diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 9537c72..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Java CI - -on: - push: - branches: - - 'main' - - 'develop' - pull_request: - branches: - - 'main' - - 'develop' - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: 17 - distribution: 'temurin' - - - name: Build with Maven - run: mvn -B clean install - - - name: Run JUnit tests - run: mvn test diff --git a/GlobalQuakeAPI/pom.xml b/GlobalQuakeAPI/pom.xml deleted file mode 100644 index 8d0b2fa..0000000 --- a/GlobalQuakeAPI/pom.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - 4.0.0 - - xspanger.GlobalQuake - GlobalQuakeServer - 0.1.0 - ../pom.xml - - - GlobalQuakeAPI - - - 17 - 17 - UTF-8 - - - \ No newline at end of file diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/Packet.java b/GlobalQuakeAPI/src/main/java/gqserver/api/Packet.java deleted file mode 100644 index 15615dd..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/Packet.java +++ /dev/null @@ -1,10 +0,0 @@ -package gqserver.api; - -import java.io.IOException; -import java.io.Serializable; - -public interface Packet extends Serializable { - - default void onServerReceive(ServerClient serverClient) throws IOException {} - -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/ServerClient.java b/GlobalQuakeAPI/src/main/java/gqserver/api/ServerClient.java deleted file mode 100644 index a4f937b..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/ServerClient.java +++ /dev/null @@ -1,125 +0,0 @@ -package gqserver.api; - -import gqserver.api.data.system.ServerClientConfig; -import gqserver.api.exception.UnknownPacketException; - -import java.io.IOException; -import java.io.ObjectInputStream; -import java.io.ObjectOutputStream; -import java.net.Socket; -import java.time.Instant; -import java.time.LocalDateTime; -import java.time.ZoneId; -import java.util.concurrent.atomic.AtomicInteger; - -public class ServerClient { - - private static final AtomicInteger nextID = new AtomicInteger(0); - private final Socket socket; - private final int id; - - private final ObjectInputStream inputStream; - private final ObjectOutputStream outputStream; - - private final long joinTime; - private long lastHeartbeat; - - private long receivedPackets = 0; - - private long sentPackets = 0; - - private ServerClientConfig clientConfig; - - public ServerClient(Socket socket) throws IOException { - this.socket = socket; - this.inputStream = new ObjectInputStream(socket.getInputStream()); - this.outputStream = new ObjectOutputStream(socket.getOutputStream()); - this.id = nextID.getAndIncrement(); - this.joinTime = System.currentTimeMillis(); - this.lastHeartbeat = joinTime; - } - - private ObjectInputStream getInputStream() { - return inputStream; - } - - private ObjectOutputStream getOutputStream() { - - return outputStream; - } - - public Packet readPacket() throws IOException, UnknownPacketException { - try { - Object obj = getInputStream().readObject(); - if(obj instanceof Packet){ - receivedPackets++; - return (Packet) obj; - } - - throw new UnknownPacketException("Received obj not instance of Packet!", null); - }catch(ClassNotFoundException e){ - throw new UnknownPacketException(e.getMessage(), e); - } - } - - public void setClientConfig(ServerClientConfig clientConfig) { - this.clientConfig = clientConfig; - } - - public ServerClientConfig getClientConfig() { - return clientConfig; - } - - public synchronized void sendPacket(Packet packet) throws IOException{ - getOutputStream().writeObject(packet); - sentPackets++; - } - - public void destroy() throws IOException { - socket.close(); - } - - public int getID() { - return id; - } - - public long getJoinTime() { - return joinTime; - } - - public LocalDateTime getJoinDate(){ - return Instant.ofEpochMilli(getJoinTime()).atZone(ZoneId.systemDefault()).toLocalDateTime(); - } - - public boolean isConnected() { - return socket.isConnected() && !socket.isClosed(); - } - - public void noteHeartbeat() { - lastHeartbeat = System.currentTimeMillis(); - } - - public long getLastHeartbeat() { - return lastHeartbeat; - } - - public long getDelay(){ - return System.currentTimeMillis() - getLastHeartbeat(); - } - - public Socket getSocket() { - return socket; - } - - public long getReceivedPackets() { - return receivedPackets; - } - - public long getSentPackets() { - return sentPackets; - } - - public void flush() throws IOException { - getOutputStream().flush(); - } -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/EarthquakeInfo.java b/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/EarthquakeInfo.java deleted file mode 100644 index fcbbe7a..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/EarthquakeInfo.java +++ /dev/null @@ -1,9 +0,0 @@ -package gqserver.api.data.earthquake; - -import java.io.Serializable; -import java.util.UUID; - -public record EarthquakeInfo(UUID uuid, int revisionID) implements Serializable { - - public static final int REMOVED = -1; -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/HypocenterData.java b/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/HypocenterData.java deleted file mode 100644 index a8d545d..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/HypocenterData.java +++ /dev/null @@ -1,7 +0,0 @@ -package gqserver.api.data.earthquake; - -import java.io.Serializable; -import java.util.UUID; - -public record HypocenterData(UUID uuid, int revisionID, float lat, float lon, float depth, long origin, float magnitude) implements Serializable { -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/AdvancedHypocenterData.java b/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/AdvancedHypocenterData.java deleted file mode 100644 index e1ffe4c..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/AdvancedHypocenterData.java +++ /dev/null @@ -1,9 +0,0 @@ -package gqserver.api.data.earthquake.advanced; - -import java.io.Serializable; - -public record AdvancedHypocenterData(HypocenterQualityData qualityData, - DepthConfidenceIntervalData depthIntervalData, - LocationConfidenceIntervalData locationConfidenceIntervalData) implements Serializable { - -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/DepthConfidenceIntervalData.java b/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/DepthConfidenceIntervalData.java deleted file mode 100644 index 3f6a0a9..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/DepthConfidenceIntervalData.java +++ /dev/null @@ -1,6 +0,0 @@ -package gqserver.api.data.earthquake.advanced; - -import java.io.Serializable; - -public record DepthConfidenceIntervalData(float minDepth, float maxDepth) implements Serializable { -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/HypocenterQualityData.java b/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/HypocenterQualityData.java deleted file mode 100644 index c323b02..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/HypocenterQualityData.java +++ /dev/null @@ -1,6 +0,0 @@ -package gqserver.api.data.earthquake.advanced; - -import java.io.Serializable; - -public record HypocenterQualityData(float errOrigin, float errDepth, float errNS, float errEW, int stations, float pct) implements Serializable { -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/LocationConfidenceIntervalData.java b/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/LocationConfidenceIntervalData.java deleted file mode 100644 index 3642af1..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/LocationConfidenceIntervalData.java +++ /dev/null @@ -1,8 +0,0 @@ -package gqserver.api.data.earthquake.advanced; - -import java.io.Serializable; -import java.util.List; - -public record LocationConfidenceIntervalData(List polygonConfidenceIntervalDataList) implements Serializable { - -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/PolygonConfidenceIntervalData.java b/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/PolygonConfidenceIntervalData.java deleted file mode 100644 index bd178ab..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/data/earthquake/advanced/PolygonConfidenceIntervalData.java +++ /dev/null @@ -1,7 +0,0 @@ -package gqserver.api.data.earthquake.advanced; - -import java.io.Serializable; -import java.util.List; - -public record PolygonConfidenceIntervalData(int n, float offset, List lengths) implements Serializable { -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/data/system/ServerClientConfig.java b/GlobalQuakeAPI/src/main/java/gqserver/api/data/system/ServerClientConfig.java deleted file mode 100644 index 524e0f5..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/data/system/ServerClientConfig.java +++ /dev/null @@ -1,6 +0,0 @@ -package gqserver.api.data.system; - -import java.io.Serializable; - -public record ServerClientConfig(boolean earthquakeData, boolean stationData) implements Serializable { -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/exception/UnknownPacketException.java b/GlobalQuakeAPI/src/main/java/gqserver/api/exception/UnknownPacketException.java deleted file mode 100644 index 7bf7553..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/exception/UnknownPacketException.java +++ /dev/null @@ -1,7 +0,0 @@ -package gqserver.api.exception; - -public class UnknownPacketException extends Throwable { - public UnknownPacketException(String message, Throwable cause) { - super(message, cause); - } -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/EarthquakeCheckPacket.java b/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/EarthquakeCheckPacket.java deleted file mode 100644 index 581fb76..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/EarthquakeCheckPacket.java +++ /dev/null @@ -1,8 +0,0 @@ -package gqserver.api.packets.earthquake; - -import gqserver.api.Packet; -import gqserver.api.data.earthquake.EarthquakeInfo; - -public record EarthquakeCheckPacket(EarthquakeInfo info) implements Packet { - -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/EarthquakeRequestPacket.java b/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/EarthquakeRequestPacket.java deleted file mode 100644 index 755bf75..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/EarthquakeRequestPacket.java +++ /dev/null @@ -1,9 +0,0 @@ -package gqserver.api.packets.earthquake; - -import gqserver.api.Packet; - -import java.util.UUID; - -public record EarthquakeRequestPacket(UUID uuid) implements Packet { - -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/EarthquakesRequestPacket.java b/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/EarthquakesRequestPacket.java deleted file mode 100644 index b8f3b7e..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/EarthquakesRequestPacket.java +++ /dev/null @@ -1,7 +0,0 @@ -package gqserver.api.packets.earthquake; - -import gqserver.api.Packet; - -public record EarthquakesRequestPacket() implements Packet { - -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/HypocenterDataPacket.java b/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/HypocenterDataPacket.java deleted file mode 100644 index 9faa9bf..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/earthquake/HypocenterDataPacket.java +++ /dev/null @@ -1,9 +0,0 @@ -package gqserver.api.packets.earthquake; - -import gqserver.api.Packet; -import gqserver.api.data.earthquake.HypocenterData; -import gqserver.api.data.earthquake.advanced.AdvancedHypocenterData; - -public record HypocenterDataPacket(HypocenterData data, AdvancedHypocenterData advancedHypocenterData) implements Packet { - -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/system/HandshakePacket.java b/GlobalQuakeAPI/src/main/java/gqserver/api/packets/system/HandshakePacket.java deleted file mode 100644 index 23d2be6..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/system/HandshakePacket.java +++ /dev/null @@ -1,8 +0,0 @@ -package gqserver.api.packets.system; - -import gqserver.api.Packet; -import gqserver.api.data.system.ServerClientConfig; - -public record HandshakePacket(int compatVersion, ServerClientConfig clientConfig) implements Packet { - -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/system/HeartbeatPacket.java b/GlobalQuakeAPI/src/main/java/gqserver/api/packets/system/HeartbeatPacket.java deleted file mode 100644 index 9206b20..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/system/HeartbeatPacket.java +++ /dev/null @@ -1,15 +0,0 @@ -package gqserver.api.packets.system; - -import gqserver.api.Packet; -import gqserver.api.ServerClient; - -import java.io.IOException; - -public record HeartbeatPacket() implements Packet { - - @Override - public void onServerReceive(ServerClient serverClient) throws IOException { - serverClient.noteHeartbeat(); - serverClient.sendPacket(new HeartbeatPacket()); - } -} diff --git a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/system/TerminationPacket.java b/GlobalQuakeAPI/src/main/java/gqserver/api/packets/system/TerminationPacket.java deleted file mode 100644 index 445a445..0000000 --- a/GlobalQuakeAPI/src/main/java/gqserver/api/packets/system/TerminationPacket.java +++ /dev/null @@ -1,6 +0,0 @@ -package gqserver.api.packets.system; - -import gqserver.api.Packet; - -public record TerminationPacket(String cause) implements Packet { -} diff --git a/GlobalQuakeCore/pom.xml b/GlobalQuakeCore/pom.xml deleted file mode 100644 index 024f3ed..0000000 --- a/GlobalQuakeCore/pom.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - - xspanger.GlobalQuake - GlobalQuakeServer - 0.1.0 - ../pom.xml - - - GlobalQuakeCore - 0.10.0 - - - 17 - 17 - UTF-8 - - - - - org.tinylog - tinylog-api - 2.5.0 - - - org.tinylog - tinylog-impl - 2.5.0 - - - edu.sc.seis - seisFile - 2.0.6 - - - - de.grundid.opendatalab - geojson-jackson - 1.14 - - - - edu.sc.seis - seedCodec - 1.1.1 - - - - edu.sc.seis - TauP - 2.6.1 - - - uk.me.berndporr - iirj - 1.3 - - - - com.github.wendykierp - JTransforms - 3.1 - - - org.json - json - 20230227 - - - - \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/GlobalQuake.java b/GlobalQuakeCore/src/main/java/globalquake/core/GlobalQuake.java deleted file mode 100644 index ad423dc..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/GlobalQuake.java +++ /dev/null @@ -1,107 +0,0 @@ -package globalquake.core; - -import globalquake.core.archive.EarthquakeArchive; -import globalquake.core.database.StationDatabaseManager; -import globalquake.core.earthquake.ClusterAnalysis; -import globalquake.core.earthquake.EarthquakeAnalysis; -import globalquake.core.events.GlobalQuakeEventHandler; -import globalquake.core.exception.ApplicationErrorHandler; -import globalquake.core.station.GlobalStationManager; - -import java.io.File; - -public class GlobalQuake { - - private final GlobalQuakeRuntime globalQuakeRuntime; - private final SeedlinkNetworksReader seedlinkNetworksReader; - private final StationDatabaseManager stationDatabaseManager; - private final ClusterAnalysis clusterAnalysis; - private final EarthquakeAnalysis earthquakeAnalysis; - private final EarthquakeArchive archive; - - private final GlobalQuakeEventHandler eventHandler; - - public static GlobalQuake instance; - - private final GlobalStationManager globalStationManager; - - private final ApplicationErrorHandler errorHandler; - private final File mainFolder; - - - public GlobalQuake(StationDatabaseManager stationDatabaseManager, - ApplicationErrorHandler errorHandler, - File mainFolder) { - instance = this; - this.mainFolder = mainFolder; - this.errorHandler = errorHandler; - this.stationDatabaseManager = stationDatabaseManager; - - eventHandler = new GlobalQuakeEventHandler().runHandler(); - - globalStationManager = new GlobalStationManager(); - - earthquakeAnalysis = new EarthquakeAnalysis(); - clusterAnalysis = new ClusterAnalysis(); - - archive = new EarthquakeArchive().loadArchive(); - - globalQuakeRuntime = new GlobalQuakeRuntime(); - seedlinkNetworksReader = new SeedlinkNetworksReader(); - } - - public void startRuntime(){ - globalStationManager.initStations(stationDatabaseManager); - getGlobalQuakeRuntime().runThreads(); - seedlinkNetworksReader.run(); - } - - public void stopRuntime(){ - getGlobalQuakeRuntime().stop(); - getSeedlinkReader().stop(); - - getEarthquakeAnalysis().getEarthquakes().clear(); - getClusterAnalysis().getClusters().clear(); - getStationManager().getStations().clear(); - } - - public ClusterAnalysis getClusterAnalysis() { - return clusterAnalysis; - } - - public EarthquakeAnalysis getEarthquakeAnalysis() { - return earthquakeAnalysis; - } - - public EarthquakeArchive getArchive() { - return archive; - } - - public GlobalStationManager getStationManager() { - return globalStationManager; - } - - public GlobalQuakeRuntime getGlobalQuakeRuntime() { - return globalQuakeRuntime; - } - - public SeedlinkNetworksReader getSeedlinkReader() { - return seedlinkNetworksReader; - } - - public StationDatabaseManager getStationDatabaseManager() { - return stationDatabaseManager; - } - - public GlobalQuakeEventHandler getEventHandler() { - return eventHandler; - } - - public ApplicationErrorHandler getErrorHandler() { - return errorHandler; - } - - public File getMainFolder() { - return mainFolder; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/GlobalQuakeRuntime.java b/GlobalQuakeCore/src/main/java/globalquake/core/GlobalQuakeRuntime.java deleted file mode 100644 index 38c997a..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/GlobalQuakeRuntime.java +++ /dev/null @@ -1,98 +0,0 @@ -package globalquake.core; - -import globalquake.core.station.AbstractStation; -import globalquake.utils.NamedThreadFactory; -import org.tinylog.Logger; - -import java.util.concurrent.Executors; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.TimeUnit; - -@SuppressWarnings("unused") -public class GlobalQuakeRuntime { - - private long lastSecond; - private long lastAnalysis; - private long lastGC; - private long clusterAnalysisT; - private long lastQuakesT; - private ScheduledExecutorService execAnalysis; - private ScheduledExecutorService exec1Sec; - private ScheduledExecutorService execClusters; - private ScheduledExecutorService execQuake; - - public void runThreads() { - execAnalysis = Executors - .newSingleThreadScheduledExecutor(new NamedThreadFactory("Station Analysis Thread")); - exec1Sec = Executors - .newSingleThreadScheduledExecutor(new NamedThreadFactory("1-Second Loop Thread")); - execClusters = Executors - .newSingleThreadScheduledExecutor(new NamedThreadFactory("Cluster Analysis Thread")); - execQuake = Executors - .newSingleThreadScheduledExecutor(new NamedThreadFactory("Hypocenter Location Thread")); - - execAnalysis.scheduleAtFixedRate(() -> { - try { - long a = System.currentTimeMillis(); - GlobalQuake.instance.getStationManager().getStations().parallelStream().forEach(AbstractStation::analyse); - lastAnalysis = System.currentTimeMillis() - a; - } catch (Exception e) { - Logger.error("Exception occurred in station analysis"); - GlobalQuake.instance.getErrorHandler().handleException(e); - } - }, 0, 100, TimeUnit.MILLISECONDS); - - exec1Sec.scheduleAtFixedRate(() -> { - try { - long a = System.currentTimeMillis(); - GlobalQuake.instance.getStationManager().getStations().parallelStream().forEach(station -> station.second(a)); - if (GlobalQuake.instance.getEarthquakeAnalysis() != null) { - GlobalQuake.instance.getEarthquakeAnalysis().second(); - } - lastSecond = System.currentTimeMillis() - a; - } catch (Exception e) { - Logger.error("Exception occurred in 1-second loop"); - GlobalQuake.instance.getErrorHandler().handleException(e); - } - }, 0, 1, TimeUnit.SECONDS); - - execClusters.scheduleAtFixedRate(() -> { - try { - long a = System.currentTimeMillis(); - GlobalQuake.instance.getClusterAnalysis().run(); - clusterAnalysisT = System.currentTimeMillis() - a; - } catch (Exception e) { - Logger.error("Exception occurred in cluster analysis loop"); - GlobalQuake.instance.getErrorHandler().handleException(e); - } - }, 0, 500, TimeUnit.MILLISECONDS); - - execQuake.scheduleAtFixedRate(() -> { - try { - long a = System.currentTimeMillis(); - GlobalQuake.instance.getEarthquakeAnalysis().run(); - lastQuakesT = System.currentTimeMillis() - a; - } catch (Exception e) { - Logger.error("Exception occurred in hypocenter location loop"); - GlobalQuake.instance.getErrorHandler().handleException(e); - } - }, 0, 1, TimeUnit.SECONDS); - } - - @SuppressWarnings("ResultOfMethodCallIgnored") - public void stop() { - execAnalysis.shutdownNow(); - execQuake.shutdownNow(); - execClusters.shutdownNow(); - exec1Sec.shutdownNow(); - - try { - execAnalysis.awaitTermination(10, TimeUnit.SECONDS); - execQuake.awaitTermination(10, TimeUnit.SECONDS); - execClusters.awaitTermination(10, TimeUnit.SECONDS); - exec1Sec.awaitTermination(10, TimeUnit.SECONDS); - } catch (InterruptedException e) { - Logger.error(e); - } - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/SeedlinkNetworksReader.java b/GlobalQuakeCore/src/main/java/globalquake/core/SeedlinkNetworksReader.java deleted file mode 100644 index 8cda817..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/SeedlinkNetworksReader.java +++ /dev/null @@ -1,202 +0,0 @@ -package globalquake.core; - -import globalquake.core.database.SeedlinkNetwork; -import globalquake.core.database.SeedlinkStatus; -import globalquake.core.station.AbstractStation; -import globalquake.core.station.GlobalStation; -import edu.sc.seis.seisFile.mseed.DataRecord; -import edu.sc.seis.seisFile.seedlink.SeedlinkPacket; -import edu.sc.seis.seisFile.seedlink.SeedlinkReader; -import org.tinylog.Logger; - -import java.time.Instant; -import java.util.*; -import java.util.concurrent.ConcurrentLinkedQueue; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; -import java.util.concurrent.TimeUnit; - -public class SeedlinkNetworksReader { - - protected static final int RECONNECT_DELAY = 10; - private Instant lastData; - - private long lastReceivedRecord; - - private ExecutorService seedlinkReaderService; - - private final Queue activeReaders = new ConcurrentLinkedQueue<>(); - - public static void main(String[] args) throws Exception{ - SeedlinkReader reader = new SeedlinkReader("rtserve.iris.washington.edu", 18000); - reader.select("AK", "D25K", "", "BHZ"); - reader.startData(); - - SortedSet set = new TreeSet<>(Comparator.comparing(dataRecord -> dataRecord.getStartBtime().toInstant().toEpochMilli())); - - while(reader.hasNext() && set.size() < 10){ - SeedlinkPacket pack = reader.readPacket(); - DataRecord dataRecord = pack.getMiniSeed(); - System.out.println(pack.getMiniSeed().getStartTime()+" - "+pack.getMiniSeed().getLastSampleTime()+" x "+pack.getMiniSeed().getEndTime()+" @ "+pack.getMiniSeed().getSampleRate()); - System.out.println(pack.getMiniSeed().getControlHeader().getSequenceNum()); - if(!set.add(dataRecord)){ - System.out.println("ERR ALREADY CONTAINS"); - } - } - - reader.close(); - for(DataRecord dataRecord : set){ - System.err.println(dataRecord.getStartTime()+" - "+dataRecord.getLastSampleTime()+" x "+dataRecord.getEndTime()+" @ "+dataRecord.getSampleRate()); - System.err.println(dataRecord.oneLineSummary()); - } - } - - public void run() { - createCache(); - seedlinkReaderService = Executors.newCachedThreadPool(); - GlobalQuake.instance.getStationDatabaseManager().getStationDatabase().getDatabaseReadLock().lock(); - try{ - GlobalQuake.instance.getStationDatabaseManager().getStationDatabase().getSeedlinkNetworks().forEach( - seedlinkServer -> seedlinkReaderService.submit(() -> runSeedlinkThread(seedlinkServer, RECONNECT_DELAY))); - } finally { - GlobalQuake.instance.getStationDatabaseManager().getStationDatabase().getDatabaseReadLock().unlock(); - } - } - - private final Map stationCache = new HashMap<>(); - - private void createCache() { - for (AbstractStation s : GlobalQuake.instance.getStationManager().getStations()) { - if (s instanceof GlobalStation) { - stationCache.put("%s %s".formatted(s.getNetworkCode(), s.getStationCode()), (GlobalStation) s); - } - } - } - private void runSeedlinkThread(SeedlinkNetwork seedlinkNetwork, int reconnectDelay) { - seedlinkNetwork.status = SeedlinkStatus.CONNECTING; - seedlinkNetwork.connectedStations = 0; - - SeedlinkReader reader = null; - try { - Logger.info("Connecting to seedlink server \"" + seedlinkNetwork.getHost() + "\""); - reader = new SeedlinkReader(seedlinkNetwork.getHost(), seedlinkNetwork.getPort(), 90, false); - activeReaders.add(reader); - - reader.sendHello(); - - reconnectDelay = RECONNECT_DELAY; // if connect succeeded then reset the delay - boolean first = true; - - for (AbstractStation s : GlobalQuake.instance.getStationManager().getStations()) { - if (s.getSeedlinkNetwork() != null && s.getSeedlinkNetwork().equals(seedlinkNetwork)) { - Logger.trace("Connecting to %s %s %s %s [%s]".formatted(s.getStationCode(), s.getNetworkCode(), s.getChannelName(), s.getLocationCode(), seedlinkNetwork.getName())); - if(!first) { - reader.sendCmd("DATA"); - } else{ - first = false; - } - reader.select(s.getNetworkCode(), s.getStationCode(), s.getLocationCode(), - s.getChannelName()); - seedlinkNetwork.connectedStations++; - } - } - - if(seedlinkNetwork.connectedStations == 0){ - Logger.info("No stations connected to "+seedlinkNetwork.getName()); - seedlinkNetwork.status = SeedlinkStatus.DISCONNECTED; - return; - } - - reader.startData(); - seedlinkNetwork.status = SeedlinkStatus.RUNNING; - - while (reader.hasNext()) { - SeedlinkPacket slp = reader.readPacket(); - try { - newPacket(slp.getMiniSeed()); - } catch (Exception e) { - Logger.error(e); - } - } - - reader.close(); - } catch (Exception e) { - Logger.error(e); - if (reader != null) { - try { - reader.close(); - } catch (Exception ex) { - Logger.error(ex); - } - } - }finally{ - if(reader != null){ - activeReaders.remove(reader); - } - } - - seedlinkNetwork.status = SeedlinkStatus.DISCONNECTED; - seedlinkNetwork.connectedStations = 0; - Logger.warn(seedlinkNetwork.getHost() + " Disconnected, Reconnecting after " + reconnectDelay - + " seconds..."); - - try { - Thread.sleep(reconnectDelay * 1000L); - if(reconnectDelay < 60 * 5) { - reconnectDelay *= 2; - } - } catch (InterruptedException ignored) { - Logger.warn("Thread interrupted, nothing will happen"); - return; - } - - int finalReconnectDelay = reconnectDelay; - seedlinkReaderService.submit(() -> runSeedlinkThread(seedlinkNetwork, finalReconnectDelay)); - } - - private void newPacket(DataRecord dr) { - if (lastData == null || dr.getLastSampleBtime().toInstant().isAfter(lastData)) { - lastData = dr.getLastSampleBtime().toInstant(); - } - - String network = dr.getHeader().getNetworkCode().replaceAll(" ", ""); - String station = dr.getHeader().getStationIdentifier().replaceAll(" ", ""); - var globalStation = stationCache.get("%s %s".formatted(network, station)); - if(globalStation == null){ - Logger.trace("Warning! Seedlink sent data for %s %s, but that was never selected!!!".formatted(network, station)); - }else { - globalStation.addRecord(dr); - } - } - - public long getLastReceivedRecord() { - return lastReceivedRecord; - } - - public void logRecord(long time) { - if (time > lastReceivedRecord && time <= System.currentTimeMillis()) { - lastReceivedRecord = time; - } - } - - @SuppressWarnings("ResultOfMethodCallIgnored") - public void stop() { - if(seedlinkReaderService != null) { - System.err.println("INT SDL"); - seedlinkReaderService.shutdownNow(); - for (Iterator iterator = activeReaders.iterator(); iterator.hasNext(); ) { - SeedlinkReader reader = iterator.next(); - reader.close(); - iterator.remove(); - } - try { - seedlinkReaderService.awaitTermination(10, TimeUnit.SECONDS); - } catch (InterruptedException e) { - Logger.error(e); - } - - System.err.println("INT SDL DONE"); - } - stationCache.clear(); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/Settings.java b/GlobalQuakeCore/src/main/java/globalquake/core/Settings.java deleted file mode 100644 index 0226387..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/Settings.java +++ /dev/null @@ -1,339 +0,0 @@ -package globalquake.core; - -import globalquake.core.exception.RuntimeApplicationException; -import globalquake.core.geo.DistanceUnit; -import globalquake.core.intensity.IntensityScales; -import org.tinylog.Logger; - -import java.io.File; -import java.io.FileInputStream; -import java.io.FileOutputStream; -import java.io.IOException; -import java.time.ZoneId; -import java.time.format.DateTimeFormatter; -import java.time.temporal.TemporalAccessor; -import java.util.Properties; - -import java.lang.reflect.Field; -import java.util.function.Function; - -public final class Settings { - - private static final File optionsFile = new File(GlobalQuake.instance.getMainFolder(), "globalQuake.properties"); - private static final Properties properties = new Properties(); - - public static Double homeLat; - public static Double homeLon; - - public static final double pWaveInaccuracyThresholdDefault = 1800; - public static Double pWaveInaccuracyThreshold; - public static final double hypocenterCorrectThresholdDefault = 50; - public static Double hypocenterCorrectThreshold; - - public static final double hypocenterDetectionResolutionDefault = 40; - public static final double hypocenterDetectionResolutionMax = 160.0; - public static Double hypocenterDetectionResolution; - - public static Boolean parallelHypocenterLocations; - public static final int minimumStationsForEEWDefault = 5; - - public static Integer minimumStationsForEEW; - - public static Boolean displayArchivedQuakes; - - public static Boolean useOldColorScheme; - - public static Boolean displayHomeLocation; - - public static Boolean antialiasing; - - public static Integer fpsIdle; - - public static Integer intensityScaleIndex; - - public static Boolean reportsEnabled = false; - public static Boolean enableSound = true; - public static Boolean oldEventsTimeFilterEnabled; - public static Double oldEventsTimeFilter; - public static Boolean oldEventsMagnitudeFilterEnabled; - public static Double oldEventsMagnitudeFilter; - - public static int changes = 0; - - public static Double oldEventsOpacity; - - public static Boolean displayClusters; - public static Integer selectedDateFormatIndex; - - public static Integer maxArchivedQuakes; - - public static final DateTimeFormatter[] DATE_FORMATS = { - DateTimeFormatter.ofPattern("dd/MM/yyyy").withZone(ZoneId.systemDefault()), - DateTimeFormatter.ofPattern("MM/dd/yyyy").withZone(ZoneId.systemDefault()), - DateTimeFormatter.ofPattern("yyyy/MM/dd").withZone(ZoneId.systemDefault()), - }; - - public static Boolean use24HFormat; - public static Double stationIntensityVisibilityZoomLevel; - public static Boolean hideDeadStations; - - public static final DateTimeFormatter formatter24H = DateTimeFormatter.ofPattern("HH:mm:ss").withZone(ZoneId.systemDefault()); - public static final DateTimeFormatter formatter12H = DateTimeFormatter.ofPattern("hh:mm:ss").withZone(ZoneId.systemDefault()); - - public static Boolean alertLocal; - public static Double alertLocalDist; - public static Boolean alertRegion; - public static Double alertRegionMag; - public static Double alertRegionDist; - public static Boolean alertGlobal; - public static Double alertGlobalMag; - - public static Integer cinemaModeSwitchTime; - public static Integer cinemaModeZoomMultiplier; - - public static Boolean cinemaModeOnStartup; - public static Boolean cinemaModeReenable; - - public static Integer logsStoreTimeMinutes; - public static Integer maxEvents; - public static final int maxEventsDefault = 60; - public static Boolean displayCoreWaves; - public static Boolean recalibrateOnLaunch; - public static Boolean stationsTriangles; - public static Double stationsSizeMul; - public static Integer selectedEventColorIndex; - - public static Integer distanceUnitsIndex; - public static Boolean focusOnEvent; - public static Boolean jumpToAlert; - - public static Boolean confidencePolygons; - - public static Boolean displayAdditionalQuakeInfo; - - public static Boolean displayMagnitudeHistogram; - - public static Boolean displaySystemInfo; - public static Boolean reduceRevisions; - - public static Integer shakingLevelScale; - public static Integer shakingLevelIndex; - - public static Integer strongShakingLevelScale; - public static Integer strongShakingLevelIndex; - - public static Boolean displayAlertBox; - public static Boolean displayTime; - - static { - load(); - } - - private static void load() { - try { - properties.load(new FileInputStream(optionsFile)); - } catch (IOException e) { - Logger.info("Created GlobalQuake properties file at "+optionsFile.getAbsolutePath()); - } - - loadProperty("shakingLevelScale", "0", - o -> validateInt(0, IntensityScales.INTENSITY_SCALES.length - 1, (Integer) o)); - loadProperty("shakingLevelIndex", "0", - o -> validateInt(0, IntensityScales.INTENSITY_SCALES[shakingLevelScale].getLevels().size() - 1, (Integer) o)); - - loadProperty("strongShakingLevelScale", "0", - o -> validateInt(0, IntensityScales.INTENSITY_SCALES.length - 1, (Integer) o)); - loadProperty("strongShakingLevelIndex", "5", - o -> validateInt(0, IntensityScales.INTENSITY_SCALES[strongShakingLevelScale].getLevels().size() - 1, (Integer) o)); - - loadProperty("reduceRevisions", "true"); - - loadProperty("displayTime", "true"); - loadProperty("displayAlertBox", "true"); - loadProperty("displaySystemInfo", "true"); - loadProperty("displayMagnitudeHistogram", "true"); - loadProperty("displayAdditionalQuakeInfo", "false"); - - loadProperty("confidencePolygons", "false"); - - loadProperty("focusOnEvent", "true"); - loadProperty("jumpToAlert", "true"); - - loadProperty("distanceUnitsIndex", "0", o -> validateInt(0, DistanceUnit.values().length - 1, (Integer) o)); - - loadProperty("selectedEventColorIndex", "0", o -> validateInt(0, 2, (Integer) o)); - loadProperty("stationsSizeMul", "1.0", o -> validateDouble(0, 10, (Double) o)); - loadProperty("recalibrateOnLaunch", "true"); - - loadProperty("displayCoreWaves", "false"); - loadProperty("maxEvents", String.valueOf(maxEventsDefault)); - - loadProperty("logsStoreTimeMinutes", "5", o -> validateInt(1, 60, (Integer) o)); - - loadProperty("cinemaModeOnStartup", "true"); - loadProperty("cinemaModeReenable", "true"); - loadProperty("cinemaModeSwitchTime", "10", o -> validateInt(1, 60 * 60, (Integer) o)); - loadProperty("cinemaModeZoomMultiplier", "100", o -> validateInt(1, 1000, (Integer) o)); - - loadProperty("alertLocal", "true"); - loadProperty("alertLocalDist", "200", o -> validateDouble(0, 30000, (Double) o)); - loadProperty("alertRegion", "true"); - loadProperty("alertRegionMag", "3.5", o -> validateDouble(0, 10, (Double) o)); - loadProperty("alertRegionDist", "1000", o -> validateDouble(0, 30000, (Double) o)); - loadProperty("alertGlobal", "true"); - loadProperty("alertGlobalMag", "6.0", o -> validateDouble(0, 10, (Double) o)); - - loadProperty("reportsEnabled", "false"); - loadProperty("displayClusters", "false"); - loadProperty("selectedDateFormatIndex", "0", o -> validateInt(0, DATE_FORMATS.length - 1, (Integer) o)); - loadProperty("stationIntensityVisibilityZoomLevel", "0.2", o -> validateDouble(0, 10, (Double) o)); - loadProperty("use24HFormat", "true"); - loadProperty("hideDeadStations", "false"); - loadProperty("stationsTriangles", "false"); - loadProperty("maxArchivedQuakes", "100", o -> validateInt(1, Integer.MAX_VALUE, (Integer) o)); - - loadProperty("enableAlarmDialogs", "false"); - loadProperty("homeLat", "0.0", o -> validateDouble(-90, 90, (Double) o)); - loadProperty("homeLon", "0.0", o -> validateDouble(-180, 180, (Double) o)); - loadProperty("displayArchivedQuakes", "true"); - loadProperty("enableSound", "true"); - loadProperty("pWaveInaccuracyThreshold", String.valueOf(pWaveInaccuracyThresholdDefault)); - loadProperty("hypocenterCorrectThreshold", String.valueOf(hypocenterCorrectThresholdDefault)); - loadProperty("hypocenterDetectionResolution", String.valueOf(hypocenterDetectionResolutionDefault)); - loadProperty("minimumStationsForEEW", String.valueOf(minimumStationsForEEWDefault)); - loadProperty("useOldColorScheme", "false"); - loadProperty("parallelHypocenterLocations", "true"); - loadProperty("displayHomeLocation", "true"); - loadProperty("antialiasing", "false"); - loadProperty("fpsIdle", "30", o -> validateInt(1, 300, (Integer) o)); - loadProperty("intensityScaleIndex", "0", o -> validateInt(0, IntensityScales.INTENSITY_SCALES.length - 1, (Integer) o)); - loadProperty("oldEventsTimeFilterEnabled", "false"); - loadProperty("oldEventsTimeFilter", "24.0", o -> validateDouble(0, 24 * 365, (Double) o)); - loadProperty("oldEventsMagnitudeFilterEnabled", "false"); - loadProperty("oldEventsMagnitudeFilter", "4.0", o -> validateDouble(0, 10, (Double) o)); - loadProperty("oldEventsOpacity", "100.0", o -> validateDouble(0, 100, (Double) o)); - - save(); - } - - - public static String formatDateTime(TemporalAccessor temporalAccessor) { - return selectedDateTimeFormat().format(temporalAccessor) + - " " + - (use24HFormat ? formatter24H : formatter12H).format(temporalAccessor); - } - - private static DateTimeFormatter selectedDateTimeFormat(){ - int i = Math.max(0, Math.min(DATE_FORMATS.length - 1, selectedDateFormatIndex)); - return DATE_FORMATS[i]; - } - - public static DistanceUnit getSelectedDistanceUnit(){ - return DistanceUnit.values()[Math.max(0, Math.min(DistanceUnit.values().length - 1, distanceUnitsIndex))]; - } - - public static boolean validateDouble(double min, double max, double v){ - return !Double.isInfinite(v) && !Double.isNaN(v) && !(v < min) && !(v > max); - } - - public static boolean validateInt(int min, int max, int v){ - return !(v < min) && !(v > max); - } - - private static void setProperty(Field field, Object value) { - try { - field.set(null, value); - } catch (Exception e) { - Logger.error(e); - } - } - - private static void loadProperty(String name, String defaultVal){ - loadProperty(name, defaultVal, null); - } - - private static void loadProperty(String name, String defaultVal, Function validator){ - try { - Field field = Settings.class.getDeclaredField(name); - field.setAccessible(true); - if (field.getType() == Boolean.class) { - boolean val; - try{ - val = Boolean.parseBoolean((String) properties.getOrDefault(field.getName(), defaultVal)); - if(validator != null && !validator.apply(val)){ - throw new RuntimeApplicationException("Field %s has invalid value! %s".formatted(name, val)); - } - }catch(Exception e){ - Logger.error(e); - val = Boolean.parseBoolean(defaultVal); - } - setProperty(field, val); - } else if (field.getType() == Double.class) { - double val; - try{ - val = Double.parseDouble((String) properties.getOrDefault(field.getName(), defaultVal)); - if(validator != null && !validator.apply(val)){ - throw new RuntimeApplicationException("Field %s has invalid value: %s, setting to %s".formatted(name, val, defaultVal)); - } - }catch(Exception e){ - Logger.error(e); - val = Double.parseDouble(defaultVal); - } - setProperty(field, val); - } else if (field.getType() == Integer.class) { - int val; - try{ - val = Integer.parseInt((String) properties.getOrDefault(field.getName(), defaultVal)); - if(validator != null && !validator.apply(val)){ - throw new RuntimeApplicationException("Field %s has invalid value! %s".formatted(name, val)); - } - }catch(Exception e){ - Logger.error(e); - val = Integer.parseInt(defaultVal); - } - setProperty(field, val); - } else { - Logger.error("Error: unsupported setting type: %s".formatted(field.getType())); - } - } catch(NoSuchFieldException ignored){ - - } catch (Exception e) { - Logger.error(e); - } - } - - private static Object getPropertyValue(Field field){ - try { - field.setAccessible(true); - return field.get(null); - } catch (Exception e) { - Logger.error(e); - return null; - } - } - - public static void save() { - changes++; - - try { - Field[] fields = Settings.class.getDeclaredFields(); - for (Field field : fields) { - if (field.getType() == Boolean.class || field.getType() == Double.class || field.getType() == Integer.class) { - String value = String.valueOf(getPropertyValue(field)); - properties.setProperty(field.getName(), value); - } - } - - if(!optionsFile.getParentFile().exists()){ - //noinspection ResultOfMethodCallIgnored - optionsFile.getParentFile().mkdirs(); - } - - properties.store(new FileOutputStream(optionsFile), "Fun fact: I've never felt an earthquake in my life"); - } catch (IOException e) { - GlobalQuake.instance.getErrorHandler().handleException(e); - } - - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/action/OpenURLAction.java b/GlobalQuakeCore/src/main/java/globalquake/core/action/OpenURLAction.java deleted file mode 100644 index 77e6421..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/action/OpenURLAction.java +++ /dev/null @@ -1,45 +0,0 @@ -package globalquake.core.action; - -import org.tinylog.Logger; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.net.MalformedURLException; -import java.net.URI; -import java.net.URISyntaxException; -import java.net.URL; - -public class OpenURLAction extends AbstractAction { - - private final String url; - - public OpenURLAction(String url, String name) { - super(name); - this.url = url; - } - - public void openWebpage(URI uri) { - Desktop desktop = Desktop.isDesktopSupported() ? Desktop.getDesktop() : null; - if (desktop != null && desktop.isSupported(Desktop.Action.BROWSE)) { - try { - desktop.browse(uri); - } catch (Exception e) { - Logger.error(e); - } - } - } - - public void openWebpage() { - try { - openWebpage(new URL(url).toURI()); - } catch (URISyntaxException | MalformedURLException e) { - Logger.error(e); - } - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - openWebpage(); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/alert/Warnable.java b/GlobalQuakeCore/src/main/java/globalquake/core/alert/Warnable.java deleted file mode 100644 index baec5c2..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/alert/Warnable.java +++ /dev/null @@ -1,11 +0,0 @@ -package globalquake.core.alert; - -public interface Warnable { - - @SuppressWarnings("unused") - double getWarningLat(); - - @SuppressWarnings("unused") - double getWarningLon(); - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/Analysis.java b/GlobalQuakeCore/src/main/java/globalquake/core/analysis/Analysis.java deleted file mode 100644 index a8af791..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/Analysis.java +++ /dev/null @@ -1,127 +0,0 @@ -package globalquake.core.analysis; - -import globalquake.core.station.AbstractStation; -import edu.sc.seis.seisFile.mseed.DataRecord; -import org.tinylog.Logger; - -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.CopyOnWriteArrayList; - -public abstract class Analysis { - private long lastRecord; - private final AbstractStation station; - private double sampleRate; - private final List detectedEvents; - public long numRecords; - public long latestLogTime; - public double _maxRatio; - public boolean _maxRatioReset; - public final Object previousLogsLock; - private final ArrayList previousLogs; - private AnalysisStatus status; - - public Analysis(AbstractStation station) { - this.station = station; - this.sampleRate = -1; - detectedEvents = new CopyOnWriteArrayList<>(); - previousLogsLock = new Object(); - previousLogs = new ArrayList<>(); - status = AnalysisStatus.IDLE; - } - - public long getLastRecord() { - return lastRecord; - } - - public AbstractStation getStation() { - return station; - } - - public void analyse(DataRecord dr) { - if (sampleRate <= 0) { - sampleRate = dr.getSampleRate(); - reset(); - } - - - long time = dr.getLastSampleBtime().toInstant().toEpochMilli(); - if (time >= lastRecord && time <= System.currentTimeMillis() + 60 * 1000) { - decode(dr); - lastRecord = time; - } - } - - private void decode(DataRecord dataRecord) { - long time = dataRecord.getStartBtime().toInstant().toEpochMilli(); - long gap = lastRecord != 0 ? (time - lastRecord) : -1; - if (gap > getGapThreshold()) { - reset(); - } - int[] data; - try { - if (!dataRecord.isDecompressable()) { - Logger.warn("Not Decompressable!"); - return; - } - data = dataRecord.decompress().getAsInt(); - if (data == null) { - Logger.warn("Decompressed array is null!"); - return; - } - - for (int v : data) { - nextSample(v, time, System.currentTimeMillis()); - time += (long) (1000 / getSampleRate()); - } - } catch (Exception e) { - Logger.warn("Crash occurred at station " + getStation().getStationCode() + ", thread continues."); - Logger.warn(e); - } - } - - public abstract void nextSample(int v, long time, long currentTime); - - @SuppressWarnings("SameReturnValue") - public abstract long getGapThreshold(); - - public void reset() { - station.reset(); - } - - public double getSampleRate() { - return sampleRate; - } - - public void setSampleRate(double sampleRate) { - this.sampleRate = sampleRate; - } - - public abstract void second(long time); - - public List getDetectedEvents() { - return detectedEvents; - } - - public Event getLatestEvent() { - var maybeEvent = detectedEvents.stream().findFirst(); - return maybeEvent.orElse(null); - } - - public long getNumRecords() { - return numRecords; - } - - public ArrayList getPreviousLogs() { - return previousLogs; - } - - public AnalysisStatus getStatus() { - return status; - } - - public void setStatus(AnalysisStatus status) { - this.status = status; - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/AnalysisStatus.java b/GlobalQuakeCore/src/main/java/globalquake/core/analysis/AnalysisStatus.java deleted file mode 100644 index 0ab623a..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/AnalysisStatus.java +++ /dev/null @@ -1,7 +0,0 @@ -package globalquake.core.analysis; - -public enum AnalysisStatus { - - INIT, IDLE, EVENT - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/BetterAnalysis.java b/GlobalQuakeCore/src/main/java/globalquake/core/analysis/BetterAnalysis.java deleted file mode 100644 index 0cea906..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/BetterAnalysis.java +++ /dev/null @@ -1,256 +0,0 @@ -package globalquake.core.analysis; - -import globalquake.core.Settings; -import globalquake.core.station.AbstractStation; -import globalquake.core.station.StationState; -import edu.sc.seis.seisFile.mseed.DataRecord; -import org.tinylog.Logger; -import uk.me.berndporr.iirj.Butterworth; - -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; - -public class BetterAnalysis extends Analysis { - - public static final int GAP_THRESHOLD = 1000; - public static final int INIT_OFFSET_CALCULATION = 4000; - public static final int INIT_AVERAGE_RATIO = 10 * 1000; - - public static final double EVENT_THRESHOLD = 4.75; - - private int initProgress = 0; - private double initialOffsetSum; - private int initialOffsetCnt; - private double initialRatioSum; - private int initialRatioCnt; - private double longAverage; - private double mediumAverage; - private double shortAverage; - private double specialAverage; - private double thirdAverage; - private long eventTimer; - - - public static final double min_frequency = 2.0; - public static final double max_frequency = 5.0; - - // in seconds - public static final double EVENT_END_DURATION = 7.0; - public static final long EVENT_EXTENSION_TIME = 90;// 90 seconds + and - - public static final double EVENT_TOO_LONG_DURATION = 5 * 60.0; - public static final double EVENT_STORE_TIME = 20 * 60.0; - - private Butterworth filter; - private double initialOffset; - - - public BetterAnalysis(AbstractStation station) { - super(station); - } - - - @Override - public void nextSample(int v, long time, long currentTime) { - if (filter == null) { - filter = new Butterworth(); - filter.bandPass(3, getSampleRate(), (min_frequency + max_frequency) * 0.5, (max_frequency - min_frequency)); - reset();// initial reset; - getStation().reportState(StationState.INACTIVE, time); - return; - } - - if (time < latestLogTime) { - //System.err.println("BACKWARDS TIME IN ANALYSIS (" + getStation().getStationCode() + ")"); - reset(); - getStation().reportState(StationState.INACTIVE, time); - return; - } - - latestLogTime = time; - - if (getStatus() == AnalysisStatus.INIT) { - if (initProgress <= INIT_OFFSET_CALCULATION * 0.001 * getSampleRate()) { - initialOffsetSum += v; - initialOffsetCnt++; - if (initProgress >= INIT_OFFSET_CALCULATION * 0.001 * getSampleRate() * 0.25) { - double _initialOffset = initialOffsetSum / initialOffsetCnt; - double filteredV = filter.filter(v - _initialOffset); - initialRatioSum += Math.abs(filteredV); - initialRatioCnt++; - longAverage = initialRatioSum / initialRatioCnt; - } - } else if (initProgress <= (INIT_AVERAGE_RATIO + INIT_OFFSET_CALCULATION) * 0.001 * getSampleRate()) { - double _initialOffset = initialOffsetSum / initialOffsetCnt; - double filteredV = filter.filter(v - _initialOffset); - longAverage -= (longAverage - Math.abs(filteredV)) / (getSampleRate() * 6.0); - } else { - initialOffset = initialOffsetSum / initialOffsetCnt; - - shortAverage = longAverage; - mediumAverage = longAverage; - specialAverage = longAverage * 2.5; - thirdAverage = longAverage; - - longAverage *= 0.75; - setStatus(AnalysisStatus.IDLE); - } - initProgress++; - getStation().reportState(StationState.INACTIVE, time); - return; - } - double filteredV = filter.filter(v - initialOffset); - shortAverage -= (shortAverage - Math.abs(filteredV)) / (getSampleRate() * 0.5); - mediumAverage -= (mediumAverage - Math.abs(filteredV)) / (getSampleRate() * 6.0); - thirdAverage -= (thirdAverage - Math.abs(filteredV)) / (getSampleRate() * 30.0); - - if (Math.abs(filteredV) > specialAverage) { - specialAverage = Math.abs(filteredV); - } else { - specialAverage -= (specialAverage - Math.abs(filteredV)) / (getSampleRate() * 40.0); - } - - if (shortAverage / longAverage < 4.0) { - longAverage -= (longAverage - Math.abs(filteredV)) / (getSampleRate() * 200.0); - } - double ratio = shortAverage / longAverage; - if (getStatus() == AnalysisStatus.IDLE && !getPreviousLogs().isEmpty() && !getStation().disabled) { - boolean cond1 = shortAverage / longAverage >= EVENT_THRESHOLD * 1.3 && time - eventTimer > 200; - boolean cond2 = shortAverage / longAverage >= EVENT_THRESHOLD * 2.05 && time - eventTimer > 100; - boolean condMain = shortAverage / thirdAverage > 3.0; - if (condMain && (cond1 || cond2)) { - ArrayList _logs = createListOfLastLogs(time - EVENT_EXTENSION_TIME * 1000, time); - if (!_logs.isEmpty()) { - setStatus(AnalysisStatus.EVENT); - Event event = new Event(this, time, _logs); - getDetectedEvents().add(0, event); - } - } - } - if (shortAverage / longAverage < EVENT_THRESHOLD) { - eventTimer = time; - } - - Event latestEvent = getLatestEvent(); - if (getStatus() == AnalysisStatus.EVENT && latestEvent != null) { - long timeFromStart = time - latestEvent.getStart(); - if (timeFromStart >= EVENT_END_DURATION * 1000 && mediumAverage < thirdAverage * 0.95) { - setStatus(AnalysisStatus.IDLE); - latestEvent.end(time); - } - if (timeFromStart >= EVENT_TOO_LONG_DURATION * 1000) { - Logger.warn("Station " + getStation().getStationCode() - + " reset for exceeding maximum event duration (" + EVENT_TOO_LONG_DURATION + "s)"); - reset(); - getStation().reportState(StationState.INACTIVE, time); - return; - } - - if (timeFromStart >= 1000 && (timeFromStart < 7.5 * 1000 && shortAverage < longAverage * 1.25 || shortAverage < mediumAverage * 0.12)) { - setStatus(AnalysisStatus.IDLE); - latestEvent.endBadly(); - } - } - - if (ratio > _maxRatio || _maxRatioReset) { - _maxRatio = ratio * 1.25; - _maxRatioReset = false; - } - - if (time - currentTime < 1000 * 10 - && currentTime - time < 1000L * 60 * Settings.logsStoreTimeMinutes) { - Log currentLog = new Log(time, v, (float) filteredV, (float) shortAverage, (float) mediumAverage, - (float) longAverage, (float) thirdAverage, (float) specialAverage, getStatus()); - synchronized (previousLogsLock) { - getPreviousLogs().add(0, currentLog); - } - // from latest event to the oldest event - for (Event e : getDetectedEvents()) { - if (e.isValid() && (!e.hasEnded() || time - e.getEnd() < EVENT_EXTENSION_TIME * 1000)) { - e.log(currentLog); - } - } - } - getStation().reportState(StationState.ACTIVE, time); - } - - private ArrayList createListOfLastLogs(long oldestLog, long newestLog) { - ArrayList logs = new ArrayList<>(); - synchronized (previousLogsLock) { - for (Log l : getPreviousLogs()) { - long time = l.time(); - if (time >= oldestLog && time <= newestLog) { - logs.add(l); - } - } - } - return logs; - } - - @Override - public void analyse(DataRecord dr) { - if (getStatus() != AnalysisStatus.INIT) { - numRecords++; - } - super.analyse(dr); - } - - @Override - public long getGapThreshold() { - return GAP_THRESHOLD; - } - - @Override - public void reset() { - _maxRatio = 0; - setStatus(AnalysisStatus.INIT); - initProgress = 0; - initialOffsetSum = 0; - initialOffsetCnt = 0; - initialRatioSum = 0; - initialRatioCnt = 0; - numRecords = 0; - latestLogTime = 0; - // from latest event to the oldest event - // it has to be synced because there is the 1-second thread - for (Event e : getDetectedEvents()) { - if (!e.hasEnded()) { - e.endBadly(); - } - } - - } - - - @Override - public void second(long time) { - Iterator it = getDetectedEvents().iterator(); - List toBeRemoved = new ArrayList<>(); - while (it.hasNext()) { - Event event = it.next(); - if (event.hasEnded() || !event.isValid()) { - if (!event.getLogs().isEmpty()) { - event.getLogs().clear(); - } - long age = time - event.getEnd(); - if (!event.isValid() || age >= EVENT_STORE_TIME * 1000) { - toBeRemoved.add(event); - } - } - } - getDetectedEvents().removeAll(toBeRemoved); - - long oldestTime = (time - (Settings.logsStoreTimeMinutes * 60 * 1000)); - synchronized (previousLogsLock) { - while (!getPreviousLogs().isEmpty() && getPreviousLogs().get(getPreviousLogs().size() - 1).time() < oldestTime) { - getPreviousLogs().remove(getPreviousLogs().size() - 1); - } - } - } - - - public long getLatestLogTime() { - return latestLogTime; - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/Event.java b/GlobalQuakeCore/src/main/java/globalquake/core/analysis/Event.java deleted file mode 100644 index b7f03b9..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/Event.java +++ /dev/null @@ -1,260 +0,0 @@ -package globalquake.core.analysis; - -import globalquake.core.earthquake.data.Cluster; -import globalquake.core.report.StationReport; - -import java.io.Serial; -import java.io.Serializable; -import java.util.ArrayList; -import java.util.Collections; -import java.util.List; - -public class Event implements Serializable { - - @Serial - private static final long serialVersionUID = 2303478912602245970L; - public static final double[] RECALCULATE_P_WAVE_THRESHOLDS = new double[] { 16.0, 32.0, 64.0, 128.0, 512.0, 2048.0 }; - public static final double[] SPECIAL_PERCENTILE = new double[] { 0.08, 0.12, 0.18, 0.24, 0.32, 0.40, 0.48 }; - public static final double[] SLOW_THRESHOLD_MULTIPLIERS = new double[] { 1.12, 1.5, 1.9, 2.2, 2.4, 2.5, 2.6 }; - - private long start;// time when first detected - private long end;// time when end threshold reached - private long pWave; - private long firstLogTime;// first log time (now 90 seconds before event start) - - private List logs; - - public double maxRatio; - - private boolean valid; - - public Cluster assignedCluster; - private int updatesCount; - public StationReport report; - - private transient int nextPWaveCalc; - private final transient Analysis analysis; - - private boolean isSWave; - - public Event(Analysis analysis, long start, List logs) { - this(analysis); - this.start = start; - this.logs = logs; - this.firstLogTime = logs.get(logs.size() - 1).time(); - this.valid = true; - } - - // used in emulator - public Event(Analysis analysis) { - this.nextPWaveCalc = -1; - this.maxRatio = 0; - this.valid = true; - this.analysis = analysis; - this.assignedCluster = null; - this.updatesCount = 1; - this.isSWave = false; - } - - public void end(long end) { - this.end = end; - } - - public void endBadly() { - this.valid = false; - } - - public void setpWave(long pWave) { - if (this.pWave != pWave) { - this.updatesCount++; - } - this.pWave = pWave; - } - - public long getpWave() { - return pWave; - } - - - public boolean isSWave() { - return isSWave; - } - - public void setAsSWave(boolean isSWave){ - this.isSWave = isSWave; - } - - /** - * - * @return time in milliseconds when the event threshold was reached - */ - public long getStart() { - return start; - } - - /** - * - * @return time in millisecond when the event reached termination threshold - */ - public long getEnd() { - return end; - } - - public long getFirstLogTime() { - return firstLogTime; - } - - public boolean hasEnded() { - return getEnd() != 0; - } - - public double getMaxRatio() { - return maxRatio; - } - - public Analysis getAnalysis() { - return analysis; - } - - public boolean isValid() { - return valid; - } - - public double getLatFromStation() { - return getAnalysis().getStation().getLatitude(); - } - - public double getLonFromStation() { - return getAnalysis().getStation().getLongitude(); - } - - public double getElevationFromStation(){ - return getAnalysis().getStation().getAlt(); - } - - public void log(Log currentLog) { - logs.add(0, currentLog); - if (currentLog.getRatio() > this.maxRatio) { - this.maxRatio = currentLog.getRatio(); - } - - boolean eligible = getStart() - getFirstLogTime() >= 65 * 1000;// enough data available - if (eligible) { - if (nextPWaveCalc <= RECALCULATE_P_WAVE_THRESHOLDS.length - 1) { - double threshold = nextPWaveCalc < 0 ? -1 : RECALCULATE_P_WAVE_THRESHOLDS[nextPWaveCalc]; - if (maxRatio >= threshold) { - nextPWaveCalc++; - findPWaveMethod1(); - } - } - } - } - - // T-30sec - // first estimation of p wave - private void findPWaveMethod1() { - // 0 - when first detected - // 1 - first upgrade etc... - int strenghtLevel = nextPWaveCalc; - Log logAtStart = getClosestLog(getStart() - 1); - if (logAtStart == null) { - return; - } - long lookBack = (getStart() - (long) ((60.0 / strenghtLevel) * 1000)); - - List slows = new ArrayList<>(); - - double maxSpecial = -Double.MAX_VALUE; - double minSpecial = Double.MAX_VALUE; - - for (Log l : logs) { - long time = l.time(); - if (time >= lookBack && time <= getStart()) { - slows.add(l.getMediumRatio()); - double spec = l.getSpecialRatio(); - if (spec > 0) { - if (spec > maxSpecial) { - maxSpecial = spec; - } - if (spec < minSpecial) { - minSpecial = spec; - } - } - } - } - - maxSpecial = Math.max(minSpecial * 5.0, maxSpecial); - - Collections.sort(slows); - - // double slowRatioAtTheBeginning = logAtStart.getMediumRatio(); - double slow15Pct = slows.get((int) ((slows.size() - 1) * 0.175)); - - double mul = SPECIAL_PERCENTILE[strenghtLevel] * 1.1; - double specialThreshold = maxSpecial * mul + (1 - mul) * minSpecial; - - double slowThresholdMultiplier = SLOW_THRESHOLD_MULTIPLIERS[strenghtLevel]; - - // double slowThreshold = (0.2 * slowRatioAtTheBeginning + 0.8 * slow15Pct) * - // slowThresholdMultiplier; - - // DEPRECATED, again - long pWave = -1; - for (Log l : logs) { - long time = l.time(); - // l.getMediumRatio() <= slowThreshold; - boolean ratioOK = l.getRatio() <= slow15Pct * (slowThresholdMultiplier * 1.25); - boolean specialOK = l.getSpecialRatio() <= specialThreshold; - if (time >= lookBack && time <= getStart()) { - if (ratioOK && specialOK) { - pWave = time; - break; - } - } - } - - setpWave(pWave); - } - - // halving method - // this was supposed to be binary search probably - private Log getClosestLog(long time) { - if (logs.isEmpty()) { - return null; - } - if (time > logs.get(0).time()) { - return null; - } - if (time < logs.get(logs.size() - 1).time()) { - return null; - } - - int lowerBound = 0; - int upperBound = logs.size() - 1; - while (upperBound - lowerBound > 1) { - int mid = (upperBound + lowerBound) / 2; - if (logs.get(mid).time() > time) { - upperBound = mid; - } else { - lowerBound = mid; - } - } - Log up = logs.get(upperBound); - Log down = logs.get(lowerBound); - int diff1 = (int) Math.abs(up.time() - time); - int diff2 = (int) Math.abs(down.time() - time); - if (diff1 < diff2) { - return up; - } else { - return down; - } - } - - public int getUpdatesCount() { - return updatesCount; - } - - public List getLogs() { - return logs; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/Log.java b/GlobalQuakeCore/src/main/java/globalquake/core/analysis/Log.java deleted file mode 100644 index b4d8750..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/analysis/Log.java +++ /dev/null @@ -1,29 +0,0 @@ -package globalquake.core.analysis; - -import java.io.Serial; -import java.io.Serializable; - -public record Log(long time, int rawValue, float filteredV, float shortAverage, float mediumAverage, float longAverage, - float thirdAverage, float specialAverage, AnalysisStatus status) implements Serializable { - - @Serial - private static final long serialVersionUID = 5578601429266635895L; - - - public double getRatio() { - return shortAverage() / longAverage(); - } - - public double getMediumRatio() { - return mediumAverage() / longAverage(); - } - - public double getThirdRatio() { - return thirdAverage() / longAverage(); - } - - public double getSpecialRatio() { - return specialAverage() / longAverage(); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/archive/EarthquakeArchive.java b/GlobalQuakeCore/src/main/java/globalquake/core/archive/EarthquakeArchive.java deleted file mode 100644 index dad9444..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/archive/EarthquakeArchive.java +++ /dev/null @@ -1,110 +0,0 @@ -package globalquake.core.archive; - -import globalquake.core.GlobalQuake; -import globalquake.core.Settings; -import globalquake.core.earthquake.ArchivedQuake; -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.report.EarthquakeReporter; -import globalquake.utils.monitorable.MonitorableCopyOnWriteArrayList; -import org.tinylog.Logger; - -import java.io.*; -import java.util.*; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; - -public class EarthquakeArchive { - - public static final File ARCHIVE_FILE = new File(GlobalQuake.instance.getMainFolder(), "archive.dat"); - public static final File TEMP_ARCHIVE_FILE = new File(GlobalQuake.instance.getMainFolder(), "temp_archive.dat"); - private final ExecutorService executor; - - private List archivedQuakes; - - public EarthquakeArchive() { - executor = Executors.newSingleThreadExecutor(); - } - - @SuppressWarnings("unchecked") - public EarthquakeArchive loadArchive() { - if (!ARCHIVE_FILE.exists()) { - archivedQuakes = new MonitorableCopyOnWriteArrayList<>(); - Logger.info("Created new archive"); - } else { - try { - ObjectInputStream oin = new ObjectInputStream(new FileInputStream(ARCHIVE_FILE)); - archivedQuakes = (MonitorableCopyOnWriteArrayList) oin.readObject(); - oin.close(); - Logger.info("Loaded " + archivedQuakes.size() + " quakes from archive."); - } catch (Exception e) { - Logger.error(e); - archivedQuakes = new MonitorableCopyOnWriteArrayList<>(); - } - } - - archivedQuakes.sort(Comparator.comparing(archivedQuake1 -> -archivedQuake1.getOrigin())); - - return this; - } - - public void saveArchive() { - if (archivedQuakes != null) { - try { - ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(TEMP_ARCHIVE_FILE)); - Logger.info("Saving " + archivedQuakes.size() + " quakes to " + ARCHIVE_FILE.getName()); - out.writeObject(archivedQuakes); - out.close(); - boolean res = (!ARCHIVE_FILE.exists() || ARCHIVE_FILE.delete()) && TEMP_ARCHIVE_FILE.renameTo(ARCHIVE_FILE); - if(!res){ - Logger.error("Unable to save archive!"); - } else { - Logger.info("Archive saved"); - } - } catch (Exception e) { - Logger.error(e); - } - } - } - - public List getArchivedQuakes() { - return archivedQuakes; - } - - public void archiveQuakeAndSave(Earthquake earthquake) { - executor.submit(() -> { - archiveQuake(earthquake); - - saveArchive(); - if(Settings.reportsEnabled) { - reportQuake(earthquake); - } - - }); - } - - private void reportQuake(Earthquake earthquake) { - executor.submit(() -> { - try { - EarthquakeReporter.report(earthquake); - } catch (Exception e) { - Logger.error(e); - } - }); - } - - public synchronized void archiveQuake(Earthquake earthquake) { - if(archivedQuakes == null){ - archivedQuakes = new MonitorableCopyOnWriteArrayList<>(); - } - - ArchivedQuake archivedQuake = new ArchivedQuake(earthquake); - archivedQuake.updateRegion(); - archivedQuakes.add(0, archivedQuake); - archivedQuakes.sort(Comparator.comparing(archivedQuake1 -> -archivedQuake1.getOrigin())); - - while(archivedQuakes.size() > Settings.maxArchivedQuakes){ - archivedQuakes.remove(archivedQuakes.size() - 1); - } - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/Channel.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/Channel.java deleted file mode 100644 index 14dc5d9..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/Channel.java +++ /dev/null @@ -1,114 +0,0 @@ -package globalquake.core.database; - -import java.io.IOException; -import java.io.ObjectInputStream; -import java.io.Serial; -import java.io.Serializable; -import java.util.*; - -public final class Channel implements Serializable { - @Serial - private static final long serialVersionUID = 6513039511077454262L; - private final String code; - private final String locationCode; - private double sampleRate; - private double latitude; - private double longitude; - private double elevation; - private transient Map seedlinkNetworks = new HashMap<>(); - - private final Set stationSources = new HashSet<>(); - - @Serial - private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { - in.defaultReadObject(); - - seedlinkNetworks = new HashMap<>(); - } - - public Channel(String code, String locationCode, double sampleRate, double latitude, double longitude, - double elevation, StationSource stationSource) { - this.code = code; - this.locationCode = locationCode; - this.sampleRate = sampleRate; - this.latitude = latitude; - this.longitude = longitude; - this.elevation = elevation; - this.getStationSources().add(stationSource); - } - - public double getElevation() { - return elevation; - } - - public double getLatitude() { - return latitude; - } - - public double getLongitude() { - return longitude; - } - - public double getSampleRate() { - return sampleRate; - } - - public String getCode() { - return code; - } - - public String getLocationCode() { - return locationCode; - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; - Channel channel = (Channel) o; - return Double.compare(sampleRate, channel.sampleRate) == 0 && Double.compare(latitude, channel.latitude) == 0 && Double.compare(longitude, channel.longitude) == 0 && Double.compare(elevation, channel.elevation) == 0 && Objects.equals(code, channel.code) && Objects.equals(locationCode, channel.locationCode) && Objects.equals(seedlinkNetworks, channel.seedlinkNetworks) && Objects.equals(stationSources, channel.stationSources); - } - - @Override - public int hashCode() { - return Objects.hash(code, locationCode, sampleRate, latitude, longitude, elevation, seedlinkNetworks, stationSources); - } - - @Override - public String toString() { - if (seedlinkNetworks.isEmpty()) { - return "%s %s %dsps (unavailable)".formatted(getCode(), getLocationCode(), (int) getSampleRate()); - } else if (seedlinkNetworks.size() == 1) { - return "%s %s %dsps (%d seedlink)".formatted(getCode(), getLocationCode(), (int) getSampleRate(), seedlinkNetworks.size()); - } else { - return "%s %s %dsps (%d seedlinks)".formatted(getCode(), getLocationCode(), (int) getSampleRate(), seedlinkNetworks.size()); - } - } - - public boolean isAvailable() { - return !seedlinkNetworks.isEmpty(); - } - - public Map getSeedlinkNetworks() { - return seedlinkNetworks; - } - - public Set getStationSources() { - return stationSources; - } - - public void merge(Channel newChannel) { - this.getStationSources().addAll(newChannel.getStationSources()); - this.getSeedlinkNetworks().putAll(newChannel.getSeedlinkNetworks()); - this.sampleRate = newChannel.sampleRate; - this.latitude = newChannel.latitude; - this.longitude = newChannel.longitude; - this.elevation = newChannel.elevation; - } - - public SeedlinkNetwork selectBestSeedlinkNetwork() { - var leastStations = getSeedlinkNetworks().entrySet().stream().min(Map.Entry.comparingByValue()); - return leastStations.map(Map.Entry::getKey).orElse(null); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/CountInputStream.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/CountInputStream.java deleted file mode 100644 index b08fce3..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/CountInputStream.java +++ /dev/null @@ -1,50 +0,0 @@ -package globalquake.core.database; - -import java.io.FilterInputStream; -import java.io.IOException; -import java.io.InputStream; - -public class CountInputStream extends FilterInputStream { - - private long count = 0L; - private Runnable event; - - public CountInputStream(InputStream in) { - super(in); - } - - public void setEvent(Runnable event) { - this.event = event; - } - - public int read() throws IOException { - final int c = super.read(); - if (c >= 0) { - count++; - event.run(); - } - return c; - } - - public int read(byte[] b, int off, int len) throws IOException { - final int bytesRead = super.read(b, off, len); - if (bytesRead > 0) { - count += bytesRead; - event.run(); - } - return bytesRead; - } - - public int read(byte[] b) throws IOException { - final int bytesRead = super.read(b); - if (bytesRead > 0) { - count += bytesRead; - event.run(); - } - return bytesRead; - } - - public long getCount() { - return count; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/FDSNWSDownloader.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/FDSNWSDownloader.java deleted file mode 100644 index 7815e5f..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/FDSNWSDownloader.java +++ /dev/null @@ -1,228 +0,0 @@ -package globalquake.core.database; - -import globalquake.core.exception.FdnwsDownloadException; -import org.tinylog.Logger; -import org.w3c.dom.Document; -import org.w3c.dom.Element; -import org.w3c.dom.Node; -import org.w3c.dom.NodeList; -import org.xml.sax.InputSource; - -import javax.xml.parsers.DocumentBuilderFactory; -import java.io.InputStream; -import java.io.StringReader; -import java.net.HttpURLConnection; -import java.net.URL; -import java.nio.charset.StandardCharsets; -import java.time.Instant; -import java.time.ZoneId; -import java.time.format.DateTimeFormatter; -import java.util.ArrayList; -import java.util.List; - -public class FDSNWSDownloader { - - private static final DateTimeFormatter format1 = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss").withZone(ZoneId.systemDefault()); - private static final int TIMEOUT_SECONDS = 120; - - public static final List SUPPORTED_BANDS = List.of('E', 'S', 'H', 'B'); - public static final List SUPPORTED_INSTRUMENTS = List.of('H', 'L', 'G', 'M', 'N'); - - private static List downloadWadl(StationSource stationSource) throws Exception { - URL url = new URL("%sapplication.wadl".formatted(stationSource.getUrl())); - - HttpURLConnection con = (HttpURLConnection) url.openConnection(); - con.setConnectTimeout(TIMEOUT_SECONDS * 1000); - con.setReadTimeout(TIMEOUT_SECONDS * 1000); - InputStream inp = con.getInputStream(); - - Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(inp); - doc.getDocumentElement().normalize(); - - List paramNames = new ArrayList<>(); - NodeList paramNodes = doc.getElementsByTagName("param"); - for (int i = 0; i < paramNodes.getLength(); i++) { - Node paramNode = paramNodes.item(i); - if (paramNode.getNodeType() == Node.ELEMENT_NODE) { - Element paramElement = (Element) paramNode; - String paramName = paramElement.getAttribute("name"); - paramNames.add(paramName); - } - } - - return paramNames; - } - - public static List downloadFDSNWS(StationSource stationSource) throws Exception { - List result = new ArrayList<>(); - downloadFDSNWS(stationSource, result, -180, 180); - System.out.printf("%d Networks downloaded.%n", result.size()); - return result; - } - - public static void downloadFDSNWS(StationSource stationSource, List result, double minLon, double maxLon) throws Exception { - List supportedAttributes = downloadWadl(stationSource); - URL url; - if(supportedAttributes.contains("endafter")){ - url = new URL("%squery?minlongitude=%s&maxlongitude=%s&level=channel&endafter=%s&format=xml&channel=??Z".formatted(stationSource.getUrl(), minLon, maxLon, format1.format(Instant.now()))); - } else { - url = new URL("%squery?minlongitude=%s&maxlongitude=%s&level=channel&format=xml&channel=??Z".formatted(stationSource.getUrl(), minLon, maxLon)); - } - - - Logger.info("Connecting to " + url); - - HttpURLConnection con = (HttpURLConnection) url.openConnection(); - con.setConnectTimeout(TIMEOUT_SECONDS * 1000); - con.setReadTimeout(TIMEOUT_SECONDS * 1000); - - int response = con.getResponseCode(); - - if (response == 413) { - Logger.debug("413! Splitting..."); - stationSource.getStatus().setString("Splitting..."); - if(maxLon - minLon < 0.1){ - return; - } - - downloadFDSNWS(stationSource, result, minLon, (minLon + maxLon) / 2.0); - downloadFDSNWS(stationSource, result, (minLon + maxLon) / 2.0, maxLon); - } else if(response / 100 == 2) { - InputStream inp = con.getInputStream(); - downloadFDSNWS(stationSource, result, inp); - } else { - throw new FdnwsDownloadException("HTTP Status %d!".formatted(response)); - } - } - - private static void downloadFDSNWS(StationSource stationSource, List result, InputStream inp) throws Exception { - DocumentBuilderFactory f = DocumentBuilderFactory.newInstance(); - f.setNamespaceAware(false); - f.setValidating(false); - final CountInputStream in = new CountInputStream(inp); - - in.setEvent(() -> stationSource.getStatus().setString("Downloading %dkB".formatted(in.getCount() / 1024))); - - String text = new String(in.readAllBytes(), StandardCharsets.UTF_8); - - // some FDSNWS providers send empty document if no stations found by given parameters - if(text.isEmpty()){ - return; - } - - Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new InputSource(new StringReader(text))); - - doc.getDocumentElement().normalize(); - - Element root = doc.getDocumentElement(); - parseNetworks(result, stationSource, root); - } - - private static void parseNetworks(List result, StationSource stationSource, Element root) { - NodeList networks = root.getElementsByTagName("Network"); - for (int i = 0; i < networks.getLength(); i++) { - String networkCode = obtainAttribute(networks.item(i), "code", "unknown"); - if (networkCode.equalsIgnoreCase("unknown")) { - Logger.debug("ERR: no network code wtf."); - continue; - } - String networkDescription = obtainElement(networks.item(i), "Description", ""); - parseStations(result, stationSource, networks, i, networkCode, networkDescription); - } - } - - private static void parseStations(List result, StationSource stationSource, NodeList networks, int i, String networkCode, String networkDescription) { - NodeList stations = ((Element) networks.item(i)).getElementsByTagName("Station"); - for (int j = 0; j < stations.getLength(); j++) { - Node stationNode = stations.item(j); - String stationCode = stationNode.getAttributes().getNamedItem("code").getNodeValue(); - String stationSite = ((Element) stationNode).getElementsByTagName("Site").item(0).getTextContent(); - - double lat = Double.parseDouble( - ((Element) stationNode).getElementsByTagName("Latitude").item(0).getTextContent()); - double lon = Double.parseDouble( - ((Element) stationNode).getElementsByTagName("Longitude").item(0).getTextContent()); - double alt = Double.parseDouble( - ((Element) stationNode).getElementsByTagName("Elevation").item(0).getTextContent()); - - parseChannels(result, stationSource, networkCode, networkDescription, (Element) stationNode, stationCode, stationSite, lat, lon, alt); - } - } - - private static void parseChannels( - List result, StationSource stationSource, String networkCode, String networkDescription, - Element stationNode, String stationCode, String stationSite, - double stationLat, double stationLon, double stationAlt) { - NodeList channels = stationNode.getElementsByTagName("Channel"); - for (int k = 0; k < channels.getLength(); k++) { - // Necessary values: lat lon alt sampleRate, Other can fail - - Node channelNode = channels.item(k); - String channel = channelNode.getAttributes().getNamedItem("code").getNodeValue(); - String locationCode = channelNode.getAttributes().getNamedItem("locationCode") - .getNodeValue(); - double lat = Double.parseDouble( - ((Element) channelNode).getElementsByTagName("Latitude").item(0).getTextContent()); - double lon = Double.parseDouble( - ((Element) channelNode).getElementsByTagName("Longitude").item(0).getTextContent()); - double alt = Double.parseDouble( - ((Element) channelNode).getElementsByTagName("Elevation").item(0).getTextContent()); - - var item = ((Element) channelNode) - .getElementsByTagName("SampleRate").item(0); - - // sample rate is not actually required as it is provided by the seedlink protocol itself - double sampleRate = -1; - if(item != null){ - sampleRate = Double.parseDouble(((Element) channelNode) - .getElementsByTagName("SampleRate").item(0).getTextContent()); - } - - if(!isSupported(channel)){ - continue; - } - - addChannel(result, stationSource, networkCode, networkDescription, stationCode, stationSite, channel, - locationCode, lat, lon, alt, sampleRate, stationLat, stationLon, stationAlt); - } - } - - private static boolean isSupported(String channel) { - char band = channel.charAt(0); - char instrument = channel.charAt(1); - - if(!(SUPPORTED_BANDS.contains(band))){ - return false; - } - - - return SUPPORTED_INSTRUMENTS.contains(instrument); - } - - private static void addChannel( - List result, StationSource stationSource, String networkCode, String networkDescription, - String stationCode, String stationSite, String channelCode, String locationCode, - double lat, double lon, double alt, double sampleRate, - double stationLat, double stationLon, double stationAlt) { - Network network = StationDatabase.getOrCreateNetwork(result, networkCode, networkDescription); - Station station = StationDatabase.getOrCreateStation(network, stationCode, stationSite, stationLat, stationLon, stationAlt); - StationDatabase.getOrCreateChannel(station, channelCode, locationCode, lat, lon, alt, sampleRate, stationSource); - } - - public static String obtainElement(Node item, String name, String defaultValue) { - try { - return ((Element) item).getElementsByTagName(name).item(0).getTextContent(); - } catch (Exception e) { - return defaultValue; - } - } - - public static String obtainAttribute(Node item, String name, String defaultValue) { - try { - return item.getAttributes().getNamedItem(name).getNodeValue(); - } catch (Exception e) { - return defaultValue; - } - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/Network.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/Network.java deleted file mode 100644 index 18fd459..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/Network.java +++ /dev/null @@ -1,46 +0,0 @@ -package globalquake.core.database; - -import java.io.Serial; -import java.io.Serializable; -import java.util.*; - -public class Network implements Serializable { - - @Serial - private static final long serialVersionUID = 7727167596943281647L; - - private final String networkCode; - private final String description; - private final List stations; - - public Network(String networkCode, String description) { - this.networkCode = networkCode; - this.description = description; - this.stations = new ArrayList<>(); - } - - public String getNetworkCode() { - return networkCode; - } - - public String getDescription() { - return description; - } - - public List getStations() { - return stations; - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; - Network network = (Network) o; - return Objects.equals(networkCode, network.networkCode) && Objects.equals(description, network.description) && Objects.equals(stations, network.stations); - } - - @Override - public int hashCode() { - return Objects.hash(networkCode, description, stations); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/SeedlinkCommunicator.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/SeedlinkCommunicator.java deleted file mode 100644 index e7c0ad5..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/SeedlinkCommunicator.java +++ /dev/null @@ -1,132 +0,0 @@ -package globalquake.core.database; - -import edu.sc.seis.seisFile.seedlink.SeedlinkReader; -import org.tinylog.Logger; -import org.w3c.dom.Document; -import org.w3c.dom.Element; -import org.w3c.dom.Node; -import org.w3c.dom.NodeList; -import org.xml.sax.InputSource; - -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import java.io.StringReader; -import java.text.SimpleDateFormat; -import java.util.*; - -public class SeedlinkCommunicator { - - public static final long UNKNOWN_DELAY = Long.MIN_VALUE; - private static final ThreadLocal FORMAT_UTC_SHORT = new ThreadLocal<>(); - private static final ThreadLocal FORMAT_UTC_LONG = new ThreadLocal<>(); - private static final long MAX_DELAY_MS = 1000 * 60 * 60 * 24L; - public static final int SEEDLINK_TIMEOUT_SECONDS = 60; - - public static void runAvailabilityCheck(SeedlinkNetwork seedlinkNetwork, StationDatabase stationDatabase) throws Exception { - seedlinkNetwork.setStatus(0, "Connecting..."); - SeedlinkReader reader = new SeedlinkReader(seedlinkNetwork.getHost(), seedlinkNetwork.getPort(), SEEDLINK_TIMEOUT_SECONDS, false); - - seedlinkNetwork.setStatus(33, "Downloading..."); - String infoString = reader.getInfoString(SeedlinkReader.INFO_STREAMS).trim().replaceAll("[^\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]", " "); - - seedlinkNetwork.setStatus(66, "Parsing..."); - parseAvailability(infoString, stationDatabase, seedlinkNetwork); - - seedlinkNetwork.setStatus(80, "Finishing..."); - reader.close(); - - seedlinkNetwork.setStatus(99, "Done"); - } - - private static void parseAvailability(String infoString, StationDatabase stationDatabase, SeedlinkNetwork seedlinkNetwork) throws Exception { - seedlinkNetwork.availableStations = 0; - - DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); - DocumentBuilder db = dbf.newDocumentBuilder(); - Document doc = db.parse(new InputSource(new StringReader(infoString))); - doc.getDocumentElement().normalize(); - NodeList nodeList = doc.getElementsByTagName("station"); - Logger.info("Found %d available stations in seedlink %s".formatted(nodeList.getLength(), seedlinkNetwork.getName())); - for (int itr = 0; itr < nodeList.getLength(); itr++) { - Node node = nodeList.item(itr); - String stationCode = node.getAttributes().getNamedItem("name").getTextContent(); - String networkCode = node.getAttributes().getNamedItem("network").getTextContent(); - NodeList channelList = ((Element) node).getElementsByTagName("stream"); - for (int k = 0; k < channelList.getLength(); k++) { - Node channel = channelList.item(k); - String locationCode = channel.getAttributes().getNamedItem("location").getTextContent(); - String channelName = channel.getAttributes().getNamedItem("seedname").getTextContent(); - String endDate = channel.getAttributes().getNamedItem("end_time").getTextContent(); - - long delay = UNKNOWN_DELAY; - - try { - if(FORMAT_UTC_LONG.get() == null || FORMAT_UTC_SHORT.get() == null){ - FORMAT_UTC_SHORT.set(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")); - FORMAT_UTC_SHORT.get().setTimeZone(TimeZone.getTimeZone("UTC")); - - FORMAT_UTC_LONG.set(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss.SSSS")); - FORMAT_UTC_LONG.get().setTimeZone(TimeZone.getTimeZone("UTC")); - } - - Calendar end = Calendar.getInstance(); - end.setTime(endDate.contains("-") ? FORMAT_UTC_SHORT.get().parse(endDate) : FORMAT_UTC_LONG.get().parse(endDate)); - - delay = System.currentTimeMillis() - end.getTimeInMillis(); - - if (delay > MAX_DELAY_MS) { - continue; - } - - } catch(NumberFormatException e){ - Logger.warn(new RuntimeException("Failed to get delay from %s, %s: %s".formatted(stationCode, seedlinkNetwork.getHost(), e.getMessage()))); - } - - addAvailableChannel(networkCode, stationCode, channelName, locationCode, delay, seedlinkNetwork, stationDatabase); - } - } - } - - private static void addAvailableChannel(String networkCode, String stationCode, String channelName, String locationCode, long delay, SeedlinkNetwork seedlinkNetwork, StationDatabase stationDatabase) { - locationCode = locationCode.trim(); - stationDatabase.getDatabaseWriteLock().lock(); - try { - Station station = StationDatabase.getStation(stationDatabase.getNetworks(), networkCode, stationCode); - if(station == null){ - return; // :( - } - - Channel channel = StationDatabase.getChannel(stationDatabase.getNetworks(), networkCode, stationCode, channelName, locationCode); - - if(channel == null){ - channel = findChannelButDontUseLocationCode(station, channelName); - - if(channel != null){ - var any = channel.getStationSources().stream().findAny(); - Channel newChannel = StationDatabase.getOrCreateChannel(station, channelName, locationCode, channel.getLatitude(), channel.getLongitude(), channel.getElevation(), channel.getSampleRate(), any.orElse(null)); - Logger.warn("Did not find exact match for [%s %s %s `%s`], assuming the location code is `%s`".formatted(networkCode, stationCode, channelName, locationCode, channel.getLocationCode())); - channel = newChannel; - } - } - - if (channel == null) { - return; - } - - seedlinkNetwork.availableStations++; - channel.getSeedlinkNetworks().put(seedlinkNetwork, delay); - }finally { - stationDatabase.getDatabaseWriteLock().unlock(); - } - } - - private static Channel findChannelButDontUseLocationCode(Station station, String channelName) { - List channels = new ArrayList<>(station.getChannels()).stream().filter(channel -> channel.getCode().equals(channelName)).sorted(Comparator.comparing(Channel::getLocationCode)).toList(); - if(channels.isEmpty()){ - return null; - } - - return channels.get(0); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/SeedlinkNetwork.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/SeedlinkNetwork.java deleted file mode 100644 index e8e5831..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/SeedlinkNetwork.java +++ /dev/null @@ -1,95 +0,0 @@ -package globalquake.core.database; - -import javax.swing.*; -import java.io.Serial; -import java.io.Serializable; -import java.util.Objects; - -public final class SeedlinkNetwork implements Serializable { - @Serial - private static final long serialVersionUID = 0L; - private final String name; - private final String host; - private final int port; - - private transient JProgressBar statusBar; - - public transient int availableStations; - - public transient int selectedStations; - - public transient int connectedStations = 0; - - public transient SeedlinkStatus status = SeedlinkStatus.DISCONNECTED; - - public SeedlinkNetwork(String name, String host, int port) { - this.name = name; - this.host = host; - this.port = port; - } - - public String getName() { - return name; - } - - public String getHost() { - return host; - } - - public int getPort() { - return port; - } - - @Override - public boolean equals(Object obj) { - if (obj == this) return true; - if (obj == null || obj.getClass() != this.getClass()) return false; - var that = (SeedlinkNetwork) obj; - return Objects.equals(this.name, that.name) && - Objects.equals(this.host, that.host) && - this.port == that.port; - } - - @Override - public int hashCode() { - return Objects.hash(name, host, port); - } - - @Override - public String toString() { - return "SeedlinkNetwork[" + - "name=" + name + ", " + - "host=" + host + ", " + - "port=" + port + ']'; - } - - public void setStatus(int value, String str){ - SwingUtilities.invokeLater(() -> { - getStatusBar().setString(str); - getStatusBar().setValue(value); - }); - } - - public JProgressBar getStatusBar() { - if(statusBar == null){ - statusBar = new JProgressBar(JProgressBar.HORIZONTAL, 0, 100); - statusBar.setIndeterminate(false); - statusBar.setString("Ready"); - statusBar.setValue(0); - statusBar.setStringPainted(true); - } - return statusBar; - } - - public int getSelectedStations() { - return selectedStations; - } - - public int getAvailableStations() { - return availableStations; - } - - public int getConnectedStations() { - return connectedStations; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/SeedlinkStatus.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/SeedlinkStatus.java deleted file mode 100644 index 3d9a2d9..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/SeedlinkStatus.java +++ /dev/null @@ -1,7 +0,0 @@ -package globalquake.core.database; - -public enum SeedlinkStatus { - - DISCONNECTED, CONNECTING, RUNNING - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/Station.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/Station.java deleted file mode 100644 index e803239..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/Station.java +++ /dev/null @@ -1,131 +0,0 @@ -package globalquake.core.database; - -import globalquake.utils.GeoUtils; - -import java.io.Serial; -import java.io.Serializable; -import java.util.ArrayList; -import java.util.List; -import java.util.Objects; - -public class Station implements Serializable { - - @Serial - private static final long serialVersionUID = 1988088861845815884L; - - private final double lat; - - private final double lon; - - private final double alt; - - private final String stationCode; - private final String stationSite; - private final List channels; - private final Network network; - private Channel selectedChannel = null; - - public Station(Network network, String stationCode, String stationSite, double lat, double lon, double alt) { - this.lat = lat; - this.lon = lon; - this.alt = alt; - this.network = network; - this.stationCode = stationCode; - this.stationSite = stationSite; - this.channels = new ArrayList<>(); - } - - public Network getNetwork() { - return network; - } - - public List getChannels() { - return channels; - } - - public String getStationSite() { - return stationSite; - } - - public String getStationCode() { - return stationCode; - } - - public Channel getSelectedChannel() { - return selectedChannel; - } - - public void setSelectedChannel(Channel selectedChannel) { - this.selectedChannel = selectedChannel; - } - - public double getAlt() { - return alt; - } - - public double getLatitude() { - return lat; - } - - public double getLongitude() { - return lon; - } - - @Override - public String toString() { - return "%s %s".formatted(getNetwork().getNetworkCode(), getStationCode()); - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; - Station station = (Station) o; - return getChannels().equals(station.getChannels()) && Double.compare(lat, station.lat) == 0 && Double.compare(lon, station.lon) == 0 && Double.compare(alt, station.alt) == 0 && Objects.equals(stationCode, station.stationCode) && Objects.equals(stationSite, station.stationSite); - } - - @Override - public int hashCode() { - return Objects.hash(lat, lon, alt, stationCode, stationSite, channels); - } - - public boolean hasAvailableChannel() { - return getChannels().stream().anyMatch(Channel::isAvailable); - } - - public void selectBestChannel() { - selectBestAvailableChannel(); - - if(selectedChannel != null){ - return; - } - - var anyChannel = getChannels().stream().findAny(); - anyChannel.ifPresent(channel -> selectedChannel = channel); - } - - public void selectBestAvailableChannel() { - if (!channels.contains(selectedChannel) || (selectedChannel != null && !selectedChannel.isAvailable())) { - selectedChannel = null; - } - - if(selectedChannel != null){ - return; - } - - for(Channel channel : getChannels()){ - if (channel.isAvailable() && (selectedChannel == null || channel.getSampleRate() < selectedChannel.getSampleRate())) { - selectedChannel = channel; - } - } - } - - public boolean locationErrorSuspected() { - if(getSelectedChannel() == null){ - return false; - } - - double gcd = GeoUtils.greatCircleDistance(lat, lon, getSelectedChannel().getLatitude(), getSelectedChannel().getLongitude()); - return gcd > 10.0; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/StationDatabase.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/StationDatabase.java deleted file mode 100644 index 26977ea..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/StationDatabase.java +++ /dev/null @@ -1,271 +0,0 @@ -package globalquake.core.database; - -import java.io.IOException; -import java.io.ObjectInputStream; -import java.io.Serial; -import java.io.Serializable; -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReadWriteLock; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -@SuppressWarnings("CommentedOutCode") -public class StationDatabase implements Serializable { - - @Serial - private static final long serialVersionUID = -679301102141884137L; - - private final List networks = new ArrayList<>(); - private final List seedlinkNetworks = new ArrayList<>(); - private final List stationSources = new ArrayList<>(); - - private transient ReadWriteLock databaseLock = new ReentrantReadWriteLock(); - - private transient Lock databaseReadLock = databaseLock.readLock(); - private transient Lock databaseWriteLock = databaseLock.writeLock(); - - - @Serial - private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { - in.defaultReadObject(); - - databaseLock = new ReentrantReadWriteLock(); - databaseReadLock = databaseLock.readLock(); - databaseWriteLock = databaseLock.writeLock(); - } - - public StationDatabase() { - addDefaults(); - } - - @SuppressWarnings("HttpUrlsUsage") - public void addDefaults() { - stationSources.add(new StationSource("BGR", "https://eida.bgr.de/fdsnws/station/1/")); - stationSources.add(new StationSource("KNMI", "http://rdsa.knmi.nl/fdsnws/station/1/")); - stationSources.add(new StationSource("KOERI", "http://eida-service.koeri.boun.edu.tr/fdsnws/station/1/")); - stationSources.add(new StationSource("ETHZ", "http://eida.ethz.ch/fdsnws/station/1/")); - stationSources.add(new StationSource("GEOFON, GFZ", "http://geofon.gfz-potsdam.de/fdsnws/station/1/")); - stationSources.add(new StationSource("ICGC", "http://ws.icgc.cat/fdsnws/station/1/")); - stationSources.add(new StationSource("IPGP", "http://eida.ipgp.fr/fdsnws/station/1/")); - stationSources.add(new StationSource("INGV", "http://webservices.ingv.it/fdsnws/station/1/")); - stationSources.add(new StationSource("LMU", "http://erde.geophysik.uni-muenchen.de/fdsnws/station/1/")); - stationSources.add(new StationSource("NIEP", "https://eida-sc3.infp.ro/fdsnws/station/1/")); - stationSources.add(new StationSource("NOA", "http://eida.gein.noa.gr/fdsnws/station/1/")); - stationSources.add(new StationSource("ORFEUS", "http://www.orfeus-eu.org/fdsnws/station/1/")); - stationSources.add(new StationSource("RESIF", "http://ws.resif.fr/fdsnws/station/1/")); - // stationSources.add(new StationSource("SNAC NOA", "http://snac.gein.noa.gr:8080/fdsnws/station/1/")); - stationSources.add(new StationSource("IRIS DMC", "http://service.iris.edu/fdsnws/station/1/")); - stationSources.add(new StationSource("NCEDC", "https://service.ncedc.org/fdsnws/station/1/")); - stationSources.add(new StationSource("SCEDC", "http://service.scedc.caltech.edu/fdsnws/station/1/")); - stationSources.add(new StationSource("TexNet", "http://rtserve.beg.utexas.edu/fdsnws/station/1/")); - stationSources.add(new StationSource("USP-IAG", "http://seisrequest.iag.usp.br/fdsnws/station/1/")); - stationSources.add(new StationSource("BMKG", "https://geof.bmkg.go.id/fdsnws/station/1/")); - stationSources.add(new StationSource("AusPass", "http://auspass.edu.au:8080/fdsnws/station/1/")); - - // 0.9.3 - stationSources.add(new StationSource("ESM", "https://esm-db.eu/fdsnws/station/1/")); - stationSources.add(new StationSource("GeoNet", "https://service.geonet.org.nz/fdsnws/station/1/")); - stationSources.add(new StationSource("Haiti", "https://ayiti.unice.fr/ayiti-seismes/fdsnws/station/1/")); - stationSources.add(new StationSource("SismoAzur", "https://sismoazur.oca.eu/fdsnws/station/1/")); - - - // GOOD SEEDLINKS - seedlinkNetworks.add(new SeedlinkNetwork("AusPass", "auspass.edu.au", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("GEOFON, GFZ", "geofon.gfz-potsdam.de", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("GEONET", "link.geonet.org.nz", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("IDA Project", "rtserve.ida.ucsd.edu", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("IFZ", "data.ifz.ru", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("IRIS DMC", "rtserve.iris.washington.edu", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("IRIS Jamaseis", "jamaseis.iris.edu", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("ISNET - UNINA Università degli Studi di Napoli Federico II", "185.15.171.86", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("OBSEBRE", "obsebre.es", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("OGS", "nam.ogs.it", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("Oklahoma University", "rtserve.ou.edu", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("Red Sìsmica Baru", "helis.redsismicabaru.com", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("RESIF", "rtserve.resif.fr", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("SCSN-USC (South Carolina Seismic Network)", "eeyore.seis.sc.edu", 6382)); - seedlinkNetworks.add(new SeedlinkNetwork("Seisme IRD", "rtserve.ird.nc", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("SNAC NOA", "snac.gein.noa.gr", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("UFRN (Universidade Federal do Rio Grande do Norte)", "sislink.geofisica.ufrn.br", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("Universidade de Évora", "clv-cge.uevora.pt", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("UPR", "worm.uprm.edu", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("NRCAN", "earthquakescanada.nrcan.gc.ca", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("USGS", "cwbpub.cr.usgs.gov", 18000)); - - // Seedlink Networks with ISSUE #22 (No support for multi station?) - seedlinkNetworks.add(new SeedlinkNetwork("BGR", "eida.bgr.de", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("ENS", "ephesite.ens.fr", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("Helsinki", "finseis.seismo.helsinki.fi", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("Haiti", "ayiti.unice.fr", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("ICGC", "ws.icgc.cat", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("IPGP", "rtserver.ipgp.fr", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("TexNet", "rtserve.beg.utexas.edu", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("LMU", "erde.geophysik.uni-muenchen.de", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("NIGGG", "195.96.231.100", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("ORFEUS", "eida.orfeus-eu.org", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("PLSN (IGF Poland)", "hudson.igf.edu.pl", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("SANET", "147.213.113.73", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("Thai Meteorological Department", "119.46.126.38", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("Unical Universita Della Calabria", "www.sismocal.org", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("UNIV-AGUniversité des Antilles", "seedsrv0.ovmp.martinique.univ-ag.fr", 18000)); - - // POSSIBLY NO DATA AT ALL / CRASHES / BIG DELAY - seedlinkNetworks.add(new SeedlinkNetwork("RSIS", "rsis1.on.br", 18000)); - seedlinkNetworks.add(new SeedlinkNetwork("USP-IAG", "seisrequest.iag.usp.br", 18000)); - - // NOT RESPONDING / TIMEOUT - //seedlinkNetworks.add(new SeedlinkNetwork("CISMID", "www.cismid.uni.edu.pe", 18000)); - //seedlinkNetworks.add(new SeedlinkNetwork("Staneo", "vibrato.staneo.fr", 18000)); - //seedlinkNetworks.add(new SeedlinkNetwork("UNITSUniversità degli studi di Trieste", "rtweb.units.it", 18000)); - //seedlinkNetworks.add(new SeedlinkNetwork("Universidad de Colima", "148.213.24.15", 18000)); - - // CONNECTION REFUSED - //seedlinkNetworks.add(new SeedlinkNetwork("Geoscience Australia", "seis-pub.ga.gov.au", 18000)); - //seedlinkNetworks.add(new SeedlinkNetwork("GSRAS (?)", "89.22.182.133", 18000)); - //seedlinkNetworks.add(new SeedlinkNetwork("Red Sìsmica de Puerto Rico", "161.35.236.45", 18000)); - } - - public List getNetworks() { - return networks; - } - - public List getSeedlinkNetworks() { - return seedlinkNetworks; - } - - public List getStationSources() { - return stationSources; - } - - public Lock getDatabaseReadLock() { - return databaseReadLock; - } - - public Lock getDatabaseWriteLock() { - return databaseWriteLock; - } - - public static Channel getChannel(Station station, String channelCode, String locationCode){ - for(Channel channel: station.getChannels()){ - if(channel.getCode().equalsIgnoreCase(channelCode) && channel.getLocationCode().equalsIgnoreCase(locationCode)){ - return channel; - } - } - return null; - } - - @SuppressWarnings("UnusedReturnValue") - public static Channel getOrCreateChannel(Station station, String channelCode, String locationCode, double lat, double lon, double alt, double sampleRate, StationSource stationSource) { - Channel channel = getChannel(station, channelCode, locationCode); - if(channel != null){ - return channel; - } - - channel = new Channel(channelCode, locationCode, sampleRate, lat, lon, alt, stationSource); - station.getChannels().add(channel); - - return channel; - } - - public static Station getStation(List networks, String networkCode, String stationCode) { - Network network = getNetwork(networks, networkCode); - if(network == null){ - return null; - } - - return findStation(network, stationCode); - } - - public static Channel getChannel(List networks, String networkCode, String stationCode, String channelName, String locationCode) { - Station station = getStation(networks, networkCode, stationCode); - if(station == null){ - return null; - } - - return getChannel(station, channelName, locationCode); - } - - private static Station findStation(Network network, String stationCode) { - for(Station station: network.getStations()){ - if(station.getStationCode().equalsIgnoreCase(stationCode)){ - return station; - } - } - return null; - } - - - public static Station getOrCreateStation(Network network, String stationCode, String stationSite, double lat, double lon, double alt) { - Station station = findStation(network, stationCode); - if(station != null){ - return station; - } - - station = new Station(network, stationCode, stationSite, lat, lon ,alt); - - network.getStations().add(station); - - return station; - } - - public static Station getOrInsertStation(Network network, Station stationNew) { - Station station = findStation(network, stationNew.getStationCode()); - if(station != null){ - return station; - } - - network.getStations().add(stationNew); - - return stationNew; - } - - public static Network getNetwork(List networks, String networkCode) { - for(Network network: networks){ - if(network.getNetworkCode().equalsIgnoreCase(networkCode)){ - return network; - } - } - - return null; - } - - public static Network getOrCreateNetwork(List networks, String networkCode, String networkDescription) { - Network resultNetwork = getNetwork(networks, networkCode); - if(resultNetwork != null) { - return resultNetwork; - } - - resultNetwork = new Network(networkCode, networkDescription); - networks.add(resultNetwork); - - return resultNetwork; - } - - public static Network getOrInsertNetwork(List networks, Network network) { - Network resultNetwork = getNetwork(networks, network.getNetworkCode()); - if(resultNetwork != null) { - return resultNetwork; - } - - networks.add(network); - - return network; - } - - - @SuppressWarnings("UnusedReturnValue") - public Channel acceptChannel(Network network, Station station, Channel channel) { - Network networkFound = getOrInsertNetwork(networks, network); - Station stationFound = getOrInsertStation(networkFound, station); - Channel channelFound = getChannel(stationFound, channel.getCode(), channel.getLocationCode()); - if(channelFound != null){ - channelFound.merge(channel); - } else { - stationFound.getChannels().add(channel); - } - - return channel; - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/StationDatabaseManager.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/StationDatabaseManager.java deleted file mode 100644 index d183b9d..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/StationDatabaseManager.java +++ /dev/null @@ -1,307 +0,0 @@ -package globalquake.core.database; - -import globalquake.core.GlobalQuake; -import globalquake.core.exception.FatalIOException; -import globalquake.core.exception.FdnwsDownloadException; -import org.tinylog.Logger; - -import java.io.*; -import java.net.SocketTimeoutException; -import java.time.LocalDateTime; -import java.util.Iterator; -import java.util.List; -import java.util.concurrent.*; - -public class StationDatabaseManager { - - private static final int ATTEMPTS = 3; - private StationDatabase stationDatabase; - - private final List updateListeners = new CopyOnWriteArrayList<>(); - - private final List statusListeners = new CopyOnWriteArrayList<>(); - private boolean updating = false; - - public StationDatabaseManager(){} - - public StationDatabaseManager(StationDatabase stationDatabase){ - this.stationDatabase = stationDatabase; - } - - public void load() throws FatalIOException { - File file = getDatabaseFile(); - if (!file.getParentFile().exists()) { - if (!file.getParentFile().mkdirs()) { - throw new FatalIOException("Unable to create database file directory!", null); - } - } - - if (file.exists()) { - try { - ObjectInputStream in = new ObjectInputStream(new FileInputStream(file)); - stationDatabase = (StationDatabase) in.readObject(); - in.close(); - - Logger.info("Database load successfull"); - } catch (ClassNotFoundException | IOException e) { - GlobalQuake.instance.getErrorHandler().handleException(new FatalIOException("Unable to read station database!", e)); - } - } - - if (stationDatabase == null) { - Logger.info("A new database created"); - stationDatabase = new StationDatabase(); - } - - } - - public void save() throws FatalIOException { - File file = getDatabaseFile(); - if (!file.getParentFile().exists()) { - if (!file.getParentFile().mkdirs()) { - throw new FatalIOException("Unable to create database file directory!", null); - } - } - - if (stationDatabase == null) { - return; - } - - stationDatabase.getDatabaseReadLock().lock(); - try { - ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(file)); - out.writeObject(stationDatabase); - out.close(); - Logger.info("Station database saved sucessfully"); - } catch (IOException e) { - throw new FatalIOException("Unable to save station database!", e); - } finally { - stationDatabase.getDatabaseReadLock().unlock(); - } - } - - public void addUpdateListener(Runnable runnable) { - this.updateListeners.add(runnable); - } - - public void addStatusListener(Runnable runnable) { - this.statusListeners.add(runnable); - } - - public void fireUpdateEvent() { - for (Runnable runnable : updateListeners) { - runnable.run(); - } - } - - private void fireStatusChangeEvent() { - for (Runnable runnable : statusListeners) { - runnable.run(); - } - } - - public void runUpdate(List toBeUpdated, Runnable onFinish) { - this.updating = true; - fireStatusChangeEvent(); - - final Object statusSync = new Object(); - - new Thread(() -> { - toBeUpdated.forEach(stationSource -> { - stationSource.getStatus().setString("Queued..."); - stationSource.getStatus().setValue(0); - }); - toBeUpdated.parallelStream().forEach(stationSource -> { - try { - synchronized (statusSync) { - stationSource.getStatus().setString("Updating..."); - } - List networkList = FDSNWSDownloader.downloadFDSNWS(stationSource); - - synchronized (statusSync) { - stationSource.getStatus().setString("Updating database..."); - } - - StationDatabaseManager.this.acceptNetworks(networkList); - - synchronized (statusSync) { - stationSource.getStatus().setString(networkList.size() + " Networks Downloaded"); - stationSource.getStatus().setValue(100); - stationSource.setLastUpdate(LocalDateTime.now()); - } - } catch (SocketTimeoutException e) { - Logger.error(e); - synchronized (statusSync) { - stationSource.getStatus().setString("Timed out!"); - stationSource.getStatus().setValue(0); - } - } catch (FdnwsDownloadException e) { - Logger.error(e); - synchronized (statusSync) { - stationSource.getStatus().setString(e.getUserMessage()); - stationSource.getStatus().setValue(0); - } - } catch (Exception e) { - Logger.error(e); - synchronized (statusSync) { - stationSource.getStatus().setString("Error!"); - stationSource.getStatus().setValue(0); - } - } finally { - fireUpdateEvent(); - } - }); - - this.updating = false; - fireStatusChangeEvent(); - if (onFinish != null) { - onFinish.run(); - } - }).start(); - } - - protected void acceptNetworks(List networkList) { - stationDatabase.getDatabaseWriteLock().lock(); - try { - for (Network network : networkList) { - for (Station station : network.getStations()) { - for (Channel channel : station.getChannels()) { - stationDatabase.acceptChannel(network, station, channel); - } - } - } - } finally { - stationDatabase.getDatabaseWriteLock().unlock(); - } - } - - private static File getDatabaseFile() { - return new File(getStationsFolder(), "database.dat"); - } - - private static File getStationsFolder() { - return new File(GlobalQuake.instance.getMainFolder(), "/stationDatabase/"); - } - - public StationDatabase getStationDatabase() { - return stationDatabase; - } - - public void runAvailabilityCheck(List toBeUpdated, Runnable onFinish) { - this.updating = true; - toBeUpdated.forEach(seedlinkNetwork -> seedlinkNetwork.setStatus(0, "Queued...")); - fireStatusChangeEvent(); - - final Object statusSync = new Object(); - - new Thread(() -> { - toBeUpdated.parallelStream().forEach(seedlinkNetwork -> { - for (int attempt = 1; attempt <= ATTEMPTS; attempt++) { - try { - synchronized (statusSync) { - seedlinkNetwork.setStatus(0, attempt > 1 ? "Attempt %d...".formatted(attempt) : "Updating..."); - } - - ExecutorService executor = Executors.newSingleThreadExecutor(); - - Callable task = () -> { - SeedlinkCommunicator.runAvailabilityCheck(seedlinkNetwork, stationDatabase); - return null; - }; - - Future future = executor.submit(task); - future.get(SeedlinkCommunicator.SEEDLINK_TIMEOUT_SECONDS, TimeUnit.SECONDS); - - synchronized (statusSync) { - seedlinkNetwork.setStatus(100, "Done"); - } - - break; - } catch(TimeoutException e){ - synchronized (statusSync) { - seedlinkNetwork.setStatus(0, "Timed out!"); - } - break; - } catch (Exception e) { - Logger.error(e); - synchronized (statusSync) { - seedlinkNetwork.setStatus(0, "Error!"); - } - - } finally { - fireUpdateEvent(); - } - } - } - ); - this.updating = false; - fireStatusChangeEvent(); - if (onFinish != null) { - onFinish.run(); - } - }).start(); - } - - @SuppressWarnings("BooleanMethodIsAlwaysInverted") - public boolean isUpdating() { - return updating; - } - - public void restore() { - getStationDatabase().getDatabaseWriteLock().lock(); - try { - removeAllSeedlinks(getStationDatabase().getSeedlinkNetworks()); - removeAllStationSources(getStationDatabase().getStationSources()); - getStationDatabase().addDefaults(); - fireUpdateEvent(); - } finally { - getStationDatabase().getDatabaseWriteLock().unlock(); - } - } - - public void removeAllSeedlinks(List toBeRemoved) { - for (Network network : getStationDatabase().getNetworks()) { - for (Station station : network.getStations()) { - for (Channel channel : station.getChannels()) { - toBeRemoved.forEach(channel.getSeedlinkNetworks()::remove); - } - if(station.getSelectedChannel() != null && !station.getSelectedChannel().isAvailable()){ - station.selectBestAvailableChannel(); - } - } - } - - getStationDatabase().getSeedlinkNetworks().removeAll(toBeRemoved); - fireUpdateEvent(); - } - - public void removeAllStationSources(List toBeRemoved) { - for (Iterator networkIterator = getStationDatabase().getNetworks().iterator(); networkIterator.hasNext(); ) { - Network network = networkIterator.next(); - for (Iterator stationIterator = network.getStations().iterator(); stationIterator.hasNext(); ) { - Station station = stationIterator.next(); - for (Iterator channelIterator = station.getChannels().iterator(); channelIterator.hasNext(); ) { - Channel channel = channelIterator.next(); - toBeRemoved.forEach(channel.getStationSources()::remove); - if (channel.getStationSources().isEmpty()) { - channelIterator.remove(); - } - } - if (station.getChannels().isEmpty()) { - stationIterator.remove(); - } else if (station.getSelectedChannel() != null) { - if (!station.getChannels().contains(station.getSelectedChannel())) { - station.selectBestAvailableChannel(); - } - } - } - if (network.getStations().isEmpty()) { - networkIterator.remove(); - } - } - - getStationDatabase().getStationSources().removeAll(toBeRemoved); - - fireUpdateEvent(); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/database/StationSource.java b/GlobalQuakeCore/src/main/java/globalquake/core/database/StationSource.java deleted file mode 100644 index 53f1326..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/database/StationSource.java +++ /dev/null @@ -1,75 +0,0 @@ -package globalquake.core.database; - -import javax.swing.*; -import java.io.Serial; -import java.io.Serializable; -import java.time.LocalDateTime; -import java.util.Objects; - -public final class StationSource implements Serializable { - @Serial - private static final long serialVersionUID = -4919376873277933315L; - private static final long UPDATE_INTERVAL_DAYS = 14; - private final String name; - private final String url; - private LocalDateTime lastUpdate = null; - - private transient JProgressBar status; - - public StationSource(String name, String url) { - this.name = name; - this.url = url; - } - - public String getName() { - return name; - } - - public String getUrl() { - return url; - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; - StationSource that = (StationSource) o; - return Objects.equals(name, that.name) && Objects.equals(url, that.url); - } - - @Override - public int hashCode() { - return Objects.hash(name, url); - } - - @Override - public String toString() { - return "StationSource[" + - "name=" + name + ", " + - "url=" + url + ']'; - } - - public LocalDateTime getLastUpdate() { - return lastUpdate; - } - - public void setLastUpdate(LocalDateTime lastUpdate) { - this.lastUpdate = lastUpdate; - } - - public JProgressBar getStatus() { - if(status == null){ - status = new JProgressBar(JProgressBar.HORIZONTAL, 0, 100); - status.setIndeterminate(false); - status.setString(isOutdated() ? "Needs Update" : "Ready"); - status.setValue(isOutdated() ? 0 : 100); - status.setStringPainted(true); - } - return status; - } - - public boolean isOutdated() { - return lastUpdate == null || lastUpdate.isAfter(LocalDateTime.now().plusDays(UPDATE_INTERVAL_DAYS)); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/ArchivedEvent.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/ArchivedEvent.java deleted file mode 100644 index 156acd6..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/ArchivedEvent.java +++ /dev/null @@ -1,13 +0,0 @@ -package globalquake.core.earthquake; - -import java.io.Serial; -import java.io.Serializable; - -public record ArchivedEvent(double lat, double lon, double maxRatio, long pWave, - boolean abandoned) implements Serializable { - - @Serial - private static final long serialVersionUID = 7013566809976851817L; - - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/ArchivedQuake.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/ArchivedQuake.java deleted file mode 100644 index b08d02e..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/ArchivedQuake.java +++ /dev/null @@ -1,146 +0,0 @@ -package globalquake.core.earthquake; - -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.earthquake.data.Hypocenter; -import globalquake.core.analysis.Event; -import globalquake.core.regions.RegionUpdater; -import globalquake.core.regions.Regional; - -import java.io.IOException; -import java.io.ObjectInputStream; -import java.io.Serial; -import java.io.Serializable; -import java.util.ArrayList; - -public class ArchivedQuake implements Serializable, Comparable, Regional { - - @Serial - private static final long serialVersionUID = 6690311245585670539L; - - private final double lat; - private final double lon; - private final double depth; - private final long origin; - private final double mag; - private double maxRatio; - private String region; - - private final ArrayList archivedEvents; - - private int abandonedCount; - private boolean wrong; - - private transient RegionUpdater regionUpdater; - - @Serial - private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { - in.defaultReadObject(); - - regionUpdater = new RegionUpdater(this); - } - - public ArchivedQuake(Earthquake earthquake) { - this(earthquake.getLat(), earthquake.getLon(), earthquake.getDepth(), earthquake.getMag(), - earthquake.getOrigin()); - copyEvents(earthquake); - } - - public void updateRegion(){ - regionUpdater.updateRegion(); - } - - private void copyEvents(Earthquake earthquake) { - if(earthquake.getCluster() == null){ - return; - } - Hypocenter previousHypocenter = earthquake.getCluster().getPreviousHypocenter(); - if (earthquake.getCluster().getAssignedEvents() == null || previousHypocenter == null) { - return; - } - - this.maxRatio = 1; - this.abandonedCount = previousHypocenter.getWrongEventCount(); - for (Event e : earthquake.getCluster().getAssignedEvents().values()) { - if(e.isValid()) { - archivedEvents.add( - new ArchivedEvent(e.getLatFromStation(), e.getLonFromStation(), e.maxRatio, e.getpWave(), false)); - if (e.maxRatio > this.maxRatio) { - this.maxRatio = e.getMaxRatio(); - } - } - } - } - - public ArchivedQuake(double lat, double lon, double depth, double mag, long origin) { - this.lat = lat; - this.lon = lon; - this.depth = depth; - this.mag = mag; - this.origin = origin; - this.archivedEvents = new ArrayList<>(); - regionUpdater = new RegionUpdater(this); - } - - public double getDepth() { - return depth; - } - - public double getLat() { - return lat; - } - - public double getLon() { - return lon; - } - - public double getMag() { - return mag; - } - - public long getOrigin() { - return origin; - } - - @SuppressWarnings("unused") - public int getAssignedStations() { - return archivedEvents == null ? 0 : archivedEvents.size(); - } - - @SuppressWarnings("unused") - public ArrayList getArchivedEvents() { - return archivedEvents; - } - - @SuppressWarnings("unused") - public double getMaxRatio() { - return maxRatio; - } - - @Override - public String getRegion() { - return region; - } - - @Override - public void setRegion(String newRegion) { - this.region = newRegion; - } - - public boolean isWrong() { - return wrong; - } - - public void setWrong(boolean wrong) { - this.wrong = wrong; - } - - @SuppressWarnings("unused") - public int getAbandonedCount() { - return abandonedCount; - } - - @Override - public int compareTo(ArchivedQuake archivedQuake) { - return Long.compare(archivedQuake.getOrigin(), this.getOrigin()); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/ClusterAnalysis.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/ClusterAnalysis.java deleted file mode 100644 index ba4b3bf..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/ClusterAnalysis.java +++ /dev/null @@ -1,517 +0,0 @@ -package globalquake.core.earthquake; - -import globalquake.core.GlobalQuake; -import globalquake.core.Settings; -import globalquake.core.events.specific.ClusterCreateEvent; -import globalquake.core.geo.taup.TauPTravelTimeCalculator; -import globalquake.core.intensity.IntensityTable; -import globalquake.core.station.AbstractStation; -import globalquake.core.earthquake.data.*; -import globalquake.core.analysis.Event; -import globalquake.core.station.NearbyStationDistanceInfo; -import globalquake.utils.GeoUtils; -import org.tinylog.Logger; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; -import java.util.Map.Entry; -import java.util.concurrent.atomic.AtomicInteger; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReadWriteLock; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -public class ClusterAnalysis { - - private static final int MIN_CLUSTER_SIZE = 4; - private final ReadWriteLock clustersLock = new ReentrantReadWriteLock(); - - private final Lock clustersReadLock = clustersLock.readLock(); - private final Lock clustersWriteLock = clustersLock.writeLock(); - - private final List clusters; - private final List earthquakes; - private final List stations; - private final AtomicInteger nextClusterId = new AtomicInteger(0); - - private static final double MERGE_THRESHOLD = 0.45; - - public ClusterAnalysis(List earthquakes, List stations) { - this.earthquakes = earthquakes; - this.stations = stations; - clusters = new ArrayList<>(); - } - - public ClusterAnalysis() { - this(GlobalQuake.instance.getEarthquakeAnalysis().getEarthquakes(), GlobalQuake.instance.getStationManager().getStations()); - } - - public Lock getClustersReadLock() { - return clustersReadLock; - } - - public void run() { - clustersWriteLock.lock(); - try { - clearSWaves(); - //assignEventsToExistingEarthquakeClusters(); VERY CONTROVERSIAL - expandExistingClusters(); - createNewClusters(); - stealEvents(); - mergeClusters(); - updateClusters(); - } finally { - clustersWriteLock.unlock(); - } - } - - record EventIntensityInfo(Cluster cluster, AbstractStation station, double expectedIntensity){} - - private void stealEvents() { - java.util.Map map = new HashMap<>(); - for(Cluster cluster : clusters) { - if (cluster.getEarthquake() == null) { - continue; - } - - for (AbstractStation station : stations) { - for (Event event : station.getAnalysis().getDetectedEvents()) { - if (event.isValid() && event.isSWave() && !couldBeArrival(event, cluster.getEarthquake(), true, false, true)) { - double distGC = GeoUtils.greatCircleDistance(event.getLatFromStation(), event.getLonFromStation(), cluster.getEarthquake().getLat(), cluster.getEarthquake().getLon()); - double expectedIntensity = IntensityTable.getMaxIntensity(cluster.getEarthquake().getMag(), GeoUtils.gcdToGeo(distGC)); - EventIntensityInfo eventIntensityInfo = new EventIntensityInfo(cluster, station, expectedIntensity); - EventIntensityInfo old = map.putIfAbsent(event, eventIntensityInfo); - if(old != null && eventIntensityInfo.expectedIntensity > old.expectedIntensity){ - map.put(event, eventIntensityInfo); - } - } - } - } - } - - // reassign - for(var entry : map.entrySet()){ - Event event = entry.getKey(); - AbstractStation station = entry.getValue().station(); - Cluster cluster = entry.getValue().cluster(); - - if(!cluster.getAssignedEvents().containsKey(station)){ - if(event.assignedCluster != null){ - event.assignedCluster.getAssignedEvents().remove(station); - } - - event.assignedCluster = cluster; - cluster.getAssignedEvents().put(station, event); - } - } - } - - private void clearSWaves() { - for(Cluster cluster : clusters) { - if(cluster.getEarthquake() == null){ - continue; - } - - for (AbstractStation station : stations) { - for (Event event : station.getAnalysis().getDetectedEvents()) { - if (event.isValid() && event.isSWave() && !couldBeSArrival(event, cluster.getEarthquake())) { - event.setAsSWave(false); - } - } - } - } - } - - private void mergeClusters() { - for (Earthquake earthquake : earthquakes) { - List toMerge = null; - for (Cluster cluster : clusters) { - if (earthquake.getCluster() == cluster) { - continue; - } - - if (canMerge(earthquake, cluster)) { - if (toMerge == null) { - toMerge = new ArrayList<>(); - } - toMerge.add(cluster); - } - } - - if (toMerge != null) { - merge(earthquake, toMerge); - } - } - } - - private void merge(Earthquake earthquake, List toMerge) { - Cluster target = earthquake.getCluster(); - for (Cluster cluster : toMerge) { - for (Entry entry : cluster.getAssignedEvents().entrySet()) { - if (target.getAssignedEvents().putIfAbsent(entry.getKey(), entry.getValue()) == null) { - entry.getValue().assignedCluster = target; - } - } - - if (cluster.getEarthquake() != null) { - earthquakes.remove(cluster.getEarthquake()); - } - } - - clusters.removeAll(toMerge); - } - - private boolean canMerge(Earthquake earthquake, Cluster cluster) { - if(cluster.getEarthquake() != null && cluster.getPreviousHypocenter() != null){ - int thatCorrect = cluster.getPreviousHypocenter().correctEvents; - double dist = GeoUtils.greatCircleDistance(earthquake.getLat(), earthquake.getLon(), cluster.getEarthquake().getLat(), cluster.getEarthquake().getLon()); - double maxDist = 6000 / (1 + thatCorrect * 0.2); - if(dist > maxDist){ - return false; - } - } - int correct = 0; - for (Event event : cluster.getAssignedEvents().values()) { - if (couldBeArrival(event, earthquake, true, true, false)) { - correct++; - } - } - - double pct = correct / (double) cluster.getAssignedEvents().size(); - - return pct > MERGE_THRESHOLD; - } - - @SuppressWarnings("unused") - private void assignEventsToExistingEarthquakeClusters() { - for (AbstractStation station : stations) { - for (Event event : station.getAnalysis().getDetectedEvents()) { - if (event.isValid() && event.getpWave() > 0 && event.assignedCluster == null) { - HashMap map = new HashMap<>(); - - for (Earthquake earthquake : earthquakes) { - if (couldBeArrival(event, earthquake, true, true, false)) { - map.putIfAbsent(earthquake, event); - } - } - - for (Entry entry : map.entrySet()) { - Cluster cluster = entry.getKey().getCluster(); - Event event2 = entry.getValue(); - if (!cluster.containsStation(event2.getAnalysis().getStation())) { - if (cluster.getAssignedEvents().putIfAbsent(station, event2) == null) { - event2.assignedCluster = cluster; - } - } - } - } - } - } - - } - - @SuppressWarnings("RedundantIfStatement") - private boolean couldBeSArrival(Event event, Earthquake earthquake){ - if (!event.isValid() || earthquake == null) { - return false; - } - long actualTravel = event.getpWave() - earthquake.getOrigin(); - - double distGC = GeoUtils.greatCircleDistance(earthquake.getLat(), earthquake.getLon(), - event.getLatFromStation(), event.getLonFromStation()); - double angle = TauPTravelTimeCalculator.toAngle(distGC); - double expectedTravelSRaw = TauPTravelTimeCalculator.getSWaveTravelTime(earthquake.getDepth(), - angle); - - - double expectedIntensity = IntensityTable.getMaxIntensity(earthquake.getMag(), GeoUtils.gcdToGeo(distGC)); - if (expectedIntensity < 3.0) { - return false; - } - - if (expectedTravelSRaw != TauPTravelTimeCalculator.NO_ARRIVAL) { - // 985 because GQ has high tendency to detect S waves earlier - long expectedTravel = (long) ((expectedTravelSRaw + EarthquakeAnalysis.getElevationCorrection(event.getElevationFromStation()) * 1.5) * 985); - if (Math.abs(expectedTravel - actualTravel) < 1000 + expectedTravel * 0.01) { - return true; - } - } - - return false; - } - - public static boolean couldBeArrival(PickedEvent pickedEvent, PreliminaryHypocenter bestHypocenter, - boolean considerIntensity, boolean increasingPWindow, boolean pWaveOnly) { - if (pickedEvent == null || bestHypocenter == null) { - return false; - } - - if(considerIntensity){ - throw new IllegalArgumentException("Preliminary Hypocenter doesn't have magnitude and cannot be assessed using intensity."); - } - - return couldBeArrival(pickedEvent.lat(), pickedEvent.lon(), pickedEvent.elevation(), pickedEvent.pWave(), - bestHypocenter.lat, bestHypocenter.lon, bestHypocenter.depth, bestHypocenter.origin, 0, - false, increasingPWindow, pWaveOnly); - } - - public static boolean couldBeArrival(Event event, Earthquake earthquake, - boolean considerIntensity, boolean increasingPWindow, boolean pWaveOnly) { - if (event == null || !event.isValid() || event.isSWave() || earthquake == null) { - return false; - } - - return couldBeArrival(event.getLatFromStation(), event.getLonFromStation(), event.getElevationFromStation(), event.getpWave(), - earthquake.getLat(), earthquake.getLon(), earthquake.getDepth(), earthquake.getOrigin(), earthquake.getMag(), - considerIntensity, increasingPWindow, pWaveOnly); - } - - public static boolean couldBeArrival(PickedEvent event, Hypocenter earthquake, - boolean considerIntensity, boolean increasingPWindow, boolean pWaveOnly) { - if (event == null || earthquake == null) { - return false; - } - - return couldBeArrival(event.lat(), event.lon(), event.elevation(), event.pWave(), - earthquake.lat, earthquake.lon, earthquake.depth, earthquake.origin, earthquake.magnitude, - considerIntensity, increasingPWindow, pWaveOnly); - } - - @SuppressWarnings("RedundantIfStatement") - public static boolean couldBeArrival(double eventLat, double eventLon, double eventAlt, long pWave, - double quakeLat, double quakeLon, double quakeDepth, long quakeOrigin, double quakeMag, - boolean considerIntensity, boolean increasingPWindow, boolean pWaveOnly){ - long actualTravel = pWave - quakeOrigin; - - double distGC = GeoUtils.greatCircleDistance(quakeLat, quakeLon, - eventLat, eventLon); - double angle = TauPTravelTimeCalculator.toAngle(distGC); - double expectedTravelPRaw = TauPTravelTimeCalculator.getPWaveTravelTime(quakeDepth, - angle); - - if(considerIntensity) { - double expectedIntensity = IntensityTable.getMaxIntensity(quakeMag, GeoUtils.gcdToGeo(distGC)); - if (expectedIntensity < 3.0) { - return false; - } - } - - if (expectedTravelPRaw != TauPTravelTimeCalculator.NO_ARRIVAL) { - long expectedTravel = (long) ((expectedTravelPRaw + EarthquakeAnalysis.getElevationCorrection(eventAlt)) * 1000); - if (Math.abs(expectedTravel - actualTravel) < (increasingPWindow ? Math.max(5000, 1000 + expectedTravel * 0.01) : Settings.pWaveInaccuracyThreshold)) { - return true; - } - } - - if(pWaveOnly){ - return false; - } - - double expectedTravelPKPRaw = TauPTravelTimeCalculator.getPKPWaveTravelTime(quakeDepth, - angle); - - if (expectedTravelPKPRaw != TauPTravelTimeCalculator.NO_ARRIVAL) { - long expectedTravel = (long) ((expectedTravelPKPRaw + EarthquakeAnalysis.getElevationCorrection(eventAlt)) * 1000); - if (Math.abs(expectedTravel - actualTravel) < (Math.max(6000, expectedTravel * 0.005))) { - return true; - } - } - - double expectedTravelPKIKPRaw = TauPTravelTimeCalculator.getPKIKPWaveTravelTime(quakeDepth, - angle); - - if (expectedTravelPKIKPRaw != TauPTravelTimeCalculator.NO_ARRIVAL && angle > 100) { - long expectedTravel = (long) ((expectedTravelPKIKPRaw + EarthquakeAnalysis.getElevationCorrection(eventAlt)) * 1000); - if (Math.abs(expectedTravel - actualTravel) < Math.max(6000, expectedTravel * 0.005)) { - return true; - } - } - - return false; - } - - private void expandExistingClusters() { - for (Cluster c : clusters) { - expandCluster(c); - } - } - - private void expandCluster(Cluster cluster) { - if (cluster.getEarthquake() != null && cluster.getPreviousHypocenter() != null) { - if(cluster.getPreviousHypocenter().correctEvents > 7) { - expandPWaves(cluster); - } - - if(cluster.getPreviousHypocenter().correctEvents > 6) { - markPossibleSWaves(cluster); - } - } - - ArrayList list = new ArrayList<>(cluster.getAssignedEvents().values()); - while (!list.isEmpty()) { - ArrayList newEvents = new ArrayList<>(); - mainLoop: - for (Event e : list) { - for (NearbyStationDistanceInfo info : e.getAnalysis().getStation().getNearbyStations()) { - if (!cluster.containsStation(info.station()) && !_contains(newEvents, info.station())) { - double dist = info.dist(); - for (Event ev : info.station().getAnalysis().getDetectedEvents()) { - if (potentialArrival(ev, e, dist)) { - newEvents.add(ev); - continue mainLoop; - } - } - } - } - } - - for (Event event : newEvents) { - if (cluster.getAssignedEvents().putIfAbsent(event.getAnalysis().getStation(), event) == null) { - event.assignedCluster = cluster; - } - } - - list.clear(); - list.addAll(newEvents); - } - } - - private void markPossibleSWaves(Cluster cluster) { - for (AbstractStation station : stations) { - for (Event event : station.getAnalysis().getDetectedEvents()) { - if (event.isValid() && couldBeSArrival(event, cluster.getEarthquake())) { - event.setAsSWave(true); - } - } - } - } - - private void expandPWaves(Cluster cluster) { - mainLoop: - for (AbstractStation station : stations) { - for (Event event : station.getAnalysis().getDetectedEvents()) { - if (event.isValid() && !cluster.containsStation(station) && couldBeArrival(event, cluster.getEarthquake(), true, true, false)) { - if (cluster.getAssignedEvents().putIfAbsent(station, event) == null) { - event.assignedCluster = cluster; - } - continue mainLoop; - } - } - } - } - - @SuppressWarnings("RedundantIfStatement") - private boolean potentialArrival(Event ev, Event e, double dist) { - if (e.isValid() && ev.isValid() && ev.getpWave() > 0 && ev.assignedCluster == null) { - long earliestPossibleTimeOfThatEvent = e.getpWave() - (long) ((dist * 1000.0) / 5.0) - - 2500; - long latestPossibleTimeOfThatEvent = e.getpWave() + (long) ((dist * 1000.0) / 5.0) - + 2500; - if (ev.getpWave() >= earliestPossibleTimeOfThatEvent - && ev.getpWave() <= latestPossibleTimeOfThatEvent) { - return true; - } - } - - return false; - } - - private boolean _contains(ArrayList newEvents, AbstractStation station) { - for (Event e : newEvents) { - if (e.getAnalysis().getStation().getId() == station.getId()) { - return true; - } - } - return false; - } - - private void createNewClusters() { - for (AbstractStation station : stations) { - for (Event event : station.getAnalysis().getDetectedEvents()) { - if (event.isValid() && event.getpWave() > 0 && event.assignedCluster == null) { - // so we have eligible event - ArrayList validEvents = new ArrayList<>(); - closestLoop: - for (NearbyStationDistanceInfo info : station.getNearbyStations()) { - AbstractStation close = info.station(); - double dist = info.dist(); - for (Event e : close.getAnalysis().getDetectedEvents()) { - if (e.isValid() && e.getpWave() > 0 && e.assignedCluster == null) { - long earliestPossibleTimeOfThatEvent = event.getpWave() - - (long) ((dist * 1000.0) / 5.0) - 2500; - long latestPossibleTimeOfThatEvent = event.getpWave() - + (long) ((dist * 1000.0) / 5.0) + 2500; - if (e.getpWave() >= earliestPossibleTimeOfThatEvent - && e.getpWave() <= latestPossibleTimeOfThatEvent) { - validEvents.add(e); - continue closestLoop; - } - } - } - } - // so no we have a list of all nearby events that could be earthquake - if (validEvents.size() >= MIN_CLUSTER_SIZE) { - validEvents.add(event); - expandCluster(createCluster(validEvents)); - } - } - } - } - - } - - private void updateClusters() { - Iterator it = clusters.iterator(); - List toBeRemoved = new ArrayList<>(); - while (it.hasNext()) { - Cluster cluster = it.next(); - int numberOfActiveEvents = 0; - int minimum = (int) Math.max(2, cluster.getAssignedEvents().size() * 0.12); - for (Iterator iterator = cluster.getAssignedEvents().values().iterator(); iterator.hasNext(); ) { - Event event = iterator.next(); - if (!event.isValid()) { - event.assignedCluster = null; - iterator.remove(); - } else if (!event.hasEnded()) { - numberOfActiveEvents++; - } - } - if (cluster.getAssignedEvents().size() < MIN_CLUSTER_SIZE || (numberOfActiveEvents < minimum && System.currentTimeMillis() - cluster.getLastUpdate() > 2 * 60 * 1000)) { - Logger.debug("Cluster #" + cluster.getId() + " died"); - toBeRemoved.add(cluster); - } else { - cluster.tick(); - } - } - - clusters.removeAll(toBeRemoved); - } - - private Cluster createCluster(ArrayList validEvents) { - Cluster cluster = new Cluster(nextClusterId.getAndIncrement()); - for (Event ev : validEvents) { - if (cluster.getAssignedEvents().putIfAbsent(ev.getAnalysis().getStation(), ev) == null) { - ev.assignedCluster = cluster; - cluster.addEvent(); - } - } - - cluster.calculateRoot(); - - Logger.debug("New Cluster #" + cluster.getId() + " Has been created. It contains " - + cluster.getAssignedEvents().size() + " events"); - clusters.add(cluster); - - if(GlobalQuake.instance != null){ - GlobalQuake.instance.getEventHandler().fireEvent(new ClusterCreateEvent(cluster)); - } - - return cluster; - } - - public List getClusters() { - return clusters; - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/EarthquakeAnalysis.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/EarthquakeAnalysis.java deleted file mode 100644 index 536ad18..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/EarthquakeAnalysis.java +++ /dev/null @@ -1,960 +0,0 @@ -package globalquake.core.earthquake; - -import globalquake.core.GlobalQuake; -import globalquake.core.Settings; -import globalquake.core.earthquake.interval.DepthConfidenceInterval; -import globalquake.core.earthquake.interval.PolygonConfidenceInterval; -import globalquake.core.events.specific.QuakeCreateEvent; -import globalquake.core.events.specific.QuakeRemoveEvent; -import globalquake.core.events.specific.QuakeUpdateEvent; -import globalquake.core.geo.taup.TauPTravelTimeCalculator; -import globalquake.core.intensity.IntensityTable; -import globalquake.core.station.AbstractStation; -import globalquake.core.station.StationState; -import globalquake.core.earthquake.data.*; -import globalquake.core.analysis.BetterAnalysis; -import globalquake.core.analysis.Event; -import globalquake.utils.GeoUtils; -import globalquake.utils.Point2DGQ; -import globalquake.utils.monitorable.MonitorableCopyOnWriteArrayList; -import org.tinylog.Logger; - -import java.util.*; -import java.util.stream.Collectors; -import java.util.stream.IntStream; - -public class EarthquakeAnalysis { - - public static final double MIN_RATIO = 16.0; - - public static final int QUADRANTS = 16; - - public static final boolean USE_MEDIAN_FOR_ORIGIN = true; - private static final boolean REMOVE_WEAKEST = false; - private static final double OBVIOUS_CORRECT_THRESHOLD = 0.25; - private static final double OBVIOUS_CORRECT_INTENSITY_THRESHOLD = 64.0; - private static final boolean CHECK_QUADRANTS = false; - - private final List earthquakes; - - private ClusterAnalysis clusterAnalysis; - - public boolean testing = false; - - public EarthquakeAnalysis() { - earthquakes = new MonitorableCopyOnWriteArrayList<>(); - } - - public EarthquakeAnalysis(ClusterAnalysis clusterAnalysis, List earthquakes) { - this.clusterAnalysis = clusterAnalysis; - this.earthquakes = earthquakes; - } - - public List getEarthquakes() { - return earthquakes; - } - - public void run() { - if (clusterAnalysis == null) { - if (GlobalQuake.instance == null) { - return; - } else { - clusterAnalysis = GlobalQuake.instance.getClusterAnalysis(); - } - } - clusterAnalysis.getClustersReadLock().lock(); - try { - clusterAnalysis.getClusters().parallelStream().forEach(cluster -> processCluster(cluster, createListOfPickedEvents(cluster))); - } finally { - clusterAnalysis.getClustersReadLock().unlock(); - } - } - - public void processCluster(Cluster cluster, List pickedEvents) { - if (pickedEvents.isEmpty()) { - return; - } - - // Calculation starts only if number of events increases by some % - if (cluster.getEarthquake() != null) { - if (cluster.getPreviousHypocenter() != null && cluster.lastEpicenterUpdate != cluster.updateCount) { - calculateMagnitude(cluster, cluster.getPreviousHypocenter()); - } - int count = pickedEvents.size(); - if (count >= 24 && Settings.reduceRevisions) { - if (count < cluster.getEarthquake().nextReportEventCount) { - return; - } - cluster.getEarthquake().nextReportEventCount = (int) (count * 1.2); - Logger.debug("Next report will be at " + cluster.getEarthquake().nextReportEventCount + " assigns"); - } - } - - if (cluster.lastEpicenterUpdate == cluster.updateCount) { - return; - } - - cluster.lastEpicenterUpdate = cluster.updateCount; - - - pickedEvents.sort(Comparator.comparing(PickedEvent::maxRatio)); - - // if there is no event stronger than MIN_RATIO, abort - if (pickedEvents.get(pickedEvents.size() - 1).maxRatio() < MIN_RATIO) { - return; - } - - if (REMOVE_WEAKEST) { - double ratioPercentileThreshold = pickedEvents.get((int) ((pickedEvents.size() - 1) * 0.35)).maxRatio(); - - // remove events that are weaker than the threshold and keep at least 8 events - while (pickedEvents.get(0).maxRatio() < ratioPercentileThreshold && pickedEvents.size() > 8) { - pickedEvents.remove(0); - } - } - - HypocenterFinderSettings finderSettings = createSettings(); - - // if in the end there is less than N events, abort - if (pickedEvents.size() < finderSettings.minStations()) { - return; - } - - ArrayList selectedEvents = new ArrayList<>(); - selectedEvents.add(pickedEvents.get(0)); - - // Selects picked events in a way that they are spaced away as much as possible - findGoodEvents(pickedEvents, selectedEvents); - - findHypocenter(selectedEvents, cluster, finderSettings); - } - - public static HypocenterFinderSettings createSettings() { - return new HypocenterFinderSettings(Settings.pWaveInaccuracyThreshold, Settings.hypocenterCorrectThreshold, - Settings.hypocenterDetectionResolution, Settings.minimumStationsForEEW); - } - - private List createListOfPickedEvents(Cluster cluster) { - List result = new ArrayList<>(); - for (Event event : cluster.getAssignedEvents().values()) { - if (event.isValid() && !event.isSWave()) { - result.add(new PickedEvent(event.getpWave(), event.getLatFromStation(), event.getLonFromStation(), event.getElevationFromStation(), event.maxRatio)); - } - } - - return result; - } - - private void findGoodEvents(List events, List selectedEvents) { - while (selectedEvents.size() < Settings.maxEvents) { - double maxDist = 0; - PickedEvent furthest = null; - for (PickedEvent event : events) { - if (!selectedEvents.contains(event)) { - double closest = Double.MAX_VALUE; - for (PickedEvent event2 : selectedEvents) { - double dist = GeoUtils.greatCircleDistance(event.lat(), event.lon(), - event2.lat(), event2.lon()); - if (dist < closest) { - closest = dist; - } - } - if (closest > maxDist) { - maxDist = closest; - furthest = event; - } - } - } - - if (furthest == null) { - break; - } - - selectedEvents.add(furthest); - - if (selectedEvents.size() == events.size()) { - break; - } - } - } - - private boolean checkDeltaP(Cluster cluster, Hypocenter bestHypocenter, List events) { - events.sort(Comparator.comparing(PickedEvent::pWave)); - - if (cluster.getRootLat() == Cluster.NONE) { - cluster.calculateRoot(); - } - - double distFromRoot = GeoUtils.greatCircleDistance(bestHypocenter.lat, bestHypocenter.lon, cluster.getRootLat(), - cluster.getRootLon()); - - long deltaP = events.get((int) ((events.size() - 1) * 0.75)).pWave() - - events.get((int) ((events.size() - 1) * 0.25)).pWave(); - - long limit = 1600 + (long) Math.sqrt(distFromRoot) * 200; - - Logger.debug("deltaP: %d ms, limit for %.1f km is %d ms".formatted(deltaP, distFromRoot, limit)); - - return deltaP >= limit; - } - - public PreliminaryHypocenter runHypocenterFinder(List selectedEvents, Cluster cluster, HypocenterFinderSettings finderSettings, - boolean far) { - if (selectedEvents.isEmpty()) { - return null; - } - - Logger.debug("==== Searching hypocenter of cluster #" + cluster.getId() + " ===="); - - double maxDepth = TauPTravelTimeCalculator.MAX_DEPTH; - - int iterationsDifference = (int) Math.round((finderSettings.resolution() - 40.0) / 14.0); - double universalMultiplier = getUniversalResolutionMultiplier(finderSettings); - double pointMultiplier = universalMultiplier * universalMultiplier * 0.33; - - Logger.debug("Universal multiplier is " + universalMultiplier); - Logger.debug("Point multiplier is " + pointMultiplier); - Logger.debug("Iterations difference: " + iterationsDifference); - - long timeMillis = System.currentTimeMillis(); - - PreliminaryHypocenter bestHypocenter = null; - Hypocenter previousHypocenter = cluster.getPreviousHypocenter(); - - double _lat = cluster.getAnchorLat(); - double _lon = cluster.getAnchorLon(); - - if (far && (previousHypocenter == null || previousHypocenter.correctEvents < 24 || previousHypocenter.getCorrectness() < 0.8)) { - // phase 1 search far from ANCHOR (it's not very certain) - bestHypocenter = scanArea(selectedEvents, 90.0 / 360.0 * GeoUtils.EARTH_CIRCUMFERENCE, (int) (40000 * pointMultiplier), _lat, _lon, 6 + iterationsDifference, maxDepth, finderSettings); - Logger.debug("FAR: " + (System.currentTimeMillis() - timeMillis)); - Logger.debug(bestHypocenter.correctStations + " / " + bestHypocenter.err); - _lat = bestHypocenter.lat; - _lon = bestHypocenter.lon; - } - - if (previousHypocenter == null || previousHypocenter.correctEvents < 42 || previousHypocenter.getCorrectness() < 0.9) { - // phase 2A search region near BEST or ANCHOR (it's quite certain) - timeMillis = System.currentTimeMillis(); - PreliminaryHypocenter hyp = scanArea(selectedEvents, 2500.0, (int) (20000 * pointMultiplier), _lat, _lon, 7 + iterationsDifference, maxDepth, finderSettings); - bestHypocenter = selectBetterHypocenter(hyp, bestHypocenter); - _lat = bestHypocenter.lat; - _lon = bestHypocenter.lon; - Logger.debug("REGIONAL: " + (System.currentTimeMillis() - timeMillis)); - Logger.debug(bestHypocenter.correctStations + " / " + bestHypocenter.err); - } else { - // phase 2B search region closer BEST or ANCHOR (it assumes it's almost right) - timeMillis = System.currentTimeMillis(); - PreliminaryHypocenter hyp = scanArea(selectedEvents, 1000.0, (int) (10000 * pointMultiplier), _lat, _lon, 7 + iterationsDifference, maxDepth, finderSettings); - bestHypocenter = selectBetterHypocenter(hyp, bestHypocenter); - _lat = bestHypocenter.lat; - _lon = bestHypocenter.lon; - Logger.debug("CLOSER: " + (System.currentTimeMillis() - timeMillis)); - Logger.debug(bestHypocenter.correctStations + " / " + bestHypocenter.err); - } - - // phase 3 find exact area - timeMillis = System.currentTimeMillis(); - PreliminaryHypocenter hyp = scanArea(selectedEvents, 100.0, (int) (4000 * pointMultiplier), _lat, _lon, 8 + iterationsDifference, maxDepth, finderSettings); - bestHypocenter = selectBetterHypocenter(hyp, bestHypocenter); - Logger.debug("EXACT: " + (System.currentTimeMillis() - timeMillis)); - Logger.debug(bestHypocenter.correctStations + " / " + bestHypocenter.err); - - // phase 4 find exact depth - timeMillis = System.currentTimeMillis(); - _lat = bestHypocenter.lat; - _lon = bestHypocenter.lon; - hyp = scanArea(selectedEvents, 10.0, (int) (4000 * pointMultiplier), _lat, _lon, 10 + iterationsDifference, maxDepth, finderSettings); - bestHypocenter = selectBetterHypocenter(hyp, bestHypocenter); - Logger.debug("DEPTH: " + (System.currentTimeMillis() - timeMillis)); - Logger.debug(bestHypocenter.correctStations + " / " + bestHypocenter.err); - - return bestHypocenter; - } - - public void findHypocenter(List selectedEvents, Cluster cluster, HypocenterFinderSettings finderSettings) { - long startTime = System.currentTimeMillis(); - - PreliminaryHypocenter bestHypocenter = runHypocenterFinder(selectedEvents, cluster, finderSettings, true); - - List correctSelectedEvents = selectedEvents.stream().filter(pickedEvent -> ClusterAnalysis.couldBeArrival(pickedEvent, bestHypocenter, false, false, true)).collect(Collectors.toList()); - - PreliminaryHypocenter bestHypocenter2 = runHypocenterFinder(correctSelectedEvents, cluster, finderSettings, false); - - int reduceLimit = 16; - - if (correctSelectedEvents.size() > reduceLimit) { - Map residuals = calculateResiduals(bestHypocenter2, correctSelectedEvents); - int targetSize = reduceLimit + (int) ((residuals.size() - reduceLimit) * 0.65); - - List> list = new ArrayList<>(residuals.entrySet()); - list.sort(Map.Entry.comparingByValue()); - - while (list.size() > targetSize) { - list.remove(list.size() - 1); - } - - Logger.debug("Reduced the number of events from %d to the best %d for better accuracy".formatted(correctSelectedEvents.size(), list.size())); - - correctSelectedEvents = list.stream().map(Map.Entry::getKey).collect(Collectors.toList()); - - bestHypocenter2 = runHypocenterFinder(correctSelectedEvents, cluster, finderSettings, false); - } - - postProcess(selectedEvents, correctSelectedEvents, cluster, bestHypocenter2, finderSettings, startTime); - } - - private Map calculateResiduals(PreliminaryHypocenter hypocenter, List events) { - Map result = new HashMap<>(); - for (PickedEvent event : events) { - long actualTravel = event.pWave() - hypocenter.origin; - - double distGC = GeoUtils.greatCircleDistance(hypocenter.lat, hypocenter.lon, - event.lat(), event.lon()); - double angle = TauPTravelTimeCalculator.toAngle(distGC); - double expectedTravelPRaw = TauPTravelTimeCalculator.getPWaveTravelTime(hypocenter.depth, - angle); - - if (expectedTravelPRaw != TauPTravelTimeCalculator.NO_ARRIVAL) { - long expectedTravel = (long) ((expectedTravelPRaw + EarthquakeAnalysis.getElevationCorrection(event.elevation())) * 1000); - result.put(event, Math.abs(expectedTravel - actualTravel)); - } - } - - return result; - } - - private DepthConfidenceInterval calculateDepthConfidenceInterval(List selectedEvents, PreliminaryHypocenter bestHypocenter, HypocenterFinderSettings finderSettings) { - double upperBound = bestHypocenter.depth; - double lowerBound = bestHypocenter.depth; - - PreliminaryHypocenter hypocenterA = new PreliminaryHypocenter(); - HypocenterFinderThreadData threadData = new HypocenterFinderThreadData(selectedEvents.size()); - List pickedEvents = createListOfExactPickedEvents(selectedEvents); - calculateDistances(pickedEvents, bestHypocenter.lat, bestHypocenter.lon); - - for (double depth = 0; depth < TauPTravelTimeCalculator.MAX_DEPTH; depth += 1.0 / getUniversalResolutionMultiplier(finderSettings)) { - analyseHypocenter(hypocenterA, bestHypocenter.lat, bestHypocenter.lon, depth, pickedEvents, finderSettings, threadData); - if (hypocenterA.err < bestHypocenter.err * CONFIDENCE_LEVEL && depth < bestHypocenter.depth && depth < upperBound) { - upperBound = depth; - } - - if (hypocenterA.err < bestHypocenter.err * CONFIDENCE_LEVEL && depth > bestHypocenter.depth) { - lowerBound = depth; - } - } - - return new DepthConfidenceInterval(upperBound, lowerBound); - } - - private static final int CONFIDENCE_POLYGON_EDGES = 64; - private static final double CONFIDENCE_POLYGON_OFFSET = 0; - private static final double CONFIDENCE_POLYGON_STEP = 10; - private static final double CONFIDENCE_POLYGON_MIN_STEP = 0.25; - private static final double CONFIDENCE_POLYGON_MAX_DIST = 5000; - - private static final double CONFIDENCE_LEVEL = 1.2; - - record PolygonConfidenceResult(double dist, long minOrigin, long maxOrigin) { - } - - private PolygonConfidenceInterval calculatePolygonConfidenceInterval(List selectedEvents, - PreliminaryHypocenter bestHypocenter, HypocenterFinderSettings finderSettings, double confidenceThreshold) { - List integerList = IntStream.range(0, CONFIDENCE_POLYGON_EDGES).boxed().toList(); - List results = (Settings.parallelHypocenterLocations ? integerList.parallelStream() : integerList.stream()).map(ray -> { - double ang = CONFIDENCE_POLYGON_OFFSET + (ray / (double) CONFIDENCE_POLYGON_EDGES) * 360.0; - double dist = CONFIDENCE_POLYGON_STEP; - double step = CONFIDENCE_POLYGON_STEP; - - long minOrigin = Long.MAX_VALUE; - long maxOrigin = Long.MIN_VALUE; - - List pickedEvents = createListOfExactPickedEvents(selectedEvents); - HypocenterFinderThreadData threadData = new HypocenterFinderThreadData(pickedEvents.size()); - while (step > CONFIDENCE_POLYGON_MIN_STEP && dist < CONFIDENCE_POLYGON_MAX_DIST) { - double[] latLon = GeoUtils.moveOnGlobe(bestHypocenter.lat, bestHypocenter.lon, dist, ang); - double lat = latLon[0]; - double lon = latLon[1]; - - // reset - threadData.bestHypocenter.err = Double.MAX_VALUE; - threadData.bestHypocenter.correctStations = 0; - - calculateDistances(pickedEvents, lat, lon); - getBestAtDepth(12, TauPTravelTimeCalculator.MAX_DEPTH, finderSettings, 0, lat, lon, pickedEvents, threadData); - boolean stillValid = threadData.bestHypocenter.err < bestHypocenter.err * confidenceThreshold; - if (stillValid) { - dist += step; - if (threadData.bestHypocenter.origin > maxOrigin) { - maxOrigin = threadData.bestHypocenter.origin; - } - if (threadData.bestHypocenter.origin < minOrigin) { - minOrigin = threadData.bestHypocenter.origin; - } - } else { - step /= 2.0; - dist -= step; - } - } - - return new PolygonConfidenceResult(dist, minOrigin, maxOrigin); - }).toList(); - - List lengths = results.stream().map(polygonConfidenceResult -> polygonConfidenceResult.dist).toList(); - - long minOrigin = results.stream().map(polygonConfidenceResult -> polygonConfidenceResult.minOrigin).min(Long::compareTo).orElse(0L); - long maxOrigin = results.stream().map(polygonConfidenceResult -> polygonConfidenceResult.maxOrigin).max(Long::compareTo).orElse(0L); - - return new PolygonConfidenceInterval(CONFIDENCE_POLYGON_EDGES, CONFIDENCE_POLYGON_OFFSET, lengths, minOrigin, maxOrigin); - } - - private void postProcess(List selectedEvents, List correctSelectedEvents, Cluster cluster, PreliminaryHypocenter bestHypocenterPrelim, HypocenterFinderSettings finderSettings, long startTime) { - Hypocenter bestHypocenter = bestHypocenterPrelim.finish( - calculateDepthConfidenceInterval(correctSelectedEvents, bestHypocenterPrelim, finderSettings), - calculatePolygonConfidenceIntervals(correctSelectedEvents, bestHypocenterPrelim, finderSettings)); - - calculateMagnitude(cluster, bestHypocenter); - - if(bestHypocenter.depth > TauPTravelTimeCalculator.MAX_DEPTH - 5.0){ - Logger.debug("Ignoring too deep quake, it's probably a core wave! %.1fkm".formatted(bestHypocenter.depth)); - return; - } - - // There has to be at least some difference in the picked pWave times - if (!checkDeltaP(cluster, bestHypocenter, correctSelectedEvents)) { - Logger.debug("Not Enough Delta-P"); - return; - } - - if (!checkUncertainty(bestHypocenter, correctSelectedEvents)) { - return; - } - - Hypocenter previousHypocenter = cluster.getPreviousHypocenter(); - - bestHypocenter.selectedEvents = selectedEvents.size(); - bestHypocenter.bestCount = correctSelectedEvents.size(); - - calculateActualCorrectEvents(selectedEvents, bestHypocenter); - calculateObviousArrivals(bestHypocenter); - - bestHypocenter.calculateQuality(); - - Logger.debug(bestHypocenter); - - double obviousCorrectPct = 1.0; - if (bestHypocenter.obviousArrivalsInfo != null && bestHypocenter.obviousArrivalsInfo.total() > 8) { - obviousCorrectPct = (bestHypocenter.obviousArrivalsInfo.total() - bestHypocenter.obviousArrivalsInfo.wrong()) / (double) bestHypocenter.obviousArrivalsInfo.total(); - } - - double pct = 100 * bestHypocenter.getCorrectness(); - boolean valid = pct >= finderSettings.correctnessThreshold() && bestHypocenter.correctEvents >= finderSettings.minStations() && obviousCorrectPct >= OBVIOUS_CORRECT_THRESHOLD; - if (!valid) { - boolean remove = pct < finderSettings.correctnessThreshold() * 0.75 || bestHypocenter.correctEvents < finderSettings.minStations() * 0.75 || obviousCorrectPct < OBVIOUS_CORRECT_THRESHOLD * 0.75; - if (remove && cluster.getEarthquake() != null) { - getEarthquakes().remove(cluster.getEarthquake()); - if(GlobalQuake.instance != null){ - GlobalQuake.instance.getEventHandler().fireEvent(new QuakeRemoveEvent(cluster.getEarthquake())); - } - cluster.setEarthquake(null); - } - Logger.debug("Hypocenter not valid, remove = %s".formatted(remove)); - } else { - HypocenterCondition result; - if ((result = checkConditions(selectedEvents, bestHypocenter, previousHypocenter, cluster, finderSettings)) == HypocenterCondition.OK) { - updateHypocenter(cluster, bestHypocenter); - } else { - Logger.debug("Not updating because: %s".formatted(result)); - } - } - - Logger.info("Hypocenter finding finished in: %d ms".formatted(System.currentTimeMillis() - startTime)); - } - - private boolean checkUncertainty(Hypocenter bestHypocenter, List events) { - bestHypocenter.depthUncertainty = bestHypocenter.depthConfidenceInterval.maxDepth() - bestHypocenter.depthConfidenceInterval.minDepth(); - bestHypocenter.locationUncertainty = bestHypocenter.polygonConfidenceIntervals.get(bestHypocenter.polygonConfidenceIntervals.size() - 1) - .lengths().stream().max(Double::compareTo).orElse(0.0); - - if (bestHypocenter.locationUncertainty > 1000) { - Logger.debug("Location uncertainty of %.1f is too high!".formatted(bestHypocenter.locationUncertainty)); - return false; - } - - if (bestHypocenter.depthUncertainty > 200.0 || bestHypocenter.depthUncertainty > 20.0 && - (bestHypocenter.depthConfidenceInterval.minDepth() <= 10.0 && bestHypocenter.depthConfidenceInterval.maxDepth() >= 10.0)) { - Logger.debug("Depth uncertainty of %.1f is too high, defaulting the depth to 10km!".formatted(bestHypocenter.depthUncertainty)); - fixDepth(bestHypocenter, 10, events); - } - - return true; - } - - @SuppressWarnings("SameParameterValue") - private void fixDepth(Hypocenter bestHypocenter, double depth, List events) { - bestHypocenter.depth = depth; - bestHypocenter.depthFixed = true; - - List origins = new ArrayList<>(); - - for (PickedEvent event : events) { - double distGC = GeoUtils.greatCircleDistance(event.lat(), event.lon(), bestHypocenter.lat, bestHypocenter.lon); - double travelTime = TauPTravelTimeCalculator.getPWaveTravelTime(depth, TauPTravelTimeCalculator.toAngle(distGC)); - if (travelTime == TauPTravelTimeCalculator.NO_ARRIVAL) { - continue; - } - - travelTime += getElevationCorrection(event.elevation()); - - long origin = event.pWave() - ((long) (travelTime * 1000)); - origins.add(origin); - } - - if(origins.isEmpty()){ - return; - } - - origins.sort(Long::compareTo); - bestHypocenter.origin = origins.get((origins.size() - 1) / 2); - - Logger.debug("Origin time recalculated"); - } - - private List calculatePolygonConfidenceIntervals(List selectedEvents, PreliminaryHypocenter bestHypocenterPrelim, HypocenterFinderSettings finderSettings) { - List result = new ArrayList<>(); - - result.add(calculatePolygonConfidenceInterval(selectedEvents, bestHypocenterPrelim, finderSettings, 3.0)); - result.add(calculatePolygonConfidenceInterval(selectedEvents, bestHypocenterPrelim, finderSettings, 2.0)); - result.add(calculatePolygonConfidenceInterval(selectedEvents, bestHypocenterPrelim, finderSettings, 1.5)); - result.add(calculatePolygonConfidenceInterval(selectedEvents, bestHypocenterPrelim, finderSettings, 1.15)); - - return result; - } - - private void calculateActualCorrectEvents(List selectedEvents, Hypocenter bestHypocenter) { - int correct = 0; - for (PickedEvent event : selectedEvents) { - if (ClusterAnalysis.couldBeArrival(event, bestHypocenter, false, false, true)) { - correct++; - } - } - - bestHypocenter.correctEvents = correct; - } - - private void calculateObviousArrivals(Hypocenter bestHypocenter) { - if (GlobalQuake.instance == null) { - bestHypocenter.obviousArrivalsInfo = new ObviousArrivalsInfo(0, 0); - return; - } - - int total = 0; - int wrong = 0; - - for (AbstractStation station : GlobalQuake.instance.getStationManager().getStations()) { - double distGC = GeoUtils.greatCircleDistance(bestHypocenter.lat, bestHypocenter.lon, station.getLatitude(), station.getLongitude()); - double angle = TauPTravelTimeCalculator.toAngle(distGC); - - double rawTravelP = TauPTravelTimeCalculator.getPWaveTravelTime(bestHypocenter.depth, angle); - if (rawTravelP == TauPTravelTimeCalculator.NO_ARRIVAL) { - continue; - } - - double expectedIntensity = IntensityTable.getMaxIntensity(bestHypocenter.magnitude, GeoUtils.gcdToGeo(distGC)); - if (expectedIntensity < OBVIOUS_CORRECT_INTENSITY_THRESHOLD) { - continue; - } - - long expectedPArrival = bestHypocenter.origin + (long) ((rawTravelP + EarthquakeAnalysis.getElevationCorrection(station.getAlt())) * 1000); - - if (station.getStateAt(expectedPArrival) != StationState.ACTIVE) { - continue; - } - - total++; - if (station.getEventAt(expectedPArrival, 10 * 1000) == null) { - wrong++; - } - } - - bestHypocenter.obviousArrivalsInfo = new ObviousArrivalsInfo(total, wrong); - } - - public static final double PHI = 1.61803398875; - - private PreliminaryHypocenter scanArea(List events, double maxDist, int points, double _lat, double _lon, int depthIterations, - double maxDepth, HypocenterFinderSettings finderSettings) { - int CPUS = Runtime.getRuntime().availableProcessors(); - double c = maxDist / Math.sqrt(points); - double one = points / (double) CPUS; - - List integerList = IntStream.range(0, CPUS).boxed().toList(); - return (Settings.parallelHypocenterLocations ? integerList.parallelStream() : integerList.stream()).map( - cpu -> { - List pickedEvents = createListOfExactPickedEvents(events); - HypocenterFinderThreadData threadData = new HypocenterFinderThreadData(pickedEvents.size()); - - int start = (int) (cpu * one); - int end = (int) ((cpu + 1) * one); - - for (int n = start; n < end; n++) { - double ang = 360.0 / (PHI * PHI) * n; - double dist = Math.sqrt(n) * c; - double[] latLon = GeoUtils.moveOnGlobe(_lat, _lon, dist, ang); - - double lat = latLon[0]; - double lon = latLon[1]; - - calculateDistances(pickedEvents, lat, lon); - getBestAtDepth(depthIterations, maxDepth, finderSettings, 0, lat, lon, pickedEvents, threadData); - } - return threadData.bestHypocenter; - } - ).reduce(EarthquakeAnalysis::selectBetterHypocenter).orElse(null); - } - - @SuppressWarnings("unused") - private PreliminaryHypocenter scanAreaOldd(List events, double distanceResolution, double maxDist, - double _lat, double _lon, int depthIterations, double maxDepth, double distHorizontal, HypocenterFinderSettings finderSettings) { - - List distances = new ArrayList<>(); - for (double dist = 0; dist < maxDist; dist += distanceResolution) { - distances.add(dist); - } - - return (Settings.parallelHypocenterLocations ? distances.parallelStream() : distances.stream()).map( - distance -> { - List pickedEvents = createListOfExactPickedEvents(events); - HypocenterFinderThreadData threadData = new HypocenterFinderThreadData(pickedEvents.size()); - getBestAtDist(distance, distHorizontal, _lat, _lon, pickedEvents, depthIterations, maxDepth, finderSettings, threadData); - return threadData.bestHypocenter; - } - ).reduce(EarthquakeAnalysis::selectBetterHypocenter).orElse(null); - } - - private List createListOfExactPickedEvents(List events) { - List result = new ArrayList<>(events.size()); - for (PickedEvent event : events) { - result.add(new ExactPickedEvent(event)); - } - return result; - } - - private static PreliminaryHypocenter selectBetterHypocenter(PreliminaryHypocenter hypocenter1, PreliminaryHypocenter hypocenter2) { - if (hypocenter1 == null) { - return hypocenter2; - } else if (hypocenter2 == null) { - return hypocenter1; - } - - if (hypocenter1.correctStations > (int) (hypocenter2.correctStations * 1.3)) { - return hypocenter1; - } else if (hypocenter2.correctStations > (int) (hypocenter1.correctStations * 1.3)) { - return hypocenter2; - } else { - return (hypocenter1.correctStations / (Math.pow(hypocenter1.err, 2) + 2.0)) > - (hypocenter2.correctStations / (Math.pow(hypocenter2.err, 2) + 2.0)) - ? hypocenter1 : hypocenter2; - } - } - - private void getBestAtDist(double distFromAnchor, double distHorizontal, double _lat, double _lon, - List events, int depthIterations, double depthEnd, - HypocenterFinderSettings finderSettings, HypocenterFinderThreadData threadData) { - double depthStart = 0; - - double angularResolution = (distHorizontal * 360) / (5 * distFromAnchor + 10); - angularResolution /= getUniversalResolutionMultiplier(finderSettings); - - GeoUtils.MoveOnGlobePrecomputed precomputed = new GeoUtils.MoveOnGlobePrecomputed(); - Point2DGQ point2D = new Point2DGQ(); - GeoUtils.precomputeMoveOnGlobe(precomputed, _lat, _lon, distFromAnchor); - - for (double ang = 0; ang < 360; ang += angularResolution) { - GeoUtils.moveOnGlobe(precomputed, point2D, ang); - double lat = point2D.x; - double lon = point2D.y; - - calculateDistances(events, lat, lon); - getBestAtDepth(depthIterations, depthEnd, finderSettings, depthStart, lat, lon, events, threadData); - } - } - - private void getBestAtDepth(int depthIterations, double depthEnd, HypocenterFinderSettings finderSettings, - double depthStart, double lat, double lon, List pickedEvents, - HypocenterFinderThreadData threadData) { - double lowerBound = depthStart; // 0 - double upperBound = depthEnd; // 600 - - double depthA = lowerBound + (upperBound - lowerBound) * (1 / 3.0); - double depthB = lowerBound + (upperBound - lowerBound) * (2 / 3.0); - - analyseHypocenter(threadData.hypocenterA, lat, lon, depthA, pickedEvents, finderSettings, threadData); - analyseHypocenter(threadData.hypocenterB, lat, lon, depthB, pickedEvents, finderSettings, threadData); - - PreliminaryHypocenter upperHypocenter = threadData.hypocenterA; - PreliminaryHypocenter lowerHypocenter = threadData.hypocenterB; - - for (int iteration = 0; iteration < depthIterations; iteration++) { - PreliminaryHypocenter better = selectBetterHypocenter(upperHypocenter, lowerHypocenter); - boolean goUp = better == upperHypocenter; - - PreliminaryHypocenter temp = lowerHypocenter; - lowerHypocenter = upperHypocenter; - upperHypocenter = temp; - - if (goUp) { - upperBound = (upperBound + lowerBound) / 2.0; - depthA = lowerBound + (upperBound - lowerBound) * (1 / 3.0); - - analyseHypocenter(upperHypocenter, lat, lon, depthA, pickedEvents, finderSettings, threadData); - threadData.setBest(selectBetterHypocenter(threadData.bestHypocenter, upperHypocenter)); - } else { - lowerBound = (upperBound + lowerBound) / 2.0; - depthB = lowerBound + (upperBound - lowerBound) * (2 / 3.0); - - analyseHypocenter(lowerHypocenter, lat, lon, depthB, pickedEvents, finderSettings, threadData); - threadData.setBest(selectBetterHypocenter(threadData.bestHypocenter, lowerHypocenter)); - } - } - - // additionally check 0km and 10 km - analyseHypocenter(threadData.hypocenterA, lat, lon, 0, pickedEvents, finderSettings, threadData); - threadData.setBest(selectBetterHypocenter(threadData.bestHypocenter, threadData.hypocenterA)); - analyseHypocenter(threadData.hypocenterA, lat, lon, 10, pickedEvents, finderSettings, threadData); - threadData.setBest(selectBetterHypocenter(threadData.bestHypocenter, threadData.hypocenterA)); - } - - public static void analyseHypocenter(PreliminaryHypocenter hypocenter, double lat, double lon, double depth, List events, HypocenterFinderSettings finderSettings, HypocenterFinderThreadData threadData) { - int c = 0; - - for (ExactPickedEvent event : events) { - double travelTime = TauPTravelTimeCalculator.getPWaveTravelTimeFast(depth, event.angle); - if (travelTime == TauPTravelTimeCalculator.NO_ARRIVAL) { - hypocenter.correctStations = 0; - hypocenter.err = Double.MAX_VALUE; - return; - } - - travelTime += getElevationCorrection(event.elevation()); - - long origin = event.pWave() - ((long) (travelTime * 1000)); - threadData.origins[c] = origin; - c++; - } - - long bestOrigin; - if (USE_MEDIAN_FOR_ORIGIN) { - Arrays.sort(threadData.origins); - bestOrigin = threadData.origins[(threadData.origins.length - 1) / 2]; - } else { - bestOrigin = threadData.origins[0]; - } - - double err = 0; - int acc = 0; - - for (long orign : threadData.origins) { - double _err = Math.abs(orign - bestOrigin); - if (_err < finderSettings.pWaveInaccuracyThreshold()) { - acc++; - } else { - _err = (_err - finderSettings.pWaveInaccuracyThreshold()) * 0.2 + finderSettings.pWaveInaccuracyThreshold(); - } - - _err /= 1024; - - err += _err * _err; - } - - hypocenter.lat = lat; - hypocenter.lon = lon; - hypocenter.depth = depth; - hypocenter.origin = bestOrigin; - hypocenter.err = err; - hypocenter.correctStations = acc; - } - - public static double getElevationCorrection(double elevation) { - return elevation / 6000.0; - } - - private void calculateDistances(List pickedEvents, double lat, double lon) { - for (ExactPickedEvent event : pickedEvents) { - event.angle = TauPTravelTimeCalculator.toAngle(GeoUtils.greatCircleDistance(event.lat(), - event.lon(), lat, lon)); - } - } - - public static final class ExactPickedEvent extends PickedEvent { - public double angle; - - public ExactPickedEvent(PickedEvent pickedEvent) { - super(pickedEvent.pWave(), pickedEvent.lat(), pickedEvent.lon(), pickedEvent.elevation(), pickedEvent.maxRatio()); - } - - } - - private double getUniversalResolutionMultiplier(HypocenterFinderSettings finderSettings) { - // 30% when 0.0 (min) selected - // 100% when 40.0 (default) selected - // 550% when 100 (max) selected - double x = finderSettings.resolution(); - return ((x * x + 600) / 2200.0); - } - - private HypocenterCondition checkConditions(List events, Hypocenter bestHypocenter, Hypocenter previousHypocenter, Cluster cluster, HypocenterFinderSettings finderSettings) { - if (bestHypocenter == null) { - return HypocenterCondition.NULL; - } - double distFromRoot = GeoUtils.greatCircleDistance(bestHypocenter.lat, bestHypocenter.lon, cluster.getRootLat(), - cluster.getRootLon()); - if (distFromRoot > 2000 && bestHypocenter.correctEvents < 12) { - return HypocenterCondition.DISTANT_EVENT_NOT_ENOUGH_STATIONS; - } - - if (bestHypocenter.correctEvents < finderSettings.minStations()) { - return HypocenterCondition.NOT_ENOUGH_CORRECT_STATIONS; - } - - if (CHECK_QUADRANTS) { - if (checkQuadrants(bestHypocenter, events) < (distFromRoot > 4000 ? 1 : distFromRoot > 1000 ? 2 : 3)) { - return HypocenterCondition.TOO_SHALLOW_ANGLE; - } - } - - PreliminaryHypocenter bestPrelim = toPreliminary(bestHypocenter); - - if (selectBetterHypocenter(toPreliminary(previousHypocenter), bestPrelim) != bestPrelim) { - return HypocenterCondition.PREVIOUS_WAS_BETTER; - } - - return HypocenterCondition.OK; - } - - private PreliminaryHypocenter toPreliminary(Hypocenter previousHypocenter) { - if (previousHypocenter == null) { - return null; - } - return new PreliminaryHypocenter(previousHypocenter.lat, previousHypocenter.lon, previousHypocenter.depth, previousHypocenter.origin, previousHypocenter.totalErr, previousHypocenter.correctEvents); - } - - private void updateHypocenter(Cluster cluster, Hypocenter bestHypocenter) { - cluster.updateAnchor(bestHypocenter); - - cluster.revisionID += 1; - cluster.setPreviousHypocenter(bestHypocenter); - - if (cluster.getEarthquake() == null) { - Earthquake newEarthquake = new Earthquake(cluster); - if (!testing) { - getEarthquakes().add(newEarthquake); - if (GlobalQuake.instance != null) { - GlobalQuake.instance.getEventHandler().fireEvent(new QuakeCreateEvent(newEarthquake)); - } - } - cluster.setEarthquake(newEarthquake); - } else { - cluster.getEarthquake().update(); - - if (GlobalQuake.instance != null) { - GlobalQuake.instance.getEventHandler().fireEvent(new QuakeUpdateEvent(cluster.getEarthquake(), cluster.getPreviousHypocenter())); - } - } - } - - private int checkQuadrants(Hypocenter hyp, List events) { - int[] qua = new int[QUADRANTS]; - int good = 0; - for (PickedEvent event : events) { - double angle = GeoUtils.calculateAngle(hyp.lat, hyp.lon, event.lat(), event.lon()); - int q = (int) ((angle * QUADRANTS) / 360.0); - if (qua[q] == 0) { - good++; - } - qua[q]++; - } - return good; - } - - private void calculateMagnitude(Cluster cluster, Hypocenter hypocenter) { - if (cluster == null || hypocenter == null) { - return; - } - Collection goodEvents = cluster.getAssignedEvents().values(); - if (goodEvents.isEmpty()) { - return; - } - ArrayList mags = new ArrayList<>(); - for (Event event : goodEvents) { - if (!event.isValid()) { - continue; - } - double distGC = GeoUtils.greatCircleDistance(hypocenter.lat, hypocenter.lon, - event.getLatFromStation(), event.getLonFromStation()); - double distGE = GeoUtils.geologicalDistance(hypocenter.lat, hypocenter.lon, - -hypocenter.depth, event.getLatFromStation(), event.getLonFromStation(), event.getAnalysis().getStation().getAlt() / 1000.0); - double sTravelRaw = TauPTravelTimeCalculator.getSWaveTravelTime(hypocenter.depth, TauPTravelTimeCalculator.toAngle(distGC)); - long expectedSArrival = (long) (hypocenter.origin - + sTravelRaw - * 1000); - long lastRecord = ((BetterAnalysis) event.getAnalysis()).getLatestLogTime(); - // *0.5 because s wave is stronger - double mul = sTravelRaw == TauPTravelTimeCalculator.NO_ARRIVAL || lastRecord > expectedSArrival + 8 * 1000 ? 1 : Math.max(1, 2.0 - distGC / 400.0); - mags.add(new MagnitudeReading(IntensityTable.getMagnitude(distGE, event.getMaxRatio() * mul), distGC)); - } - hypocenter.mags = mags; - hypocenter.magnitude = selectMagnitude(mags); - } - - private double selectMagnitude(ArrayList mags) { - mags.sort(Comparator.comparing(MagnitudeReading::distance)); - - int targetSize = (int) Math.max(25, mags.size() * 0.25); - List list = new ArrayList<>(); - for (MagnitudeReading magnitudeReading : mags) { - if (magnitudeReading.distance() < 1000 || list.size() < targetSize) { - list.add(magnitudeReading); - } else break; - } - - list.sort(Comparator.comparing(MagnitudeReading::magnitude)); - - return list.get((int) ((list.size() - 1) * 0.5)).magnitude(); - } - - public static final int[] STORE_TABLE = { - 3, 3, // M0 - 3, 3, // M1 - 3, 3, // M2 - 5, 6, // M3 - 8, 16, // M4 - 30, 30, // M5 - 30, 30, // M6 - 60, 60, // M7+ - }; - - public void second() { - Iterator it = earthquakes.iterator(); - List toBeRemoved = new ArrayList<>(); - while (it.hasNext()) { - Earthquake earthquake = it.next(); - int store_minutes = STORE_TABLE[Math.max(0, - Math.min(STORE_TABLE.length - 1, (int) (earthquake.getMag() * 2.0)))]; - if (System.currentTimeMillis() - earthquake.getOrigin() > (long) store_minutes * 60 * 1000 - && System.currentTimeMillis() - earthquake.getLastUpdate() > 0.25 * store_minutes * 60 * 1000) { - if (GlobalQuake.instance != null) { - GlobalQuake.instance.getArchive().archiveQuakeAndSave(earthquake); - } - toBeRemoved.add(earthquake); - } - } - - earthquakes.removeAll(toBeRemoved); - - if (GlobalQuake.instance != null) { - toBeRemoved.forEach(earthquake -> GlobalQuake.instance.getEventHandler().fireEvent(new QuakeRemoveEvent(earthquake))); - } - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/Cluster.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/Cluster.java deleted file mode 100644 index 166622e..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/Cluster.java +++ /dev/null @@ -1,265 +0,0 @@ -package globalquake.core.earthquake.data; - -import globalquake.core.alert.Warnable; -import globalquake.core.station.AbstractStation; -import globalquake.core.analysis.Event; -import globalquake.core.training.EarthquakeAnalysisTraining; -import globalquake.utils.GeoUtils; - -import java.util.List; -import java.awt.*; -import java.util.Map; -import java.util.Random; -import java.util.concurrent.ConcurrentHashMap; - -public class Cluster implements Warnable { - - private final int id; - private final Map assignedEvents; - private double rootLat; - private double rootLon; - private double size; - public int updateCount; - private long lastUpdate; - - private Earthquake earthquake; - @SuppressWarnings("unused") - public final double bestAngle; - private Hypocenter previousHypocenter; - - private int level; - - public int lastEpicenterUpdate; - - private double anchorLon; - private double anchorLat; - public int revisionID; - - public static final double NONE = -999; - - public final Color color = randomColor(); - - private Color randomColor() { - Random random = new Random(); - - // Generate random values for the red, green, and blue components - int red = random.nextInt(256); // 0-255 - int blue = random.nextInt(256); // 0-255 - - // Create a new Color object with the random values - return new Color(red, 255, blue); - } - - - public Cluster(int id) { - this.id = id; - this.assignedEvents = new ConcurrentHashMap<>(); - this.updateCount = 0; - this.earthquake = null; - this.bestAngle = -1; - this.rootLat = NONE; - this.rootLon = NONE; - this.lastUpdate = System.currentTimeMillis(); - } - - public Hypocenter getPreviousHypocenter() { - return previousHypocenter; - } - - public void setPreviousHypocenter(Hypocenter previousHypocenter) { - this.previousHypocenter = previousHypocenter; - } - - public int getId() { - return id; - } - - public void addEvent() { - lastUpdate = System.currentTimeMillis(); - } - - /** - * - * @return all events that were added to this cluster - */ - public Map getAssignedEvents() { - return assignedEvents; - } - - public void tick() { - if (checkForUpdates()) { - if (rootLat == NONE) - calculateRoot(); - calculateSize(); - lastUpdate = System.currentTimeMillis(); - } - } - - - - private boolean checkForUpdates() { - int upd = 0; - for (Event e : getAssignedEvents().values()) { - upd += e.getUpdatesCount(); - } - boolean b = (upd != updateCount); - updateCount = upd; - return b; - } - - private void calculateSize() { - double _size = 0; - int r128 = 0; - int r1024 = 0; - int r8192 = 0; - int r32K = 0; - for (Event e : getAssignedEvents().values()) { - if(!e.isValid()){ - continue; - } - double dist = GeoUtils.greatCircleDistance(rootLat, rootLon, e.getAnalysis().getStation().getLatitude(), - e.getAnalysis().getStation().getLongitude()); - if (dist > _size) { - _size = dist; - } - if (e.getMaxRatio() >= 128) { - r128++; - } - if (e.getMaxRatio() >= 1024) { - r1024++; - } - if (e.getMaxRatio() >= 8192) { - r8192++; - } - if (e.getMaxRatio() >= 32768) { - r32K++; - } - } - - int _level = 0; - if (r128 > 8 || r1024 > 3) { - _level = 1; - } - if (r1024 > 6 || r8192 > 3) { - _level = 2; - } - if (r8192 > 4 || r32K >= 3) { - _level = 3; - } - if (r32K > 3) { - _level = 4; - } - level = _level; - this.size = _size; - } - - public void calculateRoot() { - int n = 0; - double sumLat = 0; - double sumLon = 0; - for (Event e : getAssignedEvents().values()) { - if(!e.isValid()){ - continue; - } - sumLat += e.getLatFromStation(); - sumLon += e.getLonFromStation(); - n++; - } - if (n > 0) { - rootLat = sumLat / n; - rootLon = sumLon / n; - anchorLat = rootLat; - anchorLon = rootLon; - } - } - - // For testing only - public void calculateRoot(List fakeStations) { - int n = 0; - double sumLat = 0; - double sumLon = 0; - for (EarthquakeAnalysisTraining.FakeStation fakeStation : fakeStations) { - sumLat += fakeStation.lat(); - sumLon += fakeStation.lon(); - n++; - } - if (n > 0) { - rootLat = sumLat / n; - rootLon = sumLon / n; - } - } - - public double getRootLat() { - return rootLat; - } - - public double getRootLon() { - return rootLon; - } - - @SuppressWarnings("unused") - public double getSize() { - return size; - } - - @SuppressWarnings("BooleanMethodIsAlwaysInverted") - public boolean containsStation(AbstractStation station) { - return getAssignedEvents().containsKey(station); - } - - public long getLastUpdate() { - return lastUpdate; - } - - public Earthquake getEarthquake() { - return earthquake; - } - - public void setEarthquake(Earthquake earthquake) { - this.earthquake = earthquake; - } - - public int getActualLevel() { - return level; - } - - public void updateAnchor(Hypocenter bestHypocenter) { - this.anchorLat = bestHypocenter.lat; - this.anchorLon = bestHypocenter.lon; - } - - public double getAnchorLat() { - return anchorLat; - } - - public double getAnchorLon() { - return anchorLon; - } - - @Override - public String toString() { - return "Cluster{" + - "id=" + id + - ", rootLat=" + rootLat + - ", rootLon=" + rootLon + - ", size=" + size + - ", updateCount=" + updateCount + - ", lastUpdate=" + lastUpdate + - ", earthquake=" + earthquake + - ", anchorLon=" + anchorLon + - ", anchorLat=" + anchorLat + - '}'; - } - - @SuppressWarnings("unused") - @Override - public double getWarningLat() { - return getAnchorLat(); - } - - @SuppressWarnings("unused") - @Override - public double getWarningLon() { - return getAnchorLon(); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/Earthquake.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/Earthquake.java deleted file mode 100644 index 02d04c7..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/Earthquake.java +++ /dev/null @@ -1,138 +0,0 @@ -package globalquake.core.earthquake.data; - -import globalquake.core.alert.Warnable; -import globalquake.core.regions.RegionUpdater; -import globalquake.core.regions.Regional; - -import java.time.Instant; -import java.time.LocalDateTime; -import java.time.ZoneId; -import java.util.UUID; - -public class Earthquake implements Regional, Warnable { - - private final UUID uuid; - private long lastUpdate; - private final Cluster cluster; - public int nextReportEventCount; - private String region; - - private final RegionUpdater regionUpdater; - private double lastLat; - private double lastLon; - - public Earthquake(Cluster cluster) { - if(cluster == null){ - throw new IllegalArgumentException("Cluster cannot be null!"); - } - this.cluster = cluster; - this.uuid = UUID.randomUUID(); - this.regionUpdater = new RegionUpdater(this); - this.updateRegion(); - - this.lastUpdate = System.currentTimeMillis(); - } - - public void updateRegion(){ - regionUpdater.updateRegion(); - } - - public double getMag() { - Hypocenter hyp = getHypocenter(); - return hyp == null ? 0.0 : hyp.magnitude; - } - - public double getPct() { - Hypocenter hyp = getHypocenter(); - return hyp == null ? 0.0 : 100.0 * hyp.getCorrectness(); - } - - public int getRevisionID() { - Hypocenter hyp = getHypocenter(); - return hyp == null ? 0 : cluster.revisionID; - } - - public long getLastUpdate() { - return lastUpdate; - } - - public double getDepth() { - Hypocenter hyp = getHypocenter(); - return hyp == null ? 0.0 : hyp.depth; - } - - public double getLat() { - Hypocenter hyp = getHypocenter(); - return hyp == null ? 0.0 : hyp.lat; - } - - public double getLon() { - Hypocenter hyp = getHypocenter(); - return hyp == null ? 0.0 : hyp.lon; - } - - public long getOrigin() { - Hypocenter hyp = getHypocenter(); - return hyp == null ? 0L : hyp.origin; - } - - public void update() { - if (getLat() != lastLat || getLon() != lastLon) { - regionUpdater.updateRegion(); - } - - lastLat = getLat(); - lastLon = getLon(); - this.lastUpdate = System.currentTimeMillis(); - } - - public Cluster getCluster() { - return cluster; - } - - public Hypocenter getHypocenter(){ - return getCluster().getPreviousHypocenter(); - } - - @Override - public String getRegion() { - return region; - } - - @Override - public void setRegion(String newRegion) { - this.region = newRegion; - } - - @Override - public String toString() { - return "Earthquake{" + - "uuid=" + uuid + - ", lastUpdate=" + lastUpdate + - ", nextReportEventCount=" + nextReportEventCount + - ", region='" + region + '\'' + - ", lastLat=" + lastLat + - ", lastLon=" + lastLon + - '}'; - } - - @SuppressWarnings("unused") - @Override - public double getWarningLat() { - return getLat(); - } - - @SuppressWarnings("unused") - @Override - public double getWarningLon() { - return getLon(); - } - - public LocalDateTime getOriginDate() { - return Instant.ofEpochMilli(getOrigin()).atZone(ZoneId.systemDefault()).toLocalDateTime(); - } - - public UUID getUuid() { - return uuid; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/Hypocenter.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/Hypocenter.java deleted file mode 100644 index 016aed4..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/Hypocenter.java +++ /dev/null @@ -1,109 +0,0 @@ -package globalquake.core.earthquake.data; - -import globalquake.core.earthquake.interval.DepthConfidenceInterval; -import globalquake.core.earthquake.interval.PolygonConfidenceInterval; -import globalquake.core.earthquake.quality.Quality; - -import java.util.List; - -public class Hypocenter { - public final double totalErr; - public int correctEvents; - - public final double lat; - public final double lon; - public double depth; - public long origin; - - public int selectedEvents; - - public double magnitude; - public List mags; - public ObviousArrivalsInfo obviousArrivalsInfo; - - public final DepthConfidenceInterval depthConfidenceInterval; - - public final List polygonConfidenceIntervals; - public double depthUncertainty; - public double locationUncertainty; - public boolean depthFixed; - - public Quality quality; - public int bestCount; - - public Hypocenter(double lat, double lon, double depth, long origin, double err, int correctEvents, - DepthConfidenceInterval depthConfidenceInterval, - List polygonConfidenceIntervals) { - this.lat = lat; - this.lon = lon; - this.depth = depth; - this.origin = origin; - this.totalErr = err; - this.correctEvents = correctEvents; - this.depthConfidenceInterval = depthConfidenceInterval; - this.polygonConfidenceIntervals = polygonConfidenceIntervals; - } - - public double getCorrectness(){ - return (correctEvents) / (double) selectedEvents; - } - - public int getWrongEventCount(){ - return selectedEvents - correctEvents; - } - - @Override - public String toString() { - return "Hypocenter{" + - "totalErr=" + totalErr + - ", correctEvents=" + correctEvents + - ", lat=" + lat + - ", lon=" + lon + - ", depth=" + depth + - ", origin=" + origin + - ", selectedEvents=" + selectedEvents + - ", magnitude=" + magnitude + - ", mags=" + mags + - ", obviousArrivalsInfo=" + obviousArrivalsInfo + - ", depthConfidenceInterval=" + depthConfidenceInterval + - '}'; - } - - public void calculateQuality() { - PolygonConfidenceInterval lastInterval = polygonConfidenceIntervals.get(polygonConfidenceIntervals.size() - 1); - - double errOrigin = (lastInterval.maxOrigin() - lastInterval.minOrigin()) / 1000.0; - double errDepth = (depthConfidenceInterval.maxDepth() - depthConfidenceInterval.minDepth()); - - double[] result = calculateLocationQuality(lastInterval); - double errNS = result[0]; - double errEW = result[1]; - - double pct = getCorrectness() * 100.0; - int stations = selectedEvents; - - this.quality = new Quality(errOrigin, errDepth, errNS, errEW, stations, pct); - } - - private static double[] calculateLocationQuality(PolygonConfidenceInterval lastInterval) { - double errNS = 0; - double errEW = 0; - - for (int i = 0; i < lastInterval.n(); i++) { - double ang = lastInterval.offset() + (i / (double) lastInterval.n()) * 360.0; - double length = lastInterval.lengths().get(i); - - if (((int) ((ang + 360.0 - 45.0) / 90)) % 2 == 1) { - if (length > errNS) { - errNS = length; - } - } else { - if (length > errEW) { - errEW = length; - } - } - } - - return new double[]{errNS, errEW}; - } -} \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/HypocenterCondition.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/HypocenterCondition.java deleted file mode 100644 index 701c100..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/HypocenterCondition.java +++ /dev/null @@ -1,7 +0,0 @@ -package globalquake.core.earthquake.data; - -public enum HypocenterCondition { - - OK, NULL, DISTANT_EVENT_NOT_ENOUGH_STATIONS, NOT_ENOUGH_CORRECT_STATIONS, TOO_SHALLOW_ANGLE, PREVIOUS_WAS_BETTER, - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/HypocenterFinderSettings.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/HypocenterFinderSettings.java deleted file mode 100644 index 14769dd..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/HypocenterFinderSettings.java +++ /dev/null @@ -1,4 +0,0 @@ -package globalquake.core.earthquake.data; - -public record HypocenterFinderSettings(double pWaveInaccuracyThreshold, double correctnessThreshold, double resolution, int minStations) { -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/HypocenterFinderThreadData.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/HypocenterFinderThreadData.java deleted file mode 100644 index e188d2b..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/HypocenterFinderThreadData.java +++ /dev/null @@ -1,26 +0,0 @@ -package globalquake.core.earthquake.data; - -public class HypocenterFinderThreadData { - public final long[] origins; - - public final PreliminaryHypocenter hypocenterA; - - public final PreliminaryHypocenter hypocenterB; - public final PreliminaryHypocenter bestHypocenter; - - public HypocenterFinderThreadData(int size) { - origins = new long[size]; - hypocenterA = new PreliminaryHypocenter(); - hypocenterB = new PreliminaryHypocenter(); - bestHypocenter = new PreliminaryHypocenter(); - } - - public void setBest(PreliminaryHypocenter preliminaryHypocenter) { - bestHypocenter.lat = preliminaryHypocenter.lat; - bestHypocenter.lon = preliminaryHypocenter.lon; - bestHypocenter.depth = preliminaryHypocenter.depth; - bestHypocenter.origin = preliminaryHypocenter.origin; - bestHypocenter.correctStations = preliminaryHypocenter.correctStations; - bestHypocenter.err = preliminaryHypocenter.err; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/MagnitudeReading.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/MagnitudeReading.java deleted file mode 100644 index 44ef43f..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/MagnitudeReading.java +++ /dev/null @@ -1,4 +0,0 @@ -package globalquake.core.earthquake.data; - -public record MagnitudeReading(double magnitude, double distance) { -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/ObviousArrivalsInfo.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/ObviousArrivalsInfo.java deleted file mode 100644 index e14dace..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/ObviousArrivalsInfo.java +++ /dev/null @@ -1,12 +0,0 @@ -package globalquake.core.earthquake.data; - -public record ObviousArrivalsInfo(int total, int wrong) { - - @Override - public String toString() { - return "ObviousArrivalsInfo{" + - "total=" + total + - ", wrong=" + wrong + - '}'; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/PickedEvent.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/PickedEvent.java deleted file mode 100644 index f6901af..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/PickedEvent.java +++ /dev/null @@ -1,68 +0,0 @@ -package globalquake.core.earthquake.data; - -import java.util.Objects; - -public class PickedEvent { - private final long pWave; - private final double lat; - private final double lon; - private final double elevation; - private final double maxRatio; - - public PickedEvent(long pWave, double lat, double lon, double elevation, double maxRatio) { - this.pWave = pWave; - this.lat = lat; - this.lon = lon; - this.elevation = elevation; - this.maxRatio = maxRatio; - } - - public long pWave() { - return pWave; - } - - public double lat() { - return lat; - } - - public double lon() { - return lon; - } - - public double elevation() { - return elevation; - } - - public double maxRatio() { - return maxRatio; - } - - @Override - public boolean equals(Object obj) { - if (obj == this) return true; - if (obj == null || obj.getClass() != this.getClass()) return false; - var that = (PickedEvent) obj; - return this.pWave == that.pWave && - Double.doubleToLongBits(this.lat) == Double.doubleToLongBits(that.lat) && - Double.doubleToLongBits(this.lon) == Double.doubleToLongBits(that.lon) && - Double.doubleToLongBits(this.elevation) == Double.doubleToLongBits(that.elevation) && - Double.doubleToLongBits(this.maxRatio) == Double.doubleToLongBits(that.maxRatio); - } - - @Override - public int hashCode() { - return Objects.hash(pWave, lat, lon, elevation, maxRatio); - } - - @Override - public String toString() { - return "PickedEvent[" + - "pWave=" + pWave + ", " + - "lat=" + lat + ", " + - "lon=" + lon + ", " + - "elevation=" + elevation + ", " + - "maxRatio=" + maxRatio + ']'; - } - - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/PreliminaryHypocenter.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/PreliminaryHypocenter.java deleted file mode 100644 index 7f7be7f..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/data/PreliminaryHypocenter.java +++ /dev/null @@ -1,45 +0,0 @@ -package globalquake.core.earthquake.data; - -import globalquake.core.earthquake.interval.DepthConfidenceInterval; -import globalquake.core.earthquake.interval.PolygonConfidenceInterval; - -import java.util.List; - -public class PreliminaryHypocenter { - public double lat; - public double lon; - public double depth; - public long origin; - - public double err = 0; - public int correctStations = 0; - - public PreliminaryHypocenter(double lat, double lon, double depth, long origin, double totalErr, int correctStations) { - this.lat = lat; - this.lon = lon; - this.depth = depth; - this.origin = origin; - this.err = totalErr; - this.correctStations = correctStations; - } - - public PreliminaryHypocenter() { - - } - - public Hypocenter finish(DepthConfidenceInterval hypocenterConfidenceInterval, List polygonConfidenceIntervals) { - return new Hypocenter(lat, lon, depth, origin, err, correctStations, hypocenterConfidenceInterval, polygonConfidenceIntervals); - } - - @Override - public String toString() { - return "PreliminaryHypocenter{" + - "lat=" + lat + - ", lon=" + lon + - ", depth=" + depth + - ", origin=" + origin + - ", err=" + err + - ", correctStations=" + correctStations + - '}'; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/interval/DepthConfidenceInterval.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/interval/DepthConfidenceInterval.java deleted file mode 100644 index 1e3c6da..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/interval/DepthConfidenceInterval.java +++ /dev/null @@ -1,12 +0,0 @@ -package globalquake.core.earthquake.interval; - -public record DepthConfidenceInterval(double minDepth, double maxDepth) { - - @Override - public String toString() { - return "HypocenterConfidenceInterval{" + - "minDepth=" + minDepth + - ", maxDepth=" + maxDepth + - '}'; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/interval/PolygonConfidenceInterval.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/interval/PolygonConfidenceInterval.java deleted file mode 100644 index b50b376..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/interval/PolygonConfidenceInterval.java +++ /dev/null @@ -1,6 +0,0 @@ -package globalquake.core.earthquake.interval; - -import java.util.List; - -public record PolygonConfidenceInterval(int n, double offset, List lengths, long minOrigin, long maxOrigin) { -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/quality/Quality.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/quality/Quality.java deleted file mode 100644 index 6384918..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/quality/Quality.java +++ /dev/null @@ -1,69 +0,0 @@ -package globalquake.core.earthquake.quality; - -public class Quality { - private static final double[] THRESHOLDS_ORIGIN = {1.0, 2.5, 10.0, 30.0}; - private static final double[] THRESHOLDS_DEPTH = {5.0, 20.0, 50.0, 200.0}; - private static final double[] THRESHOLDS_LOCATION = {5.0, 20.0, 50.0, 200.0}; - private static final double[] THRESHOLDS_STATIONS = {24.0, 16.0, 10.0, 6.0}; - private static final double[] THRESHOLDS_PERCENTAGE = {90.0, 80.0, 65.0, 50.0}; - - private final QualityCriteria qualityOrigin; - private final QualityCriteria qualityDepth; - private final QualityCriteria qualityNS; - private final QualityCriteria qualityEW; - - private final QualityCriteria qualityStations; - private final QualityCriteria qualityPercentage; - - private final QualityClass summary; - - public Quality(double errOrigin, double errDepth, double errNS, double errEW, int stations, double pct) { - this.qualityOrigin = new QualityCriteria(THRESHOLDS_ORIGIN, errOrigin, true); - this.qualityDepth = new QualityCriteria(THRESHOLDS_DEPTH, errDepth, true); - this.qualityNS = new QualityCriteria(THRESHOLDS_LOCATION, errNS, true); - this.qualityEW = new QualityCriteria(THRESHOLDS_LOCATION, errEW, true); - this.qualityStations = new QualityCriteria(THRESHOLDS_STATIONS, stations, false); - this.qualityPercentage = new QualityCriteria(THRESHOLDS_PERCENTAGE, pct, false); - this.summary = summarize(); - } - - private QualityClass summarize() { - QualityClass result = QualityClass.S; - QualityCriteria[] allCriteria = {qualityDepth, qualityOrigin, qualityNS, qualityEW, qualityPercentage, qualityStations}; - for(QualityCriteria criteria : allCriteria){ - if(criteria.getQualityClass().ordinal() > result.ordinal()){ - result = criteria.getQualityClass(); - } - } - - return result; - } - - public QualityCriteria getQualityEW() { - return qualityEW; - } - - public QualityCriteria getQualityDepth() { - return qualityDepth; - } - - public QualityCriteria getQualityNS() { - return qualityNS; - } - - public QualityCriteria getQualityOrigin() { - return qualityOrigin; - } - - public QualityCriteria getQualityStations() { - return qualityStations; - } - - public QualityCriteria getQualityPercentage() { - return qualityPercentage; - } - - public QualityClass getSummary() { - return summary; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/quality/QualityClass.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/quality/QualityClass.java deleted file mode 100644 index f1b436c..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/quality/QualityClass.java +++ /dev/null @@ -1,22 +0,0 @@ -package globalquake.core.earthquake.quality; - -import java.awt.*; - -public enum QualityClass { - - S(new Color(0, 90, 192)), - A(new Color(0,255, 0)), - B(new Color(255,255,0)), - C(new Color(255,140,0)), - D(new Color(255,0,0)); - - private final Color color; - - QualityClass(Color color){ - this.color = color; - } - - public Color getColor() { - return color; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/quality/QualityCriteria.java b/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/quality/QualityCriteria.java deleted file mode 100644 index 46184dd..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/earthquake/quality/QualityCriteria.java +++ /dev/null @@ -1,29 +0,0 @@ -package globalquake.core.earthquake.quality; - -public final class QualityCriteria { - - private final double[] thresholds; - private final double value; - private final boolean smallerBetter; - - public QualityCriteria(double[] thresholds, double value, boolean smallerBetter){ - this.thresholds = thresholds; - this.value = value; - this.smallerBetter = smallerBetter; - } - - public double getValue() { - return value; - } - - public QualityClass getQualityClass() { - int result = 0; - for(double threshold : thresholds){ - if(smallerBetter ? value > threshold : value < threshold){ - result ++; - } - } - - return QualityClass.values()[Math.min(QualityClass.values().length - 1, result)]; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/events/GlobalQuakeEventAdapter.java b/GlobalQuakeCore/src/main/java/globalquake/core/events/GlobalQuakeEventAdapter.java deleted file mode 100644 index e1a6290..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/events/GlobalQuakeEventAdapter.java +++ /dev/null @@ -1,27 +0,0 @@ -package globalquake.core.events; - -import globalquake.core.events.specific.*; - -public class GlobalQuakeEventAdapter implements GlobalQuakeEventListener{ - - @Override - public void onClusterCreate(ClusterCreateEvent event) { - - } - - @Override - public void onQuakeCreate(QuakeCreateEvent event) { - - } - - @SuppressWarnings("unused") - @Override - public void onQuakeUpdate(QuakeUpdateEvent event) { - - } - - @Override - public void onQuakeRemove(QuakeRemoveEvent quakeRemoveEvent) { - - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/events/GlobalQuakeEventHandler.java b/GlobalQuakeCore/src/main/java/globalquake/core/events/GlobalQuakeEventHandler.java deleted file mode 100644 index a885f95..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/events/GlobalQuakeEventHandler.java +++ /dev/null @@ -1,49 +0,0 @@ -package globalquake.core.events; - -import globalquake.core.events.specific.GlobalQuakeEvent; -import org.tinylog.Logger; - -import java.util.Queue; -import java.util.concurrent.ConcurrentLinkedQueue; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; - -public class GlobalQuakeEventHandler { - - private Queue eventListeners; - - private ExecutorService executor; - - public GlobalQuakeEventHandler runHandler() { - eventListeners = new ConcurrentLinkedQueue<>(); - executor = Executors.newSingleThreadExecutor(); - return this; - } - - @SuppressWarnings("unused") - public void stopHandler(){ - executor.shutdownNow(); - } - - public void registerEventListener(GlobalQuakeEventListener eventListener){ - eventListeners.add(eventListener); - } - - @SuppressWarnings("unused") - public boolean removeEventListener(GlobalQuakeEventListener eventListener){ - return eventListeners.remove(eventListener); - } - - public void fireEvent(GlobalQuakeEvent event){ - executor.submit(() -> { - for (GlobalQuakeEventListener eventListener : eventListeners) { - try { - event.run(eventListener); - } catch (Exception e) { - Logger.error(e); - } - } - }); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/events/GlobalQuakeEventListener.java b/GlobalQuakeCore/src/main/java/globalquake/core/events/GlobalQuakeEventListener.java deleted file mode 100644 index 44578e5..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/events/GlobalQuakeEventListener.java +++ /dev/null @@ -1,17 +0,0 @@ -package globalquake.core.events; - -import globalquake.core.events.specific.*; - -public interface GlobalQuakeEventListener { - - @SuppressWarnings("EmptyMethod") - void onClusterCreate(ClusterCreateEvent event); - - void onQuakeCreate(QuakeCreateEvent event); - - @SuppressWarnings("unused") - void onQuakeUpdate(QuakeUpdateEvent event); - - void onQuakeRemove(QuakeRemoveEvent quakeRemoveEvent); - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/ClusterCreateEvent.java b/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/ClusterCreateEvent.java deleted file mode 100644 index 7c7894b..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/ClusterCreateEvent.java +++ /dev/null @@ -1,12 +0,0 @@ -package globalquake.core.events.specific; - -import globalquake.core.earthquake.data.Cluster; -import globalquake.core.events.GlobalQuakeEventListener; - -public record ClusterCreateEvent(Cluster cluster) implements GlobalQuakeEvent { - - @Override - public void run(GlobalQuakeEventListener eventListener) { - eventListener.onClusterCreate(this); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/GlobalQuakeEvent.java b/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/GlobalQuakeEvent.java deleted file mode 100644 index 8686a2e..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/GlobalQuakeEvent.java +++ /dev/null @@ -1,8 +0,0 @@ -package globalquake.core.events.specific; - -import globalquake.core.events.GlobalQuakeEventListener; - -public interface GlobalQuakeEvent { - - void run(GlobalQuakeEventListener eventListener); -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/QuakeCreateEvent.java b/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/QuakeCreateEvent.java deleted file mode 100644 index f9513a3..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/QuakeCreateEvent.java +++ /dev/null @@ -1,12 +0,0 @@ -package globalquake.core.events.specific; - -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.events.GlobalQuakeEventListener; - -public record QuakeCreateEvent(Earthquake earthquake) implements GlobalQuakeEvent { - - @Override - public void run(GlobalQuakeEventListener eventListener) { - eventListener.onQuakeCreate(this); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/QuakeRemoveEvent.java b/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/QuakeRemoveEvent.java deleted file mode 100644 index be3bc30..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/QuakeRemoveEvent.java +++ /dev/null @@ -1,12 +0,0 @@ -package globalquake.core.events.specific; - -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.events.GlobalQuakeEventListener; - -public record QuakeRemoveEvent(Earthquake earthquake) implements GlobalQuakeEvent { - - @Override - public void run(GlobalQuakeEventListener eventListener) { - eventListener.onQuakeRemove(this); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/QuakeUpdateEvent.java b/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/QuakeUpdateEvent.java deleted file mode 100644 index 4e32235..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/events/specific/QuakeUpdateEvent.java +++ /dev/null @@ -1,25 +0,0 @@ -package globalquake.core.events.specific; - -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.earthquake.data.Hypocenter; -import globalquake.core.events.GlobalQuakeEventListener; - -public record QuakeUpdateEvent(Earthquake earthquake, Hypocenter previousHypocenter) implements GlobalQuakeEvent { - - @Override - @SuppressWarnings("unused") - public Earthquake earthquake() { - return earthquake; - } - - @Override - @SuppressWarnings("unused") - public Hypocenter previousHypocenter() { - return previousHypocenter; - } - - @Override - public void run(GlobalQuakeEventListener eventListener) { - eventListener.onQuakeUpdate(this); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/ApplicationErrorHandler.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/ApplicationErrorHandler.java deleted file mode 100644 index cf6cc24..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/ApplicationErrorHandler.java +++ /dev/null @@ -1,105 +0,0 @@ -package globalquake.core.exception; - -import globalquake.core.action.OpenURLAction; -import globalquake.core.exception.action.IgnoreAction; -import globalquake.core.exception.action.TerminateAction; -import org.tinylog.Logger; - -import javax.swing.*; -import java.awt.*; -import java.io.PrintWriter; -import java.io.StringWriter; - -public class ApplicationErrorHandler implements Thread.UncaughtExceptionHandler { - - private Window parent; - - private int errorCount = 0; - - - public ApplicationErrorHandler(Window parent) { - this.parent = parent; - } - - public void setParent(Window parent) { - this.parent = parent; - } - - @Override - public void uncaughtException(Thread t, Throwable e) { - Logger.error("An uncaught exception has occurred in thread {} : {}", t.getName(), e.getMessage()); - Logger.error(e); - handleException(e); - } - - public synchronized void handleException(Throwable e) { - Logger.error(e); - if (!(e instanceof RuntimeApplicationException)) { - showDetailedError(e); - return; - } - - if (e instanceof FatalError ex) { - showGeneralError(ex.getUserMessage(), true); - } else { - ApplicationException ex = (ApplicationException) e; - showGeneralError(ex.getUserMessage(), false); - } - } - - public synchronized void handleWarning(Throwable e) { - showWarning(e.getMessage()); - } - - private void showWarning(String message) { - JOptionPane.showMessageDialog(parent, message, "Warning", JOptionPane.WARNING_MESSAGE); - } - - private void showDetailedError(Throwable e) { - errorCount++; - if (errorCount == 2) { - System.exit(0); - } - final Object[] options = getOptionsForDialog(true); - JOptionPane.showOptionDialog(parent, createDetailedPane(e), "Fatal Error", JOptionPane.DEFAULT_OPTION, - JOptionPane.ERROR_MESSAGE, null, options, null); - errorCount = 0; - } - - private Component createDetailedPane(Throwable e) { - JPanel panel = new JPanel(new BorderLayout()); - - JPanel labelsPanel = new JPanel(new GridLayout(2, 1)); - - labelsPanel.add(new JLabel("Oops! Something has gone terribly wrong inside GlobalQuake.")); - labelsPanel.add(new JLabel("Please send the following text to the developers so that they can fix it ASAP:")); - - panel.add(labelsPanel, BorderLayout.NORTH); - - JTextArea textArea = new JTextArea(16, 60); - textArea.setEditable(false); - StringWriter stackTraceWriter = new StringWriter(); - e.printStackTrace(new PrintWriter(stackTraceWriter)); - textArea.append(stackTraceWriter.toString()); - - panel.add(new JScrollPane(textArea), BorderLayout.CENTER); - return panel; - } - - private void showGeneralError(String message, boolean isFatal) { - final String title = isFatal ? "Fatal Error" : "Application Error"; - final Object[] options = getOptionsForDialog(isFatal); - - JOptionPane.showOptionDialog(parent, message, title, JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE, null, - options, null); - } - - private Component[] getOptionsForDialog(boolean isFatal) { - if (!isFatal) { - return null; // use default - } - - return new Component[] { new JButton(new TerminateAction()), new JButton(new OpenURLAction("https://github.com/xspanger3770/GlobalQuake/issues", "Open issue on GitHub")), - new JButton(new IgnoreAction()) }; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/ApplicationException.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/ApplicationException.java deleted file mode 100644 index 3f1dff8..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/ApplicationException.java +++ /dev/null @@ -1,12 +0,0 @@ -package globalquake.core.exception; - -/** - * Interface for exceptions with error message displayable to user - */ -public interface ApplicationException { - - /** - * @return error message displayable to user - */ - String getUserMessage(); -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/FatalApplicationException.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/FatalApplicationException.java deleted file mode 100644 index 5dc5fd3..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/FatalApplicationException.java +++ /dev/null @@ -1,19 +0,0 @@ -package globalquake.core.exception; - -public class FatalApplicationException extends Exception implements FatalError { - - @SuppressWarnings("unused") - public FatalApplicationException(Throwable cause) { - super(cause); - } - - public FatalApplicationException(String message, Throwable cause) { - super(message, cause); - } - - @Override - public String getUserMessage() { - return super.getMessage(); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/FatalError.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/FatalError.java deleted file mode 100644 index 35b5c98..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/FatalError.java +++ /dev/null @@ -1,5 +0,0 @@ -package globalquake.core.exception; - -public interface FatalError extends ApplicationException{ - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/FatalIOException.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/FatalIOException.java deleted file mode 100644 index ad5a622..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/FatalIOException.java +++ /dev/null @@ -1,9 +0,0 @@ -package globalquake.core.exception; - -public class FatalIOException extends FatalApplicationException{ - - public FatalIOException(String message, Throwable cause) { - super(message, cause); - } - -} \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/FdnwsDownloadException.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/FdnwsDownloadException.java deleted file mode 100644 index 2f55963..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/FdnwsDownloadException.java +++ /dev/null @@ -1,7 +0,0 @@ -package globalquake.core.exception; - -public class FdnwsDownloadException extends RuntimeApplicationException { - public FdnwsDownloadException(String s) { - super(s); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/InvalidPacketException.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/InvalidPacketException.java deleted file mode 100644 index 81ed114..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/InvalidPacketException.java +++ /dev/null @@ -1,7 +0,0 @@ -package globalquake.core.exception; - -public class InvalidPacketException extends Throwable { - public InvalidPacketException(String s) { - super(s); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/RuntimeApplicationException.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/RuntimeApplicationException.java deleted file mode 100644 index 9441987..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/RuntimeApplicationException.java +++ /dev/null @@ -1,28 +0,0 @@ -package globalquake.core.exception; - -public class RuntimeApplicationException extends RuntimeException implements ApplicationException { - - public final String userMessage; - - public RuntimeApplicationException(String message) { - this(message, message); - } - - public RuntimeApplicationException(String userMessage, String message) { - super(message); - this.userMessage = userMessage; - } - - public RuntimeApplicationException(String userMessage, String message, Throwable cause) { - super(message, cause); - this.userMessage = userMessage; - } - - public RuntimeApplicationException(String message, Throwable cause) { - this(message, message, cause); - } - - public String getUserMessage() { - return userMessage; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/action/IgnoreAction.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/action/IgnoreAction.java deleted file mode 100644 index f77707c..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/action/IgnoreAction.java +++ /dev/null @@ -1,28 +0,0 @@ -package globalquake.core.exception.action; - -import java.awt.Component; -import java.awt.Window; -import java.awt.event.ActionEvent; -import java.awt.event.KeyEvent; - -import javax.swing.AbstractAction; -import javax.swing.SwingUtilities; - -public class IgnoreAction extends AbstractAction { - - public IgnoreAction() { - super("Ignore"); - putValue(SHORT_DESCRIPTION, "Ignore the error and continue (unsafe)"); - putValue(MNEMONIC_KEY, KeyEvent.VK_I); - } - - @Override - public void actionPerformed(ActionEvent e) { - Window w = SwingUtilities.getWindowAncestor((Component) e.getSource()); - - if (w != null) { - w.setVisible(false); - } - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/exception/action/TerminateAction.java b/GlobalQuakeCore/src/main/java/globalquake/core/exception/action/TerminateAction.java deleted file mode 100644 index 63d3e26..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/exception/action/TerminateAction.java +++ /dev/null @@ -1,22 +0,0 @@ -package globalquake.core.exception.action; - -import javax.swing.AbstractAction; -import java.awt.event.ActionEvent; -import java.awt.event.KeyEvent; - -/** - * Action responsible for terminating the application. - */ -public final class TerminateAction extends AbstractAction { - - public TerminateAction() { - super("Terminate"); - putValue(SHORT_DESCRIPTION, "Terminates the application"); - putValue(MNEMONIC_KEY, KeyEvent.VK_T); - } - - @Override - public void actionPerformed(ActionEvent e) { - System.exit(0); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/geo/DistanceUnit.java b/GlobalQuakeCore/src/main/java/globalquake/core/geo/DistanceUnit.java deleted file mode 100644 index f9527e3..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/geo/DistanceUnit.java +++ /dev/null @@ -1,42 +0,0 @@ -package globalquake.core.geo; - -public enum DistanceUnit { - - KM("Kilometers", "km", 1.0), - MI("Miles", "mi", 0.621371192); - - private final String longName; - private final String shortName; - private final double kmRatio; - - DistanceUnit(String longName, String shortName, double kmRatio){ - this.longName=longName; - this.shortName = shortName; - this.kmRatio = kmRatio; - } - - public double getKmRatio() { - return kmRatio; - } - - public String getLongName() { - return longName; - } - - public String getShortName() { - return shortName; - } - - @Override - public String toString() { - return "%s (%s)".formatted(getLongName(), getShortName()); - } - - public String format(double distance, int i) { - double result = distance * getKmRatio(); - if(i == 0){ - return "%d%s".formatted((int) result, getShortName()); - } - return ("%%.%df%%s".formatted(i)).formatted(result, getShortName()); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/geo/taup/TauPTravelTable.java b/GlobalQuakeCore/src/main/java/globalquake/core/geo/taup/TauPTravelTable.java deleted file mode 100644 index 3d3e136..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/geo/taup/TauPTravelTable.java +++ /dev/null @@ -1,91 +0,0 @@ -package globalquake.core.geo.taup; - -import edu.sc.seis.TauP.Arrival; -import edu.sc.seis.TauP.TauModelException; -import edu.sc.seis.TauP.TauP_Time; - -import java.io.IOException; -import java.io.Serializable; -import java.util.ArrayList; -import java.util.List; - -public class TauPTravelTable implements Serializable { - - - public static final double P_S_MIN_ANGLE = 0; - public static final double P_S_MAX_ANGLE = 150; - - public static final double PKIKP_MIN_ANGLE = 0; - public static final double PKIKP_MAX_ANGLE = 180; - - public static final double PKP_MIN_ANGLE = 140; - public static final double PKP_MAX_ANGLE = 180; - public static final String MODEL_NAME = "iasp91"; - - public float[][] p_travel_table; - public float[][] s_travel_table; - - public float[][] pkikp_travel_table; - public float[][] pkp_travel_table; - - public TauPTravelTable() throws TauModelException, IOException { - TauP_Time timeToolGlobal = new TauP_Time(); - timeToolGlobal.loadTauModel(MODEL_NAME); - - pkikp_travel_table = createArray(PKIKP_MIN_ANGLE, PKIKP_MAX_ANGLE); - fill(pkikp_travel_table, timeToolGlobal, "PKIKP,PKiKP", PKIKP_MIN_ANGLE, PKIKP_MAX_ANGLE); - - p_travel_table = createArray(P_S_MIN_ANGLE, P_S_MAX_ANGLE); - fill(p_travel_table, timeToolGlobal, "p,P,pP,Pn,PcP,Pdiff", P_S_MIN_ANGLE, P_S_MAX_ANGLE); - - s_travel_table = createArray(P_S_MIN_ANGLE, P_S_MAX_ANGLE); - fill(s_travel_table, timeToolGlobal, "s,S,sS,Sn,ScS,Sdiff", P_S_MIN_ANGLE, P_S_MAX_ANGLE); - - pkp_travel_table = createArray(PKP_MIN_ANGLE, PKP_MAX_ANGLE); - fill(pkp_travel_table, timeToolGlobal, "PKP", PKP_MIN_ANGLE, PKP_MAX_ANGLE); - } - - @SuppressWarnings("CallToPrintStackTrace") - private static void fill(float[][] array, TauP_Time timeModel, String phases, double minAngle, double maxAngle) { - List depths = new ArrayList<>(); - - for (int depthI = 0; depthI <= (int)(TauPTravelTimeCalculator.MAX_DEPTH / TauPTravelTimeCalculator.DEPTH_RESOLUTION); depthI++) { - double depth = depthI * TauPTravelTimeCalculator.DEPTH_RESOLUTION; - depths.add(depth); - } - - depths.parallelStream().forEach(depth -> { - try { - TauP_Time timeTool = new TauP_Time(timeModel.getTauModelName()); - timeTool.parsePhaseList(phases); - - for (int angI = (int)(minAngle / TauPTravelTimeCalculator.ANG_RESOLUTION); angI <= maxAngle / TauPTravelTimeCalculator.ANG_RESOLUTION; angI ++) { - double ang = angI * TauPTravelTimeCalculator.ANG_RESOLUTION; - timeTool.setSourceDepth(depth); - timeTool.calculate(ang); - int x = (int) Math.round(depth / TauPTravelTimeCalculator.DEPTH_RESOLUTION); - int y = (int) Math.round((ang - minAngle) / TauPTravelTimeCalculator.ANG_RESOLUTION); - if (timeTool.getNumArrivals() > 0) { - Arrival arrival = timeTool.getArrival(0); - array[x][y] = (float) arrival.getTime(); - } else { - array[x][y] = TauPTravelTimeCalculator.NO_ARRIVAL; - } - } - } catch (Exception e) { - e.printStackTrace(); - System.exit(0); - } - }); - } - - private static float[][] createArray(double minAng, double maxAng) { - int width = ((int) Math.round(TauPTravelTimeCalculator.MAX_DEPTH / TauPTravelTimeCalculator.DEPTH_RESOLUTION) + 1); - int height = (int) Math.round((maxAng - minAng) / TauPTravelTimeCalculator.ANG_RESOLUTION) + 1; - - int count = width * height; - double size = (count * Float.BYTES) / (1024.0 * 1024.0); - System.out.printf("Filling array size %,d (%.3fMB)%n", count, size); - return new float[width][height]; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/geo/taup/TauPTravelTimeCalculator.java b/GlobalQuakeCore/src/main/java/globalquake/core/geo/taup/TauPTravelTimeCalculator.java deleted file mode 100644 index 700729d..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/geo/taup/TauPTravelTimeCalculator.java +++ /dev/null @@ -1,198 +0,0 @@ -package globalquake.core.geo.taup; - -import globalquake.core.exception.FatalApplicationException; -import globalquake.core.exception.FatalIOException; -import globalquake.utils.GeoUtils; - -import java.io.*; -import java.util.function.Function; - -@SuppressWarnings("unused") -public class TauPTravelTimeCalculator { - - public static final double ANG_RESOLUTION = 0.1; - public static final double DEPTH_RESOLUTION = 1.0; - - public static final double MAX_DEPTH = 750.0; - public static final float NO_ARRIVAL = -999.0f; - private static TauPTravelTable travelTable; - - public static void init() throws FatalApplicationException { - try { - travelTable = loadTravelTable("travel_table/travel_table.dat"); - }catch(Exception e){ - throw new FatalApplicationException(e); - } - } - - public static void main(String[] args) throws Exception{ - createTravelTable(); - } - - @SuppressWarnings("unused") - private static void createTravelTable() throws Exception{ - TauPTravelTable travelTable = new TauPTravelTable(); - ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream("travel_table.dat")); - out.writeObject(travelTable); - out.close(); - } - - @SuppressWarnings("SameParameterValue") - private static TauPTravelTable loadTravelTable(String path) throws FatalIOException { - var url = ClassLoader.getSystemClassLoader().getResource(path); - if(url == null){ - throw new FatalIOException("Unable to load travel table!", new NullPointerException()); - } - - TauPTravelTable res; - try { - ObjectInput in = new ObjectInputStream(url.openStream()); - res = (TauPTravelTable) in.readObject(); - }catch(IOException | ClassNotFoundException e){ - throw new FatalIOException("Unable to load travel table!", e); - } - - return res; - } - - - - public static double getPWaveTravelTime(double depth, double angle){ - return interpolateWaves(travelTable.p_travel_table, TauPTravelTable.P_S_MIN_ANGLE, TauPTravelTable.P_S_MAX_ANGLE, depth, angle, false); - } - - public static double getPWaveTravelTimeFast(double depth, double angle){ - return interpolateWaves(travelTable.p_travel_table, TauPTravelTable.P_S_MIN_ANGLE, TauPTravelTable.P_S_MAX_ANGLE, depth, angle, true); - } - - public static double getSWaveTravelTime(double depth, double angle){ - return interpolateWaves(travelTable.s_travel_table, TauPTravelTable.P_S_MIN_ANGLE, TauPTravelTable.P_S_MAX_ANGLE, depth, angle, false); - } - - public static double getPKIKPWaveTravelTime(double depth, double angle){ - return interpolateWaves(travelTable.pkikp_travel_table, TauPTravelTable.PKIKP_MIN_ANGLE, TauPTravelTable.PKIKP_MAX_ANGLE, depth, angle, false); - } - - public static double getPKPWaveTravelTime(double depth, double angle){ - return interpolateWaves(travelTable.pkp_travel_table, TauPTravelTable.PKP_MIN_ANGLE, TauPTravelTable.PKP_MAX_ANGLE, depth, angle, false); - } - - private static double getMaxTime(float[][] table) { - return table[0][table[0].length - 1]; - } - - public static double getPWaveTravelAngle(double depth, double timeSeconds) { - if(timeSeconds < 0 || - timeSeconds > getMaxTime(travelTable.p_travel_table)){ - return NO_ARRIVAL; - } - return binarySearchTime((angle) -> getPWaveTravelTime(depth, angle), timeSeconds, 1e-4, - TauPTravelTable.P_S_MIN_ANGLE, TauPTravelTable.P_S_MAX_ANGLE); - } - - public static double getSWaveTravelAngle(double depth, double timeSeconds) { - if(timeSeconds < 0 || timeSeconds > getMaxTime(travelTable.s_travel_table)){ - return NO_ARRIVAL; - } - return binarySearchTime((angle) -> getSWaveTravelTime(depth, angle), timeSeconds, 1e-4, - TauPTravelTable.P_S_MIN_ANGLE, TauPTravelTable.P_S_MAX_ANGLE); - } - - public static double getPKIKPWaveTravelAngle(double depth, double timeSeconds) { - return binarySearchTime((angle) -> getPKIKPWaveTravelTime(depth, angle), timeSeconds, 1e-4, - TauPTravelTable.PKIKP_MIN_ANGLE, TauPTravelTable.PKIKP_MAX_ANGLE); - } - - public static double getPKPWaveTravelAngle(double depth, double timeSeconds) { - return binarySearchTime((angle) -> getPKPWaveTravelTime(depth, angle), timeSeconds, 1e-4, - TauPTravelTable.PKP_MIN_ANGLE, TauPTravelTable.PKP_MAX_ANGLE); - } - - - public static double binarySearchTime(Function func, double target, double epsilon, double minAng, double maxAng) { - double left = minAng; - double right = maxAng; - double midValue = 0; - - while (right - left > epsilon) { - double mid = left + (right - left) / 2.0; - - midValue = func.apply(mid); - if(midValue == NO_ARRIVAL){ - return NO_ARRIVAL; - } - - if (midValue < target) { - left = mid; - } else { - right = mid; - } - } - - if(Math.abs(target - midValue) > 0.5){ - return NO_ARRIVAL; - } - - return (left + right) / 2.0; - } - - - private static double interpolateWaves(float[][] array, double minAng, double maxAng, double depth, double angle, boolean fast) { - double x = (depth / MAX_DEPTH) * (array.length - 1); - double y = ((angle - minAng) / (maxAng - minAng)) * (array[0].length - 1); - if(x < 0 || y < 0 || x > array.length - 1 || y > array[0].length - 1){ - return NO_ARRIVAL; - } - return fast? fastbilinearInterpolation(array, x, y) : bilinearInterpolation(array, x, y); - } - - private static double fastbilinearInterpolation(float[][] array, double x, double y) { - int x0 = (int) x; - int x1 = x0 + 1; - int y0 = (int) y; - int y1 = y0 + 1; - - float q11 = array[x0][y0]; - float q21 = array[x1][y0]; - float q12 = array[x0][y1]; - float q22 = array[x1][y1]; - - double tx = x - x0; - double ty = y - y0; - - return (1 - tx) * (1 - ty) * q11 + tx * (1 - ty) * q21 + (1 - tx) * ty * q12 + tx * ty * q22; - } - - private static double bilinearInterpolation(float[][] array, double x, double y) { - if(x < 0 || y < 0){ - return NO_ARRIVAL; - } - - int x0 = (int) x; - int x1 = x0 == array.length - 1 ? x0 : x0 + 1; - int y0 = (int) y; - int y1 = y0 == array[0].length - 1 ? y0 : y0 + 1; - - if (x1 >= array.length || y1 >= array[0].length) { - return NO_ARRIVAL; - } - - float q11 = array[x0][y0]; - float q21 = array[x1][y0]; - float q12 = array[x0][y1]; - float q22 = array[x1][y1]; - - if (q11 < 0 || q21 < 0 || q12 < 0 || q22 < 0) { - return NO_ARRIVAL; - } - - double tx = x - x0; - double ty = y - y0; - - return (1 - tx) * (1 - ty) * q11 + tx * (1 - ty) * q21 + (1 - tx) * ty * q12 + tx * ty * q22; - } - - public static double toAngle(double km) { - return (km / GeoUtils.EARTH_CIRCUMFERENCE) * 360.0; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/IntensityScale.java b/GlobalQuakeCore/src/main/java/globalquake/core/intensity/IntensityScale.java deleted file mode 100644 index 03a438d..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/IntensityScale.java +++ /dev/null @@ -1,31 +0,0 @@ -package globalquake.core.intensity; - -import java.util.List; - -public interface IntensityScale { - - /** - * @return List of levels sorted from biggest to smallest - */ - List getLevels(); - - String getNameShort(); - @SuppressWarnings("unused") - String getNameLong(); - - double getDarkeningFactor(); - - default Level getLevel(double pga){ - Level result = null; - for(Level level : getLevels()){ - if(pga < level.getPga()){ - return result; - } - - result = level; - } - - return result; - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/IntensityScales.java b/GlobalQuakeCore/src/main/java/globalquake/core/intensity/IntensityScales.java deleted file mode 100644 index 40817a4..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/IntensityScales.java +++ /dev/null @@ -1,16 +0,0 @@ -package globalquake.core.intensity; - - -import globalquake.core.Settings; - -public class IntensityScales { - - private static final IntensityScale SHINDO = new ShindoIntensityScale(); - private static final IntensityScale MMI = new MMIIntensityScale(); - - public static final IntensityScale[] INTENSITY_SCALES = {MMI, SHINDO}; - public static IntensityScale getIntensityScale(){ - int index = Settings.intensityScaleIndex; - return INTENSITY_SCALES[(index < 0 || index >= INTENSITY_SCALES.length) ? 0 : index]; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/IntensityTable.java b/GlobalQuakeCore/src/main/java/globalquake/core/intensity/IntensityTable.java deleted file mode 100644 index 069ed27..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/IntensityTable.java +++ /dev/null @@ -1,115 +0,0 @@ -package globalquake.core.intensity; - -public class IntensityTable { - - private static final int ROWS = 100; // UP TO 100,000km - private static final int COLS = 120; // M-2 - M10 - private static final double[][] TABLE; - private static final double[][] TABLE2; - - static { - TABLE = new double[ROWS][COLS]; - TABLE2 = new double[ROWS][COLS]; - fillTables(); - } - - private static double getDist(double row) { - return 10.0 * (Math.pow(11.0 / 10.0, row) - 1); - } - - private static double getRow(double dist) { - return Math.log10(dist / 10.0 + 1) / Math.log10(11.0 / 10.0); - } - - private static double getMag(double col) { - return -2.0 + col / 10.0; - } - - private static double getCol(double mag) { - return (mag + 2.0) * 10; - } - - private static double getIntensity(double col) { - return 10.0 * (Math.pow(11.5 / 10.0, col) - 1); - } - - private static double getColByIntensity(double intensity) { - return Math.log10(intensity / 10.0 + 1) / Math.log10(11.5 / 10.0); - } - - private static void fillTables() { - long a = System.currentTimeMillis(); - for (int row = 0; row < ROWS; row++) { - for (int col = 0; col < COLS; col++) { - double dist = getDist(row); - double mag = getMag(col); - TABLE[row][col] = maxIntensity(mag, dist); - } - } - for (int row = 0; row < ROWS; row++) { - for (int col = 0; col < COLS; col++) { - double intensity = getIntensity(col); - double mag = searchMag(row, intensity); - TABLE2[row][col] = mag; - } - } - System.out.printf("Intensity tables filled in %s ms.\n", (System.currentTimeMillis() - a)); - } - - private static double searchMag(int row, double intensity) { - // TOO LAZY FOR BINARY SEARCH, WILL BE USED ONLY AT INIT - for (int col = 0; col < COLS; col++) { - double mag = getMag(col); - double _intensity = TABLE[row][col]; - if (_intensity >= intensity) { - return mag; - } - } - return -2; - } - - /** - * @param mag Magnitude - * @param dist 'Geological' distance in KM - * @return Expected intensity - */ - - public static double getMaxIntensity(double mag, double dist) { - double _row = getRow(dist); - double _col = getCol(mag); - return extrapolateVal(_row, _col, TABLE); - } - - private static double extrapolateVal(double _row, double _col, double[][] table) { - int row0 = (int) (Math.max(0, Math.min(ROWS - 2, _row))); - int col0 = (int) (Math.max(0, Math.min(COLS - 2, _col))); - double valAB = table[row0][col0] * (1 - _col % 1.0) + table[row0][col0 + 1] * (_col % 1.0); - double valCD = table[row0 + 1][col0] * (1 - _col % 1.0) + table[row0 + 1][col0 + 1] * (_col % 1.0); - return valAB * (1 - _row % 1.0) + valCD * (_row % 1.0); - } - - /** - * @param dist 'Geological' distance in KM - * @param intensity maxRatio - * @return Magnitude - */ - - public static double getMagnitude(double dist, double intensity) { - double _row = getRow(dist); - double _col = getColByIntensity(intensity); - return extrapolateVal(_row, _col, TABLE2); - } - - private static double maxIntensity(double mag, double dist) { - mag = 1.2 * mag - 0.022 * mag * mag - 1; - if (dist > 1200) { - dist = 1200 + Math.pow(dist - 1200, 0.4) * 22.0; - } - return (Math.pow(15, mag * 0.92 + 4.0)) / (5 * Math.pow(dist, 2.1 + 0.07 * mag) + 1 * Math.pow(5, mag)); - - } - - public static void init() { - getMaxIntensity(0,0); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/Level.java b/GlobalQuakeCore/src/main/java/globalquake/core/intensity/Level.java deleted file mode 100644 index c664ade..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/Level.java +++ /dev/null @@ -1,45 +0,0 @@ -package globalquake.core.intensity; - -import java.awt.*; - -public final class Level { - private final String name; - private final String suffix; - private final double pga; - private final Color color; - - public Level(String name, String suffix, double pga, Color color) { - this.name = name; - this.suffix = suffix; - this.pga = pga; - this.color = color; - } - - public Level(String name, double pga, Color color) { - this.name = name; - this.suffix = ""; - this.pga = pga; - this.color = color; - } - - public String getName() { - return name; - } - - public Color getColor() { - return color; - } - - public double getPga() { - return pga; - } - - public String getSuffix() { - return suffix; - } - - @Override - public String toString() { - return "%s%s".formatted(getName(), getSuffix()); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/MMIIntensityScale.java b/GlobalQuakeCore/src/main/java/globalquake/core/intensity/MMIIntensityScale.java deleted file mode 100644 index d2b8f3f..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/MMIIntensityScale.java +++ /dev/null @@ -1,73 +0,0 @@ -package globalquake.core.intensity; - -import java.awt.*; -import java.util.ArrayList; -import java.util.List; - -@SuppressWarnings("unused") -public class MMIIntensityScale implements IntensityScale{ - - public static final Level I; - - public static final Level II; - - public static final Level III; - - public static final Level IV; - - public static final Level V; - - public static final Level VI; - - public static final Level VII; - - public static final Level VIII; - - public static final Level IX; - - public static final Level X; - public static final Level XI; - public static final Level XII; - private static final List levels = new ArrayList<>(); - - static { - levels.add(I = new Level("I", 0.5, new Color(170,170,170))); // 1 - levels.add(II = new Level("II", 1.0, new Color(200, 190, 240))); // 5 - levels.add(III = new Level("III", 2.1, new Color(132, 162, 232))); // 10 - levels.add(IV = new Level("IV", 5.0, new Color(130, 214, 255))); // 30 - levels.add(V = new Level("V", 10.0, new Color(85, 242, 15))); // 70 - levels.add(VI = new Level("VI", 21.0, new Color(255, 255, 0))); // 140 - levels.add(VII = new Level("VII", 44.0, new Color(255, 200, 0))); // 250 - levels.add(VIII = new Level("VIII", 94.0, new Color(255, 120, 0))); // 500 - levels.add(IX = new Level("IX", 202.0, new Color(255, 0, 0))); // 800 - levels.add(X = new Level("X", 432.0, new Color(190, 0, 0))); // 1000 - levels.add(XI = new Level("XI", 923.0, new Color(130, 0, 0))); // 1300 - levels.add(XII = new Level("XII", 1972.0, new Color(65, 0, 0))); // 2000 - } - - @Override - public List getLevels() { - return levels; - } - - @Override - public String getNameShort() { - return "MMI"; - } - - @Override - public String getNameLong() { - return "Modified Mercalli intensity scale"; - } - - @Override - public double getDarkeningFactor() { - return 0.62; - } - - @Override - public String toString() { - return getNameLong(); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/ShindoIntensityScale.java b/GlobalQuakeCore/src/main/java/globalquake/core/intensity/ShindoIntensityScale.java deleted file mode 100644 index b9b2929..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/intensity/ShindoIntensityScale.java +++ /dev/null @@ -1,58 +0,0 @@ -package globalquake.core.intensity; - -import java.awt.Color; -import java.util.ArrayList; -import java.util.List; - -@SuppressWarnings("unused") -public class ShindoIntensityScale implements IntensityScale{ - - public static final Level ICHI; - public static final Level NI; - public static final Level SAN; - public static final Level YON; - public static final Level GO_JAKU; - public static final Level GO_KYOU; - public static final Level ROKU_JAKU; - public static final Level ROKU_KYOU; - public static final Level NANA; - private static final List levels = new ArrayList<>(); - - static { - levels.add(ICHI = new Level("1", 0.8, new Color(120, 135, 135))); - levels.add(NI = new Level("2", 2.5, new Color(20, 135, 205))); - levels.add(SAN = new Level("3", 8, new Color(19, 154, 76))); - levels.add(YON = new Level("4", 25, new Color(220, 165, 0))); - levels.add(GO_JAKU = new Level("5","-", 80, new Color(241, 138, 46))); - levels.add(GO_KYOU = new Level("5","+", 140, new Color(216, 78, 14))); - levels.add(ROKU_JAKU = new Level("6","-", 250, new Color(235, 26, 0))); - levels.add(ROKU_KYOU = new Level("6","+", 315, new Color(165, 2, 7))); - levels.add(NANA = new Level("7", 400, new Color(150, 0, 150))); - } - - @Override - public List getLevels() { - return levels; - } - - @Override - public String getNameShort() { - return "Shindo"; - } - - @Override - public String getNameLong() { - return "Shindo intensity scale"; - } - - @Override - public double getDarkeningFactor() { - return 0.9; - } - - - @Override - public String toString() { - return getNameLong(); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/regions/Region.java b/GlobalQuakeCore/src/main/java/globalquake/core/regions/Region.java deleted file mode 100644 index 3869fd6..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/regions/Region.java +++ /dev/null @@ -1,12 +0,0 @@ -package globalquake.core.regions; - -import java.awt.geom.Path2D; -import java.awt.geom.Rectangle2D; -import java.util.List; - -import org.geojson.Polygon; - -public record Region(String name, List paths, List bounds, List raws) { - - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/regions/RegionUpdater.java b/GlobalQuakeCore/src/main/java/globalquake/core/regions/RegionUpdater.java deleted file mode 100644 index d3d9aba..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/regions/RegionUpdater.java +++ /dev/null @@ -1,19 +0,0 @@ -package globalquake.core.regions; - -public class RegionUpdater { - - public static final String DEFAULT_REGION = "Pending..."; - - private final Regional target; - - public RegionUpdater(Regional target) { - this.target = target; - if(target.getRegion() == null) { - target.setRegion(DEFAULT_REGION); - } - } - - public void updateRegion() { - target.setRegion(Regions.getRegion(target.getLat(), target.getLon())); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/regions/Regional.java b/GlobalQuakeCore/src/main/java/globalquake/core/regions/Regional.java deleted file mode 100644 index 5164ab6..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/regions/Regional.java +++ /dev/null @@ -1,13 +0,0 @@ -package globalquake.core.regions; - -public interface Regional { - - String getRegion(); - - void setRegion(String newRegion); - - double getLat(); - - double getLon(); - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/regions/Regions.java b/GlobalQuakeCore/src/main/java/globalquake/core/regions/Regions.java deleted file mode 100644 index 3cca1b6..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/regions/Regions.java +++ /dev/null @@ -1,302 +0,0 @@ -package globalquake.core.regions; - -import com.fasterxml.jackson.databind.ObjectMapper; -import globalquake.utils.GeoUtils; -import org.geojson.*; -import org.json.JSONObject; -import org.tinylog.Logger; - -import java.awt.geom.Path2D; -import java.awt.geom.Point2D; -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.net.URL; -import java.util.ArrayList; -import java.util.List; -import java.util.stream.Collectors; - -public class Regions { - public static final String UNKNOWN_REGION = "Unknown Region"; - public static final ArrayList raw_polygonsUHD = new ArrayList<>(); - public static final ArrayList raw_polygonsHD = new ArrayList<>(); - public static final ArrayList raw_polygonsMD = new ArrayList<>(); - public static final ArrayList raw_polygonsHDFiltered = new ArrayList<>(); - public static final ArrayList raw_polygonsUHDFiltered = new ArrayList<>(); - - public static final ArrayList regionsMD = new ArrayList<>(); - public static final ArrayList regionsHD = new ArrayList<>(); - public static final ArrayList regionsUHD = new ArrayList<>(); - public static final ArrayList regionsHDFiltered = new ArrayList<>(); - public static final ArrayList regionsUHDFiltered = new ArrayList<>(); - - public static boolean enabled = true; - public static final ArrayList regionsUS = new ArrayList<>(); - public static final ArrayList raw_polygonsUS = new ArrayList<>(); - - public static final List NONE = List.of(); - public static final ArrayList raw_polygonsAK = new ArrayList<>(); - public static final ArrayList regionsAK = new ArrayList<>(); - public static final ArrayList raw_polygonsJP = new ArrayList<>(); - public static final ArrayList regionsJP = new ArrayList<>(); - - public static final ArrayList raw_polygonsNZ = new ArrayList<>(); - public static final ArrayList regionsNZ = new ArrayList<>(); - public static final ArrayList raw_polygonsHW = new ArrayList<>(); - public static final ArrayList regionsHW = new ArrayList<>(); - - public static final ArrayList raw_polygonsIT = new ArrayList<>(); - public static final ArrayList regionsIT = new ArrayList<>(); - - - private static final ArrayList regionSearchHD = new ArrayList<>(); - - public static void init() throws IOException { - parseGeoJson("polygons/countriesMD.json", raw_polygonsMD, regionsMD, NONE); - parseGeoJson("polygons/countriesHD.json", raw_polygonsHD, regionsHD, NONE); - parseGeoJson("polygons/countriesUHD.json", raw_polygonsUHD, regionsUHD, NONE); - parseGeoJson("polygons/countriesHD.json", raw_polygonsHDFiltered, regionsHDFiltered, List.of("United States", "New Zealand", "Japan")); - parseGeoJson("polygons/countriesUHD.json", raw_polygonsUHDFiltered, regionsUHDFiltered, List.of("United States", "Japan", "New Zealand", "Italy")); - parseGeoJson("polygons_converted/us-albers.geojson", raw_polygonsUS, regionsUS, List.of("Alaska", "Hawaii")); - parseGeoJson("polygons_converted/AK-02-alaska-counties.geojson", raw_polygonsAK, regionsAK, NONE); - parseGeoJson("polygons_converted/jp-prefectures.geojson", raw_polygonsJP, regionsJP, NONE); - parseGeoJson("polygons_converted/new-zealand-districts.geojson", raw_polygonsNZ, regionsNZ, NONE); - parseGeoJson("polygons_converted/hawaii-countries.geojson", raw_polygonsHW, regionsHW, NONE); - parseGeoJson("polygons_converted/italy_provinces.geojson", raw_polygonsIT, regionsIT, NONE); - - for(ArrayList list : List.of(regionsUS, regionsAK, regionsJP, regionsNZ, regionsHW, regionsIT)){ - regionSearchHD.addAll(list); - } - } - - - @SuppressWarnings("EmptyMethod") - public static synchronized void awaitDownload() { - } - - @Deprecated - public static synchronized String downloadRegion(double lat, double lon) { - if (!enabled) { - return UNKNOWN_REGION; - } - try { - String str = String.format("https://www.seismicportal.eu/fe_regions_ws/query?format=json&lat=%f&lon=%f", - lat, lon); - URL url = new URL(str); - BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream())); - - Logger.debug("URL: " + url); - StringBuilder result = new StringBuilder(); - String inputLine; - while ((inputLine = in.readLine()) != null) { - result.append(inputLine); - } - in.close(); - - JSONObject obj = new JSONObject(result.toString()); - return (String) obj.get("name_l"); - } catch (Exception e) { - Logger.error(e); - return UNKNOWN_REGION; - } - } - - public static boolean isOcean(double lat, double lng, boolean uhd) { - return isOcean(lat, lng, uhd ? regionsUHD : regionsHD); - } - - @SuppressWarnings("SameParameterValue") - private static boolean isOcean(double lat, double lng, ArrayList regions) { - Point2D.Double point = new Point2D.Double(lng, lat); - for (Region reg : regions) { - int i = 0; - for (Path2D.Double path : reg.paths()) { - if (reg.bounds().get(i).contains(point)) { - if(path.contains(point)) { - return false; - } - } - i++; - } - } - - return true; - } - - public static String getName(double lat, double lon, List regions){ - Point2D.Double point = new Point2D.Double(lon, lat); - for (Region reg : regions) { - int i = 0; - for (Path2D.Double path : reg.paths()) { - if (reg.bounds().get(i).contains(point)) { - if(path.contains(point)) { - return reg.name(); - } - } - i++; - } - } - - return null; - } - - public static String getExtendedName(double lat, double lon){ - String localName = getName(lat, lon, regionSearchHD); - String globalName = getName(lat, lon, regionsUHD); - - if(localName != null && globalName != null) { - return "%s, %s".formatted(localName, globalName); - } - - if(localName != null){ - return localName; - } - - return globalName; - } - - public static String getRegion(double lat, double lon) { - String extendedName = getExtendedName(lat, lon); - if(extendedName != null){ - return extendedName; - } - - LngLatAlt closestPoint = null; - String closest = "Unknown"; - double closestDistance = Double.MAX_VALUE; - for (Region reg : regionsMD) { - for (Polygon polygon : reg.raws()) { - for (LngLatAlt pos : polygon.getCoordinates().get(0)) { - double dist = GeoUtils.greatCircleDistance(pos.getLatitude(), pos.getLongitude(), lat, lon); - if (dist < closestDistance) { - closestDistance = dist; - closest = reg.name(); - closestPoint = pos; - } - } - } - } - - String closestNameExtended = closest; - - if(closestPoint != null) { - String closestExtended = getExtendedName(closestPoint.getLatitude(), closestPoint.getLongitude()); - if(closestExtended != null){ - closestNameExtended = closestExtended; - } - } - - String name; - if (closestDistance < 200) { - name = "Near The Coast Of " + closestNameExtended; - } else if (closestDistance < 1500) { - name = "Offshore " + closest; - } else { - name = "In the middle of nowhere"; - } - - return name; - } - - public static void main(String[] args) throws Exception{ - System.out.println("INIT"); - init(); - System.out.println("FIND"); - long a = System.currentTimeMillis(); - for(int i = 0; i < 500; i++){ - getRegion(58.79,-150.80); - } - System.out.println(getRegion(33.78,135.74)); - System.err.println(System.currentTimeMillis()-a); - } - - public static void parseGeoJson(String path, ArrayList raw, ArrayList regions, List remove) throws IOException { - URL resource = ClassLoader.getSystemClassLoader().getResource(path); - if (resource == null) { - throw new IOException("Unable to load polygons: %s".formatted(path)); - } - InputStream stream; - FeatureCollection featureCollection = new ObjectMapper().readValue(stream = resource.openStream(), - FeatureCollection.class); - stream.close(); - - for (Feature f : featureCollection.getFeatures()) { - String name = fetchName(f); - if(name == null){ - Logger.error("Error: found polygons with no name in "+path); - } - if (name != null && remove.contains(name)) { - continue; - } - - GeoJsonObject o = f.getGeometry(); - if (o instanceof org.geojson.Polygon) { - Polygon pol = (org.geojson.Polygon) o; - ArrayList paths = new ArrayList<>(); - ArrayList raws = new ArrayList<>(); - - raws.add(pol); - paths.add(toPath(pol)); - - raw.add(pol); - regions.add(new Region(name, paths, paths.stream().map(Path2D.Double::getBounds2D).collect(Collectors.toList()), raws)); - } else if (o instanceof MultiPolygon mp) { - createRegion(regions, mp, name); - - List>> polygons = mp.getCoordinates(); - for (List> polygon : polygons) { - org.geojson.Polygon pol = new org.geojson.Polygon(polygon.get(0)); - raw.add(pol); - } - } - } - } - - private static final String[] NAME_NAMES = {"name_long", "name", "NAME_2", "NAME_1", "NAME"}; - - private static String fetchName(Feature f) { - String name; - for(String str : NAME_NAMES){ - name = f.getProperty(str); - if(name != null){ - return name; - } - } - return null; - } - - private static void createRegion(ArrayList regions, MultiPolygon mp, String name) { - ArrayList paths = new ArrayList<>(); - List>> polygons = mp.getCoordinates(); - ArrayList raws = new ArrayList<>(); - for (List> polygon : polygons) { - org.geojson.Polygon pol = new org.geojson.Polygon(polygon.get(0)); - paths.add(toPath(pol)); - raws.add(pol); - } - regions.add(new Region(name, paths, paths.stream().map(Path2D.Double::getBounds2D).collect(Collectors.toList()), raws)); - } - - private static java.awt.geom.Path2D.Double toPath(Polygon polygon) { - Path2D.Double path = new Path2D.Double(); - - int i = 0; - for (LngLatAlt pos : polygon.getCoordinates().get(0)) { - double x = pos.getLongitude(); - double y = pos.getLatitude(); - - if (i > 0) { - path.lineTo(x, y); - } else { - path.moveTo(x, y); - } - i++; - } - - path.closePath(); - - return path; - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/report/DistanceIntensityRecord.java b/GlobalQuakeCore/src/main/java/globalquake/core/report/DistanceIntensityRecord.java deleted file mode 100644 index b74508a..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/report/DistanceIntensityRecord.java +++ /dev/null @@ -1,13 +0,0 @@ -package globalquake.core.report; - -public class DistanceIntensityRecord{ - final double mag; - final double dist; - final double intensity; - - public DistanceIntensityRecord(double mag, double dist, double intensity) { - this.mag=mag; - this.dist=dist; - this.intensity=intensity; - } -} \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/report/EarthquakeReporter.java b/GlobalQuakeCore/src/main/java/globalquake/core/report/EarthquakeReporter.java deleted file mode 100644 index 7a6f2fa..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/report/EarthquakeReporter.java +++ /dev/null @@ -1,177 +0,0 @@ -package globalquake.core.report; - -import globalquake.core.GlobalQuake; -import globalquake.core.regions.Regions; -import globalquake.core.station.AbstractStation; -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.analysis.Event; -import globalquake.utils.GeoUtils; -import globalquake.utils.Scale; -import org.geojson.LngLatAlt; -import org.tinylog.Logger; - -import javax.imageio.ImageIO; -import java.awt.*; -import java.awt.geom.Ellipse2D; -import java.awt.geom.Line2D; -import java.awt.image.BufferedImage; -import java.io.File; -import java.io.IOException; -import java.time.Instant; -import java.time.ZoneId; -import java.time.format.DateTimeFormatter; -import java.util.ArrayList; - -public class EarthquakeReporter { - public static final File ANALYSIS_FOLDER = new File(GlobalQuake.instance.getMainFolder(), "/events/"); - private static final DateTimeFormatter fileFormat = DateTimeFormatter.ofPattern("yyyy_MM_dd_HH_mm_ss").withZone(ZoneId.systemDefault()); - private static double centerLat = 49.7; - private static double centerLon = 15.65; - private static double scroll = 8; - private static final int width = 600; - private static final int height = 600; - - private static final Color oceanC = new Color(7, 37, 48); - private static final Color landC = new Color(15, 47, 68); - private static final Color borderC = new Color(153, 153, 153); - - public static void report(Earthquake earthquake) { - File folder = new File(ANALYSIS_FOLDER, String.format("M%2.2f_%s_%s", earthquake.getMag(), - earthquake.getRegion().replace(' ', '_'), fileFormat.format(Instant.ofEpochMilli(earthquake.getOrigin())) + "/")); - if (!folder.exists()) { - if(!folder.mkdirs()){ - return; - } - } - - for (Event e : earthquake.getCluster().getAssignedEvents().values()) { - AbstractStation station = e.getAnalysis().getStation(); - e.report = new StationReport(station.getNetworkCode(), station.getStationCode(), - station.getChannelName(), station.getLocationCode(), station.getLatitude(), station.getLongitude(), - station.getAlt()); - } - - drawMap(folder, earthquake); - drawIntensities(folder, earthquake); - } - - private static void calculatePos(Earthquake earthquake) { - centerLat = earthquake.getLat(); - centerLon = earthquake.getLon(); - scroll = 2; - } - - private static void drawIntensities(File folder, Earthquake earthquake) { - int w = 800; - int h = 600; - BufferedImage img = new BufferedImage(w, h, BufferedImage.TYPE_3BYTE_BGR); - Graphics2D g = img.createGraphics(); - - ArrayList recs = new ArrayList<>(); - for (Event event : earthquake.getCluster().getAssignedEvents().values()) { - double lat = event.report.lat(); - double lon = event.report.lon(); - double distGE = GeoUtils.geologicalDistance(earthquake.getLat(), earthquake.getLon(), - -earthquake.getDepth(), lat, lon, event.report.alt() / 1000.0); - recs.add(new DistanceIntensityRecord(0, distGE, event.maxRatio)); - } - - IntensityGraphs.drawGraph(g, w, h, recs); - - g.dispose(); - try { - ImageIO.write(img, "PNG", new File(folder, "intensities.png")); - } catch (IOException e) { - Logger.error(e); - } - } - - private static void drawMap(File folder, Earthquake earthquake) { - calculatePos(earthquake); - BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE_3BYTE_BGR); - Graphics2D g = img.createGraphics(); - g.setColor(oceanC); - g.fillRect(0, 0, width, height); - - ArrayList pols = scroll < 0.6 ? Regions.raw_polygonsUHD - : scroll < 4.8 ? Regions.raw_polygonsHD : Regions.raw_polygonsMD; - for (org.geojson.Polygon polygon : pols) { - java.awt.Polygon awt = new java.awt.Polygon(); - boolean add = false; - for (LngLatAlt pos : polygon.getCoordinates().get(0)) { - double x = getX(pos.getLongitude()); - double y = getY(pos.getLatitude()); - - if (!add && isOnScreen(x, y)) { - add = true; - } - awt.addPoint((int) x, (int) y); - } - if (add) { - g.setColor(landC); - g.fill(awt); - g.setColor(borderC); - g.draw(awt); - } - } - - { - double x = getX(earthquake.getLon()); - double y = getY(earthquake.getLat()); - double r = 12; - Line2D.Double line1 = new Line2D.Double(x - r, y - r, x + r, y + r); - Line2D.Double line2 = new Line2D.Double(x - r, y + r, x + r, y - r); - g.setColor(Color.white); - g.setStroke(new BasicStroke(8f)); - g.draw(line1); - g.draw(line2); - g.setColor(Color.orange); - g.setStroke(new BasicStroke(6f)); - g.draw(line1); - g.draw(line2); - } - - g.setStroke(new BasicStroke(1f)); - for (Event event : earthquake.getCluster().getAssignedEvents().values()) { - double x = getX(event.report.lon()); - double y = getY(event.report.lat()); - double r = 12; - g.setColor(Scale.getColorRatio(event.getMaxRatio())); - Ellipse2D.Double ell1 = new Ellipse2D.Double(x - r / 2, y - r / 2, r, r); - g.fill(ell1); - } - - g.dispose(); - File file = new File(folder, "map.png"); - try { - ImageIO.write(img, "PNG", file); - } catch (IOException e) { - Logger.error(e); - } - } - - private static boolean isOnScreen(double x, double y) { - return x >= 0 && y >= 0 && x < width && y < height; - } - - private static double getX(double lon) { - return (lon - centerLon) / (scroll / 100.0) + (width * 0.5); - } - - private static double getY(double lat) { - return (centerLat - lat) / (scroll / (300 - 200 * Math.cos(0.5 * Math.toRadians(centerLat + lat)))) - + (height * 0.5); - } - - @SuppressWarnings("unused") - private static double getLat(double y) { - return centerLat - (y - (height * 0.5)) * (scroll / (300 - 200 * Math.cos(Math.toRadians(centerLat)))); - - } - - @SuppressWarnings("unused") - private static double getLon(double x) { - return (x - (width * 0.5)) * (scroll / 100.0) + centerLon; - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/report/IntensityGraphs.java b/GlobalQuakeCore/src/main/java/globalquake/core/report/IntensityGraphs.java deleted file mode 100644 index 9e8f3f2..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/report/IntensityGraphs.java +++ /dev/null @@ -1,150 +0,0 @@ -package globalquake.core.report; - -import globalquake.core.Settings; -import globalquake.core.intensity.IntensityTable; -import globalquake.utils.Scale; - -import java.awt.BasicStroke; -import java.awt.Color; -import java.awt.Font; -import java.awt.Graphics2D; -import java.awt.geom.Line2D; -import java.awt.image.BufferedImage; -import java.io.File; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; - -import javax.imageio.ImageIO; - -public class IntensityGraphs { - - public static void main(String[] args) throws IOException { - Scale.load(); - int w = 800; - int h = 600; - BufferedImage img = new BufferedImage(w, h, BufferedImage.TYPE_3BYTE_BGR); - Graphics2D g = img.createGraphics(); - - List recs = new ArrayList<>(); - recs.add(new DistanceIntensityRecord(5.7,800,200)); - recs.add(new DistanceIntensityRecord(5.7,300,5000)); - recs.add(new DistanceIntensityRecord(4.2,200,1000)); - recs.add(new DistanceIntensityRecord(4.2,500,50)); - recs.add(new DistanceIntensityRecord(3.8,100,1000)); - recs.add(new DistanceIntensityRecord(3.8,330,100)); - recs.add(new DistanceIntensityRecord(3.8,800,10)); - recs.add(new DistanceIntensityRecord(3.1,82,200)); - recs.add(new DistanceIntensityRecord(2.1,10,1000)); - recs.add(new DistanceIntensityRecord(2.1,50,30)); - - recs.add(new DistanceIntensityRecord(5.5,7000,5)); - recs.add(new DistanceIntensityRecord(6.5,7000,50)); - - recs.add(new DistanceIntensityRecord(6.9,800,1000)); - recs.add(new DistanceIntensityRecord(6.9,1100,300)); - recs.add(new DistanceIntensityRecord(5.5,3000,40)); - recs.add(new DistanceIntensityRecord(5.0,3000,40)); - recs.add(new DistanceIntensityRecord(5.0,9000,30)); - - drawGraph(g, w, h, recs); - ImageIO.write(img, "PNG", new File("aaa9.png")); - - System.out.printf("M5.7 800km: %s / 200\n", (int) IntensityTable.getMaxIntensity(5.7, 800)); - System.out.printf("M5.7 300km: %s / 5000\n", (int) IntensityTable.getMaxIntensity(5.7, 300)); - - System.out.printf("M4.2 200km: %s / 1000\n", (int) IntensityTable.getMaxIntensity(4.2, 200)); - - System.out.printf("M4.2 500km: %s / 50\n", (int) IntensityTable.getMaxIntensity(4.2, 500)); - - System.out.printf("M3.8 100km: %s / 1000\n", (int) IntensityTable.getMaxIntensity(3.8, 100)); - System.out.printf("M3.8 330km: %s / 100\n", (int) IntensityTable.getMaxIntensity(3.8, 330)); - System.out.printf("M3.8 800km: %s / 10\n", (int) IntensityTable.getMaxIntensity(3.8, 800)); - - System.out.printf("M3.1 82km: %s / 200\n", (int) IntensityTable.getMaxIntensity(3.1, 82)); - } - - public static final BasicStroke dashed = new BasicStroke(1, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL, 0, - new float[] { 3 }, 0); - private static final Font calibri14 = new Font("Calibri", Font.BOLD, 14); - - public static void drawGraph(Graphics2D g, int w, int h, List recs) { - int wry = 20; - int wrx; - g.setFont(new Font("Calibri", Font.BOLD, 14)); - wrx = g.getFontMetrics().stringWidth("10e-1") + 6; - g.setColor(Color.white); - g.fillRect(0, 0, w, h); - g.setColor(Color.black); - g.drawRect(0, 0, w - 1, h - 1); - g.drawRect(wrx, 0, w - wrx, -wry); - for (int p = 0; p <= 4; p++) { - for (int n = 1; n < 10; n++) { - double dist = n * Math.pow(10, p); - double x = wrx + (Math.log10(dist) / 5) * (w - wrx); - g.setColor(n == 1 ? Color.black : Color.blue); - g.setStroke(n == 1 ? new BasicStroke(2) : dashed); - g.draw(new Line2D.Double(x, 0, x, h - wry)); - if (n == 1) { - g.setColor(Color.black); - g.setFont(calibri14); - String str = Settings.getSelectedDistanceUnit().format(dist, 1); - int width = g.getFontMetrics().stringWidth(str); - g.drawString(str, (int) (x - width * 0.5), h - wry + 15); - } - } - } - - double maxMag = Math.pow(10, 8); - - int maxP = (int) Math.ceil(Math.log10(maxMag)); - for (int p = 0; p <= maxP; p++) { - for (int n = 1; n < 10; n++) { - double mag = n * Math.pow(10, p - 1); - double y = (h - wry) - (h - wry) * (Math.log10(mag * 10) / (maxP + 1)); - g.setColor(n == 1 ? Color.black : Color.blue); - g.setStroke(n == 1 ? new BasicStroke(2) : dashed); - g.draw(new Line2D.Double(wrx, y, w, y)); - if (n == 1) { - g.setColor(Color.black); - g.setFont(new Font("Calibri", Font.BOLD, 14)); - String str = "10e" + p; - int width = g.getFontMetrics().stringWidth(str); - g.drawString(str, wrx - width - 3, (int) (y + 4)); - } - } - } - - for (int mag = -10; mag <= 100; mag += 1) { - for (double dist1 = 1; dist1 <= 100000; dist1 *= 2) { - double dist2 = dist1 * 2; - double x1 = wrx + (Math.log10(dist1) / 5) * (w - wrx); - double x2 = wrx + (Math.log10(dist2) / 5) * (w - wrx); - double v1 = IntensityTable.getMaxIntensity(mag/10.0, dist1); - double v2 = IntensityTable.getMaxIntensity(mag/10.0, dist2); - double y1 = (h - wry) - (h - wry) * ((Math.log10(v1)) / (maxP + 1)); - double y2 = (h - wry) - (h - wry) * ((Math.log10(v2)) / (maxP + 1)); - if (y2 < h - wry) { - double fakeMag = IntensityTable.getMagnitude(dist1, v1); - g.setColor(Scale.getColorEasily((fakeMag+1)/10.0)); - g.setStroke(new BasicStroke(mag%10 == 0 ? 4f:1f)); - g.draw(new Line2D.Double(x1, y1, x2, y2)); - } - } - } - - - - - for(DistanceIntensityRecord rec:recs) { - double x = wrx + (Math.log10(rec.dist) / 5) * (w - wrx); - double y = (h - wry) - (h - wry) * ((Math.log10(rec.intensity)) / (maxP + 1)); - g.setColor(Scale.getColorEasily((rec.mag+1)/10.0)); - - g.setStroke(new BasicStroke(3f)); - double r = 4; - g.draw(new Line2D.Double(x-r, y-r, x+r, y+r)); - g.draw(new Line2D.Double(x-r, y+r, x+r, y-r)); - } - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/report/StationReport.java b/GlobalQuakeCore/src/main/java/globalquake/core/report/StationReport.java deleted file mode 100644 index 951dd20..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/report/StationReport.java +++ /dev/null @@ -1,12 +0,0 @@ -package globalquake.core.report; - -import java.io.Serial; -import java.io.Serializable; - -public record StationReport(String networkCode, String stationCode, String channelName, String locationCode, double lat, - double lon, double alt) implements Serializable { - - @Serial - private static final long serialVersionUID = -8686117122281460600L; - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/station/AbstractStation.java b/GlobalQuakeCore/src/main/java/globalquake/core/station/AbstractStation.java deleted file mode 100644 index 5327748..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/station/AbstractStation.java +++ /dev/null @@ -1,188 +0,0 @@ -package globalquake.core.station; - -import globalquake.core.analysis.Analysis; -import globalquake.core.analysis.BetterAnalysis; -import globalquake.core.analysis.Event; -import globalquake.core.database.SeedlinkNetwork; - -import java.util.ArrayList; -import java.util.Deque; -import java.util.concurrent.ConcurrentLinkedDeque; -import java.util.concurrent.LinkedBlockingDeque; - -public abstract class AbstractStation { - - public static final long INTERVAL_STORAGE_TIME = 30 * 60 * 1000; - public static final long INTERVAL_MAX_GAP = 5 * 1000; - - private static final int RATIO_HISTORY_SECONDS = 60; - private final String networkCode; - private final String stationCode; - private final String channelName; - private final String locationCode; - private final double lat; - private final double lon; - private final double alt; - private final BetterAnalysis analysis; - private final int id; - private final SeedlinkNetwork seedlinkNetwork; - - private final Deque ratioHistory = new LinkedBlockingDeque<>(); - public boolean disabled = false; - private ArrayList nearbyStations; - - private final Deque intervals = new ConcurrentLinkedDeque<>(); - - public AbstractStation(String networkCode, String stationCode, String channelName, - String locationCode, double lat, double lon, double alt, - int id, SeedlinkNetwork seedlinkNetwork) { - this.networkCode = networkCode; - this.stationCode = stationCode; - this.channelName = channelName; - this.locationCode = locationCode; - this.lat = lat; - this.lon = lon; - this.alt = alt; - this.analysis = new BetterAnalysis(this); - this.id = id; - this.seedlinkNetwork = seedlinkNetwork; - } - - public StationState getStateAt(long time) { - for(StationInterval interval : intervals) { - if(time >= interval.getStart() && time < interval.getEnd()){ - return interval.getState(); - } - } - return StationState.UNKNOWN; - } - - public Event getEventAt(long time, long tolerance){ - if(getAnalysis() == null){ - return null; - } - - for(Event event : getAnalysis().getDetectedEvents()){ - if(!event.isValid()){ - continue; - } - if(time >= event.getpWave() - tolerance && (!event.hasEnded() || time < event.getEnd() - tolerance)){ - return event; - } - } - - return null; - } - - public void reportState(StationState state, long time) { - while(intervals.peekFirst() != null && time - intervals.peekFirst().getEnd() > INTERVAL_STORAGE_TIME){ - intervals.removeFirst(); - } - StationInterval lastInterval = getIntervals().peekLast(); - if(lastInterval == null){ - getIntervals().add(new StationInterval(time, time, state)); - return; - } - - if(time - lastInterval.getEnd() > INTERVAL_MAX_GAP){ - getIntervals().add(new StationInterval(time, time, state)); - return; - } - - lastInterval.setEnd(time); - - if(lastInterval.getState() != state){ - getIntervals().add(new StationInterval(time, time, state)); - } - } - - public Deque getIntervals() { - return intervals; - } - - public double getAlt() { - return alt; - } - - public String getChannelName() { - return channelName; - } - - public double getLatitude() { - return lat; - } - - public String getLocationCode() { - return locationCode; - } - - public double getLongitude() { - return lon; - } - - public String getNetworkCode() { - return networkCode; - } - - public String getStationCode() { - return stationCode; - } - - public Analysis getAnalysis() { - return analysis; - } - - @SuppressWarnings("BooleanMethodIsAlwaysInverted") - public boolean hasData() { - return getDelayMS() != -1 && getDelayMS() < 5 * 60 * 1000; - } - - public boolean hasNoDisplayableData() { return true; } - - public long getDelayMS() { return 0;} - - public void second(long time) { - if (getAnalysis()._maxRatio > 0) { - ratioHistory.add(getAnalysis()._maxRatio); - getAnalysis()._maxRatioReset = true; - - if (ratioHistory.size() >= RATIO_HISTORY_SECONDS) { - ratioHistory.remove(); - } - } - - getAnalysis().second(time); - } - - public double getMaxRatio60S() { - var opt = ratioHistory.stream().max(Double::compareTo); - return opt.orElse(0.0); - } - - public void reset() { - ratioHistory.clear(); - } - - public int getId() { - return id; - } - - public void setNearbyStations(ArrayList nearbyStations) { - this.nearbyStations = nearbyStations; - } - - public ArrayList getNearbyStations() { - return nearbyStations; - } - - public void analyse() {} - - public SeedlinkNetwork getSeedlinkNetwork() { - return seedlinkNetwork; - } - - @Override - public String toString() { - return "%s %s %s %s".formatted(getNetworkCode(), getStationCode(), getChannelName(), getLocationCode()); - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/station/GlobalStation.java b/GlobalQuakeCore/src/main/java/globalquake/core/station/GlobalStation.java deleted file mode 100644 index b26131f..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/station/GlobalStation.java +++ /dev/null @@ -1,86 +0,0 @@ -package globalquake.core.station; - -import edu.sc.seis.seisFile.mseed.DataRecord; -import globalquake.core.GlobalQuake; -import globalquake.core.database.SeedlinkNetwork; - -import java.time.Instant; -import java.time.temporal.ChronoUnit; -import java.util.Comparator; -import java.util.SortedSet; -import java.util.TreeSet; - -public class GlobalStation extends AbstractStation { - - private static final long MAX_STRETCH_SECONDS = 60; - private final Object recordsQueueLock = new Object(); - - private final SortedSet records; - - private Instant nextExpectedLog = null; - - public GlobalStation(String networkCode, String stationCode, String channelName, - String locationCode, double lat, double lon, double alt, - int id, SeedlinkNetwork seedlinkNetwork) { - super(networkCode, stationCode, channelName, locationCode, lat, lon, alt, id, seedlinkNetwork); - this.records = new TreeSet<>(Comparator.comparing(dataRecord -> dataRecord.getStartBtime().toInstant().toEpochMilli())); - } - - public void addRecord(DataRecord dr) { - synchronized (recordsQueueLock) { - records.add(dr); - } - } - - @Override - public void analyse() { - synchronized (recordsQueueLock){ - while(!records.isEmpty()){ - DataRecord oldest = records.first(); - - Instant startTime = oldest.getStartBtime().toInstant(); - - if(nextExpectedLog == null){ - records.remove(oldest); - process(oldest); - continue; - } - - if(Math.abs(ChronoUnit.MILLIS.between(startTime, nextExpectedLog)) < 60) { - records.remove(oldest); - process(oldest); - }else if(startTime.isBefore(nextExpectedLog)){ - records.remove(oldest); - } else { - long gapSeconds = nextExpectedLog.until(startTime, ChronoUnit.SECONDS); - long stretchSeconds = startTime.until(records.last().getPredictedNextStartBtime().toInstant(), ChronoUnit.SECONDS); - if(gapSeconds > MAX_STRETCH_SECONDS || stretchSeconds > MAX_STRETCH_SECONDS){ - records.remove(oldest); - process(oldest); - continue; - } - - break; - } - } - } - } - - private void process(DataRecord record) { - nextExpectedLog = record.getPredictedNextStartBtime().toInstant(); - getAnalysis().analyse(record); - GlobalQuake.instance.getSeedlinkReader().logRecord(record.getLastSampleBtime().toInstant().toEpochMilli()); - } - - @Override - public boolean hasNoDisplayableData() { - return !hasData() || getAnalysis().getNumRecords() < 3; - } - - @Override - public long getDelayMS() { - return getAnalysis().getLastRecord() == 0 ? -1 : System.currentTimeMillis() - getAnalysis().getLastRecord(); - } - - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/station/GlobalStationManager.java b/GlobalQuakeCore/src/main/java/globalquake/core/station/GlobalStationManager.java deleted file mode 100644 index 6e60b91..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/station/GlobalStationManager.java +++ /dev/null @@ -1,122 +0,0 @@ -package globalquake.core.station; - -import globalquake.core.database.Channel; -import globalquake.core.database.Network; -import globalquake.core.database.Station; -import globalquake.core.database.StationDatabaseManager; -import globalquake.utils.GeoUtils; -import org.tinylog.Logger; - -import java.util.ArrayList; -import java.util.Comparator; -import java.util.List; -import java.util.concurrent.atomic.AtomicInteger; - -public class GlobalStationManager { - - private final List stations = new ArrayList<>(); - - private static final int RAYS = 9; - - private final AtomicInteger nextID = new AtomicInteger(0); - - public void initStations(StationDatabaseManager databaseManager) { - if(databaseManager == null){ - return; - } - stations.clear(); - nextID.set(0); - databaseManager.getStationDatabase().getDatabaseReadLock().lock(); - try { - for (Network n : databaseManager.getStationDatabase().getNetworks()) { - for (Station s : n.getStations()) { - if(s.getSelectedChannel() == null || s.getSelectedChannel().selectBestSeedlinkNetwork() == null){ - continue; - } - s.getSelectedChannel().selectBestSeedlinkNetwork().selectedStations++; - GlobalStation station = createGlobalStation(s, s.getSelectedChannel()); - stations.add(station); - } - } - } finally { - databaseManager.getStationDatabase().getDatabaseReadLock().unlock(); - } - - createListOfClosestStations(stations); - Logger.info("Initialized " + stations.size() + " Stations."); - } - - public static void createListOfClosestStations(List stations) { - for (AbstractStation stat : stations) { - ArrayList> rays = new ArrayList<>(); - for (int i = 0; i < RAYS; i++) { - rays.add(new ArrayList<>()); - } - int num = 0; - for (int i = 0; i < 2; i++) { - for (AbstractStation stat2 : stations) { - if (!(stat2.getId() == stat.getId())) { - double dist = GeoUtils.greatCircleDistance(stat.getLatitude(), stat.getLongitude(), stat2.getLatitude(), - stat2.getLongitude()); - if (dist > (i == 0 ? 1200 : 3600)) { - continue; - } - double ang = GeoUtils.calculateAngle(stat.getLatitude(), stat.getLongitude(), stat2.getLatitude(), - stat2.getLongitude()); - int ray = (int) ((ang / 360.0) * (RAYS - 1.0)); - rays.get(ray).add(new StationDistanceInfo(stat2.getId(), dist, ang)); - int ray2 = ray + 1; - if (ray2 == RAYS) { - ray2 = 0; - } - int ray3 = ray - 1; - if (ray3 == -1) { - ray3 = RAYS - 1; - } - rays.get(ray2).add(new StationDistanceInfo(stat2.getId(), dist, ang)); - rays.get(ray3).add(new StationDistanceInfo(stat2.getId(), dist, ang)); - num++; - } - } - if (num > 4) { - break; - } - } - ArrayList closestStations = new ArrayList<>(); - ArrayList nearbys = new ArrayList<>(); - for (int i = 0; i < RAYS; i++) { - if (!rays.get(i).isEmpty()) { - rays.get(i).sort(Comparator.comparing(StationDistanceInfo::dist)); - for (int j = 0; j <= Math.min(1, rays.get(i).size() - 1); j++) { - if (!closestStations.contains(rays.get(i).get(j).id)) { - closestStations.add(rays.get(i).get(j).id); - nearbys.add(new NearbyStationDistanceInfo(getStationById(stations, rays.get(i).get(j).id), - rays.get(i).get(j).dist, rays.get(i).get(j).ang)); - } - } - } - } - stat.setNearbyStations(nearbys); - } - } - - private GlobalStation createGlobalStation(Station station, Channel ch) { - return new GlobalStation(station.getNetwork().getNetworkCode().toUpperCase(), - station.getStationCode().toUpperCase(), ch.getCode().toUpperCase(), ch.getLocationCode().toUpperCase(), - ch.getLatitude(), ch.getLongitude(), ch.getElevation(), - nextID.getAndIncrement(), ch.selectBestSeedlinkNetwork()); - } - - public List getStations() { - return stations; - } - - public static AbstractStation getStationById(List stations, int id) { - return stations.get(id); - } - - record StationDistanceInfo(int id, double dist, double ang) { - - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/station/NearbyStationDistanceInfo.java b/GlobalQuakeCore/src/main/java/globalquake/core/station/NearbyStationDistanceInfo.java deleted file mode 100644 index 7921712..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/station/NearbyStationDistanceInfo.java +++ /dev/null @@ -1,6 +0,0 @@ -package globalquake.core.station; - -public record NearbyStationDistanceInfo(AbstractStation station, double dist, double angle) { - - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/station/StationInterval.java b/GlobalQuakeCore/src/main/java/globalquake/core/station/StationInterval.java deleted file mode 100644 index ac68035..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/station/StationInterval.java +++ /dev/null @@ -1,40 +0,0 @@ -package globalquake.core.station; - -public class StationInterval { - - private final StationState state; - - private final long start; - private long end; - - public StationInterval(long start, long end, StationState state){ - this.start = start; - this.end = end; - this.state = state; - } - - public StationState getState() { - return state; - } - - public void setEnd(long end) { - this.end = end; - } - - public long getStart() { - return start; - } - - public long getEnd() { - return end; - } - - @Override - public String toString() { - return "StationInterval{" + - "state=" + state + - ", start=" + start + - ", end=" + end + - '}'; - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/station/StationState.java b/GlobalQuakeCore/src/main/java/globalquake/core/station/StationState.java deleted file mode 100644 index 559b841..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/station/StationState.java +++ /dev/null @@ -1,7 +0,0 @@ -package globalquake.core.station; - -public enum StationState { - - ACTIVE, INACTIVE, UNKNOWN - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/training/ClusterAnalysisTraining.java b/GlobalQuakeCore/src/main/java/globalquake/core/training/ClusterAnalysisTraining.java deleted file mode 100644 index 24d6fb9..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/training/ClusterAnalysisTraining.java +++ /dev/null @@ -1,316 +0,0 @@ -package globalquake.core.training; - -import globalquake.core.Settings; -import globalquake.core.analysis.Event; -import globalquake.core.earthquake.ClusterAnalysis; -import globalquake.core.earthquake.EarthquakeAnalysis; -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.geo.taup.TauPTravelTimeCalculator; -import globalquake.core.intensity.IntensityTable; -import globalquake.core.regions.Regions; -import globalquake.core.station.AbstractStation; -import globalquake.core.station.GlobalStationManager; -import globalquake.utils.GeoUtils; - -import java.util.*; -import java.util.concurrent.CopyOnWriteArrayList; -import java.util.concurrent.atomic.AtomicInteger; - -@SuppressWarnings("unused") -public class ClusterAnalysisTraining { - - private static final int MINUTE = 1000 * 60; - - private static final boolean PKIKP = false; - private static final boolean P = true; - - static class SimulatedStation extends AbstractStation { - - public static final AtomicInteger nextId = new AtomicInteger(); - - public double sensitivityMultiplier = 1; - - public final List passedPWaves = new ArrayList<>(); - public final List passedPKIKPWaves = new ArrayList<>(); - - public SimulatedStation(double lat, double lon, double alt) { - super("", "", "", "", lat, lon, alt, nextId.getAndIncrement(), null); - } - - } - - @SuppressWarnings("unused") - static final class SimulatedEarthquake { - private final double lat; - private final double lon; - private final double depth; - private final long origin; - private final double mag; - - public long maxError = Long.MAX_VALUE; - - SimulatedEarthquake(double lat, double lon, double depth, long origin, double mag) { - this.lat = lat; - this.lon = lon; - this.depth = depth; - this.origin = origin; - this.mag = mag; - } - - public double lat() { - return lat; - } - - public double lon() { - return lon; - } - - public double depth() { - return depth; - } - - public long origin() { - return origin; - } - - public double mag() { - return mag; - } - - @Override - public boolean equals(Object obj) { - if (obj == this) return true; - if (obj == null || obj.getClass() != this.getClass()) return false; - var that = (SimulatedEarthquake) obj; - return Double.doubleToLongBits(this.lat) == Double.doubleToLongBits(that.lat) && - Double.doubleToLongBits(this.lon) == Double.doubleToLongBits(that.lon) && - Double.doubleToLongBits(this.depth) == Double.doubleToLongBits(that.depth) && - this.origin == that.origin && - Double.doubleToLongBits(this.mag) == Double.doubleToLongBits(that.mag); - } - - @Override - public int hashCode() { - return Objects.hash(lat, lon, depth, origin, mag); - } - - @Override - public String toString() { - return "SimulatedEarthquake{" + - "lat=" + lat + - ", lon=" + lon + - ", depth=" + depth + - ", origin=" + origin + - ", mag=" + mag + - ", maxError=" + maxError + - '}'; - } - } - - private static final long INACCURACY = 2000; - - public static void main(String[] args) throws Exception { - System.out.println("Init..."); - TauPTravelTimeCalculator.init(); - Regions.enabled = false; - Settings.parallelHypocenterLocations = true; - Settings.hypocenterDetectionResolution = 40.0; - Settings.maxEvents = 30; - - System.out.println("Running"); - for(int i = 0; i < 1; i++) { - SimulatedStation.nextId.set(0); - long a = System.currentTimeMillis(); - runTest(5000); - System.err.printf("\nTest itself took %.1f seconds%n", (System.currentTimeMillis() - a) / 1000.0); - Thread.sleep(2000); - } - } - - public static void runTest(int numStations) { - long time = 0; - long maxTime = 21 * MINUTE; - long step = 1000; - - Random r = new Random(0); - - List stations = new ArrayList<>(); - - double maxDist = 180; - - for(int i = 0; i < numStations; i++){ - double dist = r.nextDouble() * maxDist / 360.0 * GeoUtils.EARTH_CIRCUMFERENCE; - double[] vals = GeoUtils.moveOnGlobe(0, 0, dist, r.nextDouble() * 360.0); - - SimulatedStation simulatedStation = new SimulatedStation(vals[0], vals[1], 0); - simulatedStation.sensitivityMultiplier = Math.pow(r.nextDouble(), 2); - - stations.add(simulatedStation); - } - - GlobalStationManager.createListOfClosestStations(stations); - - List earthquakes = new CopyOnWriteArrayList<>(); - - ClusterAnalysis clusterAnalysis = new ClusterAnalysis(earthquakes, stations); - EarthquakeAnalysis earthquakeAnalysis = new EarthquakeAnalysis(clusterAnalysis, earthquakes); - - System.out.println("Init done with "+stations.size()+" stations"); - - int notDetected = 0; - int oneDetected = 0; - int tooManyDetected = 0; - - long errSum = 0; - long errC = 0; - List errs = new ArrayList<>(); - - int maxQuakes = 0; - int maxClusters = 0; - - int simulatedQuakesCount = 0; - - List simulatedEarthquakes = new ArrayList<>(); - List allSimulatedEarthquakes = new ArrayList<>(); - - int MAX_QUAKES = 10; - - while (simulatedQuakesCount < MAX_QUAKES) { - - if(allSimulatedEarthquakes.size() < MAX_QUAKES && r.nextDouble() < 0.2){ - double dist = r.nextDouble() * maxDist / 360.0 * GeoUtils.EARTH_CIRCUMFERENCE; - double[] vals = GeoUtils.moveOnGlobe(0, 0, dist, r.nextDouble() * 360.0); - double depth = r.nextDouble() * 600.0; - double mag = 5.0 + r.nextDouble() * 4.0; - - SimulatedEarthquake earthquake = new SimulatedEarthquake(vals[0], vals[1], depth, time, mag); - simulatedEarthquakes.add(earthquake); - allSimulatedEarthquakes.add(earthquake); - } - - for(SimulatedEarthquake simulatedEarthquake : simulatedEarthquakes){ - for(Earthquake earthquake : earthquakes){ - double rawP = TauPTravelTimeCalculator.getPWaveTravelTime(simulatedEarthquake.depth, 0); - if(rawP == TauPTravelTimeCalculator.NO_ARRIVAL){ - continue; - } - long expectedArrival = (long) (simulatedEarthquake.origin + 1000 * rawP); - - double rawPA = TauPTravelTimeCalculator.getPWaveTravelTime(earthquake.getDepth(), 0); - if(rawPA == TauPTravelTimeCalculator.NO_ARRIVAL){ - continue; - } - - long actualArrival = (long) (earthquake.getOrigin() + 1000 * rawPA); - - - long err = Math.abs(expectedArrival - actualArrival); - if(err < simulatedEarthquake.maxError){ - simulatedEarthquake.maxError = err; - } - } - } - - for (Iterator iterator = simulatedEarthquakes.iterator(); iterator.hasNext(); ) { - SimulatedEarthquake earthquake = iterator.next(); - if (time - earthquake.origin > 1000 * 60 * 30) { - iterator.remove(); - simulatedQuakesCount++; - } - } - - createEvents(stations, simulatedEarthquakes, time, r); - - clusterAnalysis.run(); - earthquakeAnalysis.run(); - - System.out.printf("time passed: %.2f%n", time / 1000.0); - - if(clusterAnalysis.getClusters().isEmpty()){ - notDetected++; - } else if(clusterAnalysis.getClusters().size() == 1){ - oneDetected++; - } else { - tooManyDetected++; - } - - if(earthquakes.size() > maxQuakes){ - maxQuakes = earthquakes.size(); - } - - if(clusterAnalysis.getClusters().size() > maxClusters){ - maxClusters = clusterAnalysis.getClusters().size(); - } - - time += step*5; - } - - System.out.println("Total Events: "+eventC); - System.out.println("\n========== SUMMARY =========="); - System.out.printf("Counts: %d | %d | %d%n", notDetected, oneDetected, tooManyDetected); - System.err.println("Final cluster count: "+clusterAnalysis.getClusters().size()); - System.err.println("Max clusters count: "+maxClusters); - System.err.println("Final quakes count: "+earthquakes.size()); - System.err.println("Max quakes count: "+maxQuakes); - - for(SimulatedEarthquake simulatedEarthquake : allSimulatedEarthquakes){ - System.err.println(simulatedEarthquake); - } - } - - private static int eventC = 0; - - private static void createEvents(List stations, List earthquakes, long time, Random r) { - for (SimulatedEarthquake earthquake : earthquakes) { - for (AbstractStation abstractStation : stations) { - SimulatedStation station = (SimulatedStation) abstractStation; - - double distGC = GeoUtils.greatCircleDistance(earthquake.lat, earthquake.lon, station.getLatitude(), station.getLongitude()); - double rawTravelP = TauPTravelTimeCalculator.getPWaveTravelTime(earthquake.depth, TauPTravelTimeCalculator.toAngle(distGC)); - double rawTravelPKIKP = TauPTravelTimeCalculator.getPKIKPWaveTravelTime(earthquake.depth, TauPTravelTimeCalculator.toAngle(distGC)); - - long expectedTravelP = (long) ((rawTravelP - + EarthquakeAnalysis.getElevationCorrection(station.getAlt())) - * 1000); - - long expectedTravelPKIKP = (long) ((rawTravelPKIKP - + EarthquakeAnalysis.getElevationCorrection(station.getAlt())) - * 1000); - - long actualTravel = time - earthquake.origin; - - if (P && rawTravelP != TauPTravelTimeCalculator.NO_ARRIVAL && actualTravel >= expectedTravelP && !station.passedPWaves.contains(earthquake)) { - station.passedPWaves.add(earthquake); - - double expectedRatio = IntensityTable.getMaxIntensity(earthquake.mag, distGC); - expectedRatio *= station.sensitivityMultiplier; - - if (expectedRatio > 8.0) { - Event event = new Event(station.getAnalysis()); - event.maxRatio = expectedRatio; - event.setpWave(earthquake.origin + expectedTravelP + r.nextLong(INACCURACY * 2) - INACCURACY); - - station.getAnalysis().getDetectedEvents().add(event); - eventC++; - } - } - - if (PKIKP && rawTravelPKIKP != TauPTravelTimeCalculator.NO_ARRIVAL && actualTravel >= expectedTravelPKIKP && !station.passedPKIKPWaves.contains(earthquake)) { - station.passedPKIKPWaves.add(earthquake); - - double expectedRatio = IntensityTable.getMaxIntensity(earthquake.mag, distGC) * 1.5; - expectedRatio *= station.sensitivityMultiplier; - - if (expectedRatio > 8.0) { - Event event = new Event(station.getAnalysis()); - event.maxRatio = expectedRatio; - event.setpWave(earthquake.origin + expectedTravelP + r.nextLong(INACCURACY * 2) - INACCURACY); - - station.getAnalysis().getDetectedEvents().add(event); - eventC++; - } - } - } - } - } -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/training/EarthquakeAnalysisTraining.java b/GlobalQuakeCore/src/main/java/globalquake/core/training/EarthquakeAnalysisTraining.java deleted file mode 100644 index ea77e1b..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/training/EarthquakeAnalysisTraining.java +++ /dev/null @@ -1,141 +0,0 @@ -package globalquake.core.training; - -import globalquake.core.Settings; -import globalquake.core.earthquake.EarthquakeAnalysis; -import globalquake.core.earthquake.data.Cluster; -import globalquake.core.earthquake.data.Hypocenter; -import globalquake.core.earthquake.data.PickedEvent; -import globalquake.core.geo.taup.TauPTravelTimeCalculator; -import globalquake.utils.GeoUtils; - -import javax.swing.*; -import java.util.ArrayList; -import java.util.List; -import java.util.Random; - -@SuppressWarnings("unused") -public class EarthquakeAnalysisTraining { - - public static final int STATIONS = 50; - public static final double DIST = 500; - - public static final double INACCURACY = 2000; - - public static void main(String[] args) throws Exception { - TauPTravelTimeCalculator.init(); - measureTest(10,10); - - Settings.hypocenterDetectionResolution = 40.0; - Settings.pWaveInaccuracyThreshold = 2000.0; - Settings.parallelHypocenterLocations = true; - long sum = 0; - long n = 0; - long a = System.currentTimeMillis(); - int fails = 0; - for(int i = 0; i < 50; i++) { - long err = runTest(6546+i, STATIONS); - System.err.printf("Error: %,d ms%n", err); - if(err != -1) { - sum += err; - n++; - } else{ - fails++; - //throw new IllegalStateException(); - } - } - - System.err.println("============================================"); - if(n == 0){ - System.err.println("NO CORRECT!"); - } else { - System.err.printf("AVERAGE = %,d ms%n", sum / n); - } - System.err.printf("TEST TOOK %,d ms%n", System.currentTimeMillis() - a); - System.err.printf("FAILURES = %d%n", fails); - System.err.println("============================================"); - } - - private static final long TARGET_TIME = 400; - - public static void calibrateResolution(JProgressBar progressBar, JSlider slider){ - Settings.hypocenterDetectionResolution = 0.0; - long lastTime; - int seed = 6543; - int failed = 0; - while(failed < 5 && Settings.hypocenterDetectionResolution <= Settings.hypocenterDetectionResolutionMax){ - lastTime = measureTest(seed++, 60); - if(lastTime > TARGET_TIME){ - failed++; - } else { - failed = 0; - Settings.hypocenterDetectionResolution += 2.5; - } - if(progressBar !=null){ - progressBar.setString("Calibrating: Resolution %.2f took %d ms".formatted(Settings.hypocenterDetectionResolution / 100.0, lastTime)); - } - if(slider != null){ - slider.setValue(Settings.hypocenterDetectionResolution.intValue()); - slider.repaint(); - } - } - } - - public static long measureTest(long seed, int stations){ - long a = System.currentTimeMillis(); - runTest(seed, stations); - return System.currentTimeMillis()-a; - } - - public static long runTest(long seed, int stations) { - EarthquakeAnalysis earthquakeAnalysis = new EarthquakeAnalysis(); - earthquakeAnalysis.testing = true; - - List fakeStations = new ArrayList<>(); - - Random r = new Random(seed); - - for(int i = 0; i < stations; i++){ - double ang = r.nextDouble() * 360.0; - double dist = r.nextDouble() * DIST; - double[] latLon = GeoUtils.moveOnGlobe(0, 0, ang, dist); - fakeStations.add(new FakeStation(latLon[0], latLon[1])); - } - - List pickedEvents = new ArrayList<>(); - var cluster = new Cluster(0); - cluster.updateCount = 6543541; - - Hypocenter absolutetyCorrect = new Hypocenter(10.5 * r.nextDouble() * 3, - 1.5 + r.nextDouble() * 3, r.nextDouble() * 200, 0, 0,0, null, null); - - for(FakeStation fakeStation : fakeStations){ - double distGC = GeoUtils.greatCircleDistance(absolutetyCorrect.lat, - absolutetyCorrect.lon, fakeStation.lat, fakeStation.lon); - double travelTime = TauPTravelTimeCalculator.getPWaveTravelTime(absolutetyCorrect.depth, TauPTravelTimeCalculator.toAngle(distGC)); - - long time = absolutetyCorrect.origin + ((long) (travelTime * 1000.0)); - time += (long)((r.nextDouble() - 0.5) * INACCURACY); - if(r.nextDouble() < 0.1){ - time += (long) ((r.nextDouble() * 10 - 5) * INACCURACY); - } - - var event = new PickedEvent(time, fakeStation.lat, fakeStation.lon, 0, 100); - pickedEvents.add(event); - } - - cluster.calculateRoot(fakeStations); - - earthquakeAnalysis.processCluster(cluster, pickedEvents); - - if(cluster.getEarthquake()!=null) { - double dist = GeoUtils.greatCircleDistance(cluster.getEarthquake().getLat(), cluster.getEarthquake().getLon(), absolutetyCorrect.lat, absolutetyCorrect.lon); - return Math.abs(cluster.getEarthquake().getOrigin()); - } else{ - return -1; - } - } - - public record FakeStation(double lat, double lon){ - - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/core/training/MiniseedWaveformTraining.java b/GlobalQuakeCore/src/main/java/globalquake/core/training/MiniseedWaveformTraining.java deleted file mode 100644 index 031389f..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/core/training/MiniseedWaveformTraining.java +++ /dev/null @@ -1,10 +0,0 @@ -package globalquake.core.training; - -@SuppressWarnings("all") -public class MiniseedWaveformTraining { - - public static void main(String[] args) { - - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/utils/GeoUtils.java b/GlobalQuakeCore/src/main/java/globalquake/utils/GeoUtils.java deleted file mode 100644 index aa5b586..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/utils/GeoUtils.java +++ /dev/null @@ -1,182 +0,0 @@ -package globalquake.utils; - -import org.apache.commons.math3.util.FastMath; - -public interface GeoUtils { - double EARTH_CIRCUMFERENCE = 40082; - double EARTH_RADIUS = EARTH_CIRCUMFERENCE / (2 * Math.PI);// 6371.0; - - class MoveOnGlobePrecomputed{ - public double c_theta; - public double s_theta; - public double c_phi; - public double s_phi; - public double c_delta; - public double s_delta; - } - - static void precomputeMoveOnGlobe(MoveOnGlobePrecomputed result, double lat, double lon, double distance){ - double delta = distance / EARTH_RADIUS; - double theta = Math.toRadians(lat); - double phi = Math.toRadians(lon); - - // calculate sines and cosines - double c_theta = FastMath.cos(theta); - double s_theta = FastMath.sin(theta); - double c_phi = FastMath.cos(phi); - double s_phi = FastMath.sin(phi); - double c_delta = FastMath.cos(delta); - double s_delta = FastMath.sin(delta); - - result.c_theta = c_theta; - result.s_theta = s_theta; - result.c_phi = c_phi; - result.s_phi=s_phi; - result.c_delta = c_delta; - result.s_delta=s_delta; - } - - static void moveOnGlobe(MoveOnGlobePrecomputed p, Point2DGQ point2D, double angle){ - double gamma = Math.toRadians(angle); - double c_gamma = FastMath.cos(gamma); - double s_gamma = FastMath.sin(gamma); - double x = p.c_delta * p.c_theta * p.c_phi - p.s_delta * (p.s_theta * p.c_phi * c_gamma + p.s_phi * s_gamma); - double y = p.c_delta * p.c_theta * p.s_phi - p.s_delta * (p.s_theta * p.s_phi * c_gamma - p.c_phi * s_gamma); - double z = p.s_delta * p.c_theta * c_gamma + p.c_delta * p.s_theta; - - // calculate end lat long - double theta2 = FastMath.asin(z); - double phi2 = FastMath.atan2(y, x); - - point2D.x = FastMath.toDegrees(theta2); - point2D.y = FastMath.toDegrees(phi2); - } - - /** - * - * @param lat Latitude - * @param lon Longitude - * @param distance GCD - * @param angle Heading - * @return new lat, lon - */ - static double[] moveOnGlobe(double lat, double lon, double distance, double angle) { - // calculate angles - double delta = distance / EARTH_RADIUS; - double theta = Math.toRadians(lat); - double phi = Math.toRadians(lon); - double gamma = Math.toRadians(angle); - - // calculate sines and cosines - double c_theta = FastMath.cos(theta); - double s_theta = FastMath.sin(theta); - double c_phi = FastMath.cos(phi); - double s_phi = FastMath.sin(phi); - double c_delta = FastMath.cos(delta); - double s_delta = FastMath.sin(delta); - double c_gamma = FastMath.cos(gamma); - double s_gamma = FastMath.sin(gamma); - - // calculate end vector - double x = c_delta * c_theta * c_phi - s_delta * (s_theta * c_phi * c_gamma + s_phi * s_gamma); - double y = c_delta * c_theta * s_phi - s_delta * (s_theta * s_phi * c_gamma - c_phi * s_gamma); - double z = s_delta * c_theta * c_gamma + c_delta * s_theta; - - // calculate end lat long - double theta2 = FastMath.asin(z); - double phi2 = FastMath.atan2(y, x); - - return new double[] { FastMath.toDegrees(theta2), FastMath.toDegrees(phi2) }; - } - - @SuppressWarnings("unused") - static double placeOnSurface(double travelledDistance, double alt1, double alt2) { - double d = alt1 - alt2; - double angDiff = (travelledDistance * 360.0) / EARTH_CIRCUMFERENCE; - double s2 = travelledDistance * travelledDistance - d * d *FastMath.cos(Math.toRadians(angDiff)); - if (s2 < 0) { - return 0; - } - return FastMath.sqrt(s2); - } - - static double greatCircleDistance(double lat1, double lon1, double lat2, double lon2) { - // Convert latitude and longitude from degrees to radians - lat1 = Math.toRadians(lat1); - lon1 = Math.toRadians(lon1); - lat2 = Math.toRadians(lat2); - lon2 = Math.toRadians(lon2); - - // Compute differences in latitudes and longitudes - double dlat = lat2 - lat1; - double dlon = lon2 - lon1; - - // Haversine formula - double a = Math.pow(Math.sin(dlat / 2), 2) + Math.cos(lat1) * Math.cos(lat2) * Math.pow(Math.sin(dlon / 2), 2); - double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)); - - return EARTH_RADIUS * c; // Angular distance in radians - } - - static double calculateAngle(double lat1, double lon1, double lat2, double lon2) { - lat1 =Math.toRadians(lat1); - lon1 =Math.toRadians(lon1); - lat2 =Math.toRadians(lat2); - lon2 =Math.toRadians(lon2); - double dLon = (lon2 - lon1); - - double y =FastMath.sin(dLon) *FastMath.cos(lat2); - double x =FastMath.cos(lat1) *FastMath.sin(lat2) -FastMath.sin(lat1) *FastMath.cos(lat2) *FastMath.cos(dLon); - - double bearing =FastMath.atan2(y, x); - - bearing =FastMath.toDegrees(bearing); - bearing = (bearing + 360) % 360; - // bearing = 360 - bearing; - - return bearing; - } - - static double geologicalDistance(double lat1, double lon1, double alt1, double lat2, double lon2, - double alt2) { - alt1 += EARTH_RADIUS; - alt2 += EARTH_RADIUS; - double x1 =FastMath.sin(Math.toRadians(lon1)) * alt1 *FastMath.cos(Math.toRadians(lat1)); - double z1 = -Math.cos(Math.toRadians(lon1)) * alt1 *FastMath.cos(Math.toRadians(lat1)); - double y1 =FastMath.sin(Math.toRadians(lat1)) * alt1; - - double x2 =FastMath.sin(Math.toRadians(lon2)) * alt2 *FastMath.cos(Math.toRadians(lat2)); - double z2 = -FastMath.cos(Math.toRadians(lon2)) * alt2 *FastMath.cos(Math.toRadians(lat2)); - double y2 =FastMath.sin(Math.toRadians(lat2)) * alt2; - return FastMath.sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2) + (z1 - z2) * (z1 - z2)); - } - - static double pgaFunction(double mag, double distKm) { - return pgaFunctionGen2(mag, distKm); - } - - static double pgaFunctionGen2(double mag, double distKm){ - return Math.pow(10, mag * 0.575) / (0.36 * Math.pow(distKm, 1.25 + mag / 22.0) + 10); - } - - @Deprecated - static double pgaFunctionGen1(double mag, double distKm){ - distKm = FastMath.abs(distKm); - double a = mag + 1.5; - double b = FastMath.pow((a + 0.9) / 5.5, 7.0); - double c = FastMath.pow((distKm * (14.0 - a * 0.85)) / (FastMath.pow(a, (5.4) / (1 + a * 0.075))), 2.5); - return b / (0.09 + c); - } - - @SuppressWarnings("unused") - static double inversePgaFunctionGen1(double mag, double pga) { - double a = mag + 1.5; - return ((Math.pow((Math.pow((a + 0.9) / 5.5, 7.0)) / pga - 0.09, 1 / 2.5) - * (Math.pow(a, (5.4) / (1 + a * 0.075))))) / (14.0 - a * 0.85); - } - - static double gcdToGeo(double greatCircleDistance) { - return geologicalDistance(0, 0, 0, 0, (360 * greatCircleDistance) / EARTH_CIRCUMFERENCE, 0); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/utils/NamedThreadFactory.java b/GlobalQuakeCore/src/main/java/globalquake/utils/NamedThreadFactory.java deleted file mode 100644 index dc35632..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/utils/NamedThreadFactory.java +++ /dev/null @@ -1,20 +0,0 @@ -package globalquake.utils; - -import java.util.concurrent.ThreadFactory; - -public class NamedThreadFactory implements ThreadFactory { - - private final String name; - - public NamedThreadFactory(String name) { - this.name=name; - } - - @Override - public Thread newThread(Runnable r) { - Thread t = new Thread(r); - t.setName(name); - return t; - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/utils/Point2DGQ.java b/GlobalQuakeCore/src/main/java/globalquake/utils/Point2DGQ.java deleted file mode 100644 index d1ecdce..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/utils/Point2DGQ.java +++ /dev/null @@ -1,6 +0,0 @@ -package globalquake.utils; - -public class Point2DGQ { - public double x; - public double y; -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/utils/Scale.java b/GlobalQuakeCore/src/main/java/globalquake/utils/Scale.java deleted file mode 100644 index 4e135ef..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/utils/Scale.java +++ /dev/null @@ -1,87 +0,0 @@ -package globalquake.utils; - -import globalquake.core.Settings; - -import javax.imageio.ImageIO; -import java.awt.*; -import java.awt.image.BufferedImage; -import java.io.IOException; -import java.util.Objects; - -public class Scale { - - public static final double RATIO_THRESHOLD = 50_000.0; - public static final double EXPONENT = 0.25; - - public static final boolean ENABLE_INTERPOLATION = true; - - private static BufferedImage pgaScale; - public static void load() throws IOException, NullPointerException { - pgaScale = ImageIO.read(Objects.requireNonNull(ClassLoader.getSystemClassLoader().getResource("scales/pgaScale3.png"))); - } - - public static Color getColorRatio(double ratio){ - return Settings.useOldColorScheme ? getColorRatioOld(ratio) : getColorRatioNew(ratio); - } - - public static Color getColorRatioOld(double ratio) { - int i = (int) (Math.log10(ratio) * 20.0); - return new Color(pgaScale.getRGB(0, Math.max(0, Math.min(pgaScale.getHeight() - 1, i)))); - } - - public static Color getColorRatioNew(double ratio) { - if(ratio < 1){ - return new Color(pgaScale.getRGB(0, 0)); - } - - double pct = Math.pow(ratio - 1.0, EXPONENT) / Math.pow(RATIO_THRESHOLD, EXPONENT); - - int i1 = (int)(pct * (pgaScale.getHeight() - 1)); - int i2 = i1 + 1; - - if(i1 < 0){ - return new Color(pgaScale.getRGB(0, 0)); - } else if (i1 >= pgaScale.getHeight() - 1){ - return new Color(pgaScale.getRGB(0, pgaScale.getHeight() - 1)); - } - - if(!ENABLE_INTERPOLATION){ - return new Color(pgaScale.getRGB(0, i1)); - } - - double weight = (pct * (pgaScale.getHeight() - 1)) - i1; - - Color color1 = new Color(pgaScale.getRGB(0, i1)); - Color color2 = new Color(pgaScale.getRGB(0, i2)); - - return interpolateColors(color1, color2, weight); - } - - public static Color interpolateColors(Color color1, Color color2, double weight) { - // Make sure weight is within the range [0, 1] - weight = Math.max(0, Math.min(1, weight)); - - // Extract RGB components of the two colors - int r1 = color1.getRed(); - int g1 = color1.getGreen(); - int b1 = color1.getBlue(); - - int r2 = color2.getRed(); - int g2 = color2.getGreen(); - int b2 = color2.getBlue(); - - // Interpolate RGB components - int rInterpolated = (int) (r1 * (1 - weight) + r2 * weight); - int gInterpolated = (int) (g1 * (1 - weight) + g2 * weight); - int bInterpolated = (int) (b1 * (1 - weight) + b2 * weight); - - // Create the interpolated color - return new Color(rInterpolated, gInterpolated, bInterpolated); - } - - public static Color getColorEasily(double ratio) { - int i = (int) ((pgaScale.getHeight() - 1) * ratio); - return new Color(pgaScale.getRGB(0, Math.max(0, Math.min(pgaScale.getHeight() - 1, i)))); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/utils/monitorable/Monitorable.java b/GlobalQuakeCore/src/main/java/globalquake/utils/monitorable/Monitorable.java deleted file mode 100644 index 9e582a4..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/utils/monitorable/Monitorable.java +++ /dev/null @@ -1,17 +0,0 @@ -package globalquake.utils.monitorable; - -import java.util.concurrent.atomic.AtomicInteger; - -public interface Monitorable { - - AtomicInteger monitor = new AtomicInteger(0); - - default int getMonitorState(){ - return monitor.get(); - } - - default void noteChange(){ - monitor.incrementAndGet(); - } - -} diff --git a/GlobalQuakeCore/src/main/java/globalquake/utils/monitorable/MonitorableCopyOnWriteArrayList.java b/GlobalQuakeCore/src/main/java/globalquake/utils/monitorable/MonitorableCopyOnWriteArrayList.java deleted file mode 100644 index d8faf7b..0000000 --- a/GlobalQuakeCore/src/main/java/globalquake/utils/monitorable/MonitorableCopyOnWriteArrayList.java +++ /dev/null @@ -1,59 +0,0 @@ -package globalquake.utils.monitorable; - -import java.util.Collection; -import java.util.List; -import java.util.concurrent.CopyOnWriteArrayList; - -public class MonitorableCopyOnWriteArrayList extends CopyOnWriteArrayList implements Monitorable { - - @SuppressWarnings("unused") - public MonitorableCopyOnWriteArrayList(List tmpList) { - super(tmpList); - } - - public MonitorableCopyOnWriteArrayList(){ - super(); - } - - @Override - public boolean add(E e) { - noteChange(); - return super.add(e); - } - - @Override - public void add(int index, E element) { - noteChange(); - super.add(index, element); - } - - @Override - public boolean addAll(Collection c) { - noteChange(); - return super.addAll(c); - } - - @Override - public boolean addAll(int index, Collection c) { - noteChange(); - return super.addAll(index, c); - } - - @Override - public void clear() { - noteChange(); - super.clear(); - } - - @Override - public boolean remove(Object o) { - noteChange(); - return super.remove(o); - } - - @Override - public E set(int index, E element) { - noteChange(); - return super.set(index, element); - } -} diff --git a/GlobalQuakeCore/src/main/resources/logo/chaos.png b/GlobalQuakeCore/src/main/resources/logo/chaos.png deleted file mode 100644 index ed8fce9..0000000 Binary files a/GlobalQuakeCore/src/main/resources/logo/chaos.png and /dev/null differ diff --git a/GlobalQuakeCore/src/main/resources/logo/logo.png b/GlobalQuakeCore/src/main/resources/logo/logo.png deleted file mode 100644 index 5179adf..0000000 Binary files a/GlobalQuakeCore/src/main/resources/logo/logo.png and /dev/null differ diff --git a/GlobalQuakeCore/src/main/resources/polygons/countriesHD.json b/GlobalQuakeCore/src/main/resources/polygons/countriesHD.json deleted file mode 100644 index 706999c..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons/countriesHD.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Albania","sov_a3":"ALB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Albania","adm0_a3":"ALB","geou_dif":0,"geounit":"Albania","gu_a3":"ALB","su_dif":0,"subunit":"Albania","su_a3":"ALB","brk_diff":0,"name":"Albania","name_long":"Albania","brk_a3":"ALB","brk_name":"Albania","brk_group":null,"abbrev":"Alb.","postal":"AL","formal_en":"Republic of Albania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Albania","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":3639453,"gdp_md_est":21810,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AL","iso_a3":"ALB","iso_n3":"008","un_a3":"008","wb_a2":"AL","wb_a3":"ALB","woe_id":-99,"adm0_a3_is":"ALB","adm0_a3_us":"ALB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ALB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.063964843749996,42.54726562499999],[20.103515625,42.524658203125],[20.18574218750001,42.42587890624999],[20.240527343750017,42.33896484375],[20.348242187500006,42.3087890625],[20.408300781250006,42.274951171874996],[20.485449218750006,42.223388671875],[20.522851562500023,42.17148437499999],[20.57539062500001,42.013085937499994],[20.581445312500023,41.91743164062499],[20.566210937500017,41.873681640624994],[20.553125,41.862353515624996],[20.505175781250014,41.706494140625],[20.5166015625,41.62705078125],[20.516210937500002,41.574755859374996],[20.4755859375,41.554101562499994],[20.448632812500023,41.521289062499996],[20.49238281250001,41.39140624999999],[20.487011718750008,41.336083984374994],[20.48896484375001,41.272607421874994],[20.56787109375,41.12783203124999],[20.61445312500001,41.083056640624996],[20.656054687500017,41.061669921874994],[20.709277343750017,40.928369140624994],[20.740820312500006,40.9052734375],[20.870214843750006,40.917919921875],[20.93349609375002,40.903125],[20.95859375,40.871533203125],[20.964257812500023,40.849902343749996],[20.95576171875001,40.775292968749994],[20.987890625,40.7177734375],[21.031054687500014,40.658642578125],[21.030859375,40.622460937499994],[21.001953125,40.56337890624999],[20.9501953125,40.494384765625],[20.881640625000017,40.46791992187499],[20.806054687500023,40.445458984374994],[20.77001953125,40.391894531249996],[20.75166015625001,40.334912109375],[20.717871093750006,40.29267578125],[20.69697265625001,40.246386718749996],[20.664941406250023,40.151757812499994],[20.65742187500001,40.1173828125],[20.60625,40.082666015624994],[20.52705078125001,40.068505859374994],[20.4560546875,40.065576171874994],[20.408007812500017,40.049462890624994],[20.383691406250023,40.0171875],[20.338476562500002,39.991064453125],[20.311132812500006,39.979443359375],[20.311328125000017,39.95078125],[20.344238281249996,39.890625],[20.381640625000017,39.841796875],[20.382421875,39.802636718749994],[20.364062500000017,39.791748046875],[20.30615234375,39.79667968749999],[20.293847656250023,39.7822265625],[20.28759765625,39.73857421874999],[20.272070312500006,39.701171875],[20.24824218750001,39.678369140624994],[20.206835937500017,39.653515625],[20.13105468750001,39.66162109375],[20.05976562500001,39.699121093749994],[20.022558593750006,39.710693359375],[20.001269531250017,39.709423828125],[19.995605468749996,39.801025390625],[19.96484375,39.872265625],[19.851855468750017,40.0435546875],[19.48457031250001,40.2099609375],[19.39814453125001,40.28486328125],[19.360156250000017,40.347705078124996],[19.322265625,40.407080078125],[19.35859375000001,40.408740234374996],[19.39453125,40.393701171874994],[19.440527343750002,40.37568359375],[19.45917968750001,40.40537109375],[19.439257812500017,40.470263671874996],[19.34462890625002,40.6220703125],[19.3375,40.66381835937499],[19.383886718750006,40.79072265625],[19.461230468750017,40.93330078125],[19.4560546875,41.1060546875],[19.480078125,41.23637695312499],[19.453417968750017,41.32099609375],[19.440625,41.424755859375],[19.497363281250017,41.5626953125],[19.54580078125002,41.596826171874994],[19.57568359375,41.640429687499996],[19.577539062500023,41.7875],[19.46826171875,41.85615234375],[19.342382812500006,41.869091796875],[19.345507812500017,41.91884765624999],[19.361132812500017,41.99775390624999],[19.352148437500006,42.0240234375],[19.361425781250002,42.069091796875],[19.330859375000017,42.12929687499999],[19.28066406250002,42.17255859375],[19.329003906250023,42.249267578125],[19.39960937500001,42.34189453125],[19.465136718750017,42.415380859375],[19.54453125,42.491943359375],[19.597460937500017,42.5654296875],[19.65449218750001,42.628564453124994],[19.703417968750017,42.64794921875],[19.727832031250017,42.634521484375],[19.74072265625,42.60693359375],[19.73779296875,42.525146484375],[19.754492187500006,42.496923828125],[19.78828125000001,42.476171875],[19.859765625000023,42.486328125],[19.9390625,42.506689453125],[20.045703125000017,42.54990234374999],[20.063964843749996,42.54726562499999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Belgium","sov_a3":"BEL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belgium","adm0_a3":"BEL","geou_dif":0,"geounit":"Belgium","gu_a3":"BEL","su_dif":0,"subunit":"Belgium","su_a3":"BEL","brk_diff":0,"name":"Belgium","name_long":"Belgium","brk_a3":"BEL","brk_name":"Belgium","brk_group":null,"abbrev":"Belg.","postal":"B","formal_en":"Kingdom of Belgium","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belgium","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":8,"pop_est":10414336,"gdp_md_est":389300,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"BE","iso_a3":"BEL","iso_n3":"056","un_a3":"056","wb_a2":"BE","wb_a3":"BEL","woe_id":-99,"adm0_a3_is":"BEL","adm0_a3_us":"BEL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BEL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[4.816015625000033,51.432812499999955],[4.820703125000023,51.41206054687501],[4.84804687500008,51.40327148437498],[4.943945312499977,51.40776367187501],[4.992578125000023,51.445361328125045],[5.03095703125004,51.46909179687498],[5.05947265625008,51.453125],[5.073437500000068,51.406835937500006],[5.099902343750045,51.34648437499995],[5.214160156250045,51.278955078124966],[5.310839843750045,51.259716796874955],[5.429785156250034,51.27299804687502],[5.476855468750017,51.285058593749966],[5.508789062500028,51.275],[5.540429687499994,51.23930664062499],[5.60878906250008,51.1984375],[5.752343750000023,51.16948242187496],[5.796484375000033,51.153076171875],[5.827148437500057,51.125634765624994],[5.818261718750022,51.08642578125],[5.749804687500017,50.98876953124999],[5.740820312500063,50.95991210937498],[5.75,50.95024414062498],[5.736621093750016,50.93212890625003],[5.647558593750063,50.86665039062501],[5.639453125000017,50.843603515625],[5.669140625000011,50.80595703124999],[5.69355468750001,50.774755859375006],[5.69453125000004,50.78105468749996],[5.830957031250051,50.80913085937501],[5.89246112249532,50.75255685798351],[5.993945312500017,50.75043945312503],[6.005957031249977,50.73222656249996],[6.119433593750016,50.67924804687502],[6.154492187500039,50.63725585937499],[6.235937500000033,50.59667968749997],[6.168457031250057,50.54536132812501],[6.1787109375,50.52250976562496],[6.20302734375008,50.499121093750006],[6.294921875000057,50.485498046874966],[6.340917968750006,50.451757812500034],[6.343652343750051,50.400244140625006],[6.36445312500001,50.31616210937503],[6.175097656250074,50.23266601562497],[6.12128906250004,50.13935546874998],[6.116503906250045,50.120996093749966],[6.110058593750068,50.12377929687499],[6.08906250000004,50.15458984374996],[6.054785156249977,50.154296875],[5.976269531250068,50.16718749999995],[5.866894531250068,50.08281250000002],[5.817382812500028,50.01269531250003],[5.7880859375,49.96123046875002],[5.744042968749994,49.919628906249976],[5.73525390625008,49.875634765624994],[5.740820312500063,49.85717773437506],[5.725781250000011,49.83334960937498],[5.725,49.80830078125003],[5.78798828125008,49.758886718750006],[5.8037109375,49.73217773437497],[5.880371093749971,49.64477539062503],[5.856542968750006,49.61284179687502],[5.837597656250067,49.57832031249998],[5.815429687499972,49.55380859375006],[5.789746093749983,49.53828125000001],[5.710449218749999,49.53920898437502],[5.610058593750068,49.528222656249994],[5.542382812500051,49.51103515624996],[5.507324218749999,49.51088867187502],[5.434667968750034,49.55449218750001],[5.353515625000028,49.61982421875001],[5.301953125000011,49.650976562500034],[5.27880859375,49.67792968750003],[5.215039062500068,49.68925781250002],[5.124121093750006,49.72148437500001],[5.061035156250028,49.756542968749976],[5.006933593750034,49.77836914062498],[4.930566406250023,49.789257812499976],[4.867578125000051,49.78813476562502],[4.849121093750028,49.84711914062504],[4.841503906250068,49.914501953125004],[4.790039062499972,49.959570312500034],[4.86054687500004,50.135888671874994],[4.818652343750045,50.15317382812503],[4.772851562500023,50.1390625],[4.706640625000034,50.097070312499966],[4.675097656250017,50.046875],[4.65615234375005,50.00244140624997],[4.545019531250063,49.96025390624999],[4.36875,49.944970703124994],[4.176074218750045,49.96025390624999],[4.149316406250023,49.971582031249994],[4.137011718750074,49.984472656250034],[4.136816406250034,50],[4.150292968750023,50.02387695312498],[4.183886718750045,50.052832031250034],[4.192187500000045,50.09414062499999],[4.157714843750028,50.1298828125],[4.13525390625,50.14379882812499],[4.144140625000034,50.17841796875004],[4.169628906250067,50.22177734374998],[4.174609375000017,50.24648437500005],[4.044140624999983,50.32133789062502],[3.949707031250028,50.33593749999997],[3.858105468750011,50.338574218749976],[3.788574218750057,50.34697265624999],[3.748046875000056,50.343505859375],[3.718847656250063,50.321679687499994],[3.689355468750022,50.306054687500016],[3.667285156250045,50.324804687500006],[3.626757812500045,50.45732421875002],[3.595410156250068,50.47734374999999],[3.47695312500008,50.49946289062498],[3.316210937500017,50.50737304687498],[3.273339843750079,50.53154296875002],[3.249804687500074,50.591162109375006],[3.234960937499977,50.66293945312498],[3.182031250000051,50.73168945312502],[3.154882812500006,50.748925781249994],[3.106835937500079,50.77944335937499],[3.022851562500023,50.76689453125001],[2.921972656250006,50.72705078124997],[2.862402343750034,50.716015624999955],[2.839746093750023,50.71176757812498],[2.759375,50.750634765624994],[2.669140625000011,50.81142578125002],[2.596777343750006,50.87592773437501],[2.579296874999983,50.91176757812505],[2.60146484375008,50.95527343750001],[2.574804687500063,50.98857421874996],[2.536035156250051,51.04951171875004],[2.52490234375,51.097119140624955],[2.96015625000004,51.26542968749995],[3.225195312500034,51.351611328125045],[3.35009765625,51.37768554687503],[3.380078125000068,51.29111328125006],[3.40283203125,51.26362304687495],[3.43251953125008,51.24575195312505],[3.471972656250045,51.242236328125045],[3.51708984375,51.26362304687495],[3.580273437499983,51.28618164062501],[3.681835937500068,51.27568359375002],[3.755664062500017,51.25483398437504],[3.78193359375004,51.23320312499998],[3.83076171875004,51.212597656249955],[3.902050781250011,51.207666015625016],[4.040039062500057,51.24707031250006],[4.17255859375004,51.30708007812501],[4.211425781250057,51.34873046874998],[4.226171875000034,51.38647460937503],[4.304492187500017,51.36152343750001],[4.373730468749983,51.356005859375045],[4.40400390625004,51.36708984374999],[4.384765625000028,51.42758789062506],[4.44091796875,51.459814453125055],[4.503417968750028,51.47470703124998],[4.531640625000023,51.44858398437498],[4.588769531250023,51.42192382812496],[4.633984375000068,51.421728515625006],[4.755664062499989,51.49111328125002],[4.784179687500028,51.47739257812498],[4.810546875,51.452734375000034],[4.816015625000033,51.432812499999955]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Finland","sov_a3":"FI1","adm0_dif":1,"level":2,"type":"Country","admin":"Aland","adm0_a3":"ALD","geou_dif":0,"geounit":"Aland","gu_a3":"ALD","su_dif":0,"subunit":"Aland","su_a3":"ALD","brk_diff":0,"name":"Aland","name_long":"Aland Islands","brk_a3":"ALD","brk_name":"Aland","brk_group":null,"abbrev":"Aland","postal":"AI","formal_en":"Åland Islands","formal_fr":null,"note_adm0":"Fin.","note_brk":null,"name_sort":"Aland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":6,"pop_est":27153,"gdp_md_est":1563,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"AX","iso_a3":"ALA","iso_n3":"248","un_a3":"248","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"ALA","adm0_a3_us":"ALD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":13,"abbrev_len":5,"tiny":5,"homepart":-99,"filename":"ALA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[20.611328125,60.040673828124994],[20.60341796875008,60.016943359375034],[20.521777343750045,60.01166992187495],[20.4875,60.03276367187499],[20.411230468750002,60.03012695312497],[20.397949218750053,60.040673828124994],[20.429589843750023,60.06171875000001],[20.490136718749994,60.074902343749955],[20.569140625000014,60.069628906250045],[20.611328125,60.040673828124994]]],[[[19.66230468750001,60.187158203124994],[19.66748046875,60.16474609374995],[19.629199218750017,60.17036132812495],[19.599804687500065,60.16269531249997],[19.579882812500017,60.135058593750045],[19.53652343750005,60.14497070312501],[19.519042968750053,60.18457031249999],[19.551367187500063,60.243847656250004],[19.628808593750023,60.24609375],[19.66230468750001,60.187158203124994]]],[[[19.989550781250074,60.351171875],[20.02021484375001,60.350878906250045],[20.033886718750036,60.359326171874976],[20.08740234375003,60.35341796875002],[20.16787109375008,60.31469726562505],[20.18408203125,60.29375],[20.239550781250017,60.28300781249999],[20.258886718750063,60.261279296874996],[20.19472656250005,60.19355468749995],[20.155078125000045,60.19228515624996],[20.125488281250057,60.200878906249955],[20.07324218749997,60.193457031250034],[20.042578125000034,60.1806640625],[20.032324218750006,60.152490234375044],[20.033984375000074,60.09355468750002],[19.799804687500057,60.081738281250004],[19.745996093750023,60.09897460937498],[19.67226562499999,60.233007812500006],[19.686914062500048,60.267626953125045],[19.736523437500036,60.28237304687502],[19.77900390624998,60.285546874999966],[19.785253906250034,60.21337890625001],[19.84765625000003,60.22055664062506],[19.86718750000003,60.26811523437504],[19.871582031250025,60.301611328125034],[19.85468750000004,60.31850585937502],[19.812304687500014,60.33159179687502],[19.787792968750008,60.35405273437508],[19.82304687500007,60.390185546875045],[19.888281250000063,60.405810546875045],[19.94453125000004,60.35751953124998],[19.989550781250074,60.351171875]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Bulgaria","sov_a3":"BGR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bulgaria","adm0_a3":"BGR","geou_dif":0,"geounit":"Bulgaria","gu_a3":"BGR","su_dif":0,"subunit":"Bulgaria","su_a3":"BGR","brk_diff":0,"name":"Bulgaria","name_long":"Bulgaria","brk_a3":"BGR","brk_name":"Bulgaria","brk_group":null,"abbrev":"Bulg.","postal":"BG","formal_en":"Republic of Bulgaria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bulgaria","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":8,"pop_est":7204687,"gdp_md_est":93750,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BG","iso_a3":"BGR","iso_n3":"100","un_a3":"100","wb_a2":"BG","wb_a3":"BGR","woe_id":-99,"adm0_a3_is":"BGR","adm0_a3_us":"BGR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BGR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.585351562500023,43.742236328124996],[28.561816406250017,43.501318359375],[28.465429687500006,43.389306640624994],[28.319628906250017,43.42685546874999],[28.13369140625002,43.39560546875],[28.03515625,43.26826171875],[27.979296875000017,43.230517578124996],[27.92890625,43.1861328125],[27.896484375,43.020703125],[27.88886718750001,42.74970703125],[27.818359375,42.716650390625],[27.753710937500017,42.70654296875],[27.484765625000023,42.468066406249996],[27.63955078125002,42.4009765625],[27.70820312500001,42.349951171875],[27.821386718750006,42.2080078125],[27.982714843750017,42.04741210937499],[28.014453125000017,41.969042968749996],[27.879199218750017,41.986621093749996],[27.831933593750023,41.981298828125],[27.801660156250023,41.95654296874999],[27.738867187500006,41.9615234375],[27.6611328125,41.96132812499999],[27.579882812500017,41.93291015624999],[27.53486328125001,41.920800781249994],[27.47480468750001,41.946875],[27.362890625,42.025048828124994],[27.294921875,42.079541015625],[27.244335937500008,42.09326171874999],[27.193359375,42.077099609375],[27.01171875,42.058642578124996],[26.96875,42.02685546875],[26.884863281250006,41.991845703124994],[26.800390625,41.975146484374996],[26.67919921875,41.963330078125],[26.615332031250006,41.964892578124996],[26.5796875,41.94794921875],[26.549707031250023,41.896728515625],[26.529296875,41.8466796875],[26.51142578125001,41.8263671875],[26.3603515625,41.8015625],[26.327246093750006,41.772802734375],[26.31796875,41.744677734374996],[26.320898437500006,41.716552734375],[26.20058593750002,41.743798828124994],[26.107421875,41.72568359375],[26.085546875,41.704150390624996],[26.066015625,41.67324218749999],[26.076953125000017,41.640185546874996],[26.111230468750023,41.608203125],[26.143554687499996,41.521533203124996],[26.155175781250023,41.434863281249996],[26.135351562500006,41.3857421875],[26.06640625,41.35068359375],[25.923339843749996,41.311914062499994],[25.784960937500014,41.33041992187499],[25.723925781250017,41.3150390625],[25.621484375000023,41.310107421874996],[25.52705078125001,41.29980468749999],[25.381933593750006,41.26435546875],[25.25117187500001,41.243554687499994],[25.133398437500006,41.315771484375],[24.993554687500023,41.36499023437499],[24.846875,41.39423828125],[24.79580078125002,41.372900390625],[24.773730468750017,41.356103515624994],[24.65107421875001,41.419970703124996],[24.595996093750014,41.442724609375],[24.5693359375,41.4673828125],[24.51826171875001,41.552539062499996],[24.487890625,41.55522460937499],[24.38671875,41.52353515624999],[24.289453125000023,41.525048828124994],[24.230371093750023,41.530810546874996],[24.056054687500023,41.527246093749994],[24.03291015625001,41.469091796875],[24.011328125,41.46005859375],[23.973535156250023,41.452294921874994],[23.880859375,41.455957031249994],[23.762304687500002,41.412988281249994],[23.635156250000023,41.386767578124996],[23.53583984375001,41.386035156249996],[23.433398437500017,41.398730468749996],[23.372070312499996,41.38964843749999],[23.23984375,41.3849609375],[23.155957031250008,41.322070312499996],[23.02558593750001,41.325634765625],[22.916015625,41.336279296875],[22.9296875,41.356103515624994],[22.951464843750014,41.60561523437499],[23.005664062500017,41.71694335937499],[23.00361328125001,41.73984375],[22.991992187500014,41.757177734375],[22.943945312500006,41.77509765624999],[22.9091796875,41.835205078125],[22.83681640625002,41.993603515625],[22.79609375000001,42.025683593749996],[22.68232421875001,42.059130859374996],[22.582714843750008,42.104833984375],[22.49824218750001,42.165087890624996],[22.344042968750014,42.31396484375],[22.42207031250001,42.328857421875],[22.445703125000023,42.359130859375],[22.523535156250006,42.440966796874996],[22.53242187500001,42.48120117187499],[22.524218750000017,42.50390625],[22.472070312500023,42.543310546875],[22.43623046875001,42.6291015625],[22.463281250000023,42.70947265625],[22.465625,42.75078125],[22.439257812500017,42.791650390624994],[22.466796875,42.84248046875],[22.522753906250017,42.8703125],[22.55810546875,42.878466796874996],[22.706152343750006,42.883935546874994],[22.799902343750002,42.985742187499994],[22.856835937500023,43.01826171875],[22.91523437500001,43.075976562499996],[22.942285156250023,43.097070312499994],[22.96796875000001,43.142041015625],[22.976855468750017,43.18798828124999],[22.85957031250001,43.25234375],[22.81972656250002,43.30073242187499],[22.767578125,43.354150390624994],[22.69697265625001,43.391064453125],[22.55458984375002,43.454492187499994],[22.499121093750006,43.518847656249996],[22.474121093749996,43.60224609375],[22.436328125000017,43.665478515625],[22.394824218750017,43.706640625],[22.38691406250001,43.740136718749994],[22.36962890625,43.78129882812499],[22.36542968750001,43.862109375],[22.399023437500006,43.96953125],[22.420800781250023,44.007421875],[22.469042968750017,44.018017578125],[22.597460937500017,44.07529296875],[22.603417968750023,44.148583984374994],[22.6265625,44.194091796875],[22.66748046875,44.22021484375],[22.705078125,44.23779296875],[22.775195312500017,44.195214843749994],[22.945410156250002,44.12729492187499],[23.02851562500001,44.07797851562499],[23.0244140625,44.047216796875],[22.9853515625,44.01699218749999],[22.91132812500001,43.987207031249994],[22.868261718750002,43.947900390624994],[22.8564453125,43.8990234375],[22.867675781249996,43.864550781249996],[22.919042968750006,43.83447265625],[23.224609375,43.873876953125],[23.534570312500023,43.853564453124996],[23.95078125,43.786669921874996],[24.22675781250001,43.763476562499996],[24.430566406250023,43.794384765625],[24.808203125,43.738427734374994],[25.15966796875,43.686328125],[25.4970703125,43.670800781249994],[25.686132812500006,43.711767578125],[25.81884765625,43.76684570312499],[25.933398437500017,43.870556640625],[26.2158203125,44.007275390625],[26.4892578125,44.08398437499999],[26.847753906250006,44.14619140625],[27.0869140625,44.167382812499994],[27.120703125,44.146142578124994],[27.425390625,44.0205078125],[27.56103515625,44.020068359374996],[27.6708984375,43.997802734375],[27.710742187500017,43.964599609375],[27.738574218750017,43.956298828125],[27.884277343749996,43.987353515624996],[27.94892578125001,43.918603515624994],[28.05,43.822412109374994],[28.221972656250017,43.77285156249999],[28.37519531250001,43.744775390624994],[28.4234375,43.740478515625],[28.585351562500023,43.742236328124996]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Austria","sov_a3":"AUT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Austria","adm0_a3":"AUT","geou_dif":0,"geounit":"Austria","gu_a3":"AUT","su_dif":0,"subunit":"Austria","su_a3":"AUT","brk_diff":0,"name":"Austria","name_long":"Austria","brk_a3":"AUT","brk_name":"Austria","brk_group":null,"abbrev":"Aust.","postal":"A","formal_en":"Republic of Austria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Austria","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":4,"pop_est":8210281,"gdp_md_est":329500,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"AT","iso_a3":"AUT","iso_n3":"040","un_a3":"040","wb_a2":"AT","wb_a3":"AUT","woe_id":-99,"adm0_a3_is":"AUT","adm0_a3_us":"AUT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"AUT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.953125,48.59882812499999],[16.948828125,48.58857421874999],[16.943359375,48.550927734374994],[16.90449218750001,48.503515625],[16.862695312500023,48.44140625],[16.86542968750001,48.3869140625],[16.97265625,48.198095703125],[17.06787109375,48.083251953125],[17.0859375,48.03955078125],[17.147363281250023,48.00595703125],[17.0890625,47.963623046875],[17.077734375,47.90087890624999],[17.039941406250023,47.872949218749994],[17.030078125000014,47.837109375],[17.0458984375,47.804541015625],[17.04560546875001,47.76376953124999],[17.06660156250001,47.707568359374996],[16.973437500000017,47.6953125],[16.862695312500023,47.697265625],[16.823046875000017,47.69399414062499],[16.785937500000017,47.678662109375],[16.74755859375,47.68627929687499],[16.6474609375,47.739013671875],[16.590917968750006,47.750537109374996],[16.55097656250001,47.747363281249996],[16.52109375,47.724462890625],[16.469628906250023,47.69506835937499],[16.421289062500023,47.674462890624994],[16.43212890625,47.65629882812499],[16.639746093750006,47.60888671875],[16.676562500000017,47.536035156249994],[16.636621093750023,47.47661132812499],[16.623046875,47.447558593749996],[16.57441406250001,47.424658203125],[16.514746093750006,47.404541015625],[16.44287109375,47.39951171875],[16.434375,47.36743164062499],[16.462597656250008,47.27314453125],[16.439746093750014,47.252734375],[16.416894531250023,47.2234375],[16.438378906250023,47.145898437499994],[16.482812500000023,47.140380859375],[16.49267578125,47.12265625],[16.484765625000023,47.091259765625],[16.476953125000023,47.057861328125],[16.461230468750014,47.02246093749999],[16.453417968750017,47.006787109375],[16.423925781250006,46.996972656249994],[16.331835937500017,47.002197265625],[16.252539062500006,46.971923828125],[16.093066406250017,46.86328125],[16.037207031250006,46.84482421875],[15.976855468750017,46.8013671875],[15.98046875,46.705859375],[15.972265625,46.69721679687499],[15.957617187500006,46.677636718749994],[15.766894531250017,46.711279296875],[15.76025390625,46.710742187499996],[15.632617187500017,46.6984375],[15.545312500000023,46.65463867187499],[15.439257812500019,46.62963867187499],[15.216992187500011,46.64296874999999],[15.000683593750011,46.6259765625],[14.949414062500011,46.613232421875],[14.893261718750011,46.605908203125],[14.840625,46.58046875],[14.810546875,46.544580078124994],[14.756738281250023,46.49912109375],[14.68017578125,46.463427734374996],[14.596972656250017,46.436083984374996],[14.5771484375,46.41293945312499],[14.5498046875,46.399707031249996],[14.503515625,46.417041015624996],[14.465917968750004,46.41611328124999],[14.419921875,46.4279296875],[14.267285156250011,46.44072265624999],[14.099511718750023,46.46191406249999],[14.019628906250006,46.482177734375],[13.928808593750006,46.498193359374994],[13.831347656250015,46.51123046874999],[13.743945312500017,46.514306640624994],[13.7,46.520263671875],[13.490039062500017,46.55556640624999],[13.3515625,46.557910156249996],[13.16875,46.57265625],[12.805566406250023,46.625878906249994],[12.699804687500006,46.6474609375],[12.5986328125,46.654101562499996],[12.479199218750011,46.672509765624994],[12.38828125,46.70263671875],[12.330078125,46.759814453124996],[12.267968750000023,46.835888671875],[12.154101562500017,46.93525390625],[12.130761718750023,46.98476562499999],[12.16552734375,47.028173828125],[12.201269531250004,47.06088867187499],[12.197167968750023,47.075],[12.169433593749998,47.08212890625],[11.969531250000017,47.03969726562499],[11.775683593750017,46.986083984375],[11.699414062500011,46.984667968749996],[11.62548828125,46.99658203125],[11.52753906250001,46.997412109375],[11.433203125,46.983056640624994],[11.244433593750017,46.97568359375],[11.133886718750006,46.936181640624994],[11.0634765625,46.859130859375],[11.025097656250011,46.79697265624999],[10.993261718750006,46.777001953124994],[10.92734375,46.76948242187499],[10.828906250000017,46.775244140625],[10.759765625,46.793310546875],[10.689257812500017,46.84638671875],[10.579785156250011,46.85371093749999],[10.479394531250023,46.855126953124994],[10.45283203125001,46.86494140624999],[10.45458984375,46.8994140625],[10.414941406250023,46.964404296874996],[10.349414062500017,46.98476562499999],[10.179785156250006,46.862353515624996],[10.133496093750011,46.851513671875],[9.996875,46.8853515625],[9.877734375000017,46.9376953125],[9.864648437500023,46.975976562499994],[9.8453125,47.007373046874996],[9.745019531250023,47.037109375],[9.619921875000017,47.057470703125],[9.580273437500011,47.05737304687499],[9.595703125,47.075830078124994],[9.610546875000011,47.10712890625],[9.601171875,47.132080078125],[9.571875,47.15791015625],[9.555761718750006,47.185498046875],[9.551074218750017,47.212255859375],[9.542187500000011,47.234130859375],[9.536816406250011,47.25463867187499],[9.527539062500011,47.270751953125],[9.609082031250011,47.391796875],[9.625878906250023,47.467041015625],[9.554394531250011,47.51113281249999],[9.524023437500006,47.52421875],[9.548925781250006,47.53403320312499],[9.650585937500011,47.52587890625],[9.715136718750017,47.55078125],[9.748925781250021,47.575537109375],[9.839160156250017,47.552294921874996],[9.971582031250023,47.505322265625],[10.034082031250023,47.473583984375],[10.059863281250017,47.449072265625],[10.07421875,47.428515625],[10.066308593750023,47.393359375],[10.096484375000017,47.37958984375],[10.158789062500006,47.374267578125],[10.200292968750006,47.363427734374994],[10.185742187500011,47.3171875],[10.183007812500023,47.27880859375],[10.240625,47.284130859375],[10.312792968750017,47.313427734375],[10.369140625,47.366064453125],[10.40390625,47.4169921875],[10.43037109375001,47.54106445312499],[10.439453125,47.5515625],[10.482812500000023,47.54179687499999],[10.65869140625,47.547216796875],[10.741601562500023,47.52412109375],[10.873046875,47.52021484375],[10.87060546875,47.50078125],[10.893945312500023,47.470458984375],[10.9521484375,47.426708984375],[10.980859375000023,47.39814453125],[11.0419921875,47.39311523437499],[11.136035156250017,47.40888671875],[11.191210937500017,47.425195312499994],[11.2119140625,47.413623046874996],[11.297949218750006,47.42490234375],[11.374121093750006,47.460253906249996],[11.392968750000023,47.487158203125],[11.469921875000011,47.506103515625],[11.573925781250011,47.549755859375],[11.716796875,47.58349609375],[12.185644531250006,47.61953125],[12.203808593750011,47.646728515625],[12.196875,47.70908203125],[12.209277343750017,47.71826171875],[12.268359375000017,47.702734375],[12.363183593750021,47.68818359375],[12.435742187500011,47.66611328125],[12.48291015625,47.63730468749999],[12.526562500000011,47.636132812499994],[12.59423828125,47.65629882812499],[12.685839843750017,47.66933593749999],[12.771386718750023,47.63940429687499],[12.796191406250017,47.60703125],[12.781152343750023,47.59042968749999],[12.7828125,47.56416015625],[12.809375,47.5421875],[12.87890625,47.5064453125],[12.968066406250017,47.47568359375],[13.014355468750011,47.478076171874996],[13.031542968750017,47.5080078125],[13.047949218750006,47.57915039062499],[13.054101562500023,47.655126953125],[13.033593750000021,47.69873046875],[12.985546875000011,47.709423828125],[12.928125,47.712841796875],[12.897656250000011,47.721875],[12.908300781250006,47.74580078124999],[12.954199218750006,47.807763671874994],[12.953515625000021,47.890625],[12.849902343750015,47.984814453125],[12.760058593750015,48.075976562499996],[12.760351562500006,48.106982421874996],[12.814257812500017,48.16083984374999],[12.897460937499998,48.2037109375],[13.082128906250006,48.27509765625],[13.140429687500017,48.289941406249994],[13.215234375000023,48.301904296874994],[13.322851562500004,48.33125],[13.374609375,48.361376953124996],[13.409375,48.39414062499999],[13.459863281250023,48.56455078125],[13.471679687499998,48.571826171874996],[13.486621093750017,48.581835937499996],[13.675195312500021,48.52304687499999],[13.692187500000017,48.532763671874996],[13.723925781250017,48.542382812499994],[13.785351562500011,48.587451171874996],[13.798828125,48.6216796875],[13.797460937500006,48.686425781249994],[13.802929687500011,48.74750976562499],[13.814746093750017,48.766943359375],[13.843164062500023,48.75986328124999],[13.92431640625,48.72802734375],[13.98876953125,48.692431640624996],[14.049121093750017,48.602490234375],[14.189843750000023,48.578564453125],[14.367578125000023,48.576220703124996],[14.431054687500023,48.616259765624996],[14.488671875000023,48.625537109374996],[14.553906250000011,48.613330078124996],[14.691308593750021,48.59921875],[14.706640625,48.671923828124996],[14.785937500000017,48.747363281249996],[14.821875,48.7740234375],[14.92255859375001,48.771386718749994],[14.947363281250004,48.827734375],[14.972167968749998,48.98393554687499],[14.993457031250017,49.001123046874994],[15.066796875000023,48.997851562499996],[15.139746093750004,48.9693359375],[15.16171875,48.9462890625],[15.199609375000023,48.948144531249994],[15.252734375000015,48.96386718749999],[15.310937500000023,48.97402343749999],[15.402929687500004,48.957373046875],[15.599414062500015,48.886376953124994],[15.70078125,48.86044921875],[15.765039062500021,48.8654296875],[15.825195312499998,48.86445312499999],[16.057226562500006,48.754785156249994],[16.219335937500006,48.73940429687499],[16.367285156250006,48.73896484375],[16.414843750000017,48.7720703125],[16.477929687500023,48.800097656249996],[16.543554687500006,48.796240234375],[16.600976562500023,48.781884765624994],[16.712695312500017,48.734228515625],[16.764453125000017,48.722021484375],[16.83320312500001,48.714306640625],[16.883691406250023,48.7037109375],[16.928320312500006,48.620898437499996],[16.953125,48.59882812499999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Czech Republic","sov_a3":"CZE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Czech Republic","adm0_a3":"CZE","geou_dif":0,"geounit":"Czech Republic","gu_a3":"CZE","su_dif":0,"subunit":"Czech Republic","su_a3":"CZE","brk_diff":0,"name":"Czech Rep.","name_long":"Czech Republic","brk_a3":"CZE","brk_name":"Czech Rep.","brk_group":null,"abbrev":"Cz. Rep.","postal":"CZ","formal_en":"Czech Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Czech Republic","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":6,"pop_est":10211904,"gdp_md_est":265200,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"CZ","iso_a3":"CZE","iso_n3":"203","un_a3":"203","wb_a2":"CZ","wb_a3":"CZE","woe_id":-99,"adm0_a3_is":"CZE","adm0_a3_us":"CZE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":14,"abbrev_len":8,"tiny":-99,"homepart":1,"filename":"CZE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[14.809375,50.858984375],[14.895800781250015,50.861376953124996],[14.982910156249998,50.88657226562499],[14.989941406250011,50.92724609375],[14.984472656250006,51.00341796875],[14.99375,51.01435546875],[15.125976562499998,50.99287109375],[15.258593750000017,50.958544921874996],[15.277050781250011,50.88300781249999],[15.312597656250004,50.845751953124996],[15.354394531250021,50.811767578125],[15.394628906250007,50.796289062499994],[15.463964843750006,50.79384765624999],[15.643945312500023,50.748876953125],[15.730566406250006,50.739697265625],[15.819238281250023,50.70869140625],[15.893945312500023,50.67690429687499],[15.948535156250017,50.670263671875],[15.973828125000011,50.63544921875],[16.007226562500023,50.611621093749996],[16.06640625,50.629931640624996],[16.2822265625,50.655615234375],[16.359960937500006,50.621386718749996],[16.4125,50.58515625],[16.419726562500017,50.57363281249999],[16.39228515625001,50.541650390624994],[16.379101562500008,50.516894531249996],[16.35664062500001,50.50048828125],[16.282519531250017,50.4830078125],[16.24072265625,50.4546875],[16.210351562500023,50.423730468749994],[16.230761718750017,50.394091796874996],[16.291308593750017,50.371875],[16.334179687500008,50.36689453125],[16.350488281250023,50.34521484375],[16.487597656250017,50.248388671875],[16.5966796875,50.121923828125],[16.63916015625,50.1021484375],[16.679101562500023,50.097460937499996],[16.72529296875001,50.116064453125],[16.778613281250017,50.15703125],[16.841796875,50.18671875],[16.895312500000014,50.20195312499999],[16.989648437500023,50.2369140625],[16.99335937500001,50.25971679687499],[16.91474609375001,50.34521484375],[16.869140625,50.414501953125],[16.88007812500001,50.427050781249996],[16.980761718750017,50.41611328125],[17.151953125,50.378320312499994],[17.41523437500001,50.25478515624999],[17.462304687500023,50.25478515624999],[17.554589843750023,50.2640625],[17.654687500000023,50.284228515624996],[17.702246093750006,50.307177734374996],[17.720117187500023,50.298632812499996],[17.735449218750006,50.230761718749996],[17.709277343750017,50.1935546875],[17.58935546875,50.157470703125],[17.596289062500006,50.139501953125],[17.627050781250002,50.11640625],[17.68105468750002,50.10078125],[17.74658203125,50.05678710937499],[17.79169921875001,50.006591796875],[17.83125,49.983300781249994],[17.874804687500014,49.97226562499999],[17.983789062500023,49.999072265624996],[18.0146484375,50.020263671875],[18.028320312499996,50.03525390625],[18.04951171875001,50.03193359375],[18.087695312500017,50.007275390625],[18.09921875,49.9927734375],[18.205273437500008,49.964746093749994],[18.26630859375001,49.93027343749999],[18.305273437500006,49.9140625],[18.348437500000017,49.929833984374994],[18.516210937500006,49.902392578124996],[18.562402343750023,49.879345703125],[18.5771484375,49.841113281249996],[18.56884765625,49.81791992187499],[18.594628906250023,49.7578125],[18.806933593750017,49.613720703125],[18.82929687500001,49.54013671875],[18.83222656250001,49.510791015624996],[18.807031250000023,49.50922851562499],[18.74970703125001,49.493994140625],[18.676171875000023,49.48847656249999],[18.596484375000017,49.491455078125],[18.534570312500023,49.464697265625],[18.47607421875,49.42109375],[18.415820312500014,49.390917968749996],[18.383105468750017,49.363916015624994],[18.36484375,49.33623046874999],[18.160937500000017,49.257373046874996],[18.132617187500017,49.22456054687499],[18.109960937500006,49.17978515625],[18.100390625000017,49.1193359375],[18.0859375,49.06513671875],[18.050878906250006,49.036523437499994],[17.940722656250017,49.011962890625],[17.91328125000001,48.99873046874999],[17.892675781250006,48.971142578125],[17.830859375000017,48.92861328124999],[17.758496093750008,48.888134765625],[17.62539062500002,48.841845703124996],[17.482617187500008,48.827783203124994],[17.296875,48.842822265624996],[17.1884765625,48.8609375],[17.13564453125002,48.841064453125],[17.063281250000017,48.78076171875],[16.985253906250023,48.676904296874994],[16.953125,48.59882812499999],[16.928320312500006,48.620898437499996],[16.883691406250023,48.7037109375],[16.83320312500001,48.714306640625],[16.764453125000017,48.722021484375],[16.712695312500017,48.734228515625],[16.600976562500023,48.781884765624994],[16.543554687500006,48.796240234375],[16.477929687500023,48.800097656249996],[16.414843750000017,48.7720703125],[16.367285156250006,48.73896484375],[16.219335937500006,48.73940429687499],[16.057226562500006,48.754785156249994],[15.825195312499998,48.86445312499999],[15.765039062500021,48.8654296875],[15.70078125,48.86044921875],[15.599414062500015,48.886376953124994],[15.402929687500004,48.957373046875],[15.310937500000023,48.97402343749999],[15.252734375000015,48.96386718749999],[15.199609375000023,48.948144531249994],[15.16171875,48.9462890625],[15.139746093750004,48.9693359375],[15.066796875000023,48.997851562499996],[14.993457031250017,49.001123046874994],[14.972167968749998,48.98393554687499],[14.947363281250004,48.827734375],[14.92255859375001,48.771386718749994],[14.821875,48.7740234375],[14.785937500000017,48.747363281249996],[14.706640625,48.671923828124996],[14.691308593750021,48.59921875],[14.553906250000011,48.613330078124996],[14.488671875000023,48.625537109374996],[14.431054687500023,48.616259765624996],[14.367578125000023,48.576220703124996],[14.189843750000023,48.578564453125],[14.049121093750017,48.602490234375],[13.98876953125,48.692431640624996],[13.92431640625,48.72802734375],[13.843164062500023,48.75986328124999],[13.814746093750017,48.766943359375],[13.769921875000023,48.815966796874996],[13.684960937500023,48.876708984375],[13.547656250000017,48.95966796875],[13.440722656250017,48.95556640625],[13.401171875000017,48.97758789062499],[13.383691406250023,49.008105468749996],[13.339062500000011,49.060791015625],[13.288769531250011,49.097460937499996],[13.227832031250017,49.111669921875],[13.140527343750021,49.158349609374994],[13.023730468750017,49.260107421875],[12.916699218750011,49.33046875],[12.813378906250021,49.329345703125],[12.747851562500017,49.36621093749999],[12.68115234375,49.41450195312499],[12.63203125000001,49.461230468749996],[12.555761718750006,49.574853515624994],[12.500292968750015,49.639697265624996],[12.45703125,49.67978515624999],[12.408203125,49.713183593749996],[12.390527343750023,49.73964843749999],[12.4501953125,49.800146484375],[12.471875,49.830078125],[12.497558593749998,49.853076171874996],[12.5125,49.87744140624999],[12.512011718750015,49.895800781249996],[12.457617187500006,49.955517578125],[12.384179687500023,49.998583984374996],[12.276464843750006,50.04233398437499],[12.207812500000017,50.097509765625],[12.182519531250021,50.14804687499999],[12.175,50.175830078124996],[12.127832031250023,50.213427734374996],[12.089746093750023,50.26855468749999],[12.08984375,50.3017578125],[12.09921875,50.310986328125],[12.134863281250006,50.3109375],[12.174804687499998,50.288378906249996],[12.231152343750011,50.244873046875],[12.27734375,50.181445312499996],[12.3056640625,50.205712890624994],[12.358593750000011,50.273242187499996],[12.452636718749998,50.3498046875],[12.549023437500011,50.393408203125],[12.635546875000017,50.3970703125],[12.706445312500021,50.40913085937499],[12.765429687500015,50.43095703124999],[12.868261718750006,50.422216796875],[12.942675781250017,50.4064453125],[12.966796875,50.4162109375],[12.9970703125,50.4560546875],[13.016406250000017,50.490380859374994],[13.18115234375,50.510498046875],[13.237695312500023,50.5767578125],[13.26953125,50.576416015625],[13.306054687500023,50.58632812499999],[13.341015625000011,50.61142578125],[13.374609375,50.621728515624994],[13.401171875000017,50.609326171875],[13.436132812500004,50.60107421875],[13.472558593750023,50.616943359375],[13.526562500000011,50.692822265625],[13.556738281250006,50.704638671874996],[13.701367187500011,50.71650390625],[13.898535156250006,50.761279296874996],[13.998437500000023,50.801123046875],[14.096484375000017,50.82275390624999],[14.201757812500004,50.861230468749994],[14.369042968750023,50.898730468749996],[14.377050781250006,50.9140625],[14.299414062500006,50.952587890625],[14.273339843750023,50.976904296875],[14.255859375,51.001855468749994],[14.283203125,51.0294921875],[14.319726562500023,51.03779296875],[14.367285156250006,51.026269531249994],[14.50732421875,51.00986328124999],[14.545703125000017,50.993945312499996],[14.559667968750006,50.95493164062499],[14.59521484375,50.91860351562499],[14.623828125000015,50.91474609374999],[14.613574218750015,50.85556640624999],[14.658203125,50.83261718749999],[14.72333984375001,50.81469726562499],[14.766503906250025,50.818310546875],[14.797460937500004,50.842333984374996],[14.809375,50.858984375]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Andorra","sov_a3":"AND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Andorra","adm0_a3":"AND","geou_dif":0,"geounit":"Andorra","gu_a3":"AND","su_dif":0,"subunit":"Andorra","su_a3":"AND","brk_diff":0,"name":"Andorra","name_long":"Andorra","brk_a3":"AND","brk_name":"Andorra","brk_group":null,"abbrev":"And.","postal":"AND","formal_en":"Principality of Andorra","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Andorra","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":83888,"gdp_md_est":3660,"pop_year":-99,"lastcensus":1989,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"AD","iso_a3":"AND","iso_n3":"020","un_a3":"020","wb_a2":"AD","wb_a3":"ADO","woe_id":-99,"adm0_a3_is":"AND","adm0_a3_us":"AND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"AND.geojson"},"geometry":{"type":"Polygon","coordinates":[[[1.7060546875,42.503320312499994],[1.678515625000017,42.49667968749999],[1.58642578125,42.455957031249994],[1.534082031250023,42.44169921874999],[1.486230468750023,42.434472656249994],[1.448828125,42.437451171875],[1.428125,42.46132812499999],[1.430273437500006,42.497851562499996],[1.421972656250006,42.530810546874996],[1.414843750000017,42.548388671874996],[1.428320312500006,42.5958984375],[1.458886718750023,42.6216796875],[1.501367187500023,42.642724609374994],[1.568164062500017,42.635009765625],[1.709863281250023,42.604443359375],[1.739453125000011,42.575927734375],[1.740234375,42.55673828125],[1.713964843750006,42.525634765625],[1.7060546875,42.503320312499994]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Belarus","sov_a3":"BLR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belarus","adm0_a3":"BLR","geou_dif":0,"geounit":"Belarus","gu_a3":"BLR","su_dif":0,"subunit":"Belarus","su_a3":"BLR","brk_diff":0,"name":"Belarus","name_long":"Belarus","brk_a3":"BLR","brk_name":"Belarus","brk_group":null,"abbrev":"Bela.","postal":"BY","formal_en":"Republic of Belarus","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belarus","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":5,"mapcolor13":11,"pop_est":9648533,"gdp_md_est":114100,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BY","iso_a3":"BLR","iso_n3":"112","un_a3":"112","wb_a2":"BY","wb_a3":"BLR","woe_id":-99,"adm0_a3_is":"BLR","adm0_a3_us":"BLR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BLR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.14794921875,56.142919921875],[28.284277343750006,56.055908203125],[28.316308593750023,56.05253906249999],[28.39208984375,56.08671874999999],[28.407031250000017,56.089013671875],[28.56396484375,56.09199218749999],[28.63691406250001,56.061767578125],[28.69082031250002,56.00263671875],[28.740820312500002,55.955371093749996],[28.794726562500014,55.94257812499999],[28.94746093750001,56.002099609375],[29.031738281249996,56.021777343749996],[29.087402343749996,56.021142578125],[29.283007812500017,55.96787109375],[29.375,55.93872070312499],[29.39609375,55.91220703125],[29.39794921875,55.8810546875],[29.373144531250006,55.834716796875],[29.353417968750023,55.784375],[29.412988281250023,55.72485351562499],[29.482226562500014,55.6845703125],[29.630078125,55.751171875],[29.6845703125,55.7697265625],[29.744140625,55.77041015625],[29.823925781250008,55.7951171875],[29.881640625000017,55.83232421874999],[29.937011718749996,55.845263671874996],[30.042675781250008,55.83642578125],[30.23359375000001,55.84521484375],[30.45625,55.78681640625],[30.475390625000014,55.768798828125],[30.586718750000014,55.70029296875],[30.625585937500006,55.666259765625],[30.66230468750001,55.65546875],[30.7216796875,55.622119140624996],[30.80078125,55.601123046874996],[30.85595703125,55.60751953124999],[30.882226562500023,55.59638671875],[30.906835937500006,55.57001953125],[30.908789062500002,55.525341796875],[30.900585937500015,55.397412109375],[30.861816406249996,55.360400390624996],[30.820996093750008,55.3302734375],[30.810546875,55.30698242187499],[30.814453125,55.2787109375],[30.87744140625,55.22343749999999],[30.95888671875002,55.13759765625],[30.97773437500001,55.08779296875],[30.97773437500001,55.05048828124999],[30.866796875,54.940722656249996],[30.829882812500014,54.914990234375],[30.804492187500014,54.8609375],[30.791015625,54.806005859375],[30.798828125,54.783251953124996],[30.984179687500014,54.6958984375],[31.121289062500008,54.648486328124996],[31.152148437500017,54.625341796875],[31.154882812500006,54.6109375],[31.081933593750023,54.51708984375],[31.074804687500006,54.491796875],[31.18476562500001,54.452978515625],[31.245507812500023,54.391650390624996],[31.29912109375002,54.29169921875],[31.403613281250017,54.195947265625],[31.62841796875,54.11118164062499],[31.791992187499996,54.055908203125],[31.825976562500014,54.030712890625],[31.837792968750023,54.00078125],[31.825292968750006,53.935009765625],[31.783007812500014,53.85498046874999],[31.754199218750017,53.81044921875],[31.82080078125,53.79194335937499],[31.9921875,53.796875],[32.200390625,53.78125],[32.4501953125,53.69291992187499],[32.45097656250002,53.6533203125],[32.42519531250002,53.61728515625],[32.44238281249999,53.579248046875],[32.469628906250016,53.54697265625],[32.68574218750001,53.44814453125],[32.70644531250002,53.41943359375],[32.71025390625001,53.371435546875],[32.70429687500001,53.336328125],[32.64443359375002,53.32890624999999],[32.57802734375002,53.312402343749994],[32.469335937500006,53.2703125],[32.42626953125,53.210595703124994],[32.25068359375001,53.128369140625],[32.14199218750002,53.09116210937499],[32.05546875000002,53.089453125],[31.849707031250006,53.106201171875],[31.777441406250006,53.146875],[31.74746093750002,53.18417968749999],[31.668261718750017,53.200927734375],[31.562988281249996,53.20249023437499],[31.417871093750026,53.196044921875],[31.38837890625001,53.184814453125],[31.364550781250017,53.138964843749996],[31.30292968750001,53.060888671875],[31.2587890625,53.01669921875],[31.29511718750001,52.989794921874996],[31.353027343749996,52.933447265625],[31.442773437500023,52.86181640625],[31.53515625,52.7982421875],[31.56484375000002,52.75922851562499],[31.5634765625,52.7314453125],[31.51943359375002,52.69873046875],[31.526171875000017,52.6330078125],[31.615917968750008,52.546191406249996],[31.585546875,52.532470703125],[31.57656250000002,52.426025390625],[31.57734375000001,52.312304687499996],[31.6015625,52.284814453125],[31.64990234375,52.26220703125],[31.690625,52.220654296875],[31.758593750000014,52.125830078125],[31.76337890625001,52.10107421874999],[31.57373046875,52.10810546874999],[31.345996093750014,52.10537109375],[31.21796875000001,52.050244140625],[31.16845703125,52.062939453125],[31.079296875,52.076953125],[30.980664062500008,52.046191406249996],[30.845703125,51.95307617187499],[30.75527343750002,51.895166015625],[30.667285156250017,51.814111328125],[30.639453125000017,51.770068359374996],[30.583886718750026,51.68896484375],[30.533007812500017,51.596337890624994],[30.56074218750001,51.531494140625],[30.602343750000017,51.471240234374996],[30.611718750000023,51.40634765625],[30.632519531250008,51.355419921875],[30.576953125000014,51.318359375],[30.54453125,51.265039062499994],[30.449511718750017,51.274316406249994],[30.333398437500026,51.32553710937499],[30.308984375000023,51.399609375],[30.219531250000017,51.451220703124996],[30.160742187500002,51.477880859375],[30.063769531250017,51.48203125],[29.908789062500002,51.4580078125],[29.7060546875,51.43955078125],[29.553125,51.4345703125],[29.469628906250023,51.40834960937499],[29.346484375000014,51.382568359375],[29.298828125,51.413037109375],[29.23046875,51.497021484375],[29.17421875000002,51.58061523437499],[29.135644531250023,51.61728515624999],[29.10205078125,51.62753906249999],[29.060742187500008,51.625439453125],[29.013085937500023,51.598925781249996],[28.97773437500001,51.57177734375],[28.92753906250002,51.562158203124994],[28.849511718750023,51.540185546874994],[28.793261718750017,51.5103515625],[28.73125,51.433398437499996],[28.690234375000017,51.438867187499994],[28.647753906250017,51.45654296875],[28.599023437500023,51.542626953124994],[28.532031250000017,51.562451171875],[28.424609375000017,51.563623046874994],[28.291601562500002,51.581835937499996],[28.18378906250001,51.607861328125],[28.14443359375002,51.60166015625],[28.08027343750001,51.5650390625],[28.0107421875,51.559765625],[27.85859375000001,51.5923828125],[27.82880859375001,51.57744140624999],[27.788867187500017,51.529150390625],[27.741308593750006,51.482568359374994],[27.7,51.477978515625],[27.676757812499996,51.48994140625],[27.689746093750017,51.572412109374994],[27.601367187500017,51.601611328124996],[27.45234375000001,51.606103515625],[27.34765625,51.59414062499999],[27.296289062500023,51.597412109375],[27.270117187500006,51.613574218749996],[27.141992187500023,51.75205078125],[27.074121093750023,51.76083984375],[26.95283203125001,51.75400390624999],[26.7734375,51.770703125],[26.566894531249996,51.801904296875],[26.453417968750017,51.813427734375],[26.394335937500014,51.84443359375],[26.26708984375,51.855029296874996],[25.925292968749996,51.913525390625],[25.785742187500006,51.92382812499999],[25.58027343750001,51.924755859375],[25.2671875,51.937744140625],[25.066699218750017,51.93051757812499],[24.97382812500001,51.91113281249999],[24.86640625,51.89912109375],[24.68515625,51.88828125],[24.611328125,51.889501953125],[24.495214843750006,51.883056640625],[24.361914062500006,51.867529296875],[24.323730468749996,51.838427734374996],[24.280078125000017,51.774707031249996],[24.126855468750023,51.6646484375],[23.978320312500017,51.59130859375],[23.951171875,51.58505859375],[23.8642578125,51.62397460937499],[23.79169921875001,51.637109375],[23.706835937500017,51.64130859375],[23.64667968750001,51.628857421875],[23.60859375000001,51.610498046875],[23.613769531249996,51.525390625],[23.605273437500017,51.51791992187499],[23.539648437500006,51.618896484375],[23.54482421875002,51.710253906249996],[23.581347656250017,51.76240234375],[23.62568359375001,51.80932617187499],[23.607421875,51.879785156249994],[23.65107421875001,51.972998046875],[23.652441406250006,52.040380859375],[23.63330078125,52.069580078125],[23.597949218750017,52.103076171874996],[23.50117187500001,52.140380859375],[23.458398437500023,52.16953125],[23.327148437499996,52.208447265625],[23.19697265625001,52.25693359375],[23.175097656250017,52.28662109375],[23.18125,52.306982421875],[23.2041015625,52.337890625],[23.303320312500006,52.428369140624994],[23.410937500000017,52.5162109375],[23.479589843750006,52.5515625],[23.844726562499996,52.664208984375],[23.901269531250023,52.70361328125],[23.915429687500023,52.770263671875],[23.916308593750017,52.81875],[23.909375,52.9048828125],[23.887109375000023,53.0275390625],[23.859179687500017,53.112109375],[23.78925781250001,53.270947265625],[23.598925781250017,53.59921875],[23.484667968750017,53.939794921875],[23.55908203125,53.919824218749994],[23.733691406250017,53.912255859375],[23.872558593749996,53.935693359374994],[23.944433593750006,53.93896484375],[24.00849609375001,53.931640625],[24.103906250000023,53.94501953125],[24.191308593750023,53.950439453125],[24.236621093750014,53.919970703124996],[24.31796875,53.89296875],[24.478515625,53.9318359375],[24.620703125,53.979833984375],[24.768164062500006,53.974658203124996],[24.78925781250001,53.9982421875],[24.82568359375,54.118994140625],[24.869531250000023,54.145166015625],[25.04609375,54.133056640625],[25.111425781250002,54.154931640625],[25.179492187500014,54.2142578125],[25.28369140625,54.251269531249996],[25.37060546875,54.251220703125],[25.461132812500008,54.292773437499996],[25.505664062500017,54.264941406249996],[25.52734375,54.215136718749996],[25.497363281250017,54.17524414062499],[25.510351562500006,54.159619140625],[25.573046875000014,54.139892578125],[25.680566406250023,54.140478515625],[25.74921875000001,54.15698242187499],[25.765234375,54.17978515625],[25.765039062500023,54.22119140625],[25.748144531250006,54.25966796875],[25.70253906250002,54.29296875],[25.61689453125001,54.310107421874996],[25.557519531250023,54.310693359375],[25.54736328125,54.331835937499996],[25.56757812500001,54.37705078125],[25.62031250000001,54.460400390625],[25.68515625,54.535791015625],[25.72480468750001,54.56425781249999],[25.73164062500001,54.590380859374996],[25.723925781250017,54.636035156249996],[25.722460937500017,54.71787109374999],[25.780859375,54.833251953125],[25.859277343750023,54.919287109375],[25.964453125,54.94716796875],[26.09296875000001,54.9623046875],[26.175195312500023,55.00327148437499],[26.2158203125,55.050390625],[26.23125,55.090136718749996],[26.250781250000017,55.12451171874999],[26.291796875000014,55.13959960937499],[26.601171875,55.130175781249996],[26.6484375,55.20419921875],[26.675,55.22490234374999],[26.734375,55.24677734375],[26.775683593750017,55.273095703125],[26.760156250000023,55.293359375],[26.68125,55.306445312499996],[26.49531250000001,55.318017578125],[26.457617187500006,55.34248046875],[26.469531250000017,55.371923828125],[26.51923828125001,55.44814453125],[26.566601562500008,55.546484375],[26.5908203125,55.62265625],[26.593554687500017,55.667529296874996],[26.620214843750006,55.679638671875],[26.771875,55.693994140625],[26.82246093750001,55.709228515625],[26.953027343750023,55.81293945312499],[27.052539062500017,55.83056640624999],[27.309179687500006,55.80390625],[27.427148437500023,55.805957031249996],[27.45917968750001,55.803515625],[27.576757812500006,55.798779296875],[27.589453125,55.8091796875],[27.642285156250008,55.91171875],[27.694238281250023,55.941552734374994],[27.896289062500017,56.07617187499999],[28.032031250000017,56.13330078125],[28.11787109375001,56.145800781249996],[28.14794921875,56.142919921875]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Switzerland","sov_a3":"CHE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Switzerland","adm0_a3":"CHE","geou_dif":0,"geounit":"Switzerland","gu_a3":"CHE","su_dif":0,"subunit":"Switzerland","su_a3":"CHE","brk_diff":0,"name":"Switzerland","name_long":"Switzerland","brk_a3":"CHE","brk_name":"Switzerland","brk_group":null,"abbrev":"Switz.","postal":"CH","formal_en":"Swiss Confederation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Switzerland","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":7,"mapcolor13":3,"pop_est":7604467,"gdp_md_est":316700,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"CH","iso_a3":"CHE","iso_n3":"756","un_a3":"756","wb_a2":"CH","wb_a3":"CHE","woe_id":-99,"adm0_a3_is":"CHE","adm0_a3_us":"CHE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"CHE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[9.524023437500006,47.52421875],[9.554394531250011,47.51113281249999],[9.625878906250023,47.467041015625],[9.609082031250011,47.391796875],[9.527539062500011,47.270751953125],[9.484277343750023,47.17265625],[9.4794921875,47.09750976562499],[9.487695312500023,47.06225585937499],[9.502343750000023,47.062744140625],[9.580273437500011,47.05737304687499],[9.619921875000017,47.057470703125],[9.745019531250023,47.037109375],[9.8453125,47.007373046874996],[9.864648437500023,46.975976562499994],[9.877734375000017,46.9376953125],[9.996875,46.8853515625],[10.133496093750011,46.851513671875],[10.179785156250006,46.862353515624996],[10.349414062500017,46.98476562499999],[10.414941406250023,46.964404296874996],[10.45458984375,46.8994140625],[10.45283203125001,46.86494140624999],[10.406054687500017,46.73486328125],[10.39794921875,46.6650390625],[10.438281250000017,46.61884765625],[10.442480468750006,46.582861328125],[10.4306640625,46.550048828125],[10.363085937500017,46.5470703125],[10.272265625000017,46.56484375],[10.195507812500011,46.62109375],[10.1375,46.61435546875],[10.087011718750006,46.599902343749996],[10.061230468750011,46.54677734374999],[10.038281250000011,46.483203125],[10.045605468750011,46.447900390624994],[10.081933593750023,46.420751953125],[10.109667968750017,46.36284179687499],[10.1298828125,46.287988281249994],[10.145214843750011,46.253515625],[10.128320312500023,46.238232421875],[10.08056640625,46.227978515625],[10.041015625,46.238085937499996],[9.9716796875,46.327685546874996],[9.939257812500017,46.36181640624999],[9.884472656250011,46.3677734375],[9.78779296875001,46.346044921875],[9.639453125000017,46.2958984375],[9.57958984375,46.29609375],[9.528710937500021,46.306201171874996],[9.481054687500006,46.34877929687499],[9.440625,46.430810546874994],[9.427636718750023,46.48232421874999],[9.399316406250021,46.4806640625],[9.304394531250011,46.495556640625],[9.260156250000023,46.4751953125],[9.259765625,46.391259765624994],[9.251074218750006,46.28676757812499],[9.203417968750017,46.21923828125],[9.070996093750011,46.102441406249994],[9.022363281250023,46.05146484375],[9.003027343750006,46.014892578125],[8.998925781250023,45.98310546875],[9.019140625,45.928125],[9.046679687500015,45.87558593749999],[9.023730468750017,45.845703125],[8.953710937500006,45.830029296875],[8.904296875,45.861962890624994],[8.885156250000023,45.918701171875],[8.778027343750011,45.99619140625],[8.826757812500004,46.06103515625],[8.818554687500011,46.07714843749999],[8.641699218750006,46.110791015625],[8.5654296875,46.159814453124994],[8.458398437500021,46.24589843749999],[8.4384765625,46.28286132812499],[8.44296875,46.402783203125],[8.436816406250017,46.431884765625],[8.422558593750011,46.44604492187499],[8.370703125,46.445117187499996],[8.298535156250011,46.40341796874999],[8.23193359375,46.341210937499994],[8.095703125,46.271044921874996],[8.08154296875,46.256005859374994],[8.127246093750017,46.18759765625],[8.12519531250001,46.1609375],[8.014257812500006,46.051904296874994],[7.9931640625,46.015917968749996],[7.852343750000016,45.94746093749999],[7.787890625000016,45.921826171875],[7.592578125000016,45.972216796874996],[7.538574218749999,45.978173828124994],[7.451562500000023,45.94443359375],[7.327929687500017,45.912353515625],[7.129003906250006,45.880419921874996],[7.055761718750006,45.90380859374999],[7.02109375,45.92578125],[7.00390625,45.958837890625],[6.953710937500006,46.017138671874996],[6.897265625000016,46.05175781249999],[6.858007812500006,46.089404296874996],[6.8056640625,46.13066406249999],[6.772070312500006,46.16513671875],[6.816796875000023,46.275195312499996],[6.7841796875,46.31396484375],[6.767382812500016,46.36918945312499],[6.77607421875001,46.40664062499999],[6.758105468750017,46.41577148437499],[6.578222656250006,46.437353515625],[6.428906250000011,46.43051757812499],[6.321875,46.393701171874994],[6.234667968750017,46.3326171875],[6.22421875,46.31943359375],[6.229589843750006,46.308447265625],[6.27294921875,46.25224609374999],[6.199414062500011,46.19306640624999],[6.086621093750011,46.147021484374996],[6.006640625000016,46.14233398437499],[5.971484375000017,46.151220703125],[5.970019531250017,46.214697265625],[6.0361328125,46.238085937499996],[6.095898437500011,46.27939453124999],[6.115917968750011,46.337646484375],[6.123242187500011,46.37861328125],[6.06025390625001,46.428173828125],[6.06796875,46.458544921874996],[6.10703125,46.516064453125],[6.129687500000017,46.5669921875],[6.160742187500006,46.61103515625],[6.28515625,46.683056640625],[6.41015625,46.755419921874996],[6.429003906250016,46.832275390625],[6.438574218750006,46.92587890625],[6.45625,46.94833984375],[6.624804687500017,47.004345703125],[6.666894531250023,47.026513671874994],[6.688085937500005,47.058251953124994],[6.820703125000023,47.16318359375],[6.952050781250023,47.2671875],[6.978515625,47.302050781249996],[7.000585937500006,47.322509765625],[7.000585937500006,47.339453125],[6.98408203125001,47.3525390625],[6.921484375,47.361230468749994],[6.900390625,47.39423828125],[6.968359375,47.45322265625],[7.053417968750011,47.48935546875],[7.136035156250017,47.48984375],[7.169238281250018,47.4732421875],[7.167480468749999,47.45371093749999],[7.203125,47.43271484375],[7.265722656250005,47.42578125],[7.343164062500022,47.43310546875],[7.420019531250006,47.45517578125],[7.467382812500006,47.507666015625],[7.494921875000016,47.54736328125],[7.615625,47.592724609375],[7.698046875000017,47.569873046874996],[7.927050781250016,47.563867187499994],[8.09375,47.576171875],[8.198242187499998,47.60693359375],[8.327832031250011,47.60693359375],[8.414746093750011,47.589599609375],[8.430078125000023,47.592138671875],[8.454003906250023,47.59619140625],[8.477636718750006,47.612695312499994],[8.559472656250023,47.6240234375],[8.570507812500011,47.63779296875],[8.567089843750011,47.651904296874996],[8.55234375,47.65913085937499],[8.451757812500006,47.651806640625],[8.413281250000011,47.6626953125],[8.403417968750004,47.687792968749996],[8.435742187500011,47.73134765624999],[8.509863281250006,47.766894531249996],[8.572656250000023,47.775634765625],[8.617871093750011,47.76611328125],[8.728320312500017,47.700048828125],[8.754785156250023,47.698046875],[8.770117187500004,47.709912109375],[8.793066406250006,47.71655273437499],[8.831152343750006,47.70361328125],[8.874023437499998,47.6626953125],[8.881152343750017,47.656396484374994],[9.127539062500006,47.670703125],[9.182812500000011,47.670703125],[9.35,47.598925781249996],[9.524023437500006,47.52421875]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Bosnia and Herzegovina","sov_a3":"BIH","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bosnia and Herzegovina","adm0_a3":"BIH","geou_dif":0,"geounit":"Bosnia and Herzegovina","gu_a3":"BIH","su_dif":0,"subunit":"Bosnia and Herzegovina","su_a3":"BIH","brk_diff":0,"name":"Bosnia and Herz.","name_long":"Bosnia and Herzegovina","brk_a3":"BIH","brk_name":"Bosnia and Herz.","brk_group":null,"abbrev":"B.H.","postal":"BiH","formal_en":"Bosnia and Herzegovina","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bosnia and Herzegovina","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":2,"pop_est":4613414,"gdp_md_est":29700,"pop_year":-99,"lastcensus":1991,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BA","iso_a3":"BIH","iso_n3":"070","un_a3":"070","wb_a2":"BA","wb_a3":"BIH","woe_id":-99,"adm0_a3_is":"BIH","adm0_a3_us":"BIH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":16,"long_len":22,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BIH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.918652343749983,45.276562499999976],[17.125390625000023,45.171777343750016],[17.210644531250068,45.15605468750002],[17.25869140625008,45.17055664062505],[17.324121093750076,45.16396484375002],[17.46914062500005,45.13330078125],[17.50263671875004,45.12036132812502],[17.54628906250005,45.12255859375003],[17.65351562500004,45.16347656250002],[17.690136718750036,45.158398437499955],[17.812792968750074,45.078125],[17.874414062500023,45.077246093750034],[17.94863281250005,45.11186523437499],[17.996289062500068,45.14179687499995],[18.137207031249996,45.119384765625],[18.21796875000001,45.13291015625],[18.284960937500074,45.13427734375003],[18.35761718750004,45.12055664062498],[18.423925781250063,45.10200195312501],[18.48828125000003,45.08583984375002],[18.66259765625,45.07744140624999],[18.746093750000057,45.02651367187502],[18.779394531250006,44.97724609375001],[18.78017578125008,44.94721679687501],[18.788378906250045,44.914892578125006],[18.836425781249996,44.883251953124955],[18.94130859375005,44.865185546875004],[19.007128906250045,44.86918945312502],[19.042089843750063,44.87133789062503],[19.131542968750065,44.89960937500001],[19.23681640625003,44.914257812499955],[19.31269531250004,44.8974609375],[19.348632812500057,44.88090820312502],[19.35683593750005,44.858544921874994],[19.33447265625003,44.780664062500016],[19.29189453125005,44.69677734374997],[19.22314453125,44.609570312499976],[19.15136718750003,44.52734375],[19.132421875000063,44.48378906250002],[19.127343750000023,44.41455078125003],[19.118457031250074,44.359960937500006],[19.128320312500023,44.33027343750001],[19.15185546875003,44.302539062500045],[19.231542968750006,44.28056640625002],[19.33886718750003,44.22583007812506],[19.43017578124997,44.15449218749998],[19.547167968750017,44.073486328125],[19.583789062500017,44.04345703125003],[19.583691406249983,44.011083984375],[19.54951171875004,43.98710937499999],[19.449414062499983,43.97802734375],[19.34521484375,43.98510742187502],[19.305273437500034,43.99335937500004],[19.26806640625,43.98344726562496],[19.245019531249994,43.96503906250004],[19.257226562499994,43.943310546874955],[19.364062500000017,43.844775390625045],[19.488183593750076,43.703564453124955],[19.495117187500057,43.642871093750045],[19.47998046875,43.595166015624976],[19.451269531250002,43.56206054687499],[19.399609375000068,43.56757812499998],[19.360351562500057,43.59345703125001],[19.30078125,43.59179687500003],[19.254492187500063,43.584375],[19.19433593749997,43.53330078125],[19.164355468750014,43.53544921874999],[19.11279296874997,43.52773437500002],[19.080078125000057,43.51772460937502],[19.0283203125,43.53251953125002],[18.97421875,43.54233398437498],[18.95068359375,43.52666015624999],[18.94023437499999,43.49672851562502],[18.97382812500001,43.44238281250006],[19.036718750000034,43.35732421875002],[19.026660156250017,43.292431640624955],[18.97871093750001,43.28540039062502],[18.934667968750006,43.339453125000034],[18.895605468750063,43.34819335937504],[18.85107421875003,43.34633789062502],[18.749218750000068,43.283544921875006],[18.67421875000008,43.230810546875006],[18.656835937500006,43.19394531250006],[18.629980468750034,43.15366210937503],[18.621875,43.12460937500006],[18.623632812500063,43.027685546875034],[18.488476562500068,43.01215820312498],[18.460156250000065,42.997900390625006],[18.44384765625003,42.96845703125004],[18.455078125,42.844091796875006],[18.46601562500001,42.777246093749994],[18.543261718750045,42.674169921875034],[18.545898437500025,42.64160156249997],[18.534960937500045,42.62011718750003],[18.480078125000034,42.57919921875006],[18.453906250000045,42.56450195312499],[18.436328125000017,42.55971679687499],[18.346582031250023,42.58666992187497],[18.304003906250045,42.59941406249999],[18.123925781250048,42.690576171874994],[18.044531250000034,42.74125976562502],[17.918847656250023,42.80742187500002],[17.84130859375003,42.845068359375034],[17.80195312500001,42.90224609375005],[17.74023437500003,42.91547851562498],[17.667578125000063,42.897119140624994],[17.585156250000068,42.93837890625005],[17.64345703125005,42.959765625000045],[17.657812500000034,42.980078125],[17.650488281250063,43.006591796875],[17.62480468750007,43.04277343749998],[17.402246093750023,43.19892578125001],[17.293066406250063,43.30561523437498],[17.27529296875008,43.343847656250034],[17.27382812500005,43.44575195312501],[17.248046875000053,43.47021484375003],[17.084570312500034,43.516552734374955],[16.90185546875003,43.64902343750003],[16.713476562500034,43.77880859375003],[16.68769531250001,43.815039062500034],[16.59052734375004,43.913183593750034],[16.47207031250005,44.00258789062505],[16.377539062500063,44.05961914062502],[16.300097656250017,44.12451171874999],[16.214257812500023,44.21513671874999],[16.169824218750023,44.352001953124976],[16.13027343750005,44.473730468750006],[16.10341796875008,44.52099609375006],[16.04902343750001,44.537597656249964],[15.880078125000068,44.68193359374999],[15.736621093750047,44.765820312500004],[15.73798828125007,44.85639648437498],[15.761523437500074,45.00751953124995],[15.788085937500057,45.17895507812497],[15.822851562500034,45.20278320312505],[15.888281250000032,45.21572265625002],[15.963183593750019,45.21079101562498],[16.028320312500057,45.18959960937502],[16.157324218750063,45.07221679687498],[16.231054687500063,45.02661132812503],[16.293359375000048,45.00883789062496],[16.365039062500014,45.058349609375],[16.45351562499999,45.162011718749994],[16.53066406250008,45.21669921875002],[16.79082031250007,45.196875],[16.918652343749983,45.276562499999976]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Germany","sov_a3":"DEU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Germany","adm0_a3":"DEU","geou_dif":0,"geounit":"Germany","gu_a3":"DEU","su_dif":0,"subunit":"Germany","su_a3":"DEU","brk_diff":0,"name":"Germany","name_long":"Germany","brk_a3":"DEU","brk_name":"Germany","brk_group":null,"abbrev":"Ger.","postal":"D","formal_en":"Federal Republic of Germany","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Germany","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":5,"mapcolor13":1,"pop_est":82329758,"gdp_md_est":2918000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"DE","iso_a3":"DEU","iso_n3":"276","un_a3":"276","wb_a2":"DE","wb_a3":"DEU","woe_id":-99,"adm0_a3_is":"DEU","adm0_a3_us":"DEU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DEU.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.1982421875,53.919042968750034],[14.213671875000045,53.870751953124966],[14.172167968750017,53.874365234375006],[14.04833984375,53.86308593750002],[13.92578125,53.879052734374966],[13.902148437500074,53.93896484375],[13.921679687500045,53.996630859375045],[13.872460937500051,54.03627929687502],[13.827148437499972,54.059570312499964],[13.820410156250034,54.09282226562502],[13.827734375,54.12724609374999],[14.038867187500045,54.03457031250005],[14.211425781250028,53.95034179687502],[14.1982421875,53.919042968750034]]],[[[11.282812500000063,54.41796875],[11.129296875000051,54.41601562500003],[11.070703125000023,54.45600585937501],[11.01171875,54.46616210937503],[11.043457031250057,54.51547851562503],[11.0849609375,54.533398437499955],[11.233593750000068,54.50126953124999],[11.2802734375,54.438378906249966],[11.282812500000063,54.41796875]]],[[[13.709179687500011,54.382714843749994],[13.734179687500044,54.31542968749997],[13.707324218750074,54.281152343749994],[13.594921875000011,54.33818359374999],[13.48203125,54.33740234375],[13.414550781250028,54.24956054687496],[13.364355468750034,54.245849609375],[13.190039062500034,54.32563476562501],[13.162109375000028,54.36455078125001],[13.156347656250006,54.396923828124955],[13.18125,54.508984374999955],[13.176660156250051,54.544238281250045],[13.231445312500028,54.582763671875],[13.239941406250068,54.63842773437506],[13.336816406249994,54.697119140625],[13.422753906250021,54.699316406250006],[13.45009765625008,54.649609375],[13.491210937500028,54.615380859374966],[13.636035156250044,54.57700195312506],[13.65761718750008,54.55957031249997],[13.670703125000074,54.53544921875001],[13.603320312500045,54.488183593749994],[13.58046875000008,54.463964843750034],[13.601855468749989,54.425146484375034],[13.709179687500011,54.382714843749994]]],[[[8.587890625000028,54.71269531249999],[8.548925781250063,54.688183593749976],[8.453808593750068,54.69106445312502],[8.400390625,54.714111328125],[8.417675781250068,54.73867187500005],[8.46816406250005,54.757421875000034],[8.50996093750004,54.76030273437502],[8.573437500000011,54.748730468749955],[8.587890625000028,54.71269531249999]]],[[[9.254980468750034,54.808007812500044],[9.341992187499983,54.806298828124966],[9.49873046875004,54.84042968749998],[9.615820312500004,54.85541992187501],[9.661230468750006,54.834375],[9.725,54.82553710937497],[9.739746093750028,54.82553710937497],[9.745898437500045,54.80717773437495],[9.892285156250011,54.780615234375055],[9.953808593750011,54.73828125000005],[10.022167968750011,54.673925781250006],[10.028808593750028,54.58129882812506],[9.941308593750051,54.51464843750006],[9.86865234375,54.47246093749999],[10.143457031250021,54.488427734375044],[10.17080078125008,54.45019531249997],[10.212402343750028,54.408935546875],[10.360449218750006,54.43833007812506],[10.731542968750006,54.316259765625055],[10.95595703125008,54.375683593749976],[11.013378906250066,54.379150390624964],[11.064355468750051,54.28051757812506],[11.008593750000074,54.18115234374997],[10.810742187500068,54.075146484374955],[10.854589843750034,54.00981445312495],[10.917773437500045,53.99531250000004],[11.104296875000017,54.00917968750002],[11.39960937500004,53.94462890625001],[11.461132812500068,53.964746093750016],[11.700585937500078,54.11352539062506],[11.796289062500051,54.14545898437498],[12.111328125,54.168310546875006],[12.16865234375004,54.22587890625002],[12.296289062500023,54.283789062500006],[12.378515625,54.347021484375006],[12.575390625000038,54.4673828125],[12.779101562500074,54.44570312500005],[12.898046875000063,54.42265625],[13.028613281250017,54.411035156249994],[13.147460937500057,54.28271484375005],[13.448046875000017,54.14086914062503],[13.72421875000006,54.15322265624996],[13.822265625000057,54.019042968749964],[13.865527343750074,53.85336914062498],[13.950390625000038,53.801367187500034],[14.025,53.76743164062506],[14.25,53.73188476562501],[14.258886718750006,53.729638671874994],[14.266113281250057,53.707128906250034],[14.279882812500032,53.62475585937502],[14.29873046875005,53.55644531249999],[14.41455078125,53.28349609374996],[14.412304687500011,53.216748046874955],[14.410937500000076,53.19902343749999],[14.36855468750005,53.105566406250034],[14.293164062500068,53.026757812499966],[14.193652343750045,52.982324218749994],[14.138867187500066,52.93286132812503],[14.128613281250011,52.87822265625002],[14.253710937500015,52.78251953124996],[14.514062500000021,52.64560546875003],[14.619433593750015,52.52851562499998],[14.569726562499994,52.431103515624955],[14.554589843750021,52.35966796874996],[14.573925781250066,52.31416015625001],[14.615625,52.277636718750045],[14.679882812500068,52.25],[14.705371093750015,52.207470703124955],[14.692382812500027,52.150048828124994],[14.704589843750027,52.110205078125034],[14.752539062500032,52.08183593750002],[14.748144531250034,52.07080078124999],[14.724804687500068,52.030859375000034],[14.69296875000006,51.95800781250003],[14.674902343750034,51.90483398437502],[14.601660156250034,51.832373046875006],[14.623925781250023,51.77080078124999],[14.681347656250013,51.69819335937503],[14.72490234374999,51.661718750000055],[14.73867187500005,51.62714843750004],[14.7109375,51.544921874999964],[14.724707031250063,51.523876953124955],[14.905957031250042,51.463330078124955],[14.935546875000027,51.435351562500045],[14.953125,51.37714843749998],[15.016601562499998,51.25273437499995],[14.963867187499998,51.09511718749999],[14.917480468750057,51.008740234374976],[14.814257812499987,50.871630859375045],[14.809375,50.858984375000034],[14.797460937500032,50.84233398437502],[14.76650390625005,50.81831054687501],[14.72333984375004,50.81469726562497],[14.658203125,50.832617187500006],[14.613574218750044,50.855566406250055],[14.623828125000015,50.91474609375004],[14.595214843750057,50.91860351562502],[14.559667968750006,50.954931640625034],[14.545703124999989,50.99394531249998],[14.50732421875,51.009863281250034],[14.367285156250063,51.02626953125002],[14.319726562500051,51.03779296874995],[14.283203125,51.029492187499955],[14.255859375,51.00185546875002],[14.273339843750023,50.97690429687498],[14.299414062500006,50.95258789062501],[14.377050781250006,50.91406249999997],[14.369042968750081,50.89873046874996],[14.201757812500004,50.86123046875005],[14.096484375000045,50.82275390625003],[13.998437500000051,50.80112304687506],[13.898535156250034,50.76127929687502],[13.701367187500011,50.716503906249955],[13.556738281250034,50.70463867187504],[13.52656250000004,50.692822265625004],[13.472558593750051,50.61694335937503],[13.436132812499975,50.60107421874997],[13.401171875000074,50.60932617187498],[13.374609375000063,50.621728515625016],[13.341015625000068,50.611425781250055],[13.306054687500051,50.58632812499999],[13.269531250000057,50.57641601562503],[13.237695312500051,50.576757812500006],[13.18115234375,50.510498046875],[13.016406250000017,50.490380859374994],[12.997070312499972,50.45605468750003],[12.966796875000028,50.41621093749998],[12.942675781249989,50.40644531250004],[12.868261718750034,50.422216796875055],[12.765429687500045,50.43095703124996],[12.706445312500021,50.409130859374955],[12.635546875000045,50.39707031249998],[12.549023437500011,50.393408203125034],[12.452636718749998,50.349804687499955],[12.358593750000011,50.27324218749999],[12.3056640625,50.205712890624994],[12.27734375,50.18144531250002],[12.231152343749983,50.24487304687497],[12.174804687500057,50.28837890624995],[12.134863281250006,50.31093750000002],[12.099218750000034,50.31098632812504],[12.089843749999972,50.30175781250003],[12.089746093750051,50.26855468749999],[12.12783203125008,50.21342773437496],[12.175,50.17583007812504],[12.182519531250021,50.148046875000055],[12.207812500000045,50.09750976562497],[12.276464843749977,50.042333984375006],[12.38417968750008,49.99858398437498],[12.457617187500034,49.95551757812501],[12.512011718750015,49.89580078125002],[12.5125,49.87744140624999],[12.497558593749998,49.85307617187502],[12.471875,49.83007812500002],[12.450195312500028,49.80014648437506],[12.390527343750051,49.73964843749999],[12.408203125,49.71318359375002],[12.45703125,49.679785156250055],[12.500292968750015,49.63969726562496],[12.555761718750034,49.574853515624994],[12.632031250000038,49.46123046875002],[12.68115234375,49.41450195312501],[12.747851562500017,49.36621093750003],[12.813378906250051,49.32934570312497],[12.91669921875004,49.33046875000002],[13.023730468750074,49.260107421875006],[13.14052734375008,49.15834960937505],[13.227832031250017,49.11166992187503],[13.288769531250066,49.09746093749999],[13.339062500000011,49.06079101562497],[13.383691406250051,49.00810546874999],[13.401171875000074,48.97758789062499],[13.440722656250045,48.95556640625002],[13.547656250000074,48.95966796874998],[13.68496093750005,48.87670898437506],[13.769921875000051,48.81596679687501],[13.814746093750017,48.76694335937498],[13.802929687500011,48.74750976562501],[13.797460937500063,48.686425781249994],[13.79882812499997,48.62167968750006],[13.785351562499983,48.58745117187502],[13.723925781249989,48.542382812499966],[13.692187500000017,48.53276367187496],[13.675195312500021,48.523046875000034],[13.486621093750074,48.58183593750002],[13.471679687500028,48.57182617187501],[13.459863281250023,48.564550781250034],[13.409375,48.394140625000055],[13.374609375000063,48.361376953125045],[13.322851562500004,48.33125],[13.215234375000023,48.301904296874994],[13.140429687500045,48.289941406249966],[13.082128906249975,48.27509765624995],[12.897460937500028,48.20371093749997],[12.814257812500045,48.160839843749955],[12.760351562500063,48.10698242187499],[12.760058593750015,48.07597656249999],[12.849902343750015,47.98481445312498],[12.95351562500008,47.890625],[12.954199218750032,47.807763671874966],[12.908300781250006,47.745800781249955],[12.897656250000068,47.721875],[12.928125,47.71284179687498],[12.98554687500004,47.70942382812501],[13.033593750000051,47.69873046875006],[13.05410156250005,47.65512695312503],[13.047949218750034,47.57915039062502],[13.031542968750074,47.50800781250001],[13.01435546875004,47.478076171875045],[12.968066406250017,47.475683593750006],[12.878906250000057,47.50644531250003],[12.809375,47.542187499999955],[12.782812500000034,47.56416015624998],[12.781152343750051,47.590429687500006],[12.796191406249989,47.60703125],[12.771386718750023,47.63940429687503],[12.685839843750074,47.66933593750002],[12.594238281249972,47.65629882812502],[12.52656250000004,47.636132812499994],[12.482910156250028,47.637304687500055],[12.435742187500011,47.66611328124998],[12.36318359375008,47.68818359375004],[12.268359375000017,47.70273437499998],[12.209277343750074,47.71826171875003],[12.196875,47.709082031250034],[12.203808593750011,47.64672851562503],[12.185644531250063,47.61953125],[11.716796875,47.58349609375003],[11.57392578125004,47.54975585937498],[11.469921875000066,47.50610351562497],[11.392968750000023,47.487158203125034],[11.374121093750006,47.46025390624996],[11.297949218750032,47.424902343750034],[11.2119140625,47.41362304687496],[11.191210937500045,47.42519531250002],[11.136035156249989,47.408886718749976],[11.041992187500028,47.39311523437496],[10.98085937499999,47.398144531250004],[10.952148437500028,47.42670898437495],[10.893945312500051,47.470458984375],[10.870605468750028,47.500781250000045],[10.873046874999972,47.52021484375001],[10.741601562500023,47.52412109375001],[10.65869140625,47.547216796875006],[10.482812500000051,47.54179687499996],[10.439453125000027,47.55156249999999],[10.43037109375004,47.54106445312498],[10.403906250000063,47.41699218750003],[10.369140625,47.366064453125034],[10.312792968750074,47.313427734374976],[10.240625,47.284130859374955],[10.18300781250008,47.27880859375002],[10.185742187500011,47.317187500000045],[10.200292968750063,47.36342773437505],[10.158789062500034,47.37426757812502],[10.096484375000045,47.379589843749955],[10.066308593750023,47.39335937500002],[10.074218750000028,47.42851562499999],[10.059863281250045,47.44907226562498],[10.034082031250023,47.47358398437501],[9.971582031249994,47.50532226562498],[9.839160156250017,47.55229492187496],[9.748925781250021,47.575537109375006],[9.715136718750074,47.55078125000002],[9.650585937500068,47.52587890625],[9.548925781250063,47.53403320312498],[9.524023437500032,47.52421875000002],[9.35,47.59892578124996],[9.182812500000068,47.67070312500002],[9.127539062500006,47.67070312500002],[8.881152343750074,47.65639648437505],[8.874023437500057,47.66269531249998],[8.831152343750006,47.70361328124997],[8.793066406250063,47.71655273437503],[8.770117187500004,47.70991210937501],[8.75478515625008,47.69804687499999],[8.728320312500017,47.700048828125055],[8.617871093749983,47.76611328125],[8.572656250000023,47.775634765625],[8.509863281250006,47.76689453124998],[8.435742187500011,47.73134765625002],[8.403417968750004,47.687792968750045],[8.413281250000068,47.66269531249998],[8.451757812500006,47.65180664062498],[8.55234375000006,47.65913085937498],[8.56708984375004,47.65190429687502],[8.57050781250004,47.63779296874998],[8.55947265625008,47.62402343750003],[8.477636718750034,47.61269531250002],[8.454003906249993,47.59619140625003],[8.430078125000023,47.592138671875006],[8.414746093750011,47.58959960937503],[8.327832031250068,47.60693359375],[8.198242187500028,47.60693359375],[8.09375,47.57617187500002],[7.927050781250045,47.56386718750002],[7.698046875000017,47.56987304687499],[7.615625,47.59272460937504],[7.565429687500001,47.606542968750006],[7.529394531250034,47.67387695312496],[7.538574218750028,47.77363281250004],[7.593261718750056,47.90566406250002],[7.608496093750063,48.002587890625044],[7.584179687499983,48.064306640625006],[7.616601562500023,48.15678710937502],[7.705664062500063,48.280029296875],[7.765136718749999,48.410009765625],[7.794824218749994,48.54682617187498],[7.837988281250006,48.636035156250045],[7.92275390625005,48.69853515624999],[8.124023437500028,48.87329101562497],[8.140332031250038,48.88642578124998],[8.134863281250006,48.97358398437498],[8.080664062500063,48.98588867187499],[8.001269531250045,49.01093750000003],[7.799218750000023,49.04189453125005],[7.610937500000033,49.061767578125],[7.525488281250033,49.086376953124955],[7.450585937500051,49.15219726562503],[7.404199218749994,49.15307617187503],[7.313378906250079,49.12954101562505],[7.19990234375004,49.113623046875],[7.117382812500011,49.12753906249997],[7.065722656250074,49.12485351562498],[7.03671875,49.112695312499994],[7.022167968750068,49.123437500000044],[7.001464843750028,49.17988281249998],[6.958300781250017,49.19462890624999],[6.891210937500034,49.20751953125003],[6.84951171875008,49.20195312499996],[6.820703125000051,49.173925781250034],[6.77626953125008,49.154150390625],[6.735449218750006,49.16059570312498],[6.607617187499983,49.290869140625034],[6.574707031250028,49.31967773437506],[6.566308593750023,49.34619140625003],[6.534277343750063,49.394677734374966],[6.458105468750006,49.44287109375002],[6.38222656250008,49.45815429687502],[6.344335937500005,49.45273437499997],[6.348437500000045,49.51269531250003],[6.37832031250008,49.59960937499997],[6.40673828125,49.64497070312498],[6.444628906250017,49.682031249999966],[6.484765625000023,49.70781249999999],[6.49375,49.75439453124997],[6.4873046875,49.79848632812499],[6.440917968750057,49.80532226562505],[6.32460937500008,49.83789062500003],[6.256054687500039,49.87216796874998],[6.204882812500017,49.915136718750034],[6.138183593749999,49.97431640625001],[6.10976562500008,50.034375],[6.108300781250051,50.09423828125003],[6.116503906250045,50.120996093749966],[6.12128906250004,50.13935546874998],[6.175097656250074,50.23266601562497],[6.36445312500001,50.31616210937503],[6.343652343750051,50.400244140625006],[6.340917968750006,50.451757812500034],[6.294921875000057,50.485498046874966],[6.20302734375008,50.499121093750006],[6.1787109375,50.52250976562496],[6.168457031250057,50.54536132812501],[6.235937500000033,50.59667968749997],[6.154492187500039,50.63725585937499],[6.119433593750016,50.67924804687502],[6.005957031249977,50.73222656249996],[5.993945312500017,50.75043945312503],[6.048437500000034,50.904882812500055],[6.0068359375,50.94995117187499],[5.955078125,50.97294921874999],[5.894726562500068,50.98422851562506],[5.867187500000057,51.00566406249999],[5.857519531250034,51.030126953125006],[5.86835937500001,51.0453125],[5.939257812500074,51.04082031250004],[5.961035156250063,51.05668945312498],[6.129980468750034,51.14741210937501],[6.136914062500011,51.16484374999998],[6.113378906250034,51.174707031249966],[6.082421875000023,51.17998046874996],[6.074804687500063,51.19902343750004],[6.075878906250011,51.22412109374999],[6.166210937500039,51.35483398437498],[6.192871093750057,51.41059570312498],[6.198828125000034,51.45],[6.193261718750051,51.48891601562502],[6.1416015625,51.55009765624996],[6.091113281250016,51.59892578124996],[6.08935546875,51.63779296874998],[6.052734375,51.65825195312499],[5.948535156250017,51.762402343749955],[5.948730468750057,51.802685546875004],[6.007617187500045,51.83398437499997],[6.089843750000028,51.853955078124955],[6.1171875,51.870410156250045],[6.166503906249999,51.88076171875002],[6.29707031250004,51.85073242187502],[6.355664062500011,51.82465820312504],[6.372167968749977,51.830029296874976],[6.425,51.85839843749997],[6.517578125000028,51.853955078124955],[6.741796875000062,51.91088867187503],[6.775195312500017,51.93828125000002],[6.800390625,51.96738281249997],[6.802441406250068,51.98017578125001],[6.715625,52.03618164062496],[6.712988281250062,52.056884765625],[6.724511718749994,52.080224609374966],[6.749023437500028,52.09868164062499],[6.800390625,52.111230468749966],[6.855078125000034,52.13579101562502],[6.977246093750068,52.20551757812501],[7.019628906250006,52.26601562499999],[7.032617187500079,52.33149414062501],[7.035156250000057,52.38022460937498],[7.001855468750022,52.41899414062495],[6.96816406250008,52.44409179687502],[6.92207031250001,52.440283203125034],[6.832519531249971,52.442285156250016],[6.748828125000074,52.464013671874994],[6.702929687500045,52.49921874999998],[6.69160156250004,52.530175781249966],[6.712402343750028,52.549658203125034],[6.71875,52.573583984375034],[6.705371093750016,52.59765625000006],[6.710742187500045,52.617871093749976],[6.74843750000008,52.63408203125002],[7.013183593750028,52.63354492187497],[7.033007812500045,52.65136718749997],[7.050878906250063,52.74477539062499],[7.117089843750051,52.88701171875002],[7.179492187500045,52.966210937499994],[7.189941406250057,52.99951171875003],[7.188964843750028,53.187207031249976],[7.197265625000028,53.28227539062499],[7.152050781250068,53.32695312500001],[7.053320312500033,53.375830078125034],[7.074316406250034,53.477636718750006],[7.107128906250068,53.556982421875],[7.20644531250005,53.65454101562497],[7.285253906250034,53.681347656250004],[7.629199218750017,53.69726562499997],[8.00927734375,53.69072265624998],[8.167089843750004,53.543408203124976],[8.108496093750063,53.46767578125002],[8.200781250000034,53.43242187500002],[8.245214843750006,53.44531249999997],[8.279003906250068,53.51118164062498],[8.301562500000044,53.58413085937502],[8.333886718750051,53.606201171875],[8.45136718750001,53.55170898437498],[8.492675781249972,53.514355468750004],[8.495214843750063,53.39423828124998],[8.53847656250008,53.55688476562497],[8.50625,53.670751953125],[8.528417968750063,53.781103515625006],[8.57558593750008,53.838476562500055],[8.618945312500045,53.875],[8.897753906250074,53.83569335937503],[9.20556640625,53.85595703124997],[9.321972656250011,53.81347656250003],[9.585351562500021,53.600488281249966],[9.673144531250045,53.565625],[9.783984375000074,53.554638671874955],[9.63125,53.600195312500006],[9.31201171875,53.859130859375],[9.216406249999977,53.89121093750006],[9.069628906250017,53.90092773437499],[8.978125,53.92622070312498],[8.92041015625,53.96533203125006],[8.903515625000011,54.00029296874999],[8.906640625000023,54.26079101562502],[8.8515625,54.29956054687503],[8.780371093750063,54.31303710937502],[8.736035156250011,54.29521484375002],[8.64492187500008,54.29497070312499],[8.625781250000017,54.353955078125004],[8.648046875,54.39765625],[8.831152343750006,54.42753906249999],[8.951855468750011,54.46757812499996],[8.957226562500038,54.538330078125],[8.880957031250034,54.59394531249995],[8.789648437500006,54.695947265625044],[8.682324218750068,54.791845703125034],[8.670312500000023,54.90341796875003],[8.670703125000017,54.9033203125],[8.857226562499989,54.90112304687499],[8.90292968750006,54.89692382812495],[9.185839843750074,54.844677734374955],[9.254980468750034,54.808007812500044]]],[[[8.307714843750034,54.786962890625034],[8.284667968750057,54.76708984374997],[8.295703124999989,54.90830078125006],[8.405175781249994,55.05874023437496],[8.451464843750017,55.05537109374998],[8.404101562500045,55.01474609374997],[8.390429687500017,54.98627929687504],[8.371191406250006,54.92939453124998],[8.3798828125,54.89985351562501],[8.629589843750068,54.89174804687496],[8.600585937500028,54.86538085937502],[8.34736328125004,54.84760742187504],[8.307714843750034,54.786962890625034]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Country","admin":"Denmark","adm0_a3":"DNK","geou_dif":0,"geounit":"Denmark","gu_a3":"DNK","su_dif":0,"subunit":"Denmark","su_a3":"DNK","brk_diff":0,"name":"Denmark","name_long":"Denmark","brk_a3":"DNK","brk_name":"Denmark","brk_group":null,"abbrev":"Den.","postal":"DK","formal_en":"Kingdom of Denmark","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Denmark","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":5500510,"gdp_md_est":203600,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"DK","iso_a3":"DNK","iso_n3":"208","un_a3":"208","wb_a2":"DK","wb_a3":"DNK","woe_id":-99,"adm0_a3_is":"DNK","adm0_a3_us":"DNK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DNK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[11.361425781250006,54.891650390625045],[11.538378906250074,54.82958984374999],[11.658105468750051,54.83315429687502],[11.739550781250017,54.80742187500002],[11.758984374999983,54.767675781250006],[11.765917968750072,54.67944335937505],[11.68037109375004,54.653710937499966],[11.5859375,54.66245117187506],[11.457421875000023,54.62885742187495],[11.035546875000051,54.77309570312505],[11.041699218750068,54.89335937500002],[11.058593750000027,54.940576171874966],[11.258496093749983,54.95180664062502],[11.361425781250006,54.891650390625045]]],[[[10.484375,54.84755859375002],[10.417285156250045,54.83715820312502],[10.34052734375004,54.85893554687501],[10.215625,54.940966796875045],[10.199902343750068,54.962744140625034],[10.265527343750023,54.94882812500003],[10.346972656250017,54.90595703125001],[10.413671875,54.896826171875034],[10.504882812500028,54.86054687500001],[10.484375,54.84755859375002]]],[[[12.549218750000051,54.96577148437503],[12.511035156250074,54.950878906250004],[12.357519531250063,54.961816406250016],[12.18447265625008,54.89248046875002],[12.118847656250038,54.91440429687506],[12.143652343750032,54.95869140625001],[12.161718750000063,54.974804687500004],[12.219921875000011,54.99360351562501],[12.258789062500028,55.02109375000003],[12.274023437500032,55.064111328124994],[12.31005859375,55.040917968749966],[12.417187500000068,55.03120117187495],[12.469531250000072,55.017480468749994],[12.51328125,54.99731445312497],[12.549218750000051,54.96577148437503]]],[[[10.061230468750068,54.88637695312502],[9.957128906249977,54.87246093750002],[9.903906250000063,54.896630859374994],[9.80625,54.90600585937503],[9.77119140625004,55.059912109375034],[9.78125,55.06904296875001],[9.830371093750015,55.05825195312505],[9.998828125000045,54.986474609374994],[10.05771484375006,54.90791015624998],[10.061230468750068,54.88637695312502]]],[[[10.73408203125001,54.750732421875],[10.689746093750017,54.745068359375004],[10.629492187500004,54.826074218749994],[10.621679687500006,54.851416015625],[10.692480468750063,54.903271484375004],[10.738281250000057,54.96201171874998],[10.856738281250045,55.052197265624955],[10.925,55.157861328124994],[10.951074218750078,55.15620117187501],[10.920800781250021,55.062109375000034],[10.765234375000034,54.799658203125034],[10.73408203125001,54.750732421875]]],[[[15.087695312500015,55.021875],[15.050781250000057,55.00493164062502],[14.885546875000047,55.03295898437506],[14.68417968750006,55.10224609375004],[14.713671875000015,55.238037109375],[14.765332031250068,55.296728515625034],[15.132617187500015,55.14453125000003],[15.137109375000051,55.08715820312497],[15.087695312500015,55.021875]]],[[[10.645117187500006,55.60981445312498],[10.686816406250045,55.5576171875],[10.738085937500017,55.44633789062496],[10.819238281250021,55.321875],[10.785351562500068,55.26977539062497],[10.808398437500045,55.203027343749966],[10.785253906250034,55.13339843749998],[10.623828125000015,55.05244140625001],[10.44277343750008,55.04877929687498],[10.254589843750011,55.08789062500006],[9.988769531250028,55.163183593750006],[9.967382812500034,55.20546875000002],[9.93007812500008,55.22890625],[9.858984375000063,55.35722656250002],[9.860644531250045,55.515478515625034],[9.994238281250006,55.535302734374966],[10.286132812500057,55.61083984375],[10.353613281250034,55.59897460937497],[10.424023437500068,55.56035156250002],[10.505078125000068,55.55805664062498],[10.622753906250068,55.61284179687496],[10.645117187500006,55.60981445312498]]],[[[12.665722656250068,55.596533203125006],[12.571582031250074,55.55400390624996],[12.550878906250034,55.55625],[12.520312500000017,55.614599609375055],[12.569921875,55.65009765625001],[12.59921875,55.68022460937501],[12.620019531250078,55.67934570312502],[12.6484375,55.646777343750045],[12.665722656250068,55.596533203125006]]],[[[10.607324218750023,55.783056640625],[10.590332031250027,55.76508789062498],[10.526953125,55.78378906249998],[10.520312500000072,55.848486328125006],[10.54433593750008,55.906591796875034],[10.51611328125,55.95854492187496],[10.547167968750017,55.99194335937503],[10.636328125000063,55.91416015624998],[10.66171875,55.877587890624994],[10.627343750000023,55.83388671874996],[10.607324218750023,55.783056640625]]],[[[12.56875,55.785058593749966],[12.57119140625008,55.684960937499994],[12.545214843750015,55.65581054687502],[12.507031250000068,55.63662109375002],[12.40712890625005,55.61625976562504],[12.320605468750015,55.587841796875004],[12.243457031250017,55.53789062499995],[12.21503906250001,55.466503906249976],[12.275390625000027,55.41425781250001],[12.385156250000023,55.38564453125005],[12.413085937500028,55.28618164062502],[12.32246093750004,55.23710937499999],[12.089941406250006,55.18813476562505],[12.065527343750004,55.069921875000034],[12.073046875000017,54.976757812499955],[12.068847656250057,54.90903320312503],[12.050390625000034,54.81533203125002],[11.8623046875,54.772607421875016],[11.74091796875004,54.91533203124995],[11.73984375,54.97246093749999],[11.70361328125,55.03916015624998],[11.696777343750028,55.09599609375002],[11.653808593750057,55.186914062499966],[11.475878906250045,55.2115234375],[11.406835937500004,55.21474609375005],[11.310253906250068,55.19785156249998],[11.286328125000068,55.20444335937498],[11.170703125000045,55.32861328124997],[11.189746093750017,55.465625],[11.12802734375006,55.53476562500003],[11.119531250000023,55.566064453125016],[11.12099609375005,55.600732421874994],[11.070312500000027,55.62929687500002],[11.0087890625,55.644433593749994],[10.978906250000051,55.721533203125006],[11.049609375000072,55.740234374999964],[11.224414062500074,55.73120117187499],[11.275488281249977,55.73647460937502],[11.322265625000028,55.752539062500006],[11.463671875000045,55.87929687499999],[11.459570312500006,55.9072265625],[11.474707031249977,55.943457031250006],[11.627734375000074,55.95688476562497],[11.695898437500006,55.90791015625004],[11.682226562499977,55.82949218750005],[11.690917968749972,55.72900390625],[11.783593750000023,55.70166015625003],[11.819726562500023,55.69765625000002],[11.858300781250051,55.771875],[11.885351562500063,55.807958984375006],[11.92207031250001,55.82807617187504],[11.934570312500057,55.895898437499994],[11.912792968750068,55.93730468749999],[11.86640625000004,55.96816406249996],[12.039648437500063,56.05214843750002],[12.218945312499983,56.11865234374997],[12.323242187500028,56.12211914062499],[12.428222656249998,56.10585937500005],[12.52578125000008,56.083398437499994],[12.578710937500004,56.06406250000006],[12.608398437500028,56.033007812500045],[12.542968750000028,55.95898437500006],[12.52480468750005,55.91845703125006],[12.56875,55.785058593749966]]],[[[11.052148437500051,57.25253906250006],[11.011425781250011,57.229101562500006],[10.873828125000045,57.26225585937499],[10.9345703125,57.30859375000003],[11.085742187500045,57.329931640625],[11.174511718750011,57.32290039062499],[11.076855468750011,57.27690429687496],[11.052148437500051,57.25253906250006]]],[[[10.436914062500023,57.17226562500005],[10.338476562500063,57.02133789062503],[10.29609375000004,56.99912109375003],[10.28701171875005,56.82294921875003],[10.296679687500074,56.780908203124994],[10.282714843750057,56.62050781249999],[10.383593750000017,56.55483398437502],[10.490234375000057,56.52050781250006],[10.84589843750004,56.52172851562503],[10.882812500000028,56.49287109375001],[10.926171875000051,56.44326171875002],[10.894433593750078,56.35903320312502],[10.856445312500057,56.29550781250003],[10.753417968750028,56.24199218749998],[10.621191406250006,56.20209960937501],[10.538964843750051,56.20034179687502],[10.42695312500004,56.27617187500002],[10.37373046875004,56.25156250000006],[10.31875,56.212890625],[10.226660156250006,56.00537109375],[10.18300781250008,55.86518554687504],[10.159375,55.85380859375002],[10.107324218750023,55.87446289062498],[10.017382812500017,55.876074218750034],[9.903710937500023,55.84282226562502],[9.962011718750006,55.813085937500006],[10.02363281250004,55.76142578125004],[9.9990234375,55.73554687500001],[9.899023437500063,55.70756835937498],[9.810351562500017,55.650976562500006],[9.773242187500017,55.608154296875],[9.661425781250045,55.55747070312506],[9.591113281250017,55.49321289062502],[9.625585937500032,55.41357421875006],[9.640234375,55.34365234375002],[9.670996093750063,55.26640624999998],[9.643261718749983,55.204736328125044],[9.504785156250023,55.11625976562496],[9.453710937500006,55.03955078125005],[9.572363281250034,55.04052734375],[9.64541015625008,55.022802734375006],[9.688183593750011,55.00014648437502],[9.732324218750023,54.96801757812505],[9.705273437500011,54.928320312500034],[9.739746093750028,54.82553710937497],[9.725,54.82553710937497],[9.661230468750006,54.834375],[9.615820312500004,54.85541992187501],[9.49873046875004,54.84042968749998],[9.341992187499983,54.806298828124966],[9.254980468750034,54.808007812500044],[9.185839843750074,54.844677734374955],[8.90292968750006,54.89692382812495],[8.857226562499989,54.90112304687499],[8.670703125000017,54.9033203125],[8.670312500000023,54.90341796875003],[8.661425781250074,54.98593750000006],[8.638281250000063,55.04555664062502],[8.572949218749983,55.13427734375],[8.669824218750023,55.155664062499994],[8.651074218750011,55.32856445312495],[8.61591796875004,55.41821289062503],[8.345312500000063,55.510302734375045],[8.132128906250074,55.59980468749998],[8.181347656250068,55.90117187499999],[8.202343750000068,55.98237304687501],[8.121484375000023,56.13989257812505],[8.129882812500057,56.32119140625002],[8.16396484375008,56.60688476562498],[8.231738281250017,56.61806640625002],[8.281445312500011,56.61669921875003],[8.47314453125,56.56542968750006],[8.55292968750001,56.560302734375],[8.607617187500038,56.51450195312498],[8.671679687500045,56.49565429687496],[8.718066406250074,56.544287109375006],[8.736132812500017,56.62744140625],[8.88808593750008,56.73505859374998],[8.99453125000008,56.77480468749999],[9.06708984375004,56.79384765625005],[9.14033203125004,56.75043945312501],[9.196386718750006,56.70166015625],[9.20966796875004,56.80839843749999],[9.2548828125,57.01171875000003],[9.11044921875006,57.043652343749955],[8.992773437499977,57.01611328125003],[8.876074218750006,56.88725585937499],[8.771972656250028,56.72529296875004],[8.603125,56.710400390625004],[8.468359375,56.66455078124999],[8.3466796875,56.71210937500001],[8.268261718750011,56.754003906250006],[8.26630859375004,56.81533203124999],[8.284082031250023,56.85234374999999],[8.427050781250017,56.98442382812496],[8.618554687500051,57.11127929687498],[8.8115234375,57.11005859374998],[8.952246093750006,57.15058593749998],[9.036328125000068,57.155419921874994],[9.298828125,57.14653320312496],[9.43359375,57.17431640625003],[9.554296874999977,57.23247070312496],[9.815136718750011,57.478417968749994],[9.96230468750008,57.58095703124999],[10.259082031250045,57.61704101562498],[10.533300781250034,57.73540039062501],[10.609960937500034,57.73691406249998],[10.480957031250028,57.64868164062502],[10.460253906250074,57.61455078125002],[10.444628906250017,57.56220703125001],[10.537109375000028,57.44853515625001],[10.517578125000027,57.379345703124955],[10.52412109375004,57.24321289062501],[10.436914062500023,57.17226562500005]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Spain","sov_a3":"ESP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Spain","adm0_a3":"ESP","geou_dif":0,"geounit":"Spain","gu_a3":"ESP","su_dif":0,"subunit":"Spain","su_a3":"ESP","brk_diff":0,"name":"Spain","name_long":"Spain","brk_a3":"ESP","brk_name":"Spain","brk_group":null,"abbrev":"Sp.","postal":"E","formal_en":"Kingdom of Spain","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Spain","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":5,"mapcolor13":5,"pop_est":40525002,"gdp_md_est":1403000,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"ES","iso_a3":"ESP","iso_n3":"724","un_a3":"724","wb_a2":"ES","wb_a3":"ESP","woe_id":-99,"adm0_a3_is":"ESP","adm0_a3_us":"ESP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":5,"abbrev_len":3,"tiny":-99,"homepart":1,"filename":"ESP.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-17.887939453125,27.809570312500053],[-17.98476562500002,27.64638671875002],[-18.106591796874966,27.707470703125036],[-18.135937499999983,27.727929687500023],[-18.160546874999937,27.761474609375025],[-18.043359374999966,27.768115234375045],[-17.924511718749983,27.85014648437496],[-17.887939453125,27.809570312500053]]],[[[-15.400585937499955,28.147363281250023],[-15.406689453124953,28.07050781250001],[-15.383154296874977,27.992822265624994],[-15.389160156249941,27.87470703125001],[-15.43676757812497,27.810693359375023],[-15.559375,27.746972656249994],[-15.65576171875,27.758398437500006],[-15.71030273437492,27.784082031250023],[-15.807324218749953,27.887548828125034],[-15.809472656249964,27.994482421874977],[-15.720947265624941,28.064160156249955],[-15.682763671874996,28.15405273437497],[-15.452783203124936,28.13691406250004],[-15.432714843749947,28.154248046875008],[-15.415478515624981,28.159326171874994],[-15.400585937499955,28.147363281250023]]],[[[-17.184667968749977,28.02197265624997],[-17.225390624999932,28.013525390625034],[-17.27392578124997,28.03828125000001],[-17.324902343749955,28.117675781250025],[-17.290332031249932,28.17631835937499],[-17.258593749999957,28.203173828125045],[-17.21435546875,28.199267578125045],[-17.12963867187497,28.15595703125001],[-17.103759765624943,28.111132812500017],[-17.10107421875,28.083447265624983],[-17.184667968749977,28.02197265624997]]],[[[-16.334472656249968,28.379931640624985],[-16.41821289062497,28.15141601562496],[-16.496240234374994,28.061914062500023],[-16.54277343749996,28.032080078125006],[-16.65800781249999,28.007177734374977],[-16.79472656249996,28.149169921875057],[-16.86601562499999,28.293261718750014],[-16.905322265625017,28.33959960937503],[-16.843066406249932,28.376123046875023],[-16.75205078124995,28.369824218749983],[-16.556835937499983,28.400488281250002],[-16.51743164062495,28.412695312500006],[-16.318994140624937,28.558203124999977],[-16.12363281249992,28.57597656249996],[-16.11914062499997,28.52827148437501],[-16.334472656249968,28.379931640624985]]],[[[-14.196777343749943,28.169287109375063],[-14.332617187500006,28.056005859374977],[-14.468603515624977,28.082373046875034],[-14.491796874999922,28.100927734374977],[-14.355566406249977,28.12968749999999],[-14.231982421875017,28.215820312500025],[-14.152587890625,28.406640625000023],[-14.028369140625017,28.617431640625057],[-14.003369140624983,28.70668945312502],[-13.954150390624989,28.741455078124996],[-13.886279296874932,28.744677734375045],[-13.85722656249996,28.738037109375032],[-13.827148437499972,28.69121093749999],[-13.827587890624955,28.58515624999995],[-13.862988281249983,28.409326171875023],[-13.928027343749989,28.253466796874985],[-14.196777343749943,28.169287109375063]]],[[[-17.83427734374999,28.49321289062496],[-17.859375,28.485693359375034],[-17.88212890624996,28.564599609375048],[-18.000781249999985,28.758251953124955],[-17.928808593749977,28.844580078125063],[-17.797558593749983,28.84677734375006],[-17.74453125,28.786572265624958],[-17.7265625,28.724462890625006],[-17.751611328124937,28.688574218749977],[-17.74438476562497,28.616015625000045],[-17.75800781250001,28.56909179687497],[-17.83427734374999,28.49321289062496]]],[[[-13.715966796874966,28.911230468750034],[-13.78398437499996,28.84545898437497],[-13.85991210937496,28.869091796874983],[-13.823632812499966,29.013330078124962],[-13.78818359374992,29.056103515624983],[-13.650097656249955,29.118994140625006],[-13.535058593749966,29.144287109375],[-13.501416015624955,29.211230468749957],[-13.463574218749953,29.237207031250023],[-13.422949218749949,29.197509765625025],[-13.453759765624993,29.151367187500025],[-13.477929687499966,29.006591796875025],[-13.554687499999972,28.960205078125004],[-13.715966796874966,28.911230468750034]]],[[[1.593945312500068,38.672070312499955],[1.571191406250051,38.65883789062502],[1.504980468750063,38.670996093750006],[1.40576171875,38.670996093750006],[1.401953125000034,38.71142578124997],[1.41718750000004,38.739648437500044],[1.436328125000017,38.76821289062499],[1.496875,38.7119140625],[1.59267578125008,38.70146484374999],[1.593945312500068,38.672070312499955]]],[[[1.445214843750051,38.91870117187503],[1.408984375000045,38.857275390625034],[1.256933593750063,38.879003906250006],[1.223339843750068,38.90385742187502],[1.25625,38.97338867187497],[1.2998046875,38.98173828124999],[1.302539062500017,39.03115234375002],[1.3486328125,39.080810546875],[1.564453125,39.12104492187504],[1.613183593750079,39.08740234375003],[1.623632812499977,39.03881835937497],[1.494531250000051,38.932519531249994],[1.445214843750051,38.91870117187503]]],[[[3.145312500000017,39.79008789062499],[3.24111328125008,39.756689453125034],[3.34218750000008,39.78671875000003],[3.39589843750008,39.77729492187498],[3.448925781250068,39.76123046874997],[3.461816406250022,39.69775390625003],[3.414648437500006,39.62714843750001],[3.348730468750063,39.55566406250003],[3.29296875,39.47705078125],[3.244726562500034,39.38662109375005],[3.154589843750045,39.333251953125],[3.072851562500006,39.30126953124997],[2.900097656250068,39.36835937499998],[2.799804687500057,39.38505859374999],[2.769824218750074,39.41025390624998],[2.745996093750023,39.51025390624999],[2.700585937500023,39.542138671875016],[2.634082031250045,39.55620117187495],[2.575878906250011,39.53066406249999],[2.49951171875,39.47788085937498],[2.458789062500045,39.53046874999995],[2.394335937500045,39.540380859375034],[2.37001953125008,39.57207031249999],[2.371289062500068,39.61308593749998],[2.784960937500045,39.854833984375034],[2.904785156250057,39.908300781250006],[3.15869140625,39.97050781249999],[3.197558593750017,39.96108398437502],[3.164453125000023,39.924218749999966],[3.1669921875,39.90771484374997],[3.198632812500051,39.88984374999998],[3.190917968749972,39.86137695312496],[3.15869140625,39.836572265624966],[3.145312500000017,39.79008789062499]]],[[[4.293652343750011,39.84184570312499],[4.275292968750023,39.830273437500004],[3.967675781250051,39.94584960937501],[3.8671875,39.958740234375],[3.84267578125008,39.97636718750002],[3.845410156250012,40.036474609375006],[3.853417968750051,40.06303710937502],[4.059179687500034,40.075097656249966],[4.22578125000004,40.032373046874966],[4.31513671875004,39.91723632812497],[4.322070312500045,39.897509765625045],[4.293652343750011,39.84184570312499]]],[[[-7.698144531249995,43.76455078125005],[-7.594580078124948,43.72734375000002],[-7.503613281249982,43.73994140625001],[-7.399316406249965,43.69580078124997],[-7.261962890624972,43.594628906249966],[-7.060986328124955,43.55395507812503],[-6.900683593749989,43.58564453125001],[-6.617285156249977,43.59238281250006],[-6.47568359374992,43.57890625],[-6.22412109375,43.60385742187498],[-6.080126953124989,43.59492187500004],[-5.846679687499943,43.645068359375045],[-5.665820312499959,43.582470703124976],[-5.315722656249932,43.553173828124955],[-5.10527343749996,43.50185546874999],[-4.52304687499992,43.41572265625004],[-4.312792968749989,43.41474609375001],[-4.015332031249955,43.46308593750001],[-3.889355468749954,43.49941406250002],[-3.77402343749992,43.477880859375006],[-3.604638671874965,43.51948242187504],[-3.523632812499983,43.51103515624999],[-3.417871093750023,43.45170898437499],[-3.045605468749926,43.37158203125],[-2.947705078124983,43.43969726562502],[-2.875048828125017,43.454443359375006],[-2.607080078124937,43.41274414062505],[-2.337109374999926,43.32802734375002],[-2.196679687499994,43.32192382812502],[-1.991308593750005,43.345068359375034],[-1.828515624999966,43.400830078125004],[-1.794042968749949,43.407324218750006],[-1.792724609374943,43.37255859375003],[-1.753271484375005,43.32470703125006],[-1.712841796874926,43.30703124999999],[-1.627148437499983,43.28247070312497],[-1.561474609375011,43.27919921875002],[-1.471728515624932,43.26767578124998],[-1.410693359374932,43.240087890625034],[-1.407324218749949,43.197119140625006],[-1.422607421874943,43.149121093749976],[-1.459423828124983,43.10498046875006],[-1.480468750000028,43.071142578125006],[-1.460839843749937,43.05175781250006],[-1.42875976562496,43.03676757812502],[-1.39404296875,43.032617187499966],[-1.370507812499994,43.03759765625],[-1.352734374999926,43.06425781250002],[-1.318847656249943,43.09697265625002],[-1.300048828124943,43.10097656250002],[-1.301562499999988,43.08247070312498],[-1.285449218749989,43.05961914062496],[-1.175439453124966,43.02114257812502],[-0.933837890624943,42.94951171874999],[-0.839208984374949,42.94819335937498],[-0.762646484374983,42.93979492187506],[-0.740185546874926,42.909521484375034],[-0.586425781249943,42.798974609374966],[-0.549804687499943,42.80200195312506],[-0.481152343750011,42.79931640625003],[-0.398437499999943,42.80810546875006],[-0.338574218750011,42.82880859375001],[-0.29931640625,42.82534179687502],[-0.256054687499983,42.80395507812499],[-0.205322265624943,42.78530273437502],[-0.140039062499966,42.74892578124999],[-0.081494140624926,42.70385742187505],[-0.041162109374994,42.689111328124966],[0.20136718750004,42.719335937500006],[0.255468750000063,42.692919921875045],[0.312890625000023,42.69326171875002],[0.377246093750074,42.70014648437501],[0.517675781250006,42.68627929687503],[0.631640625000045,42.689599609374994],[0.641992187500023,42.70063476562501],[0.651757812500051,42.800439453124994],[0.669824218749994,42.83574218749999],[0.696875,42.845117187500044],[0.764453125000017,42.83803710937502],[1.010058593750045,42.778955078124966],[1.111132812500017,42.742041015625006],[1.208300781250017,42.71313476562497],[1.293261718750017,42.70996093750006],[1.349414062500074,42.69067382812503],[1.428320312499977,42.59589843749998],[1.414843750000074,42.54838867187499],[1.421972656250034,42.53081054687496],[1.430273437500034,42.49785156249999],[1.428125,42.46132812500002],[1.448828124999977,42.43745117187504],[1.486230468750051,42.43447265624996],[1.534082031250051,42.44169921875002],[1.586425781250057,42.455957031249994],[1.678515625000074,42.496679687500034],[1.7060546875,42.503320312500044],[1.859765625000051,42.457080078125045],[1.927929687500068,42.42631835937499],[1.951464843750074,42.39277343749998],[1.986523437500011,42.358496093750034],[2.032714843750028,42.353515625],[2.098339843750068,42.386083984375055],[2.200390625000068,42.42094726562496],[2.374414062500079,42.39028320312502],[2.56796875,42.345800781250006],[2.651660156250074,42.340478515624994],[2.65478515625,42.36210937499996],[2.670019531250006,42.393017578124955],[2.701855468750011,42.40849609374999],[2.749414062500022,42.41303710937504],[2.815625,42.42924804687496],[2.891406250000074,42.4560546875],[2.970019531250017,42.46723632812498],[3.052636718750051,42.44721679687498],[3.152148437500074,42.43100585937506],[3.21142578125,42.43115234374999],[3.23984375,42.36787109374998],[3.287890625000017,42.34370117187504],[3.306738281250034,42.288964843749994],[3.218652343750051,42.260351562500006],[3.166406250000051,42.25649414062502],[3.150390625,42.16245117187506],[3.17519531250008,42.135986328125],[3.224609375,42.11113281249999],[3.238085937499989,42.082226562499955],[3.248046875,41.94423828125002],[3.146875,41.86103515625001],[3.0048828125,41.76743164062506],[2.310937500000023,41.46650390625004],[2.145605468750005,41.32075195312501],[2.082617187500063,41.28740234375004],[1.566601562500011,41.19560546874999],[1.205859375000045,41.097558593749994],[1.032910156250068,41.06206054687496],[0.816894531250028,40.89160156250006],[0.714648437500074,40.822851562500006],[0.796093750000068,40.803808593750034],[0.891113281250057,40.72236328125004],[0.859179687500045,40.686230468749955],[0.720605468750051,40.63046875000006],[0.660058593750051,40.61333007812502],[0.627148437500011,40.622216796874966],[0.59609375000008,40.61450195312499],[0.36367187500008,40.31904296875004],[0.158398437499983,40.106591796874994],[0.043066406250034,40.01396484374996],[-0.075146484374983,39.87592773437498],[-0.327001953124949,39.519873046875006],[-0.328955078125006,39.41708984375003],[-0.204931640624949,39.062597656250034],[-0.133789062499943,38.96948242187497],[-0.034130859374983,38.891210937500006],[0.154882812499977,38.824658203124955],[0.20156250000008,38.75917968750002],[0.136328125000034,38.69677734375003],[-0.052734374999943,38.58569335937503],[-0.38125,38.435644531250034],[-0.520800781249989,38.317285156249966],[-0.550683593749966,38.203125],[-0.646777343749989,38.15185546875003],[-0.683203124999949,37.99204101562498],[-0.741552734374949,37.886132812499994],[-0.752734374999989,37.85024414062505],[-0.814648437500011,37.76992187500002],[-0.823095703124949,37.711621093749955],[-0.721582031249966,37.63105468749998],[-0.771875,37.59624023437499],[-0.822167968749937,37.58076171875003],[-0.93808593749992,37.57133789062499],[-1.327539062499937,37.561132812500034],[-1.640966796874949,37.38696289062497],[-1.797607421874971,37.23286132812504],[-1.939306640624977,36.94584960937499],[-2.111523437499983,36.77666015624999],[-2.187695312499955,36.745458984375034],[-2.305566406249994,36.81982421874999],[-2.452832031249954,36.83115234375],[-2.595703124999943,36.806494140625034],[-2.670605468749926,36.74755859375003],[-2.787548828124955,36.714746093749994],[-2.901855468749971,36.7431640625],[-3.149169921874972,36.75849609375001],[-3.25913085937492,36.755761718749994],[-3.43125,36.707910156250016],[-3.578808593749926,36.739843750000034],[-3.827783203124937,36.75605468749998],[-4.366845703124994,36.71811523437506],[-4.434863281249989,36.70024414062496],[-4.50224609374996,36.62915039062506],[-4.67412109374996,36.506445312500006],[-4.935302734374972,36.50205078125],[-5.171484374999949,36.423779296874955],[-5.230517578124989,36.373632812500034],[-5.329687499999949,36.23574218750002],[-5.3609375,36.134912109374994],[-5.381591796874943,36.13408203124999],[-5.407226562499943,36.15888671874998],[-5.443603515624972,36.15058593749998],[-5.4625,36.07377929687496],[-5.551269531249972,36.03881835937506],[-5.625488281249999,36.02592773437498],[-5.80839843749996,36.08833007812501],[-5.960693359374972,36.181738281250034],[-6.040673828124937,36.18842773437498],[-6.170458984374989,36.33378906250002],[-6.226269531249983,36.42646484374998],[-6.265917968749989,36.52651367187502],[-6.257714843749994,36.56484375],[-6.268945312499994,36.59672851562502],[-6.38413085937492,36.63701171874996],[-6.412255859374966,36.728857421875034],[-6.328320312500011,36.84814453125],[-6.259423828124994,36.898974609375045],[-6.216796875000028,36.91357421875],[-6.320947265625023,36.90849609375002],[-6.396191406249983,36.831640625],[-6.492431640624943,36.95463867187502],[-6.88461914062492,37.194238281249966],[-6.859375,37.249169921874966],[-6.863769531250028,37.27890625],[-6.929492187499989,37.214941406250034],[-6.97465820312496,37.19843750000004],[-7.174951171874993,37.20878906250002],[-7.406152343749937,37.17944335937497],[-7.467187499999937,37.42802734374999],[-7.496044921874954,37.523583984375016],[-7.503515624999977,37.58549804687502],[-7.443945312499921,37.72827148437497],[-7.378906249999971,37.786376953125],[-7.292236328125,37.90644531250004],[-7.185449218749994,38.00634765625006],[-7.072509765625,38.030029296875],[-7.022851562500023,38.04472656249996],[-6.981103515624937,38.121972656249966],[-6.957568359374932,38.18789062499999],[-6.974804687499982,38.194433593750006],[-7.106396484374982,38.181005859375006],[-7.343017578124943,38.45742187500002],[-7.335791015625006,38.50146484375003],[-7.30595703124996,38.56684570312501],[-7.286376953124972,38.649365234374955],[-7.28154296874996,38.71455078125001],[-7.219921874999925,38.77050781250002],[-7.125488281249971,38.82695312499999],[-7.046044921874937,38.907031250000045],[-7.00625,38.98525390624999],[-6.997949218749993,39.05644531250002],[-7.042968749999942,39.10708007812502],[-7.172412109374932,39.13520507812498],[-7.30576171874992,39.33813476562502],[-7.335449218749999,39.46513671874996],[-7.362695312499966,39.47832031249999],[-7.44511718749996,39.53618164062496],[-7.524218749999932,39.644726562499955],[-7.535693359374961,39.66157226562501],[-7.454101562499943,39.6806640625],[-7.117675781249972,39.681689453125045],[-7.04741210937496,39.70556640625],[-7.03671875,39.713964843750034],[-6.975390624999932,39.79838867187502],[-6.911181640624989,39.937109375000034],[-6.896093749999949,40.02182617187506],[-6.91640625,40.05683593749998],[-7.027832031249972,40.14262695312496],[-7.032617187499965,40.16791992187498],[-7.01469726562496,40.208349609375034],[-6.948437499999955,40.251611328124966],[-6.85888671875,40.30073242187504],[-6.8101562499999,40.343115234375034],[-6.82177734375,40.37626953124996],[-6.847949218749988,40.410986328125006],[-6.852050781249943,40.44326171875002],[-6.835693359374971,40.48315429687497],[-6.829833984374943,40.619091796874955],[-6.818359375,40.65405273437497],[-6.835888671874926,40.777490234374994],[-6.857714843749932,40.87832031250002],[-6.928466796874972,41.009130859375],[-6.915527343749999,41.038037109374955],[-6.8828125,41.06240234375002],[-6.775781249999937,41.10771484375002],[-6.690136718749983,41.21450195312502],[-6.56591796875,41.3037109375],[-6.403125,41.37539062500002],[-6.28935546874996,41.45502929687501],[-6.244335937499955,41.51591796874995],[-6.2125,41.53203125],[-6.221679687499943,41.560449218749994],[-6.243115234374955,41.60180664062497],[-6.308056640624954,41.642187500000034],[-6.391699218749949,41.66538085937503],[-6.48466796874996,41.664404296875034],[-6.542187499999954,41.672509765624994],[-6.558984375000023,41.70405273437501],[-6.552587890624948,41.78955078125003],[-6.557519531249966,41.874121093750034],[-6.575341796874966,41.91308593749997],[-6.61826171874992,41.9423828125],[-6.70361328125,41.9345703125],[-6.777294921874983,41.958496093749964],[-6.833203124999926,41.96416015624999],[-6.865527343749932,41.945263671874955],[-7.030468749999955,41.95063476562498],[-7.09912109375,41.964208984375006],[-7.147119140625023,41.98115234374998],[-7.177929687499983,41.9716796875],[-7.195361328124989,41.95522460937502],[-7.198339843749978,41.92939453125001],[-7.209619140624966,41.89526367187497],[-7.268554687499972,41.864404296874994],[-7.40361328124996,41.83369140624995],[-7.512597656249966,41.83598632812498],[-7.612597656249988,41.85795898437502],[-7.644677734374937,41.87397460937498],[-7.693066406249955,41.88847656250002],[-7.896386718749994,41.87055664062501],[-7.920849609374982,41.883642578125],[-7.990966796874972,41.851904296875034],[-8.094433593749926,41.81420898437499],[-8.152490234374937,41.81196289062498],[-8.173535156249955,41.819970703124994],[-8.18125,41.83696289062502],[-8.224755859374994,41.895849609375006],[-8.213330078124983,41.92709960937498],[-8.129980468749977,42.01816406250006],[-8.139306640624994,42.039941406249966],[-8.17358398437497,42.06938476562501],[-8.204199218749977,42.11186523437496],[-8.213085937499926,42.133691406249966],[-8.266064453124983,42.13740234375001],[-8.322558593749932,42.115087890625006],[-8.538085937499972,42.0693359375],[-8.589648437499989,42.05273437499999],[-8.68295898437492,42.008496093749955],[-8.777148437500017,41.941064453124994],[-8.85234375,41.92690429687502],[-8.878320312500023,41.946875],[-8.887207031249943,42.105273437500045],[-8.772460937499943,42.210595703124994],[-8.690917968749941,42.274169921875],[-8.729199218749926,42.28701171875002],[-8.815820312499966,42.285253906250034],[-8.809960937499937,42.33447265625003],[-8.76938476562492,42.35815429687506],[-8.730029296874987,42.411718750000034],[-8.776171874999989,42.43481445312503],[-8.81210937499992,42.470068359375034],[-8.80991210937492,42.562353515625006],[-8.79990234374992,42.59990234375002],[-8.8115234375,42.640332031249976],[-8.987792968750028,42.58564453125004],[-9.033105468750023,42.593847656250006],[-9.035058593749966,42.66235351562503],[-8.937207031249926,42.76669921875006],[-8.927197265624926,42.79858398437497],[-9.041601562499975,42.81401367187502],[-9.127197265625,42.86523437499997],[-9.179443359374972,42.91098632812506],[-9.235205078124977,42.97690429687498],[-9.235644531249989,43.035791015624994],[-9.178076171874977,43.17402343749998],[-9.095556640624949,43.214208984375006],[-9.024511718749949,43.238964843749976],[-8.873681640624966,43.334423828124976],[-8.665625,43.31660156250001],[-8.537060546874955,43.337060546874994],[-8.421582031249955,43.38583984374997],[-8.355468749999972,43.396826171875006],[-8.248925781249937,43.43940429687498],[-8.25229492187492,43.49692382812506],[-8.288867187500017,43.539599609375045],[-8.256738281249937,43.57988281249999],[-8.137158203124926,43.629052734374966],[-8.004687499999932,43.69438476562495],[-7.852734374999983,43.70698242187504],[-7.698144531249995,43.76455078125005]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Estonia","sov_a3":"EST","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Estonia","adm0_a3":"EST","geou_dif":0,"geounit":"Estonia","gu_a3":"EST","su_dif":0,"subunit":"Estonia","su_a3":"EST","brk_diff":0,"name":"Estonia","name_long":"Estonia","brk_a3":"EST","brk_name":"Estonia","brk_group":null,"abbrev":"Est.","postal":"EST","formal_en":"Republic of Estonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Estonia","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":10,"pop_est":1299371,"gdp_md_est":27410,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"EE","iso_a3":"EST","iso_n3":"233","un_a3":"233","wb_a2":"EE","wb_a3":"EST","woe_id":-99,"adm0_a3_is":"EST","adm0_a3_us":"EST","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"EST.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[22.61738281250004,58.621240234375016],[22.688378906250023,58.59702148437506],[22.753808593750023,58.60468750000002],[22.820117187500045,58.621533203124976],[22.964257812500023,58.60571289062505],[23.29287109375008,58.48349609375],[23.323242187500053,58.45083007812502],[23.127148437500068,58.43598632812501],[23.08261718750006,58.39848632812501],[23.035449218750045,58.37231445312499],[22.97988281250008,58.36386718749998],[22.88515625000005,58.311279296875],[22.757031250000068,58.260888671874966],[22.730273437500045,58.230664062500004],[22.49843750000005,58.23623046874999],[22.371679687499977,58.217138671875],[22.269335937500014,58.16074218749997],[22.227343750000074,58.05180664062499],[22.152441406250006,57.966796875],[22.076269531250034,57.936035156250036],[21.996875,57.93134765624998],[21.978027343749996,57.96328125],[21.98554687500001,57.995166015625024],[22.152929687500006,58.11533203124998],[22.187695312500068,58.15434570312502],[22.10439453125008,58.17167968749999],[22.03457031250005,58.21337890625005],[21.882128906249985,58.26235351562499],[21.854492187500057,58.30166015624999],[21.891015625000023,58.30458984374999],[21.924414062500006,58.315869140624976],[21.96503906250001,58.34882812500001],[21.984082031250065,58.38666992187501],[21.862304687500057,58.49716796875003],[21.924414062500006,58.51425781249998],[22.00185546875005,58.51025390625006],[22.08134765625007,58.478125],[22.168554687500006,58.51582031250004],[22.20556640625,58.521386718749994],[22.266601562499996,58.50795898437502],[22.328125,58.580859375000045],[22.474414062500045,58.604882812499966],[22.546972656250006,58.627392578125004],[22.61738281250004,58.621240234375016]]],[[[23.343554687500017,58.550341796875045],[23.260351562500034,58.53999023437498],[23.063476562500057,58.611083984374964],[23.109082031250036,58.65922851562501],[23.16542968750005,58.678125],[23.332812500000045,58.648583984374994],[23.356445312500057,58.575537109375034],[23.343554687500017,58.550341796875045]]],[[[22.923730468750023,58.826904296875],[22.84169921875008,58.777441406250034],[22.79287109375008,58.79721679687498],[22.76728515625004,58.820898437500006],[22.661425781250045,58.70917968749998],[22.5421875,58.68999023437498],[22.472656250000057,58.71206054687506],[22.47890625000008,58.75380859375002],[22.411035156250023,58.863378906250034],[22.307421875000045,58.89545898437501],[22.161914062500074,58.89848632812502],[22.05625,58.94360351562506],[22.46259765625004,58.97431640625001],[22.504589843750068,59.026464843750055],[22.587207031250017,59.081201171875016],[22.649414062499996,59.08710937499998],[22.702246093750006,59.07441406249995],[22.71220703124999,59.03198242187502],[22.72548828125005,59.015087890624955],[22.909863281250036,58.99121093749997],[22.98164062500001,58.91982421874999],[23.008691406249994,58.833935546875004],[22.923730468750023,58.826904296875]]],[[[25.50927734374997,59.639013671875055],[25.61572265625,59.62753906250003],[25.79375,59.63466796874997],[26.46083984375005,59.553906249999955],[26.625,59.553906249999955],[26.85205078124997,59.471777343750006],[26.974707031250006,59.450634765624955],[27.33583984375005,59.45048828125001],[27.892578125000057,59.414208984374994],[28.001855468750023,59.469824218750055],[28.0125,59.484277343749966],[28.06582031250008,59.453173828125045],[28.13300781250001,59.40307617187503],[28.15107421875004,59.374414062499966],[28.128320312500023,59.357568359374994],[28.061328125000045,59.34326171875003],[28.046093750000068,59.32783203124998],[28.016406250000045,59.301708984374976],[27.93818359375001,59.297021484375016],[27.89765625000001,59.277636718750074],[27.849511718750048,59.19267578124999],[27.757617187500074,59.05200195312503],[27.62177734375004,58.94497070312496],[27.513085937499994,58.88627929687502],[27.464453125000034,58.84130859375],[27.434179687500002,58.78725585937499],[27.427050781250074,58.733056640624966],[27.531347656250006,58.43525390624996],[27.53007812499999,58.381494140625016],[27.505566406250065,58.326269531250034],[27.48779296875,58.270068359375045],[27.502441406250057,58.22133789062499],[27.571093750000017,58.1380859375],[27.644140625000063,58.013916015625],[27.673437499999974,57.93461914062501],[27.721972656250017,57.90546875000004],[27.76875,57.88413085937503],[27.778515625000068,57.87070312500007],[27.776953125000034,57.85673828124997],[27.75283203125008,57.841015624999955],[27.542089843750063,57.7994140625],[27.514746093749977,57.76420898437501],[27.491992187500045,57.72495117187503],[27.4,57.66679687499998],[27.371777343749983,57.61254882812503],[27.354296875000074,57.55029296874998],[27.35195312500005,57.528125],[27.326562500000023,57.52548828124998],[27.187109375000034,57.53833007812503],[27.033398437500068,57.57875976562499],[26.96601562500001,57.60913085937506],[26.89980468750002,57.608789062499994],[26.81972656250005,57.58872070312498],[26.532617187499994,57.53100585937502],[26.462109375000036,57.54448242187502],[26.29804687500001,57.60107421875],[26.215039062500068,57.662744140624966],[26.030371093750006,57.78554687500002],[26.015234375000034,57.81474609375002],[25.991113281250076,57.83818359374999],[25.79375,57.868554687499966],[25.72089843750001,57.91381835937505],[25.66015625,57.920166015625],[25.5712890625,57.942773437499994],[25.34003906250004,58.03945312499996],[25.28261718750008,58.04848632812502],[25.268652343749977,58.0322265625],[25.27265625000001,58.009375],[25.258300781249996,57.99614257812501],[25.22871093750001,57.99658203125003],[25.17519531250005,58.032128906249994],[25.11103515625004,58.063427734374976],[24.911328125,58.00458984374998],[24.839062500000036,57.98872070312504],[24.775781250000023,57.98525390625002],[24.45888671875005,57.90786132812499],[24.3625,57.86616210937501],[24.32255859375007,57.87060546875002],[24.33203125000003,57.909765625],[24.4638671875,58.10595703125002],[24.4875,58.261621093750016],[24.535742187500063,58.28300781250002],[24.54970703125008,58.30458984374999],[24.529101562500045,58.35424804687497],[24.392187500000034,58.38608398437497],[24.336914062500053,58.38139648437498],[24.287207031250063,58.328027343749966],[24.235644531250045,58.28955078125003],[24.114843750000034,58.26611328125005],[24.01093749999998,58.30664062500006],[23.767578125000057,58.360839843749964],[23.706054687500053,58.433007812500016],[23.691503906250034,58.505615234375],[23.562792968749985,58.57583007812499],[23.509277343750025,58.65854492187498],[23.530664062500023,58.716259765625004],[23.64746093750003,58.75415039062499],[23.680761718750063,58.787158203125074],[23.53359375,58.78193359374998],[23.50361328125001,58.78984374999999],[23.49716796875003,58.819531249999976],[23.43203125,58.920654296875],[23.489648437500023,58.96049804687502],[23.51503906250005,58.99921875000001],[23.4677734375,59.03217773437498],[23.48017578125004,59.06967773437497],[23.516992187500076,59.10756835937497],[23.494433593750014,59.19565429687498],[23.640527343750023,59.24233398437496],[23.78251953124999,59.275146484375],[24.08339843750002,59.29189453125005],[24.05361328125008,59.372314453125],[24.175390625,59.37592773437501],[24.38037109375003,59.47265625],[24.58359375000003,59.455664062500006],[24.877539062500063,59.522070312500034],[25.44375,59.52114257812502],[25.520898437500048,59.55947265625002],[25.50742187500003,59.597998046875055],[25.50927734374997,59.639013671875055]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Finland","sov_a3":"FI1","adm0_dif":1,"level":2,"type":"Country","admin":"Finland","adm0_a3":"FIN","geou_dif":0,"geounit":"Finland","gu_a3":"FIN","su_dif":0,"subunit":"Finland","su_a3":"FIN","brk_diff":0,"name":"Finland","name_long":"Finland","brk_a3":"FIN","brk_name":"Finland","brk_group":null,"abbrev":"Fin.","postal":"FIN","formal_en":"Republic of Finland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Finland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":6,"pop_est":5250275,"gdp_md_est":193500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"FI","iso_a3":"FIN","iso_n3":"246","un_a3":"246","wb_a2":"FI","wb_a3":"FIN","woe_id":-99,"adm0_a3_is":"FIN","adm0_a3_us":"FIN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"FIN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[21.62832031250008,60.10781249999999],[21.540625,60.09790039062503],[21.48603515625004,60.126806640625034],[21.50673828125008,60.148339843749994],[21.567968750000034,60.17231445312498],[21.634082031249985,60.16899414062502],[21.648144531250008,60.140869140624964],[21.62832031250008,60.10781249999999]]],[[[21.833203125000068,60.140527343749994],[21.73310546875001,60.10615234375001],[21.695019531250068,60.11435546875],[21.70478515625001,60.17231445312498],[21.764257812500063,60.19882812499998],[21.864355468750006,60.201806640624966],[21.833203125000068,60.140527343749994]]],[[[22.175097656249985,60.37075195312499],[22.301757812500057,60.347558593749994],[22.354980468750057,60.35585937499999],[22.41552734375003,60.303369140625044],[22.31289062499999,60.26997070312498],[22.305761718750063,60.22856445312499],[22.346289062500063,60.202832031249976],[22.360546875000036,60.165576171875045],[22.25830078124997,60.165625],[22.209375,60.19697265624995],[22.188085937500063,60.236767578124976],[22.14052734375005,60.26489257812503],[22.07714843750003,60.286328124999955],[22.108203125000045,60.314892578124976],[22.125878906249994,60.35585937499999],[22.175097656249985,60.37075195312499]]],[[[21.994238281250006,60.336669921875],[21.921484375000034,60.33227539062497],[21.818652343750045,60.38183593750006],[21.805664062500057,60.401220703125006],[21.845996093750014,60.41245117187498],[21.8193359375,60.45229492187502],[21.827246093750006,60.46992187499995],[21.906835937500063,60.43847656250002],[21.950292968750034,60.401708984375],[21.907812499999977,60.393164062500034],[21.97978515624999,60.355224609375036],[21.994238281250006,60.336669921875]]],[[[21.450878906250068,60.52958984375004],[21.43691406250008,60.483056640624966],[21.369042968749994,60.48823242187495],[21.3,60.47978515625002],[21.24433593750001,60.525976562500006],[21.214550781250068,60.60385742187497],[21.224707031250006,60.62060546875003],[21.268066406250025,60.63828125],[21.301269531250057,60.59555664062498],[21.450878906250068,60.52958984375004]]],[[[21.2177734375,63.241308593750034],[21.228515625000057,63.22265624999997],[21.287109375,63.22778320312503],[21.366015625000017,63.261767578125045],[21.421972656250034,63.24589843749999],[21.415625,63.19736328125007],[21.377636718750068,63.19921875],[21.36718749999997,63.20722656250001],[21.318457031250006,63.179492187500045],[21.30976562500001,63.1626953125],[21.25341796875,63.152001953124966],[21.14931640624999,63.19946289062502],[21.08388671875008,63.277539062499955],[21.236328125000057,63.27773437499999],[21.22177734375003,63.259130859375034],[21.2177734375,63.241308593750034]]],[[[24.848242187500034,64.99101562499999],[24.69892578125001,64.95781250000007],[24.57861328125,64.978564453125],[24.576562500000023,65.04287109375],[24.651171875000045,65.073974609375],[24.78603515625008,65.08642578124997],[24.970605468750023,65.05532226562502],[24.997558593749996,65.03872070312502],[24.89179687500004,65.02626953124997],[24.848242187500034,64.99101562499999]]],[[[28.047265625000023,69.97167968750003],[28.269140625000034,69.87143554687503],[28.411718750000034,69.82275390624997],[28.800390625000063,69.73149414062505],[29.141601562500025,69.67143554687505],[29.333398437500048,69.47299804687503],[29.238867187500063,69.39394531250002],[29.19179687500005,69.36669921874997],[29.024902343749968,69.28798828125],[28.846289062500006,69.17690429687502],[28.832617187500063,69.11899414062503],[28.891894531250074,69.06059570312505],[28.96582031250003,69.02197265625],[28.89892578124997,69.00966796874997],[28.692187500000045,68.96103515625],[28.566015625,68.92822265624999],[28.414062500000057,68.90415039062506],[28.453515625000023,68.87226562499994],[28.70595703125002,68.86552734375002],[28.744824218750036,68.85644531250001],[28.77285156250005,68.84003906249995],[28.777636718750042,68.81381835937503],[28.752050781250002,68.77143554687501],[28.479296875000014,68.53764648437499],[28.470703125000053,68.48837890625],[28.560156250000063,68.35136718750007],[28.685156250000034,68.189794921875],[29.06298828125,68.11796875000002],[29.343847656250006,68.06186523437506],[29.524218750000017,67.92910156250001],[29.821582031250017,67.75400390625003],[29.97919921875004,67.68857421875003],[29.988085937500014,67.66826171874999],[29.94121093750007,67.54746093749998],[29.750585937500002,67.426416015625],[29.57226562500003,67.324365234375],[29.38769531249997,67.201416015625],[29.243359375000093,67.09658203125005],[29.08701171875003,66.97094726562503],[29.06904296875001,66.93022460937499],[29.066210937500042,66.89174804687497],[29.093066406250017,66.84921875],[29.29326171875002,66.69550781249994],[29.371191406250002,66.61704101562506],[29.464355468749968,66.53217773437497],[29.544335937499998,66.43969726562497],[29.59072265625005,66.35683593749997],[29.67089843749997,66.27612304687504],[29.72070312499997,66.23486328125],[29.80351562500007,66.17705078125002],[29.903417968750006,66.091064453125],[29.936621093750002,66.02294921875],[30.0875,65.78652343749995],[30.102734375000093,65.72626953125004],[30.0953125,65.68168945312502],[30.029003906250097,65.67070312499999],[29.882617187500017,65.66362304687505],[29.723925781250014,65.634375],[29.715917968750063,65.62456054687502],[29.819433593750006,65.56875],[29.72802734374997,65.47343750000003],[29.714843750000025,65.33696289062505],[29.617187500000025,65.26533203125],[29.608007812500006,65.248681640625],[29.61240234375001,65.234765625],[29.629687500000017,65.223876953125],[29.81054687499997,65.204736328125],[29.826171874999968,65.18530273437504],[29.826953125000017,65.14506835937502],[29.81083984375007,65.10791015625],[29.720019531250014,65.08032226562497],[29.62246093750005,65.03950195312501],[29.60087890625007,65.001953125],[29.604199218750036,64.968408203125],[29.6375,64.911767578125],[29.70166015625003,64.84575195312505],[29.783203125000025,64.80429687500006],[30.072851562500063,64.76503906250005],[30.110253906250048,64.732568359375],[30.126171875000097,64.6880859375],[30.12011718749997,64.64462890625002],[29.98554687500004,64.55771484375],[29.986621093750077,64.52426757812503],[30.041894531250048,64.44335937499997],[30.108105468750036,64.36611328125005],[30.390625,64.28242187499995],[30.487890625000063,64.2365234375],[30.513769531250002,64.2],[30.527929687500006,64.14111328125003],[30.526074218750097,64.077294921875],[30.50390625000003,64.02060546875],[30.415332031250017,63.94750976562503],[30.210253906250074,63.80332031250006],[30.004101562500093,63.747314453125],[29.991503906250074,63.73515625000002],[30.05537109375004,63.689013671875045],[30.41855468750006,63.50405273437502],[30.65527343749997,63.41748046875006],[30.974804687500036,63.300634765625034],[31.180859375000093,63.208300781250074],[31.247460937499994,63.141894531250045],[31.336718750000074,63.06806640625001],[31.437011718749968,63.007714843749966],[31.509277343750025,62.95532226562503],[31.53652343749999,62.921630859375036],[31.533984375000017,62.885400390624994],[31.437304687500014,62.77612304687503],[31.382421875,62.691650390624964],[31.28564453125003,62.567822265624955],[31.18671875000004,62.48139648437503],[30.935742187500093,62.32377929687499],[30.565625,62.127587890624994],[30.47968750000004,62.06821289062506],[30.306445312500017,61.964843750000064],[30.00996093750004,61.757373046875045],[29.933203125,61.71157226562496],[29.690136718750036,61.54609375],[29.57939453125007,61.49345703125001],[29.492382812500097,61.44423828125002],[29.251660156250097,61.28779296874996],[28.992968750000042,61.16904296875],[28.739062500000014,61.05874023437502],[28.662890625000045,61.00283203124999],[28.568164062500017,60.960205078125],[28.455078125000057,60.919628906250004],[28.40742187500004,60.89692382812501],[28.151953125000034,60.74584960937502],[27.797656250000074,60.53613281250003],[27.76162109375002,60.53286132812499],[27.66933593750005,60.498974609375004],[27.52509765625004,60.49077148437504],[27.46240234374997,60.46484375],[27.24189453125001,60.53867187500003],[27.20527343750001,60.54345703125002],[27.07558593750005,60.52514648437502],[26.951171875,60.47148437500001],[26.721484375000014,60.45507812500006],[26.607421875000057,60.437695312499955],[26.534667968749968,60.412890625000074],[26.519726562500036,60.471582031250016],[26.55117187500005,60.545996093750006],[26.601757812500068,60.595605468749994],[26.60644531250003,60.62792968749999],[26.569335937500025,60.62456054687501],[26.495800781250068,60.551806640625045],[26.456445312500023,60.46679687500002],[26.377734375000074,60.42407226562503],[26.204687499999977,60.406591796875034],[26.036035156249994,60.47490234374998],[25.955957031250023,60.474218750000034],[26.00625,60.42529296875003],[26.040234375000068,60.37158203125],[26.03583984375004,60.34150390625001],[25.94589843750003,60.34677734375],[25.845800781250063,60.31459960937502],[25.75800781250004,60.26752929687504],[25.715429687500063,60.267431640625006],[25.65644531250004,60.333203124999976],[25.54824218750002,60.30249023437506],[25.45576171875001,60.26123046875],[25.267871093750017,60.24833984375002],[25.155859375,60.194091796875],[24.95761718750003,60.157470703125],[24.84873046875006,60.158349609374994],[24.600488281250023,60.11425781249997],[24.517968750000076,60.046289062499994],[24.44560546874999,60.02128906250005],[24.342578125000045,60.04233398437498],[24.025195312500042,60.009179687499966],[23.72177734375006,59.965673828125],[23.59267578125005,59.96816406249996],[23.46357421875004,59.986230468749994],[23.326757812500063,59.92578125000003],[23.181445312500017,59.844921874999976],[23.021289062500074,59.81601562500006],[22.963867187500025,59.82636718750004],[23.009765625000057,59.86879882812496],[23.115722656250053,59.91269531250004],[23.188476562500025,59.97221679687499],[23.1984375,60.02182617187497],[23.148437500000057,60.041308593750045],[23.080175781250002,60.04726562499999],[22.994140625000057,60.09853515624996],[22.911718750000063,60.20971679687498],[22.867089843750023,60.21582031249997],[22.84443359375001,60.18662109374997],[22.819140625000017,60.10136718750002],[22.79345703125003,60.07680664062499],[22.749804687500017,60.057275390624994],[22.697363281250002,60.03759765625],[22.64619140625004,60.028027343749976],[22.462695312500045,60.029199218749966],[22.43857421875003,60.07226562500003],[22.43857421875003,60.09028320312498],[22.47109375000008,60.14697265624997],[22.44267578125007,60.156884765625044],[22.469726562499968,60.20131835937505],[22.512988281249985,60.19892578124998],[22.564257812500045,60.20551757812501],[22.589941406250034,60.228369140625034],[22.587988281250006,60.25566406250002],[22.516699218750034,60.26274414062502],[22.512304687500034,60.28134765625],[22.57587890625001,60.35908203125003],[22.5849609375,60.380566406249955],[22.560351562500042,60.38500976562497],[22.52050781250003,60.37656250000003],[22.257910156250006,60.400927734375024],[21.93398437500008,60.500292968750024],[21.854296875000014,60.50541992187499],[21.805273437500063,60.59414062500005],[21.727148437500034,60.582910156249966],[21.61328125000003,60.53095703124996],[21.52783203125003,60.570410156250006],[21.436035156250057,60.596386718749955],[21.410644531250057,60.636962890624964],[21.411914062500042,60.69682617187498],[21.40400390625001,60.767431640625],[21.378906250000057,60.850048828124955],[21.36054687500004,60.967480468749976],[21.37773437499999,61.059228515625016],[21.45097656249999,61.12714843750001],[21.479101562500034,61.170507812500034],[21.513476562500045,61.281201171874955],[21.52119140625001,61.41083984374998],[21.501757812500042,61.454980468749994],[21.506640625000074,61.48432617187503],[21.565039062500063,61.48432617187503],[21.552343750000034,61.50952148437499],[21.526660156250045,61.52329101562497],[21.49824218750004,61.551953124999955],[21.522460937499996,61.56713867187503],[21.592382812500034,61.56821289062498],[21.598046875000023,61.57788085937499],[21.605957031250053,61.59155273437503],[21.551855468750034,61.666845703125006],[21.545605468750008,61.70273437500003],[21.470507812500074,61.81166992187502],[21.384863281250034,61.914941406249994],[21.255957031250063,61.989648437500044],[21.301660156250048,62.11264648437506],[21.353710937499983,62.22382812499995],[21.343359375,62.277392578125045],[21.323437500000036,62.34257812499999],[21.165625,62.4140625],[21.142187500000063,62.514794921874994],[21.103613281250034,62.622949218749994],[21.118164062500057,62.68925781250001],[21.143847656250045,62.739990234375064],[21.19570312500005,62.79052734375003],[21.45751953125,62.95],[21.47353515625008,63.03325195312502],[21.650976562500063,63.03930664062499],[21.568652343750074,63.11372070312498],[21.549218750000023,63.155517578124964],[21.545117187499983,63.204296874999955],[21.800390625000034,63.23769531250002],[21.89570312500001,63.21025390625002],[22.12031250000004,63.244140625],[22.31972656250005,63.31044921874999],[22.316210937500045,63.345654296874976],[22.285546875000023,63.377197265625],[22.243261718750034,63.43793945312495],[22.273242187500017,63.45478515625001],[22.345996093749985,63.44238281249997],[22.31259765625003,63.47255859374999],[22.318652343750017,63.50439453124999],[22.39804687500003,63.491162109374955],[22.527636718750045,63.579980468750016],[22.532324218750034,63.647851562499994],[22.75625,63.68334960937503],[23.014453125000017,63.82182617187499],[23.133593750000045,63.86494140624999],[23.248730468750068,63.89614257812505],[23.493945312500017,64.03447265625007],[23.598925781250074,64.04091796874997],[23.652929687500063,64.13417968750005],[23.861425781250006,64.25825195312501],[23.92480468750003,64.27412109374995],[24.022265625000074,64.385986328125],[24.27832031250003,64.51528320312495],[24.440625,64.68012695312498],[24.53017578125008,64.738671875],[24.557910156250045,64.801025390625],[24.657617187500023,64.80629882812502],[24.747558593750053,64.85209960937502],[24.942187499999985,64.88403320312503],[25.134277343750057,64.87519531250001],[25.214257812499994,64.85346679687504],[25.288183593750063,64.8603515625],[25.280761718750057,64.91640624999997],[25.228027343750057,64.95102539062499],[25.271093750000034,64.98427734375001],[25.37265625000003,65.00947265625001],[25.362304687500057,65.06513671874998],[25.34023437499999,65.09863281249997],[25.255859375000057,65.14326171875001],[25.29785156249997,65.24321289062502],[25.307910156250074,65.35273437499995],[25.347851562500036,65.47924804687497],[25.241796875000034,65.54628906250005],[24.83935546875,65.66035156250001],[24.764257812499977,65.656396484375],[24.674902343750006,65.67070312499999],[24.58154296874997,65.75712890625002],[24.62324218750004,65.83168945312502],[24.628027343750034,65.85917968750002],[24.591601562500074,65.85834960937504],[24.532617187500048,65.822021484375],[24.40429687500003,65.78046874999998],[24.2375,65.81235351562498],[24.15546875000004,65.80527343750006],[24.04902343750004,65.98984375],[23.994628906250053,66.06035156250005],[23.907324218750034,66.14824218750002],[23.75146484374997,66.19116210937497],[23.720996093750074,66.21542968750003],[23.70029296875003,66.25263671874998],[23.693554687499983,66.304296875],[23.673828125000053,66.38071289062503],[23.68203125000005,66.44340820312502],[23.70117187500003,66.48076171874997],[23.768359375000042,66.50585937500004],[23.865527343750045,66.57661132812497],[23.885839843750006,66.62802734374996],[23.894140625,66.70688476562506],[23.93886718750005,66.77573242187505],[23.988574218750042,66.81054687500003],[23.97607421875,66.838232421875],[23.941796875000023,66.87783203124997],[23.86933593750001,66.93403320312498],[23.758984375,67.002587890625],[23.677343750000063,67.06811523437503],[23.64150390625005,67.12939453124997],[23.62304687500003,67.18413085937502],[23.626074218750006,67.23393554687505],[23.656640625000023,67.26782226562503],[23.76093750000004,67.31049804687501],[23.774902343750057,67.32861328124997],[23.733593750000065,67.42290039062497],[23.660839843749983,67.44003906250003],[23.537109375,67.449169921875],[23.468066406250074,67.449951171875],[23.454882812500045,67.46025390625007],[23.451464843750045,67.47919921875001],[23.46542968750006,67.51787109374999],[23.504492187500034,67.56215820312505],[23.53701171875008,67.59038085937502],[23.541308593750074,67.61430664062502],[23.500195312500036,67.69619140625],[23.487792968749996,67.79658203125001],[23.50185546875002,67.87519531249995],[23.632910156249977,67.93320312500003],[23.63886718750004,67.95439453125],[23.474218749999977,68.01733398437504],[23.35546875000003,68.08867187500002],[23.318554687500065,68.13032226562498],[23.18251953125008,68.13662109375002],[23.09785156250004,68.25756835937506],[22.975390625000045,68.31645507812505],[22.854101562500034,68.36733398437502],[22.78242187500001,68.39101562499995],[22.362109375000074,68.46406250000001],[22.195117187500074,68.477978515625],[21.99746093750005,68.52060546874998],[21.850195312500063,68.57412109374997],[21.724023437500023,68.60854492187497],[21.616015625000045,68.6509765625],[21.465429687500002,68.69067382812499],[21.42236328125003,68.72460937499997],[21.25976562500003,68.787451171875],[21.183398437500017,68.82880859374998],[20.91855468750006,68.90693359375001],[20.908984375000074,68.93774414062497],[20.907031250000014,68.96748046874998],[20.895117187500006,68.97983398437502],[20.622167968750006,69.036865234375],[20.675878906250006,69.069482421875],[20.889257812500063,69.07143554687502],[21.065722656250017,69.04174804687503],[21.10449218750003,69.05444335937503],[21.12783203125008,69.080810546875],[21.052636718750023,69.18657226562505],[21.06611328125001,69.21411132812496],[21.14375,69.24726562499997],[21.26679687500004,69.27368164062503],[21.461230468750045,69.277490234375],[21.59375,69.273583984375],[21.621777343750068,69.27070312499995],[21.81972656250008,69.15449218749998],[21.98945312500001,69.04111328124998],[22.0796875,68.9927734375],[22.300390625000034,68.855859375],[22.382910156250063,68.776611328125],[22.410937500000074,68.719873046875],[22.500683593750068,68.72021484374997],[22.811035156250057,68.69531249999997],[23.07167968750005,68.67436523437505],[23.144335937500017,68.64257812499997],[23.324023437500017,68.64897460937502],[23.4625,68.67763671875],[23.70703125,68.71386718750003],[23.772558593750006,68.75839843750003],[23.85400390625,68.80590820312503],[23.99736328125007,68.7984375],[24.154101562500017,68.760888671875],[24.33203125000003,68.71152343749998],[24.49052734374999,68.68867187500004],[24.703222656249974,68.65283203125001],[24.802441406250036,68.60649414062499],[24.94140625000003,68.59326171875006],[25.0869140625,68.63959960937498],[25.172851562499996,68.76528320312502],[25.249121093750006,68.82133789062507],[25.357128906250068,68.862451171875],[25.48085937500005,68.88061523437497],[25.575292968750006,68.88715820312498],[25.646679687499983,68.91914062500001],[25.748339843750014,68.99013671874998],[25.768164062500063,69.07612304687501],[25.748632812500063,69.23144531250003],[25.767187500000034,69.28266601562498],[25.850195312500063,69.36650390625002],[25.961523437500006,69.58862304687497],[26.011523437500074,69.65263671875005],[26.07246093750004,69.69155273437497],[26.15615234375005,69.71469726562498],[26.308203125000034,69.78193359375001],[26.525390625000057,69.91503906250003],[26.584277343750045,69.92631835937502],[26.740234375000025,69.93305664062498],[26.93427734375004,69.928125],[27.108691406250042,69.90468749999995],[27.127539062500063,69.90649414062497],[27.205664062499977,69.91870117187497],[27.34804687500005,69.96005859375006],[27.591699218750023,70.042236328125],[27.747851562500042,70.06484375],[27.889941406250045,70.06166992187497],[28.047265625000023,69.97167968750003]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Faroe Islands","adm0_a3":"FRO","geou_dif":0,"geounit":"Faroe Islands","gu_a3":"FRO","su_dif":0,"subunit":"Faroe Islands","su_a3":"FRO","brk_diff":0,"name":"Faeroe Is.","name_long":"Faeroe Islands","brk_a3":"FRO","brk_name":"Faeroe Islands","brk_group":null,"abbrev":"Faeroe Is.","postal":"FO","formal_en":"Føroyar Is. (Faeroe Is.)","formal_fr":null,"note_adm0":"Den.","note_brk":null,"name_sort":"Faeroe Islands","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":48856,"gdp_md_est":1000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"FO","iso_a3":"FRO","iso_n3":"234","un_a3":"234","wb_a2":"FO","wb_a3":"FRO","woe_id":-99,"adm0_a3_is":"FRO","adm0_a3_us":"FRO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":14,"abbrev_len":10,"tiny":3,"homepart":-99,"filename":"FRO.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.699462890624943,61.44462890625001],[-6.6796875,61.41430664062497],[-6.703027343749966,61.41767578124995],[-6.770507812499943,61.45224609374997],[-6.888134765624926,61.534765625],[-6.92924804687496,61.60292968750002],[-6.934863281249931,61.63432617187504],[-6.905908203124994,61.63081054687503],[-6.881640624999932,61.602783203125],[-6.770019531250028,61.584375],[-6.740625,61.57050781250001],[-6.741064453124977,61.53637695312497],[-6.703515624999966,61.49594726562501],[-6.699462890624943,61.44462890625001]]],[[[-6.623193359374937,61.80595703125002],[-6.642773437499926,61.76831054687497],[-6.670166015625,61.768652343750034],[-6.764257812500006,61.815332031249966],[-6.839160156249989,61.84077148437498],[-6.863964843749983,61.86225585937501],[-6.884765624999942,61.899121093749976],[-6.841796874999972,61.90371093750002],[-6.790771484374971,61.895361328125006],[-6.662109374999972,61.861767578125004],[-6.625830078124948,61.826708984375074],[-6.623193359374937,61.80595703125002]]],[[[-7.186865234374949,62.13930664062496],[-7.097119140624954,62.100537109374976],[-7.065185546875028,62.07324218750002],[-7.116796874999977,62.04682617187495],[-7.179394531249925,62.04003906249999],[-7.25493164062496,62.046142578125],[-7.379101562499926,62.07480468749998],[-7.422607421875,62.140283203124994],[-7.33676757812492,62.13867187500003],[-7.235302734374954,62.151220703125006],[-7.186865234374949,62.13930664062496]]],[[[-6.631054687499955,62.22788085937498],[-6.655810546874932,62.09360351562497],[-6.696435546874937,62.09433593750006],[-6.768896484374977,62.131494140625],[-6.823437499999983,62.13911132812501],[-6.840527343749983,62.119287109374994],[-6.837695312499959,62.09541015625001],[-6.809472656249966,62.08041992187506],[-6.722558593749937,61.99038085937502],[-6.71440429687496,61.96416015624999],[-6.725195312499948,61.95146484374999],[-6.809716796874937,61.97744140625005],[-7.013574218749994,62.09399414062498],[-7.172167968749961,62.28559570312501],[-6.958642578124994,62.31625976562506],[-6.803662109374954,62.265966796875034],[-6.631054687499955,62.22788085937498]]],[[[-6.406054687499931,62.25864257812503],[-6.453857421875,62.18652343749999],[-6.52470703124996,62.1978515625],[-6.544140624999926,62.20561523437498],[-6.559472656249937,62.22451171875002],[-6.552050781249931,62.278125],[-6.554589843749994,62.35566406250002],[-6.47304687499999,62.291894531249966],[-6.406054687499931,62.25864257812503]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Greece","sov_a3":"GRC","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Greece","adm0_a3":"GRC","geou_dif":0,"geounit":"Greece","gu_a3":"GRC","su_dif":0,"subunit":"Greece","su_a3":"GRC","brk_diff":0,"name":"Greece","name_long":"Greece","brk_a3":"GRC","brk_name":"Greece","brk_group":null,"abbrev":"Greece","postal":"GR","formal_en":"Hellenic Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Greece","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":10737428,"gdp_md_est":343000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"GR","iso_a3":"GRC","iso_n3":"300","un_a3":"300","wb_a2":"GR","wb_a3":"GRC","woe_id":-99,"adm0_a3_is":"GRC","adm0_a3_us":"GRC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"GRC.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.852246093749983,35.53544921874999],[23.920605468750068,35.528173828125],[24.013281250000034,35.52944335937502],[24.034375,35.535400390624964],[24.093359375,35.59384765624998],[24.166015625000057,35.59521484375],[24.197753906250025,35.537451171875034],[24.12402343750003,35.510839843750034],[24.108984374999977,35.49580078124998],[24.123144531250034,35.483642578125],[24.178515625000017,35.45952148437499],[24.255371093750057,35.468603515625055],[24.25771484375008,35.42314453125002],[24.274902343750025,35.385986328125],[24.31289062500005,35.36381835937502],[24.35400390625,35.359472656250034],[24.444921875000034,35.36601562500002],[24.53457031249999,35.380761718749994],[24.626953125,35.409912109375],[24.721289062500034,35.4248046875],[25.003125,35.40986328124998],[25.104296875000074,35.34692382812503],[25.296777343750023,35.33935546875],[25.475683593750063,35.30620117187502],[25.569628906250017,35.328076171875004],[25.73017578125004,35.34858398437501],[25.75585937500003,35.32636718750004],[25.735156250000074,35.18403320312498],[25.74501953125005,35.142724609374994],[25.791308593750074,35.122851562500045],[25.837109375000068,35.13256835937497],[25.893359375000074,35.17919921874997],[26.028027343750065,35.215283203124955],[26.16787109375005,35.215087890625],[26.285546875000023,35.309765625],[26.32021484375008,35.315136718749955],[26.298632812500045,35.26860351562499],[26.280859375000063,35.15922851562499],[26.25556640625004,35.09516601562501],[26.244335937500068,35.04467773437503],[26.165625,35.01860351562504],[26.046679687500045,35.01416015625003],[25.829687500000063,35.025195312500045],[25.6109375,35.00732421875006],[25.20576171875004,34.95927734375002],[24.79980468750003,34.93447265625002],[24.745214843750006,34.950634765624955],[24.743945312500017,35.014355468749955],[24.735156250000017,35.05830078125004],[24.70888671875008,35.08906250000001],[24.583398437499994,35.115332031250034],[24.463671875000045,35.160351562499955],[23.994335937500065,35.22192382812497],[23.883593750000074,35.24609375000002],[23.703906250000074,35.233496093750034],[23.63808593750005,35.23515625000002],[23.59277343749997,35.257226562499966],[23.561621093750034,35.29516601562497],[23.54755859375001,35.41557617187499],[23.56982421875,35.534765625000034],[23.608691406250017,35.56625976562506],[23.626562500000034,35.530371093750034],[23.67265624999999,35.51391601562506],[23.715429687500006,35.55014648437506],[23.71503906250001,35.60473632812497],[23.73691406250003,35.65551757812502],[23.770800781250017,35.634228515624955],[23.79335937500008,35.556201171875045],[23.852246093749983,35.53544921874999]]],[[[27.17607421874999,35.46528320312498],[27.137890625000036,35.409082031249994],[27.099121093750057,35.45644531249996],[27.11582031250006,35.51113281250002],[27.070703125000023,35.59775390624998],[27.156054687500017,35.72626953124995],[27.158007812500042,35.78867187499998],[27.22314453125,35.820458984374966],[27.20703125,35.714453125000034],[27.157226562499968,35.62949218750006],[27.208886718750023,35.55893554687498],[27.23359374999998,35.478564453125045],[27.17607421874999,35.46528320312498]]],[[[23.053808593750034,36.18979492187498],[23.042187500000068,36.14638671875002],[22.93945312500003,36.17622070312498],[22.91083984375004,36.220996093750045],[22.90566406250005,36.32031250000003],[22.932617187500057,36.36875],[22.950488281250045,36.38393554687502],[22.997851562500017,36.328125],[23.09707031250008,36.24658203124999],[23.053808593750034,36.18979492187498]]],[[[27.84277343750003,35.92929687500003],[27.770605468750063,35.908300781250006],[27.745703125000063,35.91103515625002],[27.71552734375004,35.95732421874996],[27.75732421875003,36.069189453125006],[27.71865234375005,36.14111328125],[27.71630859375003,36.171582031250004],[27.77441406250003,36.21376953124999],[27.815234375000017,36.27695312499998],[27.91445312500005,36.345312500000034],[28.171484375000034,36.42622070312501],[28.23183593750005,36.43364257812502],[28.230078125000063,36.370263671874966],[28.14404296875003,36.209863281249994],[28.067675781250017,36.12968749999999],[28.087792968750023,36.06533203125002],[27.965527343750065,36.04750976562505],[27.84277343750003,35.92929687500003]]],[[[25.48242187500003,36.39262695312502],[25.43593750000005,36.34008789062506],[25.37050781250005,36.35893554687499],[25.397167968750065,36.37895507812496],[25.41289062500007,36.404882812500006],[25.414648437500063,36.442285156249994],[25.396875,36.46533203124997],[25.408984375000074,36.473730468750006],[25.467382812500063,36.43505859375003],[25.48242187500003,36.39262695312502]]],[[[26.46064453125001,36.58540039062501],[26.38164062500007,36.56152343750003],[26.33144531250005,36.51137695312505],[26.270019531250053,36.54692382812499],[26.269824218750017,36.59541015625001],[26.33701171875003,36.58056640624999],[26.38417968750005,36.60786132812498],[26.370019531250023,36.63857421875002],[26.42128906250005,36.62421875000001],[26.46064453125001,36.58540039062501]]],[[[27.860156250000017,36.55390625000001],[27.83828125000008,36.53798828125005],[27.788085937499968,36.58369140625004],[27.785742187500034,36.607519531250006],[27.836816406250048,36.634863281250055],[27.8625,36.64116210937502],[27.86982421875004,36.62250976562504],[27.86904296875005,36.58266601562499],[27.860156250000017,36.55390625000001]]],[[[24.535742187500063,36.763769531250034],[24.5375,36.70502929687495],[24.530664062499994,36.68398437500002],[24.325976562500045,36.655615234375034],[24.344921875,36.72299804687498],[24.357421875000057,36.744287109374966],[24.425195312500023,36.71293945312499],[24.450195312500053,36.728955078124955],[24.460351562500076,36.747460937499994],[24.535742187500063,36.763769531250034]]],[[[25.38173828125002,36.67402343749995],[25.364355468750034,36.65834960937505],[25.288671875000063,36.721533203125034],[25.25996093749998,36.75844726562502],[25.29589843750003,36.789160156250055],[25.40693359375001,36.71733398437499],[25.38173828125002,36.67402343749995]]],[[[26.94960937500005,36.72709960937502],[26.91835937500008,36.72592773437506],[26.95556640625003,36.77421875000002],[27.061132812500034,36.84038085937502],[27.214941406250006,36.898632812499976],[27.265625,36.90512695312506],[27.352148437499977,36.86889648437506],[27.193164062500017,36.809130859375045],[27.150976562500034,36.777587890625],[27.033593750000023,36.77075195312503],[26.94960937500005,36.72709960937502]]],[[[25.859375,36.79042968750005],[25.771093750000034,36.78222656249997],[25.74316406250003,36.78974609374998],[25.796777343750023,36.807031249999966],[25.834375,36.82539062499998],[25.852441406250076,36.84755859375005],[25.941992187500034,36.886572265625006],[26.000683593749983,36.937402343749966],[26.064453125000025,36.902734375000016],[25.984667968750017,36.87968750000002],[25.859375,36.79042968750005]]],[[[24.72089843750004,36.92143554687499],[24.702636718750053,36.91708984375],[24.676464843750036,36.95927734374998],[24.670996093750002,36.99858398437499],[24.681445312500074,37.021630859374994],[24.716113281250045,37.02382812499999],[24.76318359375003,36.94921874999997],[24.72089843750004,36.92143554687499]]],[[[27.01972656250004,36.95903320312502],[26.919921875000025,36.945214843750044],[26.93769531250001,37.02460937499998],[26.88867187499997,37.087255859375034],[26.966601562500045,37.05209960937498],[27.01601562500008,37.00966796875002],[27.040136718750006,37.00156249999998],[27.034570312500048,36.97597656250002],[27.01972656250004,36.95903320312502]]],[[[25.278906250000034,37.06840820312502],[25.19941406250001,36.991308593750034],[25.13330078125003,36.99965820312505],[25.105468750000057,37.034960937500045],[25.146484375000057,37.10742187500006],[25.235058593750068,37.148535156250006],[25.275292968749994,37.13784179687502],[25.27148437500003,37.08417968750004],[25.278906250000034,37.06840820312502]]],[[[25.54589843749997,36.96757812499999],[25.456738281250008,36.9296875],[25.39589843750005,36.984375],[25.36191406250006,37.07041015624998],[25.52529296875005,37.19638671875006],[25.564355468750023,37.18510742187499],[25.587890625,37.15253906250001],[25.58427734375007,37.03930664062503],[25.54589843749997,36.96757812499999]]],[[[24.523535156250063,37.125097656250006],[24.486523437500068,37.110058593749976],[24.42480468750003,37.13198242187499],[24.441210937500074,37.18686523437498],[24.48378906250005,37.21020507812503],[24.529101562500045,37.19233398437504],[24.535937500000014,37.16767578124998],[24.523535156250063,37.125097656250006]]],[[[24.43574218750004,37.34443359375001],[24.37890625,37.314111328124966],[24.397753906250017,37.383447265624966],[24.369726562500002,37.41962890624998],[24.394824218750042,37.45039062500003],[24.43125,37.4751953125],[24.44853515625007,37.449560546875034],[24.48144531250003,37.40800781250002],[24.43574218750004,37.34443359375001]]],[[[24.942871093750057,37.493505859375],[24.937890625000023,37.38969726562502],[24.91152343750005,37.39057617187501],[24.89619140625004,37.40659179687498],[24.895312500000042,37.44633789062499],[24.906542968750017,37.508886718750034],[24.942871093750057,37.493505859375]]],[[[25.402734375000023,37.419140624999955],[25.30712890625,37.41298828125005],[25.312695312500068,37.48930664062496],[25.348144531250025,37.50917968750002],[25.462988281250063,37.47109375],[25.45742187500008,37.44707031249996],[25.402734375000023,37.419140624999955]]],[[[26.029296875000057,37.529394531250034],[25.982421875,37.52558593749998],[25.99677734375001,37.56557617187505],[26.086328125000023,37.63491210937505],[26.211523437500063,37.638281250000034],[26.325585937500023,37.67304687500001],[26.351367187500014,37.67431640625],[26.296875,37.61958007812504],[26.204882812500017,37.56850585937502],[26.029296875000057,37.529394531250034]]],[[[25.255859375000057,37.59960937500006],[25.21875,37.535107421874955],[25.156347656250034,37.54506835937505],[25.051953125000068,37.61445312499995],[25.016308593750008,37.645947265624976],[24.99648437500005,37.676904296874994],[25.039355468750074,37.68066406250006],[25.091796875000025,37.64799804687496],[25.225390625000045,37.63066406249999],[25.255859375000057,37.59960937500006]]],[[[24.355957031250025,37.57685546875003],[24.288964843750048,37.528271484374976],[24.277441406250034,37.60112304687502],[24.320410156250063,37.67773437499997],[24.379101562500036,37.68271484375],[24.400781250000023,37.649023437500006],[24.355957031250025,37.57685546875003]]],[[[26.82441406250004,37.81142578125005],[26.947363281250034,37.778466796874994],[26.981542968750063,37.781982421875],[27.039648437500006,37.77001953125003],[27.05507812500005,37.70927734375002],[26.978125,37.70048828124999],[26.844921875000036,37.644726562500004],[26.78828125000004,37.65698242187503],[26.720507812500017,37.70546875000002],[26.612890625,37.71049804687499],[26.58105468750003,37.723730468750034],[26.63867187500003,37.78085937500003],[26.74335937500004,37.809765624999955],[26.82441406250004,37.81142578125005]]],[[[20.888476562500074,37.805371093749955],[20.993945312500074,37.70800781250003],[20.909082031249994,37.73212890624995],[20.818554687500036,37.66474609375001],[20.70380859375001,37.74345703124996],[20.635058593750045,37.82314453125002],[20.619531250000076,37.855029296875045],[20.691503906250002,37.92954101562503],[20.758691406249994,37.85297851562498],[20.83984375000003,37.84072265624996],[20.888476562500074,37.805371093749955]]],[[[24.991699218750057,37.75961914062506],[24.962207031250074,37.69238281250002],[24.884082031250074,37.77050781250006],[24.79853515625004,37.82402343750002],[24.766503906249994,37.87070312500003],[24.71435546875003,37.89887695312501],[24.700195312499996,37.961669921875],[24.763378906250068,37.9875],[24.79042968750008,37.99013671875002],[24.855078125,37.913671875],[24.956347656250045,37.90478515625006],[24.94843750000004,37.85766601562506],[24.98046874999997,37.79692382812502],[24.991699218750057,37.75961914062506]]],[[[23.550976562499983,37.925878906250006],[23.51142578125001,37.90117187500002],[23.46679687499997,37.90239257812502],[23.43525390625004,37.911474609375006],[23.41933593750008,37.93125],[23.4390625,37.940673828125],[23.462207031250017,37.98037109374999],[23.483691406250045,37.991113281249966],[23.51552734375005,37.98603515624998],[23.534863281249983,37.97021484374997],[23.550976562499983,37.925878906250006]]],[[[20.61230468750003,38.38334960937502],[20.624707031250068,38.267871093750045],[20.69521484375005,38.24619140625006],[20.788867187500017,38.14208984375],[20.780761718750053,38.08881835937498],[20.761328125,38.07055664062497],[20.60615234375001,38.11972656250006],[20.568945312499977,38.09765625],[20.523535156250063,38.10664062499995],[20.495507812500023,38.164160156250034],[20.498730468750068,38.184375],[20.47333984375004,38.21879882812499],[20.4521484375,38.23417968750002],[20.39101562500005,38.18842773437501],[20.35253906250003,38.179882812499955],[20.352246093750068,38.22172851562496],[20.40869140625003,38.336767578125034],[20.435058593750057,38.356201171875],[20.4814453125,38.31821289062498],[20.519628906250063,38.33232421875002],[20.548339843750057,38.39453125],[20.55029296875,38.45654296875003],[20.563183593750068,38.47495117187503],[20.61230468750003,38.38334960937502]]],[[[20.758691406249994,38.32944335937506],[20.709277343750074,38.31860351562497],[20.64638671875005,38.41430664062502],[20.623632812500034,38.48032226562498],[20.649707031250017,38.483984375],[20.674804687500057,38.47631835937506],[20.701269531250034,38.45141601562503],[20.70107421875008,38.425927734374994],[20.711621093750008,38.39863281250004],[20.73916015625002,38.36577148437499],[20.758691406249994,38.32944335937506]]],[[[26.094042968750017,38.21806640625002],[25.99853515625,38.16152343750005],[25.891894531250042,38.243310546874994],[25.874316406250017,38.269628906250034],[25.952636718750057,38.30263671875002],[25.991406250000068,38.353515625],[25.959960937500053,38.41601562500003],[25.85126953125001,38.508398437500006],[25.846093750000023,38.57402343749996],[26.0125,38.601708984375016],[26.11044921875006,38.54462890625001],[26.160351562500008,38.540722656250004],[26.141210937500034,38.486181640625006],[26.149609375000036,38.468457031249955],[26.157031250000042,38.30292968749998],[26.11074218750002,38.279638671875034],[26.103125,38.23417968750002],[26.094042968750017,38.21806640625002]]],[[[20.68671875000001,38.60869140625002],[20.64785156250008,38.60097656250005],[20.614355468750002,38.60625],[20.58398437500003,38.601708984375016],[20.5546875,38.58256835937502],[20.557910156250045,38.66186523437499],[20.592480468750068,38.760156249999966],[20.63466796875005,38.81757812500004],[20.69414062499999,38.84423828125003],[20.71962890625005,38.799169921875006],[20.714843750000057,38.63833007812502],[20.68671875000001,38.60869140625002]]],[[[24.67470703125005,38.80922851562502],[24.56904296875001,38.78481445312502],[24.54101562499997,38.788671875],[24.56455078125006,38.81943359375006],[24.56640625,38.832373046875034],[24.461035156250034,38.88862304687501],[24.473437500000074,38.96166992187497],[24.485644531250074,38.98027343750004],[24.564062500000063,38.942236328125034],[24.58125,38.87885742187498],[24.67470703125005,38.80922851562502]]],[[[23.41542968750008,38.958642578124994],[23.471972656250074,38.85009765625],[23.525,38.8134765625],[23.63623046875003,38.77021484374998],[23.68847656250003,38.76469726562499],[23.878222656250045,38.68657226562499],[24.09902343750008,38.670996093750006],[24.127539062500034,38.648486328125045],[24.15468750000005,38.58828125000002],[24.199707031249996,38.54101562499999],[24.211035156250006,38.50424804687506],[24.1875,38.46342773437498],[24.22011718750008,38.33862304687497],[24.27578125000005,38.22001953124996],[24.359667968750074,38.1625],[24.463964843750006,38.14511718749998],[24.563281250000074,38.14750976562501],[24.58837890625003,38.12397460937504],[24.57851562500008,38.02016601562502],[24.53652343750005,37.97973632812506],[24.502343750000023,37.969921875],[24.47265625,37.98051757812501],[24.445800781250025,38.004980468750034],[24.41650390625003,38.01655273437498],[24.359472656250034,38.01855468750006],[24.31777343750008,38.060351562500045],[24.212011718750006,38.11752929687506],[24.19257812500004,38.15166015624999],[24.189062500000034,38.204296874999955],[24.144140625000034,38.24306640625005],[24.102832031250074,38.31684570312498],[24.063574218750063,38.337207031250045],[24.04189453125008,38.374121093750006],[24.040136718750002,38.389990234375034],[23.88623046875,38.400732421875006],[23.758789062500057,38.401220703125034],[23.65078125000008,38.44306640625001],[23.61738281250001,38.55253906250004],[23.553320312500034,38.58198242187498],[23.505273437499994,38.612939453124994],[23.465234375000023,38.655859375000034],[23.364062500000014,38.735009765624994],[23.252148437500036,38.80122070312498],[23.143945312500023,38.84482421874998],[23.029101562500074,38.873388671875034],[22.935742187500065,38.83964843749999],[22.88134765625,38.84765625000003],[22.870312500000068,38.870507812499966],[22.986328125000057,38.915917968749994],[23.145800781250045,39.002685546875],[23.25820312500002,39.03134765625006],[23.31269531250004,39.03491210937497],[23.41542968750008,38.958642578124994]]],[[[23.779785156250057,39.11440429687502],[23.735156250000045,39.08056640625006],[23.666113281250002,39.09536132812505],[23.59394531250004,39.20859375],[23.779785156250057,39.11440429687502]]],[[[23.887988281250074,39.15830078124998],[23.84121093750005,39.146582031250006],[23.888085937500023,39.22636718749999],[23.97089843750001,39.267724609374994],[23.939746093750045,39.20053710937498],[23.887988281250074,39.15830078124998]]],[[[26.41015625000003,39.329443359375034],[26.39277343750004,39.270117187500034],[26.531054687500045,39.171777343749966],[26.578222656250063,39.109521484374994],[26.59560546875005,39.04882812499997],[26.583984375,39.03144531249998],[26.531542968750045,39.064355468750016],[26.488671875000023,39.074804687500034],[26.503125,39.03144531249998],[26.547167968750045,38.99414062500003],[26.46875,38.97280273437502],[26.39013671875003,38.97392578124999],[26.16083984375004,39.02587890625],[26.10791015625,39.08105468749997],[26.245117187500057,39.16411132812502],[26.273144531249983,39.19755859374999],[26.17597656250001,39.19428710937504],[26.072363281250034,39.095605468749994],[25.90625,39.138964843750045],[25.85546875,39.178662109374955],[25.84414062500008,39.20004882812506],[25.90957031250008,39.28754882812504],[26.026464843750006,39.284619140624955],[26.08837890625,39.30429687499998],[26.164843750000045,39.33198242187501],[26.16542968750008,39.37353515625005],[26.347753906250002,39.38300781250001],[26.41015625000003,39.329443359375034]]],[[[20.077929687500045,39.432714843750034],[20.09960937500003,39.376611328124966],[19.975,39.411425781250045],[19.883984375000068,39.461523437500034],[19.808886718750045,39.585302734375034],[19.648925781250057,39.726171875000034],[19.646484375,39.76708984375003],[19.707324218750045,39.79809570312503],[19.83857421875004,39.82011718749999],[19.89169921875003,39.79726562500005],[19.926074218750017,39.77373046875004],[19.936816406250074,39.74672851562505],[19.86220703125008,39.69262695312503],[19.8466796875,39.66811523437502],[19.904101562500074,39.61948242187506],[19.903125,39.6],[19.92734375,39.50590820312502],[19.95527343750001,39.47041015624998],[20.02773437500005,39.44208984374998],[20.077929687500045,39.432714843750034]]],[[[25.437695312500036,39.98330078125002],[25.39990234375,39.94956054687498],[25.3720703125,39.89130859375001],[25.357031250000063,39.80810546875003],[25.29873046875008,39.80610351562498],[25.263378906250068,39.82294921875004],[25.251757812500017,39.85439453125005],[25.24941406250005,39.89414062500006],[25.223828125,39.89257812499999],[25.203222656250063,39.84941406250002],[25.185156250000034,39.829931640625034],[25.126464843750057,39.825830078124994],[25.06220703125004,39.852392578125006],[25.065234375000017,39.90986328124998],[25.052343750000063,39.97636718750002],[25.05800781250005,39.999658203124966],[25.234179687500074,40.00541992187499],[25.285742187500006,39.95629882812503],[25.34804687500008,39.98476562500005],[25.373632812500063,40.01552734375002],[25.44912109375008,40.03481445312502],[25.437695312500036,39.98330078125002]]],[[[25.685742187500036,40.42656249999999],[25.572656250000023,40.40043945312499],[25.448046875000017,40.4828125],[25.568554687500068,40.51586914062497],[25.624316406250045,40.49199218749999],[25.664257812500008,40.46386718750006],[25.685742187500036,40.42656249999999]]],[[[24.774218750000074,40.615185546874955],[24.64589843750002,40.57944335937506],[24.51552734375002,40.64702148437495],[24.516699218750006,40.68720703124998],[24.585546875,40.76875],[24.623339843750045,40.79291992187501],[24.719140625000023,40.786279296874994],[24.77363281250004,40.73027343749996],[24.78632812500004,40.703857421875],[24.768652343750006,40.65888671874998],[24.774218750000074,40.615185546874955]]],[[[26.536425781250074,41.343115234375034],[26.330664062499977,41.23876953125],[26.325683593750025,41.143261718749976],[26.32841796875007,41.09702148437498],[26.33261718750003,41.06430664062497],[26.354101562500063,41.03676757812496],[26.354101562500063,40.99707031250006],[26.331054687500057,40.95449218749999],[26.241210937500057,40.88320312500002],[26.178906250000068,40.826513671875034],[26.109179687500074,40.749658203124994],[26.069726562500023,40.74028320312496],[26.03896484375008,40.726757812499955],[26.0107421875,40.76914062499998],[25.85566406250004,40.84409179687506],[25.49677734375001,40.88779296874997],[25.325292968750063,40.94311523437497],[25.250097656250034,40.93281250000001],[25.104492187500025,40.9947265625],[25.004687500000045,40.96752929687497],[24.792968750000057,40.857519531250034],[24.678710937500057,40.86948242187497],[24.55654296875005,40.93559570312495],[24.47705078125,40.94775390625003],[24.383789062500025,40.91274414062502],[24.234375,40.78613281249997],[24.082324218750074,40.72407226562504],[23.946093750000017,40.74833984374998],[23.762792968750063,40.74780273437497],[23.743261718750006,40.67700195312503],[23.778710937500023,40.62797851562499],[23.87890625,40.54438476562501],[23.831933593750023,40.481542968750006],[23.866796875000034,40.41855468750006],[23.932031250000076,40.40576171875003],[24.03056640624999,40.40932617187502],[24.21279296875008,40.32778320312502],[24.292480468750057,40.241796875],[24.343359375000034,40.14770507812503],[24.232421875,40.215185546875006],[24.158789062500006,40.28002929687497],[24.056054687500048,40.30356445312498],[23.913183593750063,40.35878906250005],[23.823437500000065,40.36801757812506],[23.72792968750008,40.329736328124994],[23.720507812500074,40.286279296875016],[23.823437500000065,40.20512695312499],[23.917578125000063,40.155224609374955],[23.96748046875001,40.11455078125002],[24.000781250000045,40.024609374999976],[23.981835937500023,39.994042968749994],[23.947070312500045,39.96557617187506],[23.83535156250002,40.02226562499996],[23.66455078125003,40.22382812499998],[23.42626953125,40.26396484374999],[23.38642578125004,40.22197265624996],[23.43320312500006,40.11542968750001],[23.467089843750042,40.07392578125001],[23.674121093750045,39.95888671875002],[23.657519531250017,39.93447265625002],[23.62734375,39.92407226562502],[23.395605468750034,39.98984375],[23.328222656250002,40.08994140624998],[23.312011718749968,40.216455078124994],[23.09814453125003,40.30429687500003],[22.896484375000057,40.39990234374997],[22.851367187500017,40.490625],[22.892871093750045,40.524267578125006],[22.92226562500008,40.59086914062499],[22.811425781250048,40.57861328124997],[22.74189453125001,40.536474609375006],[22.629492187500034,40.49555664062501],[22.62490234375005,40.42861328124996],[22.642675781250034,40.366601562500016],[22.60546875,40.27641601562496],[22.56933593750003,40.11933593750001],[22.59218750000005,40.03691406250002],[22.835742187500017,39.80058593750002],[22.919042968750034,39.62890625000003],[22.978808593750045,39.563818359375006],[23.103417968750023,39.492041015625034],[23.233398437500025,39.35844726562499],[23.288476562500076,39.28881835937502],[23.327734374999977,39.17490234375],[23.218359375,39.10439453125002],[23.15468750000008,39.10146484375005],[23.119433593750017,39.13276367187501],[23.16875,39.21044921875003],[23.16171875,39.25776367187501],[22.992871093750068,39.3310546875],[22.92138671874997,39.30634765625004],[22.838964843750063,39.25859374999999],[22.886035156250074,39.16997070312496],[22.93896484375,39.11152343749995],[22.965527343750008,39.03090820312496],[23.066699218750017,39.03793945312498],[22.930468750000045,38.94770507812498],[22.80263671875002,38.901611328125],[22.676855468749977,38.89892578125],[22.596777343750002,38.89057617187498],[22.569140625000074,38.86748046874999],[22.63427734375003,38.850683593750034],[22.6875,38.84916992187499],[22.774023437500063,38.80039062499998],[23.020312500000074,38.74189453124998],[23.1376953125,38.66796875],[23.25292968750003,38.66123046875006],[23.368945312500045,38.52553710937505],[23.56962890625007,38.48940429687505],[23.683984375000076,38.35244140625002],[23.836035156250063,38.32548828124995],[23.96699218750001,38.275],[24.005371093750025,38.22680664062503],[24.024511718750006,38.139794921874966],[24.033007812500045,37.95532226562506],[24.061328125000042,37.81791992187502],[24.062304687500074,37.77451171874997],[24.055371093750068,37.709619140624994],[24.019726562500008,37.67773437499997],[23.97158203125005,37.67675781250006],[23.87734375000005,37.77778320312501],[23.73281250000008,37.88408203125002],[23.58046875000005,38.01054687500002],[23.537207031250034,38.03276367187502],[23.50175781249999,38.03486328124998],[23.42021484374999,37.992089843749994],[23.193652343750017,37.95903320312499],[23.087402343750057,37.912841796875],[23.047460937500006,37.90263671874996],[23.036328125000036,37.87836914062501],[23.086132812500068,37.853125],[23.147167968750068,37.79531250000005],[23.147167968750068,37.71625976562501],[23.197558593750017,37.62021484374997],[23.262695312500057,37.59541015624998],[23.347558593750023,37.597558593749994],[23.396191406250068,37.57978515625001],[23.408789062500063,37.541552734375045],[23.458105468749977,37.496923828125006],[23.490625,37.46386718750003],[23.48925781250003,37.440185546875],[23.252539062500034,37.37729492187506],[23.20302734375008,37.348535156249966],[23.16152343750005,37.333837890625006],[23.1,37.36376953125006],[23.096484375000045,37.440576171874994],[23.01513671874997,37.481787109375034],[22.940527343750063,37.51708984375003],[22.851074218750057,37.5322265625],[22.775,37.58510742187502],[22.725390625000017,37.542138671874966],[22.765039062500023,37.39331054687503],[22.851074218750057,37.29082031250002],[22.99501953125005,37.01586914062506],[23.060351562500045,36.85351562500003],[23.07353515625007,36.77495117187499],[23.041015625000025,36.64453125],[23.111718750000023,36.54760742187506],[23.16015625000003,36.448095703125034],[23.106835937500023,36.45185546874998],[23.060546875,36.48696289062505],[22.982910156249996,36.52836914062504],[22.832324218750045,36.687109375000034],[22.779882812500006,36.78618164062499],[22.71718750000002,36.79394531250006],[22.6083984375,36.779736328125004],[22.489062500000017,36.56816406249996],[22.48945312500001,36.446923828124966],[22.42773437500003,36.47578124999998],[22.374804687500017,36.513574218750044],[22.38125,36.64619140624998],[22.375976562500053,36.70190429687503],[22.23115234375004,36.882568359375],[22.16474609375001,36.90283203125003],[22.13378906250003,36.963916015625045],[22.08046875000008,37.028955078124966],[22.01171875000003,37.016503906249994],[21.95556640625003,36.990087890625034],[21.940039062500063,36.89179687500001],[21.93427734375004,36.80366210937498],[21.892382812500045,36.73730468749997],[21.738085937500045,36.86323242187495],[21.58291015625005,37.080957031249994],[21.57880859375001,37.20039062499998],[21.692480468750006,37.309277343749955],[21.678906250000068,37.38720703125003],[21.5712890625,37.54101562500003],[21.41621093750001,37.63994140625002],[21.32929687499998,37.66933593750005],[21.28847656250002,37.77451171874997],[21.20527343750004,37.82885742187503],[21.137988281250014,37.85415039062505],[21.124707031250065,37.89160156250003],[21.14501953125003,37.91928710937498],[21.30810546875003,38.027441406250006],[21.40371093750005,38.19667968750002],[21.45117187500003,38.204736328124966],[21.548730468750023,38.16459960937496],[21.658398437500068,38.17509765624996],[21.74843750000002,38.27421874999998],[21.82470703125003,38.328125],[21.95332031250001,38.321191406249966],[22.24375,38.188720703125],[22.55585937500004,38.11323242187498],[22.711523437500034,38.04692382812496],[22.799609375000042,37.981201171875],[22.846386718750068,37.96757812499996],[22.92031250000002,37.95830078125002],[22.916992187500053,38.00747070312502],[22.893164062500006,38.050927734374994],[22.954785156250036,38.074609375000016],[23.122070312499996,38.073339843750006],[23.15253906250001,38.096386718750004],[23.183496093750076,38.133691406249966],[23.148925781250057,38.17607421874999],[23.093554687500074,38.19643554687505],[23.034375,38.202099609374955],[22.995410156250045,38.21552734375004],[22.932519531250023,38.20195312500002],[22.834375,38.234716796875034],[22.78369140625,38.26171875000003],[22.753906250000057,38.289501953125004],[22.58339843750005,38.34492187500001],[22.421679687500045,38.43852539062499],[22.38525390625,38.38554687500002],[22.319921875,38.35683593750005],[22.22685546875007,38.35283203125002],[21.96533203124997,38.412451171875006],[21.804687500000025,38.36694335937497],[21.717089843750045,38.35502929687502],[21.650097656250068,38.35400390625],[21.567675781250074,38.33359375],[21.472558593750048,38.321386718750006],[21.390136718750025,38.407812500000034],[21.35546875,38.474804687500004],[21.3310546875,38.48730468749997],[21.32978515625001,38.424365234375045],[21.30332031250003,38.373925781249966],[21.182617187500025,38.34555664062506],[21.11318359375002,38.384667968750016],[21.059765625000068,38.503271484375034],[20.992187500000057,38.65400390625001],[20.873242187500068,38.775732421875034],[20.776855468750057,38.80751953125002],[20.768554687500057,38.874414062499966],[20.77734375,38.92788085937502],[20.893164062500034,38.94111328124998],[21.07421874999997,38.88515625000002],[21.111621093750045,38.89628906249999],[21.15234375,38.92207031250001],[21.14453125,38.97919921875001],[21.11835937500001,39.029980468749955],[21.068554687500068,39.03227539062499],[21.03408203125008,39.026269531249994],[20.922753906250023,39.036767578124994],[20.77968750000002,39.00854492187503],[20.71337890625,39.03515625000002],[20.69130859375005,39.067480468750034],[20.571679687500023,39.14770507812505],[20.468261718749996,39.25527343750002],[20.300781250000057,39.32709960937501],[20.19140625,39.545800781249966],[20.099414062500074,39.641259765624966],[20.001269531250074,39.709423828125004],[20.022558593750063,39.710693359375],[20.059765624999983,39.69912109375002],[20.13105468750004,39.66162109375003],[20.206835937500017,39.65351562499998],[20.24824218750001,39.678369140624966],[20.272070312499974,39.701171875],[20.287597656250057,39.73857421874999],[20.29384765625008,39.7822265625],[20.30615234375,39.79667968750002],[20.36406250000007,39.79174804687497],[20.382421875,39.802636718749994],[20.381640625000017,39.84179687500005],[20.344238281250025,39.890625],[20.311328125000074,39.95078125000006],[20.311132812500034,39.97944335937503],[20.338476562500002,39.991064453125006],[20.38369140625008,40.0171875],[20.408007812500074,40.049462890624994],[20.4560546875,40.065576171874994],[20.527050781250068,40.068505859374966],[20.60625,40.08266601562502],[20.657421875000068,40.11738281249998],[20.664941406249994,40.151757812499966],[20.69697265625004,40.24638671874996],[20.717871093750034,40.29267578124998],[20.751660156249983,40.33491210937498],[20.77001953125,40.391894531250045],[20.80605468750005,40.44545898437502],[20.881640625000017,40.46791992187499],[20.95019531250003,40.49438476562506],[21.001953125,40.563378906249966],[21.030859375000034,40.62246093750002],[21.031054687500074,40.65864257812501],[20.987890625000063,40.7177734375],[20.95576171875001,40.775292968749994],[20.96425781250005,40.84990234374999],[21.1,40.85615234375004],[21.147558593750006,40.863134765625034],[21.32373046875,40.867138671874955],[21.404101562500045,40.90717773437503],[21.459667968749983,40.90361328125002],[21.575781250000034,40.86894531249996],[21.627539062500006,40.896337890625034],[21.77949218750004,40.95043945312506],[21.929492187500042,41.10742187499997],[21.99335937500001,41.13095703125006],[22.138867187500068,41.140527343749966],[22.18447265625005,41.15864257812501],[22.23769531250005,41.15517578125002],[22.400781250000048,41.123388671875034],[22.49355468750005,41.118505859375006],[22.603613281249977,41.14018554687499],[22.724804687500068,41.17851562499998],[22.75507812500004,41.31274414062506],[22.783886718750036,41.33198242187498],[22.859277343750023,41.33735351562501],[22.91601562500003,41.33627929687506],[23.025585937500065,41.32563476562501],[23.155957031250065,41.32207031249999],[23.239843750000034,41.38496093750001],[23.372070312500057,41.38964843749999],[23.433398437500017,41.39873046874998],[23.53583984375001,41.38603515624998],[23.63515625000008,41.386767578125045],[23.762304687500063,41.41298828125005],[23.880859375000057,41.45595703125002],[23.973535156250023,41.452294921874966],[24.011328124999977,41.460058593750034],[24.03291015625004,41.469091796875034],[24.056054687500048,41.527246093749966],[24.230371093750023,41.53081054687499],[24.28945312500008,41.525048828124966],[24.38671875,41.523535156250006],[24.487890625,41.55522460937499],[24.518261718750065,41.55253906249995],[24.56933593749997,41.46738281250003],[24.59599609375007,41.44272460937497],[24.65107421875001,41.41997070312496],[24.773730468750045,41.356103515624994],[24.79580078125002,41.37290039062506],[24.846875,41.394238281249955],[24.99355468750008,41.36499023437503],[25.13339843750006,41.31577148437506],[25.251171875000068,41.243554687499994],[25.381933593750063,41.264355468749955],[25.52705078125004,41.29980468749999],[25.621484375000023,41.31010742187496],[25.723925781250017,41.31503906249998],[25.784960937500014,41.330419921875006],[25.923339843750057,41.31191406249996],[26.066406250000057,41.35068359375006],[26.135351562499977,41.3857421875],[26.155175781250023,41.43486328124999],[26.143554687500057,41.52153320312495],[26.11123046875005,41.60820312500001],[26.076953125000074,41.64018554687496],[26.066015625000063,41.673242187500044],[26.085546875000063,41.704150390625045],[26.10742187499997,41.72568359374998],[26.200585937500048,41.74379882812502],[26.320898437500034,41.716552734375],[26.41054687499999,41.696337890625045],[26.4625,41.66337890624999],[26.49501953125008,41.63325195312498],[26.54453125000003,41.60722656250002],[26.581347656250074,41.60126953125003],[26.60976562499999,41.51215820312501],[26.62490234375008,41.401757812499994],[26.60234374999999,41.354150390624966],[26.536425781250074,41.343115234375034]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Country","admin":"France","adm0_a3":"FRA","geou_dif":0,"geounit":"France","gu_a3":"FRA","su_dif":0,"subunit":"France","su_a3":"FRA","brk_diff":0,"name":"France","name_long":"France","brk_a3":"FRA","brk_name":"France","brk_group":null,"abbrev":"Fr.","postal":"F","formal_en":"French Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"France","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":64057792,"gdp_md_est":2128000,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"FR","iso_a3":"FRA","iso_n3":"250","un_a3":"250","wb_a2":"FR","wb_a3":"FRA","woe_id":-99,"adm0_a3_is":"FRA","adm0_a3_us":"FRA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":3,"tiny":-99,"homepart":1,"filename":"FRA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[55.79736328125003,-21.33935546875003],[55.65615234375005,-21.369042968750037],[55.55761718749997,-21.35830078124998],[55.36269531250005,-21.27363281250004],[55.31035156250002,-21.21738281250005],[55.23281250000005,-21.05839843749999],[55.25,-21.002441406249957],[55.31132812500007,-20.90410156249999],[55.45048828125007,-20.86513671875005],[55.596484375000074,-20.87958984374997],[55.661914062500074,-20.90625],[55.739160156249994,-21.021484375000014],[55.8390625000001,-21.13857421874998],[55.8224609375001,-21.277832031250014],[55.79736328125003,-21.33935546875003]]],[[[45.180273437500006,-12.97675781250004],[45.11757812500005,-12.98496093750002],[45.08769531250002,-12.958496093749957],[45.069433593750006,-12.895605468750034],[45.08828125000005,-12.835058593750034],[45.09355468750002,-12.786132812500014],[45.04257812500006,-12.701269531249963],[45.092382812500055,-12.653027343749997],[45.13476562499997,-12.709179687499969],[45.158789062500006,-12.712988281250034],[45.22314453124997,-12.752148437500026],[45.20429687500003,-12.824316406249977],[45.20859375,-12.847949218750003],[45.17939453125004,-12.920214843749973],[45.180273437500006,-12.97675781250004]]],[[[-52.28891601562498,4.87612304687498],[-52.32460937499996,4.770898437500037],[-52.21997070312494,4.862792968750014],[-52.05810546875003,4.717382812499963],[-52.0123046875,4.645996093749985],[-51.96191406249997,4.514404296875],[-51.97934570312495,4.429882812500011],[-52.00170898437497,4.386230468749999],[-52.002929687499964,4.352294921875014],[-51.95478515625001,4.399072265625051],[-51.92768554687501,4.436132812500048],[-51.91958007812493,4.52431640624998],[-51.880273437500016,4.633740234374983],[-51.82753906250002,4.635693359375026],[-51.78564453125003,4.570507812499983],[-51.698632812499966,4.286816406249997],[-51.66582031249993,4.228808593750003],[-51.653271484374955,4.138769531250034],[-51.658105468749966,4.098486328125006],[-51.65253906249998,4.061279296874972],[-51.68344726562497,4.039697265625023],[-51.76708984374997,3.992675781250028],[-51.80527343750003,3.929931640625043],[-51.827490234375006,3.869580078124997],[-51.87949218749994,3.828564453124997],[-51.92890624999998,3.776953125000048],[-51.94433593750003,3.735107421875042],[-51.990625,3.702001953124963],[-51.99951171874997,3.646875],[-52.11611328125002,3.45229492187498],[-52.16259765625,3.364697265624997],[-52.22944335937501,3.271679687500054],[-52.27124023437499,3.237109375000017],[-52.327880859375,3.181738281250019],[-52.35664062499998,3.117724609375031],[-52.35664062499998,3.051562499999974],[-52.39638671875002,2.972216796874974],[-52.418408203124955,2.903857421874989],[-52.45585937499996,2.86416015624998],[-52.55468750000002,2.647656250000011],[-52.55947265625002,2.573144531250023],[-52.58300781250003,2.528906249999977],[-52.653173828125006,2.425732421875011],[-52.70063476562501,2.36367187499998],[-52.78339843749998,2.317187500000017],[-52.87041015624996,2.266650390625017],[-52.903466796875016,2.211523437499977],[-52.96484375,2.183544921874969],[-53.00971679687498,2.181738281250048],[-53.08227539062503,2.201708984375031],[-53.18007812499996,2.211328125000037],[-53.22978515624999,2.20488281249996],[-53.252197265625,2.232275390625034],[-53.28549804687495,2.295214843749974],[-53.33442382812498,2.339746093749994],[-53.36601562500002,2.324218750000028],[-53.43183593750001,2.279443359374966],[-53.50898437500001,2.253125],[-53.56396484375003,2.26191406250004],[-53.68369140624998,2.29291992187504],[-53.734716796875006,2.308544921875025],[-53.750146484375016,2.335009765625003],[-53.76777343749998,2.354833984375048],[-53.79423828124996,2.345996093750017],[-53.829541015624955,2.31293945312504],[-53.87661132812494,2.278271484374997],[-53.94643554687496,2.232568359375009],[-54.08974609375002,2.150488281249977],[-54.130078124999976,2.121044921875026],[-54.16738281249994,2.137060546875005],[-54.227978515624955,2.153320312500028],[-54.29306640624998,2.15424804687504],[-54.43310546875,2.207519531250057],[-54.51508789062498,2.245458984374963],[-54.55048828125001,2.293066406249991],[-54.59194335937502,2.313769531250031],[-54.61625976562499,2.326757812500006],[-54.60473632812497,2.335791015624991],[-54.56840820312502,2.342578125000031],[-54.53593749999999,2.343310546875003],[-54.48554687500001,2.416113281250005],[-54.40200195312496,2.46152343750002],[-54.25673828125002,2.713720703124977],[-54.19550781249998,2.817871093750057],[-54.18808593749998,2.874853515625034],[-54.17070312499999,2.993603515624969],[-54.203125,3.138183593750028],[-54.18803710937499,3.178759765625031],[-54.063183593749955,3.353320312499988],[-54.00957031249993,3.448535156250017],[-54.005957031250006,3.530517578125028],[-53.990478515624964,3.589550781249968],[-54.00590820312499,3.620410156250045],[-54.03422851562499,3.62939453125],[-54.08198242187495,3.705957031249966],[-54.11279296875,3.769433593750023],[-54.197460937499955,3.834423828125026],[-54.255517578124966,3.901074218750026],[-54.35073242187499,4.054101562500023],[-54.342138671875006,4.140039062500037],[-54.369140625,4.170947265625017],[-54.398388671874926,4.202490234374962],[-54.39624023437503,4.241406249999983],[-54.41601562499997,4.337646484375057],[-54.44067382812503,4.428027343749989],[-54.449609374999966,4.485009765624966],[-54.42607421874998,4.583007812500043],[-54.44023437500002,4.691992187500033],[-54.47114257812501,4.749316406249989],[-54.47968749999998,4.836523437499991],[-54.47333984375001,4.914697265625023],[-54.446875,4.958789062500031],[-54.45219726562496,5.013476562499989],[-54.331640625,5.18740234374998],[-54.24018554687495,5.288232421875009],[-54.155957031250004,5.358984375000034],[-54.085302734375006,5.41181640625004],[-53.98959960937495,5.676025390625043],[-53.91992187499997,5.768994140624983],[-53.84716796875,5.782226562500014],[-53.454443359375,5.563476562500028],[-53.27036132812497,5.543261718750003],[-52.899316406249966,5.425048828124986],[-52.76499023437498,5.273486328125017],[-52.453955078125006,5.021337890624991],[-52.29052734375003,4.942187500000031],[-52.28891601562498,4.87612304687498]]],[[[-60.826269531250006,14.494482421874991],[-60.83662109374998,14.437402343750007],[-60.86210937499996,14.42626953125004],[-60.8994140625,14.473779296875037],[-61.063720703125,14.467089843750017],[-61.08886718749997,14.509570312500045],[-61.09033203125,14.529687499999978],[-61.01132812499998,14.601904296875032],[-61.10429687499998,14.62124023437498],[-61.14111328124995,14.652392578125017],[-61.219726562499964,14.804394531249981],[-61.21333007812501,14.84858398437501],[-61.18081054687493,14.871923828124977],[-61.127392578124976,14.875292968750045],[-61.027099609375,14.826171874999986],[-60.952539062499994,14.75625],[-60.92714843749996,14.755175781249989],[-60.91865234375001,14.735351562500043],[-60.93369140624997,14.686181640624966],[-60.88916015624994,14.644531250000014],[-60.86997070312494,14.613720703125038],[-60.826269531250006,14.494482421874991]]],[[[-61.23046875000002,15.889941406250072],[-61.28623046875003,15.88603515624999],[-61.310742187499955,15.894677734374966],[-61.31840820312502,15.954882812500076],[-61.27529296875002,15.996240234374964],[-61.25,16.006298828124983],[-61.21235351562498,15.95991210937504],[-61.20341796874993,15.92124023437506],[-61.23046875000002,15.889941406250072]]],[[[-61.58955078125001,16.006933593750006],[-61.67045898437497,15.962060546875023],[-61.71025390624998,15.975927734375006],[-61.75942382812496,16.062060546875045],[-61.79409179687502,16.300976562499955],[-61.76713867187493,16.340478515625023],[-61.748046874999964,16.355273437500017],[-61.64150390625002,16.32597656249999],[-61.597021484375006,16.292187499999955],[-61.55234375,16.270898437499966],[-61.57504882812498,16.227148437500034],[-61.563867187499994,16.047753906249994],[-61.58955078125001,16.006933593750006]]],[[[-61.3271484375,16.23041992187498],[-61.44482421875,16.219287109375017],[-61.522167968749955,16.22802734375003],[-61.53999023437492,16.299609375000045],[-61.500585937500006,16.36020507812503],[-61.528906249999984,16.43378906250001],[-61.510644531249994,16.477685546874994],[-61.471191406249936,16.506640625000045],[-61.40644531250001,16.468310546875045],[-61.39614257812494,16.413427734375063],[-61.35546875,16.363183593750023],[-61.17260742187497,16.25610351562497],[-61.3271484375,16.23041992187498]]],[[[9.480371093750023,42.80541992187503],[9.454199218750034,42.65859374999996],[9.473242187500006,42.615576171875006],[9.509375,42.585595703125016],[9.526171875000045,42.552636718749966],[9.556445312500074,42.16093750000002],[9.550683593750051,42.12973632812506],[9.428417968750011,41.97241210937497],[9.40087890625,41.92622070312498],[9.394824218750017,41.73120117187502],[9.374218750000068,41.678808593750034],[9.330859375000045,41.62714843749998],[9.253417968750057,41.460058593750034],[9.186132812500032,41.38491210937502],[9.003027343750034,41.47656250000003],[8.895019531250057,41.51616210937502],[8.842089843750017,41.55888671875001],[8.80751953125008,41.58837890624999],[8.82978515625001,41.627685546875],[8.879003906250006,41.66855468749997],[8.886816406249977,41.70068359375003],[8.770996093750028,41.73710937499999],[8.71796875000004,41.76142578124998],[8.718652343750023,41.804003906250045],[8.75869140625008,41.87041015624999],[8.740429687500011,41.925146484375034],[8.673632812500074,41.92236328124999],[8.621875,41.93071289062502],[8.615136718750051,41.959130859375016],[8.653417968750034,41.995556640624976],[8.702539062500023,42.043115234374994],[8.700976562500045,42.09560546875002],[8.641601562500028,42.11821289062502],[8.58779296875008,42.160839843749976],[8.566210937500045,42.21879882812499],[8.60791015625,42.258447265624994],[8.675488281250011,42.284033203125034],[8.625878906250023,42.343408203124966],[8.592382812500034,42.34472656249997],[8.565625,42.35771484374996],[8.5875,42.38530273437498],[8.64003906250008,42.426562500000045],[8.71308593750004,42.54975585937501],[8.81484375000008,42.60791015625003],[8.994921875000074,42.64531250000002],[9.04365234375004,42.66166992187499],[9.088378906250028,42.704980468749994],[9.137890625000068,42.73291015625],[9.198046875000074,42.729199218749955],[9.253515625,42.71245117187502],[9.287695312500034,42.69462890625002],[9.313378906250023,42.71318359374999],[9.338378906250055,42.76689453125002],[9.323046875000045,42.814062500000034],[9.330957031250051,42.94379882812498],[9.36318359375005,43.01738281249996],[9.415234374999983,43.021484375],[9.463281250000023,42.98100585937502],[9.460839843750051,42.94521484375002],[9.478613281250034,42.860498046874994],[9.480371093750023,42.80541992187503]]],[[[-1.17832031249992,45.904052734375],[-1.213574218750011,45.81660156250004],[-1.2802734375,45.897119140624994],[-1.368701171874989,45.967675781249994],[-1.388867187499926,46.032958984374964],[-1.388671874999972,46.050390625000055],[-1.285058593749994,46.00268554687503],[-1.17832031249992,45.904052734375]]],[[[2.759375,50.750634765624994],[2.839746093750023,50.71176757812498],[2.862402343750034,50.716015624999955],[2.921972656250006,50.72705078124997],[3.022851562500023,50.76689453125001],[3.106835937500079,50.77944335937499],[3.154882812500006,50.748925781249994],[3.182031250000051,50.73168945312502],[3.234960937499977,50.66293945312498],[3.249804687500074,50.591162109375006],[3.273339843750079,50.53154296875002],[3.316210937500017,50.50737304687498],[3.47695312500008,50.49946289062498],[3.595410156250068,50.47734374999999],[3.626757812500045,50.45732421875002],[3.667285156250045,50.324804687500006],[3.689355468750022,50.306054687500016],[3.718847656250063,50.321679687499994],[3.748046875000056,50.343505859375],[3.788574218750057,50.34697265624999],[3.858105468750011,50.338574218749976],[3.949707031250028,50.33593749999997],[4.044140624999983,50.32133789062502],[4.174609375000017,50.24648437500005],[4.169628906250067,50.22177734374998],[4.144140625000034,50.17841796875004],[4.13525390625,50.14379882812499],[4.157714843750028,50.1298828125],[4.192187500000045,50.09414062499999],[4.183886718750045,50.052832031250034],[4.150292968750023,50.02387695312498],[4.136816406250034,50],[4.137011718750074,49.984472656250034],[4.149316406250023,49.971582031249994],[4.176074218750045,49.96025390624999],[4.36875,49.944970703124994],[4.545019531250063,49.96025390624999],[4.65615234375005,50.00244140624997],[4.675097656250017,50.046875],[4.706640625000034,50.097070312499966],[4.772851562500023,50.1390625],[4.818652343750045,50.15317382812503],[4.86054687500004,50.135888671874994],[4.790039062499972,49.959570312500034],[4.841503906250068,49.914501953125004],[4.849121093750028,49.84711914062504],[4.867578125000051,49.78813476562502],[4.930566406250023,49.789257812499976],[5.006933593750034,49.77836914062498],[5.061035156250028,49.756542968749976],[5.124121093750006,49.72148437500001],[5.215039062500068,49.68925781250002],[5.27880859375,49.67792968750003],[5.301953125000011,49.650976562500034],[5.353515625000028,49.61982421875001],[5.434667968750034,49.55449218750001],[5.507324218749999,49.51088867187502],[5.542382812500051,49.51103515624996],[5.610058593750068,49.528222656249994],[5.710449218749999,49.53920898437502],[5.789746093749983,49.53828125000001],[5.82343750000001,49.50507812499998],[5.9013671875,49.489746093749964],[5.928906250000011,49.47753906249997],[5.959472656250028,49.45463867187502],[6.01142578125004,49.44545898437502],[6.074121093750023,49.45463867187502],[6.119921875000016,49.485205078125034],[6.181054687500051,49.498925781249966],[6.242187500000057,49.49433593750001],[6.277343750000028,49.47753906249997],[6.344335937500005,49.45273437499997],[6.38222656250008,49.45815429687502],[6.458105468750006,49.44287109375002],[6.534277343750063,49.394677734374966],[6.566308593750023,49.34619140625003],[6.574707031250028,49.31967773437506],[6.607617187499983,49.290869140625034],[6.735449218750006,49.16059570312498],[6.77626953125008,49.154150390625],[6.820703125000051,49.173925781250034],[6.84951171875008,49.20195312499996],[6.891210937500034,49.20751953125003],[6.958300781250017,49.19462890624999],[7.001464843750028,49.17988281249998],[7.022167968750068,49.123437500000044],[7.03671875,49.112695312499994],[7.065722656250074,49.12485351562498],[7.117382812500011,49.12753906249997],[7.19990234375004,49.113623046875],[7.313378906250079,49.12954101562505],[7.404199218749994,49.15307617187503],[7.450585937500051,49.15219726562503],[7.525488281250033,49.086376953124955],[7.610937500000033,49.061767578125],[7.799218750000023,49.04189453125005],[8.001269531250045,49.01093750000003],[8.080664062500063,48.98588867187499],[8.134863281250006,48.97358398437498],[8.140332031250038,48.88642578124998],[8.124023437500028,48.87329101562497],[7.92275390625005,48.69853515624999],[7.837988281250006,48.636035156250045],[7.794824218749994,48.54682617187498],[7.765136718749999,48.410009765625],[7.705664062500063,48.280029296875],[7.616601562500023,48.15678710937502],[7.584179687499983,48.064306640625006],[7.608496093750063,48.002587890625044],[7.593261718750056,47.90566406250002],[7.538574218750028,47.77363281250004],[7.529394531250034,47.67387695312496],[7.565429687500001,47.606542968750006],[7.615625,47.59272460937504],[7.494921875000016,47.54736328125003],[7.467382812500006,47.507666015625034],[7.420019531250034,47.45517578124998],[7.343164062499995,47.43310546875002],[7.265722656250033,47.42578125000003],[7.203125,47.432714843750034],[7.167480468749999,47.453710937500034],[7.169238281250018,47.473242187500034],[7.136035156249989,47.48984375000003],[7.05341796875004,47.489355468750034],[6.968359375000033,47.45322265625003],[6.900390625000028,47.394238281250004],[6.921484374999977,47.36123046875002],[6.98408203125004,47.35253906250003],[7.000585937500034,47.339453125000034],[7.000585937500034,47.32250976562506],[6.978515625000057,47.30205078124996],[6.95205078125008,47.26718750000006],[6.820703125000051,47.163183593750006],[6.688085937500034,47.05825195312505],[6.666894531250079,47.02651367187496],[6.624804687500017,47.00434570312498],[6.45625,46.94833984375003],[6.438574218750006,46.92587890624998],[6.429003906250016,46.832275390625],[6.41015625,46.75541992187499],[6.285156250000028,46.683056640624976],[6.160742187499977,46.61103515624995],[6.129687500000045,46.56699218750006],[6.107031250000063,46.516064453124976],[6.06796875,46.45854492187499],[6.06025390625004,46.42817382812501],[6.123242187500068,46.378613281249955],[6.115917968750011,46.33764648437506],[6.095898437500011,46.27939453125],[6.0361328125,46.23808593750002],[5.970019531250045,46.214697265625034],[5.971484375000074,46.151220703125006],[6.006640625000045,46.14233398437505],[6.086621093750068,46.14702148437501],[6.199414062500039,46.19306640624998],[6.272949218750028,46.25224609374996],[6.229589843750063,46.30844726562506],[6.224218750000033,46.31943359374997],[6.234667968750045,46.3326171875],[6.321875,46.393701171875016],[6.428906250000011,46.43051757812506],[6.578222656250034,46.437353515625034],[6.758105468750017,46.41577148437497],[6.77607421875004,46.40664062499999],[6.767382812500045,46.36918945312498],[6.7841796875,46.31396484375003],[6.816796875000051,46.27519531250002],[6.772070312500006,46.16513671874998],[6.805664062500028,46.13066406249998],[6.858007812500034,46.08940429687502],[6.897265625000016,46.05175781249997],[6.953710937500063,46.01713867187504],[7.00390625,45.95883789062506],[7.021093750000034,45.92578124999997],[6.940820312500023,45.86835937500001],[6.804492187500045,45.81455078125006],[6.789160156250034,45.78007812499996],[6.790917968750023,45.740869140624966],[6.80625,45.71000976562499],[6.881445312500006,45.67036132812498],[6.962402343750057,45.58056640625],[7.013671875000028,45.50048828125003],[7.126074218750006,45.423681640625006],[7.153417968749977,45.40092773437498],[7.14638671875005,45.381738281249994],[7.116796874999977,45.349023437499994],[7.078320312500039,45.23994140624998],[7.03242187500004,45.222607421874976],[6.98125,45.21557617187497],[6.842285156250028,45.135644531250044],[6.780371093750006,45.14531249999995],[6.692285156250022,45.14428710937503],[6.627734375000017,45.11796874999999],[6.634765625000028,45.06816406249995],[6.69140625,45.02260742187502],[6.724707031250034,44.972998046875034],[6.738183593750023,44.92138671875],[6.801074218750045,44.883154296875034],[6.889355468750011,44.86030273437498],[6.93984375000008,44.858740234375034],[6.972851562500068,44.84501953124999],[6.99267578125,44.82729492187502],[7.030664062500023,44.716699218750044],[7.007910156250006,44.68896484374999],[6.96035156250008,44.677148437499966],[6.931933593750074,44.631640625000045],[6.875195312500068,44.564550781250034],[6.842968750000068,44.51069335937498],[6.87861328125004,44.46328125000002],[6.893847656250045,44.42817382812498],[6.874804687500074,44.39204101562498],[6.900195312499989,44.33574218749996],[6.967285156249999,44.280029296875],[7.149414062500056,44.20170898437502],[7.318554687500068,44.13798828125001],[7.370898437500074,44.12739257812498],[7.599414062500074,44.16835937499996],[7.637207031250056,44.16484375],[7.665039062500028,44.11601562499996],[7.677148437500023,44.08315429687502],[7.651464843750034,44.03364257812498],[7.589648437500045,43.96542968750003],[7.522656250000068,43.91108398437495],[7.482031250000062,43.864892578124966],[7.490527343750017,43.82294921875004],[7.4931640625,43.76713867187504],[7.43867187500001,43.75043945312501],[7.436914062500023,43.76147460937503],[7.414453125000051,43.770898437499994],[7.395019531249999,43.76533203125001],[7.380078125000067,43.753222656250045],[7.377734375000045,43.73173828125001],[7.261523437500074,43.696093750000045],[7.181445312500017,43.65913085937498],[6.864746093750057,43.438330078125006],[6.716601562500074,43.37358398437496],[6.68740234375008,43.3345703125],[6.657226562500057,43.261669921875004],[6.570214843750023,43.19907226562503],[6.494042968750023,43.169287109375006],[6.305371093750067,43.13872070312499],[6.115917968750011,43.07236328124998],[6.030566406250017,43.10097656250002],[5.809472656250023,43.09790039062503],[5.671582031250068,43.17783203125006],[5.406542968750073,43.22851562499999],[5.32021484375008,43.34492187499998],[5.199511718750017,43.35249023437504],[5.120410156250045,43.348974609375034],[5.073144531250023,43.366601562499966],[5.060839843749989,43.40629882812499],[5.05976562500004,43.44453125000004],[4.975976562500023,43.426953125],[4.911914062500045,43.426953125],[4.873730468750067,43.41162109375],[4.843554687500045,43.39394531250002],[4.807910156250074,43.40522460937501],[4.787207031250034,43.40141601562496],[4.789062500000056,43.37890625],[4.712109375000011,43.37329101562499],[4.628710937500074,43.387109374999966],[4.409765625000063,43.447216796874955],[4.37617187500004,43.45639648437506],[4.22421875,43.479638671874994],[4.162792968750011,43.50366210937499],[4.113085937500017,43.56303710937502],[4.07509765625008,43.581835937500045],[4.052636718750023,43.59306640625002],[3.910839843750011,43.56308593750003],[3.861621093750017,43.51635742187503],[3.784765625,43.461621093749955],[3.258886718750063,43.193212890625006],[3.162890625000045,43.08076171875001],[3.051757812500057,42.915136718750006],[3.043066406250063,42.837890625],[3.090917968750034,42.59086914062501],[3.197851562500063,42.461181640625],[3.21142578125,42.43115234374999],[3.152148437500074,42.43100585937506],[3.052636718750051,42.44721679687498],[2.970019531250017,42.46723632812498],[2.891406250000074,42.4560546875],[2.815625,42.42924804687496],[2.749414062500022,42.41303710937504],[2.701855468750011,42.40849609374999],[2.670019531250006,42.393017578124955],[2.65478515625,42.36210937499996],[2.651660156250074,42.340478515624994],[2.56796875,42.345800781250006],[2.374414062500079,42.39028320312502],[2.200390625000068,42.42094726562496],[2.098339843750068,42.386083984375055],[2.032714843750028,42.353515625],[1.986523437500011,42.358496093750034],[1.951464843750074,42.39277343749998],[1.927929687500068,42.42631835937499],[1.859765625000051,42.457080078125045],[1.7060546875,42.503320312500044],[1.713964843750006,42.52563476562497],[1.740234375000028,42.556738281250006],[1.73945312500004,42.575927734375],[1.709863281250051,42.604443359374955],[1.568164062500045,42.63500976562506],[1.501367187500023,42.64272460937502],[1.45888671875008,42.621679687500006],[1.428320312499977,42.59589843749998],[1.349414062500074,42.69067382812503],[1.293261718750017,42.70996093750006],[1.208300781250017,42.71313476562497],[1.111132812500017,42.742041015625006],[1.010058593750045,42.778955078124966],[0.764453125000017,42.83803710937502],[0.696875,42.845117187500044],[0.669824218749994,42.83574218749999],[0.651757812500051,42.800439453124994],[0.641992187500023,42.70063476562501],[0.631640625000045,42.689599609374994],[0.517675781250006,42.68627929687503],[0.377246093750074,42.70014648437501],[0.312890625000023,42.69326171875002],[0.255468750000063,42.692919921875045],[0.20136718750004,42.719335937500006],[-0.041162109374994,42.689111328124966],[-0.081494140624926,42.70385742187505],[-0.140039062499966,42.74892578124999],[-0.205322265624943,42.78530273437502],[-0.256054687499983,42.80395507812499],[-0.29931640625,42.82534179687502],[-0.338574218750011,42.82880859375001],[-0.398437499999943,42.80810546875006],[-0.481152343750011,42.79931640625003],[-0.549804687499943,42.80200195312506],[-0.586425781249943,42.798974609374966],[-0.740185546874926,42.909521484375034],[-0.762646484374983,42.93979492187506],[-0.839208984374949,42.94819335937498],[-0.933837890624943,42.94951171874999],[-1.175439453124966,43.02114257812502],[-1.285449218749989,43.05961914062496],[-1.301562499999988,43.08247070312498],[-1.300048828124943,43.10097656250002],[-1.318847656249943,43.09697265625002],[-1.352734374999926,43.06425781250002],[-1.370507812499994,43.03759765625],[-1.39404296875,43.032617187499966],[-1.42875976562496,43.03676757812502],[-1.460839843749937,43.05175781250006],[-1.480468750000028,43.071142578125006],[-1.459423828124983,43.10498046875006],[-1.422607421874943,43.149121093749976],[-1.407324218749949,43.197119140625006],[-1.410693359374932,43.240087890625034],[-1.471728515624932,43.26767578124998],[-1.561474609375011,43.27919921875002],[-1.627148437499983,43.28247070312497],[-1.712841796874926,43.30703124999999],[-1.753271484375005,43.32470703125006],[-1.792724609374943,43.37255859375003],[-1.794042968749949,43.407324218750006],[-1.631445312499949,43.43803710937496],[-1.484863281249943,43.56376953124999],[-1.345996093749989,44.02021484374998],[-1.245507812499937,44.55986328124999],[-1.170800781249994,44.661816406249955],[-1.07695312499996,44.68984375],[-1.152880859374989,44.764013671875],[-1.200390624999983,44.726464843749994],[-1.220312499999949,44.686621093750034],[-1.245214843749977,44.66669921874998],[-1.189062499999977,45.16147460937506],[-1.149072265624994,45.342626953125006],[-1.081005859374983,45.532421874999955],[-0.941748046874949,45.45708007812499],[-0.826318359374966,45.380664062500045],[-0.766650390624989,45.31435546875002],[-0.691113281249954,45.09345703124998],[-0.633984374999955,45.04711914062503],[-0.548486328124966,45.00058593750006],[-0.582275390625,45.051367187500006],[-0.64111328125,45.090185546875006],[-0.733105468749983,45.384619140625034],[-0.790771484375028,45.46801757812497],[-0.88066406249996,45.53818359374998],[-1.169970703124989,45.685937499999966],[-1.195996093749983,45.714453125],[-1.209960937499972,45.770898437500044],[-1.114355468749949,45.76850585937501],[-1.03173828125,45.741064453125],[-1.041503906249943,45.772656249999955],[-1.066015624999949,45.80566406250002],[-1.104394531249966,45.92534179687499],[-1.136376953124994,46.204833984375],[-1.132031250000011,46.25268554687497],[-1.14628906249996,46.311376953125034],[-1.238818359374989,46.324511718750045],[-1.31279296874996,46.326904296875],[-1.392480468749937,46.35009765625],[-1.786523437499937,46.51484375],[-1.92143554687496,46.684814453125],[-2.059375,46.81030273437497],[-2.092480468750011,46.86503906250002],[-2.090283203125011,46.92050781250003],[-2.01889648437492,47.03764648437502],[-2.081933593749994,47.11162109374999],[-2.143554687500028,47.12631835937506],[-2.197070312499989,47.16293945312506],[-2.148583984374966,47.22392578125004],[-2.108300781249937,47.262939453125],[-2.027587890625028,47.27358398437502],[-1.921728515624949,47.260644531249966],[-1.8212890625,47.22534179687497],[-1.742529296874949,47.21596679687502],[-1.97539062499996,47.31069335937505],[-2.353027343749972,47.27875976562501],[-2.434423828124949,47.29096679687501],[-2.503125,47.31206054687496],[-2.530029296874972,47.381591796875],[-2.476318359374943,47.412939453125006],[-2.427685546874983,47.470898437499976],[-2.482714843749931,47.511621093750016],[-2.554052734374977,47.52705078124998],[-2.665917968749937,47.52617187499999],[-2.770312499999988,47.513867187499955],[-2.796777343749966,47.53725585937502],[-2.733105468749955,47.60180664062503],[-2.787207031249949,47.62553710937496],[-2.859375,47.614453125],[-2.964062499999926,47.60107421875006],[-3.064208984375,47.621337890625],[-3.158837890624994,47.694677734375034],[-3.221582031249994,47.69414062499999],[-3.264697265624989,47.68510742187502],[-3.328613281249943,47.71333007812501],[-3.395898437499966,47.72041015625001],[-3.443945312500005,47.71103515624998],[-3.507812499999943,47.753125],[-3.900927734374931,47.837548828124994],[-4.070703124999966,47.847851562499955],[-4.226416015624977,47.80961914062499],[-4.312109374999949,47.82290039062502],[-4.375097656249977,47.87744140625003],[-4.427978515625,47.96894531250004],[-4.678808593749949,48.03950195312501],[-4.629199218749959,48.085791015625034],[-4.512402343749982,48.096728515625045],[-4.377832031249993,48.12880859374999],[-4.32944335937492,48.16997070312504],[-4.434619140624932,48.217968749999955],[-4.512207031249943,48.22973632812506],[-4.544335937499994,48.246972656249994],[-4.577148437499943,48.2900390625],[-4.530664062499966,48.309716796874994],[-4.497900390624949,48.29926757812501],[-4.403320312499972,48.29306640624998],[-4.241406249999926,48.303662109375004],[-4.301757812499972,48.34707031249996],[-4.364404296874937,48.35673828124998],[-4.39316406249992,48.367626953124976],[-4.524804687499937,48.37231445312506],[-4.584716796874972,48.357519531250055],[-4.719384765624966,48.363134765625034],[-4.748535156249943,48.410009765625],[-4.7625,48.45024414062501],[-4.72075195312496,48.539892578125006],[-4.531201171874983,48.619970703125055],[-4.05888671874996,48.70751953125002],[-3.855664062499954,48.69472656250002],[-3.714794921874926,48.71049804687502],[-3.54599609374992,48.76567382812499],[-3.471484374999931,48.81293945312501],[-3.231445312499971,48.84082031250003],[-3.003222656250017,48.79067382812502],[-2.792871093749966,48.60107421875003],[-2.692333984374983,48.53681640624998],[-2.446191406249937,48.64829101562506],[-2.07944335937492,48.64501953125],[-2.00371093749996,48.58208007812499],[-1.973144531249943,48.635107421875034],[-1.905712890624955,48.697119140625055],[-1.851953124999937,48.668847656249966],[-1.824707031249972,48.63051757812499],[-1.437646484374994,48.64140624999998],[-1.376464843749972,48.65258789062503],[-1.480468750000028,48.69760742187498],[-1.565478515624932,48.80551757812503],[-1.583105468749977,49.20239257812505],[-1.690332031249966,49.31318359374998],[-1.813427734374983,49.490136718749966],[-1.870068359374983,49.59511718750002],[-1.87539062499999,49.63139648437496],[-1.856445312499971,49.68378906249998],[-1.70512695312496,49.68095703125001],[-1.588232421874949,49.66767578124998],[-1.36572265625,49.70727539062497],[-1.258642578124949,49.68017578125006],[-1.264941406249989,49.59824218750006],[-1.232275390625006,49.49487304687503],[-1.194970703124937,49.44482421874997],[-1.138525390624977,49.38789062500001],[-0.959130859374937,49.393164062500006],[-0.765527343749937,49.35971679687503],[-0.520898437499937,49.35454101562496],[-0.163476562499937,49.29677734374999],[-0.011181640625011,49.33022460937499],[0.13613281250008,49.40151367187502],[0.41689453125008,49.448388671874994],[0.439257812500017,49.47319335937499],[0.277636718750045,49.46328125],[0.129394531250028,49.508447265624966],[0.109375,49.55751953125002],[0.1265625,49.60156250000003],[0.186718749999983,49.70302734374999],[0.6162109375,49.862939453124966],[0.924121093750017,49.91020507812502],[1.245507812500051,49.99824218750001],[1.407226562500028,50.08852539062502],[1.514062500000051,50.20507812500006],[1.548437500000034,50.23071289062503],[1.5927734375,50.25219726562506],[1.551562500000045,50.29394531250003],[1.579492187500051,50.73925781249997],[1.60957031250004,50.819482421874994],[1.672265625000023,50.885009765625],[1.767675781250034,50.935693359375016],[1.9125,50.990625],[2.445703125000051,51.066503906250034],[2.52490234375,51.097119140624955],[2.536035156250051,51.04951171875004],[2.574804687500063,50.98857421874996],[2.60146484375008,50.95527343750001],[2.579296874999983,50.91176757812505],[2.596777343750006,50.87592773437501],[2.669140625000011,50.81142578125002],[2.759375,50.750634765624994]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Croatia","sov_a3":"HRV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Croatia","adm0_a3":"HRV","geou_dif":0,"geounit":"Croatia","gu_a3":"HRV","su_dif":0,"subunit":"Croatia","su_a3":"HRV","brk_diff":0,"name":"Croatia","name_long":"Croatia","brk_a3":"HRV","brk_name":"Croatia","brk_group":null,"abbrev":"Cro.","postal":"HR","formal_en":"Republic of Croatia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Croatia","name_alt":null,"mapcolor7":5,"mapcolor8":4,"mapcolor9":5,"mapcolor13":1,"pop_est":4489409,"gdp_md_est":82390,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"HR","iso_a3":"HRV","iso_n3":"191","un_a3":"191","wb_a2":"HR","wb_a3":"HRV","woe_id":-99,"adm0_a3_is":"HRV","adm0_a3_us":"HRV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"HRV.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[17.60781250000005,42.76904296874999],[17.744238281250063,42.70034179687505],[17.34414062500008,42.790380859375006],[17.389550781249994,42.79863281249999],[17.431933593750017,42.800390625],[17.60781250000005,42.76904296874999]]],[[[16.650683593750017,42.99658203125],[16.835546875000034,42.968652343749994],[16.97109375000002,42.98149414062502],[17.093652343750023,42.96435546875],[17.16982421874999,42.93261718750003],[17.188281250000045,42.917041015625045],[17.089355468750057,42.91489257812506],[16.9775390625,42.92778320312502],[16.850683593750006,42.8955078125],[16.738867187500063,42.912744140624966],[16.696386718750006,42.93369140625006],[16.666308593750017,42.959912109374976],[16.650683593750017,42.99658203125]]],[[[17.219824218750063,43.02587890624999],[17.72363281250003,42.850683593750034],[17.667578125000063,42.897119140624994],[17.74023437500003,42.91547851562498],[17.80195312500001,42.90224609375005],[17.84130859375003,42.845068359375034],[17.918847656250023,42.80742187500002],[18.044531250000034,42.74125976562502],[18.123925781250048,42.690576171874994],[18.304003906250045,42.59941406249999],[18.346582031250023,42.58666992187497],[18.436328125000017,42.55971679687499],[18.438085937500006,42.52294921875006],[18.476660156250063,42.48110351562505],[18.517480468750023,42.43291015624999],[18.3330078125,42.52788085937499],[18.160644531249968,42.63403320312503],[17.823828125,42.79741210937502],[17.58496093750003,42.83715820312503],[17.25820312500008,42.96845703125004],[17.045410156250057,43.014892578125],[17.126464843750057,43.025585937499955],[17.219824218750063,43.02587890624999]]],[[[17.194042968750065,43.12578125000002],[17.124121093750034,43.115429687499955],[16.679199218750053,43.123144531250034],[16.5498046875,43.14389648437498],[16.405859375000063,43.19736328125003],[16.37646484375003,43.21376953125002],[16.52138671875005,43.22924804687506],[16.65595703125004,43.21376953125002],[16.697265625,43.174951171874994],[17.061132812500063,43.14389648437498],[17.194042968750065,43.12578125000002]]],[[[16.785253906250006,43.270654296874966],[16.627441406249996,43.26806640624997],[16.490332031250034,43.28618164062502],[16.423144531250045,43.317236328125034],[16.428125,43.34340820312505],[16.44892578125004,43.387060546875055],[16.601562500000057,43.38188476562499],[16.834375,43.35083007812506],[16.89130859375001,43.314648437499955],[16.873632812500063,43.29794921875],[16.785253906250006,43.270654296874966]]],[[[15.371386718750074,43.973828124999955],[15.437207031250068,43.899511718750006],[15.374218750000038,43.914794921875],[15.30859375,43.96079101562506],[15.270019531250028,44.01074218750003],[15.371386718750074,43.973828124999955]]],[[[15.231054687500006,44.062304687500045],[15.246679687499975,44.027050781249955],[15.121875,44.09331054687496],[15.074609375000023,44.137841796874966],[15.065820312500078,44.157666015625004],[15.231054687500006,44.062304687500045]]],[[[15.188769531249987,43.92236328125003],[15.203027343750051,43.90771484375],[15.201660156250059,43.89775390624999],[15.149804687500051,43.91181640625001],[15.13583984375006,43.90727539062499],[14.891308593750068,44.125537109375045],[14.865039062500045,44.16796874999997],[14.952539062500025,44.11718750000003],[15.188769531249987,43.92236328125003]]],[[[15.188476562500027,44.33574218749996],[15.162597656249998,44.30917968749998],[15.097949218750074,44.358154296875],[15.038574218750055,44.393017578125004],[14.99609375,44.43432617187497],[14.912792968750011,44.48583984375],[14.884667968750051,44.54472656249999],[14.760449218750038,44.66474609375004],[14.741894531250011,44.697363281250006],[14.803808593750004,44.64868164062503],[14.855371093750023,44.61826171875006],[14.898046875,44.61083984374997],[15.006445312500063,44.53422851562499],[15.11298828125001,44.43574218750001],[15.23994140625004,44.35019531249997],[15.213574218749981,44.347558593749966],[15.188476562500027,44.33574218749996]]],[[[14.831445312500023,44.75893554687502],[14.856640625000013,44.71484375000002],[14.7625,44.75463867187506],[14.67822265625,44.769873046875034],[14.660351562499983,44.7998046875],[14.672460937500063,44.82436523437505],[14.690527343750004,44.84814453125],[14.754199218750015,44.844824218750034],[14.763769531250004,44.82138671875006],[14.831445312500023,44.75893554687502]]],[[[14.488085937500074,44.66005859375005],[14.480371093750023,44.621240234375044],[14.41953125000006,44.6703125],[14.388867187500011,44.75830078125],[14.31240234375008,44.90039062499997],[14.302539062500017,44.94042968749997],[14.342187500000023,44.97993164062501],[14.340039062500011,45.01997070312501],[14.285839843749981,45.144628906250006],[14.33125,45.16499023437498],[14.358203125000074,45.16743164062504],[14.369140625,45.080957031249994],[14.39375,45.03125],[14.467382812500034,44.97021484375],[14.452539062500023,44.86918945312502],[14.467578125000074,44.72534179687503],[14.482519531250006,44.693359375],[14.488085937500074,44.66005859375005]]],[[[14.810253906250068,44.97705078124997],[14.68701171875,44.955615234375045],[14.628320312500051,44.99394531250004],[14.612988281250042,45.02543945312496],[14.51171875,45.03540039062506],[14.450390625000038,45.079199218750006],[14.437890625000051,45.09863281250006],[14.524609375000038,45.146826171875006],[14.571093750000019,45.224755859374994],[14.629980468750034,45.17802734374996],[14.701171875000059,45.09003906249998],[14.739160156250051,45.06547851562504],[14.810253906250068,44.97705078124997]]],[[[16.748046875000057,46.41640625000002],[16.87148437500008,46.33930664062504],[16.93994140624997,46.25366210937499],[17.032714843750057,46.18730468749996],[17.149609375000068,46.14033203124998],[17.2421875,46.07661132812498],[17.310644531250002,45.99614257812502],[17.406347656250063,45.951074218749994],[17.52919921875002,45.94130859375005],[17.60703125,45.91376953125001],[17.639648437500057,45.86835937500001],[17.70644531250008,45.82724609374998],[17.80712890625,45.79042968750002],[17.96386718750003,45.77026367187499],[18.263964843750074,45.765478515625006],[18.290625,45.76445312499999],[18.358300781250023,45.753027343750055],[18.437304687500042,45.76733398437503],[18.533593750000023,45.79614257812502],[18.564648437500036,45.81328124999999],[18.666015625,45.90747070312497],[18.721777343749974,45.89936523437501],[18.8330078125,45.910839843749955],[18.900292968750023,45.931738281250034],[18.905371093750006,45.931738281250034],[18.90107421875001,45.90761718750002],[18.8935546875,45.86552734374995],[18.839062499999983,45.83574218750002],[18.89453125,45.76708984374997],[18.947265625,45.65581054687496],[18.91787109375005,45.60083007812503],[18.953710937499977,45.55800781250002],[19.055078125000023,45.527246093749966],[19.064257812500045,45.51499023437506],[19.033300781250034,45.50219726562503],[19.007617187500045,45.46582031249997],[19.004687500000074,45.39951171875006],[19.093066406250045,45.33691406249999],[19.27285156250008,45.277978515624994],[19.330273437500068,45.26806640625003],[19.35224609375001,45.24541015625002],[19.38232421875,45.230615234375016],[19.4,45.2125],[19.400976562500063,45.1890625],[19.388085937500023,45.17299804687502],[19.303027343750017,45.16728515624999],[19.205957031250048,45.16777343750002],[19.13691406250001,45.19624023437504],[19.13076171875008,45.17548828124998],[19.129687500000045,45.151708984375034],[19.062890625000023,45.13720703125],[19.1,44.973779296875016],[19.085253906250042,44.92675781250003],[19.060546875,44.910986328125006],[19.037597656250025,44.91752929687502],[19.00957031249999,44.91938476562504],[18.99550781250008,44.90400390625001],[19.007128906250045,44.86918945312502],[18.94130859375005,44.865185546875004],[18.836425781249996,44.883251953124955],[18.788378906250045,44.914892578125006],[18.78017578125008,44.94721679687501],[18.779394531250006,44.97724609375001],[18.746093750000057,45.02651367187502],[18.66259765625,45.07744140624999],[18.48828125000003,45.08583984375002],[18.423925781250063,45.10200195312501],[18.35761718750004,45.12055664062498],[18.284960937500074,45.13427734375003],[18.21796875000001,45.13291015625],[18.137207031249996,45.119384765625],[17.996289062500068,45.14179687499995],[17.94863281250005,45.11186523437499],[17.874414062500023,45.077246093750034],[17.812792968750074,45.078125],[17.690136718750036,45.158398437499955],[17.65351562500004,45.16347656250002],[17.54628906250005,45.12255859375003],[17.50263671875004,45.12036132812502],[17.46914062500005,45.13330078125],[17.324121093750076,45.16396484375002],[17.25869140625008,45.17055664062505],[17.210644531250068,45.15605468750002],[17.125390625000023,45.171777343750016],[16.918652343749983,45.276562499999976],[16.79082031250007,45.196875],[16.53066406250008,45.21669921875002],[16.45351562499999,45.162011718749994],[16.365039062500014,45.058349609375],[16.293359375000048,45.00883789062496],[16.231054687500063,45.02661132812503],[16.157324218750063,45.07221679687498],[16.028320312500057,45.18959960937502],[15.963183593750019,45.21079101562498],[15.888281250000032,45.21572265625002],[15.822851562500034,45.20278320312505],[15.788085937500057,45.17895507812497],[15.761523437500074,45.00751953124995],[15.73798828125007,44.85639648437498],[15.736621093750047,44.765820312500004],[15.880078125000068,44.68193359374999],[16.04902343750001,44.537597656249964],[16.10341796875008,44.52099609375006],[16.13027343750005,44.473730468750006],[16.169824218750023,44.352001953124976],[16.214257812500023,44.21513671874999],[16.300097656250017,44.12451171874999],[16.377539062500063,44.05961914062502],[16.47207031250005,44.00258789062505],[16.59052734375004,43.913183593750034],[16.68769531250001,43.815039062500034],[16.713476562500034,43.77880859375003],[16.90185546875003,43.64902343750003],[17.084570312500034,43.516552734374955],[17.248046875000053,43.47021484375003],[17.27382812500005,43.44575195312501],[17.27529296875008,43.343847656250034],[17.293066406250063,43.30561523437498],[17.402246093750023,43.19892578125001],[17.62480468750007,43.04277343749998],[17.650488281250063,43.006591796875],[17.657812500000034,42.980078125],[17.64345703125005,42.959765625000045],[17.585156250000068,42.93837890625005],[17.53730468750001,42.962255859375006],[17.329882812500017,43.11489257812502],[17.12939453125003,43.21113281250001],[16.903125,43.392431640625006],[16.600292968750068,43.46406250000001],[16.393945312500023,43.54335937500002],[16.26894531250005,43.53125],[16.13105468750004,43.50629882812501],[16.045996093750034,43.50551757812502],[15.985546875000066,43.519775390625],[15.94257812500001,43.56894531249998],[15.949121093749994,43.60698242187501],[15.941503906250063,43.65664062499999],[15.820605468750017,43.73593749999998],[15.655664062500078,43.81127929687497],[15.49941406250005,43.908789062500034],[15.185839843750017,44.17211914062503],[15.122949218749993,44.256787109374955],[15.18466796875006,44.27290039062495],[15.231347656250051,44.27143554687501],[15.284277343750006,44.288818359375],[15.369726562500006,44.28925781250001],[15.470996093750044,44.27197265625003],[15.381347656250057,44.32827148437505],[15.269824218750072,44.38349609375001],[14.981347656250023,44.602929687500044],[14.895214843750066,44.70659179687502],[14.885253906249972,44.81826171875005],[14.906542968750044,44.971386718749976],[14.854589843750034,45.08100585937501],[14.63203125000001,45.22290039062506],[14.550488281249981,45.297705078125006],[14.386132812500081,45.342138671875006],[14.31269531250004,45.33779296875002],[14.268554687500028,45.28251953125002],[14.236328125000027,45.15966796875006],[14.090625,44.99760742187499],[14.041992187500057,44.92719726562504],[13.9658203125,44.83564453125004],[13.89980468750005,44.829345703125],[13.86074218750008,44.83740234375003],[13.742480468750045,44.99150390624998],[13.62929687500008,45.108203125000045],[13.613476562500068,45.163427734375006],[13.603320312500045,45.23139648437501],[13.517187500000063,45.481787109375034],[13.577929687500017,45.51689453124999],[13.615234375000055,45.47675781249998],[13.878710937500017,45.428369140624994],[13.935644531250063,45.449804687500006],[13.970117187500051,45.48261718750003],[13.9703125,45.50336914062498],[13.992773437500063,45.509423828124994],[14.085546875000034,45.47783203125002],[14.161230468750004,45.48515625000002],[14.283007812500045,45.486621093750045],[14.369921875000072,45.48144531250006],[14.427343750000034,45.505761718750016],[14.505175781249989,45.59521484375006],[14.533984375000015,45.64526367187503],[14.56884765625,45.65722656249997],[14.591796875000055,45.65126953125002],[14.608593750000013,45.610107421874964],[14.649511718750006,45.57148437500001],[14.733593749999983,45.50849609374998],[14.793066406250034,45.478222656250004],[14.847070312500021,45.46733398437501],[14.9,45.49267578125003],[14.954589843749998,45.499902343749994],[15.110449218750036,45.450781250000034],[15.242089843750023,45.44140624999997],[15.339453125000063,45.46704101562506],[15.326660156250028,45.502294921875034],[15.291210937500011,45.541552734375045],[15.28359375000005,45.5796875],[15.290136718750034,45.61264648437506],[15.356933593750055,45.64550781249999],[15.35371093750004,45.659912109375],[15.27294921875,45.717724609374955],[15.27705078125004,45.73261718749998],[15.454101562500057,45.797607421874964],[15.624804687500015,45.834033203125045],[15.652148437500074,45.86215820312498],[15.668066406250032,45.90444335937499],[15.675585937500045,45.98369140624996],[15.666210937500011,46.04848632812502],[15.596875,46.109228515625055],[15.592578125000015,46.139990234375006],[15.608984374999977,46.171923828125045],[15.635937500000068,46.20073242187504],[15.704199218750032,46.213232421875006],[15.784277343750006,46.23398437499998],[15.847558593750023,46.25786132812496],[15.933300781250068,46.27763671874999],[16.000683593750036,46.305371093749955],[16.066503906250034,46.37133789062497],[16.1064453125,46.38222656249999],[16.22744140625005,46.37285156250001],[16.25332031250008,46.389111328124955],[16.23671875000008,46.48383789062498],[16.258398437500034,46.507910156250006],[16.30117187500005,46.52138671874999],[16.321191406250048,46.53461914062504],[16.42763671875005,46.5244140625],[16.516210937499977,46.499902343749966],[16.569921875,46.48500976562505],[16.748046875000057,46.41640625000002]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"United Kingdom","adm0_a3":"GBR","geou_dif":0,"geounit":"United Kingdom","gu_a3":"GBR","su_dif":0,"subunit":"United Kingdom","su_a3":"GBR","brk_diff":0,"name":"United Kingdom","name_long":"United Kingdom","brk_a3":"GBR","brk_name":"United Kingdom","brk_group":null,"abbrev":"U.K.","postal":"GB","formal_en":"United Kingdom of Great Britain and Northern Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United Kingdom","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":62262000,"gdp_md_est":1977704,"pop_year":0,"lastcensus":2011,"gdp_year":2009,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"GB","iso_a3":"GBR","iso_n3":"826","un_a3":"826","wb_a2":"GB","wb_a3":"GBR","woe_id":-99,"adm0_a3_is":"GBR","adm0_a3_us":"GBR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":14,"long_len":14,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GBR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-1.065576171874966,50.69023437500002],[-1.149365234374983,50.65571289062501],[-1.17583007812496,50.61523437500003],[-1.196093749999988,50.59921875000006],[-1.25146484375,50.58881835937498],[-1.306298828124966,50.588525390624994],[-1.515332031249926,50.669775390625034],[-1.563427734374954,50.666113281250006],[-1.515673828124988,50.70332031250004],[-1.38583984374992,50.733544921874966],[-1.31279296874996,50.77348632812502],[-1.144238281250011,50.734716796875034],[-1.065576171874966,50.69023437500002]]],[[[-4.196777343749972,53.321435546874966],[-4.154882812499977,53.302832031250006],[-4.04936523437496,53.30576171874998],[-4.084277343749989,53.26430664062496],[-4.200390624999926,53.21806640624995],[-4.27861328124996,53.17241210937499],[-4.373046875,53.13417968750002],[-4.418847656250023,53.17802734374999],[-4.471972656249989,53.176367187500006],[-4.553222656249943,53.26044921874998],[-4.56787109375,53.386474609375],[-4.46171875,53.419287109375006],[-4.315087890625023,53.41723632812502],[-4.196777343749972,53.321435546874966]]],[[[-6.375292968749989,55.241796875000034],[-6.23422851562492,55.21684570312502],[-6.129150390625028,55.217382812500034],[-6.035791015624994,55.14453125000003],[-5.985742187499937,55.02968749999999],[-5.869189453124989,54.91621093749998],[-5.71684570312496,54.817480468750034],[-5.71074218749996,54.75708007812497],[-5.765185546874932,54.72465820312501],[-5.879101562499955,54.684375],[-5.878613281249955,54.64130859375001],[-5.803466796874999,54.66303710937501],[-5.738623046874949,54.673046874999976],[-5.582519531249943,54.66342773437498],[-5.52792968749992,54.61962890625003],[-5.490185546874955,54.554052734375],[-5.470410156249926,54.50019531249995],[-5.48388671875,54.44165039062503],[-5.525878906249943,54.46020507812497],[-5.568554687499925,54.512597656249994],[-5.615966796875,54.536718750000034],[-5.671093749999955,54.54975585937501],[-5.6460937499999,54.477880859375034],[-5.655957031249982,54.381738281249966],[-5.63188476562496,54.37265625],[-5.557812499999983,54.370996093750016],[-5.60678710937492,54.272558593750034],[-5.708056640624932,54.245849609375],[-5.826171875000028,54.23583984375],[-5.854638671874966,54.20097656250002],[-5.876074218749977,54.15605468750002],[-5.937744140625,54.08906250000004],[-6.019042968749972,54.05126953124997],[-6.119531250000023,54.05888671875002],[-6.218017578125,54.08872070312506],[-6.303662109374955,54.094873046874966],[-6.363671875000023,54.07709960937501],[-6.402587890624943,54.06064453125003],[-6.440283203124977,54.063623046874994],[-6.548144531249932,54.05727539062505],[-6.649804687499937,54.05864257812496],[-6.664208984374965,54.08476562499996],[-6.646875,54.163427734375006],[-6.669531249999977,54.184716796874994],[-6.766601562499942,54.19560546874999],[-6.802587890624977,54.21435546874997],[-6.858349609374982,54.268652343750034],[-6.869238281249977,54.294042968750055],[-6.877246093749932,54.3291015625],[-6.93613281249992,54.37431640624998],[-7.007714843749937,54.40668945312501],[-7.049707031249965,54.40825195312496],[-7.133496093749983,54.35537109375002],[-7.202587890624955,54.301806640625045],[-7.17807617187492,54.27490234374997],[-7.155468749999926,54.23950195312506],[-7.193066406249955,54.21411132812503],[-7.306738281249949,54.156005859375],[-7.324511718750017,54.13344726562502],[-7.355175781249955,54.12124023437502],[-7.409423828124972,54.137304687500006],[-7.544433593749942,54.13359375],[-7.606542968750005,54.14384765625002],[-7.678759765624959,54.186669921875016],[-7.854931640624983,54.21528320312498],[-7.884472656249955,54.283789062500006],[-7.918457031249943,54.29658203125004],[-8.118261718749977,54.41425781250004],[-8.14482421874996,54.45351562500002],[-8.118945312499932,54.47695312500002],[-8.044335937500023,54.51245117187505],[-7.793798828124949,54.57124023437504],[-7.754394531249999,54.59492187499998],[-7.746289062499954,54.61582031250006],[-7.819824218750028,54.639697265625045],[-7.886132812499937,54.66606445312499],[-7.908740234374933,54.68334960937505],[-7.910595703124955,54.698339843750006],[-7.872949218749994,54.71787109374998],[-7.797265624999937,54.71928710937499],[-7.7375,54.71044921874997],[-7.689990234374932,54.72802734375],[-7.606445312499972,54.745703125000055],[-7.55039062499992,54.767968749999966],[-7.502197265624972,54.82543945312506],[-7.451269531249977,54.87709960937499],[-7.445996093749982,54.905126953125034],[-7.40141601562496,55.00332031250005],[-7.376904296874926,55.027685546875034],[-7.218652343749937,55.091992187499976],[-7.178613281249937,55.05688476562503],[-7.100634765624959,55.048291015624976],[-7.030761718749943,55.08061523437499],[-6.947167968749966,55.18251953125005],[-6.888964843749989,55.18891601562501],[-6.824853515624994,55.18066406250002],[-6.698828124999977,55.19345703125006],[-6.475048828124955,55.24101562499998],[-6.375292968749989,55.241796875000034]]],[[[-5.10541992187501,55.44882812500003],[-5.231494140624932,55.44809570312498],[-5.277050781249983,55.456738281249955],[-5.331494140624955,55.481054687500034],[-5.392675781249977,55.61835937500001],[-5.370800781249983,55.666943359374976],[-5.345703125,55.69072265625002],[-5.318115234375,55.709179687499955],[-5.251611328124937,55.71694335937502],[-5.185449218749966,55.69096679687498],[-5.160400390625,55.666796875000045],[-5.10498046875,55.57397460937503],[-5.094726562499943,55.494335937499976],[-5.10541992187501,55.44882812500003]]],[[[-6.128906249999971,55.93056640625002],[-6.092822265624989,55.802148437499994],[-6.0576171875,55.722509765625006],[-6.055322265624994,55.69531249999997],[-6.088378906249972,55.65751953125002],[-6.253173828124972,55.60722656249999],[-6.305078124999966,55.60693359375],[-6.307226562499977,55.61914062499999],[-6.270019531249943,55.67031250000005],[-6.302050781249989,55.728369140625055],[-6.286425781249989,55.77250976562499],[-6.301757812499999,55.780615234375034],[-6.333886718749994,55.77436523437501],[-6.45195312499996,55.70424804687502],[-6.491357421874994,55.69731445312504],[-6.495654296874988,55.711572265624994],[-6.466455078124994,55.76899414062498],[-6.462841796874955,55.808251953124994],[-6.445263671874925,55.832373046875],[-6.413183593749976,55.854638671875016],[-6.374951171875011,55.87133789062506],[-6.344140624999937,55.87373046875001],[-6.311279296875,55.856494140625045],[-6.215673828124977,55.90458984374999],[-6.128906249999971,55.93056640625002]]],[[[-5.970068359374949,55.81455078125003],[-5.990917968749925,55.803808593750055],[-6.041552734374932,55.80678710937505],[-6.060351562499932,55.82290039062505],[-6.070703125000023,55.84765625000002],[-6.07197265625001,55.893115234375045],[-6.04130859374996,55.925634765625006],[-5.911767578124966,55.974755859374966],[-5.970312499999977,55.99218749999997],[-5.972656250000028,56.00444335937499],[-5.9390625,56.045263671875034],[-5.799609374999932,56.10878906250002],[-5.76225585937496,56.12031249999995],[-5.725146484374959,56.11855468749996],[-5.797216796874977,56.00561523437505],[-5.970068359374949,55.81455078125003]]],[[[-5.77788085937496,56.344335937500034],[-6.17617187499999,56.288720703124994],[-6.313427734374983,56.29365234375001],[-6.325830078124937,56.32094726562499],[-6.298486328124966,56.33916015624996],[-6.184863281249989,56.35688476562501],[-6.138867187499955,56.490625],[-6.310644531249949,56.55214843750002],[-6.31967773437492,56.56943359374998],[-6.30625,56.598779296875016],[-6.286328124999983,56.61186523437502],[-6.182080078124955,56.642968750000044],[-6.1382812499999,56.649853515625004],[-6.102734374999954,56.64565429687496],[-6.029589843749989,56.60981445312503],[-5.946679687499966,56.53452148437498],[-5.836035156249977,56.522558593750034],[-5.760839843749949,56.49067382812501],[-5.77788085937496,56.344335937500034]]],[[[-6.607617187499983,56.58500976562495],[-6.66445312499999,56.57944335937498],[-6.668554687499948,56.59360351562503],[-6.56992187499992,56.66123046875003],[-6.506054687499983,56.67236328125],[-6.483691406249959,56.665771484374964],[-6.530078124999989,56.626611328124994],[-6.607617187499983,56.58500976562495]]],[[[-7.416894531249993,56.965429687500006],[-7.504785156249966,56.95166015625005],[-7.537402343749931,56.959716796875],[-7.54296875,56.97236328125001],[-7.522949218750028,57.00678710937501],[-7.455468749999937,57.01894531249999],[-7.406689453124955,57.00029296875002],[-7.398925781249972,56.98334960937501],[-7.416894531249993,56.965429687500006]]],[[[-6.279052734375,56.964697265625034],[-6.308740234375023,56.951806640624994],[-6.346240234374931,56.95429687499995],[-6.383398437499949,56.97089843749998],[-6.432617187499943,57.017919921875034],[-6.322363281249949,57.05053710937502],[-6.278222656250023,57.03139648437505],[-6.261279296874932,57.00952148437503],[-6.26054687499996,56.985253906249966],[-6.279052734375,56.964697265625034]]],[[[-7.249853515624977,57.115332031250006],[-7.29204101562496,57.10976562500002],[-7.347412109374972,57.115136718750044],[-7.381494140624965,57.13066406250002],[-7.415917968749966,57.192138671875],[-7.422363281249943,57.229345703125034],[-7.407031249999931,57.298486328124994],[-7.410546874999937,57.38110351562505],[-7.296386718749972,57.38369140625005],[-7.267138671874959,57.371777343750004],[-7.247558593749971,57.12636718750002],[-7.249853515624977,57.115332031250006]]],[[[-6.144726562499983,57.50498046874998],[-6.146142578125023,57.460791015625034],[-6.163769531249955,57.40883789062502],[-6.140820312499982,57.35366210937496],[-6.135546874999989,57.31425781250002],[-6.093408203124937,57.301708984374955],[-6.067626953124999,57.28354492187498],[-5.880273437499937,57.26323242187501],[-5.706005859374955,57.268945312500016],[-5.672460937499977,57.252685546875],[-5.668652343749983,57.22690429687498],[-5.696191406249993,57.19843749999995],[-5.795410156249972,57.14653320312496],[-5.913769531249926,57.06264648437502],[-5.94907226562492,57.045166015625],[-5.987304687499972,57.04443359375003],[-6.014746093749977,57.051953124999955],[-6.034375,57.20122070312499],[-6.162744140624937,57.18212890625003],[-6.266113281249943,57.18432617187503],[-6.322705078124926,57.20249023437498],[-6.36240234374992,57.2375],[-6.442431640624989,57.327490234375055],[-6.675439453124937,57.36289062499997],[-6.741308593749948,57.412451171875034],[-6.761132812499993,57.4423828125],[-6.75273437499996,57.458935546875004],[-6.70419921874992,57.49575195312506],[-6.643457031249994,57.48261718750004],[-6.605859374999966,57.490673828124976],[-6.583007812500028,57.50712890624996],[-6.583496093749943,57.52065429687497],[-6.615283203124932,57.552734375000036],[-6.616796874999976,57.562695312500004],[-6.37851562499992,57.60332031250002],[-6.357666015624943,57.66679687499998],[-6.305957031249989,57.67197265624998],[-6.246923828124949,57.65122070312501],[-6.166064453124989,57.585302734375006],[-6.144726562499983,57.50498046874998]]],[[[-7.205566406250028,57.68295898437501],[-7.092773437499943,57.626660156249976],[-7.182617187499972,57.533300781250055],[-7.320556640625001,57.53374023437496],[-7.514746093749949,57.60195312500002],[-7.515625,57.615869140624994],[-7.499414062499937,57.636328125],[-7.470312499999949,57.65253906250001],[-7.44003906249992,57.656396484374994],[-7.39189453124996,57.64521484375003],[-7.324853515624993,57.663134765625045],[-7.271191406249983,57.65747070312506],[-7.205566406250028,57.68295898437501]]],[[[-6.198681640624983,58.36328125000002],[-6.325830078124937,58.18886718750002],[-6.375585937499948,58.18457031250006],[-6.419287109374977,58.140966796875034],[-6.554589843749994,58.092871093750006],[-6.436523437500028,58.09189453125],[-6.403369140624931,58.07587890625001],[-6.40244140624992,58.041357421875006],[-6.425195312499937,58.02128906249998],[-6.578125,57.94135742187498],[-6.683300781249926,57.91103515625002],[-6.796582031249925,57.827539062499966],[-6.853759765624942,57.826513671875034],[-6.910351562499926,57.77338867187503],[-6.956933593749994,57.75004882812498],[-6.983105468749983,57.75],[-7.01318359375,57.761767578124996],[-7.083447265624926,57.81376953124999],[-6.955957031249966,57.864892578125016],[-6.94414062499996,57.893652343750034],[-6.856835937499937,57.92353515624998],[-6.864160156250023,57.93286132812503],[-7.002539062499949,57.97490234374996],[-7.057080078124954,58.00317382812502],[-7.051904296874965,58.017968750000016],[-6.985302734375011,58.05048828125001],[-7.01689453124996,58.05478515624998],[-7.038232421874937,58.07231445312502],[-7.076904296874999,58.07900390625002],[-7.088476562499977,58.09536132812499],[-7.095605468749994,58.138281250000034],[-7.085253906249932,58.18217773437499],[-7.044921874999972,58.20156250000005],[-7.028417968749977,58.222314453124994],[-7.012060546874949,58.22871093749998],[-6.94956054687492,58.21767578125005],[-6.886230468749972,58.182568359374976],[-6.812304687499932,58.19609374999998],[-6.726464843749937,58.18940429687495],[-6.72470703124992,58.19755859375001],[-6.787744140624994,58.28388671875004],[-6.776464843750006,58.301513671874964],[-6.742285156249948,58.32163085937498],[-6.544189453125028,58.383154296875006],[-6.297167968749959,58.48662109375001],[-6.237451171874966,58.502832031250044],[-6.219433593749926,58.48872070312501],[-6.194238281249966,58.43510742187501],[-6.198681640624983,58.36328125000002]]],[[[-3.109667968749932,58.51547851562503],[-3.10112304687496,58.43369140625],[-3.112890624999977,58.408886718750004],[-3.136767578124932,58.378320312499994],[-3.212353515624983,58.32124023437501],[-3.410986328124949,58.23964843749999],[-3.775,58.052099609375055],[-3.99003906249996,57.95903320312502],[-4.019628906249949,57.914257812499955],[-4.035595703124926,57.852001953124976],[-3.906835937499977,57.83964843750004],[-3.857128906249983,57.818554687500004],[-3.887939453124943,57.78691406250004],[-4.078417968749931,57.67705078125004],[-4.134521484375,57.577734375000055],[-3.988476562500011,57.58125],[-3.8681640625,57.60034179687503],[-3.62822265624996,57.662255859375044],[-3.402783203124955,57.708251953125],[-3.2945312499999,57.71015625000003],[-3.083935546874926,57.67348632812502],[-3.036035156249937,57.67231445312495],[-2.946679687499937,57.689257812500045],[-2.85629882812492,57.692285156250016],[-2.244140625,57.68085937500002],[-2.074072265624977,57.70239257812505],[-1.961523437499977,57.67666015625005],[-1.867382812499983,57.612353515624996],[-1.777929687499949,57.49375],[-1.780664062499994,57.474023437499966],[-1.834716796874971,57.41997070312499],[-1.934472656249966,57.35219726562502],[-2.0203125,57.258886718750034],[-2.045507812499949,57.20854492187499],[-2.062353515625006,57.15346679687505],[-2.089550781249926,57.10253906250006],[-2.26025390625,56.86333007812499],[-2.426660156249966,56.73071289062497],[-2.5009765625,56.63657226562497],[-2.592675781249937,56.56157226562498],[-2.680957031249989,56.51440429687505],[-2.775195312499989,56.482958984375045],[-3.04741210937496,56.449365234375016],[-3.123583984374932,56.42529296875003],[-3.214453124999949,56.38393554687502],[-3.309960937499965,56.36347656250004],[-3.197998046874972,56.366064453125034],[-3.08701171874992,56.3890625],[-2.885156249999937,56.397509765625045],[-2.652734375000023,56.318261718749966],[-2.674267578124955,56.25341796875],[-2.767578124999972,56.20214843750003],[-2.979785156249932,56.194091796875],[-3.178222656249943,56.080126953125045],[-3.267773437499983,56.04506835937499],[-3.362255859374955,56.02763671875001],[-3.480419921874955,56.0328125],[-3.695117187500017,56.063330078125006],[-3.789062499999972,56.09521484375],[-3.704150390624989,56.04316406249998],[-3.6078125,56.016015625000016],[-3.048730468749937,55.951953125000045],[-3.015087890624926,55.95859375000006],[-2.836865234374955,56.026269531249994],[-2.599316406249954,56.02729492187501],[-2.14707031249992,55.90297851562502],[-2.016845703124972,55.807958984375006],[-1.830273437499954,55.67172851562506],[-1.728759765624972,55.618554687499966],[-1.655371093749949,55.57036132812502],[-1.61015625,55.498095703125045],[-1.522558593749977,55.25952148437503],[-1.42265625,55.02641601562504],[-1.291748046874943,54.77387695312501],[-1.232421874999943,54.703710937500034],[-1.154394531249949,54.65449218750004],[-0.759326171875017,54.54140625],[-0.671386718749943,54.50390625],[-0.518115234374989,54.395117187500034],[-0.370361328125,54.279199218750044],[-0.232861328124954,54.190136718750004],[-0.084375,54.118066406249994],[-0.156298828124989,54.08061523437501],[-0.20556640625,54.021728515625],[-0.16875,53.94165039062503],[-0.108251953124977,53.86518554687498],[0.010546875000074,53.74282226562502],[0.115332031250006,53.609277343749994],[0.076708984375045,53.62944335937502],[0.03608398437504,53.640527343749966],[-0.019433593749994,53.63720703125],[-0.073730468749943,53.64365234374998],[-0.173828125,53.685449218749966],[-0.270019531249972,53.73676757812504],[-0.461376953124983,53.716162109375006],[-0.56767578124996,53.72539062500002],[-0.659912109375,53.72402343750002],[-0.485058593750011,53.69438476562502],[-0.293701171875,53.69233398437504],[0.12832031250008,53.46826171875003],[0.270996093750028,53.33549804687499],[0.355761718750045,53.15996093750001],[0.298046875000011,53.081103515625045],[0.208203125000011,53.03002929687502],[0.12441406250008,52.97158203125002],[0.0458984375,52.90561523437498],[0.279785156250028,52.80869140625006],[0.330175781250006,52.811621093750034],[0.381933593750063,52.82519531250003],[0.431640625000057,52.858154296875],[0.515527343750023,52.938378906249994],[0.55878906250004,52.96694335937505],[0.704492187500051,52.97724609375001],[0.826757812500006,52.97109375],[0.948535156250017,52.95336914062503],[1.05556640625008,52.95898437500003],[1.271289062500045,52.92456054687503],[1.382128906250074,52.89350585937501],[1.656738281249972,52.753710937500045],[1.716113281249989,52.67724609375],[1.74335937500004,52.578515624999966],[1.74658203125,52.46899414062503],[1.700390624999983,52.36889648437497],[1.647363281250023,52.278515624999955],[1.614648437500023,52.16181640624998],[1.59140625,52.11977539062502],[1.558984375000051,52.086865234374976],[1.41347656250008,51.994775390624966],[1.31679687499999,51.95693359374999],[1.275976562500034,51.973535156249994],[1.232421875000057,51.97124023437496],[1.227832031249989,51.949121093749994],[1.273828125000051,51.902099609375],[1.274414062499972,51.845361328124994],[1.188476562500057,51.803369140624966],[1.101171875000034,51.785449218750045],[0.955078125000028,51.807812499999976],[0.752246093750017,51.729589843750034],[0.898046875000034,51.68940429687501],[0.927441406249983,51.646630859374994],[0.890917968750017,51.571435546874966],[0.79921875000008,51.53789062499996],[0.697558593750045,51.52304687500006],[0.593457031250068,51.51948242187504],[0.507226562499994,51.50107421875],[0.42451171875004,51.465625],[0.528320312500028,51.484472656250006],[0.60029296875004,51.46796875],[0.645507812500028,51.40468750000002],[0.686523437500028,51.38657226562506],[0.88935546875004,51.35952148437505],[1.014941406250045,51.359716796875006],[1.257128906250017,51.37509765625003],[1.37343750000008,51.37470703125004],[1.414941406250023,51.36328125],[1.415625,51.31083984374999],[1.397558593750034,51.18203125000002],[1.365527343750074,51.15546874999995],[1.044433593750028,51.04726562500002],[0.978613281250034,50.9716796875],[0.960156250000011,50.92587890624997],[0.772363281250023,50.93398437500005],[0.684375,50.88554687500002],[0.532324218750062,50.853417968749966],[0.414746093749983,50.819189453125006],[0.299707031249994,50.7759765625],[0.205078125,50.763037109375034],[-0.203906250000017,50.814355468749994],[-0.450781249999949,50.810156250000034],[-0.785253906249949,50.76542968749999],[-0.871386718749932,50.77280273437498],[-1.000585937499949,50.815625],[-1.132861328124989,50.844580078125034],[-1.285058593749994,50.857324218749966],[-1.416455078124955,50.896875],[-1.334472656249943,50.82080078124997],[-1.516748046874937,50.747460937499966],[-1.600830078124943,50.73286132812501],[-1.68789062499999,50.735156250000045],[-1.86601562499996,50.715234374999966],[-2.031054687499932,50.72539062499999],[-2.00625,50.67324218750002],[-1.962060546874994,50.627783203125006],[-1.99790039062492,50.60800781249998],[-2.035839843749926,50.603076171875045],[-2.350146484375017,50.63740234375001],[-2.394677734374937,50.63090820312502],[-2.43344726562492,50.59921875000006],[-2.547753906249937,50.61630859374998],[-2.658837890625023,50.66972656250002],[-2.77695312499992,50.70556640625006],[-2.900878906249943,50.722412109375],[-2.999414062499937,50.71660156249999],[-3.40458984374996,50.63242187499997],[-3.48544921874992,50.547949218750006],[-3.52587890625,50.42817382812501],[-3.584375,50.32182617187502],[-3.679785156250005,50.239941406249955],[-3.793359374999937,50.229248046875],[-3.90019531249996,50.28593749999999],[-4.103417968749966,50.34853515625005],[-4.172558593749926,50.390820312499955],[-4.194580078124972,50.39331054687503],[-4.217285156249972,50.37817382812506],[-4.296972656249977,50.35908203124998],[-4.379492187499976,50.35820312499999],[-4.506689453124977,50.34135742187502],[-4.727978515624926,50.29047851562504],[-4.817382812499942,50.255957031250006],[-5.009521484375,50.16074218749998],[-5.048632812499989,50.134375],[-5.11850585937492,50.038330078125],[-5.225244140624993,50.02138671875002],[-5.322851562499977,50.08295898437504],[-5.433984374999966,50.10444335937498],[-5.551220703124955,50.08339843750002],[-5.622119140624932,50.05068359375002],[-5.655175781249994,50.077246093750034],[-5.65625,50.13188476562496],[-5.57065429687492,50.19697265624998],[-5.342285156249943,50.24614257812495],[-5.141796874999955,50.37373046875004],[-5.04345703125,50.45151367187498],[-5.004443359374932,50.495263671875016],[-4.95639648437492,50.52314453125001],[-4.893554687499999,50.53369140625002],[-4.861279296875011,50.58203125],[-4.582910156249966,50.7763671875],[-4.559960937499994,50.82094726562502],[-4.546093750000011,50.90068359375002],[-4.523095703124937,50.97744140625002],[-4.296484374999948,51.02714843750002],[-4.188183593749925,51.18852539062502],[-4.158398437499983,51.20131835937496],[-3.842333984374988,51.23090820312495],[-3.60791015625,51.22856445312502],[-3.37509765624992,51.19697265624998],[-3.255761718749937,51.19414062500002],[-3.135986328124972,51.20502929687501],[-3.042041015625017,51.24858398437502],[-2.88125,51.405664062500016],[-2.790820312499989,51.47480468749998],[-2.687207031249926,51.53725585937502],[-2.590283203124983,51.60859374999998],[-2.433056640624926,51.74072265625],[-2.539355468750017,51.69521484375005],[-2.667675781249955,51.62299804687498],[-2.742138671874926,51.58110351562499],[-2.978515624999943,51.53886718749999],[-3.080371093749989,51.495800781250004],[-3.258789062499943,51.39848632812499],[-3.293115234374994,51.390429687500045],[-3.562353515624948,51.413818359375],[-3.7626953125,51.539941406250016],[-3.890771484374994,51.591650390625],[-3.943652343749931,51.597509765625034],[-3.99833984374996,51.58212890625],[-4.115283203124989,51.56640625],[-4.234570312499955,51.56909179687503],[-4.173681640624976,51.62734375],[-4.091015624999926,51.65991210937505],[-4.276171874999989,51.68251953125002],[-4.32763671875,51.70024414062502],[-4.38627929687496,51.74106445312506],[-4.531494140624971,51.74804687499997],[-4.600781249999955,51.73764648437497],[-4.717626953124949,51.683691406250006],[-4.902294921874926,51.626269531250045],[-5.124755859374942,51.70585937499999],[-5.168359374999937,51.74072265625],[-5.167236328124972,51.80805664062504],[-5.200585937499937,51.86137695312496],[-5.262304687499977,51.88017578124999],[-5.183349609374972,51.949658203125004],[-5.088085937499926,51.99589843750002],[-4.878515624999949,52.04184570312506],[-4.561132812499948,52.15087890624997],[-4.383154296874949,52.19731445312502],[-4.217724609374983,52.277441406250006],[-4.149365234375011,52.32626953125],[-4.099755859374937,52.39311523437502],[-4.050537109374943,52.47514648437504],[-3.980322265624949,52.54174804687503],[-4.048437499999948,52.55761718749997],[-4.07890625,52.60786132812498],[-4.070703124999966,52.658837890624994],[-4.039257812499955,52.704052734374955],[-4.067431640625017,52.76074218750006],[-4.11752929687492,52.820019531249955],[-4.114746093749972,52.86616210937504],[-4.101464843750023,52.915478515624955],[-4.229150390624994,52.91284179687503],[-4.3564453125,52.897412109375004],[-4.471826171874965,52.86245117187499],[-4.583691406249926,52.81494140625],[-4.683056640624926,52.80615234374997],[-4.68144531249996,52.84414062499999],[-4.638330078124966,52.89111328125006],[-4.525683593749932,52.958203124999955],[-4.40507812499996,53.013818359374994],[-4.362207031249937,53.056054687499994],[-4.328417968749989,53.10512695312505],[-4.268554687499943,53.14453125],[-4.111035156249926,53.218945312499955],[-3.809277343749983,53.30268554687498],[-3.764208984374961,53.3076171875],[-3.645898437499937,53.29790039062496],[-3.52958984374996,53.31054687499997],[-3.427734374999972,53.34067382812498],[-3.326171874999972,53.34716796874997],[-3.097558593749937,53.260302734375045],[-3.16557617187496,53.39467773437496],[-3.064746093749932,53.426855468750034],[-2.918554687499977,53.30537109374998],[-2.864160156249994,53.292578125000034],[-2.74951171875,53.310205078124994],[-2.79375,53.33071289062499],[-2.845410156249926,53.33193359374996],[-2.913085937499943,53.35024414062496],[-2.969970703124972,53.38920898437502],[-3.064599609374994,53.512841796874966],[-3.059472656249994,53.58623046875002],[-2.995703124999977,53.66254882812501],[-2.925097656249988,53.732763671875],[-2.984326171874983,53.74672851562502],[-3.03178710937496,53.77358398437499],[-3.045361328124983,53.843847656250006],[-3.026757812499994,53.905908203125016],[-2.899853515624983,53.96069335937499],[-2.86240234374992,54.043847656249966],[-2.84648437499996,54.135302734375045],[-2.86757812499999,54.177246093749964],[-2.993505859374977,54.170507812500034],[-3.054736328124931,54.153417968750006],[-3.109667968749932,54.12631835937498],[-3.165966796874955,54.12792968750006],[-3.321533203125028,54.22910156250006],[-3.410253906249977,54.30561523437501],[-3.56938476562496,54.46757812499996],[-3.592041015624971,54.564355468749966],[-3.464599609374943,54.77309570312505],[-3.26791992187492,54.90659179687506],[-3.036230468749977,54.95307617187501],[-3.081054687499972,54.96196289062496],[-3.434082031249943,54.96376953124999],[-3.550439453124937,54.947412109375016],[-3.658300781249977,54.89287109375002],[-3.719238281249943,54.876123046874966],[-3.783251953124931,54.86992187499996],[-3.841601562500017,54.84277343750002],[-3.898583984374994,54.80507812499999],[-3.957910156249994,54.780957031249955],[-4.0757812499999,54.78720703124998],[-4.132958984374937,54.77924804687495],[-4.174023437499955,54.80107421874996],[-4.208398437499937,54.83715820312502],[-4.253417968749972,54.846777343750034],[-4.303662109374983,54.835693359375],[-4.409912109374972,54.78706054687495],[-4.517480468749937,54.75834960937496],[-4.647558593749977,54.78901367187498],[-4.818066406249983,54.84614257812501],[-4.851708984374994,54.825292968750006],[-4.889501953124976,54.77226562499995],[-4.911230468749949,54.68945312500006],[-5.032324218749949,54.76137695312505],[-5.135498046875,54.857519531250006],[-5.170117187499955,54.917919921874955],[-5.172705078124948,54.98588867187496],[-5.11669921875,55.01225585937499],[-5.055859374999925,54.988134765625055],[-4.965185546874949,55.14946289062498],[-4.784814453124966,55.35942382812502],[-4.721142578124955,55.42099609375006],[-4.676757812499972,55.50131835937497],[-4.684375,55.55390625000004],[-4.72416992187496,55.59829101562502],[-4.891845703125,55.699121093750044],[-4.8896484375,55.78120117187498],[-4.871679687499977,55.87392578125005],[-4.826074218749937,55.929541015625006],[-4.806835937499926,55.94013671875004],[-4.58408203124992,55.93867187500001],[-4.67094726562496,55.96738281249998],[-4.844091796874949,56.05117187499999],[-4.841015624999955,56.08085937500001],[-4.80029296875,56.158349609374994],[-4.819140624999932,56.15048828124998],[-4.85625,56.11469726562498],[-4.927099609375005,56.028076171875],[-4.970361328124937,56.00786132812496],[-5.092822265625017,55.98730468750005],[-5.114990234375,55.94462890624996],[-5.134667968749994,55.93349609375002],[-5.195849609374959,55.92866210937501],[-5.214599609374942,55.88886718749998],[-5.228222656249983,55.886328125],[-5.245605468749972,55.929248046875045],[-5.247314453124943,56.00039062500005],[-5.22294921874996,56.065820312499966],[-5.176416015624994,56.11699218749999],[-4.996972656249937,56.23334960937498],[-5.084326171874977,56.19746093749995],[-5.282324218749977,56.08994140625],[-5.383447265624966,56.01923828124998],[-5.41044921874996,55.995361328125],[-5.418896484375011,55.975244140624994],[-5.418310546874977,55.952050781249966],[-5.372900390624949,55.82768554687504],[-5.38583984374992,55.770117187500034],[-5.55644531249996,55.389599609374955],[-5.588769531249966,55.351416015625],[-5.618457031249989,55.331445312500016],[-5.646533203124932,55.326855468749955],[-5.730664062499926,55.33413085937502],[-5.768212890624937,55.36264648437498],[-5.767871093749959,55.394970703124976],[-5.752099609374937,55.443457031250006],[-5.681347656250011,55.62397460937501],[-5.650634765624972,55.67412109375002],[-5.605029296874989,55.72075195312501],[-5.504492187499949,55.80239257812502],[-5.506933593750006,55.80771484375006],[-5.573876953124966,55.791699218749976],[-5.602392578125006,55.796972656250006],[-5.622851562499989,55.813134765624994],[-5.609570312499955,56.055273437500034],[-5.555273437499977,56.13496093750001],[-5.534960937499932,56.250830078125006],[-5.487890624999949,56.350048828124955],[-5.433398437499932,56.42231445312504],[-5.39194335937492,56.51479492187505],[-5.329443359374977,56.55590820312497],[-5.312695312499955,56.618798828124994],[-5.242578124999966,56.686865234375006],[-5.188378906249937,56.75805664062502],[-5.217578124999932,56.75102539062502],[-5.564208984374942,56.56572265625002],[-5.652441406249976,56.531982421875],[-5.772802734374977,56.54101562500006],[-5.86484375,56.56186523437503],[-5.936767578125,56.60571289062499],[-5.968896484374966,56.68989257812501],[-6.057714843749949,56.69213867187503],[-6.133691406249966,56.706689453124966],[-6.132763671874955,56.71801757812506],[-6.034716796874959,56.76391601562499],[-5.877636718749926,56.779638671875006],[-5.730615234374994,56.853076171875045],[-5.86142578124992,56.902685546875006],[-5.850390624999988,56.91840820312501],[-5.73627929687501,56.96064453125001],[-5.591308593749943,57.10234375000002],[-5.561914062499994,57.23271484375002],[-5.63125,57.29394531249997],[-5.656347656249977,57.33408203124997],[-5.794921874999972,57.378808593750016],[-5.818066406249955,57.43608398437495],[-5.801953124999983,57.46801757812499],[-5.756738281249994,57.499218749999955],[-5.688623046874965,57.523535156250034],[-5.581787109374972,57.54677734374996],[-5.678759765625017,57.571679687499966],[-5.71494140624992,57.60107421875],[-5.742382812500011,57.64365234374998],[-5.744921874999989,57.66831054687504],[-5.694726562499966,57.77822265625005],[-5.665478515624954,57.82353515625004],[-5.608349609374955,57.88134765625],[-5.349023437499966,57.87807617187505],[-5.319189453124948,57.90361328125001],[-5.289794921875,57.90458984375002],[-5.157226562499972,57.88134765625],[-5.176904296874994,57.90639648437505],[-5.39375,58.04360351562502],[-5.413183593750006,58.06972656250002],[-5.351367187499932,58.14370117187496],[-5.346875,58.17666015625002],[-5.355957031249972,58.21191406250003],[-5.338281250000023,58.23872070312498],[-5.269531249999943,58.25141601562498],[-5.059960937499966,58.250146484375],[-5.008300781250028,58.26264648437495],[-5.03183593749992,58.29829101562504],[-5.080615234375017,58.34516601562498],[-5.090136718749988,58.384521484375],[-5.078710937499977,58.41928710937497],[-5.076025390624949,58.48925781250002],[-5.066503906249977,58.52021484375004],[-5.016748046874966,58.56655273437496],[-4.975634765624932,58.58032226562502],[-4.924658203124948,58.588378906249964],[-4.80961914062496,58.57290039062502],[-4.765771484374994,58.55419921875002],[-4.715429687499949,58.510009765625],[-4.67822265625,58.51357421875002],[-4.53496093749996,58.56157226562502],[-4.491894531249983,58.568457031250006],[-4.433251953124937,58.512841796875044],[-4.188623046874993,58.557226562500034],[-3.859521484374937,58.577099609374976],[-3.661816406249983,58.60629882812498],[-3.453564453125011,58.616894531250004],[-3.25913085937492,58.65],[-3.053076171874949,58.63481445312502],[-3.04619140624996,58.61552734374999],[-3.056982421874949,58.588769531249966],[-3.109667968749932,58.51547851562503]]],[[[-2.929394531249983,58.741601562500016],[-2.938964843749972,58.738623046875034],[-2.975390624999932,58.756933593750034],[-3.035449218749989,58.822656250000016],[-2.941210937499989,58.835693359375],[-2.896435546874926,58.827587890624955],[-2.913085937499943,58.79960937500002],[-2.929394531249983,58.741601562500016]]],[[[-3.164941406249994,58.794189453124964],[-3.222119140624926,58.780957031249955],[-3.278808593750028,58.78193359374998],[-3.3671875,58.83974609375002],[-3.400830078124926,58.88178710937498],[-3.394726562499926,58.90961914062495],[-3.357421874999943,58.918994140625024],[-3.271923828124955,58.90527343749997],[-3.227636718749977,58.85717773437502],[-3.222119140624926,58.82587890624995],[-3.211621093749926,58.81357421875003],[-3.158544921874949,58.801220703124976],[-3.164941406249994,58.794189453124964]]],[[[-3.057421874999931,59.02963867187497],[-3.07070312499999,59.004980468750034],[-2.99467773437496,59.005566406249976],[-2.884570312499989,58.98452148437502],[-2.817919921874988,58.98188476562505],[-2.762451171874972,58.95581054687506],[-2.793017578124989,58.90693359374995],[-2.826220703125017,58.89326171875001],[-2.863769531250028,58.890527343749994],[-2.994824218749983,58.93935546874999],[-3.166601562499977,58.919091796875016],[-3.2007812499999,58.92529296875006],[-3.223339843749983,58.938769531250045],[-3.232617187499926,58.955517578124976],[-3.232812499999966,58.989648437500016],[-3.242138671874926,58.99970703125001],[-3.304345703124965,58.96743164062502],[-3.331640624999948,58.97124023437498],[-3.347070312499966,58.98671875000005],[-3.353710937500011,59.01875],[-3.346826171874937,59.06499023437498],[-3.31035156249996,59.13081054687498],[-3.248583984374989,59.14394531249999],[-3.156494140624972,59.13632812500007],[-3.051123046875006,59.099023437499994],[-3.019238281249983,59.076025390625034],[-3.020019531249971,59.05766601562502],[-3.057421874999931,59.02963867187497]]],[[[-2.548876953124989,59.231347656249966],[-2.662060546874955,59.23017578124998],[-2.603613281249949,59.28930664062505],[-2.535644531249972,59.30415039062495],[-2.406982421874943,59.297558593749955],[-2.429833984374994,59.27104492187504],[-2.548876953124989,59.231347656249966]]],[[[-2.729394531249994,59.18676757812503],[-2.815234374999988,59.16191406250002],[-2.851855468749988,59.182470703125034],[-2.861425781249977,59.24682617187499],[-2.963769531249966,59.274365234375004],[-3.01347656249996,59.29145507812495],[-3.052050781250017,59.323876953124994],[-3.042236328124972,59.333837890625055],[-2.975537109374955,59.34711914062501],[-2.861621093749932,59.288330078125036],[-2.815039062499949,59.240820312500034],[-2.730664062499983,59.22675781250001],[-2.719921874999926,59.21948242187502],[-2.729394531249994,59.18676757812503]]],[[[-1.30810546875,60.5375],[-1.287402343749932,60.467041015625],[-1.235742187499994,60.48530273437499],[-1.157763671874989,60.417724609374964],[-1.117968749999989,60.41762695312496],[-1.052441406249955,60.44448242187502],[-1.065673828124971,60.381591796875],[-1.133691406249994,60.20698242187495],[-1.152783203124955,60.177343750000034],[-1.165722656249926,60.12426757812497],[-1.179248046874932,60.113916015624994],[-1.199316406249949,60.00659179687497],[-1.245312499999983,59.971240234375074],[-1.28378906249992,59.88691406250001],[-1.299462890624994,59.87866210937503],[-1.355859374999937,59.911132812499964],[-1.299511718749926,60.03984375000002],[-1.27617187499996,60.11464843749996],[-1.290917968749937,60.15346679687496],[-1.32280273437496,60.188378906249966],[-1.409033203124949,60.18950195312502],[-1.48149414062496,60.173388671875045],[-1.496875,60.193994140624966],[-1.49912109374992,60.221777343750034],[-1.5166015625,60.231005859375045],[-1.613037109374943,60.2291015625],[-1.641357421874943,60.236767578124976],[-1.660058593750023,60.26225585937501],[-1.663769531249983,60.282519531250074],[-1.57666015625,60.29838867187502],[-1.494433593749932,60.29248046875006],[-1.374609374999949,60.332910156250016],[-1.449560546874949,60.468554687500045],[-1.548828125,60.48129882812506],[-1.571777343749972,60.49443359375007],[-1.552636718749966,60.51743164062503],[-1.498144531249977,60.52983398437498],[-1.414208984374937,60.598730468750006],[-1.363964843750011,60.609570312499976],[-1.301708984374926,60.607666015625064],[-1.30810546875,60.5375]]],[[[-1.04252929687496,60.51386718750003],[-1.067871093749972,60.50229492187497],[-1.165527343749971,60.60390624999999],[-1.093310546874932,60.72021484374997],[-1.005615234375,60.71650390625001],[-0.991650390625011,60.68603515625003],[-1.000341796875006,60.658007812499996],[-1.045019531249949,60.65551757812502],[-1.049023437499955,60.646923828124955],[-1.035107421874983,60.592919921874966],[-1.03422851562496,60.530175781249966],[-1.04252929687496,60.51386718750003]]],[[[-0.774267578124949,60.811962890625004],[-0.774316406249966,60.800488281249976],[-0.826171874999943,60.71616210937503],[-0.825488281249989,60.683935546875034],[-0.909130859374983,60.68701171875006],[-0.92226562499999,60.697265625],[-0.93808593749992,60.74565429687499],[-0.927539062499989,60.79716796875001],[-0.915820312500017,60.810449218749966],[-0.891406250000017,60.81591796875003],[-0.864941406249955,60.805810546874994],[-0.823437499999926,60.83188476562498],[-0.80180664062496,60.83125],[-0.774267578124949,60.811962890625004]]]]}},{"type":"Feature","properties":{"scalerank":4,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"Guernsey","adm0_a3":"GGY","geou_dif":0,"geounit":"Guernsey","gu_a3":"GGY","su_dif":0,"subunit":"Guernsey","su_a3":"GGY","brk_diff":0,"name":"Guernsey","name_long":"Guernsey","brk_a3":"GGY","brk_name":"Guernsey","brk_group":"Channel Islands","abbrev":"Guern.","postal":"GG","formal_en":"Bailiwick of Guernsey","formal_fr":null,"note_adm0":"U.K. crown dependency","note_brk":null,"name_sort":"Guernsey","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":68633,"gdp_md_est":2742,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"GG","iso_a3":"GGY","iso_n3":"831","un_a3":"831","wb_a2":"JG","wb_a3":"CHI","woe_id":-99,"adm0_a3_is":"GGY","adm0_a3_us":"GGY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":6,"tiny":-99,"homepart":-99,"filename":"GGY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-2.512304687499977,49.49453125],[-2.54736328125,49.4287109375],[-2.639013671874977,49.450927734375],[-2.646142578124994,49.468212890625],[-2.542187499999983,49.506591796875],[-2.520898437499994,49.506298828125],[-2.512304687499977,49.49453125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Hungary","sov_a3":"HUN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Hungary","adm0_a3":"HUN","geou_dif":0,"geounit":"Hungary","gu_a3":"HUN","su_dif":0,"subunit":"Hungary","su_a3":"HUN","brk_diff":0,"name":"Hungary","name_long":"Hungary","brk_a3":"HUN","brk_name":"Hungary","brk_group":null,"abbrev":"Hun.","postal":"HU","formal_en":"Republic of Hungary","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Hungary","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":1,"mapcolor13":5,"pop_est":9905596,"gdp_md_est":196600,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"HU","iso_a3":"HUN","iso_n3":"348","un_a3":"348","wb_a2":"HU","wb_a3":"HUN","woe_id":-99,"adm0_a3_is":"HUN","adm0_a3_us":"HUN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"HUN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.131835937499996,48.405322265624996],[22.227148437500006,48.413427734375],[22.23115234375001,48.412158203124996],[22.253710937500017,48.407373046874994],[22.269433593750023,48.360888671874996],[22.27216796875001,48.3580078125],[22.29511718750001,48.327294921874994],[22.316699218750017,48.28662109375],[22.350195312500006,48.2560546875],[22.423828125,48.24331054687499],[22.520117187500006,48.205371093749996],[22.58242187500002,48.134033203125],[22.676367187500006,48.104394531249994],[22.68310546875,48.10361328125],[22.701562500000023,48.10703125],[22.769140625,48.109619140625],[22.7822265625,48.09521484375],[22.836230468750017,48.060302734375],[22.857226562500014,48.029541015625],[22.846484375000014,47.9970703125],[22.856054687500006,47.960302734375],[22.87666015625001,47.947265625],[22.85175781250001,47.92255859375],[22.6767578125,47.79902343749999],[22.6083984375,47.76630859375],[22.562890625000023,47.759570312499996],[22.49140625000001,47.77255859374999],[22.41748046875,47.762646484375],[22.35146484375002,47.736230468749994],[22.290625,47.72783203124999],[22.24462890625,47.69638671875],[22.18505859375,47.629052734374994],[22.111914062500006,47.572021484375],[22.037988281250023,47.53662109375],[21.99970703125001,47.505029296874994],[21.99531250000001,47.395703125],[21.95429687500001,47.36425781249999],[21.899218750000014,47.332568359374996],[21.86933593750001,47.304589843749994],[21.785449218750017,47.138134765625],[21.721777343750006,47.08481445312499],[21.661425781250017,47.043896484375],[21.651464843750002,47.00654296875],[21.652636718750017,46.963769531249994],[21.584179687500008,46.87836914062499],[21.494433593750017,46.78974609375],[21.47705078125,46.753369140625],[21.4970703125,46.70429687499999],[21.411035156250023,46.647851562499994],[21.361328125,46.62075195312499],[21.320214843750023,46.6078125],[21.29453125,46.5724609375],[21.252246093750017,46.486376953124996],[21.26328125,46.44775390625],[21.264550781250023,46.4123046875],[21.191796875000023,46.391552734375],[21.17041015625,46.352685546874994],[21.151953125,46.30434570312499],[21.121679687500006,46.282421875],[21.039843750000017,46.242236328124996],[20.837011718750002,46.259716796875],[20.76025390625,46.24624023437499],[20.737402343750006,46.21748046875],[20.732714843750017,46.19443359375],[20.707421875000023,46.172802734375],[20.661035156250023,46.145654296874994],[20.613671875000023,46.13349609374999],[20.508105468750017,46.166943359375],[20.28095703125001,46.1330078125],[20.241796875,46.10859375],[20.21015625000001,46.126025390624996],[20.161425781250017,46.141894531249996],[19.93408203125,46.161474609375],[19.84443359375001,46.145898437499994],[19.724511718750023,46.151904296874996],[19.61347656250001,46.169189453125],[19.53076171875,46.155175781249994],[19.45751953125,46.08735351562499],[19.421289062500023,46.06445312499999],[19.392871093750017,46.0498046875],[19.330273437500008,46.02851562499999],[19.278125,46.002880859375],[19.208398437500023,45.984423828124996],[19.146289062500017,45.98701171875],[19.087304687500023,46.01616210937499],[19.066210937500017,46.00952148437499],[19.047656250000017,45.982666015625],[19.015722656250006,45.959716796875],[18.927832031250006,45.931396484375],[18.905371093750006,45.93173828125],[18.900292968750023,45.93173828125],[18.8330078125,45.91083984374999],[18.721777343750006,45.899365234375],[18.666015625,45.907470703125],[18.564648437500008,45.81328125],[18.533593750000023,45.796142578125],[18.437304687500017,45.767333984375],[18.358300781250023,45.75302734375],[18.290625,45.764453125],[18.263964843750014,45.765478515625],[17.9638671875,45.77026367187499],[17.80712890625,45.790429687499994],[17.706445312500023,45.82724609375],[17.6396484375,45.868359375],[17.60703125,45.91376953125],[17.52919921875002,45.941308593749994],[17.406347656250006,45.951074218749994],[17.310644531250002,45.996142578124996],[17.2421875,46.076611328125],[17.14960937500001,46.14033203125],[17.03271484375,46.187304687499996],[16.93994140625,46.25366210937499],[16.871484375000023,46.339306640625],[16.748046875,46.41640624999999],[16.569921875,46.485009765624994],[16.516210937500006,46.49990234374999],[16.505664062500017,46.5220703125],[16.41845703125,46.607226562499996],[16.38125,46.638671875],[16.384570312500017,46.680810546874994],[16.3671875,46.70478515625],[16.33544921875,46.721630859375],[16.318457031250006,46.78251953124999],[16.308496093750023,46.82797851562499],[16.283593750000023,46.857275390625],[16.093066406250017,46.86328125],[16.252539062500006,46.971923828125],[16.331835937500017,47.002197265625],[16.423925781250006,46.996972656249994],[16.453417968750017,47.006787109375],[16.461230468750014,47.02246093749999],[16.476953125000023,47.057861328125],[16.484765625000023,47.091259765625],[16.49267578125,47.12265625],[16.482812500000023,47.140380859375],[16.438378906250023,47.145898437499994],[16.416894531250023,47.2234375],[16.439746093750014,47.252734375],[16.462597656250008,47.27314453125],[16.434375,47.36743164062499],[16.44287109375,47.39951171875],[16.514746093750006,47.404541015625],[16.57441406250001,47.424658203125],[16.623046875,47.447558593749996],[16.636621093750023,47.47661132812499],[16.676562500000017,47.536035156249994],[16.639746093750006,47.60888671875],[16.43212890625,47.65629882812499],[16.421289062500023,47.674462890624994],[16.469628906250023,47.69506835937499],[16.52109375,47.724462890625],[16.55097656250001,47.747363281249996],[16.590917968750006,47.750537109374996],[16.6474609375,47.739013671875],[16.74755859375,47.68627929687499],[16.785937500000017,47.678662109375],[16.823046875000017,47.69399414062499],[16.862695312500023,47.697265625],[16.973437500000017,47.6953125],[17.06660156250001,47.707568359374996],[17.04560546875001,47.76376953124999],[17.0458984375,47.804541015625],[17.030078125000014,47.837109375],[17.039941406250023,47.872949218749994],[17.077734375,47.90087890624999],[17.0890625,47.963623046875],[17.147363281250023,48.00595703125],[17.174609375000017,48.012060546875],[17.277246093750023,48.004345703125],[17.301562500000014,47.993359375],[17.317285156250023,47.99091796875],[17.48066406250001,47.887597656249994],[17.63525390625,47.80991210937499],[17.76191406250001,47.770166015624994],[17.94794921875001,47.766894531249996],[18.145605468750006,47.76342773437499],[18.47626953125001,47.777001953124994],[18.72421875,47.787158203124996],[18.740625,47.806494140625],[18.77802734375001,47.852880859375],[18.748339843750017,47.89267578125],[18.750097656250006,47.939453125],[18.791894531250023,48.000292968749996],[18.914160156250006,48.050830078124996],[19.26513671875,48.073046875],[19.466992187500008,48.110693359375],[19.497460937500023,48.162109375],[19.564257812500014,48.212841796875],[19.625390625000023,48.223095703125],[19.70917968750001,48.1998046875],[19.81005859375,48.155029296875],[19.89863281250001,48.13134765625],[19.950390625,48.146630859374994],[20.12861328125001,48.222021484375],[20.333789062500017,48.295556640624994],[20.475,48.4951171875],[20.490039062500014,48.52690429687499],[20.643164062500006,48.549707031249994],[20.866601562500023,48.54565429687499],[20.981152343750008,48.519677734374994],[21.067285156250023,48.505908203124996],[21.196386718750006,48.510595703125],[21.382421875,48.553466796875],[21.451367187500008,48.55224609375],[21.504687500000017,48.521875],[21.56318359375001,48.495703125],[21.602636718750006,48.463671875],[21.63251953125001,48.418505859374996],[21.64863281250001,48.40146484375],[21.674609375000014,48.378369140625],[21.721484375000017,48.346582031249994],[21.766992187500023,48.33808593749999],[22.111328125,48.393359375],[22.131835937499996,48.405322265624996]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ireland","sov_a3":"IRL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ireland","adm0_a3":"IRL","geou_dif":0,"geounit":"Ireland","gu_a3":"IRL","su_dif":0,"subunit":"Ireland","su_a3":"IRL","brk_diff":0,"name":"Ireland","name_long":"Ireland","brk_a3":"IRL","brk_name":"Ireland","brk_group":null,"abbrev":"Ire.","postal":"IRL","formal_en":"Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ireland","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":2,"mapcolor13":2,"pop_est":4203200,"gdp_md_est":188400,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IE","iso_a3":"IRL","iso_n3":"372","un_a3":"372","wb_a2":"IE","wb_a3":"IRL","woe_id":-99,"adm0_a3_is":"IRL","adm0_a3_us":"IRL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"IRL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-9.948193359374926,53.91313476562499],[-9.952441406249989,53.884570312500045],[-10.026513671874994,53.920556640624994],[-10.0625,53.95971679687497],[-10.265722656249947,53.977685546874994],[-10.181054687499937,54.01684570312497],[-10.139746093749949,54.005224609375006],[-9.99638671874996,54.00361328125004],[-9.956152343749949,53.987207031249994],[-9.948193359374926,53.91313476562499]]],[[[-7.40141601562496,55.00332031250005],[-7.445996093749982,54.905126953125034],[-7.451269531249977,54.87709960937499],[-7.502197265624972,54.82543945312506],[-7.55039062499992,54.767968749999966],[-7.606445312499972,54.745703125000055],[-7.689990234374932,54.72802734375],[-7.7375,54.71044921874997],[-7.797265624999937,54.71928710937499],[-7.872949218749994,54.71787109374998],[-7.910595703124955,54.698339843750006],[-7.908740234374933,54.68334960937505],[-7.886132812499937,54.66606445312499],[-7.819824218750028,54.639697265625045],[-7.746289062499954,54.61582031250006],[-7.754394531249999,54.59492187499998],[-7.793798828124949,54.57124023437504],[-8.044335937500023,54.51245117187505],[-8.118945312499932,54.47695312500002],[-8.14482421874996,54.45351562500002],[-8.118261718749977,54.41425781250004],[-7.918457031249943,54.29658203125004],[-7.884472656249955,54.283789062500006],[-7.854931640624983,54.21528320312498],[-7.678759765624959,54.186669921875016],[-7.606542968750005,54.14384765625002],[-7.544433593749942,54.13359375],[-7.409423828124972,54.137304687500006],[-7.355175781249955,54.12124023437502],[-7.324511718750017,54.13344726562502],[-7.306738281249949,54.156005859375],[-7.193066406249955,54.21411132812503],[-7.155468749999926,54.23950195312506],[-7.17807617187492,54.27490234374997],[-7.202587890624955,54.301806640625045],[-7.133496093749983,54.35537109375002],[-7.049707031249965,54.40825195312496],[-7.007714843749937,54.40668945312501],[-6.93613281249992,54.37431640624998],[-6.877246093749932,54.3291015625],[-6.869238281249977,54.294042968750055],[-6.858349609374982,54.268652343750034],[-6.802587890624977,54.21435546874997],[-6.766601562499942,54.19560546874999],[-6.669531249999977,54.184716796874994],[-6.646875,54.163427734375006],[-6.664208984374965,54.08476562499996],[-6.649804687499937,54.05864257812496],[-6.548144531249932,54.05727539062505],[-6.440283203124977,54.063623046874994],[-6.402587890624943,54.06064453125003],[-6.363671875000023,54.07709960937501],[-6.303662109374955,54.094873046874966],[-6.218017578125,54.08872070312506],[-6.17573242187501,54.05351562499999],[-6.156933593749982,54.01723632812496],[-6.230664062500011,54.00361328125004],[-6.307617187499972,54.01103515625004],[-6.345166015624983,53.987207031249994],[-6.347607421874926,53.941308593750044],[-6.32158203124996,53.88217773437498],[-6.270117187499949,53.840234374999966],[-6.229003906250028,53.74570312499998],[-6.194873046874989,53.64086914062503],[-6.141845703124943,53.57753906250002],[-6.130957031249949,53.498925781249994],[-6.13876953124992,53.460302734375006],[-6.129101562499926,53.390869140625],[-6.151660156249989,53.36640624999998],[-6.134716796874983,53.30122070312504],[-6.072265624999971,53.16630859374999],[-6.04501953124992,53.091162109375034],[-6.027392578124989,52.927099609375006],[-6.071484374999983,52.865625],[-6.13066406249996,52.807275390625016],[-6.169335937499937,52.73813476562498],[-6.19921875,52.66347656250005],[-6.217236328124926,52.54311523437502],[-6.345410156249926,52.402001953124966],[-6.399951171874932,52.36694335937503],[-6.463183593749932,52.345361328124994],[-6.325,52.246679687500034],[-6.437939453124954,52.20268554687495],[-6.561083984374989,52.18881835937498],[-6.69731445312496,52.21352539062502],[-6.782226562500028,52.210498046875045],[-6.859716796875005,52.178564453125006],[-6.890234375,52.15922851562499],[-6.914648437500006,52.16855468750003],[-6.965771484374926,52.24951171875],[-7.00327148437492,52.16591796875002],[-7.081787109374943,52.13930664062502],[-7.216210937499966,52.14497070312501],[-7.440869140624984,52.122705078124994],[-7.527294921874926,52.09887695312503],[-7.563183593749955,52.06162109375],[-7.589843749999972,52.01855468750003],[-7.624902343749994,51.99311523437498],[-7.664550781249999,51.979736328125],[-7.837988281249977,51.94799804687502],[-7.87216796874992,51.93530273437502],[-7.952490234374949,51.86577148437499],[-8.057812499999926,51.82558593750005],[-8.14501953125,51.81352539062498],[-8.222460937499989,51.85400390624997],[-8.254296874999966,51.878320312500044],[-8.290234374999926,51.89067382812498],[-8.4091796875,51.888769531250034],[-8.371630859374989,51.87626953124999],[-8.347363281249926,51.84770507812502],[-8.335595703124937,51.792968749999964],[-8.349121093749943,51.73930664062495],[-8.407812499999977,51.71206054687502],[-8.47783203124996,51.70703125000006],[-8.58828125,51.6513671875],[-8.734472656249919,51.63618164062501],[-8.813427734374924,51.584912109374955],[-9.296484374999949,51.49824218749998],[-9.323876953125023,51.49721679687502],[-9.390576171874926,51.519287109375],[-9.462890625,51.52905273437502],[-9.534863281249926,51.522167968749955],[-9.737304687499943,51.47373046875003],[-9.835351562499937,51.483349609374955],[-9.710351562499966,51.603710937499955],[-9.542382812499937,51.66445312499999],[-9.524902343750028,51.68110351562501],[-9.579833984375027,51.68925781249999],[-9.899023437499947,51.647070312500006],[-10.009912109374966,51.61113281249996],[-10.120751953124994,51.60068359375006],[-10.06943359374992,51.65556640624996],[-9.926416015624937,51.730712890625],[-9.849707031249919,51.76611328125],[-9.802880859374994,51.780126953125034],[-9.749511718749941,51.82426757812495],[-9.598828124999983,51.87441406250005],[-10.084228515625028,51.77099609375003],[-10.21171875,51.78359375000002],[-10.241748046874958,51.81245117187504],[-10.341064453124943,51.79892578125003],[-10.378710937499958,51.86875],[-10.231591796874937,51.97451171875002],[-10.145849609374949,52.02001953125005],[-10.04404296874992,52.044580078124994],[-9.946044921875028,52.07983398437497],[-9.909667968749972,52.122949218749966],[-9.955810546874972,52.13666992187501],[-10.249511718749943,52.12573242187499],[-10.39023437499992,52.134912109374994],[-10.38261718749996,52.16909179687505],[-10.356689453125,52.206933593750016],[-10.210937499999972,52.27167968749998],[-10.132080078125,52.28208007812506],[-10.06176757812497,52.27592773437495],[-9.993115234374926,52.259326171875045],[-9.937304687499932,52.23764648437497],[-9.772119140624936,52.250097656250034],[-9.841064453124943,52.29145507812501],[-9.853222656249926,52.37548828125],[-9.906054687499958,52.403710937499966],[-9.838476562499949,52.44267578124999],[-9.761132812499994,52.46635742187502],[-9.632226562499937,52.54692382812502],[-9.586328125000023,52.559179687500034],[-9.33125,52.57875976562502],[-9.05615234375,52.621142578125045],[-8.783447265624943,52.679638671874955],[-8.923291015624926,52.712304687500044],[-8.990283203124989,52.755419921875045],[-9.097900390624972,52.66826171875004],[-9.175390624999949,52.634912109374994],[-9.394238281249955,52.617089843749994],[-9.463476562499949,52.626904296874955],[-9.56103515625,52.653955078124966],[-9.59135742187496,52.643652343750006],[-9.619531249999937,52.62275390625001],[-9.764355468749955,52.579980468749994],[-9.916601562499977,52.56972656250005],[-9.739599609374977,52.64819335937503],[-9.514990234374949,52.78115234375002],[-9.46489257812496,52.82319335937498],[-9.39365234374992,52.89624023437503],[-9.415722656249983,52.92875976562499],[-9.461962890624989,52.94726562500003],[-9.299218749999966,53.09755859375002],[-9.241894531249926,53.12485351562497],[-9.137597656249994,53.12924804687498],[-9.061132812499949,53.15307617187506],[-9.027441406249919,53.15317382812498],[-8.997167968749977,53.16206054687501],[-8.930126953124983,53.207080078125045],[-9.03354492187492,53.235742187500016],[-9.140332031249926,53.25048828125],[-9.470751953124989,53.23486328124999],[-9.51420898437496,53.23823242187498],[-9.555175781249972,53.252050781250034],[-9.581738281249955,53.27197265625003],[-9.601757812499955,53.323046875000045],[-9.6259765625,53.33447265625006],[-9.700585937499937,53.33447265625006],[-9.774072265624966,53.31884765624997],[-9.825390624999955,53.32036132812502],[-9.875781250000017,53.342724609374955],[-9.795410156249972,53.39497070312504],[-9.899023437499947,53.40727539062495],[-10.00390625,53.39702148437502],[-10.091259765624926,53.41284179687503],[-10.093994140624972,53.445605468750045],[-10.054394531249983,53.47832031249996],[-10.10625,53.50932617187496],[-10.116992187499932,53.54853515624995],[-10.061718749999955,53.56782226562498],[-10.001367187500021,53.56142578125002],[-9.878271484374977,53.590429687500055],[-9.720654296874926,53.60449218749999],[-9.855859374999937,53.63310546874996],[-9.909716796874989,53.657617187499994],[-9.912304687499983,53.69511718749999],[-9.901611328124943,53.72719726562502],[-9.745068359374926,53.781494140625],[-9.578222656249947,53.80541992187497],[-9.590527343749983,53.84116210937497],[-9.578857421875,53.879833984374955],[-9.747509765624983,53.89101562500002],[-9.9140625,53.863720703124955],[-9.896240234374998,53.937597656250006],[-9.856347656249966,54.00429687499999],[-9.848486328124949,54.04829101562498],[-9.85644531249997,54.095361328124994],[-9.934472656249966,54.07524414062499],[-9.943603515624972,54.1416015625],[-9.97709960937496,54.18710937500003],[-10.092675781249966,54.15576171875003],[-10.089697265624977,54.21582031250003],[-10.056396484374943,54.25781250000006],[-9.995947265624977,54.27602539062502],[-9.9359375,54.26811523437502],[-9.824560546874949,54.268896484375006],[-9.71713867187492,54.30043945312502],[-9.562304687499989,54.30854492187498],[-9.315527343750006,54.29863281250002],[-9.145898437499994,54.209619140624994],[-9.10209960937496,54.225537109374955],[-9.034277343749977,54.281787109375045],[-9.002441406249972,54.287988281249966],[-8.746777343749955,54.263476562500045],[-8.588037109374937,54.231103515625016],[-8.545556640624994,54.24121093750003],[-8.568457031249949,54.30361328125005],[-8.623144531249977,54.346875],[-8.554443359375027,54.40356445312497],[-8.470996093749989,54.44194335937498],[-8.415234374999983,54.461083984374966],[-8.286523437499966,54.48486328125003],[-8.230371093749994,54.50727539062498],[-8.1929687499999,54.58012695312499],[-8.133447265624966,54.640820312500004],[-8.456542968749972,54.609277343749966],[-8.763916015624972,54.68120117187496],[-8.715185546875006,54.732031250000034],[-8.650292968749994,54.76088867187505],[-8.538281249999926,54.782958984375],[-8.527685546874977,54.80947265624999],[-8.470996093749989,54.83154296875006],[-8.377294921874977,54.88945312500002],[-8.411718749999977,54.965087890624964],[-8.393261718749953,55.020410156249966],[-8.325781249999977,55.056445312500045],[-8.304687499999943,55.10820312500002],[-8.274609374999953,55.146289062500045],[-8.137695312499943,55.159912109374964],[-8.006103515624943,55.1953125],[-7.958593749999949,55.19189453125],[-7.80317382812501,55.20004882812498],[-7.750537109374932,55.18579101562499],[-7.762548828124976,55.24833984374996],[-7.667089843749977,55.25649414062502],[-7.629785156249937,55.24399414062506],[-7.613378906249977,55.19965820312498],[-7.570019531249926,55.17138671875],[-7.556640624999943,55.12221679687502],[-7.585693359375001,55.084228515625],[-7.634277343749972,55.05498046874998],[-7.589843749999972,55.02504882812502],[-7.65874023437496,54.97094726562503],[-7.584375,54.993994140625006],[-7.478417968749994,55.046972656250055],[-7.483935546874989,55.09028320312501],[-7.501953125,55.14472656249998],[-7.531445312499982,55.19384765625005],[-7.51787109374996,55.24794921874996],[-7.458300781249989,55.28178710937502],[-7.3017578125,55.29877929687501],[-7.365966796875,55.360205078125],[-7.308789062500011,55.365820312500006],[-7.246679687499949,55.35302734374997],[-7.155322265624988,55.30517578125],[-7.060253906249983,55.26762695312499],[-6.961669921874972,55.23789062500006],[-7.056396484375,55.178320312500006],[-7.172851562500028,55.13701171875002],[-7.218652343749937,55.091992187499976],[-7.376904296874926,55.027685546875034],[-7.40141601562496,55.00332031250005]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"Isle of Man","adm0_a3":"IMN","geou_dif":0,"geounit":"Isle of Man","gu_a3":"IMN","su_dif":0,"subunit":"Isle of Man","su_a3":"IMN","brk_diff":0,"name":"Isle of Man","name_long":"Isle of Man","brk_a3":"IMN","brk_name":"Isle of Man","brk_group":null,"abbrev":"IoMan","postal":"IM","formal_en":null,"formal_fr":null,"note_adm0":"U.K. crown dependency","note_brk":null,"name_sort":"Isle of Man","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":76512,"gdp_md_est":2719,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"IM","iso_a3":"IMN","iso_n3":"833","un_a3":"833","wb_a2":"IM","wb_a3":"IMY","woe_id":-99,"adm0_a3_is":"IMN","adm0_a3_us":"IMN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":-99,"filename":"IMN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-4.412060546874983,54.185351562499996],[-4.6142578125,54.05869140625],[-4.696093749999989,54.0814453125],[-4.765771484374994,54.06943359375],[-4.785351562499983,54.07304687499999],[-4.745556640624983,54.118798828125],[-4.69873046875,54.22490234374999],[-4.614843749999977,54.266943359375],[-4.508642578124977,54.376708984375],[-4.424707031249994,54.407177734375],[-4.395556640624989,54.4029296875],[-4.377197265625,54.392578125],[-4.337988281249977,54.269091796874996],[-4.392285156249983,54.225390625],[-4.412060546874983,54.185351562499996]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Iceland","sov_a3":"ISL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iceland","adm0_a3":"ISL","geou_dif":0,"geounit":"Iceland","gu_a3":"ISL","su_dif":0,"subunit":"Iceland","su_a3":"ISL","brk_diff":0,"name":"Iceland","name_long":"Iceland","brk_a3":"ISL","brk_name":"Iceland","brk_group":null,"abbrev":"Iceland","postal":"IS","formal_en":"Republic of Iceland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iceland","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":4,"mapcolor13":9,"pop_est":306694,"gdp_md_est":12710,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IS","iso_a3":"ISL","iso_n3":"352","un_a3":"352","wb_a2":"IS","wb_a3":"ISL","woe_id":-99,"adm0_a3_is":"ISL","adm0_a3_us":"ISL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"ISL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-15.543115234374993,66.228515625],[-15.428466796874998,66.2248046875],[-15.240917968749981,66.259130859375],[-15.162402343749987,66.281689453125],[-14.969970703125,66.359716796875],[-14.856103515624994,66.3814453125],[-14.6806640625,66.376123046875],[-14.595849609374993,66.38154296875],[-14.593896484374993,66.373974609375],[-14.70166015625,66.34228515625],[-14.788232421874993,66.33144531249998],[-14.912207031249977,66.28427734374999],[-15.029980468749983,66.177880859375],[-15.117382812499985,66.12563476562498],[-15.116406249999983,66.10244140625],[-15.01030273437499,66.061279296875],[-14.89404296875,66.037890625],[-14.787158203124987,66.05908203125],[-14.740429687499981,66.050830078125],[-14.698193359374983,66.02021484375],[-14.674365234374987,65.989892578125],[-14.668994140624989,65.95986328125],[-14.688232421875,65.89697265625],[-14.752539062499975,65.8337890625],[-14.839306640624983,65.780908203125],[-14.827099609374981,65.76425781249999],[-14.757519531249981,65.7556640625],[-14.426220703124983,65.78994140625],[-14.391845703124998,65.78740234375],[-14.372802734375,65.770361328125],[-14.369091796874983,65.738720703125],[-14.350878906249989,65.710107421875],[-14.318164062499989,65.68447265625],[-14.328369140625,65.658251953125],[-14.473388671875,65.575341796875],[-14.302294921874989,65.62753906249999],[-14.166943359374983,65.64228515624998],[-13.935449218749994,65.616064453125],[-13.840722656249993,65.58593749999999],[-13.785253906249977,65.5330078125],[-13.705126953124987,65.550537109375],[-13.6703125,65.54951171875],[-13.617871093749983,65.5193359375],[-13.616015624999989,65.487158203125],[-13.654443359374994,65.44130859375],[-13.667773437499987,65.398974609375],[-13.708007812499998,65.381591796875],[-13.783251953124987,65.368994140625],[-13.804785156249977,65.35478515624999],[-13.771630859374994,65.322509765625],[-13.722851562499983,65.290966796875],[-13.653466796874994,65.289501953125],[-13.64111328125,65.275],[-13.639550781249994,65.25747070312498],[-13.64892578125,65.236962890625],[-13.671582031249983,65.2228515625],[-13.70742187499999,65.21513671875],[-13.7548828125,65.192529296875],[-13.580810546874998,65.143017578125],[-13.55859375,65.124658203125],[-13.556103515624983,65.09765625],[-13.569677734374975,65.068115234375],[-13.599316406249983,65.0359375],[-13.65185546875,65.016845703125],[-13.777246093749994,65.01372070312499],[-13.85400390625,64.99287109375],[-13.827832031249983,64.95800781249999],[-13.829833984374998,64.914013671875],[-13.852929687499994,64.862158203125],[-13.951660156249998,64.783642578125],[-14.04443359375,64.74189453125],[-14.13515625,64.714794921875],[-14.296972656249977,64.724365234375],[-14.385107421874977,64.74521484375],[-14.375292968749989,64.67744140625],[-14.465380859374989,64.635693359375],[-14.448339843749977,64.600830078125],[-14.4169921875,64.58310546875],[-14.432568359374983,64.538330078125],[-14.475390624999989,64.493994140625],[-14.547070312499983,64.445947265625],[-14.628222656249987,64.415966796875],[-14.78955078125,64.379833984375],[-14.927392578124993,64.319677734375],[-15.021582031249977,64.2958984375],[-15.255859375,64.296923828125],[-15.494970703124977,64.258203125],[-15.832910156249993,64.17666015625],[-16.060449218749994,64.11123046875],[-16.236035156249983,64.03720703125],[-16.46806640624999,63.91635742187499],[-16.640332031249983,63.865478515625],[-16.739697265624983,63.85175781249999],[-16.933056640624983,63.84091796874999],[-17.095117187499994,63.80810546874999],[-17.633447265624994,63.74658203125],[-17.81572265624999,63.71298828125],[-17.83925781249999,63.682373046875],[-17.91484374999999,63.636376953124994],[-17.919580078124994,63.61972656249999],[-17.886376953124994,63.606884765625],[-17.880273437499994,63.590185546875],[-17.946923828124994,63.53574218749999],[-18.08002929687498,63.496337890625],[-18.142919921874977,63.496972656249994],[-18.21904296874999,63.53085937499999],[-18.252197265625,63.52968749999999],[-18.265234374999977,63.52451171874999],[-18.26601562499999,63.5138671875],[-18.222265624999977,63.473193359375],[-18.302832031249977,63.45424804687499],[-18.65361328124999,63.406689453125],[-19.250195312499983,63.44199218749999],[-19.486572265625,63.478515625],[-19.778271484374983,63.536572265625],[-19.95195312499999,63.55205078125],[-20.198144531249994,63.55581054687499],[-20.40043945312499,63.63710937499999],[-20.494042968749994,63.68735351562499],[-20.501562499999977,63.708203125],[-20.49101562499999,63.731982421874996],[-20.469970703125,63.74819335937499],[-20.4384765625,63.756982421874994],[-20.371728515624994,63.757861328125],[-20.363037109375,63.76494140625],[-20.41396484374999,63.80517578124999],[-20.46269531249999,63.792138671874994],[-20.592968749999983,63.73535156250001],[-20.65092773437499,63.73740234374999],[-20.727050781249996,63.76577148437499],[-20.729931640624983,63.79335937499999],[-20.878759765624977,63.80390625],[-21.00810546874999,63.83837890624999],[-21.136572265624977,63.887939453125],[-21.15576171875,63.9068359375],[-21.09404296874999,63.934423828125006],[-21.10595703125,63.93984374999999],[-21.15239257812499,63.94453125],[-21.246240234374994,63.93544921875],[-21.387597656249994,63.87280273437501],[-21.448632812499994,63.8583984375],[-22.37255859375,63.84375],[-22.606884765624983,63.83725585937499],[-22.652197265624977,63.827734375],[-22.693017578124994,63.868505859375],[-22.729394531249994,63.95947265625001],[-22.74296874999999,64.019384765625],[-22.733642578125,64.048388671875],[-22.701171875,64.083203125],[-22.650927734374985,64.077294921875],[-22.60307617187499,64.049609375],[-22.559814453125,64.0103515625],[-22.51005859374999,63.99145507812499],[-22.187597656249977,64.039208984375],[-22.056640625,64.071337890625],[-22.0009765625,64.10185546874999],[-21.935449218749994,64.153759765625],[-21.865917968749983,64.180322265625],[-21.832763671875,64.205419921875],[-21.767578125,64.28486328125],[-21.72255859374999,64.32177734375],[-21.668652343749983,64.3490234375],[-21.60600585937499,64.3666015625],[-21.463330078124983,64.379150390625],[-21.55717773437499,64.3978515625],[-21.646679687499983,64.3978515625],[-21.95122070312499,64.313916015625],[-22.053369140624994,64.313916015625],[-22.049072265625,64.327001953125],[-22.00600585937499,64.35068359375],[-21.901269531249994,64.3916015625],[-21.97319335937499,64.394677734375],[-22.000683593749983,64.41318359375],[-22.003808593749994,64.452197265625],[-21.95034179687499,64.514990234375],[-21.702392578125,64.597802734375],[-21.616650390624983,64.610009765625],[-21.590625,64.6263671875],[-21.623144531249977,64.63974609375],[-21.674951171874994,64.647705078125],[-21.924414062499977,64.562548828125],[-22.10600585937499,64.533056640625],[-22.159960937499985,64.538818359375],[-22.25390625,64.571875],[-22.2841796875,64.586572265625],[-22.32470703125,64.6244140625],[-22.32011718749999,64.647216796875],[-22.233593749999983,64.71396484375],[-22.24755859375,64.726904296875],[-22.30703125,64.73349609375],[-22.467041015625,64.794970703125],[-22.720312499999977,64.788818359375],[-23.346972656249985,64.824365234375],[-23.476464843749994,64.80927734375],[-23.68994140625,64.75654296875],[-23.818994140624994,64.73916015625],[-23.878564453124994,64.750634765625],[-23.93276367187499,64.778515625],[-23.98198242187499,64.81611328125],[-24.02617187499999,64.863427734375],[-24.007031249999983,64.896435546875],[-23.924414062499977,64.915234375],[-23.86381835937499,64.924169921875],[-23.693212890624977,64.912744140625],[-23.485302734374983,64.945849609375],[-23.352685546874994,64.952783203125],[-23.31459960937499,64.95800781249999],[-23.236523437499983,64.99326171875],[-23.197998046874996,65.0021484375],[-23.137890624999983,64.98979492187499],[-23.108837890624983,64.965869140625],[-22.899511718749977,65.00302734375],[-22.82768554687499,65.0216796875],[-22.819580078125,65.03310546875],[-22.7880859375,65.046484375],[-22.68398437499999,65.02636718749999],[-22.599707031249977,65.02573242187499],[-22.494482421874977,65.03955078125],[-22.308447265624977,65.045654296875],[-21.89213867187499,65.048779296875],[-21.82978515624998,65.0791015625],[-21.80043945312499,65.105908203125],[-21.76372070312499,65.17373046875],[-21.779980468749983,65.1876953125],[-22.039990234374983,65.125244140625],[-22.09931640624998,65.126220703125],[-22.40029296874999,65.159326171875],[-22.50908203124999,65.19677734375],[-22.47343749999999,65.22685546875],[-22.31396484375,65.2916015625],[-22.149316406249994,65.3435546875],[-21.906982421875,65.39970703125],[-21.850244140624994,65.421533203125],[-21.844384765624994,65.44736328125],[-22.005761718749994,65.49345703125],[-22.311474609374983,65.480712890625],[-22.38969726562499,65.535400390625],[-22.64360351562499,65.5677734375],[-22.812646484374994,65.547412109375],[-22.902490234374994,65.58046875],[-23.122070312499996,65.534765625],[-23.604541015624985,65.468603515625],[-23.796484374999974,65.42275390625],[-23.89990234375,65.407568359375],[-24.018994140624983,65.44501953125],[-24.223974609374977,65.48720703124998],[-24.454785156249983,65.500341796875],[-24.475683593749977,65.5251953125],[-24.341064453125,65.601220703125],[-24.248925781249994,65.614990234375],[-24.156103515624977,65.6080078125],[-23.97900390625,65.55498046875],[-23.85673828124999,65.53837890625],[-24.010009765625,65.61621093749999],[-24.006005859374994,65.646142578125],[-24.017578125,65.69091796874999],[-24.065039062499977,65.71015625],[-24.111914062499977,65.759716796875],[-24.092626953124974,65.77646484375],[-24.03242187499998,65.78232421875],[-23.909082031249994,65.76557617187498],[-23.615917968749983,65.67958984374998],[-23.47197265624999,65.69482421875],[-23.39296875,65.726513671875],[-23.285351562499983,65.75],[-23.31591796875,65.762255859375],[-23.56928710937498,65.763720703125],[-23.704736328124994,65.781201171875],[-23.77324218749999,65.80634765625],[-23.832617187499974,65.84921875],[-23.811718749999983,65.868896484375],[-23.741308593749977,65.8845703125],[-23.52495117187499,65.880029296875],[-23.66748046875,65.954296875],[-23.766552734374983,65.99697265625],[-23.77734375,66.017578125],[-23.77055664062499,66.04345703125],[-23.75712890624999,66.060791015625],[-23.737158203124977,66.06943359375],[-23.488867187499977,66.02607421875],[-23.434472656249994,66.02421874999999],[-23.48466796874999,66.05224609375],[-23.59355468749999,66.093408203125],[-23.598535156249994,66.108837890625],[-23.552636718749994,66.12158203125],[-23.52998046874998,66.14501953125],[-23.527929687499977,66.164404296875],[-23.45253906249999,66.181005859375],[-23.376562499999977,66.18173828125],[-23.3,66.16660156249999],[-23.06254882812499,66.08623046874999],[-23.028515624999983,66.06367187499998],[-23.017285156249983,66.033935546875],[-23.028906249999977,65.9970703125],[-23.018994140624983,65.98212890625],[-22.926220703124983,65.99482421875],[-22.852246093749983,65.979296875],[-22.81533203124999,65.98349609375],[-22.723339843749983,66.03901367187498],[-22.659863281249983,66.025927734375],[-22.621582031249996,65.999951171875],[-22.609716796874977,65.97646484375],[-22.60405273437499,65.944189453125],[-22.620214843749974,65.87695312499999],[-22.61601562499999,65.86748046875],[-22.551562499999985,65.905419921875],[-22.44169921874999,65.90830078125],[-22.42753906249999,65.927392578125],[-22.42421875,65.998095703125],[-22.43315429687499,66.057666015625],[-22.4453125,66.07001953124998],[-22.80644531249999,66.152587890625],[-22.869238281249977,66.1720703125],[-22.947900390624994,66.212744140625],[-22.931982421874977,66.233203125],[-22.861621093749985,66.25146484375],[-22.755517578124994,66.258740234375],[-22.509375,66.257763671875],[-22.48442382812499,66.26630859375],[-22.532128906249994,66.28774414062498],[-22.646093749999977,66.3015625],[-22.672753906249994,66.313916015625],[-22.686230468749983,66.3376953125],[-22.82133789062499,66.32470703125],[-22.972021484374974,66.324169921875],[-23.116943359375,66.338720703125],[-23.11992187499999,66.3572265625],[-23.062695312499983,66.384375],[-22.944335937499996,66.429443359375],[-22.88920898437499,66.440625],[-22.723730468749977,66.432763671875],[-22.559326171875,66.44541015625],[-22.426123046874977,66.43012695312498],[-22.320458984374994,66.385498046875],[-22.17021484374999,66.30712890625],[-21.966992187499983,66.256982421875],[-21.948388671874994,66.24125976562499],[-21.84023437499999,66.2001953125],[-21.625292968749985,66.089697265625],[-21.406884765624994,66.02558593749998],[-21.396777343749985,66.00927734375],[-21.432714843749977,65.990087890625],[-21.51665039062499,65.967578125],[-21.497460937499994,65.955078125],[-21.387792968749977,65.93876953125],[-21.308789062499983,65.89531249999999],[-21.303466796875,65.87646484375],[-21.374902343749994,65.74189453125],[-21.412841796875,65.713330078125],[-21.456640624999977,65.6982421875],[-21.658447265625,65.723583984375],[-21.6103515625,65.68076171875],[-21.466259765624983,65.63515625],[-21.43364257812499,65.60966796875],[-21.45512695312499,65.58466796875],[-21.439404296874983,65.57890624999999],[-21.386621093749994,65.592431640625],[-21.36474609375,65.57822265624999],[-21.373876953124977,65.536376953125],[-21.396337890624977,65.50166015625],[-21.43217773437499,65.474072265625],[-21.421875,65.462158203125],[-21.365478515625,65.4658203125],[-21.31254882812499,65.45869140625],[-21.22998046875,65.42060546875],[-21.162988281249994,65.304248046875],[-21.12968749999999,65.2666015625],[-21.105712890625,65.3],[-21.075585937499994,65.3849609375],[-21.047314453124983,65.428369140625],[-21.020849609374977,65.4302734375],[-20.997998046874983,65.44453125],[-20.978857421874974,65.47119140625],[-20.93974609374999,65.565185546875],[-20.804345703124994,65.63642578125],[-20.739697265624983,65.658251953125],[-20.678955078124996,65.6630859375],[-20.6494140625,65.65419921874998],[-20.54814453124999,65.5794921875],[-20.486523437499983,65.566943359375],[-20.454833984375,65.571044921875],[-20.411523437499994,65.621728515625],[-20.356640624999983,65.71904296875],[-20.344091796874977,65.827734375],[-20.373925781249994,65.947705078125],[-20.356591796874994,66.033251953125],[-20.292138671874994,66.084375],[-20.20751953125,66.10009765625],[-20.10268554687499,66.08046875],[-20.026074218749983,66.049267578125],[-19.874755859374996,65.930126953125],[-19.752636718749983,65.8677734375],[-19.647851562499994,65.80078125],[-19.59355468749999,65.779052734375],[-19.489697265624983,65.76806640625],[-19.461816406249994,65.77236328125],[-19.443261718749994,65.787841796875],[-19.43388671874999,65.814453125],[-19.45625,65.984912109375],[-19.427050781249985,66.03798828125],[-19.382958984374994,66.07568359374999],[-19.1953125,66.097900390625],[-19.093212890624983,66.121533203125],[-18.99375,66.1603515625],[-18.911328124999983,66.18115234375],[-18.845898437499983,66.183935546875],[-18.777539062499983,66.168798828125],[-18.70620117187499,66.1357421875],[-18.594921874999983,66.071337890625],[-18.454931640624977,65.96455078125],[-18.276953124999974,65.884716796875],[-18.183642578124985,65.7580078125],[-18.163720703124994,65.736572265625],[-18.141943359374977,65.73408203125],[-18.118408203125,65.750537109375],[-18.103320312499985,65.77392578125],[-18.099023437499994,65.8302734375],[-18.148876953124983,65.905029296875],[-18.315332031249994,66.0931640625],[-18.318212890624977,66.12880859375],[-18.29716796874999,66.157421875],[-18.179882812499983,66.160546875],[-17.906982421875,66.14331054687499],[-17.81982421875,66.114111328125],[-17.63432617187499,65.999169921875],[-17.582226562499983,65.97138671875],[-17.550439453124994,65.964404296875],[-17.53901367187498,65.9783203125],[-17.467041015625,65.999658203125],[-17.417236328125,66.025537109375],[-17.33427734374999,66.0888671875],[-17.15302734374998,66.20283203125],[-17.11538085937499,66.206201171875],[-17.062451171874983,66.197216796875],[-16.96953124999999,66.1673828125],[-16.925439453124994,66.14345703125],[-16.838037109374994,66.125244140625],[-16.7484375,66.131640625],[-16.624755859375,66.17158203125],[-16.485009765624994,66.195947265625],[-16.437109374999977,66.25253906249999],[-16.428076171874977,66.278369140625],[-16.540673828124994,66.446728515625],[-16.493359374999983,66.48115234375],[-16.249316406249985,66.522900390625],[-16.035888671875,66.52607421875],[-15.985400390624987,66.51464843749999],[-15.850927734374975,66.432861328125],[-15.759765625,66.39169921875],[-15.713769531249996,66.35859375],[-15.702783203124994,66.2857421875],[-15.647363281249996,66.2587890625],[-15.543115234374993,66.228515625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Italy","sov_a3":"ITA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Italy","adm0_a3":"ITA","geou_dif":0,"geounit":"Italy","gu_a3":"ITA","su_dif":0,"subunit":"Italy","su_a3":"ITA","brk_diff":0,"name":"Italy","name_long":"Italy","brk_a3":"ITA","brk_name":"Italy","brk_group":null,"abbrev":"Italy","postal":"I","formal_en":"Italian Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Italy","name_alt":null,"mapcolor7":6,"mapcolor8":7,"mapcolor9":8,"mapcolor13":7,"pop_est":58126212,"gdp_md_est":1823000,"pop_year":-99,"lastcensus":2012,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IT","iso_a3":"ITA","iso_n3":"380","un_a3":"380","wb_a2":"IT","wb_a3":"ITA","woe_id":-99,"adm0_a3_is":"ITA","adm0_a3_us":"ITA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ITA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.051269531250028,36.75703124999998],[12.003320312500023,36.74599609374996],[11.940625,36.780371093750034],[11.93642578125008,36.82861328124999],[11.948046875000045,36.84306640625002],[12.024218750000017,36.82094726562505],[12.048046874999981,36.77636718750003],[12.051269531250028,36.75703124999998]]],[[[15.57656250000005,38.220312500000034],[15.508886718750034,38.10664062499995],[15.475683593750004,38.06293945312504],[15.234472656249977,37.78481445312502],[15.206835937500045,37.720556640625006],[15.18984375000005,37.65073242187498],[15.164843750000015,37.589550781249955],[15.131054687500068,37.53188476562502],[15.099511718750021,37.45859375],[15.10566406250004,37.37548828125006],[15.116992187500045,37.334716796875],[15.14599609375,37.308007812499966],[15.193652343750017,37.282861328124994],[15.230273437500017,37.24433593749998],[15.174121093750044,37.20917968750001],[15.23603515625004,37.138720703125045],[15.288671875,37.09692382812506],[15.295703125000015,37.05517578124997],[15.294531250000064,37.013281250000055],[15.18515625000006,36.93481445312497],[15.142382812500045,36.89160156250006],[15.115820312500063,36.83925781250005],[15.104296875000017,36.78525390625006],[15.11630859375006,36.73647460937496],[15.112597656250017,36.687841796875006],[15.002441406250055,36.69389648437502],[14.8896484375,36.723535156249994],[14.775976562500004,36.71040039062498],[14.614355468750036,36.76660156249999],[14.555468750000044,36.77675781250002],[14.501855468750023,36.798681640625034],[14.367285156250063,36.97285156249998],[14.259082031250045,37.04643554687499],[14.142968750000023,37.103662109374994],[14.024316406249994,37.10712890624998],[13.905468750000038,37.10063476562502],[13.800585937500074,37.135888671874994],[13.587109375000011,37.25415039062503],[13.360937500000034,37.34873046875],[13.264941406250017,37.410351562499955],[13.221093750000051,37.45180664062505],[13.169921875000028,37.47929687499996],[13.040332031249989,37.50654296875001],[12.924121093750045,37.57050781249998],[12.871191406250006,37.57519531250005],[12.75732421875,37.56738281249997],[12.699023437500017,37.57182617187499],[12.640234375000034,37.594335937500034],[12.52675781250008,37.66953125],[12.454394531249989,37.773779296875006],[12.43554687499997,37.819775390624955],[12.486816406250028,37.93872070312503],[12.547656250000072,38.05292968750004],[12.601660156250063,38.0849609375],[12.664355468750045,38.10791015625006],[12.702343750000068,38.141699218750006],[12.734375,38.18305664062498],[12.850683593750006,38.063720703125],[12.902734375000023,38.03486328124998],[12.955468750000023,38.04130859374998],[13.049023437499983,38.08408203124998],[13.056835937500066,38.13090820312502],[13.159960937500045,38.19033203125005],[13.291113281250034,38.19145507812502],[13.351660156250004,38.180517578125006],[13.383496093750011,38.12680664062498],[13.43349609375008,38.110253906249994],[13.491308593750034,38.103125],[13.68154296875008,38.00073242187497],[13.73486328125,37.98403320312502],[13.788867187499989,37.981201171875],[13.936621093749977,38.02416992187503],[14.05,38.04052734375],[14.287695312500006,38.01684570312506],[14.416210937499983,38.04257812500006],[14.505957031250063,38.045507812500034],[14.636718750000055,38.085058593750006],[14.737207031250023,38.15078125],[14.789648437500036,38.1669921875],[14.845898437500038,38.17167968749998],[14.981933593750057,38.167578125000034],[15.11875,38.15273437500002],[15.176074218750072,38.16806640625003],[15.224023437500078,38.211035156250006],[15.279589843750017,38.230371093750016],[15.340722656250051,38.217333984375045],[15.498730468750011,38.290869140625],[15.568359375000057,38.29589843749997],[15.634667968750078,38.26757812499997],[15.57656250000005,38.220312500000034]]],[[[8.478906250000023,39.06752929687496],[8.421484375000034,38.968652343749994],[8.36093750000006,39.03867187500003],[8.358593750000011,39.09877929687502],[8.366796875,39.115917968749955],[8.440625,39.090625],[8.478906250000023,39.06752929687496]]],[[[13.938281250000074,40.70561523437499],[13.893652343750034,40.69697265625001],[13.867675781250055,40.70874023437502],[13.853515625000027,40.72407226562504],[13.871191406250063,40.76181640625],[13.962109375000038,40.73940429687505],[13.96083984375005,40.718164062499994],[13.938281250000074,40.70561523437499]]],[[[8.28603515625008,41.03984375],[8.252734375000045,40.994140624999964],[8.205664062500034,40.997460937500044],[8.224023437500051,41.03129882812502],[8.267382812499989,41.09912109375006],[8.320214843750023,41.121875],[8.34375,41.10161132812502],[8.318945312500034,41.06274414062503],[8.28603515625008,41.03984375]]],[[[9.632031250000011,40.88203124999998],[9.68203125000008,40.818115234375],[9.794335937500051,40.55620117187502],[9.805273437500063,40.49956054687504],[9.7828125,40.441503906250006],[9.754199218750045,40.400292968749966],[9.642968750000023,40.268408203125006],[9.659472656250017,40.15922851562498],[9.700781249999977,40.091796875],[9.706738281250038,40.01704101562495],[9.68603515625,39.92436523437499],[9.616992187500074,39.354394531249966],[9.58359375,39.253564453125016],[9.5625,39.16601562500005],[9.486328125,39.139550781249994],[9.388085937500051,39.16752929687499],[9.264160156250028,39.21679687499999],[9.206933593750021,39.21381835937501],[9.14931640625008,39.196972656249955],[9.101757812500068,39.211279296875034],[9.056347656250068,39.23916015625002],[9.02265625000004,39.04326171874999],[8.966601562500074,38.963720703125034],[8.881347656250028,38.91289062499999],[8.801171875000023,38.90966796875006],[8.718554687500074,38.926708984374955],[8.648535156250034,38.92656250000001],[8.59541015625004,38.96430664062498],[8.553320312499977,39.03032226562502],[8.48623046875008,39.110498046875016],[8.418164062500068,39.205712890624966],[8.410742187499975,39.29179687500002],[8.399121093750011,39.48159179687502],[8.418652343750011,39.523046875000034],[8.447070312500017,39.56279296874996],[8.461035156250006,39.64770507812503],[8.451171875000057,39.72167968749999],[8.471093750000023,39.74809570312496],[8.510742187500028,39.72167968749999],[8.540527343750057,39.731591796874994],[8.538671875000034,39.76967773437502],[8.547753906250023,39.83920898437506],[8.495898437500017,39.89746093750003],[8.4078125,39.91723632812497],[8.399316406250051,39.97817382812505],[8.40859375000008,40.03764648437498],[8.455078125000057,40.077587890624955],[8.470800781250063,40.130712890625034],[8.471289062500063,40.29267578124998],[8.409179687500028,40.35234375],[8.385351562500063,40.44267578124999],[8.353222656249983,40.50053710937496],[8.295507812500032,40.55864257812499],[8.230273437500074,40.60595703125003],[8.189941406250028,40.651611328125],[8.18085937500004,40.77104492187501],[8.203808593750011,40.87070312500006],[8.22421875,40.91333007812503],[8.245214843750006,40.90703124999999],[8.31015625,40.857519531250034],[8.36328125,40.846337890624994],[8.46845703125001,40.834326171875034],[8.571875,40.85019531250006],[8.698925781250068,40.895263671875],[8.821191406250023,40.94990234375004],[8.998144531250006,41.11035156250003],[9.107226562500045,41.142919921875006],[9.163085937500057,41.18515625],[9.182128906250027,41.242187499999964],[9.228417968750023,41.257080078125],[9.283007812500045,41.201660156249964],[9.350781250000011,41.19589843750006],[9.455175781250034,41.15014648437497],[9.500195312500068,41.10634765625002],[9.53876953125001,41.05366210937504],[9.57568359375,41.03051757812503],[9.615332031249977,41.01728515624998],[9.621191406250034,41.00488281250003],[9.589746093750023,40.99248046874998],[9.553710937500057,40.93212890625006],[9.574023437500017,40.91474609374998],[9.632031250000011,40.88203124999998]]],[[[10.395117187500034,42.85815429687503],[10.428320312500063,42.819189453125006],[10.432226562500063,42.796582031250004],[10.409960937500045,42.77099609375006],[10.419335937499994,42.71318359374999],[10.335644531250011,42.761132812499994],[10.208984375000057,42.736914062500034],[10.13125,42.742041015625006],[10.10976562500008,42.78505859374996],[10.127539062500063,42.81030273437497],[10.248242187500068,42.815771484375006],[10.285742187500063,42.82807617187504],[10.358984375000063,42.82231445312502],[10.395117187500034,42.85815429687503]]],[[[12.130761718750051,46.98476562499999],[12.154101562500017,46.93525390625004],[12.267968750000023,46.83588867187504],[12.330078125,46.75981445312499],[12.388281250000034,46.70263671874997],[12.479199218749983,46.672509765624966],[12.5986328125,46.654101562500045],[12.699804687500006,46.64746093750003],[12.805566406250051,46.62587890624996],[13.16875,46.572656249999966],[13.3515625,46.55791015624999],[13.490039062500045,46.55556640625002],[13.7,46.52026367187503],[13.679687500000057,46.46289062499997],[13.63710937500008,46.44853515624999],[13.563281250000044,46.41508789062502],[13.478515625,46.36918945312498],[13.399511718749977,46.31752929687502],[13.378222656250017,46.26162109375002],[13.39960937500001,46.224951171875006],[13.420996093750006,46.212304687499994],[13.449804687500034,46.223535156249994],[13.491796875000063,46.21660156249998],[13.544726562499987,46.19658203124999],[13.63251953125004,46.17705078125002],[13.634960937499983,46.15776367187498],[13.616601562500078,46.13310546875004],[13.54804687500004,46.08911132812503],[13.486425781250034,46.03955078124997],[13.480273437500017,46.009228515625004],[13.487695312500023,45.987109375000045],[13.509179687500051,45.973779296874994],[13.6005859375,45.97978515624996],[13.613964843750068,45.961669921875],[13.569628906250017,45.834130859374966],[13.58339843750005,45.81235351562506],[13.663476562500021,45.7919921875],[13.7216796875,45.761279296875045],[13.831152343750006,45.68041992187499],[13.874707031250066,45.61484375000006],[13.8447265625,45.592871093750006],[13.775976562500034,45.58198242187501],[13.71982421875006,45.58759765625001],[13.783300781250006,45.62724609375002],[13.62832031250005,45.77094726562498],[13.558203124999977,45.770703125],[13.465136718750045,45.70996093749997],[13.206347656250074,45.771386718749966],[13.15673828125,45.74658203124997],[13.1201171875,45.69790039062502],[13.0302734375,45.6375],[12.903027343750011,45.61079101562504],[12.761230468749972,45.54428710937497],[12.61171875000008,45.497216796874994],[12.497558593749998,45.46166992187503],[12.43212890625,45.467919921874966],[12.536132812500057,45.54492187500002],[12.491796875000063,45.546289062500016],[12.353808593750015,45.49199218749999],[12.27431640625008,45.44604492187503],[12.248828125000045,45.36884765625003],[12.225683593750034,45.24150390625001],[12.28632812500004,45.20771484374998],[12.39248046875008,45.03979492187506],[12.523437500000027,44.96796874999998],[12.49794921875008,44.89941406250006],[12.463574218750011,44.84521484375002],[12.384472656250068,44.798339843749964],[12.31904296875004,44.833105468750034],[12.278906250000034,44.832226562499955],[12.248339843750045,44.72250976562498],[12.304980468750017,44.42944335937506],[12.396289062500074,44.22387695312499],[12.486816406250028,44.13422851562503],[12.691113281250011,43.994726562500034],[12.907031250000017,43.92119140624999],[13.29531250000008,43.68608398437504],[13.508203125000023,43.61166992187498],[13.56416015625004,43.57128906250003],[13.693261718750051,43.38989257812499],[13.804687500000028,43.180371093749955],[13.924902343750004,42.85156250000003],[14.010449218750011,42.68955078125006],[14.182714843750032,42.50644531250006],[14.54072265625004,42.24428710937502],[14.86611328125008,42.05253906249995],[15.16875,41.93403320312498],[15.404980468749983,41.913232421874994],[15.964062500000038,41.939453125],[16.0615234375,41.928125],[16.164648437500034,41.896191406249976],[16.189160156250068,41.814013671875045],[16.15126953125008,41.75849609375001],[16.03369140625,41.700781250000055],[15.913769531250011,41.62084960937503],[15.900488281250034,41.51206054687498],[16.01259765625005,41.435400390625006],[16.551855468750063,41.232031250000034],[17.10341796875008,41.062158203124994],[17.275195312500074,40.975439453125006],[17.474218750000034,40.84057617187506],[17.954980468749994,40.655175781250016],[18.03613281250003,40.56494140625003],[18.328222656250006,40.370849609375],[18.460644531249983,40.221044921875034],[18.485839843750057,40.104833984375006],[18.42255859375004,39.986865234375045],[18.393457031250076,39.903613281250045],[18.34375,39.82138671874998],[18.219335937500034,39.85253906250002],[18.077929687500014,39.93696289062498],[17.865039062500074,40.28017578125002],[17.476171875000063,40.31494140625],[17.395800781250042,40.34023437499999],[17.257714843750048,40.399072265624994],[17.24941406250005,40.43789062499999],[17.21533203125003,40.48642578125003],[17.179980468750042,40.50278320312498],[17.03125,40.51347656250001],[16.92822265625,40.45805664062502],[16.80703125000008,40.32646484375002],[16.669628906250068,40.13720703125003],[16.52998046875004,39.85966796874996],[16.521875,39.74755859375002],[16.597753906249977,39.63891601562503],[16.824316406250063,39.578320312500004],[16.999218750000068,39.48159179687502],[17.114550781250017,39.38061523437497],[17.122949218750048,39.136572265625006],[17.174609375000017,38.998095703125045],[17.09853515625005,38.919335937499966],[16.951464843750017,38.93979492187506],[16.755468750000063,38.88969726562499],[16.61669921875003,38.80014648437503],[16.55898437500008,38.71479492187495],[16.57421875,38.493554687499994],[16.54560546875001,38.40908203125002],[16.28242187500004,38.249560546875045],[16.144140625000034,38.08637695312501],[16.10976562500005,38.01865234374998],[16.05683593750001,37.941845703124955],[15.724511718750078,37.93911132812502],[15.645800781250015,38.03422851562504],[15.64306640625,38.175390625000034],[15.7001953125,38.262304687500055],[15.822363281250032,38.302978515625],[15.904785156250027,38.483496093750006],[15.87890625,38.61391601562502],[15.926953125000011,38.67172851562498],[15.972363281250038,38.712597656249955],[16.065527343750006,38.736425781250006],[16.19677734375,38.759228515624955],[16.20996093750003,38.94111328124998],[16.10742187500003,39.023828125000016],[16.071484375000065,39.13945312499996],[16.02363281250001,39.35361328124998],[15.854394531250078,39.62651367187499],[15.763671875000055,39.870068359374955],[15.692773437499994,39.99018554687501],[15.58515625000001,40.05283203125006],[15.390917968750074,40.05214843750002],[15.294531250000064,40.07001953125001],[14.950878906250042,40.23901367187497],[14.926953125000038,40.26474609374998],[14.929101562500025,40.30957031250006],[14.986132812500017,40.377490234375045],[14.94765625000008,40.469335937500006],[14.90693359375004,40.556054687499994],[14.839550781250013,40.629980468750034],[14.76572265625006,40.66840820312498],[14.611230468750023,40.64477539062503],[14.556933593750074,40.62641601562504],[14.459375,40.632714843749994],[14.382714843750023,40.59985351562502],[14.339941406250004,40.59882812500001],[14.460546875000064,40.728710937500004],[14.428125,40.75932617187502],[14.308886718750074,40.81264648437505],[14.147167968750068,40.82070312499999],[14.102343749999989,40.827148437499964],[14.07587890625004,40.79394531250006],[14.044335937500078,40.81225585937506],[14.047656250000044,40.87031249999998],[13.859765625000051,41.129980468750034],[13.733398437500057,41.23564453124999],[13.669726562500074,41.254492187500006],[13.554785156250006,41.23217773437497],[13.361914062500063,41.27851562500001],[13.246875,41.28886718749999],[13.183398437500017,41.277685546875006],[13.088671875000072,41.24384765624995],[13.041015625000055,41.26621093749997],[13.024218750000015,41.30092773437505],[12.849218750000063,41.40874023437499],[12.630859374999972,41.469677734374955],[12.205664062500032,41.81264648437502],[12.075292968750032,41.94086914062504],[11.807031250000023,42.08203125000003],[11.637304687500063,42.287548828124955],[11.498437500000023,42.36293945312505],[11.29628906250005,42.423291015624976],[11.249707031250066,42.41572265624995],[11.188867187500023,42.39311523437499],[11.141210937499977,42.38989257812503],[11.103222656250066,42.41660156250006],[11.141796875000011,42.44409179687497],[11.184765625000068,42.45659179687502],[11.167773437500074,42.53515625000006],[10.937792968750017,42.738720703124955],[10.803125,42.80429687499998],[10.765136718750028,42.844677734374955],[10.737109374999989,42.89995117187502],[10.708398437500023,42.93632812499998],[10.644628906249977,42.95717773437505],[10.59023437499999,42.95361328125003],[10.51484375000001,42.96752929687503],[10.517285156250066,43.06513671875001],[10.532324218750032,43.14013671875003],[10.520800781250074,43.20380859375001],[10.447558593750074,43.371191406250006],[10.320507812500038,43.513085937499966],[10.245800781250011,43.85209960937502],[10.188085937500063,43.947509765625],[10.047656250000044,44.01997070312504],[9.73085937500008,44.10117187500006],[9.289355468750015,44.319238281249994],[9.195996093750011,44.32299804687502],[8.930371093750068,44.40776367187499],[8.765820312500038,44.42231445312501],[8.551953125000068,44.346142578124955],[8.292382812500023,44.13652343749996],[8.081640625,43.91894531250006],[8.004980468750006,43.87675781249998],[7.73330078125008,43.80258789062498],[7.4931640625,43.76713867187504],[7.490527343750017,43.82294921875004],[7.482031250000062,43.864892578124966],[7.522656250000068,43.91108398437495],[7.589648437500045,43.96542968750003],[7.651464843750034,44.03364257812498],[7.677148437500023,44.08315429687502],[7.665039062500028,44.11601562499996],[7.637207031250056,44.16484375],[7.599414062500074,44.16835937499996],[7.370898437500074,44.12739257812498],[7.318554687500068,44.13798828125001],[7.149414062500056,44.20170898437502],[6.967285156249999,44.280029296875],[6.900195312499989,44.33574218749996],[6.874804687500074,44.39204101562498],[6.893847656250045,44.42817382812498],[6.87861328125004,44.46328125000002],[6.842968750000068,44.51069335937498],[6.875195312500068,44.564550781250034],[6.931933593750074,44.631640625000045],[6.96035156250008,44.677148437499966],[7.007910156250006,44.68896484374999],[7.030664062500023,44.716699218750044],[6.99267578125,44.82729492187502],[6.972851562500068,44.84501953124999],[6.93984375000008,44.858740234375034],[6.889355468750011,44.86030273437498],[6.801074218750045,44.883154296875034],[6.738183593750023,44.92138671875],[6.724707031250034,44.972998046875034],[6.69140625,45.02260742187502],[6.634765625000028,45.06816406249995],[6.627734375000017,45.11796874999999],[6.692285156250022,45.14428710937503],[6.780371093750006,45.14531249999995],[6.842285156250028,45.135644531250044],[6.98125,45.21557617187497],[7.03242187500004,45.222607421874976],[7.078320312500039,45.23994140624998],[7.116796874999977,45.349023437499994],[7.14638671875005,45.381738281249994],[7.153417968749977,45.40092773437498],[7.126074218750006,45.423681640625006],[7.013671875000028,45.50048828125003],[6.962402343750057,45.58056640625],[6.881445312500006,45.67036132812498],[6.80625,45.71000976562499],[6.790917968750023,45.740869140624966],[6.789160156250034,45.78007812499996],[6.804492187500045,45.81455078125006],[6.940820312500023,45.86835937500001],[7.021093750000034,45.92578124999997],[7.055761718749976,45.90380859375003],[7.129003906249976,45.88041992187499],[7.327929687500017,45.912353515625],[7.451562500000051,45.94443359375006],[7.538574218750028,45.978173828124994],[7.592578125000016,45.97221679687502],[7.787890625000016,45.92182617187498],[7.85234375,45.947460937499955],[7.9931640625,46.01591796874996],[8.014257812500034,46.051904296875016],[8.125195312500068,46.16093750000002],[8.127246093750044,46.18759765625003],[8.081542968750057,46.25600585937502],[8.095703125000028,46.27104492187499],[8.231933593750057,46.34121093749996],[8.298535156250038,46.403417968750034],[8.370703125,46.44511718750001],[8.422558593749983,46.44604492187503],[8.436816406250045,46.43188476562497],[8.442968750000063,46.40278320312498],[8.438476562500028,46.28286132812499],[8.458398437500021,46.24589843750002],[8.565429687500057,46.159814453124966],[8.641699218750063,46.11079101562501],[8.818554687500011,46.07714843749999],[8.826757812500004,46.06103515625],[8.77802734375004,45.996191406250034],[8.88515625,45.91870117187506],[8.904296875,45.86196289062505],[8.953710937500034,45.83002929687501],[9.023730468750074,45.845703125],[9.046679687500045,45.87558593750006],[9.019140625000034,45.928125],[8.99892578125008,45.98310546875004],[9.003027343750034,46.01489257812503],[9.02236328125008,46.051464843750004],[9.07099609375004,46.102441406249994],[9.203417968750017,46.21923828125],[9.251074218750034,46.28676757812499],[9.259765625000028,46.39125976562505],[9.260156250000023,46.475195312500006],[9.304394531250068,46.49555664062498],[9.399316406250021,46.48066406249995],[9.427636718750023,46.48232421875002],[9.440625,46.43081054687502],[9.481054687499975,46.34877929687499],[9.528710937500021,46.306201171875045],[9.57958984375,46.29609375000001],[9.639453125000017,46.29589843749997],[9.78779296875004,46.34604492187498],[9.884472656250011,46.36777343750006],[9.939257812500074,46.36181640624999],[9.971679687500028,46.32768554687496],[10.041015625000028,46.23808593750002],[10.08056640625,46.22797851562501],[10.128320312500051,46.23823242187495],[10.14521484375004,46.25351562500006],[10.1298828125,46.28798828124996],[10.109667968750074,46.36284179687502],[10.081933593750023,46.420751953125006],[10.045605468750068,46.44790039062505],[10.038281250000011,46.483203125000045],[10.061230468750068,46.54677734375002],[10.087011718750063,46.59990234375002],[10.1375,46.614355468750034],[10.195507812500066,46.62109374999997],[10.272265625000072,46.564843749999966],[10.363085937500017,46.547070312499976],[10.4306640625,46.55004882812497],[10.442480468750006,46.582861328125006],[10.438281250000045,46.618847656249955],[10.39794921875,46.66503906250006],[10.406054687500045,46.73486328124997],[10.452832031249981,46.86494140625001],[10.47939453125008,46.85512695312505],[10.579785156250011,46.85371093750001],[10.689257812500017,46.84638671874995],[10.759765625,46.79331054687497],[10.828906250000045,46.775244140625034],[10.927343750000034,46.76948242187501],[10.993261718750032,46.777001953125016],[11.025097656250038,46.796972656250006],[11.063476562500057,46.85913085937497],[11.133886718750006,46.93618164062505],[11.244433593750045,46.975683593750006],[11.433203125000063,46.983056640624994],[11.52753906250001,46.99741210937498],[11.625488281250055,46.99658203125],[11.699414062500011,46.98466796874996],[11.775683593750017,46.986083984375],[11.969531250000074,47.03969726562499],[12.169433593750027,47.082128906250006],[12.19716796875008,47.075],[12.201269531250034,47.060888671875034],[12.165527343750028,47.028173828125034],[12.130761718750051,46.98476562499999]],[[12.396875,43.93457031250003],[12.426367187500063,43.89409179687496],[12.48525390625008,43.901416015625045],[12.514648437500028,43.95297851562506],[12.503710937500017,43.98974609375],[12.44111328125004,43.98242187500003],[12.396875,43.93457031250003]]]]}},{"type":"Feature","properties":{"scalerank":4,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"Jersey","adm0_a3":"JEY","geou_dif":0,"geounit":"Jersey","gu_a3":"JEY","su_dif":0,"subunit":"Jersey","su_a3":"JEY","brk_diff":0,"name":"Jersey","name_long":"Jersey","brk_a3":"JEY","brk_name":"Jersey","brk_group":"Channel Islands","abbrev":"Jey.","postal":"JE","formal_en":"Bailiwick of Jersey","formal_fr":null,"note_adm0":"U.K. crown dependency","note_brk":null,"name_sort":"Jersey","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":91626,"gdp_md_est":5100,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"JE","iso_a3":"JEY","iso_n3":"832","un_a3":"832","wb_a2":"JG","wb_a3":"CHI","woe_id":-99,"adm0_a3_is":"JEY","adm0_a3_us":"JEY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"JEY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-2.018652343749977,49.23125],[-2.009912109374994,49.180810546874994],[-2.053759765624989,49.169824218749994],[-2.091015624999983,49.187402343749994],[-2.165673828124994,49.187402343749994],[-2.23583984375,49.1763671875],[-2.220507812499989,49.266357421875],[-2.082226562499983,49.25537109375],[-2.018652343749977,49.23125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kosovo","sov_a3":"KOS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kosovo","adm0_a3":"KOS","geou_dif":0,"geounit":"Kosovo","gu_a3":"KOS","su_dif":0,"subunit":"Kosovo","su_a3":"KOS","brk_diff":1,"name":"Kosovo","name_long":"Kosovo","brk_a3":"B57","brk_name":"Kosovo","brk_group":null,"abbrev":"Kos.","postal":"KO","formal_en":"Republic of Kosovo","formal_fr":null,"note_adm0":null,"note_brk":"Self admin.; Claimed by Serbia","name_sort":"Kosovo","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":11,"pop_est":1804838,"gdp_md_est":5352,"pop_year":-99,"lastcensus":1981,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"KV","wb_a3":"KSV","woe_id":-99,"adm0_a3_is":"SRB","adm0_a3_us":"KOS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KOS.geojson"},"geometry":{"type":"Polygon","coordinates":[[[21.5625,42.247509765625],[21.560839843750017,42.24765625],[21.389550781250023,42.21982421875],[21.331738281250008,42.187158203124994],[21.297558593750008,42.130078125],[21.28662109375,42.100390625],[21.25634765625,42.099511718749994],[21.206054687499996,42.128955078124996],[21.142480468750023,42.175],[21.05976562500001,42.171289062499994],[20.778125,42.07104492187499],[20.750390625000023,42.018359375],[20.744140625,41.904296875],[20.725,41.87353515625],[20.694921875,41.853808593749996],[20.57851562500002,41.8662109375],[20.566210937500017,41.873681640624994],[20.581445312500023,41.91743164062499],[20.57539062500001,42.013085937499994],[20.522851562500023,42.17148437499999],[20.485449218750006,42.223388671875],[20.408300781250006,42.274951171874996],[20.348242187500006,42.3087890625],[20.240527343750017,42.33896484375],[20.18574218750001,42.42587890624999],[20.103515625,42.524658203125],[20.063964843749996,42.54726562499999],[20.0703125,42.557080078125],[20.089257812500023,42.63154296875],[20.065722656250017,42.685839843749996],[20.029492187500008,42.73203125],[20.054296875,42.760058593749996],[20.129980468750006,42.759765625],[20.19257812500001,42.754638671875],[20.215136718750017,42.798828125],[20.344335937500006,42.827929687499996],[20.468847656250006,42.85791015625],[20.48681640625,42.879052734374994],[20.458398437500023,42.924560546875],[20.47509765625,42.953027343749994],[20.6240234375,43.0341796875],[20.648535156250002,43.07094726562499],[20.65761718750002,43.099853515625],[20.637597656250023,43.13037109375],[20.609667968750014,43.17841796875],[20.623144531250002,43.198632812499994],[20.70058593750002,43.22636718749999],[20.76337890625001,43.25859375],[20.800585937500017,43.261083984375],[20.823828125,43.237939453124994],[20.823828125,43.21396484375],[20.84443359375001,43.1734375],[20.890722656250006,43.15166015624999],[20.96767578125002,43.116015625],[21.057031250000023,43.091699218749994],[21.127050781250006,43.043017578124996],[21.22265625,42.956201171874994],[21.237109375000017,42.913232421874994],[21.323144531250023,42.87470703124999],[21.40302734375001,42.83154296875],[21.390625,42.75141601562499],[21.6625,42.681494140625],[21.72382812500001,42.681982421875],[21.7529296875,42.669824218749994],[21.75214843750001,42.651513671874994],[21.73066406250001,42.595458984375],[21.619042968750023,42.423242187499994],[21.60986328125,42.38745117187499],[21.52998046875001,42.35],[21.518945312500023,42.328417968749996],[21.541601562500006,42.280810546874996],[21.5625,42.247509765625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Liechtenstein","sov_a3":"LIE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Liechtenstein","adm0_a3":"LIE","geou_dif":0,"geounit":"Liechtenstein","gu_a3":"LIE","su_dif":0,"subunit":"Liechtenstein","su_a3":"LIE","brk_diff":0,"name":"Liechtenstein","name_long":"Liechtenstein","brk_a3":"LIE","brk_name":"Liechtenstein","brk_group":null,"abbrev":"Liech.","postal":"FL","formal_en":"Principality of Liechtenstein","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Liechtenstein","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":2,"mapcolor13":9,"pop_est":34761,"gdp_md_est":4160,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"LI","iso_a3":"LIE","iso_n3":"438","un_a3":"438","wb_a2":"LI","wb_a3":"LIE","woe_id":-99,"adm0_a3_is":"LIE","adm0_a3_us":"LIE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":13,"long_len":13,"abbrev_len":6,"tiny":6,"homepart":1,"filename":"LIE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[9.580273437500011,47.05737304687499],[9.502343750000023,47.062744140625],[9.487695312500023,47.06225585937499],[9.4794921875,47.09750976562499],[9.484277343750023,47.17265625],[9.527539062500011,47.270751953125],[9.536816406250011,47.25463867187499],[9.542187500000011,47.234130859375],[9.551074218750017,47.212255859375],[9.555761718750006,47.185498046875],[9.571875,47.15791015625],[9.601171875,47.132080078125],[9.610546875000011,47.10712890625],[9.595703125,47.075830078124994],[9.580273437500011,47.05737304687499]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Lithuania","sov_a3":"LTU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lithuania","adm0_a3":"LTU","geou_dif":0,"geounit":"Lithuania","gu_a3":"LTU","su_dif":0,"subunit":"Lithuania","su_a3":"LTU","brk_diff":0,"name":"Lithuania","name_long":"Lithuania","brk_a3":"LTU","brk_name":"Lithuania","brk_group":null,"abbrev":"Lith.","postal":"LT","formal_en":"Republic of Lithuania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lithuania","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":3,"mapcolor13":9,"pop_est":3555179,"gdp_md_est":63330,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LT","iso_a3":"LTU","iso_n3":"440","un_a3":"440","wb_a2":"LT","wb_a3":"LTU","woe_id":-99,"adm0_a3_is":"LTU","adm0_a3_us":"LTU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"LTU.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[21.03173828125003,55.350488281249994],[20.957812500000074,55.27890625000006],[20.899804687500076,55.286669921875045],[21.01406250000008,55.40195312499997],[21.057617187500057,55.47680664062505],[21.08789062500003,55.58310546875003],[21.11484375,55.61650390624999],[21.11572265625,55.56816406250001],[21.10390625000008,55.48774414062498],[21.03173828125003,55.350488281249994]]],[[[24.943847656249968,56.32558593750005],[25.069921875,56.20039062500003],[25.206933593750023,56.17841796874998],[25.585742187500017,56.13017578125001],[25.663183593750063,56.104833984375006],[25.87636718750008,55.994335937499976],[26.00419921874999,55.94013671875004],[26.085546875000063,55.896875],[26.209570312500006,55.81210937500006],[26.28125,55.75043945312501],[26.40107421875004,55.703808593750004],[26.542871093750048,55.67241210937502],[26.59355468750007,55.66752929687501],[26.590820312500053,55.62265625],[26.566601562500008,55.546484375000034],[26.51923828125004,55.448144531249994],[26.469531250000045,55.371923828125006],[26.457617187500006,55.342480468749955],[26.49531250000004,55.318017578125016],[26.68125,55.30644531249999],[26.76015625000008,55.29335937499999],[26.775683593750045,55.27309570312502],[26.734375,55.24677734374998],[26.675,55.22490234374999],[26.648437500000053,55.204199218750034],[26.601171875000034,55.130175781250045],[26.29179687500007,55.13959960937501],[26.250781250000045,55.12451171875006],[26.23125,55.09013671874996],[26.21582031250003,55.050390625000034],[26.175195312500023,55.003271484375034],[26.092968750000068,54.96230468750005],[25.964453124999977,54.947167968749966],[25.85927734375005,54.91928710937497],[25.780859375000063,54.83325195312502],[25.722460937500074,54.71787109374998],[25.723925781250017,54.63603515625002],[25.731640625000068,54.59038085937502],[25.72480468750001,54.564257812500045],[25.68515625,54.53579101562502],[25.62031250000004,54.460400390625004],[25.56757812500004,54.377050781250006],[25.54736328125,54.33183593750001],[25.55751953125005,54.310693359374994],[25.616894531250068,54.31010742187504],[25.702539062499994,54.29296875],[25.748144531250063,54.25966796874996],[25.76503906250005,54.22119140625006],[25.765234374999977,54.179785156250034],[25.74921875000001,54.15698242187503],[25.68056640625005,54.140478515625034],[25.573046875000014,54.139892578125],[25.510351562500034,54.15961914062501],[25.497363281250045,54.17524414062501],[25.52734375000003,54.21513671874996],[25.505664062500045,54.26494140624999],[25.461132812500036,54.29277343749996],[25.370605468750057,54.25122070312502],[25.28369140625003,54.25126953125004],[25.179492187500014,54.214257812499966],[25.111425781250002,54.15493164062505],[25.04609375000004,54.13305664062503],[24.869531250000023,54.14516601562502],[24.82568359374997,54.118994140625006],[24.78925781250001,53.99824218750001],[24.768164062499977,53.97465820312499],[24.620703125000063,53.97983398437498],[24.47851562500003,53.93183593749998],[24.31796875,53.892968749999966],[24.236621093750042,53.91997070312495],[24.19130859375005,53.95043945312503],[24.103906250000023,53.94501953125001],[24.00849609375004,53.93164062500002],[23.944433593750034,53.93896484375],[23.872558593750057,53.935693359374966],[23.73369140624999,53.912255859374994],[23.559082031250057,53.91982421875002],[23.484667968750074,53.939794921875006],[23.477636718750063,53.95893554687498],[23.483007812500006,54.00595703124998],[23.481347656250023,54.07900390625002],[23.453613281250053,54.14345703125002],[23.370117187499996,54.20048828124999],[23.282324218750063,54.24033203125003],[23.17031250000008,54.28144531249998],[23.0875,54.299462890624994],[23.042187500000068,54.30419921875],[23.031933593750036,54.32788085937503],[23.01552734375005,54.348339843750004],[22.976757812500068,54.36635742187505],[22.89394531250008,54.39052734374999],[22.82373046874997,54.39580078124998],[22.766210937499977,54.356787109375034],[22.724316406250068,54.405615234375034],[22.679882812500068,54.493017578125006],[22.684472656250023,54.56293945312504],[22.70966796875001,54.63261718750002],[22.83125,54.838476562500034],[22.824707031249996,54.87128906249998],[22.736523437500068,54.928857421874966],[22.627441406250057,54.970703124999964],[22.56728515625005,55.05913085937496],[22.346386718750068,55.06425781250002],[22.137890625000068,55.059375],[22.072363281250034,55.06367187499998],[21.873925781250023,55.100732421874994],[21.682714843750063,55.160351562499976],[21.5546875,55.1953125],[21.447070312500017,55.23442382812496],[21.389257812500034,55.275537109374994],[21.297558593750008,55.264453125000045],[21.235742187500023,55.26411132812498],[21.236328125000057,55.27119140624998],[21.201074218750076,55.343798828125045],[21.237890625000034,55.45502929687495],[21.17109375000001,55.61772460937499],[21.061914062500048,55.81342773437498],[21.053808593750006,56.02294921875003],[21.04609375000004,56.07006835937503],[21.314648437500036,56.18813476562502],[21.65351562500004,56.314550781250006],[21.730566406250034,56.325976562500045],[22.04287109375005,56.40078125],[22.084570312500034,56.40673828125006],[22.365917968750068,56.39287109374999],[22.586914062500057,56.375097656250006],[22.77324218749999,56.377294921875006],[22.875585937500063,56.39643554687501],[22.968261718750025,56.38041992187502],[23.042968750000053,56.324072265625006],[23.119824218749983,56.330664062500006],[23.195898437500034,56.36713867187498],[23.61269531250005,56.333837890625034],[23.70673828125001,56.33461914062502],[23.81269531250001,56.329248046874994],[24.00820312500005,56.295263671875006],[24.120703125000063,56.26425781249998],[24.367871093750068,56.28300781249999],[24.473632812500025,56.28408203125002],[24.52900390625001,56.29628906250002],[24.699511718750045,56.381298828125004],[24.773242187500045,56.39589843749996],[24.841015624999983,56.41118164062498],[24.903027343750008,56.39819335937499],[24.943847656249968,56.32558593750005]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Latvia","sov_a3":"LVA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Latvia","adm0_a3":"LVA","geou_dif":0,"geounit":"Latvia","gu_a3":"LVA","su_dif":0,"subunit":"Latvia","su_a3":"LVA","brk_diff":0,"name":"Latvia","name_long":"Latvia","brk_a3":"LVA","brk_name":"Latvia","brk_group":null,"abbrev":"Lat.","postal":"LV","formal_en":"Republic of Latvia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Latvia","name_alt":null,"mapcolor7":4,"mapcolor8":7,"mapcolor9":6,"mapcolor13":13,"pop_est":2231503,"gdp_md_est":38860,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LV","iso_a3":"LVA","iso_n3":"428","un_a3":"428","wb_a2":"LV","wb_a3":"LVA","woe_id":-99,"adm0_a3_is":"LVA","adm0_a3_us":"LVA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"LVA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[27.351953125000023,57.528125],[27.4697265625,57.524023437500006],[27.511132812500023,57.508154296875],[27.538671875,57.42978515624999],[27.672753906250023,57.36811523437499],[27.796875,57.31694335937499],[27.828613281249996,57.293310546875],[27.838281250000023,57.247705078124994],[27.830273437500008,57.194482421874994],[27.814550781250002,57.16689453125],[27.762792968750006,57.135107421875],[27.717382812500006,57.054638671875],[27.71113281250001,56.97807617187499],[27.639453125000017,56.84565429687499],[27.655664062500023,56.843212890625],[27.806054687500023,56.86708984375],[27.8486328125,56.853417968749994],[27.88154296875001,56.82416992187499],[27.89208984375,56.741064453125],[27.94140625,56.7037109375],[27.991601562500023,56.6453125],[28.00751953125001,56.599853515625],[28.103125,56.545703125],[28.110839843749996,56.510693359375],[28.169238281250014,56.386865234375],[28.191699218750017,56.315576171875],[28.20205078125002,56.260400390624994],[28.17333984375,56.190332031249994],[28.14794921875,56.142919921875],[28.11787109375001,56.145800781249996],[28.032031250000017,56.13330078125],[27.896289062500017,56.07617187499999],[27.694238281250023,55.941552734374994],[27.642285156250008,55.91171875],[27.589453125,55.8091796875],[27.576757812500006,55.798779296875],[27.45917968750001,55.803515625],[27.427148437500023,55.805957031249996],[27.309179687500006,55.80390625],[27.052539062500017,55.83056640624999],[26.953027343750023,55.81293945312499],[26.82246093750001,55.709228515625],[26.771875,55.693994140625],[26.620214843750006,55.679638671875],[26.593554687500017,55.667529296874996],[26.54287109375002,55.672412109374996],[26.40107421875001,55.70380859375],[26.28125,55.750439453125],[26.209570312500006,55.812109375],[26.085546875,55.896875],[26.004199218750017,55.94013671874999],[25.876367187500023,55.9943359375],[25.663183593750002,56.104833984375],[25.585742187500017,56.130175781249996],[25.206933593750023,56.17841796875],[25.069921875,56.200390625],[24.943847656249996,56.325585937499994],[24.903027343750008,56.39819335937499],[24.841015625,56.41118164062499],[24.773242187500014,56.3958984375],[24.699511718750017,56.381298828125],[24.52900390625001,56.2962890625],[24.473632812499996,56.28408203125],[24.36787109375001,56.283007812499996],[24.120703125,56.26425781249999],[24.008203125000023,56.29526367187499],[23.81269531250001,56.329248046875],[23.70673828125001,56.334619140625],[23.612695312500023,56.333837890625],[23.195898437500006,56.36713867187499],[23.11982421875001,56.3306640625],[23.04296875,56.324072265625],[22.96826171875,56.380419921874996],[22.875585937500006,56.39643554687499],[22.773242187500017,56.377294921875],[22.5869140625,56.37509765625],[22.36591796875001,56.39287109374999],[22.084570312500006,56.40673828125],[22.042871093750023,56.40078125],[21.730566406250006,56.325976562499996],[21.65351562500001,56.31455078125],[21.314648437500008,56.188134765625],[21.04609375000001,56.070068359375],[21.014941406250017,56.258935546875],[21.03144531250001,56.636572265625],[21.071289062499996,56.82373046875],[21.257421875,56.932763671875],[21.35078125000001,57.01767578125],[21.405078125000017,57.131005859375],[21.421484375,57.23583984375],[21.45917968750001,57.3224609375],[21.72871093750001,57.57099609374999],[21.9423828125,57.59785156249999],[22.2314453125,57.666796875],[22.55458984375002,57.724267578124994],[22.616992187500017,57.651171875],[22.64863281250001,57.595361328124994],[23.03779296875001,57.39208984374999],[23.136816406250006,57.323828125],[23.28730468750001,57.08974609375],[23.647753906250017,56.97104492187499],[23.93115234375,57.00849609375],[24.054296875,57.06611328125],[24.28125,57.172314453125],[24.382617187500017,57.250048828124996],[24.403222656250023,57.325],[24.36298828125001,57.64531249999999],[24.301562500000017,57.784130859375],[24.322558593750017,57.87060546874999],[24.3625,57.86616210937499],[24.458886718750023,57.907861328125],[24.775781250000023,57.98525390625],[24.83906250000001,57.988720703125004],[24.911328125,58.00458984375],[25.11103515625001,58.063427734375004],[25.175195312500023,58.032128906249994],[25.22871093750001,57.99658203124999],[25.258300781249996,57.996142578125],[25.27265625000001,58.009375],[25.268652343750006,58.0322265625],[25.282617187500023,58.048486328124994],[25.34003906250001,58.039453125],[25.5712890625,57.942773437499994],[25.66015625,57.920166015625],[25.72089843750001,57.913818359375],[25.79375,57.8685546875],[25.99111328125002,57.838183593749996],[26.015234375,57.814746093749996],[26.030371093750006,57.78554687499999],[26.21503906250001,57.662744140625],[26.29804687500001,57.60107421875],[26.46210937500001,57.54448242187499],[26.532617187500023,57.531005859375],[26.819726562500023,57.588720703125],[26.89980468750002,57.608789062499994],[26.96601562500001,57.60913085937499],[27.03339843750001,57.578759765625],[27.187109375,57.538330078125],[27.326562500000023,57.52548828124999],[27.351953125000023,57.528125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Luxembourg","sov_a3":"LUX","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Luxembourg","adm0_a3":"LUX","geou_dif":0,"geounit":"Luxembourg","gu_a3":"LUX","su_dif":0,"subunit":"Luxembourg","su_a3":"LUX","brk_diff":0,"name":"Luxembourg","name_long":"Luxembourg","brk_a3":"LUX","brk_name":"Luxembourg","brk_group":null,"abbrev":"Lux.","postal":"L","formal_en":"Grand Duchy of Luxembourg","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Luxembourg","name_alt":null,"mapcolor7":1,"mapcolor8":7,"mapcolor9":3,"mapcolor13":7,"pop_est":491775,"gdp_md_est":39370,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"LU","iso_a3":"LUX","iso_n3":"442","un_a3":"442","wb_a2":"LU","wb_a3":"LUX","woe_id":-99,"adm0_a3_is":"LUX","adm0_a3_us":"LUX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"LUX.geojson"},"geometry":{"type":"Polygon","coordinates":[[[6.116503906250017,50.120996093749994],[6.108300781250023,50.09423828125],[6.109765625000023,50.034375],[6.138183593749999,49.97431640624999],[6.204882812500017,49.91513671874999],[6.256054687500011,49.87216796874999],[6.324609375000023,49.837890625],[6.44091796875,49.805322265624994],[6.4873046875,49.79848632812499],[6.49375,49.75439453125],[6.484765625000023,49.7078125],[6.444628906250017,49.68203125],[6.40673828125,49.644970703125],[6.378320312500023,49.599609375],[6.348437500000017,49.5126953125],[6.344335937500005,49.452734375],[6.27734375,49.47753906249999],[6.2421875,49.4943359375],[6.181054687500023,49.498925781249994],[6.119921875000016,49.485205078125],[6.074121093750023,49.45463867187499],[6.011425781250011,49.44545898437499],[5.95947265625,49.45463867187499],[5.928906250000011,49.47753906249999],[5.9013671875,49.48974609375],[5.82343750000001,49.505078125],[5.78974609375001,49.53828125],[5.8154296875,49.55380859375],[5.837597656250011,49.57832031249999],[5.856542968750006,49.61284179687499],[5.88037109375,49.644775390625],[5.8037109375,49.732177734375],[5.787988281250023,49.75888671875],[5.725,49.80830078125],[5.725781250000011,49.833349609375],[5.740820312500006,49.857177734375],[5.735253906250023,49.875634765624994],[5.744042968750023,49.91962890625],[5.7880859375,49.961230468749996],[5.817382812499999,50.0126953125],[5.866894531250011,50.0828125],[5.976269531250011,50.1671875],[6.054785156250006,50.154296875],[6.089062500000011,50.154589843749996],[6.110058593750011,50.12377929687499],[6.116503906250017,50.120996093749994]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Monaco","sov_a3":"MCO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Monaco","adm0_a3":"MCO","geou_dif":0,"geounit":"Monaco","gu_a3":"MCO","su_dif":0,"subunit":"Monaco","su_a3":"MCO","brk_diff":0,"name":"Monaco","name_long":"Monaco","brk_a3":"MCO","brk_name":"Monaco","brk_group":null,"abbrev":"Mco.","postal":"MC","formal_en":"Principality of Monaco","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Monaco","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":12,"pop_est":32965,"gdp_md_est":976.3,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"MC","iso_a3":"MCO","iso_n3":"492","un_a3":"492","wb_a2":"MC","wb_a3":"MCO","woe_id":-99,"adm0_a3_is":"MCO","adm0_a3_us":"MCO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"MCO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[7.43867187500001,43.750439453125],[7.377734375000018,43.731738281249996],[7.380078125000012,43.753222656249996],[7.395019531249999,43.76533203125],[7.414453125000023,43.770898437499994],[7.436914062500023,43.761474609375],[7.43867187500001,43.750439453125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Moldova","sov_a3":"MDA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Moldova","adm0_a3":"MDA","geou_dif":0,"geounit":"Moldova","gu_a3":"MDA","su_dif":0,"subunit":"Moldova","su_a3":"MDA","brk_diff":0,"name":"Moldova","name_long":"Moldova","brk_a3":"MDA","brk_name":"Moldova","brk_group":null,"abbrev":"Mda.","postal":"MD","formal_en":"Republic of Moldova","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Moldova","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":4,"mapcolor13":12,"pop_est":4320748,"gdp_md_est":10670,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MD","iso_a3":"MDA","iso_n3":"498","un_a3":"498","wb_a2":"MD","wb_a3":"MDA","woe_id":-99,"adm0_a3_is":"MDA","adm0_a3_us":"MDA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MDA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.2125,45.450439453125],[28.1625,45.51376953124999],[28.111914062500002,45.569140625],[28.074707031249996,45.598974609375],[28.09033203125,45.61274414062499],[28.130859375,45.62827148437499],[28.159765625,45.647119140624994],[28.15625,45.7130859375],[28.13496093750001,45.788867187499996],[28.115527343750014,45.825537109375],[28.113574218750014,45.883056640625],[28.099707031250006,45.972607421875],[28.119140625,46.138671875],[28.199609375000023,46.347558593749994],[28.24433593750001,46.45126953125],[28.22265625,46.50805664062499],[28.23945312500001,46.6408203125],[28.2046875,46.70639648437499],[28.15,46.79208984375],[28.07177734375,46.97841796874999],[27.97421875,47.043212890625],[27.853808593750017,47.114501953125],[27.80234375,47.16831054687499],[27.76796875000002,47.227587890624996],[27.696191406250023,47.286425781249996],[27.614062500000017,47.34052734375],[27.51582031250001,47.475634765624996],[27.46484375,47.536669921874996],[27.44921875,47.553125],[27.336914062499996,47.63974609374999],[27.277929687500002,47.71796875],[27.248144531250006,47.7822265625],[27.230859375000023,47.841748046875],[27.15205078125001,47.959277343749996],[27.080371093750017,48.04765625],[27.01220703125,48.110498046874994],[26.980761718750017,48.155029296875],[26.900976562500006,48.2111328125],[26.78730468750001,48.255810546875],[26.71376953125002,48.263476562499996],[26.618945312500014,48.25986328124999],[26.640429687500014,48.294140625],[26.847070312500023,48.387158203125],[26.90058593750001,48.37192382812499],[27.00849609375001,48.36826171875],[27.228515625,48.371435546875],[27.336914062499996,48.43271484375],[27.40380859375,48.415625],[27.458398437500023,48.44306640624999],[27.549218750000023,48.477734375],[27.56220703125001,48.47041015625],[27.57373046875,48.46489257812499],[27.714453125,48.449511718749996],[27.82001953125001,48.416259765625],[27.890625,48.36523437499999],[27.963378906249996,48.333544921874996],[28.038476562500023,48.3212890625],[28.080078125,48.29580078124999],[28.088476562500002,48.25703125],[28.158789062500002,48.23798828124999],[28.291015625,48.238574218749996],[28.34716796875,48.213037109374994],[28.326953125000017,48.161425781249996],[28.34052734375001,48.144433593749994],[28.3875,48.162109375],[28.42304687500001,48.146875],[28.441992187500006,48.10869140624999],[28.46308593750001,48.09052734375],[28.53046875000001,48.15029296874999],[28.601660156250002,48.144384765625],[28.773828125000023,48.119580078125],[28.865820312500002,47.995654296874996],[28.923144531250017,47.951123046875],[28.973339843750008,47.933007812499994],[29.036914062500017,47.95234375],[29.09296875000001,47.975439453125],[29.125390625000023,47.96455078125],[29.19482421875,47.882421875],[29.211132812500015,47.775],[29.210742187500017,47.73154296875],[29.186035156250004,47.65859375],[29.150878906249996,47.580859375],[29.122949218750023,47.53037109375],[29.134863281250006,47.489697265625],[29.159765625,47.4556640625],[29.200585937500023,47.444482421874994],[29.333789062500014,47.375732421875],[29.383398437500002,47.328027343749994],[29.455664062500002,47.292626953124994],[29.510644531250023,47.29072265625],[29.539160156250002,47.27099609375],[29.549316406249996,47.246826171875],[29.541796875000017,47.185546875],[29.51093750000001,47.12802734375],[29.51503906250002,47.091113281249996],[29.563476562499996,47.047509765624994],[29.568652343750017,46.99672851562499],[29.571972656250008,46.964013671874994],[29.597753906250006,46.938818359375],[29.7197265625,46.88291015624999],[29.87783203125002,46.82890625],[29.918066406250006,46.782421875],[29.942480468750006,46.723779296874994],[29.93476562500001,46.625],[29.924316406249996,46.538867187499996],[30.13105468750001,46.423095703125],[30.107519531250002,46.4015625],[30.075683593750004,46.377832031249994],[29.878027343750006,46.360205078125],[29.837890625,46.35053710937499],[29.751953125,46.437792968749996],[29.706835937500017,46.44873046875],[29.664550781249996,46.416748046875],[29.614941406250008,46.39882812499999],[29.555078125000026,46.407763671874996],[29.491015625000014,46.43466796875],[29.458789062500017,46.45375976562499],[29.4328125,46.455957031249994],[29.392871093750017,46.436914062499994],[29.33955078125001,46.445068359375],[29.304882812500008,46.466601562499996],[29.254589843750008,46.392626953124996],[29.223828125,46.376953125],[29.20458984375,46.379345703125],[29.20078125,46.50498046875],[29.186230468750008,46.523974609374996],[29.146289062500017,46.526904296874996],[29.049902343750006,46.497021484375],[28.958398437500023,46.45849609375],[28.92744140625001,46.424121093749996],[28.930566406250023,46.362255859375],[28.94375,46.288427734375],[29.00625,46.17646484374999],[28.971875,46.12763671875],[28.94775390625,46.049951171874994],[28.849511718750023,45.978662109374994],[28.73876953125,45.937158203124994],[28.729296875000014,45.85200195312499],[28.667578125,45.79384765624999],[28.562304687500017,45.735791015625],[28.491601562500023,45.665771484375],[28.50947265625001,45.617822265624994],[28.513769531250002,45.572412109374994],[28.501757812500017,45.54155273437499],[28.4990234375,45.517724609374994],[28.47138671875001,45.507177734375],[28.310351562500014,45.49858398437499],[28.26484375000001,45.48388671875],[28.2125,45.450439453125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Macedonia","sov_a3":"MKD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Macedonia","adm0_a3":"MKD","geou_dif":0,"geounit":"Macedonia","gu_a3":"MKD","su_dif":0,"subunit":"Macedonia","su_a3":"MKD","brk_diff":0,"name":"Macedonia","name_long":"Macedonia","brk_a3":"MKD","brk_name":"Macedonia","brk_group":null,"abbrev":"Mkd.","postal":"MK","formal_en":"Former Yugoslav Republic of Macedonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Macedonia, FYR","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":2066718,"gdp_md_est":18780,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MK","iso_a3":"MKD","iso_n3":"807","un_a3":"807","wb_a2":"MK","wb_a3":"MKD","woe_id":-99,"adm0_a3_is":"MKD","adm0_a3_us":"MKD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MKD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.344042968750014,42.31396484375],[22.49824218750001,42.165087890624996],[22.582714843750008,42.104833984375],[22.68232421875001,42.059130859374996],[22.79609375000001,42.025683593749996],[22.83681640625002,41.993603515625],[22.9091796875,41.835205078125],[22.943945312500006,41.77509765624999],[22.991992187500014,41.757177734375],[23.00361328125001,41.73984375],[23.005664062500017,41.71694335937499],[22.951464843750014,41.60561523437499],[22.9296875,41.356103515624994],[22.916015625,41.336279296875],[22.859277343750023,41.337353515625],[22.783886718750008,41.331982421875],[22.75507812500001,41.312744140625],[22.72480468750001,41.178515625],[22.603613281250006,41.14018554687499],[22.493554687500023,41.118505859375],[22.400781250000023,41.123388671875],[22.237695312500023,41.155175781249994],[22.18447265625002,41.158642578125],[22.13886718750001,41.14052734374999],[21.99335937500001,41.13095703125],[21.929492187500017,41.10742187499999],[21.77949218750001,40.950439453125],[21.627539062500006,40.896337890625],[21.57578125,40.868945312499996],[21.45966796875001,40.903613281249996],[21.404101562500017,40.907177734375],[21.32373046875,40.867138671875],[21.147558593750006,40.863134765625],[21.1,40.85615234375],[20.964257812500023,40.849902343749996],[20.95859375,40.871533203125],[20.93349609375002,40.903125],[20.870214843750006,40.917919921875],[20.740820312500006,40.9052734375],[20.709277343750017,40.928369140624994],[20.656054687500017,41.061669921874994],[20.61445312500001,41.083056640624996],[20.56787109375,41.12783203124999],[20.48896484375001,41.272607421874994],[20.487011718750008,41.336083984374994],[20.49238281250001,41.39140624999999],[20.448632812500023,41.521289062499996],[20.4755859375,41.554101562499994],[20.516210937500002,41.574755859374996],[20.5166015625,41.62705078125],[20.505175781250014,41.706494140625],[20.553125,41.862353515624996],[20.566210937500017,41.873681640624994],[20.57851562500002,41.8662109375],[20.694921875,41.853808593749996],[20.725,41.87353515625],[20.744140625,41.904296875],[20.750390625000023,42.018359375],[20.778125,42.07104492187499],[21.05976562500001,42.171289062499994],[21.142480468750023,42.175],[21.206054687499996,42.128955078124996],[21.25634765625,42.099511718749994],[21.28662109375,42.100390625],[21.297558593750008,42.130078125],[21.331738281250008,42.187158203124994],[21.389550781250023,42.21982421875],[21.560839843750017,42.24765625],[21.5625,42.247509765625],[21.618261718750006,42.242138671875],[21.7392578125,42.267724609374994],[21.81464843750001,42.303125],[21.85302734375,42.308398437499996],[21.904101562500017,42.322070312499996],[21.9775390625,42.320068359375],[22.052050781250017,42.30463867187499],[22.14667968750001,42.325],[22.23974609375,42.358154296875],[22.277050781250008,42.349853515625],[22.3173828125,42.321728515625],[22.344042968750014,42.31396484375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Netherlands","adm0_a3":"NLD","geou_dif":0,"geounit":"Netherlands","gu_a3":"NLD","su_dif":0,"subunit":"Netherlands","su_a3":"NLD","brk_diff":0,"name":"Netherlands","name_long":"Netherlands","brk_a3":"NLD","brk_name":"Netherlands","brk_group":null,"abbrev":"Neth.","postal":"NL","formal_en":"Kingdom of the Netherlands","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Netherlands","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":16715999,"gdp_md_est":672000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"NL","iso_a3":"NLD","iso_n3":"528","un_a3":"528","wb_a2":"NL","wb_a3":"NLD","woe_id":-99,"adm0_a3_is":"NLD","adm0_a3_us":"NLD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"NLD.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.205810546875,12.144580078124989],[-68.25434570312495,12.032080078124977],[-68.28222656249994,12.082275390625],[-68.287255859375,12.171728515625006],[-68.30712890624994,12.20673828125004],[-68.34843749999993,12.228076171875031],[-68.37109375000003,12.257519531249997],[-68.36923828125,12.301953124999983],[-68.21948242187494,12.23125],[-68.205810546875,12.144580078124989]]],[[[-62.9375,17.49565429687499],[-62.96171875,17.475048828124983],[-62.983105468749955,17.476904296875006],[-62.99716796874998,17.496826171875057],[-62.999609375000034,17.530371093750063],[-62.97934570312497,17.521191406249955],[-62.97177734374995,17.516064453124983],[-62.9654296875,17.50927734375003],[-62.9375,17.49565429687499]]],[[[-63.232666015625,17.623144531250034],[-63.24160156249994,17.61958007812501],[-63.254492187500006,17.628662109375],[-63.252148437499955,17.645263671875],[-63.241650390624955,17.65180664062501],[-63.233496093749984,17.647216796875057],[-63.22690429687498,17.634130859375063],[-63.232666015625,17.623144531250034]]],[[[4.226171875000034,51.38647460937503],[4.211425781250057,51.34873046874998],[4.17255859375004,51.30708007812501],[4.040039062500057,51.24707031250006],[3.902050781250011,51.207666015625016],[3.83076171875004,51.212597656249955],[3.78193359375004,51.23320312499998],[3.755664062500017,51.25483398437504],[3.681835937500068,51.27568359375002],[3.580273437499983,51.28618164062501],[3.51708984375,51.26362304687495],[3.471972656250045,51.242236328125045],[3.43251953125008,51.24575195312505],[3.40283203125,51.26362304687495],[3.380078125000068,51.29111328125006],[3.35009765625,51.37768554687503],[3.425781250000057,51.393505859374955],[3.589453125,51.3994140625],[3.716503906250039,51.36914062500006],[3.883398437500005,51.35449218749999],[4.011035156249989,51.39594726562501],[4.11152343750004,51.36064453125002],[4.226171875000034,51.38647460937503]]],[[[3.94912109375008,51.73945312500001],[4.04677734375008,51.68491210937498],[4.067578125000068,51.66748046875],[4.07509765625008,51.648779296875006],[3.950976562500017,51.627050781250006],[3.81904296875004,51.693994140624966],[3.731835937500052,51.67822265625005],[3.699023437500017,51.70991210937501],[3.698535156250017,51.729687499999955],[3.789062499999972,51.746435546875006],[3.94912109375008,51.73945312500001]]],[[[4.886132812500023,53.07070312500005],[4.787109375,52.99980468749998],[4.726757812500068,53.019628906250034],[4.70917968750004,53.036035156249994],[4.739843750000063,53.091308593749964],[4.886425781249983,53.18330078124998],[4.886132812500023,53.07070312500005]]],[[[5.10859375000004,53.308007812499994],[4.923730468750051,53.23457031250004],[4.907910156250011,53.24624023437502],[5.02705078125004,53.310205078124994],[5.10859375000004,53.308007812499994]]],[[[4.226171875000034,51.38647460937503],[4.13886718750001,51.401513671874994],[4.006542968750067,51.443212890625034],[3.821875,51.409375],[3.693554687500068,51.44990234374998],[3.5869140625,51.45390624999999],[3.520507812499972,51.486181640625006],[3.448925781250068,51.54077148437503],[3.499609374999977,51.57666015625006],[3.548632812500017,51.58911132812499],[3.743945312500017,51.596044921875006],[3.886035156250017,51.57421875],[4.141308593750068,51.45576171875001],[4.205761718750068,51.45668945312502],[4.27412109375004,51.47163085937498],[4.239355468750063,51.50390624999997],[4.175488281250011,51.519287109375],[4.080468750000023,51.551123046875],[4.004785156250051,51.595849609374966],[4.182617187500057,51.61030273437498],[4.158007812500017,51.633447265624994],[4.134570312500017,51.67290039062502],[3.946875,51.810546875],[3.978906250000023,51.84780273437505],[4.02607421875004,51.92773437499999],[4.084863281250023,51.99409179687501],[4.13173828125008,52.01191406249998],[4.208789062500045,52.05898437499999],[4.376269531250074,52.19682617187502],[4.482812500000022,52.30917968749997],[4.562109375,52.44257812499998],[4.678320312500063,52.80976562500001],[4.712695312500045,52.87211914062502],[4.76875,52.941308593749966],[4.839062500000011,52.92827148437498],[4.887988281250045,52.90834960937502],[5.061230468750068,52.96064453125001],[5.358398437500056,53.09648437499996],[5.44599609375004,53.21406250000004],[5.532031250000074,53.268701171874966],[5.873535156249999,53.375195312500004],[6.062207031250068,53.407080078125006],[6.35322265625004,53.41528320312499],[6.563574218749977,53.434277343749955],[6.816210937500045,53.44116210937502],[6.912402343749989,53.375390625000044],[6.96816406250008,53.32729492187502],[7.05800781250008,53.30058593749999],[7.197265625000028,53.28227539062499],[7.188964843750028,53.187207031249976],[7.189941406250057,52.99951171875003],[7.179492187500045,52.966210937499994],[7.117089843750051,52.88701171875002],[7.050878906250063,52.74477539062499],[7.033007812500045,52.65136718749997],[7.013183593750028,52.63354492187497],[6.74843750000008,52.63408203125002],[6.710742187500045,52.617871093749976],[6.705371093750016,52.59765625000006],[6.71875,52.573583984375034],[6.712402343750028,52.549658203125034],[6.69160156250004,52.530175781249966],[6.702929687500045,52.49921874999998],[6.748828125000074,52.464013671874994],[6.832519531249971,52.442285156250016],[6.92207031250001,52.440283203125034],[6.96816406250008,52.44409179687502],[7.001855468750022,52.41899414062495],[7.035156250000057,52.38022460937498],[7.032617187500079,52.33149414062501],[7.019628906250006,52.26601562499999],[6.977246093750068,52.20551757812501],[6.855078125000034,52.13579101562502],[6.800390625,52.111230468749966],[6.749023437500028,52.09868164062499],[6.724511718749994,52.080224609374966],[6.712988281250062,52.056884765625],[6.715625,52.03618164062496],[6.802441406250068,51.98017578125001],[6.800390625,51.96738281249997],[6.775195312500017,51.93828125000002],[6.741796875000062,51.91088867187503],[6.517578125000028,51.853955078124955],[6.425,51.85839843749997],[6.372167968749977,51.830029296874976],[6.355664062500011,51.82465820312504],[6.29707031250004,51.85073242187502],[6.166503906249999,51.88076171875002],[6.1171875,51.870410156250045],[6.089843750000028,51.853955078124955],[6.007617187500045,51.83398437499997],[5.948730468750057,51.802685546875004],[5.948535156250017,51.762402343749955],[6.052734375,51.65825195312499],[6.08935546875,51.63779296874998],[6.091113281250016,51.59892578124996],[6.1416015625,51.55009765624996],[6.193261718750051,51.48891601562502],[6.198828125000034,51.45],[6.192871093750057,51.41059570312498],[6.166210937500039,51.35483398437498],[6.075878906250011,51.22412109374999],[6.074804687500063,51.19902343750004],[6.082421875000023,51.17998046874996],[6.113378906250034,51.174707031249966],[6.136914062500011,51.16484374999998],[6.129980468750034,51.14741210937501],[5.961035156250063,51.05668945312498],[5.939257812500074,51.04082031250004],[5.86835937500001,51.0453125],[5.857519531250034,51.030126953125006],[5.867187500000057,51.00566406249999],[5.894726562500068,50.98422851562506],[5.955078125,50.97294921874999],[6.0068359375,50.94995117187499],[6.048437500000034,50.904882812500055],[5.993945312500017,50.75043945312503],[5.797363281250028,50.754541015624994],[5.7470703125,50.759570312500045],[5.693652343750045,50.774658203125],[5.69355468750001,50.774755859375006],[5.669140625000011,50.80595703124999],[5.639453125000017,50.843603515625],[5.647558593750063,50.86665039062501],[5.736621093750016,50.93212890625003],[5.75,50.95024414062498],[5.740820312500063,50.95991210937498],[5.749804687500017,50.98876953124999],[5.818261718750022,51.08642578125],[5.827148437500057,51.125634765624994],[5.796484375000033,51.153076171875],[5.752343750000023,51.16948242187496],[5.60878906250008,51.1984375],[5.540429687499994,51.23930664062499],[5.508789062500028,51.275],[5.476855468750017,51.285058593749966],[5.429785156250034,51.27299804687502],[5.310839843750045,51.259716796874955],[5.214160156250045,51.278955078124966],[5.099902343750045,51.34648437499995],[5.073437500000068,51.406835937500006],[5.05947265625008,51.453125],[5.03095703125004,51.46909179687498],[4.992578125000023,51.445361328125045],[4.943945312499977,51.40776367187501],[4.84804687500008,51.40327148437498],[4.820703125000023,51.41206054687501],[4.816015625000033,51.432812499999955],[4.810546875,51.452734375000034],[4.784179687500028,51.47739257812498],[4.755664062499989,51.49111328125002],[4.633984375000068,51.421728515625006],[4.588769531250023,51.42192382812496],[4.531640625000023,51.44858398437498],[4.503417968750028,51.47470703124998],[4.44091796875,51.459814453125055],[4.384765625000028,51.42758789062506],[4.40400390625004,51.36708984374999],[4.373730468749983,51.356005859375045],[4.304492187500017,51.36152343750001],[4.226171875000034,51.38647460937503]]],[[[5.325781250000063,53.38574218750003],[5.232617187500011,53.377783203125006],[5.190234375000074,53.39179687500001],[5.415136718750063,53.43144531249998],[5.557421874999988,53.44355468749998],[5.582617187500063,53.438085937500034],[5.325781250000063,53.38574218750003]]],[[[5.929296875,53.45883789062497],[5.732031250000034,53.442626953124964],[5.665332031250045,53.45488281249999],[5.654296875000028,53.46650390625004],[5.708105468750063,53.47338867187503],[5.876269531250045,53.47509765625],[5.928222656250057,53.464990234374994],[5.929296875,53.45883789062497]]],[[[6.33339843750008,53.51074218749999],[6.193261718750051,53.476806640625],[6.159277343750034,53.48393554687504],[6.167675781250068,53.49375],[6.290917968750051,53.514990234375055],[6.33339843750008,53.51074218749999]]],[[[6.734765625000051,53.58251953125006],[6.64208984375,53.579199218750006],[6.668554687500062,53.60566406249995],[6.754589843750011,53.62548828125],[6.800878906250005,53.62548828125],[6.734765625000051,53.58251953125006]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Malta","sov_a3":"MLT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malta","adm0_a3":"MLT","geou_dif":0,"geounit":"Malta","gu_a3":"MLT","su_dif":0,"subunit":"Malta","su_a3":"MLT","brk_diff":0,"name":"Malta","name_long":"Malta","brk_a3":"MLT","brk_name":"Malta","brk_group":null,"abbrev":"Malta","postal":"M","formal_en":"Republic of Malta","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malta","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":405165,"gdp_md_est":9962,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"MT","iso_a3":"MLT","iso_n3":"470","un_a3":"470","wb_a2":"MT","wb_a3":"MLT","woe_id":-99,"adm0_a3_is":"MLT","adm0_a3_us":"MLT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"MLT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.566210937499987,35.85273437499998],[14.532714843750028,35.82021484374999],[14.436425781250021,35.82167968750005],[14.352343750000044,35.872265624999955],[14.35126953125001,35.97841796874999],[14.448339843750063,35.95742187499999],[14.537011718749993,35.88627929687496],[14.566210937499987,35.85273437499998]]],[[[14.313476562500028,36.027587890624964],[14.253613281250011,36.01215820312503],[14.19423828125008,36.04223632812503],[14.180371093750011,36.060400390625006],[14.26328125,36.075781250000034],[14.3037109375,36.062304687500045],[14.320898437500034,36.036230468750055],[14.313476562500028,36.027587890624964]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Montenegro","sov_a3":"MNE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Montenegro","adm0_a3":"MNE","geou_dif":0,"geounit":"Montenegro","gu_a3":"MNE","su_dif":0,"subunit":"Montenegro","su_a3":"MNE","brk_diff":0,"name":"Montenegro","name_long":"Montenegro","brk_a3":"MNE","brk_name":"Montenegro","brk_group":null,"abbrev":"Mont.","postal":"ME","formal_en":"Montenegro","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Montenegro","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":5,"pop_est":672180,"gdp_md_est":6816,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ME","iso_a3":"MNE","iso_n3":"499","un_a3":"499","wb_a2":"ME","wb_a3":"MNE","woe_id":-99,"adm0_a3_is":"MNE","adm0_a3_us":"MNE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"MNE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.1943359375,43.53330078125],[19.19160156250001,43.521044921874996],[19.19648437500001,43.485009765624994],[19.21875,43.449951171875],[19.298242187500023,43.413964843749994],[19.414648437500006,43.342822265624996],[19.551562500000017,43.21225585937499],[19.614453125,43.1734375],[19.670996093750006,43.16396484374999],[19.781152343750023,43.10976562499999],[19.858007812500006,43.096533203125],[19.94404296875001,43.081640625],[20.167871093750023,42.968505859375],[20.26845703125002,42.935449218749994],[20.339941406250006,42.892871093749996],[20.34765625,42.852783203125],[20.344335937500006,42.827929687499996],[20.215136718750017,42.798828125],[20.19257812500001,42.754638671875],[20.129980468750006,42.759765625],[20.054296875,42.760058593749996],[20.029492187500008,42.73203125],[20.065722656250017,42.685839843749996],[20.089257812500023,42.63154296875],[20.0703125,42.557080078125],[20.063964843749996,42.54726562499999],[20.045703125000017,42.54990234374999],[19.9390625,42.506689453125],[19.859765625000023,42.486328125],[19.78828125000001,42.476171875],[19.754492187500006,42.496923828125],[19.73779296875,42.525146484375],[19.74072265625,42.60693359375],[19.727832031250017,42.634521484375],[19.703417968750017,42.64794921875],[19.65449218750001,42.628564453124994],[19.597460937500017,42.5654296875],[19.54453125,42.491943359375],[19.465136718750017,42.415380859375],[19.39960937500001,42.34189453125],[19.329003906250023,42.249267578125],[19.28066406250002,42.17255859375],[19.330859375000017,42.12929687499999],[19.361425781250002,42.069091796875],[19.352148437500006,42.0240234375],[19.361132812500017,41.99775390624999],[19.345507812500017,41.91884765624999],[19.342382812500006,41.869091796875],[19.18642578125002,41.948632812499994],[19.12226562500001,42.06049804687499],[18.89423828125001,42.249462890625],[18.632910156250006,42.378076171874994],[18.619042968750023,42.39838867187499],[18.633398437500006,42.423144531249996],[18.645898437500023,42.442724609375],[18.591601562500017,42.44418945312499],[18.553515625000017,42.428515625],[18.517480468750023,42.43291015624999],[18.476660156250006,42.481103515624994],[18.438085937500006,42.52294921875],[18.436328125000017,42.55971679687499],[18.453906250000017,42.564501953124996],[18.480078125,42.57919921875],[18.534960937500017,42.6201171875],[18.5458984375,42.6416015625],[18.543261718750017,42.674169921875],[18.46601562500001,42.777246093749994],[18.455078125,42.84409179687499],[18.44384765625,42.96845703124999],[18.46015625000001,42.997900390625],[18.48847656250001,43.01215820312499],[18.623632812500002,43.027685546875],[18.621875,43.124609375],[18.629980468750002,43.153662109375],[18.656835937500006,43.19394531249999],[18.674218750000023,43.230810546875],[18.74921875000001,43.283544921875],[18.85107421875,43.346337890624994],[18.895605468750006,43.348193359374996],[18.934667968750006,43.33945312499999],[18.97871093750001,43.285400390625],[19.026660156250017,43.292431640625],[19.03671875,43.357324218749994],[18.97382812500001,43.44238281249999],[18.940234375000017,43.496728515624994],[18.95068359375,43.526660156249996],[18.97421875,43.542333984375],[19.0283203125,43.53251953124999],[19.080078125,43.51772460937499],[19.11279296875,43.52773437499999],[19.164355468750014,43.535449218749996],[19.1943359375,43.53330078125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Norway","sov_a3":"NOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Norway","adm0_a3":"NOR","geou_dif":0,"geounit":"Norway","gu_a3":"NOR","su_dif":0,"subunit":"Norway","su_a3":"NOR","brk_diff":0,"name":"Norway","name_long":"Norway","brk_a3":"NOR","brk_name":"Norway","brk_group":null,"abbrev":"Nor.","postal":"N","formal_en":"Kingdom of Norway","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Norway","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":8,"mapcolor13":12,"pop_est":4676305,"gdp_md_est":276400,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"NO","iso_a3":"NOR","iso_n3":"578","un_a3":"578","wb_a2":"NO","wb_a3":"NOR","woe_id":-99,"adm0_a3_is":"NOR","adm0_a3_us":"NOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NOR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.085839843750022,60.30756835937501],[5.089062500000068,60.188769531250045],[4.996972656250051,60.19775390625003],[4.955566406250057,60.243310546874966],[4.943554687499983,60.27241210937495],[4.950781250000034,60.341162109375],[4.93007812499999,60.412060546874976],[4.95722656250004,60.44726562500005],[4.990625,60.452050781249966],[5.050195312500051,60.38896484374998],[5.085839843750022,60.30756835937501]]],[[[4.958691406250067,61.08457031250004],[4.870117187500057,61.071923828125016],[4.79902343750004,61.08271484375001],[4.824414062500068,61.17822265625003],[4.861621093749989,61.19384765624999],[4.91542968750005,61.199365234374966],[4.973242187500006,61.14824218750004],[4.958691406250067,61.08457031250004]]],[[[8.10273437500004,63.33759765625003],[8.004687500000045,63.33691406249997],[7.888281250000035,63.35234375000001],[7.815332031250023,63.38505859375002],[7.804003906250016,63.413916015625034],[7.938378906250023,63.44980468749998],[8.073535156250045,63.47080078124998],[8.13613281250008,63.43134765625003],[8.140917968750074,63.36640625000003],[8.10273437500004,63.33759765625003]]],[[[8.470800781250063,63.66713867187503],[8.356152343750068,63.664794921874964],[8.287109375000028,63.687158203125016],[8.451269531250063,63.73183593749996],[8.708886718750051,63.77431640624999],[8.7333984375,63.80131835937499],[8.764648437500057,63.804638671874955],[8.809179687500063,63.771435546874955],[8.81484375000008,63.72597656250002],[8.78652343750008,63.703466796875034],[8.470800781250063,63.66713867187503]]],[[[11.2314453125,64.865869140625],[11.179003906250045,64.838037109375],[11.0625,64.86040039062502],[10.832519531249972,64.84311523437506],[10.739843750000032,64.87031250000001],[10.8134765625,64.92324218750002],[11.020996093749998,64.97871093749995],[11.132617187500017,64.97617187499998],[11.246191406250063,64.90791015625001],[11.2314453125,64.865869140625]]],[[[11.96796875000001,65.62651367187505],[11.901855468750057,65.595703125],[11.778320312500028,65.60454101562502],[11.765136718749998,65.63095703124998],[11.800390624999977,65.68388671875002],[11.87539062500008,65.70590820312506],[11.972363281250038,65.70156249999997],[12.003222656250017,65.679443359375],[11.96796875000001,65.62651367187505]]],[[[12.509570312500045,65.90195312500003],[12.429492187500074,65.89907226562497],[12.430175781250028,65.93994140625003],[12.476074218750057,65.97709960937507],[12.548828125000057,66.00190429687495],[12.642382812500015,66.00854492187496],[12.747070312500028,66.01137695312502],[12.778808593749998,65.99169921875003],[12.718652343750023,65.96386718750003],[12.509570312500045,65.90195312500003]]],[[[12.419921875,66.04326171875005],[12.327343750000038,66.03662109375003],[12.3427734375,66.08076171874995],[12.417675781250068,66.12265625000006],[12.44638671875006,66.15131835937503],[12.46132812500008,66.18500976562495],[12.527441406250063,66.210546875],[12.620800781250068,66.17792968750004],[12.62265625,66.12246093750002],[12.576367187500068,66.07192382812502],[12.419921875,66.04326171875005]]],[[[12.971777343750063,67.87412109375],[12.824023437500074,67.82124023437498],[12.877929687500057,67.9177734375],[12.95771484375004,68.01547851562503],[13.068066406250068,68.07133789062505],[13.122851562500017,68.0494140625],[13.097753906250063,68.002685546875],[13.098242187499975,67.9564453125],[13.074609375000051,67.93457031249997],[12.971777343750063,67.87412109375]]],[[[13.872851562500045,68.26533203125003],[13.932324218750011,68.2482421875],[14.087695312500045,68.25322265625005],[14.118847656250068,68.246826171875],[14.096777343750034,68.21860351562499],[14.029296875000028,68.18754882812499],[13.887695312500057,68.16850585937502],[13.824023437500044,68.12109375000006],[13.778417968750004,68.10498046875006],[13.65615234375005,68.10478515625002],[13.583984375,68.09384765624999],[13.495214843750032,68.05166015625002],[13.424218750000051,68.08276367187506],[13.404394531250006,68.06069335937498],[13.391503906250051,68.02124023437503],[13.35205078125,68.00966796875],[13.22939453125005,67.995361328125],[13.199511718750015,68.08725585937498],[13.255957031250063,68.12060546875003],[13.300195312499994,68.16044921875007],[13.367968750000045,68.16655273437507],[13.4287109375,68.16323242187502],[13.537988281250051,68.2490234375],[13.687695312499983,68.27338867187498],[13.78408203125008,68.276123046875],[13.872851562500045,68.26533203125003]]],[[[15.207128906250006,68.943115234375],[15.337207031250045,68.842431640625],[15.39658203125006,68.78359375000002],[15.348437500000017,68.67241210937502],[15.222070312500025,68.61630859375003],[15.02705078125001,68.60634765624997],[14.890234375000036,68.61098632812502],[14.804003906250044,68.63798828125],[14.793261718750072,68.66826171875005],[14.743457031250045,68.67719726562501],[14.612109375000017,68.638330078125],[14.520800781250074,68.63305664062497],[14.40468750000005,68.66323242187498],[14.37343750000008,68.71142578125006],[14.496679687500036,68.771875],[14.553710937500028,68.81884765625],[14.6904296875,68.81469726562503],[14.72460937500003,68.80009765624999],[14.801855468750032,68.79096679687501],[14.848828125000011,68.84755859375],[14.837988281250032,68.88666992187495],[14.872363281250015,68.91386718749999],[15.0375,68.894287109375],[15.037792968750068,69.00053710937507],[15.101855468750045,69.00800781249998],[15.128125,69.00395507812505],[15.175585937500074,68.98154296875],[15.207128906250006,68.943115234375]]],[[[15.760351562500007,68.56123046875001],[15.772363281250051,68.55419921875],[15.908593750000023,68.65048828124998],[16.05957031250003,68.68051757812498],[16.068945312500006,68.71401367187505],[16.12744140625,68.74643554687498],[16.120800781250068,68.799365234375],[16.15058593750001,68.8423828125],[16.227539062500057,68.853759765625],[16.275585937499983,68.86831054687505],[16.328906250000017,68.87631835937498],[16.425195312499994,68.841552734375],[16.4796875,68.80292968749995],[16.54736328125003,68.71655273437503],[16.519238281250068,68.63300781249998],[16.337988281250006,68.56787109375003],[16.193945312500063,68.53847656249998],[16.048437499999977,68.46367187500002],[15.975292968750011,68.40249023437498],[15.9125,68.38925781250006],[15.872753906249983,68.39423828125001],[15.837402343749972,68.409033203125],[15.763671875000055,68.40908203125],[15.682519531250051,68.35600585937502],[15.4375,68.31284179687503],[15.34140625,68.32529296874998],[15.337011718750007,68.37822265625002],[15.27968750000005,68.37382812500002],[15.187890625000078,68.31040039062498],[15.098046875000078,68.28920898437501],[15.037695312500036,68.28271484375003],[14.926855468750034,68.30659179687501],[14.628906249999972,68.198486328125],[14.349511718750078,68.17827148437505],[14.257519531249983,68.19077148437503],[14.257226562500023,68.25693359375],[14.437792968750044,68.34155273437503],[14.585839843749994,68.40034179687501],[15.09531250000006,68.44140625000001],[15.412597656250027,68.61582031250003],[15.489257812500028,68.805322265625],[15.564257812500017,68.87373046874998],[15.52900390625004,68.91240234375005],[15.443652343750047,68.919189453125],[15.43847656249997,68.97856445312502],[15.483007812500006,69.04345703125003],[15.649511718749977,69.13256835937506],[15.741992187499987,69.17050781250006],[15.89267578125006,69.27788085937499],[15.965332031250028,69.30205078125002],[16.04804687500001,69.30205078125002],[16.129492187500063,69.27392578124997],[16.11484375,69.21640624999998],[15.99267578125,69.11264648437496],[15.811718749999981,69.02421875000002],[15.833789062500045,68.96074218750005],[15.905859374999977,68.90849609375005],[15.923535156250038,68.81918945312498],[15.927929687500038,68.73320312500005],[15.790722656250066,68.617041015625],[15.760351562500007,68.56123046875001]]],[[[17.503027343750034,69.59624023437502],[17.62324218750001,69.5390625],[17.67734375,69.55654296875],[17.78369140625,69.56303710937497],[17.862792968750057,69.54296875],[17.927441406250068,69.50664062500005],[18.004101562500068,69.50498046874998],[18.05224609375,69.45751953125],[18.076757812500034,69.39575195312503],[18.021093750000063,69.34960937500003],[17.94208984375004,69.32871093750003],[17.920703125000045,69.27431640624997],[17.95068359375003,69.19814453125],[17.773535156249977,69.172021484375],[17.568164062500074,69.16040039062503],[17.487890625000063,69.19682617187499],[17.32363281250008,69.13002929687497],[17.160937500000074,69.02592773437499],[17.08251953124997,69.013671875],[17.077050781250023,69.04663085937503],[16.96015625000001,69.06938476562503],[16.81044921875008,69.07070312499997],[16.81542968750003,69.09511718749997],[16.842578125000045,69.11235351562502],[16.971777343750063,69.13789062499998],[16.997558593749996,69.190625],[16.974121093750025,69.28471679687505],[16.996875,69.33037109375002],[17.001757812500045,69.36191406250005],[17.083007812499996,69.39882812500002],[17.36083984375003,69.38149414062497],[17.394531250000057,69.41669921875004],[17.373437500000023,69.43886718750002],[17.22988281250008,69.47768554687502],[17.25195312500003,69.50380859375002],[17.355566406250002,69.52714843750005],[17.45361328125,69.53017578124997],[17.483105468750068,69.569677734375],[17.488183593750023,69.58686523437495],[17.503027343750034,69.59624023437502]]],[[[29.956152343750006,69.79677734375002],[29.766210937500006,69.767529296875],[29.74423828125006,69.79160156250002],[29.785937500000014,69.82905273437501],[29.83583984374999,69.90556640625005],[29.91396484374999,69.90244140625003],[29.992968750000017,69.87324218749995],[30.055175781249968,69.83837890625006],[29.956152343750006,69.79677734375002]]],[[[20.779199218750023,70.08974609375002],[20.72529296875004,70.06650390624998],[20.642578125000057,70.05703125],[20.598046875000048,70.07143554687502],[20.534667968750025,70.08090820312496],[20.46425781250005,70.0765625],[20.40507812499999,70.11914062500006],[20.41171875,70.15488281250003],[20.492773437500006,70.20332031249995],[20.654882812500006,70.230859375],[20.78603515625008,70.21953124999999],[20.819433593750034,70.20546874999997],[20.779199218750023,70.08974609375002]]],[[[19.25507812500001,70.06640625000006],[19.34375,70.01196289062497],[19.42226562500005,70.01718749999998],[19.445898437499977,70.037744140625],[19.49951171874997,70.04790039062502],[19.60781250000002,70.019140625],[19.592285156250057,69.97016601562498],[19.44238281249997,69.90839843750001],[19.334765625000074,69.82026367187501],[19.197070312500017,69.7998046875],[19.13085937500003,69.81044921875005],[19.0078125,69.75957031250007],[18.909179687500057,69.70668945312505],[18.806933593750017,69.63984375000001],[18.80068359375008,69.60537109374998],[18.784765625000034,69.57900390624997],[18.410253906250034,69.55283203125006],[18.27412109375001,69.53549804687496],[18.12988281250003,69.557861328125],[18.06152343750003,69.60209960937503],[18.08349609374997,69.62612304687497],[18.22744140625008,69.63574218749997],[18.232031250000034,69.67675781249997],[18.268457031249994,69.70180664062502],[18.315039062500006,69.71547851562497],[18.34931640625004,69.76787109374999],[18.40625,69.78154296875002],[18.512402343750068,69.76865234375006],[18.583984374999968,69.80659179687495],[18.624316406250017,69.81303710937505],[18.67402343750004,69.781640625],[18.69794921875001,69.82485351562504],[18.67402343750004,69.86430664062499],[18.6865234375,69.89091796875002],[18.823828125,69.96010742187497],[18.883203125000023,70.01054687500005],[18.968652343750023,70.04301757812499],[19.05097656250001,70.037841796875],[19.074902343750068,70.08569335937497],[19.05097656250001,70.13466796875002],[19.06005859374997,70.16660156250003],[19.13271484375005,70.24414062500003],[19.212695312500074,70.2474609375],[19.249414062500023,70.17856445312498],[19.25507812500001,70.06640625000006]]],[[[19.76748046875005,70.21669921875002],[19.818359375000025,70.20498046875005],[19.868652343750057,70.212255859375],[19.910449218750045,70.20190429687503],[19.99414062500003,70.14926757812506],[20.084277343750017,70.12856445312502],[20.088476562500063,70.10205078125003],[20.005957031250034,70.076220703125],[19.897265625000017,70.06845703125003],[19.780859375,70.07744140624997],[19.746679687500063,70.11049804687497],[19.71083984375005,70.16533203125005],[19.61347656250001,70.21909179687498],[19.59902343749999,70.26616210937507],[19.68378906250004,70.273583984375],[19.76748046875005,70.21669921875002]]],[[[23.615332031250034,70.54931640625003],[23.63398437500004,70.5025390625],[23.641015625000048,70.46396484375003],[23.54775390625005,70.40815429687495],[23.332812500000045,70.33496093750006],[23.34511718750005,70.31528320312503],[23.27070312500001,70.29648437500003],[23.15917968750003,70.28261718750005],[23.100292968750008,70.29609374999995],[23.108398437500057,70.35883789062504],[23.090625,70.37763671874995],[23.005957031250063,70.35278320312503],[22.91787109375005,70.38466796874997],[22.917773437500045,70.41674804687503],[22.941015625000063,70.444580078125],[23.022460937500057,70.4869140625],[23.15839843750004,70.51606445312501],[23.248046875,70.505126953125],[23.546679687500017,70.61708984374995],[23.57890624999999,70.59365234375],[23.615332031250034,70.54931640625003]]],[[[24.01757812500003,70.56738281249997],[23.82714843750003,70.52749023437502],[23.716601562500074,70.561865234375],[23.67011718750001,70.5970703125],[23.66328125000004,70.67524414062501],[23.689160156250068,70.72280273437502],[23.778417968750063,70.74736328125005],[23.836523437499977,70.72939453125002],[23.852050781250057,70.71435546874996],[23.95644531250008,70.699609375],[24.07832031250004,70.65058593749995],[24.01757812500003,70.56738281249997]]],[[[23.440527343750063,70.81577148437503],[23.420898437500057,70.78442382812506],[23.38710937499999,70.75390625000006],[23.30517578125,70.72167968749997],[23.068164062500045,70.59409179687499],[22.92890625000001,70.57353515624997],[22.88476562499997,70.55351562499999],[22.829101562499996,70.54155273437505],[22.656054687500017,70.55903320312495],[22.60537109375008,70.53315429687501],[22.557519531250023,70.51586914062506],[22.432226562500063,70.50917968750002],[22.358691406250017,70.514794921875],[22.16875,70.56210937500006],[22.05576171875003,70.61333007812502],[21.994531250000076,70.65712890624997],[22.170019531250034,70.65629882812503],[22.232617187499983,70.66689453125],[22.350292968750068,70.65766601562498],[22.420996093750006,70.70258789062498],[22.570703125000023,70.69716796875002],[22.858105468750068,70.72841796875],[22.963574218750036,70.71098632812502],[23.204687500000063,70.81547851562507],[23.28017578125008,70.81274414062506],[23.395605468750034,70.84257812499999],[23.440527343750063,70.81577148437503]]],[[[27.898046875,70.6779296875],[27.998828125000017,70.66425781249998],[28.215625,70.704345703125],[28.271777343750014,70.66796875000003],[28.202734375,70.57690429687506],[28.191015625,70.440185546875],[28.166015625000057,70.36040039062499],[28.166015625000057,70.28764648437502],[28.192968750000034,70.24858398437505],[28.280078125000017,70.40341796875005],[28.309863281250045,70.44306640624995],[28.43730468749999,70.50136718750002],[28.484765625000076,70.61879882812497],[28.609375,70.75966796874997],[28.749804687500074,70.84150390624995],[28.831542968750025,70.86396484375],[29.102343750000045,70.86074218749997],[29.21855468750002,70.829931640625],[29.32109375000002,70.761474609375],[29.3976562500001,70.73413085937503],[29.63906250000005,70.70502929687495],[29.721972656250074,70.66855468749998],[29.7375,70.646826171875],[29.796484375000063,70.64252929687501],[29.959375,70.69438476562499],[30.065136718750097,70.70297851562498],[30.23769531250005,70.62216796875003],[30.203027343749994,70.56230468750002],[30.213183593750017,70.54331054687503],[30.42207031250004,70.54716796875002],[30.59589843750004,70.52368164062503],[30.926367187500002,70.40112304687501],[30.960644531250093,70.34384765625],[30.944140625000017,70.27441406249997],[30.468945312500097,70.1978515625],[30.26298828125007,70.12470703125004],[29.925878906250063,70.09648437500005],[28.781152343750055,70.14541015625],[28.804296875000063,70.09252929687506],[29.601367187500017,69.97675781249998],[29.646875,69.943701171875],[29.621386718750014,69.87407226562505],[29.620996093749994,69.81821289062503],[29.635937500000036,69.780126953125],[29.694628906250014,69.74458007812504],[29.79208984375006,69.727880859375],[29.990332031250006,69.73666992187502],[30.08828125,69.71757812500005],[30.15517578125005,69.74594726562503],[30.18007812500005,69.841162109375],[30.237597656250014,69.86220703125002],[30.34882812500004,69.83457031249998],[30.397265625000074,69.73281250000002],[30.428320312500006,69.722265625],[30.484375,69.79487304687497],[30.594531250000014,69.78964843749998],[30.714453125,69.79570312500005],[30.869726562500006,69.78344726562506],[30.924121093750017,69.65175781250005],[30.922460937500002,69.605810546875],[30.896679687500097,69.56123046874998],[30.86074218749999,69.53842773437503],[30.788867187500074,69.52851562499998],[30.615429687500093,69.532568359375],[30.379687500000017,69.58471679687497],[30.22753906250003,69.63378906250003],[30.180175781249975,69.63583984375],[30.159765625,69.62988281250003],[30.196484375000093,69.58056640625003],[30.18671875000004,69.54277343750005],[30.163769531250093,69.501611328125],[30.13183593749997,69.46425781250002],[30.087304687500048,69.43286132812501],[29.99404296874999,69.39248046874997],[29.83271484375004,69.36044921875003],[29.38828125,69.29814453125005],[29.35302734375003,69.27060546875],[29.20996093750003,69.097021484375],[29.170898437500053,69.07153320312504],[29.11855468750005,69.049951171875],[28.96582031250003,69.02197265625],[28.891894531250074,69.06059570312505],[28.832617187500063,69.11899414062503],[28.846289062500006,69.17690429687502],[29.024902343749968,69.28798828125],[29.19179687500005,69.36669921874997],[29.238867187500063,69.39394531250002],[29.333398437500048,69.47299804687503],[29.141601562500025,69.67143554687505],[28.800390625000063,69.73149414062505],[28.411718750000034,69.82275390624997],[28.269140625000034,69.87143554687503],[28.047265625000023,69.97167968750003],[27.889941406250045,70.06166992187497],[27.747851562500042,70.06484375],[27.591699218750023,70.042236328125],[27.34804687500005,69.96005859375006],[27.205664062499977,69.91870117187497],[27.127539062500063,69.90649414062497],[27.108691406250042,69.90468749999995],[26.93427734375004,69.928125],[26.740234375000025,69.93305664062498],[26.584277343750045,69.92631835937502],[26.525390625000057,69.91503906250003],[26.308203125000034,69.78193359375001],[26.15615234375005,69.71469726562498],[26.07246093750004,69.69155273437497],[26.011523437500074,69.65263671875005],[25.961523437500006,69.58862304687497],[25.850195312500063,69.36650390625002],[25.767187500000034,69.28266601562498],[25.748632812500063,69.23144531250003],[25.768164062500063,69.07612304687501],[25.748339843750014,68.99013671874998],[25.646679687499983,68.91914062500001],[25.575292968750006,68.88715820312498],[25.48085937500005,68.88061523437497],[25.357128906250068,68.862451171875],[25.249121093750006,68.82133789062507],[25.172851562499996,68.76528320312502],[25.0869140625,68.63959960937498],[24.94140625000003,68.59326171875006],[24.802441406250036,68.60649414062499],[24.703222656249974,68.65283203125001],[24.49052734374999,68.68867187500004],[24.33203125000003,68.71152343749998],[24.154101562500017,68.760888671875],[23.99736328125007,68.7984375],[23.85400390625,68.80590820312503],[23.772558593750006,68.75839843750003],[23.70703125,68.71386718750003],[23.4625,68.67763671875],[23.324023437500017,68.64897460937502],[23.144335937500017,68.64257812499997],[23.07167968750005,68.67436523437505],[22.811035156250057,68.69531249999997],[22.500683593750068,68.72021484374997],[22.410937500000074,68.719873046875],[22.382910156250063,68.776611328125],[22.300390625000034,68.855859375],[22.0796875,68.9927734375],[21.98945312500001,69.04111328124998],[21.81972656250008,69.15449218749998],[21.621777343750068,69.27070312499995],[21.59375,69.273583984375],[21.461230468750045,69.277490234375],[21.26679687500004,69.27368164062503],[21.14375,69.24726562499997],[21.06611328125001,69.21411132812496],[21.052636718750023,69.18657226562505],[21.12783203125008,69.080810546875],[21.10449218750003,69.05444335937503],[21.065722656250017,69.04174804687503],[20.889257812500063,69.07143554687502],[20.675878906250006,69.069482421875],[20.622167968750006,69.036865234375],[20.491992187500017,69.03330078124998],[20.116699218750057,69.02089843750005],[20.282324218750034,68.934326171875],[20.33710937500001,68.89965820312503],[20.348046875000023,68.84873046875002],[20.31943359375003,68.75405273437502],[20.240039062500042,68.67314453125007],[20.147460937499996,68.60732421875],[19.96884765625003,68.54204101562502],[20.240039062500042,68.4775390625],[20.055957031250014,68.39038085937503],[19.969824218750063,68.35639648437501],[19.87001953125005,68.36225585937497],[19.691210937500045,68.39243164062498],[19.25898437500001,68.46533203125],[19.05263671875008,68.49272460937499],[18.868261718749977,68.50112304687502],[18.769824218750017,68.50004882812507],[18.378613281250068,68.56240234374997],[18.303027343750045,68.55541992187497],[18.16259765625003,68.52841796874998],[18.14707031250006,68.46777343749997],[18.15595703125001,68.31684570312495],[18.17666015625005,68.20063476562498],[18.125,68.133447265625],[18.073242187500025,68.08784179687501],[17.916699218750008,67.96489257812502],[17.564746093750074,68.04843749999998],[17.324609375000023,68.10380859374999],[17.170507812500063,68.03012695312498],[16.783593750000023,67.89501953125],[16.585546874999974,67.62832031250002],[16.57412109375005,67.61958007812501],[16.457128906250034,67.55175781250006],[16.30712890625003,67.52060546875],[16.193554687500068,67.50517578125006],[16.12744140625,67.42583007812507],[16.281542968750045,67.31206054687506],[16.360644531249985,67.25200195312499],[16.434277343749983,67.15507812500007],[16.420703125000074,67.093359375],[16.40351562500004,67.05498046875002],[16.23769531250008,66.97641601562498],[15.884179687500021,66.76884765625007],[15.55703125000005,66.55209960937506],[15.422949218750006,66.48984374999996],[15.483789062500051,66.30595703124999],[15.37490234375008,66.25205078125002],[15.153320312500057,66.19106445312505],[15.0400390625,66.16752929687503],[14.91796875,66.1537109375],[14.543261718750044,66.12934570312498],[14.609960937500036,65.932275390625],[14.635156250000023,65.84501953125007],[14.634570312500074,65.79326171874999],[14.595800781249977,65.74287109374995],[14.549511718750068,65.64638671875002],[14.479687500000038,65.30146484374998],[14.42626953125,65.26435546874998],[14.352441406250051,65.17084960937504],[14.115136718750023,64.946142578125],[13.92480468749997,64.79677734375001],[13.650292968750023,64.58154296874997],[13.873535156250028,64.51357421874997],[14.077636718750028,64.46401367187498],[14.119921875000017,64.38774414062502],[14.148046874999977,64.26030273437507],[14.141210937500006,64.17353515624998],[14.063281250000045,64.09550781250007],[14.002734375000044,64.04072265625001],[13.960546875000063,64.01401367187498],[13.670703125000074,64.040625],[13.299609375000074,64.07480468750003],[13.203515625000023,64.07509765625],[12.987597656250017,64.05048828124995],[12.792773437500017,64],[12.690039062500032,63.95742187499999],[12.6625,63.94047851562502],[12.532714843750057,63.84355468749999],[12.30195312500004,63.671191406250045],[12.17519531250005,63.59594726562499],[12.212109375000011,63.49223632812498],[11.99990234375005,63.291699218750004],[12.138671874999972,63.089160156250045],[12.144628906250034,63.08251953125002],[12.218164062500023,63.000634765625016],[12.141015625000023,62.94785156250003],[12.108593750000068,62.91948242187501],[12.11962890625,62.82592773437497],[12.13984375000004,62.72133789062496],[12.121875,62.660009765625006],[12.114550781250045,62.59189453124998],[12.303515625000074,62.28559570312501],[12.301367187500006,62.213769531250044],[12.291992187500057,62.16743164062501],[12.233691406250074,61.97685546875001],[12.155371093750004,61.720751953125045],[12.292089843750063,61.653466796875016],[12.486816406250028,61.57299804687497],[12.59609375,61.54130859375001],[12.75751953125004,61.44570312499997],[12.88076171875008,61.35229492187506],[12.86367187500008,61.29028320312503],[12.828222656250034,61.22182617187502],[12.776367187500057,61.17397460937505],[12.727832031250017,61.10825195312497],[12.706054687500028,61.059863281250074],[12.683007812500021,61.04682617187498],[12.467578125000017,61.041503906249964],[12.353710937500011,61.023193359374964],[12.294140625000038,61.00268554687506],[12.314648437500038,60.89213867187498],[12.445312500000027,60.68964843749995],[12.553808593750006,60.54565429687502],[12.588671874999989,60.450732421875045],[12.552832031250063,60.35449218749997],[12.515820312499983,60.305224609375074],[12.514648437500028,60.23886718750006],[12.486132812500074,60.106787109375055],[12.402050781249981,60.04003906250006],[12.291992187500057,59.96723632812495],[12.169238281250074,59.91289062499999],[12.071875,59.897607421874994],[11.98828125,59.89130859375004],[11.93212890625,59.86367187499999],[11.88125,59.78247070312497],[11.834277343750044,59.697167968749994],[11.680761718750032,59.59228515625002],[11.684863281250074,59.55576171874998],[11.743359375000011,59.431445312500045],[11.798144531250072,59.28989257812498],[11.75185546875005,59.15756835937503],[11.712207031250045,59.01865234374998],[11.64277343750004,58.926074218750024],[11.543554687500063,58.893017578124955],[11.470703125000057,58.90952148437503],[11.388281250000063,59.03652343749996],[11.386425781250038,59.065722656250045],[11.36591796875004,59.104541015625074],[11.132128906250017,59.143212890625016],[11.090820312500028,59.141796875],[10.998925781250051,59.164453125000016],[10.945019531250066,59.17084960937498],[10.834472656250028,59.18393554687497],[10.742578125000051,59.29599609374997],[10.644921875000051,59.38920898437505],[10.631054687500068,59.42817382812501],[10.634375,59.602490234374976],[10.604492187499972,59.68002929687497],[10.595312500000063,59.76455078124996],[10.533886718750068,59.69580078125],[10.569531250000038,59.587109374999955],[10.49375,59.54150390625],[10.39814453125004,59.51933593750002],[10.407128906249994,59.455664062500006],[10.446386718750006,59.44360351562502],[10.45458984375,59.37749023437507],[10.431347656250068,59.279638671875034],[10.2431640625,59.062060546875024],[10.205175781249977,59.03867187500006],[10.179394531250066,59.009277343750036],[10.083105468749977,59.02880859375],[9.959570312500034,58.96821289062501],[9.842578125000017,58.95849609374997],[9.80019531250008,59.02705078124998],[9.635156250000023,59.1177734375],[9.557226562500063,59.11269531250002],[9.627148437500011,59.067919921875074],[9.696093750000017,59.00971679687501],[9.65693359375004,58.97119140624997],[9.618457031250017,58.946044921875],[9.551074218750045,58.93300781250002],[9.309960937500051,58.85683593750005],[9.395800781250017,58.80566406249999],[9.322949218750011,58.74755859375],[9.23867187500008,58.73901367187503],[9.19375,58.711865234375004],[9.178125,58.675],[8.928417968750011,58.569970703125044],[8.521386718750051,58.30058593750004],[8.312207031250068,58.224462890625006],[8.166113281250063,58.145312500000045],[8.037402343750045,58.14726562499998],[7.875585937500034,58.079980468749966],[7.465917968750062,58.02094726562501],[7.194140625000017,58.04765625000004],[7.0048828125,58.024218750000074],[6.903417968750034,58.070507812499976],[6.890234375,58.102294921874964],[6.895312500000074,58.120751953125016],[6.912304687500068,58.14287109374999],[6.877050781250006,58.15073242187497],[6.802832031250063,58.15454101562497],[6.771093749999977,58.132226562500044],[6.766796875000011,58.08154296875003],[6.7314453125,58.068310546874976],[6.590527343750068,58.09731445312502],[6.555078125000023,58.12343750000002],[6.605761718750045,58.17636718749998],[6.692480468750063,58.224023437499994],[6.676757812500056,58.23378906250002],[6.659863281250067,58.26274414062499],[6.61757812500008,58.26640625000002],[6.491503906250045,58.25942382812502],[6.389062500000051,58.26796874999999],[6.054687500000057,58.375146484374966],[5.976562500000028,58.43232421874998],[5.706835937500074,58.52363281250002],[5.585937500000028,58.62041015625001],[5.517285156249983,58.72651367187495],[5.522460937499972,58.822656250000016],[5.55556640625008,58.975195312500006],[5.612207031250051,59.012890624999955],[5.854296874999989,58.95947265625],[6.099023437500023,58.87026367187502],[6.137304687500006,58.87465820312503],[6.214160156250045,58.944677734375006],[6.363281250000028,59.000927734375004],[6.321093750000074,59.01645507812506],[6.099414062500017,58.95195312500007],[6.016992187500023,58.987695312499966],[5.88916015625,59.060498046874976],[5.88916015625,59.097949218750045],[5.948730468750057,59.135449218749955],[5.968554687500017,59.18613281249997],[5.937304687500045,59.23398437500006],[5.951855468750068,59.299072265625],[6.050683593750051,59.36816406250002],[6.19892578125004,59.43808593749998],[6.305664062500028,59.505566406249955],[6.415332031250073,59.547119140625],[6.403906250000062,59.560986328124976],[6.278515625000011,59.534521484375006],[6.15859375000008,59.4896484375],[6.017382812500017,59.414453124999966],[5.845214843749999,59.35346679687498],[5.717968750000011,59.32983398437503],[5.657324218750005,59.310253906249955],[5.564062500000034,59.29121093749998],[5.467578125000074,59.20380859375005],[5.362304687500028,59.166357421875034],[5.173242187500079,59.16254882812498],[5.131640625000045,59.226464843750016],[5.18505859375,59.453662109375045],[5.2421875,59.564306640625034],[5.304882812500068,59.642578124999964],[5.403515625000011,59.65576171875],[5.472460937500017,59.71308593749995],[5.529687500000023,59.71308593749995],[5.579492187500051,59.68662109374998],[5.77216796875004,59.66093749999998],[5.867285156250063,59.73398437500003],[5.991015625000045,59.74467773437499],[6.216601562499988,59.81835937499999],[6.211914062500028,59.83178710937497],[6.059277343750011,59.815576171874966],[5.96669921875008,59.81318359375001],[5.833984375000028,59.79467773437498],[5.763476562500045,59.80791015625002],[5.73046875,59.863085937500045],[5.78359375000008,59.912792968749955],[5.996484375000023,60.031494140625],[6.069921875000063,60.08349609375003],[6.111816406250057,60.13208007812497],[6.10517578125004,60.16513671875003],[6.140527343750051,60.23349609375003],[6.348730468750006,60.35297851562504],[6.518066406250057,60.40756835937503],[6.57363281250008,60.360595703124964],[6.526367187500057,60.21362304687497],[6.526855468750057,60.152929687500034],[6.660937500000016,60.36723632812498],[6.71992187500004,60.41816406249998],[6.787109375000057,60.45410156250002],[6.949707031250057,60.47822265624995],[6.995703125,60.511962890625],[6.806347656250067,60.50078125000002],[6.346972656250017,60.419091796874994],[6.1533203125,60.34624023437499],[6.10175781250004,60.290136718750006],[5.967382812500034,60.20556640625003],[5.904394531249977,60.15063476562503],[5.8765625,60.07001953125001],[5.800878906250034,60.02622070312498],[5.698828125000034,60.01000976562497],[5.557031250000023,59.90776367187501],[5.494531250000079,59.825585937499966],[5.353417968749994,59.760107421875034],[5.263867187500068,59.70976562499998],[5.234472656250034,59.69179687499996],[5.186035156249999,59.64228515625001],[5.145800781250074,59.63881835937502],[5.110742187500051,59.66782226562498],[5.10488281250008,59.73168945312502],[5.119238281250006,59.833691406250004],[5.187109375000063,59.90708007812504],[5.219531249999988,59.97875976562501],[5.174414062500034,60.045703125000045],[5.205664062500006,60.087939453125045],[5.265429687500017,60.086474609374996],[5.37646484375,60.06723632812498],[5.494531250000079,60.0703125],[5.688574218749977,60.12319335937502],[5.657617187500079,60.15410156250002],[5.573828125000063,60.15849609375002],[5.41738281250008,60.15410156250002],[5.285839843750011,60.20571289062505],[5.183593750000056,60.30839843750002],[5.13710937500008,60.445605468750074],[5.168164062500011,60.484814453124976],[5.546484375,60.62456054687501],[5.64833984375005,60.68798828124997],[5.589355468750028,60.694287109375004],[5.447363281250063,60.617333984374966],[5.244042968750022,60.569580078125],[5.115820312500005,60.63598632812503],[5.049121093750016,60.70751953125006],[5.0107421875,60.858544921874994],[5.024609375000068,60.936132812500006],[5.008593750000017,61.03818359375],[5.095410156250011,61.07133789062501],[5.192480468750006,61.05371093749997],[5.288183593750034,61.047167968750045],[5.505273437500023,61.05610351562501],[5.983984375000034,61.11733398437496],[6.292578125000033,61.08095703125002],[6.41796875,61.08427734375007],[6.60986328125,61.13701171875007],[6.777832031250028,61.142431640625],[6.903417968750034,61.10214843749997],[6.97207031250008,61.05595703125007],[6.980566406250034,60.994140625],[7.038671875000063,60.95292968750004],[7.077929687500074,60.96630859375],[7.046679687499989,61.01528320312505],[7.040136718750006,61.09116210937503],[7.545019531250006,61.177148437499966],[7.604492187500057,61.210546875000034],[7.403906250000035,61.22216796875],[7.346582031250079,61.30058593749999],[7.452539062500079,61.41923828125001],[7.442578125000011,61.43461914062502],[7.331152343750035,61.372021484374976],[7.276269531250051,61.28393554687497],[7.29804687500004,61.21362304687502],[7.275976562500006,61.180957031250045],[7.17353515625001,61.16596679687501],[6.942578125000011,61.16054687499996],[6.794335937500023,61.190380859375004],[6.657031250000017,61.20659179687501],[6.610253906250079,61.2291015625],[6.62587890625008,61.279296875],[6.599902343750017,61.28964843749998],[6.543066406249976,61.244531250000016],[6.49257812499999,61.15458984374999],[6.383496093750068,61.13388671875004],[6.082519531250028,61.16728515625002],[5.646777343749989,61.147607421874994],[5.451269531250034,61.10234375000001],[5.32460937500008,61.10825195312497],[5.106738281250017,61.18754882812505],[5.021679687500011,61.250585937500006],[4.98994140625004,61.37768554687497],[5.002734375000074,61.43359375],[5.172460937500005,61.457128906250006],[5.25830078125,61.45546875000002],[5.338671875000017,61.48549804687499],[5.267578125000028,61.505029296875],[5.167578125000063,61.543359374999966],[5.099414062500045,61.62016601562499],[4.996679687500063,61.64521484375004],[4.927832031249977,61.71069335937505],[4.910351562500068,61.80957031250003],[4.93007812499999,61.878320312499994],[4.985058593750011,61.90043945312498],[5.116992187500074,61.88540039062502],[5.465332031249972,61.896923828124976],[5.793261718749989,61.82709960937495],[6.01582031250004,61.7875],[6.466699218750051,61.807421875000045],[6.730761718750045,61.869775390625044],[6.682324218750011,61.88701171874998],[6.395898437500023,61.85097656250002],[6.131152343749989,61.85244140624996],[5.66445312500005,61.92290039062502],[5.47304687500005,61.945605468750045],[5.266894531250045,61.935595703125045],[5.159570312500051,61.956982421874955],[5.096484375000074,62.02666015625001],[5.143164062500063,62.15991210937499],[5.240917968750011,62.188671874999976],[5.293847656250051,62.15390625],[5.357714843750074,62.151708984375006],[5.422363281250028,62.20737304687498],[5.484277343750023,62.239111328125055],[5.533300781250063,62.31088867187503],[5.718164062500051,62.37890625000003],[5.79628906250008,62.38466796875005],[5.908300781249977,62.41601562500003],[5.979785156250074,62.40712890624999],[6.025585937500068,62.37568359374998],[6.083496093750057,62.349609375],[6.208984375000056,62.35278320312503],[6.580078125000057,62.407275390625045],[6.620019531250023,62.42329101562501],[6.692382812500028,62.46806640624999],[6.457128906250063,62.448095703125],[6.261718750000057,62.416308593750024],[6.136132812500051,62.40747070312497],[6.118457031250074,62.447167968749994],[6.164746093750011,62.482421874999964],[6.2375,62.519921874999966],[6.272851562499994,62.583837890625034],[6.352929687500051,62.61113281249999],[6.439453125000028,62.60966796875004],[6.61835937500004,62.62128906250001],[6.744628906250028,62.63789062500003],[6.961132812500068,62.62675781249999],[7.283789062499976,62.602294921874964],[7.491796875,62.54282226562503],[7.570117187500045,62.54819335937506],[7.653125,62.56401367187499],[7.690722656250016,62.585595703125016],[7.527441406250063,62.610302734375004],[7.518164062500033,62.64550781249997],[7.538378906250075,62.672070312499976],[7.804687500000057,62.72099609374999],[8.095507812500074,62.731835937499994],[8.045507812500006,62.77124023437503],[7.408398437500068,62.71176757812498],[7.242089843750023,62.75234374999999],[7.110839843750028,62.75200195312501],[7.02490234375,62.72880859374999],[6.779980468750011,62.70073242187504],[6.734960937500006,62.72070312500003],[6.781542968750073,62.789648437500034],[6.928222656250028,62.90273437499999],[6.940429687500028,62.93046875000004],[7.00849609375004,62.957666015624994],[7.389062500000022,63.02329101562503],[7.571875,63.09951171875002],[7.654296875000056,63.10917968750005],[7.73603515625001,63.103857421875006],[7.860351562500028,63.11279296874997],[8.100585937500028,63.090966796874966],[8.211132812500011,62.99550781249996],[8.310546875,62.96552734374998],[8.623144531250006,62.84624023437501],[8.609179687499989,62.88056640625001],[8.33857421875004,63.04218749999998],[8.235156250000015,63.08217773437505],[8.158007812500017,63.161523437500044],[8.18447265625008,63.236523437499955],[8.271484375000028,63.28657226562502],[8.580175781250034,63.313378906249966],[8.635546875000045,63.34233398437501],[8.64101562499999,63.39208984375003],[8.59375,63.426123046875034],[8.48017578125001,63.42416992187498],[8.386523437500017,63.445263671875004],[8.360742187500023,63.49887695312503],[8.398144531249983,63.53510742187504],[8.576171875000028,63.60117187499998],[8.673632812500074,63.62260742187502],[8.842382812500006,63.64589843750005],[9.135839843750004,63.59365234374996],[9.158105468750023,63.56625976562497],[9.075878906250038,63.500390624999966],[9.08417968750004,63.46342773437498],[9.156054687500045,63.45932617187504],[9.32363281250008,63.57036132812502],[9.520703125000068,63.58569335937502],[9.602246093750068,63.609570312500004],[9.696875,63.62456054687504],[9.83222656250004,63.52416992187502],[9.891503906250023,63.492041015625055],[9.936035156250055,63.478857421875034],[9.97919921875004,63.39526367187506],[10.020996093750028,63.39082031250004],[10.08056640625,63.43271484375003],[10.188574218750063,63.45478515625001],[10.340039062500011,63.46933593750003],[10.590917968750063,63.447216796874976],[10.704492187500023,63.463574218750004],[10.76015625000008,63.46127929687501],[10.70673828125004,63.53632812500001],[10.673632812500045,63.55800781249999],[10.725292968750068,63.625],[10.779199218750051,63.65117187500004],[10.952539062500023,63.698193359374955],[11.11787109375004,63.71918945312495],[11.225781250000068,63.763818359374994],[11.370703125000032,63.804833984374994],[11.347949218750017,63.837695312500045],[11.307617187500057,63.87573242187497],[11.213867187500057,63.878125],[11.175585937500074,63.898876953124976],[11.294628906250066,63.948193359374976],[11.457617187500063,64.00297851562505],[11.429199218750028,64.02451171875],[11.306640625000027,64.04887695312499],[11.213574218750068,64.03051757812496],[11.075195312500028,63.988134765625034],[10.91425781250004,63.92109374999998],[10.966699218750051,63.9015625],[11.047265625000023,63.845214843749964],[10.934863281250045,63.770214843749955],[10.339160156250017,63.571044921874964],[10.055078125000051,63.51269531250001],[9.924023437499983,63.52177734375007],[9.892773437500011,63.576220703125045],[9.832324218750045,63.61650390625001],[9.767480468750078,63.699511718750045],[9.6572265625,63.697314453125045],[9.594628906250023,63.67895507812503],[9.56728515625005,63.70615234374998],[9.614746093750057,63.794824218749994],[9.708007812500028,63.864892578124994],[9.86445312500004,63.917822265625006],[9.939453125000028,63.98173828124999],[10.009960937500011,64.08315429687504],[10.236230468749994,64.17963867187498],[10.565625,64.41831054687499],[10.833984375000027,64.494482421875],[10.932324218750068,64.57773437499998],[11.090429687500032,64.61455078125002],[11.225390624999989,64.67949218750002],[11.331347656249989,64.6859375],[11.523828125000051,64.744384765625],[11.632910156250063,64.81391601562495],[11.56171875000004,64.81826171874997],[11.392480468750023,64.77299804687507],[11.296777343750051,64.75478515625],[11.303515625000017,64.82939453125002],[11.349902343750044,64.90590820312497],[11.489355468750032,64.975830078125],[12.159667968749998,65.178955078125],[12.226562500000028,65.14536132812496],[12.30654296875008,65.08598632812506],[12.508398437499977,65.09941406250005],[12.738378906250034,65.21440429687502],[12.915527343750057,65.33925781249997],[12.819824218750028,65.31748046874998],[12.715332031250057,65.26635742187503],[12.511718750000055,65.19531250000003],[12.41757812500006,65.18408203124996],[12.363867187500032,65.19331054687497],[12.33398437499997,65.24072265624997],[12.263378906250066,65.25610351562499],[12.199609375000051,65.24545898437503],[12.133886718749977,65.27915039062498],[12.122167968750004,65.36235351562505],[12.20625,65.48623046874997],[12.272851562500051,65.56816406250007],[12.34482421875006,65.63017578124999],[12.627734375000044,65.80615234375006],[12.68886718750008,65.90219726562496],[12.816796875000023,65.952880859375],[12.983007812500032,65.94160156250001],[13.033105468750051,65.95625],[12.976074218750057,66.01918945312502],[12.794921875,66.06909179687497],[12.783789062500063,66.10043945312506],[13.387109375000051,66.18276367187505],[13.674414062500034,66.17998046875002],[13.75966796875008,66.22104492187502],[13.915820312500015,66.24736328125005],[14.034179687500057,66.29755859374997],[13.973144531250057,66.31972656249997],[13.68134765625004,66.27358398437497],[13.498925781250078,66.251904296875],[13.416406250000051,66.25258789062497],[13.35205078125,66.23671875000002],[13.118847656250011,66.23066406250004],[13.068164062500074,66.43081054687502],[13.104687500000068,66.53940429687503],[13.191601562500011,66.53715820312502],[13.211425781250028,66.64082031250001],[13.311816406250074,66.70185546875001],[13.45039062500004,66.71552734374995],[13.520214843750068,66.74165039062504],[13.62109375,66.79482421875002],[13.78798828125008,66.78247070312499],[13.959472656250027,66.79433593750002],[13.9169921875,66.81938476562507],[13.704101562500057,66.85166015624998],[13.651562500000011,66.90708007812496],[13.726660156250034,66.93803710937499],[13.808398437500074,66.96079101562499],[13.880175781250045,66.96489257812505],[14.022363281250051,67.07309570312506],[14.10878906250008,67.11923828125003],[14.205566406249972,67.11123046875002],[14.34033203125,67.15893554687506],[14.472656250000028,67.14267578125003],[14.600683593750004,67.17387695312499],[14.775585937500011,67.194482421875],[15.41572265625004,67.20244140625002],[15.434765625000011,67.24667968749996],[15.300097656250044,67.25693359375003],[14.82441406250001,67.26831054687503],[14.581542968750028,67.26743164062502],[14.479296875000045,67.25595703125],[14.441699218750045,67.27138671875005],[14.448339843750063,67.29785156250003],[14.53662109375,67.33974609375002],[14.578515625000023,67.38603515625005],[14.754980468750004,67.49902343749997],[14.961914062500055,67.57426757812502],[15.120507812500051,67.555029296875],[15.289160156250034,67.48315429687503],[15.409375,67.47416992187505],[15.465332031250028,67.45092773437503],[15.55292968750004,67.35175781249997],[15.594433593750038,67.34853515625005],[15.575683593750055,67.44384765625],[15.691503906250004,67.52138671875],[15.661328124999983,67.54282226562499],[15.48730468749997,67.514794921875],[15.35400390625,67.54394531249997],[15.24873046875004,67.6021484375],[15.218652343750051,67.65537109375003],[15.284082031250053,67.70795898437498],[15.345800781250006,67.73442382812505],[15.303906250000011,67.76528320312502],[15.040820312500044,67.68256835937495],[14.854687500000066,67.66333007812506],[14.781347656250034,67.67490234375],[14.821093750000044,67.749853515625],[14.798925781250063,67.80932617187501],[15.0484375,67.95576171875],[15.134277343749998,67.972705078125],[15.274414062500028,67.9609375],[15.400878906250057,67.91962890625004],[15.506640625000017,67.92622070312495],[15.621386718750017,67.94829101562502],[15.605761718750044,67.987890625],[15.356933593750055,68.00361328125001],[15.292871093750081,68.03647460937503],[15.316015624999977,68.06875],[15.486816406250057,68.10283203125005],[15.656640625000023,68.16435546875007],[15.851269531250066,68.18217773437503],[16.007910156250006,68.22871093750003],[16.0380859375,68.21816406250002],[16.064550781249977,68.19990234375001],[16.120800781250068,68.02734375000003],[16.2607421875,67.88657226562506],[16.312304687500017,67.88144531249998],[16.258593750000074,68.00122070312506],[16.308691406249977,68.03564453125006],[16.372167968750034,68.06181640625005],[16.39199218750008,68.09160156249999],[16.319238281249994,68.10175781250001],[16.259765625000057,68.14453125000003],[16.174804687500057,68.28125],[16.203808593750008,68.31674804687502],[16.387890625000036,68.38955078125002],[16.61884765625001,68.40629882812507],[16.864941406250068,68.35527343750005],[16.95136718750001,68.35468750000004],[17.094042968750017,68.36840820312497],[17.33613281250004,68.4103515625],[17.478515625,68.42631835937505],[17.552832031250063,68.42626953125006],[17.57119140625005,68.44746093750001],[17.50234375000008,68.46108398437501],[17.48017578124998,68.47431640624998],[17.42617187499999,68.48193359375003],[17.202343750000068,68.45927734375002],[16.584863281250023,68.46645507812495],[16.52529296875005,68.490673828125],[16.51435546875004,68.53256835937503],[16.579882812500074,68.59267578125002],[16.65185546875,68.62578125000002],[16.88466796875008,68.68540039062498],[17.131152343750045,68.69345703125003],[17.39082031250001,68.799365234375],[17.490039062500042,68.87875976562503],[17.54628906250005,69.001123046875],[17.704589843750057,69.10004882812501],[18.101464843749994,69.15629882812499],[18.117480468750074,69.18120117187502],[18.07539062500001,69.23261718750001],[18.078710937499977,69.32524414062505],[18.1875,69.43310546875],[18.259765625,69.47060546875],[18.293164062500065,69.47509765625003],[18.37871093749999,69.43984375000002],[18.48261718750004,69.36484375000003],[18.6455078125,69.321875],[18.85898437500006,69.31445312499997],[18.915917968750023,69.33559570312501],[18.75,69.37841796875006],[18.62441406250005,69.434375],[18.614453125000068,69.49057617187498],[18.67402343750004,69.520361328125],[18.766601562500057,69.51704101562494],[18.88281250000003,69.52333984375],[18.99111328125005,69.56113281250006],[19.006835937500057,69.58769531250005],[19.011328125,69.62373046875],[19.038378906250017,69.66040039062503],[19.197265625000057,69.74785156249999],[19.68701171875,69.80473632812505],[19.722460937500014,69.781640625],[19.695996093750036,69.61293945312505],[19.639746093750034,69.50380859375002],[19.64150390625005,69.42402343750001],[19.736816406249996,69.50380859375002],[19.864648437500023,69.72211914062498],[19.960546875000034,69.824609375],[20.068945312500006,69.883447265625],[20.14638671875005,69.89672851562503],[20.22304687500005,69.92719726562501],[20.324218750000057,69.94531249999997],[20.35517578125004,69.92192382812502],[20.38720703125,69.86762695312495],[20.33271484375001,69.67695312500001],[20.338183593750045,69.61665039062498],[20.277148437500045,69.53583984374995],[20.04375,69.35566406250004],[20.054492187500074,69.33266601562497],[20.107226562500074,69.34121093750002],[20.197656250000023,69.37094726562502],[20.48671875000002,69.54208984375],[20.739453124999983,69.52050781250003],[20.742578125000023,69.53452148437506],[20.661523437500023,69.58471679687497],[20.5625,69.6328125],[20.532714843750053,69.69233398437495],[20.545996093750002,69.85107421874997],[20.622070312500057,69.91391601562496],[20.840332031250025,69.90732421874998],[20.971093750000023,69.91601562499997],[21.03212890625002,69.887451171875],[21.163085937500057,69.88950195312498],[21.253710937500042,70.00322265625005],[21.432910156250045,70.01318359375006],[21.590234375000048,69.93803710937502],[21.779589843750074,69.887451171875],[21.931738281250063,69.81469726562503],[21.97470703125003,69.83457031249998],[21.892578125,70.00424804687499],[21.802734375,70.066064453125],[21.60781250000008,70.09819335937503],[21.400390625,70.17446289062505],[21.346289062499977,70.208251953125],[21.355761718750045,70.23339843749997],[21.53876953125004,70.25766601562503],[21.78027343750003,70.22988281249997],[21.995507812499994,70.29335937500002],[22.054394531250008,70.27597656250003],[22.219433593750065,70.30917968750003],[22.321972656250065,70.264501953125],[22.384765625,70.277734375],[22.421191406250042,70.33759765624995],[22.684570312500057,70.374755859375],[22.851660156249977,70.34047851562501],[22.941210937500017,70.30498046874999],[22.98281250000005,70.23676757812504],[23.046484375000063,70.10185546874999],[23.17695312500001,70.029052734375],[23.25791015625006,69.993310546875],[23.35390625000008,69.98339843750003],[23.400195312500017,70.01977539062497],[23.310253906250068,70.06357421875],[23.28603515625002,70.10483398437496],[23.3291015625,70.20722656249995],[23.37939453125003,70.2474609375],[23.661230468750063,70.399755859375],[23.89716796875001,70.47875976562503],[24.03847656250002,70.48535156250006],[24.28554687500008,70.66240234375005],[24.355566406250034,70.69458007812503],[24.420019531250034,70.70200195312503],[24.40351562500004,70.74531249999998],[24.268164062500006,70.77270507812497],[24.263476562500017,70.82631835937497],[24.441796875000023,70.89155273437501],[24.658007812500014,71.00102539062505],[24.764746093750006,71.00844726562502],[24.83164062500003,70.97802734374997],[25.042187500000036,70.92861328125002],[25.171191406250014,70.87202148437495],[25.264648437500057,70.84350585937499],[25.32539062500001,70.84941406250003],[25.375585937500006,70.891943359375],[25.43593750000005,70.91186523437499],[25.569824218750057,70.90068359375],[25.649707031250074,70.87333984375003],[25.711914062500053,70.8697265625],[25.768164062500063,70.85317382812502],[25.78144531250001,70.816796875],[25.665625,70.77714843749997],[25.468261718750053,70.67197265625006],[25.273535156250006,70.55239257812502],[25.209277343750045,70.489404296875],[25.14638671875002,70.32402343750005],[24.99423828125003,70.21821289062498],[24.982714843749985,70.14399414062495],[25.04384765625002,70.10903320312502],[25.21181640625005,70.13647460937503],[25.418847656250023,70.23549804687505],[25.470507812500074,70.34057617187503],[25.988085937500014,70.62539062499997],[26.230859375000076,70.78261718750002],[26.506933593750006,70.91279296875001],[26.66132812500004,70.93974609374999],[26.733984375,70.85356445312502],[26.675488281250068,70.740966796875],[26.558203125000063,70.66914062500001],[26.644628906250006,70.63623046874997],[26.628125,70.55087890624998],[26.601171875000034,70.50346679687502],[26.583984375,70.45380859375001],[26.58505859375003,70.41000976562496],[26.666113281250034,70.42167968750003],[26.98935546875006,70.51137695312502],[27.071289062500057,70.60844726562499],[27.14726562500007,70.68120117187507],[27.18369140625003,70.74404296875],[27.309375,70.80356445312502],[27.546484375000063,70.80400390625005],[27.555664062500057,70.827392578125],[27.26904296875003,70.91000976562506],[27.23525390625008,70.94721679687498],[27.331640624999977,70.99672851562504],[27.597070312500048,71.09130859375003],[27.73349609375006,71.08085937500005],[27.81503906250006,71.059375],[28.141699218750002,71.04301757812507],[28.392285156250068,70.97529296875004],[28.38271484375008,70.86943359375005],[28.326855468750065,70.82519531249999],[28.271875,70.79794921875006],[27.950976562500045,70.71757812500002],[27.898046875,70.6779296875]]],[[[25.58632812500005,71.14208984375],[25.85351562500003,71.10385742187503],[25.94501953125001,71.104638671875],[26.077636718750025,71.033154296875],[26.146875,71.03950195312495],[26.13378906250003,70.99580078125004],[25.999707031250068,70.97509765625],[25.791308593750074,70.9625],[25.76015625000002,70.95380859375001],[25.582031250000057,70.960791015625],[25.482031250000034,71.01958007812497],[25.31494140625,71.03413085937504],[25.315234375000074,71.05297851562506],[25.423437499999977,71.09741210937503],[25.58632812500005,71.14208984375]]],[[[-8.953564453124983,70.83916015625002],[-9.045800781249937,70.83266601562502],[-9.098876953125,70.85488281250001],[-8.964648437499932,70.91591796875002],[-8.520800781250017,71.03066406250002],[-8.343701171874983,71.14013671875003],[-8.001367187499966,71.17768554687495],[-7.978808593749989,71.11689453125001],[-8.002099609374937,71.04125976562497],[-8.30234375,70.98115234374998],[-8.635351562499977,70.94042968750003],[-8.953564453124983,70.83916015625002]]],[[[19.219335937500006,74.39101562500002],[19.098535156249994,74.35214843749999],[18.917578125,74.41064453125003],[18.797460937500034,74.48569335937503],[18.86123046875008,74.51416015624997],[19.182910156250045,74.51791992187503],[19.261523437500074,74.47895507812498],[19.274707031250017,74.45673828124998],[19.219335937500006,74.39101562500002]]],[[[21.60810546875004,78.59570312499997],[21.74560546874997,78.57202148437503],[22.04316406250004,78.57695312500007],[22.207324218750074,78.40766601562495],[22.29951171875004,78.22817382812497],[22.449316406250002,78.215234375],[22.734570312500008,78.23994140624998],[22.988867187500063,78.25195312500001],[23.119238281250063,78.23862304687498],[23.351660156250063,78.18627929687497],[23.45195312500007,78.14946289062502],[23.36464843750005,78.12050781249995],[23.151953125000063,78.08808593750004],[23.11669921874997,77.99150390624999],[23.33056640625003,77.95786132812498],[23.683984375000076,77.87543945312495],[23.883007812500036,77.86474609375],[24.238281250000025,77.89853515625006],[24.571484375000068,77.83442382812495],[24.901855468750057,77.756591796875],[24.12978515625005,77.65825195312505],[24.06191406250008,77.630615234375],[23.95498046875005,77.55771484374998],[23.84121093750005,77.49775390625004],[23.736132812500045,77.46235351562501],[23.505175781250074,77.40141601562502],[23.380859375000053,77.38032226562498],[23.101367187500042,77.38505859374999],[22.99667968750003,77.36079101562501],[22.899511718750063,77.31137695312498],[22.80175781250003,77.27578125000002],[22.55371093750003,77.26665039062502],[22.426953125000065,77.31591796875003],[22.46884765625006,77.33110351562502],[22.486621093750045,77.36010742187506],[22.442480468750034,77.42934570312502],[22.67890625000004,77.500146484375],[22.732617187500065,77.53935546875007],[22.685351562500045,77.553515625],[22.62031250000001,77.54960937500002],[22.448242187500057,77.57114257812506],[22.397265625000045,77.57011718750002],[22.25458984375004,77.52885742187505],[22.056835937500065,77.50117187500001],[21.85615234375004,77.494140625],[21.049902343750006,77.44096679687502],[20.928125,77.45966796874998],[20.873144531250063,77.56533203125002],[21.201074218750076,77.61948242187503],[21.25146484375003,77.71093750000003],[21.33417968750001,77.77177734374997],[21.430859375000068,77.81210937500003],[21.6083984375,77.91606445312499],[21.653125,77.92353515624998],[21.210449218750025,78.00576171874997],[21.035449218750074,78.0591796875],[20.844921875000068,78.16586914062498],[20.786425781250074,78.25214843749998],[20.528320312500053,78.32558593750002],[20.560253906249983,78.41938476562504],[20.372753906250068,78.41201171875002],[20.227929687500048,78.47783203125005],[20.36269531250008,78.51479492187502],[21.046875,78.55673828125003],[21.454785156250068,78.59755859375],[21.60810546875004,78.59570312499997]]],[[[26.875976562500057,78.64892578124997],[26.729492187500057,78.64648437500001],[26.459570312500034,78.72026367187505],[26.407714843750057,78.78432617187502],[26.455761718750065,78.81049804687495],[26.58593750000003,78.81147460937498],[26.788769531250068,78.723974609375],[27.007617187500045,78.69750976562503],[26.875976562500057,78.64892578124997]]],[[[11.250292968750015,78.610693359375],[11.261718750000027,78.54169921874998],[11.42421875,78.54858398437497],[11.616308593750063,78.47509765624999],[11.82568359375,78.43608398437505],[11.884863281250063,78.40932617187502],[11.929394531250068,78.37490234375002],[12.056152343750057,78.30561523437504],[12.116406250000068,78.232568359375],[11.96503906250004,78.224853515625],[11.75654296875004,78.32900390625],[11.586523437500032,78.38823242187499],[11.372460937500023,78.43876953125007],[11.19921875,78.44125976562503],[11.121289062500011,78.46328125],[10.840625,78.64472656250001],[10.788867187500074,78.68652343749999],[10.628417968750057,78.75385742187495],[10.557617187500028,78.8375],[10.55820312500006,78.90292968750003],[10.77285156250008,78.8875],[10.960839843750023,78.84638671874997],[11.123925781250021,78.75336914062504],[11.152929687500063,78.724462890625],[11.078222656250034,78.68603515625],[11.15498046875004,78.64057617187498],[11.250292968750015,78.610693359375]]],[[[29.047070312500068,78.91206054687504],[29.345410156250097,78.90576171875],[29.645117187500063,78.92163085937503],[29.69667968750005,78.90473632812494],[29.31054687499997,78.85209960937497],[28.881152343750014,78.88007812500001],[28.494531250000023,78.88720703125003],[28.037890625000074,78.8287109375],[27.88906250000005,78.85214843749999],[28.120996093750048,78.908447265625],[28.374023437499968,78.92705078125007],[28.41474609375001,78.96142578124997],[28.511132812500023,78.96733398437502],[28.845214843750057,78.97084960937502],[29.047070312500068,78.91206054687504]]],[[[16.78671875000003,79.90673828125],[16.838476562500006,79.90478515625003],[16.888964843750074,79.91542968749998],[16.92558593750007,79.94345703125],[16.96640625000003,79.95893554687498],[17.219433593750068,79.940771484375],[17.578222656249977,79.88466796875002],[17.68476562500001,79.85703125],[17.834570312499977,79.80004882812501],[17.956152343750063,79.70424804687505],[17.85976562500005,79.63500976562497],[17.732617187500008,79.56953124999995],[17.6875,79.53334960937505],[17.733984375,79.48134765625002],[17.715039062500068,79.43076171875],[17.66875,79.38593750000004],[17.86103515625004,79.43706054687505],[18.272070312500034,79.60058593749997],[18.333300781250074,79.61069335937498],[18.39736328125008,79.60517578125001],[18.58144531250008,79.57158203125002],[18.7484375,79.48818359375],[18.785253906250034,79.46059570312497],[18.815234375000017,79.42666015624997],[18.83242187500005,79.38476562499997],[18.822949218749983,79.33666992187503],[18.807421875000017,79.30317382812495],[18.720019531250074,79.28149414062497],[18.677832031250006,79.26171875000001],[18.772265625000074,79.26025390625],[18.88007812500001,79.23427734375005],[18.97900390625,79.179150390625],[19.089453125000034,79.15703125000002],[19.490234375000057,79.17568359375],[19.750878906250023,79.14682617187498],[19.893554687500057,79.05620117187499],[20.11376953124997,79.07670898437502],[20.11445312500004,79.125],[20.162695312500006,79.14565429687502],[20.458203125000068,79.12924804687506],[20.61103515625004,79.10664062499998],[20.767187500000063,79.05913085937507],[20.50068359375001,78.98139648437495],[20.7203125,78.90668945312501],[21.089648437500017,78.85263671875],[21.312207031250068,78.79584960937498],[21.35253906250003,78.77202148437502],[21.38876953125003,78.74042968749998],[21.243945312500017,78.69941406249995],[21.096289062500034,78.67626953125004],[20.72480468750004,78.67231445312495],[20.387011718750045,78.64326171874998],[19.76875,78.62270507812497],[19.67675781250003,78.60957031249995],[19.65498046875004,78.59785156249998],[19.61855468750008,78.562158203125],[19.380664062500017,78.47978515624999],[19.150488281250034,78.37939453125006],[19.055664062500057,78.3189453125],[18.98378906250008,78.23422851562506],[18.957617187499977,78.18247070312498],[19.00869140625008,78.13227539062498],[18.9951171875,78.08149414062501],[18.822070312500074,78.04169921875001],[18.712304687500023,78.04008789062502],[18.574609375000023,78.04799804687505],[18.439257812500074,78.025048828125],[18.4306640625,77.99057617187498],[18.438671875000036,77.94204101562502],[18.40400390625001,77.79394531249997],[18.361914062500034,77.68227539062497],[18.29873046875005,77.57856445312498],[18.227929687500023,77.52260742187502],[18.13740234375004,77.50703124999995],[17.84707031250005,77.49677734375001],[17.623339843750017,77.39936523437495],[17.442480468750034,77.22524414062502],[17.34863281250003,77.15688476562505],[17.15253906250004,77.04892578124998],[17.18789062500005,77.01064453125],[17.249023437500057,76.96918945312498],[17.141992187500023,76.89492187499997],[16.976660156250006,76.81162109375002],[16.979882812500023,76.77939453125006],[17.03554687499999,76.72036132812502],[17.06269531250004,76.65898437500005],[16.935156250000063,76.60615234375001],[16.700488281250045,76.57929687499994],[16.46191406250003,76.60932617187495],[16.345800781250006,76.64477539062497],[16.238085937500074,76.70151367187499],[16.123828125000074,76.73852539062497],[16.004492187500006,76.76074218749997],[15.546777343750021,76.88642578125001],[15.124218749999983,77.085107421875],[14.73847656250001,77.16235351562499],[14.486914062500006,77.1990234375],[14.365820312500032,77.23447265625003],[14.24755859375,77.28212890624997],[14.145312500000045,77.33559570312502],[14.050390624999977,77.40322265625005],[14.004199218750074,77.44521484375],[13.995703125000034,77.50820312500002],[14.026074218750011,77.545166015625],[14.07128906249997,77.56411132812505],[14.377636718750038,77.57963867187502],[14.48779296875,77.57084960937499],[14.596289062500004,77.53793945312503],[14.69501953125004,77.525048828125],[14.920800781250023,77.68881835937506],[16.205957031250023,77.78247070312503],[16.619140625,77.79868164062506],[17.033300781250006,77.79770507812503],[16.96875,77.841943359375],[16.91406250000003,77.89799804687505],[16.852929687500023,77.91157226562495],[16.539648437500063,77.88022460937506],[16.060058593750057,77.84711914062497],[15.82636718750004,77.84707031249995],[15.58535156250005,77.86914062500003],[15.344824218750004,77.85698242187502],[15.096875,77.80903320312504],[14.846875,77.77866210937506],[14.60390625000005,77.76645507812506],[14.089941406250063,77.77138671875],[13.9625,77.796240234375],[13.791113281250004,77.85380859374999],[13.749609375,77.88330078124997],[13.714160156250045,77.91943359375004],[13.68056640625005,78.028125],[13.717675781250051,78.05761718750004],[13.770117187500006,78.07460937500005],[13.824023437500044,78.08500976562502],[13.936914062500051,78.08554687500006],[14.04775390625008,78.06684570312498],[14.307226562500006,78.00507812500001],[14.248144531250034,78.07138671874999],[14.994726562500004,78.151220703125],[15.34140625,78.220947265625],[15.519433593750053,78.23271484375002],[15.698046875000019,78.22758789062505],[15.658691406249998,78.26469726562503],[15.657128906250023,78.2990234375],[15.783886718750011,78.32705078125005],[15.87539062500008,78.33911132812503],[16.15029296875005,78.35288085937498],[16.776953125,78.35043945312499],[17.00292968750003,78.36938476562497],[17.171972656250006,78.41713867187502],[16.991796875000063,78.40048828124999],[16.811230468750036,78.39726562500005],[16.72656250000003,78.40717773437504],[16.535351562500068,78.448876953125],[16.44863281250008,78.50356445312502],[16.696582031250042,78.612890625],[16.78261718750008,78.66362304687505],[16.53046875000004,78.65629882812507],[16.44628906250003,78.638525390625],[16.157519531250014,78.53813476562507],[15.94404296875004,78.493017578125],[15.680664062500028,78.47133789062505],[15.417382812500023,78.47324218749998],[15.35996093750006,78.48754882812497],[15.279394531249977,78.55410156250002],[15.254199218750017,78.5890625],[15.264941406250074,78.60830078124997],[15.34833984375001,78.66313476562505],[15.391601562500027,78.72119140625006],[15.384179687500021,78.77119140625],[15.322753906250027,78.78120117187501],[15.225292968750068,78.73232421875002],[15.137304687500004,78.66425781250001],[15.01630859375004,78.63012695312497],[14.891796875000068,78.639453125],[14.838671874999989,78.66557617187499],[14.792382812500081,78.70556640624997],[14.74355468750008,78.720947265625],[14.689257812500017,78.720947265625],[14.577636718750028,78.70498046875001],[14.467187500000078,78.67539062500003],[14.505273437500021,78.63051757812497],[14.515429687500044,78.58056640625],[14.467773437500027,78.54091796875],[14.431835937500068,78.49248046874999],[14.545605468750068,78.46196289062499],[14.638281250000034,78.414599609375],[14.499511718749998,78.39238281250005],[14.363281250000059,78.35991210937499],[14.23828125,78.30986328125002],[14.110449218750063,78.27089843749997],[13.907617187500023,78.26674804687502],[13.654980468750068,78.24516601562506],[13.150195312499987,78.2375],[12.91279296875004,78.30107421874999],[12.869531250000023,78.33125],[12.822167968750051,78.35146484375005],[12.664648437500034,78.384765625],[12.434765625000011,78.482958984375],[12.257910156250034,78.59467773437504],[12.13828125,78.60551757812502],[11.961718750000072,78.64238281249999],[11.865527343750017,78.67421875],[11.77382812500008,78.71640625000006],[11.746289062500068,78.766259765625],[11.755175781250017,78.81166992187502],[11.86103515625001,78.83188476562502],[11.611035156250038,78.88295898437495],[11.365429687500011,78.95039062500004],[11.456152343750032,78.972998046875],[11.547558593749981,78.98295898437499],[12.274902343750028,78.90449218750001],[12.323437500000068,78.91425781249995],[12.4033203125,78.95322265624998],[12.375,78.96635742187499],[12.253125,78.97534179687506],[12.08730468750008,78.97509765625],[12.04580078125008,78.98315429687503],[11.981835937499994,79.02529296875002],[11.925683593750023,79.07724609375003],[11.901953124999977,79.11186523437506],[11.892773437500068,79.15234375000006],[12.016113281250057,79.21308593749998],[12.083984375000027,79.26752929687498],[11.978320312499987,79.29267578124995],[11.679296875,79.291162109375],[11.579785156250068,79.28349609375005],[11.616406250000066,79.20527343749998],[11.521191406250038,79.15126953125],[11.338867187500028,79.10913085937503],[11.208105468750032,79.12963867187503],[11.107226562500074,79.23295898437503],[10.975390625000045,79.30488281249995],[10.925781250000057,79.35019531250003],[10.888085937500023,79.4154296875],[10.834375,79.46284179687498],[10.737597656250017,79.52016601562502],[10.725,79.55551757812503],[10.737011718750068,79.58164062500002],[10.810742187500068,79.64091796875002],[10.754589843750011,79.69033203124997],[10.686230468750011,79.73359374999997],[10.682128906249998,79.75825195312504],[10.746386718750017,79.78867187499999],[10.804003906250045,79.79877929687503],[10.86591796875004,79.79658203125001],[11.049609375000072,79.76030273437502],[11.150390625,79.71699218749998],[11.185253906249981,79.72045898437497],[11.250585937500063,79.78486328125004],[11.343652343750023,79.79941406249998],[11.702343750000011,79.82060546875003],[12.101757812500011,79.737548828125],[12.205175781250034,79.71909179687502],[12.287792968750068,79.713134765625],[12.245214843750006,79.75],[12.219140625000023,79.797900390625],[12.279980468749981,79.81596679687507],[12.602441406250051,79.77324218750007],[12.753515625,79.77578124999995],[13.107519531250006,79.83173828124998],[13.69287109374997,79.860986328125],[13.914160156250034,79.81694335937499],[13.925683593750078,79.79340820312501],[13.921093750000011,79.76171875000003],[13.907031249999989,79.75219726562501],[13.777539062500011,79.71528320312497],[13.03925781250004,79.68515624999998],[12.555371093750068,79.56948242187502],[13.215136718749989,79.58808593750001],[13.333789062500017,79.57480468750005],[13.383593750000044,79.48076171874999],[13.431640625000057,79.4708984375],[13.601269531250068,79.45722656249998],[13.716210937500023,79.42915039062495],[13.833691406250068,79.37568359374998],[13.957226562500011,79.33964843750002],[14.029589843750017,79.34414062500005],[14.05585937500004,79.38310546874999],[14.026367187500057,79.42929687499998],[14.011132812500078,79.48193359375006],[14.019824218750072,79.53867187499998],[14.039843750000045,79.58564453124995],[14.17841796875004,79.61870117187502],[14.379785156250023,79.72597656250002],[14.59365234375008,79.79873046875002],[14.831835937500015,79.76640625000002],[15.05234375,79.67534179687502],[15.251269531250045,79.54545898437502],[15.443945312500032,79.406787109375],[15.660156250000028,79.23486328124997],[15.764062500000051,79.17426757812498],[15.858496093750004,79.159912109375],[16.294531250000034,78.98105468750006],[16.34375,78.97612304687502],[16.253515625000034,79.11210937500002],[16.027539062499983,79.34238281250003],[15.875097656250034,79.51923828125001],[15.840722656250051,79.58686523437501],[15.81611328125001,79.68183593750001],[15.82578125,79.70903320312505],[15.845117187500051,79.73359374999997],[15.955761718750038,79.83510742187497],[16.100195312500063,79.88442382812497],[16.056640625000057,79.95395507812503],[16.093847656250002,80.00732421874997],[16.24570312500003,80.04946289062501],[16.38662109375005,80.05258789062503],[16.524023437500063,80.02050781249999],[16.78671875000003,79.90673828125]]],[[[32.52597656250006,80.11914062499999],[31.577636718750025,80.08144531249997],[31.48193359374997,80.10791015625003],[33.01914062500006,80.21796874999998],[33.098632812499964,80.22871093749995],[33.38398437500004,80.24233398437497],[33.62929687499999,80.21743164062497],[33.556640624999964,80.19814453125002],[32.52597656250006,80.11914062499999]]],[[[18.74160156250002,80.30092773437502],[18.525,80.24560546875003],[18.162207031250034,80.28818359374998],[18.205566406249968,80.331787109375],[18.29169921875004,80.35834960937498],[18.519335937500045,80.34833984374998],[18.74160156250002,80.30092773437502]]],[[[20.897851562500023,80.24995117187501],[20.99843750000008,80.23881835937505],[21.549218750000023,80.242919921875],[21.654882812500063,80.21845703124998],[21.69667968750005,80.1591796875],[21.780664062500023,80.13876953125],[21.897753906250074,80.13247070312497],[22.19023437500007,80.059716796875],[22.28974609374998,80.04921874999995],[22.37636718750005,80.08964843750005],[22.44267578125007,80.19028320312503],[22.44619140625008,80.308349609375],[22.417871093750076,80.36552734375002],[22.450781250000034,80.40224609375005],[22.54882812500003,80.41645507812501],[22.672070312499983,80.41264648437505],[22.792578125000034,80.4330078125],[22.896875,80.46899414062497],[23.00800781250004,80.473974609375],[23.25136718750005,80.44667968750005],[23.315429687500057,80.42524414062501],[23.250097656250063,80.38085937500003],[23.224609375000025,80.31762695312503],[23.114550781250074,80.18696289062498],[23.353320312500045,80.17885742187502],[23.68798828125003,80.20654296874997],[23.77294921875,80.24438476562503],[23.952929687500074,80.30458984375005],[24.14296875000008,80.295166015625],[24.234082031250068,80.303125],[24.28017578125005,80.32929687500001],[24.29755859375004,80.36040039062503],[24.402636718750045,80.35517578124995],[24.546679687500074,80.295166015625],[24.61367187500005,80.28583984374994],[24.736328124999968,80.30131835937499],[24.785937500000045,80.30068359374997],[24.907031250000045,80.27666015625005],[25.47128906250006,80.23310546874995],[25.666894531250023,80.20976562499999],[25.751171875000068,80.18803710937502],[25.83632812500008,80.17514648437505],[26.43671875000001,80.17548828125004],[26.86083984375,80.16000976562498],[27.01718750000006,80.12548828124997],[27.148339843750023,80.05922851562497],[27.19863281250008,79.90659179687506],[27.079882812500045,79.86538085937498],[26.22109375000005,79.67744140625001],[26.00585937499997,79.61704101562503],[25.902050781250065,79.56137695312498],[25.726367187500074,79.43974609375007],[25.641210937500034,79.40302734374995],[25.23906249999999,79.34506835937505],[25.145117187500034,79.33886718750003],[24.842871093750006,79.36723632812505],[24.750585937500034,79.36459960937502],[24.383398437500034,79.301611328125],[24.2568359375,79.26347656250005],[24.132910156250063,79.21547851562502],[23.94775390625,79.19428710937498],[23.758789062500057,79.20561523437506],[22.903710937500023,79.23066406250001],[22.789160156250034,79.26435546874995],[22.69570312500002,79.32905273437497],[22.865527343750045,79.41186523437497],[21.911425781250017,79.38105468750001],[20.861132812500017,79.39785156249997],[20.805566406250048,79.40952148437503],[20.760839843750006,79.44150390624998],[20.399511718750006,79.46337890625],[20.128222656250074,79.489599609375],[19.90019531250007,79.53378906250002],[19.674609375000045,79.591162109375],[19.746679687500063,79.61796875000005],[19.821093750000045,79.63364257812503],[20.014843750000065,79.64023437500006],[20.187109375,79.63227539062504],[20.493457031250074,79.63276367187495],[20.56484375000005,79.69052734375],[20.686816406250014,79.70717773437502],[20.784082031250023,79.748583984375],[20.460742187500045,79.774658203125],[20.123437500000076,79.778564453125],[19.89863281250004,79.74418945312502],[19.63808593750005,79.72861328125003],[19.4,79.72656249999997],[18.94208984375001,79.736328125],[18.725,79.7607421875],[18.428027343750017,79.82451171875002],[18.32470703125,79.859716796875],[18.284765625000034,79.88735351562505],[18.25537109375,79.92919921875003],[18.594628906250023,79.96669921875005],[18.72646484375005,79.99624023437502],[18.855957031250053,80.03662109375],[18.343847656250006,80.05957031250004],[18.129492187500034,80.09340820312502],[17.91689453125005,80.14311523437502],[18.089453125000034,80.17114257812503],[18.77929687499997,80.19350585937497],[18.961914062500057,80.17480468749997],[19.14296875000008,80.138671875],[19.343359375000063,80.11640624999998],[19.537109375,80.16323242187502],[19.354687500000068,80.18540039062499],[19.19140625,80.26323242187505],[19.156933593750008,80.30185546875002],[19.178320312500006,80.33154296875003],[19.263769531250006,80.33598632812505],[19.327441406250017,80.323095703125],[19.568457031250006,80.25],[19.751074218749977,80.227197265625],[19.80224609375003,80.29472656249999],[19.81035156250007,80.32680664062505],[19.777148437500045,80.35336914062503],[19.691308593750076,80.40234374999997],[19.614355468750034,80.462548828125],[19.733300781249994,80.47783203124999],[19.85117187500003,80.47119140624997],[20.104296875000017,80.42998046875],[20.359375,80.40092773437505],[20.475878906250045,80.37163085937502],[20.693457031250034,80.298681640625],[20.897851562500023,80.24995117187501]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Poland","sov_a3":"POL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Poland","adm0_a3":"POL","geou_dif":0,"geounit":"Poland","gu_a3":"POL","su_dif":0,"subunit":"Poland","su_a3":"POL","brk_diff":0,"name":"Poland","name_long":"Poland","brk_a3":"POL","brk_name":"Poland","brk_group":null,"abbrev":"Pol.","postal":"PL","formal_en":"Republic of Poland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Poland","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":1,"mapcolor13":2,"pop_est":38482919,"gdp_md_est":667900,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"PL","iso_a3":"POL","iso_n3":"616","un_a3":"616","wb_a2":"PL","wb_a3":"POL","woe_id":-99,"adm0_a3_is":"POL","adm0_a3_us":"POL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"POL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.604394531250023,54.4591796875],[19.64423828125001,54.447070312499996],[19.92431640625,54.433984375],[20.20820312500001,54.420751953125],[20.66474609375001,54.406640625],[21.140527343750023,54.391796875],[21.634179687500023,54.37646484374999],[22.16845703125,54.35986328125],[22.731835937500023,54.35009765625],[22.766210937500006,54.356787109375],[22.82373046875,54.39580078124999],[22.893945312500023,54.39052734375],[22.97675781250001,54.366357421875],[23.015527343750023,54.34833984375],[23.031933593750008,54.327880859375],[23.04218750000001,54.30419921875],[23.0875,54.299462890625],[23.17031250000002,54.2814453125],[23.282324218750006,54.24033203125],[23.370117187499996,54.200488281249996],[23.453613281249996,54.14345703125],[23.481347656250023,54.07900390625],[23.483007812500006,54.00595703125],[23.477636718750006,53.95893554687499],[23.484667968750017,53.939794921875],[23.598925781250017,53.59921875],[23.78925781250001,53.270947265625],[23.859179687500017,53.112109375],[23.887109375000023,53.0275390625],[23.909375,52.9048828125],[23.916308593750017,52.81875],[23.915429687500023,52.770263671875],[23.901269531250023,52.70361328125],[23.844726562499996,52.664208984375],[23.479589843750006,52.5515625],[23.410937500000017,52.5162109375],[23.303320312500006,52.428369140624994],[23.2041015625,52.337890625],[23.18125,52.306982421875],[23.175097656250017,52.28662109375],[23.19697265625001,52.25693359375],[23.327148437499996,52.208447265625],[23.458398437500023,52.16953125],[23.50117187500001,52.140380859375],[23.597949218750017,52.103076171874996],[23.63330078125,52.069580078125],[23.652441406250006,52.040380859375],[23.65107421875001,51.972998046875],[23.607421875,51.879785156249994],[23.62568359375001,51.80932617187499],[23.581347656250017,51.76240234375],[23.54482421875002,51.710253906249996],[23.539648437500006,51.618896484375],[23.605273437500017,51.51791992187499],[23.65888671875001,51.448974609375],[23.6796875,51.39492187499999],[23.657617187500023,51.352490234375],[23.66445312500002,51.31005859374999],[23.712207031250017,51.26513671875],[23.863476562500008,51.126220703125],[23.938085937500006,50.992529296875],[23.985742187500023,50.9404296875],[24.095800781250002,50.87275390625],[24.105761718750017,50.84497070312499],[24.061621093750002,50.81953125],[24.025976562500006,50.816162109375],[23.9970703125,50.809375],[23.978417968750023,50.785595703125],[24.007324218749996,50.76015625],[24.046289062500023,50.722802734374994],[24.0947265625,50.61704101562499],[24.089941406250006,50.53046875],[24.052636718750023,50.50844726562499],[24.004980468750006,50.45703125],[23.97265625,50.410058593749994],[23.711718750000017,50.37734375],[23.649023437500002,50.327050781249994],[23.506152343750017,50.229833984375],[23.408593750000023,50.17392578125],[23.264453125000017,50.0728515625],[23.03632812500001,49.899072265624994],[22.952246093750006,49.82636718749999],[22.890722656250006,49.766259765624994],[22.706152343750006,49.606201171875],[22.649414062499996,49.539013671875],[22.66064453125,49.483691406249996],[22.71992187500001,49.353808593749996],[22.732421875,49.295166015625],[22.721972656250017,49.240966796875],[22.70234375,49.192724609375],[22.705664062500006,49.171191406249996],[22.760156250000023,49.13623046875],[22.847070312500023,49.08125],[22.85205078125,49.062744140625],[22.839746093750023,49.03891601562499],[22.80976562500001,49.020751953125],[22.701269531250006,49.03994140624999],[22.579980468750023,49.077197265624996],[22.538671875,49.07270507812499],[22.473046875000023,49.081298828125],[22.202539062500023,49.153222656249994],[22.020117187500006,49.209521484374996],[22.00214843750001,49.24609375],[21.967675781250023,49.299072265625],[21.890136718749996,49.34345703125],[21.71210937500001,49.38193359375],[21.6396484375,49.411962890625],[21.35048828125002,49.428759765624996],[21.225,49.429443359375],[21.136132812500023,49.417041015624996],[21.079394531250017,49.418261718749996],[21.00117187500001,49.33984375],[20.947265625,49.31708984375],[20.868457031250014,49.314697265625],[20.79951171875001,49.328662109374996],[20.729003906249996,49.369921875],[20.616113281250023,49.39169921875],[20.534570312500023,49.381201171875],[20.474511718750023,49.39018554687499],[20.422656250000017,49.392333984375],[20.404687500000023,49.384082031249996],[20.362988281250008,49.38525390624999],[20.302539062500017,49.365527343749996],[20.23652343750001,49.337646484375],[20.163671875,49.31640625],[20.10761718750001,49.27075195312499],[20.057617187499996,49.181298828124994],[19.916113281250006,49.22138671874999],[19.868945312500017,49.204003906249994],[19.80224609375,49.192333984375],[19.756640625000014,49.204394531249996],[19.767382812500014,49.235205078125],[19.787988281250023,49.269970703125],[19.787011718750023,49.3185546875],[19.77392578125,49.37216796875],[19.730078125,49.389599609375],[19.664160156250006,49.396044921874996],[19.630273437500023,49.40664062499999],[19.62666015625001,49.424365234374996],[19.593066406250017,49.447119140625],[19.534765625,49.504785156249994],[19.47968750000001,49.5763671875],[19.44160156250001,49.59770507812499],[19.386230468749996,49.563623046874994],[19.30234375,49.524853515625],[19.25019531250001,49.51142578125],[19.1494140625,49.4],[18.968359375,49.396240234375],[18.95722656250001,49.44829101562499],[18.93818359375001,49.498291015625],[18.83222656250001,49.510791015624996],[18.82929687500001,49.54013671875],[18.806933593750017,49.613720703125],[18.594628906250023,49.7578125],[18.56884765625,49.81791992187499],[18.5771484375,49.841113281249996],[18.562402343750023,49.879345703125],[18.516210937500006,49.902392578124996],[18.348437500000017,49.929833984374994],[18.305273437500006,49.9140625],[18.26630859375001,49.93027343749999],[18.205273437500008,49.964746093749994],[18.09921875,49.9927734375],[18.087695312500017,50.007275390625],[18.04951171875001,50.03193359375],[18.028320312499996,50.03525390625],[18.0146484375,50.020263671875],[17.983789062500023,49.999072265624996],[17.874804687500014,49.97226562499999],[17.83125,49.983300781249994],[17.79169921875001,50.006591796875],[17.74658203125,50.05678710937499],[17.68105468750002,50.10078125],[17.627050781250002,50.11640625],[17.596289062500006,50.139501953125],[17.58935546875,50.157470703125],[17.709277343750017,50.1935546875],[17.735449218750006,50.230761718749996],[17.720117187500023,50.298632812499996],[17.702246093750006,50.307177734374996],[17.654687500000023,50.284228515624996],[17.554589843750023,50.2640625],[17.462304687500023,50.25478515624999],[17.41523437500001,50.25478515624999],[17.151953125,50.378320312499994],[16.980761718750017,50.41611328125],[16.88007812500001,50.427050781249996],[16.869140625,50.414501953125],[16.91474609375001,50.34521484375],[16.99335937500001,50.25971679687499],[16.989648437500023,50.2369140625],[16.895312500000014,50.20195312499999],[16.841796875,50.18671875],[16.778613281250017,50.15703125],[16.72529296875001,50.116064453125],[16.679101562500023,50.097460937499996],[16.63916015625,50.1021484375],[16.5966796875,50.121923828125],[16.487597656250017,50.248388671875],[16.350488281250023,50.34521484375],[16.334179687500008,50.36689453125],[16.291308593750017,50.371875],[16.230761718750017,50.394091796874996],[16.210351562500023,50.423730468749994],[16.24072265625,50.4546875],[16.282519531250017,50.4830078125],[16.35664062500001,50.50048828125],[16.379101562500008,50.516894531249996],[16.39228515625001,50.541650390624994],[16.419726562500017,50.57363281249999],[16.4125,50.58515625],[16.359960937500006,50.621386718749996],[16.2822265625,50.655615234375],[16.06640625,50.629931640624996],[16.007226562500023,50.611621093749996],[15.973828125000011,50.63544921875],[15.948535156250017,50.670263671875],[15.893945312500023,50.67690429687499],[15.819238281250023,50.70869140625],[15.730566406250006,50.739697265625],[15.643945312500023,50.748876953125],[15.463964843750006,50.79384765624999],[15.394628906250007,50.796289062499994],[15.354394531250021,50.811767578125],[15.312597656250004,50.845751953124996],[15.277050781250011,50.88300781249999],[15.258593750000017,50.958544921874996],[15.125976562499998,50.99287109375],[14.99375,51.01435546875],[14.984472656250006,51.00341796875],[14.989941406250011,50.92724609375],[14.982910156249998,50.88657226562499],[14.895800781250015,50.861376953124996],[14.809375,50.858984375],[14.814257812500015,50.871630859374996],[14.91748046875,51.008740234375],[14.963867187499998,51.09511718749999],[15.016601562499998,51.252734375],[14.953125,51.3771484375],[14.935546875,51.435351562499996],[14.905957031250013,51.46333007812499],[14.724707031250004,51.523876953125],[14.7109375,51.544921875],[14.738671875000025,51.62714843749999],[14.724902343750015,51.66171875],[14.681347656250013,51.698193359375],[14.623925781250023,51.770800781249996],[14.601660156250006,51.832373046875],[14.674902343750006,51.904833984374996],[14.69296875,51.95800781249999],[14.724804687500011,52.030859375],[14.748144531250004,52.07080078124999],[14.752539062500004,52.081835937499996],[14.704589843749998,52.11020507812499],[14.692382812500002,52.150048828124994],[14.705371093750015,52.20747070312499],[14.679882812500011,52.25],[14.615625,52.277636718749996],[14.57392578125001,52.31416015625],[14.554589843750021,52.35966796874999],[14.569726562500025,52.431103515625],[14.619433593750015,52.528515625],[14.514062500000021,52.64560546875],[14.253710937500015,52.782519531249996],[14.128613281250011,52.878222656249996],[14.138867187500011,52.932861328125],[14.193652343750017,52.98232421875],[14.293164062500011,53.0267578125],[14.368554687500021,53.10556640624999],[14.410937500000017,53.199023437499996],[14.412304687500011,53.216748046875],[14.41455078125,53.28349609374999],[14.298730468750023,53.556445312499996],[14.279882812500004,53.624755859375],[14.266113281249998,53.70712890625],[14.258886718750006,53.729638671875],[14.487597656250019,53.671875],[14.58349609375,53.63935546874999],[14.571582031250017,53.67587890625],[14.552148437500021,53.70732421874999],[14.56494140625,53.75351562499999],[14.558398437500017,53.823193359375],[14.350878906250017,53.858740234375],[14.213671875000017,53.870751953125],[14.1982421875,53.91904296875],[14.21142578125,53.950341796875],[14.249316406250017,53.931933593749996],[14.384179687500023,53.92470703125],[14.715722656250023,54.018310546875],[15.288378906250017,54.139892578125],[15.9,54.253955078124996],[16.042773437500017,54.266357421875],[16.186328125000017,54.290380859375],[16.239355468750006,54.333056640624996],[16.292285156250014,54.36162109374999],[16.375585937500006,54.436865234375],[16.55976562500001,54.55380859375],[16.88544921875001,54.59638671875],[17.00703125000001,54.65185546875],[17.26191406250001,54.729541015624996],[17.84296875000001,54.816699218749996],[18.085644531250008,54.83583984375],[18.32343750000001,54.838183593749996],[18.53515625,54.76943359375],[18.75927734375,54.6845703125],[18.799609375000017,54.633349609374996],[18.678320312500006,54.665283203125],[18.5015625,54.741503906249996],[18.436230468750008,54.7447265625],[18.58710937500001,54.512890625],[18.66962890625001,54.430908203125],[18.836425781249996,54.369580078125],[18.97626953125001,54.34892578124999],[19.407128906250023,54.386083984375],[19.56015625,54.434619140624996],[19.604394531250023,54.4591796875]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Romania","sov_a3":"ROU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Romania","adm0_a3":"ROU","geou_dif":0,"geounit":"Romania","gu_a3":"ROU","su_dif":0,"subunit":"Romania","su_a3":"ROU","brk_diff":0,"name":"Romania","name_long":"Romania","brk_a3":"ROU","brk_name":"Romania","brk_group":null,"abbrev":"Rom.","postal":"RO","formal_en":"Romania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Romania","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":3,"mapcolor13":13,"pop_est":22215421,"gdp_md_est":271400,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RO","iso_a3":"ROU","iso_n3":"642","un_a3":"642","wb_a2":"RO","wb_a3":"ROM","woe_id":-99,"adm0_a3_is":"ROU","adm0_a3_us":"ROU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ROU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.2125,45.450439453125],[28.317675781250017,45.347119140625],[28.451269531250006,45.2921875],[28.7607421875,45.234130859375],[28.78828125000001,45.240966796875],[28.791406250000023,45.251904296875],[28.769824218750017,45.266894531249996],[28.7666015625,45.28623046875],[28.78173828125,45.309863281249996],[28.824316406250002,45.311083984374996],[28.894335937500017,45.289941406249994],[29.027441406250006,45.320556640625],[29.223535156250026,45.4029296875],[29.403710937500023,45.41967773437499],[29.567675781250017,45.37080078125],[29.651953125,45.313916015625],[29.705859375000014,45.259912109374994],[29.6890625,45.193212890625],[29.678613281250023,45.151660156249996],[29.635351562500002,44.979638671874994],[29.60546875,44.91547851562499],[29.557519531250023,44.843408203124994],[29.048242187500023,44.757568359375],[29.081054687500004,44.798828125],[29.069140625000017,44.871142578124996],[29.04775390625002,44.92568359374999],[29.0953125,44.975048828125],[28.98066406250001,44.992919921875],[28.930566406250023,44.9658203125],[28.891503906250023,44.91865234374999],[28.92617187500002,44.810009765625],[28.870410156250017,44.749951171875],[28.84902343750002,44.71630859375],[28.84648437500002,44.636865234374994],[28.813574218750006,44.602490234375],[28.807031250000023,44.5650390625],[28.88818359375,44.57475585937499],[28.851757812500008,44.506103515625],[28.69921875,44.37421875],[28.645410156250023,44.295654296875],[28.658593750000023,43.983837890625],[28.590722656250023,43.797412109374996],[28.585351562500023,43.742236328124996],[28.4234375,43.740478515625],[28.37519531250001,43.744775390624994],[28.221972656250017,43.77285156249999],[28.05,43.822412109374994],[27.94892578125001,43.918603515624994],[27.884277343749996,43.987353515624996],[27.738574218750017,43.956298828125],[27.710742187500017,43.964599609375],[27.6708984375,43.997802734375],[27.56103515625,44.020068359374996],[27.425390625,44.0205078125],[27.120703125,44.146142578124994],[27.0869140625,44.167382812499994],[26.847753906250006,44.14619140625],[26.4892578125,44.08398437499999],[26.2158203125,44.007275390625],[25.933398437500017,43.870556640625],[25.81884765625,43.76684570312499],[25.686132812500006,43.711767578125],[25.4970703125,43.670800781249994],[25.15966796875,43.686328125],[24.808203125,43.738427734374994],[24.430566406250023,43.794384765625],[24.22675781250001,43.763476562499996],[23.95078125,43.786669921874996],[23.534570312500023,43.853564453124996],[23.224609375,43.873876953125],[22.919042968750006,43.83447265625],[22.867675781249996,43.864550781249996],[22.8564453125,43.8990234375],[22.868261718750002,43.947900390624994],[22.91132812500001,43.987207031249994],[22.9853515625,44.01699218749999],[23.0244140625,44.047216796875],[23.02851562500001,44.07797851562499],[22.945410156250002,44.12729492187499],[22.775195312500017,44.195214843749994],[22.705078125,44.23779296875],[22.687890625000023,44.248291015625],[22.683300781250008,44.286474609375],[22.64794921875,44.316455078124996],[22.581835937500017,44.33833007812499],[22.530664062500023,44.377978515624996],[22.49453125000002,44.435449218749994],[22.502343750000023,44.489599609375],[22.554003906250017,44.540332031249996],[22.6201171875,44.562353515625],[22.70078125,44.555517578125],[22.734375,44.569921875],[22.72089843750001,44.605517578124996],[22.64208984375,44.6509765625],[22.49765625,44.70625],[22.350683593750006,44.676123046875],[22.200976562500014,44.560693359374994],[22.093066406250017,44.541943359375],[22.026953125,44.61987304687499],[21.909277343750006,44.66611328125],[21.740234375,44.6806640625],[21.636132812500023,44.71044921874999],[21.597070312500023,44.755419921874996],[21.52314453125001,44.790087890624996],[21.36005859375001,44.82666015625],[21.357910156249996,44.86181640625],[21.384375,44.870068359375],[21.442187500000017,44.873388671875],[21.519921875000023,44.880810546875],[21.532324218750006,44.90068359374999],[21.533203125,44.918847656249994],[21.471972656250017,44.9419921875],[21.409960937500017,44.95771484375],[21.377734375000017,44.9734375],[21.35703125,44.990771484374996],[21.352929687500023,45.008984375],[21.37109375,45.021386718749994],[21.395898437500023,45.022216796875],[21.420703125000017,45.032958984375],[21.434472656250023,45.075146484375],[21.467871093750006,45.10986328125],[21.491796875,45.122265625],[21.490234375,45.147900390625],[21.465429687500002,45.171875],[21.431445312500017,45.192529296874994],[21.381738281250023,45.205078125],[21.22646484375002,45.24130859375],[21.147851562500023,45.291748046875],[21.099902343750017,45.29355468749999],[21.023828125000023,45.321533203125],[20.941796875000023,45.36533203125],[20.87080078125001,45.427539062499996],[20.794042968750002,45.46787109375],[20.774218750000017,45.484423828124996],[20.7724609375,45.50009765625],[20.786523437500023,45.517480468749994],[20.78603515625002,45.536474609375],[20.76582031250001,45.597460937499996],[20.779296875,45.662011718749994],[20.775781250000023,45.722509765625],[20.775,45.74980468749999],[20.760156250000023,45.758105468749996],[20.746875,45.748974609375],[20.727832031250017,45.73740234375],[20.709277343750017,45.735253906249994],[20.652734375000023,45.77939453124999],[20.581152343750006,45.869482421875],[20.532617187500023,45.89951171875],[20.43798828125,45.94077148437499],[20.35859375,45.975488281249994],[20.301367187500006,46.05068359374999],[20.241796875,46.10859375],[20.28095703125001,46.1330078125],[20.508105468750017,46.166943359375],[20.613671875000023,46.13349609374999],[20.661035156250023,46.145654296874994],[20.707421875000023,46.172802734375],[20.732714843750017,46.19443359375],[20.737402343750006,46.21748046875],[20.76025390625,46.24624023437499],[20.837011718750002,46.259716796875],[21.039843750000017,46.242236328124996],[21.121679687500006,46.282421875],[21.151953125,46.30434570312499],[21.17041015625,46.352685546874994],[21.191796875000023,46.391552734375],[21.264550781250023,46.4123046875],[21.26328125,46.44775390625],[21.252246093750017,46.486376953124996],[21.29453125,46.5724609375],[21.320214843750023,46.6078125],[21.361328125,46.62075195312499],[21.411035156250023,46.647851562499994],[21.4970703125,46.70429687499999],[21.47705078125,46.753369140625],[21.494433593750017,46.78974609375],[21.584179687500008,46.87836914062499],[21.652636718750017,46.963769531249994],[21.651464843750002,47.00654296875],[21.661425781250017,47.043896484375],[21.721777343750006,47.08481445312499],[21.785449218750017,47.138134765625],[21.86933593750001,47.304589843749994],[21.899218750000014,47.332568359374996],[21.95429687500001,47.36425781249999],[21.99531250000001,47.395703125],[21.99970703125001,47.505029296874994],[22.037988281250023,47.53662109375],[22.111914062500006,47.572021484375],[22.18505859375,47.629052734374994],[22.24462890625,47.69638671875],[22.290625,47.72783203124999],[22.35146484375002,47.736230468749994],[22.41748046875,47.762646484375],[22.49140625000001,47.77255859374999],[22.562890625000023,47.759570312499996],[22.6083984375,47.76630859375],[22.6767578125,47.79902343749999],[22.85175781250001,47.92255859375],[22.87666015625001,47.947265625],[22.912890625000014,47.96425781249999],[23.054785156250006,48.00654296874999],[23.0908203125,48.049121093749996],[23.139453125000014,48.08740234375],[23.20263671875,48.084521484374996],[23.408203125,47.98999023437499],[23.628710937500017,47.995849609375],[23.669042968750006,47.992333984374994],[23.682031250000023,47.990380859374994],[23.708984375,47.9826171875],[24.001855468750023,47.935791015625],[24.04736328125,47.94101562499999],[24.05976562500001,47.944775390625],[24.177734375,47.906054687499996],[24.28193359375001,47.911181640624996],[24.380957031250006,47.938037109374996],[24.48408203125001,47.947119140625],[24.578906250000014,47.931054687499994],[24.650976562500006,47.87651367187499],[24.837890625,47.76083984375],[24.893359375000017,47.7177734375],[24.979101562500002,47.72412109375],[25.073828125,47.745703125],[25.16962890625001,47.823095703125],[25.464257812500023,47.910791015624994],[25.689257812500017,47.932470703125],[25.90869140625,47.967578125],[26.162695312500006,47.992529296875],[26.236230468750023,48.064355468749994],[26.276953125,48.113232421875],[26.3056640625,48.203759765624994],[26.4423828125,48.22998046875],[26.57246093750001,48.248486328125],[26.618945312500014,48.25986328124999],[26.71376953125002,48.263476562499996],[26.78730468750001,48.255810546875],[26.900976562500006,48.2111328125],[26.980761718750017,48.155029296875],[27.01220703125,48.110498046874994],[27.080371093750017,48.04765625],[27.15205078125001,47.959277343749996],[27.230859375000023,47.841748046875],[27.248144531250006,47.7822265625],[27.277929687500002,47.71796875],[27.336914062499996,47.63974609374999],[27.44921875,47.553125],[27.46484375,47.536669921874996],[27.51582031250001,47.475634765624996],[27.614062500000017,47.34052734375],[27.696191406250023,47.286425781249996],[27.76796875000002,47.227587890624996],[27.80234375,47.16831054687499],[27.853808593750017,47.114501953125],[27.97421875,47.043212890625],[28.07177734375,46.97841796874999],[28.15,46.79208984375],[28.2046875,46.70639648437499],[28.23945312500001,46.6408203125],[28.22265625,46.50805664062499],[28.24433593750001,46.45126953125],[28.199609375000023,46.347558593749994],[28.119140625,46.138671875],[28.099707031250006,45.972607421875],[28.113574218750014,45.883056640625],[28.115527343750014,45.825537109375],[28.13496093750001,45.788867187499996],[28.15625,45.7130859375],[28.159765625,45.647119140624994],[28.130859375,45.62827148437499],[28.09033203125,45.61274414062499],[28.074707031249996,45.598974609375],[28.111914062500002,45.569140625],[28.1625,45.51376953124999],[28.2125,45.450439453125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Portugal","sov_a3":"PRT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Portugal","adm0_a3":"PRT","geou_dif":0,"geounit":"Portugal","gu_a3":"PRT","su_dif":1,"subunit":"Portugal","su_a3":"PR1","brk_diff":0,"name":"Portugal","name_long":"Portugal","brk_a3":"PR1","brk_name":"Portugal","brk_group":null,"abbrev":"Port.","postal":"P","formal_en":"Portuguese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Portugal","name_alt":null,"mapcolor7":1,"mapcolor8":7,"mapcolor9":1,"mapcolor13":4,"pop_est":10707924,"gdp_md_est":208627,"pop_year":-99,"lastcensus":2011,"gdp_year":0,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"PT","iso_a3":"PRT","iso_n3":"620","un_a3":"620","wb_a2":"PT","wb_a3":"PRT","woe_id":-99,"adm0_a3_is":"PRT","adm0_a3_us":"PRT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"PRT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-17.190869140624926,32.868603515624976],[-17.054492187499932,32.81586914062498],[-16.92919921875,32.84140625000003],[-16.77397460937499,32.77353515624998],[-16.693261718749966,32.75800781250001],[-16.765283203124994,32.70971679687503],[-16.837402343749943,32.648291015625034],[-17.018261718749926,32.66279296874998],[-17.17119140624999,32.721875],[-17.226025390624983,32.76684570312503],[-17.241015625000017,32.80737304687503],[-17.190869140624926,32.868603515624976]]],[[[-25.02734375,36.95996093750003],[-25.03154296874999,36.94155273437502],[-25.08837890625,36.948876953124994],[-25.15991210937503,36.94335937500003],[-25.198388671874934,36.99653320312501],[-25.163525390624955,37.01855468749997],[-25.082910156249966,37.02402343750003],[-25.044335937499994,37.00019531249998],[-25.02734375,36.95996093750003]]],[[[-25.648974609374985,37.84091796875],[-25.585498046874932,37.83403320312502],[-25.2666015625,37.84863281249997],[-25.18193359374996,37.837890625],[-25.19072265624999,37.764355468749955],[-25.251123046874937,37.73500976562502],[-25.43901367187493,37.71533203125],[-25.73447265624992,37.76289062500001],[-25.833691406249983,37.82607421874999],[-25.847851562499923,37.872412109375034],[-25.84589843749998,37.89404296875],[-25.783740234375014,37.9111328125],[-25.648974609374985,37.84091796875]]],[[[-28.14726562499996,38.45268554687502],[-28.064794921875034,38.412744140624966],[-28.18974609374999,38.404150390625006],[-28.231152343749983,38.384667968750016],[-28.33242187500002,38.41289062500002],[-28.45449218750002,38.40864257812504],[-28.53115234374999,38.462548828124994],[-28.54882812499997,38.51855468750003],[-28.51025390625,38.553027343750045],[-28.402148437500014,38.55336914062502],[-28.14726562499996,38.45268554687502]]],[[[-28.641308593749983,38.525],[-28.74384765624998,38.52236328125002],[-28.842041015625,38.5984375],[-28.697753906249996,38.638476562500045],[-28.65541992187499,38.614062500000045],[-28.624218749999955,38.58632812499999],[-28.605810546875034,38.55073242187501],[-28.641308593749983,38.525]]],[[[-27.778466796874966,38.55561523437504],[-27.825878906249923,38.54355468749998],[-28.09233398437496,38.62055664062504],[-28.18725585937503,38.65537109375003],[-28.310644531250002,38.74389648437503],[-27.962646484375,38.63632812500006],[-27.778466796874966,38.55561523437504]]],[[[-27.075244140624957,38.643457031249994],[-27.09531249999995,38.63403320312503],[-27.30283203124995,38.66103515625002],[-27.361914062500006,38.69785156250006],[-27.38593750000001,38.765820312499955],[-27.35102539062501,38.788964843749966],[-27.259667968749966,38.80268554687501],[-27.127001953125017,38.78984374999995],[-27.04194335937501,38.7412109375],[-27.041992187500025,38.67890625000001],[-27.075244140624957,38.643457031249994]]],[[[-31.137109374999937,39.40693359375001],[-31.18134765624998,39.35893554687502],[-31.25761718749999,39.3759765625],[-31.282958984375,39.39409179687496],[-31.26083984375003,39.49677734375001],[-31.199853515624937,39.520849609375034],[-31.13862304687498,39.479443359374955],[-31.137109374999937,39.40693359375001]]],[[[-8.173535156249955,41.819970703124994],[-8.152490234374937,41.81196289062498],[-8.094433593749926,41.81420898437499],[-7.990966796874972,41.851904296875034],[-7.920849609374982,41.883642578125],[-7.896386718749994,41.87055664062501],[-7.693066406249955,41.88847656250002],[-7.644677734374937,41.87397460937498],[-7.612597656249988,41.85795898437502],[-7.512597656249966,41.83598632812498],[-7.40361328124996,41.83369140624995],[-7.268554687499972,41.864404296874994],[-7.209619140624966,41.89526367187497],[-7.198339843749978,41.92939453125001],[-7.195361328124989,41.95522460937502],[-7.177929687499983,41.9716796875],[-7.147119140625023,41.98115234374998],[-7.09912109375,41.964208984375006],[-7.030468749999955,41.95063476562498],[-6.865527343749932,41.945263671874955],[-6.833203124999926,41.96416015624999],[-6.777294921874983,41.958496093749964],[-6.70361328125,41.9345703125],[-6.61826171874992,41.9423828125],[-6.575341796874966,41.91308593749997],[-6.557519531249966,41.874121093750034],[-6.552587890624948,41.78955078125003],[-6.558984375000023,41.70405273437501],[-6.542187499999954,41.672509765624994],[-6.48466796874996,41.664404296875034],[-6.391699218749949,41.66538085937503],[-6.308056640624954,41.642187500000034],[-6.243115234374955,41.60180664062497],[-6.221679687499943,41.560449218749994],[-6.2125,41.53203125],[-6.244335937499955,41.51591796874995],[-6.28935546874996,41.45502929687501],[-6.403125,41.37539062500002],[-6.56591796875,41.3037109375],[-6.690136718749983,41.21450195312502],[-6.775781249999937,41.10771484375002],[-6.8828125,41.06240234375002],[-6.915527343749999,41.038037109374955],[-6.928466796874972,41.009130859375],[-6.857714843749932,40.87832031250002],[-6.835888671874926,40.777490234374994],[-6.818359375,40.65405273437497],[-6.829833984374943,40.619091796874955],[-6.835693359374971,40.48315429687497],[-6.852050781249943,40.44326171875002],[-6.847949218749988,40.410986328125006],[-6.82177734375,40.37626953124996],[-6.8101562499999,40.343115234375034],[-6.85888671875,40.30073242187504],[-6.948437499999955,40.251611328124966],[-7.01469726562496,40.208349609375034],[-7.032617187499965,40.16791992187498],[-7.027832031249972,40.14262695312496],[-6.91640625,40.05683593749998],[-6.896093749999949,40.02182617187506],[-6.911181640624989,39.937109375000034],[-6.975390624999932,39.79838867187502],[-7.03671875,39.713964843750034],[-7.04741210937496,39.70556640625],[-7.117675781249972,39.681689453125045],[-7.454101562499943,39.6806640625],[-7.535693359374961,39.66157226562501],[-7.524218749999932,39.644726562499955],[-7.44511718749996,39.53618164062496],[-7.362695312499966,39.47832031249999],[-7.335449218749999,39.46513671874996],[-7.30576171874992,39.33813476562502],[-7.172412109374932,39.13520507812498],[-7.042968749999942,39.10708007812502],[-6.997949218749993,39.05644531250002],[-7.00625,38.98525390624999],[-7.046044921874937,38.907031250000045],[-7.125488281249971,38.82695312499999],[-7.219921874999925,38.77050781250002],[-7.28154296874996,38.71455078125001],[-7.286376953124972,38.649365234374955],[-7.30595703124996,38.56684570312501],[-7.335791015625006,38.50146484375003],[-7.343017578124943,38.45742187500002],[-7.106396484374982,38.181005859375006],[-6.974804687499982,38.194433593750006],[-6.957568359374932,38.18789062499999],[-6.981103515624937,38.121972656249966],[-7.022851562500023,38.04472656249996],[-7.072509765625,38.030029296875],[-7.185449218749994,38.00634765625006],[-7.292236328125,37.90644531250004],[-7.378906249999971,37.786376953125],[-7.443945312499921,37.72827148437497],[-7.503515624999977,37.58549804687502],[-7.496044921874954,37.523583984375016],[-7.467187499999937,37.42802734374999],[-7.406152343749937,37.17944335937497],[-7.493603515624983,37.168310546875034],[-7.834130859374994,37.00571289062503],[-7.939697265625,37.00541992187496],[-8.136767578124932,37.077050781249994],[-8.484326171874955,37.10004882812498],[-8.597656249999943,37.12133789062506],[-8.739111328124977,37.07460937500002],[-8.8484375,37.07568359374997],[-8.935351562499987,37.01601562499999],[-8.997802734375028,37.03227539062502],[-8.92626953125,37.16606445312502],[-8.814160156249983,37.43081054687502],[-8.818554687500011,37.59243164062502],[-8.791845703124977,37.73281250000002],[-8.822656249999936,37.871875],[-8.87895507812496,37.95869140625001],[-8.80224609374997,38.18383789062497],[-8.810937499999966,38.299755859374955],[-8.881103515624943,38.44667968750005],[-8.668310546874947,38.42431640625003],[-8.73398437499992,38.48242187500006],[-8.798876953124989,38.518164062500034],[-8.861621093749987,38.50996093749998],[-8.914794921874972,38.512109374999966],[-9.09599609374996,38.45522460937502],[-9.186718749999953,38.438183593750004],[-9.213281249999937,38.44809570312498],[-9.203369140624972,38.53896484375002],[-9.250390624999964,38.65673828125002],[-9.17783203124992,38.68779296874996],[-9.09331054687493,38.69667968749999],[-9.021484374999943,38.746875],[-8.977050781249972,38.80292968749998],[-9.000488281249943,38.90302734375004],[-8.93808593749992,38.998095703125045],[-8.79160156249992,39.07817382812502],[-8.867480468749932,39.06596679687502],[-8.954296874999955,39.016064453124955],[-9.091015625000011,38.834667968749955],[-9.13579101562496,38.74277343749997],[-9.252294921875004,38.712792968749994],[-9.35673828124996,38.697900390624994],[-9.410205078124932,38.70751953125],[-9.474121093749972,38.73085937500002],[-9.479736328124972,38.79877929687501],[-9.474755859374937,38.852929687500016],[-9.431445312499987,38.96044921875],[-9.41435546874996,39.11210937499999],[-9.35283203124996,39.248144531250006],[-9.35722656249996,39.28427734374997],[-9.374755859374972,39.338281249999966],[-9.319628906249932,39.39111328125],[-9.251416015624983,39.426025390625],[-9.148291015624949,39.542578125000034],[-9.004052734374966,39.820556640625],[-8.837841796874926,40.11567382812498],[-8.851318359375028,40.151806640624976],[-8.886621093750023,40.179443359375],[-8.8726562499999,40.25908203124999],[-8.772412109374926,40.60566406249998],[-8.731591796874966,40.65092773437495],[-8.684619140624989,40.75253906250006],[-8.673974609374936,40.91650390624997],[-8.655566406249932,41.02949218749998],[-8.659814453124994,41.086279296875006],[-8.674609374999989,41.154492187499955],[-8.73837890624992,41.28466796875003],[-8.805664062499943,41.56000976562498],[-8.810839843749932,41.65195312500006],[-8.75541992187493,41.69838867187502],[-8.846386718749983,41.70517578124998],[-8.887597656249937,41.764599609375004],[-8.878222656249989,41.83208007812499],[-8.777148437500017,41.941064453124994],[-8.68295898437492,42.008496093749955],[-8.589648437499989,42.05273437499999],[-8.538085937499972,42.0693359375],[-8.322558593749932,42.115087890625006],[-8.266064453124983,42.13740234375001],[-8.213085937499926,42.133691406249966],[-8.204199218749977,42.11186523437496],[-8.17358398437497,42.06938476562501],[-8.139306640624994,42.039941406249966],[-8.129980468749977,42.01816406250006],[-8.213330078124983,41.92709960937498],[-8.224755859374994,41.895849609375006],[-8.18125,41.83696289062502],[-8.173535156249955,41.819970703124994]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"San Marino","sov_a3":"SMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"San Marino","adm0_a3":"SMR","geou_dif":0,"geounit":"San Marino","gu_a3":"SMR","su_dif":0,"subunit":"San Marino","su_a3":"SMR","brk_diff":0,"name":"San Marino","name_long":"San Marino","brk_a3":"SMR","brk_name":"San Marino","brk_group":null,"abbrev":"S.M.","postal":"RSM","formal_en":"Republic of San Marino","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"San Marino","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":1,"mapcolor13":6,"pop_est":30324,"gdp_md_est":1662,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"SM","iso_a3":"SMR","iso_n3":"674","un_a3":"674","wb_a2":"SM","wb_a3":"SMR","woe_id":-99,"adm0_a3_is":"SMR","adm0_a3_us":"SMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"SMR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[12.485253906250023,43.90141601562499],[12.426367187500006,43.894091796874996],[12.396875,43.93457031249999],[12.441113281250011,43.982421875],[12.503710937500017,43.98974609375],[12.514648437499998,43.952978515625],[12.485253906250023,43.90141601562499]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Republic of Serbia","sov_a3":"SRB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Republic of Serbia","adm0_a3":"SRB","geou_dif":0,"geounit":"Republic of Serbia","gu_a3":"SRB","su_dif":0,"subunit":"Republic of Serbia","su_a3":"SRB","brk_diff":0,"name":"Serbia","name_long":"Serbia","brk_a3":"SRB","brk_name":"Serbia","brk_group":null,"abbrev":"Serb.","postal":"RS","formal_en":"Republic of Serbia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Serbia","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":2,"mapcolor13":10,"pop_est":7379339,"gdp_md_est":80340,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RS","iso_a3":"SRB","iso_n3":"688","un_a3":"688","wb_a2":"YF","wb_a3":"SRB","woe_id":-99,"adm0_a3_is":"SRB","adm0_a3_us":"SRB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SRB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.72451171875008,46.151904296875045],[19.84443359375001,46.145898437499966],[19.934082031250057,46.161474609375034],[20.161425781250017,46.14189453124996],[20.210156250000068,46.12602539062502],[20.241796875000034,46.10859375],[20.301367187500006,46.05068359375002],[20.35859375000004,45.975488281249994],[20.43798828125003,45.940771484375006],[20.53261718750005,45.89951171875006],[20.581152343749977,45.86948242187506],[20.65273437499999,45.779394531250006],[20.709277343750074,45.735253906249994],[20.727832031250017,45.73740234374998],[20.746875,45.74897460937501],[20.76015625000005,45.75810546875002],[20.775,45.74980468750002],[20.775781250000023,45.72250976562506],[20.77929687500003,45.662011718749994],[20.76582031250004,45.59746093749999],[20.78603515625008,45.53647460937498],[20.78652343750008,45.51748046875002],[20.772460937500057,45.500097656250034],[20.774218750000074,45.48442382812504],[20.794042968750002,45.467871093750034],[20.87080078125001,45.42753906249999],[20.94179687499999,45.365332031250034],[21.023828125000023,45.32153320312497],[21.09990234375007,45.293554687500055],[21.14785156250005,45.29174804687505],[21.22646484374999,45.24130859374998],[21.381738281250023,45.20507812499997],[21.431445312500017,45.192529296874994],[21.465429687500002,45.171875],[21.490234375,45.147900390624955],[21.491796875000063,45.12226562499998],[21.46787109375006,45.10986328125003],[21.434472656250023,45.07514648437498],[21.420703125000045,45.032958984375],[21.39589843750005,45.02221679687503],[21.37109374999997,45.02138671875002],[21.352929687500023,45.00898437499998],[21.357031250000034,44.99077148437502],[21.37773437499999,44.973437500000045],[21.40996093750007,44.95771484375004],[21.471972656250017,44.941992187500034],[21.533203125000057,44.91884765625002],[21.532324218750063,44.900683593750045],[21.519921875000023,44.88081054687498],[21.442187500000074,44.87338867187498],[21.384375,44.87006835937501],[21.357910156250053,44.86181640625003],[21.36005859375004,44.82666015624997],[21.52314453125004,44.79008789062499],[21.597070312500023,44.75541992187502],[21.63613281250005,44.71044921874999],[21.740234375000057,44.680664062499964],[21.909277343750034,44.666113281250034],[22.026953125,44.61987304687503],[22.093066406250074,44.541943359374955],[22.200976562500014,44.560693359374966],[22.350683593750063,44.67612304687503],[22.497656249999977,44.70625],[22.64208984375,44.65097656249998],[22.720898437499983,44.605517578125045],[22.734375,44.56992187499998],[22.700781250000063,44.55551757812498],[22.620117187500057,44.562353515625034],[22.554003906250017,44.54033203124999],[22.50234375000005,44.48959960937506],[22.49453125000005,44.43544921875002],[22.53066406250005,44.37797851562496],[22.58183593750007,44.338330078124955],[22.647949218750057,44.31645507812504],[22.683300781250068,44.28647460937506],[22.687890625000023,44.248291015625],[22.705078125000053,44.23779296875],[22.66748046875003,44.22021484374997],[22.626562500000034,44.194091796874964],[22.60341796875005,44.148583984375016],[22.597460937500074,44.075292968750034],[22.469042968750017,44.01801757812498],[22.42080078125005,44.00742187500006],[22.399023437500063,43.96953125],[22.36542968750004,43.86210937500001],[22.36962890625003,43.78129882812499],[22.386914062500068,43.74013671875005],[22.39482421874999,43.706640625000055],[22.436328125000017,43.665478515625004],[22.474121093749996,43.60224609375001],[22.499121093750006,43.51884765624999],[22.554589843750048,43.454492187500016],[22.69697265625001,43.39106445312498],[22.767578125,43.35415039062502],[22.819726562500048,43.300732421874955],[22.85957031250001,43.252343749999966],[22.976855468749985,43.18798828124999],[22.967968750000065,43.142041015624955],[22.94228515625005,43.09707031250005],[22.915234375000068,43.07597656250002],[22.85683593750005,43.01826171874998],[22.799902343750002,42.985742187499994],[22.706152343750006,42.88393554687505],[22.558105468750057,42.87846679687499],[22.522753906250045,42.87031250000004],[22.466796875,42.842480468749955],[22.439257812500074,42.791650390624994],[22.465625,42.75078125000002],[22.46328125000008,42.70947265625003],[22.436230468749983,42.62910156250001],[22.472070312500023,42.543310546875034],[22.524218750000074,42.50390625],[22.53242187500004,42.48120117187497],[22.523535156250006,42.440966796875045],[22.445703125000048,42.359130859374964],[22.42207031250004,42.32885742187503],[22.344042968750045,42.31396484375003],[22.31738281250003,42.32172851562501],[22.277050781250065,42.34985351562506],[22.23974609375003,42.35815429687506],[22.146679687500065,42.325],[22.052050781250074,42.30463867187498],[21.97753906249997,42.32006835937503],[21.904101562500045,42.32207031249999],[21.85302734375003,42.308398437500045],[21.81464843750001,42.303125],[21.73925781250003,42.26772460937502],[21.618261718750063,42.24213867187504],[21.5625,42.247509765624976],[21.541601562499977,42.28081054687501],[21.51894531250008,42.32841796875002],[21.52998046875001,42.35],[21.60986328125003,42.38745117187497],[21.61904296875005,42.423242187499994],[21.73066406250004,42.595458984375],[21.752148437500068,42.65151367187505],[21.752929687500057,42.66982421875005],[21.723828125000068,42.681982421875034],[21.6625,42.681494140625006],[21.390625,42.751416015624955],[21.40302734375001,42.83154296875003],[21.323144531250076,42.87470703125004],[21.237109375000045,42.913232421874966],[21.22265625000003,42.95620117187502],[21.127050781250006,43.043017578125045],[21.057031250000023,43.09169921875002],[20.96767578125005,43.11601562499998],[20.890722656250006,43.15166015624996],[20.844433593750065,43.17343750000006],[20.823828125000034,43.21396484375006],[20.823828125000034,43.237939453125044],[20.800585937500017,43.26108398437506],[20.763378906250068,43.25859374999999],[20.70058593750008,43.22636718749999],[20.623144531250002,43.19863281250002],[20.609667968750014,43.17841796875001],[20.637597656250023,43.130371093749964],[20.65761718750002,43.09985351562497],[20.648535156250034,43.070947265625044],[20.62402343750003,43.03417968750002],[20.475097656250057,42.953027343749994],[20.458398437500023,42.92456054687497],[20.48681640625003,42.87905273437502],[20.468847656250034,42.85791015625],[20.344335937500063,42.82792968750002],[20.34765625000003,42.852783203125],[20.339941406250063,42.89287109375002],[20.26845703125005,42.935449218749966],[20.16787109375008,42.96850585937506],[19.944042968750036,43.081640625],[19.858007812500006,43.096533203125006],[19.781152343750076,43.10976562500005],[19.670996093750006,43.16396484374999],[19.61445312500004,43.17343750000006],[19.551562500000017,43.21225585937506],[19.414648437500006,43.34282226562502],[19.298242187500023,43.413964843750016],[19.21875,43.449951171875],[19.196484375000068,43.48500976562502],[19.19160156250004,43.52104492187499],[19.19433593749997,43.53330078125],[19.254492187500063,43.584375],[19.30078125,43.59179687500003],[19.360351562500057,43.59345703125001],[19.399609375000068,43.56757812499998],[19.451269531250002,43.56206054687499],[19.47998046875,43.595166015624976],[19.495117187500057,43.642871093750045],[19.488183593750076,43.703564453124955],[19.364062500000017,43.844775390625045],[19.257226562499994,43.943310546874955],[19.245019531249994,43.96503906250004],[19.26806640625,43.98344726562496],[19.305273437500034,43.99335937500004],[19.34521484375,43.98510742187502],[19.449414062499983,43.97802734375],[19.54951171875004,43.98710937499999],[19.583691406249983,44.011083984375],[19.583789062500017,44.04345703125003],[19.547167968750017,44.073486328125],[19.43017578124997,44.15449218749998],[19.33886718750003,44.22583007812506],[19.231542968750006,44.28056640625002],[19.15185546875003,44.302539062500045],[19.128320312500023,44.33027343750001],[19.118457031250074,44.359960937500006],[19.127343750000023,44.41455078125003],[19.132421875000063,44.48378906250002],[19.15136718750003,44.52734375],[19.22314453125,44.609570312499976],[19.29189453125005,44.69677734374997],[19.33447265625003,44.780664062500016],[19.35683593750005,44.858544921874994],[19.348632812500057,44.88090820312502],[19.31269531250004,44.8974609375],[19.23681640625003,44.914257812499955],[19.131542968750065,44.89960937500001],[19.042089843750063,44.87133789062503],[19.007128906250045,44.86918945312502],[18.99550781250008,44.90400390625001],[19.00957031249999,44.91938476562504],[19.037597656250025,44.91752929687502],[19.060546875,44.910986328125006],[19.085253906250042,44.92675781250003],[19.1,44.973779296875016],[19.062890625000023,45.13720703125],[19.129687500000045,45.151708984375034],[19.13076171875008,45.17548828124998],[19.13691406250001,45.19624023437504],[19.205957031250048,45.16777343750002],[19.303027343750017,45.16728515624999],[19.388085937500023,45.17299804687502],[19.400976562500063,45.1890625],[19.4,45.2125],[19.38232421875,45.230615234375016],[19.35224609375001,45.24541015625002],[19.330273437500068,45.26806640625003],[19.27285156250008,45.277978515624994],[19.093066406250045,45.33691406249999],[19.004687500000074,45.39951171875006],[19.007617187500045,45.46582031249997],[19.033300781250034,45.50219726562503],[19.064257812500045,45.51499023437506],[19.055078125000023,45.527246093749966],[18.953710937499977,45.55800781250002],[18.91787109375005,45.60083007812503],[18.947265625,45.65581054687496],[18.89453125,45.76708984374997],[18.839062499999983,45.83574218750002],[18.8935546875,45.86552734374995],[18.90107421875001,45.90761718750002],[18.905371093750006,45.931738281250034],[18.927832031250034,45.93139648437497],[19.015722656250006,45.95971679687497],[19.047656250000045,45.98266601562503],[19.06621093750007,46.00952148437499],[19.087304687500023,46.01616210937502],[19.146289062500045,45.987011718750004],[19.208398437499994,45.98442382812502],[19.278125,46.00288085937498],[19.330273437500068,46.028515624999955],[19.392871093750017,46.04980468750002],[19.421289062500023,46.06445312499999],[19.457519531250057,46.08735351562504],[19.530761718750057,46.155175781249994],[19.61347656250001,46.169189453125],[19.72451171875008,46.151904296875045]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Russia","sov_a3":"RUS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Russia","adm0_a3":"RUS","geou_dif":0,"geounit":"Russia","gu_a3":"RUS","su_dif":0,"subunit":"Russia","su_a3":"RUS","brk_diff":0,"name":"Russia","name_long":"Russian Federation","brk_a3":"RUS","brk_name":"Russia","brk_group":null,"abbrev":"Rus.","postal":"RUS","formal_en":"Russian Federation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Russian Federation","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":7,"mapcolor13":7,"pop_est":140041247,"gdp_md_est":2266000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RU","iso_a3":"RUS","iso_n3":"643","un_a3":"643","wb_a2":"RU","wb_a3":"RUS","woe_id":-99,"adm0_a3_is":"RUS","adm0_a3_us":"RUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":18,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"RUS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[146.0456054687501,43.409326171874966],[146.03232421875003,43.407128906249966],[146.0280273437501,43.42036132812501],[146.04892578125006,43.43359375000003],[146.08857421875,43.44902343749999],[146.10078125000004,43.44018554687503],[146.08632812500005,43.42919921875003],[146.06992187500006,43.42148437500006],[146.0456054687501,43.409326171874966]]],[[[145.8815429687501,43.45952148437499],[145.89560546875012,43.45454101562504],[145.91386718750002,43.45537109375002],[145.93115234374997,43.45703125],[145.94111328125004,43.445458984375044],[145.9435546875001,43.42646484375001],[145.93115234374997,43.425634765625006],[145.90722656249997,43.422314453124955],[145.89394531250005,43.419824218749966],[145.88652343750002,43.43305664062501],[145.8815429687501,43.44379882812498],[145.86914062500003,43.450439453125],[145.86914062500003,43.457861328125006],[145.8815429687501,43.45952148437499]]],[[[146.35878906250005,43.62539062500002],[146.33232421875007,43.61992187499999],[146.28818359375006,43.62539062500002],[146.27382812500005,43.629833984374955],[146.28369140625003,43.638623046874955],[146.31015625000006,43.65185546875],[146.33330078125002,43.6474609375],[146.3498046875001,43.644140625000034],[146.35878906250005,43.62539062500002]]],[[[146.71396484375012,43.743798828124994],[146.6830078125,43.71635742187499],[146.60859375,43.74047851562503],[146.61347656250004,43.797021484374994],[146.62197265625,43.81298828125005],[146.824609375,43.86049804687505],[146.88408203125002,43.82915039062496],[146.89902343750006,43.80415039062504],[146.71396484375012,43.743798828124994]]],[[[146.20761718750006,44.49765625],[146.35595703125003,44.42460937500004],[146.5677734375,44.44042968749997],[146.51621093750006,44.374658203124994],[146.43652343749997,44.37568359375001],[146.29619140625002,44.28095703125001],[146.17294921875012,44.26865234374998],[146.11230468750003,44.24594726562506],[145.91406249999997,44.10371093750004],[145.88730468750012,44.047753906249994],[145.76699218749997,43.94072265624996],[145.58681640625,43.84511718750002],[145.5558593750001,43.66459960937502],[145.43925781250002,43.73706054687502],[145.42617187500005,43.81035156249995],[145.46171875000005,43.870898437500045],[145.66630859375002,43.999072265625045],[145.74833984375002,44.07153320312506],[145.77333984375005,44.129003906250034],[145.851953125,44.19301757812502],[145.89023437500006,44.24858398437499],[145.94042968749997,44.27265624999998],[146.11210937500007,44.500146484374966],[146.20761718750006,44.49765625]]],[[[148.59951171875,45.317626953125],[148.41464843750012,45.247167968750034],[148.26230468750006,45.21684570312495],[148.0052734375,45.070166015625034],[147.91376953125,44.99038085937502],[147.78408203125,44.958593750000034],[147.65781250000012,44.97714843749998],[147.621875,44.94472656250005],[147.60957031250004,44.886572265625006],[147.56308593750006,44.835546875],[147.31015625000006,44.67763671874999],[147.20742187499997,44.553564453125034],[147.09843750000002,44.53125],[146.8974609375,44.404296875],[146.93349609375,44.513085937500044],[146.9742187500001,44.56572265625001],[147.14091796875007,44.663330078125],[147.15478515625003,44.766210937500006],[147.24658203124997,44.856054687500006],[147.43046875000005,44.94521484374996],[147.5578125000001,45.062451171874955],[147.65791015625004,45.09301757812497],[147.76943359375,45.19072265624999],[147.88554687500007,45.22563476562499],[147.87265625000006,45.30029296875],[147.9240234375001,45.38330078125006],[147.96455078125,45.37773437499999],[148.05605468750002,45.262109375000044],[148.13007812500004,45.25820312500005],[148.32421874999997,45.28242187500001],[148.61230468749994,45.48466796874999],[148.70664062500006,45.52065429687505],[148.77265625000004,45.52646484374998],[148.8122070312501,45.510009765625],[148.82617187500003,45.48608398437502],[148.82539062500004,45.455908203125006],[148.80302734375002,45.41352539062498],[148.83710937500004,45.36269531250002],[148.79072265625007,45.32397460937503],[148.59951171875,45.317626953125]]],[[[47.983007812500006,45.48823242187501],[47.967675781249994,45.46997070312503],[47.92031250000005,45.56206054687496],[47.917578125,45.61816406250003],[47.947167968749994,45.647070312500034],[47.987109375000074,45.554052734375006],[47.983007812500006,45.48823242187501]]],[[[149.68769531250004,45.64204101562501],[149.53886718750005,45.59135742187499],[149.44707031250002,45.593359375000034],[149.66591796875005,45.839794921874955],[149.79628906250005,45.87607421874998],[149.9623046875,46.02192382812504],[150.3087890625001,46.200341796874966],[150.34863281250003,46.21342773437496],[150.553125,46.208544921875045],[150.23457031250004,46.012304687500034],[150.1950195312501,45.93320312499998],[150.05664062499997,45.84936523437506],[149.95410156250003,45.82246093749998],[149.88339843750012,45.78315429687498],[149.68769531250004,45.64204101562501]]],[[[152.00205078125006,46.89716796874998],[151.815625,46.78710937500005],[151.7541015625001,46.78833007812502],[151.72343750000005,46.82880859375001],[151.71533203125003,46.852685546874994],[151.86435546875003,46.868994140625034],[152.03984375000002,47.014990234375006],[152.16582031250002,47.110449218750006],[152.23466796875,47.14340820312498],[152.28886718750007,47.1421875],[152.00205078125006,46.89716796874998]]],[[[153.10107421874994,47.762939453124964],[153.05380859375012,47.706103515625045],[153.00410156250004,47.713476562500034],[152.98427734374997,47.72792968750005],[153.04912109375007,47.797021484374994],[153.07919921875003,47.808740234374994],[153.10107421874994,47.762939453124964]]],[[[154.08125,48.79028320312502],[154.04296875,48.73876953125],[154.00068359375,48.755712890625006],[153.99228515625006,48.77250976562496],[154.09169921875,48.832128906250034],[154.12636718750005,48.904443359375016],[154.19902343750002,48.90493164062502],[154.22841796875005,48.89208984374997],[154.20468750000012,48.85717773437497],[154.08125,48.79028320312502]]],[[[154.81044921875005,49.31201171875],[154.71484375000003,49.267675781250034],[154.61093750000006,49.29404296874998],[154.61298828125004,49.38061523437503],[154.82490234375004,49.64692382812501],[154.8996093750001,49.63037109375003],[154.88330078124997,49.56640625000006],[154.80234375000006,49.46826171875003],[154.82988281250002,49.34790039062503],[154.81044921875005,49.31201171875]]],[[[155.9210937500001,50.30219726562501],[155.7923828125,50.20205078125005],[155.60751953125003,50.17724609374997],[155.51640625000007,50.14560546875],[155.4489257812501,50.07778320312505],[155.39716796875004,50.04125976562497],[155.28867187500006,50.06118164062505],[155.24306640625,50.094628906250016],[155.24306640625,50.21279296875002],[155.19511718750002,50.264550781249994],[155.21835937500012,50.29785156250003],[155.32675781250006,50.29326171874999],[155.43388671875007,50.368945312500045],[155.68017578124997,50.400732421875034],[155.77275390625007,50.48242187499997],[155.88476562499997,50.68413085937502],[156.0016601562501,50.756933593750034],[156.096875,50.771875],[156.12285156250002,50.671289062499994],[156.10058593749997,50.55927734374998],[156.04443359375003,50.451757812500034],[155.9210937500001,50.30219726562501]]],[[[156.40507812500002,50.65761718750005],[156.36542968750004,50.6337890625],[156.32578125000012,50.6390625],[156.19628906250003,50.702148437499964],[156.16796874999994,50.73188476562498],[156.2130859375001,50.78471679687502],[156.37646484374994,50.86210937499996],[156.45585937500007,50.85957031249998],[156.4875,50.84296874999998],[156.48310546875004,50.75122070312503],[156.40507812500002,50.65761718750005]]],[[[155.64482421875002,50.82192382812502],[155.55351562500002,50.810595703125045],[155.51279296875006,50.837304687499966],[155.48349609375012,50.86962890624997],[155.46738281250006,50.91357421875006],[155.56855468750004,50.93447265625005],[155.63964843749997,50.910498046875055],[155.65361328125007,50.84536132812502],[155.64482421875002,50.82192382812502]]],[[[142.76103515625,54.393945312499966],[142.97617187500006,54.14096679687503],[142.98593750000006,54.08569335937497],[142.96708984375005,54.02880859375003],[142.92656250000007,53.95561523437502],[142.91142578125002,53.87836914062501],[142.93642578125005,53.810937500000044],[142.91796875000003,53.79423828125002],[143.09550781250002,53.488671875000016],[143.22363281250003,53.29604492187505],[143.25996093750004,53.21728515624997],[143.28789062500007,53.134375],[143.32470703125003,52.96308593749998],[143.33261718750012,52.700048828125034],[143.32363281250005,52.61357421874999],[143.29511718750004,52.529150390625034],[143.26425781250012,52.47866210937505],[143.20097656250002,52.44291992187496],[143.17226562500005,52.349365234375],[143.15556640625,52.08374023437497],[143.190625,51.94448242187502],[143.2505859375001,51.847900390624964],[143.29472656250002,51.74433593750001],[143.29951171875,51.63237304687504],[143.32050781250004,51.58325195312497],[143.41777343750007,51.520605468750006],[143.45546875,51.47148437500002],[143.46738281250012,51.40190429687499],[143.47294921875002,51.29921875000002],[143.48876953125003,51.27705078125004],[143.53417968749997,51.24628906249998],[143.73603515625004,50.50673828125005],[143.81601562500006,50.28261718750002],[144.04794921875003,49.895751953125],[144.14130859375007,49.661474609375055],[144.199609375,49.54975585937504],[144.23994140625004,49.43203125000002],[144.27207031250012,49.311328125000045],[144.3412109375,49.180517578125034],[144.4317382812501,49.051074218750045],[144.6068359375,48.93583984375002],[144.68554687499997,48.871240234374994],[144.70664062500006,48.81953125000004],[144.71376953125,48.64028320312502],[144.67265625000002,48.678564453125006],[144.62099609375005,48.814843749999966],[144.53632812500004,48.89355468750002],[144.41181640625004,48.98637695312502],[144.28378906250006,49.06977539062503],[144.12548828124997,49.20854492187496],[144.04873046875,49.249169921874994],[143.96777343750003,49.27631835937501],[143.81914062500002,49.30859375000002],[143.73232421875,49.31201171875],[143.3822265625,49.290673828124994],[143.23632812500003,49.26284179687502],[143.10498046875,49.198828125000034],[143.02685546874997,49.10541992187501],[142.97167968750003,48.91777343749999],[142.65097656250006,48.246875],[142.57421874999997,48.07216796875002],[142.54589843749997,47.884912109374966],[142.55693359375002,47.73789062500003],[142.57900390625005,47.68398437499996],[142.67011718750004,47.536914062500045],[142.74541015625002,47.45239257812506],[142.80078125000003,47.416162109375016],[142.86396484375,47.39179687499995],[142.90546875000004,47.36186523437499],[142.94033203125005,47.32275390625],[143.0055664062501,47.22270507812495],[143.08925781249997,47.00078125],[143.17792968750004,46.84404296875002],[143.21767578125005,46.79487304687504],[143.31865234375002,46.807373046875],[143.384375,46.8056640625],[143.44726562500003,46.79199218749997],[143.48564453125002,46.752050781250006],[143.54033203125007,46.57509765625002],[143.57871093750003,46.406054687500045],[143.58066406250012,46.360693359375034],[143.50859375000007,46.23017578125001],[143.490625,46.17460937499996],[143.48232421875005,46.11582031249998],[143.4634765625001,46.06948242187505],[143.43164062500003,46.02866210937498],[143.41865234375004,46.222021484375034],[143.37031250000004,46.35849609375003],[143.35214843750006,46.47622070312502],[143.28232421875006,46.55898437500002],[143.04785156250003,46.592626953125034],[142.82929687500004,46.605273437500045],[142.7955078125001,46.62021484375006],[142.74736328125007,46.67065429687502],[142.69189453124997,46.71083984375005],[142.63574218749997,46.716210937499994],[142.57802734375002,46.700781250000034],[142.47880859375007,46.64423828124998],[142.4064453125001,46.55468750000003],[142.35,46.45869140625001],[142.30400390625007,46.35756835937502],[142.20859375000006,46.0888671875],[142.14970703125005,45.99926757812503],[142.07714843749994,45.91704101562499],[142.015625,45.961621093750004],[141.96162109375004,46.01347656249999],[141.92998046875007,46.08828125000005],[141.91630859375007,46.17075195312497],[141.83037109375002,46.451074218749966],[141.86650390625002,46.694189453125034],[142.01103515625007,47.030322265625045],[142.0386718750001,47.14028320312496],[142.01689453125,47.24467773437502],[141.98417968750002,47.347705078125045],[141.9625,47.543798828125006],[141.9640625000001,47.58745117187502],[142.015625,47.700634765624976],[142.07597656250007,47.808349609375],[142.14921875000007,47.90214843750002],[142.18173828125012,48.01337890625001],[142.13535156250006,48.29008789062498],[142.02871093750005,48.47709960937499],[141.89726562500007,48.65468750000002],[141.87304687500003,48.70195312499996],[141.86630859375003,48.750097656250006],[141.97958984375006,48.97216796875006],[142.02011718750006,49.078466796875034],[142.06650390625012,49.31206054687501],[142.10869140625007,49.43964843749998],[142.1422851562501,49.56914062499999],[142.153125,50.21674804687501],[142.14306640624997,50.312109375],[142.07109375000007,50.514990234375034],[142.06601562500006,50.630468750000034],[142.10048828125,50.776464843750006],[142.14726562500002,50.89018554687499],[142.20791015625005,50.99848632812503],[142.20673828125004,51.22255859375002],[142.09072265625005,51.429394531249976],[142.00595703125012,51.52050781249997],[141.87294921874997,51.630029296874994],[141.771875,51.690185546875],[141.72236328125004,51.73632812499997],[141.771875,51.751806640625034],[141.80810546875003,51.78920898437502],[141.72099609375007,51.846777343750006],[141.66845703125003,51.93334960937497],[141.66083984375004,52.27294921874997],[141.68242187500002,52.35913085937502],[141.74755859374997,52.45483398437499],[141.8033203125001,52.555615234375004],[141.85556640625012,52.79350585937499],[141.87363281250006,53.03891601562506],[141.83886718749997,53.13847656249999],[141.82353515625007,53.33950195312502],[141.85244140625,53.38945312499996],[141.96445312500006,53.456396484375034],[142.1419921875,53.49560546875003],[142.1798828125001,53.484033203124966],[142.31894531250012,53.40546875000004],[142.37050781250005,53.402539062499976],[142.4240234375001,53.410742187500034],[142.52617187500002,53.44746093749998],[142.58349609374997,53.536767578124966],[142.50917968750005,53.58759765625001],[142.55253906250007,53.652636718750045],[142.67958984375005,53.67436523437501],[142.68886718750005,53.73017578125001],[142.64287109375002,53.73676757812504],[142.6830078125,53.816015625],[142.70595703124997,53.89570312499998],[142.67021484375007,53.968408203124966],[142.46660156250007,54.14853515624998],[142.33496093749997,54.280712890625004],[142.55166015625,54.278955078124994],[142.615625,54.30361328125005],[142.66621093750004,54.35820312499999],[142.69277343750005,54.41611328125006],[142.76103515625,54.393945312499966]]],[[[168.03906249999997,54.56499023437502],[168.08134765625007,54.51274414062502],[167.67734375000012,54.69765625000002],[167.4880859375,54.79497070312496],[167.44150390625012,54.85585937500002],[167.51171875000003,54.85693359374997],[167.59248046875,54.797753906249994],[167.71064453125004,54.77016601562496],[167.8826171875,54.69047851562499],[168.03906249999997,54.56499023437502]]],[[[137.17861328125005,55.100439453125034],[137.05527343750006,54.9267578125],[136.96943359375004,54.923974609375044],[136.90273437500005,54.960644531249955],[136.76513671874997,54.946044921875],[136.71464843750002,54.956152343750034],[136.7953125,55.009375],[136.99570312500006,55.092724609374955],[137.07753906250005,55.09174804687504],[137.15605468750007,55.10781250000002],[137.17861328125005,55.100439453125034]]],[[[137.94052734375012,55.09262695312503],[138.03125,55.0533203125],[138.1720703125001,55.06005859374997],[138.20615234375012,55.03354492187498],[138.09648437500007,54.99091796875001],[138.01660156249997,54.90087890625006],[137.99121093750003,54.820703124999966],[137.95947265624997,54.78901367187498],[137.87011718749997,54.749560546875045],[137.79023437500004,54.69692382812496],[137.72148437500005,54.663232421875044],[137.66113281250003,54.653271484374955],[137.52558593750004,54.825830078125016],[137.46269531250002,54.873388671875034],[137.2760742187501,54.79238281249996],[137.23291015624997,54.79057617187495],[137.27519531250002,54.89101562499999],[137.38437500000012,55.000683593749955],[137.43554687499997,55.016015624999966],[137.54365234375,55.1630859375],[137.5773437500001,55.19702148437497],[137.91044921875002,55.11005859375004],[137.94052734375012,55.09262695312503]]],[[[20.677734375000025,54.955664062500006],[20.774023437500034,54.94702148437503],[20.8875,54.90947265625002],[20.995898437500017,54.90268554687506],[21.18886718750008,54.93520507812502],[21.222851562500065,55.107763671875006],[21.235742187500023,55.26411132812498],[21.297558593750008,55.264453125000045],[21.389257812500034,55.275537109374994],[21.447070312500017,55.23442382812496],[21.5546875,55.1953125],[21.682714843750063,55.160351562499976],[21.873925781250023,55.100732421874994],[22.072363281250034,55.06367187499998],[22.137890625000068,55.059375],[22.346386718750068,55.06425781250002],[22.56728515625005,55.05913085937496],[22.627441406250057,54.970703124999964],[22.736523437500068,54.928857421874966],[22.824707031249996,54.87128906249998],[22.83125,54.838476562500034],[22.70966796875001,54.63261718750002],[22.684472656250023,54.56293945312504],[22.679882812500068,54.493017578125006],[22.724316406250068,54.405615234375034],[22.766210937499977,54.356787109375034],[22.73183593750008,54.35009765625003],[22.168457031250053,54.35986328125005],[21.634179687500023,54.37646484374997],[21.14052734375008,54.39179687499998],[20.664746093750036,54.40664062499999],[20.20820312500004,54.420751953125034],[19.92431640625003,54.433984374999966],[19.644238281250068,54.44707031249995],[19.604394531250023,54.45917968750003],[19.758496093750068,54.54482421874999],[19.85888671875,54.63383789062499],[19.944140625000074,54.75],[19.953222656250034,54.83046875],[19.974511718750023,54.92119140625002],[20.107617187500068,54.956494140625004],[20.396679687500068,54.951269531250006],[20.520312500000017,54.994873046875],[20.67890625000001,55.102636718750034],[20.845703125000057,55.23203125],[20.899804687500076,55.286669921875045],[20.957812500000074,55.27890625000006],[20.859375,55.18364257812502],[20.594824218750006,54.982373046874955],[20.677734375000025,54.955664062500006]]],[[[166.65029296875005,54.83906249999998],[166.64511718750006,54.69409179687502],[166.5212890625,54.76762695312499],[166.46367187500002,54.82685546874998],[166.38173828125005,54.83808593749995],[166.32480468750006,54.86455078125001],[166.2298828125,54.93652343750002],[166.11972656250012,55.03037109375006],[166.08232421875007,55.07656250000005],[166.06630859375,55.13569335937501],[165.99189453125007,55.19047851562499],[165.75107421875006,55.29453125000003],[165.83046874999997,55.30693359374998],[165.93125,55.351464843749994],[166.21191406249997,55.323974609375],[166.27578125000005,55.311962890624955],[166.22998046875003,55.24233398437496],[166.24804687499997,55.16542968750002],[166.404296875,55.00561523437497],[166.47949218749997,54.94990234375001],[166.5773437500001,54.90771484375003],[166.65029296875005,54.83906249999998]]],[[[150.58994140625006,59.01875],[150.5111328125,59.007421875],[150.47177734375003,59.03476562500006],[150.47021484375,59.05405273437498],[150.59248046875004,59.09721679687498],[150.6662109375,59.16015625000002],[150.71269531250002,59.122460937499994],[150.7277343750001,59.09521484375003],[150.58994140625006,59.01875]]],[[[163.63515625000002,58.603369140625],[163.47138671875004,58.509375],[163.44726562500003,58.52465820312505],[163.4318359375001,58.54614257812501],[163.42724609374997,58.578955078125006],[163.57675781250012,58.640869140625],[163.7265625,58.798535156249976],[163.78447265625007,58.929736328125074],[163.76660156249997,58.97236328124995],[163.7609375000001,59.015039062500016],[164.20214843749997,59.09619140625005],[164.51738281250002,59.22675781250001],[164.57265625,59.22114257812501],[164.62929687500005,59.112207031250016],[164.66162109374997,58.97075195312499],[164.61572265624997,58.885595703125034],[164.27880859374994,58.838085937499955],[163.96005859375006,58.74375],[163.63515625000002,58.603369140625]]],[[[35.8161132812501,65.18208007812501],[35.84843750000002,65.14267578124998],[35.85839843750003,65.0779296875],[35.8273437500001,65.036474609375],[35.84228515625003,65.00146484374997],[35.77871093750005,64.97666015625],[35.68007812499999,65.05761718749997],[35.621386718750074,65.05878906250004],[35.55859374999997,65.093603515625],[35.52890625000006,65.15107421875001],[35.585742187500074,65.16708984374998],[35.60869140625002,65.15712890625],[35.72910156250006,65.19755859375005],[35.8161132812501,65.18208007812501]]],[[[70.02070312500004,66.502197265625],[69.84472656249997,66.48974609375006],[69.65136718750001,66.56533203125],[69.46933593750006,66.71596679687505],[69.50273437500002,66.75107421875],[69.6164062500001,66.73901367187503],[69.800390625,66.73647460937505],[69.91757812500006,66.71166992187497],[70.07666015624996,66.69589843750003],[70.05761718749996,66.627197265625],[70.0572265625,66.59946289062502],[70.11005859375004,66.56909179687506],[70.05917968750006,66.51757812500003],[70.02070312500004,66.502197265625]]],[[[42.713671875000074,66.70170898437507],[42.67558593750002,66.68808593750003],[42.47734375000002,66.73505859375001],[42.460058593750055,66.77036132812503],[42.46855468750002,66.785546875],[42.5474609375,66.7955078125],[42.631445312500006,66.78222656250003],[42.690722656250074,66.73530273437498],[42.713671875000074,66.70170898437507]]],[[[-179.79853515625,68.9404296875],[-179.59541015625,68.906494140625],[-179.51450195312503,68.91713867187505],[-179.47084960937502,68.91240234375005],[-179.35595703125,68.85297851562501],[-179.279296875,68.82519531250006],[-178.873876953125,68.75410156249995],[-178.68930664062498,68.67514648437503],[-178.53852539062498,68.58564453125001],[-178.61367187500002,68.60307617187502],[-178.75146484375003,68.66044921875005],[-178.7365234375,68.593017578125],[-178.69262695312503,68.54599609375],[-178.47392578125,68.50175781250005],[-178.24448242187503,68.46665039062499],[-178.09746093750002,68.4248046875],[-178.04868164062503,68.38842773437497],[-178.01870117187497,68.32275390625],[-178.05581054687494,68.26489257812503],[-177.92241210937496,68.2865234375],[-177.79677734374997,68.33798828125],[-177.86181640624997,68.37822265625002],[-178.284521484375,68.51855468750003],[-178.37304687500003,68.56567382812503],[-178.24985351562498,68.54140624999997],[-177.68320312499998,68.36279296875],[-177.52724609375002,68.29438476562501],[-177.59321289062504,68.28115234374997],[-177.63935546875004,68.2412109375],[-177.58920898437503,68.22421875],[-177.52089843749994,68.23686523437502],[-177.40751953124996,68.24516601562502],[-177.297412109375,68.222509765625],[-177.171826171875,68.17465820312503],[-176.90727539062502,68.119140625],[-175.34521484374997,67.67807617187503],[-175.30986328125002,67.60205078125],[-175.26591796875002,67.56650390625003],[-175.23955078125,67.52109375000003],[-175.23251953124998,67.44667968749997],[-175.37470703124995,67.35737304687497],[-175.155078125,67.365380859375],[-175.122802734375,67.37695312499997],[-175.065625,67.41342773437503],[-175.00268554687494,67.4375],[-174.91806640625003,67.40756835937498],[-174.849853515625,67.34887695312503],[-174.869921875,67.26850585937498],[-174.93041992187497,67.20346679687498],[-174.93813476562497,67.09301757812503],[-174.88505859375,67.00024414062506],[-174.82871093750003,66.96137695312504],[-174.78364257812498,66.91679687500002],[-174.77119140625004,66.78432617187502],[-174.87011718750003,66.72490234374999],[-174.92490234375,66.62314453125006],[-174.8642578125,66.61313476562506],[-174.674658203125,66.60341796875002],[-174.61245117187494,66.58540039062501],[-174.503759765625,66.53793945312499],[-174.47773437500004,66.49218750000003],[-174.45375976562494,66.42988281250001],[-174.418701171875,66.37197265625005],[-174.39409179687496,66.34423828124997],[-174.36606445312503,66.34833984375001],[-174.256982421875,66.428466796875],[-174.206005859375,66.45234374999998],[-174.084765625,66.47309570312504],[-174.01772460937502,66.38251953124995],[-174.06503906249998,66.22958984374998],[-174.025439453125,66.22968750000001],[-173.99448242187498,66.24580078125001],[-173.95546874999997,66.286767578125],[-173.899951171875,66.31049804687495],[-173.83203125000003,66.36606445312498],[-173.77397460937502,66.43466796875003],[-173.84252929687503,66.48828125000003],[-173.92094726562502,66.52177734375002],[-174.10185546875002,66.540625],[-174.196337890625,66.58071289062502],[-174.23159179687497,66.63188476562503],[-174.13959960937498,66.65263671875002],[-174.06059570312496,66.68979492187503],[-174.00551757812502,66.77861328125002],[-174.01884765624996,66.827392578125],[-174.04101562499997,66.87548828125003],[-174.08642578125,66.94287109375],[-174.15434570312496,66.98203124999998],[-174.283544921875,67.00156250000006],[-174.341845703125,67.03974609375],[-174.430908203125,67.037646484375],[-174.5189453125,67.04907226562506],[-174.55449218749996,67.06303710937505],[-174.55009765624993,67.090625],[-174.44760742187503,67.103125],[-173.88403320312497,67.1064453125],[-173.6796875,67.144775390625],[-173.58657226562502,67.13276367187495],[-173.49399414062498,67.10517578125001],[-173.15781249999998,67.06909179687503],[-173.16762695312502,67.05224609374997],[-173.224169921875,67.03510742187495],[-173.32353515625,66.95483398437503],[-173.34306640625,66.90922851562507],[-173.34736328124995,66.85136718750002],[-173.25893554687497,66.84008789062503],[-173.175390625,66.86459960937503],[-173.21616210937495,66.91123046875003],[-173.22827148437503,66.96855468749999],[-173.19301757812497,66.99360351562504],[-173.14682617187498,66.99897460937495],[-173.05849609375,66.95585937500007],[-172.96259765625,66.94213867187503],[-172.64057617187504,66.925],[-172.54936523437502,66.93051757812506],[-172.5201171875,66.952490234375],[-172.582958984375,66.97783203125002],[-173.001904296875,67.03398437499997],[-173.00751953125,67.06489257812497],[-172.62104492187495,67.02680664062495],[-172.44731445312502,66.99174804687502],[-172.27392578125003,66.965576171875],[-172.03149414062503,66.97329101562497],[-171.79555664062502,66.93173828125003],[-171.56958007812497,66.818701171875],[-171.36049804687502,66.67675781250006],[-171.14926757812498,66.59272460937498],[-170.92666015625002,66.52973632812503],[-170.5556640625,66.35722656250005],[-170.50952148437503,66.34365234375005],[-170.47309570312498,66.32026367187498],[-170.54282226562498,66.29106445312499],[-170.604443359375,66.24892578125002],[-170.48330078125002,66.278076171875],[-170.3611328125,66.29790039062503],[-170.30122070312504,66.29404296874998],[-170.24697265625,66.271875],[-170.21162109375,66.23642578125003],[-170.191943359375,66.20126953124998],[-170.24394531250002,66.16928710937503],[-169.88881835937497,66.16347656250002],[-169.777880859375,66.14311523437505],[-169.72915039062502,66.05810546875006],[-169.83168945312497,65.99892578124997],[-169.89169921875,66.00610351562503],[-169.94931640625003,66.03100585937503],[-170.00380859375,66.03349609375],[-170.15942382812503,66.00805664062497],[-170.40102539062494,65.928515625],[-170.54067382812497,65.86542968749994],[-170.563037109375,65.82358398437506],[-170.54140624999994,65.71025390625005],[-170.560986328125,65.65625],[-170.66630859375,65.62153320312501],[-170.896875,65.64262695312505],[-171.00146484374997,65.66489257812506],[-171.11899414062503,65.69501953124997],[-171.23203124999995,65.73686523437505],[-171.37685546874997,65.80395507812504],[-171.42153320312502,65.81035156250002],[-171.45117187499997,65.79423828125002],[-171.40170898437498,65.75175781249999],[-171.30322265625,65.69848632812496],[-171.13442382812494,65.62807617187502],[-171.05424804687496,65.54995117187498],[-171.105859375,65.51103515625005],[-171.169970703125,65.50209960937502],[-171.21601562499998,65.50278320312498],[-171.36376953124997,65.52719726562498],[-171.46625976562498,65.53310546875002],[-171.79038085937503,65.51044921875004],[-171.90712890625,65.495947265625],[-171.94716796874997,65.50795898437497],[-171.957177734375,65.54208984374996],[-172.13149414062497,65.56694335937499],[-172.23388671874994,65.570458984375],[-172.28227539062496,65.58232421875002],[-172.322265625,65.617529296875],[-172.43569335937497,65.66962890624995],[-172.60771484375,65.69003906250003],[-172.71918945312498,65.69243164062507],[-172.78330078124998,65.68105468749997],[-172.55654296874997,65.61201171875],[-172.353955078125,65.49599609375002],[-172.39199218750002,65.47456054687501],[-172.41777343749993,65.44956054687505],[-172.30571289062502,65.44780273437505],[-172.23281250000002,65.45571289062497],[-172.211572265625,65.42519531249997],[-172.269873046875,65.302734375],[-172.30927734375004,65.27563476562497],[-172.66191406249993,65.24853515625006],[-172.57314453124997,65.22822265624998],[-172.48208007812497,65.221875],[-172.3787109375,65.22670898437505],[-172.28603515625002,65.20571289062502],[-172.22368164062502,65.12871093750007],[-172.21318359375,65.04814453124997],[-172.30434570312502,65.00214843750004],[-172.39873046874996,64.96474609374997],[-172.592822265625,64.90795898437503],[-172.79248046875,64.88291015624998],[-172.89736328124994,64.88920898437502],[-172.99912109374998,64.87661132812504],[-173.06621093749996,64.84716796875],[-173.08579101562498,64.81733398437495],[-172.99804687500003,64.83710937499998],[-172.896875,64.82607421875005],[-172.80107421874993,64.79052734375],[-172.81157226562493,64.76118164062498],[-172.90258789062503,64.72919921875004],[-172.9240234375,64.70493164062506],[-172.88906250000002,64.66401367187498],[-172.90087890624991,64.62885742187501],[-172.854150390625,64.60991210937507],[-172.746875,64.60327148437503],[-172.61611328125002,64.57788085937503],[-172.48740234375,64.544189453125],[-172.43662109374998,64.51533203124998],[-172.39384765624996,64.47465820312505],[-172.37875976562498,64.43154296874997],[-172.40146484374998,64.413916015625],[-172.69467773437503,64.40708007812503],[-172.73916015624997,64.41225585937502],[-172.75595703125,64.45996093749997],[-172.79150390624997,64.49892578125002],[-172.90317382812495,64.52607421875004],[-172.9490234375,64.50737304687505],[-172.91586914062495,64.36943359375002],[-172.96005859375003,64.32768554687502],[-173.00913085937498,64.2974609375],[-173.15742187499998,64.27973632812504],[-173.27548828124998,64.2896484375],[-173.37568359375004,64.35488281249997],[-173.375537109375,64.410400390625],[-173.30922851562502,64.44267578125002],[-173.30932617187503,64.487451171875],[-173.327490234375,64.53955078125003],[-173.39565429687502,64.47900390625001],[-173.47495117187503,64.42861328125],[-173.60361328125003,64.365478515625],[-173.66596679687504,64.35732421875002],[-173.72973632812497,64.36450195312497],[-173.8978515625,64.40971679687505],[-174.00136718749997,64.44897460937506],[-174.20483398437503,64.577783203125],[-174.318017578125,64.63764648437503],[-174.57055664062503,64.71777343749999],[-174.83046874999994,64.77597656250006],[-175.03603515625,64.813671875],[-175.14584960937498,64.80927734375001],[-175.25590820312493,64.79399414062499],[-175.39511718749998,64.80239257812502],[-175.44213867187494,64.81669921874999],[-175.48320312499996,64.84858398437501],[-175.52065429687497,64.86708984374997],[-175.71586914062493,64.94609374999999],[-175.85385742187498,65.01083984375003],[-175.85947265624995,65.05419921874997],[-175.83022460937497,65.10551757812505],[-175.85615234375,65.23281250000005],[-175.92294921875003,65.35249023437501],[-176.09326171875,65.47104492187499],[-176.54746093749998,65.54755859374994],[-176.92211914062503,65.60136718749997],[-177.05625,65.613623046875],[-177.17524414062498,65.60166015625003],[-177.48876953124997,65.50371093749999],[-177.69863281250002,65.48969726562498],[-178.31020507812502,65.48486328124997],[-178.4125,65.49555664062501],[-178.504638671875,65.53720703124998],[-178.525927734375,65.59301757812497],[-178.49931640625,65.69663085937503],[-178.50234375,65.74042968749998],[-178.52622070312498,65.75522460937498],[-178.55854492187498,65.75400390625],[-178.679150390625,65.79536132812498],[-178.79106445312502,65.86474609375],[-178.87934570312495,65.93647460937495],[-178.93906249999998,66.03276367187505],[-178.85825195312503,66.03754882812504],[-178.74672851562497,66.01367187500006],[-178.73056640625,66.03725585937497],[-178.693798828125,66.12421875000001],[-178.61625976562502,66.166015625],[-178.5865234375,66.19843750000004],[-178.53413085937498,66.31655273437502],[-178.52656250000004,66.40156250000004],[-178.615771484375,66.35517578124998],[-178.75278320312503,66.23725585937495],[-178.82084960937496,66.20268554687502],[-178.86811523437498,66.187060546875],[-178.91552734374997,66.17993164062499],[-179.02612304687503,66.203515625],[-179.10507812500003,66.23193359375003],[-179.10688476562504,66.34609375],[-179.14340820312503,66.37504882812505],[-179.17836914062497,66.35332031250005],[-179.19267578125005,66.312548828125],[-179.29316406249998,66.305078125],[-179.34013671874996,66.2875],[-179.3162109375,66.21982421875003],[-179.32719726562496,66.16259765625003],[-179.42265625,66.14106445312497],[-179.61616210937495,66.12788085937495],[-179.68330078124998,66.18413085937505],[-179.74086914062497,66.10576171874999],[-179.78364257812498,66.01796875000005],[-179.78969726562497,65.90087890624999],[-179.7283203125,65.80380859375],[-179.640625,65.757568359375],[-179.44907226562503,65.687841796875],[-179.365966796875,65.63862304687504],[-179.344384765625,65.57524414062497],[-179.352099609375,65.51674804687497],[-179.45166015625003,65.4453125],[-179.51933593749993,65.38627929687505],[-179.63515625000002,65.24414062500003],[-179.70458984374994,65.18720703124998],[-180,65.06723632812498],[-180,65.31196289062501],[-180,65.55678710937495],[-180,65.80156250000002],[-180,66.04628906250002],[-180,66.29106445312499],[-180,66.53583984375004],[-180,66.78056640625003],[-180,67.02534179687501],[-180,67.27011718750006],[-180,67.51484374999998],[-180,67.75961914062503],[-180,68.00439453124997],[-180,68.24912109375],[-180,68.49389648437497],[-180,68.738671875],[-179.999951171875,68.98344726562503],[-179.79853515625,68.9404296875]]],[[[50.265234375,69.18559570312502],[50.283007812500074,69.08886718750003],[50.220605468750044,69.04877929687504],[50.16445312499999,69.03754882812495],[50.140917968750074,69.09814453124997],[50.0939453125001,69.12553710937505],[49.92080078124999,69.05327148437507],[49.83984375000003,68.97377929687502],[49.62626953125002,68.85971679687496],[49.180468750000074,68.77841796875003],[48.91035156250004,68.74306640625002],[48.66699218750002,68.73315429687501],[48.4390625,68.80488281249998],[48.31591796874997,68.94238281250003],[48.29443359374997,68.98422851562503],[48.27880859374997,69.04033203124999],[48.28027343749997,69.096630859375],[48.296289062499994,69.18388671875002],[48.319921875,69.26923828125001],[48.41386718750002,69.34565429687504],[48.63134765625003,69.43603515624997],[48.8449218750001,69.49472656250003],[48.9533203125001,69.50927734374997],[49.22519531250006,69.51123046875],[49.9962890625001,69.30942382812503],[50.16728515625002,69.25708007812503],[50.265234375,69.18559570312502]]],[[[67.34492187500004,69.52983398437499],[67.26396484375002,69.44252929687497],[67.0978515625001,69.44716796875002],[67.047265625,69.46704101562497],[67.02587890624997,69.48320312499999],[67.21611328125002,69.57539062500004],[67.32890625000002,69.57211914062496],[67.34492187500004,69.52983398437499]]],[[[161.46708984375002,68.90097656250003],[161.42246093750003,68.89965820312503],[161.45625,68.96601562499995],[161.46113281250004,68.99560546875003],[161.36406250000002,69.04443359375003],[161.18251953125005,69.08159179687505],[161.13652343750002,69.11025390625002],[161.12548828124997,69.19702148437503],[161.16455078125003,69.33359374999998],[161.08281250000005,69.4056640625],[161.1107421875,69.46982421875],[161.32333984375006,69.54091796875002],[161.40976562500003,69.595703125],[161.50517578125007,69.63945312500002],[161.52070312500004,69.63403320312497],[161.61777343750006,69.59243164062502],[161.60927734375005,69.50092773437495],[161.54033203125002,69.43652343749997],[161.3744140625,69.41367187500003],[161.35087890625007,69.36933593749998],[161.37265625000006,69.292822265625],[161.37753906250006,69.19443359375003],[161.39423828125,69.10644531249997],[161.49472656250006,69.01601562500002],[161.5169921875,68.96958007812498],[161.50673828125005,68.92758789062503],[161.46708984375002,68.90097656250003]]],[[[169.20078125000003,69.58046875],[168.91572265625004,69.57143554687502],[168.34804687500002,69.66435546875005],[168.14433593750002,69.71333007812498],[167.99267578124997,69.77583007812501],[167.82128906250003,69.81962890625005],[167.78886718750002,69.83686523437501],[167.81396484374997,69.873046875],[167.86474609375003,69.90107421875004],[168.05957031249997,69.97490234375007],[168.19628906249997,70.00839843750003],[168.35791015625003,70.01567382812502],[169.37480468750007,69.88261718749999],[169.42070312500002,69.8560546875],[169.43359374999997,69.83217773437502],[169.4181640625001,69.77919921875],[169.33242187500005,69.76958007812507],[169.29912109375,69.734765625],[169.2633789062501,69.62871093750005],[169.2458007812501,69.60112304687502],[169.20078125000003,69.58046875]]],[[[60.450488281250074,69.93486328124999],[60.48066406250004,69.88549804687497],[60.4772460937501,69.793701171875],[60.44023437500002,69.72592773437506],[60.32714843749997,69.71528320312501],[60.215917968750055,69.68769531249997],[60.02617187500001,69.71704101562503],[59.91953125000006,69.69697265625001],[59.812792968750074,69.695654296875],[59.72460937499997,69.70620117187502],[59.637011718750074,69.72104492187503],[59.578222656250055,69.73862304687498],[59.58125,69.79086914062506],[59.50263671875005,69.86621093750003],[59.38154296875003,69.89042968749999],[59.26835937500002,69.89843750000003],[59.14423828125004,69.92192382812502],[59.08251953124997,69.91079101562497],[59.004003906250055,69.88330078125006],[58.952734375,69.89277343750004],[58.68007812500005,70.05102539062503],[58.63417968750005,70.08803710937502],[58.60556640625006,70.12919921875003],[58.56806640625004,70.15566406250002],[58.47304687499999,70.26684570312503],[58.519921875000044,70.31831054687504],[58.61533203125,70.350830078125],[58.678027343750074,70.35957031250001],[58.79423828125002,70.43295898437503],[59.005273437500044,70.46518554687503],[59.04804687500004,70.46049804687505],[59.08828124999999,70.43710937499998],[59.30986328125002,70.36166992187498],[59.42597656250003,70.31093750000005],[59.52910156250002,70.24897460937503],[59.63632812500001,70.19702148437503],[59.95585937500001,70.10834960937498],[60.172265625000044,70.02285156249997],[60.39257812499997,69.96240234375],[60.450488281250074,69.93486328124999]]],[[[66.56093750000005,70.541748046875],[66.5685546875001,70.50146484375006],[66.5158203125001,70.51489257812503],[66.4486328125,70.56103515625],[66.4076171875,70.61577148437507],[66.39482421875002,70.72729492187506],[66.4181640625001,70.75712890624999],[66.44023437500007,70.77265624999995],[66.46289062499997,70.76933593749999],[66.45771484375004,70.69877929687502],[66.56093750000005,70.541748046875]]],[[[160.71894531250004,70.82270507812504],[160.6513671875,70.80585937499998],[160.50478515625,70.81972656250005],[160.43691406250005,70.85102539062504],[160.44042968750003,70.92265625000003],[160.44853515625002,70.93403320312498],[160.5658203125,70.92377929687501],[160.64492187500005,70.883544921875],[160.71894531250004,70.82270507812504]]],[[[52.90332031250003,71.36499023437503],[52.99414062499997,71.291259765625],[53.074023437500074,71.237939453125],[53.14140625000002,71.24189453124998],[53.19257812500004,71.21528320312498],[53.20517578125006,71.15971679687505],[53.0714843750001,71.0650390625],[53.04814453125002,71.03095703125001],[53.10576171875002,70.99926757812503],[53.120996093750044,70.98203124999998],[53.02265625000009,70.96870117187501],[53.0044921875,71.01162109374997],[52.94960937500005,71.05361328125],[52.835351562499994,71.08583984374998],[52.788964843749994,71.11494140624998],[52.73837890625006,71.18066406250003],[52.5465820312501,71.25043945312495],[52.4254882812501,71.23925781249997],[52.28945312499999,71.270361328125],[52.24960937500006,71.28491210937504],[52.23984375,71.32504882812506],[52.29658203125004,71.35683593750005],[52.51259765624999,71.38505859375002],[52.61738281250004,71.383349609375],[52.7296875000001,71.35512695312497],[52.7203125,71.38979492187502],[52.732226562500074,71.40371093749998],[52.776757812499994,71.3998046875],[52.90332031250003,71.36499023437503]]],[[[178.8615234375001,70.826416015625],[178.79257812500006,70.82207031249999],[178.64824218749996,71.00058593750003],[178.6283203125,71.04736328124997],[178.68388671875013,71.10566406250004],[178.82900390625005,71.177880859375],[178.89111328125009,71.23110351562502],[179.23505859375015,71.32451171875005],[179.54765625000007,71.44765625],[179.71591796875003,71.46621093750002],[179.88642578125015,71.52333984375005],[180,71.53774414062505],[180,70.993017578125],[179.88134765625003,70.97568359375003],[179.64765625000004,70.89892578125003],[179.15253906250004,70.88027343750001],[178.8615234375001,70.826416015625]]],[[[137.95986328125005,71.50766601562503],[137.71181640625005,71.4232421875],[137.61289062500003,71.43393554687503],[137.51181640625006,71.47460937499997],[137.45781250000007,71.48349609375],[137.40322265625005,71.47729492187497],[137.34423828125003,71.46054687500003],[137.26552734375,71.45590820312498],[137.07871093750012,71.502197265625],[137.06406250000006,71.52988281250003],[137.08183593750002,71.542724609375],[137.12949218750003,71.55615234374997],[137.16816406250004,71.55712890625],[137.28183593750012,71.57993164062503],[137.81679687499997,71.58789062500006],[137.8576171875001,71.58305664062505],[137.93378906250004,71.54277343749999],[137.95986328125005,71.50766601562503]]],[[[-178.87646484375,71.57705078124997],[-178.43896484374994,71.54116210937502],[-178.35356445312496,71.52919921875],[-178.214697265625,71.48164062499998],[-178.13388671874998,71.46547851562497],[-178.05664062499994,71.43759765624998],[-177.97480468749995,71.39052734375],[-177.81699218749995,71.339990234375],[-177.58413085937497,71.28168945312501],[-177.53217773437504,71.26308593750004],[-177.498486328125,71.21914062499997],[-177.523583984375,71.16689453124998],[-177.82177734375,71.06757812500001],[-178.06269531250004,71.04194335937501],[-178.52797851562494,71.014794921875],[-179.156884765625,70.93984375],[-179.415673828125,70.918994140625],[-179.50668945312498,70.92343750000003],[-179.73403320312502,70.9716796875],[-179.999951171875,70.993017578125],[-179.999951171875,71.18422851562497],[-179.999951171875,71.39970703124999],[-179.999951171875,71.53774414062505],[-179.84487304687502,71.55097656249998],[-179.69101562500003,71.57797851562498],[-179.54638671874997,71.582421875],[-179.40205078125007,71.56665039062497],[-179.25649414062494,71.57167968750002],[-179.11157226562503,71.59619140625006],[-178.99404296874997,71.59321289062498],[-178.87646484375,71.57705078124997]]],[[[77.6325195312501,72.291259765625],[77.14560546875012,72.28188476562501],[76.90595703125004,72.29765625000005],[76.87109374999996,72.317041015625],[76.903125,72.36557617187503],[77.14951171875012,72.43920898437503],[77.26044921875004,72.48613281249999],[77.37783203125,72.56528320312503],[77.57871093750006,72.63085937499997],[77.74853515625003,72.63120117187506],[78.27910156250002,72.55322265624997],[78.35292968750005,72.50429687500005],[78.36513671875005,72.48242187500003],[78.15449218750004,72.41699218750003],[78.00722656250005,72.39248046875],[77.78085937500012,72.30854492187495],[77.6325195312501,72.291259765625]]],[[[79.50146484374997,72.72192382812497],[79.43066406249997,72.710693359375],[78.88056640625003,72.751611328125],[78.69023437500002,72.80341796874995],[78.63320312500005,72.85073242187502],[78.65683593750006,72.89228515624995],[79.16425781250004,73.0943359375],[79.35654296875006,73.038623046875],[79.4125,72.98310546874998],[79.54130859375002,72.91865234374997],[79.537890625,72.76933593750005],[79.50146484374997,72.72192382812497]]],[[[74.660546875,72.87343750000002],[74.6383789062501,72.86376953124999],[74.5880859375001,72.88115234374999],[74.4347656250001,72.90766601562498],[74.18066406250003,72.975341796875],[74.10019531250005,73.02153320312499],[74.14238281250002,73.07436523437502],[74.19853515625,73.10908203124998],[74.40878906250005,73.13046874999998],[74.59990234375007,73.12177734374998],[74.72529296875004,73.10815429687496],[74.9615234375,73.0625],[74.742578125,73.03271484375006],[74.64726562500007,72.96904296875003],[74.66015625000001,72.92929687500003],[74.69716796875,72.90771484375],[74.660546875,72.87343750000002]]],[[[120.2613281250001,73.08984374999996],[120.00791015625006,73.04487304687495],[119.79208984375005,73.04541015624996],[119.64042968750002,73.12431640625007],[119.76191406250003,73.15546875000001],[119.96445312500012,73.16767578125001],[120.078515625,73.15673828125],[120.23681640624996,73.10727539062505],[120.2613281250001,73.08984374999996]]],[[[55.31982421875002,73.30830078124998],[55.78730468750004,73.26860351562505],[56.13769531250003,73.25615234375002],[56.350488281249994,73.22553710937498],[56.42958984375005,73.201171875],[56.39746093749997,73.13916015624996],[56.3346679687501,73.11367187500002],[56.18896484374997,73.0330078125],[56.16699218750003,72.98320312499999],[56.19287109374997,72.90498046874995],[56.170507812500006,72.84809570312501],[56.121679687500006,72.80659179687497],[56.08378906250002,72.78940429687503],[55.81972656250005,72.78950195312498],[55.723437500000074,72.76640625000007],[55.71845703125004,72.72153320312498],[55.70097656250001,72.67172851562506],[55.61640625000004,72.59907226562498],[55.44130859375005,72.57539062499995],[55.40332031249997,72.54907226562503],[55.416894531250044,72.50131835937498],[55.35595703124997,72.46508789062506],[55.3595703125001,72.40869140625003],[55.39042968750002,72.37783203125004],[55.39912109375009,72.31362304687502],[55.51806640624997,72.22065429687498],[55.494921875000074,72.18232421875001],[55.40332031249997,72.10688476562497],[55.375,72.014892578125],[55.29785156249997,71.93535156250005],[55.47109375,71.86923828124998],[55.54667968750001,71.783349609375],[55.61367187499999,71.68989257812495],[55.81933593749997,71.50756835937503],[56.0431640625001,71.34560546874997],[56.45439453125002,71.10737304687504],[56.894824218750074,70.92700195312504],[57.065625,70.87602539062505],[57.48359375000009,70.79228515625003],[57.55644531250001,70.76582031249998],[57.62539062500005,70.72880859374999],[57.44716796875006,70.66103515625005],[57.263671874999964,70.63603515625002],[57.24697265625005,70.60512695312502],[57.14589843750005,70.58911132812506],[56.64882812500005,70.64653320312502],[56.621679687500006,70.65537109375003],[56.568652343750074,70.69746093750001],[56.51005859375002,70.72880859374999],[56.38574218749997,70.73413085937503],[56.260058593750074,70.71474609374997],[56.33476562500002,70.67670898437495],[56.4171875000001,70.66494140625005],[56.561328125000074,70.59355468750007],[56.49970703125004,70.56640625000003],[56.43457031249997,70.56298828124997],[56.142480468749994,70.65786132812502],[56.11474609375002,70.64614257812502],[56.0871093750001,70.61835937499995],[55.94160156250004,70.64926757812503],[55.90722656250003,70.62631835937496],[55.796875,70.61557617187503],[55.70673828125003,70.64189453125005],[55.706445312499994,70.67524414062501],[55.687304687500074,70.69218749999999],[55.2369140625,70.666015625],[55.051660156249994,70.66674804687497],[54.86708984375005,70.678125],[54.64511718750006,70.741845703125],[54.608203125000074,70.71323242187503],[54.60117187500006,70.68007812500002],[54.51738281250002,70.69331054687495],[54.33261718750006,70.74467773437505],[54.19941406250009,70.76489257812497],[53.72236328125009,70.81445312500003],[53.383593750000074,70.87353515625],[53.46777343749997,70.90058593750001],[53.61357421875002,70.91464843750003],[53.615625,70.95083007812502],[53.59257812500001,71.00068359374995],[53.587792968749994,71.05229492187499],[53.670507812500006,71.08691406250003],[53.85703125000006,71.07041015625003],[53.83427734375007,71.12670898437497],[53.922265625000044,71.13759765624997],[54.0939453125001,71.10522460937503],[54.155664062499994,71.12548828125],[53.88613281250005,71.19628906250003],[53.59082031250003,71.29667968750005],[53.62216796875,71.33276367187503],[53.51523437500006,71.34252929687497],[53.40996093750002,71.34013671875002],[53.31904296875004,71.39916992187497],[53.33251953124997,71.47724609374998],[53.41162109375003,71.530126953125],[53.363867187500055,71.54165039062505],[52.90898437500002,71.49501953125005],[52.678710937499964,71.50566406249999],[52.41884765624999,71.53686523437503],[52.17998046875002,71.49023437500006],[51.937890625000044,71.47470703124998],[51.812597656250006,71.49130859375],[51.69160156250004,71.52514648437506],[51.59042968750006,71.571142578125],[51.511328125,71.64809570312497],[51.43867187500004,71.77680664062498],[51.42861328125005,71.82553710937506],[51.4435546875001,71.934375],[51.48222656250002,71.97978515625005],[51.58251953124997,72.07119140625],[51.653125,72.09936523437497],[51.805468750000074,72.14213867187497],[51.88544921875004,72.15322265625002],[52.068652343750074,72.13115234375005],[52.252050781250006,72.12973632812502],[52.33232421875001,72.153955078125],[52.40673828125002,72.19672851562501],[52.46191406249997,72.25234374999997],[52.58613281250003,72.28403320312502],[52.62207031250003,72.30097656250001],[52.66191406250002,72.33686523437495],[52.7057617187501,72.39096679687506],[52.71386718749997,72.43696289062501],[52.74873046875004,72.48295898437505],[52.86367187499999,72.54985351562499],[52.82324218749997,72.59125976562501],[52.83906250000003,72.61928710937502],[52.91660156250006,72.66889648437501],[52.68310546875003,72.68232421874998],[52.60498046874997,72.70405273437498],[52.52851562500004,72.73735351562502],[52.55058593750002,72.76855468749997],[52.5792968750001,72.791357421875],[52.8122070312501,72.87524414062501],[52.913183593750055,72.89995117187502],[53.02421875000002,72.91357421875003],[53.13496093750004,72.91323242187505],[53.25351562500006,72.90375976562498],[53.3698242187501,72.91674804687506],[53.2472656250001,72.97314453125],[53.23710937500007,73.011181640625],[53.18896484375003,73.10400390625],[53.1979492187501,73.14755859375],[53.2511718750001,73.182958984375],[53.3576171875001,73.22456054687495],[53.51220703124997,73.23837890625003],[53.633691406250044,73.26025390625006],[53.75322265625007,73.29326171875002],[53.865625,73.29897460937502],[54.09101562500004,73.27646484374998],[54.2023437500001,73.28134765624998],[54.32763671875002,73.29946289062505],[54.67607421875001,73.37001953125002],[54.80390625000004,73.38764648437498],[54.940625,73.38325195312495],[55.12138671875007,73.3568359375],[55.31982421875002,73.30830078124998]]],[[[70.67392578125006,73.09501953125005],[70.38037109375003,73.048095703125],[70.29833984375003,73.04448242187503],[70.11865234374997,73.05629882812497],[70.04072265625004,73.03715820312507],[69.92011718750004,73.08452148437505],[69.9303710937501,73.12661132812498],[69.98564453125006,73.16923828125007],[70.01875,73.22431640625001],[69.9958984375,73.359375],[70.1496093750001,73.44472656249997],[70.35,73.47763671874999],[70.94023437500002,73.51440429687501],[71.02324218750007,73.50419921875002],[71.14121093750005,73.47797851562498],[71.23164062500008,73.44775390625006],[71.351171875,73.37221679687502],[71.444921875,73.34208984375002],[71.5895507812501,73.283154296875],[71.63046875000006,73.22480468750001],[71.6261718750001,73.17397460937497],[71.35566406250004,73.162451171875],[70.88671874999997,73.11962890624999],[70.67392578125006,73.09501953125005]]],[[[76.75605468750004,73.44580078125],[76.659375,73.43950195312505],[76.23447265625012,73.476220703125],[76.08310546875005,73.523486328125],[76.13955078125005,73.554296875],[76.25068359375003,73.5552734375],[76.75605468750004,73.44580078125]]],[[[75.50371093750002,73.456640625],[75.34433593750006,73.432275390625],[75.375,73.47739257812506],[75.56972656250005,73.540625],[75.93017578125003,73.57363281250002],[76.039453125,73.55991210937496],[76.05156250000007,73.54926757812495],[75.90097656249999,73.48149414062499],[75.82714843749997,73.45913085937497],[75.50371093750002,73.456640625]]],[[[142.18486328125005,73.89589843750005],[142.43505859374997,73.85156249999996],[142.63916015624997,73.80307617187506],[143.34375,73.56875],[143.41074218750012,73.52084960937503],[143.46396484375006,73.45888671875002],[143.49130859375012,73.24643554687498],[143.45146484375007,73.231298828125],[143.19326171875005,73.22075195312499],[142.84160156250002,73.24482421875001],[142.58691406249997,73.25332031249995],[142.34218750000005,73.25288085937495],[142.12636718750005,73.28168945312498],[141.59667968750003,73.31083984375003],[141.18271484375006,73.38920898437502],[140.75400390625006,73.44604492187497],[140.66279296875004,73.45200195312503],[140.39248046875,73.4353515625],[140.02695312500006,73.36142578125006],[139.92509765625002,73.35522460937503],[139.785546875,73.35522460937503],[139.68554687499994,73.42573242187501],[139.92011718750004,73.44858398437503],[140.15517578125,73.45751953125],[140.3806640625,73.48300781250003],[140.59355468750002,73.56455078125003],[140.6974609375001,73.62915039062497],[140.8837890625,73.77753906250001],[140.9835937500001,73.83154296875],[141.08476562500002,73.86586914062497],[141.18994140624997,73.87646484375],[141.3119140625,73.871875],[141.68193359375002,73.90419921874997],[141.9318359375001,73.91494140625002],[142.18486328125005,73.89589843750005]]],[[[124.54296875000003,73.85009765625003],[124.48173828125007,73.84790039062503],[124.36640625000003,73.87460937499998],[124.33574218750002,73.91030273437497],[124.33652343750006,73.928369140625],[124.42968749999996,73.94301757812497],[124.54765625000002,73.93383789062504],[124.63691406250003,73.90039062499997],[124.65292968750005,73.88803710937503],[124.54296875000003,73.85009765625003]]],[[[83.5490234375001,74.07177734375],[83.49580078125008,74.04843750000003],[83.45,74.05166015625],[83.41064453124997,74.03955078125],[83.15898437500002,74.07534179687502],[82.8177734375,74.09160156250003],[82.90292968750012,74.12890625],[83.14980468750005,74.151611328125],[83.51347656250002,74.12236328124999],[83.6183593750001,74.08945312500002],[83.5490234375001,74.07177734375]]],[[[82.70996093750003,74.09086914062507],[82.61279296874996,74.05644531250007],[82.478125,74.07578125],[82.3815429687501,74.09921874999998],[82.32939453125002,74.131103515625],[82.38242187500012,74.14926757812498],[82.52558593750004,74.16142578125005],[82.61103515625004,74.14853515625],[82.68896484375003,74.11123046875005],[82.70996093750003,74.09086914062507]]],[[[136.1974609375001,73.91362304687502],[136.12167968750012,73.88500976562506],[136.0514648437501,73.92910156249995],[135.71455078125004,74.05952148437497],[135.63339843750012,74.12143554687498],[135.4486328125,74.17968750000003],[135.40244140625012,74.20170898437499],[135.38701171875007,74.25336914062495],[135.62832031250005,74.21992187499998],[136.03681640625004,74.09033203125006],[136.25917968750005,73.98496093749998],[136.1974609375001,73.91362304687502]]],[[[141.01025390625003,73.99946289062501],[140.50722656250005,73.91865234374998],[140.40947265625002,73.92167968750005],[140.18320312500012,74.00458984374997],[140.10156249999997,74.18427734375001],[140.19355468750007,74.23671875000002],[140.30029296874997,74.25722656250002],[140.40742187500004,74.26645507812503],[140.84921875000006,74.27377929687503],[140.94433593750003,74.26464843750003],[141.03857421875003,74.24272460937502],[141.07949218749997,74.20932617187503],[141.09746093750002,74.16782226562503],[141.046875,74.05039062499998],[141.01025390625003,73.99946289062501]]],[[[84.75898437500003,74.45942382812501],[84.71044921875003,74.39980468750002],[84.42890625000004,74.43032226562502],[84.38945312500007,74.45444335937498],[84.54033203125007,74.49042968750001],[84.6798828125001,74.51235351562504],[84.87285156250007,74.51552734374998],[84.75898437500003,74.45942382812501]]],[[[113.38720703124997,74.40043945312499],[113.353125,74.35297851562498],[113.29921875,74.31713867187497],[113.25888671875012,74.27270507812497],[113.19023437500007,74.23930664062502],[112.97763671875012,74.19682617187507],[112.81132812500007,74.10292968750002],[112.78242187500003,74.09506835937502],[112.19580078124996,74.14624023437497],[112.10507812500006,74.16323242187497],[111.91210937500001,74.21923828125003],[111.64296875,74.27294921875003],[111.50341796874997,74.35307617187502],[111.57011718750007,74.36831054687502],[111.6375,74.37431640624999],[111.87978515625,74.36381835937499],[111.94921875000003,74.38876953124999],[111.98281250000004,74.456298828125],[111.98935546875012,74.49624023437497],[112.00761718750002,74.52675781249997],[112.08447265624996,74.54897460937504],[112.95175781250005,74.47958984375003],[113.28623046875012,74.44101562499998],[113.38720703124997,74.40043945312499]]],[[[86.653125,74.981298828125],[86.73710937500007,74.96298828125],[87.00058593750012,74.99194335937506],[87.05214843750005,74.982568359375],[87.12431640625007,74.93989257812501],[87.01171874999997,74.86191406250003],[86.92714843750005,74.83076171874998],[86.69199218750012,74.848291015625],[86.39052734375,74.85087890624997],[86.25859375000002,74.89350585937498],[86.33066406250012,74.93896484375],[86.50449218750012,74.965966796875],[86.60546874999996,74.99282226562497],[86.653125,74.981298828125]]],[[[82.17236328125003,75.41938476562501],[82.20878906250007,75.38696289062497],[82.22158203125,75.35053710937501],[82.17929687500012,75.33896484375005],[82.05009765625007,75.34096679687502],[81.97851562499997,75.24711914062499],[81.90507812500002,75.26279296874998],[81.8605468750001,75.31650390625],[81.69765625000005,75.28051757812506],[81.65478515625001,75.28891601562498],[81.5792968750001,75.33095703125001],[81.53212890625,75.33955078124998],[81.50058593750012,75.367919921875],[81.71210937500004,75.45141601562506],[81.8421875,75.40703125000007],[81.92656250000002,75.40996093750005],[81.90976562500006,75.46000976562502],[81.9127929687501,75.49770507812495],[82.021875,75.51347656249999],[82.165625,75.515625],[82.17236328125003,75.41938476562501]]],[[[146.79521484375007,75.37075195312505],[147.06035156250007,75.36430664062507],[147.44355468750004,75.43798828124997],[147.49697265625,75.44052734375003],[148.43242187500002,75.41352539062495],[148.5088867187501,75.38745117187497],[148.51884765625002,75.33647460937497],[148.48916015625,75.309375],[148.475,75.27241210937498],[148.59013671875007,75.23637695312502],[148.89218750000006,75.228125],[149.08320312500004,75.262060546875],[149.64531250000002,75.24458007812501],[150.10390625,75.21923828125],[150.28066406250005,75.16401367187501],[150.41718750000004,75.134326171875],[150.53056640625007,75.099853515625],[150.61289062500012,75.12016601562507],[150.69033203125,75.15532226562502],[150.75693359375006,75.16240234375005],[150.82236328125006,75.15654296875002],[150.6462890625,74.944580078125],[150.5802734375,74.9189453125],[150.33125,74.86679687500003],[149.83808593750004,74.79531249999997],[149.596875,74.77260742187505],[149.0501953125,74.7724609375],[148.296875,74.80043945312502],[148.09238281250006,74.82568359375003],[147.971875,74.85732421874998],[147.7409179687501,74.931982421875],[147.62685546875,74.95893554687498],[147.2570312500001,74.98427734375],[147.14404296874997,74.99843750000005],[146.9249023437501,75.0625],[146.7033203125001,75.11420898437501],[146.14853515625012,75.19829101562497],[146.18613281250006,75.29555664062498],[146.2576171875,75.39375],[146.34296875000004,75.48090820312501],[146.43847656250003,75.55820312500003],[146.5375,75.58178710937506],[146.7509765625,75.51044921874997],[146.7482421875001,75.42866210937504],[146.79521484375007,75.37075195312505]]],[[[135.9486328125,75.40957031250005],[135.74589843750002,75.38198242187502],[135.45195312500007,75.38955078124997],[135.47304687499997,75.46323242187506],[135.52343749999997,75.49584960937503],[135.59267578125005,75.57646484375002],[135.56123046875004,75.636474609375],[135.57841796875002,75.70996093750006],[135.61386718750012,75.76630859374998],[135.69863281249997,75.84526367187499],[135.78828125000004,75.79848632812497],[135.84921875000012,75.72924804687497],[135.90478515624997,75.69438476562497],[136.12734375,75.6255859375],[136.16894531249997,75.60556640625],[135.98339843749997,75.521923828125],[135.96513671875,75.48613281250002],[136.02050781249997,75.43837890624997],[135.9486328125,75.40957031250005]]],[[[152.8859375,76.121728515625],[152.78632812500004,76.08579101562506],[152.55859375000003,76.14360351562502],[152.64277343750004,76.17480468749997],[152.79941406250006,76.19482421874997],[152.83505859375006,76.18515625000002],[152.86376953125003,76.16342773437498],[152.8859375,76.121728515625]]],[[[140.04873046875,75.82895507812503],[140.15214843750002,75.80981445312506],[140.27441406249997,75.82241210937505],[140.38906250000005,75.79584960937495],[140.4962890625,75.68979492187503],[140.54667968750002,75.66318359375003],[140.60214843750012,75.64394531250002],[140.65673828125003,75.63413085937506],[140.81591796874994,75.63071289062498],[140.88925781250006,75.65200195312495],[140.94414062500007,75.70048828124999],[140.94042968750003,75.74951171875003],[140.92656250000002,75.79892578125006],[140.92578124999994,75.86684570312502],[140.95029296875003,75.92734375],[140.9853515625,75.96450195312501],[141.03261718750005,75.98896484374995],[141.29931640625003,76.06376953125002],[141.48544921875012,76.13715820312495],[141.74228515625012,76.10805664062497],[142.00146484374997,76.04355468749998],[142.46035156250005,75.90361328125007],[142.66953125000012,75.86342773437495],[142.92675781250003,75.82690429687497],[143.18515625000006,75.81362304687502],[143.31113281250006,75.82231445312502],[143.55996093749997,75.86040039062505],[143.68583984375002,75.86367187500002],[145.25527343750005,75.58559570312502],[145.30976562500004,75.56406249999998],[145.35996093750006,75.53046874999998],[145.02343749999997,75.48974609375003],[144.803125,75.41606445312505],[144.7267578125001,75.36557617187506],[144.81425781250007,75.32451171875005],[144.88349609375004,75.2689453125],[144.40781250000006,75.10229492187497],[144.21601562500004,75.05917968749998],[144.0197265625,75.04467773437506],[143.62587890625,75.08398437499997],[143.39609375000006,75.08286132812499],[143.1703125,75.11689453125001],[142.92207031250004,75.217431640625],[142.82011718750007,75.26782226562503],[142.72949218749997,75.33764648437506],[142.699609375,75.44887695312497],[142.73447265625012,75.54458007812502],[142.86757812500005,75.57177734375006],[142.98603515625004,75.63325195312495],[143.00244140624997,75.65986328124995],[142.941796875,75.71328125000002],[142.55156250000007,75.72089843749995],[142.30791015625007,75.69169921875005],[142.08623046875002,75.66064453125003],[142.1510742187501,75.45756835937505],[142.19882812500006,75.39267578124998],[142.26474609375006,75.34614257812501],[142.61679687500012,75.13325195312498],[142.69697265625004,75.10307617187505],[142.92968749999997,75.06240234375002],[143.12792968749997,74.9703125],[142.77822265625005,74.86777343749996],[142.62607421875006,74.83740234375],[142.47275390625006,74.82041015625],[142.37841796874997,74.82856445312498],[142.28740234375007,74.84990234375007],[142.18417968750006,74.89960937499998],[142.1,74.95097656250005],[141.9873046875,74.99125976562499],[141.74843750000005,74.982568359375],[141.52998046875004,74.94716796875],[141.31044921875,74.92319335937498],[140.66074218750006,74.8818359375],[140.46386718749997,74.85605468749998],[140.26787109375,74.846923828125],[140.01103515625002,74.89477539062497],[139.75820312500005,74.96376953125],[139.68125,74.96406249999995],[139.605859375,74.94560546875002],[139.54804687500004,74.904052734375],[139.51230468750012,74.83779296875],[139.430078125,74.74921874999998],[139.3255859375,74.68681640625007],[139.21533203125003,74.65966796875003],[139.09912109374997,74.65654296875002],[138.98173828125002,74.67368164062506],[138.865625,74.70092773437499],[138.09228515625003,74.79746093750003],[138.00136718750005,74.82700195312503],[137.91503906249997,74.87084960937497],[137.68300781250005,75.00854492187497],[137.56806640625004,75.04057617187502],[137.4469726562501,75.05419921875003],[137.21796875000004,75.12373046874998],[137.00625,75.23500976562502],[136.9623046875,75.270361328125],[136.94765625000002,75.32553710937498],[136.98242187500003,75.36533203125],[137.16601562499997,75.34658203125],[137.28974609375004,75.34863281249997],[137.21523437500005,75.55439453124998],[137.26884765625002,75.74941406249998],[137.35849609375006,75.781640625],[137.70654296875003,75.75957031250002],[137.59355468750002,75.82338867187497],[137.50117187500004,75.90966796874997],[137.56054687499997,75.95522460937502],[137.625390625,75.98818359374997],[137.77441406250003,76.01567382812507],[137.97705078124997,76.02778320312495],[138.03867187500012,76.04726562500002],[138.09599609375007,76.08051757812495],[138.20761718750003,76.11494140624994],[138.43066406250003,76.130078125],[138.81396484374997,76.19970703124999],[138.91953125000006,76.19672851562501],[139.01757812499994,76.16010742187501],[139.10917968750007,76.10834960937503],[139.211328125,76.080712890625],[139.52851562500004,76.01342773437497],[139.74335937500004,75.95307617187501],[140.04873046875,75.82895507812503]]],[[[96.5324218750001,76.278125],[96.6139648437501,76.26381835937498],[96.5896484375,76.22124023437502],[96.48671875,76.233740234375],[96.3507812500001,76.21215820312503],[96.35341796874998,76.177490234375],[96.30058593750002,76.121728515625],[96.1087890625,76.15546874999995],[95.84453125000002,76.16025390625003],[95.67861328125004,76.19365234374999],[95.31113281250006,76.21474609375002],[95.32207031250007,76.26162109375],[95.37988281250003,76.2890625],[95.59443359375004,76.24960937500003],[95.7862304687501,76.29389648437498],[96.15097656250006,76.271875],[96.27070312500004,76.30537109375001],[96.5324218750001,76.278125]]],[[[96.85390625,76.19916992187498],[96.79785156249997,76.18842773437501],[96.75449218750012,76.19575195312498],[96.73935546875006,76.20693359375005],[96.74023437499997,76.25786132812502],[96.83291015625,76.32416992187504],[96.83525390625002,76.34482421874998],[96.87792968750001,76.35522460937497],[96.99023437499997,76.34340820312505],[97.04531250000005,76.315380859375],[97.05302734375002,76.30258789062498],[96.9742187500001,76.23652343750004],[96.85390625,76.19916992187498]]],[[[112.47802734375001,76.62089843749999],[112.63251953125004,76.55297851562501],[112.66083984375004,76.50957031250005],[112.61416015625004,76.499267578125],[112.58652343750012,76.48295898437505],[112.57480468750012,76.45239257812506],[112.531640625,76.450048828125],[112.39482421875,76.48378906250005],[112.296875,76.53798828124998],[112.15380859374997,76.54931640624997],[112.00273437500002,76.60297851562498],[111.96894531250004,76.626171875],[112.01113281250005,76.63286132812505],[112.28144531250003,76.618359375],[112.39414062500006,76.64379882812506],[112.47802734375001,76.62089843749999]]],[[[97.58837890624997,76.59936523437497],[97.53525390625012,76.58442382812504],[97.43037109375003,76.59072265625],[97.34169921875,76.62885742187501],[97.31035156250002,76.68959960937497],[97.38164062500007,76.706689453125],[97.58837890624997,76.59936523437497]]],[[[149.15019531250002,76.65991210937506],[148.3986328125,76.64824218750007],[148.44814453125,76.67695312499995],[148.71962890624997,76.74658203125003],[149.4064453125001,76.78208007812498],[149.26835937500002,76.74721679687497],[149.20478515625,76.67700195312497],[149.15019531250002,76.65991210937506]]],[[[67.76533203125008,76.23759765624999],[67.36523437500003,76.16127929687497],[67.12695312499997,76.10815429687499],[66.89316406250006,76.07226562500006],[66.65742187500004,76.04702148437497],[66.28242187500004,75.98369140625003],[65.61914062500003,75.904638671875],[65.20156250000005,75.83945312500006],[64.74453125,75.788232421875],[64.26259765625005,75.71967773437498],[63.77929687500002,75.67260742187499],[63.65947265625001,75.66875],[63.31669921875007,75.60307617187505],[63.045996093750006,75.57573242187505],[62.06611328125004,75.42773437500003],[61.61621093750003,75.31962890625002],[61.4865234375001,75.31083984375002],[61.35595703124997,75.31484375000002],[61.248828125000074,75.28100585937497],[61.147265625000074,75.22255859374997],[60.935644531250006,75.16367187500003],[60.829199218750006,75.11083984375003],[60.719238281249964,75.06860351562503],[60.65537109375006,75.05502929687503],[60.533789062500055,75.05927734375001],[60.47558593750003,75.05473632812505],[60.27685546875003,75.00756835937501],[60.24111328125005,74.97075195312497],[60.45488281250007,74.94614257812503],[60.501367187499994,74.90463867187503],[60.43916015625003,74.875341796875],[60.30078125000003,74.83701171875],[60.22246093750002,74.79658203124995],[60.08007812499998,74.75585937499999],[59.98232421875005,74.74462890625003],[59.74726562500003,74.74589843750002],[59.73466796875008,74.69545898437505],[59.77148437500003,74.66445312500002],[59.75273437500001,74.63701171875003],[59.67402343750003,74.61015624999999],[59.59599609375007,74.61372070312501],[59.24013671875005,74.69296874999996],[59.18203125,74.66577148437503],[59.15703125000007,74.61083984375001],[59.14609375000006,74.55190429687502],[59.100976562499994,74.50751953124994],[59.040429687499994,74.48554687500001],[58.92822265624997,74.46269531250005],[58.53466796875003,74.49892578124997],[58.50214843750003,74.464208984375],[58.56201171874997,74.42182617187498],[58.6457031250001,74.32802734374997],[58.66503906250003,74.28925781249997],[58.617871093750104,74.22739257812498],[58.44140625000002,74.12885742187498],[57.76738281250002,74.01381835937498],[57.77841796875007,73.97392578125003],[57.85341796875005,73.8978515625],[57.87226562500003,73.85043945312503],[57.84492187500009,73.80507812500002],[57.755957031250006,73.769189453125],[57.657421875000104,73.76816406250003],[57.60371093750003,73.77548828125003],[57.448535156250074,73.82563476562504],[57.3130859375,73.838037109375],[57.290917968749994,73.81455078125],[57.464257812499994,73.74604492187498],[57.542578125000055,73.65820312500003],[57.459765625000074,73.61030273437495],[57.134375,73.50439453125006],[56.96386718750002,73.36655273437503],[56.63417968749999,73.30429687500003],[56.43037109375004,73.29721679687503],[56.228320312500074,73.314111328125],[56.03457031250005,73.34589843749998],[55.54921875,73.3568359375],[55.28017578124999,73.39204101562498],[55.00683593750003,73.45385742187506],[54.768652343750055,73.44941406250004],[54.56582031250005,73.41850585937505],[54.29990234375006,73.35097656249997],[54.13154296875004,73.48100585937497],[54.20458984374997,73.54204101562499],[53.838671875000074,73.69711914062505],[53.76289062500009,73.76616210937499],[53.851367187500074,73.80053710937497],[53.963476562500006,73.82231445312507],[54.1740234375001,73.88574218750001],[54.386328125000055,73.93564453124998],[54.60566406250009,73.95131835937497],[54.64267578125006,73.95957031250006],[54.73339843749997,74.03398437500002],[54.83125,74.09575195312499],[54.92031250000005,74.12910156249994],[55.022851562499994,74.18662109375003],[55.34091796875006,74.41962890624997],[55.41640625000005,74.43613281249998],[56.0783203125001,74.48129882812503],[56.13710937500005,74.49609375000003],[55.94746093750004,74.54218749999998],[55.751757812500074,74.54121093749998],[55.661523437499994,74.55610351562498],[55.61035156250003,74.59052734374998],[55.5822265625001,74.627685546875],[55.65966796874997,74.65629882812507],[55.913671875,74.79609375000004],[56.217871093750006,74.89750976562499],[56.4987304687501,74.95708007812505],[56.42851562500002,74.97294921874999],[56.3400390625001,75.01347656249999],[55.99804687499997,75.00336914062498],[55.86318359375005,75.058740234375],[55.821191406249994,75.090625],[55.81005859374997,75.12490234374995],[55.92070312500002,75.16835937500002],[56.03554687499999,75.19423828124997],[56.162207031250006,75.18657226562499],[56.288671875,75.164306640625],[56.38906250000005,75.13818359375],[56.485253906249994,75.09609375000005],[56.57031250000002,75.09775390625003],[56.87626953125002,75.24438476562497],[56.82929687500003,75.27773437500002],[56.809472656249994,75.32841796875005],[56.84443359375009,75.351416015625],[56.98945312500004,75.37509765625003],[57.0875,75.38383789062505],[57.30175781250003,75.3732421875],[57.60683593749999,75.34125976562498],[57.63154296875004,75.35644531249997],[57.70820312500004,75.45449218749997],[57.7833984375001,75.50668945312503],[58.09365234375005,75.59252929687503],[58.07255859375002,75.61899414062498],[58.05830078125003,75.6630859375],[58.418359375000044,75.71977539062502],[58.65273437499999,75.77680664062497],[58.88125,75.85478515625007],[58.994726562500006,75.87172851562497],[59.110449218750055,75.87373046875001],[59.34658203125005,75.90703125000005],[59.7819335937501,75.94584960937505],[60.03613281250002,75.98383789062498],[60.11816406250003,76.06655273437505],[60.27929687499997,76.09624023437505],[60.60615234375005,76.108642578125],[60.730566406250006,76.10405273437505],[60.80117187499999,76.06879882812495],[60.94218750000001,76.07128906250003],[60.99775390625009,76.08925781249997],[61.05390625000004,76.11987304687497],[61.03691406250008,76.16904296875006],[61.034375,76.232958984375],[61.15693359375009,76.27353515625003],[61.20166015624997,76.28203125000007],[61.56943359375,76.29848632812505],[61.787109375000036,76.29101562500003],[62.23730468750003,76.2416015625],[62.47109375000005,76.23046875000003],[62.782031250000074,76.24521484375003],[62.97148437500002,76.23666992187498],[63.526171875000024,76.30952148437497],[64.4634765625,76.37817382812501],[64.7076171875,76.426025390625],[64.95,76.48432617187497],[65.0728515625,76.49672851562502],[65.19716796875005,76.499658203125],[65.30976562500004,76.51791992187498],[65.52841796875,76.56782226562501],[65.6369140625001,76.57866210937502],[65.75517578125002,76.57929687499994],[65.86289062499999,76.61333007812505],[65.95888671875005,76.68793945312497],[66.06298828125003,76.74609375000003],[66.34521484374997,76.821044921875],[66.82880859375008,76.923828125],[67.26367187500003,76.96376953125005],[67.53496093750007,77.00776367187504],[67.65185546874996,77.01157226562499],[68.0172851562501,76.990625],[68.48574218750005,76.93369140625003],[68.69912109374998,76.87065429687499],[68.87333984375007,76.78959960937499],[68.91171875000006,76.76054687500002],[68.94169921875,76.707666015625],[68.89052734375,76.65971679687502],[68.8580078125,76.61049804687502],[68.8998046875,76.57294921875001],[68.55859374999997,76.44941406249998],[68.22236328125003,76.3134765625],[68.1654296875,76.28486328125001],[67.76533203125008,76.23759765624999]]],[[[96.28544921875002,77.02666015625007],[96.25351562500012,77.00727539062501],[96.20986328125,76.99213867187495],[96.09140625000012,77.00253906250002],[95.85468750000004,76.97495117187499],[95.76582031250004,76.990625],[95.68085937500004,77.02133789062503],[95.36406250000007,77.01152343749999],[95.27031250000007,77.01884765624999],[95.42070312500007,77.056494140625],[95.85410156250006,77.09755859375002],[96.52841796875006,77.20551757812501],[96.56191406250005,77.154052734375],[96.56132812500002,77.12958984374998],[96.42431640624997,77.07119140625],[96.28544921875002,77.02666015625007]]],[[[89.51425781250005,77.18881835937498],[89.29951171875004,77.18398437499995],[89.17929687500006,77.20991210937501],[89.14169921875012,77.22680664062497],[89.20048828125002,77.27197265625003],[89.28154296875002,77.30146484375001],[89.61621093749997,77.31103515624999],[89.67958984375,77.28032226562505],[89.66582031250002,77.25449218750003],[89.51425781250005,77.18881835937498]]],[[[107.41474609375004,77.24267578125003],[107.30224609375003,77.24150390625003],[107.26953125000003,77.28901367187495],[107.36640625000003,77.34663085937498],[107.48642578125006,77.34711914062498],[107.59365234375005,77.33002929687495],[107.62929687500004,77.31967773437498],[107.66455078125003,77.29980468750003],[107.67949218750006,77.26826171874998],[107.41474609375004,77.24267578125003]]],[[[104.81425781250002,77.65209960937503],[104.96523437500005,77.59472656249997],[105.308984375,77.54921875000002],[105.71025390625007,77.52524414062503],[105.89453125000003,77.4888671875],[105.98339843750003,77.44760742187503],[106.05957031249997,77.39052734375002],[105.7341796875,77.35200195312501],[105.38457031250007,77.237841796875],[104.91191406250002,77.17470703125002],[104.3236328125,77.13266601562498],[104.20244140625002,77.101806640625],[105.32021484375,77.09233398437505],[105.6458984375,77.10068359375003],[105.71201171875006,77.00146484375],[105.82216796875005,76.99750976562498],[106.14541015625,77.04531250000005],[106.33867187500002,77.04785156250003],[106.70507812499997,77.01376953125],[106.78369140624997,77.03178710937505],[106.9416015625001,77.034375],[107.27890625000006,76.990966796875],[107.42978515625006,76.92656250000002],[107.19023437500002,76.82202148437503],[106.94091796875003,76.73046875000003],[106.63876953125012,76.573388671875],[106.54550781250012,76.58627929687505],[106.38466796875005,76.58945312499998],[106.41357421874997,76.51225585937499],[106.68320312500012,76.51469726562505],[106.82539062500004,76.480078125],[107.15771484374997,76.524072265625],[107.62421875000003,76.51010742187498],[107.72216796875001,76.52231445312496],[107.90224609375005,76.56967773437503],[107.9499023437501,76.66064453125003],[108.02792968750006,76.71845703124998],[108.18164062500001,76.73784179687502],[108.35205078125003,76.71953125000002],[108.6383789062501,76.72011718749997],[109.36933593750004,76.74921875000004],[109.9811523437501,76.71186523437498],[110.47148437500007,76.75839843750003],[111.11484375000012,76.72304687500002],[111.39248046875,76.68666992187498],[111.60058593749997,76.62231445312503],[111.78613281250003,76.60356445312502],[111.93867187500008,76.55341796875001],[112.09394531250004,76.48032226562506],[112.01679687500004,76.42055664062504],[111.94267578125002,76.38046875000003],[112.14277343750004,76.42397460937501],[112.2970703125001,76.43466796874998],[112.41328125000003,76.40830078125003],[112.61953125,76.38354492187506],[112.68417968750012,76.21884765624998],[112.742578125,76.18691406249997],[112.7984375000001,76.12963867187503],[112.721875,76.07719726562499],[112.65625,76.05356445312498],[112.8189453125001,76.05859375000003],[113.04667968750007,76.11411132812505],[113.09404296875002,76.13291015624998],[113.15039062499997,76.17451171875001],[113.06601562500006,76.21523437500005],[112.9879882812501,76.23974609374996],[113.08603515625006,76.25810546874999],[113.2726562500001,76.25166015625001],[113.36552734375006,76.178857421875],[113.42773437499997,76.11210937499999],[113.5638671875,75.89165039062502],[113.85722656250007,75.92128906250002],[113.87099609375005,75.85600585937505],[113.7487304687501,75.70478515624998],[113.61992187500002,75.59267578125005],[113.56757812500003,75.56840820312499],[113.48593750000012,75.56396484374996],[113.51718750000006,75.621875],[113.46904296875002,75.65668945312503],[113.39160156249996,75.677880859375],[113.12636718750005,75.69868164062498],[112.62919921875002,75.83540039062501],[112.49667968750006,75.84990234375005],[112.46611328125007,75.84365234375002],[112.45302734375,75.83017578125003],[112.72958984375012,75.737646484375],[112.95566406250006,75.571923828125],[113.1615234375,75.62050781250002],[113.24296875000007,75.61142578125003],[113.35625,75.53427734375006],[113.55888671875,75.50205078125006],[113.72617187500012,75.45063476562498],[113.61357421875006,75.29296875],[112.92490234375012,75.01503906249997],[112.19199218750012,74.85317382812502],[111.86826171875006,74.74003906250006],[111.2990234375001,74.65844726562496],[110.8927734375001,74.54809570312506],[110.37353515625003,74.46606445312503],[110.22587890625002,74.378662109375],[109.84033203124997,74.32197265624998],[109.8664062500001,74.29306640625002],[109.91132812500008,74.26132812499998],[109.86386718750005,74.20888671875005],[109.8102539062501,74.16918945312503],[109.51083984375012,74.08881835937501],[109.075,74.03232421875002],[108.19951171875002,73.69409179687497],[107.76542968750006,73.625],[107.27109375000006,73.62104492187501],[107.16699218749997,73.58940429687505],[106.79423828125002,73.37666015624995],[106.67939453125004,73.3306640625],[106.1886718750001,73.3080078125],[105.67714843750005,72.95927734375002],[105.39277343750004,72.84101562499998],[105.14394531250004,72.77705078125001],[105.402734375,72.78994140624997],[105.7082031250001,72.836669921875],[106.06669921875002,72.94985351562505],[106.1595703125,73.002001953125],[106.20878906250002,73.06054687500001],[106.31503906250006,73.10639648437495],[106.47792968750005,73.13940429687503],[107.10878906250005,73.17729492187502],[107.36875,73.16313476562507],[107.750390625,73.17314453125007],[108.00126953125007,73.235595703125],[108.15097656250006,73.25791015625],[108.28535156250004,73.26586914062503],[108.35146484375,73.310205078125],[108.57539062500004,73.31904296875004],[109.08994140625006,73.37841796875006],[109.16562500000012,73.39960937500001],[109.33105468749997,73.48745117187497],[109.637109375,73.45400390625],[109.85527343750002,73.47246093750002],[110.42871093749997,73.62890625],[110.77333984375,73.68916015625004],[110.86816406249996,73.73071289062497],[110.79921875000005,73.75976562500003],[110.72236328125008,73.77993164062505],[110.38828125000006,73.72602539062498],[110.09121093750005,73.70854492187507],[109.75273437500002,73.72255859375],[109.70673828125004,73.74375],[109.66562500000012,73.80024414062501],[109.7741210937501,73.88125],[109.86914062500003,73.93061523437501],[110.08388671875005,73.99438476562503],[110.26142578125008,74.01743164062503],[110.92011718750004,73.947900390625],[111.05625,73.93935546875002],[111.13085937500003,74.05283203125003],[111.34140625000012,74.04736328125],[111.55058593750007,74.02851562499997],[111.45996093750003,74.00483398437504],[111.22812500000012,73.96855468750002],[111.29951171875008,73.88486328124999],[111.40039062500003,73.827734375],[111.80371093749997,73.745263671875],[112.14726562500007,73.70893554687498],[112.40000000000012,73.71113281249998],[112.79541015625003,73.74609374999999],[112.85595703125003,73.77114257812502],[112.9396484375001,73.83564453125004],[112.83593750000001,73.96206054687502],[112.93496093750005,73.94570312499997],[113.03281250000005,73.91386718750007],[113.18154296875,73.83740234375003],[113.32685546875004,73.707421875],[113.4162109375001,73.647607421875],[113.36445312500004,73.58276367187501],[113.15693359375004,73.45957031249998],[113.27695312500006,73.39150390624997],[113.49091796875004,73.34609375000002],[113.48759765625007,73.14511718750003],[113.47460937500003,73.04785156250001],[113.36933593750004,72.94189453125003],[113.24736328125007,72.89721679687497],[113.12783203125,72.8306640625],[113.15820312500003,72.76948242187498],[113.18613281250012,72.73017578124995],[113.31220703125004,72.65737304687497],[113.66455078124997,72.63452148437503],[113.71191406249997,72.65415039062503],[113.63007812500004,72.67709960937498],[113.39140625000002,72.71103515624998],[113.29814453125,72.73886718750006],[113.21552734375008,72.80585937500001],[113.31152343750003,72.87832031250005],[113.41748046875003,72.93217773437499],[113.5427734375,73.05434570312502],[113.5814453125,73.142236328125],[113.55888671875,73.23261718750001],[113.63916015624997,73.273583984375],[113.76523437500006,73.31796874999998],[113.82929687500004,73.32656249999995],[113.88623046875003,73.34580078124998],[113.79511718750003,73.36743164062503],[113.711328125,73.378564453125],[113.539453125,73.43364257812502],[113.51035156250012,73.50498046874998],[113.85693359375003,73.53339843750001],[114.06054687500003,73.58466796874995],[114.81601562500006,73.60717773437503],[115.33769531250007,73.70258789062501],[116.49550781250004,73.67607421875002],[117.30859375000001,73.59916992187499],[118.45019531249997,73.58979492187504],[118.87089843750007,73.53789062500002],[118.9112304687501,73.51835937500005],[118.93642578125,73.48120117187503],[118.75449218750005,73.464501953125],[118.45703124999997,73.46440429687507],[118.37656250000008,73.36723632812499],[118.43027343750012,73.246533203125],[118.9603515625,73.11728515625006],[119.42529296874997,73.06396484375003],[119.75039062499998,72.97910156250006],[119.92167968750002,72.971337890625],[120.59794921875,72.98110351562502],[120.9971679687501,72.93671875000004],[121.35429687500003,72.97084960937497],[121.7478515625,72.96967773437501],[121.88603515625006,72.96088867187498],[122.02978515624997,72.89721679687497],[122.26015625,72.88056640624995],[122.5375,72.877783203125],[122.6920898437501,72.89082031250001],[122.75195312500003,72.906494140625],[122.730859375,72.931298828125],[122.50195312499997,72.97065429687501],[122.52675781250005,73.01669921874998],[122.61523437499997,73.02792968750006],[122.99931640625,72.96464843750005],[123.16035156250008,72.95488281250002],[123.301171875,73.00180664062496],[123.40458984375002,73.08564453125001],[123.4616210937501,73.14418945312502],[123.521875,73.17290039062502],[123.5724609375001,73.17734375000003],[123.62226562500003,73.19326171875],[123.50097656250001,73.26162109374997],[123.38388671875006,73.34731445312501],[123.35527343750002,73.40249023437497],[123.32265625,73.43081054687497],[123.30507812499998,73.53291015624998],[123.41621093750004,73.63686523437502],[123.49111328125004,73.666357421875],[123.796875,73.62675781250002],[123.93388671875,73.68930664062505],[124.01904296874999,73.71230468750002],[124.3880859375,73.75483398437498],[124.54121093750003,73.75126953125007],[124.79628906250004,73.711767578125],[125.61708984375,73.52060546874998],[125.59853515625004,73.447412109375],[125.79443359374997,73.46845703125],[125.88789062500004,73.498095703125],[126.10742187499997,73.51748046875005],[126.25449218750012,73.548193359375],[126.29599609375013,73.53666992187505],[126.34492187500005,73.50629882812498],[126.30888671875006,73.46367187500002],[126.25742187500006,73.41977539062503],[126.29248046875003,73.39418945312495],[126.33544921874997,73.38876953125003],[126.55253906250006,73.33491210937498],[126.83847656250005,73.43417968750003],[126.95517578125012,73.52822265625002],[127.03134765625008,73.54746093750003],[127.74033203125012,73.48154296875],[127.95507812499997,73.44555664062506],[127.996875,73.42563476562498],[128.02568359375007,73.390771484375],[128.14169921875006,73.35239257812498],[128.2814453125,73.33056640624997],[128.26416015624994,73.30073242187504],[128.25781250000003,73.26748046875],[128.58701171875012,73.26240234374994],[128.73046875000003,73.2333984375],[128.88867187500003,73.19023437499999],[128.87167968750012,73.13935546875],[128.91337890625002,73.11059570312501],[129.05917968750012,73.10751953125],[129.10058593750003,73.11235351562502],[129.05371093749997,73.04541015624996],[128.85351562499997,72.97260742187498],[128.73525390625005,72.94326171875002],[128.5990234375,72.895166015625],[128.6740234375001,72.885888671875],[129.01728515625004,72.8724609375],[129.22910156250012,72.77573242187499],[129.250390625,72.70517578125003],[129.11757812500005,72.67695312499995],[128.81533203124997,72.58588867187498],[128.63339843750006,72.55014648437498],[128.50849609375004,72.54731445312501],[128.41826171875002,72.53515625000003],[128.54941406250012,72.495849609375],[129.1166015625,72.4857421875],[129.28134765625006,72.43769531249998],[129.41171875000006,72.31547851562505],[129.41064453124997,72.16630859375],[129.28349609375007,72.092041015625],[128.93496093750005,72.07949218750002],[128.47519531250006,72.24555664062501],[128.19697265625,72.30961914062499],[127.8034179687501,72.43403320312504],[127.72607421874996,72.41318359375003],[127.84140625000012,72.308251953125],[128.0265625000001,72.25],[128.3587890625,72.08833007812504],[128.91142578125002,71.75532226562495],[129.04013671875006,71.78242187499998],[129.1166015625,71.82460937500005],[129.15419921875005,71.87866210937503],[129.12158203124997,71.95322265625003],[129.21025390625007,71.91694335937501],[129.291796875,71.8501953125],[129.46083984374997,71.73930664062499],[129.23417968750007,71.74482421874995],[128.94902343750007,71.70756835937499],[128.84326171875003,71.6634765625],[128.92265625,71.60175781250004],[129.13427734374997,71.59287109375],[129.22451171875005,71.508837890625],[129.3898437500001,71.40488281249998],[129.76191406250004,71.11953125000002],[130.02597656250006,71.06538085937501],[130.28125,70.94731445312502],[130.53710937500003,70.89252929687494],[130.66845703124994,70.888330078125],[130.75712890625002,70.96235351562498],[130.83193359375005,70.935888671875],[130.89804687500012,70.80356445312502],[131.02158203125006,70.74609374999996],[131.15742187500004,70.74218749999997],[131.26826171875004,70.76552734375002],[131.4323242187501,70.82827148437502],[131.56201171875003,70.901025390625],[131.76904296875003,71.10141601562506],[131.90644531250004,71.20263671874997],[132.0353515625001,71.24404296875],[131.99082031250006,71.29321289062506],[132.00371093750002,71.35019531250003],[132.09882812500004,71.483984375],[132.22763671875012,71.64277343750004],[132.32578125000012,71.726220703125],[132.56230468750007,71.89531250000005],[132.65390625000006,71.9259765625],[132.71582031249997,71.871484375],[132.76855468749997,71.79873046875002],[132.80361328125,71.76757812499997],[132.8392578125,71.75517578125002],[133.13085937499997,71.60668945312497],[133.426171875,71.49096679687503],[133.68886718749997,71.434228515625],[134.10283203125002,71.37895507812502],[134.70273437500012,71.38681640625003],[134.8138671875,71.46059570312505],[135.02236328125005,71.51503906250002],[135.359375,71.54350585937507],[135.55917968750006,71.6103515625],[135.88476562499997,71.63056640625004],[136.09033203125003,71.61958007812501],[136.40615234375005,71.570751953125],[137.1158203125001,71.41567382812505],[137.31542968750003,71.35942382812505],[137.41748046875003,71.29902343749998],[137.6505859375001,71.20815429687505],[137.79785156249997,71.163916015625],[137.9396484375001,71.1333984375],[137.99169921874997,71.14272460937502],[137.97373046875012,71.16865234374998],[137.90195312500006,71.19404296875001],[137.84404296875005,71.22680664062503],[138.01269531249994,71.26083984375002],[138.03251953125002,71.28583984374998],[138.090625,71.30742187500002],[138.31406250000006,71.32553710937498],[138.09716796875003,71.35859374999995],[138.02216796875004,71.36342773437497],[137.91835937499997,71.38408203124999],[137.92734375000006,71.42978515624998],[137.99570312500006,71.46352539062502],[138.04833984375003,71.52597656250003],[138.11845703125002,71.56616210937497],[138.23417968750007,71.596337890625],[138.3180664062501,71.60283203125006],[138.52519531250002,71.56274414062497],[138.67001953125012,71.63481445312502],[138.78017578125,71.62900390624998],[139.00488281249994,71.55605468750005],[139.209375,71.44477539062501],[139.32021484375,71.44472656250001],[139.63212890625002,71.48925781250003],[139.98417968750007,71.49150390625005],[139.93876953125007,71.55766601562502],[139.69511718750007,71.70043945312497],[139.72294921875002,71.88496093749998],[139.55234375000012,71.92670898437498],[139.35927734375005,71.95136718750001],[139.64023437500006,71.99833984374999],[139.8470703125,72.14858398437497],[140.01406249999997,72.16210937499997],[140.1876953125,72.19130859374995],[140.13437500000012,72.20961914062495],[139.61699218750002,72.22568359375003],[139.50527343749997,72.20766601562502],[139.43046875000007,72.16347656249997],[139.17636718750006,72.16347656249997],[139.14501953124997,72.26440429687503],[139.14082031250004,72.32973632812502],[139.47363281249997,72.46650390624998],[139.60117187500012,72.49609374999997],[140.45058593750005,72.49311523437498],[140.70507812500003,72.51894531250002],[141.07929687500004,72.5869140625],[140.98320312500002,72.630029296875],[140.97285156250004,72.71699218750004],[140.65234375000003,72.84282226562499],[140.67597656250004,72.871630859375],[140.7081054687501,72.89003906250001],[140.80820312500006,72.89096679687503],[141.30976562500004,72.85771484375002],[141.51835937500005,72.78867187499998],[142.06142578125005,72.72080078124999],[143.51582031250004,72.69824218750003],[143.68095703125002,72.673193359375],[144.3039062500001,72.64301757812498],[144.56865234375002,72.60991210937507],[145.19931640625006,72.57021484374997],[145.4857421875,72.54208984375],[145.71416015625007,72.49736328125005],[146.08330078125007,72.47138671875],[146.25292968749997,72.442236328125],[146.234765625,72.34970703125],[145.46708984375002,72.36206054687503],[145.21289062500003,72.39267578125003],[144.89746093749997,72.39624023437497],[144.77636718749997,72.38227539062494],[144.5875976562501,72.30551757812506],[144.36093750000003,72.26533203125004],[144.16923828125002,72.25878906250003],[144.29492187499997,72.19262695312497],[144.47070312499997,72.17475585937495],[145.03916015625006,72.25986328124998],[146.59414062500005,72.30244140624995],[146.83183593750007,72.29541015625003],[146.80703125,72.23657226562503],[146.59921875000006,72.12353515625],[146.40166015625005,72.035498046875],[146.11328125000003,71.94497070312497],[146.00585937499997,71.94545898437497],[146.23027343750007,72.1375],[146.13730468750006,72.14648437499997],[146.05146484375004,72.14228515625],[145.79941406250006,72.221875],[145.75859375000007,72.22587890624999],[145.70966796875004,72.20634765625002],[145.71015625000004,72.177587890625],[145.66406249999994,72.06699218750002],[145.75673828125005,72.02065429687502],[145.75673828125005,71.94130859375002],[145.40722656249997,71.89013671874997],[145.2711914062501,71.89462890625],[145.12578125000002,71.92714843749997],[145.06396484374997,71.92607421875002],[145.046875,71.90102539062495],[145.07773437500012,71.85463867187502],[145.07373046874997,71.83085937499999],[145.01787109375007,71.79370117187504],[144.9896484375,71.75336914062501],[145.0755859375,71.70737304687506],[145.1885742187501,71.69580078125],[145.80478515625006,71.74648437500002],[146.07324218749997,71.80834960937501],[146.36796875000007,71.92207031250001],[146.8947265625001,72.19750976562497],[147.12705078125006,72.29204101562505],[147.26181640625006,72.327880859375],[147.433984375,72.34091796874998],[148.40205078125004,72.31196289062504],[148.96484375000003,72.25234374999997],[149.50156250000012,72.16430664062497],[149.76621093750012,72.09125976562501],[149.9630859375001,71.9921875],[149.99814453125012,71.95048828125002],[150.01689453125002,71.89565429687505],[149.88105468750004,71.84301757812497],[149.27968750000005,71.82553710937506],[149.04873046875005,71.79575195312503],[148.96533203125003,71.76279296874998],[148.95488281250002,71.744140625],[148.92333984374997,71.71464843750002],[148.9681640625,71.69047851562497],[149.23789062500006,71.68793945312501],[149.49804687500003,71.66401367187501],[149.8571289062501,71.60146484374997],[149.9126953125001,71.580712890625],[150.02646484375012,71.52133789062498],[150.06083984375002,71.51083984374998],[150.59980468750004,71.5201171875],[150.63486328125006,71.49887695312503],[150.66777343750002,71.45522460937502],[150.5250976562501,71.38583984375],[150.38476562500003,71.33881835937501],[150.09765624999997,71.22656249999997],[150.24296875000007,71.26718749999998],[150.82167968750005,71.36289062500003],[150.96777343749997,71.38046874999998],[151.14531250000007,71.37373046875001],[151.58242187500002,71.28696289062502],[151.759765625,71.21782226562505],[152.09277343749997,71.02329101562503],[151.99980468750007,71.00249023437506],[151.76201171875002,70.98247070312499],[152.50878906250003,70.83447265625001],[152.79833984375003,70.83564453125001],[153.46064453125004,70.87861328124995],[153.79414062500004,70.87998046874996],[154.41396484375,70.97446289062503],[155.0294921875001,71.03422851562505],[155.59589843750004,71.03862304687505],[155.89521484375007,71.09550781250002],[156.68457031250003,71.09375],[157.44736328125012,71.07451171874999],[158.03701171875005,71.03925781250001],[158.70214843750003,70.93500976562497],[159.35068359375003,70.79072265625],[159.7279296875,70.64965820312503],[159.80468750000003,70.60493164062498],[159.91181640625007,70.506103515625],[159.9585937500001,70.42363281249999],[160.00644531250006,70.30966796875006],[159.9833984375,70.22138671875001],[159.88964843750003,70.15878906250003],[159.83144531250005,70.0814453125],[159.83916015625002,69.98999023437503],[159.72939453125005,69.87021484375006],[159.83251953125,69.78496093749999],[160.11914062499997,69.72978515625005],[160.73945312500004,69.65517578125002],[160.91074218750012,69.60634765625002],[160.9289062500001,69.45854492187502],[160.98203125000006,69.33447265624997],[161.03554687500005,69.09819335937507],[161.14082031250007,69.03886718750005],[161.30986328125005,68.98227539062496],[161.340625,68.90517578125],[161.12900390625006,68.65385742187505],[160.99667968750012,68.60751953125003],[160.85605468750006,68.53833007812506],[161.10449218749997,68.5625],[161.2301757812501,68.65390625000006],[161.36513671875005,68.82299804687506],[161.4953125000001,68.849853515625],[161.565625,68.90517578125],[161.565625,69.06396484375003],[161.48007812500012,69.201708984375],[161.48007812500012,69.30009765624999],[161.53691406250002,69.379541015625],[161.94511718750007,69.54511718749998],[162.16601562499994,69.61157226562503],[162.37568359375004,69.64907226562502],[162.94462890625002,69.68276367187497],[163.20136718750004,69.71474609375],[163.49804687499997,69.69326171874995],[163.7052734375001,69.70180664062502],[163.94599609375004,69.73515625000007],[164.1595703125,69.71928710937505],[164.51328125000003,69.60913085937497],[165.76074218749997,69.58442382812501],[165.98046874999997,69.54599609374998],[166.82031250000003,69.49956054687505],[166.88437500000012,69.49990234375002],[167.07314453125005,69.55444335937503],[167.628125,69.74033203125005],[167.8568359375,69.72822265624998],[167.95009765625,69.699169921875],[168.04765625000007,69.62563476562495],[168.15000000000012,69.577392578125],[168.22998046874997,69.447021484375],[168.30302734375002,69.27148437500003],[168.42304687500004,69.239501953125],[168.5875976562501,69.22836914062503],[168.94619140625005,69.163330078125],[169.31064453125003,69.07954101562498],[169.41464843750012,68.91962890625001],[169.60986328124997,68.78603515624997],[170.065625,68.79868164062498],[170.53759765624994,68.825390625],[170.99541015625002,69.04531250000005],[170.99667968750006,69.13471679687495],[170.88378906249997,69.26362304687501],[170.71416015625007,69.38823242187497],[170.58222656250004,69.58334960937506],[170.16093750000007,69.62656249999998],[170.201171875,69.68320312500006],[170.35957031250004,69.7509765625],[170.503125,69.85654296875],[170.52539062499997,69.937890625],[170.48681640625003,70.107568359375],[170.86796875000005,70.09604492187506],[171.24667968750012,70.07612304687498],[171.97050781250007,70.000341796875],[172.55957031249997,69.96835937499998],[172.86923828125012,69.91977539062503],[173.05634765625004,69.86494140624995],[173.27744140625006,69.82382812499999],[173.35332031250002,69.92402343750001],[173.43867187500004,69.94682617187502],[173.73339843750003,69.89111328125004],[173.94804687500007,69.87412109375003],[174.31943359375003,69.88164062500007],[174.78554687499997,69.85566406250001],[175.29560546875015,69.86005859375001],[175.751171875,69.90415039062503],[175.92148437500012,69.89531250000002],[176.10751953125018,69.86030273437498],[176.41044921875007,69.76850585937501],[176.92441406250018,69.64599609375003],[177.39453125,69.61162109375005],[177.93369140625006,69.49560546875001],[178.44277343750005,69.45297851562503],[178.84833984375004,69.38720703124997],[178.9069335937501,69.36210937500002],[178.925,69.32597656250002],[178.95068359374997,69.29580078125],[179.27265624999998,69.25966796875002],[179.86826171875,69.01269531249997],[180,68.98344726562503],[180,65.06723632812498],[179.82734375000004,65.03417968749999],[179.65136718750009,64.92094726562502],[179.44824218750006,64.82202148437503],[179.15,64.78159179687503],[178.69843750000007,64.63110351562503],[178.51953125000003,64.60297851562498],[178.2853515625001,64.67226562499997],[177.7486328125,64.71704101562503],[177.58164062500012,64.77788085937499],[177.33701171875018,64.93134765625],[177.25185546875005,64.95361328125],[177.17919921875003,65.01411132812498],[176.88085937499997,65.08193359375002],[176.6248046875,65.03759765624997],[176.41308593750009,65.07124023437498],[176.34101562500013,65.04731445312501],[176.45214843750003,65.02524414062503],[176.64550781249997,65.007177734375],[176.94003906250012,65.01601562500002],[177.03730468750004,64.99965820312497],[177.1234375,64.947021484375],[177.22285156250004,64.861669921875],[177.14824218750007,64.804833984375],[177.06875,64.78666992187502],[176.83105468749997,64.84921875000006],[176.55664062500003,64.83999023437505],[176.42949218750002,64.85517578125001],[176.06113281250012,64.96088867187498],[175.78115234375008,64.84404296875007],[175.39648437500009,64.78369140625003],[175.09775390625018,64.77685546874997],[174.54882812500009,64.68388671875005],[174.69863281250005,64.68144531250007],[175.09707031249997,64.74663085937502],[175.33066406250015,64.74663085937502],[175.6779296875,64.78247070312506],[175.85859375000007,64.82529296874998],[175.94589843750012,64.86518554687501],[176.0565429687501,64.90473632812498],[176.16923828125013,64.88476562499999],[176.24697265624997,64.84301757812503],[176.30087890625012,64.78383789062497],[176.35097656250005,64.705126953125],[176.28320312500009,64.66381835937503],[176.21943359375004,64.641943359375],[176.14091796875007,64.58583984375005],[176.50761718749993,64.68242187499997],[176.73095703124997,64.624853515625],[176.84287109375006,64.63378906250003],[177.04980468749991,64.71923828125003],[177.3875,64.7740234375],[177.42744140625015,64.76337890624998],[177.46718750000005,64.73681640624997],[177.4098632812501,64.57280273437505],[177.43291015625002,64.44448242187501],[177.6875,64.30473632812507],[177.95332031250013,64.22226562500003],[178.0447265625001,64.21958007812503],[178.13056640625004,64.23525390625002],[178.1639648437501,64.30908203124997],[178.2294921874999,64.36440429687497],[178.31298828125009,64.31440429687498],[178.38144531250018,64.26088867187502],[178.47714843750012,64.12788085937501],[178.47480468749998,64.089013671875],[178.45136718750004,64.011376953125],[178.53603515625005,63.97563476562498],[178.65029296875002,63.965283203125004],[178.69248046875012,63.84233398437502],[178.73144531250003,63.66708984375],[178.68134765625015,63.650732421875055],[178.62597656250009,63.650732421875055],[178.44042968750009,63.605566406250006],[178.46611328125002,63.57407226562497],[178.65371093750005,63.55664062499997],[178.7064453125001,63.52153320312501],[178.6688476562501,63.43994140625],[178.67871093749997,63.40229492187498],[178.7440429687499,63.39477539062503],[178.78671875000012,63.442431640625074],[178.77539062499994,63.51025390625002],[178.79296874999997,63.54033203125001],[178.91855468750018,63.400244140625],[178.92148437500006,63.34501953125002],[179.028125,63.282421874999976],[179.33232421875007,63.19018554687502],[179.38857421874997,63.14721679687497],[179.40507812499996,63.077734375000034],[179.3290039062501,63.05791015625008],[179.25957031250002,63.00830078124999],[179.3021484375,62.93984374999999],[179.38105468750004,62.883691406250016],[179.51093750000004,62.86279296875003],[179.5705078125001,62.773486328125045],[179.5705078125001,62.6875],[179.4772460937501,62.61308593750005],[179.28867187500006,62.51035156249998],[179.17695312500004,62.46918945312504],[179.13388671875018,62.39643554687495],[179.12070312500012,62.32036132812498],[179.0446289062501,62.32368164062495],[178.96386718749997,62.35527343750001],[178.01923828125007,62.54697265624998],[177.66308593750003,62.58281249999999],[177.35126953125007,62.587451171875045],[177.292578125,62.599023437500016],[177.29589843749997,62.64448242187495],[177.31582031249994,62.68525390625001],[177.35966796875002,62.736962890624966],[177.33896484375006,62.781347656250034],[177.29833984374994,62.78422851562498],[177.25869140625005,62.750439453124955],[177.17265625000007,62.750341796875034],[177.09121093750005,62.78955078125003],[177.02353515625012,62.77724609374999],[176.9900390625,62.722216796875074],[176.96347656250012,62.69326171875002],[176.96474609375,62.658642578124976],[177.00800781250015,62.62656250000003],[177.18964843749998,62.59160156250002],[177.15947265625005,62.56098632812498],[176.90742187500004,62.536083984374976],[176.70253906250002,62.50576171875002],[176.43652343750003,62.410839843749955],[176.32841796875007,62.346044921875],[175.61386718750012,62.184375],[175.44199218750012,62.127929687499964],[175.36582031250006,62.12133789062505],[175.26787109375002,62.102392578125006],[175.19238281250009,62.03442382812499],[174.7975585937501,61.938867187499994],[174.71503906249995,61.947900390624966],[174.61054687500004,61.867626953124955],[174.51435546875015,61.82363281249996],[174.28496093750013,61.817529296874966],[174.1388671875,61.79516601562503],[173.82236328125,61.67939453124998],[173.6234375,61.716064453125],[173.39072265625,61.55673828125003],[173.13183593749997,61.406640625000016],[173.05458984375005,61.40620117187501],[172.85654296875003,61.469189453124955],[172.8068359375001,61.43613281249997],[172.83789062500003,61.3755859375],[172.90800781250002,61.311621093750006],[172.86777343750003,61.29306640625006],[172.78906250000003,61.31069335937499],[172.73066406250004,61.314404296874955],[172.69003906250012,61.29516601562503],[172.6969726562501,61.24931640625002],[172.58476562500007,61.19042968750002],[172.49707031249997,61.18588867187497],[172.39609375000006,61.16738281250002],[172.36240234375006,61.116601562499994],[172.3927734375,61.061767578125],[172.21328125000005,60.997851562500045],[172.06728515625002,60.915673828124994],[171.99765625000006,60.900683593750045],[171.91796875000003,60.86411132812498],[171.83056640624997,60.83735351562503],[171.72949218749997,60.843115234375055],[171.48974609374997,60.72573242187502],[170.94931640625012,60.52294921875002],[170.79931640625003,60.496484375000044],[170.60820312500007,60.43491210937503],[170.58974609375005,60.39370117187496],[170.5885742187501,60.342871093750006],[170.51230468750006,60.259521484375],[170.42343750000012,60.04780273437504],[170.39648437500003,60.009765625],[170.3509765625,59.965527343749955],[170.15410156250002,59.98608398437497],[169.9826171875001,60.067089843749955],[169.92724609374997,60.104248046874964],[169.89755859375006,60.1478515625],[169.88701171875007,60.21791992187506],[169.85429687500007,60.25024414062497],[169.81474609375007,60.26538085937503],[169.61835937500004,60.43803710937504],[169.27568359375002,60.55664062500003],[169.2267578125001,60.595947265624964],[168.78828125000004,60.563818359375],[168.67031249999997,60.562890625],[168.46279296875,60.59223632812501],[168.1375,60.57392578125001],[167.74599609375005,60.50932617187498],[167.62607421875006,60.46894531250003],[167.22675781250004,60.40629882812504],[166.9640625000001,60.30703125],[166.4525390625,59.94702148437501],[166.33183593750007,59.872412109375],[166.27304687500012,59.85625],[166.18652343749997,59.84946289062503],[166.14892578125003,59.92207031249998],[166.13603515625007,59.979345703125034],[166.168359375,60.08881835937504],[166.22978515625005,60.17832031249997],[166.29248046874997,60.34609375000005],[166.30810546874994,60.414257812499976],[166.35214843750006,60.484814453124976],[166.18017578125,60.48037109375005],[165.94199218750006,60.35688476562501],[165.58300781250003,60.236474609374994],[165.41582031250007,60.20517578125003],[165.28525390625012,60.13491210937502],[165.19257812500004,60.12475585937497],[165.08457031250006,60.098583984374976],[165.07363281249997,59.94560546874998],[165.01894531250005,59.860742187500016],[164.95371093750006,59.843603515625],[164.85429687500005,59.840966796874994],[164.77939453125006,59.87421875000001],[164.66972656250002,59.997460937499994],[164.52529296875,60.06127929687503],[164.44003906250006,60.072705078124955],[164.37685546875005,60.05805664062498],[164.25156250000012,59.97377929687505],[164.11328125000003,59.897558593749984],[164.13505859375002,59.984375],[164.01757812499997,60.01733398437503],[163.91289062500002,60.03706054687498],[163.78007812500007,60.041113281250006],[163.74384765625004,60.028027343749976],[163.69003906250012,59.978417968750016],[163.57431640625006,59.91406250000006],[163.49375,59.88676757812499],[163.40996093750007,59.8349609375],[163.3648437500001,59.78144531250004],[163.32119140625,59.705419921875],[163.26904296874997,59.520019531249964],[163.27285156250002,59.302587890625006],[163.08486328125,59.13139648437501],[163.01015625,59.148291015625006],[162.97490234375007,59.13706054687503],[162.94003906250006,59.11430664062501],[163.00429687500005,59.02016601562502],[162.96982421875012,58.986474609374994],[162.9345703125,58.963964843750034],[162.84726562500012,58.939257812500045],[162.64335937500002,58.79990234375],[162.45302734375,58.70859375000003],[162.14160156249997,58.44741210937502],[162.04921875000005,58.27285156249999],[161.96005859375012,58.07690429687506],[162.00195312500003,57.98095703125006],[162.03964843750006,57.91826171874995],[162.09794921875002,57.87465820312496],[162.1974609375,57.82915039062501],[162.41142578125002,57.77836914062499],[162.39218750000012,57.74501953125002],[162.39140625000002,57.71723632812495],[162.46699218750007,57.7662109375],[162.52197265624997,57.90410156250002],[162.65429687499997,57.94824218750002],[162.71835937500012,57.94609375],[163.14501953125003,57.83730468749999],[163.22578125000004,57.79038085937503],[163.21386718750003,57.68681640624999],[163.18789062500005,57.637402343749955],[163.1087890625,57.56484375],[162.95703124999997,57.47749023437498],[162.77929687500003,57.35761718749998],[162.76230468750012,57.284082031249994],[162.76152343750002,57.24394531249999],[162.80810546875003,57.10278320312503],[162.81484375,57.02338867187501],[162.79111328125012,56.87539062499996],[162.80263671875,56.81147460937501],[162.84990234375,56.75683593749997],[162.92207031250004,56.72265625000003],[163.04638671874997,56.741308593750006],[163.16542968749997,56.725488281249966],[163.2565429687501,56.68803710937499],[163.24326171875012,56.56455078125006],[163.29404296875003,56.447705078124955],[163.33554687500012,56.232519531250006],[163.26132812500006,56.17373046875002],[163.18925781250007,56.13701171874998],[163.04736328125,56.044677734375],[162.97167968749997,56.033789062500006],[162.84033203125003,56.065625],[162.628125,56.232275390625034],[162.71318359375007,56.33085937499996],[162.89326171875004,56.39946289062499],[162.97519531250006,56.44902343749995],[163.03837890625002,56.521875],[162.94414062500002,56.508056640625],[162.8776367187501,56.47636718750002],[162.67148437500006,56.49008789062498],[162.5890625000001,56.454931640625],[162.48867187500005,56.39912109375001],[162.52822265625005,56.260693359374955],[162.4611328125,56.235498046874994],[162.33408203125006,56.18774414062503],[162.14609375000006,56.12827148437498],[162.08496093749997,56.08964843750001],[161.9240234375,55.84038085937496],[161.7755859375001,55.65483398437499],[161.72392578125,55.49614257812498],[161.72939453124997,55.358007812500006],[161.78496093750002,55.205322265625],[161.82421874999997,55.13891601562505],[161.99609374999997,54.99799804687504],[162.0802734375001,54.88613281249996],[162.10556640625006,54.75214843750004],[161.96689453125006,54.68867187499998],[161.72568359375006,54.53295898437506],[161.62480468750002,54.51625976562502],[161.29404296875012,54.52055664062502],[161.12988281249997,54.598242187500034],[160.93554687500003,54.57836914062497],[160.77265625,54.54135742187498],[160.51718750000006,54.43085937500004],[160.28886718750007,54.28823242187502],[160.0744140625001,54.18916015625001],[160.01015625000005,54.13085937500003],[159.92177734375,54.008398437500034],[159.84375,53.78364257812498],[159.87089843750002,53.67265625000002],[159.91425781250004,53.62084960937502],[159.95585937500007,53.55219726562501],[159.89912109375007,53.44770507812504],[159.89765625000004,53.380761718749966],[160.00214843750007,53.27490234375],[160.02509765625004,53.129589843749955],[159.94746093750004,53.125097656250034],[159.77158203125012,53.2296875],[159.5859375,53.237695312499966],[159.13613281250005,53.11713867187501],[158.95205078125005,53.04755859374995],[158.74541015625002,52.90893554687505],[158.68369140625006,52.935400390625006],[158.63955078125005,53.014794921875016],[158.5646484375001,53.05],[158.47207031250005,53.032373046874966],[158.43232421875004,52.95742187499996],[158.56015625000003,52.92216796874999],[158.6087890625,52.873632812500034],[158.53369140624997,52.68842773437498],[158.48076171875002,52.62666015625001],[158.50039062500005,52.46030273437503],[158.49316406249997,52.38315429687503],[158.46347656250006,52.30498046875002],[158.33164062500012,52.09086914062502],[158.10351562500003,51.80961914062498],[157.82324218750003,51.605322265625034],[157.62890624999997,51.534570312499994],[157.5309570312501,51.479882812499966],[157.48984375000006,51.408935546875],[157.20224609375006,51.21274414062498],[156.8474609375,51.006591796875],[156.74775390625004,50.96928710937504],[156.72431640625004,51.04707031249998],[156.71347656250006,51.12412109375006],[156.67080078125,51.22685546875002],[156.54345703124997,51.31162109375006],[156.52119140625004,51.38027343750002],[156.500390625,51.47509765625006],[156.48984375000003,51.91303710937501],[156.37734375,52.36655273437503],[156.36474609374997,52.509375],[156.22861328125006,52.62626953125002],[156.15439453125012,52.74726562499998],[156.11035156250003,52.86616210937504],[156.0988281250001,53.00649414062502],[155.95019531249997,53.744287109374966],[155.90488281250003,53.928125],[155.7064453125,54.52148437500003],[155.62031250000004,54.86455078125001],[155.5638671875,55.199121093749966],[155.5548828125001,55.348486328125034],[155.64345703125005,55.793554687500006],[155.71660156250002,56.07221679687504],[155.98251953125012,56.69521484375002],[156.02539062500003,56.75200195312496],[156.06748046875006,56.781591796875034],[156.52929687500003,57.021191406250004],[156.72841796875,57.152246093749966],[156.8488281250001,57.290185546874994],[156.97675781250004,57.46630859375],[156.96357421875004,57.5609375],[156.94824218750003,57.61577148437499],[156.89990234375003,57.676904296874994],[156.79160156250006,57.74794921874999],[156.82988281250007,57.77963867187498],[156.87197265625,57.80366210937498],[156.9857421875,57.83017578125006],[157.216796875,57.776806640625004],[157.4503906250001,57.799267578124976],[157.66640625000005,58.01977539062506],[157.97460937500003,57.98593750000001],[158.21044921875,58.02529296875002],[158.27519531250007,58.00898437499998],[158.32109375000002,58.083447265624955],[158.44941406250004,58.162841796874964],[158.68701171874997,58.281347656250034],[159.03691406250002,58.42392578125003],[159.21064453125004,58.51943359374996],[159.30839843750007,58.610546874999955],[159.45263671874997,58.695947265625044],[159.5915039062501,58.803662109374955],[159.8473632812501,59.127148437499955],[160.35039062500007,59.39404296874997],[160.54746093750006,59.54736328125003],[160.71142578125003,59.601660156250006],[160.85527343750002,59.626855468749966],[161.2189453125001,59.84560546875005],[161.44931640625003,60.02734375000003],[161.75351562500012,60.152294921875004],[161.84599609375002,60.23222656250002],[162.0036132812501,60.42016601562502],[162.06816406250002,60.466406250000034],[162.26630859375004,60.536718749999984],[162.71318359375007,60.65947265625002],[162.97314453124997,60.782910156249955],[163.35234375000007,60.80043945312496],[163.4664062500001,60.84975585937499],[163.58515625000004,60.87714843749995],[163.70996093749997,60.916796875000045],[163.55351562500002,61.02563476562502],[163.5892578125,61.084375],[163.61962890624997,61.11132812499997],[163.89335937500007,61.240478515625],[164.00546875000006,61.34379882812498],[163.99208984375,61.38823242187498],[163.97275390625006,61.419873046874955],[163.80439453125004,61.461376953124976],[163.83710937500004,61.558251953124994],[163.88271484375,61.64013671874997],[164.01953125000003,61.71069335937505],[164.06796875000012,61.87387695312498],[164.07421874999997,62.045019531250034],[164.2072265625,62.29223632812506],[164.2875,62.346630859375004],[164.59833984375004,62.470556640625034],[164.67070312500007,62.473779296874994],[164.88769531250003,62.43188476562497],[165.12412109375006,62.411523437500016],[165.20810546875012,62.37397460937501],[165.22568359375006,62.40576171874999],[165.21386718749997,62.448193359375004],[165.28037109375012,62.46298828125],[165.41738281250005,62.44707031250004],[165.39658203125006,62.49389648437499],[165.04404296875006,62.51699218749999],[164.7923828125,62.57109375000002],[164.56699218750006,62.67548828124995],[164.41835937499997,62.704638671875045],[164.25566406250007,62.69658203124999],[163.33173828125004,62.55092773437499],[163.28710937500003,62.51142578125002],[163.24423828125006,62.455371093750074],[163.30214843750005,62.37299804687498],[163.25800781250004,62.3369140625],[163.21328125000005,62.313427734375004],[163.16347656250005,62.25957031250004],[163.11845703125002,62.1529296875],[163.1310546875001,62.04990234375006],[163.01767578125006,61.89106445312504],[163.00927734374997,61.79150390625],[163.20761718750006,61.736572265625],[163.25781249999997,61.699462890624964],[163.19785156250012,61.644775390625036],[163.1388671875001,61.61142578124997],[163.08525390625,61.570556640625],[163.047265625,61.55405273437503],[162.99394531250005,61.54418945312497],[162.92167968750007,61.59770507812504],[162.85595703125003,61.70502929687495],[162.75234375000005,61.711279296875006],[162.71787109375012,61.69511718749999],[162.6990234375,61.65258789062502],[162.6076171875,61.650048828125044],[162.50644531250012,61.670117187499955],[162.39257812500003,61.662109375],[162.18837890625,61.540673828124966],[161.03710937500003,60.96289062500002],[160.91503906250003,60.892675781250034],[160.76660156249994,60.753320312499966],[160.48203125000006,60.73984375],[160.36816406249997,60.70854492187499],[160.2873046875001,60.66704101562507],[160.1736328125,60.63842773437499],[160.17734375000006,60.69072265624999],[160.20107421875005,60.729638671875016],[160.2257812500001,60.83154296874999],[160.37890625000003,61.02548828124998],[160.28125,61.044775390625006],[160.1842773437501,61.04765625000007],[160.00400390625012,61.007421875000034],[159.88310546875002,60.943408203125045],[159.79042968750002,60.956640625],[159.83457031250006,61.013964843750045],[159.94921874999994,61.12861328124995],[159.91396484375,61.234472656250034],[159.88310546875002,61.291796875000074],[159.93085937500004,61.32392578124995],[160.16269531250012,61.5375],[160.246875,61.64760742187499],[160.3173828125,61.79335937500002],[160.32148437500004,61.83857421874998],[160.309375,61.894384765625006],[160.23779296874997,61.903857421875045],[160.18251953125,61.90283203125002],[159.72216796874997,61.758398437500006],[159.55234375000012,61.71948242187497],[159.4962890625001,61.781445312499976],[159.4230468750001,61.808056640624976],[159.29501953125012,61.91416015625003],[159.18925781250007,61.929394531250004],[159.07666015625003,61.92226562499999],[158.82431640625012,61.85024414062496],[158.54716796875007,61.810888671875034],[158.3336914062501,61.82568359375003],[158.15156250000004,61.76484374999998],[158.07011718750002,61.75361328125001],[157.79931640625003,61.795263671875055],[157.46933593750012,61.798925781250006],[157.37070312500012,61.7470703125],[157.0841796875001,61.67568359375002],[156.89179687500004,61.56518554687497],[156.790625,61.529638671875034],[156.68027343750006,61.48061523437499],[156.62968750000002,61.27246093750003],[156.4826171875001,61.20600585937498],[156.34414062500005,61.15507812500001],[156.05595703125002,60.99560546875003],[155.85332031250007,60.77714843750002],[155.71611328125002,60.682373046875],[155.42783203125006,60.54985351562499],[154.9708007812501,60.37666015624995],[154.57822265625006,60.095019531250045],[154.44072265625005,59.88378906249999],[154.3898437500001,59.87675781249998],[154.29306640625006,59.83334960937503],[154.26660156250003,59.730371093750016],[154.26884765625002,59.658398437500004],[154.20917968750004,59.60034179687501],[154.14980468749997,59.52851562500002],[154.21289062499997,59.483398437499964],[154.2721679687501,59.475146484375074],[154.35761718750007,59.48144531250002],[154.58251953124997,59.540087890625074],[154.97128906250006,59.44960937500002],[155.16669921875004,59.36015624999998],[155.15302734375004,59.27021484374998],[155.16044921875,59.19013671875001],[155.01669921875006,59.19560546875004],[154.82373046875,59.18754882812501],[154.70351562500005,59.14130859375001],[154.45800781250003,59.21655273437497],[154.37597656250003,59.18784179687498],[154.24667968750006,59.10859375],[154.01093750000004,59.075537109375],[153.89169921875012,59.11416015624996],[153.69521484375005,59.22475585937505],[153.36113281250002,59.21479492187495],[153.27294921874997,59.09130859375003],[153.19609375000005,59.094433593749955],[153.07773437500012,59.08188476562498],[152.8822265625,58.9390625],[152.81787109375003,58.92626953124997],[152.57558593750005,58.954101562499964],[152.40068359375002,59.02641601562504],[152.31962890625002,59.03076171875003],[152.1652343750001,58.99702148437501],[152.08789062499994,58.910449218750045],[151.70458984374997,58.86669921875],[151.32675781250006,58.875097656250034],[151.12109375000003,59.08251953125003],[151.50498046875003,59.16401367187501],[151.73349609375006,59.14667968750004],[151.99003906250002,59.16005859374999],[152.26064453125,59.22358398437498],[152.16953125000006,59.27792968750003],[152.10449218749997,59.29057617187504],[151.94238281249997,59.28408203125005],[151.7980468750001,59.32324218750003],[151.48574218750005,59.52412109375001],[151.34824218750012,59.5611328125],[151.1703125,59.58325195312498],[151.03359375000005,59.585644531250004],[150.98251953125012,59.571337890625045],[150.91191406250002,59.52304687500006],[150.86328124999997,59.475439453125034],[150.82343750000004,59.46074218750007],[150.72949218749997,59.46914062499999],[150.61523437499997,59.506542968749976],[150.4835937500001,59.494384765625],[150.53984375000007,59.52495117187498],[150.66728515625002,59.55634765625001],[150.45722656250004,59.590722656249994],[150.32558593750005,59.63886718750003],[150.2025390625,59.651269531249966],[149.64257812499994,59.77041015624999],[149.42451171875,59.76098632812503],[149.29042968749997,59.72846679687499],[149.06523437500002,59.63051757812502],[149.12773437500007,59.558789062499955],[149.17539062500012,59.526757812500016],[149.20498046875,59.48818359374996],[149.1330078125001,59.48051757812502],[148.925,59.475],[148.79707031250004,59.532324218750006],[148.70888671875,59.44853515625008],[148.74414062499997,59.373535156249964],[148.88964843749997,59.4],[148.96464843750007,59.369140624999964],[148.91406249999994,59.282714843750036],[148.72666015625006,59.257910156250034],[148.49121093749994,59.26230468750006],[148.25742187500006,59.414208984374994],[147.87460937500006,59.388037109375006],[147.68789062499997,59.290673828124966],[147.51445312500002,59.26855468749999],[147.04003906250003,59.365722656249964],[146.80371093750003,59.372949218750016],[146.53720703125006,59.45698242187501],[146.44433593749997,59.43046875000002],[146.27343749999997,59.22148437499999],[146.04951171875007,59.17055664062502],[145.93164062499997,59.198388671874994],[145.82910156249997,59.33032226562505],[145.75644531250006,59.373730468750004],[145.55458984375,59.41352539062495],[144.48339843749997,59.37626953124998],[144.1234375,59.40830078125003],[143.86875,59.41137695312505],[143.523828125,59.34365234375002],[143.19218750000002,59.37011718749999],[142.58027343750004,59.24013671874996],[142.33037109375002,59.15263671874999],[142.02539062499997,58.999658203125016],[141.75468750000007,58.745263671874966],[141.6029296875,58.64902343749997],[141.3470703125,58.52807617187502],[140.98769531250005,58.41684570312503],[140.79023437500004,58.30346679687502],[140.68496093749997,58.212158203124964],[140.49511718749997,57.86542968749995],[140.446875,57.81367187499998],[140.00234375000005,57.6875],[139.86152343750004,57.54931640625002],[139.80332031250006,57.51416015624997],[139.61923828125006,57.455712890624966],[139.50664062500002,57.358300781250016],[139.44384765625003,57.329687500000055],[139.18164062499997,57.26152343750001],[138.96572265625005,57.08813476562506],[138.66210937500003,56.96552734375004],[138.21777343749997,56.629003906250034],[138.18007812500005,56.588525390624966],[138.140625,56.49868164062505],[138.07382812500003,56.43310546875],[137.69150390625006,56.13935546875004],[137.5729492187501,56.11210937499999],[137.38408203125007,55.974755859374966],[137.18984375,55.89228515624995],[137.01210937500005,55.795263671875006],[136.79355468750012,55.694189453125006],[136.46025390625007,55.57670898437499],[136.35117187500006,55.51000976562497],[136.1751953125,55.35224609374998],[135.75078125000002,55.16064453125003],[135.54062500000012,55.11376953125],[135.2625,54.943310546874976],[135.234765625,54.903222656249994],[135.21152343750012,54.84082031249997],[135.25771484375005,54.73149414062499],[135.325390625,54.70742187499999],[135.43779296875002,54.692480468750034],[135.85156249999997,54.583935546874955],[136.2379882812501,54.61406249999995],[136.5802734375001,54.613623046875055],[136.7145507812501,54.62431640625002],[136.797265625,54.62099609375005],[136.82373046875003,54.561474609375004],[136.82041015625006,54.45234374999998],[136.77041015625,54.35332031249995],[136.72939453125,54.06064453125003],[136.68300781250005,53.93129882812505],[136.71884765625006,53.804101562499994],[136.80263671875,53.781982421875],[136.88642578125004,53.839355468749964],[137.01875,53.848144531249964],[137.15537109375012,53.821679687500016],[137.25800781250004,54.025244140625],[137.17246093750012,54.05688476562505],[137.09619140625003,54.128564453124994],[137.14160156249994,54.182226562500006],[137.37773437500002,54.28232421874998],[137.5250976562501,54.29121093750001],[137.66601562500003,54.283300781250006],[137.51318359374997,54.156396484374994],[137.45126953125006,54.130468750000034],[137.40341796875012,54.12353515625006],[137.3392578125,54.10053710937498],[137.47646484375005,54.02758789062503],[137.6227539062501,53.97045898437503],[137.83476562500002,53.94672851562498],[137.78613281249997,53.90332031250003],[137.64482421875007,53.865820312500034],[137.51699218750002,53.70708007812502],[137.31367187500004,53.63159179687499],[137.22148437500007,53.579199218750006],[137.25371093750007,53.546142578125],[137.3283203125001,53.538964843749966],[137.73818359375,53.56030273437506],[137.95048828125007,53.60356445312499],[138.25292968749997,53.726416015625055],[138.37890624999997,53.90927734375],[138.49355468750005,53.959667968749955],[138.5279296875001,53.959863281249994],[138.56816406250007,53.947167968749994],[138.56914062500002,53.81879882812495],[138.40703125000002,53.67416992187498],[138.29218750000004,53.59243164062502],[138.24970703125004,53.52402343750003],[138.32031250000003,53.52290039062498],[138.45068359375003,53.537011718750016],[138.51093750000004,53.57001953124998],[138.66074218750012,53.744775390624966],[138.6994140625,53.869726562500034],[138.72167968749997,54.04375],[138.70468750000006,54.14765624999998],[138.71591796875006,54.22265625],[138.65722656249997,54.29833984375003],[138.695703125,54.32001953125001],[139.10507812500012,54.21782226562498],[139.31972656250005,54.19296874999998],[139.707421875,54.27714843749999],[139.79550781250006,54.256445312500034],[139.85839843750003,54.205322265625],[140.17871093749997,54.051562500000045],[140.24169921875003,54.001025390625045],[140.3470703125,53.81259765625003],[140.68759765625012,53.59643554687503],[141.00566406250007,53.49458007812498],[141.0150390625,53.45424804687502],[141.21767578124997,53.33447265625006],[141.3737304687501,53.29277343749999],[141.4020507812501,53.18398437500002],[141.32792968750002,53.097265625000034],[141.18125,53.01528320312505],[140.88730468750012,53.09150390625001],[140.83964843750002,53.087890625],[140.87451171874997,53.03984374999999],[141.08681640625,52.89755859375003],[141.25585937499997,52.84013671874996],[141.26591796875007,52.65258789062506],[141.24501953125,52.55014648437503],[141.13242187500006,52.435693359374994],[141.16982421875005,52.36840820312497],[141.32968750000006,52.27114257812505],[141.40908203125,52.234326171875004],[141.48525390625,52.17851562500002],[141.385546875,52.05722656249997],[141.36689453125004,51.92065429687505],[141.25839843750006,51.860693359375006],[141.12939453124997,51.72778320312502],[140.93261718750003,51.61992187499999],[140.83857421875004,51.41416015624998],[140.68769531250004,51.23227539062506],[140.67070312500002,51.05131835937496],[140.64560546875006,50.986767578124955],[140.5208984375,50.800195312500044],[140.47636718750007,50.545996093750034],[140.53544921875002,50.13076171874999],[140.56406250000003,50.106689453124964],[140.62451171874997,50.08242187500002],[140.61328124999997,50.05371093750003],[140.58457031250006,50.03334960937496],[140.46269531250002,49.911474609375006],[140.46455078125004,49.825585937499994],[140.51132812500006,49.76166992187504],[140.51718750000012,49.59614257812498],[140.4310546875,49.33149414062498],[140.39912109375,49.28979492187499],[140.36435546875006,49.220849609374994],[140.34863281249997,49.15917968750002],[140.32558593749997,49.120019531249966],[140.308984375,49.05390625000001],[140.33369140625004,48.994824218749955],[140.3783203125,48.964111328125],[140.22421875000012,48.77285156250002],[140.17060546875004,48.52368164062497],[140.11328124999997,48.42265625000002],[139.99843750000005,48.32377929687501],[139.76074218750003,48.180566406249966],[139.67626953124997,48.08989257812499],[139.52050781250003,47.97529296874998],[139.37265625000006,47.88735351562502],[139.16699218750003,47.63486328125],[139.00136718750005,47.38330078125],[138.58681640625005,47.057226562500006],[138.52968750000005,46.97622070312502],[138.50048828124997,46.88984375000001],[138.3917968750001,46.74506835937501],[138.33691406250003,46.54340820312495],[138.21015625000004,46.46293945312499],[138.10634765625005,46.25073242187503],[137.76914062500006,45.92851562500002],[137.68544921875,45.81835937500002],[137.4251953125,45.639990234375034],[137.14697265624997,45.393505859374976],[136.80351562500002,45.171142578125],[136.73720703125,45.08002929687498],[136.60410156250006,44.97817382812502],[136.46044921875003,44.822119140625034],[136.2511718750001,44.66679687499999],[136.20869140625004,44.56201171874997],[136.14228515625004,44.489111328125034],[135.9870117187501,44.43984375000005],[135.87460937500012,44.37353515625003],[135.53320312500003,43.97148437500002],[135.48906250000002,43.89882812500005],[135.48339843749997,43.83500976562502],[135.26015625,43.68461914062502],[135.1310546875001,43.52573242187506],[134.91699218749997,43.42656250000002],[134.691796875,43.29057617187502],[134.15644531250004,43.04213867187505],[134.01044921875,42.94746093750001],[133.709375,42.82993164062506],[133.58671875000002,42.82822265624998],[133.32949218750005,42.76386718750001],[133.15996093750007,42.69697265624998],[133.059375,42.722802734374994],[132.99658203124997,42.80800781250002],[132.92392578125012,42.805273437500006],[132.86357421875007,42.79375],[132.70898437500003,42.875830078125],[132.57646484375002,42.87158203125003],[132.48134765625,42.90976562499998],[132.30380859375006,42.88330078125],[132.334375,43.23867187500002],[132.30957031249997,43.31352539062499],[132.23320312500007,43.24506835937498],[132.02871093749997,43.11894531249996],[131.94726562499997,43.09541015624995],[131.86660156249997,43.09516601562501],[131.89833984375,43.170751953125034],[132.0130859375,43.280029296875],[131.97626953125004,43.296044921874994],[131.93896484374997,43.30195312500004],[131.79472656250002,43.25527343750002],[131.72207031250005,43.20263671875006],[131.51640625000007,42.99643554687506],[131.39326171875,42.82231445312502],[131.29248046875003,42.772119140624994],[131.2453125000001,42.697412109374966],[131.15830078125012,42.62602539062499],[131.0248046875,42.645166015624994],[130.94570312500005,42.63393554687502],[130.75615234375007,42.67329101562504],[130.709375,42.656396484374966],[130.83417968750007,42.52294921875006],[130.72988281250005,42.325781250000034],[130.68730468750007,42.30253906249999],[130.65800781250007,42.327783203124994],[130.6515625000001,42.372509765624955],[130.61796875000007,42.415625],[130.55410156250005,42.47470703124997],[130.5269531250001,42.535400390625],[130.58447265625003,42.56733398437504],[130.5765625,42.62324218749995],[130.52060546875006,42.67431640624997],[130.43925781250002,42.68554687500005],[130.41992187499997,42.69985351562502],[130.42480468749997,42.72705078124997],[130.45273437500006,42.75541992187499],[130.49296875000002,42.77910156250002],[130.57724609375006,42.81162109375006],[130.72246093750007,42.83583984375002],[130.80332031250006,42.85683593750002],[130.86855468750005,42.86333007812502],[130.94287109375003,42.851757812499976],[131.0055664062501,42.88310546874996],[131.06855468750004,42.90224609375005],[131.08349609374997,42.95629882812506],[131.0861328125,43.0380859375],[131.10898437500012,43.06245117187501],[131.13554687500002,43.09760742187498],[131.17558593750007,43.1421875],[131.21191406250003,43.25776367187501],[131.23935546875012,43.33764648437503],[131.25732421875003,43.378076171874994],[131.26181640625006,43.43305664062501],[131.24394531250007,43.46904296874996],[131.2091796875001,43.49042968749998],[131.18242187500007,43.50556640625004],[131.180078125,43.567089843749955],[131.18359375000003,43.65087890624997],[131.17421875,43.70473632812502],[131.21328125000005,44.00292968750003],[131.2552734375,44.07158203124998],[131.12578125000005,44.46918945312498],[131.08691406249997,44.59565429687498],[131.06064453125012,44.65966796874997],[131.00390625000003,44.75322265625002],[130.96777343750003,44.79995117187505],[130.9816406250001,44.844335937500034],[131.03300781250007,44.88886718750004],[131.08232421875002,44.91000976562498],[131.2279296875,44.92016601562503],[131.26826171875004,44.93613281249997],[131.44687500000012,44.984033203124966],[131.4875,45.01313476562504],[131.57871093750006,45.08364257812502],[131.61396484375004,45.13657226562506],[131.65400390625,45.20537109375004],[131.74208984375005,45.24262695312498],[131.79492187499997,45.305273437500034],[131.85185546875002,45.32685546875001],[131.90927734375003,45.27373046875002],[131.97753906250003,45.243994140625006],[132.06738281249997,45.225976562499966],[132.1813476562501,45.203271484375044],[132.36298828125,45.15996093750002],[132.5490234375,45.122802734375],[132.665625,45.09370117187501],[132.72314453124997,45.08056640625],[132.83867187500007,45.061132812500034],[132.88876953125003,45.046044921874994],[132.93603515624997,45.029931640624994],[133.01171874999997,45.074560546875034],[133.1134765625001,45.130712890625006],[133.096875,45.220458984375],[133.11337890625006,45.321435546874966],[133.18603515625003,45.49482421875004],[133.2669921875,45.545263671875006],[133.30957031249994,45.553076171875006],[133.35546875000003,45.57221679687498],[133.43642578125,45.60468750000004],[133.465625,45.651220703125],[133.44912109375,45.70507812500005],[133.4757812500001,45.757666015625006],[133.48466796875,45.81044921875002],[133.51308593750002,45.878808593749994],[133.551171875,45.897802734375055],[133.60800781250012,45.92031250000002],[133.6478515625,45.95522460937502],[133.68574218750004,46.00893554687505],[133.7111328125001,46.06962890624999],[133.70068359374997,46.13974609375006],[133.75019531250004,46.185937500000044],[133.8328125,46.22426757812505],[133.86132812500003,46.24775390625004],[133.87480468750002,46.30908203125],[133.8802734375,46.33603515624998],[133.90273437500005,46.366943359374964],[133.88671874999997,46.430566406249966],[133.86660156250005,46.499121093750006],[133.95751953124997,46.6142578125],[134.02265625000004,46.71318359374999],[134.03857421874997,46.85815429687503],[134.04599609375006,46.88198242187502],[134.07138671875012,46.95078125],[134.08642578124997,46.978125],[134.13691406250004,47.068994140624994],[134.2021484375,47.128076171874966],[134.18925781250007,47.19423828125002],[134.16298828125005,47.25874023437503],[134.1676757812501,47.30219726562501],[134.22519531250006,47.352636718750055],[134.26005859375002,47.37773437500001],[134.2908203125,47.41357421875003],[134.33945312500012,47.42949218749999],[134.3825195312501,47.43823242187499],[134.48349609375006,47.447363281250006],[134.54189453125002,47.48515625],[134.59619140624997,47.523876953124955],[134.69580078124997,47.624853515625006],[134.728125,47.68447265624999],[134.75234375,47.71542968749998],[134.6986328125,47.801416015624994],[134.65029296875,47.87426757812503],[134.59130859374997,47.975195312500055],[134.56601562500006,48.02250976562501],[134.60537109375,48.082910156249966],[134.64726562500002,48.12016601562502],[134.6693359375,48.15332031250003],[134.6808593750001,48.21044921875003],[134.66523437500004,48.25390625],[134.56357421875012,48.321728515624955],[134.45615234375006,48.35532226562506],[134.33496093749997,48.36884765624995],[134.29335937500005,48.373437500000016],[134.20585937500007,48.35991210937502],[133.84218750000005,48.273730468750045],[133.67177734375005,48.20771484375001],[133.57324218749994,48.13300781249998],[133.46835937500006,48.09716796875003],[133.30117187500005,48.10151367187504],[133.14404296875003,48.10566406249998],[133.02011718750006,48.06440429687504],[132.8771484375001,47.979101562500055],[132.77285156250005,47.940087890625016],[132.70722656250007,47.94726562500006],[132.6369140625001,47.890087890624955],[132.5619140625,47.768505859374955],[132.47626953125004,47.714990234374994],[132.38017578125002,47.7294921875],[132.14980468750005,47.71796874999998],[131.78525390625012,47.68051757812497],[131.55673828125012,47.68203125000002],[131.4642578125,47.72260742187504],[131.31933593749997,47.72783203125002],[131.121875,47.69765625],[131.002734375,47.69145507812499],[130.96191406249997,47.70932617187498],[130.93281250000007,47.75981445312496],[130.9154296875,47.84291992187502],[130.84863281249997,47.92944335937497],[130.73261718750007,48.01923828124998],[130.7121093750001,48.12763671875003],[130.78720703125012,48.254589843749955],[130.80429687500012,48.341503906249976],[130.76347656250005,48.38842773437506],[130.746875,48.43037109374998],[130.65917968750003,48.48339843750002],[130.59726562500012,48.57465820312498],[130.5521484375,48.602490234374955],[130.565625,48.680126953124955],[130.61718750000003,48.773193359375],[130.553125,48.861181640625006],[130.35527343750002,48.866357421874994],[130.1959960937501,48.89165039062499],[130.03710937499994,48.97226562499998],[129.79257812500006,49.19887695312505],[129.6710937500001,49.27851562500001],[129.59140625000012,49.28666992187499],[129.53369140624997,49.32343750000001],[129.4981445312501,49.38881835937502],[129.44072265625007,49.38945312499996],[129.38466796874997,49.38945312499996],[129.35009765624997,49.362353515625045],[129.30986328125002,49.353857421875006],[129.24843750000005,49.378662109375],[129.18515625000012,49.38139648437502],[129.12011718750003,49.36206054687497],[129.0651367187501,49.374658203124966],[129.02031250000002,49.41923828124999],[128.93828125000002,49.44892578125001],[128.81933593750003,49.46376953125002],[128.77031250000007,49.494726562500006],[128.79101562500003,49.541845703125006],[128.76904296874997,49.57695312499999],[128.70400390624997,49.60014648437499],[128.5267578125,49.59423828125003],[128.23710937500007,49.55927734375001],[127.99960937500008,49.56860351562506],[127.81425781250007,49.62211914062501],[127.71113281250003,49.67153320312496],[127.69013671875008,49.71674804687504],[127.63671874999997,49.760205078125004],[127.55078124999997,49.801806640625045],[127.50244140624997,49.8734375],[127.49179687500012,49.97504882812498],[127.51230468750013,50.07167968750005],[127.590234375,50.20898437500003],[127.39531250000006,50.298583984375],[127.33720703125007,50.35014648437502],[127.35117187500006,50.39360351562498],[127.34082031249997,50.428076171875006],[127.30605468749998,50.45351562500002],[127.3082031250001,50.49418945312495],[127.34716796874997,50.55009765624999],[127.346875,50.62133789062503],[127.30703125000005,50.707958984375004],[127.19824218749997,50.82944335937506],[127.02041015625,50.985888671875045],[126.92480468749997,51.10014648437496],[126.91152343749998,51.17231445312501],[126.88769531249997,51.230126953124966],[126.85439453125,51.26137695312502],[126.83378906250007,51.31489257812501],[126.84775390625006,51.37416992187502],[126.82734375000008,51.41225585937505],[126.80175781250001,51.44804687499996],[126.80546875000007,51.50566406249999],[126.77451171875006,51.54506835937502],[126.70917968750008,51.566308593749994],[126.6886718750001,51.60991210937499],[126.70078125000006,51.70302734375005],[126.65371093749998,51.78129882812499],[126.51054687500002,51.925830078125045],[126.46806640625002,52.031298828125045],[126.45556640625003,52.12646484374997],[126.39482421875002,52.17299804687505],[126.39150390625007,52.214501953124966],[126.38349609375008,52.286523437499994],[126.34628906250006,52.30625],[126.32421875000001,52.331640625000034],[126.34169921875,52.36201171875001],[126.312890625,52.39975585937506],[126.23759765625002,52.44482421875],[126.20292968750006,52.48383789062504],[126.19443359375012,52.51914062500003],[126.15664062500004,52.54663085937503],[126.04589843749996,52.57333984374998],[126.016015625,52.610205078125034],[126.02324218750007,52.64301757812495],[126.04707031250004,52.67348632812505],[126.06015625000012,52.69199218749998],[126.05605468749998,52.71586914062496],[126.04814453125006,52.73945312499998],[126.004296875,52.76787109374999],[125.94160156250004,52.80068359375002],[125.871875,52.871533203124976],[125.78281250000012,52.89072265624998],[125.728125,52.89072265624998],[125.68076171875012,52.930810546874966],[125.69531249999996,52.956298828125],[125.69169921875002,53.00371093749998],[125.64902343750012,53.042285156250045],[125.59599609375007,53.057470703125006],[125.54599609375005,53.04760742187506],[125.42246093750005,53.08374023437503],[125.22558593750003,53.16582031249999],[125.075,53.20366210937495],[124.9708984375001,53.19731445312499],[124.90664062500005,53.172656250000045],[124.88212890625,53.129736328125006],[124.81230468750002,53.133837890625045],[124.63984375000003,53.21064453124995],[124.46591796875006,53.22963867187502],[124.36914062499996,53.27094726562498],[124.29140625,53.34086914062502],[124.21992187500003,53.37011718750003],[124.15429687499997,53.35869140625001],[123.99472656250005,53.40561523437497],[123.74091796875003,53.51098632812503],[123.6078125,53.546533203124994],[123.5597656250001,53.526660156250045],[123.53476562500008,53.526464843750006],[123.48945312500004,53.52944335937499],[123.42402343750004,53.53076171874997],[123.30957031250001,53.55561523437498],[123.15410156250007,53.54458007812505],[122.95761718750006,53.49770507812499],[122.74472656250006,53.46850585937499],[122.51582031250003,53.45698242187495],[122.38017578125002,53.4625],[122.33779296875,53.48500976562499],[122.08886718750001,53.45146484374999],[121.74394531250002,53.38359375000002],[121.40546875000003,53.317041015624966],[120.98544921875012,53.28457031250002],[120.70410156249997,53.171826171874955],[120.42128906249998,52.96806640625002],[120.21816406250001,52.83989257812502],[120.09453125000007,52.787207031250034],[120.04433593750005,52.71821289062501],[120.0675781250001,52.63291015625003],[120.17275390625,52.602490234374955],[120.36005859375004,52.62700195312499],[120.52109375000012,52.61503906250004],[120.65615234375,52.56665039062502],[120.69921874999997,52.49360351562498],[120.65039062499997,52.395898437499966],[120.66542968749998,52.299902343750034],[120.74453125000004,52.20546875],[120.74980468750007,52.096533203125],[120.68144531250006,51.97304687499999],[120.51054687500006,51.84853515625002],[120.23701171875003,51.722998046875034],[120.06689453125003,51.60068359375006],[119.96699218750008,51.42211914062499],[119.81318359375004,51.26704101562504],[119.75664062500006,51.17949218749995],[119.74599609375,51.10771484374999],[119.6849609375,51.030126953125006],[119.57343750000003,50.94677734374997],[119.51230468750012,50.863134765625006],[119.50175781250002,50.779248046874955],[119.44570312500005,50.70283203125001],[119.34404296875002,50.633886718750006],[119.2806640625,50.56098632812498],[119.25585937499996,50.48417968749996],[119.21669921874998,50.432519531250016],[119.16367187500006,50.40600585937503],[119.19189453125003,50.37983398437504],[119.30156250000006,50.35390625],[119.34628906250012,50.278955078124994],[119.32607421875001,50.15493164062505],[119.25986328125012,50.06640625000003],[119.14746093750001,50.013378906249976],[118.97949218749996,49.97885742187506],[118.75595703125013,49.96284179687498],[118.4515625,49.84448242187502],[118.18662109375013,49.69277343750002],[117.8734375,49.51347656250002],[117.81259765625012,49.513525390625034],[117.69843750000004,49.53583984375004],[117.47714843750006,49.60942382812501],[117.24560546874997,49.624853515625055],[117.02167968750004,49.69296874999998],[116.88896484375007,49.737792968749964],[116.6833007812501,49.82377929687499],[116.63154296875004,49.877050781250006],[116.55117187499998,49.92031250000002],[116.35117187500012,49.97807617187499],[116.21679687500003,50.00927734375003],[116.1345703125,50.01079101562499],[115.92597656250008,49.95214843750003],[115.79521484375002,49.90590820312502],[115.71777343750003,49.88061523437503],[115.58798828125005,49.88603515624995],[115.42919921874996,49.89648437499997],[115.3650390625,49.91176757812496],[115.27451171875006,49.948876953124994],[115.098046875,50.059423828125034],[115.00332031250005,50.138574218749994],[114.8795898437501,50.18305664062501],[114.74316406249996,50.23369140625002],[114.6749023437501,50.24570312500006],[114.55400390625002,50.24145507812499],[114.38632812500012,50.25546875],[114.29707031250004,50.27441406250006],[114.22177734375006,50.25727539062501],[114.07070312500004,50.204736328124966],[113.88115234375007,50.10112304687502],[113.73242187499997,50.06152343750002],[113.57421874999996,50.00703125000001],[113.44550781250004,49.94160156250001],[113.31904296875004,49.87431640624999],[113.1641601562501,49.79716796874999],[113.09208984375006,49.692529296874994],[113.05556640625,49.61625976562499],[112.91484375,49.569238281249994],[112.80644531250007,49.52358398437502],[112.69736328125012,49.50727539062498],[112.494921875,49.532324218750034],[112.37519531250003,49.51459960937498],[112.07968750000006,49.42421875000002],[111.93447265625005,49.41601562500006],[111.83339843750004,49.40361328125002],[111.7355468750001,49.39775390624996],[111.57480468750012,49.37641601562498],[111.5119140625001,49.360937500000034],[111.42929687500006,49.342626953125034],[111.3366210937501,49.355859374999966],[111.20419921875012,49.304296875000034],[110.82792968750002,49.16616210937505],[110.70976562500002,49.142968750000016],[110.63105468750003,49.137597656249994],[110.52958984375,49.187060546875045],[110.42783203125006,49.21997070312499],[110.32138671875012,49.215869140625045],[110.19990234375003,49.17041015625003],[109.99453125000005,49.20561523437499],[109.75039062500004,49.23930664062502],[109.52871093749998,49.26987304687503],[109.45371093750012,49.29633789062501],[109.23671875000005,49.334912109374955],[108.91992187499997,49.33535156250005],[108.73300781250012,49.335644531250004],[108.61367187500004,49.32280273437498],[108.52246093750003,49.34150390624998],[108.4069335937501,49.39638671875005],[108.21308593750004,49.52480468750002],[108.09804687500005,49.562646484374994],[108.03378906250012,49.593994140624964],[108.00957031250007,49.646875],[107.96542968750012,49.65351562500004],[107.93671875000004,49.691015625000034],[107.93876953125002,49.74072265625003],[107.93486328125,49.849023437499994],[107.94785156250012,49.92470703125002],[107.91660156250012,49.947802734375045],[107.78681640625004,49.960009765625045],[107.63095703125012,49.98310546875004],[107.34707031249998,49.986669921875034],[107.23330078125,49.989404296874994],[107.14306640625003,50.03300781249999],[107.04023437500004,50.086474609375045],[106.94130859375005,50.19667968750002],[106.85371093750004,50.24829101562506],[106.71113281250004,50.312597656250006],[106.57441406250004,50.32880859375004],[106.36845703125,50.317578124999955],[106.21787109375005,50.304589843749966],[106.08251953124997,50.33256835937499],[105.996484375,50.36791992187499],[105.8751953125001,50.405371093750006],[105.6925781250001,50.414160156250006],[105.54160156250006,50.441259765625034],[105.38359375000002,50.47373046874998],[105.26669921875012,50.46049804687504],[105.1859375,50.42958984375005],[105.09472656249996,50.38994140624996],[104.97695312500005,50.38291015625003],[104.68535156250007,50.34184570312502],[104.59638671875004,50.3171875],[104.46630859375003,50.30615234375003],[104.35390625000004,50.27529296875005],[104.2599609375001,50.214453125],[104.17968749999997,50.16943359374997],[104.07871093750012,50.15424804687498],[103.95849609374997,50.15727539062499],[103.85615234375004,50.17182617187501],[103.80263671875,50.17607421874999],[103.72324218750006,50.15385742187499],[103.63291015625006,50.138574218749994],[103.49628906250003,50.164941406250044],[103.42119140625002,50.18706054687502],[103.3043945312501,50.200292968750034],[103.2337890625,50.264257812500034],[103.16171875000005,50.29072265624998],[103.03945312500005,50.300634765625055],[102.85966796875002,50.33325195312506],[102.76542968750007,50.36655273437498],[102.68330078125004,50.38715820312501],[102.5462890625,50.46132812500002],[102.4694335937501,50.52568359374998],[102.40683593750012,50.53618164062499],[102.33642578124997,50.544238281250045],[102.28837890625007,50.585107421875016],[102.28574218750005,50.634667968749994],[102.30332031250006,50.66552734374997],[102.31660156250003,50.71845703125001],[102.27656250000004,50.76870117187502],[102.23505859375004,50.79121093749998],[102.21503906250004,50.82944335937506],[102.22617187500006,50.90146484374998],[102.21025390625002,50.97431640624998],[102.19453125000004,51.05068359375002],[102.15195312500005,51.107519531250034],[102.14238281250007,51.21606445312503],[102.16005859375005,51.260839843750006],[102.15566406249998,51.31376953124996],[102.1115234375001,51.35346679687495],[101.97919921875004,51.382226562499966],[101.82119140625,51.421044921874966],[101.57089843750006,51.467187500000044],[101.46435546874996,51.47148437500002],[101.38125,51.45263671875],[101.30449218750007,51.474755859374994],[101.22324218750012,51.51328125],[101.08535156249998,51.553027343750045],[100.90361328125,51.60424804687499],[100.71074218750007,51.66157226562503],[100.53623046875006,51.713476562500034],[100.46894531250003,51.72607421875003],[100.23037109375,51.729833984375006],[100.0345703125,51.73710937499996],[99.92167968750002,51.755517578124994],[99.78789062500002,51.827539062499994],[99.71923828124997,51.87163085937502],[99.61289062500005,51.892529296875004],[99.53232421875006,51.89990234374999],[99.40703125000002,51.923535156250004],[99.176171875,51.998876953125006],[99.09140625000006,52.034863281249955],[99.03427734375006,52.035400390624964],[98.95810546875006,52.10170898437499],[98.89316406250006,52.117285156250055],[98.84863281249997,52.07006835937503],[98.80253906250007,51.95747070312501],[98.76015625,51.90507812499998],[98.64052734375005,51.801171875000044],[98.3527343750001,51.717626953125006],[98.303125,51.674267578124955],[98.27685546875003,51.634570312500045],[98.2375,51.57841796874996],[98.21992187500004,51.50561523437505],[98.18466796875006,51.485742187499994],[98.103125,51.483544921874994],[98.03759765625003,51.44995117187499],[97.98916015625,51.37705078124998],[97.94687500000012,51.34843750000002],[97.9232421875,51.28046875000001],[97.92734375000012,51.250732421875],[97.91787109375,51.21787109375006],[97.91083984375004,51.165185546874966],[97.83574218750002,51.05166015625002],[97.82529296875012,50.985253906249994],[97.8561523437501,50.943359375],[97.91982421875,50.88715820312501],[97.953125,50.85517578124998],[97.96416015625007,50.81767578124996],[97.96191406249997,50.769140625000034],[98.0011718750001,50.70205078125005],[98.02978515625003,50.64462890624998],[98.07890625000002,50.60380859375002],[98.14501953124997,50.56855468750001],[98.22050781250006,50.55717773437502],[98.2794921875001,50.53325195312501],[98.29267578125004,50.48696289062499],[98.27734375000001,50.422998046875016],[98.25029296875002,50.30244140624998],[98.2,50.22768554687502],[98.17011718750004,50.18056640625002],[98.12197265625,50.106591796874966],[98.10341796875004,50.077832031249955],[98.00390625000003,50.01425781249998],[97.93662109375006,49.996777343749976],[97.85390625,49.94677734375],[97.785546875,49.94453124999998],[97.72070312499997,49.94462890625002],[97.65097656250006,49.93359374999997],[97.58935546875003,49.911474609375006],[97.54082031250007,49.84311523437503],[97.418359375,49.77304687500003],[97.35976562500005,49.74145507812499],[97.20859375000005,49.73081054687506],[97.13691406250004,49.76171875000006],[97.09765625000003,49.80502929687498],[97.04912109375,49.82988281249999],[96.98574218750005,49.88281250000003],[96.71171875000002,49.91157226562501],[96.6402343750001,49.89785156249999],[96.59843750000002,49.87841796875003],[96.54326171875007,49.892529296874955],[96.50576171875005,49.91870117187506],[96.46640625000012,49.91152343750002],[96.38115234375007,49.89604492187496],[96.31503906250012,49.90112304687503],[96.22968750000003,49.954101562499964],[96.11171875,49.98247070312499],[96.06552734375006,49.998730468750004],[96.01855468750003,49.99877929687503],[95.98955078125006,49.973583984374955],[95.9357421875001,49.960009765625045],[95.89941406249997,49.990576171875034],[95.851953125,50.012939453124964],[95.78935546875002,50.0125],[95.70781250000002,49.96601562500001],[95.56718750000007,49.94384765625002],[95.52265625000004,49.911230468750034],[95.441796875,49.91552734375003],[95.38564453125005,49.94121093750002],[95.32949218750005,49.94414062499999],[95.1662109375001,49.94384765625002],[95.11142578125012,49.935449218749994],[95.04433593750005,49.961572265624994],[95.01289062500004,50.008251953125004],[94.93027343750006,50.04375],[94.8112304687501,50.04819335937506],[94.71806640625002,50.04326171875002],[94.67548828125004,50.02807617187506],[94.61474609375003,50.02373046874996],[94.56464843750004,50.08793945312499],[94.496875,50.13281249999997],[94.45849609374997,50.165722656250004],[94.4001953125,50.17963867187501],[94.35468750000004,50.221826171874994],[94.346875,50.30341796875001],[94.31933593749997,50.40488281249998],[94.28701171875005,50.511376953124994],[94.25107421875005,50.55639648437503],[94.07578125000006,50.572851562500006],[93.98984375000006,50.56884765625],[93.79541015624997,50.57763671875],[93.66201171875,50.58369140624998],[93.6255859375001,50.585546875],[93.50107421875006,50.59746093749996],[93.38681640625006,50.60849609374998],[93.27050781249997,50.615576171875006],[93.22255859374998,50.606542968750034],[93.103125,50.60390625000002],[93.00986328125006,50.65454101562502],[92.97070312500003,50.7125],[92.96357421875004,50.74492187499999],[92.94130859375005,50.77822265625002],[92.85644531250003,50.78911132812502],[92.77929687500003,50.778662109375006],[92.738671875,50.710937499999964],[92.68134765625004,50.683203125],[92.6266601562501,50.68828124999999],[92.57890625000002,50.725439453125006],[92.48642578125012,50.765087890625004],[92.42636718750006,50.803076171875],[92.35478515625002,50.864160156250016],[92.29580078125,50.84980468750003],[92.27900390625004,50.81220703125001],[92.2653320312501,50.77519531250002],[92.19238281249997,50.700585937499994],[92.10400390625003,50.691992187500034],[91.95654296874997,50.697607421875034],[91.80429687500006,50.693603515625],[91.70634765625002,50.66552734374997],[91.63417968750005,50.615136718749994],[91.596875,50.575537109375034],[91.52167968750003,50.56201171875003],[91.4464843750001,50.522167968749976],[91.41503906249997,50.46801757812506],[91.34082031249997,50.470068359375034],[91.30058593750002,50.46337890624999],[91.2337890625,50.45239257812497],[91.06279296875007,50.42260742187503],[91.02158203125012,50.41547851562501],[90.9171875000001,50.364160156250016],[90.83808593750004,50.323730468749964],[90.76074218749997,50.30595703124999],[90.71435546874997,50.25942382812502],[90.65507812500007,50.22236328125001],[90.51689453125007,50.21333007812504],[90.36484375000006,50.166894531249994],[90.31132812500002,50.15117187499998],[90.22451171875,50.11669921874997],[90.1037109375001,50.10332031250002],[90.05371093750003,50.09375],[90.0049804687501,50.06928710937501],[89.97734375000002,49.98432617187501],[89.87802734375012,49.953515625000044],[89.7442382812501,49.948095703125006],[89.64384765625002,49.90302734374998],[89.63427734375003,49.82329101562499],[89.66953125000006,49.750488281249964],[89.65410156250007,49.71748046875001],[89.57919921875006,49.69970703125002],[89.475,49.66054687500005],[89.39560546875006,49.611523437500004],[89.29921875000004,49.61113281250002],[89.24394531250007,49.62705078125006],[89.20292968750007,49.59570312499997],[89.17998046875,49.5322265625],[89.10947265625012,49.50136718750002],[89.00839843750006,49.472802734374994],[88.97060546875,49.483740234375006],[88.94541015625012,49.50766601562498],[88.9001953125,49.539697265625016],[88.86386718750005,49.52763671874996],[88.86035156249997,49.48154296874998],[88.83164062500012,49.44843749999998],[88.74785156250007,49.44624023437498],[88.68271484375005,49.46455078124998],[88.633203125,49.486132812500045],[88.5443359375,49.48256835937502],[88.45244140625002,49.47270507812496],[88.39335937500007,49.48286132812498],[88.33779296875005,49.47255859375002],[88.19257812500004,49.451708984375045],[88.13554687500002,49.381494140625016],[88.13427734374997,49.2984375],[88.11572265624997,49.25629882812501],[88.0285156250001,49.219775390625045],[87.98808593750002,49.186914062499994],[87.9347656250001,49.164550781249964],[87.81826171875005,49.16210937500003],[87.8142578125,49.16230468749995],[87.7625,49.16582031249996],[87.668359375,49.147216796875],[87.5765625,49.13237304687499],[87.5158203125001,49.122412109375],[87.47617187500006,49.09145507812502],[87.41669921875004,49.07661132812501],[87.32285156250012,49.085791015625],[87.296875,49.14765625000001],[87.23369140625007,49.216162109375],[87.14804687500012,49.239794921875045],[87.07060546875007,49.25458984375004],[87.00097656249997,49.28730468750004],[86.95292968750007,49.32207031250002],[86.81210937500006,49.487890625000034],[86.71435546874997,49.55859375000005],[86.62646484374997,49.56269531250001],[86.61425781249997,49.60971679687498],[86.66533203125002,49.656689453124955],[86.7306640625001,49.69555664062497],[86.72871093750004,49.74868164062496],[86.67548828125004,49.77729492187501],[86.61015625000007,49.76914062500006],[86.52226562500006,49.70776367187497],[86.41796874999997,49.63847656249999],[86.29238281250004,49.5875],[86.24218749999997,49.54633789062495],[86.1808593750001,49.49931640624996],[86.09296875000004,49.50546874999998],[86.02958984375007,49.50341796875],[85.9744140625,49.49931640624996],[85.93359374999997,49.55043945312499],[85.88046875000006,49.556542968749994],[85.49843750000005,49.605371093749994],[85.37158203124996,49.62392578125005],[85.29189453125,49.599462890625034],[85.2326171875001,49.61582031249998],[85.21015625000004,49.66484375000002],[85.1365234375,49.75073242187503],[85.07646484375007,49.821630859375006],[85.00078125000002,49.894140625000034],[84.97519531250012,49.95107421874999],[84.99970703125004,50.01030273437499],[84.9894531250001,50.061425781249994],[84.9240234375001,50.087988281250006],[84.83896484375006,50.09130859375005],[84.60732421875005,50.20239257812503],[84.49902343750003,50.21875],[84.40097656250012,50.239160156249966],[84.32324218749997,50.239160156249966],[84.25781249999997,50.28823242187502],[84.19453125000003,50.437451171874955],[84.1759765625001,50.52055664062501],[84.09931640625004,50.60473632812503],[84.00234375,50.67685546875006],[83.94511718750007,50.774658203125],[83.859765625,50.81801757812505],[83.71777343750003,50.88715820312501],[83.58144531250005,50.935742187499955],[83.35732421875005,50.99458007812503],[83.27373046875006,50.99458007812503],[83.16025390625012,50.98920898437501],[83.09277343749997,50.96059570312505],[83.0192382812501,50.89726562500002],[82.91904296875006,50.89311523437496],[82.76083984375012,50.89335937500001],[82.71855468750002,50.86948242187503],[82.69296875000012,50.82631835937505],[82.61171875,50.77148437499997],[82.49394531250007,50.72758789062498],[82.32636718750003,50.74189453124998],[82.21191406250003,50.71943359375003],[82.098046875,50.710839843749966],[81.93369140625006,50.766357421875],[81.75205078125012,50.76440429687503],[81.63388671875012,50.73911132812503],[81.46591796875006,50.73984375],[81.43144531250007,50.771142578124994],[81.4515625,50.82368164062504],[81.4376953125001,50.87104492187501],[81.41015624999997,50.90976562499998],[81.38828125000006,50.95649414062501],[81.31914062500002,50.96640625],[81.12460937500006,50.946289062499964],[81.0714843750001,50.96875],[81.0775390625,51.01494140625001],[81.11240234375005,51.07236328124998],[81.14101562500005,51.146582031250006],[81.12724609375002,51.19106445312502],[81.02675781250005,51.18569335937499],[80.965625,51.189794921875006],[80.93408203124997,51.24277343749998],[80.87734375,51.28144531250004],[80.81308593750012,51.28349609375002],[80.73525390625,51.293408203124976],[80.65048828125006,51.27734375],[80.60546875000003,51.22421875],[80.55068359375004,51.21660156249996],[80.49101562500007,51.20175781250006],[80.44804687500002,51.18334960937503],[80.42148437500012,51.136376953124966],[80.43359374999997,51.092626953125034],[80.45224609375006,50.997607421875045],[80.4236328125,50.946289062499964],[80.34521484375003,50.919091796875016],[80.27041015625005,50.92460937499999],[80.22021484374997,50.91176757812505],[80.12724609375002,50.85834960937498],[80.08632812500004,50.83999023437499],[80.07207031250007,50.80727539062499],[80.06591796874997,50.75820312500002],[79.98623046875,50.774560546874966],[79.85966796875007,50.955468749999966],[79.71640625000005,51.16000976562498],[79.55429687500012,51.37797851562498],[79.46884765625012,51.49311523437498],[79.14873046875007,51.86811523437501],[78.99208984375005,52.04741210937504],[78.72148437500006,52.35703125000006],[78.47548828125005,52.638427734375],[78.19804687500002,52.9296875],[78.03349609375007,53.09497070312503],[77.85996093750006,53.269189453124994],[77.79941406250006,53.317431640625045],[77.70439453125007,53.379150390625],[77.46923828124997,53.49877929687503],[77.13242187500005,53.67011718749995],[76.820703125,53.82265625000002],[76.57568359374997,53.942529296875016],[76.51308593750005,53.99321289062495],[76.48476562500005,54.02255859374997],[76.45859375000012,54.055273437500006],[76.42207031250004,54.11352539062506],[76.42167968750007,54.151513671874966],[76.65458984375007,54.14526367187503],[76.70302734375,54.18247070312506],[76.78896484375,54.321875],[76.8373046875,54.44238281249999],[76.75937500000012,54.436865234375006],[76.61552734375002,54.38710937499999],[76.53916015625012,54.35107421875003],[76.496484375,54.335693359375],[76.26660156249997,54.31196289062498],[76.14052734374998,54.25854492187503],[75.88066406250007,54.16796875000003],[75.69287109374996,54.114794921875045],[75.6568359375,54.10600585937501],[75.43720703125004,54.08964843749999],[75.3981445312501,54.06850585937502],[75.39238281250007,54.021728515625],[75.37705078125005,53.970117187499966],[75.22021484374997,53.89379882812506],[75.0521484375,53.82670898437496],[74.98896484375004,53.81923828125005],[74.88681640625,53.834033203125045],[74.83417968750004,53.82568359375003],[74.68144531250007,53.754394531249964],[74.45195312500007,53.64726562500002],[74.43046875000002,53.60371093750001],[74.42929687500006,53.550732421874955],[74.40273437500005,53.504443359375045],[74.35156250000001,53.487646484375006],[74.27734375000003,53.52773437499999],[74.20996093749997,53.57646484374996],[74.06865234375002,53.61142578124997],[73.85898437500006,53.61972656249998],[73.73115234375008,53.602783203125],[73.64296875,53.576269531250006],[73.4699218750001,53.468896484374994],[73.40693359375004,53.44755859374999],[73.371875,53.45439453124996],[73.3619140625,53.506201171875034],[73.3268554687501,53.54316406250001],[73.28574218750006,53.598388671875],[73.30566406250003,53.707226562499955],[73.39941406250003,53.81147460937498],[73.55419921875003,53.868310546874994],[73.67890625000004,53.92944335937503],[73.71552734375004,53.996191406250034],[73.71240234375001,54.04238281250002],[73.66640625000005,54.06347656249997],[73.61796875000007,54.06738281249997],[73.58994140625,54.04497070312502],[73.50566406250002,53.99931640624996],[73.38066406250002,53.96284179687498],[73.27656250000004,53.95561523437502],[73.22988281250005,53.95781250000004],[73.1193359375001,53.98076171874999],[72.91406249999997,54.10732421875002],[72.74101562500002,54.12451171874997],[72.62226562500004,54.13432617187502],[72.5827148437501,54.12158203125],[72.56425781250007,54.09042968750006],[72.57558593750005,54.05649414062498],[72.59921875000005,54.023046875],[72.58593750000003,53.99594726562498],[72.53027343749997,53.975781249999955],[72.44677734375001,53.94184570312498],[72.40429687499997,53.96445312500006],[72.3830078125001,54.05366210937501],[72.38730468750006,54.12304687500003],[72.3294921875,54.18144531250002],[72.26914062500006,54.27211914062502],[72.18603515625001,54.32563476562501],[72.10537109375,54.308447265625055],[72.065625,54.231640624999955],[72.00449218750005,54.20566406249998],[71.8874023437501,54.22148437500002],[71.6771484375,54.17802734375004],[71.33642578125003,54.15834960937502],[71.09316406250005,54.21220703124998],[71.05273437499997,54.26049804687497],[71.15214843750007,54.36406250000002],[71.159765625,54.45541992187498],[71.15917968749997,54.53862304687496],[71.18554687500003,54.59931640624998],[71.12626953125002,54.71503906250001],[70.99179687500005,54.95048828125001],[70.91015624999997,55.127978515625045],[70.79033203125006,55.26113281249999],[70.73808593750007,55.30517578125],[70.48632812500003,55.282373046874966],[70.41718750000004,55.25317382812506],[70.371484375,55.21225585937498],[70.293359375,55.18359375],[70.18242187500002,55.162451171875034],[70.08740234375003,55.17675781250002],[69.98173828125007,55.199072265625034],[69.87021484375,55.245654296875045],[69.74023437499997,55.30737304687499],[69.49326171875006,55.356884765624955],[69.24697265625004,55.37250976562504],[68.9772460937501,55.389599609374955],[68.8429687500001,55.358349609374976],[68.71289062499997,55.30849609375005],[68.5248046875,55.20483398437497],[68.43847656250003,55.19443359374997],[68.3019531250001,55.18652343749997],[68.20625,55.16093750000002],[68.2252929687501,55.11523437500003],[68.24404296875,55.05244140625001],[68.209375,55.00302734374998],[68.15585937500006,54.97670898437505],[68.07382812500006,54.959570312500006],[67.93994140624997,54.95371093749998],[67.82988281250002,54.94355468750004],[67.69335937499997,54.87241210937503],[67.48466796875002,54.8544921875],[67.25732421874997,54.82880859375001],[67.0983398437501,54.788183593750006],[66.75449218750006,54.73789062500006],[66.55537109375004,54.7154296875],[66.22265624999997,54.667382812499994],[65.9546875,54.659521484375006],[65.9142578125001,54.69331054687504],[65.70781250000007,54.61870117187502],[65.476953125,54.623291015624964],[65.434375,54.59331054687502],[65.378125,54.564453125],[65.31591796874997,54.55156250000002],[65.23740234375006,54.51606445312498],[65.19218750000007,54.44111328124998],[65.1578125,54.364404296874994],[65.08837890624997,54.340185546875034],[64.99541015625002,54.36875],[64.92675781250003,54.396630859374994],[64.80927734375004,54.36855468750005],[64.64990234374996,54.352246093750004],[64.52509765625004,54.36215820312498],[64.46123046875002,54.38417968750002],[64.19941406250004,54.347412109375],[64.06289062500005,54.302929687500004],[64.03740234375002,54.27973632812498],[64.00390625000003,54.267089843749964],[63.847070312500044,54.23647460937505],[63.721191406249964,54.24501953125002],[63.70136718750004,54.24321289062498],[63.58203124999997,54.22192382812502],[63.413671875,54.18320312500003],[63.292675781250104,54.17045898437501],[63.19130859375005,54.17104492187505],[63.12656250000006,54.13925781250006],[63.0739257812501,54.10522460937506],[62.63271484374999,54.069287109375004],[62.58828124999999,54.04443359375],[62.49902343750002,54.01318359375003],[62.0402343750001,54.00263671875001],[62.00234375,53.97993164062501],[61.98564453125007,53.95439453124996],[61.92871093750003,53.94648437500003],[61.598144531249964,53.994921875000045],[61.33369140625004,54.04926757812501],[61.2310546875,54.019482421874976],[61.14375,53.96381835937501],[61.11318359375005,53.88247070312505],[61.11318359375005,53.81298828125003],[61.11318359375005,53.75346679687496],[61.07353515625008,53.71044921875],[60.9855468750001,53.65742187500004],[60.979492187499964,53.621728515625044],[61.09853515624999,53.58310546874998],[61.24794921874999,53.550976562500004],[61.3361328125001,53.565185546874964],[61.40996093750002,53.587060546874994],[61.474121093749964,53.58027343750004],[61.51914062500006,53.55449218750002],[61.53496093750001,53.52329101562506],[61.5265625000001,53.50156249999998],[61.49853515624997,53.48466796875002],[61.40097656250006,53.45581054687499],[61.31162109375006,53.465722656249966],[61.22890624999999,53.445898437500006],[61.18593750000005,53.406201171875004],[61.16279296875004,53.33676757812498],[61.199218749999964,53.28715820312501],[61.3109375,53.27519531249995],[61.436816406250074,53.239404296875044],[61.576171874999964,53.22246093749996],[61.65986328125003,53.22846679687504],[61.766210937500055,53.173925781250034],[62.01464843750003,53.10786132812498],[62.08105468749997,53.05742187500001],[62.08271484375003,53.00541992187498],[62.037109374999964,52.96611328124996],[61.974218750000055,52.94375],[61.88857421874999,52.955908203125034],[61.71933593750001,52.969384765625016],[61.53359375,52.978515625],[61.40078125000005,52.99599609375002],[61.20693359375005,52.98906250000001],[61.047460937500006,52.97246093750002],[61.0065429687501,52.93334960937506],[60.944726562499994,52.86015624999995],[60.893261718750104,52.819433593750006],[60.802343750000055,52.74472656249998],[60.774414062499964,52.67578124999997],[60.82128906250003,52.56982421874997],[60.979492187499964,52.394775390625],[60.994531250000044,52.33686523437504],[60.937597656250006,52.28056640625002],[60.82841796875002,52.2333984375],[60.6703125,52.15083007812495],[60.49931640625007,52.14633789062503],[60.42548828125009,52.12558593750006],[60.23369140625002,52.02451171874997],[60.06552734375006,51.97646484374996],[60.030273437499964,51.93325195312505],[60.067480468750006,51.890625],[60.28037109375001,51.83461914062502],[60.3875,51.77299804687498],[60.41835937499999,51.70390625000004],[60.464746093749994,51.651171875000045],[60.63037109375003,51.61694335937499],[60.973535156250044,51.53706054687498],[60.99335937500004,51.528710937499966],[61.0148437500001,51.49238281250001],[61.363085937500074,51.44189453125003],[61.41132812500004,51.414746093750004],[61.55468750000002,51.32460937500005],[61.585058593750006,51.22968749999998],[61.512207031249964,51.13701171875002],[61.46503906250004,50.99023437500003],[61.38945312500002,50.86103515625001],[61.22685546875001,50.77480468750002],[60.94228515625005,50.69550781250004],[60.637988281250074,50.66372070312505],[60.50849609375004,50.66918945312499],[60.424804687499964,50.67915039062498],[60.28808593750003,50.70415039062501],[60.18671875000004,50.769775390624964],[60.11210937500001,50.83417968749995],[60.05859374999997,50.850292968749955],[60.005273437500044,50.839697265625006],[59.955175781250055,50.79926757812504],[59.887792968750006,50.69018554687503],[59.81240234375,50.58203125],[59.75117187500004,50.543945312499964],[59.523046875,50.492871093749955],[59.49785156250002,50.511083984375034],[59.52392578125002,50.58281249999999],[59.49511718750003,50.60429687500002],[59.45234375000009,50.62041015625002],[59.17089843749997,50.64790039062501],[59.064355468749994,50.66821289062497],[58.98486328124997,50.676123046875006],[58.88369140625005,50.694433593750006],[58.8140625,50.737207031249994],[58.66455078125003,50.868310546874994],[58.547460937500055,50.971044921875034],[58.35917968750007,51.063818359375034],[58.18847656250002,51.08173828125004],[58.17470703125005,51.07226562500006],[58.04511718750009,51.06884765624997],[57.83886718750002,51.091650390625],[57.828906250000024,51.089013671874994],[57.76484375000004,51.046875],[57.71699218750005,50.98095703125003],[57.65380859374997,50.925146484375006],[57.55781250000003,50.89555664062502],[57.44218750000001,50.88886718749998],[57.3125,50.94653320312503],[57.17900390625007,51.03603515625005],[57.01171874999997,51.06518554687503],[56.84960937499997,51.04555664062502],[56.79033203125002,51.03159179687503],[56.62021484375006,50.98085937499999],[56.56689453124997,51.004492187500006],[56.49140625000003,51.01953124999997],[56.32558593749999,50.93608398437502],[56.14394531250005,50.84462890625005],[56.104492187499964,50.776269531249966],[56.04970703124999,50.713525390624966],[55.92919921874997,50.65375976562498],[55.79765625000002,50.60205078125],[55.68623046875004,50.582861328125],[55.54228515625002,50.60180664062506],[55.361132812500074,50.66528320312499],[55.195214843749994,50.744726562500034],[55.01484375000004,50.869775390625016],[54.867968750000074,50.94135742187504],[54.72714843750006,50.998095703125045],[54.64160156250002,51.011572265625034],[54.57294921875009,50.99023437500003],[54.54609375000004,50.946044921875],[54.565625,50.91127929687502],[54.60625,50.87988281250003],[54.6378906250001,50.78105468749996],[54.65,50.66015625000002],[54.63613281249999,50.59160156250002],[54.59619140625003,50.55068359375002],[54.555273437500006,50.535791015624994],[54.51738281250002,50.54116210937502],[54.47148437500002,50.58378906250002],[54.44335937499997,50.673925781250006],[54.42148437500006,50.78032226562499],[54.29785156249997,50.91406249999997],[54.1911132812501,50.995703125],[54.13974609375,51.04077148437503],[54.04150390624997,51.11518554687501],[53.956835937500074,51.16118164062495],[53.77646484375,51.213720703125006],[53.688085937500006,51.25180664062503],[53.53466796875003,51.39956054687502],[53.448632812499994,51.444531249999955],[53.33808593750004,51.48237304687504],[53.2472656250001,51.49360351562501],[53.22734375000002,51.484960937500034],[53.03837890625007,51.463720703125034],[52.902636718750074,51.466943359374994],[52.8205078125001,51.49458007812503],[52.7350585937501,51.497900390625],[52.728125,51.498144531250034],[52.63515624999999,51.47954101562499],[52.617773437500006,51.48076171874996],[52.57119140625005,51.481640624999955],[52.496191406250006,51.512158203124955],[52.42304687500004,51.59423828125],[52.33105468749997,51.681298828124966],[52.21914062499999,51.709375],[52.00712890625002,51.67270507812498],[51.77539062499997,51.55424804687502],[51.60908203125003,51.483984375],[51.47343750000002,51.482031250000034],[51.39599609374997,51.47128906249997],[51.344531250000074,51.47534179687503],[51.30107421875002,51.49741210937497],[51.29072265625004,51.540185546874994],[51.26992187500005,51.59448242187503],[51.16347656250005,51.6474609375],[51.01787109375002,51.68164062500003],[50.88242187500006,51.71918945312495],[50.79394531249997,51.729199218749955],[50.75615234375002,51.675146484375034],[50.64394531250005,51.58916015625002],[50.5163085937501,51.50561523437505],[50.35371093750009,51.369726562500006],[50.30927734375009,51.32158203125004],[50.246875,51.289501953124976],[50.104882812499994,51.25458984374998],[49.93232421875003,51.19716796875002],[49.82226562499997,51.131884765625045],[49.66630859375002,51.10229492187506],[49.49804687500003,51.08359375000006],[49.424609375000074,51.027001953124994],[49.379492187500006,50.934667968750006],[49.32343750000003,50.851708984374966],[49.05869140625006,50.72607421875006],[48.9137695312501,50.64458007812496],[48.80839843750002,50.60131835937502],[48.734765625000044,50.606884765625004],[48.65517578124999,50.61987304687499],[48.625097656250006,50.61269531250005],[48.66601562499997,50.55034179687504],[48.700488281250074,50.35375976562506],[48.749414062499994,50.228466796875004],[48.784765625,50.156445312499976],[48.81796875,50.099853515625],[48.84326171875003,50.01313476562501],[48.81025390625004,49.96240234374999],[48.75898437500009,49.92832031250006],[48.6,49.87470703124998],[48.43427734375004,49.828515624999966],[48.33496093750003,49.858251953125006],[48.22480468750004,49.93193359374999],[48.1813476562501,49.97001953125002],[48.06074218750004,50.09360351562498],[47.84960937500003,50.282324218750055],[47.7057617187501,50.37797851562502],[47.59960937499997,50.413574218749964],[47.50361328125003,50.40273437499999],[47.42919921874997,50.35795898437502],[47.37636718750005,50.31811523437497],[47.32646484375002,50.273535156250034],[47.29472656250002,50.21748046874998],[47.29765625000002,50.14023437499998],[47.29521484375002,50.05849609375002],[47.24833984375002,50.00087890625002],[47.12958984375004,49.939062500000034],[46.99199218750002,49.85273437500004],[46.889550781249994,49.69697265625001],[46.82314453125005,49.502246093750045],[46.80205078125002,49.367089843750016],[46.852929687499994,49.30385742187502],[46.95341796875002,49.25258789062496],[47.018164062500006,49.19990234374998],[47.031347656250006,49.150292968749994],[47.014257812500006,49.098339843749976],[46.962207031250074,49.03833007812502],[46.852929687499994,48.96962890624996],[46.70263671875003,48.80556640625002],[46.609179687500074,48.573876953124994],[46.660937500000074,48.41225585937502],[46.853125,48.32358398437498],[47.00429687499999,48.28447265625002],[47.06464843750003,48.23247070312499],[47.11904296875005,48.12700195312498],[47.1115234375001,48.02011718749998],[47.09326171875003,47.947705078124955],[47.13076171875005,47.87675781249999],[47.202050781249994,47.79248046875006],[47.292382812499994,47.74091796875004],[47.38730468750006,47.768652343750006],[47.48193359374997,47.80390624999998],[47.600195312500006,47.78999023437498],[47.934667968750006,47.76069335937498],[48.109960937500006,47.74541015624996],[48.16699218750003,47.70878906249996],[48.27568359375002,47.589941406250006],[48.41308593749997,47.45649414062498],[48.55253906250002,47.320996093750004],[48.600683593750006,47.262304687500034],[48.71435546874997,47.100488281250016],[48.83183593750001,46.954931640625034],[48.959375,46.77460937499998],[48.950292968750006,46.72578124999998],[48.88359375000007,46.705419921875],[48.77636718749997,46.71035156250005],[48.6935546875001,46.73681640625],[48.647070312500006,46.758691406250016],[48.60527343750001,46.76591796874998],[48.55839843750007,46.75712890624999],[48.51855468749997,46.73432617187504],[48.50234375000005,46.698632812500044],[48.509179687499994,46.64995117187499],[48.54121093750004,46.60561523437502],[48.586035156250006,46.57709960937498],[48.61015625000007,46.56645507812504],[48.774316406249994,46.50795898437502],[48.95898437499997,46.44213867187503],[49.18427734375003,46.34882812500001],[49.232226562500074,46.33715820312503],[49.245898437500074,46.291601562500006],[49.12548828124997,46.28173828125003],[49.110644531250074,46.22846679687501],[49.07958984375002,46.18920898437499],[48.809960937499994,46.10048828125005],[48.74257812500005,46.10073242187502],[48.683691406250006,46.08618164062497],[48.687304687500074,46.02875976562501],[48.703417968750074,45.97622070312505],[48.749609375000055,45.920556640624994],[48.72958984375006,45.896826171875034],[48.6896484375001,45.88886718750001],[48.6374023437501,45.90576171875],[48.58906250000004,45.93486328124996],[48.53730468750004,45.94213867187503],[48.48701171875009,45.93486328124996],[48.25761718750002,45.77778320312504],[48.15917968750003,45.73701171874998],[48.052832031250006,45.72099609375002],[47.83017578125006,45.66303710937501],[47.763964843750074,45.66596679687498],[47.70107421875005,45.686181640625016],[47.649804687499994,45.65673828124997],[47.63330078124997,45.58403320312499],[47.57402343750002,45.63427734375003],[47.50839843750006,45.67416992187506],[47.47939453124999,45.687597656250034],[47.46328125,45.67968750000003],[47.524218750000074,45.60170898437505],[47.5294921875001,45.530224609374955],[47.51455078125005,45.49091796875004],[47.48867187499999,45.455078125],[47.454492187499994,45.433056640624955],[47.41308593749997,45.42104492187499],[47.39111328124997,45.29477539062503],[47.3512695312501,45.217724609374976],[47.296191406250074,45.14946289062502],[47.22148437500002,45.024267578125006],[47.161523437499994,44.969628906249966],[47.11474609374997,44.905957031249955],[47.083789062500074,44.816992187500034],[47.03925781250003,44.83789062500003],[47.00292968750002,44.87607421875],[46.983691406250074,44.82558593750002],[46.95742187500005,44.78256835937506],[46.841210937499994,44.71826171875],[46.755273437499994,44.656542968750045],[46.71611328125002,44.560693359374966],[46.7072265625001,44.503320312499994],[46.7208984375001,44.45166015625006],[46.753027343750006,44.42065429687503],[46.9157226562501,44.387158203124955],[47.02363281250004,44.34326171875],[47.12265625000006,44.26166992187498],[47.22988281250005,44.19238281249997],[47.30703125000005,44.103125],[47.36152343750004,43.99335937500004],[47.42919921874997,43.77988281250006],[47.462792968749994,43.55502929687498],[47.562597656250055,43.83466796875004],[47.64648437500003,43.88461914062498],[47.62783203125005,43.805957031250045],[47.56796875,43.684960937499994],[47.5089843750001,43.50971679687498],[47.48984375,43.381689453125034],[47.511621093749994,43.27075195312497],[47.5128906250001,43.21875],[47.463183593750074,43.03505859375002],[47.48886718750006,42.99975585937503],[47.52900390625003,42.967138671875034],[47.634863281250055,42.90346679687502],[47.70908203125006,42.81093750000002],[47.72773437500003,42.680712890625045],[47.7697265625001,42.644775390625],[47.82236328125006,42.61347656250001],[48.080175781250006,42.35371093750004],[48.22861328125006,42.18095703125002],[48.30302734375002,42.080224609374994],[48.38378906250003,41.95341796875002],[48.426367187500006,41.923974609374966],[48.47675781250004,41.905126953125034],[48.572851562500006,41.84448242187503],[48.51865234375006,41.77934570312499],[48.43066406249997,41.66333007812497],[48.39140625000007,41.60190429687498],[48.29814453125002,41.545019531250034],[48.14228515625004,41.48476562500002],[48.05605468750005,41.45869140625004],[47.96367187500007,41.33398437500003],[47.86113281250007,41.212744140625034],[47.79101562499997,41.19926757812502],[47.59179687499997,41.21811523437506],[47.52060546875006,41.22905273437496],[47.31767578125002,41.28242187500001],[47.26113281250005,41.315087890624994],[47.2052734375001,41.45561523437501],[47.14257812500003,41.51606445312501],[47.06396484375003,41.55468750000006],[47.01015625000005,41.5875],[46.98779296875003,41.62138671874996],[46.93085937500004,41.67041015625],[46.82558593750005,41.74340820312503],[46.74931640625002,41.812597656250006],[46.690332031249994,41.83134765625002],[46.616015625000074,41.80693359375001],[46.571289062499964,41.800097656250045],[46.552148437499994,41.812304687500045],[46.5376953125,41.87041015624999],[46.42988281250004,41.890966796875006],[46.41152343750005,41.904638671875034],[46.2677734375001,41.960351562499994],[46.21269531250002,41.989892578124994],[46.159765625,41.99204101562498],[46.04843750000006,42.00874023437501],[45.954003906249994,42.03540039062503],[45.91035156250009,42.07070312500002],[45.84599609375002,42.109960937500034],[45.72656250000003,42.15888671874995],[45.63857421875005,42.20507812500003],[45.63427734374997,42.234716796875034],[45.688378906249994,42.35737304687498],[45.72753906249997,42.47504882812498],[45.70527343750004,42.49809570312496],[45.655566406250074,42.51767578125003],[45.56289062499999,42.53574218749998],[45.34375,42.52978515625003],[45.20820312500004,42.64824218749999],[45.16025390625006,42.675],[45.07158203125002,42.69414062500002],[44.94335937499997,42.73027343750002],[44.870996093749994,42.75639648437499],[44.850488281249994,42.74682617187499],[44.77109375000006,42.61679687499998],[44.69179687499999,42.709619140624966],[44.64433593750002,42.73471679687503],[44.57646484375002,42.748486328124976],[44.50585937500002,42.7486328125],[44.32949218749999,42.703515624999966],[44.19970703125002,42.65361328125002],[44.10273437500004,42.616357421874994],[44.004687500000074,42.59560546875002],[43.957421875000044,42.56655273437505],[43.825976562500074,42.571533203125],[43.75986328125,42.593847656250006],[43.73837890625,42.61699218750002],[43.749902343750044,42.65751953125002],[43.79541015624997,42.702978515625034],[43.79873046875005,42.72778320312503],[43.78261718750005,42.747021484374955],[43.62304687500003,42.80771484374998],[43.55781250000009,42.844482421875],[43.34794921875002,42.89667968749998],[43.089160156250074,42.9890625],[43.00019531250004,43.04965820312506],[42.991601562499994,43.09150390624998],[42.890039062499994,43.13261718749998],[42.76064453125005,43.169580078124966],[42.660253906250006,43.159082031249966],[42.566015625,43.15512695312506],[42.41904296875006,43.22421875],[42.2796875,43.22807617187498],[42.1222656250001,43.20732421875002],[42.087792968749994,43.19912109375005],[42.05,43.19013671874998],[41.58056640624997,43.21923828124997],[41.460742187500074,43.276318359374955],[41.35820312500002,43.33339843750005],[41.083105468750055,43.37446289062498],[40.94199218750006,43.41806640624998],[40.801660156249994,43.479931640624955],[40.64804687500006,43.53388671875004],[40.518945312500044,43.51201171875002],[40.34228515625002,43.54272460937497],[40.15019531250007,43.56977539062498],[40.084570312500006,43.553125],[40.02373046875001,43.48486328125],[39.97832031250002,43.419824218749966],[39.873632812500006,43.472802734375016],[39.51669921875006,43.727880859375034],[39.329394531250074,43.89726562499999],[38.71728515624997,44.28808593750003],[38.635839843750006,44.318017578124994],[38.311816406250074,44.374462890624955],[38.18125,44.41967773437503],[37.851464843749994,44.698828125000034],[37.704882812500074,44.66137695312506],[37.5724609375001,44.67084960937503],[37.49511718750003,44.69526367187504],[37.41132812500004,44.73535156250003],[37.352343750000074,44.78837890624999],[37.28408203125005,44.90502929687503],[37.20478515625003,44.97197265624999],[36.944433593750006,45.069580078125],[36.65078125,45.12646484375003],[36.62763671875004,45.15131835937504],[36.61914062500002,45.18549804687498],[36.87304687499997,45.25175781249999],[36.941210937500074,45.289697265624994],[36.81103515625003,45.34003906250001],[36.761621093749994,45.34833984375004],[36.72041015625004,45.371875],[36.79375,45.40971679687502],[36.8659179687501,45.42705078124999],[36.977832031250074,45.38359375000002],[37.10351562500003,45.302880859374994],[37.21357421875004,45.272314453125006],[37.264257812500006,45.31093750000005],[37.6471679687501,45.37719726562506],[37.672949218750006,45.42973632812499],[37.671875,45.488378906250034],[37.634375,45.48632812499997],[37.609960937500006,45.49951171875],[37.61240234375006,45.56469726562506],[37.669238281250074,45.65405273437506],[37.840917968750055,45.79956054687503],[37.93310546875003,46.001708984375],[38.014257812500006,46.047753906249966],[38.073828125,46.01708984375002],[38.06972656250005,45.969873046874994],[38.07958984375002,45.93481445312506],[38.13281250000002,46.00283203125005],[38.18359374999997,46.09482421875006],[38.311816406250074,46.095361328124994],[38.40039062499997,46.08002929687495],[38.49228515625006,46.09052734374998],[38.31523437500007,46.241943359375],[38.07773437500006,46.39433593749996],[37.97753906249997,46.38286132812502],[37.913867187500074,46.40649414062503],[37.80957031249997,46.532080078125034],[37.76650390624999,46.63613281250002],[37.86738281250004,46.63378906249997],[37.96796875000009,46.618017578125055],[38.15947265625002,46.69067382812503],[38.22998046875003,46.70126953125006],[38.34345703125004,46.678320312500006],[38.50097656249997,46.663671875000034],[38.48798828125009,46.73217773437506],[38.43867187500003,46.813085937500006],[38.630761718750044,46.87304687500005],[38.80107421875002,46.906152343750044],[39.12675781250002,47.02343750000006],[39.2707031250001,47.04414062500001],[39.28906250000003,47.070898437500034],[39.29345703125003,47.105761718750045],[39.24453125,47.199511718750045],[39.19570312499999,47.268847656250045],[39.023730468750074,47.27221679687503],[38.928320312500006,47.17568359374999],[38.6681640625001,47.143945312499994],[38.55244140625004,47.15034179687498],[38.64433593750001,47.21220703124996],[38.73603515625009,47.235839843749964],[38.7619140625001,47.261621093749994],[38.57724609375006,47.239111328125034],[38.48476562500005,47.17553710937502],[38.21435546875003,47.091455078124966],[38.205859375000074,47.13559570312498],[38.20136718750004,47.17524414062498],[38.22119140624997,47.21274414062498],[38.26533203125009,47.23696289062502],[38.28076171874997,47.259033203125],[38.28076171874997,47.276660156250045],[38.24101562500002,47.28769531249998],[38.20800781249997,47.29653320312499],[38.20136718750004,47.32080078124997],[38.21240234374997,47.34277343749999],[38.243261718750055,47.373681640624994],[38.2565429687501,47.40893554687497],[38.25878906250003,47.47954101562499],[38.28740234375007,47.559179687500034],[38.36884765625004,47.609960937500006],[38.51093750000003,47.622412109375034],[38.640625,47.66591796875002],[38.71894531250004,47.71411132812497],[38.82226562499997,47.83701171874998],[38.90029296875005,47.85512695312502],[39.0578125000001,47.848486328125006],[39.158496093750074,47.83740234375005],[39.39101562499999,47.83374023437502],[39.658496093750074,47.84121093750002],[39.7359375,47.844824218750055],[39.778710937500044,47.88754882812506],[39.77578125,47.964453125],[39.81396484375003,48.03530273437505],[39.88505859375002,48.168359374999966],[39.96103515625006,48.23793945312502],[39.95791015625005,48.26889648437503],[39.91816406250003,48.28193359375001],[39.866308593750006,48.288427734375],[39.84746093750002,48.30278320312502],[39.849902343750074,48.331933593749994],[39.88984375000004,48.360449218750034],[39.882617187500074,48.41909179687499],[39.857519531250006,48.484228515625034],[39.8356445312501,48.54277343749996],[39.76542968750002,48.571875],[39.64472656250009,48.59121093749996],[39.67041015625002,48.662451171875006],[39.70458984375002,48.739355468750034],[39.75585937500003,48.782080078125034],[39.792871093749994,48.807714843750034],[39.90410156250002,48.79375],[39.98447265625006,48.80737304687505],[40.00361328125004,48.82207031250002],[39.989160156249994,48.851416015625034],[39.86376953124997,48.877978515625045],[39.753320312499994,48.91445312500002],[39.705664062500006,48.95957031250006],[39.68652343749997,49.007910156250034],[39.75947265625004,49.03657226562501],[39.889746093750006,49.064062500000034],[39.976367187500074,49.12983398437501],[40.07001953125003,49.20029296874998],[40.10878906250005,49.25156250000003],[40.12832031250005,49.307226562500006],[40.12617187500004,49.36884765625004],[40.05781250000004,49.431542968750016],[40.05781250000004,49.49707031250006],[40.09492187500004,49.54267578125001],[40.080664062500006,49.576855468749955],[40.03066406250005,49.59672851562501],[39.95849609374997,49.59077148437504],[39.87685546875005,49.56767578125004],[39.780566406250074,49.57202148437503],[39.626562500000055,49.65068359374999],[39.462792968749994,49.72802734375003],[39.36845703125002,49.73066406250004],[39.3029296875001,49.74204101562503],[39.24599609375005,49.78193359374998],[39.21181640624999,49.833203124999955],[39.17480468750003,49.85595703124997],[39.1149414062501,49.84174804687501],[39.02773437499999,49.81840820312495],[38.91835937499999,49.82470703125],[38.77666015625002,49.88432617187499],[38.64775390625002,49.95288085937499],[38.55195312500004,49.95458984375],[38.45117187500003,49.964062499999976],[38.258593750000074,50.05234375],[38.2086914062501,50.05146484375001],[38.177539062500074,50.02539062500003],[38.16269531250006,49.954541015624976],[38.14677734375002,49.93940429687501],[38.1125,49.927832031250055],[38.046875,49.92001953125006],[37.95029296875006,49.964208984375006],[37.704199218750006,50.10908203125004],[37.60507812500006,50.214941406250006],[37.58232421875002,50.291845703125034],[37.501367187499994,50.340722656249966],[37.422851562499964,50.411474609375006],[37.343164062499994,50.417626953124994],[37.25488281250003,50.39497070312501],[37.1710937500001,50.36088867187499],[37.13125,50.35151367187504],[36.98847656250003,50.33955078124998],[36.75908203125002,50.291845703125034],[36.696386718750006,50.246240234374994],[36.61943359375007,50.209228515625],[36.55966796875006,50.23486328124997],[36.49980468750002,50.28046875000004],[36.3688476562501,50.29682617187498],[36.306054687499994,50.28046875000004],[36.2433593750001,50.31176757812503],[36.18945312499997,50.367822265624994],[36.11640625000009,50.408544921875006],[36.00781249999997,50.41967773437497],[35.890234375,50.43710937499998],[35.79619140625002,50.40576171874997],[35.67373046875005,50.34599609374998],[35.59111328125002,50.36875],[35.54550781250006,50.43999023437502],[35.48847656250004,50.459912109375004],[35.41162109375003,50.539697265624994],[35.39169921875006,50.610937500000034],[35.41162109375003,50.64223632812502],[35.4401367187501,50.682080078124955],[35.4401367187501,50.72768554687502],[35.41738281250005,50.76757812499997],[35.38320312499999,50.79892578125006],[35.34609375,50.90429687500003],[35.31474609375001,50.949902343749976],[35.30908203125003,50.98691406249998],[35.33476562500002,51.02114257812502],[35.31191406250005,51.043896484374955],[35.26914062500006,51.04677734375002],[35.19804687500002,51.043896484374955],[35.158105468749994,51.06098632812498],[35.11533203125006,51.12084960937499],[35.092578125000074,51.18066406250003],[35.0640625,51.203417968750045],[34.99023437499997,51.20175781250006],[34.86855468749999,51.18920898437499],[34.76035156250006,51.16933593750002],[34.71230468750005,51.17221679687498],[34.616796875,51.203125],[34.491015625000074,51.23706054687506],[34.234179687500074,51.24379882812499],[34.21386718750003,51.25537109375006],[34.22841796875005,51.27685546875],[34.280664062499994,51.311669921874966],[34.275,51.340185546875006],[34.229882812499994,51.36323242187501],[34.20654296875003,51.419921875],[34.20927734375002,51.48408203125001],[34.20087890625004,51.553808593750006],[34.14677734375002,51.607958984375045],[34.11542968750004,51.64497070312501],[34.12109375000002,51.67915039062498],[34.239160156249994,51.69223632812506],[34.37929687500005,51.71650390625004],[34.40273437499999,51.74150390624996],[34.397851562499994,51.78041992187499],[34.113085937500074,51.979638671874994],[34.01533203125004,52.15595703125004],[33.92207031250003,52.25146484375003],[33.81884765624997,52.315625],[33.735253906249994,52.34477539062504],[33.61337890625006,52.33261718750006],[33.4518554687501,52.33378906250002],[33.28710937500002,52.35356445312496],[33.14843750000003,52.340429687500034],[32.899707031250074,52.25634765625006],[32.806445312500074,52.252636718750004],[32.64541015625005,52.27910156249999],[32.507910156250006,52.30854492187504],[32.435449218749994,52.307226562500034],[32.39130859375004,52.29482421874999],[32.36298828125003,52.272119140624994],[32.28281250000006,52.114013671875],[32.21679687500003,52.08295898437498],[32.12226562500004,52.05058593749996],[32.041601562500006,52.04501953124998],[31.973828125000097,52.04663085937506],[31.87558593750006,52.070898437500034],[31.782421875000097,52.09941406249995],[31.763378906250093,52.10107421875003],[31.758593750000014,52.125830078125034],[31.690625,52.22065429687498],[31.649902343749968,52.26220703125],[31.601562500000025,52.284814453124994],[31.577343750000036,52.31230468749999],[31.57656250000005,52.42602539062497],[31.585546875,52.532470703125],[31.615917968750097,52.546191406250045],[31.526171875000017,52.633007812499955],[31.51943359375005,52.69873046875003],[31.563476562499968,52.73144531250003],[31.56484375,52.75922851562501],[31.53515624999997,52.798242187499966],[31.44277343749999,52.86181640625003],[31.35302734374997,52.93344726562498],[31.295117187500093,52.98979492187499],[31.258789062499968,53.01669921875006],[31.302929687500097,53.060888671875],[31.364550781250017,53.13896484375002],[31.388378906250093,53.18481445312503],[31.41787109375005,53.196044921875],[31.56298828124997,53.20249023437498],[31.668261718750017,53.20092773437503],[31.74746093750005,53.18417968749998],[31.777441406250063,53.146875],[31.849707031250006,53.106201171875],[32.05546875000002,53.08945312500006],[32.14199218750005,53.091162109375034],[32.2506835937501,53.128369140624976],[32.42626953124997,53.21059570312505],[32.46933593750006,53.270312500000045],[32.578027343749994,53.31240234374999],[32.644433593749994,53.32890624999998],[32.70429687500004,53.33632812499999],[32.71025390625001,53.37143554687503],[32.70644531250005,53.41943359375003],[32.6857421875001,53.44814453125002],[32.469628906249994,53.546972656250006],[32.44238281249997,53.579248046874994],[32.425195312499994,53.617285156250034],[32.45097656250002,53.6533203125],[32.45019531249997,53.69291992187499],[32.20039062500004,53.78125],[31.99218750000003,53.796875],[31.820800781249968,53.79194335937498],[31.754199218750017,53.81044921875002],[31.783007812500014,53.85498046875005],[31.825292968750006,53.93500976562501],[31.83779296874999,54.00078124999998],[31.82597656250007,54.030712890624955],[31.79199218749997,54.05590820312503],[31.628417968749968,54.111181640625],[31.403613281250017,54.195947265624966],[31.29912109375002,54.29169921875001],[31.245507812500048,54.391650390625045],[31.184765625000093,54.452978515625],[31.074804687500063,54.491796875],[31.081933593749998,54.51708984375003],[31.154882812500063,54.61093750000003],[31.152148437500017,54.625341796875034],[31.12128906250004,54.64848632812496],[30.98417968750007,54.69589843750003],[30.79882812499997,54.78325195312499],[30.79101562499997,54.806005859375],[30.80449218750007,54.8609375],[30.829882812500014,54.91499023437498],[30.86679687500006,54.94072265624999],[30.977734375000097,55.05048828124998],[30.977734375000097,55.08779296875002],[30.958886718749994,55.13759765625005],[30.877441406250025,55.223437500000045],[30.814453124999968,55.27871093750002],[30.810546874999968,55.306982421875006],[30.82099609375004,55.330273437499955],[30.86181640625003,55.36040039062496],[30.900585937500097,55.397412109374955],[30.908789062500002,55.525341796874976],[30.906835937500063,55.57001953125004],[30.88222656249999,55.59638671874998],[30.855957031249975,55.607519531250034],[30.80078125000003,55.60112304687498],[30.72167968749997,55.62211914062499],[30.662304687500036,55.65546875000004],[30.625585937500006,55.666259765625],[30.586718750000014,55.700292968750006],[30.47539062500007,55.76879882812503],[30.45625,55.78681640624998],[30.23359375000004,55.84521484375006],[30.04267578125004,55.83642578125003],[29.93701171874997,55.84526367187498],[29.881640625000077,55.83232421875002],[29.82392578125004,55.79511718749998],[29.74414062499997,55.770410156249994],[29.684570312499968,55.76972656249995],[29.630078125000097,55.751171874999976],[29.482226562500074,55.6845703125],[29.41298828124999,55.72485351562505],[29.353417968750048,55.784375],[29.373144531250066,55.83471679687506],[29.39794921874997,55.88105468749998],[29.39609375,55.912207031250034],[29.375,55.93872070312499],[29.283007812500077,55.967871093750006],[29.087402343749996,56.02114257812502],[29.03173828125003,56.02177734374996],[28.94746093750001,56.002099609375044],[28.79472656250007,55.94257812499998],[28.740820312500002,55.95537109375001],[28.69082031250005,56.00263671874998],[28.636914062500065,56.06176757812503],[28.563964843750057,56.09199218749998],[28.407031250000045,56.089013671874994],[28.39208984375003,56.08671875],[28.31630859375005,56.05253906250002],[28.284277343750006,56.055908203125],[28.14794921875003,56.14291992187503],[28.173339843750053,56.19033203125002],[28.20205078125002,56.26040039062499],[28.191699218750045,56.31557617187505],[28.169238281250014,56.38686523437499],[28.110839843749996,56.51069335937501],[28.103125,56.54570312500004],[28.00751953125001,56.59985351562506],[27.99160156250005,56.64531249999999],[27.941406250000057,56.70371093749998],[27.89208984375003,56.741064453125034],[27.88154296875001,56.82416992187501],[27.848632812500057,56.85341796875002],[27.806054687499994,56.867089843750044],[27.655664062499994,56.84321289062498],[27.639453125000074,56.84565429687504],[27.71113281250004,56.97807617187502],[27.717382812500063,57.05463867187498],[27.762792968750063,57.13510742187503],[27.81455078125003,57.16689453125002],[27.83027343750004,57.19448242187505],[27.83828125000008,57.247705078124966],[27.828613281249968,57.293310546875006],[27.796875,57.31694335937504],[27.672753906250023,57.36811523437498],[27.538671875000063,57.429785156250034],[27.51113281250005,57.508154296875006],[27.469726562500053,57.52402343750003],[27.35195312500005,57.528125],[27.354296875000074,57.55029296874998],[27.371777343749983,57.61254882812503],[27.4,57.66679687499998],[27.491992187500045,57.72495117187503],[27.514746093749977,57.76420898437501],[27.542089843750063,57.7994140625],[27.75283203125008,57.841015624999955],[27.776953125000034,57.85673828124997],[27.778515625000068,57.87070312500007],[27.76875,57.88413085937503],[27.721972656250017,57.90546875000004],[27.673437499999974,57.93461914062501],[27.644140625000063,58.013916015625],[27.571093750000017,58.1380859375],[27.502441406250057,58.22133789062499],[27.48779296875,58.270068359375045],[27.505566406250065,58.326269531250034],[27.53007812499999,58.381494140625016],[27.531347656250006,58.43525390624996],[27.427050781250074,58.733056640624966],[27.434179687500002,58.78725585937499],[27.464453125000034,58.84130859375],[27.513085937499994,58.88627929687502],[27.62177734375004,58.94497070312496],[27.757617187500074,59.05200195312503],[27.849511718750048,59.19267578124999],[27.89765625000001,59.277636718750074],[27.93818359375001,59.297021484375016],[28.016406250000045,59.301708984374976],[28.046093750000068,59.32783203124998],[28.061328125000045,59.34326171875003],[28.128320312500023,59.357568359374994],[28.15107421875004,59.374414062499966],[28.13300781250001,59.40307617187503],[28.06582031250008,59.453173828125045],[28.0125,59.484277343749966],[28.063964843750053,59.554003906250045],[28.046289062499994,59.64716796875003],[28.013964843750074,59.724755859375016],[28.05800781250008,59.781542968750045],[28.13115234375007,59.78652343749999],[28.2125,59.72465820312501],[28.33457031250003,59.69252929687502],[28.42373046875008,59.73408203124998],[28.453906250000017,59.81425781250004],[28.51816406250003,59.84956054687495],[28.603906250000023,59.81806640625004],[28.747656249999974,59.80668945312502],[28.86689453125004,59.811914062500016],[28.947265625000053,59.82875976562499],[28.981542968750038,59.854785156250045],[29.013378906250036,59.90156249999998],[29.0791015625,59.96098632812502],[29.147265625000042,59.999755859375],[29.669726562500074,59.9556640625],[30.12255859374997,59.87358398437507],[30.156835937500002,59.90429687499999],[30.172656250000017,59.95712890625003],[30.059960937499994,60.00258789062496],[29.976757812500097,60.0263671875],[29.872265625000043,60.120849609375],[29.721191406249968,60.19531249999997],[29.569335937499968,60.20185546874998],[29.37041015625002,60.17592773437502],[29.069140625000017,60.19145507812499],[28.812695312500008,60.33154296875],[28.643164062500006,60.37529296875004],[28.52226562500007,60.48295898437504],[28.49160156250005,60.540136718750055],[28.62246093750005,60.49160156250002],[28.640332031250068,60.542871093749994],[28.650585937500008,60.61098632812503],[28.57783203125004,60.652539062499955],[28.512792968750006,60.67729492187501],[28.179296875,60.57099609375003],[27.797656250000074,60.53613281250003],[28.151953125000034,60.74584960937502],[28.40742187500004,60.89692382812501],[28.455078125000057,60.919628906250004],[28.568164062500017,60.960205078125],[28.662890625000045,61.00283203124999],[28.739062500000014,61.05874023437502],[28.992968750000042,61.16904296875],[29.251660156250097,61.28779296874996],[29.492382812500097,61.44423828125002],[29.57939453125007,61.49345703125001],[29.690136718750036,61.54609375],[29.933203125,61.71157226562496],[30.00996093750004,61.757373046875045],[30.306445312500017,61.964843750000064],[30.47968750000004,62.06821289062506],[30.565625,62.127587890624994],[30.935742187500093,62.32377929687499],[31.18671875000004,62.48139648437503],[31.28564453125003,62.567822265624955],[31.382421875,62.691650390624964],[31.437304687500014,62.77612304687503],[31.533984375000017,62.885400390624994],[31.53652343749999,62.921630859375036],[31.509277343750025,62.95532226562503],[31.437011718749968,63.007714843749966],[31.336718750000074,63.06806640625001],[31.247460937499994,63.141894531250045],[31.180859375000093,63.208300781250074],[30.974804687500036,63.300634765625034],[30.65527343749997,63.41748046875006],[30.41855468750006,63.50405273437502],[30.05537109375004,63.689013671875045],[29.991503906250074,63.73515625000002],[30.004101562500093,63.747314453125],[30.210253906250074,63.80332031250006],[30.415332031250017,63.94750976562503],[30.50390625000003,64.02060546875],[30.526074218750097,64.077294921875],[30.527929687500006,64.14111328125003],[30.513769531250002,64.2],[30.487890625000063,64.2365234375],[30.390625,64.28242187499995],[30.108105468750036,64.36611328125005],[30.041894531250048,64.44335937499997],[29.986621093750077,64.52426757812503],[29.98554687500004,64.55771484375],[30.12011718749997,64.64462890625002],[30.126171875000097,64.6880859375],[30.110253906250048,64.732568359375],[30.072851562500063,64.76503906250005],[29.783203125000025,64.80429687500006],[29.70166015625003,64.84575195312505],[29.6375,64.911767578125],[29.604199218750036,64.968408203125],[29.60087890625007,65.001953125],[29.62246093750005,65.03950195312501],[29.720019531250014,65.08032226562497],[29.81083984375007,65.10791015625],[29.826953125000017,65.14506835937502],[29.826171874999968,65.18530273437504],[29.81054687499997,65.204736328125],[29.629687500000017,65.223876953125],[29.61240234375001,65.234765625],[29.608007812500006,65.248681640625],[29.617187500000025,65.26533203125],[29.714843750000025,65.33696289062505],[29.72802734374997,65.47343750000003],[29.819433593750006,65.56875],[29.715917968750063,65.62456054687502],[29.723925781250014,65.634375],[29.882617187500017,65.66362304687505],[30.029003906250097,65.67070312499999],[30.0953125,65.68168945312502],[30.102734375000093,65.72626953125004],[30.0875,65.78652343749995],[29.936621093750002,66.02294921875],[29.903417968750006,66.091064453125],[29.80351562500007,66.17705078125002],[29.72070312499997,66.23486328125],[29.67089843749997,66.27612304687504],[29.59072265625005,66.35683593749997],[29.544335937499998,66.43969726562497],[29.464355468749968,66.53217773437497],[29.371191406250002,66.61704101562506],[29.29326171875002,66.69550781249994],[29.093066406250017,66.84921875],[29.066210937500042,66.89174804687497],[29.06904296875001,66.93022460937499],[29.08701171875003,66.97094726562503],[29.243359375000093,67.09658203125005],[29.38769531249997,67.201416015625],[29.57226562500003,67.324365234375],[29.750585937500002,67.426416015625],[29.94121093750007,67.54746093749998],[29.988085937500014,67.66826171874999],[29.97919921875004,67.68857421875003],[29.821582031250017,67.75400390625003],[29.524218750000017,67.92910156250001],[29.343847656250006,68.06186523437506],[29.06298828125,68.11796875000002],[28.685156250000034,68.189794921875],[28.560156250000063,68.35136718750007],[28.470703125000053,68.48837890625],[28.479296875000014,68.53764648437499],[28.752050781250002,68.77143554687501],[28.777636718750042,68.81381835937503],[28.77285156250005,68.84003906249995],[28.744824218750036,68.85644531250001],[28.70595703125002,68.86552734375002],[28.453515625000023,68.87226562499994],[28.414062500000057,68.90415039062506],[28.566015625,68.92822265624999],[28.692187500000045,68.96103515625],[28.89892578124997,69.00966796874997],[28.96582031250003,69.02197265625],[29.11855468750005,69.049951171875],[29.170898437500053,69.07153320312504],[29.20996093750003,69.097021484375],[29.35302734375003,69.27060546875],[29.38828125,69.29814453125005],[29.83271484375004,69.36044921875003],[29.99404296874999,69.39248046874997],[30.087304687500048,69.43286132812501],[30.13183593749997,69.46425781250002],[30.163769531250093,69.501611328125],[30.18671875000004,69.54277343750005],[30.196484375000093,69.58056640625003],[30.159765625,69.62988281250003],[30.180175781249975,69.63583984375],[30.22753906250003,69.63378906250003],[30.379687500000017,69.58471679687497],[30.615429687500093,69.532568359375],[30.788867187500074,69.52851562499998],[30.86074218749999,69.53842773437503],[30.896679687500097,69.56123046874998],[30.922460937500002,69.605810546875],[30.924121093750017,69.65175781250005],[30.869726562500006,69.78344726562506],[31.049511718750036,69.76923828124998],[31.45273437500006,69.68959960937502],[31.546972656250063,69.69692382812498],[31.66621093750004,69.72099609375002],[31.78857421874997,69.81577148437498],[31.87939453125003,69.83198242187498],[31.997949218749994,69.80991210937502],[32.03056640625002,69.83530273437502],[31.969335937500063,69.91391601562496],[31.984570312500036,69.95366210937499],[32.39160156250003,69.86870117187502],[32.56542968749997,69.80649414062503],[32.94169921875002,69.75185546875],[33.00781249999997,69.72211914062498],[33.01259765625005,69.67050781250003],[32.99462890625003,69.62617187499998],[32.915039062499964,69.60170898437497],[32.75429687499999,69.605712890625],[32.17675781250003,69.67402343749995],[32.0915039062501,69.63256835937503],[32.1613281250001,69.59663085937501],[32.33056640625003,69.55424804687499],[32.37773437500002,69.47910156250003],[32.63681640625006,69.48945312500001],[32.88378906250003,69.46083984374997],[32.99980468750002,69.4701171875],[33.02099609374997,69.44560546875005],[32.94160156250004,69.38334960937497],[32.97890625000005,69.367333984375],[33.25585937499997,69.42773437499997],[33.38486328125006,69.44428710937495],[33.45429687500004,69.42817382812495],[33.46367187500002,69.378173828125],[33.41796875000003,69.31528320312498],[33.412988281249994,69.267431640625],[33.32773437500006,69.15185546874997],[33.196386718750006,69.11684570312505],[33.14121093750006,69.068701171875],[33.333398437500044,69.09819335937507],[33.43564453125,69.13037109375006],[33.627050781250006,69.28916015624998],[33.684375,69.31025390625001],[34.229394531250044,69.31313476562497],[34.35273437500004,69.30292968750004],[34.8639648437501,69.22807617187505],[35.00957031250002,69.22124023437497],[35.17587890625006,69.230810546875],[35.23320312500002,69.26557617187498],[35.28984375000002,69.27543945312502],[35.85791015625003,69.19174804687503],[36.618261718750006,69.00346679687505],[37.73056640625006,68.69213867187503],[38.35761718750009,68.41513671875],[38.43017578125002,68.35561523437504],[38.656835937500006,68.321875],[38.70556640624997,68.34472656250003],[38.83154296874997,68.32490234375001],[39.568945312500006,68.07172851562501],[39.82333984375006,68.05859374999999],[39.78974609375004,68.112158203125],[39.7462890625001,68.16220703124998],[39.80927734375003,68.15083007812497],[39.89560546875006,68.11450195312503],[40.035742187500006,68.015380859375],[40.206640625,67.94189453125003],[40.38066406250001,67.831884765625],[40.52578125,67.78969726562502],[40.65654296875001,67.77407226562505],[40.76630859375004,67.74301757812503],[40.96640625000006,67.71347656250003],[41.06093750000005,67.44418945312498],[41.13388671875,67.38603515625005],[41.13388671875,67.26694335937503],[41.26171875000003,67.21845703125001],[41.358789062499994,67.20966796874998],[41.35429687500002,67.12143554687503],[41.2755859375001,66.91430664062503],[41.18896484375002,66.82617187500003],[40.52158203125006,66.44663085937498],[40.10332031250002,66.29995117187502],[39.28906250000003,66.13203125000001],[38.65390625000006,66.06904296874994],[38.39755859375006,66.064453125],[37.900683593750074,66.09560546875005],[37.628222656250074,66.12958984374995],[37.294824218749994,66.22504882812495],[36.98369140625002,66.27255859375003],[36.76992187499999,66.29355468750006],[36.37343750000005,66.30229492187505],[35.51347656250002,66.39580078125002],[35.3639648437501,66.42866210937495],[34.82460937499999,66.61113281249997],[34.610253906249994,66.55961914062499],[34.48261718750004,66.55034179687505],[34.39609375,66.61318359374997],[34.43085937500003,66.62978515625],[34.4515625,66.651220703125],[34.14609375000006,66.70327148437502],[33.893652343750055,66.70673828125004],[33.75957031250002,66.75097656249997],[33.59541015625004,66.78461914062498],[33.52294921875003,66.76435546874995],[33.48203125,66.76455078125],[33.15019531250002,66.84394531250001],[33.00195312500003,66.90830078125006],[32.847558593749994,67.02153320312505],[32.88525390624997,67.0611328125],[32.93046875000001,67.08681640625002],[32.39990234375002,67.152685546875],[31.89531250000007,67.16142578125002],[31.983007812500002,67.12983398437498],[32.20156250000005,67.11323242187498],[32.340625,67.06787109374997],[32.50097656250003,67.00385742187498],[32.46367187500002,66.91630859374999],[32.68642578125005,66.82954101562501],[32.85732421875005,66.74692382812503],[32.86240234375,66.72138671874998],[32.92871093750003,66.70410156250003],[33.180566406249994,66.67993164062497],[33.22441406250002,66.60385742187503],[33.18291015625002,66.57387695312497],[33.217382812500006,66.53164062499997],[33.40527343750003,66.48427734375],[33.517675781250006,66.47138671874994],[33.65595703125004,66.44262695312506],[33.59326171874997,66.38457031250002],[33.47695312499999,66.346875],[33.36054687500004,66.32954101562501],[33.41582031250002,66.315625],[33.566699218750074,66.32099609374995],[34.112695312499994,66.225244140625],[34.39980468750005,66.12841796874997],[34.69179687500005,65.95185546874998],[34.78632812500009,65.86455078125003],[34.7931640625001,65.81635742187501],[34.77695312500006,65.76826171874998],[34.73476562499999,65.71630859375006],[34.71552734375003,65.66406249999997],[34.61572265624997,65.509912109375],[34.54414062500004,65.456689453125],[34.40644531250004,65.39575195312503],[34.535937500000074,65.2779296875],[34.6710937500001,65.168115234375],[34.803515625000074,64.98598632812502],[34.82714843749997,64.9126953125],[34.832617187500006,64.80019531250002],[34.95224609375006,64.75595703124998],[34.90546875000003,64.738671875],[34.858300781249994,64.70668945312497],[34.86953125,64.56000976562501],[35.03535156250004,64.44023437500005],[35.284082031249994,64.36254882812503],[35.43203125,64.34677734375],[35.64707031250006,64.37832031250005],[35.802050781250074,64.3353515625],[36.14648437499997,64.18901367187502],[36.30195312500004,64.034375],[36.3649414062501,64.00283203125002],[36.713769531249994,63.94506835937497],[36.975195312500006,63.909521484375],[37.37275390625004,63.81674804687503],[37.44218750000002,63.81337890624997],[37.635351562500006,63.893408203125],[37.96796875000009,63.94912109374999],[38.070800781249964,64.02583007812498],[38.0622070312501,64.09101562499994],[37.977148437500006,64.20703125000006],[37.953710937500006,64.32011718749999],[37.843554687500074,64.36630859375],[37.740625,64.39697265625003],[37.429589843749994,64.37358398437505],[37.28955078124997,64.37792968750006],[37.183691406250006,64.40849609375007],[37.04042968750005,64.48916015624997],[36.769335937500074,64.68525390624995],[36.6242187500001,64.75053710937502],[36.57871093750006,64.79096679687501],[36.52822265625005,64.84736328125004],[36.534570312499994,64.93862304687497],[36.65292968750006,64.93544921875002],[36.785937500000074,64.987158203125],[36.88281249999997,65.17236328124997],[37.050195312499994,65.19589843749998],[37.14082031250004,65.19428710937501],[37.528125,65.10825195312498],[38.009375,64.87875976562503],[38.11572265624997,64.85458984375],[38.2282226562501,64.85122070312502],[38.41210937499997,64.85708007812495],[38.441992187500006,64.8271484375],[38.540917968749994,64.79125976562497],[38.613085937500074,64.78666992187502],[39.05351562500002,64.71391601562502],[39.56738281249997,64.57055664062503],[39.7580078125001,64.57705078125002],[39.83300781249997,64.65639648437502],[39.84863281249997,64.69052734375006],[40.05781250000004,64.77075195312497],[40.2037109375,64.78403320312499],[40.40781250000006,64.75488281250003],[40.44492187500006,64.7787109375],[40.37539062499999,64.89628906250003],[40.28125,64.99809570312502],[40.142675781250006,65.06328125000003],[39.89648437499997,65.25478515625],[39.7980468750001,65.34985351562499],[39.74912109375006,65.44794921874998],[39.781152343749994,65.53471679687499],[39.81650390625,65.59794921874999],[40.3278320312501,65.75170898437497],[40.512792968750006,65.84379882812499],[40.69160156250004,65.96342773437502],[40.77441406250003,65.98789062500003],[41.07607421875005,66.02109375000006],[41.4757812500001,66.12343750000002],[41.780859375,66.25932617187502],[42.08359375,66.46591796875],[42.21054687500006,66.51967773437502],[42.31367187500009,66.51474609375],[42.45078125000006,66.48242187499997],[42.60214843750006,66.42250976562501],[42.80654296875005,66.41132812499998],[43.005957031250006,66.42094726562507],[43.23320312500002,66.41552734375003],[43.550878906250006,66.32128906250003],[43.60332031250002,66.29121093750001],[43.653125,66.2509765625],[43.55039062500006,66.17338867187499],[43.54189453125005,66.12338867187503],[43.62392578125005,66.14672851562497],[43.7370117187501,66.15839843749995],[43.84375,66.14238281249999],[43.944140625000074,66.09868164062505],[44.01669921875,66.04975585937504],[44.10439453125005,66.00859374999999],[44.13242187500006,66.06455078125002],[44.14531250000002,66.11274414062498],[44.09716796874997,66.23505859375004],[44.22070312500003,66.407080078125],[44.31640624999997,66.481689453125],[44.48867187499999,66.67177734375002],[44.43710937500006,66.79462890624998],[44.429296875000055,66.93774414062503],[44.403906250000055,67.00419921875005],[44.29179687500002,67.09965820312505],[44.07441406250004,67.16733398437498],[43.85537109375005,67.18862304687497],[43.7824218750001,67.25449218749998],[43.79570312500002,67.32958984375],[43.85634765625005,67.43930664062506],[44.036425781250074,67.67065429687503],[44.22539062500002,67.99560546874997],[44.231542968750006,68.07124023437501],[44.21386718749997,68.11259765624999],[44.22646484375005,68.15444335937498],[44.20468750000006,68.25375976562498],[44.1691406250001,68.32709960937501],[43.4040039062501,68.60854492187497],[43.35800781250006,68.63579101562502],[43.33320312500004,68.67338867187502],[43.41328125000004,68.68173828125002],[43.471972656250074,68.67983398437502],[44.04804687500004,68.54882812499997],[44.17529296875003,68.54174804687503],[45.078125,68.57817382812499],[45.51943359375005,68.54653320312502],[45.891992187499994,68.47968750000001],[46.15839843750009,68.291357421875],[46.42968750000003,68.11884765625004],[46.68359374999997,67.970458984375],[46.69042968750003,67.84882812500001],[46.42890625000004,67.82368164062504],[46.17421875,67.81816406250005],[45.52871093750005,67.75756835937496],[45.374121093750006,67.6888671875],[44.93945312499997,67.47744140625002],[44.90214843750002,67.41313476562505],[44.93945312499997,67.35078124999995],[45.13886718750004,67.28471679687502],[45.56220703125004,67.18559570312507],[45.752539062500006,66.98916015625002],[45.88535156250006,66.891064453125],[45.98603515625004,66.853125],[46.08398437500002,66.843505859375],[46.29775390625005,66.84282226562505],[46.44853515625002,66.818994140625],[46.49238281250009,66.80019531249997],[46.55234375000006,66.818994140625],[46.690820312499994,66.82553710937498],[47.49648437499999,66.929833984375],[47.65585937500006,66.97592773437498],[47.70908203125006,67.04501953125003],[47.76806640625003,67.27563476562503],[47.83925781250005,67.355712890625],[47.90820312499997,67.4546875],[47.88261718750007,67.51533203125001],[47.87470703125004,67.58417968749998],[48.27871093750005,67.65039062499997],[48.65380859374997,67.69526367187498],[48.83320312500004,67.681494140625],[48.87792968749997,67.73134765625005],[48.76269531249997,67.827001953125],[48.69570312499999,67.87421875000001],[48.75429687500005,67.89594726562501],[48.840625,67.8697265625],[48.95390625000002,67.85380859375003],[49.15527343750003,67.87041015625005],[49.93125,68.06513671875001],[50.233203125000074,68.17534179687499],[50.41406250000003,68.21835937500006],[50.6994140625001,68.31772460937503],[50.83886718749997,68.34995117187503],[51.078515625000044,68.36333007812502],[51.33613281250004,68.40244140624998],[51.61669921874997,68.47631835937503],[51.9947265625,68.53876953124995],[52.05566406249997,68.54130859375005],[52.12880859375005,68.53203125000002],[52.28535156250004,68.459375],[52.227441406249994,68.418603515625],[52.18349609374999,68.37426757812503],[52.259179687500044,68.35092773437496],[52.32226562500003,68.339697265625],[52.3966796875001,68.35170898437505],[52.475,68.38212890625],[52.66972656250002,68.42675781249997],[52.72265624999997,68.484033203125],[52.64765625000004,68.50615234375007],[52.550097656250074,68.59243164062497],[52.43505859375003,68.61020507812503],[52.34404296875002,68.60815429687497],[52.68359375000003,68.731201171875],[53.41289062500001,68.91254882812497],[53.80195312500004,68.9958984375],[54.185839843750074,69.00332031250002],[54.49121093750003,68.992333984375],[54.376269531250074,68.96474609374997],[53.87441406250005,68.926611328125],[53.79765625000007,68.90747070312503],[53.79824218749999,68.88466796875],[53.91953125,68.87124023437501],[53.970605468749994,68.84428710937502],[53.92929687500006,68.811865234375],[53.891210937500006,68.80151367187501],[53.83388671875005,68.70893554687497],[53.75888671875006,68.63398437499998],[53.9176757812501,68.53696289062503],[53.9308593750001,68.43554687499997],[53.82949218750005,68.38266601562503],[53.69003906250006,68.4025390625],[53.566699218750074,68.36708984374995],[53.342578125000074,68.34321289062501],[53.29335937499999,68.31166992187497],[53.260546875000074,68.26748046875002],[53.403125,68.2568359375],[53.51513671874997,68.25966796875002],[53.91367187500006,68.231201171875],[53.967871093750006,68.22734375000002],[54.09921875,68.259033203125],[54.232910156249964,68.26630859374995],[54.39394531250005,68.27509765624998],[54.476171875,68.29414062499995],[54.5612304687501,68.273046875],[54.71796875000004,68.1841796875],[54.86132812500003,68.20185546874998],[54.9230468750001,68.37382812500002],[55.15087890624997,68.48002929687499],[55.418066406250006,68.56782226562501],[55.67529296875003,68.57587890624998],[55.92460937500002,68.63730468750006],[56.04365234375004,68.64887695312501],[56.275683593750074,68.62407226562502],[56.62021484375006,68.61904296874997],[56.909375,68.56669921875005],[57.126855468749994,68.55400390625005],[57.44433593750002,68.64150390625001],[58.17304687500003,68.88974609375006],[58.23701171875005,68.83393554687495],[58.35390625000005,68.91621093750004],[58.918945312499964,69.00380859375002],[59.0573242187501,69.00605468750004],[59.059863281250074,68.97255859374997],[59.11015625000001,68.89628906250005],[59.22041015625009,68.84960937500004],[59.37050781250005,68.73837890625003],[59.29833984374997,68.70844726562498],[59.222558593749994,68.69130859375005],[59.11230468750002,68.61630859375003],[59.099023437500044,68.4443359375],[59.31074218750004,68.40029296875],[59.60429687500008,68.351123046875],[59.725683593750006,68.35161132812502],[59.82753906250006,68.38032226562501],[59.858789062500044,68.39604492187502],[59.897363281249994,68.42192382812505],[59.92285156250003,68.471337890625],[59.941406249999964,68.51049804687497],[59.865136718749994,68.60493164062503],[59.89599609374997,68.70634765624999],[60.160253906250055,68.69951171875002],[60.48916015624999,68.72895507812498],[60.637695312499964,68.78701171875],[60.81513671875009,68.89521484375001],[60.933593749999964,68.986767578125],[60.85859375000003,69.14550781250003],[60.66455078124997,69.11025390625002],[60.337304687499994,69.45703124999997],[60.17060546875004,69.59091796875],[60.276464843750006,69.65263671875005],[60.55869140625006,69.69233398437495],[60.81298828125003,69.821142578125],[60.90908203125005,69.84711914062495],[61.01591796875002,69.85146484374997],[61.77050781250003,69.76303710937498],[62.63125,69.74311523437501],[63.36142578125006,69.67529296875001],[64.19042968750003,69.53466796875],[64.59218750000005,69.43564453124998],[64.928515625,69.32539062499998],[64.89628906250002,69.247802734375],[65.03154296875002,69.26982421875005],[65.32675781250006,69.20136718750004],[65.5279296875,69.17343750000003],[65.73574218750005,69.13232421875],[65.81269531250008,69.077001953125],[66.08476562500002,69.03632812499998],[66.365625,68.961328125],[66.41611328125,68.94785156249998],[66.7564453125,68.89199218749997],[67.00244140625001,68.87358398437505],[67.14921875000007,68.75395507812502],[67.63964843749997,68.57929687499995],[67.73076171875007,68.513671875],[68.15693359375004,68.40366210937506],[68.37119140625006,68.31425781250005],[68.50419921875007,68.34843749999999],[68.82949218749998,68.56743164062502],[69.02431640625,68.81796875],[69.14052734375005,68.95063476562501],[68.92441406250006,68.956201171875],[68.7628906250001,68.9173828125],[68.6595703125,68.927392578125],[68.54277343750002,68.96708984374999],[68.35507812500006,69.06757812499995],[68.11738281250004,69.23623046875001],[68.07304687500007,69.42080078124997],[68.00585937499997,69.48002929687505],[67.77431640625005,69.52998046875001],[67.62412109375,69.58442382812501],[67.06445312500001,69.69370117187498],[66.9640625000001,69.65556640625002],[66.93417968750006,69.5966796875],[66.89667968750004,69.55380859374996],[66.84023437499998,69.60917968749999],[66.80400390625002,69.65922851562503],[66.80292968750004,69.74013671875001],[66.83222656250004,69.84218750000002],[66.92636718750006,70.0142578125],[67.0690429687501,70.00561523437499],[67.14443359375,70.03061523437503],[67.23925781250001,70.10805664062502],[67.19746093750004,70.171630859375],[67.14648437499997,70.21992187499998],[67.1568359375,70.29511718750001],[67.246875,70.50009765625003],[67.28476562500006,70.73872070312498],[67.21152343750006,70.79843749999998],[67.143359375,70.83754882812502],[66.82246093750004,70.79736328125003],[66.70224609375006,70.81850585937497],[66.67519531250005,70.86469726562498],[66.66611328125006,70.90058593750001],[66.75878906250003,70.96235351562498],[66.8470703125,71.06372070312503],[66.69257812500004,71.04169921874998],[66.63964843749997,71.08139648437498],[66.76806640624997,71.139892578125],[66.91757812500006,71.28237304687497],[67.27421875000007,71.34785156249998],[67.54179687500002,71.41201171875],[67.959375,71.54838867187499],[68.2692382812501,71.6828125],[68.4694335937501,71.85263671874998],[68.60742187499996,72.01274414062499],[68.82968750000006,72.39155273437497],[69.03906249999997,72.66992187500003],[69.39140625000007,72.95551757812495],[69.61181640625003,72.98193359375],[69.69433593749997,72.9775390625],[69.70898437500003,72.95639648437503],[69.6587890625,72.93183593750001],[69.64511718750006,72.89755859375006],[69.73828124999997,72.88496093749998],[69.8875,72.88256835937503],[70.17216796875007,72.90117187499999],[70.65537109374999,72.890380859375],[71.5001953125001,72.91367187500003],[71.61699218750006,72.902099609375],[71.92958984375,72.819677734375],[72.1009765625,72.82900390625002],[72.44638671875,72.79033203125005],[72.63378906250003,72.74448242187503],[72.812109375,72.69140624999997],[72.78740234375002,72.48295898437505],[72.75292968750003,72.3431640625],[72.62441406250005,72.079443359375],[72.57412109374998,72.01254882812506],[72.375,71.82163085937506],[72.27949218750004,71.69550781250004],[72.12968750000007,71.60917968750002],[71.91201171875005,71.54794921874998],[71.884375,71.511376953125],[71.86728515625,71.457373046875],[72.07929687500004,71.30668945312503],[72.58134765625007,71.15112304687497],[72.70449218750005,70.96323242187498],[72.73164062500004,70.82285156249998],[72.7,70.45732421875002],[72.65332031249997,70.40341796875005],[72.5619140625,70.34555664062498],[72.4694335937501,70.27495117187499],[72.52968750000005,70.172509765625],[72.59941406250002,69.793212890625],[72.615625,69.48403320312497],[72.55732421875004,69.37841796875006],[72.52705078125004,69.15424804687504],[72.52734374999997,69.08051757812501],[72.5767578125,68.96870117187498],[72.6783203125,68.87485351562502],[72.81191406250004,68.81523437500007],[73.19072265625007,68.706787109375],[73.5480468750001,68.57451171875005],[73.57343750000004,68.53261718750005],[73.59169921875005,68.48188476562501],[73.465234375,68.43076171874998],[73.26640625000002,68.29448242187502],[73.139453125,68.18134765624998],[73.12939453124997,68.09091796875003],[73.17304687500008,67.973046875],[73.1521484375,67.86503906250002],[73.06679687500005,67.76694335937499],[72.94873046874997,67.69624023437501],[72.59433593750006,67.58696289062502],[71.84746093750002,67.00761718750005],[71.6681640625001,66.93969726562497],[71.36523437500003,66.96152343749998],[71.44892578125004,66.87895507812502],[71.551171875,66.76044921874995],[71.53955078125003,66.68310546874999],[71.3419921875001,66.68671875000004],[71.065625,66.60449218749997],[70.93945312499997,66.54814453125005],[70.72490234375007,66.51943359374995],[70.56142578125005,66.54868164062498],[70.38281249999997,66.60249023437501],[70.40888671875004,66.64760742187497],[70.4425781250001,66.66826171875002],[70.56796875000006,66.70087890624998],[70.69072265625002,66.74531249999998],[70.63076171875005,66.75419921875002],[70.57910156250003,66.753759765625],[70.44394531249999,66.69731445312507],[70.2833984375001,66.68579101562503],[70.09375,66.75434570312495],[69.9486328125,66.82998046875],[69.8771484375001,66.84545898437504],[69.74042968750004,66.81459960937497],[69.21777343749997,66.82861328125],[69.07871093750006,66.81591796874997],[69.01347656250002,66.78833007812503],[69.05117187500005,66.766357421875],[69.09111328125002,66.72358398437498],[69.1439453125,66.64072265624998],[69.19433593749997,66.57866210937505],[69.41201171875,66.51074218749997],[69.70097656250006,66.48457031249998],[69.98242187499997,66.40141601562499],[70.33945312500006,66.34238281250005],[71.14550781250003,66.36665039062501],[71.35800781250006,66.35942382812505],[71.565625,66.33374023437497],[71.91699218749997,66.24672851562502],[72.06757812500004,66.25332031250002],[72.32158203125002,66.33212890625],[72.3839843750001,66.50654296875001],[72.4173828125,66.56079101562504],[73.34160156250007,66.80683593749998],[73.51357421875,66.86108398437503],[73.79208984375,66.9953125],[73.88330078125003,67.0849609375],[73.98623046875005,67.32768554687505],[74.07451171875007,67.41411132812499],[74.67607421875007,67.69462890625002],[74.76953124999997,67.76635742187497],[74.78730468750004,67.89750976562503],[74.77822265625,67.98593750000003],[74.74267578125003,68.07353515625005],[74.63242187500006,68.21831054687505],[74.51123046874997,68.303076171875],[74.39140625000007,68.42060546874995],[74.48095703125003,68.65888671875001],[74.57958984375003,68.751220703125],[75.12460937500006,68.86171875000002],[75.5895507812501,68.90117187499999],[76.10751953125006,68.975732421875],[76.3160156250001,68.99150390624997],[76.45917968750004,68.97827148437497],[76.60576171875007,68.89760742187497],[76.73505859375004,68.77690429687507],[77.11171875000005,68.59619140625003],[77.2384765625001,68.46958007812498],[77.26103515625007,68.31557617187497],[77.2484375,67.94101562500003],[77.17441406250012,67.77851562499998],[77.32509765624998,67.73564453125005],[77.39560546875006,67.69868164062495],[77.57919921875006,67.6439453125],[77.67509765625007,67.58959960937503],[77.77158203125006,67.57026367187501],[77.98554687500004,67.55917968750006],[78.5895507812501,67.57846679687498],[78.92246093750006,67.58911132812503],[78.88759765625,67.61313476562503],[78.83906250000004,67.63120117187498],[78.55908203125003,67.63911132812498],[78.16123046875005,67.678369140625],[77.58828125000004,67.75190429687498],[77.52011718750012,67.90961914062495],[77.5359375,68.00766601562503],[77.66484375,68.19038085937495],[77.75683593750003,68.22236328124998],[77.86826171875006,68.234716796875],[77.99511718749996,68.25947265624998],[77.9586914062501,68.37705078125006],[77.90683593750012,68.482275390625],[77.7852539062501,68.63046874999998],[77.65068359375007,68.90302734375001],[77.46630859374997,68.90512695312498],[77.32832031250004,68.95864257812497],[76.64492187500005,69.11738281249998],[76.00097656249997,69.23505859374998],[75.56113281250006,69.251806640625],[75.42001953125,69.23862304687498],[75.05351562500002,69.11630859375003],[74.81484375,69.09057617187503],[74.36259765625007,69.144580078125],[73.97744140625,69.11464843750005],[73.83603515625006,69.143212890625],[73.77568359375002,69.19824218750001],[73.89091796875006,69.41796875000003],[73.8327148437501,69.50390625000003],[73.66328125000004,69.61708984375],[73.56015625,69.70722656249998],[73.578125,69.80297851562503],[73.83017578125,70.17568359375002],[73.93740234375005,70.27285156250001],[74.20673828125008,70.445458984375],[74.34335937500006,70.57871093749998],[74.3109375,70.65361328125005],[73.73154296875,71.06870117187506],[73.57656250000004,71.21650390624995],[73.50722656250005,71.26352539062503],[73.36523437499997,71.31977539062495],[73.15048828125,71.38520507812495],[73.08623046875006,71.44492187500005],[73.67177734375,71.84506835937502],[73.93945312499997,71.91474609375001],[74.31123046875004,71.95781249999999],[74.48906250000007,71.99702148437498],[74.80410156250004,72.07739257812503],[74.99218749999997,72.14482421874999],[75.05322265624997,72.19921874999997],[75.08994140624999,72.26313476562504],[75.09707031250005,72.42065429687497],[75.0603515625,72.54877929687495],[75.00800781250008,72.61943359375005],[74.896875,72.71010742187497],[74.78681640625004,72.811865234375],[74.86494140625008,72.83842773437499],[74.94218750000002,72.85380859375002],[75.15244140625,72.85273437499998],[75.3693359375001,72.796630859375],[75.47490234375007,72.68500976562501],[75.60351562499997,72.58105468750006],[75.603125,72.51215820312495],[75.59140625,72.45722656249995],[75.64433593750007,72.38227539062494],[75.6911132812501,72.35],[75.74140625000004,72.29624023437503],[75.69443359375006,72.25351562500003],[75.64433593750007,72.23232421874997],[75.55019531250005,72.17080078124997],[75.39453124999997,71.98320312500002],[75.273828125,71.95893554687495],[75.2474609375,71.81337890624997],[75.50322265625006,71.65463867187506],[75.46855468750002,71.534375],[75.41718750000004,71.49467773437507],[75.28027343749997,71.43007812500004],[75.29804687500004,71.378466796875],[75.33203125000003,71.34174804687498],[75.73359375000004,71.26591796874999],[76.11044921875006,71.21855468750002],[76.74199218750002,71.20205078125005],[76.92900390625002,71.12788085937504],[76.99521484375012,71.18105468750002],[77.58964843750007,71.16791992187501],[78.06826171875005,70.98632812499997],[78.32060546875002,70.93041992187503],[78.52578125,70.91181640624998],[78.94218750000002,70.9337890625],[79.01542968750002,70.95019531249997],[79.08388671875,71.00200195312505],[78.88867187500003,70.99716796875003],[78.80351562500002,70.97353515625002],[78.72392578125002,70.97597656249998],[78.58769531250007,70.993896484375],[78.4914062500001,71.02539062500003],[78.38652343750002,71.08710937499998],[78.21259765625004,71.26630859374998],[77.90839843750008,71.32407226562503],[77.70664062500006,71.30058593750005],[77.48105468750006,71.31157226562507],[77.11367187499998,71.409375],[76.87119140625006,71.44658203125005],[76.43339843750002,71.55249023437503],[76.31210937500012,71.595458984375],[76.21572265625,71.68286132812503],[76.10361328125012,71.82900390624997],[76.03242187500004,71.91040039062503],[76.12402343749997,71.92661132812503],[76.42167968750007,72.00600585937495],[76.87138671875,72.03300781250005],[77.06132812500007,72.00419921875005],[77.55078124999997,71.84208984375005],[77.77753906250004,71.83642578125006],[78.18691406250005,71.90708007812506],[78.23242187500003,71.95229492187502],[78.1408203125001,72.04467773437503],[78.01640625000007,72.092041015625],[77.7806640625,72.11430664062499],[77.49287109375004,72.07172851562504],[77.41083984375004,72.107763671875],[77.43974609375007,72.15654296874999],[77.47158203125,72.19213867187506],[77.62529296875002,72.20141601562497],[77.73320312500007,72.22919921874995],[77.9681640625,72.32871093749998],[78.22539062500006,72.37744140625006],[78.4826171875001,72.39497070312498],[79.42207031250008,72.38076171875002],[79.95390625000007,72.22304687500002],[80.4740234375,72.153125],[80.69921875000001,72.09829101562502],[80.7625,72.08916015625002],[80.81474609375,72.05429687500002],[80.85605468750006,71.97021484375003],[81.51123046874997,71.74614257812505],[81.66162109374997,71.71596679687502],[82.07988281250002,71.7068359375],[82.547265625,71.75859375000002],[82.75781250000003,71.76411132812498],[82.98613281250007,71.74868164062502],[83.10664062500004,71.72050781250006],[83.23359375000004,71.66816406249995],[83.16552734375003,71.60219726562502],[83.1056640625001,71.56245117187501],[82.97705078125003,71.45136718750004],[82.91796874999996,71.41992187500003],[82.49316406250003,71.29287109375],[82.32285156250006,71.26000976562503],[82.27695312500012,71.09345703125004],[82.25429687499998,71.05620117187497],[82.23916015625005,70.99770507812497],[82.31601562500005,70.87944335937505],[82.33593749999997,70.80737304687503],[82.2707031250001,70.70673828125004],[82.16318359375012,70.59814453125003],[82.18242187500002,70.51147460937503],[82.22119140625003,70.39570312499998],[82.23583984374996,70.4302734375],[82.23144531249997,70.48291015625],[82.25839843750006,70.54360351562502],[82.45166015624997,70.69008789062502],[82.5924804687501,70.88994140625005],[82.73779296875003,70.94208984375001],[82.86914062499997,70.95483398437503],[83.01015625,70.89541015625002],[83.05107421875007,70.81523437500002],[83.05839843750007,70.6947265625],[83.03017578125,70.58051757812497],[82.91982421875,70.40742187499998],[82.74248046875002,70.28647460937503],[82.6823242187501,70.21772460937498],[82.7672851562501,70.15405273437497],[82.85654296875006,70.10454101562502],[82.9610351562501,70.08828124999997],[83.08076171875008,70.09301757812497],[83.1095703125001,70.10957031249995],[83.13203125000004,70.15717773437498],[83.09414062500005,70.22109375000002],[83.0738281250001,70.276708984375],[83.29345703124997,70.32133789062502],[83.49707031249997,70.34526367187502],[83.65986328125004,70.418359375],[83.70048828125002,70.46640625],[83.73593750000005,70.54648437499998],[83.65126953125004,70.672216796875],[83.57890625000007,70.76591796875002],[83.33388671875005,70.98852539062496],[83.15126953125005,71.10361328124998],[83.266015625,71.27587890624997],[83.45761718750012,71.46752929687503],[83.53105468750007,71.51425781250006],[83.55048828125004,71.54365234375001],[83.57128906250003,71.59438476562502],[83.55351562500002,71.64980468750005],[83.534375,71.68393554687498],[83.34042968750006,71.82753906250002],[83.20029296875012,71.87470703125004],[82.7550781250001,71.90283203125],[82.64541015625005,71.92524414062504],[82.31914062500002,72.07182617187505],[82.2806640625,72.105126953125],[82.20927734375,72.21118164062503],[82.18359375000003,72.23754882812497],[82.09365234374998,72.26542968750005],[81.79287109375,72.32661132812498],[81.58623046875007,72.35170898437505],[81.28271484374997,72.35883789062498],[81.09814453125001,72.38974609374998],[80.82705078125005,72.48828124999997],[80.79775390625005,72.51997070312495],[80.71962890625,72.64790039062498],[80.65625,72.71201171875],[80.67539062500006,72.75917968750002],[80.77373046875002,72.86079101562501],[80.84160156250007,72.94916992187498],[80.75742187500006,73.02524414062503],[80.63867187500001,73.04916992187503],[80.50966796875005,73.086083984375],[80.45546875,73.15522460937495],[80.4245117187501,73.23115234374998],[80.41894531250003,73.2896484375],[80.39804687500012,73.3568359375],[80.45830078125007,73.41372070312504],[80.59589843750004,73.47402343749998],[80.56191406250005,73.51499023437498],[80.5832031250001,73.56845703125003],[81.46884765625006,73.64042968750005],[81.81699218750012,73.65883789062497],[83.54472656250002,73.66650390625003],[83.66699218749996,73.68647460937501],[84.4173828125,73.72202148437498],[84.73789062500006,73.76284179687502],[85.07744140625007,73.71953124999999],[85.20058593750005,73.72153320312506],[85.44833984375006,73.73461914062506],[85.61142578125006,73.82158203125],[85.979296875,73.85693359375],[86.59140625000006,73.89428710937497],[86.89296875,73.887109375],[86.961328125,73.8607421875],[87.02949218750004,73.82416992187501],[86.69765625,73.71684570312499],[86.36591796875004,73.61977539062502],[86.094140625,73.57832031250001],[85.82705078125005,73.49277343749998],[85.80048828125003,73.45893554687501],[85.79257812500012,73.438330078125],[85.8024414062501,73.3716796875],[85.81816406250007,73.32695312500005],[86.09814453125003,73.272607421875],[86.30791015625002,73.19575195312495],[86.5143554687501,73.14047851562498],[86.67705078125002,73.10678710937503],[86.7150390625001,73.125830078125],[86.12167968750012,73.30673828125],[85.97080078125006,73.34707031249997],[85.91005859375005,73.39042968750002],[85.93896484374997,73.45649414062495],[85.99892578125005,73.48583984375],[86.09238281250005,73.51914062500003],[86.15507812500006,73.53466796874999],[86.37626953125002,73.56884765625003],[87.12011718750003,73.6150390625],[87.29443359375003,73.7046875],[87.36953125000005,73.75590820312505],[87.57119140625,73.81074218750001],[87.50322265625002,73.83247070312501],[87.3375,73.846044921875],[87.20966796875004,73.878662109375],[86.69707031250007,74.19531250000003],[86.57109375000007,74.24375],[86.17783203125006,74.27939453125],[86.0013671875,74.316015625],[86.18291015625007,74.42304687499998],[86.39580078125007,74.45009765624997],[86.5384765625,74.44423828125002],[86.66474609375004,74.41425781249995],[86.89794921874996,74.32534179687497],[87.22968750000004,74.3638671875],[87.10615234375004,74.403564453125],[86.8942382812501,74.44970703124997],[86.70009765624998,74.52246093749996],[86.42568359375005,74.58549804687502],[86.11611328125005,74.628564453125],[85.79101562499997,74.6451171875],[85.88076171875005,74.74023437500003],[86.05888671875002,74.72822265624998],[86.11953125,74.75742187500006],[86.20126953125006,74.81621093750005],[86.6514648437501,74.68242187500005],[86.8628906250001,74.71787109374999],[87.04179687500007,74.77885742187499],[87.41933593750005,74.94091796875006],[87.467578125,75.01323242187505],[87.28740234375002,75.05253906250005],[87.14072265625006,75.07226562499997],[86.93906250000006,75.06811523437503],[86.92167968750002,75.11279296874997],[87.0059570312501,75.16982421874997],[87.17080078125005,75.19174804687498],[87.67138671874997,75.12958984375003],[88.50371093750007,75.29047851562504],[88.7331054687501,75.36918945312499],[89.3102539062501,75.47011718750002],[89.59511718750005,75.45825195312503],[90.18496093750005,75.59106445312497],[91.00468750000006,75.649560546875],[91.47949218749997,75.64965820312503],[91.8454101562501,75.72368164062499],[92.40751953125002,75.74965820312497],[92.60253906249997,75.7791015625],[93.54980468750003,75.8541015625],[94.07519531249997,75.91289062499997],[94.15634765625006,75.95922851562503],[93.68701171875003,75.92158203124998],[93.57402343750002,75.95629882812506],[93.47548828124998,75.93286132812497],[93.40605468750007,75.90126953125002],[93.178125,75.95898437499997],[93.11630859375012,75.94462890624999],[93.06865234375006,75.912841796875],[92.98662109375007,75.90268554687505],[92.89042968750002,75.90996093750002],[92.8585937500001,75.97949218749997],[92.97158203125,76.07509765625],[93.10488281249998,76.02583007812501],[93.25927734375003,76.09877929687502],[93.3595703125001,76.100732421875],[93.64843749999997,76.05415039062501],[93.84287109375006,76.10131835937503],[94.10234375000007,76.12358398437502],[94.38828125000006,76.10278320312504],[94.50673828125004,76.10795898437505],[94.57558593750005,76.15175781249998],[95.03847656249998,76.11352539062503],[95.35927734375,76.13959960937501],[95.57871093750012,76.13730468749998],[95.91992187499996,76.11313476562503],[96.07548828125006,76.08198242187497],[95.98603515625004,76.00966796875],[95.65332031250003,75.89218750000003],[95.7438476562501,75.872314453125],[95.93476562500008,75.926025390625],[96.50859375,76.00556640624995],[96.60058593750003,75.98989257812497],[96.53769531250005,75.921630859375],[96.49707031249996,75.89121093750003],[96.87919921875,75.93105468749995],[97.20546875000005,76.01870117187497],[97.35068359375006,76.03339843749995],[97.49921875000004,75.98022460937503],[97.63769531250003,76.02905273437503],[97.66982421875,76.07802734375],[97.918359375,76.08867187500002],[98.02001953125003,76.13369140625005],[98.19462890625007,76.16640625000005],[98.34199218750004,76.18056640625],[98.66201171875005,76.24267578125003],[98.7712890625,76.22402343749997],[98.98466796875007,76.20756835937499],[99.18730468750002,76.17763671875002],[99.56269531250004,76.10932617187495],[99.615625,76.08232421875003],[99.66318359375012,76.07802734375],[99.77041015624998,76.02875976562498],[99.68925781250007,75.95634765625006],[99.60234375000002,75.85205078125003],[99.4421875,75.80317382812504],[99.5407226562501,75.79858398437496],[99.609375,75.811279296875],[99.7375,75.88066406250002],[99.85136718750007,75.93027343749998],[99.8253906250001,76.13593749999995],[99.61679687500006,76.24018554687498],[99.46064453125003,76.27509765624998],[99.09384765625012,76.38432617187505],[98.96953125000002,76.43081054687498],[98.80566406250003,76.48066406250004],[98.86943359375002,76.50957031250005],[99.57626953125005,76.47143554687503],[99.93574218750004,76.48989257812505],[100.32236328125012,76.479150390625],[100.84375,76.52519531250005],[101.06074218750004,76.47724609374995],[101.31074218750008,76.47890625],[101.59775390625006,76.43920898437503],[101.6837890625001,76.48549804687505],[101.21298828125006,76.53569335937505],[101.00263671875004,76.53051757812497],[100.92802734375002,76.55673828124998],[101.00625,76.61508789062498],[101.09931640625008,76.70400390624997],[101.008203125,76.78134765625],[100.92041015624997,76.82250976562503],[100.90585937500012,76.90068359375007],[100.98994140625004,76.99047851562497],[101.18574218750004,77.028564453125],[101.29287109375,77.10156250000006],[101.51767578125005,77.198095703125],[102.61015625000007,77.508544921875],[103.13144531250012,77.62646484375006],[103.33125,77.64106445312501],[103.56074218750008,77.63193359375],[104.01455078125,77.73041992187501],[104.18486328125007,77.73046875],[104.81425781250002,77.65209960937503]]],[[[107.69550781250003,78.13090820312505],[107.60625,78.08256835937507],[107.48164062500004,78.057763671875],[107.34384765625006,78.09858398437494],[107.00166015625004,78.09565429687498],[106.41552734375003,78.13984375000001],[106.58330078125,78.16757812499998],[107.50830078124996,78.18940429687498],[107.57324218749997,78.18554687499999],[107.69550781250003,78.13090820312505]]],[[[106.27041015625005,78.20620117187502],[106.15107421875004,78.1986328125],[106.02363281250004,78.22011718750002],[106.0583984375,78.26464843750003],[106.35058593750003,78.27260742187497],[106.45683593750002,78.34003906250003],[106.6404296875,78.33623046875005],[106.69121093750007,78.31665039062497],[106.71962890625,78.294189453125],[106.71894531250004,78.264990234375],[106.67910156249998,78.264990234375],[106.50468750000006,78.26166992187495],[106.47246093750007,78.24501953125002],[106.27041015625005,78.20620117187502]]],[[[102.88476562499997,79.25395507812505],[102.7873046875001,79.17641601562497],[102.7458007812501,79.10605468750002],[102.44785156250012,78.87666015625001],[102.4123046875001,78.83544921874997],[102.58730468750004,78.87128906249998],[102.7476562500001,78.94956054687502],[102.84482421875006,79.01435546875001],[102.9503906250001,79.05576171875],[103.07568359374997,79.05649414062498],[103.19912109375005,79.07128906249997],[103.4333984375,79.12612304687502],[103.67285156250003,79.15],[103.80078124999997,79.14926757812503],[103.92568359375,79.12324218749998],[104.00400390625006,79.06254882812505],[104.09111328125007,79.01318359375003],[104.40419921875,78.97709960937503],[104.44921875000003,78.96391601562502],[104.47695312500005,78.92333984375003],[104.45205078125005,78.880029296875],[104.633203125,78.83515625000001],[104.88105468750004,78.85488281250002],[105.01464843750003,78.84331054687507],[105.14599609375003,78.81884765625006],[105.20458984374997,78.77993164062502],[105.25605468750004,78.73300781249998],[105.31015625000006,78.66616210937502],[105.34267578125005,78.59394531249998],[105.31259765625012,78.49990234375],[104.83261718750006,78.35273437499995],[104.74179687500012,78.33974609374997],[104.51943359375,78.34921875000002],[104.29746093750006,78.33505859374998],[103.71933593750006,78.25825195312498],[103.003125,78.25585937500003],[102.79667968750006,78.18789062500002],[102.734375,78.18989257812498],[102.67314453125,78.20170898437499],[102.61718749999996,78.22460937500004],[102.18046875,78.20532226562503],[101.69238281249997,78.1943359375],[101.20410156249997,78.19194335937505],[101.03994140625,78.14296875000002],[100.54121093750008,78.04750976562501],[100.08222656250004,77.975],[99.84501953125002,77.95683593750002],[99.50029296875002,77.97607421875003],[99.39169921875012,78.00068359374998],[99.28710937500003,78.03808593749996],[99.4386718750001,78.08393554687497],[99.54560546875004,78.178564453125],[99.67792968750008,78.23349609374999],[100.0189453125,78.33891601562507],[100.05751953125004,78.38037109374997],[100.12353515624997,78.47045898437503],[100.16298828125005,78.50395507812502],[100.2150390625001,78.53579101562502],[100.25722656250005,78.57382812500006],[100.26269531250003,78.63149414062498],[100.28398437500002,78.67919921875003],[100.41640625,78.753173828125],[100.515625,78.78779296875004],[100.61962890624997,78.79741210937503],[100.87558593750006,78.78359374999995],[100.9557617187501,78.7884765625],[100.89794921875003,78.81245117187498],[100.85625,78.89775390625005],[100.86455078125006,78.92583007812499],[100.90136718750003,78.98007812500003],[100.96542968750012,79.00654296875],[101.03085937500012,79.02329101562503],[101.06816406250006,79.09624023437499],[101.05224609375003,79.12324218749998],[101.148828125,79.156884765625],[101.19609375,79.204443359375],[101.31044921875004,79.23261718749998],[101.54306640625012,79.25444335937507],[101.55527343750012,79.31264648437502],[101.590625,79.350439453125],[101.64335937500002,79.36137695312499],[101.76132812500006,79.37197265625002],[101.82421874999997,79.37021484375003],[101.91210937499997,79.31162109374998],[102.0052734375,79.26367187499999],[102.12851562500006,79.252490234375],[102.25126953125002,79.25605468749995],[102.17724609374997,79.31259765625],[102.18066406249997,79.37338867187506],[102.22509765624997,79.41293945312503],[102.28242187500008,79.43007812499997],[102.40488281250005,79.43320312499998],[102.78984375000007,79.39213867187503],[103.04160156250012,79.33154296875006],[103.09794921875007,79.29912109375002],[103.0524414062501,79.28251953125002],[102.93964843750003,79.27119140625001],[102.88476562499997,79.25395507812505]]],[[[76.24892578125005,79.65107421874995],[76.37255859374997,79.61523437500003],[76.46738281250012,79.64316406250003],[77.36015625000002,79.55683593750004],[77.54931640625001,79.52441406249999],[77.58896484375012,79.50190429687504],[76.81015625000006,79.489501953125],[76.64951171875012,79.49340820312499],[76.63652343750002,79.54443359375],[76.4576171875001,79.54545898437502],[76.1537109375,79.57875976562497],[76.07187500000012,79.62563476562502],[76.05156250000007,79.64472656249998],[76.14843749999997,79.66445312500002],[76.24892578125005,79.65107421874995]]],[[[100.13593750000004,79.61420898437498],[99.91542968750005,79.60161132812502],[99.94228515624998,79.67143554687502],[99.9557617187501,79.69033203124997],[100.06835937500003,79.701025390625],[100.14150390625,79.68369140625003],[100.30029296875003,79.67026367187503],[100.13593750000004,79.61420898437498]]],[[[92.68349609375005,79.685205078125],[92.440625,79.67548828124995],[92.1537109375,79.68466796875006],[91.68359374999997,79.79057617187505],[91.37626953125007,79.83549804687505],[91.12607421875006,79.90493164062498],[91.07031250000003,79.98149414062505],[91.22929687500007,80.03071289062504],[91.4259765625001,80.04921874999995],[91.75195312499997,80.05229492187499],[92.17343750000012,80.04545898437502],[92.59277343750001,79.99653320312498],[93.48154296875005,79.94111328124998],[93.803125,79.904541015625],[93.60351562499997,79.81674804687503],[93.38203125000003,79.78388671875001],[93.155078125,79.73759765624999],[92.92626953125003,79.7044921875],[92.68349609375005,79.685205078125]]],[[[51.409277343750006,79.94423828125],[51.435156250000055,79.93193359375007],[51.43125,79.92050781250003],[51.076269531250006,79.93198242187498],[50.45410156250003,79.92441406250003],[50.09140625,79.98056640625003],[50.47265624999997,80.03544921875002],[50.67578124999997,80.04853515625001],[50.93632812500001,80.09423828125],[51.25439453124997,80.04863281250005],[51.237890625,80.01035156250006],[51.2427734375,79.99125976562499],[51.32695312500002,79.97231445312502],[51.409277343750006,79.94423828125]]],[[[59.688867187500044,79.95581054687506],[59.3306640625,79.92304687500004],[59.20263671875002,79.932958984375],[59.169238281250074,79.94829101562502],[59.100390625000074,79.96416015625005],[58.91923828125001,79.98461914062506],[58.946093750000074,80.04233398437499],[59.001464843749964,80.05390624999995],[59.544531250000055,80.11884765624994],[59.801660156250044,80.08266601562505],[59.911035156249994,79.99428710937497],[59.688867187500044,79.95581054687506]]],[[[97.67451171875004,80.15825195312499],[97.90361328125002,80.09501953124999],[98.01777343750008,80.02285156250002],[97.90673828125001,80.00375976562502],[97.80791015625002,79.95629882812497],[97.75996093750004,79.895849609375],[97.62695312500001,79.85043945312498],[97.59130859374997,79.77495117187505],[97.65166015625002,79.76064453125],[97.72451171875,79.78139648437505],[97.87070312500006,79.85263671874996],[98.06455078125012,79.90107421874998],[98.27324218750007,79.87412109375],[98.35312500000012,79.88432617187505],[98.49902343749996,79.953125],[98.471875,80.00913085937498],[98.53183593750006,80.043603515625],[98.596484375,80.05219726562495],[98.86591796875003,80.04541015625],[99.29492187500001,80.01635742187503],[99.37070312500012,79.98637695312505],[99.47304687499998,79.97016601562494],[99.53613281249997,79.94130859375002],[99.72656250000003,79.91992187500001],[99.81835937499997,79.89819335937503],[99.94658203125002,79.84897460937503],[100.0612304687501,79.77709960937506],[99.91582031250007,79.73833007812505],[99.8392578125,79.66894531250006],[99.80546875000002,79.653076171875],[99.78164062499998,79.628271484375],[99.77109375000006,79.56772460937503],[99.74882812500002,79.51518554687497],[99.72119140625003,79.49184570312502],[99.70625,79.4634765625],[99.72158203125,79.38510742187502],[99.68066406250003,79.32333984374998],[99.53730468750004,79.27656249999995],[99.3877929687501,79.27475585937503],[99.16708984375012,79.30629882812497],[99.10439453125005,79.30537109374995],[99.04179687500007,79.29301757812502],[99.31738281249997,79.22719726562501],[99.51728515625004,79.13017578125006],[99.75078125,79.107666015625],[99.81464843750004,79.095849609375],[99.89960937500003,79.00639648437507],[99.92929687500012,78.96142578124997],[99.5408203125,78.85273437500004],[99.43955078125012,78.834228515625],[98.8195312500001,78.81826171875002],[98.41113281250003,78.78779296875004],[98.28251953125002,78.79501953125],[98.05419921875003,78.82099609374995],[97.90517578125005,78.81020507812497],[97.68857421875006,78.82734375000001],[97.55546875000002,78.82656250000002],[97.24814453125006,78.86801757812503],[96.93291015625002,78.93393554687506],[96.87119140625006,78.96381835937501],[96.80781250000004,78.98496093750005],[96.42998046875006,79.00302734375],[96.34736328125003,79.01586914062506],[95.79648437500005,79.00141601562504],[95.7028320312501,79.01201171875005],[95.53105468750007,79.098095703125],[95.4369140625,79.09931640624998],[95.13320312500004,79.04960937499999],[95.02041015625005,79.05268554687498],[94.79101562499996,79.08662109374998],[94.65234375000003,79.12749023437505],[94.63164062500006,79.14086914062503],[94.61972656250006,79.19238281250003],[94.4821289062501,79.21860351562503],[94.31376953125007,79.30751953125005],[94.21875,79.40234375],[93.75859375000002,79.45141601562504],[93.47871093750004,79.46274414062503],[93.27226562500007,79.45839843749997],[93.07080078124997,79.49531250000001],[93.40468750000004,79.63159179687497],[93.84726562500005,79.70166015625006],[94.03818359375006,79.75600585937502],[94.25712890625007,79.82973632812502],[94.34726562500006,79.94194335937506],[94.71943359375004,80.01123046874997],[94.81503906250006,80.03481445312497],[94.94677734374996,80.08925781249997],[94.98730468749997,80.096826171875],[95.28134765625012,80.030517578125],[95.3379882812501,80.04213867187505],[95.39072265625012,80.07280273437499],[95.49755859375003,80.10561523437502],[95.85781250000005,80.11000976562502],[96.1625,80.096826171875],[96.27734374999997,80.11005859375004],[96.41660156250012,80.10434570312499],[97.1205078125,80.15302734374998],[97.58681640625005,80.16826171874999],[97.67451171875004,80.15825195312499]]],[[[50.05175781250003,80.07431640625003],[49.9708984375001,80.0607421875],[49.58828125,80.13613281250002],[49.556054687500044,80.15893554687503],[49.883691406249994,80.230224609375],[50.25097656250003,80.21948242187503],[50.30996093750005,80.18564453124998],[50.319140625000074,80.17236328125003],[50.07226562500003,80.10947265625],[50.05175781250003,80.07431640625003]]],[[[55.47968750000004,80.273828125],[55.19511718750002,80.226806640625],[55.04843750000006,80.22836914062498],[54.9796875000001,80.2564453125],[55.091601562500074,80.295556640625],[55.24003906250002,80.32539062500001],[55.35322265625004,80.31767578125005],[55.43476562500003,80.30224609375],[55.47968750000004,80.273828125]]],[[[57.07871093750006,80.35092773437498],[57.12265625,80.3169921875],[57.118945312500074,80.19394531249998],[57.072753906249964,80.13940429687496],[57.080175781250006,80.09467773437501],[56.986914062500006,80.07148437499998],[56.20058593750005,80.07646484375002],[55.811621093750006,80.08715820312497],[55.724023437499994,80.104736328125],[55.942285156249994,80.16328125000004],[56.01220703125002,80.20390625000005],[55.98984375,80.320068359375],[56.02441406250003,80.34130859374997],[56.65507812500007,80.33032226562506],[56.70722656250004,80.36328125],[56.94453125000003,80.36616210937498],[57.07871093750006,80.35092773437498]]],[[[53.521386718749994,80.18520507812495],[52.85634765625005,80.17324218750002],[52.6359375000001,80.17885742187502],[52.607031250000055,80.19116210937501],[52.55048828125009,80.20185546874998],[52.34355468750001,80.213232421875],[52.21337890624997,80.26372070312507],[52.2702148437501,80.27631835937498],[52.57666015624997,80.29692382812499],[52.680566406249994,80.31850585937505],[52.71601562500004,80.34755859375],[52.85390625,80.40239257812497],[53.18564453125006,80.41264648437505],[53.329199218750006,80.40239257812497],[53.34589843750004,80.36630859375],[53.48613281250002,80.32338867187497],[53.85166015625006,80.26835937500005],[53.777929687500006,80.22832031250005],[53.65292968750006,80.22255859375002],[53.521386718749994,80.18520507812495]]],[[[57.95625,80.12324218749995],[57.80009765625001,80.10405273437505],[57.39228515625003,80.13916015625],[57.33232421875001,80.15810546875005],[57.28144531250004,80.19389648437505],[57.21406250000009,80.328271484375],[57.211718750000074,80.36845703124999],[57.18623046875009,80.39624023437497],[57.083398437499994,80.44521484375],[57.01113281250005,80.46831054687502],[57.075,80.49394531249997],[57.52197265625002,80.47539062500002],[58.480468749999964,80.46474609375],[58.971679687499964,80.41586914062498],[59.11591796875003,80.38842773437497],[59.255468750000055,80.34321289062501],[58.39794921874997,80.31875],[58.28388671875009,80.29780273437498],[58.285742187500006,80.24814453124999],[58.25546875000007,80.20180664062497],[58.163183593750006,80.19653320312496],[57.95625,80.12324218749995]]],[[[54.41533203125001,80.47280273437502],[54.275878906249964,80.42133789062504],[53.811914062499994,80.47622070312502],[53.85,80.50385742187495],[53.90019531250007,80.51542968750002],[53.9015625000001,80.54248046875003],[53.85888671874997,80.56303710937502],[53.87724609375002,80.60527343750002],[54.17675781250003,80.57436523437502],[54.205371093750074,80.56176757812503],[54.40712890625005,80.54013671874998],[54.437304687500074,80.49868164062497],[54.41533203125001,80.47280273437502]]],[[[47.441992187500006,80.853662109375],[47.89951171875006,80.81269531250001],[48.243261718750006,80.82348632812497],[48.34521484374997,80.81899414062505],[48.44570312500005,80.80600585937506],[48.54736328124997,80.77905273437497],[48.68652343749997,80.71777343750003],[48.68359375000003,80.63325195312504],[48.62548828124997,80.62929687500002],[48.044335937499994,80.66816406249995],[47.77734375000002,80.75625],[47.7052734375001,80.76518554687499],[47.60009765624997,80.74194335937496],[47.51230468750006,80.68793945312498],[47.414160156250006,80.67451171875],[47.30390625000004,80.60620117187501],[47.19824218750003,80.61494140625004],[47.14492187499999,80.609033203125],[47.011035156250074,80.562109375],[46.677539062500074,80.56132812500005],[46.62392578124999,80.540673828125],[46.51367187499997,80.47553710937495],[46.378125,80.45678710937497],[46.141406250000074,80.44672851562495],[46.059863281250074,80.48378906249997],[46.0236328125001,80.54086914062503],[45.96904296875007,80.56948242187502],[45.64082031250003,80.53696289062503],[45.38925781250006,80.56030273437499],[45.14921875000002,80.59873046875],[44.9049804687501,80.61127929687501],[45.12451171875003,80.65224609375],[46.327441406250074,80.73515625],[46.799121093750074,80.755224609375],[47.02060546875006,80.81440429687498],[47.35234375000007,80.85292968750002],[47.441992187500006,80.853662109375]]],[[[62.167773437500074,80.83476562500005],[62.2277343750001,80.79438476562501],[62.191796875000044,80.73022460937497],[62.11455078125002,80.68369140625],[62.075781250000055,80.616943359375],[61.769140625,80.60102539062495],[61.68125,80.58632812499997],[61.59746093750002,80.53496093749999],[61.28515625000003,80.50473632812506],[61.051269531249964,80.41860351562498],[60.722265625,80.43466796874996],[60.278320312499964,80.49443359374999],[59.90019531250001,80.44609375000002],[59.64980468749999,80.43125],[59.3463867187501,80.50502929687502],[59.30439453125004,80.52153320312502],[59.28818359375006,80.57265625000002],[59.30625,80.61777343749998],[59.38652343750002,80.71254882812502],[59.49511718750003,80.76650390625],[59.549414062500055,80.78359375000002],[59.59228515625002,80.81650390624998],[59.71582031250003,80.83637695312504],[60.09453125000001,80.84858398437504],[60.234960937500006,80.83774414062503],[60.2780273437501,80.80146484375001],[60.48154296875007,80.80424804687505],[60.82021484375005,80.8265625],[61.31318359375003,80.86264648437506],[61.59746093750002,80.89291992187499],[61.85058593750002,80.8859375],[62.102929687499994,80.86660156249995],[62.167773437500074,80.83476562500005]]],[[[50.278125,80.92724609374996],[50.43144531250001,80.91088867187503],[50.80107421875002,80.91416015624998],[50.91767578125004,80.89042968750002],[51.45478515625003,80.74467773437499],[51.5910156250001,80.74077148437499],[51.70361328125003,80.68764648437502],[51.14619140625004,80.60395507812501],[50.960839843750044,80.54047851562495],[50.2796875,80.52734375000001],[49.84599609375002,80.49765625000003],[49.749804687500074,80.47207031249997],[49.79414062500004,80.42534179687505],[49.585937499999964,80.37656250000006],[48.89609375000006,80.36918945312507],[48.81103515625003,80.35371093750001],[48.67705078125002,80.300048828125],[48.68896484375003,80.29028320312497],[48.92197265625,80.27680664062498],[48.959570312500006,80.26567382812502],[48.99082031250006,80.24238281249997],[49.01074218749997,80.20742187499997],[48.97753906250003,80.16259765624997],[48.891894531250074,80.15532226562502],[48.79736328125002,80.16113281250003],[48.58173828125004,80.19536132812499],[48.554589843749994,80.18330078125004],[48.532617187499994,80.15825195312499],[48.46679687499997,80.11010742187501],[48.38623046875003,80.09580078125006],[48.16718750000004,80.13276367187503],[48.09589843750009,80.12231445312503],[48.02578125,80.09946289062499],[47.93994140625003,80.088623046875],[47.73730468749997,80.08168945312502],[47.632421875,80.11196289062497],[47.72314453125003,80.1513671875],[47.97753906249997,80.21254882812502],[47.89296875000005,80.23925781249997],[47.642382812500074,80.24531249999995],[47.44433593749997,80.23012695312497],[47.34306640625002,80.18852539062502],[47.24863281250006,80.18022460937502],[46.991015625000074,80.182763671875],[46.8458984375001,80.23720703125],[46.738183593749994,80.25766601562498],[46.644433593749994,80.30034179687507],[47.40292968750006,80.444775390625],[47.65605468750001,80.50053710937499],[47.89580078125002,80.52905273437503],[48.20820312500004,80.54389648437495],[48.30615234375003,80.56157226562497],[48.40263671875007,80.56879882812495],[48.464746093749994,80.55805664062497],[48.625097656250006,80.50830078124997],[49.087792968749994,80.515771484375],[49.1852539062501,80.55864257812502],[49.192675781250074,80.65600585937506],[49.14746093750003,80.71210937500001],[49.24433593750004,80.82138671875],[49.50781249999997,80.86533203124998],[50.124316406250074,80.92387695312499],[50.278125,80.92724609374996]]],[[[80.02666015625007,80.84814453125003],[79.09853515625005,80.81206054687503],[79.00683593750003,80.83481445312498],[78.97763671875012,80.84824218750003],[79.10986328124996,80.92358398437503],[79.21738281250012,80.96035156249995],[79.80664062499997,80.975390625],[80.27958984375007,80.94980468750003],[80.4279296875001,80.92768554687498],[80.37333984375007,80.88261718750005],[80.34482421875012,80.86791992187497],[80.02666015625007,80.84814453125003]]],[[[61.14082031250009,80.95034179687497],[60.82675781250006,80.92968750000001],[60.32109375000007,80.95551757812495],[60.058203125000055,80.98461914062501],[60.0783203125001,80.99916992187497],[60.147558593750055,81.01665039062499],[60.5866210937501,81.08769531250007],[61.45742187499999,81.10395507812501],[61.56738281250002,81.05029296875],[61.471972656250074,81.01103515624999],[61.14082031250009,80.95034179687497]]],[[[54.71894531250004,81.11596679687497],[55.47070312500003,81.019873046875],[56.17011718750003,81.02915039062503],[56.47226562500006,80.99824218749995],[56.90966796874997,80.91289062499999],[57.567773437500044,80.81972656250001],[57.69414062500002,80.79228515625002],[57.58037109375001,80.75546874999998],[56.81474609375001,80.66362304687502],[56.315527343750006,80.63286132812505],[55.883398437500055,80.62841796875003],[55.7125,80.63730468749998],[55.540625,80.70332031250001],[55.11718750000003,80.75190429687495],[54.66816406250004,80.738671875],[54.62333984375002,80.765234375],[54.53281250000006,80.78300781249999],[54.376074218750006,80.786962890625],[54.06660156250004,80.81362304687502],[54.04541015624997,80.87197265625],[54.24052734375001,80.90185546875006],[54.367285156250006,80.90380859375],[54.416796875000074,80.98652343749997],[54.6339843750001,81.11318359375002],[54.71894531250004,81.11596679687497]]],[[[58.622363281250024,81.04165039062501],[58.76152343750002,80.990966796875],[58.81533203124999,80.93359375000003],[58.902539062500104,80.89765624999998],[58.930566406249994,80.83168945312497],[58.8599609375,80.77939453125006],[58.64189453125002,80.76796875000002],[58.28564453124997,80.76489257812503],[57.93789062499999,80.79335937499995],[57.74980468750007,80.88906250000002],[57.40517578125005,80.91513671875],[57.21093749999997,81.01708984374997],[57.41025390625001,81.04677734375],[57.65625,81.03154296874999],[58.04951171875004,81.11845703125],[58.10234375000001,81.11425781249997],[58.18994140625002,81.09458007812506],[58.50761718750001,81.06176757812503],[58.622363281250024,81.04165039062501]]],[[[50.75371093750002,81.04741210937503],[50.61601562500007,81.04125976562503],[50.518164062500006,81.04555664062502],[50.41191406250002,81.084375],[50.37744140625003,81.10273437500001],[50.368457031250074,81.12250976562495],[50.464941406250006,81.126220703125],[50.505957031250006,81.14423828124995],[50.52158203125,81.15820312500004],[50.59179687500002,81.16943359375003],[50.71591796875006,81.170654296875],[50.8786132812501,81.15087890624997],[50.946191406249994,81.10815429687497],[50.7887695312501,81.07182617187505],[50.75371093750002,81.04741210937503]]],[[[63.37382812500002,80.70009765624997],[63.187597656250055,80.697607421875],[63.00214843750003,80.71284179687498],[62.7604492187501,80.76269531250001],[62.52031250000002,80.821875],[62.59257812500001,80.85302734375004],[62.81933593750003,80.893798828125],[63.115820312500006,80.96679687500003],[63.614746093749964,80.98090820312497],[63.855957031249964,80.98115234375003],[64.09570312499997,80.99833984374999],[64.16591796875,81.03574218750006],[64.21044921874997,81.10634765624997],[64.25585937500003,81.14443359374998],[64.31015625000006,81.17519531250005],[64.5753906250001,81.198486328125],[64.80205078125002,81.19726562499999],[65.02773437500005,81.16948242187505],[65.17197265625006,81.14404296875],[65.30976562500004,81.09643554687497],[65.38203125000004,81.05673828124998],[65.3600585937501,81.00820312500005],[65.37207031249997,80.96801757812503],[65.43740234375005,80.93071289062507],[64.99746093749998,80.81889648437502],[64.54833984375003,80.75541992187505],[63.37382812500002,80.70009765624997]]],[[[91.56718750000007,81.14121093750003],[91.2228515625001,81.063818359375],[89.97578125000004,81.113134765625],[89.91943359375003,81.14873046875007],[89.90117187500002,81.17070312500002],[90.06992187500012,81.21372070312498],[91.10898437500006,81.19912109375002],[91.47783203125007,81.18393554687503],[91.56718750000007,81.14121093750003]]],[[[96.52656250000004,81.0755859375],[96.56308593750012,81.03007812500005],[96.69326171875,80.99418945312502],[96.75498046875012,80.957861328125],[97.41367187500012,80.84184570312499],[97.70302734375,80.826708984375],[97.83183593750002,80.79829101562498],[97.86992187500007,80.76328125000006],[97.85644531249997,80.698095703125],[97.74716796875012,80.69868164062495],[97.66542968750005,80.678076171875],[97.2213867187501,80.65244140625003],[97.11308593750007,80.61406250000003],[97.02539062499997,80.53554687500002],[97.07255859375007,80.51987304687503],[97.11503906250002,80.49658203125],[97.25019531250004,80.36298828124995],[97.28681640625004,80.34252929687506],[97.41699218749997,80.32314453125],[97.29843750000006,80.27275390625005],[97.1751953125,80.24101562500007],[95.85576171875007,80.17695312499998],[94.961328125,80.15039062499997],[94.66123046875005,80.12280273437506],[94.5650390625001,80.12607421875],[94.32841796875002,80.07602539062503],[93.87236328125,80.010107421875],[93.6546875,80.009619140625],[93.00234375000004,80.10209960937502],[92.2015625,80.179296875],[92.0921875,80.22333984375001],[91.89160156249997,80.24926757812497],[91.6374023437501,80.26992187499998],[91.52382812500005,80.35854492187502],[91.68779296875002,80.41850585937499],[91.89667968750004,80.47753906250003],[92.24667968750012,80.49912109374998],[92.5779296875,80.53325195312499],[92.82675781250006,80.61855468749995],[92.98105468750006,80.70297851562503],[93.2625,80.79125976562496],[92.77294921874997,80.76865234375],[92.59257812500007,80.78085937499999],[92.61015625000002,80.81000976562498],[92.7103515625,80.87216796875003],[92.76464843749997,80.89306640625001],[92.93867187500004,80.92583007812505],[93.06513671875004,80.98847656250001],[93.35869140625,81.03168945312504],[93.49736328125002,81.03920898437495],[93.63671874999996,81.038134765625],[93.8888671875001,81.05839843750005],[94.14013671874997,81.08945312499998],[94.37548828125003,81.10737304687498],[94.61162109375,81.11464843749995],[94.83789062499997,81.13940429687503],[95.06093750000005,81.1880859375],[95.1595703125,81.27099609375003],[95.80068359375005,81.28046874999998],[95.90195312500006,81.26059570312503],[95.98398437500006,81.21142578125006],[96.07519531250003,81.1927734375],[96.18691406250005,81.18393554687503],[96.47109375,81.09926757812502],[96.52656250000004,81.0755859375]]],[[[59.31308593750006,81.30522460937507],[59.09697265625007,81.29228515625002],[58.71904296875001,81.31352539062507],[58.61015625000002,81.337255859375],[58.6344726562501,81.36035156250003],[58.88056640625003,81.39184570312503],[59.075,81.397705078125],[59.280859375000055,81.36611328125002],[59.374609375000055,81.325048828125],[59.31308593750006,81.30522460937507]]],[[[57.81025390625003,81.54604492187502],[57.86269531249999,81.50644531250003],[58.01660156249997,81.48378906250002],[58.43603515624998,81.46416015625002],[58.56386718749999,81.41840820312504],[58.371875,81.38696289062503],[57.858691406250074,81.36806640625],[57.91191406250007,81.30327148437502],[58.0153320312501,81.25483398437501],[57.912890625000074,81.19750976562497],[57.76972656250004,81.16972656249997],[57.45097656250002,81.13554687500003],[57.159472656250074,81.178466796875],[56.821875,81.23793945312502],[56.66923828125001,81.19829101562503],[56.5125,81.17524414062495],[56.3639648437501,81.17861328125002],[56.19199218750006,81.22397460937503],[55.716699218750044,81.1884765625],[55.57265624999999,81.22807617187507],[55.46601562500004,81.31118164062502],[55.7819335937501,81.32944335937503],[56.1568359375,81.30307617187498],[56.40468750000005,81.38701171875002],[56.71875,81.42338867187507],[56.97304687499999,81.51054687500007],[57.0915039062501,81.5412109375],[57.36503906250002,81.53525390625003],[57.456445312499994,81.54287109375],[57.71660156250007,81.56464843749998],[57.81025390625003,81.54604492187502]]],[[[63.65097656250006,81.60932617187501],[63.5285156250001,81.59658203125],[62.88496093750004,81.60888671875003],[62.57304687500002,81.63305664062497],[62.53125,81.64702148437507],[62.51523437500007,81.65913085937495],[62.10644531249997,81.679345703125],[62.28398437500001,81.70654296875003],[62.79492187500002,81.71894531249998],[63.7095703125,81.68730468750002],[63.767382812500074,81.66416015625],[63.782421875000104,81.64980468750001],[63.65097656250006,81.60932617187501]]],[[[58.29541015625003,81.715185546875],[57.96484375000003,81.69565429687502],[57.92060546875005,81.71049804687502],[57.90927734375006,81.72192382812504],[57.945117187500074,81.74785156249999],[57.984960937500006,81.797021484375],[58.13457031250002,81.82797851562498],[59.261816406250006,81.85419921874998],[59.40849609375002,81.825439453125],[59.356835937499994,81.78095703124998],[59.35644531250003,81.75898437499995],[58.29541015625003,81.715185546875]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Slovenia","sov_a3":"SVN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Slovenia","adm0_a3":"SVN","geou_dif":0,"geounit":"Slovenia","gu_a3":"SVN","su_dif":0,"subunit":"Slovenia","su_a3":"SVN","brk_diff":0,"name":"Slovenia","name_long":"Slovenia","brk_a3":"SVN","brk_name":"Slovenia","brk_group":null,"abbrev":"Slo.","postal":"SLO","formal_en":"Republic of Slovenia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovenia","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":2,"mapcolor13":12,"pop_est":2005692,"gdp_md_est":59340,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"SI","iso_a3":"SVN","iso_n3":"705","un_a3":"705","wb_a2":"SI","wb_a3":"SVN","woe_id":-99,"adm0_a3_is":"SVN","adm0_a3_us":"SVN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SVN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.516210937500006,46.49990234374999],[16.427636718750023,46.5244140625],[16.321191406250023,46.534619140625],[16.301171875000023,46.52138671874999],[16.258398437500002,46.50791015625],[16.236718750000023,46.483837890625],[16.253320312500023,46.389111328125],[16.227441406250023,46.372851562499996],[16.1064453125,46.38222656249999],[16.066503906250006,46.37133789062499],[16.000683593750008,46.30537109375],[15.933300781250011,46.277636718749996],[15.847558593750023,46.25786132812499],[15.784277343750006,46.233984375],[15.704199218750004,46.213232421875],[15.635937500000011,46.200732421874996],[15.608984375,46.17192382812499],[15.592578125000015,46.139990234375],[15.596875,46.10922851562499],[15.666210937500011,46.048486328124994],[15.675585937500017,45.983691406249996],[15.668066406250004,45.90444335937499],[15.652148437500017,45.862158203125],[15.624804687500015,45.83403320312499],[15.4541015625,45.797607421875],[15.277050781250011,45.7326171875],[15.27294921875,45.71772460937499],[15.353710937500011,45.659912109375],[15.356933593749998,45.64550781249999],[15.290136718750006,45.612646484375],[15.283593750000021,45.5796875],[15.291210937500011,45.54155273437499],[15.326660156249998,45.502294921875],[15.339453125,45.467041015625],[15.242089843750023,45.44140625],[15.110449218750006,45.45078125],[14.954589843749998,45.499902343749994],[14.9,45.49267578125],[14.847070312500021,45.467333984374996],[14.793066406250004,45.47822265625],[14.733593750000011,45.50849609375],[14.649511718750006,45.571484375],[14.608593750000013,45.610107421875],[14.591796875,45.651269531249994],[14.56884765625,45.6572265625],[14.533984375000015,45.645263671875],[14.505175781250017,45.59521484375],[14.42734375,45.505761718749994],[14.369921875000015,45.4814453125],[14.283007812500017,45.48662109374999],[14.161230468750004,45.48515625],[14.085546875,45.477832031249996],[13.992773437500006,45.509423828124994],[13.9703125,45.503369140625],[13.970117187500023,45.4826171875],[13.935644531250004,45.4498046875],[13.878710937500017,45.428369140624994],[13.615234375,45.47675781249999],[13.577929687500017,45.51689453124999],[13.637304687500004,45.53593749999999],[13.719824218750006,45.58759765625],[13.775976562500006,45.581982421875],[13.8447265625,45.59287109375],[13.874707031250011,45.61484375],[13.831152343750006,45.68041992187499],[13.7216796875,45.761279296874996],[13.663476562500021,45.7919921875],[13.583398437500023,45.812353515625],[13.569628906250017,45.834130859374994],[13.613964843750011,45.961669921875],[13.6005859375,45.979785156249996],[13.509179687500023,45.973779296874994],[13.487695312500023,45.987109375],[13.480273437500017,46.009228515625],[13.486425781250004,46.03955078125],[13.548046875000011,46.08911132812499],[13.616601562500023,46.133105468749996],[13.63496093750001,46.157763671874996],[13.632519531250011,46.177050781249996],[13.544726562500017,46.19658203124999],[13.491796875,46.216601562499996],[13.449804687500006,46.223535156249994],[13.420996093750006,46.212304687499994],[13.39960937500001,46.224951171875],[13.378222656250017,46.261621093749994],[13.399511718750006,46.317529296874994],[13.478515625,46.36918945312499],[13.563281250000017,46.415087890624996],[13.637109375000023,46.448535156249996],[13.6796875,46.462890625],[13.7,46.520263671875],[13.743945312500017,46.514306640624994],[13.831347656250015,46.51123046874999],[13.928808593750006,46.498193359374994],[14.019628906250006,46.482177734375],[14.099511718750023,46.46191406249999],[14.267285156250011,46.44072265624999],[14.419921875,46.4279296875],[14.465917968750004,46.41611328124999],[14.503515625,46.417041015624996],[14.5498046875,46.399707031249996],[14.5771484375,46.41293945312499],[14.596972656250017,46.436083984374996],[14.68017578125,46.463427734374996],[14.756738281250023,46.49912109375],[14.810546875,46.544580078124994],[14.840625,46.58046875],[14.893261718750011,46.605908203125],[14.949414062500011,46.613232421875],[15.000683593750011,46.6259765625],[15.216992187500011,46.64296874999999],[15.439257812500019,46.62963867187499],[15.545312500000023,46.65463867187499],[15.632617187500017,46.6984375],[15.76025390625,46.710742187499996],[15.766894531250017,46.711279296875],[15.957617187500006,46.677636718749994],[15.972265625,46.69721679687499],[15.98046875,46.705859375],[15.976855468750017,46.8013671875],[16.037207031250006,46.84482421875],[16.093066406250017,46.86328125],[16.283593750000023,46.857275390625],[16.308496093750023,46.82797851562499],[16.318457031250006,46.78251953124999],[16.33544921875,46.721630859375],[16.3671875,46.70478515625],[16.384570312500017,46.680810546874994],[16.38125,46.638671875],[16.41845703125,46.607226562499996],[16.505664062500017,46.5220703125],[16.516210937500006,46.49990234374999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Slovakia","sov_a3":"SVK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Slovakia","adm0_a3":"SVK","geou_dif":0,"geounit":"Slovakia","gu_a3":"SVK","su_dif":0,"subunit":"Slovakia","su_a3":"SVK","brk_diff":0,"name":"Slovakia","name_long":"Slovakia","brk_a3":"SVK","brk_name":"Slovakia","brk_group":null,"abbrev":"Svk.","postal":"SK","formal_en":"Slovak Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovak Republic","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":4,"mapcolor13":9,"pop_est":5463046,"gdp_md_est":119500,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"SK","iso_a3":"SVK","iso_n3":"703","un_a3":"703","wb_a2":"SK","wb_a3":"SVK","woe_id":-99,"adm0_a3_is":"SVK","adm0_a3_us":"SVK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SVK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.538671875,49.07270507812499],[22.52412109375001,49.031396484374994],[22.483203125000014,48.98325195312499],[22.432031250000023,48.93354492187499],[22.389453125000017,48.873486328125],[22.332617187500006,48.745068359375],[22.295214843750017,48.68583984374999],[22.142871093750017,48.56850585937499],[22.131835937499996,48.405322265624996],[22.111328125,48.393359375],[21.766992187500023,48.33808593749999],[21.721484375000017,48.346582031249994],[21.674609375000014,48.378369140625],[21.64863281250001,48.40146484375],[21.63251953125001,48.418505859374996],[21.602636718750006,48.463671875],[21.56318359375001,48.495703125],[21.504687500000017,48.521875],[21.451367187500008,48.55224609375],[21.382421875,48.553466796875],[21.196386718750006,48.510595703125],[21.067285156250023,48.505908203124996],[20.981152343750008,48.519677734374994],[20.866601562500023,48.54565429687499],[20.643164062500006,48.549707031249994],[20.490039062500014,48.52690429687499],[20.475,48.4951171875],[20.333789062500017,48.295556640624994],[20.12861328125001,48.222021484375],[19.950390625,48.146630859374994],[19.89863281250001,48.13134765625],[19.81005859375,48.155029296875],[19.70917968750001,48.1998046875],[19.625390625000023,48.223095703125],[19.564257812500014,48.212841796875],[19.497460937500023,48.162109375],[19.466992187500008,48.110693359375],[19.26513671875,48.073046875],[18.914160156250006,48.050830078124996],[18.791894531250023,48.000292968749996],[18.750097656250006,47.939453125],[18.748339843750017,47.89267578125],[18.77802734375001,47.852880859375],[18.740625,47.806494140625],[18.72421875,47.787158203124996],[18.47626953125001,47.777001953124994],[18.145605468750006,47.76342773437499],[17.94794921875001,47.766894531249996],[17.76191406250001,47.770166015624994],[17.63525390625,47.80991210937499],[17.48066406250001,47.887597656249994],[17.317285156250023,47.99091796875],[17.301562500000014,47.993359375],[17.277246093750023,48.004345703125],[17.174609375000017,48.012060546875],[17.147363281250023,48.00595703125],[17.0859375,48.03955078125],[17.06787109375,48.083251953125],[16.97265625,48.198095703125],[16.86542968750001,48.3869140625],[16.862695312500023,48.44140625],[16.90449218750001,48.503515625],[16.943359375,48.550927734374994],[16.948828125,48.58857421874999],[16.953125,48.59882812499999],[16.985253906250023,48.676904296874994],[17.063281250000017,48.78076171875],[17.13564453125002,48.841064453125],[17.1884765625,48.8609375],[17.296875,48.842822265624996],[17.482617187500008,48.827783203124994],[17.62539062500002,48.841845703124996],[17.758496093750008,48.888134765625],[17.830859375000017,48.92861328124999],[17.892675781250006,48.971142578125],[17.91328125000001,48.99873046874999],[17.940722656250017,49.011962890625],[18.050878906250006,49.036523437499994],[18.0859375,49.06513671875],[18.100390625000017,49.1193359375],[18.109960937500006,49.17978515625],[18.132617187500017,49.22456054687499],[18.160937500000017,49.257373046874996],[18.36484375,49.33623046874999],[18.383105468750017,49.363916015624994],[18.415820312500014,49.390917968749996],[18.47607421875,49.42109375],[18.534570312500023,49.464697265625],[18.596484375000017,49.491455078125],[18.676171875000023,49.48847656249999],[18.74970703125001,49.493994140625],[18.807031250000023,49.50922851562499],[18.83222656250001,49.510791015624996],[18.93818359375001,49.498291015625],[18.95722656250001,49.44829101562499],[18.968359375,49.396240234375],[19.1494140625,49.4],[19.25019531250001,49.51142578125],[19.30234375,49.524853515625],[19.386230468749996,49.563623046874994],[19.44160156250001,49.59770507812499],[19.47968750000001,49.5763671875],[19.534765625,49.504785156249994],[19.593066406250017,49.447119140625],[19.62666015625001,49.424365234374996],[19.630273437500023,49.40664062499999],[19.664160156250006,49.396044921874996],[19.730078125,49.389599609375],[19.77392578125,49.37216796875],[19.787011718750023,49.3185546875],[19.787988281250023,49.269970703125],[19.767382812500014,49.235205078125],[19.756640625000014,49.204394531249996],[19.80224609375,49.192333984375],[19.868945312500017,49.204003906249994],[19.916113281250006,49.22138671874999],[20.057617187499996,49.181298828124994],[20.10761718750001,49.27075195312499],[20.163671875,49.31640625],[20.23652343750001,49.337646484375],[20.302539062500017,49.365527343749996],[20.362988281250008,49.38525390624999],[20.404687500000023,49.384082031249996],[20.422656250000017,49.392333984375],[20.474511718750023,49.39018554687499],[20.534570312500023,49.381201171875],[20.616113281250023,49.39169921875],[20.729003906249996,49.369921875],[20.79951171875001,49.328662109374996],[20.868457031250014,49.314697265625],[20.947265625,49.31708984375],[21.00117187500001,49.33984375],[21.079394531250017,49.418261718749996],[21.136132812500023,49.417041015624996],[21.225,49.429443359375],[21.35048828125002,49.428759765624996],[21.6396484375,49.411962890625],[21.71210937500001,49.38193359375],[21.890136718749996,49.34345703125],[21.967675781250023,49.299072265625],[22.00214843750001,49.24609375],[22.020117187500006,49.209521484374996],[22.202539062500023,49.153222656249994],[22.473046875000023,49.081298828125],[22.538671875,49.07270507812499]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Ashmore and Cartier Islands","adm0_a3":"ATC","geou_dif":0,"geounit":"Ashmore and Cartier Islands","gu_a3":"ATC","su_dif":0,"subunit":"Ashmore and Cartier Islands","su_a3":"ATC","brk_diff":0,"name":"Ashmore and Cartier Is.","name_long":"Ashmore and Cartier Islands","brk_a3":"ATC","brk_name":"Ashmore and Cartier Is.","brk_group":null,"abbrev":"A.C.Is.","postal":"AU","formal_en":"Territory of Ashmore and Cartier Islands","formal_fr":null,"note_adm0":"Auz.","note_brk":null,"name_sort":"Ashmore and Cartier Islands","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":-99,"gdp_md_est":-99,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"036","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"AUS","adm0_a3_us":"ATC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":23,"long_len":27,"abbrev_len":7,"tiny":-99,"homepart":-99,"filename":"ashmoreandcartieris.geojson"},"geometry":{"type":"Polygon","coordinates":[[[123.59453124999999,-12.425683593750009],[123.59521484374999,-12.4359375],[123.57314453125001,-12.434179687500006],[123.57246093750001,-12.423925781250006],[123.59453124999999,-12.425683593750009]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sweden","sov_a3":"SWE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sweden","adm0_a3":"SWE","geou_dif":0,"geounit":"Sweden","gu_a3":"SWE","su_dif":0,"subunit":"Sweden","su_a3":"SWE","brk_diff":0,"name":"Sweden","name_long":"Sweden","brk_a3":"SWE","brk_name":"Sweden","brk_group":null,"abbrev":"Swe.","postal":"S","formal_en":"Kingdom of Sweden","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sweden","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":2,"mapcolor13":4,"pop_est":9059651,"gdp_md_est":344300,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"SE","iso_a3":"SWE","iso_n3":"752","un_a3":"752","wb_a2":"SE","wb_a3":"SWE","woe_id":-99,"adm0_a3_is":"SWE","adm0_a3_us":"SWE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SWE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.52851562500001,56.29052734375],[16.477148437500034,56.240185546874955],[16.431640625,56.24375],[16.401269531250023,56.31088867187498],[16.394140624999977,56.483642578125],[16.41230468750004,56.56899414062499],[16.630371093750057,56.876855468749994],[16.727734375,56.902001953124966],[16.864648437499994,57.090673828125034],[16.901562500000068,57.17460937499999],[16.9609375,57.25019531250004],[16.995996093750023,57.31777343750002],[17.02539062499997,57.345068359375006],[17.089257812500023,57.33227539062506],[17.11767578125003,57.31982421875],[17.050390625,57.28046874999998],[17.058203125,57.22924804687503],[17.053515625000014,57.20800781250006],[16.883691406250076,56.985205078125034],[16.83828125000005,56.840527343749955],[16.77802734375004,56.80522460937495],[16.52851562500001,56.29052734375]]],[[[19.076464843750045,57.8359375],[18.99375,57.812109375],[18.945117187500017,57.74160156250005],[18.878125,57.7296875],[18.813867187500023,57.70620117187502],[18.790917968750048,57.483105468749955],[18.907910156250068,57.39833984375003],[18.84365234375005,57.38647460937499],[18.784863281250036,57.36108398437497],[18.74287109375001,57.32353515624995],[18.699902343750068,57.24272460937502],[18.53847656250005,57.19692382812502],[18.477343750000017,57.16303710937504],[18.38720703125003,57.08764648437503],[18.34023437500005,56.97822265624995],[18.248925781250023,56.93154296875002],[18.146386718749994,56.920507812500006],[18.20654296875,57.010156249999966],[18.285351562500068,57.083203125],[18.209570312500006,57.13330078125002],[18.163964843750023,57.21171875000002],[18.105078125000034,57.271875],[18.151953124999977,57.33906250000001],[18.12890625,57.44916992187498],[18.136523437500045,57.55664062500003],[18.204882812500017,57.61088867187495],[18.283203125,57.655126953125006],[18.40517578125005,57.75683593750003],[18.537402343749985,57.83056640625005],[18.721875,57.863720703124955],[18.80517578125003,57.83315429687505],[18.841113281250045,57.90019531250001],[18.90058593750001,57.91547851562504],[18.956445312500023,57.9],[19.076464843750045,57.8359375]]],[[[19.15634765625006,57.922607421874964],[19.13837890625004,57.860253906249966],[19.086523437500034,57.86499023437506],[19.039257812500008,57.91103515625002],[19.13486328125003,57.981347656250016],[19.28115234375008,57.977539062499964],[19.331445312500023,57.96289062499999],[19.15634765625006,57.922607421874964]]],[[[18.41621093750001,59.02910156250005],[18.371875,59.01958007812499],[18.349902343750074,59.022607421874966],[18.377246093750045,59.06904296875001],[18.397558593750006,59.08911132812502],[18.464941406250063,59.10786132812504],[18.485546875,59.10458984374998],[18.41621093750001,59.02910156250005]]],[[[18.59541015625001,59.470361328124994],[18.57031250000003,59.437255859375],[18.545117187500068,59.47783203124998],[18.555175781250057,59.485791015625004],[18.572363281250002,59.525830078125004],[18.620898437500045,59.547802734374955],[18.69843750000004,59.53461914062501],[18.69794921875001,59.52460937500001],[18.623828125000017,59.4921875],[18.59541015625001,59.470361328124994]]],[[[22.854101562500034,68.36733398437502],[22.975390625000045,68.31645507812505],[23.09785156250004,68.25756835937506],[23.18251953125008,68.13662109375002],[23.318554687500065,68.13032226562498],[23.35546875000003,68.08867187500002],[23.474218749999977,68.01733398437504],[23.63886718750004,67.95439453125],[23.632910156249977,67.93320312500003],[23.50185546875002,67.87519531249995],[23.487792968749996,67.79658203125001],[23.500195312500036,67.69619140625],[23.541308593750074,67.61430664062502],[23.53701171875008,67.59038085937502],[23.504492187500034,67.56215820312505],[23.46542968750006,67.51787109374999],[23.451464843750045,67.47919921875001],[23.454882812500045,67.46025390625007],[23.468066406250074,67.449951171875],[23.537109375,67.449169921875],[23.660839843749983,67.44003906250003],[23.733593750000065,67.42290039062497],[23.774902343750057,67.32861328124997],[23.76093750000004,67.31049804687501],[23.656640625000023,67.26782226562503],[23.626074218750006,67.23393554687505],[23.62304687500003,67.18413085937502],[23.64150390625005,67.12939453124997],[23.677343750000063,67.06811523437503],[23.758984375,67.002587890625],[23.86933593750001,66.93403320312498],[23.941796875000023,66.87783203124997],[23.97607421875,66.838232421875],[23.988574218750042,66.81054687500003],[23.93886718750005,66.77573242187505],[23.894140625,66.70688476562506],[23.885839843750006,66.62802734374996],[23.865527343750045,66.57661132812497],[23.768359375000042,66.50585937500004],[23.70117187500003,66.48076171874997],[23.68203125000005,66.44340820312502],[23.673828125000053,66.38071289062503],[23.693554687499983,66.304296875],[23.70029296875003,66.25263671874998],[23.720996093750074,66.21542968750003],[23.75146484374997,66.19116210937497],[23.907324218750034,66.14824218750002],[23.994628906250053,66.06035156250005],[24.04902343750004,65.98984375],[24.15546875000004,65.80527343750006],[23.89052734375008,65.78222656249997],[23.69140625,65.828515625],[23.592089843750017,65.80532226562497],[23.41835937500005,65.80434570312505],[23.221093750000023,65.78613281249997],[23.154589843750074,65.74990234374995],[23.102343750000074,65.73535156250003],[22.919335937499994,65.78647460937503],[22.74658203124997,65.870947265625],[22.62031250000001,65.80654296875005],[22.538574218750053,65.79433593750005],[22.465136718750017,65.85263671875],[22.400976562500006,65.86210937499997],[22.366308593750063,65.84267578125002],[22.3359375,65.79116210937502],[22.28759765625,65.75063476562502],[22.275,65.725],[22.266601562499996,65.62153320312501],[22.254003906250006,65.59755859375002],[22.086230468750017,65.61093749999998],[22.096289062500002,65.58378906250005],[22.1328125,65.57011718750002],[22.147558593750063,65.55288085937497],[22.086718750000017,65.53022460937498],[21.92011718750001,65.53237304687497],[21.903125,65.50834960937505],[21.95,65.47036132812502],[21.91347656250008,65.437109375],[21.87958984375001,65.42402343750001],[21.680664062499996,65.40336914062507],[21.565527343750063,65.40810546874995],[21.532617187500023,65.386572265625],[21.52343750000003,65.35859375000001],[21.545214843750017,65.33115234375],[21.595996093750045,65.31655273437495],[21.61269531250008,65.29912109375005],[21.609179687500074,65.261376953125],[21.56689453125,65.25454101562502],[21.446875,65.32084960937505],[21.410351562500068,65.31743164062505],[21.43779296875007,65.28295898437506],[21.50634765625,65.24536132812503],[21.545996093750006,65.20698242187501],[21.580664062500034,65.16079101562502],[21.57392578125001,65.12578124999999],[21.424902343750002,65.01269531250006],[21.29375,64.94125976562498],[21.195898437500006,64.87690429687501],[21.138183593750057,64.80869140625006],[21.20498046875008,64.77431640625],[21.27929687500003,64.72470703125],[21.33154296875,64.62934570312501],[21.39384765624999,64.54433593750002],[21.519628906250034,64.46308593749998],[21.494335937500036,64.41611328125],[21.46503906250001,64.37958984375004],[21.255761718750023,64.29916992187499],[21.01845703125008,64.17797851562499],[20.76269531250003,63.86782226562505],[20.677636718750023,63.826269531250006],[20.453710937500034,63.773730468750074],[20.371386718750074,63.72290039062499],[20.204687500000034,63.66245117187503],[19.913671875000063,63.61054687500004],[19.78164062500008,63.538183593750034],[19.722070312500023,63.463330078124976],[19.655761718750025,63.45800781250006],[19.59003906250004,63.48725585937495],[19.502343750000023,63.50903320312505],[19.49091796875001,63.46020507812505],[19.494628906250057,63.42436523437502],[19.354296875000074,63.47749023437501],[19.2880859375,63.428759765625045],[19.236328125,63.34736328124998],[19.034375,63.23774414062501],[18.816699218750045,63.257470703125044],[18.792285156250042,63.238134765625],[18.850195312500034,63.22412109375],[18.85898437500006,63.20659179687499],[18.819433593749977,63.19726562500002],[18.759570312500045,63.19824218749998],[18.667187500000068,63.17656249999998],[18.60644531250003,63.17827148437499],[18.57763671875003,63.12641601562499],[18.53066406250005,63.06352539062504],[18.407714843750057,63.0375],[18.34423828125,63.03212890624996],[18.31289062500008,62.996386718750045],[18.502050781249977,62.98886718750003],[18.486914062500006,62.95859375],[18.48261718750004,62.928320312500034],[18.46308593750004,62.895849609375006],[18.24804687500003,62.849072265624976],[18.214941406250034,62.81220703125001],[18.170019531250034,62.789355468750074],[18.07441406250001,62.790673828124994],[18.077929687500014,62.81196289062496],[18.093554687500074,62.83603515624998],[17.951074218749994,62.833886718749994],[17.906640625000023,62.88676757812502],[17.87958984375001,62.873193359374994],[17.895605468749977,62.83051757812501],[17.932910156250045,62.78613281250003],[17.974414062500045,62.721044921875006],[17.940722656250017,62.679882812499976],[17.903027343750068,62.65947265624998],[17.930468750000074,62.640625],[18.006542968750036,62.626269531250074],[18.037304687500068,62.60053710937498],[17.947070312500074,62.578466796875],[17.834472656250057,62.50273437500002],[17.7177734375,62.50087890624999],[17.646386718750023,62.45087890625004],[17.570605468750045,62.45102539062498],[17.50898437500001,62.48251953125],[17.410253906250063,62.508398437500034],[17.378417968750053,62.46279296874996],[17.373339843750074,62.42651367187505],[17.429003906250045,62.33471679687499],[17.53525390625003,62.263671875],[17.633691406249994,62.23300781250006],[17.56289062500005,62.21230468750002],[17.510156250000048,62.16630859375005],[17.446582031250074,62.02265625],[17.41201171875005,61.966113281250045],[17.374511718750057,61.86630859375003],[17.39824218749999,61.782080078125034],[17.41728515625007,61.74067382812505],[17.465429687500006,61.684472656250044],[17.334570312500006,61.69169921874999],[17.196386718750006,61.72456054687503],[17.215625,61.656347656250006],[17.13076171875005,61.57573242187498],[17.146582031250063,61.50463867187499],[17.16425781250004,61.45830078125004],[17.137988281250017,61.381689453125006],[17.177929687500068,61.35761718749998],[17.199609375000023,61.31196289062501],[17.163867187500045,61.278271484374976],[17.179785156250006,61.24926757812503],[17.18574218750004,61.146533203125045],[17.212890625,60.98583984374999],[17.20292968749999,60.95185546875001],[17.278906250000034,60.81215820312497],[17.261230468750057,60.76318359375003],[17.25097656250003,60.70078125],[17.35986328125,60.640820312499955],[17.45703125,60.641796874999976],[17.555468750000045,60.64272460937499],[17.593066406250074,60.62768554687503],[17.630761718750023,60.58525390625002],[17.6611328125,60.53515625000002],[17.7421875,60.53930664062497],[17.871582031250057,60.58007812500002],[17.955761718750068,60.589794921874955],[18.011328125000034,60.511425781249976],[18.1625,60.40791015625004],[18.250488281249996,60.361523437499976],[18.4,60.33710937499998],[18.557519531250023,60.25356445312502],[18.535449218750045,60.152880859375024],[18.601171875000034,60.11923828125],[18.78701171875005,60.0794921875],[18.85273437500001,60.02587890625],[18.884277343750057,59.98017578125001],[18.933203124999977,59.942285156250016],[18.99042968750001,59.82778320312496],[18.970507812500045,59.757226562499994],[18.895605468750063,59.73295898437501],[18.71875,59.65737304687496],[18.639941406250017,59.600927734375034],[18.578125,59.56577148437506],[18.402441406250034,59.49038085937496],[18.338085937500065,59.47685546875007],[18.276464843750034,59.437646484374966],[18.216894531250063,59.420507812500034],[18.163574218750057,59.43037109375001],[17.964257812500023,59.359375],[17.97978515625007,59.329052734374976],[18.132617187500045,59.31621093750002],[18.210546875000034,59.331445312500016],[18.27050781249997,59.36713867187502],[18.336035156250006,59.37534179687498],[18.395800781250017,59.36860351562504],[18.45917968750004,59.39672851562499],[18.508886718750063,59.407958984374964],[18.56025390625004,59.39448242187499],[18.61757812500008,59.32705078124999],[18.498632812500006,59.291943359374955],[18.41425781250004,59.29033203124998],[18.373046875,59.179736328125024],[18.321972656250068,59.13222656250002],[18.285351562500068,59.109375],[18.09814453125003,59.06230468749999],[17.974609375,59.00263671874998],[17.829003906249994,58.95458984374997],[17.765429687500017,58.96503906249998],[17.66962890625004,58.916210937499976],[17.45673828125001,58.85839843749999],[17.34765625,58.78051757812502],[17.102832031250042,58.71083984374997],[16.978125,58.65415039062506],[16.63935546875004,58.651171875000074],[16.315820312500023,58.66362304687502],[16.214257812500023,58.636669921874955],[16.31806640625004,58.62832031250002],[16.39082031250001,58.601855468750045],[16.478027343750025,58.612890625],[16.68300781250005,58.599658203125045],[16.788476562500023,58.58525390625004],[16.92382812499997,58.492578125],[16.824316406250063,58.45961914062503],[16.651953125,58.43432617187502],[16.716601562500045,58.302880859374994],[16.76992187500008,58.21425781249996],[16.70009765625005,58.16079101562499],[16.69492187500006,57.917529296874996],[16.596972656250017,57.91289062500005],[16.555371093750068,57.81225585937505],[16.586230468750045,57.76093749999998],[16.583789062500074,57.641748046875044],[16.604199218750068,57.568310546875004],[16.65224609375008,57.50068359374998],[16.63085937499997,57.43017578124999],[16.47597656250005,57.26513671875006],[16.479492187500057,57.187695312499976],[16.50732421875003,57.141699218750034],[16.527929687500063,57.06816406249999],[16.45751953125003,56.92680664062495],[16.4078125,56.808691406250055],[16.348730468750063,56.70927734374996],[16.21650390625004,56.589990234374994],[16.150683593750045,56.500830078125034],[15.996679687500006,56.22260742187501],[15.92031250000008,56.167382812499966],[15.826660156250028,56.12495117187501],[15.722265625000063,56.16420898437502],[15.6265625,56.18559570312504],[15.509667968749994,56.18300781250005],[15.3265625,56.150830078124955],[15.051171875000023,56.17221679687506],[14.782031250000015,56.16191406250002],[14.713964843750004,56.13413085937503],[14.754785156250051,56.03315429687498],[14.655566406249987,56.019921875000016],[14.558593750000057,56.04863281250002],[14.473242187500064,56.014355468749955],[14.401953125000032,55.97675781250004],[14.261914062500011,55.88754882812497],[14.21503906250004,55.83261718749998],[14.202929687500074,55.72915039062502],[14.276464843750034,55.636376953124966],[14.341699218749994,55.52773437500002],[14.173730468750078,55.39663085937496],[14.079980468750051,55.392187500000034],[13.806347656250011,55.428564453125],[13.321386718750063,55.34638671875004],[12.88583984375006,55.41137695312506],[12.940625,55.48159179687505],[12.938769531250017,55.53320312499999],[12.963378906250057,55.61259765625001],[12.97802734375,55.69379882812504],[12.973925781250074,55.74814453125],[12.941992187500034,55.806054687499994],[12.834570312500006,55.88183593750006],[12.592578124999989,56.137597656250016],[12.52099609374997,56.245556640624976],[12.471191406250055,56.29052734375],[12.507031250000068,56.29296874999997],[12.706347656250074,56.235009765624966],[12.752832031250051,56.242138671875004],[12.80166015625005,56.26391601562499],[12.7421875,56.346875],[12.691113281250011,56.38442382812505],[12.65644531250004,56.440576171875016],[12.77314453125001,56.45576171875001],[12.857421875000028,56.45239257812503],[12.91953125,56.515576171875004],[12.883691406250051,56.61772460937496],[12.793164062500011,56.64916992187497],[12.717578125000072,56.662841796875],[12.572656250000023,56.82329101562502],[12.421484375000034,56.90639648437496],[12.15185546875,57.22695312499999],[12.053222656249972,57.446972656249976],[11.961523437500034,57.42607421874999],[11.916992187500028,57.521923828124955],[11.885058593750017,57.61269531249999],[11.878710937500045,57.67944335937499],[11.734960937500063,57.717675781249966],[11.729101562500034,57.76445312499999],[11.703222656250006,57.97319335937495],[11.549023437500038,58.001220703125],[11.449316406250063,58.11835937499995],[11.43154296875008,58.339990234374994],[11.32998046875008,58.38032226562495],[11.24824218750004,58.369140625],[11.252050781250006,58.424072265625],[11.271582031250006,58.47563476562502],[11.22382812500004,58.679931640624964],[11.20791015625008,58.866406249999955],[11.169140624999981,58.92270507812506],[11.14716796875004,58.98862304687497],[11.16689453125008,59.04555664062502],[11.19580078125,59.07827148437505],[11.295312500000023,59.086865234375004],[11.388281250000063,59.03652343749996],[11.470703125000057,58.90952148437503],[11.543554687500063,58.893017578124955],[11.64277343750004,58.926074218750024],[11.712207031250045,59.01865234374998],[11.75185546875005,59.15756835937503],[11.798144531250072,59.28989257812498],[11.743359375000011,59.431445312500045],[11.684863281250074,59.55576171874998],[11.680761718750032,59.59228515625002],[11.834277343750044,59.697167968749994],[11.88125,59.78247070312497],[11.93212890625,59.86367187499999],[11.98828125,59.89130859375004],[12.071875,59.897607421874994],[12.169238281250074,59.91289062499999],[12.291992187500057,59.96723632812495],[12.402050781249981,60.04003906250006],[12.486132812500074,60.106787109375055],[12.514648437500028,60.23886718750006],[12.515820312499983,60.305224609375074],[12.552832031250063,60.35449218749997],[12.588671874999989,60.450732421875045],[12.553808593750006,60.54565429687502],[12.445312500000027,60.68964843749995],[12.314648437500038,60.89213867187498],[12.294140625000038,61.00268554687506],[12.353710937500011,61.023193359374964],[12.467578125000017,61.041503906249964],[12.683007812500021,61.04682617187498],[12.706054687500028,61.059863281250074],[12.727832031250017,61.10825195312497],[12.776367187500057,61.17397460937505],[12.828222656250034,61.22182617187502],[12.86367187500008,61.29028320312503],[12.88076171875008,61.35229492187506],[12.75751953125004,61.44570312499997],[12.59609375,61.54130859375001],[12.486816406250028,61.57299804687497],[12.292089843750063,61.653466796875016],[12.155371093750004,61.720751953125045],[12.233691406250074,61.97685546875001],[12.291992187500057,62.16743164062501],[12.301367187500006,62.213769531250044],[12.303515625000074,62.28559570312501],[12.114550781250045,62.59189453124998],[12.121875,62.660009765625006],[12.13984375000004,62.72133789062496],[12.11962890625,62.82592773437497],[12.108593750000068,62.91948242187501],[12.141015625000023,62.94785156250003],[12.218164062500023,63.000634765625016],[12.144628906250034,63.08251953125002],[12.138671874999972,63.089160156250045],[11.99990234375005,63.291699218750004],[12.212109375000011,63.49223632812498],[12.17519531250005,63.59594726562499],[12.30195312500004,63.671191406250045],[12.532714843750057,63.84355468749999],[12.6625,63.94047851562502],[12.690039062500032,63.95742187499999],[12.792773437500017,64],[12.987597656250017,64.05048828124995],[13.203515625000023,64.07509765625],[13.299609375000074,64.07480468750003],[13.670703125000074,64.040625],[13.960546875000063,64.01401367187498],[14.002734375000044,64.04072265625001],[14.063281250000045,64.09550781250007],[14.141210937500006,64.17353515624998],[14.148046874999977,64.26030273437507],[14.119921875000017,64.38774414062502],[14.077636718750028,64.46401367187498],[13.873535156250028,64.51357421874997],[13.650292968750023,64.58154296874997],[13.92480468749997,64.79677734375001],[14.115136718750023,64.946142578125],[14.352441406250051,65.17084960937504],[14.42626953125,65.26435546874998],[14.479687500000038,65.30146484374998],[14.549511718750068,65.64638671875002],[14.595800781249977,65.74287109374995],[14.634570312500074,65.79326171874999],[14.635156250000023,65.84501953125007],[14.609960937500036,65.932275390625],[14.543261718750044,66.12934570312498],[14.91796875,66.1537109375],[15.0400390625,66.16752929687503],[15.153320312500057,66.19106445312505],[15.37490234375008,66.25205078125002],[15.483789062500051,66.30595703124999],[15.422949218750006,66.48984374999996],[15.55703125000005,66.55209960937506],[15.884179687500021,66.76884765625007],[16.23769531250008,66.97641601562498],[16.40351562500004,67.05498046875002],[16.420703125000074,67.093359375],[16.434277343749983,67.15507812500007],[16.360644531249985,67.25200195312499],[16.281542968750045,67.31206054687506],[16.12744140625,67.42583007812507],[16.193554687500068,67.50517578125006],[16.30712890625003,67.52060546875],[16.457128906250034,67.55175781250006],[16.57412109375005,67.61958007812501],[16.585546874999974,67.62832031250002],[16.783593750000023,67.89501953125],[17.170507812500063,68.03012695312498],[17.324609375000023,68.10380859374999],[17.564746093750074,68.04843749999998],[17.916699218750008,67.96489257812502],[18.073242187500025,68.08784179687501],[18.125,68.133447265625],[18.17666015625005,68.20063476562498],[18.15595703125001,68.31684570312495],[18.14707031250006,68.46777343749997],[18.16259765625003,68.52841796874998],[18.303027343750045,68.55541992187497],[18.378613281250068,68.56240234374997],[18.769824218750017,68.50004882812507],[18.868261718749977,68.50112304687502],[19.05263671875008,68.49272460937499],[19.25898437500001,68.46533203125],[19.691210937500045,68.39243164062498],[19.87001953125005,68.36225585937497],[19.969824218750063,68.35639648437501],[20.055957031250014,68.39038085937503],[20.240039062500042,68.4775390625],[19.96884765625003,68.54204101562502],[20.147460937499996,68.60732421875],[20.240039062500042,68.67314453125007],[20.31943359375003,68.75405273437502],[20.348046875000023,68.84873046875002],[20.33710937500001,68.89965820312503],[20.282324218750034,68.934326171875],[20.116699218750057,69.02089843750005],[20.491992187500017,69.03330078124998],[20.622167968750006,69.036865234375],[20.895117187500006,68.97983398437502],[20.907031250000014,68.96748046874998],[20.908984375000074,68.93774414062497],[20.91855468750006,68.90693359375001],[21.183398437500017,68.82880859374998],[21.25976562500003,68.787451171875],[21.42236328125003,68.72460937499997],[21.465429687500002,68.69067382812499],[21.616015625000045,68.6509765625],[21.724023437500023,68.60854492187497],[21.850195312500063,68.57412109374997],[21.99746093750005,68.52060546874998],[22.195117187500074,68.477978515625],[22.362109375000074,68.46406250000001],[22.78242187500001,68.39101562499995],[22.854101562500034,68.36733398437502]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ukraine","sov_a3":"UKR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ukraine","adm0_a3":"UKR","geou_dif":0,"geounit":"Ukraine","gu_a3":"UKR","su_dif":0,"subunit":"Ukraine","su_a3":"UKR","brk_diff":0,"name":"Ukraine","name_long":"Ukraine","brk_a3":"UKR","brk_name":"Ukraine","brk_group":null,"abbrev":"Ukr.","postal":"UA","formal_en":"Ukraine","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ukraine","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":6,"mapcolor13":3,"pop_est":45700395,"gdp_md_est":339800,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"UA","iso_a3":"UKR","iso_n3":"804","un_a3":"804","wb_a2":"UA","wb_a3":"UKR","woe_id":-99,"adm0_a3_is":"UKR","adm0_a3_us":"UKR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"UKR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[32.01220703124997,46.20390624999998],[32.15009765625004,46.1546875],[32.009375,46.167822265625006],[31.700195312500025,46.21406250000001],[31.56386718750005,46.25776367187503],[31.528710937499998,46.30659179687504],[31.50878906250003,46.37314453125],[31.58486328124999,46.303173828124955],[31.63847656250007,46.27255859375003],[32.01220703124997,46.20390624999998]]],[[[33.4518554687501,52.33378906250002],[33.61337890625006,52.33261718750006],[33.735253906249994,52.34477539062504],[33.81884765624997,52.315625],[33.92207031250003,52.25146484375003],[34.01533203125004,52.15595703125004],[34.113085937500074,51.979638671874994],[34.397851562499994,51.78041992187499],[34.40273437499999,51.74150390624996],[34.37929687500005,51.71650390625004],[34.239160156249994,51.69223632812506],[34.12109375000002,51.67915039062498],[34.11542968750004,51.64497070312501],[34.14677734375002,51.607958984375045],[34.20087890625004,51.553808593750006],[34.20927734375002,51.48408203125001],[34.20654296875003,51.419921875],[34.229882812499994,51.36323242187501],[34.275,51.340185546875006],[34.280664062499994,51.311669921874966],[34.22841796875005,51.27685546875],[34.21386718750003,51.25537109375006],[34.234179687500074,51.24379882812499],[34.491015625000074,51.23706054687506],[34.616796875,51.203125],[34.71230468750005,51.17221679687498],[34.76035156250006,51.16933593750002],[34.86855468749999,51.18920898437499],[34.99023437499997,51.20175781250006],[35.0640625,51.203417968750045],[35.092578125000074,51.18066406250003],[35.11533203125006,51.12084960937499],[35.158105468749994,51.06098632812498],[35.19804687500002,51.043896484374955],[35.26914062500006,51.04677734375002],[35.31191406250005,51.043896484374955],[35.33476562500002,51.02114257812502],[35.30908203125003,50.98691406249998],[35.31474609375001,50.949902343749976],[35.34609375,50.90429687500003],[35.38320312499999,50.79892578125006],[35.41738281250005,50.76757812499997],[35.4401367187501,50.72768554687502],[35.4401367187501,50.682080078124955],[35.41162109375003,50.64223632812502],[35.39169921875006,50.610937500000034],[35.41162109375003,50.539697265624994],[35.48847656250004,50.459912109375004],[35.54550781250006,50.43999023437502],[35.59111328125002,50.36875],[35.67373046875005,50.34599609374998],[35.79619140625002,50.40576171874997],[35.890234375,50.43710937499998],[36.00781249999997,50.41967773437497],[36.11640625000009,50.408544921875006],[36.18945312499997,50.367822265624994],[36.2433593750001,50.31176757812503],[36.306054687499994,50.28046875000004],[36.3688476562501,50.29682617187498],[36.49980468750002,50.28046875000004],[36.55966796875006,50.23486328124997],[36.61943359375007,50.209228515625],[36.696386718750006,50.246240234374994],[36.75908203125002,50.291845703125034],[36.98847656250003,50.33955078124998],[37.13125,50.35151367187504],[37.1710937500001,50.36088867187499],[37.25488281250003,50.39497070312501],[37.343164062499994,50.417626953124994],[37.422851562499964,50.411474609375006],[37.501367187499994,50.340722656249966],[37.58232421875002,50.291845703125034],[37.60507812500006,50.214941406250006],[37.704199218750006,50.10908203125004],[37.95029296875006,49.964208984375006],[38.046875,49.92001953125006],[38.1125,49.927832031250055],[38.14677734375002,49.93940429687501],[38.16269531250006,49.954541015624976],[38.177539062500074,50.02539062500003],[38.2086914062501,50.05146484375001],[38.258593750000074,50.05234375],[38.45117187500003,49.964062499999976],[38.55195312500004,49.95458984375],[38.64775390625002,49.95288085937499],[38.77666015625002,49.88432617187499],[38.91835937499999,49.82470703125],[39.02773437499999,49.81840820312495],[39.1149414062501,49.84174804687501],[39.17480468750003,49.85595703124997],[39.21181640624999,49.833203124999955],[39.24599609375005,49.78193359374998],[39.3029296875001,49.74204101562503],[39.36845703125002,49.73066406250004],[39.462792968749994,49.72802734375003],[39.626562500000055,49.65068359374999],[39.780566406250074,49.57202148437503],[39.87685546875005,49.56767578125004],[39.95849609374997,49.59077148437504],[40.03066406250005,49.59672851562501],[40.080664062500006,49.576855468749955],[40.09492187500004,49.54267578125001],[40.05781250000004,49.49707031250006],[40.05781250000004,49.431542968750016],[40.12617187500004,49.36884765625004],[40.12832031250005,49.307226562500006],[40.10878906250005,49.25156250000003],[40.07001953125003,49.20029296874998],[39.976367187500074,49.12983398437501],[39.889746093750006,49.064062500000034],[39.75947265625004,49.03657226562501],[39.68652343749997,49.007910156250034],[39.705664062500006,48.95957031250006],[39.753320312499994,48.91445312500002],[39.86376953124997,48.877978515625045],[39.989160156249994,48.851416015625034],[40.00361328125004,48.82207031250002],[39.98447265625006,48.80737304687505],[39.90410156250002,48.79375],[39.792871093749994,48.807714843750034],[39.75585937500003,48.782080078125034],[39.70458984375002,48.739355468750034],[39.67041015625002,48.662451171875006],[39.64472656250009,48.59121093749996],[39.76542968750002,48.571875],[39.8356445312501,48.54277343749996],[39.857519531250006,48.484228515625034],[39.882617187500074,48.41909179687499],[39.88984375000004,48.360449218750034],[39.849902343750074,48.331933593749994],[39.84746093750002,48.30278320312502],[39.866308593750006,48.288427734375],[39.91816406250003,48.28193359375001],[39.95791015625005,48.26889648437503],[39.96103515625006,48.23793945312502],[39.88505859375002,48.168359374999966],[39.81396484375003,48.03530273437505],[39.77578125,47.964453125],[39.778710937500044,47.88754882812506],[39.7359375,47.844824218750055],[39.658496093750074,47.84121093750002],[39.39101562499999,47.83374023437502],[39.158496093750074,47.83740234375005],[39.0578125000001,47.848486328125006],[38.90029296875005,47.85512695312502],[38.82226562499997,47.83701171874998],[38.71894531250004,47.71411132812497],[38.640625,47.66591796875002],[38.51093750000003,47.622412109375034],[38.36884765625004,47.609960937500006],[38.28740234375007,47.559179687500034],[38.25878906250003,47.47954101562499],[38.2565429687501,47.40893554687497],[38.243261718750055,47.373681640624994],[38.21240234374997,47.34277343749999],[38.20136718750004,47.32080078124997],[38.20800781249997,47.29653320312499],[38.24101562500002,47.28769531249998],[38.28076171874997,47.276660156250045],[38.28076171874997,47.259033203125],[38.26533203125009,47.23696289062502],[38.22119140624997,47.21274414062498],[38.20136718750004,47.17524414062498],[38.205859375000074,47.13559570312498],[38.21435546875003,47.091455078124966],[38.17832031250006,47.08022460937499],[37.82871093750006,47.095849609374966],[37.54335937499999,47.07456054687498],[37.33984375000003,46.916894531250016],[37.21855468750002,46.917333984375006],[37.0475585937501,46.87622070312499],[36.93203125,46.82514648437498],[36.794824218749994,46.71440429687499],[36.68867187500004,46.764111328124976],[36.55878906250004,46.76269531250006],[36.43203125,46.73256835937502],[36.2794921875001,46.658593749999966],[36.19462890625002,46.64550781249997],[36.02490234375003,46.66679687499996],[35.82714843749997,46.62431640625002],[35.40019531250002,46.38139648437499],[35.256640625000074,46.20390624999998],[35.20439453125002,46.169189453125],[35.132324218749964,46.125878906249994],[35.055273437500006,46.10400390625006],[35.01455078125005,46.10600585937502],[35.21777343749997,46.23217773437505],[35.280175781249994,46.27949218750001],[35.29091796875005,46.31440429687501],[35.29199218749997,46.370703125000034],[35.230371093750044,46.440625],[35.0640625,46.267236328124994],[34.96953125000002,46.24208984375002],[34.84960937500003,46.189892578124955],[34.84375,46.07358398437498],[34.857324218749994,45.98735351562502],[34.90664062499999,45.878808593749994],[35.022851562500044,45.70097656250001],[35.26015625,45.44692382812505],[35.373925781249994,45.353613281250034],[35.457519531249964,45.316308593749994],[35.558007812499994,45.310888671875034],[35.75097656249997,45.38935546875004],[35.83349609375003,45.40161132812506],[36.01289062500004,45.37167968749998],[36.07714843749997,45.42412109375002],[36.1705078125,45.453076171874955],[36.29033203125007,45.45673828124998],[36.42705078125007,45.433251953124994],[36.575,45.3935546875],[36.51425781250006,45.30375976562502],[36.45078125,45.23232421875002],[36.42841796875004,45.15327148437498],[36.39335937500002,45.06538085937501],[36.22988281250005,45.02597656249997],[36.05478515625006,45.03081054687499],[35.87011718750003,45.005322265624955],[35.803613281250044,45.03959960937501],[35.75947265625004,45.07084960937499],[35.67753906250002,45.10200195312501],[35.56953125000004,45.11933593750001],[35.472558593749994,45.098486328125006],[35.3578125,44.978417968749994],[35.15478515625003,44.89633789062503],[35.08769531250002,44.802636718749966],[34.887792968750006,44.82358398437506],[34.716894531250006,44.80712890625],[34.46992187500004,44.72167968749999],[34.28173828124997,44.53842773437506],[34.0744140625001,44.423828124999964],[33.909960937500074,44.387597656249966],[33.75566406250002,44.39892578125005],[33.655859375,44.433203125],[33.45068359374997,44.553662109374955],[33.46269531250002,44.59682617187505],[33.491308593750055,44.618603515624955],[33.530078125000074,44.680517578125034],[33.612207031249994,44.90781249999998],[33.60117187500006,44.98149414062499],[33.55517578125003,45.09765625000003],[33.392480468749994,45.187841796875006],[33.261523437500074,45.170751953125006],[33.18691406250005,45.19477539062501],[32.9186523437501,45.34814453124999],[32.77265625000004,45.35898437499998],[32.61132812500002,45.32807617187498],[32.55185546875006,45.35039062499999],[32.5080078125001,45.40380859375005],[32.828027343749994,45.59301757812505],[33.1422851562501,45.74921874999998],[33.28007812500002,45.76523437500006],[33.466210937499994,45.83793945312502],[33.664843750000074,45.94707031249996],[33.63671875000003,46.03286132812505],[33.59414062500005,46.09624023437499],[33.498828125000074,46.078857421875],[33.42988281250004,46.05761718750003],[33.26347656250002,46.12568359375004],[33.20224609375006,46.17573242187501],[32.94179687499999,46.123779296875],[32.796875,46.131494140624966],[32.47675781250004,46.08369140625001],[32.329882812500074,46.13037109374999],[32.035742187500006,46.26098632812497],[31.925195312500048,46.287255859374994],[31.8312500000001,46.28168945312501],[31.77998046875004,46.32465820312498],[31.842871093750063,46.34614257812501],[31.915917968749998,46.34868164062499],[31.99169921874997,46.364404296874994],[32.013085937499994,46.38715820312501],[32.00849609375004,46.42998046875002],[31.855761718750017,46.46245117187499],[31.713671875000017,46.47177734375],[31.62363281250006,46.51025390625003],[31.554882812500097,46.554296875000034],[31.71601562500004,46.55498046875002],[31.87792968749997,46.521679687499976],[32.13144531250006,46.509375],[32.36132812499997,46.474951171875034],[32.418945312499964,46.51777343749998],[32.55253906250002,46.59199218749998],[32.578027343749994,46.615625],[32.354101562500006,46.564843749999966],[32.127246093750074,46.59721679687499],[32.04433593750005,46.64248046874996],[31.974316406250093,46.70878906249999],[31.94492187500006,46.784375],[31.96406250000004,46.85483398437498],[31.939550781250006,46.981982421875045],[31.864746093749968,47.095117187499994],[31.83818359375007,47.15722656250002],[31.759179687500048,47.21284179687501],[31.836914062499968,47.087011718750034],[31.865917968750036,47.00327148437503],[31.912695312500063,46.92612304687503],[31.901660156250014,46.72163085937504],[31.872851562500014,46.649755859375034],[31.779589843750017,46.63164062499998],[31.657031250000017,46.64243164062506],[31.532128906249994,46.664746093749976],[31.56337890625005,46.777294921875004],[31.496875,46.73837890624997],[31.402929687500063,46.62880859375002],[31.32031249999997,46.6125],[31.136816406250006,46.62446289062504],[30.79628906249999,46.55200195312503],[30.772851562499994,46.47304687500002],[30.72167968749997,46.3662109375],[30.672265625000048,46.304003906250045],[30.65673828124997,46.266503906250016],[30.511523437500074,46.105371093749966],[30.49296875000002,46.09013671874998],[30.219042968750074,45.866748046875045],[30.184179687500006,45.84995117187498],[30.006640625000074,45.79794921875006],[29.901660156250074,45.75239257812501],[29.82119140625005,45.73208007812505],[29.68505859375003,45.75468750000004],[29.628417968750025,45.722460937500045],[29.601660156250063,45.68251953124999],[29.60117187500006,45.6],[29.6703125,45.54067382812505],[29.72695312499999,45.34331054687499],[29.70585937500007,45.25991210937505],[29.651953125,45.31391601562504],[29.567675781250074,45.37080078124998],[29.40371093750005,45.41967773437499],[29.22353515625005,45.402929687500034],[29.027441406250063,45.32055664062506],[28.894335937500017,45.28994140625002],[28.82431640625006,45.31108398437498],[28.78173828125,45.30986328125001],[28.766601562500025,45.28623046874998],[28.769824218750074,45.266894531250045],[28.791406250000023,45.25190429687501],[28.78828125000001,45.240966796875],[28.7607421875,45.23413085937503],[28.451269531250006,45.292187499999955],[28.317675781250045,45.347119140624955],[28.2125,45.45043945312506],[28.264843750000036,45.48388671875003],[28.310351562500074,45.49858398437499],[28.47138671875001,45.50717773437506],[28.499023437500057,45.517724609374994],[28.501757812500074,45.541552734375045],[28.513769531250034,45.57241210937502],[28.50947265625004,45.61782226562505],[28.49160156250005,45.66577148437502],[28.562304687500074,45.735791015625004],[28.667578125,45.79384765625002],[28.729296875000074,45.852001953124955],[28.738769531250025,45.937158203124994],[28.849511718750055,45.97866210937502],[28.947753906249968,46.049951171874966],[28.971875,46.12763671874998],[29.00625,46.17646484374998],[28.94375,46.28842773437506],[28.930566406250023,46.362255859375004],[28.92744140625001,46.42412109374998],[28.958398437500023,46.45849609374997],[29.049902343750006,46.49702148437501],[29.146289062500017,46.52690429687496],[29.186230468750068,46.52397460937499],[29.20078125,46.504980468750034],[29.204589843749968,46.37934570312501],[29.223828125000097,46.37695312499997],[29.25458984375004,46.39262695312495],[29.304882812500097,46.46660156250001],[29.339550781250043,46.445068359375],[29.392871093750074,46.43691406250002],[29.43281250000004,46.455957031249994],[29.458789062500017,46.45375976562499],[29.49101562500007,46.434667968750006],[29.55507812499999,46.407763671875045],[29.614941406250097,46.39882812499999],[29.66455078124997,46.416748046875],[29.706835937500017,46.44873046875003],[29.75195312499997,46.43779296875002],[29.83789062499997,46.35053710937501],[29.878027343750063,46.360205078125034],[30.07568359375003,46.37783203124996],[30.107519531250002,46.40156250000001],[30.131054687500097,46.42309570312505],[29.92431640624997,46.53886718750002],[29.934765625000097,46.625],[29.942480468750063,46.72377929687502],[29.918066406250063,46.782421874999976],[29.877832031249994,46.828906250000045],[29.719726562499968,46.882910156250034],[29.597753906250063,46.93881835937503],[29.57197265625004,46.96401367187502],[29.568652343750017,46.99672851562502],[29.56347656250003,47.047509765624994],[29.515039062499994,47.09111328124998],[29.51093750000004,47.12802734375003],[29.541796875000017,47.18554687500003],[29.54931640624997,47.246826171875],[29.539160156250002,47.27099609375003],[29.51064453124999,47.29072265624998],[29.455664062500002,47.292626953124994],[29.383398437500002,47.32802734375002],[29.333789062500014,47.37573242187497],[29.20058593749999,47.44448242187502],[29.159765625,47.455664062500006],[29.134863281250006,47.48969726562501],[29.122949218750048,47.53037109375003],[29.150878906250053,47.58085937500002],[29.18603515625003,47.65859375000005],[29.210742187500017,47.73154296874998],[29.211132812500097,47.775],[29.19482421875006,47.88242187499997],[29.125390625000023,47.96455078125001],[29.09296874999998,47.975439453125034],[29.036914062500017,47.95234375],[28.97333984375004,47.933007812499994],[28.923144531250042,47.951123046874955],[28.865820312499977,47.99565429687496],[28.77382812500008,48.119580078124976],[28.601660156250002,48.14438476562498],[28.530468750000068,48.15029296875002],[28.46308593750001,48.09052734375001],[28.441992187500063,48.10869140624998],[28.42304687500001,48.146875],[28.3875,48.16210937500002],[28.34052734375001,48.144433593749994],[28.326953125000074,48.16142578124999],[28.34716796875003,48.21303710937502],[28.29101562500003,48.23857421874999],[28.158789062500002,48.237988281249955],[28.088476562499977,48.25703125000001],[28.080078125000057,48.29580078124999],[28.038476562500023,48.32128906250006],[27.963378906249996,48.33354492187496],[27.890625,48.36523437500003],[27.82001953125001,48.41625976562503],[27.714453125,48.44951171874996],[27.57373046875,48.46489257812498],[27.562207031250068,48.470410156249955],[27.54921875000008,48.47773437500004],[27.45839843750005,48.44306640624998],[27.40380859375003,48.415625],[27.336914062499996,48.432714843750006],[27.22851562500003,48.37143554687506],[27.008496093750068,48.36826171875003],[26.90058593750001,48.371923828125055],[26.847070312500023,48.38715820312495],[26.640429687500042,48.294140625],[26.618945312500014,48.259863281250055],[26.57246093750004,48.248486328124955],[26.4423828125,48.22998046875],[26.305664062500057,48.203759765624994],[26.276953125000063,48.11323242187504],[26.236230468750023,48.06435546875002],[26.162695312500063,47.992529296875034],[25.90869140625,47.96757812500002],[25.689257812500045,47.93247070312506],[25.46425781250005,47.910791015624994],[25.169628906250068,47.82309570312498],[25.073828125,47.745703125000034],[24.97910156250006,47.72412109374997],[24.89335937499999,47.71777343750002],[24.83789062499997,47.760839843750006],[24.650976562500006,47.87651367187502],[24.57890625000007,47.93105468750005],[24.48408203125001,47.947119140625034],[24.380957031250063,47.938037109375045],[24.28193359375004,47.91118164062499],[24.177734375000057,47.90605468750002],[24.059765624999983,47.944775390624976],[24.047363281250057,47.941015625000034],[24.001855468750023,47.93579101562503],[23.70898437500003,47.98261718749998],[23.68203125000005,47.99038085937505],[23.669042968750063,47.992333984374994],[23.628710937500017,47.995849609375],[23.40820312500003,47.98999023437505],[23.20263671875,48.084521484375045],[23.139453124999985,48.08740234375],[23.09082031250003,48.04912109375002],[23.05478515625006,48.006542968749955],[22.912890625000014,47.964257812499966],[22.87666015625001,47.94726562500006],[22.856054687500006,47.960302734375034],[22.846484374999985,47.9970703125],[22.857226562500045,48.02954101562503],[22.836230468750042,48.060302734375],[22.782226562500053,48.09521484375],[22.769140625000063,48.109619140625],[22.70156250000005,48.10703125],[22.68310546875003,48.10361328125003],[22.67636718750006,48.104394531249994],[22.58242187500002,48.134033203125],[22.52011718750003,48.20537109374995],[22.423828125000057,48.243310546874966],[22.350195312500063,48.25605468749998],[22.31669921875007,48.28662109375],[22.29511718750001,48.327294921875016],[22.272167968750068,48.35800781249998],[22.269433593750023,48.36088867187504],[22.253710937500017,48.407373046874994],[22.23115234375004,48.41215820312499],[22.22714843750003,48.41342773437498],[22.131835937500057,48.40532226562502],[22.142871093750017,48.568505859374966],[22.295214843750042,48.68583984374999],[22.332617187500034,48.745068359374955],[22.389453125000045,48.87348632812501],[22.432031250000023,48.93354492187498],[22.48320312500007,48.983251953125],[22.52412109375004,49.03139648437502],[22.538671875,49.07270507812501],[22.57998046875005,49.07719726562504],[22.701269531249977,49.03994140624999],[22.809765625000065,49.020751953125],[22.83974609375005,49.038916015625055],[22.852050781250057,49.06274414062503],[22.847070312500023,49.08125],[22.760156250000076,49.13623046874997],[22.705664062500006,49.17119140624999],[22.70234375000004,49.19272460937503],[22.721972656250045,49.240966796875],[22.73242187500003,49.29516601562503],[22.719921875000065,49.35380859374998],[22.660644531250057,49.48369140624999],[22.649414062499996,49.53901367187498],[22.706152343750006,49.60620117187497],[22.890722656250034,49.766259765624994],[22.952246093750063,49.82636718749998],[23.036328125000036,49.899072265624966],[23.264453125000074,50.072851562500006],[23.408593750000023,50.173925781250006],[23.506152343750017,50.229833984375034],[23.64902343750006,50.32705078125002],[23.711718750000045,50.377343749999966],[23.97265625,50.410058593749966],[24.004980468750034,50.45703125000003],[24.05263671875005,50.50844726562502],[24.089941406250006,50.53046874999998],[24.0947265625,50.617041015625034],[24.046289062499994,50.722802734374994],[24.007324218750057,50.760156249999966],[23.978417968750023,50.78559570312501],[23.9970703125,50.809375],[24.025976562500034,50.81616210937503],[24.061621093750002,50.819531249999976],[24.105761718750045,50.84497070312503],[24.095800781250063,50.87275390625001],[23.985742187500023,50.94042968750003],[23.938085937499977,50.99252929687498],[23.863476562500068,51.12622070312503],[23.712207031250074,51.26513671875],[23.66445312500002,51.31005859374999],[23.65761718750005,51.35249023437504],[23.6796875,51.394921874999966],[23.65888671875004,51.44897460937497],[23.605273437500045,51.51791992187498],[23.613769531249996,51.525390625],[23.60859375000001,51.61049804687502],[23.64667968750004,51.62885742187504],[23.706835937500045,51.64130859374998],[23.79169921875001,51.63710937500002],[23.864257812500053,51.62397460937501],[23.951171875,51.58505859374998],[23.978320312500017,51.59130859375003],[24.12685546875008,51.664648437500034],[24.280078125000017,51.77470703124998],[24.323730468750025,51.83842773437499],[24.361914062500006,51.86752929687498],[24.495214843750063,51.88305664062503],[24.611328125,51.889501953125006],[24.685156250000034,51.888281250000034],[24.86640625,51.89912109375001],[24.973828125000036,51.91113281249997],[25.066699218750045,51.930517578125034],[25.267187500000034,51.937744140624964],[25.580273437500068,51.92475585937501],[25.785742187500006,51.92382812499999],[25.925292968749996,51.91352539062501],[26.26708984375,51.85502929687502],[26.394335937500074,51.844433593749976],[26.453417968750045,51.813427734374976],[26.566894531250057,51.80190429687502],[26.77343750000003,51.77070312499998],[26.952832031249983,51.754003906250034],[27.074121093750023,51.760839843750006],[27.141992187500076,51.75205078124998],[27.270117187500063,51.61357421875002],[27.29628906250008,51.59741210937502],[27.347656250000053,51.594140624999966],[27.452343750000065,51.60610351562502],[27.601367187500045,51.60161132812499],[27.689746093750017,51.572412109374994],[27.67675781250003,51.48994140624998],[27.7,51.47797851562501],[27.741308593750034,51.482568359374966],[27.788867187500042,51.52915039062506],[27.82880859375001,51.577441406250045],[27.858593750000036,51.59238281250006],[28.010742187500053,51.559765624999976],[28.08027343750001,51.565039062500006],[28.14443359375002,51.601660156250006],[28.18378906250004,51.607861328125004],[28.29160156250006,51.581835937500045],[28.424609375000074,51.563623046874966],[28.532031250000017,51.56245117187501],[28.59902343750008,51.54262695312505],[28.647753906250074,51.45654296875],[28.690234375000017,51.43886718750005],[28.73125,51.43339843749999],[28.793261718750045,51.510351562500034],[28.849511718750055,51.540185546874994],[28.927539062500045,51.56215820312502],[28.977734375000036,51.57177734375003],[29.013085937500048,51.59892578124996],[29.060742187500008,51.625439453124955],[29.102050781250057,51.627539062500034],[29.13564453125008,51.61728515624998],[29.17421875000002,51.58061523437496],[29.23046875000003,51.49702148437498],[29.29882812500003,51.413037109375004],[29.346484375000014,51.38256835937503],[29.469628906249998,51.408349609375044],[29.553125,51.43457031249997],[29.70605468750003,51.439550781250006],[29.908789062500002,51.45800781250003],[30.063769531250074,51.482031250000034],[30.160742187500002,51.477880859375006],[30.219531250000017,51.45122070312499],[30.30898437499999,51.399609374999955],[30.333398437499994,51.32553710937506],[30.449511718750017,51.274316406249994],[30.544531250000063,51.265039062499994],[30.576953125000074,51.318359375],[30.63251953125004,51.35541992187501],[30.61171875000005,51.406347656250006],[30.602343750000017,51.47124023437499],[30.560742187500043,51.531494140625],[30.533007812500017,51.59633789062496],[30.583886718749994,51.68896484375002],[30.639453125000017,51.77006835937502],[30.667285156250017,51.81411132812502],[30.755273437499994,51.89516601562502],[30.84570312500003,51.95307617187501],[30.980664062500097,52.04619140624995],[31.079296875000097,52.07695312500002],[31.16845703124997,52.06293945312501],[31.217968750000093,52.050244140624976],[31.34599609375007,52.10537109375002],[31.573730468750025,52.108105468749955],[31.763378906250093,52.10107421875003],[31.782421875000097,52.09941406249995],[31.87558593750006,52.070898437500034],[31.973828125000097,52.04663085937506],[32.041601562500006,52.04501953124998],[32.12226562500004,52.05058593749996],[32.21679687500003,52.08295898437498],[32.28281250000006,52.114013671875],[32.36298828125003,52.272119140624994],[32.39130859375004,52.29482421874999],[32.435449218749994,52.307226562500034],[32.507910156250006,52.30854492187504],[32.64541015625005,52.27910156249999],[32.806445312500074,52.252636718750004],[32.899707031250074,52.25634765625006],[33.14843750000003,52.340429687500034],[33.28710937500002,52.35356445312496],[33.4518554687501,52.33378906250002]]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Vatican","sov_a3":"VAT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vatican","adm0_a3":"VAT","geou_dif":0,"geounit":"Vatican","gu_a3":"VAT","su_dif":0,"subunit":"Vatican","su_a3":"VAT","brk_diff":0,"name":"Vatican","name_long":"Vatican","brk_a3":"VAT","brk_name":"Vatican","brk_group":null,"abbrev":"Vat.","postal":"V","formal_en":"State of the Vatican City","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vatican (Holy Sea)","name_alt":"Holy Sea","mapcolor7":1,"mapcolor8":3,"mapcolor9":4,"mapcolor13":2,"pop_est":832,"gdp_md_est":355,"pop_year":0,"lastcensus":-99,"gdp_year":0,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":0,"fips_10":null,"iso_a2":"VA","iso_a3":"VAT","iso_n3":"336","un_a3":"336","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"VAT","adm0_a3_us":"VAT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":4,"homepart":1,"filename":"VAT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[12.439160156250011,41.89838867187499],[12.430566406250021,41.89755859375],[12.427539062500015,41.900732421875],[12.430566406250021,41.90546875],[12.438378906250023,41.906201171875],[12.439160156250011,41.89838867187499]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"American Samoa","adm0_a3":"ASM","geou_dif":0,"geounit":"American Samoa","gu_a3":"ASM","su_dif":0,"subunit":"American Samoa","su_a3":"ASM","brk_diff":0,"name":"American Samoa","name_long":"American Samoa","brk_a3":"ASM","brk_name":"American Samoa","brk_group":null,"abbrev":"Am. Samoa","postal":"AS","formal_en":"American Samoa","formal_fr":null,"note_adm0":"U.S.A.","note_brk":null,"name_sort":"American Samoa","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":65628,"gdp_md_est":575.3,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AS","iso_a3":"ASM","iso_n3":"016","un_a3":"016","wb_a2":"AS","wb_a3":"ASM","woe_id":-99,"adm0_a3_is":"ASM","adm0_a3_us":"ASM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":14,"long_len":14,"abbrev_len":9,"tiny":3,"homepart":-99,"filename":"ASM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-170.72626953125,-14.351171875],[-170.76923828125,-14.359765625],[-170.8205078125,-14.312109375],[-170.720849609375,-14.275976562500006],[-170.68916015625,-14.257421875],[-170.56811523437497,-14.26679687500001],[-170.640478515625,-14.282226562499998],[-170.72626953125,-14.351171875]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"New Zealand","sov_a3":"NZ1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Cook Islands","adm0_a3":"COK","geou_dif":0,"geounit":"Cook Islands","gu_a3":"COK","su_dif":0,"subunit":"Cook Islands","su_a3":"COK","brk_diff":0,"name":"Cook Is.","name_long":"Cook Islands","brk_a3":"COK","brk_name":"Cook Is.","brk_group":null,"abbrev":"Cook Is.","postal":"CK","formal_en":null,"formal_fr":null,"note_adm0":"Assoc. with N.Z.","note_brk":null,"name_sort":"Cook Islands","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":11870,"gdp_md_est":183.2,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CK","iso_a3":"COK","iso_n3":"184","un_a3":"184","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"COK","adm0_a3_us":"COK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":8,"long_len":12,"abbrev_len":8,"tiny":3,"homepart":-99,"filename":"COK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-159.74052734375,-21.24921875000001],[-159.77255859375,-21.24951171875],[-159.8130859375,-21.24208984375001],[-159.839599609375,-21.238085937500003],[-159.84248046875,-21.229101562500006],[-159.83203125,-21.200488281250003],[-159.810595703125,-21.18642578125001],[-159.768359375,-21.1884765625],[-159.739501953125,-21.208105468750006],[-159.736865234375,-21.240625],[-159.74052734375,-21.24921875000001]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Country","admin":"Australia","adm0_a3":"AUS","geou_dif":0,"geounit":"Australia","gu_a3":"AUS","su_dif":0,"subunit":"Australia","su_a3":"AUS","brk_diff":0,"name":"Australia","name_long":"Australia","brk_a3":"AUS","brk_name":"Australia","brk_group":null,"abbrev":"Auz.","postal":"AU","formal_en":"Commonwealth of Australia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Australia","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":21262641,"gdp_md_est":800200,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"AU","iso_a3":"AUS","iso_n3":"036","un_a3":"036","wb_a2":"AU","wb_a3":"AUS","woe_id":-99,"adm0_a3_is":"AUS","adm0_a3_us":"AUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AUS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[158.87880859375005,-54.70976562499999],[158.84521484375003,-54.74921875000004],[158.83593750000003,-54.70400390624997],[158.89697265625003,-54.506054687499976],[158.95888671875,-54.47236328125004],[158.94560546875007,-54.575],[158.87880859375005,-54.70976562499999]]],[[[147.35605468750006,-43.39697265625001],[147.30888671875007,-43.50078125000002],[147.23144531250003,-43.48310546874997],[147.15380859375003,-43.5001953125],[147.10498046875003,-43.43115234374996],[147.1046875,-43.412890624999974],[147.16308593750003,-43.43027343749996],[147.18466796875006,-43.4078125],[147.19843750000004,-43.37919921875003],[147.21972656250003,-43.371386718750045],[147.23398437500006,-43.33046874999996],[147.28388671875004,-43.278906250000034],[147.3125,-43.28027343749996],[147.3424804687501,-43.34628906249999],[147.35605468750006,-43.39697265625001]]],[[[147.4345703125,-43.24072265624997],[147.371875,-43.24082031249999],[147.34882812500004,-43.23242187499997],[147.33759765625004,-43.18330078125],[147.29609375000004,-43.16171874999996],[147.31914062500002,-43.14531249999999],[147.3273437500001,-43.114648437499966],[147.35253906249997,-43.08027343749997],[147.39726562500007,-43.11826171874999],[147.4345703125,-43.24072265624997]]],[[[148.10429687500002,-42.710449218750036],[148.04814453125002,-42.71923828124996],[148.0296875,-42.71484374999996],[148.03085937500003,-42.663378906250045],[148.02275390625002,-42.64042968749999],[148.07255859375002,-42.59316406249995],[148.14277343750004,-42.61591796874997],[148.16953125000006,-42.65175781249998],[148.10058593749997,-42.68056640624999],[148.10429687500002,-42.710449218750036]]],[[[145.04296875000003,-40.78671875],[145.15869140624997,-40.790625],[145.22431640625004,-40.76513671875002],[145.28300781250002,-40.76992187500002],[145.34941406250002,-40.82636718749998],[145.42939453125004,-40.85820312499999],[145.48515625000007,-40.85234375000003],[145.53349609375002,-40.86396484374999],[145.57646484375002,-40.9041015625],[145.68603515625003,-40.93906250000002],[145.7337890625,-40.96201171874999],[145.77539062500003,-40.99716796874996],[145.8214843750001,-41.02460937500004],[146.11113281250002,-41.118066406249994],[146.31748046875006,-41.1634765625],[146.5744140625001,-41.142382812499974],[146.6505859375001,-41.11621093749997],[146.72343750000002,-41.07802734375001],[146.78603515625005,-41.11367187499997],[146.84814453124997,-41.16806640624996],[146.8360351562501,-41.109375],[146.856640625,-41.05830078124998],[146.91943359374997,-41.01777343749998],[146.98984375000006,-40.99238281249996],[147.10576171875007,-40.99423828124999],[147.21884765625012,-40.98339843749999],[147.2689453125,-40.959765624999974],[147.32050781250004,-40.95644531250001],[147.38769531249994,-40.985546875],[147.45478515625004,-41.00166015624998],[147.50078125000002,-40.96416015624999],[147.5792968750001,-40.87558593749998],[147.62167968750012,-40.844726562499986],[147.81767578125007,-40.87167968749998],[147.87294921875002,-40.87255859374997],[147.96875,-40.779589843750045],[148.03281250000012,-40.78095703124996],[148.215234375,-40.85488281250002],[148.29287109375,-40.947070312499974],[148.28544921875007,-41.115332031249956],[148.29160156250003,-41.17460937500004],[148.30625,-41.233105468749976],[148.31220703125004,-41.34970703125002],[148.28984375000007,-41.46503906249998],[148.28691406250002,-41.55498046875],[148.29658203125004,-41.646191406250026],[148.28759765624997,-41.81572265625001],[148.31572265625002,-41.927734375],[148.30166015625,-42.004199218750045],[148.30146484375004,-42.03994140624995],[148.32802734375005,-42.07373046875],[148.34082031249997,-42.111132812499974],[148.33105468749997,-42.1591796875],[148.34257812500007,-42.21533203124997],[148.33125,-42.261621093749994],[148.29033203125002,-42.25498046874998],[148.27695312500012,-42.21943359375001],[148.2845703125,-42.17343749999996],[148.27714843750007,-42.13642578124998],[148.25576171875,-42.10263671875002],[148.18310546875003,-42.06474609375003],[148.20439453125007,-42.041992187500014],[148.2416015625,-42.021875],[148.21367187500002,-41.97001953125],[148.16718750000004,-42.012304687500006],[148.14121093750006,-42.06982421875],[148.15625,-42.08828125000002],[148.12753906250006,-42.10371093749997],[148.0666015625001,-42.17031249999995],[148.02275390625002,-42.25947265625],[148.00488281250003,-42.34511718749995],[148.009375,-42.4359375],[147.97353515625005,-42.505859375000014],[147.92441406250006,-42.5724609375],[147.91210937499997,-42.65849609375001],[147.9150390625,-42.81640624999996],[147.95771484375007,-42.960449218749986],[147.980859375,-43.157031249999974],[147.94541015625006,-43.18183593749997],[147.8385742187501,-43.19511718750001],[147.78583984375007,-43.22001953125002],[147.69892578125004,-43.12255859374997],[147.64794921874997,-43.02060546874999],[147.68730468750007,-42.97988281249995],[147.77392578124997,-43.00341796875004],[147.80039062500012,-42.980273437500024],[147.80742187500002,-42.95410156250003],[147.8,-42.928125],[147.69345703125006,-42.871972656249994],[147.57382812500006,-42.845703124999964],[147.53583984375004,-42.87802734374998],[147.54902343750004,-42.97451171875],[147.53671875000012,-42.99648437499995],[147.4523437500001,-43.03339843750001],[147.40800781250002,-42.89384765625],[147.29794921875003,-42.790917968749994],[147.3019531250001,-42.84052734374998],[147.34765624999997,-42.92656250000002],[147.34267578125005,-42.964453125],[147.325,-43.01347656250004],[147.28076171875003,-43.03173828125003],[147.259765625,-43.071093749999974],[147.259765625,-43.12646484374997],[147.24501953125005,-43.21591796874999],[147.17285156249997,-43.25585937499996],[146.99697265625005,-43.15634765625002],[146.98486328124997,-43.18984375],[146.9875,-43.21875],[147.07734375000004,-43.27587890625002],[147.03593750000005,-43.31904296875004],[147.00468750000002,-43.36962890625004],[146.95468750000012,-43.50244140625],[146.87392578125,-43.6125],[146.83427734375002,-43.61933593750001],[146.69921875000003,-43.60195312500002],[146.54853515625004,-43.508886718749984],[146.4131835937501,-43.51953125000003],[146.1867187500001,-43.51279296874998],[146.04316406250004,-43.547167968749974],[146.01308593750005,-43.444824218749986],[145.98173828125005,-43.408398437500026],[145.99443359375005,-43.37607421875002],[146.1087890625,-43.35439453124995],[146.22636718750007,-43.35527343750004],[146.20800781249994,-43.31621093749999],[146.17646484375004,-43.30175781249997],[146.12509765625006,-43.31123046875004],[145.9752929687501,-43.27714843750003],[145.87324218750007,-43.292382812500016],[145.80273437500003,-43.24404296875004],[145.68154296875,-43.07597656249999],[145.60996093750006,-42.998242187500054],[145.56738281250003,-42.96796875000001],[145.51757812499997,-42.9513671875],[145.48759765625002,-42.92666015625004],[145.26816406250006,-42.544335937499945],[145.23710937500007,-42.455566406249986],[145.19882812500006,-42.23085937500004],[145.37294921875,-42.33847656250002],[145.43486328125002,-42.40654296875003],[145.46826171874997,-42.492871093750026],[145.52724609375,-42.388183593750014],[145.51660156249997,-42.3544921875],[145.36035156250003,-42.22753906249997],[145.33964843750007,-42.19072265625003],[145.33105468750003,-42.14707031250002],[145.29443359375003,-42.19101562499999],[145.23486328124997,-42.19697265624997],[145.2589843750001,-42.10732421874999],[145.23818359375,-42.01962890624999],[145.0553710937501,-41.82675781250003],[144.91552734375003,-41.64404296875003],[144.77792968750012,-41.41884765624998],[144.76611328125003,-41.39003906249998],[144.76435546875004,-41.34150390625004],[144.69775390624997,-41.190722656250045],[144.66240234375002,-41.07890625],[144.64609375000006,-40.980859375],[144.7096679687501,-40.78291015625001],[144.7185546875,-40.67226562500002],[144.81855468750004,-40.72167968749997],[145.04296875000003,-40.78671875]]],[[[148.23691406250006,-40.515136718749986],[148.18779296875007,-40.59257812500004],[148.12695312500003,-40.5439453125],[148.11728515625012,-40.52148437499996],[148.19316406250002,-40.503125],[148.21835937500003,-40.50507812499998],[148.23691406250006,-40.515136718749986]]],[[[144.784375,-40.506738281249966],[144.74804687499997,-40.589453125000034],[144.7101562500001,-40.48525390625004],[144.7511718750001,-40.470214843749986],[144.7833984375001,-40.434863281249974],[144.79082031250002,-40.44033203125002],[144.784375,-40.506738281249966]]],[[[148.32626953125006,-40.30693359375003],[148.42070312500002,-40.36718749999996],[148.47421875000006,-40.43242187500001],[148.40400390625004,-40.486523437500026],[148.3527343750001,-40.497265625],[148.31943359375006,-40.434570312500014],[148.2140625000001,-40.45751953124997],[148.1025390625,-40.45166015625003],[148.02011718750012,-40.40419921874995],[148.0104492187501,-40.380566406250026],[148.0587890625001,-40.35683593749997],[148.19814453125005,-40.35791015625003],[148.32626953125006,-40.30693359375003]]],[[[148.000390625,-39.75761718750003],[148.17792968750004,-39.938476562500014],[148.27001953124997,-39.966699218749994],[148.29736328125003,-39.98574218749996],[148.28984375000007,-40.06542968750003],[148.25078125000002,-40.099511718749966],[148.32324218749997,-40.144433593749966],[148.31357421875012,-40.17353515625002],[148.29941406250006,-40.17246093749999],[148.21035156250005,-40.23369140625003],[148.10566406250004,-40.26210937499995],[148.0736328125,-40.24082031249998],[148.046875,-40.21279296874995],[148.02480468749997,-40.17197265624998],[147.89052734375,-40.014550781249966],[147.90595703125004,-39.97138671874997],[147.87626953125002,-39.90546875000003],[147.81230468750007,-39.91044921874998],[147.76718750000012,-39.87031249999998],[147.83916015625002,-39.83154296874998],[147.93300781250005,-39.72597656249998],[148.000390625,-39.75761718750003]]],[[[143.92792968750004,-40.11611328124996],[143.89873046875005,-40.12021484375],[143.87578125,-40.06396484375],[143.88759765625,-39.98359374999997],[143.83857421875004,-39.90410156250003],[143.86523437499997,-39.824218750000014],[143.86181640625,-39.737988281250026],[143.87939453125003,-39.7],[143.93935546875,-39.65810546875001],[143.94882812500006,-39.58369140625004],[144.00078125000007,-39.580175781250034],[144.09130859374997,-39.63808593750001],[144.12089843750002,-39.78525390624998],[144.1060546875001,-39.87402343750003],[144.14101562500002,-39.953808593750026],[144.11191406250006,-40.02207031249999],[144.03505859375005,-40.07822265624998],[143.92792968750004,-40.11611328124996]]],[[[145.31445312500003,-38.49082031249996],[145.34921875000006,-38.53818359375002],[145.35507812500012,-38.55703124999995],[145.27089843749997,-38.5197265625],[145.12841796875003,-38.527636718749996],[145.21777343750003,-38.45859374999998],[145.28789062500002,-38.472167968749986],[145.31445312500003,-38.49082031249996]]],[[[145.48652343750004,-38.35488281249998],[145.33583984374997,-38.420996093750034],[145.28027343749997,-38.390625],[145.28583984375004,-38.341015625],[145.2953125,-38.318945312500034],[145.42656250000002,-38.31416015625004],[145.48652343750004,-38.35488281249998]]],[[[137.59648437500007,-35.73867187499998],[137.83593750000003,-35.762109374999966],[137.92890625000004,-35.72607421875],[138.04658203125004,-35.755175781249974],[138.12343750000005,-35.85234375],[138.06650390625006,-35.900585937500026],[138.01191406250007,-35.90761718750004],[137.83554687500012,-35.867773437499984],[137.67089843749997,-35.897949218750014],[137.6222656250001,-35.93808593750002],[137.59023437500002,-36.02714843749996],[137.44843750000004,-36.07480468749999],[137.38222656250005,-36.02089843750002],[137.20957031250012,-35.982421875],[137.14775390625007,-36.039062499999986],[137.02587890625003,-36.023925781250014],[136.91269531250006,-36.04667968750003],[136.7550781250001,-36.03310546875002],[136.58925781250005,-35.9353515625],[136.540625,-35.89013671875003],[136.57910156250003,-35.808691406250034],[136.63867187499997,-35.74882812500001],[137.09179687500003,-35.66386718750002],[137.33408203125006,-35.59248046875004],[137.53046875000004,-35.605078125000034],[137.58496093749997,-35.620214843750006],[137.63544921875004,-35.656445312500026],[137.59814453124997,-35.72226562500002],[137.59648437500007,-35.73867187499998]]],[[[153.53876953125004,-27.436425781250037],[153.45273437500012,-27.71171874999999],[153.42656250000002,-27.70644531249998],[153.39580078125007,-27.665039062499982],[153.40087890625003,-27.50566406250003],[153.43544921875,-27.405371093750016],[153.521875,-27.422460937500034],[153.53876953125004,-27.436425781250037]]],[[[153.44248046875006,-27.31601562500002],[153.42089843750003,-27.330957031249966],[153.37656250000003,-27.23535156250003],[153.3650390625,-27.138867187499997],[153.37988281250003,-27.049414062499977],[153.43232421875004,-27.02988281249999],[153.46679687499997,-27.038085937499986],[153.42636718750006,-27.20146484374996],[153.44248046875006,-27.31601562500002]]],[[[113.18300781250005,-26.053125],[113.15644531250004,-26.094531249999957],[112.96425781250005,-25.78310546875001],[112.90820312499996,-25.56982421875],[112.94707031250002,-25.531542968750017],[112.98242187500003,-25.52021484375001],[113.09628906250012,-25.815039062500034],[113.13154296875004,-25.88261718750003],[113.13183593749997,-25.951953125000042],[113.14833984375,-25.97382812499997],[113.18300781250005,-26.053125]]],[[[153.07744140625,-25.75078125],[153.0519531250001,-25.778320312500014],[153.00693359375006,-25.728906249999977],[152.9766601562501,-25.551367187499963],[152.99902343749997,-25.448437500000036],[153.05156250000002,-25.35429687499996],[153.0607421875,-25.30224609375001],[153.0380859375,-25.193164062500003],[153.18925781250002,-25.070507812499965],[153.22753906249997,-25.00576171875001],[153.24199218750002,-24.922558593750026],[153.18632812500002,-24.832617187499988],[153.14375,-24.81484375000002],[153.18095703125002,-24.76484375000004],[153.22314453124997,-24.73955078124996],[153.25693359375012,-24.72890625],[153.28212890625,-24.738281249999957],[153.2979492187501,-24.91523437500004],[153.35927734374997,-24.97773437499998],[153.35019531250012,-25.063085937499963],[153.14140625000002,-25.512792968750006],[153.08378906250002,-25.682519531250037],[153.07744140625,-25.75078125]]],[[[151.14658203125006,-23.49082031250002],[151.18076171875003,-23.516210937500034],[151.21201171875006,-23.513085937500023],[151.24013671875,-23.529687500000037],[151.22880859375002,-23.594921875],[151.27431640625005,-23.66845703124997],[151.29580078125,-23.72031249999996],[151.26152343750002,-23.76230468749999],[151.23828124999997,-23.77578125],[151.18417968750006,-23.740722656250043],[151.03330078125006,-23.530175781250037],[151.0599609375,-23.460546874999974],[151.14658203125006,-23.49082031250002]]],[[[150.51669921875006,-22.322558593749957],[150.4884765625001,-22.324707031250043],[150.46240234375003,-22.307714843750034],[150.48466796875002,-22.267871093750003],[150.4884765625001,-22.210742187500003],[150.52148437499997,-22.22832031250003],[150.54882812499994,-22.306933593749974],[150.51669921875006,-22.322558593749957]]],[[[149.92832031250012,-22.19306640625004],[149.89365234375006,-22.223242187499977],[149.86953125000005,-22.150390624999957],[149.875390625,-22.07402343750003],[149.91230468750004,-22.048730468750033],[149.92792968750004,-22.149316406250005],[149.92832031250012,-22.19306640625004]]],[[[115.44619140625005,-20.78779296875001],[115.3880859375,-20.866015624999957],[115.31806640625004,-20.850585937500014],[115.30859374999997,-20.811132812499963],[115.35429687500007,-20.746289062499997],[115.43457031249997,-20.66796875000003],[115.45761718750006,-20.716308593750014],[115.44619140625005,-20.78779296875001]]],[[[149.04375,-20.29150390624997],[149.01992187500005,-20.302539062500003],[148.98740234375006,-20.30175781250003],[148.93886718750005,-20.283691406249986],[148.9810546875001,-20.153515625000026],[149.00439453124997,-20.221484375000017],[149.0453125,-20.27753906249997],[149.04375,-20.29150390624997]]],[[[148.93554687499997,-20.14990234375],[148.91347656250005,-20.154296875],[148.88691406250004,-20.14355468750003],[148.90644531250004,-20.10195312499999],[148.93164062500003,-20.06894531250002],[148.96787109375012,-20.04433593749998],[148.95625,-20.134667968749994],[148.93554687499997,-20.14990234375]]],[[[146.27832031249997,-18.23125],[146.29882812499997,-18.32607421875005],[146.3419921875001,-18.400097656250026],[146.32705078125,-18.448632812499966],[146.29882812499997,-18.48476562500005],[146.23564453125002,-18.450781249999963],[146.19130859375005,-18.36289062499999],[146.11621093750003,-18.292382812500023],[146.09882812500004,-18.251757812500003],[146.1867187500001,-18.255175781249985],[146.230859375,-18.241406250000026],[146.24912109375006,-18.225878906249974],[146.27832031249997,-18.23125]]],[[[139.45917968750004,-17.11455078124996],[139.42167968750002,-17.131640624999974],[139.40820312499997,-17.090625],[139.45917968750004,-17.049121093749957],[139.49277343750006,-16.990429687499983],[139.56005859374994,-17.041992187500014],[139.57089843750006,-17.09443359375004],[139.45917968750004,-17.11455078124996]]],[[[139.50781250000003,-16.57304687499996],[139.43056640624997,-16.66103515625002],[139.39150390625,-16.648632812499983],[139.35429687500007,-16.69658203124999],[139.28300781250002,-16.719433593750026],[139.23906250000007,-16.718652343750037],[139.1595703125,-16.74169921875003],[139.1476562500001,-16.713867187499954],[139.16269531250012,-16.625878906249966],[139.2287109375001,-16.52753906250001],[139.29296875000003,-16.467285156249986],[139.45888671875,-16.438476562499986],[139.58789062499997,-16.39521484374997],[139.60449218749997,-16.403222656249994],[139.69775390624997,-16.514941406250017],[139.55966796875006,-16.52949218749997],[139.50781250000003,-16.57304687499996]]],[[[137.09365234375005,-15.778125],[137.0508789062501,-15.824414062500027],[136.99648437500005,-15.77578125],[136.98505859375004,-15.72597656250005],[136.94267578125002,-15.711718749999989],[136.96337890624997,-15.665722656250024],[136.9857421875,-15.652441406249991],[137.00957031250007,-15.594824218749975],[137.06455078125006,-15.662890624999987],[137.07109375000007,-15.738085937500031],[137.09365234375005,-15.778125]]],[[[136.591015625,-15.62822265625003],[136.53115234375005,-15.63242187499999],[136.51425781250006,-15.627343750000023],[136.50273437500002,-15.583105468749977],[136.52255859375006,-15.543164062500013],[136.58603515625012,-15.53369140624996],[136.61230468749997,-15.54414062500004],[136.591015625,-15.62822265625003]]],[[[136.86269531249997,-15.619921875000017],[136.84677734375012,-15.627343750000023],[136.84560546875005,-15.54404296875002],[136.87685546874997,-15.502539062500006],[136.89023437500006,-15.5888671875],[136.86269531249997,-15.619921875000017]]],[[[124.59726562500006,-15.401953125000018],[124.55957031250001,-15.430175781250002],[124.52421875,-15.421484375],[124.52373046875002,-15.382421875000047],[124.48281250000005,-15.340332031250002],[124.5041015625001,-15.292480468750014],[124.51933593750002,-15.267480468749978],[124.55087890625012,-15.270312500000031],[124.56455078125006,-15.310839843750031],[124.60507812500006,-15.356542968750006],[124.59726562500006,-15.401953125000018]]],[[[125.19882812500006,-14.57949218749998],[125.13476562499997,-14.641699218750032],[125.0912109375,-14.591699218749978],[125.1173828125001,-14.491992187500003],[125.1599609375,-14.456054687499972],[125.19814453125,-14.47480468749997],[125.19355468750003,-14.552636718750009],[125.19882812500006,-14.57949218749998]]],[[[136.71464843750002,-13.803906249999983],[136.75800781250004,-13.845410156249995],[136.80449218750002,-13.842480468750024],[136.84531250000006,-13.750976562500027],[136.87070312500012,-13.763671874999957],[136.89082031250004,-13.786621093750014],[136.90556640625002,-13.826953124999958],[136.84296875000004,-13.896582031250034],[136.81494140625003,-13.907324218749991],[136.78818359375006,-13.945800781250014],[136.74531250000004,-14.072656250000023],[136.74990234375,-14.115234374999984],[136.78701171875,-14.157812499999961],[136.8854492187501,-14.197265625],[136.93388671875002,-14.179003906250015],[136.95078125000006,-14.184277343750026],[136.93134765625004,-14.245996093749978],[136.89433593750002,-14.293066406249977],[136.76318359374997,-14.2734375],[136.64970703125002,-14.280468749999981],[136.46054687500012,-14.234570312499967],[136.36328125000003,-14.228906249999966],[136.33544921875003,-14.211816406250037],[136.39218750000006,-14.175488281250011],[136.42773437500003,-14.126464843749972],[136.41113281249997,-14.011132812500009],[136.42470703125,-13.864843749999961],[136.53378906250012,-13.79375],[136.58281250000005,-13.72109375],[136.6556640625,-13.675878906250006],[136.70195312500002,-13.681640625000028],[136.69599609375004,-13.726171875000032],[136.71464843750002,-13.803906249999983]]],[[[136.23740234375003,-13.824511718750003],[136.21367187500002,-13.835937500000014],[136.12265625000012,-13.816601562499981],[136.12226562500004,-13.780566406250017],[136.13437500000012,-13.753125],[136.1595703125,-13.736718749999966],[136.21542968750012,-13.664746093750054],[136.2574218750001,-13.706640624999963],[136.27539062499997,-13.791113281250034],[136.23740234375003,-13.824511718750003]]],[[[136.33867187500007,-11.602343749999989],[136.18027343750006,-11.676757812499957],[136.26738281250002,-11.57646484374996],[136.44921875000003,-11.48710937499996],[136.47929687500002,-11.465917968749991],[136.47050781250002,-11.509277343749943],[136.37939453125003,-11.583203125],[136.33867187500007,-11.602343749999989]]],[[[130.45927734375007,-11.679296875000034],[130.54179687500002,-11.703125],[130.57988281250002,-11.737109375],[130.6027343750001,-11.773242187499989],[130.60625,-11.816601562500026],[130.50253906250012,-11.835644531249997],[130.31748046875006,-11.771777343749958],[130.13125,-11.82451171874996],[130.0765625,-11.825488281249974],[130.04326171875007,-11.78730468750001],[130.07207031250007,-11.680761718749977],[130.13906250000002,-11.697070312500017],[130.19755859375007,-11.658203125],[130.18710937500003,-11.541210937499967],[130.15283203124997,-11.47753906249997],[130.25117187500004,-11.360546875000026],[130.29492187499997,-11.33681640624998],[130.33925781250002,-11.33701171875002],[130.37675781250007,-11.420117187499997],[130.38564453125,-11.509863281249977],[130.4328125000001,-11.592187499999966],[130.45927734375007,-11.679296875000034]]],[[[130.6188476562501,-11.376074218749991],[130.75224609375005,-11.384375],[130.9127929687501,-11.309277343749969],[130.98740234375012,-11.339843749999986],[131.02304687500006,-11.334375],[131.140625,-11.26308593749998],[131.21718750000002,-11.242578124999966],[131.26826171875004,-11.18984375],[131.32050781250004,-11.246875],[131.43691406250005,-11.313183593749969],[131.4733398437501,-11.382519531249969],[131.52226562500002,-11.415234374999969],[131.53857421874997,-11.436914062500037],[131.46787109375012,-11.509570312500003],[131.4585937500001,-11.587890624999972],[131.38281250000003,-11.582519531249943],[131.29208984375012,-11.7109375],[130.95097656250005,-11.926464843750026],[130.644921875,-11.74238281250001],[130.51191406250004,-11.617871093749955],[130.42275390625,-11.445800781249986],[130.40478515624997,-11.304980468749989],[130.3685546875,-11.21494140625002],[130.38457031250002,-11.1921875],[130.40292968750006,-11.180468750000017],[130.42666015625,-11.183105468750028],[130.51914062500012,-11.279492187500024],[130.55976562500004,-11.305957031250001],[130.6188476562501,-11.376074218749991]]],[[[136.59853515625,-11.378906249999941],[136.52656250000004,-11.438867187499994],[136.52167968750004,-11.393847656249974],[136.5597656250001,-11.357910156250012],[136.64902343750006,-11.211621093749969],[136.68798828125003,-11.17763671874998],[136.71054687500006,-11.158398437499967],[136.72734375000002,-11.10478515624996],[136.73173828125,-11.024609374999969],[136.78027343749997,-11.0125],[136.74140625000004,-11.194628906249973],[136.59853515625,-11.378906249999941]]],[[[132.59335937500006,-11.302832031249991],[132.5736328125,-11.318359374999957],[132.49375,-11.163671874999977],[132.51630859375004,-11.116015625000031],[132.48378906250005,-11.037304687499983],[132.53779296875004,-11.028417968749949],[132.57880859375004,-10.968847656249977],[132.59326171874997,-10.99765625],[132.596875,-11.106445312499943],[132.6291015625001,-11.169140625000026],[132.59335937500006,-11.302832031249991]]],[[[143.17890625000004,-11.954492187499964],[143.15292968750012,-12.075878906250011],[143.10468750000004,-12.169628906250011],[143.09902343750005,-12.225976562500037],[143.11025390625,-12.303515625000015],[143.190625,-12.361230468749966],[143.2541015625001,-12.397656250000011],[143.28964843750006,-12.498828125000017],[143.40156250000004,-12.639941406249989],[143.39755859375012,-12.73613281249996],[143.45771484375007,-12.855761718749989],[143.51201171875007,-13.094531249999958],[143.52949218750007,-13.303808593749963],[143.5866210937501,-13.443652343750031],[143.54843750000012,-13.74101562499996],[143.5892578125,-13.862792968749986],[143.64335937500002,-13.963671875000017],[143.70722656250004,-14.164550781249998],[143.75634765625003,-14.348828124999969],[143.82236328125006,-14.401074218750038],[143.96181640625005,-14.462890625000027],[144.105859375,-14.394531249999957],[144.20986328125005,-14.301953125000011],[144.3216796875,-14.279394531250034],[144.473046875,-14.231835937500023],[144.58642578125003,-14.354687500000011],[144.64804687500006,-14.492480468750017],[144.91572265625004,-14.674316406250028],[145.06445312499997,-14.791015625],[145.17998046875007,-14.856933593750014],[145.28769531250006,-14.943164062499989],[145.27695312500012,-15.029394531249977],[145.2516601562501,-15.097460937499989],[145.27617187500002,-15.20390625],[145.29306640625006,-15.327246093749993],[145.27158203125006,-15.476660156249961],[145.34951171875005,-15.701562500000051],[145.375390625,-15.881054687500026],[145.45800781250003,-16.05644531249996],[145.45185546875004,-16.23691406250005],[145.43642578125,-16.30498046874996],[145.42607421875,-16.406152343749962],[145.49042968750004,-16.532128906249966],[145.54990234375012,-16.625097656249988],[145.63828125000006,-16.726074218749957],[145.75478515625,-16.879492187500034],[145.83789062499997,-16.91035156250001],[145.91210937499994,-16.9125],[145.90195312500006,-17.070214843749994],[146.04980468749997,-17.381054687499983],[146.12587890625005,-17.63525390625],[146.07402343750002,-17.97734375],[146.0228515625,-18.175781249999986],[146.03222656249997,-18.272851562500037],[146.223046875,-18.509863281250006],[146.3332031250001,-18.55371093749997],[146.31171875000004,-18.666699218749983],[146.296875,-18.84121093750001],[146.38339843750006,-18.97705078124997],[146.48115234375004,-19.07871093749999],[146.58730468749997,-19.139453125000017],[146.69199218750003,-19.187402343750023],[146.82900390625,-19.23574218750001],[147.00263671875004,-19.256054687499965],[147.09277343750003,-19.332617187500016],[147.13876953125003,-19.39316406250002],[147.278125,-19.414160156250034],[147.34150390625,-19.40292968749996],[147.41855468750012,-19.378125],[147.47089843750004,-19.419335937500023],[147.50976562499997,-19.474121093749986],[147.58603515625006,-19.622753906249983],[147.7423828125001,-19.770117187499977],[147.85322265625004,-19.794726562500017],[147.915625,-19.869238281250016],[148.00449218750012,-19.88955078124998],[148.08105468749994,-19.89863281249997],[148.1896484375001,-19.95585937499999],[148.36689453125004,-20.0875],[148.52675781250005,-20.108886718749986],[148.60048828125005,-20.14521484375001],[148.759375,-20.28955078125003],[148.82099609375004,-20.36640625000005],[148.88476562499997,-20.480859375],[148.805078125,-20.491699218749996],[148.72998046874997,-20.4677734375],[148.6836914062501,-20.58017578124999],[148.789453125,-20.735644531249957],[148.91240234375007,-20.845214843749986],[149.06054687499994,-20.96113281249997],[149.20488281250005,-21.125097656249977],[149.24140625,-21.25019531249998],[149.28027343749997,-21.29951171874998],[149.3292968750001,-21.476074218749986],[149.45410156249997,-21.57871093750002],[149.46005859375012,-21.76542968749996],[149.52402343750006,-22.023632812499983],[149.59570312500003,-22.25761718749996],[149.64531250000002,-22.32832031249997],[149.70390625000002,-22.440527343750002],[149.77158203125006,-22.42626953125003],[149.82246093750004,-22.389843749999983],[149.92031249999997,-22.501367187499966],[149.97441406250005,-22.55068359374998],[150.00556640625004,-22.521582031250006],[149.94189453125003,-22.30810546875003],[149.98125,-22.184277343750026],[150.02060546875006,-22.168359374999977],[150.07617187500003,-22.16445312499998],[150.14296875000005,-22.265429687500045],[150.23486328125,-22.37294921875001],[150.40507812500007,-22.468945312500026],[150.54130859375002,-22.55908203125],[150.57958984375003,-22.555761718750034],[150.56435546875,-22.48613281249997],[150.56855468750004,-22.383984375000036],[150.62285156250002,-22.367285156250006],[150.67246093750012,-22.418164062499983],[150.76386718750004,-22.576171875000014],[150.78281250000012,-22.902929687499977],[150.78300781250007,-23.17656250000003],[150.84316406250005,-23.4580078125],[150.9310546875,-23.53193359375004],[150.98876953124997,-23.60175781249997],[151.08769531250002,-23.69609375],[151.15380859375,-23.78408203124999],[151.23632812499997,-23.825],[151.50078125000002,-24.01240234374997],[151.5753906250001,-24.033593750000023],[151.69091796875003,-24.038378906250017],[151.83164062500006,-24.122949218750005],[151.902734375,-24.200976562500017],[152.0553710937501,-24.494433593750017],[152.12988281250003,-24.597558593749977],[152.28203125000002,-24.69931640625002],[152.35312500000012,-24.732519531250034],[152.45634765625005,-24.80244140624998],[152.49316406250003,-24.90400390624997],[152.50205078125006,-24.96396484375002],[152.56328125000002,-25.072070312500017],[152.65429687499997,-25.201953125000017],[152.7891601562501,-25.27412109374997],[152.91347656250005,-25.432128906250014],[152.92050781250006,-25.688574218750034],[152.9849609375001,-25.816210937500003],[153.02822265625005,-25.87031250000001],[153.12548828124997,-25.922656250000017],[153.16494140625,-25.964160156250045],[153.0841796875001,-26.303808593749963],[153.16210937499997,-26.982714843749974],[153.11679687500006,-27.19443359375003],[153.1979492187501,-27.404687499999966],[153.38574218749997,-27.76855468750003],[153.42841796875004,-27.89765625000004],[153.45488281250002,-28.04833984375],[153.57568359375003,-28.24052734374999],[153.56914062500002,-28.53339843749997],[153.6168945312501,-28.67304687499999],[153.60458984375006,-28.854492187500014],[153.46220703125,-29.050195312500005],[153.348046875,-29.290429687500005],[153.34697265625005,-29.496582031249996],[153.27236328125005,-29.89248046875001],[153.22382812500004,-29.998632812499963],[153.18818359375004,-30.16386718749996],[153.03056640625002,-30.56337890624999],[153.02373046875002,-30.720117187500033],[153.04785156249997,-30.907128906250033],[153.02158203125012,-31.086621093750015],[152.98222656250002,-31.20878906250003],[152.94394531250012,-31.43486328124999],[152.78583984375,-31.78632812500001],[152.55927734375007,-32.045703125],[152.5453125,-32.24306640624998],[152.5166015625,-32.33017578124996],[152.47041015625007,-32.43906250000003],[152.33125,-32.55751953125001],[152.2474609375,-32.60869140625003],[152.21572265625,-32.678125],[152.13652343750002,-32.678125],[152.13457031250007,-32.69990234374997],[152.18808593750006,-32.72167968749996],[152.1642578125001,-32.75742187499996],[151.954296875,-32.820312499999986],[151.812890625,-32.90107421875001],[151.66835937500002,-33.098632812500014],[151.60771484375002,-33.20185546875],[151.530078125,-33.300976562500026],[151.4837890625,-33.3474609375],[151.46337890625003,-33.39736328125004],[151.43203125000005,-33.521582031250034],[151.35751953125012,-33.54394531249997],[151.29208984375012,-33.580957031249966],[151.32275390624997,-33.699316406250006],[151.28837890625007,-33.834863281249994],[151.28027343750003,-33.92666015625005],[151.24462890624997,-33.98505859375004],[151.20166015624997,-33.964062500000026],[151.16787109375005,-33.97343749999999],[151.12480468750007,-34.00527343749998],[151.19121093750002,-34.01523437499998],[151.23154296875003,-34.0296875],[151.08994140625006,-34.1625],[150.96035156250005,-34.29707031250001],[150.9274414062501,-34.386621093749966],[150.8712890625001,-34.499121093749956],[150.821875,-34.749218750000026],[150.78105468750002,-34.89218750000002],[150.80917968750006,-34.99384765625004],[150.80458984375,-35.01289062500001],[150.77460937500004,-35.02041015625002],[150.7560546875001,-35.00712890624999],[150.69736328125012,-35.041894531249966],[150.68095703125007,-35.07666015625003],[150.70566406250012,-35.119726562500006],[150.72216796875003,-35.13457031250002],[150.71464843750007,-35.15517578125004],[150.69033203125,-35.177734375000014],[150.6344726562501,-35.177636718749994],[150.56748046875012,-35.214257812499994],[150.37412109375006,-35.58417968750004],[150.2921875000001,-35.68232421874997],[150.19531249999997,-35.83359374999996],[150.15849609375002,-35.97060546874998],[150.12890625000003,-36.120410156250045],[150.09531250000012,-36.37265625],[150.06279296875007,-36.55039062499998],[149.98818359375005,-36.722753906250006],[149.96025390625002,-36.845507812499974],[149.9505859375,-37.080273437500004],[149.98632812500003,-37.25839843749998],[149.96289062499997,-37.353027343749986],[149.9623046875,-37.443847656250014],[149.93271484375012,-37.52851562500002],[149.809375,-37.54785156249997],[149.70898437500003,-37.61699218750002],[149.56542968749997,-37.72998046875004],[149.480859375,-37.77119140625],[149.29843750000012,-37.802148437499994],[148.94394531250012,-37.788476562499966],[148.2625,-37.830664062500034],[148.13066406250007,-37.85605468749996],[147.87675781250002,-37.93417968749998],[147.63144531250006,-38.05566406249996],[147.39560546875006,-38.21914062499995],[146.8568359375,-38.663476562499966],[146.4357421875001,-38.71181640624995],[146.35625,-38.71181640624995],[146.29257812500006,-38.69980468749999],[146.21748046875004,-38.72744140625004],[146.21621093750005,-38.782714843750014],[146.28554687500005,-38.840234375],[146.33662109375,-38.89423828125],[146.4269531250001,-38.81962890624998],[146.46660156250005,-38.84033203125003],[146.48164062500004,-38.977929687499994],[146.4837890625,-39.06503906249998],[146.45664062500003,-39.112304687500014],[146.40000000000012,-39.14550781250003],[146.34003906250004,-39.123828125000045],[146.33203125000003,-39.07666015625003],[146.254296875,-38.964453125],[146.1583984375001,-38.86572265624996],[146.06992187500006,-38.834082031249984],[146.01816406250012,-38.867089843749966],[145.93535156250002,-38.90175781250002],[145.86552734375002,-38.77597656249998],[145.79082031250007,-38.66699218749997],[145.69189453124997,-38.65566406249998],[145.60634765625005,-38.656835937500034],[145.53535156250004,-38.60966796875002],[145.39726562500002,-38.53535156249998],[145.42421875,-38.477343749999974],[145.46279296875005,-38.416308593749974],[145.54218750000004,-38.39384765625002],[145.51835937500007,-38.31142578125001],[145.4757812500001,-38.24375],[145.36640625000004,-38.225683593750034],[145.29277343750002,-38.237597656249974],[145.24892578125,-38.29121093749998],[145.19121093750002,-38.383593749999974],[144.95957031250012,-38.500781250000045],[144.84726562500006,-38.43632812500005],[144.71777343749997,-38.34033203125004],[144.78027343749994,-38.347363281250054],[144.91142578125007,-38.34404296874999],[145.02011718750006,-38.25839843750005],[145.06699218750003,-38.204882812499974],[145.11992187500007,-38.091308593750014],[145.04960937500007,-38.01093749999998],[144.98486328125003,-37.95224609375002],[144.89130859375004,-37.899804687499994],[144.5384765625,-38.077148437499964],[144.46533203125003,-38.1025390625],[144.39550781250003,-38.13691406249998],[144.51777343750004,-38.16640624999995],[144.5894531250001,-38.15761718750002],[144.6652343750001,-38.20996093750002],[144.5436523437501,-38.28408203124995],[144.44785156250012,-38.30371093750004],[144.32871093750006,-38.34824218749996],[144.10156249999997,-38.46230468750002],[143.8117187500001,-38.69882812499998],[143.68671875000004,-38.76689453124999],[143.53896484375005,-38.82089843749998],[143.33847656250006,-38.7578125],[143.22646484375,-38.74316406250004],[143.08261718750003,-38.64589843750002],[142.840234375,-38.58085937500002],[142.61210937500007,-38.451660156249986],[142.45585937500002,-38.38632812499999],[142.34453125000007,-38.372167968750034],[142.1876953125001,-38.3994140625],[141.92470703125,-38.28378906249998],[141.725,-38.27138671875002],[141.5939453125001,-38.38779296875002],[141.49179687500006,-38.379785156249994],[141.42421875,-38.36347656250004],[141.21386718750003,-38.17197265625002],[141.0109375000001,-38.07695312500003],[140.62724609375007,-38.02841796874999],[140.39042968750007,-37.89667968749998],[140.21210937500004,-37.6421875],[139.87480468750007,-37.35205078124996],[139.78427734375012,-37.24580078124998],[139.74228515625006,-37.141699218750006],[139.73847656250007,-37.05957031249997],[139.78388671875004,-36.902636718749974],[139.84658203125,-36.748046875],[139.85732421875,-36.662109375],[139.72900390625003,-36.37138671875001],[139.54873046875,-36.0966796875],[139.46591796875006,-36.010351562500006],[139.24492187500002,-35.827343750000026],[139.03769531250003,-35.68925781249996],[138.9850585937501,-35.617578125],[138.96894531250007,-35.58076171874997],[139.06689453124994,-35.59843750000002],[139.1125,-35.54228515625003],[139.17802734375007,-35.52304687500002],[139.23056640625012,-35.59765625000003],[139.289453125,-35.61132812499997],[139.29208984375012,-35.4859375],[139.32509765625,-35.42666015625001],[139.3025390625,-35.39941406249997],[139.28251953125002,-35.37539062499996],[139.19277343750002,-35.347265625],[139.09375,-35.38955078125001],[139.01767578125006,-35.44326171875002],[138.9152343750001,-35.48886718749999],[138.87529296875002,-35.53681640624998],[138.77099609374997,-35.53837890625003],[138.72968750000004,-35.550781249999986],[138.521875,-35.6423828125],[138.38925781250012,-35.644726562500026],[138.184375,-35.61269531249999],[138.2521484375001,-35.48652343750004],[138.33291015625,-35.41171875],[138.39980468750005,-35.32578125],[138.5111328125,-35.02441406249995],[138.48994140625004,-34.76357421875002],[138.43623046875007,-34.65625],[138.2643554687501,-34.44033203124998],[138.18623046875004,-34.307226562500034],[138.0892578125,-34.16982421875002],[138.04130859375002,-34.249804687499974],[138.01230468750006,-34.334082031250006],[137.91923828125002,-34.456054687499986],[137.87412109375006,-34.72744140625002],[137.69169921875002,-35.14296875000004],[137.56640624999997,-35.148046875],[137.45957031250006,-35.13134765624998],[137.27236328125005,-35.17871093750004],[137.14443359375,-35.23642578124998],[137.02988281250012,-35.2365234375],[136.96660156250002,-35.254882812500014],[136.88359375000007,-35.23974609375004],[137.0142578125001,-34.91582031250003],[137.12841796875003,-34.92470703124998],[137.25205078125003,-34.911523437499966],[137.30839843750002,-34.916992187500014],[137.39101562500005,-34.91328124999997],[137.45429687500004,-34.76445312500002],[137.49296875000002,-34.59775390624999],[137.46855468750002,-34.490234375],[137.45898437499997,-34.378906249999986],[137.4835937500001,-34.25214843750001],[137.49384765625004,-34.16113281250003],[137.65039062499994,-33.85908203125004],[137.78085937500006,-33.703125],[137.9318359375001,-33.57910156250003],[137.91396484375,-33.461328125],[137.86601562500002,-33.314062500000034],[137.85234375000007,-33.20078124999996],[137.92431640624997,-33.16513671874998],[137.99257812500005,-33.094238281250014],[137.91318359375012,-32.770703125],[137.86308593750002,-32.673730468749966],[137.783203125,-32.578125],[137.78183593750012,-32.70195312500003],[137.79091796875,-32.82324218749996],[137.68017578124997,-32.97802734374995],[137.53623046875006,-33.08916015624996],[137.44228515625,-33.19355468749999],[137.3541992187501,-33.430175781249964],[137.23730468750003,-33.62949218749999],[137.13027343750005,-33.703027343749966],[137.03447265625007,-33.71953125000003],[136.93652343750003,-33.75019531249998],[136.78349609375002,-33.8296875],[136.63554687500007,-33.89658203124996],[136.52587890625003,-33.984179687500045],[136.43066406249997,-34.02998046875004],[136.12109374999997,-34.428710937500014],[135.97968750000004,-34.561914062499966],[135.95058593750005,-34.61572265625],[135.891015625,-34.660937499999974],[135.90263671875007,-34.723828125],[135.95058593750005,-34.76679687499997],[135.99853515624997,-34.94375],[135.96972656249997,-34.98183593749998],[135.91914062500004,-34.961914062500014],[135.7923828125,-34.863281249999986],[135.7125,-34.89921875000003],[135.64755859375006,-34.93964843750001],[135.480859375,-34.75820312499999],[135.41171875000006,-34.71552734375],[135.32421874999997,-34.642675781249984],[135.23066406250004,-34.57978515624997],[135.1908203125,-34.57265625000002],[135.12304687499997,-34.58574218750003],[135.12958984375004,-34.53652343750003],[135.1759765625001,-34.496582031249986],[135.21679687499997,-34.48730468749996],[135.29248046875003,-34.545605468750026],[135.37871093750007,-34.59765624999997],[135.4273437500001,-34.60195312500004],[135.45,-34.58105468749996],[135.36796875000002,-34.37558593750002],[135.31201171874997,-34.19550781250001],[135.28632812500007,-34.14228515625001],[135.21894531250004,-33.959765625000045],[135.18544921875005,-33.906738281249986],[135.04208984375006,-33.77773437499999],[134.88876953125012,-33.62636718749998],[134.84667968749997,-33.44462890624999],[134.79101562499997,-33.32832031250001],[134.71904296875007,-33.25517578125003],[134.60771484375002,-33.19013671875001],[134.30126953124997,-33.16503906249996],[134.17353515625004,-32.979101562500006],[134.10039062500007,-32.748632812500034],[134.1583984375,-32.73339843749996],[134.22714843750006,-32.73056640624999],[134.2492187500001,-32.658691406250014],[134.23417968750007,-32.54853515625004],[133.93017578125003,-32.41171874999996],[133.78671875000012,-32.26884765624999],[133.66533203125005,-32.207226562500054],[133.55136718750012,-32.18291015624997],[133.40058593750004,-32.18847656249996],[133.21210937500004,-32.18378906249998],[132.75742187500012,-31.95625],[132.64863281250004,-31.94931640624999],[132.3236328125,-32.02001953125001],[132.21464843750002,-32.00712890624996],[131.72119140625003,-31.696289062499954],[131.39316406250006,-31.54853515624997],[131.28496093750005,-31.520996093749957],[131.14365234375006,-31.49570312500005],[131.02929687500003,-31.53183593750003],[130.94814453125,-31.565820312500023],[130.78300781250002,-31.604003906249986],[130.12978515625,-31.579101562499982],[129.56884765624997,-31.627246093750014],[129.1876953125001,-31.659960937500014],[128.94619140625,-31.70263671875001],[128.54609375000004,-31.887695312499968],[128.06767578125002,-32.06650390624998],[127.67802734375003,-32.15126953125002],[127.31982421874996,-32.26406249999999],[127.08408203125005,-32.296875],[126.77929687499997,-32.31093750000004],[126.1365234375,-32.25683593750003],[125.91718750000004,-32.296972656250034],[125.5674804687501,-32.50585937499996],[125.46367187500002,-32.55654296874998],[125.26660156250003,-32.61445312499997],[124.75878906250003,-32.882714843749994],[124.52460937500008,-32.94013671874997],[124.3732421875001,-32.958398437499966],[124.24375,-33.015234374999984],[124.12607421875006,-33.129394531249986],[123.96718750000005,-33.44628906249997],[123.8683593750001,-33.59638671875],[123.65039062499996,-33.83632812500002],[123.50683593749997,-33.916210937500054],[123.36542968750004,-33.90537109374998],[123.20761718750012,-33.988281249999986],[123.06757812500008,-33.90058593749997],[122.95566406250012,-33.883789062500014],[122.7775390625001,-33.890820312500026],[122.15097656250005,-33.99179687499999],[122.06113281250005,-33.87441406249996],[121.94638671875012,-33.85673828125002],[121.72968750000003,-33.8625],[121.40507812500007,-33.826757812500034],[120.81455078125012,-33.87128906250004],[120.53056640625006,-33.91972656249996],[120.41835937500005,-33.96308593750001],[120.209375,-33.935449218749966],[119.8541015625001,-33.97470703124998],[119.72910156250012,-34.04150390625],[119.63515625,-34.10117187499998],[119.45058593750004,-34.368261718750034],[119.24765625000012,-34.45644531249998],[119.08134765625009,-34.459375],[118.89531250000009,-34.47988281250004],[118.52011718750012,-34.73710937499996],[118.135546875,-34.98662109374999],[118.0064453125001,-35.01328125],[117.86308593750002,-35.05498046874996],[117.67539062500006,-35.074902343750026],[117.58193359375004,-35.09775390624998],[117.1439453125,-35.033691406249986],[116.8654296875001,-35.02656250000004],[116.51718750000012,-34.98789062499997],[116.21708984375007,-34.86582031249998],[115.98671875000004,-34.795019531250034],[115.72626953125008,-34.52607421875004],[115.56503906250012,-34.42578125000003],[115.27763671875006,-34.30390624999998],[115.19482421874997,-34.30849609375004],[115.12792968749996,-34.34179687499997],[115.00878906250003,-34.25585937499997],[115.0056640625,-34.14511718749996],[114.97343750000002,-34.051171875],[114.97568359375012,-33.80419921874997],[114.9938476562501,-33.51533203125],[115.09892578125006,-33.5802734375],[115.18164062499997,-33.64345703124999],[115.35878906250001,-33.63994140624999],[115.5153320312501,-33.53134765624998],[115.60449218749997,-33.37226562499998],[115.68300781250005,-33.19287109375003],[115.67089843749997,-33.0021484375],[115.61855468749998,-32.666992187500014],[115.65429687499997,-32.596582031249966],[115.70791015625,-32.56796875],[115.72539062500007,-32.40107421875001],[115.7380859375,-31.887890625],[115.6984375000001,-31.694531250000054],[115.45458984374996,-31.30253906250003],[115.29433593749998,-30.96181640624999],[115.17685546875006,-30.808007812500005],[115.07792968750007,-30.560449218750023],[114.99453125000004,-30.216210937499962],[114.96884765625005,-30.042285156249974],[114.9420898437501,-29.72158203125001],[114.97138671875005,-29.539746093749997],[114.95898437499997,-29.433593749999954],[114.85683593750005,-29.14296875],[114.62841796874997,-28.87177734374998],[114.590625,-28.771679687500026],[114.59179687499997,-28.666210937500022],[114.53740234375006,-28.542871093750037],[114.35351562500003,-28.294921874999968],[114.16513671875012,-28.08066406250002],[114.13349609375004,-27.976464843750023],[114.09843750000002,-27.544238281249974],[114.028125,-27.347265624999988],[113.709375,-26.84775390625002],[113.33300781250003,-26.417382812500005],[113.23105468750006,-26.24140625000004],[113.18476562500004,-26.182226562499963],[113.21074218750007,-26.174218750000023],[113.253125,-26.197265625000014],[113.30009765625007,-26.24023437499997],[113.32324218749996,-26.243847656249997],[113.34531250000006,-26.208300781250042],[113.34287109375005,-26.126074218749988],[113.35605468750012,-26.080468750000023],[113.38896484375007,-26.105566406249977],[113.4274414062501,-26.19804687499999],[113.54658203125004,-26.43671875000004],[113.58164062500006,-26.558105468749986],[113.73369140625,-26.595117187499977],[113.78037109375006,-26.563281249999974],[113.83642578125003,-26.500585937499988],[113.85283203125007,-26.33212890625005],[113.77578125,-26.255957031249977],[113.7064453125,-26.22363281249997],[113.58906250000004,-26.098632812499986],[113.5133789062501,-25.898339843750037],[113.39531250000002,-25.71328125],[113.39736328124998,-25.647167968750026],[113.4513671875001,-25.599121093750014],[113.539453125,-25.625195312499997],[113.62119140625012,-25.73164062500001],[113.7130859375001,-25.83076171875004],[113.69785156250012,-26.004199218750028],[113.68359374999997,-26.05166015625001],[113.69169921875002,-26.091699218749994],[113.72373046875006,-26.129785156250037],[113.76582031250008,-26.159765625],[113.81181640625007,-26.115820312500034],[113.85390625,-26.01445312499999],[113.87988281249997,-26.02763671875],[113.94238281250001,-26.25869140625001],[113.99199218750006,-26.32148437500001],[114.09033203124997,-26.393652343749963],[114.17597656250008,-26.3375],[114.21572265625,-26.289453124999966],[114.20332031250004,-26.12636718750005],[114.22851562500003,-25.96875],[114.2142578125,-25.85156250000001],[113.99277343750006,-25.544824218749966],[113.7923828125,-25.165722656249997],[113.67080078124998,-24.97705078125003],[113.56923828125,-24.692968749999963],[113.50351562500012,-24.59462890625001],[113.41767578125004,-24.435644531250034],[113.41298828124998,-24.254003906249974],[113.4212890625,-24.13232421874997],[113.48984375000012,-23.869628906250014],[113.5529296875001,-23.73281250000002],[113.7570312500001,-23.41816406250005],[113.7669921875,-23.28251953125003],[113.7648437500001,-23.18046875000003],[113.79492187499997,-23.02363281249997],[113.79511718750003,-22.914550781250025],[113.76787109375006,-22.812890625000023],[113.68281250000004,-22.637792968749963],[113.79501953125012,-22.332128906250034],[113.95839843749998,-21.939160156250008],[114.02285156250004,-21.881445312499977],[114.12392578125005,-21.828613281249957],[114.14257812500003,-21.909765624999963],[114.09277343750003,-22.18134765624997],[114.16386718750002,-22.32333984375002],[114.14160156250003,-22.483105468749983],[114.20517578125006,-22.455859375000017],[114.30351562500002,-22.425390625000034],[114.37773437500007,-22.341503906249997],[114.41699218749996,-22.26103515625003],[114.60283203125002,-21.9421875],[114.70927734375,-21.82343749999997],[114.85908203125003,-21.735937499999988],[115.16171875000006,-21.630566406250026],[115.45615234375012,-21.49169921874997],[115.59609375000004,-21.358105468750026],[115.77148437499997,-21.242285156249963],[115.89355468749997,-21.116699218749957],[116.01093750000008,-21.030371093749963],[116.60585937500005,-20.71337890625004],[116.70673828125008,-20.653808593749986],[116.836328125,-20.647070312500034],[116.99531250000005,-20.65761718750005],[117.13906250000007,-20.640917968750017],[117.2927734375,-20.713085937499983],[117.40625,-20.72119140625003],[117.68388671875002,-20.64277343750004],[117.83232421875007,-20.572558593750028],[118.08730468750005,-20.41904296875002],[118.19921875000001,-20.37519531249997],[118.45830078125,-20.32666015625003],[118.75146484374996,-20.261914062499983],[119.10449218749997,-19.995312500000026],[119.35878906249998,-20.012304687500034],[119.58593750000001,-20.03828125],[119.76777343750011,-19.958398437499966],[120.19628906250001,-19.909472656250045],[120.43369140625006,-19.841992187499965],[120.87841796874997,-19.665039062499982],[120.99794921874998,-19.604394531249966],[121.17978515625008,-19.477929687499966],[121.3376953125,-19.31992187500002],[121.49355468750005,-19.106445312499957],[121.58945312500006,-18.915136718749977],[121.6306640625,-18.81660156249997],[121.72197265625007,-18.65996093750003],[121.78486328125008,-18.53593749999999],[121.8337890625,-18.477050781249986],[122.00625,-18.393652343749963],[122.26210937500007,-18.159082031250033],[122.34541015625003,-18.11191406250002],[122.36093750000012,-18.036914062500017],[122.30576171875006,-17.99492187499999],[122.23740234375006,-17.968554687500045],[122.19130859375001,-17.7203125],[122.14746093749999,-17.54902343750001],[122.14316406250006,-17.42841796875004],[122.16025390625006,-17.313671875000026],[122.26093750000011,-17.135742187500014],[122.33271484375003,-17.059375],[122.43203125000005,-16.970410156249994],[122.52255859375006,-16.942871093749982],[122.59794921875006,-16.864941406249997],[122.72041015625003,-16.787695312499988],[122.77207031250012,-16.71015625],[122.84804687500005,-16.552441406250026],[122.91679687500002,-16.43261718750003],[122.97070312499996,-16.436816406250003],[123.07441406250004,-16.715332031249986],[123.14208984374997,-16.863085937499974],[123.26591796875002,-17.036816406250022],[123.383203125,-17.29277343750003],[123.47880859375002,-17.409960937500017],[123.52519531250006,-17.485742187499994],[123.56308593750005,-17.520898437499966],[123.5714843750001,-17.472265625],[123.56181640625006,-17.41542968749998],[123.60791015624996,-17.219921875000026],[123.586328125,-17.082714843750054],[123.59355468750007,-17.03037109375005],[123.61767578124996,-17.008300781249986],[123.66406250000003,-17.023242187500017],[123.75380859375,-17.099804687499983],[123.79902343750008,-17.12714843750004],[123.83105468750001,-17.120800781249997],[123.82949218749998,-16.996875],[123.87441406249998,-16.918652343750026],[123.85634765625004,-16.864746093749957],[123.778125,-16.867773437499963],[123.74501953125,-16.800976562500026],[123.68046875000006,-16.723632812499986],[123.60712890625004,-16.668066406250034],[123.51796875,-16.540722656250022],[123.49042968750008,-16.49072265624997],[123.52509765625003,-16.46757812499996],[123.58134765625009,-16.47089843750001],[123.62597656249996,-16.416308593750003],[123.64648437499997,-16.343066406250003],[123.60703125000005,-16.224023437499994],[123.64746093750001,-16.17988281249997],[123.72890625,-16.192480468749963],[123.85917968750006,-16.38232421875],[123.91523437500003,-16.363574218750003],[123.961328125,-16.286914062500017],[124.04443359374999,-16.264941406249974],[124.12978515625004,-16.278808593749957],[124.18603515624997,-16.33359375000002],[124.30039062500005,-16.388281249999977],[124.4527343750001,-16.382031250000026],[124.52998046875003,-16.39521484374997],[124.69238281249997,-16.38613281249998],[124.77197265624996,-16.40263671874996],[124.75703125000003,-16.37333984375003],[124.66923828125007,-16.33876953125001],[124.57031249999996,-16.331835937500017],[124.45449218750005,-16.335253906250003],[124.40488281250005,-16.298925781249974],[124.38828125000006,-16.20302734374998],[124.41640625,-16.133496093750026],[124.43457031249997,-16.103808593750017],[124.50996093750005,-16.11630859374999],[124.57685546875008,-16.11367187499998],[124.58505859375005,-16.020117187500016],[124.6085937500001,-15.9375],[124.64853515625013,-15.870214843750034],[124.64833984374998,-15.805468749999989],[124.60664062500004,-15.822656250000021],[124.50429687500005,-15.972460937499989],[124.45527343750011,-15.850585937500028],[124.381640625,-15.758203125000037],[124.39658203125006,-15.625878906249993],[124.43955078125012,-15.493554687500037],[124.50566406250007,-15.475390624999974],[124.5616210937501,-15.496289062499967],[124.64433593750006,-15.418847656250009],[124.69091796874997,-15.359667968750031],[124.68017578124996,-15.311035156249972],[124.69257812500004,-15.273632812499997],[124.75048828125003,-15.285253906249963],[124.97207031250005,-15.40429687499997],[125.01640625000002,-15.466503906250024],[125.06298828125003,-15.442285156249978],[125.0779296875,-15.374511718750027],[125.07294921875008,-15.306738281249991],[125.02402343750006,-15.316992187500032],[124.90917968750001,-15.310058593749957],[124.88271484375005,-15.271972656250014],[124.8926757812501,-15.240527343750001],[124.83906250000004,-15.160742187500006],[124.91416015625006,-15.109960937499963],[124.97871093750004,-15.106640625],[125.02333984375,-15.071875],[125.02402343750006,-15.024414062500028],[125.03818359375012,-15.004101562499969],[125.07294921875008,-15.032324218750034],[125.18867187500004,-15.045410156249956],[125.30234375000012,-15.106835937500035],[125.35566406250003,-15.119824218750011],[125.37558593750012,-15.086816406250037],[125.38378906249996,-15.015625],[125.24326171875005,-14.944531250000011],[125.23945312500008,-14.874609374999975],[125.18037109375004,-14.79404296874999],[125.17871093749997,-14.714746093749993],[125.26650390625001,-14.648437499999988],[125.28457031250005,-14.58408203125002],[125.33544921875003,-14.557910156250015],[125.43593750000007,-14.556835937499981],[125.5037109375,-14.502246093749962],[125.57978515625003,-14.48320312499999],[125.59833984375008,-14.361621093750001],[125.5970703125,-14.278125],[125.627734375,-14.256640625000017],[125.70458984374997,-14.29140625],[125.68125000000012,-14.38798828124996],[125.68095703125007,-14.480175781249997],[125.66162109375001,-14.529492187500013],[125.69052734375006,-14.52539062499997],[125.70839843750004,-14.504882812499972],[125.73847656250004,-14.444335937499972],[125.81953125000003,-14.469140624999966],[125.83955078125004,-14.533886718750011],[125.85009765624996,-14.597265624999961],[125.890625,-14.61796875],[125.94609375000007,-14.520410156250021],[126.0207031250001,-14.49453125],[126.01660156249996,-14.371289062500013],[126.04482421874998,-14.283007812499974],[126.05361328125004,-14.216699218749966],[126.10087890625007,-14.184375],[126.11132812499997,-14.114062500000017],[126.07343750000008,-14.065527343749991],[126.05390625000008,-13.977246093750026],[126.11904296875005,-13.957714843750054],[126.1842773437501,-14.00205078125002],[126.22822265625011,-14.113378906249963],[126.25849609375004,-14.163574218749972],[126.29882812499997,-14.13623046875],[126.32304687500002,-14.062109375],[126.403125,-14.018945312499994],[126.48242187499997,-14.07890625],[126.5697265625,-14.160937499999974],[126.67910156249998,-14.089355468749957],[126.78066406249998,-13.955175781249977],[126.76445312500007,-13.873046875000028],[126.77558593750004,-13.788476562500035],[126.90322265624998,-13.74414062499997],[127.0060546875001,-13.776757812500035],[127.09921875000005,-13.867382812500026],[127.29306640625012,-13.934765625],[127.45761718750006,-14.031445312499967],[127.53105468750002,-14.094628906249966],[127.67285156249997,-14.195117187500003],[127.76347656250002,-14.299414062500034],[127.88759765625,-14.485156250000031],[128.18046875000007,-14.711621093749983],[128.19941406250004,-14.751757812499989],[128.15986328125004,-14.827343750000024],[128.1244140625,-14.924121093750017],[128.08046875000005,-15.087988281250006],[128.06943359375012,-15.329296874999967],[128.11171875,-15.312011718749998],[128.15546875000004,-15.225585937499972],[128.20175781250006,-15.243359375000038],[128.25468750000002,-15.29853515625001],[128.2589843750001,-15.24560546874997],[128.2272460937501,-15.21357421875001],[128.17294921875006,-15.102246093749981],[128.175,-15.043164062500024],[128.21835937500006,-14.995703125000034],[128.28515624999997,-14.938867187500009],[128.35820312500002,-14.901660156249974],[128.40322265625,-14.869140625000014],[128.4098632812501,-14.828906249999987],[128.47744140625,-14.787988281249994],[128.57578125000006,-14.774511718750007],[128.63554687500007,-14.780957031249981],[129.05820312500012,-14.884375],[129.16513671875012,-14.987597656249987],[129.17519531250005,-15.115039062500017],[129.21582031249997,-15.16025390624999],[129.23789062500012,-15.08017578125002],[129.23359375000004,-14.906054687499987],[129.26757812500003,-14.871484375000053],[129.38125,-14.898437500000028],[129.45898437499997,-14.933203125],[129.56708984375004,-15.047363281250002],[129.58769531250007,-15.103320312500031],[129.63476562499997,-15.139746093749991],[129.65029296875,-15.086816406250037],[129.62822265625007,-15.011816406250032],[129.6126953125,-14.92587890625002],[129.637109375,-14.850976562500039],[129.76347656250007,-14.845019531249989],[129.84873046875012,-14.828906249999987],[129.80839843750007,-14.799707031249994],[129.75351562500006,-14.78955078124996],[129.66298828125005,-14.720898437500011],[129.60468750000004,-14.647070312499977],[129.6986328125,-14.575292968750004],[129.69794921875004,-14.557421875000015],[129.60791015625003,-14.559667968750022],[129.48388671874997,-14.489746093749984],[129.37871093750002,-14.392480468749978],[129.4591796875001,-14.21347656250002],[129.61962890624997,-14.03837890624996],[129.70986328125,-13.979980468749972],[129.71835937500012,-13.920898437500012],[129.76171874999997,-13.811914062500007],[129.7892578125001,-13.719921875000011],[129.79716796875002,-13.648437500000014],[129.83886718749997,-13.572949218749997],[129.937890625,-13.50166015625004],[130.07265625,-13.476171875],[130.13593750000004,-13.44833984375002],[130.19931640625006,-13.382617187500031],[130.25976562500003,-13.30224609375],[130.1349609375001,-13.145507812499957],[130.14531250000007,-13.059179687499963],[130.1681640625001,-12.957421875],[130.31796875000006,-12.88291015625002],[130.39990234374997,-12.68789062499999],[130.45419921875012,-12.658593749999966],[130.57187500000012,-12.664355468749989],[130.61748046875007,-12.646875],[130.60957031250004,-12.491308593749991],[130.62265625000006,-12.43105468749998],[130.67236328124997,-12.40693359375004],[130.73613281250007,-12.427734375000014],[130.77656250000004,-12.495312500000011],[130.8673828125001,-12.557812499999955],[130.89824218750007,-12.523632812500011],[130.88291015625006,-12.455078124999986],[130.87382812500007,-12.367187500000028],[130.95664062500006,-12.348242187499977],[131.02343749999997,-12.342871093749949],[131.03007812500002,-12.27109375],[131.01953124999997,-12.213867187499957],[131.04570312500002,-12.189648437499997],[131.219921875,-12.177929687500011],[131.26542968750002,-12.119042968750009],[131.29160156250006,-12.067871093749972],[131.31376953125007,-12.095898437499997],[131.34208984375007,-12.210058593749991],[131.43828125,-12.27695312500002],[131.72626953125007,-12.278125],[131.88798828125002,-12.23193359375],[131.95673828125004,-12.259277343749972],[132.06406250000006,-12.28076171875],[132.1823242187501,-12.226953124999966],[132.25322265625005,-12.186035156249972],[132.37207031250003,-12.239160156249966],[132.41103515625,-12.295117187499995],[132.4416015625001,-12.176367187499963],[132.51054687500002,-12.134863281250034],[132.58378906250002,-12.110253906249994],[132.67636718750012,-12.13007812500004],[132.71279296875,-12.1234375],[132.63046875000012,-12.035156249999972],[132.63525390625003,-11.9546875],[132.62988281249997,-11.83583984374995],[132.64472656250004,-11.72714843750002],[132.67421875000005,-11.649023437499991],[132.47519531250006,-11.491503906249974],[132.27792968750012,-11.467675781249994],[132.13359375000002,-11.500683593749969],[132.07285156250006,-11.474707031250006],[131.94462890625005,-11.34853515624998],[131.82246093750004,-11.302441406249997],[131.81181640625,-11.271386718749978],[131.96152343750006,-11.180859375000011],[132.01855468749997,-11.196386718749977],[132.10576171875002,-11.281152343750007],[132.15546875000004,-11.311132812499991],[132.19775390624997,-11.304980468749989],[132.225,-11.23876953125],[132.26269531249997,-11.204003906250023],[132.33398437499997,-11.223535156249994],[132.55732421875004,-11.366894531249981],[132.6828125000001,-11.505566406249997],[132.74707031249997,-11.468945312499997],[132.8571289062501,-11.391113281249943],[132.9610351562501,-11.407324218749963],[133.02490234374994,-11.452832031249997],[133.11435546875006,-11.621777343750038],[133.18525390625004,-11.705664062499991],[133.35615234375004,-11.728222656249967],[133.44316406250002,-11.760351562500034],[133.53320312499997,-11.816210937499946],[133.6544921875001,-11.811328125000017],[133.90419921875,-11.832031249999972],[134.13945312500002,-11.940136718749969],[134.23710937500002,-12.00771484374998],[134.35107421874994,-12.02578125],[134.4173828125,-12.052734375],[134.53808593749997,-12.06083984374996],[134.73027343750002,-11.984375],[134.81640625000003,-12.054687499999956],[134.8546875000001,-12.102539062500014],[135.02968750000005,-12.19375],[135.2179687500001,-12.221679687499957],[135.35234375000002,-12.129199218750031],[135.54873046875,-12.060644531250006],[135.68554687499997,-11.956152343749947],[135.7884765625,-11.907031249999974],[135.88525390624997,-11.821679687499994],[135.92246093750012,-11.825781250000034],[135.84355468750002,-11.905468750000011],[135.83398437500003,-11.950683593749986],[135.89580078125002,-11.969531250000017],[135.88945312500002,-11.992773437499949],[135.80429687500012,-12.054785156249977],[135.70253906250005,-12.151562499999969],[135.70439453125007,-12.209863281250037],[135.74394531250007,-12.241699218749943],[135.79082031250002,-12.2275390625],[135.85742187499997,-12.17851562499996],[135.93779296875002,-12.152148437500003],[136.00849609375004,-12.19140625],[136.0314453125001,-12.330859374999989],[136.08183593750007,-12.422460937500006],[136.19267578125007,-12.43515625000002],[136.26064453125,-12.433789062499997],[136.32851562500005,-12.305566406249994],[136.29189453125005,-12.196386718749949],[136.24990234375,-12.173046875],[136.27011718750006,-12.131640625],[136.44335937499997,-11.951464843749973],[136.5402343750001,-11.957617187499977],[136.60976562500005,-12.133593749999946],[136.7194335937501,-12.226464843749952],[136.83642578124997,-12.219140624999966],[136.89746093749997,-12.243554687499966],[136.94746093750004,-12.34990234374996],[136.53701171875,-12.784277343749991],[136.5177734375,-12.83281250000003],[136.57304687500002,-12.91162109375],[136.5943359375001,-13.00380859375005],[136.46103515625006,-13.225195312500034],[136.41191406250007,-13.236132812500031],[136.36455078125002,-13.176367187500034],[136.29414062500004,-13.137988281250031],[136.23232421875,-13.164941406250009],[136.16611328125006,-13.181054687500007],[135.92734375000012,-13.304296874999977],[135.92919921874997,-13.621582031249957],[135.98955078125002,-13.81015625],[135.95449218750005,-13.934863281250017],[135.88339843750006,-14.153125],[135.80634765625004,-14.234179687499974],[135.74453125,-14.28662109375],[135.53886718750002,-14.584960937500027],[135.47324218750006,-14.65664062499998],[135.40517578125005,-14.758203124999966],[135.42802734375002,-14.855664062500027],[135.4533203125001,-14.923144531250003],[135.53076171874994,-15.000390625000023],[135.83261718750006,-15.16015625],[135.96953125000002,-15.270214843750011],[136.20537109375002,-15.403417968749961],[136.25927734374997,-15.49521484375002],[136.29140625000005,-15.570117187500001],[136.46191406249997,-15.655273437500028],[136.58359375000006,-15.70654296875],[136.61875000000012,-15.693359374999972],[136.64414062500006,-15.675585937499989],[136.67460937500002,-15.675390625000047],[136.70488281250007,-15.685253906250011],[136.70009765625,-15.751953125000012],[136.6867187500001,-15.788476562499993],[136.69814453125002,-15.834960937499956],[136.78466796874997,-15.89423828125004],[136.92265625000002,-15.892382812500015],[137.00214843750004,-15.878320312499996],[137.08984374999997,-15.941308593750035],[137.16894531250003,-15.982128906250011],[137.29931640625003,-16.06630859375001],[137.52636718750003,-16.167089843750034],[137.70371093750006,-16.233007812499963],[137.91289062500007,-16.476562500000014],[138.07158203125007,-16.61699218750003],[138.24501953125005,-16.718359374999977],[138.50566406250002,-16.789550781250014],[138.62568359375004,-16.777832031250014],[138.82031250000003,-16.860644531250017],[139.00986328125006,-16.899316406249994],[139.11035156250003,-17.0140625],[139.14453124999997,-17.10107421874997],[139.15410156250007,-17.16777343749997],[139.2484375,-17.328613281249957],[139.44052734375006,-17.380566406249983],[139.6896484375001,-17.54072265625001],[139.89453125,-17.611328125],[139.9459960937501,-17.653613281250003],[140.03583984375004,-17.702636718749957],[140.2096679687501,-17.70439453124996],[140.51113281250005,-17.62451171875003],[140.6484375,-17.54375],[140.83046875,-17.414453125000037],[140.91582031250007,-17.192578125000054],[140.96601562500007,-17.014550781250023],[141.21914062500005,-16.646191406250026],[141.29140625,-16.46347656250002],[141.35566406250004,-16.221093750000023],[141.41191406250007,-16.069531250000054],[141.39316406250006,-15.904687500000035],[141.45156250000005,-15.605273437499974],[141.58144531250005,-15.195410156249963],[141.62548828124997,-15.056640625000012],[141.60351562500003,-14.85273437500004],[141.52294921875003,-14.470117187499994],[141.558984375,-14.337890624999956],[141.59433593750003,-14.152832031250012],[141.53544921875002,-14.018652343750034],[141.48066406250004,-13.926757812499957],[141.47255859375,-13.797558593750011],[141.53417968750003,-13.553808593750004],[141.58876953125,-13.425097656249987],[141.64541015625,-13.259082031250003],[141.61357421875002,-12.943457031250006],[141.73457031250004,-12.833496093749986],[141.78222656249997,-12.778710937500023],[141.87578125000007,-12.778222656250009],[141.9203125,-12.802929687499981],[141.92978515625003,-12.73984375],[141.89287109375007,-12.681347656249983],[141.87832031250005,-12.613281249999972],[141.85214843750012,-12.578710937500034],[141.79453125000012,-12.566601562499967],[141.74667968750006,-12.529394531250034],[141.67773437500003,-12.491406250000011],[141.68857421875012,-12.351074218750028],[141.80576171875003,-12.080078124999972],[141.87050781250002,-11.9755859375],[141.91298828125,-12.01923828125001],[141.96113281250004,-12.054296874999963],[141.96777343749997,-11.976269531249967],[141.95156250000005,-11.896191406249995],[142.04052734374994,-11.631738281250023],[142.13896484375002,-11.273242187500003],[142.168359375,-10.946582031249974],[142.32646484375002,-10.884179687499964],[142.40683593750006,-10.802246093749972],[142.45644531250005,-10.707324218749989],[142.54482421875,-10.707324218749989],[142.60507812500012,-10.748242187499983],[142.56542968749997,-10.819433593750006],[142.55273437500003,-10.874414062500023],[142.723046875,-11.010449218750026],[142.7796875,-11.115332031249977],[142.80332031250012,-11.213964843750006],[142.83681640625,-11.306933593750031],[142.8529296875,-11.432226562499977],[142.85058593749997,-11.632324218749972],[142.87255859374997,-11.821386718750034],[142.933984375,-11.88076171874995],[142.9884765625001,-11.919042968750032],[143.06640624999997,-11.924121093750003],[143.17890625000004,-11.954492187499964]]],[[[142.2748046875,-10.704785156250011],[142.19140624999994,-10.762011718750031],[142.13720703125003,-10.731933593749943],[142.12548828125,-10.668457031249986],[142.1310546875001,-10.640625],[142.19794921875004,-10.591992187500038],[142.2748046875,-10.704785156250011]]],[[[142.33896484375006,-10.192187500000031],[142.27939453125012,-10.25419921874996],[142.21621093750005,-10.235644531250001],[142.19511718750002,-10.199316406249977],[142.21875,-10.149414062500014],[142.29873046875,-10.14042968749996],[142.33896484375006,-10.192187500000031]]],[[[142.16757812500006,-10.154101562500003],[142.1419921875,-10.18125],[142.09765624999997,-10.121777343749983],[142.148828125,-10.051757812500014],[142.19199218750006,-10.085253906250003],[142.16757812500006,-10.154101562500003]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Federated States of Micronesia","sov_a3":"FSM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Federated States of Micronesia","adm0_a3":"FSM","geou_dif":0,"geounit":"Federated States of Micronesia","gu_a3":"FSM","su_dif":0,"subunit":"Federated States of Micronesia","su_a3":"FSM","brk_diff":0,"name":"Micronesia","name_long":"Federated States of Micronesia","brk_a3":"FSM","brk_name":"Micronesia","brk_group":null,"abbrev":"F.S.M.","postal":"FSM","formal_en":"Federated States of Micronesia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Micronesia, Federated States of","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":4,"mapcolor13":13,"pop_est":107434,"gdp_md_est":238.1,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"FM","iso_a3":"FSM","iso_n3":"583","un_a3":"583","wb_a2":"FM","wb_a3":"FSM","woe_id":-99,"adm0_a3_is":"FSM","adm0_a3_us":"FSM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":10,"long_len":30,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"FSM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[162.98320312500007,5.325732421875003],[162.99345703125002,5.27724609374998],[162.92988281250004,5.300781249999986],[162.92109375000004,5.317919921875017],[162.95820312500004,5.335009765625031],[162.98320312500007,5.325732421875003]]],[[[158.31484375,6.813671875],[158.2565429687501,6.791015625],[158.18339843750002,6.801269531250057],[158.16083984375004,6.882812500000057],[158.12763671875004,6.904638671874977],[158.13476562499997,6.944824218749985],[158.18613281250006,6.977734375000025],[158.29462890625004,6.951074218750022],[158.33496093749997,6.893164062500034],[158.309375,6.854638671874994],[158.31484375,6.813671875]]],[[[151.64775390625002,7.346191406250042],[151.63945312500002,7.333007812500028],[151.57832031250007,7.338085937499996],[151.5697265625,7.34550781249999],[151.57509765625005,7.351318359375028],[151.60429687500002,7.357226562499988],[151.60781250000005,7.375390625000036],[151.59287109375012,7.379248046875033],[151.60566406250004,7.388720703125003],[151.62949218750012,7.390429687500002],[151.64326171875007,7.379248046875033],[151.65048828125012,7.362841796874974],[151.64775390625002,7.346191406250042]]],[[[151.8814453125001,7.432031250000036],[151.86425781249997,7.426757812500028],[151.85595703124997,7.431787109374979],[151.85996093750003,7.457373046875047],[151.86533203125012,7.466162109374977],[151.88183593750003,7.467089843749988],[151.910546875,7.46015625],[151.91259765624997,7.453857421875043],[151.8814453125001,7.432031250000036]]],[[[138.14267578125006,9.50068359375004],[138.06708984375004,9.419042968750006],[138.06191406250005,9.44575195312504],[138.08505859375003,9.49458007812504],[138.11689453125004,9.550195312499994],[138.14697265624997,9.583593749999961],[138.18583984375007,9.593310546874989],[138.21357421875004,9.547216796875006],[138.18251953125,9.507373046874973],[138.14267578125006,9.50068359375004]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Guam","adm0_a3":"GUM","geou_dif":0,"geounit":"Guam","gu_a3":"GUM","su_dif":0,"subunit":"Guam","su_a3":"GUM","brk_diff":0,"name":"Guam","name_long":"Guam","brk_a3":"GUM","brk_name":"Guam","brk_group":null,"abbrev":"Guam","postal":"GU","formal_en":"Territory of Guam","formal_fr":null,"note_adm0":"U.S.A.","note_brk":null,"name_sort":"Guam","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":178430,"gdp_md_est":2500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"GU","iso_a3":"GUM","iso_n3":"316","un_a3":"316","wb_a2":"GU","wb_a3":"GUM","woe_id":-99,"adm0_a3_is":"GUM","adm0_a3_us":"GUM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":4,"long_len":4,"abbrev_len":4,"tiny":2,"homepart":-99,"filename":"GUM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[144.74179687500003,13.25927734375],[144.69951171875005,13.257519531249997],[144.66279296875,13.291064453125003],[144.65,13.313476562499998],[144.64931640625002,13.4287109375],[144.79033203125005,13.52685546875],[144.83671875000005,13.622363281250003],[144.87539062500002,13.614648437499994],[144.90966796875,13.599023437499993],[144.94082031250002,13.5703125],[144.77988281250003,13.4111328125],[144.74179687500003,13.25927734375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Fiji","sov_a3":"FJI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Fiji","adm0_a3":"FJI","geou_dif":0,"geounit":"Fiji","gu_a3":"FJI","su_dif":0,"subunit":"Fiji","su_a3":"FJI","brk_diff":0,"name":"Fiji","name_long":"Fiji","brk_a3":"FJI","brk_name":"Fiji","brk_group":null,"abbrev":"Fiji","postal":"FJ","formal_en":"Republic of Fiji","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Fiji","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":2,"mapcolor13":2,"pop_est":944720,"gdp_md_est":3579,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"FJ","iso_a3":"FJI","iso_n3":"242","un_a3":"242","wb_a2":"FJ","wb_a3":"FJI","woe_id":-99,"adm0_a3_is":"FJI","adm0_a3_us":"FJI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"FJI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[174.62968750000002,-21.69501953125001],[174.621875,-21.70585937499999],[174.59296874999998,-21.702343749999983],[174.58720703125005,-21.68007812499998],[174.60419921875015,-21.667480468749986],[174.62773437499996,-21.67597656250004],[174.62968750000002,-21.69501953125001]]],[[[-178.71162109374998,-20.66777343749999],[-178.70952148437502,-20.670507812500006],[-178.71494140625003,-20.670312499999962],[-178.723095703125,-20.66679687499996],[-178.72910156249998,-20.66015625000003],[-178.73056640625,-20.652832031249954],[-178.72753906250003,-20.645214843750008],[-178.72456054687507,-20.64570312500001],[-178.719189453125,-20.652343750000043],[-178.71420898437498,-20.659765625000034],[-178.71162109374998,-20.66777343749999]]],[[[-178.535107421875,-19.166015625000014],[-178.54633789062495,-19.175],[-178.57373046874994,-19.164941406249962],[-178.59594726562497,-19.151367187499957],[-178.598681640625,-19.13710937499998],[-178.58930664062504,-19.118847656249997],[-178.56767578125,-19.10927734374999],[-178.55668945312496,-19.11298828125004],[-178.56298828125,-19.11875],[-178.57617187500003,-19.12519531250004],[-178.57407226562503,-19.143164062499974],[-178.55712890624994,-19.15410156249999],[-178.540625,-19.15703125],[-178.535107421875,-19.166015625000014]]],[[[178.48789062500018,-18.97412109375],[178.4876953124999,-19.017089843749954],[178.358984375,-19.045605468749997],[178.315625,-19.010156249999966],[178.28798828124994,-19.003710937499985],[178.2113281249999,-19.06650390624999],[178.18916015625004,-19.09228515625],[178.18183593749998,-19.111718749999966],[178.16210937500009,-19.12148437499999],[178.02080078125007,-19.151660156250017],[177.95869140624998,-19.121582031250014],[178.00078125000005,-19.101074218750014],[178.05195312499998,-19.060156250000034],[178.10410156250012,-19.066210937500017],[178.15664062499997,-19.02792968750003],[178.20839843750005,-18.969628906249966],[178.28222656250003,-18.957031249999986],[178.33427734375013,-18.93447265625001],[178.4203125000001,-18.95078125000003],[178.48789062500018,-18.97412109375]]],[[[-179.799853515625,-18.940332031250037],[-179.797607421875,-18.969824218750006],[-179.812451171875,-18.968164062500023],[-179.83022460937494,-18.955566406250043],[-179.83935546874994,-18.96171875],[-179.8455078125,-18.970800781250034],[-179.84858398437495,-18.991308593750034],[-179.851220703125,-19.0029296875],[-179.86503906249996,-18.998730468750036],[-179.867333984375,-18.97841796874998],[-179.86279296875003,-18.964160156250017],[-179.85620117187503,-18.943261718750023],[-179.831103515625,-18.92421875000005],[-179.799853515625,-18.940332031250037]]],[[[-178.7619140625,-18.23388671875],[-178.7736328125,-18.25244140624997],[-178.82734375000004,-18.222167968750014],[-178.84790039062494,-18.20205078125001],[-178.79086914062498,-18.186328125],[-178.7630859375,-18.19140624999997],[-178.7619140625,-18.23388671875]]],[[[179.34931640625015,-18.10234375000003],[179.34042968750012,-18.11044921874999],[179.25351562500018,-18.030566406249974],[179.25644531250003,-17.99902343750003],[179.27177734375,-17.970703125000025],[179.30644531250013,-17.944042968750026],[179.33789062499997,-17.98955078124996],[179.36240234375018,-18.065234375000017],[179.34931640625015,-18.10234375000003]]],[[[-178.9880859375,-17.976660156250006],[-179.01840820312495,-17.991796874999977],[-179.03920898437502,-17.98837890624999],[-179.06381835937498,-17.97236328125001],[-179.07900390624997,-17.944140625000045],[-179.04760742187497,-17.92041015625],[-178.99912109375003,-17.94736328124999],[-178.9880859375,-17.976660156250006]]],[[[-178.25112304687497,-17.95273437500002],[-178.30683593750004,-17.963281250000037],[-178.3572265625,-17.920898437500014],[-178.325390625,-17.875781249999974],[-178.28032226562496,-17.88642578125001],[-178.25458984375007,-17.929980468750003],[-178.25112304687497,-17.95273437500002]]],[[[178.8275390625001,-17.72900390625],[178.77607421875007,-17.746777343749983],[178.74765625000018,-17.685742187499983],[178.78710937500003,-17.624414062500005],[178.83105468750009,-17.618847656250026],[178.85253906250003,-17.68125],[178.8275390625001,-17.72900390625]]],[[[178.28017578124994,-17.371972656250005],[178.28017578124994,-17.41621093750004],[178.30947265625005,-17.435351562500028],[178.33857421875015,-17.438476562499957],[178.41093750000013,-17.52304687499996],[178.52324218750007,-17.595800781250034],[178.59160156249996,-17.651464843750006],[178.59570312499991,-17.699023437500017],[178.57490234375013,-17.74931640624996],[178.60380859374996,-17.839355468750014],[178.61787109374998,-17.93281250000004],[178.66767578125004,-18.080859375],[178.5973632812501,-18.10898437499996],[178.4867187500001,-18.112304687500014],[178.46113281250004,-18.138964843750028],[178.42343750000018,-18.124218750000036],[178.33154296874991,-18.135253906249986],[178.24375000000015,-18.183984374999966],[178.16015625000003,-18.25019531250004],[178.06396484374997,-18.25039062499999],[177.95546875000002,-18.264062500000023],[177.8470703125,-18.254882812500014],[177.77080078125007,-18.219531250000017],[177.6364257812501,-18.181054687499994],[177.45732421875002,-18.148242187499957],[177.383203125,-18.120703125000034],[177.32138671875,-18.077539062500037],[177.26347656250013,-17.968652343749966],[177.25488281249997,-17.914941406250037],[177.26396484375007,-17.86347656250004],[177.31630859375005,-17.846093749999966],[177.36015625000013,-17.820019531249983],[177.36640625000015,-17.78603515624998],[177.38574218749994,-17.762304687500034],[177.41093749999993,-17.75371093749997],[177.4232421875,-17.737304687499996],[177.40556640625013,-17.682128906249957],[177.40068359375002,-17.631640624999974],[177.5044921875,-17.539550781250043],[177.61796875000007,-17.461035156250034],[177.81796875000012,-17.38847656249999],[177.94023437499996,-17.395117187500006],[178.12763671875015,-17.339257812499994],[178.18759765625012,-17.31298828124997],[178.24716796875018,-17.32910156249997],[178.28017578124994,-17.371972656250005]]],[[[179.42236328124997,-17.36679687500002],[179.38896484375005,-17.393847656250017],[179.37314453125006,-17.25615234375003],[179.40761718749994,-17.25732421875],[179.43281250000007,-17.271582031249977],[179.44716796875005,-17.30625],[179.42236328124997,-17.36679687500002]]],[[[-178.95649414062507,-17.272851562499966],[-178.98183593749997,-17.30703125],[-179.00390625,-17.294921875000025],[-178.975537109375,-17.2375],[-178.971484375,-17.21269531249997],[-179.01494140624993,-17.182421875000017],[-179.01767578124995,-17.161328124999983],[-179.005029296875,-17.14833984375001],[-178.95283203125,-17.182031250000037],[-178.92114257812494,-17.20839843749998],[-178.91484375,-17.223046875000037],[-178.92456054687503,-17.248632812500002],[-178.95649414062507,-17.272851562499966]]],[[[177.23417968750002,-17.147070312500016],[177.18281250000004,-17.163867187499974],[177.21015625000007,-17.084277343750017],[177.23925781249997,-17.059375],[177.25751953125015,-17.05419921875001],[177.28740234375,-17.04863281250003],[177.27578124999997,-17.104882812500033],[177.23417968750002,-17.147070312500016]]],[[[180,-16.96308593750001],[179.92587890625,-17.00029296874996],[179.89697265625003,-16.96406250000004],[179.93095703125002,-16.87597656250003],[180,-16.785742187500034],[179.99921875000004,-16.858789062499994],[180,-16.96308593750001]]],[[[-179.97490234374996,-16.924804687500025],[-180,-16.962988281249988],[-180,-16.907812500000034],[-179.999951171875,-16.858789062499994],[-180,-16.82431640624999],[-180,-16.78554687499999],[-179.89360351562502,-16.70039062499997],[-179.86098632812502,-16.68828124999999],[-179.82231445312496,-16.76533203125005],[-179.86777343749998,-16.85029296875004],[-179.97490234374996,-16.924804687500025]]],[[[180,-16.540039062499986],[179.9872070312501,-16.54121093750004],[179.98466796875013,-16.52216796874998],[180,-16.488867187500034],[180,-16.540039062499986]]],[[[-179.92944335937503,-16.502832031250037],[-179.999951171875,-16.540039062499986],[-179.999951171875,-16.488867187500034],[-179.94365234374996,-16.441406249999957],[-179.900927734375,-16.431542968749994],[-179.92734375000003,-16.479101562500006],[-179.92944335937503,-16.502832031250037]]],[[[179.99921875000004,-16.168554687499974],[179.8482421875,-16.30166015624999],[179.79384765624994,-16.37031250000004],[179.74814453125006,-16.44628906249997],[179.61914062500009,-16.527734374999966],[179.56416015625004,-16.636914062499997],[179.56816406249996,-16.747460937499966],[179.69707031250013,-16.631933593749963],[179.84101562500015,-16.5375],[179.8849609375,-16.518457031250023],[179.93037109375004,-16.51943359375005],[179.92656250000002,-16.551660156250037],[179.90595703125,-16.583593749999977],[179.8900390625,-16.6669921875],[179.9279296875001,-16.74443359374996],[179.8208007812499,-16.736914062500034],[179.71474609375,-16.743554687499966],[179.58896484375012,-16.787011718750023],[179.4654296875,-16.806054687499994],[179.41933593750005,-16.80654296875001],[179.375,-16.791992187499968],[179.34599609375002,-16.76972656249997],[179.32333984375,-16.718066406250017],[179.30048828125015,-16.710351562500037],[179.20234375000004,-16.71269531249999],[179.05546875,-16.81357421875002],[179.0068359375,-16.90019531249999],[178.9503906250001,-16.90400390624997],[178.88369140625,-16.88603515625003],[178.80292968750004,-16.9521484375],[178.70664062500018,-16.97617187500002],[178.66503906250003,-16.920019531250034],[178.63808593750005,-16.85126953124997],[178.60371093750015,-16.80058593750003],[178.4974609375,-16.78789062500003],[178.51376953125012,-16.726074218749957],[178.54199218750003,-16.70048828124999],[178.5677734375001,-16.66386718749999],[178.58359375000012,-16.621875],[178.63427734374994,-16.64853515624996],[178.68632812500007,-16.665625],[178.74453125000005,-16.63417968749998],[178.80507812499994,-16.631445312500034],[178.86572265625003,-16.540039062499986],[178.96054687500018,-16.48281250000005],[179.09140625,-16.4375],[179.22460937499997,-16.405175781250037],[179.29355468750018,-16.39863281250004],[179.35917968750002,-16.379882812500043],[179.47509765625003,-16.294140624999983],[179.55175781250003,-16.249902343750023],[179.63525390624997,-16.223242187500006],[179.71503906250004,-16.20761718750002],[179.7888671875,-16.221484375],[179.84814453125,-16.214257812500048],[180,-16.15292968749999],[179.99921875000004,-16.168554687499974]]],[[[-179.95615234374998,-16.14921875000003],[-180,-16.168261718750003],[-180,-16.156054687500003],[-180,-16.15292968749999],[-179.969384765625,-16.12607421875002],[-179.94458007812497,-16.12607421875002],[-179.95615234374998,-16.14921875000003]]],[[[177.121484375,-12.505468749999949],[177.082421875,-12.515625],[177.01933593750013,-12.507324218749972],[177.00625,-12.49111328124995],[177.02636718749994,-12.4875],[177.06757812499998,-12.476953125],[177.11806640624997,-12.482324218750037],[177.12695312500003,-12.492871093749955],[177.121484375,-12.505468749999949]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kiribati","sov_a3":"KIR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kiribati","adm0_a3":"KIR","geou_dif":0,"geounit":"Kiribati","gu_a3":"KIR","su_dif":0,"subunit":"Kiribati","su_a3":"KIR","brk_diff":0,"name":"Kiribati","name_long":"Kiribati","brk_a3":"KIR","brk_name":"Kiribati","brk_group":null,"abbrev":"Kir.","postal":"KI","formal_en":"Republic of Kiribati","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kiribati","name_alt":null,"mapcolor7":5,"mapcolor8":7,"mapcolor9":6,"mapcolor13":12,"pop_est":112850,"gdp_md_est":579.5,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"KI","iso_a3":"KIR","iso_n3":"296","un_a3":"296","wb_a2":"KI","wb_a3":"KIR","woe_id":-99,"adm0_a3_is":"KIR","adm0_a3_us":"KIR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":4,"tiny":2,"homepart":1,"filename":"KIR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-151.78261718750002,-11.44101562499999],[-151.79086914062503,-11.456835937500017],[-151.80668945312493,-11.451269531250034],[-151.815966796875,-11.431152343750014],[-151.819140625,-11.409277343750006],[-151.81328125,-11.391796875],[-151.80278320312496,-11.392675781249991],[-151.79111328124998,-11.414355468749974],[-151.78261718750002,-11.44101562499999]]],[[[-155.86381835937496,-5.62666015625001],[-155.887109375,-5.631835937499999],[-155.91435546874993,-5.63164062499996],[-155.92792968749995,-5.618554687499952],[-155.92861328125,-5.607617187500039],[-155.91938476562498,-5.60751953125002],[-155.91079101562502,-5.609472656249977],[-155.87226562499998,-5.611328125],[-155.86235351562502,-5.619140624999986],[-155.86381835937496,-5.62666015625001]]],[[[-174.51293945312497,-4.675097656249945],[-174.501123046875,-4.688378906249994],[-174.501025390625,-4.694726562499952],[-174.50673828125,-4.693652343750003],[-174.523876953125,-4.689648437499983],[-174.52924804687504,-4.681640624999956],[-174.516748046875,-4.686816406250031],[-174.51147460937497,-4.685644531249963],[-174.52304687500003,-4.674023437499997],[-174.53310546874994,-4.665332031250003],[-174.54067382812497,-4.661718749999977],[-174.54082031250002,-4.657324218749977],[-174.53139648437497,-4.65947265624996],[-174.51293945312497,-4.675097656249945]]],[[[-172.21455078125,-4.511132812500037],[-172.20830078125,-4.51796875],[-172.193896484375,-4.516015624999966],[-172.18095703125002,-4.514843749999983],[-172.18881835937498,-4.521679687499955],[-172.21523437499997,-4.524414062499986],[-172.2283203125,-4.50703125],[-172.21220703125,-4.493945312499989],[-172.19785156249995,-4.491699218749986],[-172.19638671874992,-4.495410156250031],[-172.19721679687504,-4.499511718749972],[-172.20385742187497,-4.499511718749972],[-172.21474609374994,-4.502636718749983],[-172.21455078125,-4.511132812500037]]],[[[-171.23320312500002,-4.463476562500006],[-171.24301757812495,-4.46806640624996],[-171.254541015625,-4.466503906249996],[-171.261767578125,-4.45976562499996],[-171.261962890625,-4.449218750000028],[-171.252392578125,-4.441601562499983],[-171.23940429687497,-4.444140624999974],[-171.23188476562498,-4.453710937499962],[-171.23320312500002,-4.463476562500006]]],[[[-154.95625,-4.087988281249977],[-154.95903320312502,-4.09384765625002],[-154.97109374999997,-4.08583984374998],[-154.99462890625,-4.07109375],[-155.01459960937495,-4.054882812499983],[-155.01503906249994,-4.048046875000011],[-154.98696289062502,-4.038574218749943],[-154.951220703125,-4.031054687500017],[-154.94335937499997,-4.041601562500034],[-154.95004882812498,-4.055957031250031],[-154.95625,-4.087988281249977]]],[[[-171.08515624999995,-3.135449218749983],[-171.089794921875,-3.143261718749983],[-171.096728515625,-3.136914062500025],[-171.09174804687498,-3.125097656250006],[-171.08769531249996,-3.115039062500003],[-171.081005859375,-3.120410156250031],[-171.08515624999995,-3.135449218749983]]],[[[-171.69760742187503,-2.766406250000031],[-171.66499023437495,-2.785546875000023],[-171.63964843749991,-2.811230468750011],[-171.62763671875,-2.846972656250017],[-171.62841796874994,-2.855859374999966],[-171.64736328125002,-2.855566406249991],[-171.67060546875004,-2.844433593750026],[-171.6873046875,-2.829785156249983],[-171.69609375,-2.825683593750028],[-171.69829101562496,-2.822265624999957],[-171.67836914062502,-2.824511718749974],[-171.65537109374995,-2.839843749999986],[-171.63852539062498,-2.846679687499957],[-171.63974609374995,-2.829199218750034],[-171.66020507812493,-2.798535156250011],[-171.67265625000002,-2.787988281249994],[-171.68803710937496,-2.77910156249996],[-171.70595703124994,-2.773144531249983],[-171.71816406249997,-2.778613281250031],[-171.72480468749998,-2.781347656249963],[-171.72763671875003,-2.774121093750011],[-171.72514648437496,-2.767871093749974],[-171.71889648437502,-2.761425781249997],[-171.69760742187503,-2.766406250000031]]],[[[174.77324218750013,-1.211914062499972],[174.77890625000003,-1.263378906249983],[174.75595703125018,-1.256445312499991],[174.74843750000005,-1.236425781249991],[174.74101562500013,-1.1845703125],[174.71679687499997,-1.133691406250023],[174.74414062500009,-1.147363281249966],[174.76660156250003,-1.18710937499999],[174.77324218750013,-1.211914062499972]]],[[[169.55107421875002,-0.873730468749997],[169.54169921875,-0.875976562500014],[169.52294921874994,-0.865625],[169.52558593750004,-0.852636718749963],[169.53867187500006,-0.846875],[169.55527343750006,-0.856542968749963],[169.55107421875002,-0.873730468749997]]],[[[174.50869140625005,-0.8017578125],[174.47636718750002,-0.829003906250037],[174.46406250000004,-0.804199218749957],[174.47968749999995,-0.77363281250004],[174.452734375,-0.647070312500006],[174.40781250000012,-0.629785156249952],[174.38105468750015,-0.591796875000028],[174.39404296874997,-0.591796875000028],[174.43876953125002,-0.6265625],[174.47480468750007,-0.6421875],[174.49541015625,-0.725683593749949],[174.50869140625005,-0.8017578125]]],[[[173.03281250000012,1.013134765624997],[173.08652343750006,0.973437499999989],[173.07949218750005,0.946240234375054],[173.06142578125,0.91523437500004],[172.99111328125005,0.835449218750043],[172.9699218750001,0.842773437500014],[173.03857421874997,0.914746093750025],[173.06503906250012,0.962695312500031],[173.0255859375,0.999072265624974],[173.0099609375001,0.990966796875014],[173.00371093750007,0.990966796875014],[172.99003906250002,1.02509765625004],[173.00371093750007,1.02509765625004],[173.03281250000012,1.013134765624997]]],[[[173.03837890625002,1.34208984374996],[173.01132812500012,1.33837890625],[173.02861328125005,1.358740234374977],[173.14335937500007,1.381347656250057],[173.15332031249994,1.387548828124977],[173.171875,1.375146484375037],[173.17148437500012,1.363378906250034],[173.16308593750003,1.357519531249991],[173.10634765625,1.357080078124994],[173.06171875000004,1.346337890625023],[173.03837890625002,1.34208984374996]]],[[[173.02939453125006,1.717382812500034],[172.99326171875003,1.71308593750004],[173.02041015625,1.727490234375054],[173.02783203124997,1.747314453125],[173.02363281250004,1.809326171875028],[173.03769531250006,1.804394531249997],[173.0426757812501,1.778759765625011],[173.04521484375007,1.741552734374977],[173.02939453125006,1.717382812500034]]],[[[173.01875,1.845703124999971],[173.02363281250004,1.82255859374996],[172.96660156250002,1.88540039062498],[172.93271484375003,1.92592773437498],[172.93476562500004,1.943701171875048],[172.95009765625005,1.93251953124998],[172.96914062500002,1.912695312500034],[172.98154296875006,1.896972656250028],[173.01875,1.845703124999971]]],[[[-157.34213867187503,1.855566406250034],[-157.17578124999997,1.73984375],[-157.24614257812502,1.731738281250031],[-157.4201171875,1.787548828125026],[-157.57895507812498,1.902050781249997],[-157.531494140625,1.926855468749991],[-157.50820312500002,1.88569335937504],[-157.43583984374993,1.84726562500002],[-157.39321289062494,1.927685546874983],[-157.365185546875,1.94609375],[-157.49218749999997,2.029296874999986],[-157.44189453125003,2.025048828125009],[-157.321875,1.968554687500045],[-157.34213867187503,1.855566406250034]]],[[[172.84423828124997,3.051220703124983],[172.7703125,3.012548828125019],[172.75048828124997,3.03305664062502],[172.77734375,3.033886718750011],[172.82695312500002,3.071093750000045],[172.88710937499997,3.073974609375],[172.88027343750005,3.053515625000017],[172.84423828124997,3.051220703124983]]],[[[172.96962890625005,3.129199218749974],[172.90625,3.095898437500026],[172.88710937499997,3.101269531249969],[172.9625,3.148779296874963],[172.96220703125002,3.14291992187502],[172.96962890625005,3.129199218749974]]],[[[-159.3390625,3.923535156249983],[-159.25932617187496,3.839208984375034],[-159.27475585937503,3.796582031250054],[-159.33227539062503,3.800488281250039],[-159.358740234375,3.815332031250051],[-159.31367187499995,3.822656250000037],[-159.30625,3.838378906250042],[-159.32680664062497,3.863183593750022],[-159.35419921874995,3.880517578125009],[-159.37319335937502,3.880517578125009],[-159.37778320312495,3.846630859375026],[-159.409033203125,3.873242187500039],[-159.39096679687498,3.89956054687498],[-159.36904296874997,3.916992187499972],[-159.3390625,3.923535156249983]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Marshall Islands","sov_a3":"MHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Marshall Islands","adm0_a3":"MHL","geou_dif":0,"geounit":"Marshall Islands","gu_a3":"MHL","su_dif":0,"subunit":"Marshall Islands","su_a3":"MHL","brk_diff":0,"name":"Marshall Is.","name_long":"Marshall Islands","brk_a3":"MHL","brk_name":"Marshall Is.","brk_group":null,"abbrev":"M. Is.","postal":"MH","formal_en":"Republic of the Marshall Islands","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Marshall Islands","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":5,"mapcolor13":3,"pop_est":64522,"gdp_md_est":133.5,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MH","iso_a3":"MHL","iso_n3":"584","un_a3":"584","wb_a2":"MH","wb_a3":"MHL","woe_id":-99,"adm0_a3_is":"MHL","adm0_a3_us":"MHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":12,"long_len":16,"abbrev_len":6,"tiny":2,"homepart":1,"filename":"MHL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[169.63505859375007,5.830078124999986],[169.61542968750004,5.799804687500043],[169.59052734375004,5.801904296875023],[169.61220703125002,5.824414062499996],[169.62714843750004,5.855810546874991],[169.65107421875004,5.945117187499974],[169.70039062500004,5.97705078125],[169.7345703125001,6.014160156250013],[169.72636718750002,5.975683593749991],[169.67255859375004,5.935205078125008],[169.63505859375007,5.830078124999986]]],[[[171.5773437500001,7.048242187500009],[171.61474609374997,7.026611328125043],[171.68837890625005,7.028271484375026],[171.75683593749994,6.973144531249985],[171.73046875000003,6.976611328124974],[171.69335937499994,7.00014648437498],[171.659375,7.010058593750045],[171.61416015625005,7.007177734374991],[171.59277343750003,7.01625976562498],[171.5773437500001,7.048242187500009]]],[[[171.10195312500002,7.138232421875045],[171.22695312499997,7.086962890624988],[171.39375,7.1109375],[171.36699218750002,7.095556640624963],[171.3046875,7.081152343749963],[171.26328125000012,7.06875],[171.23535156250003,7.06875],[171.20234375000004,7.073535156250003],[171.09550781250007,7.109277343750008],[171.03574218750003,7.156103515625047],[171.05039062500012,7.171777343750037],[171.10195312500002,7.138232421875045]]],[[[168.83027343750004,7.308984375],[168.81542968749994,7.293554687499977],[168.71923828125003,7.302734374999986],[168.67509765625005,7.32192382812498],[168.67929687500012,7.336230468749974],[168.75546875000012,7.322460937500011],[168.83027343750004,7.308984375]]],[[[166.8903320312501,11.153076171875057],[166.86445312500004,11.146240234374986],[166.84472656250003,11.153369140625017],[166.85888671874997,11.166308593749989],[166.8880859375,11.168652343750026],[166.89941406249997,11.1650390625],[166.8903320312501,11.153076171875057]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Northern Mariana Islands","adm0_a3":"MNP","geou_dif":0,"geounit":"Northern Mariana Islands","gu_a3":"MNP","su_dif":0,"subunit":"Northern Mariana Islands","su_a3":"MNP","brk_diff":0,"name":"N. Mariana Is.","name_long":"Northern Mariana Islands","brk_a3":"MNP","brk_name":"N. Mariana Is.","brk_group":null,"abbrev":"N.M.I.","postal":"MP","formal_en":"Commonwealth of the Northern Mariana Islands","formal_fr":null,"note_adm0":"Commonwealth of U.S.A.","note_brk":null,"name_sort":"Northern Mariana Islands","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":88662,"gdp_md_est":900,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"MP","iso_a3":"MNP","iso_n3":"580","un_a3":"580","wb_a2":"MP","wb_a3":"MNP","woe_id":-99,"adm0_a3_is":"MNP","adm0_a3_us":"MNP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":14,"long_len":24,"abbrev_len":6,"tiny":3,"homepart":-99,"filename":"MNP.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.26484375000004,14.158105468750037],[145.21533203124997,14.111328125000014],[145.17958984375,14.120996093750021],[145.15742187500007,14.136914062499983],[145.15214843750007,14.163623046875003],[145.23242187499997,14.189453125000028],[145.26542968750007,14.180224609375017],[145.26484375000004,14.158105468750037]]],[[[145.6623046875001,14.970507812499987],[145.62099609375,14.91953125],[145.59160156250007,14.998828124999989],[145.58671875000007,15.030810546875017],[145.6248046875,15.060156250000047],[145.64736328125,15.059472656249994],[145.6623046875001,14.970507812499987]]],[[[145.75195312499997,15.13315429687499],[145.74921875000004,15.107226562500044],[145.6982421875,15.113525390624984],[145.68427734375004,15.125097656250032],[145.71318359375007,15.215283203125024],[145.78632812500004,15.256884765624973],[145.821875,15.265380859375012],[145.78857421874997,15.222656250000014],[145.78232421875012,15.174609375],[145.75195312499997,15.13315429687499]]],[[[145.71210937500004,16.339111328125],[145.69023437500002,16.332128906250006],[145.65830078125006,16.335791015625034],[145.63603515625007,16.351513671874955],[145.63105468750004,16.377978515625017],[145.6955078125001,16.379638671875],[145.71953125000002,16.35976562500005],[145.71210937500004,16.339111328125]]],[[[145.77753906250004,18.078955078124977],[145.72910156250012,18.056933593750045],[145.7892578125001,18.155419921875023],[145.80742187500007,18.172656250000074],[145.83544921875003,18.136767578125042],[145.77753906250004,18.078955078124977]]],[[[145.7083984375,18.7625],[145.678125,18.725244140625023],[145.65253906250004,18.752636718750008],[145.64550781249997,18.80678710937502],[145.69013671875007,18.801611328125034],[145.70664062500006,18.790478515624983],[145.7083984375,18.7625]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"New Caledonia","adm0_a3":"NCL","geou_dif":0,"geounit":"New Caledonia","gu_a3":"NCL","su_dif":0,"subunit":"New Caledonia","su_a3":"NCL","brk_diff":0,"name":"New Caledonia","name_long":"New Caledonia","brk_a3":"NCL","brk_name":"New Caledonia","brk_group":null,"abbrev":"New C.","postal":"NC","formal_en":"New Caledonia","formal_fr":"Nouvelle-Calédonie","note_adm0":"Fr.","note_brk":null,"name_sort":"New Caledonia","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":227436,"gdp_md_est":3158,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"NC","iso_a3":"NCL","iso_n3":"540","un_a3":"540","wb_a2":"NC","wb_a3":"NCL","woe_id":-99,"adm0_a3_is":"NCL","adm0_a3_us":"NCL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":13,"long_len":13,"abbrev_len":6,"tiny":-99,"homepart":-99,"filename":"NCL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.54443359375,-22.623242187500008],[167.51269531249997,-22.66113281250001],[167.47343750000002,-22.653320312500014],[167.44375,-22.63916015624997],[167.4220703125,-22.618554687500037],[167.44345703125006,-22.541406250000037],[167.52949218750007,-22.57919921875002],[167.54443359375,-22.623242187500008]]],[[[168.01093750000004,-21.429980468750017],[168.05791015625002,-21.44843750000004],[168.13906249999997,-21.44521484375001],[168.12070312500012,-21.615820312500034],[168.00644531250012,-21.643164062500002],[167.96679687500003,-21.641601562499957],[167.94130859375005,-21.60576171875003],[167.87587890625002,-21.582128906250006],[167.8791015625001,-21.523632812499997],[167.81542968749997,-21.392675781249963],[167.92597656250004,-21.372851562500003],[167.9884765625001,-21.337890624999986],[167.98496093750006,-21.36972656249999],[167.99462890624997,-21.406933593750026],[168.01093750000004,-21.429980468750017]]],[[[167.40087890625003,-21.16064453125003],[167.34619140624997,-21.16875],[167.27324218750002,-21.096777343749988],[167.13388671875006,-21.06064453124999],[167.07265625,-20.99726562499997],[167.03271484374997,-20.922558593750026],[167.11171874999997,-20.90410156249999],[167.189453125,-20.803515625000017],[167.13642578125004,-20.76611328125003],[167.04501953125006,-20.75947265625001],[167.05576171875012,-20.720214843750014],[167.20400390625005,-20.673535156249997],[167.26894531250005,-20.70058593750001],[167.29794921875006,-20.732519531250034],[167.29345703124997,-20.891503906249994],[167.36083984375003,-20.942089843749997],[167.43056640625,-21.055273437499963],[167.43027343750012,-21.087011718750034],[167.40087890625003,-21.16064453125003]]],[[[166.54677734375,-20.698730468749986],[166.4935546875,-20.70859375000003],[166.55781250000004,-20.617089843749966],[166.55966796875003,-20.56113281250002],[166.58544921874997,-20.450488281250028],[166.58251953124997,-20.41337890625003],[166.62470703125004,-20.41826171874996],[166.67080078125002,-20.45019531249997],[166.6178710937501,-20.477539062499954],[166.60029296875,-20.525390625000014],[166.60214843750006,-20.58535156249998],[166.62255859374994,-20.596289062499988],[166.58886718749997,-20.66191406250003],[166.54677734375,-20.698730468749986]]],[[[164.20234375000004,-20.246093749999957],[164.3151367187501,-20.30888671874996],[164.4359375,-20.282226562499957],[164.58808593750007,-20.38115234375003],[164.97568359375012,-20.681054687500023],[165.11191406250006,-20.74453125],[165.191796875,-20.76884765624997],[165.25234375,-20.817968750000034],[165.30664062500003,-20.887011718749974],[165.3805664062501,-20.93583984374997],[165.4125,-20.98134765625001],[165.42050781250006,-21.0427734375],[165.44716796875005,-21.08056640624997],[165.58242187499997,-21.179980468749974],[165.66279296875004,-21.267187499999977],[165.77460937500004,-21.311718749999983],[165.8228515625001,-21.36376953125003],[165.88535156250006,-21.389160156249957],[165.94951171875007,-21.442382812499957],[166.0578125,-21.483886718749986],[166.30332031250006,-21.637207031249957],[166.49296875000002,-21.782812500000034],[166.58750000000012,-21.872851562500003],[166.68964843750004,-21.953027343749994],[166.82011718750007,-22.016992187499966],[166.94238281250003,-22.09013671875003],[167.00429687500005,-22.26152343749996],[166.97031250000012,-22.32285156250002],[166.90000000000012,-22.353320312500003],[166.83496093749997,-22.35546875],[166.77412109375004,-22.37617187500004],[166.57060546875007,-22.265527343749962],[166.52216796875004,-22.249218750000026],[166.4679687500001,-22.256054687499997],[166.43769531250004,-22.231542968749977],[166.41640625,-22.196191406249966],[166.29228515625002,-22.155078125000028],[166.17666015625,-22.089160156250017],[166.14316406250012,-22.044433593749957],[166.12373046875004,-21.988769531249986],[166.09609375,-21.95664062500002],[165.9330078125,-21.90800781249996],[165.82343750000004,-21.85380859375003],[165.74384765625007,-21.777343749999986],[165.62021484375006,-21.72421875],[165.42763671875,-21.61503906249996],[165.32861328124994,-21.580078125000043],[165.24199218750002,-21.52548828125002],[165.01015625000005,-21.32685546874997],[164.92744140625,-21.289843749999974],[164.85527343750002,-21.201562500000023],[164.6556640625,-20.992089843749977],[164.55947265625005,-20.90585937499999],[164.45468750000012,-20.829101562499986],[164.37451171875003,-20.739257812499986],[164.312890625,-20.632714843750037],[164.16972656250007,-20.48017578125004],[164.1521484375,-20.414941406249994],[164.15810546875,-20.347949218750017],[164.12363281250006,-20.30488281250004],[164.06503906250012,-20.278613281250017],[164.0373046875001,-20.23359375],[164.04052734375003,-20.172851562499957],[164.0596679687501,-20.141503906249966],[164.20234375000004,-20.246093749999957]]],[[[159.95175781250006,-19.311718750000026],[159.93642578125005,-19.333105468750034],[159.92822265624997,-19.174316406250014],[159.95986328125,-19.114648437500023],[159.97509765625003,-19.238281249999986],[159.95175781250006,-19.311718750000026]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Norfolk Island","adm0_a3":"NFK","geou_dif":0,"geounit":"Norfolk Island","gu_a3":"NFK","su_dif":0,"subunit":"Norfolk Island","su_a3":"NFK","brk_diff":0,"name":"Norfolk Island","name_long":"Norfolk Island","brk_a3":"NFK","brk_name":"Norfolk Island","brk_group":null,"abbrev":"Nfk. I.","postal":"NF","formal_en":"Territory of Norfolk Island","formal_fr":null,"note_adm0":"Auz.","note_brk":null,"name_sort":"Norfolk Island","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":2141,"gdp_md_est":32.115,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NF","iso_a3":"NFK","iso_n3":"574","un_a3":"574","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"NFK","adm0_a3_us":"NFK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":14,"long_len":14,"abbrev_len":7,"tiny":-99,"homepart":-99,"filename":"NFK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[167.939453125,-29.017675781250002],[167.95976562500005,-29.028320312499996],[167.978125,-29.034277343750002],[167.9904296875,-29.042089843750002],[167.98867187500002,-29.058984375],[167.97900390625,-29.07568359375],[167.96767578125002,-29.0828125],[167.96416015625005,-29.085351562500005],[167.9619140625,-29.08847656250001],[167.96064453125,-29.0921875],[167.96074218750005,-29.096289062500002],[167.9546875,-29.08212890625001],[167.94443359375003,-29.07294921875001],[167.9337890625,-29.07216796875001],[167.92656250000002,-29.0828125],[167.92041015625,-29.0828125],[167.91826171875005,-29.071875],[167.9142578125,-29.06191406250001],[167.91240234375002,-29.052832031250006],[167.91640625000002,-29.04511718750001],[167.9240234375,-29.03583984375001],[167.92460937500005,-29.02851562500001],[167.91855468750003,-29.025097656250015],[167.90615234375002,-29.028125],[167.92060546875,-29.013964843750003],[167.939453125,-29.017675781250002]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"New Zealand","sov_a3":"NZ1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Niue","adm0_a3":"NIU","geou_dif":0,"geounit":"Niue","gu_a3":"NIU","su_dif":0,"subunit":"Niue","su_a3":"NIU","brk_diff":0,"name":"Niue","name_long":"Niue","brk_a3":"NIU","brk_name":"Niue","brk_group":null,"abbrev":"Niue","postal":"NU","formal_en":null,"formal_fr":null,"note_adm0":"Assoc. with N.Z.","note_brk":null,"name_sort":"Niue","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":1398,"gdp_md_est":10.01,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NU","iso_a3":"NIU","iso_n3":"570","un_a3":"570","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"NIU","adm0_a3_us":"NIU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":4,"long_len":4,"abbrev_len":4,"tiny":3,"homepart":-99,"filename":"NIU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-169.80341796875,-19.0830078125],[-169.90380859375,-19.13789062500001],[-169.94833984375,-19.072851562500006],[-169.908740234375,-18.990234375],[-169.861572265625,-18.96865234375001],[-169.834033203125,-18.96601562500001],[-169.793408203125,-19.042578125],[-169.80341796875,-19.0830078125]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Nauru","sov_a3":"NRU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nauru","adm0_a3":"NRU","geou_dif":0,"geounit":"Nauru","gu_a3":"NRU","su_dif":0,"subunit":"Nauru","su_a3":"NRU","brk_diff":0,"name":"Nauru","name_long":"Nauru","brk_a3":"NRU","brk_name":"Nauru","brk_group":null,"abbrev":"Nauru","postal":"NR","formal_en":"Republic of Nauru","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nauru","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":6,"mapcolor13":9,"pop_est":14019,"gdp_md_est":60,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NR","iso_a3":"NRU","iso_n3":"520","un_a3":"520","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"NRU","adm0_a3_us":"NRU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"NRU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[166.95839843750002,-0.5166015625],[166.93896484375,-0.55078125],[166.91640625000002,-0.546484375],[166.90703125000005,-0.523730468750003],[166.91357421875,-0.499121093750006],[166.93896484375,-0.489355468750006],[166.95566406250003,-0.496972656250009],[166.95839843750002,-0.5166015625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"New Zealand","sov_a3":"NZ1","adm0_dif":1,"level":2,"type":"Country","admin":"New Zealand","adm0_a3":"NZL","geou_dif":0,"geounit":"New Zealand","gu_a3":"NZL","su_dif":0,"subunit":"New Zealand","su_a3":"NZL","brk_diff":0,"name":"New Zealand","name_long":"New Zealand","brk_a3":"NZL","brk_name":"New Zealand","brk_group":null,"abbrev":"N.Z.","postal":"NZ","formal_en":"New Zealand","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"New Zealand","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":4213418,"gdp_md_est":116700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"NZ","iso_a3":"NZL","iso_n3":"554","un_a3":"554","wb_a2":"NZ","wb_a3":"NZL","woe_id":-99,"adm0_a3_is":"NZL","adm0_a3_us":"NZL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NZL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[169.17822265624997,-52.497265625],[169.23349609375006,-52.548242187499994],[169.12753906250006,-52.570312499999964],[169.07597656250002,-52.55185546875001],[169.03984375,-52.528515624999976],[169.02177734375002,-52.49541015624998],[169.07910156249997,-52.498828125000045],[169.1286132812501,-52.485156250000024],[169.17822265624997,-52.497265625]]],[[[166.22109375,-50.76152343749997],[166.2428710937501,-50.84570312499998],[166.187890625,-50.846093749999966],[166.07324218749997,-50.82265624999999],[166.03769531250012,-50.786718750000034],[166.01328125000012,-50.77792968750003],[165.9713867187501,-50.819531249999976],[165.90410156250007,-50.82148437500001],[165.88916015624997,-50.80771484374996],[165.91562500000012,-50.76308593750002],[166.07382812500012,-50.67900390625003],[166.10312500000012,-50.57304687500003],[166.1013671875,-50.538964843750016],[166.22509765625003,-50.530957031249976],[166.254296875,-50.543945312499964],[166.26748046875005,-50.55859375],[166.259375,-50.57724609375],[166.20957031250012,-50.612011718749976],[166.20761718750006,-50.65244140625004],[166.22041015625004,-50.69433593749996],[166.17949218750002,-50.7146484375],[166.20078125000012,-50.75087890625002],[166.22109375,-50.76152343749997]]],[[[168.14492187500005,-46.862207031249966],[168.14531250000007,-46.90214843750002],[168.04101562500003,-46.88779296875002],[168.04316406250004,-46.93261718749999],[168.12548828125003,-46.956152343750006],[168.1559570312501,-46.98828124999997],[168.2414062500001,-46.97900390624996],[168.26064453125,-47.02705078124997],[168.2409179687501,-47.070019531250026],[168.18388671875002,-47.10156249999996],[168.01503906249997,-47.11748046875],[167.90556640625005,-47.179882812500026],[167.8107421875001,-47.17041015624996],[167.78496093750002,-47.176074218750045],[167.67636718750006,-47.24296874999998],[167.55488281250004,-47.26367187500004],[167.52197265624997,-47.258691406249994],[167.53876953125004,-47.19902343750002],[167.62900390625012,-47.14228515625],[167.63095703125006,-47.087792968749994],[167.65410156250007,-47.04423828125],[167.74091796875007,-47.01357421874997],[167.74199218750002,-46.95683593750006],[167.80078125000003,-46.90654296875002],[167.76523437500006,-46.797656250000045],[167.78398437500007,-46.699804687500006],[167.9557617187501,-46.69443359374998],[168.14492187500005,-46.862207031249966]]],[[[166.74628906250004,-45.65585937500005],[166.74101562500002,-45.70498046875001],[166.72919921875004,-45.72968749999998],[166.6945312500001,-45.729882812500016],[166.64248046875005,-45.724414062499974],[166.59169921874997,-45.70175781249997],[166.55917968750012,-45.70820312500005],[166.53203125000002,-45.69980468750002],[166.56708984375004,-45.64443359375002],[166.68564453125012,-45.61503906249999],[166.73144531249997,-45.638671875],[166.74628906250004,-45.65585937500005]]],[[[166.97949218749997,-45.17968750000003],[167.02265625000004,-45.29980468749998],[166.93115234374994,-45.276855468750014],[166.89267578125012,-45.24052734374999],[166.96269531250005,-45.180371093749976],[166.97949218749997,-45.17968750000003]]],[[[-176.17646484374995,-44.32167968750002],[-176.22080078124998,-44.33056640624996],[-176.21459960937503,-44.27353515624998],[-176.229296875,-44.23671875000002],[-176.1546875,-44.22451171875002],[-176.12255859375003,-44.26845703125001],[-176.17646484374995,-44.32167968750002]]],[[[-176.17763671874997,-43.74033203124997],[-176.213525390625,-43.76630859375002],[-176.274853515625,-43.76484375],[-176.38173828124997,-43.86679687499997],[-176.375244140625,-43.790625],[-176.40737304687497,-43.7609375],[-176.49912109375,-43.76806640625002],[-176.516552734375,-43.78476562499996],[-176.45493164062495,-43.80488281249998],[-176.44125976562503,-43.816113281250054],[-176.500146484375,-43.86015625000004],[-176.43911132812502,-43.954687500000034],[-176.38544921875,-43.95146484375],[-176.33359375000003,-44.02529296875004],[-176.33383789062498,-44.048437500000034],[-176.45278320312497,-44.07685546874997],[-176.51552734374997,-44.11660156249997],[-176.571533203125,-44.11494140624999],[-176.59799804687498,-44.10722656250003],[-176.62934570312495,-44.03613281250001],[-176.63154296874998,-44.00625],[-176.562744140625,-43.9541015625],[-176.52377929687492,-43.90097656250002],[-176.55512695312504,-43.85195312499998],[-176.63457031249996,-43.820214843749994],[-176.80795898437503,-43.83457031249999],[-176.84765625,-43.82392578125004],[-176.76108398437498,-43.757910156250006],[-176.66723632812497,-43.76513671874997],[-176.56611328124995,-43.717578125000045],[-176.17763671874997,-43.74033203124997]]],[[[173.91464843750018,-40.86367187500004],[173.78085937500012,-40.921777343749966],[173.78623046875012,-40.881445312500006],[173.81240234374994,-40.79365234374998],[173.87333984375013,-40.74931640625],[173.90332031250003,-40.74628906250001],[173.964453125,-40.71298828124998],[173.95800781249997,-40.78681640625001],[173.91464843750018,-40.86367187500004]]],[[[173.11533203125006,-41.27929687499997],[173.23085937499994,-41.284179687499986],[173.33779296875005,-41.21093749999998],[173.44726562499997,-41.15136718750003],[173.5625,-41.102050781250014],[173.73789062500006,-40.98896484374998],[173.78378906250018,-40.97236328124997],[173.89755859375006,-40.95078125000002],[173.94716796875005,-40.92412109375],[174.00244140624997,-40.91777343750004],[173.95283203125015,-40.98486328125003],[173.88984375000007,-41.007226562499966],[173.87988281250003,-41.03144531250001],[173.91513671875012,-41.07011718749999],[173.86035156249997,-41.124414062499945],[173.86240234374998,-41.19208984374997],[173.7978515625,-41.271972656249986],[173.89707031250018,-41.239355468750006],[173.93339843750005,-41.187304687499974],[173.91464843750018,-41.158007812500045],[173.95761718750006,-41.09990234375002],[174.02402343750006,-41.072265624999986],[173.99755859375003,-41.028125],[173.99941406250002,-40.99326171874996],[174.08056640625003,-41.00615234375002],[174.12119140625018,-41.00468749999999],[174.1532226562501,-40.990917968750026],[174.21181640625,-40.98544921874998],[174.22382812500007,-41.0244140625],[174.30253906249996,-41.019531249999986],[174.27392578125003,-41.06875],[174.21367187500002,-41.125585937500006],[174.19951171875013,-41.160156250000036],[174.103125,-41.21738281249998],[174.03857421875003,-41.24189453125],[174.13808593750005,-41.24824218750003],[174.28359375000005,-41.17158203124997],[174.37011718750009,-41.1037109375],[174.36757812500008,-41.18837890625001],[174.297265625,-41.26425781250002],[174.23710937499993,-41.312207031250004],[174.16953125000006,-41.327050781250016],[174.10205078124997,-41.36591796875003],[174.06933593750009,-41.42949218750002],[174.07294921875007,-41.4716796875],[174.09238281250018,-41.50517578124999],[174.16113281249994,-41.561816406249974],[174.08369140625015,-41.67080078124998],[174.16992187499997,-41.65722656249996],[174.21708984374996,-41.67773437499997],[174.28310546875008,-41.740625],[174.24335937499998,-41.813085937500006],[174.21542968750018,-41.85019531250002],[174.047265625,-42.00302734374998],[173.97392578125,-42.08056640624997],[173.88798828125007,-42.13017578125003],[173.88916015624994,-42.211621093750026],[173.83984375000003,-42.27089843750002],[173.5892578125,-42.47392578124999],[173.54511718750004,-42.51796875],[173.3475585937501,-42.84082031249996],[173.22119140624997,-42.976562499999986],[173.14882812500005,-43.022753906249974],[173.07236328125012,-43.06025390624998],[172.8888671875001,-43.12421875000004],[172.80800781250005,-43.197753906250014],[172.71855468750002,-43.258789062500014],[172.62402343749997,-43.27246093749996],[172.62695312500003,-43.29951171874996],[172.6875,-43.314648437500026],[172.73476562500005,-43.35478515625003],[172.69970703125003,-43.39970703125003],[172.63222656250005,-43.42792968750001],[172.56220703125007,-43.43603515624997],[172.52666015625002,-43.464746093749966],[172.69345703125006,-43.444335937499986],[172.74042968750004,-43.46787109374998],[172.7492187500001,-43.51728515625001],[172.76660156249997,-43.56191406249995],[172.80703125000005,-43.620996093749994],[172.94726562500003,-43.65859375000002],[173.07324218750003,-43.676171874999966],[173.098046875,-43.70351562500002],[173.1168945312501,-43.79785156249997],[173.09394531250004,-43.84414062499998],[173.065625,-43.87460937499998],[173.02333984375005,-43.88544921874996],[172.9206054687501,-43.89140625000002],[172.81767578125007,-43.87011718750004],[172.74931640625002,-43.81308593749996],[172.55468749999997,-43.831347656250045],[172.50273437500002,-43.84365234374998],[172.4759765625,-43.83339843750002],[172.58378906250002,-43.773535156249984],[172.52724609375005,-43.73945312499997],[172.48037109375,-43.726660156250034],[172.42968749999997,-43.74648437499998],[172.39560546875003,-43.77783203124997],[172.38525390624994,-43.82958984374996],[172.350390625,-43.859375],[172.29658203125004,-43.867871093750026],[172.22070312499997,-43.825],[172.14580078125007,-43.76357421875001],[172.035546875,-43.70175781250002],[172.05224609375003,-43.7400390625],[172.13720703125003,-43.8337890625],[172.17978515625006,-43.895996093749986],[172.08076171875004,-43.945605468750045],[171.97763671875006,-43.98427734375002],[171.890625,-44.00693359375001],[171.80839843750007,-44.04228515625003],[171.71201171875006,-44.09746093749999],[171.65898437500002,-44.1171875],[171.51777343750007,-44.11835937499998],[171.44257812500004,-44.13583984374999],[171.41748046875,-44.20869140624999],[171.36455078125007,-44.25498046875001],[171.24072265624997,-44.26416015625002],[171.28535156250007,-44.278710937499966],[171.31298828124997,-44.30185546874998],[171.23105468750006,-44.52119140624998],[171.2130859375,-44.612207031249966],[171.19785156250012,-44.767871093749974],[171.14628906250002,-44.91230468749999],[170.99902343750003,-44.91142578124999],[171.0228515625,-44.93701171874997],[171.13417968750002,-44.977734375],[171.11328125000003,-45.03925781250001],[170.99072265625003,-45.15146484374996],[170.9396484375001,-45.21640625000005],[170.88994140625002,-45.37392578124998],[170.81523437500007,-45.51914062499999],[170.7005859375,-45.68427734374997],[170.69970703124994,-45.71396484374998],[170.73984375000006,-45.756054687500026],[170.78847656250005,-45.792480468749986],[170.79121093750004,-45.84384765624998],[170.77626953125002,-45.87089843749997],[170.7217773437501,-45.878027343750006],[170.67421875000005,-45.89570312499997],[170.4191406250001,-45.94101562499996],[170.33544921875003,-45.991796875],[170.26679687500004,-46.08261718750003],[170.18613281250006,-46.16083984374998],[169.91826171875002,-46.334375],[169.76074218749997,-46.47978515625003],[169.72910156250012,-46.52138671874998],[169.68662109375006,-46.55166015625002],[169.34228515625003,-46.6205078125],[169.09863281250003,-46.630664062500045],[168.96582031249997,-46.61298828125],[168.83779296875,-46.57822265625002],[168.76679687500007,-46.56630859374998],[168.63144531250006,-46.58759765624997],[168.57226562499997,-46.61103515625004],[168.46640625000012,-46.58789062500003],[168.38212890625007,-46.605371093749945],[168.35722656250007,-46.58837890624996],[168.32568359375003,-46.545703125000045],[168.34306640625002,-46.489062499999974],[168.31972656250002,-46.447167968749966],[168.26621093750003,-46.41875],[168.23027343750002,-46.38574218749997],[168.1891601562501,-46.362207031249966],[168.07734375,-46.35292968749995],[167.90039062499997,-46.367773437500034],[167.8419921875001,-46.366210937499986],[167.7220703125,-46.22714843749999],[167.68222656250012,-46.19296875000004],[167.539453125,-46.14853515624996],[167.490625,-46.154687499999966],[167.41425781250004,-46.22890625],[167.36894531250007,-46.24150390624999],[167.10029296875004,-46.24941406249999],[166.83076171875004,-46.22548828125001],[166.73154296875003,-46.19785156249997],[166.7121093750001,-46.13369140624995],[166.91669921875004,-45.957226562499976],[166.85644531250003,-45.98085937499999],[166.73027343750005,-46.05273437499998],[166.64990234374997,-46.04169921875004],[166.72695312499997,-45.963281249999966],[166.7337890625,-45.92832031250003],[166.71796875000004,-45.88935546875001],[166.61269531249997,-45.955371093750045],[166.49316406249997,-45.9638671875],[166.47763671875012,-45.90273437499998],[166.48828124999997,-45.83183593750002],[166.5128906250001,-45.81171875],[166.83603515625012,-45.77451171874996],[166.95253906250005,-45.75019531249998],[167.0033203125,-45.71210937500004],[166.80996093750005,-45.69902343750004],[166.79765625000002,-45.64560546874999],[166.82558593750005,-45.60283203124998],[166.99082031250012,-45.531738281249986],[166.86904296875,-45.54990234375003],[166.73398437500012,-45.54355468749999],[166.74306640625,-45.46845703124996],[166.77832031250003,-45.409667968749986],[166.91992187499994,-45.40791015624998],[166.8755859375001,-45.36757812500002],[166.86923828125006,-45.31123046875],[166.90859375,-45.30742187500002],[167.0521484375,-45.383203125],[167.15566406250002,-45.410937499999974],[167.11210937500005,-45.35390625],[167.11777343750003,-45.317968750000034],[167.14531250000007,-45.30185546875005],[167.23007812500012,-45.29033203125],[167.20683593750007,-45.2802734375],[167.12734375000005,-45.26582031249998],[167.03281250000006,-45.22246093750003],[167.02265625000004,-45.17666015625002],[167.02587890624997,-45.12363281249998],[167.12792968749997,-45.05078124999996],[167.1881835937501,-45.094140625],[167.25947265625004,-45.08222656249997],[167.20507812499997,-45.048144531250045],[167.171875,-44.99707031250002],[167.19453125000004,-44.963476562500034],[167.41074218750003,-44.827929687500024],[167.4662109375,-44.958300781250045],[167.47919921875004,-44.915039062500014],[167.48212890625004,-44.873925781249994],[167.45625,-44.83828125],[167.45996093749997,-44.80234374999998],[167.48496093750006,-44.77138671874998],[167.57763671874997,-44.74082031249996],[167.69814453125,-44.641308593750026],[167.78701171875,-44.59501953125002],[167.859375,-44.624707031250026],[167.90898437500002,-44.66474609375001],[167.90156250000004,-44.625],[167.8664062500001,-44.592089843750045],[167.8565429687501,-44.500683593749976],[168.01835937500002,-44.35878906250002],[168.19619140625005,-44.22363281250003],[168.3666015625,-44.08203124999996],[168.45742187500005,-44.030566406250045],[168.65097656250012,-43.97216796874996],[168.77480468750005,-43.99648437500002],[168.80644531250002,-43.9919921875],[168.9904296875001,-43.88994140624999],[169.06650390625006,-43.863476562500004],[169.1359375000001,-43.899902343749964],[169.17890625000004,-43.91308593749999],[169.1357421875,-43.81982421875],[169.16953125000006,-43.77705078124999],[169.32314453125,-43.70156249999997],[169.51523437500006,-43.623632812500006],[169.66152343750002,-43.59121093749996],[169.76923828125004,-43.53847656249998],[169.83388671875,-43.53701171875003],[169.82402343750002,-43.49716796874999],[169.83505859375012,-43.45898437500003],[169.89082031250004,-43.46162109375003],[169.90800781250007,-43.44658203124999],[169.85898437500012,-43.42597656249996],[170.01757812500003,-43.3494140625],[170.10371093750004,-43.26503906249995],[170.14882812499997,-43.24755859375004],[170.1896484375001,-43.222070312499994],[170.24023437499994,-43.163867187500045],[170.3,-43.144628906250034],[170.35576171875007,-43.15361328124999],[170.3960937500001,-43.18222656249996],[170.37431640625002,-43.13466796874995],[170.30283203125012,-43.10761718750004],[170.37949218750012,-43.066210937500045],[170.4586914062501,-43.037695312500006],[170.5358398437501,-43.05849609374998],[170.61181640625003,-43.091796875000014],[170.5358398437501,-43.04072265625],[170.5236328125001,-43.00898437500001],[170.61552734375007,-42.97246093750003],[170.6654296875,-42.961230468749974],[170.73525390625005,-43.029785156249986],[170.72529296875004,-42.97548828125004],[170.7416015625,-42.92734375],[170.84033203125003,-42.84863281250003],[170.96992187500004,-42.71835937499996],[171.01142578125004,-42.76367187499996],[171.01777343750004,-42.81875],[171.01171875000003,-42.88505859374999],[171.03837890625007,-42.86210937500003],[171.04755859375004,-42.80185546875],[171.027734375,-42.696093750000045],[171.1895507812501,-42.50048828124998],[171.22128906250012,-42.47861328124996],[171.2570312500001,-42.465332031250014],[171.31337890625005,-42.460156250000026],[171.29609375000004,-42.43056640624995],[171.25224609375002,-42.40195312499998],[171.29648437500003,-42.302539062499974],[171.32265625000005,-42.18906250000005],[171.36025390625,-42.079980468750016],[171.42060546875004,-41.97304687499999],[171.48623046874997,-41.7947265625],[171.53632812500004,-41.75751953124997],[171.67216796875002,-41.74472656250002],[171.73164062500004,-41.71962890624998],[171.83066406250003,-41.655175781249994],[171.94804687500002,-41.53867187499996],[172.01074218749997,-41.44472656250001],[172.09335937500012,-41.201562499999945],[172.13945312500002,-40.947265625000014],[172.27275390625007,-40.758691406249966],[172.4681640625,-40.622167968750034],[172.640625,-40.51826171875001],[172.71113281250004,-40.49667968749996],[172.83017578125006,-40.49003906250003],[172.94365234375007,-40.51875],[172.73261718750004,-40.54375],[172.71113281250004,-40.605371093749994],[172.70439453125002,-40.6677734375],[172.72890625,-40.723632812500014],[172.7667968750001,-40.77343750000003],[172.86914062499997,-40.820312499999986],[172.98867187499997,-40.84824218749999],[173.04228515625,-40.953613281249964],[173.05214843750005,-41.07861328125003],[173.06865234375007,-41.185839843750024],[173.11533203125006,-41.27929687499997]]],[[[175.54316406250015,-36.279296874999986],[175.551171875,-36.33388671875001],[175.47460937500003,-36.31445312499996],[175.4446289062501,-36.2732421875],[175.35878906250005,-36.230664062500026],[175.34619140624997,-36.217773437499986],[175.33662109375015,-36.13476562500003],[175.38164062500007,-36.09482421874998],[175.3895507812501,-36.07773437499996],[175.409375,-36.07089843749999],[175.44433593750006,-36.11464843750002],[175.5125976562501,-36.17695312500001],[175.54316406250015,-36.279296874999986]]],[[[173.26943359375,-34.93476562499998],[173.28457031250005,-34.980566406249984],[173.33994140625018,-34.94794921875001],[173.38125,-34.896484375],[173.44785156250012,-34.844335937500034],[173.43867187500004,-34.92851562499996],[173.47265625000003,-34.94697265624998],[173.6937500000001,-35.00566406249996],[173.73925781249997,-35.05458984374998],[173.78623046875012,-35.06855468749998],[173.81279296875002,-35.04121093749999],[173.84394531250015,-35.02626953124998],[173.92382812500009,-35.05712890624996],[174.10400390625003,-35.14287109375002],[174.11894531250007,-35.172363281249986],[174.10976562499994,-35.21640625],[174.11875,-35.26289062500004],[174.1431640625,-35.3],[174.20322265625015,-35.30859375000003],[174.28291015625004,-35.253515625],[174.32031250000003,-35.246679687500034],[174.37333984375002,-35.32451171874999],[174.3931640625001,-35.368554687499994],[174.3849609375001,-35.367089843750044],[174.4191406250001,-35.41074218749996],[174.46474609375,-35.454101562500014],[174.54345703125,-35.58203124999996],[174.53173828124994,-35.62695312499996],[174.50859375000002,-35.66738281250002],[174.58066406250018,-35.78554687500004],[174.53349609375013,-35.79375],[174.39101562500005,-35.77373046875002],[174.39580078124996,-35.79736328124996],[174.47871093750015,-35.88408203125003],[174.54873046875005,-36.00664062499996],[174.6048828125001,-36.08056640625],[174.8021484375,-36.30947265625001],[174.77246093749997,-36.39091796874999],[174.77705078125004,-36.44462890625002],[174.75175781250002,-36.490820312500006],[174.8192382812501,-36.612109375000024],[174.7771484375,-36.64980468749998],[174.74921875,-36.77402343749998],[174.71865234375,-36.795800781249966],[174.72246093750007,-36.84121093749997],[174.8019531250001,-36.853222656250026],[174.84990234375013,-36.87255859374997],[174.89140625,-36.909375],[174.91718750000015,-36.865039062500045],[174.95205078124994,-36.852929687499966],[175.04707031250015,-36.91220703124996],[175.24511718749997,-36.97128906250002],[175.29951171875004,-36.99326171874996],[175.32646484375002,-37.040917968749994],[175.34667968750009,-37.15615234375002],[175.3853515625001,-37.206933593749966],[175.46093750000009,-37.21669921875001],[175.54248046874997,-37.20136718749999],[175.56816406250005,-37.159375],[175.55195312500015,-37.04648437499996],[175.49316406250009,-36.86572265625],[175.49287109374998,-36.80693359375002],[175.50126953125013,-36.748046875],[175.48740234375012,-36.68955078124999],[175.4580078125,-36.634277343750014],[175.42636718750012,-36.59189453124999],[175.38554687500002,-36.55634765625004],[175.39980468750005,-36.50078124999999],[175.46083984375005,-36.475683593750034],[175.49765625000012,-36.52265625000001],[175.52802734375004,-36.579296875],[175.68144531250007,-36.746972656249966],[175.77216796875004,-36.73515625],[175.78066406249997,-36.80458984374998],[175.8421875000001,-36.87509765624996],[175.8761718750001,-36.95771484375],[175.92109375000004,-37.20458984375003],[175.99013671875005,-37.437011718750036],[176.11455078125002,-37.53828124999997],[176.12900390625012,-37.58671874999999],[176.0533203125001,-37.56171875000003],[176.02988281250018,-37.57626953124999],[176.03789062500002,-37.60068359374999],[176.10839843749997,-37.64511718749998],[176.19111328125015,-37.6669921875],[176.24316406250009,-37.66386718749997],[176.29169921875004,-37.68007812499999],[176.61474609374994,-37.83095703125001],[176.77001953124997,-37.88964843749997],[177.16181640625004,-37.9857421875],[177.27402343750012,-37.993457031249974],[177.33593749999997,-37.99082031249998],[177.4533203125001,-37.957421875],[177.55830078125015,-37.89746093749996],[177.64892578124997,-37.8078125],[177.72734375000013,-37.70556640625004],[177.8126953125001,-37.65595703124997],[177.9094726562501,-37.61689453125],[177.95800781250003,-37.58066406249999],[178.0091796875,-37.55488281249998],[178.2721679687501,-37.56689453125003],[178.36074218750005,-37.61845703124996],[178.47597656250005,-37.659765625000034],[178.53623046875003,-37.69208984375003],[178.51601562500005,-37.75761718749999],[178.44707031250002,-37.85439453124998],[178.39394531250002,-37.96025390624996],[178.34726562500012,-38.200878906250054],[178.31542968750003,-38.444042968750026],[178.26767578125006,-38.551171875],[178.18066406249991,-38.63369140625002],[178.08486328124994,-38.69394531249996],[177.976171875,-38.72226562500005],[177.9321289062499,-38.860253906249994],[177.9103515625001,-39.021777343750045],[177.91660156250012,-39.062402343749966],[177.9513671875001,-39.09453125000003],[177.965625,-39.14248046875004],[177.90878906250012,-39.23955078125],[177.87548828124991,-39.22548828124997],[177.82871093750018,-39.14472656250004],[177.78613281250003,-39.1109375],[177.65585937500012,-39.08574218750002],[177.52294921875003,-39.07382812499999],[177.40751953124996,-39.08115234374998],[177.2965820312501,-39.11582031250002],[177.12871093750002,-39.18613281250005],[177.07675781250012,-39.22177734375002],[177.03125,-39.266894531249974],[176.95410156249997,-39.367578124999966],[176.93574218750013,-39.490722656250014],[176.93925781249996,-39.55527343750002],[176.96660156250002,-39.60517578124997],[177.10986328125009,-39.673144531250045],[176.96796875000015,-39.91074218749996],[176.8421875000001,-40.15781250000002],[176.7707031250001,-40.22841796875002],[176.68876953125013,-40.29345703125004],[176.61152343749998,-40.441992187500006],[176.47646484375,-40.570019531249976],[176.38515625000005,-40.66767578124998],[176.31386718750008,-40.76894531250001],[176.25175781250005,-40.876855468749966],[176.11865234374994,-41.02910156249999],[176.05996093750002,-41.129687500000045],[175.98291015625003,-41.21328125000002],[175.83964843750013,-41.32011718750003],[175.68730468750002,-41.411718750000034],[175.44707031250005,-41.53828124999998],[175.38027343749997,-41.580078124999964],[175.30976562499995,-41.610644531249974],[175.22216796874991,-41.57441406249997],[175.20449218750002,-41.53496093750002],[175.18466796875012,-41.4490234375],[175.16562500000012,-41.41738281249995],[175.05390625000007,-41.391210937500034],[174.90605468750002,-41.43291015625],[174.88134765624994,-41.42402343749997],[174.8751953125001,-41.40429687500004],[174.875,-41.27822265625002],[174.90019531250005,-41.24267578124997],[174.8656250000001,-41.223046874999966],[174.8315429687499,-41.23076171875003],[174.8197265625,-41.262890625],[174.84121093750008,-41.29072265625],[174.75703125000004,-41.32529296875001],[174.66953125000012,-41.326269531250034],[174.64296875000005,-41.312695312500026],[174.63535156250012,-41.28945312499999],[174.65654296874996,-41.25126953125003],[174.68486328125007,-41.21767578125004],[174.84775390624998,-41.05878906249999],[175.01679687499998,-40.84765624999997],[175.1625,-40.62158203125],[175.20048828125013,-40.50537109374995],[175.25410156250004,-40.28935546875],[175.21015625000015,-40.19941406249997],[175.1559570312501,-40.11494140625],[175.00927734375009,-39.95214843749996],[174.81376953125002,-39.860156250000045],[174.68730468750002,-39.84716796874997],[174.56748046875012,-39.81298828125003],[174.45468750000003,-39.73515624999999],[174.35205078124991,-39.64335937500002],[174.14863281250004,-39.568164062499974],[173.93437500000013,-39.50908203125002],[173.81210937500003,-39.42578125],[173.78300781250002,-39.37617187500004],[173.76367187499994,-39.31875],[173.76640625000002,-39.26533203125001],[173.7816406250001,-39.21123046875],[173.8060546875001,-39.169531250000034],[173.84433593750006,-39.13935546875001],[174.07138671875012,-39.03125],[174.3117187500001,-38.97109375000002],[174.35605468750003,-38.97216796874997],[174.39843749999997,-38.96259765624998],[174.45849609374994,-38.92578125000003],[174.56621093750005,-38.84160156250002],[174.59736328124998,-38.78505859374995],[174.61855468750005,-38.60527343750002],[174.65302734375015,-38.42832031250002],[174.71533203125,-38.225585937500014],[174.80927734374998,-38.09980468749997],[174.84003906250004,-38.02265624999998],[174.80166015625005,-37.895507812500014],[174.8368164062501,-37.84892578125002],[174.8795898437501,-37.82080078124997],[174.92802734375,-37.80449218750003],[174.84599609375002,-37.68515624999996],[174.74941406250005,-37.504687499999974],[174.72919921875004,-37.44873046875003],[174.74394531250002,-37.39345703125005],[174.76767578125003,-37.339062499999976],[174.70742187500005,-37.32529296875002],[174.67255859375004,-37.273144531250054],[174.58583984374994,-37.09775390625002],[174.60966796875002,-37.069921875000034],[174.65966796875009,-37.088769531249966],[174.73427734375,-37.21523437499998],[174.74638671874996,-37.15009765625002],[174.8036132812501,-37.11005859375004],[174.8638671875001,-37.08925781249997],[174.92890625000004,-37.084765625000045],[174.7820312500001,-36.94375],[174.73291015625009,-36.9494140625],[174.66796874999997,-36.971875],[174.60146484374994,-36.98574218750002],[174.53652343750002,-36.973339843749976],[174.47558593750009,-36.94189453124997],[174.44453125000015,-36.88251953125005],[174.40605468750013,-36.76826171875003],[174.38193359375018,-36.72597656250003],[174.1888671875001,-36.492285156250034],[174.24570312500012,-36.48496093749996],[174.4015625000001,-36.60195312499999],[174.43173828125018,-36.56455078125002],[174.45429687500015,-36.51074218749998],[174.446875,-36.45087890625004],[174.4095703125001,-36.40556640624996],[174.35410156250018,-36.37597656249997],[174.35312500000018,-36.32285156249998],[174.39541015625002,-36.27412109375],[174.39277343750004,-36.24003906249999],[174.30351562500002,-36.170507812500034],[174.26787109375002,-36.16308593750003],[174.25205078125018,-36.19560546874999],[174.27753906250004,-36.24375],[174.25371093749996,-36.24912109374998],[174.03642578125013,-36.12246093750001],[173.96933593750012,-36.02060546874996],[173.91445312499994,-35.908691406249986],[173.9088867187501,-35.95419921875002],[173.91728515625002,-36.01816406249999],[174.003125,-36.14628906249999],[174.14238281250002,-36.28945312500002],[174.16640624999994,-36.327636718749986],[174.14580078125,-36.376953124999986],[174.09746093750013,-36.391015625],[174.05468749999991,-36.35976562500004],[173.99101562500013,-36.23720703125004],[173.94511718750002,-36.17587890624998],[173.4122070312501,-35.542578125],[173.48027343749993,-35.45898437500003],[173.58583984375,-35.38857421874998],[173.6103515625,-35.35722656249999],[173.62617187500004,-35.31914062499996],[173.581640625,-35.31259765624996],[173.54169921875004,-35.32988281250001],[173.49609374999997,-35.36230468749995],[173.45429687499998,-35.39921875000002],[173.40166015625013,-35.48115234375001],[173.3763671875001,-35.500097656249956],[173.31396484375003,-35.44335937499995],[173.29023437500015,-35.408300781250006],[173.29121093749998,-35.36630859374997],[173.27451171875018,-35.33964843749996],[173.22812500000012,-35.33125],[173.16015625000003,-35.24775390624998],[173.11669921874994,-35.205273437500026],[173.18876953125002,-35.123730468750026],[173.190625,-35.01621093749998],[173.11728515625012,-34.90332031249997],[173.02958984375007,-34.79990234374996],[172.86074218750002,-34.632324218750014],[172.70595703125005,-34.45517578124998],[172.87373046875004,-34.432910156249974],[173.04394531249997,-34.429101562499994],[172.96376953125,-34.53515625000003],[172.99980468750007,-34.59648437499999],[173.0543945312501,-34.648242187499974],[173.17109375000004,-34.806933593749974],[173.18125,-34.85273437499997],[173.24052734374996,-34.89902343749999],[173.26943359375,-34.93476562499998]]],[[[-171.18642578125,-9.355468750000014],[-171.188623046875,-9.358300781249966],[-171.193017578125,-9.352441406250009],[-171.200048828125,-9.344726562499957],[-171.20444335937503,-9.333300781250015],[-171.20166015624997,-9.332617187499977],[-171.19443359375003,-9.33876953124998],[-171.18930664062492,-9.34658203124998],[-171.18642578125,-9.355468750000014]]],[[[-172.47915039062502,-8.580761718750011],[-172.48369140624996,-8.582910156250009],[-172.488232421875,-8.571582031250003],[-172.49404296875,-8.559179687499963],[-172.498681640625,-8.547949218749991],[-172.497021484375,-8.546484374999949],[-172.48725585937498,-8.556152343749972],[-172.48110351562497,-8.567480468749963],[-172.47915039062502,-8.580761718750011]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Pitcairn Islands","adm0_a3":"PCN","geou_dif":0,"geounit":"Pitcairn Islands","gu_a3":"PCN","su_dif":0,"subunit":"Pitcairn Islands","su_a3":"PCN","brk_diff":0,"name":"Pitcairn Is.","name_long":"Pitcairn Islands","brk_a3":"PCN","brk_name":"Pitcairn Is.","brk_group":null,"abbrev":"Pit. Is.","postal":"PN","formal_en":"Pitcairn, Henderson, Ducie and Oeno Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Pitcairn Islands","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":48,"gdp_md_est":0.72,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"PN","iso_a3":"PCN","iso_n3":"612","un_a3":"612","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"PCN","adm0_a3_us":"PCN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":12,"long_len":16,"abbrev_len":8,"tiny":-99,"homepart":-99,"filename":"PCN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-128.290087890625,-24.39736328125001],[-128.3,-24.41259765625],[-128.320654296875,-24.399707031250003],[-128.3421875,-24.370703125],[-128.3501953125,-24.340234375],[-128.330126953125,-24.3232421875],[-128.30361328125,-24.33359375],[-128.2908203125,-24.364648437500005],[-128.290087890625,-24.39736328125001]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Palau","sov_a3":"PLW","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Palau","adm0_a3":"PLW","geou_dif":0,"geounit":"Palau","gu_a3":"PLW","su_dif":0,"subunit":"Palau","su_a3":"PLW","brk_diff":0,"name":"Palau","name_long":"Palau","brk_a3":"PLW","brk_name":"Palau","brk_group":null,"abbrev":"Palau","postal":"PW","formal_en":"Republic of Palau","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Palau","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":1,"mapcolor13":12,"pop_est":20796,"gdp_md_est":164,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PW","iso_a3":"PLW","iso_n3":"585","un_a3":"585","wb_a2":"PW","wb_a3":"PLW","woe_id":-99,"adm0_a3_is":"PLW","adm0_a3_us":"PLW","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"PLW.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.17236328124997,3.026220703125048],[131.14960937500004,3.021875],[131.13496093750004,3.02524414062502],[131.13671874999997,3.03945312499999],[131.1515625000001,3.054101562500037],[131.17236328124997,3.060595703125031],[131.187890625,3.055615234374997],[131.18632812500005,3.042089843749991],[131.17236328124997,3.026220703125048]]],[[[134.5954101562501,7.382031249999969],[134.53466796874997,7.360644531249974],[134.50625,7.437109375],[134.51572265625012,7.525781250000037],[134.55595703125007,7.593945312499983],[134.59970703125003,7.615771484374988],[134.60869140625007,7.623583984374974],[134.65117187500002,7.712109374999982],[134.65957031250005,7.663281249999984],[134.63271484375,7.501318359375034],[134.59824218750003,7.438281249999974],[134.5954101562501,7.382031249999969]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Papua New Guinea","sov_a3":"PNG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Papua New Guinea","adm0_a3":"PNG","geou_dif":0,"geounit":"Papua New Guinea","gu_a3":"PNG","su_dif":1,"subunit":"Papua New Guinea","su_a3":"PN1","brk_diff":0,"name":"Papua New Guinea","name_long":"Papua New Guinea","brk_a3":"PN1","brk_name":"Papua New Guinea","brk_group":null,"abbrev":"P.N.G.","postal":"PG","formal_en":"Independent State of Papua New Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Papua New Guinea","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":3,"mapcolor13":1,"pop_est":6057263,"gdp_md_est":13210,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PG","iso_a3":"PNG","iso_n3":"598","un_a3":"598","wb_a2":"PG","wb_a3":"PNG","woe_id":-99,"adm0_a3_is":"PNG","adm0_a3_us":"PNG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":16,"long_len":16,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"PNG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[153.53613281249997,-11.476171874999949],[153.70322265625006,-11.528515624999955],[153.75986328125003,-11.586328125],[153.69951171875002,-11.612597656249946],[153.55371093749997,-11.630566406249969],[153.5192382812501,-11.595214843749957],[153.37900390625012,-11.559570312499986],[153.35703125000006,-11.49501953124998],[153.28681640625004,-11.516992187500009],[153.32236328125012,-11.471484374999973],[153.23447265625006,-11.420312500000035],[153.20703124999997,-11.351855468750031],[153.20361328124997,-11.32412109374998],[153.30673828125006,-11.356347656249966],[153.53613281249997,-11.476171874999949]]],[[[154.28076171874994,-11.36142578125002],[154.266015625,-11.415917968750021],[154.2295898437501,-11.397460937499998],[154.12119140625006,-11.425683593749966],[154.06406250000006,-11.419335937500009],[154.03115234375,-11.370507812500009],[154.02343750000003,-11.347949218750031],[154.11767578124997,-11.365527343749974],[154.1017578125001,-11.311425781249966],[154.2378906250001,-11.338867187499957],[154.28076171874994,-11.36142578125002]]],[[[150.89873046875002,-10.565332031250023],[150.88466796875,-10.643457031250037],[150.80234375000006,-10.620214843750006],[150.78574218750006,-10.603417968749966],[150.79931640625003,-10.554101562499952],[150.87207031249997,-10.551855468750034],[150.89873046875002,-10.565332031250023]]],[[[151.08095703125,-10.020117187499963],[151.12343750000005,-10.020214843749983],[151.19433593750003,-9.945507812499955],[151.25566406250007,-9.92265625],[151.29648437500012,-9.956738281250026],[151.230859375,-10.194726562500007],[151.1754882812501,-10.158886718749997],[150.95917968750004,-10.092578124999989],[150.95244140625002,-9.9984375],[150.89609375000003,-9.968066406250017],[150.86132812500003,-9.87617187500004],[150.78964843750006,-9.77431640624998],[150.77607421875,-9.70908203125002],[150.81669921875007,-9.735937499999977],[150.86230468749997,-9.802441406250026],[151.05146484375004,-9.938964843749957],[151.04414062500004,-9.983105468749983],[151.08095703125,-10.020117187499963]]],[[[150.52841796875006,-9.34658203124998],[150.66904296875012,-9.428515624999974],[150.746484375,-9.404492187499955],[150.78867187500006,-9.417968749999957],[150.8791015625001,-9.512695312499972],[150.88408203125002,-9.581933593749964],[150.8986328125001,-9.64140625],[150.89404296875003,-9.667480468749986],[150.84404296875005,-9.702832031249983],[150.84824218750012,-9.662597656249957],[150.80996093750002,-9.654785156249972],[150.67832031250006,-9.656542968749974],[150.57626953125012,-9.631152343749944],[150.43623046875004,-9.624609374999949],[150.49531250000004,-9.561718750000011],[150.5084960937501,-9.536132812499957],[150.43466796875006,-9.434960937500037],[150.43144531250002,-9.386621093749966],[150.43730468750007,-9.359960937500034],[150.49892578125,-9.34560546874995],[150.52841796875006,-9.34658203124998]]],[[[150.3454101562501,-9.493847656249955],[150.33134765625007,-9.518554687500014],[150.27285156250005,-9.500390624999952],[150.10976562500005,-9.361914062499991],[150.1349609375001,-9.259570312500017],[150.20830078125002,-9.206347656250003],[150.32011718750007,-9.26416015624997],[150.35703125000006,-9.349023437500023],[150.36816406250003,-9.396484375000014],[150.3454101562501,-9.493847656249955]]],[[[152.63095703125012,-8.959375],[152.68925781250002,-8.974609374999957],[152.81005859375003,-8.967187499999952],[152.84980468750004,-9.02451171874999],[152.90507812500002,-9.044238281250017],[152.95292968750007,-9.07011718749996],[152.9953125000001,-9.1078125],[152.99501953125005,-9.130761718749964],[152.9849609375001,-9.150781249999966],[152.95927734375002,-9.168652343749969],[152.96689453125006,-9.208984375000014],[152.92275390625,-9.203027343750037],[152.86748046875007,-9.224316406250026],[152.75947265625007,-9.177148437500009],[152.7201171875,-9.166503906249972],[152.70820312500004,-9.12607421874999],[152.6380859375,-9.058398437499974],[152.51513671874997,-9.009863281250034],[152.57705078124997,-8.970019531250003],[152.63095703125012,-8.959375]]],[[[143.59033203125003,-8.633398437499991],[143.60820312500002,-8.677148437500023],[143.46279296874997,-8.617089843750037],[143.32412109375,-8.51679687500004],[143.25380859375005,-8.489550781249989],[143.20683593750007,-8.42343750000002],[143.29306640625006,-8.472753906250034],[143.44335937500003,-8.518945312500023],[143.59033203125003,-8.633398437499991]]],[[[151.10683593750005,-8.733496093749947],[151.12412109375012,-8.804882812500011],[151.04619140625002,-8.72832031249996],[151.08076171875004,-8.641796875000011],[151.08681640625005,-8.595019531249989],[151.08281250000002,-8.568652343750031],[151.00498046875006,-8.523828124999952],[151.04628906250005,-8.45058593749995],[151.09013671875002,-8.425976562500011],[151.117578125,-8.41884765624998],[151.11640625000004,-8.521875],[151.13857421875,-8.568066406249997],[151.10683593750005,-8.733496093749947]]],[[[143.58681640625005,-8.481738281250003],[143.5431640625001,-8.48476562499999],[143.3668945312501,-8.416894531250023],[143.321875,-8.367578125],[143.52822265625,-8.37851562500002],[143.5814453125,-8.390917968749974],[143.592578125,-8.4599609375],[143.58681640625005,-8.481738281250003]]],[[[148.02578125,-5.826367187500011],[147.98544921875006,-5.833984374999972],[147.96796875000004,-5.788574218749957],[147.87451171875003,-5.749218750000025],[147.78105468750007,-5.627246093749945],[147.78251953125,-5.522460937500014],[147.7946289062501,-5.492382812500011],[147.84648437500002,-5.490820312499963],[148.05478515625003,-5.61152343750004],[148.07607421875005,-5.650195312500003],[148.06044921875,-5.764648437499972],[148.02578125,-5.826367187500011]]],[[[155.95761718750006,-6.686816406249989],[155.93320312500006,-6.780468749999969],[155.91494140625,-6.796679687499988],[155.89189453125,-6.761523437500016],[155.80498046875005,-6.79560546875004],[155.76347656250007,-6.834375],[155.71933593750012,-6.862792968749957],[155.61738281250004,-6.855957031249986],[155.5208984375,-6.830273437499997],[155.42734375000006,-6.782714843749986],[155.34404296875005,-6.721679687499986],[155.260546875,-6.626074218749963],[155.20859375000003,-6.526855468749999],[155.23447265625012,-6.411621093749972],[155.20214843750003,-6.307617187499999],[155.04462890625004,-6.23369140624996],[155.01015625,-6.20976562499996],[154.94023437500002,-6.106152343749996],[154.8703125000001,-6.061425781250037],[154.78193359375004,-5.970703125000028],[154.75927734375003,-5.931347656249996],[154.72109375000005,-5.816503906249963],[154.70898437499997,-5.747070312500028],[154.74111328125005,-5.545312499999952],[154.729296875,-5.444433593750006],[154.7726562500001,-5.454101562500028],[154.81845703125006,-5.494042968749994],[154.87050781250005,-5.521386718749966],[154.99707031249997,-5.539941406250023],[155.09384765625006,-5.620214843750034],[155.18671875000004,-5.77695312499999],[155.19785156250012,-5.828320312499969],[155.22753906250003,-5.865234375000028],[155.32304687500002,-5.931738281249991],[155.37255859374997,-5.974414062499974],[155.46699218750004,-6.145117187500034],[155.51933593750007,-6.181542968749994],[155.58105468750003,-6.196191406249952],[155.63847656250007,-6.220800781249991],[155.7341796875,-6.295703124999974],[155.82255859375002,-6.38046875000002],[155.8822265625,-6.469628906249965],[155.92763671875,-6.565039062499963],[155.95761718750006,-6.686816406249989]]],[[[147.17626953124994,-5.431933593749946],[147.12021484375012,-5.437402343749994],[147.02900390625007,-5.342382812500006],[147.00585937499997,-5.30703125],[147.01474609375012,-5.25742187500002],[147.1310546875001,-5.190820312500037],[147.20634765625007,-5.251562499999977],[147.221875,-5.381542968749983],[147.17626953124994,-5.431933593749946]]],[[[154.64726562500002,-5.43271484375002],[154.62734375000005,-5.440625],[154.58388671874997,-5.314453125],[154.57617187500003,-5.22089843750004],[154.56279296875007,-5.15195312500002],[154.54003906250003,-5.11083984375],[154.60556640625006,-5.034960937499989],[154.63261718750007,-5.013867187499955],[154.68203125,-5.05400390624996],[154.68916015625004,-5.142675781249991],[154.72714843750006,-5.218066406249989],[154.6984375,-5.382812499999986],[154.64726562500002,-5.43271484375002]]],[[[146.01933593750007,-4.726171874999963],[145.95234375000004,-4.755761718749952],[145.90400390625,-4.73300781250002],[145.88359375000007,-4.66748046875],[145.90019531250007,-4.604199218749983],[145.9587890625,-4.554296875000034],[145.9958007812501,-4.539257812499983],[146.03740234375002,-4.573144531249966],[146.0534179687501,-4.640136718750028],[146.01933593750007,-4.726171874999963]]],[[[151.915625,-4.296777343749966],[151.96757812500007,-4.316992187500006],[152.11718749999997,-4.212207031249974],[152.19726562499997,-4.28515625],[152.29941406250006,-4.320703124999966],[152.40566406250005,-4.340722656249952],[152.36357421875002,-4.490820312499977],[152.37607421875006,-4.560253906249997],[152.40351562500004,-4.629296875000037],[152.4,-4.73125],[152.35117187500006,-4.82216796874998],[152.25761718750002,-4.954687499999977],[152.21572265625,-4.979199218749996],[152.16660156250012,-4.9931640625],[152.01328125000006,-5.003808593750037],[151.98369140625007,-5.07441406250004],[151.99394531250002,-5.149023437499963],[152.07685546875004,-5.247070312499943],[152.14296874999997,-5.357031249999963],[152.07705078125,-5.458300781249989],[151.96845703125,-5.528808593749972],[151.86542968750004,-5.564843750000022],[151.69492187500012,-5.543554687499949],[151.51513671874997,-5.552343749999962],[151.48144531249997,-5.590917968750006],[151.48046874999994,-5.654589843750017],[151.45517578125012,-5.703125],[151.42246093750012,-5.747363281250003],[151.33125,-5.839062500000026],[151.22929687500002,-5.919921874999985],[151.0900390625001,-5.996679687499991],[151.04316406250004,-6.015039062499994],[150.91992187499997,-6.027246093749994],[150.808984375,-6.07138671875002],[150.75957031250007,-6.114453125],[150.70576171875004,-6.149414062500013],[150.58808593750004,-6.187792968750017],[150.47353515625,-6.263378906249969],[150.42832031250012,-6.276171874999989],[150.19082031250005,-6.289355468750017],[149.8509765625,-6.292968749999956],[149.75029296875005,-6.300878906249963],[149.65253906250004,-6.290429687499966],[149.59843750000002,-6.2609375],[149.48300781250006,-6.124804687499974],[149.38232421874997,-6.078125],[149.27265625000004,-6.079492187499979],[149.12656250000012,-6.127636718750026],[149.0990234375,-6.116992187499989],[148.80751953125005,-5.916406249999979],[148.71914062500005,-5.867382812500026],[148.62480468750002,-5.830761718750026],[148.509765625,-5.805371093749997],[148.401171875,-5.765039062499952],[148.33720703125007,-5.669433593750014],[148.34472656249997,-5.544921874999972],[148.43203124999997,-5.471777343749991],[148.56494140624997,-5.507910156249977],[148.61582031250006,-5.507421874999962],[148.66582031250002,-5.486621093749989],[148.72431640625004,-5.493261718750005],[148.78349609375002,-5.511621093750023],[148.99921875000007,-5.484570312500011],[149.12402343750003,-5.522656249999955],[149.24531250000004,-5.573046875000016],[149.35888671875003,-5.583984375000014],[149.47539062500002,-5.573242187499957],[149.63173828125,-5.516015625000023],[149.6810546875,-5.523535156249963],[149.8314453125,-5.524121093749997],[149.96279296875,-5.447753906249972],[150.0119140625001,-5.13955078124998],[150.04531250000005,-5.034667968750014],[150.09003906250007,-5.011816406249977],[150.1222656250001,-5.018164062500034],[150.1703125,-5.070605468749974],[150.10869140625007,-5.136035156249974],[150.08154296874997,-5.186425781250023],[150.0724609375001,-5.309570312499986],[150.10625,-5.429003906249974],[150.18310546874997,-5.523632812499983],[150.29873046875,-5.535644531250028],[150.40439453125012,-5.47314453125],[150.51943359374997,-5.460253906249946],[150.62578125000002,-5.520898437499952],[150.73447265625012,-5.510449218749955],[150.784375,-5.470898437499983],[150.84257812500002,-5.453710937500034],[150.90029296875002,-5.447167968750037],[150.95292968750002,-5.423730468749966],[151.02226562500002,-5.320703125000023],[151.06884765625003,-5.20449218749998],[151.13779296875012,-5.112890624999962],[151.32656250000005,-4.96035156249998],[151.38095703125012,-4.941308593750009],[151.43984375,-4.930957031250031],[151.57255859375005,-4.9375],[151.67119140625005,-4.88330078125],[151.67890625000004,-4.76103515624996],[151.66464843750006,-4.637011718750003],[151.55195312500004,-4.345507812499946],[151.54423828125007,-4.299218750000023],[151.56054687500003,-4.247363281250031],[151.59306640625007,-4.200781249999948],[151.70371093750006,-4.2],[151.81933593749997,-4.216992187499969],[151.86474609374997,-4.26083984375002],[151.915625,-4.296777343749966]]],[[[153.65927734375012,-4.099316406249983],[153.65009765625007,-4.123046875000014],[153.59150390625004,-4.095996093750017],[153.63974609375012,-4.04472656249996],[153.66298828125005,-4.04121093750004],[153.65927734375012,-4.099316406249983]]],[[[152.67060546875004,-3.133398437500019],[152.64619140625004,-3.221191406249957],[152.58505859375012,-3.16982421874998],[152.54326171875,-3.095605468749952],[152.56992187500012,-3.0625],[152.63876953125012,-3.042773437500031],[152.67060546875004,-3.133398437500019]]],[[[152.09921875000006,-2.947363281249949],[152.08847656250012,-2.997851562500017],[152.05732421875004,-2.99492187499996],[151.97109375,-2.89609375],[151.95458984374997,-2.870507812500009],[151.97470703125012,-2.845605468750008],[152.074609375,-2.918457031250014],[152.09921875000006,-2.947363281249949]]],[[[151.9572265625001,-2.830175781249963],[151.93339843750002,-2.830371093750003],[151.92978515625012,-2.750585937500006],[151.9463867187501,-2.708593749999977],[152.00195312499994,-2.737792968749972],[152.01132812500012,-2.809179687499949],[151.9572265625001,-2.830175781249963]]],[[[144.12197265625,-3.815234375000017],[144.24794921875,-3.818261718750009],[144.3744140625,-3.802734374999957],[144.42656250000002,-3.809667968750034],[144.4777343750001,-3.825292968750019],[144.52451171875012,-3.855273437500002],[144.54824218750002,-3.913085937499957],[144.62666015625004,-3.993066406250009],[144.73789062500006,-4.029101562499974],[144.84345703125004,-4.101464843749966],[144.93847656249997,-4.188183593749969],[145.00839843750012,-4.275488281249991],[145.08779296874997,-4.349121093749972],[145.20800781249997,-4.380273437500023],[145.33457031250012,-4.385253906249972],[145.76699218749997,-4.823046874999989],[145.78808593749994,-4.890625],[145.79287109375005,-5.177929687499983],[145.7452148437501,-5.402441406249977],[145.85283203125002,-5.471289062499977],[145.9994140625,-5.497070312499985],[146.20537109375007,-5.545117187500011],[146.40341796875006,-5.616601562500008],[147.03427734375006,-5.919238281250017],[147.12089843750007,-5.945019531250026],[147.24824218750004,-5.954785156249982],[147.37666015625004,-5.950781249999963],[147.42275390625,-5.966210937499993],[147.51855468749997,-6.02109375],[147.56669921875002,-6.056933593750003],[147.65302734375,-6.154785156249957],[147.73007812500006,-6.261132812500037],[147.762890625,-6.291503906250014],[147.80205078125002,-6.31523437499996],[147.82451171875007,-6.373046875000014],[147.8544921875,-6.55117187499998],[147.84550781250007,-6.662402343749988],[147.81044921875005,-6.703613281249943],[147.70957031250003,-6.723632812500028],[147.35576171875002,-6.742382812500026],[147.11914062499997,-6.721679687499986],[146.95361328124994,-6.834082031249963],[146.94921874999997,-6.883105468750003],[146.96074218750002,-6.928808593749991],[147.1048828125,-7.166992187500028],[147.19003906250012,-7.378125],[147.26015625,-7.464062499999968],[147.36533203125012,-7.533789062499962],[147.45898437500003,-7.616210937499971],[147.54511718750004,-7.7109375],[147.72431640625004,-7.876269531250017],[147.821875,-7.9375],[147.93613281250006,-7.97539062499996],[148.12675781250005,-8.103613281249963],[148.15195312500006,-8.160253906249963],[148.20644531250005,-8.338671874999987],[148.22998046874997,-8.459667968750026],[148.2335937500001,-8.509570312499989],[148.246875,-8.554296875000032],[148.414453125,-8.663964843749994],[148.45117187499997,-8.694531250000011],[148.52587890625003,-8.938574218749991],[148.58310546875006,-9.051757812499957],[148.67949218750007,-9.091992187499983],[148.79179687500002,-9.08945312499999],[149.0974609375,-9.01689453124996],[149.14169921875006,-9.014550781250009],[149.19833984375006,-9.03125],[149.24765625000006,-9.070996093749969],[149.26406250000005,-9.180761718750034],[149.2162109375,-9.295898437499957],[149.20302734375005,-9.406835937499991],[149.26318359374997,-9.497851562499974],[149.41875,-9.568847656249956],[149.4757812500001,-9.58828125],[149.75576171875002,-9.6109375],[149.865625,-9.630078125],[149.97353515625,-9.660742187500034],[150.01103515625005,-9.688183593750026],[149.98466796875002,-9.737011718750026],[149.92822265624997,-9.760839843749991],[149.86435546875003,-9.770605468750034],[149.76123046874997,-9.805859375000011],[149.7630859375,-9.868652343750014],[149.82128906249997,-9.934179687499963],[149.87441406250005,-10.012988281250031],[149.9191406250001,-10.041601562499991],[149.96757812500002,-10.060742187499983],[150.08857421875004,-10.088085937499953],[150.20625,-10.125585937499963],[150.28388671875004,-10.162890625000015],[150.36406250000007,-10.189648437499953],[150.53886718750007,-10.206738281249967],[150.66699218749997,-10.25712890625003],[150.84951171875,-10.236035156249997],[150.69130859375005,-10.317871093749972],[150.63681640625012,-10.337988281249977],[150.44609375000007,-10.30732421875004],[150.41025390625006,-10.339257812499966],[150.48886718750006,-10.425781250000014],[150.60546875,-10.484082031249983],[150.6471679687501,-10.517968749999966],[150.61796875000002,-10.557617187499957],[150.48242187500003,-10.636914062500038],[150.42578125000003,-10.648535156250006],[150.3199218750001,-10.654882812499963],[150.14238281250002,-10.62070312500002],[150.01679687500007,-10.577148437500028],[149.98154296875012,-10.517675781249991],[149.94804687500002,-10.482617187499953],[149.83476562500007,-10.398828125000023],[149.75410156250004,-10.353027343750028],[149.65136718749997,-10.3375],[149.54433593750002,-10.338476562499991],[149.35263671875006,-10.289746093750011],[148.93681640625007,-10.255175781249989],[148.83769531250007,-10.233984375000018],[148.71289062500003,-10.166894531250023],[148.65419921875005,-10.157324218750034],[148.5912109375,-10.178417968749983],[148.43056640625,-10.191406249999957],[148.38339843750006,-10.185449218749994],[148.26875,-10.12822265624996],[148.15048828125012,-10.107324218749966],[148.10126953125004,-10.124511718750014],[148.05136718750006,-10.128320312499978],[147.89013671875003,-10.08740234375],[147.76865234375012,-10.070117187500031],[147.66884765625005,-10.013085937499952],[147.61435546875006,-9.959765625000015],[147.553125,-9.91240234374996],[147.496484375,-9.790429687499978],[147.40830078125006,-9.674707031250037],[147.29892578125006,-9.579589843750014],[147.06445312500003,-9.426074218750003],[147.01718750000006,-9.38789062500004],[146.92539062500012,-9.247167968749977],[146.93037109375004,-9.153906249999975],[146.96376953125,-9.059570312499943],[146.91328125000004,-9.091699218750009],[146.85625,-9.087695312499989],[146.69658203125002,-9.025390625],[146.63085937499994,-8.951171874999972],[146.52412109375,-8.749707031249969],[146.45585937500002,-8.643554687500014],[146.29648437500006,-8.45556640625],[146.25058593750012,-8.343945312499997],[146.18408203124994,-8.246386718750017],[146.14296875000005,-8.210253906250017],[146.1087890625,-8.168457031249943],[146.07851562500005,-8.11416015624998],[146.03320312499994,-8.076367187500011],[145.8109375,-7.992773437500033],[145.77177734375002,-7.96640625],[145.72871093750004,-7.952441406249988],[145.56337890625,-7.943847656250013],[145.46777343749997,-7.930078124999967],[145.2875,-7.861621093749959],[145.19433593749997,-7.841113281249959],[145.08232421875007,-7.828125],[144.973828125,-7.802148437500009],[144.92089843750003,-7.776660156249974],[144.88535156250006,-7.73359375],[144.86425781249997,-7.631542968749983],[144.77343750000003,-7.642480468749993],[144.684375,-7.624804687500032],[144.59794921875007,-7.58896484375002],[144.50986328125006,-7.567382812499972],[144.44970703124997,-7.598144531250014],[144.43125000000012,-7.679394531249969],[144.4034179687501,-7.683593750000014],[144.35185546875002,-7.666992187500013],[144.32617187500003,-7.676757812499957],[144.2702148437501,-7.714257812499966],[144.225390625,-7.764941406249989],[144.14287109375007,-7.757226562500009],[143.97363281249997,-7.705957031249952],[143.89824218750007,-7.673828124999986],[143.83417968750004,-7.615917968749996],[143.77910156250002,-7.550097656250003],[143.72333984375004,-7.498242187500011],[143.65488281250012,-7.460351562500009],[143.74208984375002,-7.549804687500028],[143.94228515625002,-7.944238281250009],[143.89218750000006,-7.951855468749955],[143.840625,-7.941894531249972],[143.88798828125002,-8.017675781249963],[143.83339843749997,-8.029101562499974],[143.77929687499997,-8.02822265624998],[143.66503906249997,-7.995507812499966],[143.55156250000002,-7.984667968749988],[143.51816406250003,-8.000683593749955],[143.54218750000007,-8.029101562499974],[143.58203125000003,-8.11269531249995],[143.61376953125,-8.200390624999969],[143.45,-8.23984375],[143.28203125000002,-8.263867187500026],[143.0949218750001,-8.311230468749983],[142.90546875000004,-8.314453125000028],[142.80830078125004,-8.2875],[142.70859375000006,-8.272265624999958],[142.61503906250002,-8.2875],[142.52412109375004,-8.32167968749998],[142.44755859375002,-8.316210937500031],[142.39921875000002,-8.254687500000017],[142.37646484375003,-8.208007812500012],[142.34746093750002,-8.167480468750014],[142.27587890625003,-8.173925781249991],[142.20683593750002,-8.195800781250014],[142.32509765625,-8.198339843749991],[142.36054687500004,-8.25],[142.39101562500005,-8.312695312500026],[142.47480468750004,-8.369433593750031],[142.57597656250007,-8.335644531249983],[142.79794921875003,-8.345019531250031],[143.01367187499997,-8.44384765625],[143.06484375,-8.455175781250006],[143.11181640624997,-8.474511718750035],[143.22294921875007,-8.572167968750037],[143.30673828125003,-8.6609375],[143.37724609375005,-8.762207031250028],[143.39218750000006,-8.80185546875002],[143.3875,-8.908203125000014],[143.36621093750003,-8.961035156250034],[143.22685546875007,-9.035937500000015],[143.07822265625006,-9.092480468749983],[142.85917968750002,-9.202636718749957],[142.6471679687501,-9.327832031249967],[142.53574218750012,-9.303320312499949],[142.4352539062501,-9.23701171875004],[142.39628906250002,-9.219042968750017],[142.29277343750002,-9.182910156250031],[142.22958984375012,-9.169921874999957],[141.97890625,-9.198144531250023],[141.72734375000002,-9.21259765625004],[141.62158203124997,-9.211328124999952],[141.51875,-9.190136718749983],[141.4056640625,-9.150683593750031],[141.29365234375004,-9.16816406250004],[141.21699218750004,-9.214453124999963],[141.13320312500005,-9.221289062500034],[140.97617187500012,-9.11875],[140.97597656250005,-9.105566406249991],[140.97597656250005,-8.902246093749952],[140.97587890625002,-8.698925781250011],[140.97578125000004,-8.495703125],[140.97568359375003,-8.292382812499964],[140.97558593749997,-8.089062500000026],[140.97558593749997,-7.885742187499985],[140.97548828125002,-7.68251953124998],[140.975390625,-7.479199218750039],[140.9752929687501,-7.27587890625],[140.97519531250006,-7.072558593749974],[140.97519531250006,-6.90537109375002],[140.9195312500001,-6.840039062500026],[140.86230468749994,-6.740039062499989],[140.87460937500012,-6.611523437500011],[140.94404296875004,-6.452246093749977],[140.975,-6.346093750000023],[140.975,-6.259375],[140.97490234375002,-6.056152343750028],[140.9748046875001,-5.852832031249989],[140.97470703125006,-5.649511718749963],[140.97460937499997,-5.446191406250009],[140.97460937499997,-5.24296875],[140.97451171875005,-5.039648437499962],[140.97441406250002,-4.836328125000023],[140.9743164062501,-4.633007812499997],[140.97421875000003,-4.429785156249977],[140.97421875000003,-4.226464843750037],[140.9740234375,-4.023144531249997],[140.9740234375,-3.819824218749971],[140.97392578125,-3.616601562499952],[140.97382812500004,-3.413281250000011],[140.97373046875006,-3.209960937499986],[140.97363281250003,-3.006640624999946],[140.97353515625,-2.803417968750026],[140.97343750000007,-2.681054687499966],[140.97343750000007,-2.613574218749989],[140.97343750000007,-2.609765625],[141.00332031250005,-2.61015625],[141.10478515625002,-2.611328124999971],[141.18564453125003,-2.627832031249952],[141.68681640625002,-2.845019531249974],[141.83652343750006,-2.932128906249957],[141.8875,-2.952539062500023],[141.93779296875007,-2.953320312500011],[141.98574218749997,-2.963574218749969],[142.21152343750006,-3.083496093749972],[142.5490234375001,-3.204589843749957],[142.90517578125,-3.32070312499998],[143.015625,-3.344921875000025],[143.12998046875012,-3.355078124999963],[143.3783203125,-3.395312499999988],[143.50898437500004,-3.431152343750014],[143.7005859375,-3.573339843750019],[143.79716796875005,-3.617285156250005],[143.88769531249997,-3.697460937499997],[144.01582031250004,-3.783593749999966],[144.06640625000003,-3.80517578125],[144.12197265625,-3.815234375000017]]],[[[152.96582031249994,-4.756347656249986],[152.89169921875003,-4.832421875000022],[152.84560546875,-4.761523437499974],[152.7865234375,-4.699414062500026],[152.73994140625004,-4.635839843750033],[152.68066406250003,-4.498437500000023],[152.67773437499997,-4.429199218749943],[152.69335937499997,-4.355957031249943],[152.69677734375003,-4.282031249999989],[152.66816406250004,-4.131835937500028],[152.59843750000007,-3.994824218750011],[152.35576171875002,-3.668164062499983],[152.27939453125006,-3.582421875],[152.19218750000002,-3.505859374999957],[152.13632812500003,-3.48710937499996],[152.0232421875,-3.46875],[151.97294921875002,-3.453417968750017],[151.87978515625002,-3.400097656249997],[151.79316406250004,-3.337890625000014],[151.57851562500005,-3.153515625000025],[151.4650390625001,-3.101367187499974],[151.40507812500002,-3.036914062499989],[151.06679687500005,-2.829003906249994],[150.96806640625002,-2.77988281250002],[150.84785156250004,-2.77978515625],[150.74609374999994,-2.73886718750002],[150.82646484375002,-2.712890624999971],[150.8429687500001,-2.643554687499957],[150.8253906250001,-2.572949218749969],[150.99531250000004,-2.688281250000017],[151.17460937500007,-2.789062500000028],[151.22646484375,-2.870312499999969],[151.31474609375002,-2.875292968750017],[151.47539062500005,-2.94248046875002],[151.58574218750007,-3.003027343750006],[151.68984375,-3.07285156250002],[151.80712890624997,-3.172851562499972],[152.03291015625004,-3.25136718749998],[152.06503906250012,-3.279882812500019],[152.17939453125004,-3.41035156250004],[152.3294921875,-3.520996093750014],[152.38046875000006,-3.581933593749994],[153.01679687500004,-4.105664062500026],[153.1242187500001,-4.25234375],[153.1325195312501,-4.352441406250037],[153.11152343750004,-4.391699218750034],[153.04433593750005,-4.47636718749996],[153.04560546875004,-4.576367187499997],[153.02324218750002,-4.666308593750031],[152.96582031249994,-4.756347656249986]]],[[[150.43662109375012,-2.66181640625004],[150.2375,-2.675488281249983],[150.16572265625004,-2.660253906249991],[150.10156249999997,-2.602539062499957],[150.04345703125003,-2.5125],[149.98515625000007,-2.491503906249989],[149.96162109375004,-2.473828125000026],[150.10253906249997,-2.404980468750026],[150.22714843750006,-2.384179687499966],[150.42949218750007,-2.47041015625004],[150.45,-2.513281249999977],[150.45156250000005,-2.541113281249963],[150.44609375000007,-2.632324218749986],[150.43662109375012,-2.66181640625004]]],[[[147.87695312499997,-2.28310546874998],[147.84453125,-2.33574218749996],[147.7689453125,-2.33125],[147.73554687500004,-2.31552734375002],[147.7902343750001,-2.305566406250023],[147.81220703125,-2.262109374999966],[147.83583984375005,-2.24677734375004],[147.87695312499997,-2.28310546874998]]],[[[147.06757812500004,-1.96015625],[147.4005859375001,-2.025097656249997],[147.42255859375004,-2.024316406250023],[147.41875,-2.001074218749991],[147.42441406250006,-1.99453125],[147.44414062500002,-2.011523437499989],[147.43808593750012,-2.05898437499998],[147.38544921875004,-2.070605468750031],[147.33652343750012,-2.06601562499999],[147.30136718750006,-2.090429687499991],[147.20634765625007,-2.181933593749974],[147.14218750000006,-2.166601562499963],[147.0638671875,-2.187109374999963],[146.92636718750012,-2.1890625],[146.74785156250002,-2.14882812499998],[146.69912109375,-2.182714843749963],[146.6354492187501,-2.17333984375],[146.57246093750004,-2.210449218750014],[146.54648437500012,-2.20859375],[146.53134765625012,-2.154101562499989],[146.5324218750001,-2.126171874999983],[146.60703125000006,-2.102539062499972],[146.59589843750004,-2.016894531250017],[146.65625,-1.97402343749998],[146.76005859375002,-1.977734375000026],[146.85712890625004,-1.948535156250031],[147.06757812500004,-1.96015625]]],[[[149.76542968750007,-1.553027343750017],[149.76318359375003,-1.589160156250003],[149.69091796874997,-1.57089843750002],[149.6710937500001,-1.576269531249949],[149.54589843749997,-1.471679687499957],[149.54785156249997,-1.407714843749986],[149.58095703125005,-1.353222656249983],[149.6330078125001,-1.362011718749997],[149.72529296875004,-1.430664062499957],[149.76542968750007,-1.553027343750017]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"French Polynesia","adm0_a3":"PYF","geou_dif":0,"geounit":"French Polynesia","gu_a3":"PYF","su_dif":0,"subunit":"French Polynesia","su_a3":"PYF","brk_diff":0,"name":"Fr. Polynesia","name_long":"French Polynesia","brk_a3":"PYF","brk_name":"Fr. Polynesia","brk_group":null,"abbrev":"Fr. Poly.","postal":"PF","formal_en":"French Polynesia","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"French Polynesia","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":287032,"gdp_md_est":4718,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"PF","iso_a3":"PYF","iso_n3":"258","un_a3":"258","wb_a2":"PF","wb_a3":"PYF","woe_id":-99,"adm0_a3_is":"PYF","adm0_a3_us":"PYF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":13,"long_len":16,"abbrev_len":9,"tiny":2,"homepart":-99,"filename":"PYF.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-138.50585937499994,-20.85722656250003],[-138.53486328125,-20.87587890625001],[-138.52402343750003,-20.850585937500014],[-138.54638671874994,-20.795117187499997],[-138.568359375,-20.787109374999957],[-138.54638671874994,-20.771191406249997],[-138.51494140624993,-20.81337890624998],[-138.50585937499994,-20.85722656250003]]],[[[-136.29389648437498,-18.54433593750001],[-136.3140625,-18.566308593749966],[-136.31601562499998,-18.545214843750017],[-136.34404296874996,-18.534863281250036],[-136.38291015625,-18.513671874999986],[-136.43569335937502,-18.48906250000003],[-136.46425781249997,-18.48505859375001],[-136.47851562500003,-18.470800781250045],[-136.45869140624998,-18.463183593750003],[-136.426123046875,-18.474316406250054],[-136.38037109375,-18.49677734375001],[-136.32763671875,-18.51933593749999],[-136.29389648437498,-18.54433593750001]]],[[[-140.6853515625,-18.3798828125],[-140.671875,-18.416113281250002],[-140.69604492187503,-18.39912109375001],[-140.77324218749993,-18.36376953125],[-140.78173828125,-18.33417968750001],[-140.6853515625,-18.3798828125]]],[[[-136.97172851562493,-18.341992187499997],[-136.97133789062497,-18.36093750000005],[-137.06757812500004,-18.26533203125001],[-137.02963867187503,-18.272851562500037],[-136.97172851562493,-18.341992187499997]]],[[[-140.82988281250005,-18.189355468749994],[-140.82270507812498,-18.216894531250006],[-140.86005859375004,-18.198730468750043],[-140.89545898437495,-18.147949218749996],[-140.95864257812497,-18.085058593749977],[-140.97353515624997,-18.05917968750003],[-140.92514648437495,-18.083789062499974],[-140.89326171874993,-18.120507812499994],[-140.82988281250005,-18.189355468749994]]],[[[-140.809375,-17.85664062499998],[-140.804443359375,-17.87568359375004],[-140.84082031250003,-17.873144531249963],[-140.8515625,-17.866601562499966],[-140.850732421875,-17.8310546875],[-140.82426757812493,-17.78798828125002],[-140.80361328125002,-17.751660156249997],[-140.76142578125,-17.717773437500014],[-140.68618164062497,-17.683789062500026],[-140.6498046875,-17.669726562500003],[-140.638232421875,-17.678027343750003],[-140.65205078125004,-17.68310546874997],[-140.77631835937504,-17.754101562500054],[-140.81518554687494,-17.803710937500025],[-140.83251953125003,-17.838476562500006],[-140.82924804687494,-17.849218749999974],[-140.809375,-17.85664062499998]]],[[[-149.321533203125,-17.69003906249996],[-149.177685546875,-17.736621093750045],[-149.15087890624997,-17.812109374999963],[-149.18178710937497,-17.86230468749997],[-149.25449218750003,-17.84990234375003],[-149.29047851562498,-17.822460937500026],[-149.34111328124996,-17.732421874999986],[-149.48168945312494,-17.75273437500003],[-149.5789062499999,-17.73496093749996],[-149.6328125,-17.617578125000037],[-149.63500976562497,-17.564257812500003],[-149.61142578125,-17.531640625000023],[-149.50810546875,-17.49638671875003],[-149.37919921874993,-17.522363281249994],[-149.33007812499997,-17.588964843749977],[-149.321533203125,-17.69003906249996]]],[[[-149.813671875,-17.54501953124999],[-149.84492187499995,-17.571093749999974],[-149.88657226562503,-17.55283203124999],[-149.90512695312498,-17.527734375000023],[-149.91181640625,-17.50117187500004],[-149.9021484375,-17.46953124999999],[-149.80878906249998,-17.47392578124999],[-149.78242187499998,-17.48779296874997],[-149.813671875,-17.54501953124999]]],[[[-151.40981445312502,-16.87773437500003],[-151.449462890625,-16.87929687499999],[-151.48549804687497,-16.863671875],[-151.47641601562498,-16.7607421875],[-151.46674804687495,-16.739648437499966],[-151.41118164062502,-16.77441406250003],[-151.364501953125,-16.864257812499957],[-151.40981445312502,-16.87773437500003]]],[[[-143.44057617187497,-16.619726562499963],[-143.38618164062498,-16.668847656250023],[-143.458544921875,-16.63544921874997],[-143.55068359375002,-16.62109374999997],[-143.51557617187495,-16.612304687499957],[-143.46469726562495,-16.613574218750045],[-143.44057617187497,-16.619726562499963]]],[[[-143.571142578125,-16.634765625],[-143.61064453124996,-16.640429687500003],[-143.70742187499997,-16.58085937500003],[-143.67021484374993,-16.58085937500003],[-143.61479492187502,-16.61806640624998],[-143.571142578125,-16.634765625]]],[[[-151.46660156249993,-16.657519531250017],[-151.48491210937493,-16.665136718749977],[-151.50415039062494,-16.64697265625],[-151.51240234375004,-16.619042968749994],[-151.50576171875002,-16.574023437499974],[-151.45742187500002,-16.603710937499983],[-151.43808593749995,-16.6234375],[-151.46660156249993,-16.657519531250017]]],[[[-145.48666992187498,-16.32978515625004],[-145.48222656249996,-16.34677734375005],[-145.502734375,-16.34580078125002],[-145.53984375,-16.295117187499997],[-145.553125,-16.25117187500001],[-145.57670898437493,-16.201464843750017],[-145.60913085937497,-16.165234375],[-145.61279296875,-16.131835937499957],[-145.61381835937496,-16.079199218749977],[-145.577099609375,-16.159863281249983],[-145.54233398437498,-16.22460937500003],[-145.51699218749997,-16.27783203125003],[-145.48666992187498,-16.32978515625004]]],[[[-142.51181640625003,-16.09628906249999],[-142.52958984375,-16.107128906249983],[-142.5068359375,-16.027734374999962],[-142.48120117187497,-16.017773437499983],[-142.51181640625003,-16.09628906249999]]],[[[-145.0513671875,-15.856054687499991],[-145.057666015625,-15.901074218750011],[-145.076416015625,-15.857617187500042],[-145.137939453125,-15.7880859375],[-145.16074218750003,-15.757031249999983],[-145.13354492187497,-15.762011718750015],[-145.0513671875,-15.856054687499991]]],[[[-138.65112304687497,-10.515332031249955],[-138.68774414062497,-10.532421874999983],[-138.69038085937498,-10.425585937499974],[-138.64291992187498,-10.44589843750002],[-138.62446289062495,-10.462988281249949],[-138.632373046875,-10.492187499999957],[-138.65112304687497,-10.515332031249955]]],[[[-139.059716796875,-9.931347656249997],[-139.133984375,-10.009570312499946],[-139.13422851562498,-9.926269531249943],[-139.10747070312496,-9.91542968749995],[-139.08315429687497,-9.91542968749995],[-139.059716796875,-9.931347656249997]]],[[[-139.02431640624997,-9.695214843750037],[-138.874462890625,-9.747167968749961],[-138.82734375,-9.74160156249998],[-138.874951171875,-9.792871093750035],[-139.02426757812498,-9.820703125000023],[-139.073681640625,-9.845703124999956],[-139.13408203124996,-9.829492187500037],[-139.16645507812498,-9.77021484375004],[-139.02431640624997,-9.695214843750037]]],[[[-140.075634765625,-9.425976562499983],[-140.09736328124998,-9.444140624999958],[-140.13803710937503,-9.384375],[-140.14438476562495,-9.359375],[-140.07094726562494,-9.328125],[-140.031103515625,-9.344726562499957],[-140.075634765625,-9.425976562499983]]],[[[-139.556201171875,-8.940234374999974],[-139.62099609374997,-8.947949218750026],[-139.631787109375,-8.898535156250006],[-139.61176757812498,-8.872363281250001],[-139.58398437499991,-8.860058593749983],[-139.53457031250002,-8.87539062499999],[-139.508349609375,-8.897070312499963],[-139.50991210937497,-8.915625],[-139.556201171875,-8.940234374999974]]],[[[-140.07260742187503,-8.910449218750031],[-140.170556640625,-8.933984375000023],[-140.21743164062497,-8.929687499999957],[-140.25268554687503,-8.848046875000023],[-140.24003906249993,-8.79755859375004],[-140.22441406249996,-8.781542968749974],[-140.057666015625,-8.801464843750026],[-140.043701171875,-8.83847656250002],[-140.04614257812494,-8.873632812499991],[-140.07260742187503,-8.910449218750031]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Solomon Islands","sov_a3":"SLB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Solomon Islands","adm0_a3":"SLB","geou_dif":0,"geounit":"Solomon Islands","gu_a3":"SLB","su_dif":0,"subunit":"Solomon Islands","su_a3":"SLB","brk_diff":0,"name":"Solomon Is.","name_long":"Solomon Islands","brk_a3":"SLB","brk_name":"Solomon Is.","brk_group":null,"abbrev":"S. Is.","postal":"SB","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Solomon Islands","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":595613,"gdp_md_est":1078,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SB","iso_a3":"SLB","iso_n3":"090","un_a3":"090","wb_a2":"SB","wb_a3":"SLB","woe_id":-99,"adm0_a3_is":"SLB","adm0_a3_us":"SLB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":11,"long_len":15,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"SLB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[166.92919921875003,-11.665136718749991],[166.84082031250003,-11.68134765625001],[166.80595703125,-11.67734375],[166.7474609375,-11.590820312499957],[166.79091796875,-11.571289062499972],[166.85546874999997,-11.578808593749995],[166.87509765625006,-11.629687499999958],[166.92919921875003,-11.665136718749991]]],[[[160.57626953125006,-11.797851562500028],[160.50654296875007,-11.83222656250001],[160.44306640625004,-11.814941406249957],[160.39453125000003,-11.788867187499974],[160.35507812500006,-11.711914062500014],[160.2702148437501,-11.663964843750021],[160.14951171875012,-11.643945312500023],[160.1,-11.610742187500009],[160.0871093750001,-11.594335937499963],[160.0035156250001,-11.579589843749972],[159.97929687500005,-11.537988281250023],[159.98632812499997,-11.494726562500006],[160,-11.471972656249989],[160.07734375000004,-11.492871093749983],[160.44873046874997,-11.695898437499949],[160.53710937500003,-11.758789062499972],[160.57626953125006,-11.797851562500028]]],[[[166.13320312500005,-10.7578125],[166.05332031250012,-10.77509765625004],[166.02792968750006,-10.770214843750011],[165.9681640625,-10.77949218750004],[165.90400390625,-10.851464843749966],[165.85654296875006,-10.841406249999949],[165.81933593750003,-10.84404296874996],[165.79101562500003,-10.784765624999963],[165.7904296875,-10.756054687499969],[165.83593750000003,-10.760644531250023],[165.85986328125003,-10.703027343750009],[165.90917968750003,-10.674316406250014],[166.02382812500005,-10.6611328125],[166.12568359375007,-10.679882812499997],[166.16210937499997,-10.693066406250026],[166.12988281249997,-10.745214843749991],[166.13320312500005,-10.7578125]]],[[[161.71533203124997,-10.387304687499991],[161.84111328125002,-10.446093749999973],[161.91435546875002,-10.436425781249966],[162.0228515625,-10.476855468750031],[162.10537109375005,-10.45380859375004],[162.15683593750012,-10.506054687500026],[162.28720703125006,-10.709960937499998],[162.28798828125005,-10.776171874999989],[162.37333984375002,-10.823242187499986],[162.30126953124997,-10.83212890625002],[162.20126953125012,-10.80781250000004],[162.12363281250012,-10.824414062499955],[162.04267578125004,-10.784863281249983],[161.90585937500003,-10.764355468749983],[161.78681640625004,-10.716894531249991],[161.53789062500007,-10.56640625],[161.5392578125001,-10.491308593749947],[161.49912109375006,-10.454589843750014],[161.4870117187501,-10.361425781249963],[161.39794921874994,-10.331933593749994],[161.29394531250003,-10.326464843750031],[161.285546875,-10.282421875000026],[161.30478515625012,-10.204394531250031],[161.38232421874997,-10.20556640625],[161.47568359375012,-10.23798828125004],[161.65380859374997,-10.35185546874996],[161.6979492187501,-10.371289062500011],[161.71533203124997,-10.387304687499991]]],[[[161.54785156249997,-9.625683593749997],[161.55888671875007,-9.732714843749946],[161.5538085937501,-9.769726562500024],[161.4779296875,-9.691113281249997],[161.44248046875006,-9.718945312499983],[161.40976562500003,-9.681640625000028],[161.41201171875,-9.600390624999987],[161.41699218750003,-9.51376953125002],[161.40224609375005,-9.448144531249966],[161.36416015625,-9.353417968750035],[161.40683593750012,-9.368457031249989],[161.54785156249997,-9.625683593749997]]],[[[159.75039062500005,-9.272656250000011],[159.97060546875,-9.433300781249969],[160.06533203125,-9.418652343749997],[160.35458984375006,-9.421582031249983],[160.52519531250007,-9.536230468749977],[160.62548828124997,-9.588867187499957],[160.6818359375001,-9.69160156250001],[160.75146484374997,-9.715039062499981],[160.7943359375,-9.767382812499989],[160.81894531250006,-9.862792968749986],[160.80166015625,-9.878320312500037],[160.7130859375001,-9.913867187499989],[160.64921875000002,-9.92861328124998],[160.4816406250001,-9.894726562499995],[160.32109375000007,-9.821289062499957],[160.00234375000005,-9.812402343750023],[159.8537109375,-9.791503906250027],[159.80273437499997,-9.763476562500003],[159.7554687500001,-9.726074218750014],[159.68046875000002,-9.636816406249949],[159.621875,-9.532128906250023],[159.61230468749994,-9.470703124999943],[159.60742187499997,-9.353808593750031],[159.62558593750012,-9.311230468749969],[159.68632812500005,-9.268652343749991],[159.75039062500005,-9.272656250000011]]],[[[160.1681640625001,-8.995507812500037],[160.22568359375006,-9.009570312499974],[160.25351562500006,-9.007324218749957],[160.31933593749997,-9.061132812499991],[160.40751953125007,-9.140332031249969],[160.37148437500005,-9.18125],[160.3,-9.160351562499955],[160.27597656250012,-9.168652343749969],[160.26816406250012,-9.163183593750006],[160.253125,-9.1234375],[160.1751953125,-9.084082031249963],[160.10537109375,-9.080761718749997],[160.09628906250012,-9.033984374999974],[160.1681640625001,-8.995507812500037]]],[[[159.18857421875006,-9.123535156250014],[159.17509765625002,-9.125976562499972],[159.128125,-9.113769531249972],[159.07109375000002,-9.109667968750031],[159.036328125,-9.075],[159.07763671874997,-9.025390625],[159.12978515625,-8.99306640624998],[159.1537109375,-9.001367187499994],[159.17607421875002,-9.022070312500034],[159.22841796875005,-9.029980468749955],[159.23398437500012,-9.09375],[159.18857421875006,-9.123535156250014]]],[[[157.64541015625002,-8.758886718749977],[157.64316406250012,-8.794042968750034],[157.58583984375005,-8.783105468750023],[157.45791015625,-8.730175781249983],[157.453515625,-8.705957031250023],[157.52636718750003,-8.697070312499989],[157.57929687500004,-8.703710937500006],[157.62324218750004,-8.734570312499995],[157.64541015625002,-8.758886718749977]]],[[[158.20078125000012,-8.82197265625004],[158.17880859375006,-8.82578125],[158.15537109375012,-8.785937499999974],[158.20996093750003,-8.678125],[158.23632812499997,-8.764843750000026],[158.25341796874997,-8.79736328125],[158.20078125000012,-8.82197265625004]]],[[[158.10791015625003,-8.684179687500034],[158.00947265625004,-8.763085937500023],[157.93759765625006,-8.73642578125002],[157.879296875,-8.66875],[157.89843749999997,-8.587207031249989],[157.90927734375006,-8.565625],[157.93828125,-8.560937499999966],[157.96699218750007,-8.54423828125003],[157.9984375,-8.508203124999966],[158.10546874999997,-8.536816406250026],[158.1322265625,-8.556640624999986],[158.06835937499997,-8.60664062500004],[158.08964843750002,-8.622656250000018],[158.10351562500003,-8.646484374999986],[158.10791015625003,-8.684179687500034]]],[[[157.38896484375002,-8.713476562499963],[157.38906250000005,-8.728125],[157.33388671875,-8.7],[157.21230468749997,-8.565039062500006],[157.2337890625,-8.519921874999966],[157.34511718750002,-8.432421874999989],[157.3794921875001,-8.420898437499943],[157.41093750000002,-8.47509765624997],[157.38349609375004,-8.555078125000023],[157.3470703125,-8.575488281250003],[157.3322265625001,-8.65068359374996],[157.38896484375002,-8.713476562499963]]],[[[159.68769531250007,-8.507910156250006],[159.64003906250005,-8.521484375000014],[159.56923828125,-8.48476562499999],[159.53847656250005,-8.451367187500024],[159.55322265625003,-8.399218749999974],[159.59462890625005,-8.379492187499949],[159.64160156250003,-8.414453124999966],[159.64628906250007,-8.450390625000011],[159.68769531250007,-8.507910156250006]]],[[[160.7494140625,-8.313964843750014],[160.99765625000006,-8.612011718749983],[160.98779296874994,-8.66484375],[160.95410156249994,-8.698925781250011],[160.94433593750003,-8.799023437499983],[160.97558593749997,-8.8375],[161.04345703124997,-8.855078125000034],[161.15869140624997,-8.961816406250009],[161.20468750000012,-9.092480468749983],[161.20878906250007,-9.132617187499989],[161.25664062500007,-9.191992187500006],[161.2584960937501,-9.316894531249972],[161.36796875000002,-9.490332031249949],[161.37753906250006,-9.573730468749972],[161.3673828125,-9.61123046874998],[161.32187500000012,-9.589550781249997],[161.19101562500012,-9.392871093749989],[161.04150390625003,-9.308007812500023],[161.02441406249997,-9.271484374999957],[160.87343750000005,-9.156835937499949],[160.77207031250012,-8.963867187499986],[160.66259765625,-8.620605468749957],[160.7140625000001,-8.539257812499997],[160.59042968750006,-8.372753906249997],[160.59628906250006,-8.328222656249991],[160.64853515625006,-8.338378906250012],[160.6847656250001,-8.336328125000037],[160.70214843749997,-8.316503906249991],[160.7494140625,-8.313964843750014]]],[[[157.7634765625,-8.242187499999957],[157.82626953125012,-8.324023437500017],[157.89843749999997,-8.506347656249943],[157.8854492187501,-8.569140624999946],[157.8336914062501,-8.572656249999952],[157.81933593750003,-8.612011718749983],[157.74921875000004,-8.523632812500011],[157.65595703125004,-8.499707031250011],[157.58789062500003,-8.445410156249963],[157.56455078125006,-8.33779296874998],[157.5580078125,-8.269921875],[157.50419921875,-8.258300781249957],[157.35136718750007,-8.275292968750037],[157.30244140625004,-8.333300781249958],[157.23242187500003,-8.31484375],[157.21757812500002,-8.262792968749977],[157.22851562500003,-8.21162109375004],[157.32158203125007,-8.161230468749977],[157.340625,-8.09638671875001],[157.43339843750002,-7.984667968749988],[157.490625,-7.965722656250037],[157.598828125,-8.005957031249963],[157.61230468750003,-8.16484375],[157.65126953125,-8.216796875000028],[157.7634765625,-8.242187499999957]]],[[[156.60390625000002,-8.171582031249955],[156.59169921875005,-8.196289062500014],[156.53964843750006,-8.072949218750026],[156.54228515625002,-8.010839843749991],[156.55126953124994,-7.970996093749946],[156.57031250000003,-7.958789062499945],[156.61240234375003,-8.096191406249972],[156.60390625000002,-8.171582031249955]]],[[[157.171875,-8.108105468749997],[157.15,-8.123242187499969],[157.04121093750004,-8.117480468749946],[156.95830078125002,-8.014355468749997],[156.95898437499997,-7.937988281249971],[157.02412109375004,-7.867871093749997],[157.102734375,-7.855468749999957],[157.14580078125002,-7.882617187499974],[157.18613281250006,-7.941210937500018],[157.2005859375,-8.01591796874996],[157.19150390625012,-8.081835937499974],[157.171875,-8.108105468749997]]],[[[156.687890625,-7.923046875000039],[156.66875,-7.936816406250002],[156.63535156250006,-7.882812500000013],[156.61103515625004,-7.86591796875004],[156.61171875000005,-7.805761718749949],[156.5109375000001,-7.707812499999974],[156.50244140624997,-7.640234374999977],[156.5609375,-7.574023437499988],[156.63964843750003,-7.61259765625003],[156.71767578125005,-7.69570312499999],[156.80908203124994,-7.722851562500026],[156.79023437500004,-7.777929687499963],[156.7080078125,-7.876953124999972],[156.687890625,-7.923046875000039]]],[[[159.8791015625001,-8.534277343749949],[159.88085937499997,-8.55742187499996],[159.74648437500005,-8.473828124999983],[159.64453124999997,-8.371679687499963],[159.35410156250006,-8.26044921875004],[159.29169921875004,-8.20341796874996],[159.2392578125,-8.196289062500014],[159.09023437500005,-8.103320312500003],[158.9440429687501,-8.04072265625004],[158.85458984375003,-7.959765624999974],[158.83183593750007,-7.926660156249979],[158.77802734375004,-7.906933593749955],[158.68623046875004,-7.818066406249968],[158.59697265625002,-7.75908203125003],[158.56542968749997,-7.651367187500028],[158.47880859375007,-7.577148437500001],[158.457421875,-7.544726562499974],[158.734375,-7.60429687500003],[158.86279296874997,-7.722363281250011],[158.97246093750002,-7.789160156250034],[159.01054687500007,-7.83740234375],[159.109375,-7.903515624999968],[159.19804687500007,-7.909570312499965],[159.28681640625004,-7.976171875000034],[159.36767578124997,-7.994140624999957],[159.43144531250002,-8.029003906249955],[159.84306640625002,-8.326953124999987],[159.79394531249997,-8.406054687500031],[159.84863281249997,-8.463476562500006],[159.8791015625001,-8.534277343749949]]],[[[155.83984374999997,-7.097167968750014],[155.73935546875012,-7.12109375],[155.67753906250002,-7.08896484375002],[155.70498046875005,-7.012695312500028],[155.73896484375004,-6.972949218750017],[155.8646484375,-7.043261718749946],[155.83984374999997,-7.097167968750014]]],[[[157.48671875000005,-7.330371093750002],[157.51865234375003,-7.365625],[157.44130859375,-7.425683593749966],[157.33925781249997,-7.393066406249985],[157.31728515625005,-7.359375],[157.31464843750004,-7.341503906249955],[157.24345703125,-7.35302734375],[157.10156249999997,-7.323632812499965],[156.90429687500003,-7.180468750000017],[156.69580078125003,-6.910937499999989],[156.49492187500002,-6.761621093750037],[156.45742187500005,-6.715234375],[156.4525390625,-6.638281249999963],[156.47939453125,-6.608886718750014],[156.60419921875007,-6.64101562499998],[156.76542968750007,-6.7640625],[157.03027343750003,-6.891992187499952],[157.10253906250003,-6.957226562500011],[157.14843750000003,-7.113769531250014],[157.19335937499997,-7.160351562499997],[157.3361328125001,-7.280468749999955],[157.41162109375003,-7.30859375],[157.45156250000005,-7.313671874999969],[157.48671875000005,-7.330371093750002]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Tonga","sov_a3":"TON","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tonga","adm0_a3":"TON","geou_dif":0,"geounit":"Tonga","gu_a3":"TON","su_dif":0,"subunit":"Tonga","su_a3":"TON","brk_diff":0,"name":"Tonga","name_long":"Tonga","brk_a3":"TON","brk_name":"Tonga","brk_group":null,"abbrev":"Tongo","postal":"TO","formal_en":"Kingdom of Tonga","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tonga","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":1,"mapcolor13":8,"pop_est":120898,"gdp_md_est":549,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TO","iso_a3":"TON","iso_n3":"776","un_a3":"776","wb_a2":"TO","wb_a3":"TON","woe_id":-99,"adm0_a3_is":"TON","adm0_a3_us":"TON","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"TON.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-174.91313476562502,-21.30048828125001],[-174.91865234374998,-21.450585937500037],[-174.967529296875,-21.381738281250033],[-174.97294921875002,-21.349804687500026],[-174.923486328125,-21.303417968749983],[-174.91313476562502,-21.30048828125001]]],[[[-175.16191406249996,-21.169335937500023],[-175.14765625,-21.169433593749957],[-175.13193359375,-21.139746093750034],[-175.07817382812496,-21.129003906249977],[-175.08408203125003,-21.16074218749996],[-175.15659179687492,-21.263671874999968],[-175.20234375000004,-21.22343750000003],[-175.33544921874997,-21.15771484374997],[-175.36235351562496,-21.10683593749999],[-175.31806640624998,-21.068261718750037],[-175.32260742187503,-21.09931640624997],[-175.30043945312494,-21.11337890624999],[-175.22539062499993,-21.11875],[-175.1580078125,-21.146484374999986],[-175.19975585937496,-21.155664062499994],[-175.16191406249996,-21.169335937500023]]],[[[-173.953515625,-18.639355468750008],[-173.99130859374998,-18.69863281250001],[-174.009326171875,-18.69775390625],[-174.053125,-18.663378906250017],[-174.06914062500002,-18.640234375],[-174.00244140625,-18.570703124999966],[-173.96806640624993,-18.565332031250023],[-173.921875,-18.58857421874997],[-173.923974609375,-18.608496093750034],[-173.953515625,-18.639355468750008]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Vanuatu","sov_a3":"VUT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vanuatu","adm0_a3":"VUT","geou_dif":0,"geounit":"Vanuatu","gu_a3":"VUT","su_dif":0,"subunit":"Vanuatu","su_a3":"VUT","brk_diff":0,"name":"Vanuatu","name_long":"Vanuatu","brk_a3":"VUT","brk_name":"Vanuatu","brk_group":null,"abbrev":"Van.","postal":"VU","formal_en":"Republic of Vanuatu","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vanuatu","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":218519,"gdp_md_est":988.5,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VU","iso_a3":"VUT","iso_n3":"548","un_a3":"548","wb_a2":"VU","wb_a3":"VUT","woe_id":-99,"adm0_a3_is":"VUT","adm0_a3_us":"VUT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":4,"tiny":2,"homepart":1,"filename":"VUT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[169.89628906250007,-20.18662109375002],[169.86113281250002,-20.241796874999977],[169.80703125,-20.24111328125001],[169.7375,-20.202148437499986],[169.7506835937501,-20.153320312499986],[169.82949218750005,-20.14472656250001],[169.85234375000002,-20.147949218749957],[169.89628906250007,-20.18662109375002]]],[[[169.49130859375006,-19.54013671875002],[169.43847656249997,-19.648828124999966],[169.34726562500003,-19.623535156249957],[169.2619140625001,-19.54501953125005],[169.2174804687501,-19.476367187500003],[169.24746093750005,-19.3447265625],[169.29111328125006,-19.321777343750043],[169.33671875000002,-19.32929687499997],[169.35996093750003,-19.457812500000045],[169.49130859375006,-19.54013671875002]]],[[[169.334375,-18.940234375000017],[169.28828125000004,-18.988574218750017],[169.24804687499994,-18.98330078125001],[168.98691406250006,-18.87128906250001],[168.99785156250002,-18.82519531250003],[168.98710937500002,-18.707617187499977],[169.01582031250004,-18.64375],[169.08789062499997,-18.61748046874999],[169.14384765625002,-18.63105468750001],[169.17802734375002,-18.725097656249986],[169.25576171875005,-18.76337890624997],[169.20117187499997,-18.795703124999974],[169.29619140625,-18.866796874999977],[169.334375,-18.940234375000017]]],[[[168.44580078124997,-17.54218750000004],[168.54541015625003,-17.68466796875002],[168.58496093750003,-17.695898437500006],[168.52460937500004,-17.798046875000022],[168.39941406250003,-17.807226562500034],[168.25166015625004,-17.78076171874997],[168.3058593750001,-17.745703125000016],[168.27783203124997,-17.70605468750003],[168.23320312500002,-17.698046875],[168.18203125,-17.71699218750004],[168.15820312500003,-17.710546874999963],[168.19091796875003,-17.64482421874999],[168.2731445312501,-17.552246093749954],[168.29746093750006,-17.54492187499997],[168.3195312500001,-17.543945312499957],[168.34101562500004,-17.552050781250003],[168.44580078124997,-17.54218750000004]]],[[[168.44677734375003,-16.778808593749957],[168.47656250000003,-16.79365234375004],[168.46015625000004,-16.835058593750045],[168.32275390624997,-16.78779296875001],[168.21230468749997,-16.80615234375001],[168.1814453125,-16.804003906250017],[168.14853515625006,-16.765722656250034],[168.12431640625002,-16.69003906249999],[168.13535156250006,-16.636914062499997],[168.18183593750004,-16.599902343750003],[168.19921875000003,-16.59384765625002],[168.23378906250002,-16.63964843750003],[168.26542968750002,-16.67080078124998],[168.29609375000004,-16.68417968750003],[168.36601562500007,-16.758789062499954],[168.44677734375003,-16.778808593749957]]],[[[168.29667968750007,-16.336523437499988],[168.18242187500007,-16.34677734375005],[168.0216796875001,-16.315625],[167.95703124999994,-16.27226562499996],[167.92900390625002,-16.22871093749997],[167.98457031250007,-16.196484374999983],[168.06425781250007,-16.18125],[168.16386718750002,-16.081640625000034],[168.19833984375012,-16.119824218749997],[168.23544921875012,-16.23134765624998],[168.27568359375007,-16.264941406249974],[168.29794921875006,-16.298730468750023],[168.29667968750007,-16.336523437499988]]],[[[167.4125,-16.095898437499997],[167.45859375000012,-16.11757812499998],[167.48369140625002,-16.11757812499998],[167.49873046875004,-16.166210937500026],[167.6419921875,-16.26328125],[167.68134765625,-16.260546874999974],[167.71445312500012,-16.313671875000054],[167.77597656250012,-16.340527343750008],[167.79257812500006,-16.39462890625002],[167.83662109375004,-16.449707031249957],[167.75976562500003,-16.51640625],[167.61142578125006,-16.498632812499977],[167.52636718749997,-16.574316406250034],[167.4493164062501,-16.554980468750003],[167.43613281250003,-16.51523437499999],[167.446875,-16.501953125000043],[167.40097656250012,-16.400585937499997],[167.3802734375,-16.245703124999963],[167.34921875000006,-16.15449218750004],[167.315625,-16.115527343750003],[167.24609374999997,-16.149609375000026],[167.21806640625007,-16.155273437500014],[167.15146484375003,-16.080468749999966],[167.18300781250005,-15.928515625],[167.19951171875002,-15.88505859375003],[167.25371093750002,-15.876757812500031],[167.33574218750007,-15.916699218749997],[167.4125,-16.095898437499997]]],[[[167.2189453125,-15.724121093750028],[167.20078125000012,-15.75009765624999],[167.09472656249997,-15.685253906250011],[167.11904296875002,-15.622558593750027],[167.234375,-15.645019531249988],[167.2189453125,-15.724121093750028]]],[[[168.21289062499997,-15.97041015625001],[168.19619140625005,-15.971679687500012],[168.17929687500006,-15.925683593749966],[168.12285156250002,-15.680859375],[168.15996093750002,-15.461816406249966],[168.18349609375,-15.50820312499999],[168.26777343750004,-15.892285156249995],[168.25634765625,-15.95517578125002],[168.21289062499997,-15.97041015625001]]],[[[167.91132812500007,-15.435937500000023],[167.84423828124997,-15.481835937500051],[167.72021484374997,-15.477441406250035],[167.67421875,-15.4515625],[167.82626953125006,-15.312011718749998],[168.00253906250012,-15.283203124999984],[167.91132812500007,-15.435937500000023]]],[[[168.1891601562501,-15.328710937500018],[168.171875,-15.390625],[168.13046875000006,-15.318945312499991],[168.10419921875,-15.016601562500028],[168.1149414062501,-14.988574218750001],[168.1364257812501,-14.98642578125002],[168.18691406249997,-15.196875],[168.1891601562501,-15.328710937500018]]],[[[166.74580078125004,-14.826855468750011],[166.81015625000012,-15.15742187500004],[166.88515625,-15.156738281249984],[166.92343750000006,-15.139160156249957],[166.96757812500002,-15.061718749999981],[166.98730468750003,-14.940039062499977],[167.02656250000004,-14.922656249999989],[167.0755859375,-14.935644531249977],[167.05429687500012,-14.974414062499958],[167.06855468750004,-15.07177734375],[167.10644531249997,-15.125585937500034],[167.13164062500002,-15.135351562499975],[167.18203124999997,-15.38974609375002],[167.20078125000012,-15.443066406249967],[167.19960937500005,-15.485742187500035],[167.09394531250007,-15.580859374999973],[166.93662109375012,-15.57802734375001],[166.82578125000006,-15.634863281249961],[166.75830078125003,-15.631152343750003],[166.75898437500004,-15.566796875000035],[166.6989257812501,-15.515625],[166.63105468750004,-15.406054687499974],[166.6478515625,-15.211523437500047],[166.52724609375,-14.850097656249957],[166.52607421875004,-14.759765625000028],[166.56738281250003,-14.641796874999969],[166.6078125,-14.636523437499958],[166.66259765624997,-14.735058593749967],[166.74580078125004,-14.826855468750011]]],[[[167.58486328125,-14.260937500000011],[167.54326171875007,-14.311621093750034],[167.43027343750012,-14.294921875],[167.4035156250001,-14.281542968750031],[167.41074218750003,-14.197460937500038],[167.43906250000003,-14.16845703125],[167.50644531250012,-14.142187499999977],[167.59892578125002,-14.183789062500011],[167.58486328125,-14.260937500000011]]],[[[167.48886718750006,-13.907226562499972],[167.47421875000012,-13.917089843750034],[167.45107421875,-13.909375],[167.3917968750001,-13.788378906250017],[167.40683593750006,-13.748046874999972],[167.48105468750006,-13.709472656250014],[167.547265625,-13.776660156250017],[167.55351562500002,-13.813964843749986],[167.55302734375002,-13.84570312499997],[167.54287109374997,-13.873144531249963],[167.4986328125001,-13.884570312499974],[167.48886718750006,-13.907226562499972]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Wallis and Futuna","adm0_a3":"WLF","geou_dif":0,"geounit":"Wallis and Futuna","gu_a3":"WLF","su_dif":0,"subunit":"Wallis and Futuna","su_a3":"WLF","brk_diff":0,"name":"Wallis and Futuna Is.","name_long":"Wallis and Futuna Islands","brk_a3":"WLF","brk_name":"Wallis and Futuna Islands","brk_group":null,"abbrev":"Wlf.","postal":"WF","formal_en":"Wallis and Futuna Islands","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"Wallis and Futuna","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":15289,"gdp_md_est":60,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"WF","iso_a3":"WLF","iso_n3":"876","un_a3":"876","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"WLF","adm0_a3_us":"WLF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":21,"long_len":25,"abbrev_len":4,"tiny":3,"homepart":-99,"filename":"WLF.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-178.04667968749996,-14.318359374999984],[-178.10332031249996,-14.324902343749983],[-178.15859375000002,-14.311914062499994],[-178.19438476562496,-14.255468749999963],[-178.17802734375,-14.231640624999983],[-178.142236328125,-14.24257812499999],[-178.10502929687493,-14.284179687500028],[-178.04365234374998,-14.30322265625],[-178.04667968749996,-14.318359374999984]]],[[[-176.160595703125,-13.332812500000017],[-176.176904296875,-13.340917968749975],[-176.19536132812502,-13.30166015624998],[-176.17119140625,-13.242578125000023],[-176.14794921874994,-13.221679687500027],[-176.12807617187497,-13.268164062499991],[-176.160595703125,-13.332812500000017]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Samoa","sov_a3":"WSM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Samoa","adm0_a3":"WSM","geou_dif":0,"geounit":"Samoa","gu_a3":"WSM","su_dif":0,"subunit":"Samoa","su_a3":"WSM","brk_diff":0,"name":"Samoa","name_long":"Samoa","brk_a3":"WSM","brk_name":"Samoa","brk_group":null,"abbrev":"Samoa","postal":"WS","formal_en":"Independent State of Samoa","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Samoa","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":6,"pop_est":219998,"gdp_md_est":1049,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"WS","iso_a3":"WSM","iso_n3":"882","un_a3":"882","wb_a2":"WS","wb_a3":"WSM","woe_id":-99,"adm0_a3_is":"WSM","adm0_a3_us":"WSM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"WSM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-171.4541015625,-14.04648437500002],[-171.72822265624995,-14.04726562499999],[-171.86376953124994,-14.00205078125002],[-171.91191406249996,-14.001660156250024],[-172.02807617187494,-13.906835937499991],[-172.0458984375,-13.857128906249981],[-171.98486328125003,-13.824414062499983],[-171.85815429687497,-13.807128906250014],[-171.60390624999997,-13.879199218750045],[-171.5654296875,-13.943066406249997],[-171.506884765625,-13.949902343749969],[-171.46137695312493,-13.97763671875002],[-171.44956054687503,-14.0224609375],[-171.4541015625,-14.04648437500002]]],[[[-172.33349609375,-13.46523437499999],[-172.221533203125,-13.559570312500027],[-172.17685546874995,-13.68466796875002],[-172.224951171875,-13.804296874999963],[-172.330859375,-13.774707031249974],[-172.48452148437497,-13.800195312500021],[-172.535693359375,-13.791699218749983],[-172.6587890625,-13.644824218749989],[-172.74409179687495,-13.57871093750002],[-172.77851562499995,-13.516796875000011],[-172.66962890625,-13.523828125000023],[-172.510888671875,-13.482812500000021],[-172.33349609375,-13.46523437499999]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Anguilla","adm0_a3":"AIA","geou_dif":0,"geounit":"Anguilla","gu_a3":"AIA","su_dif":0,"subunit":"Anguilla","su_a3":"AIA","brk_diff":0,"name":"Anguilla","name_long":"Anguilla","brk_a3":"AIA","brk_name":"Anguilla","brk_group":null,"abbrev":"Ang.","postal":"AI","formal_en":null,"formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Anguilla","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":14436,"gdp_md_est":108.9,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AI","iso_a3":"AIA","iso_n3":"660","un_a3":"660","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"AIA","adm0_a3_us":"AIA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"AIA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-63.00122070312499,18.22177734374999],[-63.16000976562499,18.171386718749996],[-63.15332031250001,18.20029296874999],[-63.026025390624994,18.269726562499997],[-62.97958984374999,18.264794921874994],[-63.00122070312499,18.22177734374999]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Saint Barthelemy","adm0_a3":"BLM","geou_dif":0,"geounit":"Saint Barthelemy","gu_a3":"BLM","su_dif":0,"subunit":"Saint Barthelemy","su_a3":"BLM","brk_diff":0,"name":"St-Barthélemy","name_long":"Saint-Barthélemy","brk_a3":"BLM","brk_name":"St-Barthélemy","brk_group":null,"abbrev":"St. B.","postal":"BL","formal_en":"Saint-Barthélemy","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"St-Barthélemy","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":7448,"gdp_md_est":255,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"BL","iso_a3":"BLM","iso_n3":"652","un_a3":"652","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"BLM","adm0_a3_us":"BLM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":13,"long_len":16,"abbrev_len":6,"tiny":4,"homepart":-99,"filename":"BLM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-62.83193359375,17.876464843749996],[-62.84692382812499,17.875195312499997],[-62.85893554687498,17.883642578124988],[-62.86938476562499,17.898583984374994],[-62.875439453125,17.91357421875],[-62.87421875,17.92226562499999],[-62.8654296875,17.918261718750003],[-62.79970703124999,17.90869140625],[-62.80703125,17.89765625],[-62.81816406249999,17.885449218749994],[-62.83193359375,17.876464843749996]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Aruba","adm0_a3":"ABW","geou_dif":0,"geounit":"Aruba","gu_a3":"ABW","su_dif":0,"subunit":"Aruba","su_a3":"ABW","brk_diff":0,"name":"Aruba","name_long":"Aruba","brk_a3":"ABW","brk_name":"Aruba","brk_group":null,"abbrev":"Aruba","postal":"AW","formal_en":"Aruba","formal_fr":null,"note_adm0":"Neth.","note_brk":null,"name_sort":"Aruba","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":103065,"gdp_md_est":2258,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"AW","iso_a3":"ABW","iso_n3":"533","un_a3":"533","wb_a2":"AW","wb_a3":"ABW","woe_id":-99,"adm0_a3_is":"ABW","adm0_a3_us":"ABW","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":4,"homepart":-99,"filename":"ABW.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-69.89912109375,12.452001953124991],[-69.89570312499998,12.422998046874993],[-69.94218749999999,12.438525390624989],[-70.004150390625,12.50048828125],[-70.06611328125,12.546972656249991],[-70.05087890624999,12.597070312499994],[-70.035107421875,12.614111328124991],[-69.97314453125,12.567626953125],[-69.91181640625,12.48046875],[-69.89912109375,12.452001953124991]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Antigua and Barbuda","sov_a3":"ATG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Antigua and Barbuda","adm0_a3":"ATG","geou_dif":0,"geounit":"Antigua and Barbuda","gu_a3":"ATG","su_dif":0,"subunit":"Antigua and Barbuda","su_a3":"ATG","brk_diff":0,"name":"Antigua and Barb.","name_long":"Antigua and Barbuda","brk_a3":"ATG","brk_name":"Antigua and Barb.","brk_group":null,"abbrev":"Ant.B.","postal":"AG","formal_en":"Antigua and Barbuda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Antigua and Barbuda","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":5,"pop_est":85632,"gdp_md_est":1657,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AG","iso_a3":"ATG","iso_n3":"028","un_a3":"028","wb_a2":"AG","wb_a3":"ATG","woe_id":-99,"adm0_a3_is":"ATG","adm0_a3_us":"ATG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":17,"long_len":19,"abbrev_len":6,"tiny":4,"homepart":1,"filename":"ATG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.71606445312502,17.037011718749994],[-61.74814453124997,16.997167968750034],[-61.85966796874996,17.013330078124966],[-61.882031249999976,17.063134765624994],[-61.887109374999966,17.09814453125],[-61.81728515624994,17.168945312500057],[-61.73857421874999,17.138476562500045],[-61.708203125,17.105078125],[-61.68603515625003,17.098437500000074],[-61.68647460937493,17.06982421875003],[-61.694970703124994,17.048925781250034],[-61.71606445312502,17.037011718749994]]],[[[-61.74711914062496,17.57495117187497],[-61.76201171874996,17.548681640625063],[-61.84379882812502,17.59614257812504],[-61.86875,17.685449218750023],[-61.866162109374955,17.704296874999955],[-61.85244140625,17.714062499999983],[-61.819921875000034,17.696875],[-61.77675781249993,17.690478515625074],[-61.74960937500001,17.661328124999983],[-61.74711914062496,17.57495117187497]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Bermuda","adm0_a3":"BMU","geou_dif":0,"geounit":"Bermuda","gu_a3":"BMU","su_dif":0,"subunit":"Bermuda","su_a3":"BMU","brk_diff":0,"name":"Bermuda","name_long":"Bermuda","brk_a3":"BMU","brk_name":"Bermuda","brk_group":null,"abbrev":"Berm.","postal":"BM","formal_en":"The Bermudas or Somers Isles","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Bermuda","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":67837,"gdp_md_est":4500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"BM","iso_a3":"BMU","iso_n3":"060","un_a3":"060","wb_a2":"BM","wb_a3":"BMU","woe_id":-99,"adm0_a3_is":"BMU","adm0_a3_us":"BMU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":7,"long_len":7,"abbrev_len":5,"tiny":4,"homepart":-99,"filename":"BMU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-64.73027343749999,32.29345703125],[-64.82011718749999,32.259619140625],[-64.84506835937499,32.2623046875],[-64.86284179687497,32.273876953125],[-64.77119140625,32.30771484375],[-64.69462890624999,32.3869140625],[-64.66831054687499,32.38193359375],[-64.73027343749999,32.29345703125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"The Bahamas","sov_a3":"BHS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"The Bahamas","adm0_a3":"BHS","geou_dif":0,"geounit":"The Bahamas","gu_a3":"BHS","su_dif":0,"subunit":"The Bahamas","su_a3":"BHS","brk_diff":0,"name":"Bahamas","name_long":"Bahamas","brk_a3":"BHS","brk_name":"Bahamas","brk_group":null,"abbrev":"Bhs.","postal":"BS","formal_en":"Commonwealth of the Bahamas","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bahamas, The","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":5,"pop_est":309156,"gdp_md_est":9093,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"BS","iso_a3":"BHS","iso_n3":"044","un_a3":"044","wb_a2":"BS","wb_a3":"BHS","woe_id":-99,"adm0_a3_is":"BHS","adm0_a3_us":"BHS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BHS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.02685546874994,21.19238281250003],[-73.05874023437497,21.119042968750023],[-73.16455078125003,20.979150390625023],[-73.40078125000002,20.943896484375045],[-73.66103515625,20.93740234375005],[-73.68115234375003,20.9755859375],[-73.68681640625002,21.009130859375002],[-73.66782226562498,21.061572265625017],[-73.66958007812497,21.082226562499983],[-73.68037109374995,21.103320312500017],[-73.58505859374998,21.125927734374983],[-73.52309570312497,21.190820312499966],[-73.42451171874995,21.201757812499977],[-73.3015625,21.15615234375002],[-73.23535156249997,21.154492187500036],[-73.13730468749998,21.204785156249983],[-73.05849609375,21.313378906249994],[-73.01166992187495,21.299511718750008],[-73.02685546874994,21.19238281250003]]],[[[-72.91611328125002,21.506689453125034],[-73.04931640625,21.457617187499977],[-73.06269531249995,21.51533203125001],[-72.994775390625,21.561621093750034],[-72.91611328125002,21.506689453125034]]],[[[-73.041015625,22.429052734375002],[-72.97895507812495,22.414599609375074],[-72.94521484375002,22.415625],[-72.83076171874995,22.385595703125034],[-72.76259765625002,22.344384765624966],[-72.74726562500001,22.327392578124968],[-72.78388671875001,22.290625],[-72.88916015624997,22.360253906250023],[-72.98105468750003,22.369238281249977],[-73.11020507812498,22.36757812499999],[-73.16191406250002,22.380712890625006],[-73.127392578125,22.45532226562503],[-73.041015625,22.429052734375002]]],[[[-74.20673828124998,22.213769531250023],[-74.27690429687499,22.183691406250006],[-74.261328125,22.23554687500001],[-74.12675781249993,22.323388671874966],[-74.05234374999998,22.40063476562497],[-74.01005859374995,22.427978515625057],[-73.994970703125,22.44921875000003],[-73.93598632812498,22.47773437499995],[-73.906396484375,22.527441406250063],[-73.91455078124997,22.568017578124962],[-73.97636718749993,22.635058593750042],[-73.97548828124994,22.682275390624994],[-73.95419921874995,22.71552734375001],[-73.84995117187503,22.731054687500063],[-73.87749023437496,22.680761718750034],[-73.83652343749998,22.538427734374977],[-73.97460937500003,22.361181640625034],[-74.09291992187497,22.30625],[-74.20673828124998,22.213769531250023]]],[[[-74.05751953124997,22.723486328125034],[-74.03476562500003,22.70556640625003],[-74.09858398437498,22.665429687500023],[-74.242236328125,22.715087890625],[-74.27460937499995,22.71166992187503],[-74.303125,22.764453125000017],[-74.31396484374997,22.803564453125006],[-74.30703125,22.83959960937497],[-74.22148437499995,22.811572265625042],[-74.17539062499998,22.759912109374994],[-74.05751953124997,22.723486328125034]]],[[[-74.84047851562494,22.894335937500017],[-74.846875,22.868701171875045],[-74.97333984374993,23.068554687499983],[-75.13212890624996,23.11708984375002],[-75.22333984374995,23.165332031250074],[-75.20439453125002,23.19272460937506],[-75.14111328125,23.204638671874985],[-75.13056640624998,23.267919921875006],[-75.15756835937498,23.336376953125008],[-75.24125976562499,23.47460937500003],[-75.28823242187497,23.568261718749994],[-75.309814453125,23.589843750000057],[-75.31596679687502,23.668359374999962],[-75.21660156250002,23.546777343749966],[-75.17529296874994,23.438671874999983],[-75.1087890625,23.33281249999999],[-75.06420898437497,23.150195312500014],[-74.937109375,23.08813476562497],[-74.84560546875002,22.999902343750023],[-74.84047851562494,22.894335937500017]]],[[[-75.66455078124997,23.45014648437501],[-75.70634765624996,23.444238281250048],[-75.78100585937496,23.47065429687501],[-75.95595703125,23.592285156249996],[-76.03710937500001,23.60278320312503],[-76.01044921875001,23.671386718750057],[-75.94863281250002,23.647412109374955],[-75.80751953124997,23.542529296874985],[-75.75424804687503,23.489990234375057],[-75.66455078124997,23.45014648437501]]],[[[-74.42944335937496,24.068066406249955],[-74.50869140624994,23.959716796875],[-74.55092773437501,23.96894531250001],[-74.526904296875,24.105078125000034],[-74.47202148437503,24.12666015624998],[-74.45048828124999,24.12548828125003],[-74.42944335937496,24.068066406249955]]],[[[-77.65771484374994,24.24946289062495],[-77.65615234375,24.2265625],[-77.75527343750002,24.163476562500023],[-77.683251953125,24.118457031250017],[-77.61538085937494,24.216357421875042],[-77.5615234375,24.136816406250006],[-77.53203125000002,23.987646484375006],[-77.53681640624991,23.96166992187503],[-77.531884765625,23.93940429687504],[-77.52133789062498,23.910839843749983],[-77.51875,23.86943359374999],[-77.57373046875,23.73916015624999],[-77.77128906249999,23.752539062499977],[-77.77578124999994,23.862353515625045],[-77.80629882812494,23.88354492187503],[-77.85224609374998,24.040380859375006],[-77.91406249999994,24.090917968749977],[-77.99990234374994,24.219824218750063],[-77.950048828125,24.253076171874994],[-77.88359375,24.241992187500045],[-77.84956054687495,24.25751953125001],[-77.757421875,24.26992187500005],[-77.70146484374999,24.287548828124983],[-77.65771484374994,24.24946289062495]]],[[[-75.30839843749999,24.2],[-75.30175781249994,24.149169921875057],[-75.36875,24.159472656250014],[-75.46762695312499,24.139599609374955],[-75.50322265624996,24.13906250000002],[-75.48105468749998,24.173876953125017],[-75.41240234374993,24.220947265625],[-75.40893554687503,24.265771484374994],[-75.49389648437503,24.330419921875034],[-75.5927734375,24.491259765625017],[-75.63906250000002,24.529394531250063],[-75.66103515624997,24.58984375000003],[-75.74399414062498,24.6546875],[-75.72666015625,24.68935546875005],[-75.709619140625,24.69750976562503],[-75.65351562499995,24.68085937500001],[-75.52646484375,24.449511718750045],[-75.51816406249996,24.427343750000063],[-75.30839843749999,24.2]]],[[[-77.34755859375,25.01386718749998],[-77.460498046875,24.99311523437504],[-77.54121093749993,25.01357421875002],[-77.56191406249997,25.030029296875],[-77.52734374999994,25.057666015625045],[-77.45126953124999,25.080712890625023],[-77.32910156249997,25.083007812500053],[-77.27558593750001,25.055761718750006],[-77.269140625,25.043847656249966],[-77.34755859375,25.01386718749998]]],[[[-77.74384765625001,24.70742187499999],[-77.74604492187501,24.586328125000023],[-77.735107421875,24.49575195312505],[-77.74521484375,24.463476562500034],[-77.85341796874994,24.402929687500063],[-77.881201171875,24.36909179687498],[-77.98320312500002,24.33496093749997],[-78.04492187499997,24.28745117187506],[-78.07583007812497,24.364648437499966],[-78.1357421875,24.41235351562503],[-78.14580078125002,24.493457031250017],[-78.19160156250001,24.466064453125025],[-78.25761718749996,24.482763671875063],[-78.36650390624993,24.544189453125057],[-78.435302734375,24.62758789062499],[-78.33891601562499,24.64204101562501],[-78.31899414062492,24.59023437500002],[-78.24272460937493,24.65380859375],[-78.26005859375002,24.68730468749999],[-78.27382812499997,24.691601562499983],[-78.298828125,24.753906250000053],[-78.18408203124999,24.917089843750002],[-78.159326171875,25.02236328125002],[-78.21137695312495,25.191259765624977],[-78.16279296875001,25.20234375],[-78.03330078124999,25.143115234375045],[-77.97529296874998,25.084814453125063],[-77.97338867187497,25.004785156249994],[-77.91894531249996,24.942822265624983],[-77.84013671874997,24.794384765624955],[-77.74384765625001,24.70742187499999]]],[[[-76.64882812499994,25.487402343750006],[-76.48422851562498,25.37460937500003],[-76.34379882812496,25.33203124999997],[-76.19199218749995,25.190820312499994],[-76.12661132812497,25.14052734375005],[-76.11494140624998,25.09472656250003],[-76.14052734374994,24.885644531249994],[-76.17465820312498,24.759765625],[-76.16953125,24.6494140625],[-76.20517578124998,24.682080078124983],[-76.24121093749994,24.754345703124955],[-76.30029296875,24.7958984375],[-76.319970703125,24.81767578124999],[-76.21376953124994,24.822460937499983],[-76.20434570312497,24.936230468749983],[-76.15253906250001,25.025976562500063],[-76.160400390625,25.119335937499983],[-76.28432617187502,25.222119140624955],[-76.36928710937502,25.312597656250002],[-76.49990234374997,25.341552734375057],[-76.62070312499998,25.431640625000025],[-76.69277343750002,25.442724609375063],[-76.78066406249997,25.426855468750006],[-76.74892578125,25.480566406250034],[-76.72695312499997,25.551611328125034],[-76.71083984374997,25.564892578124983],[-76.64882812499994,25.487402343750006]]],[[[-78.49287109375001,26.729052734375014],[-78.37172851562502,26.697949218749983],[-78.30683593749995,26.70219726562496],[-78.267919921875,26.72265625000003],[-78.08867187499999,26.71430664062504],[-77.9439453125,26.744238281250006],[-77.92246093749998,26.69111328125001],[-77.926123046875,26.663378906250045],[-78.23388671875,26.637353515624994],[-78.51621093749998,26.559375],[-78.67094726562496,26.50654296874998],[-78.74365234374994,26.500683593750036],[-78.79921875,26.528466796874994],[-78.98564453124996,26.689501953125045],[-78.935791015625,26.673437500000063],[-78.79804687500001,26.58242187499999],[-78.7125,26.599023437499994],[-78.63325195312501,26.659179687499996],[-78.62114257812493,26.704638671875017],[-78.63295898437497,26.72617187500003],[-78.59711914062493,26.797949218750006],[-78.49287109375001,26.729052734375014]]],[[[-77.22563476562496,25.904199218750023],[-77.246435546875,25.89545898437501],[-77.33325195312503,25.99560546874997],[-77.40317382812496,26.02470703124996],[-77.2939453125,26.09550781249999],[-77.24677734374997,26.156347656250034],[-77.24775390625001,26.2890625],[-77.22109375,26.361767578124983],[-77.23012695312497,26.424707031249994],[-77.20605468749994,26.48896484375004],[-77.238623046875,26.561132812500006],[-77.32993164062496,26.61835937500001],[-77.510595703125,26.845996093750045],[-77.79599609374998,26.901269531250023],[-77.94375,26.90356445312503],[-77.86254882812503,26.940087890625023],[-77.78754882812493,26.935644531250002],[-77.67211914062497,26.913916015625006],[-77.53388671874995,26.903417968750002],[-77.44941406249998,26.836425781250025],[-77.36875,26.74760742187496],[-77.29589843749997,26.711669921875025],[-77.26591796874999,26.688818359374977],[-77.26928710937496,26.663037109374983],[-77.25717773437498,26.638818359375023],[-77.16210937499996,26.597265624999977],[-77.06635742187501,26.530175781249994],[-77.03828124999998,26.333447265624983],[-77.16728515624996,26.240332031250006],[-77.191015625,25.955468749999966],[-77.22563476562496,25.904199218750023]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Barbados","sov_a3":"BRB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Barbados","adm0_a3":"BRB","geou_dif":0,"geounit":"Barbados","gu_a3":"BRB","su_dif":0,"subunit":"Barbados","su_a3":"BRB","brk_diff":0,"name":"Barbados","name_long":"Barbados","brk_a3":"BRB","brk_name":"Barbados","brk_group":null,"abbrev":"Barb.","postal":"BB","formal_en":"Barbados","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Barbados","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":5,"mapcolor13":3,"pop_est":284589,"gdp_md_est":5425,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"BB","iso_a3":"BRB","iso_n3":"052","un_a3":"052","wb_a2":"BB","wb_a3":"BRB","woe_id":-99,"adm0_a3_is":"BRB","adm0_a3_us":"BRB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"BRB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-59.49331054687499,13.081982421874995],[-59.521875,13.062207031249997],[-59.611328125,13.102099609374987],[-59.64277343749999,13.150292968749994],[-59.6466796875,13.303125],[-59.59160156249999,13.317675781250003],[-59.48789062499999,13.196826171874989],[-59.42763671875,13.152783203124997],[-59.49331054687499,13.081982421874995]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Belize","sov_a3":"BLZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belize","adm0_a3":"BLZ","geou_dif":0,"geounit":"Belize","gu_a3":"BLZ","su_dif":0,"subunit":"Belize","su_a3":"BLZ","brk_diff":0,"name":"Belize","name_long":"Belize","brk_a3":"BLZ","brk_name":"Belize","brk_group":null,"abbrev":"Belize","postal":"BZ","formal_en":"Belize","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belize","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":5,"mapcolor13":7,"pop_est":307899,"gdp_md_est":2536,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BZ","iso_a3":"BLZ","iso_n3":"084","un_a3":"084","wb_a2":"BZ","wb_a3":"BLZ","woe_id":-99,"adm0_a3_is":"BLZ","adm0_a3_us":"BLZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"BLZ.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.85292968749998,17.4228515625],[-87.92998046874996,17.283007812500017],[-87.93486328124999,17.322949218749983],[-87.90283203125003,17.42646484375001],[-87.85942382812499,17.46279296875005],[-87.83251953124999,17.50107421875003],[-87.826416015625,17.54628906249999],[-87.78862304687493,17.524218750000042],[-87.79814453125,17.479589843750002],[-87.85292968749998,17.4228515625]]],[[[-87.9505859375,17.924951171874966],[-87.99809570312497,17.906347656250006],[-87.95903320312493,17.964013671875023],[-87.95332031250001,18.001074218750034],[-87.89833984375,18.154931640625023],[-87.85893554687496,18.154052734375],[-87.84853515625,18.140380859374968],[-87.9505859375,17.924951171874966]]],[[[-88.34926757812494,18.358837890624983],[-88.29565429687494,18.344091796875006],[-88.24726562499994,18.35468750000004],[-88.1302734375,18.350732421875023],[-88.08525390624999,18.226123046875045],[-88.09721679687502,18.121630859375074],[-88.207470703125,17.846093749999966],[-88.221435546875,17.75136718750005],[-88.27172851562494,17.60986328125],[-88.203466796875,17.5166015625],[-88.2671875,17.392578125000057],[-88.28881835937497,17.31269531250001],[-88.29399414062496,17.19213867187497],[-88.26181640624998,16.963037109375023],[-88.31342773437501,16.632763671874983],[-88.404541015625,16.488623046875006],[-88.46113281249998,16.43378906250001],[-88.56230468749999,16.29042968750005],[-88.69516601562498,16.247656250000034],[-88.87910156249998,16.016650390625045],[-88.91171874999995,15.95600585937504],[-88.89404296875,15.890625],[-88.937158203125,15.889843749999955],[-89.11357421874996,15.900683593750044],[-89.2328125,15.888671875],[-89.2375,15.894433593750023],[-89.22763671875,16.142822265625],[-89.21245117187493,16.527148437500045],[-89.20126953124998,16.80898437499999],[-89.19038085937497,17.084667968750008],[-89.18217773437499,17.29121093750001],[-89.1710937499999,17.57226562499997],[-89.16147460937503,17.81484375],[-89.16235351562494,17.901953124999977],[-89.13354492187501,17.970800781249977],[-89.05043945312497,17.99970703125001],[-88.94262695312494,17.93964843750004],[-88.89780273437495,17.91455078124997],[-88.85737304687498,17.92880859375003],[-88.80634765624998,17.965527343749983],[-88.74360351562497,18.071630859375006],[-88.58618164062497,18.29052734375003],[-88.52299804687497,18.445898437500063],[-88.46127929687502,18.47675781250004],[-88.37241210937495,18.482324218750023],[-88.29565429687494,18.47241210937503],[-88.34926757812494,18.358837890624983]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cuba","sov_a3":"CUB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cuba","adm0_a3":"CUB","geou_dif":0,"geounit":"Cuba","gu_a3":"CUB","su_dif":0,"subunit":"Cuba","su_a3":"CUB","brk_diff":0,"name":"Cuba","name_long":"Cuba","brk_a3":"CUB","brk_name":"Cuba","brk_group":null,"abbrev":"Cuba","postal":"CU","formal_en":"Republic of Cuba","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cuba","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":4,"pop_est":11451652,"gdp_md_est":108200,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CU","iso_a3":"CUB","iso_n3":"192","un_a3":"192","wb_a2":"CU","wb_a3":"CUB","woe_id":-99,"adm0_a3_is":"CUB","adm0_a3_us":"CUB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CUB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-82.56176757812503,21.571679687500023],[-82.65483398437496,21.518652343749977],[-82.85317382812497,21.443896484375017],[-82.95961914062498,21.441308593750023],[-83.06728515624995,21.469384765624966],[-83.14150390624998,21.531884765624994],[-83.1837890625,21.59345703125004],[-83.18022460937497,21.623046875000025],[-83.11293945312497,21.573681640624983],[-83.05488281249993,21.549414062500034],[-83.0072265625,21.56557617187502],[-82.97358398437498,21.592285156250057],[-83.08251953124997,21.791406250000023],[-83.07773437499998,21.83349609375],[-82.99121093750003,21.942724609375034],[-82.75576171875002,21.90952148437503],[-82.71455078124998,21.890283203125023],[-82.68183593749995,21.821142578125063],[-82.62939453125001,21.766894531250017],[-82.56782226562501,21.62182617187503],[-82.56176757812503,21.571679687500023]]],[[[-77.66899414062493,21.951953125000045],[-77.71005859374995,21.92133789062504],[-77.75502929687497,21.965576171875],[-77.78364257812495,21.970410156249983],[-77.82319335937501,21.987939453125023],[-77.9,22.037158203125014],[-77.91855468749998,22.088085937499983],[-77.85473632812494,22.091943359374966],[-77.77441406250003,22.08295898437501],[-77.63369140624994,22.054003906250074],[-77.64599609374997,21.996484374999966],[-77.66899414062493,21.951953125000045]]],[[[-77.87939453125,22.127539062500034],[-77.91235351562497,22.124707031249983],[-78.01191406249998,22.16640625000005],[-78.04165039062502,22.20126953125003],[-78.006689453125,22.24799804687498],[-77.99921874999998,22.298730468749994],[-77.98564453124996,22.302099609374977],[-77.96958007812498,22.240673828124983],[-77.89365234374996,22.214550781249983],[-77.88911132812491,22.201074218749994],[-77.84248046874993,22.148974609375045],[-77.87939453125,22.127539062500034]]],[[[-78.02709960937497,22.28515625],[-78.04750976562497,22.268505859374983],[-78.10166015624998,22.305761718750006],[-78.18002929687495,22.321972656250036],[-78.22612304687493,22.379980468750034],[-78.27001953125,22.40224609375005],[-78.27353515625,22.42358398437503],[-78.20097656249996,22.437646484374962],[-78.15058593750001,22.43149414062506],[-78.09414062499997,22.38720703125],[-78.061669921875,22.305908203125057],[-78.02709960937497,22.28515625]]],[[[-78.63012695312499,22.552246093750057],[-78.49287109375001,22.53105468749999],[-78.4453125,22.54375],[-78.39956054687502,22.547460937500063],[-78.35122070312501,22.538623046875017],[-78.28388671874998,22.45546875000005],[-78.34301757812493,22.445117187500074],[-78.38994140625,22.445117187500074],[-78.42456054687494,22.460107421875023],[-78.54765624999997,22.464013671875023],[-78.62900390625003,22.488183593749966],[-78.67363281249999,22.50883789062499],[-78.69550781249998,22.533984375000045],[-78.63012695312499,22.552246093750057]]],[[[-79.34956054687493,22.663916015625063],[-79.34790039062493,22.637695312500057],[-79.52275390624995,22.711132812500008],[-79.59785156249998,22.787646484375045],[-79.62817382812501,22.80522460937507],[-79.57915039062499,22.806738281250034],[-79.382177734375,22.681347656249983],[-79.34956054687493,22.663916015625063]]],[[[-81.83745117187499,23.16303710937495],[-81.57543945312497,23.11650390625007],[-81.36362304687499,23.129687500000017],[-81.26235351562497,23.156835937500034],[-81.271630859375,23.128613281249955],[-81.17861328124997,23.059667968750034],[-81.14462890624998,23.054931640625053],[-81.00766601562495,23.089843749999968],[-80.65014648437493,23.10307617187499],[-80.61342773437502,23.08374023437497],[-80.55048828124998,23.01660156249997],[-80.45922851562494,22.975],[-80.36489257812502,22.943408203125074],[-80.26616210937495,22.934960937500023],[-80.16762695312497,22.949365234375048],[-80.07524414062499,22.94233398437504],[-79.95991210937493,22.876904296875008],[-79.92353515624998,22.86914062500003],[-79.82026367187497,22.887011718750045],[-79.85073242187497,22.827197265625017],[-79.67666015624997,22.743066406250023],[-79.54921875,22.577783203125023],[-79.45649414062494,22.509863281250034],[-79.35830078125002,22.448925781249955],[-79.27568359374999,22.407617187499994],[-79.18300781250002,22.38789062499995],[-78.90190429687493,22.39599609375],[-78.83544921875,22.390917968750045],[-78.77597656249995,22.36733398437502],[-78.71923828124994,22.358056640625023],[-78.68647460937493,22.366845703125023],[-78.14311523437497,22.109423828125074],[-77.97050781249997,21.971972656250042],[-77.86503906250002,21.90058593749998],[-77.63681640624995,21.79736328125],[-77.54511718749993,21.774609374999983],[-77.497119140625,21.78833007812503],[-77.50654296874998,21.81103515625003],[-77.57333984375,21.868310546874966],[-77.58315429687497,21.889257812499977],[-77.49726562499995,21.871630859375045],[-77.34213867187498,21.75527343750005],[-77.29951171874998,21.712255859374974],[-77.22207031250002,21.672412109375045],[-77.14414062499995,21.643603515625014],[-77.18125,21.59765625],[-77.24453124999995,21.59375],[-77.36616210937498,21.612646484375034],[-77.26958007812502,21.537890624999985],[-77.25288085937498,21.483496093750006],[-77.20791015624995,21.478857421875034],[-77.140966796875,21.538623046875045],[-77.0986328125,21.58901367187502],[-76.92807617187498,21.458984375],[-76.83632812499994,21.39951171875003],[-76.85981445312493,21.364794921875074],[-76.86743164062497,21.330419921875006],[-76.76499023437498,21.362402343750034],[-76.72607421874997,21.35888671875003],[-76.68852539062495,21.340429687500006],[-76.64741210937501,21.284521484375063],[-76.55170898437495,21.272119140625023],[-76.45517578125,21.273632812499983],[-76.25922851562498,21.22739257812506],[-76.0736328125,21.13344726562502],[-75.89902343749995,21.1142578125],[-75.72294921874996,21.111035156249983],[-75.63374023437501,21.06132812500007],[-75.59580078125,20.99467773437499],[-75.638525390625,20.947460937499955],[-75.662939453125,20.89814453125004],[-75.59726562500003,20.83764648437497],[-75.74023437500003,20.811962890624983],[-75.76040039062497,20.775537109375023],[-75.75297851562496,20.736181640625006],[-75.72456054687493,20.71455078125004],[-75.64277343749998,20.733496093749977],[-75.52460937499998,20.716650390625006],[-75.338134765625,20.70161132812495],[-75.21328124999997,20.713867187499968],[-74.959716796875,20.672656250000017],[-74.882568359375,20.65063476562497],[-74.732080078125,20.57319335937501],[-74.662451171875,20.522119140624994],[-74.51313476562495,20.384570312500045],[-74.384375,20.33046875000002],[-74.27280273437503,20.31738281250003],[-74.23388671875,20.326416015625],[-74.19848632812499,20.311474609374983],[-74.16748046874997,20.29218749999995],[-74.13681640625003,20.23193359375003],[-74.15371093750002,20.168554687500006],[-74.21743164062494,20.11713867187501],[-74.25283203124997,20.0796875],[-74.41215820312499,20.075341796875023],[-74.63476562499997,20.058154296875074],[-74.85004882812494,20.002294921875063],[-74.95512695312496,19.957910156249966],[-75.00317382812497,19.928564453125034],[-75.1164062499999,19.901416015625017],[-75.12412109375,19.924658203125034],[-75.12197265625002,19.953906250000045],[-75.151611328125,20.008349609375045],[-75.17729492187499,19.959375],[-75.21943359374997,19.923632812500017],[-75.29047851562494,19.893115234375017],[-75.55195312499995,19.891113281250053],[-75.6572265625,19.932226562499974],[-75.76513671874994,19.960400390624955],[-76.15844726562497,19.98974609374997],[-76.25283203125,19.987158203124977],[-76.515625,19.956689453124994],[-76.77973632812495,19.940185546875],[-76.890234375,19.92133789062498],[-76.99946289062495,19.89282226562503],[-77.21196289062502,19.89375],[-77.46318359374993,19.861376953125017],[-77.715087890625,19.85546874999997],[-77.55375976562502,20.08212890625006],[-77.21337890625003,20.30039062500003],[-77.14941406249997,20.347265624999977],[-77.10380859374997,20.407519531250017],[-77.09301757812503,20.452929687500017],[-77.10791015624994,20.49165039062501],[-77.18896484375003,20.559960937499966],[-77.20546875,20.61083984375003],[-77.22958984374995,20.64375],[-77.34755859375,20.672363281250057],[-77.467041015625,20.68950195312499],[-77.59272460937495,20.690087890625023],[-77.85688476562494,20.71362304687503],[-77.99731445312494,20.715380859375017],[-78.11635742187497,20.761865234374994],[-78.31386718749997,20.92749023437497],[-78.40634765624998,20.973876953124996],[-78.45385742187496,21.01098632812503],[-78.49077148437493,21.05371093750003],[-78.537255859375,21.296826171874983],[-78.57656250000002,21.41381835937503],[-78.63647460937497,21.515527343750048],[-78.72768554687497,21.592724609374955],[-78.82294921874993,21.618945312500074],[-79.18920898437494,21.552832031250006],[-79.27441406249997,21.562646484374966],[-79.35742187500003,21.58515625000001],[-79.91030273437494,21.742578125000023],[-80.13833007812494,21.829248046875023],[-80.23134765625,21.87216796875006],[-80.310693359375,21.933398437500014],[-80.39291992187503,22.033740234375017],[-80.48544921874996,22.1234375],[-80.48481445312493,22.08715820312497],[-80.49907226562499,22.063525390625045],[-80.96191406249997,22.052880859375023],[-81.03564453124997,22.073583984375063],[-81.08310546874995,22.097949218750045],[-81.11665039062494,22.134228515624983],[-81.14140624999993,22.20693359375005],[-81.18549804687495,22.267968750000048],[-81.19956054687498,22.202929687500014],[-81.222412109375,22.142919921875063],[-81.284375,22.109423828125074],[-81.35527343749999,22.104101562500063],[-81.44111328124998,22.18378906250004],[-81.81621093750002,22.200195312499996],[-81.84941406249992,22.213671874999985],[-81.97260742187498,22.290869140625006],[-82.077734375,22.3876953125],[-81.973046875,22.42182617187504],[-81.75708007812494,22.46674804687504],[-81.71035156250002,22.496679687500006],[-81.68325195312502,22.53481445312505],[-81.70273437499998,22.591894531250034],[-81.74565429687493,22.632910156250063],[-81.78989257812498,22.65703124999999],[-81.83881835937498,22.672460937500034],[-81.90341796874999,22.679003906250017],[-82.73803710937497,22.689257812500074],[-82.78637695312494,22.658349609374994],[-82.86123046875002,22.59511718749999],[-83.009423828125,22.514013671874977],[-83.10712890625001,22.429882812499983],[-83.14375,22.38647460937503],[-83.18940429687498,22.35541992187501],[-83.29213867187495,22.303222656250025],[-83.37963867187503,22.222998046875034],[-83.4859375,22.187109375],[-83.54404296875002,22.20893554687501],[-83.60151367187501,22.208740234375057],[-83.64306640624994,22.18896484375003],[-83.68662109375003,22.179931640625057],[-83.90073242187495,22.170117187500008],[-83.93271484374996,22.149658203125],[-83.96333007812501,22.092089843750017],[-83.99804687499997,21.980126953125023],[-84.03095703124993,21.94311523437503],[-84.13833007812497,21.929003906249985],[-84.24067382812493,21.898339843749966],[-84.44882812499998,21.791650390624994],[-84.502587890625,21.776171875000045],[-84.49091796874993,21.854296875000045],[-84.50136718750002,21.930273437499977],[-84.56000976562498,21.933007812500023],[-84.62690429687501,21.92036132812501],[-84.682666015625,21.89907226562502],[-84.78583984374998,21.84228515625],[-84.83823242187496,21.827929687500017],[-84.88720703125003,21.856982421875074],[-84.87724609374993,21.894140625],[-84.53276367187502,22.031152343750023],[-84.49423828124998,22.041601562500034],[-84.43305664062495,22.031298828125045],[-84.37314453125,22.035937500000017],[-84.32636718749998,22.074316406250034],[-84.38300781249997,22.255566406250008],[-84.36127929687498,22.37890625],[-84.28134765624993,22.474218750000063],[-84.12177734374995,22.618554687499962],[-84.04492187500003,22.666015625000057],[-83.25781249999997,22.967578125000017],[-83.17724609375,22.983007812500063],[-82.66582031249997,23.043554687500034],[-82.58779296875,23.064550781250063],[-82.35053710937498,23.153955078124962],[-82.10136718750002,23.190429687500025],[-81.83745117187499,23.16303710937495]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Cayman Islands","adm0_a3":"CYM","geou_dif":0,"geounit":"Cayman Islands","gu_a3":"CYM","su_dif":0,"subunit":"Cayman Islands","su_a3":"CYM","brk_diff":0,"name":"Cayman Is.","name_long":"Cayman Islands","brk_a3":"CYM","brk_name":"Cayman Is.","brk_group":null,"abbrev":"Cym. Is.","postal":"KY","formal_en":"Cayman Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Cayman Islands","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":49035,"gdp_md_est":1939,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"KY","iso_a3":"CYM","iso_n3":"136","un_a3":"136","wb_a2":"KY","wb_a3":"CYM","woe_id":-99,"adm0_a3_is":"CYM","adm0_a3_us":"CYM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":10,"long_len":14,"abbrev_len":8,"tiny":2,"homepart":-99,"filename":"CYM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.36953124999997,19.34887695312497],[-81.33725585937493,19.329492187500023],[-81.296484375,19.341357421875045],[-81.28481445312501,19.362548828125],[-81.13046875,19.346777343750006],[-81.10712890624995,19.305175781250053],[-81.224609375,19.30410156249999],[-81.27729492187498,19.277392578125074],[-81.30371093749997,19.271875],[-81.40478515624994,19.278417968750006],[-81.41909179687502,19.374755859375],[-81.39101562499998,19.38491210937505],[-81.36953124999997,19.34887695312497]]],[[[-79.97900390625,19.70820312500001],[-79.98876953124994,19.702539062499994],[-80.02075195312497,19.70683593749999],[-80.09418945312493,19.665917968749994],[-80.12587890625,19.668359374999966],[-80.11611328124995,19.682666015625045],[-80.10092773437498,19.696093750000017],[-80.083642578125,19.706103515625017],[-80.06757812500001,19.7099609375],[-80.01621093750003,19.71826171875],[-79.99184570312494,19.719287109375042],[-79.97509765625,19.7099609375],[-79.97900390625,19.70820312500001]]],[[[-79.823388671875,19.711914062500057],[-79.87006835937501,19.69667968750005],[-79.90620117187501,19.702539062499994],[-79.82421875,19.744091796875036],[-79.803125,19.758105468750045],[-79.78515625000003,19.765625],[-79.76635742187503,19.765722656250006],[-79.74228515625,19.757128906250017],[-79.74228515625,19.75087890624999],[-79.823388671875,19.711914062500057]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Curaçao","adm0_a3":"CUW","geou_dif":0,"geounit":"Curaçao","gu_a3":"CUW","su_dif":0,"subunit":"Curaçao","su_a3":"CUW","brk_diff":0,"name":"Curaçao","name_long":"Curaçao","brk_a3":"CUW","brk_name":"Curaçao","brk_group":null,"abbrev":"Cur.","postal":"CW","formal_en":"Curaçao","formal_fr":null,"note_adm0":"Neth.","note_brk":null,"name_sort":"Curaçao","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":141766,"gdp_md_est":2838,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"CW","iso_a3":"CUW","iso_n3":"531","un_a3":"531","wb_a2":"CW","wb_a3":"CUW","woe_id":-99,"adm0_a3_is":"CUW","adm0_a3_us":"CUW","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":4,"homepart":-99,"filename":"CUW.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-68.75107421874999,12.059765625],[-68.80332031249999,12.045458984374989],[-68.99511718749999,12.141845703125],[-69.15380859375,12.2984375],[-69.15888671875,12.380273437499993],[-69.11845703124999,12.373242187499995],[-69.07675781249999,12.342041015625],[-69.013134765625,12.231347656249994],[-68.82739257812499,12.158544921874991],[-68.75107421874999,12.059765625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Dominican Republic","sov_a3":"DOM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Dominican Republic","adm0_a3":"DOM","geou_dif":0,"geounit":"Dominican Republic","gu_a3":"DOM","su_dif":0,"subunit":"Dominican Republic","su_a3":"DOM","brk_diff":0,"name":"Dominican Rep.","name_long":"Dominican Republic","brk_a3":"DOM","brk_name":"Dominican Rep.","brk_group":null,"abbrev":"Dom. Rep.","postal":"DO","formal_en":"Dominican Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Dominican Republic","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":5,"mapcolor13":7,"pop_est":9650054,"gdp_md_est":78000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DO","iso_a3":"DOM","iso_n3":"214","un_a3":"214","wb_a2":"DO","wb_a3":"DOM","woe_id":-99,"adm0_a3_is":"DOM","adm0_a3_us":"DOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":14,"long_len":18,"abbrev_len":9,"tiny":-99,"homepart":1,"filename":"DOM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-71.768310546875,18.03916015624999],[-71.76376953124998,18.20395507812499],[-71.737255859375,18.270800781250003],[-71.7619140625,18.34130859375],[-71.87255859375,18.416210937499997],[-71.940380859375,18.512597656249994],[-72.000390625,18.597900390625],[-71.98686523437499,18.6103515625],[-71.86650390624999,18.614160156249994],[-71.82421875,18.6455078125],[-71.74321289062499,18.73291015625],[-71.72705078125,18.80322265625],[-71.733642578125,18.856396484374997],[-71.78637695312499,18.92001953124999],[-71.80712890625,18.987011718749997],[-71.74204101562499,19.04550781249999],[-71.65703124999999,19.13076171874999],[-71.64531249999997,19.163525390624997],[-71.647216796875,19.19594726562499],[-71.746484375,19.285839843749997],[-71.753173828125,19.324462890625],[-71.70693359375,19.42197265624999],[-71.71147460937499,19.486572265625],[-71.75742187499998,19.688183593749994],[-71.77924804687498,19.718164062499994],[-71.735107421875,19.735107421875],[-71.70605468749999,19.795166015625],[-71.6673828125,19.8486328125],[-71.615966796875,19.87744140625],[-71.557763671875,19.89536132812499],[-71.44169921874997,19.893994140624997],[-71.28134765624999,19.847363281249997],[-71.23593749999998,19.848144531249996],[-71.08193359375,19.89047851562499],[-70.95415039062499,19.913964843749994],[-70.83388671875,19.887255859375003],[-70.78525390624999,19.850878906250003],[-70.6859375,19.793261718750003],[-70.636181640625,19.775634765625],[-70.47934570312499,19.77695312499999],[-70.43642578125,19.771240234375],[-70.30473632812499,19.676074218750003],[-70.19384765625,19.63803710937499],[-70.12944335937499,19.636132812499994],[-70.0140625,19.67294921874999],[-69.95683593749999,19.671875],[-69.89121093749999,19.589746093749994],[-69.8783203125,19.473291015624994],[-69.8234375,19.367138671874997],[-69.739404296875,19.29921875],[-69.32495117187499,19.32773437499999],[-69.23247070312499,19.27182617187499],[-69.26425781249998,19.22568359374999],[-69.32275390625,19.201074218749994],[-69.5197265625,19.21201171874999],[-69.60595703125,19.206494140624997],[-69.6232421875,19.16049804687499],[-69.62363281249998,19.117822265624994],[-69.50834960937499,19.107617187499997],[-69.395263671875,19.086083984374994],[-69.280224609375,19.051904296874994],[-69.163037109375,19.028466796874994],[-69.03129882812499,19.01318359375],[-68.9013671875,18.988476562499997],[-68.684765625,18.90478515625],[-68.44541015624998,18.714453124999988],[-68.38139648437499,18.671142578125],[-68.33916015624999,18.611523437499997],[-68.35927734375,18.5380859375],[-68.44482421875,18.417724609375],[-68.49321289062499,18.37900390624999],[-68.56376953124997,18.35546875],[-68.61220703125,18.30625],[-68.658837890625,18.22202148437499],[-68.68740234375,18.21494140624999],[-68.72099609374999,18.218408203124994],[-68.778466796875,18.26611328125],[-68.81953125,18.339306640624997],[-68.9349609375,18.408007812500003],[-69.072265625,18.39921875],[-69.27451171874999,18.43984375],[-69.39697265625,18.420117187499994],[-69.51943359375,18.415673828124994],[-69.6447265625,18.43637695312499],[-69.770654296875,18.443554687499997],[-69.89638671874998,18.417724609375],[-70.01831054687499,18.37363281249999],[-70.06333007812498,18.345654296874997],[-70.14160156249999,18.277099609375],[-70.18310546875,18.251757812500003],[-70.479931640625,18.21728515625],[-70.5654296875,18.267578125],[-70.644677734375,18.336230468750003],[-70.75883789062497,18.345605468749994],[-70.92431640625,18.29248046875],[-71.02783203125,18.273193359375],[-71.069970703125,18.25034179687499],[-71.0822265625,18.224365234375],[-71.08261718749999,18.128369140624994],[-71.10600585937499,18.070019531249997],[-71.26728515625,17.849609375],[-71.35830078125,17.694140625],[-71.395703125,17.64609375],[-71.43896484374999,17.635595703124988],[-71.51835937499999,17.725],[-71.56904296875,17.757373046875003],[-71.63173828125,17.773632812499997],[-71.65830078124999,17.82114257812499],[-71.6572265625,17.888671875],[-71.67373046875,17.9541015625],[-71.71245117187499,18.00546875],[-71.768310546875,18.03916015624999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Dominica","sov_a3":"DMA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Dominica","adm0_a3":"DMA","geou_dif":0,"geounit":"Dominica","gu_a3":"DMA","su_dif":0,"subunit":"Dominica","su_a3":"DMA","brk_diff":0,"name":"Dominica","name_long":"Dominica","brk_a3":"DMA","brk_name":"Dominica","brk_group":null,"abbrev":"D'inca","postal":"DM","formal_en":"Commonwealth of Dominica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Dominica","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":2,"mapcolor13":12,"pop_est":72660,"gdp_md_est":719.6,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DM","iso_a3":"DMA","iso_n3":"212","un_a3":"212","wb_a2":"DM","wb_a3":"DMA","woe_id":-99,"adm0_a3_is":"DMA","adm0_a3_us":"DMA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":6,"tiny":4,"homepart":1,"filename":"DMA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-61.281689453125004,15.2490234375],[-61.375390625,15.227294921874998],[-61.41572265624999,15.399853515624999],[-61.48115234374999,15.525146484374998],[-61.46992187499999,15.603466796874997],[-61.45810546874999,15.633105468750003],[-61.32001953125,15.585058593749991],[-61.277246093749994,15.52670898437499],[-61.25107421874999,15.373144531249991],[-61.281689453125004,15.2490234375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Costa Rica","sov_a3":"CRI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Costa Rica","adm0_a3":"CRI","geou_dif":0,"geounit":"Costa Rica","gu_a3":"CRI","su_dif":0,"subunit":"Costa Rica","su_a3":"CRI","brk_diff":0,"name":"Costa Rica","name_long":"Costa Rica","brk_a3":"CRI","brk_name":"Costa Rica","brk_group":null,"abbrev":"C.R.","postal":"CR","formal_en":"Republic of Costa Rica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Costa Rica","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":4,"mapcolor13":2,"pop_est":4253877,"gdp_md_est":48320,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CR","iso_a3":"CRI","iso_n3":"188","un_a3":"188","wb_a2":"CR","wb_a3":"CRI","woe_id":-99,"adm0_a3_is":"CRI","adm0_a3_us":"CRI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CRI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-83.6419921875,10.917236328124998],[-83.61728515624999,10.877490234374989],[-83.58818359374997,10.814990234374987],[-83.57529296874999,10.734716796874991],[-83.4482421875,10.46591796874999],[-83.346826171875,10.315380859374997],[-83.12460937499999,10.041601562499991],[-83.028515625,9.991259765624989],[-82.86630859374999,9.770947265624997],[-82.81030273437499,9.734570312499997],[-82.77841796874999,9.66953125],[-82.61015624999999,9.616015624999989],[-82.56357421874998,9.57666015625],[-82.56923828124998,9.55820312499999],[-82.58652343749999,9.538818359375],[-82.611279296875,9.519238281249997],[-82.64409179687499,9.505859375],[-82.723388671875,9.54609375],[-82.801025390625,9.591796875],[-82.843994140625,9.57080078125],[-82.86015624999999,9.511474609375],[-82.88896484374999,9.481005859374989],[-82.925048828125,9.469042968749989],[-82.93984375,9.449169921874997],[-82.942822265625,9.248876953124991],[-82.94033203125,9.060107421874989],[-82.88134765625,9.055859375],[-82.78305664062499,8.990283203124989],[-82.741162109375,8.951708984374989],[-82.72783203124997,8.916064453124987],[-82.739990234375,8.898583984374994],[-82.8119140625,8.857421875],[-82.881982421875,8.805322265624994],[-82.91704101562499,8.740332031249991],[-82.855712890625,8.635302734374989],[-82.84262695312498,8.563964843749998],[-82.84477539062497,8.489355468749991],[-82.86162109374997,8.45351562499999],[-82.99755859375,8.367773437499991],[-83.02734374999999,8.337744140624991],[-83.023388671875,8.31601562499999],[-82.94843749999998,8.2568359375],[-82.91289062499999,8.19960937499999],[-82.88330078125,8.130566406249997],[-82.87934570312498,8.070654296874991],[-82.947265625,8.181738281249991],[-83.04145507812498,8.287744140624994],[-83.12333984374999,8.353076171874989],[-83.12958984375,8.50546875],[-83.16240234374999,8.588183593749989],[-83.285791015625,8.664355468749989],[-83.39140624999999,8.717724609374997],[-83.4697265625,8.706835937499989],[-83.42177734375,8.619238281249991],[-83.29775390625,8.506884765624989],[-83.28955078125,8.463818359374997],[-83.29150390625,8.406005859375],[-83.37680664062498,8.414892578124991],[-83.45205078125,8.4384765625],[-83.54375,8.445849609374989],[-83.604736328125,8.48032226562499],[-83.73408203124998,8.614453125],[-83.6421875,8.72890625],[-83.613720703125,8.804052734374991],[-83.616162109375,8.959814453124991],[-83.63725585937499,9.035351562499997],[-83.73691406249998,9.150292968749994],[-83.89555664062499,9.276416015624987],[-84.11787109375,9.379443359374989],[-84.22236328125,9.4625],[-84.482666015625,9.526171874999989],[-84.58159179687499,9.568359375],[-84.65888671875,9.646679687499995],[-84.67045898437499,9.702880859375],[-84.64306640625,9.789404296874991],[-84.71494140624998,9.899414062499998],[-85.02504882812498,10.11572265625],[-85.19843749999998,10.1953125],[-85.23564453124999,10.242089843749994],[-85.26318359375,10.256640624999989],[-85.23652343749998,10.107373046874997],[-85.16074218749999,10.017431640624991],[-84.96279296875,9.93344726562499],[-84.908349609375,9.884570312499989],[-84.88642578125,9.820947265624994],[-85.00126953124999,9.699267578124989],[-85.059716796875,9.668310546874991],[-85.07705078125,9.60195312499999],[-85.114501953125,9.581787109375],[-85.15400390624998,9.620068359374997],[-85.31455078124999,9.8109375],[-85.62485351562499,9.90244140624999],[-85.68100585937499,9.95859375],[-85.79648437499999,10.132861328124987],[-85.84965820312499,10.292041015624989],[-85.83061523437499,10.398144531249997],[-85.703125,10.563476562499998],[-85.663330078125,10.635449218749997],[-85.67143554687499,10.679785156249991],[-85.667236328125,10.745019531249994],[-85.71484375,10.790576171874989],[-85.83286132812499,10.849951171874991],[-85.90800781249997,10.897558593749991],[-85.88740234375,10.921289062499994],[-85.75224609374997,10.985253906249994],[-85.74370117187499,11.04296875],[-85.7443359375,11.06210937499999],[-85.72226562499999,11.066259765624991],[-85.70263671875,11.08154296875],[-85.69052734374999,11.097460937499989],[-85.65366210937498,11.153076171875],[-85.62138671874999,11.184472656249994],[-85.5841796875,11.189453125],[-85.53872070312498,11.166308593749989],[-85.368359375,11.1064453125],[-85.178955078125,11.039941406249994],[-84.9091796875,10.9453125],[-84.79736328125,11.005908203124989],[-84.701171875,11.052197265624997],[-84.6341796875,11.045605468749997],[-84.48916015625,10.991650390624995],[-84.40185546875,10.974462890624991],[-84.348291015625,10.979882812499994],[-84.25556640624998,10.900732421874991],[-84.20498046875,10.84130859375],[-84.19658203124999,10.801708984374997],[-84.168359375,10.780371093749991],[-84.09619140625,10.775683593749989],[-83.91928710937499,10.7353515625],[-83.811181640625,10.743261718749991],[-83.71293945312497,10.785888671875],[-83.658935546875,10.836865234374997],[-83.6419921875,10.917236328124998]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Grenada","sov_a3":"GRD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Grenada","adm0_a3":"GRD","geou_dif":0,"geounit":"Grenada","gu_a3":"GRD","su_dif":0,"subunit":"Grenada","su_a3":"GRD","brk_diff":0,"name":"Grenada","name_long":"Grenada","brk_a3":"GRD","brk_name":"Grenada","brk_group":null,"abbrev":"Gren.","postal":"GD","formal_en":"Grenada","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Grenada","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":3,"mapcolor13":6,"pop_est":90739,"gdp_md_est":1161,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GD","iso_a3":"GRD","iso_n3":"308","un_a3":"308","wb_a2":"GD","wb_a3":"GRD","woe_id":-99,"adm0_a3_is":"GRD","adm0_a3_us":"GRD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"GRD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-61.71552734375,12.012646484374997],[-61.78217773437499,12.008447265624994],[-61.755761718749994,12.045458984374989],[-61.749902343749994,12.108447265624989],[-61.714990234374994,12.18515625],[-61.66044921874999,12.237011718749997],[-61.60703125,12.223291015624994],[-61.62714843749999,12.053955078124998],[-61.71552734375,12.012646484374997]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Guatemala","sov_a3":"GTM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guatemala","adm0_a3":"GTM","geou_dif":0,"geounit":"Guatemala","gu_a3":"GTM","su_dif":0,"subunit":"Guatemala","su_a3":"GTM","brk_diff":0,"name":"Guatemala","name_long":"Guatemala","brk_a3":"GTM","brk_name":"Guatemala","brk_group":null,"abbrev":"Guat.","postal":"GT","formal_en":"Republic of Guatemala","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guatemala","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":3,"mapcolor13":6,"pop_est":13276517,"gdp_md_est":68580,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GT","iso_a3":"GTM","iso_n3":"320","un_a3":"320","wb_a2":"GT","wb_a3":"GTM","woe_id":-99,"adm0_a3_is":"GTM","adm0_a3_us":"GTM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":5,"tiny":4,"homepart":1,"filename":"GTM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-89.16147460937498,17.81484375],[-89.17109375,17.572265625],[-89.18217773437499,17.291210937499997],[-89.19038085937498,17.084667968749997],[-89.20126953124999,16.80898437499999],[-89.21245117187499,16.527148437500003],[-89.22763671874999,16.142822265625],[-89.2375,15.894433593749994],[-89.2328125,15.888671875],[-89.11357421874997,15.900683593750003],[-88.937158203125,15.88984375],[-88.89404296875,15.890625],[-88.839990234375,15.86899414062499],[-88.79833984375,15.8625],[-88.708642578125,15.806542968749994],[-88.60336914062498,15.76416015625],[-88.53623046874999,15.849609375],[-88.57158203124999,15.901074218749995],[-88.59799804687499,15.92734375],[-88.5939453125,15.950292968749991],[-88.22832031249999,15.729003906249998],[-88.271435546875,15.694873046875003],[-88.36455078124999,15.616015625],[-88.53330078124999,15.481201171875],[-88.68447265624998,15.360498046874994],[-88.82993164062499,15.251025390625005],[-88.96098632812499,15.152441406249991],[-88.97641601562499,15.14267578124999],[-89.142578125,15.072314453125003],[-89.1703125,15.039892578124991],[-89.20610351562499,14.900585937499997],[-89.22236328125,14.86606445312499],[-89.19223632812499,14.788720703124993],[-89.16220703124998,14.669238281250003],[-89.17177734375,14.606884765624997],[-89.28671875,14.529980468749995],[-89.33940429687499,14.460742187500001],[-89.36259765624999,14.416015625],[-89.383251953125,14.427636718749994],[-89.41884765625,14.431103515624999],[-89.50087890625,14.413769531249997],[-89.54052734375,14.409912109375],[-89.5736328125,14.390087890624995],[-89.57695312499999,14.347070312499993],[-89.55502929687499,14.277246093749994],[-89.54716796874999,14.241259765625003],[-89.57026367187498,14.224658203125003],[-89.6712890625,14.182714843749991],[-89.71113281249998,14.141308593749997],[-89.74936523437499,14.077001953124991],[-89.793701171875,14.050097656250003],[-89.83994140624999,14.05507812499999],[-89.872705078125,14.045605468749997],[-89.94267578124999,13.997363281250003],[-90.04814453124999,13.904052734375],[-90.104736328125,13.834765625],[-90.105908203125,13.783007812500003],[-90.09521484374999,13.736523437499995],[-90.47910156249999,13.900927734375001],[-90.60693359375,13.929003906250003],[-91.14604492187499,13.925585937500001],[-91.37734375,13.990185546874997],[-91.64091796874999,14.114941406249995],[-91.819091796875,14.228222656249995],[-92.23515624999999,14.54541015625],[-92.20903320312499,14.570996093749995],[-92.18706054687499,14.630078125],[-92.15991210937499,14.69101562499999],[-92.17646484375,14.76132812499999],[-92.18637695312499,14.818359375],[-92.15566406249998,14.901318359374995],[-92.15854492187499,14.963574218749997],[-92.14423828125,15.001953125],[-92.09873046874999,15.026757812499993],[-92.07480468749999,15.07421875],[-92.20434570312499,15.237695312499994],[-92.20424804687498,15.275],[-92.187158203125,15.320898437499993],[-92.08212890624999,15.495556640624995],[-91.9572265625,15.70322265624999],[-91.81943359374999,15.932373046875],[-91.736572265625,16.070166015624988],[-91.433984375,16.070458984374994],[-91.2337890625,16.07065429687499],[-90.97958984374998,16.07080078125],[-90.70322265624999,16.071044921875],[-90.52197265625,16.071191406249994],[-90.44716796875,16.072705078124997],[-90.45986328125,16.162353515624996],[-90.450146484375,16.261376953124994],[-90.4169921875,16.351318359375],[-90.4169921875,16.39101562499999],[-90.47109375,16.43955078124999],[-90.57578124999998,16.467822265625003],[-90.63408203124999,16.5107421875],[-90.634375,16.565136718749997],[-90.65996093749999,16.630908203125003],[-90.710693359375,16.70810546874999],[-90.81601562499998,16.787109375],[-90.975830078125,16.867822265624994],[-91.11186523437499,16.97617187499999],[-91.22416992187499,17.112255859374997],[-91.31918945312498,17.19980468749999],[-91.392333984375,17.23642578124999],[-91.409619140625,17.255859375],[-91.1955078125,17.254101562499997],[-90.99296874999997,17.25244140625],[-90.99160156249998,17.447460937499997],[-90.9904296875,17.620751953124994],[-90.98916015625,17.81640625],[-90.622021484375,17.816113281249997],[-90.18359375,17.815722656250003],[-89.72880859374999,17.815332031249994],[-89.37153320312498,17.814990234375003],[-89.16147460937498,17.81484375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Honduras","sov_a3":"HND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Honduras","adm0_a3":"HND","geou_dif":0,"geounit":"Honduras","gu_a3":"HND","su_dif":0,"subunit":"Honduras","su_a3":"HND","brk_diff":0,"name":"Honduras","name_long":"Honduras","brk_a3":"HND","brk_name":"Honduras","brk_group":null,"abbrev":"Hond.","postal":"HN","formal_en":"Republic of Honduras","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Honduras","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":2,"mapcolor13":5,"pop_est":7792854,"gdp_md_est":33720,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"HN","iso_a3":"HND","iso_n3":"340","un_a3":"340","wb_a2":"HN","wb_a3":"HND","woe_id":-99,"adm0_a3_is":"HND","adm0_a3_us":"HND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"HND.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-85.78398437500002,16.002832031249966],[-85.48369140624996,15.899511718749977],[-85.16367187500003,15.918164062499955],[-85.04824218749997,15.973974609375063],[-84.97373046874998,15.989892578124993],[-84.64609375,15.883593750000015],[-84.55966796875,15.802001953125],[-84.49228515625003,15.793945312500059],[-84.44003906249995,15.812597656250034],[-84.42597656249993,15.829492187500023],[-84.490380859375,15.847265625],[-84.51962890625,15.87275390625004],[-84.26142578124998,15.822607421875034],[-83.77548828125,15.436865234375063],[-83.765283203125,15.405468750000056],[-83.972802734375,15.519628906250034],[-84.082763671875,15.510888671875021],[-84.11132812499997,15.492431640624998],[-84.10517578124994,15.43012695312501],[-84.09506835937502,15.400927734375017],[-84.04794921875,15.397607421875051],[-84.01318359374994,15.414404296875004],[-83.92744140624998,15.394042968750028],[-83.87065429687496,15.352734375000054],[-83.80166015625002,15.289257812499995],[-83.76044921874998,15.220361328124993],[-83.71591796874995,15.219238281250028],[-83.67216796875,15.260742187500055],[-83.58964843749997,15.265771484375009],[-83.53593749999999,15.219384765624978],[-83.49794921874997,15.222119140624995],[-83.55107421874996,15.293994140624987],[-83.67612304687503,15.365429687499969],[-83.64638671875,15.368408203125044],[-83.36918945312493,15.239990234375],[-83.29086914062498,15.078906250000045],[-83.2255859375,15.042285156250045],[-83.15751953124999,14.993066406249966],[-83.41503906249994,15.008056640625],[-83.5365234375,14.977001953124981],[-83.58974609375002,14.907568359375048],[-83.63549804687499,14.876416015624997],[-83.67363281249996,14.883544921875027],[-83.75092773437497,14.85625],[-83.86728515624998,14.794482421875003],[-83.97226562499995,14.771093750000034],[-84.06582031250002,14.786083984374983],[-84.09296874999995,14.770898437499994],[-84.10029296874993,14.750634765625053],[-84.11440429687495,14.731005859375045],[-84.15078125,14.720410156250011],[-84.19238281249994,14.726025390625011],[-84.23920898437498,14.747851562500015],[-84.26396484374996,14.738525390624972],[-84.26665039062499,14.698144531250009],[-84.29194335937498,14.687353515625032],[-84.33979492187495,14.706347656249989],[-84.39365234375,14.691748046875032],[-84.45356445312495,14.643701171875023],[-84.53764648437496,14.633398437499963],[-84.64594726562498,14.661083984375013],[-84.72978515625002,14.713378906249998],[-84.78916015625003,14.790380859374979],[-84.86044921874998,14.809765625000011],[-84.98515624999999,14.752441406249972],[-85.03735351562497,14.685546875000014],[-85.04863281249996,14.644726562500054],[-85.03652343749997,14.607666015625055],[-85.059375,14.582958984374999],[-85.11728515625,14.570605468750044],[-85.16132812500001,14.525146484375028],[-85.19150390625,14.446630859375018],[-85.19755859375002,14.385986328125012],[-85.17949218749996,14.343310546875019],[-85.20834960937498,14.311816406250003],[-85.28417968749997,14.29165039062498],[-85.37377929687503,14.223876953125028],[-85.47705078125003,14.108691406250003],[-85.57978515624998,14.028222656250037],[-85.68193359375,13.98256835937498],[-85.73120117187499,13.93183593750004],[-85.72773437499993,13.876074218750048],[-85.73393554687496,13.85869140625006],[-85.75341796875,13.852050781250028],[-85.78671874999995,13.844433593749995],[-85.98378906249997,13.965673828125006],[-86.04038085937503,14.050146484374977],[-86.08925781249994,14.037207031250004],[-86.15122070312495,13.994580078125026],[-86.23823242187501,13.899462890625017],[-86.33173828124995,13.770068359375031],[-86.37695312500003,13.75566406250003],[-86.61025390624997,13.774853515625026],[-86.73364257812493,13.763476562500017],[-86.75898437499994,13.746142578125044],[-86.77060546875003,13.698730468749972],[-86.76352539062499,13.635253906250012],[-86.72958984375,13.4072265625],[-86.71069335937499,13.31337890624998],[-86.72929687499996,13.284375],[-86.79213867187497,13.279785156249972],[-86.87353515624994,13.266503906250023],[-86.918212890625,13.223583984374983],[-86.92880859375,13.17939453125004],[-86.93315429687502,13.117529296874963],[-86.95888671875001,13.053710937500012],[-87.00932617187499,13.007812499999986],[-87.0591796875,12.991455078125028],[-87.337255859375,12.979248046875028],[-87.33251953125003,13.084716796875027],[-87.41279296874991,13.127441406250027],[-87.458447265625,13.215429687500006],[-87.49838867187496,13.274902343750043],[-87.48515624999993,13.310595703125031],[-87.48911132812503,13.352929687500051],[-87.60224609374998,13.385595703125034],[-87.70834960937503,13.360058593749981],[-87.76938476562503,13.376660156249997],[-87.81420898437499,13.399169921875055],[-87.73701171875001,13.451367187500026],[-87.73164062499997,13.48310546875001],[-87.75644531249995,13.506005859374964],[-87.781884765625,13.521386718749994],[-87.77421874999993,13.580322265625014],[-87.75854492187494,13.649951171874989],[-87.71533203125003,13.812695312500011],[-87.73144531250003,13.841064453125014],[-87.80224609374997,13.889990234375034],[-87.89199218749997,13.894970703124983],[-87.99101562499996,13.879638671874972],[-88.038720703125,13.904638671875004],[-88.08046875,13.960595703125037],[-88.15102539062497,13.987353515624973],[-88.27622070312498,13.942675781250015],[-88.40849609375002,13.87539062499999],[-88.44912109374994,13.850976562499994],[-88.48266601562503,13.854248046875043],[-88.49765624999996,13.904541015624984],[-88.50434570312501,13.964208984374961],[-88.51254882812498,13.97895507812504],[-88.583154296875,14.000146484375007],[-88.665625,14.015527343750037],[-88.70761718750003,14.032080078125034],[-88.74736328124996,14.072265625000043],[-88.84594726562497,14.124755859374986],[-88.86831054687498,14.16367187500002],[-89.00019531249995,14.252734375000045],[-89.02685546874997,14.29697265624999],[-89.05712890625,14.329150390624976],[-89.12050781249994,14.370214843749991],[-89.17011718749993,14.360302734375011],[-89.33725585937495,14.41137695312503],[-89.36259765624996,14.416015625],[-89.33940429687496,14.460742187500045],[-89.28671874999998,14.52998046875004],[-89.17177734375,14.606884765624981],[-89.16220703125,14.66923828124999],[-89.192236328125,14.788720703124993],[-89.22236328125001,14.866064453125018],[-89.20610351562499,14.90058593750004],[-89.17031249999997,15.039892578125006],[-89.142578125,15.072314453125031],[-88.97641601562498,15.142675781249977],[-88.96098632812496,15.15244140625002],[-88.82993164062498,15.25102539062503],[-88.68447265625002,15.360498046875035],[-88.53330078124995,15.481201171875028],[-88.36455078124996,15.616015625000044],[-88.27143554687497,15.694873046875047],[-88.22832031249999,15.72900390624997],[-88.131103515625,15.701025390625032],[-88.05458984374994,15.764843749999981],[-88.010400390625,15.786181640625072],[-87.90703124999999,15.862597656250019],[-87.87495117187495,15.879345703124953],[-87.70185546874994,15.910644531250027],[-87.61816406249994,15.909863281249953],[-87.54497070312496,15.832373046874977],[-87.48691406250003,15.790185546874994],[-87.37749023437493,15.826464843750017],[-87.28588867187501,15.834423828124953],[-86.90722656249997,15.762353515625023],[-86.75703125000001,15.794238281250019],[-86.48081054687495,15.801074218749989],[-86.35664062499998,15.783203125],[-86.18120117187493,15.88515625],[-86.06855468749998,15.905664062499993],[-85.93627929687497,15.953417968750045],[-85.95390624999999,16.002246093750045],[-85.98564453124999,16.02416992187497],[-85.78398437500002,16.002832031249966]]],[[[-86.419921875,16.37836914062501],[-86.58027343749998,16.300244140624983],[-86.63041992187499,16.30175781250003],[-86.55693359375002,16.36210937499999],[-86.43828124999999,16.413867187500045],[-86.33784179687495,16.43920898437497],[-86.255517578125,16.428222656250057],[-86.419921875,16.37836914062501]]],[[[-85.87094726562498,16.461523437499974],[-85.94721679687494,16.403613281250017],[-85.960986328125,16.4296875],[-85.92421875,16.48330078124999],[-85.87822265624993,16.513964843750017],[-85.83378906249995,16.510888671875023],[-85.84443359374998,16.48774414062501],[-85.87094726562498,16.461523437499974]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Haiti","sov_a3":"HTI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Haiti","adm0_a3":"HTI","geou_dif":0,"geounit":"Haiti","gu_a3":"HTI","su_dif":0,"subunit":"Haiti","su_a3":"HTI","brk_diff":0,"name":"Haiti","name_long":"Haiti","brk_a3":"HTI","brk_name":"Haiti","brk_group":null,"abbrev":"Haiti","postal":"HT","formal_en":"Republic of Haiti","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Haiti","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":7,"mapcolor13":2,"pop_est":9035536,"gdp_md_est":11500,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"HT","iso_a3":"HTI","iso_n3":"332","un_a3":"332","wb_a2":"HT","wb_a3":"HTI","woe_id":-99,"adm0_a3_is":"HTI","adm0_a3_us":"HTI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"HTI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-72.80458984374997,18.777685546875063],[-72.82221679687501,18.707128906249977],[-73.07797851562498,18.790917968749994],[-73.28525390624999,18.89672851562497],[-73.27641601562499,18.95405273437501],[-73.17060546875001,18.967285156250053],[-73.06914062499996,18.932031249999966],[-72.91923828124995,18.861474609374994],[-72.80458984374997,18.777685546875063]]],[[[-71.95429687499991,19.7216796875],[-71.834716796875,19.69672851562498],[-71.77924804687498,19.718164062499994],[-71.75742187499998,19.68818359375001],[-71.71147460937493,19.486572265625057],[-71.70693359375,19.421972656250034],[-71.753173828125,19.32446289062497],[-71.74648437499997,19.28583984375001],[-71.647216796875,19.19594726562499],[-71.6453125,19.163525390624955],[-71.65703124999992,19.13076171875005],[-71.74204101562503,19.045507812500006],[-71.80712890624997,18.987011718749983],[-71.78637695312499,18.920019531250006],[-71.733642578125,18.856396484375008],[-71.72705078125,18.80322265625003],[-71.74321289062502,18.73291015625],[-71.82421875,18.64550781250003],[-71.86650390624999,18.61416015625005],[-71.98686523437499,18.61035156249997],[-72.000390625,18.59790039062503],[-71.94038085937493,18.51259765625005],[-71.87255859374997,18.416210937499955],[-71.76191406249998,18.34130859374997],[-71.73725585937495,18.27080078124999],[-71.76376953125,18.203955078125063],[-71.76831054687497,18.039160156250063],[-71.85292968749997,18.119140625],[-71.94609374999995,18.186083984375042],[-72.00205078124998,18.212011718750006],[-72.05986328124993,18.228564453125014],[-72.50356445312502,18.21992187500001],[-72.55322265625,18.208398437499994],[-72.59189453124998,18.18691406250005],[-72.63330078124997,18.17622070312501],[-72.75527343749997,18.156152343749994],[-72.87666015624998,18.151757812499994],[-73.16005859375,18.205615234375045],[-73.27226562499993,18.23354492187505],[-73.38515625000002,18.251171874999983],[-73.51484374999997,18.245361328125057],[-73.64404296875,18.229052734375017],[-73.747314453125,18.190234375000017],[-73.82470703124994,18.12177734375001],[-73.83916015624996,18.058203125000034],[-73.88496093749998,18.041894531249994],[-73.98945312499995,18.143164062500006],[-74.08540039062494,18.215136718750017],[-74.19462890624999,18.269189453125023],[-74.41904296874998,18.34619140625],[-74.45996093749997,18.39306640625003],[-74.478125,18.45],[-74.3875,18.624707031249983],[-74.28447265625002,18.65668945312501],[-74.22773437499998,18.662695312499977],[-74.10034179687496,18.64111328125003],[-73.97597656249997,18.601416015625034],[-73.8625,18.57543945312497],[-73.68701171874997,18.56533203125005],[-73.59160156249999,18.522363281249994],[-72.91728515625002,18.455712890624994],[-72.78935546874996,18.434814453125],[-72.73945312499993,18.442138671875],[-72.69599609374995,18.468212890624983],[-72.65976562500003,18.51533203124998],[-72.61806640624997,18.55078125],[-72.41811523437502,18.558691406250034],[-72.37607421874998,18.57446289062503],[-72.34672851562493,18.623730468749955],[-72.34765624999993,18.674951171874994],[-72.46523437500002,18.743554687500023],[-72.64912109375001,18.894140624999977],[-72.81108398437496,19.071582031250074],[-72.74121093750003,19.13134765624997],[-72.76796874999997,19.240625],[-72.74179687499995,19.341845703125045],[-72.70322265625,19.441064453125023],[-72.86342773437497,19.52607421875001],[-73.05273437499997,19.61074218750005],[-73.31552734374995,19.63730468750003],[-73.396337890625,19.65869140625003],[-73.43837890624994,19.722119140624983],[-73.40053710937495,19.807421875000045],[-73.31533203125002,19.854589843749977],[-73.21777343750003,19.883691406250048],[-73.1177734375,19.90380859374997],[-72.87651367187496,19.928076171875034],[-72.63701171875,19.90087890625],[-72.42993164062503,19.81328124999999],[-72.21982421875003,19.744628906250057],[-71.95429687499991,19.7216796875]]],[[[-72.66406250000003,20.0375],[-72.62348632812493,20.01416015624997],[-72.63886718749995,19.98583984374997],[-72.73979492187499,20.00341796875],[-72.84423828124997,20.035449218750045],[-72.87841796875,20.027441406250034],[-72.89931640625,20.03144531250004],[-72.9603515625,20.062255859375],[-72.90673828125,20.085839843750023],[-72.85146484375002,20.093652343750023],[-72.79101562499994,20.091894531250006],[-72.66406250000003,20.0375]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Saint Kitts and Nevis","sov_a3":"KNA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saint Kitts and Nevis","adm0_a3":"KNA","geou_dif":0,"geounit":"Saint Kitts and Nevis","gu_a3":"KNA","su_dif":0,"subunit":"Saint Kitts and Nevis","su_a3":"KNA","brk_diff":0,"name":"St. Kitts and Nevis","name_long":"Saint Kitts and Nevis","brk_a3":"KNA","brk_name":"Saint Kitts and Nevis","brk_group":null,"abbrev":"St.K.N.","postal":"KN","formal_en":"Federation of Saint Kitts and Nevis","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"St. Kitts and Nevis","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":40131,"gdp_md_est":777.7,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"KN","iso_a3":"KNA","iso_n3":"659","un_a3":"659","wb_a2":"KN","wb_a3":"KNA","woe_id":-99,"adm0_a3_is":"KNA","adm0_a3_us":"KNA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":19,"long_len":21,"abbrev_len":7,"tiny":4,"homepart":1,"filename":"KNA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-62.53222656250002,17.121875],[-62.58242187499993,17.10058593749997],[-62.62490234374999,17.129589843750008],[-62.61528320312499,17.199121093749966],[-62.574707031249964,17.201025390625006],[-62.53417968749997,17.17011718750001],[-62.53222656250002,17.121875]]],[[[-62.63066406250001,17.239990234375057],[-62.65649414062503,17.224414062500074],[-62.70200195312498,17.286035156250023],[-62.77553710937494,17.302832031250063],[-62.83891601562499,17.339257812500023],[-62.84047851562494,17.347070312500023],[-62.83940429687499,17.365332031250006],[-62.82705078124996,17.386425781250036],[-62.79462890625001,17.40258789062503],[-62.71372070312495,17.35327148437503],[-62.67578124999997,17.290917968750023],[-62.640527343749966,17.262304687500063],[-62.63066406250001,17.239990234375057]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Jamaica","sov_a3":"JAM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Jamaica","adm0_a3":"JAM","geou_dif":0,"geounit":"Jamaica","gu_a3":"JAM","su_dif":0,"subunit":"Jamaica","su_a3":"JAM","brk_diff":0,"name":"Jamaica","name_long":"Jamaica","brk_a3":"JAM","brk_name":"Jamaica","brk_group":null,"abbrev":"Jam.","postal":"J","formal_en":"Jamaica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Jamaica","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":4,"mapcolor13":10,"pop_est":2825928,"gdp_md_est":20910,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"JM","iso_a3":"JAM","iso_n3":"388","un_a3":"388","wb_a2":"JM","wb_a3":"JAM","woe_id":-99,"adm0_a3_is":"JAM","adm0_a3_us":"JAM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"JAM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-77.261474609375,18.45742187499999],[-77.13955078125,18.421484374999988],[-77.01376953124999,18.40292968749999],[-76.959375,18.40185546875],[-76.908203125,18.390429687500003],[-76.79326171874999,18.30429687499999],[-76.70073242187497,18.25717773437499],[-76.34985351562499,18.15185546875],[-76.23276367187498,17.970312499999988],[-76.21079101562499,17.913525390624997],[-76.30146484375,17.879833984374997],[-76.41552734375,17.868212890625],[-76.52460937499998,17.8662109375],[-76.625390625,17.90097656249999],[-76.669384765625,17.927636718749994],[-76.77431640625,17.940429687499996],[-76.748291015625,17.964892578125003],[-76.79482421875,17.976318359375],[-76.85322265625,17.97373046874999],[-76.896240234375,17.904101562500003],[-76.94414062499999,17.84877929687499],[-77.03593749999999,17.85410156249999],[-77.0712890625,17.90126953124999],[-77.11948242187499,17.880078125],[-77.1583984375,17.845068359374988],[-77.20498046875,17.71494140624999],[-77.27988281249999,17.779541015625],[-77.36142578124999,17.833691406249997],[-77.4638671875,17.85605468749999],[-77.67075195312499,17.85971679687499],[-77.76816406249999,17.877392578124997],[-77.84941406249999,17.9875],[-77.881298828125,18.01904296875],[-77.96298828124999,18.047558593749997],[-78.04448242187497,18.173828125],[-78.0736328125,18.191162109375],[-78.294091796875,18.218066406250003],[-78.339501953125,18.28720703124999],[-78.32597656249999,18.349755859374994],[-78.25244140624999,18.42626953125],[-78.21669921875,18.448095703124988],[-78.09453124999997,18.44482421875],[-77.978173828125,18.467822265625003],[-77.92685546874998,18.500683593749997],[-77.8734375,18.522216796875],[-77.451611328125,18.467041015625],[-77.354248046875,18.466455078124994],[-77.261474609375,18.45742187499999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Saint Lucia","sov_a3":"LCA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saint Lucia","adm0_a3":"LCA","geou_dif":0,"geounit":"Saint Lucia","gu_a3":"LCA","su_dif":0,"subunit":"Saint Lucia","su_a3":"LCA","brk_diff":0,"name":"Saint Lucia","name_long":"Saint Lucia","brk_a3":"LCA","brk_name":"Saint Lucia","brk_group":null,"abbrev":"S.L.","postal":"LC","formal_en":"Saint Lucia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"St. Lucia","name_alt":null,"mapcolor7":3,"mapcolor8":4,"mapcolor9":3,"mapcolor13":4,"pop_est":160267,"gdp_md_est":1778,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LC","iso_a3":"LCA","iso_n3":"662","un_a3":"662","wb_a2":"LC","wb_a3":"LCA","woe_id":-99,"adm0_a3_is":"LCA","adm0_a3_us":"LCA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":4,"tiny":4,"homepart":1,"filename":"LCA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-60.89521484375,13.821972656249995],[-60.95141601562499,13.717578125],[-61.060644531249984,13.783105468749993],[-61.07314453124999,13.865576171874991],[-61.06357421874999,13.915576171875003],[-60.99667968749999,14.0109375],[-60.944580078125,14.072851562499991],[-60.908105468749994,14.09335937499999],[-60.88676757812499,14.011132812499994],[-60.89521484375,13.821972656249995]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Saint Martin","adm0_a3":"MAF","geou_dif":0,"geounit":"Saint Martin","gu_a3":"MAF","su_dif":0,"subunit":"Saint Martin","su_a3":"MAF","brk_diff":0,"name":"St-Martin","name_long":"Saint-Martin","brk_a3":"MAF","brk_name":"Saint-Martin","brk_group":null,"abbrev":"St. M.","postal":"MF","formal_en":"Saint-Martin (French part)","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"St. Martin (French part)","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":36661,"gdp_md_est":449,"pop_year":2008,"lastcensus":-99,"gdp_year":1999,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":0,"fips_10":null,"iso_a2":"MF","iso_a3":"MAF","iso_n3":"663","un_a3":"663","wb_a2":"MF","wb_a3":"MAF","woe_id":-99,"adm0_a3_is":"MAF","adm0_a3_us":"MAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":9,"long_len":12,"abbrev_len":6,"tiny":4,"homepart":-99,"filename":"MAF.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-63.01118164062499,18.06894531249999],[-63.12304687499999,18.06894531249999],[-63.114990234375,18.090722656249994],[-63.063085937499984,18.11533203124999],[-63.024804687499994,18.1130859375],[-63.009423828124994,18.104296875],[-63.01118164062499,18.06894531249999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Country","admin":"Greenland","adm0_a3":"GRL","geou_dif":0,"geounit":"Greenland","gu_a3":"GRL","su_dif":0,"subunit":"Greenland","su_a3":"GRL","brk_diff":0,"name":"Greenland","name_long":"Greenland","brk_a3":"GRL","brk_name":"Greenland","brk_group":null,"abbrev":"Grlnd.","postal":"GL","formal_en":"Greenland","formal_fr":null,"note_adm0":"Den.","note_brk":null,"name_sort":"Greenland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":57600,"gdp_md_est":1100,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"GL","iso_a3":"GRL","iso_n3":"304","un_a3":"304","wb_a2":"GL","wb_a3":"GRL","woe_id":-99,"adm0_a3_is":"GRL","adm0_a3_us":"GRL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":6,"tiny":-99,"homepart":-99,"filename":"GRL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-46.266699218750006,60.78139648437499],[-46.381542968749955,60.66030273437503],[-46.49633789062497,60.686669921874966],[-46.553125,60.74077148437499],[-46.666210937499955,60.765917968750045],[-46.7880859375,60.75839843750003],[-46.78999023437495,60.779833984375045],[-46.39389648437498,60.908789062500006],[-46.205224609374994,60.94350585937499],[-46.21860351562498,60.88916015625003],[-46.254492187500006,60.84155273437499],[-46.266699218750006,60.78139648437499]]],[[[-37.03125,65.53198242187497],[-37.18681640624999,65.53134765625003],[-37.23842773437494,65.60986328125003],[-37.22290039062497,65.69545898437497],[-37.047509765624966,65.722265625],[-36.95307617187498,65.663330078125],[-36.98691406249995,65.57558593749997],[-37.03125,65.53198242187497]]],[[[-51.01367187499994,69.55249023437497],[-51.17041015625,69.51713867187507],[-51.20205078124996,69.525],[-51.23398437499998,69.55185546875003],[-51.314892578124955,69.67407226562497],[-51.33886718749994,69.73203125000006],[-51.31894531249998,69.80405273437498],[-51.35029296874995,69.85478515625002],[-51.20888671875002,69.91391601562496],[-51.094580078125006,69.92416992187503],[-50.94023437500001,69.90869140624997],[-50.67900390624999,69.84853515625],[-50.69790039062502,69.82905273437501],[-50.75439453124997,69.79765625000002],[-50.91171874999998,69.756689453125],[-50.96723632812501,69.66425781250001],[-50.977880859375034,69.61782226562497],[-50.970410156249926,69.58300781249997],[-51.01367187499994,69.55249023437497]]],[[[-52.73115234375001,69.94472656250005],[-52.39824218749993,69.863427734375],[-52.0453125,69.8072265625],[-52.01079101562496,69.78154296875002],[-51.98339843749997,69.74267578125],[-51.97705078125003,69.72241210937506],[-51.98510742187497,69.70361328125003],[-52.007470703124994,69.68627929687496],[-51.981689453125,69.66396484375005],[-51.90776367187493,69.63666992187498],[-51.90019531249998,69.60478515625007],[-51.98842773437494,69.55],[-52.11259765625002,69.48911132812503],[-52.77045898437501,69.36391601562502],[-53.003125,69.34262695312503],[-53.57841796874996,69.256640625],[-53.75434570312498,69.26015625000002],[-53.79316406250001,69.26420898437505],[-53.90205078124998,69.30200195312503],[-54.05117187499999,69.337158203125],[-54.12104492187501,69.36440429687502],[-54.18271484374994,69.40351562500001],[-54.15815429687501,69.42778320312507],[-54.04736328124999,69.43730468750005],[-53.889599609375004,69.43666992187502],[-53.65830078124997,69.46513671875005],[-53.722265625000034,69.49072265625],[-53.78305664062498,69.50629882812498],[-53.825,69.54033203124999],[-53.921484375000034,69.53369140624997],[-53.99375,69.55317382812504],[-54.13320312499999,69.56542968750003],[-54.49697265624993,69.57719726562505],[-54.73413085937503,69.61054687499998],[-54.804101562499994,69.63051757812495],[-54.86577148437493,69.6650390625],[-54.91914062499998,69.71362304687503],[-54.841259765625004,69.90190429687502],[-54.78789062499996,69.94985351562502],[-54.66459960937498,69.96567382812502],[-54.36308593750002,69.92382812500006],[-54.322607421875034,69.94189453125],[-54.652441406250006,70.01118164062497],[-54.77363281249998,70.05253906250006],[-54.809326171874964,70.08510742187505],[-54.83076171875001,70.13295898437502],[-54.83046875000002,70.16108398437498],[-54.815576171875016,70.18940429687498],[-54.78623046874998,70.21777343749997],[-54.705957031249966,70.25615234374999],[-54.37163085937499,70.31728515625],[-54.007226562499994,70.29643554687502],[-53.37514648437502,70.22128906249998],[-53.29672851562503,70.20537109375002],[-53.10292968749996,70.14086914062503],[-52.73115234375001,69.94472656250005]]],[[[-51.67514648437498,70.855224609375],[-51.80869140625,70.85253906249997],[-52.11938476562497,70.87065429687502],[-52.14418945312496,70.882275390625],[-52.14804687499995,70.90439453124998],[-52.10673828124999,70.96801757812496],[-51.96982421874998,70.97646484375],[-51.80693359375001,70.94165039062503],[-51.63134765625003,70.89213867187505],[-51.60693359375002,70.86884765625001],[-51.67514648437498,70.855224609375]]],[[[-25.43232421875001,70.92133789062495],[-25.397216796874943,70.86245117187505],[-25.393652343749945,70.83466796874998],[-25.401367187499996,70.811279296875],[-25.420800781249966,70.794580078125],[-25.46777343749994,70.77968749999997],[-25.380126953124943,70.740576171875],[-25.351660156250006,70.71430664062498],[-25.34633789062499,70.69331054687495],[-25.402246093749994,70.65268554687502],[-25.80058593749999,70.59892578125002],[-25.911328124999983,70.57304687500007],[-26.049707031250023,70.509130859375],[-26.217871093749977,70.45405273437498],[-26.273876953124955,70.45434570312503],[-26.339160156250017,70.51142578125004],[-26.604687499999923,70.55336914062497],[-27.104785156250017,70.53149414062501],[-27.690039062499977,70.47866210937502],[-27.89799804687496,70.45400390624997],[-28.003027343749977,70.46713867187498],[-28.03525390624995,70.48681640625],[-28.03681640625001,70.51435546875001],[-27.96752929687503,70.59482421875006],[-27.939550781250006,70.61528320312505],[-27.805273437500006,70.64204101562498],[-27.714208984375006,70.71279296875002],[-27.743994140625034,70.78974609374998],[-27.70893554687501,70.897119140625],[-27.61723632812496,70.91376953125001],[-27.3875,70.87563476562497],[-27.238867187499977,70.867578125],[-26.975585937499996,70.8626953125],[-26.62177734374995,70.87563476562497],[-26.337451171874932,70.91923828125007],[-25.81889648437499,71.04365234375],[-25.726806640624943,71.04204101562505],[-25.660839843749926,70.99794921875001],[-25.6123046875,70.97631835937497],[-25.458251953124943,70.94252929687502],[-25.43232421875001,70.92133789062495]]],[[[-53.53520507812493,71.04082031250005],[-53.628808593749994,71.03427734375006],[-53.897558593750034,71.08515625000004],[-53.94116210937494,71.104296875],[-53.9578125,71.12773437499999],[-53.94746093749998,71.15551757812496],[-53.86186523437496,71.20722656250004],[-53.70097656249996,71.28300781250002],[-53.58447265625003,71.29707031249994],[-53.512353515624994,71.24960937500006],[-53.44140625,71.18583984375002],[-53.43212890625,71.15341796875],[-53.436914062499994,71.11523437500003],[-53.4554687499999,71.08291015625002],[-53.48779296874997,71.05629882812502],[-53.53520507812493,71.04082031250005]]],[[[-55.01689453124999,72.79111328125003],[-55.158203125,72.723291015625],[-55.273583984374966,72.68432617187503],[-55.52363281249992,72.56840820312505],[-55.566601562499976,72.56435546875002],[-55.63413085937498,72.57944335937498],[-55.6865234375,72.60991210937507],[-55.78100585937497,72.61723632812505],[-55.81391601562501,72.63647460937497],[-55.82714843749994,72.65214843750005],[-55.869042968749966,72.66210937500006],[-55.93569335937494,72.668359375],[-56.04267578124998,72.65644531249995],[-56.140869140625,72.66845703125],[-56.214794921874955,72.71918945312495],[-56.07807617187501,72.75322265625005],[-55.99355468750002,72.78227539062502],[-55.66645507812498,72.79370117187503],[-55.57421875000002,72.78037109374998],[-55.51625976562493,72.78071289062495],[-55.42792968749998,72.78862304687507],[-55.23466796874996,72.82480468749998],[-55.20581054687503,72.84165039062503],[-55.03300781249999,72.82050781249998],[-55.01689453124999,72.79111328125003]]],[[[-18.000537109374932,75.40732421875003],[-17.921191406249932,75.30151367187497],[-17.885888671874937,75.204443359375],[-17.76240234375001,75.14277343749995],[-17.49785156249993,75.15151367187497],[-17.391992187499934,75.03691406250007],[-17.586035156249945,74.99277343750003],[-18.35332031249996,75.01044921875001],[-18.670800781249962,75.00166015624997],[-18.891308593749955,75.07216796874997],[-18.882470703124937,75.19565429687498],[-18.856054687499977,75.31914062500002],[-18.63554687499999,75.38964843749997],[-18.450341796874994,75.32797851562503],[-18.229882812499937,75.37207031250004],[-18.000537109374932,75.40732421875003]]],[[[-18.582617187499945,76.042333984375],[-18.69726562499994,76.01586914062503],[-19.085351562499966,76.43037109375001],[-19.085351562499966,76.58027343749998],[-19.05888671874999,76.694970703125],[-18.882470703124937,76.70380859375001],[-18.732617187499955,76.64204101562494],[-18.662011718749966,76.40390625000003],[-18.582617187499945,76.042333984375]]],[[[-71.667333984375,77.32529296874998],[-72.02353515625,77.31645507812505],[-72.3744140625,77.35541992187498],[-72.49492187499993,77.38554687499999],[-72.48955078124997,77.43164062499997],[-72.43642578125002,77.44755859375002],[-72.24677734375001,77.463525390625],[-72.0890625,77.46708984374999],[-71.98276367187495,77.45996093749997],[-71.73291015624994,77.43164062499997],[-71.5521484375,77.40327148437495],[-71.43344726562495,77.394384765625],[-71.46708984374996,77.353662109375],[-71.667333984375,77.32529296874998]]],[[[-17.953710937499977,77.642333984375],[-18.14799804687496,77.642333984375],[-18.22001953124999,77.66835937499997],[-18.174023437499926,77.71435546875],[-17.903710937500023,77.86259765625002],[-17.81357421874995,77.87460937499996],[-17.681445312499932,77.85859375],[-17.641357421874943,77.78247070312503],[-17.72949218749997,77.70639648437498],[-17.953710937499977,77.642333984375]]],[[[-18.99716796874995,77.97377929687502],[-19.129492187499977,77.93852539062502],[-19.217626953125006,78.0443359375],[-19.297021484375023,78.18544921874997],[-19.31469726562497,78.34418945312498],[-19.111816406249943,78.423583984375],[-19.005957031249945,78.44121093750005],[-18.935400390624977,78.423583984375],[-18.953027343749994,78.35297851562501],[-18.953027343749994,78.21191406250003],[-18.882470703124937,78.114892578125],[-18.99716796874995,77.97377929687502]]],[[[-17.6125,79.82587890624995],[-18.035839843749926,79.71123046875005],[-18.662011718749966,79.72001953125005],[-19.032421874999923,79.77294921875],[-19.13828125,79.85234375000002],[-18.99716796874995,79.94047851562502],[-18.54736328124997,80.01108398437503],[-17.98291015625,80.05517578125001],[-17.471386718749955,80.02871093749995],[-17.400830078124983,79.94047851562502],[-17.6125,79.82587890624995]]],[[[-18.664746093749983,81.84648437500002],[-18.767675781250006,81.81430664062503],[-19.031445312499983,81.82719726562497],[-19.36928710937499,81.91728515625005],[-19.59448242187494,81.99125976562502],[-19.610546874999926,82.078125],[-19.494726562499977,82.11669921875],[-19.31455078124995,82.12319335937498],[-19.06689453125003,82.049169921875],[-18.812695312499926,81.94946289062503],[-18.664746093749983,81.84648437500002]]],[[[-44.86455078124999,82.08364257812502],[-45.06743164062501,82.06601562499996],[-45.49077148437493,82.17182617187495],[-46.161035156249966,82.27768554687503],[-46.75190429687501,82.34819335937502],[-47.307519531249966,82.53339843749998],[-47.351220703124966,82.59921874999998],[-47.27226562499996,82.65693359375001],[-46.787207031250006,82.66572265625004],[-46.39916992187499,82.692138671875],[-45.41137695312502,82.57753906250002],[-44.91748046875003,82.48051757812505],[-44.749902343749994,82.40112304687503],[-44.77636718749997,82.24238281250004],[-44.86455078124999,82.08364257812502]]],[[[-29.952880859375,83.56484374999995],[-28.99199218750002,83.50478515625],[-28.483789062499937,83.43491210937498],[-28.37705078124995,83.43720703125001],[-27.688378906249994,83.41040039062506],[-27.034423828124996,83.37690429687498],[-25.947412109374966,83.28964843750002],[-25.79506835937499,83.26098632812497],[-25.91245117187495,83.2375],[-26.182714843749917,83.22138671874998],[-27.571875,83.192626953125],[-30.091992187500008,83.15742187500001],[-31.533984374999985,83.08891601562502],[-31.99267578125,83.0853515625],[-32.03271484374997,82.98344726562502],[-31.836767578125034,82.97788085937503],[-31.51557617187495,82.99165039062501],[-30.38603515624996,83.09370117187501],[-29.963574218749955,83.11049804687497],[-29.175,83.10200195312501],[-28.151464843750006,83.06372070312503],[-27.738525390625,83.07719726562502],[-27.002050781249974,83.06718750000002],[-26.140820312499923,83.09643554687503],[-25.12338867187495,83.15961914062501],[-24.845166015624926,83.01855468749997],[-24.47031249999995,82.87739257812498],[-24.17363281249999,82.89301757812498],[-23.9195312499999,82.88510742187506],[-23.833544921874985,82.83876953125002],[-23.694628906249932,82.81914062500002],[-23.406933593749926,82.82968750000003],[-22.52490234375,82.78916015625003],[-21.919677734375,82.71640625000006],[-21.691796875000023,82.68251953125],[-21.582519531249943,82.6341796875],[-21.520654296874966,82.59541015625],[-21.615771484374985,82.54770507812498],[-21.993945312499932,82.46279296875],[-22.472558593749994,82.38471679687498],[-23.118066406249966,82.32470703125003],[-23.862207031249966,82.28706054687498],[-29.579394531249957,82.16118164062502],[-29.772753906249985,82.13125],[-29.887402343749983,82.05483398437502],[-29.810986328124955,81.95546875000002],[-29.543847656249994,81.93994140624997],[-28.91943359374997,81.99589843749999],[-27.839501953124962,82.04887695312505],[-27.045947265624932,82.04633789062497],[-25.148828124999966,82.001123046875],[-24.589160156249985,81.88281250000006],[-24.293066406249977,81.70097656250005],[-23.63652343749999,81.74184570312502],[-23.49614257812499,81.77304687499998],[-23.392968749999937,81.82719726562497],[-23.31054687500003,81.88530273437502],[-23.24877929687494,81.94726562500001],[-23.179833984374937,81.989453125],[-23.103710937499983,82.01181640625003],[-22.940087890624934,82.03051757812503],[-22.563378906249937,82.05302734374999],[-21.575537109374945,82.07495117187503],[-21.337988281249977,82.068701171875],[-21.167382812499937,81.98383789062504],[-21.130322265624926,81.93422851562505],[-21.11796874999999,81.86962890625003],[-21.123437499999966,81.78994140624997],[-21.146582031249945,81.695166015625],[-21.230517578125017,81.60136718749999],[-21.50390625000003,81.4375],[-21.723632812500025,81.34824218750002],[-21.960742187500017,81.28393554687499],[-22.41528320312497,81.13710937500002],[-22.57275390625,81.09790039062503],[-23.072460937500008,80.92670898437495],[-23.19638671874995,80.84736328124995],[-23.20366210937499,80.78925781250001],[-23.11772460937499,80.77817382812498],[-22.972851562499955,80.83281250000002],[-22.918945312499996,80.87182617187497],[-22.82568359375,80.91264648437502],[-22.089404296874932,81.02021484375001],[-21.931347656249955,81.05019531249997],[-21.44975585937499,81.17817382812504],[-21.14243164062492,81.22617187500003],[-20.88974609374995,81.27636718750006],[-20.755859374999943,81.31201171875003],[-20.015722656249977,81.56435546875002],[-19.62993164062499,81.63989257812503],[-19.224755859374937,81.64003906249997],[-19.152978515624962,81.51220703125006],[-18.667382812499994,81.492431640625],[-18.45654296875003,81.49794921875],[-18.117871093749955,81.46684570312505],[-17.969384765624994,81.44116210937506],[-17.71665039062492,81.42817382812498],[-17.456054687499943,81.397705078125],[-17.226220703125023,81.430419921875],[-17.15903320312492,81.45092773437499],[-16.93706054687499,81.54389648437501],[-16.63710937499999,81.626220703125],[-16.358984375,81.72905273437499],[-16.266796874999955,81.75395507812497],[-16.12070312499995,81.776611328125],[-15.968896484375021,81.78549804687503],[-15.555517578125004,81.83359374999998],[-15.450634765624955,81.83696289062505],[-15.227490234374956,81.82177734375006],[-14.241992187500015,81.81386718750005],[-13.704492187500023,81.78906250000006],[-12.956005859374955,81.72021484374997],[-12.434423828125004,81.68251953125002],[-12.192871093749998,81.64912109374995],[-11.841113281250017,81.57753906250002],[-11.557470703124949,81.50263671874995],[-11.425537109374972,81.480615234375],[-11.430664062499972,81.45683593750003],[-11.52880859374997,81.42402343750001],[-12.231347656250023,81.309228515625],[-12.46123046874996,81.23251953124999],[-13.12622070312497,81.08779296875],[-13.451171875,81.03808593749999],[-13.80429687499992,81.01860351562502],[-14.197363281249975,81.01391601562506],[-14.452343749999955,80.99311523437498],[-14.490136718749936,80.97329101562501],[-14.308496093749966,80.91323242187497],[-14.228564453124932,80.87045898437503],[-14.240185546874983,80.832421875],[-14.43125,80.77607421875001],[-14.503564453124993,80.76328125000006],[-15.194238281249937,80.72143554687496],[-15.542675781249953,80.65039062499997],[-15.997509765624983,80.64169921874998],[-16.31894531249992,80.64980468750002],[-16.76059570312492,80.573388671875],[-16.587792968749994,80.51123046875004],[-16.42944335937497,80.48422851562506],[-15.93725585937497,80.42763671874995],[-15.932617187499998,80.3951171875],[-16.16777343749993,80.32939453125003],[-16.48876953124997,80.25195312499997],[-16.868408203124943,80.19824218750006],[-17.011132812499994,80.190185546875],[-17.19116210937497,80.20366210937497],[-17.35722656249996,80.20078125000003],[-17.722851562499955,80.17602539062496],[-18.070947265624994,80.17207031249995],[-18.692578124999983,80.20708007812499],[-19.029003906249955,80.24760742187499],[-19.206005859374955,80.26162109375],[-19.429199218749943,80.25771484375],[-19.515039062500023,80.24140624999995],[-19.86679687499992,80.14472656249998],[-20.039501953124926,80.07871093750003],[-20.150146484375,80.01123046874997],[-20.197412109374937,79.937646484375],[-20.181347656249955,79.85795898437502],[-20.138476562499932,79.80336914062498],[-20.068847656249943,79.773779296875],[-19.985400390625017,79.755859375],[-19.83930664062501,79.746484375],[-19.51787109374996,79.75537109374996],[-19.391503906249994,79.750341796875],[-19.35302734374997,79.73417968750002],[-19.283593749999937,79.68315429687502],[-19.295996093749977,79.63500976562497],[-19.354199218749926,79.56733398437495],[-19.399316406249966,79.48837890625003],[-19.43120117187499,79.39814453125004],[-19.414013671874955,79.34882812500001],[-19.283984374999932,79.33803710937505],[-19.222949218749932,79.34160156250005],[-19.152197265625006,79.32539062499994],[-19.071777343749943,79.289453125],[-19.011328124999977,79.25146484375],[-18.970800781249977,79.21137695312497],[-18.99199218749996,79.17836914062502],[-19.074951171874968,79.15234375000006],[-19.262207031250025,79.12299804687501],[-19.723046874999937,79.06503906250003],[-19.76982421874996,79.04736328124997],[-19.806054687499966,79.012109375],[-19.831591796874932,78.95913085937502],[-19.88720703125,78.91093749999999],[-19.97290039062494,78.86762695312495],[-20.05048828124995,78.84179687500003],[-20.199902343749926,78.83032226562499],[-20.395703124999926,78.82880859374995],[-20.61557617187495,78.80390625000004],[-21.133740234374926,78.65864257812501],[-21.141455078124974,78.64252929687501],[-20.947460937499983,78.59589843750001],[-20.955664062499977,78.55502929687503],[-21.194775390624926,78.37983398437495],[-21.260205078124926,78.29301757812505],[-21.31201171875,78.17397460937502],[-21.39726562499996,78.073583984375],[-21.515966796874977,77.99184570312497],[-21.63266601562495,77.8974609375],[-21.74755859375,77.790625],[-21.729589843749977,77.70854492187499],[-21.578906249999932,77.65136718749997],[-21.379687499999932,77.69755859375005],[-21.13188476562499,77.84721679687497],[-20.862597656249932,77.91186523437503],[-20.571826171874932,77.89155273437495],[-20.318603515624943,77.86196289062497],[-19.995117187499943,77.80341796874995],[-19.724316406249926,77.76694335937498],[-19.49042968749998,77.71889648437497],[-19.393994140624955,77.67836914062497],[-19.296875,77.62128906249998],[-19.29609375000001,77.58525390624999],[-19.46752929687503,77.56582031250005],[-19.52412109375001,77.57197265624995],[-19.95322265624995,77.666357421875],[-20.162060546874926,77.68984375],[-20.439208984374996,77.66162109375003],[-20.680810546875023,77.61899414062503],[-20.463769531249937,77.44731445312503],[-20.23193359374997,77.36840820312497],[-19.808642578124957,77.332373046875],[-19.587597656249955,77.29443359375],[-19.426416015624994,77.24599609375],[-19.30029296874997,77.22236328124995],[-19.131005859374937,77.23276367187503],[-18.903417968749945,77.28046874999998],[-18.585888671874983,77.28305664062498],[-18.442626953124943,77.259375],[-18.339013671874966,77.21528320312504],[-18.292382812499962,77.132861328125],[-18.302734374999943,77.01210937500002],[-18.337255859374977,76.92119140624999],[-18.39604492187496,76.86005859374995],[-18.51030273437496,76.77817382812496],[-18.605761718749957,76.76328125000006],[-18.740283203125017,76.767724609375],[-18.865332031250002,76.78452148437503],[-18.98100585937493,76.81376953125003],[-19.15634765624995,76.83657226562495],[-19.5087890625,76.861083984375],[-19.864941406249983,76.91440429687503],[-20.064355468750023,76.92758789062503],[-20.48671875,76.92080078125],[-20.942089843749955,76.88701171875003],[-20.959912109374955,76.84267578124997],[-21.614697265624923,76.68789062499995],[-21.749023437499943,76.68999023437505],[-21.930810546874934,76.74316406250001],[-22.18525390625001,76.79409179687502],[-22.334326171875006,76.79370117187503],[-22.554541015624917,76.72924804687504],[-22.60932617187498,76.70429687500004],[-22.606640624999955,76.68076171875003],[-22.44443359374995,76.62504882812505],[-22.378613281249955,76.61220703125],[-22.29487304687495,76.60146484375005],[-22.003710937499957,76.58808593749998],[-21.877343749999966,76.57348632812503],[-21.758105468749932,76.40053710937497],[-21.56909179687497,76.29370117187506],[-21.488232421874926,76.271875],[-21.41684570312495,76.26401367187502],[-21.185449218749966,76.26796875000005],[-20.88740234375001,76.30400390625002],[-20.78330078124995,76.27514648437499],[-20.563818359374977,76.23984375],[-20.43540039062495,76.23105468749998],[-20.27929687500003,76.23247070312502],[-20.10361328124992,76.21909179687503],[-19.86289062499992,76.12065429687505],[-19.957714843749955,75.9966796875],[-19.80688476562497,75.89736328125002],[-19.56601562499992,75.79497070312505],[-19.508984374999926,75.75751953124995],[-19.485693359374977,75.689599609375],[-19.48027343749996,75.644775390625],[-19.462158203124996,75.603857421875],[-19.43144531249996,75.56689453125003],[-19.399511718749917,75.49443359375],[-19.366455078124943,75.38642578124995],[-19.37529296874996,75.298193359375],[-19.425976562499983,75.22983398437503],[-19.52636718750003,75.18022460937505],[-19.67626953125,75.14936523437498],[-19.798486328124937,75.15747070312503],[-19.89316406249995,75.20454101562501],[-20.026562499999955,75.25468750000002],[-20.198681640624926,75.30795898437503],[-20.484960937500006,75.31425781249999],[-20.90585937499995,75.15693359375001],[-21.093847656249977,75.14907226562498],[-21.246533203124983,75.1333984375],[-21.409423828124943,75.06479492187498],[-21.649316406249966,75.02343749999996],[-21.861035156249955,75.03984375000005],[-22.232861328124926,75.11972656249998],[-22.09775390624995,75.06635742187501],[-21.904345703124957,75.00390624999999],[-21.783935546874943,74.97148437500005],[-21.69511718749999,74.96445312500003],[-21.59765625000003,74.97197265625007],[-21.457324218749932,74.99755859375003],[-21.140576171874983,75.06855468750004],[-21.056689453124932,75.07939453125],[-20.985791015624983,75.07436523437497],[-20.92778320312496,75.05341796874995],[-20.86108398437497,74.99257812499998],[-20.78569335937499,74.89174804687497],[-20.7953125,74.80595703124999],[-20.889990234375006,74.73520507812498],[-20.970996093749985,74.68984374999997],[-21.038281249999923,74.66987304687498],[-21.038476562499966,74.65415039062498],[-20.86157226562497,74.63593750000001],[-20.611132812499932,74.72822265624998],[-20.53173828125003,74.84291992187497],[-20.41708984374995,74.9751953125],[-20.214257812499994,75.01923828125001],[-19.98491210937499,74.9751953125],[-19.799707031250023,74.851708984375],[-19.537792968749955,74.62456054687499],[-19.427343749999917,74.60092773437498],[-19.28701171875002,74.54638671875006],[-19.22509765625,74.4794921875],[-19.241650390624926,74.40019531250002],[-19.271582031249977,74.342626953125],[-19.31494140625003,74.306787109375],[-19.36914062499997,74.28403320312498],[-19.466748046874955,74.26948242187495],[-19.646240234375,74.257958984375],[-20.047558593749983,74.28227539062507],[-20.256445312499977,74.2828125],[-20.23056640624995,74.20463867187507],[-20.653125,74.13735351562502],[-21.129443359374932,74.11088867187505],[-21.58056640625,74.16347656250002],[-21.954931640624977,74.24428710937497],[-21.83203124999997,74.35727539062498],[-21.761962890625,74.48276367187505],[-21.942919921874932,74.56572265624999],[-21.982617187499926,74.56748046875],[-21.920166015625,74.43920898437497],[-21.972705078124957,74.3900390625],[-22.17719726562495,74.33017578125006],[-22.32158203124999,74.30253906250002],[-22.334326171875006,74.28637695312503],[-22.26352539062495,74.27241210937501],[-22.21733398437496,74.24550781250005],[-22.195654296874974,74.20571289062502],[-22.220019531249985,74.16552734375],[-22.29057617187496,74.125],[-22.328955078124977,74.090966796875],[-22.335253906250017,74.06342773437498],[-22.27055664062496,74.02988281249996],[-22.134814453124932,73.99047851562503],[-21.98769531249999,73.97099609375007],[-21.29829101562495,73.962451171875],[-21.022216796874943,73.94125976562506],[-20.36728515624992,73.84824218749999],[-20.337988281249977,73.81967773437498],[-20.448925781249926,73.65302734374995],[-20.509667968749966,73.49287109375001],[-20.63671875,73.46357421874998],[-21.325878906249983,73.456640625],[-21.547998046874934,73.43168945312507],[-21.87285156249996,73.35810546874998],[-22.185058593749968,73.26987304687506],[-22.346875,73.26923828125001],[-22.9875,73.34624023437506],[-23.23320312499999,73.39770507812497],[-23.76059570312495,73.54311523437502],[-24.157714843749943,73.76445312499999],[-24.33989257812493,73.67241210937499],[-24.451269531249977,73.628515625],[-24.566308593749966,73.60576171874997],[-24.67724609375,73.602197265625],[-24.784179687499943,73.617919921875],[-24.905468749999955,73.65278320312498],[-25.10883789062501,73.73369140625005],[-25.351464843749962,73.813623046875],[-25.521289062500017,73.85161132812499],[-25.52773437499999,73.84082031250003],[-25.427441406249983,73.79379882812503],[-25.280517578124968,73.739599609375],[-24.90888671874995,73.58017578125003],[-24.7783203125,73.539892578125],[-24.79125976562497,73.51127929687502],[-25.02587890624997,73.48579101562498],[-25.310742187499926,73.431005859375],[-25.450097656249994,73.39067382812505],[-25.665429687499966,73.292822265625],[-25.740185546874926,73.27763671875005],[-26.062304687500017,73.25302734375],[-26.168554687499977,73.25903320312497],[-26.406738281249996,73.31293945312503],[-26.765478515625002,73.34819335937502],[-26.976708984374966,73.37954101562502],[-27.270410156250023,73.43627929687503],[-27.169384765624955,73.374169921875],[-26.603613281249977,73.27949218749995],[-26.541845703125006,73.24897460937494],[-26.657617187499966,73.19213867187503],[-26.72861328124995,73.17138671874997],[-26.863330078124957,73.16699218750006],[-27.061865234374977,73.17890624999998],[-27.26489257812494,73.17646484375004],[-27.472363281249955,73.15981445312502],[-27.561621093750006,73.13847656250002],[-27.53256835937495,73.11254882812497],[-27.483154296874996,73.08891601562505],[-27.413330078125,73.06762695312497],[-27.348046875000023,73.06782226562501],[-27.18989257812495,73.13242187500003],[-27.070019531249955,73.13701171874999],[-26.753222656249985,73.12109375000003],[-26.432861328125,73.17148437499998],[-26.20200195312495,73.19321289062498],[-26.028759765624926,73.19877929687503],[-25.399023437499977,73.27578125000002],[-25.26831054687497,73.36196289062498],[-25.057031250000023,73.396484375],[-24.587207031249957,73.42294921874998],[-24.132666015625006,73.409375],[-23.89897460937499,73.398291015625],[-23.709619140624966,73.31679687500002],[-23.455761718749926,73.25908203124997],[-23.244091796874983,73.19326171875],[-22.996044921874983,73.17158203125001],[-22.852294921875,73.08398437500003],[-22.45019531249997,72.98608398437497],[-22.194238281249966,72.96503906250004],[-22.036328124999955,72.91845703125006],[-22.02348632812499,72.72080078124999],[-22.006738281249962,72.63544921875004],[-22.074804687499974,72.39921875000005],[-22.280224609374983,72.34477539062505],[-22.2392578125,72.22026367187499],[-22.293212890624968,72.11953125],[-22.497509765624926,72.15776367187505],[-22.70683593749996,72.22392578125005],[-23.2080078125,72.3265625],[-23.67436523437496,72.39257812500003],[-23.85556640624995,72.45244140625005],[-24.069042968750008,72.49873046874998],[-24.358593749999926,72.68730468750002],[-24.547216796874977,72.921728515625],[-24.629980468749977,73.03764648437499],[-24.788574218749943,73.04414062499998],[-24.992480468750017,73.01308593749997],[-25.170556640624962,72.98027343750002],[-25.25585937500003,72.92412109375005],[-25.86083984375,72.846875],[-26.080468749999962,72.79399414062497],[-26.205761718749926,72.79555664062497],[-26.657617187499966,72.71582031249997],[-26.47656250000003,72.67763671875002],[-26.392089843749943,72.67280273437501],[-26.20947265624997,72.69438476562505],[-26.09980468750001,72.72192382812497],[-25.68798828124994,72.79736328124996],[-25.35742187500003,72.81025390625004],[-25.2375,72.8427734375],[-24.98481445312495,72.88920898437505],[-24.81333007812492,72.90151367187497],[-24.789453124999937,72.88974609375006],[-24.771044921874932,72.86865234375003],[-24.65,72.58251953125],[-24.70068359374997,72.50634765625003],[-24.83691406249994,72.47333984374995],[-25.12802734374992,72.41918945312503],[-25.203710937499977,72.39296875000002],[-25.117871093749983,72.34697265625005],[-24.844189453125008,72.39033203125],[-24.66684570312492,72.437353515625],[-24.572363281249945,72.42021484375005],[-24.41718749999995,72.34824218750006],[-24.24228515624995,72.31132812499999],[-23.797705078124977,72.20073242187502],[-23.587109374999955,72.13979492187505],[-23.290917968750023,72.08100585937495],[-22.955761718749955,71.99941406250005],[-22.86850585937492,71.97065429687495],[-22.562158203124966,71.92827148437502],[-22.496875,71.913818359375],[-22.37021484374995,71.76982421874999],[-22.264501953124977,71.75380859375],[-21.959667968749955,71.74467773437502],[-22.013330078124966,71.688818359375],[-22.31103515624997,71.56455078125],[-22.464990234374966,71.52490234374999],[-22.503222656249932,71.50043945312498],[-22.48857421874999,71.45668945312497],[-22.479638671874937,71.38344726562497],[-22.417578125,71.24868164062505],[-22.347753906249977,71.37348632812498],[-22.29902343750001,71.43232421874998],[-22.233789062499937,71.449951171875],[-22.169580078124994,71.4525390625],[-21.96142578124997,71.50820312499997],[-21.75224609374999,71.47832031250002],[-21.697949218749926,71.33745117187502],[-21.67119140624999,71.20595703125004],[-21.689648437499926,71.0923828125],[-21.66660156249995,70.915869140625],[-21.674511718749955,70.85629882812503],[-21.625146484374934,70.80463867187497],[-21.573925781249983,70.59047851562497],[-21.522656249999926,70.52622070312503],[-21.625537109374932,70.46855468749997],[-21.943505859374966,70.44345703125002],[-22.06928710937501,70.471875],[-22.38413085937492,70.46240234375],[-22.384521484375,70.51313476562501],[-22.399853515624926,70.57128906249996],[-22.40112304687503,70.61191406249998],[-22.422119140624943,70.64868164062503],[-22.437011718749943,70.860009765625],[-22.526074218749983,70.80781250000001],[-22.531347656249977,70.764990234375],[-22.55502929687492,70.721435546875],[-22.60966796874996,70.493310546875],[-22.69067382812494,70.43730468750002],[-22.942578124999926,70.45078125000003],[-23.190625,70.44248046875],[-23.327832031249983,70.45097656250007],[-23.791796875000014,70.55517578124997],[-23.97138671875001,70.64946289062499],[-24.13037109374997,70.79106445312506],[-24.22851562499997,70.92338867187502],[-24.26572265624992,71.04633789062504],[-24.377001953124932,71.14638671875],[-24.562207031249926,71.22353515624997],[-24.781005859375,71.286083984375],[-25.033398437500008,71.33393554687501],[-25.25498046874992,71.39570312499998],[-25.44580078125,71.47124023437499],[-25.655859374999977,71.53002929687497],[-25.885156249999966,71.571923828125],[-26.21142578125,71.58994140625],[-26.68852539062496,71.583349609375],[-27.010644531250023,71.63056640625004],[-27.087207031249985,71.6265625],[-27.16230468750001,71.60219726562502],[-27.10703125000003,71.53266601562498],[-26.73720703125002,71.50078125000007],[-26.452001953125006,71.493505859375],[-26.07407226562492,71.49804687500003],[-25.842724609374955,71.48017578124995],[-25.75781249999997,71.43994140625],[-25.699414062499983,71.368310546875],[-25.667578124999974,71.26533203124994],[-25.74223632812499,71.18359375],[-26.014111328124955,71.09282226562499],[-26.15751953124996,71.05029296875003],[-26.575976562499932,70.96870117187501],[-26.717919921874994,70.95048828125005],[-27.067333984374955,70.94492187499998],[-27.335693359374996,70.95278320312497],[-27.68876953124999,70.99345703124999],[-27.888916015625,71.001708984375],[-28.303125,71.00717773437502],[-28.39843749999997,70.99291992187497],[-28.29155273437496,70.94931640624998],[-28.115869140624937,70.924609375],[-27.99218749999997,70.89521484374998],[-27.979296875000017,70.839501953125],[-28.02387695312495,70.75678710937501],[-28.069873046874985,70.69902343750005],[-28.145654296874966,70.65566406250002],[-28.41748046875003,70.57353515624997],[-28.53007812499996,70.54755859375],[-29.036816406249983,70.46152343749998],[-29.07207031249999,70.444970703125],[-28.953466796874974,70.44721679687501],[-28.633105468749985,70.47778320312503],[-28.540917968749937,70.476904296875],[-28.015039062500023,70.40224609375],[-27.596093750000023,70.406689453125],[-26.747265624999926,70.47553710937501],[-26.677490234375,70.47421875],[-26.62177734374995,70.46337890625],[-26.5654296875,70.43754882812497],[-26.508398437500034,70.396630859375],[-26.576806640625023,70.35708007812502],[-26.770654296874994,70.31889648437507],[-27.07250976562503,70.281201171875],[-27.203222656250002,70.25571289062498],[-27.328125,70.21713867187503],[-27.560839843749932,70.12446289062498],[-27.628857421874955,70.02822265625],[-27.384179687500023,69.9916015625],[-27.27421874999999,70.03793945312503],[-27.144482421874923,70.14082031250001],[-27.027734374999962,70.20122070312499],[-26.752148437499955,70.24218749999997],[-26.415673828124966,70.221337890625],[-26.155712890624926,70.24560546874997],[-25.624853515624977,70.34697265625002],[-25.529882812499977,70.35317382812501],[-24.748828124999932,70.295068359375],[-24.04101562499997,70.18120117187499],[-23.66733398437495,70.139306640625],[-23.173242187499937,70.114599609375],[-22.28447265624996,70.12583007812498],[-22.20659179687499,70.10791015624997],[-22.23544921874992,70.06757812500001],[-22.287060546874955,70.03339843749998],[-22.435107421875014,69.98574218749995],[-22.614941406249955,69.95424804687502],[-22.726220703124994,69.94536132812499],[-22.820898437499917,69.92285156250003],[-23.03364257812501,69.90083007812498],[-23.08823242187492,69.88295898437498],[-23.014550781249937,69.80483398437497],[-23.04956054687497,69.79272460937497],[-23.236962890624937,69.79145507812498],[-23.552539062499932,69.74052734375002],[-23.81162109374995,69.74418945312505],[-23.86572265624997,69.73671875000002],[-23.816552734374994,69.71782226562499],[-23.764257812499974,69.68134765625004],[-23.708984375,69.62724609375002],[-23.739404296874994,69.58862304687497],[-23.85556640624995,69.565576171875],[-23.943652343749932,69.55805664062495],[-24.247509765624955,69.59038085937507],[-24.296679687500014,69.58554687500006],[-24.25229492187495,69.56235351562503],[-24.227050781249943,69.526953125],[-24.220898437499926,69.47929687499999],[-24.295556640624966,69.439306640625],[-24.451074218749934,69.40708007812503],[-24.74057617187495,69.31840820312499],[-24.866601562499937,69.29306640624996],[-25.132519531249955,69.27211914062497],[-25.188574218750002,69.26054687500002],[-25.08046875,69.19248046874999],[-25.092431640624937,69.16518554687502],[-25.272216796874968,69.09160156250005],[-25.54404296874995,69.04570312500002],[-25.58115234374995,69.02094726562494],[-25.606347656250023,68.954443359375],[-25.626123046874962,68.92797851562503],[-25.697998046874943,68.889892578125],[-25.955859374999985,68.81728515625002],[-26.138623046874926,68.78115234375005],[-26.229248046875,68.75156250000006],[-26.3414062499999,68.70214843750001],[-26.48291015624997,68.67592773437502],[-26.653710937499962,68.6728515625],[-26.815332031250023,68.65434570312503],[-27.081152343750002,68.601806640625],[-27.266259765624962,68.58432617187499],[-27.851220703124937,68.49350585937498],[-28.12646484374997,68.47900390625003],[-28.36455078124999,68.446533203125],[-28.854345703125038,68.35981445312501],[-29.08769531249996,68.33193359375002],[-29.24951171874997,68.29877929687501],[-29.42622070312501,68.28930664062503],[-29.713574218750008,68.31083984375007],[-29.86850585937495,68.31157226562505],[-29.963769531249994,68.29853515624995],[-30.051123046875034,68.27192382812495],[-30.195507812499955,68.198974609375],[-30.318115234375004,68.193310546875],[-30.72001953124999,68.25117187499998],[-30.711865234375008,68.22495117187498],[-30.605664062499955,68.162353515625],[-30.610742187499994,68.11791992187503],[-30.849755859375023,68.07285156249998],[-30.97856445312499,68.06132812500005],[-31.168457031250032,68.079833984375],[-31.419482421875017,68.12846679687505],[-31.74199218749999,68.22998046875001],[-32.13725585937496,68.38491210937497],[-32.32744140624998,68.43730468749999],[-32.31367187500001,68.38759765625],[-32.269628906250006,68.33901367187502],[-32.195214843749966,68.29165039062495],[-32.180126953124976,68.25727539062498],[-32.22421875,68.235986328125],[-32.28237304687494,68.22524414062502],[-32.354589843750006,68.22509765625],[-32.36684570312502,68.21303710937501],[-32.248925781249966,68.13911132812498],[-32.155957031249955,68.06318359374998],[-32.16455078125,67.99111328125001],[-32.274804687499994,67.92285156249997],[-32.36953125000002,67.88276367187498],[-32.44873046874999,67.87094726562498],[-32.91801757812496,67.70068359375003],[-33.04873046875002,67.67924804687499],[-33.10815429687497,67.65820312499996],[-33.15698242187497,67.62670898437506],[-33.29360351562499,67.48574218750002],[-33.34887695312497,67.44272460937503],[-33.45849609375,67.38671875],[-33.50444335937495,67.37700195312507],[-33.51757812499997,67.35419921874995],[-33.49775390625001,67.31816406250007],[-33.527978515624966,67.25815429687499],[-33.60820312499996,67.17421874999997],[-33.88134765625,66.94228515624997],[-34.101660156250034,66.72592773437503],[-34.1982421875,66.65507812499999],[-34.268896484375006,66.62504882812499],[-34.313623046874966,66.63579101562505],[-34.42285156249999,66.63017578125007],[-34.47587890624999,66.59213867187503],[-34.52392578125,66.52333984374997],[-34.576269531250006,66.47089843750004],[-34.63281249999997,66.43476562499994],[-35.074658203124926,66.27915039062503],[-35.18857421874994,66.25029296875002],[-35.290869140625006,66.26855468750003],[-35.41171875000003,66.26152343750002],[-35.662060546874955,66.34375],[-35.70546875000002,66.37397460937501],[-35.86723632812502,66.44140624999997],[-35.86186523437499,66.40625],[-35.83471679687497,66.38686523437497],[-35.81210937499998,66.35839843750001],[-35.755517578124994,66.32353515625002],[-35.630078124999926,66.13994140625002],[-35.72929687499999,66.10224609374998],[-35.81791992187502,66.059228515625],[-36.044189453125,65.98662109375005],[-36.288720703124994,65.86484375],[-36.37919921874996,65.830810546875],[-36.39921875,65.930078125],[-36.38896484374999,65.95971679687497],[-36.52724609375002,66.00771484375],[-36.52275390624998,65.97314453124997],[-36.537011718749966,65.94086914062495],[-36.63725585937496,65.81230468750007],[-36.665185546874966,65.79008789062507],[-36.714501953124966,65.79506835937502],[-36.822167968749966,65.77133789062498],[-36.93242187499996,65.78256835937503],[-37.02587890625,65.84111328125007],[-37.06279296874996,65.87143554687503],[-37.23320312499996,65.7880859375],[-37.316015625000034,65.79023437500001],[-37.329833984375,65.72016601562504],[-37.410058593749994,65.65634765625],[-37.516064453124926,65.62871093750005],[-37.66376953125001,65.63085937500006],[-37.75419921874996,65.59306640624999],[-37.95478515624995,65.63359375000007],[-38.00126953125002,65.70961914062502],[-37.84228515624994,65.813818359375],[-37.79736328124994,65.85678710937498],[-37.826513671875034,65.90966796875],[-37.78784179687497,65.97797851562498],[-37.48447265624998,66.19462890625005],[-37.278710937499994,66.30439453124994],[-37.290673828125016,66.32392578125001],[-37.56992187499998,66.34785156250001],[-37.813916015624955,66.38549804687503],[-38.051660156249966,66.3984375],[-38.156640624999966,66.38559570312496],[-37.98916015624994,66.32265625000002],[-37.75234375000002,66.26152343750002],[-37.86889648437497,66.203125],[-37.96943359375001,66.14111328125],[-38.07343749999998,65.97255859375002],[-38.13994140625002,65.90351562499998],[-38.398144531249955,65.98286132812498],[-38.52036132812498,66.00966796875002],[-38.44267578124996,65.92167968750005],[-38.21635742187496,65.83833007812504],[-38.201855468749926,65.81088867187502],[-38.20336914062497,65.71171874999999],[-38.63671874999997,65.62436523437506],[-39.088964843750006,65.61113281250002],[-39.41337890625002,65.58627929687503],[-39.96093750000003,65.55620117187502],[-40.17353515624998,65.55615234375],[-40.19155273437502,65.52250976562499],[-39.655957031249955,65.36889648437497],[-39.57792968749996,65.340771484375],[-39.652539062499976,65.28784179687497],[-39.76318359374997,65.25493164062502],[-39.937255859375,65.14160156250003],[-40.02802734375001,65.10253906249997],[-40.253125,65.04887695312505],[-40.667578125,65.10874023437496],[-40.880566406249955,65.08198242187495],[-41.08442382812501,65.10083007812497],[-41.08867187499998,65.03535156249995],[-41.02773437500002,64.987548828125],[-40.966015624999955,64.86884765624995],[-40.82929687500001,64.878076171875],[-40.655468749999926,64.91533203125002],[-40.52109375,64.82548828125002],[-40.432714843750034,64.67319335937496],[-40.278417968750034,64.59594726562497],[-40.20986328125002,64.536279296875],[-40.18222656249998,64.47993164062495],[-40.278466796874966,64.423828125],[-40.47763671875003,64.34443359374998],[-40.69853515625002,64.329736328125],[-40.68642578125002,64.266943359375],[-40.78173828125,64.22177734375003],[-40.98457031250001,64.23500976562497],[-41.07939453124996,64.26650390625],[-41.17773437500003,64.28144531250001],[-41.581005859374926,64.29833984375],[-41.175,64.17739257812497],[-41.03056640624996,64.12104492187504],[-40.96630859375002,64.154443359375],[-40.82568359374997,64.16254882812495],[-40.61777343749998,64.13173828125],[-40.65234375,63.927734375],[-40.56127929687503,63.762353515624966],[-40.550390625000034,63.725244140625044],[-40.77153320312496,63.62617187500001],[-40.77519531249999,63.53364257812501],[-40.90683593749998,63.50786132812498],[-41.048730468750016,63.513818359375044],[-41.05615234375002,63.412255859374966],[-41.152246093749966,63.34892578125002],[-41.13520507812498,63.30927734375005],[-41.10771484374996,63.273779296875006],[-41.19545898437499,63.20922851562499],[-41.27470703124996,63.130664062500045],[-41.387890624999926,63.06186523437498],[-41.44785156249998,63.0689453125],[-41.6279296875,63.06450195312498],[-41.84448242187497,63.070263671875004],[-42.01972656249995,63.15961914062501],[-42.092382812500006,63.18935546875002],[-42.174511718749955,63.20878906249999],[-42.14296875000002,63.151318359375004],[-42.09399414062499,63.116748046875074],[-41.932275390624994,63.05224609374997],[-41.63447265624998,62.972460937500074],[-41.64360351562498,62.91586914062501],[-41.72324218749995,62.89125976562505],[-41.90898437499996,62.73710937499999],[-41.97490234374999,62.73378906250002],[-42.058251953124994,62.69399414062499],[-42.315625,62.707324218750045],[-42.42373046875002,62.72314453125],[-42.74111328125002,62.713037109374966],[-42.84907226562498,62.726660156250006],[-42.94165039062503,62.72021484375002],[-42.85527343750002,62.67670898437503],[-42.67368164062495,62.6375],[-42.46713867187498,62.59819335937501],[-42.15297851562502,62.56845703125001],[-42.16435546874993,62.51220703124999],[-42.2431640625,62.46606445312503],[-42.197949218749955,62.397119140624994],[-42.23310546875001,62.34770507812507],[-42.24814453124995,62.28906250000002],[-42.321484374999976,62.15273437500005],[-42.23613281249999,62.0591796875],[-42.14306640624994,62.013525390625006],[-42.15385742187502,61.95341796875001],[-42.110205078125,61.85722656250007],[-42.24970703125001,61.77138671875],[-42.365429687499955,61.774609375],[-42.530419921874994,61.755322265624976],[-42.58530273437498,61.717480468750004],[-42.323632812499966,61.681738281250006],[-42.347363281250004,61.61743164062497],[-42.41875,61.537011718750016],[-42.49375,61.36279296875006],[-42.64599609375,61.06411132812505],[-42.717041015625,60.76748046874999],[-43.04409179687502,60.52368164062499],[-43.15996093749999,60.516943359375034],[-43.18906249999998,60.50727539062501],[-43.348339843750004,60.519775390625],[-43.598339843749955,60.576025390625006],[-43.79199218749997,60.594580078125034],[-43.92270507812495,60.59536132812502],[-43.93955078125,60.56738281249999],[-43.83115234374995,60.52197265625],[-43.66547851562495,60.502978515625045],[-43.53305664062498,60.47299804687506],[-43.29565429687503,60.44497070312502],[-43.21298828124998,60.390673828125074],[-43.156494140625,60.332861328125006],[-43.16484375000001,60.30102539062499],[-43.16533203124993,60.26342773437501],[-43.122900390625006,60.06123046875001],[-43.23481445312498,59.991308593749984],[-43.32011718749993,59.928125],[-43.61689453125001,59.936914062499994],[-43.66850585937496,59.95893554687495],[-43.95502929687498,60.02548828125],[-43.93740234375002,59.994238281250034],[-43.730126953124994,59.90375976562498],[-43.65791015625001,59.85864257812502],[-43.706201171874994,59.849316406250004],[-43.78984374999999,59.84594726562502],[-43.90654296874995,59.815478515625045],[-44.11699218750002,59.83193359375002],[-44.105419921874955,59.87773437500002],[-44.06547851562499,59.92480468750002],[-44.16171875,59.91679687499998],[-44.268945312499966,59.892919921875],[-44.33125,59.901708984375006],[-44.38359374999995,59.89907226562502],[-44.412939453125006,59.92260742187499],[-44.453466796875006,60.014550781249994],[-44.404931640624966,60.060791015625],[-44.231347656249966,60.180273437500006],[-44.17612304687498,60.24438476562503],[-44.22436523437494,60.27353515625],[-44.34833984374998,60.20478515625004],[-44.47636718749996,60.09550781250007],[-44.53315429687498,60.02949218750004],[-44.61328124999997,60.01665039062499],[-44.81220703124998,60.049902343750006],[-45.37924804687494,60.202929687500024],[-45.36235351562499,60.295947265625045],[-45.367773437500006,60.372949218750016],[-45.202490234375006,60.38271484375005],[-45.08227539062503,60.41621093750004],[-44.97470703124995,60.45722656249995],[-44.85351562499997,60.531933593749976],[-44.74243164062497,60.655273437499964],[-44.75673828124996,60.66459960937501],[-45.082714843749926,60.507177734375006],[-45.283300781250034,60.454541015625004],[-45.38051757812494,60.444921875],[-45.42885742187502,60.46826171874997],[-45.59028320312495,60.518847656250074],[-45.69521484375002,60.541845703125034],[-45.93432617187497,60.57944335937498],[-45.976513671874955,60.599707031250034],[-46.04663085937502,60.61572265625],[-46.141943359375006,60.77651367187499],[-46.018652343750006,60.97177734374997],[-45.93374023437493,61.028417968750055],[-45.87988281249997,61.09414062500002],[-45.84941406249999,61.18115234374999],[-45.87021484374997,61.21831054687502],[-45.942285156249994,61.20556640625001],[-45.97568359374995,61.17578124999997],[-45.970410156249955,61.12919921875008],[-46.01171875000003,61.096826171875044],[-46.29667968749999,61.02236328124996],[-46.58242187500002,60.962060546875016],[-46.71777343749997,60.904931640625016],[-46.80566406250003,60.86030273437501],[-46.87446289062501,60.81640625000003],[-46.979687499999955,60.820361328125045],[-47.12485351562495,60.81132812500004],[-47.22441406249999,60.78286132812502],[-47.369726562500006,60.800341796875045],[-47.46464843749999,60.842626953125034],[-47.579052734374926,60.847460937500045],[-47.70747070312498,60.82709960937499],[-47.79624023437494,60.82885742187499],[-47.78886718749996,60.800146484375006],[-47.729931640624955,60.72949218749999],[-47.82792968750002,60.724755859374994],[-48.01396484374999,60.72197265625007],[-48.10751953124995,60.74243164062498],[-48.180810546874966,60.76923828125001],[-48.24194335937497,60.80683593750004],[-48.20517578124995,60.85590820312498],[-47.90595703125001,60.945751953125004],[-47.77031249999999,60.99775390625002],[-47.858789062499994,61.01567382812504],[-48.146142578124994,60.999462890625004],[-48.19394531249998,61.012939453125],[-48.386425781249926,61.004736328125034],[-48.378125,61.13847656250002],[-48.42495117187496,61.17167968750002],[-48.42817382812501,61.18740234375003],[-48.49482421874998,61.22470703124997],[-48.55791015624996,61.233984375],[-48.59716796874997,61.247412109375],[-48.92207031249998,61.27744140624997],[-48.96450195312502,61.35200195312498],[-48.987207031250016,61.42871093749997],[-49.049218749999966,61.52387695312501],[-49.20473632812502,61.548681640625006],[-49.28906249999997,61.58994140625006],[-49.222265625000034,61.632128906250045],[-49.19311523437497,61.68564453125],[-49.265234375,61.710058593750006],[-49.311230468749955,61.74780273437497],[-49.30449218750002,61.772314453125],[-49.362890625,61.83852539062499],[-49.38027343749999,61.89018554687501],[-49.31347656249997,61.938623046875016],[-49.12978515625002,61.99340820312501],[-49.07055664062494,62.01547851562498],[-49.03964843749994,62.039355468750045],[-48.82871093749998,62.0796875],[-49.008154296875034,62.108203125000045],[-49.120458984375006,62.112597656250045],[-49.202294921874966,62.099316406250004],[-49.277929687500006,62.045751953125],[-49.348535156249994,62.01020507812495],[-49.623779296874936,61.99858398437499],[-49.664257812499926,62.016943359375],[-49.68339843750001,62.09257812500004],[-49.66772460937503,62.15087890625002],[-49.553466796875,62.23271484374999],[-49.685253906249955,62.273339843750016],[-49.806054687499966,62.28652343750002],[-49.943359374999936,62.32446289062503],[-50.07021484374993,62.36450195312502],[-50.179150390624926,62.41113281250003],[-50.28520507812496,62.46621093749996],[-50.319238281249966,62.473193359375045],[-50.280908203124966,62.53076171874997],[-50.25932617187502,62.57807617187501],[-50.25600585937496,62.679785156250034],[-50.298730468749966,62.72197265625002],[-50.203759765624966,62.80878906250004],[-50.07602539062497,62.90375976562501],[-49.793115234374994,63.04462890625004],[-50.09223632812498,62.976757812499955],[-50.338330078124955,62.828759765625016],[-50.39008789062501,62.822021484374964],[-50.40820312499997,62.84882812500001],[-50.50156249999998,62.94492187500006],[-50.57202148437494,62.97114257812498],[-50.60351562499997,63.00004882812501],[-50.74350585937498,63.05126953125006],[-50.80429687500003,63.090771484375004],[-50.890478515625,63.16694335937498],[-51.01308593750002,63.257568359374964],[-51.187597656250034,63.436425781249994],[-51.46884765624995,63.64228515625001],[-51.53818359374998,63.758007812499955],[-51.451074218749994,63.90478515625002],[-51.54750976562499,64.00610351562497],[-51.28007812499996,64.05297851562503],[-50.897558593750006,64.10556640624998],[-50.699365234374966,64.149267578125],[-50.58500976562502,64.162353515625],[-50.34189453124998,64.17036132812495],[-50.260693359374955,64.21425781250002],[-50.395947265624955,64.20317382812507],[-50.48662109374996,64.20888671875],[-50.49228515624995,64.22934570312498],[-50.45874023437497,64.26582031249994],[-50.43706054687499,64.31284179687503],[-50.48339843750003,64.304345703125],[-50.721044921875034,64.22333984375001],[-51.07231445312499,64.15903320312503],[-51.34667968750003,64.123095703125],[-51.39111328125003,64.125],[-51.48710937499996,64.10327148437506],[-51.54228515624999,64.09702148437503],[-51.58491210937498,64.10317382812502],[-51.682031249999966,64.16474609374995],[-51.70786132812498,64.205078125],[-51.53378906249995,64.31420898437503],[-51.403759765624926,64.46318359375002],[-51.231542968750034,64.56059570312505],[-51.10991210937502,64.57280273437505],[-50.90654296874998,64.56757812499995],[-50.834912109374955,64.558984375],[-50.85771484374999,64.61679687500003],[-50.849218750000034,64.64467773437505],[-50.68432617187499,64.67817382812501],[-50.492089843750016,64.69316406250005],[-50.355126953124994,64.68256835937504],[-50.26894531250002,64.61474609374997],[-50.15820312500003,64.48955078125005],[-50.008984375,64.44726562499997],[-50.01552734374999,64.50742187500005],[-50.092968749999955,64.58491210937504],[-50.12163085937493,64.703759765625],[-50.21992187499998,64.75385742187498],[-50.29887695312499,64.77856445312506],[-50.51699218750002,64.76650390625],[-50.64814453125001,64.85332031249999],[-50.67788085937502,64.88520507812501],[-50.681298828125016,64.92753906250002],[-50.81215820312502,65.05185546875003],[-50.85424804687497,65.11396484374998],[-50.92373046875002,65.19672851562498],[-50.96064453124998,65.20112304687498],[-50.91372070312502,65.09697265624999],[-50.85234375,65.02368164062497],[-50.76484374999998,64.86254882812503],[-50.721582031249966,64.79760742187503],[-50.780175781249994,64.74614257812502],[-50.89106445312492,64.69521484375002],[-50.98906250000002,64.66484375000007],[-51.22060546875002,64.62846679687502],[-51.17084960937501,64.707763671875],[-51.13896484374999,64.7857421875],[-51.25537109375,64.75810546875005],[-51.363623046875006,64.7015625],[-51.40092773437498,64.62309570312499],[-51.47045898437503,64.55180664062505],[-51.67675781249994,64.37705078125005],[-51.75810546875002,64.279931640625],[-51.83496093750003,64.23198242187499],[-51.92260742187502,64.21875],[-51.998681640624994,64.25678710937497],[-52.06318359374998,64.34609374999997],[-52.09340820312502,64.41591796874995],[-52.09702148437503,64.59707031250002],[-52.08886718749997,64.68154296875],[-52.12402343750003,64.79541015625001],[-52.235449218750006,65.06054687500003],[-52.259033203125,65.154931640625],[-52.44760742187497,65.20512695312499],[-52.450341796874994,65.22133789062502],[-52.49970703125001,65.27504882812502],[-52.537695312500034,65.32880859374998],[-52.50625,65.34848632812498],[-52.46142578125003,65.36269531250002],[-52.17958984374999,65.44194335937502],[-51.97070312499997,65.53071289062498],[-51.72109375000002,65.669921875],[-51.61914062500003,65.71318359375002],[-51.25292968750003,65.74648437499997],[-51.09038085937496,65.75102539062502],[-51.091894531250006,65.77578125],[-51.146386718749994,65.78564453125004],[-51.39379882812494,65.77915039062506],[-51.7234375,65.723486328125],[-51.779882812500006,65.70341796874999],[-51.92412109374998,65.61679687500003],[-52.03535156250001,65.56948242187495],[-52.34824218749997,65.46132812499997],[-52.55126953125003,65.46137695312498],[-52.76093749999992,65.59082031249997],[-52.99492187499999,65.56601562499996],[-53.152929687500034,65.57456054687503],[-53.19897460937499,65.59404296875002],[-53.23374023437498,65.77084960937506],[-53.106347656249966,65.97714843749998],[-53.24375,65.97905273437502],[-53.27221679687499,65.98740234375003],[-53.34472656250003,66.034375],[-53.39204101562498,66.04833984375],[-53.35693359375002,66.07329101562502],[-53.01787109374996,66.17089843750003],[-52.510888671874966,66.36240234375003],[-52.29262695312502,66.437646484375],[-52.15791015625001,66.47011718749997],[-52.056103515624955,66.50732421875],[-51.93217773437493,66.58789062499997],[-51.891210937500034,66.62314453125006],[-51.82211914062498,66.65156249999998],[-51.67636718749995,66.68359375000003],[-51.51708984375002,66.73203125000003],[-51.258593749999925,66.84121093749997],[-51.225,66.88154296875001],[-51.28105468749999,66.89096679687498],[-51.401953125,66.85375976562506],[-51.64770507812497,66.75400390624998],[-51.82304687499999,66.6978515625],[-52.421240234375006,66.4466796875],[-52.675878906250006,66.355224609375],[-52.814453125,66.296875],[-52.92192382812496,66.24111328125002],[-53.035791015624966,66.20141601562503],[-53.15605468749995,66.177734375],[-53.41274414062494,66.15996093750002],[-53.538769531249955,66.13935546874998],[-53.614697265624955,66.15449218749995],[-53.64809570312502,66.27353515625006],[-53.62260742187499,66.34404296875005],[-53.634716796874955,66.413671875],[-53.570703124999966,66.51328125000006],[-53.47568359374998,66.58383789062503],[-53.43579101562503,66.62216796875003],[-53.41875,66.64853515624998],[-53.22270507812495,66.721435546875],[-53.114648437499966,66.75380859375002],[-53.038281249999955,66.82680664062497],[-52.603125,66.85273437500001],[-52.491064453125034,66.85014648437502],[-52.43144531249996,66.85991210937505],[-52.38686523437502,66.88115234375005],[-52.42973632812496,66.89755859375],[-52.56010742187496,66.90908203125005],[-52.906689453124955,66.90688476562502],[-53.226953125000016,66.91938476562501],[-53.37309570312495,66.93193359374999],[-53.44360351562503,66.924658203125],[-53.56000976562501,66.945947265625],[-53.687158203124994,66.986474609375],[-53.88442382812502,67.13554687499999],[-53.80546875000002,67.32690429687497],[-53.79858398437494,67.4181640625],[-53.54790039062495,67.49819335937495],[-53.41386718749999,67.52470703125003],[-53.223583984374955,67.58496093749997],[-52.96953124999998,67.68725585937503],[-52.666455078124955,67.74970703124994],[-52.51201171874993,67.76127929687502],[-52.38359374999998,67.75234374999997],[-51.90908203124994,67.66372070312502],[-51.665039062499964,67.64638671874997],[-51.450585937499966,67.66772460937506],[-51.181445312499925,67.63652343749999],[-50.70537109374993,67.50888671875003],[-50.613476562499955,67.5279296875],[-50.640136718749964,67.55883789062496],[-51.17104492187496,67.69360351562499],[-51.16796874999994,67.733837890625],[-51.03208007812498,67.74438476562503],[-50.88701171874999,67.78354492187503],[-50.96884765624997,67.80664062500003],[-51.321484374999955,67.78657226562501],[-51.423242187499994,67.75449218750006],[-51.765234375000034,67.73784179687505],[-51.94384765625,67.76518554687502],[-52.10419921874998,67.77871093750002],[-52.34482421874998,67.83691406249997],[-52.54619140624999,67.81791992187502],[-52.67324218750002,67.79497070312505],[-52.898339843749966,67.77324218750005],[-52.97958984374998,67.757763671875],[-53.418798828125034,67.57456054687498],[-53.603613281250006,67.53647460937503],[-53.735205078125006,67.54902343750004],[-53.642822265625,67.66826171874999],[-53.6162109375,67.71533203124997],[-53.61635742187494,67.76660156250003],[-53.577978515625034,67.83681640625005],[-53.35292968750002,67.97050781250002],[-53.21137695312495,68.116943359375],[-53.151562499999926,68.20776367187503],[-53.040966796874955,68.21791992187497],[-52.88984375000001,68.20454101562498],[-52.43608398437502,68.145654296875],[-52.058496093749994,68.07548828124997],[-51.77998046874992,68.05673828124998],[-51.596875,68.05478515625003],[-51.51835937500002,68.07714843749997],[-51.456494140624926,68.116064453125],[-51.43266601562496,68.14301757812498],[-51.41469726562493,68.19819335937504],[-51.393701171875016,68.21777343750003],[-51.33251953125,68.24184570312505],[-51.20727539062497,68.32553710937503],[-51.16914062500001,68.38520507812504],[-51.21015625000001,68.419921875],[-51.29345703125003,68.41635742187498],[-51.45610351562493,68.39350585937504],[-51.47802734374997,68.38398437499995],[-51.47504882812498,68.365380859375],[-51.63242187499998,68.273046875],[-51.804003906249925,68.25180664062503],[-52.19853515624993,68.22080078125],[-52.378515625,68.21860351562499],[-52.698388671874994,68.26152343750005],[-52.746777343749976,68.27836914062502],[-52.78002929687499,68.30986328125005],[-53.17250976562493,68.302734375],[-53.28984375,68.29326171875005],[-53.38315429687495,68.29736328124996],[-53.33740234374997,68.35214843750003],[-53.21328125,68.41298828125],[-53.039453125000016,68.61088867187499],[-52.89384765625002,68.66152343750002],[-52.60458984374998,68.70874023437503],[-52.30278320312496,68.70112304687498],[-51.780664062499994,68.548193359375],[-51.62314453124995,68.53481445312505],[-51.47871093750001,68.54716796874999],[-51.13330078125,68.59843750000005],[-51.06992187499995,68.61918945312499],[-50.945703124999966,68.68266601562505],[-50.80063476562498,68.79125976562497],[-50.807714843750006,68.81699218749998],[-51.030224609374955,68.75629882812495],[-51.148876953124955,68.73994140625001],[-51.24941406250002,68.73994140625001],[-51.15605468750002,68.93842773437501],[-51.11972656249998,69.09052734375001],[-51.08486328124999,69.12827148437498],[-50.79228515624995,69.11684570312505],[-50.392675781250006,69.13740234374997],[-50.29736328124994,69.17060546874998],[-50.29887695312499,69.18535156250005],[-50.459375,69.20551757812498],[-50.53662109375003,69.24785156249999],[-50.671044921874966,69.23447265625003],[-50.85107421874997,69.20625],[-51.07695312499995,69.20947265625],[-51.05781249999998,69.2748046875],[-50.892236328124994,69.411767578125],[-50.875195312499976,69.47421875000003],[-50.81059570312495,69.59902343750005],[-50.80410156249999,69.66303710937504],[-50.72026367187496,69.72534179687501],[-50.459082031250034,69.76972656250001],[-50.349462890625006,69.79624023437496],[-50.34345703125001,69.82524414062505],[-50.5,69.935791015625],[-50.46025390625002,69.96630859375],[-50.3375,69.99414062499997],[-50.291699218749955,70.01445312500005],[-50.32294921875001,70.02714843750005],[-50.43608398437496,70.03935546875005],[-50.60986328125003,70.01494140625005],[-50.80234374999998,70.00322265625005],[-50.97270507812496,70.03989257812498],[-51.10571289062497,70.05742187499999],[-51.18994140624997,70.05190429687502],[-51.418847656249994,69.98920898437495],[-51.49907226562499,69.98715820312496],[-51.59809570312501,70.00454101562497],[-52.254638671875,70.05893554687503],[-52.33603515624998,70.078125],[-52.57124023437501,70.172119140625],[-52.76503906249996,70.23413085937501],[-53.02304687499995,70.30190429687497],[-53.35751953124998,70.35332031250007],[-53.768505859374955,70.38852539062503],[-54.01445312499996,70.42167968750003],[-54.13564453124996,70.46840820312495],[-54.34331054687498,70.57119140625005],[-54.50117187500001,70.656884765625],[-54.53076171874999,70.69926757812502],[-54.43798828125,70.75161132812502],[-54.34355468749996,70.78920898437505],[-54.16582031249999,70.82011718750005],[-53.85917968749996,70.809912109375],[-53.69443359374995,70.79609375000004],[-53.513085937499966,70.76660156249997],[-53.37602539062502,70.76103515624999],[-53.09130859375,70.769384765625],[-52.80195312499995,70.7505859375],[-52.63041992187499,70.72993164062495],[-52.40522460937495,70.68676757812506],[-51.783789062500006,70.50322265625005],[-51.52446289062502,70.43945312500003],[-51.41171874999995,70.43178710937495],[-50.946875,70.36362304687503],[-50.87236328124993,70.36489257812502],[-50.68212890625,70.396875],[-50.66328124999998,70.417578125],[-50.72753906250003,70.43798828125],[-50.93266601562496,70.45385742187503],[-51.17333984374997,70.52910156249997],[-51.32285156249998,70.58876953124997],[-51.33989257812499,70.68754882812502],[-51.320410156250006,70.74287109375001],[-51.2828125,70.76801757812497],[-51.25659179687497,70.85268554687502],[-51.39609374999998,70.90302734374995],[-51.49355468750002,70.91889648437501],[-51.75268554687497,70.99223632812502],[-51.77431640625002,71.01044921875001],[-51.650097656249926,71.01904296874997],[-51.528417968750006,71.014013671875],[-51.26708984374997,70.97685546874999],[-51.130078124999955,70.97172851562502],[-51.030419921874994,70.98627929687494],[-51.018945312499966,71.001318359375],[-51.17778320312499,71.04345703124996],[-51.37666015625001,71.11904296875],[-51.79189453124996,71.13012695312506],[-52.06137695312498,71.12163085937499],[-52.23359374999998,71.14755859375003],[-52.416894531250016,71.189697265625],[-52.534570312499994,71.20043945312497],[-52.775,71.1740234375],[-52.89667968749998,71.17070312500003],[-53.007568359375,71.17998046874999],[-53.117041015625006,71.31289062499997],[-53.08789062500003,71.35273437500001],[-53.002099609374966,71.36997070312506],[-52.93730468749999,71.41284179687499],[-52.89184570312497,71.457666015625],[-52.749414062499994,71.50151367187505],[-51.96728515625,71.59912109375003],[-51.76992187500002,71.67172851562498],[-51.77861328125002,71.68291015625005],[-51.91171875000003,71.66943359375006],[-52.081933593749994,71.63671875000006],[-52.19580078125,71.62998046874999],[-52.656298828124925,71.672265625],[-52.72807617187499,71.66264648437499],[-52.91455078124997,71.60190429687506],[-53.16752929687498,71.53593750000002],[-53.28408203125002,71.53994140625005],[-53.440087890625016,71.57900390625002],[-53.46484375,71.60678710937498],[-53.476025390624955,71.64018554687505],[-53.30473632812496,71.68588867187503],[-53.249707031249955,71.71015624999997],[-53.13886718750001,71.7751953125],[-53.14453125000002,71.80742187500002],[-53.33369140625001,71.78974609374995],[-53.358349609374955,71.81962890625002],[-53.35527343749996,71.87089843750005],[-53.37363281249998,71.93574218750004],[-53.42011718749992,71.99975585937503],[-53.575390624999955,72.09804687499997],[-53.63979492187502,72.12333984375007],[-53.69287109375,72.15966796875],[-53.809863281249925,72.29257812499998],[-53.77597656249995,72.32583007812502],[-53.67202148437502,72.35102539062498],[-53.65214843749995,72.36264648437506],[-53.90053710937502,72.34174804687498],[-53.92773437499997,72.31879882812501],[-53.88090820312502,72.28496093750005],[-53.84746093749996,72.23984375],[-53.827539062499994,72.18344726562505],[-53.79287109375002,72.13408203125002],[-53.70292968749999,72.08002929687504],[-53.63095703125,72.051513671875],[-53.513671875,71.97626953125004],[-53.4625,71.89355468749997],[-53.47758789062502,71.84995117187506],[-53.56865234374999,71.80556640625],[-53.71542968749998,71.757666015625],[-53.75986328124998,71.71801757812499],[-53.7796875,71.67851562500005],[-53.89409179687496,71.64199218749997],[-53.96435546874997,71.6556640625],[-54.01992187500002,71.657861328125],[-53.954296874999955,71.59267578125005],[-53.91206054687498,71.52592773437505],[-53.96298828124995,71.45898437499997],[-54.09892578124993,71.41850585937499],[-54.17270507812495,71.41728515625002],[-54.317724609375006,71.38447265624998],[-54.6890625,71.36723632812505],[-54.818310546874955,71.37529296874999],[-55.05537109375001,71.40859375000002],[-55.33642578125,71.4267578125],[-55.447900390624966,71.47177734375],[-55.59404296874998,71.55351562500005],[-55.667822265625,71.62675781250005],[-55.66933593749996,71.69150390625],[-55.629785156249966,71.73862304687502],[-55.54921875,71.76826171875001],[-55.45244140624998,71.95766601562497],[-55.315576171874994,72.11069335937498],[-54.970898437499955,72.26840820312503],[-54.87260742187499,72.32543945312503],[-54.84013671874996,72.35610351562497],[-54.840625,72.37939453125],[-54.89633789062503,72.394189453125],[-55.32011718749995,72.19956054687503],[-55.58144531249999,72.17885742187498],[-55.65947265624999,72.22260742187504],[-55.63583984374998,72.300439453125],[-55.58930664062498,72.31850585937501],[-55.3779296875,72.31113281250003],[-55.29570312499996,72.35439453124997],[-55.427978515625,72.41987304687498],[-55.56875,72.43701171875003],[-55.60170898437494,72.453466796875],[-55.456787109375,72.503271484375],[-55.121875,72.49960937499998],[-55.046240234375034,72.53442382812497],[-54.924951171874994,72.57197265624997],[-54.790380859375034,72.64160156250003],[-54.74003906249998,72.7001953125],[-54.728710937499976,72.75048828125001],[-54.75771484374993,72.79106445312502],[-54.76083984374998,72.83173828124995],[-54.73793945312499,72.87250976562501],[-54.773095703124966,72.91757812500002],[-54.86621093750003,72.96684570312505],[-55.07309570312498,73.01513671875003],[-55.133984374999955,72.96064453125001],[-55.198437499999955,72.938232421875],[-55.28891601562497,72.93320312500003],[-55.372412109375034,72.95615234374999],[-55.45952148437502,72.96440429687499],[-55.545117187499955,72.98491210937497],[-55.633984374999955,72.99140624999998],[-55.66855468749998,73.00791015624998],[-55.69082031249996,73.05410156249997],[-55.69277343750002,73.11284179687503],[-55.59228515624997,73.14028320312502],[-55.45234374999998,73.16191406249999],[-55.35869140624998,73.20292968749999],[-55.29716796874999,73.2623046875],[-55.288281249999955,73.32709960937498],[-55.33203124999997,73.39736328125],[-55.445703124999966,73.46049804687499],[-55.656201171874955,73.399072265625],[-55.738867187500006,73.38398437500004],[-55.75791015624998,73.42792968750001],[-55.787060546874955,73.46049804687499],[-55.87553710937496,73.504638671875],[-55.99199218749996,73.53681640624998],[-56.10405273437496,73.55815429687499],[-56.10917968749993,73.59077148437494],[-56.082617187500034,73.62749023437499],[-56.03300781249996,73.6703125],[-55.968408203124966,73.75957031249999],[-55.897314453125034,73.75161132812497],[-55.83828124999999,73.75971679687501],[-55.872412109375034,73.83344726562501],[-55.92949218750002,73.89541015625002],[-55.99653320312501,73.93061523437501],[-55.998925781249966,73.94594726562502],[-56.01445312500002,73.96386718750003],[-56.06621093749998,74.00727539062501],[-56.12421874999998,74.0390625],[-56.22539062499999,74.12910156249994],[-56.298486328124966,74.163427734375],[-56.39218749999995,74.18120117187499],[-56.4931640625,74.18217773437502],[-56.65517578124996,74.158544921875],[-56.95429687499998,74.13120117187503],[-57.19111328125001,74.11821289062505],[-57.23056640624995,74.12529296875007],[-57.11210937499999,74.15947265625002],[-56.9375,74.19506835937497],[-56.70634765625002,74.21918945312501],[-56.63896484374995,74.27836914062499],[-56.66391601562498,74.32958984375003],[-56.65429687499997,74.378125],[-56.717675781249994,74.42924804687499],[-56.65600585937497,74.45756835937499],[-56.445556640625,74.48608398437501],[-56.350292968749955,74.49047851562503],[-56.25546874999998,74.52680664062498],[-56.52207031250003,74.61430664062505],[-56.80131835937499,74.67167968749999],[-56.87114257812501,74.69497070312502],[-56.93256835937501,74.73334960937495],[-56.985546874999955,74.786767578125],[-57.071679687499994,74.84023437499995],[-57.190869140624955,74.89375],[-57.36479492187496,74.945458984375],[-57.81318359374999,75.03999023437498],[-57.96708984374998,75.10517578125004],[-58.108837890625004,75.204931640625],[-58.179687499999964,75.24746093749997],[-58.253320312499966,75.278955078125],[-58.56552734374998,75.352734375],[-58.603466796874955,75.38530273437499],[-58.28120117187495,75.4720703125],[-58.24965820312499,75.50668945312503],[-58.38129882812502,75.61201171874998],[-58.51621093749995,75.68906250000006],[-58.66308593749994,75.71640625000003],[-58.881445312500034,75.73046875000006],[-59.08159179687493,75.76469726562502],[-59.263623046874976,75.81889648437505],[-59.445312499999964,75.85859374999995],[-59.71743164062499,75.89628906249999],[-60.172753906250016,75.99331054687505],[-60.874609375,76.09716796874997],[-61.18823242187494,76.157861328125],[-61.37480468749996,76.17998046875005],[-61.62084960937497,76.18564453125006],[-62.09667968750002,76.24233398437497],[-62.49619140624998,76.26044921875001],[-62.742871093749955,76.25214843750001],[-62.823437499999926,76.26152343750007],[-63.00581054687495,76.31909179687497],[-63.29130859374995,76.35205078125003],[-63.43886718749999,76.33945312500002],[-63.62197265624999,76.27788085937502],[-63.84306640624999,76.21713867187498],[-63.96035156249999,76.208935546875],[-64.13520507812501,76.26450195312503],[-64.22319335937499,76.30332031250006],[-64.307275390625,76.31650390624998],[-64.38730468750003,76.30400390625002],[-64.54340820312494,76.25307617187502],[-64.69208984374994,76.21625976562498],[-64.91196289062498,76.17250976562504],[-65.08764648437497,76.15151367187502],[-65.31323242187503,76.14638671874997],[-65.36992187499993,76.13056640625004],[-65.45678710937494,76.12983398437495],[-65.57373046874996,76.14423828124998],[-65.68330078125001,76.172705078125],[-65.78544921874993,76.21533203124997],[-65.87573242187494,76.23833007812505],[-65.95405273437501,76.24169921875003],[-66.134033203125,76.21962890624997],[-66.36176757812493,76.15478515625],[-66.46577148437498,76.13916015624999],[-66.55322265624994,76.14594726562494],[-66.65996093749993,76.166162109375],[-66.87402343750003,76.21787109375006],[-66.992578125,76.21293945312502],[-67.07871093749998,76.19482421874997],[-67.05478515625,76.15185546874999],[-66.85390625000002,76.05],[-66.67480468750001,75.977392578125],[-66.82617187499997,75.96879882812502],[-68.14873046875002,76.06704101562495],[-68.31728515625,76.09077148437501],[-68.56064453125,76.15019531250002],[-68.76308593749994,76.18662109374998],[-69.10756835937497,76.280859375],[-69.37290039062499,76.331884765625],[-69.46088867187498,76.37172851562505],[-69.48408203125001,76.39916992187503],[-69.39965820312494,76.43627929687506],[-68.864990234375,76.56137695312503],[-68.66074218749998,76.58662109375004],[-68.24541015624999,76.61674804687505],[-68.14721679687496,76.63564453125],[-68.11425781249999,76.65063476562503],[-68.22338867187494,76.67768554687501],[-68.76738281250002,76.66801757812502],[-69.25205078125,76.68613281250006],[-69.67382812499994,76.73588867187507],[-69.74721679687497,76.75239257812495],[-69.81865234374995,76.78276367187502],[-69.8880859375,76.82705078125],[-69.87221679687494,76.87661132812497],[-69.77104492187493,76.93144531250002],[-69.71171874999993,76.96904296875005],[-69.69423828125002,76.98945312500004],[-70.22446289062503,76.85458984375],[-70.44130859375,76.80737304687497],[-70.61313476562499,76.82182617187499],[-70.73369140624996,76.84418945312501],[-70.79282226562499,76.86909179687504],[-70.790625,76.896484375],[-70.77124023437497,76.91650390625],[-70.73466796874996,76.92900390625007],[-71.0150390625,76.98486328125],[-71.14145507812496,77.02866210937502],[-71.15488281249995,77.073876953125],[-71.05546875,77.1205078125],[-70.95810546875,77.15434570312505],[-70.86284179687496,77.175439453125],[-70.60371093749993,77.19384765625003],[-69.65654296874999,77.22900390625],[-68.9783203125,77.19531250000006],[-68.74746093749997,77.30693359375005],[-68.59160156249999,77.34252929687503],[-68.13554687499999,77.37958984375001],[-67.43378906249993,77.38466796875],[-66.93798828125,77.36420898437501],[-66.70576171874995,77.338037109375],[-66.38945312499999,77.28027343750003],[-66.37128906250001,77.29770507812503],[-66.44765624999994,77.34980468749998],[-66.45307617187498,77.39306640625003],[-66.32529296874998,77.46821289062495],[-66.26645507812498,77.51538085937497],[-66.30644531249996,77.56450195312505],[-66.44536132812502,77.61567382812498],[-66.69121093749999,77.68120117187502],[-66.82353515624996,77.68662109375003],[-66.97065429687498,77.67084960937504],[-67.14736328125002,77.634521484375],[-67.51464843749997,77.54291992187498],[-67.68808593749995,77.523779296875],[-67.97734375000002,77.51889648437498],[-68.1373046875,77.53046875000004],[-68.29189453124997,77.54418945312497],[-68.53349609374997,77.59277343750003],[-68.62153320312497,77.60185546875002],[-68.72822265624995,77.58056640625003],[-68.85366210937502,77.52885742187505],[-68.97456054687495,77.49262695312495],[-69.09091796875003,77.471923828125],[-69.19965820312498,77.46293945312505],[-69.35136718749999,77.467138671875],[-69.97675781249993,77.54765625000007],[-70.11816406249997,77.58349609375],[-70.12636718749994,77.63779296875003],[-70.31831054687498,77.69038085937501],[-70.53540039062496,77.699560546875],[-70.56191406249994,77.71718749999997],[-70.28662109375,77.79824218749997],[-70.08149414062494,77.83139648437505],[-70.11445312500001,77.84135742187505],[-70.41240234374996,77.84311523437503],[-70.61352539062497,77.8],[-70.7287109375,77.792724609375],[-70.99360351562495,77.79155273437502],[-71.27163085937494,77.81313476562497],[-71.38984374999995,77.83203125],[-71.51240234374995,77.87539062500005],[-71.64990234375,77.89980468750005],[-72.06494140625,77.93681640625005],[-72.15854492187498,77.95693359374997],[-72.24726562499993,77.99042968750004],[-72.586328125,78.08520507812497],[-72.79150390624997,78.15488281250005],[-72.81806640624995,78.1943359375],[-72.58129882812494,78.27910156250005],[-72.57094726562497,78.29873046874995],[-72.67246093749995,78.33530273437503],[-72.71479492187495,78.36230468750003],[-72.67973632812502,78.399560546875],[-72.47250976562498,78.48203125],[-72.39560546874993,78.50434570312501],[-72.02368164062494,78.552783203125],[-71.65131835937491,78.62314453124998],[-71.515625,78.63896484374999],[-71.39477539062497,78.64262695312505],[-70.90576171875,78.63847656249999],[-70.75410156249993,78.65581054687503],[-70.625390625,78.69013671875004],[-70.41420898437497,78.72490234375002],[-69.97353515625,78.777685546875],[-68.99345703124999,78.857421875],[-68.92963867187495,78.86679687500006],[-68.92392578125003,78.88193359375002],[-69.01196289062503,78.92304687499994],[-69.03051757812497,78.94287109375],[-68.82983398437494,78.97973632812497],[-68.37705078124998,79.037841796875],[-68.067529296875,79.0658203125],[-67.86835937500001,79.06787109374997],[-67.70776367187497,79.08037109375005],[-67.48222656249993,79.11689453125001],[-67.35454101562496,79.12333984374997],[-66.58374023437494,79.1376953125],[-66.24277343750003,79.11782226562502],[-66.07534179687494,79.11821289062502],[-65.96787109374998,79.13237304687507],[-65.82553710937503,79.17373046874997],[-65.55976562499997,79.27646484375003],[-65.41987304687498,79.34023437500005],[-65.28779296874998,79.43730468750002],[-65.116943359375,79.58901367187502],[-64.9892578125,79.73696289062505],[-64.904638671875,79.88125],[-64.83896484375003,79.96918945312501],[-64.79228515624993,80.00063476562502],[-64.63242187499998,80.04057617187499],[-64.46572265625002,80.07167968750002],[-64.17915039062498,80.09926757812497],[-64.20527343749998,80.11210937499999],[-64.32680664062497,80.13359375000002],[-64.43994140625,80.14184570312501],[-64.54462890624993,80.13691406249998],[-64.73525390624997,80.10444335937495],[-64.98222656249999,80.08247070312501],[-65.22211914062493,80.0859375],[-65.39492187499997,80.077734375],[-65.55341796875001,80.047998046875],[-65.81044921874997,80.024072265625],[-65.98193359374999,80.02949218749995],[-66.29150390625,80.07226562499997],[-66.44770507812495,80.08027343750001],[-66.84365234374997,80.07622070312507],[-66.95947265625001,80.092041015625],[-67.06064453125003,80.12314453125003],[-67.14130859374995,80.16645507812498],[-67.20146484374993,80.22216796875001],[-67.19316406249993,80.28007812500002],[-67.05063476562503,80.384521484375],[-66.99589843749997,80.41298828125002],[-66.61005859374998,80.52958984375005],[-66.37231445312494,80.58417968749998],[-66.13569335937498,80.625],[-65.96328125000002,80.64897460937505],[-65.80097656250001,80.659716796875],[-65.64521484374998,80.68505859375003],[-65.35820312499993,80.76650390625],[-65.06215820312494,80.83632812500002],[-64.69379882812495,80.96601562499997],[-64.51552734374997,81],[-63.89155273437492,81.0564453125],[-63.72197265624993,81.05732421875001],[-63.578027343749994,81.04326171874999],[-63.44169921874993,81.01386718749995],[-63.05859374999997,80.885595703125],[-63.028662109375,80.88955078125002],[-63.09545898437503,80.93808593750006],[-63.23520507812497,81.08334960937498],[-63.2125,81.14311523437499],[-62.99326171874997,81.20698242187504],[-62.90336914062496,81.21835937500003],[-62.67192382812495,81.21411132812497],[-62.29887695312499,81.19438476562505],[-62.04941406249998,81.17275390625],[-61.86035156249999,81.13759765625002],[-61.63559570312498,81.11572265625],[-61.51909179687493,81.11679687500003],[-61.435986328124976,81.13359375000002],[-61.31699218749997,81.1884765625],[-61.162060546874955,81.28149414062503],[-61.1,81.39609375],[-61.13076171874996,81.53232421875006],[-61.17597656249995,81.63188476562499],[-61.235693359375034,81.69458007812496],[-61.20292968750001,81.746875],[-61.01503906250002,81.80957031250006],[-60.84287109375004,81.85537109374997],[-60.43237304687498,81.92016601562503],[-60.099462890625,81.93735351562498],[-59.90190429687498,81.93300781249997],[-59.642285156249955,81.90263671875002],[-59.281933593749976,81.88403320312503],[-58.956787109375,81.82519531250003],[-58.429785156250034,81.69003906250002],[-58.07993164062498,81.62221679687498],[-57.79033203124996,81.59174804687498],[-57.50488281249997,81.539892578125],[-57.08286132812498,81.42993164062497],[-56.86206054687502,81.38271484375005],[-56.730664062499976,81.365625],[-56.615136718749994,81.36289062499999],[-56.658154296874955,81.394287109375],[-56.85966796874998,81.45996093749996],[-57.16840820312498,81.53217773437504],[-57.85302734375002,81.66201171875002],[-58.230078125,81.75366210937503],[-58.56821289062498,81.85820312500002],[-58.81674804687497,81.92041015624997],[-59.26801757812498,81.98208007812502],[-59.26181640624998,82.00664062500005],[-58.717382812500006,82.09306640624999],[-57.71689453125,82.16831054687503],[-56.589355468749964,82.22714843750003],[-56.21196289062502,82.22114257812495],[-55.54868164062498,82.245751953125],[-55.486230468749966,82.28286132812502],[-55.343603515625034,82.29956054687506],[-54.72587890624996,82.35136718750002],[-54.54887695312495,82.35063476562505],[-54.27705078124998,82.32607421875002],[-53.98730468750002,82.27924804687498],[-53.85322265624998,82.23686523437507],[-53.671337890624955,82.16406249999997],[-53.58203124999997,82.06157226562505],[-53.59550781249996,81.73803710937506],[-53.59077148437498,81.67685546875],[-53.55566406250002,81.653271484375],[-53.430126953124926,81.68837890624997],[-53.27998046874998,81.75361328125001],[-53.14501953125003,81.79975585937501],[-53.04121093750001,81.87099609375005],[-52.96850585937494,81.967138671875],[-52.92553710937499,82.03837890625005],[-53.101953124999966,82.11894531250002],[-53.110742187499966,82.25122070312497],[-53.022558593750034,82.32172851562504],[-52.77558593749998,82.32172851562504],[-51.75400390624998,82.07822265624998],[-51.35185546875002,82.02563476562503],[-50.894433593749994,81.89521484375001],[-50.36005859374992,81.90908203125],[-49.867041015625034,81.89301757812501],[-49.64882812499999,81.89780273437499],[-49.54106445312496,81.91806640625003],[-49.694287109375004,81.97211914062495],[-50.39482421874999,82.12070312500003],[-50.713134765625,82.23735351562497],[-50.93554687500003,82.38281250000003],[-50.98994140625001,82.46015624999998],[-50.81953125000001,82.47407226562497],[-50.037109374999936,82.472412109375],[-48.861181640625006,82.40541992187502],[-47.357421875,82.17363281250005],[-46.61733398437494,82.09697265624999],[-45.29106445312502,81.82880859374998],[-44.89096679687495,81.78828124999998],[-44.7294921875,81.77983398437505],[-44.60761718749995,81.81293945312504],[-44.53242187500001,81.84892578124999],[-44.52690429687496,81.89682617187498],[-44.591015624999955,81.956689453125],[-44.62773437499995,82.02587890624997],[-44.63710937500002,82.10444335937498],[-44.54707031249998,82.26005859374999],[-44.33320312500001,82.31079101562503],[-44.23886718749997,82.3681640625],[-44.3265625,82.47172851562505],[-44.57724609374998,82.542626953125],[-45.552441406249976,82.725244140625],[-45.556542968750016,82.74702148437498],[-45.35961914062494,82.77094726562498],[-45.06743164062501,82.78496093749999],[-42.650732421875006,82.741455078125],[-42.23295898437496,82.72548828125005],[-42.054638671874955,82.70981445312503],[-41.97656249999997,82.68916015625],[-41.87646484375,82.680322265625],[-41.357275390625,82.70498046875005],[-41.36962890625003,82.75],[-41.434423828125,82.77861328125002],[-44.239208984374955,82.85678710937506],[-44.76196289062497,82.88354492187499],[-45.02792968749998,82.88559570312496],[-45.30297851562497,82.86508789062496],[-45.87333984374999,82.85488281250002],[-46.136816406250006,82.85883789062504],[-46.47817382812502,82.95190429687497],[-46.169042968750006,83.06386718749997],[-45.908886718749955,83.06132812499999],[-45.41459960937496,83.01767578124998],[-45.12177734374998,83.07866210937505],[-44.65693359374998,83.12905273437502],[-44.19731445312496,83.146826171875],[-43.19458007812503,83.25512695312501],[-43.00927734375003,83.26459960937501],[-42.775537109375016,83.25878906249997],[-42.25952148437497,83.23198242187502],[-42.054589843749966,83.20517578124998],[-41.819775390624976,83.14775390625002],[-41.68349609375002,83.13002929687502],[-41.521972656249964,83.12675781249999],[-41.300146484375006,83.10078125000004],[-40.97939453125002,83.18486328125002],[-40.68945312500003,83.27519531250005],[-40.35683593750002,83.332177734375],[-39.886328125,83.29892578124998],[-39.58842773437498,83.25556640625004],[-39.31601562499997,83.20390624999999],[-38.931103515625004,83.17534179687502],[-38.27836914062499,82.99887695312506],[-38.15625,82.9986328125],[-38.098583984374955,83.01357421875002],[-38.03701171875002,83.04628906250002],[-38.01489257812494,83.09482421875006],[-37.934765624999955,83.16074218749998],[-37.99277343749998,83.18510742187507],[-38.53955078125,83.25815429687503],[-38.642919921875006,83.286279296875],[-38.74780273437497,83.33256835937499],[-38.74956054687496,83.37084960937497],[-38.64824218750002,83.401025390625],[-38.541455078124926,83.41479492187506],[-38.187939453124955,83.40229492187498],[-38.07109374999993,83.41210937500003],[-37.96083984374994,83.437646484375],[-37.828027343749994,83.48554687499998],[-37.72333984374998,83.49775390624998],[-37.486914062500034,83.49912109375],[-37.122998046874955,83.46840820312497],[-36.80449218750002,83.46582031249997],[-36.68959960937496,83.47993164062501],[-36.67211914062494,83.50991210937497],[-36.644433593749994,83.52895507812505],[-36.60649414062499,83.53696289062498],[-35.451855468749955,83.53862304687505],[-35.16552734374997,83.545751953125],[-34.941650390625,83.56845703125],[-34.66777343749999,83.571142578125],[-34.42832031249998,83.55756835937501],[-34.13193359374998,83.52866210937498],[-33.837353515625004,83.52998046874998],[-33.39833984375002,83.57724609375],[-32.98442382812499,83.59960937500006],[-30.70292968749996,83.59340820312502],[-29.952880859375,83.56484374999995]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Montserrat","adm0_a3":"MSR","geou_dif":0,"geounit":"Montserrat","gu_a3":"MSR","su_dif":0,"subunit":"Montserrat","su_a3":"MSR","brk_diff":0,"name":"Montserrat","name_long":"Montserrat","brk_a3":"MSR","brk_name":"Montserrat","brk_group":null,"abbrev":"Monts.","postal":"MS","formal_en":null,"formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Montserrat","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":5097,"gdp_md_est":29,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MS","iso_a3":"MSR","iso_n3":"500","un_a3":"500","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"MSR","adm0_a3_us":"MSR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":10,"long_len":10,"abbrev_len":6,"tiny":6,"homepart":-99,"filename":"MSR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-62.1484375,16.74033203124999],[-62.15424804687499,16.681201171875003],[-62.221630859375,16.69951171875],[-62.22304687499999,16.7515625],[-62.191357421875,16.804394531249997],[-62.17578125,16.8095703125],[-62.1484375,16.74033203124999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Nicaragua","sov_a3":"NIC","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nicaragua","adm0_a3":"NIC","geou_dif":0,"geounit":"Nicaragua","gu_a3":"NIC","su_dif":0,"subunit":"Nicaragua","su_a3":"NIC","brk_diff":0,"name":"Nicaragua","name_long":"Nicaragua","brk_a3":"NIC","brk_name":"Nicaragua","brk_group":null,"abbrev":"Nic.","postal":"NI","formal_en":"Republic of Nicaragua","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nicaragua","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":9,"pop_est":5891199,"gdp_md_est":16790,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NI","iso_a3":"NIC","iso_n3":"558","un_a3":"558","wb_a2":"NI","wb_a3":"NIC","woe_id":-99,"adm0_a3_is":"NIC","adm0_a3_us":"NIC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NIC.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-83.15751953124999,14.993066406249996],[-83.18535156249999,14.956396484374991],[-83.21591796874999,14.932373046874998],[-83.27988281249999,14.812792968750003],[-83.302001953125,14.80209960937499],[-83.30634765624998,14.890527343749994],[-83.34438476562498,14.902099609375],[-83.38901367187499,14.870654296875003],[-83.413720703125,14.825341796874994],[-83.37485351562499,14.76611328125],[-83.34072265625,14.765283203124996],[-83.29921875,14.7490234375],[-83.187744140625,14.340087890624998],[-83.21171874999999,14.267138671875003],[-83.28081054687499,14.153613281250003],[-83.34658203125,14.056982421874991],[-83.4123046875,13.99648437499999],[-83.49375,13.738818359375003],[-83.567333984375,13.3203125],[-83.51445312499999,12.943945312499991],[-83.5412109375,12.596289062499991],[-83.51796875,12.514111328124997],[-83.5109375,12.411816406249997],[-83.56523437499999,12.393408203124991],[-83.5958984375,12.396484375],[-83.627197265625,12.459326171874991],[-83.623681640625,12.514550781249994],[-83.5912109375,12.579345703125],[-83.578076171875,12.667138671874994],[-83.59335937499999,12.713085937499995],[-83.62534179687499,12.61289062499999],[-83.681640625,12.568115234374998],[-83.71835937499999,12.552636718749994],[-83.75424804687499,12.501953125],[-83.7162109375,12.406738281249998],[-83.66733398437499,12.337060546874994],[-83.65126953125,12.287060546874997],[-83.66923828124997,12.2275390625],[-83.680419921875,12.024316406249994],[-83.697705078125,12.029980468749995],[-83.715576171875,12.057421874999987],[-83.76718749999998,12.059277343749997],[-83.77333984375,11.977392578124991],[-83.76933593749997,11.931640625],[-83.81318359375,11.896386718749994],[-83.82890624999999,11.861035156249995],[-83.79296875,11.836181640625],[-83.753369140625,11.8212890625],[-83.70458984375,11.824560546874991],[-83.664306640625,11.723876953125],[-83.6517578125,11.642041015624997],[-83.74497070312499,11.566503906249991],[-83.776611328125,11.503955078124989],[-83.82939453124999,11.428173828124997],[-83.85908203125,11.353662109374993],[-83.86787109375,11.300048828124998],[-83.83183593749999,11.130517578124994],[-83.76791992187498,11.01025390625],[-83.7140625,10.933837890625],[-83.6419921875,10.917236328124998],[-83.658935546875,10.836865234374997],[-83.71293945312497,10.785888671875],[-83.811181640625,10.743261718749991],[-83.91928710937499,10.7353515625],[-84.09619140625,10.775683593749989],[-84.168359375,10.780371093749991],[-84.19658203124999,10.801708984374997],[-84.20498046875,10.84130859375],[-84.25556640624998,10.900732421874991],[-84.348291015625,10.979882812499994],[-84.40185546875,10.974462890624991],[-84.48916015625,10.991650390624995],[-84.6341796875,11.045605468749997],[-84.701171875,11.052197265624997],[-84.79736328125,11.005908203124989],[-84.9091796875,10.9453125],[-85.178955078125,11.039941406249994],[-85.368359375,11.1064453125],[-85.53872070312498,11.166308593749989],[-85.5841796875,11.189453125],[-85.62138671874999,11.184472656249994],[-85.65366210937498,11.153076171875],[-85.69052734374999,11.097460937499989],[-85.70263671875,11.08154296875],[-85.72226562499999,11.066259765624991],[-85.7443359375,11.06210937499999],[-85.74521484374998,11.088574218749997],[-85.828515625,11.19873046875],[-85.9611328125,11.331347656249989],[-86.46889648437498,11.73828125],[-86.655517578125,11.981542968749991],[-86.755615234375,12.15664062499999],[-86.8509765625,12.247753906249997],[-87.1251953125,12.434130859374989],[-87.18842773437498,12.508349609374989],[-87.46015625,12.757568359375],[-87.66752929687497,12.903564453125],[-87.670166015625,12.96567382812499],[-87.58505859374999,13.043310546874991],[-87.54331054687499,13.039697265624994],[-87.49794921875,12.984179687499989],[-87.42436523437499,12.921142578124998],[-87.3896484375,12.920654296875],[-87.33857421874998,12.949951171874998],[-87.33725585937499,12.979248046875],[-87.05917968749999,12.991455078125],[-87.00932617187499,13.0078125],[-86.95888671875,13.053710937499998],[-86.93315429687499,13.11752929687499],[-86.92880859374999,13.179394531249995],[-86.918212890625,13.223583984374997],[-86.87353515625,13.266503906249993],[-86.792138671875,13.27978515625],[-86.72929687499999,13.284375],[-86.71069335937499,13.313378906249994],[-86.72958984374999,13.4072265625],[-86.76352539062498,13.635253906249998],[-86.77060546874999,13.69873046875],[-86.758984375,13.746142578125003],[-86.733642578125,13.763476562500003],[-86.61025390625,13.774853515624995],[-86.376953125,13.755664062500003],[-86.33173828125,13.770068359375003],[-86.238232421875,13.899462890625003],[-86.15122070312499,13.994580078124997],[-86.0892578125,14.037207031249991],[-86.04038085937499,14.050146484374991],[-85.9837890625,13.965673828124991],[-85.78671875,13.844433593749995],[-85.75341796875,13.85205078125],[-85.73393554687497,13.858691406250003],[-85.727734375,13.876074218749991],[-85.73120117187499,13.931835937499997],[-85.68193359374999,13.982568359374994],[-85.57978515625,14.028222656249994],[-85.47705078125,14.108691406250003],[-85.373779296875,14.223876953125],[-85.2841796875,14.291650390624994],[-85.20834960937499,14.311816406250003],[-85.17949218749999,14.343310546875003],[-85.19755859374999,14.385986328125],[-85.19150390624999,14.44663085937499],[-85.161328125,14.525146484375],[-85.11728515624999,14.570605468750003],[-85.059375,14.582958984374999],[-85.0365234375,14.607666015624998],[-85.04863281249999,14.644726562499997],[-85.037353515625,14.685546875],[-84.98515624999999,14.75244140625],[-84.86044921874999,14.809765625],[-84.78916015624999,14.790380859374991],[-84.72978515624997,14.713378906249998],[-84.64594726562498,14.661083984374997],[-84.53764648437499,14.633398437499991],[-84.45356445312498,14.643701171874994],[-84.39365234374998,14.691748046874991],[-84.339794921875,14.706347656250001],[-84.291943359375,14.687353515624991],[-84.26665039062499,14.698144531249994],[-84.26396484374997,14.738525390625],[-84.239208984375,14.747851562500003],[-84.1923828125,14.726025390624995],[-84.15078125,14.720410156249995],[-84.114404296875,14.731005859375001],[-84.10029296875,14.750634765624994],[-84.09296875,14.770898437499994],[-84.0658203125,14.786083984374999],[-83.97226562499998,14.77109375],[-83.86728515624998,14.794482421875003],[-83.750927734375,14.85625],[-83.67363281249999,14.883544921874998],[-83.63549804687499,14.876416015624997],[-83.58974609375,14.907568359374991],[-83.5365234375,14.977001953124997],[-83.4150390625,15.008056640625],[-83.15751953124999,14.993066406249996]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Canada","sov_a3":"CAN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Canada","adm0_a3":"CAN","geou_dif":0,"geounit":"Canada","gu_a3":"CAN","su_dif":0,"subunit":"Canada","su_a3":"CAN","brk_diff":0,"name":"Canada","name_long":"Canada","brk_a3":"CAN","brk_name":"Canada","brk_group":null,"abbrev":"Can.","postal":"CA","formal_en":"Canada","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Canada","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":2,"mapcolor13":2,"pop_est":33487208,"gdp_md_est":1300000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"CA","iso_a3":"CAN","iso_n3":"124","un_a3":"124","wb_a2":"CA","wb_a3":"CAN","woe_id":-99,"adm0_a3_is":"CAN","adm0_a3_us":"CAN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CAN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.78759765624998,43.939599609374994],[-59.92226562499996,43.90390625],[-60.03774414062497,43.90664062500002],[-60.11425781249999,43.93911132812499],[-60.11748046874995,43.95336914062506],[-59.93603515625002,43.939599609374994],[-59.866357421874945,43.94716796875002],[-59.727148437500006,44.002832031249994],[-59.78759765624998,43.939599609374994]]],[[[-66.27377929687495,44.29228515624999],[-66.32412109375,44.25732421874997],[-66.3119140625,44.291601562500034],[-66.25048828125,44.37900390624998],[-66.2103515625,44.39204101562498],[-66.27377929687495,44.29228515624999]]],[[[-66.7625,44.68178710937502],[-66.8970703125,44.62890625],[-66.8447265625,44.76391601562497],[-66.80214843749994,44.80537109374998],[-66.74541015624992,44.79140624999999],[-66.75336914062495,44.70981445312506],[-66.7625,44.68178710937502]]],[[[-60.96157226562497,45.48994140625001],[-61.002880859374926,45.48173828125002],[-61.0125,45.49604492187501],[-61.07617187499994,45.53730468749998],[-61.081738281249926,45.55781249999998],[-61.025976562500034,45.577343749999955],[-60.91245117187497,45.567285156250044],[-60.953027343749994,45.515527343749994],[-60.96157226562497,45.48994140625001]]],[[[-73.69531249999997,45.58549804687502],[-73.81591796875003,45.564892578125004],[-73.85771484375002,45.573583984375006],[-73.72465820312499,45.67182617187503],[-73.57236328124998,45.69448242187502],[-73.69531249999997,45.58549804687502]]],[[[-73.56650390625003,45.469091796875034],[-73.6435546875,45.44912109375005],[-73.77534179687493,45.467626953125],[-73.92021484374996,45.44194335937499],[-73.960546875,45.44140624999997],[-73.85292968750002,45.51572265625003],[-73.68745117187497,45.561425781249994],[-73.52246093750003,45.70117187500005],[-73.47607421874997,45.704736328124994],[-73.53886718749999,45.54643554687496],[-73.55166015625001,45.48984374999998],[-73.56650390625003,45.469091796875034]]],[[[-71.02573242187503,46.87294921875002],[-71.11665039062498,46.86484375],[-71.094970703125,46.89956054687505],[-70.97084960937494,46.96142578125003],[-70.87963867187503,46.99609375],[-70.82578124999996,46.99536132812503],[-70.9134765625,46.919531250000034],[-71.02573242187503,46.87294921875002]]],[[[-61.10517578124998,45.94472656250002],[-61.071337890624925,45.93710937499997],[-60.93657226562501,45.98554687499998],[-60.865234374999964,45.983496093750006],[-60.868408203125,45.94863281250002],[-60.98427734374996,45.91069335937502],[-61.03754882812498,45.882226562499994],[-60.970605468750016,45.855810546875034],[-60.971533203125034,45.837988281250034],[-61.051953124999976,45.79501953124998],[-61.092089843749996,45.748388671875006],[-61.05903320312501,45.70336914062497],[-60.930371093750004,45.74770507812502],[-60.877587890624994,45.74809570312502],[-60.806103515624976,45.73808593750002],[-60.73789062499995,45.75141601562498],[-60.69907226562495,45.77333984375002],[-60.472363281249955,45.94653320312503],[-60.46059570312493,45.968701171875004],[-60.70488281249999,45.93291015625002],[-60.733300781249994,45.956591796875045],[-60.57319335937498,46.061425781249994],[-60.58574218749996,46.116650390624955],[-60.50493164062502,46.20385742187497],[-60.43085937499992,46.25561523437502],[-60.37651367187496,46.284570312499994],[-60.297949218750034,46.31123046874998],[-60.243847656249926,46.27011718750006],[-60.22646484374993,46.19555664062506],[-60.092480468750004,46.206005859374955],[-59.96142578124994,46.19096679687502],[-59.865039062499925,46.159521484375006],[-59.85,46.141406250000045],[-59.848779296874994,46.11293945312502],[-59.88090820312498,46.061621093750034],[-59.934033203124955,46.019433593749966],[-59.82802734374996,45.96513671875002],[-59.84218749999999,45.941552734374994],[-60.01582031249992,45.88046874999998],[-60.114453124999955,45.81889648437496],[-60.20507812500003,45.74301757812506],[-60.38608398437495,45.65463867187498],[-60.67294921874995,45.59082031250006],[-60.76372070312498,45.59082031250006],[-60.87158203125001,45.610693359375],[-60.97861328124997,45.60615234374998],[-61.083691406249976,45.582373046875006],[-61.18642578124993,45.58500976562501],[-61.23632812499997,45.57250976562506],[-61.283691406249936,45.573876953124966],[-61.323437499999955,45.598486328125006],[-61.40834960937493,45.66909179687499],[-61.449804687499956,45.71621093750002],[-61.495312499999976,45.94145507812498],[-61.480615234375016,46.05976562500001],[-61.408642578125004,46.17036132812498],[-61.302197265624976,46.24384765625004],[-61.24052734374996,46.30253906249999],[-60.98251953124998,46.650488281250006],[-60.93198242187498,46.72944335937501],[-60.87016601562498,46.79677734374996],[-60.75966796874994,46.863378906250034],[-60.616650390624955,46.97578125000001],[-60.57104492187497,46.99882812500002],[-60.48906249999998,47.00971679687501],[-60.40820312500002,47.00351562499998],[-60.431347656249955,46.96293945312499],[-60.425439453124994,46.92319335937506],[-60.331738281249976,46.76782226562503],[-60.332910156249966,46.737011718749955],[-60.38408203124998,46.61333007812498],[-60.482421874999936,46.413525390624955],[-60.507714843749966,46.303369140624994],[-60.49453125000002,46.270263671875],[-60.53442382812497,46.21455078125001],[-60.57685546875001,46.17216796874999],[-60.744824218749955,46.092675781249966],[-60.83056640625,46.074121093749994],[-60.91220703125003,46.04458007812502],[-61.10517578124998,45.94472656250002]]],[[[-63.811279296875,46.46870117187501],[-63.78422851562501,46.45463867187499],[-63.73701171874998,46.48051757812502],[-63.681445312499925,46.56191406249999],[-63.534375,46.540625],[-63.456494140624926,46.50390625],[-63.41313476562499,46.512011718750045],[-63.36865234374997,46.50825195312498],[-63.286083984374955,46.46020507812497],[-63.12939453124999,46.422216796875034],[-62.964013671874966,46.42773437500003],[-62.71201171874998,46.45029296875],[-62.68193359374995,46.45942382812498],[-62.423095703125,46.478271484375],[-62.16357421874997,46.487207031249966],[-62.07426757812499,46.46572265625002],[-62.040869140625,46.44570312500002],[-62.02373046874998,46.42158203125001],[-62.17177734374996,46.35537109375002],[-62.31997070312494,46.27832031250003],[-62.52607421875001,46.20288085937503],[-62.55200195312497,46.165917968749966],[-62.539208984375016,46.09794921874999],[-62.54326171874996,46.02866210937498],[-62.502587890625016,46.02294921874997],[-62.47807617187502,45.99970703125004],[-62.53134765625003,45.977294921875],[-62.7431640625,45.96689453125],[-62.80488281249998,45.97319335937496],[-62.878369140624926,46.00136718750002],[-62.90351562499998,46.068261718749966],[-62.99462890625,46.058447265625006],[-63.02207031249998,46.06660156249998],[-62.89453125000003,46.12358398437496],[-62.95263671874997,46.19516601562498],[-63.01503906249996,46.18994140624997],[-63.056347656249955,46.22392578124996],[-63.052929687499955,46.26982421874998],[-62.9951171875,46.29213867187502],[-62.97846679687499,46.31635742187498],[-63.056884765624964,46.29536132812495],[-63.11699218749996,46.252832031249994],[-63.194726562499994,46.23671874999999],[-63.270800781249925,46.2],[-63.152783203124976,46.188330078125006],[-63.21347656249998,46.159863281249976],[-63.276611328124964,46.153271484374955],[-63.56889648437502,46.209228515625],[-63.64101562499996,46.23046874999997],[-63.73178710937497,46.2890625],[-63.80053710937494,46.367333984374966],[-63.76323242187499,46.37036132812506],[-63.75053710937499,46.384375],[-63.758642578125034,46.397607421874994],[-63.86054687500001,46.40815429687501],[-64.01972656249993,46.40483398437496],[-64.11083984375003,46.425439453124994],[-64.10654296875003,46.562109375000034],[-64.13603515624999,46.59970703125006],[-64.23564453124996,46.631445312500034],[-64.388037109375,46.64086914062499],[-64.403125,46.69160156250004],[-64.35458984375003,46.76923828124995],[-64.27998046874993,46.83574218750002],[-64.2232421875,46.90126953125002],[-64.15693359374998,46.95488281250002],[-63.993554687500016,47.06157226562502],[-63.99726562499998,46.98173828124999],[-63.98149414062496,46.91298828125002],[-64.08789062499997,46.77543945312498],[-63.90302734374995,46.63911132812501],[-63.879296875000016,46.608984375],[-63.863720703124955,46.572363281250006],[-63.87563476562496,46.53867187500006],[-63.905566406249925,46.50878906249999],[-63.83359375000003,46.493896484375],[-63.811279296875,46.46870117187501]]],[[[-61.91411132812496,47.284521484375034],[-61.87871093749993,47.26552734374999],[-61.81547851562501,47.26757812500006],[-61.77255859374998,47.25981445312499],[-61.833740234375,47.22260742187504],[-61.950830078124966,47.218994140625],[-62.00830078124994,47.23427734375002],[-61.924707031249966,47.425146484375006],[-61.82729492187494,47.46909179687497],[-61.62783203124999,47.593847656250006],[-61.548046874999976,47.63178710937501],[-61.47407226562501,47.646777343750045],[-61.3955078125,47.63764648437504],[-61.475537109374955,47.56396484375003],[-61.58222656249992,47.56000976562503],[-61.684082031249964,47.498730468749976],[-61.750878906249994,47.43081054687499],[-61.83125,47.39204101562501],[-61.88662109374994,47.344628906250016],[-61.91411132812496,47.284521484375034]]],[[[-54.227148437500034,47.44135742187501],[-54.27607421874998,47.40654296875002],[-54.32597656250002,47.408105468749994],[-54.32011718749996,47.43852539062496],[-54.258691406249994,47.497656250000034],[-54.227392578125006,47.53999023437504],[-54.226269531249955,47.565527343750006],[-54.21494140625003,47.58510742187499],[-54.16835937499996,47.60708007812502],[-54.12817382812494,47.646826171875034],[-54.14755859374998,47.573095703125034],[-54.227148437500034,47.44135742187501]]],[[[-64.50859375,47.88671874999997],[-64.53388671874995,47.813769531250045],[-64.6212890625,47.75190429687495],[-64.66464843749995,47.74760742187496],[-64.68457031250003,47.75361328125004],[-64.660498046875,47.793554687500006],[-64.66328124999995,47.86303710937503],[-64.59111328124999,47.872460937499994],[-64.56484374999997,47.86625976562498],[-64.50859375,47.88671874999997]]],[[[-64.47607421874999,47.95888671875002],[-64.59130859375003,47.90722656249997],[-64.54072265624993,47.984960937500006],[-64.51958007812499,48.00507812500001],[-64.50019531249993,48.013769531250006],[-64.48125,48.006933593750034],[-64.47607421874999,47.95888671875002]]],[[[-123.43540039062496,48.75444335937502],[-123.47724609374995,48.72875976562503],[-123.49960937499996,48.732177734375],[-123.51752929687501,48.750146484375016],[-123.58232421874995,48.92578125],[-123.55468750000001,48.922070312499955],[-123.46787109375,48.867382812500004],[-123.48754882812501,48.84570312500003],[-123.42275390624995,48.79335937500002],[-123.406787109375,48.75605468749998],[-123.43540039062496,48.75444335937502]]],[[[-123.37236328124997,48.886132812500016],[-123.38481445312496,48.87519531250001],[-123.54101562499997,48.94594726562502],[-123.64560546874999,49.03862304687499],[-123.68925781249999,49.09511718750005],[-123.48232421875001,48.954687500000034],[-123.37792968749996,48.90825195312499],[-123.37236328124997,48.886132812500016]]],[[[-74.70888671874997,45.0038574218751],[-74.56630859374997,45.04160156249998],[-74.26904296874997,45.18828125000001],[-74.04980468749997,45.24140625000001],[-73.76464843749997,45.39545898437504],[-73.55810546875,45.425097656250045],[-73.51879882812497,45.458984375],[-73.48417968749996,45.586767578125006],[-73.46528320312501,45.632324218749964],[-73.36884765624998,45.75781250000006],[-73.25302734375,45.86367187500002],[-73.1595703125,46.01005859375002],[-72.98994140624998,46.10361328124998],[-72.73344726562496,46.181835937500004],[-72.49619140625,46.352685546874994],[-72.36616210937497,46.40478515625005],[-72.24013671874998,46.44208984375001],[-72.18720703124995,46.511523437500045],[-72.10927734374997,46.55122070312504],[-71.90092773437499,46.63193359375006],[-71.6712890625,46.653759765624955],[-71.43920898437497,46.72075195312502],[-71.26118164062495,46.75625],[-71.152001953125,46.819091796875],[-70.99326171874998,46.852197265624994],[-70.51948242187501,47.032519531250045],[-70.38808593749995,47.116943359375],[-70.21777343749999,47.28984375],[-70.069580078125,47.377783203125034],[-70.01713867187499,47.47143554687503],[-69.80224609375,47.6234375],[-69.58105468749997,47.82368164062501],[-69.47104492187503,47.96728515625006],[-69.30634765624994,48.047021484375044],[-68.987060546875,48.275],[-68.815673828125,48.36601562500001],[-68.74604492187493,48.37641601562501],[-68.55200195312503,48.45732421874995],[-68.43149414062498,48.54169921875001],[-68.23818359374994,48.62641601562504],[-67.88901367187495,48.73090820312501],[-67.56088867187498,48.85595703125],[-67.11748046874999,48.96416015625002],[-66.59809570312495,49.12636718750002],[-66.17817382812493,49.21313476562502],[-65.88281249999997,49.22568359375],[-65.52338867187493,49.26616210937499],[-65.39614257812494,49.262060546875034],[-64.83632812499994,49.191748046875006],[-64.567724609375,49.10478515624996],[-64.26181640624995,48.921875],[-64.2162109375,48.873632812500034],[-64.20878906249999,48.80620117187499],[-64.37075195312494,48.838964843750006],[-64.51372070312492,48.84111328124999],[-64.41455078125,48.803613281249994],[-64.24609374999994,48.69111328124998],[-64.253759765625,48.550390625],[-64.34882812500001,48.42319335937503],[-64.63315429687503,48.36049804687505],[-64.70576171874998,48.31059570312499],[-64.76450195312495,48.22807617187498],[-64.82207031249996,48.19648437500001],[-64.95991210937498,48.159863281250004],[-65.03608398437495,48.10625],[-65.259423828125,48.02124023437503],[-65.36000976562497,48.01113281250002],[-65.47587890624993,48.03149414062497],[-65.75468749999999,48.11166992187498],[-65.92670898437494,48.188867187499994],[-66.01254882812503,48.14667968750001],[-66.08310546875,48.10268554687502],[-66.24863281249998,48.11733398437496],[-66.32426757812493,48.097900390625],[-66.44897460937503,48.11962890624999],[-66.70439453125002,48.0224609375],[-66.63154296875001,48.011083984375006],[-66.42880859375,48.06694335937502],[-66.35961914062494,48.06064453125006],[-66.21020507812497,47.988574218750045],[-65.84941406250002,47.911035156250044],[-65.755712890625,47.85976562499999],[-65.66645507812495,47.696142578125055],[-65.60722656249996,47.67001953125006],[-65.48349609374998,47.68701171874997],[-65.34394531249998,47.767919921875034],[-65.22817382812502,47.81127929687497],[-65.00166015624995,47.84682617187502],[-65.04638671875,47.79301757812499],[-64.87397460937498,47.797216796875034],[-64.70322265625,47.72485351562502],[-64.76630859374998,47.673486328124966],[-64.85214843749998,47.56987304687499],[-64.91220703125003,47.36865234375002],[-65.08613281249993,47.233789062499994],[-65.31889648437502,47.101220703124994],[-65.26020507812495,47.069238281249966],[-65.19208984374995,47.04956054687505],[-65.0423828125,47.08881835937495],[-64.94243164062496,47.08618164062506],[-64.831396484375,47.06079101562503],[-64.865869140625,46.95781250000002],[-64.90576171874996,46.88793945312497],[-64.88251953124993,46.822851562500034],[-64.81669921874992,46.69868164062498],[-64.72587890624999,46.67143554687502],[-64.68950195312496,46.5123046875],[-64.641357421875,46.42558593750002],[-64.6478515625,46.35595703125006],[-64.55683593749993,46.31142578125002],[-64.54150390625,46.240332031250034],[-64.21181640625,46.22021484375003],[-64.14501953124997,46.19287109375002],[-63.91591796875003,46.16582031250004],[-63.872656249999984,46.14619140625004],[-63.83193359374996,46.107177734375],[-64.05639648437503,46.021337890625006],[-63.87470703124995,45.95922851562506],[-63.702880859374936,45.858007812500034],[-63.56767578124993,45.8779296875],[-63.509228515624926,45.87470703124998],[-63.35800781250003,45.81127929687502],[-63.31591796875,45.779882812500006],[-63.292773437499996,45.75195312499999],[-63.21689453124998,45.757958984374994],[-63.10791015624997,45.78242187500001],[-62.91079101562496,45.7763671875],[-62.70068359374997,45.740576171875006],[-62.718359375,45.68598632812498],[-62.750097656250006,45.64824218750002],[-62.58564453124998,45.66069335937499],[-62.48305664062496,45.62182617187506],[-62.44726562499994,45.640527343750044],[-62.421875,45.66464843749998],[-62.21772460937498,45.730859374999966],[-61.955517578124955,45.86816406249997],[-61.92358398437503,45.85117187500006],[-61.911621093749964,45.79912109375002],[-61.87724609374998,45.714208984375034],[-61.77651367187499,45.655615234375006],[-61.65688476562494,45.64218750000003],[-61.49228515624997,45.68701171875],[-61.42763671874996,45.648291015625034],[-61.350488281249966,45.57368164062501],[-61.27705078124993,45.47602539062501],[-61.28198242187494,45.441064453124994],[-61.37612304687494,45.410595703125004],[-61.46098632812501,45.36669921875003],[-61.10673828124995,45.3486328125],[-61.07080078125,45.330175781250055],[-61.03154296875002,45.29174804687505],[-61.06767578124998,45.252832031250016],[-61.10107421874997,45.23344726562499],[-61.165332031249996,45.25610351562497],[-61.28378906249997,45.23549804687505],[-61.38725585937499,45.18505859374997],[-61.497900390624984,45.157031250000045],[-61.56875,45.15380859375],[-61.647412109374976,45.130517578124966],[-61.719238281249936,45.09448242187499],[-61.79389648437499,45.08442382812498],[-62.02680664062498,44.99448242187506],[-62.26499023437503,44.936474609374955],[-62.51401367187494,44.843652343749966],[-62.76806640625002,44.78510742187504],[-63.03183593750003,44.71479492187501],[-63.08920898437497,44.70854492187499],[-63.155712890624955,44.71132812500002],[-63.30629882812499,44.64257812500002],[-63.38081054687499,44.65190429687499],[-63.45683593750002,44.639941406250045],[-63.544335937499994,44.65507812500002],[-63.60400390624997,44.68320312500006],[-63.558251953124966,44.610595703125],[-63.544824218749994,44.54375],[-63.56767578124993,44.51445312499996],[-63.60976562499999,44.47998046875005],[-63.761132812499994,44.486425781250034],[-63.82065429687497,44.51064453124999],[-63.89130859374998,44.54633789062498],[-63.923681640625,44.60385742187506],[-63.999707031249926,44.64492187499999],[-64.044921875,44.587890625],[-64.04462890624995,44.54541015625006],[-64.10087890624993,44.487451171874966],[-64.1669921875,44.58666992187503],[-64.28608398437491,44.55034179687499],[-64.33852539062497,44.44487304687499],[-64.31225585937503,44.414746093749976],[-64.27568359374993,44.33408203124998],[-64.33457031250002,44.29199218750002],[-64.37822265624996,44.30356445312498],[-64.46879882812493,44.185156250000034],[-64.57846679687498,44.14204101562504],[-64.69160156249995,44.021337890625034],[-64.82563476562498,43.92934570312505],[-64.86235351562499,43.867871093749955],[-65.08681640625,43.727197265624994],[-65.17207031249995,43.73139648437504],[-65.23491210937496,43.72675781249998],[-65.32958984374997,43.66811523437502],[-65.34428710937496,43.549609375000045],[-65.38608398437503,43.565283203125034],[-65.42851562499995,43.561425781250044],[-65.450439453125,43.52421875000001],[-65.48168945312497,43.51806640625],[-65.56445312499993,43.55327148437498],[-65.66191406249997,43.53403320312498],[-65.73813476562498,43.56074218750001],[-65.83530273437498,43.734375],[-65.88691406250001,43.79521484374999],[-65.97841796875,43.81484375],[-66.00214843749995,43.778125],[-66.03764648437499,43.74218750000003],[-66.125732421875,43.813818359375034],[-66.19252929687502,44.079687500000034],[-66.19306640624994,44.143847656250045],[-66.09956054687498,44.367480468750045],[-65.86801757812498,44.56879882812501],[-65.94194335937493,44.57553710937506],[-66.14638671875002,44.43593750000005],[-66.12529296874999,44.4697265625],[-66.090625,44.50493164062498],[-66.02167968749991,44.56171875000001],[-65.91704101562502,44.615087890625034],[-65.77768554687495,44.646191406249976],[-65.68183593749998,44.65092773437496],[-65.61577148437502,44.68041992187503],[-65.52001953124997,44.732666015625],[-65.50224609374999,44.760400390624966],[-65.58715820312496,44.72851562500006],[-65.72822265625001,44.69711914062506],[-65.69204101562502,44.73828125],[-65.65673828125,44.760302734375045],[-64.9029296875,45.12080078125003],[-64.75126953125002,45.18022460937495],[-64.44882812499995,45.256054687499955],[-64.40688476562502,45.30571289062496],[-64.44814453125,45.33745117187502],[-64.33076171874997,45.30932617187497],[-64.34042968749998,45.26821289062505],[-64.35883789062501,45.23823242187498],[-64.36572265625,45.18725585937497],[-64.35424804687497,45.138232421875045],[-64.23500976562498,45.114306640625045],[-64.13549804687496,45.023046875],[-64.18271484375,45.14702148437496],[-64.09316406249997,45.21708984375002],[-63.74833984374999,45.310888671875034],[-63.46025390624999,45.32109374999999],[-63.36801757812503,45.36479492187501],[-63.614453124999955,45.39414062500003],[-63.90644531249995,45.37817382812497],[-64.087158203125,45.41088867187497],[-64.33642578124997,45.389550781249994],[-64.60019531249998,45.410058593749994],[-64.68110351562493,45.382958984374966],[-64.74667968749998,45.32436523437502],[-64.83193359375002,45.350244140624966],[-64.87314453124998,45.35458984375006],[-64.91289062499997,45.37480468749999],[-64.82739257812497,45.47553710937501],[-64.56005859374997,45.62548828125],[-64.39707031249998,45.755859375],[-64.35112304687493,45.78320312499997],[-64.31464843749998,45.83569335937503],[-64.40405273437497,45.826904296875],[-64.48222656250002,45.80634765624998],[-64.53632812499993,45.866601562499994],[-64.63271484375002,45.94663085937506],[-64.64204101562498,45.91333007812503],[-64.59365234374997,45.81367187499998],[-64.77851562499998,45.63842773437497],[-64.89790039062494,45.6259765625],[-65.05727539062502,45.54423828124996],[-65.28232421875003,45.473095703124955],[-65.54501953124998,45.337304687499994],[-65.88447265624995,45.22290039062506],[-65.95561523437495,45.22246093749996],[-66.10976562500002,45.316601562499955],[-66.06665039062494,45.35947265624998],[-66.02656249999995,45.417578125],[-66.06489257812495,45.40083007812498],[-66.08974609374994,45.37563476562499],[-66.18271484374998,45.33520507812503],[-66.10732421874997,45.256933593750055],[-66.14375,45.22758789062502],[-66.25156249999993,45.18901367187499],[-66.351953125,45.13320312499999],[-66.43984374999994,45.09589843750001],[-66.51093749999995,45.14335937500002],[-66.70717773437497,45.083398437499966],[-66.87246093749995,45.067285156249966],[-66.90820312499997,45.09765625000003],[-66.91870117187497,45.145605468750034],[-66.97656249999994,45.15717773437498],[-67.08408203124999,45.14394531250005],[-67.12485351562498,45.16943359375],[-67.17099609374995,45.18198242187498],[-67.21323242187502,45.192529296874994],[-67.24960937499998,45.20078124999998],[-67.27070312499993,45.186718749999955],[-67.290673828125,45.167919921874955],[-67.31528320312495,45.15380859375],[-67.366943359375,45.17377929687498],[-67.39980468749994,45.21015625000004],[-67.45258789062495,45.247656250000034],[-67.47255859375002,45.27587890625],[-67.46196289062499,45.308691406250034],[-67.43852539062502,45.34038085937502],[-67.42792968749998,45.37792968750002],[-67.453759765625,45.421240234375034],[-67.47724609374998,45.445898437500006],[-67.49365234374997,45.47407226562498],[-67.48779296874999,45.50102539062496],[-67.45493164062498,45.51396484375002],[-67.42441406249998,45.530419921874994],[-67.41386718749996,45.565576171874966],[-67.43266601562495,45.603125],[-67.48662109374996,45.61840820312497],[-67.53120117187498,45.61254882812503],[-67.59575195312499,45.62075195312502],[-67.65791015624995,45.644189453124994],[-67.69897460937497,45.67119140624998],[-67.73066406249993,45.68647460937498],[-67.75532226562498,45.68647460937498],[-67.78466796875,45.70170898437499],[-67.80224609374994,45.7275390625],[-67.79990234375,45.769775390625],[-67.79169921874993,45.79555664062502],[-67.77529296874997,45.81787109375003],[-67.77412109374998,45.842529296875],[-67.78115234375,45.86015625000002],[-67.78227539062496,45.874169921875044],[-67.77763671874999,45.89179687499998],[-67.76704101562498,45.92700195312505],[-67.78466796875,45.952783203124966],[-67.78647460937503,46.042138671874966],[-67.78994140625002,46.209326171875],[-67.79252929687502,46.33740234375],[-67.79580078124997,46.49838867187503],[-67.797705078125,46.615625],[-67.80034179687502,46.779882812500006],[-67.80283203124998,46.93574218750004],[-67.806787109375,47.08281249999999],[-67.93486328124996,47.16762695312502],[-68.09677734375,47.27485351562501],[-68.23549804687502,47.34594726562503],[-68.31088867187499,47.3544921875],[-68.3580078125,47.34453125000002],[-68.37690429687495,47.316162109375],[-68.48037109375,47.285791015625016],[-68.66855468749993,47.25346679687502],[-68.82871093749996,47.20332031250001],[-68.88740234374995,47.20283203125001],[-68.93720703124997,47.21123046875002],[-69.003125,47.236425781250006],[-69.04858398437503,47.273632812499955],[-69.0642578125,47.33813476562503],[-69.0501953125,47.426611328125034],[-69.14628906249993,47.44477539062501],[-69.24287109374998,47.46298828124998],[-69.3021484375,47.402001953124994],[-69.35888671875,47.35063476562502],[-69.47148437499993,47.23867187500002],[-69.62978515624994,47.081347656250045],[-69.71752929687497,46.994873046875],[-69.87172851562494,46.84291992187505],[-70.00771484375002,46.708935546875004],[-70.03823242187502,46.57143554687499],[-70.0671875,46.441064453124966],[-70.17968749999997,46.34184570312501],[-70.248291015625,46.25087890625005],[-70.27890625000003,46.15],[-70.30449218749999,46.05737304687497],[-70.30644531249996,45.97983398437498],[-70.28715820312502,45.939160156249955],[-70.296240234375,45.90610351562506],[-70.33344726562495,45.86806640625005],[-70.407861328125,45.801904296874966],[-70.4210937499999,45.738232421874955],[-70.46660156249999,45.70683593749996],[-70.59638671874995,45.643994140624955],[-70.70224609375003,45.551367187500006],[-70.70742187500002,45.498925781249966],[-70.692138671875,45.45537109374999],[-70.68979492187498,45.42832031249998],[-70.71093750000003,45.40947265624996],[-70.75332031249997,45.41069335937502],[-70.79916992187498,45.40478515624997],[-70.83779296875002,45.36616210937501],[-70.83681640625,45.310693359374994],[-70.86503906249999,45.270703125],[-70.89799804687493,45.26245117187503],[-70.92622070312501,45.29072265625001],[-70.96015624999998,45.333105468750034],[-70.99990234374998,45.33725585937498],[-71.06025390624994,45.309130859375045],[-71.13466796875001,45.26284179687502],[-71.20161132812498,45.260351562500034],[-71.327294921875,45.29008789062496],[-71.41904296874995,45.200341796874994],[-71.51752929687495,45.00756835937497],[-71.93364257812499,45.00708007812505],[-72.34975585937492,45.00659179687503],[-72.76591796874999,45.00610351562503],[-73.18203124999994,45.00561523437503],[-73.59814453124997,45.00517578125002],[-74.01425781250003,45.00468750000002],[-74.43037109374998,45.00419921874998],[-74.663232421875,45.00390625000003],[-74.70888671874997,45.0038574218751]]],[[[-126.09208984374995,49.35400390625003],[-126.06401367187497,49.26362304687501],[-126.18681640624995,49.278125],[-126.22963867187498,49.29565429687506],[-126.2314453125,49.33906250000001],[-126.20854492187495,49.37978515625005],[-126.11528320312496,49.36503906249996],[-126.09208984374995,49.35400390625003]]],[[[-54.55439453125001,49.58886718749999],[-54.70869140625001,49.53066406250005],[-54.743847656249955,49.50776367187501],[-54.786523437499966,49.49614257812504],[-54.818505859374994,49.51445312500004],[-54.86357421875002,49.576074218749966],[-54.855419921874955,49.596582031249966],[-54.813085937500034,49.599365234375],[-54.78876953124998,49.59121093750005],[-54.782617187499966,49.57207031249996],[-54.7640625,49.562353515625034],[-54.733105468750004,49.562158203124994],[-54.61875,49.62207031250003],[-54.559179687500006,49.63149414062499],[-54.53769531249997,49.619970703125034],[-54.55439453125001,49.58886718749999]]],[[[-54.093701171874955,49.74443359374999],[-54.01992187500002,49.67949218749999],[-53.98066406250001,49.66196289062498],[-54.23837890625,49.591650390625034],[-54.26923828125001,49.58701171874997],[-54.286132812499964,49.595361328124994],[-54.28876953124998,49.660839843750004],[-54.27763671875002,49.71147460937502],[-54.258984374999955,49.71899414062506],[-54.19936523437496,49.68852539062496],[-54.13769531250003,49.75117187500004],[-54.093701171874955,49.74443359374999]]],[[[-124.153662109375,49.531152343749966],[-124.13979492187502,49.5103515625],[-124.36230468749997,49.588183593750045],[-124.45722656249994,49.63422851562501],[-124.49394531249997,49.66748046875003],[-124.51782226562501,49.68632812499996],[-124.63095703124999,49.73569335937497],[-124.64985351562501,49.75834960937499],[-124.62329101562504,49.77509765625001],[-124.54716796874996,49.76494140624999],[-124.42148437500002,49.72778320312497],[-124.30913085937497,49.66728515624999],[-124.153662109375,49.531152343749966]]],[[[-126.64121093749999,49.605810546875006],[-126.68041992187497,49.60136718749999],[-126.74340820312501,49.613476562499955],[-126.81420898437497,49.64208984374999],[-126.93857421874999,49.71845703125003],[-126.95126953124999,49.73569335937497],[-126.94003906250002,49.750488281249964],[-126.90488281249998,49.762792968750006],[-126.896875,49.78291015625001],[-126.92583007812497,49.837744140625006],[-126.82607421875,49.87236328125002],[-126.738134765625,49.84365234375005],[-126.69814453124995,49.808496093749994],[-126.64990234374997,49.74580078125001],[-126.628173828125,49.675146484375006],[-126.62578125,49.626806640625006],[-126.64121093749999,49.605810546875006]]],[[[-61.801123046875034,49.093896484374966],[-62.21953125,49.07910156249997],[-62.552636718749994,49.14086914062502],[-62.79960937499995,49.17070312499999],[-63.04150390624994,49.224951171875034],[-63.56586914062492,49.39931640625002],[-63.625878906249994,49.45991210937501],[-63.676220703124926,49.534326171874994],[-63.77661132812497,49.602001953125004],[-63.88491210937499,49.65771484375],[-64.44003906250003,49.827734375],[-64.48520507812499,49.88696289062497],[-64.37294921874994,49.92592773437502],[-64.24375,49.94438476562496],[-64.13144531249995,49.94165039062503],[-63.76015624999999,49.875244140625],[-63.2919921875,49.81684570312501],[-63.08881835937498,49.77270507812497],[-62.85854492187497,49.705468750000044],[-62.63344726562494,49.62392578125005],[-62.133007812499955,49.407080078125006],[-62.04306640625003,49.389794921875044],[-61.817138671875,49.28354492187498],[-61.73583984374997,49.203759765624966],[-61.69614257812495,49.139013671875],[-61.745507812499966,49.10576171874998],[-61.801123046875034,49.093896484374966]]],[[[-124.97773437500003,50.02958984374998],[-125.0015625,50.02075195312497],[-125.02597656249999,50.13408203124995],[-124.99565429687496,50.175195312499994],[-124.98701171874995,50.19584960937502],[-124.99082031250002,50.217138671875],[-124.93784179687496,50.165917968749966],[-124.91640624999997,50.13154296874998],[-124.907470703125,50.08398437499997],[-124.90844726562501,50.07128906250006],[-124.97773437500003,50.02958984374998]]],[[[-125.18413085937497,50.09711914062498],[-125.19511718749997,50.044335937499994],[-125.25957031249997,50.13002929687502],[-125.35844726562496,50.31152343749997],[-125.34531250000003,50.35395507812501],[-125.301171875,50.4140625],[-125.26093749999997,50.41782226562503],[-125.19599609375,50.389746093750006],[-125.13950195312502,50.339697265625034],[-125.12646484374994,50.320263671874976],[-125.09140625,50.26777343750004],[-125.0740234375,50.22065429687501],[-125.11298828124994,50.163476562499994],[-125.18413085937497,50.09711914062498]]],[[[-55.5361328125,50.71967773437498],[-55.56967773437497,50.70869140624998],[-55.60078124999992,50.709033203125045],[-55.62934570312498,50.72080078125003],[-55.633886718750006,50.74018554687498],[-55.60449218749997,50.78071289062498],[-55.527197265625034,50.801220703124976],[-55.46928710937496,50.79638671874997],[-55.47275390624995,50.77592773437499],[-55.503808593749994,50.74213867187504],[-55.5361328125,50.71967773437498]]],[[[-127.19731445312493,50.640380859375],[-126.70092773437499,50.515527343749966],[-126.20385742187497,50.45385742187499],[-125.83916015625,50.380810546874955],[-125.61523437499994,50.35854492187505],[-125.534326171875,50.342480468749976],[-125.48208007812501,50.316796874999966],[-125.42045898437496,50.25463867187502],[-125.31396484374994,50.106689453124964],[-125.23320312499993,50.01220703125],[-125.06640624999996,49.84819335937499],[-124.93466796874995,49.731640624999955],[-124.90463867187495,49.68535156250004],[-124.93242187499995,49.67045898437502],[-124.93066406250003,49.643164062500055],[-124.83061523437497,49.53007812500002],[-124.64287109375002,49.42866210937495],[-124.495947265625,49.380273437499966],[-124.18588867187498,49.30058593749999],[-123.99580078125,49.224023437500016],[-123.93715820312495,49.170800781250016],[-123.85449218749999,49.11918945312498],[-123.82001953124998,49.08349609375],[-123.75229492187503,48.951220703125045],[-123.6265625,48.82402343749996],[-123.497021484375,48.58208007812499],[-123.47285156249995,48.602294921875],[-123.45795898437503,48.67441406250003],[-123.44306640625,48.690478515625045],[-123.41547851562497,48.69819335937501],[-123.389892578125,48.67021484374999],[-123.36630859375,48.60644531250006],[-123.28378906249996,48.45517578125006],[-123.31064453125002,48.41103515625002],[-123.33452148437502,48.406494140625],[-123.44589843749996,48.42724609375005],[-123.48457031250004,48.40009765625004],[-123.53647460937503,48.344970703125],[-123.57314453124994,48.32280273437499],[-123.59462890624997,48.33354492187496],[-123.91694335937501,48.38657226562503],[-124.11523437499999,48.436425781249966],[-124.37622070312496,48.515234375000034],[-124.689404296875,48.597314453124966],[-124.86826171875002,48.65361328124999],[-125.017236328125,48.71147460937496],[-125.12070312500002,48.76079101562496],[-125.140283203125,48.80263671874996],[-125.13569335937495,48.822412109374994],[-124.93476562499995,48.95634765625002],[-124.84965820312496,49.02827148437501],[-124.81704101562497,49.083300781250045],[-124.80024414062501,49.14155273437501],[-124.81264648437497,49.212646484375],[-124.820751953125,49.207128906250034],[-124.83872070312503,49.13906250000002],[-124.86831054687502,49.07851562500005],[-124.904443359375,49.03100585937503],[-124.92734374999998,49.01420898437499],[-125.168212890625,48.99101562499999],[-125.36274414062494,48.99824218750003],[-125.46030273437502,48.941064453125016],[-125.489453125,48.933789062499955],[-125.543115234375,48.95283203125001],[-125.66049804687503,49.029150390625006],[-125.82851562499997,49.09184570312499],[-125.81196289062498,49.10722656250002],[-125.70229492187502,49.13920898437496],[-125.64423828125001,49.18579101562505],[-125.65463867187499,49.193212890625034],[-125.69370117187495,49.19038085937501],[-125.72802734375001,49.199853515624966],[-125.79638671875,49.260205078125004],[-125.83544921874997,49.27666015624998],[-125.91835937499997,49.24951171874997],[-125.95166015625001,49.24804687500003],[-125.98383789062501,49.28789062499996],[-125.9376953125,49.37978515625005],[-125.93540039062499,49.40146484375],[-126.02031249999997,49.368017578125034],[-126.04833984375,49.37900390625006],[-126.07490234374998,49.408789062500006],[-126.099853515625,49.421289062499966],[-126.16884765624995,49.415185546874966],[-126.24360351562498,49.44267578124999],[-126.26972656249998,49.431884765625],[-126.27963867187498,49.3921875],[-126.30449218749996,49.382031249999955],[-126.41860351562502,49.44902343750002],[-126.44453124999998,49.45112304687501],[-126.49985351562495,49.39995117187498],[-126.51914062499998,49.39677734375004],[-126.54853515625001,49.41894531250003],[-126.563720703125,49.543261718750045],[-126.55747070312498,49.57861328125006],[-126.54189453125,49.59047851562496],[-126.44277343749997,49.619287109374994],[-126.1578125,49.65014648437506],[-126.13408203124996,49.672314453124955],[-126.34755859374992,49.660839843750004],[-126.40317382812499,49.677734375],[-126.46279296874997,49.72021484375003],[-126.52524414062498,49.71958007812498],[-126.55825195312495,49.73339843750006],[-126.59287109374999,49.76411132812501],[-126.68310546874999,49.87646484374997],[-126.74462890625,49.90493164062499],[-126.84936523437503,49.92280273437501],[-126.90332031250001,49.94414062499999],[-126.92607421875003,49.93471679687502],[-126.94794921874994,49.90268554687497],[-126.97709960937495,49.88281250000003],[-127.04873046874997,49.87153320312504],[-127.11430664062499,49.879736328125034],[-127.16552734374994,49.91044921874996],[-127.1958984375,49.949169921874955],[-127.20751953124999,49.99243164062497],[-127.17910156249995,50.05029296875002],[-127.179638671875,50.073144531249994],[-127.192333984375,50.09990234375001],[-127.21567382812495,50.121484374999966],[-127.24980468749997,50.13798828124995],[-127.26840820312496,50.12934570312498],[-127.27153320312497,50.095556640625034],[-127.2900390625,50.07084960937496],[-127.34941406249995,50.051953125],[-127.39790039062497,50.08500976562502],[-127.42978515624999,50.13085937500003],[-127.46713867187503,50.163427734375006],[-127.67485351562497,50.16333007812497],[-127.770458984375,50.12114257812499],[-127.81630859375001,50.11772460937502],[-127.86391601562494,50.12773437500001],[-127.87299804687501,50.15009765625004],[-127.82817382812495,50.21142578125],[-127.83916015624999,50.29321289062497],[-127.85083007812496,50.31372070312497],[-127.94667968750002,50.32622070312504],[-127.96293945312496,50.34599609374998],[-127.90585937499998,50.445214843750016],[-127.87402343749996,50.46396484375003],[-127.83154296875001,50.47104492187506],[-127.64140625,50.479101562500006],[-127.578125,50.46494140625006],[-127.48652343749997,50.404638671875034],[-127.48935546875002,50.427343750000034],[-127.52402343749998,50.49575195312502],[-127.52900390625003,50.53676757812502],[-127.46591796874995,50.58310546875006],[-127.52622070312498,50.59667968749997],[-127.75146484374996,50.60737304687501],[-127.74970703124994,50.57773437500003],[-127.73115234374998,50.535742187500006],[-127.86469726562503,50.498876953125034],[-127.96367187500002,50.49262695312501],[-128.05834960937494,50.498486328124955],[-128.13564453124997,50.52055664062501],[-128.267431640625,50.609277343749966],[-128.34990234375002,50.69658203124998],[-128.34604492187503,50.74423828125],[-128.300830078125,50.794140624999976],[-128.24155273437498,50.82817382812499],[-128.101318359375,50.85776367187506],[-127.91806640624998,50.860546875],[-127.71303710937494,50.82075195312498],[-127.19731445312493,50.640380859375]]],[[[-55.45874023437494,51.53652343750005],[-55.532421874999955,51.436962890625004],[-55.58339843749994,51.38857421875002],[-55.63076171874999,51.372900390625006],[-55.73071289062503,51.35869140624996],[-55.94116210937499,51.343017578124964],[-56.031103515625034,51.32836914062499],[-56.043945312499964,51.26186523437505],[-56.03066406250002,51.226904296875034],[-55.999902343749966,51.19926757812499],[-55.96083984375002,51.19140625],[-55.87353515624999,51.207910156249966],[-55.84111328124996,51.20507812500003],[-55.815087890624994,51.19116210937502],[-55.79550781249998,51.166162109374994],[-55.785351562499955,51.131445312500034],[-55.78471679687502,51.08706054687505],[-55.8,51.03330078125003],[-55.87138671874998,50.90737304687502],[-55.96201171874998,50.83769531249995],[-56.078125,50.78095703125004],[-56.106542968750034,50.75927734374997],[-56.121191406250006,50.733789062500016],[-56.13564453124999,50.650976562500034],[-56.19575195312498,50.584765625000045],[-56.382421875,50.41699218750006],[-56.454345703125,50.380029296874994],[-56.45478515625001,50.350488281249994],[-56.48393554687499,50.27084960937503],[-56.53935546875002,50.20673828125004],[-56.693994140624966,50.05966796875],[-56.73232421874996,50.007714843749994],[-56.74956054687501,49.96655273437503],[-56.74716796874998,49.90849609375002],[-56.75410156249995,49.882910156250034],[-56.789501953124976,49.83374023437497],[-56.8388671875,49.787744140625016],[-56.84863281249994,49.765332031249976],[-56.82919921874998,49.72460937500003],[-56.809228515624994,49.71040039062498],[-56.80688476562497,49.67333984374997],[-56.82216796874996,49.613476562499955],[-56.756787109374976,49.65161132812499],[-56.61064453124996,49.787695312500006],[-56.500927734374976,49.86962890625],[-56.42758789062498,49.89741210937498],[-56.376416015624926,49.933691406250006],[-56.32182617187501,50.01376953125006],[-56.24707031249997,50.090087890624964],[-56.179394531249955,50.114990234375],[-56.148388671874926,50.10034179687503],[-56.122167968750006,50.062841796875034],[-56.12744140625003,50.01513671874997],[-56.16416015624995,49.957275390625],[-56.161279296874994,49.94013671874998],[-56.075,49.98261718750001],[-55.92700195312494,50.01777343749998],[-55.87333984374995,50.01313476562501],[-55.764746093750034,49.96044921875002],[-55.67446289062502,49.96655273437503],[-55.53002929687499,49.99716796875006],[-55.50292968749997,49.98315429687503],[-55.527001953124994,49.936767578125],[-55.58369140625001,49.89238281250001],[-55.71762695312503,49.829003906249994],[-56.03999023437498,49.7046875],[-56.14018554687496,49.61914062500006],[-56.121191406250006,49.62172851562505],[-56.051611328125034,49.65839843749995],[-55.97851562499997,49.678125],[-55.90185546874997,49.68085937500001],[-55.869824218749955,49.67016601562506],[-55.88232421874999,49.64594726562501],[-55.892041015624926,49.58027343750004],[-56.08730468750002,49.45195312499999],[-56.041210937499955,49.45683593750002],[-55.81523437500002,49.51528320312502],[-55.678125,49.43461914062502],[-55.48974609374997,49.4625],[-55.375927734374955,49.489746093749964],[-55.379150390625,49.472900390625],[-55.35449218750003,49.43769531250004],[-55.355371093750016,49.380859375],[-55.34384765624997,49.372900390625055],[-55.28994140625002,49.391943359375034],[-55.28017578124999,49.412744140624994],[-55.283007812499925,49.51381835937499],[-55.266357421875,49.52392578125],[-55.22954101562496,49.508154296875006],[-55.20703125,49.48203125],[-55.20029296874998,49.40849609375002],[-55.225,49.33466796875001],[-55.25932617187498,49.26699218749996],[-55.342480468749976,49.168115234374994],[-55.331933593749966,49.125585937500034],[-55.35317382812502,49.079443359375055],[-55.33476562500002,49.077880859375],[-55.25234374999999,49.12089843749996],[-55.24736328124996,49.13857421875002],[-55.25380859374993,49.17963867187504],[-55.24453125,49.19980468750006],[-55.176123046875006,49.24443359374999],[-55.06318359375001,49.29736328125003],[-55.02617187500002,49.30537109374998],[-55.010400390624994,49.293017578125045],[-55.01591796874996,49.26035156250003],[-54.982617187499926,49.26811523437502],[-54.91054687499999,49.31625976562498],[-54.843652343749966,49.345410156249955],[-54.781884765624994,49.355468749999964],[-54.71762695312495,49.38857421874996],[-54.65087890625003,49.44453125],[-54.579052734374955,49.490820312500006],[-54.50219726562503,49.52734375],[-54.46918945312495,49.52978515625006],[-54.480615234374994,49.46933593749997],[-54.465429687500006,49.400537109374994],[-54.46347656249995,49.34174804687501],[-54.44824218749997,49.329443359375006],[-54.3890625,49.39213867187499],[-54.35615234374995,49.41503906250002],[-54.316748046875006,49.42412109375001],[-54.27080078124996,49.419287109375006],[-53.957714843749955,49.441845703124976],[-53.862451171874994,49.42631835937502],[-53.754980468750034,49.38530273437502],[-53.61943359374995,49.321630859375006],[-53.56958007812499,49.26416015625003],[-53.56005859375003,49.19169921875002],[-53.57343750000001,49.141210937500034],[-53.671142578125,49.07753906250002],[-53.75805664062494,49.03540039062506],[-53.809326171875,48.99340820312503],[-53.82490234374998,48.95136718749998],[-53.84521484375003,48.92543945312502],[-53.90322265624994,48.88916015624999],[-54.16127929687494,48.787695312500034],[-54.099511718749966,48.78476562500006],[-53.95068359375002,48.80678710937502],[-53.852880859375006,48.81132812499996],[-53.847753906250006,48.79667968749999],[-53.88681640624998,48.76782226562497],[-53.961523437500006,48.738867187500034],[-53.96958007812498,48.72490234375002],[-53.966015624999955,48.70668945312505],[-53.886132812500016,48.684667968750006],[-53.78408203125002,48.695410156250055],[-53.69804687499999,48.67983398437499],[-53.70634765624999,48.65551757812503],[-53.774609374999955,48.57631835937505],[-53.794628906249955,48.5263671875],[-53.88554687499999,48.48457031250001],[-54.06777343749999,48.41884765625002],[-54.11445312499998,48.393603515625045],[-54.10424804687497,48.38837890625003],[-53.93701171875,48.436621093750006],[-53.852734374999955,48.448828125],[-53.79931640624999,48.44921875],[-53.738867187500034,48.49580078124998],[-53.644433593749994,48.51123046875003],[-53.55205078124999,48.48178710937506],[-53.41132812500001,48.56215820312499],[-53.361083984375,48.572607421875006],[-53.27543945312496,48.56333007812498],[-53.22026367187499,48.577880859375],[-53.127343749999966,48.63256835937506],[-53.05727539062499,48.659033203125034],[-53.042675781249955,48.656640624999966],[-53.027587890625,48.634716796874955],[-53.02075195312503,48.57163085937498],[-53.037304687499926,48.515869140625],[-53.060205078124966,48.480322265625034],[-53.1357421875,48.40185546875003],[-53.18212890624994,48.374365234375034],[-53.22509765625,48.36401367187506],[-53.301171874999966,48.3681640625],[-53.33432617187494,48.35595703125],[-53.40551757812497,48.294335937499966],[-53.53120117187501,48.231884765624955],[-53.60976562500002,48.20771484375001],[-53.560205078124966,48.17382812500003],[-53.54184570312494,48.10844726562501],[-53.56943359374998,48.088085937499955],[-53.704296875,48.067919921875045],[-53.710156249999955,48.056835937499976],[-53.75820312499999,48.042382812499994],[-53.869580078124926,48.019677734374966],[-53.79355468749997,48.00971679687498],[-53.653027343749955,48.02573242187506],[-53.63823242187496,48.01464843750003],[-53.657617187499994,47.96865234374996],[-53.69501953124998,47.92119140624998],[-53.861669921875006,47.79926757812501],[-53.863671874999966,47.78701171874999],[-53.837744140625034,47.72724609374998],[-53.805371093750004,47.68203125000002],[-53.76513671874997,47.65009765625001],[-53.67236328125,47.64824218749999],[-53.60375976562497,47.66230468750001],[-53.503759765625,47.74384765625001],[-53.28271484375,47.99785156249995],[-53.08544921874997,48.068505859374966],[-52.920996093750034,48.147070312500006],[-52.88330078125,48.131152343750045],[-52.86601562499993,48.11298828124998],[-52.872021484375004,48.09394531250001],[-52.95498046874994,48.029296874999964],[-52.99824218749995,47.975927734375034],[-53.11083984374999,47.81191406250002],[-53.15385742187496,47.73457031249998],[-53.17553710937502,47.65297851562496],[-53.169824218750016,47.51210937500005],[-53.15766601562492,47.48779296874997],[-53.122460937499966,47.45512695312499],[-53.05683593750001,47.48310546874998],[-52.94501953124995,47.55283203124998],[-52.873193359374994,47.61943359374995],[-52.81694335937498,47.727880859375034],[-52.782421874999955,47.769433593749966],[-52.74492187499995,47.768945312499966],[-52.71142578124997,47.74531250000004],[-52.703271484374994,47.69301757812505],[-52.67216796874996,47.62177734375001],[-52.653662109375034,47.549414062500006],[-52.66850585937493,47.469824218750034],[-52.68364257812499,47.42631835937496],[-52.91240234374998,47.10322265624995],[-52.88813476562501,47.04584960937501],[-52.88208007812503,47.011083984375034],[-52.88920898437496,46.97412109375003],[-52.96171874999999,46.81943359375006],[-53.03193359374998,46.72275390624998],[-53.06977539062498,46.68125],[-53.11484375,46.65581054687501],[-53.16699218749997,46.646484375],[-53.21367187499998,46.660498046875006],[-53.25488281250003,46.69770507812504],[-53.29130859374999,46.71704101562497],[-53.32304687499996,46.71835937499998],[-53.38173828125002,46.71142578125],[-53.536132812499936,46.63251953124998],[-53.567773437499994,46.628271484375006],[-53.58979492187495,46.63886718749995],[-53.61635742187494,46.680273437500034],[-53.59516601562498,46.88847656249999],[-53.58134765625001,46.95727539062497],[-53.61215820312498,47.01035156250006],[-53.57963867187502,47.09941406249999],[-53.57846679687494,47.133251953124955],[-53.597363281249976,47.145996093749964],[-53.63637695312494,47.13769531249997],[-53.69536132812496,47.09291992187499],[-53.774316406249966,47.011816406250006],[-53.86000976562502,46.939453125],[-54.00957031249993,46.83959960937499],[-54.07602539062498,46.819970703124994],[-54.102392578125034,46.824902343750004],[-54.1328125,46.838574218749955],[-54.173730468749994,46.88037109375003],[-54.17329101562498,46.91718749999998],[-54.155224609374955,46.96748046875001],[-54.092675781249994,47.08623046874996],[-53.97050781249998,47.26196289062497],[-53.86909179687501,47.38701171874996],[-53.849511718750016,47.44033203124999],[-53.877880859374926,47.46357421875001],[-53.90083007812498,47.50932617187502],[-53.93974609375002,47.64467773437505],[-53.98901367187503,47.756201171875034],[-54.04726562499999,47.805615234374976],[-54.191845703124955,47.85981445312501],[-54.21840820312494,47.84672851562499],[-54.23388671875,47.77167968749998],[-54.404687499999966,47.55590820312499],[-54.434472656249994,47.462304687500016],[-54.455908203125006,47.42758789062506],[-54.488134765625006,47.40385742187502],[-54.56254882812499,47.37519531250004],[-54.542382812499966,47.42509765624998],[-54.463232421875006,47.53623046874998],[-54.47392578124996,47.54707031249998],[-54.57451171875002,47.45776367187497],[-54.65117187500002,47.408203125],[-54.74467773437496,47.39545898437498],[-54.801513671875,47.39863281250001],[-54.856640624999955,47.38500976562499],[-55.09042968749998,47.17392578124998],[-55.09921874999998,47.103564453125045],[-55.139648437499936,47.04594726562502],[-55.25493164062499,46.941748046875006],[-55.315722656249925,46.905712890624955],[-55.401269531249966,46.89926757812498],[-55.47929687499996,46.91728515625002],[-55.530712890624955,46.91401367187495],[-55.65234374999994,46.88144531249998],[-55.788525390624976,46.86723632812502],[-55.84472656249997,46.873828125000045],[-55.88061523437499,46.88720703125],[-55.94990234375001,46.92768554687498],[-55.958203125,46.95639648437498],[-55.954492187499966,46.973242187500034],[-55.91923828124996,47.01689453124996],[-55.83837890625003,47.071630859375006],[-55.77182617187495,47.09208984375002],[-55.61005859374995,47.11962890625003],[-55.49150390624996,47.16064453125003],[-55.40122070312495,47.22148437499998],[-55.36088867187499,47.25859374999999],[-55.190820312499994,47.448974609374964],[-54.97563476562493,47.51616210937499],[-54.86953125,47.57089843750003],[-54.79536132812498,47.640332031249955],[-54.78461914062501,47.664746093749955],[-54.891015625000016,47.62949218749998],[-54.945947265625016,47.620849609375],[-55.03500976562494,47.63388671874998],[-55.074560546875006,47.657568359375006],[-55.19658203125002,47.650048828124994],[-55.366308593750034,47.66108398437501],[-55.390771484374966,47.64287109375004],[-55.41269531249998,47.550390625000034],[-55.434667968750006,47.50126953124996],[-55.46064453124998,47.484765624999966],[-55.498632812500006,47.475048828124955],[-55.57612304687498,47.46523437499999],[-55.77470703125002,47.498291015624964],[-55.81137695312503,47.51635742187503],[-55.86206054687497,47.53007812499996],[-56.08134765624996,47.49995117187495],[-56.12724609374999,47.502832031250016],[-56.08369140624998,47.524511718750006],[-55.867089843749994,47.592333984375045],[-55.844384765624994,47.787841796875],[-55.85791015625,47.81918945312498],[-55.91845703125,47.79189453125002],[-56.0201171875,47.76372070312496],[-56.08964843749995,47.771875],[-56.12143554687495,47.78916015625],[-56.150585937499926,47.774511718750034],[-56.22128906249995,47.67138671874997],[-56.26298828125001,47.65844726562499],[-56.32578125,47.65449218750001],[-56.459570312500006,47.616943359375],[-56.722314453124966,47.59228515625003],[-56.774121093749955,47.56499023437498],[-56.95249023437498,47.57446289062506],[-57.47343749999995,47.63110351562502],[-57.65981445312503,47.62539062500002],[-57.88408203124996,47.66000976562498],[-57.92553710937497,47.67490234374998],[-58.239306640624925,47.668847656249994],[-58.33320312499999,47.676855468750034],[-58.32695312499993,47.719873046874994],[-58.33686523437501,47.73085937500002],[-58.42802734375001,47.68339843750004],[-58.50888671874997,47.65258789062497],[-58.61313476562497,47.62622070312502],[-58.94116210937502,47.58046875000002],[-59.11694335937494,47.57070312499999],[-59.21928710937501,47.6025390625],[-59.259765625,47.63417968750005],[-59.32065429687497,47.736914062500006],[-59.36240234374995,47.86567382812495],[-59.362060546874964,47.88896484374999],[-59.34086914062502,47.933642578125045],[-59.272070312500034,47.99555664062504],[-58.960839843749945,48.159375],[-58.71059570312494,48.325048828125006],[-58.60498046875,48.41132812500001],[-58.502636718749955,48.44204101562505],[-58.335546875,48.51367187499997],[-58.330224609374994,48.52211914062502],[-58.49223632812496,48.51303710937503],[-58.606152343749976,48.532861328124994],[-58.72255859374999,48.54072265624998],[-58.943798828124926,48.521777343750045],[-59.16679687499999,48.521777343750045],[-59.167675781249976,48.55849609374996],[-59.063427734374976,48.62768554687503],[-58.84179687500002,48.74643554687498],[-58.81918945312495,48.74682617187506],[-58.88710937500002,48.691552734374994],[-58.906445312499955,48.65019531249998],[-58.87724609374995,48.622705078124994],[-58.843408203124994,48.605322265625006],[-58.716455078124994,48.59804687500002],[-58.687353515625,48.62207031250003],[-58.6416015625,48.74941406250005],[-58.545605468749976,48.896875],[-58.49375,49.00322265624998],[-58.403662109375034,49.08432617187498],[-58.35869140625002,49.09653320312497],[-58.31875,49.08134765624999],[-58.186132812500034,49.061914062500016],[-58.04965820312503,48.98754882812497],[-58.005566406249926,48.98125],[-57.99052734374996,48.98793945312496],[-58.04057617187496,49.00976562499997],[-58.081835937500024,49.04472656249999],[-58.09892578124993,49.07744140624999],[-58.049072265625,49.17998046875002],[-57.99067382812501,49.20947265624997],[-57.98007812499998,49.229638671874994],[-58.096875,49.230078125],[-58.19091796875003,49.25874023437498],[-58.218896484374966,49.30512695312501],[-58.21337890625,49.38666992187501],[-58.18271484374995,49.435400390625006],[-58.10742187499997,49.499707031249955],[-58.01582031249998,49.54248046874997],[-57.96123046874995,49.53154296874996],[-57.856054687500034,49.47382812500001],[-57.79130859374999,49.48999023437503],[-57.798828125,49.50854492187497],[-57.89746093750002,49.600390625000045],[-57.92905273437498,49.668408203124955],[-57.92617187499999,49.700830078124994],[-57.7125,50.02490234375002],[-57.60795898437502,50.19877929687502],[-57.465527343749955,50.46367187499996],[-57.4326171875,50.50581054687504],[-57.36044921874995,50.583935546874955],[-57.33056640625001,50.60517578125001],[-57.237402343750006,50.605371093749966],[-57.179589843749966,50.614843750000034],[-57.26416015624997,50.649365234374955],[-57.29443359375,50.67338867187496],[-57.29799804687502,50.69873046874997],[-57.27490234375003,50.72529296874998],[-57.24213867187501,50.74492187499999],[-57.13164062499996,50.78740234375002],[-57.05327148437499,50.857324218749966],[-57.00566406249996,50.93964843750003],[-57.01274414062499,50.96772460937498],[-57.037304687499926,50.99565429687499],[-57.03593750000002,51.01083984374998],[-56.97636718749996,51.027978515624994],[-56.825146484374955,51.12573242187503],[-56.80546875,51.14448242187501],[-56.75019531249998,51.27490234375003],[-56.68242187500002,51.332763671875],[-56.61904296874999,51.36245117187502],[-56.51796874999999,51.399316406249994],[-56.20737304687495,51.48862304687506],[-56.025585937499955,51.56835937500006],[-55.90209960937503,51.56391601562504],[-55.8658203125,51.508300781249964],[-55.6904296875,51.471337890624994],[-55.659570312499994,51.51103515625001],[-55.700634765624926,51.559423828125006],[-55.666406249999966,51.57890624999999],[-55.521630859374966,51.596386718749976],[-55.49643554687497,51.58984374999997],[-55.45322265624998,51.56230468749996],[-55.45874023437494,51.53652343750005]]],[[[-127.92465820312498,51.47387695312497],[-127.94125976562499,51.45717773437505],[-127.98125,51.457226562499955],[-128.04453124999998,51.474023437500016],[-128.091796875,51.51113281250002],[-128.14877929687498,51.62670898437503],[-128.14238281250002,51.64658203125],[-128.12275390625,51.66679687500002],[-128.03173828125006,51.70839843749996],[-127.99868164062495,51.70380859375001],[-127.98681640625001,51.673583984375],[-127.93251953124997,51.60546874999997],[-127.91635742187498,51.585449218749964],[-127.91630859374997,51.506201171875006],[-127.92465820312498,51.47387695312497]]],[[[-55.361230468749966,51.88964843750005],[-55.408886718750004,51.888818359374966],[-55.419628906249976,51.900048828125016],[-55.399804687500016,51.93847656250006],[-55.34648437499999,51.98286132812504],[-55.274072265624994,51.99516601562495],[-55.29355468749995,51.92998046874999],[-55.361230468749966,51.88964843750005]]],[[[-79.38427734374997,51.95195312500004],[-79.42558593749996,51.94487304687502],[-79.52060546874993,51.95292968749996],[-79.596875,51.97802734375003],[-79.64375,52.01005859374996],[-79.33486328124997,52.09814453124997],[-79.27128906249996,52.086816406249966],[-79.27021484374993,52.07109375],[-79.31660156249995,52.02392578125006],[-79.328955078125,51.992285156250006],[-79.35151367187498,51.96831054687499],[-79.38427734374997,51.95195312500004]]],[[[-131.029296875,51.96162109374995],[-131.04726562500002,51.95971679687503],[-131.08051757812495,51.98041992187498],[-131.10341796875002,52.01386718750004],[-131.11733398437502,52.10102539062504],[-131.10712890624995,52.13657226562498],[-131.098095703125,52.150634765625],[-131.01064453125002,52.09526367187502],[-131.029296875,51.96162109374995]]],[[[-128.36875,52.40087890624999],[-128.44541015625003,52.3875],[-128.41987304687495,52.44111328125004],[-128.4125,52.472851562500004],[-128.42626953125003,52.50273437499999],[-128.43593749999997,52.56035156249999],[-128.43979492187503,52.696386718750006],[-128.36489257812494,52.781884765624994],[-128.24726562499995,52.784375],[-128.24843749999997,52.74121093749997],[-128.29814453124996,52.54824218750002],[-128.32377929687505,52.45898437500003],[-128.3435546875,52.42607421874999],[-128.36875,52.40087890624999]]],[[[-128.93686523437498,52.51000976562503],[-128.96870117187495,52.464257812500044],[-129.10234375000002,52.574365234374994],[-129.15102539062497,52.605322265625],[-129.25048828125,52.72216796875],[-129.26777343749995,52.77236328125002],[-129.26352539062498,52.80078125000003],[-129.24594726562498,52.81123046875003],[-129.21503906249995,52.80385742187505],[-129.18618164062497,52.79125976562505],[-128.99399414062498,52.661718750000034],[-128.94033203124997,52.60073242187505],[-128.93686523437498,52.51000976562503]]],[[[-129.313720703125,52.99218750000003],[-129.32871093750003,52.984228515625006],[-129.37001953125002,52.99760742187499],[-129.40971679687502,53.02373046874999],[-129.47778320312503,53.09775390625006],[-129.50014648437497,53.12890625],[-129.51474609375,53.17939453124998],[-129.50107421874998,53.188330078125034],[-129.47143554687497,53.18300781250002],[-129.45073242187502,53.17470703125002],[-129.34350585937503,53.052783203125045],[-129.313720703125,52.99218750000003]]],[[[-80.73168945312494,52.74726562499998],[-80.80234374999993,52.733984375],[-81.00986328124995,52.76064453125002],[-81.09658203124994,52.77988281250003],[-81.35224609374997,52.85200195312498],[-81.83906249999995,52.95791015624999],[-82.00502929687501,53.01049804687503],[-82.03925781249997,53.04990234374998],[-81.95112304687495,53.132226562499966],[-81.90136718749994,53.16557617187501],[-81.84731445312492,53.18627929687497],[-81.33535156250002,53.22426757812499],[-81.135595703125,53.20581054687502],[-80.90039062499994,53.03715820312496],[-80.76533203124995,52.92324218750002],[-80.71044921874997,52.83159179687501],[-80.70952148437496,52.78740234374999],[-80.73168945312494,52.74726562499998]]],[[[-131.7537109375,53.195556640625],[-131.65234374999997,53.102978515624955],[-131.62216796875,53.020068359375045],[-131.63466796874997,52.92216796874999],[-131.795263671875,52.88505859374999],[-131.8796875,52.914648437500055],[-131.91635742187498,52.90913085937498],[-131.97177734374998,52.87983398437498],[-131.90439453125003,52.86669921875005],[-131.81005859375,52.818701171875034],[-131.727294921875,52.75639648437496],[-131.61059570312494,52.745214843750006],[-131.45522460937502,52.70170898437502],[-131.572802734375,52.623339843750045],[-131.59057617187494,52.578222656250006],[-131.443896484375,52.45332031250004],[-131.42998046875002,52.422119140625],[-131.38300781250004,52.41572265625001],[-131.27363281250004,52.42583007812504],[-131.25971679687495,52.415917968749966],[-131.2599609375,52.39003906250002],[-131.32705078125002,52.317529296874994],[-131.31992187499998,52.30307617187498],[-131.25917968749997,52.291650390624966],[-131.142626953125,52.291113281250034],[-131.11616210937498,52.219091796875006],[-131.221533203125,52.15361328124999],[-131.421875,52.237988281249955],[-131.51113281250002,52.322070312500045],[-131.56206054687502,52.39995117187499],[-131.62368164062497,52.443994140624994],[-131.80966796875,52.54169921875001],[-132.092236328125,52.752783203125034],[-132.16508789062493,52.783300781250034],[-132.23857421874996,52.86679687499998],[-132.25996093749998,52.906982421875],[-132.25810546875,52.93388671874999],[-132.22954101562502,52.948095703125034],[-132.14492187500002,52.957470703124976],[-132.14375,52.99931640624999],[-132.46870117187498,53.071875],[-132.50483398437495,53.08671875000002],[-132.54677734374997,53.1375],[-132.52421875,53.14492187499999],[-132.34541015625,53.13608398437503],[-132.15390624999998,53.160498046875034],[-132.0359375,53.17915039062504],[-131.98950195312494,53.20195312499996],[-131.89311523437496,53.23144531250003],[-131.85346679687507,53.22973632812502],[-131.7537109375,53.195556640625]]],[[[-128.55244140624998,52.93974609375001],[-128.50654296875004,52.620703125000034],[-128.50991210937502,52.51860351562502],[-128.57680664062497,52.451806640624994],[-128.6240234375,52.33989257812502],[-128.678955078125,52.289648437500006],[-128.730908203125,52.356542968750034],[-128.73554687499998,52.467724609374955],[-128.74941406249997,52.556054687499994],[-128.76645507812498,52.59838867187502],[-128.74633789062494,52.763378906249955],[-128.76962890624998,52.75122070312497],[-128.83120117187502,52.67880859375006],[-128.89980468749994,52.67382812500003],[-129.02285156249997,52.75595703125006],[-129.08471679687497,52.82246093750001],[-129.094873046875,52.89184570312502],[-129.175927734375,52.964941406250006],[-129.184326171875,52.99067382812501],[-129.177685546875,53.017919921875034],[-129.111083984375,53.090673828125034],[-129.08408203125003,53.13969726562498],[-129.0603515625,53.240625],[-129.033251953125,53.279931640625044],[-128.97021484375,53.27436523437498],[-128.85771484375,53.22856445312496],[-128.740380859375,53.178857421874966],[-128.63266601562498,53.1125],[-128.55244140624998,52.93974609375001]]],[[[-129.167724609375,53.11787109374998],[-129.17324218749997,53.11074218750002],[-129.27685546875006,53.11093749999998],[-129.30571289062496,53.12114257812502],[-129.32387695312502,53.14213867187504],[-129.33125,53.17397460937505],[-129.31435546874997,53.21230468750002],[-129.253076171875,53.28549804687503],[-129.25117187500004,53.31669921874999],[-129.23818359374997,53.33007812500006],[-129.19521484375002,53.293212890625],[-129.177001953125,53.25913085937498],[-129.167724609375,53.11787109374998]]],[[[-79.93823242187494,53.30415039062501],[-79.939306640625,53.274267578125034],[-80.00410156249995,53.28007812499999],[-80.03935546874996,53.29716796874998],[-80.06787109374997,53.32407226562498],[-80.07402343749999,53.34428710937502],[-80.04970703125002,53.36445312500003],[-79.97456054687497,53.35224609375004],[-79.93823242187494,53.30415039062501]]],[[[-129.84858398437498,53.167919921874955],[-129.86855468749997,53.16450195312498],[-129.934375,53.176660156249966],[-130.15141601562493,53.34570312500002],[-130.30566406250003,53.407373046874994],[-130.41074218750003,53.490820312500006],[-130.51757812500003,53.54423828124999],[-130.45200195312498,53.63115234375002],[-130.39482421875,53.620410156250045],[-130.19501953125004,53.549658203125006],[-130.035400390625,53.481103515624994],[-129.94472656250002,53.436376953125034],[-129.75483398437498,53.244775390624994],[-129.76894531250002,53.21728515624997],[-129.84858398437498,53.167919921874955]]],[[[-130.236279296875,53.95854492187502],[-130.26723632812502,53.92260742187505],[-130.33754882812497,53.866259765625045],[-130.38422851562504,53.84394531250001],[-130.4072265625,53.85551757812499],[-130.470263671875,53.861767578125004],[-130.5375,53.91787109374996],[-130.58984375,53.940283203125],[-130.62460937499998,53.94140624999997],[-130.64184570312503,53.92114257812503],[-130.64628906249996,53.89404296875],[-130.637890625,53.860009765624994],[-130.64370117187497,53.84453124999995],[-130.66357421875,53.847558593750044],[-130.68344726562498,53.86347656250001],[-130.70317382812496,53.892236328124994],[-130.70727539062494,53.921484375],[-130.695703125,53.951269531250034],[-130.64692382812498,53.99125976562502],[-130.49462890624997,54.07416992187501],[-130.44799804687494,54.08901367187502],[-130.39731445312503,54.08569335937497],[-130.31586914062495,54.04692382812499],[-130.29848632812494,54.03564453125],[-130.236279296875,53.95854492187502]]],[[[-132.65551757812503,54.12749023437495],[-132.56406250000003,54.06865234374995],[-132.34443359374995,54.10605468750003],[-132.30336914062497,54.098876953125],[-132.26162109374997,54.07631835937502],[-132.21591796874998,54.028417968750034],[-132.16611328124998,53.95522460937505],[-132.15512695312503,53.87519531249998],[-132.17509765625005,53.846533203125006],[-132.21450195312497,53.81474609375002],[-132.56489257812504,53.687646484374966],[-132.57412109374997,53.67539062500006],[-132.56713867187494,53.66396484375002],[-132.53466796874997,53.651708984375034],[-132.464404296875,53.6533203125],[-132.18696289062504,53.68481445312503],[-132.17167968749993,53.70683593749996],[-132.15224609375,53.806982421875034],[-132.11401367187497,53.860156250000045],[-132.11059570312503,53.90029296875005],[-132.13588867187502,53.99584960937506],[-132.134423828125,54.03427734374998],[-131.9408203125,54.04199218750003],[-131.81962890625,54.077343749999955],[-131.69594726562502,54.143164062500034],[-131.66762695312502,54.14135742187503],[-131.685400390625,54.022802734375034],[-131.70253906250002,53.98637695312498],[-131.82114257812503,53.841503906249955],[-131.88916015625006,53.713964843750006],[-131.92231445312504,53.587890625],[-131.92807617187498,53.37919921875002],[-131.957421875,53.308691406250034],[-132.01132812499998,53.26518554687496],[-132.34726562500003,53.18920898437503],[-132.52045898437504,53.194042968749955],[-132.67480468749994,53.26318359375],[-132.747509765625,53.310498046874955],[-132.69257812499998,53.36787109375001],[-132.65478515624994,53.37055664062504],[-132.54624023437498,53.35927734375005],[-132.46240234375003,53.33789062500003],[-132.425,53.33696289062502],[-132.43134765625,53.350439453125006],[-132.670166015625,53.458593750000034],[-132.84501953125,53.507714843749994],[-132.89799804687493,53.56269531250001],[-132.89956054687502,53.605371093749994],[-132.91337890625,53.62919921874996],[-133.05224609375003,53.778125],[-133.07949218749997,53.837011718750034],[-133.09765625000006,53.920263671875034],[-133.09794921875,54.005615234375],[-133.0638671875,54.14404296875006],[-133.04838867187493,54.158935546874964],[-132.991455078125,54.1578125],[-132.89306640625,54.140771484374994],[-132.65551757812503,54.12749023437495]]],[[[-130.92714843749997,54.47905273437499],[-130.95029296874998,54.477783203125],[-130.959033203125,54.49868164062499],[-130.95346679687503,54.541845703125006],[-130.92177734374997,54.61489257812505],[-130.90683593750003,54.63178710937503],[-130.77705078125004,54.61889648437497],[-130.75800781249998,54.61376953125],[-130.75341796875,54.59970703124997],[-130.76337890625,54.57670898437499],[-130.805126953125,54.543798828125034],[-130.92714843749997,54.47905273437499]]],[[[-130.34941406249996,54.814550781250034],[-130.53549804687503,54.748730468749955],[-130.57534179687497,54.769677734374966],[-130.49326171874998,54.834179687499955],[-130.312548828125,54.945947265624994],[-130.2140625,55.02587890625003],[-130.20390625,54.94702148437503],[-130.34941406249996,54.814550781250034]]],[[[-60.994482421875,56.039306640624964],[-60.98271484375002,56.01513671875003],[-61.13701171874999,56.032568359375034],[-61.19130859374997,56.04785156250003],[-61.19584960937498,56.063916015625004],[-61.188183593749955,56.08896484374998],[-61.157568359375006,56.11835937500001],[-61.0869140625,56.14082031249998],[-61.048535156250004,56.129248046875006],[-60.96640624999998,56.09882812500004],[-60.95537109374993,56.080419921875],[-60.994482421875,56.039306640624964]]],[[[-78.82651367187493,56.14531249999999],[-78.877294921875,56.131445312500006],[-78.91381835937497,56.13281250000003],[-78.90703125000002,56.166357421875034],[-78.85688476562501,56.232080078124994],[-78.82841796874999,56.289843750000045],[-78.82158203125002,56.33964843749998],[-78.79941406250003,56.38330078125],[-78.76186523437502,56.42070312499996],[-78.72451171874997,56.439208984375],[-78.66875,56.438623046874966],[-78.65717773437501,56.31738281249997],[-78.67280273437498,56.26049804687503],[-78.71015624999995,56.212890625],[-78.761376953125,56.17451171874998],[-78.82651367187493,56.14531249999999]]],[[[-79.97758789062499,56.20703125000006],[-80.02861328124999,56.19941406250001],[-80.08886718749999,56.21386718750003],[-80.057470703125,56.287353515624964],[-80.00507812499998,56.31791992187499],[-79.87446289062493,56.34843749999998],[-79.85214843749999,56.3671875],[-79.81040039062503,56.37651367187502],[-79.74916992187498,56.37651367187502],[-79.68100585937495,56.403955078125016],[-79.605859375,56.458837890625],[-79.57973632812502,56.466357421875045],[-79.63256835937503,56.38652343750002],[-79.68793945312495,56.326806640625016],[-79.97758789062499,56.20703125000006]]],[[[-78.93559570312496,56.26606445312498],[-79.01796874999997,56.164990234375004],[-79.08388671875,56.06787109375002],[-79.17548828124997,55.88505859374999],[-79.22783203124999,55.878515625],[-79.2736328125,55.92246093749998],[-79.14228515624998,56.136425781249955],[-79.13608398437495,56.160253906250034],[-79.14228515624998,56.18071289062502],[-79.18212890625,56.21215820312503],[-79.22182617187502,56.17597656250004],[-79.40742187499998,55.93486328125002],[-79.45532226562497,55.89619140624995],[-79.4951171875,55.87475585937502],[-79.52675781249997,55.87065429687498],[-79.60571289062497,55.875683593749955],[-79.76474609374995,55.80678710937505],[-79.49746093749994,56.093164062500016],[-79.49467773437502,56.11499023437503],[-79.54472656249997,56.128369140625004],[-79.56455078125003,56.120947265625],[-79.781103515625,55.94057617187502],[-79.90458984374993,55.87104492187498],[-79.9875,55.89213867187502],[-80.00825195312501,55.91103515624996],[-80.00078124999999,55.93208007812498],[-79.79003906249997,56.114160156250044],[-79.59633789062502,56.244482421875034],[-79.51528320312494,56.32651367187506],[-79.48237304687498,56.40380859374999],[-79.46791992187497,56.46035156249996],[-79.46894531250001,56.52260742187502],[-79.45888671875,56.539746093749976],[-79.44765625000002,56.53657226562504],[-79.435302734375,56.513037109375034],[-79.43203124999994,56.44746093750001],[-79.47626953124998,56.312841796875034],[-79.51181640625003,56.24658203125003],[-79.55419921874997,56.191992187500006],[-79.53632812499995,56.180078124999966],[-79.45830078124996,56.21108398437499],[-79.39262695312499,56.27646484374997],[-79.33935546874997,56.37631835937498],[-79.30532226562497,56.46308593749998],[-79.27241210937491,56.600439453125],[-79.26113281249994,56.59565429687498],[-79.245751953125,56.56826171875002],[-79.21044921875,56.54892578124998],[-79.15517578124994,56.53759765624997],[-79.12353515624997,56.51997070312503],[-79.10024414062494,56.47392578124999],[-79.07773437499998,56.45361328125],[-78.99497070312498,56.43642578124996],[-78.96318359374999,56.421728515625006],[-78.94033203124997,56.371435546875055],[-78.94243164062493,56.34492187499998],[-78.93120117187496,56.32792968749999],[-78.90664062500002,56.32041015625006],[-78.93559570312496,56.26606445312498]]],[[[-79.5181640625,56.656689453124976],[-79.553466796875,56.643847656250045],[-79.57739257812497,56.64492187499999],[-79.55073242187495,56.733496093750006],[-79.58173828124998,56.76484375000001],[-79.58354492187497,56.78095703125001],[-79.57011718750002,56.79570312499999],[-79.55288085937497,56.798730468749966],[-79.51123046875,56.77143554687501],[-79.49106445312498,56.74267578125003],[-79.48217773437494,56.71440429687502],[-79.48457031249998,56.68652343750002],[-79.49653320312493,56.66728515625002],[-79.5181640625,56.656689453124976]]],[[[-79.8669921875,56.77456054687502],[-79.89448242187501,56.75712890625002],[-79.94365234374997,56.776757812500016],[-79.94570312499997,56.82690429687503],[-79.89814453124995,56.86528320312504],[-79.86054687499993,56.86352539062503],[-79.82666015624997,56.84311523437506],[-79.83500976562496,56.816015625000034],[-79.8669921875,56.77456054687502]]],[[[-61.743603515624955,57.55458984375005],[-61.65952148437495,57.52495117187495],[-61.6375,57.41606445312499],[-61.795263671874984,57.42246093750003],[-61.975488281250016,57.495410156249996],[-62.01123046875002,57.54848632812505],[-62.007226562499994,57.55761718750003],[-61.98330078125002,57.566748046875034],[-61.9375,57.55410156250003],[-61.89306640625002,57.57314453124999],[-61.848339843749955,57.57934570312503],[-61.743603515624955,57.55458984375005]]],[[[-79.71650390624998,57.515527343749994],[-79.73222656249997,57.507519531249955],[-79.77519531249996,57.514453125000045],[-79.79204101562502,57.44858398437503],[-79.80844726562498,57.44243164062502],[-79.838232421875,57.48300781250004],[-79.81591796875,57.517724609374994],[-79.81914062499993,57.54160156249998],[-79.81083984374992,57.55927734375001],[-79.76787109374996,57.59873046874998],[-79.74257812499997,57.60795898437499],[-79.72670898437502,57.604589843750006],[-79.7134765625,57.55502929687503],[-79.71650390624998,57.515527343749994]]],[[[-69.16005859375,59.040234375],[-69.22084960937494,58.967578125000045],[-69.30170898437498,58.97661132812502],[-69.33081054687497,58.96162109374998],[-69.35283203125002,58.96074218749999],[-69.31630859374994,59.02895507812503],[-69.31152343750003,59.074804687500034],[-69.32998046874997,59.12124023437499],[-69.30322265625001,59.144873046875006],[-69.19516601562495,59.146142578125016],[-69.19379882812493,59.09277343749997],[-69.18066406250003,59.072705078124976],[-69.15517578124997,59.06357421874998],[-69.16005859375,59.040234375]]],[[[-80.28525390624995,59.624121093750034],[-80.31723632812498,59.621044921874955],[-80.32465820312498,59.63320312500002],[-80.298974609375,59.674169921875034],[-80.25664062499999,59.67915039062499],[-80.20996093749997,59.72460937499999],[-80.16723632812497,59.70888671874999],[-80.18305664062501,59.68349609374996],[-80.24052734374999,59.644921875000016],[-80.28525390624995,59.624121093750034]]],[[[-80.06420898437494,59.770800781249996],[-80.16708984375003,59.76386718750002],[-80.12221679687497,59.823193359375004],[-80.083642578125,59.851855468749996],[-80.04116210937497,59.870166015624996],[-79.95585937499999,59.87695312500002],[-79.89863281249995,59.853125],[-79.94960937499997,59.80991210937506],[-80.06420898437494,59.770800781249996]]],[[[-64.40703125,60.36708984374996],[-64.44194335937496,60.2978515625],[-64.55820312500003,60.3232421875],[-64.73793945312497,60.37563476562503],[-64.80898437499997,60.410400390625],[-64.83378906249995,60.44843750000001],[-64.83642578124997,60.50102539062498],[-64.782568359375,60.50961914062506],[-64.64628906249996,60.514599609375004],[-64.53251953124996,60.44140625],[-64.49980468749995,60.43022460937504],[-64.40703125,60.36708984374996]]],[[[-68.23378906250002,60.24091796875001],[-68.32412109374997,60.23291015625],[-68.36523437499997,60.25405273437502],[-68.36787109374997,60.314746093750045],[-68.33828125,60.360595703124964],[-68.23476562499997,60.45556640624997],[-68.14189453124996,60.56201171874997],[-68.08759765624998,60.587841796875004],[-67.97802734374997,60.570410156250006],[-67.91420898437502,60.53984374999998],[-67.84755859374992,60.48881835937499],[-67.81884765624994,60.449511718750074],[-67.84423828124996,60.39165039062498],[-67.92231445312498,60.33989257812501],[-68.01230468750002,60.304638671874955],[-68.23378906250002,60.24091796875001]]],[[[-78.531640625,60.72856445312498],[-78.66889648437498,60.716894531250006],[-78.66909179687494,60.73134765625002],[-78.61201171874995,60.772314453125],[-78.39956054687502,60.80810546875003],[-78.24169921875,60.818652343750045],[-78.27885742187492,60.78388671874998],[-78.3724609375,60.75639648437504],[-78.531640625,60.72856445312498]]],[[[-64.83261718749998,61.366064453125006],[-64.85683593749994,61.354443359374955],[-64.87978515624998,61.35708007812505],[-64.954248046875,61.41040039062497],[-65.05439453124995,61.432031250000016],[-65.09150390624995,61.452978515625034],[-65.39389648437503,61.562841796875034],[-65.42680664062499,61.611035156250004],[-65.43212890625,61.649511718750034],[-65.33164062499995,61.66826171875002],[-65.12978515624994,61.685693359375016],[-64.95444335937503,61.68510742187499],[-64.78964843750003,61.662207031250034],[-64.75634765625,61.637646484375004],[-64.669580078125,61.593017578124964],[-64.69096679687499,61.53935546875004],[-64.69638671875003,61.47148437499999],[-64.73232421874995,61.438427734375004],[-64.78759765624997,61.41328125000004],[-64.83261718749998,61.366064453125006]]],[[[-93.04394531249997,61.84409179687506],[-93.08481445312495,61.841699218749994],[-93.17656249999999,61.89272460937502],[-93.19667968750001,61.918554687500034],[-93.07578124999998,61.93500976562502],[-92.993017578125,61.88969726562502],[-92.99995117187498,61.86748046875001],[-93.04394531249997,61.84409179687506]]],[[[-65.03056640624997,61.87905273437497],[-65.00805664062503,61.870263671874966],[-64.98105468750003,61.88061523437503],[-64.96054687500003,61.87167968749998],[-64.94667968749994,61.84335937499997],[-64.92353515624995,61.82373046874999],[-64.86513671874994,61.79814453125002],[-64.84550781249993,61.779882812500034],[-64.8470703125,61.76152343750002],[-64.89658203124995,61.73330078125005],[-64.92773437499999,61.732519531250055],[-65.16591796874994,61.79765625000001],[-65.23027343749999,61.86401367187502],[-65.23535156249997,61.89770507812506],[-65.21054687499998,61.928369140624994],[-65.17392578124998,61.943212890625006],[-65.125634765625,61.94223632812498],[-65.06835937499997,61.92602539062506],[-65.03056640624997,61.87905273437497]]],[[[-79.54531250000002,62.411718750000055],[-79.46621093749997,62.38452148437503],[-79.33603515625,62.29370117187499],[-79.28647460937495,62.247656250000034],[-79.27202148437493,62.18598632812498],[-79.30644531249993,62.10351562499997],[-79.32392578124995,62.026074218750004],[-79.37226562499993,61.96777343750002],[-79.46215820312494,61.89409179687502],[-79.54184570312503,61.808007812499994],[-79.61132812499997,61.709619140625016],[-79.66875,61.64443359374996],[-79.71425781249997,61.61254882812502],[-79.76333007812502,61.59594726562503],[-79.81611328124995,61.59462890625002],[-79.89633789062503,61.63012695312497],[-80.00415039062496,61.70253906249999],[-80.09199218750001,61.74682617187503],[-80.204931640625,61.777246093750016],[-80.26518554687496,61.818212890625],[-80.27617187499996,61.85859374999998],[-80.27983398437499,61.989501953125],[-80.27509765625001,62.05463867187495],[-80.26005859374996,62.10903320312502],[-80.23466796874996,62.152685546875034],[-80.17856445312498,62.212792968750016],[-80.02158203124998,62.342968749999976],[-79.92675781249999,62.39287109375002],[-79.86806640624995,62.404345703125045],[-79.71254882812498,62.39501953125003],[-79.64956054687494,62.39829101562498],[-79.59765625000003,62.413232421874994],[-79.54531250000002,62.411718750000055]]],[[[-64.82382812499998,62.55874023437499],[-64.63183593750003,62.54799804687502],[-64.51533203125001,62.55180664062499],[-64.46503906249998,62.535937500000045],[-64.41806640625,62.48740234375001],[-64.47832031250002,62.417871093749966],[-64.54648437499995,62.39140624999999],[-64.65742187499998,62.38359375000002],[-64.83730468749997,62.40625],[-64.901220703125,62.421044921874994],[-64.95649414062498,62.458349609375034],[-64.93076171875,62.485009765624966],[-64.84194335937502,62.49414062499997],[-64.82709960937501,62.504980468750034],[-64.84985351562503,62.525439453125045],[-64.84877929687498,62.54331054687503],[-64.82382812499998,62.55874023437499]]],[[[-74.00043945312495,62.618408203124964],[-74.05356445312495,62.60966796875004],[-74.253515625,62.62197265625],[-74.49951171875001,62.66879882812503],[-74.62646484374997,62.712744140625006],[-74.61997070312498,62.72631835937503],[-74.56420898437497,62.73330078125002],[-74.50092773437495,62.726513671874955],[-74.394775390625,62.69580078125003],[-74.10893554687496,62.68032226562496],[-74.01679687500001,62.662695312500034],[-73.98818359374997,62.636083984375006],[-74.00043945312495,62.618408203124964]]],[[[-70.33706054687497,62.54873046874999],[-70.40634765624998,62.544824218749994],[-70.54150390624997,62.55234375],[-70.68657226562493,62.57319335937498],[-70.76606445312498,62.596875],[-70.83754882812497,62.64809570312496],[-70.85126953125,62.704345703124964],[-70.98613281249996,62.787792968750004],[-71.13691406249995,62.81591796874997],[-71.22011718750002,62.873925781249966],[-71.13486328124998,62.87797851562501],[-71.01367187499997,62.86533203125],[-70.834619140625,62.840087890625],[-70.67431640625003,62.80703125000002],[-70.44262695312497,62.73378906250002],[-70.36679687499998,62.665820312500045],[-70.29150390625003,62.615966796875],[-70.26884765625002,62.57807617187501],[-70.28857421874993,62.56157226562501],[-70.33706054687497,62.54873046874999]]],[[[-82.00048828124996,62.95419921874998],[-81.960546875,62.92622070312498],[-81.94858398437498,62.884033203125],[-81.96440429687499,62.82763671875005],[-81.99018554687501,62.776318359374976],[-82.02583007812498,62.73007812499998],[-82.11372070312495,62.65224609375002],[-82.38803710937496,62.51914062500001],[-82.49096679687497,62.446582031250045],[-82.56826171875002,62.403222656249994],[-83.01582031249998,62.209912109374976],[-83.07138671875,62.20039062499998],[-83.12968749999999,62.20410156250003],[-83.25239257812495,62.232958984375045],[-83.37680664062498,62.23813476562504],[-83.69887695312497,62.16025390624998],[-83.71440429687502,62.17358398437503],[-83.72861328124998,62.257177734375],[-83.76093749999998,62.303515625000045],[-83.903125,62.402490234375016],[-83.91240234374993,62.425537109375036],[-83.91049804687498,62.45415039062499],[-83.899267578125,62.476464843749994],[-83.7390625,62.56884765625],[-83.37641601562498,62.904931640624994],[-83.28945312499994,62.921582031250004],[-83.11093749999998,62.884130859375006],[-83.02626953124997,62.87207031250006],[-82.96577148437498,62.873925781249966],[-82.7064453125,62.94453124999998],[-82.459716796875,62.93618164062496],[-82.23476562500002,62.977441406250016],[-82.129248046875,62.97768554687496],[-82.047607421875,62.97055664062503],[-82.00048828124996,62.95419921874998]]],[[[-77.87670898437496,63.470556640625034],[-77.79208984374998,63.42783203125003],[-77.7037109375,63.43085937500001],[-77.65478515624997,63.39599609375002],[-77.5384765625,63.28706054687504],[-77.52729492187495,63.26894531249999],[-77.53271484374997,63.23364257812501],[-77.59389648437502,63.18842773437501],[-77.65766601562495,63.164599609375045],[-77.79145507812493,63.129589843750004],[-77.94243164062496,63.11440429687502],[-78.02441406249997,63.138867187499955],[-78.25595703124998,63.23984375],[-78.46875,63.35791015624999],[-78.536767578125,63.423730468749994],[-78.50732421875003,63.45112304687498],[-78.41728515624997,63.46997070312499],[-78.23491210937496,63.48955078124998],[-77.93393554687499,63.478955078124955],[-77.87670898437496,63.470556640625034]]],[[[-76.67758789062503,63.393945312499966],[-76.78315429687495,63.38403320312497],[-76.921875,63.40634765625],[-77.0572265625,63.44975585937504],[-77.36474609374994,63.588330078124955],[-77.13369140624997,63.682031250000016],[-76.76362304687498,63.57358398437506],[-76.65244140624998,63.50356445312499],[-76.67758789062503,63.393945312499966]]],[[[-77.64208984374997,63.99189453125001],[-77.71406249999998,63.945703125000016],[-77.92880859375003,63.962011718750055],[-77.95791015624998,63.97602539062498],[-77.96596679687497,63.99291992187502],[-77.93134765625001,64.01479492187497],[-77.71079101562502,64.03564453125003],[-77.61728515624998,64.03720703125],[-77.56938476562499,64.03041992187505],[-77.56362304687497,64.02207031250003],[-77.64208984374997,63.99189453125001]]],[[[-84.91962890624995,65.26108398437503],[-84.88510742187502,65.24897460937495],[-84.84208984374999,65.25590820312505],[-84.77128906249993,65.30527343749998],[-84.6125,65.44731445312503],[-84.56791992187499,65.46064453125001],[-84.50112304687497,65.458447265625],[-84.26640624999993,65.36723632812499],[-84.17998046874999,65.31630859375],[-84.13349609374995,65.24545898437503],[-84.08486328125,65.21782226562502],[-83.90009765625001,65.18125],[-83.72255859375,65.16899414062502],[-83.49077148437502,65.13178710937498],[-83.40712890625002,65.10390625],[-83.22226562500003,64.96796875],[-83.20097656249996,64.95966796874998],[-82.99057617187496,64.90410156250005],[-82.667626953125,64.78032226562505],[-82.58579101562503,64.76191406250004],[-82.27167968749998,64.72114257812497],[-82.15888671875001,64.690673828125],[-82.05,64.64428710937506],[-81.92890624999995,64.55942382812498],[-81.78720703124995,64.42597656249998],[-81.67612304687498,64.21264648437501],[-81.66738281249997,64.17050781249998],[-81.68090820312497,64.14555664062505],[-81.72094726562497,64.11889648437503],[-81.90263671874993,64.03125],[-81.88710937499997,64.01640625000002],[-81.71611328124996,64.021875],[-81.33564453124998,64.07578125000003],[-81.10405273437495,64.03710937499997],[-81.023583984375,64.03105468749999],[-81.00502929687494,64.03330078125],[-80.921142578125,64.10048828125002],[-80.82895507812495,64.08994140624999],[-80.69428710937498,64.02475585937503],[-80.60756835937497,63.97207031249996],[-80.56884765625,63.931933593750045],[-80.57919921874996,63.90922851562504],[-80.66826171874999,63.90146484374998],[-80.45058593749997,63.86293945312502],[-80.26132812499995,63.801953124999955],[-80.30205078124999,63.76220703125003],[-80.50405273437494,63.67377929687496],[-80.71176757812498,63.59638671874998],[-80.95351562500002,63.480273437500045],[-81.01386718749998,63.462548828124994],[-81.04638671875003,63.461572265624966],[-81.17968749999999,63.483203125000024],[-81.37172851562497,63.53808593750003],[-81.96333007812495,63.66445312499999],[-82.14599609374997,63.691162109375036],[-82.378125,63.706787109375],[-82.41171875,63.73652343750003],[-82.46708984375002,63.92695312500001],[-82.57148437499995,63.96069335937505],[-82.9296875,64.00043945312498],[-83.03388671875001,64.02324218749999],[-83.03867187499999,64.06142578124997],[-83.01616210937496,64.12700195312499],[-83.06513671874998,64.15903320312503],[-83.185546875,64.15751953124999],[-83.30395507812497,64.14379882812504],[-83.49433593749993,64.09921875000002],[-83.58359375,64.05810546875],[-83.61708984374998,64.01342773437504],[-83.63798828124999,63.917822265625006],[-83.66162109375,63.87260742187504],[-83.728271484375,63.81337890624997],[-84.022119140625,63.65986328124995],[-84.1416015625,63.61372070312498],[-84.26044921874995,63.600488281250016],[-84.30761718749996,63.585791015625055],[-84.3875,63.529101562500045],[-84.50620117187503,63.39003906249996],[-84.55458984375002,63.35],[-84.63291015625,63.309228515625016],[-84.795556640625,63.246923828125034],[-84.96152343749996,63.19721679687505],[-85.238134765625,63.13930664062505],[-85.39262695312496,63.119677734375045],[-85.49550781249997,63.13911132812501],[-85.56611328124995,63.27089843750002],[-85.71416015625002,63.65795898437499],[-85.73872070312495,63.68413085937501],[-85.76894531249997,63.700341796875016],[-85.80468749999997,63.70654296875006],[-86.3015625,63.65678710937504],[-86.57568359375003,63.662304687500004],[-86.846875,63.575292968750034],[-86.91523437500001,63.568994140624994],[-87.05292968749998,63.57177734375003],[-87.15190429687499,63.58564453125001],[-87.17714843749998,63.5951171875],[-87.19384765625,63.63281250000002],[-87.18891601562498,63.67226562499999],[-87.15439453124998,63.71489257812507],[-87.03193359374997,63.83041992187497],[-86.93203124999997,63.90166015625002],[-86.88603515625002,63.923730468749966],[-86.421728515625,64.05156249999999],[-86.30859374999997,64.09365234375005],[-86.252099609375,64.13686523437495],[-86.25219726562503,64.18125],[-86.27416992187497,64.23803710937497],[-86.35449218749997,64.37651367187502],[-86.37490234374997,64.50297851562505],[-86.37426757812503,64.56582031249997],[-86.34384765625003,64.662353515625],[-86.22763671874998,64.89633789062498],[-86.18828124999995,65.010302734375],[-86.11420898437498,65.41728515625005],[-86.074609375,65.533837890625],[-86.01708984375,65.64028320312501],[-85.96166992187497,65.70424804687498],[-85.81396484375,65.83193359374997],[-85.69907226562495,65.883154296875],[-85.55468750000003,65.91865234374995],[-85.52304687499998,65.91455078125003],[-85.49550781249997,65.89970703125002],[-85.44243164062499,65.845556640625],[-85.24111328125,65.7955078125],[-85.17622070312501,65.746875],[-85.13037109375,65.69291992187497],[-85.10537109374997,65.622705078125],[-85.13032226562498,65.59208984375005],[-85.226318359375,65.54575195312503],[-85.24277343749998,65.52622070312502],[-85.23994140624993,65.51030273437499],[-85.05605468749997,65.43740234374997],[-84.91962890624995,65.26108398437503]]],[[[-84.67475585937497,65.575],[-84.72700195312498,65.56372070312504],[-84.78291015625001,65.570068359375],[-84.83027343749995,65.59897460937503],[-84.86894531249992,65.65053710937495],[-84.93115234375,65.68916015625001],[-85.07197265625001,65.73735351562507],[-85.096337890625,65.756201171875],[-85.13627929687496,65.82084960937502],[-85.14404296875003,65.88535156250003],[-85.17416992187493,65.94375],[-85.17568359375,65.972412109375],[-85.14960937500001,66.01538085937504],[-85.03139648437498,66.02548828124996],[-84.93857421875,66.00854492187496],[-84.91982421875,65.99702148437504],[-84.88945312499993,65.97207031250002],[-84.86953124999997,65.94150390625],[-84.75737304687496,65.85893554687505],[-84.69174804687498,65.79316406249998],[-84.60263671874995,65.65737304687502],[-84.60224609374995,65.631494140625],[-84.62626953124996,65.60405273437499],[-84.67475585937497,65.575]]],[[[-83.72597656249997,65.796728515625],[-83.597509765625,65.757470703125],[-83.46943359374991,65.73520507812498],[-83.26318359375,65.72329101562505],[-83.23374023437495,65.71503906249995],[-83.23393554687499,65.69658203125002],[-83.26367187500003,65.66782226562502],[-83.33242187499998,65.63105468749998],[-83.38144531250003,65.62998046875003],[-83.49541015624999,65.65595703125001],[-83.53710937499994,65.66918945312501],[-83.58320312500001,65.69863281249998],[-83.60654296874998,65.70136718750001],[-83.63637695312502,65.69150390625006],[-83.64438476562493,65.67851562499999],[-83.63066406249999,65.66235351562497],[-83.64951171875003,65.65776367187502],[-83.78754882812497,65.66889648437498],[-83.80922851562497,65.67832031250003],[-83.79819335937503,65.710009765625],[-83.70190429687494,65.756201171875],[-83.78652343749997,65.77041015624997],[-83.81357421874995,65.7875],[-83.93896484375003,65.75844726562502],[-84.00849609374998,65.75151367187502],[-84.11826171874995,65.77177734375007],[-84.12993164062502,65.87744140625],[-84.14321289062497,65.91596679687495],[-84.19321289062503,65.94213867187506],[-84.22294921874995,65.96977539062499],[-84.27089843749995,65.990625],[-84.3701171875,66.01181640625003],[-84.45058593749995,66.06440429687498],[-84.46738281250003,66.08828124999997],[-84.45634765624997,66.10625],[-84.407177734375,66.13100585937497],[-84.12226562499995,66.07783203124998],[-83.95039062499995,66.02749023437502],[-83.78696289062495,65.96577148437498],[-83.70136718749993,65.92011718750001],[-83.69365234374996,65.89038085937497],[-83.71489257812502,65.8607421875],[-83.76513671874994,65.83115234374999],[-83.72597656249997,65.796728515625]]],[[[-83.12348632812498,66.2828125],[-83.02387695312493,66.270654296875],[-82.94814453124997,66.27192382812498],[-82.93134765624998,66.25732421875003],[-83.01083984375003,66.20844726562504],[-83.05986328124999,66.19926757812502],[-83.14790039062498,66.23422851562503],[-83.21391601562502,66.27705078124998],[-83.232568359375,66.30297851562503],[-83.23784179687499,66.33154296874997],[-83.22226562500003,66.33647460937499],[-83.12348632812498,66.2828125]]],[[[-108.092724609375,67.00517578124999],[-107.96645507812495,66.99726562499997],[-107.80551757812492,66.99858398437507],[-107.83334960937502,66.92133789062495],[-107.895166015625,66.871875],[-107.94394531249998,66.8578125],[-107.96513671874995,66.88486328124998],[-108.05971679687495,66.946875],[-108.092724609375,67.00517578124999]]],[[[-62.681542968749966,67.05629882812502],[-62.80541992187499,67.02880859375],[-62.87163085937498,67.06259765625005],[-62.82509765624999,67.07211914062503],[-62.756982421874994,67.112548828125],[-62.66440429687495,67.14824218749999],[-62.62529296874999,67.17695312499997],[-62.4697265625,67.19003906249998],[-62.41679687499995,67.18847656250001],[-62.39633789062494,67.1783203125],[-62.48461914062499,67.13422851562498],[-62.681542968749966,67.05629882812502]]],[[[-107.89985351562497,67.40180664062495],[-107.95024414062503,67.31821289062498],[-107.96953125,67.32602539062498],[-108.00395507812496,67.36591796875004],[-108.07333984374995,67.38505859375],[-108.15224609374997,67.429443359375],[-108.15112304687499,67.52480468749997],[-108.12084960937497,67.56816406250002],[-108.12753906249999,67.62856445312495],[-108.04897460937498,67.664892578125],[-107.99086914062494,67.62211914062499],[-107.97490234374997,67.54936523437502],[-107.98935546875,67.51357421875],[-107.931787109375,67.47646484375],[-107.90517578124998,67.46704101562503],[-107.89096679687493,67.43720703124998],[-107.89985351562497,67.40180664062495]]],[[[-109.16640625,67.98237304687504],[-109.05390624999998,67.971875],[-108.97050781249995,67.97973632812503],[-108.90961914062498,67.93940429687497],[-108.88603515624996,67.89853515625],[-108.89384765624997,67.88447265624997],[-108.920166015625,67.87880859374997],[-109.09624023437499,67.92402343749995],[-109.16152343749997,67.95170898437499],[-109.18359375000001,67.975],[-109.16640625,67.98237304687504]]],[[[-73.621728515625,67.783837890625],[-74.10908203124998,67.78251953124999],[-74.37407226562496,67.78959960937502],[-74.48071289062503,67.80488281250001],[-74.573388671875,67.82866210937507],[-74.67861328125002,67.90556640625002],[-74.74599609374997,67.98481445312498],[-74.74926757812503,68.01845703125],[-74.73144531250003,68.04877929687495],[-74.70654296875003,68.06708984374995],[-74.37939453124996,68.09345703125001],[-74.11137695312502,68.06059570312507],[-73.88071289062499,68.02192382812501],[-73.58403320312496,68.01533203124998],[-73.49375,68.00063476562502],[-73.45922851562503,67.98989257812497],[-73.43525390624993,67.97001953124999],[-73.40156249999998,67.87871093750005],[-73.39819335937503,67.82993164062505],[-73.40717773437498,67.79306640625],[-73.621728515625,67.783837890625]]],[[[-109.32314453124995,67.990869140625],[-109.36083984374999,67.98759765625002],[-109.49794921874994,68.04702148437497],[-109.46914062500002,68.09799804687503],[-109.34169921875,68.04584960937497],[-109.32353515625003,68.01333007812502],[-109.32314453124995,67.990869140625]]],[[[-86.59555664062498,67.7359375],[-86.63818359374997,67.73486328125006],[-86.70595703125,67.75014648437497],[-86.86108398437497,67.81049804687501],[-86.89252929687498,67.83657226562498],[-86.90830078125,67.86704101562498],[-86.90844726562494,67.90195312499998],[-86.89458007812496,67.93808593749998],[-86.84707031249997,68.01025390625003],[-86.93774414062497,68.06757812499998],[-86.95981445312503,68.10024414062497],[-86.94916992187498,68.11870117187499],[-86.898681640625,68.16289062500005],[-86.88486328125003,68.19052734374998],[-86.83398437499997,68.22968749999995],[-86.70209960937501,68.30561523437498],[-86.569921875,68.28769531250006],[-86.45195312499993,68.22548828125],[-86.42114257812497,68.18344726562503],[-86.43032226562497,68.13872070312499],[-86.42001953125,68.07392578125004],[-86.39033203125001,67.98891601562502],[-86.38242187499998,67.92729492187499],[-86.396435546875,67.88896484375002],[-86.446923828125,67.8169921875],[-86.4896484375,67.78359375000002],[-86.54604492187502,67.75219726562503],[-86.59555664062498,67.7359375]]],[[[-75.67587890624998,68.32250976562504],[-75.15380859375,68.23403320312497],[-75.103125,68.201904296875],[-75.078125,68.17314453124999],[-75.0634765625,68.14121093750006],[-75.06235351562503,68.07539062499997],[-75.07285156249995,68.04902343750001],[-75.12387695312495,67.98525390625],[-75.12734374999994,67.965234375],[-75.08637695312495,67.75141601562495],[-75.09052734375001,67.634765625],[-75.12729492187503,67.53730468749995],[-75.20195312499996,67.45917968750001],[-75.31450195312499,67.40043945312505],[-75.40009765625001,67.36669921875],[-75.78007812499996,67.28354492187503],[-76.04897460937494,67.26201171874999],[-76.33276367187494,67.25810546874999],[-76.69394531249998,67.23583984375],[-76.85883789062501,67.24047851562506],[-76.94418945312498,67.25029296875002],[-77.0048828125,67.26694335937503],[-77.075927734375,67.31962890625002],[-77.157080078125,67.40834960937497],[-77.22421875,67.50820312499997],[-77.30439453125001,67.68510742187505],[-77.30590820312496,67.70610351562505],[-77.22856445312502,67.85009765625],[-77.12587890624997,67.94707031250002],[-76.9447265625,68.09096679687502],[-76.74023437499999,68.23125],[-76.68823242187497,68.25439453125003],[-76.59580078124998,68.27895507812495],[-76.36445312500001,68.31870117187498],[-76.17280273437495,68.30878906250001],[-76.08828124999997,68.31381835937506],[-75.98276367187495,68.33232421874999],[-75.86650390624999,68.33681640625002],[-75.67587890624998,68.32250976562504]]],[[[-78.98271484374999,68.19282226562501],[-79.06406250000003,68.18178710937497],[-79.17402343749995,68.23496093749998],[-79.17475585937493,68.264453125],[-79.15346679687494,68.33525390625006],[-78.95258789062495,68.35302734375006],[-78.86870117187502,68.31030273437506],[-78.828515625,68.26816406249998],[-78.98271484374999,68.19282226562501]]],[[[-104.54067382812497,68.405908203125],[-104.59599609374995,68.40219726562503],[-104.69946289062499,68.41826171875002],[-104.85112304687497,68.45395507812499],[-104.96523437499995,68.49174804687506],[-105.04174804687499,68.53154296874999],[-105.05136718749999,68.559033203125],[-104.99399414062495,68.57421875],[-104.90727539062495,68.58178710937503],[-104.70039062499998,68.57670898437505],[-104.60200195312503,68.56152343749997],[-104.47211914062501,68.50351562499998],[-104.44453124999998,68.47070312500003],[-104.44047851562497,68.44951171874999],[-104.45712890624998,68.43115234374997],[-104.54067382812497,68.405908203125]]],[[[-74.880859375,68.34868164062505],[-74.959326171875,68.34223632812498],[-75.07250976562497,68.40415039062498],[-75.31015624999998,68.474462890625],[-75.40024414062503,68.52548828125],[-75.40341796874998,68.55014648437505],[-75.39619140625001,68.58881835937504],[-75.37016601562496,68.63608398437498],[-75.28740234374996,68.68774414062503],[-75.19975585937496,68.69609375000005],[-75.07470703124997,68.68471679687502],[-74.98364257812497,68.64760742187502],[-74.88476562499999,68.54462890625001],[-74.8189453125,68.49443359374999],[-74.79824218749997,68.45795898437501],[-74.83095703124997,68.44072265625005],[-74.82792968749996,68.42377929687498],[-74.81289062500002,68.41333007812497],[-74.81855468750001,68.39409179687507],[-74.84497070312497,68.36596679687503],[-74.880859375,68.34868164062505]]],[[[-101.84589843749994,68.58632812499997],[-101.88720703125001,68.58496093750006],[-101.94462890624999,68.60283203125005],[-102.26635742187497,68.663671875],[-102.30815429687497,68.681982421875],[-102.27050781250003,68.70756835937507],[-102.15332031249996,68.74047851562503],[-102.07436523437495,68.7740234375],[-102.01337890624995,68.825390625],[-101.82836914062501,68.79897460937502],[-101.75932617187499,68.77460937499995],[-101.73295898437495,68.75341796874999],[-101.72163085937494,68.72412109374997],[-101.73203125000002,68.65214843750005],[-101.79428710937499,68.63686523437497],[-101.84589843749994,68.58632812499997]]],[[[-100.21723632812497,68.80668945312502],[-100.248779296875,68.77504882812505],[-100.28793945312498,68.76606445312498],[-100.36572265625001,68.72880859375005],[-100.39731445312498,68.72382812500001],[-100.44257812499995,68.74755859375003],[-100.48066406249997,68.78618164062502],[-100.49692382812502,68.792236328125],[-100.52104492187496,68.79067382812502],[-100.57338867187497,68.76606445312498],[-100.59653320312496,68.76640625000007],[-100.61596679687501,68.78291015624995],[-100.62539062499998,68.81591796875003],[-100.62465820312501,68.86528320312505],[-100.59990234374995,68.94135742187501],[-100.59833984374997,68.96909179687506],[-100.61157226562501,68.99018554687501],[-100.600634765625,69.00942382812502],[-100.56547851562495,69.02680664062501],[-100.52031249999999,69.03505859375],[-100.41396484375,69.028076171875],[-100.32993164062499,68.99755859375],[-100.28896484375001,68.95766601562502],[-100.20688476562499,68.926171875],[-100.17846679687497,68.90390625],[-100.21723632812497,68.80668945312502]]],[[[-99.994677734375,69.01352539062503],[-100.01801757812497,68.95400390625],[-100.14130859374995,68.96992187499995],[-100.19570312500002,68.991455078125],[-100.24199218749995,69.040380859375],[-100.24736328124996,69.05278320312505],[-100.237060546875,69.07148437499995],[-100.186962890625,69.114013671875],[-100.153125,69.12949218750003],[-100.07280273437495,69.11147460937502],[-100.03535156249995,69.086572265625],[-100.00561523437501,69.04711914062506],[-99.994677734375,69.01352539062503]]],[[[-90.49257812499997,69.22109374999995],[-90.57441406249993,69.20942382812498],[-90.62578125000002,69.25092773437501],[-90.66743164062498,69.25947265624998],[-90.685888671875,69.28715820312502],[-90.77158203124995,69.29257812500006],[-90.76567382812499,69.33598632812502],[-90.74238281249995,69.35732421875002],[-90.66279296875001,69.37416992187497],[-90.59970703125003,69.36782226562502],[-90.53984374999997,69.324609375],[-90.51064453125,69.29042968749997],[-90.4853515625,69.24663085937502],[-90.49257812499997,69.22109374999995]]],[[[-79.21064453124995,68.845458984375],[-79.27973632812501,68.83872070312506],[-79.36137695312493,68.857666015625],[-79.390478515625,68.89018554687505],[-79.40576171875,68.92304687500001],[-79.39116210937496,68.93994140624997],[-79.354736328125,68.95590820312503],[-79.30522460937496,68.992333984375],[-79.24267578125,69.04926757812495],[-79.14497070312498,69.08745117187502],[-78.93046874999999,69.12290039062502],[-78.9,69.135400390625],[-78.8041015625,69.23510742187497],[-78.77182617187499,69.252197265625],[-78.66201171875001,69.26235351562501],[-78.65019531249999,69.27519531250007],[-78.6890625,69.29975585937501],[-78.6890625,69.32509765625002],[-78.65019531249999,69.35122070312502],[-78.59667968750003,69.37060546875006],[-78.45791015625,69.389501953125],[-78.33256835937495,69.38603515624999],[-78.30048828124998,69.37871093750002],[-78.27246093749997,69.36123046875],[-78.23408203124995,69.31459960937502],[-78.22895507812498,69.30400390624999],[-78.28701171875,69.2626953125],[-78.43896484374994,69.19916992187504],[-78.53291015625001,69.14604492187505],[-78.55175781250003,69.12866210937497],[-78.56030273437497,69.10625],[-78.59565429687498,69.07905273437498],[-78.70537109374995,69.013671875],[-78.77919921875,68.95048828124999],[-78.85268554687495,68.915673828125],[-79.05361328124994,68.88291015625],[-79.21064453124995,68.845458984375]]],[[[-90.1998046875,69.419091796875],[-90.17739257812497,69.35708007812497],[-90.26728515624998,69.27290039062495],[-90.29545898437496,69.2578125],[-90.33027343749993,69.252197265625],[-90.36406249999999,69.26259765625],[-90.46469726562498,69.32871093750003],[-90.49204101562503,69.369873046875],[-90.45512695312495,69.39047851562499],[-90.37724609375,69.41621093750001],[-90.32207031249996,69.4287109375],[-90.25283203124995,69.41791992187501],[-90.22856445312499,69.43603515624997],[-90.1998046875,69.419091796875]]],[[[-76.99536132812503,69.14375],[-77.12163085937499,69.13212890625003],[-77.21503906250001,69.13808593750002],[-77.27558593750001,69.16166992187502],[-77.32192382812502,69.19360351562506],[-77.37939453124999,69.2740234375],[-77.35805664062502,69.31152343749999],[-77.35151367187501,69.378662109375],[-77.34091796874998,69.40385742187499],[-77.31870117187498,69.41630859375005],[-77.18754882812502,69.440087890625],[-77.10917968749993,69.43740234375],[-76.99409179687493,69.411767578125],[-76.74570312499995,69.40400390625001],[-76.68408203125003,69.38041992187502],[-76.66884765625002,69.36616210937504],[-76.67001953125,69.34858398437501],[-76.68745117187498,69.32768554687502],[-76.81030273437497,69.26674804687502],[-76.86933593750001,69.22485351562503],[-76.91123046875003,69.174658203125],[-76.99536132812503,69.14375]]],[[[-101.171728515625,69.39707031250003],[-101.25351562499995,69.38847656250005],[-101.26850585937498,69.39057617187504],[-101.26152343749999,69.41782226562496],[-101.267626953125,69.43149414062502],[-101.28950195312501,69.44125976562506],[-101.21777343749997,69.46293945312505],[-101.20732421874997,69.479833984375],[-101.230126953125,69.492822265625],[-101.32846679687496,69.51743164062503],[-101.35649414062499,69.53969726562505],[-101.351318359375,69.55922851562502],[-101.31289062499997,69.57607421875],[-101.24487304687499,69.57353515625002],[-101.09833984374997,69.540771484375],[-101.03115234374997,69.49545898437499],[-101.00063476562495,69.4619140625],[-101.04916992187499,69.45693359374997],[-101.08686523437494,69.44335937500003],[-101.12695312500003,69.41469726562497],[-101.171728515625,69.39707031250003]]],[[[-95.51367187499997,69.57363281250002],[-95.38090820312493,69.50659179687506],[-95.382080078125,69.47407226562498],[-95.39941406249997,69.41977539062503],[-95.43745117187498,69.37846679687505],[-95.496240234375,69.35009765625006],[-95.57851562499997,69.33583984375],[-95.684375,69.33569335937506],[-95.73012695312502,69.34755859374997],[-95.69589843749996,69.38955078125],[-95.67016601562497,69.40200195312497],[-95.66582031249999,69.43896484375003],[-95.68281249999998,69.50029296875002],[-95.70410156249997,69.53803710937495],[-95.76362304687501,69.55961914062502],[-95.80620117187499,69.56049804687501],[-95.81777343749994,69.54057617187505],[-95.79833984374997,69.49980468749999],[-95.81181640624996,69.447021484375],[-95.858203125,69.38222656250002],[-95.89345703125,69.35175781250004],[-95.95605468749994,69.36713867187495],[-95.9859375,69.39189453125005],[-95.97792968749997,69.43271484375],[-95.99477539062494,69.46967773437498],[-95.97885742187498,69.50883789062505],[-95.93623046875001,69.56704101562502],[-95.87583007812495,69.60600585937505],[-95.79775390624992,69.62573242187497],[-95.70664062500003,69.62431640625005],[-95.60249023437495,69.601806640625],[-95.51367187499997,69.57363281250002]]],[[[-139.043115234375,69.57690429687497],[-139.125732421875,69.53930664062506],[-139.25698242187497,69.57856445312495],[-139.29140624999997,69.59785156249998],[-139.13959960937498,69.64960937499995],[-139.07265624999997,69.64765625000001],[-138.93154296875,69.61694335937497],[-138.87885742187498,69.589697265625],[-139.043115234375,69.57690429687497]]],[[[-67.91469726562494,69.54096679687504],[-67.94028320312499,69.53486328125004],[-68.20234375000001,69.58041992187498],[-68.22138671874998,69.616748046875],[-68.09326171875,69.65703125000005],[-67.989111328125,69.67875976562505],[-67.908837890625,69.68183593749995],[-67.8291015625,69.675],[-67.75458984375001,69.63144531249998],[-67.84492187499993,69.59174804687498],[-67.91469726562494,69.54096679687504]]],[[[-78.02910156249993,69.71489257812502],[-77.97783203124999,69.66489257812506],[-77.96914062499998,69.63896484375002],[-78.03999023437495,69.6083984375],[-78.30722656250003,69.55180664062502],[-78.47006835937496,69.50253906249999],[-78.55239257812497,69.491552734375],[-78.66206054687493,69.50263671874995],[-78.7953125,69.479736328125],[-78.84819335937502,69.4828125],[-78.789306640625,69.52314453124995],[-78.57856445312498,69.638818359375],[-78.40185546874994,69.650634765625],[-78.34418945312501,69.67480468750003],[-78.29550781249995,69.66713867187497],[-78.26733398437497,69.68715820312497],[-78.26245117187497,69.71684570312507],[-78.20073242187502,69.73950195312497],[-78.14521484374997,69.73920898437501],[-78.02910156249993,69.71489257812502]]],[[[-79.43066406250003,69.78779296874995],[-79.39028320312495,69.73041992187498],[-79.36499023437496,69.71235351562495],[-79.40244140624995,69.68515625],[-79.55283203124995,69.63085937500006],[-79.88168945312498,69.60869140625007],[-80.04750976562502,69.63432617187505],[-79.97114257812498,69.55634765624995],[-79.95449218749997,69.52348632812502],[-79.97783203124992,69.50966796874997],[-80.046875,69.5138671875],[-80.16147460937495,69.53593749999999],[-80.22734375,69.56240234375005],[-80.244482421875,69.5931640625],[-80.26865234375003,69.6],[-80.29970703124997,69.58286132812503],[-80.32958984375,69.58676757812503],[-80.39785156249997,69.63261718750005],[-80.44804687499999,69.64970703125007],[-80.77822265625002,69.67700195312503],[-80.794775390625,69.68925781250005],[-80.77753906249995,69.71035156249998],[-80.72661132812499,69.74042968749998],[-80.65253906249998,69.75058593749999],[-80.46591796874998,69.73710937500002],[-80.45068359375,69.744775390625],[-80.43833007812495,69.78271484375],[-80.42421875000002,69.797607421875],[-80.29492187499997,69.79379882812503],[-80.21367187499993,69.80195312500001],[-80.16884765624992,69.78242187500001],[-80.124609375,69.73725585937495],[-80.06176757812497,69.74550781250005],[-79.97084960937502,69.73896484374994],[-79.86958007812501,69.75551757812505],[-79.71484375,69.79570312500005],[-79.593994140625,69.81049804687495],[-79.43066406250003,69.78779296874995]]],[[[-97.439453125,69.64267578125006],[-97.40864257812495,69.63076171875002],[-97.35068359374995,69.64086914062506],[-97.30576171875003,69.67348632812502],[-97.278466796875,69.67963867187495],[-97.23608398437497,69.67348632812502],[-97.096337890625,69.614990234375],[-96.98906249999997,69.55361328125002],[-96.87519531249998,69.51000976562503],[-96.69453124999995,69.47109375],[-96.29995117187494,69.34438476562505],[-96.18374023437497,69.25869140625],[-96.06098632812493,69.12543945312501],[-95.95136718749998,69.02373046874999],[-95.85488281249992,68.95356445312501],[-95.7513671875,68.89765624999998],[-95.58549804687496,68.83510742187502],[-95.43754882812502,68.88061523437497],[-95.374169921875,68.89213867187502],[-95.31953124999995,68.87319335937497],[-95.26777343749998,68.82607421874997],[-95.29516601562497,68.80502929687502],[-95.35947265625,68.77836914062502],[-95.46557617187494,68.74726562499998],[-95.61420898437495,68.74501953124997],[-95.68564453125002,68.73583984375006],[-95.80214843749995,68.68647460937504],[-95.89462890624996,68.62724609375005],[-96.02402343750003,68.60727539062498],[-96.267626953125,68.50791015624998],[-96.40156249999995,68.47070312500003],[-96.59882812499998,68.46083984375],[-97.00839843750003,68.53867187500002],[-97.263671875,68.52773437500002],[-97.47202148437498,68.543701171875],[-97.70478515624998,68.62592773437495],[-97.88535156249996,68.6724609375],[-98.23505859375,68.73935546875006],[-98.25795898437495,68.74926757812503],[-98.27304687499999,68.771875],[-98.28017578124997,68.80717773437502],[-98.296044921875,68.83076171875004],[-98.320556640625,68.84272460937498],[-98.37558593750003,68.84169921875002],[-98.43183593749995,68.818359375],[-98.53964843749998,68.79824218749997],[-98.70380859374991,68.80278320312502],[-98.775244140625,68.816748046875],[-98.82963867187497,68.83862304687503],[-98.85913085937496,68.86435546875003],[-98.863720703125,68.893798828125],[-98.87885742187495,68.91645507812498],[-98.90449218749995,68.93242187500005],[-98.96401367187501,68.93286132812506],[-99.057373046875,68.91767578124998],[-99.09384765624998,68.89887695312495],[-99.073388671875,68.87656250000003],[-99.090625,68.86333007812499],[-99.25400390625,68.86318359374995],[-99.31796874999998,68.87626953125007],[-99.44086914062498,68.91767578124998],[-99.49467773437493,68.95957031249998],[-99.56406249999995,69.03413085937498],[-99.557373046875,69.054296875],[-99.51328125,69.099609375],[-99.455712890625,69.13120117187503],[-99.08544921874996,69.149755859375],[-98.91220703125,69.16757812499998],[-98.72363281249997,69.21914062500002],[-98.50351562499998,69.30830078124998],[-98.45595703124995,69.33466796875001],[-98.45039062499998,69.35405273437503],[-98.46660156250002,69.375],[-98.53535156249998,69.42631835937505],[-98.55854492187501,69.46142578125],[-98.53671875,69.47802734375],[-98.44838867187494,69.47954101562503],[-98.494873046875,69.499365234375],[-98.534375,69.52744140625003],[-98.54824218749994,69.54497070312505],[-98.54599609375,69.57290039062497],[-98.47583007812503,69.57905273437498],[-98.38935546874998,69.56503906250006],[-98.22231445312497,69.484521484375],[-98.15576171875,69.46884765625],[-98.04135742187498,69.456640625],[-98.16298828124997,69.51220703125003],[-98.28881835937503,69.62900390625003],[-98.30449218749993,69.66928710937498],[-98.30122070312498,69.69169921875002],[-98.268212890625,69.75444335937499],[-98.23867187500002,69.78002929687497],[-98.20048828124996,69.79697265625006],[-98.08076171875001,69.833056640625],[-97.88896484375002,69.858251953125],[-97.79072265624998,69.86162109374999],[-97.69121093749996,69.84125976562501],[-97.60434570312503,69.80219726562495],[-97.41137695312497,69.73847656250004],[-97.38256835937497,69.71240234375006],[-97.38569335937497,69.70024414062506],[-97.46015624999995,69.68271484375003],[-97.46943359374998,69.66679687499999],[-97.439453125,69.64267578125006]]],[[[-86.913037109375,70.11323242187501],[-86.79877929687498,70.10527343750007],[-86.69121093750002,70.11503906250002],[-86.61274414062493,70.10571289062497],[-86.56337890624998,70.07724609375003],[-86.53090820312497,70.04765625000005],[-86.51523437499993,70.01704101562504],[-86.55766601562497,69.99531249999995],[-86.73432617187501,69.976318359375],[-86.85493164062498,69.98574218749995],[-86.98398437499996,70.0111328125],[-87.043798828125,69.999853515625],[-87.19082031250002,70.01855468749997],[-87.26391601562497,70.0439453125],[-87.3232421875,70.08012695312502],[-87.32314453124997,70.10224609374998],[-87.168115234375,70.12724609375002],[-87.10727539062495,70.14667968749998],[-86.913037109375,70.11323242187501]]],[[[-100.30834960937497,70.49580078124994],[-100.32124023437501,70.4876953125],[-100.53725585937497,70.525],[-100.620654296875,70.54692382812507],[-100.64775390625002,70.563134765625],[-100.66694335937501,70.59624023437499],[-100.67832031250002,70.64619140624995],[-100.63530273437496,70.6703125],[-100.537939453125,70.668603515625],[-100.43393554687498,70.6494140625],[-100.27612304687497,70.59462890625002],[-100.32109374999999,70.578369140625],[-100.32324218749999,70.54243164062495],[-100.305517578125,70.50839843750003],[-100.30834960937497,70.49580078124994]]],[[[-74.70888671874997,45.0038574218751],[-74.76245117187494,44.99907226562501],[-74.85664062499995,45.00390625000011],[-74.99614257812496,44.970117187499966],[-75.17939453124998,44.899365234375125],[-75.40126953124997,44.77226562499999],[-75.79194335937498,44.49707031250006],[-75.81933593749997,44.46801757812499],[-75.87592773437495,44.416992187500085],[-76.02021484375004,44.36259765625002],[-76.1511718749999,44.30395507812497],[-76.18579101562501,44.24223632812502],[-76.2485351562499,44.21411132812497],[-76.46459960937497,44.05761718750006],[-76.58613281249995,43.924316406250085],[-76.69648437499998,43.78481445312508],[-76.819970703125,43.62880859375011],[-77.07333984375,43.62685546875005],[-77.26669921874986,43.62749023437502],[-77.59653320312492,43.62861328125007],[-77.87924804687489,43.62954101562507],[-78.21479492187493,43.63066406249993],[-78.45825195312497,43.6314941406251],[-78.72041015624993,43.624951171875004],[-78.84555664062492,43.58334960937506],[-79.00249023437492,43.52714843749999],[-79.171875,43.466552734375085],[-79.0830566406249,43.33139648437509],[-79.05922851562494,43.27807617187506],[-79.066064453125,43.10610351562502],[-79.04799804687497,43.08730468750007],[-79.02905273437491,43.06176757812503],[-79.02617187499996,43.01733398437506],[-79.01166992187491,42.99702148437498],[-78.98076171874993,42.98061523437502],[-78.94599609374995,42.96132812499999],[-78.92084960937498,42.93520507812502],[-78.91508789062496,42.90913085937503],[-78.9392578124999,42.86372070312501],[-79.03671874999986,42.80234374999995],[-79.17373046875,42.74853515625],[-79.44624023437488,42.65146484374995],[-79.76201171874993,42.53896484375011],[-80.03574218749992,42.44145507812496],[-80.2475585937499,42.366015625000045],[-80.68261718749991,42.29975585937504],[-81.02822265624997,42.247167968750006],[-81.27763671874986,42.20917968750007],[-81.50732421874997,42.10346679687504],[-81.76093749999993,41.98681640625005],[-81.97416992187496,41.88872070312499],[-82.2133300781249,41.77871093750013],[-82.43906249999989,41.6748535156251],[-82.69003906249995,41.675195312499994],[-82.86621093749997,41.753027343750034],[-83.02998046874993,41.83295898437498],[-83.141943359375,41.97587890624996],[-83.14965820312497,42.14194335937506],[-83.10952148437497,42.25068359375001],[-83.07314453124994,42.300292968749964],[-83.0037109374999,42.33173828124998],[-82.86777343749992,42.38520507812503],[-82.74418945312496,42.493457031250074],[-82.64511718749993,42.5580566406251],[-82.54531249999997,42.62470703124998],[-82.4883300781249,42.739501953125114],[-82.41723632812497,43.01738281250004],[-82.40820312499991,43.072656250000136],[-82.30478515624989,43.263232421875045],[-82.19038085937495,43.47407226562501],[-82.137841796875,43.570898437500034],[-82.19658203124996,43.82221679687506],[-82.2407714843749,44.01533203124998],[-82.28125,44.19223632812495],[-82.32680664062494,44.39155273437507],[-82.36826171874995,44.572998046875085],[-82.4073730468749,44.743945312500074],[-82.4465820312499,44.91552734375006],[-82.48505859374991,45.08374023437502],[-82.51523437499995,45.2043945312501],[-82.55107421874987,45.3473632812501],[-82.760400390625,45.44770507812509],[-82.91933593749994,45.51796875000002],[-83.17929687499989,45.632763671874976],[-83.39731445312489,45.729052734375045],[-83.59267578125,45.81713867187506],[-83.46948242187503,45.99467773437499],[-83.48012695312497,46.023730468750045],[-83.524755859375,46.05869140625006],[-83.61596679687503,46.116845703124994],[-83.66928710937486,46.122753906249955],[-83.7631835937499,46.10908203125001],[-83.91303710937497,46.07290039062511],[-83.97778320312494,46.08491210937507],[-84.02919921874994,46.1470214843751],[-84.08837890624991,46.226513671874955],[-84.10776367187495,46.28862304687501],[-84.11518554687504,46.37080078125004],[-84.15048828124995,46.44477539062501],[-84.128125,46.483593750000125],[-84.12319335937497,46.502929687499964],[-84.12519531249995,46.527246093750136],[-84.1494628906249,46.5427734375001],[-84.1921874999999,46.54956054687506],[-84.33671875,46.518505859375125],[-84.40170898437486,46.515625],[-84.44047851562496,46.49814453125006],[-84.50156249999988,46.461865234375125],[-84.56176757812497,46.45737304687509],[-84.66577148437503,46.54326171875002],[-84.77939453124989,46.63730468749998],[-84.82705078124994,46.766845703125085],[-84.87597656249994,46.89990234375003],[-85.07006835937496,46.97993164062498],[-85.26411132812498,47.05996093750011],[-85.4582031249999,47.139941406250074],[-85.65224609374998,47.21997070312502],[-85.84633789062492,47.3],[-86.04038085937495,47.380029296875136],[-86.23447265624995,47.46005859375009],[-86.42856445312489,47.540087890625045],[-86.49555664062504,47.566601562500125],[-86.67216796874996,47.636425781249955],[-86.92182617187493,47.735205078125006],[-87.20800781249996,47.848486328125006],[-87.49423828124992,47.96176757812498],[-87.74389648437497,48.06054687500003],[-87.92050781249989,48.13037109375006],[-87.98745117187494,48.156884765625136],[-88.16064453124997,48.225390625000045],[-88.37817382812497,48.30307617187506],[-88.61176757812504,48.26401367187509],[-88.89868164062497,48.15571289062507],[-89.06259765624986,48.093798828125074],[-89.18564453124989,48.04741210937502],[-89.27319335937497,48.01997070312512],[-89.4556640624999,47.99624023437508],[-89.5505859374999,47.99990234375011],[-89.77539062499997,48.01533203125007],[-89.90102539062497,47.995458984375084],[-89.99365234374991,48.01533203125007],[-90.03994140624992,48.07817382812507],[-90.09179687500003,48.11811523437503],[-90.32011718749989,48.0991699218751],[-90.60708007812494,48.11259765624999],[-90.74438476562491,48.10458984374995],[-90.79731445312495,48.13105468750001],[-90.84033203125003,48.20053710937495],[-90.9160644531249,48.20913085937511],[-91.04345703124991,48.19370117187498],[-91.22065429687495,48.10458984374995],[-91.38720703124997,48.05854492187498],[-91.51831054687493,48.058300781250125],[-91.64731445312493,48.10458984374995],[-91.85839843749994,48.197558593750074],[-92.00517578125002,48.30185546875],[-92.17177734374994,48.33837890624997],[-92.29868164062495,48.32890624999999],[-92.3484375,48.276611328125],[-92.41459960937492,48.276611328125],[-92.46088867187504,48.36586914062508],[-92.50058593749995,48.43535156250002],[-92.58325195312491,48.46508789062502],[-92.73266601562489,48.53183593749995],[-92.83671875,48.56777343749999],[-92.99624023437494,48.611816406250085],[-93.05170898437495,48.619873046875114],[-93.15522460937491,48.625341796875006],[-93.25795898437497,48.628857421875004],[-93.37788085937498,48.61655273437498],[-93.46362304687494,48.56127929687508],[-93.56425781249993,48.5369140625001],[-93.70771484374995,48.525439453125074],[-93.80356445312492,48.54892578125006],[-93.85161132812495,48.607275390625034],[-94.05517578125003,48.65903320312492],[-94.41416015624989,48.70410156250006],[-94.6208984374999,48.7426269531251],[-94.6753417968749,48.7744140625],[-94.70507812499991,48.808496093749994],[-94.71254882812492,48.8629882812501],[-94.71279296874995,48.86342773437499],[-94.80346679687497,49.00292968749999],[-94.84257812499996,49.119189453125074],[-94.86040039062493,49.258593750000045],[-94.85434570312493,49.304589843749994],[-94.87480468749993,49.3190429687501],[-94.93935546874994,49.34941406250007],[-95.15527343749997,49.3696777343751],[-95.15825195312496,49.2030761718751],[-95.16206054687493,48.991748046875045],[-95.39790039062493,48.99316406249997],[-95.82431640624995,48.99316406249997],[-96.25068359374993,48.99316406249997],[-96.67705078124993,48.99316406249997],[-97.10346679687503,48.99316406249997],[-97.52983398437492,48.99316406249997],[-97.95620117187492,48.99316406249997],[-98.38261718749996,48.99316406249997],[-98.80898437499994,48.99316406249997],[-99.23535156249994,48.99311523437512],[-99.66171874999995,48.99311523437512],[-100.08813476562496,48.99311523437512],[-100.51450195312495,48.99311523437512],[-100.94086914062504,48.99311523437512],[-101.36728515624986,48.99311523437512],[-101.79365234374995,48.99311523437512],[-102.22001953124996,48.99311523437512],[-102.64643554687497,48.99311523437512],[-103.07280273437496,48.99311523437512],[-103.49916992187504,48.99311523437512],[-103.92558593749989,48.99311523437512],[-104.35195312499997,48.99311523437512],[-104.77832031249997,48.99311523437512],[-105.20468749999988,48.99311523437512],[-105.63110351562496,48.99311523437512],[-106.05747070312489,48.99311523437512],[-106.48383789062497,48.99311523437512],[-106.91025390624988,48.99311523437512],[-107.33662109374998,48.99311523437512],[-107.76298828124987,48.99311523437512],[-108.18940429687498,48.99311523437512],[-108.6157714843749,48.99311523437512],[-109.04213867187498,48.99311523437512],[-109.4685546874999,48.993066406250136],[-109.894921875,48.993066406250136],[-110.3212890624999,48.993066406250136],[-110.7476562499999,48.993066406250136],[-111.17407226562491,48.993066406250136],[-111.6004394531249,48.993066406250136],[-112.02680664062491,48.993066406250136],[-112.45322265624999,48.993066406250136],[-112.87958984374991,48.993066406250136],[-113.30595703124992,48.993066406250136],[-113.73237304687491,48.993066406250136],[-114.1587402343749,48.993066406250136],[-114.58510742187491,48.993066406250136],[-115.01152343750002,48.993066406250136],[-115.43789062499992,48.993066406250136],[-115.86425781249993,48.993066406250136],[-116.290625,48.993066406250136],[-116.71704101562491,48.993066406250136],[-117.14340820312493,48.993066406250136],[-117.56977539062493,48.993066406250136],[-117.99619140624992,48.993066406250136],[-118.42255859374994,48.993066406250136],[-118.84892578124993,48.993066406250136],[-119.27534179687493,48.993066406250136],[-119.70170898437495,48.99301757812495],[-120.12807617187494,48.99301757812495],[-120.55449218749993,48.99301757812495],[-120.98085937499995,48.99301757812495],[-121.40722656249994,48.99301757812495],[-121.83359374999993,48.99301757812495],[-122.26000976562496,48.99301757812495],[-122.68637695312496,48.99301757812495],[-122.78876953124994,48.99301757812495],[-122.82670898437493,49.028417968750034],[-122.92416992187489,49.07465820312504],[-122.96269531249993,49.07460937500005],[-123.002294921875,49.060888671875084],[-123.02724609374992,49.03852539062498],[-123.04921874999997,48.993017578125034],[-123.06328124999999,48.97773437500001],[-123.07729492187501,48.980224609375],[-123.08642578124991,48.993017578125034],[-123.11762695312495,49.05634765625004],[-123.10932617187497,49.084619140625136],[-123.07729492187492,49.11835937500007],[-123.07954101562494,49.130615234375085],[-123.15014648437493,49.1210449218751],[-123.18188476562491,49.129492187500034],[-123.19633789062502,49.147705078125],[-123.19106445312492,49.219531250000074],[-123.22944335937491,49.260498046875085],[-123.18393554687488,49.27773437500002],[-123.06728515624991,49.29155273437502],[-122.94765624999997,49.29326171874999],[-122.91298828124992,49.32319335937507],[-122.87910156249994,49.39892578125003],[-122.96445312499992,49.32934570312506],[-123.01552734374995,49.32216796875002],[-123.17426757812494,49.34819335937498],[-123.27675781249995,49.34394531250001],[-123.29052734374993,49.35947265624998],[-123.28627929687494,49.374951171875125],[-123.26406250000005,49.39047851562509],[-123.24770507812498,49.443017578125136],[-123.22299804687492,49.59047851562496],[-123.19067382812491,49.644287109375114],[-123.17958984374998,49.673535156250004],[-123.1875,49.680322265624994],[-123.325,49.577685546875045],[-123.33666992187491,49.545117187499976],[-123.32241210937492,49.51699218750011],[-123.33564453124997,49.45917968750004],[-123.3989746093749,49.441894531250085],[-123.43696289062493,49.45131835937505],[-123.50820312500004,49.402441406250034],[-123.53056640624987,49.39731445312506],[-123.85893554687492,49.48286132812506],[-123.89184570312496,49.494726562500006],[-123.94838867187491,49.53471679687499],[-124.02861328125002,49.602880859375006],[-124.05380859375,49.66171875000009],[-124.02402343749986,49.71132812500008],[-123.99262695312495,49.736181640625],[-123.95952148437487,49.736181640625],[-123.92275390624994,49.717529296875114],[-123.847119140625,49.63666992187498],[-123.81718749999993,49.58657226562507],[-123.7390624999999,49.59355468750007],[-123.61274414062494,49.65756835937498],[-123.58247070312498,49.68125],[-123.70830078124996,49.656933593750004],[-123.76269531250003,49.65849609374999],[-123.81801757812492,49.68515625000009],[-123.87441406250007,49.73681640625011],[-123.90380859374991,49.79545898437499],[-123.90424804687491,49.98115234374998],[-123.88496093749995,50.017041015625004],[-123.82382812499995,50.04370117187511],[-123.78466796874997,50.087988281250084],[-123.78769531249988,50.10673828124998],[-123.82543945312493,50.14423828124998],[-123.88012695312497,50.17363281249993],[-123.93359375000001,50.18828125000007],[-123.94589843749993,50.18393554687509],[-123.86303710937494,50.102587890625045],[-123.86572265624996,50.072070312500045],[-123.95742187499998,49.992773437500034],[-123.97138671874991,49.9695312500001],[-123.97211914062497,49.892041015625125],[-123.9849121093749,49.87558593749997],[-124.05878906250004,49.853662109375136],[-124.14160156249993,49.792675781250125],[-124.28125,49.77211914062502],[-124.41259765624991,49.778125],[-124.483251953125,49.808203125000084],[-124.70229492187495,49.957666015624994],[-124.78237304687492,50.02011718749992],[-124.78427734374996,50.07280273437502],[-124.93417968749993,50.258056640625085],[-124.93334960937496,50.297900390625045],[-124.98559570312501,50.35561523437508],[-125.04360351562494,50.36376953124994],[-125.05668945312493,50.41865234375012],[-124.93681640624995,50.53740234374999],[-124.86264648437493,50.637304687500084],[-124.8542480468749,50.66865234375007],[-124.85751953124996,50.71733398437504],[-124.87543945312497,50.82563476562506],[-124.85986328124989,50.872412109375006],[-124.9335937499999,50.810595703125045],[-124.9492675781249,50.7646972656251],[-124.93105468749992,50.71840820312508],[-124.94252929687504,50.665673828124994],[-124.9854003906249,50.59194335937508],[-125.05878906249993,50.51386718749998],[-125.20986328124997,50.47631835937497],[-125.47631835937489,50.49716796874995],[-125.50717773437486,50.50727539062507],[-125.52597656249989,50.53413085937501],[-125.53935546874996,50.64902343749998],[-125.55556640624995,50.63486328124995],[-125.58583984374991,50.57363281250008],[-125.61015624999989,50.48603515624998],[-125.64130859374994,50.46621093750005],[-125.69755859374995,50.46455078125007],[-125.74121093749996,50.478564453125074],[-125.7724121093749,50.50820312500008],[-125.83959960937493,50.51064453125002],[-125.96503906249998,50.487353515625074],[-126.02412109375003,50.49672851562505],[-126.09433593749995,50.497607421875045],[-126.23657226562497,50.52329101562495],[-126.4044921875,50.529882812500034],[-126.44995117187494,50.54970703124999],[-126.44746093750004,50.58774414062492],[-126.41611328124988,50.60698242187493],[-126.23891601562491,50.62382812499999],[-126.06723632812493,50.664306640625085],[-125.89760742187494,50.684375],[-125.9041015625,50.704931640625006],[-125.98071289062489,50.71137695312507],[-126.3703125,50.66674804687503],[-126.4929687499999,50.67211914062506],[-126.51435546875,50.67939453125012],[-126.51733398437496,50.724462890625055],[-126.47221679687492,50.7672851562501],[-126.397119140625,50.80708007812504],[-126.37460937499995,50.83735351562498],[-126.41821289062494,50.85019531249992],[-126.48818359375,50.84184570312502],[-126.52177734374989,50.86606445312498],[-126.48461914062497,50.96049804687502],[-126.51733398437496,51.0568359375001],[-126.56289062499992,50.965478515625136],[-126.63178710937494,50.91513671875],[-126.9604003906249,50.89370117187507],[-127.01406249999992,50.86679687499995],[-127.057568359375,50.86752929687509],[-127.26748046874995,50.91606445312502],[-127.35693359374996,50.945556640625],[-127.4412109374999,50.989404296875044],[-127.59086914062502,51.087548828125136],[-127.70810546874999,51.15117187499996],[-127.71430664062493,51.268652343750084],[-127.68916015624997,51.34345703125007],[-127.63271484374992,51.427294921875074],[-127.41967773437496,51.608056640625136],[-127.34658203124998,51.64238281250002],[-127.28066406250005,51.6541015625001],[-126.96811523437488,51.66992187499994],[-126.73540039062489,51.69262695312497],[-126.69145507812502,51.70341796875002],[-127.03408203125001,51.71669921875008],[-127.33872070312488,51.70737304687495],[-127.44272460937495,51.67895507812503],[-127.57573242187495,51.56293945312501],[-127.6095703124999,51.51406249999999],[-127.64487304687502,51.47846679687504],[-127.66870117187496,51.47758789062502],[-127.71406249999998,51.4901855468751],[-127.72871093749994,51.50551757812502],[-127.74750976562504,51.54355468749997],[-127.81894531249993,51.60390624999999],[-127.85053710937497,51.67319335937509],[-127.86914062499994,51.77524414062509],[-127.863232421875,51.820800781249964],[-127.82998046875005,51.87900390625009],[-127.72763671874989,51.9932128906251],[-127.85878906249998,51.99028320312502],[-127.84331054687502,52.086474609375074],[-127.79536132812491,52.19101562500006],[-127.67333984375003,52.25292968750005],[-127.54970703124998,52.29760742187511],[-127.43793945312503,52.35615234375012],[-127.24223632812496,52.395117187500084],[-127.1757324218749,52.31484375000008],[-127.00795898437492,52.29067382812511],[-126.95947265624989,52.25454101562505],[-126.9,52.18833007812506],[-126.82631835937495,52.12514648437513],[-126.73857421875002,52.064941406249964],[-126.71396484374989,52.060693359374994],[-126.75263671875003,52.11235351562502],[-126.89521484375004,52.225488281249994],[-126.90141601562489,52.2653320312501],[-126.93818359374993,52.30859375000003],[-127.12705078124993,52.37094726562495],[-127.16059570312493,52.394873046875034],[-127.19399414062498,52.45766601562502],[-127.20825195312496,52.498242187500125],[-127.187109375,52.537695312500006],[-126.9952148437499,52.65791015624998],[-126.95131835937492,52.72124023437507],[-126.95136718749993,52.751025390625095],[-126.96640624999989,52.78466796875003],[-127.00825195312498,52.8425781250001],[-127.01933593750002,52.8424804687501],[-127.00639648437495,52.754589843750125],[-127.01323242187502,52.719970703125],[-127.03486328124998,52.681738281250034],[-127.06621093749989,52.65268554687497],[-127.10708007812494,52.6328125],[-127.51923828124998,52.359277343750044],[-127.5603027343749,52.34321289062498],[-127.71337890624993,52.31850585937511],[-127.79189453124992,52.28935546875002],[-127.83432617187488,52.25097656250002],[-127.90219726562492,52.15087890625006],[-127.9954101562499,51.95053710937509],[-128.10224609374993,51.78842773437495],[-128.19355468749993,51.99829101562506],[-128.3576171875,52.1588867187501],[-128.0375,52.318164062500045],[-128.02915039062495,52.342480468750004],[-128.0603027343749,52.427539062500095],[-128.0515624999999,52.45332031250004],[-128.02128906249993,52.49067382812501],[-127.94023437499995,52.54516601562508],[-127.94335937499997,52.55073242187498],[-128.03823242187494,52.53115234375008],[-128.18398437500005,52.40791015625001],[-128.24096679687503,52.36826171874995],[-128.27153320312493,52.3629882812501],[-128.27514648437497,52.435498046875125],[-128.19677734374991,52.62329101562503],[-128.13237304687502,52.80581054687508],[-128.10878906249988,52.85805664062508],[-128.05327148437487,52.91069335937496],[-128.10595703124997,52.90688476562508],[-128.3650390624999,52.82578125000006],[-128.45195312500005,52.87661132812511],[-128.52470703125002,53.140673828125095],[-128.6523437499999,53.24384765624998],[-128.8685546875,53.328125],[-129.08090820312492,53.36728515625006],[-129.12954101562505,53.44228515625008],[-129.1715820312499,53.53359375000002],[-129.114453125,53.641113281250085],[-129.02143554687507,53.692138671875],[-128.935595703125,53.71518554687506],[-128.8545898437499,53.70454101562504],[-128.85043945312492,53.66518554687502],[-128.90561523437492,53.55932617187511],[-128.83305664062493,53.54941406250006],[-128.54213867187488,53.420654296875114],[-128.47861328124995,53.410302734375136],[-128.35805664062497,53.45981445312509],[-128.29106445312502,53.45786132812506],[-128.13271484375002,53.417773437500045],[-128.0791992187499,53.36943359374998],[-127.92783203124999,53.274707031250045],[-127.950048828125,53.32983398437508],[-128.11513671874997,53.44594726562511],[-128.2072265624999,53.483203125000074],[-128.36914062500003,53.49038085937511],[-128.46962890624997,53.47089843750004],[-128.51176757812496,53.47656249999994],[-128.60034179687494,53.506103515625114],[-128.67553710937494,53.55458984375005],[-128.75078124999987,53.66083984375001],[-128.7678710937499,53.710205078125114],[-128.76367187500003,53.746875],[-128.74594726562486,53.780175781249994],[-128.71474609374988,53.81000976562504],[-128.65288085937502,53.831640625],[-128.5604492187499,53.84506835937506],[-128.5321289062499,53.85810546875007],[-128.65087890624994,53.918847656249994],[-128.70478515624993,53.918603515625136],[-128.89018554687496,53.82978515624998],[-128.9278320312499,53.82280273437496],[-128.943994140625,53.84003906250009],[-128.959375,53.84145507812505],[-129.01396484374993,53.79746093749995],[-129.05639648437497,53.77778320312504],[-129.2081054687499,53.6416015625],[-129.2317382812499,53.57641601562506],[-129.24033203124986,53.4790527343751],[-129.2578613281249,53.417968750000085],[-129.28427734374995,53.393164062500006],[-129.46240234374991,53.34658203125011],[-129.56372070312506,53.251464843750114],[-129.68671875000004,53.33354492187496],[-129.82177734375,53.4127441406251],[-129.91186523437491,53.55136718750009],[-130.07436523437497,53.57563476562506],[-130.26328125,53.654150390625055],[-130.33525390625002,53.723925781250074],[-130.23286132812495,53.867431640625],[-130.08593750000003,53.97578125000004],[-130.0635253906249,54.10566406250004],[-130.04331054687492,54.13354492187502],[-129.79077148437494,54.16577148437503],[-129.6260253906249,54.23027343750002],[-129.79497070312487,54.23613281249998],[-129.89843749999994,54.22636718749993],[-130.08422851562503,54.18139648437503],[-130.29033203124993,54.270361328125034],[-130.39677734375,54.35166015625006],[-130.4302734375,54.42099609374998],[-130.39345703125005,54.47963867187502],[-130.38862304687507,54.5393554687501],[-130.37001953125,54.62001953125002],[-130.3504882812499,54.6553222656251],[-130.30722656249986,54.700292968750034],[-130.21894531249995,54.7302734375001],[-130.14086914062503,54.822753906250114],[-130.108642578125,54.887255859375095],[-129.94853515624993,55.08105468749997],[-129.89013671874994,55.16464843749995],[-129.78076171875003,55.2804687500001],[-129.56064453124992,55.46254882812508],[-129.63012695312497,55.45224609374992],[-129.66665039062505,55.436669921875136],[-129.701318359375,55.43857421874998],[-129.73417968749993,55.45800781250003],[-129.7654785156249,55.49824218750007],[-129.79516601562503,55.55957031250011],[-129.81191406249997,55.532617187500136],[-129.8156249999999,55.41757812499998],[-129.83774414062492,55.31909179687497],[-129.87714843749995,55.25063476562508],[-129.98520507812492,55.111474609375136],[-130.04848632812494,55.05727539062511],[-130.09179687499997,55.107763671875084],[-130.05839843749993,55.19477539062507],[-129.99584960937497,55.26406250000013],[-129.98515624999993,55.3588378906251],[-130.04404296875003,55.47192382812503],[-130.07998046875005,55.56289062500007],[-130.09296875000004,55.63183593750011],[-130.09467773437495,55.694775390625125],[-130.08510742187494,55.751708984375],[-130.06035156249996,55.81372070312503],[-130.02031249999987,55.880761718750016],[-130.02509765624995,55.888232421875095],[-130.01406249999997,55.950537109375006],[-130.02290039062495,56.01450195312509],[-130.05595703124996,56.0652343750001],[-130.09785156249995,56.10927734375002],[-130.21469726562486,56.0828125],[-130.41313476562487,56.12250976562507],[-130.47709960937496,56.230566406250034],[-130.649072265625,56.26367187500003],[-130.74169921875006,56.340820312500114],[-130.9302246093749,56.37861328125001],[-131.0829101562499,56.40483398437502],[-131.19941406249995,56.44921875],[-131.335791015625,56.501220703125114],[-131.471875,56.556738281250055],[-131.57509765625002,56.5988281250001],[-131.65151367187494,56.59609375000008],[-131.82426757812496,56.58999023437507],[-131.8331054687499,56.68481445312502],[-131.88598632812494,56.74213867187498],[-131.86616210937495,56.792822265625],[-131.96249999999986,56.81870117187495],[-132.10429687499987,56.85678710937509],[-132.062890625,56.95336914062503],[-132.03154296874993,57.02656250000004],[-132.1570312499999,57.048193359375006],[-132.33798828124992,57.07944335937497],[-132.27939453124995,57.14536132812506],[-132.23217773437494,57.198535156250074],[-132.30166015625005,57.2763183593751],[-132.44248046874986,57.40673828125003],[-132.55048828124995,57.49990234374999],[-132.6915039062499,57.64511718750009],[-132.81552734374992,57.77270507812497],[-132.91684570312486,57.8770019531251],[-133.00141601562495,57.948974609375],[-133.12041015624996,58.07773437499995],[-133.27529296875,58.22285156250004],[-133.42255859374995,58.337060546875016],[-133.40112304687494,58.410888671874964],[-133.54638671874994,58.50346679687499],[-133.67392578124992,58.597167968750085],[-133.8207519531249,58.70502929687503],[-133.96572265625005,58.75786132812496],[-134.06918945312492,58.79550781249997],[-134.21850585937503,58.849902343750045],[-134.29697265624995,58.89848632812502],[-134.32963867187505,58.939697265625064],[-134.36352539062491,58.968750000000114],[-134.39306640625,59.00917968749999],[-134.41020507812493,59.05625],[-134.44077148437492,59.08535156250005],[-134.62197265624997,59.1553222656251],[-134.67724609374997,59.19926757812499],[-134.80239257812508,59.25],[-134.90722656249994,59.27119140625009],[-134.94375,59.28828125],[-135.07128906249994,59.44145507812496],[-135.05083007812493,59.49604492187507],[-135.03666992187493,59.550683593749994],[-135.05102539062491,59.57866210937501],[-135.26079101562502,59.6950195312501],[-135.36787109374998,59.743310546874994],[-135.47592773437484,59.793261718750045],[-135.70258789062504,59.72875976562506],[-135.9346679687499,59.662646484375074],[-136.09716796874991,59.63837890625009],[-136.3218261718749,59.60483398437503],[-136.24711914062496,59.53291015625012],[-136.27797851562494,59.480322265625055],[-136.34785156249995,59.456054687500085],[-136.46635742187493,59.459082031250006],[-136.46674804687495,59.27993164062508],[-136.57875976562494,59.15224609375002],[-136.81328125000002,59.1500488281251],[-136.93930664062492,59.10610351562502],[-137.12622070312491,59.04096679687507],[-137.2775390624999,58.98818359374999],[-137.43857421874995,58.903125],[-137.52089843749994,58.91538085937506],[-137.48417968749993,58.99121093750005],[-137.54370117187494,59.119433593750074],[-137.59331054687493,59.226269531249976],[-137.69663085937495,59.28115234374999],[-137.87055664062495,59.37358398437498],[-138.00112304687497,59.44291992187508],[-138.18745117187493,59.541943359375004],[-138.317626953125,59.611132812500074],[-138.45361328124997,59.683398437500045],[-138.63227539062504,59.77827148437501],[-138.70546874999997,59.90131835937504],[-138.86875,59.945751953125004],[-139.04345703124997,59.99326171874991],[-139.18515624999986,60.083593750000034],[-139.13696289062494,60.17270507812506],[-139.07924804687497,60.279443359375136],[-139.07924804687497,60.34370117187509],[-139.23476562499997,60.33974609374999],[-139.46796875000004,60.33369140625001],[-139.67631835937505,60.328320312499976],[-139.83066406249992,60.25288085937507],[-139.97329101562497,60.183154296875074],[-140.19692382812497,60.23750000000012],[-140.45283203125004,60.299707031250016],[-140.5254394531249,60.21835937499995],[-140.76274414062505,60.259130859375084],[-141.00214843750004,60.30024414062512],[-141.00214843750004,60.592431640625136],[-141.00214843750004,60.884667968749994],[-141.00214843750004,61.17685546875],[-141.00214843750004,61.46904296875002],[-141.00214843750004,61.76127929687504],[-141.00214843750004,62.053466796875085],[-141.00214843750004,62.34570312500012],[-141.00214843750004,62.637890625000125],[-141.00214843750004,62.93007812500013],[-141.00214843750004,63.22226562499997],[-141.00214843750004,63.51445312499999],[-141.00214843750004,63.80668945312501],[-141.00214843750004,64.09887695312506],[-141.00214843750004,64.39111328125009],[-141.00214843750004,64.6833007812501],[-141.00214843750004,64.97553710937513],[-141.00214843750004,65.26772460937514],[-141.00214843750004,65.55991210937498],[-141.00214843750004,65.8521484375],[-141.00214843750004,66.14433593750002],[-141.00214843750004,66.43652343750006],[-141.00214843750004,66.72875976562509],[-141.00214843750004,67.0209472656251],[-141.00214843750004,67.31313476562511],[-141.00214843750004,67.60537109375014],[-141.00214843750004,67.89755859374998],[-141.00214843750004,68.18974609374999],[-141.00214843750004,68.48198242187502],[-141.00214843750004,68.77416992187504],[-141.00214843750004,69.06635742187507],[-141.00214843750004,69.35859375000008],[-141.00214843750004,69.65078125000011],[-140.86000976562497,69.63525390624997],[-140.405126953125,69.60249023437504],[-139.97661132812493,69.62172851562505],[-139.18154296874997,69.51552734375008],[-138.68989257812495,69.31679687500011],[-138.29101562499997,69.21904296875007],[-138.12836914062495,69.15195312500009],[-137.86943359374987,69.09282226562495],[-137.25996093749998,68.96411132812503],[-137.07041015624992,68.95087890624998],[-136.71733398437493,68.88916015625003],[-136.49868164062502,68.89731445312509],[-136.12236328124993,68.88222656250002],[-135.86665039062498,68.83261718750006],[-135.36215820312486,68.69643554687502],[-135.258837890625,68.68432617187503],[-135.23120117187503,68.69428710937511],[-135.40693359374995,68.828955078125],[-135.43457031249997,68.84199218750001],[-135.63798828124993,68.89223632812511],[-135.876318359375,68.9169921875],[-135.89472656249993,68.92670898437504],[-135.93901367187487,68.9741699218751],[-135.92475585937493,68.99262695312495],[-135.87285156249993,69.00102539062507],[-135.69521484375005,69.000634765625],[-135.58999023437494,69.00825195312513],[-135.575537109375,69.02695312500003],[-135.65126953124997,69.03129882812502],[-135.74262695312495,69.04941406249998],[-135.84970703124992,69.08139648437492],[-135.91020507812487,69.11147460937502],[-135.6914550781249,69.31118164062502],[-135.61494140625004,69.291015625],[-135.49956054687487,69.337158203125],[-135.29282226562486,69.30786132812506],[-135.2549804687499,69.32382812499995],[-135.22978515624993,69.4251953125],[-135.19902343749993,69.44960937499998],[-135.1408203124999,69.46782226562496],[-134.85288085937495,69.4858886718751],[-134.4938476562499,69.46791992187498],[-134.45683593749993,69.47763671875],[-134.4912109374999,69.54531250000011],[-134.49536132812506,69.57192382812502],[-134.47368164062487,69.6328125],[-134.45146484374987,69.6654785156251],[-134.40893554687494,69.68178710937502],[-134.24204101562495,69.66884765625005],[-134.18989257812495,69.638818359375],[-134.13403320312497,69.58725585937495],[-134.07749023437492,69.557861328125],[-133.89995117187487,69.52822265625002],[-133.87978515624997,69.50771484375011],[-133.94746093749995,69.42949218749996],[-134.01840820312495,69.38847656249996],[-134.16503906249994,69.28056640625002],[-134.17431640624991,69.25283203125005],[-133.94804687499993,69.30131835937496],[-133.69404296875004,69.36840820312496],[-133.475927734375,69.40537109375003],[-133.29365234374987,69.41215820312499],[-133.16313476562496,69.43388671874999],[-133.08442382812487,69.47065429687501],[-133.02827148437495,69.50825195312504],[-132.91533203125,69.62963867187504],[-132.84033203124994,69.6506835937501],[-132.5268066406249,69.64326171875001],[-132.45234374999993,69.64692382812504],[-132.40390625,69.65874023437495],[-132.41274414062497,69.67407226562504],[-132.47895507812495,69.69287109374997],[-132.56835937500003,69.69814453125],[-132.57060546874996,69.70668945312514],[-132.53754882812495,69.72656250000009],[-132.48847656249993,69.73808593749996],[-132.33398437499997,69.75180664062508],[-132.232421875,69.70815429687508],[-132.16342773437498,69.70498046875014],[-131.93413085937496,69.75346679687507],[-131.58183593749996,69.88212890624999],[-131.44091796875003,69.91791992187501],[-131.31894531249995,69.92416992187503],[-131.2158691406249,69.90078125000005],[-131.13637695312497,69.90688476562505],[-131.0318359374999,69.9794921875001],[-130.990625,70.01811523437499],[-130.92617187500005,70.05161132812506],[-130.66547851562495,70.12705078124998],[-130.49843749999997,70.14316406250006],[-130.39638671874994,70.12924804687506],[-130.27495117187487,70.09799804687509],[-130.17495117187497,70.08588867187513],[-130.04331054687492,70.09506835937503],[-129.94497070312497,70.09091796875006],[-129.89804687499992,70.10615234374998],[-129.73007812499998,70.19208984375005],[-129.675634765625,70.19296875000009],[-129.62299804687504,70.16762695312508],[-129.53842773437495,70.10517578125013],[-129.5381835937499,70.07392578124997],[-129.64829101562495,69.99775390625008],[-130.45883789062486,69.77998046874995],[-130.70854492187493,69.68598632812501],[-130.83208007812485,69.65146484375006],[-130.96010742187497,69.63203125000001],[-131.207958984375,69.61577148437507],[-131.30634765624995,69.5966308593751],[-131.47294921874987,69.57949218749997],[-131.8627929687499,69.54936523437505],[-131.9377929687499,69.5347167968751],[-131.9887695312499,69.51762695312499],[-132.128759765625,69.40234375000011],[-132.19682617187502,69.3646972656251],[-132.33076171874995,69.30795898437509],[-132.48120117187506,69.2731445312501],[-132.68671874999995,69.25986328125006],[-132.8174804687499,69.20576171875004],[-132.9679687499999,69.10141601562509],[-133.08945312499986,69.02875976562504],[-133.22822265625,68.96713867187509],[-133.378955078125,68.88666992187504],[-133.41831054687492,68.84428710937493],[-133.37338867187492,68.78847656250011],[-133.34838867187494,68.76987304687506],[-133.1968261718749,68.73984374999998],[-133.138037109375,68.74658203125011],[-133.19218750000002,68.776513671875],[-133.31953124999995,68.81972656250008],[-133.33666992187497,68.83525390625005],[-133.30400390624987,68.84741210937506],[-132.7060058593749,68.81489257812498],[-132.57763671874997,68.84780273437514],[-132.53266601562504,68.87563476562511],[-132.54223632812506,68.88994140625002],[-132.70434570312503,68.89589843749997],[-132.739111328125,68.92246093750006],[-132.76469726562487,68.97246093749993],[-132.77011718749998,69.01215820312504],[-132.75546874999998,69.0416015625],[-132.71894531249998,69.07919921875],[-132.54516601562494,69.140625],[-132.358056640625,69.16694335937513],[-132.21396484374995,69.20166015625009],[-132.134375,69.23447265625003],[-131.91962890624995,69.29052734375009],[-131.83339843750005,69.3359863281251],[-131.7869140624999,69.37128906250001],[-131.78105468749993,69.38886718750004],[-131.82016601562503,69.40161132812497],[-131.78837890625002,69.43198242187495],[-131.6317871093749,69.45908203124995],[-131.56293945312493,69.46137695312507],[-131.34291992187494,69.43540039062492],[-131.3030273437499,69.41508789062505],[-131.32470703124997,69.36118164062509],[-131.2938964843749,69.36372070312507],[-131.20903320312493,69.43217773437499],[-131.1617187499999,69.45498046875002],[-131.11284179687487,69.45947265625003],[-131.06342773437504,69.45068359375003],[-131.01342773437497,69.4287109375],[-130.98627929687504,69.36289062500009],[-130.98198242187493,69.25327148437495],[-130.97065429687493,69.20908203125],[-130.91430664062503,69.28486328124998],[-130.87504882812505,69.32001953125004],[-130.66069335937493,69.48129882812503],[-130.51596679687486,69.5696777343749],[-130.35361328124992,69.65581054687506],[-130.1176269531249,69.720068359375],[-129.57211914062484,69.82670898437507],[-129.26484374999995,69.85541992187507],[-129.10913085937494,69.88193359374995],[-129.03291015624998,69.90498046875004],[-128.98432617187504,69.93344726562498],[-128.89892578124994,69.96616210937506],[-128.88369140625005,69.96347656250003],[-128.91679687499996,69.89487304687509],[-128.93862304687505,69.875],[-129.13833007812508,69.83251953125],[-129.15791015624995,69.80009765624999],[-129.1362304687499,69.75004882812507],[-129.10170898437508,69.71704101562511],[-129.054345703125,69.70107421875005],[-128.9714355468749,69.71240234375006],[-128.85302734375003,69.7510253906251],[-128.705517578125,69.81015625000006],[-128.38671874999994,69.96015625000007],[-128.35917968749996,69.98759765624999],[-128.27861328124987,70.10810546875001],[-128.09584960937497,70.16132812500004],[-127.76494140624995,70.221875],[-127.68378906249994,70.26035156249995],[-127.97402343750001,70.29291992187501],[-128.03417968749991,70.31533203125014],[-128.04365234374998,70.32875976562502],[-127.98891601562494,70.3631347656249],[-128.12148437499994,70.39736328124997],[-128.17011718749998,70.41845703125],[-128.16806640625,70.47978515625007],[-128.12729492187486,70.523828125],[-128.04047851562504,70.56640624999994],[-127.99101562499993,70.57382812500002],[-127.86162109375,70.54907226562497],[-127.75283203125005,70.51713867187505],[-127.37685546874994,70.36875],[-127.22597656249991,70.29614257812497],[-127.13847656249995,70.23935546874995],[-126.9268066406249,70.06171874999998],[-126.8334960937499,69.95908203125003],[-126.75869140624995,69.853369140625],[-126.6849121093749,69.77709960937507],[-126.61215820312492,69.73032226562498],[-126.25043945312495,69.54526367187492],[-126.06381835937495,69.46708984374999],[-125.90742187499998,69.41855468750006],[-125.72778320312497,69.37998046875],[-125.52495117187495,69.35156250000009],[-125.38676757812497,69.34921874999995],[-125.171875,69.42797851562501],[-125.166845703125,69.4797851562501],[-125.26157226562493,69.56616210937511],[-125.35693359374991,69.62597656250001],[-125.3455078124999,69.66245117187499],[-125.21938476562505,69.73237304687504],[-125.22788085937499,69.75673828125002],[-125.20117187499997,69.82880859374995],[-125.11401367187489,69.8150390625],[-125.07958984374989,69.81782226562504],[-125.03100585937494,69.8442871093751],[-124.96826171874994,69.894384765625],[-124.88916015624991,69.93579101562509],[-124.7936523437499,69.968505859375],[-124.767919921875,69.99003906249996],[-124.86259765625,70.00551757812508],[-124.92001953124992,70.0055664062501],[-124.96259765624995,70.0125976562501],[-124.99038085937494,70.02661132812511],[-124.95244140624993,70.041748046875],[-124.74511718749996,70.08017578125],[-124.70634765624989,70.11699218750005],[-124.63994140624993,70.14145507812506],[-124.55502929687488,70.15122070312509],[-124.50258789062494,70.14111328125],[-124.44448242187491,70.11059570312499],[-124.44150390624992,70.06191406250002],[-124.46718749999992,69.98256835937502],[-124.4719238281249,69.91850585937493],[-124.40693359374991,69.76743164062506],[-124.3493652343749,69.73452148437511],[-124.12460937499996,69.6899902343751],[-124.13847656250002,69.65317382812506],[-124.39838867187503,69.49384765625013],[-124.45390624999987,69.45483398437497],[-124.48134765624998,69.42514648437498],[-124.47207031249997,69.40004882812502],[-124.42617187499992,69.37944335937507],[-124.3380859374999,69.36484374999995],[-124.11171874999997,69.35888671874997],[-124.04965820312493,69.37285156249999],[-123.60913085937491,69.37744140625003],[-123.5284179687499,69.38935546874995],[-123.46044921874991,69.42001953125],[-123.361474609375,69.49663085937495],[-123.248974609375,69.52001953125011],[-123.2136718749999,69.54150390625006],[-123.14448242187491,69.63247070312511],[-123.11040039062492,69.73813476562498],[-123.07661132812495,69.78247070312511],[-123.02578125,69.81000976562504],[-122.95668945312494,69.81884765625006],[-122.78540039062496,69.80844726562509],[-122.7048828124999,69.81738281250011],[-122.3875,69.80844726562509],[-122.070068359375,69.81616210937506],[-121.741845703125,69.797509765625],[-121.53110351562496,69.77578125],[-121.33623046874996,69.74155273437495],[-120.96245117187502,69.66040039062511],[-120.81464843749993,69.61684570312514],[-120.29252929687495,69.42055664062511],[-120.13999023437489,69.38056640625013],[-119.85283203124989,69.34233398437499],[-118.86870117187495,69.25717773437503],[-118.74487304687496,69.23427734375],[-118.48559570312491,69.14487304687505],[-118.30698242187492,69.0927246093751],[-118.09521484374994,69.04291992187508],[-117.83032226562489,68.99990234375002],[-117.31127929687503,68.93491210937492],[-117.22695312499997,68.91342773437499],[-117.13173828124995,68.90712890625012],[-117.02573242187492,68.91596679687498],[-116.549951171875,68.87880859375005],[-116.42456054687503,68.88061523437504],[-116.33408203124989,68.87363281250006],[-116.22270507812493,68.84682617187511],[-116.05947265624998,68.83701171875006],[-116.065234375,68.85541992187507],[-116.25161132812495,68.95791015625],[-116.24340820312489,68.9740722656251],[-116.1667480468749,68.975341796875],[-115.9360839843749,68.95810546875003],[-115.88325195312495,68.9873046875001],[-115.80634765624993,68.98662109374997],[-115.63115234374996,68.97255859375014],[-115.44228515624994,68.94091796875009],[-115.2398437499999,68.89184570312503],[-114.99375,68.85004882812504],[-114.62016601562496,68.74609375],[-114.41386718749992,68.65957031250014],[-114.21816406249994,68.5520507812501],[-114.11083984374991,68.47734375],[-114.09204101562491,68.43540039062495],[-114.05112304687493,68.41464843749998],[-113.98818359375,68.41499023437507],[-113.96440429687493,68.39907226562501],[-114.02080078124989,68.30649414062496],[-114.05322265624991,68.28339843750007],[-114.0959472656249,68.26679687500007],[-114.27475585937493,68.2478515625001],[-114.76528320312494,68.27021484375003],[-114.85219726562498,68.19526367187507],[-115.12705078124992,68.13203124999995],[-115.17592773437495,68.10439453125002],[-115.18676757812491,68.08417968749998],[-115.16708984375002,68.01855468750011],[-115.20185546874998,67.99843750000011],[-115.42685546874989,67.92353515625013],[-115.43447265624995,67.90234375000006],[-115.28847656249995,67.87167968750003],[-115.13320312499992,67.819189453125],[-115.01118164062504,67.80639648437506],[-114.85673828125002,67.81357421875009],[-114.66289062499995,67.7952148437501],[-114.42939453125,67.751220703125],[-114.26704101562495,67.73115234375001],[-114.17573242187491,67.73500976562508],[-114.05107421875002,67.72690429687502],[-113.89321289062501,67.70688476562503],[-113.68193359374995,67.69995117187506],[-113.21499023437494,67.70175781250006],[-113.07495117187491,67.686669921875],[-112.87944335937489,67.67988281250004],[-112.50302734374993,67.6819335937501],[-112.43515624999988,67.68476562499998],[-112.31455078124989,67.71958007812495],[-112.23671874999995,67.731103515625],[-112.1013183593749,67.73173828124996],[-111.71088867187493,67.75732421875],[-111.57573242187493,67.75683593750007],[-111.45068359374996,67.77617187499993],[-111.29082031249989,67.81523437500006],[-111.1921875,67.82255859374999],[-111.15478515624997,67.7982421875],[-111.08740234374993,67.78764648437496],[-110.9900390624999,67.79082031250007],[-110.80488281249993,67.83232421875002],[-110.37197265624992,67.95419921874996],[-110.21625976562491,67.95400390625011],[-110.10195312499998,67.99223632812507],[-110.07392578124994,67.99291992187506],[-110.04248046874994,67.97719726562504],[-109.93652343750003,67.88789062499995],[-109.90424804687494,67.87353515625006],[-109.8313476562499,67.86582031250009],[-109.76015625,67.82011718750002],[-109.68603515624999,67.75175781249993],[-109.63037109374991,67.73271484374996],[-109.22431640624997,67.72978515625007],[-109.08125,67.7107421875001],[-109.03803710937504,67.69116210937503],[-108.99448242187495,67.63710937500002],[-108.96767578125001,67.53237304687501],[-108.94990234374993,67.49394531249999],[-108.890966796875,67.43808593749998],[-108.85200195312497,67.42197265625009],[-108.81518554687503,67.4375],[-108.71513671874989,67.58281249999999],[-108.68022460937489,67.60620117187494],[-108.61333007812493,67.59804687500008],[-108.59291992187495,67.59086914062502],[-108.49150390624987,67.48330078125014],[-108.34697265624993,67.40341796875003],[-107.98872070312495,67.2563964843751],[-107.930517578125,67.20249023437495],[-107.90917968749991,67.16254882812498],[-107.92944335937496,67.12680664062498],[-107.99130859374995,67.09516601562513],[-108.08842773437493,67.06977539062508],[-108.2208007812499,67.0505859375001],[-108.34433593749993,67.05751953125008],[-108.45908203124995,67.09042968750003],[-108.49604492187491,67.09228515625006],[-108.45527343749997,67.06298828124994],[-108.21816406249998,66.94125976562503],[-108.1576660156249,66.89262695312507],[-108.10146484374992,66.86035156250006],[-108.04960937500002,66.8443359375],[-108.00175781249995,66.81801757812514],[-107.95795898437491,66.78129882812493],[-107.7609374999999,66.68369140624995],[-107.70488281249995,66.63710937500005],[-107.48032226562495,66.49179687499993],[-107.37368164062498,66.43466796875003],[-107.2913574218749,66.40180664062507],[-107.25947265624998,66.39853515624995],[-107.27807617187496,66.42490234374998],[-107.56445312499993,66.618505859375],[-107.71035156250001,66.74003906250007],[-107.73085937499992,66.76918945312514],[-107.74023437499996,66.81376953124999],[-107.74599609374998,66.96147460937505],[-107.7250976562499,66.98413085937506],[-107.62617187499991,67.003125],[-107.49921874999997,66.93618164062505],[-107.45126953124989,66.92675781250009],[-107.41884765624995,66.93071289062502],[-107.40209960937491,66.94799804687497],[-107.32919921874989,66.93198242187509],[-107.2001953124999,66.88256835937497],[-107.15649414062497,66.88173828124997],[-107.25375976562489,66.97636718750007],[-107.32333984374993,67.02255859375006],[-107.34785156249995,67.05478515625005],[-107.28315429687493,67.103271484375],[-107.3184570312499,67.12778320312499],[-107.48237304687493,67.19912109374997],[-107.56748046874993,67.27304687499995],[-107.6440429687499,67.38476562499996],[-107.65092773437487,67.42822265625011],[-107.6383789062499,67.47421875000006],[-107.64990234374994,67.51127929687499],[-107.7530273437499,67.5868652343751],[-107.8650878906249,67.63920898437509],[-107.9540527343749,67.7],[-107.97211914062504,67.73203125],[-107.9583984375,67.81860351562506],[-107.89091796875002,67.85634765625011],[-107.7630859375,67.90683593750009],[-107.7286132812499,67.95883789062503],[-107.7874511718749,68.0125],[-107.79829101562498,68.03691406249996],[-107.76103515624992,68.03217773437504],[-107.509375,68.05913085937505],[-107.44619140624992,68.04965820312506],[-107.35112304687492,68.06118164062511],[-107.22412109374997,68.09379882812497],[-107.1248046874999,68.10844726562495],[-106.99365234374991,68.10629882812506],[-106.92255859374991,68.11416015625005],[-106.83564453124997,68.12861328124998],[-106.79072265624997,68.14482421875007],[-106.71098632812489,68.20678710937509],[-106.66840820312491,68.21601562500001],[-106.53486328124998,68.20927734375007],[-106.4594726562499,68.19565429687495],[-106.42426757812491,68.20058593750008],[-106.42949218749992,68.28847656250005],[-106.40439453124995,68.3193359375001],[-106.2712402343749,68.38320312499997],[-106.1321289062499,68.38989257812509],[-106.03930664062491,68.40732421875009],[-105.93305664062494,68.44311523437511],[-105.85693359374997,68.47514648437505],[-105.78120117187491,68.52656250000004],[-105.7501953125,68.59228515625011],[-105.77431640624994,68.61113281250005],[-105.93222656249995,68.63652343750007],[-106.02714843750002,68.62333984375003],[-106.23730468749993,68.57656250000011],[-106.45805664062496,68.51645507812495],[-106.5433105468749,68.46059570312511],[-106.56665039062497,68.38896484375007],[-106.60849609374988,68.35737304687504],[-106.780419921875,68.38730468750009],[-106.85371093749993,68.38681640625],[-106.94580078125003,68.37436523437495],[-107.043310546875,68.34682617187502],[-107.14619140624991,68.30419921875004],[-107.29814453124996,68.29643554687507],[-107.49912109374995,68.32353515625007],[-107.61933593749994,68.3310546875],[-107.74150390624995,68.2857421875],[-107.73422851562489,68.25205078125009],[-107.67763671875,68.20292968750002],[-107.73417968749989,68.17373046875011],[-108.02719726562488,68.16293945312503],[-108.10458984374993,68.16928710937509],[-108.26103515625002,68.14990234375006],[-108.3228027343749,68.15410156250002],[-108.36791992187503,68.17753906249999],[-108.68657226562493,68.27734375000009],[-108.71811523437488,68.29746093750009],[-108.64091796874996,68.37851562500009],[-108.34575195312496,68.597802734375],[-108.31347656249996,68.61079101562498],[-107.76635742187496,68.64892578125011],[-107.43593750000005,68.68886718750008],[-106.83066406249993,68.80947265625014],[-106.71347656249995,68.81948242187505],[-106.32426757812489,68.89946289062499],[-106.16445312499992,68.91987304687507],[-106.0156738281249,68.9060546875001],[-105.79794921874993,68.86479492187505],[-105.68559570312487,68.82817382812505],[-105.60605468749993,68.78242187500013],[-105.53984374999995,68.71865234375011],[-105.45693359374994,68.57807617187507],[-105.42861328124992,68.458251953125],[-105.3774414062499,68.413818359375],[-105.19497070312494,68.33037109375005],[-105.10131835937496,68.29799804687502],[-105.04360351562492,68.2878906250001],[-104.993798828125,68.30742187499999],[-104.95981445312489,68.31054687500009],[-104.93671874999991,68.30302734374999],[-104.91196289062493,68.25048828125011],[-104.87944335937496,68.2452636718751],[-104.76962890624989,68.2517578125],[-104.65317382812486,68.23007812500002],[-104.63637695312492,68.21391601562496],[-104.6611328124999,68.148779296875],[-104.62817382812503,68.12148437500014],[-104.48681640624991,68.06318359374998],[-104.35073242187498,68.04121093750013],[-104.19355468749994,68.03120117187504],[-103.90156249999997,68.04106445312507],[-103.65722656249993,68.06909179687511],[-103.47412109374993,68.11503906250005],[-103.32324218749991,68.06381835937509],[-103.02177734374996,67.94023437499996],[-102.84155273437493,67.85273437500008],[-102.69199218749992,67.81157226562503],[-102.38911132812504,67.76220703125011],[-102.32036132812489,67.73564453125005],[-102.20976562499992,67.73271484374996],[-102.05722656249992,67.75332031250008],[-101.8836425781249,67.74531250000004],[-101.68886718749991,67.70864257812505],[-101.55498046874992,67.69316406250007],[-101.09638671874993,67.76235351562514],[-101.02641601562489,67.7656738281251],[-100.85561523437498,67.79897460937514],[-100.74560546874996,67.80908203125009],[-100.61611328125005,67.80825195312508],[-100.51962890624993,67.818408203125],[-100.45610351562496,67.83945312500003],[-100.21293945312489,67.83857421875004],[-99.77294921874994,67.81484375],[-99.47226562499989,67.78408203125014],[-99.29355468749989,67.74531250000004],[-99.146875,67.72363281250009],[-99.03217773437503,67.71884765624996],[-98.92045898437502,67.72578124999998],[-98.81171874999997,67.74443359375005],[-98.69726562499991,67.77973632812513],[-98.45278320312494,67.7979003906251],[-98.41210937499991,67.80717773437505],[-98.41713867187497,67.82646484375006],[-98.4678222656249,67.855810546875],[-98.60649414062489,67.91142578124996],[-98.70356445312495,67.96572265625001],[-98.72221679687496,68.0001953125001],[-98.72006835937495,68.04199218750009],[-98.68984374999992,68.06611328125004],[-98.63154296875004,68.0725585937501],[-98.53984374999993,68.04663085937497],[-98.41479492187501,67.98842773437502],[-98.06254882812492,67.76967773437505],[-97.97763671874995,67.73862304687492],[-97.93076171875,67.71079101562495],[-97.60742187500003,67.63105468750004],[-97.45493164062486,67.61699218750002],[-97.27426757812492,67.66625976562511],[-97.19443359375,67.69692382812514],[-97.15541992187505,67.72641601562492],[-97.15717773437494,67.75483398437504],[-97.13984374999998,67.79624023437495],[-97.15805664062485,67.82192382812502],[-97.20654296874989,67.85507812500003],[-97.33613281249993,67.90136718750006],[-97.5466308593749,67.96074218750007],[-97.73911132812495,67.97817382812505],[-97.91333007812491,67.95356445312501],[-98.11049804687492,67.90302734375004],[-98.19252929687494,67.92299804687502],[-98.43837890624994,68.06469726562511],[-98.50029296874993,68.11767578125006],[-98.50024414062503,68.13227539062501],[-98.38608398437495,68.11533203124995],[-98.38085937499994,68.13247070312505],[-98.44916992187493,68.20078124999995],[-98.49125976562495,68.22363281249997],[-98.63300781249997,68.33115234375003],[-98.65048828124989,68.36352539062506],[-98.56225585937493,68.37084960937511],[-98.52221679687497,68.3833984375],[-98.46855468749996,68.3821289062501],[-98.21855468750002,68.31743164062507],[-98.09052734375004,68.34633789062511],[-97.7942382812499,68.38759765625],[-97.91103515624997,68.44951171874999],[-97.93886718750005,68.51044921874995],[-97.9250976562499,68.52368164062499],[-97.82856445312495,68.53276367187507],[-97.63955078125,68.48198242187502],[-97.54804687499993,68.474951171875],[-97.48110351562505,68.49516601562505],[-97.41035156249993,68.49653320312498],[-97.33579101562495,68.479150390625],[-97.2659179687499,68.45292968749996],[-97.13598632812491,68.37797851562499],[-97.07177734374997,68.33286132812503],[-96.9995605468749,68.26494140625005],[-96.97670898437497,68.25541992187505],[-96.62817382812491,68.25029296875007],[-96.43066406249991,68.3105957031251],[-96.4349609375,68.29008789062502],[-96.48022460937489,68.24282226562497],[-96.72514648437496,68.0612304687501],[-96.72207031250005,68.03876953124997],[-96.59218749999995,68.04843749999998],[-96.5312988281249,68.06313476562514],[-96.49370117187486,68.08496093749997],[-96.46118164062491,68.13583984375003],[-96.43935546874991,68.15087890625009],[-96.07558593749995,68.23652343750013],[-95.9703124999999,68.24912109375],[-96.03603515625,68.15776367187505],[-96.17133789062493,67.83168945312505],[-96.19882812499993,67.71782226562496],[-96.22846679687494,67.67919921875009],[-96.37138671875002,67.55385742187514],[-96.3691406249999,67.50976562500003],[-96.21284179687495,67.40429687500003],[-96.18500976562498,67.37558593750003],[-96.16923828124996,67.28896484375],[-96.14145507812488,67.27182617187503],[-96.01259765624994,67.27089843750001],[-95.8791015624999,67.29848632812514],[-95.71992187499998,67.31679687500014],[-95.695166015625,67.29873046875002],[-95.78251953124996,67.19379882812513],[-95.77768554687495,67.18461914062505],[-95.62641601562503,67.21157226562502],[-95.55703124999994,67.21528320312507],[-95.52871093749994,67.20917968750005],[-95.41591796875005,67.15556640624999],[-95.40458984374996,67.115576171875],[-95.40698242187491,67.05610351562498],[-95.41889648437504,67.01323242187493],[-95.45698242187497,66.98945312500007],[-95.50224609374996,66.97988281250008],[-95.559375,66.97275390625003],[-95.61064453125002,66.97568359374992],[-95.76865234374988,66.96669921875004],[-95.86181640625001,66.97817382812508],[-95.95405273437498,67.010888671875],[-96.01953124999991,67.01875],[-96.09545898437503,66.99355468750002],[-96.21557617187497,66.99770507812497],[-96.35043945312492,67.07001953124995],[-96.40424804687495,67.063232421875],[-96.42255859374995,67.05175781249997],[-96.42026367187495,67.03618164062499],[-96.359521484375,66.98940429687505],[-95.88530273437502,66.74135742187495],[-95.8132812499999,66.69013671875001],[-95.79736328124994,66.61655273437493],[-95.7875488281249,66.616796875],[-95.74316406249991,66.69042968750009],[-95.77211914062505,66.72607421875006],[-96.01611328125001,66.87045898437498],[-96.04536132812495,66.92314453125007],[-96.03686523437489,66.9375],[-95.97236328124998,66.95224609374995],[-95.62504882812493,66.91625976562509],[-95.49038085937494,66.92412109375007],[-95.39965820312503,66.94946289062509],[-95.35410156249989,66.98071289062506],[-95.3210937499999,67.15249023437508],[-95.25874023437493,67.2625488281249],[-95.29560546874995,67.3610351562501],[-95.38955078124991,67.51782226562506],[-95.46337890624994,67.61020507812506],[-95.63369140624991,67.70385742187493],[-95.65048828124986,67.73745117187505],[-95.46069335937503,68.02138671875],[-95.42651367187489,68.04526367187506],[-95.38408203124996,68.05556640625002],[-95.23471679687489,68.05971679687497],[-95.12587890624994,68.08330078124999],[-94.955224609375,68.05029296875],[-94.86103515624998,68.04165039062502],[-94.74443359374993,68.07089843749995],[-94.4853027343749,68.19008789062508],[-94.38383789062502,68.22700195312513],[-94.25478515624994,68.29682617187495],[-94.09814453124991,68.39941406250009],[-93.92773437499991,68.47382812499995],[-93.65170898437489,68.54311523437505],[-93.48300781249989,68.59887695312503],[-93.44892578124998,68.61889648437503],[-93.60581054687485,68.6236816406251],[-93.64394531249991,68.63310546875007],[-93.676171875,68.68598632812501],[-93.65986328124994,68.78374023437505],[-93.66279296874993,68.83818359374993],[-93.68144531249993,68.88725585937497],[-93.71577148437497,68.93105468750002],[-93.76572265624995,68.96958007812506],[-93.8113281249999,68.99267578124997],[-93.85244140624994,69.00034179687495],[-93.88071289062492,68.99682617187511],[-93.89609374999995,68.98217773437497],[-93.93808593749989,68.8890625],[-93.99155273437495,68.8206054687501],[-94.06489257812495,68.78476562500005],[-94.21694335937494,68.7605468750001],[-94.4783203124999,68.74277343750003],[-94.58676757812489,68.77553710937514],[-94.600439453125,68.80322265625011],[-94.56254882812502,68.91166992187499],[-94.47563476562489,68.95815429687505],[-94.23662109374996,69.04975585937505],[-94.08364257812497,69.12309570312506],[-94.08115234374989,69.13583984375],[-94.22182617187505,69.13637695312511],[-94.25537109374997,69.15146484375],[-94.28496093749995,69.24160156250005],[-94.27675781250005,69.27524414062498],[-94.254736328125,69.31376953125],[-94.15634765624995,69.34174804687504],[-93.85439453125,69.3763671875],[-93.61948242187492,69.41699218750007],[-93.61264648437493,69.40283203125006],[-93.80097656249993,69.28090820312508],[-93.820458984375,69.25263671875001],[-93.7485351562499,69.22612304687509],[-93.56748046874989,69.296875],[-93.45058593750005,69.3551757812501],[-93.43095703124995,69.37504882812507],[-93.53706054687498,69.38232421874994],[-93.54287109374992,69.40644531250007],[-93.52241210937493,69.45068359375003],[-93.5322753906249,69.48090820312495],[-93.64980468750005,69.51904296875009],[-93.79438476562491,69.49785156250003],[-93.9150878906249,69.45766601562502],[-94.01528320312498,69.4467285156251],[-94.16318359375,69.44594726562514],[-94.2708007812499,69.45512695312505],[-94.33813476562494,69.47426757812502],[-94.41918945312503,69.51704101562504],[-94.51391601562497,69.58344726562507],[-94.63383789062495,69.64965820312506],[-94.67626953124991,69.65688476562511],[-94.71269531249995,69.6494140625],[-94.78925781249993,69.58544921875011],[-94.82250976562494,69.577783203125],[-95.29208984374995,69.66738281250011],[-95.49125976562492,69.71762695312506],[-95.58759765624995,69.755712890625],[-95.70742187499994,69.77822265625014],[-95.85068359374989,69.78510742187511],[-95.96494140624989,69.80278320312499],[-96.05014648437493,69.83115234375009],[-96.11909179687503,69.871875],[-96.17177734374994,69.92495117187502],[-96.26938476562492,69.99179687499995],[-96.49238281249998,70.12490234375008],[-96.5513671875,70.21030273437506],[-96.55957031249989,70.24301757812496],[-96.54560546874998,70.32724609375009],[-96.33657226562494,70.47016601562507],[-96.29770507812492,70.51137695312511],[-96.22641601562489,70.54169921875007],[-96.12275390624998,70.56123046874995],[-96.04814453124987,70.56708984375008],[-95.87861328124998,70.54897460937514],[-95.98017578124998,70.59321289062508],[-95.98818359374994,70.61684570312511],[-95.88632812499986,70.69428710937507],[-95.90639648437505,70.69775390625006],[-96.18642578124998,70.63828125000003],[-96.25800781249993,70.64228515625013],[-96.35888671874994,70.6786621093751],[-96.54892578124995,70.80874023437511],[-96.55107421874992,70.88974609375009],[-96.49130859374992,71.00234375000014],[-96.47041015624993,71.0697265625],[-96.52475585937492,71.12705078124995],[-96.50444335937493,71.14316406250002],[-96.44545898437491,71.1592285156251],[-96.42075195312493,71.17646484375005],[-96.44658203124996,71.23989257812502],[-96.4056640625,71.27363281249998],[-96.27133789062489,71.339111328125],[-96.13964843749997,71.39638671875011],[-96.06201171874997,71.41386718749992],[-95.99443359374996,71.41064453125],[-95.92407226562491,71.39306640624997],[-95.85087890624993,71.36108398437503],[-95.72539062499995,71.32817382812507],[-95.63256835937494,71.31879882812513],[-95.5642578124999,71.33676757812503],[-95.4475097656249,71.46005859374995],[-95.40625,71.49165039062498],[-95.4454101562499,71.50537109375011],[-95.67421875,71.50405273437502],[-95.77338867187495,71.51425781249998],[-95.83037109375002,71.52607421875007],[-95.87231445312494,71.57314453125004],[-95.83774414062492,71.59824218750003],[-95.61591796874991,71.685400390625],[-95.51166992187491,71.77680664062498],[-95.20122070312493,71.90371093750008],[-94.88696289062503,71.96337890624997],[-94.73486328124994,71.98295898437507],[-94.61113281249996,71.98686523437496],[-94.55708007812495,71.97895507812513],[-94.49106445312492,71.91552734375],[-94.4788085937499,71.84858398437503],[-94.30834960937491,71.76489257812506],[-94.17124023437486,71.75844726562497],[-94.08598632812489,71.77114257812508],[-93.81020507812494,71.76625976562514],[-93.74628906249998,71.742822265625],[-93.75087890624994,71.71665039062498],[-93.781640625,71.67431640625006],[-93.762841796875,71.63803710937493],[-93.5758789062499,71.56870117187503],[-93.40747070312497,71.52070312500004],[-93.25634765624991,71.46083984375011],[-93.0312988281249,71.335693359375],[-92.982568359375,71.30034179687507],[-92.94868164062491,71.26210937500011],[-92.89018554687502,71.12236328125007],[-92.88271484375,71.06933593750009],[-92.90419921874994,70.91606445312496],[-92.92197265625,70.8871093750001],[-92.98144531249994,70.8522460937501],[-92.96088867187493,70.83813476562506],[-92.78300781249993,70.7981445312501],[-92.64169921874992,70.7187988281251],[-92.56748046874989,70.69321289062503],[-92.38847656249993,70.65043945312502],[-92.35581054687495,70.63427734375011],[-92.31538085937498,70.60751953124998],[-92.2144531249999,70.49291992187509],[-92.0491210937499,70.38964843749999],[-92.03720703124985,70.3673828125001],[-92.07260742187488,70.31875000000014],[-92.0473632812499,70.3033203125],[-91.98354492187505,70.28554687500011],[-91.92622070312491,70.29477539062502],[-91.8755371093749,70.33115234374998],[-91.82041015624995,70.341650390625],[-91.76083984374989,70.32626953125006],[-91.715625,70.29921875000005],[-91.65405273437497,70.23295898437505],[-91.56406249999995,70.1782714843751],[-91.57163085937488,70.16157226562507],[-91.61611328124997,70.14785156250014],[-91.85859374999998,70.13266601562506],[-91.99497070312489,70.14321289062508],[-92.12104492187497,70.169921875],[-92.208642578125,70.19750976562511],[-92.29033203125002,70.23984375000003],[-92.32050781250004,70.23535156249999],[-92.36328124999997,70.20083007812508],[-92.4546874999999,70.15043945312492],[-92.51186523437492,70.10385742187503],[-92.44575195312498,70.08315429687508],[-92.12700195312496,70.08452148437502],[-92.05771484374989,70.07143554687502],[-91.97670898437498,70.03867187500009],[-92.06904296874995,69.98398437499995],[-92.28476562499995,69.89213867187507],[-92.75092773437498,69.71391601562502],[-92.88779296874989,69.66821289062511],[-92.85454101562493,69.65488281250006],[-92.80263671874994,69.65146484375006],[-92.64282226562497,69.65927734375005],[-92.49345703125002,69.68320312499998],[-92.31166992187494,69.67290039062499],[-92.23076171874996,69.6533691406251],[-92.25830078124997,69.63432617187496],[-92.20908203124989,69.60332031250005],[-91.91196289062495,69.53125],[-91.72412109374993,69.54560546875001],[-91.53237304687497,69.6150390625001],[-91.38422851562498,69.64946289062502],[-91.20180664062494,69.64477539062494],[-91.15087890624997,69.637158203125],[-91.17031249999994,69.62031250000013],[-91.30502929687492,69.581298828125],[-91.42685546874986,69.53793945312502],[-91.43994140624997,69.52568359375002],[-91.28813476562496,69.54321289062506],[-90.95019531250001,69.51547851562509],[-90.7857421875,69.5085937500001],[-90.66665039062498,69.51552734375008],[-90.55493164062497,69.50449218749996],[-90.45053710937492,69.47543945312509],[-90.4155761718749,69.45698242187507],[-90.51328125,69.44511718749996],[-90.60556640624989,69.4453125],[-90.68398437499997,69.42773437499997],[-90.74853515624997,69.39248046875008],[-90.79458007812492,69.34672851562497],[-90.82211914062493,69.29047851562507],[-90.89228515625004,69.26728515624995],[-91.00498046874989,69.277099609375],[-91.04921874999994,69.29301757812505],[-91.02485351562495,69.31523437499996],[-91.05776367187498,69.31840820312507],[-91.14785156249995,69.30258789062506],[-91.21796875000003,69.30209960937493],[-91.23720703125005,69.28554687500012],[-90.74477539062491,69.10590820312513],[-90.5873046875,68.946875],[-90.47900390624993,68.88115234374999],[-90.468359375,68.86376953125],[-90.53896484375,68.81958007812506],[-90.54252929687502,68.78598632812498],[-90.51015625,68.68886718750008],[-90.52524414062495,68.61127929687507],[-90.57363281250005,68.47470703124998],[-90.52832031249997,68.4322265625],[-90.42304687499993,68.39472656250001],[-90.36005859374995,68.34672851562502],[-90.31723632812495,68.33032226562503],[-90.28525390625,68.29165039062495],[-90.24775390624991,68.267431640625],[-90.20478515625004,68.25747070312511],[-90.17441406249989,68.27021484375003],[-90.15683593749995,68.30551757812495],[-90.11640624999998,68.33857421875013],[-90.0053222656249,68.39804687499998],[-89.89770507812491,68.49077148437505],[-89.87949218749995,68.5215332031251],[-89.89658203124995,68.59438476562502],[-89.88422851562493,68.62558593749998],[-89.78310546874994,68.73593750000006],[-89.75083007812492,68.81245117187504],[-89.72016601562498,68.93159179687495],[-89.6666015625,69.01459960937501],[-89.55200195312491,69.08491210937513],[-89.35190429687492,69.2270019531251],[-89.27954101562491,69.25546875000003],[-89.19848632812503,69.26948242187507],[-89.0567382812499,69.26611328125009],[-88.95351562499994,69.22041015625001],[-88.81455078124986,69.13588867187502],[-88.6377441406249,69.05883789062494],[-88.31552734374992,68.954443359375],[-88.22353515624998,68.91503906249997],[-88.041357421875,68.81171875000007],[-87.96435546874994,68.70927734374996],[-87.91152343749994,68.564697265625],[-87.86596679687497,68.47763671875003],[-87.827734375,68.44809570312506],[-87.81030273437491,68.40415039062498],[-87.81357421874986,68.34570312499997],[-87.82792968749996,68.29995117187508],[-87.85327148437497,68.26689453125006],[-87.89267578125,68.24814453125],[-87.99096679687494,68.242041015625],[-88.11113281250002,68.25117187500007],[-88.14580078124996,68.26601562500008],[-88.20908203124989,68.33486328125008],[-88.23525390625,68.33906250000004],[-88.34697265624993,68.28828125000001],[-88.36069335937486,68.25986328125006],[-88.31962890624993,68.16577148437509],[-88.32509765624998,67.98876953125009],[-88.31381835937499,67.95034179687508],[-88.19589843749986,67.76582031249995],[-87.99716796874989,67.62568359375001],[-87.49912109374995,67.355322265625],[-87.47080078124995,67.32460937500014],[-87.41791992187493,67.21416015625002],[-87.39194335937495,67.1910644531251],[-87.359375,67.17724609374997],[-87.32026367187493,67.17285156249994],[-87.26625976562492,67.18383789062506],[-87.08320312499993,67.2677734375001],[-86.92392578124992,67.35625],[-86.8127929687499,67.40239257812499],[-86.74985351562489,67.40610351562503],[-86.68203124999991,67.42231445312498],[-86.609375,67.45083007812511],[-86.5607910156249,67.48212890625007],[-86.53642578125002,67.51616210937507],[-86.50351562499989,67.64946289062507],[-86.47553710937503,67.71313476562506],[-86.39804687499989,67.80009765625],[-86.36967773437496,67.82480468750009],[-85.98447265625,68.04536132812507],[-85.95258789062488,68.0724609375001],[-85.78886718749996,68.32802734375011],[-85.73110351562498,68.44501953125013],[-85.722802734375,68.51547851562509],[-85.74487304687494,68.57827148437511],[-85.73383789062493,68.63012695312499],[-85.6897949218749,68.67094726562497],[-85.64316406249992,68.69970703124996],[-85.56245117187493,68.72880859375005],[-85.51777343749995,68.76982421875005],[-85.49106445312495,68.773974609375],[-85.42504882812491,68.77426757812506],[-85.33808593750004,68.74628906250004],[-85.2750976562499,68.7413574218751],[-84.86757812499992,68.77333984375005],[-84.8674804687499,68.79038085937498],[-85.10664062499995,68.84404296875006],[-85.10434570312495,68.87094726562503],[-85.08339843749994,68.90791015625013],[-85.00830078124991,68.94921875],[-84.91606445312496,68.962255859375],[-84.8953124999999,68.98852539062503],[-84.892724609375,69.02099609375006],[-84.86220703125,69.07397460937503],[-84.89003906249997,69.09277343750011],[-85.11352539062503,69.16586914062509],[-85.24262695312504,69.162744140625],[-85.27548828124989,69.17231445312498],[-85.38676757812493,69.23188476562504],[-85.42753906249996,69.31840820312507],[-85.43193359374987,69.35385742187499],[-85.4164062499999,69.41088867187509],[-85.40224609375005,69.42675781250011],[-85.40917968749994,69.45249023437503],[-85.43720703124997,69.48823242187504],[-85.4395019531249,69.51992187500011],[-85.41596679687493,69.54775390625008],[-85.43012695312495,69.58066406250003],[-85.48203124999986,69.61875],[-85.50244140624994,69.65151367187508],[-85.44790039062494,69.74814453125006],[-85.44609375000002,69.77778320312504],[-85.4974609375,69.8190429687501],[-85.53481445312497,69.83505859375],[-85.50737304687487,69.84526367187492],[-85.41513671874992,69.84951171875011],[-85.30498046874996,69.83613281250004],[-85.17680664062496,69.80512695312513],[-85.01982421874996,69.80478515625003],[-84.83398437499991,69.83505859375],[-84.64511718749989,69.84970703124995],[-84.31879882812504,69.84370117187498],[-84.24165039062504,69.83500976562497],[-83.91718749999993,69.74536132812503],[-83.66533203124996,69.69970703124994],[-83.55170898437498,69.70395507812492],[-82.99135742187505,69.68588867187498],[-82.74560546874991,69.69511718750007],[-82.61835937499993,69.69106445312514],[-82.374169921875,69.64179687500007],[-82.39023437499989,69.60087890625006],[-82.49570312499989,69.53222656250011],[-82.63330078125003,69.51811523437507],[-82.75483398437493,69.49438476562504],[-82.64204101562495,69.4583984375],[-82.30986328124996,69.41000976562508],[-82.23183593749994,69.33256835937493],[-82.20815429687491,69.297021484375],[-82.24677734374998,69.26499023437503],[-82.22753906249997,69.24887695312495],[-82.150537109375,69.24887695312495],[-81.95180664062491,69.27607421874998],[-81.73217773437503,69.25810546875005],[-81.41230468749995,69.19814453125008],[-81.37783203125005,69.18564453125003],[-81.32158203124996,69.13891601562511],[-81.3286621093749,69.11992187499996],[-81.61142578124995,69.00302734374995],[-81.75834960937493,68.95673828125013],[-81.95166015624997,68.90908203125],[-81.95791015624991,68.88364257812496],[-81.68691406250005,68.87895507812507],[-81.47602539062498,68.865576171875],[-81.38090820312496,68.85004882812504],[-81.33129882812489,68.827978515625],[-81.26352539062495,68.78061523437493],[-81.2524902343749,68.74316406250011],[-81.25913085937495,68.6924316406251],[-81.28154296874987,68.65722656250003],[-81.52685546874994,68.55595703124999],[-81.63950195312489,68.52436523437513],[-81.83139648437489,68.48686523437495],[-81.91484374999993,68.45878906250009],[-82.00649414062505,68.462646484375],[-82.10634765625005,68.49853515625001],[-82.21015624999998,68.50625],[-82.39721679687496,68.47758789062502],[-82.49873046874995,68.47861328125006],[-82.54863281249993,68.46860351562496],[-82.55268554687504,68.44648437500007],[-82.46416015624993,68.382421875],[-82.41298828125,68.357177734375],[-82.3928710937499,68.33833007812507],[-82.43066406249994,68.30659179687501],[-82.42270507812492,68.2965820312501],[-82.39252929687493,68.28525390625009],[-82.22241210937489,68.14526367187499],[-82.18657226562496,68.13442382812511],[-82.15131835937497,68.1396972656251],[-82.07763671874997,68.17968750000009],[-82.03388671875004,68.19594726562502],[-82.0125,68.19389648437496],[-82.01337890624995,68.17338867187505],[-82.09189453124993,68.05146484375007],[-82.10214843749992,68.018896484375],[-82.10048828124994,67.98984374999995],[-82.06254882812502,67.92817382812501],[-81.97646484374995,67.86201171875001],[-81.8693359374999,67.80249023437497],[-81.7085937499999,67.72236328124997],[-81.4927734374999,67.63691406249998],[-81.41230468749995,67.59536132812505],[-81.2943359375,67.497412109375],[-81.27011718749995,67.45991210937498],[-81.30107421874996,67.35698242187499],[-81.38720703124991,67.18857421874995],[-81.44272460937495,67.09287109375],[-81.46757812499996,67.06987304687509],[-81.63007812499993,67.00200195312496],[-81.72236328124998,66.98608398437509],[-81.87446289062498,66.98793945312511],[-81.92553710937489,66.97470703125009],[-82.00507812499991,66.92041015625003],[-82.11318359374994,66.82509765625],[-82.19833984374986,66.76464843750011],[-82.26054687499993,66.73911132812505],[-82.37475585937503,66.70942382812503],[-82.55366210937495,66.62138671875005],[-82.64150390624991,66.5875],[-82.94887695312494,66.55083007812507],[-83.19877929687493,66.43149414062509],[-83.2983886718749,66.39213867187507],[-83.40644531249998,66.37124023437508],[-83.52309570312492,66.36875],[-83.59028320312504,66.38784179687508],[-83.62836914062497,66.460693359375],[-83.65107421874998,66.48461914062509],[-83.73920898437488,66.534375],[-83.92021484375,66.67905273437506],[-83.99804687499997,66.72851562500003],[-84.05,66.73950195312494],[-84.15444335937492,66.73168945312497],[-84.20800781250003,66.73632812500003],[-84.32436523437494,66.78178710937505],[-84.36625976562493,66.81113281249998],[-84.36108398437494,66.82255859374997],[-84.27255859374995,66.839208984375],[-84.3103515624999,66.86274414062501],[-84.46606445312494,66.92744140625004],[-84.53066406249994,66.96132812500002],[-84.53847656249992,66.97280273437505],[-84.69257812499998,67.01660156250009],[-84.84575195312502,67.02871093750008],[-85.04003906249997,66.95605468750003],[-85.11372070312498,66.90693359375013],[-85.11127929687493,66.89091796875007],[-85.01826171874998,66.87207031249997],[-84.97797851562504,66.88125],[-84.89902343749995,66.92656250000005],[-84.85737304687498,66.94067382812509],[-84.73774414062504,66.93359375000004],[-84.63857421875,66.90234375000009],[-84.60253906250003,66.87514648437505],[-84.58950195312494,66.85664062500001],[-84.31894531249989,66.71181640625],[-84.223046875,66.68247070312506],[-84.18310546874991,66.64785156250011],[-84.15273437500005,66.59023437500011],[-84.09423828125003,66.52622070312503],[-83.964208984375,66.420556640625],[-83.82583007812497,66.28999023437504],[-83.79755859374998,66.2384765625],[-83.86904296875,66.2135742187501],[-83.90507812499996,66.21176757812509],[-84.0116699218749,66.23120117187496],[-84.29306640624995,66.29179687500005],[-84.3242675781249,66.290673828125],[-84.39843749999991,66.25874023437507],[-84.459375,66.18623046875004],[-84.47841796875005,66.17929687500003],[-84.628076171875,66.20771484374998],[-84.90839843749998,66.27133789062498],[-85.09619140624997,66.32534179687514],[-85.19150390624992,66.3696777343751],[-85.30683593749997,66.44033203125011],[-85.44223632812495,66.53735351562497],[-85.603857421875,66.56826171875005],[-85.79174804687491,66.53295898437497],[-86.06323242187497,66.52036132812506],[-86.63320312499991,66.53134765625],[-86.708154296875,66.52304687500009],[-86.73710937499996,66.51088867187511],[-86.68862304687494,66.45747070312504],[-86.70014648437498,66.44277343750008],[-86.73837890624995,66.432861328125],[-86.74697265624991,66.41708984375],[-86.68510742187502,66.36040039062499],[-86.5847656249999,66.32192382812514],[-86.30102539062491,66.26992187500002],[-86.11308593749993,66.22529296875001],[-86.00083007812486,66.18681640624999],[-85.96425781249995,66.15444335937514],[-85.95874023437491,66.11904296875002],[-86.0122558593749,66.04848632812504],[-86.04287109375,66.02255859375009],[-86.7019531249999,65.67055664062512],[-86.95317382812489,65.5282714843751],[-87.08110351562495,65.44082031250005],[-87.1937988281249,65.383056640625],[-87.29145507812488,65.35483398437495],[-87.45288085937501,65.33896484375009],[-87.678125,65.33535156250004],[-87.96997070312503,65.34892578124999],[-88.12099609374997,65.39458007812505],[-88.39487304687492,65.51621093749995],[-88.58671874999989,65.58764648437511],[-88.67246093749989,65.61157226562503],[-88.74394531249996,65.67875976562505],[-88.80849609374997,65.691650390625],[-88.94614257812495,65.70302734375],[-89.0877441406249,65.73896484375004],[-89.42036132812493,65.86079101562498],[-89.59267578124994,65.90932617187511],[-89.7494140625,65.93603515625006],[-89.89047851562495,65.94082031250014],[-89.94399414062494,65.93359375000009],[-89.84775390624995,65.87226562500001],[-89.88969726562487,65.86855468749997],[-90.00380859374997,65.88256835937499],[-90.11660156249994,65.88242187499995],[-90.31625976562492,65.92636718750003],[-90.51328125,65.92050781250009],[-90.65546874999993,65.92934570312511],[-90.8257324218749,65.95385742187511],[-91.00952148437503,65.96572265625005],[-91.30546875000002,65.96455078124998],[-91.41152343749994,65.959375],[-91.42724609374994,65.94790039062495],[-91.28515624999997,65.89443359375011],[-91.04111328124989,65.82983398437509],[-91.07363281249992,65.88554687500007],[-91.06494140624994,65.89990234374997],[-90.98344726562496,65.91923828124999],[-90.59682617187497,65.8848144531251],[-90.15864257812495,65.81269531249995],[-90.04755859374998,65.80561523437513],[-89.92407226562497,65.78027343750011],[-89.78798828124994,65.73671875000011],[-89.60039062500002,65.6477539062501],[-89.24174804687496,65.44638671874995],[-89.12656249999995,65.39560546875009],[-88.97402343749994,65.34829101562502],[-88.1978027343749,65.27988281249995],[-87.92954101562486,65.28032226562503],[-87.39194335937495,65.2605468750001],[-87.10800781249992,65.2248046875001],[-87.02753906249994,65.19809570312498],[-87.00268554687497,65.10859375000004],[-87.02851562499998,65.06362304687514],[-87.18291015624989,64.92680664062495],[-87.28051757812491,64.82617187500006],[-87.88500976562493,64.40043945312502],[-87.96357421874998,64.30249023437497],[-87.99755859374997,64.2439453125001],[-88.10561523437497,64.18330078125001],[-88.37895507812496,64.08925781250005],[-88.65302734374991,64.009375],[-88.81772460937488,63.99223632812499],[-88.96440429687493,64.01123046874994],[-89.05961914062487,64.03442382812506],[-89.20063476562493,64.11376953125006],[-89.20942382812495,64.10541992187511],[-89.10766601562491,63.98110351562502],[-89.13154296874998,63.968505859374936],[-89.21455078124993,63.98413085937511],[-89.40351562499995,64.03999023437513],[-89.46474609375,64.0296875],[-89.5009277343749,64.01450195312509],[-89.55131835937496,64.01479492187514],[-89.61582031249995,64.030615234375],[-89.73271484374996,64.07695312500002],[-89.763818359375,64.09951171875],[-89.79208984374989,64.16826171874996],[-89.8113281249999,64.18056640625],[-90.04165039062494,64.14086914062509],[-90.08002929687491,64.12773437500007],[-89.98559570312497,64.10019531249995],[-89.95356445312493,64.08061523437505],[-89.86059570312491,63.9788085937501],[-89.85571289062497,63.9569824218751],[-89.921875,63.943554687500004],[-90.14189453125,63.981982421875045],[-90.16816406250004,63.978759765625085],[-90.05961914062496,63.87749023437507],[-90.01796875,63.82934570312502],[-90.01342773437497,63.804296875000055],[-90.15473632812498,63.689648437499976],[-90.24531250000004,63.64189453125001],[-90.36884765624998,63.624414062500016],[-90.44624023437493,63.6361816406251],[-90.53349609374996,63.66542968750002],[-90.59638671874998,63.66127929687507],[-90.63500976562503,63.62377929687505],[-90.7068359374999,63.596923828125114],[-90.81191406249991,63.580908203125034],[-90.94565429687489,63.58784179687503],[-91.10805664062494,63.6178222656251],[-91.53881835937493,63.72558593750003],[-91.674658203125,63.74223632812504],[-91.92602539062497,63.75708007812505],[-91.95600585937494,63.77231445312495],[-91.95380859374993,63.78681640625007],[-91.91943359374994,63.80058593750001],[-91.92890624999993,63.81245117187512],[-91.98222656249996,63.822412109375016],[-92.03759765624994,63.813037109375074],[-92.094873046875,63.784423828125114],[-92.19521484375,63.77597656249998],[-92.33842773437496,63.787646484375045],[-92.5500976562499,63.82954101562506],[-92.97021484374997,63.93764648437505],[-93.42968749999997,64.02880859374997],[-93.69633789062493,64.14716796875013],[-93.5967285156249,64.04057617187507],[-93.60488281249997,64.0044921875],[-93.65581054687493,63.9728027343751],[-93.66416015624993,63.941406250000114],[-93.55981445312491,63.865283203125074],[-93.41557617187493,63.837988281250006],[-93.27021484374998,63.84086914062507],[-93.26621093749989,63.8533203125001],[-93.32685546874998,63.87226562500007],[-93.38027343749994,63.900048828125044],[-93.40585937499992,63.941210937500074],[-93.3785156249999,63.94848632812497],[-93.25043945312504,63.926904296874994],[-93.16591796875005,63.90175781250002],[-92.52924804687493,63.76123046875],[-92.33920898437495,63.73491210937496],[-92.1964843749999,63.70781249999995],[-92.15688476562491,63.691699218750045],[-92.20502929687495,63.65678710937504],[-92.46103515624989,63.569433593750006],[-92.46508789062491,63.5550781250001],[-92.28955078124994,63.562988281250114],[-92.0766113281249,63.639990234375006],[-91.95683593749993,63.67563476562498],[-91.84184570312495,63.69755859374999],[-91.68603515624991,63.6597167968751],[-91.4893066406249,63.56220703125012],[-91.33007812499997,63.50683593750005],[-91.10307617187489,63.47587890624995],[-90.97006835937489,63.442773437500136],[-90.74658203124994,63.35156250000002],[-90.71127929687492,63.30405273437494],[-90.69072265624993,63.11054687500012],[-90.69858398437492,63.06386718750005],[-90.72763671874989,63.01748046874999],[-90.7778808593749,62.97163085937507],[-90.87119140625,62.945947265624994],[-91.00771484374994,62.940429687500114],[-91.11489257812498,62.921582031250004],[-91.349462890625,62.81889648437504],[-91.44897460937503,62.80405273437503],[-91.86962890624994,62.83471679687508],[-92.0342285156249,62.863427734375044],[-92.11005859374998,62.86171875000008],[-92.15209960937491,62.83906250000007],[-92.1961425781249,62.828808593750125],[-92.3612792968749,62.81938476562496],[-92.38813476562495,62.80087890624992],[-92.37773437499987,62.77241210937498],[-92.34526367187502,62.733837890625125],[-92.30517578125003,62.71166992187506],[-92.24316406249991,62.68364257812501],[-92.14912109374993,62.66528320312502],[-91.9558593749999,62.64477539062511],[-91.93583984374993,62.592382812500084],[-91.94443359374988,62.57548828125002],[-92.00786132812493,62.54052734374999],[-92.08115234374995,62.544091796875016],[-92.20722656249995,62.58535156250007],[-92.26953124999993,62.586962890625045],[-92.32407226562485,62.56459960937511],[-92.39999999999989,62.557226562500034],[-92.49736328124993,62.56484375],[-92.55141601562491,62.546728515625034],[-92.56220703124997,62.502880859374976],[-92.5949707031249,62.47006835937503],[-92.70742187499998,62.418212890624936],[-92.76796875,62.37998046874998],[-92.76596679687492,62.349951171875084],[-92.70146484374992,62.328222656250084],[-92.62744140624994,62.27905273437502],[-92.54404296874992,62.202294921875016],[-92.52797851562494,62.16840820312505],[-92.57919921874989,62.177343750000084],[-92.648095703125,62.20776367187506],[-92.73476562499995,62.259716796874976],[-92.86582031249992,62.306201171875045],[-93.15444335937494,62.366845703125136],[-93.20537109374993,62.36494140625012],[-93.17924804687502,62.349560546875004],[-92.98779296874991,62.285937500000024],[-92.914453125,62.244970703125006],[-92.90551757812503,62.21513671874997],[-93.06586914062493,62.14975585937497],[-93.07026367187493,62.127832031250136],[-93.02773437499997,62.108642578125114],[-93.01625976562494,62.09267578125007],[-93.07338867187494,62.060546875000085],[-93.16748046874991,62.03364257812512],[-93.34975585937492,62.02978515625005],[-93.36635742187494,62.014550781250136],[-93.296875,61.98159179687499],[-93.27343749999994,61.96108398437508],[-93.3330566406249,61.932910156250024],[-93.37202148437495,61.928955078125114],[-93.58178710937494,61.9420410156251],[-93.52670898437492,61.87163085937498],[-93.49423828124989,61.846923828125085],[-93.4299316406249,61.81210937499991],[-93.31440429687493,61.77978515625008],[-93.31201171874997,61.76728515625004],[-93.35234375,61.73955078125007],[-93.42060546874998,61.705810546875114],[-93.70966796874998,61.60253906250006],[-93.91274414062497,61.481445312500064],[-93.94086914062491,61.44365234375002],[-93.88925781249988,61.36406249999995],[-93.88881835937497,61.34404296874996],[-93.94199218749989,61.30800781250008],[-94.06074218749991,61.31782226562512],[-94.08344726562493,61.30366210937509],[-94.05522460937495,61.26616210937507],[-94.04995117187494,61.211279296875084],[-94.06777343749992,61.1388671875001],[-94.15405273437491,61.025439453125074],[-94.30869140624989,60.87099609375005],[-94.42719726562498,60.73071289062506],[-94.509375,60.60454101562493],[-94.56889648437487,60.54199218749999],[-94.67875976562487,60.5376953125],[-94.76171874999991,60.49824218750012],[-94.70527343749995,60.4775390625],[-94.67065429687491,60.45332031250003],[-94.64677734374993,60.41640624999999],[-94.67041015624997,60.3010742187501],[-94.7416015625,60.1073730468751],[-94.78579101562494,59.95332031249995],[-94.77666015624992,59.478125],[-94.78828124999997,59.26787109374993],[-94.81953124999995,59.15131835937501],[-94.870263671875,59.08798828125006],[-94.95732421874995,59.06884765625008],[-94.84658203124997,59.05034179687504],[-94.77617187500002,59.02060546875],[-94.74374999999989,58.97543945312506],[-94.71337890624991,58.903320312500114],[-94.67338867187493,58.87011718750008],[-94.62373046875003,58.875732421875],[-94.57919921874995,58.8684570312501],[-94.53969726562497,58.84838867187512],[-94.41923828124996,58.745507812500115],[-94.28706054687493,58.71601562500012],[-94.2808105468749,58.65893554687506],[-94.33261718749989,58.339111328125085],[-94.33222656249998,58.29736328125012],[-94.27216796874991,58.37802734375003],[-94.20893554687493,58.626367187499994],[-94.12319335937494,58.73671875000008],[-94.05576171874989,58.76000976562502],[-93.78002929687494,58.77255859374993],[-93.48618164062492,58.74448242187506],[-93.37504882812492,58.741015625000074],[-93.278125,58.75639648437501],[-93.1787597656249,58.72563476562495],[-93.15458984374996,58.69458007812503],[-93.12651367187502,58.564404296874976],[-93.10019531249989,58.48984375000006],[-92.92514648437495,58.224511718750016],[-92.84174804687493,58.0758789062501],[-92.73984374999995,57.84404296874997],[-92.70166015624996,57.777783203125125],[-92.48964843749994,57.468603515625034],[-92.44941406249993,57.38486328125001],[-92.43281249999993,57.3203125],[-92.439794921875,57.27504882812502],[-92.47836914062495,57.20527343750001],[-92.54848632812494,57.11093749999998],[-92.61411132812489,57.03901367187507],[-92.67524414062493,56.98955078124995],[-92.73798828124991,56.95263671875006],[-92.80239257812495,56.92832031250009],[-92.7981445312499,56.92197265625003],[-92.72529296874998,56.9335449218751],[-92.65097656249995,56.95830078124998],[-92.51030273437489,57.02231445312506],[-92.45629882812491,57.03671874999998],[-92.30336914062491,57.04584960937504],[-92.29829101562503,57.02275390624996],[-92.3721191406249,56.975146484375045],[-92.35571289062491,56.970605468749994],[-92.24902343749994,57.00898437500001],[-92.01801757812494,57.06376953124996],[-91.11127929687497,57.24121093750006],[-90.89746093750003,57.25693359375006],[-90.5921874999999,57.224462890625034],[-90.34482421874988,57.14907226562511],[-90.07519531249993,57.05190429687505],[-89.7908203124999,56.98134765625005],[-89.34233398437502,56.915429687500136],[-89.21157226562494,56.883837890625074],[-88.94848632812489,56.85131835937503],[-88.8264648437499,56.814257812499925],[-88.67988281249998,56.72504882812507],[-88.44707031249987,56.60869140624999],[-88.27133789062486,56.535693359375045],[-88.07509765624997,56.467285156249936],[-87.878125,56.3416015625001],[-87.560888671875,56.05634765625007],[-87.48242187499991,56.021289062500045],[-87.28686523437494,55.97465820312496],[-86.91938476562495,55.91455078124997],[-86.37695312500003,55.77324218749995],[-86.13867187499997,55.717871093750034],[-85.98447265625,55.695898437500006],[-85.8305175781249,55.65693359375006],[-85.67666015625,55.60107421875006],[-85.55932617187491,55.54018554687508],[-85.47846679687503,55.474267578124966],[-85.40727539062502,55.43115234375008],[-85.28271484374993,55.383300781250085],[-85.21801757812491,55.348974609375034],[-85.21201171874992,55.297460937500006],[-85.36201171874993,55.095458984375085],[-85.3652832031249,55.079296874999976],[-85.21357421874998,55.22436523437506],[-85.12885742187495,55.266210937500034],[-85.06093749999997,55.28564453125008],[-84.91992187500003,55.28334960937499],[-84.70576171874993,55.25922851562504],[-84.51796874999994,55.25888671874998],[-84.35649414062489,55.28251953124999],[-84.21894531250004,55.29311523437502],[-84.10537109375,55.290820312500074],[-84.0229980468749,55.2978027343751],[-83.97177734374995,55.31416015625004],[-83.91059570312491,55.314648437499955],[-83.66767578124998,55.26450195312506],[-83.56948242187497,55.261816406250034],[-83.21435546874991,55.214599609375],[-82.9862792968749,55.23139648437507],[-82.94702148437491,55.22221679687495],[-82.86777343749992,55.16069335937504],[-82.80068359374994,55.15590820312513],[-82.6875,55.165527343749964],[-82.57744140625002,55.1487304687501],[-82.39326171874998,55.067822265625125],[-82.30825195312497,54.99814453124998],[-82.22661132812495,54.855908203125125],[-82.219384765625,54.8134765625],[-82.37060546874997,54.48349609375009],[-82.41806640624986,54.355810546875034],[-82.42416992187486,54.24458007812509],[-82.39414062499989,54.18046875000002],[-82.26357421874994,54.07299804687497],[-82.239892578125,54.04482421875008],[-82.16264648437486,53.88569335937498],[-82.14145507812492,53.81762695312497],[-82.14999999999989,53.73955078125007],[-82.190625,53.61093749999998],[-82.18037109375004,53.512841796875044],[-82.1461914062499,53.36459960937506],[-82.15917968749997,53.26416015625003],[-82.21923828124997,53.21147460937496],[-82.25991210937498,53.15981445312508],[-82.29160156249995,53.06611328125001],[-82.29155273437496,53.03071289062507],[-82.26044921874993,52.9611328125001],[-82.20268554687496,52.921679687500074],[-82.10795898437493,52.8773925781251],[-82.02001953124997,52.811621093750034],[-81.85927734375,52.651416015625074],[-81.74233398437497,52.563623046875136],[-81.5994140624999,52.432617187500085],[-81.57167968749994,52.367285156250084],[-81.61152343749995,52.324072265625006],[-81.66123046874986,52.29389648437507],[-81.77636718749996,52.25361328125004],[-81.82788085937489,52.224218750000084],[-81.81455078124995,52.21718750000008],[-81.64799804687493,52.239062500000074],[-81.54951171874995,52.23676757812498],[-81.46621093749994,52.204492187500136],[-81.39809570312498,52.14223632812508],[-81.28505859374997,52.08920898437492],[-81.12719726562497,52.04541015625005],[-80.96850585937497,51.97221679687507],[-80.70551757812504,51.79833984375],[-80.65795898437503,51.75834960937501],[-80.588037109375,51.667236328125114],[-80.49584960937493,51.525097656250125],[-80.44760742187488,51.432226562500034],[-80.4433105468749,51.38857421875002],[-80.49550781249997,51.344677734375125],[-80.67270507812492,51.264746093750006],[-80.85122070312497,51.125],[-80.79497070312496,51.131835937500114],[-80.67724609374997,51.19086914062507],[-80.47832031249993,51.30732421874998],[-80.36796875,51.32988281249996],[-80.26567382812496,51.31635742187504],[-80.10356445312487,51.282861328125136],[-79.96040039062493,51.23515625000002],[-79.83623046874996,51.17333984375003],[-79.651513671875,51.00781250000006],[-79.45615234374988,50.87558593749995],[-79.34790039062493,50.76264648437504],[-79.38071289062488,50.8345214843751],[-79.45263671874997,50.9172851562501],[-79.63618164062494,51.04902343750012],[-79.71445312499992,51.11757812500005],[-79.73139648437493,51.15048828125],[-79.737451171875,51.186279296875],[-79.72324218749995,51.251660156250004],[-79.68881835937495,51.346582031249994],[-79.64296874999994,51.413525390625125],[-79.5857421874999,51.452441406250045],[-79.54746093749992,51.493847656249955],[-79.52802734374995,51.5376953125],[-79.49755859374997,51.569921875],[-79.33867187500002,51.62817382812497],[-79.29697265624986,51.622802734375114],[-79.26425781249995,51.552001953125085],[-79.2261230468749,51.537304687500125],[-79.15273437499997,51.52622070312498],[-79.0908691406249,51.50170898437497],[-79.04052734375003,51.46376953125005],[-79.00502929687498,51.425341796875045],[-78.98432617187504,51.38637695312511],[-78.93691406249997,51.25913085937492],[-78.90317382812495,51.200292968750034],[-78.89750976562492,51.27167968750001],[-78.85800781249989,51.383935546875136],[-78.82744140624996,51.4299804687501],[-78.73134765624994,51.49746093749999],[-78.73642578124989,51.52661132812506],[-78.77631835937491,51.56577148437506],[-78.97773437499993,51.733789062499994],[-78.98164062499993,51.77456054687513],[-78.927880859375,51.798828125000114],[-78.89111328124997,51.84511718750011],[-78.871240234375,51.913427734375006],[-78.82822265624995,51.96298828124998],[-78.70200195312489,52.03271484374997],[-78.59331054687495,52.139697265625095],[-78.5373535156249,52.21328125],[-78.49165039062495,52.25209960937508],[-78.44809570312493,52.26137695312502],[-78.51308593750005,52.291113281250034],[-78.52607421874993,52.31069335937511],[-78.52910156249993,52.39916992187503],[-78.55708007812503,52.49189453125007],[-78.60058593749994,52.53510742187501],[-78.723779296875,52.62773437500004],[-78.74414062499994,52.65537109374998],[-78.76577148437491,52.76005859374999],[-78.75361328124993,52.81240234374999],[-78.72167968749991,52.856445312500085],[-78.73984374999989,52.898974609375045],[-78.85410156249989,52.97607421874994],[-78.8982421874999,53.04335937499999],[-78.947119140625,53.20620117187511],[-78.99204101562492,53.410351562499955],[-79.04311523437494,53.560498046875004],[-79.10034179687497,53.65664062500005],[-79.11313476562489,53.717187500000136],[-79.08144531249994,53.74228515625009],[-79.0403320312499,53.81796875000006],[-79.00317382812497,53.8365722656251],[-78.945703125,53.83159179687499],[-78.9443847656249,53.840234375000136],[-79.0320312499999,53.881054687500125],[-79.07514648437498,53.932373046875085],[-79.07329101562496,53.95141601562506],[-78.99604492187493,54.00249023437499],[-79.00991210937491,54.0239746093751],[-79.06713867187494,54.05195312500012],[-79.241796875,54.098876953125085],[-79.17880859374993,54.11694335937502],[-79.138818359375,54.15722656250006],[-79.14672851562491,54.16923828125002],[-79.21596679687497,54.185693359374994],[-79.29565429687497,54.21684570312496],[-79.35615234374993,54.26337890625001],[-79.43056640625,54.33662109375001],[-79.47597656249994,54.39477539062497],[-79.52065429687495,54.49155273437497],[-79.5979492187499,54.60166015625],[-79.63173828124994,54.6291015625001],[-79.67041015624991,54.64682617187498],[-79.71396484374999,54.65498046875004],[-79.71235351562495,54.6718261718751],[-79.6655273437499,54.69746093749998],[-78.90922851562502,54.881494140624994],[-78.84624023437487,54.908007812500074],[-78.47504882812493,55.0110351562501],[-78.30361328125,55.0685546875001],[-78.12885742187493,55.1513183593751],[-77.89111328124989,55.236425781250006],[-77.77529296874994,55.291259765625],[-77.70214843749994,55.344189453125125],[-77.32495117187494,55.555517578125006],[-77.16508789062496,55.66352539062498],[-77.07255859374993,55.75629882812506],[-76.93808593749989,55.8672363281251],[-76.76181640624995,55.99643554687495],[-76.65048828124992,56.10722656249996],[-76.60405273437496,56.19956054687495],[-76.54638671874994,56.35878906250005],[-76.52983398437496,56.49995117187504],[-76.51962890625,56.706982421875125],[-76.52558593749998,56.8917968750001],[-76.5728515625,57.1812011718751],[-76.60141601562486,57.27226562499998],[-76.65541992187495,57.38056640625004],[-76.78627929687497,57.59858398437505],[-76.80981445312496,57.65795898437505],[-76.89091796874996,57.75810546875002],[-77.15678710937496,58.018896484375034],[-77.48916015625,58.19531250000011],[-77.55244140624993,58.23959960937506],[-77.68408203124991,58.29135742187495],[-77.88413085937489,58.350732421875136],[-78.01357421874997,58.399169921875064],[-78.35170898437494,58.580664062500084],[-78.46298828124986,58.60244140625007],[-78.5059082031249,58.649121093750004],[-78.51508789062493,58.68237304687502],[-78.50229492187489,58.7690917968751],[-78.48261718749994,58.829101562500085],[-78.45869140624998,58.873291015625036],[-78.43051757812492,58.901757812500136],[-78.24443359374993,59.03505859375011],[-78.14023437499995,59.14174804687499],[-78.0676757812499,59.20019531249999],[-77.98764648437495,59.245507812499994],[-77.84282226562493,59.30502929687506],[-77.76069335937498,59.38002929687505],[-77.77944335937495,59.41040039062502],[-77.84467773437495,59.443505859375016],[-77.85903320312494,59.47578125],[-77.74902343749991,59.558154296875095],[-77.73349609374993,59.58095703125013],[-77.74750976562504,59.658496093749925],[-77.72617187499995,59.67587890624992],[-77.59042968749992,59.680517578124984],[-77.39667968749998,59.56923828125005],[-77.34907226562495,59.57895507812509],[-77.41103515624997,59.60961914062511],[-77.48530273437491,59.684570312500114],[-77.47456054687504,59.71567382812503],[-77.33164062499986,59.79663085937502],[-77.32763671874994,59.833398437500044],[-77.36840820312491,59.884375],[-77.37294921874994,59.92509765625007],[-77.28920898437494,60.0220214843751],[-77.31181640624993,60.04238281249999],[-77.5471679687499,60.061132812500084],[-77.58588867187498,60.088183593750074],[-77.57216796874994,60.100976562500016],[-77.46137695312491,60.13349609375006],[-77.45288085937497,60.145800781250095],[-77.64863281249998,60.3625],[-77.6814453124999,60.42709960937504],[-77.59814453124989,60.50673828125008],[-77.503564453125,60.54272460937497],[-77.51557617187503,60.56318359375003],[-77.63945312499996,60.566894531250085],[-77.714990234375,60.57778320312499],[-77.7908203124999,60.63984375000004],[-77.76123046874991,60.679052734375034],[-77.734228515625,60.69697265625012],[-77.66064453124994,60.789501953124955],[-77.58955078124993,60.808593750000114],[-77.60302734374991,60.82519531249994],[-77.8715332031249,60.7858398437501],[-77.99814453124995,60.81821289062495],[-78.12246093750005,60.80961914062498],[-78.18134765624995,60.81914062499996],[-78.15966796874989,60.85219726562513],[-77.93417968749989,61.00263671875004],[-77.8301269531249,61.0840332031251],[-77.76503906249997,61.15751953124999],[-77.73061523437497,61.20639648437497],[-77.72680664062491,61.230664062500125],[-77.74960937499995,61.393017578124976],[-77.73618164062495,61.43735351562497],[-77.64887695312493,61.478662109375016],[-77.51435546874998,61.556298828125044],[-77.69843749999997,61.62641601562512],[-77.81376953124996,61.694775390625004],[-77.88989257812491,61.72871093749998],[-77.94755859374993,61.761865234374994],[-78.02138671874997,61.832080078125095],[-78.07749023437495,61.92338867187504],[-78.13715820312491,62.10737304687503],[-78.14697265624997,62.20869140625007],[-78.13339843749986,62.28227539062495],[-78.10859374999997,62.318115234375],[-78.06811523437489,62.355419921875125],[-77.89990234374991,62.42656250000004],[-77.60395507812493,62.53139648437511],[-77.372412109375,62.572509765625114],[-77.20527343749998,62.549951171875136],[-76.87939453124993,62.52539062500012],[-76.616357421875,62.465673828125034],[-75.81689453124991,62.315869140625075],[-75.67553710937487,62.24951171875006],[-75.80922851562505,62.19340820312499],[-75.7898437499999,62.17958984375003],[-75.48881835937496,62.28642578125011],[-75.40922851562489,62.30708007812504],[-75.3412109375,62.312109375],[-75.11401367187489,62.270751953125114],[-75.02275390624996,62.26445312500008],[-74.90756835937495,62.23002929687499],[-74.63256835937497,62.115673828125125],[-74.61289062499995,62.12519531250013],[-74.68989257812491,62.18344726562509],[-74.6458007812499,62.21113281250004],[-74.42919921874991,62.27182617187497],[-74.20546875,62.32138671874995],[-74.0464843749999,62.37001953125008],[-73.87783203124994,62.434375],[-73.76396484375002,62.468750000000114],[-73.70507812499991,62.473144531249936],[-73.62998046874989,62.454199218750006],[-73.42836914062494,62.36884765625001],[-73.29897460937505,62.32504882812498],[-73.19516601562495,62.27915039062503],[-73.0493652343749,62.19824218750009],[-72.99238281249995,62.18041992187499],[-72.88183593749997,62.12539062499999],[-72.73496093749988,62.131103515625085],[-72.68696289062498,62.12456054687498],[-72.67080078124997,62.11386718749994],[-72.64599609374989,62.076611328124976],[-72.63310546874993,62.0527832031251],[-72.63212890624989,62.02724609375005],[-72.66601562499997,61.955322265624964],[-72.771630859375,61.840429687500006],[-72.72739257812495,61.83862304687499],[-72.66064453124994,61.86323242187504],[-72.57387695312494,61.90712890625011],[-72.50556640624998,61.92265625000008],[-72.36074218750005,61.88779296875006],[-72.22612304687487,61.83159179687499],[-72.17846679687494,61.80180664062496],[-72.12612304687494,61.753222656250024],[-72.0814453125,61.72827148437508],[-72.04003906249991,61.680273437500055],[-72.04296874999997,61.66469726562511],[-72.08203124999994,61.64140625],[-72.24707031249996,61.602050781250114],[-72.21586914062502,61.58725585937494],[-72.02309570312498,61.61196289062502],[-71.96440429687495,61.63627929687498],[-71.92226562499997,61.67695312500009],[-71.86611328125,61.68852539062499],[-71.63828124999995,61.6171875],[-71.60478515624996,61.59238281249992],[-71.61943359375,61.57290039062505],[-71.65620117187503,61.55092773437502],[-71.75576171875,61.526757812500044],[-71.84101562500004,61.466015625000125],[-71.85439453124991,61.43979492187493],[-71.79365234374998,61.421191406250045],[-71.6453125,61.41313476562501],[-71.64643554687491,61.398730468750095],[-71.73212890624995,61.37207031249999],[-71.74345703124996,61.337255859375006],[-71.55151367187503,61.213281250000136],[-71.42270507812489,61.15893554687508],[-71.3484375,61.14897460937502],[-71.175146484375,61.146533203125045],[-71.03496093749995,61.12553710937505],[-70.72324218749995,61.055175781250085],[-70.54077148437491,61.04248046875],[-70.38364257812495,61.06396484375011],[-70.2792968749999,61.06865234374999],[-70.1872070312499,61.040527343750114],[-70.15795898437489,61.020654296874994],[-70.14414062499992,60.98110351562511],[-70.14589843749994,60.9218261718751],[-70.0953125,60.88027343749999],[-69.9924316406249,60.8564941406251],[-69.90922851562493,60.86010742187498],[-69.800439453125,60.90668945312504],[-69.70839843749997,60.91464843750006],[-69.677587890625,60.949560546875055],[-69.65043945312486,61.014160156250085],[-69.62363281249992,61.04951171875001],[-69.55698242187495,61.05966796874994],[-69.50332031249994,61.04042968750011],[-69.47192382812503,61.010937500000125],[-69.41435546875002,60.92246093750006],[-69.39833984374997,60.88286132812498],[-69.40473632812493,60.846777343750084],[-69.43344726562499,60.81425781250004],[-69.48994140624995,60.779589843750074],[-69.57421874999991,60.742724609375024],[-69.64047851562489,60.689794921875084],[-69.72138671875004,60.56743164062501],[-69.7512695312499,60.48745117187507],[-69.75947265624998,60.440234375000045],[-69.75590820312495,60.38852539062498],[-69.74057617187495,60.33227539062509],[-69.7084960937499,60.285937500000045],[-69.6331054687499,60.22036132812502],[-69.628759765625,60.198583984375006],[-69.62314453124992,60.14545898437503],[-69.62978515624994,60.122119140625074],[-69.67373046874994,60.07587890625006],[-69.79565429687487,60.02973632812507],[-69.96284179687493,60.01782226562497],[-70.5093261718749,60.01518554687495],[-70.65483398437496,60.02622070312506],[-70.6197265625,59.98427734375005],[-70.46665039062489,59.970849609374994],[-70.32685546874993,59.9713867187501],[-69.80566406249997,59.94487304687502],[-69.73393554687492,59.918017578125045],[-69.67343749999993,59.87075195312502],[-69.63022460937495,59.82182617187499],[-69.58740234374991,59.72231445312496],[-69.5793945312499,59.67509765624996],[-69.60234374999995,59.62270507812511],[-69.65620117187488,59.5650878906251],[-69.69238281249991,59.4884277343751],[-69.71088867187504,59.39252929687512],[-69.68188476562489,59.34174804687507],[-69.4,59.337792968749966],[-69.3440429687499,59.303076171875],[-69.35043945312486,59.27719726562506],[-69.45048828124993,59.18002929687498],[-69.45976562499993,59.15244140625006],[-69.41411132812496,59.086865234375004],[-69.4203125,59.06821289062494],[-69.44809570312486,59.049169921874984],[-69.47465820312496,59],[-69.50009765624989,58.920654296875085],[-69.53164062499994,58.86923828125009],[-69.6082031249999,58.82949218749999],[-69.64838867187493,58.82080078125],[-69.67734374999995,58.83134765625002],[-69.75302734375,58.939599609375016],[-69.78417968749994,58.9557128906251],[-69.81367187499993,58.945556640625],[-69.82851562499994,58.92875976562495],[-69.82861328124994,58.905371093749984],[-69.84160156250002,58.88115234375001],[-69.867578125,58.85615234375009],[-69.97915039062497,58.81635742187498],[-70.15996093749996,58.78940429687497],[-70.15434570312496,58.76059570312498],[-70.03300781249993,58.74516601562504],[-69.878564453125,58.696972656249976],[-69.78989257812485,58.689306640625034],[-69.650537109375,58.72827148437497],[-69.38183593749996,58.85073242187505],[-69.27109374999986,58.88393554687505],[-69.17348632812497,58.896630859374994],[-69.06362304687497,58.89824218749997],[-68.94150390624985,58.888916015625],[-68.69819335937494,58.904541015625],[-68.63730468749989,58.892871093750095],[-68.56289062499994,58.865917968750125],[-68.47490234374993,58.823486328125],[-68.41430664062503,58.78271484375005],[-68.38115234374993,58.74350585937506],[-68.3264648437499,58.59541015625006],[-68.25297851562493,58.556640625],[-68.23515625,58.52817382812507],[-68.22939453124994,58.48457031250006],[-68.23388671874994,58.399218750000074],[-68.31469726562489,58.22690429687497],[-68.35654296874989,58.163232421875136],[-68.4681640625,58.076318359375016],[-68.596875,58.03686523437497],[-68.8257812499999,57.999853515625055],[-68.94531250000003,57.96879882812497],[-69.03544921874993,57.92602539062494],[-69.04082031249996,57.902490234375136],[-68.78095703124995,57.97583007812497],[-68.49506835937495,58.01166992187498],[-68.41357421874996,58.0517578125],[-68.35185546874993,58.09072265625011],[-68.289111328125,58.17768554687507],[-68.17553710937497,58.40258789062506],[-68.11103515624998,58.47333984375006],[-68.02104492187493,58.48530273437503],[-67.98115234374998,58.4612304687501],[-67.88779296874989,58.329394531250074],[-67.88828124999989,58.29575195312494],[-67.9114257812499,58.26723632812503],[-68.06386718750004,58.13896484374998],[-68.00898437499995,58.15205078124998],[-67.85585937499994,58.27260742187505],[-67.82333984374988,58.31025390625007],[-67.80522460937492,58.365478515624936],[-67.75595703124992,58.404589843750095],[-67.73706054687491,58.385449218750125],[-67.68969726562503,58.24379882812502],[-67.68818359374998,58.14023437500006],[-67.68056640624992,58.107031250000055],[-67.69765625000005,58.0087402343751],[-67.67827148437489,57.99111328125008],[-67.63222656249994,58.076123046874976],[-67.61718749999991,58.14033203125009],[-67.59633789062491,58.1861328125],[-67.5696289062499,58.21347656250006],[-67.38198242187494,58.300000000000125],[-67.16284179687496,58.37036132812505],[-67.01943359375,58.43291015625001],[-66.90039062499997,58.462792968750044],[-66.72216796874991,58.49101562499995],[-66.6079101562499,58.548925781250034],[-66.55771484374988,58.63662109375013],[-66.5150390625,58.69731445312504],[-66.47998046874994,58.730908203124976],[-66.36240234374989,58.791162109374994],[-66.29853515624993,58.79453124999998],[-66.23740234375,58.772265625000045],[-66.16821289062503,58.72709960937507],[-66.09091796875,58.65903320312506],[-66.04462890624998,58.605615234375016],[-66.02954101562503,58.56679687500011],[-66.01704101562495,58.43081054687511],[-66.0023925781249,58.43120117187502],[-65.93124999999988,58.53505859375005],[-65.92290039062496,58.5719726562501],[-65.92792968749991,58.610937500000034],[-65.94965820312493,58.649853515624976],[-66.02128906249993,58.734765625000044],[-66.04936523437487,58.787890625000045],[-66.04306640624995,58.820654296874956],[-65.96704101562491,58.839208984375006],[-65.85483398437495,58.8466308593751],[-65.83593749999991,58.86049804687508],[-65.91840820312495,58.89560546874994],[-65.92070312499996,58.914648437500084],[-65.84140624999989,58.97705078125002],[-65.79482421875,58.98046875],[-65.70356445312495,58.97060546875013],[-65.72192382812497,59.00258789062507],[-65.72099609374995,59.02377929687494],[-65.69526367187495,59.03203125000004],[-65.54399414062496,59.01186523437502],[-65.5263183593749,59.036230468750006],[-65.39624023437497,59.03842773437509],[-65.38354492187494,59.06020507812508],[-65.49599609374994,59.09130859375003],[-65.60625,59.11074218750008],[-65.63984375000004,59.12773437499999],[-65.665625,59.152783203125125],[-65.7,59.21333007812501],[-65.69169921874993,59.22939453125011],[-65.66074218749995,59.229687499999976],[-65.60712890624995,59.21313476562497],[-65.57802734375005,59.244970703125055],[-65.54531250000004,59.31972656250002],[-65.51279296874992,59.350390625000045],[-65.4117187499999,59.31499023437495],[-65.4072753906249,59.33022460937502],[-65.48935546874992,59.44775390625],[-65.47509765624994,59.47031249999998],[-65.34970703124989,59.4788085937501],[-65.27377929687488,59.46416015624995],[-65.07431640624992,59.378027343750006],[-65.03823242187494,59.38789062500007],[-65.06884765624997,59.41147460937506],[-65.1709472656249,59.46225585937492],[-65.26318359374994,59.49545898437495],[-65.34550781249993,59.5110351562501],[-65.40742187499993,59.53935546875001],[-65.47519531249989,59.61679687499998],[-65.48647460937505,59.648681640625085],[-65.48085937499997,59.69023437500002],[-65.4333984374999,59.77651367187499],[-65.40615234374994,59.795214843750074],[-65.35791015624997,59.80908203125006],[-65.28876953124993,59.818066406250125],[-65.21225585937486,59.80952148437499],[-65.05449218749987,59.75278320312498],[-65.02817382812495,59.77070312500006],[-65.11328124999997,59.80161132812498],[-65.1592285156249,59.830126953125095],[-65.18139648437489,59.86665039062506],[-65.17172851562489,59.90800781249996],[-65.10488281249994,59.993408203124964],[-65.07338867187491,60.062207031250125],[-64.93125,60.25200195312507],[-64.88955078124994,60.286523437499994],[-64.84501953124993,60.30830078124998],[-64.81733398437498,60.3310546875],[-64.7058593749999,60.336132812499976],[-64.49941406250005,60.26826171875001],[-64.4363281249999,60.228125],[-64.41958007812494,60.17138671874997],[-64.52773437499997,60.09453125],[-64.71328124999991,60.037158203124996],[-64.76845703124997,60.01210937500005],[-64.73256835937494,59.99755859375009],[-64.55917968749986,60.04340820312501],[-64.40771484374991,60.06479492187495],[-64.28349609374993,60.0640625],[-64.18286132812494,59.97294921875004],[-64.16879882812492,59.84653320312506],[-64.22631835937491,59.74121093750008],[-64.15068359374996,59.7936035156251],[-64.05605468750005,59.82255859374996],[-63.978710937499926,59.75371093749999],[-63.969482421874915,59.697607421875084],[-63.928808593749885,59.644921875000016],[-63.841259765624976,59.57441406250004],[-63.7501953124999,59.512597656250044],[-63.85039062499991,59.44780273437501],[-63.970703124999964,59.40908203125011],[-63.94545898437499,59.38017578125008],[-63.780859374999956,59.349267578124994],[-63.75859374999993,59.31865234374998],[-63.77587890624991,59.27714843750005],[-63.75200195312502,59.277343750000085],[-63.6375,59.34145507812502],[-63.539892578124864,59.33286132812503],[-63.415136718749956,59.19438476562507],[-63.50620117187494,59.1151855468751],[-63.645507812499886,59.07890624999998],[-63.75639648437502,59.06347656250006],[-63.910498046874885,59.0655761718751],[-63.97114257812498,59.05380859375003],[-63.94101562499989,59.027392578124996],[-63.79365234374998,59.02700195312508],[-63.56787109374997,59.04702148437507],[-63.398974609374925,59.07963867187496],[-63.325537109374885,59.08159179687502],[-63.24843749999991,59.06831054687495],[-63.22250976562486,59.05717773437501],[-63.30371093749988,59.034423828125],[-63.3098632812499,59.02646484374998],[-63.27944335937494,59.00317382812502],[-63.216406249999864,58.927978515624964],[-63.22192382812502,58.91103515625007],[-63.28212890624993,58.86738281250006],[-63.18535156249994,58.85776367187506],[-63.050292968749964,58.87817382812494],[-63.00834960937493,58.855419921875125],[-62.92607421874996,58.765039062499994],[-62.873876953124885,58.67246093749998],[-63.1023437499999,58.54575195312509],[-63.21865234374997,58.519531250000085],[-63.38994140624995,58.4525390625001],[-63.437939453124976,58.398828125],[-63.53706054687492,58.329931640625],[-63.47363281249997,58.33066406249998],[-63.29648437499995,58.441210937500095],[-63.20996093749988,58.46694335937502],[-63.145507812499915,58.460449218750114],[-63.11953124999994,58.441748046875034],[-63.13212890624993,58.41083984375013],[-63.075683593749886,58.41479492187505],[-62.83740234375003,58.47939453125008],[-62.73730468749997,58.4921875],[-62.607861328124976,58.49638671874999],[-62.59384765624986,58.474023437500044],[-62.674316406249915,58.31918945312494],[-62.81206054687502,58.20039062500007],[-63.062792968749925,58.12709960937505],[-63.151660156249925,58.084179687500004],[-63.261523437499925,58.01469726562507],[-63.2200195312499,58.00214843750001],[-62.98090820312505,58.0933105468751],[-62.817529296874966,58.12924804687498],[-62.58808593750004,58.15810546874999],[-62.486230468749966,58.15405273437505],[-62.305664062499964,57.97226562499994],[-62.201513671874885,57.9546386718751],[-62.117431640624886,57.96411132812508],[-61.958642578125044,57.91176757812507],[-61.89907226562499,57.861328125000085],[-61.91406250000002,57.82504882812498],[-61.96777343749997,57.803320312500006],[-61.9949218749999,57.76943359375002],[-61.93124999999989,57.66855468750009],[-61.9679687499999,57.61191406250009],[-62.08398437499991,57.561914062500016],[-62.16689453124994,57.536572265625004],[-62.253613281249926,57.528759765625004],[-62.338574218749926,57.48452148437508],[-62.377148437499955,57.477978515624976],[-62.49555664062492,57.48920898437512],[-62.45498046874991,57.4619628906251],[-62.396484374999915,57.448193359375125],[-62.30322265624991,57.440673828125036],[-62.19423828124999,57.45458984375001],[-62.088085937499955,57.452832031250004],[-61.92114257812497,57.42080078125005],[-61.851074218749886,57.38129882812501],[-61.84980468749989,57.3704101562501],[-61.885839843749864,57.347851562500125],[-61.93886718749993,57.27436523437507],[-61.977441406249966,57.24794921875002],[-61.94453124999992,57.228125],[-61.86083984375003,57.19755859375004],[-61.798339843749915,57.18623046875003],[-61.71630859374998,57.196191406250136],[-61.62851562499995,57.18315429687496],[-61.333740234374936,57.01059570312498],[-61.3457519531249,56.921582031250125],[-61.39047851562495,56.85297851562501],[-61.37280273437488,56.7758300781251],[-61.37163085937502,56.68081054687511],[-61.53168945312492,56.654589843750095],[-62.06249999999989,56.69907226562509],[-62.36611328124994,56.76699218750008],[-62.38173828124991,56.78769531250003],[-62.29580078124999,56.83281249999999],[-62.37202148437498,56.83618164062497],[-62.46020507812491,56.81845703125009],[-62.497265624999926,56.80170898437504],[-62.39550781249997,56.73002929687502],[-62.116503906249875,56.66684570312492],[-61.99160156249994,56.590820312500085],[-61.85493164062498,56.58427734374999],[-61.813378906249945,56.570507812500004],[-61.737744140624976,56.52602539062502],[-61.76005859374993,56.510742187500114],[-61.89941406249997,56.505419921875074],[-62.00966796874996,56.45385742187505],[-61.940429687499886,56.423583984375114],[-61.692480468750006,56.397070312500034],[-61.51459960937492,56.3903320312501],[-61.425292968749936,56.360644531250074],[-61.49868164062505,56.32758789062509],[-61.70712890624989,56.288720703124994],[-61.713085937499955,56.230957031250114],[-61.558593749999915,56.20781250000002],[-61.42109374999995,56.22182617187505],[-61.36469726562492,56.2160156250001],[-61.32441406249998,56.076220703125045],[-61.301123046874956,56.04716796874998],[-61.44892578125005,56.02236328125007],[-61.4495117187499,55.99570312499997],[-61.35126953125004,55.9736816406251],[-61.18789062499996,55.9553710937501],[-61.133886718749885,55.93027343749998],[-61.12299804687498,55.888574218749994],[-61.089355468749964,55.86635742187511],[-60.99575195312499,55.86235351562499],[-60.89267578124994,55.91420898437507],[-60.8318359374999,55.95786132812509],[-60.74326171874989,55.94145507812493],[-60.73662109374996,55.88696289062503],[-60.63095703124991,55.825],[-60.59257812500002,55.81484375000007],[-60.56210937499994,55.72700195312512],[-60.47583007812494,55.80512695312507],[-60.41259765625003,55.78857421875006],[-60.341015624999926,55.78466796874997],[-60.36542968749992,55.709082031250034],[-60.408300781249956,55.649560546874994],[-60.35195312499993,55.61235351562504],[-60.30830078124992,55.55698242187495],[-60.19238281249994,55.48090820312509],[-60.22402343749999,55.4443847656251],[-60.360937499999885,55.366308593750006],[-60.433105468749936,55.24277343750006],[-60.45009765624994,55.19995117187506],[-60.520507812499886,55.12900390624998],[-60.61713867187495,55.060205078124994],[-60.55654296875005,55.06748046875006],[-60.34077148437495,55.19394531250006],[-60.21254882812496,55.236425781250006],[-59.930322265624916,55.25942382812508],[-59.86210937499996,55.29487304687501],[-59.758789062499964,55.3095703125],[-59.695507812499955,55.26914062499992],[-59.68906249999989,55.19633789062502],[-59.60546874999992,55.17333984374994],[-59.517675781249864,55.19736328125006],[-59.437890625000044,55.175927734375136],[-59.48583984374997,55.130175781250045],[-59.741699218749936,54.94257812500001],[-59.816406249999886,54.867236328124925],[-59.83779296875,54.813964843750114],[-59.74990234374994,54.887011718750074],[-59.42856445312492,55.05551757812492],[-59.394189453124945,55.08071289062508],[-59.324169921874976,55.15283203125002],[-59.25957031249996,55.19995117187506],[-59.08632812499993,55.18325195312502],[-58.99711914062495,55.149462890625074],[-58.95581054687488,55.05507812500002],[-58.88579101562502,54.952246093750034],[-58.78017578124999,54.838378906250114],[-58.4999023437499,54.78310546875002],[-58.398144531249976,54.774121093749976],[-58.222851562499955,54.812695312500004],[-58.195263671874926,54.86591796875004],[-58.05849609375005,54.88222656249996],[-57.962451171874925,54.875732421875085],[-57.92929687499991,54.773144531250125],[-57.826855468749926,54.71865234375005],[-57.72490234374996,54.673730468750136],[-57.62661132812499,54.65034179687498],[-57.483007812499864,54.64028320312508],[-57.40449218750004,54.59086914062496],[-57.40444335937493,54.570410156250034],[-57.48535156249991,54.51748046875011],[-57.563232421874964,54.44042968750002],[-57.69926757812496,54.38657226562506],[-57.88911132812492,54.384082031250095],[-58.15136718749998,54.350439453125],[-58.1619140624999,54.319970703124994],[-58.219726562499936,54.28647460937491],[-58.35913085937491,54.25332031250011],[-58.435205078124966,54.228125],[-58.55839843749993,54.10297851562504],[-58.63320312499999,54.04956054687497],[-58.71943359374995,54.039404296875034],[-58.840820312499915,54.04448242187502],[-58.92021484375002,54.033105468749994],[-58.97846679687498,54.010253906249964],[-59.012646484374926,53.97626953124998],[-59.03881835937494,53.96362304687506],[-59.201416015624915,53.92910156250013],[-59.49653320312492,53.83417968749998],[-59.65268554687495,53.83125],[-59.74946289062492,53.84228515625003],[-59.8230468749999,53.83442382812503],[-59.87333984374996,53.80776367187511],[-60.01416015624994,53.76157226562492],[-60.056542968749966,53.73334960937503],[-60.08134765624996,53.701025390625034],[-60.10048828124993,53.6342285156251],[-60.11728515624991,53.61010742187497],[-60.14492187499993,53.59614257812498],[-60.263330078124994,53.610058593749976],[-60.39541015624999,53.653320312500085],[-60.369531250000044,53.60747070312499],[-60.160253906249956,53.52998046875001],[-60.10029296874989,53.48696289062511],[-60.15712890624994,53.449804687500006],[-60.290283203124964,53.391455078125034],[-60.30576171874995,53.36010742187502],[-60.25117187499992,53.343554687500045],[-60.27270507812494,53.31708984374998],[-60.345703124999915,53.289013671875125],[-60.3375,53.27744140625006],[-60.32949218749997,53.26611328125006],[-60.14833984374993,53.306542968750136],[-59.98710937499993,53.392822265625114],[-59.881738281249966,53.48007812499995],[-59.82905273437498,53.50454101562513],[-59.62109374999988,53.53681640624998],[-59.49814453124989,53.574755859375074],[-59.32226562499994,53.64375],[-59.12939453124991,53.743945312500074],[-58.91958007812496,53.87529296875002],[-58.652050781249926,53.97788085937495],[-58.326708984374896,54.051806640625074],[-58.08808593750004,54.089501953125136],[-57.935986328124955,54.09116210937492],[-57.92827148437491,54.10356445312496],[-58.06484374999994,54.12675781250007],[-58.17744140625004,54.131298828125125],[-58.317480468749885,54.11445312500007],[-58.3607910156249,54.15449218750004],[-58.35615234375003,54.171923828125045],[-58.30996093749993,54.20166015625005],[-58.19208984374992,54.228173828125136],[-57.61494140624992,54.19111328125004],[-57.416064453124896,54.162744140625136],[-57.198876953124994,53.924365234375045],[-57.148974609374925,53.84770507812507],[-57.134960937499926,53.79184570312506],[-57.156933593749955,53.756884765625045],[-57.24399414062495,53.715478515625136],[-57.48945312500003,53.633105468750045],[-57.524072265624966,53.61142578125006],[-57.527343750000036,53.599902343750045],[-57.42021484374996,53.58325195312503],[-57.38613281249993,53.560546875],[-57.33173828124996,53.469091796875034],[-57.22138671875004,53.52851562500007],[-57.012158203124955,53.672607421875114],[-56.84086914062495,53.73945312500004],[-56.69658203124987,53.757666015625034],[-56.52431640625005,53.766455078125034],[-56.46499023437505,53.76503906250011],[-56.444335937499915,53.71831054687499],[-56.35400390624991,53.62446289062507],[-56.270214843749976,53.600097656250085],[-56.11015625,53.58759765625001],[-55.96611328125002,53.47114257812509],[-55.91123046874995,53.39082031250007],[-55.859375,53.34389648437511],[-55.86337890624994,53.31225585937506],[-55.8547851562499,53.28583984375001],[-55.816894531249915,53.24575195312499],[-55.79794921874995,53.211962890625045],[-55.808203125,53.13466796875011],[-55.892333984374915,53.000439453125125],[-55.829882812499875,52.87841796874994],[-55.85791015624991,52.82338867187511],[-55.87250976562504,52.735693359375],[-55.8186523437499,52.677148437499994],[-55.802832031249885,52.64316406249997],[-55.84843749999993,52.623339843750045],[-56.166992187499915,52.574755859375074],[-56.29238281250005,52.573779296875074],[-56.324902343749926,52.54453125],[-56.228417968749994,52.535986328125006],[-56.05258789062494,52.5374023437501],[-55.84018554687495,52.507617187500074],[-55.74648437499994,52.4745605468751],[-55.70595703124996,52.428271484375074],[-55.716210937499994,52.39150390625005],[-55.777148437499896,52.36425781249999],[-55.896679687499976,52.36958007812504],[-56.01171874999997,52.394482421875125],[-56.00463867187497,52.37041015625002],[-55.83364257812494,52.310400390625055],[-55.78349609374993,52.27993164062505],[-55.69106445312493,52.24160156250008],[-55.67280273437504,52.19013671875007],[-55.69521484374999,52.13779296875006],[-56.017480468749994,51.92929687500003],[-56.282568359375006,51.7970703125001],[-56.54858398437503,51.68100585937509],[-56.975976562500044,51.457666015625044],[-57.018261718749955,51.44677734374997],[-57.095605468749994,51.44252929687499],[-57.29921875,51.478271484375],[-57.461669921874964,51.46909179687506],[-57.7695800781249,51.42592773437499],[-57.85375976562491,51.39951171874992],[-58.02265625000004,51.32207031249996],[-58.08940429687495,51.31098632812501],[-58.27045898437498,51.29521484374998],[-58.442285156249994,51.30590820312506],[-58.5103515625,51.295068359375136],[-58.59326171875003,51.25712890625004],[-58.61474609374994,51.23706054687506],[-58.637597656249994,51.171679687500045],[-59.054931640624915,50.879101562500125],[-59.16538085937494,50.779882812500006],[-59.37802734374995,50.67543945312502],[-59.611914062499885,50.492089843749994],[-59.81533203124994,50.418261718750045],[-59.88632812499992,50.316406250000085],[-60.08017578124989,50.2545898437501],[-60.43808593749989,50.23886718750009],[-60.608203124999896,50.22114257812504],[-60.80722656249994,50.24980468750002],[-60.95629882812494,50.205419921875034],[-61.18071289062502,50.191503906250034],[-61.28974609374992,50.20195312500002],[-61.72485351562503,50.10405273437499],[-61.835351562499994,50.19697265625007],[-61.919531249999885,50.23286132812509],[-62.16523437500004,50.2389160156251],[-62.361669921875006,50.2772949218751],[-62.54091796874994,50.28452148437498],[-62.715429687499956,50.30166015625008],[-62.830224609374994,50.30146484375004],[-62.9497558593749,50.29135742187495],[-63.13564453124994,50.29379882812509],[-63.23862304687486,50.24257812500013],[-63.586669921874915,50.25820312500011],[-63.73359374999998,50.30463867187498],[-63.85395507812489,50.31435546875002],[-64.01582031249993,50.30395507812502],[-64.17041015624989,50.26943359375011],[-64.50893554687494,50.30893554687497],[-64.86787109374998,50.27548828125009],[-65.18090820312497,50.297900390625045],[-65.2686035156249,50.3200195312501],[-65.76245117187497,50.25927734374997],[-65.95537109375002,50.29414062499998],[-66.12553710937496,50.201025390625006],[-66.2421874999999,50.22036132812505],[-66.36884765624995,50.20664062500009],[-66.41108398437504,50.22426757812513],[-66.49550781249991,50.2118652343751],[-66.55004882812491,50.16118164062507],[-66.62172851562505,50.155419921875136],[-66.74086914062498,50.06552734374995],[-66.94116210937501,49.993701171875045],[-67.23437499999989,49.601757812499955],[-67.26191406249991,49.45117187500003],[-67.37202148437494,49.348437500000045],[-67.46923828124997,49.33461914062507],[-67.54926757812493,49.33227539062494],[-68.05625,49.25678710937504],[-68.28193359374997,49.19716796875013],[-68.22060546875,49.14965820312506],[-68.29453124999986,49.11435546874998],[-68.41440429687485,49.099511718750136],[-68.54384765624997,49.05615234374999],[-68.62788085937493,49.00717773437498],[-68.66904296874989,48.939501953125045],[-68.929052734375,48.82895507812509],[-69.23076171874992,48.57363281250011],[-69.37495117187498,48.38642578124998],[-69.55009765624996,48.25078125000007],[-69.67387695312496,48.19916992187503],[-69.76191406250004,48.19116210937499],[-69.85170898437494,48.20737304687492],[-70.0010253906249,48.2709472656251],[-70.11064453124993,48.27797851562511],[-70.38369140624997,48.36650390625002],[-71.01826171874993,48.455615234375045],[-70.92260742187497,48.42231445312501],[-70.83876953124997,48.367382812500004],[-70.67109374999998,48.35322265624998],[-70.500634765625,48.354345703125034],[-70.14531249999989,48.24355468750002],[-69.97119140624994,48.205761718750125],[-69.86552734374993,48.17226562500005],[-69.775,48.09809570312504],[-69.83984374999991,47.95258789062507],[-69.9055664062499,47.83222656250007],[-69.9944335937499,47.73989257812508],[-70.3000976562499,47.50302734374998],[-70.44804687499993,47.42343750000009],[-70.70585937499995,47.13979492187505],[-70.97270507812487,47.00668945312509],[-71.115625,46.92495117187513],[-71.26777343749995,46.79594726562499],[-71.62475585937503,46.698388671874994],[-71.75727539062493,46.673583984375085],[-71.87958984374998,46.68681640624995],[-72.02846679687494,46.607421875000114],[-72.20463867187496,46.55888671874999],[-72.25664062499987,46.48505859375007],[-72.68012695312491,46.2873046875001],[-72.84267578125,46.262402343749976],[-72.98100585937493,46.209716796875085],[-73.02192382812491,46.120263671874994],[-73.14541015624994,46.06630859375002],[-73.1796874999999,46.025],[-73.28354492187492,45.89985351562504],[-73.4766113281249,45.738232421874955],[-73.71186523437498,45.71118164062497],[-73.79785156249991,45.65493164062505],[-73.89741210937493,45.56416015625004],[-74.03784179687494,45.50185546875013],[-74.31508789062492,45.531054687500045],[-74.24765624999989,45.49287109375007],[-73.99960937499989,45.43334960937503],[-73.97382812499995,45.345117187499994],[-74.09809570312494,45.32402343749996],[-74.35830078124994,45.20639648437497],[-74.70888671874997,45.0038574218751]]],[[[-96.78232421874998,72.93662109375],[-96.94379882812501,72.92670898437495],[-97.0927734375,72.99692382812503],[-97.09765624999999,73.06240234374997],[-97.08769531250002,73.09848632812503],[-97.06923828125,73.13017578125002],[-97.01499023437495,73.15727539062502],[-96.86240234374995,73.18881835937506],[-96.79316406249995,73.165478515625],[-96.76777343749995,73.13730468750003],[-96.74443359374997,73.12626953125002],[-96.64599609375,73.10190429687503],[-96.598486328125,73.07382812499998],[-96.60351562499996,73.04155273437499],[-96.63540039062497,72.99243164062503],[-96.67060546874995,72.9609375],[-96.709228515625,72.94697265624998],[-96.78232421874998,72.93662109375]]],[[[-114.521533203125,72.592919921875],[-114.45810546874998,72.58037109374999],[-114.34243164062495,72.59077148437498],[-114.17446289062501,72.62407226562502],[-113.9578125,72.65146484375],[-113.69243164062495,72.67280273437501],[-113.62216796874993,72.64682617187503],[-113.57807617187501,72.65209960937506],[-113.50004882812502,72.69443359375006],[-113.48613281250003,72.72226562500003],[-113.49589843749996,72.75366210937506],[-113.4914062499999,72.82207031250005],[-113.44985351562501,72.86323242187498],[-113.29238281249998,72.94980468750003],[-113.20800781250001,72.98100585937499],[-113.07353515624999,72.99526367187497],[-112.75361328125001,72.98603515624995],[-112.45375976562502,72.93662109375],[-112.04809570312499,72.88803710937498],[-111.45541992187493,72.76591796875005],[-111.26972656249993,72.71372070312498],[-111.250390625,72.66855468750003],[-111.35551757812502,72.57211914062499],[-111.61088867187499,72.43559570312499],[-111.81601562499995,72.386328125],[-111.895166015625,72.35610351562497],[-111.76162109374997,72.33525390625007],[-111.67509765625002,72.30014648437503],[-111.54355468749995,72.35092773437498],[-111.44736328124999,72.40771484375],[-111.31118164062495,72.454833984375],[-111.26479492187501,72.45903320312506],[-111.25341796875,72.44907226562498],[-111.27714843749995,72.424853515625],[-111.28725585937497,72.401123046875],[-111.28374023437496,72.37797851562506],[-111.26806640624996,72.36386718750003],[-111.18461914062502,72.35664062499998],[-111.13989257812496,72.36533203124998],[-110.95898437499997,72.43198242187506],[-110.78154296874996,72.53388671875004],[-110.51254882812496,72.59970703125002],[-110.43930664062496,72.63334960937505],[-110.20512695312495,72.66127929687497],[-110.207958984375,72.6810546875],[-110.19716796875002,72.75888671875003],[-110.27910156250002,72.79204101562505],[-110.55361328124998,72.86142578124998],[-110.68940429687503,72.94453125000004],[-110.66083984374998,73.00820312500002],[-110.50927734375001,72.99892578125],[-110.09462890624998,72.99213867187495],[-110.00844726562494,72.983642578125],[-109.60996093749993,72.87568359375004],[-109.46909179687502,72.808447265625],[-109.35712890624993,72.77504882812497],[-109.12192382812499,72.72641601562499],[-109.04301757812499,72.68686523437503],[-108.98740234374993,72.67080078125005],[-108.96816406250001,72.65410156250002],[-108.98540039062497,72.63681640625003],[-108.99443359374995,72.59599609374997],[-108.95078124999993,72.58286132812498],[-108.79785156249994,72.56752929687497],[-108.75498046875002,72.55107421874999],[-108.69829101562502,72.499267578125],[-108.62773437500002,72.41201171875],[-108.56635742187495,72.31733398437498],[-108.46958007812496,72.13876953125],[-108.27641601562495,71.90039062500003],[-108.210400390625,71.751171875],[-108.18823242187501,71.72377929687501],[-108.14467773437502,71.704931640625],[-108.02080078125,71.677490234375],[-107.92534179687502,71.638671875],[-107.812841796875,71.62617187500004],[-107.78544921875003,71.62968750000005],[-107.75747070312501,71.66303710937498],[-107.687255859375,71.71611328125003],[-107.34692382812494,71.81923828125002],[-107.329296875,71.83525390624999],[-107.36943359375,71.85898437500003],[-107.38178710937494,71.87514648437502],[-107.37685546875001,71.88608398437503],[-107.30600585937495,71.89467773437502],[-107.54262695312492,72.02534179687498],[-107.69584960937497,72.14931640625002],[-107.79404296875,72.30263671875],[-107.80903320312493,72.34746093750007],[-107.82373046875001,72.44277343750002],[-107.85561523437502,72.46782226562499],[-107.90981445312497,72.49077148437505],[-107.93251953124995,72.52041015625005],[-107.92368164062495,72.55664062500006],[-107.934375,72.587744140625],[-107.99716796874999,72.65268554687498],[-108.23823242187498,73.10581054687503],[-108.23740234374999,73.14990234375003],[-108.20415039062497,73.18305664062495],[-108.11831054687498,73.20205078124998],[-107.97993164062494,73.20673828124998],[-107.93618164062501,73.21713867187506],[-107.98706054687497,73.23310546875],[-108.07749023437502,73.281396484375],[-108.08940429687496,73.30371093750001],[-108.029052734375,73.34873046875003],[-107.72001953125,73.32905273437504],[-107.4962890625,73.28837890624999],[-107.1134765625,73.19213867187503],[-107.07441406249994,73.19741210937502],[-107.03251953125002,73.24531250000001],[-106.95078124999998,73.27602539062497],[-106.828369140625,73.26591796875005],[-106.48212890624998,73.19619140624995],[-106.081640625,73.07192382812505],[-105.81269531250003,73.01064453125],[-105.62416992187498,72.92749023437503],[-105.49594726562498,72.848974609375],[-105.41513671874995,72.788330078125],[-105.41166992187495,72.76464843749997],[-105.43007812499997,72.740380859375],[-105.41108398437501,72.70874023437503],[-105.35454101562503,72.66972656249999],[-105.32319335937495,72.63481445312499],[-105.29755859374997,72.56044921875002],[-105.24692382812495,72.46357421875],[-105.23408203125001,72.41508789062499],[-104.87832031250001,71.97998046875],[-104.81030273437499,71.90317382812496],[-104.76699218749997,71.867578125],[-104.51831054687503,71.69921875],[-104.38593749999995,71.57695312500005],[-104.37314453124993,71.49511718749996],[-104.35537109374995,71.4716796875],[-104.34956054687501,71.43398437500005],[-104.35581054687496,71.38208007812503],[-104.38486328125002,71.33754882812502],[-104.43681640625003,71.30029296874997],[-104.48706054687496,71.24790039062506],[-104.56308593749999,71.13242187499998],[-104.56958007812499,71.10405273437507],[-104.51479492187502,71.06425781250005],[-104.166845703125,70.92719726562501],[-103.95346679687496,70.76264648437495],[-103.85346679687501,70.73378906250002],[-103.58457031249993,70.63085937500001],[-103.29467773437496,70.57246093750003],[-103.19716796874998,70.54731445312498],[-103.10498046874994,70.51025390624997],[-103.07719726562497,70.50883789062505],[-103.02119140625001,70.51582031249995],[-103.00517578124996,70.52592773437503],[-103.00122070312494,70.54096679687501],[-103.08281249999995,70.61909179687504],[-103.08857421874998,70.64970703125005],[-103.04956054687503,70.65507812499999],[-102.75048828125003,70.521875],[-102.58916015624993,70.46884765624998],[-102.36875,70.41323242187502],[-101.98984374999996,70.28505859375002],[-101.93720703124997,70.274560546875],[-101.73222656249997,70.286376953125],[-101.67631835937493,70.27827148437495],[-101.64116210937496,70.26557617187495],[-101.62680664062499,70.24833984374999],[-101.61845703124997,70.17241210937507],[-101.56240234375,70.135009765625],[-101.23916015624997,70.15097656250006],[-101.14853515624998,70.147607421875],[-101.09077148437503,70.13569335937495],[-101.04267578125,70.11079101562504],[-100.97333984374998,70.02949218749997],[-100.90908203124997,69.86918945312502],[-100.90571289062498,69.81171875000004],[-100.93510742187493,69.71533203125003],[-100.98237304687497,69.67988281250001],[-101.04370117187503,69.66870117187503],[-101.21621093750001,69.67963867187495],[-101.33725585937498,69.71025390625005],[-101.40009765624998,69.749267578125],[-101.45673828124998,69.83388671875002],[-101.483837890625,69.85019531250006],[-101.50839843750002,69.83315429687497],[-101.56508789062502,69.75566406249999],[-101.60249023437501,69.7212890625],[-101.64765624999997,69.69853515625007],[-101.73359374999997,69.70415039062505],[-101.86025390624994,69.73808593750003],[-102.09794921874996,69.824609375],[-102.18212890624997,69.845947265625],[-102.23432617187493,69.84223632812504],[-102.34809570312503,69.81298828125003],[-102.52348632812496,69.75820312499997],[-102.59589843749997,69.71791992187502],[-102.56523437499995,69.6921875],[-102.54492187499999,69.659814453125],[-102.53486328124997,69.62080078124995],[-102.54091796874997,69.59208984375005],[-102.56313476562497,69.573583984375],[-102.62109374999996,69.55151367187506],[-102.74360351562495,69.54775390625],[-102.91977539062496,69.56464843749998],[-103.05917968749995,69.59467773437495],[-103.30322265625001,69.67431640625003],[-103.35927734374997,69.68535156250005],[-103.43476562499998,69.66767578125001],[-103.464892578125,69.64448242187498],[-103.41801757812495,69.61142578125],[-103.29404296875,69.56845703125003],[-103.14243164062493,69.49726562500001],[-103.10185546874993,69.48334960937501],[-103.06274414062496,69.48491210937507],[-103.04892578124999,69.47177734375006],[-103.03183593749996,69.43349609375],[-103.03979492187499,69.36757812499997],[-103.1126953125,69.235986328125],[-103.12021484374993,69.20458984374997],[-103.09033203124999,69.21201171874996],[-102.88408203124997,69.34130859375001],[-102.77744140625,69.37758789062495],[-102.54648437499995,69.43447265625],[-102.44677734374997,69.476318359375],[-102.15141601562502,69.48769531250002],[-102.04594726562493,69.46484374999997],[-101.97822265624998,69.42509765625005],[-101.97553710937498,69.40703125000002],[-102.052880859375,69.36044921875003],[-102.06689453125003,69.33710937499998],[-102.07089843749993,69.3076171875],[-102.06401367187496,69.28115234375002],[-102.04609374999997,69.25766601562503],[-101.99296874999997,69.23603515624997],[-101.89912109374995,69.24550781249997],[-101.87285156250002,69.23994140624998],[-101.82250976562497,69.21708984375005],[-101.78925781249995,69.181640625],[-101.78779296875001,69.13227539062498],[-101.85712890625001,69.02397460937505],[-101.98056640624992,68.98852539062503],[-102.35878906249998,68.92285156250004],[-102.48842773437501,68.88891601562497],[-102.73833007812495,68.86499023437497],[-102.83486328124998,68.833251953125],[-102.89506835937499,68.8236328125],[-103.16225585937498,68.82871093750006],[-103.46821289062497,68.80854492187504],[-103.82036132812502,68.84799804687498],[-104.06733398437498,68.865576171875],[-104.35268554687494,68.92817382812498],[-104.46015624999998,68.91240234375005],[-104.571435546875,68.87211914062502],[-105.105859375,68.92041015624999],[-105.16928710937495,68.95537109375002],[-105.14833984374995,68.978125],[-105.02163085937498,69.052490234375],[-105.01357421875002,69.06806640624995],[-105.01958007812499,69.08125],[-105.262353515625,69.093994140625],[-105.53300781249997,69.13354492187497],[-105.80498046874995,69.15317382812498],[-106.0083984375,69.147607421875],[-106.140869140625,69.16201171875002],[-106.27016601562495,69.19458007812497],[-106.34116210937495,69.224365234375],[-106.35395507812498,69.25122070312497],[-106.35571289062499,69.280615234375],[-106.34423828124996,69.33964843750005],[-106.36137695312499,69.38105468749994],[-106.41997070312502,69.41376953124995],[-106.539794921875,69.44306640624998],[-106.65908203124995,69.439599609375],[-106.75996093750001,69.40712890625002],[-106.85581054687499,69.34731445312502],[-107.03344726562494,69.18076171875],[-107.12250976562497,69.15229492187498],[-107.35336914062502,69.03168945312501],[-107.43989257812495,69.00214843749995],[-107.86337890625,68.95434570312497],[-108.36499023437497,68.93476562499998],[-108.55253906249999,68.89741210937501],[-108.73041992187498,68.82744140625007],[-108.9458984375,68.75981445312505],[-109.47211914062501,68.67670898437498],[-109.95854492187497,68.63027343750005],[-110.46762695312496,68.610009765625],[-110.84809570312501,68.57841796875005],[-110.95722656249997,68.59418945312498],[-111.12758789062494,68.58833007812501],[-111.3109375,68.54204101562502],[-111.51806640624999,68.53305664062502],[-112.30493164062499,68.51621093749998],[-112.66621093749997,68.48525390625],[-112.86425781249999,68.47709960937502],[-113.01953125,68.48134765625],[-113.127734375,68.49414062500003],[-113.231396484375,68.53540039062497],[-113.33808593749995,68.59877929687502],[-113.554833984375,68.76757812500003],[-113.61684570312501,68.8384765625],[-113.59252929687503,68.95986328125005],[-113.60854492187501,69.03017578124995],[-113.68066406249996,69.181982421875],[-113.69414062499995,69.19501953124998],[-114.07343749999995,69.251318359375],[-114.32294921874998,69.26914062499996],[-114.69907226562495,69.27275390625002],[-115.15903320312496,69.26474609374998],[-115.61811523437495,69.28295898437504],[-115.86074218750001,69.30356445312498],[-116.10156249999996,69.337158203125],[-116.51347656249993,69.42460937500005],[-116.53681640624998,69.43354492187498],[-116.56879882812503,69.46269531249999],[-116.60947265624995,69.51201171874999],[-116.71201171874996,69.57622070312502],[-116.99277343749998,69.71938476562497],[-117.10400390624999,69.80424804687502],[-117.12197265625001,69.82587890624997],[-117.14863281250001,69.88813476562498],[-117.18403320312493,69.99106445312498],[-117.19541015624993,70.05405273437503],[-117.16274414062497,70.09248046875004],[-117.13544921874998,70.10014648437499],[-116.55380859374999,70.17504882812497],[-115.52910156250002,70.25712890625002],[-114.59233398437496,70.31245117187498],[-114.16699218749999,70.30747070312502],[-113.91660156249996,70.28154296875002],[-113.66552734374999,70.269677734375],[-113.21074218749996,70.26381835937502],[-112.63789062499997,70.225244140625],[-112.52275390624995,70.22856445312503],[-112.26596679687496,70.25468750000003],[-112.18964843749995,70.27558593750004],[-111.78369140625003,70.27290039062501],[-111.70488281249996,70.28574218749998],[-111.63256835937497,70.30883789062497],[-111.72583007812496,70.35205078124997],[-112.11416015624994,70.446875],[-113.1455078125,70.616357421875],[-113.39702148437499,70.65239257812507],[-113.75727539062503,70.69072265625005],[-113.96606445312501,70.69619140625002],[-114.23217773437494,70.67426757812497],[-114.331396484375,70.67524414062501],[-114.59262695312493,70.64223632812502],[-114.84072265624994,70.62138671875005],[-115.31123046874997,70.601171875],[-115.99091796874995,70.58627929687499],[-116.086083984375,70.590673828125],[-116.22587890624996,70.61640625000001],[-116.32729492187502,70.62373046874998],[-116.992529296875,70.603662109375],[-117.58706054687497,70.62954101562502],[-118.2640625,70.888330078125],[-118.37651367187496,70.96772460937501],[-118.35253906249996,71.000048828125],[-118.26909179687493,71.03471679687503],[-117.93383789062503,71.13466796875],[-117.81406249999996,71.15844726562503],[-117.31396484374994,71.21210937499995],[-116.81528320312496,71.27695312500003],[-116.42153320312494,71.33798828125003],[-116.22822265625,71.35917968749999],[-116.04208984375,71.36166992187506],[-115.89165039062499,71.38178710937497],[-115.92226562500002,71.40107421875001],[-116.04531249999995,71.42309570312504],[-116.04394531250001,71.45429687500001],[-115.98027343750002,71.46928710937505],[-115.73374023437498,71.48510742187497],[-115.471875,71.46582031250006],[-115.341015625,71.47241210937497],[-115.30341796874995,71.49370117187505],[-115.33813476562503,71.510888671875],[-115.58666992187494,71.54638671875003],[-116.78027343750003,71.44418945312498],[-117.33710937499995,71.43461914062497],[-117.72333984374995,71.39067382812502],[-117.93564453125002,71.39208984375003],[-118.18818359374995,71.4359375],[-118.221875,71.449072265625],[-118.22646484374995,71.46708984375005],[-118.14833984375001,71.525732421875],[-117.87841796875,71.56083984375005],[-117.742333984375,71.65932617187502],[-117.88759765625001,71.66103515625001],[-118.37153320312503,71.63994140624999],[-118.58300781250003,71.64902343749998],[-118.868408203125,71.68676757812503],[-118.952099609375,71.73173828125005],[-118.98769531249998,71.7642578125],[-118.99375,71.80302734374999],[-118.98417968749996,71.91308593750003],[-118.95981445312495,71.97221679687502],[-118.94462890624997,71.98554687499994],[-118.58984375,72.16748046875],[-118.36865234374997,72.20546875],[-118.21347656249998,72.26289062499998],[-118.20747070312498,72.28691406249999],[-118.24589843750002,72.31103515625003],[-118.39047851562498,72.36953125000002],[-118.44863281250001,72.39921875000005],[-118.48129882812499,72.42768554687498],[-118.45659179687493,72.47250976562506],[-118.37451171875,72.53388671875004],[-118.13310546874993,72.63281250000001],[-117.55170898437498,72.83110351562502],[-117.25644531249995,72.914404296875],[-116.97167968750001,72.95932617187503],[-116.57324218749994,73.05493164062506],[-115.55219726562494,73.2134765625],[-114.63823242187497,73.37265625000003],[-114.30190429687494,73.33071289062502],[-114.20639648437495,73.29780273437495],[-114.16396484375001,73.26982421875005],[-114.12705078124995,73.23071289062497],[-114.095458984375,73.18027343749999],[-114.05170898437497,73.07099609375004],[-114.04614257812499,73.01459960937501],[-114.05375976562502,72.95805664062502],[-114.07475585937495,72.90683593749998],[-114.10917968749995,72.86098632812497],[-114.17768554687495,72.80507812500005],[-114.280322265625,72.73906249999999],[-114.49785156249999,72.62587890625002],[-114.521533203125,72.592919921875]]],[[[-105.28891601562499,72.919921875],[-105.33935546874996,72.91489257812503],[-105.43408203124999,72.93798828125001],[-105.57299804687496,72.98930664062499],[-105.80014648437495,73.09331054687505],[-106.07104492187499,73.19638671875],[-106.11264648437493,73.25810546875005],[-106.18002929687499,73.3041015625],[-106.52573242187498,73.41337890625007],[-106.750390625,73.45771484374995],[-106.92153320312497,73.479833984375],[-106.94965820312501,73.5103515625],[-106.831005859375,73.59907226562498],[-106.69482421874997,73.66992187500003],[-106.61396484375001,73.69560546875002],[-106.36210937499996,73.71860351562498],[-105.5123046875,73.76577148437498],[-105.31796874999995,73.76713867187502],[-105.11445312499995,73.74443359375002],[-104.83466796875,73.64726562500002],[-104.71826171874999,73.63627929687499],[-104.64877929687496,73.614404296875],[-104.5875,73.57807617187494],[-104.55507812499997,73.54111328124998],[-104.55234374999993,73.46557617187503],[-104.58286132812493,73.35390625000002],[-104.62172851562495,73.3111328125],[-104.79101562499999,73.167626953125],[-104.96865234375002,73.08867187499999],[-105.00258789062501,73.03754882812498],[-105.074609375,72.99702148437498],[-105.20063476562494,72.94731445312507],[-105.28891601562499,72.919921875]]],[[[-79.53730468749998,73.65449218749998],[-79.36679687499998,73.64135742187497],[-78.2865234375,73.66582031250007],[-78.062939453125,73.64765625000001],[-77.38212890624993,73.53666992187505],[-77.20654296874996,73.49956054687505],[-77.11977539062497,73.45048828124999],[-77.04150390625,73.37304687500003],[-77.00532226562501,73.35605468750003],[-76.75869140624994,73.31000976562495],[-76.65727539062499,73.25419921875005],[-76.62158203125,73.22534179687503],[-76.569775390625,73.15927734374998],[-76.45844726562498,73.121826171875],[-76.33115234374998,73.10048828125],[-76.28955078125003,73.08100585937504],[-76.30957031250003,72.99790039062498],[-76.25527343749997,72.959228515625],[-76.13505859374999,72.91240234375005],[-76.08999023437497,72.881201171875],[-76.18339843749999,72.84306640625005],[-76.40053710937498,72.820654296875],[-77.01357421874998,72.84399414062497],[-77.83593750000003,72.89682617187496],[-78.31420898437503,72.88183593750006],[-78.55405273437495,72.85771484375002],[-79.13417968750001,72.77163085937497],[-79.31933593749999,72.75771484375],[-79.50053710937496,72.75595703124998],[-79.820703125,72.82631835937502],[-79.93686523437502,72.86362304687498],[-79.97529296874995,72.89248046875],[-80.05161132812495,72.97700195312498],[-80.11445312499998,73.07822265625],[-80.14643554687501,73.16132812499995],[-80.18330078124995,73.22465820312499],[-80.29272460937497,73.24560546875],[-80.61791992187494,73.27080078125006],[-80.72685546874992,73.30546875000002],[-80.77641601562502,73.33417968750001],[-80.82416992187495,73.38066406250007],[-80.82294921874998,73.42895507812503],[-80.79799804687497,73.471533203125],[-80.77695312500003,73.48198242187502],[-80.73583984375,73.48310546874997],[-80.827001953125,73.53466796874999],[-80.85849609375002,73.59140625],[-80.86074218749997,73.67055664062497],[-80.84887695312503,73.72124023437499],[-80.82285156249993,73.74345703124999],[-80.76274414062496,73.75776367187498],[-80.62138671874995,73.76733398437497],[-80.41230468749998,73.76542968750002],[-80.120263671875,73.70708007812505],[-79.88935546874995,73.70151367187506],[-79.53730468749998,73.65449218749998]]],[[[-86.58935546874996,71.01079101562507],[-86.54965820312493,70.98876953125003],[-86.32128906249997,71.01679687499995],[-86.12714843749995,71.04897460937502],[-85.82456054687503,71.12573242187503],[-85.64384765624999,71.15244140624998],[-85.09487304687497,71.15195312500006],[-85.00156249999993,71.13745117187503],[-85.0427734375,71.0916015625],[-85.06577148437498,71.07861328125003],[-85.04765624999993,71.05869140625006],[-84.98847656249995,71.03173828124997],[-84.87031249999995,71.001806640625],[-84.82373046874997,71.02861328125005],[-84.78959960937493,71.09326171875],[-84.70859374999995,71.35869140625007],[-84.67431640625,71.43876953125005],[-84.65810546874997,71.51459960937503],[-84.65996093749997,71.58613281249995],[-84.69941406249995,71.63144531250003],[-84.84013671874993,71.65864257812498],[-85.0322265625,71.65405273437501],[-85.130908203125,71.66123046874998],[-85.25048828124994,71.67529296875],[-85.33906249999998,71.69726562500003],[-85.39667968749998,71.72705078124997],[-85.51152343749993,71.816552734375],[-85.59619140624994,71.86640625000004],[-85.81333007812493,71.9564453125],[-85.91162109374999,71.98652343749998],[-85.86210937499996,72.02197265625003],[-85.66479492187496,72.06279296874999],[-85.54580078124998,72.10156249999997],[-85.405908203125,72.21484375000006],[-85.321875,72.23315429687506],[-85.01875,72.21816406250002],[-84.60849609375,72.12949218749998],[-84.35166015624998,72.05263671875005],[-84.28374023437497,72.04448242187499],[-84.28232421874998,72.05844726562498],[-84.34746093750002,72.09443359375004],[-84.64296875,72.18955078125006],[-84.77753906249998,72.25878906250003],[-84.84199218749995,72.30815429687505],[-84.81103515624994,72.32954101562497],[-84.644677734375,72.35141601562498],[-84.62304687500003,72.37656250000003],[-84.84941406249995,72.40625],[-84.96416015624999,72.405615234375],[-85.05683593749993,72.384375],[-85.15639648437497,72.38291015625],[-85.34111328124992,72.42153320312497],[-85.39130859374994,72.44399414062502],[-85.49775390624998,72.510595703125],[-85.5537109375,72.568603515625],[-85.615576171875,72.60463867187497],[-85.63789062500001,72.63320312500002],[-85.64990234374997,72.72216796875003],[-85.64453125000003,72.77446289062502],[-85.61943359374999,72.81918945312498],[-85.574609375,72.85639648437501],[-85.45478515625001,72.92514648437498],[-85.38759765625,72.94501953124995],[-85.26210937500002,72.95400390624998],[-84.98955078124999,72.91987304687498],[-84.25664062499999,72.79672851562503],[-84.27426757812503,72.83642578125003],[-85.09404296874996,73.00263671874995],[-85.38388671874995,73.04541015624996],[-85.454736328125,73.10546875000003],[-85.018408203125,73.33549804687502],[-84.61606445312503,73.38955078125],[-84.41606445312495,73.45649414062495],[-84.08896484375003,73.459375],[-83.781884765625,73.41689453124998],[-83.77651367187497,73.42846679687503],[-83.91499023437493,73.50839843749998],[-83.904052734375,73.52832031250003],[-83.72983398437495,73.57587890624995],[-83.41035156249998,73.63168945312503],[-83.02045898437495,73.67602539062503],[-82.943212890625,73.69912109375002],[-82.84331054687497,73.71542968750005],[-82.65961914062498,73.72958984375],[-82.20278320312498,73.736474609375],[-81.946142578125,73.72983398437506],[-81.60537109374997,73.69599609375001],[-81.40615234374997,73.634521484375],[-81.344091796875,73.59775390625005],[-81.23833007812496,73.47954101562505],[-81.1517578125,73.31401367187497],[-81.02514648437496,73.24521484375],[-80.821728515625,73.20717773437497],[-80.68115234374997,73.16582031249999],[-80.60346679687495,73.12119140625002],[-80.582763671875,73.06494140625004],[-80.61914062500003,72.99716796875],[-80.59189453124998,72.92768554687498],[-80.50092773437501,72.85659179687495],[-80.43081054687494,72.816259765625],[-80.27724609375,72.77016601562501],[-80.27470703124993,72.74555664062498],[-80.32265625000002,72.71748046874995],[-80.42431640624994,72.67890625000001],[-80.67509765624996,72.55864257812502],[-80.99873046875001,72.42622070312495],[-81.229345703125,72.31171874999998],[-81.24057617187498,72.27792968750003],[-80.76079101562502,72.45717773437505],[-80.61147460937495,72.45083007812498],[-80.6046875,72.42578125000003],[-80.70244140624993,72.33828124999997],[-80.82148437499994,72.26025390624997],[-80.94121093750002,72.21015624999998],[-80.9193359375,72.19125976562503],[-80.69140625,72.10346679687501],[-80.733251953125,72.089013671875],[-80.84326171874993,72.09619140625003],[-80.88837890624998,72.08828125000002],[-80.92109374999998,72.07231445312505],[-80.94140624999994,72.04824218750005],[-80.94267578124995,72.01435546874998],[-80.925048828125,71.97070312500006],[-80.92680664062499,71.93808593749998],[-80.94790039062494,71.91655273437505],[-80.925146484375,71.90766601562501],[-80.858447265625,71.91142578125005],[-80.80224609375003,71.92919921875003],[-80.70541992187499,71.98813476562506],[-80.38613281249998,72.148779296875],[-80.18193359374996,72.20878906250007],[-80.11611328124995,72.21406249999998],[-79.92832031249998,72.174951171875],[-79.884375,72.17719726562501],[-80.09091796874998,72.30087890625],[-80.10893554687499,72.33217773437497],[-80.06699218749998,72.37832031249997],[-80.04179687499999,72.39423828125001],[-79.92670898437501,72.42817382812497],[-79.83129882812503,72.44628906250003],[-79.77788085937495,72.438720703125],[-79.69331054687498,72.37592773437501],[-79.65385742187502,72.33217773437497],[-79.58369140624993,72.31464843749995],[-79.42744140624998,72.33730468750005],[-79.32333984375,72.39082031250001],[-79.19438476562493,72.35571289062497],[-79.000244140625,72.27202148437507],[-79.01796874999997,72.18823242187506],[-79.0177734375,72.104345703125],[-79.00781250000003,72.042919921875],[-78.77592773437496,71.93037109375001],[-78.61445312500001,71.881005859375],[-78.58510742187497,71.880615234375],[-78.58886718750003,71.89750976562507],[-78.62255859374997,71.93496093749997],[-78.71113281249997,71.97241210937506],[-78.79082031249996,72.03027343750003],[-78.86274414062495,72.100830078125],[-78.82011718749999,72.26542968750005],[-78.69926757812496,72.35141601562498],[-78.58247070312498,72.32934570312503],[-78.42880859375,72.27978515625006],[-78.30747070312498,72.275146484375],[-78.11635742187497,72.28032226562507],[-77.72602539062493,72.17998046875005],[-77.51650390624997,72.17778320312505],[-77.53574218749998,72.21875],[-77.694482421875,72.23842773437497],[-77.92617187500002,72.29384765625],[-78.28720703125002,72.35981445312501],[-78.45307617187498,72.435205078125],[-78.48427734374994,72.47060546875002],[-78.47949218749994,72.50874023437498],[-78.458837890625,72.54233398437496],[-78.42241210937496,72.57153320312497],[-78.350244140625,72.60019531250003],[-78.00102539062499,72.68759765625],[-77.75322265624996,72.72475585937502],[-77.56679687499998,72.73686523437497],[-77.25537109374997,72.73588867187507],[-76.89350585937495,72.72065429687497],[-76.69794921875001,72.695068359375],[-76.47324218749998,72.63334960937505],[-76.18876953125002,72.57221679687504],[-76.08730468749992,72.56132812500002],[-75.96875,72.56274414062506],[-75.83320312499995,72.576513671875],[-75.70429687499998,72.57153320312497],[-75.29423828124993,72.48085937499997],[-75.18579101562494,72.434228515625],[-75.12006835937497,72.37773437500002],[-75.07148437499993,72.32285156250003],[-75.03984374999999,72.26958007812502],[-75.05268554687493,72.22636718749999],[-75.39414062500003,72.039794921875],[-75.54277343749993,72.007958984375],[-75.64096679687495,71.93715820312497],[-75.78740234374996,71.803076171875],[-75.91127929687495,71.73129882812503],[-75.92280273437501,71.71723632812501],[-75.89682617187495,71.713720703125],[-75.82207031249999,71.74589843749999],[-75.69335937499997,71.83857421874995],[-75.59990234374993,71.91845703124997],[-75.428369140625,71.984375],[-75.14765625000001,72.06298828125003],[-74.90317382812503,72.10048828125002],[-74.69492187499993,72.096923828125],[-74.51967773437497,72.08564453125001],[-74.37744140625003,72.06655273437505],[-74.29296874999997,72.05058593749999],[-74.26635742187497,72.03769531250003],[-74.20932617187498,71.97866210937498],[-74.21259765624993,71.93867187500001],[-74.24824218750001,71.89365234374998],[-74.31572265624999,71.84267578124998],[-74.62148437500002,71.78627929687497],[-74.78906249999994,71.74199218749999],[-74.89296875,71.72553710937501],[-75.20478515625,71.70913085937497],[-75.19106445312497,71.69160156250004],[-74.95947265624994,71.66748046875],[-74.70078125,71.67558593750005],[-74.707373046875,71.64692382812498],[-74.828955078125,71.57089843750002],[-74.86831054687502,71.50473632812498],[-74.83447265624997,71.45058593749997],[-74.84072265625,71.40659179687506],[-74.93129882812497,71.31406250000003],[-75.03535156249994,71.23051757812507],[-74.99619140624998,71.21811523437503],[-74.75893554687494,71.33813476562497],[-74.69531249999994,71.46943359374998],[-74.59956054687498,71.58486328124997],[-74.48808593750002,71.64838867187501],[-74.40410156249996,71.67250976562497],[-74.13906249999995,71.68222656249998],[-73.99208984374994,71.74960937500003],[-73.86660156249997,71.77104492187505],[-73.8140625,71.77143554687495],[-73.70722656250001,71.746337890625],[-73.71357421874995,71.71987304687502],[-73.86860351562493,71.59936523437497],[-74.197265625,71.404150390625],[-74.06333007812498,71.42646484375001],[-73.97250976562495,71.47285156249995],[-73.85087890624996,71.51914062499996],[-73.71284179687497,71.58759765624998],[-73.62167968749998,71.52553710937505],[-73.48159179687495,71.47924804687501],[-73.39780273437503,71.37343749999997],[-73.26240234374998,71.32246093749998],[-73.18061523437501,71.282861328125],[-73.1921875,71.34985351562506],[-73.31044921875,71.48427734375],[-73.27822265625,71.53798828125],[-73.18681640624992,71.56489257812498],[-72.901953125,71.67778320312507],[-72.70302734374997,71.64013671875003],[-72.58061523437499,71.60678710937498],[-72.51928710937503,71.615625],[-72.36459960937503,71.61098632812505],[-72.11650390624993,71.59277343749997],[-71.87519531249998,71.56123046875004],[-71.64067382812499,71.51625976562502],[-71.45991210937493,71.46372070312498],[-71.33295898437501,71.40346679687505],[-71.25605468749995,71.36181640625],[-71.22939453124997,71.33876953125],[-71.1865234375,71.27871093750002],[-71.21938476562497,71.23881835937499],[-71.39658203125,71.146875],[-71.49501953124997,71.10512695312502],[-71.59306640624995,71.08637695312501],[-71.85615234375,71.10478515625005],[-71.93793945312498,71.09428710937502],[-72.02387695312498,71.06533203125],[-72.297705078125,70.93881835937498],[-72.44912109375002,70.88408203125002],[-72.598046875,70.84921875],[-72.63271484374994,70.83076171874998],[-72.31254882812499,70.83251953125],[-72.22392578124996,70.87016601562502],[-72.15,70.940673828125],[-72.00917968750001,71.01342773437497],[-71.74252929687495,71.046875],[-71.370849609375,70.97514648437499],[-71.18623046874995,70.97802734374997],[-71.04536132812495,71.05],[-70.88803710937495,71.09902343750002],[-70.82607421874994,71.10874023437503],[-70.79248046875003,71.10332031249999],[-70.67265625,71.05219726562498],[-70.63647460937494,71.006591796875],[-70.63911132812495,70.90244140625003],[-70.65522460937495,70.87089843749997],[-70.76171874999997,70.79223632812501],[-71.02177734374993,70.67412109375005],[-71.19179687500002,70.62978515625],[-71.38046875,70.60595703125003],[-71.58593750000003,70.56586914062501],[-71.65844726562497,70.533544921875],[-71.72939453124994,70.4876953125],[-71.80014648437498,70.45703125000006],[-71.89018554687502,70.43154296875002],[-71.77236328125,70.39418945312504],[-71.72724609374995,70.39521484374997],[-71.68369140624995,70.417578125],[-71.56499023437493,70.50566406250002],[-71.47666015624998,70.54404296874999],[-71.42666015625,70.55209960937505],[-71.37509765624998,70.54843750000002],[-71.32485351562494,70.53115234374995],[-71.27587890625,70.50029296874999],[-71.27958984374996,70.42519531249997],[-71.42944335937503,70.12778320312503],[-71.40512695312495,70.12866210937503],[-71.31308593749995,70.20932617187503],[-71.045263671875,70.51904296874997],[-70.97978515624999,70.5810546875],[-70.85053710937495,70.64360351562503],[-70.56093750000002,70.73828124999997],[-70.337255859375,70.78784179687503],[-70.084716796875,70.82954101562501],[-69.94980468750003,70.84501953125005],[-69.79570312499999,70.83457031250006],[-69.69550781250001,70.785888671875],[-69.56010742187496,70.77714843749997],[-69.39536132812498,70.78925781249995],[-69.28906249999997,70.78344726562503],[-69.16870117187497,70.76416015625],[-69.06572265624996,70.72807617187502],[-68.89072265625,70.68710937500003],[-68.49575195312502,70.61025390625],[-68.44667968749995,70.59409179687499],[-68.40083007812494,70.56499023437502],[-68.35825195312498,70.52290039062498],[-68.363525390625,70.48125],[-68.41665039062497,70.43999023437503],[-68.482568359375,70.41484374999999],[-68.56132812499996,70.40566406249995],[-68.64282226562494,70.38320312500002],[-68.79365234374995,70.32441406250003],[-68.84291992187497,70.31445312500006],[-69.079443359375,70.28916015625003],[-69.29873046875,70.27680664062501],[-69.43569335937501,70.253125],[-69.698974609375,70.18930664062503],[-70.06142578124994,70.07084960937507],[-70.05771484375,70.042626953125],[-69.91308593750003,70.029052734375],[-69.79584960937493,70.04692382812499],[-69.63457031249992,70.12875976562506],[-69.48300781249998,70.16005859375001],[-69.24619140624995,70.18510742187499],[-68.9185546875,70.20698242187501],[-68.77822265625,70.20356445312501],[-68.7529296875,70.19916992187501],[-68.734619140625,70.17983398437497],[-68.723291015625,70.14565429687502],[-68.776953125,70.10102539062501],[-68.83911132812497,70.07993164062506],[-69.00830078124997,69.978955078125],[-68.89702148437496,69.95273437499998],[-68.74404296874995,69.94140625],[-68.65673828124994,69.96845703124998],[-68.57783203124995,70.03046875000001],[-68.48935546874995,70.06484375],[-68.39125976562497,70.07163085937506],[-68.305078125,70.08740234374997],[-68.23066406250001,70.11220703124997],[-68.21044921874997,70.12841796874997],[-68.31860351562497,70.16059570312495],[-68.32719726562496,70.18017578125006],[-68.28310546874994,70.22827148437499],[-68.203515625,70.281494140625],[-68.12065429687499,70.314599609375],[-68.05908203124997,70.317236328125],[-67.855322265625,70.28178710937505],[-67.71601562499995,70.21982421875003],[-67.36367187499994,70.03442382812503],[-67.31840820312496,69.99843749999997],[-67.19589843749998,69.86069335937498],[-67.17265624999993,69.79946289062502],[-67.19277343749994,69.75683593750006],[-67.22163085937495,69.73071289062506],[-67.25927734375,69.7212890625],[-67.33671875,69.72099609375002],[-67.80620117187496,69.77739257812505],[-68.02041015625,69.77006835937499],[-68.11396484374995,69.75429687499997],[-68.18945312499997,69.73061523437502],[-68.24809570312502,69.70078125],[-68.28979492187497,69.66469726562501],[-68.37207031249994,69.64438476562506],[-68.66992187499997,69.64365234374998],[-68.83710937500001,69.62353515624996],[-69.12451171874994,69.57451171875002],[-69.227685546875,69.54741210937502],[-69.25078124999999,69.51191406249998],[-69.07490234374995,69.51811523437499],[-68.78525390625,69.56420898437497],[-68.51303710937496,69.57729492187497],[-68.05815429687496,69.47587890625002],[-67.90825195312495,69.460107421875],[-67.82485351562502,69.47470703125003],[-67.72451171875002,69.47924804687497],[-67.3609375,69.47250976562503],[-67.23696289062498,69.460107421875],[-67.05268554687501,69.42119140625005],[-66.77084960937498,69.33666992187497],[-66.71674804687495,69.31186523437498],[-66.68525390624993,69.2857421875],[-66.67626953124997,69.25844726562502],[-66.67929687499998,69.19106445312497],[-66.70742187500002,69.16821289062503],[-66.80288085937502,69.152734375],[-67.20800781249994,69.170654296875],[-67.331640625,69.18471679687502],[-67.4837890625,69.16699218750006],[-67.60722656250002,69.17319335937498],[-67.7650390625,69.20024414062499],[-67.9384765625,69.24814453124998],[-68.19819335937495,69.20268554687505],[-68.40629882812499,69.23222656250002],[-68.61889648437497,69.20600585937501],[-69.040625,69.09799804687503],[-68.99345703124999,69.07934570312504],[-68.41552734375,69.1720703125],[-68.30395507812503,69.16640625000002],[-68.12128906249993,69.13261718750007],[-67.8326171875,69.06596679687499],[-67.75170898437494,69.038671875],[-67.75102539062499,68.93383789062497],[-67.7951171875,68.86333007812499],[-67.88320312500002,68.78398437499999],[-68.015625,68.79467773437506],[-68.32421874999997,68.84404296875006],[-68.45039062500001,68.85083007812501],[-68.54277343749999,68.8427734375],[-68.66669921874993,68.81132812500007],[-68.72529296874998,68.81020507812502],[-69.21884765624998,68.87280273437497],[-69.32978515624993,68.87578125000005],[-69.34267578125,68.869384765625],[-69.31909179687496,68.85698242187505],[-68.87143554687498,68.75996093749998],[-68.540625,68.74936523437506],[-68.33320312499993,68.732568359375],[-68.21040039062495,68.702978515625],[-68.152490234375,68.6810546875],[-68.14833984375002,68.61611328125],[-68.037939453125,68.55073242187501],[-67.9384765625,68.524169921875],[-67.87504882812496,68.52294921875003],[-67.76601562499994,68.54702148437505],[-67.65595703124998,68.55073242187501],[-67.56694335937496,68.53398437500005],[-67.45551757812501,68.49790039062498],[-67.320703125,68.48779296874997],[-67.20249023437498,68.46586914062502],[-67.11118164062503,68.46147460937502],[-66.85419921874997,68.47163085937495],[-66.74272460937502,68.45776367187497],[-66.71391601562502,68.445703125],[-66.76240234374993,68.42465820312498],[-66.99726562500001,68.374169921875],[-67.032958984375,68.32607421874997],[-66.90039062499997,68.263525390625],[-66.83095703124997,68.215625],[-66.83432617187503,68.17988281250004],[-66.90512695312498,68.09848632812506],[-66.923095703125,68.06572265625005],[-66.89980468749994,68.06308593750003],[-66.72900390624997,68.12900390625006],[-66.70234374999995,68.12055664062501],[-66.68457031249997,68.02924804687498],[-66.66269531249995,68.03442382812497],[-66.60546875000003,68.11000976562498],[-66.63095703124998,68.21064453124998],[-66.53076171875,68.25034179687499],[-66.21240234374997,68.280419921875],[-66.26630859374995,68.12270507812502],[-66.27470703124996,68.04077148437503],[-66.41386718749997,67.90429687500003],[-66.52998046875001,67.86030273437504],[-66.52646484375,67.85117187500003],[-66.44394531249998,67.83383789062506],[-66.39238281249996,67.83193359375002],[-66.34296874999991,67.85327148437503],[-66.2251953125,67.958740234375],[-65.98583984375,68.0685546875],[-65.94238281250003,68.07094726562505],[-65.943994140625,68.03120117187504],[-65.97490234374999,67.957421875],[-65.86435546875003,67.92285156249997],[-65.75893554687497,67.95708007812502],[-65.70170898437493,67.986669921875],[-65.56933593749997,67.98232421875002],[-65.50908203124996,67.96826171875],[-65.49111328125002,67.93569335937502],[-65.552001953125,67.79936523437505],[-65.54086914062503,67.765625],[-65.40126953125002,67.67485351562499],[-65.38710937499997,67.68027343750003],[-65.41347656250002,67.72407226562498],[-65.442236328125,67.83232421875002],[-65.41533203124996,67.87924804687498],[-65.30034179687496,67.93950195312499],[-65.06440429687495,68.02622070312498],[-64.97690429687496,68.04340820312504],[-64.92231445312495,68.03164062500002],[-64.83544921875003,67.98999023437497],[-64.86254882812493,67.96513671875007],[-64.95639648437498,67.939111328125],[-65.02602539062492,67.89204101562501],[-65.07143554687497,67.82382812500006],[-65.02109375,67.78754882812495],[-64.82988281249996,67.78427734375],[-64.63779296875,67.84023437500002],[-64.5275390625,67.81269531250001],[-64.39643554687493,67.73994140625001],[-64.15625,67.62299804687501],[-64.01943359374997,67.65488281249999],[-63.850195312500034,67.56606445312502],[-64.07749023437498,67.49560546874997],[-64.00795898437502,67.34731445312497],[-64.30327148437496,67.35346679687498],[-64.46928710937496,67.34184570312502],[-64.58046874999994,67.35517578124998],[-64.69995117187494,67.35053710937501],[-64.58925781249997,67.31552734374998],[-64.37592773437493,67.30107421875005],[-64.35644531249997,67.25615234375005],[-64.18896484374994,67.25727539062501],[-64.063232421875,67.26591796874999],[-63.83623046874993,67.26411132812498],[-63.82412109374996,67.315673828125],[-63.67646484374998,67.34511718749997],[-63.59160156250002,67.3775390625],[-63.52109374999994,67.35834960937498],[-63.315820312499966,67.33632812500005],[-63.04013671875003,67.235009765625],[-63.16162109375,67.17436523437499],[-63.19467773437498,67.11704101562503],[-63.23554687499995,67.06850585937502],[-63.2583984375,67.02465820312506],[-63.306787109374994,66.99448242187503],[-63.70156249999994,66.82236328125003],[-63.63623046874997,66.82080078125],[-63.469189453124955,66.86240234375003],[-63.143701171874994,66.92431640625003],[-62.96230468749996,66.94926757812505],[-62.833349609375006,66.93271484375006],[-62.76816406249995,66.931982421875],[-62.71044921875,66.95410156249997],[-62.602880859375034,66.92861328125002],[-62.37973632812495,66.90537109375],[-62.12358398437499,67.04672851562499],[-61.968554687499925,67.01904296874996],[-61.824121093749994,66.93173828125003],[-61.514697265624925,66.778466796875],[-61.35341796874993,66.689208984375],[-61.299707031250016,66.64873046875002],[-61.307226562500034,66.60883789062498],[-61.453076171874976,66.56660156249998],[-61.52783203124994,66.55810546875003],[-61.724121093749964,66.63779296875],[-61.90449218749995,66.678125],[-62.014257812500006,66.67377929687498],[-62.12333984374993,66.64306640625001],[-62.089306640624926,66.62592773437497],[-61.65263671874996,66.503125],[-61.57641601562499,66.4125],[-61.57080078124999,66.37290039062506],[-61.862695312499966,66.31284179687498],[-61.95634765624993,66.30932617187497],[-62.15844726562499,66.33798828125002],[-62.27690429687496,66.39150390625001],[-62.374511718749936,66.41083984374994],[-62.50981445312499,66.41718750000001],[-62.553125,66.40683593750003],[-62.40566406249999,66.31591796874999],[-62.41982421874994,66.28857421875],[-62.49599609375003,66.27089843749997],[-62.5335937499999,66.22700195312498],[-62.24208984374996,66.14794921875006],[-62.02392578125002,66.06752929687502],[-61.991601562500016,66.03530273437502],[-62.138671874999964,66.01137695312502],[-62.244335937499976,66.00585937499997],[-62.46777343749994,66.01748046875002],[-62.590332031249964,66.03442382812503],[-62.62412109375001,66.01625976562505],[-62.49736328124993,65.97402343749997],[-62.448388671874994,65.94550781250001],[-62.410302734374966,65.90576171875],[-62.38818359374999,65.86831054687502],[-62.381982421874966,65.83330078124999],[-62.48564453124996,65.80449218750007],[-62.610253906250016,65.72363281250003],[-62.65888671874998,65.63994140625002],[-62.77172851562497,65.631982421875],[-62.81728515625002,65.647705078125],[-62.96889648437499,65.62236328124999],[-63.16894531249997,65.65732421875],[-63.240673828124926,65.695556640625],[-63.45874023437494,65.85302734375],[-63.46435546875002,65.83535156249997],[-63.409765625,65.755810546875],[-63.42089843749997,65.70859374999998],[-63.65195312499998,65.67431640625003],[-63.651074218749955,65.66098632812505],[-63.509228515624926,65.63603515625005],[-63.33745117187493,65.61674804687502],[-63.36425781249997,65.54321289062503],[-63.36337890624997,65.22973632812503],[-63.40180664062498,65.11845703125002],[-63.485839843749964,65.02124023437503],[-63.606591796874966,64.92807617187503],[-63.737158203125006,64.98911132812503],[-63.78935546874999,65.05136718750003],[-63.83320312499995,65.08330078125005],[-63.89560546874995,65.10927734375002],[-63.97626953124995,65.12148437500002],[-64.06142578125,65.121923828125],[-64.15185546875003,65.06616210937503],[-64.25043945312495,65.11430664062505],[-64.34570312499999,65.17241210937499],[-64.30976562499995,65.324560546875],[-64.26967773437497,65.40078124999997],[-64.28574218750003,65.40019531250005],[-64.33994140624996,65.36416015624997],[-64.46982421874998,65.25273437500002],[-64.555078125,65.1166015625],[-64.66533203125002,65.1689453125],[-64.76479492187502,65.23408203125004],[-64.84692382812497,65.29956054687506],[-64.979638671875,65.37509765624996],[-65.10849609374998,65.46376953125002],[-65.17568359374997,65.56816406250007],[-65.20698242187495,65.58964843749999],[-65.28203125,65.67666015624997],[-65.31147460937493,65.70151367187506],[-65.33740234374997,65.70976562500005],[-65.401611328125,65.764013671875],[-65.378125,65.8220703125],[-65.276953125,65.89067382812505],[-65.18486328124997,65.93994140625003],[-65.03222656249997,65.988525390625],[-64.85371093749993,66.01591796875007],[-64.77250976562499,66.07856445312495],[-64.67299804687497,66.19272460937503],[-64.56396484374996,66.27216796874995],[-64.44536132812496,66.31713867187497],[-64.50439453125,66.32548828124999],[-64.65517578125,66.28701171874997],[-64.7611328125,66.23090820312498],[-64.88725585937502,66.13740234375004],[-65.0044921875,66.07773437500003],[-65.30537109374993,66.00844726562497],[-65.41557617187499,65.99458007812498],[-65.543701171875,65.98720703125],[-65.82573242187499,65.996923828125],[-65.89106445312495,66.02021484374995],[-65.85717773437499,66.08642578125001],[-65.65634765625003,66.204736328125],[-65.68837890624997,66.21308593750001],[-65.75898437499998,66.17119140624999],[-65.85595703125,66.14223632812505],[-65.9400390625,66.12744140625004],[-66.06372070312497,66.13271484374997],[-66.20859375,66.20639648437505],[-66.27739257812499,66.22910156249998],[-66.419189453125,66.2544921875],[-66.47695312499997,66.27973632812498],[-66.71230468749992,66.46044921875003],[-66.75976562500003,66.50849609374995],[-66.78740234374996,66.55566406249997],[-66.86289062499998,66.59531249999998],[-66.986328125,66.62749023437505],[-67.01479492187502,66.62221679687505],[-66.97041015624995,66.581884765625],[-66.968994140625,66.54716796875],[-67.07685546874995,66.52548828125006],[-67.18964843749993,66.53300781249999],[-67.30732421874993,66.5697265625],[-67.31767578124999,66.52036132812498],[-67.191748046875,66.432763671875],[-67.18974609374996,66.32172851562501],[-67.22539062499993,66.31025390624998],[-67.31123046875001,66.30375976562499],[-67.36884765624993,66.31748046875003],[-67.55976562499993,66.40043945312507],[-67.74077148437496,66.45820312500001],[-67.86845703124993,66.49013671875005],[-67.88339843749995,66.46743164062502],[-67.80058593749996,66.36733398437498],[-67.70449218750002,66.26860351562502],[-67.54721679687495,66.18720703124995],[-67.29672851562496,66.09028320312504],[-67.18320312499995,66.03442382812503],[-67.27265624999998,65.95556640625003],[-67.35043945312499,65.92973632812502],[-67.398779296875,65.92172851562498],[-67.55078124999997,65.92163085937503],[-67.82802734374997,65.96518554687502],[-67.95820312500001,66.013818359375],[-68.14726562499999,66.12983398437501],[-68.45991210937498,66.249267578125],[-68.52778320312495,66.24863281250003],[-68.74892578125,66.200048828125],[-68.71420898437503,66.192236328125],[-68.57167968749994,66.188720703125],[-68.46708984374995,66.17319335937503],[-68.21718750000002,66.078857421875],[-68.19833984375,66.03896484374997],[-68.26069335937501,65.99458007812498],[-68.2568359375,65.93862304687505],[-68.18671874999993,65.87099609375002],[-68.11503906249999,65.82778320312502],[-67.96806640624999,65.79726562500002],[-67.89418945312494,65.79326171874999],[-67.86645507812497,65.773681640625],[-67.95434570312503,65.62309570312507],[-67.96181640624994,65.58193359375002],[-67.936767578125,65.56489257812501],[-67.90605468749996,65.5634765625],[-67.717138671875,65.62534179687498],[-67.6380859375,65.64042968750003],[-67.56962890624999,65.64355468749996],[-67.49013671874997,65.626220703125],[-67.39970703125002,65.58837890625],[-67.34638671874998,65.54936523437505],[-67.330322265625,65.50917968750002],[-67.30341796874993,65.48291015625],[-67.11796874999999,65.44038085937495],[-67.13496093749998,65.4205078125],[-67.32607421875002,65.35664062499994],[-67.3365234375,65.34658203125004],[-67.29833984374997,65.341943359375],[-67.17758789062498,65.30380859375003],[-67.06650390624998,65.24409179687504],[-66.99858398437499,65.17299804687502],[-66.98491210937496,65.138037109375],[-66.98564453124993,65.104833984375],[-66.97036132812502,65.08491210937501],[-66.91152343749994,65.08134765625002],[-66.8875,65.093994140625],[-66.86064453124996,65.09160156250005],[-66.83090820312503,65.07416992187495],[-66.79960937499996,65.01967773437497],[-66.73276367187503,64.86005859374995],[-66.69741210937502,64.81518554687506],[-66.67714843749997,64.813671875],[-66.66669921874998,64.97382812499995],[-66.63549804687503,65.00034179687503],[-66.51777343750001,64.97197265625002],[-66.34521484375003,64.90961914062501],[-66.22373046874998,64.85410156249998],[-66.20971679687497,64.828125],[-66.301513671875,64.77773437499997],[-66.28212890624997,64.75532226562501],[-66.21464843749999,64.72241210937497],[-66.15249023437502,64.73491210937503],[-66.10751953125,64.79121093749995],[-66.03017578124997,64.84658203124997],[-65.93852539062496,64.88574218750003],[-65.76806640624993,64.85356445312505],[-65.62675781249993,64.77075195312497],[-65.60527343750002,64.74233398437505],[-65.51318359375,64.70649414062501],[-65.43193359374996,64.726416015625],[-65.2748046875,64.63154296875004],[-65.34931640625001,64.58852539062497],[-65.51279296875,64.5259765625],[-65.52934570312499,64.50478515624997],[-65.48999023437497,64.50961914062506],[-65.17861328124994,64.50971679687498],[-65.09453124999995,64.4845703125],[-65.074609375,64.43666992187502],[-65.21298828125003,64.30327148437502],[-65.33989257812493,64.31508789062505],[-65.50747070312495,64.31831054687498],[-65.59365234374994,64.31113281250003],[-65.580322265625,64.29384765624997],[-65.34780273437497,64.23232421874997],[-65.28198242187497,64.18164062500001],[-65.1927734375,64.12983398437495],[-65.14960937499997,64.08715820312497],[-65.15063476562503,64.06752929687497],[-65.18730468749993,64.03798828125],[-65.16987304687494,64.02817382812503],[-65.010595703125,64.00883789062499],[-64.91181640624995,64.02617187500006],[-64.78779296875001,64.03276367187497],[-64.67846679687501,64.027978515625],[-64.66972656250002,64.00957031250005],[-64.686181640625,63.9609375],[-64.79814453124999,63.91596679687498],[-64.7681640625,63.905419921874966],[-64.63671874999994,63.918359375000044],[-64.576318359375,63.89736328125002],[-64.49848632812495,63.79033203125007],[-64.4109375,63.70634765625002],[-64.48222656250002,63.68706054687499],[-64.56157226562502,63.6796875],[-64.55029296875003,63.57255859375002],[-64.49863281249998,63.46279296875005],[-64.49809570312496,63.35756835937502],[-64.51435546874998,63.263964843750045],[-64.58691406250003,63.24316406249997],[-64.66464843749995,63.24536132812497],[-64.69560546874996,63.268847656250045],[-64.88627929687499,63.548730468749966],[-64.93330078124997,63.59926757812505],[-64.98969726562501,63.64335937500004],[-65.19184570312498,63.764257812500006],[-65.18393554687498,63.74482421875003],[-65.13383789062499,63.68906250000004],[-65.08940429687499,63.60595703124999],[-65.03134765624998,63.44013671874995],[-65.00478515624997,63.333398437499966],[-65.01669921875,63.29282226562506],[-65.05805664062498,63.28286132812496],[-65.06894531249998,63.26347656250001],[-65.04931640625,63.23461914062499],[-64.89482421874996,63.12563476562502],[-64.82016601562503,63.06000976562496],[-64.76738281250002,62.991796875],[-64.718115234375,62.94580078124997],[-64.67236328125003,62.921972656250006],[-64.68364257812502,62.90239257812502],[-64.75185546874997,62.887158203125004],[-64.86870117187496,62.87988281250003],[-64.92324218749997,62.889160156249964],[-65.13295898437497,62.95234374999995],[-65.16279296875001,62.93261718750003],[-65.04658203124994,62.70146484375002],[-65.0501953125,62.646142578125016],[-65.10849609374998,62.62646484374999],[-65.18032226562492,62.64946289062498],[-65.26582031249995,62.71508789062503],[-65.39653320312493,62.788183593750006],[-65.57241210937497,62.86889648437502],[-65.740380859375,62.931982421875006],[-65.77988281249998,62.930273437500006],[-65.80566406249997,62.91157226562501],[-65.83369140625001,62.908544921875006],[-65.8640625,62.921142578125],[-65.92026367187498,62.96850585937498],[-65.978857421875,63.000683593749955],[-66.22402343749994,63.10717773437497],[-66.24921875000001,63.108251953125034],[-66.22607421875,63.076318359374994],[-66.20107421874997,63.00625],[-66.228662109375,62.99096679687502],[-66.2927734375,62.996679687500034],[-66.41445312500002,63.027197265625034],[-66.49638671875002,63.097265625],[-66.60048828125,63.21889648437499],[-66.65498046874998,63.26474609375],[-66.65981445312498,63.23491210937507],[-66.63085937499997,63.119042968749994],[-66.63642578124993,63.080126953125074],[-66.69746093749991,63.069531249999955],[-66.72324218749995,63.08017578124997],[-66.74853515624994,63.111083984374964],[-66.77324218750002,63.16225585937502],[-66.83144531249997,63.20112304687501],[-66.92329101562493,63.227685546875016],[-66.97470703125003,63.25556640625002],[-67.00014648437497,63.30512695312498],[-67.01791992187503,63.316503906250006],[-67.17978515624996,63.30502929687506],[-67.26093749999998,63.34072265625005],[-67.49501953124997,63.48144531250003],[-67.709228515625,63.63393554687499],[-67.84423828124996,63.71455078124998],[-67.89326171874991,63.733740234375006],[-67.82143554687494,63.63500976562505],[-67.74252929687495,63.48925781250003],[-67.72255859374997,63.422753906249966],[-67.75878906249997,63.419726562500074],[-67.83789062500003,63.44921875000003],[-68.24355468749997,63.637060546875006],[-68.49375,63.72548828125],[-68.63286132812496,63.74111328124999],[-68.85893554687502,63.75185546875006],[-68.91108398437498,63.70322265625],[-68.78925781249995,63.5951171875],[-68.67055664062502,63.51367187500002],[-68.55512695312494,63.45893554687495],[-68.37392578124997,63.35219726562499],[-68.20805664062493,63.214697265625034],[-68.141259765625,63.17231445312501],[-67.91533203124999,63.11367187499997],[-67.79746093749995,63.09809570312498],[-67.67597656249998,63.093554687500045],[-67.66489257812502,63.072656249999966],[-67.72377929687494,63.033691406250036],[-67.73696289062497,63.00957031249998],[-67.46821289062493,62.94824218750003],[-67.36665039062493,62.914160156250006],[-67.26850585937501,62.857568359375016],[-67.21269531250002,62.84350585937499],[-66.97954101562493,62.70083007812496],[-66.92153320312502,62.67807617187503],[-66.71401367187502,62.63178710937504],[-66.64487304687496,62.60205078125],[-66.53051757812493,62.509960937499976],[-66.45874023437497,62.46313476562505],[-66.357275390625,62.351904296875034],[-66.28125,62.30268554687495],[-66.09501953124996,62.24638671875002],[-66.015625,62.230273437500045],[-65.98017578125001,62.20888671875002],[-66.00434570312495,62.158300781250034],[-66.02695312500003,62.13720703124999],[-66.133154296875,62.102392578125006],[-66.11640624999995,62.05390625],[-66.05644531249999,61.967480468749955],[-66.05888671874996,61.913867187500045],[-66.12387695312498,61.89306640625],[-66.25668945312503,61.86826171875],[-66.32373046874999,61.870263671874966],[-66.42451171874993,61.89072265625004],[-66.55131835937502,61.92558593750004],[-66.803125,62.01259765624999],[-67.18105468749997,62.072851562500034],[-67.322021484375,62.10502929687501],[-67.36899414062498,62.13408203125008],[-67.44013671874998,62.15126953125002],[-68.37861328124995,62.235156250000045],[-68.53588867187503,62.25561523437506],[-68.63364257812495,62.28129882812504],[-68.72436523437496,62.31899414062499],[-69.08232421874996,62.405175781249966],[-69.12558593749998,62.42397460937496],[-69.36601562499993,62.571875],[-69.54516601562503,62.74458007812501],[-69.604736328125,62.76772460937502],[-69.79951171874998,62.79047851562504],[-69.96210937499995,62.776171875000045],[-70.07094726562502,62.7572265625],[-70.2361328125,62.76337890625001],[-70.34404296874996,62.79150390624997],[-70.57133789062502,62.86918945312499],[-70.801416015625,62.91049804687506],[-71.00214843749993,62.978271484375],[-71.10576171874999,63.00224609375002],[-71.09619140625,63.019677734374994],[-70.94604492187497,63.12070312499998],[-70.99267578124994,63.11928710937497],[-71.25371093749993,63.042529296875045],[-71.34726562499998,63.066113281249955],[-71.50126953125002,63.12641601562499],[-71.61713867187497,63.18720703125004],[-71.85546874999997,63.35527343749999],[-71.99223632812493,63.41616210937505],[-71.97304687500002,63.429882812500004],[-71.81918945312503,63.435449218749966],[-71.696533203125,63.43022460937507],[-71.61425781250003,63.44409179687505],[-71.45585937499999,63.51225585937499],[-71.38740234374997,63.55502929687501],[-71.380859375,63.58032226562501],[-71.51347656250002,63.58657226562502],[-71.54189453125002,63.598828124999955],[-71.565625,63.626757812500045],[-71.62675781249999,63.66259765624997],[-71.72529296874998,63.70615234374998],[-71.83754882812494,63.72495117187497],[-72.22294921874996,63.708886718749994],[-72.29013671874995,63.72797851562498],[-72.28876953124995,63.75698242187502],[-72.21347656249998,63.83872070312498],[-72.17246093749998,63.87167968750003],[-72.159375,63.88989257812499],[-72.17426757812498,63.893408203125],[-72.22646484374997,63.89135742187506],[-72.45,63.81811523437506],[-72.49843749999992,63.823486328124964],[-72.58613281249995,63.90078125000002],[-72.63930664062497,63.989062500000045],[-72.67807617187503,64.02001953124997],[-72.72958984374993,64.03046874999995],[-72.91318359374998,64.11718750000006],[-73.17431640624997,64.28188476562502],[-73.27031249999997,64.33349609374997],[-73.377099609375,64.37958984375004],[-73.45454101562495,64.39926757812503],[-73.44365234374996,64.423486328125],[-73.27817382812498,64.56025390624998],[-73.27128906250002,64.58251953125],[-73.41308593750003,64.57416992187498],[-73.62695312499999,64.60253906249997],[-73.72841796874997,64.56826171875002],[-73.79277343749993,64.56621093750005],[-73.86787109374995,64.58535156250002],[-73.91035156249998,64.578125],[-73.95039062499998,64.46582031250003],[-73.98110351562502,64.43774414062497],[-74.02558593749993,64.42265625000002],[-74.064794921875,64.42465820312498],[-74.09873046875,64.44370117187503],[-74.097900390625,64.46992187499995],[-74.13046874999998,64.6078125],[-74.205078125,64.628125],[-74.41586914062493,64.63349609374998],[-74.46123046874996,64.64467773437505],[-74.512451171875,64.670166015625],[-74.55625,64.71733398437502],[-74.59257812499999,64.78618164062499],[-74.63427734374993,64.82392578124995],[-74.68139648437497,64.8306640625],[-74.71918945312493,64.82514648437504],[-74.74775390624998,64.80732421874995],[-74.81342773437495,64.796240234375],[-74.91625976562503,64.79199218750003],[-74.91943359374997,64.76552734374997],[-74.82304687499996,64.71689453125],[-74.72983398437498,64.64736328124997],[-74.64003906249997,64.55708007812495],[-74.69472656250002,64.49658203124997],[-74.89394531249998,64.46572265625],[-75.0673828125,64.45668945312502],[-75.21503906249994,64.46938476562502],[-75.32841796874996,64.49042968749995],[-75.48779296875003,64.540771484375],[-75.71503906249995,64.52436523437495],[-75.76669921875,64.39194335937498],[-75.81523437499993,64.38466796875],[-76.0318359375,64.3880859375],[-76.11806640625,64.37631835937498],[-76.40683593750003,64.30317382812501],[-76.49472656249998,64.29296874999997],[-76.5615234375,64.30161132812503],[-76.62651367187502,64.283935546875],[-76.72382812499995,64.24204101562498],[-76.85615234374998,64.23764648437498],[-77.02353515624998,64.270849609375],[-77.165673828125,64.28505859374997],[-77.28251953124999,64.28037109374998],[-77.40288085937499,64.29990234375006],[-77.52675781250001,64.34375],[-77.62778320312498,64.36347656249995],[-77.76049804687503,64.36015624999999],[-77.79116210937497,64.36708984374997],[-77.98486328125,64.46108398437502],[-78.04521484374993,64.49926757812499],[-78.174560546875,64.61772460937505],[-78.19755859374999,64.66464843750003],[-78.20087890624995,64.71474609375002],[-78.18969726562497,64.751806640625],[-78.14462890625003,64.80771484375003],[-78.09560546875,64.93925781250002],[-78.05527343750003,64.98291015625003],[-77.99458007812493,65.02260742187502],[-77.87617187499995,65.07294921874998],[-77.44746093749993,65.16157226562501],[-77.36088867187496,65.19653320312503],[-77.36386718749995,65.21977539062503],[-77.46147460937493,65.32817382812502],[-77.46040039062498,65.35590820312498],[-77.42768554687498,65.37211914062499],[-77.3580078125,65.43544921875002],[-77.32670898437493,65.453125],[-77.251171875,65.46289062500003],[-77.094140625,65.43085937499998],[-76.95859374999998,65.41801757812502],[-76.77890624999998,65.41386718750007],[-76.481689453125,65.36972656250003],[-76.06699218749998,65.28544921875002],[-75.82832031249993,65.22705078125003],[-75.64814453125001,65.14082031249995],[-75.519921875,65.05600585937499],[-75.50156249999998,65.01308593750005],[-75.5609375,64.947021484375],[-75.59086914062496,64.92768554687495],[-75.58911132812497,64.90502929687496],[-75.55576171875,64.87919921875005],[-75.45209960937495,64.84160156250002],[-75.42714843750002,64.85585937499998],[-75.43515624999995,64.90078125],[-75.413671875,64.93852539062505],[-75.36279296874994,64.96904296875005],[-75.35712890624995,65.00874023437495],[-75.39667968749991,65.05756835937495],[-75.44580078125,65.09970703124999],[-75.50468749999999,65.13515625000005],[-75.77294921875003,65.25703125000001],[-75.79868164062503,65.297509765625],[-75.70859374999998,65.31572265625005],[-75.31665039062496,65.2748046875],[-75.16630859374999,65.28393554687497],[-75.10927734375,65.33144531249997],[-75.04775390625,65.36396484375004],[-74.98173828124996,65.38144531250003],[-74.849853515625,65.3890625],[-74.66547851562501,65.366943359375],[-74.57490234374993,65.36367187499997],[-74.49477539062497,65.3716796875],[-74.39072265624996,65.39755859375003],[-74.23686523437499,65.48388671875001],[-74.13847656250002,65.50346679687502],[-73.98959960937498,65.51699218750001],[-73.87792968749997,65.51884765625005],[-73.675390625,65.48432617187504],[-73.55078125000003,65.48525390625005],[-73.56074218750001,65.54291992187498],[-73.64340820312498,65.65322265625],[-73.74609375000003,65.76669921875],[-73.82607421874997,65.80517578125003],[-74.03310546874997,65.87705078125],[-74.27617187500002,66.01274414062505],[-74.40107421874995,66.09697265625005],[-74.433935546875,66.139013671875],[-74.41640624999997,66.16708984375003],[-74.37490234374997,66.20815429687497],[-73.93369140624995,66.35805664062505],[-73.584228515625,66.50693359374999],[-73.43095703124993,66.583154296875],[-73.35737304687495,66.63627929687506],[-73.28081054687499,66.67495117187502],[-73.20112304687501,66.69916992187497],[-73.03325195312502,66.72817382812505],[-72.98535156250003,66.76538085937496],[-72.974853515625,66.82851562499997],[-72.94677734374996,66.883251953125],[-72.78881835937494,67.030615234375],[-72.66772460937496,67.07045898437495],[-72.48515624999999,67.09809570312501],[-72.36494140625,67.13339843749999],[-72.22001953124999,67.25429687500002],[-72.234130859375,67.28442382812503],[-72.30107421874996,67.307275390625],[-72.35288085937495,67.34189453125],[-72.57646484374993,67.65864257812498],[-72.72529296874998,67.81162109375005],[-72.90395507812497,67.94477539062501],[-73.06342773437493,68.10698242187502],[-73.32822265624998,68.26674804687497],[-73.3314453125,68.30898437500005],[-73.28447265624993,68.35698242187503],[-73.30688476562496,68.36782226562505],[-73.58017578124998,68.29775390624997],[-73.64448242187501,68.29453125000003],[-73.74946289062497,68.325],[-73.82050781249998,68.36293945312502],[-73.87934570312498,68.42939453124998],[-73.87333984375002,68.46416015625005],[-73.83442382812498,68.4970703125],[-73.78251953124999,68.57802734374997],[-73.78061523437503,68.61928710937502],[-73.79843750000002,68.65864257812495],[-73.82211914062495,68.68598632812501],[-73.8515625,68.70136718749995],[-73.93515624999998,68.71098632812505],[-74.07299804687499,68.71494140625006],[-74.11796875000002,68.70092773437504],[-73.96606445312497,68.57875976562501],[-73.9892578125,68.54863281250002],[-74.18281249999997,68.53544921874999],[-74.2701171875,68.54121093750001],[-74.35,68.55605468750002],[-74.42241210937496,68.579931640625],[-74.64794921874997,68.70751953124997],[-74.69580078124996,68.75556640624998],[-74.68051757812495,68.79028320312503],[-74.699951171875,68.808349609375],[-74.74599609374997,68.79672851562503],[-74.80834960937497,68.79589843750001],[-74.89296875,68.80815429687505],[-74.91040039062497,68.82314453124998],[-74.75239257812495,68.89208984375],[-74.74326171874995,68.91337890624999],[-74.81611328124995,68.9361328125],[-74.92509765624996,68.94072265625005],[-74.95400390625,68.96108398437502],[-74.91728515624996,68.98286132812501],[-74.76933593749993,69.020654296875],[-74.71669921874997,69.04550781249998],[-74.80546875000002,69.06425781249999],[-74.85488281249997,69.06582031250005],[-74.95444335937496,69.02460937499997],[-75.10424804687494,68.94057617187502],[-75.21328124999997,68.909375],[-75.36274414062495,68.94829101562499],[-75.45698242187495,68.96127929687498],[-75.52265624999993,68.952734375],[-75.62304687499994,68.88774414062499],[-75.84223632812493,68.840185546875],[-76.23471679687495,68.72802734374997],[-76.40341796874995,68.69233398437498],[-76.58505859375,68.69873046875003],[-76.61943359374999,68.72138671874995],[-76.61625976562496,68.75986328124998],[-76.60366210937497,68.79155273437505],[-76.58173828124995,68.81630859375001],[-76.574560546875,68.84667968749997],[-76.58769531250002,68.974462890625],[-76.55722656250002,69.00947265625001],[-76.49516601562499,69.03041992187502],[-76.38090820312499,69.05244140624998],[-76.08920898437498,69.02617187500005],[-75.9537109375,69.03081054687502],[-75.85859374999997,69.06030273437497],[-75.76337890624995,69.10292968749997],[-75.66796874999994,69.158837890625],[-75.64775390625002,69.212548828125],[-75.74907226562496,69.29956054687497],[-75.78715820312499,69.31865234375005],[-76.04648437499998,69.38637695312497],[-76.18979492187495,69.410986328125],[-76.31621093749996,69.42163085937497],[-76.407958984375,69.44111328125004],[-76.46494140624995,69.46943359375],[-76.52036132812498,69.51660156250003],[-76.52495117187502,69.548681640625],[-76.51611328124999,69.59091796875],[-76.46328124999997,69.61997070312506],[-76.23110351562502,69.65346679687501],[-76.23408203125001,69.66210937500003],[-76.42382812500003,69.68681640624999],[-76.51328124999995,69.68393554687503],[-76.59003906249995,69.65625],[-76.68652343749996,69.59125976562498],[-76.74233398437498,69.57290039062497],[-76.91557617187502,69.61118164062502],[-77.01962890624998,69.61684570312502],[-77.08994140625,69.63510742187503],[-77.12880859374992,69.65273437499997],[-77.10507812499996,69.670751953125],[-77.01870117187497,69.6890625],[-76.86860351562495,69.74516601562507],[-76.85859374999995,69.775390625],[-76.96225585937503,69.82485351562504],[-77.01596679687495,69.83613281250004],[-77.23247070312502,69.85458984374998],[-77.49428710937497,69.83623046875005],[-77.591650390625,69.84560546875002],[-77.635302734375,69.90043945312499],[-77.66298828124997,69.96572265624997],[-77.67475585937495,70.04150390625003],[-77.72192382812497,70.17080078125],[-77.77402343750003,70.23852539062503],[-77.84252929687494,70.2470703125],[-78.15678710937493,70.21914062499998],[-78.23144531249994,70.21879882812502],[-78.28281250000003,70.229150390625],[-78.49072265625003,70.31557617187502],[-78.5748046875,70.34619140625001],[-78.621435546875,70.35341796875],[-78.77265624999998,70.44531249999997],[-78.83085937499996,70.46318359375007],[-78.89990234374996,70.50854492187497],[-78.97978515624999,70.58134765625007],[-79.06640624999997,70.60356445312507],[-79.15976562499998,70.57524414062507],[-79.253173828125,70.53471679687507],[-79.34663085937495,70.48188476562495],[-79.39731445312498,70.43725585937503],[-79.40522460937497,70.40073242187503],[-79.34741210937503,70.37231445312503],[-79.01752929687495,70.32519531250003],[-78.93383789062497,70.293701171875],[-78.86284179687499,70.24189453125001],[-78.80981445312499,70.17856445312498],[-78.77485351562498,70.10361328124999],[-78.77783203124997,70.04765625000005],[-78.81879882812498,70.01044921875001],[-78.88964843750001,69.97749023437495],[-79.09287109375003,69.92534179687499],[-79.3033203125,69.89482421874999],[-79.51542968749996,69.88759765625005],[-79.61591796875001,69.89472656249998],[-80.16210937499999,69.99599609375],[-80.26040039062492,69.99677734374998],[-80.38681640625003,70.01044921875001],[-80.67031249999997,70.05209960937498],[-80.82578125000003,70.05664062500003],[-81.09829101562492,70.09116210937503],[-81.55957031249994,70.11123046875002],[-81.65195312500003,70.09462890625002],[-81.52924804687498,70.04804687499995],[-81.42172851562503,70.02460937499998],[-81.32949218749997,70.02436523437501],[-81.19682617187493,69.9828125],[-81.02373046874993,69.9],[-80.92480468749994,69.85058593750006],[-80.84287109374995,69.79165039062502],[-80.84028320312495,69.77138671875],[-80.92172851562503,69.730908203125],[-81.56469726562503,69.94272460937498],[-81.95771484374998,69.86875],[-82.13872070312497,69.8412109375],[-82.29384765624997,69.83691406250003],[-82.48774414062495,69.86596679687496],[-82.92539062500002,69.96816406250002],[-83.09116210937493,70.00390625000003],[-83.14995117187493,70.00908203125002],[-83.53076171875,69.96479492187495],[-83.85908203124998,69.96274414062498],[-84.521875,70.00522460937503],[-84.76513671875003,70.03364257812495],[-84.82919921874999,70.06333007812503],[-84.90908203124994,70.07822265624998],[-85.05263671874997,70.07822265624998],[-85.43237304687497,70.11137695312507],[-85.780029296875,70.03666992187505],[-86.19819335937493,70.10512695312501],[-86.32202148437503,70.14541015625],[-86.36142578124998,70.17304687500001],[-86.48310546874998,70.28857421875003],[-86.49980468750002,70.35039062499999],[-86.46538085937502,70.40625],[-86.43100585937503,70.44453124999997],[-86.396875,70.46533203124997],[-86.62431640624999,70.40126953124997],[-86.70415039062499,70.39072265625003],[-86.80927734375001,70.38828124999998],[-87.12246093749994,70.411962890625],[-87.17197265625,70.39985351562495],[-87.15581054687499,70.37744140625],[-87.07402343749993,70.34482421875],[-87.06328125,70.32509765625],[-87.237890625,70.30971679687497],[-87.50244140625,70.32568359375001],[-87.61777343749995,70.31875],[-87.67021484374999,70.309814453125],[-87.78945312500002,70.25825195312495],[-87.83813476562499,70.24658203125],[-87.90068359374995,70.25190429687501],[-88.17832031250003,70.36860351562498],[-88.40209960937497,70.44248046875],[-88.66298828125,70.47084960937501],[-88.78271484374997,70.49448242187503],[-88.84843749999993,70.52290039062498],[-89.20830078124999,70.75971679687498],[-89.25751953124998,70.810693359375],[-89.37153320312493,70.99614257812502],[-89.40976562499998,71.03569335937499],[-89.45590820312496,71.0617187499999],[-89.36552734374996,71.06718750000002],[-89.02514648437497,71.04462890625004],[-88.69565429687496,71.04560546874995],[-88.51665039062493,71.03056640625002],[-88.30908203125001,70.98432617187501],[-88.03857421874997,70.95131835937502],[-87.84492187499994,70.94438476562505],[-87.53442382812503,70.95659179687505],[-87.18159179687501,70.98754882812503],[-87.14008789062498,71.01162109374997],[-87.36860351562498,71.05283203124999],[-87.57231445312502,71.10756835937495],[-87.76025390625003,71.17851562500003],[-87.87246093749995,71.20854492187505],[-88.06064453125003,71.22724609375001],[-88.58950195312494,71.240283203125],[-89.079345703125,71.28793945312503],[-89.41767578125001,71.35219726562498],[-89.69331054687493,71.42348632812502],[-89.80537109374993,71.46230468750005],[-89.84575195312497,71.49228515625],[-89.888525390625,71.58574218750003],[-89.93369140624996,71.74272460937505],[-89.97734374999999,71.84804687500002],[-90.01953124999997,71.90180664062495],[-90.02519531249995,71.94877929687502],[-89.93149414062498,72.04902343750001],[-89.66381835937496,72.157958984375],[-89.65727539062496,72.17504882812503],[-89.71054687499998,72.18012695312497],[-89.82290039062497,72.20781250000005],[-89.85869140624996,72.24833984375005],[-89.87309570312496,72.312646484375],[-89.87402343749997,72.3671875],[-89.86152343750001,72.41191406250005],[-89.81684570312495,72.46772460937495],[-89.701513671875,72.56806640624998],[-89.53642578124996,72.68984375],[-89.35771484374996,72.80415039062503],[-89.32709960937493,72.841552734375],[-89.311376953125,72.94296874999998],[-89.28769531249998,73.01694335937502],[-89.26323242187499,73.068994140625],[-89.225341796875,73.10805664062502],[-89.11474609375003,73.18217773437505],[-88.97680664062497,73.25249023437506],[-88.76093749999995,73.31240234375002],[-88.74252929687503,73.33457031249999],[-88.73959960937498,73.36528320312505],[-88.7271484375,73.38818359375],[-88.70517578124998,73.40327148437495],[-88.17001953125,73.5953125],[-87.92641601562494,73.67333984375],[-87.71977539062496,73.72290039062497],[-87.47236328124997,73.75942382812505],[-86.76875,73.83398437500006],[-86.406396484375,73.85478515625002],[-85.95078124999998,73.85014648437505],[-85.11049804687494,73.808154296875],[-85.00932617187493,73.77861328125005],[-84.98359374999993,73.76372070312502],[-84.94677734375,73.72163085937498],[-84.97451171874997,73.69477539062501],[-85.20429687499995,73.60356445312499],[-85.49360351562501,73.527685546875],[-85.68188476562499,73.461474609375],[-86.00053710937499,73.31254882812505],[-86.086474609375,73.26025390625006],[-86.48139648437498,72.96025390625005],[-86.57465820312498,72.91054687500002],[-86.62934570312493,72.87080078125001],[-86.66777343749996,72.76254882812498],[-86.65629882812502,72.72402343750005],[-86.59462890624997,72.66113281250003],[-86.38032226562501,72.52465820312503],[-86.32255859374996,72.46083984375],[-86.32402343749999,72.40214843750002],[-86.348046875,72.26225585937502],[-86.35097656249997,72.19130859374995],[-86.34135742187496,72.12319335937502],[-86.29716796874993,72.02578125],[-86.21845703124998,71.89912109375004],[-86.03613281249996,71.77094726562504],[-85.75009765624995,71.641357421875],[-85.53715820312502,71.555419921875],[-85.32719726562495,71.49213867187498],[-85.07871093749995,71.39848632812502],[-85.02338867187494,71.35322265625001],[-85.13759765624995,71.30341796875001],[-85.40537109374998,71.22675781250001],[-85.75727539062498,71.19394531249998],[-85.94541015624995,71.16264648437502],[-86.17944335937503,71.09589843750001],[-86.47324218749999,71.042626953125],[-86.58935546874996,71.01079101562507]]],[[[-100.00190429687497,73.9458984375],[-99.15795898437497,73.73159179687497],[-99.03964843749996,73.74926757812503],[-98.78452148437503,73.76054687500002],[-98.51933593750002,73.79208984375002],[-98.15185546875,73.81821289062503],[-97.92773437499999,73.86577148437505],[-97.832177734375,73.87934570312495],[-97.66997070312499,73.88774414062499],[-97.58183593749996,73.88754882812503],[-97.32705078125002,73.86186523437503],[-97.22475585937497,73.84379882812499],[-97.1705078125,73.82485351562497],[-97.11171874999994,73.79033203125005],[-97.01127929687499,73.70615234375003],[-96.99658203125003,73.67490234375006],[-97.00170898437499,73.66650390625003],[-97.094580078125,73.61474609374997],[-97.156396484375,73.5921875],[-97.2841796875,73.57075195312498],[-97.39477539062496,73.56420898437497],[-97.48979492187496,73.52661132812503],[-97.59697265624993,73.53662109375003],[-97.62587890624995,73.50229492187498],[-97.61459960937498,73.48134765624997],[-97.58583984374998,73.47114257812501],[-97.5318359375,73.47358398437498],[-97.47011718749994,73.48823242187495],[-97.35029296874994,73.48095703124996],[-97.28710937499997,73.45844726562501],[-97.23037109374997,73.4212890625],[-97.272509765625,73.38681640624998],[-97.48408203124995,73.33920898437506],[-97.79589843749997,73.285302734375],[-98.175830078125,73.11577148437502],[-98.37558593750003,73.044677734375],[-98.41684570312499,73.02250976562502],[-98.43696289062501,73.000244140625],[-98.43090820312503,72.95805664062502],[-98.42177734375001,72.94101562500003],[-98.36665039062497,72.93413085937505],[-98.18081054687497,72.99306640624997],[-98.06103515624997,73.02050781250006],[-97.93940429687498,73.03559570312501],[-97.72480468749995,73.03666992187503],[-97.63632812499998,73.02763671874999],[-97.47568359375,72.99228515624998],[-97.32875976562502,72.93784179687499],[-97.29584960937498,72.91801757812505],[-97.309912109375,72.89814453124998],[-97.37099609374998,72.878125],[-97.37768554687493,72.86494140624998],[-97.23759765625002,72.83745117187506],[-97.08300781249994,72.76284179687495],[-97.07290039062502,72.71757812500007],[-97.14047851562503,72.67275390625],[-97.15893554687497,72.64277343750001],[-97.128125,72.62758789062502],[-97.05180664062499,72.63681640625003],[-96.86904296874995,72.68701171874997],[-96.67128906249998,72.71318359375005],[-96.59208984374995,72.71025390624999],[-96.54208984374998,72.69873046875006],[-96.48920898437494,72.62988281250006],[-96.44560546874996,72.55244140624998],[-96.44013671874998,72.48730468750006],[-96.47285156249998,72.434375],[-96.51987304687498,72.39311523437505],[-96.63828125000002,72.34204101562503],[-96.74550781249994,72.32260742187498],[-96.80146484374998,72.32241210937502],[-96.7958984375,72.31376953125005],[-96.66875,72.271240234375],[-96.61557617187503,72.23725585937501],[-96.59287109375,72.2044921875],[-96.6005859375,72.17285156250003],[-96.61811523437501,72.14589843750005],[-96.76630859375001,72.04594726562502],[-96.75830078124997,72.03168945312495],[-96.71728515624997,72.02514648437503],[-96.62436523437495,71.96757812500005],[-96.61342773437494,71.83383789062506],[-96.94648437499993,71.79189453125005],[-97.02465820312497,71.7607421875],[-97.11669921874997,71.71083984375005],[-97.22221679687497,71.673486328125],[-97.46123046874999,71.63422851562498],[-97.58227539062496,71.62968750000005],[-98.18134765624997,71.66245117187503],[-98.24194335937497,71.681494140625],[-98.28388671875001,71.71552734375001],[-98.30708007812491,71.76450195312506],[-98.31337890624997,71.803076171875],[-98.302685546875,71.83110351562505],[-98.30581054687502,71.84755859375002],[-98.32270507812501,71.85234375000002],[-98.389306640625,71.82426757812507],[-98.45883789062503,71.77319335937506],[-98.42080078125,71.71650390624995],[-98.23144531249997,71.558935546875],[-98.19531249999996,71.49121093749997],[-98.19013671874998,71.46245117187507],[-98.19863281249992,71.44086914062501],[-98.41230468749994,71.348828125],[-98.5359375,71.31762695312506],[-98.66289062499993,71.302099609375],[-98.78383789062497,71.31367187499995],[-98.89877929687495,71.35234375],[-98.98623046875,71.36948242187503],[-99.16713867187498,71.36718750000003],[-99.22363281249996,71.387109375],[-99.276171875,71.42421875],[-99.40366210937493,71.55717773437502],[-99.58144531250002,71.65156249999995],[-99.73471679687499,71.7572265625],[-100.12412109375,71.9115234375],[-100.32568359374994,72.00385742187494],[-100.594482421875,72.15234375000003],[-100.70683593749996,72.18593750000002],[-100.80019531249998,72.19941406250001],[-100.98364257812494,72.21005859375006],[-101.026220703125,72.22856445312502],[-101.09311523437498,72.279052734375],[-101.20854492187495,72.31699218749998],[-101.25068359375001,72.32177734375],[-101.31870117187499,72.31284179687503],[-101.49833984375,72.27788085937502],[-101.72392578124996,72.314892578125],[-101.77451171874996,72.34091796874998],[-101.80444335937503,72.38505859374999],[-101.83291015624997,72.40927734375006],[-101.909326171875,72.43105468750005],[-101.97368164062495,72.48613281249999],[-102.40224609374995,72.5947265625],[-102.657080078125,72.71943359375],[-102.70874023437494,72.76450195312503],[-102.71367187499999,72.78291015624995],[-102.6875,72.84282226562499],[-102.62846679687495,72.910791015625],[-102.55107421874997,72.97827148437497],[-102.50380859374995,73.00590820312502],[-102.33613281249998,73.06411132812497],[-102.20400390624998,73.07729492187498],[-102.01962890624999,73.069921875],[-101.9224609375,73.05698242187503],[-101.83540039062503,73.01801757812497],[-101.79804687499997,72.97309570312498],[-101.75454101562498,72.94282226562504],[-101.6177734375,72.90971679687505],[-101.543603515625,72.88305664062503],[-101.434619140625,72.821044921875],[-101.35058593750003,72.74628906249995],[-101.27319335937497,72.7216796875],[-101.08759765625,72.71328125],[-100.89604492187497,72.72592773437498],[-100.48476562500002,72.77294921874997],[-100.46801757812497,72.77880859375003],[-100.44257812499995,72.80683593749995],[-100.395703125,72.97700195312498],[-100.36752929687495,72.97773437499994],[-100.22792968750001,72.89892578124997],[-100.18833007812493,72.890283203125],[-100.128125,72.90668945312495],[-100.09238281250002,72.94497070312501],[-100.096728515625,72.96313476562499],[-100.18447265624994,73.05532226562505],[-100.236181640625,73.09541015625004],[-100.28266601562497,73.12031249999995],[-100.334375,73.12846679687502],[-100.44619140624998,73.12055664062501],[-100.53139648437502,73.13828124999998],[-100.55019531249992,73.163720703125],[-100.53637695312497,73.19785156250003],[-100.48930664062497,73.23393554687502],[-100.43881835937499,73.25458984374994],[-100.34072265625,73.26518554687499],[-100.22587890624995,73.25468750000007],[-100.0669921875,73.21108398437497],[-99.96640624999993,73.20141601562506],[-99.82514648437503,73.2138671875],[-100.00590820312499,73.239501953125],[-100.25795898437501,73.340234375],[-100.36611328125001,73.359033203125],[-100.49799804687497,73.3158203125],[-100.58701171874996,73.29956054687497],[-100.75532226562498,73.27846679687502],[-100.88935546875003,73.27534179687501],[-101.45087890625003,73.43095703125002],[-101.48208007812498,73.44584960937502],[-101.52319335937501,73.48637695312502],[-101.51845703124994,73.50502929687498],[-101.46303710937502,73.533837890625],[-101.32314453124992,73.57197265624995],[-101.11494140624998,73.59584960937502],[-100.97578124999995,73.59975585937502],[-100.85410156249995,73.57128906249999],[-100.67680664062497,73.49428710937502],[-100.5216796875,73.44931640625],[-100.50893554687498,73.46547851562502],[-100.53632812499995,73.50971679687498],[-100.60712890625,73.57539062500004],[-100.65791015624995,73.59335937500006],[-100.78271484374997,73.61293945312505],[-100.89824218749997,73.658056640625],[-100.95258789062493,73.69140625000003],[-100.98154296874998,73.72719726562497],[-100.985107421875,73.76533203125001],[-100.96298828125002,73.79140625],[-100.91513671874995,73.80537109374998],[-100.48364257812497,73.84350585937501],[-100.18232421874995,73.80126953125003],[-99.99111328125,73.79516601562503],[-99.91186523437501,73.84702148437502],[-99.93950195312496,73.85712890624994],[-100.04008789062493,73.84379882812499],[-100.15380859375,73.84409179687498],[-100.2248046875,73.87250976562498],[-100.22705078125001,73.88911132812498],[-100.1384765625,73.92885742187502],[-100.00190429687497,73.9458984375]]],[[[-98.270361328125,73.86850585937496],[-98.558203125,73.84741210937503],[-98.691064453125,73.85649414062502],[-98.76137695312502,73.82885742187497],[-98.8166015625,73.817138671875],[-98.97392578124997,73.81206054687502],[-99.29804687500003,73.86196289062497],[-99.38515625,73.87929687500005],[-99.4169921875,73.89541015625002],[-99.40380859374999,73.910888671875],[-99.34560546874994,73.92573242187498],[-99.096875,73.94829101562507],[-99.00468749999995,73.96494140624998],[-98.96669921875002,73.98818359375002],[-98.90449218749995,74.006884765625],[-98.81816406249995,74.02099609375003],[-98.58496093749996,74.03452148437503],[-98.06103515624997,74.10468749999995],[-97.800439453125,74.11464843750002],[-97.69824218749997,74.10869140625005],[-97.66743164062501,74.09013671875002],[-97.65913085937497,74.07163085937506],[-97.67333984374997,74.05302734374999],[-97.75473632812503,74.005517578125],[-97.86108398437503,73.96845703124998],[-98.14697265625,73.88881835937502],[-98.270361328125,73.86850585937496]]],[[[-93.17084960937498,74.16098632812506],[-92.77802734374998,74.11372070312501],[-92.58681640625002,74.08271484375001],[-92.49282226562497,74.06206054687505],[-92.31386718750002,73.99238281249998],[-92.222705078125,73.97236328124998],[-91.87416992187497,74.01279296875005],[-91.63041992187496,74.02778320312501],[-91.08798828125003,74.00927734375006],[-90.62744140625,73.95170898437505],[-90.45800781250003,73.90839843750001],[-90.35458984374999,73.86865234374999],[-90.38139648437496,73.82475585937502],[-90.466162109375,73.75385742187498],[-90.565576171875,73.68642578125],[-90.76455078124994,73.58061523437502],[-90.93369140625003,73.527685546875],[-90.97548828125001,73.50229492187498],[-91.001953125,73.46708984374999],[-91.06762695312497,73.41552734374997],[-91.24931640624993,73.30400390624999],[-91.29780273437494,73.284912109375],[-91.55371093749996,73.236083984375],[-91.46601562499995,73.21420898437498],[-91.42592773437497,73.19487304687505],[-91.45961914062497,73.145361328125],[-91.62099609375,73.02587890624999],[-91.78833007812497,72.91538085937503],[-91.90532226562502,72.84931640624998],[-92.11791992187497,72.75380859374998],[-92.23491210937502,72.726806640625],[-92.39194335937502,72.71845703124998],[-93.340625,72.80185546874999],[-93.57866210937493,72.800537109375],[-94.21132812499997,72.75693359375],[-94.15170898437498,72.73564453125],[-93.92001953125003,72.703369140625],[-93.77055664062495,72.66821289062504],[-93.57226562499997,72.55864257812502],[-93.54648437499993,72.53129882812505],[-93.53393554687496,72.49946289062495],[-93.54160156250003,72.43701171875003],[-93.55517578124994,72.42114257812497],[-93.87060546875,72.25263671875001],[-93.97255859375,72.12998046875],[-94.03754882812498,72.02875976562498],[-94.14375,72.00083007812498],[-94.49716796875,72.043603515625],[-94.61123046875,72.04233398437498],[-95.00786132812496,72.01279296875],[-95.19296875,72.02744140624998],[-95.16679687500002,72.18002929687498],[-95.19267578124995,72.34477539062505],[-95.25102539062493,72.501953125],[-95.54760742187497,72.78154296875005],[-95.58032226562496,72.83115234375003],[-95.60214843749996,72.88447265624995],[-95.61318359375,72.94160156249995],[-95.61220703125,72.99907226562505],[-95.59160156249996,73.11528320312497],[-95.58925781250002,73.174169921875],[-95.6041015625,73.32773437500003],[-95.64423828124993,73.55747070312503],[-95.64799804687497,73.638525390625],[-95.64526367187497,73.67080078125001],[-95.63291015625003,73.69545898437497],[-95.56943359374998,73.728173828125],[-95.447412109375,73.75166015624998],[-95.38598632812499,73.75512695312497],[-94.99614257812496,73.68574218749995],[-94.81684570312495,73.66254882812501],[-94.697607421875,73.66357421874997],[-94.69101562499996,73.67143554687505],[-94.79716796874992,73.68608398437502],[-94.896923828125,73.71601562499998],[-95.05947265625,73.80507812500002],[-95.134130859375,73.88125],[-95.14902343750003,73.90639648437497],[-95.15258789062497,73.93276367187498],[-95.14477539062496,73.96030273437503],[-95.12119140624995,73.98505859375001],[-95.03984374999997,74.02387695312501],[-94.97353515625,74.04140625],[-94.72895507812498,74.08598632812503],[-94.48256835937497,74.11313476562498],[-93.93881835937495,74.131591796875],[-93.78461914062498,74.11835937499998],[-93.54921875,74.16713867187497],[-93.41030273437502,74.17875976562502],[-93.17084960937498,74.16098632812506]]],[[[-119.73632812499996,74.11264648437498],[-119.72856445312497,74.10844726562502],[-119.47109374999992,74.20122070312497],[-119.31484375,74.20625],[-119.20595703125002,74.19799804687503],[-119.17143554687499,74.18618164062502],[-119.14960937499998,74.16787109375002],[-119.13876953124999,74.127587890625],[-119.13188476562495,74.02788085937502],[-119.11796874999993,74.01552734375],[-119.08251953124999,74.02119140624998],[-119.02568359374997,74.04472656249997],[-118.74414062499999,74.19208984374998],[-118.62529296874995,74.23251953125006],[-118.54399414062499,74.24462890625003],[-118.199658203125,74.26674804687502],[-117.96586914062497,74.26606445312495],[-117.707470703125,74.25234375000002],[-117.51484375000001,74.23173828124999],[-117.19882812500003,74.171142578125],[-116.95039062499995,74.101416015625],[-116.72236328124995,74.02714843750005],[-115.95771484374994,73.74794921875002],[-115.63432617187497,73.66552734375],[-115.510693359375,73.61875],[-115.45566406249998,73.58466796874995],[-115.40751953124996,73.54189453125005],[-115.39282226562497,73.501953125],[-115.411572265625,73.46479492187497],[-115.446875,73.43886718750002],[-115.52446289062497,73.41674804687503],[-115.99228515624998,73.32324218749999],[-116.23862304687498,73.29458007812502],[-116.48251953125002,73.25322265625005],[-117.06542968750003,73.10727539062505],[-117.46445312499996,73.03774414062502],[-117.98320312499995,72.902197265625],[-118.96157226562498,72.68413085937499],[-119.07797851562495,72.64033203124995],[-119.13154296874994,72.60883789062504],[-119.407763671875,72.36040039062505],[-119.51284179687501,72.30268554687501],[-119.76748046875001,72.24384765625001],[-120.08974609374995,72.22915039062502],[-120.17988281250001,72.21264648437506],[-120.19443359374996,72.12675781250005],[-120.31000976562495,71.98408203125001],[-120.36625976562496,71.888037109375],[-120.44316406249999,71.63081054687498],[-120.46093749999999,71.605078125],[-120.51967773437497,71.55742187500005],[-120.61933593750001,71.50576171875002],[-120.93032226562495,71.44624023437495],[-121.159814453125,71.41499023437498],[-121.47216796875003,71.38901367187503],[-121.54682617187497,71.40678710937502],[-121.62216796875005,71.44760742187498],[-121.70068359374996,71.451171875],[-121.749365234375,71.44477539062501],[-122.15664062499994,71.26591796874999],[-122.54951171874994,71.19355468750001],[-122.719775390625,71.12817382812499],[-122.83994140624996,71.09746093750003],[-122.9365234375,71.08798828124998],[-123.09565429687503,71.09379882812502],[-123.210595703125,71.12343750000002],[-123.31474609374997,71.169189453125],[-123.39335937499999,71.21884765625],[-123.59516601562498,71.42319335937498],[-123.68183593749998,71.49311523437501],[-123.75556640625,71.52802734375001],[-123.95327148437494,71.65249023437497],[-124.00776367187493,71.67744140624998],[-124.75996093749998,71.83515624999998],[-125.12612304687498,71.92363281250005],[-125.21464843749997,71.95478515625001],[-125.29667968749999,71.97304687499998],[-125.76689453124995,71.96083984375],[-125.82910156250001,71.965625],[-125.8453125,71.97866210937498],[-125.78964843749996,72.025],[-125.76772460937492,72.054248046875],[-125.76049804687496,72.08291015625],[-125.76860351562495,72.129150390625],[-125.76259765624995,72.1375],[-125.58378906249995,72.18305664062498],[-125.61279296875,72.19252929687502],[-125.6337890625,72.210302734375],[-125.64677734374999,72.23652343750004],[-125.62729492187502,72.25483398437504],[-125.57548828124995,72.26528320312502],[-125.51240234374995,72.30771484375006],[-125.4380859375,72.38208007812503],[-125.38276367187501,72.423828125],[-125.30600585937502,72.45073242187505],[-125.16831054687503,72.52260742187505],[-125.07021484374995,72.551611328125],[-124.98710937499996,72.58798828125003],[-124.98466796875002,72.60439453125002],[-125.01855468749999,72.61699218749999],[-125.03022460937497,72.64477539062497],[-125.01474609375002,72.73144531250006],[-125.01542968749997,72.77607421874998],[-125.000390625,72.81333007812503],[-124.96967773437498,72.84331054687502],[-124.93085937499998,72.86318359374997],[-124.58256835937497,72.92592773437497],[-124.56494140624994,72.94414062500005],[-124.56083984375,72.96503906250004],[-124.57021484374995,72.98872070312498],[-124.58828125,73.00532226562497],[-124.64331054687501,73.0189453125],[-124.73642578124999,73.02270507812497],[-124.81708984374997,73.05878906250004],[-124.83642578125,73.07626953125003],[-124.80405273437499,73.12568359374998],[-124.64692382812494,73.20444335937503],[-124.59399414062499,73.24331054687497],[-124.42421874999997,73.418701171875],[-124.11416015624994,73.52739257812502],[-124.03017578124997,73.64423828125001],[-123.79726562499997,73.76816406250003],[-123.79780273437498,73.785302734375],[-123.87304687499994,73.82758789062498],[-124.08803710937497,73.85688476562501],[-124.19150390624999,73.90200195312505],[-124.26074218749997,73.95327148437502],[-124.57534179687504,74.24814453125003],[-124.62910156249995,74.27001953124997],[-124.64501953125001,74.30434570312502],[-124.70932617187496,74.32700195312503],[-124.69624023437497,74.34819335937499],[-123.46831054687499,74.43613281249998],[-122.62314453125002,74.46416015624999],[-121.74790039062499,74.540625],[-121.50415039062496,74.54511718749998],[-121.31523437499993,74.52998046874998],[-121.12871093749995,74.49023437499997],[-120.88164062499999,74.42075195312503],[-120.55449218749993,74.3529296875],[-119.943603515625,74.25371093750002],[-119.56264648437494,74.23281250000002],[-119.71538085937496,74.15366210937498],[-119.7369140625,74.12993164062502],[-119.73632812499996,74.11264648437498]]],[[[-97.35551757812496,74.52631835937495],[-97.656103515625,74.46567382812503],[-97.72158203125002,74.48920898437494],[-97.75,74.51054687500005],[-97.51630859374995,74.60249023437501],[-97.41650390624993,74.62656250000003],[-97.31821289062499,74.59799804687499],[-97.29130859374993,74.57636718750003],[-97.303857421875,74.55966796875],[-97.35551757812496,74.52631835937495]]],[[[-95.306640625,74.50541992187505],[-95.35244140625,74.500390625],[-95.44150390625003,74.50610351562503],[-95.77719726562502,74.55073242187495],[-95.834375,74.56904296874995],[-95.850732421875,74.58247070312504],[-95.7744140625,74.59868164062505],[-95.74560546874997,74.61596679687503],[-95.66044921874996,74.63691406250001],[-95.51020507812498,74.63676757812499],[-95.35253906250003,74.58569335937497],[-95.27836914062502,74.53955078124999],[-95.27446289062502,74.51918945312501],[-95.306640625,74.50541992187505]]],[[[-104.11992187499995,75.03632812500004],[-104.30869140624995,75.03095703125001],[-104.63432617187502,75.06127929687497],[-104.828125,75.11972656249998],[-104.88740234374998,75.14775390624999],[-104.88164062499997,75.160498046875],[-104.84809570312495,75.173046875],[-104.80131835937495,75.21103515625],[-104.690380859375,75.32070312499997],[-104.64882812499997,75.34975585937502],[-104.47416992187499,75.41303710937494],[-104.34619140624996,75.42993164062503],[-104.07465820312497,75.42451171874997],[-103.9169921875,75.391845703125],[-103.85117187499999,75.37080078124994],[-103.8041015625,75.34550781250005],[-103.75791015625,75.2890625],[-103.746484375,75.25244140625],[-103.66723632812501,75.21069335937503],[-103.64350585937497,75.18657226562499],[-103.64213867187496,75.16293945312498],[-103.66425781250003,75.1390625],[-103.70971679687496,75.11499023437497],[-103.81391601562495,75.079736328125],[-104.11992187499995,75.03632812500004]]],[[[-93.54257812499995,75.02792968749999],[-93.478271484375,74.95195312499999],[-93.46660156249993,74.92133789062495],[-93.4634765625,74.85649414062499],[-93.490869140625,74.77197265625],[-93.5091796875,74.75649414062505],[-93.53564453124997,74.74931640625002],[-93.54829101562498,74.7275390625],[-93.54716796875002,74.69106445312505],[-93.57309570312495,74.66884765625005],[-93.62617187499993,74.66088867187501],[-93.98457031249995,74.644189453125],[-94.20605468749994,74.64741210937504],[-94.53452148437496,74.63671874999997],[-94.697265625,74.64218750000003],[-94.80385742187497,74.66010742187495],[-94.958740234375,74.69995117187497],[-95.28608398437498,74.79409179687497],[-95.45122070312495,74.79736328125003],[-95.86542968749995,74.830419921875],[-96.09423828124994,74.93251953125002],[-96.18173828125,74.95078125],[-96.27011718749996,74.92031250000002],[-96.294189453125,74.927197265625],[-96.31855468750001,74.94770507812501],[-96.34316406249994,74.98193359374997],[-96.38632812499993,74.99946289062498],[-96.55986328124996,74.990380859375],[-96.59116210937502,75.00185546875002],[-96.59960937499997,75.03178710937499],[-96.59692382812493,75.05786132812497],[-96.565771484375,75.09873046875003],[-96.38286132812495,75.21137695312498],[-96.2923828125,75.21928710937502],[-96.18037109375001,75.24008789062498],[-96.118408203125,75.30092773437502],[-96.12490234375,75.35830078124998],[-95.95463867187493,75.44379882812501],[-95.85317382812497,75.46904296874999],[-95.67080078125001,75.52866210937498],[-95.04951171875001,75.62182617187503],[-94.878173828125,75.63002929687502],[-94.64863281249994,75.62304687500003],[-94.42724609374997,75.593359375],[-94.25668945312493,75.544091796875],[-93.90908203125001,75.42250976562502],[-93.75083007812503,75.34902343749995],[-93.66684570312498,75.27353515625003],[-93.59121093750001,75.230224609375],[-93.49755859375001,75.136865234375],[-93.53173828124996,75.10034179687503],[-93.55180664062499,75.05117187500005],[-93.54257812499995,75.02792968749999]]],[[[-96.07856445312495,75.510107421875],[-96.156396484375,75.47724609374998],[-96.23662109375,75.47480468750001],[-96.34448242187494,75.50595703125005],[-96.46162109375001,75.49423828124996],[-96.62197265625,75.43129882812502],[-96.67900390624997,75.39418945312502],[-96.72285156249995,75.38076171875005],[-96.85712890624995,75.36914062499997],[-96.91513671875003,75.37968749999999],[-96.96962890624992,75.41264648437505],[-97.02065429687494,75.46806640625007],[-96.98281249999997,75.50981445312505],[-96.85615234375001,75.537939453125],[-96.52290039062498,75.583642578125],[-96.42768554687491,75.60634765624998],[-96.41723632812503,75.63071289062498],[-96.39726562499996,75.64682617187498],[-96.367822265625,75.65463867187505],[-96.14541015625,75.61352539062503],[-96.03984375,75.58579101562496],[-95.95986328125002,75.55434570312497],[-95.96860351562503,75.541845703125],[-96.07856445312495,75.510107421875]]],[[[-121.076220703125,75.74526367187505],[-121.15429687500001,75.740625],[-121.24091796874998,75.75185546874997],[-121.22109374999994,75.77749023437505],[-121.02631835937497,75.847509765625],[-121.01542968749996,75.867529296875],[-121.01806640624997,75.88383789062505],[-121.04228515624995,75.90297851562502],[-120.99301757812502,75.92744140625004],[-120.91396484375,75.9375],[-120.88779296874999,75.92797851562497],[-120.87871093749999,75.90668945312498],[-120.896875,75.84453125000002],[-120.92124023437498,75.81445312500001],[-120.95493164062499,75.78876953125004],[-121.00664062499996,75.76572265625003],[-121.076220703125,75.74526367187505]]],[[[-94.52656249999995,75.74931640624999],[-94.624365234375,75.74887695312498],[-94.75146484374994,75.76967773437505],[-94.78735351562497,75.79140625000002],[-94.81474609374996,75.82119140624997],[-94.833642578125,75.85898437500003],[-94.86010742187496,75.88920898437507],[-94.89409179687496,75.91186523437497],[-94.901220703125,75.93076171875],[-94.88134765624994,75.945947265625],[-94.83979492187501,75.95444335937503],[-94.74482421874993,75.95722656249997],[-94.53789062499996,75.99643554687505],[-94.49868164062497,75.9921875],[-94.47128906249998,75.97143554687503],[-94.44335937499997,75.91708984375006],[-94.41376953124998,75.88486328124998],[-94.33222656249998,75.82597656250005],[-94.29628906249994,75.78808593749997],[-94.30400390625002,75.77631835937498],[-94.32954101562497,75.76591796874999],[-94.52656249999995,75.74931640624999]]],[[[-118.328125,75.57968749999998],[-118.6138671875,75.51542968750002],[-118.81713867187501,75.52211914062497],[-119.08666992187494,75.5693359375],[-119.30605468749997,75.58535156249997],[-119.38325195312497,75.60102539062498],[-119.39458007812497,75.617333984375],[-119.32016601562502,75.66254882812498],[-119.22680664062499,75.69863281249997],[-119.00346679687496,75.76958007812502],[-118.62607421874999,75.90625],[-118.37900390625003,75.95795898437504],[-118.13666992187495,75.994482421875],[-117.88935546875003,76.07607421875002],[-117.75249023437492,76.11245117187497],[-117.63369140624998,76.11508789062498],[-117.51259765625001,76.09941406249999],[-117.49912109375,76.07719726562499],[-117.62636718750001,75.96596679687497],[-117.71596679687495,75.921142578125],[-117.89082031249995,75.80546875000005],[-118.22651367187497,75.611181640625],[-118.328125,75.57968749999998]]],[[[-79.0630859375,75.92587890624998],[-79.0517578125,75.86699218750007],[-79.12441406249997,75.86967773437499],[-79.35566406249993,75.83115234375003],[-79.54453125000003,75.82563476562498],[-79.63876953124995,75.84291992187505],[-79.69873046875,75.88325195312501],[-79.55126953125,75.95834960937503],[-79.38178710937501,76.01083984374998],[-79.17832031250003,76.09238281249998],[-79.00932617187499,76.14589843750005],[-78.92587890625003,76.13466796874995],[-78.84516601562493,76.10629882812506],[-78.94643554687497,76.02543945312502],[-79.05664062500001,75.98515625000007],[-79.0630859375,75.92587890624998]]],[[[-102.22734374999993,76.014892578125],[-102.01787109374999,75.95351562500002],[-102.00800781250003,75.93940429687498],[-102.04746093749998,75.92773437499999],[-102.31811523437496,75.89516601562502],[-102.4234375,75.86918945312507],[-102.51137695312498,75.80839843750002],[-102.57958984375003,75.78022460937498],[-102.94355468750001,75.76342773437503],[-103.31474609374995,75.76420898437497],[-103.24472656249999,75.82294921874998],[-103.04150390624997,75.91884765624997],[-103.2015625,75.95849609374997],[-103.76977539062503,75.89238281249999],[-103.98525390624997,75.93310546875003],[-103.80078124999993,76.03701171874997],[-103.984521484375,76.04653320312497],[-104.24248046874996,76.04697265625006],[-104.40605468749997,76.10849609374998],[-104.35063476562496,76.18232421875001],[-104.012060546875,76.22299804687503],[-103.57143554687494,76.25820312499998],[-103.09824218749999,76.31147460937501],[-102.72802734374999,76.30703125],[-102.58408203124996,76.281640625],[-102.53613281249996,76.19643554687502],[-102.49003906249999,76.09506835937498],[-102.42568359375002,76.08642578125],[-102.22734374999993,76.014892578125]]],[[[-104.02285156249998,76.58310546875003],[-103.97348632812496,76.57758789062498],[-103.82109375,76.59750976562503],[-103.72275390624995,76.60107421875006],[-103.613134765625,76.563427734375],[-103.58461914062495,76.53886718749999],[-103.19013671874997,76.47744140625],[-103.05131835937495,76.44985351562497],[-103.03354492187495,76.43149414062506],[-103.082958984375,76.40517578125002],[-103.19951171874993,76.37084960937503],[-103.31137695312498,76.34755859375],[-103.47221679687497,76.32905273437495],[-104.27065429687501,76.32626953125],[-104.35751953124993,76.33461914062502],[-104.40766601562494,76.36513671875002],[-104.5064453125,76.47895507812495],[-104.576611328125,76.540185546875],[-104.60302734374996,76.58271484374995],[-104.58569335937499,76.60649414062499],[-104.500390625,76.63037109374997],[-104.20512695312499,76.66611328124996],[-104.07451171875003,76.66611328124996],[-103.99248046875002,76.65698242187497],[-103.95908203124996,76.63876953124999],[-103.96918945312497,76.61416015624997],[-104.02285156249998,76.58310546875003]]],[[[-97.70092773437497,76.46650390624998],[-97.68974609375002,76.42182617187504],[-97.70185546874998,76.38740234374995],[-97.73710937499999,76.36313476562498],[-97.73876953124997,76.33525390624999],[-97.70683593749993,76.30371093750003],[-97.57314453124997,76.22421875],[-97.53066406250002,76.18154296875001],[-97.52426757812498,76.13872070312499],[-97.5310546875,76.10942382812497],[-97.61347656249993,76.05263671874997],[-97.65,75.97915039062498],[-97.65214843749997,75.94018554687497],[-97.60302734375001,75.87934570312501],[-97.60166015625,75.85107421875001],[-97.69423828124995,75.802587890625],[-97.89052734374997,75.7603515625],[-97.86279296875,75.73808593750002],[-97.43955078125002,75.68457031250003],[-97.40751953124999,75.67250976562497],[-97.40961914062495,75.55209960937503],[-97.33603515624998,75.41982421875],[-97.36347656249998,75.417236328125],[-97.46523437500002,75.458642578125],[-97.65332031249997,75.50776367187498],[-97.87822265624996,75.41611328125003],[-97.85273437500001,75.26030273437502],[-97.70488281249999,75.19082031249997],[-97.65991210937497,75.15117187499999],[-97.67431640624997,75.127294921875],[-97.79936523437496,75.11665039062495],[-97.84272460937501,75.12182617187506],[-97.970849609375,75.15327148437495],[-98.04531249999997,75.20083007812497],[-98.06875,75.19916992187498],[-98.09169921875002,75.17622070312501],[-98.07675781249998,75.152978515625],[-97.989990234375,75.110693359375],[-97.95332031249998,75.06015625],[-97.991796875,75.04580078125002],[-98.12094726562502,75.03271484375],[-98.295166015625,75.03217773437498],[-98.56865234375002,75.00932617187505],[-98.70351562499997,75.00581054687504],[-98.83481445312498,75.01816406249998],[-99.01005859374997,75.02109375000003],[-99.155810546875,75.01572265625],[-99.24492187499995,75.02578125000002],[-99.32612304687497,75.04941406250003],[-99.42060546874993,75.04375],[-99.62690429687495,74.98374023437498],[-99.94663085937499,75.00283203124997],[-100.234375,75.00771484374997],[-100.29228515624997,75.02773437499997],[-100.35664062499994,75.066748046875],[-100.48349609374995,75.18842773437501],[-100.45947265625003,75.21909179687506],[-100.15205078125001,75.23564453125005],[-100.14570312499994,75.24614257812505],[-100.36411132812496,75.28955078125003],[-100.61489257812498,75.32143554687502],[-100.73115234374995,75.346533203125],[-100.70424804687498,75.39433593750005],[-100.71191406250003,75.40634765625],[-100.27963867187498,75.46098632812505],[-99.96528320312497,75.568505859375],[-99.77021484375003,75.61225585937495],[-99.75600585937497,75.6333984375],[-99.59116210937496,75.65537109375003],[-99.209423828125,75.66860351562497],[-99.19458007812497,75.698388671875],[-99.91513671874998,75.68125],[-100.90175781249998,75.62041015625002],[-101.20683593749996,75.59042968750002],[-101.46132812500002,75.60791015625003],[-102.54140625,75.51362304687501],[-102.58740234375001,75.51367187500003],[-102.70039062499994,75.54360351562498],[-102.79750976562501,75.59965820312503],[-102.72783203124995,75.63872070312502],[-102.41069335937499,75.712841796875],[-102.25205078125,75.777734375],[-102.27065429687497,75.81279296875005],[-102.14472656249998,75.87504882812502],[-101.94282226562495,75.88383789062505],[-101.59965820312496,75.832666015625],[-101.42124023437493,75.78193359374995],[-101.26142578124997,75.75820312500002],[-101.119384765625,75.76289062499998],[-100.97280273437498,75.79843750000003],[-101.00991210937498,75.80239257812497],[-101.25883789062499,75.78364257812495],[-101.28803710937498,75.78911132812502],[-101.414990234375,75.84584960937502],[-101.4703125,75.88193359374999],[-101.50590820312496,75.91806640624998],[-101.507861328125,75.94360351562503],[-101.43134765624995,75.99199218750005],[-101.71679687500003,76.00791015625],[-101.82338867187498,76.04135742187498],[-101.87211914062496,76.08310546875003],[-101.86137695312499,76.10126953125001],[-101.77138671874994,76.15009765625001],[-101.52895507812494,76.21728515625003],[-101.55703125,76.23583984374997],[-101.90981445312498,76.234375],[-101.987451171875,76.24311523437494],[-102.13774414062499,76.28486328125001],[-102.1046875,76.33120117187505],[-101.96420898437498,76.3990234375],[-101.85849609374993,76.43901367187499],[-101.78754882812495,76.45126953125],[-101.67724609374996,76.45102539062503],[-101.41518554687495,76.42490234375003],[-101.33974609374995,76.41049804687503],[-101.1390625,76.34516601562495],[-101.08789062499997,76.307861328125],[-101.09418945312501,76.27192382812495],[-101.055810546875,76.24555664062501],[-100.90009765625,76.20708007812499],[-100.23066406249995,76.00766601562503],[-100.10571289062497,75.96044921875],[-100.02011718749995,75.93955078125],[-99.86547851562497,75.92421875],[-99.774853515625,75.92739257812502],[-99.70126953125,75.94145507812505],[-99.68891601562498,75.95971679687503],[-99.97832031249996,76.02949218749995],[-100.05097656250001,76.06660156249995],[-100.11284179687502,76.11723632812507],[-100.085791015625,76.133544921875],[-100.00175781249995,76.139208984375],[-99.790185546875,76.13261718749999],[-99.54106445312497,76.14628906250005],[-99.817236328125,76.167578125],[-99.99760742187499,76.19584960937502],[-100.18276367187497,76.19721679687501],[-100.41420898437494,76.242529296875],[-100.41435546874996,76.25668945312506],[-100.35761718749997,76.27114257812497],[-100.04272460937503,76.291259765625],[-99.98310546874995,76.29990234374998],[-99.97773437500001,76.31245117187495],[-100.08188476562502,76.34277343749999],[-100.17465820312499,76.35927734375],[-100.65068359374999,76.39594726562501],[-100.81987304687499,76.43701171875003],[-100.87363281250002,76.45659179687502],[-100.89077148437497,76.47548828125005],[-100.82973632812497,76.52387695312495],[-100.57373046875003,76.584619140625],[-100.38793945312501,76.61357421875002],[-100.06870117187499,76.63476562499997],[-99.81406249999998,76.6322265625],[-99.66904296875,76.62412109375002],[-99.32949218749994,76.52128906250003],[-99.16962890624997,76.45366210937503],[-98.89033203124998,76.46557617187497],[-98.97099609375,76.53657226562495],[-99.02363281249998,76.61455078125005],[-98.940869140625,76.6431640625],[-98.71083984374994,76.69384765625001],[-98.527587890625,76.66738281249997],[-98.288671875,76.59873046875],[-98.23618164062495,76.57534179687505],[-97.96733398437499,76.53291015625001],[-97.80839843749993,76.51879882812496],[-97.72587890625002,76.49609374999997],[-97.70092773437497,76.46650390624998]]],[[[-101.22612304687496,76.57934570312496],[-101.485205078125,76.575],[-101.60498046874999,76.58701171875003],[-101.61308593749995,76.60458984375005],[-101.50947265624997,76.62773437500007],[-101.16503906249997,76.66542968750002],[-100.96215820312501,76.73417968749999],[-100.88647460937496,76.74267578125003],[-100.62158203125001,76.75249023437499],[-100.46723632812501,76.750341796875],[-100.26914062499998,76.73413085937497],[-100.74658203124999,76.649169921875],[-101.22612304687496,76.57934570312496]]],[[[-108.29238281250001,76.05712890625],[-108.16630859374999,76.05429687500003],[-108.01875,76.06523437500005],[-107.85229492187497,76.05771484375],[-107.77685546874996,76.035302734375],[-107.723486328125,75.99541015625002],[-107.72128906249999,75.97402343750002],[-107.73183593749994,75.95561523437499],[-107.75517578124999,75.94028320312496],[-107.97041015624994,75.83959960937499],[-108.02070312499998,75.80478515625],[-107.95107421875001,75.79628906249997],[-107.91752929687502,75.8021484375],[-107.70258789062503,75.877587890625],[-107.54091796874995,75.90117187500002],[-107.41826171874999,75.90659179687506],[-107.21621093749997,75.89155273437501],[-107.13569335937498,75.87856445312501],[-107.080419921875,75.86318359375],[-107.05039062500002,75.84541015625001],[-106.970947265625,75.77309570312502],[-106.91352539062503,75.67963867187501],[-106.90419921875,75.68925781250002],[-106.90278320312497,75.74165039062501],[-106.89169921875002,75.78242187499997],[-106.69311523437497,75.8099609375],[-106.68808593750002,75.81904296874998],[-106.759375,75.84160156250005],[-106.82006835937499,75.872412109375],[-106.86206054687503,75.93007812500005],[-106.84565429687497,75.95156249999997],[-106.80410156249992,75.97465820312506],[-106.67700195312499,76.02373046875002],[-106.52861328124993,76.05302734375005],[-106.39658203124996,76.06010742187507],[-105.90483398437496,76.00898437499995],[-105.71132812499998,75.96699218750001],[-105.63266601562493,75.94536132812505],[-105.60444335937497,75.929931640625],[-105.56328125000002,75.88066406250002],[-105.48090820312503,75.74565429687505],[-105.48144531249996,75.70224609374998],[-105.51948242187497,75.63237304687505],[-105.67841796875003,75.50136718749998],[-105.70263671874999,75.4125],[-105.86259765624997,75.19155273437505],[-105.97197265624996,75.13149414062497],[-106.09262695312495,75.08945312500003],[-106.588232421875,75.01542968750003],[-106.96113281249995,74.94008789062497],[-107.05561523437503,74.92817382812504],[-107.15341796874996,74.9271484375],[-107.46191406250001,74.95214843750003],[-107.82006835937497,75.00004882812502],[-108.02363281249997,74.986474609375],[-108.226611328125,74.95190429687497],[-108.35444335937495,74.94262695312503],[-108.47475585937495,74.94721679687501],[-108.59418945312494,74.95957031250003],[-108.75131835937496,74.99194335937506],[-108.67026367187499,75.00673828125005],[-108.63330078125,75.02329101562503],[-108.66601562500001,75.04033203125005],[-108.831298828125,75.06489257812498],[-109.0025390625,75.01030273437507],[-109.503125,74.882763671875],[-110.17578125,74.839990234375],[-110.38671875,74.81396484375003],[-110.54340820312494,74.78037109375003],[-110.624755859375,74.75268554687497],[-110.74931640624997,74.68769531249998],[-110.94086914062501,74.63872070312505],[-111.28754882812503,74.58515624999995],[-111.72871093750001,74.50195312499997],[-112.51933593749996,74.41684570312503],[-113.01689453124999,74.40190429687502],[-113.51406249999992,74.430078125],[-113.67158203124997,74.45302734375005],[-113.83681640624997,74.48896484374998],[-114.17475585937498,74.57373046875003],[-114.26826171875003,74.60434570312503],[-114.37695312499997,74.67084960937501],[-114.31269531250003,74.71508789062506],[-114.13247070312498,74.76611328125006],[-113.86289062499993,74.81254882812502],[-113.32431640625,74.87529296874999],[-112.835986328125,74.9755859375],[-112.66303710937503,74.99443359375002],[-112.19282226562498,75.00976562500003],[-111.95576171875,75.000390625],[-111.78422851562495,75.00566406250002],[-111.67109375,75.01943359374997],[-111.50327148437499,75.05561523437495],[-111.25795898437495,75.12773437500002],[-111.07890625,75.19521484375],[-111.03349609374996,75.22675781250001],[-111.09345703125001,75.25629882812498],[-111.18120117187503,75.26044921874995],[-111.47392578124997,75.19111328124994],[-111.62084960937497,75.16777343749999],[-111.78085937499996,75.16616210937502],[-112.00048828124994,75.14243164062498],[-112.21416015624996,75.13291015624999],[-112.25551757812497,75.13369140624997],[-112.478076171875,75.2],[-112.5970703125,75.21166992187506],[-112.65239257812499,75.20468750000006],[-112.703125,75.18715820312502],[-112.79960937499995,75.13818359375],[-112.85532226562493,75.12060546874997],[-112.95136718749997,75.10781250000002],[-113.33964843750003,75.09326171875],[-113.71176757812499,75.06860351562503],[-113.79462890625,75.08383789062503],[-113.84497070312494,75.11220703125005],[-113.85537109375002,75.1294921875],[-113.8609375,75.18774414062497],[-113.88603515624996,75.2109375],[-113.85332031249996,75.259375],[-113.81088867187502,75.29633789062498],[-113.75878906249996,75.321728515625],[-113.50302734375,75.39667968749998],[-113.46708984374996,75.41611328125003],[-113.58896484375002,75.41210937500001],[-113.87851562499993,75.37543945312501],[-113.916357421875,75.38818359375003],[-113.98413085937494,75.43007812499997],[-114.01650390624998,75.43427734375001],[-114.05341796874995,75.41689453125002],[-114.07490234374998,75.39238281250002],[-114.12465820312498,75.29121093750001],[-114.16845703124994,75.23950195312503],[-114.28496093749996,75.24995117187504],[-114.42900390625,75.28115234375],[-114.48281249999995,75.28540039062497],[-114.51381835937497,75.27548828125],[-114.50395507812499,75.25800781249998],[-114.35776367187495,75.1712890625],[-114.35610351562498,75.14096679687503],[-114.4517578125,75.08789062499997],[-114.85917968749996,74.99975585937506],[-115.02011718749998,74.97617187500003],[-115.07705078124995,74.98530273437504],[-115.12832031250001,75.00947265624997],[-115.17382812499996,75.048828125],[-115.27963867187502,75.1015625],[-115.34262695312496,75.11337890625],[-115.41318359374995,75.11499023437497],[-115.47807617187503,75.10410156249998],[-115.53730468750001,75.08071289062502],[-115.57407226562496,75.05585937500001],[-115.60898437499995,75.00957031249999],[-115.68315429687496,74.97416992187499],[-115.72885742187496,74.968115234375],[-116.14262695312496,75.04155273437503],[-116.47607421874996,75.17177734375],[-116.84101562499995,75.15151367187497],[-117.00483398437493,75.15610351562499],[-117.50195312499997,75.20385742187496],[-117.56523437499996,75.23334960937504],[-117.60009765624997,75.27167968750001],[-117.596728515625,75.29252929687502],[-117.57607421874997,75.31406250000003],[-117.51313476562503,75.35678710937503],[-117.38779296874998,75.42148437499998],[-117.33554687499998,75.44233398437498],[-117.2576171875,75.45952148437502],[-117.15419921875,75.472998046875],[-116.89077148437497,75.48051757812502],[-116.21274414062495,75.48295898437499],[-116.07714843749994,75.49296874999999],[-115.33535156249998,75.61806640624997],[-115.25068359374997,75.63857421875],[-115.14184570312503,75.67851562500003],[-115.11723632812497,75.69501953125001],[-115.121875,75.705810546875],[-116.03432617187502,75.60668945312497],[-116.42563476562498,75.58535156249997],[-117.0251953125,75.60151367187498],[-117.13793945312499,75.61713867187495],[-117.16362304687495,75.64487304687503],[-117.03857421874999,75.71840820312498],[-116.97265624999996,75.74575195312495],[-116.80214843749995,75.77158203124998],[-116.38964843750001,75.80820312499998],[-115.8380859375,75.840576171875],[-115.47685546874996,75.84130859374997],[-115.17373046875002,75.86699218750007],[-114.99150390625,75.896337890625],[-115.60224609375001,75.89482421875005],[-116.33789062499994,75.88105468750001],[-116.44423828124995,75.890625],[-116.65429687500001,75.92929687500006],[-116.66455078124997,75.95756835937503],[-116.58046875,75.99155273437503],[-116.54965820312502,76.01684570312503],[-116.609765625,76.07373046875],[-116.59130859374997,76.09580078125005],[-116.45424804687495,76.14321289062502],[-116.20986328125,76.19443359374998],[-116.059130859375,76.20170898437505],[-115.76826171874998,76.18422851562502],[-114.939404296875,76.16611328124998],[-114.77861328124997,76.17260742187497],[-114.88017578124999,76.19487304687499],[-115.02456054687501,76.21147460937499],[-115.66445312499998,76.23984375],[-115.796875,76.2525390625],[-115.82216796874997,76.27001953125003],[-115.83173828124995,76.29580078125002],[-115.82558593749995,76.32983398437503],[-115.77929687500001,76.36469726562504],[-115.58066406249995,76.4375],[-114.99848632812501,76.4974609375],[-114.766845703125,76.50571289062498],[-114.53476562499996,76.50175781250006],[-114.29897460937498,76.47480468749998],[-114.19394531249999,76.45146484375005],[-114.141259765625,76.42265625000002],[-114.11577148437496,76.39584960937498],[-114.11279296874997,76.34946289062503],[-114.10146484374998,76.33120117187505],[-114.058837890625,76.30073242187495],[-113.923291015625,76.22915039062505],[-113.82348632812501,76.2068359375],[-113.36298828124998,76.24843749999997],[-113.1712890625,76.25776367187501],[-112.97846679687498,76.24467773437502],[-112.69760742187496,76.20170898437505],[-112.33388671874994,76.071875],[-111.86523437500003,75.93930664062506],[-111.86762695312498,75.9107421875],[-112.04716796874996,75.86640625000004],[-112.080908203125,75.84741210937497],[-112.05668945312496,75.83422851562506],[-111.87739257812503,75.82553710937506],[-111.709375,75.83208007812505],[-111.54912109375,75.82211914062498],[-111.51323242187499,75.81069335937497],[-111.454443359375,75.762158203125],[-111.37275390624995,75.67646484374998],[-111.27568359374999,75.6125],[-111.16328125000003,75.57021484375],[-111.05268554687494,75.54853515625001],[-110.88959960937495,75.54692382812505],[-110.72558593750003,75.55952148437495],[-110.459375,75.555322265625],[-109.08637695312501,75.506494140625],[-109.00502929687497,75.51499023437502],[-108.94716796875,75.54179687499999],[-108.91259765624997,75.58696289062503],[-108.89951171874998,75.62407226562505],[-108.91821289062494,75.67475585937498],[-108.94477539062495,75.69897460937503],[-109.79604492187501,75.86303710937497],[-109.87050781249998,75.929052734375],[-109.454638671875,76.02124023437506],[-109.42475585937495,76.04252929687505],[-109.41660156249996,76.07182617187505],[-109.43037109374994,76.109130859375],[-109.48681640624999,76.14467773437497],[-109.71015625000001,76.21245117187502],[-109.90781249999995,76.22265625000004],[-110.20078124999993,76.28945312499997],[-110.24702148437495,76.30634765624995],[-110.28486328124994,76.33295898437495],[-110.31445312500001,76.369384765625],[-110.30947265624997,76.39741210937504],[-110.27001953125003,76.41699218750003],[-109.98159179687498,76.48476562499997],[-109.86484374999998,76.52236328125],[-109.50502929687497,76.69165039062503],[-109.33852539062497,76.75996093750001],[-109.21953124999997,76.79199218750003],[-109.09824218749996,76.811865234375],[-108.831640625,76.82114257812503],[-108.55390625,76.75805664062497],[-108.49238281249998,76.75419921875007],[-108.46699218749997,76.73759765625007],[-108.47778320312503,76.70825195312503],[-108.51245117187499,76.6802734375],[-108.61181640624999,76.62973632812503],[-108.63515624999994,76.60854492187497],[-108.62763671875,76.58671875000005],[-108.55952148437498,76.53632812500001],[-108.53862304687497,76.503125],[-108.52353515624992,76.44716796875005],[-108.5125,76.43891601562495],[-108.34545898437499,76.39165039062502],[-108.19355468749994,76.33007812499999],[-108.123193359375,76.23344726562502],[-108.17792968749995,76.20004882812498],[-108.305810546875,76.15405273437501],[-108.38188476562503,76.11572265625003],[-108.40615234375001,76.08505859375],[-108.38681640624998,76.06655273437505],[-108.29238281250001,76.05712890625]]],[[[-89.72646484374994,76.50742187499998],[-89.77329101562498,76.49384765624995],[-89.92412109374996,76.50087890624997],[-89.97412109374994,76.487548828125],[-90.05429687500003,76.49511718750006],[-90.16455078125003,76.523583984375],[-90.29350585937499,76.57949218749998],[-90.44096679687502,76.66279296875],[-90.55625,76.73457031249998],[-90.5625,76.75429687499998],[-90.52480468749997,76.787841796875],[-90.40952148437499,76.81015625],[-90.13632812499995,76.83696289062505],[-89.94877929687493,76.83623046874999],[-89.77456054687497,76.78203125000003],[-89.72529296874995,76.76342773437499],[-89.69541015625,76.74116210937498],[-89.69443359374998,76.71982421874999],[-89.70864257812494,76.701171875],[-89.78754882812495,76.65961914062498],[-89.82211914062498,76.63061523437503],[-89.82192382812501,76.60219726562501],[-89.80478515625,76.56108398437499],[-89.77294921875,76.53393554687506],[-89.72636718750002,76.52080078125005],[-89.72646484374994,76.50742187499998]]],[[[-113.56069335937494,76.74326171874998],[-113.71245117187495,76.71054687500006],[-114.75146484374996,76.75888671875003],[-114.80830078125,76.77407226562502],[-114.83525390624999,76.79467773437497],[-114.64707031250002,76.85102539062498],[-114.41987304687501,76.87534179687506],[-113.89165039062495,76.89487304687503],[-113.70751953125,76.87294921875002],[-113.585400390625,76.84731445312502],[-113.51650390624998,76.82504882812503],[-113.48759765624997,76.78325195312505],[-113.56069335937494,76.74326171874998]]],[[[-94.29497070312493,76.91245117187498],[-94.10795898437496,76.90375976562498],[-93.94804687499996,76.91708984375003],[-93.81093750000002,76.91416015624996],[-93.60839843749997,76.87382812500002],[-93.420751953125,76.81220703124998],[-93.2765625,76.784326171875],[-93.23002929687496,76.77026367187497],[-93.21186523437501,76.75468749999999],[-93.18925781250002,76.70800781249997],[-93.18999023437499,76.686376953125],[-93.20058593750002,76.66909179687497],[-93.26367187499997,76.62646484374997],[-93.31674804687493,76.57368164062498],[-93.42626953124997,76.52714843749999],[-93.48457031249995,76.49204101562503],[-93.53457031250002,76.44770507812497],[-93.421875,76.47412109375003],[-92.99536132812493,76.62041015624999],[-92.71625976562493,76.60297851562498],[-92.29702148437497,76.61601562499999],[-91.78945312499994,76.67578125],[-91.54843749999995,76.68510742187502],[-91.305029296875,76.68076171875003],[-91.12426757812497,76.66191406250002],[-90.73842773437495,76.58134765625002],[-90.60478515624999,76.54296875000003],[-90.55463867187497,76.515771484375],[-90.54262695312494,76.495751953125],[-90.62163085937496,76.46469726562498],[-90.8640625,76.48359375000001],[-91.26303710937498,76.50024414062503],[-91.33598632812502,76.510595703125],[-91.39809570312497,76.50976562499999],[-91.44326171875002,76.49853515625003],[-91.41508789062496,76.45585937500005],[-91.33388671874994,76.44648437499998],[-90.85478515624996,76.43730468749999],[-89.28452148437498,76.30161132812505],[-89.21909179687495,76.25820312499998],[-89.23652343749995,76.239013671875],[-89.29208984375,76.21772460937501],[-89.40659179687496,76.18916015624998],[-90.31206054687495,76.15800781250002],[-90.82734374999995,76.18559570312505],[-91.260400390625,76.22998046875003],[-91.40732421874998,76.22006835937506],[-91.27944335937497,76.15991210937497],[-91.01977539062499,76.14155273437495],[-90.80239257812502,76.10595703125],[-90.71210937500001,76.07617187500006],[-90.25136718749994,76.05346679687503],[-90.17602539062494,76.03027343750003],[-90.03276367187499,75.97089843750001],[-89.91254882812501,75.96630859375006],[-89.79340820312498,75.92485351562505],[-89.6953125,75.85361328125],[-89.650048828125,75.844091796875],[-89.51123046874997,75.85693359374997],[-89.27758789062496,75.79506835937495],[-89.20488281249999,75.76201171874999],[-89.204541015625,75.73725585937501],[-89.25664062499996,75.69848632812503],[-89.36123046874997,75.64580078125005],[-89.62543945312495,75.583740234375],[-89.64604492187499,75.5650390625],[-89.33730468749997,75.57236328125],[-89.28041992187502,75.56411132812498],[-88.91669921874998,75.45395507812503],[-88.86884765625001,75.45195312500007],[-88.83891601562496,75.4634765625],[-88.80410156249995,75.50249023437505],[-88.81962890624993,75.53857421875003],[-88.86406250000002,75.58862304687503],[-88.85214843749998,75.62490234375005],[-88.78393554687494,75.64746093750001],[-88.71489257812499,75.65864257812498],[-88.64497070312495,75.65844726562503],[-88.56904296874995,75.64511718749998],[-88.201318359375,75.51201171875005],[-87.72973632812503,75.57563476562495],[-87.64365234374998,75.54707031249997],[-87.57241210937494,75.49365234375003],[-87.53911132812502,75.48486328125003],[-87.3646484375,75.59130859375003],[-87.25693359374998,75.61772460937499],[-86.814453125,75.49135742187502],[-86.54472656250002,75.46337890624999],[-86.43652343749999,75.43627929687497],[-86.23632812499997,75.40634765625],[-85.95146484374993,75.39501953124999],[-85.90454101562497,75.44194335937506],[-86.06875,75.50224609375],[-85.97299804687498,75.5287109375],[-85.58125,75.57978515624998],[-85.372314453125,75.57260742187503],[-84.98676757812494,75.64492187500002],[-84.75019531249997,75.65468749999997],[-84.60488281249995,75.653466796875],[-84.12763671874998,75.76264648437504],[-84.01425781249998,75.779931640625],[-83.931982421875,75.81894531250003],[-83.74458007812493,75.81284179687503],[-83.23710937499993,75.75083007812503],[-83.09340820312495,75.7564453125],[-82.55346679687503,75.81826171875],[-82.35385742187502,75.83334960937506],[-82.153662109375,75.83105468750003],[-81.64736328125,75.79492187500003],[-81.2685546875,75.75600585937502],[-81.15078124999997,75.73554687500001],[-81.19267578124999,75.684375],[-81.17353515624998,75.66923828125],[-81.12441406250002,75.65815429687498],[-81.00078125,75.643115234375],[-80.52773437499997,75.64213867187499],[-80.32197265624997,75.62910156250001],[-80.15834960937494,75.58115234375],[-80.11918945312496,75.562060546875],[-80.12573242187497,75.54213867187497],[-80.28662109374997,75.490380859375],[-80.26044921874995,75.47944335937497],[-80.09960937499997,75.46743164062502],[-79.73769531249995,75.46147460937503],[-79.66020507812499,75.44951171875002],[-79.58574218749999,75.38486328124998],[-79.50781250000003,75.29536132812494],[-79.50908203125002,75.25981445312499],[-79.63442382812497,75.19931640625002],[-79.97714843749998,75.11860351562501],[-80.35756835937494,75.05156250000002],[-80.38198242187494,75.03417968750003],[-80.26064453125,75.00214843750001],[-80.13525390624994,74.98808593750006],[-80.03642578124995,74.99091796875001],[-79.73300781249998,75.02143554687501],[-79.66406249999997,75.02084960937498],[-79.52480468750002,74.98969726562495],[-79.46040039062495,74.95878906250005],[-79.40141601562502,74.91762695312502],[-79.50795898437495,74.880126953125],[-79.944482421875,74.83364257812504],[-80.20244140624996,74.89482421874999],[-80.28920898437497,74.90830078124998],[-80.34775390624998,74.90297851562505],[-80.31455078124998,74.87617187500001],[-80.18974609374993,74.82768554687497],[-80.14892578124997,74.79570312500005],[-80.192236328125,74.78017578125],[-80.21269531249999,74.74946289062504],[-80.21025390624996,74.70361328125003],[-80.22060546875002,74.65703125000005],[-80.26274414062499,74.58447265625],[-80.27773437500002,74.58159179687502],[-81.226220703125,74.566650390625],[-81.340478515625,74.55351562499997],[-81.60717773437497,74.50234374999997],[-81.80883789062503,74.47661132812505],[-81.94018554687494,74.47270507812505],[-82.068505859375,74.482080078125],[-82.41474609375001,74.53520507812497],[-82.64541015624998,74.52519531249999],[-82.73579101562495,74.53027343749997],[-82.93105468750002,74.56557617187497],[-82.97841796875,74.58344726562495],[-83.05761718749997,74.62978515625],[-83.11699218749999,74.69311523437499],[-83.1123046875,74.73212890624995],[-83.08730468749997,74.78837890625005],[-83.10263671874996,74.81655273437501],[-83.15830078124995,74.81674804687498],[-83.22031249999996,74.82841796875005],[-83.40703125000002,74.88481445312499],[-83.52207031249999,74.90146484375],[-83.5435546875,74.89228515625001],[-83.50976562499997,74.84819335937499],[-83.48730468750003,74.83413085937497],[-83.36420898437498,74.80190429687497],[-83.34130859375003,74.76459960937501],[-83.39370117187497,74.67016601562506],[-83.41220703125,74.65498046874997],[-83.53188476562494,74.58569335937497],[-83.621875,74.56591796875003],[-83.86806640624997,74.56440429687498],[-84.24516601562496,74.51518554687499],[-84.42553710937501,74.50810546875007],[-84.66708984375003,74.51958007812502],[-84.81826171875,74.54199218750004],[-84.91630859374999,74.56767578125005],[-85.01152343749993,74.60419921875001],[-85.06142578125,74.60693359375003],[-85.086767578125,74.52768554687498],[-85.133447265625,74.517431640625],[-85.21430664062495,74.51865234375],[-85.33925781250002,74.54331054687503],[-85.44233398437495,74.6005859375],[-85.47441406250002,74.60034179687503],[-85.488671875,74.56699218749998],[-85.51171874999997,74.54511718749998],[-85.54350585937495,74.534765625],[-85.80800781249994,74.49897460937498],[-85.95561523437499,74.49877929687501],[-86.10986328124997,74.53974609375003],[-86.21093749999996,74.53559570312498],[-86.340576171875,74.51347656250002],[-86.655419921875,74.55541992187503],[-86.73076171874999,74.55703125],[-86.66611328124996,74.489111328125],[-86.77016601562502,74.47861328125],[-86.99472656250003,74.48032226562499],[-87.36376953125,74.50219726562503],[-87.59257812499996,74.47036132812502],[-88.00585937499997,74.48935546874996],[-88.42304687499995,74.49414062499997],[-88.50073242187497,74.50971679687495],[-88.55566406249997,74.54145507812501],[-88.55786132812497,74.56972656250002],[-88.53764648437495,74.60878906249997],[-88.47661132812496,74.66689453125],[-88.37470703124998,74.74414062500003],[-88.33955078125001,74.78486328124995],[-88.43144531249997,74.80371093749997],[-88.48818359375,74.82890625000005],[-88.53496093749993,74.83173828125001],[-88.68203124999997,74.802001953125],[-88.77783203124993,74.71518554687498],[-88.85107421874994,74.68999023437499],[-88.88339843749995,74.71108398437502],[-88.90781249999995,74.76381835937502],[-88.94013671874997,74.78950195312501],[-88.98037109374998,74.7880859375],[-89.01962890625,74.77402343749996],[-89.05786132812497,74.74726562500004],[-89.11528320312496,74.73759765625],[-89.19194335937493,74.744873046875],[-89.21914062499995,74.73178710937496],[-89.19682617187496,74.6982421875],[-89.18906249999998,74.66684570312498],[-89.19580078125,74.63754882812498],[-89.26186523437497,74.60917968750005],[-89.45,74.56791992187499],[-89.55869140624993,74.55473632812506],[-89.84438476562498,74.54858398437497],[-90.01533203124998,74.56088867187498],[-90.36162109375002,74.61044921875003],[-90.55327148437499,74.61274414062497],[-90.78408203125002,74.69589843750003],[-90.96679687500003,74.71508789062506],[-90.95751953125,74.74516601562505],[-90.87763671874998,74.80107421875007],[-90.88022460937498,74.8177734375],[-91.12988281249994,74.73627929687501],[-91.163720703125,74.71025390625005],[-91.13457031250002,74.64985351562498],[-91.16772460937503,74.6455078125],[-91.339453125,74.66723632812497],[-91.50834960937496,74.65068359374999],[-91.54912109375,74.65556640624999],[-91.66577148437496,74.69916992187501],[-91.87104492187495,74.74350585937498],[-91.96157226562502,74.79321289062497],[-92.10253906249993,74.94838867187497],[-92.17416992187498,75.05107421875002],[-92.16523437499993,75.07202148437503],[-92.06049804687501,75.10097656249995],[-92.07631835937494,75.12353515625003],[-92.20683593749996,75.18125],[-92.34746093749993,75.22978515625002],[-92.3892578125,75.263330078125],[-92.408349609375,75.297265625],[-92.427099609375,75.34638671874995],[-92.427978515625,75.38271484375],[-92.41108398437491,75.40625],[-92.33066406249998,75.47944335937497],[-92.11044921874996,75.61064453125007],[-92.08071289062494,75.63447265625004],[-92.06884765625003,75.65791015625],[-92.09916992187499,75.72729492187503],[-92.14184570312497,75.79682617187498],[-92.18510742187499,75.84653320312496],[-92.30659179687495,75.91513671875],[-92.47373046874998,75.986474609375],[-92.70888671875002,76.11445312500004],[-92.88330078125003,76.21396484375006],[-93.09174804687495,76.35400390624997],[-93.19228515624998,76.36601562500005],[-93.30859374999999,76.35961914062497],[-93.55996093749994,76.31142578125002],[-93.64443359375002,76.28852539062495],[-93.665185546875,76.27314453125004],[-93.85234375000002,76.26967773437502],[-94.38256835937503,76.28232421875003],[-94.58535156249994,76.29716796875005],[-94.73671874999995,76.29326171875005],[-94.99663085937499,76.25771484375],[-95.27387695312498,76.26440429687503],[-95.447412109375,76.36303710937506],[-95.841650390625,76.41616210937501],[-95.95927734374999,76.44599609374998],[-96.03969726562494,76.48671875000002],[-96.01308593749994,76.51333007812502],[-95.78886718749999,76.53720703125],[-95.69570312499994,76.563427734375],[-95.65097656249998,76.58466796874998],[-95.87319335937492,76.56640625],[-95.97133789062495,76.56962890625005],[-96.63969726562496,76.7029296875],[-96.84565429687501,76.726416015625],[-96.88071289062495,76.73833007812503],[-96.89799804687502,76.75400390625003],[-96.89755859374999,76.77348632812499],[-96.87802734375003,76.80278320312502],[-96.67939453124998,76.76577148437502],[-96.59028320312493,76.763037109375],[-96.45117187500003,76.77407226562502],[-96.40156249999995,76.79721679687503],[-96.433203125,76.81069335937502],[-96.66103515624997,76.85517578125004],[-96.77114257812502,76.88891601562497],[-96.81352539062493,76.91347656250002],[-96.76982421875002,76.9482421875],[-96.75830078124997,76.97177734374998],[-96.68510742187499,76.98500976562502],[-96.55009765625002,76.987939453125],[-96.37729492187496,77.00458984375001],[-96.06123046874998,77.05004882812503],[-95.84951171875002,77.06621093750005],[-95.63823242187496,77.06376953124999],[-95.12641601562495,77.01733398437501],[-94.61611328125,76.958349609375],[-94.29497070312493,76.91245117187498]]],[[[-115.55126953125003,77.36328125],[-115.47558593749999,77.32431640625003],[-115.47021484375003,77.30864257812505],[-115.506640625,77.29213867187497],[-115.62392578124998,77.26591796875005],[-116.21372070312496,77.17822265625003],[-116.32919921874995,77.137060546875],[-116.28574218749998,77.10166015624998],[-116.07309570312502,77.02998046875004],[-115.85683593750001,76.96923828124999],[-115.81005859374999,76.939111328125],[-115.91289062499997,76.90844726562506],[-116.10976562500002,76.918212890625],[-116.18325195312497,76.91557617187497],[-116.252734375,76.90141601562505],[-116.23398437500002,76.87431640625002],[-116.01621093749998,76.78452148437503],[-115.94458007812493,76.73623046874997],[-115.94628906250003,76.71127929687503],[-115.98481445312495,76.68691406250005],[-116.07622070312493,76.65351562499998],[-116.220458984375,76.61108398437506],[-116.46762695312499,76.57714843749997],[-116.9992187499999,76.531591796875],[-117.01679687499998,76.49609374999997],[-117.01328124999996,76.46909179687498],[-117.02617187499992,76.40351562500004],[-117.04448242187493,76.37309570312505],[-117.10776367187495,76.32192382812502],[-117.15390625,76.29799804687502],[-117.23359375,76.28154296875005],[-117.34692382812499,76.27255859375],[-117.49238281249997,76.27270507812503],[-117.73242187500001,76.31674804687503],[-117.84140625000002,76.34482421874998],[-117.99296874999997,76.40581054687505],[-118.02021484374993,76.446533203125],[-118.00541992187493,76.4966796875],[-117.96542968749998,76.57402343750005],[-117.89951171874996,76.65307617187497],[-117.80761718749997,76.733935546875],[-117.78046874999995,76.78427734374998],[-117.81791992187493,76.80410156250002],[-117.88081054687497,76.80507812500005],[-118.07641601562503,76.77236328125005],[-118.20278320312501,76.76049804687503],[-118.30058593749996,76.73666992187506],[-118.36987304687493,76.70097656250007],[-118.40913085937494,76.66230468750001],[-118.43100585937495,76.58798828125003],[-118.46816406249998,76.54736328125003],[-118.57368164062498,76.52519531250005],[-118.73154296874999,76.52558593750004],[-118.79140624999994,76.51298828125005],[-118.82075195312497,76.48583984375003],[-118.799560546875,76.46376953124995],[-118.643896484375,76.41752929687505],[-118.62451171874996,76.365869140625],[-118.64340820312499,76.33466796874995],[-118.81157226562496,76.27709960937503],[-118.85112304687493,76.25781250000003],[-118.95546874999995,76.16767578124995],[-118.99394531249997,76.144873046875],[-119.080712890625,76.12407226562505],[-119.16821289062497,76.12651367187499],[-119.24926757812496,76.15947265625005],[-119.36791992187496,76.22177734375002],[-119.44780273437499,76.27539062500006],[-119.488818359375,76.32031250000006],[-119.52373046875,76.34028320312504],[-119.58037109375,76.32651367187498],[-119.64892578125003,76.27988281249998],[-119.65078124999994,76.24370117187499],[-119.63583984375,76.18989257812504],[-119.6396484375,76.15668945312501],[-119.73964843749994,76.11772460937499],[-119.72519531250002,76.099951171875],[-119.54970703124997,76.05205078125002],[-119.52714843749999,76.03056640624997],[-119.52612304687494,75.99721679687505],[-119.53774414062502,75.982177734375],[-119.60795898437493,75.98457031249994],[-119.66713867187501,75.94599609374997],[-119.73481445312503,75.9154296875],[-119.91289062499997,75.85883789062501],[-120.16054687499998,75.85195312500002],[-120.36538085937495,75.82475585937497],[-120.40888671874995,75.82563476562498],[-120.45830078124997,75.87016601562499],[-120.51381835937501,75.95834960937503],[-120.56328124999997,76.00844726562502],[-120.63715820312498,76.03403320312496],[-120.728662109375,76.13408203125005],[-120.77158203125003,76.16630859375002],[-120.81337890625001,76.17929687499999],[-120.84838867187494,76.18266601562499],[-120.90009765625001,76.16342773437498],[-121.01928710937496,76.02026367187503],[-121.21347656249999,75.98369140625003],[-121.32016601562498,75.97700195312501],[-121.427978515625,75.98110351562505],[-121.69453124999993,76.02031250000003],[-121.90820312499996,76.03476562500006],[-122.05742187499997,76.01821289062497],[-122.30273437499996,75.95981445312505],[-122.40048828124998,75.94423828125],[-122.53305664062496,75.95092773437503],[-122.59111328124999,75.97299804687498],[-122.64047851562502,76.00908203125005],[-122.64594726562497,76.031005859375],[-122.60737304687501,76.03867187500003],[-122.54624023437499,76.08051757812495],[-122.54819335937495,76.097314453125],[-122.608642578125,76.12143554687503],[-122.60947265625,76.14028320312497],[-122.58789062499994,76.15297851562497],[-122.59272460937497,76.16206054687495],[-122.62392578125002,76.16748046875],[-122.68466796874996,76.16240234375002],[-122.90278320312497,76.13471679687498],[-122.87827148437496,76.16479492187497],[-122.77402343749995,76.227685546875],[-122.51938476562502,76.353173828125],[-122.42304687499995,76.39008789062495],[-122.36538085937501,76.401220703125],[-121.61376953125001,76.44145507812505],[-121.56113281250003,76.45346679687499],[-121.20390625,76.62216796875],[-121.10200195312504,76.66074218750003],[-120.99760742187499,76.69145507812499],[-120.48535156249997,76.79321289062501],[-120.43759765625,76.81645507812505],[-120.357666015625,76.88691406250001],[-120.31093749999997,76.90458984375007],[-120.200341796875,76.93134765625001],[-119.83115234375002,77.073876953125],[-119.49482421874998,77.17690429687502],[-119.32397460937499,77.24067382812495],[-119.09018554687496,77.30507812500002],[-118.82001953125,77.33271484374997],[-118.00517578124999,77.381201171875],[-117.41860351562495,77.31738281250006],[-117.27910156249993,77.31337890625002],[-117.21079101562498,77.33144531249998],[-117.14897460937499,77.36083984375003],[-117.061376953125,77.348486328125],[-116.84355468749993,77.33955078124995],[-116.7953125,77.34658203124997],[-116.70361328124994,77.37993164062502],[-116.76625976562501,77.39824218750002],[-117.02978515624994,77.43188476562503],[-117.04575195312502,77.44897460937503],[-117.03974609374995,77.46513671875005],[-116.94716796875001,77.50385742187504],[-116.83530273437493,77.52885742187505],[-116.51132812500003,77.54760742187496],[-116.36259765625,77.54282226562498],[-116.20888671874995,77.51601562500002],[-116.00800781249998,77.46064453125001],[-115.55126953125003,77.36328125]]],[[[-89.83325195312501,77.26762695312503],[-90.0947265625,77.21040039062501],[-90.22827148437503,77.21245117187499],[-90.99321289062499,77.32949218750001],[-91.14726562499993,77.3873046875],[-91.17661132812498,77.42626953125003],[-91.18505859375,77.48154296874999],[-91.18266601562496,77.55717773437503],[-91.14946289062493,77.60805664062502],[-91.10913085937496,77.625732421875],[-91.01904296875003,77.64389648437503],[-90.84257812499996,77.65498046874998],[-90.67485351562496,77.64863281250004],[-90.42275390624994,77.62836914062498],[-90.17192382812502,77.59467773437495],[-89.83896484375002,77.49140624999998],[-89.71948242187503,77.44213867187497],[-89.69418945312503,77.378125],[-89.69458007812503,77.33896484375],[-89.71201171875,77.31040039062506],[-89.74667968749998,77.29257812499996],[-89.83325195312501,77.26762695312503]]],[[[-104.55815429687497,77.14174804687497],[-104.71137695312501,77.12397460937498],[-105.01557617187498,77.16459960937502],[-105.21508789062496,77.182080078125],[-105.37993164062496,77.25424804687498],[-105.55634765625003,77.35263671875003],[-105.69511718749995,77.46137695312498],[-105.74721679687501,77.52539062499997],[-105.84814453124996,77.56342773437498],[-105.88315429687499,77.62651367187505],[-106.06611328124995,77.72539062500005],[-106.03559570312495,77.73984375000005],[-105.86298828124997,77.75439453125],[-105.58789062499997,77.73598632812497],[-105.45610351562503,77.70092773437503],[-105.28964843749996,77.64208984375003],[-105.07387695312497,77.54829101562501],[-105.00722656249998,77.50673828125],[-104.994287109375,77.44965820312501],[-104.95532226562496,77.418701171875],[-104.77021484375,77.41323242187505],[-104.54223632812501,77.33774414062503],[-104.50078125,77.30854492187504],[-104.45371093749999,77.24912109375],[-104.45698242187495,77.22080078124999],[-104.493359375,77.16235351562499],[-104.55815429687497,77.14174804687497]]],[[[-95.484375,77.79199218750003],[-95.23305664062502,77.75380859374997],[-94.95991210937495,77.77407226562501],[-94.66679687499992,77.776220703125],[-94.01474609374998,77.75991210937497],[-93.582861328125,77.77075195312504],[-93.47109374999995,77.76430664062497],[-93.30097656249995,77.73979492187505],[-93.21074218749996,77.71020507812497],[-93.12871093749993,77.66015624999997],[-93.33916015624999,77.62968749999999],[-93.51958007812499,77.47441406250007],[-93.54394531249997,77.466650390625],[-93.74018554687498,77.46455078125001],[-93.836181640625,77.45224609375],[-94.40898437499999,77.47421875000003],[-95.98706054687497,77.484130859375],[-96.056103515625,77.50346679687505],[-96.26386718749995,77.59453125000002],[-96.27661132812497,77.63056640624998],[-96.23916015625,77.67255859375],[-96.19458007812497,77.70053710937503],[-96.14296875000002,77.71435546875],[-95.68393554687503,77.78227539062499],[-95.484375,77.79199218750003]]],[[[-101.6935546875,77.69658203125005],[-101.83105468750001,77.68735351562499],[-102.079833984375,77.69218750000002],[-102.37783203124995,77.728125],[-102.45820312499998,77.77016601562502],[-102.47504882812495,77.83666992187497],[-102.47153320312495,77.87348632812501],[-102.44770507812498,77.88061523437506],[-102.26318359374996,77.88935546874995],[-101.91787109374995,77.89960937500001],[-101.63940429687497,77.89208984374997],[-101.32202148437496,77.854150390625],[-101.19321289062493,77.82978515624998],[-101.12758789062498,77.81259765625003],[-101.04624023437502,77.77783203124997],[-101.019580078125,77.76245117187503],[-101.00205078124996,77.73510742187497],[-101.39765625000001,77.72905273437499],[-101.58457031249999,77.71831054687502],[-101.6935546875,77.69658203125005]]],[[[-113.83247070312497,77.75463867187506],[-114.105908203125,77.72070312499997],[-114.28720703124998,77.72148437500005],[-114.60834960937494,77.76933593750002],[-114.98041992187497,77.91542968750002],[-115.02934570312499,77.967529296875],[-114.89042968749995,77.97690429687503],[-114.78950195312498,77.992919921875],[-114.72646484374994,78.01552734375],[-114.606884765625,78.04033203124999],[-114.33037109374997,78.07753906250002],[-114.296875,78.06318359375001],[-114.30288085937497,78.03271484375001],[-114.27983398437499,78.00429687500002],[-114.18095703125,77.99824218750004],[-114.08720703125,77.97792968749997],[-113.89775390624995,77.91557617187507],[-113.76801757812497,77.903564453125],[-113.72138671875,77.88989257812497],[-113.69667968750002,77.86894531250007],[-113.61791992187496,77.83242187499998],[-113.61938476562499,77.81347656250006],[-113.72583007812501,77.77578125],[-113.83247070312497,77.75463867187506]]],[[[-110.45805664062495,78.10322265625001],[-109.656884765625,78.07924804687501],[-109.62226562499994,78.07475585937499],[-109.61904296875,78.05683593749998],[-109.67939453124995,77.99931640625007],[-109.77177734374995,77.95742187499997],[-110.19951171874996,77.90483398437502],[-110.75112304687498,77.85722656249999],[-110.865625,77.834130859375],[-110.85654296874996,77.82036132812502],[-110.81162109374996,77.80317382812498],[-110.71938476562501,77.78144531250001],[-110.29218750000001,77.78637695312503],[-110.189208984375,77.777001953125],[-110.15273437500002,77.76293945312506],[-110.13085937500001,77.74238281249995],[-110.11757812499997,77.715576171875],[-110.11689453125001,77.62470703124995],[-110.13945312499999,77.57211914062498],[-110.19848632812501,77.52451171874998],[-110.37153320312501,77.490625],[-110.68286132812503,77.44589843750003],[-110.89399414062495,77.42597656249998],[-111.06044921874992,77.43315429687502],[-111.22622070312495,77.42851562500005],[-111.95195312500002,77.344189453125],[-112.17651367187503,77.34375],[-112.37265625000002,77.36411132812498],[-112.64379882812501,77.44370117187502],[-112.92563476562496,77.474951171875],[-113.04604492187498,77.5107421875],[-113.16435546875,77.5302734375],[-113.19711914062495,77.55883789062503],[-113.20854492187496,77.58017578125003],[-113.188623046875,77.59975585937502],[-113.13740234374994,77.61752929687499],[-113.120654296875,77.63261718750003],[-113.16777343749999,77.67646484375001],[-113.18950195312497,77.71831054687502],[-113.27128906249996,77.77841796875],[-113.28344726562494,77.81303710937503],[-113.28295898437503,77.83564453125004],[-113.2693359375,77.86005859375004],[-113.21518554687498,77.90351562500001],[-113.18706054687503,77.91235351562503],[-113.02163085937498,77.91914062499998],[-112.80454101562499,77.94160156250004],[-112.30458984375,78.00678710937498],[-111.20659179687496,78.08813476562506],[-110.87324218749998,78.080615234375],[-110.72734375000003,78.09658203125],[-110.45805664062495,78.10322265625001]]],[[[-103.00336914062494,78.14643554687501],[-103.11821289062496,78.12636718750002],[-103.25224609375002,78.13813476562501],[-103.27099609375001,78.150634765625],[-103.27358398437501,78.16577148437506],[-103.26005859375,78.18349609375001],[-103.11044921874999,78.24584960937503],[-102.97329101562494,78.26723632812502],[-102.89179687499995,78.27124023437506],[-102.82553710937495,78.25004882812499],[-102.78828125,78.21816406249997],[-103.00336914062494,78.14643554687501]]],[[[-109.81596679687499,78.65039062500003],[-109.64096679687495,78.59208984375005],[-109.58085937499996,78.59326171875],[-109.50415039062496,78.58247070312503],[-109.46728515625,78.56718750000002],[-109.36220703125,78.49287109374998],[-109.34213867187499,78.45600585937504],[-109.33603515624999,78.40844726562503],[-109.35209960937499,78.36865234375],[-109.39052734375,78.33666992187504],[-109.48447265624995,78.31640625],[-109.7087890625,78.30375976562502],[-110.021875,78.32280273437507],[-110.29345703125,78.29819335937503],[-110.41835937499997,78.29497070312499],[-110.755078125,78.31074218750001],[-110.84003906249997,78.32231445312505],[-111.02675781250001,78.36762695312495],[-111.16918945312497,78.38627929687505],[-111.22900390625,78.37631835937503],[-111.30048828125,78.33657226562502],[-111.43505859374997,78.28735351562503],[-111.51748046874997,78.27470703125005],[-111.75971679687503,78.28295898437501],[-112.13125,78.366064453125],[-112.5578125,78.34150390624998],[-112.99990234374998,78.29291992187501],[-113.172509765625,78.28378906250003],[-113.22304687499998,78.29790039062505],[-113.29257812499993,78.334375],[-113.28168945312494,78.35278320312506],[-113.14995117187502,78.40839843750001],[-112.85585937499997,78.46684570312502],[-112.64082031249994,78.49980468750007],[-112.21401367187494,78.54780273437498],[-111.70878906249995,78.57470703125006],[-111.51987304687502,78.60322265625001],[-111.40034179687498,78.64404296874996],[-111.07148437499997,78.70839843750002],[-110.877587890625,78.73505859375004],[-110.61806640624995,78.75781250000006],[-110.40781249999995,78.75664062499999],[-110.140478515625,78.704443359375],[-109.94086914062503,78.67846679687506],[-109.81596679687499,78.65039062500003]]],[[[-96.20449218749994,78.53129882812499],[-95.96845703124998,78.505126953125],[-95.56113281249998,78.51660156250003],[-95.41293945312498,78.49755859374996],[-95.03120117187501,78.43027343750002],[-94.91538085937495,78.39052734375002],[-94.88774414062502,78.36049804687502],[-94.88715820312498,78.34521484375003],[-95.01386718749995,78.31259765625003],[-95.26787109374999,78.26264648437498],[-95.32924804687497,78.22504882812495],[-95.10273437499993,78.17807617187498],[-94.98779296874997,78.13627929687499],[-94.93603515624997,78.10639648437504],[-94.93427734374998,78.07563476562498],[-95.08701171875,77.99262695312495],[-95.19912109375002,77.96816406250002],[-95.37050781249994,77.97080078125002],[-95.45156249999994,77.963232421875],[-95.67080078125001,77.924462890625],[-96.01157226562496,77.88740234375001],[-96.47685546875,77.87216796875],[-96.60302734374994,77.84931640624997],[-96.83398437500003,77.8119140625],[-96.98964843749994,77.80600585937503],[-97.04047851562497,77.82744140625005],[-97.06381835937495,77.85908203125001],[-97.05195312499993,77.88095703125003],[-97.01909179687499,77.90810546874997],[-97.09331054687502,77.93349609375],[-97.42666015624997,77.98227539062498],[-97.620849609375,78.05024414062495],[-97.64838867187493,78.07163085937506],[-97.65815429687498,78.090625],[-97.22661132812499,78.10322265625001],[-97.04091796875,78.11694335937506],[-96.95834960937495,78.13901367187499],[-96.94467773437499,78.15185546874997],[-97.02734374999997,78.15742187499995],[-97.32304687500002,78.20322265625003],[-97.81904296874997,78.23061523437502],[-97.84272460937501,78.26235351562502],[-98.04951171874995,78.325927734375],[-98.06928710937497,78.38632812500003],[-98.11430664062499,78.40302734374998],[-98.25493164062496,78.42924804687497],[-98.27568359375002,78.43789062499997],[-98.31733398437497,78.47685546875002],[-98.32373046874994,78.49814453125],[-98.315625,78.51748046875002],[-98.06035156249993,78.558349609375],[-98.09599609374997,78.586669921875],[-98.28989257812498,78.69238281250006],[-98.34082031249997,78.75122070312503],[-98.33261718749998,78.77353515625005],[-98.21210937499994,78.80454101562498],[-98.04287109375002,78.80522460937502],[-97.59589843749998,78.79580078124997],[-97.38232421874999,78.78291015625001],[-97.16933593749995,78.75766601562503],[-96.93579101562497,78.72026367187505],[-96.587060546875,78.68710937500003],[-96.47534179687497,78.66518554687502],[-96.26528320312498,78.595361328125],[-96.24262695312498,78.573193359375],[-96.25649414062497,78.55112304687503],[-96.20449218749994,78.53129882812499]]],[[[-103.42602539062499,79.315625],[-103.191650390625,79.29531250000005],[-102.91435546875002,79.23110351562502],[-102.65229492187501,79.09501953125002],[-102.63896484374995,79.07758789062501],[-102.63759765624994,79.05498046875002],[-102.64819335937496,79.02714843750003],[-102.68286132812501,78.99101562500005],[-102.73051757812495,78.96933593749998],[-102.59560546875001,78.94296875000003],[-102.58076171875,78.93012695312498],[-102.59277343749996,78.90092773437499],[-102.57617187499994,78.87939453125003],[-102.49458007812503,78.90068359375002],[-102.42480468750003,78.93320312499998],[-102.40732421875002,78.95410156249996],[-102.39316406249996,79.01030273437507],[-102.18857421874993,79.03837890625002],[-101.97363281249993,79.07919921874998],[-101.87260742187497,79.08837890624997],[-101.70366210937502,79.07890625000002],[-101.2990234375,78.98217773437503],[-101.14458007812497,78.972900390625],[-101.0884765625,78.96152343749998],[-101.03715820312493,78.93901367187502],[-101.03369140624994,78.91469726562505],[-101.11591796875,78.85830078125],[-101.14746093750003,78.82397460937503],[-101.128125,78.80166015625002],[-100.91699218749997,78.78291015625001],[-100.43549804687503,78.8203125],[-100.01474609375002,78.72861328125006],[-99.78183593749999,78.61962890624997],[-99.60942382812493,78.58305664062507],[-99.58212890624999,78.56328125000005],[-99.63110351562501,78.54467773437497],[-99.68017578124997,78.49350585937503],[-99.81831054687497,78.45537109374997],[-99.84780273437502,78.43823242187506],[-99.77412109375001,78.39296874999997],[-99.76865234374998,78.36455078125005],[-99.77822265624997,78.32509765625],[-99.75136718750001,78.30297851562503],[-99.56245117187497,78.279345703125],[-99.13154296875003,78.117529296875],[-99.053125,78.07236328125003],[-99.00458984375001,78.015966796875],[-98.99960937499998,77.996875],[-99.061181640625,77.965625],[-99.128369140625,77.87714843749995],[-99.16640625000002,77.85693359375003],[-99.34130859374996,77.83964843750005],[-99.65913085937495,77.82407226562498],[-99.955908203125,77.79379882812503],[-100.27465820312503,77.83271484374995],[-100.58603515624996,77.89179687500001],[-100.68027343749998,77.93066406250003],[-100.75791015624998,77.97768554687502],[-100.77822265624995,77.996044921875],[-100.80957031250003,78.07163085937506],[-100.82617187499994,78.08774414062506],[-100.95761718749999,78.130224609375],[-101.07412109375,78.19384765625],[-101.29799804687495,78.19936523437495],[-101.82949218749998,78.26411132812501],[-102.05698242187496,78.27954101562504],[-102.28447265624995,78.275],[-102.60698242187502,78.24892578125002],[-102.66767578124993,78.25590820312502],[-102.72270507812496,78.27524414062498],[-102.77207031249998,78.30688476562501],[-102.78432617187498,78.33017578124998],[-102.73134765624995,78.37104492187495],[-103.67724609375,78.31958007812501],[-103.94658203124999,78.26000976562496],[-104.32421875,78.26948242187495],[-104.51264648437503,78.29462890625001],[-104.76357421874998,78.35166015625],[-104.87934570312494,78.40126953124997],[-104.98540039062497,78.468017578125],[-104.99555664062498,78.51850585937498],[-104.90961914062498,78.55263671874998],[-104.82011718749996,78.57290039062505],[-104.72705078124999,78.57939453125002],[-104.21396484375002,78.53974609375004],[-103.76435546874998,78.51953124999999],[-103.57050781250003,78.53984375000005],[-103.48256835937495,78.59394531249998],[-103.58798828124992,78.62299804687504],[-104.02084960937502,78.63491210937495],[-103.92851562499995,78.66337890624999],[-103.56269531250003,78.69267578125002],[-103.37158203125,78.73632812500003],[-103.40839843749994,78.75161132812502],[-103.51835937499995,78.76914062500006],[-104.00874023437494,78.76401367187498],[-104.18500976562498,78.78129882812505],[-104.19458007812497,78.79560546875001],[-104.15498046874998,78.81396484375003],[-103.87563476562501,78.90268554687498],[-103.88715820312495,78.91879882812498],[-104.0072265625,78.94785156250003],[-104.112744140625,78.985595703125],[-104.15195312499999,78.989892578125],[-104.39482421875,78.95615234375003],[-104.73603515624995,78.82592773437496],[-104.81743164062502,78.80708007812495],[-104.89550781249996,78.80815429687502],[-104.97021484374997,78.82915039062502],[-104.96953125000002,78.85649414062499],[-104.89340820312496,78.89018554687502],[-104.73525390625,78.99111328124997],[-104.74677734375003,79.02709960937501],[-104.90136718749999,79.05112304687503],[-105.30878906249995,79.03320312500003],[-105.53564453124999,79.03251953125007],[-105.57075195312501,79.06098632812501],[-105.58017578124999,79.11420898437501],[-105.571044921875,79.16420898437497],[-105.51455078124995,79.24248046875002],[-105.43569335937494,79.30224609375003],[-105.38769531249994,79.32358398437503],[-104.84736328125,79.31098632812495],[-103.96459960937501,79.34814453124997],[-103.70639648437499,79.35205078124997],[-103.42602539062499,79.315625]]],[[[-98.79160156249995,79.98110351562505],[-98.76894531249995,79.85087890624999],[-98.78979492187494,79.78540039062497],[-98.840625,79.73706054687496],[-98.88520507812503,79.72568359375006],[-98.94521484374998,79.72407226562498],[-99.21845703124995,79.76186523437497],[-99.30175781249997,79.78408203124997],[-99.30625,79.80288085937497],[-99.33300781249994,79.83955078124998],[-99.515625,79.88715820312501],[-99.85747070312493,79.87949218750003],[-99.99990234375001,79.884033203125],[-100.05683593749997,79.89824218750005],[-100.09243164062494,79.91865234375001],[-100.12602539062493,80.00126953125007],[-100.12036132812493,80.03041992187497],[-100.07851562499995,80.08110351562499],[-100.05327148437496,80.093359375],[-99.802783203125,80.14013671875003],[-99.73120117187499,80.14409179687503],[-99.424853515625,80.12641601562498],[-99.15322265625,80.12421874999998],[-99.01660156249997,80.11113281250006],[-98.894677734375,80.08178710937503],[-98.823193359375,80.03735351562506],[-98.79160156249995,79.98110351562505]]],[[[-91.88554687499999,81.13286132812505],[-91.75498046875002,81.04931640624997],[-91.27246093749993,80.85009765624997],[-91.05390625000001,80.77768554687498],[-90.68291015625002,80.68769531250001],[-90.63671875000003,80.65532226562497],[-90.63247070312497,80.64169921874998],[-90.64301757812498,80.59370117187498],[-90.537255859375,80.575927734375],[-90.217626953125,80.54824218750002],[-89.86186523437497,80.49843750000002],[-89.79785156249999,80.50126953125005],[-89.67382812499997,80.53076171875003],[-89.52480468749997,80.53881835937497],[-89.32905273437498,80.53173828125004],[-89.23559570312494,80.51064453125002],[-89.16689453125,80.479638671875],[-89.13828125,80.457421875],[-89.13417968749997,80.44023437500005],[-89.20439453124999,80.40693359375001],[-89.19658203124999,80.39404296874997],[-89.1546875,80.37851562499999],[-89.14726562499999,80.36035156250001],[-89.21767578125002,80.28925781250004],[-89.19833984375,80.26318359375004],[-89.01923828125,80.198486328125],[-88.85732421874997,80.16621093750001],[-88.53754882812493,80.13115234375007],[-88.32924804687494,80.13369140625005],[-88.19990234374998,80.11147460937497],[-88.19682617187496,80.12519531250001],[-88.25537109374999,80.16650390624997],[-88.38076171874997,80.22519531250003],[-88.6125,80.25537109374997],[-88.64624023437496,80.28974609374995],[-88.663427734375,80.34829101562497],[-88.64365234374998,80.38686523437502],[-88.5248046875,80.41801757812507],[-88.42436523437496,80.42807617187498],[-88.12524414062494,80.42949218749999],[-87.96000976562496,80.415625],[-87.675,80.37211914062505],[-87.6455078125,80.34843750000002],[-87.63027343750002,80.30161132812498],[-87.61835937499998,80.20747070312498],[-87.62548828125001,80.18720703125001],[-87.86914062499999,80.13388671875],[-87.92231445312501,80.09770507812499],[-87.86069335937498,80.0875],[-87.65136718749997,80.079443359375],[-87.328515625,80.04653320312497],[-87.20205078125,80.043212890625],[-87.07617187500003,79.96694335937498],[-86.97719726562501,79.89423828125001],[-87.04951171875001,79.80541992187506],[-87.14423828124993,79.662646484375],[-87.22026367187496,79.62993164062499],[-87.29516601562494,79.58017578124998],[-87.24287109374995,79.571142578125],[-86.92524414062501,79.59096679687497],[-86.86103515624998,79.59770507812502],[-86.648828125,79.64624023437503],[-86.33696289062495,79.63496093749995],[-86.23222656249993,79.62241210937498],[-86.18046875,79.60541992187498],[-86.085546875,79.55122070312495],[-86.00703124999998,79.47944335937498],[-85.94897460937497,79.485986328125],[-85.803857421875,79.57304687500005],[-85.75092773437495,79.59453124999999],[-85.67861328124997,79.61528320312505],[-85.6478515625,79.61142578125005],[-85.50136718749998,79.53032226562503],[-85.17558593749996,79.38725585937503],[-85.06376953125002,79.32817382812499],[-85.04213867187497,79.2845703125],[-85.18134765624998,79.23374023437503],[-85.28984374999999,79.208349609375],[-86.091650390625,79.1],[-86.450537109375,79.03867187499998],[-86.62944335937495,78.99130859375],[-86.72080078125,78.97548828125],[-86.9134765625,78.98281249999997],[-86.95717773437502,78.97490234375005],[-87.016455078125,78.89868164062497],[-87.08037109374999,78.86611328125],[-87.24638671874996,78.81347656250003],[-87.47875976562497,78.71816406249997],[-87.61738281249994,78.67631835937505],[-87.86147460937497,78.70683593750005],[-87.92231445312501,78.75136718749998],[-87.95625,78.85161132812507],[-87.96074218750002,78.89311523437499],[-87.95317382812499,78.91503906250001],[-87.92260742187496,78.95058593749995],[-87.81674804687498,79.03632812499995],[-87.82939453124999,79.0453125],[-87.87836914062493,79.03818359374998],[-88.04018554687494,78.99531250000004],[-88.10405273437499,78.97280273437497],[-88.163818359375,78.93349609374997],[-88.19023437499995,78.867431640625],[-88.16660156250003,78.74550781250002],[-88.18969726562503,78.69638671874998],[-88.25375976562503,78.67197265624998],[-88.22788085937499,78.65302734375001],[-88.03701171875001,78.62695312500003],[-88.003125,78.61552734375002],[-87.98198242187499,78.59472656250006],[-87.97363281249997,78.56474609375007],[-87.98286132812498,78.53706054687501],[-88.04023437499995,78.49443359375003],[-88.14755859374998,78.47709960937507],[-88.2845703125,78.49653320312501],[-88.5806640625,78.601904296875],[-88.70927734375,78.59609374999995],[-88.74160156250002,78.58403320312499],[-88.71396484374996,78.54643554687507],[-88.62304687500003,78.46210937500004],[-88.60644531250001,78.39199218750005],[-88.64838867187495,78.333740234375],[-88.73295898437496,78.24169921874996],[-88.79101562499997,78.19243164062507],[-88.82241210937495,78.18588867187498],[-88.96962890624994,78.18442382812503],[-89.09570312499993,78.20922851562503],[-89.47001953125002,78.37021484375003],[-89.6552734375,78.4388671875],[-89.92622070312495,78.57304687500007],[-89.995361328125,78.60068359375],[-90.037109375,78.60683593750002],[-90.076318359375,78.54916992187499],[-90.00102539062502,78.49580078124995],[-89.75727539062501,78.37021484375003],[-89.611669921875,78.27890625],[-89.50683593749997,78.20327148437497],[-89.48984374999995,78.17192382812507],[-89.52568359374999,78.15961914062495],[-89.57949218750001,78.16660156250003],[-89.65112304687494,78.193017578125],[-89.87304687499996,78.23759765625002],[-89.96518554687498,78.26245117187501],[-90.02543945312502,78.29125976562503],[-90.13608398437498,78.31308593750003],[-90.29721679687493,78.32802734374997],[-90.45903320312496,78.33090820312502],[-90.62158203124994,78.32172851562503],[-90.65239257812502,78.30771484375],[-90.46918945312498,78.26855468750003],[-90.40541992187497,78.2466796875],[-90.35795898437497,78.21875],[-90.32675781250003,78.18476562500001],[-90.38696289062503,78.16328124999998],[-90.614404296875,78.14985351562501],[-90.91811523437495,78.15839843749998],[-91.40961914062501,78.18798828125004],[-91.89916992187499,78.23686523437505],[-92.35126953125001,78.312890625],[-92.67827148437502,78.38911132812498],[-92.80761718749997,78.42973632812502],[-92.8482421875,78.46010742187495],[-92.72558593749996,78.48666992187506],[-92.29672851562498,78.52080078124999],[-91.86689453124998,78.54267578125001],[-91.9349609375,78.56171874999997],[-92.71552734374995,78.60502929687502],[-92.97250976562499,78.61293945312502],[-93.109375,78.60156250000003],[-93.26660156249997,78.60830078124997],[-93.38945312499993,78.64267578125003],[-93.55205078124993,78.70781249999999],[-93.63442382812502,78.75092773437498],[-93.62333984374999,78.76777343749995],[-93.56142578125,78.77734375000003],[-93.208349609375,78.76918945312497],[-93.15986328124998,78.77563476562503],[-93.33647460937499,78.80805664062498],[-93.90224609374997,78.872216796875],[-94.11459960937496,78.92890625000001],[-94.15361328125,78.95102539062498],[-94.16967773437499,78.97280273437497],[-94.16279296874993,78.99418945312506],[-93.95019531249997,79.03740234374997],[-93.29389648437501,79.139501953125],[-93.06845703125,79.15537109375002],[-92.84160156249996,79.156396484375],[-92.68364257812493,79.18579101562503],[-92.54721679687493,79.28261718750002],[-91.86757812499997,79.31743164062502],[-91.34365234374997,79.36088867187497],[-91.29990234375003,79.372705078125],[-91.69262695312503,79.36474609374997],[-92.24794921874998,79.37343749999995],[-92.48457031249998,79.43925781250005],[-92.64472656250001,79.45043945312503],[-92.82192382812497,79.44990234375001],[-93.028125,79.42924804687507],[-93.38085937499997,79.36816406250006],[-93.55043945312497,79.353955078125],[-93.93315429687496,79.29072265624998],[-94.03984375000002,79.29521484375002],[-94.093359375,79.30273437500004],[-94.109375,79.31508789062498],[-94.04028320312503,79.35703125],[-93.93969726562494,79.38569335937498],[-93.96025390624996,79.39550781250003],[-94.11030273437498,79.40156250000001],[-94.28413085937495,79.40043945312505],[-94.40488281249995,79.39052734375],[-94.84604492187503,79.33505859375006],[-95.04370117187497,79.29355468750003],[-95.10317382812502,79.289892578125],[-95.31660156249998,79.35473632812497],[-95.65703124999995,79.39038085937506],[-95.73300781249998,79.41821289062503],[-95.66289062500002,79.52734374999997],[-95.56347656249999,79.54975585937501],[-95.30234375,79.56806640625001],[-94.519677734375,79.66713867187502],[-94.47553710937495,79.686181640625],[-94.40185546874997,79.736328125],[-94.58085937500002,79.72563476562505],[-94.97304687499997,79.67719726562495],[-95.29697265624996,79.653076171875],[-95.55249023437497,79.65322265625005],[-95.73935546874993,79.66015625000003],[-95.85751953124995,79.67377929687495],[-95.99965820312497,79.70468750000003],[-96.46274414062498,79.847509765625],[-96.58906249999995,79.91665039062497],[-96.60673828124999,79.97768554687497],[-96.63920898437496,80.02416992187501],[-96.77324218749999,80.13579101562502],[-95.78198242187503,80.06640625000001],[-95.39384765624999,80.05327148437502],[-94.64589843749994,80.04873046874997],[-94.61083984374999,80.055517578125],[-94.59980468749995,80.07363281249997],[-94.61269531250002,80.102978515625],[-94.60698242187502,80.1255859375],[-94.58261718749999,80.14140625000002],[-94.304443359375,80.18164062500006],[-94.26259765625002,80.19487304687499],[-94.59013671874995,80.201513671875],[-95.19238281249997,80.134375],[-95.40507812499996,80.13500976562504],[-95.646240234375,80.23095703124997],[-95.90400390625001,80.214111328125],[-96.02568359375002,80.22172851562505],[-96.21508789062497,80.24589843749997],[-96.30830078124995,80.26699218750002],[-96.36840820312501,80.29306640625],[-96.39409179687493,80.31503906250003],[-96.3853515625,80.33286132812502],[-96.334375,80.352783203125],[-96.11215820312493,80.38041992187505],[-96.01186523437497,80.38305664062504],[-95.74736328124997,80.36528320312507],[-95.549072265625,80.36660156249997],[-95.61445312499998,80.39624023437497],[-95.90107421874995,80.470849609375],[-96.15180664062495,80.55346679687503],[-96.1328125,80.69140624999997],[-95.92695312499998,80.72065429687498],[-95.71362304687494,80.72543945312498],[-95.50527343749997,80.69057617187498],[-95.22583007812496,80.685791015625],[-95.02573242187495,80.64643554687495],[-94.892578125,80.57089843750003],[-94.73447265624993,80.57236328124998],[-94.485400390625,80.55805664062497],[-93.92792968749995,80.55917968750003],[-94.02871093749997,80.58618164062503],[-94.20214843749994,80.60971679687503],[-94.59628906249995,80.640625],[-94.78847656249994,80.75126953125002],[-95.19584960937499,80.80830078124998],[-95.51474609375003,80.83813476562503],[-95.50927734374997,80.86323242187498],[-95.26977539062501,81.00078125000005],[-94.98051757812499,81.04965820312503],[-94.51943359375002,81.03120117187501],[-94.21630859375,81.05717773437507],[-93.82597656249996,81.10571289062499],[-93.44375,81.08325195312506],[-93.34511718749997,81.08535156250001],[-93.28671874999998,81.10029296874998],[-93.23564453124996,81.12885742187501],[-93.23540039062499,81.15512695312503],[-93.28593749999997,81.17924804687507],[-93.40654296874996,81.20908203125],[-93.89443359374997,81.21328125],[-94.1103515625,81.225],[-94.19443359374998,81.24091796875001],[-94.21865234374992,81.26494140625002],[-94.23149414062499,81.28969726562501],[-94.23295898437502,81.31513671874995],[-94.22011718749997,81.33076171875004],[-94.17934570312502,81.3392578125],[-94.05971679687497,81.34931640624998],[-93.60488281249997,81.35058593749997],[-93.33276367187503,81.36440429687505],[-93.03466796874997,81.3462890625],[-92.41259765624997,81.27827148437497],[-92.211767578125,81.24360351562504],[-91.99785156249993,81.18549804687501],[-91.88554687499999,81.13286132812505]]],[[[-69.4888671875,83.01679687499998],[-68.67324218750001,82.99877929687503],[-68.40903320312502,83.00527343750002],[-68.10688476562493,82.961181640625],[-67.92460937500002,82.95600585937501],[-67.62446289062495,82.96440429687505],[-67.40566406249997,82.95390625000005],[-66.59165039062498,82.94404296874997],[-66.42255859374998,82.92685546875003],[-66.4248046875,82.90615234375],[-66.60039062499995,82.86123046875],[-66.836328125,82.81791992187505],[-68.35756835937502,82.67680664062499],[-68.46933593749995,82.65336914062502],[-68.17285156249994,82.64594726562501],[-67.73588867187502,82.65244140624999],[-67.3970703125,82.668115234375],[-66.997705078125,82.716064453125],[-66.86572265625003,82.71884765625002],[-66.61186523437497,82.74208984374997],[-66.12045898437498,82.80712890624997],[-65.72744140624994,82.84243164062497],[-65.54960937499996,82.82695312500002],[-65.4,82.802392578125],[-65.29902343749995,82.79960937500005],[-65.24658203125003,82.818505859375],[-65.16240234374993,82.87011718750003],[-65.11318359374994,82.88891601562503],[-64.98388671874997,82.90229492187501],[-64.90488281249993,82.90083007812498],[-64.77675781249995,82.87646484374997],[-64.634765625,82.818603515625],[-64.50400390625,82.77841796874996],[-64.43339843750002,82.77773437500002],[-64.13422851562498,82.82319335937495],[-63.983593749999955,82.8291015625],[-63.64101562499996,82.81259765625002],[-63.498730468749926,82.79257812500003],[-63.47304687500002,82.77124023437503],[-63.5640625,82.74873046874998],[-63.620605468749964,82.72929687500002],[-63.642529296875004,82.71298828124998],[-63.592675781249966,82.69404296875004],[-63.385400390625016,82.65346679687502],[-63.085351562499994,82.56523437499999],[-63.08706054687499,82.53281250000002],[-63.25083007812495,82.46684570312502],[-63.24677734374992,82.45019531249999],[-62.47519531249994,82.51958007812502],[-61.697167968749994,82.488623046875],[-61.47705078124999,82.46743164062497],[-61.39248046874999,82.44189453125],[-61.30249023437497,82.39975585937503],[-61.207226562500004,82.34106445312497],[-61.27353515625,82.27983398437502],[-61.615380859375016,82.18442382812503],[-61.96865234374996,82.11025390625002],[-62.176708984374976,82.04340820312498],[-62.49648437500002,82.00678710937498],[-63.592285156249964,81.84550781249997],[-64.12792968749994,81.79365234375001],[-64.43579101562497,81.74262695312501],[-64.57402343749996,81.73374023437506],[-65.22617187499995,81.743505859375],[-65.39916992187503,81.71538085937505],[-65.49541015625002,81.66806640624999],[-65.70107421875,81.64555664062505],[-66.00473632812503,81.62944335937505],[-66.62573242187497,81.61640624999995],[-66.76503906249994,81.56303710937502],[-66.80058593749999,81.52680664062501],[-66.86113281249999,81.49868164062505],[-66.9140625,81.48510742187503],[-68.68852539062493,81.29331054687502],[-68.72119140625001,81.26123046874996],[-68.54257812499995,81.24799804687495],[-68.31767578124995,81.26123046874996],[-65.73569335937503,81.49423828125003],[-65.23999023437503,81.50966796874997],[-64.78007812499992,81.49287109375001],[-64.832763671875,81.43862304687497],[-65.48398437499998,81.28476562499998],[-66.312841796875,81.146142578125],[-66.72685546874999,81.04091796875005],[-67.77436523437494,80.85942382812502],[-68.63046875,80.67871093749997],[-68.959375,80.58686523437501],[-69.40009765624995,80.42285156249997],[-69.55068359375,80.38325195312497],[-69.7337890625,80.36694335937506],[-69.94931640625003,80.37377929687503],[-70.14350585937498,80.39765625000001],[-70.40263671875002,80.45898437499997],[-70.63867187499994,80.52753906249998],[-70.71259765625001,80.53959960937505],[-70.66782226562503,80.50556640624995],[-70.21279296874997,80.277734375],[-70.264892578125,80.23359374999998],[-71.10029296874995,80.18706054687499],[-71.47006835937495,80.14589843750005],[-71.66083984375001,80.13593749999997],[-71.7958984375,80.14335937500007],[-71.92763671875,80.13916015625],[-72.05595703124996,80.12324218749995],[-72.06298828124997,80.10556640625],[-71.94868164062495,80.08618164062506],[-71.61611328124997,80.07104492187496],[-70.87705078125003,80.12231445312503],[-70.75849609374995,80.11865234375],[-70.56840820312493,80.09370117187497],[-70.55908203125,80.07099609374998],[-70.75751953125001,79.99824218749998],[-71.35581054687495,79.91127929687502],[-71.27763671875,79.90634765624999],[-71.10634765625002,79.87553710937503],[-71.11015624999999,79.84780273437497],[-71.29858398437503,79.782568359375],[-71.387841796875,79.76176757812505],[-71.96455078124997,79.70107421875002],[-72.21552734374995,79.68681640625005],[-72.43652343750003,79.69438476562499],[-73.44814453124997,79.82709960937501],[-73.80507812499995,79.84628906250003],[-74.14423828124995,79.87978515625002],[-74.39448242187495,79.87407226562499],[-74.66020507812499,79.83515624999998],[-74.54072265624998,79.815576171875],[-74.05102539062496,79.77822265625001],[-73.64208984374997,79.77099609375006],[-73.47246093749996,79.7564453125],[-73.405908203125,79.73217773437506],[-73.22939453125,79.64399414062501],[-73.20112304687501,79.59658203125004],[-73.24013671874997,79.55249023437503],[-73.2935546875,79.52158203125003],[-73.36152343750001,79.50400390624999],[-73.466064453125,79.49516601562499],[-73.865966796875,79.50141601562501],[-74.015380859375,79.49052734375002],[-74.18867187499995,79.46474609375002],[-74.406005859375,79.45356445312495],[-74.79794921874998,79.45869140625001],[-75.25947265624994,79.421044921875],[-75.50341796875,79.41416015625],[-75.77382812499994,79.43115234375],[-76.06689453124997,79.47319335937503],[-76.37607421874998,79.49443359375002],[-76.898828125,79.5123046875],[-76.85507812499995,79.48823242187501],[-76.6708984375,79.47807617187507],[-76.29570312499993,79.41362304687499],[-76.116357421875,79.32612304687501],[-75.94750976562497,79.31132812500002],[-75.60273437499997,79.23955078125005],[-75.35366210937497,79.22832031249997],[-75.093603515625,79.20390624999999],[-74.72724609374998,79.2353515625],[-74.48120117187501,79.22949218750004],[-74.53232421874996,79.052734375],[-74.64091796874996,79.03554687499997],[-75.233154296875,79.03554687499997],[-75.51464843749996,79.06123046874995],[-75.63896484374999,79.08774414062503],[-75.91181640624998,79.11777343750003],[-76.15756835937495,79.10039062500005],[-76.38037109374997,79.104150390625],[-76.53144531250001,79.08652343750006],[-76.771142578125,79.087158203125],[-77.39804687499998,79.05727539062505],[-77.72924804687497,79.05693359375006],[-77.97377929687497,79.07622070312499],[-78.25791015625,79.08217773437497],[-78.58164062499998,79.075],[-78.55898437499998,79.05458984375002],[-78.42177734375,79.04838867187502],[-78.22197265624999,79.01513671874997],[-78.03681640625001,78.96391601562502],[-77.88276367187498,78.9423828125],[-77.69824218749993,78.95454101562498],[-77.51040039062497,78.97846679687498],[-76.82480468749999,79.01787109375],[-76.52412109374991,79.02421875000005],[-76.255859375,79.00683593749997],[-76.07734374999995,78.98515625000002],[-75.95268554687496,78.95903320312502],[-75.795068359375,78.88974609375],[-75.39985351562495,78.88129882812498],[-75.09853515624994,78.85830078125],[-74.61840820312499,78.75771484375002],[-74.486328125,78.75009765624998],[-74.43310546874999,78.72412109375003],[-74.53505859375,78.65927734375006],[-74.54658203124993,78.6203125],[-74.87861328124998,78.54482421874998],[-75.39658203125,78.52285156249995],[-75.96582031249997,78.52983398437505],[-76.37348632812498,78.52109375000006],[-76.41611328124995,78.51152343750005],[-76.13652343749993,78.49169921875003],[-75.48837890624993,78.40351562499998],[-75.23720703124994,78.35571289062503],[-75.19345703124999,78.327734375],[-75.55068359374997,78.22109375000005],[-75.86596679687497,78.00981445312499],[-75.96962890624992,77.99311523437495],[-76.0775390625,77.98730468750003],[-76.35556640624998,77.99101562500007],[-76.70810546875003,77.937890625],[-76.97402343750002,77.92724609375003],[-77.45595703124995,77.94716796875002],[-78.01259765624997,77.94604492187506],[-78.056396484375,77.91171874999998],[-78.08413085937497,77.84609375000002],[-78.08105468749996,77.74736328124999],[-78.04716796874999,77.61547851562503],[-78.07617187500003,77.51904296875],[-78.16796875,77.45810546875003],[-78.28374023437496,77.4130859375],[-78.49321289062499,77.369384765625],[-78.70849609374997,77.34213867187503],[-78.86953125000002,77.33251953125003],[-79.13759765625,77.33100585937498],[-79.90639648437494,77.29956054687496],[-80.28168945312493,77.30146484375001],[-80.57304687499996,77.31479492187506],[-80.87460937500003,77.35859375000001],[-81.37685546874994,77.48212890624995],[-81.51928710937499,77.50957031250005],[-81.65908203124997,77.52543945312499],[-81.65380859374997,77.49882812500007],[-81.503564453125,77.42978515625003],[-81.37817382812503,77.38520507812501],[-81.277734375,77.36518554687501],[-81.3013671875,77.34404296875007],[-81.52294921874994,77.31083984375005],[-81.76733398437499,77.29594726562505],[-82.056787109375,77.29653320312497],[-82.066015625,77.28364257812501],[-81.96782226562499,77.24785156250002],[-81.84023437500002,77.21411132812497],[-81.75634765624997,77.20400390625005],[-81.53447265624999,77.21445312500003],[-81.27744140625003,77.25708007812503],[-81.11718749999997,77.26962890625],[-80.798193359375,77.25947265624997],[-80.67255859374998,77.244287109375],[-80.27421875,77.15092773437507],[-80.21870117187498,77.14658203124998],[-79.92373046875002,77.19360351562497],[-79.49726562500001,77.19609375000005],[-79.34086914062493,77.15839843749998],[-79.281103515625,77.08515624999998],[-79.27382812499997,77.02578124999997],[-79.3189453125,76.98037109374997],[-79.22075195312499,76.93603515625],[-78.97919921874998,76.89287109374999],[-78.79179687499999,76.88359375000005],[-78.658544921875,76.90800781250005],[-78.45595703124997,76.96723632812495],[-78.37001953124994,76.98125],[-78.28886718750002,76.97797851562501],[-78.16508789062493,76.93491210937502],[-77.99873046874998,76.851953125],[-77.98330078124994,76.75498046875006],[-78.11870117187499,76.64404296875],[-78.284326171875,76.57124023437501],[-78.93427734374994,76.45117187499996],[-79.130712890625,76.40395507812502],[-79.285888671875,76.35478515625005],[-79.51103515624996,76.31049804687501],[-79.95356445312495,76.25126953125],[-80.18681640624996,76.24018554687498],[-80.69028320312495,76.17646484374995],[-80.79970703124995,76.173583984375],[-80.96293945312499,76.18393554687498],[-80.99667968750002,76.214990234375],[-80.95517578125,76.27016601562505],[-80.90122070312503,76.32153320312503],[-80.834814453125,76.36914062500004],[-80.83237304687503,76.40864257812501],[-80.97451171874994,76.470068359375],[-81.07436523437497,76.49848632812501],[-81.17070312499996,76.51274414062499],[-81.36479492187495,76.5044921875],[-81.474462890625,76.48764648437503],[-81.59199218749998,76.48442382812499],[-81.71738281250003,76.494970703125],[-81.82294921874995,76.52084960937503],[-82.0341796875,76.62939453125006],[-82.11372070312495,76.64321289062502],[-82.21791992187497,76.63979492187502],[-82.31113281250003,76.65537109375],[-82.39345703125002,76.68989257812501],[-82.52983398437499,76.72329101562498],[-82.49340820312494,76.69780273437505],[-82.35698242187495,76.63603515625007],[-82.26196289062497,76.57470703125],[-82.20834960937495,76.51376953125003],[-82.23315429687494,76.46582031250003],[-83.38896484374996,76.43925781250005],[-83.885693359375,76.453125],[-83.98632812499997,76.49501953125002],[-84.22377929687497,76.67534179687497],[-84.27534179687498,76.35654296875005],[-85.141259765625,76.30458984375005],[-85.34360351562499,76.31337890624997],[-85.68056640625,76.34902343750002],[-86.11582031250003,76.43491210937503],[-86.29619140625002,76.491845703125],[-86.36684570312502,76.5486328125],[-86.41943359374996,76.57963867187505],[-86.45371093750002,76.58486328125002],[-86.56191406249997,76.51650390624997],[-86.68022460937499,76.37661132812497],[-86.97768554687502,76.41274414062497],[-87.35419921874998,76.44804687500003],[-87.48979492187499,76.58583984374997],[-87.49755859374997,76.38627929687499],[-88.10434570312495,76.41274414062497],[-88.39599609374997,76.40527343750003],[-88.481640625,76.58007812500003],[-88.49584960937497,76.77285156249997],[-88.61411132812498,76.65087890624997],[-88.56254882812496,76.54721679687499],[-88.54580078125001,76.42089843750003],[-88.80371093749997,76.45683593750007],[-89.36962890624997,76.474462890625],[-89.57006835937496,76.49194335937503],[-89.54433593749997,76.65966796875],[-89.49975585937503,76.82680664062502],[-88.77089843749995,76.99335937500004],[-88.55620117187497,77.072216796875],[-88.39814453124994,77.10395507812501],[-88.14794921874997,77.1240234375],[-87.82841796874996,77.13647460937497],[-87.61049804687498,77.12685546874995],[-87.36171875000002,77.13623046874999],[-87.06445312500003,77.16586914062499],[-86.85219726562494,77.17441406250006],[-86.81225585937497,77.18491210937498],[-86.873779296875,77.20029296875],[-87.10087890624999,77.30771484375002],[-87.18242187499999,77.33212890625003],[-87.26538085937501,77.34301757812503],[-87.4296875,77.34780273437501],[-87.58916015624999,77.39482421875002],[-87.68144531249995,77.43637695312503],[-87.78017578125,77.49282226562498],[-87.93793945312498,77.59980468750004],[-88.09467773437495,77.71918945312501],[-88.01699218750002,77.78471679687505],[-87.75712890625002,77.83623046875007],[-87.49677734374998,77.87192382812506],[-87.23603515624998,77.89179687500001],[-87.01796874999997,77.89223632812502],[-86.75507812499998,77.86372070312498],[-86.38510742187499,77.80859375000003],[-86.17299804687497,77.74614257812502],[-85.90664062499997,77.61391601562497],[-85.73120117187499,77.50864257812503],[-85.58847656249998,77.46113281250004],[-84.95087890624993,77.37495117187495],[-84.73867187499997,77.36103515624998],[-84.48701171874991,77.36796875000005],[-83.97358398437495,77.39052734375002],[-83.72128906249996,77.41420898437497],[-83.60805664062502,77.442236328125],[-83.54980468749997,77.48256835937504],[-83.47734374999993,77.51362304687498],[-83.25029296874996,77.584814453125],[-82.90273437499994,77.73271484375002],[-82.7103515625,77.84951171875001],[-82.66469726562494,77.88881835937502],[-82.62631835937503,77.93632812500002],[-82.5953125,77.99213867187504],[-82.70356445312495,77.96240234375],[-83.30375976562502,77.67373046875],[-83.42822265624997,77.62128906249998],[-83.77939453125,77.53261718750002],[-83.92817382812495,77.51831054687501],[-84.167822265625,77.52270507812504],[-84.48583984374996,77.56196289062495],[-84.86054687500001,77.49951171875003],[-85.08789062499997,77.51538085937497],[-85.28935546874996,77.55903320312498],[-85.29204101562499,77.76386718749998],[-85.54755859374998,77.92768554687495],[-85.26533203124995,78.01059570312506],[-85.03149414062503,78.06201171875006],[-84.61542968749998,78.19570312500002],[-84.52416992187494,78.19707031250003],[-84.22270507812499,78.176025390625],[-84.38813476562495,78.20634765625005],[-84.55,78.2513671875],[-84.91035156249993,78.23969726562501],[-84.78320312499996,78.52758789062504],[-85.02431640624997,78.31240234375],[-85.27016601562495,78.19951171874997],[-85.41899414062499,78.142431640625],[-85.5859375,78.10957031249998],[-86.21777343750003,78.08120117187497],[-86.06259765625002,78.186962890625],[-85.92006835937494,78.34287109374998],[-86.07094726562494,78.28461914062501],[-86.42705078124992,78.19702148437503],[-86.69360351562496,78.15102539062497],[-86.91323242187492,78.126806640625],[-87.33935546875,78.13266601562506],[-87.5517578125,78.17661132812503],[-87.49111328125,78.28442382812497],[-87.49130859375003,78.41718750000001],[-87.36127929687501,78.47871093750004],[-87.16430664062503,78.55761718750003],[-86.95292968749996,78.663916015625],[-86.80791015624999,78.77436523437494],[-86.24189453124995,78.82363281249997],[-85.69101562499999,78.84370117187495],[-85.22968749999998,78.90200195312502],[-85.00375976562495,78.912255859375],[-84.787255859375,78.88457031250002],[-83.90791015624998,78.83916015625002],[-83.54702148437502,78.80449218750003],[-83.38872070312502,78.77934570312499],[-83.27143554687501,78.77031250000002],[-83.14741210937495,78.80786132812501],[-82.98979492187499,78.84414062499995],[-82.441796875,78.8404296875],[-82.29067382812494,78.84707031250002],[-82.15107421874993,78.86411132812503],[-81.98110351562494,78.89848632812502],[-81.78081054687499,78.95034179687502],[-81.75009765624995,78.97578124999995],[-81.88911132812493,78.97485351562503],[-82.02832031249997,78.96186523437495],[-82.23740234374999,78.924072265625],[-82.43876953125002,78.903662109375],[-82.644091796875,78.90751953124999],[-83.05854492187498,78.93950195312502],[-83.77861328124993,78.94526367187495],[-84.14580078124996,78.959814453125],[-84.31611328124993,78.97529296874995],[-84.41201171875002,78.99658203125003],[-84.49584960937497,79.02856445312497],[-84.56777343749997,79.07128906249997],[-84.53027343749994,79.10126953125004],[-84.38359375000002,79.1185546875],[-84.25664062499999,79.12216796875003],[-84.05302734374999,79.09868164062505],[-83.824609375,79.058837890625],[-83.57587890624995,79.05366210937501],[-83.66201171875,79.09003906249994],[-83.978125,79.16313476562502],[-84.19736328124998,79.22509765625001],[-84.38105468749993,79.30126953125],[-84.52241210937494,79.376611328125],[-84.83642578124997,79.49472656249998],[-85.08979492187497,79.61215820312503],[-85.26850585937498,79.66411132812505],[-85.45693359375,79.68984375000005],[-86.031494140625,79.721923828125],[-86.146630859375,79.74282226562498],[-86.42075195312498,79.84521484374997],[-86.49433593749995,80.01816406250003],[-86.61450195312503,80.12353515625001],[-86.49853515625003,80.25825195312501],[-86.30717773437492,80.31933593750003],[-85.15961914062501,80.27177734375002],[-84.67543945312497,80.27890625000006],[-84.05654296875,80.26196289062497],[-83.72363281250003,80.22895507812501],[-83.34375,80.14697265625],[-83.00429687500002,80.05458984375],[-82.67749023437497,79.99277343750003],[-82.37700195312496,79.90825195312505],[-82.04877929687495,79.78276367187505],[-81.85571289062497,79.72255859375005],[-81.68837890624998,79.68579101562499],[-81.463037109375,79.65415039062506],[-81.03808593750003,79.61420898437498],[-80.667822265625,79.60102539062498],[-80.47592773437498,79.60625],[-80.27060546874998,79.63520507812501],[-80.12446289062495,79.66948242187507],[-80.28745117187495,79.67895507812503],[-80.714013671875,79.67495117187502],[-81.01015625000002,79.693115234375],[-81.17905273437498,79.73344726562505],[-81.35869140624996,79.78779296875001],[-81.64423828124995,79.890234375],[-81.86025390625002,79.95717773437497],[-82.332373046875,80.066357421875],[-82.68129882812494,80.17490234375],[-82.96113281249993,80.27788085937502],[-82.98701171874995,80.32260742187498],[-82.784814453125,80.35375976562503],[-82.53613281249994,80.37553710937502],[-80.97963867187501,80.44526367187501],[-80.05107421874992,80.52856445312503],[-79.67436523437502,80.625244140625],[-79.62934570312498,80.6478515625],[-78.38618164062495,80.784375],[-77.50712890625002,80.83476562500005],[-77.16914062499998,80.84291992187502],[-76.86298828124995,80.86479492187505],[-76.85034179687497,80.87817382812503],[-77.11855468749998,80.896435546875],[-77.38945312500002,80.90541992187497],[-78.00380859374994,80.90483398437502],[-78.55097656249994,80.92143554687505],[-78.71621093749994,80.95166015624997],[-78.68193359374999,81.00107421875],[-78.629296875,81.04345703125003],[-78.46396484374998,81.11435546875],[-78.28681640624995,81.16762695312502],[-77.53603515624994,81.32109375000002],[-77.03071289062493,81.38569335937503],[-76.88510742187503,81.43027343750006],[-77.97236328124993,81.33081054687503],[-78.35214843750003,81.25893554687497],[-78.73388671875,81.151025390625],[-78.93154296874994,81.11923828125],[-79.07246093749994,81.12763671875004],[-79.19833984375002,81.11757812500002],[-79.30917968749993,81.08906249999998],[-79.40214843749999,81.03686523437503],[-79.47724609375,80.96098632812502],[-79.54541015624994,80.90932617187497],[-79.60664062499998,80.88178710937495],[-79.76132812499998,80.841943359375],[-80.13354492187494,80.76391601562499],[-81.00703125000001,80.6548828125],[-81.30097656249993,80.62719726562506],[-81.55268554687495,80.62280273437503],[-82.36821289062493,80.56132812500005],[-82.61303710937497,80.55888671874999],[-82.88432617187502,80.57753906249997],[-82.768310546875,80.63066406250005],[-82.33676757812499,80.72866210937502],[-82.22236328124998,80.77231445312503],[-82.4984375,80.76279296875003],[-82.77998046874998,80.73603515625001],[-83.40141601562502,80.71396484375003],[-83.64711914062497,80.674072265625],[-83.8853515625,80.60175781250001],[-84.07626953125,80.55625],[-84.21977539062493,80.53779296874995],[-84.41782226562495,80.52675781250002],[-85.14584960937495,80.52114257812502],[-85.30742187500002,80.52597656250002],[-85.72622070312497,80.58115234374998],[-86.09716796874997,80.562109375],[-86.250341796875,80.56577148437506],[-86.531591796875,80.604736328125],[-86.61542968749995,80.63002929687498],[-86.60307617187499,80.66401367187498],[-86.44047851562502,80.72802734374997],[-86.252099609375,80.78955078125],[-85.63930664062494,80.92460937500007],[-85.24628906249997,80.98789062499996],[-84.67993164062497,81.0423828125],[-83.34921874999995,81.10332031250005],[-83.28881835937499,81.14794921874999],[-84.63544921874998,81.09809570312495],[-85.780859375,81.03505859375],[-85.96679687499997,81.01191406249997],[-86.23344726562502,80.95009765625001],[-87.08027343749995,80.72626953124998],[-87.32988281250002,80.669775390625],[-87.711669921875,80.65625],[-88.00366210937497,80.675390625],[-88.23198242187493,80.70380859375001],[-88.62509765625,80.77006835937502],[-88.92143554687499,80.80561523437498],[-89.06166992187494,80.82954101562495],[-89.14458007812496,80.853662109375],[-89.21176757812498,80.88193359374998],[-89.26328124999998,80.914306640625],[-89.16689453125,80.94130859375],[-88.41308593749997,80.999755859375],[-87.388671875,80.98837890625],[-86.92900390624996,81.00043945312494],[-86.47675781249993,81.03574218750006],[-85.8095703125,81.12358398437502],[-85.08330078124999,81.246875],[-84.94121093750002,81.28623046875],[-85.206298828125,81.29487304687501],[-85.40249023437502,81.28530273437498],[-85.875048828125,81.2412109375],[-86.62275390625001,81.12265625],[-87.27509765624995,81.080810546875],[-88.88681640625003,81.05849609375],[-89.39838867187498,81.02534179687498],[-89.62304687499999,81.032470703125],[-89.79228515624993,81.06484375000002],[-89.98095703125,81.12470703124998],[-89.94731445312499,81.17265625000005],[-89.56337890625001,81.22646484375],[-89.262548828125,81.23906249999999],[-89.20869140624997,81.25009765625003],[-89.63569335937501,81.30205078125005],[-89.67368164062503,81.32861328125003],[-89.42700195312494,81.38745117187503],[-88.89228515624997,81.47412109375],[-88.62192382812498,81.50141601562498],[-88.12651367187496,81.51879882812497],[-87.61669921875,81.50932617187499],[-87.59702148437496,81.52583007812498],[-88.10136718749999,81.55864257812499],[-88.47905273437502,81.56464843749998],[-88.97836914062503,81.54150390624997],[-90.30351562499999,81.40112304687497],[-90.41630859374995,81.40537109375002],[-90.60903320312497,81.42954101562498],[-90.55375976562499,81.46420898437503],[-89.84521484374997,81.61166992187506],[-89.82167968749997,81.63486328124998],[-90.33085937499996,81.63154296875001],[-90.48037109374997,81.63852539062503],[-90.62631835937503,81.65600585937503],[-90.83374023437499,81.64047851562498],[-91.10273437500001,81.59199218749995],[-91.29238281250002,81.57124023437498],[-91.40278320312495,81.57822265625],[-91.68408203124996,81.63569335937498],[-91.64755859374996,81.68383789062503],[-91.42382812499997,81.74423828124998],[-91.219482421875,81.78774414062505],[-90.94194335937493,81.82744140625005],[-90.49018554687501,81.87724609374997],[-90.16303710937498,81.89404296875003],[-89.63334960937499,81.89453125000003],[-89.381005859375,81.91674804687503],[-89.15634765624998,81.955419921875],[-88.87524414062496,82.01801757812498],[-88.56684570312495,82.06108398437505],[-88.06318359375001,82.09648437500007],[-87.638916015625,82.08505859375003],[-87.40439453125,82.05419921874997],[-87.2181640625,82.00009765625006],[-87.01821289062502,81.95874023437497],[-86.99921874999998,81.99213867187504],[-86.83403320312499,82.033349609375],[-86.62680664062495,82.05102539062503],[-86.37753906249998,82.04511718749998],[-86.158349609375,82.025537109375],[-85.87480468749996,81.97568359375006],[-85.645654296875,81.95327148437502],[-85.53798828125,81.95463867187502],[-85.40317382812498,81.98222656250005],[-85.04482421874997,81.9828125],[-85.05224609374997,81.99453125],[-85.16923828125002,82.02338867187501],[-85.31059570312493,82.04399414062502],[-86.58061523437496,82.18720703124998],[-86.615625,82.21855468750007],[-86.18759765625,82.24794921875002],[-85.92001953125003,82.28305664062506],[-85.79443359375003,82.29160156250003],[-85.480859375,82.36630859375006],[-85.27597656249999,82.40522460937498],[-84.89682617187503,82.44941406250001],[-84.74472656250003,82.43735351562506],[-84.55336914062497,82.39833984375],[-84.36811523437494,82.37392578125],[-83.82363281249997,82.35068359374996],[-83.59067382812503,82.32646484375002],[-83.17568359374992,82.18720703124998],[-83.01015624999997,82.14169921875003],[-82.77421875,82.09492187500001],[-82.63369140625002,82.07729492187497],[-82.35600585937493,82.06601562499996],[-82.32744140624999,82.09248046874995],[-82.65708007812498,82.15830078125003],[-82.74746093750002,82.196435546875],[-82.70859375,82.22871093750001],[-82.63837890624998,82.245751953125],[-82.53691406250002,82.24726562499995],[-82.27656250000001,82.21845703124995],[-81.58447265624997,82.12055664062498],[-80.54990234374995,82.00458984374998],[-80.15336914062499,81.97763671875],[-79.90864257812495,81.93623046875001],[-79.685546875,81.88588867187497],[-79.465625,81.85112304687497],[-79.42485351562499,81.85444335937494],[-79.62949218750003,81.93232421875],[-80.12983398437498,82.02836914062503],[-81.46826171875,82.19238281249997],[-81.99760742187502,82.27827148437498],[-82.25366210937494,82.336328125],[-82.44755859374993,82.39501953125003],[-82.45136718750001,82.427099609375],[-82.26889648437495,82.46464843750002],[-82.02324218749999,82.49438476562503],[-81.71777343750003,82.50625],[-81.68115234375003,82.51865234375],[-81.95859374999998,82.56323242187503],[-82.12250976562498,82.60175781249998],[-82.11684570312497,82.62866210937501],[-81.78535156249993,82.64921875000003],[-81.57968749999995,82.64301757812504],[-81.18886718750002,82.594482421875],[-80.8625,82.57153320312501],[-80.80966796875003,82.58637695312504],[-81.14663085937502,82.71557617187497],[-81.17807617187503,82.74467773437505],[-81.128173828125,82.76171875000006],[-81.01015625000002,82.77905273437503],[-80.65712890624992,82.76909179687505],[-80.07578125,82.70620117187502],[-79.03505859375,82.67465820312498],[-78.748779296875,82.67939453124998],[-78.79179687499999,82.69389648437499],[-79.20722656249997,82.73276367187499],[-79.64199218749998,82.78496093749999],[-79.83378906249999,82.81650390625003],[-79.97431640624993,82.85898437499998],[-80.14116210937499,82.89423828124995],[-80.15493164062497,82.91113281250003],[-79.88632812500003,82.93852539062502],[-79.18056640624997,82.933203125],[-78.52495117187499,82.89111328125003],[-77.96865234374997,82.90634765625002],[-77.61806640624995,82.89584960937503],[-77.47958984375,82.883154296875],[-77.22587890624999,82.83720703125007],[-76.42099609374998,82.67089843750001],[-76.33554687499998,82.64443359374997],[-76.24404296875,82.6041015625],[-76.146484375,82.54985351562503],[-76.009375,82.53515625],[-75.74433593749998,82.57241210937502],[-75.565625,82.60854492187502],[-75.64287109374999,82.64350585937495],[-76.08696289062496,82.72363281250003],[-76.18779296874999,82.75791015624998],[-76.40996093749996,82.81582031249997],[-76.908447265625,82.91943359375003],[-77.04121093749995,82.96752929687497],[-77.12490234374994,83.00854492187497],[-75.74492187499999,83.04716796875],[-74.41416015624995,83.01313476562501],[-74.19775390625003,82.989013671875],[-74.05585937499998,82.95537109375007],[-73.91650390625,82.90419921875001],[-73.703125,82.85185546875002],[-73.27202148437499,82.77158203124999],[-72.65869140625,82.72163085937495],[-72.77592773437499,82.75566406250007],[-73.23466796875002,82.84423828125],[-73.44189453124994,82.90483398437499],[-73.44072265624999,82.94584960937499],[-73.40380859375,82.97714843749996],[-73.33115234375003,82.99877929687503],[-72.811669921875,83.08120117187502],[-72.06923828125,83.10605468750003],[-71.98320312499996,83.10141601562498],[-71.40595703124995,82.97485351562503],[-71.13203125000001,82.92304687499995],[-70.94038085937495,82.90224609375],[-70.93300781249997,82.91127929687497],[-71.19833984375003,82.96958007812503],[-71.40239257812493,83.00126953125002],[-71.42353515624998,83.02114257812497],[-71.08481445312498,83.08266601562497],[-70.87055664062495,83.09814453125003],[-69.96992187499995,83.11611328125005],[-69.86767578125,83.10961914062506],[-69.78212890625,83.09252929687503],[-69.56938476562497,83.02490234375003],[-69.4888671875,83.01679687499998]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Panama","sov_a3":"PAN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Panama","adm0_a3":"PAN","geou_dif":0,"geounit":"Panama","gu_a3":"PAN","su_dif":0,"subunit":"Panama","su_a3":"PAN","brk_diff":0,"name":"Panama","name_long":"Panama","brk_a3":"PAN","brk_name":"Panama","brk_group":null,"abbrev":"Pan.","postal":"PA","formal_en":"Republic of Panama","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Panama","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":6,"mapcolor13":3,"pop_est":3360474,"gdp_md_est":38830,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PA","iso_a3":"PAN","iso_n3":"591","un_a3":"591","wb_a2":"PA","wb_a3":"PAN","woe_id":-99,"adm0_a3_is":"PAN","adm0_a3_us":"PAN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PAN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.60327148437497,7.332812499999989],[-81.65810546874994,7.32753906249998],[-81.77011718750003,7.370361328125],[-81.85205078125003,7.453320312500026],[-81.85859374999991,7.480175781249982],[-81.85693359374994,7.507666015624991],[-81.812158203125,7.59238281250002],[-81.75229492187493,7.621630859375031],[-81.72875976562494,7.62119140625002],[-81.67143554687497,7.5234375],[-81.71044921874994,7.48554687500001],[-81.69472656249994,7.425],[-81.613427734375,7.380175781250045],[-81.60327148437497,7.332812499999989]]],[[[-79.06542968749994,8.254199218750017],[-79.11035156249994,8.209814453125034],[-79.1275390625,8.251855468749994],[-79.09628906250003,8.295410156249986],[-79.085302734375,8.295800781249966],[-79.06542968749994,8.254199218750017]]],[[[-78.89833984375002,8.27426757812502],[-78.91811523437497,8.231933593750014],[-78.96494140624999,8.326269531249963],[-78.95742187499997,8.350585937500028],[-78.96059570312498,8.435839843749989],[-78.91601562499997,8.458251953125027],[-78.88325195312495,8.460253906249989],[-78.85615234374995,8.448242187500028],[-78.83916015624996,8.347900390625014],[-78.85322265624998,8.302441406249997],[-78.89833984375002,8.27426757812502]]],[[[-82.23349609375003,9.380712890625018],[-82.24443359374993,9.33408203125002],[-82.32172851562494,9.418115234374994],[-82.27578125000002,9.431884765625057],[-82.25942382812497,9.430273437499991],[-82.23349609375003,9.380712890625018]]],[[[-79.35546874999997,9.569238281249966],[-79.21162109374998,9.531933593750011],[-79.11225585937498,9.536767578125009],[-79.01669921874998,9.510449218749983],[-78.975,9.452978515624991],[-78.93164062499996,9.428466796874972],[-78.69692382812502,9.434765625000011],[-78.50434570312495,9.406298828124989],[-78.08276367187494,9.236279296874997],[-77.83081054687497,9.068115234375014],[-77.697216796875,8.889453125000031],[-77.37421874999993,8.65830078125002],[-77.39306640624994,8.644677734374994],[-77.44833984375003,8.565869140625011],[-77.47851562499994,8.498437500000037],[-77.40727539062502,8.427246093750014],[-77.385888671875,8.351660156249977],[-77.34550781249993,8.269531250000043],[-77.28261718750002,8.187060546875015],[-77.21230468749998,8.033886718749997],[-77.19599609374995,7.972460937500003],[-77.21596679687501,7.932519531250038],[-77.282958984375,7.908154296875039],[-77.34560546874997,7.836523437500019],[-77.36274414062498,7.74907226562496],[-77.35078124999995,7.705859375000045],[-77.53828124999995,7.566259765625019],[-77.58657226562494,7.543066406250006],[-77.61860351562498,7.564550781250034],[-77.65859374999997,7.634619140625005],[-77.70634765625002,7.691210937499989],[-77.73203125,7.710937500000014],[-77.746923828125,7.711865234375026],[-77.76191406249995,7.698828125000033],[-77.76875,7.668066406249977],[-77.74389648437503,7.536962890625006],[-77.76469726562499,7.483691406249989],[-77.82832031249998,7.44282226562501],[-77.90117187499999,7.229345703125047],[-77.92978515624995,7.256347656250042],[-78.17011718749998,7.543798828124977],[-78.37822265625002,7.899902343750056],[-78.42158203124995,8.060986328125011],[-78.36762695312498,8.070556640625],[-78.3154296875,8.066943359374974],[-78.28735351562497,8.091796874999972],[-78.25488281250003,8.138623046875011],[-78.28120117187495,8.24755859375],[-78.18002929687495,8.330273437499983],[-78.14189453125,8.386083984374977],[-78.11386718749998,8.379589843749981],[-78.04775390625002,8.284765625000034],[-77.95166015624997,8.230273437500031],[-77.833642578125,8.151171874999989],[-77.76054687499993,8.133251953124983],[-77.85292968750002,8.216210937500009],[-78.0125,8.325390625000052],[-78.05717773437497,8.397119140625009],[-78.09946289062498,8.496972656250009],[-78.16181640624998,8.453710937499991],[-78.190771484375,8.417333984375034],[-78.22304687500002,8.396630859374994],[-78.25112304687497,8.421435546874989],[-78.256103515625,8.453710937499991],[-78.35014648437499,8.460009765625031],[-78.37431640625002,8.489257812500043],[-78.39921874999993,8.505664062500003],[-78.38789062499995,8.443408203125017],[-78.36938476562499,8.404931640624994],[-78.37929687499997,8.358593749999969],[-78.40986328124998,8.355322265625018],[-78.43603515624997,8.403320312500028],[-78.46943359374995,8.44667968749998],[-78.51406249999997,8.628173828124998],[-78.62089843749997,8.71372070312502],[-78.66982421875,8.742187500000057],[-78.71020507812497,8.752929687500014],[-78.76967773437498,8.81108398437496],[-78.84824218750003,8.8421875],[-78.95517578124995,8.932519531250009],[-79.08637695312495,8.997167968750034],[-79.2466796875,9.020068359375003],[-79.44150390625,9.00600585937498],[-79.50708007812494,8.97006835937502],[-79.55166015624995,8.924462890624966],[-79.57236328125003,8.903271484375011],[-79.68745117187491,8.850976562500009],[-79.73105468750002,8.775341796874969],[-79.75854492187501,8.711572265625037],[-79.81591796875,8.639208984375031],[-79.75043945312498,8.595507812500015],[-80.12578125,8.349658203125017],[-80.20009765625002,8.313964843750028],[-80.36870117187499,8.288769531250054],[-80.407568359375,8.262451171875014],[-80.458984375,8.213867187499972],[-80.46586914062499,8.139941406250015],[-80.45810546874999,8.077050781249994],[-80.40913085937495,8.028564453124972],[-80.36557617187498,7.997998046875053],[-80.26093749999998,7.851660156249992],[-80.07519531249997,7.667041015625045],[-80.0400390625,7.599804687500026],[-80.01123046875,7.500048828125031],[-80.06728515624997,7.453222656250006],[-80.11059570312497,7.433447265624962],[-80.28730468750001,7.425634765624977],[-80.3482421875,7.385693359375011],[-80.37294921874997,7.324658203125011],[-80.4388671875,7.274951171875002],[-80.66669921874995,7.225683593750006],[-80.84555664062496,7.22006835937502],[-80.90122070312503,7.277148437500016],[-80.9146484375,7.4375],[-81.03510742187495,7.711132812500054],[-81.06386718749994,7.899755859375019],[-81.09394531249995,7.876318359375047],[-81.15781249999998,7.854394531250024],[-81.17939453124994,7.807519531249966],[-81.19545898437502,7.668408203125054],[-81.21904296874993,7.620947265624977],[-81.26840820312495,7.625488281250014],[-81.36958007812495,7.675292968750028],[-81.50415039062503,7.721191406249971],[-81.67568359374997,8.015917968749974],[-81.69428710937495,8.071386718749991],[-81.72763671875,8.137548828124977],[-81.86025390625002,8.165429687499966],[-81.97329101562494,8.215087890625043],[-82.09672851562496,8.222753906250006],[-82.15986328124995,8.19482421875],[-82.22431640624991,8.230371093749964],[-82.23544921874998,8.311035156250057],[-82.36484374999995,8.274853515624969],[-82.53095703124994,8.287402343750031],[-82.67954101562503,8.321972656249969],[-82.78115234374994,8.303515625000031],[-82.86611328124994,8.246337890625014],[-82.85434570312503,8.099511718750037],[-82.87934570312498,8.07065429687502],[-82.88330078124997,8.130566406249969],[-82.91289062499996,8.199609375],[-82.9484375,8.256835937500028],[-83.02338867187501,8.316015625],[-83.02734374999999,8.337744140624991],[-82.99755859374996,8.367773437499977],[-82.86162109374997,8.453515625000037],[-82.84477539062493,8.489355468749963],[-82.84262695312495,8.563964843749986],[-82.85571289062494,8.635302734375031],[-82.91704101562502,8.740332031250032],[-82.88198242187495,8.805322265625037],[-82.8119140625,8.857421874999986],[-82.739990234375,8.898583984375023],[-82.72783203125002,8.916064453125031],[-82.74116210937497,8.951708984375017],[-82.78305664062498,8.990283203124974],[-82.88134765625003,9.055859375000011],[-82.94033203124997,9.060107421874989],[-82.94282226562493,9.248876953124977],[-82.93984374999994,9.449169921875026],[-82.92504882812494,9.469042968749989],[-82.88896484374999,9.481005859375017],[-82.86015625,9.511474609375014],[-82.84399414062496,9.570800781250014],[-82.801025390625,9.591796875000028],[-82.723388671875,9.546093750000054],[-82.644091796875,9.505859375000028],[-82.61127929687498,9.519238281249997],[-82.5865234375,9.538818359374986],[-82.56923828124994,9.558203125000034],[-82.56357421875003,9.576660156249972],[-82.50034179687503,9.523242187500017],[-82.37080078124993,9.428564453124991],[-82.36318359374997,9.381933593750006],[-82.37539062499997,9.337255859375048],[-82.33974609375,9.209179687499983],[-82.27246093749996,9.190625],[-82.20488281249996,9.215429687500006],[-82.18813476562502,9.191748046874977],[-82.20068359375,9.168115234375051],[-82.23544921874998,9.141650390624987],[-82.24418945312499,9.031494140625014],[-82.13330078124994,8.98007812500002],[-82.07788085937503,8.93486328124996],[-81.89414062499998,8.956103515625017],[-81.82641601562494,8.944091796874972],[-81.78022460937495,8.957226562499983],[-81.83149414062501,9.045605468750054],[-81.90014648437497,9.111035156249969],[-81.89448242187495,9.140429687500003],[-81.8423828125,9.118701171875017],[-81.80258789062498,9.074121093749993],[-81.71220703124995,9.018945312500037],[-81.54560546874995,8.827001953125006],[-81.35478515624996,8.78056640624996],[-81.20375976562501,8.786718749999977],[-81.06308593749998,8.812646484375023],[-80.83867187499999,8.887207031250014],[-80.67646484374997,9.021875],[-80.546875,9.081933593749994],[-80.12709960937497,9.20991210937504],[-79.97797851562494,9.343701171875026],[-79.91508789062492,9.361328124999972],[-79.85507812499998,9.378076171875009],[-79.72309570312501,9.479296875000031],[-79.65224609374997,9.558203125000034],[-79.57729492187497,9.597851562500026],[-79.35546874999997,9.569238281249966]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Puerto Rico","adm0_a3":"PRI","geou_dif":0,"geounit":"Puerto Rico","gu_a3":"PRI","su_dif":0,"subunit":"Puerto Rico","su_a3":"PRI","brk_diff":0,"name":"Puerto Rico","name_long":"Puerto Rico","brk_a3":"PRI","brk_name":"Puerto Rico","brk_group":null,"abbrev":"P.R.","postal":"PR","formal_en":"Commonwealth of Puerto Rico","formal_fr":null,"note_adm0":"Commonwealth of U.S.A.","note_brk":null,"name_sort":"Puerto Rico","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":3971020,"gdp_md_est":70230,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"PR","iso_a3":"PRI","iso_n3":"630","un_a3":"630","wb_a2":"PR","wb_a3":"PRI","woe_id":-99,"adm0_a3_is":"PRI","adm0_a3_us":"PRI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"PRI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-67.87246093749997,18.059863281250017],[-67.8818359375,18.058935546875006],[-67.89116210937493,18.059912109375006],[-67.89545898437493,18.062792968750074],[-67.90190429687499,18.071875],[-67.93037109374993,18.0869140625],[-67.93706054687496,18.100634765625045],[-67.93061523437498,18.115136718749994],[-67.9189453125,18.120898437500017],[-67.86108398437494,18.12255859375],[-67.85517578124998,18.121142578125045],[-67.84365234374994,18.11103515624995],[-67.84335937499998,18.10395507812501],[-67.84907226562498,18.097021484375034],[-67.85917968749999,18.079589843750025],[-67.86342773437497,18.07519531250003],[-67.86679687499995,18.070654296874974],[-67.86811523437494,18.062792968750074],[-67.87246093749997,18.059863281250017]]],[[[-65.42558593749999,18.105615234374994],[-65.50400390624996,18.099511718749994],[-65.555078125,18.10766601562497],[-65.57221679687493,18.137304687499977],[-65.4771484375,18.16503906250003],[-65.36621093749997,18.16108398437501],[-65.302685546875,18.144384765625006],[-65.29487304687501,18.133349609375045],[-65.42558593749999,18.105615234374994]]],[[[-66.12939453125001,18.444921875000034],[-66.09848632812503,18.42519531249999],[-66.06840820312495,18.428027343750045],[-66.09267578125,18.468994140625057],[-66.07041015625,18.468994140625057],[-65.87875976562503,18.44384765625],[-65.75556640624998,18.401611328125],[-65.62880859375,18.381396484375045],[-65.62084960937497,18.242333984374966],[-65.71840820312497,18.18666992187499],[-65.7822265625,18.128613281249983],[-65.834130859375,18.05732421875001],[-65.97080078124995,17.974365234375],[-66.13549804687503,17.949462890625],[-66.24501953124997,17.94726562499997],[-66.28588867187503,17.949951171875],[-66.32578124999998,17.964160156250045],[-66.40854492187498,17.950585937500048],[-66.51079101562502,17.98701171875001],[-66.59843750000002,17.977880859375006],[-66.77241210937493,17.986572265624996],[-66.83759765624998,17.95507812499997],[-66.9,17.947900390625023],[-66.96123046874993,17.953759765624966],[-67.013330078125,17.967871093750006],[-67.14238281249999,17.966699218750023],[-67.196875,17.994189453125045],[-67.17431640625,18.152539062499983],[-67.17246093749998,18.22421875],[-67.20415039062496,18.283398437499983],[-67.23896484374995,18.320654296875034],[-67.2640625,18.364599609375006],[-67.21337890624997,18.393603515625045],[-67.17177734375002,18.435791015625025],[-67.15864257812501,18.499218749999983],[-67.11303710937497,18.514794921874966],[-67.05961914062499,18.522167968749955],[-66.812890625,18.492529296875034],[-66.18857421875,18.47578125000001],[-66.15307617187497,18.47065429687504],[-66.12939453125001,18.444921875000034]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"El Salvador","sov_a3":"SLV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"El Salvador","adm0_a3":"SLV","geou_dif":0,"geounit":"El Salvador","gu_a3":"SLV","su_dif":0,"subunit":"El Salvador","su_a3":"SLV","brk_diff":0,"name":"El Salvador","name_long":"El Salvador","brk_a3":"SLV","brk_name":"El Salvador","brk_group":null,"abbrev":"El. S.","postal":"SV","formal_en":"Republic of El Salvador","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"El Salvador","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":6,"mapcolor13":8,"pop_est":7185218,"gdp_md_est":43630,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SV","iso_a3":"SLV","iso_n3":"222","un_a3":"222","wb_a2":"SV","wb_a3":"SLV","woe_id":-99,"adm0_a3_is":"SLV","adm0_a3_us":"SLV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"SLV.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-89.36259765624999,14.416015625],[-89.33725585937499,14.411376953125],[-89.1701171875,14.360302734374995],[-89.1205078125,14.370214843749991],[-89.05712890625,14.329150390625001],[-89.02685546875,14.29697265624999],[-89.00019531249998,14.252734375],[-88.86831054687498,14.16367187499999],[-88.845947265625,14.124755859375],[-88.74736328124999,14.072265625],[-88.70761718749999,14.032080078124991],[-88.665625,14.015527343749994],[-88.583154296875,14.000146484374993],[-88.51254882812499,13.978955078124997],[-88.504345703125,13.964208984374991],[-88.49765624999998,13.904541015625],[-88.482666015625,13.854248046875],[-88.44912109374998,13.850976562499994],[-88.40849609374999,13.87539062499999],[-88.27622070312499,13.942675781250001],[-88.15102539062498,13.987353515625003],[-88.08046875,13.960595703124993],[-88.038720703125,13.904638671874991],[-87.99101562499997,13.879638671875],[-87.8919921875,13.894970703124997],[-87.80224609374999,13.889990234374991],[-87.7314453125,13.841064453125],[-87.71533203125,13.812695312499997],[-87.75854492187499,13.649951171875003],[-87.77421874999999,13.580322265625],[-87.781884765625,13.521386718749994],[-87.75644531249999,13.506005859374993],[-87.731640625,13.483105468749995],[-87.73701171875,13.451367187499997],[-87.81420898437499,13.399169921875],[-87.83837890625,13.385791015625003],[-87.820703125,13.28515625],[-87.878076171875,13.224414062500003],[-87.930859375,13.1806640625],[-88.02343749999999,13.16875],[-88.18066406249999,13.164013671874997],[-88.417138671875,13.213525390624994],[-88.591552734375,13.281054687500003],[-88.68564453124999,13.281494140625],[-88.65585937499999,13.259179687499993],[-88.58154296874999,13.244970703124991],[-88.48388671875,13.197167968749993],[-88.51201171874999,13.183935546874991],[-88.86704101562499,13.283251953125003],[-89.27763671874999,13.478076171875003],[-89.52324218749999,13.509130859374991],[-89.80419921874999,13.560107421875003],[-89.97045898437499,13.683154296875003],[-90.09521484374999,13.736523437499995],[-90.105908203125,13.783007812500003],[-90.104736328125,13.834765625],[-90.04814453124999,13.904052734375],[-89.94267578124999,13.997363281250003],[-89.872705078125,14.045605468749997],[-89.83994140624999,14.05507812499999],[-89.793701171875,14.050097656250003],[-89.74936523437499,14.077001953124991],[-89.71113281249998,14.141308593749997],[-89.6712890625,14.182714843749991],[-89.57026367187498,14.224658203125003],[-89.54716796874999,14.241259765625003],[-89.55502929687499,14.277246093749994],[-89.57695312499999,14.347070312499993],[-89.5736328125,14.390087890624995],[-89.54052734375,14.409912109375],[-89.50087890625,14.413769531249997],[-89.41884765625,14.431103515624999],[-89.383251953125,14.427636718749994],[-89.36259765624999,14.416015625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Mexico","sov_a3":"MEX","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mexico","adm0_a3":"MEX","geou_dif":0,"geounit":"Mexico","gu_a3":"MEX","su_dif":0,"subunit":"Mexico","su_a3":"MEX","brk_diff":0,"name":"Mexico","name_long":"Mexico","brk_a3":"MEX","brk_name":"Mexico","brk_group":null,"abbrev":"Mex.","postal":"MX","formal_en":"United Mexican States","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mexico","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":7,"mapcolor13":3,"pop_est":111211789,"gdp_md_est":1563000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MX","iso_a3":"MEX","iso_n3":"484","un_a3":"484","wb_a2":"MX","wb_a3":"MEX","woe_id":-99,"adm0_a3_is":"MEX","adm0_a3_us":"MEX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MEX.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-91.68369140624998,18.677343750000034],[-91.79614257812496,18.654199218750023],[-91.81611328124995,18.675878906250006],[-91.58911132812497,18.77802734375004],[-91.55029296874997,18.773681640625025],[-91.53671874999998,18.760009765625],[-91.65424804687491,18.711474609375074],[-91.68369140624998,18.677343750000034]]],[[[-110.91445312499995,18.741455078125057],[-110.97480468749998,18.720361328125023],[-111.06367187499998,18.781640624999966],[-111.03994140624992,18.83012695312499],[-110.98940429687495,18.863134765625063],[-110.94208984374998,18.801708984374983],[-110.91445312499995,18.741455078125057]]],[[[-86.93964843750001,20.303320312500006],[-86.99140624999998,20.272167968749955],[-87.01943359375,20.38232421875003],[-86.97797851562498,20.489794921875074],[-86.92783203125,20.55151367187503],[-86.82856445312493,20.55878906250001],[-86.76328124999993,20.579052734374955],[-86.75502929687497,20.5517578125],[-86.80878906249998,20.468457031249983],[-86.93964843750001,20.303320312500006]]],[[[-86.71401367187495,21.239306640624985],[-86.69628906249997,21.191015625],[-86.71362304687497,21.19677734375003],[-86.73637695312499,21.233300781250023],[-86.75288085937495,21.278808593750053],[-86.73906249999999,21.27998046875001],[-86.72690429687499,21.264306640625023],[-86.71401367187495,21.239306640624985]]],[[[-106.50224609374999,21.61083984375003],[-106.53134765624998,21.528515625000036],[-106.60703124999993,21.56147460937498],[-106.63417968749997,21.613134765625034],[-106.63935546874994,21.697851562499977],[-106.59736328125,21.712158203125057],[-106.53642578125003,21.676367187500034],[-106.52382812499994,21.65234375000003],[-106.50224609374999,21.61083984375003]]],[[[-109.80507812499998,24.151074218749983],[-109.82675781249996,24.147558593749977],[-109.8779296875,24.200634765624955],[-109.90048828124998,24.330908203125034],[-109.89033203124994,24.344824218750034],[-109.79379882812499,24.18339843749999],[-109.79560546875001,24.163574218750053],[-109.80507812499998,24.151074218749983]]],[[[-111.69887695312498,24.393603515625014],[-111.71230468749995,24.346386718749983],[-112.01328125,24.533398437499983],[-111.94086914062498,24.551123046875034],[-111.85683593750001,24.537988281250023],[-111.69887695312498,24.393603515625014]]],[[[-110.56738281249994,25.003466796875017],[-110.5388671875,24.89155273437504],[-110.59018554687498,24.908056640625006],[-110.657421875,24.968847656250063],[-110.70341796874995,25.046630859375],[-110.69926757812499,25.081445312499994],[-110.690234375,25.087841796874955],[-110.59521484375001,25.042138671874966],[-110.56738281249994,25.003466796875017]]],[[[-112.05727539062498,24.545703125000017],[-112.07734374999998,24.53457031250005],[-112.16289062499999,24.650292968749994],[-112.17548828124998,24.729589843749977],[-112.21049804687503,24.763134765624983],[-112.29677734375002,24.789648437500063],[-112.22231445312495,24.951123046875008],[-112.159423828125,25.28564453125003],[-112.13168945312495,25.22436523437497],[-112.19838867187495,24.88544921875004],[-112.19501953124998,24.841064453125057],[-112.16376953125001,24.799658203125063],[-112.13022460937502,24.729589843749977],[-112.12626953124999,24.654003906249955],[-112.06748046875002,24.583642578124994],[-112.05727539062498,24.545703125000017]]],[[[-111.10029296874998,26.020605468750002],[-111.08774414062499,25.984521484375023],[-111.09443359375003,25.97407226562504],[-111.13525390625,25.999169921874994],[-111.20449218749998,25.849707031250006],[-111.224658203125,25.83588867187504],[-111.18291015625002,26.040625],[-111.1392578125,26.06982421875],[-111.09086914062502,26.07568359375003],[-111.10029296874998,26.020605468750002]]],[[[-115.17060546875001,28.069384765624957],[-115.18427734374994,28.037255859374994],[-115.35292968750002,28.103955078124983],[-115.260400390625,28.220556640625034],[-115.273974609375,28.342773437500057],[-115.23354492187494,28.36835937500004],[-115.19697265624994,28.32788085937503],[-115.14853515624996,28.172119140625025],[-115.17060546875001,28.069384765624957]]],[[[-118.24277343749999,28.941943359374985],[-118.28549804687499,28.903759765625036],[-118.40009765625,29.112304687499968],[-118.40136718749999,29.162744140625055],[-118.36782226562497,29.187597656250034],[-118.31230468749993,29.18286132812506],[-118.312060546875,29.13051757812505],[-118.26552734375001,29.08642578125003],[-118.24736328124993,29.043359374999966],[-118.24277343749999,28.941943359374985]]],[[[-112.20307617187503,29.00532226562504],[-112.27841796874999,28.76933593750002],[-112.35527343750003,28.77314453124998],[-112.51406249999997,28.84760742187495],[-112.53100585937496,28.89399414062501],[-112.46982421875,29.167724609375004],[-112.42353515624998,29.203662109375017],[-112.28505859374992,29.24042968749995],[-112.26342773437496,29.20678710937503],[-112.24873046875,29.1259765625],[-112.20307617187503,29.00532226562504]]],[[[-113.15561523437502,29.052246093749996],[-113.16279296874997,29.03476562499998],[-113.26474609374993,29.09672851562499],[-113.49633789062497,29.30761718749997],[-113.58061523437499,29.413232421874994],[-113.59438476562497,29.462695312500045],[-113.58720703125002,29.573046874999957],[-113.50795898437494,29.559912109375034],[-113.41591796875001,29.485937499999977],[-113.37583007812493,29.417480468749968],[-113.37382812499997,29.33891601562496],[-113.20214843749997,29.30185546875003],[-113.17792968749993,29.131933593749977],[-113.15561523437502,29.052246093749996]]],[[[-114.694140625,31.705615234375017],[-114.72724609375001,31.701367187500036],[-114.78920898437501,31.747412109375006],[-114.78457031249997,31.78979492187503],[-114.77109374999996,31.794091796875023],[-114.70908203124993,31.75688476562499],[-114.68793945312501,31.724218749999974],[-114.694140625,31.705615234375017]]],[[[-112.93896484375001,31.916259765625025],[-112.46474609374995,31.76826171874998],[-111.99047851562497,31.62021484375003],[-111.51621093749998,31.472265625],[-111.0419921875,31.324218750000025],[-110.68852539062502,31.324853515624994],[-110.33510742187497,31.325537109375034],[-109.98164062499998,31.32617187499997],[-109.62822265625,31.326806640625023],[-109.27475585937493,31.32744140624999],[-108.92133789062498,31.328125],[-108.56787109375,31.328808593749983],[-108.21445312499993,31.329443359375034],[-108.21381835937497,31.441894531250025],[-108.21318359374995,31.554394531250036],[-108.2125,31.666845703125034],[-108.21181640625001,31.77934570312502],[-107.992041015625,31.778173828125063],[-107.772216796875,31.77705078125001],[-107.55234374999996,31.77587890625003],[-107.33251953124994,31.774755859374977],[-107.11269531250001,31.77363281250001],[-106.89287109374999,31.772460937500057],[-106.67304687499997,31.771337890625006],[-106.45322265624993,31.770166015625023],[-106.44541015624996,31.768408203125002],[-106.43603515625,31.764453125000017],[-106.34697265624996,31.679003906250014],[-106.25571289062495,31.544677734374996],[-106.14804687499995,31.450927734374996],[-106.02407226562501,31.39775390624999],[-105.81269531250003,31.241015625000045],[-105.51401367187502,30.980761718749957],[-105.27583007812498,30.807275390624966],[-105.09814453125003,30.72055664062506],[-104.97880859374996,30.64594726562495],[-104.91787109374998,30.583349609375006],[-104.83588867187497,30.447656249999962],[-104.68134765625003,30.134375],[-104.68134765625003,29.99052734375002],[-104.62221679687497,29.854296874999957],[-104.50400390624995,29.67768554687495],[-104.40063476562503,29.573730468749996],[-104.31220703124995,29.54243164062504],[-104.21552734374998,29.47988281249999],[-104.11059570312499,29.386132812499998],[-103.98974609374999,29.323144531250023],[-103.85292968750001,29.291064453124985],[-103.66396484374997,29.20688476562506],[-103.42294921874998,29.07070312500002],[-103.25771484374997,29.001123046874966],[-103.16831054687496,28.998193359374994],[-103.08999023437501,29.041894531250023],[-103.02285156250001,29.13222656250005],[-102.95683593749996,29.190380859374983],[-102.8919921875,29.216406250000034],[-102.86567382812495,29.258007812499983],[-102.87783203124994,29.315332031250048],[-102.83398437499999,29.443945312500034],[-102.73417968749997,29.64394531250002],[-102.61494140624994,29.75234375],[-102.47626953125003,29.769091796875017],[-102.38564453124995,29.80664062500003],[-102.34306640624996,29.86499023437503],[-102.26894531249998,29.871191406250038],[-102.1630859375,29.825244140625017],[-101.99091796875,29.795703125000014],[-101.75234375,29.782470703125],[-101.61162109375,29.786962890625034],[-101.56870117187496,29.80922851562502],[-101.54638671874994,29.80805664062495],[-101.54462890624994,29.78354492187503],[-101.50927734375003,29.77314453124995],[-101.44038085937503,29.77685546875],[-101.38037109374994,29.74257812500005],[-101.30351562499993,29.634082031249957],[-101.03896484374995,29.46040039062501],[-101.03862304687497,29.460302734375002],[-101.01630859374995,29.400683593750017],[-100.92412109375,29.314697265624996],[-100.75458984375001,29.18251953124999],[-100.65864257812501,29.06855468750004],[-100.63632812499999,28.972802734374962],[-100.54970703125002,28.821337890625017],[-100.39892578124994,28.614208984375008],[-100.33173828125003,28.502539062500006],[-100.34814453124997,28.486425781250006],[-100.33627929687498,28.428125],[-100.29604492187495,28.32768554687499],[-100.22128906249999,28.242626953124983],[-100.11196289062501,28.172949218750006],[-100.00141601562495,28.0478515625],[-99.8896484375,27.867285156250006],[-99.75424804687496,27.729931640624983],[-99.5953125,27.635888671875023],[-99.50532226562495,27.54833984375003],[-99.48427734374995,27.467382812500063],[-99.48583984375,27.39804687500006],[-99.51005859374996,27.34033203125003],[-99.49980468749999,27.28549804687503],[-99.45512695312496,27.23369140624996],[-99.44023437499995,27.170117187499983],[-99.45771484374995,27.081689453124994],[-99.45654296874999,27.05668945312496],[-99.45649414062497,27.056640625000057],[-99.4435546875,27.036669921874985],[-99.30244140625003,26.88471679687501],[-99.22993164062498,26.761914062499955],[-99.17236328125,26.56591796875],[-99.17207031250003,26.56416015624998],[-99.10776367187498,26.446923828124994],[-99.01528320312497,26.39897460937499],[-98.87319335937498,26.38125],[-98.765234375,26.340429687499977],[-98.69140624999996,26.276464843750006],[-98.59829101562502,26.237841796875045],[-98.48588867187493,26.224560546874983],[-98.378125,26.18237304687503],[-98.27504882812497,26.111181640624974],[-98.08281249999999,26.064453124999968],[-97.80141601562494,26.042041015625017],[-97.587255859375,25.984179687500045],[-97.440283203125,25.890820312500036],[-97.37563476562497,25.871826171875],[-97.35815429687496,25.870507812499994],[-97.34975585937494,25.884765625000057],[-97.33867187499999,25.911181640625017],[-97.28178710937496,25.941601562499983],[-97.14624023437494,25.961474609375042],[-97.16445312500002,25.754931640625074],[-97.22490234374999,25.585449218749996],[-97.42407226562497,25.233105468749983],[-97.50708007812503,25.01455078125005],[-97.66767578124995,24.389990234374977],[-97.71704101562497,23.980615234374994],[-97.72861328125003,23.787939453125006],[-97.74267578124997,23.76064453125002],[-97.72739257812495,23.732226562500017],[-97.76586914062497,23.30615234374997],[-97.74521484375003,22.942382812500025],[-97.75834960937495,22.886035156250017],[-97.81669921874992,22.776318359374955],[-97.85781249999997,22.62451171875003],[-97.84160156249996,22.557080078124955],[-97.84248046874995,22.510302734375017],[-97.78237304687495,22.27929687500003],[-97.76328124999998,22.105859374999966],[-97.58476562499993,21.808544921874983],[-97.48452148437494,21.70483398437497],[-97.36015625000002,21.614941406249955],[-97.31450195312496,21.564208984375025],[-97.33686523437498,21.43789062500005],[-97.387548828125,21.373925781249962],[-97.40917968749997,21.272558593750034],[-97.43413085937499,21.356494140625074],[-97.42441406249995,21.46533203125003],[-97.38481445312499,21.523828124999966],[-97.38344726562495,21.56669921874999],[-97.45659179687492,21.612402343749977],[-97.59038085937493,21.76201171874999],[-97.75380859375001,22.02666015624999],[-97.63754882812495,21.603662109374962],[-97.59760742187498,21.53588867187503],[-97.56655273437497,21.507714843749966],[-97.51455078124994,21.47797851562504],[-97.50107421875003,21.43203125],[-97.50058593750003,21.398046875],[-97.35712890624991,21.104003906250057],[-97.19497070312501,20.800097656250045],[-97.18632812499996,20.717041015625],[-97.12143554687496,20.614990234375],[-96.70869140624998,20.188281250000017],[-96.45605468749993,19.869775390624966],[-96.36835937499993,19.567236328125063],[-96.31533203124997,19.47285156250001],[-96.28955078124994,19.34375],[-96.12397460937498,19.199072265625006],[-96.07338867187497,19.105664062499983],[-95.98466796875002,19.05375976562499],[-95.91303710937498,18.897167968749983],[-95.778125,18.805517578125034],[-95.81035156249993,18.803857421874966],[-95.92822265624997,18.85009765624997],[-95.92036132812495,18.81958007812497],[-95.82109374999999,18.75463867187497],[-95.62680664062503,18.690576171874994],[-95.5783203125,18.69042968750003],[-95.654931640625,18.723681640625074],[-95.71982421874996,18.768359375000017],[-95.69711914062493,18.77490234375003],[-95.56142578124994,18.719140625000023],[-95.18183593749995,18.700732421875017],[-95.01469726562493,18.570605468750045],[-94.79814453124996,18.51459960937501],[-94.68164062500003,18.348486328125006],[-94.54619140624996,18.17485351562499],[-94.45976562499993,18.166650390624994],[-94.39228515624995,18.165966796874955],[-94.18901367187492,18.195263671874983],[-93.87314453124998,18.304443359375],[-93.76440429687494,18.35791015624997],[-93.55234375,18.430468750000017],[-93.2279296875,18.443798828124983],[-93.12734375000002,18.4234375],[-92.88476562499997,18.468652343749966],[-92.76909179687492,18.52412109375001],[-92.72895507812493,18.574511718750045],[-92.710107421875,18.611669921874974],[-92.48530273437495,18.66479492187497],[-92.44101562499996,18.67529296874997],[-92.21318359374993,18.684863281250074],[-92.10322265625001,18.704394531250045],[-91.97377929687502,18.715869140625074],[-91.88037109375,18.637792968749977],[-91.88046875,18.599658203125017],[-91.94267578124999,18.563427734375008],[-91.91357421875,18.52851562500001],[-91.80297851562503,18.470605468750023],[-91.59970703124999,18.44716796875005],[-91.53398437499993,18.45654296875],[-91.44047851562499,18.541845703125063],[-91.27524414062498,18.62446289062501],[-91.27875976562498,18.720654296874983],[-91.30830078124998,18.773291015625034],[-91.35629882812498,18.77656250000001],[-91.3677734375,18.806103515624983],[-91.334228515625,18.876806640625006],[-91.34306640624996,18.900585937499955],[-91.44555664062494,18.832812500000014],[-91.46918945312498,18.833007812500057],[-91.45786132812498,18.864648437499994],[-91.43666992187502,18.889794921874966],[-91.13593749999993,19.0375],[-91.05893554687498,19.098193359375074],[-90.95502929687495,19.151660156250042],[-90.73925781249994,19.352246093749955],[-90.69316406249996,19.729882812499966],[-90.65009765624998,19.795947265625017],[-90.507080078125,19.911865234375],[-90.49169921874997,19.94677734375003],[-90.48242187500003,20.025732421875034],[-90.48637695312493,20.224023437500023],[-90.47832031249999,20.379980468749977],[-90.48413085937503,20.55634765625004],[-90.45844726562491,20.713720703125034],[-90.43515624999998,20.757519531249983],[-90.353125,21.009423828124966],[-90.18291015624992,21.120898437500042],[-89.88764648437501,21.252636718749955],[-89.81977539062495,21.274609374999983],[-88.87871093749999,21.41411132812499],[-88.7466796875,21.448144531249994],[-88.58491210937498,21.53867187500006],[-88.46669921874997,21.569384765625017],[-88.25102539062497,21.56689453125003],[-88.18476562500001,21.578955078125006],[-88.171728515625,21.591455078124966],[-88.17138671875003,21.60351562500003],[-88.13164062500002,21.615869140624966],[-88.0068359375,21.604052734375045],[-87.77373046875002,21.54951171874995],[-87.68881835937495,21.53583984375001],[-87.48046874999997,21.472460937500074],[-87.25087890625,21.44697265625004],[-87.21791992187494,21.458007812500057],[-87.18759765624996,21.477294921875],[-87.16430664062503,21.514208984375045],[-87.18828124999993,21.546435546875045],[-87.21059570312497,21.54394531249997],[-87.24946289062498,21.526611328125],[-87.29575195312498,21.524951171875017],[-87.38666992187495,21.55146484375001],[-87.36850585937498,21.573730468749996],[-87.275732421875,21.57163085937503],[-87.216455078125,21.58242187499999],[-87.12846679687502,21.621484374999966],[-87.034765625,21.592236328124955],[-86.91171875,21.462841796874983],[-86.824072265625,21.421679687500017],[-86.81708984374998,21.234228515625034],[-86.80385742187497,21.200048828125006],[-86.77177734374999,21.15053710937502],[-86.81552734375003,21.005224609375006],[-86.86469726562501,20.885058593750045],[-86.92622070312493,20.786474609375034],[-87.0595703125,20.63125],[-87.22124023437499,20.50727539062498],[-87.42138671875,20.231396484375008],[-87.4671875,20.102148437500063],[-87.4658203125,19.99853515625],[-87.43193359375002,19.898486328125045],[-87.44174804687498,19.861523437499983],[-87.4662109375,19.82416992187501],[-87.50688476562502,19.827490234375063],[-87.585791015625,19.779492187499955],[-87.68769531249998,19.63710937499999],[-87.69008789062494,19.59370117187504],[-87.6453125,19.55390625000001],[-87.58730468749997,19.572998046875],[-87.51166992187501,19.57470703124997],[-87.46938476562502,19.586474609375074],[-87.42475585937498,19.583349609375063],[-87.43471679687497,19.50170898437503],[-87.48266601562497,19.44375],[-87.51289062499998,19.425585937500074],[-87.5669921875,19.415722656250008],[-87.62753906249998,19.382714843750023],[-87.65869140625003,19.352343750000074],[-87.65576171874997,19.25786132812499],[-87.62207031250003,19.25048828125],[-87.55078124999997,19.320947265624966],[-87.50947265625001,19.317480468749977],[-87.50107421874998,19.287792968749983],[-87.59355468749997,19.04638671875],[-87.65302734374995,18.79853515625004],[-87.733544921875,18.65502929687503],[-87.76181640624998,18.446142578125006],[-87.8041015625,18.357080078124994],[-87.85322265624995,18.268994140624983],[-87.88198242187497,18.27387695312501],[-87.95966796874998,18.44086914062501],[-88.03906249999997,18.48388671874997],[-88.05644531249996,18.524462890625074],[-88.01113281249997,18.72685546874999],[-88.03173828125,18.838916015625017],[-88.07377929687496,18.834472656249996],[-88.12675781249999,18.773046875],[-88.19677734374997,18.719677734374955],[-88.19531250000003,18.642626953125074],[-88.27573242187498,18.514550781249994],[-88.29565429687494,18.47241210937503],[-88.37241210937495,18.482324218750023],[-88.46127929687502,18.47675781250004],[-88.52299804687497,18.445898437500063],[-88.58618164062497,18.29052734375003],[-88.74360351562497,18.071630859375006],[-88.80634765624998,17.965527343749983],[-88.85737304687498,17.92880859375003],[-88.89780273437495,17.91455078124997],[-88.94262695312494,17.93964843750004],[-89.05043945312497,17.99970703125001],[-89.13354492187501,17.970800781249977],[-89.16235351562494,17.901953124999977],[-89.16147460937503,17.81484375],[-89.37153320312493,17.814990234375045],[-89.72880859374996,17.815332031250023],[-90.18359375,17.815722656250017],[-90.62202148437494,17.816113281250008],[-90.98916015624997,17.816406249999968],[-90.99042968749995,17.620751953124994],[-90.99160156250002,17.44746093750004],[-90.99296874999993,17.25244140625],[-91.19550781249998,17.254101562499983],[-91.40961914062501,17.255859375],[-91.39233398437494,17.236425781250034],[-91.31918945312498,17.199804687500034],[-91.22416992187496,17.112255859374955],[-91.11186523437502,16.976171875000034],[-90.975830078125,16.867822265624994],[-90.81601562499995,16.78710937499997],[-90.710693359375,16.708105468750034],[-90.65996093749996,16.630908203125045],[-90.634375,16.565136718749955],[-90.63408203125002,16.51074218749997],[-90.57578124999995,16.467822265625017],[-90.47109374999994,16.439550781250034],[-90.41699218750003,16.391015625000023],[-90.41699218750003,16.351318359375],[-90.45014648437493,16.261376953124994],[-90.45986328124997,16.162353515624968],[-90.44716796874992,16.07270507812501],[-90.52197265625,16.07119140625005],[-90.70322265624996,16.07104492187503],[-90.97958984374998,16.07080078124997],[-91.23378906249995,16.070654296875034],[-91.433984375,16.070458984374994],[-91.736572265625,16.070166015625006],[-91.81943359375,15.932373046875],[-91.95722656250001,15.703222656250034],[-92.08212890624998,15.495556640625011],[-92.18715820312495,15.320898437499963],[-92.20424804687497,15.275],[-92.20434570312499,15.237695312499978],[-92.07480468749998,15.07421875],[-92.09873046874998,15.026757812499993],[-92.14423828125001,15.001953125],[-92.15854492187499,14.963574218749997],[-92.15566406249994,14.901318359375011],[-92.18637695312498,14.818359374999986],[-92.17646484375001,14.761328125],[-92.15991210937499,14.691015624999979],[-92.18706054687492,14.630078125],[-92.20903320312499,14.57099609375004],[-92.23515624999995,14.545410156249984],[-92.26455078125,14.567773437500007],[-92.53095703125001,14.839648437499974],[-92.80893554687498,15.138574218750037],[-92.91840820312498,15.236132812500019],[-93.0244140625,15.310253906250011],[-93.16689453124998,15.448046875000017],[-93.54116210937494,15.750390624999966],[-93.734375,15.888476562500047],[-93.91606445312493,16.053564453125006],[-94.07895507812498,16.14526367187503],[-94.239892578125,16.20507812499997],[-94.31127929687497,16.23935546875003],[-94.374169921875,16.284765625000034],[-94.409033203125,16.28735351562503],[-94.426416015625,16.22626953125001],[-94.37016601562499,16.195410156250034],[-94.30283203125003,16.169335937499966],[-94.24951171875,16.167529296875045],[-94.19340820312495,16.145605468750034],[-94.02832031249997,16.062060546875045],[-94.00126953124996,16.018945312499966],[-94.47075195312496,16.186572265625017],[-94.66152343750002,16.20190429687503],[-94.68227539062497,16.228222656249983],[-94.58710937499995,16.315820312499966],[-94.61684570312497,16.34755859375005],[-94.65078124999995,16.35180664062503],[-94.75283203124997,16.29121093750001],[-94.79082031249999,16.28715820312499],[-94.7974609375,16.32705078125005],[-94.79291992187495,16.36459960937506],[-94.85869140624996,16.41972656249999],[-94.90043945312502,16.41748046875],[-94.934716796875,16.379101562499983],[-95.02353515624995,16.30625],[-95.02084960937503,16.277636718750017],[-94.84604492187503,16.24658203125],[-94.78579101562502,16.229101562499977],[-94.79941406249995,16.20966796875001],[-94.94931640625003,16.21000976562499],[-95.134375,16.17695312500001],[-95.46440429687499,15.974707031250034],[-95.77177734374999,15.887792968749975],[-96.21357421874993,15.693066406250011],[-96.40864257812495,15.683105468750028],[-96.51083984375,15.651904296875072],[-96.80795898437495,15.726416015624975],[-97.18466796874998,15.909277343750004],[-97.75478515624994,15.966845703125017],[-98.13896484374996,16.20629882812503],[-98.52031249999993,16.30483398437505],[-98.76220703125,16.534765624999977],[-98.90795898437496,16.544580078125023],[-99.00166015624994,16.581445312499994],[-99.348046875,16.66474609375001],[-99.69067382812497,16.719628906249994],[-100.02451171874996,16.920507812500063],[-100.24301757812498,16.984179687500074],[-100.431884765625,17.0640625],[-100.84780273437498,17.20048828124999],[-101.00195312499994,17.27612304687503],[-101.14785156250002,17.393115234375074],[-101.38549804687503,17.514208984375045],[-101.48706054687503,17.615332031250034],[-101.60029296875,17.651562499999955],[-101.76240234374997,17.841992187500036],[-101.84707031250001,17.92226562500005],[-101.91870117187493,17.959765625000045],[-101.99550781249997,17.972705078125017],[-102.21660156249997,17.957421875000023],[-102.54697265624995,18.041406249999966],[-102.69956054687495,18.062841796875006],[-103.01850585937501,18.186865234375034],[-103.44160156249995,18.32539062500001],[-103.58027343749997,18.484375],[-103.69892578124997,18.632958984374966],[-103.91245117187496,18.828466796875006],[-104.04565429687501,18.91181640625001],[-104.27700195312498,19.01098632812497],[-104.40517578124998,19.091210937499966],[-104.60297851562495,19.152880859375017],[-104.93847656249999,19.309375],[-105.04521484374999,19.443261718750023],[-105.107666015625,19.56220703125001],[-105.286376953125,19.70649414062501],[-105.482080078125,19.97607421875003],[-105.53242187499994,20.07539062500001],[-105.57041015624995,20.22783203124999],[-105.61591796875,20.316308593749994],[-105.66943359374997,20.385595703124977],[-105.642138671875,20.43598632812504],[-105.54257812499998,20.49794921875005],[-105.37705078125,20.511865234375023],[-105.26015625,20.579052734374955],[-105.24467773437503,20.63417968749999],[-105.25229492187499,20.668505859375074],[-105.32705078124994,20.752978515625045],[-105.42011718749998,20.775390625],[-105.49238281249995,20.77661132812497],[-105.51083984374999,20.808740234375023],[-105.45634765624997,20.843798828125074],[-105.39399414062498,20.926123046875063],[-105.30195312499998,21.02656250000001],[-105.23706054687499,21.119189453125045],[-105.225,21.249707031249983],[-105.233251953125,21.380419921875045],[-105.20869140624998,21.490820312499977],[-105.43144531249997,21.618261718750006],[-105.45742187499994,21.672460937500034],[-105.52744140624999,21.81845703125003],[-105.64912109375001,21.988085937500045],[-105.64550781249999,22.32690429687497],[-105.79179687500003,22.627490234375014],[-105.94335937499999,22.777001953124994],[-106.02172851562497,22.829052734374955],[-106.2345703125,23.060937500000023],[-106.40224609374997,23.195605468750017],[-106.56650390624993,23.449462890625057],[-106.72875976562496,23.610693359375034],[-106.93549804687497,23.88125],[-107.08486328124994,24.016113281250025],[-107.76494140625002,24.47192382812497],[-107.72661132812503,24.47192382812497],[-107.52724609375001,24.36005859375001],[-107.49370117187499,24.369384765625057],[-107.48891601562501,24.423974609374994],[-107.51191406249997,24.489160156250023],[-107.54887695312497,24.50478515625002],[-107.60200195312494,24.490136718749966],[-107.67368164062499,24.50356445312502],[-107.70952148437502,24.525048828124966],[-107.81669921875,24.539013671874983],[-107.95117187499994,24.614892578124966],[-108.00878906249996,24.693554687500008],[-108.01508789062498,24.78339843750001],[-108.20766601562498,24.97480468750004],[-108.28076171874994,25.08154296875],[-108.24331054687495,25.07368164062501],[-108.19204101562498,25.03066406250005],[-108.14008789062498,25.018408203125034],[-108.079638671875,25.018066406250057],[-108.03569335937502,25.035351562500008],[-108.05146484374994,25.067041015624994],[-108.09282226562502,25.093505859375057],[-108.37368164062495,25.1943359375],[-108.466259765625,25.26513671875003],[-108.69638671874996,25.382910156250034],[-108.7509765625,25.42421875000002],[-108.78725585937502,25.53803710937501],[-108.84360351562493,25.543310546875034],[-108.89316406249999,25.511572265625034],[-109.02880859375003,25.48046875000003],[-109.06347656249999,25.516699218750034],[-109.06845703125002,25.551562500000014],[-108.97275390624998,25.588476562500002],[-108.88486328125,25.69604492187497],[-108.886572265625,25.733447265625045],[-108.93515624999993,25.69028320312503],[-109.00834960937503,25.641992187499962],[-109.08408203125,25.61503906249999],[-109.19648437499998,25.59252929687503],[-109.25395507812497,25.60878906250005],[-109.30429687500002,25.633154296875034],[-109.38496093750001,25.727148437500006],[-109.42563476562493,26.03256835937506],[-109.35415039062495,26.138476562500045],[-109.270654296875,26.243115234374955],[-109.19970703125003,26.305224609374985],[-109.15878906249995,26.258349609375045],[-109.11669921874999,26.252734374999957],[-109.14633789062499,26.305712890625014],[-109.21601562499997,26.35527343749999],[-109.240625,26.404687500000023],[-109.24326171875002,26.449951171875],[-109.27626953125,26.533886718749955],[-109.48286132812497,26.710351562500023],[-109.67607421874999,26.696826171875014],[-109.75478515624995,26.702929687500017],[-109.82836914062501,26.770117187500034],[-109.89091796874997,26.883398437500006],[-109.92172851562493,26.978173828125048],[-109.92563476562495,27.02866210937503],[-109.94399414062495,27.079345703125053],[-110.27714843749997,27.162207031250063],[-110.37729492187495,27.233300781249962],[-110.47778320312499,27.322656249999966],[-110.51938476562493,27.395605468750002],[-110.56064453124999,27.45014648437501],[-110.59267578124995,27.544335937500023],[-110.61547851562497,27.653906250000034],[-110.57827148437494,27.79565429687497],[-110.52988281249993,27.864208984374983],[-110.759033203125,27.915185546874994],[-110.84863281249996,27.91757812500003],[-110.92080078125001,27.888867187499955],[-110.98608398437499,27.925976562499955],[-111.12138671875,27.96699218749998],[-111.28242187499994,28.115234374999968],[-111.47167968749997,28.38398437500001],[-111.68007812499997,28.470556640624977],[-111.74721679687497,28.56396484375],[-111.832421875,28.648144531250008],[-111.90703125000002,28.752490234375045],[-111.91860351562498,28.797900390624964],[-111.94082031249997,28.823193359374955],[-112.04487304687493,28.89589843750002],[-112.16176757812495,29.01889648437503],[-112.192041015625,29.11796875],[-112.22348632812499,29.26948242187501],[-112.30141601562498,29.322900390624994],[-112.37822265625,29.34770507812496],[-112.39321289062495,29.41972656249999],[-112.388671875,29.460107421875055],[-112.41455078125001,29.536425781249957],[-112.57290039062497,29.71953125],[-112.653125,29.870068359374983],[-112.69716796874997,29.916845703125002],[-112.73837890625,29.98544921875003],[-112.759228515625,30.12568359375001],[-112.82480468749995,30.300146484375034],[-112.95175781249996,30.510009765624968],[-113.05766601562496,30.651025390625023],[-113.11044921874995,30.793310546875063],[-113.08701171874998,30.938085937500063],[-113.10498046874999,31.027197265625006],[-113.11860351562501,31.048095703125],[-113.10795898437499,31.077294921874994],[-113.07280273437502,31.060888671875034],[-113.04291992187497,31.087011718750034],[-113.04672851562495,31.179248046874985],[-113.08364257812501,31.207177734374994],[-113.18618164062501,31.236035156250008],[-113.23144531250001,31.255957031249974],[-113.480810546875,31.29360351562502],[-113.62348632812494,31.34589843750001],[-113.63300781250001,31.467626953125038],[-113.69995117187497,31.523339843749994],[-113.75942382812501,31.557763671874994],[-113.94775390625001,31.629345703125008],[-113.97749023437494,31.59272460937501],[-114.00268554687501,31.525146484375025],[-114.08090820312496,31.51035156250003],[-114.14931640624995,31.507373046875045],[-114.26406249999995,31.55444335937503],[-114.54868164062495,31.733544921875023],[-114.60878906249995,31.762255859375017],[-114.69760742187499,31.777441406250006],[-114.74130859374993,31.80649414062506],[-114.93359374999994,31.900732421874974],[-114.89506835937502,31.85063476562499],[-114.83950195312495,31.798535156250036],[-114.78989257812498,31.64711914062499],[-114.84814453124994,31.53793945312506],[-114.88188476562497,31.156396484375023],[-114.84467773437495,31.08046875000002],[-114.76103515624997,30.958740234374996],[-114.70336914062501,30.765185546875017],[-114.68544921875001,30.621191406249977],[-114.63330078124996,30.50688476562496],[-114.64975585937495,30.238134765625006],[-114.62993164062497,30.15629882812505],[-114.55048828124997,30.02226562499999],[-114.40341796874992,29.89648437500003],[-114.37260742187496,29.83022460937505],[-114.17919921875,29.734326171874955],[-114.06191406249998,29.609521484375023],[-113.82895507812496,29.439453125],[-113.75546875,29.367480468750017],[-113.5453125,29.102246093749983],[-113.53847656249994,29.023388671874983],[-113.49970703124995,28.92670898437501],[-113.3818359375,28.946679687499994],[-113.32890625,28.873046875],[-113.33500976562497,28.839062500000015],[-113.32070312499998,28.81313476562505],[-113.25888671875,28.818847656250057],[-113.20556640624996,28.798779296874955],[-113.09365234375001,28.511767578125017],[-113.03359375000002,28.47260742187504],[-112.95664062499998,28.455859374999985],[-112.870849609375,28.42421875000005],[-112.86523437500001,28.35063476562496],[-112.86845703124996,28.2919921875],[-112.79570312499996,28.207128906250034],[-112.808056640625,28.0921875],[-112.74931640625,27.994873046875053],[-112.75820312499997,27.900634765625025],[-112.73403320312501,27.825976562500017],[-112.55263671875,27.65747070312497],[-112.32919921874996,27.52343750000003],[-112.28261718749998,27.34746093749996],[-112.19145507812495,27.186669921874994],[-112.09814453124996,27.14594726562504],[-112.00395507812496,27.0791015625],[-112.015576171875,27.009716796874983],[-112.00908203125003,26.967089843750017],[-111.88315429687495,26.840185546875006],[-111.86264648437495,26.678515625000014],[-111.75400390625002,26.572705078124955],[-111.723388671875,26.564404296874955],[-111.6994140625,26.58095703125005],[-111.77851562499994,26.68725585937503],[-111.81684570312494,26.75625],[-111.82177734374997,26.865087890625006],[-111.79526367187499,26.8796875],[-111.56967773437495,26.707617187500006],[-111.54589843749999,26.579199218750034],[-111.470166015625,26.50664062499999],[-111.464501953125,26.40844726562497],[-111.41850585937496,26.349951171875063],[-111.40458984374997,26.265039062499994],[-111.33212890624996,26.125439453124955],[-111.33037109374995,25.93134765625004],[-111.29160156249995,25.78979492187497],[-111.14956054687498,25.57260742187503],[-111.03442382812497,25.526953124999977],[-111.013623046875,25.420312500000023],[-110.89394531249995,25.14423828124998],[-110.7556640625,24.994580078124983],[-110.68676757812501,24.867675781250057],[-110.67724609374994,24.788525390625008],[-110.72900390625001,24.671533203124966],[-110.73452148437498,24.58984375000003],[-110.65932617187502,24.341455078125048],[-110.54697265624996,24.214160156250045],[-110.42148437499996,24.18339843749999],[-110.39965820312496,24.165136718750006],[-110.40961914062495,24.130957031249977],[-110.36743164062497,24.10048828124999],[-110.319970703125,24.139453125000017],[-110.29682617187497,24.194873046875014],[-110.32089843749999,24.259179687499994],[-110.32509765624997,24.305957031250017],[-110.30375976562496,24.339453125],[-110.262890625,24.344531250000045],[-110.022802734375,24.174609374999985],[-109.98251953124998,24.109375],[-109.89316406249999,24.033007812500017],[-109.81132812500002,23.939013671875045],[-109.7759765625,23.86489257812505],[-109.71054687499999,23.803808593750034],[-109.6765625,23.661572265625008],[-109.509619140625,23.597900390624996],[-109.42084960937495,23.480126953124994],[-109.41499023437501,23.40556640624999],[-109.45805664062499,23.214746093750023],[-109.495703125,23.159814453125023],[-109.63046874999993,23.078662109374985],[-109.72841796875,22.981835937499994],[-109.823046875,22.922167968750017],[-109.92343749999993,22.885888671874994],[-110.00625,22.894042968750057],[-110.08603515624993,23.00546875],[-110.18061523437503,23.341503906249983],[-110.24409179687498,23.412255859375023],[-110.28876953125003,23.517675781250006],[-110.3626953125,23.60493164062501],[-110.62998046874999,23.73730468749997],[-110.76489257812494,23.877001953125017],[-110.89555664062502,23.970263671875014],[-111.03618164062497,24.105273437500074],[-111.41933593749997,24.329003906249994],[-111.57822265625,24.44301757812505],[-111.68291015625002,24.555810546875023],[-111.750390625,24.55415039062504],[-111.80249023437493,24.542529296875074],[-111.82226562499999,24.57338867187505],[-111.82519531249996,24.631787109374955],[-111.84824218749993,24.670068359375023],[-112.07255859374997,24.84003906250001],[-112.11904296874995,24.934033203124983],[-112.128515625,25.043115234374994],[-112.07797851562492,25.32397460937503],[-112.05576171874995,25.48823242187501],[-112.06987304687497,25.572851562500006],[-112.09335937499996,25.584375],[-112.11459960937492,25.630371093749996],[-112.11977539062502,25.765527343749994],[-112.17382812500001,25.912597656250025],[-112.37724609374997,26.21391601562496],[-112.52607421875001,26.273486328125014],[-112.65839843749997,26.31674804687503],[-113.02075195312499,26.58325195312497],[-113.11923828124998,26.716503906250036],[-113.14321289062498,26.792187499999983],[-113.15581054687496,26.946240234375036],[-113.20576171875001,26.856982421874957],[-113.27226562499997,26.79096679687501],[-113.42587890625,26.795800781250023],[-113.59853515625001,26.721289062500034],[-113.70126953124998,26.791357421875002],[-113.75664062499996,26.87084960937503],[-113.84096679687502,26.96650390624998],[-113.9359375,26.98525390624999],[-113.996484375,26.98769531250002],[-114.11005859374995,27.105957031249968],[-114.20185546875,27.143505859374983],[-114.33339843749998,27.158007812500017],[-114.44526367187503,27.21816406249999],[-114.47968750000003,27.283593750000023],[-114.498291015625,27.376220703125057],[-114.53989257812495,27.431103515624955],[-114.715625,27.53955078125003],[-114.85874023437498,27.659179687500057],[-114.99350585937499,27.73603515624998],[-115.03320312499999,27.798876953125017],[-115.03647460937496,27.84184570312496],[-114.82353515625,27.829931640625034],[-114.57001953124995,27.78393554687497],[-114.44848632812497,27.796875],[-114.37270507812498,27.841210937500023],[-114.30058593749993,27.87299804687501],[-114.2890625,27.83857421875001],[-114.30224609375003,27.775732421875006],[-114.23266601562497,27.718115234374977],[-114.13720703124996,27.67143554687499],[-114.0693359375,27.67568359375005],[-114.13505859374996,27.726611328125017],[-114.17539062499993,27.830566406249968],[-114.15732421874999,27.86796875],[-114.15839843750003,27.919677734374996],[-114.25263671874994,27.908007812500045],[-114.26586914062499,27.934472656249994],[-114.18525390624998,28.013281249999974],[-114.09272460937495,28.221337890624994],[-114.04848632812502,28.42617187499999],[-114.14550781249997,28.605419921875008],[-114.30922851562502,28.729931640624983],[-114.66401367187501,29.094580078125002],[-114.87592773437501,29.281884765624966],[-114.9373046875,29.35161132812496],[-114.99350585937499,29.38442382812499],[-115.16635742187493,29.42724609375],[-115.31118164062495,29.53193359375001],[-115.56528320312493,29.680029296875006],[-115.67382812500003,29.756396484375017],[-115.74868164062501,29.935742187499955],[-115.80830078125,29.960205078125053],[-115.78955078124997,30.08417968750001],[-115.815625,30.303613281250023],[-115.858203125,30.359814453125008],[-115.99580078124997,30.41445312500005],[-116.028564453125,30.563574218750063],[-116.03535156249997,30.70546875],[-116.062158203125,30.80415039062504],[-116.29628906250001,30.97050781249999],[-116.30961914062497,31.050976562499955],[-116.30966796874998,31.127343749999962],[-116.33344726562494,31.202783203124998],[-116.45849609375001,31.360986328124966],[-116.60957031249995,31.499072265625042],[-116.66215820312496,31.56489257812504],[-116.66845703124999,31.698632812500023],[-116.72207031249998,31.734570312499955],[-116.701708984375,31.74365234375003],[-116.65209960937501,31.740332031249977],[-116.62387695312496,31.758007812500036],[-116.62080078124995,31.851074218749968],[-116.84799804687496,31.997363281250042],[-116.91367187500002,32.19853515624999],[-117.03476562499999,32.305029296875006],[-117.063134765625,32.34360351562506],[-117.12827148437493,32.533349609374994],[-116.84208984375002,32.554785156250006],[-116.55595703124996,32.57622070312502],[-116.26982421874993,32.59760742187501],[-115.98369140625,32.619042968750016],[-115.69750976562499,32.640478515625034],[-115.41137695312503,32.66186523437505],[-115.1251953125,32.68330078124998],[-114.83906249999997,32.704736328124994],[-114.72475585937494,32.71533203125003],[-114.78798828124995,32.564794921875006],[-114.83593749999993,32.50830078125003],[-114.36171874999997,32.36030273437498],[-113.88745117187499,32.21230468750002],[-113.41318359374999,32.064306640625006],[-112.93896484375001,31.916259765625025]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Saint Pierre and Miquelon","adm0_a3":"SPM","geou_dif":0,"geounit":"Saint Pierre and Miquelon","gu_a3":"SPM","su_dif":0,"subunit":"Saint Pierre and Miquelon","su_a3":"SPM","brk_diff":0,"name":"St. Pierre and Miquelon","name_long":"Saint Pierre and Miquelon","brk_a3":"SPM","brk_name":"St. Pierre and Miquelon","brk_group":null,"abbrev":"St. P.M.","postal":"PM","formal_en":"Saint Pierre and Miquelon","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"St. Pierre and Miquelon","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":7051,"gdp_md_est":48.3,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PM","iso_a3":"SPM","iso_n3":"666","un_a3":"666","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"SPM","adm0_a3_us":"SPM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":23,"long_len":25,"abbrev_len":8,"tiny":3,"homepart":-99,"filename":"SPM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-56.15073242187497,46.76240234374998],[-56.17167968749996,46.752832031249994],[-56.24326171874998,46.76718749999998],[-56.20917968749998,46.798242187499994],[-56.185058593749936,46.807275390624966],[-56.15263671874999,46.811083984375045],[-56.137353515624994,46.8015625],[-56.139257812500034,46.778662109375],[-56.15073242187497,46.76240234374998]]],[[[-56.26708984374997,46.838476562500034],[-56.35419921874995,46.79531250000002],[-56.38476562499994,46.81943359375006],[-56.37724609375002,46.84765625000003],[-56.33256835937498,46.91596679687501],[-56.333935546874976,46.935644531250006],[-56.386914062499955,47.06796874999998],[-56.377929687499964,47.08955078125001],[-56.36464843749994,47.09897460937498],[-56.287353515625,47.070996093749976],[-56.27836914062496,47.035009765625006],[-56.314892578124926,46.953857421875],[-56.28979492187497,46.89990234375003],[-56.25546874999998,46.860986328124994],[-56.26708984374997,46.838476562500034]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Turks and Caicos Islands","adm0_a3":"TCA","geou_dif":0,"geounit":"Turks and Caicos Islands","gu_a3":"TCA","su_dif":0,"subunit":"Turks and Caicos Islands","su_a3":"TCA","brk_diff":0,"name":"Turks and Caicos Is.","name_long":"Turks and Caicos Islands","brk_a3":"TCA","brk_name":"Turks and Caicos Is.","brk_group":null,"abbrev":"T.C. Is.","postal":"TC","formal_en":"Turks and Caicos Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Turks and Caicos Islands","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":22942,"gdp_md_est":216,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TC","iso_a3":"TCA","iso_n3":"796","un_a3":"796","wb_a2":"TC","wb_a3":"TCA","woe_id":-99,"adm0_a3_is":"TCA","adm0_a3_us":"TCA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":20,"long_len":24,"abbrev_len":8,"tiny":-99,"homepart":-99,"filename":"TCA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-72.3328125,21.85136718749999],[-72.21865234374997,21.79628906250005],[-72.14980468749995,21.804492187500045],[-72.14433593750002,21.79272460937503],[-72.18154296874997,21.78002929687503],[-72.19067382812494,21.76977539062497],[-72.30087890625,21.755224609375034],[-72.33544921874994,21.758007812499983],[-72.34238281250003,21.79531250000002],[-72.3328125,21.85136718749999]]],[[[-71.66142578124995,21.76523437500003],[-71.66538085937495,21.75170898437503],[-71.72177734374998,21.790234374999983],[-71.830419921875,21.790625],[-71.84765624999997,21.843457031249983],[-71.80615234374994,21.852099609375045],[-71.66835937499994,21.833447265624983],[-71.63691406249993,21.787548828124955],[-71.66142578124995,21.76523437500003]]],[[[-71.87993164062496,21.840429687499977],[-71.8974609375,21.829882812500045],[-71.95546875,21.864404296874994],[-71.96376953125,21.89204101562501],[-71.98452148437497,21.893408203125034],[-72.01904296874997,21.918261718750017],[-72.01064453124997,21.950439453125],[-71.93154296875,21.951904296875057],[-71.89960937499998,21.8625],[-71.87993164062496,21.840429687499977]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Argentina","sov_a3":"ARG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Argentina","adm0_a3":"ARG","geou_dif":0,"geounit":"Argentina","gu_a3":"ARG","su_dif":0,"subunit":"Argentina","su_a3":"ARG","brk_diff":0,"name":"Argentina","name_long":"Argentina","brk_a3":"ARG","brk_name":"Argentina","brk_group":null,"abbrev":"Arg.","postal":"AR","formal_en":"Argentine Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Argentina","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":13,"pop_est":40913584,"gdp_md_est":573900,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AR","iso_a3":"ARG","iso_n3":"032","un_a3":"032","wb_a2":"AR","wb_a3":"ARG","woe_id":-99,"adm0_a3_is":"ARG","adm0_a3_us":"ARG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ARG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.54916992187496,-54.71621093749998],[-64.43881835937495,-54.739355468749984],[-64.22050781249999,-54.721972656249996],[-64.10532226562495,-54.72167968750003],[-64.054931640625,-54.7298828125],[-64.03242187499995,-54.74238281249998],[-63.881933593750006,-54.72294921875001],[-63.81542968749997,-54.725097656250014],[-63.832568359374996,-54.767968749999945],[-63.97124023437499,-54.810644531250034],[-64.0283203125,-54.79257812499999],[-64.32290039062495,-54.79648437499999],[-64.45327148437495,-54.84033203124995],[-64.50869140625,-54.839941406249956],[-64.63735351562498,-54.902539062500004],[-64.73144531249997,-54.86298828125004],[-64.75732421875,-54.82656249999999],[-64.689208984375,-54.774707031249996],[-64.62509765624998,-54.77363281250004],[-64.58134765624996,-54.752734375000045],[-64.54916992187496,-54.71621093749998]]],[[[-68.27822265625002,-52.98398437500004],[-68.24013671875,-53.08183593749999],[-68.3330078125,-53.01962890625002],[-68.43115234375,-53.0552734375],[-68.4794921875,-53.11376953125001],[-68.52080078124996,-53.17724609374998],[-68.5205078125,-53.221875],[-68.48852539062497,-53.260937499999976],[-68.39311523437499,-53.29492187499997],[-68.16113281249997,-53.3064453125],[-68.14409179687496,-53.31904296875],[-68.00849609374995,-53.5640625],[-67.94028320312499,-53.61875],[-67.86108398437494,-53.66220703125001],[-67.678125,-53.787109374999964],[-67.50258789062498,-53.92197265624999],[-67.29423828125002,-54.049804687500014],[-67.06948242187497,-54.148046874999956],[-66.86513671875,-54.222558593749945],[-66.67006835937497,-54.31357421875002],[-66.46201171875002,-54.44101562499995],[-66.23564453124999,-54.53349609374997],[-65.99257812499997,-54.598925781249974],[-65.74707031250003,-54.65341796874998],[-65.369287109375,-54.63212890624999],[-65.25195312499997,-54.63808593749996],[-65.17900390624993,-54.678125],[-65.25234374999997,-54.78886718750004],[-65.34599609374993,-54.87792968749997],[-65.47114257812495,-54.91464843749999],[-65.60332031249995,-54.928125],[-65.72275390624995,-54.92636718749998],[-65.84199218750001,-54.90996093750002],[-65.95375976562494,-54.91933593749997],[-66.06064453124998,-54.95673828125004],[-66.172021484375,-54.975292968750004],[-66.28676757812502,-54.97773437499996],[-66.398681640625,-55.009375],[-66.51113281249998,-55.032128906249945],[-66.62768554687503,-55.01328125000001],[-66.93046874999999,-54.92490234375004],[-67.127099609375,-54.90380859375001],[-67.79326171874999,-54.868652343750036],[-68.00712890624993,-54.8484375],[-68.2201171875,-54.817578125000026],[-68.331689453125,-54.81630859375003],[-68.49101562499993,-54.83623046875],[-68.61865234375,-54.83378906250004],[-68.65322265624994,-54.85361328124999],[-68.64750976562493,-54.62783203125],[-68.63979492187495,-54.32402343750002],[-68.63823242187499,-54.05292968750003],[-68.63666992187495,-53.78886718749997],[-68.63505859374996,-53.51542968750004],[-68.633447265625,-53.241894531250004],[-68.631689453125,-52.94951171875003],[-68.62993164062499,-52.65263671875004],[-68.57119140625002,-52.69492187500003],[-68.33876953125,-52.900097656250004],[-68.27822265625002,-52.98398437500004]]],[[[-61.87578124999995,-39.171875],[-61.86596679687499,-39.23486328125003],[-61.91801757812495,-39.22744140625002],[-62.04160156249998,-39.16689453125004],[-62.08330078124996,-39.11015625000002],[-62.09301757812497,-39.086230468750024],[-61.96665039062501,-39.112207031249994],[-61.90712890624993,-39.135644531249966],[-61.87578124999995,-39.171875]]],[[[-65.77104492187493,-22.099609375000014],[-65.68618164062497,-22.11025390625005],[-65.51879882812496,-22.094531250000045],[-65.48486328125,-22.09814453124997],[-65.0578125,-22.102734375000022],[-64.99262695312498,-22.109667968750017],[-64.84306640624999,-22.14394531249998],[-64.75864257812499,-22.17128906250005],[-64.70009765624998,-22.185546875000014],[-64.60551757812499,-22.228808593750042],[-64.52363281250001,-22.37158203125],[-64.47773437499998,-22.485351562499986],[-64.44550781249998,-22.585351562500023],[-64.37397460937498,-22.761035156250014],[-64.32529296874999,-22.82763671875],[-64.30791015624992,-22.7953125],[-64.26640625000002,-22.60332031249996],[-64.20908203124995,-22.491308593749963],[-64.13183593749993,-22.365820312499974],[-63.97612304687502,-22.072558593750003],[-63.92167968749993,-22.028613281250017],[-63.861035156249926,-22.00722656250002],[-63.81865234374998,-22.005468750000016],[-63.775585937499926,-22.027246093750005],[-63.71694335937496,-22.027539062499983],[-63.675341796874925,-22.004296875000037],[-63.2671875,-22.00058593749999],[-62.843359375,-21.997265625000026],[-62.83427734375001,-21.999121093749963],[-62.81508789062499,-22.04960937500003],[-62.74458007812495,-22.159863281250026],[-62.66528320312494,-22.217968749999965],[-62.65097656249997,-22.23369140624997],[-62.625683593749955,-22.26152343749996],[-62.62597656250003,-22.29042968749998],[-62.54155273437495,-22.349609374999957],[-62.372509765624976,-22.439160156249997],[-62.21416015624996,-22.612402343750034],[-62.066601562499926,-22.86943359374999],[-61.92802734374993,-23.059277343750026],[-61.798535156249955,-23.18203125],[-61.679492187499925,-23.26875],[-61.570996093749955,-23.319433593750002],[-61.51303710937495,-23.36044921875002],[-61.50551757812502,-23.39199218750005],[-61.403955078125016,-23.457519531249986],[-61.20839843749996,-23.55703125],[-61.084716796875,-23.65644531250001],[-61.032910156249926,-23.755664062499974],[-60.83984375000003,-23.858105468749965],[-60.50537109374999,-23.96357421874997],[-60.26220703124994,-24.013964843750017],[-60.11030273437498,-24.009179687500023],[-59.89248046874993,-24.093554687499974],[-59.60859375000001,-24.26679687500001],[-59.43540039062497,-24.38701171874999],[-59.372949218749966,-24.453906250000028],[-59.18725585937498,-24.56230468749999],[-58.724023437500016,-24.786621093749954],[-58.51962890625003,-24.84287109375005],[-58.422802734374926,-24.894140625],[-58.365380859374966,-24.959277343749957],[-58.30869140624995,-24.97910156249999],[-58.252783203125034,-24.953808593749997],[-58.136474609374936,-24.97714843750005],[-57.959814453125034,-25.04921875],[-57.82167968749994,-25.136425781249983],[-57.64389648437498,-25.328417968750017],[-57.58715820312494,-25.405078125],[-57.56313476562494,-25.47373046874996],[-57.57167968749999,-25.534179687500014],[-57.625830078125006,-25.59873046875002],[-57.725488281249966,-25.667187500000026],[-57.75478515624999,-25.697070312499985],[-57.757080078125036,-25.72597656250001],[-57.78247070312494,-25.783691406249957],[-57.86523437500003,-25.90693359375001],[-57.88623046874995,-25.964257812499966],[-57.890625,-26.00654296874997],[-57.94311523437499,-26.05292968750001],[-58.08242187499996,-26.138574218750048],[-58.111132812499925,-26.18017578125],[-58.118066406250016,-26.224902343749957],[-58.135644531249966,-26.251464843749954],[-58.154687500000016,-26.26259765624999],[-58.18149414062498,-26.30742187499999],[-58.20302734375002,-26.381445312499963],[-58.20517578125,-26.476562499999986],[-58.18793945312495,-26.59257812499999],[-58.191308593750016,-26.629980468749974],[-58.22207031249999,-26.65],[-58.23935546874994,-26.67685546875002],[-58.24555664062498,-26.731054687499963],[-58.271679687499955,-26.77070312500004],[-58.31767578125002,-26.795898437500025],[-58.33466796875001,-26.824902343749983],[-58.322558593749925,-26.857617187499983],[-58.3564453125,-26.890039062500023],[-58.43632812499993,-26.921972656250034],[-58.485253906249966,-26.968457031250008],[-58.50322265624996,-27.02949218750001],[-58.54770507812498,-27.083984375],[-58.61860351562495,-27.13212890624996],[-58.64174804687493,-27.196093750000014],[-58.60483398437498,-27.314355468750037],[-58.168261718749925,-27.27343749999997],[-57.81220703124998,-27.31660156249997],[-57.39125976562502,-27.43046874999999],[-57.11181640625,-27.47011718749998],[-56.973974609375006,-27.435742187499994],[-56.87172851562493,-27.440625],[-56.80517578124997,-27.484667968750017],[-56.715722656249966,-27.49375],[-56.60336914062498,-27.467871093749963],[-56.51054687499998,-27.487890624999963],[-56.437158203124966,-27.553808593749977],[-56.37050781249996,-27.53740234375],[-56.31054687500003,-27.43876953124999],[-56.24169921875003,-27.366796874999977],[-56.16406250000002,-27.32148437499998],[-56.067333984374955,-27.30771484375002],[-55.95146484374996,-27.325683593749957],[-55.859033203124966,-27.36191406249996],[-55.78999023437492,-27.416406249999966],[-55.71464843749996,-27.41484375],[-55.63291015625,-27.35712890624997],[-55.59379882812502,-27.288085937500014],[-55.597265625,-27.207617187499963],[-55.56489257812498,-27.15],[-55.49672851562496,-27.11533203124999],[-55.450634765624976,-27.06835937500001],[-55.426660156249994,-27.00927734374997],[-55.345800781250034,-26.973144531249986],[-55.20800781250003,-26.96015625],[-55.13593750000001,-26.931152343749957],[-55.12963867187497,-26.886035156250003],[-55.08886718749999,-26.84453124999999],[-55.013623046874955,-26.806640624999986],[-54.96215820312503,-26.759375],[-54.934472656249994,-26.70253906250001],[-54.88891601562502,-26.666796875000017],[-54.82548828124999,-26.65224609374998],[-54.755078124999955,-26.532910156249997],[-54.67773437499999,-26.308789062499994],[-54.63193359375,-26.00576171874999],[-54.615869140624994,-25.57607421875002],[-54.53784179687499,-25.576464843750017],[-54.50151367187498,-25.60830078125002],[-54.44394531249998,-25.625],[-54.38334960937499,-25.588671875000017],[-54.33188476562498,-25.571875],[-54.250097656250006,-25.570410156250016],[-54.20615234375003,-25.529589843749974],[-54.15458984374999,-25.52304687499996],[-54.119238281250006,-25.545214843749957],[-54.08500976562496,-25.571875],[-54.01230468749998,-25.57792968749996],[-53.95478515624998,-25.64765625000004],[-53.89116210937499,-25.66884765625001],[-53.86420898437498,-25.74882812499996],[-53.8232421875,-25.959570312499988],[-53.746923828125006,-26.08369140624997],[-53.67128906249994,-26.22509765625],[-53.668554687500006,-26.288183593749977],[-53.71093750000003,-26.351855468749974],[-53.718164062499994,-26.443164062500017],[-53.744580078124955,-26.666503906249957],[-53.75332031249996,-26.748632812499988],[-53.72714843749994,-26.804687500000043],[-53.71728515625,-26.88281249999997],[-53.758496093749955,-26.978320312499974],[-53.83818359375001,-27.121093750000014],[-53.915625,-27.159570312500033],[-53.93535156250002,-27.1611328125],[-54.04013671874995,-27.24375],[-54.11381835937496,-27.27470703124996],[-54.156445312499926,-27.253808593749966],[-54.20522460937502,-27.289648437499977],[-54.26015625000002,-27.382031249999965],[-54.32700195312495,-27.423535156249997],[-54.44814453124994,-27.446484375000054],[-54.484326171874955,-27.45732421875003],[-54.55493164062502,-27.4541015625],[-54.615429687500004,-27.47714843749999],[-54.66586914062498,-27.526562500000026],[-54.71972656250003,-27.54492187500003],[-54.77709960937499,-27.53251953124999],[-54.82910156250003,-27.55058593750003],[-54.87573242187499,-27.59921875],[-54.90278320312501,-27.65195312499999],[-54.91020507812502,-27.708593749999977],[-54.955908203125006,-27.747167968750016],[-55.039941406249994,-27.76777343750004],[-55.06899414062494,-27.796289062499994],[-55.063867187499966,-27.835937499999982],[-55.10151367187501,-27.86679687499996],[-55.24375,-27.898828125],[-55.34648437499999,-27.95595703125001],[-55.40981445312502,-28.03779296874998],[-55.47666015624995,-28.089355468750014],[-55.582373046875006,-28.12099609374998],[-55.72548828125002,-28.20410156250003],[-55.74599609375002,-28.25546875000002],[-55.691503906250034,-28.302832031249977],[-55.67197265624995,-28.344921875000022],[-55.68725585937497,-28.38164062499996],[-55.73198242187501,-28.386621093749994],[-55.806054687499994,-28.359765625000037],[-55.85888671875002,-28.35419921874997],[-55.890527343749994,-28.370019531249994],[-55.905419921874994,-28.399609374999983],[-55.903662109375006,-28.443261718749994],[-55.93017578124997,-28.472851562499983],[-55.98491210937493,-28.48857421874999],[-56.019628906250006,-28.52460937500004],[-56.03422851562496,-28.58085937499996],[-56.102880859375006,-28.65175781250001],[-56.225537109374926,-28.737207031250012],[-56.322363281250034,-28.852441406250037],[-56.39326171874998,-28.99726562499997],[-56.475976562499966,-29.092480468750008],[-56.57070312499999,-29.138085937499966],[-56.63583984375003,-29.203027343749966],[-56.67153320312502,-29.287304687499997],[-56.77246093749997,-29.417871093750033],[-56.93862304687499,-29.594824218750034],[-57.08935546874997,-29.716210937499977],[-57.22465820312499,-29.782128906249994],[-57.30068359374993,-29.856542968749963],[-57.31748046874998,-29.939453124999986],[-57.40522460937501,-30.03388671875004],[-57.56386718749999,-30.139941406249974],[-57.60888671875003,-30.187792968750042],[-57.64575195312499,-30.226953125000023],[-57.65087890624997,-30.295019531250034],[-57.71269531249996,-30.38447265624997],[-57.831201171875016,-30.49521484374996],[-57.87250976562502,-30.591015625000022],[-57.81855468749992,-30.712011718749988],[-57.81059570312498,-30.85859375000001],[-57.83408203124998,-30.917480468750014],[-57.88632812499998,-30.937402343749994],[-57.898291015625006,-30.975195312499963],[-57.87006835937496,-31.031054687499974],[-57.86840820312497,-31.104394531249994],[-57.89335937499999,-31.195312499999954],[-57.948339843750006,-31.29941406250002],[-58.033398437500004,-31.416601562500006],[-58.053857421874994,-31.494921874999974],[-58.00966796874997,-31.534375],[-57.987988281249976,-31.576171875],[-57.98886718749997,-31.62060546875],[-58.00698242187493,-31.684960937499966],[-58.04233398437495,-31.769238281249997],[-58.09584960937502,-31.83183593749996],[-58.16748046874997,-31.87265625],[-58.18901367187498,-31.924218750000037],[-58.16040039062502,-31.986523437500026],[-58.156347656250006,-32.0515625],[-58.17700195312494,-32.11904296875002],[-58.164794921874936,-32.18486328125002],[-58.119726562500006,-32.24892578125002],[-58.12304687499997,-32.321875],[-58.201171875,-32.471679687500014],[-58.21997070312499,-32.563964843749986],[-58.17099609374998,-32.95927734374996],[-58.20078125,-33.01464843749996],[-58.250390624999966,-33.07832031249997],[-58.30888671874999,-33.08291015625001],[-58.37597656249997,-33.071875],[-58.42446289062499,-33.11152343749998],[-58.45483398437497,-33.28593749999999],[-58.54721679687498,-33.66347656249997],[-58.53056640624995,-33.75302734375002],[-58.456591796874996,-33.898339843749966],[-58.42949218749996,-33.99091796875],[-58.40903320312498,-34.060742187500004],[-58.39248046874996,-34.192968750000034],[-58.43549804687495,-34.252539062500006],[-58.475244140624966,-34.26298828125],[-58.52548828124998,-34.29619140625002],[-58.466210937499994,-34.45742187499999],[-58.41894531249995,-34.53164062500002],[-58.28334960937494,-34.68349609375005],[-57.763574218750016,-34.89453124999996],[-57.54785156250002,-35.018945312499994],[-57.303662109374926,-35.188476562499986],[-57.170654296875,-35.3625],[-57.15888671875001,-35.505957031250006],[-57.35390624999994,-35.72031249999998],[-57.37548828125,-35.900292968749966],[-57.33544921875,-36.026757812499966],[-57.26499023437494,-36.14414062499999],[-57.07617187499994,-36.296777343749994],[-56.937158203124966,-36.35253906249998],[-56.74946289062501,-36.346484375],[-56.717382812500034,-36.38906249999996],[-56.698095703125006,-36.42646484375004],[-56.66826171874999,-36.73525390624998],[-56.67202148437494,-36.85126953124998],[-56.72714843749997,-36.95771484375],[-57.08769531249999,-37.44638671874999],[-57.39575195312494,-37.74462890625],[-57.50727539062492,-37.90927734374998],[-57.546972656250034,-38.085644531250026],[-57.64560546874995,-38.16962890624998],[-58.17919921874994,-38.435839843750045],[-59.007226562499966,-38.67333984375003],[-59.676269531249936,-38.79667968750002],[-59.82832031250001,-38.838183593750024],[-60.90395507812494,-38.973925781249974],[-61.112207031249994,-38.99296875000003],[-61.38286132812499,-38.98085937499996],[-61.60253906249997,-38.99882812499999],[-61.84790039062497,-38.961816406249994],[-62.06689453124999,-38.919140625],[-62.18925781249995,-38.81328125000002],[-62.33476562499994,-38.80009765625],[-62.37446289062495,-38.852929687500016],[-62.30361328124999,-38.98808593750002],[-62.338085937499976,-39.1505859375],[-62.29506835937502,-39.24326171874996],[-62.20908203125001,-39.261816406250006],[-62.126464843749964,-39.30976562500001],[-62.053662109374955,-39.373828125],[-62.179345703124994,-39.38046875000002],[-62.13056640624998,-39.43154296874995],[-62.076806640624966,-39.46152343750002],[-62.08276367187503,-39.568359375000014],[-62.131542968749926,-39.82539062499998],[-62.25395507812499,-39.88046875],[-62.28691406249996,-39.89531250000002],[-62.323974609374964,-39.950683593750014],[-62.40185546875002,-40.19658203125002],[-62.42700195312499,-40.355957031249986],[-62.39360351562493,-40.458789062499974],[-62.246337890624936,-40.67460937499997],[-62.30185546874998,-40.8146484375],[-62.395019531249964,-40.89082031249997],[-62.797998046874994,-41.04716796875002],[-62.95903320312493,-41.10966796875006],[-63.212841796874955,-41.15244140624998],[-63.62177734374995,-41.15976562499996],[-63.77299804687493,-41.15],[-64.12319335937497,-41.0078125],[-64.38344726562497,-40.92246093750002],[-64.62148437499997,-40.85449218750003],[-64.85297851562495,-40.81376953124999],[-64.81987304687496,-40.79326171874999],[-64.80439453125001,-40.75654296874997],[-64.86948242187502,-40.735839843750014],[-64.91689453125002,-40.73134765624997],[-65.06943359374999,-40.805273437500034],[-65.13339843749996,-40.88066406250003],[-65.15185546874999,-40.94697265625003],[-65.15498046874993,-41.10566406250004],[-65.12788085937501,-41.23876953124997],[-65.01826171874995,-41.56689453125003],[-65.00703124999998,-41.745117187500014],[-65.05908203125003,-41.96992187499998],[-64.98637695312496,-42.102050781249986],[-64.89804687499996,-42.16181640625],[-64.69951171874996,-42.22080078125002],[-64.62246093749997,-42.261035156250045],[-64.53774414062494,-42.25458984374998],[-64.51171874999997,-42.27021484374997],[-64.52421875,-42.29921875],[-64.57412109375,-42.35595703125003],[-64.57099609374998,-42.41601562499999],[-64.42041015625003,-42.43378906249998],[-64.26459960937498,-42.421679687499996],[-64.10087890624993,-42.395117187500006],[-64.06220703124998,-42.35341796874995],[-64.06118164062494,-42.266113281250014],[-64.2529296875,-42.25078125],[-64.228515625,-42.21826171874996],[-64.083251953125,-42.1828125],[-63.892871093749925,-42.12460937499996],[-63.795556640624994,-42.113867187500006],[-63.729492187499936,-42.152929687499956],[-63.684765624999976,-42.18867187499997],[-63.62988281249999,-42.28271484375003],[-63.59589843750002,-42.40654296875003],[-63.594433593749976,-42.55556640625],[-63.617333984375016,-42.695800781249986],[-63.64448242187495,-42.74570312500002],[-63.69248046874997,-42.805273437499984],[-64.03476562499996,-42.88125],[-64.13066406249996,-42.86142578124998],[-64.21992187499995,-42.75556640625],[-64.24794921874997,-42.64609374999998],[-64.32426757812499,-42.57226562499996],[-64.48784179687499,-42.51347656250006],[-64.65048828125,-42.53144531249998],[-64.81196289062495,-42.633203125000016],[-64.97070312499997,-42.66630859375002],[-65.02690429687495,-42.75888671874996],[-64.62919921875002,-42.90898437499999],[-64.441552734375,-42.95068359374996],[-64.38037109374994,-42.949218750000014],[-64.31914062499999,-42.96894531250002],[-64.37568359374998,-43.024609375],[-64.43222656250003,-43.059179687500034],[-64.71523437499997,-43.135546875000045],[-64.83994140624998,-43.18886718749998],[-64.98554687499995,-43.29355468749999],[-65.18974609374999,-43.522070312500006],[-65.25234374999997,-43.571875],[-65.28359375000002,-43.62998046874996],[-65.30468749999997,-43.7875],[-65.23857421874999,-44.04873046875001],[-65.3083984375,-44.158203125000014],[-65.26552734375,-44.2796875],[-65.28984375,-44.36074218749998],[-65.36127929687495,-44.47734375000002],[-65.64760742187502,-44.661425781250045],[-65.69833984374993,-44.79619140625006],[-65.59912109375,-44.87558593749998],[-65.605712890625,-44.94501953125],[-65.63876953124999,-45.0078125],[-65.75771484374997,-45.007128906250045],[-66.19013671874995,-44.96474609375002],[-66.34775390625,-45.03359375],[-66.49360351562498,-45.11757812499998],[-66.533447265625,-45.1578125],[-66.58505859374995,-45.182910156249974],[-66.88247070312497,-45.22763671875002],[-66.94140625,-45.25732421875003],[-67.25761718750002,-45.57724609375002],[-67.39301757812498,-45.775585937500004],[-67.556640625,-45.97011718750002],[-67.59956054687495,-46.05253906250003],[-67.60888671875,-46.166796875000045],[-67.58608398437497,-46.269531250000014],[-67.56337890624997,-46.34541015625001],[-67.5064453125,-46.44277343749995],[-67.38662109375,-46.55380859375002],[-66.77685546874994,-47.005859375],[-66.65039062500003,-47.045312499999966],[-65.99853515625,-47.09375],[-65.85366210937498,-47.156738281250014],[-65.76909179687497,-47.25673828124995],[-65.73808593749997,-47.34492187499998],[-65.77539062500003,-47.56835937500003],[-65.81430664062495,-47.63818359374996],[-65.88632812499998,-47.7015625],[-66.040625,-47.783300781250034],[-66.22524414062502,-47.826757812500006],[-66.17236328125,-47.85761718749998],[-66.09736328124998,-47.85322265624997],[-65.93422851562497,-47.826757812500006],[-65.863671875,-47.85322265624997],[-65.81005859374997,-47.941113281250026],[-65.91215820312499,-47.97675781250001],[-65.94340820312496,-48.019335937499974],[-66.0171875,-48.08427734374997],[-66.39335937499999,-48.34238281249998],[-66.59628906250003,-48.41953124999998],[-66.7828125,-48.522949218749986],[-67.03310546875002,-48.627734375000024],[-67.13095703124998,-48.68789062500002],[-67.26333007812502,-48.81425781250001],[-67.46630859375,-48.951757812500034],[-67.68486328125002,-49.2466796875],[-67.69370117187495,-49.30400390625004],[-67.66196289062498,-49.3421875],[-67.78349609374996,-49.858886718750014],[-67.82597656249997,-49.91962890625005],[-67.91396484374995,-49.98447265625003],[-68.14565429687502,-50.09140624999996],[-68.2572265625,-50.104589843749984],[-68.40463867187499,-50.04267578124998],[-68.487890625,-49.97792968750002],[-68.56928710937498,-49.86699218749998],[-68.66757812500003,-49.75253906250002],[-68.67265624999999,-49.793457031250014],[-68.63847656249996,-49.86298828124997],[-68.66162109374996,-49.93574218750005],[-68.91298828125002,-49.96875],[-68.97958984375,-50.003027343749984],[-68.75268554687494,-49.98769531249997],[-68.59794921874996,-50.00947265624997],[-68.53256835937498,-50.03613281249998],[-68.47373046874998,-50.09140624999996],[-68.421875,-50.15791015625001],[-68.46542968749998,-50.19472656249996],[-68.58935546875,-50.22519531250004],[-68.749853515625,-50.28115234374997],[-68.93945312499999,-50.382324218749986],[-69.04477539062495,-50.49912109374998],[-69.09018554687498,-50.583105468750034],[-69.14140625000002,-50.752539062500006],[-69.15498046874993,-50.864453124999976],[-69.23515625000002,-50.95058593750003],[-69.35859374999993,-51.028125],[-69.35175781249995,-51.04580078124997],[-69.26796874999994,-51.00615234374998],[-69.20102539062498,-50.99365234375001],[-69.14350585937498,-51.09697265625],[-69.06572265624996,-51.30351562499999],[-69.02958984374996,-51.44648437499998],[-69.03530273437497,-51.48896484375002],[-69.05830078124994,-51.547167968749974],[-69.21806640624999,-51.56123046875],[-69.36054687499998,-51.55947265624999],[-69.46542968750003,-51.58447265625003],[-69.40908203125002,-51.61025390624995],[-69.31303710937499,-51.601074218750036],[-69.18012695312498,-51.662304687499976],[-69.03251953124993,-51.63623046875],[-68.96533203125003,-51.67714843749998],[-68.91679687499999,-51.71464843749999],[-68.69082031249997,-52.013085937499945],[-68.493505859375,-52.197558593750045],[-68.39375,-52.307031249999966],[-68.44335937499999,-52.35664062500004],[-68.46098632812496,-52.29042968749996],[-68.58979492187498,-52.273339843749945],[-68.71518554687495,-52.255468750000034],[-68.92456054687497,-52.20810546874998],[-69.20620117187497,-52.136132812499966],[-69.48842773437502,-52.136132812499966],[-69.71259765624993,-52.07539062500003],[-69.96025390624993,-52.008203125000016],[-70.48286132812501,-52.00224609375005],[-70.94316406249999,-51.99814453125001],[-71.41474609374994,-51.993945312500045],[-71.71660156249999,-51.99130859375004],[-71.91865234374995,-51.98955078125004],[-71.97109374999997,-51.96416015625002],[-71.95346679687503,-51.88037109375],[-72.02841796875003,-51.81865234375004],[-72.13696289062503,-51.74404296875003],[-72.26899414062501,-51.69111328124999],[-72.33452148437493,-51.62031250000005],[-72.40766601562501,-51.54082031250002],[-72.36640624999995,-51.47031250000004],[-72.30322265624997,-51.29892578125002],[-72.30185546874993,-51.22333984375],[-72.35917968749997,-51.17041015624996],[-72.37680664062503,-51.09541015625004],[-72.35917968749997,-51.06015625],[-72.307373046875,-51.033398437500026],[-72.27631835937498,-50.910253906249984],[-72.30063476562496,-50.78955078124999],[-72.34023437499997,-50.68183593749999],[-72.39257812499997,-50.63427734374998],[-72.46015624999995,-50.61171875],[-72.50981445312495,-50.607519531250034],[-72.62041015625002,-50.64765625000004],[-72.80361328124994,-50.637695312499964],[-72.86591796874993,-50.653125],[-72.95556640625,-50.69648437500004],[-73.08237304687498,-50.7603515625],[-73.15292968749998,-50.73828125000003],[-73.17451171875001,-50.67001953124998],[-73.22163085937493,-50.61074218749998],[-73.251611328125,-50.55849609374999],[-73.27416992187497,-50.47255859374999],[-73.31171874999998,-50.361914062500006],[-73.38662109374997,-50.23115234375001],[-73.50126953124995,-50.12529296875002],[-73.50771484374994,-50.03027343750003],[-73.52890625,-49.91093750000005],[-73.47041015624997,-49.79453124999996],[-73.50454101562502,-49.698046875000024],[-73.57626953124998,-49.582910156250016],[-73.55419921875,-49.463867187500014],[-73.48364257812503,-49.397656250000026],[-73.46157226562497,-49.31386718750001],[-73.13525390625,-49.30068359374999],[-73.14887695312493,-49.18798828125003],[-73.09458007812498,-49.096875],[-73.03364257812501,-49.014355468750004],[-72.98173828124999,-48.976757812499976],[-72.86542968750001,-48.94394531249996],[-72.72846679687501,-48.896289062500024],[-72.65126953125,-48.84160156249998],[-72.61440429687494,-48.79287109375],[-72.59174804687495,-48.72968750000001],[-72.5859375,-48.6625],[-72.60839843749997,-48.51933593750006],[-72.582861328125,-48.47539062499999],[-72.49814453124998,-48.41738281249998],[-72.35473632812497,-48.36582031250005],[-72.29301757812502,-48.22910156249999],[-72.3283203125,-48.110058593749976],[-72.40791015624998,-48.01591796874999],[-72.50908203124999,-47.973339843750026],[-72.517919921875,-47.87636718749998],[-72.47221679687502,-47.78417968750003],[-72.41259765624994,-47.685546875000014],[-72.34150390624995,-47.57207031249998],[-72.34594726562497,-47.492675781249964],[-72.28291015625001,-47.44628906250003],[-72.10341796875002,-47.342773437499986],[-72.04169921874998,-47.24140625000002],[-71.97851562499997,-47.21386718750001],[-71.90498046875001,-47.201660156250014],[-71.900537109375,-47.144335937499974],[-71.95424804687502,-47.0875],[-71.96298828125,-47.01601562500003],[-71.95664062499998,-46.936816406249974],[-71.94023437499999,-46.83125],[-71.85644531249997,-46.79160156249996],[-71.73271484374997,-46.70585937499999],[-71.69965820312501,-46.6513671875],[-71.69521484375,-46.57841796875006],[-71.73129882812498,-46.42783203125001],[-71.76210937499994,-46.31982421874996],[-71.77763671874999,-46.27998046875001],[-71.83413085937497,-46.20673828125001],[-71.87568359374998,-46.160546875],[-71.80927734374995,-46.10273437500003],[-71.68447265624992,-46.04189453124999],[-71.63154296874998,-45.95371093749997],[-71.680078125,-45.878710937499974],[-71.750634765625,-45.83906249999997],[-71.7726562499999,-45.724414062499974],[-71.74619140624998,-45.57890625],[-71.69331054687495,-45.53476562499997],[-71.50810546874999,-45.512695312500014],[-71.49042968749993,-45.437695312500004],[-71.34931640624995,-45.33193359374995],[-71.35375976562497,-45.23046874999997],[-71.44345703124995,-45.16826171875],[-71.53129882812499,-45.067871093749986],[-71.5962890625,-44.97919921875004],[-71.81235351562498,-44.93066406249999],[-72.04169921874998,-44.90419921875004],[-72.07250976562494,-44.82041015625002],[-72.06372070312503,-44.771875],[-71.95703124999994,-44.791503906249986],[-71.78281249999998,-44.774414062499964],[-71.65166015625002,-44.770410156249945],[-71.56040039062498,-44.76201171875002],[-71.45517578125003,-44.74980468750002],[-71.35815429687497,-44.78515625000003],[-71.26113281250002,-44.76308593749996],[-71.22148437499992,-44.63076171875001],[-71.15971679687496,-44.56025390625004],[-71.15087890624994,-44.494042968749966],[-71.21259765624998,-44.44121093750003],[-71.32573242187496,-44.42490234374999],[-71.82001953124993,-44.383105468749996],[-71.83505859374998,-44.33017578124998],[-71.83076171874998,-44.24140625000001],[-71.812109375,-44.15078125000002],[-71.81235351562498,-44.10605468749996],[-71.7671875,-44.06669921875003],[-71.716162109375,-43.98447265624997],[-71.680078125,-43.92958984374998],[-71.71596679687497,-43.85839843749996],[-71.79472656250002,-43.75322265625003],[-71.73740234374998,-43.7046875],[-71.732763671875,-43.64677734375002],[-71.750634765625,-43.59013671875002],[-71.83242187499997,-43.52714843749997],[-71.90498046875001,-43.44013671875001],[-71.90498046875001,-43.34755859374998],[-71.82021484374997,-43.322949218750026],[-71.76386718749995,-43.29462890625003],[-71.750634765625,-43.237304687499986],[-71.781494140625,-43.16679687500002],[-71.89858398437494,-43.14531249999999],[-72.05468749999994,-43.10195312499995],[-72.102392578125,-43.065625],[-72.14643554687498,-42.990039062499974],[-72.11362304687498,-42.77675781249995],[-72.13002929687494,-42.648242187499974],[-72.14370117187497,-42.57714843749997],[-72.10541992187498,-42.522460937500014],[-72.05346679687497,-42.473242187500034],[-72.078125,-42.358496093750006],[-72.12460937499998,-42.298339843750014],[-72.10820312499993,-42.25185546874995],[-72.06440429687498,-42.20537109374999],[-72.026123046875,-42.14794921875001],[-71.99331054687495,-42.134277343749986],[-71.94409179687497,-42.167089843750006],[-71.86079101562498,-42.14785156249999],[-71.76093749999998,-42.101464843749966],[-71.75,-42.04677734375001],[-71.77001953124997,-41.968554687499974],[-71.84448242187503,-41.771972656249986],[-71.91127929687497,-41.650390624999986],[-71.89760742187502,-41.60664062500005],[-71.87114257812496,-41.560546874999986],[-71.89218749999998,-41.393359375000024],[-71.88559570312496,-41.29238281249998],[-71.88071289062495,-40.99462890624997],[-71.87304687499999,-40.892968749999966],[-71.94135742187495,-40.789160156250034],[-71.93212890624994,-40.69169921874999],[-71.88378906249994,-40.620605468749986],[-71.83852539062497,-40.524414062500014],[-71.80463867187498,-40.43916015624997],[-71.76914062499993,-40.40087890624998],[-71.70898437499997,-40.381738281249994],[-71.69531250000003,-40.33525390625003],[-71.72265625,-40.29970703124998],[-71.80058593749996,-40.24433593749998],[-71.81831054687491,-40.17666015624995],[-71.80195312499998,-40.124707031250026],[-71.763671875,-40.09462890625004],[-71.70439453124999,-40.094921875],[-71.65976562499998,-40.02080078125],[-71.64711914062497,-39.929199218749986],[-71.63789062499995,-39.88681640624997],[-71.67207031249997,-39.83330078124998],[-71.69682617187496,-39.70703125000002],[-71.71992187499995,-39.63525390624997],[-71.69257812499998,-39.60517578124997],[-71.654296875,-39.59423828124995],[-71.58701171874998,-39.61113281250003],[-71.53945312499997,-39.60244140624995],[-71.53125,-39.56416015624997],[-71.52578124999994,-39.52314453125004],[-71.50776367187501,-39.495214843750034],[-71.46538085937499,-39.402343750000036],[-71.42001953124998,-39.287207031250034],[-71.409375,-39.205957031249994],[-71.42558593749996,-38.98564453125005],[-71.40156249999995,-38.93505859374996],[-71.35317382812494,-38.88886718749997],[-71.28574218749998,-38.84541015624999],[-71.19726562499997,-38.809375],[-71.08710937500001,-38.757519531250026],[-70.95161132812491,-38.73847656249996],[-70.89692382812497,-38.681054687499994],[-70.858642578125,-38.60449218750003],[-70.84765625,-38.541601562500006],[-70.899658203125,-38.49785156249997],[-70.96796874999998,-38.44589843749996],[-71.00048828124994,-38.31484375],[-71.0181640625,-38.19394531249996],[-71.02817382812499,-38.041210937500026],[-71.09619140625,-37.90996093750002],[-71.16757812499998,-37.76230468749996],[-71.18671874999995,-37.63105468750004],[-71.16284179687497,-37.559179687499956],[-71.13481445312496,-37.4451171875],[-71.16489257812495,-37.39326171875001],[-71.20039062499998,-37.300292968749986],[-71.16347656250002,-37.22744140624998],[-71.118408203125,-37.114355468750034],[-71.12382812499993,-37.05693359374996],[-71.159375,-36.92021484375],[-71.19218750000002,-36.84365234375003],[-71.159375,-36.76162109375002],[-71.10742187499997,-36.685058593749964],[-71.06640624999997,-36.64404296874996],[-71.07324218750003,-36.57802734375001],[-71.05551757812498,-36.52373046874996],[-70.97792968749997,-36.4873046875],[-70.90512695312498,-36.41992187499996],[-70.85317382812495,-36.41171874999996],[-70.79028320312503,-36.41171874999996],[-70.74926757812501,-36.39257812499997],[-70.73286132812495,-36.340625],[-70.72192382812493,-36.283203124999986],[-70.621875,-36.21191406250003],[-70.56337890625,-36.14638671875001],[-70.45673828124993,-36.132714843749966],[-70.40478515625,-36.06171874999998],[-70.40366210937495,-35.97050781249996],[-70.41572265625001,-35.878515624999956],[-70.38017578124996,-35.771875],[-70.41972656249993,-35.60917968749999],[-70.41572265625001,-35.52304687500002],[-70.45673828124993,-35.45195312500002],[-70.44853515624993,-35.37539062499996],[-70.47041015624995,-35.32617187499997],[-70.53232421874995,-35.307910156249974],[-70.55517578125,-35.246875],[-70.52509765625001,-35.216796874999986],[-70.46660156249999,-35.19365234374997],[-70.39316406250003,-35.146875],[-70.338134765625,-34.92177734375001],[-70.31210937499995,-34.854980468749986],[-70.28676757812494,-34.77451171875002],[-70.28994140624997,-34.732812499999966],[-70.25468749999999,-34.672656249999974],[-70.21069335937497,-34.58125],[-70.14125976562497,-34.492871093750026],[-70.10146484375002,-34.43203125],[-70.06298828125,-34.35],[-70.05205078124997,-34.300781249999964],[-70.00283203125,-34.27626953125004],[-69.94633789062496,-34.26992187499999],[-69.87978515625,-34.25439453125003],[-69.85244140625,-34.22431640625002],[-69.85737304687494,-34.180468749999974],[-69.86152343749998,-34.08359375000005],[-69.88149414062497,-33.92978515624998],[-69.89433593750002,-33.73134765625005],[-69.88256835937503,-33.60097656250004],[-69.83876953124997,-33.46972656250004],[-69.79775390624997,-33.398632812500026],[-69.80869140624998,-33.3439453125],[-69.81962890624999,-33.28378906249999],[-69.89619140624995,-33.25097656249997],[-69.96904296874996,-33.27939453124999],[-70.01982421874999,-33.27148437499997],[-70.08486328125002,-33.20175781249998],[-70.10400390625,-33.127929687500036],[-70.09306640624999,-33.02675781250003],[-70.04213867187502,-32.96367187499997],[-70.02197265625,-32.88457031250002],[-70.05205078124997,-32.85996093749998],[-70.11616210937501,-32.80742187500002],[-70.17695312499995,-32.62607421875001],[-70.16962890624995,-32.471679687500014],[-70.22978515624996,-32.4306640625],[-70.2578125,-32.30996093750002],[-70.32001953124995,-32.26669921874999],[-70.34462890625,-32.17646484375],[-70.36376953125,-32.08349609374997],[-70.35556640625,-32.04238281250004],[-70.29091796875,-32.031054687500045],[-70.25439453124999,-31.957714843750022],[-70.28173828124996,-31.916601562499995],[-70.33095703124995,-31.881054687500036],[-70.39384765624997,-31.883789062499968],[-70.45014648437501,-31.84189453124996],[-70.52563476562503,-31.66640625],[-70.585205078125,-31.56943359374996],[-70.56640624999996,-31.427929687499997],[-70.5546875,-31.317382812499957],[-70.529052734375,-31.222851562499965],[-70.51958007812493,-31.1484375],[-70.47309570312498,-31.11279296875001],[-70.42939453124995,-31.129296875],[-70.38837890624995,-31.121093750000014],[-70.35058593749997,-31.06044921875001],[-70.30908203124994,-31.022656250000043],[-70.31181640624999,-30.992578125000037],[-70.33642578125003,-30.959765625000017],[-70.34814453124999,-30.902343749999957],[-70.31923828125,-30.83398437499997],[-70.26938476562495,-30.67724609375001],[-70.19394531250002,-30.504687500000028],[-70.16142578124999,-30.440234374999957],[-70.16962890624995,-30.385546875],[-70.15322265625,-30.36093749999996],[-70.10200195312495,-30.388281250000034],[-69.95634765624996,-30.358203125000028],[-69.90712890624997,-30.28164062499998],[-69.88803710937498,-30.21328125],[-69.84428710937493,-30.175],[-69.86337890625,-30.120312499999965],[-69.92353515625001,-30.10390625],[-69.95996093749997,-30.07832031250003],[-69.94545898437494,-30.016406250000028],[-69.92412109374996,-29.874023437499968],[-69.92763671874997,-29.76914062500002],[-69.98261718749998,-29.54541015625],[-70.026806640625,-29.324023437500014],[-69.99560546874994,-29.25],[-69.90034179687498,-29.148828125000026],[-69.82788085937496,-29.10322265624997],[-69.81484375,-29.045507812500034],[-69.74316406249993,-28.783886718750022],[-69.73491210937496,-28.641113281249968],[-69.68789062499997,-28.56201171875003],[-69.65693359374995,-28.413574218749982],[-69.52714843749999,-28.28564453125003],[-69.4888671875,-28.200878906249997],[-69.43691406249998,-28.192675781250014],[-69.40957031250001,-28.16533203125003],[-69.34072265624992,-28.070800781249957],[-69.251220703125,-27.97363281249997],[-69.17441406249998,-27.924707031250037],[-69.1552734375,-27.848144531249986],[-69.11850585937498,-27.743554687499994],[-69.04218749999995,-27.570019531249997],[-68.99941406249994,-27.44902343750003],[-68.94199218749998,-27.405175781249977],[-68.87509765625003,-27.24667968750002],[-68.84633789062494,-27.153710937499994],[-68.76977539062497,-27.11542968750001],[-68.70961914062497,-27.104492187500014],[-68.652197265625,-27.148339843749966],[-68.59208984375002,-27.140039062499966],[-68.53735351562497,-27.085351562500023],[-68.40537109374998,-27.04814453124999],[-68.34599609374996,-27.02792968750005],[-68.31865234374999,-26.973242187500006],[-68.31865234374999,-26.877539062499963],[-68.37333984374993,-26.806445312500045],[-68.48510742187497,-26.670312500000023],[-68.58115234375,-26.518359374999974],[-68.59160156249999,-26.47041015624997],[-68.59218749999994,-26.418066406249963],[-68.57578124999998,-26.35195312499999],[-68.52983398437493,-26.27695312499999],[-68.41450195312498,-26.15371093750002],[-68.4267578125,-26.06542968749997],[-68.51083984374998,-25.74101562499996],[-68.54189453125,-25.651562500000036],[-68.60029296874998,-25.48564453124999],[-68.59208984375002,-25.420019531250034],[-68.54082031249996,-25.23671875],[-68.49633789062494,-25.16298828124998],[-68.43071289062499,-25.149316406250037],[-68.39521484374994,-25.124707031249997],[-68.38422851562495,-25.091894531249977],[-68.42802734374999,-25.050976562499983],[-68.44711914062498,-24.998925781250037],[-68.46630859374997,-24.925195312500023],[-68.52705078124998,-24.899218749999974],[-68.56201171875,-24.83769531249996],[-68.56201171875,-24.74736328125003],[-68.50727539062495,-24.629785156249977],[-68.44711914062498,-24.596972656250045],[-68.42255859374993,-24.54511718750004],[-68.35810546874995,-24.497265624999983],[-68.29951171875001,-24.46035156250001],[-68.25029296875002,-24.391992187500023],[-68.04736328124997,-24.308300781250026],[-67.88623046875,-24.243359375000022],[-67.57177734374997,-24.118945312500003],[-67.35620117187501,-24.033789062499963],[-67.33559570312498,-23.974804687500026],[-67.31914062499993,-23.93466796875002],[-67.219140625,-23.63398437499997],[-67.08974609375002,-23.24511718749997],[-67.00878906249994,-23.00136718750005],[-67.19487304687493,-22.821679687500037],[-67.16191406249996,-22.773828124999966],[-67.05541992187494,-22.650878906249957],[-67.033544921875,-22.55224609375003],[-66.99111328125,-22.509863281250006],[-66.80029296875003,-22.40966796875003],[-66.76748046875,-22.34306640624996],[-66.75063476562502,-22.26933593750003],[-66.71171874999999,-22.216308593749982],[-66.63901367187503,-22.205371093749974],[-66.50698242187494,-22.158398437499997],[-66.36518554687501,-22.113769531249957],[-66.32246093750001,-22.053125],[-66.28212890624997,-21.947460937500008],[-66.24760742187496,-21.830468749999977],[-66.22016601562495,-21.802539062499974],[-66.174658203125,-21.805664062499982],[-66.09858398437495,-21.83505859375002],[-66.05859375,-21.879492187500016],[-65.86015624999999,-22.019726562499983],[-65.77104492187493,-22.099609375000014]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Bolivia","sov_a3":"BOL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bolivia","adm0_a3":"BOL","geou_dif":0,"geounit":"Bolivia","gu_a3":"BOL","su_dif":0,"subunit":"Bolivia","su_a3":"BOL","brk_diff":0,"name":"Bolivia","name_long":"Bolivia","brk_a3":"BOL","brk_name":"Bolivia","brk_group":null,"abbrev":"Bolivia","postal":"BO","formal_en":"Plurinational State of Bolivia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bolivia","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":3,"pop_est":9775246,"gdp_md_est":43270,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BO","iso_a3":"BOL","iso_n3":"068","un_a3":"068","wb_a2":"BO","wb_a3":"BOL","woe_id":-99,"adm0_a3_is":"BOL","adm0_a3_us":"BOL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"BOL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-58.15976562499999,-20.164648437500006],[-58.13994140624999,-19.998828125],[-58.16005859374999,-19.85488281250001],[-58.18017578125,-19.81787109375],[-58.47421875,-19.64609375],[-58.741113281249994,-19.490234375],[-59.09052734375,-19.286230468750006],[-59.54086914062499,-19.291796875],[-60.00737304687499,-19.29755859375001],[-60.45161132812499,-19.388769531250006],[-60.88876953124999,-19.478515625],[-61.09599609374999,-19.52099609375],[-61.51181640624999,-19.606445312499996],[-61.75683593749999,-19.6453125],[-61.820898437499984,-19.80947265625001],[-61.916943359375,-20.05537109375001],[-62.011816406249984,-20.199023437500003],[-62.12163085937498,-20.34990234375],[-62.276318359375,-20.5625],[-62.276513671874994,-20.82080078125],[-62.27666015624998,-21.066015625],[-62.38544921874999,-21.41171875],[-62.47783203124999,-21.70527343750001],[-62.566943359374996,-21.988671875],[-62.628515624999984,-22.183984375],[-62.650976562499984,-22.233691406250003],[-62.665283203125,-22.21796875000001],[-62.744580078125004,-22.15986328125001],[-62.81508789062499,-22.049609375],[-62.83427734374998,-21.999121093750006],[-62.843359374999984,-21.99726562500001],[-63.2671875,-22.000585937500006],[-63.67534179687499,-22.004296875],[-63.716943359374994,-22.02753906250001],[-63.77558593749999,-22.027246093750005],[-63.81865234374998,-22.00546875],[-63.86103515624999,-22.00722656250001],[-63.92167968749999,-22.02861328125],[-63.97612304687499,-22.072558593750003],[-64.1318359375,-22.365820312500002],[-64.20908203124999,-22.491308593750006],[-64.26640624999999,-22.603320312500003],[-64.30791015624999,-22.7953125],[-64.32529296874999,-22.82763671875],[-64.373974609375,-22.761035156250003],[-64.4455078125,-22.585351562500005],[-64.477734375,-22.4853515625],[-64.5236328125,-22.37158203125],[-64.60551757812499,-22.228808593750003],[-64.70009765624998,-22.185546875],[-64.75864257812499,-22.17128906250001],[-64.84306640624999,-22.14394531250001],[-64.992626953125,-22.109667968750003],[-65.0578125,-22.10273437500001],[-65.48486328125,-22.09814453125],[-65.518798828125,-22.09453125],[-65.686181640625,-22.11025390625001],[-65.77104492187499,-22.099609375],[-65.86015624999999,-22.01972656250001],[-66.05859375,-21.879492187500006],[-66.098583984375,-21.835058593750006],[-66.17465820312499,-21.8056640625],[-66.220166015625,-21.802539062500003],[-66.24760742187499,-21.83046875],[-66.28212890624998,-21.947460937500008],[-66.3224609375,-22.053125],[-66.365185546875,-22.11376953125],[-66.506982421875,-22.15839843750001],[-66.63901367187499,-22.205371093750003],[-66.71171874999999,-22.21630859375],[-66.750634765625,-22.269335937500003],[-66.76748046875,-22.34306640625],[-66.80029296875,-22.40966796875],[-66.99111328125,-22.509863281250006],[-67.03354492187499,-22.55224609375],[-67.055419921875,-22.65087890625],[-67.16191406249999,-22.773828125],[-67.19487304687499,-22.82167968750001],[-67.362255859375,-22.85517578125001],[-67.57993164062499,-22.891699218750006],[-67.70732421874999,-22.88916015625],[-67.79443359375,-22.879492187500006],[-67.8205078125,-22.857714843750003],[-67.87944335937499,-22.82294921875001],[-67.88916015625,-22.784179687499996],[-67.88999023437499,-22.72919921875001],[-67.87373046875,-22.63056640625001],[-67.88173828124998,-22.49335937500001],[-67.950390625,-22.33369140625001],[-67.94492187499999,-22.2822265625],[-67.95390624999999,-22.20400390625001],[-67.98837890624999,-22.057128906249996],[-68.07675781249999,-21.9828125],[-68.101806640625,-21.860644531250003],[-68.11215820312498,-21.753027343750006],[-68.18642578125,-21.61855468750001],[-68.19853515624999,-21.447265625],[-68.197021484375,-21.30029296875],[-68.3138671875,-21.1296875],[-68.435498046875,-20.9482421875],[-68.533837890625,-20.923632812500003],[-68.558251953125,-20.901953125],[-68.56894531249999,-20.84980468750001],[-68.571044921875,-20.769140625],[-68.56318359374998,-20.72011718750001],[-68.48740234374999,-20.640722656250006],[-68.484326171875,-20.628417968749996],[-68.49985351562499,-20.61201171875001],[-68.69580078125,-20.49296875],[-68.74516601562499,-20.45859375],[-68.76054687499999,-20.41621093750001],[-68.759228515625,-20.378027343750006],[-68.7123046875,-20.338964843750006],[-68.68857421874998,-20.310058593749996],[-68.7345703125,-20.225195312500002],[-68.73002929687499,-20.1484375],[-68.75932617187499,-20.115527343750003],[-68.755810546875,-20.0908203125],[-68.727490234375,-20.069628906250003],[-68.60019531249999,-20.044921875],[-68.560693359375,-19.96708984375],[-68.559375,-19.90234375],[-68.578271484375,-19.856542968750006],[-68.69619140625,-19.74072265625],[-68.69829101562499,-19.72109375],[-68.57529296874999,-19.56015625],[-68.48701171874998,-19.454394531250003],[-68.462890625,-19.4328125],[-68.47016601562498,-19.409960937500003],[-68.49199218749999,-19.381933593750006],[-68.5478515625,-19.341113281250003],[-68.620556640625,-19.296679687500003],[-68.6806640625,-19.242382812500008],[-68.75908203124999,-19.162207031250006],[-68.85795898437499,-19.093359375],[-68.93100585937499,-19.025195312500003],[-68.96831054687497,-18.96796875000001],[-68.96909179687499,-18.90966796875],[-68.97885742187498,-18.812988281249996],[-69.02680664062498,-18.65625],[-69.03940429687499,-18.550097656250003],[-69.06015625,-18.43300781250001],[-69.08095703125,-18.35664062500001],[-69.09228515625,-18.282421875],[-69.1263671875,-18.202441406250003],[-69.145458984375,-18.14404296875],[-69.11806640625,-18.102734375],[-69.09042968749999,-18.070703125],[-69.0939453125,-18.05048828125001],[-69.28232421874999,-17.96484375],[-69.31337890625,-17.943164062500003],[-69.35800781249998,-17.77167968750001],[-69.49501953125,-17.61953125],[-69.51093749999998,-17.506054687500008],[-69.51108398437499,-17.5048828125],[-69.51098632812499,-17.46035156250001],[-69.521923828125,-17.388964843750003],[-69.56381835937499,-17.33291015625001],[-69.62587890625,-17.29443359375],[-69.645703125,-17.24853515625],[-69.62485351562499,-17.2001953125],[-69.5033203125,-17.104785156250003],[-69.43833007812498,-17.08837890625],[-69.42109375,-17.0400390625],[-69.38154296875,-17.00136718750001],[-69.267236328125,-16.8609375],[-69.19980468749999,-16.76845703125001],[-69.13251953124998,-16.71308593750001],[-69.05454101562499,-16.67431640625],[-69.020703125,-16.6421875],[-69.03837890624999,-16.54267578125001],[-69.03291015625,-16.475976562500005],[-69.00625,-16.433691406250006],[-68.92802734374999,-16.3890625],[-68.8578125,-16.354785156250003],[-68.8427734375,-16.337890625],[-68.848828125,-16.312792968750003],[-68.9134765625,-16.26191406250001],[-69.04624023437499,-16.21767578125001],[-69.1341796875,-16.221972656250003],[-69.18798828125,-16.18281250000001],[-69.21757812499999,-16.14912109375001],[-69.39189453124999,-15.736914062500007],[-69.4208984375,-15.640625],[-69.41850585937499,-15.603417968750007],[-69.301904296875,-15.399414062499998],[-69.254296875,-15.332910156250009],[-69.17246093749999,-15.236621093750001],[-69.18710937499999,-15.198730468749998],[-69.330712890625,-15.038964843750007],[-69.37470703125,-14.962988281250006],[-69.37373046875,-14.8875],[-69.35947265624999,-14.79531250000001],[-69.276025390625,-14.745898437500003],[-69.25234375,-14.671093750000011],[-69.23491210937499,-14.597070312500009],[-69.19926757812499,-14.572558593750003],[-69.16269531249999,-14.53095703125001],[-69.11972656249999,-14.4703125],[-69.05278320312499,-14.417578125],[-69.013134765625,-14.377246093750001],[-69.00449218749999,-14.265039062500009],[-68.97177734374999,-14.234375],[-68.880322265625,-14.198828125],[-68.87089843749999,-14.169726562500003],[-68.89169921874999,-14.094335937500006],[-68.937451171875,-14.0146484375],[-68.974267578125,-13.975976562500009],[-69.02304687499999,-13.7802734375],[-69.07412109375,-13.682812500000011],[-69.05283203124998,-13.643945312500009],[-69.017529296875,-13.594433593750011],[-68.98344726562499,-13.496386718750003],[-68.97226562499999,-13.38232421875],[-68.98051757812499,-12.962597656250011],[-68.97861328124999,-12.88007812500001],[-68.933740234375,-12.822070312500001],[-68.86767578125,-12.755175781250003],[-68.81181640624997,-12.729589843750006],[-68.75908203124999,-12.687207031250011],[-68.762890625,-12.607714843750003],[-68.728125,-12.560742187500011],[-68.68525390625,-12.501953125],[-68.81870117187499,-12.270410156250009],[-68.93603515625,-12.066796875],[-69.04619140624999,-11.875683593750011],[-69.17373046875,-11.654296875],[-69.25771484375,-11.50859375],[-69.36201171875,-11.327539062500009],[-69.45361328125,-11.16875],[-69.57861328124999,-10.951757812500006],[-69.462548828125,-10.948144531250009],[-69.228515625,-10.955664062500004],[-69.00166015625,-10.994335937500011],[-68.84833984375,-11.011132812500009],[-68.78408203125,-11.044628906250011],[-68.769921875,-11.09765625],[-68.727490234375,-11.122460937500009],[-68.678369140625,-11.11279296875],[-68.62265625,-11.109179687500001],[-68.49833984374999,-11.054785156250006],[-68.39799804687499,-11.01875],[-68.31113281249999,-10.975195312500006],[-68.2666015625,-10.93310546875],[-68.15864257812498,-10.785058593750007],[-68.0716796875,-10.703125],[-67.99169921874999,-10.674414062500004],[-67.83500976562499,-10.662792968750011],[-67.78569335937499,-10.68603515625],[-67.72177734374999,-10.683105468749998],[-67.666650390625,-10.598925781250003],[-67.582421875,-10.505957031250006],[-67.416943359375,-10.38984375000001],[-67.33271484375,-10.35791015625],[-67.28046875,-10.317285156250009],[-67.19047851562499,-10.311425781250009],[-67.11152343749998,-10.268945312500009],[-66.72998046875,-9.975488281250009],[-66.575341796875,-9.89990234375],[-66.47890625,-9.886132812500009],[-66.39921874999999,-9.8681640625],[-66.26357421875,-9.826074218750009],[-65.92470703125,-9.785449218750001],[-65.706787109375,-9.768457031250009],[-65.637109375,-9.80908203125],[-65.55869140624999,-9.797460937500006],[-65.49199218749999,-9.731738281250003],[-65.436767578125,-9.71044921875],[-65.396142578125,-9.71240234375],[-65.33789062499999,-9.790234375000011],[-65.309326171875,-9.87265625],[-65.328125,-9.935546875],[-65.32456054687499,-10.026953125],[-65.298583984375,-10.146777343750001],[-65.31308593749999,-10.253027343750006],[-65.395458984375,-10.392285156250011],[-65.4369140625,-10.449023437500003],[-65.44711914062499,-10.507421875],[-65.43999023437497,-10.586230468750001],[-65.402294921875,-10.714746093750009],[-65.33403320312499,-10.892773437500011],[-65.32377929687499,-11.024804687500009],[-65.37158203125,-11.1103515625],[-65.39360351562499,-11.18427734375001],[-65.389892578125,-11.24628906250001],[-65.37285156249999,-11.289941406250009],[-65.34238281249999,-11.315039062500006],[-65.32548828124999,-11.36474609375],[-65.322021484375,-11.439160156250011],[-65.28227539062499,-11.511035156250003],[-65.206201171875,-11.58056640625],[-65.17539062499999,-11.646875],[-65.18974609374999,-11.710058593750006],[-65.1857421875,-11.74951171875],[-65.16337890624999,-11.765136718749998],[-65.14267578124999,-11.75234375],[-65.11513671874998,-11.735058593750011],[-65.090283203125,-11.7412109375],[-65.037109375,-11.829394531250003],[-65.0302734375,-11.847363281250011],[-65.001220703125,-11.920019531250004],[-64.99252929687498,-11.975195312500006],[-64.91435546874999,-12.005957031250006],[-64.82988281249999,-12.0302734375],[-64.783447265625,-12.059375],[-64.69003906249999,-12.146484375],[-64.61166992187499,-12.20390625],[-64.513427734375,-12.2509765625],[-64.48076171874999,-12.326171875],[-64.42050781249999,-12.439746093750003],[-64.255029296875,-12.483300781250009],[-64.06162109374998,-12.505078125000011],[-63.93857421874999,-12.5296875],[-63.7880859375,-12.46943359375001],[-63.68857421874999,-12.47802734375],[-63.58564453125,-12.518945312500009],[-63.541894531249994,-12.546679687500003],[-63.46523437499999,-12.60517578125001],[-63.34667968749999,-12.680078125],[-63.249755859375,-12.707910156250009],[-63.1806640625,-12.66621093750001],[-63.116796874999984,-12.651660156250003],[-63.067480468749984,-12.669140625000011],[-63.041357421874984,-12.750390625],[-63.01518554687498,-12.805566406250009],[-62.957910156249994,-12.847070312500009],[-62.83515625,-12.953710937500006],[-62.76547851562499,-12.997265625000011],[-62.68706054687499,-12.994335937500011],[-62.52553710937499,-13.064257812500003],[-62.35283203124998,-13.132421875],[-62.263916015625,-13.143652343750006],[-62.17607421874998,-13.133691406250009],[-62.11801757812499,-13.159765625],[-62.09477539062499,-13.241992187500003],[-61.944726562499994,-13.40625],[-61.87412109374999,-13.470410156250011],[-61.78994140624999,-13.525585937500011],[-61.57568359374999,-13.524804687500009],[-61.511572265624984,-13.541210937500011],[-61.41606445312499,-13.526562500000011],[-61.129150390625,-13.49853515625],[-61.07700195312499,-13.48974609375],[-60.914501953125,-13.561425781250009],[-60.72236328124999,-13.664355468750003],[-60.5953125,-13.745312500000011],[-60.50659179687499,-13.78984375],[-60.46015625,-13.862402343750006],[-60.42236328125,-13.93798828125],[-60.40498046875,-14.019238281250011],[-60.42807617187499,-14.1],[-60.462988281249984,-14.132421875],[-60.47465820312499,-14.184765625000011],[-60.46015625,-14.263085937500007],[-60.396240234375,-14.3328125],[-60.37270507812499,-14.41875],[-60.338037109374994,-14.570507812500011],[-60.29887695312498,-14.618554687500009],[-60.27333984374999,-15.088769531250009],[-60.402001953124994,-15.0927734375],[-60.583203125,-15.098339843750013],[-60.53046875,-15.143164062500006],[-60.380468749999984,-15.318261718750009],[-60.24233398437499,-15.479589843750004],[-60.220410156250004,-15.738671875],[-60.20664062499999,-15.901953125],[-60.18720703125,-16.132128906250003],[-60.17558593749999,-16.269335937500003],[-59.83115234374999,-16.28173828125],[-59.43427734374999,-16.295996093750006],[-58.957275390625,-16.31318359375001],[-58.53793945312499,-16.328222656250006],[-58.49658203125,-16.32666015625],[-58.423681640624984,-16.307910156250003],[-58.37539062499999,-16.28359375],[-58.345605468749994,-16.284375],[-58.34057617187499,-16.339941406250006],[-58.35078125,-16.410253906250002],[-58.35039062499998,-16.490820312500006],[-58.470605468749994,-16.650195312500003],[-58.478125,-16.70068359375],[-58.45981445312499,-16.910742187500002],[-58.41738281249999,-17.08056640625],[-58.39599609375,-17.23427734375001],[-58.34775390624999,-17.282128906250005],[-58.20556640625,-17.363085937500003],[-57.99091796874999,-17.51289062500001],[-57.90502929687499,-17.532324218750006],[-57.83247070312499,-17.512109375],[-57.78886718749999,-17.573046875],[-57.78017578124999,-17.67177734375001],[-57.66166992187499,-17.947363281250006],[-57.58647460937498,-18.12226562500001],[-57.55205078124998,-18.18310546875],[-57.49565429687498,-18.214648437500003],[-57.50615234374998,-18.2373046875],[-57.553125,-18.246484375],[-57.57402343749999,-18.279296875],[-57.63916015625,-18.475],[-57.725,-18.733203125],[-57.78310546874999,-18.91425781250001],[-57.73085937499999,-18.91718750000001],[-57.72861328124999,-18.967382812500006],[-57.71679687499999,-19.044042968750006],[-57.7814453125,-19.053515625],[-57.80039062499999,-19.08095703125001],[-57.87451171875,-19.2294921875],[-57.9716796875,-19.42421875],[-58.07202148437499,-19.625292968750003],[-58.131494140624994,-19.74453125],[-58.029931640624994,-19.832714843750008],[-57.860742187499994,-19.979589843750006],[-57.887597656249994,-20.02041015625001],[-57.96015625,-20.04072265625001],[-58.021142578125,-20.05517578125],[-58.067626953125,-20.1103515625],[-58.09375,-20.15107421875001],[-58.15976562499999,-20.164648437500006]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Brazil","sov_a3":"BRA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Brazil","adm0_a3":"BRA","geou_dif":0,"geounit":"Brazil","gu_a3":"BRA","su_dif":0,"subunit":"Brazil","su_a3":"BRA","brk_diff":0,"name":"Brazil","name_long":"Brazil","brk_a3":"BRA","brk_name":"Brazil","brk_group":null,"abbrev":"Brazil","postal":"BR","formal_en":"Federative Republic of Brazil","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Brazil","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":5,"mapcolor13":7,"pop_est":198739269,"gdp_md_est":1993000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BR","iso_a3":"BRA","iso_n3":"076","un_a3":"076","wb_a2":"BR","wb_a3":"BRA","woe_id":-99,"adm0_a3_is":"BRA","adm0_a3_us":"BRA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"BRA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-48.48588867187493,-27.766992187499977],[-48.554589843749994,-27.81220703125004],[-48.54218749999995,-27.57480468749999],[-48.50517578124996,-27.495507812499994],[-48.464746093749994,-27.436328125000017],[-48.41489257812495,-27.39960937499999],[-48.37792968749997,-27.451464843750003],[-48.40957031250002,-27.566308593750037],[-48.496777343749955,-27.707031250000014],[-48.48588867187493,-27.766992187499977]]],[[[-48.584423828124955,-26.401562499999983],[-48.60307617187502,-26.413769531249983],[-48.66577148437499,-26.289648437500006],[-48.53974609374998,-26.170312500000023],[-48.49760742187502,-26.21875],[-48.531103515625006,-26.313183593749994],[-48.568066406249976,-26.3796875],[-48.584423828124955,-26.401562499999983]]],[[[-45.260253906249964,-23.889160156249986],[-45.260888671874994,-23.94130859375005],[-45.30253906249996,-23.91474609374997],[-45.412841796874964,-23.934960937499994],[-45.45141601562499,-23.895605468749977],[-45.30234375,-23.727539062500014],[-45.27226562500002,-23.75195312500001],[-45.24907226562498,-23.78261718750005],[-45.233105468749926,-23.82539062499997],[-45.25029296874996,-23.85302734375],[-45.260253906249964,-23.889160156249986]]],[[[-44.12929687499994,-23.14189453124999],[-44.098046874999966,-23.16933593749998],[-44.15576171875,-23.16660156249996],[-44.22050781249996,-23.190820312500005],[-44.320068359375,-23.212304687500033],[-44.36015624999998,-23.17207031250001],[-44.274121093749955,-23.1162109375],[-44.24287109374998,-23.074121093750037],[-44.22041015624995,-23.082910156249966],[-44.191601562499926,-23.113281250000014],[-44.12929687499994,-23.14189453124999]]],[[[-38.90356445312497,-13.473437499999974],[-38.93789062499996,-13.532324218749975],[-38.97758789062496,-13.523535156249963],[-38.99321289062496,-13.48408203125001],[-39.022167968749976,-13.445605468749989],[-39.006591796875,-13.415527343749986],[-38.98012695312494,-13.398437499999972],[-38.907128906249994,-13.401074218749983],[-38.90356445312497,-13.473437499999974]]],[[[-38.743847656249955,-13.097070312500037],[-38.783007812499925,-13.11865234375],[-38.786962890625034,-13.055078125],[-38.68486328125001,-12.974902343750017],[-38.668115234374966,-12.880175781249989],[-38.61455078124998,-12.924023437500038],[-38.60029296875001,-12.97246093749996],[-38.601171875,-12.99257812499998],[-38.743847656249955,-13.097070312500037]]],[[[-44.49931640625002,-2.939648437499983],[-44.597753906250006,-3.037597656249943],[-44.565332031249966,-2.923925781249977],[-44.58188476562494,-2.845605468750008],[-44.56909179687503,-2.784960937499989],[-44.50195312500003,-2.726269531250026],[-44.4814453125,-2.717578125000031],[-44.48730468749997,-2.789746093749997],[-44.482568359374966,-2.81191406249998],[-44.49931640625002,-2.939648437499983]]],[[[-44.88310546874996,-1.317871093749986],[-44.947119140625034,-1.366015625000017],[-44.96787109374997,-1.390820312500011],[-45.020849609375034,-1.372363281249974],[-45.01123046875003,-1.344726562499943],[-44.99560546874994,-1.347558593749994],[-44.978662109374966,-1.267285156249983],[-44.888281250000034,-1.276855468749971],[-44.88310546874996,-1.317871093749986]]],[[[-51.83251953124997,-1.433789062499969],[-51.938378906249966,-1.452636718749986],[-51.80205078124999,-1.202539062500023],[-51.680029296875,-1.086132812500026],[-51.67827148437499,-0.85507812500002],[-51.546044921874966,-0.649609375],[-51.424462890624966,-0.56591796875],[-51.25400390624998,-0.54140625],[-51.16074218749998,-0.666699218750011],[-51.27631835937498,-1.02177734374996],[-51.31010742187496,-1.023828125000023],[-51.46513671875002,-1.211132812499997],[-51.6376953125,-1.341894531249991],[-51.83251953124997,-1.433789062499969]]],[[[-49.62866210937497,-0.229199218749969],[-49.53520507812502,-0.233593749999969],[-49.40288085937499,-0.214648437500017],[-49.31425781249996,-0.167871093749994],[-49.21508789062499,-0.158691406249986],[-49.11699218749999,-0.163574218750014],[-48.78657226562501,-0.215527343750026],[-48.58803710937496,-0.231640625000026],[-48.51542968750001,-0.248242187500026],[-48.44448242187493,-0.271875],[-48.39267578124995,-0.29736328125],[-48.37968749999999,-0.352832031250017],[-48.42802734374996,-0.441503906249963],[-48.463964843750006,-0.534765624999963],[-48.497460937499994,-0.664941406250008],[-48.52333984375002,-0.691406249999986],[-48.56665039062497,-0.684472656249994],[-48.539697265624994,-0.800976562500011],[-48.549511718749926,-0.847558593749994],[-48.570947265624966,-0.892871093749989],[-48.62407226562493,-0.986914062499963],[-48.70458984375,-1.106640625000026],[-48.72851562499999,-1.13173828124998],[-48.78984375,-1.173339843750028],[-48.839697265625006,-1.226562500000028],[-48.82900390624994,-1.2765625],[-48.804052734375006,-1.32695312499996],[-48.83359375,-1.390039062500023],[-48.928906249999955,-1.482324218749994],[-48.985937500000034,-1.504687500000031],[-49.038476562499994,-1.5140625],[-49.08686523437498,-1.505078125000011],[-49.17270507812498,-1.41259765625],[-49.18168945312493,-1.484960937500006],[-49.204785156249955,-1.55898437499998],[-49.233984375000034,-1.59951171874998],[-49.34482421874995,-1.59521484375],[-49.40659179687503,-1.555566406249994],[-49.50664062499999,-1.511621093750023],[-49.52568359374996,-1.630468749999977],[-49.587890625,-1.712402343749972],[-49.65058593749998,-1.738085937499974],[-49.748779296875,-1.755371093750028],[-49.805126953124955,-1.790234375000026],[-49.911328125,-1.762988281249974],[-50.009960937499926,-1.708496093749986],[-50.06572265625001,-1.703808593749997],[-50.10927734374999,-1.747851562500003],[-50.33842773437495,-1.755957031249963],[-50.44345703124995,-1.800683593750023],[-50.50761718749999,-1.787988281250009],[-50.60205078125002,-1.697753906250014],[-50.6171875,-1.637695312499943],[-50.67338867187499,-1.516015625000023],[-50.72382812499998,-1.37148437499998],[-50.759765625,-1.240234374999971],[-50.72949218749997,-1.126757812499946],[-50.66831054687503,-1.130566406250011],[-50.595898437499926,-1.147460937499986],[-50.58051757812498,-1.13945312499996],[-50.57695312499999,-1.103125],[-50.59291992187494,-1.072949218749997],[-50.70961914062499,-1.07773437499999],[-50.783300781250006,-1.010351562500034],[-50.79609374999995,-0.90625],[-50.78095703124998,-0.689843750000023],[-50.771386718749966,-0.645410156250023],[-50.71992187499998,-0.583398437500009],[-50.703076171875004,-0.528515625000011],[-50.71582031250002,-0.470214843749957],[-50.69370117187495,-0.364453124999983],[-50.6455078125,-0.27285156249998],[-50.46157226562502,-0.157421875],[-50.24824218749998,-0.11640625],[-49.62866210937497,-0.229199218749969]]],[[[-50.65288085937498,-0.131640624999989],[-50.926367187500034,-0.327343749999983],[-51.01899414062498,-0.263085937500037],[-51.038085937499936,-0.225878906250003],[-51.02236328124994,-0.188378906249994],[-51.025732421875,-0.172363281250028],[-50.99506835937498,-0.105273437500031],[-50.84218750000002,-0.050195312500009],[-50.765283203124966,-0.040869140624963],[-50.66699218750003,-0.058007812499994],[-50.65058593749998,-0.10585937499998],[-50.65288085937498,-0.131640624999989]]],[[[-49.44389648437499,-0.112402343749977],[-49.70883789062495,-0.14375],[-49.830078124999964,-0.093896484375023],[-49.802685546874976,-0.051855468749991],[-49.712304687499966,0.015136718749986],[-49.602197265624994,0.062695312499997],[-49.50346679687496,0.083691406250011],[-49.400488281250034,0.057226562500034],[-49.37231445312497,0.001074218749963],[-49.38085937500002,-0.055468750000017],[-49.44389648437499,-0.112402343749977]]],[[[-49.73823242187498,0.26816406250002],[-49.697265625,0.215966796875037],[-49.838964843750006,0.006884765624989],[-49.917089843750006,-0.023193359375014],[-50.00249023437502,-0.029296875000014],[-50.11313476562498,0.033007812499989],[-50.285595703124955,0.028564453125057],[-50.339453125,0.043359375000051],[-50.345117187499994,0.134472656250054],[-50.272656249999976,0.231738281249974],[-50.12797851562499,0.226513671874969],[-49.87900390624998,0.304541015624963],[-49.73823242187498,0.26816406250002]]],[[[-50.42612304687498,0.139257812500048],[-50.44394531249998,-0.007666015624949],[-50.623925781249966,0.054394531249983],[-50.61044921874998,0.204785156249983],[-50.526220703125034,0.246923828125048],[-50.451562500000016,0.326904296875],[-50.42607421874996,0.42495117187498],[-50.42456054687503,0.558251953124966],[-50.396875,0.581396484374977],[-50.372753906249955,0.590869140625031],[-50.35097656249993,0.58173828125004],[-50.34252929687499,0.381591796875028],[-50.33227539062497,0.259033203125028],[-50.42612304687498,0.139257812500048]]],[[[-50.152929687500006,0.393017578125054],[-50.26132812499998,0.359179687500003],[-50.28154296875002,0.390820312500054],[-50.28168945312495,0.51650390624998],[-50.251171874999955,0.58544921875],[-50.11279296874999,0.604736328125014],[-50.09863281249997,0.625],[-50.05883789062503,0.638037109374963],[-50.03681640624998,0.594824218750048],[-50.04003906250002,0.52280273437502],[-50.152929687500006,0.393017578125054]]],[[[-50.298974609375016,1.93852539062496],[-50.398779296875006,1.892871093749989],[-50.45610351562495,1.910498046875034],[-50.50898437499998,2.029541015625028],[-50.49101562499995,2.128613281249969],[-50.41875,2.161474609375006],[-50.362646484375,2.154443359374994],[-50.34199218749998,2.14174804687498],[-50.292089843750034,1.979589843749977],[-50.298974609375016,1.93852539062496]]],[[[-60.241650390624926,5.257958984374966],[-60.18173828124997,5.238818359374974],[-60.14204101562498,5.238818359374974],[-60.10595703125,5.194238281250037],[-60.07807617187501,5.143994140625011],[-59.99067382812495,5.082861328124991],[-59.99936523437495,4.989843749999963],[-60.01547851562495,4.907519531249974],[-60.02675781249994,4.812695312500026],[-60.03178710937498,4.740527343749974],[-60.068945312500006,4.666650390625023],[-60.12456054687495,4.59765625],[-60.140917968750024,4.569628906249974],[-60.148632812499976,4.533251953125031],[-60.11113281249999,4.511181640624969],[-60.04501953125001,4.504589843750054],[-59.96235351562495,4.501708984374999],[-59.90610351562494,4.480322265624991],[-59.83334960937498,4.475927734374977],[-59.74580078124998,4.41665039062498],[-59.70327148437494,4.381103515625028],[-59.69970703125001,4.353515625],[-59.72749023437498,4.287646484374989],[-59.73857421874993,4.226757812500026],[-59.71689453124995,4.188183593749983],[-59.69121093749995,4.160400390625],[-59.62021484374997,4.023144531250026],[-59.586425781250036,3.975390624999974],[-59.557763671874966,3.960009765625031],[-59.551123046875034,3.933544921874969],[-59.57539062500001,3.88344726562498],[-59.60444335937495,3.819677734375048],[-59.67021484374996,3.752734375],[-59.67900390624997,3.699804687499963],[-59.731640624999955,3.666552734375031],[-59.854394531249994,3.5875],[-59.83305664062498,3.462158203125043],[-59.828808593749926,3.398583984374966],[-59.83115234374998,3.349218750000034],[-59.873046874999964,3.28310546874998],[-59.945654296875034,3.087841796874983],[-59.97231445312493,2.990478515625043],[-59.99589843749996,2.765429687500031],[-59.994335937499976,2.689990234375031],[-59.960791015625006,2.588378906250014],[-59.88964843749997,2.362939453125009],[-59.84912109374999,2.32705078124998],[-59.75522460937494,2.27412109375004],[-59.74350585937497,2.12163085937496],[-59.75175781249995,1.962402343750028],[-59.75620117187497,1.900634765624972],[-59.740722656250036,1.874169921874995],[-59.69853515624996,1.861474609374994],[-59.66850585937495,1.842333984375003],[-59.663769531249976,1.795214843749989],[-59.66660156250001,1.746289062499969],[-59.59663085937498,1.718017578124986],[-59.53569335937498,1.7],[-59.47944335937498,1.632421875000048],[-59.37768554687494,1.527343750000043],[-59.33725585937498,1.508203125000051],[-59.316992187500034,1.464599609375043],[-59.23120117187494,1.376025390625031],[-59.10039062499996,1.343652343750009],[-58.96850585937499,1.304589843750051],[-58.91660156249998,1.248876953124977],[-58.8625,1.203613281249986],[-58.82177734374994,1.201220703125031],[-58.78720703125,1.208496093750014],[-58.73032226562498,1.247509765625054],[-58.68461914062499,1.28105468749996],[-58.60507812500003,1.27915039062502],[-58.511865234374966,1.284667968749986],[-58.49570312499995,1.312255859375014],[-58.48686523437502,1.347753906250048],[-58.506054687499926,1.438671875000011],[-58.47294921874993,1.466259765625026],[-58.395800781249925,1.481738281249989],[-58.38037109375,1.530224609375011],[-58.36269531249993,1.556689453124974],[-58.34067382812498,1.587548828125051],[-58.314208984375,1.591943359374966],[-58.28115234374994,1.57431640625002],[-58.230419921874976,1.563281249999989],[-58.173095703124936,1.547851562500042],[-58.14223632812496,1.51699218749998],[-58.09130859375,1.514355468749969],[-58.03466796874999,1.520263671875014],[-58.01176757812497,1.539941406250037],[-57.99511718750003,1.57431640625002],[-57.9828125,1.648437500000014],[-57.946337890624925,1.650585937500011],[-57.873437500000016,1.667285156250045],[-57.795654296874964,1.7],[-57.69174804687503,1.70478515625004],[-57.594433593750004,1.704101562499986],[-57.54575195312495,1.726074218750028],[-57.500439453124955,1.77382812499998],[-57.41269531250003,1.908935546874972],[-57.366796875,1.940136718750025],[-57.31748046874998,1.963476562499991],[-57.27558593749998,1.959228515625014],[-57.189599609374966,1.981591796875037],[-57.11889648437494,2.013964843749974],[-57.09267578125002,2.005810546874997],[-57.03759765625,1.936474609374997],[-57.01005859374999,1.921240234374991],[-56.96953124999999,1.91640625],[-56.83671875000002,1.88125],[-56.766259765624966,1.892187500000034],[-56.68984375000002,1.914306640625],[-56.616455078125,1.922656250000017],[-56.56357421874998,1.907226562499986],[-56.525488281250034,1.927246093749971],[-56.48281249999994,1.942138671874986],[-56.452832031249955,1.93232421875004],[-56.385839843750006,1.923876953125003],[-56.227148437500006,1.885351562499963],[-56.01992187499996,1.842236328124983],[-55.963330078124976,1.85708007812498],[-55.92963867187495,1.8875],[-55.92163085937502,1.976660156250005],[-55.91533203124999,2.039550781250028],[-55.96196289062496,2.09511718749998],[-56.02006835937498,2.15815429687504],[-56.07363281249999,2.236767578124969],[-56.13769531249997,2.259033203124986],[-56.12939453124997,2.299511718749969],[-56.08779296875002,2.341308593750043],[-56.045117187499955,2.364404296875037],[-56.02036132812497,2.392773437500054],[-55.993505859375006,2.497509765624983],[-55.9755859375,2.515966796875006],[-55.95747070312495,2.52045898437504],[-55.9359375,2.516601562500057],[-55.89375,2.489501953125042],[-55.73056640625,2.406152343750023],[-55.65893554687497,2.41875],[-55.385351562500006,2.440625],[-55.34399414062503,2.488769531249972],[-55.28603515625002,2.49965820312498],[-55.18769531249998,2.547509765625037],[-55.148828124999966,2.55078125],[-55.114111328125006,2.539208984375037],[-55.07031249999994,2.548339843750028],[-55.00581054687495,2.592968749999983],[-54.97866210937502,2.597656250000043],[-54.968408203124966,2.548339843750028],[-54.92656249999999,2.497363281250045],[-54.876074218750006,2.450390624999969],[-54.851660156250006,2.439550781249991],[-54.76684570312503,2.454736328124966],[-54.72221679687499,2.441650390624972],[-54.70292968749999,2.397949218750043],[-54.69741210937502,2.359814453124997],[-54.66186523437497,2.327539062499994],[-54.61625976562499,2.326757812500006],[-54.59194335937502,2.313769531250031],[-54.55048828125001,2.293066406249991],[-54.51508789062498,2.245458984374963],[-54.43310546875,2.207519531250057],[-54.29306640624998,2.15424804687504],[-54.227978515624955,2.153320312500028],[-54.16738281249994,2.137060546875005],[-54.130078124999976,2.121044921875026],[-54.08974609375002,2.150488281249977],[-53.94643554687496,2.232568359375009],[-53.87661132812494,2.278271484374997],[-53.829541015624955,2.31293945312504],[-53.79423828124996,2.345996093750017],[-53.76777343749998,2.354833984375048],[-53.750146484375016,2.335009765625003],[-53.734716796875006,2.308544921875025],[-53.68369140624998,2.29291992187504],[-53.56396484375003,2.26191406250004],[-53.50898437500001,2.253125],[-53.43183593750001,2.279443359374966],[-53.36601562500002,2.324218750000028],[-53.33442382812498,2.339746093749994],[-53.28549804687495,2.295214843749974],[-53.252197265625,2.232275390625034],[-53.22978515624999,2.20488281249996],[-53.18007812499996,2.211328125000037],[-53.08227539062503,2.201708984375031],[-53.00971679687498,2.181738281250048],[-52.96484375,2.183544921874969],[-52.903466796875016,2.211523437499977],[-52.87041015624996,2.266650390625017],[-52.78339843749998,2.317187500000017],[-52.70063476562501,2.36367187499998],[-52.653173828125006,2.425732421875011],[-52.58300781250003,2.528906249999977],[-52.55947265625002,2.573144531250023],[-52.55468750000002,2.647656250000011],[-52.45585937499996,2.86416015624998],[-52.418408203124955,2.903857421874989],[-52.39638671875002,2.972216796874974],[-52.35664062499998,3.051562499999974],[-52.35664062499998,3.117724609375031],[-52.327880859375,3.181738281250019],[-52.27124023437499,3.237109375000017],[-52.22944335937501,3.271679687500054],[-52.16259765625,3.364697265624997],[-52.11611328125002,3.45229492187498],[-51.99951171874997,3.646875],[-51.990625,3.702001953124963],[-51.94433593750003,3.735107421875042],[-51.92890624999998,3.776953125000048],[-51.87949218749994,3.828564453124997],[-51.827490234375006,3.869580078124997],[-51.80527343750003,3.929931640625043],[-51.76708984374997,3.992675781250028],[-51.68344726562497,4.039697265625023],[-51.65253906249998,4.061279296874972],[-51.557812499999955,4.233789062500037],[-51.54707031250001,4.31088867187502],[-51.46152343749998,4.313769531249989],[-51.32709960937495,4.224755859374966],[-51.219921874999955,4.093603515624991],[-51.076269531250006,3.671679687500003],[-51.05239257812502,3.281835937499991],[-50.99414062499997,3.077539062500023],[-50.82719726562499,2.651855468749986],[-50.816503906250034,2.573046875],[-50.789697265624966,2.477783203125043],[-50.736962890624994,2.376757812499989],[-50.67875976562493,2.210351562500009],[-50.67656250000002,2.179443359375014],[-50.71440429687502,2.134033203125],[-50.65893554687497,2.130957031250006],[-50.60869140624995,2.104101562500034],[-50.575878906249926,1.998583984375031],[-50.53442382812503,1.927246093749971],[-50.458886718749994,1.829589843749972],[-50.304296875000034,1.797656250000045],[-50.18759765624998,1.785986328124977],[-50.05468749999997,1.730712890625],[-49.95712890625,1.65986328125004],[-49.88159179687497,1.419921875],[-49.90625,1.26904296875],[-49.898876953124955,1.16298828124998],[-49.93793945312501,1.121435546875034],[-50.04721679687498,1.051953125],[-50.070996093749926,1.01508789062504],[-50.294433593749964,0.835742187500003],[-50.34326171874997,0.751025390624974],[-50.462988281250034,0.637304687499991],[-50.58154296875003,0.420507812499963],[-50.755078124999955,0.222558593749966],[-50.816357421874976,0.172558593749997],[-50.91015625,0.160986328125034],[-50.96708984374996,0.130273437499994],[-51.10195312499999,-0.03125],[-51.28291015625001,-0.085205078125028],[-51.29956054687503,-0.178808593750006],[-51.404150390625,-0.392675781249963],[-51.496289062499955,-0.509472656249954],[-51.555029296875034,-0.549121093749946],[-51.70263671874997,-0.762304687499949],[-51.721533203125006,-0.855468750000014],[-51.720605468749994,-1.018457031249994],[-51.81914062500002,-1.117773437499977],[-51.921630859375,-1.180859374999955],[-51.934472656249966,-1.320312499999943],[-51.98081054687497,-1.367968749999974],[-52.02045898437498,-1.399023437499991],[-52.22924804687497,-1.3625],[-52.55341796874992,-1.5140625],[-52.664160156250034,-1.551757812500028],[-52.31030273437497,-1.559570312500014],[-52.196679687499994,-1.64013671875],[-51.94755859374995,-1.586718749999946],[-51.64628906249995,-1.394335937500017],[-51.531201171874955,-1.354101562499991],[-51.29736328125003,-1.223535156250037],[-51.202343749999926,-1.136523437499989],[-51.028955078124966,-1.032128906250037],[-50.99204101562498,-0.986328125000028],[-50.89492187500002,-0.937597656249963],[-50.84228515625003,-0.999609374999977],[-50.83818359374999,-1.038867187499989],[-50.917871093749966,-1.115234375],[-50.897167968749926,-1.16445312499999],[-50.84458007812498,-1.226269531249969],[-50.825537109375006,-1.311425781249994],[-50.81865234375001,-1.376269531249974],[-50.78613281249997,-1.48994140625004],[-50.67895507812497,-1.64384765624996],[-50.67529296875002,-1.694726562500023],[-50.690039062500006,-1.761718749999986],[-50.63876953124995,-1.817089843749983],[-50.585595703124966,-1.849902343750017],[-50.40322265625002,-2.015527343750009],[-50.26044921874998,-1.922949218749977],[-50.17270507812495,-1.896191406250026],[-50.116601562499994,-1.857519531249963],[-49.999218749999955,-1.831835937499974],[-49.902978515624994,-1.870605468749971],[-49.71953125000002,-1.926367187499963],[-49.58535156250002,-1.867187499999986],[-49.31367187500001,-1.731738281250003],[-49.39863281250001,-1.971582031250023],[-49.46015625000001,-2.191503906249977],[-49.50698242187496,-2.280273437500028],[-49.553369140624994,-2.51992187499999],[-49.599316406249926,-2.58388671874998],[-49.63652343749996,-2.656933593750026],[-49.575878906249955,-2.631445312499977],[-49.52392578125003,-2.596875],[-49.45751953125,-2.504589843749983],[-49.407666015624976,-2.34433593750002],[-49.21103515624997,-1.916503906249986],[-49.15478515624997,-1.878515624999977],[-48.99130859374998,-1.829785156249997],[-48.71000976562496,-1.487695312500023],[-48.6,-1.488769531249986],[-48.52958984374996,-1.567480468750034],[-48.46293945312499,-1.613964843749997],[-48.44584960937496,-1.520410156250037],[-48.349804687499926,-1.482128906249955],[-48.45146484374996,-1.435839843750031],[-48.46806640624996,-1.393847656250003],[-48.47773437499998,-1.323828124999949],[-48.40859375,-1.22919921875004],[-48.44980468749998,-1.145507812499943],[-48.30649414062498,-1.03984375],[-48.31757812499992,-0.96054687500002],[-48.266455078125006,-0.895117187500006],[-48.20175781249998,-0.827929687500003],[-48.12846679687496,-0.795214843749989],[-48.11508789062498,-0.7375],[-48.06884765624997,-0.713671874999989],[-48.03256835937495,-0.705078125000014],[-47.96093750000002,-0.76962890625002],[-47.88339843750003,-0.693359375000028],[-47.80766601562496,-0.66347656249998],[-47.77373046874999,-0.676757812500014],[-47.73149414062499,-0.710449218749957],[-47.687109375,-0.72480468750004],[-47.651074218749955,-0.71875],[-47.557324218749955,-0.669921874999957],[-47.47070312499997,-0.748535156249986],[-47.418652343749955,-0.765917968749974],[-47.43291015625002,-0.721875],[-47.460351562499994,-0.680957031249989],[-47.4390625,-0.64765625000004],[-47.39809570312502,-0.626660156250026],[-47.26860351562502,-0.645410156250023],[-47.200537109375006,-0.680468749999974],[-47.12690429687501,-0.745410156249974],[-47.024609374999955,-0.750195312499969],[-46.94433593749994,-0.743359375],[-46.893652343750006,-0.779882812499977],[-46.81123046875001,-0.779687500000023],[-46.76992187499994,-0.836523437499977],[-46.644433593749966,-0.91640625],[-46.61723632812502,-0.970605468750023],[-46.516308593749955,-0.996875],[-46.42172851562498,-1.030078124999974],[-46.32084960937493,-1.039160156249949],[-46.21914062499999,-1.03125],[-46.214990234374966,-1.099804687499969],[-46.14038085937502,-1.118359375000011],[-46.044628906249976,-1.10302734375],[-45.97226562499998,-1.187402343749952],[-45.77880859375,-1.250781249999989],[-45.64477539062497,-1.347851562499954],[-45.55693359375002,-1.330664062500005],[-45.45859374999995,-1.35625],[-45.35302734375003,-1.567382812500014],[-45.32915039062496,-1.71728515625],[-45.282128906249966,-1.696582031249946],[-45.23857421874999,-1.629492187499963],[-45.182080078124926,-1.507031249999969],[-45.07636718749998,-1.466406249999949],[-45.025781249999966,-1.513476562499946],[-44.91977539062494,-1.588867187499943],[-44.828369140625,-1.671679687500031],[-44.78984374999995,-1.724804687500011],[-44.72114257812498,-1.733496093750005],[-44.77851562499995,-1.798828125],[-44.72094726562494,-1.792285156250003],[-44.651269531249966,-1.745800781250025],[-44.591650390625006,-1.841796874999957],[-44.546777343749994,-1.946289062500014],[-44.537792968749955,-2.052734374999943],[-44.580029296874926,-2.113867187499963],[-44.61728515624997,-2.152148437499946],[-44.658642578124955,-2.227539062500028],[-44.70751953124997,-2.241113281249952],[-44.75634765624997,-2.265527343749951],[-44.70063476562498,-2.320410156250034],[-44.66240234375002,-2.373242187499955],[-44.579003906249994,-2.23046875],[-44.52036132812503,-2.190332031249994],[-44.435449218749966,-2.168066406249991],[-44.39130859374995,-2.269628906249991],[-44.38183593749997,-2.365527343749989],[-44.52011718749998,-2.40546875000004],[-44.520654296874994,-2.48125],[-44.56201171875,-2.524218749999989],[-44.589013671874994,-2.573437499999983],[-44.61079101562498,-2.676855468749991],[-44.63896484374996,-2.7625],[-44.721386718749955,-3.142285156249955],[-44.72304687500002,-3.204785156249997],[-44.62265625,-3.13789062500004],[-44.43754882812496,-2.944433593749977],[-44.38115234375002,-2.738378906250006],[-44.30815429687495,-2.53515625],[-44.228613281250006,-2.471289062499949],[-44.17939453124992,-2.471191406250014],[-44.105566406250006,-2.493457031250031],[-44.10136718749993,-2.56005859375],[-44.112646484375006,-2.598535156250023],[-44.191601562499926,-2.699609375],[-44.225195312500034,-2.75498046875002],[-44.19267578124999,-2.809570312499943],[-44.01323242187501,-2.642187499999949],[-43.93291015624999,-2.583496093749986],[-43.86445312499998,-2.595410156250011],[-43.728613281250034,-2.518164062499991],[-43.45512695312499,-2.502050781250006],[-43.43461914062499,-2.41367187500002],[-43.38007812499998,-2.376074218750006],[-43.22968749999998,-2.386035156249989],[-42.93671874999998,-2.465039062500011],[-42.83227539062502,-2.529589843750017],[-42.67587890624997,-2.589648437499988],[-42.59355468749999,-2.661035156249966],[-42.24960937499998,-2.7919921875],[-41.999853515625006,-2.806054687500023],[-41.87617187499992,-2.746582031249986],[-41.721875,-2.808886718749989],[-41.64013671874999,-2.878613281249983],[-41.47993164062495,-2.916503906249972],[-41.318212890625034,-2.936230468749997],[-41.19453124999998,-2.886132812499994],[-40.875585937500006,-2.869628906250014],[-40.47456054687492,-2.795605468750025],[-40.23535156249997,-2.813183593749969],[-39.96469726562498,-2.861523437499954],[-39.771826171875034,-2.985839843749972],[-39.60942382812499,-3.05625],[-39.511181640624955,-3.12558593750002],[-39.352685546874994,-3.197363281249991],[-39.01435546874998,-3.390234375000019],[-38.89599609374994,-3.501757812500002],[-38.686230468749926,-3.653710937499965],[-38.475781249999955,-3.717480468749997],[-38.361914062500034,-3.876464843749957],[-38.271875,-3.948046874999974],[-38.04882812500003,-4.216406250000034],[-37.795654296874964,-4.404296875000028],[-37.626318359375006,-4.592089843750003],[-37.30146484375001,-4.713085937499969],[-37.174658203125,-4.912402343749974],[-36.95488281249999,-4.936718749999955],[-36.86113281249999,-4.966601562500003],[-36.74736328124999,-5.050683593749994],[-36.590722656249966,-5.097558593749952],[-36.38671874999997,-5.084277343750003],[-36.161767578124994,-5.09375],[-35.979882812499966,-5.05439453125004],[-35.549414062500006,-5.129394531249957],[-35.481689453125,-5.166015624999956],[-35.39257812499994,-5.250878906250009],[-35.235449218750006,-5.56669921874996],[-35.14174804687502,-5.917187499999955],[-35.095458984375,-6.18535156249996],[-34.988183593749994,-6.39375],[-34.929589843749966,-6.785058593750023],[-34.879882812499936,-6.908203124999972],[-34.87597656249994,-7.0029296875],[-34.833886718749994,-7.024414062500014],[-34.80546874999999,-7.288378906249974],[-34.816601562499926,-7.394824218749989],[-34.85776367187498,-7.533300781249949],[-34.86083984374997,-7.595019531250003],[-34.85478515624998,-7.634277343750014],[-34.87299804687498,-7.69208984374997],[-34.878613281249955,-7.74746093749998],[-34.8369140625,-7.871777343749984],[-34.834667968749976,-7.97148437499996],[-34.890527343749994,-8.092187500000037],[-34.96665039062495,-8.407617187499994],[-35.15776367187498,-8.930566406249952],[-35.34086914062499,-9.230664062499981],[-35.597070312499966,-9.540625],[-35.76396484374993,-9.702539062500023],[-35.83012695312502,-9.719042968750003],[-35.890820312499926,-9.687011718749957],[-35.84775390624995,-9.772460937499957],[-35.88544921875001,-9.84765625],[-36.05498046874999,-10.075781250000032],[-36.223535156249966,-10.225097656249986],[-36.39833984374994,-10.484082031249983],[-36.41162109375,-10.489941406250026],[-36.6357421875,-10.589941406249977],[-36.768310546875,-10.671679687500017],[-36.93779296874998,-10.820410156250034],[-37.09335937499998,-11.054785156249991],[-37.12548828125003,-11.084960937500014],[-37.18281249999998,-11.06845703125002],[-37.18120117187502,-11.1875],[-37.315136718749955,-11.375976562499972],[-37.35600585937502,-11.403906249999977],[-37.354882812499966,-11.350488281250023],[-37.331640625,-11.309863281250003],[-37.32080078125003,-11.266601562499986],[-37.32177734374997,-11.215136718749974],[-37.35922851562495,-11.252539062499963],[-37.43847656250003,-11.39375],[-37.411816406250004,-11.497265624999983],[-37.469335937500006,-11.65361328124996],[-37.68872070312503,-12.1],[-37.95732421874993,-12.475488281249966],[-38.019238281249955,-12.591308593750028],[-38.23974609375003,-12.844238281249957],[-38.401757812499994,-12.966210937500021],[-38.44731445312493,-12.967089843750031],[-38.498925781249966,-12.956640625000034],[-38.52490234375003,-12.762304687499961],[-38.654003906249955,-12.644628906249963],[-38.69096679687502,-12.623925781250009],[-38.74389648437497,-12.74853515625],[-38.787988281249966,-12.782714843750028],[-38.85175781250001,-12.790136718750034],[-38.783593749999966,-12.844433593749997],[-38.76372070312502,-12.907226562499998],[-38.83315429687502,-13.032910156250024],[-38.835302734375034,-13.147167968750026],[-38.959179687499955,-13.273046875],[-39.030908203124994,-13.365136718750021],[-39.06738281249997,-13.480468749999986],[-39.08935546875,-13.588183593749989],[-39.034912109375,-13.55878906250004],[-39.00908203124999,-13.581445312500037],[-38.988623046875006,-13.61503906249996],[-39.00122070312497,-13.664550781250014],[-39.041113281250034,-13.758105468749974],[-39.034912109375,-13.991015624999989],[-39.04814453124995,-14.043945312500027],[-39.008496093749955,-14.101171874999961],[-38.96650390625001,-14.003417968750028],[-38.94233398437498,-14.030664062499994],[-39.05957031249997,-14.65478515624996],[-39.013378906249976,-14.935644531249977],[-38.996191406250034,-15.253808593750037],[-38.94321289062497,-15.564355468749978],[-38.88525390624997,-15.841992187499969],[-38.88061523437503,-15.864257812499972],[-38.960791015625006,-16.186523437499986],[-39.063232421875,-16.50439453125],[-39.12504882812499,-16.76357421875005],[-39.16396484375002,-17.043554687499977],[-39.20288085937503,-17.178125],[-39.215234374999966,-17.315820312500023],[-39.170605468749955,-17.64208984374997],[-39.15400390624992,-17.70390625000003],[-39.27836914062496,-17.849414062500017],[-39.41259765624994,-17.920019531250002],[-39.48676757812495,-17.990136718749994],[-39.650781249999966,-18.252343750000037],[-39.73979492187499,-18.639843750000026],[-39.741943359375,-18.845996093750003],[-39.69985351562502,-19.27783203124997],[-39.73144531249997,-19.45390625],[-39.78330078124998,-19.571777343749986],[-39.84472656249997,-19.649121093750026],[-40.001367187499994,-19.74199218750003],[-40.14169921874998,-19.96826171875003],[-40.20273437499998,-20.20605468749997],[-40.29887695312493,-20.292675781250036],[-40.318554687499955,-20.42578124999997],[-40.39594726562501,-20.56943359375002],[-40.59658203125002,-20.78378906249999],[-40.72705078124994,-20.84619140625],[-40.78925781250001,-20.906054687500028],[-40.828759765624966,-21.031347656249974],[-40.954541015624926,-21.237890624999963],[-41.04726562499999,-21.505664062499974],[-41.023144531249955,-21.596875],[-41.021582031250006,-21.61083984375],[-40.98784179687496,-21.920312499999977],[-41.00029296875002,-21.99902343750003],[-41.122509765624955,-22.084375],[-41.582910156249966,-22.243652343749957],[-41.70551757812498,-22.30966796874999],[-41.980419921874955,-22.58066406249996],[-41.99755859374997,-22.64462890625002],[-41.98613281249996,-22.735839843749954],[-41.94091796874997,-22.788281249999983],[-41.9875,-22.84511718750001],[-42.042382812499966,-22.947070312500003],[-42.12246093750002,-22.940820312499966],[-42.5810546875,-22.941015625],[-42.829296874999955,-22.973339843750026],[-42.95830078124996,-22.96708984374999],[-43.01621093750003,-22.94257812499997],[-43.081152343750006,-22.902539062499983],[-43.100683593750006,-22.850097656249957],[-43.0654296875,-22.77070312500004],[-43.086279296875006,-22.723339843749983],[-43.154296875,-22.725195312500002],[-43.22900390625002,-22.747656249999963],[-43.241943359375,-22.79511718750004],[-43.23662109374999,-22.82880859374997],[-43.208837890625006,-22.878125],[-43.19360351562499,-22.93857421875005],[-43.22416992187502,-22.991210937500014],[-43.36948242187494,-22.998046874999986],[-43.5328125,-23.046386718749986],[-43.736523437499955,-23.06660156250001],[-43.898828124999966,-23.10146484375001],[-43.97382812499998,-23.05732421874998],[-43.898828124999966,-23.03525390625002],[-43.79140624999994,-23.04599609374999],[-43.675976562499955,-23.00947265625001],[-43.70292968749996,-22.966308593750014],[-43.86616210937498,-22.910546875000023],[-44.04746093749998,-22.944726562499966],[-44.14799804687493,-23.011035156249974],[-44.36791992187497,-23.004980468749974],[-44.63725585937495,-23.05546875],[-44.68115234375003,-23.106933593749968],[-44.673828124999936,-23.206640625000034],[-44.62109374999994,-23.228515624999957],[-44.56967773437495,-23.27402343749999],[-44.619091796874976,-23.316406250000014],[-44.66718750000001,-23.33515625000001],[-44.95166015624997,-23.381445312500034],[-45.21542968749998,-23.575585937499966],[-45.32539062499998,-23.59970703124999],[-45.42329101562495,-23.68535156250003],[-45.43339843749996,-23.75849609375001],[-45.464306640624955,-23.802539062500014],[-45.52709960937497,-23.804785156250034],[-45.664648437500006,-23.764843749999983],[-45.843164062499966,-23.763671875],[-45.97207031250002,-23.795507812500006],[-46.63076171875002,-24.11035156250003],[-46.86728515624997,-24.236328125000014],[-47.13720703124997,-24.49316406250003],[-47.5921875,-24.781054687499974],[-47.83115234374994,-24.952929687499985],[-47.87656249999998,-24.997460937500005],[-47.91430664062503,-24.999902343749966],[-47.989160156249994,-25.035742187499988],[-47.959375,-25.0654296875],[-47.908349609374966,-25.068164062500017],[-47.92939453124998,-25.16826171874999],[-48.02436523437498,-25.23671875],[-48.20273437499998,-25.416503906250025],[-48.242431640625,-25.4033203125],[-48.18593749999994,-25.309863281249974],[-48.27348632812502,-25.30634765624997],[-48.402490234374994,-25.27207031249999],[-48.45849609374997,-25.31074218749997],[-48.427636718749966,-25.4033203125],[-48.47612304687498,-25.44296875],[-48.56416015624998,-25.447460937500026],[-48.643994140625004,-25.436523437500014],[-48.73173828124993,-25.36875],[-48.6921875,-25.49150390625003],[-48.50703124999998,-25.52128906249996],[-48.42988281249998,-25.55019531249999],[-48.40117187500002,-25.59736328125001],[-48.54516601562503,-25.815917968750043],[-48.66577148437499,-25.844335937499963],[-48.67900390624993,-25.87519531250004],[-48.61284179687496,-25.875],[-48.576318359374994,-25.935449218749966],[-48.61943359374996,-26.179394531250008],[-48.67900390624993,-26.22578125000005],[-48.713769531249994,-26.226953125000023],[-48.74829101562503,-26.26865234374999],[-48.70068359374999,-26.34833984374997],[-48.65161132812494,-26.406445312499997],[-48.658154296874955,-26.519140625000034],[-48.676513671874964,-26.612402343750034],[-48.67773437499994,-26.702929687500003],[-48.61567382812501,-26.878125],[-48.593408203124994,-27.058007812500037],[-48.568359374999964,-27.123437499999966],[-48.55415039062498,-27.195996093749997],[-48.59550781249999,-27.26386718749997],[-48.571972656249976,-27.372753906250036],[-48.64257812499997,-27.557910156250017],[-48.60566406250001,-27.825195312500014],[-48.62080078124998,-28.075585937499962],[-48.64843750000003,-28.20722656250004],[-48.693212890625006,-28.310156249999963],[-48.797265624999966,-28.442675781249957],[-48.799658203125006,-28.575292968749977],[-49.023583984374966,-28.698632812499962],[-49.27128906249999,-28.87119140625005],[-49.499902343750016,-29.07539062499998],[-49.745996093749966,-29.363183593749994],[-50.033349609374994,-29.800976562500008],[-50.299511718749955,-30.425781250000025],[-50.619970703125034,-30.897656249999965],[-50.748144531250034,-31.068066406249965],[-50.92138671874997,-31.258398437500016],[-51.15175781250002,-31.48037109375002],[-51.46040039062501,-31.702441406249974],[-51.79814453124999,-31.90029296875005],[-51.92021484374999,-31.989550781250017],[-52.039208984374994,-32.114843749999956],[-52.068945312500006,-32.06308593749999],[-52.043164062499976,-31.977539062499968],[-52.05957031249997,-31.913476562499977],[-52.063232421875,-31.830371093750017],[-51.99511718749997,-31.81503906249999],[-51.89316406249998,-31.867773437499988],[-51.84121093749996,-31.83203125],[-51.803417968750004,-31.79667968749999],[-51.68066406249994,-31.774609375000026],[-51.446191406249966,-31.557324218749983],[-51.272167968749955,-31.476953125000037],[-51.17431640625,-31.33974609374998],[-51.15751953124996,-31.26679687500004],[-51.16142578124996,-31.11884765625001],[-51.10595703125003,-31.08134765625],[-50.980078125000034,-31.094238281249968],[-50.95439453124996,-31.052148437500005],[-50.965332031249964,-31.00546875],[-50.94082031249993,-30.903710937499966],[-50.770166015624994,-30.813378906250033],[-50.68930664062494,-30.70419921874999],[-50.71630859374994,-30.425976562499983],[-50.68505859374997,-30.41347656250001],[-50.61484374999998,-30.456835937499957],[-50.581933593750016,-30.438867187500033],[-50.54653320312499,-30.316894531249954],[-50.56352539062499,-30.253613281250036],[-50.646191406249955,-30.236816406249986],[-50.931884765625,-30.374316406250035],[-51.024951171874925,-30.368652343750032],[-51.04038085937497,-30.260644531249966],[-51.179296875000034,-30.211035156249977],[-51.23359374999998,-30.121386718750014],[-51.249853515625034,-30.059960937500026],[-51.29804687499998,-30.03486328124997],[-51.29501953124998,-30.141015625],[-51.28178710937496,-30.24414062499997],[-51.15727539062499,-30.364257812500014],[-51.18754882812493,-30.41191406249996],[-51.24658203124997,-30.467578125000017],[-51.287695312500006,-30.59121093749998],[-51.283056640625034,-30.751562499999963],[-51.31640625,-30.70273437499996],[-51.35908203124998,-30.674511718749983],[-51.376464843749964,-30.846875],[-51.45913085937502,-30.912792968750036],[-51.48525390625002,-30.9775390625],[-51.46367187499996,-31.05263671875002],[-51.506298828124955,-31.104492187500014],[-51.71689453124995,-31.24375],[-51.92680664062499,-31.33886718749997],[-51.97246093749999,-31.383789062499986],[-51.994873046875,-31.489941406250026],[-52.02695312499997,-31.599023437500037],[-52.11982421874998,-31.69492187500003],[-52.19355468749998,-31.88554687499997],[-52.19155273437502,-31.96757812499999],[-52.167089843750006,-32.08847656250002],[-52.12739257812501,-32.1677734375],[-52.19018554687499,-32.22080078124998],[-52.27460937499998,-32.323730468749986],[-52.34165039062495,-32.43974609374999],[-52.508496093749926,-32.87529296874999],[-52.652246093749994,-33.137792968750006],[-52.76289062499998,-33.26640625],[-52.92084960937501,-33.40195312499999],[-53.37060546874997,-33.74218750000003],[-53.39755859374995,-33.73730468750001],[-53.46357421875001,-33.709863281250016],[-53.51884765624999,-33.67724609375004],[-53.531347656250034,-33.65546875000004],[-53.53764648437499,-33.622851562499974],[-53.530371093750006,-33.50029296874996],[-53.531347656250034,-33.1708984375],[-53.511865234374966,-33.10869140625003],[-53.48286132812492,-33.068554687500026],[-53.39521484375001,-33.01035156249998],[-53.31010742187499,-32.92705078124997],[-53.21406249999998,-32.82109375],[-53.12558593749998,-32.73671875],[-53.15727539062496,-32.680078125],[-53.23125,-32.62539062499998],[-53.36274414062498,-32.58115234375002],[-53.489404296875016,-32.50322265624996],[-53.601708984374994,-32.40302734374997],[-53.65361328124999,-32.29873046875004],[-53.70112304687498,-32.18632812499996],[-53.74658203125,-32.097460937499974],[-53.76171875,-32.05683593749997],[-53.80610351562498,-32.03994140624998],[-53.87651367187502,-31.994531249999966],[-53.920605468749926,-31.95234375],[-53.98515624999993,-31.928125],[-54.10043945312497,-31.90156250000004],[-54.22055664062503,-31.855175781249997],[-54.36992187499999,-31.745019531250033],[-54.477685546875016,-31.622753906249997],[-54.530908203125016,-31.541992187499968],[-54.58764648437502,-31.48515625000003],[-54.895996093749964,-31.391210937499974],[-55.03603515624999,-31.27900390625004],[-55.091162109375034,-31.31396484374997],[-55.173535156249926,-31.27958984374997],[-55.25463867187502,-31.225585937499986],[-55.278955078124994,-31.184179687499988],[-55.31328124999998,-31.14169921875005],[-55.34550781249995,-31.09296874999997],[-55.36606445312497,-31.04619140625003],[-55.44956054687503,-30.96445312499999],[-55.557324218749955,-30.875976562499996],[-55.60302734375003,-30.85078125000001],[-55.627148437499976,-30.858105468749997],[-55.650488281250034,-30.892089843749996],[-55.66523437500001,-30.92490234375002],[-55.70595703124996,-30.94658203124999],[-55.75634765625,-30.98710937499999],[-55.807763671874994,-31.036718749999977],[-55.873681640625016,-31.069628906250017],[-55.95200195312497,-31.08085937499999],[-56.0046875,-31.079199218750002],[-56.015527343749966,-31.05966796875003],[-56.018457031250016,-30.991894531249983],[-55.998974609374955,-30.83720703125],[-56.044824218749966,-30.77763671875003],[-56.10585937499996,-30.71376953124999],[-56.17617187499999,-30.628417968750014],[-56.4072265625,-30.44746093750001],[-56.72167968750003,-30.186914062500033],[-56.83271484374998,-30.107226562499974],[-56.93725585937497,-30.101074218749957],[-57.03271484374997,-30.109960937499988],[-57.120507812499994,-30.14443359374999],[-57.18691406249994,-30.26484375000001],[-57.21445312499995,-30.283398437499983],[-57.38383789062502,-30.280664062500033],[-57.55229492187497,-30.261230468749986],[-57.60888671875003,-30.187792968750042],[-57.56386718749999,-30.139941406249974],[-57.40522460937501,-30.03388671875004],[-57.31748046874998,-29.939453124999986],[-57.30068359374993,-29.856542968749963],[-57.22465820312499,-29.782128906249994],[-57.08935546874997,-29.716210937499977],[-56.93862304687499,-29.594824218750034],[-56.77246093749997,-29.417871093750033],[-56.67153320312502,-29.287304687499997],[-56.63583984375003,-29.203027343749966],[-56.57070312499999,-29.138085937499966],[-56.475976562499966,-29.092480468750008],[-56.39326171874998,-28.99726562499997],[-56.322363281250034,-28.852441406250037],[-56.225537109374926,-28.737207031250012],[-56.102880859375006,-28.65175781250001],[-56.03422851562496,-28.58085937499996],[-56.019628906250006,-28.52460937500004],[-55.98491210937493,-28.48857421874999],[-55.93017578124997,-28.472851562499983],[-55.903662109375006,-28.443261718749994],[-55.905419921874994,-28.399609374999983],[-55.890527343749994,-28.370019531249994],[-55.85888671875002,-28.35419921874997],[-55.806054687499994,-28.359765625000037],[-55.73198242187501,-28.386621093749994],[-55.68725585937497,-28.38164062499996],[-55.67197265624995,-28.344921875000022],[-55.691503906250034,-28.302832031249977],[-55.74599609375002,-28.25546875000002],[-55.72548828125002,-28.20410156250003],[-55.582373046875006,-28.12099609374998],[-55.47666015624995,-28.089355468750014],[-55.40981445312502,-28.03779296874998],[-55.34648437499999,-27.95595703125001],[-55.24375,-27.898828125],[-55.10151367187501,-27.86679687499996],[-55.063867187499966,-27.835937499999982],[-55.06899414062494,-27.796289062499994],[-55.039941406249994,-27.76777343750004],[-54.955908203125006,-27.747167968750016],[-54.91020507812502,-27.708593749999977],[-54.90278320312501,-27.65195312499999],[-54.87573242187499,-27.59921875],[-54.82910156250003,-27.55058593750003],[-54.77709960937499,-27.53251953124999],[-54.71972656250003,-27.54492187500003],[-54.66586914062498,-27.526562500000026],[-54.615429687500004,-27.47714843749999],[-54.55493164062502,-27.4541015625],[-54.484326171874955,-27.45732421875003],[-54.44814453124994,-27.446484375000054],[-54.32700195312495,-27.423535156249997],[-54.26015625000002,-27.382031249999965],[-54.20522460937502,-27.289648437499977],[-54.156445312499926,-27.253808593749966],[-54.11381835937496,-27.27470703124996],[-54.04013671874995,-27.24375],[-53.93535156250002,-27.1611328125],[-53.915625,-27.159570312500033],[-53.83818359375001,-27.121093750000014],[-53.758496093749955,-26.978320312499974],[-53.71728515625,-26.88281249999997],[-53.72714843749994,-26.804687500000043],[-53.75332031249996,-26.748632812499988],[-53.744580078124955,-26.666503906249957],[-53.718164062499994,-26.443164062500017],[-53.71093750000003,-26.351855468749974],[-53.668554687500006,-26.288183593749977],[-53.67128906249994,-26.22509765625],[-53.746923828125006,-26.08369140624997],[-53.8232421875,-25.959570312499988],[-53.86420898437498,-25.74882812499996],[-53.89116210937499,-25.66884765625001],[-53.95478515624998,-25.64765625000004],[-54.01230468749998,-25.57792968749996],[-54.08500976562496,-25.571875],[-54.119238281250006,-25.545214843749957],[-54.15458984374999,-25.52304687499996],[-54.20615234375003,-25.529589843749974],[-54.250097656250006,-25.570410156250016],[-54.33188476562498,-25.571875],[-54.38334960937499,-25.588671875000017],[-54.44394531249998,-25.625],[-54.50151367187498,-25.60830078125002],[-54.53784179687499,-25.576464843750017],[-54.615869140624994,-25.57607421875002],[-54.61054687499998,-25.43271484375003],[-54.47314453124997,-25.22021484375],[-54.43623046875001,-25.12128906250001],[-54.4541015625,-25.06523437499996],[-54.412988281249966,-24.867480468749985],[-54.31293945312492,-24.528125],[-54.28100585937499,-24.30605468750001],[-54.31728515625002,-24.201269531249977],[-54.31826171874994,-24.128125],[-54.26689453124996,-24.06582031250001],[-54.241796875,-24.047265624999966],[-54.37080078124998,-23.97119140625],[-54.44023437500002,-23.90175781249998],[-54.52958984375002,-23.852148437500002],[-54.62548828125,-23.8125],[-54.67177734375002,-23.82900390624999],[-54.72138671875001,-23.852148437500002],[-54.817285156249994,-23.88847656250003],[-54.926464843749955,-23.95136718749997],[-54.98266601562494,-23.974511718749966],[-55.081884765625,-23.997656249999977],[-55.1943359375,-24.017480468750023],[-55.28691406249993,-24.00429687499999],[-55.366308593750034,-23.99101562499996],[-55.41591796875002,-23.95136718749997],[-55.4423828125,-23.86533203125002],[-55.4423828125,-23.792578125000034],[-55.458886718749966,-23.686718750000054],[-55.51845703124994,-23.627246093750014],[-55.53828124999998,-23.58095703124999],[-55.54160156249995,-23.52470703124999],[-55.53496093750002,-23.461914062499986],[-55.51845703124994,-23.415625],[-55.52836914062501,-23.359375],[-55.554833984374994,-23.31962890624996],[-55.54819335937497,-23.250195312500026],[-55.561425781249994,-23.154296875000025],[-55.60112304687498,-23.09472656249997],[-55.620996093749966,-23.025292968750037],[-55.620996093749966,-22.955859375000014],[-55.65073242187497,-22.886425781249983],[-55.654052734374936,-22.81035156250003],[-55.627587890624966,-22.740917968750008],[-55.61767578125,-22.67148437499999],[-55.647412109375004,-22.621875],[-55.70366210937502,-22.592089843749974],[-55.74663085937498,-22.51269531249997],[-55.753271484375006,-22.410156250000043],[-55.79956054687503,-22.353906250000037],[-55.84916992187498,-22.307617187500014],[-55.90537109374998,-22.307617187500014],[-55.991406249999926,-22.28115234375005],[-56.06748046874998,-22.284472656250017],[-56.18984374999994,-22.28115234375005],[-56.246044921874926,-22.26464843749997],[-56.275781249999966,-22.22822265625001],[-56.35185546874999,-22.178613281250023],[-56.39487304687497,-22.09267578125002],[-56.44780273437502,-22.07617187500003],[-56.52382812499994,-22.102539062499986],[-56.55029296875,-22.13564453124998],[-56.58007812499994,-22.18193359374999],[-56.63300781249998,-22.23486328125003],[-56.70244140625002,-22.231542968749977],[-56.77519531249999,-22.261328125],[-56.84467773437495,-22.26464843749997],[-56.93725585937497,-22.271289062499985],[-57.029882812500006,-22.244824218750008],[-57.14233398437499,-22.215039062499983],[-57.238232421875004,-22.195214843750037],[-57.33085937499996,-22.215039062499983],[-57.39365234374998,-22.198437499999983],[-57.47636718749993,-22.18857421875002],[-57.56894531249998,-22.18193359374999],[-57.64169921874995,-22.129003906249963],[-57.721093749999966,-22.09921875000002],[-57.76406250000003,-22.109179687500003],[-57.82031250000003,-22.142285156249997],[-57.87983398437498,-22.13564453124998],[-57.95590820312503,-22.109179687500003],[-57.98569335937498,-22.046386718749996],[-57.97905273437493,-22.00664062499999],[-57.9625,-21.966992187499997],[-57.932763671875016,-21.91074218749999],[-57.94931640625001,-21.85117187500002],[-57.94267578124999,-21.798339843749996],[-57.929443359374964,-21.75195312499997],[-57.916210937499926,-21.699121093750037],[-57.92617187499999,-21.649511718749977],[-57.929443359374964,-21.59658203125002],[-57.93608398437498,-21.54697265625005],[-57.945996093749955,-21.49404296875001],[-57.90629882812495,-21.417968749999957],[-57.873242187499976,-21.355078125000034],[-57.89306640624999,-21.302246093750014],[-57.886474609375,-21.26582031249997],[-57.86000976562494,-21.20625],[-57.82695312499996,-21.13359375000003],[-57.83022460937499,-20.99794921875001],[-57.86000976562494,-20.918554687500006],[-57.89223632812502,-20.897070312499977],[-57.900488281250006,-20.87304687499997],[-57.88481445312501,-20.84169921874998],[-57.90190429687495,-20.809375],[-57.90849609374996,-20.776367187499986],[-57.89140624999993,-20.747460937499966],[-57.91513671874998,-20.690332031249966],[-57.9625,-20.67382812499997],[-57.97905273437493,-20.65732421874999],[-57.99560546875003,-20.59443359374997],[-58.00883789062496,-20.52167968749997],[-58.00224609374996,-20.465429687499977],[-58.025390624999964,-20.41582031249999],[-58.05844726562494,-20.38613281249998],[-58.091503906249926,-20.333203125000036],[-58.124609375000034,-20.293457031250014],[-58.13779296874995,-20.237304687500043],[-58.15976562499998,-20.164648437499977],[-58.09375,-20.15107421874997],[-58.067626953124964,-20.110351562500014],[-58.021142578125,-20.055175781249968],[-57.96015625,-20.04072265625004],[-57.887597656249966,-20.02041015624999],[-57.860742187499994,-19.97958984375002],[-58.029931640624994,-19.832714843750036],[-58.131494140624994,-19.74453125],[-58.07202148437497,-19.62529296874996],[-57.971679687499936,-19.424218750000037],[-57.874511718749964,-19.22949218749997],[-57.80039062499994,-19.08095703125001],[-57.78144531250001,-19.053515625],[-57.716796874999964,-19.044042968750034],[-57.728613281250006,-18.967382812499963],[-57.73085937499999,-18.91718750000004],[-57.78310546874999,-18.91425781249997],[-57.725,-18.73320312500003],[-57.639160156249964,-18.475],[-57.57402343749994,-18.279296875000014],[-57.553125,-18.24648437499999],[-57.50615234374996,-18.237304687499986],[-57.49565429687496,-18.214648437499985],[-57.55205078124998,-18.183105468749954],[-57.58647460937498,-18.122265625],[-57.66166992187493,-17.94736328124999],[-57.78017578125002,-17.67177734374998],[-57.78886718750001,-17.573046875000017],[-57.832470703125004,-17.512109375000037],[-57.90502929687497,-17.53232421874999],[-57.990917968749955,-17.512890625000026],[-58.20556640625,-17.363085937499974],[-58.347753906250006,-17.282128906249994],[-58.395996093749964,-17.234277343750023],[-58.41738281249999,-17.08056640624997],[-58.459814453125006,-16.910742187500002],[-58.478125,-16.70068359375003],[-58.470605468749994,-16.650195312500045],[-58.35039062500001,-16.49082031249999],[-58.35078125000001,-16.410253906250002],[-58.34057617187497,-16.339941406249977],[-58.345605468750016,-16.284375],[-58.37539062499997,-16.283593749999966],[-58.423681640625034,-16.30791015625003],[-58.496582031249936,-16.32666015625003],[-58.53793945312503,-16.32822265624999],[-58.95727539062502,-16.31318359375004],[-59.434277343749926,-16.295996093750006],[-59.83115234374998,-16.28173828125003],[-60.17558593749996,-16.26933593749999],[-60.18720703124995,-16.132128906250017],[-60.206640625,-15.901953125000018],[-60.22041015624995,-15.738671874999964],[-60.24233398437499,-15.479589843750032],[-60.38046875,-15.318261718750025],[-60.530468749999976,-15.143164062499977],[-60.58320312499998,-15.098339843749983],[-60.402001953124994,-15.092773437500012],[-60.27333984374999,-15.088769531249993],[-60.29887695312496,-14.618554687500037],[-60.33803710937493,-14.570507812500011],[-60.37270507812499,-14.41875],[-60.39624023437497,-14.332812499999987],[-60.460156249999955,-14.263085937499993],[-60.47465820312495,-14.184765625000026],[-60.46298828125,-14.132421875000018],[-60.42807617187498,-14.1],[-60.40498046874999,-14.019238281249969],[-60.42236328124997,-13.937988281250027],[-60.460156249999955,-13.862402343749991],[-60.50659179687499,-13.78984375],[-60.59531249999994,-13.745312500000026],[-60.722363281249976,-13.664355468749973],[-60.91450195312495,-13.561425781249966],[-61.07700195312503,-13.489746093750014],[-61.129150390625,-13.498535156250027],[-61.41606445312502,-13.526562499999969],[-61.511572265625,-13.541210937500011],[-61.575683593750036,-13.524804687499966],[-61.789941406249966,-13.525585937500026],[-61.87412109374998,-13.470410156249983],[-61.94472656249996,-13.40625],[-62.09477539062499,-13.241992187499989],[-62.118017578125006,-13.15976562500002],[-62.17607421874993,-13.133691406250037],[-62.263916015624964,-13.14365234375002],[-62.35283203124998,-13.132421874999961],[-62.52553710937499,-13.064257812500017],[-62.68706054687496,-12.994335937499981],[-62.76547851562503,-12.99726562500004],[-62.83515625000001,-12.953710937499961],[-62.95791015624997,-12.847070312499994],[-63.01518554687502,-12.80556640624998],[-63.041357421875,-12.750390625000023],[-63.06748046875,-12.669140624999983],[-63.116796875,-12.651660156249974],[-63.180664062499964,-12.66621093750001],[-63.249755859375,-12.70791015624998],[-63.34667968749994,-12.68007812499999],[-63.46523437499993,-12.60517578125001],[-63.541894531250016,-12.546679687500003],[-63.585644531249955,-12.518945312500037],[-63.68857421874998,-12.478027343749957],[-63.7880859375,-12.469433593749983],[-63.93857421875,-12.5296875],[-64.06162109375003,-12.505078124999955],[-64.255029296875,-12.483300781249966],[-64.42050781249995,-12.439746093749974],[-64.48076171874999,-12.326171875000014],[-64.51342773437497,-12.250976562499972],[-64.611669921875,-12.203906249999973],[-64.69003906249998,-12.146484375],[-64.783447265625,-12.059375],[-64.82988281249996,-12.030273437499957],[-64.91435546874993,-12.005957031249977],[-64.99252929687498,-11.975195312500006],[-65.00122070312497,-11.920019531249963],[-65.03027343750003,-11.847363281249997],[-65.037109375,-11.829394531249974],[-65.09028320312498,-11.741210937499943],[-65.11513671874998,-11.735058593750024],[-65.14267578124999,-11.75234375],[-65.16337890624996,-11.765136718750028],[-65.18574218749998,-11.749511718749957],[-65.18974609374999,-11.710058593749991],[-65.175390625,-11.646875],[-65.20620117187497,-11.58056640625],[-65.282275390625,-11.511035156249946],[-65.32202148437493,-11.439160156249969],[-65.32548828124992,-11.364746093749986],[-65.3423828125,-11.315039062499991],[-65.37285156249999,-11.289941406250023],[-65.389892578125,-11.24628906250001],[-65.39360351562496,-11.184277343749997],[-65.37158203125,-11.110351562499943],[-65.32377929687496,-11.024804687500009],[-65.33403320312499,-10.892773437500026],[-65.40229492187495,-10.714746093749994],[-65.43999023437497,-10.586230468750017],[-65.44711914062503,-10.507421875000034],[-65.4369140625,-10.449023437499946],[-65.39545898437498,-10.392285156250026],[-65.31308593749996,-10.25302734374999],[-65.29858398437497,-10.146777343750017],[-65.324560546875,-10.026953125000034],[-65.328125,-9.935546874999972],[-65.30932617187503,-9.872656250000032],[-65.33789062499997,-9.790234375000026],[-65.39614257812494,-9.712402343749986],[-65.43676757812497,-9.710449218750028],[-65.49199218749993,-9.731738281250017],[-65.55869140625003,-9.797460937499991],[-65.63710937500002,-9.809082031249957],[-65.706787109375,-9.768457031250037],[-65.92470703125,-9.785449218750031],[-66.26357421875,-9.826074218749966],[-66.39921875,-9.868164062500014],[-66.47890625,-9.886132812500023],[-66.57534179687502,-9.899902343749986],[-66.72998046875,-9.975488281250023],[-67.11152343750001,-10.268945312500037],[-67.19047851562502,-10.31142578124998],[-67.28046874999995,-10.317285156250023],[-67.33271484374995,-10.357910156249956],[-67.41694335937495,-10.389843749999969],[-67.582421875,-10.505957031250006],[-67.66665039062494,-10.598925781250031],[-67.72177734374998,-10.683105468749943],[-67.78569335937495,-10.686035156250014],[-67.83500976562495,-10.662792968749983],[-67.99169921874999,-10.674414062499949],[-68.07167968749994,-10.703125],[-68.15864257812498,-10.785058593750021],[-68.26660156249997,-10.933105468749986],[-68.31113281249998,-10.975195312500034],[-68.39799804687499,-11.01875],[-68.49833984375002,-11.054785156249991],[-68.62265625000003,-11.109179687499974],[-68.678369140625,-11.11279296875],[-68.72749023437498,-11.122460937500009],[-68.769921875,-11.097656250000028],[-68.78408203124997,-11.044628906249969],[-68.84833984374998,-11.01113281249998],[-69.00166015624995,-10.994335937500026],[-69.228515625,-10.955664062499963],[-69.46254882812497,-10.948144531250023],[-69.57861328124999,-10.951757812499963],[-69.67402343749998,-10.9541015625],[-69.83979492187501,-10.93339843749996],[-69.96035156249995,-10.929882812500038],[-70.06630859374997,-10.982421875],[-70.22006835937502,-11.04765625],[-70.29038085937498,-11.064257812499974],[-70.34199218750001,-11.066699218750017],[-70.39228515624995,-11.058593749999972],[-70.45087890624997,-11.024804687500009],[-70.53325195312496,-10.946875],[-70.59653320312498,-10.976855468750017],[-70.642333984375,-11.010253906249984],[-70.64155273437501,-10.840820312500014],[-70.64033203124993,-10.586035156249977],[-70.63935546875001,-10.361328125000028],[-70.638525390625,-10.181542968749994],[-70.63759765625,-9.971777343749975],[-70.63691406249995,-9.823730468750014],[-70.59379882812495,-9.767480468750009],[-70.56723632812498,-9.704589843749986],[-70.59916992187499,-9.620507812500009],[-70.59223632812501,-9.543457031250027],[-70.57016601562503,-9.489843750000032],[-70.54111328124998,-9.4375],[-70.60791015625,-9.463671875000031],[-70.63691406249995,-9.478222656249969],[-70.6724609375,-9.51796875],[-70.75849609374995,-9.571679687500009],[-70.81625976562498,-9.625292968750003],[-70.88452148437494,-9.669042968750034],[-70.97075195312502,-9.765722656250006],[-71.041748046875,-9.81875],[-71.11528320312499,-9.852441406250009],[-71.237939453125,-9.966015624999955],[-71.33940429687499,-9.988574218750031],[-71.6080078125,-10.006054687500038],[-71.887451171875,-10.005566406250026],[-72.14296875,-10.005175781250031],[-72.18159179687495,-10.003710937500003],[-72.1791015625,-9.910156249999943],[-72.17285156249997,-9.844042968749974],[-72.25996093749995,-9.77431640624998],[-72.26582031249998,-9.6884765625],[-72.28901367187501,-9.629199218750003],[-72.31806640624995,-9.556640624999957],[-72.37905273437497,-9.51015625],[-72.46474609375,-9.492187499999972],[-72.60546875,-9.452050781249966],[-72.81425781249999,-9.410351562499995],[-73.01376953125003,-9.407421875000026],[-73.20942382812493,-9.411425781249946],[-73.08984375,-9.26572265625002],[-72.970361328125,-9.120117187500027],[-72.97402343750002,-8.9931640625],[-73.07050781249995,-8.8828125],[-73.12255859375,-8.814062500000018],[-73.203125,-8.719335937499991],[-73.30244140624995,-8.654003906250011],[-73.35673828125002,-8.566992187499963],[-73.35170898437497,-8.514160156250028],[-73.36040039062495,-8.479296875000031],[-73.39814453125001,-8.458984374999986],[-73.43588867187496,-8.42705078124996],[-73.48813476562495,-8.392187499999963],[-73.54912109374993,-8.34580078125002],[-73.54912109374993,-8.299316406249957],[-73.57236328124998,-8.249902343750021],[-73.61010742187503,-8.191894531250012],[-73.61010742187503,-8.145410156249952],[-73.64492187500002,-8.072851562500006],[-73.68266601562496,-8.02060546875002],[-73.72041015624993,-7.985742187500022],[-73.77558593749997,-7.936425781250008],[-73.77270507812503,-7.895703124999983],[-73.73203125,-7.875390625],[-73.714599609375,-7.82900390624998],[-73.72041015624993,-7.782519531250017],[-73.76689453124999,-7.753515624999963],[-73.82207031249996,-7.738964843750025],[-73.89462890624996,-7.654785156250014],[-73.946875,-7.611230468750023],[-73.98173828124996,-7.58505859375002],[-74.00205078125002,-7.556054687499966],[-73.98173828124996,-7.535742187500006],[-73.95849609374993,-7.506640625000031],[-73.95268554687502,-7.460253906249989],[-73.96430664062498,-7.416699218749997],[-73.96430664062498,-7.378906250000028],[-73.92944335937497,-7.367285156249978],[-73.89174804687502,-7.373144531250006],[-73.85400390624997,-7.349902343749989],[-73.80463867187495,-7.341210937499994],[-73.74946289062497,-7.335351562500037],[-73.72041015624993,-7.30927734374997],[-73.72333984375001,-7.262792968750006],[-73.758203125,-7.172753906249951],[-73.79301757812499,-7.135058593750002],[-73.80463867187495,-7.079882812499946],[-73.77626953124994,-6.973535156249952],[-73.75810546874999,-6.90576171875],[-73.69453124999997,-6.833789062500003],[-73.49990234374995,-6.679492187500003],[-73.32548828124996,-6.574707031249972],[-73.24033203125,-6.564062500000019],[-73.17744140624998,-6.525195312500016],[-73.137353515625,-6.465820312499999],[-73.12631835937493,-6.40087890625],[-73.13535156250003,-6.34433593750002],[-73.16772460937497,-6.260644531250023],[-73.20649414062495,-6.156445312500026],[-73.23554687500001,-6.098437500000017],[-73.209375,-6.028710937500023],[-73.16289062499996,-5.933398437499974],[-73.06806640624997,-5.789550781249972],[-72.97988281249995,-5.634863281249991],[-72.97021484374994,-5.589648437500016],[-72.95893554687495,-5.495214843749963],[-72.91826171874993,-5.302539062499974],[-72.89580078124999,-5.198242187499943],[-72.90747070312497,-5.157714843749957],[-72.88706054687498,-5.122753906250026],[-72.83193359374994,-5.09375],[-72.69873046874996,-5.067187499999988],[-72.60834960937495,-5.009570312499974],[-72.46899414062496,-4.901269531250023],[-72.35283203124993,-4.786035156249994],[-72.25678710937501,-4.74892578124998],[-72.08251953125001,-4.642285156250011],[-71.98242187499997,-4.57460937499999],[-71.94316406249996,-4.553320312500006],[-71.8447265625,-4.504394531249986],[-71.66835937499994,-4.487304687499972],[-71.521337890625,-4.469726562499943],[-71.43828125,-4.437597656249977],[-71.316796875,-4.424316406250014],[-71.23500976562494,-4.388183593750028],[-71.14423828125001,-4.387207031250014],[-70.97368164062499,-4.350488281249994],[-70.915625,-4.295312500000023],[-70.86601562499997,-4.229589843749963],[-70.79951171874994,-4.173339843749957],[-70.72158203124997,-4.15888671875004],[-70.63457031250002,-4.168652343749982],[-70.53066406249997,-4.167578125000034],[-70.40463867187498,-4.150097656250026],[-70.34365234375,-4.193652343750017],[-70.31689453124994,-4.246972656250037],[-70.23916015625002,-4.30117187499998],[-70.18398437499997,-4.298144531249989],[-70.12880859375,-4.286621093749943],[-70.05332031249998,-4.333105468750005],[-70.00395507812495,-4.327246093749963],[-69.97202148437502,-4.30117187499998],[-69.96591796875003,-4.2359375],[-69.94819335937498,-4.200585937500009],[-69.91103515624995,-3.996582031250014],[-69.849755859375,-3.659863281249983],[-69.79414062499995,-3.354589843749963],[-69.73261718749993,-3.016699218749949],[-69.66904296875003,-2.667675781249997],[-69.60468749999998,-2.314257812500017],[-69.55185546874998,-2.02421875],[-69.50644531249993,-1.774902343750014],[-69.47861328124998,-1.621972656250023],[-69.43491210937503,-1.421679687499989],[-69.41787109375002,-1.24570312500002],[-69.40024414062498,-1.194921874999977],[-69.41142578124996,-1.152246093749994],[-69.44912109375,-1.091601562499974],[-69.44873046875,-1.064941406249972],[-69.4443359375,-1.02958984374996],[-69.44873046875,-0.998730468749983],[-69.48842773437502,-0.965722656250009],[-69.519287109375,-0.945800781250028],[-69.54355468749995,-0.917187499999969],[-69.55458984374998,-0.877441406249957],[-69.57441406249995,-0.837792968749966],[-69.58325195312497,-0.795898437499957],[-69.61191406250002,-0.762792968749963],[-69.62070312499995,-0.72089843750004],[-69.60087890625002,-0.68125],[-69.59204101562497,-0.63935546875004],[-69.60087890625002,-0.599609375000028],[-69.61191406250002,-0.553320312500006],[-69.63398437500001,-0.50927734375],[-69.66748046874997,-0.482421874999957],[-69.74746093750002,-0.452539062499994],[-69.82792968749999,-0.381347656249972],[-69.92275390624994,-0.317480468750006],[-70.04404296874995,-0.196191406249994],[-70.07050781249993,-0.13886718750004],[-70.07094726562502,0.018554687499972],[-70.06572265624993,0.189355468750037],[-70.05791015624993,0.44736328125002],[-70.05390624999993,0.578613281250028],[-69.98544921875,0.585839843749994],[-69.92509765624999,0.589404296875003],[-69.862060546875,0.598486328124991],[-69.80712890625,0.607470703125045],[-69.75673828124997,0.62636718749998],[-69.71889648437497,0.649804687499966],[-69.67382812499994,0.665087890624974],[-69.63872070312499,0.659667968750014],[-69.60361328125003,0.680371093749969],[-69.56484374999992,0.700195312500014],[-69.52705078124997,0.716406250000034],[-69.47211914062497,0.72993164062504],[-69.42080078125,0.698388671875009],[-69.3919921875,0.66689453124998],[-69.35864257812494,0.651562499999969],[-69.32714843750003,0.655175781249994],[-69.30551757812495,0.652441406249963],[-69.28300781249999,0.627246093749989],[-69.25419921874999,0.625439453124969],[-69.21279296875,0.629931640625003],[-69.174072265625,0.635351562500034],[-69.15605468749999,0.642529296874997],[-69.15332031249993,0.65878906250002],[-69.16323242187502,0.686669921875009],[-69.17675781250003,0.712841796875011],[-69.16596679687495,0.753320312500009],[-69.16503906250003,0.801953125000054],[-69.16323242187502,0.8640625],[-69.19384765624994,0.898291015624963],[-69.22446289062498,0.963134765625028],[-69.25869140625002,1.015380859375014],[-69.31181640624999,1.050488281249969],[-69.36137695312496,1.064013671874974],[-69.40278320312498,1.042382812500009],[-69.44150390624995,1.038818359374986],[-69.47031249999995,1.058593750000028],[-69.51713867187499,1.059472656250023],[-69.56757812499998,1.065771484374977],[-69.62089843749999,1.073242187499986],[-69.71699218749995,1.059082031250028],[-69.75131835937499,1.076611328125054],[-69.79814453124996,1.078417968749974],[-69.85214843750003,1.05952148437504],[-69.85078124999993,1.308789062500011],[-69.84946289062503,1.54389648437504],[-69.84858398437493,1.708740234375043],[-69.79995117187497,1.705175781250034],[-69.73959960937503,1.734863281250043],[-69.650048828125,1.739453125],[-69.58125,1.770751953124986],[-69.54291992187501,1.773242187500045],[-69.47016601562493,1.757910156250034],[-69.39433593749993,1.725781249999969],[-69.31972656250002,1.721240234375017],[-69.12426757812497,1.721289062500034],[-68.91318359374998,1.721386718750054],[-68.67846679687503,1.721484374999974],[-68.44345703125,1.721582031249994],[-68.23955078124996,1.721679687500014],[-68.17656249999999,1.719824218749991],[-68.21328125000002,1.774560546875051],[-68.25595703124999,1.845507812500017],[-68.23945312499993,1.901367187500029],[-68.21835937499998,1.957617187500034],[-68.19379882812495,1.987011718749983],[-68.1302734375,1.955761718750011],[-68.07705078124997,1.860107421874971],[-68.03286132812492,1.78803710937504],[-67.98974609374994,1.752539062500006],[-67.93623046874998,1.748486328124969],[-67.87553710937496,1.760595703125048],[-67.815087890625,1.790087890625017],[-67.71186523437501,1.922119140625],[-67.60922851562498,2.035058593750009],[-67.55605468749997,2.072998046875],[-67.49965820312494,2.107910156250014],[-67.45776367187503,2.121142578125045],[-67.40043945312499,2.116699218750028],[-67.35195312499997,2.085839843750051],[-67.32060546874995,2.032080078125019],[-67.20581054687503,1.844824218749977],[-67.11923828124998,1.703613281249986],[-67.09013671874999,1.615576171874991],[-67.08828124999997,1.400585937499969],[-67.09365234375,1.21000976562496],[-67.082275390625,1.185400390625006],[-67.06523437499999,1.178369140624994],[-66.87602539062499,1.223046875000037],[-66.61904296874994,0.992138671874983],[-66.42924804687502,0.82167968749998],[-66.34711914062498,0.7671875],[-66.30166015624994,0.751953124999986],[-66.19121093750002,0.76328125],[-66.06005859375003,0.78535156250004],[-65.996337890625,0.80976562500004],[-65.92587890624995,0.863134765624991],[-65.81132812499997,0.937255859375],[-65.718115234375,0.978027343750043],[-65.68144531249999,0.983447265624989],[-65.64467773437497,0.970361328124994],[-65.566015625,0.926074218750031],[-65.52299804687493,0.843408203124966],[-65.56269531249995,0.747509765624969],[-65.55605468750002,0.687988281250014],[-65.47338867187497,0.691259765624977],[-65.40722656249997,0.790478515625026],[-65.36083984374994,0.868652343750057],[-65.26396484375,0.931884765625057],[-65.16962890624998,1.022216796874986],[-65.10375976562496,1.108105468749983],[-65.02656249999998,1.158447265625028],[-64.91010742187495,1.219726562499986],[-64.81796875,1.257128906249974],[-64.73154296875,1.253320312499994],[-64.66743164062498,1.293847656249994],[-64.584375,1.369873046875028],[-64.52626953125002,1.431005859375048],[-64.48603515624998,1.452783203125037],[-64.40512695312503,1.446875],[-64.30419921874997,1.455273437500011],[-64.20502929687491,1.52949218750004],[-64.11484375000003,1.619287109375037],[-64.06704101562497,1.770507812500014],[-64.03544921874993,1.904443359375037],[-64.00849609374995,1.931591796874969],[-63.975781249999955,1.953027343749994],[-63.93715820312499,1.966992187499997],[-63.84448242187503,1.976708984375023],[-63.68212890625,2.048144531250002],[-63.57026367187492,2.120507812500009],[-63.463916015624925,2.136035156249974],[-63.43251953124994,2.155566406250045],[-63.393945312499994,2.222509765625006],[-63.374853515625,2.340429687500048],[-63.389257812500006,2.411914062500045],[-63.58461914062502,2.433935546874991],[-63.712548828124966,2.434033203125011],[-63.924169921875006,2.452441406250031],[-64.02490234375,2.481884765624997],[-64.04658203124998,2.502392578124997],[-64.048828125,2.525097656250011],[-64.0287109375,2.576074218749994],[-64.00903320312497,2.671875],[-64.03779296874998,2.801513671875014],[-64.14355468750003,3.004882812500057],[-64.21884765624999,3.2046875],[-64.22875976562497,3.343994140625043],[-64.22705078124997,3.491210937500014],[-64.22109375,3.587402343749971],[-64.27529296874994,3.662695312500034],[-64.56791992187496,3.899804687500023],[-64.66899414062496,4.01181640625002],[-64.70258789062495,4.089306640624997],[-64.81787109375,4.232275390624991],[-64.788671875,4.276025390625023],[-64.72226562499998,4.274414062500057],[-64.66552734374997,4.237109375],[-64.61367187499997,4.157714843749986],[-64.57636718750001,4.139892578125],[-64.52553710937494,4.13999023437502],[-64.25566406249996,4.140332031249997],[-64.19248046874993,4.126855468750009],[-64.154296875,4.100146484374989],[-64.12172851562501,4.066992187499977],[-64.07338867187494,3.974414062500045],[-64.02148437500003,3.929101562500052],[-63.9146484375,3.930664062500014],[-63.746972656249966,3.932568359375039],[-63.65292968749997,3.940820312500037],[-63.596630859374976,3.915039062500028],[-63.52680664062495,3.893701171875023],[-63.37978515624994,3.942871093750014],[-63.33867187500002,3.943896484375045],[-63.294726562499925,3.92226562499998],[-63.13623046874998,3.756445312500048],[-63.04531250000002,3.686474609374997],[-62.96865234374994,3.593945312499983],[-62.85698242187501,3.593457031249969],[-62.76459960937493,3.672949218749991],[-62.73994140624998,3.940332031250023],[-62.712109374999976,4.01791992187502],[-62.66533203124996,4.039648437500006],[-62.60976562500002,4.042285156250017],[-62.54394531249999,4.084326171874962],[-62.47255859374994,4.138525390624991],[-62.41064453124994,4.156738281249971],[-62.153125,4.098388671874986],[-62.08159179687496,4.126318359374991],[-61.82084960937496,4.197021484375],[-61.55424804687499,4.287792968750026],[-61.47939453124993,4.40224609374998],[-61.367529296874984,4.433007812500037],[-61.28007812500002,4.516894531249974],[-61.209423828125004,4.508056640625043],[-61.102441406249966,4.504687499999974],[-61.036279296874994,4.519335937500031],[-61.002832031250016,4.535253906249991],[-60.96640624999998,4.574707031250028],[-60.90625,4.68681640624996],[-60.83339843749996,4.729199218749983],[-60.741748046874925,4.774121093749983],[-60.679150390624976,4.827099609375026],[-60.62758789062496,4.89252929687504],[-60.603857421875,4.94936523437498],[-60.60449218749994,4.99458007812504],[-60.63500976562494,5.081982421874997],[-60.671972656250034,5.164355468749989],[-60.71196289062499,5.191552734375023],[-60.742138671874926,5.202050781250037],[-60.6513671875,5.221142578125011],[-60.57641601562499,5.192480468750034],[-60.45952148437498,5.188085937500033],[-60.40878906249998,5.21015625],[-60.335205078124964,5.199316406250006],[-60.241650390624926,5.257958984374966]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Chile","sov_a3":"CHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Chile","adm0_a3":"CHL","geou_dif":0,"geounit":"Chile","gu_a3":"CHL","su_dif":0,"subunit":"Chile","su_a3":"CHL","brk_diff":0,"name":"Chile","name_long":"Chile","brk_a3":"CHL","brk_name":"Chile","brk_group":null,"abbrev":"Chile","postal":"CL","formal_en":"Republic of Chile","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Chile","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":5,"mapcolor13":9,"pop_est":16601707,"gdp_md_est":244500,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CL","iso_a3":"CHL","iso_n3":"152","un_a3":"152","wb_a2":"CL","wb_a3":"CHL","woe_id":-99,"adm0_a3_is":"CHL","adm0_a3_us":"CHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"CHL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-67.57519531249997,-55.88964843750003],[-67.61142578124998,-55.891699218750006],[-67.69951171874999,-55.87314453125004],[-67.83154296874996,-55.86484375000004],[-67.84643554687497,-55.857226562499996],[-67.84970703125003,-55.84257812500003],[-67.83408203124995,-55.82753906249999],[-67.76206054687503,-55.81611328124997],[-67.54482421875,-55.825976562500024],[-67.51728515624998,-55.8328125],[-67.50981445312496,-55.844335937500034],[-67.545263671875,-55.87744140625003],[-67.57519531249997,-55.88964843750003]]],[[[-67.28886718749999,-55.776855468749964],[-67.32529296875003,-55.78476562499998],[-67.35224609374993,-55.76601562499998],[-67.39335937499996,-55.752734375000024],[-67.55996093749997,-55.72480468750002],[-67.56347656249997,-55.707812500000024],[-67.546142578125,-55.68369140624999],[-67.51279296874995,-55.662011718750016],[-67.44882812499998,-55.640625],[-67.39736328124997,-55.58515625],[-67.37407226562493,-55.58935546874995],[-67.35058593749994,-55.612109374999974],[-67.31044921874994,-55.68867187500003],[-67.26245117187503,-55.74375],[-67.26728515624995,-55.76279296875003],[-67.28886718749999,-55.776855468749964]]],[[[-66.47211914062494,-55.22910156250002],[-66.55170898437501,-55.27285156249996],[-66.61113281249993,-55.26992187499998],[-66.63017578124997,-55.25410156250005],[-66.63662109374997,-55.234375],[-66.62475585937497,-55.21308593750004],[-66.59970703125,-55.19365234374999],[-66.54155273437496,-55.16943359375003],[-66.52314453124995,-55.16552734375003],[-66.435791015625,-55.189746093749996],[-66.47211914062494,-55.22910156250002]]],[[[-67.07993164062498,-55.15380859374995],[-67.10947265625003,-55.192089843750026],[-67.17255859375001,-55.242578125],[-67.25742187499998,-55.28183593750001],[-67.33969726562495,-55.292578124999984],[-67.399267578125,-55.27226562500002],[-67.42939453124993,-55.23652343750002],[-67.44326171875,-55.201171875000014],[-67.46347656250003,-55.18173828124996],[-67.4947265625,-55.177441406249976],[-67.53525390625,-55.17851562500001],[-67.58520507812497,-55.191992187500006],[-67.69145507812493,-55.24296875],[-67.73696289062497,-55.25644531249999],[-67.76777343749995,-55.25957031250001],[-68.07001953124995,-55.22109374999999],[-68.09951171875002,-55.20683593750001],[-68.135107421875,-55.172656249999974],[-68.17431640625,-55.07128906250002],[-68.30136718750003,-54.98066406250003],[-68.10693359375003,-54.929394531249976],[-67.87412109375003,-54.929687500000036],[-67.424560546875,-54.96894531250003],[-67.245263671875,-54.977636718750034],[-67.10732421874994,-55.063574218749956],[-67.08549804687493,-55.115234375],[-67.07993164062498,-55.15380859374995]]],[[[-69.70297851562503,-54.91904296874999],[-68.90078125000002,-55.01777343750004],[-68.65351562500001,-54.95791015625001],[-68.45800781249996,-54.95966796875001],[-68.3998046875,-55.0419921875],[-68.59809570312498,-55.1283203125],[-68.61328124999997,-55.155566406250045],[-68.585546875,-55.177734375000036],[-68.38173828124997,-55.19160156250002],[-68.330078125,-55.219433593750004],[-68.28266601562495,-55.255175781249996],[-68.32275390625003,-55.30820312499996],[-68.3265625,-55.33271484374999],[-68.30541992187497,-55.356640624999976],[-68.152587890625,-55.43691406249998],[-68.08989257812502,-55.47832031249999],[-68.05830078124998,-55.51796875],[-68.04555664062497,-55.5875],[-68.04833984375,-55.6431640625],[-68.08266601562497,-55.6505859375],[-68.15708007812503,-55.63369140625002],[-68.22963867187495,-55.60156249999996],[-68.293359375,-55.52138671874996],[-68.33803710937492,-55.50527343749997],[-68.46669921874997,-55.48906250000004],[-68.59418945312498,-55.45],[-68.69355468749998,-55.452246093750006],[-68.78500976562496,-55.43564453125],[-68.86704101562498,-55.45019531250002],[-68.89614257812497,-55.423828124999986],[-68.93129882812502,-55.37060546874997],[-68.93208007812501,-55.34736328125003],[-68.88896484375002,-55.26328124999996],[-68.89008789062498,-55.2412109375],[-68.91264648437496,-55.23857421874999],[-69.00820312499997,-55.25576171875003],[-69.04682617187491,-55.244335937500004],[-69.15078124999997,-55.18339843750003],[-69.19262695312497,-55.171875],[-69.29707031249993,-55.1658203125],[-69.35615234374998,-55.27392578125],[-69.35922851562498,-55.30068359374994],[-69.29902343749998,-55.36933593749999],[-69.18085937499995,-55.47480468749998],[-69.2408203125,-55.476757812500026],[-69.41181640624995,-55.444238281249966],[-69.455712890625,-55.424023437500026],[-69.50869140624997,-55.37089843750004],[-69.61025390624997,-55.33994140625004],[-69.64589843749992,-55.32089843749998],[-69.65629882812502,-55.29843750000002],[-69.65737304687497,-55.22900390625],[-69.67983398437502,-55.21894531249999],[-69.82402343749999,-55.23652343750002],[-69.85371093750001,-55.21982421874999],[-69.86577148437496,-55.190625],[-69.88676757812499,-55.17412109375001],[-69.97978515625002,-55.14746093749999],[-69.98798828125001,-55.130761718749966],[-69.946533203125,-55.11103515625003],[-69.92084960937501,-55.06113281249999],[-69.88442382812494,-54.88203125000001],[-69.70297851562503,-54.91904296874999]]],[[[-70.9916015625,-54.86796874999999],[-70.94511718749996,-54.93134765625002],[-70.92792968750001,-54.942968749999984],[-70.80483398437497,-54.96767578124996],[-70.74931640624993,-54.95273437500003],[-70.61528320312499,-54.945605468749996],[-70.534765625,-54.92128906250001],[-70.41752929687493,-54.908886718749976],[-70.28305664062498,-55.065917968749986],[-70.29785156249997,-55.113769531249964],[-70.40415039062493,-55.165625],[-70.47558593749994,-55.17705078124998],[-70.54345703125,-55.16132812499997],[-70.53872070312502,-55.134960937500026],[-70.55107421874996,-55.111914062500034],[-70.59746093749997,-55.082031249999986],[-70.64091796874996,-55.08486328125002],[-70.71098632812493,-55.10693359375],[-70.74443359375002,-55.104199218749976],[-70.81547851562502,-55.079882812499996],[-70.93984374999994,-55.06191406249997],[-70.964501953125,-55.03964843749997],[-70.96728515625003,-55.006835937500036],[-70.99072265625,-54.99042968749997],[-71.12036132812494,-54.937792968749996],[-71.20332031249998,-54.892968750000016],[-71.27363281249998,-54.886914062500026],[-71.29931640625,-54.89228515624997],[-71.32534179687497,-54.91376953124999],[-71.38857421874997,-54.93427734375],[-71.406640625,-54.93085937500001],[-71.42690429687497,-54.91376953124999],[-71.43720703125001,-54.88925781249997],[-71.410546875,-54.83935546875002],[-71.37426757812497,-54.83457031250002],[-71.19707031249993,-54.84443359374999],[-71.08862304687497,-54.86748046874997],[-70.9916015625,-54.86796874999999]]],[[[-71.390478515625,-54.03281250000002],[-71.16875,-54.11259765625002],[-71.02192382812495,-54.111816406250036],[-71.02285156249997,-54.16171875],[-71.00488281249994,-54.24667968749997],[-71.02802734374995,-54.28115234374999],[-71.08295898437495,-54.316308593749945],[-71.11752929687498,-54.366308593750006],[-71.14326171874998,-54.374023437499986],[-71.30463867187501,-54.31357421875002],[-71.473291015625,-54.23115234375001],[-71.55810546874994,-54.24560546875003],[-71.67060546874995,-54.225390625],[-71.76123046874994,-54.22978515625],[-71.81757812499995,-54.27646484375],[-71.94853515624999,-54.300878906250006],[-71.97236328124998,-54.207226562500026],[-72.091552734375,-54.11875],[-72.21044921874997,-54.04775390624995],[-72.14604492187502,-53.93886718749997],[-72.06894531249999,-53.92128906249994],[-71.996484375,-53.88486328124998],[-71.70512695312496,-53.92333984375001],[-71.55415039062495,-53.956054687500014],[-71.390478515625,-54.03281250000002]]],[[[-72.92324218749997,-53.481640625],[-72.89628906249999,-53.56279296875001],[-72.88222656249997,-53.578320312499976],[-72.809375,-53.56533203124999],[-72.68549804687495,-53.55791015624998],[-72.48227539062503,-53.58808593750001],[-72.45922851562494,-53.598828124999976],[-72.37290039062503,-53.6875],[-72.30668945312496,-53.725390625],[-72.20541992187503,-53.80742187500002],[-72.30625,-53.86210937499997],[-72.36596679687493,-53.940820312500016],[-72.36914062499997,-53.98076171874998],[-72.408544921875,-54.00380859374997],[-72.47050781249993,-54.02773437499995],[-72.56289062500002,-54.07373046875001],[-72.67656249999999,-54.07890625],[-72.78862304687499,-54.103125],[-72.84038085937496,-54.12509765624999],[-72.87099609375,-54.12656250000002],[-72.90727539062502,-54.11464843749999],[-72.94609375000002,-54.09208984375002],[-72.95859374999998,-54.065917968750014],[-72.88173828124997,-54.04160156250003],[-72.78168945312501,-53.95478515625002],[-72.76376953124999,-53.864843749999984],[-72.87172851562497,-53.84853515624996],[-72.93613281250003,-53.86083984374997],[-72.98422851562498,-53.860546875],[-73.03945312499994,-53.83281250000004],[-73.07304687499993,-53.87529296874999],[-73.085546875,-53.91591796875001],[-73.07084960937493,-53.97802734374996],[-73.08076171875001,-53.99804687499995],[-73.119970703125,-54.009375],[-73.21064453125001,-53.98583984374995],[-73.30473632812499,-53.943945312500034],[-73.312158203125,-53.919628906249955],[-73.29287109374997,-53.835839843749945],[-73.29492187500003,-53.792089843750006],[-73.31435546875,-53.72919921874998],[-73.32480468749998,-53.72265624999998],[-73.36010742187497,-53.724023437499994],[-73.470947265625,-53.73613281249997],[-73.581640625,-53.65546874999997],[-73.64150390625002,-53.57031250000003],[-73.845458984375,-53.54580078125001],[-73.68652343749997,-53.42685546875003],[-73.44707031249993,-53.41005859374998],[-73.365869140625,-53.47021484374998],[-73.09936523437497,-53.51191406250003],[-73.11533203125003,-53.44804687499999],[-73.11088867187502,-53.425195312499945],[-73.07431640625003,-53.39677734375002],[-73.05361328125,-53.39443359374999],[-73.02207031249993,-53.41455078125001],[-72.97094726562503,-53.42304687500005],[-72.947265625,-53.442480468750006],[-72.92324218749997,-53.481640625]]],[[[-74.38574218749994,-52.92236328125001],[-74.36933593749998,-52.931445312499996],[-74.32998046874997,-52.929296875],[-74.27460937499995,-52.94550781250002],[-74.06596679687499,-52.96533203124997],[-73.87919921874996,-53.012207031250014],[-73.78178710937502,-53.05605468749998],[-73.65400390624998,-53.06982421875002],[-73.54926757812498,-53.12568359375004],[-73.50454101562502,-53.140039062499945],[-73.45058593749994,-53.144335937500024],[-73.31035156249995,-53.24765625000001],[-73.30249023437497,-53.25947265625003],[-73.14335937499995,-53.34091796875001],[-73.13520507812498,-53.35390625],[-73.22573242187497,-53.35839843750002],[-73.409375,-53.32050781250003],[-73.50102539062502,-53.31845703124997],[-73.56728515625,-53.3068359375],[-73.5828125,-53.30019531249998],[-73.59594726562497,-53.25292968750003],[-73.61708984375002,-53.2296875],[-73.79350585937499,-53.120703125],[-73.86694335937493,-53.096875],[-73.99399414062496,-53.07578125],[-74.13857421874994,-53.09052734374998],[-74.23637695312499,-53.07646484375005],[-74.27021484374995,-53.08154296875002],[-74.414404296875,-52.994921875000045],[-74.55830078124993,-52.921875],[-74.61992187499996,-52.83476562500001],[-74.71152343749998,-52.768164062500034],[-74.71201171874996,-52.74873046874998],[-74.66997070312493,-52.73388671874998],[-74.57153320312497,-52.77128906250005],[-74.47456054687501,-52.83564453125002],[-74.42226562500002,-52.86005859375002],[-74.38574218749994,-52.92236328125001]]],[[[-69.16704101562497,-52.66757812499997],[-69.079931640625,-52.674316406250014],[-68.78979492187497,-52.576757812500034],[-68.75751953124995,-52.58203125],[-68.65922851562502,-52.631542968750004],[-68.62993164062499,-52.65263671875004],[-68.631689453125,-52.94951171875003],[-68.633447265625,-53.241894531250004],[-68.63505859374996,-53.51542968750004],[-68.63666992187495,-53.78886718749997],[-68.63823242187499,-54.05292968750003],[-68.63979492187495,-54.32402343750002],[-68.64750976562493,-54.62783203125],[-68.65322265624994,-54.85361328124999],[-68.803857421875,-54.85361328124999],[-68.84355468749997,-54.8767578125],[-69.081640625,-54.90986328124999],[-69.48627929687493,-54.85888671875],[-69.58754882812495,-54.81279296875002],[-69.72343750000002,-54.712109375000026],[-69.771826171875,-54.739160156249945],[-69.89946289062499,-54.78183593750002],[-70.03051757812497,-54.81552734374996],[-70.13808593750002,-54.81923828125001],[-70.23779296875,-54.77753906250004],[-70.25908203124999,-54.756347656249986],[-70.28173828124996,-54.751757812500024],[-70.49716796875,-54.80957031249999],[-70.73515624999999,-54.75058593749996],[-70.92470703124997,-54.71435546874996],[-71.229248046875,-54.69414062500001],[-71.44091796874996,-54.61962890625002],[-71.83154296874997,-54.62617187500002],[-71.90156249999993,-54.60156249999998],[-71.92773437500003,-54.52871093749997],[-71.90698242187497,-54.49482421874999],[-71.82343750000001,-54.47441406250001],[-71.80014648437498,-54.433984374999945],[-71.71582031250003,-54.44365234375005],[-71.606298828125,-54.49716796875003],[-71.57275390625,-54.4953125],[-71.500390625,-54.44492187500004],[-71.39340820312498,-54.40019531249999],[-71.355224609375,-54.395410156249994],[-71.15883789062497,-54.45058593749995],[-71.07993164062498,-54.444238281249994],[-70.96645507812492,-54.41953125000001],[-70.94619140625,-54.398046875],[-70.92817382812495,-54.36005859374998],[-70.89824218749999,-54.337890625],[-70.79726562500002,-54.327246093749956],[-70.69882812499995,-54.348828125],[-70.68754882812495,-54.414746093750026],[-70.70112304687498,-54.48544921875004],[-70.572998046875,-54.50439453124999],[-70.417919921875,-54.50224609374999],[-70.31098632812498,-54.52851562500002],[-70.29765624999992,-54.48554687499997],[-70.46831054687499,-54.373242187500004],[-70.53999023437501,-54.30341796874999],[-70.63613281249995,-54.26230468749996],[-70.75986328124995,-54.24130859375004],[-70.86308593749993,-54.11044921875003],[-70.85673828124996,-53.995800781250026],[-70.86772460937499,-53.88417968750002],[-70.64448242187498,-53.82285156249996],[-70.69560546875,-53.72744140624998],[-70.61875,-53.65507812499998],[-70.53129882812502,-53.627343750000016],[-70.44316406250002,-53.89345703124996],[-70.37973632812495,-53.98671874999995],[-70.460546875,-54.005664062499996],[-70.62983398437493,-54.005566406249976],[-70.53530273437494,-54.136132812500016],[-70.37998046875,-54.18066406250003],[-70.24609375,-54.27744140625003],[-70.24335937499998,-54.347656250000036],[-70.16899414062502,-54.37929687499999],[-69.99013671874998,-54.38134765624997],[-69.86699218749996,-54.36748046874999],[-69.80908203124997,-54.32080078124998],[-69.74184570312494,-54.30585937500005],[-69.62167968749998,-54.3640625],[-69.41928710937495,-54.40712890624998],[-69.36479492187496,-54.43759765624996],[-69.32509765624997,-54.48818359374997],[-69.32246093749995,-54.542675781249976],[-69.31206054687496,-54.57148437499998],[-69.25317382812494,-54.557421875000045],[-69.16918945312499,-54.48330078124995],[-69.12788085937501,-54.457617187499956],[-69.07724609375,-54.44501953124997],[-69.04521484374996,-54.42841796874996],[-69.04433593749997,-54.406738281249986],[-69.19565429687493,-54.35439453124999],[-69.98813476562503,-54.109082031250004],[-70.085595703125,-54.011132812499945],[-70.15112304687503,-53.88808593750002],[-70.148828125,-53.7611328125],[-70.09111328124996,-53.72177734374998],[-69.94970703125003,-53.67158203124996],[-69.68974609374999,-53.60087890625004],[-69.38994140625002,-53.49941406249997],[-69.35244140625002,-53.479980468750014],[-69.35595703125003,-53.41630859375001],[-69.39355468749994,-53.3734375],[-69.51254882812495,-53.34199218749997],[-69.63701171874997,-53.33408203125004],[-69.755615234375,-53.33720703124996],[-69.87412109374998,-53.35048828125],[-70.09038085937499,-53.41816406250003],[-70.21284179687498,-53.41396484374997],[-70.32929687499998,-53.37763671875003],[-70.415673828125,-53.30478515625002],[-70.46025390624993,-53.20625],[-70.45996093749996,-53.143359375],[-70.44335937499994,-53.085546875000034],[-70.39067382812496,-53.02646484374999],[-70.32001953124995,-53.000683593749976],[-70.25634765624996,-53.00410156249996],[-70.19648437499993,-52.99023437499997],[-70.16088867187497,-52.96992187500002],[-70.130615234375,-52.94277343749999],[-70.13955078124997,-52.919335937500016],[-70.16274414062498,-52.89902343749996],[-70.2591796875,-52.857226562499974],[-70.29736328124997,-52.816992187500034],[-70.38012695312494,-52.751953125000014],[-70.33491210937498,-52.73378906249996],[-70.18964843749995,-52.72363281250002],[-70.088232421875,-52.76855468750002],[-69.99355468749997,-52.82128906250002],[-69.93544921874997,-52.82109374999998],[-69.88320312499997,-52.79902343750002],[-69.76357421875002,-52.73134765624999],[-69.66328124999993,-52.64628906249999],[-69.571875,-52.549316406250036],[-69.498388671875,-52.49140624999996],[-69.41406249999997,-52.48623046874997],[-69.16704101562497,-52.66757812499997]]],[[[-74.14218749999998,-51.931054687500016],[-74.17207031249993,-51.94208984374996],[-74.28310546875,-51.91875],[-74.33867187499996,-51.89794921875002],[-74.42363281249993,-51.845117187500016],[-74.437109375,-51.790625],[-74.47539062499999,-51.72568359375002],[-74.45078124999995,-51.72490234375004],[-74.36210937500002,-51.75068359375005],[-74.32568359374997,-51.77021484375003],[-74.27705078125001,-51.81162109375002],[-74.13339843749995,-51.870898437500024],[-74.11542968749995,-51.88847656250005],[-74.11889648437503,-51.911132812499964],[-74.14218749999998,-51.931054687500016]]],[[[-74.82294921874993,-51.63017578125001],[-74.780126953125,-51.82470703125003],[-74.74951171874997,-51.85185546875005],[-74.64746093749997,-51.86621093749996],[-74.53681640624998,-51.96513671875004],[-74.53183593749995,-51.9919921875],[-74.66596679687501,-52.16005859374996],[-74.69448242187497,-52.27919921874999],[-74.85180664062494,-52.270703125000026],[-74.91772460937496,-52.152246093749966],[-75.01713867187496,-52.03789062500003],[-75.05068359374997,-51.90390625],[-75.10537109374998,-51.78886718750001],[-75.00810546874999,-51.72373046874998],[-74.915185546875,-51.73828125],[-74.90966796875,-51.65],[-74.82294921874993,-51.63017578125001]]],[[[-74.55864257812499,-51.27705078125001],[-74.560888671875,-51.36083984375003],[-74.59257812499999,-51.3875],[-74.62036132812496,-51.395703125000026],[-74.69072265624999,-51.37021484374998],[-74.73090820312501,-51.36738281250003],[-74.79736328124997,-51.41171875],[-74.85332031249999,-51.43417968749996],[-74.936669921875,-51.42832031250001],[-75.04736328125,-51.39833984375002],[-75.14628906249999,-51.52431640625003],[-75.19243164062499,-51.566699218750045],[-75.28911132812496,-51.625390625000016],[-75.30004882812497,-51.5564453125],[-75.23847656249995,-51.45351562499999],[-75.21000976562502,-51.38330078124998],[-75.15366210937498,-51.27880859375001],[-75.04033203124999,-51.31816406250004],[-74.88144531250002,-51.279492187499976],[-74.73666992187503,-51.20761718749999],[-74.61157226562494,-51.20712890624998],[-74.57050781249993,-51.24541015625005],[-74.55864257812499,-51.27705078125001]]],[[[-75.30200195312499,-50.67998046875005],[-75.33046874999992,-50.77236328124996],[-75.411376953125,-50.764355468750004],[-75.43852539062502,-50.74111328124999],[-75.45263671874996,-50.68251953124995],[-75.47739257812503,-50.65419921874995],[-75.44267578124999,-50.59550781249999],[-75.419775390625,-50.53037109375004],[-75.42763671875002,-50.48056640625002],[-75.3037109375,-50.483984375],[-75.15615234374997,-50.49677734375003],[-75.11533203124998,-50.51044921874997],[-75.16044921874993,-50.55439453125005],[-75.20341796874999,-50.58066406249998],[-75.29233398437498,-50.596875],[-75.30200195312499,-50.67998046875005]]],[[[-75.05478515625,-50.29609375],[-75.25039062499997,-50.376269531249996],[-75.30786132812494,-50.34306640624998],[-75.44912109374997,-50.34335937500004],[-75.41210937499997,-50.25664062500005],[-75.3978515625,-50.19267578124999],[-75.37670898437494,-50.167968750000014],[-75.36884765624995,-50.112695312499945],[-75.32666015624997,-50.01181640625],[-75.20966796874993,-50.04541015625001],[-75.12255859374994,-50.05527343749997],[-75.004248046875,-50.08867187500002],[-74.8759765625,-50.10996093750001],[-74.83857421875001,-50.19726562500003],[-74.96337890625003,-50.237304687500014],[-75.05478515625,-50.29609375]]],[[[-75.106689453125,-48.83652343750001],[-75.11508789062503,-48.91601562499995],[-75.2626953125,-49.06894531250003],[-75.38994140624999,-49.159179687500014],[-75.50610351562503,-49.23066406250001],[-75.58037109374996,-49.22998046874997],[-75.64116210937499,-49.195410156250034],[-75.57285156250003,-49.13886718749997],[-75.48764648437498,-49.082421875000016],[-75.51455078124995,-49.00957031250001],[-75.54013671875003,-48.988476562499976],[-75.576171875,-48.980761718749996],[-75.63784179687494,-48.94257812500003],[-75.61914062499994,-48.88593750000005],[-75.58310546874998,-48.85888671874994],[-75.53525390624999,-48.838183593749996],[-75.49047851562493,-48.85048828125001],[-75.29726562500002,-48.810644531249984],[-75.236181640625,-48.77861328125003],[-75.11860351562495,-48.77294921875003],[-75.106689453125,-48.83652343750001]]],[[[-74.47617187499998,-49.14785156250002],[-74.46679687500003,-49.29453124999998],[-74.48359374999998,-49.44189453124998],[-74.5220703125,-49.62294921875],[-74.51577148437497,-49.6595703125],[-74.47084960937497,-49.66855468749997],[-74.458837890625,-49.69111328125003],[-74.47197265625,-49.78623046874996],[-74.49609374999994,-49.85947265624996],[-74.542578125,-49.91914062500004],[-74.56982421874997,-49.99072265624996],[-74.59472656249997,-50.00664062500001],[-74.703369140625,-50.019238281250004],[-74.76298828124996,-50.011425781250004],[-74.81083984374996,-49.929687499999964],[-74.82470703125003,-49.879492187500034],[-74.821923828125,-49.813867187499994],[-74.88041992187502,-49.72587890625001],[-74.88222656250002,-49.69218749999999],[-74.85932617187497,-49.63417968749998],[-74.81201171875,-49.605273437500045],[-74.80483398437497,-49.51601562499998],[-74.781005859375,-49.489257812500036],[-74.72705078125003,-49.452343749999976],[-74.71884765624995,-49.43701171874996],[-74.72382812499998,-49.42382812500002],[-74.74384765624998,-49.42246093750001],[-74.960107421875,-49.533007812499974],[-74.98129882812495,-49.56416015625002],[-74.99082031250003,-49.605664062500026],[-74.99350585937495,-49.751757812500045],[-75.03154296874996,-49.836230468750024],[-75.06601562499998,-49.85234375000002],[-75.16694335937491,-49.85595703124996],[-75.30009765624996,-49.8474609375],[-75.45117187500003,-49.769921875000016],[-75.54980468749994,-49.79130859375002],[-75.57011718750002,-49.697070312499996],[-75.52075195312497,-49.62167968750001],[-75.33706054687497,-49.62822265625001],[-75.30585937499998,-49.49404296875003],[-75.36420898437498,-49.4625],[-75.428857421875,-49.40839843749999],[-75.46748046874995,-49.35888671875003],[-75.43315429687499,-49.32207031249999],[-75.32666015624997,-49.268652343750034],[-75.26962890624998,-49.26289062500001],[-75.21684570312499,-49.29277343749997],[-75.08603515624998,-49.27021484375],[-75.09370117187491,-49.185351562500024],[-75.21015624999995,-49.14804687499998],[-75.18422851562498,-49.083593749999984],[-75.03710937499994,-49.02207031249998],[-74.94921875,-48.96015624999997],[-74.94521484374995,-48.889453125000045],[-74.98076171875,-48.81884765624996],[-74.96953125,-48.79130859375004],[-74.89624023437501,-48.73320312500002],[-74.79345703124997,-48.705078124999964],[-74.74667968750003,-48.708886718749945],[-74.65156250000001,-48.74990234374995],[-74.56660156249991,-48.754785156249966],[-74.54609374999991,-48.76689453125004],[-74.5306640625,-48.81259765625003],[-74.47617187499998,-49.14785156250002]]],[[[-75.51025390624997,-48.76347656250005],[-75.62285156249999,-48.76464843750003],[-75.65092773437496,-48.58632812500002],[-75.51845703124997,-48.32880859374997],[-75.509033203125,-48.23066406250004],[-75.55351562499997,-48.156738281249986],[-75.57148437499993,-48.095898437500026],[-75.56069335937494,-48.070898437500006],[-75.39140625000002,-48.01972656249996],[-75.33837890624994,-48.07402343750002],[-75.27548828125003,-48.21845703125004],[-75.155517578125,-48.425195312499966],[-75.15849609374999,-48.62265624999996],[-75.22509765624997,-48.671386718750036],[-75.433984375,-48.721191406249964],[-75.51025390624997,-48.76347656250005]]],[[[-74.56728515625,-48.591992187500026],[-74.58627929687503,-48.61572265624997],[-74.7095703125,-48.60117187500003],[-74.92304687499998,-48.62646484375002],[-75.012841796875,-48.53574218750002],[-75.0521484375,-48.39140625000001],[-75.07890624999992,-48.36152343749996],[-75.13193359375,-48.279296875],[-75.15849609374999,-48.22529296875001],[-75.21289062499997,-48.14169921875003],[-75.23388671874997,-48.05341796874999],[-75.24726562499995,-48.02675781249998],[-75.19829101562502,-47.974609375000014],[-74.97509765625003,-47.92285156250004],[-74.895654296875,-47.839355468749986],[-74.82744140624996,-47.85039062500002],[-74.84619140624997,-48.02080078125],[-74.80522460937496,-48.07822265624998],[-74.72929687499996,-48.12587890625001],[-74.71523437500002,-48.145507812500014],[-74.70239257812497,-48.20585937500004],[-74.66435546874996,-48.29931640624999],[-74.61513671874997,-48.34306640625003],[-74.60244140624994,-48.37031249999998],[-74.60014648437502,-48.39306640624999],[-74.61821289062495,-48.425195312499966],[-74.56728515625,-48.591992187500026]]],[[[-75.11220703124995,-47.8376953125],[-75.18583984374996,-47.85068359374999],[-75.1943359375,-47.81806640625001],[-75.26103515625002,-47.76386718749998],[-75.203125,-47.72802734374996],[-75.08984374999994,-47.690625],[-75.00395507812496,-47.69472656250001],[-74.92646484374998,-47.72314453125003],[-74.91601562499997,-47.75664062500002],[-75.05126953125,-47.80048828124998],[-75.08447265625,-47.82451171874999],[-75.11220703124995,-47.8376953125]]],[[[-74.31289062500002,-45.69150390625002],[-74.36845703124999,-45.73583984375],[-74.46552734374995,-45.757226562499994],[-74.56162109374998,-45.72246093750001],[-74.677734375,-45.73857421875002],[-74.68984375,-45.66259765625],[-74.64643554687495,-45.6],[-74.55839843749996,-45.52558593749996],[-74.49467773437493,-45.42587890624999],[-74.50234375,-45.28515625],[-74.45,-45.25292968750003],[-74.421875,-45.20322265625002],[-74.310546875,-45.17265625000002],[-74.28540039062503,-45.27724609375001],[-74.31542968749999,-45.46406250000005],[-74.24003906250002,-45.57451171874999],[-74.22919921874993,-45.61132812500003],[-74.243896484375,-45.65361328125003],[-74.31289062500002,-45.69150390625002]]],[[[-75.04248046874996,-44.890136718750014],[-75.06748046875,-44.90654296874997],[-75.09873046874998,-44.90175781249998],[-75.12421874999993,-44.869921874999974],[-75.14213867187493,-44.815625],[-75.10742187499997,-44.79511718750001],[-75.07949218749997,-44.79511718750001],[-75.04843749999995,-44.823925781250026],[-75.03222656250001,-44.87050781250001],[-75.04248046874996,-44.890136718750014]]],[[[-73.63217773437498,-44.82148437499997],[-73.66484374999999,-44.83291015624997],[-73.69458007812499,-44.83115234374997],[-73.72475585937502,-44.796875],[-73.73486328124994,-44.75166015625004],[-73.800146484375,-44.68408203124995],[-73.81845703125,-44.65214843750002],[-73.81699218749998,-44.61396484374997],[-73.77949218749998,-44.55917968749999],[-73.72392578124993,-44.544238281249974],[-73.68647460937495,-44.546289062499945],[-73.64121093749998,-44.61083984374995],[-73.62822265624999,-44.680761718749984],[-73.61660156250002,-44.75292968750003],[-73.63217773437498,-44.82148437499997]]],[[[-72.98613281249999,-44.780078124999974],[-73.22846679687498,-44.85996093749999],[-73.35,-44.83320312500004],[-73.39707031249996,-44.77431640624995],[-73.42006835937494,-44.724804687499976],[-73.44506835937497,-44.641015624999966],[-73.40366210937498,-44.59609374999996],[-73.31494140625001,-44.531347656250006],[-73.28198242187497,-44.48955078125002],[-73.266015625,-44.44023437500002],[-73.27158203124998,-44.394140625000034],[-73.26000976562501,-44.35029296874998],[-73.20771484374993,-44.33496093749997],[-73.02841796875,-44.38408203125003],[-72.84243164062494,-44.457714843750026],[-72.7763671875,-44.50859374999999],[-72.76406249999997,-44.54902343749997],[-72.8453125,-44.63847656249998],[-72.89716796874998,-44.71201171874996],[-72.98613281249999,-44.780078124999974]]],[[[-73.73535156249996,-44.39453125000002],[-73.78457031249994,-44.4375],[-73.86230468749997,-44.44511718750003],[-73.98330078125002,-44.494824218750026],[-73.99604492187495,-44.53798828125003],[-74.00205078125002,-44.59091796874998],[-73.91855468749996,-44.6546875],[-73.87739257812495,-44.72880859375],[-73.82788085937497,-44.83984374999997],[-73.792138671875,-44.945800781249986],[-73.79536132812493,-44.97861328125],[-73.78647460937498,-45.03359375],[-73.72714843749998,-45.11904296875001],[-73.72167968750003,-45.157617187499966],[-73.728173828125,-45.195898437500034],[-73.752099609375,-45.26679687500001],[-73.77099609375003,-45.27656250000004],[-73.82988281249993,-45.283496093750024],[-73.83447265625,-45.3265625],[-73.84897460937499,-45.340625],[-74.016259765625,-45.344921875000026],[-74.09907226562498,-45.32539062500004],[-74.08925781249994,-45.19570312499999],[-74.19521484374994,-45.14482421875003],[-74.26796875000002,-45.058984374999945],[-74.34990234375002,-44.91083984374997],[-74.41875,-44.865234375],[-74.49882812499999,-44.748144531250034],[-74.61777343749998,-44.64794921874996],[-74.48051757812499,-44.58457031250002],[-74.50180664062498,-44.47353515624995],[-74.42167968749999,-44.43544921875001],[-74.30122070312495,-44.395703125],[-74.2125,-44.42695312499996],[-74.13281250000003,-44.41591796875004],[-74.09721679687496,-44.38935546875003],[-74.10810546874995,-44.275878906250014],[-74.0828125,-44.186425781249994],[-73.99492187499999,-44.140234375],[-73.90019531249996,-44.13486328124998],[-73.86455078124999,-44.18535156250004],[-73.81777343749995,-44.23496093750002],[-73.70322265624998,-44.27412109375001],[-73.7037109375,-44.32539062499997],[-73.73535156249996,-44.39453125000002]]],[[[-73.81064453125003,-43.827246093750006],[-73.7896484375,-43.87646484374999],[-73.833642578125,-43.883203124999945],[-73.90415039062498,-43.87539062499995],[-73.93828124999999,-43.91425781249997],[-73.95566406249998,-43.921972656250034],[-74.11777343749998,-43.8875],[-74.14296874999997,-43.872167968750006],[-74.13994140624996,-43.82099609374998],[-73.96718749999994,-43.816503906250034],[-73.85693359374994,-43.783789062500034],[-73.84140624999998,-43.78896484375002],[-73.81064453125003,-43.827246093750006]]],[[[-74.66875,-43.6078125],[-74.81044921874997,-43.625390625],[-74.84267578124997,-43.595507812500045],[-74.84199218749998,-43.57031249999997],[-74.81767578125002,-43.54941406249998],[-74.74501953124997,-43.53593749999999],[-74.69746093749995,-43.553027343749996],[-74.67265625,-43.57744140625],[-74.66479492187494,-43.599609375],[-74.66875,-43.6078125]]],[[[-73.77338867187498,-43.3458984375],[-73.84858398437493,-43.36679687499999],[-73.91870117187499,-43.37197265624998],[-73.98994140624995,-43.35664062499997],[-74.114404296875,-43.35791015624995],[-74.23857421874997,-43.31884765625],[-74.35493164062498,-43.26357421875001],[-74.387353515625,-43.23164062499999],[-74.37314453124995,-43.18574218749997],[-74.28935546874993,-43.079492187499994],[-74.20947265625,-42.87871093750003],[-74.156298828125,-42.590527343750026],[-74.19882812499998,-42.481347656249994],[-74.19355468749995,-42.43603515625],[-74.174072265625,-42.38154296875],[-74.16435546874995,-42.32548828125003],[-74.17031250000002,-42.26894531249997],[-74.16020507812502,-42.21640625000002],[-74.07231445312496,-42.105859374999966],[-74.059375,-42.05625],[-74.05683593749998,-42.00234375000002],[-74.01879882812497,-41.89091796875006],[-74.03051757812497,-41.85400390624999],[-74.06303710937502,-41.82275390625003],[-74.03666992187496,-41.79550781249998],[-73.73095703124993,-41.87724609375002],[-73.52783203124997,-41.89628906249999],[-73.51694335937495,-41.98085937499999],[-73.47778320312497,-42.04716796875],[-73.45449218749994,-42.165917968749945],[-73.42290039062499,-42.192871093750014],[-73.43925781249993,-42.277832031250014],[-73.5328125,-42.314453125000014],[-73.524560546875,-42.39257812500002],[-73.47080078124998,-42.466308593750036],[-73.54926757812498,-42.492578124999966],[-73.63388671874996,-42.50820312499995],[-73.65346679687497,-42.528710937499966],[-73.71474609375002,-42.54472656250003],[-73.78925781249993,-42.58574218750003],[-73.76684570312497,-42.621875],[-73.67304687499995,-42.704394531250045],[-73.56826171875002,-42.76162109374998],[-73.51074218750003,-42.84716796875],[-73.43632812499996,-42.9365234375],[-73.47265624999999,-42.993261718750006],[-73.54082031249993,-43.07373046874997],[-73.64960937499998,-43.12714843750002],[-73.74965820312494,-43.15908203124995],[-73.73789062500003,-43.29140625],[-73.77338867187498,-43.3458984375]]],[[[-78.80415039062501,-33.646484374999986],[-78.98334960937493,-33.667773437499974],[-78.98945312499993,-33.66171874999998],[-78.97929687499999,-33.64414062500004],[-78.93813476562497,-33.61357421875003],[-78.88828125,-33.5763671875],[-78.87744140625003,-33.57519531250003],[-78.859033203125,-33.578125],[-78.83818359375,-33.58505859374999],[-78.78466796874994,-33.61015624999995],[-78.76894531249994,-33.62734375],[-78.77470703124996,-33.64160156249997],[-78.80415039062501,-33.646484374999986]]],[[[-109.27998046874994,-27.140429687499957],[-109.434130859375,-27.17128906250002],[-109.42915039062494,-27.1162109375],[-109.39047851562499,-27.06835937500001],[-109.27646484374993,-27.09589843750004],[-109.22285156249994,-27.10107421875003],[-109.27998046874994,-27.140429687499957]]],[[[-67.70732421874996,-22.889160156250014],[-67.57993164062495,-22.89169921874999],[-67.36225585937493,-22.85517578125001],[-67.19487304687493,-22.821679687500037],[-67.00878906249994,-23.00136718750005],[-67.08974609375002,-23.24511718749997],[-67.219140625,-23.63398437499997],[-67.31914062499993,-23.93466796875002],[-67.33559570312498,-23.974804687500026],[-67.35620117187501,-24.033789062499963],[-67.57177734374997,-24.118945312500003],[-67.88623046875,-24.243359375000022],[-68.04736328124997,-24.308300781250026],[-68.25029296875002,-24.391992187500023],[-68.29951171875001,-24.46035156250001],[-68.35810546874995,-24.497265624999983],[-68.42255859374993,-24.54511718750004],[-68.44711914062498,-24.596972656250045],[-68.50727539062495,-24.629785156249977],[-68.56201171875,-24.74736328125003],[-68.56201171875,-24.83769531249996],[-68.52705078124998,-24.899218749999974],[-68.46630859374997,-24.925195312500023],[-68.44711914062498,-24.998925781250037],[-68.42802734374999,-25.050976562499983],[-68.38422851562495,-25.091894531249977],[-68.39521484374994,-25.124707031249997],[-68.43071289062499,-25.149316406250037],[-68.49633789062494,-25.16298828124998],[-68.54082031249996,-25.23671875],[-68.59208984375002,-25.420019531250034],[-68.60029296874998,-25.48564453124999],[-68.54189453125,-25.651562500000036],[-68.51083984374998,-25.74101562499996],[-68.4267578125,-26.06542968749997],[-68.41450195312498,-26.15371093750002],[-68.52983398437493,-26.27695312499999],[-68.57578124999998,-26.35195312499999],[-68.59218749999994,-26.418066406249963],[-68.59160156249999,-26.47041015624997],[-68.58115234375,-26.518359374999974],[-68.48510742187497,-26.670312500000023],[-68.37333984374993,-26.806445312500045],[-68.31865234374999,-26.877539062499963],[-68.31865234374999,-26.973242187500006],[-68.34599609374996,-27.02792968750005],[-68.40537109374998,-27.04814453124999],[-68.53735351562497,-27.085351562500023],[-68.59208984375002,-27.140039062499966],[-68.652197265625,-27.148339843749966],[-68.70961914062497,-27.104492187500014],[-68.76977539062497,-27.11542968750001],[-68.84633789062494,-27.153710937499994],[-68.87509765625003,-27.24667968750002],[-68.94199218749998,-27.405175781249977],[-68.99941406249994,-27.44902343750003],[-69.04218749999995,-27.570019531249997],[-69.11850585937498,-27.743554687499994],[-69.1552734375,-27.848144531249986],[-69.17441406249998,-27.924707031250037],[-69.251220703125,-27.97363281249997],[-69.34072265624992,-28.070800781249957],[-69.40957031250001,-28.16533203125003],[-69.43691406249998,-28.192675781250014],[-69.4888671875,-28.200878906249997],[-69.52714843749999,-28.28564453125003],[-69.65693359374995,-28.413574218749982],[-69.68789062499997,-28.56201171875003],[-69.73491210937496,-28.641113281249968],[-69.74316406249993,-28.783886718750022],[-69.81484375,-29.045507812500034],[-69.82788085937496,-29.10322265624997],[-69.90034179687498,-29.148828125000026],[-69.99560546874994,-29.25],[-70.026806640625,-29.324023437500014],[-69.98261718749998,-29.54541015625],[-69.92763671874997,-29.76914062500002],[-69.92412109374996,-29.874023437499968],[-69.94545898437494,-30.016406250000028],[-69.95996093749997,-30.07832031250003],[-69.92353515625001,-30.10390625],[-69.86337890625,-30.120312499999965],[-69.84428710937493,-30.175],[-69.88803710937498,-30.21328125],[-69.90712890624997,-30.28164062499998],[-69.95634765624996,-30.358203125000028],[-70.10200195312495,-30.388281250000034],[-70.15322265625,-30.36093749999996],[-70.16962890624995,-30.385546875],[-70.16142578124999,-30.440234374999957],[-70.19394531250002,-30.504687500000028],[-70.26938476562495,-30.67724609375001],[-70.31923828125,-30.83398437499997],[-70.34814453124999,-30.902343749999957],[-70.33642578125003,-30.959765625000017],[-70.31181640624999,-30.992578125000037],[-70.30908203124994,-31.022656250000043],[-70.35058593749997,-31.06044921875001],[-70.38837890624995,-31.121093750000014],[-70.42939453124995,-31.129296875],[-70.47309570312498,-31.11279296875001],[-70.51958007812493,-31.1484375],[-70.529052734375,-31.222851562499965],[-70.5546875,-31.317382812499957],[-70.56640624999996,-31.427929687499997],[-70.585205078125,-31.56943359374996],[-70.52563476562503,-31.66640625],[-70.45014648437501,-31.84189453124996],[-70.39384765624997,-31.883789062499968],[-70.33095703124995,-31.881054687500036],[-70.28173828124996,-31.916601562499995],[-70.25439453124999,-31.957714843750022],[-70.29091796875,-32.031054687500045],[-70.35556640625,-32.04238281250004],[-70.36376953125,-32.08349609374997],[-70.34462890625,-32.17646484375],[-70.32001953124995,-32.26669921874999],[-70.2578125,-32.30996093750002],[-70.22978515624996,-32.4306640625],[-70.16962890624995,-32.471679687500014],[-70.17695312499995,-32.62607421875001],[-70.11616210937501,-32.80742187500002],[-70.05205078124997,-32.85996093749998],[-70.02197265625,-32.88457031250002],[-70.04213867187502,-32.96367187499997],[-70.09306640624999,-33.02675781250003],[-70.10400390625,-33.127929687500036],[-70.08486328125002,-33.20175781249998],[-70.01982421874999,-33.27148437499997],[-69.96904296874996,-33.27939453124999],[-69.89619140624995,-33.25097656249997],[-69.81962890624999,-33.28378906249999],[-69.80869140624998,-33.3439453125],[-69.79775390624997,-33.398632812500026],[-69.83876953124997,-33.46972656250004],[-69.88256835937503,-33.60097656250004],[-69.89433593750002,-33.73134765625005],[-69.88149414062497,-33.92978515624998],[-69.86152343749998,-34.08359375000005],[-69.85737304687494,-34.180468749999974],[-69.85244140625,-34.22431640625002],[-69.87978515625,-34.25439453125003],[-69.94633789062496,-34.26992187499999],[-70.00283203125,-34.27626953125004],[-70.05205078124997,-34.300781249999964],[-70.06298828125,-34.35],[-70.10146484375002,-34.43203125],[-70.14125976562497,-34.492871093750026],[-70.21069335937497,-34.58125],[-70.25468749999999,-34.672656249999974],[-70.28994140624997,-34.732812499999966],[-70.28676757812494,-34.77451171875002],[-70.31210937499995,-34.854980468749986],[-70.338134765625,-34.92177734375001],[-70.39316406250003,-35.146875],[-70.46660156249999,-35.19365234374997],[-70.52509765625001,-35.216796874999986],[-70.55517578125,-35.246875],[-70.53232421874995,-35.307910156249974],[-70.47041015624995,-35.32617187499997],[-70.44853515624993,-35.37539062499996],[-70.45673828124993,-35.45195312500002],[-70.41572265625001,-35.52304687500002],[-70.41972656249993,-35.60917968749999],[-70.38017578124996,-35.771875],[-70.41572265625001,-35.878515624999956],[-70.40366210937495,-35.97050781249996],[-70.40478515625,-36.06171874999998],[-70.45673828124993,-36.132714843749966],[-70.56337890625,-36.14638671875001],[-70.621875,-36.21191406250003],[-70.72192382812493,-36.283203124999986],[-70.73286132812495,-36.340625],[-70.74926757812501,-36.39257812499997],[-70.79028320312503,-36.41171874999996],[-70.85317382812495,-36.41171874999996],[-70.90512695312498,-36.41992187499996],[-70.97792968749997,-36.4873046875],[-71.05551757812498,-36.52373046874996],[-71.07324218750003,-36.57802734375001],[-71.06640624999997,-36.64404296874996],[-71.10742187499997,-36.685058593749964],[-71.159375,-36.76162109375002],[-71.19218750000002,-36.84365234375003],[-71.159375,-36.92021484375],[-71.12382812499993,-37.05693359374996],[-71.118408203125,-37.114355468750034],[-71.16347656250002,-37.22744140624998],[-71.20039062499998,-37.300292968749986],[-71.16489257812495,-37.39326171875001],[-71.13481445312496,-37.4451171875],[-71.16284179687497,-37.559179687499956],[-71.18671874999995,-37.63105468750004],[-71.16757812499998,-37.76230468749996],[-71.09619140625,-37.90996093750002],[-71.02817382812499,-38.041210937500026],[-71.0181640625,-38.19394531249996],[-71.00048828124994,-38.31484375],[-70.96796874999998,-38.44589843749996],[-70.899658203125,-38.49785156249997],[-70.84765625,-38.541601562500006],[-70.858642578125,-38.60449218750003],[-70.89692382812497,-38.681054687499994],[-70.95161132812491,-38.73847656249996],[-71.08710937500001,-38.757519531250026],[-71.19726562499997,-38.809375],[-71.28574218749998,-38.84541015624999],[-71.35317382812494,-38.88886718749997],[-71.40156249999995,-38.93505859374996],[-71.42558593749996,-38.98564453125005],[-71.409375,-39.205957031249994],[-71.42001953124998,-39.287207031250034],[-71.46538085937499,-39.402343750000036],[-71.50776367187501,-39.495214843750034],[-71.52578124999994,-39.52314453125004],[-71.53125,-39.56416015624997],[-71.53945312499997,-39.60244140624995],[-71.58701171874998,-39.61113281250003],[-71.654296875,-39.59423828124995],[-71.69257812499998,-39.60517578124997],[-71.71992187499995,-39.63525390624997],[-71.69682617187496,-39.70703125000002],[-71.67207031249997,-39.83330078124998],[-71.63789062499995,-39.88681640624997],[-71.64711914062497,-39.929199218749986],[-71.65976562499998,-40.02080078125],[-71.70439453124999,-40.094921875],[-71.763671875,-40.09462890625004],[-71.80195312499998,-40.124707031250026],[-71.81831054687491,-40.17666015624995],[-71.80058593749996,-40.24433593749998],[-71.72265625,-40.29970703124998],[-71.69531250000003,-40.33525390625003],[-71.70898437499997,-40.381738281249994],[-71.76914062499993,-40.40087890624998],[-71.80463867187498,-40.43916015624997],[-71.83852539062497,-40.524414062500014],[-71.88378906249994,-40.620605468749986],[-71.93212890624994,-40.69169921874999],[-71.94135742187495,-40.789160156250034],[-71.87304687499999,-40.892968749999966],[-71.88071289062495,-40.99462890624997],[-71.88559570312496,-41.29238281249998],[-71.89218749999998,-41.393359375000024],[-71.87114257812496,-41.560546874999986],[-71.89760742187502,-41.60664062500005],[-71.91127929687497,-41.650390624999986],[-71.84448242187503,-41.771972656249986],[-71.77001953124997,-41.968554687499974],[-71.75,-42.04677734375001],[-71.76093749999998,-42.101464843749966],[-71.86079101562498,-42.14785156249999],[-71.94409179687497,-42.167089843750006],[-71.99331054687495,-42.134277343749986],[-72.026123046875,-42.14794921875001],[-72.06440429687498,-42.20537109374999],[-72.10820312499993,-42.25185546874995],[-72.12460937499998,-42.298339843750014],[-72.078125,-42.358496093750006],[-72.05346679687497,-42.473242187500034],[-72.10541992187498,-42.522460937500014],[-72.14370117187497,-42.57714843749997],[-72.13002929687494,-42.648242187499974],[-72.11362304687498,-42.77675781249995],[-72.14643554687498,-42.990039062499974],[-72.102392578125,-43.065625],[-72.05468749999994,-43.10195312499995],[-71.89858398437494,-43.14531249999999],[-71.781494140625,-43.16679687500002],[-71.750634765625,-43.237304687499986],[-71.76386718749995,-43.29462890625003],[-71.82021484374997,-43.322949218750026],[-71.90498046875001,-43.34755859374998],[-71.90498046875001,-43.44013671875001],[-71.83242187499997,-43.52714843749997],[-71.750634765625,-43.59013671875002],[-71.732763671875,-43.64677734375002],[-71.73740234374998,-43.7046875],[-71.79472656250002,-43.75322265625003],[-71.71596679687497,-43.85839843749996],[-71.680078125,-43.92958984374998],[-71.716162109375,-43.98447265624997],[-71.7671875,-44.06669921875003],[-71.81235351562498,-44.10605468749996],[-71.812109375,-44.15078125000002],[-71.83076171874998,-44.24140625000001],[-71.83505859374998,-44.33017578124998],[-71.82001953124993,-44.383105468749996],[-71.32573242187496,-44.42490234374999],[-71.21259765624998,-44.44121093750003],[-71.15087890624994,-44.494042968749966],[-71.15971679687496,-44.56025390625004],[-71.22148437499992,-44.63076171875001],[-71.26113281250002,-44.76308593749996],[-71.35815429687497,-44.78515625000003],[-71.45517578125003,-44.74980468750002],[-71.56040039062498,-44.76201171875002],[-71.65166015625002,-44.770410156249945],[-71.78281249999998,-44.774414062499964],[-71.95703124999994,-44.791503906249986],[-72.06372070312503,-44.771875],[-72.07250976562494,-44.82041015625002],[-72.04169921874998,-44.90419921875004],[-71.81235351562498,-44.93066406249999],[-71.5962890625,-44.97919921875004],[-71.53129882812499,-45.067871093749986],[-71.44345703124995,-45.16826171875],[-71.35375976562497,-45.23046874999997],[-71.34931640624995,-45.33193359374995],[-71.49042968749993,-45.437695312500004],[-71.50810546874999,-45.512695312500014],[-71.69331054687495,-45.53476562499997],[-71.74619140624998,-45.57890625],[-71.7726562499999,-45.724414062499974],[-71.750634765625,-45.83906249999997],[-71.680078125,-45.878710937499974],[-71.63154296874998,-45.95371093749997],[-71.68447265624992,-46.04189453124999],[-71.80927734374995,-46.10273437500003],[-71.87568359374998,-46.160546875],[-71.83413085937497,-46.20673828125001],[-71.77763671874999,-46.27998046875001],[-71.76210937499994,-46.31982421874996],[-71.73129882812498,-46.42783203125001],[-71.69521484375,-46.57841796875006],[-71.69965820312501,-46.6513671875],[-71.73271484374997,-46.70585937499999],[-71.85644531249997,-46.79160156249996],[-71.94023437499999,-46.83125],[-71.95664062499998,-46.936816406249974],[-71.96298828125,-47.01601562500003],[-71.95424804687502,-47.0875],[-71.900537109375,-47.144335937499974],[-71.90498046875001,-47.201660156250014],[-71.97851562499997,-47.21386718750001],[-72.04169921874998,-47.24140625000002],[-72.10341796875002,-47.342773437499986],[-72.28291015625001,-47.44628906250003],[-72.34594726562497,-47.492675781249964],[-72.34150390624995,-47.57207031249998],[-72.41259765624994,-47.685546875000014],[-72.47221679687502,-47.78417968750003],[-72.517919921875,-47.87636718749998],[-72.50908203124999,-47.973339843750026],[-72.40791015624998,-48.01591796874999],[-72.3283203125,-48.110058593749976],[-72.29301757812502,-48.22910156249999],[-72.35473632812497,-48.36582031250005],[-72.49814453124998,-48.41738281249998],[-72.582861328125,-48.47539062499999],[-72.60839843749997,-48.51933593750006],[-72.5859375,-48.6625],[-72.59174804687495,-48.72968750000001],[-72.61440429687494,-48.79287109375],[-72.65126953125,-48.84160156249998],[-72.72846679687501,-48.896289062500024],[-72.86542968750001,-48.94394531249996],[-72.98173828124999,-48.976757812499976],[-73.03364257812501,-49.014355468750004],[-73.09458007812498,-49.096875],[-73.14887695312493,-49.18798828125003],[-73.13525390625,-49.30068359374999],[-73.46157226562497,-49.31386718750001],[-73.48364257812503,-49.397656250000026],[-73.55419921875,-49.463867187500014],[-73.57626953124998,-49.582910156250016],[-73.50454101562502,-49.698046875000024],[-73.47041015624997,-49.79453124999996],[-73.52890625,-49.91093750000005],[-73.50771484374994,-50.03027343750003],[-73.50126953124995,-50.12529296875002],[-73.38662109374997,-50.23115234375001],[-73.31171874999998,-50.361914062500006],[-73.27416992187497,-50.47255859374999],[-73.251611328125,-50.55849609374999],[-73.22163085937493,-50.61074218749998],[-73.17451171875001,-50.67001953124998],[-73.15292968749998,-50.73828125000003],[-73.08237304687498,-50.7603515625],[-72.95556640625,-50.69648437500004],[-72.86591796874993,-50.653125],[-72.80361328124994,-50.637695312499964],[-72.62041015625002,-50.64765625000004],[-72.50981445312495,-50.607519531250034],[-72.46015624999995,-50.61171875],[-72.39257812499997,-50.63427734374998],[-72.34023437499997,-50.68183593749999],[-72.30063476562496,-50.78955078124999],[-72.27631835937498,-50.910253906249984],[-72.307373046875,-51.033398437500026],[-72.35917968749997,-51.06015625],[-72.37680664062503,-51.09541015625004],[-72.35917968749997,-51.17041015624996],[-72.30185546874993,-51.22333984375],[-72.30322265624997,-51.29892578125002],[-72.36640624999995,-51.47031250000004],[-72.40766601562501,-51.54082031250002],[-72.33452148437493,-51.62031250000005],[-72.26899414062501,-51.69111328124999],[-72.13696289062503,-51.74404296875003],[-72.02841796875003,-51.81865234375004],[-71.95346679687503,-51.88037109375],[-71.97109374999997,-51.96416015625002],[-71.91865234374995,-51.98955078125004],[-71.71660156249999,-51.99130859375004],[-71.41474609374994,-51.993945312500045],[-70.94316406249999,-51.99814453125001],[-70.48286132812501,-52.00224609375005],[-69.96025390624993,-52.008203125000016],[-69.71259765624993,-52.07539062500003],[-69.48842773437502,-52.136132812499966],[-69.20620117187497,-52.136132812499966],[-68.92456054687497,-52.20810546874998],[-68.71518554687495,-52.255468750000034],[-68.58979492187498,-52.273339843749945],[-68.46098632812496,-52.29042968749996],[-68.44335937499999,-52.35664062500004],[-69.00722656249994,-52.2626953125],[-69.13378906249996,-52.211425781250036],[-69.24101562499996,-52.20546874999997],[-69.446875,-52.26943359374995],[-69.56059570312496,-52.42158203125003],[-69.62031249999995,-52.464746093749945],[-69.76333007812497,-52.50556640625],[-69.90722656249997,-52.51357421874995],[-70.39096679687503,-52.66083984375002],[-70.56293945312497,-52.67343750000001],[-70.680322265625,-52.7125],[-70.79511718749995,-52.76875],[-70.83906250000001,-52.88955078124998],[-70.82119140625002,-52.96308593750005],[-70.95205078124994,-53.22695312499998],[-70.98432617187495,-53.37363281250002],[-70.98510742187499,-53.44833984374996],[-70.94780273437496,-53.57041015624996],[-70.99584960937497,-53.77929687499997],[-71.08281249999993,-53.825],[-71.29775390625002,-53.883398437500034],[-71.44389648437496,-53.84091796875],[-71.69379882812498,-53.803125],[-71.871875,-53.72265624999998],[-72.10092773437495,-53.66582031250004],[-72.1744140625,-53.632324218749964],[-72.37680664062503,-53.47119140625],[-72.39824218749996,-53.41777343750004],[-72.412890625,-53.35019531250004],[-72.3060546875,-53.25371093750001],[-72.24863281250003,-53.2466796875],[-72.08115234375,-53.24960937499998],[-71.94169921874992,-53.23408203125001],[-71.85273437499993,-53.285742187499956],[-71.82822265625,-53.39833984374999],[-71.86733398437497,-53.45839843749996],[-71.90278320312501,-53.49550781249997],[-71.89169921874998,-53.523535156250006],[-71.79145507812498,-53.48457031249997],[-71.74052734374999,-53.23261718749997],[-71.40034179687495,-53.10703125],[-71.28896484375001,-53.03369140624995],[-71.18022460937496,-52.92050781249998],[-71.16328124999997,-52.88808593749995],[-71.15507812499999,-52.84560546875],[-71.22714843750003,-52.810644531249984],[-71.38774414062496,-52.76425781250004],[-71.89799804687502,-53.00175781250001],[-72.12910156249991,-53.06435546874998],[-72.27802734374998,-53.13232421874997],[-72.45830078124993,-53.25449218749999],[-72.492578125,-53.290625],[-72.53081054687496,-53.37167968749998],[-72.54892578125,-53.460742187499996],[-72.72680664062503,-53.420019531249956],[-72.99838867187499,-53.290722656250004],[-73.05273437499997,-53.24345703125005],[-72.99824218749998,-53.17724609374998],[-72.91552734375,-53.121972656249994],[-72.90991210937503,-52.936523437499964],[-72.88916015624997,-52.871582031249964],[-72.831884765625,-52.81953125000002],[-72.72768554687502,-52.7623046875],[-72.67597656249995,-52.74902343749996],[-72.632080078125,-52.773828124999945],[-72.62661132812494,-52.81757812499997],[-72.453466796875,-52.814453124999964],[-72.11757812499997,-52.65],[-71.97929687499996,-52.646093750000034],[-71.79707031249995,-52.68281249999997],[-71.59121093749994,-52.6607421875],[-71.55415039062495,-52.64394531249995],[-71.51127929687502,-52.60537109375],[-71.66474609375001,-52.56005859375001],[-71.81191406249997,-52.53701171875001],[-72.22568359374998,-52.52099609374995],[-72.31538085937495,-52.53857421874997],[-72.43769531250001,-52.62578124999998],[-72.478271484375,-52.604003906249986],[-72.50439453124999,-52.56005859375001],[-72.64482421875002,-52.5291015625],[-72.71210937499995,-52.53554687499999],[-72.77656249999993,-52.577441406249996],[-72.766015625,-52.64257812500003],[-72.80190429687494,-52.71240234374996],[-72.93188476562497,-52.78164062500002],[-73.02026367187503,-52.891796875],[-73.01611328124997,-52.97744140624995],[-73.02299804687496,-53.022070312499984],[-73.05546875000002,-53.045605468749976],[-73.12246093749997,-53.073925781249976],[-73.33818359374996,-53.054687499999964],[-73.45986328124997,-52.96484374999996],[-73.50751953124998,-52.90351562499999],[-73.64521484374997,-52.83701171875003],[-73.34594726562501,-52.754296874999966],[-73.24082031249999,-52.707128906250034],[-73.14482421874999,-52.601953125000016],[-73.07319335937498,-52.53505859374997],[-73.12392578125,-52.487988281249976],[-73.18378906249995,-52.487890624999956],[-73.17817382812495,-52.562695312500004],[-73.24414062499996,-52.62402343749998],[-73.38212890624993,-52.595117187499945],[-73.58569335937503,-52.68574218750003],[-73.71083984374994,-52.66152343749997],[-73.914697265625,-52.68818359375],[-74.01445312499997,-52.63935546875],[-74.03583984374998,-52.57724609375004],[-73.99990234374994,-52.512597656250016],[-74.03735351562503,-52.40292968749997],[-74.093505859375,-52.376269531250045],[-74.15083007812495,-52.382519531249976],[-74.1765625,-52.3171875],[-74.23847656249995,-52.20234375000005],[-74.26596679687496,-52.17128906250003],[-74.29565429687497,-52.117871093749976],[-74.26494140624993,-52.1048828125],[-74.19492187499998,-52.12021484375001],[-74.133544921875,-52.15478515624995],[-74.04023437499998,-52.15917968749996],[-73.83447265625,-52.233984375],[-73.74912109375,-52.21601562499999],[-73.702783203125,-52.19882812500004],[-73.685400390625,-52.13671875],[-73.68432617187494,-52.07773437499998],[-73.64902343749995,-52.07773437499998],[-73.53222656249997,-52.153125],[-73.45795898437493,-52.14599609375002],[-73.32675781250003,-52.165917968749994],[-73.26044921874993,-52.157812500000034],[-73.137353515625,-52.12968749999999],[-72.94370117187498,-52.046875],[-72.84321289062493,-51.961132812500026],[-72.79501953124998,-51.949511718750045],[-72.73540039062499,-51.96054687499999],[-72.69545898437502,-51.98515625000003],[-72.69482421874997,-52.044726562499996],[-72.64956054687498,-52.09990234375005],[-72.58798828124998,-52.14511718750003],[-72.57084960937496,-52.20009765624994],[-72.58344726562495,-52.254199218750045],[-72.693603515625,-52.3302734375],[-72.714013671875,-52.35673828124997],[-72.67705078125002,-52.38466796874998],[-72.63149414062497,-52.37158203124998],[-72.56870117187495,-52.33398437499996],[-72.53291015624995,-52.28232421875],[-72.52333984374997,-52.255468750000034],[-72.51933593749993,-52.21708984375003],[-72.52412109374993,-52.1703125],[-72.61357421874996,-52.03701171875003],[-72.624755859375,-52.00693359375003],[-72.62460937499998,-51.94648437499997],[-72.52285156249994,-51.89091796875002],[-72.49414062499994,-51.84755859374998],[-72.48964843750002,-51.76367187500002],[-72.54252929687496,-51.706152343750034],[-72.76123046875,-51.57324218749996],[-73.12675781249996,-51.43994140624997],[-73.16875,-51.45390624999998],[-73.19702148437497,-51.478027343750014],[-73.16337890624996,-51.49560546874995],[-73.11499023437497,-51.50449218749998],[-72.78935546874996,-51.61425781249996],[-72.70458984375003,-51.67792968749997],[-72.649072265625,-51.69501953124999],[-72.58330078124997,-51.737304687499986],[-72.60004882812495,-51.79912109374997],[-72.92836914062497,-51.85986328125],[-73.18867187499995,-51.990625],[-73.38325195312498,-52.070019531250004],[-73.51816406250003,-52.04101562499996],[-73.58232421874995,-51.96035156249995],[-73.65029296874994,-51.85625],[-73.75263671874991,-51.795507812500034],[-73.81064453125003,-51.80117187500003],[-73.857568359375,-51.789941406249966],[-73.89443359374994,-51.7578125],[-73.9732421875,-51.78447265625],[-74.14643554687495,-51.712109375],[-74.19667968749997,-51.680566406249966],[-74.06958007812503,-51.578710937500006],[-73.92978515624995,-51.61787109374999],[-73.8958984375,-51.331445312499994],[-73.93950195312499,-51.26630859375004],[-74.12124023437497,-51.19541015624999],[-74.21049804687496,-51.20458984374999],[-74.33232421874999,-51.19501953125],[-74.41435546874999,-51.1625],[-74.50786132812496,-51.14960937499998],[-74.58686523437498,-51.13066406250003],[-74.69008789062495,-51.08652343750001],[-74.81474609374996,-51.06289062499999],[-74.98310546874995,-50.88105468749998],[-75.05532226562502,-50.78554687499998],[-75.09467773437495,-50.68125],[-74.83662109374994,-50.67890625000001],[-74.68574218749995,-50.662011718749945],[-74.64892578125,-50.618457031250045],[-74.70205078125,-50.53535156249999],[-74.77587890625003,-50.46992187499998],[-74.7216796875,-50.40849609374999],[-74.64448242187498,-50.360937499999984],[-74.56411132812497,-50.38203125000002],[-74.365576171875,-50.487890625],[-74.3314453125,-50.559570312500036],[-74.19018554687497,-50.77802734375005],[-74.15610351562498,-50.7974609375],[-74.13940429687501,-50.81777343749997],[-73.84746093749996,-50.94003906250001],[-73.80654296875,-50.93837890625003],[-73.82460937500002,-50.83583984375],[-73.74057617187495,-50.696679687499994],[-73.65903320312495,-50.65068359375003],[-73.61816406249997,-50.651171875000045],[-73.61396484375001,-50.62792968750002],[-73.69326171875,-50.570019531250026],[-73.65444335937498,-50.49267578124999],[-73.67993164062494,-50.490234375000036],[-73.75019531249995,-50.53984375000002],[-73.89150390624997,-50.782714843750014],[-73.97802734375001,-50.827050781249994],[-74.09672851562495,-50.717089843749974],[-74.16411132812499,-50.637890625],[-74.19721679687498,-50.60976562499995],[-74.18559570312493,-50.48535156250001],[-73.95034179687497,-50.510546875],[-74.03105468749999,-50.46982421874996],[-74.30556640624997,-50.39804687499999],[-74.37412109374998,-50.36298828125005],[-74.42509765624995,-50.35019531250001],[-74.51640625000002,-50.265625],[-74.62958984374997,-50.19404296875],[-74.43432617187496,-50.065234375000045],[-74.33374023437499,-49.97460937499997],[-74.01943359375002,-50.02275390625001],[-73.95859374999998,-49.99472656249998],[-74.01123046875003,-49.92851562499999],[-74.07329101562496,-49.94853515624999],[-74.17133789062495,-49.90732421875003],[-74.32392578124995,-49.7833984375],[-74.31875,-49.720117187499994],[-74.29082031249996,-49.604101562499984],[-74.23037109375,-49.57929687499998],[-74.10200195312495,-49.555371093750004],[-73.95551757812495,-49.59306640625004],[-73.89155273437498,-49.62373046874998],[-73.83637695312493,-49.609375],[-73.89248046875,-49.52343749999998],[-73.988037109375,-49.49091796875002],[-74.09443359374991,-49.42968749999998],[-74.08349609375,-49.36181640625001],[-74.04921874999997,-49.30566406250002],[-74.02343750000003,-49.244140625000014],[-74.00561523437494,-49.15800781250005],[-74.015380859375,-49.09091796874997],[-73.98476562499995,-49.05996093749997],[-73.937890625,-49.04609375],[-73.93496093749994,-49.02089843750001],[-74.02773437500002,-49.02617187500002],[-74.06132812499992,-49.111035156249976],[-74.073876953125,-49.18837890625002],[-74.13979492187502,-49.250488281249964],[-74.16787109374997,-49.320507812500026],[-74.1845703125,-49.40439453124998],[-74.2212890625,-49.500585937500034],[-74.30151367187501,-49.463964843750034],[-74.34853515624998,-49.42626953124999],[-74.36655273437503,-49.40048828124998],[-74.358154296875,-49.35136718750001],[-74.37998046875,-49.04785156249999],[-74.38212890625002,-48.79365234374998],[-74.34101562499998,-48.59570312499998],[-74.227685546875,-48.51699218750002],[-74.17622070312498,-48.494140624999986],[-74.12929687500002,-48.50419921874999],[-74.05693359375,-48.503613281250054],[-74.00908203124996,-48.475],[-74.171533203125,-48.42744140624998],[-74.27006835937502,-48.454589843750014],[-74.34296874999993,-48.492578125000016],[-74.47441406249999,-48.46396484374996],[-74.49941406250002,-48.362304687500036],[-74.57719726562496,-48.274414062499986],[-74.59072265624995,-48.161914062499974],[-74.58466796874998,-47.999023437500014],[-74.40048828125,-48.01308593749995],[-74.25043945312501,-48.04492187500004],[-73.85380859374993,-48.0421875],[-73.52817382812503,-48.198242187500014],[-73.38447265624997,-48.17734375000002],[-73.39106445312498,-48.14589843750001],[-73.5009765625,-48.106640625],[-73.56958007812503,-48.019335937499974],[-73.60991210937499,-47.993945312500045],[-73.62890624999994,-47.94150390625001],[-73.63510742187498,-47.88037109375],[-73.71586914062499,-47.65546875000001],[-73.7482421875,-47.661328125000054],[-73.77924804687493,-47.73847656250004],[-73.8466796875,-47.86699218750003],[-73.94086914062498,-47.92939453125004],[-74.08476562499999,-47.954687500000034],[-74.22705078124993,-47.968945312500004],[-74.35058593749997,-47.94433593749997],[-74.37934570312498,-47.89121093749999],[-74.37622070312497,-47.82968749999998],[-74.42968750000003,-47.79960937499997],[-74.56923828125001,-47.77294921874996],[-74.60888671875003,-47.758007812500026],[-74.654931640625,-47.702246093750034],[-74.58842773437492,-47.61796875],[-74.5337890625,-47.567675781249974],[-74.46689453124995,-47.57763671874996],[-74.40356445312503,-47.600390624999974],[-74.32255859374996,-47.66669921874998],[-74.24296874999999,-47.67929687499998],[-74.15195312499999,-47.62666015625],[-74.13408203125002,-47.590820312499986],[-74.19101562499998,-47.56835937500003],[-74.24291992187497,-47.559667968750034],[-74.32368164062501,-47.53144531249996],[-74.48266601562497,-47.43046875],[-74.40327148437494,-47.32753906249999],[-74.21567382812503,-47.209570312500034],[-74.15839843749998,-47.18251953125002],[-74.20805664062499,-47.08310546875002],[-74.15190429687497,-46.97441406249999],[-74.20947265625,-46.88476562500003],[-74.31357421874998,-46.78818359374998],[-74.45419921875003,-46.76679687499997],[-74.48442382812499,-46.795019531250034],[-74.48935546875,-46.83457031250002],[-74.46699218749998,-46.86435546875005],[-74.48017578125001,-46.88583984374998],[-74.51225585937496,-46.88515625000002],[-74.69082031250002,-46.86396484374997],[-74.81064453125,-46.79970703125002],[-75.00595703125,-46.74111328124998],[-75.03144531249995,-46.695312499999964],[-75.05253906249999,-46.62802734375003],[-74.98417968750002,-46.51210937499995],[-75.01875,-46.51054687499999],[-75.14575195312497,-46.60009765625003],[-75.33740234375001,-46.647070312500006],[-75.47841796874997,-46.66240234375002],[-75.54033203124999,-46.69873046874996],[-75.56508789062497,-46.728710937500026],[-75.52758789062494,-46.74638671874999],[-75.44599609374995,-46.75078125],[-75.38642578124997,-46.862695312499966],[-75.40122070312496,-46.90566406250002],[-75.43037109374995,-46.93457031249996],[-75.49663085937496,-46.940136718750026],[-75.63525390624994,-46.86279296874998],[-75.70810546874995,-46.775],[-75.70639648437498,-46.70527343749997],[-75.65678710937499,-46.610351562499986],[-75.43691406249997,-46.48300781249998],[-75.37602539062499,-46.42910156250001],[-75.24702148437498,-46.3693359375],[-75.074853515625,-46.2345703125],[-74.924462890625,-46.15966796875001],[-74.99765625,-46.097656249999986],[-75.07451171874993,-46.00449218750002],[-75.06669921874993,-45.87490234374999],[-74.76313476562501,-45.82363281250002],[-74.63066406250002,-45.84472656249997],[-74.46279296875002,-45.84072265624995],[-74.36914062500001,-45.80966796875002],[-74.30117187499994,-45.803027343749996],[-74.15786132812497,-45.7671875],[-74.09619140625003,-45.71679687500003],[-74.08183593749993,-45.6783203125],[-74.08251953125,-45.6447265625],[-74.09926757812501,-45.60341796875002],[-74.122705078125,-45.49619140625002],[-74.09892578124996,-45.46035156250001],[-74.03754882812498,-45.41767578125001],[-73.95717773437494,-45.40439453124997],[-73.9203125,-45.40771484375003],[-73.825,-45.446875],[-73.844140625,-45.50244140624996],[-73.88232421874997,-45.5693359375],[-73.96025390624996,-45.83525390625],[-73.99951171874994,-45.895312499999974],[-74.06103515624997,-45.947363281250006],[-74.01992187500002,-46.055859375],[-74.08154296874997,-46.13183593750003],[-74.356787109375,-46.212695312499974],[-74.39296875,-46.21738281250005],[-74.37246093749998,-46.24628906249998],[-74.21313476562494,-46.23945312500001],[-74.08974609374994,-46.22236328125],[-73.96757812500002,-46.15410156250003],[-73.92919921875003,-46.049902343750034],[-73.87871093749993,-45.846875],[-73.81254882812496,-45.818164062499974],[-73.73525390624994,-45.81171875],[-73.69487304687496,-45.85957031249998],[-73.70791015624997,-45.96669921874995],[-73.70815429687501,-46.070312500000014],[-73.81064453125003,-46.37734374999995],[-73.934814453125,-46.500683593750026],[-73.94863281249997,-46.533105468749966],[-73.94375,-46.57158203124999],[-73.84536132812498,-46.56601562500002],[-73.77026367187497,-46.499804687500024],[-73.71621093749997,-46.415234375000026],[-73.66206054687495,-46.29746093750001],[-73.66821289062497,-46.21210937500004],[-73.65166015624996,-46.15927734375002],[-73.62944335937496,-45.9865234375],[-73.59184570312493,-45.89912109375003],[-73.5943359375,-45.77685546875],[-73.661962890625,-45.73076171875003],[-73.75659179687503,-45.702832031250026],[-73.78037109374998,-45.62792968750004],[-73.73076171874999,-45.47998046875],[-73.54990234375,-45.48378906249998],[-73.37856445312502,-45.382812500000014],[-73.26621093749995,-45.346191406250014],[-73.20234374999998,-45.353808593749974],[-72.97817382812497,-45.451171875],[-72.933837890625,-45.45234374999997],[-72.9408203125,-45.41728515625002],[-72.97553710937498,-45.39257812499996],[-73.06386718749994,-45.35976562500002],[-73.22636718750002,-45.25517578125003],[-73.44497070312495,-45.23818359374995],[-73.40488281249995,-45.10234374999999],[-73.36245117187502,-44.97822265625001],[-73.2564453125,-44.96103515624998],[-73.07841796874996,-44.92021484375],[-72.73896484375001,-44.73417968750003],[-72.680078125,-44.59394531249997],[-72.66386718749999,-44.43642578124995],[-72.82753906250002,-44.39541015625002],[-73.00102539062502,-44.292382812499994],[-73.140966796875,-44.2375],[-73.26508789062498,-44.16865234375001],[-73.24072265625,-44.06572265625],[-73.22446289062496,-43.89794921875003],[-73.06879882812495,-43.86201171874998],[-72.99658203125,-43.63154296875001],[-73.10097656249994,-43.455175781249956],[-73.0759765625,-43.323632812499994],[-72.939990234375,-43.21132812500002],[-72.91547851562498,-43.13359375],[-72.87802734375,-43.04814453125],[-72.75800781249997,-43.039453125],[-72.75537109374997,-42.992968750000045],[-72.766015625,-42.90820312499999],[-72.84497070312501,-42.80800781250002],[-72.84804687500002,-42.66914062499996],[-72.77392578125003,-42.505175781250045],[-72.65483398437502,-42.516601562499986],[-72.63183593750003,-42.50966796874999],[-72.71630859375,-42.41044921875003],[-72.78515625,-42.301269531249986],[-72.77324218749996,-42.257714843749994],[-72.70737304687498,-42.22050781250006],[-72.63105468749995,-42.199804687500006],[-72.5484375,-42.255761718749945],[-72.4302734375,-42.43388671875],[-72.412353515625,-42.388183593750014],[-72.46010742187494,-42.20664062499998],[-72.49941406249997,-41.98085937499999],[-72.62397460937493,-42.010546875],[-72.73818359375002,-41.99462890624996],[-72.78120117187498,-41.959570312500006],[-72.82407226562503,-41.908789062499956],[-72.783837890625,-41.846777343750034],[-72.74370117187499,-41.80058593750003],[-72.65986328124994,-41.74248046875002],[-72.48603515624997,-41.72207031250002],[-72.36040039062499,-41.64912109375],[-72.31826171875,-41.49902343749997],[-72.35947265624998,-41.51386718749998],[-72.42773437500001,-41.645898437499966],[-72.54238281250002,-41.690625],[-72.60083007812503,-41.684082031250014],[-72.66977539062503,-41.659375],[-72.80512695312498,-41.544335937499966],[-72.87998046874995,-41.51757812500003],[-72.95283203124995,-41.51474609374998],[-73.014990234375,-41.54384765624995],[-73.174072265625,-41.74658203124996],[-73.24179687499995,-41.78085937500001],[-73.52128906249996,-41.79707031250002],[-73.62402343750003,-41.77363281249997],[-73.73515625000002,-41.74248046875002],[-73.721875,-41.69248046875003],[-73.6880859375,-41.639257812500034],[-73.62504882812496,-41.61191406249996],[-73.62392578125,-41.581347656250045],[-73.71064453124998,-41.57363281249998],[-73.81074218749995,-41.51748046875001],[-73.85502929687502,-41.44638671874999],[-73.87617187499994,-41.31933593749996],[-73.96586914062493,-41.118261718750034],[-73.98359374999998,-40.974316406250004],[-73.9203125,-40.87158203124996],[-73.784033203125,-40.46845703124998],[-73.74248046874997,-40.262988281250045],[-73.66943359375001,-40.08232421875002],[-73.67099609375,-39.96318359374999],[-73.48222656249999,-39.854296875],[-73.41040039062503,-39.78916015624998],[-73.24990234374998,-39.42236328125002],[-73.22646484375002,-39.22441406250003],[-73.48076171874996,-38.624023437500014],[-73.52021484375001,-38.509375],[-73.53256835937503,-38.366796875],[-73.471875,-38.13007812500001],[-73.46479492187497,-38.04033203125003],[-73.51674804687502,-37.910546874999966],[-73.66181640624998,-37.69853515625003],[-73.66459960937492,-37.590429687500034],[-73.60341796875,-37.47910156249999],[-73.66240234375002,-37.341015625000026],[-73.63364257812503,-37.25546875],[-73.60166015624998,-37.18847656250003],[-73.37456054687499,-37.224316406250054],[-73.27109374999998,-37.20742187499998],[-73.21596679687502,-37.16689453124998],[-73.17285156250003,-37.053515624999974],[-73.15126953124998,-36.87617187499999],[-73.13779296874996,-36.799902343750006],[-73.11806640624997,-36.68837890625002],[-73.006591796875,-36.64345703125002],[-72.96782226562499,-36.53779296874998],[-72.87456054687502,-36.39042968749999],[-72.77841796874995,-35.978515625],[-72.68339843749996,-35.87695312499999],[-72.58735351562493,-35.759667968749994],[-72.62392578125002,-35.5857421875],[-72.56206054687493,-35.50537109374997],[-72.50517578124999,-35.44697265624998],[-72.45498046874997,-35.34082031250003],[-72.38671874999999,-35.2404296875],[-72.22377929687494,-35.096191406250014],[-72.18242187499996,-34.92021484374996],[-72.05595703124996,-34.61582031250002],[-72.03076171874997,-34.42050781250001],[-71.99150390624996,-34.28847656250003],[-72.00283203124997,-34.165332031249996],[-71.92685546875003,-34.015625],[-71.85395507812501,-33.88955078125004],[-71.83095703124994,-33.81953124999998],[-71.66435546875002,-33.65263671875],[-71.63627929687499,-33.51923828125],[-71.69550781249995,-33.42900390625],[-71.69658203125002,-33.2890625],[-71.74296875,-33.09511718750001],[-71.63554687500002,-33.02255859374997],[-71.59204101562501,-32.96953125],[-71.45224609374998,-32.65957031250001],[-71.46142578124997,-32.537890625],[-71.42128906249997,-32.38681640625005],[-71.513037109375,-32.20791015625001],[-71.52587890624997,-31.805859375],[-71.57729492187497,-31.49638671875],[-71.66196289062498,-31.169531250000034],[-71.65390625,-30.986621093749974],[-71.7056640625,-30.75927734375003],[-71.70893554687495,-30.628027343750016],[-71.66948242187499,-30.33037109374996],[-71.40039062499997,-30.142968749999966],[-71.34804687499997,-29.93320312500005],[-71.31572265624996,-29.649707031250017],[-71.32670898437495,-29.44316406250005],[-71.35327148437497,-29.350390624999974],[-71.48583984374997,-29.198242187499968],[-71.51923828124993,-28.926464843750026],[-71.49360351562494,-28.8552734375],[-71.38408203124993,-28.778710937500033],[-71.30673828124998,-28.672460937499967],[-71.26684570312494,-28.507519531250022],[-71.18642578125,-28.37783203124998],[-71.15449218749998,-28.0640625],[-71.08652343749998,-27.814453124999954],[-71.05263671875,-27.72734374999997],[-70.94580078125,-27.61787109374997],[-70.92578125,-27.588671874999974],[-70.90927734375,-27.505175781250017],[-70.91425781249995,-27.307910156249974],[-70.89790039062501,-27.1875],[-70.81274414062497,-26.95058593750001],[-70.80292968749991,-26.840917968749963],[-70.70839843749994,-26.596972656250003],[-70.68696289062493,-26.421777343750005],[-70.64658203124998,-26.329394531250017],[-70.66225585937497,-26.225390624999974],[-70.63544921875001,-25.992675781249982],[-70.69960937500002,-25.861132812500017],[-70.71372070312496,-25.784179687499968],[-70.63300781249995,-25.54560546875004],[-70.578125,-25.4875],[-70.48950195312503,-25.376464843750043],[-70.45219726562499,-25.251855468749966],[-70.44536132812502,-25.17265624999999],[-70.55864257812499,-24.778515624999983],[-70.57412109374994,-24.644335937500003],[-70.54643554687499,-24.33164062499999],[-70.50742187499995,-24.1296875],[-70.52006835937496,-23.968554687500003],[-70.50742187499995,-23.8857421875],[-70.48779296874994,-23.781738281249957],[-70.40996093749999,-23.655566406250003],[-70.39233398437494,-23.565917968749957],[-70.41962890625001,-23.52851562499997],[-70.511962890625,-23.4828125],[-70.58813476562497,-23.368359375000026],[-70.59335937499995,-23.25546875000003],[-70.56884765625001,-23.173339843749996],[-70.56318359374995,-23.05703125000002],[-70.44965820312498,-23.034179687499986],[-70.38916015625001,-22.96962890624998],[-70.33168945312494,-22.848632812500014],[-70.25952148437497,-22.55605468750001],[-70.22851562499997,-22.19316406249997],[-70.18544921875,-21.97460937500003],[-70.15507812499993,-21.866601562499966],[-70.12958984374997,-21.640820312499983],[-70.08754882812494,-21.49306640624998],[-70.08002929687501,-21.356835937500037],[-70.08837890625003,-21.253222656249974],[-70.19702148437494,-20.725390625],[-70.19365234374999,-20.53144531250001],[-70.14746093749997,-20.229785156250017],[-70.14814453124995,-19.80507812499999],[-70.15742187499995,-19.70585937500003],[-70.19833984374995,-19.61298828125004],[-70.21040039062501,-19.48691406250002],[-70.27578125000002,-19.26757812500001],[-70.33486328124997,-18.82753906249998],[-70.33608398437494,-18.595214843749986],[-70.36162109374999,-18.398046874999963],[-70.41826171874999,-18.345605468750023],[-70.37749023437495,-18.333593749999977],[-70.28227539062499,-18.325390625],[-70.18378906250001,-18.325195312499957],[-70.05908203125,-18.28349609374999],[-69.92636718749998,-18.206054687500014],[-69.83969726562498,-18.093457031249997],[-69.80258789062496,-17.990234375000014],[-69.80244140624994,-17.9],[-69.84150390625,-17.785156249999986],[-69.85209960937493,-17.70380859375001],[-69.80610351562497,-17.664941406250005],[-69.68476562499994,-17.649804687500023],[-69.58642578125,-17.57324218749997],[-69.51093749999998,-17.50605468749997],[-69.49501953125002,-17.61953125],[-69.3580078125,-17.771679687499983],[-69.31337890624997,-17.943164062500014],[-69.28232421875003,-17.96484375],[-69.09394531249993,-18.05048828125004],[-69.0904296875,-18.07070312499998],[-69.11806640624997,-18.102734375000026],[-69.14545898437495,-18.14404296875],[-69.12636718749997,-18.20244140624999],[-69.09228515624994,-18.282421875000036],[-69.08095703124997,-18.35664062499997],[-69.06015624999998,-18.43300781249998],[-69.039404296875,-18.55009765625003],[-69.02680664062493,-18.65625],[-68.97885742187503,-18.81298828125003],[-68.96909179687498,-18.909667968750014],[-68.96831054687502,-18.967968749999983],[-68.93100585937495,-19.025195312500014],[-68.85795898437499,-19.09335937500005],[-68.75908203125002,-19.162207031250034],[-68.68066406250003,-19.242382812500026],[-68.62055664062495,-19.296679687499985],[-68.54785156249997,-19.341113281249974],[-68.49199218749996,-19.381933593750034],[-68.47016601562495,-19.409960937499974],[-68.46289062499997,-19.4328125],[-68.48701171875001,-19.45439453124996],[-68.57529296874998,-19.56015625000002],[-68.69829101562499,-19.721093750000037],[-68.69619140625,-19.74072265625003],[-68.57827148437492,-19.856542968750006],[-68.559375,-19.902343750000014],[-68.56069335937502,-19.96708984374996],[-68.60019531249998,-20.044921875000014],[-68.72749023437498,-20.06962890624999],[-68.75581054687498,-20.09082031250004],[-68.75932617187499,-20.115527343750003],[-68.73002929687496,-20.148437499999957],[-68.73457031249998,-20.225195312499963],[-68.68857421874995,-20.310058593750025],[-68.7123046875,-20.338964843749963],[-68.75922851562495,-20.37802734375002],[-68.76054687499996,-20.41621093749998],[-68.74516601562493,-20.45859375],[-68.69580078125,-20.49296874999999],[-68.49985351562495,-20.612011718749994],[-68.48432617187498,-20.628417968749957],[-68.48740234375,-20.640722656249977],[-68.56318359374998,-20.720117187499994],[-68.571044921875,-20.769140625000034],[-68.5689453125,-20.849804687500026],[-68.55825195312497,-20.901953124999988],[-68.53383789062497,-20.923632812499974],[-68.43549804687497,-20.94824218750001],[-68.3138671875,-21.12968750000003],[-68.197021484375,-21.30029296874997],[-68.19853515624996,-21.447265624999986],[-68.18642578124997,-21.618554687499966],[-68.11215820312503,-21.753027343750006],[-68.10180664062497,-21.860644531250003],[-68.0767578125,-21.982812500000023],[-67.98837890625002,-22.05712890624997],[-67.95390624999992,-22.204003906249966],[-67.94492187499998,-22.2822265625],[-67.95039062499991,-22.333691406249994],[-67.88173828124997,-22.493359375000026],[-67.87373046874994,-22.630566406249997],[-67.88999023437498,-22.729199218750022],[-67.88916015624997,-22.784179687500025],[-67.87944335937496,-22.822949218750026],[-67.82050781249993,-22.857714843750003],[-67.79443359374994,-22.87949218749999],[-67.70732421874996,-22.889160156250014]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Colombia","sov_a3":"COL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Colombia","adm0_a3":"COL","geou_dif":0,"geounit":"Colombia","gu_a3":"COL","su_dif":0,"subunit":"Colombia","su_a3":"COL","brk_diff":0,"name":"Colombia","name_long":"Colombia","brk_a3":"COL","brk_name":"Colombia","brk_group":null,"abbrev":"Col.","postal":"CO","formal_en":"Republic of Colombia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Colombia","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":1,"pop_est":45644023,"gdp_md_est":395400,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CO","iso_a3":"COL","iso_n3":"170","un_a3":"170","wb_a2":"CO","wb_a3":"COL","woe_id":-99,"adm0_a3_is":"COL","adm0_a3_us":"COL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"COL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-78.11372070312495,2.541748046875028],[-78.14082031249994,2.519677734374966],[-78.19248046875,2.55927734375004],[-78.21010742187497,2.609179687499989],[-78.17841796874998,2.646337890625019],[-78.13764648437495,2.634179687500023],[-78.119140625,2.60361328125002],[-78.11372070312495,2.541748046875028]]],[[[-71.26210937499997,12.335302734375034],[-71.155029296875,12.164160156249977],[-71.13730468750003,12.04633789062504],[-71.2841796875,11.918310546874991],[-71.31972656249997,11.861914062500048],[-71.35556640624998,11.849755859374964],[-71.40019531249993,11.823535156250044],[-71.53608398437497,11.774072265624994],[-71.71948242187497,11.726855468749974],[-71.95810546875,11.66640625],[-72.01230468750003,11.601953125000021],[-72.24848632812501,11.196435546875009],[-72.44609374999993,11.11425781250004],[-72.51801757812493,11.053906250000011],[-72.57226562499997,10.977148437500006],[-72.690087890625,10.835839843749994],[-72.73916015624997,10.72719726562498],[-72.86933593750001,10.49125976562496],[-72.94038085937501,10.195751953124969],[-72.96738281249999,10.029736328124997],[-73.00654296874998,9.789160156250004],[-73.06406249999998,9.668212890624972],[-73.141259765625,9.554638671875011],[-73.22426757812502,9.443603515625043],[-73.295654296875,9.322021484375057],[-73.35634765625002,9.226855468750031],[-73.36621093749997,9.194140625000017],[-73.33671875,9.167919921875011],[-73.19316406249999,9.194140625000017],[-73.13671874999994,9.222802734374993],[-73.05839843749999,9.25957031250003],[-73.00927734375,9.239941406250026],[-72.96015624999995,9.13515625],[-72.90444335937495,9.122070312499998],[-72.85209960937496,9.13515625],[-72.79638671874997,9.10898437499999],[-72.72553710937493,8.848291015624994],[-72.66542968749992,8.62758789062498],[-72.525732421875,8.48969726562504],[-72.41655273437496,8.381982421875037],[-72.39033203124995,8.287060546874969],[-72.36416015624994,8.152783203124967],[-72.35761718749994,8.087304687500037],[-72.39169921874995,8.047705078124963],[-72.44604492187503,7.966113281250045],[-72.4595703125,7.809863281250003],[-72.46889648437497,7.757958984374993],[-72.47895507812497,7.613232421874997],[-72.47197265624996,7.524267578124991],[-72.44296875,7.454882812499989],[-72.39462890625003,7.41508789062496],[-72.29633789062498,7.394531250000028],[-72.20771484374995,7.37026367187498],[-72.15668945312495,7.249707031250011],[-72.08427734374993,7.096875],[-72.00664062499993,7.032617187500023],[-71.89267578124998,6.99033203125002],[-71.81127929687503,7.005810546874982],[-71.62089843749996,7.032910156249997],[-71.45712890624996,7.026367187499986],[-71.21782226562499,6.985205078125048],[-71.12861328124993,6.98671875],[-71.01328124999998,6.994433593749974],[-70.810693359375,7.07758789062504],[-70.73715820312503,7.090039062499997],[-70.65507812500002,7.082763671875028],[-70.53554687499998,7.040527343750028],[-70.47065429687501,7.007128906249974],[-70.3875,6.972607421875054],[-70.26611328125,6.947949218749997],[-70.18813476562498,6.952050781250037],[-70.12919921874999,6.95361328125],[-70.09501953124996,6.937939453125011],[-69.90419921875,6.700244140624989],[-69.73896484374998,6.494384765624972],[-69.59482421874999,6.321484375000011],[-69.43925781249993,6.134912109375009],[-69.42714843749997,6.123974609374997],[-69.357080078125,6.147998046875017],[-69.31083984374999,6.137597656250023],[-69.26816406249998,6.099707031250034],[-69.19453125000001,6.11533203125002],[-69.08994140625,6.184375],[-68.93720703124997,6.198193359375026],[-68.73647460937494,6.156787109375031],[-68.47177734375,6.156542968749974],[-68.14306640625003,6.197509765624972],[-67.9388671875,6.241943359375057],[-67.85917968749999,6.289892578124963],[-67.7271484375,6.284960937500031],[-67.56806640624993,6.24179687500002],[-67.48198242187499,6.180273437500019],[-67.47158203124998,6.119775390625037],[-67.43935546875,6.025537109375023],[-67.47387695312501,5.929980468750003],[-67.57519531249997,5.833105468749991],[-67.63134765624994,5.709375],[-67.64228515624995,5.558789062499969],[-67.69462890624996,5.447509765625028],[-67.78842773437498,5.375488281250014],[-67.82490234374995,5.270458984375026],[-67.80419921874999,5.132519531249983],[-67.814306640625,4.930810546875022],[-67.85527343750002,4.665478515625054],[-67.85527343750002,4.506884765624988],[-67.814306640625,4.455078125],[-67.79541015624997,4.380712890625034],[-67.79863281250002,4.283886718750026],[-67.78320312499997,4.198242187499986],[-67.73232421874998,4.086523437499963],[-67.66162109375,3.864257812499985],[-67.60253906250003,3.768798828124986],[-67.55112304687503,3.733837890624968],[-67.49868164062502,3.691113281249968],[-67.34770507812499,3.463769531250009],[-67.3111328125,3.41586914062502],[-67.32216796875002,3.373974609375011],[-67.33627929687498,3.34262695312502],[-67.35361328125003,3.322656250000037],[-67.51484374999991,3.187255859374986],[-67.83476562499999,2.892822265625043],[-67.86123046874997,2.855322265625048],[-67.85908203124997,2.793603515624994],[-67.76645507812503,2.833300781250003],[-67.66723632812497,2.800195312500009],[-67.61870117187495,2.793603515624994],[-67.5966796875,2.769335937500031],[-67.56801757812502,2.689941406250014],[-67.53496093749993,2.6767578125],[-67.48642578124999,2.643652343750006],[-67.39160156249994,2.559912109374991],[-67.31225585937494,2.471679687500043],[-67.25273437499999,2.429443359374972],[-67.21083984374998,2.390136718750043],[-67.19760742187495,2.332763671874986],[-67.215234375,2.275488281250048],[-67.16547851562498,2.142578124999972],[-67.13144531249998,2.101269531249997],[-67.11381835937493,2.050585937499974],[-67.13144531249998,1.99985351562502],[-67.08955078124997,1.94033203124998],[-67.04389648437498,1.823193359375011],[-66.988134765625,1.68017578125],[-66.98154296875,1.60078125],[-66.95834960937498,1.564208984375],[-66.93110351562493,1.458007812500043],[-66.88447265624993,1.358251953124963],[-66.89550781249997,1.289892578124977],[-66.87602539062499,1.223046875000037],[-67.06523437499999,1.178369140624994],[-67.082275390625,1.185400390625006],[-67.09365234375,1.21000976562496],[-67.08828124999997,1.400585937499969],[-67.09013671874999,1.615576171874991],[-67.11923828124998,1.703613281249986],[-67.20581054687503,1.844824218749977],[-67.32060546874995,2.032080078125019],[-67.35195312499997,2.085839843750051],[-67.40043945312499,2.116699218750028],[-67.45776367187503,2.121142578125045],[-67.49965820312494,2.107910156250014],[-67.55605468749997,2.072998046875],[-67.60922851562498,2.035058593750009],[-67.71186523437501,1.922119140625],[-67.815087890625,1.790087890625017],[-67.87553710937496,1.760595703125048],[-67.93623046874998,1.748486328124969],[-67.98974609374994,1.752539062500006],[-68.03286132812492,1.78803710937504],[-68.07705078124997,1.860107421874971],[-68.1302734375,1.955761718750011],[-68.19379882812495,1.987011718749983],[-68.21835937499998,1.957617187500034],[-68.23945312499993,1.901367187500029],[-68.25595703124999,1.845507812500017],[-68.21328125000002,1.774560546875051],[-68.17656249999999,1.719824218749991],[-68.23955078124996,1.721679687500014],[-68.44345703125,1.721582031249994],[-68.67846679687503,1.721484374999974],[-68.91318359374998,1.721386718750054],[-69.12426757812497,1.721289062500034],[-69.31972656250002,1.721240234375017],[-69.39433593749993,1.725781249999969],[-69.47016601562493,1.757910156250034],[-69.54291992187501,1.773242187500045],[-69.58125,1.770751953124986],[-69.650048828125,1.739453125],[-69.73959960937503,1.734863281250043],[-69.79995117187497,1.705175781250034],[-69.84858398437493,1.708740234375043],[-69.84946289062503,1.54389648437504],[-69.85078124999993,1.308789062500011],[-69.85214843750003,1.05952148437504],[-69.79814453124996,1.078417968749974],[-69.75131835937499,1.076611328125054],[-69.71699218749995,1.059082031250028],[-69.62089843749999,1.073242187499986],[-69.56757812499998,1.065771484374977],[-69.51713867187499,1.059472656250023],[-69.47031249999995,1.058593750000028],[-69.44150390624995,1.038818359374986],[-69.40278320312498,1.042382812500009],[-69.36137695312496,1.064013671874974],[-69.31181640624999,1.050488281249969],[-69.25869140625002,1.015380859375014],[-69.22446289062498,0.963134765625028],[-69.19384765624994,0.898291015624963],[-69.16323242187502,0.8640625],[-69.16503906250003,0.801953125000054],[-69.16596679687495,0.753320312500009],[-69.17675781250003,0.712841796875011],[-69.16323242187502,0.686669921875009],[-69.15332031249993,0.65878906250002],[-69.15605468749999,0.642529296874997],[-69.174072265625,0.635351562500034],[-69.21279296875,0.629931640625003],[-69.25419921874999,0.625439453124969],[-69.28300781249999,0.627246093749989],[-69.30551757812495,0.652441406249963],[-69.32714843750003,0.655175781249994],[-69.35864257812494,0.651562499999969],[-69.3919921875,0.66689453124998],[-69.42080078125,0.698388671875009],[-69.47211914062497,0.72993164062504],[-69.52705078124997,0.716406250000034],[-69.56484374999992,0.700195312500014],[-69.60361328125003,0.680371093749969],[-69.63872070312499,0.659667968750014],[-69.67382812499994,0.665087890624974],[-69.71889648437497,0.649804687499966],[-69.75673828124997,0.62636718749998],[-69.80712890625,0.607470703125045],[-69.862060546875,0.598486328124991],[-69.92509765624999,0.589404296875003],[-69.98544921875,0.585839843749994],[-70.05390624999993,0.578613281250028],[-70.05791015624993,0.44736328125002],[-70.06572265624993,0.189355468750037],[-70.07094726562502,0.018554687499972],[-70.07050781249993,-0.13886718750004],[-70.04404296874995,-0.196191406249994],[-69.92275390624994,-0.317480468750006],[-69.82792968749999,-0.381347656249972],[-69.74746093750002,-0.452539062499994],[-69.66748046874997,-0.482421874999957],[-69.63398437500001,-0.50927734375],[-69.61191406250002,-0.553320312500006],[-69.60087890625002,-0.599609375000028],[-69.59204101562497,-0.63935546875004],[-69.60087890625002,-0.68125],[-69.62070312499995,-0.72089843750004],[-69.61191406250002,-0.762792968749963],[-69.58325195312497,-0.795898437499957],[-69.57441406249995,-0.837792968749966],[-69.55458984374998,-0.877441406249957],[-69.54355468749995,-0.917187499999969],[-69.519287109375,-0.945800781250028],[-69.48842773437502,-0.965722656250009],[-69.44873046875,-0.998730468749983],[-69.4443359375,-1.02958984374996],[-69.44873046875,-1.064941406249972],[-69.44912109375,-1.091601562499974],[-69.41142578124996,-1.152246093749994],[-69.40024414062498,-1.194921874999977],[-69.41787109375002,-1.24570312500002],[-69.43491210937503,-1.421679687499989],[-69.47861328124998,-1.621972656250023],[-69.50644531249993,-1.774902343750014],[-69.55185546874998,-2.02421875],[-69.60468749999998,-2.314257812500017],[-69.66904296875003,-2.667675781249997],[-69.73261718749993,-3.016699218749949],[-69.79414062499995,-3.354589843749963],[-69.849755859375,-3.659863281249983],[-69.91103515624995,-3.996582031250014],[-69.94819335937498,-4.200585937500009],[-69.96591796875003,-4.2359375],[-70.0171875,-4.162011718749966],[-70.09477539062499,-4.092187500000037],[-70.16752929687499,-4.050195312500008],[-70.19838867187497,-3.995117187499971],[-70.24028320312496,-3.882714843749994],[-70.2984375,-3.844238281249972],[-70.33950195312502,-3.814355468750008],[-70.37919921874993,-3.81875],[-70.4210937499999,-3.849609375],[-70.48583984375,-3.869335937500025],[-70.52968749999995,-3.866406249999954],[-70.70620117187494,-3.788964843749994],[-70.73510742187497,-3.781542968749989],[-70.62167968749995,-3.604589843749991],[-70.41899414062496,-3.288281250000039],[-70.29013671875,-3.087304687500037],[-70.14707031249998,-2.864062500000031],[-70.07402343749993,-2.750195312500011],[-70.06445312499994,-2.73076171874996],[-70.06474609375002,-2.701660156249986],[-70.09584960937494,-2.658203125000014],[-70.16474609374995,-2.639843750000011],[-70.24443359375002,-2.606542968749977],[-70.29462890624995,-2.552539062499989],[-70.36416015625,-2.529296874999957],[-70.41821289062497,-2.49072265625],[-70.51679687499998,-2.453125],[-70.57587890624995,-2.418261718749989],[-70.64799804687499,-2.405761718750014],[-70.70537109374996,-2.341992187499983],[-70.91455078125003,-2.218554687499974],[-70.96855468750002,-2.206835937499989],[-71.02729492187497,-2.225781250000026],[-71.11337890625003,-2.245410156250031],[-71.19638671874996,-2.313085937499963],[-71.30009765624996,-2.334863281249952],[-71.39697265625,-2.334082031249977],[-71.44746093749998,-2.29375],[-71.49609375000003,-2.27919921874998],[-71.55947265624997,-2.224218749999977],[-71.67148437499995,-2.182128906250014],[-71.75253906249995,-2.15273437499998],[-71.80273437499997,-2.166308593749989],[-71.86728515624996,-2.227734374999983],[-71.932470703125,-2.288671874999963],[-71.98427734375,-2.326562499999952],[-72.05380859374993,-2.32460937499999],[-72.13681640624998,-2.38066406249996],[-72.21845703125001,-2.400488281250006],[-72.30073242187498,-2.40927734375002],[-72.39560546874993,-2.428906250000026],[-72.50068359374995,-2.395019531249957],[-72.58671874999999,-2.365136718749994],[-72.62534179687493,-2.351660156250006],[-72.66015625000003,-2.361035156249955],[-72.71416015625002,-2.3921875],[-72.81123046874998,-2.40546875000004],[-72.887158203125,-2.408496093749946],[-72.94111328124998,-2.394042968750028],[-72.9896484375,-2.33974609374998],[-73.06816406250002,-2.312011718750014],[-73.15449218749993,-2.278222656249966],[-73.17265624999999,-2.208398437500037],[-73.16020507812493,-2.156347656250006],[-73.12651367187499,-2.081054687500028],[-73.14521484374998,-2.003320312500008],[-73.181494140625,-1.88037109375],[-73.19697265624995,-1.830273437500011],[-73.22397460937495,-1.787695312499949],[-73.266455078125,-1.772265625],[-73.34951171874997,-1.783886718749969],[-73.44028320312498,-1.737402343750006],[-73.49628906249993,-1.69306640625004],[-73.52524414062498,-1.638867187500011],[-73.49433593749998,-1.536621093749957],[-73.52138671874997,-1.449707031250014],[-73.57548828124997,-1.401367187500028],[-73.61025390624997,-1.316406249999943],[-73.66430664062497,-1.248828124999946],[-73.73574218749994,-1.214160156249989],[-73.80717773437493,-1.217968749999969],[-73.86318359374997,-1.19667968749998],[-73.92695312500001,-1.125195312499983],[-73.98681640625003,-1.098144531249986],[-74.05439453124994,-1.028613281250031],[-74.18076171875,-0.997753906249955],[-74.24638671874999,-0.970605468750023],[-74.28388671874998,-0.927832031250006],[-74.33442382812498,-0.85087890624996],[-74.32861328125003,-0.808398437500017],[-74.353125,-0.766601562500028],[-74.37490234374997,-0.691406249999986],[-74.41787109375,-0.580664062499977],[-74.46518554687498,-0.517675781250034],[-74.51386718749993,-0.470117187500023],[-74.555078125,-0.429882812499997],[-74.61635742187494,-0.370019531249966],[-74.691650390625,-0.335253906249989],[-74.75537109375003,-0.298632812499989],[-74.78046874999998,-0.24453125],[-74.80175781249997,-0.200097656249994],[-74.8375,-0.203320312500026],[-74.88881835937494,-0.199414062500026],[-74.9453125,-0.188183593749955],[-75.00498046874998,-0.155859375000034],[-75.05468749999997,-0.116699218749957],[-75.13837890624997,-0.050488281249969],[-75.18408203124997,-0.041748046874972],[-75.22460937499997,-0.041748046874972],[-75.28447265624999,-0.10654296875002],[-75.46396484374995,-0.038427734375006],[-75.61733398437492,0.062890625000037],[-75.77666015624999,0.08925781249998],[-75.87978515624994,0.150976562500034],[-75.97485351562494,0.24775390625004],[-76.02617187500002,0.31308593750002],[-76.06791992187497,0.345556640624977],[-76.27060546874998,0.439404296874997],[-76.31103515624997,0.448486328124986],[-76.38818359374994,0.404980468749997],[-76.41337890624993,0.378857421875011],[-76.41796874999997,0.303906250000011],[-76.42729492187502,0.261230468750028],[-76.49462890624997,0.23544921875002],[-76.60302734375003,0.240966796874986],[-76.67851562499996,0.26816406250002],[-76.72900390625003,0.272119140625023],[-76.73930664062499,0.250830078125034],[-76.767724609375,0.24165039062504],[-76.82934570312493,0.24775390625004],[-76.92011718749995,0.268505859374997],[-77.00244140624994,0.296240234374963],[-77.11411132812498,0.355078124999963],[-77.16572265625001,0.347753906249977],[-77.29267578124993,0.360400390624974],[-77.39633789062499,0.393896484374963],[-77.42275390624997,0.42485351562496],[-77.46767578124997,0.636523437500017],[-77.48139648437501,0.651171874999974],[-77.52612304687497,0.660351562499983],[-77.60131835937499,0.689501953124974],[-77.64863281249998,0.7236328125],[-77.673193359375,0.782226562500028],[-77.702880859375,0.837841796874997],[-77.82954101562495,0.825390625000026],[-78.03701171874997,0.89873046874996],[-78.1806640625,0.968554687499974],[-78.31210937499995,1.046093750000054],[-78.51152343749999,1.19882812499999],[-78.58764648437497,1.236669921874977],[-78.68164062499999,1.283447265625],[-78.73710937499993,1.35869140624996],[-78.82885742187497,1.434667968749991],[-78.85966796874995,1.455371093750031],[-78.88847656249996,1.524072265624994],[-79.02543945312497,1.623681640625037],[-78.95766601562502,1.752197265625014],[-78.79296874999994,1.848730468749963],[-78.576904296875,1.773779296874977],[-78.55043945312502,1.923632812500045],[-78.62861328124995,2.05625],[-78.617041015625,2.306787109375022],[-78.59169921875,2.356640624999969],[-78.53471679687502,2.423681640625034],[-78.46044921874997,2.470068359374991],[-78.41689453125,2.483496093749963],[-78.34287109375,2.460546875],[-78.29614257812499,2.510498046875057],[-78.12001953125,2.488183593750037],[-78.06665039062494,2.509130859375034],[-78.03017578125,2.54306640625002],[-77.98720703125002,2.56899414062498],[-77.93227539062502,2.629248046874991],[-77.90078125,2.698828124999963],[-77.87451171874997,2.72587890624996],[-77.81357421875,2.716357421874974],[-77.807958984375,2.746386718749974],[-77.77666015624993,2.78730468750004],[-77.67001953124998,2.87885742187504],[-77.67109374999993,2.919335937500037],[-77.70097656249999,3.007568359374972],[-77.69365234374999,3.039941406249994],[-77.6320312499999,3.05117187499998],[-77.55913085937493,3.075976562499974],[-77.52026367187503,3.160253906249991],[-77.47221679687499,3.233789062499965],[-77.41713867187497,3.341796875000028],[-77.35654296874998,3.348583984374997],[-77.32441406250001,3.474755859375037],[-77.24277343749998,3.585351562500009],[-77.076806640625,3.913281250000025],[-77.12685546875,3.906054687499974],[-77.16660156249999,3.862255859375011],[-77.21201171875,3.867431640625],[-77.26352539062503,3.893212890625023],[-77.24838867187498,4.040966796875011],[-77.27802734374995,4.058496093750023],[-77.35820312499996,3.944726562500037],[-77.42729492187499,4.06044921874998],[-77.43354492187493,4.130957031250048],[-77.40449218749998,4.200781249999977],[-77.40874023437495,4.24775390625004],[-77.52070312499993,4.212792968750022],[-77.51552734374994,4.256298828124997],[-77.44584960937496,4.301025390625057],[-77.41425781250001,4.34760742187504],[-77.35351562499997,4.398291015624977],[-77.32832031249998,4.475],[-77.31367187499995,4.59384765625002],[-77.28632812499995,4.72172851562496],[-77.30654296875,4.78466796875],[-77.33945312499995,4.838525390625051],[-77.366748046875,5.076562500000051],[-77.35917968749999,5.215185546875048],[-77.373291015625,5.323974609374999],[-77.40175781249994,5.416162109375037],[-77.53442382812497,5.537109374999986],[-77.32460937499994,5.675634765624963],[-77.24926757812497,5.780175781250037],[-77.34467773437495,5.995361328124999],[-77.46943359374995,6.176757812500013],[-77.47304687499998,6.285644531249985],[-77.44008789062494,6.271728515625],[-77.39824218749993,6.275],[-77.35986328125003,6.504492187499991],[-77.36879882812498,6.575585937499994],[-77.43886718749997,6.690332031250009],[-77.52597656250003,6.693115234375043],[-77.6021484375,6.837304687500023],[-77.64584960937503,6.869628906250028],[-77.68095703124999,6.960400390625054],[-77.80371093749994,7.137255859375016],[-77.90117187499999,7.229345703125047],[-77.82832031249998,7.44282226562501],[-77.76469726562499,7.483691406249989],[-77.74389648437503,7.536962890625006],[-77.76875,7.668066406249977],[-77.76191406249995,7.698828125000033],[-77.746923828125,7.711865234375026],[-77.73203125,7.710937500000014],[-77.70634765625002,7.691210937499989],[-77.65859374999997,7.634619140625005],[-77.61860351562498,7.564550781250034],[-77.58657226562494,7.543066406250006],[-77.53828124999995,7.566259765625019],[-77.35078124999995,7.705859375000045],[-77.36274414062498,7.74907226562496],[-77.34560546874997,7.836523437500019],[-77.282958984375,7.908154296875039],[-77.21596679687501,7.932519531250038],[-77.19599609374995,7.972460937500003],[-77.21230468749998,8.033886718749997],[-77.28261718750002,8.187060546875015],[-77.34550781249993,8.269531250000043],[-77.385888671875,8.351660156249977],[-77.40727539062502,8.427246093750014],[-77.47851562499994,8.498437500000037],[-77.44833984375003,8.565869140625011],[-77.39306640624994,8.644677734374994],[-77.37421874999993,8.65830078125002],[-77.34414062500002,8.636718749999972],[-77.26157226562496,8.49370117187496],[-77.13012695312503,8.400585937499997],[-76.99228515625,8.250341796875034],[-76.93583984374996,8.146826171874991],[-76.89096679687498,8.127978515624973],[-76.85185546875002,8.09047851562498],[-76.86909179687495,8.062695312499997],[-76.91220703124995,8.033398437499983],[-76.924658203125,7.973193359374974],[-76.89663085937497,7.939453125000028],[-76.86689453124995,7.91796875],[-76.78657226562493,7.931591796875025],[-76.74233398437498,8.002148437500011],[-76.7720703125,8.310546875000043],[-76.81860351562497,8.464697265625006],[-76.87221679687497,8.512744140625031],[-76.92045898437496,8.573730468750014],[-76.88798828124999,8.619873046875],[-76.80224609375003,8.640673828124974],[-76.68935546874994,8.69472656249998],[-76.27685546875,8.989111328124991],[-76.135498046875,9.265625],[-76.02724609374997,9.365771484374989],[-75.90502929687503,9.430908203125028],[-75.75556640624994,9.415625],[-75.63935546874998,9.450439453125012],[-75.60361328124998,9.538476562500009],[-75.63535156249998,9.657812499999977],[-75.680029296875,9.729785156249987],[-75.63710937499997,9.83427734374996],[-75.59267578125,9.992724609375003],[-75.59589843749993,10.125830078125034],[-75.53857421874996,10.205175781250032],[-75.55839843750002,10.236425781250006],[-75.64218750000003,10.17216796874996],[-75.708349609375,10.143408203124963],[-75.67089843750003,10.196337890625003],[-75.55371093749994,10.327734375000034],[-75.49277343749996,10.527636718750003],[-75.44599609374995,10.610888671874987],[-75.280615234375,10.72719726562498],[-75.24794921875,10.78325195312503],[-75.12304687499997,10.870410156250017],[-74.92158203124995,11.05756835937504],[-74.84458007812498,11.109716796875006],[-74.45424804687497,10.989062500000031],[-74.33022460937498,10.996679687499991],[-74.35239257812498,10.974658203125031],[-74.4095703125,10.967187500000023],[-74.49228515624998,10.934472656250009],[-74.51625976562497,10.8625],[-74.46025390624993,10.787060546874997],[-74.40087890625,10.76523437499999],[-74.35019531249998,10.813720703125012],[-74.29995117187497,10.952246093749991],[-74.21914062500002,11.105322265625004],[-74.20019531249997,11.265722656249991],[-74.14291992187503,11.320849609375031],[-74.05913085937502,11.340625],[-73.90957031250002,11.308886718750003],[-73.79570312499999,11.275683593749989],[-73.67690429687497,11.271484375000014],[-73.31337890624997,11.295751953124991],[-72.72182617187497,11.712158203125],[-72.44707031249995,11.80170898437504],[-72.275,11.88925781250002],[-72.16523437500001,12.060205078125023],[-72.13574218749994,12.188574218749977],[-72.05507812499994,12.238427734375009],[-71.97011718749997,12.238281249999986],[-71.93125,12.269531250000043],[-71.91914062499995,12.309082031250014],[-71.71455078124993,12.41997070312496],[-71.59746093749997,12.434375],[-71.49399414062503,12.43227539062498],[-71.26210937499997,12.335302734375034]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ecuador","sov_a3":"ECU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ecuador","adm0_a3":"ECU","geou_dif":0,"geounit":"Ecuador","gu_a3":"ECU","su_dif":0,"subunit":"Ecuador","su_a3":"ECU","brk_diff":0,"name":"Ecuador","name_long":"Ecuador","brk_a3":"ECU","brk_name":"Ecuador","brk_group":null,"abbrev":"Ecu.","postal":"EC","formal_en":"Republic of Ecuador","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ecuador","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":12,"pop_est":14573101,"gdp_md_est":107700,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"EC","iso_a3":"ECU","iso_n3":"218","un_a3":"218","wb_a2":"EC","wb_a3":"ECU","woe_id":-99,"adm0_a3_is":"ECU","adm0_a3_us":"ECU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ECU.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-80.131591796875,-2.973144531249957],[-80.15068359374999,-3.01171875],[-80.24570312499998,-3.008300781250014],[-80.27294921875001,-2.995898437499974],[-80.27216796874995,-2.951757812499963],[-80.24980468750002,-2.81191406249998],[-80.22368164062502,-2.753125],[-80.14570312499995,-2.696289062499957],[-80.08076171874995,-2.668847656249966],[-79.99726562499998,-2.673828125],[-79.90903320312495,-2.725585937499972],[-80.01323242187495,-2.819531250000026],[-80.07119140624994,-2.833789062499989],[-80.09340820312492,-2.845898437499969],[-80.131591796875,-2.973144531249957]]],[[[-90.42392578125,-1.339941406250034],[-90.46440429687497,-1.341992187500011],[-90.51953124999994,-1.299121093749974],[-90.47719726562494,-1.22099609374996],[-90.43198242187496,-1.239843749999977],[-90.39873046874993,-1.262304687500034],[-90.37915039062494,-1.292285156250003],[-90.42392578125,-1.339941406250034]]],[[[-89.41889648437498,-0.911035156249966],[-89.53662109375,-0.952343750000026],[-89.57729492187502,-0.933789062499983],[-89.60263671875003,-0.913476562500023],[-89.60859374999998,-0.888574218750009],[-89.54345703124997,-0.826855468749955],[-89.47993164062497,-0.793359374999966],[-89.42314453124996,-0.722265624999963],[-89.31840820312493,-0.68007812499998],[-89.28784179687501,-0.689843750000023],[-89.26743164062502,-0.70458984375],[-89.259375,-0.72841796874998],[-89.29487304687495,-0.785937499999974],[-89.35834960937498,-0.82607421874998],[-89.41889648437498,-0.911035156249966]]],[[[-90.33486328125,-0.771582031249977],[-90.38710937499997,-0.77333984374998],[-90.54213867187501,-0.676464843749955],[-90.53168945312491,-0.581445312499966],[-90.46972656250003,-0.517382812499974],[-90.26938476562498,-0.48466796874996],[-90.18530273437496,-0.544824218749966],[-90.19272460937498,-0.658789062500006],[-90.26108398437498,-0.741992187499989],[-90.31542968750003,-0.75722656249998],[-90.33486328125,-0.771582031249977]]],[[[-91.42597656249995,-0.460839843749994],[-91.5263671875,-0.478222656249983],[-91.61074218749994,-0.44394531250002],[-91.64658203124998,-0.390820312500026],[-91.654150390625,-0.3109375],[-91.64667968749998,-0.284472656249946],[-91.46015625000001,-0.255664062500031],[-91.39936523437494,-0.322460937499955],[-91.39995117187499,-0.420898437500028],[-91.42597656249995,-0.460839843749994]]],[[[-90.57392578124991,-0.333984375],[-90.620458984375,-0.364257812499943],[-90.80903320312495,-0.329394531249946],[-90.8677734375,-0.271386718750037],[-90.82036132812496,-0.192187499999974],[-90.78037109374998,-0.160449218749989],[-90.66752929687499,-0.189843750000037],[-90.55332031249999,-0.278417968749963],[-90.57392578124991,-0.333984375]]],[[[-91.27216796874998,0.025146484374986],[-91.21005859375003,-0.039306640625],[-91.17622070312498,-0.223046874999952],[-90.97553710937495,-0.416894531250009],[-90.95063476562493,-0.52519531249996],[-90.96845703125001,-0.575585937500009],[-90.95893554687493,-0.595312500000034],[-90.86254882812503,-0.67177734374998],[-90.799658203125,-0.752050781249991],[-90.90551757812497,-0.94052734375002],[-91.13105468750001,-1.019628906249977],[-91.37153320312498,-1.016992187499966],[-91.41904296874998,-0.996679687500006],[-91.48354492187497,-0.924609374999974],[-91.49541015624997,-0.860937499999977],[-91.45830078124999,-0.799511718749983],[-91.33408203124998,-0.70625],[-91.14467773437494,-0.62285156249996],[-91.120947265625,-0.559082031250028],[-91.19702148437493,-0.49697265624998],[-91.24951171874997,-0.373632812499991],[-91.36918945312493,-0.287207031249977],[-91.42885742187502,-0.023388671874955],[-91.46870117187495,-0.01030273437496],[-91.55,-0.046679687500003],[-91.590087890625,-0.01479492187498],[-91.59682617187497,0.002099609374994],[-91.50917968749992,0.062255859374986],[-91.49101562499999,0.105175781250026],[-91.36137695312496,0.125830078124977],[-91.30576171874996,0.091406249999977],[-91.27216796874998,0.025146484374986]]],[[[-78.90922851562502,1.252783203124977],[-78.965625,1.245361328124972],[-78.99169921875003,1.293212890625043],[-78.92324218749994,1.348925781250017],[-78.89980468749995,1.359765625],[-78.90922851562502,1.252783203124977]]],[[[-78.31210937499995,1.046093750000054],[-78.1806640625,0.968554687499974],[-78.03701171874997,0.89873046874996],[-77.82954101562495,0.825390625000026],[-77.702880859375,0.837841796874997],[-77.673193359375,0.782226562500028],[-77.64863281249998,0.7236328125],[-77.60131835937499,0.689501953124974],[-77.52612304687497,0.660351562499983],[-77.48139648437501,0.651171874999974],[-77.46767578124997,0.636523437500017],[-77.42275390624997,0.42485351562496],[-77.39633789062499,0.393896484374963],[-77.29267578124993,0.360400390624974],[-77.16572265625001,0.347753906249977],[-77.11411132812498,0.355078124999963],[-77.00244140624994,0.296240234374963],[-76.92011718749995,0.268505859374997],[-76.82934570312493,0.24775390625004],[-76.767724609375,0.24165039062504],[-76.73930664062499,0.250830078125034],[-76.72900390625003,0.272119140625023],[-76.67851562499996,0.26816406250002],[-76.60302734375003,0.240966796874986],[-76.49462890624997,0.23544921875002],[-76.42729492187502,0.261230468750028],[-76.41796874999997,0.303906250000011],[-76.41337890624993,0.378857421875011],[-76.38818359374994,0.404980468749997],[-76.31103515624997,0.448486328124986],[-76.27060546874998,0.439404296874997],[-76.06791992187497,0.345556640624977],[-76.02617187500002,0.31308593750002],[-75.97485351562494,0.24775390625004],[-75.87978515624994,0.150976562500034],[-75.77666015624999,0.08925781249998],[-75.61733398437492,0.062890625000037],[-75.46396484374995,-0.038427734375006],[-75.28447265624999,-0.10654296875002],[-75.34047851562494,-0.1421875],[-75.39838867187501,-0.145996093749986],[-75.47597656250002,-0.157128906250023],[-75.58374023437503,-0.122851562499974],[-75.62626953124999,-0.122851562499974],[-75.63203125000001,-0.157617187500037],[-75.56059570312502,-0.200097656249994],[-75.49106445312498,-0.24833984374996],[-75.46596679687502,-0.32177734375],[-75.42470703124997,-0.408886718749983],[-75.32524414062493,-0.506542968749983],[-75.26323242187502,-0.555371093749983],[-75.259375,-0.59013671874996],[-75.27871093749997,-0.653906249999977],[-75.28359375,-0.707128906249991],[-75.24960937499998,-0.951855468750026],[-75.27241210937493,-0.966796874999957],[-75.30917968749995,-0.968066406249946],[-75.34819335937499,-0.966796874999957],[-75.38012695312503,-0.94023437499996],[-75.40805664062503,-0.92431640625],[-75.42041015624997,-0.962207031250003],[-75.44916992187495,-1.071191406249994],[-75.51386718750001,-1.316308593750023],[-75.570556640625,-1.53125],[-75.64165039062502,-1.60732421874998],[-75.74453125000002,-1.728125],[-75.88544921874995,-1.893457031250008],[-76.08979492187501,-2.133105468749974],[-76.24091796874998,-2.243945312500003],[-76.36015625000002,-2.331347656249946],[-76.49936523437495,-2.432324218750011],[-76.6791015625,-2.562597656249991],[-76.88076171874992,-2.635937500000011],[-77.16147460937503,-2.737695312499952],[-77.36005859374998,-2.809667968749963],[-77.50649414062497,-2.859960937499991],[-77.65898437499996,-2.912402343750017],[-77.860595703125,-2.981640625000011],[-77.93847656249994,-3.046972656249991],[-78.06791992187496,-3.20683593749996],[-78.12822265624999,-3.283886718750026],[-78.18330078125001,-3.350195312499949],[-78.19462890625002,-3.38046875],[-78.18745117187495,-3.399804687500022],[-78.16098632812498,-3.432128906249943],[-78.15849609375002,-3.465136718750002],[-78.19487304687496,-3.485839843749957],[-78.22631835937497,-3.489160156250023],[-78.240380859375,-3.472558593750009],[-78.25073242187497,-3.436132812499963],[-78.28417968749994,-3.399023437499948],[-78.32304687499996,-3.388281249999977],[-78.345361328125,-3.397363281249965],[-78.347265625,-3.43125],[-78.39804687499998,-3.594824218749963],[-78.39995117187499,-3.674316406249986],[-78.42143554687493,-3.705761718749997],[-78.41977539062495,-3.776855468750014],[-78.471044921875,-3.843066406250003],[-78.49345703124996,-3.902050781250025],[-78.50908203124993,-3.952148437500014],[-78.55043945312502,-3.986914062499991],[-78.56513671874998,-4.041601562500034],[-78.60336914062498,-4.157324218749977],[-78.64799804687499,-4.248144531250006],[-78.67939453125001,-4.32587890625004],[-78.68515625,-4.383984374999969],[-78.66123046875003,-4.425097656250003],[-78.65292968750002,-4.458203125],[-78.67446289062497,-4.517675781250033],[-78.68603515625001,-4.562402343749994],[-78.74306640625,-4.592675781250037],[-78.86152343749998,-4.665039062499942],[-78.90761718749995,-4.714453124999977],[-78.92578125,-4.770703124999983],[-78.91420898437497,-4.818652343749974],[-78.919189453125,-4.858398437499986],[-78.97539062499997,-4.873242187499997],[-78.99526367187497,-4.908007812499974],[-79.03330078124998,-4.96914062499999],[-79.07626953125003,-4.990625],[-79.18666992187495,-4.958203124999983],[-79.26811523437493,-4.957617187499949],[-79.33095703124997,-4.92783203125002],[-79.39941406249997,-4.840039062499983],[-79.45576171874998,-4.766210937499949],[-79.50190429687495,-4.670605468750011],[-79.51616210937493,-4.539160156249963],[-79.57768554687495,-4.50058593750002],[-79.638525390625,-4.454882812500031],[-79.71098632812502,-4.467578124999946],[-79.797265625,-4.47636718749996],[-79.8451171875,-4.445898437499977],[-79.962890625,-4.390332031250026],[-80.06352539062499,-4.327539062500023],[-80.13955078125002,-4.296093750000011],[-80.1974609375,-4.311035156249943],[-80.23217773437497,-4.349023437499952],[-80.293359375,-4.416796875],[-80.38349609374998,-4.46367187499996],[-80.424169921875,-4.461425781250028],[-80.47856445312499,-4.430078125000037],[-80.48847656249995,-4.393652343749991],[-80.44384765625003,-4.335839843750023],[-80.35288085937495,-4.208496093750014],[-80.453759765625,-4.205175781249963],[-80.48847656249995,-4.165527343749972],[-80.49345703124999,-4.119140625000014],[-80.510009765625,-4.06953125000004],[-80.49013671874992,-4.010058593750003],[-80.43720703125001,-3.978613281249991],[-80.35786132812501,-4.003417968749986],[-80.30327148437499,-4.005078124999969],[-80.26689453124993,-3.948828124999963],[-80.23051757812499,-3.924023437499969],[-80.19414062499996,-3.905859375],[-80.17924804687493,-3.87773437499996],[-80.21757812500002,-3.787695312499991],[-80.228857421875,-3.738867187499991],[-80.21728515624997,-3.710742187499946],[-80.21894531249994,-3.654492187500039],[-80.22060546875002,-3.613183593749965],[-80.24375,-3.576757812500005],[-80.24541015625,-3.522167968749997],[-80.26523437499995,-3.492480468749989],[-80.271875,-3.461035156249977],[-80.27353515624995,-3.424609375000017],[-80.29833984374994,-3.406445312500039],[-80.32465820312498,-3.387890625],[-80.303125,-3.374804687499989],[-80.15986328124997,-3.324316406250006],[-80.10034179687503,-3.274023437499977],[-80.02666015624993,-3.228125],[-79.96333007812501,-3.15771484375],[-79.92158203124993,-3.090136718749989],[-79.82270507812495,-2.776953124999963],[-79.72988281249997,-2.579101562499972],[-79.74550781249994,-2.484667968750017],[-79.82241210937498,-2.35654296875002],[-79.83974609374997,-2.167871093749952],[-79.8326171875,-2.110546875],[-79.842138671875,-2.0673828125],[-79.89340820312498,-2.145703124999969],[-79.88032226562495,-2.423632812500017],[-79.92558593749996,-2.548535156249969],[-79.989013671875,-2.578710937499991],[-80.03017578124994,-2.556738281249948],[-80.00664062499993,-2.353808593750003],[-80.05307617187498,-2.390722656249963],[-80.12714843749998,-2.528417968749949],[-80.24863281249995,-2.630566406249983],[-80.25527343749997,-2.664648437499991],[-80.28471679687502,-2.706738281249955],[-80.37856445312497,-2.667968749999957],[-80.45009765624995,-2.625976562500028],[-80.68486328125002,-2.396875],[-80.83906249999998,-2.349023437499994],[-80.93217773437493,-2.269140624999977],[-80.95161132812498,-2.235449218749949],[-80.96279296874997,-2.18925781249996],[-80.86762695312493,-2.141210937500034],[-80.770361328125,-2.076660156250028],[-80.76059570312498,-1.934570312500028],[-80.76313476562495,-1.822949218750026],[-80.83500976562496,-1.63242187500002],[-80.80141601562494,-1.383398437500006],[-80.82001953125001,-1.285839843750026],[-80.90239257812499,-1.078906249999974],[-80.84140625,-0.974707031249963],[-80.62368164062497,-0.898730468750031],[-80.55390624999998,-0.847949218749989],[-80.50507812499998,-0.683789062500026],[-80.45546875,-0.585449218749986],[-80.35839843750003,-0.625097656249977],[-80.282373046875,-0.620507812500023],[-80.38476562499997,-0.583984374999943],[-80.46831054687492,-0.43603515625],[-80.48227539062502,-0.368261718749963],[-80.3212890625,-0.165820312500017],[-80.23701171874998,-0.113085937500031],[-80.1333984375,-0.006054687499983],[-80.046142578125,0.155371093750048],[-80.025,0.410156249999986],[-80.06103515625,0.592285156249972],[-80.08828124999997,0.78476562500002],[-80.0359375,0.834570312500034],[-79.90351562499998,0.86020507812502],[-79.79584960937498,0.922265625000051],[-79.74121093749997,0.979785156250045],[-79.61318359374998,0.971142578124969],[-79.46538085937499,1.060058593750057],[-79.22905273437497,1.104589843749977],[-78.89965820312503,1.20625],[-78.82705078124997,1.295947265624974],[-78.85966796874995,1.455371093750031],[-78.82885742187497,1.434667968749991],[-78.73710937499993,1.35869140624996],[-78.68164062499999,1.283447265625],[-78.58764648437497,1.236669921874977],[-78.51152343749999,1.19882812499999],[-78.31210937499995,1.046093750000054]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Guyana","sov_a3":"GUY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guyana","adm0_a3":"GUY","geou_dif":0,"geounit":"Guyana","gu_a3":"GUY","su_dif":0,"subunit":"Guyana","su_a3":"GUY","brk_diff":0,"name":"Guyana","name_long":"Guyana","brk_a3":"GUY","brk_name":"Guyana","brk_group":null,"abbrev":"Guy.","postal":"GY","formal_en":"Co-operative Republic of Guyana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guyana","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":772298,"gdp_md_est":2966,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GY","iso_a3":"GUY","iso_n3":"328","un_a3":"328","wb_a2":"GY","wb_a3":"GUY","woe_id":-99,"adm0_a3_is":"GUY","adm0_a3_us":"GUY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GUY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-57.19477539062499,5.5484375],[-57.24790039062499,5.485253906249994],[-57.25751953124999,5.445166015624991],[-57.291894531249994,5.373974609374997],[-57.318554687500004,5.335351562499993],[-57.27963867187499,5.246777343749997],[-57.23530273437499,5.242871093749997],[-57.21845703125,5.231542968749991],[-57.20732421874999,5.214208984374991],[-57.20981445312499,5.195410156249991],[-57.22685546874999,5.178515624999989],[-57.269287109375,5.157031249999989],[-57.30957031249999,5.10585937499999],[-57.30576171874999,5.049560546875],[-57.331005859375,5.020166015624994],[-57.41215820312499,5.004589843749997],[-57.570898437499984,5.004492187499991],[-57.64882812499999,5.000683593749997],[-57.711083984375,4.991064453124991],[-57.75200195312498,4.954492187499994],[-57.8041015625,4.929052734374991],[-57.844921875,4.923046875],[-57.88110351562499,4.880615234375],[-57.91704101562498,4.820410156249991],[-57.904882812499984,4.779296875],[-57.86787109375,4.724316406249997],[-57.84599609374999,4.668164062499997],[-57.87470703124999,4.577099609374997],[-57.90625,4.506787109374997],[-57.92470703124999,4.453125],[-57.94975585937499,4.349951171874991],[-58.01074218749999,4.236474609374994],[-58.05449218749998,4.171923828124989],[-58.054296874999984,4.101660156249991],[-58.0322265625,4.001953125],[-57.90771484375001,3.856689453125],[-57.86655273437499,3.787255859374994],[-57.832666015624994,3.675976562499997],[-57.72036132812499,3.58828125],[-57.64946289062499,3.517382812499989],[-57.656103515625,3.423730468749994],[-57.646728515625,3.39453125],[-57.60273437499999,3.370947265624991],[-57.54960937499999,3.352832031249989],[-57.490576171874984,3.354296874999989],[-57.43789062499999,3.362255859374997],[-57.42558593749999,3.375439453124997],[-57.303662109375,3.377099609374994],[-57.28994140624999,3.353613281249991],[-57.28291015624999,3.218847656249991],[-57.277929687499984,3.164306640625],[-57.248974609375,3.142285156249997],[-57.231640625,3.10888671875],[-57.23056640624999,3.078564453124997],[-57.225,3.003076171874994],[-57.206933593749994,2.96337890625],[-57.20981445312499,2.8828125],[-57.19736328124999,2.853271484375],[-57.16362304687499,2.833251953125],[-57.12114257812498,2.775537109374994],[-57.105126953124994,2.768261718749997],[-57.096875,2.747851562499989],[-57.060449218749994,2.665673828124994],[-57.041943359375,2.64111328125],[-57.028955078124994,2.6375],[-57.02348632812498,2.60898437499999],[-56.99711914062498,2.532177734374997],[-56.97929687499999,2.513232421874989],[-56.945214843749994,2.456835937499989],[-56.93149414062499,2.395361328124991],[-56.88642578125,2.325976562499989],[-56.84052734375,2.277148437499988],[-56.81982421875,2.226660156249991],[-56.761132812499994,2.114892578124994],[-56.70434570312499,2.036474609374991],[-56.62719726562499,2.01601562499999],[-56.56269531249999,2.005078125],[-56.522363281249994,1.974804687499997],[-56.4828125,1.942138671875],[-56.52548828124999,1.92724609375],[-56.56357421874999,1.9072265625],[-56.616455078125,1.922656249999988],[-56.68984375,1.914306640625],[-56.766259765624994,1.8921875],[-56.83671874999999,1.88125],[-56.96953124999999,1.91640625],[-57.01005859374999,1.921240234374991],[-57.03759765625,1.936474609374997],[-57.092675781249994,2.005810546874997],[-57.118896484375,2.013964843749989],[-57.189599609374994,1.981591796874994],[-57.2755859375,1.959228515625],[-57.31748046874999,1.963476562499991],[-57.36679687499999,1.940136718749997],[-57.41269531249999,1.908935546875],[-57.50043945312499,1.77382812499999],[-57.54575195312499,1.72607421875],[-57.59443359375,1.7041015625],[-57.69174804687499,1.704785156249997],[-57.79565429687501,1.7],[-57.8734375,1.667285156249989],[-57.94633789062499,1.650585937499997],[-57.9828125,1.6484375],[-57.99511718749999,1.574316406249991],[-58.01176757812499,1.539941406249994],[-58.03466796874999,1.520263671875],[-58.09130859375,1.514355468749997],[-58.142236328124994,1.516992187499994],[-58.173095703125,1.5478515625],[-58.230419921875004,1.563281249999989],[-58.28115234375,1.574316406249991],[-58.314208984375,1.591943359374994],[-58.34067382812499,1.587548828124994],[-58.362695312499994,1.556689453124988],[-58.38037109375,1.530224609374997],[-58.39580078124999,1.481738281249989],[-58.47294921874998,1.466259765624997],[-58.50605468749999,1.438671875],[-58.486865234374996,1.347753906249991],[-58.49570312499999,1.312255859375],[-58.511865234374994,1.28466796875],[-58.60507812499999,1.279150390624991],[-58.68461914062499,1.281054687499989],[-58.73032226562499,1.247509765624997],[-58.787207031249984,1.20849609375],[-58.82177734374999,1.201220703124989],[-58.8625,1.20361328125],[-58.91660156249999,1.248876953124991],[-58.96850585937499,1.304589843749994],[-59.10039062499999,1.343652343749994],[-59.23120117187499,1.376025390624989],[-59.3169921875,1.464599609375],[-59.33725585937499,1.50820312499999],[-59.37768554687499,1.52734375],[-59.479443359375,1.63242187499999],[-59.53569335937498,1.7],[-59.596630859375,1.718017578125],[-59.666601562499984,1.746289062499997],[-59.66376953124999,1.795214843749989],[-59.66850585937499,1.842333984374989],[-59.69853515624999,1.861474609374994],[-59.74072265624999,1.874169921874995],[-59.756201171874984,1.900634765625],[-59.751757812499996,1.96240234375],[-59.743505859374984,2.121630859374989],[-59.75522460937499,2.274121093749997],[-59.84912109374999,2.327050781249994],[-59.8896484375,2.362939453124994],[-59.96079101562499,2.58837890625],[-59.99433593749999,2.689990234374989],[-59.99589843749999,2.765429687499989],[-59.972314453124994,2.990478515625],[-59.945654296874984,3.087841796874997],[-59.873046875,3.283105468749994],[-59.83115234374999,3.34921875],[-59.82880859374999,3.398583984374994],[-59.83305664062498,3.462158203125],[-59.854394531249994,3.5875],[-59.73164062499999,3.666552734374989],[-59.67900390624999,3.699804687499991],[-59.67021484374998,3.752734374999989],[-59.604443359375,3.819677734374991],[-59.575390625,3.883447265624994],[-59.551123046874984,3.933544921874998],[-59.557763671874994,3.960009765624989],[-59.58642578124999,3.975390624999988],[-59.620214843749984,4.023144531249997],[-59.69121093749998,4.160400390625],[-59.71689453124999,4.188183593749997],[-59.73857421874998,4.226757812499997],[-59.727490234375,4.287646484374989],[-59.69970703125001,4.353515625],[-59.70327148437499,4.381103515625],[-59.74580078125,4.416650390624994],[-59.83334960937499,4.475927734374991],[-59.906103515625,4.480322265624991],[-59.962353515625,4.501708984374999],[-60.045019531249984,4.504589843749997],[-60.11113281249999,4.511181640624997],[-60.14863281249999,4.533251953124989],[-60.14091796874998,4.569628906249989],[-60.124560546874996,4.59765625],[-60.068945312499984,4.666650390624994],[-60.03178710937498,4.740527343749988],[-60.02675781249999,4.812695312499997],[-60.015478515624984,4.907519531249989],[-59.999365234374984,4.98984375],[-59.990673828125,5.082861328124991],[-60.078076171875004,5.143994140624997],[-60.10595703125,5.194238281249993],[-60.142041015625,5.238818359374989],[-60.181738281249984,5.238818359374989],[-60.24165039062499,5.257958984374994],[-60.335205078125,5.199316406249991],[-60.408789062499984,5.21015625],[-60.45952148437498,5.188085937499991],[-60.57641601562499,5.192480468749991],[-60.6513671875,5.221142578124997],[-60.74213867187499,5.202050781249994],[-60.95400390625,5.437402343749994],[-61.1671875,5.67421875],[-61.376806640624984,5.906982421875],[-61.3908203125,5.938769531249989],[-61.303125,6.049511718749996],[-61.22495117187499,6.129199218749989],[-61.15947265624999,6.174414062499991],[-61.128710937499996,6.214306640624997],[-61.15229492187499,6.385107421874991],[-61.151025390624994,6.446533203125],[-61.181591796875004,6.513378906249997],[-61.20361328124999,6.58837890625],[-61.17724609375,6.650927734374989],[-61.14560546874999,6.69453125],[-61.10478515624998,6.711376953124996],[-61.00708007812499,6.726611328124988],[-60.93798828124999,6.732763671874991],[-60.91357421875,6.7578125],[-60.87333984374999,6.786914062499989],[-60.82084960937498,6.788476562499993],[-60.717919921875,6.768310546875],[-60.671044921874994,6.805957031249989],[-60.586083984374994,6.857080078124994],[-60.39501953125,6.945361328124989],[-60.35209960937499,7.002880859374997],[-60.32207031249998,7.092041015625],[-60.32548828124998,7.133984375],[-60.34506835937499,7.15],[-60.39238281249998,7.16455078125],[-60.46494140625,7.166552734374988],[-60.523193359375,7.143701171874994],[-60.583203125,7.156201171874996],[-60.63330078125,7.211083984374994],[-60.636181640625004,7.256591796875],[-60.60654296875,7.320849609374988],[-60.62373046874999,7.363330078124988],[-60.71923828125,7.498681640624994],[-60.71865234374999,7.535937499999989],[-60.64946289062499,7.596630859374996],[-60.610107421875,7.648339843749994],[-60.55634765625,7.772021484374988],[-60.51362304687499,7.813183593749997],[-60.38061523437499,7.82763671875],[-60.346777343749984,7.854003906249999],[-60.27890625,7.91943359375],[-60.178173828125004,7.994042968749993],[-60.03242187499999,8.053564453124991],[-59.99072265625001,8.162011718749994],[-59.96484375,8.191601562499997],[-59.849072265625004,8.248681640624993],[-59.82890624999999,8.279150390624991],[-59.831640624999984,8.305957031249989],[-60.01752929687499,8.54931640625],[-59.980615234374994,8.532617187499994],[-59.836523437499984,8.373828124999989],[-59.75673828125,8.339501953124994],[-59.73994140624999,8.338720703124991],[-59.73930664062498,8.379980468749991],[-59.66611328124999,8.362597656249989],[-59.47690429687499,8.254003906249991],[-59.20024414062498,8.07460937499999],[-58.81157226562499,7.735595703125],[-58.701074218749994,7.606640625],[-58.62661132812499,7.545898437499999],[-58.511083984374984,7.39804687499999],[-58.47729492187499,7.32578125],[-58.48056640625,7.038134765624989],[-58.58291015624999,6.843652343749994],[-58.60791015625,6.697314453124989],[-58.6134765625,6.502539062499991],[-58.67294921875,6.390771484374994],[-58.593994140625,6.451513671874991],[-58.56948242187499,6.627246093749989],[-58.50229492187499,6.73398437499999],[-58.414990234375,6.85117187499999],[-58.2984375,6.87929687499999],[-58.17285156249999,6.829394531249989],[-58.07177734375,6.820605468749989],[-57.98256835937499,6.785888671875],[-57.79287109374999,6.598535156249994],[-57.60756835937499,6.450390625],[-57.54013671874999,6.33154296875],[-57.343652343749994,6.272119140624994],[-57.2275390625,6.178417968749997],[-57.19023437499999,6.097314453124994],[-57.167236328125,5.885009765625],[-57.2052734375,5.564599609374994],[-57.19477539062499,5.5484375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Peru","sov_a3":"PER","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Peru","adm0_a3":"PER","geou_dif":0,"geounit":"Peru","gu_a3":"PER","su_dif":0,"subunit":"Peru","su_a3":"PER","brk_diff":0,"name":"Peru","name_long":"Peru","brk_a3":"PER","brk_name":"Peru","brk_group":null,"abbrev":"Peru","postal":"PE","formal_en":"Republic of Peru","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Peru","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":11,"pop_est":29546963,"gdp_md_est":247300,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PE","iso_a3":"PER","iso_n3":"604","un_a3":"604","wb_a2":"PE","wb_a3":"PER","woe_id":-99,"adm0_a3_is":"PER","adm0_a3_us":"PER","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PER.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-69.96591796874999,-4.2359375],[-69.97202148437499,-4.301171875],[-70.00395507812499,-4.327246093750005],[-70.05332031249999,-4.333105468750005],[-70.12880859375,-4.28662109375],[-70.183984375,-4.298144531250003],[-70.23916015625,-4.301171875],[-70.31689453125,-4.246972656250008],[-70.34365234375,-4.193652343750002],[-70.40463867187499,-4.15009765625001],[-70.5306640625,-4.167578125],[-70.63457031249999,-4.168652343750011],[-70.72158203124998,-4.158886718750011],[-70.79951171875,-4.17333984375],[-70.86601562499997,-4.229589843750006],[-70.915625,-4.2953125],[-70.97368164062499,-4.350488281250009],[-71.14423828125,-4.38720703125],[-71.235009765625,-4.38818359375],[-71.316796875,-4.42431640625],[-71.43828124999999,-4.437597656250006],[-71.52133789062498,-4.4697265625],[-71.668359375,-4.4873046875],[-71.8447265625,-4.504394531249999],[-71.94316406249999,-4.553320312500006],[-71.982421875,-4.574609375],[-72.08251953125,-4.642285156250011],[-72.256787109375,-4.748925781250008],[-72.35283203124997,-4.786035156250009],[-72.468994140625,-4.901269531250009],[-72.608349609375,-5.009570312500003],[-72.69873046875,-5.0671875],[-72.83193359375,-5.09375],[-72.88706054687499,-5.122753906250011],[-72.90747070312499,-5.15771484375],[-72.89580078124999,-5.1982421875],[-72.91826171874999,-5.302539062500003],[-72.95893554687498,-5.495214843750006],[-72.97021484374999,-5.589648437500003],[-72.9798828125,-5.634863281250005],[-73.06806640625,-5.789550781249999],[-73.16289062499999,-5.933398437500003],[-73.209375,-6.028710937500009],[-73.235546875,-6.0984375],[-73.206494140625,-6.15644531250001],[-73.167724609375,-6.260644531250009],[-73.13535156249999,-6.344335937500005],[-73.12631835937499,-6.40087890625],[-73.137353515625,-6.465820312499999],[-73.17744140625,-6.525195312500003],[-73.24033203124999,-6.5640625],[-73.32548828124999,-6.57470703125],[-73.49990234375,-6.679492187500003],[-73.69453125,-6.833789062500003],[-73.75810546874999,-6.90576171875],[-73.77626953125,-6.973535156250009],[-73.804638671875,-7.079882812500003],[-73.79301757812499,-7.135058593750002],[-73.758203125,-7.172753906250009],[-73.72333984375,-7.262792968750006],[-73.72041015625,-7.30927734375001],[-73.749462890625,-7.335351562500008],[-73.804638671875,-7.341210937500009],[-73.85400390625,-7.349902343750003],[-73.891748046875,-7.373144531250006],[-73.929443359375,-7.367285156250005],[-73.964306640625,-7.37890625],[-73.964306640625,-7.416699218750011],[-73.95268554687499,-7.460253906250003],[-73.95849609375,-7.506640625],[-73.98173828124999,-7.535742187500006],[-74.00205078124999,-7.556054687500009],[-73.98173828124999,-7.585058593750006],[-73.946875,-7.611230468750008],[-73.89462890624999,-7.654785156249999],[-73.82207031249997,-7.73896484375001],[-73.76689453124999,-7.753515625],[-73.72041015625,-7.782519531250002],[-73.714599609375,-7.829003906250009],[-73.73203125,-7.875390625],[-73.772705078125,-7.895703125000011],[-73.7755859375,-7.936425781250008],[-73.72041015625,-7.985742187500008],[-73.68266601562499,-8.020605468750004],[-73.644921875,-8.072851562500006],[-73.610107421875,-8.145410156250009],[-73.610107421875,-8.191894531249998],[-73.57236328124999,-8.249902343750007],[-73.54912109374999,-8.29931640625],[-73.54912109374999,-8.345800781250006],[-73.48813476562498,-8.3921875],[-73.43588867187499,-8.427050781250003],[-73.39814453125,-8.458984375],[-73.36040039062499,-8.479296875],[-73.351708984375,-8.51416015625],[-73.35673828124999,-8.566992187500004],[-73.30244140625,-8.654003906250011],[-73.203125,-8.719335937500006],[-73.12255859375,-8.8140625],[-73.0705078125,-8.8828125],[-72.9740234375,-8.9931640625],[-72.970361328125,-9.1201171875],[-73.08984375,-9.265722656250006],[-73.209423828125,-9.411425781250003],[-73.01376953124999,-9.407421875000011],[-72.81425781249999,-9.41035156250001],[-72.60546875,-9.452050781250009],[-72.46474609375,-9.4921875],[-72.379052734375,-9.51015625],[-72.31806640625,-9.556640625],[-72.289013671875,-9.629199218750003],[-72.2658203125,-9.6884765625],[-72.2599609375,-9.774316406250009],[-72.1728515625,-9.844042968750003],[-72.1791015625,-9.91015625],[-72.181591796875,-10.003710937500003],[-72.14296875,-10.005175781250003],[-71.887451171875,-10.005566406250011],[-71.60800781249998,-10.006054687500011],[-71.33940429687499,-9.988574218750001],[-71.237939453125,-9.966015625000011],[-71.11528320312499,-9.852441406250009],[-71.041748046875,-9.81875],[-70.97075195312499,-9.765722656250006],[-70.884521484375,-9.669042968750006],[-70.81625976562499,-9.625292968750003],[-70.75849609375,-9.571679687500009],[-70.67246093749999,-9.51796875],[-70.6369140625,-9.478222656250011],[-70.60791015625,-9.463671875],[-70.54111328124998,-9.4375],[-70.57016601562499,-9.48984375],[-70.592236328125,-9.54345703125],[-70.59916992187499,-9.620507812500009],[-70.56723632812498,-9.70458984375],[-70.59379882812499,-9.767480468750009],[-70.6369140625,-9.82373046875],[-70.63759765625,-9.971777343750006],[-70.63852539062499,-10.181542968750009],[-70.63935546875,-10.361328125],[-70.64033203125,-10.586035156250006],[-70.641552734375,-10.8408203125],[-70.642333984375,-11.01025390625],[-70.59653320312499,-10.976855468750003],[-70.53325195312499,-10.946875],[-70.45087890625,-11.024804687500009],[-70.39228515625,-11.05859375],[-70.3419921875,-11.066699218750003],[-70.29038085937499,-11.064257812500001],[-70.22006835937499,-11.04765625],[-70.06630859375,-10.982421875],[-69.9603515625,-10.929882812500011],[-69.839794921875,-10.933398437500003],[-69.6740234375,-10.9541015625],[-69.57861328124999,-10.951757812500006],[-69.45361328125,-11.16875],[-69.36201171875,-11.327539062500009],[-69.25771484375,-11.50859375],[-69.17373046875,-11.654296875],[-69.04619140624999,-11.875683593750011],[-68.93603515625,-12.066796875],[-68.81870117187499,-12.270410156250009],[-68.68525390625,-12.501953125],[-68.728125,-12.560742187500011],[-68.762890625,-12.607714843750003],[-68.75908203124999,-12.687207031250011],[-68.81181640624997,-12.729589843750006],[-68.86767578125,-12.755175781250003],[-68.933740234375,-12.822070312500001],[-68.97861328124999,-12.88007812500001],[-68.98051757812499,-12.962597656250011],[-68.97226562499999,-13.38232421875],[-68.98344726562499,-13.496386718750003],[-69.017529296875,-13.594433593750011],[-69.05283203124998,-13.643945312500009],[-69.07412109375,-13.682812500000011],[-69.02304687499999,-13.7802734375],[-68.974267578125,-13.975976562500009],[-68.937451171875,-14.0146484375],[-68.89169921874999,-14.094335937500006],[-68.87089843749999,-14.169726562500003],[-68.880322265625,-14.198828125],[-68.97177734374999,-14.234375],[-69.00449218749999,-14.265039062500009],[-69.013134765625,-14.377246093750001],[-69.05278320312499,-14.417578125],[-69.11972656249999,-14.4703125],[-69.16269531249999,-14.53095703125001],[-69.19926757812499,-14.572558593750003],[-69.23491210937499,-14.597070312500009],[-69.25234375,-14.671093750000011],[-69.276025390625,-14.745898437500003],[-69.35947265624999,-14.79531250000001],[-69.37373046875,-14.8875],[-69.37470703125,-14.962988281250006],[-69.330712890625,-15.038964843750007],[-69.18710937499999,-15.198730468749998],[-69.17246093749999,-15.236621093750001],[-69.254296875,-15.332910156250009],[-69.301904296875,-15.399414062499998],[-69.41850585937499,-15.603417968750007],[-69.4208984375,-15.640625],[-69.39189453124999,-15.736914062500007],[-69.21757812499999,-16.14912109375001],[-69.18798828125,-16.18281250000001],[-69.1341796875,-16.221972656250003],[-69.04624023437499,-16.21767578125001],[-68.9134765625,-16.26191406250001],[-68.848828125,-16.312792968750003],[-68.8427734375,-16.337890625],[-68.8578125,-16.354785156250003],[-68.92802734374999,-16.3890625],[-69.00625,-16.433691406250006],[-69.03291015625,-16.475976562500005],[-69.03837890624999,-16.54267578125001],[-69.020703125,-16.6421875],[-69.05454101562499,-16.67431640625],[-69.13251953124998,-16.71308593750001],[-69.19980468749999,-16.76845703125001],[-69.267236328125,-16.8609375],[-69.38154296875,-17.00136718750001],[-69.42109375,-17.0400390625],[-69.43833007812498,-17.08837890625],[-69.5033203125,-17.104785156250003],[-69.62485351562499,-17.2001953125],[-69.645703125,-17.24853515625],[-69.62587890625,-17.29443359375],[-69.56381835937499,-17.33291015625001],[-69.521923828125,-17.388964843750003],[-69.51098632812499,-17.46035156250001],[-69.51108398437499,-17.5048828125],[-69.51093749999998,-17.506054687500008],[-69.58642578125,-17.5732421875],[-69.684765625,-17.64980468750001],[-69.806103515625,-17.664941406250005],[-69.85209960937499,-17.70380859375001],[-69.84150390625,-17.78515625],[-69.80244140625,-17.9],[-69.80258789062499,-17.990234375],[-69.83969726562499,-18.09345703125001],[-69.92636718749999,-18.2060546875],[-70.05908203125,-18.283496093750003],[-70.1837890625,-18.3251953125],[-70.28227539062499,-18.32539062500001],[-70.37749023437499,-18.33359375],[-70.41826171874999,-18.34560546875001],[-70.4916015625,-18.277734375],[-70.81748046874999,-18.052539062500003],[-70.94169921874999,-17.93203125],[-71.056591796875,-17.87568359375001],[-71.33696289062499,-17.68251953125001],[-71.36494140624998,-17.62050781250001],[-71.3994140625,-17.421972656250006],[-71.43588867187499,-17.366015625],[-71.5322265625,-17.29433593750001],[-71.77446289062499,-17.198828125],[-71.868359375,-17.151074218750008],[-71.96689453124999,-17.0640625],[-72.111279296875,-17.002539062500002],[-72.26860351562499,-16.87617187500001],[-72.3625,-16.775],[-72.46767578125,-16.708105468750006],[-72.7939453125,-16.614550781250003],[-72.95771484375,-16.520898437500005],[-73.26376953124999,-16.38857421875001],[-73.40004882812498,-16.304296875],[-73.72768554687498,-16.20166015625],[-73.82495117187499,-16.152832031249996],[-74.14707031249999,-15.9125],[-74.37290039062499,-15.833984375],[-74.5548828125,-15.699023437500005],[-75.104248046875,-15.411914062500001],[-75.19052734374999,-15.320117187500001],[-75.274560546875,-15.178125],[-75.39658203124999,-15.093554687500001],[-75.533642578125,-14.89921875],[-75.7376953125,-14.784960937500003],[-75.93388671874999,-14.63359375],[-76.006298828125,-14.495800781250011],[-76.136474609375,-14.3203125],[-76.17514648437499,-14.226660156250006],[-76.289013671875,-14.133105468750003],[-76.297021484375,-13.948437500000011],[-76.37646484375,-13.863085937500003],[-76.31948242187498,-13.821484375000011],[-76.259228515625,-13.802832031250006],[-76.18393554687499,-13.515234375],[-76.2236328125,-13.371191406250006],[-76.42734375,-13.109960937500006],[-76.5021484375,-12.984375],[-76.55522460937499,-12.82343750000001],[-76.637109375,-12.72802734375],[-76.7580078125,-12.527148437500003],[-76.83212890624999,-12.348730468750004],[-76.994091796875,-12.21923828125],[-77.03813476562499,-12.172753906250007],[-77.0626953125,-12.106835937500009],[-77.152734375,-12.060351562500003],[-77.1576171875,-11.9234375],[-77.2203125,-11.663378906250003],[-77.30991210937499,-11.532421875000011],[-77.633203125,-11.287792968750011],[-77.63857421875,-11.193554687500011],[-77.664306640625,-11.022070312500006],[-77.736083984375,-10.83671875],[-78.095458984375,-10.260644531250009],[-78.18559570312499,-10.089062500000011],[-78.2755859375,-9.810351562500003],[-78.35649414062499,-9.65205078125001],[-78.44565429687499,-9.37060546875],[-78.58012695312499,-9.156640625],[-78.66459960937497,-8.97109375],[-78.75458984375,-8.740429687500011],[-78.76225585937499,-8.616992187500003],[-78.92539062499998,-8.404589843750003],[-79.01225585937499,-8.210156250000011],[-79.16440429687499,-8.047167968750003],[-79.31284179687499,-7.923242187500009],[-79.37724609374999,-7.835546875],[-79.5888671875,-7.418945312500001],[-79.61772460937499,-7.295605468750012],[-79.761962890625,-7.066503906250006],[-79.9046875,-6.901660156250003],[-79.99497070312499,-6.768945312500009],[-80.11025390625,-6.649609375000011],[-80.81162109374999,-6.2822265625],[-81.05844726562498,-6.12939453125],[-81.142041015625,-6.056738281250005],[-81.18051757812499,-5.9423828125],[-81.164306640625,-5.875292968750003],[-81.09184570312499,-5.812402343750009],[-80.991650390625,-5.8609375],[-80.9306640625,-5.8408203125],[-80.88271484375,-5.758984375000011],[-80.88193359374999,-5.635058593750003],[-80.943115234375,-5.475390625],[-81.16767578124998,-5.167089843750005],[-81.15073242187498,-5.101855468750003],[-81.10849609374998,-5.02783203125],[-81.195068359375,-4.879492187500005],[-81.28940429687499,-4.7607421875],[-81.33662109375,-4.66953125],[-81.283203125,-4.322265625],[-81.23203125,-4.234277343750009],[-80.89194335937499,-3.881640625],[-80.798583984375,-3.731054687500005],[-80.652734375,-3.63818359375],[-80.503662109375,-3.49609375],[-80.324658203125,-3.387890625000011],[-80.29833984375,-3.406445312500011],[-80.27353515624999,-3.424609375],[-80.271875,-3.461035156250005],[-80.26523437499999,-3.492480468750003],[-80.24541015624999,-3.522167968750011],[-80.24375,-3.576757812500005],[-80.22060546874998,-3.613183593750009],[-80.2189453125,-3.654492187500011],[-80.21728515625,-3.710742187500003],[-80.22885742187499,-3.738867187500006],[-80.21757812499999,-3.787695312500005],[-80.17924804687499,-3.877734375],[-80.19414062499999,-3.905859375],[-80.23051757812499,-3.924023437500011],[-80.26689453124999,-3.948828125],[-80.30327148437499,-4.005078125000011],[-80.357861328125,-4.00341796875],[-80.43720703125,-3.978613281250005],[-80.49013671875,-4.010058593750003],[-80.510009765625,-4.069531250000011],[-80.49345703124999,-4.119140625],[-80.4884765625,-4.16552734375],[-80.453759765625,-4.205175781250006],[-80.35288085937499,-4.20849609375],[-80.44384765625,-4.335839843750009],[-80.4884765625,-4.393652343750006],[-80.47856445312499,-4.430078125],[-80.42416992187498,-4.46142578125],[-80.38349609375,-4.463671875],[-80.293359375,-4.416796875],[-80.232177734375,-4.349023437500009],[-80.1974609375,-4.31103515625],[-80.13955078124998,-4.296093750000011],[-80.06352539062499,-4.327539062500009],[-79.962890625,-4.390332031250011],[-79.8451171875,-4.445898437500005],[-79.797265625,-4.476367187500003],[-79.71098632812499,-4.467578125],[-79.63852539062498,-4.454882812500003],[-79.57768554687499,-4.500585937500006],[-79.51616210937499,-4.539160156250006],[-79.501904296875,-4.670605468750011],[-79.45576171875,-4.766210937500006],[-79.3994140625,-4.840039062500011],[-79.33095703125,-4.927832031250006],[-79.26811523437499,-4.957617187500006],[-79.186669921875,-4.958203125000011],[-79.07626953124999,-4.990625],[-79.03330078124999,-4.969140625],[-78.995263671875,-4.908007812500003],[-78.97539062499997,-4.873242187500011],[-78.919189453125,-4.8583984375],[-78.914208984375,-4.818652343750002],[-78.92578125,-4.770703125000011],[-78.9076171875,-4.714453125],[-78.8615234375,-4.6650390625],[-78.74306640625,-4.592675781250009],[-78.68603515625,-4.562402343750008],[-78.674462890625,-4.517675781250006],[-78.65292968749999,-4.458203125000011],[-78.66123046874999,-4.425097656250003],[-78.68515625,-4.383984375000011],[-78.67939453125,-4.325878906250011],[-78.64799804687499,-4.248144531250006],[-78.60336914062498,-4.157324218750006],[-78.56513671875,-4.041601562500006],[-78.550439453125,-3.986914062500006],[-78.50908203124999,-3.9521484375],[-78.49345703124999,-3.902050781250011],[-78.47104492187499,-3.843066406250003],[-78.41977539062499,-3.77685546875],[-78.42143554687499,-3.705761718750011],[-78.39995117187499,-3.67431640625],[-78.39804687499999,-3.594824218750005],[-78.34726562499999,-3.43125],[-78.345361328125,-3.397363281250009],[-78.32304687499999,-3.38828125],[-78.28417968749999,-3.399023437500005],[-78.250732421875,-3.436132812500006],[-78.240380859375,-3.472558593750009],[-78.226318359375,-3.489160156250009],[-78.19487304687499,-3.48583984375],[-78.15849609374999,-3.465136718750002],[-78.16098632812499,-3.43212890625],[-78.187451171875,-3.399804687500009],[-78.19462890624997,-3.38046875],[-78.18330078125,-3.350195312500006],[-78.12822265624999,-3.283886718750011],[-78.06791992187499,-3.206835937500003],[-77.9384765625,-3.046972656250005],[-77.860595703125,-2.981640625000011],[-77.65898437499999,-2.912402343750003],[-77.506494140625,-2.859960937500006],[-77.36005859375,-2.809667968750006],[-77.16147460937499,-2.737695312500009],[-76.88076171875,-2.635937500000011],[-76.6791015625,-2.562597656250005],[-76.49936523437499,-2.432324218750011],[-76.36015624999999,-2.331347656250003],[-76.24091796875,-2.243945312500003],[-76.08979492187498,-2.133105468750003],[-75.88544921874998,-1.893457031250008],[-75.74453125,-1.728125],[-75.64165039062499,-1.607324218750009],[-75.570556640625,-1.53125],[-75.5138671875,-1.316308593750009],[-75.449169921875,-1.071191406250009],[-75.42041015625,-0.962207031250003],[-75.40805664062499,-0.92431640625],[-75.380126953125,-0.940234375],[-75.34819335937499,-0.966796875],[-75.30917968749999,-0.968066406250003],[-75.272412109375,-0.966796875],[-75.24960937499999,-0.951855468750011],[-75.28359375,-0.707128906250006],[-75.27871093749998,-0.65390625],[-75.259375,-0.590136718750003],[-75.26323242187499,-0.555371093750011],[-75.32524414062499,-0.506542968750011],[-75.42470703125,-0.408886718750011],[-75.465966796875,-0.32177734375],[-75.49106445312499,-0.248339843750003],[-75.56059570312499,-0.200097656250009],[-75.63203125,-0.157617187500009],[-75.62626953124999,-0.122851562500003],[-75.583740234375,-0.122851562500003],[-75.47597656249998,-0.157128906250009],[-75.398388671875,-0.14599609375],[-75.340478515625,-0.1421875],[-75.28447265624999,-0.106542968750006],[-75.224609375,-0.041748046875],[-75.18408203125,-0.041748046875],[-75.13837890625,-0.050488281250011],[-75.0546875,-0.11669921875],[-75.00498046874999,-0.155859375],[-74.9453125,-0.188183593750011],[-74.888818359375,-0.199414062500011],[-74.8375,-0.203320312500011],[-74.8017578125,-0.200097656250009],[-74.78046874999998,-0.24453125],[-74.75537109375,-0.298632812500003],[-74.691650390625,-0.335253906250003],[-74.616357421875,-0.370019531250009],[-74.555078125,-0.429882812500011],[-74.5138671875,-0.470117187500009],[-74.46518554687499,-0.517675781250006],[-74.41787109375,-0.580664062500006],[-74.37490234375,-0.69140625],[-74.353125,-0.7666015625],[-74.32861328125,-0.808398437500003],[-74.33442382812498,-0.850878906250003],[-74.28388671875,-0.927832031250006],[-74.24638671874999,-0.970605468750008],[-74.18076171874998,-0.997753906250011],[-74.05439453125,-1.028613281250003],[-73.98681640625,-1.09814453125],[-73.926953125,-1.125195312500011],[-73.86318359375,-1.196679687500009],[-73.80717773437499,-1.217968750000011],[-73.7357421875,-1.214160156250003],[-73.66430664062499,-1.248828125],[-73.61025390625,-1.31640625],[-73.57548828124997,-1.4013671875],[-73.52138671875,-1.44970703125],[-73.4943359375,-1.53662109375],[-73.52524414062499,-1.638867187500011],[-73.4962890625,-1.693066406250011],[-73.44028320312499,-1.737402343750006],[-73.34951171875,-1.783886718750011],[-73.26645507812499,-1.772265625],[-73.22397460937499,-1.787695312500006],[-73.19697265625,-1.830273437500011],[-73.18149414062499,-1.88037109375],[-73.14521484375,-2.003320312500008],[-73.12651367187499,-2.0810546875],[-73.16020507812499,-2.156347656250006],[-73.17265624999999,-2.208398437500009],[-73.1544921875,-2.278222656250009],[-73.06816406249999,-2.31201171875],[-72.9896484375,-2.339746093750009],[-72.94111328125,-2.39404296875],[-72.887158203125,-2.408496093750003],[-72.81123046875,-2.405468750000011],[-72.71416015624999,-2.3921875],[-72.66015624999999,-2.361035156250011],[-72.62534179687499,-2.351660156250006],[-72.58671874999999,-2.365136718750009],[-72.50068359375,-2.39501953125],[-72.39560546874999,-2.428906250000011],[-72.30073242187498,-2.409277343750006],[-72.21845703125,-2.400488281250006],[-72.13681640624999,-2.380664062500002],[-72.05380859374999,-2.324609375],[-71.98427734375,-2.3265625],[-71.93247070312499,-2.288671875],[-71.86728515624999,-2.227734375000011],[-71.802734375,-2.166308593750003],[-71.75253906249999,-2.152734375],[-71.67148437499999,-2.18212890625],[-71.55947265625,-2.22421875],[-71.49609375,-2.279199218750009],[-71.4474609375,-2.29375],[-71.39697265625,-2.334082031250005],[-71.30009765624997,-2.334863281250009],[-71.19638671874999,-2.313085937500006],[-71.11337890624999,-2.245410156250002],[-71.027294921875,-2.225781250000011],[-70.96855468749999,-2.206835937500003],[-70.91455078125,-2.218554687500003],[-70.70537109374999,-2.341992187500011],[-70.64799804687499,-2.40576171875],[-70.57587890625,-2.418261718750003],[-70.516796875,-2.453125],[-70.418212890625,-2.49072265625],[-70.36416015625,-2.529296875],[-70.29462890625,-2.552539062500002],[-70.24443359374997,-2.606542968750006],[-70.16474609375,-2.639843750000011],[-70.095849609375,-2.658203125],[-70.06474609374997,-2.70166015625],[-70.064453125,-2.730761718750003],[-70.07402343749999,-2.750195312500011],[-70.14707031249999,-2.8640625],[-70.29013671874999,-3.087304687500009],[-70.41899414062499,-3.288281250000011],[-70.62167968749999,-3.604589843750006],[-70.735107421875,-3.781542968750003],[-70.706201171875,-3.788964843750009],[-70.5296875,-3.866406250000011],[-70.48583984375,-3.869335937500011],[-70.42109375,-3.849609375],[-70.37919921874999,-3.81875],[-70.339501953125,-3.814355468750008],[-70.2984375,-3.84423828125],[-70.24028320312499,-3.882714843750008],[-70.198388671875,-3.9951171875],[-70.16752929687499,-4.050195312500008],[-70.09477539062499,-4.0921875],[-70.0171875,-4.162011718750009],[-69.96591796874999,-4.2359375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Trinidad and Tobago","sov_a3":"TTO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Trinidad and Tobago","adm0_a3":"TTO","geou_dif":0,"geounit":"Trinidad and Tobago","gu_a3":"TTO","su_dif":0,"subunit":"Trinidad and Tobago","su_a3":"TTO","brk_diff":0,"name":"Trinidad and Tobago","name_long":"Trinidad and Tobago","brk_a3":"TTO","brk_name":"Trinidad and Tobago","brk_group":null,"abbrev":"Tr.T.","postal":"TT","formal_en":"Republic of Trinidad and Tobago","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Trinidad and Tobago","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":1310000,"gdp_md_est":29010,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TT","iso_a3":"TTO","iso_n3":"780","un_a3":"780","wb_a2":"TT","wb_a3":"TTO","woe_id":-99,"adm0_a3_is":"TTO","adm0_a3_us":"TTO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":19,"long_len":19,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"TTO.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.012109374999966,10.134326171874989],[-61.174267578124955,10.078027343749964],[-61.59667968750003,10.064648437499995],[-61.77167968749998,10.085058593749977],[-61.906103515625,10.069140625000031],[-61.661474609375006,10.191699218750031],[-61.63271484374999,10.243408203125],[-61.52885742187499,10.253125],[-61.49931640624999,10.268554687499972],[-61.46474609374996,10.538964843749993],[-61.478271484374964,10.603369140624977],[-61.49882812499998,10.63886718750001],[-61.54091796874993,10.66445312499998],[-61.63530273437499,10.699365234374993],[-61.65117187499993,10.718066406249974],[-61.59184570312493,10.747949218750023],[-61.46484375,10.764453125000017],[-61.37001953124994,10.79682617187504],[-61.17373046875002,10.803320312500034],[-61.07851562499999,10.831933593749993],[-60.917626953124966,10.84023437499999],[-60.99672851562502,10.716162109375034],[-61.033740234375024,10.669873046875026],[-61.01933593750002,10.558105468749986],[-61.0375,10.482275390624991],[-61.016406249999925,10.386376953124994],[-60.968457031249955,10.323388671875037],[-60.99960937499998,10.261474609375043],[-61.00410156250002,10.167822265624963],[-61.012109374999966,10.134326171874989]]],[[[-60.75629882812498,11.178515624999987],[-60.81064453125003,11.168603515625023],[-60.80429687499998,11.208398437500037],[-60.708935546875004,11.277246093750037],[-60.56279296874999,11.32353515624996],[-60.525488281250034,11.325390624999983],[-60.54648437499994,11.263720703125031],[-60.75629882812498,11.178515624999987]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Paraguay","sov_a3":"PRY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Paraguay","adm0_a3":"PRY","geou_dif":0,"geounit":"Paraguay","gu_a3":"PRY","su_dif":0,"subunit":"Paraguay","su_a3":"PRY","brk_diff":0,"name":"Paraguay","name_long":"Paraguay","brk_a3":"PRY","brk_name":"Paraguay","brk_group":null,"abbrev":"Para.","postal":"PY","formal_en":"Republic of Paraguay","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Paraguay","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":2,"pop_est":6995655,"gdp_md_est":28890,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PY","iso_a3":"PRY","iso_n3":"600","un_a3":"600","wb_a2":"PY","wb_a3":"PRY","woe_id":-99,"adm0_a3_is":"PRY","adm0_a3_us":"PRY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"PRY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-58.15976562499999,-20.164648437500006],[-58.13779296874999,-20.237304687499996],[-58.12460937499999,-20.29345703125],[-58.09150390625,-20.333203125],[-58.058447265625,-20.38613281250001],[-58.025390625,-20.415820312500003],[-58.00224609374998,-20.465429687500006],[-58.00883789062499,-20.52167968750001],[-57.99560546875,-20.59443359375001],[-57.97905273437498,-20.657324218750002],[-57.9625,-20.673828125],[-57.91513671874999,-20.69033203125001],[-57.89140625,-20.74746093750001],[-57.90849609374998,-20.7763671875],[-57.90190429687499,-20.809375],[-57.88481445312499,-20.84169921875001],[-57.90048828124999,-20.873046875],[-57.89223632812499,-20.897070312500006],[-57.86000976562499,-20.918554687500006],[-57.83022460937499,-20.99794921875001],[-57.82695312499999,-21.13359375],[-57.86000976562499,-21.20625],[-57.886474609375,-21.26582031250001],[-57.89306640624999,-21.302246093749996],[-57.87324218749999,-21.355078125],[-57.90629882812498,-21.41796875],[-57.94599609374999,-21.49404296875001],[-57.93608398437498,-21.546972656250002],[-57.929443359375,-21.59658203125001],[-57.92617187499999,-21.649511718750002],[-57.91621093749999,-21.69912109375001],[-57.929443359375,-21.751953125],[-57.94267578124999,-21.798339843749996],[-57.949316406249984,-21.851171875],[-57.932763671874994,-21.910742187500006],[-57.9625,-21.966992187500008],[-57.97905273437498,-22.006640625],[-57.98569335937499,-22.046386718749996],[-57.95590820312499,-22.109179687500003],[-57.879833984375,-22.13564453125001],[-57.8203125,-22.142285156250008],[-57.76406249999999,-22.109179687500003],[-57.72109374999999,-22.09921875],[-57.64169921874999,-22.129003906250006],[-57.568945312499984,-22.181933593750003],[-57.476367187499996,-22.188574218750006],[-57.39365234374999,-22.19843750000001],[-57.33085937499999,-22.215039062500008],[-57.238232421875,-22.19521484375001],[-57.14233398437499,-22.215039062500008],[-57.029882812499984,-22.244824218750008],[-56.93725585937499,-22.271289062500003],[-56.844677734375,-22.2646484375],[-56.77519531249999,-22.261328125],[-56.70244140624999,-22.231542968750006],[-56.6330078125,-22.23486328125],[-56.580078125,-22.181933593750003],[-56.55029296875,-22.13564453125001],[-56.52382812499999,-22.1025390625],[-56.44780273437498,-22.076171875],[-56.39487304687499,-22.09267578125001],[-56.35185546874999,-22.17861328125001],[-56.27578125,-22.22822265625001],[-56.246044921875,-22.2646484375],[-56.18984375,-22.28115234375001],[-56.06748046874999,-22.284472656250003],[-55.99140625,-22.28115234375001],[-55.90537109374999,-22.3076171875],[-55.84916992187498,-22.3076171875],[-55.79956054687499,-22.35390625],[-55.75327148437499,-22.41015625],[-55.74663085937498,-22.512695312499996],[-55.70366210937498,-22.592089843750003],[-55.647412109375,-22.621875],[-55.61767578125,-22.671484375],[-55.62758789062499,-22.740917968750008],[-55.65405273437499,-22.810351562500003],[-55.65073242187499,-22.886425781250008],[-55.620996093749994,-22.955859375],[-55.620996093749994,-23.02529296875001],[-55.60112304687498,-23.0947265625],[-55.561425781249994,-23.154296875],[-55.54819335937499,-23.25019531250001],[-55.554833984374994,-23.319628906250003],[-55.52836914062499,-23.359375],[-55.518457031249994,-23.415625],[-55.53496093749999,-23.461914062499996],[-55.541601562499984,-23.524707031250003],[-55.53828125,-23.58095703125001],[-55.518457031249994,-23.627246093750003],[-55.458886718749994,-23.68671875000001],[-55.4423828125,-23.792578125],[-55.4423828125,-23.865332031250006],[-55.415917968749994,-23.951367187500008],[-55.36630859374999,-23.991015625],[-55.28691406249999,-24.004296875],[-55.1943359375,-24.01748046875001],[-55.08188476562499,-23.99765625],[-54.982666015625,-23.97451171875001],[-54.92646484374999,-23.951367187500008],[-54.817285156249994,-23.888476562500003],[-54.72138671874999,-23.852148437500002],[-54.671777343749994,-23.82900390625001],[-54.62548828125,-23.8125],[-54.52958984374999,-23.852148437500002],[-54.44023437499999,-23.90175781250001],[-54.37080078124999,-23.97119140625],[-54.241796874999984,-24.047265625],[-54.26689453124999,-24.06582031250001],[-54.31826171874999,-24.128125],[-54.317285156249994,-24.201269531250006],[-54.28100585937499,-24.30605468750001],[-54.312939453125,-24.528125],[-54.412988281249994,-24.867480468750003],[-54.4541015625,-25.065234375],[-54.43623046875,-25.12128906250001],[-54.47314453125,-25.22021484375],[-54.610546875,-25.432714843750006],[-54.615869140624994,-25.57607421875001],[-54.63193359374999,-26.00576171875001],[-54.67773437499999,-26.30878906250001],[-54.755078125,-26.53291015625001],[-54.82548828124999,-26.65224609375001],[-54.888916015625,-26.666796875],[-54.934472656249994,-26.70253906250001],[-54.962158203125,-26.759375],[-55.013623046875,-26.806640625],[-55.08886718749999,-26.84453125],[-55.129638671875,-26.886035156250003],[-55.1359375,-26.93115234375],[-55.20800781249999,-26.96015625],[-55.34580078124999,-26.973144531249996],[-55.426660156249994,-27.00927734375],[-55.450634765625,-27.068359375],[-55.496728515624994,-27.115332031250002],[-55.56489257812499,-27.15],[-55.597265624999984,-27.207617187500006],[-55.59379882812499,-27.2880859375],[-55.63291015624999,-27.35712890625001],[-55.71464843749999,-27.41484375],[-55.789990234375,-27.41640625],[-55.85903320312499,-27.361914062500006],[-55.95146484374999,-27.32568359375],[-56.06733398437499,-27.307714843750002],[-56.1640625,-27.321484375],[-56.24169921875,-27.366796875],[-56.310546875,-27.43876953125],[-56.370507812499994,-27.53740234375],[-56.437158203124994,-27.553808593750002],[-56.51054687499998,-27.487890625],[-56.60336914062499,-27.467871093750006],[-56.715722656249994,-27.49375],[-56.80517578125,-27.484667968750003],[-56.87172851562499,-27.440625],[-56.97397460937499,-27.43574218750001],[-57.11181640625,-27.47011718750001],[-57.39125976562499,-27.43046875],[-57.81220703125,-27.31660156250001],[-58.16826171874999,-27.2734375],[-58.604833984374984,-27.31435546875001],[-58.641748046874994,-27.19609375],[-58.618603515625,-27.132128906250003],[-58.547705078124984,-27.083984375],[-58.50322265624998,-27.02949218750001],[-58.485253906249994,-26.968457031250008],[-58.43632812499998,-26.921972656250006],[-58.3564453125,-26.890039062500005],[-58.32255859374999,-26.857617187500008],[-58.33466796875,-26.82490234375001],[-58.31767578124999,-26.795898437499996],[-58.2716796875,-26.77070312500001],[-58.245556640625,-26.731054687500006],[-58.23935546874999,-26.676855468750002],[-58.22207031249999,-26.65],[-58.191308593749994,-26.629980468750002],[-58.187939453125,-26.592578125],[-58.205175781249984,-26.4765625],[-58.20302734374999,-26.381445312500006],[-58.18149414062499,-26.307421875],[-58.1546875,-26.26259765625001],[-58.135644531249994,-26.25146484375],[-58.118066406249994,-26.224902343750003],[-58.11113281249999,-26.18017578125],[-58.082421875,-26.13857421875001],[-57.94311523437499,-26.05292968750001],[-57.890625,-26.006542968750008],[-57.88623046875,-25.964257812500005],[-57.865234375,-25.90693359375001],[-57.78247070312499,-25.78369140625],[-57.75708007812499,-25.72597656250001],[-57.75478515624999,-25.697070312500003],[-57.725488281249994,-25.66718750000001],[-57.625830078124984,-25.598730468750006],[-57.57167968749999,-25.534179687499996],[-57.56313476562499,-25.473730468750006],[-57.58715820312499,-25.405078125],[-57.64389648437499,-25.32841796875],[-57.8216796875,-25.13642578125001],[-57.959814453125,-25.04921875],[-58.136474609375,-24.977148437500006],[-58.25278320312499,-24.95380859375001],[-58.308691406249984,-24.979101562500002],[-58.365380859374994,-24.959277343750003],[-58.422802734375004,-24.894140625],[-58.51962890624999,-24.842871093750006],[-58.724023437499994,-24.78662109375],[-59.187255859375,-24.562304687500003],[-59.37294921874999,-24.45390625],[-59.435400390625,-24.387011718750003],[-59.60859375,-24.26679687500001],[-59.892480468749994,-24.093554687500003],[-60.110302734375,-24.00917968750001],[-60.26220703124999,-24.013964843750003],[-60.50537109374999,-23.96357421875001],[-60.83984375,-23.85810546875001],[-61.032910156250004,-23.755664062500003],[-61.084716796875,-23.65644531250001],[-61.20839843749999,-23.55703125],[-61.403955078124994,-23.45751953125],[-61.505517578124994,-23.39199218750001],[-61.513037109374984,-23.360449218750006],[-61.57099609375,-23.319433593750002],[-61.67949218749999,-23.26875],[-61.79853515625,-23.18203125],[-61.92802734374998,-23.05927734375001],[-62.0666015625,-22.869433593750003],[-62.21416015624998,-22.612402343750006],[-62.372509765625004,-22.43916015625001],[-62.54155273437499,-22.349609375],[-62.6259765625,-22.290429687500005],[-62.62568359374999,-22.2615234375],[-62.650976562499984,-22.233691406250003],[-62.628515624999984,-22.183984375],[-62.566943359374996,-21.988671875],[-62.47783203124999,-21.70527343750001],[-62.38544921874999,-21.41171875],[-62.27666015624998,-21.066015625],[-62.276513671874994,-20.82080078125],[-62.276318359375,-20.5625],[-62.12163085937498,-20.34990234375],[-62.011816406249984,-20.199023437500003],[-61.916943359375,-20.05537109375001],[-61.820898437499984,-19.80947265625001],[-61.75683593749999,-19.6453125],[-61.51181640624999,-19.606445312499996],[-61.09599609374999,-19.52099609375],[-60.88876953124999,-19.478515625],[-60.45161132812499,-19.388769531250006],[-60.00737304687499,-19.29755859375001],[-59.54086914062499,-19.291796875],[-59.09052734375,-19.286230468750006],[-58.741113281249994,-19.490234375],[-58.47421875,-19.64609375],[-58.18017578125,-19.81787109375],[-58.16005859374999,-19.85488281250001],[-58.13994140624999,-19.998828125],[-58.15976562499999,-20.164648437500006]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Suriname","sov_a3":"SUR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Suriname","adm0_a3":"SUR","geou_dif":0,"geounit":"Suriname","gu_a3":"SUR","su_dif":0,"subunit":"Suriname","su_a3":"SUR","brk_diff":0,"name":"Suriname","name_long":"Suriname","brk_a3":"SUR","brk_name":"Suriname","brk_group":null,"abbrev":"Sur.","postal":"SR","formal_en":"Republic of Suriname","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Suriname","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":7,"mapcolor13":6,"pop_est":481267,"gdp_md_est":4254,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SR","iso_a3":"SUR","iso_n3":"740","un_a3":"740","wb_a2":"SR","wb_a3":"SUR","woe_id":-99,"adm0_a3_is":"SUR","adm0_a3_us":"SUR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SUR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-54.15595703125,5.35898437499999],[-54.240185546875,5.288232421874994],[-54.331640624999984,5.187402343749994],[-54.45219726562499,5.013476562499989],[-54.446875,4.958789062499989],[-54.47333984374999,4.914697265624994],[-54.4796875,4.836523437499991],[-54.471142578125,4.749316406249989],[-54.44023437499999,4.691992187499991],[-54.42607421874998,4.5830078125],[-54.44960937499999,4.485009765624994],[-54.440673828125,4.428027343749989],[-54.416015625,4.337646484375],[-54.396240234375,4.24140625],[-54.398388671875,4.202490234374991],[-54.369140625,4.170947265624989],[-54.34213867187499,4.140039062499994],[-54.35073242187499,4.054101562499994],[-54.255517578124994,3.901074218749997],[-54.19746093749999,3.834423828124997],[-54.11279296875,3.769433593749994],[-54.081982421875,3.705957031249994],[-54.03422851562499,3.62939453125],[-54.00590820312499,3.620410156249988],[-53.990478515625,3.589550781249997],[-54.00595703124999,3.530517578125],[-54.00957031249999,3.448535156249989],[-54.06318359375,3.353320312499988],[-54.18803710937499,3.178759765624988],[-54.203125,3.13818359375],[-54.17070312499999,2.993603515624997],[-54.18808593749999,2.874853515624991],[-54.1955078125,2.81787109375],[-54.256738281249994,2.713720703124991],[-54.402001953124994,2.461523437499991],[-54.485546875,2.416113281249991],[-54.53593749999999,2.343310546874989],[-54.56840820312498,2.342578124999989],[-54.604736328125,2.335791015624991],[-54.61625976562499,2.326757812499991],[-54.66186523437499,2.327539062499994],[-54.69741210937499,2.359814453124997],[-54.70292968749999,2.39794921875],[-54.72221679687499,2.441650390625],[-54.76684570312499,2.454736328124994],[-54.85166015624999,2.439550781249991],[-54.87607421874999,2.450390625],[-54.92656249999999,2.497363281249989],[-54.968408203124994,2.54833984375],[-54.978662109374994,2.59765625],[-55.005810546875,2.59296875],[-55.0703125,2.54833984375],[-55.11411132812499,2.539208984374994],[-55.14882812499999,2.55078125],[-55.1876953125,2.547509765624994],[-55.286035156249994,2.499658203124994],[-55.34399414062499,2.48876953125],[-55.38535156249999,2.440625],[-55.658935546875,2.41875],[-55.73056640624999,2.406152343749994],[-55.89375,2.489501953125],[-55.9359375,2.5166015625],[-55.957470703125,2.520458984374997],[-55.9755859375,2.515966796874991],[-55.99350585937499,2.497509765624997],[-56.02036132812499,2.392773437499997],[-56.04511718749999,2.364404296874994],[-56.087792968749994,2.34130859375],[-56.12939453125,2.299511718749997],[-56.1376953125,2.259033203125],[-56.07363281249999,2.236767578124997],[-56.02006835937498,2.158154296874997],[-55.96196289062499,2.095117187499994],[-55.91533203124999,2.03955078125],[-55.921630859375,1.976660156249991],[-55.929638671875,1.8875],[-55.963330078125,1.857080078124994],[-56.01992187499999,1.842236328124997],[-56.22714843749999,1.885351562499991],[-56.38583984374999,1.923876953124989],[-56.45283203125,1.932324218749997],[-56.4828125,1.942138671875],[-56.522363281249994,1.974804687499997],[-56.56269531249999,2.005078125],[-56.62719726562499,2.01601562499999],[-56.70434570312499,2.036474609374991],[-56.761132812499994,2.114892578124994],[-56.81982421875,2.226660156249991],[-56.84052734375,2.277148437499988],[-56.88642578125,2.325976562499989],[-56.93149414062499,2.395361328124991],[-56.945214843749994,2.456835937499989],[-56.97929687499999,2.513232421874989],[-56.99711914062498,2.532177734374997],[-57.02348632812498,2.60898437499999],[-57.028955078124994,2.6375],[-57.041943359375,2.64111328125],[-57.060449218749994,2.665673828124994],[-57.096875,2.747851562499989],[-57.105126953124994,2.768261718749997],[-57.12114257812498,2.775537109374994],[-57.16362304687499,2.833251953125],[-57.19736328124999,2.853271484375],[-57.20981445312499,2.8828125],[-57.206933593749994,2.96337890625],[-57.225,3.003076171874994],[-57.23056640624999,3.078564453124997],[-57.231640625,3.10888671875],[-57.248974609375,3.142285156249997],[-57.277929687499984,3.164306640625],[-57.28291015624999,3.218847656249991],[-57.28994140624999,3.353613281249991],[-57.303662109375,3.377099609374994],[-57.42558593749999,3.375439453124997],[-57.43789062499999,3.362255859374997],[-57.490576171874984,3.354296874999989],[-57.54960937499999,3.352832031249989],[-57.60273437499999,3.370947265624991],[-57.646728515625,3.39453125],[-57.656103515625,3.423730468749994],[-57.64946289062499,3.517382812499989],[-57.72036132812499,3.58828125],[-57.832666015624994,3.675976562499997],[-57.86655273437499,3.787255859374994],[-57.90771484375001,3.856689453125],[-58.0322265625,4.001953125],[-58.054296874999984,4.101660156249991],[-58.05449218749998,4.171923828124989],[-58.01074218749999,4.236474609374994],[-57.94975585937499,4.349951171874991],[-57.92470703124999,4.453125],[-57.90625,4.506787109374997],[-57.87470703124999,4.577099609374997],[-57.84599609374999,4.668164062499997],[-57.86787109375,4.724316406249997],[-57.904882812499984,4.779296875],[-57.91704101562498,4.820410156249991],[-57.88110351562499,4.880615234375],[-57.844921875,4.923046875],[-57.8041015625,4.929052734374991],[-57.75200195312498,4.954492187499994],[-57.711083984375,4.991064453124991],[-57.64882812499999,5.000683593749997],[-57.570898437499984,5.004492187499991],[-57.41215820312499,5.004589843749997],[-57.331005859375,5.020166015624994],[-57.30576171874999,5.049560546875],[-57.30957031249999,5.10585937499999],[-57.269287109375,5.157031249999989],[-57.22685546874999,5.178515624999989],[-57.20981445312499,5.195410156249991],[-57.20732421874999,5.214208984374991],[-57.21845703125,5.231542968749991],[-57.23530273437499,5.242871093749997],[-57.27963867187499,5.246777343749997],[-57.318554687500004,5.335351562499993],[-57.291894531249994,5.373974609374997],[-57.25751953124999,5.445166015624991],[-57.24790039062499,5.485253906249994],[-57.19477539062499,5.5484375],[-57.18212890624999,5.52890625],[-57.1408203125,5.643798828125],[-57.13603515624999,5.737207031249994],[-57.104589843749984,5.829394531249989],[-57.056640625,5.938671875],[-56.96982421874999,5.992871093749996],[-56.466015625,5.937744140625],[-56.235595703125,5.885351562499991],[-55.93955078124999,5.795458984374989],[-55.897607421874994,5.699316406249991],[-55.8955078125,5.795458984374989],[-55.909912109375,5.892626953124988],[-55.82817382812499,5.961669921875],[-55.64833984374999,5.985888671874989],[-55.37929687499999,5.952636718749999],[-55.14829101562499,5.993457031249989],[-54.83369140625,5.988330078124988],[-54.35615234375,5.909863281249997],[-54.142333984375,5.856347656249994],[-54.05419921875,5.807910156249989],[-54.03740234374999,5.720507812499989],[-54.04594726562499,5.608886718749999],[-54.08046874999999,5.502246093749989],[-54.15595703125,5.35898437499999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Uruguay","sov_a3":"URY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uruguay","adm0_a3":"URY","geou_dif":0,"geounit":"Uruguay","gu_a3":"URY","su_dif":0,"subunit":"Uruguay","su_a3":"URY","brk_diff":0,"name":"Uruguay","name_long":"Uruguay","brk_a3":"URY","brk_name":"Uruguay","brk_group":null,"abbrev":"Ury.","postal":"UY","formal_en":"Oriental Republic of Uruguay","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uruguay","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":10,"pop_est":3494382,"gdp_md_est":43160,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"UY","iso_a3":"URY","iso_n3":"858","un_a3":"858","wb_a2":"UY","wb_a3":"URY","woe_id":-99,"adm0_a3_is":"URY","adm0_a3_us":"URY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"URY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-53.37060546875,-33.7421875],[-53.419580078124994,-33.77919921875],[-53.47246093749999,-33.849316406250004],[-53.53452148437499,-34.01748046875001],[-53.742919921875,-34.24951171874999],[-53.785302734374994,-34.38037109375],[-54.01025390625,-34.5169921875],[-54.168554687499984,-34.670703125],[-54.27211914062499,-34.66689453125001],[-54.36533203124999,-34.73271484375],[-54.902294921875,-34.93281250000001],[-55.095117187499994,-34.895117187500006],[-55.237890624999984,-34.89580078125],[-55.37060546875,-34.80761718749999],[-55.67314453124999,-34.77568359375],[-55.86293945312499,-34.8109375],[-56.117919921875,-34.90791015625001],[-56.19462890624999,-34.90644531250001],[-56.249951171875,-34.90126953125001],[-56.387841796874994,-34.86103515625001],[-56.4630859375,-34.775390625],[-56.85517578124999,-34.67666015625001],[-57.17070312499999,-34.45234375000001],[-57.54345703124999,-34.448046875],[-57.8291015625,-34.47734375],[-57.87324218749999,-34.44765625],[-57.90214843749998,-34.39013671875],[-57.96123046874998,-34.30693359375],[-58.20703125,-34.10908203125001],[-58.400195312499996,-33.91240234375],[-58.438134765624994,-33.719140625],[-58.411328125,-33.508886718750006],[-58.35336914062499,-33.26005859375],[-58.363525390625,-33.18232421875001],[-58.2921875,-33.13798828125],[-58.221582031249994,-33.12910156250001],[-58.153564453125,-33.06464843750001],[-58.092675781249994,-32.9673828125],[-58.08232421874999,-32.893652343750006],[-58.12958984375,-32.75722656250001],[-58.162207031249984,-32.566503906250006],[-58.201171875,-32.4716796875],[-58.123046875,-32.321875],[-58.11972656249999,-32.24892578125001],[-58.164794921875,-32.18486328125],[-58.17700195312499,-32.11904296875001],[-58.15634765624999,-32.0515625],[-58.160400390625,-31.986523437500008],[-58.18901367187498,-31.92421875],[-58.16748046875,-31.87265625],[-58.09584960937499,-31.8318359375],[-58.042333984374984,-31.769238281250008],[-58.006982421874994,-31.684960937500005],[-57.988867187499984,-31.62060546875],[-57.98798828125,-31.576171875],[-58.009667968749994,-31.534375],[-58.053857421874994,-31.494921875],[-58.03339843749999,-31.416601562500006],[-57.94833984374999,-31.299414062500002],[-57.89335937499999,-31.1953125],[-57.86840820312499,-31.10439453125001],[-57.870068359375,-31.031054687500003],[-57.89829101562499,-30.975195312500006],[-57.88632812499999,-30.93740234375001],[-57.83408203124999,-30.917480468749996],[-57.81059570312498,-30.85859375000001],[-57.8185546875,-30.712011718750006],[-57.87250976562499,-30.591015625],[-57.831201171874994,-30.495214843750006],[-57.71269531249998,-30.384472656250008],[-57.65087890625,-30.295019531250002],[-57.64575195312499,-30.226953125],[-57.60888671875,-30.18779296875],[-57.55229492187499,-30.26123046875],[-57.38383789062499,-30.28066406250001],[-57.21445312499999,-30.283398437500008],[-57.186914062499994,-30.26484375000001],[-57.120507812499994,-30.14443359375001],[-57.03271484374999,-30.109960937500002],[-56.93725585937499,-30.101074218750004],[-56.83271484375,-30.107226562500003],[-56.7216796875,-30.18691406250001],[-56.4072265625,-30.44746093750001],[-56.17617187499999,-30.62841796875],[-56.10585937499999,-30.71376953125001],[-56.044824218749994,-30.77763671875],[-55.99897460937499,-30.83720703125],[-56.018457031249994,-30.991894531250008],[-56.01552734374999,-31.059667968750006],[-56.00468749999999,-31.079199218750002],[-55.95200195312499,-31.080859375],[-55.873681640624994,-31.069628906250003],[-55.807763671874994,-31.03671875],[-55.75634765625,-30.987109375],[-55.705957031249994,-30.946582031250003],[-55.665234375,-30.924902343750002],[-55.650488281249984,-30.892089843749996],[-55.6271484375,-30.85810546875001],[-55.60302734375,-30.85078125000001],[-55.55732421875,-30.875976562499996],[-55.44956054687499,-30.964453125],[-55.36606445312499,-31.04619140625],[-55.34550781249999,-31.092968750000015],[-55.31328124999998,-31.141699218750006],[-55.278955078124994,-31.18417968750001],[-55.254638671875,-31.2255859375],[-55.17353515625,-31.279589843750003],[-55.09116210937499,-31.31396484375],[-55.03603515624999,-31.279003906250015],[-54.89599609375,-31.391210937500006],[-54.587646484375,-31.48515625],[-54.530908203124994,-31.5419921875],[-54.477685546874994,-31.62275390625001],[-54.36992187499999,-31.74501953125001],[-54.22055664062499,-31.855175781250008],[-54.10043945312499,-31.90156250000001],[-53.98515624999999,-31.928125],[-53.92060546875,-31.95234375],[-53.87651367187499,-31.99453125],[-53.806103515625,-32.03994140625001],[-53.76171875,-32.05683593750001],[-53.74658203125,-32.097460937499996],[-53.701123046875,-32.186328125],[-53.65361328124999,-32.29873046875001],[-53.601708984374994,-32.40302734375001],[-53.489404296874994,-32.50322265625],[-53.36274414062499,-32.581152343750006],[-53.23125,-32.625390625],[-53.15727539062498,-32.680078125],[-53.125585937499984,-32.73671875],[-53.2140625,-32.82109375],[-53.31010742187499,-32.92705078125],[-53.39521484374999,-33.010351562500006],[-53.482861328125,-33.068554687500004],[-53.511865234374994,-33.10869140625],[-53.53134765624999,-33.1708984375],[-53.53037109374999,-33.50029296875],[-53.53764648437499,-33.6228515625],[-53.53134765624999,-33.65546875000001],[-53.51884765624999,-33.67724609375],[-53.46357421874999,-33.70986328125001],[-53.39755859374999,-33.7373046875],[-53.37060546875,-33.7421875]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Venezuela","sov_a3":"VEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Venezuela","adm0_a3":"VEN","geou_dif":0,"geounit":"Venezuela","gu_a3":"VEN","su_dif":0,"subunit":"Venezuela","su_a3":"VEN","brk_diff":0,"name":"Venezuela","name_long":"Venezuela","brk_a3":"VEN","brk_name":"Venezuela","brk_group":null,"abbrev":"Ven.","postal":"VE","formal_en":"Bolivarian Republic of Venezuela","formal_fr":"República Bolivariana de Venezuela","note_adm0":null,"note_brk":null,"name_sort":"Venezuela, RB","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":1,"mapcolor13":4,"pop_est":26814843,"gdp_md_est":357400,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VE","iso_a3":"VEN","iso_n3":"862","un_a3":"862","wb_a2":"VE","wb_a3":"VEN","woe_id":-99,"adm0_a3_is":"VEN","adm0_a3_us":"VEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"VEN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-60.99790039062498,8.867333984374966],[-61.059960937500016,8.847021484375006],[-61.06918945312503,8.947314453125003],[-61.05048828124995,8.974365234375014],[-60.94477539062501,9.05502929687502],[-60.91582031249995,9.070312500000014],[-60.89458007812499,9.053369140625037],[-60.89990234374999,9.031884765625009],[-60.84916992187498,8.995703125],[-60.86142578124998,8.949609375000037],[-60.91640625,8.899267578124991],[-60.99790039062498,8.867333984374966]]],[[[-60.821191406249966,9.138378906250026],[-60.94140625000003,9.105566406250006],[-60.93945312499997,9.132324218750043],[-60.90727539062499,9.178710937499984],[-60.84487304687499,9.19179687499999],[-60.821386718750006,9.207666015625023],[-60.78159179687498,9.218359374999977],[-60.75888671874997,9.216455078125037],[-60.73583984374997,9.203320312500026],[-60.790380859374984,9.17719726562504],[-60.821191406249966,9.138378906250026]]],[[[-65.2125,10.906445312499983],[-65.26640624999999,10.883984375000026],[-65.36523437499994,10.906445312499983],[-65.41464843749998,10.93789062499999],[-65.38320312499997,10.973828125000038],[-65.30234375000003,10.973828125000038],[-65.22656249999994,10.930224609375031],[-65.2125,10.906445312499983]]],[[[-63.849365234374936,11.131005859374994],[-63.81728515624999,11.00034179687502],[-63.827099609374955,10.975830078125],[-63.917626953124994,10.887548828125048],[-63.993554687500016,10.881201171874991],[-64.05468749999994,10.884326171875017],[-64.10117187499999,10.901416015625031],[-64.160888671875,10.958789062499989],[-64.21894531249993,10.941601562500038],[-64.3625,10.96152343750002],[-64.40234375,10.981591796875023],[-64.34863281249997,11.051904296875051],[-64.249755859375,11.080322265624972],[-64.21367187500002,11.086132812499997],[-64.184814453125,11.04296875],[-64.11279296874997,11.005664062500044],[-64.0283203125,11.001855468749978],[-64.00732421874997,11.068457031250048],[-63.89311523437499,11.167236328125],[-63.849365234374936,11.131005859374994]]],[[[-69.76240234374995,11.676025390625014],[-69.71191406249997,11.564208984375057],[-69.63159179687494,11.479931640625026],[-69.56982421874997,11.485449218749991],[-69.52573242187498,11.499511718750014],[-69.23256835937502,11.518457031249966],[-69.05458984375,11.461035156249991],[-68.827978515625,11.431738281249977],[-68.61621093749994,11.309375],[-68.39863281249995,11.160986328124977],[-68.34316406250002,11.052832031249963],[-68.3248046875,10.949316406250018],[-68.2720703125,10.880029296875023],[-68.32470703124997,10.80874023437498],[-68.29628906249997,10.689355468749994],[-68.23408203124998,10.569140625000017],[-68.13994140624999,10.492724609374989],[-67.87163085937495,10.472070312500051],[-67.58134765624999,10.523730468750003],[-67.13330078125,10.570410156250006],[-66.98906250000002,10.610644531250031],[-66.24721679687497,10.632226562499994],[-66.10585937499994,10.57460937499998],[-66.09213867187498,10.517089843749986],[-66.090478515625,10.47294921874996],[-65.85175781249995,10.257763671874997],[-65.655859375,10.228466796874983],[-65.48935546875,10.159423828125027],[-65.31738281249997,10.12236328125003],[-65.12910156249998,10.070068359375043],[-65.023291015625,10.076660156250043],[-64.94404296874995,10.095019531249974],[-64.85048828125,10.098095703124969],[-64.188330078125,10.457812499999989],[-63.833691406249955,10.44853515624996],[-63.77905273437503,10.471923828125014],[-63.73188476562501,10.503417968750043],[-63.862695312499994,10.558154296875003],[-64.15791015624993,10.579248046875037],[-64.24750976562498,10.54257812500002],[-64.298193359375,10.635156249999964],[-64.20195312500002,10.63266601562499],[-63.87343749999996,10.663769531250026],[-63.49677734374998,10.64326171875001],[-63.189892578124976,10.70917968750004],[-63.035498046874984,10.720117187500037],[-62.94672851562501,10.70708007812496],[-62.702343749999955,10.74980468749996],[-62.24228515625,10.699560546875034],[-61.8794921875,10.741015625000031],[-61.92138671875,10.681445312499974],[-62.04042968750002,10.645361328125006],[-62.232910156249964,10.633984375],[-62.379980468750006,10.546875],[-62.69355468749992,10.56298828125],[-62.91357421875,10.531494140624986],[-62.84296875000001,10.507226562500009],[-62.843017578125,10.417919921875026],[-62.81293945312501,10.39990234375],[-62.78125,10.399218750000031],[-62.70629882812497,10.333056640624974],[-62.68583984374996,10.289794921875043],[-62.66162109374999,10.19858398437502],[-62.69467773437497,10.100097656250028],[-62.740576171875,10.056152343750043],[-62.65117187500001,10.070654296874977],[-62.600488281249994,10.116943359375],[-62.60791015625001,10.163427734374963],[-62.600488281249994,10.217285156250014],[-62.55034179687499,10.200439453125043],[-62.51513671874999,10.176123046874977],[-62.40092773437501,9.918408203125054],[-62.320410156250034,9.783056640625006],[-62.2998046875,9.788183593749991],[-62.28066406250002,9.792968749999986],[-62.25673828124993,9.818896484375031],[-62.221142578124976,9.882568359375028],[-62.19042968750002,9.8421875],[-62.17197265625,9.826708984375017],[-62.15336914062493,9.821777343749986],[-62.17031250000002,9.87949218750002],[-62.14746093749997,9.953417968749989],[-62.15532226562499,9.979248046875014],[-62.11962890624999,9.98486328125],[-62.07709960937492,9.975048828125038],[-62.01650390624993,9.954687499999975],[-61.90859375,9.869921875000031],[-61.837255859375,9.782080078124991],[-61.831152343750006,9.733056640625035],[-61.805371093750004,9.705517578125024],[-61.75874023437501,9.676513671874972],[-61.73593749999998,9.631201171874977],[-61.73173828125002,9.70249023437502],[-61.759179687499994,9.754443359375045],[-61.76591796874996,9.813818359374963],[-61.62539062500002,9.816455078124974],[-61.588867187499936,9.894531249999986],[-61.51230468749998,9.847509765624991],[-61.309375,9.633056640625],[-61.23442382812495,9.597607421874969],[-61.013378906249955,9.556445312500031],[-60.87407226562499,9.453320312499983],[-60.79248046874998,9.360742187500037],[-60.840966796874994,9.263671874999972],[-60.971044921875034,9.215185546875047],[-61.023144531249976,9.15458984374996],[-61.053076171874956,9.095117187500009],[-61.05356445312495,9.035253906249977],[-61.092968749999976,8.965771484375038],[-61.098828124999955,8.941308593750023],[-61.12236328124993,8.843359374999963],[-61.175878906250006,8.725390625],[-61.247265624999976,8.600341796875012],[-61.61870117187498,8.59746093749996],[-61.52690429687493,8.546142578124986],[-61.44257812499998,8.508691406249994],[-61.30400390624999,8.410400390625043],[-61.19375,8.48759765624996],[-61.03598632812503,8.493115234375024],[-60.865234374999964,8.578808593749983],[-60.800976562499926,8.592138671875034],[-60.48149414062494,8.547265625000035],[-60.404492187499976,8.610253906249994],[-60.34023437499994,8.628759765625034],[-60.16748046875,8.616992187500031],[-60.01752929687501,8.549316406250014],[-59.83164062499998,8.305957031250003],[-59.82890625,8.279150390625048],[-59.849072265624976,8.248681640624966],[-59.96484375000002,8.191601562499969],[-59.990722656249964,8.162011718749978],[-60.032421874999926,8.053564453125006],[-60.17817382812495,7.994042968750051],[-60.27890625,7.919433593750029],[-60.34677734375004,7.854003906250028],[-60.38061523437499,7.827636718749986],[-60.51362304687501,7.813183593749969],[-60.55634765625001,7.772021484375016],[-60.61010742187494,7.648339843750051],[-60.64946289062495,7.596630859374996],[-60.71865234374994,7.535937499999974],[-60.719238281249964,7.498681640625023],[-60.623730468749955,7.363330078124988],[-60.606542968750006,7.32084960937503],[-60.636181640624926,7.256591796875],[-60.633300781249964,7.211083984374966],[-60.58320312499998,7.156201171874969],[-60.523193359375,7.143701171875009],[-60.464941406250034,7.166552734375045],[-60.39238281249998,7.164550781249986],[-60.34506835937494,7.15],[-60.32548828124995,7.133984374999983],[-60.32207031249996,7.092041015625042],[-60.35209960937495,7.002880859374997],[-60.39501953125,6.945361328125002],[-60.58608398437502,6.857080078124966],[-60.671044921875016,6.80595703125003],[-60.71791992187496,6.768310546875],[-60.82084960937498,6.788476562500023],[-60.87333984375001,6.786914062499974],[-60.913574218749936,6.757812499999986],[-60.93798828124994,6.732763671875034],[-61.00708007812499,6.726611328125031],[-61.10478515625002,6.71137695312504],[-61.14560546874997,6.694531249999983],[-61.17724609375003,6.650927734374974],[-61.20361328124997,6.588378906250028],[-61.181591796874926,6.513378906250026],[-61.151025390625016,6.446533203124985],[-61.152294921875004,6.385107421875006],[-61.128710937499996,6.214306640625025],[-61.15947265624996,6.174414062499977],[-61.22495117187498,6.129199218750003],[-61.303125,6.049511718750026],[-61.39082031250001,5.938769531250017],[-61.376806640625006,5.906982421875028],[-61.16718749999992,5.674218750000037],[-60.95400390625002,5.437402343750023],[-60.742138671874926,5.202050781250037],[-60.71196289062499,5.191552734375023],[-60.671972656250034,5.164355468749989],[-60.63500976562494,5.081982421874997],[-60.60449218749994,4.99458007812504],[-60.603857421875,4.94936523437498],[-60.62758789062496,4.89252929687504],[-60.679150390624976,4.827099609375026],[-60.741748046874925,4.774121093749983],[-60.83339843749996,4.729199218749983],[-60.90625,4.68681640624996],[-60.96640624999998,4.574707031250028],[-61.002832031250016,4.535253906249991],[-61.036279296874994,4.519335937500031],[-61.102441406249966,4.504687499999974],[-61.209423828125004,4.508056640625043],[-61.28007812500002,4.516894531249974],[-61.367529296874984,4.433007812500037],[-61.47939453124993,4.40224609374998],[-61.55424804687499,4.287792968750026],[-61.82084960937496,4.197021484375],[-62.08159179687496,4.126318359374991],[-62.153125,4.098388671874986],[-62.41064453124994,4.156738281249971],[-62.47255859374994,4.138525390624991],[-62.54394531249999,4.084326171874962],[-62.60976562500002,4.042285156250017],[-62.66533203124996,4.039648437500006],[-62.712109374999976,4.01791992187502],[-62.73994140624998,3.940332031250023],[-62.76459960937493,3.672949218749991],[-62.85698242187501,3.593457031249969],[-62.96865234374994,3.593945312499983],[-63.04531250000002,3.686474609374997],[-63.13623046874998,3.756445312500048],[-63.294726562499925,3.92226562499998],[-63.33867187500002,3.943896484375045],[-63.37978515624994,3.942871093750014],[-63.52680664062495,3.893701171875023],[-63.596630859374976,3.915039062500028],[-63.65292968749997,3.940820312500037],[-63.746972656249966,3.932568359375039],[-63.9146484375,3.930664062500014],[-64.02148437500003,3.929101562500052],[-64.07338867187494,3.974414062500045],[-64.12172851562501,4.066992187499977],[-64.154296875,4.100146484374989],[-64.19248046874993,4.126855468750009],[-64.25566406249996,4.140332031249997],[-64.52553710937494,4.13999023437502],[-64.57636718750001,4.139892578125],[-64.61367187499997,4.157714843749986],[-64.66552734374997,4.237109375],[-64.72226562499998,4.274414062500057],[-64.788671875,4.276025390625023],[-64.81787109375,4.232275390624991],[-64.70258789062495,4.089306640624997],[-64.66899414062496,4.01181640625002],[-64.56791992187496,3.899804687500023],[-64.27529296874994,3.662695312500034],[-64.22109375,3.587402343749971],[-64.22705078124997,3.491210937500014],[-64.22875976562497,3.343994140625043],[-64.21884765624999,3.2046875],[-64.14355468750003,3.004882812500057],[-64.03779296874998,2.801513671875014],[-64.00903320312497,2.671875],[-64.0287109375,2.576074218749994],[-64.048828125,2.525097656250011],[-64.04658203124998,2.502392578124997],[-64.02490234375,2.481884765624997],[-63.924169921875006,2.452441406250031],[-63.712548828124966,2.434033203125011],[-63.58461914062502,2.433935546874991],[-63.389257812500006,2.411914062500045],[-63.374853515625,2.340429687500048],[-63.393945312499994,2.222509765625006],[-63.43251953124994,2.155566406250045],[-63.463916015624925,2.136035156249974],[-63.57026367187492,2.120507812500009],[-63.68212890625,2.048144531250002],[-63.84448242187503,1.976708984375023],[-63.93715820312499,1.966992187499997],[-63.975781249999955,1.953027343749994],[-64.00849609374995,1.931591796874969],[-64.03544921874993,1.904443359375037],[-64.06704101562497,1.770507812500014],[-64.11484375000003,1.619287109375037],[-64.20502929687491,1.52949218750004],[-64.30419921874997,1.455273437500011],[-64.40512695312503,1.446875],[-64.48603515624998,1.452783203125037],[-64.52626953125002,1.431005859375048],[-64.584375,1.369873046875028],[-64.66743164062498,1.293847656249994],[-64.73154296875,1.253320312499994],[-64.81796875,1.257128906249974],[-64.91010742187495,1.219726562499986],[-65.02656249999998,1.158447265625028],[-65.10375976562496,1.108105468749983],[-65.16962890624998,1.022216796874986],[-65.26396484375,0.931884765625057],[-65.36083984374994,0.868652343750057],[-65.40722656249997,0.790478515625026],[-65.47338867187497,0.691259765624977],[-65.55605468750002,0.687988281250014],[-65.56269531249995,0.747509765624969],[-65.52299804687493,0.843408203124966],[-65.566015625,0.926074218750031],[-65.64467773437497,0.970361328124994],[-65.68144531249999,0.983447265624989],[-65.718115234375,0.978027343750043],[-65.81132812499997,0.937255859375],[-65.92587890624995,0.863134765624991],[-65.996337890625,0.80976562500004],[-66.06005859375003,0.78535156250004],[-66.19121093750002,0.76328125],[-66.30166015624994,0.751953124999986],[-66.34711914062498,0.7671875],[-66.42924804687502,0.82167968749998],[-66.61904296874994,0.992138671874983],[-66.87602539062499,1.223046875000037],[-66.89550781249997,1.289892578124977],[-66.88447265624993,1.358251953124963],[-66.93110351562493,1.458007812500043],[-66.95834960937498,1.564208984375],[-66.98154296875,1.60078125],[-66.988134765625,1.68017578125],[-67.04389648437498,1.823193359375011],[-67.08955078124997,1.94033203124998],[-67.13144531249998,1.99985351562502],[-67.11381835937493,2.050585937499974],[-67.13144531249998,2.101269531249997],[-67.16547851562498,2.142578124999972],[-67.215234375,2.275488281250048],[-67.19760742187495,2.332763671874986],[-67.21083984374998,2.390136718750043],[-67.25273437499999,2.429443359374972],[-67.31225585937494,2.471679687500043],[-67.39160156249994,2.559912109374991],[-67.48642578124999,2.643652343750006],[-67.53496093749993,2.6767578125],[-67.56801757812502,2.689941406250014],[-67.5966796875,2.769335937500031],[-67.61870117187495,2.793603515624994],[-67.66723632812497,2.800195312500009],[-67.76645507812503,2.833300781250003],[-67.85908203124997,2.793603515624994],[-67.86123046874997,2.855322265625048],[-67.83476562499999,2.892822265625043],[-67.51484374999991,3.187255859374986],[-67.35361328125003,3.322656250000037],[-67.33627929687498,3.34262695312502],[-67.32216796875002,3.373974609375011],[-67.3111328125,3.41586914062502],[-67.34770507812499,3.463769531250009],[-67.49868164062502,3.691113281249968],[-67.55112304687503,3.733837890624968],[-67.60253906250003,3.768798828124986],[-67.66162109375,3.864257812499985],[-67.73232421874998,4.086523437499963],[-67.78320312499997,4.198242187499986],[-67.79863281250002,4.283886718750026],[-67.79541015624997,4.380712890625034],[-67.814306640625,4.455078125],[-67.85527343750002,4.506884765624988],[-67.85527343750002,4.665478515625054],[-67.814306640625,4.930810546875022],[-67.80419921874999,5.132519531249983],[-67.82490234374995,5.270458984375026],[-67.78842773437498,5.375488281250014],[-67.69462890624996,5.447509765625028],[-67.64228515624995,5.558789062499969],[-67.63134765624994,5.709375],[-67.57519531249997,5.833105468749991],[-67.47387695312501,5.929980468750003],[-67.43935546875,6.025537109375023],[-67.47158203124998,6.119775390625037],[-67.48198242187499,6.180273437500019],[-67.56806640624993,6.24179687500002],[-67.7271484375,6.284960937500031],[-67.85917968749999,6.289892578124963],[-67.9388671875,6.241943359375057],[-68.14306640625003,6.197509765624972],[-68.47177734375,6.156542968749974],[-68.73647460937494,6.156787109375031],[-68.93720703124997,6.198193359375026],[-69.08994140625,6.184375],[-69.19453125000001,6.11533203125002],[-69.26816406249998,6.099707031250034],[-69.31083984374999,6.137597656250023],[-69.357080078125,6.147998046875017],[-69.42714843749997,6.123974609374997],[-69.43925781249993,6.134912109375009],[-69.59482421874999,6.321484375000011],[-69.73896484374998,6.494384765624972],[-69.90419921875,6.700244140624989],[-70.09501953124996,6.937939453125011],[-70.12919921874999,6.95361328125],[-70.18813476562498,6.952050781250037],[-70.26611328125,6.947949218749997],[-70.3875,6.972607421875054],[-70.47065429687501,7.007128906249974],[-70.53554687499998,7.040527343750028],[-70.65507812500002,7.082763671875028],[-70.73715820312503,7.090039062499997],[-70.810693359375,7.07758789062504],[-71.01328124999998,6.994433593749974],[-71.12861328124993,6.98671875],[-71.21782226562499,6.985205078125048],[-71.45712890624996,7.026367187499986],[-71.62089843749996,7.032910156249997],[-71.81127929687503,7.005810546874982],[-71.89267578124998,6.99033203125002],[-72.00664062499993,7.032617187500023],[-72.08427734374993,7.096875],[-72.15668945312495,7.249707031250011],[-72.20771484374995,7.37026367187498],[-72.29633789062498,7.394531250000028],[-72.39462890625003,7.41508789062496],[-72.44296875,7.454882812499989],[-72.47197265624996,7.524267578124991],[-72.47895507812497,7.613232421874997],[-72.46889648437497,7.757958984374993],[-72.4595703125,7.809863281250003],[-72.44604492187503,7.966113281250045],[-72.39169921874995,8.047705078124963],[-72.35761718749994,8.087304687500037],[-72.36416015624994,8.152783203124967],[-72.39033203124995,8.287060546874969],[-72.41655273437496,8.381982421875037],[-72.525732421875,8.48969726562504],[-72.66542968749992,8.62758789062498],[-72.72553710937493,8.848291015624994],[-72.79638671874997,9.10898437499999],[-72.85209960937496,9.13515625],[-72.90444335937495,9.122070312499998],[-72.96015624999995,9.13515625],[-73.00927734375,9.239941406250026],[-73.05839843749999,9.25957031250003],[-73.13671874999994,9.222802734374993],[-73.19316406249999,9.194140625000017],[-73.33671875,9.167919921875011],[-73.36621093749997,9.194140625000017],[-73.35634765625002,9.226855468750031],[-73.295654296875,9.322021484375057],[-73.22426757812502,9.443603515625043],[-73.141259765625,9.554638671875011],[-73.06406249999998,9.668212890624972],[-73.00654296874998,9.789160156250004],[-72.96738281249999,10.029736328124997],[-72.94038085937501,10.195751953124969],[-72.86933593750001,10.49125976562496],[-72.73916015624997,10.72719726562498],[-72.690087890625,10.835839843749994],[-72.57226562499997,10.977148437500006],[-72.51801757812493,11.053906250000011],[-72.44609374999993,11.11425781250004],[-72.24848632812501,11.196435546875009],[-72.01230468750003,11.601953125000021],[-71.95810546875,11.66640625],[-71.71948242187497,11.726855468749974],[-71.53608398437497,11.774072265624994],[-71.40019531249993,11.823535156250044],[-71.35556640624998,11.849755859374964],[-71.31972656249997,11.861914062500048],[-71.34941406249997,11.814941406249972],[-71.41455078125003,11.755175781249974],[-71.48837890624995,11.71875],[-71.86865234374996,11.627343750000037],[-71.90751953124997,11.607958984375003],[-71.95693359375002,11.569921874999977],[-71.95722656249998,11.4828125],[-71.94697265624995,11.414453125],[-71.835107421875,11.190332031250009],[-71.79145507812498,11.135058593750017],[-71.6416015625,11.013525390625047],[-71.67568359375002,10.996728515624994],[-71.73090820312498,10.994677734375017],[-71.6904296875,10.835498046875015],[-71.59843749999999,10.726220703125037],[-71.59433593749995,10.657373046875051],[-71.66484374999993,10.44375],[-71.79350585937496,10.315966796875044],[-71.88476562499997,10.167236328125028],[-71.95571289062497,10.108056640625051],[-72.11284179687499,9.815576171874966],[-71.99326171874998,9.641503906250037],[-71.97626953124995,9.553222656249986],[-71.87304687499999,9.42763671874998],[-71.80566406250003,9.386425781250026],[-71.76074218750003,9.335742187500003],[-71.78134765624995,9.25],[-71.74013671875,9.133886718750006],[-71.6867187499999,9.072509765625028],[-71.61953124999994,9.047949218749991],[-71.53662109375003,9.048291015624969],[-71.29794921874998,9.125634765625009],[-71.24140625000001,9.160449218750003],[-71.20537109374993,9.222460937500017],[-71.08583984375002,9.348242187499977],[-71.07841796875002,9.51079101562496],[-71.05268554687501,9.705810546874984],[-71.08173828124998,9.833203125000011],[-71.20722656249995,10.014599609375011],[-71.26220703124997,10.143603515625001],[-71.38662109375002,10.263769531249975],[-71.46279296875,10.469238281249998],[-71.49423828125,10.533203124999972],[-71.51787109375002,10.621826171875],[-71.54462890624995,10.778710937499994],[-71.46113281250001,10.83564453125004],[-71.46953124999992,10.964160156250017],[-71.26435546874998,10.999511718750028],[-70.82050781249995,11.208447265625054],[-70.54560546875001,11.261376953124994],[-70.23251953124998,11.372998046874997],[-70.15996093749996,11.428076171875034],[-70.09711914062493,11.519775390624972],[-70.04853515624997,11.530322265624987],[-69.88535156249995,11.44433593749997],[-69.80478515624998,11.474218750000018],[-69.77290039062495,11.541308593750003],[-69.81733398437495,11.672070312499997],[-69.91093749999993,11.672119140625014],[-70.19257812499993,11.62460937500002],[-70.22011718749994,11.680859375000011],[-70.22001953125002,11.730078125],[-70.28652343749997,11.886035156249989],[-70.24511718749997,12.003515625000018],[-70.20278320312495,12.098388671874986],[-70.12202148437495,12.136621093749966],[-70.00395507812495,12.177880859375023],[-69.91435546875002,12.114599609375004],[-69.86010742187497,12.05419921875004],[-69.83061523437499,11.995605468750014],[-69.810546875,11.836865234374997],[-69.76240234374995,11.676025390625014]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Afghanistan","sov_a3":"AFG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Afghanistan","adm0_a3":"AFG","geou_dif":0,"geounit":"Afghanistan","gu_a3":"AFG","su_dif":0,"subunit":"Afghanistan","su_a3":"AFG","brk_diff":0,"name":"Afghanistan","name_long":"Afghanistan","brk_a3":"AFG","brk_name":"Afghanistan","brk_group":null,"abbrev":"Afg.","postal":"AF","formal_en":"Islamic State of Afghanistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Afghanistan","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":8,"mapcolor13":7,"pop_est":28400000,"gdp_md_est":22270,"pop_year":-99,"lastcensus":1979,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"AF","iso_a3":"AFG","iso_n3":"004","un_a3":"004","wb_a2":"AF","wb_a3":"AFG","woe_id":-99,"adm0_a3_is":"AFG","adm0_a3_us":"AFG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AFG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[74.89130859375001,37.231640625],[74.84023437500002,37.225048828125],[74.76738281250002,37.249169921874994],[74.73896484375,37.28564453125],[74.72666015625,37.29072265625],[74.6689453125,37.26669921875],[74.55898437500002,37.23662109374999],[74.37216796875,37.15771484374999],[74.37617187500001,37.137353515624994],[74.49794921875002,37.0572265625],[74.52646484375,37.030664062499994],[74.54140625000002,37.02216796875],[74.43105468750002,36.983691406249996],[74.19472656250002,36.896875],[74.03886718750002,36.825732421874996],[74.00185546875002,36.823095703125],[73.9078125,36.85292968749999],[73.769140625,36.888476562499996],[73.73183593750002,36.88779296875],[73.4111328125,36.881689453125],[73.11679687499999,36.868554687499994],[72.99375,36.851611328124996],[72.7662109375,36.835009765624996],[72.62285156250002,36.82958984375],[72.53134765625,36.802001953125],[72.43115234374999,36.7658203125],[72.326953125,36.7423828125],[72.24980468750002,36.734716796875],[72.15673828125,36.70087890625],[72.09560546875002,36.633740234375],[71.92070312500002,36.5341796875],[71.82226562499999,36.486083984375],[71.77265625000001,36.4318359375],[71.71640625,36.4265625],[71.62050781250002,36.43647460937499],[71.5458984375,36.377685546875],[71.46328125000002,36.293261718749996],[71.31259765625,36.171191406249996],[71.23291015625,36.12177734375],[71.18505859375,36.04208984375],[71.22021484375,36.00068359375],[71.34287109375,35.938525390624996],[71.39755859375,35.880175781249996],[71.42753906250002,35.833740234375],[71.48359375000001,35.714599609375],[71.51904296875,35.597509765625],[71.57197265625001,35.54682617187499],[71.58740234375,35.46083984374999],[71.6005859375,35.40791015625],[71.57197265625001,35.370410156249996],[71.5455078125,35.32851562499999],[71.5455078125,35.288867187499996],[71.57724609375,35.247998046875],[71.60527343750002,35.211767578125],[71.62050781250002,35.183007812499994],[71.60166015625,35.150683593749996],[71.5455078125,35.101416015625],[71.51708984375,35.051123046875],[71.455078125,34.966943359374994],[71.35810546875001,34.909619140625],[71.29414062500001,34.867724609374996],[71.22578125000001,34.779541015625],[71.11328125,34.681591796875],[71.065625,34.599609375],[71.01630859375001,34.55463867187499],[70.965625,34.53037109375],[70.97890625,34.48627929687499],[71.02294921875,34.43115234375],[71.095703125,34.369433593749996],[71.0923828125,34.273242187499996],[71.08906250000001,34.20405273437499],[71.09130859375,34.120263671874994],[71.05156250000002,34.04970703124999],[70.84843750000002,33.981884765625],[70.65400390625,33.952294921874994],[70.41572265625001,33.950439453125],[70.32568359375,33.9611328125],[70.25361328125001,33.975976562499994],[69.9947265625,34.051806640624996],[69.8896484375,34.007275390625],[69.86806640625002,33.89765625],[70.056640625,33.719873046874994],[70.13417968750002,33.620751953124994],[70.2197265625,33.4546875],[70.2841796875,33.369042968749994],[70.26113281250002,33.28901367187499],[70.09023437500002,33.198095703125],[69.92011718750001,33.1125],[69.7037109375,33.0947265625],[69.56777343750002,33.06416015625],[69.5015625,33.020068359374996],[69.453125,32.8328125],[69.40458984375002,32.7642578125],[69.40537109375,32.68271484375],[69.35947265624999,32.59033203125],[69.28994140625002,32.530566406249996],[69.24140625000001,32.43354492187499],[69.25654296875001,32.249462890625],[69.279296875,31.936816406249992],[69.18691406250001,31.838085937499994],[69.08310546875,31.738476562499994],[68.97343750000002,31.667382812499994],[68.86894531250002,31.634228515624997],[68.78232421874999,31.646435546874994],[68.71367187500002,31.708056640625],[68.67324218750001,31.759716796874997],[68.59765624999999,31.802978515624996],[68.52070312500001,31.79414062499999],[68.44326171875002,31.7544921875],[68.31982421875,31.767675781249995],[68.21396484375,31.807373046875],[68.16103515625002,31.802978515624996],[68.13017578125002,31.76328125],[68.0171875,31.677978515625],[67.73984375,31.548193359374995],[67.6267578125,31.538769531249997],[67.57822265625,31.506494140624994],[67.59755859375002,31.4533203125],[67.6470703125,31.409960937499996],[67.73349609375,31.379248046875],[67.737890625,31.343945312499997],[67.66152343750002,31.31298828125],[67.59638671875,31.277685546875],[67.45283203125001,31.234619140624996],[67.28730468750001,31.217822265624996],[67.11591796875001,31.242919921875],[67.02773437500002,31.300244140624997],[66.92431640625,31.305615234374997],[66.82929687500001,31.263671875],[66.73134765625002,31.19453125],[66.62421875000001,31.04604492187499],[66.59580078125,31.019970703124994],[66.56679687500002,30.99658203125],[66.49736328125002,30.964550781249997],[66.39716796875001,30.912207031249995],[66.346875,30.802783203124996],[66.28691406250002,30.60791015625],[66.30097656250001,30.502978515624996],[66.30546875,30.321142578125],[66.2818359375,30.193457031249995],[66.2384765625,30.109619140624996],[66.24716796875,30.043505859374996],[66.31337890625002,29.9685546875],[66.28691406250002,29.920019531249995],[66.23125,29.865722656249996],[66.17705078125002,29.835595703124994],[65.96162109375001,29.77890625],[65.66621093750001,29.701318359374994],[65.47099609375002,29.6515625],[65.18046875000002,29.57763671875],[65.09550781250002,29.559472656249994],[64.9189453125,29.552783203124996],[64.82734375000001,29.564160156249994],[64.70351562500002,29.567138671875],[64.52109375,29.564501953124992],[64.39375,29.544335937499998],[64.26611328125,29.50693359375],[64.17216796875002,29.460351562499994],[64.11796875000002,29.414257812499997],[64.09873046875,29.391943359375],[63.97099609375001,29.43007812499999],[63.56757812500001,29.497998046874997],[62.4765625,29.40834960937499],[62.373437500000016,29.425390625],[62.0009765625,29.530419921874994],[61.52148437499999,29.66567382812499],[61.22441406250002,29.74941406249999],[60.843359375,29.858691406249992],[61.104101562500006,30.12841796875],[61.331640625,30.363720703124997],[61.55947265625003,30.599365234374996],[61.78417968749999,30.831933593749994],[61.81083984375002,30.91328125],[61.81425781250002,31.072558593749992],[61.75507812500001,31.28530273437499],[61.66015625,31.382421875],[61.34648437500002,31.421630859375004],[61.110742187500016,31.451123046874997],[60.8541015625,31.483251953125],[60.82070312500002,31.495166015624996],[60.791601562500006,31.660595703124994],[60.804296875,31.73447265625],[60.7875,31.877197265625004],[60.78994140625003,31.987109375],[60.82724609375,32.16796875],[60.82929687500001,32.249414062499994],[60.71044921874999,32.6],[60.64453125,32.794384765625],[60.576562500000016,32.994873046875],[60.561914062500016,33.0587890625],[60.560546875,33.13784179687499],[60.718066406250024,33.32353515624999],[60.76689453125001,33.363818359374996],[60.859277343750016,33.45625],[60.9169921875,33.505224609375],[60.906933593750004,33.538964843749994],[60.80644531250002,33.55869140625],[60.65458984375002,33.560400390625],[60.573828125,33.588330078125],[60.51083984375,33.63891601562499],[60.4859375,33.7119140625],[60.52705078125002,33.8419921875],[60.485742187500016,34.094775390624996],[60.570214843750016,34.219628906249994],[60.64267578125,34.307177734374996],[60.88945312500001,34.31943359375],[60.80390625000001,34.418017578124996],[60.762597656250016,34.475244140624994],[60.73613281250002,34.491796875],[60.72626953125001,34.51826171875],[60.73945312500001,34.544726562499996],[60.80234375,34.55463867187499],[60.8453125,34.587695312499996],[60.914746093750004,34.633984375],[60.951171875,34.653857421874996],[60.95781250000001,34.71005859375],[60.9908203125,34.749755859375],[61.04042968750002,34.799365234374996],[61.080078125,34.855615234374994],[61.07021484375002,34.921728515625],[61.10664062500001,35.001123046874994],[61.123144531250006,35.05073242187499],[61.14960937500001,35.09375],[61.12646484375,35.156542968749996],[61.10664062500001,35.20947265625],[61.1,35.272314453125],[61.1396484375,35.288867187499996],[61.18925781250002,35.31201171875],[61.19921875,35.361621093749996],[61.225683593750006,35.424462890624994],[61.24550781250002,35.474072265625],[61.278515625,35.51376953125],[61.2818359375,35.55341796875],[61.26201171875002,35.619580078125],[61.3447265625,35.6294921875],[61.37773437500001,35.593115234375],[61.42177734375002,35.545800781249994],[61.54277343750001,35.457861328125],[61.620996093750016,35.43232421875],[61.7197265625,35.41943359375],[61.84101562500001,35.431494140625],[61.938085937500006,35.447900390624994],[61.98388671875,35.443701171875],[62.08964843750002,35.3796875],[62.21308593750001,35.28994140624999],[62.25283203125002,35.250244140625],[62.271191406250004,35.189111328124994],[62.3078125,35.170800781249994],[62.38662109375002,35.23125],[62.46289062499999,35.251367187499994],[62.53310546875002,35.23989257812499],[62.61054687500001,35.233154296875],[62.688085937500006,35.255322265625],[62.72265625,35.271337890625],[62.858007812500006,35.349658203124996],[62.98027343750001,35.4091796875],[63.056640625,35.44580078125],[63.08417968750001,35.56806640625],[63.11933593750001,35.637548828125],[63.16972656250001,35.678125],[63.150781250000016,35.72827148437499],[63.129980468750006,35.766748046874994],[63.10859375000001,35.818701171875],[63.129980468750006,35.84619140625],[63.17890625,35.858447265624996],[63.301660156250016,35.8583984375],[63.51699218750002,35.913134765624996],[63.69658203125002,35.967822265624996],[63.8625,36.012353515624994],[63.938085937500006,36.0197265625],[64.00966796875001,36.01210937499999],[64.04238281250002,36.02509765625],[64.0513671875,36.067626953125],[64.09218750000002,36.112695312499994],[64.184375,36.14892578125],[64.3580078125,36.22607421875],[64.51103515625002,36.340673828125],[64.56582031250002,36.427587890625],[64.6025390625,36.554541015625],[64.67431640625,36.7501953125],[64.753125,36.964794921875],[64.78242187500001,37.05927734375],[64.81630859375002,37.132080078125],[64.95156250000002,37.1935546875],[65.08964843750002,37.237939453124994],[65.30361328125002,37.24677734375],[65.55498046875,37.251171875],[65.6080078125,37.36840820312499],[65.6412109375,37.467822265624996],[65.68300781250002,37.519140625],[65.74384765625,37.560839843749996],[65.76503906250001,37.569140625],[65.90068359375002,37.508105468749996],[66.1083984375,37.41474609375],[66.35029296875001,37.3681640625],[66.471875,37.3447265625],[66.52226562500002,37.348486328125],[66.827734375,37.3712890625],[67.06884765625,37.334814453125],[67.19550781250001,37.23520507812499],[67.31972656250002,37.2095703125],[67.44169921875002,37.2580078125],[67.51728515625001,37.266650390624996],[67.546484375,37.235644531249996],[67.607421875,37.222509765625],[67.7,37.22724609375],[67.7529296875,37.1998046875],[67.75898437500001,37.172216796875],[67.76601562500002,37.14013671875],[67.83447265625,37.064208984375],[67.9580078125,36.97202148437499],[68.06777343750002,36.9498046875],[68.21210937500001,37.021533203124996],[68.2609375,37.013085937499994],[68.284765625,37.036328125],[68.29951171875001,37.088427734374996],[68.38691406250001,37.1375],[68.546484375,37.18344726562499],[68.63701171875002,37.224462890625],[68.66914062500001,37.2583984375],[68.7232421875,37.268017578125],[68.78203125000002,37.2580078125],[68.82373046875,37.270703125],[68.8384765625,37.30283203125],[68.85537109375002,37.316845703125],[68.88525390625,37.328076171875],[68.91181640625001,37.333935546875],[68.96044921875,37.32504882812499],[69.05,37.266503906249994],[69.18017578125,37.15830078125],[69.26484375000001,37.10839843749999],[69.30390625000001,37.116943359375],[69.35380859375002,37.150048828124994],[69.41445312500002,37.20776367187499],[69.4296875,37.29086914062499],[69.39921875000002,37.399316406249994],[69.4201171875,37.48671875],[69.49208984375001,37.553076171875],[69.62578125000002,37.594042968749996],[69.8208984375,37.6095703125],[69.940625,37.60029296875],[69.9849609375,37.566162109375],[70.04472656250002,37.547216796875],[70.11982421875,37.54350585937499],[70.18867187500001,37.582470703125],[70.25146484375,37.66416015625],[70.25498046875,37.765380859375],[70.19941406250001,37.886035156249996],[70.21464843750002,37.92441406249999],[70.23876953125,37.941210937499996],[70.31328125000002,37.984814453125],[70.41777343750002,38.075439453125],[70.5185546875,38.1919921875],[70.6158203125,38.334423828125],[70.7359375,38.42255859375],[70.87890625,38.456396484375],[71.05214843750002,38.417871093749994],[71.255859375,38.306982421875],[71.33271484375001,38.170263671875],[71.2828125,38.00791015624999],[71.27851562500001,37.91840820312499],[71.31992187499999,37.90185546874999],[71.38964843749999,37.906298828124996],[71.48779296875,37.931884765625],[71.55195312500001,37.933154296874996],[71.58222656250001,37.910107421875],[71.58037109375002,37.8642578125],[71.54619140625,37.795654296875],[71.50507812500001,37.602929687499994],[71.47968750000001,37.43603515625],[71.45478515625001,37.271826171875],[71.43291015625002,37.1275390625],[71.471875,37.015087890625],[71.530859375,36.845117187499994],[71.59746093750002,36.73291015625],[71.665625,36.696923828124994],[71.73378906250002,36.684033203125],[71.80205078125002,36.694287109375],[71.9419921875,36.766455078125],[72.153515625,36.900537109374994],[72.35878906250002,36.98291015625],[72.657421875,37.029052734375],[72.75703125000001,37.172705078125],[72.89550781249999,37.267529296875],[73.21113281250001,37.408496093749996],[73.38291015625,37.462255859375],[73.48134765625002,37.4716796875],[73.60468750000001,37.446044921875],[73.63261718750002,37.43720703125],[73.65712890625002,37.43046875],[73.72060546875002,37.41875],[73.73378906250002,37.37578124999999],[73.71728515625,37.329443359375],[73.64882812500002,37.2912109375],[73.6275390625,37.261572265625],[73.65351562500001,37.23935546875],[73.74960937499999,37.231787109375],[73.948828125,37.283154296875],[74.077734375,37.316210937499996],[74.16708984375,37.329443359375],[74.203515625,37.372460937499994],[74.25966796875002,37.415429687499994],[74.34902343750002,37.41875],[74.444921875,37.39560546875],[74.52421875000002,37.382373046874996],[74.659375,37.39448242187499],[74.73056640625,37.35703125],[74.83046875000002,37.28593749999999],[74.87539062500002,37.241992187499996],[74.89130859375001,37.231640625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"United Arab Emirates","sov_a3":"ARE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"United Arab Emirates","adm0_a3":"ARE","geou_dif":0,"geounit":"United Arab Emirates","gu_a3":"ARE","su_dif":0,"subunit":"United Arab Emirates","su_a3":"ARE","brk_diff":0,"name":"United Arab Emirates","name_long":"United Arab Emirates","brk_a3":"ARE","brk_name":"United Arab Emirates","brk_group":null,"abbrev":"U.A.E.","postal":"AE","formal_en":"United Arab Emirates","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United Arab Emirates","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":3,"pop_est":4798491,"gdp_md_est":184300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"AE","iso_a3":"ARE","iso_n3":"784","un_a3":"784","wb_a2":"AE","wb_a3":"ARE","woe_id":-99,"adm0_a3_is":"ARE","adm0_a3_us":"ARE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":20,"long_len":20,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"ARE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.927832031250006,24.177197265624983],[53.928125,24.143359375000017],[53.82636718750003,24.153125],[53.799121093750074,24.135546875000017],[53.71582031249997,24.145312500000045],[53.63447265625004,24.169775390624977],[53.68964843750009,24.210791015624977],[53.83378906250002,24.258935546875023],[53.89375,24.215136718750074],[53.927832031250006,24.177197265624983]]],[[[52.6168945312501,24.28857421875003],[52.6,24.281298828125045],[52.58222656250003,24.335253906250017],[52.58359375000006,24.352343750000042],[52.629394531249964,24.376757812500045],[52.65761718750005,24.332617187500034],[52.6168945312501,24.28857421875003]]],[[[53.3322265625001,24.258593750000045],[53.25830078125002,24.252929687500057],[53.19091796874997,24.290917968749966],[53.33251953124997,24.34160156249999],[53.370898437500074,24.36445312500004],[53.412402343750074,24.411035156250023],[53.44531250000003,24.371191406249977],[53.40898437500002,24.307910156250045],[53.38261718750007,24.280859375000063],[53.3322265625001,24.258593750000045]]],[[[54.465429687500006,24.44277343749999],[54.456640625,24.42333984375003],[54.42841796875004,24.425097656250042],[54.35771484375002,24.44277343749999],[54.334765625000074,24.471044921874974],[54.37890624999997,24.504589843749983],[54.39833984375005,24.50634765624997],[54.42656250000001,24.471044921874974],[54.465429687500006,24.44277343749999]]],[[[56.18359375000003,25.644921875000023],[56.24951171874997,25.625390624999966],[56.2785156250001,25.62773437499999],[56.29785156250003,25.650683593750045],[56.36347656250009,25.569384765625017],[56.37285156250002,25.018310546875],[56.38798828125002,24.97919921875004],[56.352929687499994,24.973291015624994],[56.31357421875006,24.93129882812505],[56.26787109375007,24.86669921875003],[56.20468750000006,24.833300781250074],[56.15449218750004,24.795507812500006],[56.10654296875006,24.748681640624966],[56.06386718750005,24.738769531249996],[56.00839843750006,24.798242187500023],[55.9703125,24.858935546875045],[55.97968750000004,24.87207031249997],[56.00634765624997,24.876416015624955],[56.01669921875006,24.907714843750025],[56.00058593750006,24.953222656249974],[55.96308593750004,24.97026367187499],[55.91582031250002,24.971777343750034],[55.870703125000055,24.951416015624968],[55.8228515625,24.911279296874966],[55.795703125000074,24.868115234374955],[55.791601562500006,24.781298828125045],[55.80419921875003,24.68359375000003],[55.80390625000004,24.63623046874997],[55.77753906250009,24.577343749999955],[55.76816406250006,24.490625],[55.7868164062501,24.423535156249983],[55.804003906250074,24.383544921875],[55.80566406250003,24.349804687499983],[55.760839843750055,24.242675781249996],[55.799707031249994,24.22265625],[55.92861328125005,24.215136718750074],[55.96630859374997,24.142626953125045],[55.99218750000003,24.092968749999955],[55.98515625000002,24.063378906249966],[55.894140625,24.041406250000023],[55.77910156250002,24.017089843750057],[55.69658203125002,24.024121093749983],[55.54785156250003,23.99135742187505],[55.4684570312501,23.94111328125001],[55.49179687500006,23.90966796875],[55.519335937500074,23.88549804687497],[55.53164062499999,23.81904296875001],[55.5084960937501,23.72460937499997],[55.46630859375003,23.632910156250034],[55.413867187500074,23.51875],[55.35322265625004,23.38745117187503],[55.27021484375003,23.18994140625003],[55.1999023437501,23.034765625000034],[55.19218750000002,22.922949218749977],[55.19404296875004,22.85],[55.18583984375007,22.7041015625],[55.11943359375002,22.623925781249994],[55.104296875000074,22.621484375000023],[55.025,22.631152343750045],[54.99824218750003,22.634375],[54.92246093750006,22.643652343750006],[54.8048828125001,22.658007812500017],[54.652246093749994,22.676660156249994],[54.47167968749997,22.698730468750053],[54.2701171875,22.72333984375001],[54.054589843749994,22.749658203125023],[53.832128906250055,22.776806640624955],[53.6095703125001,22.80400390624999],[53.39404296874997,22.830322265625025],[53.19238281250003,22.854931640624983],[53.01191406250004,22.877001953125045],[52.85927734374999,22.895605468750006],[52.74160156249999,22.910009765625002],[52.66591796875005,22.919287109375034],[52.63916015625003,22.922509765624994],[52.55507812500005,22.932812499999955],[52.50957031250002,22.986962890624966],[52.45458984374997,23.052441406249983],[52.39960937500004,23.117968750000017],[52.34453125000002,23.183496093750048],[52.28955078125003,23.248974609374983],[52.2345703125001,23.314453125],[52.179492187500074,23.379980468750006],[52.124511718749964,23.445458984375023],[52.06943359375006,23.51098632812497],[52.01445312500002,23.57646484374999],[51.95947265625003,23.641992187500023],[51.904394531250006,23.70751953125003],[51.849414062500074,23.772998046875045],[51.79433593750005,23.838476562499977],[51.739355468750006,23.90400390625001],[51.684375,23.969531250000042],[51.62929687499999,24.03500976562506],[51.592578125000074,24.07885742187503],[51.57216796874999,24.128320312499962],[51.56835937500003,24.257910156250006],[51.56835937500003,24.286181640625074],[51.60546875000002,24.338427734375042],[51.62314453125006,24.30107421874999],[51.66455078124997,24.250439453124983],[51.73476562499999,24.262792968750002],[51.76757812500002,24.25439453125],[51.79169921875004,24.074755859375074],[51.84316406250005,24.010888671875023],[51.906054687500074,23.98535156249997],[52.118554687499994,23.97109375],[52.25087890625005,23.995214843750034],[52.51142578125003,24.1125],[52.64824218750002,24.154638671875002],[53.02636718750003,24.147314453125034],[53.32958984374997,24.098437500000017],[53.80175781249997,24.069482421874962],[53.89335937500002,24.07705078124999],[54.14794921875002,24.17119140624999],[54.30429687500006,24.254296874999962],[54.39707031250006,24.278173828125034],[54.458398437499994,24.358251953125006],[54.49882812500007,24.462695312500045],[54.53466796875003,24.530957031250008],[54.58046874999999,24.56352539062499],[54.624121093750006,24.62128906250004],[54.65898437500002,24.715527343749955],[54.74677734375004,24.81044921875002],[55.09814453124997,25.041601562500034],[55.30351562500007,25.23681640625003],[55.32167968750005,25.29980468749997],[55.433398437500074,25.394482421874983],[55.522851562499994,25.498144531249977],[55.94121093750002,25.793994140625017],[56.02519531250002,25.91601562500003],[56.07460937500005,26.05278320312499],[56.08046875,26.062646484375048],[56.11650390625002,26.068164062500017],[56.16748046875003,26.047460937499977],[56.17255859375009,25.945166015625006],[56.15410156250007,25.84848632812503],[56.15195312500006,25.746093750000025],[56.144628906250006,25.690527343750006],[56.18359375000003,25.644921875000023]],[[56.210546875,25.213281250000023],[56.24023437500003,25.208837890625002],[56.28183593750006,25.23554687500004],[56.28779296875003,25.278613281250017],[56.27734375000003,25.300878906250034],[56.234277343750044,25.303808593750006],[56.2165039062501,25.266699218749977],[56.210546875,25.213281250000023]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Armenia","sov_a3":"ARM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Armenia","adm0_a3":"ARM","geou_dif":0,"geounit":"Armenia","gu_a3":"ARM","su_dif":0,"subunit":"Armenia","su_a3":"ARM","brk_diff":0,"name":"Armenia","name_long":"Armenia","brk_a3":"ARM","brk_name":"Armenia","brk_group":null,"abbrev":"Arm.","postal":"ARM","formal_en":"Republic of Armenia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Armenia","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":2,"mapcolor13":10,"pop_est":2967004,"gdp_md_est":18770,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AM","iso_a3":"ARM","iso_n3":"051","un_a3":"051","wb_a2":"AM","wb_a3":"ARM","woe_id":-99,"adm0_a3_is":"ARM","adm0_a3_us":"ARM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ARM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.55234375000006,40.61606445312506],[45.51435546875003,40.59956054687498],[45.47880859375002,40.60698242187499],[45.47880859375002,40.648339843749966],[45.504492187500006,40.664843750000045],[45.53417968750003,40.664013671874955],[45.562304687500074,40.64916992187506],[45.55234375000006,40.61606445312506]]],[[[45.08476562500002,41.195458984374966],[45.15234375000003,41.175146484375006],[45.18857421875,41.14741210937504],[45.19023437500002,41.12636718750002],[45.07070312499999,41.10083007812506],[45.06259765625006,41.08813476562503],[45.07050781250004,41.075585937499966],[45.106054687500006,41.06933593750003],[45.27343750000003,41.00625],[45.36894531250002,41.00488281250003],[45.41914062500004,40.98569335937503],[45.444238281249994,40.947998046875],[45.52402343750006,40.89672851562503],[45.5875,40.846923828125],[45.59140625,40.829736328124966],[45.57939453125007,40.80449218749999],[45.40136718749997,40.707128906250034],[45.37890624999997,40.67358398437506],[45.37617187500004,40.63808593750002],[45.45439453125002,40.532373046874966],[45.5695312500001,40.416845703125055],[45.73574218750005,40.32910156250003],[45.96464843750002,40.23378906249996],[45.96757812500002,40.17480468750003],[45.93125,40.104687499999955],[45.90009765625004,40.05708007812504],[45.8859375000001,40.024853515624955],[45.8581054687501,40.011279296875045],[45.63017578125002,40.01420898437501],[45.595996093750074,40.00283203124999],[45.58095703125005,39.98901367187503],[45.57978515625004,39.9775390625],[45.6618164062501,39.956201171874994],[45.7896484375,39.881103515624964],[45.863183593749994,39.80834960937499],[45.939941406249964,39.77656250000001],[46.025878906249964,39.71855468749999],[46.09482421875,39.66445312499999],[46.202050781249994,39.59448242187503],[46.32167968750005,39.617431640625],[46.481445312499964,39.55517578125002],[46.48808593750001,39.512841796874994],[46.478125,39.47509765625006],[46.3776367187501,39.43388671874999],[46.365136718749994,39.41679687499999],[46.36523437500003,39.402490234374994],[46.37841796874997,39.382275390624955],[46.43730468750007,39.34853515625002],[46.506640625000074,39.298535156249955],[46.584765625000074,39.22368164062499],[46.55,39.20141601562497],[46.477148437500006,39.19819335937504],[46.42031250000005,39.207373046875034],[46.400292968749994,39.1921875],[46.40146484375006,39.16767578125003],[46.47539062500001,39.11088867187502],[46.48984375,39.069433593750006],[46.48671875,38.997460937499994],[46.490625,38.90668945312498],[46.31777343750005,38.912646484375045],[46.1701171875001,38.86904296875002],[46.1144531250001,38.877783203125034],[46.07744140625002,38.95488281250002],[46.04589843749997,39.01752929687498],[45.9518554687501,39.178125],[45.977441406249994,39.24389648437503],[45.925,39.28193359375004],[45.798632812500074,39.350195312500006],[45.76630859375004,39.37846679687499],[45.784179687499964,39.41723632812497],[45.79648437500006,39.488134765625034],[45.78447265625001,39.54560546875001],[45.75048828125003,39.56293945312501],[45.687402343750044,39.56406250000006],[45.610742187499994,39.5498046875],[45.456835937500074,39.494482421875006],[45.34990234375002,39.529882812500006],[45.2882812500001,39.56557617187499],[45.252539062500006,39.59545898437506],[45.17255859375003,39.57060546874996],[45.15283203125003,39.58266601562502],[45.14863281250003,39.65659179687498],[45.12460937500006,39.69633789062499],[45.07646484375002,39.742822265624966],[45.03164062500005,39.76513671874997],[44.86718750000003,39.71914062500002],[44.76826171875004,39.70351562500005],[44.733789062499994,39.74648437499999],[44.56044921875005,39.887597656249966],[44.39960937500004,39.995751953124966],[44.28925781250003,40.040380859375006],[44.17802734375002,40.035742187500034],[44.00537109375003,40.01411132812498],[43.9419921875,40.023144531249955],[43.79169921875004,40.07026367187498],[43.66621093750004,40.12636718750002],[43.68330078125004,40.14965820312497],[43.70986328125005,40.16650390625002],[43.678125,40.239306640625045],[43.60839843749997,40.35659179687505],[43.615820312500006,40.39331054687497],[43.59375,40.444042968750004],[43.56933593750003,40.48237304687498],[43.667871093749994,40.574072265625034],[43.71289062499997,40.64775390625002],[43.722656249999964,40.71953124999999],[43.6964843750001,40.79414062500001],[43.63164062500002,40.929003906250045],[43.591699218750044,40.96821289062504],[43.51748046875005,41.00483398437504],[43.45527343750003,41.06469726562497],[43.43945312500003,41.107128906250004],[43.491992187500074,41.11552734375002],[43.64501953124997,41.11665039062498],[43.79316406250003,41.131103515625],[43.90917968749997,41.15898437499999],[44.077246093750006,41.182519531249994],[44.14648437500002,41.20336914062497],[44.227343750000074,41.213330078124955],[44.47304687499999,41.191015625000034],[44.564843750000044,41.20820312499998],[44.84140625,41.21137695312501],[44.84853515625005,41.22016601562501],[44.8109375,41.248583984375045],[44.81132812500002,41.259375],[44.97587890625002,41.277490234374966],[45.001367187499994,41.29096679687498],[45.02294921874997,41.24570312499998],[45.08476562500002,41.195458984374966]],[[44.969042968750074,41.02724609374996],[45.00205078125006,41.015820312499955],[45.0236328125001,41.02724609374996],[45.02871093750005,41.05385742187499],[45.02109375,41.077978515625006],[44.9943359375001,41.085595703124966],[44.96142578125003,41.079248046874994],[44.95888671875005,41.052636718749994],[44.969042968750074,41.02724609374996]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Azerbaijan","sov_a3":"AZE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Azerbaijan","adm0_a3":"AZE","geou_dif":0,"geounit":"Azerbaijan","gu_a3":"AZE","su_dif":0,"subunit":"Azerbaijan","su_a3":"AZE","brk_diff":0,"name":"Azerbaijan","name_long":"Azerbaijan","brk_a3":"AZE","brk_name":"Azerbaijan","brk_group":null,"abbrev":"Aze.","postal":"AZ","formal_en":"Republic of Azerbaijan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Azerbaijan","name_alt":null,"mapcolor7":1,"mapcolor8":6,"mapcolor9":5,"mapcolor13":8,"pop_est":8238672,"gdp_md_est":77610,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AZ","iso_a3":"AZE","iso_n3":"031","un_a3":"031","wb_a2":"AZ","wb_a3":"AZE","woe_id":-99,"adm0_a3_is":"AZE","adm0_a3_us":"AZE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AZE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.15283203125003,39.58266601562502],[45.17255859375003,39.57060546874996],[45.252539062500006,39.59545898437506],[45.2882812500001,39.56557617187499],[45.34990234375002,39.529882812500006],[45.456835937500074,39.494482421875006],[45.610742187499994,39.5498046875],[45.687402343750044,39.56406250000006],[45.75048828125003,39.56293945312501],[45.78447265625001,39.54560546875001],[45.79648437500006,39.488134765625034],[45.784179687499964,39.41723632812497],[45.76630859375004,39.37846679687499],[45.798632812500074,39.350195312500006],[45.925,39.28193359375004],[45.977441406249994,39.24389648437503],[45.9518554687501,39.178125],[46.04589843749997,39.01752929687498],[46.07744140625002,38.95488281250002],[46.1144531250001,38.877783203125034],[45.921875,38.907910156249955],[45.575,38.97280273437502],[45.4796875000001,39.00625],[45.38925781250006,39.09589843749998],[45.33554687500006,39.13916015625],[45.255957031250006,39.194677734375034],[45.190625,39.215625],[45.14121093750006,39.25429687499999],[45.11308593750002,39.311572265625045],[45.071679687499994,39.362890625],[45.00019531250004,39.42353515625001],[44.838183593750074,39.62910156249998],[44.81718750000002,39.65043945312496],[44.7833984375001,39.684667968750006],[44.76826171875004,39.70351562500005],[44.86718750000003,39.71914062500002],[45.03164062500005,39.76513671874997],[45.07646484375002,39.742822265624966],[45.12460937500006,39.69633789062499],[45.14863281250003,39.65659179687498],[45.15283203125003,39.58266601562502]]],[[[45.0236328125001,41.02724609374996],[45.00205078125006,41.015820312499955],[44.969042968750074,41.02724609374996],[44.95888671875005,41.052636718749994],[44.96142578125003,41.079248046874994],[44.9943359375001,41.085595703124966],[45.02109375,41.077978515625006],[45.02871093750005,41.05385742187499],[45.0236328125001,41.02724609374996]]],[[[46.552148437499994,41.812304687500045],[46.571289062499964,41.800097656250045],[46.616015625000074,41.80693359375001],[46.690332031249994,41.83134765625002],[46.74931640625002,41.812597656250006],[46.82558593750005,41.74340820312503],[46.93085937500004,41.67041015625],[46.98779296875003,41.62138671874996],[47.01015625000005,41.5875],[47.06396484375003,41.55468750000006],[47.14257812500003,41.51606445312501],[47.2052734375001,41.45561523437501],[47.26113281250005,41.315087890624994],[47.31767578125002,41.28242187500001],[47.52060546875006,41.22905273437496],[47.59179687499997,41.21811523437506],[47.79101562499997,41.19926757812502],[47.86113281250007,41.212744140625034],[47.96367187500007,41.33398437500003],[48.05605468750005,41.45869140625004],[48.14228515625004,41.48476562500002],[48.29814453125002,41.545019531250034],[48.39140625000007,41.60190429687498],[48.43066406249997,41.66333007812497],[48.51865234375006,41.77934570312499],[48.572851562500006,41.84448242187503],[48.66464843750006,41.78662109375006],[48.8239257812501,41.62958984375004],[49.050878906250055,41.37397460937501],[49.10664062500004,41.30170898437504],[49.14326171875004,41.21777343749997],[49.17470703125005,41.116113281249966],[49.22646484375005,41.02622070312503],[49.45673828125004,40.79985351562502],[49.55615234374997,40.71630859375005],[49.71835937500006,40.60810546875004],[49.775976562500055,40.583984375],[49.85175781250004,40.577197265625045],[49.990625,40.57680664062505],[50.11914062499997,40.534521484375055],[50.182519531250044,40.50478515625002],[50.24804687499997,40.46176757812506],[50.30683593750003,40.412207031250006],[50.3659179687501,40.27949218749995],[50.1431640625,40.3232421875],[49.91884765625005,40.31640625000003],[49.79199218749997,40.28789062499999],[49.66904296875006,40.24902343749997],[49.55117187499999,40.19414062499999],[49.477343750000074,40.08725585937506],[49.415136718750006,39.83984375],[49.3244140625001,39.60834960937501],[49.327539062499994,39.50122070312503],[49.36738281250004,39.398388671874955],[49.36279296875003,39.349560546874955],[49.32119140625005,39.32890625000001],[49.269335937500074,39.28515624999997],[49.199804687500006,39.07265625000002],[49.16533203125002,39.03027343750003],[49.12099609375005,39.00390624999997],[49.10869140625002,39.02905273437503],[49.11132812500003,39.084716796875],[49.013476562500074,39.13398437500001],[48.96171875000002,39.07875976562502],[48.92617187500005,38.961767578125006],[48.85449218750003,38.83881835937501],[48.850878906250074,38.81533203125002],[48.86875,38.43549804687498],[48.84033203124997,38.437255859375],[48.63554687500007,38.39873046874996],[48.59267578125005,38.41108398437498],[48.41738281250005,38.58623046874995],[48.38125,38.605615234375016],[48.305566406249994,38.61347656250001],[48.261328125000055,38.64228515625001],[48.22519531250006,38.689208984375],[48.20468750000006,38.72412109375],[48.02324218750002,38.81904296874998],[47.99648437499999,38.85375976562503],[47.99267578125003,38.88427734375003],[48.01933593750001,38.911816406249955],[48.05009765625002,38.93500976562498],[48.138574218749994,38.958642578124994],[48.24199218750001,38.978955078124955],[48.2750976562501,38.99360351562501],[48.292089843750006,39.01884765624999],[48.29101562499997,39.05927734374998],[48.2741210937501,39.09912109375],[48.125488281249964,39.17163085937503],[48.10917968750007,39.20283203125001],[48.10439453125005,39.241113281249994],[48.112890625,39.28110351562503],[48.13603515625002,39.312353515625006],[48.257226562499994,39.35498046875],[48.322167968749994,39.399072265625016],[48.28173828125003,39.448339843750006],[48.15107421875004,39.56054687500006],[47.995898437500074,39.683935546875034],[47.8922851562501,39.68505859374999],[47.772851562499994,39.64858398437505],[47.581835937500074,39.54335937499999],[47.47617187500006,39.49833984374999],[47.33847656250006,39.42387695312498],[47.188378906250044,39.340966796874994],[47.06542968750003,39.25288085937498],[46.98886718750006,39.18017578125],[46.85253906250003,39.14843750000003],[46.78320312500003,39.08740234375003],[46.554785156250006,38.904394531250034],[46.490625,38.90668945312498],[46.48671875,38.997460937499994],[46.48984375,39.069433593750006],[46.47539062500001,39.11088867187502],[46.40146484375006,39.16767578125003],[46.400292968749994,39.1921875],[46.42031250000005,39.207373046875034],[46.477148437500006,39.19819335937504],[46.55,39.20141601562497],[46.584765625000074,39.22368164062499],[46.506640625000074,39.298535156249955],[46.43730468750007,39.34853515625002],[46.37841796874997,39.382275390624955],[46.36523437500003,39.402490234374994],[46.365136718749994,39.41679687499999],[46.3776367187501,39.43388671874999],[46.478125,39.47509765625006],[46.48808593750001,39.512841796874994],[46.481445312499964,39.55517578125002],[46.32167968750005,39.617431640625],[46.202050781249994,39.59448242187503],[46.09482421875,39.66445312499999],[46.025878906249964,39.71855468749999],[45.939941406249964,39.77656250000001],[45.863183593749994,39.80834960937499],[45.7896484375,39.881103515624964],[45.6618164062501,39.956201171874994],[45.57978515625004,39.9775390625],[45.58095703125005,39.98901367187503],[45.595996093750074,40.00283203124999],[45.63017578125002,40.01420898437501],[45.8581054687501,40.011279296875045],[45.8859375000001,40.024853515624955],[45.90009765625004,40.05708007812504],[45.93125,40.104687499999955],[45.96757812500002,40.17480468750003],[45.96464843750002,40.23378906249996],[45.73574218750005,40.32910156250003],[45.5695312500001,40.416845703125055],[45.45439453125002,40.532373046874966],[45.37617187500004,40.63808593750002],[45.37890624999997,40.67358398437506],[45.40136718749997,40.707128906250034],[45.57939453125007,40.80449218749999],[45.59140625,40.829736328124966],[45.5875,40.846923828125],[45.52402343750006,40.89672851562503],[45.444238281249994,40.947998046875],[45.41914062500004,40.98569335937503],[45.36894531250002,41.00488281250003],[45.27343750000003,41.00625],[45.106054687500006,41.06933593750003],[45.07050781250004,41.075585937499966],[45.06259765625006,41.08813476562503],[45.07070312499999,41.10083007812506],[45.19023437500002,41.12636718750002],[45.18857421875,41.14741210937504],[45.15234375000003,41.175146484375006],[45.08476562500002,41.195458984374966],[45.02294921874997,41.24570312499998],[45.001367187499994,41.29096679687498],[45.2171875,41.423193359375006],[45.28095703125004,41.449560546875034],[45.42226562500005,41.42529296874997],[45.715625,41.33764648437497],[45.69570312500005,41.28901367187501],[45.72548828124999,41.26162109375002],[45.79277343750002,41.22441406249999],[45.92197265625006,41.186718749999955],[46.03125,41.16728515624999],[46.086523437500006,41.183837890625],[46.17070312500002,41.197851562500006],[46.2799804687501,41.15444335937505],[46.380761718749994,41.09931640625001],[46.43095703125002,41.077050781249994],[46.457910156249994,41.070214843750016],[46.534375,41.08857421875004],[46.626367187500044,41.15966796875006],[46.66240234375002,41.24550781250002],[46.67255859375004,41.286816406250004],[46.61894531250002,41.34375],[46.50878906249997,41.40556640624996],[46.38496093750003,41.459863281249994],[46.30546875000002,41.507714843749994],[46.254687500000074,41.602148437500034],[46.20351562500005,41.61259765625004],[46.19052734375006,41.62485351562503],[46.18212890625003,41.657080078125034],[46.18427734375004,41.70214843749997],[46.20185546875004,41.736865234375045],[46.251855468750044,41.75175781249996],[46.302539062500074,41.75708007812497],[46.348242187500006,41.790185546874966],[46.40546875000004,41.855078125000055],[46.42988281250004,41.890966796875006],[46.5376953125,41.87041015624999],[46.552148437499994,41.812304687500045]],[[45.47880859375002,40.60698242187499],[45.51435546875003,40.59956054687498],[45.55234375000006,40.61606445312506],[45.562304687500074,40.64916992187506],[45.53417968750003,40.664013671874955],[45.504492187500006,40.664843750000045],[45.47880859375002,40.648339843749966],[45.47880859375002,40.60698242187499]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Bangladesh","sov_a3":"BGD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bangladesh","adm0_a3":"BGD","geou_dif":0,"geounit":"Bangladesh","gu_a3":"BGD","su_dif":0,"subunit":"Bangladesh","su_a3":"BGD","brk_diff":0,"name":"Bangladesh","name_long":"Bangladesh","brk_a3":"BGD","brk_name":"Bangladesh","brk_group":null,"abbrev":"Bang.","postal":"BD","formal_en":"People's Republic of Bangladesh","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bangladesh","name_alt":null,"mapcolor7":3,"mapcolor8":4,"mapcolor9":7,"mapcolor13":7,"pop_est":156050883,"gdp_md_est":224000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BD","iso_a3":"BGD","iso_n3":"050","un_a3":"050","wb_a2":"BD","wb_a3":"BGD","woe_id":-99,"adm0_a3_is":"BGD","adm0_a3_us":"BGD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BGD.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[91.94921875000003,21.50805664062503],[91.88886718750003,21.50332031250005],[91.85947265625012,21.532958984375057],[91.8732421875001,21.574414062499955],[91.85703125000006,21.708789062499985],[91.90771484374997,21.722949218750017],[91.933984375,21.722167968750057],[91.9486328125,21.682568359374983],[91.96191406250003,21.609765624999966],[91.94921875000003,21.50805664062503]]],[[[91.87382812500002,21.832128906249977],[91.8375976562501,21.750244140624996],[91.8197265625,21.809814453125057],[91.83515625000004,21.885351562499977],[91.85068359375012,21.927050781250045],[91.86132812499997,21.926660156249966],[91.8825195312501,21.883642578125002],[91.87382812500002,21.832128906249977]]],[[[91.15078125000005,22.175195312499966],[91.04472656250002,22.10517578125001],[91.0794921875,22.519726562499983],[91.15830078125005,22.36542968750001],[91.17822265624997,22.28300781249999],[91.15078125000005,22.175195312499966]]],[[[91.55673828125006,22.38222656250005],[91.51044921875003,22.352783203125],[91.46689453125005,22.37841796874997],[91.41132812500004,22.475683593750006],[91.43886718750005,22.59882812500004],[91.45605468749997,22.61650390624999],[91.48398437500006,22.576562500000023],[91.52304687500006,22.49072265625003],[91.54833984374997,22.425390625000063],[91.55673828125006,22.38222656250005]]],[[[90.77763671875007,22.089306640624983],[90.60361328125005,22.05419921875],[90.51503906250005,22.065136718750008],[90.68046875000007,22.327490234375006],[90.67490234375012,22.44497070312505],[90.64921875,22.54067382812499],[90.56494140624997,22.61762695312495],[90.56035156250002,22.672558593749955],[90.52255859375006,22.74750976562504],[90.50292968749997,22.835351562499994],[90.59648437500002,22.863525390625057],[90.672265625,22.81318359375001],[90.68300781250005,22.785302734375023],[90.69921874999997,22.71352539062505],[90.73691406250012,22.63872070312499],[90.86816406250003,22.484863281249996],[90.86582031250005,22.390576171874983],[90.82988281250006,22.159960937500074],[90.77763671875007,22.089306640624983]]],[[[90.6417968750001,22.962988281250063],[90.6595703125,22.920019531250006],[90.60390625,22.945556640624968],[90.56230468750007,22.975439453125034],[90.53632812500004,23.01489257812497],[90.57988281250002,23.03544921874999],[90.6417968750001,22.962988281250063]]],[[[88.7619140625001,26.279394531249977],[88.82802734375,26.25219726562503],[88.89648437499997,26.26049804687503],[88.94072265625002,26.24536132812497],[88.97041015625004,26.250878906250023],[88.98154296875005,26.28613281250003],[88.94824218749997,26.337988281250006],[88.92412109375,26.375097656250034],[88.95195312500002,26.412109375],[88.98339843750001,26.41953125],[89.01865234375012,26.410253906249977],[89.06679687500005,26.37690429687504],[89.101953125,26.308349609375],[89.10830078125004,26.202246093749974],[89.18642578125,26.10595703125],[89.28925781250003,26.03759765625],[89.36972656250012,26.006103515625],[89.46689453125012,25.98354492187502],[89.54990234375006,26.005273437499994],[89.59140625000006,26.072412109374994],[89.57275390625003,26.13232421875003],[89.58574218750007,26.186035156250057],[89.61904296875,26.215673828125063],[89.67089843750003,26.21381835937504],[89.70986328125005,26.171240234375063],[89.8229492187501,25.94140625000003],[89.79960937500002,25.839599609375],[89.82490234375003,25.56015625],[89.7962890625,25.375830078125002],[89.80087890625012,25.33613281250001],[89.81406250000006,25.305371093749955],[89.83330078125007,25.292773437500045],[89.86630859375012,25.293164062499955],[90.00380859375,25.258349609375074],[90.11962890625003,25.21997070312497],[90.25039062500005,25.18496093750002],[90.43935546875,25.157714843749996],[90.55527343750006,25.166601562500034],[90.61308593750002,25.16772460937497],[90.7301757812501,25.15947265624999],[91.03828125000003,25.174072265625025],[91.29316406250004,25.17797851562503],[91.39667968750004,25.151611328125],[91.4796875000001,25.142138671875014],[91.76347656250002,25.160644531250057],[92.04970703125005,25.16948242187499],[92.20468750000012,25.110937500000063],[92.3734375,25.01513671874997],[92.46835937500006,24.944140624999985],[92.4854492187501,24.903320312500025],[92.475,24.868505859375034],[92.44316406250002,24.849414062500074],[92.38496093750003,24.848779296875023],[92.25126953125006,24.895068359375045],[92.22832031250002,24.88134765625],[92.23056640625012,24.786230468749977],[92.22666015625012,24.77099609374997],[92.19804687500007,24.68574218750001],[92.11748046875002,24.493945312500017],[92.10195312500005,24.408056640625034],[92.08505859375006,24.38618164062501],[92.06416015625004,24.374365234375006],[92.00107421875005,24.370898437500017],[91.95166015624997,24.356738281250045],[91.93105468750005,24.325537109375006],[91.89902343750006,24.26069335937504],[91.87695312500003,24.19531250000003],[91.84619140624996,24.17529296875003],[91.77246093749997,24.210644531249955],[91.72656250000003,24.20507812499997],[91.66875,24.190087890625023],[91.61113281250007,24.152832031249996],[91.57138671875012,24.106591796874994],[91.52636718750003,24.090771484374955],[91.39267578125006,24.10009765625],[91.36708984374998,24.09350585937497],[91.3501953125001,24.06049804687501],[91.33642578124997,24.01879882812503],[91.23203125000006,23.92045898437499],[91.19248046875012,23.76289062499995],[91.16044921875006,23.66064453125],[91.16552734374996,23.58105468750003],[91.25380859375,23.373632812500063],[91.31523437500007,23.104394531249994],[91.33886718750003,23.077001953125002],[91.359375,23.06835937500003],[91.36865234375003,23.074560546875063],[91.36679687500012,23.130468749999977],[91.37060546874997,23.19799804687497],[91.39941406249996,23.213867187499996],[91.43623046875004,23.19990234375001],[91.4713867187501,23.141259765624962],[91.51123046875003,23.03369140625],[91.55351562500002,22.991552734375006],[91.61953125,22.97968750000001],[91.69492187500006,23.00483398437498],[91.75097656250003,23.053515625000017],[91.773828125,23.106103515624994],[91.75791015625012,23.209814453124977],[91.75419921875007,23.287304687499955],[91.79003906249997,23.36103515624998],[91.9191406250001,23.471044921875006],[91.93789062499998,23.504687500000017],[91.92949218750007,23.598242187499977],[91.92958984375,23.68598632812501],[91.97851562500003,23.691992187499977],[92.04404296875005,23.677783203125017],[92.12705078125006,23.720996093750045],[92.15234374999997,23.721875],[92.18710937500005,23.675537109375],[92.24609375000001,23.683593750000057],[92.28935546875002,23.492480468750014],[92.3341796875001,23.32382812500003],[92.33378906250002,23.242382812499955],[92.3412109375,23.06982421874997],[92.36162109375,22.929003906250074],[92.3931640625001,22.897021484375042],[92.43046875000007,22.821826171874985],[92.46445312500006,22.734423828125042],[92.49140625000003,22.685400390625002],[92.5095703125,22.525683593750045],[92.53183593750012,22.410302734374994],[92.5612304687501,22.048046875],[92.57490234375004,21.978076171875045],[92.5828125,21.940332031249994],[92.58427734375007,21.609033203124994],[92.5934570312501,21.46733398437499],[92.62529296875007,21.35073242187505],[92.63164062500002,21.306201171875045],[92.59980468750004,21.270166015624962],[92.56855468750004,21.263330078124994],[92.53916015625012,21.31982421874997],[92.471875,21.362988281249983],[92.37265625000012,21.40903320312503],[92.33056640624997,21.439794921874977],[92.2796875,21.427587890624977],[92.2082031250001,21.357861328124983],[92.17958984375005,21.293115234375023],[92.19199218750005,21.202246093750006],[92.21474609375,21.11269531250005],[92.26445312500002,21.06147460937501],[92.26845703125005,21.004687500000074],[92.28623046875012,20.93159179687501],[92.3119140625,20.86445312500001],[92.32412109374998,20.791845703125063],[92.30781250000004,20.79042968750002],[92.24814453125006,20.883593750000014],[92.19462890625002,20.984277343749994],[92.0560546875,21.1748046875],[92.01093750000004,21.51625976562502],[92.0080078125001,21.684765624999983],[91.91318359375012,21.883056640625053],[91.85,22.157373046874994],[91.82480468750006,22.228662109375023],[91.85781250000005,22.317333984374983],[91.86337890625012,22.350488281249966],[91.8454101562501,22.343115234374974],[91.7970703125001,22.297460937500002],[91.73408203125004,22.406689453124983],[91.69296875000012,22.504785156249966],[91.5296875,22.707666015624994],[91.48212890625004,22.79741210937499],[91.48007812500006,22.884814453125045],[91.4095703125,22.79702148437499],[91.31376953125,22.735156250000017],[91.2162109375,22.642236328124994],[91.15136718749996,22.614062500000017],[90.94560546875002,22.597021484375034],[90.82675781250012,22.72138671874995],[90.65625,23.025488281250006],[90.63359375000002,23.09423828124997],[90.65605468750007,23.273046874999977],[90.615625,23.44233398437501],[90.61611328125,23.53164062499999],[90.60400390624997,23.59135742187499],[90.57343750000004,23.578125],[90.56162109375012,23.537109375000053],[90.5680664062501,23.47426757812505],[90.55566406249997,23.42153320312505],[90.40800781250007,23.43188476562503],[90.26914062500012,23.455859375000017],[90.39150390625,23.366943359375025],[90.52275390625002,23.346142578124955],[90.59091796875012,23.266406250000045],[90.59921875000006,23.20415039062499],[90.5951171875,23.133935546874994],[90.52773437500005,23.08496093750003],[90.4660156250001,23.05390625000001],[90.47753906250003,22.98676757812501],[90.55224609374997,22.90488281250003],[90.4616210937501,22.88178710937504],[90.43691406249998,22.828173828125045],[90.43505859374997,22.751904296874955],[90.48066406250004,22.68466796875003],[90.49843750000005,22.63481445312499],[90.48740234375005,22.588720703125006],[90.53173828124997,22.539306640624996],[90.59550781250002,22.435839843750045],[90.61611328125,22.362158203125034],[90.58945312500012,22.258447265624966],[90.55283203125012,22.218164062500023],[90.49414062499997,22.17890625000001],[90.35576171875002,22.04824218750005],[90.28818359375012,21.8994140625],[90.23056640625006,21.82978515625004],[90.15878906250012,21.816845703124983],[90.13076171875,21.84741210937497],[90.07119140625005,21.887255859375017],[90.07001953125004,21.959912109374983],[90.08789062499997,22.017480468749994],[90.20957031250006,22.156591796875006],[90.14345703125,22.137890625],[90.06855468750004,22.098193359375017],[89.95419921875006,22.022851562500023],[89.91806640625012,22.11616210937501],[89.89404296874997,22.202587890624955],[89.89384765625007,22.308398437500017],[89.98515625000002,22.466406250000063],[89.88183593749997,22.38759765624999],[89.85322265625004,22.288964843749962],[89.86582031250012,22.173046874999983],[89.85253906249997,22.090917968750034],[89.81191406250005,21.983496093750006],[89.75683593750003,21.919042968750002],[89.66777343750002,21.87768554687503],[89.628125,21.814160156249955],[89.56855468750004,21.767431640625034],[89.56660156250008,21.860595703125],[89.54746093750006,21.983691406250045],[89.48320312500007,22.275537109374994],[89.46933593750006,22.212939453125017],[89.50253906250006,22.031884765624994],[89.50058593750006,21.914355468750042],[89.45195312500007,21.821093750000045],[89.35371093750004,21.72109375],[89.27861328125,21.70698242187498],[89.23427734375005,21.72236328125001],[89.16708984375006,21.784277343750002],[89.09394531250004,21.87275390624998],[89.08164062500006,22.014941406250014],[89.05146484375004,22.09316406250005],[89.05585937500004,22.18623046875001],[89.05,22.27460937499998],[88.97148437500007,22.510937499999983],[88.92070312500002,22.632031249999955],[88.92695312500004,22.67114257812503],[88.92343750000006,22.68754882812499],[88.89970703125002,22.843505859375057],[88.86699218750002,22.938867187500023],[88.85058593749996,23.040527343750057],[88.928125,23.186621093750063],[88.89707031250012,23.210400390625008],[88.80761718749996,23.22968750000004],[88.72441406250002,23.254980468750034],[88.70400390625005,23.29282226562503],[88.74082031250006,23.436621093750006],[88.69765625,23.493017578125034],[88.63574218749997,23.55],[88.61640625000004,23.57275390625003],[88.59599609375007,23.602197265624994],[88.56738281249996,23.674414062500034],[88.62255859374997,23.82636718750001],[88.69980468750006,24.002539062500006],[88.71376953125,24.069628906250014],[88.72656250000003,24.18623046874995],[88.7335937500001,24.23090820312501],[88.72353515625,24.27490234375],[88.64228515625004,24.325976562500017],[88.49853515625003,24.34663085937504],[88.39697265625003,24.389257812500006],[88.3375,24.45385742187503],[88.28710937500003,24.47973632812497],[88.225,24.460644531249983],[88.14550781250001,24.485791015624955],[88.07910156249997,24.549902343750063],[88.02343750000003,24.62783203125005],[88.03027343749997,24.66445312500005],[88.0451171875001,24.71303710937499],[88.1498046875,24.914648437500034],[88.1888671875,24.92060546875001],[88.27949218750003,24.881933593750034],[88.31337890625004,24.881835937499996],[88.37294921874998,24.961523437499977],[88.45625,25.188427734375036],[88.57382812500006,25.18789062499999],[88.67753906250007,25.180468750000017],[88.74755859375003,25.168945312500057],[88.81728515625,25.17622070312504],[88.89013671875003,25.19438476562499],[88.92978515625012,25.222998046875063],[88.95166015625001,25.25927734374997],[88.94414062500002,25.290771484375],[88.85478515625002,25.333544921875017],[88.82031250000003,25.365527343750045],[88.79541015624997,25.45625],[88.76914062500006,25.490478515624996],[88.59345703125004,25.4953125],[88.50244140624997,25.537011718749994],[88.4523437500001,25.57441406249998],[88.36308593750002,25.698193359374955],[88.25292968749997,25.78979492187497],[88.14746093749997,25.81142578125002],[88.1066406250001,25.841113281250045],[88.08457031250006,25.888232421875045],[88.09736328125008,25.95634765625007],[88.12900390625012,26.018212890624966],[88.15078125000005,26.08715820312497],[88.23515625000007,26.178076171875034],[88.33398437499997,26.257519531249955],[88.37802734375006,26.312011718750057],[88.44042968749997,26.369482421875034],[88.44785156250006,26.401025390624966],[88.43671875000004,26.437109375000034],[88.38623046875003,26.471533203125034],[88.35146484375004,26.482568359374966],[88.3458984375001,26.504785156249966],[88.36992187500002,26.564111328124994],[88.41816406250004,26.57153320312497],[88.51826171875004,26.517773437499955],[88.62011718749997,26.43066406249997],[88.68066406249997,26.352978515624955],[88.68281250000004,26.291699218749983],[88.72216796874997,26.281835937500034],[88.7619140625001,26.279394531249977]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Bahrain","sov_a3":"BHR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bahrain","adm0_a3":"BHR","geou_dif":0,"geounit":"Bahrain","gu_a3":"BHR","su_dif":0,"subunit":"Bahrain","su_a3":"BHR","brk_diff":0,"name":"Bahrain","name_long":"Bahrain","brk_a3":"BHR","brk_name":"Bahrain","brk_group":null,"abbrev":"Bahr.","postal":"BH","formal_en":"Kingdom of Bahrain","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bahrain","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":9,"pop_est":727785,"gdp_md_est":26820,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"BH","iso_a3":"BHR","iso_n3":"048","un_a3":"048","wb_a2":"BH","wb_a3":"BHR","woe_id":-99,"adm0_a3_is":"BHR","adm0_a3_us":"BHR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"BHR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[50.60722656250001,25.883105468750003],[50.57490234375001,25.806787109374994],[50.544042968750006,25.833496093749996],[50.46591796875,25.965527343749997],[50.48945312500001,26.058447265624995],[50.45244140625002,26.190820312499994],[50.46992187500001,26.228955078124997],[50.5640625,26.246435546874995],[50.5859375,26.24072265625],[50.55781250000001,26.198291015624996],[50.609765625000016,26.124462890624997],[50.61748046875001,26.00234375],[50.60722656250001,25.883105468750003]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Brunei","sov_a3":"BRN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Brunei","adm0_a3":"BRN","geou_dif":0,"geounit":"Brunei","gu_a3":"BRN","su_dif":0,"subunit":"Brunei","su_a3":"BRN","brk_diff":0,"name":"Brunei","name_long":"Brunei Darussalam","brk_a3":"BRN","brk_name":"Brunei","brk_group":null,"abbrev":"Brunei","postal":"BN","formal_en":"Negara Brunei Darussalam","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Brunei","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":6,"mapcolor13":12,"pop_est":388190,"gdp_md_est":20250,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"BN","iso_a3":"BRN","iso_n3":"096","un_a3":"096","wb_a2":"BN","wb_a3":"BRN","woe_id":-99,"adm0_a3_is":"BRN","adm0_a3_us":"BRN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":6,"long_len":17,"abbrev_len":6,"tiny":2,"homepart":1,"filename":"BRN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.02675781250004,4.899707031249989],[115.1400390625,4.899755859374991],[115.16845703125003,4.866699218750014],[115.22792968749998,4.750585937499977],[115.26669921875006,4.633984375000025],[115.27929687499997,4.456347656249989],[115.32675781250008,4.380761718750051],[115.31923828125001,4.365283203125002],[115.290625,4.352587890624989],[115.24667968750005,4.34721679687496],[115.17060546875003,4.364208984375054],[115.10703125000005,4.390429687499974],[115.05156250000002,4.582666015624966],[115.02675781250004,4.691357421874997],[115.02880859375003,4.821142578124963],[115.02675781250004,4.899707031249989]]],[[[115.02675781250004,4.899707031249989],[114.94472656249998,4.85625],[114.86455078125,4.801757812500014],[114.78417968749997,4.754833984375054],[114.74667968750006,4.718066406250017],[114.75996093750004,4.66650390625],[114.77929687499997,4.553027343749974],[114.79013671875005,4.463916015625017],[114.81826171875,4.42875976562496],[114.84023437500005,4.393212890625009],[114.83105468749997,4.354492187500028],[114.78349609375002,4.280761718750014],[114.81044921875,4.266503906250037],[114.77617187500006,4.168798828125034],[114.725,4.096533203124963],[114.65410156250007,4.037646484375045],[114.60830078125004,4.023974609375017],[114.57177734374997,4.049072265624972],[114.51220703125003,4.113574218749974],[114.44707031250006,4.20356445312501],[114.41660156250006,4.255859375],[114.3229492187501,4.262792968749991],[114.28964843750006,4.304199218749986],[114.28759765624997,4.354736328124986],[114.26103515625002,4.414257812500025],[114.22412109375001,4.47788085937502],[114.16884765625005,4.52695312499999],[114.09511718750005,4.565234374999974],[114.0638671875,4.592675781249966],[114.17792968750004,4.590966796874966],[114.2994140625001,4.607177734374986],[114.42441406250006,4.660400390625],[114.54472656250007,4.724560546875011],[114.64589843749998,4.798144531249989],[114.74082031250005,4.881005859374994],[114.840625,4.946386718749991],[114.99541015625,5.022363281250023],[115.04765625,5.016357421875043],[115.0470703125001,4.962451171874974],[115.02675781250004,4.899707031249989]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Bhutan","sov_a3":"BTN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bhutan","adm0_a3":"BTN","geou_dif":0,"geounit":"Bhutan","gu_a3":"BTN","su_dif":0,"subunit":"Bhutan","su_a3":"BTN","brk_diff":0,"name":"Bhutan","name_long":"Bhutan","brk_a3":"BTN","brk_name":"Bhutan","brk_group":null,"abbrev":"Bhutan","postal":"BT","formal_en":"Kingdom of Bhutan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bhutan","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":1,"mapcolor13":8,"pop_est":691141,"gdp_md_est":3524,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BT","iso_a3":"BTN","iso_n3":"064","un_a3":"064","wb_a2":"BT","wb_a3":"BTN","woe_id":-99,"adm0_a3_is":"BTN","adm0_a3_us":"BTN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"BTN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[91.63193359375003,27.759960937499997],[91.62587890625001,27.7373046875],[91.59765624999999,27.677001953125],[91.579296875,27.61142578125],[91.59472656249999,27.557666015624996],[91.65810546875002,27.493603515624997],[91.74306640625002,27.442529296874994],[91.85126953125001,27.438623046874994],[91.95097656249999,27.458300781249996],[91.99082031250003,27.450195312499996],[92.044921875,27.364697265624997],[92.08339843750002,27.290625],[92.03115234375001,27.214306640624994],[92.00253906250003,27.147363281249994],[91.99228515625003,27.099902343749996],[91.99863281250003,27.079296875],[92.03085937500003,27.040820312499996],[92.06816406249999,26.9751953125],[92.07343750000001,26.91484375],[92.04970703125002,26.874853515625],[91.99833984374999,26.85498046875],[91.94375,26.86083984375],[91.89863281250001,26.860058593749997],[91.84208984374997,26.852978515624994],[91.75371093749999,26.830761718749994],[91.67158203125001,26.802001953125],[91.517578125,26.807324218749994],[91.45585937499997,26.866894531249994],[91.4267578125,26.867089843749994],[91.28652343750002,26.789941406249994],[91.13388671875003,26.803417968749997],[90.85576171874999,26.77773437499999],[90.73964843750002,26.771679687499997],[90.6203125,26.780224609374994],[90.55986328124999,26.796582031249994],[90.44765625,26.85078125],[90.34589843750001,26.890332031249994],[90.24238281250001,26.854150390624994],[90.2060546875,26.847509765624995],[90.12294921875002,26.754589843749997],[89.94316406249999,26.723925781249996],[89.76386718750001,26.7015625],[89.7109375,26.713916015624996],[89.60996093750002,26.719433593749994],[89.60615234375001,26.741113281249994],[89.60917968749999,26.76220703125],[89.58613281250001,26.77895507812499],[89.54511718750001,26.796240234374995],[89.474609375,26.803417968749997],[89.38417968750002,26.8265625],[89.33212890625003,26.8486328125],[89.14824218749999,26.816162109374996],[89.04091796875002,26.865039062499996],[88.919140625,26.9322265625],[88.85761718750001,26.961474609374992],[88.83515625000001,27.06557617187499],[88.81357421875002,27.099023437499994],[88.765625,27.134228515624997],[88.73876953124999,27.175585937499996],[88.76035156250003,27.218115234375],[88.88164062499999,27.297460937499995],[88.89140624999999,27.316064453124994],[88.94755859374999,27.464013671874994],[89.02548828125003,27.517871093749996],[89.10234374999999,27.592578125],[89.16044921874999,27.711279296874995],[89.27265625000001,27.83315429687499],[89.39589843750002,27.958154296874994],[89.48066406250001,28.059960937499994],[89.53691406249999,28.107421875],[89.65273437500002,28.15830078125],[89.74980468749999,28.188183593749997],[89.81689453124999,28.256298828124997],[89.89785156250002,28.294140625],[89.98105468750003,28.311181640624994],[90.1044921875,28.302050781249996],[90.22080078125003,28.27773437499999],[90.34824218750003,28.243945312499996],[90.36298828125001,28.216503906249994],[90.35214843750003,28.168164062499997],[90.33378906249999,28.119140625],[90.33310546875003,28.093994140625],[90.35273437500001,28.080224609374994],[90.47734374999999,28.070849609374996],[90.63007812500001,28.078564453124994],[90.71572265625002,28.071728515624997],[90.90664062500002,28.026513671874994],[90.9625,27.994580078124997],[91.02080078124999,27.970068359374995],[91.07773437500002,27.974462890624995],[91.14990234375,28.02675781249999],[91.22587890624999,28.071240234374997],[91.27304687500003,28.078369140625],[91.30683593750001,28.064013671874996],[91.36757812500002,28.021630859374994],[91.493359375,27.981787109375],[91.60556640625002,27.951708984374992],[91.64189453124997,27.923242187499994],[91.62939453125,27.80087890625],[91.63193359375003,27.759960937499997]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Sint Maarten","adm0_a3":"SXM","geou_dif":0,"geounit":"Sint Maarten","gu_a3":"SXM","su_dif":0,"subunit":"Sint Maarten","su_a3":"SXM","brk_diff":0,"name":"Sint Maarten","name_long":"Sint Maarten","brk_a3":"SXM","brk_name":"Sint Maarten","brk_group":null,"abbrev":"St. M.","postal":"SX","formal_en":"Sint Maarten (Dutch part)","formal_fr":null,"note_adm0":"Neth.","note_brk":null,"name_sort":"St. Maarten (Dutch part)","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":37429,"gdp_md_est":400,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"SX","iso_a3":"SXM","iso_n3":"534","un_a3":"534","wb_a2":"SX","wb_a3":"SXM","woe_id":-99,"adm0_a3_is":"SXM","adm0_a3_us":"SXM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":12,"long_len":12,"abbrev_len":6,"tiny":4,"homepart":-99,"filename":"SXM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-63.12304687499999,18.06894531249999],[-63.01118164062499,18.06894531249999],[-63.0123046875,18.045410156249996],[-63.023046874999984,18.019189453124994],[-63.09042968749999,18.04140625],[-63.12470703125,18.06430664062499],[-63.12304687499999,18.06894531249999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"China","sov_a3":"CH1","adm0_dif":1,"level":2,"type":"Country","admin":"China","adm0_a3":"CHN","geou_dif":0,"geounit":"China","gu_a3":"CHN","su_dif":0,"subunit":"China","su_a3":"CHN","brk_diff":0,"name":"China","name_long":"China","brk_a3":"CHN","brk_name":"China","brk_group":null,"abbrev":"China","postal":"CN","formal_en":"People's Republic of China","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"China","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":3,"pop_est":1338612970,"gdp_md_est":7973000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CN","iso_a3":"CHN","iso_n3":"156","un_a3":"156","wb_a2":"CN","wb_a3":"CHN","woe_id":-99,"adm0_a3_is":"CHN","adm0_a3_us":"CHN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"CHN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.88876953125006,19.99194335937497],[110.93828125,19.94755859374999],[110.97070312499997,19.883300781250057],[110.99765625000005,19.764697265625045],[111.01367187500001,19.65546875000001],[110.91269531250006,19.586083984374994],[110.82226562500003,19.557910156250017],[110.64091796875,19.291210937499955],[110.603125,19.20703125000003],[110.57216796875005,19.171875],[110.5625,19.13515625000005],[110.56601562500006,19.09853515625005],[110.51933593750002,18.97021484375003],[110.47763671875005,18.812597656250063],[110.45126953125012,18.747949218750023],[110.39951171875006,18.698339843750063],[110.33369140625003,18.67329101562501],[110.29082031250002,18.669531250000034],[110.25175781250007,18.65576171875],[110.15625,18.56982421874997],[110.04853515625004,18.50522460937506],[110.06640624999997,18.475634765625074],[110.06738281249997,18.447558593750045],[110.02021484375003,18.416259765625057],[109.96767578125,18.422070312499983],[109.815625,18.396679687499983],[109.75976562500003,18.348291015624966],[109.70273437500012,18.259130859375006],[109.68105468750005,18.247119140625045],[109.58955078125003,18.226318359375],[109.51933593750006,18.21826171875003],[109.4000976562501,18.281103515625063],[109.34091796875012,18.29960937499999],[109.18320312500005,18.325146484374955],[109.02988281250006,18.367773437500034],[108.922265625,18.416113281250034],[108.7015625,18.535253906250034],[108.67607421875002,18.75024414062497],[108.63808593750005,18.866308593749977],[108.63564453125,18.90771484375],[108.65,19.26503906250005],[108.66552734375003,19.30410156249999],[108.69355468750004,19.33828125000005],[108.79101562500003,19.418164062499983],[108.90283203124996,19.481347656249962],[109.06289062499998,19.61357421874999],[109.17910156250005,19.674121093750074],[109.27666015625,19.761132812500023],[109.21953125,19.757470703124994],[109.17744140625003,19.768457031250023],[109.21894531250003,19.842822265625074],[109.26347656250006,19.882666015625006],[109.31484375000004,19.904394531250002],[109.41816406250004,19.888818359375023],[109.51367187499997,19.90424804687498],[109.58427734375007,19.9703125],[109.65136718749997,19.984375],[109.90625,19.962744140624977],[110.08300781249997,19.992919921875],[110.1715820312501,20.053710937500053],[110.21337890624997,20.056054687499994],[110.34394531250008,20.03881835937503],[110.3922851562501,19.97558593750003],[110.38798828125002,20.018017578124955],[110.39355468749997,20.059228515625023],[110.41757812500012,20.054736328124985],[110.58818359375002,19.976367187500017],[110.58876953125,20.072460937499955],[110.59833984375004,20.09760742187501],[110.6517578125,20.137744140625017],[110.67851562500006,20.137060546875063],[110.74453125,20.059472656249966],[110.80908203125003,20.01440429687503],[110.88876953125006,19.99194335937497]]],[[[110.38515625000005,21.093164062499966],[110.42236328125003,21.058593750000025],[110.52158203125006,21.08310546875006],[110.53955078124997,21.039013671874955],[110.53886718750002,21.018457031250023],[110.50390625000003,20.96772460937501],[110.421875,21.00688476562499],[110.33994140625006,20.997753906249983],[110.28095703125003,21.001171874999983],[110.26464843750001,21.02519531249999],[110.30986328125002,21.074755859375045],[110.38515625000005,21.093164062499966]]],[[[112.64375,21.63964843750003],[112.54560546875004,21.618505859374977],[112.525,21.623046875000025],[112.558984375,21.67475585937498],[112.64765625000004,21.710253906250017],[112.64375,21.63964843750003]]],[[[112.79023437500003,21.601855468750045],[112.77109375000012,21.581835937500045],[112.74199218750007,21.618066406249966],[112.73349609375012,21.669921874999968],[112.71269531250002,21.69794921875001],[112.760546875,21.733251953125006],[112.78203125000006,21.772265625000045],[112.83906250000004,21.764501953125063],[112.86259765625002,21.75263671875004],[112.81259765625006,21.712158203125057],[112.80068359375005,21.694873046874985],[112.79023437500003,21.601855468750045]]],[[[113.5552734375001,22.80419921875003],[113.56367187500004,22.757910156250034],[113.48564453125,22.828320312499983],[113.46337890625003,22.832373046875006],[113.42607421875006,22.85859375],[113.40439453125012,22.90283203124997],[113.46494140625006,22.904541015625057],[113.52050781250003,22.85205078125003],[113.5552734375001,22.80419921875003]]],[[[118.1830078125,24.496289062499983],[118.14951171875012,24.436132812499977],[118.0905273437501,24.446142578125063],[118.08876953124998,24.488867187500063],[118.0767578125001,24.501416015624955],[118.09296875000004,24.54121093749998],[118.10380859375002,24.552343750000034],[118.17070312500007,24.518505859374983],[118.1830078125,24.496289062499983]]],[[[119.82089843750006,25.45698242187504],[119.74667968750005,25.410693359375017],[119.70029296875013,25.43271484375006],[119.69941406250004,25.494726562499977],[119.72304687500005,25.55058593749999],[119.69599609375003,25.590869140625045],[119.72255859375004,25.638818359375023],[119.7779296875001,25.653173828125034],[119.79746093750012,25.62324218749998],[119.82871093750005,25.607373046875008],[119.83837890625001,25.591064453125],[119.83867187500006,25.559667968749977],[119.80908203124997,25.5078125],[119.83242187500004,25.479589843750002],[119.82089843750006,25.45698242187504]]],[[[121.25136718749998,28.086425781250057],[121.16425781250003,28.0625],[121.13154296875004,28.062597656250002],[121.13398437500008,28.135253906250057],[121.20546875,28.204394531250017],[121.234375,28.181298828125023],[121.25097656250003,28.145214843749955],[121.25136718749998,28.086425781250057]]],[[[122.17255859375008,29.67900390624996],[122.16904296875012,29.660253906250063],[122.08378906250002,29.725341796875],[122.04267578125003,29.7359375],[122.0623046875,29.77275390624996],[122.11962890624996,29.78222656250003],[122.16503906249997,29.700781250000063],[122.17255859375008,29.67900390624996]]],[[[122.40390625000006,29.892382812500017],[122.39404296875003,29.84609375],[122.36757812500005,29.85268554687499],[122.33183593750002,29.934960937499962],[122.35097656250004,29.955224609375023],[122.40156250000005,29.950244140624985],[122.40390625000006,29.892382812500017]]],[[[122.29589843750001,29.96342773437499],[122.28154296875002,29.94384765625],[122.15781250000012,30.00126953124999],[122.02402343750012,30.013330078125048],[121.97783203125002,30.063818359375034],[121.96943359375003,30.143115234375014],[122.11054687500008,30.13974609375003],[122.28447265625007,30.06801757812499],[122.32226562499999,30.03139648437499],[122.29589843750001,29.96342773437499]]],[[[121.86269531250005,31.492285156249977],[121.78046875000003,31.46376953125005],[121.519921875,31.549609375000017],[121.33642578125001,31.64375],[121.22685546875006,31.75810546874996],[121.21113281250008,31.80537109375001],[121.33896484375012,31.797363281250057],[121.46416015625003,31.756445312499977],[121.49179687500005,31.693652343749985],[121.54228515625002,31.673925781250034],[121.5765625,31.637304687500034],[121.80830078125003,31.55214843750002],[121.84365234374998,31.526367187499996],[121.86269531250005,31.492285156249977]]],[[[123.48945312500004,53.52944335937499],[123.53476562500008,53.526464843750006],[123.5597656250001,53.526660156250045],[123.6078125,53.546533203124994],[123.74091796875003,53.51098632812503],[123.99472656250005,53.40561523437497],[124.15429687499997,53.35869140625001],[124.21992187500003,53.37011718750003],[124.29140625,53.34086914062502],[124.36914062499996,53.27094726562498],[124.46591796875006,53.22963867187502],[124.63984375000003,53.21064453124995],[124.81230468750002,53.133837890625045],[124.88212890625,53.129736328125006],[124.90664062500005,53.172656250000045],[124.9708984375001,53.19731445312499],[125.075,53.20366210937495],[125.22558593750003,53.16582031249999],[125.42246093750005,53.08374023437503],[125.54599609375005,53.04760742187506],[125.59599609375007,53.057470703125006],[125.64902343750012,53.042285156250045],[125.69169921875002,53.00371093749998],[125.69531249999996,52.956298828125],[125.68076171875012,52.930810546874966],[125.728125,52.89072265624998],[125.78281250000012,52.89072265624998],[125.871875,52.871533203124976],[125.94160156250004,52.80068359375002],[126.004296875,52.76787109374999],[126.04814453125006,52.73945312499998],[126.05605468749998,52.71586914062496],[126.06015625000012,52.69199218749998],[126.04707031250004,52.67348632812505],[126.02324218750007,52.64301757812495],[126.016015625,52.610205078125034],[126.04589843749996,52.57333984374998],[126.15664062500004,52.54663085937503],[126.19443359375012,52.51914062500003],[126.20292968750006,52.48383789062504],[126.23759765625002,52.44482421875],[126.312890625,52.39975585937506],[126.34169921875,52.36201171875001],[126.32421875000001,52.331640625000034],[126.34628906250006,52.30625],[126.38349609375008,52.286523437499994],[126.39150390625007,52.214501953124966],[126.39482421875002,52.17299804687505],[126.45556640625003,52.12646484374997],[126.46806640625002,52.031298828125045],[126.51054687500002,51.925830078125045],[126.65371093749998,51.78129882812499],[126.70078125000006,51.70302734375005],[126.6886718750001,51.60991210937499],[126.70917968750008,51.566308593749994],[126.77451171875006,51.54506835937502],[126.80546875000007,51.50566406249999],[126.80175781250001,51.44804687499996],[126.82734375000008,51.41225585937505],[126.84775390625006,51.37416992187502],[126.83378906250007,51.31489257812501],[126.85439453125,51.26137695312502],[126.88769531249997,51.230126953124966],[126.91152343749998,51.17231445312501],[126.92480468749997,51.10014648437496],[127.02041015625,50.985888671875045],[127.19824218749997,50.82944335937506],[127.30703125000005,50.707958984375004],[127.346875,50.62133789062503],[127.34716796874997,50.55009765624999],[127.3082031250001,50.49418945312495],[127.30605468749998,50.45351562500002],[127.34082031249997,50.428076171875006],[127.35117187500006,50.39360351562498],[127.33720703125007,50.35014648437502],[127.39531250000006,50.298583984375],[127.590234375,50.20898437500003],[127.51230468750013,50.07167968750005],[127.49179687500012,49.97504882812498],[127.50244140624997,49.8734375],[127.55078124999997,49.801806640625045],[127.63671874999997,49.760205078125004],[127.69013671875008,49.71674804687504],[127.71113281250003,49.67153320312496],[127.81425781250007,49.62211914062501],[127.99960937500008,49.56860351562506],[128.23710937500007,49.55927734375001],[128.5267578125,49.59423828125003],[128.70400390624997,49.60014648437499],[128.76904296874997,49.57695312499999],[128.79101562500003,49.541845703125006],[128.77031250000007,49.494726562500006],[128.81933593750003,49.46376953125002],[128.93828125000002,49.44892578125001],[129.02031250000002,49.41923828124999],[129.0651367187501,49.374658203124966],[129.12011718750003,49.36206054687497],[129.18515625000012,49.38139648437502],[129.24843750000005,49.378662109375],[129.30986328125002,49.353857421875006],[129.35009765624997,49.362353515625045],[129.38466796874997,49.38945312499996],[129.44072265625007,49.38945312499996],[129.4981445312501,49.38881835937502],[129.53369140624997,49.32343750000001],[129.59140625000012,49.28666992187499],[129.6710937500001,49.27851562500001],[129.79257812500006,49.19887695312505],[130.03710937499994,48.97226562499998],[130.1959960937501,48.89165039062499],[130.35527343750002,48.866357421874994],[130.553125,48.861181640625006],[130.61718750000003,48.773193359375],[130.565625,48.680126953124955],[130.5521484375,48.602490234374955],[130.59726562500012,48.57465820312498],[130.65917968750003,48.48339843750002],[130.746875,48.43037109374998],[130.76347656250005,48.38842773437506],[130.80429687500012,48.341503906249976],[130.78720703125012,48.254589843749955],[130.7121093750001,48.12763671875003],[130.73261718750007,48.01923828124998],[130.84863281249997,47.92944335937497],[130.9154296875,47.84291992187502],[130.93281250000007,47.75981445312496],[130.96191406249997,47.70932617187498],[131.002734375,47.69145507812499],[131.121875,47.69765625],[131.31933593749997,47.72783203125002],[131.4642578125,47.72260742187504],[131.55673828125012,47.68203125000002],[131.78525390625012,47.68051757812497],[132.14980468750005,47.71796874999998],[132.38017578125002,47.7294921875],[132.47626953125004,47.714990234374994],[132.5619140625,47.768505859374955],[132.6369140625001,47.890087890624955],[132.70722656250007,47.94726562500006],[132.77285156250005,47.940087890625016],[132.8771484375001,47.979101562500055],[133.02011718750006,48.06440429687504],[133.14404296875003,48.10566406249998],[133.30117187500005,48.10151367187504],[133.46835937500006,48.09716796875003],[133.57324218749994,48.13300781249998],[133.67177734375005,48.20771484375001],[133.84218750000005,48.273730468750045],[134.20585937500007,48.35991210937502],[134.29335937500005,48.373437500000016],[134.33496093749997,48.36884765624995],[134.45615234375006,48.35532226562506],[134.56357421875012,48.321728515624955],[134.66523437500004,48.25390625],[134.6808593750001,48.21044921875003],[134.6693359375,48.15332031250003],[134.64726562500002,48.12016601562502],[134.60537109375,48.082910156249966],[134.56601562500006,48.02250976562501],[134.59130859374997,47.975195312500055],[134.65029296875,47.87426757812503],[134.6986328125,47.801416015624994],[134.75234375,47.71542968749998],[134.728125,47.68447265624999],[134.69580078124997,47.624853515625006],[134.59619140624997,47.523876953124955],[134.54189453125002,47.48515625],[134.48349609375006,47.447363281250006],[134.3825195312501,47.43823242187499],[134.33945312500012,47.42949218749999],[134.2908203125,47.41357421875003],[134.26005859375002,47.37773437500001],[134.22519531250006,47.352636718750055],[134.1676757812501,47.30219726562501],[134.16298828125005,47.25874023437503],[134.18925781250007,47.19423828125002],[134.2021484375,47.128076171874966],[134.13691406250004,47.068994140624994],[134.08642578124997,46.978125],[134.07138671875012,46.95078125],[134.04599609375006,46.88198242187502],[134.03857421874997,46.85815429687503],[134.02265625000004,46.71318359374999],[133.95751953124997,46.6142578125],[133.86660156250005,46.499121093750006],[133.88671874999997,46.430566406249966],[133.90273437500005,46.366943359374964],[133.8802734375,46.33603515624998],[133.87480468750002,46.30908203125],[133.86132812500003,46.24775390625004],[133.8328125,46.22426757812505],[133.75019531250004,46.185937500000044],[133.70068359374997,46.13974609375006],[133.7111328125001,46.06962890624999],[133.68574218750004,46.00893554687505],[133.6478515625,45.95522460937502],[133.60800781250012,45.92031250000002],[133.551171875,45.897802734375055],[133.51308593750002,45.878808593749994],[133.48466796875,45.81044921875002],[133.4757812500001,45.757666015625006],[133.44912109375,45.70507812500005],[133.465625,45.651220703125],[133.43642578125,45.60468750000004],[133.35546875000003,45.57221679687498],[133.30957031249994,45.553076171875006],[133.2669921875,45.545263671875006],[133.18603515625003,45.49482421875004],[133.11337890625006,45.321435546874966],[133.096875,45.220458984375],[133.1134765625001,45.130712890625006],[133.01171874999997,45.074560546875034],[132.93603515624997,45.029931640624994],[132.88876953125003,45.046044921874994],[132.83867187500007,45.061132812500034],[132.72314453124997,45.08056640625],[132.665625,45.09370117187501],[132.5490234375,45.122802734375],[132.36298828125,45.15996093750002],[132.1813476562501,45.203271484375044],[132.06738281249997,45.225976562499966],[131.97753906250003,45.243994140625006],[131.90927734375003,45.27373046875002],[131.85185546875002,45.32685546875001],[131.79492187499997,45.305273437500034],[131.74208984375005,45.24262695312498],[131.65400390625,45.20537109375004],[131.61396484375004,45.13657226562506],[131.57871093750006,45.08364257812502],[131.4875,45.01313476562504],[131.44687500000012,44.984033203124966],[131.26826171875004,44.93613281249997],[131.2279296875,44.92016601562503],[131.08232421875002,44.91000976562498],[131.03300781250007,44.88886718750004],[130.9816406250001,44.844335937500034],[130.96777343750003,44.79995117187505],[131.00390625000003,44.75322265625002],[131.06064453125012,44.65966796874997],[131.08691406249997,44.59565429687498],[131.12578125000005,44.46918945312498],[131.2552734375,44.07158203124998],[131.21328125000005,44.00292968750003],[131.17421875,43.70473632812502],[131.18359375000003,43.65087890624997],[131.180078125,43.567089843749955],[131.18242187500007,43.50556640625004],[131.2091796875001,43.49042968749998],[131.24394531250007,43.46904296874996],[131.26181640625006,43.43305664062501],[131.25732421875003,43.378076171874994],[131.23935546875012,43.33764648437503],[131.21191406250003,43.25776367187501],[131.17558593750007,43.1421875],[131.13554687500002,43.09760742187498],[131.10898437500012,43.06245117187501],[131.0861328125,43.0380859375],[131.08349609374997,42.95629882812506],[131.06855468750004,42.90224609375005],[131.0055664062501,42.88310546874996],[130.94287109375003,42.851757812499976],[130.86855468750005,42.86333007812502],[130.80332031250006,42.85683593750002],[130.72246093750007,42.83583984375002],[130.57724609375006,42.81162109375006],[130.49296875000002,42.77910156250002],[130.45273437500006,42.75541992187499],[130.42480468749997,42.72705078124997],[130.41992187499997,42.69985351562502],[130.43925781250002,42.68554687500005],[130.52060546875006,42.67431640624997],[130.5765625,42.62324218749995],[130.58447265625003,42.56733398437504],[130.5269531250001,42.535400390625],[130.49824218750004,42.570507812499955],[130.45029296875012,42.58168945312502],[130.3607421875,42.630859375],[130.29560546875004,42.684960937500016],[130.24667968750012,42.74482421874995],[130.248828125,42.87260742187496],[130.24033203125006,42.891796874999955],[130.15126953125005,42.91796875000006],[130.12480468750007,42.95600585937498],[130.08261718750006,42.97416992187496],[130.02226562500002,42.96259765625001],[129.97695312500002,42.974853515625],[129.94121093750007,42.99565429687499],[129.89824218750002,42.998144531250034],[129.86103515625004,42.96508789062497],[129.8415039062501,42.89423828125001],[129.77919921875,42.77656250000001],[129.77343749999997,42.70546875000002],[129.746484375,42.60380859374999],[129.71972656249997,42.475],[129.69785156250012,42.448144531249994],[129.62792968749997,42.44428710937501],[129.60390625,42.43588867187498],[129.56757812500004,42.39208984375003],[129.52373046875002,42.38466796875002],[129.48486328124997,42.41030273437502],[129.42363281250002,42.43588867187498],[129.36582031250006,42.43920898437503],[129.3136718750001,42.41357421874997],[129.25253906250006,42.35786132812498],[129.21777343750003,42.31269531250001],[129.20537109375007,42.27055664062496],[129.1955078125001,42.21845703125001],[129.13369140625005,42.16850585937496],[129.07724609375006,42.14238281249995],[128.96064453125004,42.06879882812498],[128.92343750000006,42.038232421874966],[128.83984375000003,42.03784179687497],[128.74902343749994,42.04067382812502],[128.62675781250002,42.02084960937498],[128.42724609374997,42.01074218749997],[128.3078125000001,42.02563476562497],[128.16015625,42.011621093749966],[128.04521484375007,41.9875],[128.0287109375,41.95161132812501],[128.03291015625004,41.89848632812502],[128.05605468750002,41.86376953125006],[128.0841796875001,41.84057617187503],[128.13193359375006,41.769140625000034],[128.18173828125006,41.700048828125006],[128.25781250000003,41.655371093750034],[128.28925781250004,41.60742187500006],[128.29091796875,41.56279296875002],[128.25488281249997,41.50654296875001],[128.20029296875012,41.43300781250005],[128.14941406249997,41.38774414062496],[128.11123046875,41.389257812500006],[128.05273437499994,41.415625],[128.0130859375,41.44868164062504],[127.91865234375004,41.46113281250001],[127.68769531250004,41.439990234375045],[127.57216796875005,41.45473632812502],[127.5169921875,41.48173828125002],[127.4203125,41.483789062499994],[127.27080078125,41.51982421874996],[127.17968750000001,41.531347656250006],[127.13671874999996,41.554541015625034],[127.12841796874996,41.60742187500006],[127.0853515625,41.643798828125],[127.06132812500006,41.68735351562498],[127.00693359375006,41.742041015625034],[126.95478515625004,41.76948242187501],[126.90351562500008,41.78105468749999],[126.84726562500005,41.74799804687501],[126.78769531250012,41.71821289062498],[126.74306640625,41.724853515625],[126.72158203125004,41.716552734375],[126.6969726562501,41.69189453125003],[126.60126953125004,41.640966796875034],[126.57832031250008,41.594335937500034],[126.5401367187501,41.49555664062498],[126.51357421875005,41.39399414062501],[126.49042968750003,41.35805664062505],[126.45146484375007,41.35185546875002],[126.41181640625008,41.32133789062502],[126.3287109375001,41.225683593750006],[126.25361328125011,41.137792968750034],[126.14453124999996,41.078271484374994],[126.0931640625,41.02368164062506],[126.06679687500005,40.97407226562498],[125.98906250000002,40.904638671875034],[125.87490234375005,40.892236328124994],[125.78398437500007,40.87202148437498],[125.72832031250002,40.86669921875006],[125.68828125,40.83867187500001],[125.65917968749997,40.7958984375],[125.6451171875001,40.77895507812502],[125.59384765625008,40.77895507812502],[125.5425781250001,40.74257812499999],[125.41689453125,40.65991210937503],[125.31445312499996,40.644628906250006],[125.1859375,40.58940429687504],[125.07294921875008,40.547460937500034],[125.02597656250012,40.52387695312501],[125.01337890625003,40.497851562500045],[124.996875,40.46474609375005],[124.94228515625,40.45815429687502],[124.88935546875011,40.459814453125006],[124.77197265624996,40.38374023437498],[124.71240234374997,40.319238281249966],[124.4810546875001,40.181640625],[124.38662109375005,40.10424804687506],[124.362109375,40.004052734374994],[124.35,40.011572265625006],[124.26748046875005,39.92416992187506],[124.10576171875,39.841015624999976],[123.76015625,39.82241210937502],[123.65087890625003,39.881591796875],[123.61123046875,39.84082031250003],[123.58066406250006,39.78613281249999],[123.49003906250002,39.76787109375002],[123.34814453124997,39.76293945312497],[123.2689453125,39.726904296875006],[123.22656249999997,39.68662109375006],[123.03222656249997,39.67353515624998],[122.96093749999996,39.61992187499996],[122.8400390625001,39.60083007812499],[122.33486328125005,39.366113281250044],[122.225,39.267333984375],[122.12089843750007,39.15190429687502],[122.04765625000007,39.09379882812499],[121.98232421875,39.053173828124976],[121.92265625000006,39.03652343750005],[121.86435546875012,38.996484374999966],[121.80517578124996,38.99140625000001],[121.7448242187501,39.009667968749994],[121.67724609374996,39.00341796875006],[121.63281250000003,38.954833984375],[121.67041015625001,38.891796874999955],[121.64990234375003,38.865087890625034],[121.51718750000006,38.830761718749955],[121.32011718750007,38.80820312499998],[121.23632812499997,38.766943359375006],[121.20742187500005,38.743505859375034],[121.16357421874997,38.73164062500001],[121.12167968750006,38.81328125000004],[121.10673828125,38.92080078124999],[121.18828125,38.94667968750005],[121.26328125000005,38.96025390624996],[121.6798828125001,39.10869140625001],[121.62763671875004,39.22016601562498],[121.66455078124996,39.26875],[121.75781249999997,39.347558593749994],[121.81845703125005,39.38652343750002],[121.78544921875002,39.40083007812501],[121.5125,39.37485351562506],[121.35566406250004,39.376806640625006],[121.27548828125006,39.38476562500003],[121.29980468750001,39.45219726562499],[121.28632812500004,39.51943359375002],[121.26748046875,39.544677734375],[121.4064453125001,39.621240234374966],[121.46953125000007,39.64013671875],[121.51757812499996,39.638964843750045],[121.5142578125001,39.685253906249955],[121.47421875000012,39.75488281250003],[121.51738281250002,39.84482421875006],[121.8009765625001,39.950537109375006],[121.86894531250007,40.04638671875],[121.9828125,40.135839843750006],[122.19091796875003,40.358251953125034],[122.20332031250003,40.39604492187499],[122.26386718750003,40.50019531249998],[122.27500000000012,40.541845703125034],[122.17871093750003,40.60273437500001],[122.14042968750002,40.688183593750004],[121.85878906250005,40.84208984375002],[121.83486328125005,40.97426757812502],[121.80859375000001,40.968505859375],[121.765625,40.875878906250044],[121.729296875,40.84614257812504],[121.59892578125002,40.843408203124994],[121.53710937499997,40.87841796875003],[121.17451171875008,40.90126953124999],[121.08593749999997,40.84160156249999],[121.00292968750003,40.74912109374998],[120.922265625,40.68310546875003],[120.84130859374996,40.64921875],[120.77070312500004,40.58906249999998],[120.47910156250006,40.23095703125002],[120.36894531250002,40.203857421875],[119.85039062500007,39.987451171874966],[119.59111328125007,39.90263671875002],[119.39111328125004,39.75249023437499],[119.32236328125005,39.66162109375003],[119.26132812500006,39.560888671875034],[119.22460937500003,39.40805664062498],[119.04013671875012,39.22236328124998],[118.97695312499998,39.182568359374955],[118.91230468750011,39.16640625000005],[118.82646484375002,39.17211914062506],[118.75244140625003,39.16049804687498],[118.6263671875,39.176855468750034],[118.47197265625007,39.118017578125034],[118.29785156249997,39.067089843749955],[118.14785156250005,39.19506835937503],[118.04091796874998,39.22675781249998],[117.86572265625003,39.19125976562503],[117.78466796875001,39.13447265625001],[117.61669921875004,38.852880859375034],[117.55380859375005,38.69145507812499],[117.5578125000001,38.62514648437499],[117.65605468750002,38.42421875],[117.7666992187501,38.311669921874994],[118.01494140625006,38.18339843749996],[118.54326171875002,38.09492187499998],[118.66708984375012,38.126367187499994],[118.8,38.126660156249955],[118.94003906250006,38.04277343750002],[119.02753906250005,37.90400390624998],[119.03564453124999,37.809179687500034],[119.03847656250005,37.77651367187502],[119.07031250000001,37.74858398437502],[119.08916015625007,37.70073242187496],[119.03349609375006,37.66103515625005],[118.99082031250006,37.64135742187503],[118.95488281250006,37.494091796874955],[118.95263671875003,37.33115234374998],[118.99814453125005,37.27709960937497],[119.11181640624996,37.20117187499997],[119.28740234375002,37.138281250000034],[119.4499023437501,37.12475585937502],[119.76054687500007,37.15507812499999],[119.8875,37.25336914062504],[119.87998046875006,37.295800781249966],[119.88291015625012,37.350830078125],[120.1558593750001,37.495019531249966],[120.31152343750001,37.62270507812505],[120.28710937500003,37.656494140625],[120.2572265625,37.67900390624996],[120.28466796874996,37.69208984374998],[120.37011718749997,37.701025390625006],[120.75,37.833935546875004],[121.04902343750008,37.72519531250006],[121.21953125,37.60014648437499],[121.38808593749998,37.578955078125006],[121.50527343750007,37.515039062499966],[121.64023437500012,37.46035156250002],[121.81640625000003,37.45664062500006],[121.96484374999997,37.44531249999997],[122.01015625000004,37.495751953125016],[122.05664062500001,37.52890625000003],[122.10957031250004,37.522314453125034],[122.16914062500003,37.456152343750034],[122.33769531250007,37.40527343749997],[122.49326171875008,37.407958984375],[122.60234375000002,37.42641601562502],[122.66699218750001,37.40283203125003],[122.57333984375012,37.31791992187504],[122.58730468750005,37.181103515624955],[122.51552734374998,37.13784179687502],[122.44667968749998,37.06811523437503],[122.48740234375012,37.02226562500002],[122.52343749999997,37.00263671875001],[122.51972656250004,36.94682617187502],[122.45703124999997,36.91513671875006],[122.34091796875012,36.83222656250004],[122.27421875000002,36.833837890625006],[122.24228515625012,36.84985351562497],[122.21972656250001,36.879541015624994],[122.20322265625005,36.92719726562501],[122.16240234375006,36.95864257812502],[122.04951171875011,36.97075195312502],[121.93271484375005,36.95947265625003],[121.66962890625004,36.83637695312498],[121.41308593750003,36.738378906250006],[121.14404296874999,36.660449218750045],[121.05380859375006,36.61137695312499],[120.98994140625004,36.59794921874999],[120.87851562500005,36.63515625000002],[120.81083984375006,36.6328125],[120.7966796875,36.60722656250002],[120.8826171875,36.53891601562506],[120.90498046875003,36.485302734374955],[120.89580078125007,36.44414062500002],[120.84707031249998,36.42607421874999],[120.77617187500002,36.456298828125],[120.71152343750006,36.41328125000004],[120.68222656250008,36.340722656249994],[120.68095703125009,36.168359374999966],[120.63789062500008,36.129931640625045],[120.51933593750002,36.10869140624999],[120.39306640625003,36.053857421874994],[120.34824218750008,36.079199218750006],[120.33027343750003,36.110107421875],[120.34345703125004,36.189453125],[120.32773437500006,36.228173828124994],[120.2701171875001,36.226171875000034],[120.18330078125003,36.20244140624998],[120.1169921875,36.15029296875002],[120.094140625,36.11889648437503],[120.18144531250002,36.017480468750044],[120.26474609375012,36.007226562499994],[120.28476562500006,35.98442382812499],[120.21904296875002,35.934912109375006],[120.05468750000003,35.86113281249999],[120.02744140625005,35.79936523437502],[119.9787109375001,35.74023437500005],[119.91171875000013,35.69321289062498],[119.86621093749996,35.643652343750006],[119.81054687500003,35.61772460937496],[119.71972656249997,35.588720703125006],[119.60839843749997,35.46987304687505],[119.52646484375006,35.35859375000001],[119.42968749999997,35.301416015624994],[119.35283203125002,35.11381835937499],[119.21582031250003,35.01176757812496],[119.16533203125002,34.84882812499998],[119.2009765625,34.748437499999966],[119.35136718750002,34.749414062499994],[119.42675781249997,34.71416015625002],[119.58291015624998,34.58222656250004],[119.76972656250004,34.49619140625],[119.963671875,34.44780273437502],[120.20146484375007,34.32568359375],[120.26669921875005,34.27402343750003],[120.32265625,34.16899414062496],[120.42568359374998,33.866308593750034],[120.49980468750002,33.71645507812505],[120.50478515625004,33.63818359375],[120.615625,33.49052734375002],[120.73447265625005,33.23662109374999],[120.87109374999996,33.016503906249994],[120.89736328125,32.843212890624955],[120.85302734374997,32.764111328125004],[120.85322265625008,32.66137695312503],[120.98994140625004,32.567041015624994],[121.29335937500005,32.457324218750045],[121.34169921875005,32.42504882812503],[121.40097656250012,32.371923828125034],[121.40390625000005,32.20625],[121.45078125000005,32.1533203125],[121.49052734375007,32.12109375000003],[121.67421875,32.05102539062503],[121.7510742187501,31.992871093750008],[121.83242187499998,31.899755859375034],[121.85634765624998,31.816455078125045],[121.86630859375005,31.703564453124955],[121.76357421875,31.699511718750014],[121.68085937500004,31.712158203125025],[121.351953125,31.85878906250005],[121.26640625000007,31.862695312500055],[121.14580078125,31.842333984374985],[120.97353515625,31.869384765624968],[120.79169921875004,32.03173828125003],[120.660546875,32.08105468750002],[120.52011718750006,32.10585937500002],[120.18408203125003,31.966162109374977],[120.09873046875012,31.975976562500026],[120.07392578125004,31.960253906250017],[120.03593750000002,31.936279296875025],[120.19160156250004,31.906347656250063],[120.34746093750006,31.95209960937495],[120.49716796875012,32.01982421874999],[120.7155273437501,31.983740234375002],[120.75224609375002,31.922851562500025],[120.7877929687501,31.81977539062501],[120.9375,31.75019531250004],[121.05537109375004,31.719433593749983],[121.20488281250003,31.628076171875023],[121.35097656250005,31.4853515625],[121.66064453124997,31.319726562499994],[121.7859375,31.162890625000014],[121.83447265624997,31.061621093750002],[121.87792968750003,30.916992187500025],[121.76943359375005,30.87036132812503],[121.67519531250005,30.863769531250025],[121.52753906250004,30.84096679687499],[121.41894531249996,30.789794921875057],[121.30996093750005,30.699707031249996],[120.99765625000012,30.55825195312502],[120.93828125000002,30.46972656250003],[120.89746093750003,30.392626953125045],[120.8214843750001,30.35463867187502],[120.62998046875006,30.390869140625025],[120.44980468750005,30.387841796875048],[120.24550781249998,30.28354492187503],[120.19462890625,30.241308593750034],[120.22851562499997,30.249560546875014],[120.26054687500002,30.26303710937503],[120.35253906249997,30.247412109375034],[120.49453125,30.303076171875002],[120.63339843750005,30.133154296875034],[120.90449218750004,30.16064453125003],[121.159375,30.3017578125],[121.25800781250004,30.30410156250005],[121.340625,30.282373046874962],[121.4327148437501,30.226660156249977],[121.67792968750004,29.979101562500006],[121.81230468750007,29.952148437499996],[121.94433593749997,29.89409179687499],[122.01728515625008,29.88769531250003],[122.08291015625005,29.870361328125053],[121.90576171875001,29.779687500000055],[121.67656250000002,29.583789062500017],[121.57460937500004,29.53701171874999],[121.50625,29.484570312499958],[121.69042968750003,29.51098632812503],[121.821875,29.60463867187499],[121.88798828125002,29.627783203125006],[121.94121093750002,29.605908203124983],[121.96835937500006,29.490625],[121.91777343750007,29.13500976562497],[121.85351562500001,29.128906249999968],[121.79082031250002,29.225683593749977],[121.71748046875004,29.25634765625],[121.6559570312501,29.236132812499985],[121.53369140624997,29.236718750000023],[121.48710937500009,29.193164062500017],[121.44765625000004,29.131347656250025],[121.52089843750004,29.118457031249985],[121.66494140625,29.010595703125034],[121.67968749999996,28.953125],[121.641015625,28.915917968750026],[121.54003906250003,28.931884765625],[121.6625,28.851416015625034],[121.63007812500008,28.767919921874977],[121.59033203124997,28.734814453124983],[121.51914062500012,28.713671875000045],[121.47519531250006,28.641406249999957],[121.53808593749997,28.521093750000063],[121.60205078124999,28.36660156250002],[121.60996093750005,28.29213867187505],[121.50996093750003,28.324267578125014],[121.35458984375005,28.229882812499962],[121.27226562500002,28.222119140624983],[121.21679687499997,28.346191406250025],[121.14570312500004,28.326660156249968],[121.09843750000002,28.290527343749968],[121.03544921875007,28.157275390625014],[120.95859375000005,28.037011718750023],[120.89248046875,28.00390625000003],[120.81298828124996,28.01337890625001],[120.74765625000005,28.009960937500008],[120.76347656250002,27.977441406249962],[120.83300781249996,27.937792968749957],[120.83300781249996,27.891455078125034],[120.68515625000012,27.744580078124955],[120.66132812500003,27.68789062500005],[120.66484375000007,27.639453125000045],[120.58750000000012,27.580761718749983],[120.62910156250008,27.482128906249955],[120.60751953125012,27.41240234374996],[120.53984375,27.318359375],[120.46865234375,27.25625],[120.38457031250007,27.15551757812503],[120.2787109375,27.097070312500023],[120.13857421875004,26.88613281250005],[120.0974609375,26.78066406250005],[120.08671875000006,26.671582031250036],[120.04296875000003,26.63383789062499],[119.96777343749997,26.586376953124983],[119.88222656250004,26.610449218750002],[119.8794921875001,26.68300781250005],[119.84238281250012,26.689306640625006],[119.82128906249997,26.736914062500002],[119.81513671875004,26.79760742187503],[119.82421874999997,26.84638671875001],[119.78867187500012,26.83149414062501],[119.76669921875005,26.774707031249985],[119.71044921874997,26.728662109375023],[119.65156250000004,26.747265624999983],[119.58818359375002,26.784960937500045],[119.58994140625012,26.73046875000003],[119.62363281250006,26.675878906250006],[119.63818359374997,26.621191406249974],[119.7259765625,26.60942382812499],[119.78476562500012,26.546630859374968],[119.83115234375005,26.450195312500057],[119.84033203124999,26.414160156249977],[119.87646484374997,26.370947265624977],[119.88105468750008,26.33417968750004],[119.79726562499998,26.300146484375034],[119.69267578125007,26.236425781250002],[119.5670898437501,26.12734375],[119.46308593750005,26.05468750000003],[119.36972656250012,26.054052734374977],[119.3130859375001,26.062548828125017],[119.23212890625003,26.10439453125002],[119.13945312500006,26.121777343750008],[119.2637695312501,25.97480468750001],[119.33203124999996,25.94873046875003],[119.41777343750003,25.954345703124996],[119.50087890625001,26.009179687499994],[119.6187500000001,26.003564453124994],[119.64824218750002,25.91870117187503],[119.6168945312501,25.822900390624962],[119.5528320312501,25.698681640624983],[119.53945312500004,25.59125976562504],[119.61914062500003,25.437451171874955],[119.62246093749998,25.391162109375017],[119.59277343749996,25.368017578125034],[119.4992187500001,25.408642578125036],[119.42177734375005,25.45961914062502],[119.34375,25.446289062499968],[119.26308593750004,25.468017578125057],[119.180078125,25.449804687499977],[119.14628906250006,25.41430664062503],[119.16933593750005,25.355712890624996],[119.2435546875,25.307031250000023],[119.28554687499998,25.232226562500074],[119.23554687500004,25.20595703125005],[119.02460937500004,25.223437500000045],[118.97753906249997,25.209277343750017],[118.914453125,25.126806640625006],[118.95566406250012,25.004785156249994],[118.90908203125005,24.92890625000001],[118.82207031250006,24.91113281250003],[118.70751953125004,24.849804687499955],[118.63691406250004,24.835546874999974],[118.64023437500005,24.80908203125003],[118.691796875,24.782324218749974],[118.71914062499998,24.746142578125074],[118.65703125,24.621435546874977],[118.56035156250006,24.580371093750045],[118.41201171875004,24.600732421875023],[118.29531250000004,24.57275390625],[118.19453125000004,24.625830078124977],[118.0871093750001,24.627001953125042],[118.0138671875001,24.559912109375063],[118.00595703125005,24.48198242187499],[117.93505859375003,24.47421875],[117.896875,24.479833984375002],[117.84267578125004,24.47431640625004],[117.84824218750012,24.432470703125034],[117.87900390625006,24.395898437500048],[118.02421875000007,24.379638671875],[118.05058593750002,24.32714843749997],[118.0560546875,24.24609374999997],[117.90410156250002,24.106445312500057],[117.83945312500006,24.012304687500063],[117.74169921874997,24.014794921875023],[117.66787109375004,23.939257812499985],[117.62822265625,23.836718750000074],[117.57919921875013,23.856982421875014],[117.46640625000013,23.84057617187497],[117.43310546874997,23.791699218749955],[117.45957031250005,23.77148437500003],[117.46220703125006,23.736230468750023],[117.41699218749997,23.620996093749994],[117.36767578124997,23.58862304687497],[117.34667968749997,23.63574218749997],[117.33076171875003,23.708789062500045],[117.29082031250007,23.714355468749996],[117.225,23.647021484375074],[117.14814453125004,23.598779296874994],[117.08251953124996,23.578759765625023],[117.03281250000006,23.623437499999962],[116.91064453124996,23.646679687499983],[116.86093750000006,23.453076171874983],[116.75957031250002,23.382519531250008],[116.7121093750001,23.36049804687505],[116.62939453124997,23.353857421875034],[116.6823242187501,23.327392578125057],[116.69882812500006,23.277783203124983],[116.66914062500004,23.228173828124994],[116.58642578124996,23.218261718750025],[116.53828125000004,23.179687499999968],[116.51982421875002,23.00659179687497],[116.47070312499996,22.945898437500034],[116.3455078125,22.941064453125023],[116.25185546875005,22.981347656249994],[116.2220703125,22.949560546874977],[116.20634765625,22.91865234375001],[116.15742187500008,22.88745117187503],[116.06259765625012,22.87910156250001],[115.85214843750006,22.801562500000045],[115.75585937499997,22.823925781249983],[115.64042968750002,22.853417968750023],[115.5611328125001,22.824707031250057],[115.53466796875003,22.76518554687499],[115.49833984375002,22.71884765625006],[115.38251953125004,22.71884765625006],[115.28994140624998,22.775976562499977],[115.19580078125001,22.81728515625005],[115.0915039062501,22.781689453124983],[115.01210937499998,22.708935546874983],[114.914453125,22.684619140625017],[114.89638671875005,22.639501953125063],[114.85380859375006,22.616796875000063],[114.75039062500004,22.626318359375034],[114.71113281250003,22.73872070312501],[114.65166015625,22.755273437500023],[114.59277343749997,22.698437499999983],[114.57197265625004,22.654052734375],[114.54443359375003,22.62060546875003],[114.55419921874997,22.52890625],[114.49619140625012,22.52705078124998],[114.4201171875001,22.58325195312497],[114.340625,22.593212890624955],[114.26601562500005,22.54096679687498],[114.22822265625004,22.55395507812503],[114.1881835937501,22.564990234375074],[114.12285156250002,22.564990234375074],[114.09785156250004,22.551269531250025],[114.05039062500005,22.54296875000003],[114.0182617187501,22.51445312499999],[114.01542968750007,22.51191406250001],[113.93115234375003,22.53105468749999],[113.82832031250004,22.607226562500042],[113.75449218750012,22.733642578125057],[113.66113281249997,22.801660156249966],[113.61962890624997,22.861425781249977],[113.60341796875005,22.968896484375023],[113.58632812500005,23.020019531250057],[113.5921875,23.076953125000017],[113.6205078125,23.12749023437499],[113.51972656250004,23.102099609375074],[113.44531249999997,23.05507812499999],[113.46035156250005,22.995703124999977],[113.44189453125003,22.94057617187502],[113.33105468749996,22.912011718749966],[113.33779296875004,22.88881835937505],[113.34482421875012,22.864599609375006],[113.43203125000005,22.789404296875034],[113.44980468750012,22.726123046875045],[113.48476562500005,22.6923828125],[113.55302734375002,22.594042968750045],[113.55146484375004,22.404150390624977],[113.58886718750003,22.350488281249966],[113.57646484375007,22.297265624999966],[113.54912109375,22.225195312500034],[113.54677734375005,22.22412109375],[113.52705078125004,22.245947265625006],[113.49414062499997,22.241552734374977],[113.48105468750006,22.217480468749983],[113.47890625,22.19555664062503],[113.47343750000002,22.194433593749977],[113.4157226562501,22.178369140624994],[113.3673828125001,22.16484374999999],[113.3277343750001,22.145410156250023],[113.26640625000007,22.08876953125005],[113.14902343750012,22.075],[113.08876953124998,22.207958984374983],[113.00820312500005,22.119335937499955],[112.98378906250005,21.938232421874996],[112.95390625000006,21.907324218750034],[112.90380859374997,21.881445312499977],[112.80859374999997,21.94462890625007],[112.72539062500007,21.90234374999997],[112.66074218750012,21.859472656250034],[112.63408203125002,21.819873046875045],[112.58632812500005,21.776855468749996],[112.49472656250006,21.818310546875008],[112.4212890625,21.880615234374996],[112.43945312499997,21.92734375],[112.42929687500012,21.958105468749977],[112.3960937500001,21.98134765624999],[112.35966796875007,21.978027343750025],[112.37744140624997,21.917480468750057],[112.38974609375006,21.801220703124983],[112.35644531250003,21.76757812499997],[112.30498046875002,21.74169921875003],[112.19335937500001,21.763134765624955],[112.11718749999997,21.806494140625002],[112.02519531250006,21.84301757812497],[111.94394531250012,21.84965820312499],[111.9264648437501,21.776269531249966],[111.87343750000005,21.717138671875006],[111.82460937500005,21.709765625000017],[111.77597656250006,21.71923828124997],[111.71191406249997,21.65522460937501],[111.68164062499997,21.608496093749977],[111.60273437500004,21.55908203125003],[111.39238281250002,21.535107421874955],[111.31914062500002,21.486132812500017],[111.22060546874998,21.493896484375],[111.1442382812501,21.482226562500014],[111.10058593749997,21.484716796874977],[111.06113281250012,21.510986328125],[111.01689453125007,21.511718749999968],[110.99677734375003,21.430273437500006],[110.87802734375012,21.39594726562501],[110.77109375000006,21.386523437500045],[110.6521484375,21.279101562500014],[110.56718750000002,21.2140625],[110.504296875,21.20742187499999],[110.45800781249996,21.230566406250006],[110.43457031250003,21.326904296874996],[110.41093750000007,21.33813476562497],[110.39746093749996,21.247705078125023],[110.37460937500006,21.17236328125003],[110.33115234375006,21.131347656250025],[110.1935546875001,21.037646484375045],[110.15400390625003,20.944628906250017],[110.1803710937501,20.858593749999983],[110.36542968750003,20.83759765624995],[110.38847656250002,20.790527343750057],[110.3705078125,20.752050781250034],[110.32617187500003,20.71992187499995],[110.3130859375001,20.671679687499985],[110.51152343750006,20.51826171875001],[110.51757812500001,20.460009765625045],[110.48691406250012,20.426855468750034],[110.44951171875002,20.355419921874955],[110.34472656249997,20.29482421875005],[110.12314453125005,20.263720703125017],[109.93847656250003,20.29511718750001],[109.88251953125004,20.364062500000042],[109.88583984375012,20.41313476562499],[109.93164062500003,20.39887695312501],[109.98388671875003,20.40327148437504],[109.96835937500006,20.44814453125002],[109.94638671875012,20.47436523437503],[109.86103515625004,20.514306640624994],[109.79199218750003,20.621875],[109.80527343750006,20.711474609375014],[109.76738281250006,20.78071289062501],[109.72626953125003,20.838769531250023],[109.6847656250001,20.873632812500006],[109.66259765625003,20.91689453125005],[109.70449218750004,21.052734375],[109.68125000000012,21.13164062499999],[109.76015625,21.228369140624977],[109.77958984375007,21.337451171875017],[109.92109375000004,21.376464843750057],[109.93076171875012,21.48056640625003],[109.82958984375003,21.483593750000036],[109.75937500000012,21.56005859374997],[109.74335937500004,21.527978515625023],[109.6869140625,21.52460937500004],[109.59433593750006,21.671972656250034],[109.56640624999997,21.690576171874994],[109.52148437499997,21.693408203125045],[109.54404296875012,21.537939453125006],[109.43554687499996,21.479492187499996],[109.34667968749997,21.45395507812503],[109.2204101562501,21.443408203125017],[109.14863281250004,21.425537109375],[109.08154296874997,21.440283203125006],[109.09814453124997,21.487353515624985],[109.13349609375004,21.543603515624994],[109.1017578125001,21.59047851562505],[109.03056640625007,21.626513671875014],[108.92177734375,21.62441406250002],[108.8463867187501,21.63447265625004],[108.77167968750004,21.63046875],[108.74394531250002,21.651269531249994],[108.67451171875008,21.724658203125017],[108.61582031250012,21.77045898437504],[108.58935546874996,21.815966796875074],[108.61582031250012,21.868896484375],[108.59375,21.90102539062499],[108.47988281250004,21.904638671875006],[108.48085937500005,21.82880859375001],[108.49257812500005,21.739404296874994],[108.52568359375002,21.67138671875],[108.50214843750004,21.633447265624994],[108.44433593749997,21.60732421875002],[108.38281249999996,21.67919921875],[108.35458984375012,21.696923828124966],[108.32480468750005,21.693505859374994],[108.3021484375,21.621923828125063],[108.24628906250004,21.55839843749999],[108.14560546875006,21.56518554687503],[108.06738281250001,21.525976562500034],[107.97265624999996,21.507958984375023],[107.90839843750004,21.560400390625034],[107.80205078125006,21.645166015624994],[107.75927734374997,21.655029296875057],[107.64101562500005,21.613916015625023],[107.4713867187501,21.598339843749955],[107.43349609375005,21.64228515625004],[107.35117187500012,21.60888671874997],[107.27207031250005,21.71064453125001],[107.17851562500002,21.71708984374999],[107.06162109375012,21.79418945312497],[107.01982421875002,21.834863281249994],[107.00644531250005,21.893408203125034],[106.97099609375002,21.923925781250034],[106.92519531250005,21.920117187499955],[106.87451171875003,21.951269531250006],[106.79414062500003,21.981982421875045],[106.72949218749997,22.000341796875063],[106.69765625000004,21.986181640625002],[106.66357421875003,21.97890625000005],[106.65771484374996,22.018212890624966],[106.66005859374998,22.136474609375],[106.65419921875,22.24145507812497],[106.63652343750002,22.28862304687499],[106.5931640625,22.324511718750017],[106.55361328124998,22.341699218749966],[106.53632812500004,22.395410156249994],[106.55039062500006,22.501367187499994],[106.582421875,22.57324218749997],[106.63310546875002,22.586035156250002],[106.70156250000005,22.637744140625045],[106.73632812500001,22.710937500000057],[106.78027343749997,22.778906250000034],[106.62402343749997,22.87426757812503],[106.54179687500007,22.90834960937502],[106.45087890625004,22.893896484375006],[106.33808593750004,22.86347656250004],[106.2790039062501,22.857470703125045],[106.24941406250005,22.869433593750017],[106.183984375,22.955126953125045],[106.14843749999997,22.970068359375002],[106.06845703125012,22.975537109374955],[106.00097656250003,22.974755859374966],[105.9623046875,22.93745117187501],[105.90263671875007,22.92495117187505],[105.8429687500001,22.922802734374955],[105.78232421875005,22.969335937500034],[105.69121093750007,23.029931640625023],[105.54814453125007,23.072656250000023],[105.53085937500012,23.121972656250023],[105.49453125,23.18085937500004],[105.44013671875008,23.235351562500025],[105.35048828125005,23.307666015625017],[105.27539062500003,23.34521484375003],[105.23876953125003,23.322119140625034],[105.18906250000012,23.281054687500017],[104.99570312500006,23.19433593750003],[104.91015625000003,23.16054687499999],[104.86474609375001,23.136376953125023],[104.82656250000005,23.100195312500034],[104.81474609375002,23.010791015625017],[104.79570312500007,22.91113281249997],[104.74003906250002,22.860498046874966],[104.68730468750002,22.822216796874983],[104.63173828125,22.818212890625063],[104.57753906250005,22.82001953124998],[104.52685546875003,22.804101562500023],[104.37177734375004,22.704052734374983],[104.29833984374997,22.712011718750006],[104.23828125000001,22.768505859374955],[104.21250000000012,22.809423828125034],[104.14306640624997,22.800146484375006],[104.05390625000004,22.752294921875034],[104.01269531249997,22.66635742187503],[103.99082031250006,22.58613281250001],[103.9713867187501,22.55048828124995],[103.94150390625006,22.540087890625045],[103.91503906249997,22.538232421875023],[103.63730468750005,22.77001953125],[103.62021484375006,22.782031250000045],[103.57070312499998,22.734423828125042],[103.52539062500003,22.611572265625057],[103.49296875000006,22.587988281250034],[103.47099609375002,22.597412109375],[103.35605468750006,22.754687499999985],[103.32666015625003,22.769775390625057],[103.30058593750002,22.76440429687503],[103.26630859375004,22.71352539062505],[103.19335937500003,22.63852539062503],[103.13759765625005,22.592968749999983],[103.13632812500005,22.542236328125057],[103.07587890625008,22.49750976562501],[103.00537109375003,22.452978515624977],[102.98193359374997,22.448242187499996],[102.9351562500001,22.466162109375006],[102.87421875000004,22.525390625],[102.83007812500003,22.587158203125057],[102.72099609375007,22.648486328125017],[102.59853515625,22.700390625000036],[102.5171875000001,22.741015625000045],[102.47089843750004,22.75092773437501],[102.42792968750003,22.732812499999966],[102.40644531250004,22.70800781249997],[102.37578125,22.646630859374994],[102.30224609375003,22.545996093750006],[102.2370117187501,22.466015624999983],[102.1759765625001,22.414648437500006],[102.12744140624996,22.379199218750045],[102.09150390625008,22.41225585937505],[102.02441406250003,22.43920898437503],[101.94541015625005,22.439404296874983],[101.84179687500003,22.38847656249999],[101.75996093750003,22.490332031250034],[101.73876953124997,22.495263671874994],[101.70751953125003,22.486572265625],[101.67148437500006,22.462304687500023],[101.64619140625004,22.405419921874966],[101.61992187500002,22.32744140624999],[101.56787109374996,22.27636718749997],[101.52451171875006,22.25366210937497],[101.5373046875001,22.209863281250023],[101.56181640625,22.162402343750014],[101.56025390625004,22.120898437500017],[101.5757812500001,22.055273437500063],[101.60292968750004,21.98969726562501],[101.699609375,21.882470703125023],[101.7365234375001,21.826513671874977],[101.74394531250006,21.77797851562505],[101.74726562500003,21.605761718750045],[101.74345703125007,21.53383789062505],[101.72421875000005,21.39501953125],[101.72294921875007,21.31494140625003],[101.7630859375,21.278906249999977],[101.80205078125,21.235986328125023],[101.80058593750007,21.212597656249983],[101.78349609375007,21.204150390625017],[101.728125,21.156396484374994],[101.7047851562501,21.15014648437503],[101.66855468750006,21.16962890625001],[101.62167968750012,21.184423828125002],[101.58388671875004,21.20356445312501],[101.54238281250005,21.23427734375005],[101.4435546875001,21.230810546875034],[101.2814453125001,21.184130859375042],[101.24785156250006,21.197314453125045],[101.22441406250002,21.223730468750034],[101.21181640625,21.278222656250023],[101.2199218750001,21.34243164062505],[101.20556640624997,21.38330078125003],[101.17539062500006,21.407519531250074],[101.19667968750005,21.522070312500063],[101.1388671875001,21.567480468749977],[101.14726562500002,21.581640625],[101.128125,21.705126953125045],[101.13085937499997,21.73554687500001],[101.12070312500012,21.74609375000003],[101.07978515625004,21.75585937499997],[101.01933593750007,21.736376953125017],[100.83515625000004,21.655175781249994],[100.6771484375,21.504931640625017],[100.60458984375012,21.471777343750006],[100.53134765625012,21.458105468749977],[100.445703125,21.48408203125004],[100.35058593749997,21.501025390625017],[100.21474609375,21.462988281250006],[100.14765625000003,21.480517578125017],[100.11679687500005,21.511181640624955],[100.08925781250004,21.557910156250074],[100.10576171875002,21.617041015625034],[100.09550781250007,21.66064453125003],[100.0412109375001,21.682763671875023],[99.97822265625004,21.70161132812504],[99.94072265625006,21.75874023437504],[99.92558593750007,21.82080078124997],[99.94042968749997,21.901611328125],[99.94785156250006,21.988330078125017],[99.9176757812501,22.02802734375001],[99.8253906250001,22.04970703124999],[99.59267578125005,22.089160156250017],[99.38867187500001,22.110791015624983],[99.303125,22.100634765625045],[99.23339843750003,22.110156250000045],[99.19296875000005,22.12597656249997],[99.17343750000006,22.153320312500057],[99.17236328125001,22.192480468750034],[99.20537109375007,22.282568359375006],[99.24306640625005,22.370361328125025],[99.33769531250002,22.49804687500003],[99.3431640625,22.586523437500006],[99.33828125,22.688671874999955],[99.38515625000005,22.825097656250023],[99.46679687499997,22.927294921875074],[99.50712890625002,22.959130859374994],[99.49726562500003,23.00458984375001],[99.46455078125004,23.046240234375063],[99.41806640625006,23.069238281250023],[99.34082031249997,23.095898437499955],[99.22031250000012,23.103320312500042],[99.055078125,23.13056640625001],[98.86376953125003,23.191259765625034],[98.88554687500002,23.307470703124977],[98.88261718750007,23.380322265624983],[98.85888671875003,23.440087890624994],[98.81972656250005,23.482519531250034],[98.79785156250003,23.520410156250023],[98.8322265625001,23.624365234374974],[98.78769531250006,23.73784179687499],[98.73505859375008,23.783105468749994],[98.68085937500008,23.84179687500003],[98.67675781250003,23.905078125000045],[98.70156250000005,23.96406249999998],[98.83398437500003,24.090576171875],[98.83505859375006,24.121191406250034],[98.80234375000006,24.118701171875045],[98.76435546875003,24.116064453125063],[98.58339843750004,24.069824218750057],[98.5641601562501,24.098828125],[98.49941406250005,24.115673828124983],[98.36728515625006,24.119042968750023],[98.2125,24.110644531250017],[98.01689453125006,24.06542968750003],[97.83769531250007,23.98627929687498],[97.75566406250007,23.931884765625],[97.68603515624997,23.898095703124962],[97.62968750000007,23.887158203124955],[97.56455078125012,23.911035156250023],[97.56826171874998,23.988476562499983],[97.690625,24.13081054687504],[97.7082031250001,24.228759765624996],[97.67070312500007,24.31274414062497],[97.66660156250012,24.379980468750006],[97.62363281250005,24.422949218750034],[97.56328125000002,24.443847656250025],[97.53144531250004,24.49169921875003],[97.52939453125006,24.631201171875006],[97.58330078125002,24.77480468750005],[97.67070312500007,24.820117187500045],[97.72382812500004,24.841992187499983],[97.73789062500006,24.869873046875057],[97.71074218750007,24.970361328125023],[97.7149414062501,25.034326171874994],[97.76738281250007,25.15805664062506],[97.8195312500001,25.251855468749994],[97.91796874999997,25.236132812500074],[97.96201171875006,25.25932617187499],[98.01074218749996,25.292529296875017],[98.06406250000012,25.348974609375063],[98.09960937499997,25.415722656249983],[98.14287109375007,25.571093750000014],[98.1725585937501,25.594531250000074],[98.29658203125004,25.56884765625],[98.33378906250007,25.586767578125006],[98.40166015625002,25.67797851562503],[98.4655273437501,25.788867187500045],[98.55839843750007,25.82324218750003],[98.62539062500005,25.826708984375042],[98.65625,25.86357421874999],[98.6546875,25.917773437500017],[98.59101562500003,26.003710937500045],[98.56406250000006,26.072412109374994],[98.5719726562501,26.114062500000045],[98.66318359375012,26.13945312499999],[98.68554687499997,26.189355468750023],[98.671875,26.298535156249955],[98.70947265624997,26.42968750000003],[98.7318359375,26.58339843749999],[98.73935546875006,26.698144531250023],[98.7384765625001,26.785742187500006],[98.72949218750003,26.87739257812504],[98.71650390625003,27.04492187499997],[98.67480468749997,27.190625],[98.68242187500002,27.24531250000004],[98.67675781250003,27.421923828125042],[98.65117187500006,27.572460937499983],[98.59980468750008,27.59882812500001],[98.50449218750012,27.64765625000001],[98.4525390625,27.6572265625],[98.40888671875008,27.639453125000045],[98.39238281250002,27.587060546875023],[98.35048828124998,27.538085937499996],[98.29882812499997,27.550097656250045],[98.27421875000002,27.599072265624983],[98.24101562500006,27.663183593749977],[98.13046875000012,27.96757812499999],[98.11835937500004,28.055224609375017],[98.09892578125002,28.142285156249983],[98.0616210937501,28.185888671874977],[98.022265625,28.211523437500063],[97.93408203124997,28.313818359375002],[97.88759765625005,28.356494140625014],[97.86494140625004,28.363574218750017],[97.81650390625012,28.356347656249966],[97.76904296875003,28.35615234375004],[97.73007812500005,28.407128906250023],[97.69462890625007,28.469335937500006],[97.65888671875004,28.5],[97.59921875000006,28.51704101562504],[97.53789062500002,28.510205078124983],[97.5021484375001,28.456347656250017],[97.4777343750001,28.42563476562506],[97.43144531250002,28.35390625000002],[97.35644531249997,28.254492187500006],[97.3224609375001,28.21796875000004],[97.28945312500005,28.236816406250057],[97.14511718750012,28.34033203125],[97.07539062500004,28.36894531249996],[96.98085937500004,28.33769531249999],[96.83300781250003,28.36240234375006],[96.77578125,28.367041015625034],[96.65283203125003,28.44975585937499],[96.60263671875006,28.45991210937504],[96.42773437499997,28.40600585937497],[96.3890625,28.36791992187503],[96.3664062500001,28.367285156249977],[96.31982421875001,28.38652343749999],[96.28144531250008,28.412060546874955],[96.27890625000012,28.428173828124955],[96.32617187499997,28.468554687500014],[96.32988281250002,28.496826171874996],[96.32734375000004,28.525390625000057],[96.39560546875006,28.606542968750063],[96.58085937500007,28.763671875],[96.55,28.82958984375003],[96.47714843750012,28.959326171874977],[96.46708984375002,29.022265625000017],[96.43574218750008,29.050683593750023],[96.346875,29.027441406250006],[96.16220703125005,28.909716796875017],[96.13710937499998,28.922607421875053],[96.14140625000007,28.963476562500034],[96.12236328125,29.082080078125042],[96.18085937500004,29.117675781250004],[96.27050781250001,29.161230468750006],[96.33974609375,29.209814453125034],[96.355859375,29.249072265625042],[96.33720703125002,29.260986328124968],[96.23496093750006,29.245800781249983],[96.1947265625,29.272460937499996],[96.12851562500012,29.38139648437499],[96.07958984375003,29.42412109374999],[96.03535156250004,29.44716796874999],[95.88505859375007,29.39091796874999],[95.7103515625,29.313818359375006],[95.5158203125001,29.206347656250045],[95.51699218750005,29.151171874999985],[95.4937500000001,29.137011718750042],[95.45654296875001,29.10229492187497],[95.42021484375006,29.05429687500006],[95.38925781250006,29.037402343749985],[95.353125,29.035888671875025],[95.27910156250002,29.049560546874968],[95.1447265625001,29.10405273437499],[94.99882812500002,29.14916992187503],[94.96748046875004,29.144042968750057],[94.76943359375,29.17587890625006],[94.76308593750005,29.201269531249977],[94.73339843750003,29.251611328125023],[94.67705078125002,29.297021484375048],[94.62304687500003,29.312402343749962],[94.46806640625007,29.216210937499994],[94.29326171875007,29.144628906249977],[94.19345703125006,29.059912109375066],[94.1115234375001,28.97587890624999],[94.01767578125006,28.959521484375017],[94.01328125000006,28.90751953124999],[93.97363281249996,28.86079101562498],[93.90224609375,28.80322265624997],[93.76074218750003,28.729785156250017],[93.66494140625005,28.69023437499996],[93.36054687500004,28.654052734375053],[93.25195312500003,28.62949218750003],[93.20654296875001,28.590820312500057],[93.15781250000012,28.492724609374957],[93.11923828125006,28.402294921875008],[93.03496093750002,28.32763671875],[92.88183593750003,28.228125],[92.70185546875004,28.147119140624994],[92.65253906250004,28.093359375000034],[92.64345703125005,28.061523437500057],[92.66562500000012,28.04985351562499],[92.6875,28.025732421875034],[92.68779296875,27.98896484375001],[92.66435546875002,27.94892578125001],[92.54667968750002,27.879199218750017],[92.4806640625001,27.845947265625],[92.41484375000002,27.82460937499999],[92.34101562500004,27.820751953125008],[92.27011718750012,27.830224609374994],[92.25048828125003,27.841503906249983],[92.22226562500012,27.826953125000045],[92.1576171875,27.81225585937497],[92.10126953125008,27.8076171875],[91.97763671875012,27.730371093749994],[91.909375,27.72968750000004],[91.82470703124997,27.746435546874977],[91.71259765625004,27.759814453125042],[91.63193359375012,27.75996093749998],[91.62939453124997,27.800878906250063],[91.64189453125002,27.923242187500023],[91.60556640625006,27.951708984374957],[91.49335937500004,27.981787109375063],[91.367578125,28.021630859374994],[91.30683593750003,28.064013671875017],[91.27304687500012,28.078369140625],[91.22587890625007,28.071240234374983],[91.14990234374997,28.026757812499962],[91.07773437500012,27.974462890624977],[91.02080078125002,27.970068359374977],[90.9625,27.994580078124983],[90.90664062500004,28.026513671875023],[90.71572265625,28.071728515624983],[90.63007812500004,28.078564453124955],[90.47734375000007,28.07084960937499],[90.3527343750001,28.080224609375023],[90.33310546875012,28.093994140625],[90.33378906250006,28.11914062499997],[90.35214843750005,28.168164062500008],[90.36298828125004,28.21650390625001],[90.34824218750006,28.243945312499985],[90.22080078125006,28.27773437500005],[90.10449218749997,28.302050781250017],[89.98105468750006,28.311181640625023],[89.89785156249998,28.29414062500001],[89.81689453125003,28.25629882812501],[89.74980468750002,28.18818359375001],[89.65273437500005,28.158300781250034],[89.53691406250007,28.10742187499997],[89.48066406250008,28.059960937499994],[89.39589843750005,27.958154296875023],[89.27265625000004,27.833154296874962],[89.16044921875002,27.711279296875006],[89.10234375000002,27.59257812499999],[89.02548828125006,27.517871093750045],[88.94755859375002,27.464013671874994],[88.89140625000002,27.316064453124966],[88.83251953125003,27.36284179687499],[88.7648437500001,27.429882812499983],[88.74902343749997,27.521875],[88.82988281250002,27.76738281249999],[88.84882812500004,27.86865234375],[88.82861328125003,27.90727539062496],[88.80371093750001,28.006933593750034],[88.75625,28.03969726562505],[88.62109375000003,28.091845703125017],[88.57792968750002,28.093359375000034],[88.531640625,28.057373046875],[88.48613281250006,28.034472656250042],[88.42597656250004,28.01166992187501],[88.27519531250007,27.968847656250006],[88.14111328125003,27.94892578125001],[88.10898437500006,27.933007812499966],[88.09892578125002,27.904541015625025],[88.10976562500004,27.870605468750057],[88.02333984375,27.883398437500006],[87.93339843750007,27.890820312499983],[87.8607421875,27.886083984375002],[87.68271484375006,27.82138671875006],[87.62255859374997,27.81518554687503],[87.55527343750012,27.82182617187496],[87.46416015625002,27.823828125000034],[87.29072265625004,27.821923828124994],[87.14140625000002,27.838330078124955],[87.02011718750006,27.928662109374983],[86.9337890625001,27.96845703125001],[86.84238281250012,27.99916992187505],[86.750390625,28.022070312500002],[86.71962890625005,28.070654296875034],[86.69052734375006,28.09492187500001],[86.61445312500004,28.10302734374997],[86.55449218750007,28.08520507812497],[86.51689453125007,27.963525390624962],[86.48496093750012,27.939550781249977],[86.40869140625003,27.928662109374983],[86.32861328124996,27.95952148437496],[86.21796875000008,28.022070312500002],[86.17421875000005,28.091699218749966],[86.13701171875002,28.11435546875006],[86.07871093750006,28.08359375],[86.07548828125002,27.994580078124983],[86.0641601562501,27.934716796874966],[85.99453125000005,27.910400390625],[85.95410156249997,27.92822265624997],[85.92167968750002,27.98969726562498],[85.84023437500005,28.135351562499974],[85.75947265625004,28.22065429687495],[85.6783203125001,28.277441406249977],[85.41064453125003,28.276025390625048],[85.21210937500003,28.292626953124962],[85.1224609375,28.315966796875017],[85.08857421875004,28.37226562500001],[85.121484375,28.48427734375002],[85.16015624999997,28.571875],[85.15908203125,28.592236328124983],[85.1263671875,28.602636718750063],[85.06914062500007,28.609667968749985],[84.85507812500006,28.553613281250023],[84.796875,28.56020507812502],[84.7593750000001,28.57924804687499],[84.71425781249998,28.595556640625034],[84.67675781249997,28.62153320312501],[84.65058593750004,28.65957031250002],[84.46542968750012,28.752929687500025],[84.41074218750006,28.80390625000004],[84.31210937500012,28.868115234374955],[84.22871093750008,28.911767578124962],[84.17558593750002,29.036376953125053],[84.12783203125005,29.156298828124957],[84.1013671875,29.21997070312497],[84.02197265624997,29.25385742187504],[83.93593750000004,29.279492187500008],[83.79042968749998,29.227441406249994],[83.6710937500001,29.187597656250034],[83.58349609375001,29.18359375000003],[83.45664062500012,29.306347656249983],[83.35517578125004,29.43916015624995],[83.23515625000002,29.554589843750023],[83.15546875000004,29.61264648437503],[83.01396484375007,29.61806640624999],[82.85429687500002,29.683398437499957],[82.6408203125001,29.831201171874966],[82.4865234375001,29.941503906249977],[82.22070312500003,30.06386718750002],[82.15898437500007,30.11518554687501],[82.13535156250012,30.158984374999957],[82.09892578125007,30.24506835937501],[82.04335937500005,30.326757812500038],[81.8548828125,30.362402343750006],[81.64189453125007,30.3875],[81.4171875000001,30.337597656250008],[81.25507812500004,30.093310546874985],[81.17714843750004,30.039892578125034],[81.11035156250003,30.036816406250043],[81.05556640625005,30.09897460937501],[81.01025390624997,30.16450195312501],[80.98544921875006,30.237109374999985],[80.87353515625003,30.290576171875042],[80.74677734375004,30.36040039062496],[80.68212890625003,30.414843750000045],[80.60888671875003,30.448876953125048],[80.54101562500003,30.46352539062502],[80.4095703125,30.509472656249955],[80.2609375000001,30.561328125000045],[80.19121093750002,30.568408203124957],[80.18623046875004,30.605322265625034],[80.20712890625006,30.68374023437502],[80.19433593750003,30.759228515625036],[80.14941406250003,30.78984375],[80.0814453125,30.78193359374995],[79.92451171875004,30.88876953125003],[79.91660156250012,30.89418945312499],[79.871875,30.92460937499999],[79.79462890625004,30.968261718749996],[79.66425781250004,30.96523437499999],[79.56542968749997,30.949072265624974],[79.49316406249997,30.993701171875014],[79.38847656250007,31.064208984375],[79.36962890624997,31.079931640625002],[79.33876953125,31.105712890624996],[79.23261718750004,31.241748046875014],[79.10712890625004,31.402636718750017],[79.04375,31.426220703125036],[79.0111328125,31.414111328124957],[78.97392578125007,31.32861328125003],[78.9459960937501,31.337207031250014],[78.89951171875012,31.33134765624996],[78.84453125000002,31.30151367187503],[78.79160156250006,31.29365234375001],[78.75781250000003,31.302490234375057],[78.74355468750005,31.32377929687502],[78.75859375000007,31.436572265625014],[78.7267578125001,31.471826171874994],[78.7550781250001,31.550292968749996],[78.80292968750004,31.61806640625002],[78.75390625000003,31.668359374999966],[78.69345703125006,31.740380859374994],[78.68701171874997,31.805517578125038],[78.71972656249997,31.887646484374983],[78.73544921875006,31.957958984375015],[78.72558593750003,31.98378906250002],[78.67773437499997,32.023046875000034],[78.49589843750002,32.21577148437504],[78.48613281250002,32.23623046875002],[78.45527343750008,32.30034179687502],[78.44130859374998,32.397363281249994],[78.41748046874997,32.466699218749994],[78.38964843749997,32.51987304687498],[78.39169921875012,32.54472656249999],[78.4125,32.55771484375006],[78.52636718750003,32.570800781249964],[78.63154296875004,32.578955078125034],[78.70087890625003,32.59702148437498],[78.73671875,32.55839843750001],[78.75351562500012,32.49926757812506],[78.77128906250002,32.46806640625002],[78.83789062499996,32.411962890625034],[78.91894531249996,32.35820312500002],[78.99765625000012,32.365136718749994],[79.06699218750012,32.38818359374997],[79.12734375,32.47578124999998],[79.16992187500003,32.497216796874994],[79.21933593750006,32.50107421874997],[79.21904296875002,32.50756835937497],[79.21650390625004,32.56401367187502],[79.23388671875003,32.70307617187501],[79.22792968750005,32.75878906249999],[79.20556640625003,32.80903320312501],[79.20957031250012,32.86484375],[79.20224609375006,32.94604492187502],[79.14550781250003,33.00146484375006],[79.10859375000004,33.02265625000001],[79.10283203125007,33.05253906249996],[79.12167968750005,33.10810546875001],[79.13515625000005,33.17192382812496],[79.115625,33.21894531250004],[79.1125,33.22626953125001],[79.06650390625012,33.25039062500005],[79.01259765625005,33.29145507812498],[78.94843750000004,33.346533203125006],[78.91669921875004,33.38676757812502],[78.86503906250002,33.431103515625004],[78.80185546875012,33.49970703125004],[78.78994140625,33.65034179687498],[78.78378906250006,33.80878906250004],[78.76171875000003,33.88759765625002],[78.72666015625006,34.013378906249955],[78.73173828125,34.05556640625002],[78.75302734375012,34.08769531250002],[78.9317382812501,34.18896484375003],[78.97060546875,34.22822265625004],[78.976953125,34.25810546874999],[78.9701171875,34.30263671875002],[78.93642578125,34.35195312500002],[78.86484375000006,34.39033203125001],[78.7630859375,34.45292968749999],[78.67080078125005,34.518164062500034],[78.51572265625006,34.55795898437498],[78.32695312500007,34.60639648437498],[78.28203125000007,34.65390624999998],[78.23613281250007,34.76982421874999],[78.15849609375002,34.94648437499998],[78.07578125000006,35.13491210937502],[78.01220703124997,35.251025390625045],[78.0091796875,35.30693359374999],[78.04746093750006,35.449414062499955],[78.0426757812501,35.47978515625002],[78.00947265625004,35.49023437500003],[77.94589843750006,35.471630859374955],[77.894921875,35.44902343749996],[77.85156250000003,35.46079101562506],[77.8109375,35.484521484374994],[77.80253906250002,35.492773437500006],[77.79941406250006,35.49589843750002],[77.7240234375,35.480566406250006],[77.57255859375,35.471826171874994],[77.52001953124997,35.4734375],[77.44648437500004,35.47558593750006],[77.29482421875005,35.508154296875034],[77.09003906250004,35.55205078124998],[76.87890625000003,35.61328125000003],[76.76689453125002,35.661718750000034],[76.72753906250003,35.67866210937504],[76.63183593749997,35.729394531249966],[76.56347656249997,35.77299804687499],[76.55126953124997,35.887060546875034],[76.50205078125006,35.87822265625002],[76.38574218750003,35.83715820312499],[76.25166015625004,35.8109375],[76.1778320312501,35.810546875],[76.14785156250004,35.82900390625002],[76.1033203125,35.94921875],[76.07089843750006,35.983007812500034],[76.01044921875003,35.996337890625],[75.94511718750002,36.01757812499997],[75.91230468750004,36.048974609374994],[75.9048828125,36.088476562500034],[75.93408203125003,36.133935546874966],[75.96865234375005,36.16884765624996],[75.97441406250007,36.38242187500006],[75.9518554687501,36.458105468750034],[75.9330078125,36.52158203124998],[75.88496093750003,36.60073242187502],[75.840234375,36.64970703124999],[75.7721679687501,36.69492187500003],[75.6671875000001,36.741992187500045],[75.57373046874997,36.75932617187501],[75.46025390625002,36.725048828124955],[75.42421875000004,36.73823242187498],[75.37685546875,36.88369140625005],[75.34667968749997,36.913476562499966],[75.14521484375004,36.97324218749998],[75.05390625000004,36.98715820312498],[74.94912109375,36.96835937500006],[74.88925781250006,36.95244140625002],[74.84121093750005,36.979101562500034],[74.766015625,37.012744140625045],[74.69218750000006,37.035742187500006],[74.60058593749997,37.03666992187502],[74.54140625,37.02216796875001],[74.52646484375005,37.03066406250005],[74.49794921874998,37.057226562500034],[74.37617187500004,37.13735351562502],[74.37216796875005,37.15771484374999],[74.558984375,37.23662109374999],[74.66894531250003,37.266699218750006],[74.72666015625005,37.29072265625001],[74.7389648437501,37.28564453125003],[74.76738281250002,37.249169921874966],[74.840234375,37.22504882812504],[74.89130859375004,37.231640624999955],[74.9181640625001,37.25],[75.0083984375,37.29355468750006],[75.07900390625,37.344042968750045],[75.11875,37.38569335937498],[75.09746093750002,37.451269531250034],[74.98642578125006,37.53037109374997],[74.91582031250007,37.57280273437502],[74.8942382812501,37.60141601562498],[74.91230468750004,37.68730468749999],[74.93828125000002,37.77250976562502],[74.9212890625,37.80498046874996],[74.90029296874998,37.83271484375001],[74.8908203125001,37.92578124999997],[74.84248046875004,38.03808593750003],[74.7896484375,38.10361328125006],[74.77509765625003,38.19189453125],[74.77207031250006,38.274755859375006],[74.83593750000003,38.40429687500003],[74.8123046875,38.46030273437498],[74.74501953125,38.51000976562497],[74.5140625,38.6],[74.27744140624999,38.659765625000034],[74.1873046875,38.65751953125002],[74.13134765625003,38.66118164062496],[74.06533203125,38.60849609374997],[74.02558593750004,38.53984375000002],[73.97001953125002,38.53369140625],[73.86914062499997,38.56289062500002],[73.80166015624998,38.60688476562501],[73.7541015625001,38.698925781250004],[73.71679687500003,38.817236328125034],[73.69609375000007,38.85429687499996],[73.70683593750002,38.88623046874997],[73.72998046874997,38.914697265624994],[73.79453125000006,38.94130859375002],[73.80527343749999,38.968652343749994],[73.7956054687501,39.00214843749998],[73.74375,39.04453124999998],[73.69042968749997,39.10454101562496],[73.60732421875,39.22919921874995],[73.62314453125006,39.2978515625],[73.63632812500006,39.396679687499955],[73.63164062500006,39.44887695312502],[73.71572265624998,39.462255859375006],[73.82294921875004,39.48896484375004],[73.87275390625008,39.533300781250006],[73.90712890625,39.578515624999966],[73.9146484375,39.60649414062499],[73.88251953125004,39.714550781249976],[73.83974609375005,39.762841796875044],[73.8353515625,39.800146484375006],[73.85625,39.828662109375045],[73.88457031250002,39.87792968750006],[73.93876953125002,39.97880859374998],[73.99160156250004,40.04311523437502],[74.02050781249997,40.059375],[74.0851562500001,40.074316406250006],[74.24267578124996,40.09204101562506],[74.41191406250007,40.13720703125003],[74.61308593750002,40.27216796874998],[74.67988281250004,40.31059570312499],[74.7677734375001,40.32988281250002],[74.83046875,40.32851562499999],[74.84179687499997,40.34497070312497],[74.80126953124997,40.428515625000045],[74.81113281250006,40.45878906249999],[74.83515625000004,40.482617187499955],[74.865625,40.49350585937503],[75.0044921875,40.44951171874996],[75.11132812499997,40.4541015625],[75.24101562500002,40.48027343750002],[75.52080078125002,40.627539062500006],[75.55556640625,40.625195312499955],[75.58349609375003,40.605322265625006],[75.61738281250004,40.51660156250003],[75.65595703125003,40.32924804687496],[75.6771484375,40.30581054687499],[75.87197265625,40.30322265625],[76.004296875,40.371435546875034],[76.06230468750002,40.387548828125034],[76.15664062500005,40.37646484375],[76.20605468750003,40.40839843750001],[76.25830078124997,40.43076171875006],[76.3185546875001,40.352246093749955],[76.39638671875005,40.389794921874966],[76.4801757812501,40.44951171874996],[76.5208984375,40.51123046875],[76.57792968750002,40.57788085937499],[76.62216796875005,40.66235351562497],[76.6398437500001,40.74223632812499],[76.66113281249996,40.77963867187497],[76.70839843750005,40.818115234375],[76.82402343750002,40.982324218749966],[76.90771484374997,41.02416992187497],[76.98662109375002,41.039160156250006],[77.18203125000005,41.0107421875],[77.28398437500006,41.01435546875001],[77.58173828125004,40.99277343750006],[77.71933593750012,41.024316406249994],[77.81523437500002,41.05561523437498],[77.95644531249998,41.05068359375005],[78.1234375,41.075634765624976],[78.34628906250012,41.28144531249998],[78.34882812500008,41.32519531250003],[78.3624023437501,41.37163085937496],[78.44287109374997,41.41752929687499],[78.5431640625001,41.459570312500034],[78.742578125,41.56005859375],[79.14843750000003,41.71914062499999],[79.29355468750006,41.78281249999998],[79.35439453125005,41.78105468749999],[79.50390624999997,41.82099609375004],[79.76611328124997,41.89887695312501],[79.84042968750012,41.99575195312502],[79.90966796875003,42.014990234375034],[80.21621093750005,42.03242187500004],[80.23515625000006,42.04345703124997],[80.24619140625012,42.05981445312503],[80.2291992187501,42.129833984374976],[80.209375,42.190039062500006],[80.23300781250006,42.2078125],[80.25908203125006,42.23540039062499],[80.25507812500004,42.274169921875],[80.20576171875004,42.39941406250003],[80.17929687500006,42.51835937499999],[80.16191406250007,42.62553710937499],[80.16503906249997,42.66552734375006],[80.2022460937501,42.73447265624998],[80.25029296875007,42.797265624999966],[80.4240234375001,42.85576171874999],[80.53896484375005,42.873486328124955],[80.54375,42.911718750000034],[80.45068359375003,42.935546875],[80.38339843750006,42.973779296874966],[80.37128906250008,42.99560546874997],[80.37451171874997,43.02041015624996],[80.39023437500006,43.043115234374966],[80.50703125000004,43.085791015625055],[80.61699218750007,43.128271484375006],[80.75117187500004,43.10249023437498],[80.77773437500005,43.11894531249996],[80.78574218750006,43.16157226562504],[80.7570312500001,43.20434570312506],[80.72978515625002,43.27426757812498],[80.66777343750002,43.31005859375],[80.6654296875,43.35297851562504],[80.7038085937501,43.42705078125002],[80.65078125,43.564160156249976],[80.59345703125004,43.68510742187502],[80.49599609375,43.89208984375],[80.43154296875005,43.95175781249998],[80.39580078125002,44.04716796874999],[80.3552734375,44.09726562500006],[80.35898437500006,44.171289062500044],[80.36533203125012,44.22329101562496],[80.35488281250005,44.326513671875034],[80.336328125,44.43837890624999],[80.35507812500006,44.55200195312497],[80.39101562500005,44.626806640625034],[80.38144531250012,44.65541992187499],[80.40058593750004,44.67690429687502],[80.45546875,44.68408203124997],[80.48154296875006,44.71464843749999],[80.45546875,44.74609375],[80.36083984375003,44.770312500000045],[80.25507812500004,44.80810546875],[80.12783203125005,44.80375976562502],[79.99716796875006,44.797216796875006],[79.93212890624997,44.82519531250003],[79.87529296875002,44.86083984375],[79.871875,44.88378906249997],[79.95019531250001,44.944091796875],[80.05917968750012,45.0064453125],[80.22822265625008,45.03398437500001],[80.41494140625,45.07509765625005],[80.50917968750005,45.10498046875],[80.63476562500003,45.126513671875045],[80.78007812500007,45.13554687500002],[80.85332031250007,45.12929687499999],[81.04033203125007,45.16914062500001],[81.334765625,45.246191406250006],[81.60205078125003,45.31083984375002],[81.6919921875001,45.34936523437497],[81.75888671875006,45.31083984375002],[81.78964843750012,45.22602539062498],[81.86748046875002,45.18208007812498],[81.94492187500006,45.16083984375001],[81.98925781250003,45.16186523437506],[82.12275390625003,45.19487304687502],[82.26660156249997,45.21909179687497],[82.3234375000001,45.205859375000045],[82.3966796875001,45.162451171875006],[82.4787109375001,45.12358398437499],[82.52148437500003,45.12548828124999],[82.558984375,45.15541992187499],[82.59697265625002,45.215966796874966],[82.62109374999997,45.293115234374966],[82.62578125,45.37441406250002],[82.61162109375007,45.424267578124955],[82.58251953125003,45.442578124999955],[82.45166015624997,45.47197265624999],[82.32666015625003,45.51992187499999],[82.3122070312501,45.56372070312503],[82.31523437500002,45.59492187499998],[82.34814453124997,45.671533203124966],[82.42968749999997,45.811914062499966],[82.51171874999997,46.00581054687504],[82.555078125,46.15869140625],[82.69218750000007,46.38666992187501],[82.8,46.62446289062504],[82.97490234375002,46.966015624999976],[83.0041015625001,47.03349609374995],[83.02011718750006,47.141455078125034],[83.02949218750004,47.18593750000002],[83.09033203124997,47.209375],[83.19306640625004,47.18657226562498],[83.4435546875001,47.108642578125],[83.63408203125002,47.043212890625],[83.71396484375012,47.02104492187502],[83.83261718750006,46.99785156249999],[84.016015625,46.97050781250002],[84.12207031249997,46.97861328124998],[84.21513671875006,46.99472656249998],[84.33886718749997,46.99614257812499],[84.53242187500004,46.97578125000001],[84.59228515625003,46.974951171875034],[84.66660156250006,46.97236328125004],[84.71953125000007,46.939355468749966],[84.74599609375005,46.86435546875006],[84.78613281249997,46.830712890625044],[84.858203125,46.843164062499994],[85.01220703125003,46.90922851562496],[85.1105468750001,46.96123046874999],[85.23349609375006,47.03637695312502],[85.35537109375005,47.046728515625006],[85.484765625,47.06352539062496],[85.5296875,47.10078125],[85.57724609375012,47.1884765625],[85.65664062500005,47.25463867187499],[85.66982421875005,47.33837890625],[85.64179687500004,47.39741210937504],[85.58662109375008,47.49365234375],[85.58828125000005,47.558496093749994],[85.56162109375012,47.74648437499999],[85.52597656250006,47.915625],[85.56230468750002,48.05185546875003],[85.6263671875,48.20400390625005],[85.65156250000004,48.25053710937502],[85.69218750000006,48.31181640624999],[85.74941406249998,48.38505859374999],[85.82988281250007,48.40805664062506],[86.05615234374997,48.42373046875005],[86.265625,48.45454101562501],[86.37255859374997,48.486230468749994],[86.48330078125005,48.50537109374997],[86.54941406250012,48.52861328125002],[86.66376953125004,48.635546875000045],[86.7179687500001,48.697167968749966],[86.75781250000003,48.860742187499994],[86.72861328125012,48.93935546875002],[86.753125,49.00883789062496],[86.8083007812501,49.04970703125002],[86.8859375000001,49.090576171875],[86.93798828124997,49.09755859375002],[87.0485351562501,49.109912109375045],[87.22998046875003,49.10585937500002],[87.32285156250012,49.085791015625],[87.41669921875004,49.07661132812501],[87.47617187500006,49.09145507812502],[87.5158203125001,49.122412109375],[87.5765625,49.13237304687499],[87.668359375,49.147216796875],[87.7625,49.16582031249996],[87.8142578125,49.16230468749995],[87.82519531249997,49.116308593750006],[87.81630859374998,49.080273437499955],[87.83466796875004,49.03193359374995],[87.87216796875012,49.000146484374966],[87.85986328125003,48.96552734375001],[87.80683593750004,48.94550781250004],[87.75468750000006,48.918554687500034],[87.74316406250001,48.88164062499999],[87.80917968750006,48.83574218749995],[87.83183593750007,48.79165039062505],[87.94218750000006,48.765283203124994],[88.02792968750006,48.735595703125],[88.06005859375003,48.70717773437496],[88.05019531250005,48.675048828125],[88.01064453125,48.64042968749996],[87.97226562500006,48.60332031250004],[87.96738281250006,48.58105468750002],[87.97968750000008,48.55512695312498],[88.06259765625012,48.53784179687503],[88.15820312500001,48.50908203125001],[88.30996093750005,48.47207031250002],[88.41396484375,48.403417968750006],[88.51708984374997,48.384472656249955],[88.56679687500005,48.31743164062495],[88.57597656250007,48.22016601562495],[88.68183593750003,48.170556640624994],[88.83828125000005,48.101708984374994],[88.91777343750007,48.089013671874966],[88.97109375,48.04995117187502],[89.04765625000007,48.00253906250003],[89.115625,47.98769531250002],[89.19628906249997,47.98090820312498],[89.32988281250007,48.024853515624955],[89.47919921875004,48.02905273437503],[89.5609375,48.00395507812496],[89.63847656250007,47.909082031249994],[89.69316406250002,47.87915039062502],[89.72558593749997,47.85249023437501],[89.778125,47.82700195312498],[89.83134765625002,47.82329101562502],[89.91044921875007,47.84433593750003],[89.95869140625004,47.88632812499998],[90.02792968750012,47.877685546875],[90.05390625000003,47.850488281249966],[90.0666015625001,47.803564453125006],[90.1032226562501,47.74541015624996],[90.1910156250001,47.70209960937501],[90.31328125000007,47.67617187499999],[90.33066406250006,47.655175781249966],[90.34746093750002,47.59697265625002],[90.38066406250002,47.55664062500006],[90.42519531250005,47.50410156250001],[90.46748046875003,47.40815429687501],[90.47646484374998,47.32880859375001],[90.4961914062501,47.28515625],[90.55292968750004,47.214013671874966],[90.64335937500007,47.10029296874998],[90.71552734375003,47.00385742187498],[90.79902343750008,46.98515624999999],[90.86992187500002,46.95449218750005],[90.91054687500005,46.88325195312501],[90.9857421875,46.7490234375],[90.99785156250007,46.66108398437504],[91.00429687500005,46.59575195312496],[91.0289062500001,46.56606445312505],[91.03388671875004,46.529003906249955],[90.97148437500002,46.38798828124999],[90.91826171875002,46.32426757812499],[90.9115234375,46.270654296874994],[90.94755859375002,46.17729492187499],[90.99677734375003,46.10498046874999],[91.00175781250007,46.03579101562502],[90.95976562500002,45.98505859374998],[90.887109375,45.92163085937503],[90.85244140625005,45.88540039062502],[90.79589843749997,45.853515625],[90.7096679687501,45.730810546875055],[90.67070312500002,45.595166015624955],[90.6618164062501,45.525244140625006],[90.69443359375006,45.47465820312502],[90.74960937500012,45.41894531250003],[90.76318359374997,45.370654296875045],[90.8532226562501,45.26289062500004],[90.87724609375002,45.19609375000002],[90.91396484375005,45.193945312500006],[90.95361328125003,45.21591796875006],[91.05,45.21743164062499],[91.13769531249997,45.193945312500006],[91.22177734375006,45.14453124999997],[91.31210937500006,45.11811523437501],[91.44101562500012,45.12475585937503],[91.51005859375007,45.09824218750006],[91.584375,45.07651367187498],[91.73779296875003,45.06894531250003],[91.85283203125,45.06933593750003],[92.02978515624997,45.06850585937505],[92.17265625000007,45.035253906250006],[92.42382812499997,45.008935546874994],[92.57890625000002,45.01098632812506],[92.78789062500007,45.035742187500034],[92.91601562499997,45.02016601562505],[93.29433593750005,44.98315429687497],[93.51621093750012,44.944482421874994],[93.6564453125001,44.900976562500006],[93.75527343749998,44.83193359374999],[93.86816406249997,44.72421874999998],[93.95791015625004,44.674951171874966],[94.19931640625012,44.64516601562502],[94.36474609374996,44.51948242187501],[94.49433593750008,44.472509765625034],[94.71201171875012,44.35083007812502],[94.866015625,44.30332031250003],[95.04980468750003,44.259423828124966],[95.35029296875004,44.27807617187503],[95.36679687500012,44.261523437500045],[95.34365234374998,44.19541015624998],[95.32558593750004,44.104882812500016],[95.32558593750004,44.03935546874999],[95.35644531250001,44.005957031250006],[95.47128906250006,43.98618164062498],[95.52558593750004,43.953955078125006],[95.56718750000007,43.89223632812502],[95.5912109375,43.85361328124998],[95.68730468750002,43.6640625],[95.8419921875001,43.383691406249994],[95.85957031250004,43.27597656249998],[95.9125,43.20649414062504],[96.08027343750003,43.09614257812504],[96.16845703124997,43.014501953125006],[96.29951171875004,42.92871093750003],[96.3424804687501,42.84931640625001],[96.35234375000007,42.746777343749976],[96.38544921875003,42.72036132812502],[96.62529296875007,42.74384765625001],[96.83300781250003,42.76025390624999],[97.20566406250012,42.78979492187505],[97.71894531250004,42.73627929687498],[98.24824218750004,42.68452148437501],[98.71630859375003,42.63872070312502],[98.946875,42.61621093750003],[99.46787109375012,42.568212890625034],[99.75742187500012,42.62944335937498],[99.98378906250005,42.67734375000006],[100.08632812500005,42.670751953125055],[100.51904296875003,42.61679687499998],[100.77255859375006,42.58779296875002],[101.09199218750003,42.55131835937496],[101.31376953125,42.53789062499999],[101.49531250000004,42.53876953124998],[101.57910156249996,42.52353515624998],[101.65996093750002,42.50004882812499],[101.71386718749997,42.46582031250006],[101.87988281249997,42.292333984375055],[101.97294921875002,42.21586914062502],[102.15664062500005,42.158105468749966],[102.57519531249997,42.09208984375002],[102.8068359375001,42.05200195312503],[103.07285156250005,42.00595703125006],[103.24785156250002,41.93657226562495],[103.44970703125001,41.85585937500002],[103.7111328125001,41.75131835937506],[103.99726562500003,41.796972656250034],[104.30517578124997,41.84614257812501],[104.49824218750004,41.87700195312499],[104.49824218750004,41.65869140625],[104.7736328125001,41.64116210937498],[104.86035156250003,41.64375],[104.98203125000012,41.59550781250001],[105.05058593750002,41.615917968750004],[105.1154296875001,41.66328124999998],[105.19707031250002,41.738037109375],[105.31435546875004,41.77089843750005],[105.51708984374997,41.85473632812497],[105.56640624999997,41.875097656250034],[105.86757812500004,41.993994140625034],[106.31718750000007,42.14057617187495],[106.51875,42.21157226562502],[106.57910156249997,42.227343750000045],[106.69316406250002,42.26357421874996],[106.77001953125003,42.28872070312502],[106.9060546875,42.30888671874996],[107.09072265625,42.32153320312505],[107.29238281250004,42.34926757812502],[107.74873046875004,42.40097656249998],[107.80595703125007,42.405859375],[108.06230468750007,42.427197265624976],[108.17119140625002,42.44731445312502],[108.33398437499997,42.43676757812499],[108.5464843750001,42.42929687499998],[108.68730468750002,42.416113281250034],[108.87451171874997,42.42646484375001],[109.13164062500002,42.440576171874966],[109.33984374999997,42.43837890625005],[109.44316406250002,42.455957031249994],[109.59550781250002,42.51054687500001],[109.69804687500007,42.553808593750034],[109.85878906250005,42.60625],[110.05800781250005,42.660595703125004],[110.196875,42.71000976562496],[110.28886718750006,42.74272460937495],[110.40039062499997,42.77368164062497],[110.42958984375004,42.813574218750006],[110.46171875000002,42.84414062500002],[110.52089843749998,42.89526367187506],[110.62753906250006,42.99052734375002],[110.70859375000006,43.07387695312502],[110.74853515625003,43.11079101562498],[110.8395507812501,43.194091796875],[110.91328125000008,43.25688476562499],[111.00722656250005,43.34140624999998],[111.08652343750012,43.36875],[111.18681640625002,43.391992187499994],[111.45107421875005,43.47490234375001],[111.50351562500006,43.4927734375],[111.54736328124997,43.49628906250001],[111.6408203125001,43.563183593749955],[111.71972656249997,43.62114257812495],[111.77109375000006,43.66459960937502],[111.878125,43.68017578124999],[111.93320312500006,43.71142578125006],[111.94287109374996,43.75244140624997],[111.9317382812501,43.81494140625],[111.88027343749998,43.87890624999997],[111.83691406249997,43.93466796875006],[111.68378906250004,44.04111328124998],[111.6026367187501,44.10712890625001],[111.5197265625001,44.19189453124997],[111.48623046875005,44.271630859374966],[111.42958984375004,44.322363281250006],[111.40224609375005,44.36728515625],[111.41093750000007,44.419189453125],[111.48945312500003,44.511572265625006],[111.51474609375006,44.56982421875005],[111.54746093750006,44.67290039062499],[111.6212890625001,44.82714843749997],[111.68144531250002,44.899169921875],[111.75107421875006,44.969531250000045],[111.89804687500006,45.064062500000034],[112.03261718750005,45.08164062500006],[112.11289062500006,45.06293945312498],[112.29208984375006,45.06303710937498],[112.41132812500004,45.05820312499998],[112.49931640625002,45.01093750000004],[112.59677734375006,44.91767578124995],[112.70673828125008,44.883447265624994],[113.04941406250006,44.81035156250002],[113.19609375000002,44.794824218749966],[113.3009765625001,44.79165039062502],[113.45566406250005,44.76743164062498],[113.50791015625006,44.762353515625016],[113.58701171875006,44.745703125],[113.65263671875,44.76347656249999],[113.75214843750003,44.825927734375],[113.87705078125012,44.896191406250004],[113.93085937500004,44.91230468750001],[114.03027343749997,44.942578124999955],[114.08027343750004,44.97114257812501],[114.1673828125,45.04985351562495],[114.28105468750007,45.11088867187496],[114.41914062500004,45.20258789062501],[114.48730468750003,45.27172851562506],[114.50224609375002,45.316308593749994],[114.51718750000006,45.36459960937506],[114.5601562500001,45.38999023437498],[114.64433593750003,45.41328125000001],[114.73876953124996,45.41962890624998],[114.91923828125007,45.378271484375006],[115.16259765624997,45.390234375000034],[115.21748046875008,45.39619140625001],[115.43945312499996,45.41997070312496],[115.53945312500007,45.439501953125045],[115.6810546875,45.45825195312502],[115.78916015625012,45.534814453124994],[115.93417968750008,45.626171874999955],[116.03955078124996,45.676953125],[116.10986328124996,45.686718749999955],[116.19765625,45.739355468750006],[116.240625,45.79599609375],[116.2291015625001,45.84575195312501],[116.21298828125012,45.88691406249998],[116.26455078125005,45.96303710937502],[116.35761718750008,46.096582031249966],[116.44482421875003,46.158789062500034],[116.51669921875005,46.20908203125006],[116.56259765625012,46.289794921874964],[116.61933593750003,46.313085937500006],[116.6888671875,46.321972656249955],[116.78701171875,46.37666015625001],[116.85908203125003,46.38793945312499],[116.97880859375006,46.361767578124976],[117.15595703125005,46.355078125000034],[117.26904296874997,46.35224609375001],[117.33339843749998,46.36201171875004],[117.35693359375003,46.391308593749955],[117.35634765624998,46.43666992187496],[117.3921875000001,46.53759765625003],[117.40556640625009,46.57089843750006],[117.43808593750012,46.58623046874998],[117.546875,46.58828125000005],[117.6205078125,46.55200195312503],[117.67109375000008,46.52207031250006],[117.74121093749997,46.51816406250006],[117.81347656249997,46.537695312500034],[117.91044921875006,46.61933593749998],[118.07128906249997,46.666601562500006],[118.15683593750005,46.678564453125034],[118.30869140625012,46.71704101562497],[118.40439453125006,46.70317382812498],[118.58046875,46.69189453125],[118.64873046875,46.70166015625006],[118.72294921875007,46.69189453125],[118.79033203125002,46.74707031249997],[118.8439453125001,46.760205078124976],[118.95712890625006,46.73486328124997],[119.02851562500004,46.69218749999999],[119.16210937499997,46.638671875],[119.33183593750003,46.61381835937499],[119.47402343750005,46.626660156249955],[119.62021484375006,46.60395507812504],[119.70664062500006,46.60600585937502],[119.74746093750005,46.62719726562497],[119.86718750000003,46.67216796874998],[119.89589843749998,46.73286132812501],[119.88417968750001,46.79145507812495],[119.89785156250005,46.857812499999966],[119.8626953125,46.906591796875055],[119.78847656250005,46.97880859375002],[119.75986328125006,47.027001953124966],[119.7572265625,47.09003906250004],[119.71113281250005,47.15],[119.60019531250005,47.22246093750002],[119.52695312500005,47.25590820312499],[119.3766601562501,47.38085937500003],[119.32597656250007,47.41015625000006],[119.30859374999997,47.43071289062499],[119.29082031250002,47.47265625],[119.23525390625004,47.492578124999966],[119.16240234375007,47.52519531250004],[119.12294921875,47.558496093749994],[119.0972656250001,47.616259765625045],[119.08193359375,47.654150390625034],[119.01757812500004,47.68535156249999],[118.953125,47.70292968750001],[118.88027343750005,47.72509765625],[118.75996093750003,47.75761718749996],[118.69052734375012,47.82226562499999],[118.56777343750005,47.94326171875005],[118.49843750000005,47.98398437499998],[118.23964843749998,47.99951171875003],[118.14707031250005,48.02890624999998],[118.04189453125005,48.018945312499994],[117.97919921875003,47.99960937500006],[117.8404296875001,47.999853515625034],[117.76835937500002,47.98789062499998],[117.67666015625005,47.908300781250034],[117.55537109375004,47.80468750000006],[117.45507812500001,47.741357421875016],[117.38398437500004,47.67573242187498],[117.35078125000011,47.65219726562498],[117.2859375,47.666357421875034],[117.19707031250006,47.74028320312499],[117.06972656250005,47.80639648437505],[116.95166015624996,47.836572265624966],[116.90117187500006,47.85307617187495],[116.76054687500002,47.869775390624994],[116.6519531250001,47.86450195312497],[116.51347656250009,47.839550781249955],[116.37822265625,47.84404296874998],[116.31718750000003,47.85986328125],[116.2311523437501,47.85820312500002],[116.07480468750012,47.78955078125],[115.99384765625004,47.71132812500005],[115.89824218750002,47.686914062500044],[115.81171875000011,47.73823242187501],[115.71171875,47.798925781250034],[115.61640625000008,47.874804687500045],[115.55761718750004,47.945019531249955],[115.52509765625004,48.13085937499997],[115.63945312500007,48.18623046874998],[115.785546875,48.24824218750001],[115.79658203125008,48.346337890624994],[115.7916992187501,48.455712890624994],[115.82050781250008,48.57724609375006],[115.9538085937501,48.68935546874999],[116.02548828125012,48.78227539062499],[116.034375,48.84003906250003],[116.0982421875001,48.93613281249998],[116.15966796874996,49.037451171875034],[116.24335937500008,49.170361328125004],[116.4021484375,49.40620117187501],[116.58974609375004,49.684814453125],[116.6833007812501,49.82377929687499],[116.88896484375007,49.737792968749964],[117.02167968750004,49.69296874999998],[117.24560546874997,49.624853515625055],[117.47714843750006,49.60942382812501],[117.69843750000004,49.53583984375004],[117.81259765625012,49.513525390625034],[117.8734375,49.51347656250002],[118.18662109375013,49.69277343750002],[118.4515625,49.84448242187502],[118.75595703125013,49.96284179687498],[118.97949218749996,49.97885742187506],[119.14746093750001,50.013378906249976],[119.25986328125012,50.06640625000003],[119.32607421875001,50.15493164062505],[119.34628906250012,50.278955078124994],[119.30156250000006,50.35390625],[119.19189453125003,50.37983398437504],[119.16367187500006,50.40600585937503],[119.21669921874998,50.432519531250016],[119.25585937499996,50.48417968749996],[119.2806640625,50.56098632812498],[119.34404296875002,50.633886718750006],[119.44570312500005,50.70283203125001],[119.50175781250002,50.779248046874955],[119.51230468750012,50.863134765625006],[119.57343750000003,50.94677734374997],[119.6849609375,51.030126953125006],[119.74599609375,51.10771484374999],[119.75664062500006,51.17949218749995],[119.81318359375004,51.26704101562504],[119.96699218750008,51.42211914062499],[120.06689453125003,51.60068359375006],[120.23701171875003,51.722998046875034],[120.51054687500006,51.84853515625002],[120.68144531250006,51.97304687499999],[120.74980468750007,52.096533203125],[120.74453125000004,52.20546875],[120.66542968749998,52.299902343750034],[120.65039062499997,52.395898437499966],[120.69921874999997,52.49360351562498],[120.65615234375,52.56665039062502],[120.52109375000012,52.61503906250004],[120.36005859375004,52.62700195312499],[120.17275390625,52.602490234374955],[120.0675781250001,52.63291015625003],[120.04433593750005,52.71821289062501],[120.09453125000007,52.787207031250034],[120.21816406250001,52.83989257812502],[120.42128906249998,52.96806640625002],[120.70410156249997,53.171826171874955],[120.98544921875012,53.28457031250002],[121.40546875000003,53.317041015624966],[121.74394531250002,53.38359375000002],[122.08886718750001,53.45146484374999],[122.33779296875,53.48500976562499],[122.38017578125002,53.4625],[122.51582031250003,53.45698242187495],[122.74472656250006,53.46850585937499],[122.95761718750006,53.49770507812499],[123.15410156250007,53.54458007812505],[123.30957031250001,53.55561523437498],[123.42402343750004,53.53076171874997],[123.48945312500004,53.52944335937499]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Northern Cyprus","sov_a3":"CYN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Northern Cyprus","adm0_a3":"CYN","geou_dif":0,"geounit":"Northern Cyprus","gu_a3":"CYN","su_dif":0,"subunit":"Northern Cyprus","su_a3":"CYN","brk_diff":1,"name":"N. Cyprus","name_long":"Northern Cyprus","brk_a3":"B20","brk_name":"N. Cyprus","brk_group":null,"abbrev":"N. Cy.","postal":"CN","formal_en":"Turkish Republic of Northern Cyprus","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Cyprus","name_sort":"Cyprus, Northern","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":265100,"gdp_md_est":3600,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"CYP","adm0_a3_us":"CYP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":9,"long_len":15,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"CYN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[34.004492187500006,35.065234375],[33.96572265625002,35.056787109374994],[33.9033203125,35.08544921875],[33.86640625000001,35.093603515625],[33.83203125,35.0671875],[33.79228515625001,35.048193359375],[33.756933593750006,35.03974609375],[33.72578125000001,35.0373046875],[33.675390625,35.017871093749996],[33.61445312500001,35.022753906249996],[33.52568359375002,35.038671875],[33.47578125000001,35.00034179687499],[33.4638671875,35.004931640624996],[33.45595703125002,35.101416015625],[33.42421875000002,35.14091796874999],[33.3837890625,35.1626953125],[33.32558593750002,35.153613281249996],[33.24833984375002,35.15693359375],[33.191015625,35.173144531249996],[33.07753906250002,35.14619140624999],[32.9859375,35.11640625],[32.91953125,35.087841796875],[32.86943359375002,35.089404296874996],[32.78408203125002,35.115771484374996],[32.72021484375,35.145361328125],[32.71269531250002,35.171044921874994],[32.77236328125002,35.15957031249999],[32.8798828125,35.180566406249994],[32.926367187500006,35.278076171875],[32.94160156250001,35.390429687499996],[33.12343750000002,35.358203125],[33.30781250000001,35.34150390625],[33.45878906250002,35.335888671875],[33.607617187500004,35.354150390624994],[34.06347656249999,35.473974609375],[34.19248046875,35.545703125],[34.27236328125002,35.569970703124994],[34.4111328125,35.62929687499999],[34.55605468750002,35.662060546875],[34.46318359375002,35.593505859375],[33.941992187500006,35.292041015624996],[33.90791015625001,35.202392578125],[33.93125,35.140380859375],[34.004492187500006,35.065234375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Cyprus","sov_a3":"CYP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cyprus","adm0_a3":"CYP","geou_dif":0,"geounit":"Cyprus","gu_a3":"CYP","su_dif":0,"subunit":"Cyprus","su_a3":"CYP","brk_diff":0,"name":"Cyprus","name_long":"Cyprus","brk_a3":"CYP","brk_name":"Cyprus","brk_group":null,"abbrev":"Cyp.","postal":"CY","formal_en":"Republic of Cyprus","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cyprus","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":3,"mapcolor13":7,"pop_est":531640,"gdp_md_est":22700,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"CY","iso_a3":"CYP","iso_n3":"196","un_a3":"196","wb_a2":"CY","wb_a3":"CYP","woe_id":-99,"adm0_a3_is":"CYP","adm0_a3_us":"CYP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CYP.geojson"},"geometry":{"type":"Polygon","coordinates":[[[32.71269531250002,35.171044921874994],[32.72021484375,35.145361328125],[32.78408203125002,35.115771484374996],[32.86943359375002,35.089404296874996],[32.91953125,35.087841796875],[32.9859375,35.11640625],[33.07753906250002,35.14619140624999],[33.191015625,35.173144531249996],[33.24833984375002,35.15693359375],[33.32558593750002,35.153613281249996],[33.3837890625,35.1626953125],[33.42421875000002,35.14091796874999],[33.45595703125002,35.101416015625],[33.4638671875,35.004931640624996],[33.47578125000001,35.00034179687499],[33.52568359375002,35.038671875],[33.61445312500001,35.022753906249996],[33.675390625,35.017871093749996],[33.72578125000001,35.0373046875],[33.756933593750006,35.03974609375],[33.79228515625001,35.048193359375],[33.83203125,35.0671875],[33.86640625000001,35.093603515625],[33.9033203125,35.08544921875],[33.96572265625002,35.056787109374994],[34.004492187500006,35.065234375],[34.02363281250001,35.045556640624994],[34.05019531250002,34.98837890624999],[33.9365234375,34.971484375],[33.82246093750001,34.96591796875],[33.75898437500001,34.9732421875],[33.69941406250001,34.969873046874994],[33.51445312500002,34.806445312499996],[33.41494140625002,34.75087890624999],[33.29658203125001,34.717724609375],[33.17607421875002,34.698046875],[33.11552734375002,34.695556640625],[33.06230468750002,34.67480468749999],[33.02490234375,34.6369140625],[33.02392578125,34.6],[33.00791015625,34.569580078125],[32.94179687500002,34.57587890625],[32.91425781250001,34.635498046875],[32.8671875,34.6611328125],[32.750097656250006,34.647802734375],[32.69296875,34.649365234375],[32.50556640625001,34.70625],[32.44902343750002,34.729443359375],[32.41376953125001,34.77802734374999],[32.31718750000002,34.9533203125],[32.30097656250001,35.082958984375],[32.39091796875002,35.0498046875],[32.475,35.089990234374994],[32.55595703125002,35.15576171875],[32.65234375,35.182666015624996],[32.71269531250002,35.171044921874994]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Saint Vincent and the Grenadines","sov_a3":"VCT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saint Vincent and the Grenadines","adm0_a3":"VCT","geou_dif":0,"geounit":"Saint Vincent and the Grenadines","gu_a3":"VCT","su_dif":0,"subunit":"Saint Vincent and the Grenadines","su_a3":"VCT","brk_diff":0,"name":"St. Vin. and Gren.","name_long":"Saint Vincent and the Grenadines","brk_a3":"VCT","brk_name":"St. Vin. and Gren.","brk_group":null,"abbrev":"St.V.G.","postal":"VC","formal_en":"Saint Vincent and the Grenadines","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"St. Vincent and the Grenadines","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":5,"mapcolor13":7,"pop_est":104574,"gdp_md_est":1070,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VC","iso_a3":"VCT","iso_n3":"670","un_a3":"670","wb_a2":"VC","wb_a3":"VCT","woe_id":-99,"adm0_a3_is":"VCT","adm0_a3_us":"VCT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":18,"long_len":32,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"VCT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.334375,12.695214843749994],[-61.34453124999998,12.69472656249998],[-61.353515624999964,12.698144531249966],[-61.35112304687501,12.701171875000043],[-61.339746093749994,12.703613281250014],[-61.33442382812499,12.710205078125028],[-61.336328125000016,12.71904296874996],[-61.335839843749994,12.728808593749989],[-61.32680664062494,12.734814453124969],[-61.31987304687496,12.73544921875002],[-61.31679687499993,12.731689453125043],[-61.31484374999999,12.722558593749966],[-61.32011718749999,12.715527343750038],[-61.32592773437503,12.709863281250037],[-61.32880859374999,12.70112304687504],[-61.334375,12.695214843749994]]],[[[-61.226220703124966,12.99462890624997],[-61.24223632812493,12.98369140624996],[-61.234716796875,12.98369140624996],[-61.24223632812493,12.976269531250054],[-61.247265624999976,12.983642578125043],[-61.255224609375,12.988183593749994],[-61.26533203124992,12.99018554687504],[-61.276953125,12.98989257812498],[-61.276953125,12.997363281249987],[-61.26206054687497,12.992773437500034],[-61.23935546874997,12.997265624999969],[-61.239257812499936,13.005371093750028],[-61.24594726562498,13.012695312500014],[-61.2490234375,13.017822265624986],[-61.240625,13.025732421875004],[-61.21284179687498,13.043261718750017],[-61.201171875,13.052539062500045],[-61.199804687500006,13.04873046874998],[-61.19931640624997,13.04511718750004],[-61.197949218749976,13.041699218749969],[-61.19375,13.038281249999983],[-61.20805664062499,13.024707031249974],[-61.226220703124966,12.99462890624997]]],[[[-61.17451171875001,13.158105468749966],[-61.20390625,13.142285156250026],[-61.27729492187498,13.209570312499977],[-61.268457031249966,13.287695312499991],[-61.224072265624976,13.330664062500034],[-61.182128906249936,13.355957031250043],[-61.13896484374996,13.358740234374991],[-61.124023437500036,13.294042968750032],[-61.13452148437503,13.202880859375028],[-61.17451171875001,13.158105468749966]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Georgia","sov_a3":"GEO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Georgia","adm0_a3":"GEO","geou_dif":0,"geounit":"Georgia","gu_a3":"GEO","su_dif":0,"subunit":"Georgia","su_a3":"GEO","brk_diff":0,"name":"Georgia","name_long":"Georgia","brk_a3":"GEO","brk_name":"Georgia","brk_group":null,"abbrev":"Geo.","postal":"GE","formal_en":"Georgia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Georgia","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":3,"mapcolor13":2,"pop_est":4615807,"gdp_md_est":21510,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GE","iso_a3":"GEO","iso_n3":"268","un_a3":"268","wb_a2":"GE","wb_a3":"GEO","woe_id":-99,"adm0_a3_is":"GEO","adm0_a3_us":"GEO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GEO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[46.429882812500004,41.890966796875],[46.40546875000001,41.85507812499999],[46.348242187500006,41.790185546874994],[46.30253906250002,41.757080078125],[46.25185546875002,41.751757812499996],[46.20185546875001,41.736865234374996],[46.18427734375001,41.70214843749999],[46.18212890624999,41.65708007812499],[46.190527343750006,41.624853515625],[46.20351562500002,41.612597656249996],[46.25468750000002,41.6021484375],[46.30546875000002,41.507714843749994],[46.38496093750001,41.459863281249994],[46.50878906249999,41.405566406249996],[46.61894531250002,41.34375],[46.67255859375001,41.28681640625],[46.66240234375002,41.24550781249999],[46.62636718750002,41.15966796875],[46.534375,41.08857421875],[46.45791015625002,41.070214843749994],[46.43095703125002,41.077050781249994],[46.38076171875002,41.09931640624999],[46.27998046875001,41.154443359374994],[46.17070312500002,41.1978515625],[46.086523437500006,41.183837890625],[46.03125,41.16728515624999],[45.921972656250006,41.18671875],[45.79277343750002,41.224414062499996],[45.72548828125002,41.261621093749994],[45.695703125000016,41.289013671875],[45.715625,41.337646484375],[45.422265625000016,41.42529296875],[45.280957031250004,41.449560546875],[45.21718750000002,41.423193359375],[45.00136718750002,41.29096679687499],[44.97587890625002,41.277490234374994],[44.81132812500002,41.259375],[44.81093750000002,41.248583984374996],[44.84853515625002,41.22016601562499],[44.84140625,41.211376953125],[44.56484375000002,41.208203125],[44.47304687500002,41.191015625],[44.22734375000002,41.213330078125],[44.146484375,41.203369140625],[44.077246093750006,41.182519531249994],[43.9091796875,41.158984375],[43.79316406250001,41.131103515625],[43.64501953125,41.116650390625],[43.49199218750002,41.115527343749996],[43.439453125,41.10712890625],[43.44160156250001,41.1259765625],[43.43339843750002,41.155517578125],[43.40234375,41.1765625],[43.358984375,41.19013671875],[43.279296875,41.185205078124994],[43.20546875000002,41.199169921875],[43.15283203125,41.23642578125],[43.14101562500002,41.26484375],[43.17128906250002,41.287939453125],[43.149023437500006,41.30712890625],[43.05712890625,41.352832031249996],[42.90673828125,41.466845703124996],[42.821679687500016,41.4923828125],[42.78789062500002,41.56372070312499],[42.75410156250001,41.57890625],[42.68242187500002,41.585742187499996],[42.60683593750002,41.57880859374999],[42.5904296875,41.57070312499999],[42.5673828125,41.55927734375],[42.507910156250006,41.470068359375],[42.46640625,41.43984375],[42.364355468750006,41.454003906249994],[42.27998046875001,41.475],[42.21113281250001,41.48671875],[42.077734375,41.494091796875],[41.92578125,41.49565429687499],[41.82353515625002,41.432373046875],[41.779394531250006,41.44052734375],[41.701757812500006,41.471582031249994],[41.57656250000002,41.497314453125],[41.51005859375002,41.517480468749994],[41.701757812500006,41.705419921875],[41.7587890625,41.817138671875],[41.7607421875,41.88486328125],[41.76298828125002,41.970019531249996],[41.66328125000001,42.146875],[41.577734375,42.397851562499994],[41.48876953125,42.659326171874994],[41.41943359375,42.737646484375],[41.12871093750002,42.828125],[41.061621093750006,42.930859375],[40.83662109375001,43.0634765625],[40.524023437500006,43.121044921875],[40.46210937500001,43.14570312499999],[40.190625,43.312402343749994],[39.97832031250002,43.419824218749994],[40.02373046875001,43.48486328125],[40.084570312500006,43.553125],[40.15019531250001,43.569775390625],[40.34228515625,43.542724609375],[40.51894531250002,43.512011718749996],[40.648046875,43.53388671875],[40.80166015625002,43.479931640625],[40.941992187500006,43.41806640624999],[41.083105468750006,43.374462890625],[41.35820312500002,43.333398437499994],[41.46074218750002,43.276318359375],[41.58056640625,43.21923828125],[42.05,43.19013671875],[42.08779296875002,43.199121093749994],[42.12226562500001,43.20732421874999],[42.27968750000002,43.228076171874996],[42.419042968750006,43.22421875],[42.566015625,43.155126953125],[42.660253906250006,43.159082031249994],[42.76064453125002,43.169580078124994],[42.890039062500016,43.13261718749999],[42.99160156250002,43.09150390625],[43.00019531250001,43.049658203125],[43.08916015625002,42.9890625],[43.34794921875002,42.8966796875],[43.55781250000001,42.844482421875],[43.623046875,42.80771484375],[43.78261718750002,42.747021484375],[43.798730468750016,42.727783203125],[43.79541015624999,42.702978515625],[43.74990234375002,42.657519531249996],[43.73837890625,42.616992187499996],[43.75986328125,42.59384765625],[43.82597656250002,42.571533203125],[43.95742187500002,42.566552734374994],[44.00468750000002,42.595605468749994],[44.102734375,42.616357421874994],[44.19970703125,42.653613281249996],[44.32949218750002,42.70351562499999],[44.505859375,42.7486328125],[44.57646484375002,42.748486328125],[44.64433593750002,42.734716796875],[44.69179687500002,42.709619140624994],[44.77109375,42.616796875],[44.85048828125002,42.74682617187499],[44.87099609375002,42.756396484374996],[44.943359375,42.73027343749999],[45.07158203125002,42.694140625],[45.160253906250006,42.675],[45.20820312500001,42.648242187499996],[45.34375,42.52978515624999],[45.562890625000016,42.5357421875],[45.65556640625002,42.51767578125],[45.70527343750001,42.49809570312499],[45.7275390625,42.475048828125],[45.68837890625002,42.357373046875],[45.63427734374999,42.234716796875],[45.63857421875002,42.205078125],[45.7265625,42.15888671875],[45.84599609375002,42.1099609375],[45.91035156250001,42.07070312499999],[45.95400390625002,42.035400390625],[46.0484375,42.008740234375],[46.159765625,41.992041015625],[46.21269531250002,41.989892578124994],[46.26777343750001,41.960351562499994],[46.41152343750002,41.904638671875],[46.429882812500004,41.890966796875]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"China","sov_a3":"CH1","adm0_dif":1,"level":2,"type":"Country","admin":"Hong Kong S.A.R.","adm0_a3":"HKG","geou_dif":0,"geounit":"Hong Kong S.A.R.","gu_a3":"HKG","su_dif":0,"subunit":"Hong Kong S.A.R.","su_a3":"HKG","brk_diff":0,"name":"Hong Kong","name_long":"Hong Kong","brk_a3":"HKG","brk_name":"Hong Kong","brk_group":null,"abbrev":"H.K.","postal":"HK","formal_en":"Hong Kong Special Administrative Region, PRC","formal_fr":null,"note_adm0":"China","note_brk":null,"name_sort":"Hong Kong SAR, China","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":3,"pop_est":7061200,"gdp_md_est":351119,"pop_year":2010,"lastcensus":2006,"gdp_year":2011,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":0,"fips_10":null,"iso_a2":"HK","iso_a3":"HKG","iso_n3":"344","un_a3":"344","wb_a2":"HK","wb_a3":"HKG","woe_id":-99,"adm0_a3_is":"HKG","adm0_a3_us":"HKG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"HKG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.23203125000006,22.210546874999977],[114.20722656250004,22.195166015625034],[114.13876953125006,22.268359375000045],[114.13447265625004,22.292236328125],[114.18740234374998,22.29663085937503],[114.246875,22.26357421875002],[114.2435546875,22.23354492187505],[114.23203125000006,22.210546874999977]]],[[[113.99775390625008,22.210498046875042],[113.87734375,22.210449218750057],[113.85156249999997,22.220458984375057],[113.83886718749997,22.24169921875003],[113.88154296875004,22.28027343749997],[114.04394531250003,22.33339843750005],[114.0033203125,22.27753906250004],[113.99775390625008,22.210498046875042]]],[[[114.33525390625002,22.39624023437497],[114.29052734374997,22.37377929687503],[114.28789062500006,22.325292968750002],[114.26796875,22.295556640624966],[114.1390625,22.348437500000014],[114.03281250000006,22.375878906249994],[113.9373046875,22.364990234375],[113.90253906250004,22.39609375000003],[113.89648437499997,22.428173828124983],[114.00673828125,22.484033203124994],[114.01542968750007,22.51191406250001],[114.0182617187501,22.51445312499999],[114.05039062500005,22.54296875000003],[114.09785156250004,22.551269531250025],[114.12285156250002,22.564990234375074],[114.1881835937501,22.564990234375074],[114.22822265625004,22.55395507812503],[114.26601562500005,22.54096679687498],[114.26962890625006,22.536767578124994],[114.29111328125006,22.499462890624955],[114.28457031249998,22.457617187500034],[114.32519531250003,22.437402343750023],[114.33525390625002,22.39624023437497]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Indonesia","sov_a3":"IDN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Indonesia","adm0_a3":"IDN","geou_dif":0,"geounit":"Indonesia","gu_a3":"IDN","su_dif":0,"subunit":"Indonesia","su_a3":"IDN","brk_diff":0,"name":"Indonesia","name_long":"Indonesia","brk_a3":"IDN","brk_name":"Indonesia","brk_group":null,"abbrev":"Indo.","postal":"INDO","formal_en":"Republic of Indonesia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Indonesia","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":11,"pop_est":240271522,"gdp_md_est":914600,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ID","iso_a3":"IDN","iso_n3":"360","un_a3":"360","wb_a2":"ID","wb_a3":"IDN","woe_id":-99,"adm0_a3_is":"IDN","adm0_a3_us":"IDN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"IDN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.94892578125008,-10.90927734375002],[122.85585937500004,-10.90966796875],[122.82617187500001,-10.899121093749983],[122.81845703125006,-10.811035156249986],[122.84570312500001,-10.761816406249991],[123.06142578125,-10.698437499999955],[123.14580078125,-10.63994140625003],[123.26542968750007,-10.518164062500006],[123.33964843750002,-10.48623046874998],[123.35849609375012,-10.472460937500017],[123.37109375000004,-10.474902343749989],[123.38310546875006,-10.56757812500004],[123.41289062500002,-10.622656249999977],[123.41816406250003,-10.651269531250037],[123.3107421875001,-10.698437499999955],[123.21484374999996,-10.806152343749972],[123.0052734375,-10.876367187499966],[122.94892578125008,-10.90927734375002]]],[[[121.8830078125001,-10.590332031249957],[121.83310546875006,-10.602148437499977],[121.72617187500012,-10.573144531250009],[121.70468750000006,-10.5556640625],[121.7962890625,-10.507421875000034],[121.86699218750002,-10.438867187500009],[121.94951171875,-10.433007812499978],[121.99833984375003,-10.446972656249983],[121.98134765625005,-10.528417968749963],[121.8830078125001,-10.590332031249957]]],[[[123.41621093750004,-10.302636718749964],[123.32597656250007,-10.3375],[123.3255859375,-10.264160156249943],[123.39531250000009,-10.171386718749972],[123.4587890625,-10.13994140624996],[123.4939453125,-10.17695312500004],[123.49677734375003,-10.193945312500034],[123.405078125,-10.227148437499963],[123.41621093750004,-10.302636718749964]]],[[[120.0125,-9.374707031250026],[120.05761718749996,-9.41972656249996],[120.22109375,-9.506347656250014],[120.24804687499996,-9.542871093749994],[120.25830078125001,-9.603125],[120.29111328125006,-9.64785156249998],[120.36474609374996,-9.654687500000037],[120.44365234375002,-9.645605468749961],[120.50371093750002,-9.674023437499983],[120.55556640624998,-9.719042968750003],[120.63261718750007,-9.80644531249996],[120.70039062500004,-9.903125],[120.78447265625002,-9.95703125],[120.83261718750006,-10.0375],[120.80419921874997,-10.108496093750034],[120.698046875,-10.206640624999949],[120.64042968750006,-10.227929687500021],[120.56171875000004,-10.235644531250001],[120.43916015625008,-10.294042968749991],[120.39453124999996,-10.263476562499989],[120.25546875000005,-10.24228515625002],[120.14482421875002,-10.200097656249952],[120.0519531250001,-10.122851562500031],[119.9984375,-10.039746093749969],[119.93066406249996,-9.966503906249969],[119.81279296875,-9.917480468750014],[119.60107421874996,-9.773535156250006],[119.47031250000005,-9.760546875000017],[119.41650390625004,-9.771093749999949],[119.36259765625007,-9.771777343750003],[119.08544921875001,-9.706933593750023],[119.0423828125,-9.669042968750034],[119.0083984375001,-9.620507812500009],[118.97734375000002,-9.572851562499977],[118.9587890625,-9.519335937500003],[118.99414062499997,-9.472070312499966],[119.0314453125001,-9.44023437499996],[119.18564453125005,-9.384472656249969],[119.29589843749997,-9.3671875],[119.42392578125012,-9.369824218749997],[119.61474609375003,-9.352441406250009],[119.79511718750008,-9.380468749999949],[119.85078125000003,-9.359570312499955],[119.9420898437501,-9.301464843750024],[119.97382812500004,-9.32158203125003],[120.0125,-9.374707031250026]]],[[[124.93681640625007,-9.053417968750024],[124.97324218750012,-9.064257812500017],[125.10039062500007,-9.004003906249991],[125.12441406249998,-9.015429687500017],[125.1490234375001,-9.042578125000034],[125.14941406250003,-9.12294921874998],[125.10048828124998,-9.189843750000021],[124.97753906250003,-9.19492187499999],[124.96015625000004,-9.213769531250009],[124.95859375000005,-9.254687499999989],[124.96826171874997,-9.294238281249974],[124.99697265625005,-9.325976562499946],[125.03359375000005,-9.381835937499957],[125.0681640625,-9.511914062499995],[124.99794921875,-9.565332031249952],[124.96308593750008,-9.665625],[124.84179687499997,-9.759765624999957],[124.70839843750001,-9.914160156249963],[124.60185546875,-9.99296875000003],[124.50820312500005,-10.08613281250001],[124.42753906250002,-10.14863281250004],[124.32675781250012,-10.169824218750009],[124.17597656250003,-10.183300781249997],[123.97109375000005,-10.29482421874998],[123.85761718750003,-10.34355468749996],[123.7472656250001,-10.347167968749986],[123.64414062500006,-10.3109375],[123.60478515625002,-10.270117187500006],[123.61406250000006,-10.215039062499983],[123.64824218750002,-10.167773437500031],[123.69013671875008,-10.128808593749994],[123.71640625000012,-10.078613281249986],[123.5994140625,-10.015136718750014],[123.5892578125,-9.966796875000028],[123.63574218750003,-9.83808593750001],[123.6658203125,-9.70527343750004],[123.709375,-9.61484375],[123.87675781250002,-9.453125],[123.97714843750012,-9.372949218750023],[124.0363281250001,-9.341601562500031],[124.05244140625008,-9.37539062499998],[124.09013671875009,-9.41640625],[124.11552734375009,-9.42314453125003],[124.13457031250002,-9.413867187500003],[124.2823242187501,-9.427929687500026],[124.31933593750003,-9.413769531249983],[124.37568359375004,-9.349902343750031],[124.41298828124998,-9.31435546874998],[124.43828125,-9.238574218750003],[124.4444335937501,-9.190332031250023],[124.57548828125006,-9.155371093750006],[124.64589843750005,-9.116699218749943],[124.70820312500004,-9.06181640624996],[124.88974609375005,-8.96845703125004],[124.92226562500005,-8.942480468749977],[124.91503906249997,-9.031542968750003],[124.93681640625007,-9.053417968750024]]],[[[115.60996093750012,-8.769824218749974],[115.58193359374998,-8.804199218749972],[115.50087890625,-8.742871093749997],[115.48046875000001,-8.715429687500006],[115.54062500000012,-8.67539062500002],[115.56142578125,-8.669921874999972],[115.61328124999997,-8.713183593749989],[115.60996093750012,-8.769824218749974]]],[[[122.97734375000002,-8.54521484374996],[122.9455078125001,-8.604003906249943],[122.88779296875006,-8.587304687500009],[122.90351562500003,-8.530664062500023],[122.9328125000001,-8.497070312500014],[123.010546875,-8.448339843750034],[123.08945312500012,-8.43984375],[123.13789062500004,-8.456933593750009],[123.153125,-8.475781250000026],[123.030078125,-8.494824218749997],[122.97734375000002,-8.54521484374996]]],[[[119.46406250000004,-8.741015624999974],[119.42490234375006,-8.750488281249943],[119.385546875,-8.736035156250026],[119.40166015625002,-8.64707031250002],[119.37890625000001,-8.586523437500034],[119.41992187500003,-8.539062499999957],[119.43017578124997,-8.454980468749964],[119.44648437500011,-8.429199218749957],[119.4705078125,-8.45566406250002],[119.48173828125,-8.472949218749989],[119.5021484375001,-8.481054687500034],[119.54697265625006,-8.482617187499997],[119.55722656250012,-8.518847656250003],[119.55546875000002,-8.55341796875004],[119.53632812500005,-8.589355468749986],[119.48281250000007,-8.628222656250003],[119.44404296875004,-8.671777343749994],[119.46406250000004,-8.741015624999974]]],[[[123.31748046875012,-8.354785156249974],[123.297265625,-8.398632812500026],[123.0250000000001,-8.395507812500014],[123.03261718750001,-8.33779296874998],[123.10830078125005,-8.274804687500023],[123.13349609375003,-8.253808593750009],[123.21708984375002,-8.235449218750006],[123.33603515625008,-8.269042968750014],[123.31748046875012,-8.354785156249974]]],[[[116.64082031250004,-8.613867187500006],[116.5142578125001,-8.820996093750011],[116.559375,-8.85439453124998],[116.58652343750012,-8.886132812499966],[116.37724609375002,-8.929003906249989],[116.28984375000006,-8.90615234374995],[116.23935546875006,-8.912109375000014],[116.02675781250001,-8.873144531249977],[115.87460937500012,-8.825585937499966],[115.85732421875005,-8.787890625000015],[115.8693359375001,-8.742773437499977],[115.91445312500004,-8.758007812499967],[116.03164062500004,-8.76523437500002],[116.07646484375,-8.744921874999973],[116.07773437500012,-8.611328125000014],[116.06113281250005,-8.437402343750023],[116.21982421875006,-8.295214843750017],[116.30429687500006,-8.237988281249983],[116.4015625000001,-8.204199218750034],[116.64697265624996,-8.282714843749957],[116.6875,-8.30410156249995],[116.7189453125001,-8.336035156249977],[116.73408203125004,-8.38691406250004],[116.64082031250004,-8.613867187500006]]],[[[124.28662109375003,-8.32949218749998],[124.22578125000003,-8.391308593749955],[124.184375,-8.498730468749997],[124.14667968750003,-8.531445312499995],[124.06572265625007,-8.551660156250037],[124.01728515625004,-8.44384765625],[123.92773437500003,-8.448925781249967],[123.971484375,-8.35410156250002],[124.01376953125012,-8.318652343749989],[124.06875,-8.317773437499994],[124.09580078125005,-8.356152343749997],[124.11054687500004,-8.364257812499957],[124.23955078125,-8.20341796874996],[124.265625,-8.201757812499977],[124.28710937500003,-8.208691406249969],[124.3044921875,-8.228808593749989],[124.28662109375003,-8.32949218749998]]],[[[123.92480468750003,-8.2724609375],[123.7838867187501,-8.299609375000017],[123.69785156250006,-8.424414062499949],[123.62919921875,-8.422460937500006],[123.59160156250002,-8.477929687500023],[123.58261718750006,-8.501660156249969],[123.58789062499996,-8.523828124999952],[123.58017578125005,-8.544921874999986],[123.55302734375007,-8.566796875],[123.488671875,-8.532324218750006],[123.43378906250008,-8.576074218750035],[123.41074218750012,-8.586621093749955],[123.32998046875,-8.535644531249972],[123.2533203125,-8.538574218750028],[123.23007812500006,-8.530664062500023],[123.325,-8.4390625],[123.45458984374997,-8.353710937500026],[123.47587890625006,-8.322265625000014],[123.42519531250004,-8.31337890624998],[123.39492187499998,-8.300585937499946],[123.39121093750012,-8.280468750000026],[123.47324218750005,-8.267089843749972],[123.52998046875004,-8.265234375000034],[123.57314453125,-8.291503906249972],[123.60058593749996,-8.291308593750017],[123.77597656250005,-8.190429687499986],[123.84550781250002,-8.213378906249943],[123.89609375000005,-8.239257812499986],[123.92480468750003,-8.2724609375]]],[[[138.89511718750006,-8.388671874999957],[138.84550781250007,-8.401757812499952],[138.59423828124997,-8.371484375],[138.56718750000002,-8.330273437499953],[138.56337890625,-8.30908203125],[138.62099609375,-8.26845703124998],[138.67666015625005,-8.19921875],[138.76269531249997,-8.173437499999977],[138.79619140625007,-8.173632812500017],[138.89765625000004,-8.3375],[138.89511718750006,-8.388671874999957]]],[[[117.55634765625003,-8.367285156249949],[117.53359375000005,-8.36796875],[117.49042968750003,-8.348730468749991],[117.50595703125013,-8.307031250000023],[117.48212890625004,-8.239257812499986],[117.49052734375006,-8.183398437499974],[117.5460937500001,-8.151953124999961],[117.66503906249997,-8.148242187500003],[117.66923828125006,-8.189257812500003],[117.55634765625003,-8.367285156249949]]],[[[119.07382812500012,-8.238867187499991],[119.0299804687501,-8.24003906249996],[119.0208984375,-8.199902343749955],[119.03662109375003,-8.1578125],[119.07871093750005,-8.140234374999963],[119.09775390625012,-8.139160156250014],[119.12832031250005,-8.177148437500023],[119.13486328125012,-8.197070312500003],[119.10673828125006,-8.2234375],[119.07382812500012,-8.238867187499991]]],[[[124.5755859375,-8.140820312499997],[124.59960937500003,-8.201757812499977],[124.6768554687501,-8.168066406249949],[124.75224609375003,-8.159570312499994],[124.92412109375007,-8.166015624999986],[125.05029296874997,-8.179589843749994],[125.12460937500012,-8.204785156249969],[125.13173828124998,-8.326464843749989],[125.09677734375005,-8.35283203125003],[124.44423828125,-8.444628906249987],[124.3806640625,-8.41513671875002],[124.3555664062501,-8.385937500000026],[124.42597656250008,-8.295800781249952],[124.39355468749997,-8.253027343750034],[124.43066406249996,-8.183203125000018],[124.50859375,-8.135449218749969],[124.5755859375,-8.140820312499997]]],[[[127.8234375000001,-8.098828124999969],[127.99843750000004,-8.1390625],[128.09882812500004,-8.134863281250034],[128.11923828125012,-8.170703124999958],[128.02353515625006,-8.255371093749972],[127.82089843750012,-8.190234375000031],[127.78623046875006,-8.1203125],[127.8234375000001,-8.098828124999969]]],[[[122.78291015625008,-8.61171875],[122.64150390625,-8.647265624999974],[122.55380859375006,-8.680957031249989],[122.47021484374999,-8.725488281250009],[122.41728515625,-8.734667968750017],[122.32148437500003,-8.738281249999943],[122.18574218750004,-8.730273437500003],[122.09414062499998,-8.74472656250002],[121.83867187500002,-8.860351562499943],[121.73828124999997,-8.87041015624996],[121.65136718749999,-8.898730468749946],[121.62128906250003,-8.853808593749946],[121.58457031250013,-8.820605468750017],[121.49960937500006,-8.812207031249997],[121.41464843750006,-8.81484375],[121.32832031250004,-8.916894531250009],[121.19082031249998,-8.8955078125],[121.1375,-8.904492187499967],[121.0861328125001,-8.925976562499995],[121.0352539062501,-8.935449218749966],[120.9818359375,-8.928320312500034],[120.7809570312501,-8.848828125],[120.55048828125004,-8.80185546875002],[120.31953125000004,-8.820312499999956],[120.12089843750002,-8.776953125],[120.01210937500005,-8.81015625000002],[119.909375,-8.85761718750001],[119.87910156250003,-8.807617187499957],[119.84140625000005,-8.763574218750037],[119.80791015625002,-8.697656250000023],[119.80703125,-8.622949218749993],[119.81816406250007,-8.570507812499969],[119.84765625000003,-8.522851562500023],[119.86611328124998,-8.473144531250028],[119.87480468750009,-8.419824218749993],[119.91826171875,-8.445117187500003],[119.96376953125,-8.435546875],[120.0992187500001,-8.377539062499991],[120.2311523437501,-8.289843749999989],[120.35410156250005,-8.257812500000028],[120.4249023437501,-8.248925781249994],[120.48554687500004,-8.266113281249943],[120.54716796875006,-8.259863281250006],[120.61025390625005,-8.24042968750004],[120.7095703125001,-8.3078125],[120.75136718749998,-8.32148437500004],[120.88613281250005,-8.326660156250028],[121.00869140625005,-8.365527343749946],[121.11816406249997,-8.42353515625004],[121.27666015625002,-8.477929687500023],[121.37197265625,-8.550878906249963],[121.44453125000004,-8.57783203125004],[121.4984375,-8.585156250000011],[121.54794921875013,-8.575292968749961],[121.61035156249997,-8.526171874999989],[121.68339843750002,-8.505859375000028],[121.74707031250003,-8.506640625],[121.86289062500006,-8.493945312500003],[121.91171875000005,-8.482128906249983],[121.96650390625003,-8.455175781250006],[122.02011718750005,-8.471875],[122.06708984375004,-8.49667968750002],[122.2630859375,-8.624902343750037],[122.32324218749997,-8.628320312500023],[122.43349609375005,-8.60078125],[122.46660156250009,-8.566406250000014],[122.48359375000003,-8.513574218749994],[122.51376953125006,-8.469628906250023],[122.55585937500004,-8.431542968749978],[122.60351562499997,-8.402441406250006],[122.75,-8.353125],[122.85048828125,-8.304394531250011],[122.91914062500003,-8.221875],[122.75859375000002,-8.185937499999952],[122.7923828125,-8.126562500000018],[122.84570312500001,-8.093261718749986],[122.91699218749999,-8.105566406250006],[122.9783203125,-8.151953124999961],[123.00595703125006,-8.329101562499986],[122.95546875,-8.35410156250002],[122.92363281250006,-8.380957031249977],[122.90214843750006,-8.416308593749989],[122.81113281250006,-8.481152343749969],[122.84677734375006,-8.562207031249953],[122.82001953125004,-8.595703124999943],[122.78291015625008,-8.61171875]]],[[[130.86220703125,-8.31875],[130.77519531250002,-8.34990234374996],[130.8333984375,-8.270800781250017],[131.02011718750012,-8.091308593749943],[131.08740234374997,-8.124511718749957],[131.17636718750003,-8.130761718749994],[131.04375,-8.21201171875002],[130.90810546875005,-8.245703124999963],[130.86220703125,-8.31875]]],[[[118.24238281250004,-8.317773437499994],[118.2923828125,-8.357226562500031],[118.33789062500003,-8.353515624999986],[118.43320312500005,-8.293261718749974],[118.490625,-8.271484374999972],[118.5521484375,-8.270410156250023],[118.61191406250008,-8.28066406249998],[118.67060546875004,-8.323437499999983],[118.691796875,-8.393457031249952],[118.71386718749997,-8.41494140624998],[118.74833984375007,-8.331152343749963],[118.79423828125002,-8.305859374999955],[118.84570312500004,-8.29306640625002],[118.92617187499998,-8.297656249999974],[118.98779296875003,-8.33769531249996],[119.04384765625005,-8.456738281249969],[119.04208984375005,-8.560937499999966],[119.0625,-8.599804687499981],[119.10107421874997,-8.628222656250003],[119.12968750000002,-8.668164062499967],[119.10419921875008,-8.709960937499957],[119.07890625000002,-8.730468749999957],[119.00625,-8.749609375000034],[118.97148437500006,-8.741210937500014],[118.93935546875,-8.713085937499967],[118.90332031250003,-8.70273437499999],[118.82119140625,-8.71210937500004],[118.7458984375,-8.735449218749991],[118.75625,-8.773632812499955],[118.81806640625003,-8.790820312499989],[118.83671875000002,-8.808886718750031],[118.8326171875001,-8.833398437499964],[118.80830078125004,-8.83828125],[118.7279296875,-8.805273437500006],[118.67363281250003,-8.811914062500023],[118.4786132812501,-8.856445312499957],[118.42695312500004,-8.855468750000014],[118.39785156249998,-8.813378906249966],[118.39990234374997,-8.703710937500006],[118.37890625000003,-8.67460937500003],[118.23398437500006,-8.8078125],[118.18994140624997,-8.840527343749997],[118.13154296875011,-8.855957031250027],[118.07070312500007,-8.8505859375],[117.86123046875,-8.93144531249996],[117.79541015624999,-8.920117187499955],[117.73164062500004,-8.919921875],[117.50791015625006,-9.007519531249997],[117.38789062500004,-9.031933593749997],[117.3263671875001,-9.03369140625],[117.26503906250004,-9.026171874999973],[117.21025390625006,-9.034082031249994],[117.16123046875012,-9.069238281249966],[117.06132812500003,-9.099023437499994],[116.95820312500004,-9.076367187499997],[116.87109374999996,-9.046191406249974],[116.78847656250004,-9.006347656250028],[116.76796875000005,-8.955468749999966],[116.77207031250006,-8.894335937500031],[116.80693359375006,-8.8109375],[116.78310546875,-8.664648437499963],[116.80126953124997,-8.59794921874996],[116.83505859375013,-8.532421875000026],[116.88623046874997,-8.508300781249984],[116.953125,-8.503417968749972],[117.06367187500004,-8.444433593750034],[117.16484375000006,-8.367187500000014],[117.22363281249996,-8.37451171875],[117.35664062500004,-8.428515624999987],[117.43457031250003,-8.434960937499966],[117.56708984375004,-8.426367187499991],[117.62177734375004,-8.459570312500006],[117.64335937500002,-8.535546875000037],[117.67285156249996,-8.56328125],[117.71210937500008,-8.582617187500034],[117.80605468750004,-8.71113281250001],[117.89316406250012,-8.704394531249974],[117.96953125,-8.728027343749986],[118.10410156250012,-8.650292968749966],[118.20595703124998,-8.652148437499989],[118.23486328124997,-8.591894531249963],[118.17402343750003,-8.527539062499997],[118.10048828124998,-8.475195312499991],[118.06103515625001,-8.464257812499994],[118.01787109375002,-8.467382812500006],[117.97910156250012,-8.458886718749966],[117.81484375000005,-8.342089843749974],[117.76640625,-8.279003906249997],[117.73837890625012,-8.204589843750028],[117.7552734375,-8.149511718749991],[117.8682617187501,-8.100878906250031],[117.92099609375012,-8.089062500000026],[118.11748046875006,-8.12226562500004],[118.15068359375007,-8.15],[118.20283203125004,-8.267285156250011],[118.24238281250004,-8.317773437499994]]],[[[115.44785156250012,-8.155175781249994],[115.54941406250012,-8.208300781249974],[115.69091796874997,-8.363574218749989],[115.70429687500005,-8.40712890624998],[115.66142578125002,-8.448242187500014],[115.55996093750005,-8.514160156250028],[115.33378906250009,-8.615722656250028],[115.29501953125006,-8.66367187500002],[115.24716796875006,-8.757519531249955],[115.23613281250007,-8.79755859375004],[115.22021484375003,-8.819531249999983],[115.19423828125004,-8.835449218750028],[115.14492187500004,-8.849023437500037],[115.0915039062501,-8.829394531249946],[115.13974609375005,-8.76894531249998],[115.14160156249999,-8.696875],[115.10566406250003,-8.629492187499991],[115.05507812500004,-8.573046874999946],[114.95205078125,-8.49638671874996],[114.84208984375006,-8.428515624999987],[114.73134765625,-8.393945312499966],[114.61318359375001,-8.37832031249998],[114.57089843750006,-8.345410156250026],[114.5017578125,-8.26083984375002],[114.47890625,-8.214746093749966],[114.46757812500006,-8.166308593749946],[114.47529296875004,-8.119433593749989],[114.504296875,-8.116601562500037],[114.62001953125005,-8.127734375],[114.83300781249996,-8.182617187499986],[114.93847656249997,-8.18710937500002],[114.99814453125006,-8.174414062500006],[115.15400390625004,-8.065722656249974],[115.19101562500012,-8.067480468749975],[115.34023437500005,-8.115429687499981],[115.44785156250012,-8.155175781249994]]],[[[129.83886718749997,-7.954589843749986],[129.77978515625003,-8.046484374999963],[129.71347656250012,-8.04072265625004],[129.59189453125012,-7.917382812499952],[129.59873046875006,-7.831347656250017],[129.60898437500006,-7.80341796875001],[129.6554687500001,-7.794824218750037],[129.81298828124994,-7.819726562499951],[129.84355468750007,-7.889355468750011],[129.83886718749997,-7.954589843749986]]],[[[126.80097656250004,-7.667871093750008],[126.81445312499997,-7.716503906249968],[126.81269531250004,-7.737890624999976],[126.69287109374996,-7.753515624999963],[126.57734375000004,-7.807617187499971],[126.51816406250006,-7.86992187499996],[126.4720703125,-7.950390625000011],[126.312890625,-7.91767578125001],[126.1710937500001,-7.912304687499982],[126.10839843749997,-7.883984374999983],[126.04003906250003,-7.885839843750005],[125.9515625,-7.910937499999974],[125.82617187499996,-7.979296874999959],[125.79824218750004,-7.984570312499969],[125.80839843750006,-7.880664062500017],[125.84316406250005,-7.816699218749959],[125.97529296875004,-7.663378906249989],[126.08535156250001,-7.697363281249976],[126.21367187500003,-7.706738281250026],[126.359375,-7.676757812499957],[126.46289062500003,-7.607812500000037],[126.60957031250004,-7.571777343749972],[126.72636718750002,-7.662207031250019],[126.80097656250004,-7.667871093750008]]],[[[127.41943359375003,-7.623046875000028],[127.35527343750003,-7.646484375000013],[127.375,-7.572460937500025],[127.37070312500012,-7.512792968749949],[127.47519531250012,-7.531054687500031],[127.47402343750004,-7.578515625000024],[127.46396484375012,-7.596875],[127.41943359375003,-7.623046875000028]]],[[[138.53535156250004,-8.273632812499967],[138.2962890625,-8.405175781250037],[137.9828125,-8.381933593750006],[137.871875,-8.379687499999989],[137.6876953125001,-8.411718750000034],[137.65039062499994,-8.386132812499966],[137.6851562500001,-8.262207031249941],[137.83251953125,-7.932226562499963],[138.00751953125004,-7.641601562499986],[138.08183593750002,-7.566210937500003],[138.18535156250007,-7.495312500000025],[138.29550781250012,-7.4384765625],[138.54384765625,-7.379589843749996],[138.76982421875002,-7.390429687499974],[138.8019531250001,-7.414648437500034],[138.89941406249997,-7.511621093749979],[138.96259765625004,-7.587988281249991],[138.98906250000002,-7.696093749999988],[138.89296875,-7.882128906249961],[138.78593750000002,-8.059082031249956],[138.61171875000005,-8.198339843749991],[138.53535156250004,-8.273632812499967]]],[[[131.3255859375,-7.999511718749986],[131.3091796875001,-8.010839843749991],[131.18496093750005,-7.997851562500003],[131.11376953125003,-7.997363281249988],[131.12343750000005,-7.921875],[131.08681640625005,-7.865039062499946],[131.13681640625006,-7.781738281250028],[131.13779296875012,-7.684863281250017],[131.19003906250012,-7.671875],[131.19736328125006,-7.616699218749986],[131.26005859375007,-7.470507812499946],[131.296875,-7.438085937500006],[131.34921875000012,-7.42539062499999],[131.41103515625,-7.340136718749946],[131.44619140625005,-7.315332031249952],[131.4826171875001,-7.250683593750025],[131.53525390625006,-7.220605468750023],[131.53085937500006,-7.165136718750005],[131.56074218750004,-7.135742187499957],[131.64345703125,-7.112792968749999],[131.70078125000006,-7.14023437499999],[131.73613281250007,-7.197070312500017],[131.64384765625002,-7.266894531249945],[131.69111328125004,-7.438867187499994],[131.62441406250005,-7.626171874999955],[131.5802734375001,-7.682226562500006],[131.49843750000005,-7.73066406250001],[131.47353515625005,-7.776660156249974],[131.37705078125006,-7.869140624999986],[131.34775390625006,-7.948046874999989],[131.3434570312501,-7.981445312499943],[131.3255859375,-7.999511718749986]]],[[[131.98203125000006,-7.202050781249966],[131.96953125000002,-7.25136718749998],[131.92685546875012,-7.225],[131.8844726562501,-7.167480468749943],[131.82285156250006,-7.159179687500028],[131.77753906250004,-7.143945312500037],[131.75078125000002,-7.116796875],[131.92226562500005,-7.104492187499986],[131.98203125000006,-7.202050781249966]]],[[[114.41259765624997,-7.13349609375004],[114.39765625000003,-7.17314453125003],[114.346875,-7.163281249999983],[114.29882812499997,-7.097558593749994],[114.32216796875,-7.080371093749959],[114.34892578125007,-7.073437499999969],[114.38359375000002,-7.08066406250002],[114.41259765624997,-7.13349609375004]]],[[[128.6701171875001,-7.183300781249969],[128.625,-7.208593749999976],[128.5501953125,-7.156347656249991],[128.52978515625003,-7.134570312499989],[128.5773437500001,-7.083203125000011],[128.62773437500007,-7.06875],[128.65830078125006,-7.091113281250017],[128.6732421875,-7.11337890625002],[128.66689453125005,-7.137988281249974],[128.6701171875001,-7.183300781249969]]],[[[120.77441406250003,-7.118945312500003],[120.67236328125001,-7.124707031250025],[120.64082031250004,-7.115820312499991],[120.63339843750005,-7.01826171875001],[120.74550781249998,-7.06015625000002],[120.78173828124997,-7.063085937499991],[120.77441406250003,-7.118945312500003]]],[[[113.84453125000007,-7.105371093749994],[113.8255859375,-7.119921875000031],[113.65585937500006,-7.111718749999952],[113.54638671874997,-7.193359374999972],[113.47070312500003,-7.218457031250025],[113.19843750000004,-7.218359375],[113.16601562500003,-7.207324218749974],[113.14189453125002,-7.207617187499948],[113.12695312499997,-7.224121093750028],[113.0404296875,-7.211816406250009],[112.76376953125006,-7.139648437499957],[112.72587890625007,-7.072753906250013],[112.76875,-7.001269531250017],[112.86806640625,-6.899902343749972],[113.06738281250003,-6.879980468749991],[113.97470703125012,-6.873046875],[114.0736328125,-6.960156249999983],[114.08300781249996,-6.989355468749977],[113.88535156250012,-7.049023437499969],[113.84453125000007,-7.105371093749994]]],[[[115.37705078125006,-6.97080078125002],[115.29580078125004,-6.987792968750014],[115.2203125000001,-6.952539062500037],[115.22216796874996,-6.90517578124998],[115.24052734375007,-6.861230468749994],[115.35371093750003,-6.838476562499977],[115.41445312500004,-6.839746093749966],[115.47919921875008,-6.870214843749962],[115.52421875,-6.901855468750014],[115.54609375000004,-6.938671874999955],[115.42412109375006,-6.940625],[115.37705078125006,-6.97080078125002]]],[[[134.67441406250012,-6.74980468750003],[134.657421875,-6.765332031249996],[134.63144531250006,-6.732910156249957],[134.62910156250004,-6.712792968750037],[134.66347656250005,-6.657714843750014],[134.69765625,-6.625683593749968],[134.7357421875,-6.623339843750017],[134.72607421874994,-6.66865234375001],[134.67441406250012,-6.74980468750003]]],[[[105.25283203125005,-6.640429687499946],[105.19042968750003,-6.6625],[105.14277343750008,-6.643066406249957],[105.12138671875007,-6.614941406249997],[105.19228515625005,-6.545605468749996],[105.22568359375012,-6.529101562500003],[105.26054687500002,-6.523925781250014],[105.27744140625006,-6.561425781250023],[105.25283203125005,-6.640429687499946]]],[[[134.71611328125002,-6.549414062499977],[134.66083984375004,-6.558886718749946],[134.63369140625,-6.47724609375001],[134.6791015625,-6.456054687499956],[134.72851562499997,-6.505859374999985],[134.71611328125002,-6.549414062499977]]],[[[134.81953125000004,-6.434179687500034],[134.79511718750004,-6.442382812500013],[134.7953125,-6.39306640625],[134.8229492187501,-6.349609374999942],[134.85185546875002,-6.324609375],[134.88583984375012,-6.32353515624996],[134.81953125000004,-6.434179687500034]]],[[[134.53681640625004,-6.442285156249994],[134.52041015624997,-6.512695312499956],[134.504296875,-6.59140625],[134.4125,-6.679687499999957],[134.35595703124997,-6.814843749999952],[134.32275390624997,-6.84873046875002],[134.2,-6.908789062500006],[134.09082031249997,-6.833789062500003],[134.05917968750012,-6.769335937500017],[134.10703125000006,-6.471582031250009],[134.15419921875,-6.481445312499986],[134.18476562500004,-6.479296874999989],[134.19462890625007,-6.459765625],[134.12460937500012,-6.426464843749969],[134.11123046875005,-6.255371093750014],[134.11464843750005,-6.190820312500008],[134.16806640625006,-6.176269531249986],[134.23417968750007,-6.226367187499974],[134.31777343750002,-6.316113281249954],[134.41503906249997,-6.386718749999957],[134.53681640625004,-6.442285156249994]]],[[[107.37392578125005,-6.007617187499989],[107.47470703125006,-6.121777343749983],[107.56298828125003,-6.182714843749963],[107.66679687500002,-6.215820312499957],[107.77607421875008,-6.218945312499969],[107.88378906250003,-6.233300781249966],[108.00878906249997,-6.276953124999977],[108.13759765625005,-6.296679687500003],[108.19746093750004,-6.289062499999957],[108.25449218750012,-6.2666015625],[108.29501953125012,-6.265039062500037],[108.3301757812501,-6.286035156249966],[108.4191406250001,-6.382812499999956],[108.51591796875002,-6.471191406250028],[108.53798828124998,-6.516210937499962],[108.60361328125012,-6.729199218750011],[108.67783203125005,-6.790527343749972],[108.7796875,-6.808300781249955],[108.89941406249997,-6.808398437499974],[109.01835937500006,-6.817285156250009],[109.29423828125,-6.866992187500017],[109.40371093750004,-6.860156249999946],[109.50058593750006,-6.810156249999977],[109.58691406249997,-6.842578125000017],[109.82099609375004,-6.902441406249949],[109.9362304687501,-6.915820312500017],[110.0670898437501,-6.898730468749988],[110.19843750000003,-6.895117187499963],[110.26093750000004,-6.912402343750031],[110.32109375000007,-6.938378906249994],[110.37275390625004,-6.947753906249942],[110.42626953124997,-6.947265625000028],[110.52089843749998,-6.89726562499996],[110.58359375000006,-6.805664062499956],[110.63427734375003,-6.690136718750039],[110.67402343750004,-6.569824218749957],[110.70078125000006,-6.518066406249986],[110.73691406250005,-6.472363281249996],[110.78417968749997,-6.442675781249988],[110.83476562500002,-6.424218749999952],[110.97226562500012,-6.435644531249976],[111.00068359375004,-6.464746093749951],[111.1543945312501,-6.669042968750006],[111.18154296875004,-6.686718749999969],[111.34208984375007,-6.699511718750003],[111.38652343750007,-6.692871093749972],[111.48447265625012,-6.651855468749972],[111.54033203125002,-6.64824218750003],[111.64355468750003,-6.698730468750014],[111.68808593750012,-6.741699218749972],[111.73759765625006,-6.773437499999957],[111.98984375000012,-6.805957031250017],[112.0873046875,-6.89335937499996],[112.13671875000003,-6.90507812499996],[112.3123046875,-6.894433593750009],[112.43359375000001,-6.903027343749983],[112.53925781250004,-6.926464843749955],[112.58691406249996,-7.050585937500017],[112.62597656249997,-7.17802734374996],[112.64873046875006,-7.221289062499977],[112.75195312499997,-7.265039062500008],[112.7943359375,-7.304492187499974],[112.78291015625004,-7.431640625000028],[112.79453125000012,-7.55244140625004],[113.01357421875005,-7.657714843749986],[113.24843750000005,-7.718164062499951],[113.49765625000006,-7.723828124999954],[113.7474609375,-7.703027343749979],[113.87626953125002,-7.677246093749971],[114.0373046875001,-7.632128906250016],[114.07070312500004,-7.633007812500011],[114.38271484375,-7.77109375],[114.4092773437501,-7.79248046875],[114.44423828125,-7.895605468749963],[114.44326171875,-8.004589843749955],[114.38496093750003,-8.26328125],[114.38134765624997,-8.334277343749974],[114.38691406250004,-8.405175781250037],[114.44882812500006,-8.559277343749983],[114.48173828125002,-8.603808593750003],[114.59501953125003,-8.684765624999969],[114.59921875000006,-8.727246093750011],[114.58378906250002,-8.769628906250034],[114.45917968750004,-8.74052734374996],[114.38320312499998,-8.705371093749989],[114.33925781250004,-8.647363281249994],[114.27695312500006,-8.61464843749998],[114.15966796874996,-8.62646484375],[113.94033203125004,-8.568359374999972],[113.69257812500008,-8.478027343749957],[113.25332031250004,-8.286718749999963],[113.13369140625,-8.288281250000026],[113.01894531249998,-8.312695312500026],[112.89775390625002,-8.361425781250006],[112.7716796875001,-8.396093749999963],[112.67880859375006,-8.409179687499957],[112.58603515625005,-8.399609374999969],[112.35156250000003,-8.353613281250006],[112.11513671875,-8.323925781249997],[111.50996093750004,-8.30507812499998],[111.33857421875003,-8.261718750000028],[111.0553710937501,-8.239550781249946],[110.83017578125012,-8.201953125000015],[110.60722656250002,-8.149414062499972],[110.03867187500005,-7.890527343749993],[109.85263671875012,-7.828417968749945],[109.28164062500005,-7.704882812500003],[109.19355468750003,-7.69492187500002],[108.98671875,-7.704101562500028],[108.85625,-7.667871093750008],[108.74121093749997,-7.667089843750034],[108.57050781250004,-7.707226562500039],[108.51796875,-7.736035156249955],[108.45175781250005,-7.796972656250019],[108.33554687500012,-7.794042968749963],[108.22050781250002,-7.782324218749977],[107.91748046875003,-7.724121093750014],[107.8043945312501,-7.688378906250022],[107.69580078124996,-7.635546875],[107.59785156250004,-7.566699218750002],[107.546875,-7.541894531250022],[107.28496093750007,-7.471679687500014],[107.07119140625,-7.447460937499969],[106.63144531250005,-7.415527343750028],[106.5353515625001,-7.394238281249955],[106.45527343750003,-7.368652343749986],[106.41132812500004,-7.311718750000026],[106.41689453125005,-7.23935546875002],[106.44843750000008,-7.176757812499971],[106.49150390625007,-7.113867187500034],[106.51972656250004,-7.053710937499942],[106.19824218749997,-6.927832031249977],[105.94433593749997,-6.858984374999976],[105.83476562500002,-6.845800781249963],[105.72480468750008,-6.846093750000023],[105.6009765625,-6.860351562499985],[105.47841796875,-6.853710937499969],[105.42080078125004,-6.833203124999969],[105.36191406250006,-6.826171874999957],[105.30292968750004,-6.841015624999954],[105.25546875000012,-6.835253906250031],[105.24316406250001,-6.778027343750011],[105.27343749999997,-6.729394531249951],[105.33564453125004,-6.674121093749974],[105.37089843750002,-6.664355468750031],[105.38701171875002,-6.75078125],[105.40468750000005,-6.76796875],[105.45976562500002,-6.786914062499946],[105.48369140625006,-6.781542968750017],[105.58085937500006,-6.670996093749963],[105.6080078125001,-6.61669921875],[105.65507812500002,-6.469531249999946],[105.70605468749997,-6.497949218749965],[105.75742187500006,-6.480371093750023],[105.78691406250002,-6.456933593749966],[105.86826171875006,-6.11640625000004],[105.93613281250006,-6.016992187500037],[106.02880859375001,-5.934277343749969],[106.075,-5.914160156249963],[106.16582031250006,-5.964746093749966],[106.34970703125012,-5.984082031249997],[106.45908203125012,-6.017578124999986],[106.56875,-6.021875],[106.67587890625005,-6.038378906249959],[106.82519531249997,-6.098242187499976],[106.87792968749997,-6.09199218750004],[106.93164062500003,-6.0734375],[107.01162109375005,-6.008496093749997],[107.0462890625,-5.90419921874998],[107.16210937499997,-5.957128906250006],[107.33183593750002,-5.978125],[107.37392578125005,-6.007617187499989]]],[[[124.05126953124997,-5.97373046875002],[124.04208984375012,-6.021582031249991],[124.00566406250006,-5.966699218750009],[123.9722656250001,-5.939355468750037],[123.97578125000005,-5.880175781249959],[124.02294921874997,-5.902148437500003],[124.05126953124997,-5.97373046875002]]],[[[120.52832031249996,-6.2984375],[120.48730468749996,-6.464843749999972],[120.46796875000003,-6.406152343750009],[120.46074218750007,-6.254003906250005],[120.43554687499996,-6.180175781249972],[120.45156250000004,-6.094921875000011],[120.4464843750001,-5.876269531249974],[120.47734375000007,-5.775292968750009],[120.53417968750001,-5.903808593749986],[120.54921875000005,-5.969238281249986],[120.52832031249996,-6.2984375]]],[[[112.71943359375008,-5.81103515625],[112.69794921875003,-5.846484375000031],[112.60214843750006,-5.843652343749979],[112.58603515625005,-5.803613281249994],[112.64853515625012,-5.730859375],[112.69003906250006,-5.726171875000034],[112.72734375,-5.75273437500003],[112.71943359375008,-5.81103515625]]],[[[132.80712890625003,-5.850781250000011],[132.7462890625,-5.947070312500003],[132.70488281250007,-5.913085937500014],[132.68144531250002,-5.91259765625],[132.66728515625,-5.85605468750002],[132.68134765625004,-5.738867187499948],[132.63017578125002,-5.60703125],[132.69785156250006,-5.608984374999962],[132.71650390625004,-5.64833984374998],[132.73779296875,-5.661718749999963],[132.80429687500006,-5.788867187500017],[132.80712890625003,-5.850781250000011]]],[[[134.74697265625,-5.707031249999956],[134.73906250000007,-5.74560546875],[134.73837890625012,-5.816796875000023],[134.75498046875012,-5.882714843750037],[134.71220703125,-5.949707031250014],[134.75214843750004,-6.050097656250031],[134.75810546875002,-6.1],[134.75585937500003,-6.170605468749983],[134.74443359375002,-6.202343749999969],[134.71416015625007,-6.295117187500039],[134.68388671875002,-6.328125],[134.66113281249994,-6.337304687500008],[134.63759765625,-6.365332031249949],[134.44111328125004,-6.334863281249966],[134.35615234375004,-6.2705078125],[134.28046875000004,-6.20078125],[134.26445312500002,-6.171679687500017],[134.17539062500006,-6.090332031249972],[134.15488281250006,-6.062890624999979],[134.153125,-6.019531250000028],[134.22509765624997,-6.008496093749997],[134.3019531250001,-6.009765624999985],[134.29863281250002,-5.970703125000028],[134.34306640625002,-5.833007812499943],[134.22617187500012,-5.744433593750017],[134.20537109375002,-5.707226562499997],[134.247265625,-5.681933593749988],[134.34130859375003,-5.712890624999986],[134.45634765625002,-5.557519531249951],[134.49033203125012,-5.52509765625001],[134.50644531250012,-5.438476562499957],[134.57080078124997,-5.42734375],[134.61650390625007,-5.438574218749976],[134.64609375000012,-5.492382812500011],[134.6578125000001,-5.539257812499969],[134.64550781250003,-5.581347656250017],[134.70078125000006,-5.603027343749986],[134.74697265625,-5.707031249999956]]],[[[132.92626953124994,-5.902050781249983],[132.84501953125002,-5.987988281249996],[132.92167968750002,-5.785253906249991],[132.93769531250004,-5.682617187499957],[133.00878906249997,-5.621386718750003],[133.11464843750005,-5.31064453125002],[133.13847656250002,-5.317871093749986],[133.17285156250003,-5.348144531250028],[133.11962890625003,-5.575976562499989],[132.97109375000005,-5.735839843749957],[132.92626953124994,-5.902050781249983]]],[[[102.36718750000003,-5.478710937499983],[102.28593750000002,-5.483496093749976],[102.13554687500002,-5.360546874999969],[102.1107421875,-5.322558593749959],[102.15351562500004,-5.28623046875002],[102.19843750000004,-5.288867187500031],[102.3717773437501,-5.366406250000011],[102.4054687500001,-5.404785156250014],[102.36718750000003,-5.478710937499983]]],[[[123.62675781250006,-5.271582031249963],[123.62275390625004,-5.373046874999943],[123.58261718750006,-5.36738281250004],[123.55009765625007,-5.331835937499989],[123.54091796875,-5.29833984375],[123.54277343750002,-5.271093749999963],[123.5606445312501,-5.249804687499974],[123.62675781250006,-5.271582031249963]]],[[[122.04296874999997,-5.437988281250028],[121.97958984375006,-5.46474609374998],[121.859375,-5.35029296875001],[121.80849609374998,-5.256152343750017],[121.82070312499998,-5.202929687500017],[121.85664062500003,-5.15625],[121.87373046875004,-5.144628906249949],[121.86630859375005,-5.095996093749988],[121.91367187500012,-5.072265624999957],[121.96572265625,-5.075585937500008],[121.99990234374998,-5.140820312499969],[122.04101562500001,-5.158789062499991],[122.06181640625,-5.22128906250002],[122.04296874999997,-5.437988281250028]]],[[[122.64511718750012,-5.26943359374998],[122.61933593750008,-5.335839843750009],[122.56386718749998,-5.3875],[122.51972656250004,-5.391210937500006],[122.47363281249997,-5.380664062499989],[122.39199218750004,-5.335449218750014],[122.37128906250008,-5.383105468749946],[122.30703125000005,-5.380957031249963],[122.28310546874998,-5.319531249999969],[122.32900390625,-5.137695312499956],[122.3962890625,-5.069824218749986],[122.39003906250001,-4.998535156250028],[122.33447265624997,-4.84658203124998],[122.36894531250007,-4.767187499999977],[122.52441406250001,-4.707128906249991],[122.65996093750002,-4.633886718749991],[122.701953125,-4.61865234375],[122.73974609375004,-4.675],[122.75986328125012,-4.933886718750003],[122.61406250000007,-5.138671874999986],[122.64511718750012,-5.26943359374998]]],[[[123.17978515625005,-4.551171875000023],[123.20302734375,-4.766210937499949],[123.195703125,-4.82265625],[123.13945312500002,-4.739941406250011],[123.11923828125005,-4.723437500000031],[123.10380859375,-4.739941406250011],[123.08388671875004,-4.7490234375],[123.05517578124996,-4.748242187500026],[123.01796875000004,-4.831738281249983],[123.01464843749996,-4.910253906249991],[122.9865234375001,-4.963085937499997],[122.97167968750003,-5.13847656250003],[122.98105468750005,-5.185742187499983],[123.02460937500003,-5.162402343750017],[123.0514648437501,-5.156445312499955],[123.14990234374996,-5.224023437499965],[123.20195312500003,-5.273339843749966],[123.18730468750006,-5.333007812499957],[123.12070312500005,-5.393164062499963],[123.04335937500004,-5.419335937499966],[122.98574218750005,-5.393554687499943],[122.96875,-5.405761718749943],[122.93466796875012,-5.43671875000004],[122.90878906250006,-5.47744140624998],[122.9162109375001,-5.519335937499989],[122.85019531250005,-5.637988281250003],[122.81210937500013,-5.671289062499952],[122.73310546875011,-5.634960937500011],[122.684375,-5.666210937499983],[122.64501953124996,-5.663378906250031],[122.58496093750001,-5.544628906249997],[122.58642578124997,-5.488867187500006],[122.64218750000012,-5.426269531249957],[122.64257812500001,-5.381152343750003],[122.67011718750004,-5.33085937499996],[122.73144531250001,-5.26191406250004],[122.76650390625005,-5.210156249999983],[122.76757812499999,-5.177246093750028],[122.79365234375003,-5.052441406249996],[122.8038085937501,-5.000097656249991],[122.82148437500005,-4.94443359375002],[122.84941406250007,-4.83125],[122.85332031250007,-4.618359375000026],[122.94687500000012,-4.442675781250031],[123.0382812500001,-4.394726562500026],[123.074609375,-4.38691406250004],[123.0689453125001,-4.433593749999956],[123.17978515625005,-4.551171875000023]]],[[[133.57080078124997,-4.245898437500003],[133.621875,-4.299316406249957],[133.50292968750003,-4.257421875000034],[133.33300781249997,-4.169628906249997],[133.32089843750006,-4.111035156249969],[133.46435546874997,-4.19980468750002],[133.57080078124997,-4.245898437500003]]],[[[123.24238281250008,-4.112988281250011],[123.14453124999997,-4.233300781250009],[123.07617187499997,-4.227148437499991],[122.99472656250006,-4.148046874999963],[122.97089843750005,-4.06132812499996],[122.96904296875002,-4.029980468749969],[123.02490234375001,-3.980957031250028],[123.21191406250001,-3.997558593750028],[123.24697265625005,-4.04091796874998],[123.24238281250008,-4.112988281250011]]],[[[128.56259765625012,-3.58544921875],[128.39160156250003,-3.637890625000025],[128.42832031250012,-3.54042968749998],[128.45156250000005,-3.514746093749991],[128.5363281250001,-3.541308593749989],[128.56259765625012,-3.58544921875]]],[[[128.2755859375001,-3.67460937499996],[128.24990234375,-3.711132812500025],[128.191796875,-3.735253906249966],[128.14316406250012,-3.732714843749988],[128.15898437500005,-3.697656250000037],[128.146875,-3.677148437500037],[128.11083984375,-3.686425781249965],[128.05224609374997,-3.714550781250011],[127.97802734374996,-3.770996093749972],[127.934375,-3.743066406249965],[127.925,-3.69931640625002],[127.92753906250007,-3.679394531249955],[128.01621093750012,-3.600878906249946],[128.11914062500003,-3.5875],[128.26435546875004,-3.51230468750002],[128.32910156249997,-3.51591796874996],[128.31367187500004,-3.563671875000011],[128.29101562500003,-3.59765625],[128.27744140625012,-3.633203124999966],[128.2755859375001,-3.67460937499996]]],[[[128.7224609375,-3.546875],[128.72011718750005,-3.58916015624996],[128.71328125,-3.602539062500028],[128.65878906250006,-3.587792968750037],[128.61953125,-3.588574218750026],[128.5851562500001,-3.51220703125],[128.59492187500004,-3.494824218750011],[128.66650390624997,-3.516699218750034],[128.69355468750004,-3.52451171875002],[128.7224609375,-3.546875]]],[[[116.42412109375007,-3.464453124999963],[116.38779296875012,-3.636718749999972],[116.3265625,-3.539062499999972],[116.3953125,-3.423339843750014],[116.4269531250001,-3.399902343749957],[116.42412109375007,-3.464453124999963]]],[[[127.60625,-3.315136718749997],[127.62929687500004,-3.359179687500003],[127.53105468750002,-3.331347656250017],[127.48769531249998,-3.28818359375002],[127.53046875000011,-3.261523437500003],[127.5544921875,-3.254296874999951],[127.60625,-3.315136718749997]]],[[[116.30332031250006,-3.868164062499957],[116.09335937500008,-4.054101562500009],[116.05878906250004,-4.006933593749991],[116.07695312500002,-3.81748046875002],[116.01835937500007,-3.699902343749969],[116.02246093750003,-3.612402343749991],[116.06357421875006,-3.457910156249952],[116.1173828125001,-3.339550781249997],[116.23935546875006,-3.260351562500034],[116.26972656250003,-3.251074218750006],[116.262109375,-3.394824218749989],[116.28652343749998,-3.448828124999977],[116.29511718750003,-3.495019531249966],[116.28203125000007,-3.534765624999977],[116.30517578124997,-3.718554687500031],[116.31865234375007,-3.762988281250031],[116.28925781250003,-3.820898437500005],[116.30332031250006,-3.868164062499957]]],[[[126.86113281250006,-3.087890624999986],[127.02548828125006,-3.166015625],[127.06289062500004,-3.216992187499997],[127.09238281250005,-3.277539062499983],[127.12470703125008,-3.310839843750017],[127.16347656250001,-3.338085937499969],[127.22734375000009,-3.391015625],[127.24423828125012,-3.47109375],[127.22958984375006,-3.633007812500011],[127.15517578124998,-3.647265624999989],[127.08505859375012,-3.6708984375],[126.94091796874996,-3.764550781249994],[126.86992187500006,-3.782910156249997],[126.7941406250001,-3.789160156250034],[126.74033203125006,-3.813671874999955],[126.68632812500006,-3.823632812500037],[126.5466796875,-3.771679687500025],[126.41113281250001,-3.710644531250025],[126.21455078125004,-3.605175781250026],[126.17832031250012,-3.579394531250017],[126.14667968750008,-3.522753906250017],[126.05654296875,-3.420996093749991],[126.03398437500002,-3.355859375000037],[126.02646484375012,-3.170507812500019],[126.05009765625002,-3.128125],[126.08828125,-3.105468750000014],[126.21962890624998,-3.148144531249997],[126.30625,-3.103222656249997],[126.55507812500004,-3.065234374999989],[126.80830078125004,-3.069140624999974],[126.86113281250006,-3.087890624999986]]],[[[127.98789062500012,-2.936523437499957],[127.9376953125001,-3.020019531250014],[127.84960937499997,-3.016308593749969],[127.83427734375007,-3.004394531250028],[127.93837890625005,-2.952343749999983],[127.98789062500012,-2.936523437499957]]],[[[106.88642578125003,-3.005273437500023],[106.86972656250012,-3.025292968750022],[106.81425781250007,-3.014453125000031],[106.77431640625005,-2.98681640625],[106.74921875000004,-2.960449218749957],[106.7428710937501,-2.932812500000011],[106.796875,-2.898925781250028],[106.91064453124997,-2.93398437499998],[106.88642578125003,-3.005273437500023]]],[[[107.47333984375004,-2.899511718749977],[107.43281250000004,-2.925292968749986],[107.40927734375006,-2.900585937500011],[107.40244140625012,-2.87294921874998],[107.4193359375,-2.838085937499983],[107.47441406250002,-2.834667968749997],[107.4997070312501,-2.845019531249974],[107.47333984375004,-2.899511718749977]]],[[[129.75468750000007,-2.865820312500034],[129.984375,-2.976660156249963],[130.10341796875005,-2.99296875],[130.30361328124997,-2.978515624999986],[130.3791015625001,-2.989355468749977],[130.56992187500006,-3.130859375000028],[130.62558593750012,-3.228027343750014],[130.64169921875012,-3.311914062499966],[130.67109375000004,-3.391503906250022],[130.71806640625,-3.411328124999969],[130.77343749999997,-3.41875],[130.84560546875,-3.533300781249949],[130.85996093750006,-3.570312500000028],[130.805078125,-3.85771484374996],[130.58037109375005,-3.748828124999988],[130.36308593750002,-3.625195312500025],[130.2697265625001,-3.579296875],[130.01953125000003,-3.474707031250006],[129.9811523437501,-3.43886718749998],[129.953125,-3.391601562499943],[129.84414062499997,-3.327148437499957],[129.6266601562501,-3.317187499999974],[129.54501953125006,-3.318847656249957],[129.51171875,-3.32851562499998],[129.52041015625002,-3.363183593750022],[129.5216796875,-3.433691406249991],[129.46767578125005,-3.453222656249977],[129.33281250000002,-3.408691406249971],[129.2121093750001,-3.392675781249991],[129.10761718750004,-3.34921875000002],[128.9674804687501,-3.326074218750009],[128.95205078125005,-3.30419921875],[128.96406250000004,-3.271679687500025],[128.95781250000007,-3.241113281250023],[128.92539062500006,-3.229296875000017],[128.8625,-3.234960937500006],[128.80175781249997,-3.265625],[128.75126953125002,-3.30048828125004],[128.67695312500004,-3.396582031249991],[128.63896484375002,-3.433398437500031],[128.51660156249997,-3.449121093750037],[128.46591796875006,-3.43984375],[128.41923828125002,-3.416015624999943],[128.2799804687501,-3.240527343749988],[128.23300781250012,-3.20263671875],[128.18066406250003,-3.171679687500003],[128.13203125,-3.157421875000026],[128.08212890625012,-3.184082031249943],[128.05576171875006,-3.238574218749946],[128.04394531249997,-3.303320312499991],[128.03007812500007,-3.340527343750026],[127.97001953125,-3.444335937499943],[127.92041015625003,-3.506054687499997],[127.90234374999996,-3.496289062499955],[127.92783203125012,-3.397265624999946],[127.92792968750003,-3.34140625000002],[127.89716796875008,-3.282324218749977],[127.87792968749996,-3.222070312499966],[128.11337890625006,-2.934570312500014],[128.19853515625002,-2.865917968749969],[128.56982421874997,-2.842187500000022],[128.79052734375003,-2.856640625000026],[128.91074218750006,-2.849609375000014],[128.99111328125,-2.82851562499998],[129.05771484375006,-2.838476562499977],[129.07431640625012,-2.895117187499963],[129.1163085937501,-2.937011718749972],[129.17441406250006,-2.933496093749966],[129.27958984375002,-2.8890625],[129.37109374999997,-2.820507812500039],[129.42734375000003,-2.790722656250011],[129.48417968750002,-2.785742187499977],[129.54296875000003,-2.790332031250017],[129.60048828125,-2.806152343749957],[129.75468750000007,-2.865820312500034]]],[[[100.42509765625007,-3.182910156249974],[100.46513671875007,-3.32851562499998],[100.34609375000005,-3.229199218749997],[100.34843750000007,-3.158789062500034],[100.33203125000003,-3.11308593749996],[100.2599609375001,-3.056933593749974],[100.20429687500004,-2.98681640625],[100.17929687500006,-2.82021484374998],[100.19853515625002,-2.785546875000023],[100.24560546874997,-2.783203124999986],[100.45458984375003,-3.001953124999972],[100.46884765625012,-3.038964843749966],[100.46425781250005,-3.116894531250025],[100.43388671875007,-3.141308593750026],[100.42509765625007,-3.182910156249974]]],[[[108.2072265625001,-2.997656249999977],[108.19179687500005,-3.103027343749957],[108.16728515625002,-3.142773437499969],[108.08359375000012,-3.19492187500002],[108.05527343750006,-3.22685546874996],[107.97714843750012,-3.221777343749991],[107.96728515624997,-3.166601562500034],[107.94111328125004,-3.12929687499998],[107.85820312500002,-3.086328125000023],[107.8366210937501,-3.0966796875],[107.82177734374997,-3.160742187499991],[107.6595703125,-3.205566406249972],[107.61445312500003,-3.209375],[107.63671875000003,-3.124804687499946],[107.59492187500004,-3.058398437500017],[107.59160156250007,-2.976562499999943],[107.58388671874998,-2.940722656250017],[107.56347656250003,-2.920117187499997],[107.60488281250005,-2.863085937500017],[107.59814453124997,-2.79970703124998],[107.64160156249997,-2.731542968750034],[107.66630859375002,-2.566308593750037],[107.83779296875004,-2.530273437499972],[107.87470703125004,-2.55966796875002],[108.07441406250004,-2.596972656249974],[108.21513671875002,-2.696972656250011],[108.2906250000001,-2.829980468750023],[108.2072265625001,-2.997656249999977]]],[[[100.20410156249997,-2.741015625000017],[100.13271484375,-2.821386718749949],[100.01494140625007,-2.819726562499965],[99.9918945312501,-2.769824218750017],[99.996875,-2.64931640624998],[99.96816406250005,-2.609765625],[99.96933593750012,-2.594140625000022],[99.98789062500005,-2.525390624999957],[100.0119140625001,-2.510253906249986],[100.20195312500007,-2.679687499999957],[100.20410156249997,-2.741015625000017]]],[[[134.3742187500001,-2.123535156249985],[134.34521484375003,-2.138769531249977],[134.33505859375006,-2.095214843749985],[134.3507812500001,-2.036914062500002],[134.36953124999997,-2.027636718749989],[134.39101562500002,-2.03076171875],[134.41904296875006,-2.051757812500014],[134.3742187500001,-2.123535156249985]]],[[[99.84306640625007,-2.343066406250031],[99.84785156250004,-2.369726562499949],[99.6851562500001,-2.281738281249971],[99.60703125000012,-2.257519531250011],[99.53740234375007,-2.161523437499994],[99.55888671875007,-2.115429687500011],[99.56181640625007,-2.05117187499998],[99.57216796875005,-2.025781249999966],[99.62207031249997,-2.016601562499957],[99.68642578125005,-2.06337890624998],[99.734765625,-2.177734375000014],[99.81572265625007,-2.284375],[99.84306640625007,-2.343066406250031]]],[[[126.055078125,-2.451269531249963],[126.037890625,-2.469433593750011],[125.9779296875,-2.415429687500023],[125.93759765625012,-2.26279296875002],[125.90322265625005,-2.22216796875],[125.86289062500006,-2.077148437499943],[125.87324218750003,-2.035937499999989],[125.92275390625,-1.974804687499969],[125.96279296874998,-1.975781249999983],[125.99267578124996,-2.011816406249963],[125.9759765625,-2.168066406249991],[126.06572265625003,-2.365820312499963],[126.055078125,-2.451269531249963]]],[[[123.84824218750006,-1.955468750000023],[123.866015625,-1.995703124999963],[123.80351562500002,-1.99433593750004],[123.77724609374998,-1.918652343749983],[123.78349609375002,-1.878320312500023],[123.84824218750006,-1.955468750000023]]],[[[126.02421875000006,-1.789746093750011],[126.33173828125004,-1.822851562500006],[126.28808593750003,-1.858886718749972],[125.95644531250004,-1.916601562500006],[125.83886718749996,-1.906152343750009],[125.47919921875004,-1.940039062499991],[125.43261718749999,-1.938085937500034],[125.42597656250005,-1.882226562500023],[125.38720703124997,-1.843066406249946],[125.4447265625,-1.808984375000023],[125.52089843750004,-1.800878906249977],[125.72031250000006,-1.813769531250017],[126.02421875000006,-1.789746093750011]]],[[[123.1525390625001,-1.816503906249963],[123.07880859375008,-1.898925781249957],[123.07089843750006,-1.854882812499966],[123.08583984375,-1.81484375],[123.10644531250001,-1.78671875000002],[123.1375,-1.77265625],[123.1525390625001,-1.816503906249963]]],[[[130.35332031250007,-1.690527343749963],[130.36542968750004,-1.74980468749996],[130.425,-1.804589843750023],[130.40429687499997,-1.889843749999983],[130.38056640625004,-1.902636718750003],[130.39335937500007,-1.94160156250004],[130.41884765625,-1.971289062499963],[130.37265625000012,-1.991894531249983],[130.33896484375006,-1.98183593749998],[130.28417968750003,-2.009375],[130.24804687500003,-2.047753906249994],[130.13349609375004,-2.063867187499994],[130.09335937500006,-2.028320312499943],[129.8865234375,-1.98642578125002],[129.75439453125003,-1.894433593750023],[129.7376953125,-1.866894531250011],[129.99365234374997,-1.758886718750034],[130.10576171875002,-1.730468750000014],[130.199609375,-1.732226562500017],[130.31796875000006,-1.691992187499991],[130.35332031250007,-1.690527343749963]]],[[[124.96953125000009,-1.70546875],[125.06298828125003,-1.741015625000031],[125.09589843750004,-1.740820312499991],[125.12675781250002,-1.699316406249977],[125.14580078125,-1.692578125000026],[125.18789062500007,-1.712890624999986],[125.19765625,-1.780273437499943],[125.25820312499998,-1.770898437499994],[125.30537109375008,-1.793945312499986],[125.32021484374998,-1.810058593749972],[125.31406250000006,-1.877148437499969],[125.13476562499997,-1.888964843749974],[125.00673828125,-1.943066406249983],[124.83447265624997,-1.894433593750023],[124.63916015624999,-1.97822265625004],[124.52060546875006,-2.006933593750034],[124.41777343750002,-2.005175781250031],[124.32968750000012,-1.858886718749972],[124.38085937499997,-1.6875],[124.41757812500005,-1.659277343749991],[124.48300781250006,-1.64433593749996],[124.66396484375,-1.635937500000025],[124.96953125000009,-1.70546875]]],[[[135.47421875000006,-1.591796875000014],[135.86914062499997,-1.641992187500023],[135.97617187500012,-1.635546874999946],[136.20156250000005,-1.654980468749997],[136.38964843749997,-1.72158203124998],[136.71855468750002,-1.73398437500002],[136.81669921875002,-1.75380859374998],[136.892578125,-1.799707031249994],[136.70859375000012,-1.837695312500017],[136.621875,-1.873046875000014],[136.46083984375,-1.890429687500003],[136.32607421875,-1.872460937499994],[136.22812500000012,-1.893652343749949],[136.19257812500004,-1.859179687499946],[136.04921875,-1.824121093749994],[135.86572265624997,-1.752148437499997],[135.48759765625007,-1.66835937499998],[135.46972656249997,-1.616210937500014],[135.47421875000006,-1.591796875000014]]],[[[108.953125,-1.61962890625],[108.83789062499997,-1.661621093750028],[108.80371093750003,-1.567773437499994],[108.87724609375007,-1.539843749999988],[108.95683593750002,-1.564062499999949],[108.953125,-1.61962890625]]],[[[106.045703125,-1.669433593750014],[106.08007812499997,-1.738281250000014],[106.12714843750008,-1.800195312500009],[106.16171875000012,-1.866992187500031],[106.20878906250002,-2.188671875000011],[106.36591796875004,-2.464843749999971],[106.81845703125006,-2.573339843749963],[106.74433593750004,-2.617968749999988],[106.70664062500012,-2.658007812499974],[106.67880859375012,-2.704003906250022],[106.61201171875008,-2.895507812499957],[106.6185546875,-2.936132812499977],[106.65761718750005,-3.001171874999983],[106.66718750000004,-3.071777343749986],[106.61054687500004,-3.071386718749991],[106.54677734375005,-3.055566406249966],[106.49609375000003,-3.029003906249969],[106.44873046874997,-2.994238281249991],[106.39736328125005,-2.96660156249996],[106.34160156250007,-2.948730468749957],[106.25009765625006,-2.894042968750014],[106.12587890624998,-2.855371093750037],[105.99873046875004,-2.824902343749954],[105.9372070312501,-2.743554687499994],[105.90800781250002,-2.643261718749997],[105.93906250000012,-2.493457031250031],[105.90761718750005,-2.451953125],[105.86240234375006,-2.415429687500023],[105.8068359375001,-2.30742187499996],[105.7858398437501,-2.18134765625004],[105.7052734375001,-2.13261718749996],[105.59902343750005,-2.103125],[105.55273437500003,-2.079003906249966],[105.34287109375006,-2.125097656250034],[105.29257812500005,-2.114257812499957],[105.24765625000006,-2.07939453124996],[105.13339843750012,-2.042578125],[105.13769531250003,-1.972656249999971],[105.19101562500006,-1.91689453124998],[105.31621093750007,-1.860546874999955],[105.3748046875,-1.813183593749997],[105.38652343750002,-1.750781249999974],[105.36425781249997,-1.705078125],[105.37314453125012,-1.657324218750034],[105.4126953125001,-1.611035156250026],[105.45957031250005,-1.574707031249986],[105.58544921875003,-1.526757812499994],[105.6404296875,-1.610449218749991],[105.66757812500005,-1.680371093750026],[105.70087890625008,-1.731054687499963],[105.7544921875001,-1.658691406249957],[105.7204101562501,-1.533886718750026],[105.81611328125003,-1.50605468750004],[105.91005859375,-1.504980468749991],[105.98095703124997,-1.539160156250034],[106.02734374999997,-1.593164062500023],[106.045703125,-1.669433593750014]]],[[[123.59755859375,-1.704296875000011],[123.52861328125007,-1.710839843750009],[123.48251953125006,-1.681445312499974],[123.48662109375003,-1.534863281249955],[123.52851562500004,-1.502832031250009],[123.54853515625004,-1.508203125000037],[123.56132812500007,-1.551855468749949],[123.58203125000003,-1.590917968750006],[123.6164062500001,-1.627441406249986],[123.59755859375,-1.704296875000011]]],[[[128.1530273437501,-1.66054687499998],[128.09179687499997,-1.701171875],[128.06123046875004,-1.712402343749972],[127.9137695312501,-1.68515625000002],[127.74101562500007,-1.690820312500023],[127.56162109375013,-1.728515624999972],[127.45761718750006,-1.696679687499966],[127.39218750000008,-1.644824218749974],[127.39501953125001,-1.589843749999972],[127.45673828125004,-1.453710937500034],[127.59179687499999,-1.350781250000026],[127.64667968750004,-1.332421875],[127.74296875,-1.360253906249994],[127.905078125,-1.439062499999977],[128.03281250000012,-1.531640625],[128.14873046875002,-1.60371093750004],[128.1530273437501,-1.66054687499998]]],[[[123.2123046875,-1.171289062499966],[123.23427734375005,-1.233691406249974],[123.198046875,-1.287695312499963],[123.23779296874997,-1.389355468749983],[123.33857421875004,-1.25400390625002],[123.43476562500003,-1.236816406249986],[123.48935546875006,-1.259277343749943],[123.52685546874997,-1.28603515624998],[123.54726562500005,-1.337402343749957],[123.51191406250004,-1.447363281249977],[123.44873046875001,-1.498828124999988],[123.36699218750007,-1.507128906249989],[123.32861328124996,-1.443066406249997],[123.27490234374999,-1.437207031249955],[123.23740234375008,-1.576953125],[123.22050781250007,-1.598339843750011],[123.17294921875005,-1.616015624999974],[123.13037109375001,-1.577441406250017],[123.12294921874998,-1.556054687500008],[123.18291015625006,-1.492773437499991],[123.15039062500001,-1.304492187500003],[123.10517578125003,-1.339843750000014],[122.984375,-1.510644531249994],[122.89042968750007,-1.58720703124996],[122.85849609375005,-1.548242187500023],[122.81083984375002,-1.432128906249986],[122.83222656250004,-1.283007812499989],[122.90800781250002,-1.182226562499963],[122.97246093750007,-1.189160156249955],[123.15830078125012,-1.157519531250003],[123.2123046875,-1.171289062499966]]],[[[109.71025390625006,-1.1806640625],[109.51083984375012,-1.282812500000034],[109.46367187500002,-1.277539062500026],[109.428125,-1.2412109375],[109.45029296875012,-1.044140625],[109.4759765625,-0.9853515625],[109.61464843750005,-0.979101562499977],[109.69951171875002,-1.007324218749957],[109.74335937500004,-1.039355468749989],[109.76054687500002,-1.105175781249997],[109.75078125000007,-1.145019531250028],[109.71025390625006,-1.1806640625]]],[[[134.96533203124997,-1.116015624999974],[134.9173828125,-1.134277343749972],[134.86171875,-1.114160156249952],[134.80888671875007,-1.037597656249986],[134.82792968750002,-0.978808593750003],[134.88925781250012,-0.938476562499957],[134.94082031250005,-0.978906250000023],[134.9567382812501,-1.030566406249974],[134.99628906250004,-1.03408203124998],[134.96533203124997,-1.116015624999974]]],[[[99.16386718750007,-1.777929687500006],[99.07177734374997,-1.783496093749988],[98.87431640625007,-1.66367187499999],[98.82773437500006,-1.609960937499977],[98.81630859375005,-1.538281250000026],[98.62695312500001,-1.261328125],[98.60175781250004,-1.197851562499949],[98.67607421875007,-0.970507812500003],[98.86904296875005,-0.915625],[98.93261718750003,-0.954003906250009],[98.9547851562501,-1.05625],[99.0650390625001,-1.240722656249986],[99.10146484375005,-1.340136718749989],[99.12890624999997,-1.384179687499994],[99.14042968750002,-1.418457031249957],[99.13066406250007,-1.442382812499943],[99.21035156250005,-1.559277343749954],[99.2672851562501,-1.62773437499996],[99.27148437499997,-1.738476562499955],[99.16386718750007,-1.777929687500006]]],[[[131.00185546875005,-1.315527343750034],[130.96660156250007,-1.34345703125004],[130.8451171875,-1.317285156250037],[130.78232421875006,-1.255468749999963],[130.73935546875012,-1.17255859375004],[130.7121093750001,-1.104394531250009],[130.70439453125002,-1.05019531249998],[130.66796874999997,-0.98398437499999],[130.67294921875006,-0.959765625000031],[130.89716796875,-0.890039062500037],[130.939453125,-0.915332031249946],[131.03300781250007,-0.917578124999963],[131.07392578125004,-0.968261718749986],[131.04619140625002,-1.188183593750026],[131.00185546875005,-1.315527343750034]]],[[[130.90527343749994,-0.77744140625002],[130.87978515625005,-0.828417968750003],[130.832421875,-0.86289062500002],[130.40244140625006,-0.92392578125002],[130.43906250000006,-0.88740234375004],[130.45732421875,-0.85117187500002],[130.48427734375,-0.832519531249957],[130.5269531250001,-0.837304687499952],[130.54814453125007,-0.82626953125002],[130.56953125000004,-0.821875],[130.59375,-0.82666015625],[130.63544921875007,-0.811621093749963],[130.72324218750012,-0.82246093750004],[130.81347656250003,-0.81386718749998],[130.80703125000002,-0.76503906249998],[130.90527343749994,-0.77744140625002]]],[[[135.38300781250004,-0.6513671875],[135.59570312499997,-0.690429687499957],[135.67324218750005,-0.688281249999974],[135.74902343750003,-0.732519531250006],[135.8412109375,-0.711621093750011],[135.89355468749997,-0.725781249999969],[136.06875,-0.877734375000017],[136.1546875,-0.978320312499989],[136.2826171875,-1.064648437499997],[136.37529296875007,-1.094042968750031],[136.30537109375004,-1.173144531249989],[136.1647460937501,-1.214746093750023],[136.1103515625,-1.216796875],[136.00253906250006,-1.169726562500003],[135.91503906250003,-1.178417968749997],[135.83876953125,-1.11943359374996],[135.8255859375,-1.028320312499972],[135.74707031249997,-0.823046874999974],[135.64570312500004,-0.881933593749991],[135.52382812499997,-0.787304687499983],[135.49111328125,-0.785058593749966],[135.48339843749997,-0.801074218750031],[135.43164062500003,-0.768847656249946],[135.38769531249997,-0.704882812499974],[135.38300781250004,-0.6513671875]]],[[[127.30039062500012,-0.780957031250026],[127.28906250000004,-0.8015625],[127.18457031249996,-0.775292968750023],[127.1564453125001,-0.760937500000026],[127.20908203125005,-0.619335937499954],[127.25820312500007,-0.6234375],[127.30126953125003,-0.758398437499949],[127.30039062500012,-0.780957031250026]]],[[[130.6266601562501,-0.528710937499966],[130.56914062500007,-0.529980468749955],[130.46542968750006,-0.486523437499983],[130.52587890624997,-0.448730468750014],[130.56416015625004,-0.440917968750028],[130.59746093750007,-0.418261718750031],[130.6159179687501,-0.417285156250003],[130.65693359375004,-0.436523437500014],[130.6842773437501,-0.46914062499999],[130.6266601562501,-0.528710937499966]]],[[[121.86435546875012,-0.406835937500006],[121.90683593750006,-0.451269531250006],[121.88125,-0.502636718749983],[121.846875,-0.489843749999949],[121.75605468750005,-0.490820312499977],[121.7217773437501,-0.494726562499977],[121.68095703125002,-0.525],[121.65527343749997,-0.526171874999989],[121.67236328124997,-0.478808593750017],[121.74931640625,-0.40703125],[121.79736328124997,-0.417675781249997],[121.86435546875012,-0.406835937500006]]],[[[133.47265624999997,-0.726171874999963],[133.72363281249997,-0.741406249999955],[133.8502929687501,-0.731445312499971],[133.97451171875,-0.744335937500026],[134.02490234374997,-0.76972656250004],[134.11152343750004,-0.84677734375002],[134.08671875000002,-0.897363281250023],[134.07197265625004,-1.001855468749994],[134.11621093749997,-1.102441406249966],[134.18828125000002,-1.203125],[134.24716796875012,-1.310546875],[134.25957031250007,-1.362988281250026],[134.23720703125005,-1.474121093750014],[134.2169921875001,-1.529101562500031],[134.14541015625,-1.620800781249969],[134.105859375,-1.720996093749946],[134.13125,-1.844531249999989],[134.14541015625,-1.96875],[134.1427734375001,-2.082910156249966],[134.15566406250002,-2.195214843750023],[134.19482421875003,-2.309082031249943],[134.36210937500002,-2.62099609374998],[134.45996093749997,-2.83232421874996],[134.49121093750003,-2.71425781249998],[134.48330078125,-2.583007812499972],[134.51796875000002,-2.53564453125],[134.56689453124997,-2.510449218750026],[134.62744140624994,-2.536718749999963],[134.6447265625,-2.589843749999943],[134.64902343750012,-2.70585937499996],[134.70214843749994,-2.933593749999986],[134.76982421875002,-2.944042968749983],[134.84335937500006,-2.909179687499985],[134.85537109375005,-2.97880859374996],[134.85273437500004,-3.107617187499997],[134.88681640625006,-3.209863281249966],[134.91718750000004,-3.249902343750037],[135.03740234375002,-3.33310546875002],[135.09218750000005,-3.348535156249966],[135.25156250000012,-3.368554687499966],[135.37158203124994,-3.374902343750009],[135.48662109375002,-3.34511718749998],[135.5607421875,-3.26875],[135.62773437500002,-3.186035156249986],[135.85917968750002,-2.995312500000039],[135.92617187500005,-2.904101562500017],[135.99072265624997,-2.764257812499949],[136.01298828125007,-2.734277343749966],[136.24326171875006,-2.583105468749991],[136.26953125,-2.529492187499997],[136.30253906250007,-2.42568359374998],[136.35244140625005,-2.325195312500028],[136.38994140625002,-2.273339843750037],[136.61230468749997,-2.224316406249997],[136.84326171875,-2.19765625],[137.07207031250002,-2.105078124999949],[137.1710937500001,-2.025488281249991],[137.17578124999997,-1.973144531249986],[137.12548828124997,-1.88125],[137.12343749999997,-1.840917968749963],[137.17646484375004,-1.802148437499966],[137.38056640625004,-1.685644531250034],[137.6166015625,-1.565820312499952],[137.80625,-1.483203125],[137.91113281249994,-1.483789062500037],[138.00781250000003,-1.556542968750023],[138.11093750000006,-1.61591796875004],[138.64980468749997,-1.79111328125002],[138.73613281250002,-1.845507812500003],[138.81142578125,-1.917773437499989],[138.91914062500004,-1.967871093749977],[139.039453125,-1.992089843750023],[139.14882812500005,-2.03886718749996],[139.25263671875004,-2.09921875],[139.48183593750005,-2.211816406250023],[139.78955078125003,-2.34824218750002],[139.8683593750001,-2.3564453125],[140.15458984375007,-2.35],[140.20400390625,-2.375683593750011],[140.25097656249997,-2.412011718749951],[140.2946289062501,-2.420410156249972],[140.62255859374997,-2.44580078125],[140.6730468750001,-2.472070312500023],[140.72050781250007,-2.508105468749988],[140.74746093750005,-2.607128906249997],[140.97343750000007,-2.609765625],[140.97353515625,-2.803417968750026],[140.97363281250003,-3.006640624999946],[140.97373046875006,-3.209960937499986],[140.97382812500004,-3.413281250000011],[140.97392578125,-3.616601562499952],[140.9740234375,-3.819824218749971],[140.9740234375,-4.023144531249997],[140.97421875000003,-4.226464843750037],[140.97421875000003,-4.429785156249977],[140.9743164062501,-4.633007812499997],[140.97441406250002,-4.836328125000023],[140.97451171875005,-5.039648437499962],[140.97460937499997,-5.24296875],[140.97460937499997,-5.446191406250009],[140.97470703125006,-5.649511718749963],[140.9748046875001,-5.852832031249989],[140.97490234375002,-6.056152343750028],[140.975,-6.259375],[140.975,-6.346093750000023],[140.94404296875004,-6.452246093749977],[140.87460937500012,-6.611523437500011],[140.86230468749994,-6.740039062499989],[140.9195312500001,-6.840039062500026],[140.97519531250006,-6.90537109375002],[140.97519531250006,-7.072558593749974],[140.9752929687501,-7.27587890625],[140.975390625,-7.479199218750039],[140.97548828125002,-7.68251953124998],[140.97558593749997,-7.885742187499985],[140.97558593749997,-8.089062500000026],[140.97568359375003,-8.292382812499964],[140.97578125000004,-8.495703125],[140.97587890625002,-8.698925781250011],[140.97597656250005,-8.902246093749952],[140.97597656250005,-9.105566406249991],[140.97617187500012,-9.11875],[140.92460937500007,-9.085058593749991],[140.7865234375,-8.973730468749949],[140.66152343750005,-8.84677734375002],[140.58105468749997,-8.72832031249996],[140.48974609375003,-8.620410156250003],[140.10166015625012,-8.300585937499946],[140.00292968749997,-8.19550781250004],[139.98330078125,-8.166503906249986],[139.992578125,-8.139355468749969],[140.03740234375007,-8.083984374999972],[140.1169921875,-7.923730468750008],[140.03378906250006,-8.022753906250017],[139.93476562500004,-8.101171875],[139.79082031250002,-8.106347656249994],[139.64941406249997,-8.125390624999966],[139.51855468749997,-8.172753906250023],[139.38564453125,-8.189062499999963],[139.31914062500002,-8.165820312500031],[139.27910156250002,-8.106933593750028],[139.25830078124997,-8.046582031249983],[139.248828125,-7.982421874999972],[139.19296875000006,-8.086132812499955],[139.0832031250001,-8.142871093749974],[138.93349609375,-8.262402343749983],[138.890625,-8.237792968749943],[138.86474609374997,-8.192285156250009],[138.85615234375004,-8.145117187499991],[138.88505859375007,-8.094726562500027],[138.90546875000004,-8.041210937499955],[138.93593750000005,-7.913085937499972],[139.00302734375012,-7.837597656250039],[139.04570312500002,-7.691406250000013],[139.0736328125,-7.639257812499963],[139.08798828125012,-7.587207031250016],[139.04892578125006,-7.5283203125],[138.98300781250012,-7.50820312499999],[138.937890625,-7.472460937499988],[138.88554687500005,-7.373242187500026],[138.85312500000012,-7.339648437500031],[138.7936523437501,-7.298925781249992],[138.74794921875,-7.25146484375],[138.79843750000006,-7.215722656250008],[138.86484375000012,-7.20136718750001],[138.9193359375,-7.203613281250028],[139.01796875000002,-7.22587890625003],[139.0625,-7.227148437500019],[139.17685546875006,-7.1904296875],[139.11259765625002,-7.201757812500006],[139.04902343750004,-7.200585937500023],[138.84570312500003,-7.13632812499999],[138.72001953125002,-7.069824218749943],[138.60136718750007,-6.936523437499972],[138.60019531250012,-6.910742187499948],[138.6837890625001,-6.886523437499989],[138.86455078125005,-6.858398437499943],[138.80849609375,-6.790429687499952],[138.7266601562501,-6.731152343749955],[138.69814453125,-6.625683593749968],[138.64218750000006,-6.560449218749994],[138.52158203125006,-6.45380859375004],[138.438671875,-6.343359375],[138.36835937500004,-6.118554687500037],[138.2962890625,-5.94902343749996],[138.31386718750005,-5.8875],[138.37460937500006,-5.843652343749979],[138.28281250000012,-5.838574218750011],[138.19960937500005,-5.80703125],[138.2435546875,-5.72441406250003],[138.33964843750007,-5.675683593749966],[138.2521484375001,-5.688183593750026],[138.16650390625003,-5.712011718749991],[138.12744140624997,-5.71650390625001],[138.08710937500004,-5.709179687500039],[138.06591796874997,-5.675976562500025],[138.06308593750012,-5.628906250000028],[138.0755859375,-5.545800781249966],[138.06083984375,-5.465234374999979],[137.98496093750003,-5.427636718749966],[137.922265625,-5.370117187499972],[137.88681640625006,-5.348828124999983],[137.84033203125003,-5.350488281249966],[137.79521484375007,-5.312011718749943],[137.75908203125007,-5.256152343750017],[137.30664062500003,-5.014355468749968],[137.27978515624994,-4.945410156249949],[137.23789062500012,-4.975683593749991],[137.19589843750012,-4.990429687499983],[137.14375,-4.950781249999977],[137.08925781250005,-4.924414062500034],[137.0296875,-4.928710937500014],[136.97460937499997,-4.907324218750005],[136.91699218750003,-4.895117187500006],[136.85683593750005,-4.893164062499962],[136.61884765625004,-4.81875],[136.39375,-4.701269531249949],[136.2106445312501,-4.650683593749946],[136.09746093750002,-4.584765625000017],[135.97968750000004,-4.530859374999963],[135.71660156250007,-4.478417968750023],[135.45019531249997,-4.443066406250026],[135.35390625,-4.441796875000023],[135.27314453125004,-4.453125],[135.19560546875007,-4.450683593749972],[134.75419921875002,-4.19541015625002],[134.67968749999997,-4.079101562499942],[134.6869140625,-4.011132812499952],[134.70654296875003,-3.954785156250026],[134.88652343750007,-3.938476562499986],[134.75976562500003,-3.922167968749946],[134.70761718750006,-3.929882812500012],[134.60341796875005,-3.97607421875],[134.546875,-3.979296874999946],[134.4671875,-3.948632812500008],[134.39101562500002,-3.909960937499946],[134.26621093750012,-3.945800781249972],[134.20234375000004,-3.887011718749974],[134.18046875000002,-3.82509765624998],[134.14707031250006,-3.79677734374998],[134.1,-3.799707031249951],[134.03691406250002,-3.821972656249969],[133.973828125,-3.817968750000034],[133.93320312500012,-3.775585937500011],[133.90400390625004,-3.720117187499994],[133.8607421875,-3.680371093749983],[133.80849609375,-3.65],[133.723046875,-3.577929687499989],[133.67832031250006,-3.4794921875],[133.6833984375,-3.309179687500034],[133.69716796875,-3.248144531250034],[133.78164062500005,-3.148925781249985],[133.8415039062501,-3.054785156249991],[133.76738281250007,-3.044335937499994],[133.700390625,-3.0875],[133.67197265625006,-3.131835937499957],[133.66074218750012,-3.185546874999985],[133.653125,-3.364355468749991],[133.59941406250007,-3.416113281249963],[133.51816406250012,-3.411914062500002],[133.54228515625007,-3.516406249999974],[133.50917968750005,-3.615527343750003],[133.41513671875006,-3.732128906249954],[133.40722656249997,-3.785156250000014],[133.422265625,-3.842578124999989],[133.40087890625003,-3.899023437500034],[133.24873046875004,-4.062304687499989],[133.19804687500002,-4.070117187499974],[133.0851562500001,-4.069042968750026],[132.96855468750007,-4.094921874999969],[132.91445312500005,-4.05693359374996],[132.87011718749997,-4.00742187499999],[132.8371093750001,-3.948925781249983],[132.79091796875,-3.828125],[132.75390625000003,-3.703613281250014],[132.86972656250006,-3.550976562499997],[132.82978515625004,-3.412988281249952],[132.75136718750005,-3.294628906249997],[132.55351562500007,-3.130664062499988],[132.34824218750006,-2.97509765625],[132.25498046875006,-2.943457031249949],[132.10205078124997,-2.929589843749965],[132.05390625000004,-2.914550781250014],[132.00634765624997,-2.856054687500006],[131.97119140624997,-2.788574218750014],[132.06689453125,-2.759570312499974],[132.2306640625001,-2.680371093749997],[132.32333984375006,-2.684179687499977],[132.57548828125002,-2.727148437500034],[132.65292968750006,-2.766210937499991],[132.725,-2.789062500000028],[132.89726562500002,-2.658203125000014],[133.03378906250012,-2.487402343750034],[133.11884765625004,-2.45029296875002],[133.19101562500006,-2.43779296874996],[133.26494140625002,-2.454296875000039],[133.41142578125,-2.513964843750031],[133.52656250000004,-2.541699218749997],[133.60869140625007,-2.54716796874996],[133.65156250000004,-2.6005859375],[133.70009765625005,-2.624609375],[133.71093750000003,-2.544042968750034],[133.75332031250005,-2.450683593750014],[133.83466796875004,-2.421679687499974],[133.87763671875004,-2.415039062499943],[133.90488281250012,-2.390917968750003],[133.89892578124997,-2.304492187499989],[133.79101562500003,-2.293652343749997],[133.84970703125006,-2.219628906250022],[133.90244140625006,-2.183593749999957],[133.92050781250012,-2.147460937499972],[133.92158203125004,-2.102050781249957],[133.7103515625,-2.189160156250026],[133.48779296874997,-2.225585937499986],[133.35625,-2.215722656250023],[133.22490234375007,-2.214453125000034],[132.96279296875005,-2.272558593749963],[132.86328125000003,-2.270214843750026],[132.63105468750004,-2.24667968750002],[132.5026367187501,-2.218457031249955],[132.40332031250003,-2.240429687499997],[132.30761718749994,-2.24228515625002],[132.207421875,-2.175781249999972],[132.12216796875012,-2.092382812500034],[132.07988281250002,-2.033203124999957],[132.02343749999997,-1.99033203125002],[131.99843750000005,-1.932519531249966],[131.93613281250012,-1.714941406249963],[131.93037109375004,-1.559667968750034],[131.82978515625004,-1.556542968750023],[131.73144531249997,-1.541210937500011],[131.29375,-1.393457031250009],[131.24082031250006,-1.429687500000028],[131.17919921875003,-1.448339843750006],[131.11777343750012,-1.455273437499997],[131.05673828125012,-1.447656249999952],[130.99589843750007,-1.42470703124998],[131.00097656250003,-1.38398437500004],[131.04619140625002,-1.284082031250023],[131.0905273437501,-1.247265624999983],[131.15185546874994,-1.218847656249963],[131.1908203125,-1.165820312500003],[131.25410156250007,-1.006933593749963],[131.25898437500004,-0.95263671875],[131.25205078125012,-0.897167968749983],[131.2572265625,-0.855468750000014],[131.29638671874997,-0.83359375],[131.46152343750006,-0.78183593750002],[131.80429687500006,-0.703808593750025],[131.89091796875007,-0.657128906250023],[131.96240234374997,-0.58242187499998],[132.04599609375012,-0.537011718749966],[132.08447265624997,-0.491113281250037],[132.12841796874997,-0.454101562499957],[132.39375,-0.355468750000028],[132.5080078125001,-0.347460937499989],[132.62509765625006,-0.358886718750014],[132.85644531250003,-0.417382812500023],[133.07714843749994,-0.511816406249991],[133.26845703125005,-0.635742187500014],[133.47265624999997,-0.726171874999963]]],[[[104.47421875000012,-0.334667968749955],[104.56777343749998,-0.43183593750004],[104.59013671875002,-0.466601562500017],[104.54394531250003,-0.520507812499986],[104.50654296875004,-0.596679687499957],[104.48535156249997,-0.612890624999977],[104.41386718750002,-0.583691406249983],[104.36318359375,-0.658593749999966],[104.3297851562501,-0.539062499999943],[104.25712890625002,-0.463281249999966],[104.30234375000012,-0.385742187499972],[104.31875,-0.380175781249989],[104.34072265625,-0.38261718749996],[104.36357421875007,-0.402832031249986],[104.47421875000012,-0.334667968749955]]],[[[127.56699218750005,-0.318945312499949],[127.682421875,-0.46835937500002],[127.60498046874996,-0.610156249999946],[127.65859375,-0.689453125000028],[127.80429687500006,-0.694433593749977],[127.83789062500001,-0.724121093749986],[127.86328125000001,-0.759863281249991],[127.88017578125002,-0.808691406249991],[127.84228515625003,-0.847753906249949],[127.76113281249998,-0.883691406249994],[127.6675781250001,-0.832031249999943],[127.64287109375007,-0.783984375000017],[127.62382812500002,-0.76601562499999],[127.4978515625,-0.802441406249954],[127.4626953125,-0.80595703124996],[127.43828125000002,-0.739062500000017],[127.46865234375,-0.64296875],[127.3805664062501,-0.599609375000028],[127.3,-0.500292968749946],[127.29707031250004,-0.46025390624996],[127.3294921875,-0.39091796874996],[127.32509765625,-0.335839843750023],[127.37119140625005,-0.331640624999963],[127.45517578125012,-0.406347656249991],[127.49169921874999,-0.335937499999957],[127.52734374999996,-0.306640625000028],[127.56699218750005,-0.318945312499949]]],[[[127.24990234375004,-0.4953125],[127.18730468750007,-0.52119140625004],[127.11914062500001,-0.520507812499986],[127.10439453125005,-0.413867187500017],[127.12646484375003,-0.278613281250003],[127.18964843750008,-0.255761718749966],[127.29003906250003,-0.284375],[127.25302734375005,-0.318652343749989],[127.28056640625007,-0.39101562499998],[127.24990234375004,-0.4953125]]],[[[103.73652343750003,-0.347949218750003],[103.60634765625,-0.38291015625002],[103.461328125,-0.357617187500011],[103.47900390624996,-0.29746093750002],[103.54892578125006,-0.227539062499986],[103.6109375000001,-0.230566406249977],[103.72392578125002,-0.27666015624996],[103.76425781250005,-0.31777343749998],[103.73652343750003,-0.347949218750003]]],[[[130.81328125000007,-0.004101562500026],[130.98652343750004,-0.046582031249983],[131.02578125000005,-0.039941406249952],[131.27685546875003,-0.149804687499952],[131.31689453125003,-0.204296874999955],[131.30273437499994,-0.241113281249994],[131.33974609375005,-0.290332031249989],[131.2575195312501,-0.365722656249986],[131.21787109375006,-0.374121093750006],[131.17773437499997,-0.34599609374996],[131.0977539062501,-0.330078125],[131.00537109374994,-0.360742187500037],[130.946484375,-0.337597656250026],[130.8966796875001,-0.268457031249966],[130.80839843750007,-0.226464843750037],[130.68349609375,-0.080664062499991],[130.62216796875006,-0.0859375],[130.63828125000006,-0.14296875],[130.69130859375,-0.180566406250009],[130.76132812500006,-0.291406250000023],[130.80156250000002,-0.302148437499994],[130.84316406250005,-0.298339843750014],[130.89921875000002,-0.344433593749997],[130.89628906250002,-0.416015625000014],[130.7501953125001,-0.44384765625],[130.69980468750006,-0.391601562500014],[130.6886718750001,-0.296582031250011],[130.60654296875006,-0.328613281249972],[130.5749023437501,-0.361816406249986],[130.55078124999997,-0.366406250000026],[130.49628906250004,-0.267382812500017],[130.34052734375,-0.262304687499963],[130.23662109375002,-0.209667968749983],[130.28769531250012,-0.1546875],[130.29492187499997,-0.101464843749966],[130.3625,-0.072851562500006],[130.43095703125005,-0.098486328124977],[130.49960937500012,-0.060107421874974],[130.54833984375003,-0.06992187500002],[130.58427734375007,-0.04541015625],[130.72236328125004,-0.029833984375031],[130.81328125000007,-0.004101562500026]]],[[[98.45927734375007,-0.530468749999969],[98.39970703125007,-0.576855468750011],[98.3096679687501,-0.531835937499977],[98.33994140625006,-0.467871093750006],[98.35478515625007,-0.37929687499999],[98.40878906250006,-0.308984374999966],[98.4271484375,-0.226464843750037],[98.3229492187501,-0.000781249999974],[98.37451171875003,0.007080078125028],[98.4154296875,-0.017529296875011],[98.484375,-0.167675781249955],[98.54414062500004,-0.257617187499989],[98.52011718750012,-0.379687499999989],[98.45927734375007,-0.530468749999969]]],[[[104.77861328125007,-0.175976562499955],[104.80751953125,-0.192480468750034],[104.84316406250005,-0.140625],[104.90898437500007,-0.21171875],[104.94970703125003,-0.247265625000011],[105.00537109374996,-0.282812499999963],[104.9505859375,-0.284472656249946],[104.92851562500002,-0.316992187500006],[104.91425781250004,-0.323339843749963],[104.70224609375012,-0.208691406249969],[104.56660156250004,-0.245605468750028],[104.47353515625,-0.21210937500004],[104.44707031250002,-0.189160156249983],[104.49707031249997,-0.12636718749998],[104.54267578125003,0.01772460937498],[104.63564453125005,-0.018457031250023],[104.6583984375001,-0.062841796875006],[104.652734375,-0.07602539062502],[104.71347656250012,-0.103027343750014],[104.77861328125007,-0.175976562499955]]],[[[129.54892578125006,-0.187011718749986],[129.50566406250002,-0.189843750000037],[129.46923828124997,-0.131445312500034],[129.37011718749997,-0.066406250000014],[129.3087890625001,0.045410156250028],[129.54199218749997,-0.139257812500034],[129.54892578125006,-0.187011718749986]]],[[[127.45341796875002,-0.005859375000028],[127.44863281249998,-0.036621093749986],[127.41787109375004,0.006347656249972],[127.39677734375002,0.016601562500014],[127.4195312500001,0.124414062500037],[127.43134765625004,0.142578125000014],[127.4494140625001,0.068994140625037],[127.45341796875002,-0.005859375000028]]],[[[104.68925781250007,0.059521484374969],[104.69814453124998,0.034667968750057],[104.65087890624996,0.062695312499997],[104.62236328125002,0.079638671874974],[104.60351562499997,0.095214843750043],[104.49921875000004,0.232080078125037],[104.54384765624998,0.223291015625023],[104.65986328125004,0.10307617187496],[104.68925781250007,0.059521484374969]]],[[[103.28447265625002,0.541943359375011],[103.17216796875007,0.536181640625003],[103.13955078125,0.549072265625043],[103.15332031249997,0.643115234375017],[103.18740234374998,0.699755859375017],[103.23818359375,0.698632812499966],[103.29511718750008,0.61396484375004],[103.28447265625002,0.541943359375011]]],[[[127.41972656250007,0.642089843749986],[127.38398437500008,0.631005859375037],[127.37363281250012,0.634863281250034],[127.36289062500005,0.675146484374977],[127.38261718750006,0.743554687499966],[127.42480468749997,0.744384765625043],[127.44257812500004,0.733447265625045],[127.44589843750005,0.68330078125004],[127.41972656250007,0.642089843749986]]],[[[127.37265625000005,0.791308593750017],[127.33837890625003,0.75844726562498],[127.30605468749998,0.769433593749994],[127.28642578125,0.811914062500037],[127.29277343750007,0.842480468750054],[127.31982421874996,0.862011718750026],[127.35380859375007,0.847460937500003],[127.37265625000005,0.791308593750017]]],[[[103.45019531249997,0.664453125000023],[103.42968749999996,0.65087890625],[103.34443359375008,0.777880859375031],[103.36572265624997,0.851123046875031],[103.38613281250005,0.869580078124969],[103.43310546875003,0.825],[103.47031250000005,0.778125],[103.49746093749998,0.722705078124989],[103.45019531249997,0.664453125000023]]],[[[103.82861328124997,0.801025390625043],[103.83398437499997,0.772216796875028],[103.74238281250004,0.829980468749994],[103.74003906250002,0.871826171874986],[103.75195312499997,0.891357421874971],[103.80664062500003,0.846337890625037],[103.82861328124997,0.801025390625043]]],[[[104.23935546875006,0.833984375],[104.17675781250003,0.804882812500026],[104.09814453124997,0.896240234374986],[104.10107421874997,0.917480468750057],[104.10830078125,0.93354492187504],[104.12275390625003,0.943994140625037],[104.17050781250006,0.896728515625],[104.22705078124997,0.879882812500028],[104.23935546875006,0.833984375]]],[[[103.0275390625001,0.746630859374974],[103.00878906250003,0.708105468750034],[102.97148437500002,0.73652343750004],[102.77626953125,0.779589843750031],[102.71054687500006,0.784375],[102.54160156250012,0.83159179687496],[102.4904296875001,0.856640625],[102.45390625,0.889501953125034],[102.46640625000006,0.950341796874994],[102.49140625000003,0.986865234374974],[102.50664062500002,1.088769531250037],[102.54921875,1.130224609374963],[102.63320312500005,1.054394531249969],[102.72617187500005,0.989208984375011],[102.78007812500002,0.959375],[102.94414062500007,0.89272460937498],[103.00244140624997,0.859277343750008],[103.0275390625001,0.746630859374974]]],[[[103.42392578125012,1.048339843749972],[103.42968749999996,0.993359374999969],[103.36328125000003,1.006835937500043],[103.31542968750003,1.071289062500028],[103.35498046875003,1.117236328124974],[103.37998046875006,1.133642578125034],[103.40488281250006,1.072558593750031],[103.42392578125012,1.048339843749972]]],[[[103.16640625000005,0.870166015625003],[103.13720703124996,0.841650390624963],[103.08671875000007,0.848144531250043],[103.03339843750004,0.882031250000026],[102.9639648437501,0.942675781250031],[102.88632812500012,0.99677734375004],[102.78798828125005,1.030957031249983],[102.72646484375005,1.041259765625043],[102.7018554687501,1.0537109375],[102.72558593749997,1.158837890625023],[102.79013671875006,1.16547851562504],[102.99941406250005,1.067773437500023],[103.0675781250001,1.014746093749977],[103.16640625000005,0.870166015625003]]],[[[104.02480468750004,1.180566406250009],[104.08808593750004,1.137011718750017],[104.13984375000004,1.165576171874974],[104.13779296875006,1.128222656250003],[104.12734375,1.092382812499977],[104.06611328125004,0.989550781249989],[103.9635742187501,1.013232421875017],[103.93984375000005,1.046484375000048],[103.9322265625001,1.071386718749963],[103.9469726562501,1.087011718750034],[103.95537109375002,1.137451171875014],[103.99980468750002,1.137255859374974],[104.02480468750004,1.180566406250009]]],[[[104.58535156250005,1.21611328124996],[104.59101562500004,1.14106445312504],[104.64814453125004,1.104589843749977],[104.66289062500002,1.04951171875004],[104.65283203125003,0.961035156250048],[104.59912109374997,0.858984375000034],[104.57519531250003,0.831933593750037],[104.50429687500005,0.852636718749991],[104.4806640625001,0.886767578125017],[104.47119140624996,0.913476562500037],[104.48105468750012,0.932519531250008],[104.42861328125,0.956494140625011],[104.46240234375003,0.995556640624969],[104.43925781250002,1.050439453125051],[104.29394531249997,1.016113281249986],[104.25195312499996,1.014892578125],[104.24423828125006,1.077392578125028],[104.25019531250004,1.10263671875002],[104.36181640624997,1.18149414062502],[104.42841796875004,1.196044921875043],[104.50009765625006,1.180224609375017],[104.58535156250005,1.21611328124996]]],[[[102.4271484375,0.990136718750023],[102.38085937499997,0.95976562499996],[102.32529296875012,1.00703125],[102.27958984375002,1.075683593750043],[102.25546875000012,1.14716796875004],[102.23417968750002,1.263964843750031],[102.22861328125006,1.347851562499983],[102.25634765625003,1.397070312499963],[102.27646484375012,1.395263671875043],[102.35859375000004,1.345654296874969],[102.41289062500002,1.260791015625003],[102.44287109374997,1.234228515625006],[102.44882812500006,1.15625],[102.4289062500001,1.067285156250023],[102.4271484375,0.990136718750023]]],[[[97.48154296875006,1.465087890624972],[97.69833984375012,1.183740234375023],[97.78642578125002,1.145898437500051],[97.90322265625,1.018261718749983],[97.93193359375002,0.973925781250003],[97.90205078125004,0.884228515625026],[97.87646484374997,0.628320312500023],[97.82041015625012,0.564453124999986],[97.683984375,0.596093750000037],[97.68251953125,0.641064453125054],[97.60390625000004,0.83388671874998],[97.46123046875002,0.941406250000043],[97.40537109375012,0.946972656250026],[97.36884765625004,1.056933593750045],[97.296875,1.187353515624963],[97.07919921875006,1.425488281249983],[97.24423828125006,1.42363281249996],[97.32441406250004,1.481640624999969],[97.34277343749997,1.527929687499977],[97.35595703124997,1.539746093749997],[97.48154296875006,1.465087890624972]]],[[[102.49189453125004,1.459179687500011],[102.49941406250005,1.330908203124991],[102.42519531250004,1.364453124999983],[102.36689453125004,1.415478515624983],[102.27421875,1.453125],[102.1613281250001,1.465429687500034],[102.07871093750006,1.498583984375045],[102.0208984375,1.55820312500002],[102.01835937500002,1.585644531250011],[102.0240234375001,1.607958984375031],[102.04218750000008,1.625390625000037],[102.46953125000002,1.510058593749988],[102.49189453125004,1.459179687500011]]],[[[124.88886718750004,0.995312500000011],[124.69814453125,0.82558593749998],[124.63984375000003,0.743554687499966],[124.5890625000001,0.655273437500014],[124.5140625,0.55712890625],[124.42753906250002,0.470605468750051],[124.384375,0.44497070312498],[124.27802734375004,0.3984375],[124.21679687500001,0.380371093750057],[124.1013671875,0.374560546875017],[123.75380859375,0.305517578124991],[123.63964843750003,0.297460937500034],[123.52597656250006,0.300341796875003],[123.31044921874998,0.317578125000054],[123.26542968750007,0.326611328125026],[123.17949218750007,0.415527343750014],[123.08251953125001,0.485839843750043],[122.996875,0.493505859375006],[122.90957031250005,0.48598632812498],[122.28076171875001,0.481054687500048],[122.0609375,0.468017578125057],[121.8419921875001,0.436572265625045],[121.7227539062501,0.450878906250026],[121.6045898437501,0.486132812500017],[121.51572265625005,0.498437500000037],[121.42578125000003,0.494824218750011],[121.01298828125002,0.441699218750017],[120.90917968750001,0.446777343749986],[120.70039062500004,0.514697265624974],[120.57900390625001,0.5283203125],[120.45996093749997,0.51030273437496],[120.34902343750005,0.449218750000043],[120.30703125,0.40825195312496],[120.19228515625,0.268505859374997],[120.12734375,0.166552734375017],[120.07832031250004,0.039746093750026],[120.03603515625005,-0.08994140625002],[120.0132812500001,-0.196191406249994],[120.01210937500005,-0.307128906249943],[120.03173828124997,-0.43203125],[120.062890625,-0.555566406250023],[120.0974609375,-0.649902343749972],[120.240625,-0.868261718749949],[120.26982421875006,-0.89921875],[120.42539062500006,-0.96064453125004],[120.51757812499997,-1.039453125],[120.60507812500005,-1.258496093749969],[120.66738281250005,-1.370117187499972],[120.72861328125012,-1.37148437499998],[120.79697265625005,-1.36367187499998],[120.91582031250002,-1.377832031250023],[121.03369140624997,-1.406542968750017],[121.14853515625012,-1.33945312500002],[121.21259765625003,-1.2125],[121.27685546874996,-1.118164062499972],[121.43134765625008,-0.938574218749977],[121.51933593750007,-0.855566406250034],[121.57558593749998,-0.828515625000023],[121.63271484375,-0.840332031249943],[121.68115234374996,-0.887890624999955],[121.73769531250005,-0.925683593750023],[121.85312500000012,-0.945996093749983],[121.96962890625005,-0.933300781249969],[122.09365234375,-0.875],[122.13808593749998,-0.839257812499994],[122.17490234375005,-0.79375],[122.27998046875004,-0.757031250000026],[122.52968750000005,-0.756640624999946],[122.6587890625001,-0.769824218749974],[122.88876953125006,-0.755175781250003],[122.88554687500006,-0.722070312500009],[122.84111328125007,-0.687011718749971],[122.8294921875,-0.658886718750026],[122.8722656250001,-0.640722656249963],[123.02041015624998,-0.599804687499969],[123.17148437500013,-0.57070312499999],[123.28144531250003,-0.591503906249969],[123.3796875,-0.648535156249949],[123.41738281250005,-0.707421874999966],[123.43417968750006,-0.778222656249994],[123.39628906250002,-0.961621093749969],[123.37792968749996,-1.004101562500011],[123.299609375,-1.02607421875004],[123.2257812500001,-1.001757812499974],[123.15273437500005,-0.907031249999946],[123.0494140625001,-0.872363281249989],[122.90283203125003,-0.900976562499963],[122.85253906249996,-0.928125],[122.807421875,-0.966015624999969],[122.72460937500001,-1.064257812500003],[122.6556640625,-1.175195312499952],[122.50664062500002,-1.347851562499954],[122.33417968750011,-1.49785156249996],[122.25068359375004,-1.555273437500034],[122.15761718749998,-1.593945312499997],[121.8585937500001,-1.69326171874998],[121.77988281250012,-1.766992187499994],[121.71875,-1.862792968749971],[121.65097656250005,-1.895410156249952],[121.57265625,-1.905761718750028],[121.51386718750003,-1.887792968750006],[121.39472656250008,-1.833789062500017],[121.35546874999996,-1.878222656250003],[121.34882812500003,-1.945996093749954],[121.40751953125002,-1.970117187499995],[121.50195312499999,-2.045019531249977],[121.575,-2.150878906249957],[121.621875,-2.173632812499974],[121.7259765625,-2.208007812499957],[121.7697265625001,-2.240917968749997],[121.8482421875001,-2.331542968749986],[121.971875,-2.542382812499952],[122.01396484375,-2.656445312500011],[122.08261718750006,-2.749511718749971],[122.29169921875003,-2.907617187500023],[122.30332031250013,-2.952246093749963],[122.29042968750004,-3.004199218749989],[122.30654296875005,-3.051562499999946],[122.38125,-3.142382812499974],[122.39902343750005,-3.200878906249997],[122.31728515624998,-3.275097656250011],[122.31279296875007,-3.382714843750009],[122.26269531249997,-3.527441406250006],[122.2513671875,-3.576269531250006],[122.25292968749997,-3.620410156250017],[122.28808593750003,-3.661621093749985],[122.32910156250003,-3.694238281249966],[122.3853515625001,-3.71142578125],[122.43457031250003,-3.73984375000002],[122.52919921875,-3.852636718749991],[122.57861328124997,-3.88232421875],[122.60996093750012,-3.923437500000034],[122.60673828125002,-3.984667968749974],[122.64990234375001,-4.0205078125],[122.68964843750004,-4.084472656249972],[122.75039062500005,-4.1],[122.77880859374999,-4.08164062500002],[122.79824218750005,-4.054199218750028],[122.84794921875002,-4.064550781250006],[122.87734375,-4.109082031250011],[122.89433593750007,-4.166308593749946],[122.8998046875,-4.229394531250009],[122.89736328125005,-4.349121093749972],[122.8722656250001,-4.391992187500009],[122.81757812500003,-4.389941406250031],[122.71972656250003,-4.340722656249952],[122.71503906250004,-4.376269531250003],[122.72167968749997,-4.410742187500006],[122.671875,-4.422167968750031],[122.61474609375001,-4.417382812500023],[122.47138671875004,-4.422070312500011],[122.20712890625012,-4.49638671874996],[122.11425781250001,-4.540234375000011],[122.05419921874997,-4.620117187500028],[122.05,-4.675292968749986],[122.07324218750001,-4.791699218749997],[122.03808593749996,-4.832421875000022],[121.91699218749997,-4.847949218749988],[121.74804687500001,-4.816699218750017],[121.64570312500004,-4.78564453125],[121.58867187500006,-4.759570312500017],[121.51435546875004,-4.68125],[121.48652343750004,-4.581054687499972],[121.54121093750008,-4.282910156249983],[121.55673828125006,-4.24462890625],[121.5833984375,-4.21054687499999],[121.61152343750004,-4.156347656249963],[121.61806640624998,-4.092675781249952],[121.53740234375002,-4.01484375],[121.41582031250002,-3.984277343749994],[121.31269531250008,-3.919433593750014],[120.9142578125001,-3.555761718749991],[120.89179687500004,-3.520605468750034],[120.89091796875,-3.460351562500009],[120.90693359375008,-3.404003906249983],[121.03789062500002,-3.205175781249977],[121.05429687500012,-3.167089843749949],[121.07031249999997,-3.010156249999952],[121.06679687499998,-2.880957031250005],[121.0521484375,-2.751660156249954],[120.99013671875,-2.6703125],[120.87939453124996,-2.64560546875002],[120.76503906250005,-2.641601562500014],[120.65361328125002,-2.667578124999977],[120.54394531249996,-2.732617187499983],[120.34140625000005,-2.869628906250014],[120.26103515625006,-2.949316406249991],[120.25410156250003,-3.052832031250034],[120.30048828125011,-3.154296875000014],[120.36044921875006,-3.246875],[120.39238281250006,-3.348144531249972],[120.43662109375012,-3.70732421874996],[120.43515625000006,-3.74785156249996],[120.38300781250004,-3.852343750000017],[120.3625,-4.08574218749996],[120.38457031250007,-4.41513671875002],[120.42011718750003,-4.617382812500011],[120.40498046875003,-4.727246093750011],[120.31015625000012,-4.963183593750017],[120.28144531250004,-5.092675781250023],[120.27929687499997,-5.146093749999976],[120.39091796875002,-5.392578125000014],[120.4166015625001,-5.490039062499974],[120.43037109375008,-5.591015625000026],[120.31162109375008,-5.541601562500006],[120.25644531250006,-5.544140624999983],[120.2007812500001,-5.559375],[120.07705078125005,-5.575488281249974],[119.9515625,-5.577636718749972],[119.9076171875,-5.596289062499949],[119.81845703125012,-5.661816406249982],[119.76445312500002,-5.688281249999946],[119.71728515625003,-5.693359375000014],[119.55742187500007,-5.611035156250026],[119.46308593750005,-5.521679687500026],[119.37617187500008,-5.424804687500014],[119.36035156249997,-5.314160156250026],[119.390625,-5.200585937499979],[119.43359374999996,-5.079199218750034],[119.51953124999996,-4.877343750000037],[119.51552734375004,-4.741894531249969],[119.54492187499996,-4.630859375],[119.59404296875007,-4.523144531249997],[119.61171875,-4.42353515625004],[119.62363281250006,-4.034375],[119.61142578125005,-3.99980468749996],[119.49365234375003,-3.7685546875],[119.48007812500012,-3.729785156250017],[119.47929687500002,-3.667382812499994],[119.49199218750006,-3.607812500000037],[119.49453125000004,-3.554101562500009],[119.46748046875003,-3.512988281249989],[119.41982421875,-3.47539062499996],[119.36210937500006,-3.458984375],[119.24003906250007,-3.47529296875004],[118.99462890624997,-3.537597656250028],[118.92216796875,-3.482714843749946],[118.86767578124997,-3.39804687500002],[118.83281250000007,-3.28017578124998],[118.8125,-3.156640624999952],[118.821875,-3.040625],[118.85810546875004,-2.928515625000017],[118.82890625000007,-2.850097656250028],[118.78369140624996,-2.764746093749963],[118.78330078125006,-2.720800781249977],[118.80898437499998,-2.682324218749955],[118.85332031250006,-2.650195312499989],[118.90751953125007,-2.631445312499977],[118.9582031250001,-2.597460937499989],[119.09218750000005,-2.482910156250014],[119.13535156250005,-2.382324218749943],[119.13818359374997,-2.258496093750026],[119.172265625,-2.140039062499966],[119.24082031250013,-2.03095703125004],[119.32187500000012,-1.929687500000014],[119.34824218750006,-1.825292968749977],[119.30830078125003,-1.659667968749986],[119.32412109375004,-1.584277343749989],[119.31035156250007,-1.495703124999977],[119.308984375,-1.408203125],[119.35917968750006,-1.243457031250003],[119.50820312499998,-0.906738281249971],[119.6535156250001,-0.727929687499966],[119.71132812500004,-0.680761718750034],[119.78671875000006,-0.763964843750017],[119.84433593750006,-0.861914062499991],[119.84521484374997,-0.77324218749996],[119.82988281250006,-0.686328125000017],[119.7716796875001,-0.483593750000011],[119.721875,-0.088476562499991],[119.73583984374997,-0.051025390625],[119.7865234375,-0.056982421874963],[119.83828125,-0.022119140624966],[119.865625,0.040087890625003],[119.81171875000008,0.18691406249998],[119.80927734375004,0.238671875000051],[119.91328125000008,0.445068359375],[119.99804687500003,0.520214843750026],[120.03515624999996,0.566601562499983],[120.0564453125,0.692529296874966],[120.10058593749997,0.74013671874998],[120.15654296875007,0.774169921874986],[120.22978515625007,0.861230468750051],[120.26953125000001,0.970800781249991],[120.29384765625,0.979150390625009],[120.32246093750004,0.983154296875014],[120.36650390625,0.887548828124991],[120.41601562500001,0.848681640624974],[120.51660156249997,0.817529296875023],[120.60253906249997,0.854394531249994],[120.62646484374997,0.902392578125003],[120.65888671875008,0.94365234374996],[120.71103515625006,0.98666992187502],[120.75488281250003,1.035644531250057],[120.80361328124998,1.14926757812502],[120.86796875000007,1.25283203124998],[120.91210937499997,1.288964843749966],[120.96542968750012,1.311816406250003],[121.0246093750001,1.32578125],[121.08173828125008,1.327636718750028],[121.20839843750004,1.2625],[121.28173828124997,1.249804687499989],[121.35673828125007,1.25454101562498],[121.4041015625,1.243603515624969],[121.44003906250006,1.214404296874974],[121.47275390625006,1.155517578125057],[121.51328125000006,1.104736328125014],[121.55068359375,1.079687499999963],[121.59179687499997,1.067968749999977],[121.8673828125001,1.088525390624994],[122.10820312500002,1.031152343750023],[122.43662109375006,1.018066406250028],[122.54931640625003,0.98447265625002],[122.65742187500004,0.940576171875051],[122.78984375000002,0.862890625000034],[122.83828125,0.845703125],[122.89248046875004,0.85],[122.96005859375005,0.922998046875023],[123.0127929687501,0.938964843749986],[123.06650390625006,0.941796875000037],[123.278125,0.928076171874991],[123.84667968750003,0.838183593749974],[123.93076171875006,0.850439453124977],[124.27363281250003,1.022265624999989],[124.41083984375004,1.185107421875045],[124.53369140624996,1.230468750000043],[124.57539062500004,1.30405273437502],[124.60019531250006,1.392431640625006],[124.64375,1.416162109375037],[124.74667968750006,1.441406250000028],[124.78769531250008,1.467578125000031],[124.86064453125002,1.576025390625006],[124.9470703125,1.672167968749974],[124.98925781249996,1.701025390624991],[125.1109375000001,1.685693359374966],[125.16484375000007,1.64365234375002],[125.2337890625,1.502294921875006],[125.22167968750001,1.478710937499997],[125.14091796875007,1.408398437499969],[125.11748046875,1.37890625],[125.02802734375008,1.180224609375017],[124.96679687499997,1.082617187500034],[124.88886718750004,0.995312500000011]]],[[[101.70810546875006,2.078417968750045],[101.76230468750006,1.996533203124969],[101.77353515625005,1.943457031249991],[101.7340820312501,1.882568359375028],[101.71943359375004,1.789160156250006],[101.6027343750001,1.715722656250051],[101.50078125000002,1.733203124999974],[101.46777343750003,1.759375],[101.40341796875006,1.901318359375026],[101.40966796875001,2.021679687500026],[101.45029296875012,2.067822265625011],[101.54472656250007,2.060742187499997],[101.64072265625012,2.126708984375028],[101.70810546875006,2.078417968750045]]],[[[127.73271484375007,0.848144531250043],[127.80537109375003,0.825927734375057],[127.8810546875001,0.832128906249977],[127.91865234375004,0.87680664062502],[127.92910156249998,0.934716796875009],[127.96728515624997,1.042578125000048],[128.05527343750006,1.115625],[128.11699218750002,1.12705078125002],[128.16074218750006,1.1578125],[128.153125,1.237890625000048],[128.1574218750001,1.316601562500011],[128.22246093750002,1.400634765624986],[128.42412109375007,1.517529296874997],[128.5392578125001,1.559228515624966],[128.68837890625,1.572558593750017],[128.70517578125012,1.527734375000037],[128.68808593750012,1.463720703125048],[128.71689453125012,1.367285156250034],[128.70263671874997,1.106396484374997],[128.66875,1.069433593750006],[128.51455078125,0.979248046875028],[128.34599609375002,0.90712890624998],[128.29882812500003,0.87680664062502],[128.25722656249997,0.80498046874996],[128.26064453125,0.733789062500023],[128.39794921874997,0.638818359375037],[128.61123046875,0.549951171875051],[128.65527343749997,0.508251953124997],[128.68378906250004,0.438476562499986],[128.6916015625,0.360351562499972],[128.74326171875006,0.323242187500043],[128.81542968750003,0.305371093750054],[128.86328125000003,0.268359374999974],[128.89960937500004,0.216259765625011],[128.54042968750005,0.337890625000014],[128.4464843750001,0.391552734375026],[128.33281250000002,0.397949218749986],[128.22060546874997,0.414257812500026],[128.10605468750012,0.460888671875026],[127.98310546875008,0.471875],[127.92441406250006,0.438085937499991],[127.90136718749997,0.372265625],[127.88740234375004,0.298339843750043],[127.91464843750012,0.206298828125028],[127.91220703125008,0.150537109375037],[127.88896484375002,0.049511718749969],[127.97783203125002,-0.24833984374996],[128.08945312500012,-0.485253906249994],[128.25351562500012,-0.731640625000011],[128.33457031250012,-0.816308593750023],[128.42548828125007,-0.892675781249949],[128.278125,-0.870019531249952],[128.23339843750003,-0.787695312499977],[128.04638671875003,-0.706054687499943],[128.01083984375006,-0.657324218749963],[127.88896484375002,-0.42353515625004],[127.8533203125,-0.379882812500028],[127.7408203125001,-0.30039062499999],[127.69160156250004,-0.241894531249983],[127.67480468749997,-0.16289062499996],[127.68740234375,-0.07993164062502],[127.68134765625008,0.034863281250011],[127.68544921875004,0.149023437499991],[127.70869140625004,0.288085937499986],[127.66865234375011,0.336767578124963],[127.61621093749996,0.382910156250034],[127.5553710937501,0.489648437500023],[127.53710937500004,0.610888671875031],[127.54179687500006,0.680664062500028],[127.56699218750005,0.74252929687502],[127.60068359375006,0.796044921875009],[127.60800781250005,0.848242187499977],[127.52041015624998,0.924023437500054],[127.42851562500002,1.139990234374991],[127.4203125,1.251953124999986],[127.53710937500004,1.467480468750011],[127.53466796874997,1.572070312500003],[127.55791015625007,1.634228515624969],[127.570703125,1.700146484374983],[127.63173828124998,1.843701171875011],[127.73144531249996,1.966113281249989],[127.89990234375001,2.137353515624966],[127.96425781249998,2.174707031250037],[128.03642578125002,2.199023437500017],[128.04277343750002,2.157080078124991],[128.03125,2.119873046875056],[127.90673828124997,1.945654296874991],[127.89013671874997,1.906298828124974],[127.88681640625012,1.83295898437504],[127.94648437500008,1.789648437500006],[128.0109375000001,1.701220703125031],[128.02373046875002,1.583496093750028],[128.02587890625003,1.458105468749963],[128.01171874999997,1.331738281249983],[127.98769531250005,1.289599609375017],[127.88535156250006,1.162792968750026],[127.65283203124996,1.013867187499969],[127.6330078125001,0.977197265625051],[127.63437500000012,0.936132812500034],[127.67744140625008,0.886572265624977],[127.73271484375007,0.848144531250043]]],[[[97.33417968750008,2.075634765625011],[97.32832031250004,2.053271484374989],[97.22509765624997,2.158496093750017],[97.10830078125,2.216894531250006],[97.15664062500005,2.232226562500031],[97.25283203125005,2.216015625000011],[97.29140625,2.200830078125023],[97.3287109375001,2.148535156250034],[97.33417968750008,2.075634765625011]]],[[[128.45390625000002,2.051757812500028],[128.29589843749997,2.034716796875017],[128.2599609375001,2.082519531249986],[128.2179687500001,2.297460937499991],[128.33037109375007,2.46933593750002],[128.4720703125,2.570507812500025],[128.56865234375002,2.59609375],[128.60214843750012,2.59760742187504],[128.68847656250003,2.473681640625017],[128.62324218750004,2.224414062500031],[128.5475585937501,2.097070312500023],[128.45390625000002,2.051757812500028]]],[[[125.4074218750001,2.651611328125028],[125.39726562500007,2.629541015624966],[125.36005859375003,2.746826171874971],[125.3908203125001,2.805371093749997],[125.43525390625008,2.783886718749969],[125.44648437500004,2.762988281249974],[125.40390625000013,2.707031250000028],[125.4074218750001,2.651611328125028]]],[[[96.46367187500002,2.360009765625037],[96.40097656250012,2.350683593750006],[96.340625,2.3720703125],[96.2904296875,2.429589843749994],[96.02197265624997,2.595751953125017],[95.93847656249997,2.598437500000031],[95.87978515625,2.640917968749974],[95.80859374999996,2.655615234375034],[95.73300781250012,2.76650390624998],[95.7171875,2.825976562500017],[95.7721679687501,2.854980468749972],[95.80625000000012,2.916015624999972],[95.89580078125006,2.8890625],[95.99785156250007,2.781396484374994],[96.10156249999997,2.741210937499986],[96.12978515625005,2.720898437500011],[96.17998046875002,2.661328125000054],[96.41728515625006,2.515185546875031],[96.4430664062501,2.465625],[96.459375,2.415820312500031],[96.46367187500002,2.360009765625037]]],[[[108.8875,2.905419921875037],[108.83886718749997,2.853027343750028],[108.7865234375,2.885644531250009],[108.86708984375005,2.991894531249983],[108.88574218750003,2.998974609374997],[108.8875,2.905419921875037]]],[[[105.76035156250006,2.863037109375014],[105.71855468750007,2.859179687500031],[105.70615234375012,2.88886718750004],[105.70791015625,2.940087890624994],[105.70419921875005,2.980908203125054],[105.69218750000002,3.011328125000034],[105.69218750000002,3.0625],[105.73066406250004,3.03696289062502],[105.76035156250006,3.01303710937502],[105.79453125000006,2.995947265625006],[105.82216796875005,2.984375],[105.83671875000006,2.97651367187504],[105.809375,2.903955078125009],[105.76035156250006,2.863037109375014]]],[[[106.28525390625006,3.15712890624998],[106.28369140624997,3.088232421874977],[106.21455078125004,3.128564453125023],[106.20097656250002,3.204882812500031],[106.22373046875012,3.229589843750006],[106.27119140625004,3.216308593750042],[106.28525390625006,3.15712890624998]]],[[[117.65839843750004,3.280517578124986],[117.64580078125007,3.247753906249969],[117.56035156250007,3.328222656250019],[117.5375,3.386376953124966],[117.54785156250001,3.431982421875019],[117.63671874999997,3.436083984374974],[117.68085937500004,3.407519531250017],[117.65839843750004,3.280517578124986]]],[[[125.65810546875,3.436035156250042],[125.63320312499998,3.405419921875022],[125.51152343750007,3.461132812500011],[125.51757812499996,3.549609375],[125.50117187500008,3.593212890625011],[125.4685546875,3.639111328125026],[125.4552734375001,3.684179687499977],[125.46884765625005,3.733251953125019],[125.54345703125001,3.670410156250014],[125.58564453125008,3.571093750000031],[125.64355468749997,3.47651367187504],[125.65810546875,3.436035156250042]]],[[[126.85185546875002,3.768457031250008],[126.83554687500005,3.756933593749963],[126.79960937500002,3.783886718750039],[126.7775390625001,3.813427734375011],[126.77890625000006,3.843164062500037],[126.80449218750007,3.857910156250014],[126.8570312500001,3.81240234374998],[126.8578125,3.787207031250005],[126.85185546875002,3.768457031250008]]],[[[126.7193359375001,3.874658203124965],[126.72177734375005,3.83251953125],[126.6612304687501,3.928417968749997],[126.6375,4.041943359375026],[126.68554687499999,4.00141601562504],[126.73964843749998,3.917724609375043],[126.7193359375001,3.874658203124965]]],[[[117.88476562499997,4.186132812500006],[117.91787109375,4.090527343749983],[117.92285156250001,4.054296874999977],[117.73681640624997,4.004003906250034],[117.62509765625012,4.12148437499998],[117.64902343750012,4.168994140624974],[117.74541015625,4.166943359375011],[117.88476562499997,4.186132812500006]]],[[[108.31601562500006,3.689648437500026],[108.17958984375004,3.653076171875028],[108.10039062500002,3.70454101562504],[108.18613281250006,3.76796875],[108.21640625000012,3.772167968750054],[108.23613281250002,3.784570312499994],[108.24326171875006,3.810351562500017],[108.08847656250006,3.852099609374989],[108.04453125000006,3.888964843750045],[108.00234375,3.982861328124983],[108.00351562500005,4.042578124999977],[108.20195312500007,4.200488281250003],[108.24833984375002,4.21713867187502],[108.2555664062501,4.151757812500023],[108.39287109375007,3.986181640625034],[108.39882812500004,3.875976562499971],[108.39355468750003,3.836181640625028],[108.31601562500006,3.689648437500026]]],[[[116.553125,4.359863281250057],[116.5890625000001,4.338427734375031],[116.63867187499996,4.339111328125],[116.69785156250006,4.354980468750028],[116.84355468750006,4.340136718750031],[117.10058593750003,4.337060546875023],[117.27753906250008,4.299316406249972],[117.45087890625003,4.192871093750043],[117.53730468750008,4.171386718750028],[117.5744140625001,4.17060546875004],[117.5662109375,4.16230468750004],[117.49746093750004,4.133398437500006],[117.46533203124997,4.076074218749966],[117.559375,3.988330078125031],[117.56601562500006,3.929931640625043],[117.63906250000005,3.877978515625017],[117.7282226562501,3.796728515624991],[117.73173828125002,3.770263671875014],[117.76201171875,3.733886718749971],[117.77724609375005,3.689257812500031],[117.71445312500013,3.644824218750045],[117.62988281250001,3.63632812499999],[117.56738281249996,3.678271484375017],[117.50966796875005,3.730371093749966],[117.49492187500006,3.665576171875003],[117.45039062500004,3.628515625],[117.28789062500007,3.63930664062498],[117.1715820312501,3.638964843750003],[117.05595703125007,3.622656249999963],[117.11386718750005,3.612646484374963],[117.16640625,3.591992187500025],[117.34628906250008,3.426611328124991],[117.38466796875,3.365380859375037],[117.321875,3.243554687500009],[117.35244140625,3.19375],[117.42207031250004,3.165185546875023],[117.50683593750004,3.10458984375002],[117.56718750000002,3.09848632812502],[117.61064453125002,3.064355468749994],[117.61240234375012,3.004882812500057],[117.63789062500005,2.950830078124966],[117.569140625,2.92929687500002],[117.63720703125003,2.914941406250023],[117.69765625,2.887304687499991],[117.66455078124996,2.859277343749965],[117.6388671875001,2.825292968749963],[117.66679687500002,2.80693359374996],[117.74970703125008,2.775585937499969],[117.7859375,2.746777343750054],[117.80488281250004,2.6689453125],[117.88574218750003,2.541748046875028],[118.03417968749997,2.377636718749983],[118.0666015625001,2.317822265624969],[118.06630859375005,2.262744140625031],[118.04160156250005,2.215429687499977],[117.95703124999997,2.15996093749996],[117.88925781250013,2.08701171875002],[117.88105468750004,2.060644531249977],[117.78925781250008,2.026855468750014],[117.83125,2.002001953125017],[117.86464843749998,1.968408203125009],[117.9284179687501,1.866796875],[118.08037109375007,1.701855468749983],[118.15683593750005,1.640332031249969],[118.47167968750003,1.416455078125011],[118.63896484375006,1.318994140625051],[118.85253906249996,1.09584960937498],[118.9634765625001,1.044287109375034],[118.98496093750006,0.982128906249983],[118.8923828125,0.886865234375037],[118.75742187500005,0.839208984375006],[118.53476562500005,0.813525390625017],[118.31152343749996,0.847070312500009],[118.19609375,0.874365234374977],[118.09550781250002,0.929150390625025],[118.01630859375004,1.039160156249977],[117.91162109374997,1.098681640625017],[117.95195312500002,1.031982421875014],[117.97734375000002,0.963818359374983],[117.96425781250005,0.889550781250051],[117.92304687500003,0.831347656250003],[117.85253906250001,0.788671875],[117.77695312500006,0.754003906249963],[117.74511718749996,0.72963867187498],[117.55332031250006,0.341015625000026],[117.52216796875004,0.235888671875017],[117.46376953125004,-0.200488281249974],[117.46289062500003,-0.323730468749957],[117.54892578125006,-0.554394531249955],[117.55683593750004,-0.675292968749986],[117.57382812500006,-0.727539062499972],[117.5625,-0.770898437500009],[117.52177734375002,-0.796679687500031],[117.35712890625004,-0.8671875],[117.24072265624997,-0.925683593750023],[117.14648437499997,-1.008984375000026],[117.07021484375004,-1.112695312500009],[117.00322265625007,-1.187695312500011],[116.91396484375,-1.223632812499972],[116.84941406250002,-1.218261718750028],[116.79707031250008,-1.183789062500025],[116.76054687500002,-1.117187499999957],[116.73984375000006,-1.044238281250017],[116.72617187500012,-1.098144531249986],[116.72871093750004,-1.150781249999952],[116.75927734375003,-1.207128906249977],[116.77099609375003,-1.266601562500014],[116.75341796874997,-1.327343749999955],[116.71523437500004,-1.37578125],[116.61162109375007,-1.42861328124998],[116.55449218750006,-1.473925781249974],[116.54511718750008,-1.553125],[116.51757812499996,-1.598046875000037],[116.47792968749998,-1.632812500000014],[116.33212890625005,-1.7125],[116.29960937500002,-1.744335937499997],[116.27548828125005,-1.784863281249997],[116.35322265625008,-1.77861328124996],[116.42431640625003,-1.784863281249997],[116.42958984375,-1.86416015624998],[116.45195312500002,-1.923144531250017],[116.42353515625003,-2.052539062499989],[116.31396484374997,-2.139843750000011],[116.36865234375003,-2.158203125000028],[116.41816406250008,-2.186718749999969],[116.528125,-2.207910156250023],[116.56542968749996,-2.299707031249994],[116.54921875000005,-2.410839843749983],[116.52929687499997,-2.51054687499996],[116.45039062500008,-2.538281250000011],[116.40126953125,-2.519824218749974],[116.35253906250004,-2.521582031249977],[116.31679687500005,-2.55185546875002],[116.30722656250006,-2.603320312500031],[116.37548828125001,-2.578027343750023],[116.3716796875001,-2.706835937499974],[116.35322265625008,-2.83271484375004],[116.3306640625001,-2.902148437499974],[116.28886718750002,-2.958789062499974],[116.22578125000005,-2.976953125000023],[116.16630859375002,-2.934570312500014],[116.1541015625,-2.983789062499994],[116.17226562499998,-3.025292968750022],[116.2572265625,-3.126367187500009],[116.20507812500001,-3.148535156249991],[116.16708984375005,-3.183007812499994],[116.15,-3.233203125],[116.05751953125,-3.348242187499991],[116.0166992187501,-3.4328125],[115.99941406250004,-3.523339843749966],[115.9561523437501,-3.595019531250003],[115.258203125,-3.90683593750002],[114.6935546875001,-4.169726562500017],[114.6525390625001,-4.151855468750028],[114.62529296875002,-4.111718750000023],[114.60595703125003,-3.70332031250004],[114.53613281249997,-3.494433593750031],[114.5255859375001,-3.376660156250011],[114.44599609375004,-3.481835937500037],[114.39716796875004,-3.47119140625],[114.34433593750012,-3.444433593749963],[114.30458984375,-3.41005859374998],[114.30166015625,-3.364746093749986],[114.34433593750012,-3.23515625],[114.29267578125003,-3.30625],[114.23632812500003,-3.36113281249996],[114.17792968750004,-3.354394531250009],[114.1276367187501,-3.327246093749977],[114.10898437500012,-3.285156250000028],[114.08222656250008,-3.27890625],[113.95878906250006,-3.394335937499974],[113.79580078125,-3.45625],[113.70507812499997,-3.45527343750004],[113.63359375000007,-3.419921874999943],[113.63730468750012,-3.332031249999985],[113.63007812500004,-3.246093749999972],[113.61005859375008,-3.195703125],[113.56630859375005,-3.177734374999986],[113.52597656250006,-3.184082031249943],[113.40898437500007,-3.228906250000023],[113.36718749999997,-3.223632812500014],[113.34316406250005,-3.246484374999966],[113.033984375,-2.933496093749966],[112.97148437500002,-3.187109375000034],[112.75800781250004,-3.322167968750009],[112.60029296875004,-3.400488281249977],[112.4439453125001,-3.371093749999943],[112.28496093750002,-3.32099609375004],[112.12666015625004,-3.381445312500006],[111.95488281250002,-3.5296875],[111.90742187500004,-3.55253906249996],[111.85810546875004,-3.551855468750006],[111.82207031250007,-3.532519531249974],[111.834375,-3.420117187499983],[111.83593750000003,-3.307714843750006],[111.82304687500007,-3.057226562499949],[111.809375,-3.008007812499954],[111.76015625000005,-2.939160156249969],[111.69472656250005,-2.88945312499996],[111.65830078125006,-2.92578125],[111.62548828124997,-2.975488281249994],[111.494921875,-2.973339843749997],[111.367578125,-2.933691406250006],[111.25917968750005,-2.956445312500023],[111.04433593750005,-3.055761718750006],[110.93007812500005,-3.071093750000017],[110.86875,-3.048730468749994],[110.82968750000012,-2.9951171875],[110.85205078124996,-2.94619140624998],[110.89931640624998,-2.908593749999952],[110.81113281250006,-2.9384765625],[110.73583984375003,-2.988671875000022],[110.703125,-3.020898437500009],[110.66816406250008,-3.004785156250009],[110.57402343750007,-2.89140625],[110.37753906250012,-2.933789062500025],[110.35097656250005,-2.946777343750014],[110.3025390625,-2.985351562499957],[110.25605468750004,-2.966113281249946],[110.23261718750008,-2.925097656250031],[110.22431640625004,-2.688671875000011],[110.12441406250005,-2.233886718749986],[110.09658203125,-2.001367187499966],[110.075,-1.946386718749949],[109.95986328125,-1.862792968749971],[109.96376953125,-1.742871093749969],[110.02343749999997,-1.642578124999957],[110.03613281250003,-1.525683593749946],[110.01923828125004,-1.398828124999952],[109.98330078124998,-1.274804687499994],[109.93808593750012,-1.181152343750014],[109.8734375,-1.101074218749957],[109.78740234375007,-1.011328124999963],[109.6817382812501,-0.94423828124998],[109.45380859375004,-0.86875],[109.33349609375003,-0.87539062499998],[109.28886718750002,-0.845800781249991],[109.25878906250003,-0.807421874999989],[109.27099609375001,-0.73203125],[109.31171875000004,-0.68017578125],[109.36630859375005,-0.66738281249998],[109.37275390625004,-0.638183593749972],[109.2570312500001,-0.577441406249946],[109.160546875,-0.494921875000017],[109.13027343750004,-0.445410156249963],[109.12109375000003,-0.39091796874996],[109.1217773437501,-0.26503906249998],[109.14960937500004,-0.185546874999957],[109.16474609375003,-0.14248046874998],[109.19462890625007,-0.009423828124952],[109.2575195312501,0.031152343750051],[109.24726562500004,0.055761718750006],[109.22021484374997,0.073828125000034],[109.18076171875012,0.11748046874996],[109.14853515625012,0.167675781249969],[109.07480468750012,0.252832031250009],[108.94453125000004,0.355664062499997],[108.92275390625005,0.53281250000002],[108.90585937500006,0.793945312500014],[108.91679687500006,0.912646484375045],[108.95859375000006,1.134619140624963],[109.03085937500012,1.204492187499994],[109.08847656250012,1.223925781250045],[109.1315429687501,1.253857421875011],[109.09609375,1.258154296875006],[109.06542968749997,1.247167968749977],[109.01025390624997,1.239648437500051],[109.05546875000007,1.438476562500057],[109.07587890625003,1.495898437500031],[109.1666992187501,1.607080078125037],[109.2731445312501,1.70546875],[109.3181640625,1.821093750000017],[109.37851562500006,1.922705078125034],[109.62890625000003,2.027539062499983],[109.53896484375,1.89619140625004],[109.54892578125005,1.848339843749983],[109.57080078124997,1.806298828125023],[109.63583984375006,1.776660156250031],[109.65400390625004,1.614892578125023],[109.7357421875,1.522949218750028],[109.8180664062501,1.438964843749971],[109.87851562500006,1.397851562500037],[109.94492187500005,1.338037109375023],[109.99169921875003,1.282568359375006],[110.04082031250006,1.235742187499966],[110.11474609375003,1.190136718749997],[110.315234375,0.995996093749966],[110.39902343750006,0.9390625],[110.46142578124997,0.882080078125028],[110.50576171875004,0.861962890625023],[110.61474609375003,0.878125],[110.93808593750006,1.017333984375057],[110.99609375000001,1.026367187500028],[111.10136718750002,1.050537109374986],[111.28671875000006,1.043212890625],[111.48320312500002,0.995751953125008],[111.54667968750006,0.994335937499983],[111.60742187500003,1.02260742187498],[111.69130859375005,1.014208984375045],[111.76972656250004,0.999462890624969],[111.80898437500005,1.011669921874969],[111.92314453125002,1.113281249999972],[112.078515625,1.143359374999974],[112.12861328125003,1.243603515624969],[112.16738281250004,1.33818359374996],[112.1857421875001,1.4390625],[112.25068359375004,1.479638671875009],[112.34160156250002,1.514746093749963],[112.47617187500005,1.559082031250028],[112.94296875000006,1.566992187500034],[112.98828124999997,1.547558593749983],[112.99804687500001,1.496240234375009],[112.98828124999997,1.457128906250034],[113.00654296875003,1.433886718750003],[113.06865234375002,1.431787109375023],[113.12626953125,1.408105468749994],[113.35898437500005,1.327148437500028],[113.45820312500004,1.302148437499994],[113.51318359374997,1.308398437500017],[113.6222656250001,1.2359375],[113.68164062500001,1.260595703124963],[113.76035156250006,1.311376953125006],[113.83525390625002,1.379882812500014],[113.90234375000003,1.434277343749997],[114,1.455273437500011],[114.12597656250003,1.45234375000004],[114.27470703125002,1.470898437499997],[114.387109375,1.500048828124989],[114.5125,1.452001953124963],[114.54589843750003,1.467138671875034],[114.56748046875006,1.514160156250014],[114.63222656250004,1.61704101562502],[114.66093750000002,1.686279296875],[114.6861328125001,1.819042968750054],[114.70351562499998,1.850781250000026],[114.75107421875006,1.868994140625006],[114.8,1.893945312500037],[114.81269531250003,1.933789062499983],[114.83056640625001,1.980029296874989],[114.81582031250005,2.018945312500009],[114.78798828125001,2.051611328125006],[114.75869140625007,2.162402343750017],[114.76835937500007,2.212939453125003],[114.78642578125002,2.250488281250014],[114.83632812500004,2.269384765625048],[114.969140625,2.350830078125028],[115.08652343750006,2.446142578124991],[115.15078125,2.492919921875028],[115.1791015625,2.523193359374972],[115.18085937500008,2.56689453125],[115.12988281249997,2.612402343750034],[115.08076171875004,2.63422851562504],[115.07705078124998,2.687011718750043],[115.07890625,2.7234375],[115.09365234375,2.757812499999986],[115.08652343750006,2.79121093750004],[115.086328125,2.841113281249989],[115.117578125,2.89487304687502],[115.18994140624996,2.974462890624977],[115.24697265625005,3.025927734374989],[115.31015625000013,2.993945312500045],[115.38417968749998,3.00874023437504],[115.45439453125002,3.034326171875008],[115.49316406250001,3.128125],[115.49912109375005,3.17314453124996],[115.48974609375003,3.208642578124994],[115.51425781250005,3.342382812499977],[115.51992187500004,3.361669921874991],[115.56611328125004,3.445751953124983],[115.57070312499998,3.502294921875048],[115.54453125000006,3.633691406249994],[115.56093750000004,3.73305664062498],[115.56845703125006,3.938769531249974],[115.59609375000004,3.975537109374997],[115.6275390625001,4.081982421875011],[115.67880859375006,4.193017578124994],[115.78242187500004,4.25375976562502],[115.83681640625007,4.333300781249974],[115.86074218750005,4.348046875000037],[115.89619140625003,4.348681640624989],[116.02158203125012,4.290673828124994],[116.13447265625003,4.355175781249983],[116.23623046875004,4.362548828124971],[116.32031249999996,4.35371093750004],[116.36767578125003,4.32734375],[116.41455078124996,4.308203125],[116.51474609375006,4.370800781249969],[116.553125,4.359863281250057]]],[[[126.81660156250004,4.033496093750003],[126.77626953124998,4.012597656250009],[126.71123046875007,4.020263671875057],[126.70449218750004,4.070996093749997],[126.77011718750006,4.16220703125002],[126.81357421875006,4.258496093750011],[126.76728515625004,4.28256835937502],[126.72207031250005,4.344189453124969],[126.72050781250002,4.415820312499989],[126.75732421874997,4.547900390624989],[126.8125,4.537207031250034],[126.86513671874998,4.479833984374977],[126.88671875000003,4.372509765625054],[126.9210937500001,4.291015624999972],[126.84765624999999,4.179980468750003],[126.81660156250004,4.033496093750003]]],[[[96.49257812500004,5.229345703124991],[96.61523437499997,5.220214843749999],[96.84267578125005,5.274462890625045],[96.96777343750003,5.26914062500002],[97.0857421875,5.229931640625026],[97.19042968750003,5.207324218750045],[97.45117187500003,5.236035156250026],[97.50019531250003,5.22832031249996],[97.54716796875002,5.205859375],[97.5875,5.170361328124969],[97.70673828125004,5.040136718749991],[97.9083984375001,4.879980468749963],[97.9666015625,4.77749023437505],[97.99980468750007,4.662255859375023],[98.02070312500004,4.635205078125011],[98.2484375,4.414550781249999],[98.27333984375,4.322314453125045],[98.24121093750003,4.194531250000025],[98.30732421875008,4.09287109375002],[98.52832031249997,3.997558593750043],[98.65869140624997,3.928125],[98.68652343749996,3.88554687499996],[98.7057617187501,3.834765625000017],[98.77792968750005,3.759423828125022],[98.86865234374997,3.71035156249998],[99.15117187500007,3.58125],[99.52148437500003,3.311181640625009],[99.73232421875005,3.183056640625026],[99.90664062500005,2.988183593750023],[99.96943359375003,2.894921875000037],[100.02128906250002,2.794238281250031],[100.12724609375002,2.647607421875009],[100.30722656250012,2.466601562499989],[100.35273437500003,2.411474609375034],[100.40117187500007,2.331640625000034],[100.45703124999997,2.257421875],[100.523828125,2.18916015625004],[100.60361328125012,2.136962890624986],[100.68525390625004,2.120068359374997],[100.81679687499998,1.9892578125],[100.88789062500004,1.948242187499986],[100.87666015625004,2.050585937499974],[100.81689453125003,2.140185546875017],[100.81777343750005,2.194238281250009],[100.82822265625012,2.242578125],[100.87705078125012,2.283300781250034],[100.93593750000005,2.294726562499974],[101.04619140625002,2.257470703125023],[101.22519531250005,2.102246093750011],[101.30078125000003,2.011816406249977],[101.35761718750003,1.887011718750045],[101.40507812500007,1.75742187500002],[101.47666015625006,1.693066406250054],[101.575,1.670556640624994],[101.6842773437501,1.661230468749963],[101.78476562500012,1.621386718750017],[102.019921875,1.442138671875],[102.098046875,1.357910156249986],[102.15722656249997,1.258886718749977],[102.19794921875008,1.141699218749991],[102.22333984375004,1.01870117187498],[102.2390625,0.990332031249977],[102.38994140625007,0.84199218750004],[102.46923828124996,0.779296875000057],[102.56640625000003,0.748828124999974],[102.84941406250002,0.715478515625023],[102.94931640625006,0.664208984374966],[103.03183593750006,0.57890625],[103.06650390625012,0.49199218749996],[103.00751953125008,0.415332031249974],[102.78632812500008,0.297753906250009],[102.55,0.216455078124966],[102.77958984375002,0.244482421874991],[102.8958984375,0.278613281250017],[103.00283203125005,0.331982421875054],[103.10869140625002,0.399804687500009],[103.27656250000004,0.494531250000037],[103.3389648437501,0.513720703125045],[103.41230468750004,0.506933593749991],[103.47890625000005,0.48017578125004],[103.57871093750012,0.387060546874991],[103.67265625000006,0.288916015624977],[103.74277343750006,0.17441406250002],[103.78671875000012,0.046972656249991],[103.70644531250005,-0.019580078124989],[103.58945312500005,-0.06875],[103.42851562500007,-0.19179687499998],[103.41162109375001,-0.24042968750004],[103.44443359375012,-0.271679687500011],[103.40517578125005,-0.36220703124998],[103.49541015625,-0.418066406249991],[103.5091796875,-0.465527343749969],[103.43115234374997,-0.53359375],[103.43857421875005,-0.575585937500009],[103.53271484374997,-0.7546875],[103.57753906250005,-0.795703125],[103.72109375,-0.886718749999986],[103.9400390625001,-0.979101562499977],[104.06113281250006,-1.02138671874998],[104.19853515625002,-1.05429687500002],[104.25751953125004,-1.053417968750011],[104.36054687500004,-1.038378906249974],[104.38125,-1.074218749999986],[104.42568359375,-1.250683593749969],[104.446875,-1.362402343749991],[104.47832031250007,-1.600097656250014],[104.51855468750003,-1.698730468749943],[104.51591796875002,-1.81943359375002],[104.56875,-1.921777343749994],[104.6763671875001,-1.987207031250008],[104.79101562500003,-2.040820312500003],[104.84521484375003,-2.092968749999969],[104.84453125000006,-2.171777343750037],[104.82607421875004,-2.23417968749996],[104.78730468750003,-2.282714843749986],[104.66845703124996,-2.385546874999974],[104.64726562500002,-2.42988281250004],[104.6305664062501,-2.54335937499998],[104.65078125000005,-2.595214843749972],[104.69833984375006,-2.598144531249943],[104.73574218750005,-2.570898437499991],[104.87841796874996,-2.418847656250009],[104.91699218750003,-2.3921875],[104.97080078125012,-2.370898437500017],[105.02587890624997,-2.357519531249949],[105.28652343750005,-2.35625],[105.39697265624997,-2.380175781249946],[105.49531250000004,-2.4296875],[105.58203124999997,-2.491992187499989],[105.8991210937501,-2.887792968749977],[106.0443359375,-3.10625],[106.05576171875012,-3.160644531249971],[106.0583984375,-3.217187500000037],[106.03369140624997,-3.260937499999968],[105.90146484375012,-3.41005859374998],[105.88505859375007,-3.45126953125002],[105.84375,-3.61367187499998],[105.85156249999996,-3.730566406249992],[105.89550781249997,-3.779687499999966],[105.93046875000006,-3.833007812499986],[105.92773437500003,-3.881347656249985],[105.840625,-4.121777343750026],[105.83144531250005,-4.16289062499996],[105.88652343750007,-4.55390625000004],[105.89052734374998,-4.65976562500002],[105.87929687500005,-4.79365234375004],[105.88720703124997,-5.009570312499974],[105.81611328125003,-5.6765625],[105.80273437499997,-5.71640625],[105.74833984375007,-5.818261718749966],[105.67656250000002,-5.817578125],[105.61855468749998,-5.799609374999988],[105.57792968750002,-5.760644531250037],[105.55556640625,-5.712304687499966],[105.52265625000004,-5.67275390624998],[105.34941406250007,-5.549511718750011],[105.30400390625006,-5.57001953125001],[105.128125,-5.722851562499983],[105.08134765625002,-5.74550781249998],[105.02265625000003,-5.726855468749988],[104.93027343750006,-5.681152343750013],[104.63955078125005,-5.520410156250037],[104.62167968750006,-5.571777343750014],[104.61816406249997,-5.641503906250009],[104.6759765625001,-5.816210937499989],[104.68398437500005,-5.892675781250019],[104.6310546875001,-5.907910156250026],[104.60156249999996,-5.90458984374996],[104.48085937500005,-5.803125],[104.36953125000005,-5.690722656250003],[104.24296875000002,-5.538867187499974],[104.15048828125006,-5.466601562500002],[104.06679687499998,-5.3859375],[103.83144531249998,-5.079589843750028],[103.77031250000007,-5.0328125],[103.40566406250005,-4.816406249999956],[103.33212890625006,-4.76523437500002],[103.23886718750006,-4.67568359374998],[103.13867187499996,-4.596191406249957],[102.91894531249997,-4.470703124999972],[102.53769531250006,-4.152148437499989],[102.37197265625005,-3.969238281249943],[102.18769531250003,-3.674511718750026],[102.12753906250006,-3.599218749999963],[101.81787109375003,-3.37802734375002],[101.6490234375001,-3.244042968749994],[101.57861328124997,-3.166992187500014],[101.41425781250004,-2.898828125],[101.36621093750003,-2.808496093749994],[101.30566406249997,-2.728710937499997],[101.20625,-2.663964843750037],[101.11855468750005,-2.587792968749966],[100.94443359375006,-2.345214843750028],[100.88955078125,-2.248535156249957],[100.848046875,-2.143945312499966],[100.85527343750002,-1.934179687499949],[100.48652343750004,-1.299121093749974],[100.3939453125,-1.101269531249997],[100.30820312500006,-0.82666015625],[100.28906249999997,-0.798828125000014],[100.08789062500003,-0.552929687500011],[100.01669921875005,-0.474218749999963],[99.93066406249997,-0.400195312499989],[99.86005859375004,-0.31376953124996],[99.72128906250012,-0.032958984374957],[99.66982421875005,0.045068359375037],[99.59765624999996,0.102441406250009],[99.33457031250012,0.208593749999963],[99.23642578125012,0.267773437500026],[99.15917968749997,0.351757812499997],[99.11171875,0.458935546874983],[99.05957031249997,0.686376953125048],[98.93554687500001,1.031933593750011],[98.79638671874996,1.494628906250043],[98.70253906250005,1.701953125],[98.59531250000006,1.864599609375005],[98.56425781250002,1.902148437500017],[98.08652343750006,2.195068359375],[98.00507812500004,2.238183593749994],[97.9185546875001,2.264208984374974],[97.79501953125006,2.282861328125037],[97.70078125000006,2.358544921875009],[97.66201171874998,2.494287109375037],[97.640625,2.676416015625009],[97.61679687500012,2.78510742187504],[97.59082031249997,2.846582031250037],[97.39130859375008,2.975292968749969],[97.31318359375004,3.077050781250009],[97.24794921875,3.189013671874989],[97.18837890625005,3.275732421874991],[96.9689453125001,3.575146484374969],[96.89394531249998,3.65371093749998],[96.8009765625001,3.70854492187496],[96.52539062499997,3.766601562499986],[96.44472656250005,3.81630859374998],[96.31083984375006,3.986328124999986],[96.2300781250001,4.07275390625],[95.9879882812501,4.26328125],[95.57861328125003,4.661962890625048],[95.49472656250006,4.761376953125051],[95.43193359375007,4.865039062500031],[95.38125,4.97617187500002],[95.20664062500005,5.284033203125034],[95.22070312500003,5.346240234375003],[95.24707031249997,5.410791015625008],[95.24296875,5.464306640624997],[95.22382812500004,5.51708984375],[95.22783203125002,5.564794921875034],[95.27958984375,5.592871093749977],[95.39609375000012,5.628808593750023],[95.51699218750005,5.624609374999963],[95.62890625000003,5.609082031249997],[95.73730468750003,5.579296874999969],[95.84130859374997,5.514501953125006],[96.02734375000001,5.351171875000033],[96.13330078125003,5.294287109374991],[96.25087890625,5.266992187500023],[96.49257812500004,5.229345703124991]]],[[[95.362109375,5.812402343750036],[95.34257812500007,5.78413085937504],[95.28320312500001,5.798535156250053],[95.21767578125,5.88950195312502],[95.24199218750007,5.907031250000031],[95.28251953125007,5.897753906250017],[95.35917968750007,5.876757812500003],[95.36601562500002,5.84267578124998],[95.362109375,5.812402343750036]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"India","sov_a3":"IND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"India","adm0_a3":"IND","geou_dif":0,"geounit":"India","gu_a3":"IND","su_dif":0,"subunit":"India","su_a3":"IND","brk_diff":0,"name":"India","name_long":"India","brk_a3":"IND","brk_name":"India","brk_group":null,"abbrev":"India","postal":"IND","formal_en":"Republic of India","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"India","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":2,"mapcolor13":2,"pop_est":1166079220,"gdp_md_est":3297000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"IN","iso_a3":"IND","iso_n3":"356","un_a3":"356","wb_a2":"IN","wb_a3":"IND","woe_id":-99,"adm0_a3_is":"IND","adm0_a3_us":"IND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"IND.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[93.8900390625,6.831054687499986],[93.82880859375003,6.748681640624994],[93.70927734375002,7.000683593749997],[93.65800781250007,7.016064453125026],[93.65634765625005,7.136230468749985],[93.68417968750006,7.183593750000042],[93.8224609375001,7.236621093750018],[93.85898437500006,7.206835937499989],[93.92958984375005,6.973486328124963],[93.8900390625,6.831054687499986]]],[[[93.7335937500001,7.356494140625017],[93.63847656250007,7.261865234375008],[93.59726562500012,7.31875],[93.61425781250003,7.358105468749982],[93.6546875,7.379931640624989],[93.69248046875006,7.410595703125026],[93.7335937500001,7.356494140625017]]],[[[93.44257812500004,7.877832031249994],[93.36503906250007,7.8765625],[93.34199218750004,7.919335937500008],[93.309375,7.964013671874965],[93.33447265624996,8.006933593750006],[93.37548828124997,8.01791992187502],[93.43369140625012,7.94838867187498],[93.4473632812501,7.899121093749982],[93.44257812500004,7.877832031249994]]],[[[93.53691406250007,8.056640625000014],[93.49003906250002,8.01943359374998],[93.47822265625004,8.024462890625031],[93.47177734375012,8.052685546874997],[93.46972656249996,8.07265625],[93.46123046875002,8.108593750000026],[93.45644531250005,8.171875],[93.49404296875005,8.224658203125045],[93.531640625,8.21376953125005],[93.51162109375,8.159765624999963],[93.53691406250007,8.056640625000014]]],[[[73.06738281249997,8.269091796875031],[73.05332031250006,8.256689453124991],[73.03886718750002,8.251953125000014],[73.02851562500004,8.253515624999975],[73.02343749999997,8.265917968750017],[73.0260742187501,8.275292968749964],[73.03896484375005,8.264843749999969],[73.05585937500004,8.274560546874994],[73.07519531249997,8.306347656249983],[73.07949218750005,8.31650390625002],[73.08359375,8.311035156250057],[73.0797851562501,8.293066406250034],[73.06738281249997,8.269091796875031]]],[[[93.14072265625012,8.249511718750043],[93.17060546875004,8.212060546874966],[93.11523437499997,8.218505859375028],[93.06425781250007,8.274951171874989],[93.0775390625,8.327880859375028],[93.09697265625007,8.349365234375043],[93.14072265625012,8.249511718750043]]],[[[92.7875,9.13666992187504],[92.7435546875,9.130957031250034],[92.71660156250002,9.165087890624958],[92.71328125000005,9.204882812499989],[92.73857421875007,9.230664062499995],[92.76210937500005,9.243896484375028],[92.78574218750006,9.240527343749974],[92.8092773437501,9.173388671874974],[92.7875,9.13666992187504]]],[[[92.50283203125,10.55488281250004],[92.47265624999996,10.520751953125012],[92.36953125,10.547412109375031],[92.37714843750003,10.650585937499995],[92.35283203125007,10.751123046874966],[92.37070312500006,10.793505859374989],[92.44785156250005,10.865527343750003],[92.51035156250012,10.897460937500028],[92.55400390625,10.799804687500027],[92.57431640625006,10.704248046875009],[92.50283203125,10.55488281250004]]],[[[72.78037109375,11.20249023437499],[72.77304687500006,11.196093750000017],[72.77246093750003,11.214257812499994],[72.78183593750006,11.243310546875051],[72.79267578125004,11.262744140625017],[72.79589843749997,11.260449218749983],[72.79287109375,11.241552734375048],[72.78789062500007,11.215917968749977],[72.78037109375,11.20249023437499]]],[[[92.69316406250002,11.381152343749974],[92.64453124999996,11.361328125000028],[92.59570312499997,11.386425781249983],[92.63388671875005,11.426757812500028],[92.64023437500012,11.50913085937502],[92.69003906250012,11.463427734375045],[92.6872070312501,11.411230468749977],[92.69316406250002,11.381152343749974]]],[[[93.01738281250002,12.036816406249969],[93.06210937500006,11.899414062500043],[92.98173828125,11.959472656250028],[92.95537109375007,12.002441406249984],[92.99580078125004,12.031787109375017],[93.01738281250002,12.036816406249969]]],[[[92.71757812500002,12.864892578125009],[92.68574218750004,12.799951171875009],[92.67968749999997,12.939257812499974],[92.69443359375012,12.956787109374986],[92.71064453125004,12.96157226562498],[92.730859375,12.948535156249989],[92.71757812500002,12.864892578125009]]],[[[92.72275390625012,11.53608398437501],[92.70078125000005,11.512548828125006],[92.66835937500004,11.538720703125007],[92.5755859375,11.718212890624983],[92.55966796875012,11.833447265625011],[92.5338867187501,11.873388671874977],[92.56650390625006,11.930517578124991],[92.60751953125012,11.949511718750031],[92.63183593749997,12.013867187499995],[92.640625,12.112207031249966],[92.6764648437501,12.192382812500043],[92.69472656249998,12.214697265624977],[92.7692382812501,12.215576171874972],[92.78828125000004,12.225781250000011],[92.77763671875002,12.302539062500015],[92.73408203125004,12.335937499999986],[92.71894531250003,12.35732421874998],[92.72070312499996,12.54125976562497],[92.73203125000006,12.615625],[92.7591796875,12.669091796874994],[92.7400390625,12.779638671875048],[92.753125,12.82089843750002],[92.80703125000005,12.878906250000014],[92.830859375,13.002636718749997],[92.808984375,13.039599609374989],[92.86015625000006,13.230566406249991],[92.85732421875,13.358105468750038],[92.924609375,13.485839843750028],[93.02939453125006,13.543847656250037],[93.06230468750002,13.545458984375017],[93.06669921875002,13.436474609375011],[93.07666015625003,13.400683593750003],[93.016015625,13.336181640625014],[93.07382812500006,13.252099609375023],[93.0661132812501,13.221582031250023],[93.04296874999997,13.15488281250002],[93.00468750000002,13.08935546875],[92.95136718750004,13.0625],[92.90996093750007,12.975195312500006],[92.88623046875003,12.942285156249966],[92.9650390625001,12.850488281250009],[92.99023437499997,12.53852539062504],[92.93261718749997,12.45307617187504],[92.86367187500005,12.436035156250028],[92.87949218750006,12.227929687500009],[92.86718749999997,12.181445312500031],[92.79882812499997,12.079248046874994],[92.78623046875006,12.034667968749972],[92.74765625000006,11.992773437499963],[92.76396484375007,11.940429687500057],[92.79677734375,11.917529296875001],[92.79755859375008,11.87465820312498],[92.7669921875,11.764648437500028],[92.76464843749997,11.63916015625004],[92.72275390625012,11.53608398437501]]],[[[78.71972656250009,31.887646484374983],[78.71708984375013,31.891015625000136],[78.6583984375001,31.965332031249996],[78.71972656250009,31.887646484374983],[78.68701171874997,31.805517578124945],[78.69345703125006,31.740380859374994],[78.75390625000003,31.66835937500005],[78.80292968750004,31.618066406250108],[78.7550781250001,31.550292968749996],[78.72675781250015,31.471826171874994],[78.75859375000007,31.436572265625102],[78.74355468750005,31.32377929687502],[78.75781250000009,31.302490234374943],[78.79160156250006,31.293652343750093],[78.84453125000002,31.30151367187511],[78.89951171875018,31.33134765624996],[78.9459960937501,31.337207031250102],[78.97392578125007,31.32861328125011],[79.01113281250011,31.414111328124957],[79.04375,31.42622070312513],[79.10712890625004,31.402636718750102],[79.23261718749993,31.241748046875014],[79.33876953125016,31.105712890624996],[79.36123046875011,31.086962890625102],[79.36962890624997,31.07993164062509],[79.38847656250012,31.06420898437508],[79.49316406250007,30.993701171875102],[79.56542968750013,30.949072265625063],[79.66425781250004,30.96523437499999],[79.79462890625004,30.968261718750085],[79.871875,30.92460937500007],[79.91660156250012,30.89418945312508],[79.91855468750006,30.889892578125085],[79.92451171875004,30.88876953125003],[79.92460937500013,30.88876953125003],[80.08144531250011,30.78193359375012],[80.14941406250009,30.78984375],[80.19433593750003,30.759228515625125],[80.20712890625006,30.68374023437502],[80.18623046875014,30.605322265625034],[80.19121093750002,30.568408203124957],[80.2609375000001,30.561328124999964],[80.40957031250016,30.50947265625004],[80.54101562500014,30.463525390625108],[80.60888671875009,30.448876953125136],[80.68212890625009,30.414843749999957],[80.74677734375004,30.360400390625042],[80.87353515625003,30.290576171875042],[80.98544921875006,30.237109374999985],[81.01025390625014,30.164501953125097],[80.96611328125002,30.18002929687506],[80.90761718750005,30.171923828125017],[80.84814453125009,30.13974609375003],[80.81992187500012,30.119335937499955],[80.68408203125014,29.994335937500068],[80.61289062500018,29.955859375000042],[80.54902343750015,29.899804687499994],[80.40185546875001,29.730273437500102],[80.31689453125014,29.572070312500014],[80.25488281250007,29.423339843750114],[80.25595703125006,29.318017578125133],[80.23300781250006,29.194628906250045],[80.16953125000012,29.1243164062501],[80.13046875000006,29.100390625000042],[80.08457031249995,28.99418945312507],[80.05166015625,28.870312500000068],[80.07070312500005,28.830175781250063],[80.14960937500014,28.77607421875004],[80.22656250000003,28.723339843750125],[80.32480468750012,28.66640625000008],[80.41855468749995,28.61201171875001],[80.47910156250012,28.604882812499994],[80.49580078125015,28.635791015625074],[80.51787109375002,28.66518554687502],[80.58701171875006,28.64960937500004],[80.67128906250011,28.59624023437499],[80.72617187500016,28.553906250000068],[80.75078125000007,28.539697265625023],[80.89609375000018,28.468554687500102],[81.01660156250003,28.40957031249999],[81.16894531250014,28.33500976562507],[81.20625,28.289404296875006],[81.23896484375004,28.24086914062508],[81.31083984375,28.176367187500087],[81.48603515625008,28.062207031250097],[81.6355468749999,27.980468749999968],[81.75722656250011,27.913818359375057],[81.85263671875018,27.867089843750133],[81.89687500000011,27.874462890625036],[81.94521484375004,27.89926757812495],[81.98769531250016,27.913769531250036],[82.03701171875,27.90058593750004],[82.11191406250006,27.864941406250036],[82.28769531250016,27.756542968749983],[82.45136718750004,27.671826171874955],[82.62988281249997,27.687060546875042],[82.67734375000006,27.67343749999995],[82.71083984375005,27.596679687500114],[82.73339843750003,27.518994140625097],[82.93281250000015,27.467675781250108],[83.06406250000006,27.44453125000001],[83.21386718750003,27.40229492187512],[83.28974609375003,27.370996093750133],[83.36943359375002,27.410253906249974],[83.38398437500004,27.444824218750085],[83.44716796875011,27.465332031249996],[83.55166015625011,27.456347656249932],[83.74697265625011,27.395947265625068],[83.8288085937501,27.377832031250108],[83.89716796875015,27.435107421875045],[84.02480468750005,27.461669921874968],[84.09101562499991,27.491357421875136],[84.22978515625007,27.427832031250006],[84.48085937500005,27.348193359375102],[84.61015625,27.298681640624977],[84.64072265625012,27.249853515624977],[84.65478515625014,27.203662109374985],[84.65380859375009,27.09169921875008],[84.68535156250013,27.041015625000057],[84.9372070312501,26.926904296875076],[85.0201171875001,26.878515625],[85.08730468750011,26.862939453125023],[85.125390625,26.860986328124966],[85.1515625000001,26.846630859375068],[85.17412109375007,26.78154296874996],[85.19179687500011,26.766552734375097],[85.24023437500001,26.750341796875006],[85.29296875000009,26.741015625000042],[85.45644531250011,26.79721679687495],[85.56845703125012,26.839843750000114],[85.64843749999997,26.829003906250023],[85.69990234375004,26.781640624999966],[85.70742187500015,26.712646484374943],[85.73730468750003,26.639746093750034],[85.79453125000006,26.60415039062505],[85.85566406250015,26.60019531249995],[86.00732421875009,26.64936523437504],[86.12939453125009,26.61171875],[86.24160156250011,26.597998046875034],[86.36611328125,26.57441406250004],[86.41445312500016,26.55629882812508],[86.54365234375015,26.495996093750048],[86.70136718750015,26.435058593750057],[86.7625,26.441943359375045],[87.01640625000002,26.555419921875085],[87.03789062500013,26.54160156249992],[87.08955078124993,26.43320312500003],[87.16679687500013,26.394238281250097],[87.2874023437499,26.360302734375125],[87.41357421875014,26.422949218750087],[87.51308593750016,26.404980468749983],[87.63339843750006,26.39912109375004],[87.74882812500002,26.42929687499995],[87.84921875000006,26.43691406250008],[87.99511718750014,26.382373046874985],[88.02695312500022,26.395019531250085],[88.05488281250004,26.43002929687492],[88.11152343750004,26.586425781249996],[88.16152343749998,26.724804687500125],[88.15722656250009,26.807324218750068],[88.1110351562501,26.928466796875057],[87.99316406250009,27.086083984374994],[87.984375,27.13393554687499],[88.02412109375015,27.40888671875004],[88.06787109375003,27.5673828125],[88.10556640625005,27.642431640625002],[88.14697265625013,27.749218750000097],[88.15429687500003,27.79868164062506],[88.1502929687501,27.84331054687507],[88.10976562500004,27.87060546874997],[88.09892578125012,27.904541015625114],[88.10898437499995,27.933007812500048],[88.14111328125003,27.948925781250097],[88.27519531250013,27.968847656250087],[88.42597656250015,28.011669921875093],[88.48613281250013,28.03447265624996],[88.53164062500016,28.057373046875],[88.57792968750002,28.093359375000034],[88.62109375000009,28.091845703125102],[88.75625,28.039697265625136],[88.80371093750001,28.006933593750034],[88.82861328125009,27.90727539062496],[88.84882812500004,27.868652343750085],[88.82988281250002,27.76738281250007],[88.74902343749997,27.521875000000136],[88.7648437500001,27.429882812500068],[88.83251953125003,27.362841796875074],[88.89140625000002,27.316064453125136],[88.88164062500007,27.297460937500087],[88.76035156250006,27.21811523437509],[88.73876953125009,27.175585937499932],[88.765625,27.13422851562504],[88.81357421875006,27.099023437499966],[88.83515624999993,27.06557617187508],[88.85761718750015,26.961474609375017],[88.9191406250001,26.93222656250009],[89.0409179687501,26.8650390625001],[89.1482421875,26.816162109375085],[89.33212890625018,26.848632812500114],[89.3841796875001,26.82656250000008],[89.47460937500009,26.803417968749983],[89.54511718750003,26.79624023437492],[89.58613281250004,26.778955078125136],[89.60917968750013,26.76220703125011],[89.60615234375004,26.74111328125008],[89.60996093750012,26.719433593750097],[89.71093750000007,26.713916015625045],[89.76386718750004,26.7015625],[89.94316406250013,26.723925781249932],[90.12294921875011,26.75458984374998],[90.20605468749997,26.847509765625063],[90.24238281250015,26.854150390624994],[90.34589843750004,26.890332031250097],[90.44765625,26.85078125000004],[90.55986328125002,26.79658203125001],[90.6203125000001,26.78022460937504],[90.73964843750004,26.771679687500068],[90.85576171875007,26.77773437500008],[91.13388671875006,26.803417968749983],[91.2865234375,26.78994140625008],[91.42675781249997,26.867089843749966],[91.45585937500013,26.866894531250125],[91.51757812500009,26.807324218750068],[91.67158203124993,26.80200195312503],[91.75371093750006,26.83076171875004],[91.84208984375013,26.852978515625125],[91.8986328125001,26.860058593749955],[91.94375,26.860839843750114],[91.99833984375013,26.85498046875],[92.04970703125016,26.87485351562495],[92.07343750000014,26.914843750000102],[92.0681640624999,26.975195312499977],[92.03085937500023,27.040820312500017],[91.99863281249995,27.07929687500004],[91.99228515625018,27.099902343749985],[92.00253906250012,27.14736328125005],[92.03115234375,27.21430664062501],[92.0833984375,27.290625],[92.04492187499996,27.364697265625097],[91.99082031249995,27.450195312500114],[91.95097656250002,27.45830078124999],[91.85126953125004,27.43862304687505],[91.74306640625011,27.442529296875133],[91.6581054687501,27.493603515625068],[91.59472656250009,27.55766601562499],[91.57929687500004,27.61142578125009],[91.59765624999997,27.677001953124943],[91.62587890625011,27.73730468749997],[91.63193359375012,27.75996093749998],[91.71259765625004,27.75981445312496],[91.82470703125014,27.746435546875063],[91.90937500000015,27.72968750000004],[91.97763671875018,27.730371093749994],[92.10126953125015,27.80761718750008],[92.15761718750011,27.81225585937497],[92.22226562500012,27.826953124999957],[92.25048828125003,27.841503906250065],[92.27011718750012,27.83022460937508],[92.34101562500015,27.820751953125097],[92.41484375000002,27.82460937499999],[92.48066406250021,27.845947265625085],[92.54667968750013,27.879199218750102],[92.66435546875013,27.948925781250097],[92.68779296875,27.988964843750093],[92.6875,28.02573242187495],[92.66562500000023,28.049853515625074],[92.64345703125011,28.06152343749994],[92.65253906250004,28.093359375000034],[92.70185546875004,28.147119140624994],[92.88183593750003,28.228125],[93.03496093750013,28.32763671875],[93.11923828125006,28.402294921875097],[93.15781250000012,28.492724609375045],[93.20654296875009,28.59082031249997],[93.25195312500007,28.62949218750003],[93.36054687500004,28.654052734375053],[93.66494140625005,28.69023437499996],[93.76074218750003,28.729785156250017],[93.90224609375,28.803222656250057],[93.97363281249996,28.860791015625068],[94.01328125000006,28.90751953124999],[94.01767578125006,28.959521484375102],[94.1115234375001,28.97587890625007],[94.19345703125006,29.05991210937495],[94.29326171875013,29.144628906249977],[94.46806640625007,29.216210937499994],[94.62304687500003,29.31240234375005],[94.67705078125002,29.297021484375136],[94.73339843750014,29.251611328125104],[94.76308593750011,29.201269531249977],[94.76943359375016,29.175878906249952],[94.96748046874993,29.144042968750057],[94.99882812500002,29.14916992187503],[95.1447265625001,29.10405273437507],[95.27910156250002,29.049560546874968],[95.353125,29.035888671875025],[95.38925781250006,29.037402343749985],[95.42021484375006,29.05429687500006],[95.45654296875001,29.102294921875053],[95.4937500000001,29.137011718750042],[95.51699218750005,29.151171875000074],[95.51582031250014,29.206347656249957],[95.71035156250011,29.313818359375006],[95.88505859375007,29.39091796875007],[96.03535156250015,29.44716796874999],[96.07958984375009,29.424121093750074],[96.12851562500012,29.38139648437507],[96.19472656250011,29.272460937500085],[96.23496093750006,29.245800781249983],[96.33720703125002,29.260986328125057],[96.355859375,29.24907226562496],[96.33974609375016,29.209814453124945],[96.27050781250009,29.161230468750006],[96.18085937500004,29.117675781250004],[96.12236328125,29.082080078125042],[96.14140625000007,28.963476562500034],[96.13710937500011,28.922607421875053],[96.16220703125005,28.9097167968751],[96.346875,29.027441406250087],[96.4357421875002,29.050683593750023],[96.46708984374989,29.022265625000102],[96.47714843750012,28.959326171875063],[96.55,28.829589843750114],[96.58085937500007,28.763671875],[96.39560546875018,28.606542968749977],[96.32734375000004,28.52539062499994],[96.32988281250002,28.496826171874996],[96.32617187499997,28.468554687500102],[96.27890625000023,28.428173828125036],[96.28144531249993,28.412060546875125],[96.31982421875001,28.386523437500074],[96.3664062500001,28.367285156250063],[96.3890625,28.36791992187503],[96.42773437500014,28.40600585937497],[96.60263671875006,28.459912109375125],[96.65283203125003,28.44975585937499],[96.77578125000011,28.367041015625034],[96.83300781250014,28.362402343749977],[96.98085937500004,28.337695312500074],[97.07539062500004,28.368945312500045],[97.14511718750012,28.34033203125008],[97.28945312500005,28.236816406249968],[97.32246093750015,28.21796875000004],[97.31025390625015,28.15522460937504],[97.30273437499997,28.08598632812496],[97.33916015625002,28.030859375000087],[97.34355468750002,27.982324218749994],[97.3351562500001,27.93774414062497],[97.30615234374997,27.907080078124917],[97.22607421875009,27.89003906250002],[97.15781250000023,27.83686523437501],[97.04970703125005,27.760009765625],[96.96279296875,27.698291015625017],[96.89970703125,27.64384765624996],[96.87685546875016,27.586718750000045],[96.88359375000013,27.514843750000125],[96.90195312500012,27.43959960937508],[97.10371093749993,27.16333007812511],[97.10205078125001,27.115429687500125],[97.03808593750014,27.102050781250053],[96.95341796875013,27.13330078125003],[96.88027343750016,27.177832031250034],[96.79785156249997,27.29619140624999],[96.7316406250001,27.331494140625093],[96.66572265625015,27.33925781250008],[96.27421875000013,27.278369140625102],[96.19082031250005,27.261279296874985],[96.06142578125011,27.217089843750045],[95.97089843750015,27.128076171875023],[95.90527343750014,27.04663085937497],[95.83730468750011,27.013818359375023],[95.73837890624995,26.950439453125085],[95.46386718750009,26.756054687500097],[95.30507812500005,26.67226562500008],[95.20146484375007,26.641406250000017],[95.12871093750002,26.597265625000063],[95.08945312500018,26.525488281250006],[95.05976562500015,26.473974609375006],[95.05087890625005,26.347265624999945],[95.06894531250006,26.191113281250097],[95.10839843750013,26.091406250000034],[95.1292968750001,26.070410156250034],[95.13242187500006,26.041259765624943],[95.09296875000021,25.987304687499968],[95.04072265624993,25.941308593750023],[95.01523437500006,25.91293945312492],[94.99199218750002,25.77045898437504],[94.94570312500005,25.700244140624932],[94.86113281250002,25.597216796875074],[94.78583984375015,25.519335937500017],[94.66777343750007,25.458886718749966],[94.62285156250012,25.41000976562495],[94.5798828125,25.319824218750057],[94.55439453125004,25.243457031249957],[94.55302734375012,25.215722656249994],[94.56650390624995,25.191503906250034],[94.615625,25.164599609375045],[94.67529296875003,25.13857421875008],[94.70371093750012,25.097851562499955],[94.70761718750016,25.04873046875008],[94.66328125000004,24.93100585937506],[94.58408203125006,24.767236328125104],[94.49316406250003,24.637646484374983],[94.39941406250009,24.51406250000005],[94.37724609375002,24.473730468750006],[94.29306640625012,24.321875],[94.21972656250009,24.11318359375008],[94.17031250000016,23.972656250000057],[94.12763671875015,23.87646484375],[94.07480468750006,23.8720703125],[94.01083984375018,23.902929687500063],[93.85546875000013,23.943896484375045],[93.75585937500007,23.976904296875034],[93.68339843750007,24.00654296875004],[93.63330078125009,24.00537109374997],[93.56406250000012,23.986083984374943],[93.49375000000018,23.972851562500097],[93.45214843750003,23.987402343750034],[93.35556640625006,24.074121093750108],[93.32626953125006,24.064208984375053],[93.30732421874993,24.021875000000133],[93.37255859375009,23.774169921875114],[93.4149414062501,23.68208007812501],[93.40810546875011,23.528027343750065],[93.3913085937501,23.33916015624996],[93.36601562500006,23.132519531249955],[93.34941406250007,23.08496093750003],[93.30800781250016,23.030371093749917],[93.25351562500006,23.01547851562509],[93.20390625000002,23.03701171875005],[93.16416015625018,23.032031250000102],[93.15097656250006,22.997314453124943],[93.16250000000011,22.90795898437503],[93.11425781250014,22.80571289062499],[93.07871093750018,22.718212890625097],[93.08818359375013,22.633251953125036],[93.10507812500023,22.547119140625057],[93.16201171875,22.360205078125006],[93.16240234375017,22.291894531250104],[93.15117187500002,22.23061523437508],[93.12148437500016,22.205175781250034],[93.07060546875002,22.209423828125008],[93.04296875000009,22.18398437499999],[93.02197265625014,22.14570312500001],[92.96455078125015,22.003759765625034],[92.90947265625013,21.98891601562502],[92.85429687500002,22.010156250000108],[92.77138671875,22.104785156250017],[92.72099609375013,22.132421874999945],[92.68896484375007,22.130957031250006],[92.67470703125011,22.10600585937507],[92.65263671875007,22.049316406250085],[92.63037109375014,22.011328124999977],[92.57490234374993,21.97807617187496],[92.5612304687501,22.048046875],[92.53183593750012,22.410302734375076],[92.5095703125,22.525683593749957],[92.49140625000003,22.685400390625002],[92.46445312500006,22.734423828125042],[92.43046875000007,22.821826171875074],[92.3931640625001,22.897021484374932],[92.36162109375,22.929003906250074],[92.34121093750011,23.06982421874997],[92.33378906250002,23.242382812499955],[92.33417968750021,23.32382812500003],[92.28935546875002,23.492480468750102],[92.24609375000001,23.68359374999997],[92.18710937500005,23.675537109375085],[92.15234375000009,23.721875000000125],[92.12705078125006,23.72099609374993],[92.04404296875005,23.677783203125017],[91.97851562500003,23.69199218750006],[91.92958984375011,23.685986328125097],[91.92949218750019,23.598242187499977],[91.9378906250001,23.504687500000102],[91.91914062500021,23.471044921875006],[91.79003906250009,23.36103515624998],[91.75419921875013,23.28730468750004],[91.75791015625016,23.20981445312506],[91.773828125,23.10610351562508],[91.75097656250003,23.053515625000017],[91.69492187500006,23.004833984375068],[91.61953125,22.979687500000097],[91.55351562500013,22.991552734375006],[91.51123046875003,23.033691406250085],[91.4713867187501,23.141259765625136],[91.43623046875004,23.19990234375001],[91.39941406250007,23.213867187499996],[91.37060546875009,23.19799804687497],[91.36679687500012,23.130468750000063],[91.36865234375013,23.074560546875063],[91.359375,23.06835937500003],[91.33886718750009,23.077001953125002],[91.31523437500007,23.104394531250076],[91.25380859375016,23.373632812500063],[91.16552734375014,23.58105468750003],[91.16044921875019,23.660644531250085],[91.19248046875012,23.762890625000125],[91.23203125000018,23.920458984375074],[91.33642578125014,24.01879882812503],[91.3501953125001,24.06049804687501],[91.36708984375016,24.09350585937497],[91.39267578124995,24.100097656250085],[91.52636718750009,24.090771484374955],[91.57138671874995,24.106591796874994],[91.61113281250013,24.152832031249996],[91.66875000000013,24.190087890625108],[91.72656250000003,24.20507812499997],[91.77246093750013,24.21064453125004],[91.84619140624996,24.175292968749943],[91.87695312500014,24.195312500000114],[91.89902343750018,24.26069335937512],[91.93105468750011,24.325537109375006],[91.95166015624997,24.35673828124996],[92.00107421875018,24.370898437500017],[92.06416015625004,24.374365234375006],[92.08505859375006,24.386181640625097],[92.10195312500011,24.40805664062495],[92.11748046875002,24.493945312500017],[92.19804687500019,24.68574218750001],[92.22666015625012,24.77099609374997],[92.23056640624995,24.786230468750063],[92.22832031250002,24.881347656250085],[92.2512695312499,24.895068359375045],[92.38496093750003,24.848779296875023],[92.44316406250002,24.84941406249996],[92.47500000000011,24.868505859374945],[92.4854492187501,24.903320312500114],[92.46835937500018,24.944140625000074],[92.37343750000011,25.01513671874997],[92.20468750000012,25.11093749999995],[92.04970703125016,25.16948242187499],[91.76347656250002,25.16064453124997],[91.4796875000002,25.142138671875102],[91.39667968750015,25.151611328125085],[91.29316406249993,25.177978515625114],[91.03828125000014,25.174072265625025],[90.7301757812501,25.159472656250074],[90.61308593750002,25.16772460937497],[90.55527343750006,25.166601562499917],[90.43935546875015,25.157714843750085],[90.25039062500005,25.184960937500108],[90.11962890625003,25.21997070312497],[90.00380859375,25.25834960937496],[89.86630859375012,25.293164062499955],[89.83330078125013,25.292773437500045],[89.81406250000006,25.305371093749955],[89.80087890625012,25.33613281250001],[89.7962890625,25.37583007812492],[89.82490234375003,25.56015625],[89.79960937500002,25.839599609375085],[89.82294921875015,25.94140625000003],[89.70986328125005,26.171240234374974],[89.67089843750009,26.213818359375125],[89.61904296875011,26.215673828124945],[89.58574218750019,26.186035156249968],[89.57275390625003,26.13232421875003],[89.59140625000006,26.07241210937508],[89.54990234375006,26.00527343750008],[89.46689453125012,25.983544921875108],[89.36972656250023,26.00610351562508],[89.28925781250014,26.037597656250085],[89.18642578125015,26.10595703125],[89.10830078125004,26.202246093750063],[89.10195312500011,26.308349609375],[89.06679687500011,26.376904296875125],[89.01865234375012,26.410253906249977],[88.98339843750001,26.4195312499999],[88.95195312500002,26.412109375],[88.92412109375,26.375097656249917],[88.94824218750014,26.337988281250006],[88.98154296875018,26.286132812500114],[88.97041015625004,26.250878906250023],[88.94072265625002,26.24536132812497],[88.89648437500009,26.26049804687503],[88.82802734375016,26.25219726562511],[88.76191406249993,26.279394531249977],[88.72216796875009,26.28183593749995],[88.68281250000004,26.291699218749983],[88.68066406250009,26.35297851562504],[88.62011718750007,26.430664062500057],[88.51826171875004,26.517773437500036],[88.41816406250015,26.57153320312497],[88.36992187500002,26.56411132812508],[88.34589843750015,26.50478515625005],[88.35146484375004,26.482568359374966],[88.38623046875003,26.471533203125034],[88.43671874999991,26.437109374999945],[88.44785156250006,26.40102539062505],[88.44042968749997,26.369482421875034],[88.37802734375006,26.312011718750057],[88.33398437499997,26.257519531249955],[88.2351562499999,26.17807617187495],[88.15078125000005,26.087158203125053],[88.12900390624995,26.01821289062505],[88.09736328125015,25.95634765625007],[88.08457031249995,25.888232421875045],[88.1066406250001,25.841113281250045],[88.14746093749997,25.81142578125002],[88.25292968749997,25.789794921875053],[88.36308593750013,25.69819335937504],[88.45234375000021,25.574414062500068],[88.50244140625007,25.53701171875008],[88.59345703125015,25.495312500000097],[88.76914062500006,25.490478515624996],[88.79541015625009,25.45625],[88.82031250000003,25.365527343749957],[88.85478515625002,25.333544921875017],[88.94414062500002,25.290771484375],[88.95166015625013,25.25927734374997],[88.92978515625012,25.222998046875063],[88.89013671875003,25.194384765625074],[88.81728515625011,25.17622070312512],[88.74755859375009,25.168945312500057],[88.67753906250007,25.180468750000102],[88.57382812500006,25.18789062499999],[88.45625,25.188427734375125],[88.37294921875016,24.961523437500063],[88.31337890625011,24.881835937499996],[88.27949218750014,24.881933593750034],[88.18886718750016,24.920605468750093],[88.14980468750011,24.914648437499945],[88.04511718750015,24.71303710937508],[88.03027343750007,24.664453125000136],[88.02343750000003,24.627832031250136],[88.07910156250009,24.549902343750063],[88.14550781250001,24.485791015624955],[88.225,24.460644531249983],[88.28710937500009,24.47973632812497],[88.3375,24.45385742187503],[88.39697265625009,24.389257812500006],[88.49853515625003,24.34663085937504],[88.64228515625015,24.325976562500102],[88.72353515625011,24.27490234375],[88.7335937500001,24.230908203125093],[88.72656250000007,24.18623046875004],[88.71376953125016,24.069628906250102],[88.69980468750006,24.00253906249992],[88.62255859374997,23.826367187500097],[88.56738281250009,23.674414062500034],[88.59599609375013,23.60219726562508],[88.61640625000004,23.572753906250114],[88.63574218749997,23.55],[88.69765625,23.493017578125034],[88.74082031250006,23.43662109375009],[88.70400390625011,23.29282226562492],[88.72441406250002,23.254980468750034],[88.80761718750007,23.22968750000004],[88.89707031250018,23.210400390625008],[88.92812500000011,23.186621093749977],[88.85058593750014,23.040527343750057],[88.86699218750002,22.938867187500108],[88.89970703125002,22.843505859375057],[88.92343750000006,22.68754882812507],[88.92695312500004,22.671142578125114],[88.92070312500002,22.632031249999955],[88.97148437500007,22.510937499999983],[89.05,22.27460937499998],[89.05585937500004,22.186230468750097],[89.05146484375004,22.093164062500133],[89.02792968750023,21.937207031249983],[88.94931640625018,21.937939453125125],[89.01962890625012,21.833642578125023],[89.04199218749997,21.758691406250023],[89.05166015625,21.654101562500045],[88.96708984375007,21.641357421875114],[88.90742187500015,21.653076171875],[88.85751953125012,21.744677734375017],[88.834375,21.661376953125085],[88.7450195312501,21.584375],[88.71298828125016,21.62197265625005],[88.69472656250011,21.66240234374996],[88.6912109374999,21.733496093750034],[88.74023437500003,22.005419921875017],[88.73027343750013,22.03608398437504],[88.70830078125002,22.056152343750057],[88.65957031250011,22.066943359374932],[88.64160156250001,22.121972656250136],[88.56679687500005,21.832128906250063],[88.59980468750004,21.713769531250108],[88.58466796875015,21.659716796874932],[88.44599609375004,21.614257812500085],[88.30546875,21.723339843750093],[88.28750000000016,21.758203125000108],[88.27919921874998,21.696875],[88.25371093750002,21.622314453124943],[88.12207031249997,21.635791015625045],[88.0568359375001,21.694140625000014],[88.09941406250007,21.793554687500034],[88.18105468750016,22.032910156250125],[88.19628906249997,22.13955078124999],[88.08710937500003,22.217724609375097],[87.99443359375013,22.265673828125102],[87.94140625000003,22.374316406250042],[87.96162109375004,22.25502929687508],[88.01074218750009,22.21264648437497],[88.08300781250009,22.18271484375009],[88.15927734375018,22.121728515625076],[88.10410156250012,22.04736328125003],[88.05078125000007,22.001074218750034],[87.94843749999993,21.825439453124943],[87.82373046875003,21.727343750000045],[87.67822265625003,21.653515625000097],[87.20068359375009,21.544873046874983],[87.10068359375005,21.500781250000074],[86.95410156250014,21.365332031250006],[86.85957031250003,21.23671875000008],[86.84228515625007,21.106347656249994],[86.89580078125013,20.965576171875085],[86.93935546875016,20.745068359375125],[86.97548828125005,20.70014648437501],[86.92451171875015,20.619775390624994],[86.83593750000003,20.534326171874994],[86.7625,20.419140624999983],[86.76923828125004,20.355908203125065],[86.75039062500011,20.313232421875057],[86.4987304687501,20.171630859375],[86.44580078125013,20.088916015625017],[86.37656250000006,20.006738281249966],[86.29365234375004,20.05375976562496],[86.24521484375012,20.05302734374999],[86.31191406250005,19.98779296875003],[86.30292968750015,19.94467773437495],[86.27949218750021,19.919433593749943],[86.2162109375,19.895800781249932],[85.85292968750016,19.791748046875053],[85.575,19.69291992187499],[85.496875,19.696923828125104],[85.51113281250016,19.726904296874977],[85.55976562500008,19.753466796875074],[85.55507812500005,19.866894531250097],[85.50410156250004,19.887695312500057],[85.45996093750003,19.895898437500136],[85.24863281250006,19.757666015625034],[85.16279296875004,19.620898437500074],[85.18076171875018,19.59487304687508],[85.22851562500014,19.60131835937497],[85.3708984374999,19.678906249999983],[85.43691406250011,19.656884765625108],[85.44160156249993,19.626562499999977],[85.22558593749997,19.508349609375045],[84.77099609375009,19.125390625000023],[84.74980468750013,19.05009765624996],[84.69082031250011,18.96469726562495],[84.609375,18.884326171875102],[84.46279296875,18.68974609375007],[84.18173828125023,18.400585937499955],[84.10410156250018,18.29267578125001],[83.65429687499996,18.069873046875102],[83.57226562500001,18.003613281250097],[83.38798828125013,17.78666992187496],[83.19833984375006,17.608984374999977],[82.97685546875007,17.461816406250023],[82.59316406250005,17.27392578125011],[82.35957031250003,17.09619140624997],[82.28652343750011,16.978076171875074],[82.28193359375004,16.936083984375045],[82.30722656250006,16.87856445312505],[82.35,16.8251953125],[82.35976562500011,16.782812500000063],[82.33867187500007,16.706542968749996],[82.32714843750003,16.664355468750102],[82.25878906250014,16.55986328124996],[82.14150390625005,16.485351562500057],[81.76191406250014,16.32949218750008],[81.71171875000007,16.33447265625003],[81.40185546875009,16.365234375000085],[81.28613281249997,16.33706054687502],[81.23857421875013,16.263964843750074],[81.13212890625002,15.961767578124947],[81.03007812500002,15.881445312499947],[80.99345703125002,15.80874023437505],[80.97871093750004,15.758349609375072],[80.91777343750013,15.759667968749994],[80.86474609375009,15.78222656249997],[80.82597656250002,15.765917968750015],[80.78183593750006,15.86733398437508],[80.7078124999999,15.888085937500051],[80.64658203125005,15.895019531250028],[80.38486328125012,15.792773437499989],[80.29345703125014,15.71074218749999],[80.10107421875003,15.32363281249998],[80.05341796875008,15.074023437499932],[80.09863281249997,14.798242187500065],[80.16542968750016,14.577832031250097],[80.17871093750003,14.478320312500074],[80.17011718750003,14.349414062500102],[80.13623046875009,14.286572265625095],[80.11171875000004,14.212207031250044],[80.14365234375018,14.058935546875075],[80.22441406250002,13.858203125000045],[80.24414062500003,13.773486328125017],[80.24580078124993,13.685839843750102],[80.30654296875016,13.485058593750054],[80.26562500000014,13.521289062499974],[80.23339843750009,13.605761718749946],[80.15625,13.713769531250108],[80.06210937500006,13.60625],[80.11425781249997,13.528710937500065],[80.29033203125002,13.436718749999969],[80.34238281250006,13.361328125000071],[80.22910156250018,12.690332031249966],[80.14306640624997,12.452001953125091],[80.0375,12.295800781250065],[79.98173828125007,12.23544921875002],[79.85849609375018,11.988769531250043],[79.77138671875011,11.690234374999974],[79.75410156250004,11.575292968750006],[79.79335937500005,11.446679687500094],[79.74892578125005,11.370605468750043],[79.69316406250007,11.312548828124946],[79.79902343750004,11.33867187499993],[79.83525390625007,11.268847656250102],[79.84863281250009,11.196875],[79.85019531250006,10.768847656250017],[79.83818359375002,10.322558593750045],[79.75693359375006,10.304345703125065],[79.6673828125001,10.299707031250009],[79.58857421875004,10.31235351562492],[79.53164062500011,10.329638671875074],[79.39052734375005,10.305957031250045],[79.31455078125018,10.256689453124949],[79.25361328125004,10.174804687499972],[79.25781250000003,10.035205078124946],[78.99628906249993,9.683105468749986],[78.93994140625009,9.565771484375063],[78.9191406250001,9.452880859374972],[78.953125,9.393798828125012],[79.01992187500005,9.333349609374961],[79.10703125000018,9.308935546874963],[79.27548828125006,9.284619140624983],[79.35634765625011,9.25214843750011],[79.41142578125002,9.192382812500014],[79.21289062500009,9.256005859375007],[78.97958984375018,9.268554687500085],[78.42148437500006,9.105029296874989],[78.27451171875006,8.99018554687504],[78.19248046874995,8.890869140625057],[78.13603515625007,8.663378906250074],[78.1263671875,8.511328125],[78.06015625000006,8.384570312499932],[77.77031250000002,8.189843750000051],[77.58720703125002,8.1298828125001],[77.51757812500003,8.078320312500068],[77.30146484375004,8.145312500000045],[77.06591796875001,8.315917968749986],[76.96689453125012,8.407275390624946],[76.61728515625012,8.847070312500009],[76.5534179687501,8.902783203124997],[76.48291015625009,9.090771484375097],[76.47177734375006,9.160839843749983],[76.4523437500001,9.188769531249987],[76.41904296875006,9.207812499999958],[76.403125,9.236816406250014],[76.32460937500016,9.452099609374995],[76.29238281250011,9.676464843750054],[76.24238281250004,9.927099609374949],[76.28466796875003,9.909863281249997],[76.34306640625002,9.827343750000054],[76.37226562500004,9.707373046874949],[76.37558593750005,9.539892578124935],[76.41953125000006,9.520458984375068],[76.45878906250013,9.536230468750077],[76.34648437500002,9.922119140625],[76.24873046875015,10.01796875],[76.22275390625023,10.024267578125034],[76.19560546875,10.086132812500026],[76.19267578125013,10.163769531250026],[76.20146484375013,10.200634765625082],[76.12333984375002,10.327001953125063],[76.09609375000016,10.402246093750122],[75.92255859375015,10.784082031250108],[75.84462890625,11.05756835937504],[75.72382812500015,11.361767578125024],[75.64609375000006,11.46840820312508],[75.52451171875006,11.703125000000114],[75.42265625000002,11.812207031250125],[75.31464843750004,11.958447265625082],[75.22978515625006,12.02333984374998],[75.1966796875,12.057519531250009],[74.94550781250004,12.56455078124992],[74.86826171875012,12.844580078124947],[74.80292968750015,12.976855468750074],[74.77050781250009,13.077343750000123],[74.6823242187501,13.506933593750063],[74.68164062500014,13.583740234375085],[74.67089843749997,13.667626953125122],[74.60849609375006,13.849658203125074],[74.49853515625014,14.046337890624997],[74.46669921875005,14.168847656250094],[74.4669921875001,14.216503906250026],[74.3971679687501,14.407421875000026],[74.38222656250005,14.494726562500048],[74.33505859374995,14.57543945312497],[74.28037109375006,14.649511718749963],[74.2230468750001,14.708886718749978],[74.08876953125011,14.90219726562492],[74.0406250000001,14.949365234375122],[73.94921875000014,15.074755859375088],[73.88427734375003,15.306445312500031],[73.80078125000007,15.39697265625],[73.93193359375013,15.39697265625],[73.85195312500005,15.482470703125015],[73.8138671875,15.538574218750085],[73.77177734375013,15.573046874999987],[73.83281250000012,15.659375],[73.7328125,15.65693359375004],[73.67988281250015,15.708886718750136],[73.60771484375019,15.871093749999972],[73.47607421875003,16.05424804687496],[73.45371093750006,16.152099609375],[73.33759765625003,16.45986328124999],[73.23916015625005,17.198535156250045],[73.1490234375,17.527441406250063],[73.15605468750019,17.62192382812495],[73.04716796875013,17.90673828125008],[72.99394531250019,18.097705078125074],[72.97207031250011,18.259277343749943],[72.94316406250013,18.365625000000136],[72.91718749999993,18.57612304687501],[72.87548828124997,18.642822265625114],[72.87089843750019,18.68305664062495],[72.89873046875017,18.778955078125136],[72.97685546875002,18.927197265624955],[73.0055664062501,19.02109375000009],[72.97207031250011,19.15332031250003],[72.90068359375013,19.014501953124977],[72.8346679687501,18.975585937500057],[72.80302734375013,19.07929687500004],[72.80273437500014,19.21875],[72.79453125000006,19.252099609375076],[72.81162109375,19.298925781250006],[72.98720703125,19.27744140625009],[72.78789062500013,19.362988281250097],[72.76396484375007,19.413183593750034],[72.75644531250012,19.450537109375006],[72.7994140625,19.519824218750074],[72.72656250000009,19.57827148437508],[72.69746093749993,19.7571289062501],[72.6759765625001,19.79794921875006],[72.66777343750019,19.83095703125005],[72.70898437499997,20.078027343750108],[72.88115234375013,20.56318359375001],[72.89375,20.672753906250136],[72.87890625000003,20.82851562500005],[72.84052734375004,20.95249023437509],[72.8243164062501,21.083593749999977],[72.81386718750011,21.117187500000085],[72.75156249999995,21.12915039062503],[72.69238281249996,21.177636718750136],[72.62382812500002,21.371972656250108],[72.68652343750009,21.435742187499955],[72.73476562500016,21.470800781250006],[72.66835937500011,21.455908203124974],[72.61328125000009,21.461816406250108],[72.71757812500013,21.551269531250057],[72.81054687500014,21.61992187499999],[73.02246093750013,21.69960937500008],[73.1125,21.75043945312512],[72.9791015625,21.704687500000034],[72.83974609375005,21.68725585937503],[72.54306640625,21.69658203124999],[72.59248046875004,21.87758789062508],[72.64404296875013,21.93798828124997],[72.70019531250003,21.971923828124943],[72.61748046875007,21.96171874999999],[72.52226562500013,21.976220703125108],[72.55302734375007,22.159960937500074],[72.62792968749997,22.199609374999966],[72.70878906250019,22.207177734375076],[72.80917968749995,22.23330078125008],[72.70195312500013,22.26362304687504],[72.59013671875019,22.278125],[72.45595703125011,22.248095703125074],[72.33261718750012,22.27021484374995],[72.18281250000015,22.26972656250004],[72.242578125,22.245166015625017],[72.30644531250002,22.18920898437497],[72.27441406250009,22.089746093749966],[72.2443359375001,22.027636718750102],[72.16171875000012,21.984814453125097],[72.0944335937501,21.919970703125017],[72.07558593750016,21.862988281249955],[72.03720703125006,21.82304687499999],[72.10292968750005,21.794580078125048],[72.17089843750003,21.774316406250023],[72.2103515625,21.72822265625004],[72.25664062500002,21.661230468750063],[72.25400390625006,21.531005859375],[72.07656250000016,21.22407226562501],[72.01523437500012,21.155712890625093],[71.57109375000007,20.97055664062503],[71.39648437500003,20.869775390625108],[71.0246093750001,20.738867187500087],[70.87968750000007,20.714501953125108],[70.71933593750006,20.740429687500068],[70.48505859375003,20.84018554687495],[70.12734375,21.094677734375097],[70.03437500000015,21.178808593750006],[69.74843750000016,21.505712890625006],[69.54199218750003,21.67856445312503],[69.3854492187501,21.839550781249983],[69.19169921875007,21.991503906250017],[69.00878906250009,22.196777343750114],[68.96992187500021,22.29028320312497],[68.98349609375012,22.385400390624994],[69.05166015625016,22.437304687500074],[69.13134765625003,22.416259765625057],[69.19423828125005,22.33608398437505],[69.23886718750006,22.30019531250002],[69.27656250000003,22.285498046875063],[69.54921875,22.40839843750004],[69.65517578125016,22.40351562500012],[69.72753906250009,22.465185546875063],[69.81904296875014,22.451757812500006],[70.00585937500003,22.547705078125006],[70.08417968750015,22.553515624999957],[70.17724609375014,22.57275390624997],[70.32773437500006,22.81577148437509],[70.44042968750009,22.97031249999995],[70.51347656250007,23.002490234374932],[70.50937500000012,23.040136718749977],[70.48925781250009,23.08950195312508],[70.43457031250014,23.07709960937504],[70.39628906250019,23.03012695312506],[70.36796875000007,22.973486328125063],[70.33945312500012,22.939746093749932],[70.2511718750001,22.970898437500068],[70.19169921875007,22.965673828125063],[70.11826171875,22.947021484375],[69.84980468750004,22.85644531250003],[69.73964843750016,22.77519531249999],[69.66464843750006,22.75908203125007],[69.23593749999995,22.848535156250023],[68.81708984375003,23.053710937500053],[68.64072265625006,23.189941406250114],[68.52919921875011,23.364062500000045],[68.41748046875009,23.57148437500004],[68.45380859374993,23.629492187499945],[68.62714843750015,23.754150390624943],[68.7767578125,23.852099609375017],[68.64238281250007,23.808496093749994],[68.496875,23.747998046875125],[68.42490234375,23.70556640625],[68.34335937500006,23.61684570312505],[68.23496093749995,23.596972656250074],[68.19199218750006,23.728906250000136],[68.16503906250009,23.857324218749994],[68.23417968750013,23.900537109375108],[68.28251953125013,23.927978515625],[68.38125000000016,23.950878906250068],[68.48867187500011,23.967236328125008],[68.5866210937501,23.966601562500074],[68.72412109375003,23.964697265625034],[68.72812500000012,24.265625],[68.73964843750016,24.29199218750008],[68.75898437499993,24.307226562500006],[68.78115234375011,24.313720703125085],[68.8,24.309082031250025],[68.82832031250003,24.264013671875087],[68.86347656250015,24.26650390625005],[68.90078125000011,24.292431640625008],[68.98457031250015,24.273095703124966],[69.05156250000012,24.28632812500001],[69.11953125000011,24.268652343749945],[69.23505859374993,24.268261718750065],[69.44345703124995,24.275390625000085],[69.55917968750006,24.273095703124966],[69.63417968750016,24.225195312499977],[69.71621093750016,24.172607421875114],[69.80517578125009,24.165234375000036],[69.9337890625001,24.17138671875003],[70.0210937500001,24.191552734375048],[70.06513671874991,24.24057617187492],[70.0982421875,24.2875],[70.28906250000009,24.356298828125063],[70.48925781250009,24.412158203125074],[70.54677734374998,24.418310546875063],[70.56503906250006,24.385791015625017],[70.55585937500015,24.331103515625074],[70.57929687500015,24.279052734374943],[70.65947265625013,24.24609374999997],[70.71630859375009,24.237988281250097],[70.7672851562501,24.245410156250017],[70.80507812500011,24.26196289062503],[70.88623046875014,24.34375],[70.92812500000016,24.362353515625045],[70.98281250000011,24.361035156250125],[71.04404296875006,24.400097656250097],[71.04531250000004,24.42998046874996],[71.00625,24.444335937500057],[70.97324218750012,24.48740234374995],[70.97929687500002,24.522460937499968],[70.96982421875012,24.571875],[70.97636718750013,24.61875],[71.00234375000016,24.6539062499999],[71.04785156250003,24.687744140625085],[71.02070312500021,24.75766601562492],[70.95087890625015,24.89160156250003],[70.87773437500017,25.06298828124997],[70.8004882812501,25.205859374999932],[70.70253906250005,25.331054687500025],[70.65205078125003,25.4229003906251],[70.65722656250003,25.625781250000045],[70.64843750000001,25.666943359375068],[70.61484375000012,25.69189453125],[70.5695312500001,25.705957031250023],[70.50585937500009,25.68530273437508],[70.44853515625013,25.68134765624998],[70.32519531249997,25.685742187500008],[70.26464843750009,25.70654296874997],[70.10019531250006,25.910058593750048],[70.07861328125009,25.990039062499985],[70.07773437500012,26.071972656249983],[70.13261718750002,26.21479492187495],[70.14921875000002,26.347558593749994],[70.15683593750005,26.47143554687503],[70.14765625000004,26.506445312500034],[70.11464843750016,26.548046874999983],[70.059375,26.578759765625023],[69.91142578125013,26.586132812500125],[69.73593750000012,26.62705078124992],[69.60058593749997,26.699121093750048],[69.50693359375,26.742675781250025],[69.48125,26.770996093750114],[69.47001953125002,26.804443359375],[69.49453125000011,26.95415039062496],[69.53701171874998,27.12294921875005],[69.56796875,27.174609375000102],[69.62158203125009,27.22807617187499],[69.66132812500015,27.26450195312495],[69.72480468750015,27.31269531249998],[69.89628906250007,27.473632812500085],[70.04980468750007,27.694726562500023],[70.14453125000003,27.84902343749999],[70.19394531250006,27.89487304687492],[70.24433593750004,27.934130859375102],[70.31845703125012,27.98164062500001],[70.40371093749998,28.025048828124994],[70.48857421875013,28.023144531250125],[70.56923828125005,27.983789062500108],[70.62910156250015,27.937451171875068],[70.64912109375015,27.83535156250005],[70.6916015625001,27.76899414062504],[70.73740234374995,27.729003906250057],[70.79794921875012,27.709619140625023],[70.87490234375016,27.71445312499995],[71.18476562500003,27.831640625],[71.29013671875,27.855273437500045],[71.54296875000003,27.869873046875],[71.71669921875005,27.91508789062496],[71.8703125000001,27.9625],[71.88886718750004,28.047460937499917],[71.94804687500002,28.1772949218751],[72.12851562500012,28.34633789062508],[72.17919921875014,28.421777343749994],[72.23388671875009,28.56582031250002],[72.29199218750003,28.697265624999968],[72.34189453125006,28.751904296875093],[72.6255859375001,28.89614257812499],[72.90332031250003,29.02875976562501],[72.94873046874997,29.08881835937498],[73.12832031250004,29.36391601562508],[73.23115234375003,29.550634765625087],[73.25781250000013,29.61069335937509],[73.31728515625016,29.7729980468751],[73.38164062500013,29.934375],[73.46748046875004,29.97167968750008],[73.65800781250012,30.033203125],[73.8091796875,30.093359375],[73.88652343750013,30.162011718750136],[73.93339843750002,30.222070312500108],[73.92460937500007,30.28164062499999],[73.88271484374998,30.35214843749998],[73.89160156250009,30.394042968749975],[73.89931640625,30.43535156250005],[74.00898437500004,30.51967773437499],[74.21562500000013,30.768994140624986],[74.33935546875003,30.89355468749994],[74.38037109375003,30.893408203125087],[74.50976562500009,30.959667968750093],[74.63281250000014,31.034667968750114],[74.62578125000002,31.068750000000108],[74.61035156250009,31.112841796875045],[74.53974609375014,31.132666015625006],[74.5176757812501,31.18559570312493],[74.53496093750007,31.261376953125104],[74.59394531249993,31.465380859375102],[74.58183593750012,31.523925781250114],[74.50996093750015,31.712939453125074],[74.52597656249995,31.76513671875006],[74.55556640625011,31.818554687500097],[74.63574218750003,31.88974609375003],[74.73945312500015,31.948828125],[75.07148437500015,32.08935546875003],[75.13876953125,32.10478515624998],[75.25410156250004,32.140332031250125],[75.32470703125001,32.2152832031251],[75.33349609374996,32.27919921874999],[75.30263671875016,32.318896484375074],[75.23369140625012,32.372119140625074],[75.10410156249995,32.420361328124955],[74.98730468749997,32.46220703124996],[74.78886718750013,32.4578125],[74.6857421875001,32.49379882812499],[74.65781250000006,32.518945312499966],[74.64335937500013,32.60771484374993],[74.66328125000004,32.75766601562495],[74.63242187499995,32.770898437500136],[74.58828125000011,32.7532226562501],[74.48339843749997,32.77099609375],[74.35458984375012,32.76870117187505],[74.30546875000007,32.81044921875002],[74.32998046875,32.86083984375],[74.32275390625003,32.927978515625],[74.30361328125005,32.991796875000034],[74.28359375000005,33.005126953125085],[74.22207031250011,33.02031249999999],[74.12626953125013,33.07543945312503],[74.04912109375007,33.143408203125006],[74.00380859375005,33.18945312499997],[73.98984375000006,33.22119140625006],[73.99423828125006,33.24218750000006],[74.05039062500012,33.30126953125003],[74.1177734375,33.384130859375034],[74.14257812500007,33.45537109374996],[74.15,33.506982421874994],[74.13125,33.545068359375136],[74.06972656250015,33.59169921875002],[74.00400390625012,33.63242187499998],[73.97753906250003,33.66782226562509],[73.97646484375016,33.72128906249998],[74.00097656250003,33.78818359375009],[74.07841796875013,33.838671875000074],[74.21562500000013,33.88657226562506],[74.25087890625011,33.9460937500001],[74.24648437500011,33.99018554687504],[74.20898437500009,34.00341796875006],[74.11259765625019,34.00371093749995],[73.9499023437501,34.018798828125],[73.92236328125009,34.04306640624998],[73.90410156250019,34.07568359375006],[73.9039062500001,34.10800781250006],[73.93828125000013,34.144775390625085],[73.97949218750009,34.191308593749966],[73.97236328125004,34.23662109374995],[73.92460937500007,34.287841796875114],[73.80996093750016,34.32534179687511],[73.79453125000006,34.378222656250045],[73.81210937500006,34.422363281249964],[73.85009765625003,34.485302734375004],[73.88310546875013,34.52905273437503],[73.96123046875007,34.653466796874994],[74.05585937500015,34.68066406250003],[74.17197265624995,34.72089843750004],[74.30039062500006,34.76538085937506],[74.49794921875011,34.73203125],[74.59414062500005,34.71577148437507],[74.7887695312501,34.67773437499994],[74.9518554687501,34.645849609375034],[75.11845703125013,34.63681640624998],[75.18750000000014,34.63901367187506],[75.26406250000011,34.60136718750002],[75.45253906250016,34.53671875],[75.60556640625006,34.50273437500002],[75.70917968750004,34.50307617187508],[75.86210937500002,34.56025390625001],[75.93828125000019,34.612548828125],[76.04101562500014,34.66992187499997],[76.17246093750006,34.66772460937505],[76.4567382812501,34.756103515625114],[76.5099609375001,34.74086914062502],[76.5944335937501,34.73583984375006],[76.69628906249997,34.78691406249999],[76.74902343750014,34.84755859375007],[76.7575195312501,34.87783203125005],[76.7829101562501,34.90019531249999],[76.89169921875006,34.938720703125],[77.0008789062501,34.99199218750001],[77.03066406250011,35.06235351562498],[77.04863281250006,35.109912109375074],[77.16855468750006,35.17153320312502],[77.29296875000009,35.2355468750001],[77.42343749999993,35.30258789062506],[77.57158203125002,35.37875976562495],[77.69697265625015,35.443261718750136],[77.79941406250006,35.49589843750002],[77.81093750000011,35.484521484374994],[77.85156250000003,35.46079101562498],[77.89492187500016,35.449023437500045],[77.94589843750006,35.47163085937504],[78.00947265625004,35.490234375000114],[78.0426757812501,35.479785156250095],[78.04746093750006,35.449414062500125],[78.00917968750016,35.306933593750074],[78.01220703125009,35.251025390625045],[78.07578125000006,35.13491210937502],[78.15849609375002,34.94648437499998],[78.23613281250007,34.769824218750074],[78.28203125000019,34.65390625000006],[78.32695312500007,34.60639648437498],[78.51572265625018,34.55795898437506],[78.67080078125016,34.51816406249995],[78.76308593750011,34.45292968749999],[78.86484375000006,34.39033203125001],[78.93642578125,34.35195312500002],[78.97011718750011,34.3026367187501],[78.97695312500016,34.258105468750074],[78.97060546875011,34.22822265625004],[78.93173828125018,34.18896484375003],[78.75302734375018,34.08769531250002],[78.73173828125013,34.05556640625002],[78.72666015625006,34.013378906249955],[78.76171875000003,33.8875976562501],[78.78378906250006,33.80878906250004],[78.78994140625,33.65034179687507],[78.80185546875018,33.499707031250125],[78.86503906250002,33.431103515625004],[78.91669921875015,33.38676757812502],[78.94843750000004,33.346533203125006],[79.01259765625016,33.29145507812498],[79.06650390625012,33.25039062500013],[79.1125,33.22626953125001],[79.13515625000005,33.17192382812496],[79.12167968750005,33.1081054687501],[79.10283203125007,33.05253906249996],[79.10859375000015,33.0226562500001],[79.14550781250003,33.00146484375006],[79.20224609375006,32.946044921875114],[79.20957031250012,32.86484375000009],[79.20556640625003,32.80903320312509],[79.22792968750011,32.75878906249999],[79.23388671875007,32.70307617187501],[79.21650390625004,32.5640136718751],[79.21933593750006,32.50107421875006],[79.16992187500003,32.497216796874994],[79.12734375,32.47578125000007],[79.06699218750022,32.38818359374997],[78.99765625000012,32.36513671875008],[78.91894531249996,32.3582031250001],[78.83789062500009,32.411962890625034],[78.77128906250002,32.4680664062501],[78.75351562500012,32.49926757812506],[78.73671875,32.55839843750001],[78.70087890625003,32.59702148437506],[78.63154296875004,32.57895507812495],[78.52636718750003,32.57080078125006],[78.41250000000011,32.55771484375006],[78.39169921875012,32.544726562500074],[78.38964843749997,32.51987304687498],[78.41748046874997,32.466699218749994],[78.44130859375011,32.39736328125008],[78.45527343750008,32.30034179687502],[78.4861328124999,32.23623046875011],[78.49589843750002,32.21577148437504],[78.67773437500014,32.023046875000034],[78.72558593750009,31.98378906250002],[78.73544921875016,31.957958984375097],[78.71972656250009,31.887646484374983]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"British Virgin Islands","adm0_a3":"VGB","geou_dif":0,"geounit":"British Virgin Islands","gu_a3":"VGB","su_dif":0,"subunit":"British Virgin Islands","su_a3":"VGB","brk_diff":0,"name":"British Virgin Is.","name_long":"British Virgin Islands","brk_a3":"VGB","brk_name":"British Virgin Is.","brk_group":null,"abbrev":"V.I. (Br.)","postal":"VG","formal_en":"British Virgin Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"British Virgin Islands","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":24491,"gdp_md_est":853.4,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"VG","iso_a3":"VGB","iso_n3":"092","un_a3":"092","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"VGB","adm0_a3_us":"VGB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":18,"long_len":22,"abbrev_len":10,"tiny":3,"homepart":-99,"filename":"VGB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.59365234374997,18.40283203124997],[-64.67182617187501,18.39912109375001],[-64.69511718749996,18.411669921875017],[-64.6509765625,18.442529296874994],[-64.56914062499996,18.44628906250003],[-64.54516601562494,18.438134765624966],[-64.59365234374997,18.40283203124997]]],[[[-64.39521484374995,18.46459960937503],[-64.421142578125,18.45742187499999],[-64.43803710937499,18.458984375000057],[-64.44375,18.473388671875057],[-64.42607421874993,18.513085937499966],[-64.32465820312498,18.517480468749966],[-64.39521484374995,18.46459960937503]]],[[[-64.28789062499993,18.740576171875034],[-64.27358398437495,18.707128906249977],[-64.28232421874995,18.70771484375001],[-64.33945312499998,18.730712890624996],[-64.38339843750003,18.73261718750001],[-64.40146484374998,18.738574218749985],[-64.41142578124996,18.751171874999983],[-64.323095703125,18.75268554687503],[-64.28789062499993,18.740576171875034]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Indian Ocean Territories","adm0_a3":"IOA","geou_dif":0,"geounit":"Indian Ocean Territories","gu_a3":"IOA","su_dif":0,"subunit":"Indian Ocean Territories","su_a3":"IOA","brk_diff":0,"name":"Indian Ocean Ter.","name_long":"Indian Ocean Territories","brk_a3":"IOA","brk_name":"Indian Ocean Ter.","brk_group":null,"abbrev":"Ind. Oc. Ter.","postal":"IOT","formal_en":null,"formal_fr":null,"note_adm0":"Auz.","note_brk":null,"name_sort":"Indian Ocean Territories","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":2069,"gdp_md_est":31.035,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"AUS","adm0_a3_us":"AUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Seven seas (open ocean)","subregion":"Seven seas (open ocean)","region_wb":"East Asia & Pacific","name_len":17,"long_len":24,"abbrev_len":13,"tiny":-99,"homepart":-99,"filename":"indianoceanter.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[96.91826171875007,-12.194140625000031],[96.90654296875002,-12.199804687500034],[96.89677734375007,-12.19550781250004],[96.89394531249998,-12.192578124999983],[96.89296875,-12.18720703125004],[96.90439453125012,-12.186523437499986],[96.91337890625006,-12.18183593750001],[96.91894531250003,-12.173339843749972],[96.92050781250006,-12.161523437499952],[96.92529296874997,-12.173242187500037],[96.92431640624997,-12.184667968749963],[96.91826171875007,-12.194140625000031]]],[[[96.8404296875001,-12.18183593750001],[96.851953125,-12.186816406249958],[96.8673828125001,-12.181445312500017],[96.87363281250006,-12.187695312499955],[96.84951171874998,-12.197363281249977],[96.83486328125005,-12.179687500000014],[96.8277343750001,-12.150683593749974],[96.8258789062501,-12.12617187500004],[96.8326171875001,-12.12617187500004],[96.8326171875001,-12.136035156250003],[96.8341796875001,-12.144140624999963],[96.83945312500012,-12.160253906249963],[96.83564453125003,-12.171289062499994],[96.8404296875001,-12.18183593750001]]],[[[105.72539062500002,-10.492968750000017],[105.696875,-10.564160156249955],[105.64433593750002,-10.525],[105.58408203125012,-10.5125],[105.59570312499997,-10.459667968749983],[105.64550781250001,-10.452246093749991],[105.66982421875,-10.449414062500026],[105.70546875000004,-10.430664062500028],[105.72539062500002,-10.492968750000017]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Iran","sov_a3":"IRN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iran","adm0_a3":"IRN","geou_dif":0,"geounit":"Iran","gu_a3":"IRN","su_dif":0,"subunit":"Iran","su_a3":"IRN","brk_diff":0,"name":"Iran","name_long":"Iran","brk_a3":"IRN","brk_name":"Iran","brk_group":null,"abbrev":"Iran","postal":"IRN","formal_en":"Islamic Republic of Iran","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iran, Islamic Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":3,"mapcolor9":4,"mapcolor13":13,"pop_est":66429284,"gdp_md_est":841700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"IR","iso_a3":"IRN","iso_n3":"364","un_a3":"364","wb_a2":"IR","wb_a3":"IRN","woe_id":-99,"adm0_a3_is":"IRN","adm0_a3_us":"IRN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"IRN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[56.18798828125002,26.92114257812497],[56.0949218750001,26.80117187500005],[55.95429687500004,26.70112304687501],[55.894140625,26.732275390625034],[55.847656249999964,26.730810546875006],[55.74726562500003,26.692480468750034],[55.674609375000074,26.68583984374999],[55.54316406250004,26.617529296875034],[55.42373046875005,26.58310546875003],[55.340429687500006,26.585742187500045],[55.31152343749997,26.592626953125002],[55.29501953125,26.639208984375014],[55.29648437500006,26.657568359375006],[55.34697265625002,26.64794921875],[55.53173828125003,26.710009765625042],[55.76259765625005,26.81196289062504],[55.784570312499994,26.857177734375],[55.747460937499994,26.930957031250014],[55.75761718750002,26.94765625000005],[55.907128906249994,26.909814453124966],[56.074121093749994,26.98334960937504],[56.21396484375,27.003271484375002],[56.279394531250006,26.952099609374983],[56.18798828125002,26.92114257812497]]],[[[45.00019531250004,39.42353515625001],[45.071679687499994,39.362890625],[45.11308593750002,39.311572265625045],[45.14121093750006,39.25429687499999],[45.190625,39.215625],[45.255957031250006,39.194677734375034],[45.33554687500006,39.13916015625],[45.38925781250006,39.09589843749998],[45.4796875000001,39.00625],[45.575,38.97280273437502],[45.921875,38.907910156249955],[46.1144531250001,38.877783203125034],[46.1701171875001,38.86904296875002],[46.31777343750005,38.912646484375045],[46.490625,38.90668945312498],[46.554785156250006,38.904394531250034],[46.78320312500003,39.08740234375003],[46.85253906250003,39.14843750000003],[46.98886718750006,39.18017578125],[47.06542968750003,39.25288085937498],[47.188378906250044,39.340966796874994],[47.33847656250006,39.42387695312498],[47.47617187500006,39.49833984374999],[47.581835937500074,39.54335937499999],[47.772851562499994,39.64858398437505],[47.8922851562501,39.68505859374999],[47.995898437500074,39.683935546875034],[48.15107421875004,39.56054687500006],[48.28173828125003,39.448339843750006],[48.322167968749994,39.399072265625016],[48.257226562499994,39.35498046875],[48.13603515625002,39.312353515625006],[48.112890625,39.28110351562503],[48.10439453125005,39.241113281249994],[48.10917968750007,39.20283203125001],[48.125488281249964,39.17163085937503],[48.2741210937501,39.09912109375],[48.29101562499997,39.05927734374998],[48.292089843750006,39.01884765624999],[48.2750976562501,38.99360351562501],[48.24199218750001,38.978955078124955],[48.138574218749994,38.958642578124994],[48.05009765625002,38.93500976562498],[48.01933593750001,38.911816406249955],[47.99267578125003,38.88427734375003],[47.99648437499999,38.85375976562503],[48.02324218750002,38.81904296874998],[48.20468750000006,38.72412109375],[48.22519531250006,38.689208984375],[48.261328125000055,38.64228515625001],[48.305566406249994,38.61347656250001],[48.38125,38.605615234375016],[48.41738281250005,38.58623046874995],[48.59267578125005,38.41108398437498],[48.63554687500007,38.39873046874996],[48.84033203124997,38.437255859375],[48.86875,38.43549804687498],[48.870703125,38.39252929687503],[48.90136718749997,38.143652343750034],[48.92509765625002,38.015136718749964],[48.95996093750003,37.89013671875],[49.0153320312501,37.77607421875004],[49.08095703125005,37.667578125000034],[49.171191406250074,37.60058593749997],[49.372460937499994,37.51997070312498],[49.47011718749999,37.496679687500034],[49.726953125000044,37.480517578125045],[49.98066406250004,37.44487304687496],[50.13046875,37.40712890624999],[50.17626953124997,37.380517578124994],[50.21406250000004,37.33959960937503],[50.33789062499997,37.14916992187503],[50.53320312499997,37.01367187500006],[50.9274414062501,36.810205078124994],[51.11855468750005,36.742578124999966],[51.76201171875002,36.614501953125],[52.19013671875004,36.62172851562505],[53.37412109375,36.86875],[53.76767578125006,36.93032226562502],[53.91542968750005,36.93032226562502],[53.827441406250074,36.88120117187498],[53.67949218750002,36.853125],[53.76875,36.81845703124998],[53.90625,36.812695312499955],[53.970117187499994,36.818310546874955],[54.016210937500006,36.849658203125045],[54.02382812500005,36.90131835937498],[54.0171875,36.95249023437503],[53.95195312500002,37.181738281250006],[53.91416015625006,37.34355468750002],[54.1916015625001,37.33247070312498],[54.29980468750002,37.353613281250034],[54.4586914062501,37.407568359375],[54.578906250000074,37.44023437499998],[54.63964843749997,37.44472656250002],[54.69941406250009,37.47016601562498],[54.745214843750006,37.501904296874955],[54.84863281250003,37.72265624999997],[54.90009765625004,37.77792968750006],[55.075585937499994,37.90249023437502],[55.224707031250006,37.98134765625002],[55.38085937500003,38.051123046875034],[55.57841796875001,38.099755859374994],[55.84130859375002,38.094628906249994],[56.050292968749964,38.077539062499994],[56.171191406250074,38.07836914062497],[56.22880859375001,38.07338867187502],[56.2720703125,38.080419921875034],[56.296972656250006,38.094824218750034],[56.324121093750044,38.19111328125004],[56.36689453125004,38.222509765625034],[56.440625,38.249414062499994],[56.54404296875,38.249609375000034],[56.66992187499997,38.25664062499996],[56.7746093750001,38.25004882812496],[56.90664062499999,38.213037109374966],[57.079003906249994,38.20996093750006],[57.1935546875001,38.216406250000034],[57.26015625000005,38.179589843749994],[57.308105468749964,38.13037109375],[57.33144531249999,38.08930664062498],[57.33671875000002,38.032910156249955],[57.33574218750001,37.98994140624998],[57.35371093750004,37.97333984374998],[57.42382812500002,37.947705078125004],[57.52099609374997,37.928466796875],[57.71054687500006,37.90527343749997],[57.88818359375002,37.86083984374997],[57.98056640625,37.830468750000016],[58.108789062499994,37.783056640625034],[58.26162109374999,37.665820312500045],[58.31816406250001,37.64721679687497],[58.38671874999998,37.63535156250006],[58.4357421875001,37.63852539062497],[58.55048828125004,37.68818359374998],[58.65019531250002,37.65156249999998],[58.70078125,37.65625],[58.81542968750003,37.683496093749994],[58.93720703125004,37.64965820312503],[59.240820312500006,37.52075195312497],[59.27412109375004,37.52373046874996],[59.30175781249997,37.51064453125005],[59.32695312500002,37.48115234374998],[59.344726562500036,37.44472656250002],[59.3673828125001,37.333740234374964],[59.454980468749994,37.25283203125002],[59.56220703125009,37.178906249999955],[59.68720703125004,37.13847656249999],[59.94863281250005,37.04160156250006],[60.06279296875001,36.96289062499999],[60.1783203125,36.829443359375006],[60.32070312499999,36.65356445312506],[60.34130859375002,36.63764648437501],[60.707910156249994,36.64296875000002],[61.11962890625003,36.64257812500003],[61.16992187499997,36.572265625],[61.160351562500104,36.432714843750006],[61.17509765625007,36.289697265624994],[61.21201171875,36.190527343750034],[61.21240234375003,36.099121093749964],[61.18261718749997,36.05283203125006],[61.159472656250074,35.99990234375002],[61.15292968750006,35.976757812500004],[61.20585937500001,35.943701171875034],[61.25214843750004,35.86762695312498],[61.25869140625005,35.761816406250006],[61.23554687500003,35.70556640625],[61.2388671875,35.659277343750006],[61.26201171875002,35.61958007812498],[61.28183593750006,35.55341796875001],[61.2785156250001,35.513769531250006],[61.245507812499994,35.47407226562501],[61.22568359375007,35.42446289062502],[61.199218749999964,35.36162109375002],[61.18925781250002,35.31201171875003],[61.13964843750002,35.28886718750002],[61.1,35.272314453125034],[61.10664062500003,35.20947265625003],[61.12646484375003,35.15654296874999],[61.1496093750001,35.09375],[61.12314453125006,35.05073242187501],[61.10664062500003,35.00112304687502],[61.070214843749994,34.921728515625006],[61.080078124999964,34.85561523437505],[61.040429687499994,34.799365234375045],[60.9908203125,34.74975585937497],[60.95781250000001,34.71005859375006],[60.951171874999964,34.65385742187499],[60.91474609375004,34.633984375],[60.8453125,34.58769531249998],[60.802343750000055,34.55463867187501],[60.73945312500003,34.544726562500045],[60.726269531250104,34.518261718749976],[60.73613281250007,34.491796875],[60.76259765625005,34.475244140624994],[60.80390625000009,34.41801757812499],[60.88945312500001,34.31943359375006],[60.64267578125,34.30717773437496],[60.57021484374999,34.219628906249966],[60.485742187500044,34.09477539062502],[60.52705078125009,33.841992187499955],[60.4859375,33.7119140625],[60.51083984375,33.63891601562497],[60.57382812500006,33.58833007812498],[60.654589843750074,33.56040039062506],[60.80644531250002,33.55869140625006],[60.90693359375004,33.53896484375005],[60.91699218749997,33.505224609375006],[60.859277343749994,33.45625],[60.76689453125001,33.36381835937496],[60.718066406250024,33.32353515625002],[60.56054687499997,33.13784179687502],[60.561914062499994,33.05878906250001],[60.57656249999999,32.99487304687503],[60.644531249999964,32.794384765624955],[60.71044921874997,32.6],[60.82929687500004,32.24941406250005],[60.82724609375006,32.16796874999997],[60.78994140624999,31.987109374999985],[60.7875,31.87719726562497],[60.804296875,31.73447265625003],[60.791601562500006,31.660595703124983],[60.82070312499999,31.49516601562505],[60.8541015625,31.483251953125006],[61.110742187499994,31.451123046875036],[61.34648437500007,31.42163085937497],[61.66015625000003,31.382421874999974],[61.755078125000104,31.28530273437499],[61.81425781250007,31.07255859375002],[61.81083984375007,30.913281249999983],[61.784179687499964,30.831933593750026],[61.55947265625005,30.59936523437497],[61.331640625000055,30.363720703125008],[61.10410156250006,30.128417968750025],[60.868164062499964,29.884375],[60.84335937500006,29.858691406249985],[61.03417968750003,29.663427734374974],[61.152148437500024,29.542724609374996],[61.31835937500003,29.37260742187499],[61.33945312500006,29.331787109375025],[61.33789062500003,29.26499023437501],[61.50859375000007,29.006054687500015],[61.56875,28.87089843749999],[61.62304687500002,28.791601562500006],[61.75800781250004,28.66767578124998],[61.88984375000009,28.546533203124994],[62.03300781250001,28.49101562499996],[62.13056640625003,28.478808593749957],[62.35302734374997,28.414746093749983],[62.43388671875002,28.363867187500006],[62.56455078125007,28.235156249999985],[62.71757812500007,28.252783203125006],[62.749414062499994,28.252880859375036],[62.75800781250004,28.243554687499994],[62.7625,28.20205078124999],[62.739746093749964,28.002050781250006],[62.782324218750006,27.800537109375],[62.81201171875003,27.497021484374983],[62.800878906250055,27.44453125000001],[62.764257812500055,27.35673828124999],[62.7625,27.300195312500023],[62.75273437500001,27.265625],[62.762988281250074,27.250195312499955],[62.81162109375006,27.229443359374983],[62.91542968750006,27.218408203124966],[63.166796875000024,27.25249023437499],[63.19609375000002,27.243945312500017],[63.25625,27.207910156250048],[63.30156250000001,27.151464843750002],[63.30517578124997,27.124560546875014],[63.24208984374999,27.07768554687499],[63.23144531250003,26.998144531250034],[63.25039062499999,26.87924804687506],[63.24160156250005,26.86474609375003],[63.186132812500055,26.83759765625001],[63.168066406250006,26.66557617187496],[63.15781250000006,26.649755859375034],[63.09296875000003,26.63232421875003],[62.78662109375002,26.643896484374977],[62.751562500000055,26.63916015625],[62.63642578125003,26.59365234375005],[62.43925781250002,26.56103515624997],[62.38505859375002,26.54262695312505],[62.31230468750001,26.490869140624994],[62.25966796875005,26.42749023437503],[62.249609375,26.369238281249977],[62.23935546875006,26.357031249999977],[62.125976562499964,26.368994140625034],[62.0890625000001,26.31826171874999],[61.8698242187501,26.242431640625],[61.842382812500006,26.225927734375006],[61.809960937499994,26.165283203125],[61.78076171874997,25.99584960937503],[61.75439453125003,25.84335937500006],[61.73769531249999,25.821093750000045],[61.66865234375004,25.76899414062501],[61.6618164062501,25.751269531250017],[61.671386718749964,25.692382812500025],[61.64013671875003,25.584619140624994],[61.61542968750003,25.286132812500025],[61.58789062499997,25.20234375],[61.533105468749994,25.19550781249995],[61.49033203125006,25.15366210937506],[61.41220703125006,25.102099609375017],[61.24296875000002,25.14199218749999],[61.1085937500001,25.183886718749985],[60.66386718750001,25.28222656250003],[60.61513671874999,25.329833984374968],[60.5875,25.413525390624955],[60.51054687500002,25.437060546875045],[60.40019531250002,25.31157226562507],[60.024707031250074,25.384130859375002],[59.8970703125,25.36181640625],[59.81835937499997,25.400878906250057],[59.61601562500001,25.40327148437501],[59.45605468749997,25.481494140625045],[59.22724609375003,25.42773437500003],[59.0460937500001,25.417285156250017],[58.79785156249997,25.55458984375002],[58.530859375,25.592431640624994],[58.31425781250007,25.580859375000045],[58.20292968750002,25.591601562500017],[58.022363281249994,25.640820312500008],[57.93662109375001,25.691650390625053],[57.7960937500001,25.65302734375001],[57.73251953125,25.724902343749985],[57.334570312500006,25.791552734375074],[57.26093750000003,25.918847656249966],[57.205566406249964,26.037207031250006],[57.20136718750009,26.15883789062502],[57.10429687500002,26.371435546874977],[57.0719726562501,26.68007812499999],[57.03603515625005,26.80068359375005],[56.98222656250002,26.905468749999983],[56.910449218750074,26.99458007812501],[56.81289062499999,27.089990234374994],[56.728125,27.127685546875057],[56.3561523437501,27.20024414062499],[56.284375,27.190625],[56.11806640624999,27.14311523437499],[55.9411132812501,27.037597656249996],[55.650292968749994,26.977539062499996],[55.59160156250002,26.93212890625],[55.518554687499964,26.82993164062503],[55.4240234375001,26.770556640625017],[55.29414062500009,26.7859375],[55.15458984375002,26.72539062499999],[54.89580078125002,26.55668945312499],[54.75927734375002,26.50507812500004],[54.64492187499999,26.508935546875023],[54.522070312500006,26.589160156250017],[54.24707031250003,26.696630859374977],[54.06933593749997,26.73237304687498],[53.822558593750074,26.707714843750008],[53.70576171875004,26.725585937500025],[53.50712890625002,26.851757812499955],[53.45498046875005,26.94326171875005],[53.34169921875005,27.004492187500006],[52.98251953125006,27.141943359375002],[52.69160156250004,27.323388671875023],[52.638183593749964,27.391992187499966],[52.60263671875006,27.49335937500001],[52.475878906250074,27.61650390624999],[52.19189453125003,27.717285156249996],[52.030761718749964,27.824414062499955],[51.84199218750003,27.848242187500034],[51.666308593750074,27.84497070312497],[51.58906250000004,27.864208984374983],[51.51855468749997,27.910009765625006],[51.27890625,28.13134765624997],[51.27607421875004,28.21884765625003],[51.128417968749964,28.435156250000034],[51.09384765625006,28.51210937499999],[51.06201171874997,28.72612304687499],[51.0211914062501,28.782080078125034],[50.86699218750002,28.870166015625014],[50.8429687500001,28.92783203125006],[50.87578125000002,29.004394531250032],[50.87578125000002,29.06269531249998],[50.795507812500006,29.117431640625053],[50.67519531250005,29.146582031250034],[50.64609375000006,29.21220703124999],[50.667968749999964,29.339843749999975],[50.64960937500004,29.420068359374966],[50.54355468750006,29.547998046875023],[50.3869140625001,29.679052734374977],[50.23017578125004,29.872900390625034],[50.16894531250003,29.92124023437503],[50.12890625000003,30.048095703125025],[50.071582031250074,30.198535156250014],[49.9831054687501,30.209375],[49.55488281250004,30.028955078125026],[49.42998046875002,30.13046875],[49.05429687500006,30.30693359374999],[49.028125,30.333447265624983],[49.00195312500003,30.37392578124997],[49.04902343750003,30.397265625000014],[49.096191406249964,30.40678710937499],[49.190332031250044,30.37539062499999],[49.2472656250001,30.4125],[49.224511718749994,30.47231445312502],[49.130371093749964,30.509423828125023],[49.00195312500003,30.50654296874998],[49.03710937499997,30.450488281250017],[48.91679687500002,30.397265625000014],[48.891210937500006,30.32763671875003],[48.90869140625002,30.24145507812497],[48.91914062500004,30.12089843750002],[48.87011718749997,30.06240234374999],[48.83242187500005,30.03549804687503],[48.670898437499964,30.0283203125],[48.59550781250002,29.975048828124983],[48.54648437500006,29.96235351562495],[48.478515624999964,30.003808593749966],[48.43457031249997,30.03759765625],[48.39863281250004,30.10961914062503],[48.387597656249994,30.159863281249955],[48.401367187499964,30.188330078124974],[48.382617187500074,30.230175781249983],[48.33105468749997,30.285449218749964],[48.27890625,30.31582031250002],[48.226171875,30.321337890624985],[48.18242187500007,30.355029296875017],[48.14755859375006,30.416845703125002],[48.06611328125004,30.457666015624966],[48.01494140625002,30.465625],[48.01347656250002,30.656445312499958],[48.012011718750074,30.823632812500023],[48.01064453125005,30.989794921875014],[47.836328125000044,30.996435546875034],[47.679492187500074,31.00239257812501],[47.679492187500074,31.141503906250023],[47.679492187500074,31.400585937499958],[47.75390624999997,31.601367187500017],[47.82998046874999,31.794433593749996],[47.71455078125004,31.936425781249966],[47.5915039062501,32.087988281250034],[47.51191406250004,32.15083007812504],[47.41816406250004,32.34008789062506],[47.3712890625001,32.42373046875002],[47.3297851562501,32.45551757812501],[47.28515625000002,32.474023437499966],[47.121386718750074,32.46660156249996],[46.96855468750002,32.56840820312502],[46.789062499999964,32.68798828125006],[46.569921875,32.83393554687501],[46.37705078125006,32.92924804687498],[46.29824218750005,32.95024414062502],[46.11279296875003,32.957666015624994],[46.09306640625002,32.97587890624999],[46.08046875,33.028222656249994],[46.0807617187501,33.08652343750006],[46.14111328125002,33.174414062500034],[46.145898437499994,33.229638671874994],[46.01992187500005,33.41572265624998],[45.981054687500006,33.47011718750005],[45.8732421875001,33.49199218749996],[45.8947265625001,33.54565429687497],[45.8947265625001,33.58154296875],[45.87939453124997,33.60976562499999],[45.85449218749997,33.62333984374998],[45.822851562500006,33.62480468750002],[45.73828125000003,33.60283203124999],[45.673730468749994,33.68666992187502],[45.473242187500006,33.92548828125001],[45.408984375000074,33.95449218750005],[45.39707031250006,33.970849609374994],[45.44609375000002,34.044042968750006],[45.52861328125002,34.152539062499976],[45.542773437500074,34.21552734375004],[45.52685546875003,34.28466796875],[45.43759765625006,34.41513671875],[45.459375,34.470361328124994],[45.49775390625003,34.533886718749955],[45.50078125000002,34.58159179687499],[45.56083984375002,34.57451171874999],[45.6375,34.573828125],[45.661523437499994,34.61269531250002],[45.660058593749994,34.74877929687503],[45.678125,34.798437500000034],[45.92089843750002,35.02851562500001],[46.04179687500002,35.08017578125006],[46.13378906249997,35.12763671874995],[46.15468750000005,35.19672851562498],[46.13574218749997,35.232275390625034],[46.11777343750006,35.28427734374998],[46.11210937500007,35.32167968750005],[46.010644531249994,35.4248046875],[45.97539062500002,35.47680664062503],[45.97109375000005,35.524169921875],[45.99501953124999,35.608105468749955],[46.03740234375002,35.67314453124999],[46.180957031250074,35.71137695312504],[46.2625,35.74414062500006],[46.27343749999997,35.77324218750002],[46.16748046874997,35.820556640625],[45.94140625000003,35.83540039062498],[45.77636718749997,35.82182617187499],[45.72343750000002,35.83666992187497],[45.64501953125002,35.92836914062502],[45.561621093750006,35.97719726562502],[45.48378906250005,36.008544921875],[45.40771484375003,36.00278320312498],[45.36162109375001,36.015332031249955],[45.350878906250074,36.05463867187498],[45.241113281249994,36.35595703125],[45.20654296874997,36.397167968749955],[45.155273437499964,36.407373046874994],[45.11240234375006,36.409277343750034],[45.08378906250002,36.43002929687498],[45.053125,36.47163085937501],[45.03105468750002,36.52607421875001],[45.029394531250006,36.59755859375002],[45.033984375000074,36.65888671874998],[45.0192382812501,36.698388671875016],[44.98144531250003,36.73769531250005],[44.92783203125,36.76591796875002],[44.88085937499997,36.79931640625],[44.79843750000006,37.063867187499966],[44.765429687500074,37.135009765625],[44.76513671875003,37.142431640625006],[44.76669921875006,37.15634765624998],[44.75830078125003,37.21708984375002],[44.79677734375005,37.26977539062499],[44.79414062500003,37.29038085937503],[44.71513671875001,37.35712890625004],[44.60410156250006,37.42373046875002],[44.574023437500074,37.435400390625],[44.573144531249994,37.50639648437499],[44.57714843749997,37.560205078125016],[44.56718750000002,37.60864257812503],[44.54609375000003,37.63632812499998],[44.5453125,37.65815429687498],[44.58994140625,37.71035156249996],[44.56123046875004,37.74462890625003],[44.39775390625002,37.82924804687502],[44.33623046875002,37.87177734374998],[44.22294921875002,37.88017578125002],[44.21132812499999,37.908056640625006],[44.22890625,37.96718749999996],[44.26796875,38.038818359375],[44.329394531250074,38.109277343749966],[44.34892578125002,38.146484375],[44.37275390625009,38.209716796875],[44.38085937499997,38.25458984374998],[44.44960937500005,38.317773437499994],[44.44990234375009,38.33422851562506],[44.43085937500004,38.356787109375034],[44.37578125000001,38.36958007812498],[44.31962890625002,38.374707031249955],[44.2985351562501,38.38627929687499],[44.29082031250002,38.420117187499955],[44.29785156250003,38.557812499999955],[44.28017578124999,38.64067382812496],[44.25703125000004,38.70063476562501],[44.27167968750004,38.83603515625006],[44.23242187500003,38.86323242187501],[44.170800781249994,38.934375],[44.14453124999997,38.994384765625],[44.158789062500006,39.01674804687502],[44.171875,39.05625],[44.180566406249994,39.10805664062496],[44.17802734375002,39.14482421874998],[44.12128906250004,39.18061523437501],[44.07910156249997,39.218310546875045],[44.07431640625006,39.25996093750001],[44.05751953124999,39.31083984374999],[44.03378906250006,39.35102539062498],[44.02324218750002,39.37744140625005],[44.04394531249997,39.39296875000002],[44.12402343749997,39.40522460937501],[44.24042968750004,39.39677734374998],[44.33544921874997,39.39604492187502],[44.3893554687501,39.422119140625],[44.455957031249994,39.666748046875],[44.51669921875,39.73125],[44.58710937500004,39.76855468750006],[44.725,39.681738281250034],[44.782128906249994,39.65107421875001],[44.81718750000002,39.65043945312496],[44.838183593750074,39.62910156249998],[45.00019531250004,39.42353515625001]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Iraq","sov_a3":"IRQ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iraq","adm0_a3":"IRQ","geou_dif":0,"geounit":"Iraq","gu_a3":"IRQ","su_dif":0,"subunit":"Iraq","su_a3":"IRQ","brk_diff":0,"name":"Iraq","name_long":"Iraq","brk_a3":"IRQ","brk_name":"Iraq","brk_group":null,"abbrev":"Iraq","postal":"IRQ","formal_en":"Republic of Iraq","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iraq","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":3,"mapcolor13":1,"pop_est":31129225,"gdp_md_est":103900,"pop_year":-99,"lastcensus":1997,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"IQ","iso_a3":"IRQ","iso_n3":"368","un_a3":"368","wb_a2":"IQ","wb_a3":"IRQ","woe_id":-99,"adm0_a3_is":"IRQ","adm0_a3_us":"IRQ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"IRQ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[44.76513671875,37.142431640625],[44.76542968750002,37.135009765625],[44.7984375,37.063867187499994],[44.880859375,36.79931640625],[44.92783203125,36.765917968749996],[44.9814453125,36.73769531249999],[45.01923828125001,36.698388671874994],[45.03398437500001,36.65888671875],[45.029394531250006,36.597558593749994],[45.03105468750002,36.52607421875],[45.053125,36.471630859375],[45.08378906250002,36.430029296875],[45.112402343750006,36.40927734375],[45.1552734375,36.407373046874994],[45.20654296874999,36.39716796875],[45.24111328125002,36.35595703125],[45.35087890625002,36.054638671875],[45.36162109375001,36.01533203125],[45.40771484374999,36.002783203125],[45.48378906250002,36.008544921875],[45.561621093750006,35.977197265624994],[45.64501953125,35.92836914062499],[45.72343750000002,35.836669921875],[45.7763671875,35.821826171874996],[45.94140625,35.835400390625],[46.16748046875,35.820556640625],[46.2734375,35.773242187499996],[46.2625,35.74414062499999],[46.18095703125002,35.711376953125],[46.03740234375002,35.673144531249996],[45.99501953125002,35.60810546874999],[45.97109375000002,35.524169921875],[45.97539062500002,35.476806640625],[46.01064453125002,35.4248046875],[46.11210937500001,35.321679687499994],[46.117773437500006,35.28427734375],[46.1357421875,35.232275390625],[46.15468750000002,35.196728515625],[46.1337890625,35.12763671875],[46.04179687500002,35.08017578125],[45.9208984375,35.02851562499999],[45.678125,34.7984375],[45.66005859375002,34.74877929687499],[45.661523437500016,34.612695312499994],[45.6375,34.573828125],[45.56083984375002,34.574511718749996],[45.50078125000002,34.581591796874996],[45.49775390625001,34.53388671875],[45.459375,34.470361328124994],[45.437597656250006,34.41513671875],[45.52685546875,34.28466796875],[45.54277343750001,34.21552734375],[45.52861328125002,34.1525390625],[45.44609375000002,34.04404296875],[45.397070312500006,33.970849609374994],[45.40898437500002,33.954492187499994],[45.473242187500006,33.92548828125],[45.67373046875002,33.686669921874994],[45.73828125,33.602832031249996],[45.822851562500006,33.62480468749999],[45.85449218749999,33.623339843749996],[45.87939453125,33.60976562499999],[45.894726562500004,33.58154296875],[45.894726562500004,33.545654296875],[45.87324218750001,33.491992187499996],[45.981054687500006,33.47011718749999],[46.01992187500002,33.41572265625],[46.14589843750002,33.229638671874994],[46.14111328125,33.1744140625],[46.080761718750004,33.0865234375],[46.080468750000016,33.028222656249994],[46.09306640625002,32.975878906249996],[46.11279296875,32.957666015624994],[46.29824218750002,32.950244140624996],[46.377050781250006,32.929248046874996],[46.569921875,32.833935546875],[46.7890625,32.68798828125],[46.96855468750002,32.568408203124996],[47.12138671875002,32.466601562499996],[47.28515625,32.474023437499994],[47.329785156250004,32.455517578125],[47.37128906250001,32.423730468749994],[47.41816406250001,32.340087890625],[47.511914062500004,32.150830078125],[47.59150390625001,32.08798828125],[47.714550781250004,31.93642578124999],[47.82998046875002,31.794433593749996],[47.75390625,31.601367187499992],[47.67949218750002,31.400585937499994],[47.67949218750002,31.14150390624999],[47.67949218750002,31.002392578124994],[47.83632812500002,30.996435546874995],[48.01064453125002,30.989794921874996],[48.01201171875002,30.823632812499994],[48.01347656250002,30.656445312499994],[48.01494140625002,30.465625],[48.06611328125001,30.45766601562499],[48.147558593750006,30.416845703124995],[48.18242187500002,30.355029296874996],[48.226171875,30.321337890624992],[48.27890625,30.315820312499994],[48.33105468749999,30.285449218749992],[48.38261718750001,30.230175781249997],[48.4013671875,30.188330078125],[48.38759765625002,30.159863281249997],[48.39863281250001,30.109619140624996],[48.4345703125,30.03759765625],[48.478515625,30.00380859374999],[48.546484375,29.962353515624994],[48.454199218750006,29.9384765625],[48.354589843750006,29.956738281249997],[48.141699218750006,30.04091796874999],[48.07275390625,30.043212890625],[47.982519531250006,30.011328125],[47.97871093750001,29.9828125],[47.75390625,30.076611328124997],[47.67275390625002,30.095605468749994],[47.64375,30.097314453124994],[47.51484375000001,30.09648437499999],[47.33134765625002,30.0796875],[47.223242187500006,30.04150390625],[47.14824218750002,30.0009765625],[47.114355468750006,29.96132812499999],[47.10205078125,29.939990234374996],[47.043652343750004,29.822998046875],[46.97597656250002,29.6728515625],[46.905859375,29.5375],[46.76933593750002,29.347460937499992],[46.69375,29.25966796874999],[46.53144531250001,29.096240234374992],[46.3564453125,29.063671875],[45.94970703125,29.09584960937499],[45.49892578125002,29.131542968749994],[45.05029296875,29.167089843749995],[44.716503906250004,29.193603515625],[44.690820312500016,29.20234375],[44.36074218750002,29.435253906249994],[44.099609375,29.619335937499997],[43.77373046875002,29.84921875],[43.44082031250002,30.083984375],[43.103125,30.322216796874997],[42.85771484375002,30.49521484375],[42.55976562500001,30.717773437499996],[42.28857421875,30.92041015625],[42.07441406250001,31.080371093749996],[41.79970703125002,31.220361328124994],[41.585058593750006,31.32973632812499],[41.2724609375,31.489013671874996],[41.0224609375,31.616357421874994],[40.80839843750001,31.725439453124995],[40.47890625000002,31.893359375],[40.369335937500004,31.938964843749996],[40.02783203125,31.995019531249994],[39.7041015625,32.042529296874996],[39.36865234374999,32.091748046875],[39.14541015625002,32.12451171875],[39.29277343750002,32.24384765625],[39.24746093750002,32.350976562499994],[39.14003906250002,32.331201171874994],[39.04140625000002,32.30566406249999],[38.98164062500001,32.472558593749994],[39.05781250000001,32.4931640625],[38.987402343750006,32.710693359375],[38.91484375000002,32.93466796875],[38.84501953125002,33.15087890625],[38.773535156250006,33.372216796874994],[39.056738281250006,33.514013671875],[39.26835937500002,33.620019531249994],[39.564453125,33.768359375],[39.85,33.911376953125],[40.12197265625002,34.04765625],[40.421484375,34.19775390625],[40.689453125,34.33203125],[40.93505859375,34.38657226562499],[40.987011718750004,34.429052734375],[41.09902343750002,34.6123046875],[41.19472656250002,34.768994140625],[41.19921875,34.805322265624994],[41.19960937500002,35.027392578124996],[41.21640625,35.28818359374999],[41.24833984375002,35.427490234375],[41.303320312500006,35.550634765625],[41.3541015625,35.640429687499996],[41.359375,35.724609375],[41.352636718750006,35.809960937499994],[41.30019531250002,35.93896484374999],[41.24560546875,36.073388671874994],[41.25175781250002,36.203027343749994],[41.261816406250006,36.2724609375],[41.295996093750006,36.383349609374996],[41.35419921875001,36.464404296874996],[41.41679687500002,36.5146484375],[41.65019531250002,36.56640625],[41.78857421875,36.59716796875],[41.97402343750002,36.7408203125],[42.083984375,36.826025390625],[42.2373046875,36.9611328125],[42.35009765624999,37.060595703124996],[42.35908203125001,37.095019531249996],[42.358984375,37.10859375],[42.45585937500002,37.128710937499996],[42.63544921875001,37.249267578125],[42.74111328125002,37.3619140625],[42.77460937500001,37.371875],[42.869140625,37.33491210937499],[42.936621093750006,37.324755859374996],[43.09248046875001,37.3673828125],[43.18515625,37.344873046874994],[43.26308593750002,37.31650390625],[43.30673828125,37.3146484375],[43.51582031250001,37.24453125],[43.56796875,37.23583984375],[43.67578125,37.22724609375],[43.83642578125,37.223535156249994],[43.940039062500006,37.269287109375],[44.01318359375,37.313525390624996],[44.064648437500004,37.312451171875],[44.11445312500001,37.30185546875],[44.15625,37.282958984375],[44.19179687500002,37.249853515625],[44.20839843750002,37.20263671875],[44.20166015624999,37.051806640624996],[44.21748046875001,37.011865234374994],[44.245703125,36.983300781249994],[44.281835937500006,36.97802734374999],[44.32558593750002,37.0107421875],[44.401953125,37.058496093749994],[44.495996093750016,37.110546875],[44.566015625,37.158251953124996],[44.60595703125,37.17602539062499],[44.669335937500016,37.17358398437499],[44.73095703125,37.165283203125],[44.76513671875,37.142431640625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Israel","sov_a3":"ISR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Israel","adm0_a3":"ISR","geou_dif":0,"geounit":"Israel","gu_a3":"ISR","su_dif":0,"subunit":"Israel","su_a3":"ISR","brk_diff":0,"name":"Israel","name_long":"Israel","brk_a3":"ISR","brk_name":"Israel","brk_group":null,"abbrev":"Isr.","postal":"IS","formal_en":"State of Israel","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Israel","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":9,"pop_est":7233701,"gdp_md_est":201400,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IL","iso_a3":"ISR","iso_n3":"376","un_a3":"376","wb_a2":"IL","wb_a3":"ISR","woe_id":-99,"adm0_a3_is":"ISR","adm0_a3_us":"ISR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ISR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[35.78730468750001,32.734912109374996],[35.734472656250006,32.72890625],[35.61123046875002,32.682080078125],[35.59453125000002,32.668017578124996],[35.572851562500006,32.640869140625],[35.56904296875001,32.619873046875],[35.551464843750004,32.39550781249999],[35.484375,32.401660156249996],[35.40263671875002,32.450634765625],[35.38671875,32.493017578125],[35.36210937500002,32.507470703124994],[35.303808593750006,32.512939453125],[35.19326171875002,32.534423828125],[35.065039062500006,32.46044921875],[35.01054687500002,32.338183593749996],[34.99951171875,32.281054687499996],[34.95595703125002,32.1609375],[34.97138671875001,32.087109375],[34.97880859375002,31.991601562499994],[34.98974609375,31.91328125],[34.97832031250002,31.86640625],[34.95380859375001,31.841259765624994],[34.96113281250001,31.823339843749995],[34.983007812500006,31.81679687499999],[35.05322265625,31.837939453124996],[35.12714843750001,31.816748046875],[35.19804687500002,31.776318359374997],[35.203710937500006,31.75],[35.153417968750006,31.73447265625],[35.03466796875,31.67324218749999],[34.95097656250002,31.602294921875],[34.92919921875,31.536572265624994],[34.87275390625001,31.396875],[34.88046875,31.368164062499996],[34.9078125,31.351318359375],[35.101171875,31.3662109375],[35.27666015625002,31.422802734374994],[35.40869140624999,31.48291015625],[35.45058593750002,31.479296875],[35.4228515625,31.325390625],[35.42353515625001,31.324853515624994],[35.40068359375002,31.230517578124996],[35.40966796875,31.214453125],[35.43925781250002,31.132421875],[35.38300781250001,30.982275390624995],[35.32011718750002,30.860205078125],[35.2978515625,30.802246093749996],[35.23662109375002,30.673486328124994],[35.17402343750001,30.523925781249996],[35.140625,30.4208984375],[35.14814453125001,30.384326171875],[35.13261718750002,30.1953125],[35.1416015625,30.141699218749995],[35.06816406250002,29.977880859375],[35.05341796875001,29.896923828124997],[35.02392578125,29.787060546874997],[34.97343750000002,29.555029296874995],[34.904296875,29.47734375],[34.86982421875001,29.563916015624997],[34.79111328125,29.812109375],[34.73505859375001,29.98203125],[34.65859375000002,30.191455078124996],[34.52968750000002,30.446044921874996],[34.51777343750001,30.507373046874992],[34.48994140625001,30.5962890625],[34.400976562500006,30.827832031249997],[34.32851562500002,30.99501953124999],[34.24531250000001,31.208300781249996],[34.34833984375001,31.292919921874997],[34.350195312500006,31.362744140624997],[34.52558593750001,31.525634765624996],[34.52412109375001,31.541650390624994],[34.47734375000002,31.58486328124999],[34.483984375,31.592285156249996],[34.67841796875001,31.895703125],[34.803808593750006,32.196337890624996],[34.921875,32.6140625],[35.005859375,32.826611328125],[35.07705078125002,32.9671875],[35.10859375,33.08369140625],[35.22333984375001,33.0919921875],[35.30888671875002,33.079541015625],[35.411230468750006,33.07568359375],[35.4931640625,33.119482421875],[35.53251953125002,33.25048828125],[35.579296875,33.271484375],[35.60292968750002,33.240625],[35.62724609375001,33.275048828124994],[35.734472656250006,33.3326171875],[35.7875,33.369775390624994],[35.84072265625002,33.415673828124994],[35.869140625,33.43173828124999],[35.8515625,33.370458984375],[35.83710937500001,33.330517578125],[35.837011718750006,33.278222656249994],[35.858789062500016,33.24956054687499],[35.88847656250002,33.19248046874999],[35.90664062500002,33.135693359375],[35.86806640625002,33.08857421875],[35.87177734375001,33.039355468749996],[35.88203125000001,32.998095703124996],[35.91347656250002,32.94960937499999],[35.85683593750002,32.86235351562499],[35.80146484375001,32.78232421875],[35.78730468750001,32.734912109374996]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"United States Virgin Islands","adm0_a3":"VIR","geou_dif":0,"geounit":"United States Virgin Islands","gu_a3":"VIR","su_dif":0,"subunit":"United States Virgin Islands","su_a3":"VIR","brk_diff":0,"name":"U.S. Virgin Is.","name_long":"United States Virgin Islands","brk_a3":"VIR","brk_name":"U.S. Virgin Is.","brk_group":null,"abbrev":"V.I. (U.S.)","postal":"VI","formal_en":"Virgin Islands of the United States","formal_fr":null,"note_adm0":"U.S.A.","note_brk":null,"name_sort":"Virgin Islands (U.S.)","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":109825,"gdp_md_est":1577,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"VI","iso_a3":"VIR","iso_n3":"850","un_a3":"850","wb_a2":"VI","wb_a3":"VIR","woe_id":-99,"adm0_a3_is":"VIR","adm0_a3_us":"VIR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":15,"long_len":28,"abbrev_len":11,"tiny":3,"homepart":-99,"filename":"VIR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.765625,17.79433593749999],[-64.68183593749998,17.750195312499983],[-64.58046874999994,17.750195312499983],[-64.686279296875,17.706103515625045],[-64.88911132812495,17.701708984375045],[-64.88471679687493,17.772265625000042],[-64.765625,17.79433593749999]]],[[[-64.65981445312494,18.354345703125063],[-64.72597656250002,18.327880859375],[-64.77060546874995,18.331591796875045],[-64.78769531249998,18.341113281250017],[-64.75244140625,18.371972656249994],[-64.65981445312494,18.354345703125063]]],[[[-64.84501953124993,18.330078125],[-64.91997070312502,18.32128906249997],[-65.02363281249998,18.36757812499999],[-64.942041015625,18.38520507812504],[-64.88911132812495,18.37421875],[-64.84501953124993,18.330078125]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Jordan","sov_a3":"JOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Jordan","adm0_a3":"JOR","geou_dif":0,"geounit":"Jordan","gu_a3":"JOR","su_dif":0,"subunit":"Jordan","su_a3":"JOR","brk_diff":0,"name":"Jordan","name_long":"Jordan","brk_a3":"JOR","brk_name":"Jordan","brk_group":null,"abbrev":"Jord.","postal":"J","formal_en":"Hashemite Kingdom of Jordan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Jordan","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":6342948,"gdp_md_est":31610,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"JO","iso_a3":"JOR","iso_n3":"400","un_a3":"400","wb_a2":"JO","wb_a3":"JOR","woe_id":-99,"adm0_a3_is":"JOR","adm0_a3_us":"JOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"JOR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[39.14541015625002,32.12451171875],[38.9970703125,32.007470703124994],[38.96230468750002,31.99492187499999],[38.769628906250006,31.946484375],[38.37548828125,31.847460937499996],[38.111425781250006,31.781152343749994],[37.77382812500002,31.696337890624996],[37.49335937500001,31.625878906249994],[37.215625,31.556103515624997],[36.95859375,31.491503906249992],[37.10527343750002,31.355175781249997],[37.32949218750002,31.146826171874995],[37.47900390625,31.007763671874997],[37.65546875000001,30.828955078125],[37.81298828125,30.669287109375],[37.980078125,30.5],[37.862890625,30.442626953125],[37.66972656250002,30.348144531249996],[37.64990234375,30.330957031249994],[37.63359375000002,30.31328125],[37.55361328125002,30.144580078124996],[37.49072265625,30.01171875],[37.46923828125,29.995068359374994],[37.19941406250001,29.9462890625],[36.92705078125001,29.897070312499995],[36.75527343750002,29.866015625],[36.70390625000002,29.831640625],[36.591796875,29.66611328125],[36.47607421875,29.495117187499996],[36.2828125,29.355371093749994],[36.068457031250006,29.200537109374995],[36.01542968750002,29.190478515624996],[35.8603515625,29.21425781249999],[35.5953125,29.254882812499996],[35.33916015625002,29.294091796874994],[35.16376953125001,29.320947265624998],[34.95078125,29.353515625],[34.98222656250002,29.484472656250002],[34.97343750000002,29.555029296874995],[35.02392578125,29.787060546874997],[35.05341796875001,29.896923828124997],[35.06816406250002,29.977880859375],[35.1416015625,30.141699218749995],[35.13261718750002,30.1953125],[35.14814453125001,30.384326171875],[35.140625,30.4208984375],[35.17402343750001,30.523925781249996],[35.23662109375002,30.673486328124994],[35.2978515625,30.802246093749996],[35.32011718750002,30.860205078125],[35.38300781250001,30.982275390624995],[35.43925781250002,31.132421875],[35.40966796875,31.214453125],[35.40068359375002,31.230517578124996],[35.42353515625001,31.324853515624994],[35.4228515625,31.325390625],[35.45058593750002,31.479296875],[35.465429687500006,31.562353515625],[35.49941406250002,31.67236328125],[35.55898437500002,31.76552734374999],[35.53144531250001,31.984912109374996],[35.534765625,32.10302734375],[35.57207031250002,32.237890625],[35.551464843750004,32.39550781249999],[35.56904296875001,32.619873046875],[35.572851562500006,32.640869140625],[35.59453125000002,32.668017578124996],[35.61123046875002,32.682080078125],[35.734472656250006,32.72890625],[35.78730468750001,32.734912109374996],[35.89472656250001,32.713769531249994],[35.95644531250002,32.66669921875],[36.05947265625002,32.5337890625],[36.2197265625,32.4951171875],[36.284277343750006,32.457470703125],[36.3720703125,32.3869140625],[36.479199218750004,32.36132812499999],[36.818359375,32.317285156249994],[37.088964843750006,32.46552734375],[37.31757812500001,32.590771484375],[37.57744140625001,32.733056640624994],[37.75410156250001,32.829833984375],[38.055761718750006,32.994873046875],[38.25429687500002,33.09921875],[38.515625,33.236621093749996],[38.773535156250006,33.372216796874994],[38.84501953125002,33.15087890625],[38.91484375000002,32.93466796875],[38.987402343750006,32.710693359375],[39.05781250000001,32.4931640625],[38.98164062500001,32.472558593749994],[39.04140625000002,32.30566406249999],[39.14003906250002,32.331201171874994],[39.24746093750002,32.350976562499994],[39.29277343750002,32.24384765625],[39.14541015625002,32.12451171875]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Japan","sov_a3":"JPN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Japan","adm0_a3":"JPN","geou_dif":0,"geounit":"Japan","gu_a3":"JPN","su_dif":0,"subunit":"Japan","su_a3":"JPN","brk_diff":0,"name":"Japan","name_long":"Japan","brk_a3":"JPN","brk_name":"Japan","brk_group":null,"abbrev":"Japan","postal":"J","formal_en":"Japan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Japan","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":5,"mapcolor13":4,"pop_est":127078679,"gdp_md_est":4329000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"JP","iso_a3":"JPN","iso_n3":"392","un_a3":"392","wb_a2":"JP","wb_a3":"JPN","woe_id":-99,"adm0_a3_is":"JPN","adm0_a3_us":"JPN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"JPN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.88867187499997,24.280126953124977],[123.8255859375,24.266064453124955],[123.74980468750002,24.283300781250006],[123.68066406250003,24.288037109375008],[123.67978515625012,24.317773437500023],[123.75234375,24.348486328125063],[123.75371093750006,24.391308593749983],[123.77148437499996,24.41445312499999],[123.93486328125,24.362011718749983],[123.928125,24.323632812499966],[123.88867187499997,24.280126953124977]]],[[[124.29316406250003,24.515917968750074],[124.23427734375,24.358056640624962],[124.18564453125006,24.335058593749974],[124.13574218750003,24.347607421874983],[124.08476562500002,24.435839843750017],[124.12041015625002,24.46962890625005],[124.17021484375,24.451855468749983],[124.21054687500006,24.45864257812502],[124.30195312500004,24.58710937500001],[124.3240234375,24.566357421875036],[124.29316406250003,24.515917968750074]]],[[[125.44414062500002,24.7431640625],[125.359375,24.717089843750017],[125.26894531250005,24.732519531250063],[125.28359375,24.871923828125034],[125.31494140624997,24.852392578125034],[125.33457031250008,24.8046875],[125.40185546875003,24.77685546875003],[125.44414062500002,24.7431640625]]],[[[142.1881835937501,26.616503906249985],[142.16992187500003,26.61567382812501],[142.10712890625,26.721533203124977],[142.12529296875007,26.72646484375002],[142.16171875000006,26.70996093750003],[142.20214843750003,26.648779296875006],[142.1881835937501,26.616503906249985]]],[[[128.25878906249997,26.65278320312501],[128.1625,26.60693359375],[128.12695312500003,26.552246093750053],[128.03789062500005,26.53359375],[127.95126953125012,26.45649414062498],[127.86708984374998,26.442480468749977],[127.86923828125006,26.38056640624998],[127.90478515624996,26.328125],[127.84873046875006,26.318945312500034],[127.79013671875005,26.255078124999983],[127.78554687499998,26.208691406249955],[127.80644531250007,26.171240234375063],[127.80361328125007,26.152539062499983],[127.72939453125,26.09716796874997],[127.653125,26.0947265625],[127.64970703125002,26.15449218750001],[127.6548828125001,26.199169921874983],[127.72705078124999,26.307910156250017],[127.72890625,26.433935546875006],[127.79589843749997,26.44853515624996],[127.82041015625006,26.466064453125],[127.9259765625001,26.55571289062496],[127.9455078125001,26.59394531250001],[127.89082031250004,26.631054687500036],[127.89482421875007,26.674951171874994],[127.90722656250003,26.69360351562497],[127.99433593750008,26.679443359375025],[128.0296875,26.646875],[128.04677734375,26.64331054687503],[128.09765624999997,26.667773437499957],[128.12158203124997,26.71142578124997],[128.21650390625004,26.796875],[128.25488281249997,26.88188476562496],[128.33164062500006,26.81210937500006],[128.3109375,26.720703125],[128.25878906249997,26.65278320312501]]],[[[128.99814453125012,27.720800781250006],[128.95625,27.702490234375002],[128.90000000000012,27.727783203125],[128.88281249999994,27.842431640624994],[128.9076171875,27.897998046875045],[128.95166015624997,27.910253906250034],[128.98974609375003,27.811132812500006],[129.01640625000002,27.77021484375004],[128.99814453125012,27.720800781250006]]],[[[129.32402343750007,28.10493164062501],[129.33056640624997,28.08159179687496],[129.23242187499994,28.101123046875017],[129.19248046875012,28.192480468749977],[129.25742187500012,28.17617187500005],[129.27734374999997,28.144726562500036],[129.32402343750007,28.10493164062501]]],[[[129.45253906250005,28.208984374999968],[129.3664062500001,28.127734375000045],[129.27490234375003,28.20087890625001],[129.16464843750012,28.24975585937503],[129.21708984375007,28.262939453125057],[129.24785156250002,28.282519531250042],[129.25087890624997,28.313574218750063],[129.32246093750004,28.35961914062503],[129.46455078125004,28.395263671875],[129.50966796875,28.397509765625017],[129.56054687500003,28.43105468750002],[129.57714843749997,28.461279296875034],[129.59804687500005,28.47587890624999],[129.68955078125012,28.517480468750023],[129.71464843750007,28.469628906249966],[129.71044921875,28.432128906250053],[129.64169921875006,28.411279296874966],[129.57460937500005,28.361181640624977],[129.51269531249997,28.298730468749966],[129.45673828125004,28.272314453125006],[129.43906250000006,28.254785156249994],[129.45253906250005,28.208984374999968]]],[[[130.62275390625007,30.262988281250014],[130.508203125,30.24140624999995],[130.44560546875002,30.264697265625014],[130.38808593750005,30.38818359375003],[130.49716796875003,30.465527343749983],[130.64355468749997,30.388964843750017],[130.67324218750002,30.36689453124995],[130.62275390625007,30.262988281250014]]],[[[130.95976562500007,30.396923828125036],[130.87216796875006,30.386328125],[130.87031250000004,30.44423828124999],[130.93994140625003,30.575097656249994],[130.94736328125012,30.671191406250042],[131.01220703125003,30.792285156250017],[131.03984375000007,30.818896484375014],[131.06035156250007,30.828466796875006],[131.08261718750006,30.790869140625006],[131.05742187500007,30.642480468749962],[130.992578125,30.52998046874995],[130.95976562500007,30.396923828125036]]],[[[129.71796875000004,31.657128906249994],[129.68681640625002,31.6396484375],[129.70683593750002,31.71826171875003],[129.78730468750004,31.787109375],[129.7936523437501,31.74248046874999],[129.71796875000004,31.657128906249994]]],[[[130.38105468750004,32.42373046875002],[130.29257812500006,32.41933593750002],[130.25605468750004,32.431005859375006],[130.24169921874997,32.46279296874999],[130.36542968750004,32.52719726562506],[130.46142578124997,32.515722656250034],[130.41855468750006,32.45771484375004],[130.38105468750004,32.42373046875002]]],[[[130.08251953124997,32.22968750000001],[130.00351562500006,32.19399414062502],[129.9933593750001,32.228173828124994],[129.9601562500001,32.24375],[130.0172851562501,32.29184570312498],[130.01533203125004,32.313671874999976],[129.97929687500007,32.34619140625006],[130.02128906250002,32.46884765624998],[130.00976562499997,32.52163085937499],[130.16777343750002,32.54121093749998],[130.19667968750005,32.491601562499994],[130.19951171875,32.34057617187506],[130.08251953124997,32.22968750000001]]],[[[128.66533203125002,32.78388671874995],[128.70410156249997,32.75688476562496],[128.76103515625002,32.772363281249994],[128.8060546875,32.775976562500034],[128.83857421875004,32.76289062500003],[128.87939453124997,32.69331054687498],[128.89453124999997,32.65214843750002],[128.82128906249997,32.646337890625006],[128.7904296875,32.63671875],[128.75048828125003,32.58613281249998],[128.69296875000012,32.60473632812506],[128.65732421875006,32.62841796874999],[128.6491210937501,32.662011718749994],[128.66533203125002,32.78388671874995]]],[[[139.84111328125005,33.056054687499966],[139.82382812500006,33.045458984375045],[139.77568359375002,33.07822265625006],[139.7689453125,33.107177734375],[139.77744140625006,33.12514648437502],[139.80888671875007,33.12924804687506],[139.87363281250012,33.09350585937497],[139.84111328125005,33.056054687499966]]],[[[129.07695312500002,32.84028320312498],[129.0519531250001,32.829492187499994],[129.01962890625006,32.91962890624998],[128.99726562500004,32.95185546874998],[129.03496093750007,32.969091796875034],[129.10976562500005,33.13256835937503],[129.12363281250012,33.06767578125004],[129.152734375,33.003320312499994],[129.18193359375,32.99311523437504],[129.15351562500004,32.946191406249966],[129.11162109375007,32.928857421874994],[129.07695312500002,32.84028320312498]]],[[[129.49179687500006,33.22304687499999],[129.42138671875003,33.175830078125045],[129.37041015625002,33.176025390625],[129.41699218750003,33.23110351562502],[129.42314453125002,33.25737304687496],[129.46191406250003,33.33125],[129.53798828125005,33.35776367187498],[129.56992187500006,33.36103515625004],[129.50810546875002,33.28432617187502],[129.49179687500006,33.22304687499999]]],[[[129.79570312500007,33.74882812499999],[129.72656250000003,33.70732421874996],[129.67480468749997,33.73969726562498],[129.7,33.828906250000045],[129.71728515624997,33.8583984375],[129.77636718749994,33.82919921875],[129.79570312500007,33.74882812499999]]],[[[131.17460937500007,33.602587890625045],[131.3091796875001,33.57275390625],[131.36601562500007,33.57089843750006],[131.41875,33.58442382812498],[131.498828125,33.62358398437496],[131.58300781249997,33.65239257812496],[131.64306640625003,33.637792968750006],[131.6962890625,33.60283203124999],[131.72421875000012,33.553808593750034],[131.71064453125004,33.50234375000005],[131.61552734375002,33.391845703125],[131.53740234375007,33.274072265624994],[131.71708984375002,33.25209960937505],[131.89658203125003,33.254589843750004],[131.85468750000004,33.18164062499997],[131.8478515625001,33.118066406249994],[131.902734375,33.087792968750044],[131.94931640625006,33.047070312500004],[131.9372070312501,33.01015625000005],[131.91044921875,32.97368164062499],[132.00859375000007,32.919042968750034],[132.0021484375001,32.88237304687504],[131.97666015625012,32.84394531250001],[131.73212890625004,32.59282226562502],[131.6603515625001,32.465625],[131.6103515625,32.32548828124999],[131.56464843750004,32.22304687499999],[131.53115234375005,32.11674804687502],[131.50566406250002,32.00195312499999],[131.46025390625007,31.88349609375001],[131.47529296875004,31.778417968750006],[131.45996093750003,31.670800781250023],[131.33720703125005,31.4046875],[131.2497070312501,31.40961914062501],[131.13974609375003,31.441845703125008],[131.07080078124997,31.436865234374977],[131.03515624999997,31.377685546874996],[131.09843750000002,31.256152343750014],[130.90224609375,31.11206054687497],[130.68574218750004,31.01513671875003],[130.68417968750006,31.05927734374995],[130.70449218750005,31.094091796875034],[130.7357421875,31.122070312499968],[130.75839843750006,31.155810546875014],[130.7897460937501,31.269091796874985],[130.77421875000002,31.383203124999966],[130.70898437499997,31.52607421875004],[130.70419921875006,31.577441406250017],[130.74941406250005,31.598193359374985],[130.77978515625003,31.60410156250003],[130.7962890625,31.624072265625014],[130.796875,31.67128906250005],[130.77626953125,31.70629882812497],[130.71455078125004,31.71767578124999],[130.65507812500002,31.71840820312505],[130.61347656250004,31.66542968749999],[130.5560546875,31.563085937500034],[130.528125,31.45966796875001],[130.54042968749997,31.40307617187503],[130.56591796874997,31.352392578125002],[130.64453124999994,31.26748046875002],[130.621484375,31.217529296875057],[130.58876953125,31.178515625000017],[130.31064453125006,31.266894531249992],[130.25058593750012,31.273193359375025],[130.20068359374997,31.291894531250023],[130.147265625,31.408496093749957],[130.26054687500002,31.436572265625014],[130.2941406250001,31.450683593750032],[130.30664062499997,31.487792968750057],[130.3219726562501,31.60146484375002],[130.26894531250005,31.69633789062499],[130.22421875000006,31.730078125000034],[130.18789062500005,31.768847656250014],[130.21093750000003,31.848974609375006],[130.19580078124997,31.949853515625023],[130.1944335937501,32.090771484374955],[130.21406250000004,32.11503906250002],[130.31914062500002,32.143505859374955],[130.394921875,32.21899414062497],[130.46201171875012,32.304931640625],[130.56035156250007,32.45605468750006],[130.64052734375005,32.61923828124998],[130.56328125000002,32.62636718750002],[130.49785156250002,32.65693359375001],[130.56943359375006,32.73413085937503],[130.547265625,32.83159179687499],[130.44042968749997,32.951367187499955],[130.38173828125,33.09257812499995],[130.28730468750004,33.15478515625003],[130.2375,33.177636718749966],[130.17685546875012,33.14453124999997],[130.12685546875005,33.10483398437506],[130.17314453125007,33.01298828124999],[130.16777343750002,32.931787109374966],[130.175,32.851318359375],[130.22216796874997,32.84682617187499],[130.28007812500005,32.866845703124966],[130.32646484375002,32.852636718750006],[130.35351562500003,32.81035156250002],[130.36083984375003,32.75585937500003],[130.34042968750012,32.70185546875004],[130.29765625000002,32.675],[130.24550781250005,32.677148437499966],[130.19296875000006,32.70629882812506],[130.15205078125007,32.74785156249999],[130.05410156250005,32.770800781250045],[129.95078125000006,32.72172851562498],[129.85253906250003,32.62172851562505],[129.76855468749997,32.57099609375001],[129.80810546875003,32.64526367187506],[129.82675781250006,32.72534179687503],[129.78593750000002,32.78164062500002],[129.69003906250012,32.875244140625],[129.66777343750002,32.92939453125001],[129.6623046875001,32.99492187499996],[129.67910156250005,33.059960937499966],[129.77773437500005,32.98554687500001],[129.82832031250004,32.892675781250006],[129.90078125,32.851904296875034],[129.99169921875003,32.85156249999997],[129.921875,32.987988281249955],[129.89677734375005,33.02236328125005],[129.79873046875,33.08359375],[129.66503906250003,33.186621093750034],[129.58007812500003,33.236279296875004],[129.61015625000002,33.34365234375005],[129.65996093750002,33.36499023437503],[129.70214843750003,33.359814453124955],[129.84414062499997,33.32177734375003],[129.85751953125006,33.375244140625],[129.83662109375004,33.40380859375003],[129.82568359374994,33.43701171875005],[129.9191406250001,33.483496093750006],[130.07207031250007,33.52177734374999],[130.10341796875005,33.539697265625016],[130.1305664062501,33.578173828125045],[130.16796874999997,33.59829101562505],[130.27509765625004,33.59770507812502],[130.36503906250007,33.634472656249955],[130.43945312500003,33.73422851562503],[130.4572265625001,33.78896484374999],[130.4837890625,33.83461914062496],[130.66953125000012,33.91547851562501],[130.715625,33.92778320312502],[130.83964843750002,33.91777343750002],[130.953125,33.87202148437504],[131.00908203125002,33.77583007812498],[131.05810546874997,33.67285156250006],[131.17460937500007,33.602587890625045]]],[[[132.266015625,33.945166015625006],[132.31455078125012,33.908593750000016],[132.43046875,33.923535156249955],[132.44492187500006,33.91318359374998],[132.41103515625,33.87993164062496],[132.35996093750006,33.847021484375006],[132.2672851562501,33.87148437500002],[132.20878906250007,33.87285156250002],[132.20058593749997,33.92778320312502],[132.20800781250003,33.94780273437502],[132.266015625,33.945166015625006]]],[[[132.57841796875007,34.11518554687501],[132.5494140625001,34.07509765625002],[132.46093750000003,34.087255859375006],[132.49628906250004,34.121972656249966],[132.52353515625006,34.16406250000002],[132.54345703124997,34.17265624999998],[132.56015625000006,34.12690429687501],[132.57841796875007,34.11518554687501]]],[[[129.27949218750004,34.123388671875006],[129.21445312500006,34.08281249999998],[129.18642578125,34.14501953125006],[129.21484374999997,34.320654296875034],[129.3371093750001,34.284765625],[129.33505859375012,34.230810546875034],[129.27949218750004,34.123388671875006]]],[[[134.35742187500003,34.25634765625],[134.49570312500006,34.21474609375005],[134.6375,34.22661132812499],[134.63525390624997,34.043945312499964],[134.65537109375006,33.98261718750001],[134.6953125,33.92773437500003],[134.67480468750003,33.84780273437499],[134.73886718750012,33.82050781250001],[134.54873046875,33.72929687499999],[134.37705078125012,33.60839843749997],[134.30654296875002,33.526806640624955],[134.24267578125003,33.43945312500003],[134.20566406250012,33.34697265625002],[134.18164062500003,33.24721679687502],[134.12412109375012,33.286767578124994],[133.95869140625004,33.44833984375006],[133.85400390624997,33.49267578125003],[133.68564453125012,33.516308593749955],[133.63203125000004,33.51098632812503],[133.28593750000007,33.35996093749998],[133.23994140625007,33.24960937499998],[133.14560546875006,33.083154296874994],[133.10087890625002,33.028222656249994],[133.051171875,33.01245117187497],[133.01601562500005,32.98388671875003],[132.97724609375004,32.84199218749998],[132.86992187500002,32.75458984375001],[132.80429687500006,32.75200195312502],[132.69218750000007,32.77592773437502],[132.6417968750001,32.76245117187502],[132.70898437500003,32.902490234375044],[132.60195312500005,32.91953125000006],[132.49511718749997,32.91660156249998],[132.492578125,33.00766601562498],[132.42783203125012,33.059375],[132.47578125000004,33.12646484375003],[132.47714843750012,33.18115234374997],[132.5052734375,33.21127929687498],[132.51503906250005,33.25537109375],[132.5114257812501,33.293066406250034],[132.44541015625006,33.304589843749994],[132.40517578125005,33.33125],[132.41279296875004,33.43046874999995],[132.37490234375,33.43408203125],[132.28105468750007,33.41679687500002],[132.08583984375,33.340136718750045],[132.0326171875,33.339990234374994],[132.11445312500004,33.39458007812502],[132.28789062500002,33.46953125000001],[132.36591796875004,33.51245117187506],[132.53603515625005,33.632910156250006],[132.64306640624994,33.68994140624997],[132.6989257812501,33.790917968750016],[132.7162109375,33.85224609375001],[132.75234375000005,33.90615234374996],[132.78427734375006,33.99243164062506],[132.83945312500012,34.02124023437497],[132.93515625000006,34.09531250000006],[132.99013671875,34.08813476562499],[133.05126953125003,33.99711914062502],[133.13369140625005,33.92729492187502],[133.19306640625,33.93320312499998],[133.29882812500003,33.96899414062497],[133.34980468750007,33.97705078125003],[133.47207031250005,33.97280273437505],[133.58203124999997,34.01713867187502],[133.62675781250002,34.06938476562502],[133.64345703125005,34.134667968749994],[133.60263671875006,34.24384765625001],[133.65556640625002,34.23286132812501],[133.70625,34.237353515625045],[133.82558593750005,34.306835937499976],[133.94833984375006,34.34804687500002],[134.07587890625004,34.35839843749999],[134.21923828125003,34.31904296874998],[134.35742187500003,34.25634765625]]],[[[134.35185546875002,34.48364257812502],[134.333203125,34.463769531249966],[134.31533203125,34.468945312499955],[134.25185546875,34.42304687500004],[134.23808593750007,34.46704101562503],[134.18828125000002,34.49633789062502],[134.18212890625003,34.51923828124998],[134.3259765625,34.534375],[134.37226562500004,34.522363281250016],[134.35185546875002,34.48364257812502]]],[[[134.9328125000001,34.28813476562499],[134.82441406250004,34.20292968750004],[134.7306640625,34.208886718749994],[134.68349609375,34.24697265625005],[134.66787109375005,34.294140624999955],[134.75722656250005,34.36816406250003],[134.83427734375002,34.47265625],[134.90410156250002,34.51909179687496],[134.96074218750002,34.544921875],[135.00468750000002,34.54404296874998],[134.90546875,34.398291015625034],[134.9328125000001,34.28813476562499]]],[[[129.38564453125,34.35366210937502],[129.36533203125003,34.30551757812498],[129.29746093750006,34.339599609375],[129.26669921875012,34.37045898437506],[129.32939453125002,34.521875],[129.32207031250002,34.57929687499998],[129.3258789062501,34.60727539062498],[129.45107421875005,34.68657226562499],[129.47246093750002,34.67133789062498],[129.4801757812501,34.64946289062496],[129.469140625,34.61552734374998],[129.47539062500002,34.54042968750005],[129.38144531250006,34.41645507812501],[129.38564453125,34.35366210937502]]],[[[139.4564453125,34.72651367187504],[139.44570312500005,34.67954101562506],[139.39238281250002,34.68989257812504],[139.3668945312501,34.72050781249996],[139.37001953124997,34.77543945312496],[139.426171875,34.77587890625005],[139.4564453125,34.72651367187504]]],[[[133.37050781250005,36.203857421875],[133.32470703124997,36.16650390625003],[133.23925781249997,36.178759765625045],[133.18994140625003,36.23261718750001],[133.20615234375006,36.293408203124955],[133.29570312500002,36.34013671874996],[133.38125,36.24638671874996],[133.37050781250005,36.203857421875]]],[[[138.34404296875007,37.822119140625006],[138.24902343749997,37.819580078125],[138.22519531250006,37.82939453124995],[138.28281250000012,37.854199218749955],[138.28789062500007,37.89580078124998],[138.32226562499997,37.96953125000002],[138.32167968750002,37.990820312500006],[138.24619140625012,37.994580078124955],[138.25,38.078466796875006],[138.3063476562501,38.16113281250005],[138.46132812500002,38.291455078124955],[138.50361328125004,38.31591796875006],[138.51005859375002,38.25898437500001],[138.46279296875,38.12431640625002],[138.45361328124997,38.07568359375006],[138.57519531249997,38.06552734375003],[138.49697265625005,37.90390625000006],[138.34404296875007,37.822119140625006]]],[[[141.22929687500005,41.37265625],[141.26875,41.35380859374999],[141.45546875000005,41.404736328124955],[141.41992187499997,41.25117187500004],[141.40000000000012,41.09633789062502],[141.41367187500006,40.83935546874997],[141.43046875000002,40.72333984374998],[141.46279296875005,40.61113281250002],[141.54228515625005,40.53071289062498],[141.6462890625,40.4736328125],[141.7970703125001,40.29116210937502],[141.87792968749997,40.06723632812498],[141.93505859374997,39.95849609375003],[141.97783203125007,39.84443359374998],[141.99082031250006,39.792236328125],[141.99189453125007,39.739892578124994],[141.97910156250003,39.66835937499999],[141.99316406249997,39.61054687500001],[141.97695312500005,39.428808593750034],[141.90947265625007,39.21870117187504],[141.90078125,39.111328125],[141.84208984375,39.09003906250001],[141.80654296875,39.04042968750005],[141.77617187500002,39.01743164062498],[141.74248046875007,38.99960937499997],[141.69355468750004,38.99516601562496],[141.65859375000005,38.974853515625],[141.64472656250004,38.917919921874955],[141.6222656250001,38.86513671875002],[141.57968750000012,38.81650390624998],[141.5462890625,38.762841796874966],[141.51875,38.63203124999998],[141.50878906249997,38.49785156249999],[141.4674804687501,38.404150390625006],[141.36816406250003,38.379736328125006],[141.25429687499997,38.38139648437499],[141.10839843750003,38.33793945312502],[141.07734375000007,38.31254882812499],[140.9621093750001,38.148876953124955],[140.92900390625007,38.05288085937502],[140.92792968750004,37.94960937500002],[140.95996093749997,37.822607421875],[141.00341796874997,37.69843750000001],[141.0363281250001,37.46723632812498],[141.00166015625004,37.11464843750002],[140.96835937500012,37.002050781250006],[140.89511718750012,36.92573242187498],[140.83964843750002,36.89033203124998],[140.79179687500002,36.846875],[140.7298828125,36.73188476562501],[140.62734375,36.50278320312498],[140.61884765625,36.4453125],[140.61923828125012,36.385595703125006],[140.59160156250002,36.307812499999955],[140.57353515625007,36.23134765625002],[140.59042968750012,36.142431640625006],[140.62197265625005,36.05922851562502],[140.75957031250002,35.84570312500006],[140.81347656249997,35.78251953124996],[140.87402343749997,35.72495117187506],[140.63925781250012,35.661279296875044],[140.596875,35.63203125000004],[140.457421875,35.51025390625],[140.41289062500002,35.39477539062502],[140.41650390625003,35.26699218750002],[140.39296875000005,35.22114257812498],[140.35468750000004,35.18144531249999],[140.31474609375002,35.15502929687503],[140.15888671875004,35.09648437499998],[140.05917968750006,35.038281249999955],[139.95976562500007,34.94731445312499],[139.92041015624997,34.89960937500004],[139.8439453125001,34.914892578125034],[139.79921875000005,34.956933593749994],[139.84326171874997,35.009863281250034],[139.82968750000012,35.07216796875002],[139.85146484375005,35.23232421874996],[139.82646484375002,35.29667968750002],[139.90615234375,35.34526367187496],[139.94414062500007,35.422998046874994],[140.02714843750002,35.48520507812506],[140.086328125,35.54042968750002],[140.096875,35.58515624999998],[140.0436523437501,35.633349609375045],[139.9875,35.66821289062502],[139.90976562500006,35.668359374999966],[139.83476562500002,35.658056640625006],[139.78632812500007,35.61210937499999],[139.77011718750006,35.54956054687503],[139.77392578124997,35.520361328125034],[139.76777343750004,35.49482421874998],[139.65000000000012,35.409130859375004],[139.66552734374997,35.31948242187505],[139.7,35.27397460937502],[139.74404296875,35.252392578124955],[139.73085937500005,35.22153320312498],[139.675,35.149267578125006],[139.6359375000001,35.14213867187499],[139.56406250000012,35.24326171875006],[139.4744140625,35.29853515624995],[139.36347656250007,35.29809570312503],[139.24941406250005,35.27802734375004],[139.16269531250012,35.21074218750002],[139.13408203125007,35.154882812500006],[139.11582031250006,35.097119140624955],[139.12197265624997,34.95649414062498],[139.08603515625006,34.83916015624999],[139.015625,34.73603515625001],[138.9826171875,34.698388671874994],[138.8966796875,34.62841796875003],[138.8375,34.619238281250034],[138.79511718750004,34.65102539062502],[138.76103515625002,34.69921874999997],[138.80449218750007,34.87573242187497],[138.80273437499997,34.97480468749998],[138.90361328125,35.02524414062506],[138.82089843750012,35.09570312500003],[138.71962890625,35.12407226562502],[138.57714843750003,35.08647460937502],[138.53701171874997,35.04414062499998],[138.50957031250002,34.98715820312503],[138.43310546874997,34.91518554687502],[138.34863281250003,34.84770507812504],[138.25322265625002,34.73266601562506],[138.18906250000012,34.596337890624994],[137.97900390625003,34.64091796875002],[137.86425781250003,34.65087890625],[137.74853515624997,34.64741210937498],[137.543359375,34.66420898437505],[137.31806640625004,34.636376953124966],[137.06171875,34.58281249999999],[137.07705078125005,34.62143554687503],[137.2877929687501,34.703515624999966],[137.29541015625003,34.72758789062498],[137.27519531250002,34.77250976562499],[137.22265624999997,34.77470703124999],[137.09658203125,34.759033203125],[137.03222656249997,34.76591796874999],[137.00595703125012,34.814111328125016],[136.96328125000005,34.83491210937501],[136.9347656250001,34.81518554687497],[136.94414062500007,34.721533203125006],[136.91289062500007,34.70903320312502],[136.87128906250004,34.733105468749955],[136.88457031250002,34.80585937500004],[136.85615234375004,34.9125],[136.85292968750005,34.97871093749998],[136.89707031250006,35.03554687500002],[136.85185546875005,35.05952148437501],[136.80419921874997,35.05029296875],[136.74355468750005,35.022998046875045],[136.69003906250006,34.98413085937503],[136.57695312500002,34.78955078125],[136.53300781250007,34.678369140624994],[136.61582031250006,34.58906250000001],[136.84160156250002,34.46420898437498],[136.8802734375,34.43359375000006],[136.88115234375,34.38046875000006],[136.8537109375001,34.32407226562503],[136.7921875000001,34.29926757812504],[136.54443359374997,34.257714843749994],[136.32988281250007,34.17685546875006],[136.26787109375002,34.09487304687505],[136.07255859375002,33.778222656250016],[135.91621093750004,33.561718749999955],[135.69531250000003,33.48696289062502],[135.4528320312501,33.55336914062505],[135.39423828125004,33.628759765625034],[135.34677734375006,33.72197265625002],[135.25664062500007,33.80625],[135.17539062500006,33.898046875],[135.12792968749997,34.006982421874994],[135.13535156250006,34.18261718749997],[135.10009765624997,34.288378906250045],[135.13193359375006,34.316552734374994],[135.265625,34.38081054687503],[135.30927734375004,34.41679687499998],[135.38476562499997,34.50043945312498],[135.4118164062501,34.54697265625006],[135.41591796875,34.61748046875002],[135.3551757812501,34.65429687499997],[135.19824218749994,34.65292968750006],[135.0416992187501,34.63100585937502],[134.92988281250004,34.661816406250004],[134.78496093750002,34.74707031250006],[134.74003906250007,34.765234375],[134.58378906250002,34.770605468750034],[134.47226562500006,34.75478515625002],[134.36269531250005,34.72368164062498],[134.246875,34.71386718750003],[134.20830078125002,34.69765625000002],[134.07451171875002,34.593115234375034],[133.96826171874997,34.52729492187504],[133.87636718749997,34.49462890625006],[133.6779296875,34.485888671875045],[133.57861328124997,34.46469726562498],[133.47441406250007,34.430126953124955],[133.4453125,34.433154296875045],[133.33564453125004,34.38535156249998],[133.20976562500007,34.343994140625],[133.14238281250002,34.30244140624998],[133.0189453125,34.32958984375],[132.77460937500004,34.255224609375034],[132.65654296875007,34.24609375000003],[132.53447265625007,34.28706054687504],[132.4212890625,34.353369140625034],[132.31259765625006,34.32495117187503],[132.23808593750002,34.227001953124955],[132.20195312500002,34.03203125000004],[132.159375,33.944238281249994],[132.14648437499997,33.83876953125002],[132.090234375,33.85546875000003],[131.76318359374997,34.04526367187498],[131.74052734375007,34.05205078125002],[131.47617187500012,34.019384765625034],[131.4079101562501,34.00361328125001],[131.32275390624997,33.965185546875006],[131.2326171875,33.94799804687497],[131.15039062500003,33.97563476562502],[131.071875,34.02065429687502],[130.99638671875007,34.007275390624955],[130.91884765625,33.97573242187502],[130.8892578125001,34.261816406250034],[130.90429687499997,34.29956054687499],[130.95185546875004,34.349707031250006],[131.00419921875007,34.39257812500003],[131.13222656250005,34.40737304687502],[131.26181640625006,34.39345703125005],[131.35439453125,34.41318359375006],[131.43251953124997,34.46982421875006],[131.51503906250005,34.55014648437498],[131.60800781250006,34.61547851562497],[131.7340820312501,34.66708984375],[131.85605468750006,34.726318359375],[131.96308593750004,34.809375],[132.06474609375002,34.9],[132.15820312499994,34.96650390624998],[132.25957031250002,35.02231445312498],[132.41406249999997,35.15629882812502],[132.61904296875,35.306835937499955],[132.69765625,35.418310546875006],[132.74658203125003,35.44902343749996],[132.92294921875006,35.511279296875045],[133.15693359375004,35.55883789062506],[133.26718750000006,35.55654296875002],[133.37646484375003,35.458837890625006],[133.4353515625,35.47221679687499],[133.49492187500005,35.497460937499966],[133.61542968750004,35.51142578124998],[133.73935546875006,35.495263671874966],[133.86025390625,35.494873046874964],[133.98125,35.50722656250002],[134.21406250000004,35.539257812499955],[134.3365234375001,35.57792968750001],[134.45605468749997,35.6279296875],[134.8822265625,35.663232421874994],[135.17431640625003,35.74707031250003],[135.22050781250002,35.74111328124996],[135.26542968750002,35.72177734375003],[135.26875,35.65966796874997],[135.23203125000012,35.591894531250034],[135.26777343750004,35.550878906250034],[135.32695312500002,35.52553710937502],[135.60185546875005,35.517724609375016],[135.68027343750006,35.503125],[135.79501953125006,35.54951171875001],[135.903125,35.60688476562498],[136.01621093750012,35.68251953125002],[136.09531250000006,35.767626953125045],[136.02226562500002,35.87412109374998],[136.00625,35.99057617187498],[136.06748046875006,36.116845703125044],[136.15625,36.22333984374998],[136.26181640625006,36.287695312500034],[136.3589843750001,36.36176757812501],[136.5558593750001,36.57197265625004],[136.69814453125002,36.742041015625034],[136.74931640625007,36.95102539062498],[136.71923828124997,37.19838867187502],[136.84345703125004,37.38212890624999],[136.9623046875,37.413671875],[137.19863281250005,37.49746093750002],[137.32265625,37.52207031249998],[137.34121093750005,37.48544921874998],[137.3375,37.437451171874955],[137.15205078125004,37.28315429687498],[137.04580078125,37.21972656250003],[136.98222656250002,37.200048828125],[136.92402343750004,37.17197265625006],[136.89990234375003,37.11767578125],[136.99443359375002,37.026757812499966],[137.01855468750003,36.959619140624966],[137.01269531249997,36.89511718750006],[137.01669921875003,36.83720703124999],[137.12373046875,36.774072265624994],[137.2462890625,36.753173828125],[137.29765625000002,36.753759765625034],[137.34257812500002,36.77036132812503],[137.48261718750004,36.924755859374955],[137.5140625,36.95156250000002],[137.91318359375012,37.06459960937502],[138.1095703125001,37.15107421874998],[138.21806640625007,37.17338867187499],[138.31992187500012,37.21840820312502],[138.54833984375003,37.39213867187495],[138.63281249999994,37.47216796875002],[138.709375,37.560644531250006],[138.77060546875012,37.663427734375006],[138.81884765624994,37.77470703125002],[138.88505859375007,37.84394531250001],[139.24716796875012,38.00908203124999],[139.36386718750006,38.09902343750002],[139.40097656250006,38.142578125],[139.44580078124997,38.26875],[139.4767578125001,38.399804687499994],[139.52080078125007,38.50253906250006],[139.58017578125006,38.59887695312497],[139.65976562500006,38.69702148437497],[139.74912109375006,38.78813476562499],[139.80195312500004,38.881591796875],[139.87861328125004,39.10493164062504],[139.9123046875001,39.22856445312499],[139.93857421875012,39.27314453125001],[139.97714843750006,39.310644531250034],[140.01083984375006,39.358056640624994],[140.03652343749997,39.41113281249997],[140.04814453125002,39.463720703125034],[140.06474609375002,39.62441406249999],[140.05468749999997,39.74926757812503],[139.99472656250003,39.855078125],[139.94521484375005,39.885107421875006],[139.89121093750006,39.886865234374994],[139.81035156250002,39.87773437500002],[139.74150390625002,39.92084960937498],[139.7554687500001,39.95893554687504],[139.82568359375003,39.966015624999955],[139.87363281250012,39.98569335937506],[139.90800781250002,40.02172851562503],[139.97246093750007,40.13696289062497],[140.01113281250005,40.26035156250006],[140.01445312500002,40.314892578124976],[139.96406250000004,40.41430664062497],[139.92392578125006,40.533886718750004],[139.92285156250003,40.59843750000002],[139.96669921875005,40.672753906249966],[140.02929687500003,40.73315429687503],[140.0853515625,40.74736328124999],[140.14609375000012,40.751562500000034],[140.20126953125006,40.77490234375],[140.25234375,40.80878906249998],[140.28125,40.84609375000002],[140.3262695312501,40.94765625000002],[140.34355468750002,41.00566406250002],[140.31523437500002,41.16088867187503],[140.34443359375007,41.203320312499955],[140.38593750000004,41.22978515625001],[140.44130859375,41.209667968750004],[140.49804687500003,41.205664062500006],[140.5641601562501,41.21181640625002],[140.62763671875004,41.195410156250034],[140.63964843750003,41.155615234375006],[140.67939453125004,40.89326171875004],[140.70244140625002,40.85781250000002],[140.74863281250012,40.830322265625],[140.80078124999997,40.834326171875034],[140.84580078125012,40.875146484374994],[140.87617187500004,40.92954101562506],[140.93603515625,40.940771484375034],[141.1185546875,40.88227539062501],[141.18320312500006,40.92402343750001],[141.22539062500007,40.98847656249998],[141.262109375,41.102685546874994],[141.24423828125006,41.20561523437499],[141.20039062500004,41.24360351562501],[141.15507812500002,41.23671875000002],[141.11503906250007,41.20849609375005],[141.0704101562501,41.19306640625001],[140.8005859375,41.138818359374966],[140.80185546875012,41.25366210937499],[140.85957031250004,41.42543945312502],[140.89150390625,41.47978515624998],[140.9369140625,41.50556640624998],[141.0501953125,41.47573242187505],[141.10585937500005,41.45585937499999],[141.22929687500005,41.37265625]]],[[[139.48125,42.08100585937498],[139.4583984375,42.075634765624955],[139.43457031250003,42.08408203124998],[139.4115234375,42.15966796875002],[139.43134765625004,42.19956054687497],[139.49580078125004,42.227441406249966],[139.55839843750002,42.235205078125034],[139.50507812500004,42.09638671875001],[139.48125,42.08100585937498]]],[[[141.29541015625,45.11933593750001],[141.2259765625,45.112207031249966],[141.14531250000002,45.153906250000034],[141.13535156250012,45.20620117187502],[141.19375,45.24785156249999],[141.25185546875002,45.23247070312496],[141.31005859374997,45.17856445312497],[141.32919921875006,45.150488281250034],[141.29541015625,45.11933593750001]]],[[[141.07275390624997,45.33286132812497],[141.03398437500007,45.26933593750001],[140.98212890625004,45.36376953124997],[140.97167968749997,45.46547851562499],[141.00166015625004,45.46484375000006],[141.05673828125006,45.449560546875034],[141.06992187500012,45.4],[141.07275390624997,45.33286132812497]]],[[[143.8243164062501,44.11699218749999],[143.94951171875002,44.111914062500034],[144.00546875000006,44.11665039062501],[144.10136718750007,44.10156250000005],[144.4818359375,43.94956054687498],[144.59667968749997,43.930224609375045],[144.71523437500005,43.92797851562503],[144.79853515625004,43.940234375000045],[144.871875,43.98193359375],[145.10156249999997,44.166162109374966],[145.34277343750003,44.333886718750016],[145.36953125000005,44.32739257812505],[145.36962890624997,44.28129882812499],[145.351953125,44.22978515624996],[145.24521484375012,44.07617187500003],[145.12636718750005,43.86938476562499],[145.10107421874997,43.76455078125005],[145.13964843750003,43.6625],[145.2140625000001,43.578222656250006],[145.27294921874997,43.46289062500006],[145.34082031249997,43.30253906249999],[145.43613281250012,43.2822265625],[145.48789062500006,43.27973632812504],[145.58330078125007,43.327783203124966],[145.67363281250002,43.38886718749998],[145.75126953125002,43.39628906249999],[145.83300781249997,43.38593750000001],[145.72558593750003,43.34345703124995],[145.62421875000004,43.29130859374999],[145.53740234375,43.19267578124999],[145.505078125,43.17421875000002],[145.40478515625003,43.180273437500034],[145.34746093750005,43.17670898437501],[145.23007812500006,43.13549804687506],[145.12714843750004,43.08886718750006],[145.02880859374997,43.03164062500002],[144.92138671874997,43.00092773437498],[144.80712890625003,42.99370117187502],[144.63076171875,42.94692382812499],[144.5162109375001,42.94360351562502],[144.30156250000007,42.98442382812501],[144.19726562499997,42.97363281250003],[143.96933593750006,42.88139648437498],[143.76210937500005,42.748144531250006],[143.58095703125,42.59873046875003],[143.42949218750002,42.41889648437498],[143.36865234374997,42.32514648437498],[143.33212890625012,42.22036132812505],[143.32714843749997,42.15102539062505],[143.313671875,42.08432617187503],[143.27871093750005,42.03784179687497],[143.2365234375001,42.000195312499955],[143.11171875000005,42.022216796875],[142.90634765625006,42.11835937499995],[142.508203125,42.25795898437496],[142.08789062500003,42.47172851562502],[141.85136718750007,42.57905273437501],[141.40664062500005,42.54692382812496],[140.98613281250002,42.34213867187498],[140.94843750000004,42.35957031249998],[140.78759765624994,42.5],[140.70976562500002,42.55561523437495],[140.61679687500006,42.57133789062496],[140.54765625000002,42.56953125000004],[140.48046875000003,42.559375],[140.3854492187501,42.487158203125034],[140.35058593750003,42.43510742187501],[140.32353515625002,42.37607421875006],[140.31523437500002,42.33427734374999],[140.32666015625003,42.29335937499999],[140.41660156250006,42.200732421875045],[140.5275390625001,42.13178710937504],[140.57773437500012,42.11865234375003],[140.68427734375004,42.12348632812501],[140.7337890625,42.116357421874994],[140.91230468750004,41.977783203125],[141.10771484375007,41.84804687500005],[141.15097656250012,41.80507812499999],[141.07871093750012,41.75981445312502],[140.99951171874997,41.737402343750055],[140.90751953125007,41.743261718750006],[140.81640624999997,41.76040039062505],[140.65986328125,41.81557617187499],[140.5929687500001,41.7685546875],[140.48916015625,41.67216796875002],[140.43164062500003,41.56738281249997],[140.3849609375001,41.51928710937503],[140.27011718750006,41.45600585937501],[140.1486328125001,41.423242187499994],[140.08515625000004,41.43408203125],[140.03662109374997,41.473779296874994],[140.0091796875,41.521337890625006],[139.99531250000004,41.57641601562503],[140.02128906250007,41.69575195312501],[140.0841796875001,41.80322265624997],[140.10839843749994,41.912939453125034],[140.05683593750004,42.067333984374955],[140.02412109375,42.09956054687504],[139.89511718750012,42.190039062500006],[139.83544921874997,42.278076171875],[139.82089843750012,42.387597656249994],[139.82851562500005,42.448144531249994],[139.86015625000002,42.58173828125004],[139.89111328125003,42.64921875000002],[139.95058593750005,42.67143554687502],[140.01503906250005,42.684765624999976],[140.1146484375,42.73295898437502],[140.22412109375003,42.79550781249998],[140.32861328124997,42.86684570312502],[140.43222656250012,42.95410156250006],[140.48642578125006,43.049902343750034],[140.39746093749997,43.16733398437506],[140.379296875,43.23710937499996],[140.39238281250002,43.303125],[140.48691406250006,43.338183593750045],[140.58457031250006,43.31171874999998],[140.78066406250005,43.214990234374994],[140.81914062500007,43.20546875],[140.9538085937501,43.20097656249999],[141.13818359374997,43.17993164062506],[141.24501953125,43.18505859375003],[141.29628906250005,43.19965820312498],[141.37412109375006,43.279638671875],[141.41230468750004,43.381494140624994],[141.39833984375002,43.5125],[141.3976562500001,43.64262695312499],[141.44677734374997,43.748632812500006],[141.60068359375006,43.91899414062498],[141.64472656250004,44.01943359375002],[141.66083984375004,44.26362304687501],[141.71630859374997,44.371191406250006],[141.7609375000001,44.482519531250034],[141.78222656249997,44.71635742187496],[141.71904296875002,44.94106445312502],[141.65576171874994,45.05122070312498],[141.58300781250003,45.15595703125001],[141.59375,45.255957031250034],[141.65253906250004,45.3486328125],[141.6540039062501,45.3765625],[141.66796874999997,45.401269531249966],[141.778125,45.41889648437501],[141.82949218750005,45.43876953124999],[141.8787109375,45.483300781249994],[141.93769531250004,45.50952148437499],[141.98085937500005,45.483496093750034],[142.01640625000002,45.43793945312498],[142.1715820312501,45.32563476562501],[142.41601562499997,45.125],[142.70410156249997,44.81918945312506],[142.88476562499994,44.670117187499955],[143.07509765625005,44.53491210937506],[143.28857421875003,44.396630859375016],[143.51191406250004,44.27753906250001],[143.65458984375007,44.22133789062502],[143.75908203125002,44.131640625000045],[143.8243164062501,44.11699218749999]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Kashmir","sov_a3":"KAS","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Siachen Glacier","adm0_a3":"KAS","geou_dif":0,"geounit":"Siachen Glacier","gu_a3":"KAS","su_dif":0,"subunit":"Siachen Glacier","su_a3":"KAS","brk_diff":1,"name":"Siachen Glacier","name_long":"Siachen Glacier","brk_a3":"B45","brk_name":"Siachen Glacier","brk_group":"Jammu and Kashmir","abbrev":"Siachen","postal":"SG","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Claimed by Pakistan and India","name_sort":"Kashmir","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":6,"mapcolor13":-99,"pop_est":6000,"gdp_md_est":15,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"-99","adm0_a3_us":"KAS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":15,"long_len":15,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"siachenglacier.geojson"},"geometry":{"type":"Polygon","coordinates":[[[77.79941406250003,35.495898437499996],[77.69697265625001,35.443261718749994],[77.57158203124999,35.37875976562499],[77.42343750000003,35.302587890625],[77.29296875,35.235546875],[77.16855468750003,35.171533203124994],[77.04863281249999,35.10991210937499],[77.00449218750003,35.196337890624996],[76.97890625000002,35.246435546875],[76.927734375,35.346630859375],[76.88222656250002,35.4357421875],[76.81279296874999,35.57182617187499],[76.76689453124997,35.66171875],[76.87890625,35.61328125],[77.09003906250001,35.552050781249996],[77.29482421875002,35.508154296875],[77.44648437500001,35.4755859375],[77.52001953125,35.4734375],[77.57255859374999,35.471826171874994],[77.72402343750002,35.48056640624999],[77.79941406250003,35.495898437499996]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Kazakhstan","sov_a3":"KAZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kazakhstan","adm0_a3":"KAZ","geou_dif":0,"geounit":"Kazakhstan","gu_a3":"KAZ","su_dif":0,"subunit":"Kazakhstan","su_a3":"KAZ","brk_diff":0,"name":"Kazakhstan","name_long":"Kazakhstan","brk_a3":"KAZ","brk_name":"Kazakhstan","brk_group":null,"abbrev":"Kaz.","postal":"KZ","formal_en":"Republic of Kazakhstan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kazakhstan","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":6,"mapcolor13":1,"pop_est":15399437,"gdp_md_est":175800,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"KZ","iso_a3":"KAZ","iso_n3":"398","un_a3":"398","wb_a2":"KZ","wb_a3":"KAZ","woe_id":-99,"adm0_a3_is":"KAZ","adm0_a3_us":"KAZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KAZ.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[50.184472656249994,44.854638671874994],[50.148730468750074,44.82646484375001],[50.0953125,44.83061523437499],[49.99511718750003,44.93696289062498],[50.02304687500006,45.04472656249998],[50.059375,45.06679687500005],[50.109863281249964,45.081933593750016],[50.116601562499994,45.058251953124994],[50.04531250000005,45.01000976562503],[50.038867187500074,44.94912109374996],[50.09814453124997,44.881542968749955],[50.184472656249994,44.854638671874994]]],[[[50.31171875000004,44.97207031250002],[50.27724609375005,44.958593750000034],[50.25615234375002,45.02241210937498],[50.29492187500003,45.07592773437503],[50.34970703125006,45.08300781249997],[50.330859375000074,44.99843749999996],[50.31171875000004,44.97207031250002]]],[[[52.68242187500002,45.411816406249976],[52.66484375000002,45.40131835937498],[52.59833984375004,45.42817382812504],[52.55429687500006,45.473974609375034],[52.60888671874997,45.528027343749955],[52.659570312499994,45.51806640625006],[52.69296875000006,45.46074218750002],[52.68242187500002,45.411816406249976]]],[[[70.08740234375003,55.17675781250002],[70.18242187500002,55.162451171875034],[70.293359375,55.18359375],[70.371484375,55.21225585937498],[70.41718750000004,55.25317382812506],[70.48632812500003,55.282373046874966],[70.73808593750007,55.30517578125],[70.79033203125006,55.26113281249999],[70.91015624999997,55.127978515625045],[70.99179687500005,54.95048828125001],[71.12626953125002,54.71503906250001],[71.18554687500003,54.59931640624998],[71.15917968749997,54.53862304687496],[71.159765625,54.45541992187498],[71.15214843750007,54.36406250000002],[71.05273437499997,54.26049804687497],[71.09316406250005,54.21220703124998],[71.33642578125003,54.15834960937502],[71.6771484375,54.17802734375004],[71.8874023437501,54.22148437500002],[72.00449218750005,54.20566406249998],[72.065625,54.231640624999955],[72.10537109375,54.308447265625055],[72.18603515625001,54.32563476562501],[72.26914062500006,54.27211914062502],[72.3294921875,54.18144531250002],[72.38730468750006,54.12304687500003],[72.3830078125001,54.05366210937501],[72.40429687499997,53.96445312500006],[72.44677734375001,53.94184570312498],[72.53027343749997,53.975781249999955],[72.58593750000003,53.99594726562498],[72.59921875000005,54.023046875],[72.57558593750005,54.05649414062498],[72.56425781250007,54.09042968750006],[72.5827148437501,54.12158203125],[72.62226562500004,54.13432617187502],[72.74101562500002,54.12451171874997],[72.91406249999997,54.10732421875002],[73.1193359375001,53.98076171874999],[73.22988281250005,53.95781250000004],[73.27656250000004,53.95561523437502],[73.38066406250002,53.96284179687498],[73.50566406250002,53.99931640624996],[73.58994140625,54.04497070312502],[73.61796875000007,54.06738281249997],[73.66640625000005,54.06347656249997],[73.71240234375001,54.04238281250002],[73.71552734375004,53.996191406250034],[73.67890625000004,53.92944335937503],[73.55419921875003,53.868310546874994],[73.39941406250003,53.81147460937498],[73.30566406250003,53.707226562499955],[73.28574218750006,53.598388671875],[73.3268554687501,53.54316406250001],[73.3619140625,53.506201171875034],[73.371875,53.45439453124996],[73.40693359375004,53.44755859374999],[73.4699218750001,53.468896484374994],[73.64296875,53.576269531250006],[73.73115234375008,53.602783203125],[73.85898437500006,53.61972656249998],[74.06865234375002,53.61142578124997],[74.20996093749997,53.57646484374996],[74.27734375000003,53.52773437499999],[74.35156250000001,53.487646484375006],[74.40273437500005,53.504443359375045],[74.42929687500006,53.550732421874955],[74.43046875000002,53.60371093750001],[74.45195312500007,53.64726562500002],[74.68144531250007,53.754394531249964],[74.83417968750004,53.82568359375003],[74.88681640625,53.834033203125045],[74.98896484375004,53.81923828125005],[75.0521484375,53.82670898437496],[75.22021484374997,53.89379882812506],[75.37705078125005,53.970117187499966],[75.39238281250007,54.021728515625],[75.3981445312501,54.06850585937502],[75.43720703125004,54.08964843749999],[75.6568359375,54.10600585937501],[75.69287109374996,54.114794921875045],[75.88066406250007,54.16796875000003],[76.14052734374998,54.25854492187503],[76.26660156249997,54.31196289062498],[76.496484375,54.335693359375],[76.53916015625012,54.35107421875003],[76.61552734375002,54.38710937499999],[76.75937500000012,54.436865234375006],[76.8373046875,54.44238281249999],[76.78896484375,54.321875],[76.70302734375,54.18247070312506],[76.65458984375007,54.14526367187503],[76.42167968750007,54.151513671874966],[76.42207031250004,54.11352539062506],[76.45859375000012,54.055273437500006],[76.48476562500005,54.02255859374997],[76.51308593750005,53.99321289062495],[76.57568359374997,53.942529296875016],[76.820703125,53.82265625000002],[77.13242187500005,53.67011718749995],[77.46923828124997,53.49877929687503],[77.70439453125007,53.379150390625],[77.79941406250006,53.317431640625045],[77.85996093750006,53.269189453124994],[78.03349609375007,53.09497070312503],[78.19804687500002,52.9296875],[78.47548828125005,52.638427734375],[78.72148437500006,52.35703125000006],[78.99208984375005,52.04741210937504],[79.14873046875007,51.86811523437501],[79.46884765625012,51.49311523437498],[79.55429687500012,51.37797851562498],[79.71640625000005,51.16000976562498],[79.85966796875007,50.955468749999966],[79.98623046875,50.774560546874966],[80.06591796874997,50.75820312500002],[80.07207031250007,50.80727539062499],[80.08632812500004,50.83999023437499],[80.12724609375002,50.85834960937498],[80.22021484374997,50.91176757812505],[80.27041015625005,50.92460937499999],[80.34521484375003,50.919091796875016],[80.4236328125,50.946289062499964],[80.45224609375006,50.997607421875045],[80.43359374999997,51.092626953125034],[80.42148437500012,51.136376953124966],[80.44804687500002,51.18334960937503],[80.49101562500007,51.20175781250006],[80.55068359375004,51.21660156249996],[80.60546875000003,51.22421875],[80.65048828125006,51.27734375],[80.73525390625,51.293408203124976],[80.81308593750012,51.28349609375002],[80.87734375,51.28144531250004],[80.93408203124997,51.24277343749998],[80.965625,51.189794921875006],[81.02675781250005,51.18569335937499],[81.12724609375002,51.19106445312502],[81.14101562500005,51.146582031250006],[81.11240234375005,51.07236328124998],[81.0775390625,51.01494140625001],[81.0714843750001,50.96875],[81.12460937500006,50.946289062499964],[81.31914062500002,50.96640625],[81.38828125000006,50.95649414062501],[81.41015624999997,50.90976562499998],[81.4376953125001,50.87104492187501],[81.4515625,50.82368164062504],[81.43144531250007,50.771142578124994],[81.46591796875006,50.73984375],[81.63388671875012,50.73911132812503],[81.75205078125012,50.76440429687503],[81.93369140625006,50.766357421875],[82.098046875,50.710839843749966],[82.21191406250003,50.71943359375003],[82.32636718750003,50.74189453124998],[82.49394531250007,50.72758789062498],[82.61171875,50.77148437499997],[82.69296875000012,50.82631835937505],[82.71855468750002,50.86948242187503],[82.76083984375012,50.89335937500001],[82.91904296875006,50.89311523437496],[83.0192382812501,50.89726562500002],[83.09277343749997,50.96059570312505],[83.16025390625012,50.98920898437501],[83.27373046875006,50.99458007812503],[83.35732421875005,50.99458007812503],[83.58144531250005,50.935742187499955],[83.71777343750003,50.88715820312501],[83.859765625,50.81801757812505],[83.94511718750007,50.774658203125],[84.00234375,50.67685546875006],[84.09931640625004,50.60473632812503],[84.1759765625001,50.52055664062501],[84.19453125000003,50.437451171874955],[84.25781249999997,50.28823242187502],[84.32324218749997,50.239160156249966],[84.40097656250012,50.239160156249966],[84.49902343750003,50.21875],[84.60732421875005,50.20239257812503],[84.83896484375006,50.09130859375005],[84.9240234375001,50.087988281250006],[84.9894531250001,50.061425781249994],[84.99970703125004,50.01030273437499],[84.97519531250012,49.95107421874999],[85.00078125000002,49.894140625000034],[85.07646484375007,49.821630859375006],[85.1365234375,49.75073242187503],[85.21015625000004,49.66484375000002],[85.2326171875001,49.61582031249998],[85.29189453125,49.599462890625034],[85.37158203124996,49.62392578125005],[85.49843750000005,49.605371093749994],[85.88046875000006,49.556542968749994],[85.93359374999997,49.55043945312499],[85.9744140625,49.49931640624996],[86.02958984375007,49.50341796875],[86.09296875000004,49.50546874999998],[86.1808593750001,49.49931640624996],[86.24218749999997,49.54633789062495],[86.29238281250004,49.5875],[86.41796874999997,49.63847656249999],[86.52226562500006,49.70776367187497],[86.61015625000007,49.76914062500006],[86.67548828125004,49.77729492187501],[86.72871093750004,49.74868164062496],[86.7306640625001,49.69555664062497],[86.66533203125002,49.656689453124955],[86.61425781249997,49.60971679687498],[86.62646484374997,49.56269531250001],[86.71435546874997,49.55859375000005],[86.81210937500006,49.487890625000034],[86.95292968750007,49.32207031250002],[87.00097656249997,49.28730468750004],[87.07060546875007,49.25458984375004],[87.14804687500012,49.239794921875045],[87.23369140625007,49.216162109375],[87.296875,49.14765625000001],[87.32285156250012,49.085791015625],[87.22998046875003,49.10585937500002],[87.0485351562501,49.109912109375045],[86.93798828124997,49.09755859375002],[86.8859375000001,49.090576171875],[86.8083007812501,49.04970703125002],[86.753125,49.00883789062496],[86.72861328125012,48.93935546875002],[86.75781250000003,48.860742187499994],[86.7179687500001,48.697167968749966],[86.66376953125004,48.635546875000045],[86.54941406250012,48.52861328125002],[86.48330078125005,48.50537109374997],[86.37255859374997,48.486230468749994],[86.265625,48.45454101562501],[86.05615234374997,48.42373046875005],[85.82988281250007,48.40805664062506],[85.74941406249998,48.38505859374999],[85.69218750000006,48.31181640624999],[85.65156250000004,48.25053710937502],[85.6263671875,48.20400390625005],[85.56230468750002,48.05185546875003],[85.52597656250006,47.915625],[85.56162109375012,47.74648437499999],[85.58828125000005,47.558496093749994],[85.58662109375008,47.49365234375],[85.64179687500004,47.39741210937504],[85.66982421875005,47.33837890625],[85.65664062500005,47.25463867187499],[85.57724609375012,47.1884765625],[85.5296875,47.10078125],[85.484765625,47.06352539062496],[85.35537109375005,47.046728515625006],[85.23349609375006,47.03637695312502],[85.1105468750001,46.96123046874999],[85.01220703125003,46.90922851562496],[84.858203125,46.843164062499994],[84.78613281249997,46.830712890625044],[84.74599609375005,46.86435546875006],[84.71953125000007,46.939355468749966],[84.66660156250006,46.97236328125004],[84.59228515625003,46.974951171875034],[84.53242187500004,46.97578125000001],[84.33886718749997,46.99614257812499],[84.21513671875006,46.99472656249998],[84.12207031249997,46.97861328124998],[84.016015625,46.97050781250002],[83.83261718750006,46.99785156249999],[83.71396484375012,47.02104492187502],[83.63408203125002,47.043212890625],[83.4435546875001,47.108642578125],[83.19306640625004,47.18657226562498],[83.09033203124997,47.209375],[83.02949218750004,47.18593750000002],[83.02011718750006,47.141455078125034],[83.0041015625001,47.03349609374995],[82.97490234375002,46.966015624999976],[82.8,46.62446289062504],[82.69218750000007,46.38666992187501],[82.555078125,46.15869140625],[82.51171874999997,46.00581054687504],[82.42968749999997,45.811914062499966],[82.34814453124997,45.671533203124966],[82.31523437500002,45.59492187499998],[82.3122070312501,45.56372070312503],[82.32666015625003,45.51992187499999],[82.45166015624997,45.47197265624999],[82.58251953125003,45.442578124999955],[82.61162109375007,45.424267578124955],[82.62578125,45.37441406250002],[82.62109374999997,45.293115234374966],[82.59697265625002,45.215966796874966],[82.558984375,45.15541992187499],[82.52148437500003,45.12548828124999],[82.4787109375001,45.12358398437499],[82.3966796875001,45.162451171875006],[82.3234375000001,45.205859375000045],[82.26660156249997,45.21909179687497],[82.12275390625003,45.19487304687502],[81.98925781250003,45.16186523437506],[81.94492187500006,45.16083984375001],[81.86748046875002,45.18208007812498],[81.78964843750012,45.22602539062498],[81.75888671875006,45.31083984375002],[81.6919921875001,45.34936523437497],[81.60205078125003,45.31083984375002],[81.334765625,45.246191406250006],[81.04033203125007,45.16914062500001],[80.85332031250007,45.12929687499999],[80.78007812500007,45.13554687500002],[80.63476562500003,45.126513671875045],[80.50917968750005,45.10498046875],[80.41494140625,45.07509765625005],[80.22822265625008,45.03398437500001],[80.05917968750012,45.0064453125],[79.95019531250001,44.944091796875],[79.871875,44.88378906249997],[79.87529296875002,44.86083984375],[79.93212890624997,44.82519531250003],[79.99716796875006,44.797216796875006],[80.12783203125005,44.80375976562502],[80.25507812500004,44.80810546875],[80.36083984375003,44.770312500000045],[80.45546875,44.74609375],[80.48154296875006,44.71464843749999],[80.45546875,44.68408203124997],[80.40058593750004,44.67690429687502],[80.38144531250012,44.65541992187499],[80.39101562500005,44.626806640625034],[80.35507812500006,44.55200195312497],[80.336328125,44.43837890624999],[80.35488281250005,44.326513671875034],[80.36533203125012,44.22329101562496],[80.35898437500006,44.171289062500044],[80.3552734375,44.09726562500006],[80.39580078125002,44.04716796874999],[80.43154296875005,43.95175781249998],[80.49599609375,43.89208984375],[80.59345703125004,43.68510742187502],[80.65078125,43.564160156249976],[80.7038085937501,43.42705078125002],[80.6654296875,43.35297851562504],[80.66777343750002,43.31005859375],[80.72978515625002,43.27426757812498],[80.7570312500001,43.20434570312506],[80.78574218750006,43.16157226562504],[80.77773437500005,43.11894531249996],[80.75117187500004,43.10249023437498],[80.61699218750007,43.128271484375006],[80.50703125000004,43.085791015625055],[80.39023437500006,43.043115234374966],[80.37451171874997,43.02041015624996],[80.37128906250008,42.99560546874997],[80.38339843750006,42.973779296874966],[80.45068359375003,42.935546875],[80.54375,42.911718750000034],[80.53896484375005,42.873486328124955],[80.4240234375001,42.85576171874999],[80.25029296875007,42.797265624999966],[80.2022460937501,42.73447265624998],[80.16503906249997,42.66552734375006],[80.16191406250007,42.62553710937499],[80.17929687500006,42.51835937499999],[80.20576171875004,42.39941406250003],[80.25507812500004,42.274169921875],[80.25908203125006,42.23540039062499],[80.23300781250006,42.2078125],[80.209375,42.190039062500006],[80.07128906249997,42.302978515625],[79.92109375000004,42.41313476562496],[79.80341796875004,42.43847656249997],[79.5984375,42.456640625000034],[79.49013671875,42.45756835937496],[79.42822265624997,42.483496093750006],[79.36777343750012,42.547216796875006],[79.29550781250006,42.604833984375034],[79.20302734375005,42.666015624999964],[79.16484375000007,42.759033203125],[79.1266601562501,42.775732421875034],[79.05986328125002,42.763818359374994],[78.94794921875004,42.76669921875006],[78.88515625,42.77490234375003],[78.79150390625003,42.79082031249998],[78.6422851562501,42.82871093749998],[78.52421875000002,42.864648437500016],[78.37597656250001,42.87148437499999],[78.29003906250003,42.86435546875006],[78.0231445312501,42.85751953125],[77.80166015625,42.89521484375004],[77.62246093749998,42.90224609375005],[77.51220703125003,42.900048828125044],[77.45927734375007,42.90473632812501],[77.36855468750005,42.904443359374966],[77.23554687500004,42.912646484375045],[77.05732421875004,42.97065429687495],[76.98808593750007,42.97358398437501],[76.9440429687501,42.971484375000045],[76.64648437500003,42.928808593750034],[76.50917968750005,42.91889648437498],[76.2181640625,42.923730468749994],[75.9322265625,42.92851562499999],[75.84033203125003,42.9375],[75.78955078124997,42.93291015624999],[75.68173828125,42.83046875],[75.63564453125005,42.81459960937505],[75.36621093749997,42.83696289062498],[75.04765625000007,42.904394531250034],[74.8175781250001,42.978173828124966],[74.6222656250001,43.05620117187496],[74.36386718750006,43.17944335937503],[74.20908203125006,43.24038085937502],[74.18681640625002,43.205273437499955],[74.14589843750004,43.194091796875],[74.08623046875007,43.188623046875044],[73.94921875000003,43.19501953125001],[73.88603515625002,43.132568359375],[73.71855468750002,43.08789062500003],[73.61201171875008,43.04790039062496],[73.55625,43.002783203125006],[73.45019531249997,42.703027343749966],[73.421875,42.59350585937503],[73.49296875000007,42.409033203125034],[73.41162109375003,42.41977539062497],[73.316015625,42.46699218750001],[73.28291015625008,42.50410156250004],[73.1908203125,42.52685546875006],[72.85507812500006,42.561132812500006],[72.7923828125,42.60346679687501],[72.75292968750003,42.63789062500001],[72.66611328125,42.66040039062497],[72.54316406250004,42.67773437500006],[72.27578125,42.757666015625006],[72.16181640625004,42.76069335937498],[71.816796875,42.822167968749994],[71.76054687500002,42.82148437500004],[71.734765625,42.818896484375045],[71.60078125000004,42.778662109375006],[71.5142578125,42.766943359375],[71.42207031250004,42.78315429687504],[71.25664062500002,42.733544921874966],[71.16738281250005,42.66743164062498],[71.09355468750002,42.586523437500034],[71.02275390625007,42.53544921875002],[71.00195312500003,42.459082031250006],[70.95234375000004,42.41938476562501],[70.89287109375007,42.339990234374994],[70.89287109375007,42.29370117187497],[70.94677734374997,42.24868164062505],[70.86035156250003,42.20722656250004],[70.76455078125005,42.194189453125034],[70.71523437500005,42.16865234374998],[70.6625,42.10747070312495],[70.61328124999997,42.05473632812496],[70.58427734375,42.036035156249966],[70.54013671875005,42.03945312500005],[70.48906250000007,42.080273437500004],[70.41601562500003,42.07856445312501],[70.32890625000002,42.02797851562502],[70.22587890625007,41.94599609375001],[70.09560546875,41.82050781250004],[69.95996093749997,41.754052734374994],[69.78808593749997,41.69731445312499],[69.66386718750007,41.672119140625],[69.56513671875004,41.62905273437502],[69.40097656250006,41.54189453125002],[69.3683593750001,41.490576171875034],[69.24931640625007,41.46025390624999],[69.15361328125002,41.42524414062498],[69.06494140625003,41.366943359375],[69.04345703124997,41.26411132812501],[68.9869140625,41.205029296874955],[68.85117187500006,41.12382812500002],[68.73710937500002,41.04189453125002],[68.66279296875004,40.961523437500006],[68.58408203125,40.876269531250045],[68.5592773437501,40.82929687499998],[68.55654296875,40.76513671875006],[68.59365234375,40.711279296875006],[68.60068359375,40.65996093750002],[68.57265625,40.62265624999998],[68.495703125,40.60864257812506],[68.41503906250003,40.61943359375002],[68.29189453125,40.656103515625034],[68.16025390625,40.721777343750006],[68.11230468749997,40.75405273437502],[68.04765625000007,40.80927734374998],[68.05703125,40.86059570312506],[68.09033203124997,40.96025390625001],[68.11308593750007,41.02861328124999],[68.059375,41.06127929687497],[68.01972656250004,41.09624023437499],[67.99140625000004,41.13002929687505],[67.9357421875001,41.19658203125002],[67.86572265625001,41.18027343749998],[67.805078125,41.163916015625034],[67.73505859375004,41.187255859374964],[67.52802734375004,41.177148437499966],[67.37158203124997,41.16953125],[67.225,41.16235351562497],[67.038671875,41.1533203125],[66.8142578125,41.14238281249999],[66.74980468750007,41.15708007812506],[66.70966796875004,41.17915039062501],[66.66865234375004,41.27075195312503],[66.64531250000002,41.3486328125],[66.60166015625,41.494335937500004],[66.57255859375,41.60698242187496],[66.53789062500007,41.74125976562496],[66.5150390625,41.88940429687502],[66.49863281250006,41.99487304687503],[66.3288085937501,41.99833984375002],[66.19316406250007,42.00112304687496],[66.00957031250007,42.00488281250003],[66.01123046874997,42.088769531249966],[66.01318359375003,42.19448242187502],[66.01552734375005,42.314794921875006],[66.04980468750003,42.472753906250034],[66.06269531250004,42.60517578125001],[66.078515625,42.76665039062496],[66.08886718749996,42.873388671875034],[66.1002929687501,42.99082031249998],[66.00566406250007,42.95458984375006],[65.9010742187501,42.91450195312498],[65.80302734375,42.87695312500006],[65.73564453125002,42.97211914062498],[65.67021484375002,43.06459960937499],[65.570703125,43.205175781250034],[65.49619140625,43.310546875],[65.36650390625006,43.37202148437501],[65.27050781249997,43.417529296875045],[65.17089843750003,43.49418945312502],[65.08486328125005,43.573681640624976],[65.003125,43.649072265624966],[64.9054687500001,43.714697265625006],[64.81181640625002,43.693945312500034],[64.70605468749997,43.65297851562505],[64.6041015625,43.613476562499976],[64.49609375000003,43.571630859375006],[64.44316406250007,43.55117187499999],[64.31816406250002,43.55893554687498],[64.20878906250002,43.565722656250045],[64.01328125000006,43.57783203125001],[63.848144531249964,43.58813476562497],[63.679687499999964,43.5986328125],[63.44482421874997,43.61323242187504],[63.207031250000036,43.62797851562502],[63.047656250000074,43.60849609375003],[62.846191406249964,43.583886718749994],[62.6344726562501,43.558007812499966],[62.459375,43.536621093749964],[62.23789062500006,43.50957031249996],[62.0719726562501,43.489355468750034],[61.99023437500002,43.49213867187495],[61.887597656249994,43.57724609374998],[61.723242187500006,43.713574218749955],[61.62363281250006,43.79619140625001],[61.52587890625002,43.877197265625],[61.38505859375002,43.99394531249996],[61.27148437499997,44.08227539062503],[61.16074218750006,44.16860351562502],[61.09707031250005,44.24824218749998],[61.06533203125,44.348388671874964],[61.007910156250006,44.39379882812497],[60.87919921875007,44.45507812500003],[60.741113281249994,44.520849609375034],[60.602929687499994,44.58662109375001],[60.464746093749994,44.652441406250006],[60.32666015624997,44.71821289062498],[60.18847656249997,44.78398437499998],[60.05029296874997,44.84975585937496],[59.912207031250006,44.91557617187496],[59.774023437500006,44.981298828125034],[59.6359375000001,45.04707031250001],[59.49785156250002,45.11284179687502],[59.35957031250005,45.178613281249994],[59.22148437500001,45.24443359374999],[59.083398437499994,45.310205078124994],[58.945117187500074,45.37597656249997],[58.80703124999999,45.441796874999966],[58.668945312500036,45.50756835937506],[58.555273437500006,45.55537109375001],[58.44941406250004,45.542919921874955],[58.29111328125006,45.509423828124994],[58.1251953125001,45.47436523437503],[57.961035156250006,45.439697265625],[57.66669921875009,45.37744140625],[57.477343750000074,45.33745117187502],[57.32929687500004,45.303662109374976],[57.171679687500074,45.26772460937502],[56.96503906250004,45.22060546875002],[56.79189453125005,45.181054687499966],[56.588769531250044,45.13476562500003],[56.40917968749997,45.093798828125045],[56.25791015625006,45.05932617187503],[56.10048828125005,45.02338867187498],[55.97568359375006,44.99492187499996],[55.97578125000004,44.76538085937499],[55.975976562499994,44.535839843749955],[55.97607421875003,44.30629882812502],[55.97617187500006,44.07675781250006],[55.97626953125004,43.84721679687502],[55.97636718750002,43.617626953124955],[55.976464843749994,43.38808593749999],[55.97656250000002,43.15859375000005],[55.97666015625006,42.929052734375],[55.9767578125001,42.69951171874996],[55.97685546875001,42.469970703125],[55.97695312500005,42.240429687499955],[55.97705078124997,42.010888671874994],[55.977148437500055,41.781347656250034],[55.97734375000002,41.5517578125],[55.977441406250044,41.32221679687503],[55.934960937499994,41.324121093749966],[55.8390625000001,41.310791015625],[55.678613281249994,41.27880859374997],[55.54521484375002,41.26274414062498],[55.48701171875004,41.27226562499998],[55.434375,41.296289062499994],[55.38837890625004,41.346923828125],[55.319726562499994,41.408398437500004],[55.249609375,41.458105468750006],[55.16230468750004,41.56025390625004],[55.10185546875002,41.63872070312502],[54.9523437500001,41.81000976562501],[54.93164062499997,41.864013671875],[54.90371093750005,41.91909179687505],[54.85380859375002,41.965185546875006],[54.67792968750003,42.078222656250034],[54.47285156250003,42.18017578125003],[54.271875,42.27998046875001],[54.21494140625006,42.30419921874997],[54.12099609374999,42.335205078125],[54.00517578125007,42.335888671874955],[53.92636718750006,42.32978515624995],[53.685351562500074,42.296875],[53.500781250000074,42.25825195312504],[53.25009765625006,42.20585937500002],[53.0558593750001,42.14775390624999],[53.0125,42.13071289062498],[52.87050781249999,42.06059570312499],[52.696875,41.944384765625045],[52.4938476562501,41.780371093750034],[52.46757812500007,41.885888671875016],[52.45859375,42.04833984375],[52.4621093750001,42.10063476562499],[52.517187500000055,42.237158203125006],[52.57324218750003,42.33085937499999],[52.61835937500004,42.42822265625003],[52.63847656250007,42.55566406250006],[52.59658203125005,42.760156249999966],[52.55,42.80546874999995],[52.49394531250002,42.820263671874955],[52.43427734375003,42.824462890625],[52.32441406250004,42.816162109375],[52.273046875000055,42.79980468750006],[52.18369140625006,42.86875],[52.07558593750005,42.879785156249994],[52.01855468749997,42.860546874999976],[51.96074218750002,42.8505859375],[51.898242187500074,42.869628906249964],[51.844140625000044,42.910449218750045],[51.81103515624997,42.954443359375034],[51.78515625000002,43.00434570312498],[51.7003906250001,43.10405273437504],[51.61601562500001,43.15844726562503],[51.51406250000005,43.17050781249998],[51.34785156250004,43.167382812499966],[51.29541015624997,43.17412109375002],[51.292382812499994,43.230712890625],[51.313378906249994,43.355664062499955],[51.313867187500044,43.42084960937501],[51.30175781249997,43.48237304687501],[51.2741210937501,43.53291015625001],[51.23896484375004,43.57670898437495],[51.13964843749997,43.648779296875006],[51.06484375,43.75014648437505],[50.93984375000005,43.958544921875045],[50.83076171875009,44.192773437499966],[50.78261718749999,44.22802734375006],[50.68496093749999,44.265087890624955],[50.47177734375006,44.29477539062506],[50.331152343750006,44.32548828125002],[50.27558593750004,44.35512695312502],[50.252539062500006,44.406494140625],[50.25292968749997,44.461523437500006],[50.26455078125005,44.52656250000004],[50.2974609375,44.58154296875003],[50.409472656250074,44.6240234375],[50.652441406250006,44.63334960937501],[50.86035156250003,44.62875976562498],[51.04882812500002,44.53046875000004],[51.11074218750005,44.50781250000003],[51.177148437499994,44.50136718750005],[51.3107421875001,44.532421874999976],[51.37666015625004,44.541210937499976],[51.543554687500006,44.53100585937506],[51.49375,44.57753906250002],[51.431054687499994,44.60195312500002],[51.36630859375006,44.59985351562503],[51.31025390625009,44.61875],[51.218164062499994,44.70898437499997],[51.05791015625001,44.81157226562502],[51.0207031250001,44.85400390625002],[51.009375,44.92182617187501],[51.040332031250074,44.980322265625006],[51.153710937499994,45.040234374999955],[51.24990234375005,45.121679687500034],[51.294042968750006,45.229785156250045],[51.333398437499994,45.27958984374995],[51.4157226562501,45.35786132812501],[51.539648437500006,45.34287109374998],[51.7326171875001,45.39946289062496],[52.048730468749994,45.388378906250004],[52.42675781250002,45.404638671875034],[52.53105468750002,45.39863281249998],[52.77197265624997,45.34350585937503],[52.9107421875,45.319726562499966],[53.07890625000007,45.307519531249966],[53.20039062500004,45.33198242187498],[53.085742187500074,45.407373046874966],[52.8375,45.496728515624966],[52.77382812499999,45.57275390625],[52.8875,45.77954101562503],[53.041601562500006,45.967871093750034],[53.13525390625003,46.19165039062497],[53.108984375,46.41406249999997],[53.06396484374997,46.47529296875001],[53.07851562499999,46.54746093749998],[53.13242187500006,46.608349609374955],[53.17021484375002,46.66904296875006],[53.1375,46.742041015625],[53.069433593750006,46.85605468750006],[53.034570312499994,46.892919921875006],[52.91601562500003,46.95439453125002],[52.67763671875005,46.95712890625003],[52.48320312500002,46.99067382812504],[52.4203125,46.963671875000045],[52.384863281250006,46.92211914062503],[52.34033203124997,46.89477539062503],[52.18876953125002,46.839501953124966],[52.13828125,46.82861328124997],[52.085546875,46.83959960937499],[52.011132812500044,46.90190429687498],[51.94511718750002,46.89487304687506],[51.74453125,46.933740234374994],[51.65009765625004,47.01806640625002],[51.61523437499997,47.02993164062505],[51.29082031250001,47.097314453124994],[51.17802734375007,47.110156250000045],[50.920019531250006,47.04067382812502],[50.73271484375001,46.95166015624999],[50.6798828125001,46.93872070312503],[50.58291015625005,46.88227539062498],[50.52841796875006,46.87329101562503],[50.472265625,46.882910156250034],[50.419335937500044,46.879492187500034],[50.30625,46.79492187500003],[50.10156249999997,46.69643554687505],[49.99980468750001,46.63427734375],[49.886328125,46.59565429687503],[49.76054687500002,46.57148437499998],[49.63154296875004,46.56757812499998],[49.584375,46.54521484374996],[49.43720703125004,46.53725585937502],[49.347460937500074,46.51914062499998],[49.344238281249964,46.48554687499998],[49.36210937500001,46.41020507812499],[49.28583984375004,46.43681640624998],[49.20566406250006,46.385693359374976],[49.232226562500074,46.33715820312503],[49.18427734375003,46.34882812500001],[48.95898437499997,46.44213867187503],[48.774316406249994,46.50795898437502],[48.61015625000007,46.56645507812504],[48.586035156250006,46.57709960937498],[48.54121093750004,46.60561523437502],[48.509179687499994,46.64995117187499],[48.50234375000005,46.698632812500044],[48.51855468749997,46.73432617187504],[48.55839843750007,46.75712890624999],[48.60527343750001,46.76591796874998],[48.647070312500006,46.758691406250016],[48.6935546875001,46.73681640625],[48.77636718749997,46.71035156250005],[48.88359375000007,46.705419921875],[48.950292968750006,46.72578124999998],[48.959375,46.77460937499998],[48.83183593750001,46.954931640625034],[48.71435546874997,47.100488281250016],[48.600683593750006,47.262304687500034],[48.55253906250002,47.320996093750004],[48.41308593749997,47.45649414062498],[48.27568359375002,47.589941406250006],[48.16699218750003,47.70878906249996],[48.109960937500006,47.74541015624996],[47.934667968750006,47.76069335937498],[47.600195312500006,47.78999023437498],[47.48193359374997,47.80390624999998],[47.38730468750006,47.768652343750006],[47.292382812499994,47.74091796875004],[47.202050781249994,47.79248046875006],[47.13076171875005,47.87675781249999],[47.09326171875003,47.947705078124955],[47.1115234375001,48.02011718749998],[47.11904296875005,48.12700195312498],[47.06464843750003,48.23247070312499],[47.00429687499999,48.28447265625002],[46.853125,48.32358398437498],[46.660937500000074,48.41225585937502],[46.609179687500074,48.573876953124994],[46.70263671875003,48.80556640625002],[46.852929687499994,48.96962890624996],[46.962207031250074,49.03833007812502],[47.014257812500006,49.098339843749976],[47.031347656250006,49.150292968749994],[47.018164062500006,49.19990234374998],[46.95341796875002,49.25258789062496],[46.852929687499994,49.30385742187502],[46.80205078125002,49.367089843750016],[46.82314453125005,49.502246093750045],[46.889550781249994,49.69697265625001],[46.99199218750002,49.85273437500004],[47.12958984375004,49.939062500000034],[47.24833984375002,50.00087890625002],[47.29521484375002,50.05849609375002],[47.29765625000002,50.14023437499998],[47.29472656250002,50.21748046874998],[47.32646484375002,50.273535156250034],[47.37636718750005,50.31811523437497],[47.42919921874997,50.35795898437502],[47.50361328125003,50.40273437499999],[47.59960937499997,50.413574218749964],[47.7057617187501,50.37797851562502],[47.84960937500003,50.282324218750055],[48.06074218750004,50.09360351562498],[48.1813476562501,49.97001953125002],[48.22480468750004,49.93193359374999],[48.33496093750003,49.858251953125006],[48.43427734375004,49.828515624999966],[48.6,49.87470703124998],[48.75898437500009,49.92832031250006],[48.81025390625004,49.96240234374999],[48.84326171875003,50.01313476562501],[48.81796875,50.099853515625],[48.784765625,50.156445312499976],[48.749414062499994,50.228466796875004],[48.700488281250074,50.35375976562506],[48.66601562499997,50.55034179687504],[48.625097656250006,50.61269531250005],[48.65517578124999,50.61987304687499],[48.734765625000044,50.606884765625004],[48.80839843750002,50.60131835937502],[48.9137695312501,50.64458007812496],[49.05869140625006,50.72607421875006],[49.32343750000003,50.851708984374966],[49.379492187500006,50.934667968750006],[49.424609375000074,51.027001953124994],[49.49804687500003,51.08359375000006],[49.66630859375002,51.10229492187506],[49.82226562499997,51.131884765625045],[49.93232421875003,51.19716796875002],[50.104882812499994,51.25458984374998],[50.246875,51.289501953124976],[50.30927734375009,51.32158203125004],[50.35371093750009,51.369726562500006],[50.5163085937501,51.50561523437505],[50.64394531250005,51.58916015625002],[50.75615234375002,51.675146484375034],[50.79394531249997,51.729199218749955],[50.88242187500006,51.71918945312495],[51.01787109375002,51.68164062500003],[51.16347656250005,51.6474609375],[51.26992187500005,51.59448242187503],[51.29072265625004,51.540185546874994],[51.30107421875002,51.49741210937497],[51.344531250000074,51.47534179687503],[51.39599609374997,51.47128906249997],[51.47343750000002,51.482031250000034],[51.60908203125003,51.483984375],[51.77539062499997,51.55424804687502],[52.00712890625002,51.67270507812498],[52.21914062499999,51.709375],[52.33105468749997,51.681298828124966],[52.42304687500004,51.59423828125],[52.496191406250006,51.512158203124955],[52.57119140625005,51.481640624999955],[52.617773437500006,51.48076171874996],[52.63515624999999,51.47954101562499],[52.728125,51.498144531250034],[52.7350585937501,51.497900390625],[52.8205078125001,51.49458007812503],[52.902636718750074,51.466943359374994],[53.03837890625007,51.463720703125034],[53.22734375000002,51.484960937500034],[53.2472656250001,51.49360351562501],[53.33808593750004,51.48237304687504],[53.448632812499994,51.444531249999955],[53.53466796875003,51.39956054687502],[53.688085937500006,51.25180664062503],[53.77646484375,51.213720703125006],[53.956835937500074,51.16118164062495],[54.04150390624997,51.11518554687501],[54.13974609375,51.04077148437503],[54.1911132812501,50.995703125],[54.29785156249997,50.91406249999997],[54.42148437500006,50.78032226562499],[54.44335937499997,50.673925781250006],[54.47148437500002,50.58378906250002],[54.51738281250002,50.54116210937502],[54.555273437500006,50.535791015624994],[54.59619140625003,50.55068359375002],[54.63613281249999,50.59160156250002],[54.65,50.66015625000002],[54.6378906250001,50.78105468749996],[54.60625,50.87988281250003],[54.565625,50.91127929687502],[54.54609375000004,50.946044921875],[54.57294921875009,50.99023437500003],[54.64160156250002,51.011572265625034],[54.72714843750006,50.998095703125045],[54.867968750000074,50.94135742187504],[55.01484375000004,50.869775390625016],[55.195214843749994,50.744726562500034],[55.361132812500074,50.66528320312499],[55.54228515625002,50.60180664062506],[55.68623046875004,50.582861328125],[55.79765625000002,50.60205078125],[55.92919921874997,50.65375976562498],[56.04970703124999,50.713525390624966],[56.104492187499964,50.776269531249966],[56.14394531250005,50.84462890625005],[56.32558593749999,50.93608398437502],[56.49140625000003,51.01953124999997],[56.56689453124997,51.004492187500006],[56.62021484375006,50.98085937499999],[56.79033203125002,51.03159179687503],[56.84960937499997,51.04555664062502],[57.01171874999997,51.06518554687503],[57.17900390625007,51.03603515625005],[57.3125,50.94653320312503],[57.44218750000001,50.88886718749998],[57.55781250000003,50.89555664062502],[57.65380859374997,50.925146484375006],[57.71699218750005,50.98095703125003],[57.76484375000004,51.046875],[57.828906250000024,51.089013671874994],[57.83886718750002,51.091650390625],[58.04511718750009,51.06884765624997],[58.17470703125005,51.07226562500006],[58.18847656250002,51.08173828125004],[58.35917968750007,51.063818359375034],[58.547460937500055,50.971044921875034],[58.66455078125003,50.868310546874994],[58.8140625,50.737207031249994],[58.88369140625005,50.694433593750006],[58.98486328124997,50.676123046875006],[59.064355468749994,50.66821289062497],[59.17089843749997,50.64790039062501],[59.45234375000009,50.62041015625002],[59.49511718750003,50.60429687500002],[59.52392578125002,50.58281249999999],[59.49785156250002,50.511083984375034],[59.523046875,50.492871093749955],[59.75117187500004,50.543945312499964],[59.81240234375,50.58203125],[59.887792968750006,50.69018554687503],[59.955175781250055,50.79926757812504],[60.005273437500044,50.839697265625006],[60.05859374999997,50.850292968749955],[60.11210937500001,50.83417968749995],[60.18671875000004,50.769775390624964],[60.28808593750003,50.70415039062501],[60.424804687499964,50.67915039062498],[60.50849609375004,50.66918945312499],[60.637988281250074,50.66372070312505],[60.94228515625005,50.69550781250004],[61.22685546875001,50.77480468750002],[61.38945312500002,50.86103515625001],[61.46503906250004,50.99023437500003],[61.512207031249964,51.13701171875002],[61.585058593750006,51.22968749999998],[61.55468750000002,51.32460937500005],[61.41132812500004,51.414746093750004],[61.363085937500074,51.44189453125003],[61.0148437500001,51.49238281250001],[60.99335937500004,51.528710937499966],[60.973535156250044,51.53706054687498],[60.63037109375003,51.61694335937499],[60.464746093749994,51.651171875000045],[60.41835937499999,51.70390625000004],[60.3875,51.77299804687498],[60.28037109375001,51.83461914062502],[60.067480468750006,51.890625],[60.030273437499964,51.93325195312505],[60.06552734375006,51.97646484374996],[60.23369140625002,52.02451171874997],[60.42548828125009,52.12558593750006],[60.49931640625007,52.14633789062503],[60.6703125,52.15083007812495],[60.82841796875002,52.2333984375],[60.937597656250006,52.28056640625002],[60.994531250000044,52.33686523437504],[60.979492187499964,52.394775390625],[60.82128906250003,52.56982421874997],[60.774414062499964,52.67578124999997],[60.802343750000055,52.74472656249998],[60.893261718750104,52.819433593750006],[60.944726562499994,52.86015624999995],[61.0065429687501,52.93334960937506],[61.047460937500006,52.97246093750002],[61.20693359375005,52.98906250000001],[61.40078125000005,52.99599609375002],[61.53359375,52.978515625],[61.71933593750001,52.969384765625016],[61.88857421874999,52.955908203125034],[61.974218750000055,52.94375],[62.037109374999964,52.96611328124996],[62.08271484375003,53.00541992187498],[62.08105468749997,53.05742187500001],[62.01464843750003,53.10786132812498],[61.766210937500055,53.173925781250034],[61.65986328125003,53.22846679687504],[61.576171874999964,53.22246093749996],[61.436816406250074,53.239404296875044],[61.3109375,53.27519531249995],[61.199218749999964,53.28715820312501],[61.16279296875004,53.33676757812498],[61.18593750000005,53.406201171875004],[61.22890624999999,53.445898437500006],[61.31162109375006,53.465722656249966],[61.40097656250006,53.45581054687499],[61.49853515624997,53.48466796875002],[61.5265625000001,53.50156249999998],[61.53496093750001,53.52329101562506],[61.51914062500006,53.55449218750002],[61.474121093749964,53.58027343750004],[61.40996093750002,53.587060546874994],[61.3361328125001,53.565185546874964],[61.24794921874999,53.550976562500004],[61.09853515624999,53.58310546874998],[60.979492187499964,53.621728515625044],[60.9855468750001,53.65742187500004],[61.07353515625008,53.71044921875],[61.11318359375005,53.75346679687496],[61.11318359375005,53.81298828125003],[61.11318359375005,53.88247070312505],[61.14375,53.96381835937501],[61.2310546875,54.019482421874976],[61.33369140625004,54.04926757812501],[61.598144531249964,53.994921875000045],[61.92871093750003,53.94648437500003],[61.98564453125007,53.95439453124996],[62.00234375,53.97993164062501],[62.0402343750001,54.00263671875001],[62.49902343750002,54.01318359375003],[62.58828124999999,54.04443359375],[62.63271484374999,54.069287109375004],[63.0739257812501,54.10522460937506],[63.12656250000006,54.13925781250006],[63.19130859375005,54.17104492187505],[63.292675781250104,54.17045898437501],[63.413671875,54.18320312500003],[63.58203124999997,54.22192382812502],[63.70136718750004,54.24321289062498],[63.721191406249964,54.24501953125002],[63.847070312500044,54.23647460937505],[64.00390625000003,54.267089843749964],[64.03740234375002,54.27973632812498],[64.06289062500005,54.302929687500004],[64.19941406250004,54.347412109375],[64.46123046875002,54.38417968750002],[64.52509765625004,54.36215820312498],[64.64990234374996,54.352246093750004],[64.80927734375004,54.36855468750005],[64.92675781250003,54.396630859374994],[64.99541015625002,54.36875],[65.08837890624997,54.340185546875034],[65.1578125,54.364404296874994],[65.19218750000007,54.44111328124998],[65.23740234375006,54.51606445312498],[65.31591796874997,54.55156250000002],[65.378125,54.564453125],[65.434375,54.59331054687502],[65.476953125,54.623291015624964],[65.70781250000007,54.61870117187502],[65.9142578125001,54.69331054687504],[65.9546875,54.659521484375006],[66.22265624999997,54.667382812499994],[66.55537109375004,54.7154296875],[66.75449218750006,54.73789062500006],[67.0983398437501,54.788183593750006],[67.25732421874997,54.82880859375001],[67.48466796875002,54.8544921875],[67.69335937499997,54.87241210937503],[67.82988281250002,54.94355468750004],[67.93994140624997,54.95371093749998],[68.07382812500006,54.959570312500006],[68.15585937500006,54.97670898437505],[68.209375,55.00302734374998],[68.24404296875,55.05244140625001],[68.2252929687501,55.11523437500003],[68.20625,55.16093750000002],[68.3019531250001,55.18652343749997],[68.43847656250003,55.19443359374997],[68.5248046875,55.20483398437497],[68.71289062499997,55.30849609375005],[68.8429687500001,55.358349609374976],[68.9772460937501,55.389599609374955],[69.24697265625004,55.37250976562504],[69.49326171875006,55.356884765624955],[69.74023437499997,55.30737304687499],[69.87021484375,55.245654296875045],[69.98173828125007,55.199072265625034],[70.08740234375003,55.17675781250002]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"South Korea","sov_a3":"KOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Korea","adm0_a3":"KOR","geou_dif":0,"geounit":"South Korea","gu_a3":"KOR","su_dif":0,"subunit":"South Korea","su_a3":"KOR","brk_diff":0,"name":"Korea","name_long":"Republic of Korea","brk_a3":"KOR","brk_name":"Republic of Korea","brk_group":null,"abbrev":"S.K.","postal":"KR","formal_en":"Republic of Korea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Korea, Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":1,"mapcolor13":5,"pop_est":48508972,"gdp_md_est":1335000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"KR","iso_a3":"KOR","iso_n3":"410","un_a3":"410","wb_a2":"KR","wb_a3":"KOR","woe_id":-99,"adm0_a3_is":"KOR","adm0_a3_us":"KOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":17,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KOR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.326953125,33.2236328125],[126.28203125000002,33.20151367187503],[126.24023437500003,33.21484375],[126.22900390624996,33.22524414062499],[126.17871093750001,33.282568359375034],[126.16562500000012,33.31201171875],[126.19941406250004,33.36806640625005],[126.33769531250003,33.46040039062501],[126.69550781250004,33.54931640625003],[126.7598632812501,33.55322265625],[126.90117187500002,33.51513671874997],[126.93125000000012,33.44384765625003],[126.9053710937501,33.38237304687502],[126.87285156250002,33.34116210937498],[126.70917968750008,33.27167968750004],[126.58173828125003,33.23833007812499],[126.326953125,33.2236328125]]],[[[126.75302734375006,34.343994140625],[126.76992187500005,34.29643554687499],[126.68906250000005,34.30541992187506],[126.6460937500001,34.35112304687502],[126.65185546874996,34.39033203125001],[126.7,34.395898437499994],[126.75302734375006,34.343994140625]]],[[[126.23369140625,34.370507812499994],[126.16972656250007,34.355175781249955],[126.13378906250001,34.389599609374955],[126.10859375000003,34.39873046874996],[126.12285156250002,34.443945312500034],[126.22705078125003,34.53271484375],[126.24746093749998,34.563330078125006],[126.34384765625012,34.544921875],[126.37988281249996,34.49794921875002],[126.33544921874997,34.426416015624994],[126.23369140625,34.370507812499994]]],[[[127.7990234375001,34.61503906249996],[127.7877929687501,34.58408203125006],[127.73730468750004,34.63090820312502],[127.78710937499997,34.68212890625006],[127.7990234375001,34.61503906249996]]],[[[126.17197265625005,34.73115234375001],[126.15878906250006,34.706982421874955],[126.11523437499996,34.714208984375006],[126.07060546875002,34.783056640625006],[126.05205078125006,34.83754882812499],[126.00751953125004,34.86748046874999],[126.07841796875003,34.914843750000045],[126.16855468750006,34.8296875],[126.17197265625005,34.73115234375001]]],[[[128.0658203125,34.80585937500004],[128.05468750000003,34.70805664062502],[127.98398437500012,34.703222656250006],[127.94179687500007,34.76625976562505],[127.896875,34.735498046874994],[127.87343750000005,34.73496093749998],[127.83828125,34.813330078125034],[127.83222656250008,34.87451171875],[127.9154296875,34.920996093750034],[127.965625,34.89301757812504],[128.03798828125,34.87861328125001],[128.0658203125,34.80585937500004]]],[[[128.74101562500007,34.79853515624995],[128.64667968750004,34.73686523437502],[128.51953124999997,34.819580078125],[128.48925781250003,34.86528320312496],[128.58593749999997,34.93227539062502],[128.66796875000003,35.00878906249999],[128.721875,35.013574218749994],[128.74101562500007,34.79853515624995]]],[[[126.4175781250001,36.49257812500002],[126.40380859374996,36.427880859374994],[126.3375,36.47055664062498],[126.31855468750008,36.61254882812506],[126.38662109375,36.571142578125034],[126.4175781250001,36.49257812500002]]],[[[130.91601562499997,37.47846679687498],[130.87060546875003,37.44873046875005],[130.816796875,37.47846679687498],[130.8102539062501,37.509912109374994],[130.83837890624997,37.537207031250034],[130.90371093750005,37.55371093750003],[130.93427734375004,37.52973632812504],[130.91601562499997,37.47846679687498]]],[[[126.52070312500004,37.73681640625003],[126.516015625,37.60468750000001],[126.46083984375004,37.61035156250003],[126.42333984375003,37.62363281250006],[126.40722656249997,37.649414062499964],[126.36933593750003,37.77202148437502],[126.41162109374997,37.82265625000002],[126.49355468750005,37.782568359375034],[126.52070312500004,37.73681640625003]]],[[[128.37460937500012,38.6234375],[128.61884765625004,38.17607421874999],[128.85244140625,37.887060546875006],[129.05156250000007,37.67763671875005],[129.33515625000004,37.274560546874994],[129.41826171875002,37.059033203124955],[129.426171875,36.92553710937503],[129.47343750000007,36.74189453125001],[129.4330078125,36.636621093749966],[129.44501953125004,36.470703125],[129.42714843750005,36.38549804687497],[129.39257812500003,36.32270507812498],[129.39130859375004,36.2021484375],[129.40244140625006,36.13764648437501],[129.40351562500004,36.052148437499994],[129.42578125,36.01879882812506],[129.45830078125007,36.006445312500034],[129.50976562499997,36.03759765624997],[129.57285156250006,36.05053710937503],[129.5617187500001,35.94765625000002],[129.4854492187501,35.68740234375005],[129.41914062500007,35.49785156249996],[129.32900390625005,35.332763671875],[129.21416015625007,35.18183593749998],[129.07675781250006,35.12270507812502],[128.98007812500006,35.101513671874955],[128.795703125,35.093896484374994],[128.64257812499997,35.11958007812501],[128.5109375000001,35.10097656250002],[128.45810546875006,35.06943359375],[128.41884765625005,35.01567382812496],[128.44765625,34.93208007812498],[128.4439453125001,34.87036132812503],[128.38769531250003,34.875097656250006],[128.27597656250003,34.910986328125034],[128.15234375000003,34.91586914062498],[128.09453125000007,34.93359375000003],[128.03623046875006,35.02197265625],[127.97675781250004,35.018701171874966],[127.87324218750008,34.96630859375003],[127.71484374999996,34.95468749999998],[127.65908203125,34.92636718749998],[127.63935546875004,34.88969726562496],[127.6625,34.84340820312505],[127.74218749999997,34.782568359375006],[127.7154296875001,34.72104492187498],[127.63242187500006,34.69023437500002],[127.56542968750001,34.76591796874999],[127.52363281250003,34.840087890625],[127.476953125,34.84428710937496],[127.40429687499999,34.823095703125006],[127.38964843749997,34.743017578125034],[127.42343750000012,34.6884765625],[127.47910156250012,34.625244140625],[127.40117187500002,34.55253906250002],[127.3805664062501,34.50063476562502],[127.32460937499998,34.463281249999966],[127.17343750000006,34.54614257812497],[127.19492187500012,34.60502929687499],[127.26054687500007,34.66166992187496],[127.2686523437501,34.720361328125016],[127.24707031249997,34.75512695312499],[127.03076171874997,34.60688476562501],[126.89746093749996,34.43886718749996],[126.82626953125006,34.451074218749966],[126.7964843750001,34.494287109374966],[126.75478515625005,34.511865234374994],[126.61083984374999,34.403515624999955],[126.584375,34.31752929687502],[126.53144531250003,34.31425781249999],[126.50830078125004,34.35063476562502],[126.50644531250006,34.42836914062505],[126.48173828125,34.49394531249999],[126.33261718750012,34.589648437500045],[126.26445312500003,34.67324218750002],[126.30107421875003,34.71997070312503],[126.42558593750006,34.694580078125],[126.52451171875005,34.697900390624966],[126.50498046875006,34.73754882812497],[126.4728515625001,34.75634765624997],[126.53857421874997,34.778662109375006],[126.59335937500012,34.824365234374994],[126.54794921875012,34.836767578125034],[126.47851562499996,34.81035156249996],[126.42070312500002,34.823388671874966],[126.3978515625,34.932812499999955],[126.32744140625002,35.04511718750001],[126.29111328125012,35.15415039062503],[126.36054687500003,35.216894531250006],[126.39589843750004,35.31440429687498],[126.46044921874996,35.45561523437499],[126.49277343750006,35.50126953125004],[126.58222656250008,35.53447265624996],[126.61406250000007,35.57099609375003],[126.56494140625001,35.589746093750044],[126.48652343750004,35.60634765625005],[126.4884765625001,35.647070312500006],[126.54189453125005,35.669335937499994],[126.60156250000001,35.714208984375],[126.71738281250005,35.76884765625002],[126.75302734375006,35.871972656249994],[126.71962890624998,35.89790039062501],[126.64746093749997,35.922412109375045],[126.66367187500005,35.97451171874999],[126.69345703125005,36.01416015625],[126.68232421875004,36.037939453125034],[126.59707031249998,36.105029296875045],[126.5404296875,36.166162109374966],[126.55722656250006,36.23583984375003],[126.54423828125006,36.34121093750002],[126.55195312500004,36.4296875],[126.5482421875,36.477636718750006],[126.50664062500002,36.58564453124998],[126.4876953125,36.69379882812498],[126.43300781250005,36.67802734374996],[126.38876953125012,36.65117187500001],[126.23066406250004,36.689257812500045],[126.18085937500004,36.69160156249998],[126.16054687500004,36.77192382812501],[126.21718750000004,36.870947265625],[126.35156249999999,36.95820312500004],[126.42871093749997,36.96904296875002],[126.48701171875004,37.00747070312502],[126.57773437500005,37.01958007812502],[126.68671875000004,36.96035156250002],[126.78447265625007,36.94843749999998],[126.83876953125004,36.84609375000002],[126.87207031249996,36.82446289062506],[126.8791015625001,36.86206054687497],[126.95800781249996,36.906152343749994],[126.97685546875002,36.93940429687501],[126.95976562500006,36.9576171875],[126.86894531250002,36.97573242187505],[126.78740234375,37.10273437499998],[126.77607421875004,37.158203125],[126.74638671875002,37.19355468750001],[126.79052734374997,37.29492187499997],[126.69619140625,37.41069335937502],[126.65029296875,37.44711914062498],[126.65683593750005,37.55117187500005],[126.60761718750008,37.61743164062503],[126.58017578125012,37.65375976562498],[126.56337890625007,37.71650390624998],[126.57773437500005,37.744726562500034],[126.6207031250001,37.75546875],[126.63388671875012,37.78183593750006],[126.66455078124996,37.80073242187498],[126.66650390625001,37.82792968750002],[126.66679687500006,37.91718750000001],[126.75429687500005,37.97895507812498],[126.87890625000003,38.10605468750003],[126.94003906250005,38.17558593749999],[127.00966796875005,38.24052734374996],[127.09033203125003,38.28388671875001],[127.16953125000008,38.304541015625034],[127.29404296875005,38.31328125],[127.53271484375003,38.30498046874996],[127.57949218750005,38.3125],[127.74550781250001,38.31923828125002],[127.78466796874997,38.30771484374998],[127.90527343749997,38.30043945312502],[128.03896484375,38.30854492187498],[128.10625,38.32734374999998],[128.16865234375,38.35932617187501],[128.22314453124997,38.41699218750003],[128.27929687499997,38.523779296875034],[128.33945312500006,38.60786132812501],[128.37460937500012,38.6234375]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Kyrgyzstan","sov_a3":"KGZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kyrgyzstan","adm0_a3":"KGZ","geou_dif":0,"geounit":"Kyrgyzstan","gu_a3":"KGZ","su_dif":0,"subunit":"Kyrgyzstan","su_a3":"KGZ","brk_diff":0,"name":"Kyrgyzstan","name_long":"Kyrgyzstan","brk_a3":"KGZ","brk_name":"Kyrgyzstan","brk_group":null,"abbrev":"Kgz.","postal":"KG","formal_en":"Kyrgyz Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kyrgyz Republic","name_alt":null,"mapcolor7":5,"mapcolor8":7,"mapcolor9":7,"mapcolor13":6,"pop_est":5431747,"gdp_md_est":11610,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KG","iso_a3":"KGZ","iso_n3":"417","un_a3":"417","wb_a2":"KG","wb_a3":"KGZ","woe_id":-99,"adm0_a3_is":"KGZ","adm0_a3_us":"KGZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KGZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[80.209375,42.1900390625],[80.22919921875001,42.129833984375],[80.24619140625002,42.05981445312499],[80.23515624999999,42.04345703125],[80.21621093750002,42.032421875],[79.90966796875,42.014990234375],[79.84042968750003,41.995751953124994],[79.76611328124999,41.898876953125],[79.50390625,41.82099609375],[79.35439453125002,41.78105468749999],[79.29355468750003,41.7828125],[79.1484375,41.71914062499999],[78.74257812500002,41.56005859375],[78.54316406250001,41.4595703125],[78.44287109375,41.417529296874996],[78.36240234375003,41.37163085937499],[78.34882812500001,41.3251953125],[78.34628906250003,41.28144531249999],[78.12343750000002,41.075634765625],[77.95644531250002,41.05068359374999],[77.81523437499999,41.05561523437499],[77.71933593750003,41.024316406249994],[77.58173828125001,40.9927734375],[77.28398437499999,41.01435546875],[77.18203125000002,41.0107421875],[76.98662109374999,41.03916015625],[76.90771484375,41.024169921875],[76.82402343749997,40.98232421874999],[76.70839843750002,40.818115234375],[76.6611328125,40.779638671875],[76.63984375000001,40.742236328124996],[76.62216796875003,40.662353515625],[76.57792968749999,40.57788085937499],[76.52089843750002,40.51123046875],[76.48017578125001,40.449511718749996],[76.39638671875002,40.389794921874994],[76.31855468750001,40.35224609375],[76.25830078125,40.43076171875],[76.20605468749999,40.4083984375],[76.15664062500002,40.37646484375],[76.06230468749999,40.387548828125],[76.00429687500002,40.371435546875],[75.87197265625002,40.30322265625],[75.67714843750002,40.30581054687499],[75.65595703125001,40.329248046874994],[75.61738281250001,40.5166015625],[75.58349609375,40.60532226562499],[75.55556640625002,40.6251953125],[75.52080078125002,40.62753906249999],[75.24101562500002,40.480273437499996],[75.111328125,40.4541015625],[75.0044921875,40.449511718749996],[74.865625,40.493505859375],[74.83515625000001,40.4826171875],[74.8111328125,40.458789062499996],[74.80126953125,40.428515625],[74.84179687499999,40.34497070312499],[74.83046875000002,40.32851562499999],[74.76777343750001,40.329882812499996],[74.67988281250001,40.310595703124996],[74.61308593750002,40.27216796875],[74.41191406250002,40.13720703125],[74.24267578125,40.092041015625],[74.08515625000001,40.07431640625],[74.0205078125,40.059375],[73.99160156250002,40.043115234374994],[73.93876953125002,39.978808593749996],[73.88457031250002,39.8779296875],[73.85625,39.828662109374996],[73.83535156250002,39.800146484375],[73.83974609375002,39.762841796874994],[73.88251953125001,39.71455078125],[73.9146484375,39.606494140624996],[73.90712890625002,39.57851562499999],[73.87275390625001,39.53330078125],[73.82294921875,39.48896484375],[73.71572265625002,39.462255859375],[73.63164062500002,39.448876953124994],[73.57558593750002,39.4576171875],[73.47041015625001,39.460595703124994],[73.38740234375,39.442724609375],[73.33613281250001,39.412353515625],[73.2349609375,39.374560546874996],[73.10927734375002,39.36191406249999],[72.94941406250001,39.357080078124994],[72.87246093750002,39.360400390624996],[72.63994140625002,39.385986328125],[72.56337890625002,39.377197265625],[72.490234375,39.357373046875],[72.35771484375002,39.336865234375],[72.28720703125,39.273730468749996],[72.24980468750002,39.215673828125],[72.22998046875,39.20751953125],[72.14736328125002,39.2607421875],[72.08417968750001,39.31064453125],[72.04277343750002,39.3521484375],[71.99101562500002,39.350927734375],[71.80595703125002,39.27558593749999],[71.77861328125002,39.277978515624994],[71.72568359375,39.30659179687499],[71.7353515625,39.377734375],[71.7322265625,39.422998046874994],[71.67265625000002,39.447070312499996],[71.54628906250002,39.453076171875],[71.50332031250002,39.478808593749996],[71.50585937499999,39.51708984375],[71.51738281250002,39.553857421874994],[71.50302734375,39.582177734374994],[71.4703125,39.603662109374994],[71.404296875,39.5978515625],[71.32851562500002,39.568701171875],[71.27285156250002,39.535302734374994],[71.202734375,39.519824218749996],[71.11806640625002,39.513574218749994],[71.0650390625,39.493408203125],[71.00488281249999,39.411865234375],[70.79931640625,39.3947265625],[70.73310546875001,39.41328125],[70.67861328125002,39.4712890625],[70.60781250000002,39.564404296875],[70.56796875,39.57587890625],[70.50117187500001,39.587353515625],[70.39208984375,39.581884765625],[70.24482421875001,39.542626953124994],[70.20927734375002,39.575],[70.17109375000001,39.5841796875],[70.13681640625,39.557568359375],[70.10166015625,39.560595703124996],[69.95595703125002,39.553076171875],[69.7720703125,39.55673828125],[69.6669921875,39.57490234375],[69.59882812500001,39.573779296874996],[69.46328125000002,39.532080078125],[69.39150390625002,39.53247070312499],[69.29765625000002,39.524804687499994],[69.2802734375,39.665869140625],[69.22910156249999,39.761083984375],[69.2447265625,39.827099609375],[69.27880859375,39.917773437499996],[69.3072265625,39.968554687499996],[69.36542968750001,39.947070312499996],[69.43193359375002,39.909765625],[69.47626953125001,39.919726562499996],[69.487890625,39.950439453125],[69.47099609375002,39.990625],[69.46875,40.020751953125],[69.49365234375,40.060351562499996],[69.5302734375,40.097314453124994],[69.765234375,40.158007812499996],[69.966796875,40.20224609374999],[70.07148437500001,40.172753906249994],[70.2744140625,40.104833984375],[70.37890625,40.069873046874996],[70.45136718750001,40.04921875],[70.51513671874999,39.94990234375],[70.55683593750001,39.954492187499994],[70.59921875,39.974511718749994],[70.62412109375,39.99897460937499],[70.64433593750002,40.083447265625],[70.73857421875,40.131152343749996],[70.94638671874999,40.18759765625],[70.9609375,40.220654296875],[70.9580078125,40.2388671875],[70.990625,40.2548828125],[71.09453125000002,40.271240234375],[71.3046875,40.286914062499996],[71.37617187500001,40.27519531249999],[71.457421875,40.241992187499996],[71.52041015625002,40.20898437499999],[71.58046875000002,40.210253906249996],[71.62988281249999,40.217138671875],[71.65087890625,40.2080078125],[71.66679687500002,40.17861328124999],[71.69248046875,40.15234375],[71.77265625000001,40.188037109374996],[71.84541015625001,40.23432617187499],[71.902734375,40.240966796875],[71.9556640625,40.25859374999999],[71.97109375,40.289501953125],[72.01259765625002,40.34072265624999],[72.13125,40.438623046874994],[72.19287109375,40.454443359375],[72.23281250000002,40.454394531249996],[72.23466796875002,40.438623046874994],[72.25400390625,40.42421874999999],[72.35771484375002,40.40166015624999],[72.3892578125,40.42739257812499],[72.40595703125001,40.4630859375],[72.3697265625,40.51972656249999],[72.36904296875002,40.54345703125],[72.3826171875,40.56513671874999],[72.40205078125001,40.578076171875],[72.56748046875,40.524365234375],[72.6041015625,40.525439453124996],[72.67958984375002,40.555615234375],[72.74882812500002,40.608691406249996],[72.77382812500002,40.650390625],[73.112890625,40.78603515624999],[73.13691406250001,40.81064453125],[73.13212890625002,40.82851562499999],[72.9900390625,40.860107421875],[72.92597656250001,40.84243164062499],[72.86660156250002,40.842333984374996],[72.83095703125002,40.862158203125],[72.65830078125,40.86992187499999],[72.62041015625002,40.8837890625],[72.50595703125,40.981689453125],[72.42734375,41.01894531249999],[72.36406250000002,41.04345703125],[72.294921875,41.039941406249994],[72.21308593750001,41.0142578125],[72.18730468750002,41.025927734374996],[72.1806640625,41.066845703125],[72.18095703125002,41.118457031249996],[72.16425781250001,41.173730468749994],[72.11542968750001,41.186572265624996],[72.05244140625001,41.16474609375],[71.95849609375,41.187060546874996],[71.87861328125001,41.19501953125],[71.8580078125,41.311376953125],[71.82578125,41.36103515625],[71.79248046875,41.413134765624996],[71.75771484375002,41.42802734374999],[71.70068359375,41.454003906249994],[71.697265625,41.515576171875],[71.68515625,41.53300781249999],[71.66494140625002,41.5412109375],[71.6375,41.5341796875],[71.60224609375001,41.503271484375],[71.61962890625,41.435449218749994],[71.60625,41.36743164062499],[71.58554687499999,41.33325195312499],[71.54560546875001,41.308056640625],[71.5,41.307470703125],[71.4208984375,41.34189453125],[71.40839843750001,41.136035156249996],[71.39306640625,41.123388671875],[71.298828125,41.15249023437499],[71.2234375,41.139941406249996],[71.11074218750002,41.152636718749996],[71.0259765625,41.186572265624996],[70.96259765625001,41.19599609375],[70.86044921874999,41.224902343749996],[70.78242187500001,41.2625],[70.734375,41.40053710937499],[70.68886718750002,41.4498046875],[70.64589843750002,41.460351562499994],[70.47138671875001,41.412646484374996],[70.4078125,41.449560546875],[70.2900390625,41.496826171875],[70.20087890625,41.514453125],[70.176953125,41.539990234375],[70.18095703125002,41.57143554687499],[70.45498046875002,41.72504882812499],[70.56289062500002,41.830810546875],[70.630859375,41.87548828125],[70.72773437500001,41.905224609375],[70.80332031249999,41.92265625],[70.84189453125,42.01962890624999],[70.85664062500001,42.030810546874996],[70.91035156250001,42.037988281249994],[71.0322265625,42.077783203124994],[71.228515625,42.162890625],[71.23232421875002,42.18627929687499],[71.21269531250002,42.206445312499994],[71.12998046875,42.25],[71.03603515625001,42.28466796875],[70.97900390625,42.266552734375],[70.94677734375,42.248681640624994],[70.89287109375002,42.293701171875],[70.89287109375002,42.339990234374994],[70.95234375000001,42.419384765625],[71.001953125,42.45908203125],[71.02275390625002,42.53544921874999],[71.09355468750002,42.58652343749999],[71.16738281250002,42.667431640625],[71.25664062500002,42.733544921874994],[71.4220703125,42.783154296875],[71.5142578125,42.76694335937499],[71.60078125000001,42.778662109375],[71.73476562500002,42.818896484374996],[71.76054687500002,42.821484375],[71.816796875,42.822167968749994],[72.16181640625001,42.760693359375],[72.27578125000002,42.757666015625],[72.54316406250001,42.677734375],[72.66611328125,42.660400390625],[72.7529296875,42.637890625],[72.79238281250002,42.603466796875],[72.855078125,42.5611328125],[73.19082031250002,42.52685546875],[73.28291015625001,42.5041015625],[73.316015625,42.4669921875],[73.41162109375,42.419775390625],[73.49296875000002,42.409033203125],[73.421875,42.593505859375],[73.4501953125,42.703027343749994],[73.55625,43.002783203125],[73.61201171875001,43.047900390624996],[73.71855468750002,43.08789062499999],[73.88603515625002,43.132568359375],[73.94921875,43.19501953124999],[74.08623046875002,43.18862304687499],[74.14589843750002,43.194091796875],[74.18681640625002,43.2052734375],[74.20908203124999,43.240380859374994],[74.3638671875,43.179443359375],[74.62226562500001,43.05620117187499],[74.81757812500001,42.978173828124994],[75.04765625,42.90439453125],[75.3662109375,42.836962890624996],[75.63564453125002,42.814599609374994],[75.68173828125,42.83046875],[75.78955078125,42.932910156249996],[75.84033203124999,42.9375],[75.9322265625,42.928515625],[76.21816406250001,42.923730468749994],[76.50917968750001,42.918896484375],[76.64648437499999,42.92880859375],[76.94404296875001,42.971484375],[76.98808593749999,42.973583984375],[77.05732421875001,42.970654296875],[77.23554687500001,42.912646484374996],[77.36855468750002,42.904443359374994],[77.45927734374999,42.904736328125],[77.51220703125,42.900048828124994],[77.62246093750002,42.902246093749994],[77.80166015625002,42.89521484375],[78.02314453125001,42.85751953125],[78.2900390625,42.86435546875],[78.3759765625,42.87148437499999],[78.52421874999999,42.864648437499994],[78.64228515625001,42.8287109375],[78.79150390624999,42.790820312499996],[78.88515625000002,42.77490234375],[78.94794921875001,42.76669921875],[79.05986328124999,42.763818359374994],[79.12666015625001,42.77573242187499],[79.16484374999999,42.759033203125],[79.20302734375002,42.666015625],[79.29550781250003,42.60483398437499],[79.36777343750003,42.547216796875],[79.42822265625,42.48349609375],[79.49013671875002,42.45756835937499],[79.59843749999999,42.456640625],[79.80341796875001,42.4384765625],[79.92109375000001,42.413134765624996],[80.0712890625,42.302978515625],[80.209375,42.1900390625]],[[70.70166015625,39.82529296875],[70.6982421875,39.845849609374994],[70.66416015625,39.85546875],[70.56708984375001,39.866601562499994],[70.49775390625001,39.882421875],[70.4828125,39.882714843749994],[70.4892578125,39.863037109375],[70.51865234374999,39.828173828124996],[70.5595703125,39.790917968749994],[70.61210937500002,39.786767578124994],[70.70166015625,39.82529296875]],[[71.77968750000002,39.950244140624996],[71.78994140625002,39.9953125],[71.76533203125001,39.99326171875],[71.73652343750001,39.98095703125],[71.68125,39.96865234374999],[71.6689453125,39.94609374999999],[71.70585937500002,39.917431640625],[71.7529296875,39.907128906249994],[71.77968750000002,39.950244140624996]],[[71.20615234375,39.89257812499999],[71.215625,39.906787109374996],[71.179296875,39.979833984375],[71.22871093750001,40.048144531249996],[71.13027343750002,40.05966796875],[71.08037109375,40.079882812499996],[71.02412109375001,40.149169921875],[71.00546875,40.152294921875],[70.97626953125001,40.133251953125],[70.96064453125001,40.08798828125],[70.97441406250002,40.038867187499996],[71.01445312500002,40.005761718749994],[71.041015625,39.994921875],[71.04482421875002,39.992529296875],[71.04365234375,39.976318359375],[71.01171875,39.8951171875],[71.06425781250002,39.884912109374994],[71.15625,39.883447265624994],[71.20615234375,39.89257812499999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cambodia","sov_a3":"KHM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cambodia","adm0_a3":"KHM","geou_dif":0,"geounit":"Cambodia","gu_a3":"KHM","su_dif":0,"subunit":"Cambodia","su_a3":"KHM","brk_diff":0,"name":"Cambodia","name_long":"Cambodia","brk_a3":"KHM","brk_name":"Cambodia","brk_group":null,"abbrev":"Camb.","postal":"KH","formal_en":"Kingdom of Cambodia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cambodia","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":5,"pop_est":14494293,"gdp_md_est":27940,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KH","iso_a3":"KHM","iso_n3":"116","un_a3":"116","wb_a2":"KH","wb_a3":"KHM","woe_id":-99,"adm0_a3_is":"KHM","adm0_a3_us":"KHM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"KHM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.31777343749998,10.718505859374986],[103.28125,10.679687499999972],[103.22294921875002,10.759570312500001],[103.2234375,10.781982421875028],[103.31777343749998,10.718505859374986]]],[[[103.04511718750004,11.285058593750023],[103.02734374999996,11.275488281250032],[103.01054687500002,11.27578125],[102.99335937500004,11.290429687499966],[102.99501953125005,11.348095703124997],[103.00751953125008,11.38330078124997],[103.03681640625003,11.389941406249989],[103.04511718750004,11.285058593750023]]],[[[107.53525390625006,14.649951171875045],[107.49316406250001,14.545751953124963],[107.44843750000004,14.451220703124974],[107.3644531250001,14.368701171875044],[107.36035156249996,14.307861328124984],[107.3314453125,14.126611328125009],[107.34257812500006,14.068896484374974],[107.36210937500007,14.01948242187504],[107.389453125,13.993017578124977],[107.46230468750004,13.815625],[107.52861328125002,13.654199218750051],[107.59394531250003,13.521679687500052],[107.60546874999997,13.437792968750017],[107.54550781250012,13.225439453125006],[107.475390625,13.030371093749963],[107.48154296875006,12.93310546875004],[107.51152343750002,12.835742187500017],[107.54355468750006,12.705908203125034],[107.55546875000002,12.539990234374983],[107.53808593750003,12.431787109374966],[107.50644531250006,12.36455078125003],[107.4459960937501,12.295703125000045],[107.39335937500002,12.260498046874972],[107.33007812500003,12.319042968749997],[107.27968750000004,12.321582031249987],[107.21210937500004,12.30400390624996],[107.15898437500007,12.277050781249969],[107.05068359375,12.175878906249963],[106.93066406249997,12.077490234374991],[106.76464843750003,12.05234375000002],[106.70009765625,11.979296874999973],[106.63095703125012,11.969189453125052],[106.49960937500012,11.965527343750011],[106.41386718750002,11.9484375],[106.4177734375,11.911718749999977],[106.41074218750012,11.738378906250004],[106.4125,11.697802734375003],[106.39921875000007,11.687011718750028],[106.33984374999997,11.68183593750004],[106.23916015625,11.708349609375018],[106.10292968750004,11.751269531249974],[106.0060546875001,11.758007812500011],[105.95625,11.682470703124991],[105.92656250000007,11.652929687500006],[105.88984375000004,11.648388671874969],[105.85146484375005,11.635009765625],[105.83847656250006,11.601318359374972],[105.83535156250005,11.559130859375003],[105.85400390625001,11.48706054687497],[105.8609375000001,11.372412109374975],[105.85605468750006,11.294287109375048],[105.89160156249997,11.244824218749997],[106.09951171875005,11.078662109374989],[106.16093750000002,11.037109375000057],[106.16796874999996,11.012304687499977],[106.1315429687501,10.921972656250048],[106.16396484375005,10.794921875],[106.0988281250001,10.797265625000037],[105.99013671875004,10.851806640625043],[105.93818359375004,10.88515625],[105.8751953125001,10.858496093749991],[105.85332031250007,10.86357421874996],[105.81074218750008,10.926074218749989],[105.75507812500004,10.989990234375043],[105.69775390624997,10.99404296874998],[105.5765625,10.968896484375007],[105.45273437500006,10.951416015625],[105.40576171875003,10.95161132812504],[105.38652343750002,10.940087890625007],[105.31464843750008,10.845166015625026],[105.28427734375006,10.86147460937498],[105.15947265625002,10.897558593750048],[105.045703125,10.911376953125014],[105.02226562500002,10.886865234374994],[105.03613281250003,10.809375],[105.06113281250006,10.73378906249998],[105.04638671874997,10.701660156250014],[104.98388671874997,10.661914062500003],[104.90126953125,10.590234375000051],[104.85058593749997,10.534472656249974],[104.81542968750001,10.520800781250031],[104.68964843750004,10.523242187499989],[104.56425781250007,10.51596679687502],[104.5140625,10.46333007812504],[104.46699218750008,10.422363281250043],[104.42636718750006,10.411230468749991],[104.26240234375004,10.541259765625014],[103.9371093750001,10.586621093750024],[103.90175781250005,10.64394531249998],[103.87050781250004,10.655126953125034],[103.84052734375008,10.580566406250028],[103.66191406250002,10.508935546875009],[103.58710937500004,10.552197265625026],[103.53222656249997,10.604638671874966],[103.54042968750005,10.668701171875043],[103.59208984375002,10.721044921874963],[103.68085937500003,10.758593749999974],[103.721875,10.890136718750043],[103.65429687499997,11.058691406250006],[103.59501953125007,11.107763671874963],[103.5324218750001,11.146679687499995],[103.46669921875004,11.083984375000014],[103.41132812500004,10.97675781250001],[103.35361328125006,10.921582031250054],[103.2721679687501,10.909277343750034],[103.15283203124997,10.913720703125051],[103.10644531250003,11.073779296874973],[103.09111328125007,11.211083984374966],[103.10742187500003,11.367773437500006],[103.12548828124997,11.460644531250011],[103.01054687500002,11.588671874999974],[103.00419921875007,11.710595703125037],[102.9486328125,11.773486328124974],[102.93232421875004,11.741699218749972],[102.93388671875,11.706689453125037],[102.91806640625006,11.732080078124964],[102.73662109375007,12.08979492187501],[102.70625,12.255664062499974],[102.73740234375006,12.383398437499963],[102.75566406250002,12.42626953125],[102.70332031250004,12.49350585937502],[102.62968750000002,12.569921875000048],[102.4996093750001,12.669970703125003],[102.49072265624997,12.828320312500011],[102.46171875,13.015039062500037],[102.42265625000007,13.07797851562499],[102.36298828125004,13.192968749999963],[102.3307617187501,13.288232421875009],[102.31972656250005,13.539990234375052],[102.33632812500005,13.560302734375014],[102.428515625,13.567578124999983],[102.546875,13.585693359375043],[102.56552734375012,13.62636718749998],[102.54472656250007,13.659960937499974],[102.62041015625002,13.716943359375035],[102.72890625,13.841894531250006],[102.81279296875002,13.972460937500045],[102.8732421875001,14.054882812499967],[102.90927734375006,14.136718750000028],[103.0310546875,14.252539062500006],[103.19941406250004,14.332617187499977],[103.31347656249997,14.351318359375055],[103.43242187500006,14.378613281250011],[103.54638671875003,14.417431640625026],[103.600390625,14.421093749999967],[103.74189453125004,14.374169921874994],[103.81835937500003,14.362158203125034],[103.8986328125001,14.362792968749986],[103.9818359375,14.35791015624997],[104.05429687500012,14.362744140624983],[104.2277343750001,14.3955078125],[104.41162109374997,14.369580078125038],[104.57578125000012,14.390039062500037],[104.77900390625004,14.427832031250004],[104.87880859375005,14.40400390625004],[104.96972656249997,14.36611328125005],[104.98242187500001,14.289453124999966],[105.00341796875003,14.254443359375031],[105.03369140624997,14.227392578125034],[105.07412109375004,14.227441406250037],[105.12597656250003,14.280957031250011],[105.16914062500003,14.336083984374966],[105.1833007812501,14.346240234374989],[105.18554687500003,14.319091796874972],[105.20703125000003,14.259375],[105.24570312500006,14.200537109374975],[105.2848632812501,14.161474609375006],[105.35019531250006,14.10957031250001],[105.39267578125012,14.107080078125035],[105.53154296875006,14.156152343749993],[105.73974609375003,14.084960937500057],[105.7640625,14.049072265625028],[105.83144531250005,13.976611328125003],[105.90449218750008,13.924511718750054],[106.06679687500005,13.921191406250001],[106.12470703125003,14.049121093750031],[106.09667968749997,14.127099609375023],[106.00410156250004,14.262890624999983],[105.97890625,14.343017578125043],[106.00839843750012,14.357177734374998],[106.16523437500008,14.372363281249989],[106.19072265625007,14.388134765624995],[106.225390625,14.476220703125009],[106.26796875,14.466210937500009],[106.35498046875003,14.454785156249997],[106.44697265625004,14.515039062500007],[106.50146484375003,14.578222656250006],[106.53115234375005,14.549414062499991],[106.5636718750001,14.505078125000026],[106.59921875000006,14.479394531250037],[106.66542968750005,14.441308593749996],[106.73818359375005,14.387744140625015],[106.78349609375,14.335107421875037],[106.81992187500006,14.314697265625057],[106.91318359375006,14.329394531250031],[106.93808593750005,14.327343750000052],[106.99218750000003,14.391015624999966],[107.03017578125,14.425683593750009],[107.06240234374998,14.415771484375043],[107.109375,14.416699218750052],[107.20664062500006,14.497900390624977],[107.26230468750006,14.572119140625004],[107.29267578125004,14.592382812500048],[107.37988281250003,14.55532226562505],[107.41474609375004,14.56289062499999],[107.46513671875007,14.66499023437501],[107.51943359375005,14.705078125],[107.53525390625006,14.649951171875045]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Falkland Islands","adm0_a3":"FLK","geou_dif":0,"geounit":"Falkland Islands","gu_a3":"FLK","su_dif":0,"subunit":"Falkland Islands","su_a3":"FLK","brk_diff":1,"name":"Falkland Is.","name_long":"Falkland Islands","brk_a3":"B12","brk_name":"Falkland Is.","brk_group":null,"abbrev":"Flk. Is.","postal":"FK","formal_en":"Falkland Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":"Admin. by U.K.; Claimed by Argentina","name_sort":"Falkland Islands","name_alt":"Islas Malvinas","mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":3140,"gdp_md_est":105.1,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"FK","iso_a3":"FLK","iso_n3":"238","un_a3":"238","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"FLK","adm0_a3_us":"FLK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":12,"long_len":16,"abbrev_len":8,"tiny":-99,"homepart":-99,"filename":"FLK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.68266601562502,-52.23164062499997],[-59.74658203124997,-52.25087890624999],[-59.76445312499995,-52.2421875],[-59.78486328124995,-52.2046875],[-59.78593749999999,-52.15615234374996],[-59.79331054687497,-52.134179687500016],[-59.75322265624998,-52.14140624999998],[-59.68100585937503,-52.180078124999945],[-59.68266601562502,-52.23164062499997]]],[[[-58.438818359375006,-52.011035156249974],[-58.43271484375001,-52.09902343749996],[-58.51284179687497,-52.071093750000045],[-58.541406250000016,-52.02841796874996],[-58.49707031249997,-51.99941406250001],[-58.46054687499998,-52.0015625],[-58.438818359375006,-52.011035156249974]]],[[[-61.01875,-51.78574218749999],[-60.94726562499997,-51.79951171875005],[-60.875976562500036,-51.79423828125004],[-60.91616210937494,-51.89697265625001],[-60.94755859374995,-51.94628906250002],[-61.031982421875,-51.94248046875004],[-61.115771484374925,-51.87529296875003],[-61.14501953125003,-51.83945312500001],[-61.051660156250016,-51.81396484374997],[-61.01875,-51.78574218749999]]],[[[-60.28623046874995,-51.461914062500014],[-60.141552734374955,-51.480957031249986],[-60.008691406249994,-51.41054687500003],[-59.91708984374998,-51.38808593749999],[-59.84160156249996,-51.40332031249997],[-59.78842773437497,-51.44599609374997],[-59.71132812499999,-51.43925781250002],[-59.49345703125001,-51.395703125000026],[-59.46508789062499,-51.41054687500003],[-59.38759765625002,-51.35996093750003],[-59.32084960937501,-51.38359375000004],[-59.26806640625,-51.42753906250003],[-59.29394531249994,-51.47851562500002],[-59.35419921874995,-51.51093749999997],[-59.392431640625034,-51.55615234375002],[-59.43701171874997,-51.59267578125],[-59.51420898437495,-51.626562499999984],[-59.57319335937498,-51.68085937500003],[-59.71489257812499,-51.807714843750034],[-59.92138671874997,-51.96953125000004],[-59.989746093749936,-51.98408203124999],[-60.13227539062495,-51.993847656250026],[-60.19375,-51.98271484374998],[-60.246337890625,-51.98642578125003],[-60.288281249999926,-52.07373046874996],[-60.35346679687498,-52.13994140625004],[-60.38422851562493,-52.15400390624997],[-60.45200195312498,-52.16025390624999],[-60.484082031249926,-52.1703125],[-60.508398437500006,-52.19472656250001],[-60.686376953125034,-52.18837890624996],[-60.81220703124998,-52.147753906250024],[-60.96142578125002,-52.05732421874998],[-60.7625,-51.94648437499997],[-60.591064453124964,-51.95156250000003],[-60.44975585937496,-51.87714843749996],[-60.33447265625,-51.83955078125003],[-60.288671875,-51.801269531249964],[-60.23847656249998,-51.771972656250036],[-60.238134765625,-51.73378906249997],[-60.276513671875016,-51.71660156250003],[-60.32832031250002,-51.718359375000034],[-60.37958984374995,-51.73515625],[-60.500097656250006,-51.75654296875],[-60.58251953125,-51.71269531250003],[-60.52807617187502,-51.69638671875],[-60.467236328124976,-51.69716796874997],[-60.28095703124995,-51.656054687500045],[-60.24516601562493,-51.638867187500004],[-60.30263671875002,-51.58046875],[-60.41494140624996,-51.54501953124998],[-60.50581054687501,-51.48544921875001],[-60.52275390624998,-51.46318359375001],[-60.51826171874998,-51.42783203125],[-60.56845703124997,-51.357812499999945],[-60.51572265624997,-51.354296875000024],[-60.445458984374966,-51.399414062499986],[-60.28623046874995,-51.461914062500014]]],[[[-60.11171875000002,-51.39589843749997],[-60.24882812499996,-51.39599609375],[-60.27587890624997,-51.36318359374997],[-60.27534179687495,-51.28056640625001],[-60.17138671874999,-51.273437499999986],[-60.06982421874999,-51.30791015624999],[-60.076464843749925,-51.34257812500004],[-60.11171875000002,-51.39589843749997]]],[[[-58.85019531249995,-51.26992187499998],[-58.69750976562503,-51.328515625],[-58.50625,-51.308105468750036],[-58.42583007812501,-51.32421875000003],[-58.37871093750001,-51.37304687500003],[-58.40673828124994,-51.418359375000016],[-58.467431640624966,-51.411816406250026],[-58.51923828124995,-51.42392578125],[-58.50893554687499,-51.48359375],[-58.47373046875,-51.50908203125003],[-58.27158203125003,-51.57470703124999],[-58.23452148437493,-51.578613281249986],[-58.241113281249966,-51.551074218749974],[-58.276220703125006,-51.50605468750004],[-58.289306640625,-51.45751953125001],[-58.25922851562501,-51.417089843750034],[-58.2064453125,-51.4046875],[-57.97651367187496,-51.384375],[-57.92250976562496,-51.40351562500001],[-57.80849609375003,-51.51796875],[-57.91542968749994,-51.533789062500006],[-57.960449218749964,-51.58320312500003],[-57.86635742187499,-51.60458984375004],[-57.79179687499999,-51.63613281249998],[-57.83115234375,-51.684570312499986],[-57.83818359374993,-51.70917968750003],[-58.00395507812496,-51.743457031249996],[-58.15092773437496,-51.76542968750003],[-58.217626953124984,-51.82246093750001],[-58.33598632812502,-51.86376953124999],[-58.68349609375002,-51.936230468750004],[-58.64306640624995,-51.99482421875005],[-58.6376953125,-52.02304687500003],[-58.65278320312498,-52.09921875],[-59.13125,-52.00791015624996],[-59.19584960937495,-52.01767578125],[-59.06801757812502,-52.17304687500003],[-59.162792968749955,-52.20175781250002],[-59.25634765625003,-52.183105468750036],[-59.34150390624995,-52.19599609375],[-59.395654296874966,-52.308007812499994],[-59.53222656249999,-52.23642578124998],[-59.64873046875002,-52.134375],[-59.64916992187502,-52.077246093749956],[-59.53666992187502,-51.97060546875],[-59.57080078124994,-51.92539062500002],[-59.30874023437494,-51.78046875],[-59.26176757812496,-51.737304687499986],[-59.180029296875006,-51.7125],[-59.095410156250004,-51.70410156249997],[-59.05952148437498,-51.685449218749994],[-59.06538085937501,-51.6501953125],[-59.099462890625034,-51.589746093749945],[-59.096630859374976,-51.491406249999976],[-58.886669921874926,-51.357910156249964],[-58.91748046875001,-51.27207031249998],[-58.85019531249995,-51.26992187499998]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kuwait","sov_a3":"KWT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kuwait","adm0_a3":"KWT","geou_dif":0,"geounit":"Kuwait","gu_a3":"KWT","su_dif":0,"subunit":"Kuwait","su_a3":"KWT","brk_diff":0,"name":"Kuwait","name_long":"Kuwait","brk_a3":"KWT","brk_name":"Kuwait","brk_group":null,"abbrev":"Kwt.","postal":"KW","formal_en":"State of Kuwait","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kuwait","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":2,"mapcolor13":2,"pop_est":2691158,"gdp_md_est":149100,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"KW","iso_a3":"KWT","iso_n3":"414","un_a3":"414","wb_a2":"KW","wb_a3":"KWT","woe_id":-99,"adm0_a3_is":"KWT","adm0_a3_us":"KWT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KWT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[48.27539062499997,29.624316406250017],[48.21826171874997,29.60195312499999],[48.17968750000002,29.61142578125006],[48.14257812500003,29.665283203124996],[48.081445312499994,29.798925781250063],[48.11474609375003,29.84877929687499],[48.11347656250004,29.870214843750006],[48.12011718749997,29.886328125],[48.13886718750004,29.896582031250063],[48.15859375,29.959570312500002],[48.1847656250001,29.978857421875034],[48.22773437500004,29.93632812499999],[48.348242187500006,29.78266601562504],[48.3473632812501,29.719970703125057],[48.34023437500005,29.694726562499962],[48.27539062499997,29.624316406250017]]],[[[48.136132812500044,29.618115234374983],[48.143457031249994,29.57246093750001],[48.089453125,29.579101562500025],[48.048339843749964,29.597509765625063],[47.96962890625005,29.61669921874997],[47.81748046875006,29.487402343750002],[47.7252929687501,29.41694335937495],[47.72265624999997,29.39301757812495],[47.8453125,29.365722656250004],[47.935351562500074,29.366601562499994],[47.99814453125,29.385546875000045],[48.0514648437501,29.35537109375002],[48.08632812499999,29.275488281250006],[48.10039062500001,29.21074218749996],[48.18378906250004,28.979394531249994],[48.25292968750003,28.901269531249962],[48.33925781250005,28.76328125],[48.37128906250004,28.69184570312504],[48.38964843749997,28.631591796874996],[48.442480468750006,28.542919921874983],[48.26875,28.54052734375003],[48.04960937500007,28.5375],[47.87197265625005,28.53544921874996],[47.671289062499994,28.533154296875036],[47.583105468750006,28.627978515624985],[47.55322265625003,28.731542968750034],[47.52128906250002,28.83784179687501],[47.433203125,28.98955078125002],[47.138769531250055,29.02617187500002],[46.982226562500074,29.045654296875],[46.7248046875001,29.07460937500002],[46.53144531250004,29.096240234374985],[46.69375,29.259667968749966],[46.76933593750002,29.347460937500017],[46.905859375000055,29.5375],[46.975976562499994,29.672851562500057],[47.04365234375004,29.822998046875],[47.10205078125003,29.939990234375017],[47.11435546875006,29.961328125000026],[47.14824218750002,30.0009765625],[47.22324218750006,30.04150390625],[47.33134765625002,30.07968750000006],[47.51484375000004,30.096484375000017],[47.64375,30.097314453125026],[47.67275390625005,30.09560546875002],[47.75390624999997,30.07661132812495],[47.97871093750004,29.98281250000005],[47.973632812499964,29.94589843749998],[48.00566406250002,29.835791015625034],[48.07734375000004,29.71557617187506],[48.136132812500044,29.618115234374983]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Laos","sov_a3":"LAO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Laos","adm0_a3":"LAO","geou_dif":0,"geounit":"Laos","gu_a3":"LAO","su_dif":0,"subunit":"Laos","su_a3":"LAO","brk_diff":0,"name":"Lao PDR","name_long":"Lao PDR","brk_a3":"LAO","brk_name":"Laos","brk_group":null,"abbrev":"Laos","postal":"LA","formal_en":"Lao People's Democratic Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lao PDR","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":9,"pop_est":6834942,"gdp_md_est":13980,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LA","iso_a3":"LAO","iso_n3":"418","un_a3":"418","wb_a2":"LA","wb_a3":"LAO","woe_id":-99,"adm0_a3_is":"LAO","adm0_a3_us":"LAO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"LAO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[102.12744140625011,22.37919921874999],[102.18300781250002,22.28403320312492],[102.30136718749998,22.178173828125068],[102.44267578124999,22.02714843749999],[102.4875,21.957763671875114],[102.58251953125006,21.904296875000057],[102.6096679687501,21.85175781250001],[102.63125,21.77133789062492],[102.64082031250007,21.71142578125],[102.66201171875008,21.676025390625057],[102.69531249999994,21.662109375000057],[102.73857421875005,21.677929687500125],[102.77109375000013,21.70966796875001],[102.79824218750014,21.797949218750034],[102.81591796875,21.807373046875],[102.84521484375011,21.734765625000136],[102.87617187500001,21.72226562500009],[102.91767578125013,21.712939453124932],[102.94960937500008,21.681347656250068],[102.95917968750007,21.626220703125057],[102.94863281250008,21.569775390625068],[102.90957031250007,21.506347656249943],[102.8875,21.439941406250114],[102.87226562500013,21.3375],[102.85117187500009,21.26591796874999],[102.8837890625,21.202587890625065],[103.1044921875,20.89165039062499],[103.21074218749999,20.840625],[103.46357421874995,20.779833984375102],[103.55468750000006,20.737841796875045],[103.6350585937501,20.697070312500102],[103.71445312500009,20.716943359375076],[103.79052734375,20.80952148437512],[103.88203125000013,20.861425781250034],[104.05205078124999,20.941210937500102],[104.10136718750005,20.945507812500125],[104.1953125,20.91396484375008],[104.349609375,20.82109374999999],[104.46142578125006,20.73374023437492],[104.53037109375008,20.687988281250057],[104.58320312500001,20.646679687499955],[104.57519531249994,20.60024414062508],[104.53271484375,20.554882812500125],[104.47861328124998,20.529589843750102],[104.40781250000015,20.485742187500023],[104.36777343750015,20.441406250000057],[104.39218750000015,20.424755859375068],[104.49619140625002,20.41367187499992],[104.61884765624995,20.37451171875011],[104.65644531250001,20.328515624999966],[104.66191406250003,20.289013671875125],[104.67695312500007,20.224707031249977],[104.69873046875006,20.205322265625114],[104.81269531250001,20.21684570312499],[104.84785156250007,20.202441406250045],[104.88867187500006,20.16909179687502],[104.92919921874994,20.082812500000045],[104.92792968750007,20.01811523437499],[104.84580078125003,19.94716796875008],[104.81513671875001,19.90400390625001],[104.8017578125001,19.836132812500068],[104.74316406250006,19.754736328124977],[104.58789062500004,19.61875],[104.54628906250014,19.610546875000065],[104.25986328125003,19.685498046875068],[104.12714843750001,19.680859375],[104.06279296875005,19.678417968750068],[104.03203124999999,19.67514648437492],[104.0134765625001,19.646484374999943],[104.05156250000003,19.564160156250068],[104.06289062500002,19.482568359375136],[104.02753906250013,19.420458984375102],[103.93203125000002,19.366064453125034],[103.89638671875001,19.339990234375023],[103.89160156249994,19.30498046874999],[103.91835937500008,19.268505859375068],[104.00634765625006,19.23090820312501],[104.10859375000013,19.195556640625114],[104.44580078125006,18.983837890625125],[104.51796875,18.934082031250114],[104.61328125000004,18.860644531250102],[104.71650390624995,18.803417968749955],[104.9931640625,18.728320312499932],[105.11513671875002,18.678857421875023],[105.146484375,18.650976562499977],[105.14541015625014,18.616796874999977],[105.11347656250001,18.573046875000102],[105.08701171875015,18.49624023437508],[105.08583984375008,18.450097656250136],[105.11455078125005,18.405273437500057],[105.16328125000007,18.338720703124977],[105.27324218750005,18.235351562500057],[105.33349609375004,18.18964843750001],[105.40000000000015,18.179248046874985],[105.45820312500005,18.154296875000057],[105.51855468750011,18.077441406250045],[105.58847656250015,17.983691406249932],[105.59765625000004,17.918261718749932],[105.62724609375003,17.834423828125068],[105.69140625,17.737841796874932],[105.77949218750001,17.644433593750136],[105.90273437500008,17.528662109374977],[105.97353515625008,17.44697265625001],[106.00625,17.41528320312494],[106.26953125,17.216796875000057],[106.33339843750002,17.14370117187508],[106.42597656250007,17.00253906250009],[106.46533203125011,16.981835937500136],[106.50224609374999,16.9541015625],[106.52597656250003,16.876611328125023],[106.53369140625,16.821044921875057],[106.54619140625003,16.650732421874974],[106.59365234375014,16.60009765625],[106.6375,16.53793945312492],[106.65644531250013,16.492626953125125],[106.69609375000005,16.458984375],[106.73955078124997,16.452539062500136],[106.79160156250015,16.490332031249977],[106.83242187500007,16.52626953125002],[106.85107421874999,16.515625],[106.89277343750013,16.3965332031251],[106.93066406250006,16.353125],[107.001953125,16.311816406250045],[107.06972656250014,16.279833984375102],[107.21738281250003,16.136328124999974],[107.29648437500013,16.08403320312499],[107.35009765625006,16.0673828125],[107.39638671875008,16.043017578124985],[107.41015625,15.997851562500045],[107.39199218750007,15.951660156250055],[107.36064453125005,15.921728515624979],[107.18886718750008,15.838623046875114],[107.16591796875002,15.802490234374998],[107.18955078125003,15.747265624999955],[107.23261718750005,15.67807617187509],[107.27939453125003,15.618701171875045],[107.33876953125001,15.560498046875125],[107.45957031250015,15.465820312499998],[107.56425781249999,15.391601562499998],[107.62167968750015,15.309863281250045],[107.653125,15.255224609375091],[107.63369140625007,15.189843750000078],[107.58964843749999,15.1184570312501],[107.55527343750009,15.057031250000021],[107.49628906250001,15.021435546875068],[107.48037109375012,14.979882812500136],[107.5046875000001,14.915917968750078],[107.52451171875003,14.871826171874943],[107.51376953124998,14.817382812500057],[107.51943359375007,14.705078125000112],[107.46513671875005,14.664990234375123],[107.41474609375007,14.562890625000078],[107.37988281250004,14.555322265625136],[107.29267578125007,14.592382812500032],[107.26230468750008,14.572119140625032],[107.20664062500015,14.497900390624977],[107.109375,14.416699218749955],[107.06240234375008,14.415771484374943],[107.03017578125008,14.425683593750021],[106.99218749999994,14.39101562500008],[106.93808593750015,14.327343750000068],[106.91318359375002,14.329394531249932],[106.81992187500003,14.314697265624943],[106.7834960937501,14.335107421875021],[106.73818359375008,14.3877441406251],[106.66542968750002,14.441308593750021],[106.59921875000003,14.479394531250136],[106.56367187500007,14.505078125000011],[106.53115234375001,14.549414062499975],[106.50146484374999,14.578222656250034],[106.44697265625005,14.51503906250008],[106.35498046874999,14.454785156250066],[106.26796875000002,14.46621093750008],[106.22539062500005,14.476220703125021],[106.1907226562501,14.388134765625011],[106.16523437500007,14.372363281249989],[106.00839843750009,14.357177734375114],[105.97890625000014,14.343017578125059],[106.00410156250013,14.262890625000066],[106.09667968750011,14.127099609375136],[106.12470703124995,14.049121093750045],[106.06679687500008,13.921191406250102],[105.90449218750007,13.924511718750068],[105.83144531250008,13.976611328124989],[105.76406250000002,14.049072265625057],[105.73974609375006,14.084960937500057],[105.5315429687501,14.156152343750023],[105.39267578125003,14.107080078125136],[105.35019531250009,14.109570312500125],[105.28486328125013,14.161474609375034],[105.24570312500015,14.200537109374975],[105.20703125000006,14.259375],[105.18554687499993,14.319091796875],[105.18330078125001,14.346240234374989],[105.24365234375006,14.367871093749955],[105.34218750000008,14.416699218749955],[105.42265624999993,14.471630859374955],[105.47558593750006,14.530126953124977],[105.49736328125005,14.590673828125034],[105.50019531250011,14.661230468750032],[105.52304687500015,14.843310546874987],[105.54667968749999,14.932470703125034],[105.53339843750013,15.04160156250009],[105.49042968750007,15.127587890625023],[105.49042968750007,15.256591796875],[105.505859375,15.319628906250047],[105.51318359375011,15.360888671874932],[105.57373046875,15.413232421875135],[105.615625,15.488281249999943],[105.63886718750013,15.585937499999945],[105.64101562500002,15.65654296874993],[105.62207031250006,15.699951171875114],[105.56240234375002,15.741259765624987],[105.46201171875015,15.780419921875136],[105.39892578125011,15.829882812500102],[105.37324218750001,15.889697265625045],[105.37558593750013,15.942187500000045],[105.40625,15.987451171875023],[105.33066406250003,16.037890625000042],[105.1487304687501,16.09355468749999],[105.04716796874999,16.16025390625009],[105.02578125000008,16.237988281250125],[104.94990234375007,16.33994140625009],[104.81933593749994,16.466064453125057],[104.75058593750013,16.647558593750034],[104.74355468750014,16.884375],[104.75898437500013,17.0771484375],[104.81601562499998,17.30029296875],[104.73964843750008,17.461669921875],[104.65585937500003,17.54672851562509],[104.53925781250013,17.60927734375008],[104.428125,17.698974609375057],[104.32265625000002,17.81582031250002],[104.19619140625002,17.988378906250034],[104.04873046875002,18.216699218749966],[103.94960937500007,18.318994140625023],[103.89882812500002,18.295312500000023],[103.79228515624999,18.31650390625009],[103.62968750000005,18.382568359375057],[103.48798828124994,18.41816406250001],[103.36699218750005,18.42333984375],[103.28828124999995,18.408398437499955],[103.25175781249999,18.373486328125125],[103.24892578125014,18.338964843750034],[103.27958984374997,18.304980468750045],[103.26318359375,18.278466796875136],[103.19970703125004,18.25947265625001],[103.14853515625008,18.22172851562493],[103.09121093750014,18.13823242187499],[103.05136718750003,18.02851562500001],[102.99140625000007,17.986230468750136],[102.89863281250001,17.976904296874977],[102.80742187500005,17.945556640625],[102.71757812500005,17.892236328125133],[102.67519531250012,17.851757812500068],[102.68007812500008,17.824121093750136],[102.66064453125,17.8179687499999],[102.61679687500013,17.833349609375034],[102.59609375000002,17.86962890625],[102.59824218750009,17.926757812500057],[102.55253906249999,17.965087890625057],[102.4587890625001,17.984619140624943],[102.35185546874999,18.045947265625045],[102.23164062500001,18.148974609375045],[102.14824218750003,18.203857421875057],[102.10146484375014,18.21064453125001],[102.03457031250002,18.169824218750023],[101.94746093750001,18.081494140624955],[101.87548828125011,18.04643554687493],[101.81865234375005,18.06464843750012],[101.77480468750002,18.033398437500125],[101.744140625,17.952685546875045],[101.6875,17.889404296875114],[101.56367187500001,17.820507812500125],[101.55507812500002,17.812353515625034],[101.41367187500015,17.71875],[101.29970703125001,17.625],[101.16748046875011,17.4990234375],[101.10517578125,17.479541015625102],[101.04570312499999,17.509960937500068],[100.95585937499999,17.541113281250034],[100.9084960937501,17.583886718750023],[100.99902343750004,17.79716796874999],[101.11328125000006,18.033544921874977],[101.14394531250008,18.14262695312499],[101.14873046874997,18.222167968750057],[101.1375,18.286865234375057],[101.0927734375,18.35454101562499],[101.0505859375001,18.407031250000045],[101.04697265625003,18.44199218750003],[101.06044921875014,18.479003906249943],[101.10634765625008,18.533544921875034],[101.16552734375006,18.61831054687508],[101.22050781250005,18.792773437500102],[101.28632812499995,18.977148437500034],[101.27988281250009,19.088916015625045],[101.22656250000004,19.211523437499974],[101.19755859374999,19.327929687500045],[101.22080078125013,19.486621093750045],[101.21191406250011,19.548339843750057],[101.15468750000014,19.57919921875009],[100.96650390625001,19.610791015624955],[100.90605468749993,19.60537109375008],[100.85820312499999,19.585058593750034],[100.80683593750001,19.541943359374955],[100.74394531249999,19.51474609374992],[100.62548828125,19.49985351562509],[100.51357421875007,19.553466796875],[100.42011718750007,19.644482421875068],[100.39765625000011,19.756103515625057],[100.46621093750002,19.888916015624943],[100.51455078125014,19.996337890625],[100.54306640625009,20.08867187499999],[100.53994140625014,20.13237304687499],[100.51953125000006,20.177929687500068],[100.49160156250008,20.184082031250053],[100.43154296875008,20.240722656250057],[100.37314453125009,20.340380859375102],[100.31796875000003,20.385888671875136],[100.26601562500014,20.377294921874977],[100.2180664062501,20.339599609375114],[100.17412109375005,20.27275390624999],[100.13974609375015,20.245410156250102],[100.11494140625007,20.25766601562492],[100.12246093750002,20.316650390625057],[100.12968750000005,20.37221679687502],[100.1838867187501,20.589111328124943],[100.2493164062501,20.730273437499932],[100.32607421875008,20.795703124999932],[100.40742187499995,20.823242187500057],[100.49335937500007,20.81298828125011],[100.56513671875013,20.82509765625008],[100.62294921875002,20.85957031250001],[100.61767578125,20.87924804687509],[100.54931640625011,20.884228515625068],[100.52226562500009,20.921923828125102],[100.53613281250006,20.992382812500068],[100.56660156250007,21.038183593749977],[100.61367187500007,21.059326171874996],[100.65917968750011,21.130371093750114],[100.703125,21.25136718750008],[100.75664062500005,21.312646484375136],[100.81953125000007,21.314208984375053],[100.92753906250005,21.366210937499996],[101.08037109375009,21.468652343750076],[101.13886718750011,21.567480468749977],[101.19667968750002,21.522070312499977],[101.17539062500008,21.407519531250102],[101.20556640625006,21.383300781250114],[101.21992187500011,21.342431640625136],[101.21181640625008,21.278222656250023],[101.22441406249999,21.22373046874992],[101.24785156249993,21.197314453125045],[101.28144531250007,21.184130859375042],[101.44355468750001,21.230810546874977],[101.54238281250007,21.234277343750136],[101.58388671875002,21.203564453125068],[101.62167968750009,21.18442382812509],[101.66855468750003,21.16962890625012],[101.70478515625011,21.150146484375057],[101.728125,21.15639648437508],[101.78349609374999,21.204150390625045],[101.8005859375001,21.212597656249955],[101.80205078125005,21.235986328125136],[101.76308593750014,21.278906249999977],[101.72294921875009,21.314941406250057],[101.72421875000003,21.39501953125],[101.74345703125005,21.533837890625076],[101.74726562500007,21.60576171874999],[101.7439453125001,21.77797851562508],[101.7365234375,21.826513671874977],[101.69960937500014,21.882470703125023],[101.60292968749997,21.98969726562501],[101.57578125000015,22.055273437500034],[101.56025390625001,22.120898437500102],[101.56181640624999,22.162402343750042],[101.53730468750013,22.209863281250136],[101.52451171874998,22.253662109375],[101.56787109375011,22.2763671875],[101.6199218750001,22.3274414062501],[101.64619140625013,22.405419921874966],[101.67148437500008,22.462304687500023],[101.70751953124999,22.486572265625],[101.73876953125011,22.495263671874966],[101.75996093750001,22.490332031250034],[101.841796875,22.388476562500102],[101.94541015625015,22.439404296874955],[102.02441406250006,22.43920898437511],[102.09150390625007,22.412255859375136],[102.12744140625011,22.37919921874999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sri Lanka","sov_a3":"LKA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sri Lanka","adm0_a3":"LKA","geou_dif":0,"geounit":"Sri Lanka","gu_a3":"LKA","su_dif":0,"subunit":"Sri Lanka","su_a3":"LKA","brk_diff":0,"name":"Sri Lanka","name_long":"Sri Lanka","brk_a3":"LKA","brk_name":"Sri Lanka","brk_group":null,"abbrev":"Sri L.","postal":"LK","formal_en":"Democratic Socialist Republic of Sri Lanka","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sri Lanka","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":4,"mapcolor13":9,"pop_est":21324791,"gdp_md_est":91870,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LK","iso_a3":"LKA","iso_n3":"144","un_a3":"144","wb_a2":"LK","wb_a3":"LKA","woe_id":-99,"adm0_a3_is":"LKA","adm0_a3_us":"LKA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":9,"long_len":9,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"LKA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.87480468750002,9.050732421875026],[79.90371093750005,8.975],[79.82109375000002,9.026855468750043],[79.76679687500004,9.069775390624997],[79.74765625000006,9.104589843749991],[79.85996093750012,9.065722656249973],[79.87480468750002,9.050732421875026]]],[[[79.96953125000007,9.63066406249996],[79.90683593750006,9.619824218749967],[79.85742187500003,9.686376953125034],[79.84570312499997,9.714648437500017],[79.8585937500001,9.734375],[79.87226562500004,9.744335937500026],[79.88847656250006,9.741162109374997],[79.91191406250002,9.679150390624983],[79.96953125000007,9.63066406249996]]],[[[79.98232421875,9.812695312500011],[80.07841796875002,9.807470703125006],[80.18095703125002,9.810009765624997],[80.25283203125005,9.796337890625054],[80.37597656249997,9.642333984375028],[80.71113281250004,9.366357421875023],[80.89345703125,9.085888671874997],[80.91005859375,9.02451171875002],[80.93544921875,8.97148437499996],[80.97919921875004,8.956933593750009],[81.016015625,8.932617187500028],[81.19824218749997,8.661962890624961],[81.21923828125003,8.608398437499972],[81.2162109375,8.549414062500034],[81.226953125,8.50551757812498],[81.2746093750001,8.48359375000004],[81.33398437500003,8.472070312499994],[81.3728515625,8.431445312499989],[81.42216796875007,8.21523437499999],[81.42216796875007,8.147851562500023],[81.4359375,8.118896484374986],[81.66542968750005,7.782470703125013],[81.67871093749997,7.741552734375033],[81.67626953125003,7.710937500000014],[81.68291015625007,7.684472656250038],[81.72734375000007,7.625],[81.79667968750006,7.464794921875054],[81.83203124999996,7.428417968750011],[81.87412109375012,7.288330078124985],[81.87695312499997,7.020458984375025],[81.86142578125012,6.901269531249993],[81.81855468750004,6.75620117187502],[81.76777343750004,6.614306640624974],[81.71269531250007,6.51186523437498],[81.63740234375004,6.425146484374991],[81.37998046875006,6.240917968750026],[81.30625,6.203857421875028],[80.97109375,6.088378906250028],[80.72412109375003,5.979052734374959],[80.49580078125004,5.94936523437505],[80.26738281250007,6.009765625],[80.09531250000012,6.153173828125006],[80.0072265625,6.364404296875051],[79.9469726562501,6.584521484375031],[79.859375,6.829296874999983],[79.79208984375006,7.585205078124971],[79.7599609375001,7.796484375000034],[79.70781250000002,8.065673828124984],[79.71298828125012,8.18232421875004],[79.74980468750007,8.294238281250003],[79.74970703125004,8.048876953125031],[79.78349609375007,8.018457031250051],[79.80888671875002,8.05],[79.83193359375,8.304052734374963],[79.85087890625002,8.411572265625026],[79.941796875,8.691503906250034],[79.94365234375002,8.741162109375024],[79.9279296875001,8.846435546874972],[79.92890625000004,8.899218749999974],[80.06484375,9.095654296875026],[80.09960937499997,9.20996093750004],[80.1183593750001,9.326855468749967],[80.11093750000006,9.453271484374966],[80.08632812500004,9.577832031250026],[80.19609375,9.538134765625031],[80.25644531250006,9.49477539062498],[80.31796875000006,9.465429687500048],[80.36796875,9.48046875],[80.42832031250006,9.480957031250014],[80.38535156250012,9.548779296874969],[80.25761718750002,9.611279296875011],[80.04580078125005,9.649902343749972],[79.97949218750003,9.699365234375009],[79.95400390625,9.742333984374964],[79.96699218750004,9.792626953125009],[79.98232421875,9.812695312500011]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Lebanon","sov_a3":"LBN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lebanon","adm0_a3":"LBN","geou_dif":0,"geounit":"Lebanon","gu_a3":"LBN","su_dif":0,"subunit":"Lebanon","su_a3":"LBN","brk_diff":0,"name":"Lebanon","name_long":"Lebanon","brk_a3":"LBN","brk_name":"Lebanon","brk_group":null,"abbrev":"Leb.","postal":"LB","formal_en":"Lebanese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lebanon","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":12,"pop_est":4017095,"gdp_md_est":44060,"pop_year":-99,"lastcensus":1970,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LB","iso_a3":"LBN","iso_n3":"422","un_a3":"422","wb_a2":"LB","wb_a3":"LBN","woe_id":-99,"adm0_a3_is":"LBN","adm0_a3_us":"LBN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":4,"homepart":1,"filename":"LBN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[35.869140625,33.43173828124999],[35.84072265625002,33.415673828124994],[35.7875,33.369775390624994],[35.734472656250006,33.3326171875],[35.62724609375001,33.275048828124994],[35.60292968750002,33.240625],[35.579296875,33.271484375],[35.53251953125002,33.25048828125],[35.4931640625,33.119482421875],[35.411230468750006,33.07568359375],[35.30888671875002,33.079541015625],[35.22333984375001,33.0919921875],[35.10859375,33.08369140625],[35.15507812500002,33.160009765625],[35.20351562500002,33.258984375],[35.251367187500016,33.392626953124996],[35.33574218750002,33.503466796874996],[35.510839843750006,33.879736328125],[35.61181640625,34.032177734375],[35.64785156250002,34.2482421875],[35.804296875,34.437402343749994],[35.92138671875,34.49331054687499],[35.97792968750002,34.547412109374996],[35.97626953125001,34.629199218749996],[36.15107421875001,34.62861328124999],[36.26357421875002,34.632861328124996],[36.29628906250002,34.6787109375],[36.383886718750006,34.65791015625],[36.43300781250002,34.61347656249999],[36.388671875,34.56689453125],[36.326269531250006,34.513330078124994],[36.32988281250002,34.499609375],[36.37646484375,34.495166015624996],[36.45556640625,34.466162109375],[36.50439453125,34.43237304687499],[36.5849609375,34.221240234374996],[36.53515625,34.134326171874996],[36.45751953125,34.0568359375],[36.4228515625,34.049853515624996],[36.354882812500016,34.01132812499999],[36.2978515625,33.958642578124994],[36.27783203125,33.92529296875],[36.2822265625,33.894189453124994],[36.36279296875,33.855126953124994],[36.36503906250001,33.83935546875],[36.348535156250016,33.82705078124999],[36.28339843750001,33.835595703124994],[36.199414062500004,33.83955078125],[36.149804687500016,33.839501953124994],[36.09218750000002,33.831591796874996],[36.01884765625002,33.783935546875],[35.98613281250002,33.75263671875],[35.96845703125001,33.732421875],[35.9423828125,33.667578125],[35.9716796875,33.623095703124996],[36.02666015625002,33.597949218749996],[36.03447265625002,33.58505859375],[36.02226562500002,33.5625],[35.96757812500002,33.534570312499994],[35.92656250000002,33.500292968749996],[35.914746093750004,33.465380859374996],[35.869140625,33.43173828124999]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"China","sov_a3":"CH1","adm0_dif":1,"level":2,"type":"Country","admin":"Macao S.A.R","adm0_a3":"MAC","geou_dif":0,"geounit":"Macao S.A.R","gu_a3":"MAC","su_dif":0,"subunit":"Macao S.A.R","su_a3":"MAC","brk_diff":0,"name":"Macao","name_long":"Macao","brk_a3":"MAC","brk_name":"Macao","brk_group":null,"abbrev":"Mac.","postal":"MO","formal_en":"Macao Special Administrative Region, PRC","formal_fr":null,"note_adm0":"China","note_brk":null,"name_sort":"Macao SAR, China","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":3,"pop_est":559846,"gdp_md_est":18140,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"MO","iso_a3":"MAC","iso_n3":"446","un_a3":"446","wb_a2":"MO","wb_a3":"MAC","woe_id":-99,"adm0_a3_is":"MAC","adm0_a3_us":"MAC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"MAC.geojson"},"geometry":{"type":"Polygon","coordinates":[[[113.47890625000002,22.195556640625],[113.48105468750003,22.217480468749997],[113.494140625,22.24155273437499],[113.52705078125001,22.245947265624988],[113.54814453124997,22.222607421874997],[113.54550781250003,22.221484375],[113.49882812499997,22.20166015625],[113.48417968749999,22.19775390625],[113.47890625000002,22.195556640625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Myanmar","sov_a3":"MMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Myanmar","adm0_a3":"MMR","geou_dif":0,"geounit":"Myanmar","gu_a3":"MMR","su_dif":0,"subunit":"Myanmar","su_a3":"MMR","brk_diff":0,"name":"Myanmar","name_long":"Myanmar","brk_a3":"MMR","brk_name":"Myanmar","brk_group":null,"abbrev":"Myan.","postal":"MM","formal_en":"Republic of the Union of Myanmar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Myanmar","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":13,"pop_est":48137741,"gdp_md_est":55130,"pop_year":-99,"lastcensus":1983,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MM","iso_a3":"MMR","iso_n3":"104","un_a3":"104","wb_a2":"MM","wb_a3":"MMR","woe_id":-99,"adm0_a3_is":"MMR","adm0_a3_us":"MMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"MMR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.18261718749996,9.933447265625004],[98.13437500000012,9.87539062499999],[98.11806640625,9.877880859375052],[98.14023437500005,9.97465820312496],[98.22070312500003,10.045214843750031],[98.2916992187501,10.051318359375031],[98.28339843750008,10.007617187500017],[98.23125,9.953955078125006],[98.18261718749996,9.933447265625004]]],[[[98.20976562500002,10.952734375],[98.29345703125003,10.7796875],[98.284375,10.753125],[98.27148437499996,10.739892578124978],[98.25175781250007,10.744433593750017],[98.21816406250005,10.83774414062502],[98.15537109375006,10.897949218750028],[98.08046875000005,10.886621093750035],[98.14257812500003,10.963134765624986],[98.16728515625007,10.980322265625032],[98.20976562500002,10.952734375]]],[[[98.54169921875003,10.96152343750002],[98.51894531250005,10.959375],[98.49804687499997,10.964257812500037],[98.47744140625,10.979736328125],[98.52656250000008,11.086962890624989],[98.54169921875003,10.96152343750002]]],[[[98.22167968749997,11.47822265625004],[98.2162109375,11.455761718749981],[98.209375,11.456542968749972],[98.18730468750007,11.472412109375],[98.20107421875005,11.567187500000045],[98.23906250000002,11.644726562500026],[98.278125,11.758398437500006],[98.29960937500002,11.783007812500044],[98.30751953125005,11.722900390625057],[98.28378906250012,11.594091796875018],[98.26328125000006,11.523632812500054],[98.22167968749997,11.47822265625004]]],[[[98.55380859375012,11.744873046874998],[98.52841796875012,11.538671875],[98.46484375000001,11.567187500000045],[98.43476562500004,11.567089843750024],[98.396875,11.683544921875026],[98.39951171875005,11.714843750000014],[98.37646484374996,11.79150390625],[98.52353515625005,11.804931640624986],[98.55380859375012,11.744873046874998]]],[[[98.07548828125002,11.692382812500057],[98.08359375000006,11.636816406250018],[98.02109375000005,11.695898437499977],[98.01035156250006,11.860253906249966],[98.05957031249997,11.756689453125006],[98.08076171875004,11.733203125000017],[98.07548828125002,11.692382812500057]]],[[[98.51601562499998,11.905029296875028],[98.4743164062501,11.899414062500043],[98.45449218750005,12.061279296874984],[98.46621093750005,12.08427734374996],[98.52529296874998,12.005175781250001],[98.60957031250004,11.956640624999977],[98.57646484375002,11.92509765625003],[98.51601562499998,11.905029296875028]]],[[[98.13671874999997,12.150439453125031],[98.12509765625012,12.144873046875047],[98.10849609375005,12.148095703124993],[98.0753906250001,12.164453125000035],[98.03730468750004,12.232470703125045],[98.05732421875004,12.280078124999974],[98.07138671875006,12.29179687499996],[98.10488281250004,12.287792968750024],[98.1224609375,12.278710937500051],[98.12841796874996,12.261230468750043],[98.11845703125006,12.223388671875057],[98.12011718749997,12.191308593750009],[98.13671874999997,12.150439453125031]]],[[[98.06611328125003,12.389794921875023],[98.06035156250007,12.353515625000014],[98.00234375000005,12.279003906250011],[97.95175781250012,12.32231445312496],[97.93867187500004,12.34609375],[97.99023437499996,12.393798828125043],[98.04511718750004,12.387011718749989],[98.05986328125002,12.39785156249998],[98.06611328125003,12.389794921875023]]],[[[98.41396484375005,12.597949218749974],[98.43642578124998,12.570507812499983],[98.46826171875003,12.571337890624974],[98.45947265625003,12.473730468749991],[98.38085937499997,12.353662109375035],[98.33447265625001,12.336181640625028],[98.31386718749998,12.335986328124989],[98.33144531250005,12.511425781250026],[98.30253906250002,12.611572265625],[98.31210937500005,12.678173828124983],[98.39648437499997,12.647119140625051],[98.41396484375005,12.597949218749974]]],[[[98.31542968749997,13.099072265625026],[98.30917968750012,12.934716796875023],[98.25927734374997,13.014013671875006],[98.25078125000002,13.104394531250037],[98.25458984375008,13.188574218750048],[98.26533203125004,13.202246093749991],[98.26855468750003,13.189355468750023],[98.29863281250002,13.151660156249989],[98.31542968749997,13.099072265625026]]],[[[94.80488281250004,15.819335937500002],[94.784375,15.793847656250023],[94.7433593750001,15.812109375000034],[94.73349609375006,15.823046875000045],[94.82802734375005,15.933007812499964],[94.83818359375006,15.892089843749972],[94.80488281250004,15.819335937500002]]],[[[94.47675781250004,15.945947265625023],[94.41191406250007,15.848388671875055],[94.3878906250001,15.99414062499997],[94.49375,16.075341796874994],[94.5459960937501,16.15283203124997],[94.60126953125004,16.205517578124983],[94.61865234375001,16.14130859375004],[94.56611328125004,16.019287109375057],[94.47675781250004,15.945947265625023]]],[[[97.575,16.253222656250017],[97.53720703125006,16.240136718749994],[97.48037109375,16.305712890625045],[97.46914062500005,16.461035156249977],[97.51640625000007,16.496875],[97.54199218749997,16.50507812499998],[97.57900390625005,16.486035156250008],[97.59326171875003,16.460791015625006],[97.59960937499997,16.429541015625034],[97.58935546875003,16.397363281249966],[97.575,16.253222656250017]]],[[[93.6908203125,18.68427734375004],[93.67402343750004,18.675683593749966],[93.56992187500006,18.759570312500017],[93.4875,18.867529296875063],[93.61826171875012,18.88881835937505],[93.74472656250006,18.865527343750017],[93.74550781250005,18.80805664062501],[93.71835937500012,18.71572265625005],[93.6908203125,18.68427734375004]]],[[[93.71484374999997,19.558251953124994],[93.8294921875,19.47529296874998],[93.87470703125004,19.481054687500002],[93.94570312500005,19.428613281249966],[93.94746093750004,19.40815429687498],[93.93398437500005,19.365429687499983],[93.90195312500012,19.33203125],[93.81523437500002,19.298681640625063],[93.75585937500003,19.325683593750057],[93.73232421875,19.416308593750045],[93.66220703125012,19.45893554687501],[93.64404296874997,19.49506835937501],[93.68837890625005,19.544433593750025],[93.71484374999997,19.558251953124994]]],[[[93.4917968750001,19.892578125],[93.51328125000005,19.754785156249994],[93.44462890625,19.806445312500017],[93.41953125000005,19.87758789062505],[93.412890625,19.950341796875023],[93.4917968750001,19.892578125]]],[[[93.01015625000005,19.923925781249977],[93.02324218750007,19.82885742187497],[92.9751953125001,19.868017578125063],[92.91269531250012,19.99980468749999],[92.91464843750006,20.086474609375045],[92.95957031250006,20.046191406250017],[93.01015625000005,19.923925781249977]]],[[[97.73007812500005,28.407128906250023],[97.76904296875003,28.35615234375004],[97.81650390625012,28.356347656249966],[97.86494140625004,28.363574218750017],[97.88759765625005,28.356494140625014],[97.93408203124997,28.313818359375002],[98.022265625,28.211523437500063],[98.0616210937501,28.185888671874977],[98.09892578125002,28.142285156249983],[98.11835937500004,28.055224609375017],[98.13046875000012,27.96757812499999],[98.24101562500006,27.663183593749977],[98.27421875000002,27.599072265624983],[98.29882812499997,27.550097656250045],[98.35048828124998,27.538085937499996],[98.39238281250002,27.587060546875023],[98.40888671875008,27.639453125000045],[98.4525390625,27.6572265625],[98.50449218750012,27.64765625000001],[98.59980468750008,27.59882812500001],[98.65117187500006,27.572460937499983],[98.67675781250003,27.421923828125042],[98.68242187500002,27.24531250000004],[98.67480468749997,27.190625],[98.71650390625003,27.04492187499997],[98.72949218750003,26.87739257812504],[98.7384765625001,26.785742187500006],[98.73935546875006,26.698144531250023],[98.7318359375,26.58339843749999],[98.70947265624997,26.42968750000003],[98.671875,26.298535156249955],[98.68554687499997,26.189355468750023],[98.66318359375012,26.13945312499999],[98.5719726562501,26.114062500000045],[98.56406250000006,26.072412109374994],[98.59101562500003,26.003710937500045],[98.6546875,25.917773437500017],[98.65625,25.86357421874999],[98.62539062500005,25.826708984375042],[98.55839843750007,25.82324218750003],[98.4655273437501,25.788867187500045],[98.40166015625002,25.67797851562503],[98.33378906250007,25.586767578125006],[98.29658203125004,25.56884765625],[98.1725585937501,25.594531250000074],[98.14287109375007,25.571093750000014],[98.09960937499997,25.415722656249983],[98.06406250000012,25.348974609375063],[98.01074218749996,25.292529296875017],[97.96201171875006,25.25932617187499],[97.91796874999997,25.236132812500074],[97.8195312500001,25.251855468749994],[97.76738281250007,25.15805664062506],[97.7149414062501,25.034326171874994],[97.71074218750007,24.970361328125023],[97.73789062500006,24.869873046875057],[97.72382812500004,24.841992187499983],[97.67070312500007,24.820117187500045],[97.58330078125002,24.77480468750005],[97.52939453125006,24.631201171875006],[97.53144531250004,24.49169921875003],[97.56328125000002,24.443847656250025],[97.62363281250005,24.422949218750034],[97.66660156250012,24.379980468750006],[97.67070312500007,24.31274414062497],[97.7082031250001,24.228759765624996],[97.690625,24.13081054687504],[97.56826171874998,23.988476562499983],[97.56455078125012,23.911035156250023],[97.62968750000007,23.887158203124955],[97.68603515624997,23.898095703124962],[97.75566406250007,23.931884765625],[97.83769531250007,23.98627929687498],[98.01689453125006,24.06542968750003],[98.2125,24.110644531250017],[98.36728515625006,24.119042968750023],[98.49941406250005,24.115673828124983],[98.5641601562501,24.098828125],[98.58339843750004,24.069824218750057],[98.76435546875003,24.116064453125063],[98.80234375000006,24.118701171875045],[98.83505859375006,24.121191406250034],[98.83398437500003,24.090576171875],[98.70156250000005,23.96406249999998],[98.67675781250003,23.905078125000045],[98.68085937500008,23.84179687500003],[98.73505859375008,23.783105468749994],[98.78769531250006,23.73784179687499],[98.8322265625001,23.624365234374974],[98.79785156250003,23.520410156250023],[98.81972656250005,23.482519531250034],[98.85888671875003,23.440087890624994],[98.88261718750007,23.380322265624983],[98.88554687500002,23.307470703124977],[98.86376953125003,23.191259765625034],[99.055078125,23.13056640625001],[99.22031250000012,23.103320312500042],[99.34082031249997,23.095898437499955],[99.41806640625006,23.069238281250023],[99.46455078125004,23.046240234375063],[99.49726562500003,23.00458984375001],[99.50712890625002,22.959130859374994],[99.46679687499997,22.927294921875074],[99.38515625000005,22.825097656250023],[99.33828125,22.688671874999955],[99.3431640625,22.586523437500006],[99.33769531250002,22.49804687500003],[99.24306640625005,22.370361328125025],[99.20537109375007,22.282568359375006],[99.17236328125001,22.192480468750034],[99.17343750000006,22.153320312500057],[99.19296875000005,22.12597656249997],[99.23339843750003,22.110156250000045],[99.303125,22.100634765625045],[99.38867187500001,22.110791015624983],[99.59267578125005,22.089160156250017],[99.8253906250001,22.04970703124999],[99.9176757812501,22.02802734375001],[99.94785156250006,21.988330078125017],[99.94042968749997,21.901611328125],[99.92558593750007,21.82080078124997],[99.94072265625006,21.75874023437504],[99.97822265625004,21.70161132812504],[100.0412109375001,21.682763671875023],[100.09550781250007,21.66064453125003],[100.10576171875002,21.617041015625034],[100.08925781250004,21.557910156250074],[100.11679687500005,21.511181640624955],[100.14765625000003,21.480517578125017],[100.21474609375,21.462988281250006],[100.35058593749997,21.501025390625017],[100.445703125,21.48408203125004],[100.53134765625012,21.458105468749977],[100.60458984375012,21.471777343750006],[100.6771484375,21.504931640625017],[100.83515625000004,21.655175781249994],[101.01933593750007,21.736376953125017],[101.07978515625004,21.75585937499997],[101.12070312500012,21.74609375000003],[101.13085937499997,21.73554687500001],[101.128125,21.705126953125045],[101.14726562500002,21.581640625],[101.1388671875001,21.567480468749977],[101.08037109375007,21.468652343749994],[100.92753906250002,21.366210937499996],[100.81953125000004,21.31420898437497],[100.75664062500002,21.312646484375023],[100.703125,21.251367187499966],[100.65917968749997,21.13037109375],[100.613671875,21.059326171874996],[100.56660156250004,21.03818359375006],[100.53613281250003,20.992382812499955],[100.52226562500007,20.92192382812499],[100.54931640624997,20.884228515624955],[100.61767578125001,20.879248046875006],[100.62294921875005,20.859570312499983],[100.56513671875008,20.825097656249994],[100.49335937500004,20.81298828125],[100.4074218750001,20.823242187500057],[100.32607421875004,20.795703125000045],[100.24931640625002,20.730273437500045],[100.18388671875002,20.589111328125053],[100.12968750000002,20.37221679687499],[100.12246093750005,20.316650390625057],[100.0036132812501,20.37958984375001],[99.9542968750001,20.415429687500023],[99.8903320312501,20.424414062499977],[99.82519531249996,20.384472656250008],[99.77333984375,20.34130859375003],[99.72011718750005,20.32543945312497],[99.63867187499997,20.320458984375023],[99.53164062500005,20.342822265625045],[99.45888671875005,20.363037109375],[99.44794921875003,20.35205078124997],[99.4875,20.260644531250023],[99.50166015625004,20.187744140625],[99.48593750000006,20.14985351562501],[99.45156250000004,20.118310546874966],[99.39921875000007,20.09345703124998],[99.33789062499997,20.078906250000017],[99.28369140624997,20.080419921874977],[99.1968750000001,20.115136718750023],[99.13076171875,20.116601562499966],[99.07421875000003,20.099365234375025],[99.0397460937501,20.073632812500023],[99.02070312500004,20.041796875000017],[98.98740234375006,19.861376953125017],[98.95800781249997,19.804931640625],[98.9166992187501,19.77290039062504],[98.87578125000007,19.769580078125074],[98.8195312500001,19.778466796875023],[98.76064453124998,19.771093750000034],[98.4938476562501,19.701318359375023],[98.45498046875,19.694433593750034],[98.37128906250004,19.68916015625004],[98.29365234375003,19.687255859375],[98.23906250000002,19.690673828124968],[98.1110351562501,19.762158203124983],[98.04902343750004,19.76972656250001],[98.01503906250005,19.749511718749968],[97.99121093749997,19.653710937499994],[97.91640625000005,19.592871093750034],[97.816796875,19.459960937500057],[97.79355468750006,19.26586914062503],[97.80390625000003,19.130468749999977],[97.71416015625002,18.99648437500005],[97.70605468749997,18.931787109374994],[97.75400390625005,18.620800781249983],[97.74589843750002,18.58818359374999],[97.72773437500004,18.572021484375],[97.6715820312501,18.56123046875001],[97.57734375000004,18.52871093750005],[97.51513671874997,18.497753906249955],[97.48496093750006,18.494238281250034],[97.3970703125001,18.517529296874983],[97.37392578125,18.51796875],[97.38066406250002,18.49428710937505],[97.45078125000012,18.359667968750074],[97.52382812499998,18.295898437500053],[97.5993164062501,18.302978515624968],[97.63222656250005,18.290332031250074],[97.6224609375,18.258007812499955],[97.6515625000001,18.173730468750023],[97.71972656250003,18.037402343750042],[97.73994140625004,17.935302734375025],[97.69853515625007,17.83354492187499],[97.70644531249998,17.79711914062503],[97.72910156250006,17.775830078124955],[97.79296875000003,17.68125],[97.92929687500006,17.533300781250034],[98.06308593750006,17.37329101562503],[98.17460937500007,17.239892578125023],[98.25654296875004,17.147656249999983],[98.4388671875,16.975683593750034],[98.47119140624997,16.895019531250025],[98.478125,16.732226562500074],[98.5231445312501,16.638183593749996],[98.56474609375002,16.570947265624994],[98.59365234374998,16.514794921874994],[98.66074218750006,16.330419921875006],[98.68925781250002,16.30541992187497],[98.83544921875001,16.417578125],[98.8693359375001,16.39418945312505],[98.88828125000006,16.351904296875034],[98.88847656250002,16.298095703125],[98.86552734375002,16.237060546875],[98.81796875000012,16.18081054687499],[98.59238281250006,16.05068359375005],[98.57402343750007,15.938623046875051],[98.55820312500006,15.768603515625045],[98.55449218750002,15.559765624999953],[98.56523437500007,15.403564453125014],[98.55693359375007,15.367675781249986],[98.53730468750004,15.35068359374999],[98.45214843750001,15.357373046875026],[98.32939453125007,15.278564453125044],[98.28613281250003,15.271582031250034],[98.23222656250007,15.241357421875009],[98.19101562500012,15.204101562499972],[98.17792968750004,15.147412109374969],[98.20214843749997,14.97592773437502],[98.24599609375005,14.814746093750044],[98.33212890625006,14.696484375000026],[98.40019531250002,14.602978515624981],[98.49501953125005,14.472900390625043],[98.57001953125004,14.359912109375031],[98.72119140625003,14.235742187500037],[98.93359374999997,14.049853515625003],[99.01464843749997,13.947167968750051],[99.08623046875007,13.822753906250014],[99.13681640625006,13.716699218749993],[99.15605468750007,13.575781249999977],[99.17167968750007,13.496923828124975],[99.176171875,13.233056640625051],[99.13710937500005,13.17299804687498],[99.10742187500003,13.103515625000043],[99.12392578125,13.030761718750043],[99.1735351562501,12.961328125000023],[99.1735351562501,12.88193359375002],[99.21982421875012,12.73974609375],[99.29736328124996,12.652880859374973],[99.37197265625,12.594238281250028],[99.40507812500002,12.547900390625003],[99.3942382812501,12.473632812500057],[99.41630859375007,12.394824218749989],[99.43242187500007,12.30903320312501],[99.46289062499997,12.19023437499996],[99.52294921875003,12.089648437499987],[99.61474609374997,11.781201171875026],[99.6125,11.749658203124994],[99.57285156250006,11.687158203124964],[99.51523437500006,11.630664062500003],[99.47792968749998,11.6125],[99.44267578125002,11.554394531250011],[99.3587890625,11.389453124999974],[99.1901367187501,11.105273437499989],[99.02539062500003,10.919970703124989],[98.887109375,10.788330078125],[98.78691406250002,10.708447265624969],[98.7572265625,10.660937499999973],[98.7572265625,10.623583984375003],[98.77539062499997,10.557031250000037],[98.76835937500007,10.430859375],[98.746875,10.35083007812504],[98.7184570312501,10.26601562499999],[98.70253906250005,10.19038085937504],[98.65800781250002,10.179052734375034],[98.56259765625006,10.034960937499989],[98.52128906250007,10.107226562499973],[98.496875,10.182519531250037],[98.52304687500006,10.353125],[98.46494140625006,10.675830078124989],[98.50097656250003,10.718945312499981],[98.53564453124996,10.740673828124969],[98.59882812500003,10.864404296875037],[98.67558593750007,10.986914062500034],[98.68261718749997,11.133105468749974],[98.74472656250012,11.240380859374978],[98.73007812500006,11.329980468750037],[98.73330078125,11.435253906249983],[98.74638671875002,11.521289062500017],[98.74140625000004,11.591699218749966],[98.79072265625008,11.665087890625001],[98.87597656250003,11.719726562500028],[98.84023437500005,11.739257812500014],[98.80478515625012,11.779248046874983],[98.69365234375002,11.71835937500002],[98.63632812500005,11.738378906250004],[98.62490234375004,11.801464843749983],[98.6390625,11.869140625],[98.64492187500005,11.910302734375037],[98.68945312499997,11.956738281249997],[98.68632812500002,12.047119140625028],[98.66386718750006,12.126708984374986],[98.69628906250003,12.225244140624993],[98.63056640625004,12.225488281250037],[98.6002929687501,12.2453125],[98.61914062500001,12.3],[98.67871093749996,12.348486328124963],[98.62441406250005,12.440722656250017],[98.66464843750006,12.53994140624998],[98.66318359375012,12.66240234374996],[98.63564453125,12.770507812500055],[98.63710937500005,12.848242187499991],[98.5951171875,12.986035156249997],[98.57597656250002,13.161914062500031],[98.48710937500002,13.293066406250018],[98.42128906250004,13.483789062499966],[98.24541015625002,13.733496093750032],[98.2484375,13.84038085937506],[98.23896484375004,13.934472656250037],[98.20039062500004,13.980175781250026],[98.14951171875012,13.647607421875037],[98.11064453125006,13.712890625000014],[98.0982421875001,13.898339843750051],[98.07265625,13.98647460937498],[98.10019531250006,14.161523437500023],[97.99843750000004,14.33530273437499],[97.97656250000003,14.461474609375017],[97.90976562500012,14.652685546874991],[97.92929687500006,14.695556640625014],[98.01875,14.652587890625055],[97.93652343749997,14.763916015624998],[97.86914062499997,14.738720703125011],[97.81230468750007,14.858935546874989],[97.79980468749997,15.184912109374965],[97.7437500000001,15.306787109375023],[97.77421875,15.430957031250001],[97.7103515625,15.875537109375074],[97.58427734375006,16.019580078125014],[97.60927734375,16.143847656250017],[97.640625,16.253857421874955],[97.63369140625,16.457666015624994],[97.66464843750006,16.52045898437501],[97.72597656250005,16.56855468750004],[97.66845703124997,16.551611328125034],[97.61962890624996,16.537207031250034],[97.5050781250001,16.525292968750023],[97.37587890625005,16.52294921874997],[97.33105468749997,16.67177734375002],[97.26748046875,16.743115234374983],[97.21171875000002,16.892578125000057],[97.17832031250012,17.06201171875003],[97.20019531249997,17.09541015624998],[97.10019531250012,17.16455078125003],[97.07451171875002,17.206933593749966],[96.9701171875,17.317333984374983],[96.85146484375005,17.401025390624994],[96.87773437500007,17.3421875],[96.90976562500012,17.304833984375023],[96.85087890625002,17.202929687500045],[96.90859375000005,17.03095703125001],[96.85800781250006,16.921191406250017],[96.81064453125006,16.778369140625045],[96.76542968750002,16.710351562499966],[96.62246093750005,16.56391601562498],[96.50664062500007,16.51435546875001],[96.43115234374997,16.504931640625045],[96.36435546875012,16.52050781250003],[96.28222656249997,16.595996093750014],[96.262109375,16.65913085937501],[96.24892578125005,16.765332031249983],[96.22031250000006,16.780566406250074],[96.18906250000012,16.768310546875057],[96.2376953125,16.63125],[96.23671875000004,16.56743164062507],[96.32431640625006,16.444433593750063],[96.29306640625006,16.410058593749994],[96.13505859375,16.342529296875],[96.08095703125005,16.353369140624977],[96.04287109375,16.339941406250006],[96.03212890625005,16.28461914062501],[96.01230468750006,16.253710937500014],[95.76328125000005,16.169042968750006],[95.71142578124997,16.073388671874966],[95.67949218750002,15.976757812499981],[95.55566406250003,15.83784179687504],[95.38955078125005,15.722753906250034],[95.34843750000002,15.729296875000015],[95.30146484375004,15.756152343749989],[95.3078125000001,15.880419921874987],[95.36474609374997,15.985449218749977],[95.34677734375012,16.09760742187501],[95.33300781249997,16.033251953125045],[95.22587890625007,15.87680664062506],[95.17695312500004,15.825683593750027],[95.07832031250004,15.839160156250019],[94.94257812500008,15.818261718750021],[94.8912109375001,15.979101562500034],[94.89218750000006,16.038183593749977],[94.88222656250005,16.087939453124985],[94.89785156250004,16.14082031250001],[94.89316406250006,16.182812499999955],[94.86015625000002,16.102441406250023],[94.84775390625006,16.032861328124966],[94.79814453125007,15.97109375],[94.66152343750005,15.904394531250006],[94.65625,15.988769531250057],[94.65136718750003,16.06484375],[94.68076171875006,16.13330078125],[94.67656250000007,16.242041015625034],[94.71992187500004,16.39873046874999],[94.71660156250007,16.452490234375006],[94.70332031250003,16.511914062499955],[94.67900390625007,16.425585937500045],[94.6652343750001,16.33613281250001],[94.63769531249997,16.309082031250025],[94.5875,16.28881835937497],[94.49570312500012,16.186132812500006],[94.4416015625001,16.094384765624966],[94.2990234375001,16.007617187500074],[94.22382812500004,16.016455078125006],[94.21425781250005,16.126611328124966],[94.2712890625,16.517285156249983],[94.32734375000008,16.572167968749966],[94.35341796875,16.639941406250017],[94.4,16.868164062500057],[94.45244140625007,16.954492187499966],[94.47314453125003,17.135449218749983],[94.49433593750008,17.166552734375017],[94.56445312499997,17.308544921874983],[94.58896484375006,17.5693359375],[94.56005859374997,17.69897460937503],[94.49433593750008,17.82460937500005],[94.43076171875012,18.201660156250025],[94.2658203125001,18.507226562500023],[94.25214843750004,18.609179687500017],[94.17070312500007,18.73242187499997],[94.24570312500006,18.741162109374983],[94.09130859374996,18.849218750000063],[94.07001953125004,18.893408203125006],[94.03896484375005,19.14619140624998],[94.04492187500003,19.287402343750074],[94.02246093749997,19.268798828125],[94.00156250000005,19.18178710937505],[93.94101562500005,19.146093750000063],[93.96806640625007,18.99506835937501],[93.96132812500004,18.958398437500023],[93.92919921874996,18.899658203125025],[93.80009765625006,18.960595703125023],[93.70546875000005,19.026904296875017],[93.59814453125003,19.1884765625],[93.49306640625005,19.369482421875006],[93.53056640625,19.397558593750034],[93.57861328124997,19.401171875000074],[93.72802734375001,19.266503906249994],[93.82490234375004,19.238476562499955],[93.8861328125,19.27192382812501],[93.96201171875006,19.329345703124996],[93.99814453125005,19.440869140624983],[93.96074218750002,19.48168945312503],[93.8878906250001,19.503906250000025],[93.8395507812501,19.53413085937498],[93.76992187500005,19.609570312499983],[93.76103515625007,19.648046875],[93.73955078125006,19.697265625],[93.66875,19.731982421875042],[93.61171875000005,19.776074218749983],[93.6598632812501,19.854150390624966],[93.70703125000003,19.912158203125074],[93.58183593750007,19.909570312499994],[93.43906250000012,20.009423828124994],[93.4095703125,20.03833007812503],[93.36230468750001,20.05830078125001],[93.25,20.070117187500017],[93.15664062500004,20.04077148437497],[93.19902343750006,19.898339843750023],[93.190625,19.851220703124994],[93.12949218750012,19.858007812500063],[93.00195312499997,20.07485351562499],[93.04033203125007,20.129785156249994],[93.09550781250002,20.181347656250008],[93.06835937500003,20.18867187500001],[93.01513671875003,20.18525390625001],[93.06679687500005,20.37763671874995],[93.03535156250003,20.406152343749994],[93.01875,20.346044921875002],[92.99072265625003,20.287988281249994],[92.88212890625007,20.152148437500014],[92.82832031250004,20.177587890625063],[92.79121093750004,20.21142578125003],[92.8435546875,20.28261718750005],[92.87167968750006,20.30175781250003],[92.89111328124997,20.34033203125],[92.85068359375006,20.41484374999999],[92.78691406250007,20.469042968750017],[92.73564453125007,20.56269531250001],[92.70898437499997,20.56396484375],[92.7326171875001,20.45336914062503],[92.72285156250004,20.29560546875004],[92.60800781250012,20.469873046874994],[92.37832031250005,20.717578125000017],[92.32412109374998,20.791845703125063],[92.3119140625,20.86445312500001],[92.28623046875012,20.93159179687501],[92.26845703125005,21.004687500000074],[92.26445312500002,21.06147460937501],[92.21474609375,21.11269531250005],[92.19199218750005,21.202246093750006],[92.17958984375005,21.293115234375023],[92.2082031250001,21.357861328124983],[92.2796875,21.427587890624977],[92.33056640624997,21.439794921874977],[92.37265625000012,21.40903320312503],[92.471875,21.362988281249983],[92.53916015625012,21.31982421874997],[92.56855468750004,21.263330078124994],[92.59980468750004,21.270166015624962],[92.63164062500002,21.306201171875045],[92.62529296875007,21.35073242187505],[92.5934570312501,21.46733398437499],[92.58427734375007,21.609033203124994],[92.5828125,21.940332031249994],[92.57490234375004,21.978076171875045],[92.63037109374997,22.011328124999977],[92.65263671875007,22.04931640625],[92.67470703125,22.10600585937499],[92.68896484374996,22.130957031250006],[92.72099609375,22.132421875000063],[92.77138671875,22.104785156250017],[92.85429687500002,22.010156250000023],[92.90947265625006,21.98891601562502],[92.96455078125008,22.003759765625034],[93.02197265624997,22.14570312500001],[93.04296874999997,22.18398437499999],[93.07060546875002,22.209423828125008],[93.121484375,22.205175781250034],[93.15117187500002,22.230615234374994],[93.16240234375006,22.291894531250023],[93.16201171875,22.360205078125006],[93.10507812500012,22.54711914062497],[93.08818359375007,22.633251953125036],[93.07871093750006,22.71821289062501],[93.11425781250001,22.80571289062499],[93.1625,22.90795898437503],[93.15097656250006,22.99731445312503],[93.16416015625006,23.032031250000017],[93.20390625000002,23.03701171875005],[93.25351562500006,23.015478515625006],[93.3080078125,23.030371093750034],[93.34941406250007,23.08496093750003],[93.36601562500006,23.132519531249955],[93.3913085937501,23.339160156250045],[93.40810546875005,23.528027343749983],[93.41494140624998,23.68208007812501],[93.37255859374996,23.77416992187503],[93.30732421875003,24.021875],[93.32626953125006,24.064208984375053],[93.35556640625006,24.074121093750023],[93.45214843750003,23.987402343750034],[93.49375,23.972851562500008],[93.56406250000012,23.98608398437503],[93.63330078124996,24.00537109374997],[93.68339843750007,24.00654296875004],[93.75585937500003,23.976904296875034],[93.85546874999997,23.943896484375045],[94.01083984375006,23.902929687500063],[94.07480468750006,23.8720703125],[94.1276367187501,23.87646484375],[94.1703125,23.972656250000057],[94.21972656250003,24.11318359374999],[94.29306640625012,24.321875],[94.37724609375002,24.473730468750006],[94.39941406250003,24.51406250000005],[94.49316406250003,24.637646484374983],[94.58408203125006,24.767236328125023],[94.66328125000004,24.931005859374977],[94.70761718750012,25.048730468749994],[94.70371093750012,25.097851562499955],[94.67529296875003,25.138574218749994],[94.615625,25.164599609375045],[94.56650390625006,25.191503906250034],[94.55302734375007,25.215722656249994],[94.55439453125004,25.243457031250045],[94.5798828125,25.31982421874997],[94.62285156250007,25.41000976562506],[94.66777343750007,25.458886718749966],[94.78583984375003,25.519335937500017],[94.86113281250002,25.59721679687499],[94.94570312500005,25.700244140625014],[94.99199218750002,25.77045898437504],[95.01523437500006,25.912939453125006],[95.04072265625004,25.941308593750023],[95.0929687500001,25.987304687499968],[95.13242187500006,26.041259765625057],[95.12929687500005,26.070410156250034],[95.10839843749997,26.091406250000034],[95.06894531250006,26.19111328125001],[95.05087890625005,26.347265625000034],[95.0597656250001,26.473974609375006],[95.08945312500006,26.525488281250006],[95.12871093750002,26.597265624999977],[95.20146484375007,26.641406250000017],[95.30507812500005,26.67226562499999],[95.46386718749997,26.75605468750001],[95.73837890625006,26.950439453125],[95.83730468750005,27.013818359375023],[95.90527343750003,27.046630859375057],[95.9708984375001,27.128076171875023],[96.06142578125005,27.21708984374996],[96.19082031250005,27.261279296874985],[96.27421875000006,27.278369140625014],[96.66572265625004,27.339257812499994],[96.7316406250001,27.33149414062501],[96.79785156249997,27.29619140624999],[96.8802734375,27.177832031250034],[96.95341796875002,27.13330078125003],[97.03808593749997,27.10205078124997],[97.10205078125001,27.11542968750004],[97.10371093750004,27.16333007812503],[96.90195312500012,27.43959960937499],[96.88359375000002,27.514843749999955],[96.87685546875,27.586718750000045],[96.89970703125,27.643847656250045],[96.96279296875,27.698291015625017],[97.04970703125005,27.760009765625],[97.15781250000012,27.83686523437501],[97.22607421874997,27.89003906250002],[97.30615234374997,27.907080078125034],[97.3351562500001,27.937744140625057],[97.34355468750002,27.982324218749994],[97.33916015625002,28.030859375],[97.30273437499997,28.08598632812496],[97.31025390625008,28.15522460937504],[97.3224609375001,28.21796875000004],[97.35644531249997,28.254492187500006],[97.43144531250002,28.35390625000002],[97.4777343750001,28.42563476562506],[97.5021484375001,28.456347656250017],[97.53789062500002,28.510205078124983],[97.59921875000006,28.51704101562504],[97.65888671875004,28.5],[97.69462890625007,28.469335937500006],[97.73007812500005,28.407128906250023]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Malaysia","sov_a3":"MYS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malaysia","adm0_a3":"MYS","geou_dif":0,"geounit":"Malaysia","gu_a3":"MYS","su_dif":0,"subunit":"Malaysia","su_a3":"MYS","brk_diff":0,"name":"Malaysia","name_long":"Malaysia","brk_a3":"MYS","brk_name":"Malaysia","brk_group":null,"abbrev":"Malay.","postal":"MY","formal_en":"Malaysia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malaysia","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":3,"mapcolor13":6,"pop_est":25715819,"gdp_md_est":384300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MY","iso_a3":"MYS","iso_n3":"458","un_a3":"458","wb_a2":"MY","wb_a3":"MYS","woe_id":-99,"adm0_a3_is":"MYS","adm0_a3_us":"MYS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"MYS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.38925781250006,2.415332031250031],[111.35869140625007,2.40219726562502],[111.31152343749997,2.437597656250034],[111.30039062500006,2.741162109374969],[111.33349609374997,2.768310546875],[111.35507812500012,2.764453125],[111.3783203125,2.709326171874963],[111.37626953125002,2.576318359375051],[111.38046875000006,2.458935546875026],[111.38925781250006,2.415332031250031]]],[[[104.22158203125,2.731738281250003],[104.17333984375001,2.721337890625023],[104.146875,2.728222656249997],[104.1291015625001,2.767236328125037],[104.16982421875,2.856835937499994],[104.18476562500003,2.871728515625009],[104.22324218750006,2.774218750000045],[104.22158203125,2.731738281250003]]],[[[101.3185546875001,2.988476562499997],[101.26806640625001,2.97041015625004],[101.26542968750002,2.996484375000023],[101.27421875000002,3.032812499999963],[101.31123046875004,3.0673828125],[101.32841796875007,3.047607421875057],[101.3185546875001,2.988476562499997]]],[[[117.88476562499997,4.186132812500006],[117.74541015625,4.166943359375011],[117.64902343750012,4.168994140624974],[117.66679687500002,4.204003906250009],[117.66210937500001,4.250195312499997],[117.70800781249999,4.262402343749997],[117.76142578125008,4.25234375],[117.88476562499997,4.186132812500006]]],[[[100.28896484375005,5.294726562499989],[100.26376953125006,5.266992187500023],[100.19101562500006,5.282861328124979],[100.20390625,5.446875],[100.2455078125,5.467773437499986],[100.3101562500001,5.43793945312504],[100.33886718749997,5.410058593750037],[100.28896484375005,5.294726562499989]]],[[[99.848046875,6.465722656249994],[99.9186523437501,6.35859375000001],[99.88339843750012,6.310839843749974],[99.86582031250006,6.29707031250001],[99.82324218750003,6.312744140625],[99.7826171875,6.271582031249963],[99.74375,6.263281249999963],[99.70468750000012,6.337548828124994],[99.656640625,6.367138671874983],[99.64628906250002,6.418359375000023],[99.71054687500006,6.42734375],[99.74921875000004,6.409619140625026],[99.82167968750005,6.44501953125004],[99.848046875,6.465722656249994]]],[[[100.56386718749998,6.467529296875],[100.62949218750006,6.447998046875028],[100.715625,6.480664062500011],[100.75449218750012,6.460058593749991],[100.79375,6.426171875000023],[100.81650390625005,6.331640625000033],[100.87392578124998,6.24541015624996],[100.98876953124997,6.257666015624977],[101.02939453125005,6.245312500000025],[101.05351562500002,6.242578125],[101.07597656250006,6.16606445312496],[101.08652343750006,6.03369140625],[101.0755859375,5.956494140624983],[100.99277343750006,5.846191406249985],[100.98164062500004,5.771044921875045],[101.02519531250002,5.724511718749979],[101.08173828125008,5.674902343749991],[101.1139648437501,5.636767578125045],[101.1476562500001,5.643066406249999],[101.190625,5.66875],[101.22978515625002,5.733691406249989],[101.2570312500001,5.789355468750045],[101.40419921875004,5.851660156250034],[101.55605468749998,5.907763671875003],[101.57675781250012,5.902001953124993],[101.60136718750007,5.877148437499983],[101.65000000000012,5.795996093749977],[101.67841796875004,5.778808593750028],[101.71953125000007,5.770605468750048],[101.7907226562501,5.77934570312496],[101.87363281250012,5.825292968749991],[101.9171875000001,5.911376953125028],[101.93613281250006,5.97934570312502],[102.05517578124997,6.096679687500042],[102.06835937499997,6.18466796875002],[102.10107421874997,6.242236328125031],[102.27402343750006,6.203417968750017],[102.34013671875002,6.172021484375023],[102.534375,5.862548828125028],[102.79023437500003,5.644921875000023],[102.8985351562501,5.563769531250003],[102.98242187499997,5.524951171875003],[103.09707031250005,5.408447265624986],[103.19697265625004,5.262158203125025],[103.41582031250007,4.85029296875004],[103.45390625,4.669482421874974],[103.46875,4.393261718750011],[103.42050781250012,3.976855468750003],[103.36201171875004,3.769140624999963],[103.37333984375002,3.671093749999969],[103.453515625,3.520605468750048],[103.42949218750002,3.37856445312498],[103.44501953125004,3.260595703125006],[103.43945312499996,2.93310546875],[103.48515625000006,2.836572265625051],[103.53730468750004,2.774755859374977],[103.8122070312501,2.58046875],[103.83232421875,2.508496093749997],[103.96777343749997,2.261230468749986],[104.21855468750002,1.722851562499997],[104.28847656250005,1.48066406250004],[104.28037109375006,1.415576171875003],[104.2500976562501,1.388574218750008],[104.17636718750012,1.36489257812498],[104.11494140625003,1.412255859375037],[104.09423828124997,1.446191406250023],[104.10058593750003,1.488330078125003],[104.07617187500001,1.52978515625],[104.01601562500005,1.579296874999969],[103.98144531250003,1.623632812500034],[103.99121093749996,1.550048828125043],[103.99150390625,1.454785156249997],[103.91513671875006,1.446679687500037],[103.81679687500005,1.4765625],[103.6945312500001,1.449658203125026],[103.54980468750001,1.332812500000017],[103.48027343750006,1.329492187499966],[103.42734375000012,1.42983398437498],[103.40000000000012,1.497851562499989],[103.35683593750004,1.546142578125057],[102.896875,1.79233398437502],[102.72714843750012,1.855566406250034],[102.54824218750005,2.04238281249998],[102.14560546875012,2.248486328125054],[101.88994140625007,2.44941406250004],[101.78125,2.57358398437502],[101.51972656250003,2.683642578124974],[101.40683593750006,2.813476562500042],[101.35136718750002,2.838964843750006],[101.29550781250012,2.885205078125011],[101.35429687500002,3.011132812499994],[101.33017578125005,3.142480468750023],[101.29990234375012,3.253271484375034],[101.1154296875001,3.472021484375006],[101.02480468750005,3.624707031250026],[100.85126953125004,3.776708984374991],[100.78183593750006,3.864453125000026],[100.71542968750006,3.966210937499966],[100.7570312500001,4.00180664062502],[100.79550781250012,4.023388671874983],[100.76025390624997,4.097216796875017],[100.66103515625,4.225732421874994],[100.61455078125002,4.3734375],[100.61455078125002,4.652246093750022],[100.47343750000006,5.044287109375048],[100.35263671875006,5.587695312499989],[100.37402343749997,5.777978515625037],[100.34326171874997,5.98417968750003],[100.26328125000006,6.182519531250023],[100.1583984375001,6.324218750000028],[100.11914062499996,6.441992187500048],[100.13798828125002,6.488671875000051],[100.16123046875012,6.641601562500028],[100.17675781250003,6.671826171874969],[100.2166015625,6.686621093749963],[100.26142578125004,6.682714843749963],[100.3454101562501,6.549902343750006],[100.56386718749998,6.467529296875]]],[[[116.80771484375006,6.691064453124979],[116.78808593749996,6.606103515624993],[116.81240234375,6.60791015625],[116.91328125000004,6.659667968749986],[117.01855468750003,6.797363281250057],[117.07792968750002,6.916845703124977],[117.1285156250001,6.968896484375009],[117.2298828125,6.939990234374974],[117.25244140624997,6.919238281250016],[117.24531250000004,6.833398437500023],[117.25498046875012,6.783447265624972],[117.29404296875006,6.676904296875023],[117.38037109374997,6.612255859374997],[117.49921875000004,6.571484375000039],[117.60966796875,6.512646484375054],[117.64570312500004,6.473681640625017],[117.66962890625004,6.426757812500043],[117.69375,6.35],[117.69560546875003,6.27231445312502],[117.61591796875003,6.196533203125043],[117.6498046875,6.073583984375034],[117.64453124999999,6.001855468749994],[117.61718750000001,5.940722656249974],[117.5011718750001,5.884667968750009],[117.81767578125002,5.9404296875],[117.89580078125,5.972265625],[118.00380859375,6.053320312499991],[118.0617187500001,5.983447265624974],[118.11582031250008,5.8625],[118.07226562500001,5.832080078125045],[117.93476562500004,5.7875],[117.92802734375002,5.769189453125023],[117.97363281249997,5.70625],[118.03115234374998,5.712109375000026],[118.14462890625006,5.754199218749989],[118.24912109375006,5.820556640624999],[118.29980468749997,5.819726562500009],[118.3531250000001,5.80605468749998],[118.45634765625002,5.763427734374999],[118.51416015624999,5.72890625],[118.56308593750005,5.684521484374997],[118.59482421875006,5.592089843750003],[118.713671875,5.558544921875011],[118.95732421875,5.429003906249989],[119.00253906250005,5.41782226562502],[119.05,5.415234375000026],[119.17841796875003,5.430908203125028],[119.22343750000007,5.412646484375031],[119.25556640625004,5.365917968750026],[119.26630859375008,5.308105468750057],[119.26279296875006,5.245898437499989],[119.24970703125008,5.198730468749971],[119.21962890625,5.159814453125037],[119.13222656250004,5.100488281250037],[118.9125,5.02290039062504],[118.6720703125001,4.96406250000004],[118.55136718750008,4.968115234374976],[118.38183593750003,5.018505859375026],[118.32001953125005,5.012011718750045],[118.26054687500007,4.988867187500034],[118.18535156250002,4.828515625000051],[118.32421874999996,4.668701171875],[118.5625,4.502148437499997],[118.59511718750004,4.460644531249983],[118.58632812499998,4.409667968749985],[118.54833984375004,4.379248046875006],[118.49804687499997,4.362353515625031],[118.3640625,4.335742187500017],[118.2287109375001,4.316015625],[118.11728515625012,4.287597656249986],[118.008203125,4.250244140625014],[117.89560546875006,4.262939453125028],[117.741015625,4.337548828125037],[117.69648437500008,4.342822265625045],[117.6498046875,4.30449218749996],[117.60380859375002,4.2],[117.5744140625001,4.17060546875004],[117.53730468750008,4.171386718750028],[117.45087890625003,4.192871093750043],[117.27753906250008,4.299316406249972],[117.10058593750003,4.337060546875023],[116.84355468750006,4.340136718750031],[116.69785156250006,4.354980468750028],[116.63867187499996,4.339111328125],[116.5890625000001,4.338427734375031],[116.553125,4.359863281250057],[116.51474609375006,4.370800781249969],[116.41455078124996,4.308203125],[116.36767578125003,4.32734375],[116.32031249999996,4.35371093750004],[116.23623046875004,4.362548828124971],[116.13447265625003,4.355175781249983],[116.02158203125012,4.290673828124994],[115.89619140625003,4.348681640624989],[115.86074218750005,4.348046875000037],[115.83681640625007,4.333300781249974],[115.78242187500004,4.25375976562502],[115.67880859375006,4.193017578124994],[115.6275390625001,4.081982421875011],[115.59609375000004,3.975537109374997],[115.56845703125006,3.938769531249974],[115.56093750000004,3.73305664062498],[115.54453125000006,3.633691406249994],[115.57070312499998,3.502294921875048],[115.56611328125004,3.445751953124983],[115.51992187500004,3.361669921874991],[115.51425781250005,3.342382812499977],[115.48974609375003,3.208642578124994],[115.49912109375005,3.17314453124996],[115.49316406250001,3.128125],[115.45439453125002,3.034326171875008],[115.38417968749998,3.00874023437504],[115.31015625000013,2.993945312500045],[115.24697265625005,3.025927734374989],[115.18994140624996,2.974462890624977],[115.117578125,2.89487304687502],[115.086328125,2.841113281249989],[115.08652343750006,2.79121093750004],[115.09365234375,2.757812499999986],[115.07890625,2.7234375],[115.07705078124998,2.687011718750043],[115.08076171875004,2.63422851562504],[115.12988281249997,2.612402343750034],[115.18085937500008,2.56689453125],[115.1791015625,2.523193359374972],[115.15078125,2.492919921875028],[115.08652343750006,2.446142578124991],[114.969140625,2.350830078125028],[114.83632812500004,2.269384765625048],[114.78642578125002,2.250488281250014],[114.76835937500007,2.212939453125003],[114.75869140625007,2.162402343750017],[114.78798828125001,2.051611328125006],[114.81582031250005,2.018945312500009],[114.83056640625001,1.980029296874989],[114.81269531250003,1.933789062499983],[114.8,1.893945312500037],[114.75107421875006,1.868994140625006],[114.70351562499998,1.850781250000026],[114.6861328125001,1.819042968750054],[114.66093750000002,1.686279296875],[114.63222656250004,1.61704101562502],[114.56748046875006,1.514160156250014],[114.54589843750003,1.467138671875034],[114.5125,1.452001953124963],[114.387109375,1.500048828124989],[114.27470703125002,1.470898437499997],[114.12597656250003,1.45234375000004],[114,1.455273437500011],[113.90234375000003,1.434277343749997],[113.83525390625002,1.379882812500014],[113.76035156250006,1.311376953125006],[113.68164062500001,1.260595703124963],[113.6222656250001,1.2359375],[113.51318359374997,1.308398437500017],[113.45820312500004,1.302148437499994],[113.35898437500005,1.327148437500028],[113.12626953125,1.408105468749994],[113.06865234375002,1.431787109375023],[113.00654296875003,1.433886718750003],[112.98828124999997,1.457128906250034],[112.99804687500001,1.496240234375009],[112.98828124999997,1.547558593749983],[112.94296875000006,1.566992187500034],[112.47617187500005,1.559082031250028],[112.34160156250002,1.514746093749963],[112.25068359375004,1.479638671875009],[112.1857421875001,1.4390625],[112.16738281250004,1.33818359374996],[112.12861328125003,1.243603515624969],[112.078515625,1.143359374999974],[111.92314453125002,1.113281249999972],[111.80898437500005,1.011669921874969],[111.76972656250004,0.999462890624969],[111.69130859375005,1.014208984375045],[111.60742187500003,1.02260742187498],[111.54667968750006,0.994335937499983],[111.48320312500002,0.995751953125008],[111.28671875000006,1.043212890625],[111.10136718750002,1.050537109374986],[110.99609375000001,1.026367187500028],[110.93808593750006,1.017333984375057],[110.61474609375003,0.878125],[110.50576171875004,0.861962890625023],[110.46142578124997,0.882080078125028],[110.39902343750006,0.9390625],[110.315234375,0.995996093749966],[110.11474609375003,1.190136718749997],[110.04082031250006,1.235742187499966],[109.99169921875003,1.282568359375006],[109.94492187500005,1.338037109375023],[109.87851562500006,1.397851562500037],[109.8180664062501,1.438964843749971],[109.7357421875,1.522949218750028],[109.65400390625004,1.614892578125023],[109.63583984375006,1.776660156250031],[109.57080078124997,1.806298828125023],[109.54892578125005,1.848339843749983],[109.53896484375,1.89619140625004],[109.62890625000003,2.027539062499983],[109.69433593750003,1.888769531250048],[109.71962890625,1.857812500000037],[109.8648437500001,1.764453125000031],[109.98457031250008,1.717626953124991],[110.11406250000006,1.69858398437502],[110.24589843750002,1.694726562500037],[110.29833984374997,1.701171875000014],[110.34921875000012,1.719726562499972],[110.39951171875006,1.699853515625008],[110.67519531249998,1.548046875],[110.78203125000002,1.520849609374963],[110.894921875,1.532470703125014],[110.93994140625003,1.517333984375043],[111.09843750000007,1.400878906250028],[111.14521484375008,1.386962890625043],[111.22324218750012,1.395849609374991],[111.1234375,1.449023437499989],[111.0580078125,1.48666992187502],[111.0287109375,1.557812500000026],[111.04658203125008,1.63364257812502],[111.11015625000007,1.68408203125],[111.15419921875005,1.738769531250043],[111.17001953125006,1.90229492187504],[111.19804687500002,1.985107421875043],[111.25087890625005,2.063867187500009],[111.26816406250012,2.13974609375002],[111.20888671875,2.19765625],[111.19550781250003,2.297167968750017],[111.20859375000012,2.379638671875042],[111.24218749999997,2.435742187500011],[111.29589843749996,2.398779296875034],[111.35136718750007,2.364453125000054],[111.40615234375005,2.36787109375004],[111.44384765625003,2.381542968749983],[111.45078125000005,2.424072265625028],[111.44042968750003,2.498095703125017],[111.44326171875,2.63432617187496],[111.5125,2.743017578124991],[111.62324218750003,2.81796875],[111.72773437500004,2.853808593750002],[112.11884765625004,2.91469726562498],[112.73730468749997,3.070458984374994],[112.92050781250012,3.130712890625019],[112.98789062500006,3.161914062499974],[113.04472656250002,3.205224609375009],[113.1402343750001,3.343505859375028],[113.32011718750007,3.561474609375026],[113.44609375000007,3.740576171875006],[113.7121093750001,4.00141601562504],[113.92392578125006,4.243212890625003],[113.95253906250005,4.288720703125037],[113.98779296875003,4.420703125000017],[113.99042968750004,4.482812499999966],[113.98427734375,4.545800781250008],[114.0125,4.57524414062496],[114.05361328125,4.592871093750006],[114.0638671875,4.592675781249966],[114.09511718750005,4.565234374999974],[114.16884765625005,4.52695312499999],[114.22412109375001,4.47788085937502],[114.26103515625002,4.414257812500025],[114.28759765624997,4.354736328124986],[114.28964843750006,4.304199218749986],[114.3229492187501,4.262792968749991],[114.41660156250006,4.255859375],[114.44707031250006,4.20356445312501],[114.51220703125003,4.113574218749974],[114.57177734374997,4.049072265624972],[114.60830078125004,4.023974609375017],[114.65410156250007,4.037646484375045],[114.725,4.096533203124963],[114.77617187500006,4.168798828125034],[114.81044921875,4.266503906250037],[114.78349609375002,4.280761718750014],[114.83105468749997,4.354492187500028],[114.84023437500005,4.393212890625009],[114.81826171875,4.42875976562496],[114.79013671875005,4.463916015625017],[114.77929687499997,4.553027343749974],[114.75996093750004,4.66650390625],[114.74667968750006,4.718066406250017],[114.78417968749997,4.754833984375054],[114.86455078125,4.801757812500014],[114.94472656249998,4.85625],[115.02675781250004,4.899707031249989],[115.02880859375003,4.821142578124963],[115.02675781250004,4.691357421874997],[115.05156250000002,4.582666015624966],[115.10703125000005,4.390429687499974],[115.17060546875003,4.364208984375054],[115.24667968750005,4.34721679687496],[115.290625,4.352587890624989],[115.31923828125001,4.365283203125002],[115.32675781250008,4.380761718750051],[115.27929687499997,4.456347656249989],[115.26669921875006,4.633984375000025],[115.22792968749998,4.750585937499977],[115.16845703125003,4.866699218750014],[115.1400390625,4.899755859374991],[115.37490234375,4.932763671874966],[115.42763671875,4.969189453125025],[115.51982421875,5.048925781250005],[115.55449218750007,5.093554687500045],[115.58203125000001,5.194140625000017],[115.46689453125006,5.254101562499983],[115.42167968750002,5.330517578124997],[115.4190429687501,5.413183593749963],[115.5564453125,5.566699218749974],[115.60390625,5.603417968749994],[115.62451171874997,5.548876953124988],[115.68505859375001,5.535107421875026],[115.74082031250012,5.533007812500045],[115.796875,5.536132812499972],[115.8771484375001,5.613525390625014],[115.91845703124996,5.724951171874977],[116.05976562500011,5.882373046874989],[116.11005859375004,6.003271484375019],[116.1383789062501,6.12954101562498],[116.49472656250006,6.521679687500025],[116.53828125000004,6.582714843750026],[116.74980468750007,6.977099609374989],[116.77617187500002,6.990234375],[116.83300781249996,6.952050781250037],[116.8498046875001,6.826708984374989],[116.84199218750011,6.772070312499963],[116.80771484375006,6.691064453124979]]],[[[117.14160156250003,7.168212890625028],[117.08066406250006,7.115283203124988],[117.06015625000006,7.178857421874966],[117.06425781250007,7.26069335937504],[117.146875,7.337011718750034],[117.2640625,7.351660156250006],[117.28076171874997,7.290625],[117.26679687500004,7.220800781249991],[117.23935546875005,7.184765625000026],[117.14160156250003,7.168212890625028]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mongolia","sov_a3":"MNG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mongolia","adm0_a3":"MNG","geou_dif":0,"geounit":"Mongolia","gu_a3":"MNG","su_dif":0,"subunit":"Mongolia","su_a3":"MNG","brk_diff":0,"name":"Mongolia","name_long":"Mongolia","brk_a3":"MNG","brk_name":"Mongolia","brk_group":null,"abbrev":"Mong.","postal":"MN","formal_en":"Mongolia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mongolia","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":5,"mapcolor13":6,"pop_est":3041142,"gdp_md_est":9476,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MN","iso_a3":"MNG","iso_n3":"496","un_a3":"496","wb_a2":"MN","wb_a3":"MNG","woe_id":-99,"adm0_a3_is":"MNG","adm0_a3_us":"MNG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"MNG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[116.68330078125001,49.823779296874996],[116.58974609375001,49.684814453125],[116.40214843749997,49.406201171875],[116.24335937500001,49.170361328125],[116.15966796874999,49.03745117187499],[116.09824218750003,48.9361328125],[116.034375,48.8400390625],[116.02548828125003,48.782275390624996],[115.95380859375,48.68935546874999],[115.82050781250001,48.57724609375],[115.79169921875,48.455712890624994],[115.79658203125001,48.346337890624994],[115.78554687500002,48.24824218749999],[115.63945312499997,48.18623046874999],[115.52509765625003,48.130859375],[115.55761718749999,47.94501953125],[115.61640625000001,47.874804687499996],[115.71171874999999,47.79892578125],[115.81171875,47.738232421875],[115.89824218749999,47.686914062499994],[115.99384765625001,47.71132812499999],[116.07480468750003,47.78955078125],[116.23115234375001,47.85820312499999],[116.31718749999997,47.85986328125],[116.37822265624997,47.844042968749996],[116.51347656249997,47.83955078124999],[116.65195312500003,47.864501953125],[116.76054687499999,47.869775390624994],[116.90117187499999,47.853076171874996],[116.95166015624999,47.836572265624994],[117.06972656250002,47.80639648437499],[117.19707031249997,47.740283203124996],[117.28593749999999,47.666357421875],[117.35078125,47.652197265625],[117.38398437500001,47.675732421875],[117.455078125,47.741357421874994],[117.55537109375001,47.8046875],[117.67666015625002,47.90830078125],[117.76835937499999,47.98789062499999],[117.84042968750003,47.99985351562499],[117.97919921875,47.999609375],[118.04189453125002,48.018945312499994],[118.14707031250002,48.02890625],[118.23964843750004,47.99951171874999],[118.49843750000002,47.98398437499999],[118.56777343750002,47.943261718749994],[118.69052734375003,47.82226562499999],[118.7599609375,47.757617187499996],[118.88027343750002,47.72509765625],[118.953125,47.702929687499996],[119.01757812499999,47.685351562499996],[119.08193359375002,47.654150390625],[119.09726562500003,47.616259765624996],[119.12294921875002,47.558496093749994],[119.16240234374999,47.525195312499996],[119.23525390625002,47.49257812499999],[119.2908203125,47.47265625],[119.30859375,47.430712890624996],[119.32597656249999,47.41015625],[119.37666015625001,47.380859375],[119.52695312500002,47.255908203124996],[119.60019531250002,47.222460937499996],[119.7111328125,47.15],[119.75722656250002,47.0900390625],[119.75986328125003,47.02700195312499],[119.78847656250004,46.978808593749996],[119.86269531250002,46.906591796875],[119.89785156250002,46.8578125],[119.88417968750002,46.791455078125],[119.89589843750001,46.73286132812499],[119.8671875,46.672167968749996],[119.74746093750002,46.627197265625],[119.70664062500003,46.60600585937499],[119.62021484375003,46.603955078125],[119.47402343750002,46.62666015625],[119.33183593749997,46.613818359374996],[119.162109375,46.638671875],[119.02851562500001,46.6921875],[118.95712890625002,46.73486328125],[118.84394531250001,46.760205078125],[118.79033203124999,46.7470703125],[118.72294921874997,46.69189453125],[118.64873046874999,46.70166015625],[118.58046875000002,46.69189453125],[118.40439453125003,46.703173828124996],[118.30869140625003,46.717041015625],[118.15683593750002,46.67856445312499],[118.0712890625,46.66660156249999],[117.91044921874999,46.6193359375],[117.8134765625,46.5376953125],[117.7412109375,46.5181640625],[117.67109375000001,46.5220703125],[117.62050781250002,46.552001953125],[117.546875,46.58828125],[117.43808593750002,46.58623046874999],[117.40556640624997,46.5708984375],[117.39218750000003,46.53759765625],[117.35634765625001,46.436669921874994],[117.35693359375,46.39130859375],[117.33339843750004,46.36201171875],[117.26904296875,46.35224609375],[117.15595703125,46.355078125],[116.97880859374999,46.361767578125],[116.85908203125001,46.38793945312499],[116.78701171875001,46.37666015625],[116.68886718750002,46.32197265625],[116.6193359375,46.3130859375],[116.56259765625005,46.289794921875],[116.51669921875003,46.20908203125],[116.44482421875,46.1587890625],[116.35761718750001,46.096582031249994],[116.26455078125002,45.963037109374994],[116.21298828125003,45.8869140625],[116.22910156250002,45.845751953124996],[116.240625,45.79599609374999],[116.19765625,45.73935546875],[116.10986328125,45.68671875],[116.03955078124999,45.676953125],[115.93417968750002,45.626171875],[115.78916015625002,45.534814453124994],[115.68105468750002,45.458251953125],[115.539453125,45.439501953124996],[115.43945312499999,45.419970703124996],[115.21748046875001,45.39619140625],[115.16259765625,45.390234375],[114.91923828124997,45.378271484375],[114.73876953124999,45.41962890625],[114.64433593749997,45.41328125],[114.56015625000003,45.389990234375],[114.51718750000003,45.364599609375],[114.50224609374997,45.316308593749994],[114.4873046875,45.27172851562499],[114.41914062500001,45.202587890625],[114.28105468749997,45.110888671874996],[114.16738281250002,45.049853515624996],[114.0802734375,44.97114257812499],[114.03027343749999,44.94257812499999],[113.93085937500001,44.91230468749999],[113.87705078125003,44.89619140625],[113.75214843750001,44.825927734375],[113.65263671874999,44.763476562499996],[113.58701171875003,44.745703125],[113.50791015625003,44.762353515624994],[113.45566406250003,44.767431640625],[113.3009765625,44.791650390624994],[113.19609374999999,44.794824218749994],[113.04941406250003,44.810351562499996],[112.70673828125001,44.883447265624994],[112.59677734375003,44.91767578125],[112.49931640624999,45.0109375],[112.41132812500001,45.05820312499999],[112.29208984375003,45.063037109374996],[112.11289062500003,45.062939453125],[112.03261718750001,45.081640625],[111.89804687500002,45.0640625],[111.75107421875003,44.96953125],[111.68144531249997,44.899169921875],[111.62128906250001,44.8271484375],[111.54746093750003,44.672900390624996],[111.51474609375002,44.56982421874999],[111.48945312500001,44.511572265625],[111.41093749999997,44.419189453125],[111.40224609375002,44.36728515625],[111.42958984375002,44.32236328125],[111.48623046875002,44.271630859374994],[111.51972656250001,44.19189453125],[111.60263671875003,44.10712890625],[111.6837890625,44.04111328125],[111.8369140625,43.93466796875],[111.88027343750002,43.87890625],[111.93173828125003,43.81494140625],[111.94287109375,43.75244140624999],[111.93320312500003,43.71142578125],[111.878125,43.68017578124999],[111.77109375000003,43.664599609374996],[111.7197265625,43.621142578124996],[111.6408203125,43.56318359374999],[111.54736328125,43.4962890625],[111.50351562500002,43.4927734375],[111.45107421875002,43.474902343749996],[111.18681640624997,43.391992187499994],[111.08652343750003,43.36875],[111.00722656250002,43.34140625],[110.91328125000001,43.256884765624996],[110.83955078125,43.194091796875],[110.74853515624999,43.11079101562499],[110.70859375000002,43.073876953124994],[110.62753906250002,42.990527343749996],[110.52089843750002,42.895263671875],[110.46171874999997,42.84414062499999],[110.42958984375002,42.81357421875],[110.40039062499999,42.773681640625],[110.28886718749999,42.742724609374996],[110.196875,42.710009765624996],[110.05800781250002,42.660595703125],[109.85878906250002,42.60625],[109.69804687499999,42.55380859375],[109.59550781249999,42.510546875],[109.44316406249999,42.455957031249994],[109.33984375,42.438378906249994],[109.13164062499999,42.440576171874994],[108.87451171875,42.42646484375],[108.68730468749997,42.41611328125],[108.54648437500003,42.429296875],[108.333984375,42.43676757812499],[108.17119140624999,42.44731445312499],[108.06230468749997,42.427197265625],[107.80595703124999,42.405859375],[107.74873046875001,42.4009765625],[107.29238281250002,42.349267578124994],[107.09072265625001,42.321533203125],[106.90605468749999,42.30888671874999],[106.77001953124999,42.288720703124994],[106.69316406249997,42.263574218749994],[106.5791015625,42.22734375],[106.51875,42.211572265624994],[106.31718749999999,42.140576171875],[105.86757812500002,41.993994140625],[105.56640624999999,41.87509765625],[105.51708984374999,41.85473632812499],[105.31435546875002,41.770898437499994],[105.19707031249997,41.738037109375],[105.1154296875,41.66328125],[105.05058593749999,41.61591796875],[104.98203125000003,41.595507812499996],[104.86035156249999,41.64375],[104.7736328125,41.641162109374996],[104.49824218750001,41.65869140625],[104.49824218750001,41.877001953124996],[104.30517578125,41.846142578125],[103.99726562500001,41.79697265625],[103.71113281250001,41.751318359375],[103.44970703125,41.85585937499999],[103.24785156249999,41.936572265624996],[103.07285156250003,42.00595703125],[102.80683593750001,42.052001953125],[102.5751953125,42.092089843749996],[102.156640625,42.158105468749994],[101.97294921874999,42.21586914062499],[101.8798828125,42.29233398437499],[101.71386718749999,42.4658203125],[101.65996093749999,42.500048828124996],[101.5791015625,42.52353515625],[101.49531250000001,42.53876953125],[101.31376953124999,42.53789062499999],[101.09199218750001,42.551318359374996],[100.77255859375003,42.587792968749994],[100.51904296875,42.616796875],[100.08632812500002,42.67075195312499],[99.98378906250002,42.67734375],[99.75742187500003,42.629443359374996],[99.46787109375003,42.56821289062499],[98.946875,42.6162109375],[98.71630859375,42.638720703124996],[98.24824218750001,42.684521484375],[97.71894531250001,42.73627929687499],[97.20566406250002,42.789794921875],[96.8330078125,42.76025390624999],[96.62529296874999,42.74384765625],[96.38544921875001,42.720361328124994],[96.35234374999999,42.74677734375],[96.34248046875001,42.84931640625],[96.29951171875001,42.9287109375],[96.16845703125,43.014501953125],[96.08027343750001,43.096142578125],[95.9125,43.206494140625],[95.8595703125,43.2759765625],[95.84199218750001,43.383691406249994],[95.68730468749999,43.6640625],[95.59121093750002,43.85361328125],[95.56718749999999,43.892236328124994],[95.5255859375,43.95395507812499],[95.47128906250003,43.986181640625],[95.3564453125,44.00595703125],[95.32558593750002,44.039355468749996],[95.32558593750002,44.104882812499994],[95.34365234375002,44.19541015625],[95.36679687500003,44.26152343749999],[95.35029296875001,44.278076171875],[95.04980468749999,44.25942382812499],[94.86601562499999,44.3033203125],[94.71201171875003,44.350830078125],[94.49433593750001,44.472509765625],[94.36474609375,44.519482421875],[94.19931640625003,44.645166015624994],[93.95791015625002,44.674951171874994],[93.8681640625,44.72421875],[93.75527343750002,44.83193359374999],[93.65644531250001,44.9009765625],[93.51621093750003,44.944482421874994],[93.29433593750002,44.98315429687499],[92.91601562499999,45.020166015624994],[92.78789062499999,45.0357421875],[92.57890624999999,45.01098632812499],[92.423828125,45.008935546874994],[92.17265624999999,45.03525390624999],[92.02978515625,45.068505859374994],[91.85283203124999,45.0693359375],[91.73779296874999,45.0689453125],[91.584375,45.07651367187499],[91.51005859374999,45.0982421875],[91.44101562500003,45.12475585937499],[91.31210937500003,45.118115234375],[91.22177734375003,45.14453125],[91.1376953125,45.1939453125],[91.05,45.21743164062499],[90.95361328125,45.21591796875],[90.91396484375002,45.1939453125],[90.87724609374999,45.19609375],[90.85322265625001,45.26289062499999],[90.76318359375,45.370654296874996],[90.74960937500003,45.4189453125],[90.69443359375002,45.474658203124996],[90.66181640625,45.525244140625],[90.67070312499999,45.595166015625],[90.70966796875001,45.73081054687499],[90.7958984375,45.853515625],[90.85244140625002,45.885400390624994],[90.88710937500002,45.921630859375],[90.95976562499997,45.98505859375],[91.00175781249999,46.035791015624994],[90.99677734375001,46.10498046874999],[90.94755859374999,46.177294921874996],[90.91152343750002,46.270654296874994],[90.91826171874997,46.324267578124996],[90.97148437499999,46.387988281249996],[91.03388671875,46.52900390625],[91.02890625000003,46.566064453124994],[91.00429687500002,46.59575195312499],[90.99785156249997,46.661083984375],[90.98574218750002,46.7490234375],[90.91054687500002,46.88325195312499],[90.86992187499999,46.954492187499994],[90.79902343750001,46.98515625],[90.71552734375001,47.003857421875],[90.64335937499997,47.10029296874999],[90.55292968750001,47.214013671874994],[90.49619140625003,47.28515625],[90.47646484375002,47.32880859375],[90.46748046875001,47.408154296875],[90.42519531250001,47.50410156249999],[90.38066406249999,47.55664062499999],[90.34746093749997,47.596972656249996],[90.33066406250003,47.655175781249994],[90.31328124999999,47.67617187499999],[90.19101562500003,47.70209960937499],[90.10322265625001,47.745410156249996],[90.06660156250001,47.80356445312499],[90.05390625000001,47.850488281249994],[90.02792968750003,47.877685546875],[89.95869140625001,47.886328125],[89.91044921874999,47.8443359375],[89.83134765624999,47.82329101562499],[89.778125,47.827001953125],[89.7255859375,47.852490234375],[89.69316406249999,47.879150390625],[89.63847656249999,47.909082031249994],[89.56093750000002,48.003955078124996],[89.47919921875001,48.029052734375],[89.32988281249997,48.02485351562499],[89.1962890625,47.980908203125],[89.115625,47.987695312499994],[89.04765624999999,48.0025390625],[88.97109375000002,48.049951171874994],[88.91777343749999,48.089013671874994],[88.83828125000002,48.101708984374994],[88.68183593750001,48.170556640624994],[88.57597656249999,48.220166015625],[88.56679687500002,48.317431640624996],[88.51708984375,48.38447265625],[88.41396484375001,48.40341796875],[88.30996093750002,48.472070312499994],[88.158203125,48.509082031249996],[88.06259765625003,48.537841796875],[87.97968750000001,48.55512695312499],[87.96738281250003,48.5810546875],[87.97226562500002,48.603320312499996],[88.01064453125002,48.640429687499996],[88.05019531250002,48.675048828125],[88.06005859375,48.707177734374994],[88.02792968750002,48.735595703125],[87.94218749999999,48.765283203124994],[87.83183593749999,48.791650390624994],[87.80917968750003,48.835742187499996],[87.7431640625,48.881640625],[87.75468749999999,48.9185546875],[87.80683593750001,48.94550781249999],[87.85986328125,48.96552734375],[87.87216796875002,49.000146484374994],[87.83466796875,49.03193359375],[87.81630859375002,49.0802734375],[87.8251953125,49.11630859375],[87.81425781249999,49.1623046875],[87.81826171875002,49.162109375],[87.934765625,49.16455078125],[87.98808593749999,49.186914062499994],[88.028515625,49.219775390624996],[88.11572265625,49.25629882812499],[88.13427734375,49.2984375],[88.13554687499999,49.381494140624994],[88.19257812500001,49.451708984374996],[88.33779296875002,49.472558593749994],[88.39335937499997,49.48286132812499],[88.45244140624999,49.472705078124996],[88.54433593750001,49.482568359374994],[88.633203125,49.486132812499996],[88.68271484375003,49.46455078125],[88.74785156249997,49.446240234375],[88.83164062500003,49.4484375],[88.8603515625,49.48154296875],[88.86386718750003,49.527636718749996],[88.90019531249999,49.539697265624994],[88.94541015625002,49.507666015625],[88.97060546875002,49.483740234375],[89.00839843750003,49.472802734374994],[89.10947265625003,49.501367187499994],[89.17998046874999,49.5322265625],[89.20292968749999,49.595703125],[89.24394531249997,49.62705078125],[89.29921875000002,49.611132812499996],[89.39560546875003,49.6115234375],[89.475,49.66054687499999],[89.57919921875003,49.69970703125],[89.65410156249999,49.71748046874999],[89.66953125000003,49.75048828125],[89.63427734375,49.823291015624996],[89.64384765624999,49.90302734375],[89.74423828125003,49.948095703125],[89.87802734375003,49.95351562499999],[89.97734374999999,49.984326171875],[90.00498046875003,50.069287109375],[90.05371093749999,50.09375],[90.1037109375,50.10332031249999],[90.22451171875002,50.11669921874999],[90.31132812499999,50.151171875],[90.36484375000003,50.166894531249994],[90.51689453124999,50.213330078125],[90.65507812499999,50.22236328124999],[90.71435546875,50.259423828124994],[90.7607421875,50.305957031249996],[90.83808593750001,50.32373046875],[90.91718750000001,50.364160156249994],[91.02158203125003,50.41547851562499],[91.06279296874999,50.422607421875],[91.23378906250002,50.452392578125],[91.30058593749999,50.46337890624999],[91.3408203125,50.47006835937499],[91.41503906249999,50.468017578125],[91.44648437500001,50.52216796875],[91.52167968750001,50.56201171875],[91.596875,50.575537109375],[91.63417968750002,50.615136718749994],[91.70634765624999,50.66552734375],[91.80429687500002,50.693603515625],[91.95654296875,50.697607421875],[92.10400390625,50.6919921875],[92.19238281249999,50.700585937499994],[92.26533203125001,50.77519531249999],[92.27900390625001,50.81220703124999],[92.29580078125002,50.8498046875],[92.35478515624999,50.864160156249994],[92.42636718750003,50.80307617187499],[92.48642578125002,50.765087890625],[92.57890624999999,50.725439453125],[92.62666015625001,50.68828125],[92.68134765625001,50.683203125],[92.73867187500002,50.7109375],[92.77929687499999,50.778662109375],[92.8564453125,50.789111328124996],[92.94130859375002,50.778222656249994],[92.96357421875001,50.74492187499999],[92.970703125,50.7125],[93.00986328125003,50.654541015625],[93.103125,50.60390625],[93.22255859375002,50.60654296875],[93.27050781249999,50.61557617187499],[93.38681640625003,50.60849609375],[93.50107421875002,50.597460937499996],[93.62558593750003,50.585546875],[93.66201171875002,50.58369140625],[93.79541015625,50.57763671875],[93.98984375000003,50.56884765625],[94.07578125000003,50.5728515625],[94.25107421875003,50.55639648437499],[94.28701171875002,50.511376953124994],[94.3193359375,50.40488281249999],[94.346875,50.30341796874999],[94.35468750000001,50.221826171874994],[94.40019531249999,50.179638671875],[94.45849609375,50.16572265625],[94.496875,50.1328125],[94.56464843750001,50.087939453124996],[94.61474609375,50.023730468749996],[94.67548828125001,50.028076171875],[94.71806640624999,50.043261718749996],[94.81123046875001,50.048193359375],[94.93027343750003,50.04375],[95.01289062500001,50.008251953125],[95.04433593750001,49.961572265624994],[95.11142578125003,49.935449218749994],[95.16621093750001,49.94384765625],[95.32949218750002,49.944140625],[95.38564453125002,49.94121093749999],[95.441796875,49.91552734374999],[95.52265625,49.91123046875],[95.56718749999999,49.94384765625],[95.70781249999999,49.966015625],[95.78935546874999,50.0125],[95.85195312500002,50.012939453125],[95.8994140625,49.99057617187499],[95.93574218750001,49.960009765624996],[95.98955078124999,49.973583984375],[96.0185546875,49.998779296875],[96.06552734375003,49.99873046875],[96.11171875000002,49.982470703124996],[96.22968750000001,49.9541015625],[96.31503906250003,49.901123046875],[96.38115234374999,49.896044921874996],[96.46640625000002,49.911523437499994],[96.50576171875001,49.91870117187499],[96.54326171874999,49.892529296875],[96.59843749999999,49.87841796875],[96.64023437500003,49.89785156249999],[96.71171874999999,49.911572265625],[96.98574218750001,49.8828125],[97.04912109374999,49.82988281249999],[97.09765624999999,49.805029296875],[97.13691406250001,49.76171875],[97.20859375000003,49.730810546875],[97.35976562500002,49.74145507812499],[97.418359375,49.773046875],[97.54082031249997,49.843115234375],[97.58935546875,49.911474609375],[97.65097656250002,49.93359375],[97.720703125,49.944628906249996],[97.785546875,49.94453125],[97.85390625,49.94677734375],[97.93662109375003,49.99677734375],[98.00390625,50.0142578125],[98.10341796875002,50.07783203125],[98.12197265625002,50.106591796874994],[98.1701171875,50.180566406249994],[98.2,50.22768554687499],[98.25029296874999,50.30244140625],[98.27734375,50.422998046874994],[98.29267578125001,50.48696289062499],[98.27949218750001,50.533251953124996],[98.22050781249999,50.557177734374996],[98.14501953125,50.5685546875],[98.07890624999999,50.603808593749996],[98.02978515625,50.64462890625],[98.00117187500001,50.702050781249994],[97.9619140625,50.769140625],[97.96416015624999,50.817675781249996],[97.953125,50.85517578124999],[97.91982421875002,50.887158203125],[97.85615234375001,50.943359375],[97.82529296875003,50.985253906249994],[97.83574218749999,51.051660156249994],[97.91083984375,51.165185546874994],[97.91787109375002,51.21787109375],[97.92734375000003,51.250732421875],[97.92324218750002,51.28046875],[97.946875,51.34843749999999],[97.98916015625001,51.37705078125],[98.03759765624999,51.44995117187499],[98.103125,51.483544921874994],[98.18466796875003,51.485742187499994],[98.21992187500001,51.50561523437499],[98.2375,51.578417968749996],[98.27685546875,51.63457031249999],[98.303125,51.674267578125],[98.352734375,51.717626953125],[98.64052734375002,51.801171875],[98.76015625000002,51.905078125],[98.80253906249999,51.957470703125],[98.8486328125,52.07006835937499],[98.89316406250003,52.11728515624999],[98.95810546875002,52.101708984375],[99.03427734375002,52.035400390625],[99.09140625000003,52.03486328125],[99.17617187500002,51.99887695312499],[99.40703124999999,51.92353515625],[99.53232421875003,51.89990234374999],[99.61289062500003,51.892529296875],[99.71923828125,51.871630859374996],[99.78789062499999,51.8275390625],[99.92167968749999,51.755517578125],[100.03457031250002,51.73710937499999],[100.23037109375002,51.729833984375],[100.46894531250001,51.72607421875],[100.53623046875003,51.71347656249999],[100.71074218749999,51.661572265625],[100.90361328124999,51.60424804687499],[101.08535156250002,51.553027343749996],[101.22324218750003,51.51328125],[101.30449218749997,51.474755859374994],[101.38125,51.45263671875],[101.46435546875,51.471484375],[101.57089843750003,51.46718749999999],[101.82119140625001,51.42104492187499],[101.97919921875001,51.382226562499994],[102.11152343750001,51.353466796875],[102.15566406250002,51.313769531249996],[102.16005859375001,51.26083984375],[102.14238281249999,51.216064453125],[102.15195312500003,51.10751953125],[102.19453125,51.05068359374999],[102.21025390624999,50.97431640625],[102.22617187500003,50.90146484375],[102.2150390625,50.82944335937499],[102.23505859375001,50.7912109375],[102.27656250000001,50.768701171874994],[102.31660156250001,50.71845703124999],[102.30332031250003,50.66552734375],[102.28574218750003,50.634667968749994],[102.28837890624999,50.585107421874994],[102.33642578125,50.544238281249996],[102.40683593750002,50.536181640624996],[102.46943359375,50.525683593749996],[102.54628906250001,50.46132812499999],[102.68330078125001,50.387158203125],[102.76542968749999,50.366552734375],[102.85966796874997,50.333251953125],[103.03945312500002,50.30063476562499],[103.16171875000003,50.29072265624999],[103.23378906250002,50.2642578125],[103.30439453125,50.20029296875],[103.42119140624999,50.187060546874996],[103.49628906250001,50.16494140624999],[103.63291015625002,50.138574218749994],[103.72324218750003,50.153857421874996],[103.80263671875002,50.176074218749996],[103.85615234375,50.171826171875],[103.95849609375,50.157275390624996],[104.07871093750003,50.154248046875],[104.1796875,50.16943359375],[104.2599609375,50.214453125],[104.35390625000002,50.275292968749994],[104.46630859375,50.30615234375],[104.59638671875001,50.31718749999999],[104.68535156249999,50.34184570312499],[104.97695312500002,50.38291015625],[105.0947265625,50.389941406249996],[105.1859375,50.429589843749994],[105.26669921875003,50.460498046874996],[105.38359374999999,50.47373046875],[105.54160156250003,50.441259765625],[105.692578125,50.41416015625],[105.87519531250001,50.40537109375],[105.99648437500002,50.36791992187499],[106.08251953125,50.332568359374996],[106.21787109375003,50.304589843749994],[106.36845703124999,50.317578125],[106.57441406250001,50.32880859374999],[106.71113281250001,50.31259765624999],[106.85371093750001,50.248291015625],[106.94130859375001,50.19667968749999],[107.04023437500001,50.086474609374996],[107.14306640625,50.033007812499996],[107.23330078125002,49.989404296874994],[107.34707031250002,49.98666992187499],[107.63095703125003,49.98310546875],[107.78681640625,49.960009765624996],[107.91660156250003,49.947802734374996],[107.94785156250003,49.924707031249994],[107.93486328124999,49.849023437499994],[107.93876953124999,49.74072265625],[107.93671875000001,49.691015625],[107.96542968750003,49.653515625],[108.00957031249999,49.646875],[108.03378906250003,49.593994140625],[108.09804687500002,49.562646484374994],[108.21308593750001,49.524804687499994],[108.40693359375,49.396386718749994],[108.52246093749999,49.34150390625],[108.61367187500002,49.322802734374996],[108.73300781250003,49.33564453125],[108.91992187499999,49.335351562499994],[109.23671875000002,49.334912109375],[109.45371093750003,49.296337890625],[109.52871093750002,49.269873046875],[109.75039062500002,49.239306640624996],[109.99453125000002,49.205615234374996],[110.19990234375001,49.17041015625],[110.32138671875003,49.215869140624996],[110.42783203125003,49.21997070312499],[110.52958984374999,49.187060546874996],[110.63105468750001,49.137597656249994],[110.70976562499997,49.14296875],[110.82792968749999,49.166162109374994],[111.20419921875003,49.304296875],[111.33662109375001,49.35585937499999],[111.42929687500003,49.34262695312499],[111.51191406250001,49.3609375],[111.57480468750003,49.37641601562499],[111.73554687500001,49.397753906249996],[111.83339843750002,49.403613281249996],[111.93447265625002,49.416015625],[112.07968750000003,49.42421875],[112.37519531250001,49.514599609375],[112.49492187499999,49.53232421875],[112.69736328125003,49.507275390625],[112.80644531249999,49.523583984374994],[112.91484374999999,49.569238281249994],[113.05556640625002,49.616259765624996],[113.09208984374999,49.692529296874994],[113.16416015625003,49.797167968749996],[113.31904296875001,49.874316406249996],[113.4455078125,49.94160156249999],[113.57421875,50.00703125],[113.732421875,50.0615234375],[113.88115234374999,50.101123046874996],[114.07070312500002,50.20473632812499],[114.22177734375003,50.25727539062499],[114.29707031250001,50.2744140625],[114.38632812500002,50.25546875],[114.55400390624999,50.24145507812499],[114.67490234375003,50.245703125],[114.74316406249999,50.233691406249996],[114.87958984375001,50.183056640625],[115.00332031250002,50.138574218749994],[115.09804687500002,50.059423828125],[115.27451171875002,49.948876953124994],[115.36503906249999,49.911767578124994],[115.42919921875001,49.89648437499999],[115.58798828125003,49.886035156249996],[115.7177734375,49.88061523437499],[115.79521484374999,49.905908203124994],[115.92597656250001,49.95214843749999],[116.13457031249999,50.010791015624996],[116.216796875,50.00927734375],[116.35117187500005,49.978076171874996],[116.55117187500004,49.9203125],[116.63154296875,49.87705078125],[116.68330078125001,49.823779296874996]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Oman","sov_a3":"OMN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Oman","adm0_a3":"OMN","geou_dif":0,"geounit":"Oman","gu_a3":"OMN","su_dif":0,"subunit":"Oman","su_a3":"OMN","brk_diff":0,"name":"Oman","name_long":"Oman","brk_a3":"OMN","brk_name":"Oman","brk_group":null,"abbrev":"Oman","postal":"OM","formal_en":"Sultanate of Oman","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Oman","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":3418085,"gdp_md_est":66980,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"OM","iso_a3":"OMN","iso_n3":"512","un_a3":"512","wb_a2":"OM","wb_a3":"OMN","woe_id":-99,"adm0_a3_is":"OMN","adm0_a3_us":"OMN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"OMN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[58.722070312499994,20.21875],[58.65908203125005,20.20361328125003],[58.640917968750074,20.210693359375053],[58.641210937500055,20.33735351562501],[58.78798828124999,20.49658203125003],[58.884375,20.680566406250023],[58.95078125000006,20.516162109375017],[58.83515625000004,20.423925781250063],[58.77226562500002,20.26684570312503],[58.722070312499994,20.21875]]],[[[56.38798828125002,24.97919921875004],[56.48984375000006,24.716357421875045],[56.640625,24.4703125],[56.7741210937501,24.334570312499977],[56.9125,24.15019531249999],[57.12304687500003,23.980712890624996],[57.219824218750006,23.922753906250023],[57.61132812500002,23.80366210937501],[57.825097656250044,23.759130859374977],[58.12041015625007,23.71655273437503],[58.32451171875001,23.623828125000045],[58.393164062500055,23.618164062500057],[58.5,23.64565429687505],[58.57802734375005,23.64345703125005],[58.773046875,23.517187499999977],[58.83037109375001,23.39746093750003],[58.911523437500044,23.33417968750001],[58.98339843750002,23.234716796875006],[59.029882812500006,23.13056640625001],[59.194726562499994,22.971875],[59.31093750000005,22.793359374999966],[59.42939453125003,22.660839843749955],[59.53515624999997,22.57851562499999],[59.69560546875001,22.546142578125057],[59.82324218749997,22.50898437500004],[59.8375,22.42055664062505],[59.82441406250004,22.30517578124997],[59.8,22.21992187500001],[59.6808593750001,22.05380859375003],[59.65253906250004,21.95136718750001],[59.51757812499997,21.78232421875003],[59.37148437500005,21.498828125000017],[59.304492187500074,21.435351562500042],[59.06875,21.2890625],[58.89570312500004,21.11279296874997],[58.69042968750003,20.80712890624997],[58.534179687499964,20.50390625],[58.47421875000006,20.406884765624966],[58.348730468750055,20.386914062499983],[58.26601562499999,20.39545898437504],[58.20898437500002,20.423974609374994],[58.2316406250001,20.5068359375],[58.245019531249994,20.599218749999974],[58.16943359375002,20.58950195312505],[58.10292968749999,20.570361328125042],[57.94716796875005,20.343603515625034],[57.861816406249964,20.24414062500003],[57.84365234374999,20.117724609375017],[57.80214843749999,19.95458984375],[57.74121093750003,19.80449218749999],[57.71416015625001,19.678417968749983],[57.71513671875002,19.60693359374997],[57.760839843750006,19.432226562500006],[57.76396484375002,19.253320312499966],[57.790332031250074,19.14594726562504],[57.811621093750055,19.01708984374997],[57.73847656250009,18.977343750000045],[57.67578125000003,18.957861328124977],[57.42792968750004,18.94379882812495],[57.17656250000007,18.902587890625],[56.95722656250009,18.827832031249955],[56.82597656250007,18.753515625],[56.65507812500007,18.58735351562501],[56.55078124999997,18.165966796874955],[56.3834960937501,17.98798828125001],[56.27031250000002,17.950781249999977],[55.99765625000006,17.935205078125023],[55.613867187500055,17.886083984375034],[55.479101562500006,17.84326171875003],[55.25537109375002,17.58564453125004],[55.238183593749994,17.504736328124977],[55.28144531250009,17.446240234374955],[55.29560546875003,17.38159179687503],[55.275195312500074,17.320898437500006],[55.173730468749994,17.15761718750005],[55.06416015625004,17.038916015625034],[54.771875,16.96464843749999],[54.664648437500006,17.008886718750034],[54.566503906250006,17.03125],[54.37695312500002,17.03364257812501],[54.06816406250002,17.005517578124966],[53.95439453125002,16.917822265625034],[53.77539062499997,16.855712890625],[53.60986328124997,16.759960937500036],[53.297753906249994,16.72333984375004],[53.08564453125004,16.648388671874955],[53.025,16.780224609374983],[52.96435546875003,16.91206054687504],[52.903710937499994,17.043847656249966],[52.84296875000003,17.175683593749994],[52.80058593750001,17.267919921875063],[52.72919921875003,17.300390625],[52.68593750000005,17.39794921874997],[52.641699218750006,17.49785156249999],[52.59736328125003,17.597753906250006],[52.553125,17.697607421875006],[52.50888671875006,17.79750976562502],[52.46455078125003,17.897412109374955],[52.4203125,17.997314453125057],[52.37607421875006,18.09716796874997],[52.33173828125009,18.197070312500074],[52.2875,18.296923828124985],[52.243261718750006,18.396826171875006],[52.199023437500074,18.496679687500006],[52.1546875,18.596582031250023],[52.11044921875006,18.69648437500004],[52.06621093750002,18.796386718750057],[52.021875,18.896289062500045],[51.977636718750006,18.996142578125074],[52.118554687499994,19.043164062499955],[52.290625,19.100488281249994],[52.46269531250001,19.157812500000034],[52.634667968749994,19.21513671874999],[52.80673828125006,19.272460937500057],[52.9787109375001,19.32978515625001],[53.15078125,19.387158203124955],[53.32285156250006,19.444482421874994],[53.4948242187501,19.50180664062506],[53.66689453125005,19.559130859375017],[53.83886718750003,19.616503906250045],[54.01093750000003,19.673828125],[54.183007812500044,19.731152343749955],[54.35498046874997,19.788476562500023],[54.52705078125004,19.845800781250063],[54.69902343750002,19.903125],[54.87109374999997,19.960498046875074],[54.97734375000002,19.995947265625006],[55.02148437499997,20.129248046874977],[55.058203125,20.239941406249983],[55.094726562499964,20.350634765625045],[55.131445312500006,20.46132812500005],[55.168066406250006,20.572021484375025],[55.20458984374997,20.682714843750034],[55.24121093749997,20.79340820312501],[55.277929687500006,20.904101562500017],[55.31445312499997,21.014794921874994],[55.35107421874997,21.12553710937499],[55.38769531249997,21.236230468749994],[55.42431640624997,21.34692382812497],[55.46093749999997,21.457617187499977],[55.49755859374997,21.568310546874955],[55.53417968749997,21.679003906250045],[55.57080078124997,21.78969726562505],[55.60742187499997,21.90039062500003],[55.64101562499999,22.001855468749994],[55.57773437500006,22.099511718749994],[55.49277343750006,22.230664062499983],[55.40380859374997,22.36782226562505],[55.32011718750007,22.496923828125063],[55.25927734375003,22.590917968750034],[55.18583984375007,22.7041015625],[55.19404296875004,22.85],[55.19218750000002,22.922949218749977],[55.1999023437501,23.034765625000034],[55.27021484375003,23.18994140625003],[55.35322265625004,23.38745117187503],[55.413867187500074,23.51875],[55.46630859375003,23.632910156250034],[55.5084960937501,23.72460937499997],[55.53164062499999,23.81904296875001],[55.519335937500074,23.88549804687497],[55.49179687500006,23.90966796875],[55.4684570312501,23.94111328125001],[55.54785156250003,23.99135742187505],[55.69658203125002,24.024121093749983],[55.77910156250002,24.017089843750057],[55.894140625,24.041406250000023],[55.98515625000002,24.063378906249966],[55.99218750000003,24.092968749999955],[55.96630859374997,24.142626953125045],[55.92861328125005,24.215136718750074],[55.799707031249994,24.22265625],[55.760839843750055,24.242675781249996],[55.80566406250003,24.349804687499983],[55.804003906250074,24.383544921875],[55.7868164062501,24.423535156249983],[55.76816406250006,24.490625],[55.77753906250009,24.577343749999955],[55.80390625000004,24.63623046874997],[55.80419921875003,24.68359375000003],[55.791601562500006,24.781298828125045],[55.795703125000074,24.868115234374955],[55.8228515625,24.911279296874966],[55.870703125000055,24.951416015624968],[55.91582031250002,24.971777343750034],[55.96308593750004,24.97026367187499],[56.00058593750006,24.953222656249974],[56.01669921875006,24.907714843750025],[56.00634765624997,24.876416015624955],[55.97968750000004,24.87207031249997],[55.9703125,24.858935546875045],[56.00839843750006,24.798242187500023],[56.06386718750005,24.738769531249996],[56.10654296875006,24.748681640624966],[56.15449218750004,24.795507812500006],[56.20468750000006,24.833300781250074],[56.26787109375007,24.86669921875003],[56.31357421875006,24.93129882812505],[56.352929687499994,24.973291015624994],[56.38798828125002,24.97919921875004]]],[[[56.28183593750006,25.23554687500004],[56.24023437500003,25.208837890625002],[56.210546875,25.213281250000023],[56.2165039062501,25.266699218749977],[56.234277343750044,25.303808593750006],[56.27734375000003,25.300878906250034],[56.28779296875003,25.278613281250017],[56.28183593750006,25.23554687500004]]],[[[56.429785156250006,26.327197265625042],[56.41777343750002,26.20815429687502],[56.41640625000005,26.108740234375034],[56.373632812500006,25.804589843749962],[56.32929687500004,25.751953125],[56.307226562500006,25.709326171875002],[56.29785156250003,25.650683593750045],[56.2785156250001,25.62773437499999],[56.24951171874997,25.625390624999966],[56.18359375000003,25.644921875000023],[56.144628906250006,25.690527343750006],[56.15195312500006,25.746093750000025],[56.15410156250007,25.84848632812503],[56.17255859375009,25.945166015625006],[56.16748046875003,26.047460937499977],[56.11650390625002,26.068164062500017],[56.08046875,26.062646484375048],[56.16445312500005,26.20703124999997],[56.19726562499997,26.229199218749955],[56.228417968749994,26.219775390624985],[56.305566406249994,26.235205078125034],[56.34648437500007,26.313623046875023],[56.378710937500074,26.356347656250023],[56.41308593749997,26.351171875000034],[56.429785156250006,26.327197265625042]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Nepal","sov_a3":"NPL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nepal","adm0_a3":"NPL","geou_dif":0,"geounit":"Nepal","gu_a3":"NPL","su_dif":0,"subunit":"Nepal","su_a3":"NPL","brk_diff":0,"name":"Nepal","name_long":"Nepal","brk_a3":"NPL","brk_name":"Nepal","brk_group":null,"abbrev":"Nepal","postal":"NP","formal_en":"Nepal","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nepal","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":12,"pop_est":28563377,"gdp_md_est":31080,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"NP","iso_a3":"NPL","iso_n3":"524","un_a3":"524","wb_a2":"NP","wb_a3":"NPL","woe_id":-99,"adm0_a3_is":"NPL","adm0_a3_us":"NPL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"NPL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[88.10976562500002,27.87060546875],[88.15029296875002,27.843310546874996],[88.154296875,27.798681640625],[88.14697265625,27.74921875],[88.10556640625003,27.642431640625],[88.06787109374999,27.5673828125],[88.02412109375001,27.408886718749997],[87.984375,27.13393554687499],[87.99316406249999,27.086083984374994],[88.11103515625001,26.928466796875],[88.1572265625,26.807324218749994],[88.16152343750002,26.724804687499997],[88.11152343750001,26.586425781249996],[88.05488281250001,26.430029296875],[88.02695312500003,26.39501953125],[87.9951171875,26.382373046874996],[87.84921875000003,26.436914062499994],[87.74882812499999,26.429296875],[87.63339843750003,26.399121093749997],[87.51308593750002,26.404980468749994],[87.41357421875,26.422949218749995],[87.28740234374999,26.360302734374997],[87.16679687499999,26.394238281249994],[87.08955078125001,26.433203125],[87.03789062499999,26.5416015625],[87.01640624999997,26.555419921874996],[86.7625,26.441943359374992],[86.70136718750001,26.43505859375],[86.54365234375001,26.495996093749994],[86.41445312500002,26.55629882812499],[86.36611328125002,26.574414062499997],[86.24160156250002,26.597998046875],[86.12939453125,26.61171875],[86.00732421875,26.649365234374997],[85.85566406250001,26.6001953125],[85.79453125000003,26.604150390624994],[85.7373046875,26.63974609375],[85.70742187500002,26.712646484375],[85.69990234375001,26.78164062499999],[85.6484375,26.82900390624999],[85.56845703125003,26.83984375],[85.45644531250001,26.797216796875],[85.29296875,26.741015625],[85.240234375,26.750341796875],[85.19179687500002,26.766552734374997],[85.17412109374999,26.781542968749996],[85.15156250000001,26.846630859374994],[85.12539062500002,26.860986328124994],[85.08730468750002,26.862939453124994],[85.02011718750003,26.878515625],[84.93720703125001,26.926904296874994],[84.68535156249997,27.041015625],[84.65380859375,27.091699218749994],[84.65478515625,27.203662109374996],[84.64072265625003,27.249853515625],[84.61015624999999,27.298681640624995],[84.48085937500002,27.348193359374996],[84.22978515624999,27.427832031249995],[84.09101562500001,27.491357421874994],[84.02480468750002,27.461669921875],[83.89716796875001,27.435107421874996],[83.82880859375001,27.377832031249994],[83.74697265625001,27.395947265624997],[83.55166015625002,27.456347656249992],[83.44716796875002,27.465332031249996],[83.383984375,27.44482421875],[83.36943359374999,27.41025390625],[83.28974609375001,27.370996093749994],[83.2138671875,27.402294921874997],[83.06406250000003,27.44453125],[82.93281250000001,27.467675781249994],[82.7333984375,27.518994140624997],[82.71083984375002,27.5966796875],[82.67734375000002,27.6734375],[82.62988281249999,27.687060546874996],[82.45136718750001,27.671826171874997],[82.28769531250003,27.756542968749994],[82.11191406250003,27.864941406249997],[82.03701171875002,27.900585937499997],[81.98769531250002,27.913769531249997],[81.94521484375002,27.899267578125],[81.896875,27.874462890624997],[81.85263671875003,27.867089843749994],[81.75722656250002,27.913818359375],[81.63554687499997,27.98046875],[81.48603515625001,28.062207031249994],[81.31083984374999,28.176367187499995],[81.23896484375,28.240869140624994],[81.20625,28.289404296875],[81.1689453125,28.335009765624996],[81.0166015625,28.40957031249999],[80.89609375000003,28.468554687499996],[80.75078124999999,28.539697265624994],[80.72617187500003,28.55390625],[80.67128906250002,28.596240234374996],[80.58701171875003,28.649609375],[80.51787109374997,28.665185546874994],[80.49580078125001,28.635791015624992],[80.47910156250003,28.604882812499994],[80.41855468750003,28.612011718749994],[80.32480468750003,28.66640625],[80.2265625,28.723339843749997],[80.14960937500001,28.776074218749997],[80.07070312500002,28.830175781250002],[80.05166015625001,28.8703125],[80.08457031250003,28.994189453124996],[80.13046875000003,29.100390625],[80.16953125000003,29.124316406249996],[80.23300781250003,29.194628906249996],[80.25595703125003,29.318017578124994],[80.2548828125,29.42333984375],[80.31689453125,29.572070312499996],[80.40185546875,29.730273437499996],[80.5490234375,29.899804687499994],[80.61289062500003,29.955859375],[80.68408203125,29.994335937499994],[80.81992187500003,30.119335937499997],[80.84814453125,30.13974609375],[80.90761718750002,30.171923828124992],[80.96611328124997,30.180029296874995],[81.01025390625,30.164501953124994],[81.05556640625002,30.098974609374995],[81.1103515625,30.036816406249997],[81.17714843750002,30.039892578125],[81.25507812500001,30.093310546874992],[81.4171875,30.337597656249994],[81.64189453124997,30.3875],[81.85488281250001,30.36240234375],[82.04335937500002,30.3267578125],[82.09892578124999,30.245068359374997],[82.13535156250003,30.158984375],[82.15898437499999,30.115185546874994],[82.220703125,30.063867187499994],[82.48652343750001,29.941503906249995],[82.64082031250001,29.83120117187499],[82.85429687499999,29.683398437499996],[83.01396484374999,29.61806640624999],[83.15546875000001,29.612646484375],[83.23515624999997,29.55458984374999],[83.35517578125001,29.439160156249997],[83.45664062500002,29.306347656249997],[83.58349609375,29.18359375],[83.67109375000001,29.18759765625],[83.79042968750002,29.227441406249994],[83.93593750000002,29.279492187499994],[84.02197265625,29.253857421874997],[84.10136718749999,29.219970703124996],[84.12783203125002,29.156298828124996],[84.17558593749999,29.036376953124996],[84.22871093750001,28.911767578124994],[84.31210937500002,28.868115234374997],[84.41074218750003,28.80390625],[84.46542968750003,28.7529296875],[84.65058593750001,28.659570312499994],[84.6767578125,28.621533203124994],[84.71425781250002,28.595556640625],[84.759375,28.57924804687499],[84.796875,28.56020507812499],[84.85507812500003,28.553613281249994],[85.06914062499999,28.609667968749996],[85.12636718750002,28.60263671875],[85.15908203125001,28.592236328124997],[85.16015625,28.571875],[85.12148437500002,28.48427734374999],[85.08857421875,28.37226562499999],[85.12246093750001,28.315966796874996],[85.21210937500001,28.292626953124994],[85.41064453125,28.27602539062499],[85.67832031250003,28.27744140625],[85.75947265625,28.220654296874997],[85.84023437500002,28.1353515625],[85.92167968749999,27.989697265624997],[85.9541015625,27.92822265625],[85.99453125000002,27.910400390625],[86.06416015625001,27.934716796874994],[86.07548828124999,27.994580078124997],[86.07871093750003,28.08359375],[86.13701171874997,28.114355468749995],[86.17421875000002,28.091699218749994],[86.21796875000001,28.0220703125],[86.32861328125,27.959521484374996],[86.40869140625,27.928662109374994],[86.48496093750003,27.93955078125],[86.51689453124999,27.96352539062499],[86.55449218749999,28.085205078125],[86.61445312500001,28.10302734375],[86.69052734375003,28.094921875],[86.71962890625002,28.070654296874995],[86.75039062500002,28.0220703125],[86.84238281250003,27.999169921874994],[86.93378906250001,27.968457031249994],[87.02011718750003,27.928662109374994],[87.14140624999999,27.838330078124997],[87.29072265625,27.821923828124994],[87.46416015624999,27.823828125],[87.55527343750003,27.821826171874996],[87.62255859374999,27.815185546875],[87.68271484375003,27.821386718749995],[87.86074218750002,27.886083984375],[87.93339843749999,27.890820312499997],[88.02333984375002,27.883398437499995],[88.10976562500002,27.87060546875]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Pakistan","sov_a3":"PAK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Pakistan","adm0_a3":"PAK","geou_dif":0,"geounit":"Pakistan","gu_a3":"PAK","su_dif":0,"subunit":"Pakistan","su_a3":"PAK","brk_diff":0,"name":"Pakistan","name_long":"Pakistan","brk_a3":"PAK","brk_name":"Pakistan","brk_group":null,"abbrev":"Pak.","postal":"PK","formal_en":"Islamic Republic of Pakistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Pakistan","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":11,"pop_est":176242949,"gdp_md_est":427300,"pop_year":-99,"lastcensus":1998,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PK","iso_a3":"PAK","iso_n3":"586","un_a3":"586","wb_a2":"PK","wb_a3":"PAK","woe_id":-99,"adm0_a3_is":"PAK","adm0_a3_us":"PAK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PAK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[76.76689453124997,35.66171875],[76.81279296874999,35.57182617187499],[76.88222656250002,35.4357421875],[76.927734375,35.346630859375],[76.97890625000002,35.246435546875],[77.00449218750003,35.196337890624996],[77.04863281249999,35.10991210937499],[77.03066406250001,35.06235351562499],[77.00087890625002,34.991992187499996],[76.89169921875003,34.938720703125],[76.78291015625001,34.900195312499996],[76.75751953125001,34.877832031249994],[76.7490234375,34.847558593749994],[76.6962890625,34.786914062499996],[76.59443359375,34.73583984375],[76.50996093750001,34.740869140624994],[76.45673828125001,34.756103515625],[76.17246093750002,34.66772460937499],[76.041015625,34.669921875],[75.93828125000002,34.612548828125],[75.86210937500002,34.56025390624999],[75.70917968750001,34.503076171874994],[75.60556640625,34.502734375],[75.45253906250002,34.53671875],[75.2640625,34.601367187499996],[75.1875,34.639013671875],[75.11845703125002,34.63681640625],[74.95185546875,34.645849609375],[74.78876953125001,34.677734375],[74.59414062500002,34.715771484375],[74.49794921875002,34.73203125],[74.300390625,34.765380859375],[74.17197265625,34.7208984375],[74.05585937500001,34.6806640625],[73.96123046875002,34.653466796874994],[73.88310546875002,34.529052734375],[73.85009765625,34.485302734375],[73.812109375,34.42236328125],[73.79453125,34.378222656249996],[73.80996093750002,34.325341796874994],[73.92460937500002,34.287841796875],[73.97236328125001,34.236621093749996],[73.9794921875,34.191308593749994],[73.93828125000002,34.144775390625],[73.90390625,34.1080078125],[73.90410156250002,34.07568359375],[73.92236328125,34.04306640625],[73.94990234375001,34.018798828125],[74.11259765625,34.003710937499996],[74.20898437499999,34.00341796875],[74.246484375,33.99018554687499],[74.25087890625002,33.94609375],[74.215625,33.886572265625],[74.07841796875002,33.83867187499999],[74.0009765625,33.78818359375],[73.97646484375002,33.7212890625],[73.9775390625,33.667822265625],[74.00400390624999,33.632421875],[74.06972656250002,33.591699218749994],[74.13125,33.545068359374994],[74.15,33.506982421874994],[74.142578125,33.455371093749996],[74.1177734375,33.384130859375],[74.050390625,33.30126953125],[73.99423828125,33.2421875],[73.98984375,33.22119140625],[74.00380859375002,33.189453125],[74.04912109375,33.143408203125],[74.12626953125002,33.075439453125],[74.22207031250002,33.0203125],[74.28359375000002,33.005126953125],[74.30361328125001,32.991796875],[74.32275390625,32.927978515625],[74.32998046875002,32.86083984375],[74.30546875000002,32.810449218749994],[74.35458984375,32.768701171874994],[74.4833984375,32.77099609375],[74.58828125,32.753222656249996],[74.632421875,32.770898437499994],[74.66328125000001,32.757666015625],[74.64335937500002,32.607714843749996],[74.6578125,32.518945312499994],[74.68574218750001,32.49379882812499],[74.78886718750002,32.4578125],[74.9873046875,32.462207031249996],[75.1041015625,32.420361328125],[75.23369140625,32.372119140624996],[75.30263671875002,32.318896484374996],[75.33349609375,32.27919921874999],[75.32470703125,32.215283203125],[75.2541015625,32.14033203125],[75.13876953125,32.104785156249996],[75.07148437500001,32.08935546875],[74.73945312500001,31.948828125],[74.6357421875,31.88974609375],[74.55556640625002,31.818554687499997],[74.5259765625,31.76513671875],[74.5099609375,31.712939453124996],[74.58183593750002,31.523925781249996],[74.59394531250001,31.465380859374992],[74.53496093750002,31.26137695312499],[74.51767578124999,31.185595703124992],[74.53974609375001,31.132666015625],[74.6103515625,31.112841796874996],[74.62578125000002,31.06875],[74.6328125,31.03466796875],[74.509765625,30.959667968749997],[74.38037109375,30.893408203125],[74.33935546874999,30.893554687499996],[74.215625,30.768994140624997],[74.008984375,30.51967773437499],[73.89931640625002,30.435351562499996],[73.8916015625,30.39404296875],[73.88271484375002,30.3521484375],[73.92460937500002,30.28164062499999],[73.93339843750002,30.222070312499994],[73.88652343750002,30.16201171874999],[73.8091796875,30.093359375],[73.65800781250002,30.033203125],[73.46748046875001,29.9716796875],[73.38164062500002,29.934375],[73.31728515625002,29.772998046874996],[73.2578125,29.610693359374995],[73.23115234375001,29.550634765625],[73.12832031250002,29.363916015624994],[72.94873046875,29.088818359374994],[72.9033203125,29.028759765624997],[72.6255859375,28.89614257812499],[72.34189453125,28.751904296874997],[72.2919921875,28.697265625],[72.23388671875,28.565820312499994],[72.17919921875,28.421777343749994],[72.128515625,28.34633789062499],[71.94804687500002,28.177294921874996],[71.88886718750001,28.0474609375],[71.8703125,27.9625],[71.71669921875001,27.915087890624992],[71.54296875,27.869873046875],[71.29013671875,27.855273437499996],[71.18476562500001,27.831640625],[70.87490234375002,27.714453125],[70.79794921875,27.709619140624994],[70.73740234375,27.72900390625],[70.69160156250001,27.768994140624997],[70.64912109375001,27.835351562499994],[70.62910156250001,27.937451171874994],[70.56923828125002,27.98378906249999],[70.48857421875002,28.023144531249997],[70.40371093750002,28.025048828124994],[70.31845703125,27.981640625],[70.24433593750001,27.934130859374996],[70.1939453125,27.894873046875],[70.14453125,27.84902343749999],[70.0498046875,27.694726562499994],[69.89628906250002,27.473632812499996],[69.72480468750001,27.312695312499997],[69.66132812500001,27.264501953124995],[69.62158203124999,27.228076171874996],[69.56796875,27.174609375],[69.53701171875002,27.122949218749994],[69.49453125000002,26.954150390624996],[69.47001953125002,26.804443359375],[69.48125,26.77099609375],[69.50693359375,26.74267578125],[69.6005859375,26.699121093749994],[69.7359375,26.62705078125],[69.91142578125002,26.586132812499997],[70.059375,26.578759765624994],[70.11464843750002,26.548046875],[70.14765625000001,26.506445312499995],[70.1568359375,26.471435546875],[70.14921875000002,26.347558593749994],[70.13261718750002,26.214794921874997],[70.077734375,26.071972656249997],[70.07861328125,25.990039062500003],[70.1001953125,25.910058593749994],[70.2646484375,25.70654296875],[70.3251953125,25.685742187499997],[70.44853515625002,25.681347656249997],[70.505859375,25.685302734375],[70.56953125000001,25.705957031249994],[70.61484375,25.69189453125],[70.6484375,25.666943359374997],[70.6572265625,25.62578125],[70.65205078125001,25.422900390625003],[70.70253906250002,25.331054687499996],[70.80048828125001,25.205859375],[70.87773437500002,25.06298828125],[70.95087890625001,24.8916015625],[71.02070312500001,24.75766601562499],[71.04785156249999,24.687744140625],[71.00234375000002,24.65390625],[70.97636718750002,24.61875],[70.96982421875,24.571875],[70.97929687500002,24.5224609375],[70.9732421875,24.48740234374999],[71.00625,24.4443359375],[71.04531250000002,24.42998046875],[71.04404296875,24.400097656249997],[70.98281250000002,24.361035156249997],[70.928125,24.362353515625003],[70.88623046875,24.34375],[70.80507812500002,24.261962890625],[70.76728515625001,24.245410156250003],[70.71630859375,24.237988281249997],[70.65947265625002,24.24609375],[70.579296875,24.279052734375],[70.55585937500001,24.331103515625003],[70.5650390625,24.385791015625003],[70.54677734375002,24.41831054687499],[70.4892578125,24.412158203125003],[70.2890625,24.35629882812499],[70.0982421875,24.2875],[70.06513671875001,24.24057617187499],[70.02109375,24.19155273437499],[69.9337890625,24.17138671875],[69.80517578125,24.165234375],[69.71621093750002,24.172607421875],[69.63417968750002,24.225195312499988],[69.5591796875,24.273095703124994],[69.44345703125,24.275390625],[69.23505859375001,24.268261718749997],[69.11953125000002,24.26865234374999],[69.0515625,24.286328125],[68.98457031250001,24.273095703124994],[68.90078125000002,24.292431640624997],[68.86347656250001,24.266503906249994],[68.82832031250001,24.26401367187499],[68.8,24.30908203125],[68.78115234375002,24.313720703125],[68.75898437500001,24.30722656249999],[68.73964843750002,24.2919921875],[68.728125,24.265625],[68.72412109375,23.96469726562499],[68.58662109375001,23.966601562500003],[68.48867187500002,23.967236328124997],[68.38125,23.950878906249997],[68.28251953125002,23.927978515625],[68.2341796875,23.90053710937499],[68.16503906249999,23.857324218749994],[68.14882812500002,23.79721679687499],[68.11552734375002,23.753369140624997],[68.06777343750002,23.818359375],[68.03701171875002,23.84824218749999],[68.00146484375,23.826074218749994],[67.95097656250002,23.82861328125],[67.85996093749999,23.90268554687499],[67.81904296875001,23.828076171874997],[67.66845703125,23.810986328124997],[67.64951171875,23.86728515624999],[67.64580078125,23.919873046874997],[67.5630859375,23.8818359375],[67.50361328125001,23.94003906249999],[67.47685546875002,24.018261718749997],[67.45390625000002,24.03989257812499],[67.42763671875002,24.06484375],[67.36523437499999,24.091601562500003],[67.309375,24.1748046875],[67.304296875,24.262890625],[67.288671875,24.36777343749999],[67.17148437499999,24.756103515625],[67.1005859375,24.791943359374997],[66.70302734375002,24.8609375],[66.6822265625,24.928857421874994],[66.70986328125002,25.111328125],[66.69863281250002,25.226318359375],[66.569921875,25.37851562499999],[66.53388671875001,25.484375],[66.42861328125002,25.575341796874994],[66.32421875,25.601806640625],[66.21904296875002,25.589892578125003],[66.16230468750001,25.55390625],[66.13115234375002,25.493261718749988],[66.3564453125,25.507373046875003],[66.40712890625002,25.485058593749997],[66.46767578125002,25.4453125],[66.4029296875,25.446826171875],[66.32832031250001,25.465771484374997],[66.23466796875002,25.46435546875],[65.88359375000002,25.419628906249997],[65.6796875,25.355273437500003],[65.40625,25.374316406250003],[65.06132812500002,25.311083984375003],[64.77666015625002,25.307324218749997],[64.65898437500002,25.18408203125],[64.59404296875002,25.206298828125],[64.54375,25.23666992187499],[64.15205078125001,25.333447265624997],[64.12490234375002,25.373925781249994],[64.059375,25.40292968749999],[63.9873046875,25.35117187499999],[63.93554687499999,25.342529296875],[63.720898437500004,25.385888671874994],[63.55664062499999,25.353173828124994],[63.495703125,25.297509765624994],[63.49140625000001,25.210839843749994],[63.285742187500006,25.227587890625003],[63.170019531250006,25.2548828125],[63.01503906250002,25.224658203125],[62.66474609375001,25.26479492187499],[62.57246093750001,25.254736328124988],[62.444726562500016,25.197265625],[62.391210937500006,25.152539062499997],[62.31533203125002,25.134912109374994],[62.248730468750004,25.19736328124999],[62.198632812500016,25.224853515625],[62.15214843750001,25.206640624999988],[62.089453125,25.155322265625003],[61.90791015625001,25.131298828124997],[61.74365234375,25.13818359375],[61.56689453125,25.186328125],[61.587890625,25.20234375],[61.61542968750001,25.286132812499996],[61.64013671875,25.584619140624994],[61.67138671875001,25.692382812499996],[61.661816406250004,25.751269531250003],[61.668652343750004,25.768994140624994],[61.73769531250002,25.82109375],[61.75439453125,25.84335937499999],[61.78076171874999,25.995849609375],[61.80996093750002,26.165283203125],[61.842382812500006,26.225927734375],[61.86982421875001,26.242431640625],[62.08906250000001,26.31826171874999],[62.12597656249999,26.368994140625],[62.23935546875001,26.35703125],[62.249609375,26.36923828125],[62.25966796875002,26.427490234375],[62.31230468750001,26.490869140624994],[62.38505859375002,26.542626953124994],[62.43925781250002,26.56103515625],[62.636425781250004,26.593652343749994],[62.7515625,26.63916015625],[62.78662109375,26.643896484375],[63.09296875,26.63232421875],[63.1578125,26.649755859375],[63.168066406250006,26.665576171874996],[63.186132812500006,26.837597656249997],[63.241601562500016,26.86474609375],[63.25039062500002,26.879248046875],[63.2314453125,26.998144531249995],[63.24208984375002,27.077685546874996],[63.30517578125,27.124560546874996],[63.30156250000001,27.15146484375],[63.25625,27.207910156249994],[63.19609375000002,27.243945312499996],[63.166796875000024,27.252490234374996],[62.915429687500016,27.218408203124994],[62.81162109375,27.229443359374994],[62.76298828125002,27.250195312499997],[62.75273437500001,27.265625],[62.7625,27.300195312499994],[62.764257812500006,27.356738281249996],[62.800878906250006,27.44453125],[62.81201171875,27.497021484374997],[62.782324218750006,27.800537109375],[62.73974609374999,28.00205078125],[62.7625,28.20205078124999],[62.75800781250001,28.243554687499994],[62.74941406250002,28.252880859374997],[62.71757812500002,28.252783203125],[62.564550781250006,28.23515625],[62.43388671875002,28.3638671875],[62.35302734374999,28.414746093749997],[62.13056640625001,28.478808593749992],[62.03300781250001,28.491015625],[61.88984375000001,28.546533203124994],[61.75800781250001,28.667675781249997],[61.623046875,28.7916015625],[61.56875,28.870898437499996],[61.50859375000002,29.006054687499994],[61.337890625,29.264990234374995],[61.339453125,29.331787109375],[61.31835937499999,29.372607421874996],[61.152148437500024,29.542724609374996],[61.0341796875,29.663427734375],[60.843359375,29.858691406249992],[61.22441406250002,29.74941406249999],[61.52148437499999,29.66567382812499],[62.0009765625,29.530419921874994],[62.373437500000016,29.425390625],[62.4765625,29.40834960937499],[63.56757812500001,29.497998046874997],[63.97099609375001,29.43007812499999],[64.09873046875,29.391943359375],[64.11796875000002,29.414257812499997],[64.17216796875002,29.460351562499994],[64.26611328125,29.50693359375],[64.39375,29.544335937499998],[64.52109375,29.564501953124992],[64.70351562500002,29.567138671875],[64.82734375000001,29.564160156249994],[64.9189453125,29.552783203124996],[65.09550781250002,29.559472656249994],[65.18046875000002,29.57763671875],[65.47099609375002,29.6515625],[65.66621093750001,29.701318359374994],[65.96162109375001,29.77890625],[66.17705078125002,29.835595703124994],[66.23125,29.865722656249996],[66.28691406250002,29.920019531249995],[66.31337890625002,29.9685546875],[66.24716796875,30.043505859374996],[66.2384765625,30.109619140624996],[66.2818359375,30.193457031249995],[66.30546875,30.321142578125],[66.30097656250001,30.502978515624996],[66.28691406250002,30.60791015625],[66.346875,30.802783203124996],[66.39716796875001,30.912207031249995],[66.49736328125002,30.964550781249997],[66.56679687500002,30.99658203125],[66.59580078125,31.019970703124994],[66.62421875000001,31.04604492187499],[66.73134765625002,31.19453125],[66.82929687500001,31.263671875],[66.92431640625,31.305615234374997],[67.02773437500002,31.300244140624997],[67.11591796875001,31.242919921875],[67.28730468750001,31.217822265624996],[67.45283203125001,31.234619140624996],[67.59638671875,31.277685546875],[67.66152343750002,31.31298828125],[67.737890625,31.343945312499997],[67.73349609375,31.379248046875],[67.6470703125,31.409960937499996],[67.59755859375002,31.4533203125],[67.57822265625,31.506494140624994],[67.6267578125,31.538769531249997],[67.73984375,31.548193359374995],[68.0171875,31.677978515625],[68.13017578125002,31.76328125],[68.16103515625002,31.802978515624996],[68.21396484375,31.807373046875],[68.31982421875,31.767675781249995],[68.44326171875002,31.7544921875],[68.52070312500001,31.79414062499999],[68.59765624999999,31.802978515624996],[68.67324218750001,31.759716796874997],[68.71367187500002,31.708056640625],[68.78232421874999,31.646435546874994],[68.86894531250002,31.634228515624997],[68.97343750000002,31.667382812499994],[69.08310546875,31.738476562499994],[69.18691406250001,31.838085937499994],[69.279296875,31.936816406249992],[69.25654296875001,32.249462890625],[69.24140625000001,32.43354492187499],[69.28994140625002,32.530566406249996],[69.35947265624999,32.59033203125],[69.40537109375,32.68271484375],[69.40458984375002,32.7642578125],[69.453125,32.8328125],[69.5015625,33.020068359374996],[69.56777343750002,33.06416015625],[69.7037109375,33.0947265625],[69.92011718750001,33.1125],[70.09023437500002,33.198095703125],[70.26113281250002,33.28901367187499],[70.2841796875,33.369042968749994],[70.2197265625,33.4546875],[70.13417968750002,33.620751953124994],[70.056640625,33.719873046874994],[69.86806640625002,33.89765625],[69.8896484375,34.007275390625],[69.9947265625,34.051806640624996],[70.25361328125001,33.975976562499994],[70.32568359375,33.9611328125],[70.41572265625001,33.950439453125],[70.65400390625,33.952294921874994],[70.84843750000002,33.981884765625],[71.05156250000002,34.04970703124999],[71.09130859375,34.120263671874994],[71.08906250000001,34.20405273437499],[71.0923828125,34.273242187499996],[71.095703125,34.369433593749996],[71.02294921875,34.43115234375],[70.97890625,34.48627929687499],[70.965625,34.53037109375],[71.01630859375001,34.55463867187499],[71.065625,34.599609375],[71.11328125,34.681591796875],[71.22578125000001,34.779541015625],[71.29414062500001,34.867724609374996],[71.35810546875001,34.909619140625],[71.455078125,34.966943359374994],[71.51708984375,35.051123046875],[71.5455078125,35.101416015625],[71.60166015625,35.150683593749996],[71.62050781250002,35.183007812499994],[71.60527343750002,35.211767578125],[71.57724609375,35.247998046875],[71.5455078125,35.288867187499996],[71.5455078125,35.32851562499999],[71.57197265625001,35.370410156249996],[71.6005859375,35.40791015625],[71.58740234375,35.46083984374999],[71.57197265625001,35.54682617187499],[71.51904296875,35.597509765625],[71.48359375000001,35.714599609375],[71.42753906250002,35.833740234375],[71.39755859375,35.880175781249996],[71.34287109375,35.938525390624996],[71.22021484375,36.00068359375],[71.18505859375,36.04208984375],[71.23291015625,36.12177734375],[71.31259765625,36.171191406249996],[71.46328125000002,36.293261718749996],[71.5458984375,36.377685546875],[71.62050781250002,36.43647460937499],[71.71640625,36.4265625],[71.77265625000001,36.4318359375],[71.82226562499999,36.486083984375],[71.92070312500002,36.5341796875],[72.09560546875002,36.633740234375],[72.15673828125,36.70087890625],[72.24980468750002,36.734716796875],[72.326953125,36.7423828125],[72.43115234374999,36.7658203125],[72.53134765625,36.802001953125],[72.62285156250002,36.82958984375],[72.7662109375,36.835009765624996],[72.99375,36.851611328124996],[73.11679687499999,36.868554687499994],[73.4111328125,36.881689453125],[73.73183593750002,36.88779296875],[73.769140625,36.888476562499996],[73.9078125,36.85292968749999],[74.00185546875002,36.823095703125],[74.03886718750002,36.825732421874996],[74.19472656250002,36.896875],[74.43105468750002,36.983691406249996],[74.54140625000002,37.02216796875],[74.6005859375,37.036669921874996],[74.69218750000002,37.0357421875],[74.76601562500002,37.012744140624996],[74.84121093750001,36.9791015625],[74.8892578125,36.952441406249996],[74.94912109375002,36.968359375],[75.05390625000001,36.98715820312499],[75.14521484375001,36.9732421875],[75.3466796875,36.913476562499994],[75.37685546875002,36.883691406249994],[75.42421875000002,36.738232421875],[75.46025390625002,36.72504882812499],[75.57373046875,36.759326171874996],[75.66718750000001,36.741992187499996],[75.77216796875001,36.694921875],[75.84023437500002,36.649707031249996],[75.88496093750001,36.600732421874994],[75.93300781250002,36.52158203125],[75.95185546875001,36.45810546875],[75.97441406250002,36.382421875],[75.96865234375002,36.168847656249994],[75.93408203124999,36.133935546874994],[75.9048828125,36.0884765625],[75.9123046875,36.048974609374994],[75.94511718750002,36.017578125],[76.01044921875001,35.996337890625],[76.07089843750003,35.98300781249999],[76.10332031249999,35.94921875],[76.14785156250002,35.82900390624999],[76.17783203125003,35.810546875],[76.25166015625001,35.8109375],[76.38574218749999,35.83715820312499],[76.50205078125003,35.878222656249996],[76.55126953125,35.887060546875],[76.5634765625,35.77299804687499],[76.6318359375,35.729394531249994],[76.72753906249999,35.678662109375],[76.76689453124997,35.66171875]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Philippines","sov_a3":"PHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Philippines","adm0_a3":"PHL","geou_dif":0,"geounit":"Philippines","gu_a3":"PHL","su_dif":0,"subunit":"Philippines","su_a3":"PHL","brk_diff":0,"name":"Philippines","name_long":"Philippines","brk_a3":"PHL","brk_name":"Philippines","brk_group":null,"abbrev":"Phil.","postal":"PH","formal_en":"Republic of the Philippines","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Philippines","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":2,"mapcolor13":8,"pop_est":97976603,"gdp_md_est":317500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PH","iso_a3":"PHL","iso_n3":"608","un_a3":"608","wb_a2":"PH","wb_a3":"PHL","woe_id":-99,"adm0_a3_is":"PHL","adm0_a3_us":"PHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"PHL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.250390625,5.256591796875043],[120.22324218750005,5.196240234374996],[120.19160156250004,5.168310546874991],[120.15,5.184082031250014],[120.11835937500005,5.215380859374989],[120.10058593749997,5.16899414062496],[120.0132812500001,5.151123046875043],[119.95810546875005,5.079541015625026],[119.87753906250008,5.060205078124994],[119.82148437500003,5.06953125000004],[119.82734375000004,5.133154296875034],[119.98271484375002,5.22841796874998],[120.07968750000006,5.263623046875054],[120.16523437500011,5.332421875000037],[120.20800781249997,5.340087890625],[120.22939453125,5.284082031250051],[120.250390625,5.256591796875043]]],[[[121.159375,6.075634765625011],[121.21386718750001,6.003515624999977],[121.28251953125007,6.022265624999974],[121.39150390625004,6.002099609375037],[121.41464843750006,5.964501953125023],[121.41103515625004,5.939843749999965],[121.29443359374997,5.869970703125034],[121.2181640625,5.94272460937502],[121.08300781249997,5.893017578125025],[121.01855468750003,5.922949218749991],[120.93066406249997,5.896191406250054],[120.87636718750001,5.952636718749999],[120.89824218750002,6.006933593749963],[121.03769531250005,6.095996093749989],[121.159375,6.075634765625011]]],[[[122.09287109375012,6.428320312500006],[121.99140625000005,6.414550781250043],[121.95917968750003,6.415820312500045],[121.87988281249996,6.517578124999986],[121.8724609375,6.562744140625043],[121.80869140625005,6.613720703125039],[121.83203125000003,6.664062499999986],[121.91494140625,6.676220703124983],[122.05830078125008,6.740722656249972],[122.28808593750003,6.638916015625014],[122.32353515625002,6.602246093750011],[122.25175781250007,6.579785156250054],[122.20097656250002,6.482910156250028],[122.09287109375012,6.428320312500006]]],[[[125.7845703125,6.962744140624991],[125.76894531250004,6.905761718750028],[125.70751953124999,7.039990234375011],[125.6830078125,7.073193359375026],[125.7144531250001,7.185546875],[125.78339843750004,7.130664062500017],[125.7845703125,6.962744140624991]]],[[[122.93710937500006,7.409130859374983],[122.94804687500007,7.385742187500013],[122.94365234375007,7.361035156250055],[122.8395507812501,7.314599609375009],[122.80468750000001,7.315966796875017],[122.79658203125003,7.393359374999974],[122.82216796875,7.428466796875013],[122.87119140625005,7.397314453124977],[122.91484375000006,7.43339843749996],[122.93710937500006,7.409130859374983]]],[[[117.07988281250007,7.883398437499976],[117.02832031249997,7.807519531249966],[116.96953125000007,7.894921875],[116.9757812500001,8.016650390625031],[116.99355468750001,8.050537109375014],[117.07705078124998,8.069140624999974],[117.07988281250007,7.883398437499976]]],[[[117.35527343750002,8.21464843749996],[117.28701171874998,8.191015625000034],[117.27226562500002,8.253515624999975],[117.28085937500006,8.314990234374974],[117.32958984374997,8.308496093749978],[117.35371093750008,8.289257812499969],[117.35527343750002,8.21464843749996]]],[[[124.80664062500003,9.142626953125003],[124.77792968750012,9.083105468749963],[124.66582031250002,9.132324218750043],[124.6390625,9.17509765624996],[124.65332031250003,9.225830078124998],[124.7081054687501,9.243017578125034],[124.73681640624996,9.243164062499972],[124.79023437500004,9.190087890624994],[124.80664062500003,9.142626953125003]]],[[[123.69765625000005,9.237304687500028],[123.70625,9.133544921875028],[123.61445312500004,9.103320312499989],[123.54072265625003,9.129736328125048],[123.49345703125002,9.192089843750054],[123.49355468750001,9.215527343750026],[123.53515624999997,9.213574218749981],[123.62607421875012,9.268261718750024],[123.65488281250013,9.278759765625026],[123.69765625000005,9.237304687500028]]],[[[125.97050781250006,9.593554687500031],[125.95244140625002,9.567968749999977],[125.92207031250005,9.621484375000037],[125.94853515625002,9.73920898437504],[125.96777343749997,9.759082031250003],[125.99296875,9.684570312500012],[125.97050781250006,9.593554687500031]]],[[[126.00595703125005,9.320947265625009],[126.08759765625004,9.2607421875],[126.19335937499997,9.276708984374961],[126.19199218750005,9.124902343750037],[126.20908203125006,9.080566406249972],[126.30458984375,8.952050781249994],[126.31953125000005,8.844726562499986],[126.26298828125007,8.74394531249996],[126.22021484374997,8.696289062500028],[126.14160156250003,8.627294921875006],[126.13955078125004,8.59565429687504],[126.17304687500003,8.560058593749986],[126.28232421875006,8.539306640625014],[126.3653320312501,8.483886718750012],[126.37978515625005,8.326757812499977],[126.45869140625004,8.20283203125004],[126.45664062500005,8.148779296875034],[126.42529296874996,7.927441406249983],[126.4353515625,7.832812499999974],[126.49443359375,7.75698242187498],[126.54443359375003,7.724804687499997],[126.57011718750002,7.677246093749985],[126.59335937500012,7.546777343749966],[126.5892578125,7.325146484375026],[126.58154296875003,7.247753906249969],[126.5466796875,7.175830078124974],[126.43906250000006,7.012353515624979],[126.29404296875006,6.882324218750043],[126.21689453125005,6.891015625000037],[126.19208984375008,6.852539062500014],[126.24023437500003,6.73388671875],[126.22119140624997,6.483398437500043],[126.18935546875,6.309667968749991],[126.14248046875,6.397558593749962],[126.10976562499998,6.48964843749998],[126.08007812500001,6.733349609374983],[126.04306640625012,6.843164062499966],[125.98496093750006,6.943554687499997],[125.96162109375003,7.033203125000057],[125.90117187500009,7.116992187499974],[125.82441406250004,7.333300781249989],[125.7736328125001,7.322167968750037],[125.68925781250007,7.263037109374977],[125.67021484375006,7.222314453125036],[125.66025390625012,7.160595703124983],[125.64072265625013,7.105078125000034],[125.54218750000004,7.016601562500043],[125.46474609375005,6.911132812500057],[125.40097656250012,6.795751953124991],[125.38066406250007,6.689941406250013],[125.43291015625007,6.607128906250026],[125.48662109375007,6.573730468749971],[125.56455078125005,6.499609374999963],[125.58847656250012,6.465771484374997],[125.67070312500002,6.225],[125.66796874999997,5.97866210937498],[125.6078125,5.870166015624988],[125.455859375,5.664257812500054],[125.34648437500002,5.598974609374976],[125.287890625,5.632275390625011],[125.24101562500002,5.756933593750006],[125.233203125,5.808300781249997],[125.26494140625002,5.925585937500003],[125.26845703125004,6.033154296874969],[125.23154296875006,6.069531250000011],[125.19101562500005,6.0625],[125.17402343750003,6.046972656250034],[125.07617187500003,5.90625],[125.03535156250004,5.870654296875003],[124.97519531250005,5.865722656249972],[124.92734375000005,5.875341796874976],[124.6363281250001,5.998193359375051],[124.39882812500004,6.11972656250002],[124.21279296874998,6.233251953124977],[124.078125,6.404443359375037],[124.04970703125,6.532568359375019],[124.04814453125002,6.666552734374959],[123.9878906250001,6.862988281250011],[123.980859375,6.929687500000014],[123.98525390625,6.993701171875003],[124.04511718750003,7.11411132812502],[124.11757812500005,7.175097656250003],[124.15820312499997,7.218798828125031],[124.19072265625002,7.267333984375058],[124.21289062500001,7.332128906250019],[124.20664062500006,7.396435546874983],[124.18242187500002,7.436718750000012],[124.06796875000005,7.577880859374999],[123.96845703125004,7.664648437499991],[123.76474609375012,7.742626953124983],[123.71738281250006,7.785400390624999],[123.6658203125,7.817773437500022],[123.60888671874997,7.831640625],[123.55322265625001,7.832128906250005],[123.49306640625,7.807910156249959],[123.47744140625,7.756347656250028],[123.48164062500008,7.71025390624996],[123.47636718750007,7.665380859374962],[123.39091796875007,7.407519531250016],[123.28203125000002,7.464111328125],[123.17822265624996,7.52944335937498],[123.15068359375007,7.575195312499986],[123.13876953125012,7.62993164062503],[123.1211914062501,7.666894531250008],[123.09667968749997,7.700439453125],[123.04892578125013,7.614355468749963],[122.98955078125,7.546289062500036],[122.91689453125005,7.530517578125028],[122.84296875000011,7.529296875000043],[122.81875,7.558496093750037],[122.79179687500003,7.722460937499959],[122.71396484375006,7.774121093750011],[122.61621093749997,7.763134765624983],[122.49794921875004,7.672753906250052],[122.47441406250002,7.638964843750003],[122.44863281250004,7.561132812500049],[122.31972656249998,7.34023437499998],[122.25146484375003,7.170019531250034],[122.17617187500004,7.004199218750003],[122.14248046874998,6.949658203124997],[122.09814453124999,6.913720703125051],[122.02763671875007,6.928613281249966],[121.96425781250005,6.968212890625039],[121.90419921875004,7.075195312499985],[121.92460937500002,7.199511718750003],[121.99111328125001,7.278759765624983],[122.04716796875002,7.36357421875003],[122.11484375000006,7.659912109375014],[122.119921875,7.765380859375],[122.13183593749997,7.81049804687504],[122.24335937500004,7.94511718750003],[122.33710937500003,8.028417968750034],[122.38671875000003,8.045898437500043],[122.58945312500013,8.093310546875017],[122.67294921875006,8.133105468750045],[122.80439453125004,8.13369140624998],[122.91113281250003,8.156445312499997],[122.99628906250005,8.220507812500003],[123.00273437500002,8.286914062500031],[122.99882812500002,8.356054687499991],[123.01757812500001,8.398339843749994],[123.05058593750002,8.433935546875048],[123.0958984375001,8.480810546875006],[123.14716796875003,8.516015624999978],[123.29287109375,8.541455078125011],[123.3412109375,8.570410156249963],[123.38017578125002,8.615625],[123.43457031249996,8.70332031250004],[123.49892578125005,8.681542968750037],[123.56367187500008,8.647460937500027],[123.68007812499998,8.620605468749972],[123.78339843750008,8.547705078125048],[123.84921875000005,8.432714843749977],[123.86054687500011,8.376074218749977],[123.87744140624997,8.18881835937502],[123.85341796875004,8.145117187500006],[123.753125,8.05825195312498],[123.79941406250006,8.049121093749989],[123.93115234374997,8.128417968749972],[123.996875,8.158984374999989],[124.159375,8.201464843750031],[124.19765625,8.229541015624974],[124.22578125000003,8.271386718749966],[124.28320312499997,8.385986328125043],[124.32519531249996,8.508447265625037],[124.35791015624997,8.559423828125034],[124.40488281250005,8.599853515625014],[124.45126953125005,8.606347656249994],[124.62177734375008,8.52265625],[124.7311523437501,8.562988281250043],[124.76171875000003,8.689794921875034],[124.78681640625004,8.87412109375002],[124.80615234374997,8.924023437499969],[124.86894531250002,8.972265625000034],[124.94384765624996,8.956689453124966],[125.04638671874997,8.89052734374998],[125.141015625,8.86875],[125.176171875,8.922070312500011],[125.20966796875004,9.027148437500017],[125.24785156250002,9.026562499999983],[125.37558593750012,8.991796875],[125.49873046875004,9.014746093749977],[125.5333984375001,9.140917968750017],[125.51015625,9.27587890624997],[125.41396484375,9.669189453124986],[125.47128906250005,9.756787109374983],[125.52089843750004,9.75913085937502],[125.64248046875005,9.654492187500011],[125.87666015625004,9.513134765624997],[125.95468750000012,9.426660156249966],[126.00595703125005,9.320947265625009]]],[[[126.059375,9.766210937500034],[126.04677734375005,9.760791015625001],[125.99121093750001,9.838525390625023],[125.99863281250013,9.927050781250031],[126.07382812500006,10.05922851562505],[126.12949218750012,9.943554687500026],[126.12890625000003,9.89111328125],[126.12080078125005,9.86518554687504],[126.1725585937501,9.79995117187498],[126.13691406250004,9.767773437499997],[126.059375,9.766210937500034]]],[[[125.28076171874996,9.982177734374986],[125.28769531250006,9.932714843750034],[125.15898437500002,10.062939453125011],[125.13300781250003,10.155029296875027],[125.17587890625006,10.151074218750026],[125.23095703125003,10.115673828124997],[125.28076171874996,9.982177734374986]]],[[[124.59384765625006,9.787207031249963],[124.58427734375002,9.750488281250028],[124.50566406250007,9.753515625000034],[124.47753906250001,9.747900390625034],[124.4034179687501,9.65410156250003],[124.35986328125003,9.630224609375048],[124.12246093749998,9.599316406249969],[123.9356445312501,9.623974609375011],[123.87167968750005,9.675732421874997],[123.82998046875,9.76113281249998],[123.81718750000002,9.817382812499986],[123.86386718750006,9.87880859374998],[123.90888671875008,9.919628906250026],[124.05976562500008,10.000195312500011],[124.09384765625012,10.061328125000031],[124.17285156250003,10.135205078124981],[124.33574218750002,10.159912109375043],[124.35156250000003,10.141357421875],[124.3732421875001,10.129589843749997],[124.40585937500005,10.126416015624969],[124.48632812500001,10.065478515624987],[124.57714843749999,10.026708984374991],[124.55507812499998,9.87919921874996],[124.58222656250003,9.829589843749986],[124.59384765625006,9.787207031249963]]],[[[125.69023437500006,9.914453125000037],[125.67255859375004,9.886474609375028],[125.64863281250004,9.944091796875043],[125.5905273437501,9.99819335937505],[125.53447265625007,10.090087890625028],[125.49482421875004,10.118701171875003],[125.52197265624996,10.191503906249991],[125.5246093750001,10.309716796875009],[125.5801757812501,10.36367187499999],[125.60585937500005,10.37958984375004],[125.64794921874997,10.436816406249974],[125.66679687500002,10.440136718750024],[125.68457031249997,10.392041015624997],[125.64667968750008,10.24541015624996],[125.7033203125001,10.071777343750028],[125.684375,9.963183593750017],[125.69248046875008,9.939013671874989],[125.69023437500006,9.914453125000037]]],[[[119.91621093750004,10.485986328125037],[119.79316406250003,10.455273437499997],[119.76445312500002,10.551611328124991],[119.85205078124996,10.64013671875],[119.95019531249997,10.604785156249989],[120.00839843750012,10.570117187500031],[119.98115234375004,10.538720703125037],[119.91621093750004,10.485986328125037]]],[[[124.31621093750002,10.606005859374974],[124.28847656250005,10.601464843750023],[124.33466796875004,10.706689453124964],[124.37109375000003,10.69135742187504],[124.38232421874997,10.679833984375009],[124.38134765624996,10.632568359374972],[124.31621093750002,10.606005859374974]]],[[[122.64951171875012,10.472705078125003],[122.621875,10.45903320312496],[122.59716796875003,10.46103515625002],[122.53837890625,10.424951171875037],[122.51669921875006,10.492529296875034],[122.5375,10.607568359375021],[122.62578125000009,10.695019531249997],[122.64843749999997,10.72250976562499],[122.67255859375008,10.738818359375031],[122.70126953125006,10.740625],[122.72919921875008,10.706396484375006],[122.73720703125004,10.654589843750017],[122.68125,10.498242187500054],[122.64951171875012,10.472705078125003]]],[[[123.13085937500003,9.064111328124994],[123.06464843750004,9.053369140625037],[122.99472656250006,9.058837890624986],[122.94785156250006,9.10795898437496],[122.86660156249998,9.319824218750043],[122.77246093750001,9.371337890624972],[122.66455078124997,9.41035156250001],[122.61035156250001,9.443212890624963],[122.5625,9.482812500000035],[122.41093750000007,9.69389648437496],[122.39951171875006,9.823046874999989],[122.4255859375,9.896093750000032],[122.47148437500007,9.961523437500034],[122.52324218750002,9.979199218749995],[122.6482421875,9.981542968750034],[122.71298828125006,9.990136718750009],[122.85556640625005,10.0869140625],[122.8658203125001,10.125],[122.86650390625007,10.28403320312502],[122.85234375000002,10.395263671875028],[122.81699218750012,10.503808593750021],[122.85556640625005,10.55341796875001],[122.90585937500012,10.602539062499986],[122.95839843750004,10.698339843750048],[122.96875,10.765722656250006],[122.96972656249997,10.836181640624972],[122.98330078125001,10.886621093750035],[123.02441406250004,10.911816406250011],[123.22177734375006,10.988671875000037],[123.25664062500007,10.99394531249996],[123.51064453125005,10.923046875],[123.5625,10.816064453125051],[123.56757812500008,10.780761718750055],[123.52773437500004,10.662011718750023],[123.49287109375003,10.582324218750031],[123.40693359375003,10.458984375000043],[123.34355468750002,10.325390625000011],[123.29609375000004,10.124511718750028],[123.26621093750006,10.059033203125011],[123.18662109375012,9.933300781249969],[123.16201171875,9.864257812500027],[123.16269531250012,9.714648437500017],[123.14941406249997,9.659326171875023],[123.14980468749998,9.606152343750024],[123.30839843750002,9.356982421874974],[123.32187500000012,9.31748046875002],[123.32050781250003,9.27294921875],[123.293359375,9.217285156250028],[123.22871093750004,9.121386718750031],[123.19248046875005,9.087890625000043],[123.13085937500003,9.064111328124994]]],[[[123.37031250000003,9.449609375000021],[123.3317382812501,9.422949218750006],[123.31601562500006,9.48896484375004],[123.32705078125,9.578076171874997],[123.40371093749998,9.889257812499977],[123.38623046874997,9.967089843750017],[123.51435546875008,10.140332031250054],[123.59287109375005,10.302929687500054],[123.71142578124997,10.473681640625017],[123.72646484375004,10.562207031250026],[123.83154296874997,10.731005859375045],[123.92988281250008,10.96381835937504],[123.92460937500007,11.040917968750023],[123.95009765625005,11.079150390625001],[123.96406250000004,11.13745117187497],[123.96718750000005,11.186914062500023],[124.03886718750002,11.273535156249991],[124.05791015625006,11.217236328124981],[124.03652343750004,11.106689453125012],[124.03984375000002,11.053613281250037],[124.05253906250002,11.02875976562504],[124.05332031250012,10.925781250000014],[124.0275390625001,10.767871093750003],[124.05126953124997,10.585595703124994],[124.0049804687501,10.40009765625004],[123.95214843750001,10.316601562499997],[123.87392578125005,10.257714843749978],[123.78867187500012,10.22080078125002],[123.70048828125007,10.128320312500009],[123.64335937500009,10.020214843750011],[123.63398437500004,9.921728515625018],[123.49355468750001,9.589306640624969],[123.37031250000003,9.449609375000021]]],[[[123.75703125000004,11.28330078125002],[123.815625,11.15073242187502],[123.73671875,11.151464843749991],[123.7076171875001,11.247998046875026],[123.74140625000004,11.279150390624977],[123.75703125000004,11.28330078125002]]],[[[117.31113281250012,8.439599609375051],[117.21855468750006,8.367285156249963],[117.22851562499997,8.45668945312498],[117.25585937500003,8.540966796874997],[117.34990234375002,8.713574218749997],[117.41777343750007,8.766650390624974],[117.52998046875008,8.902587890625043],[117.59326171875001,8.968310546875017],[117.74492187500003,9.09824218750002],[117.88476562499997,9.240673828124997],[117.93154296875,9.251269531250031],[117.98300781250012,9.253417968750014],[118.023828125,9.269775390624972],[118.11484375000005,9.346679687500012],[118.34394531250004,9.602783203125057],[118.53339843750003,9.79365234375004],[118.72753906250001,10.035009765625004],[118.82011718750002,10.10532226562502],[118.8451171875,10.131298828124983],[119.023828125,10.353564453124974],[119.0798828125,10.385839843749977],[119.14306640625004,10.409277343750048],[119.18603515624997,10.439453124999972],[119.22382812500003,10.477294921875043],[119.28701171875004,10.574023437500031],[119.31269531250003,10.687109374999975],[119.29667968750007,10.750976562500028],[119.2611328125,10.845166015625026],[119.30566406250001,10.9736328125],[119.34072265625004,11.032910156249997],[119.46533203125003,11.293798828125034],[119.50126953125009,11.346435546875014],[119.55332031250012,11.31352539062496],[119.5602539062501,11.266796875000038],[119.5345703125,11.15683593750002],[119.5326171875,11.10161132812496],[119.56191406249998,11.045507812499991],[119.52666015625,10.953173828125003],[119.61611328125,10.70737304687502],[119.684375,10.551708984375011],[119.68691406250005,10.500341796875032],[119.59521484375003,10.407421875000026],[119.54052734374996,10.379345703124983],[119.42246093750012,10.354394531249966],[119.36933593750004,10.327294921875037],[119.2847656250001,10.251708984375],[119.23193359375001,10.152148437499974],[119.21855468750002,10.100683593749963],[119.19150390625013,10.061083984374989],[118.94863281249998,9.993457031249974],[118.8346679687501,9.949316406250034],[118.78212890625005,9.91611328125002],[118.75498046875006,9.862109375000031],[118.77382812499998,9.766796874999983],[118.56962890625007,9.422753906249966],[118.50449218750006,9.332666015624994],[118.4349609375,9.256005859375007],[118.34960937500004,9.201464843750003],[118.22929687500002,9.167968750000014],[118.13408203125007,9.101367187500044],[118.06943359375005,8.983544921875023],[117.98955078125002,8.877099609375009],[117.88857421875001,8.798242187500009],[117.77978515625003,8.728613281250032],[117.6798828125001,8.677832031249991],[117.57216796875,8.64199218749998],[117.53964843750012,8.595605468750037],[117.51660156249996,8.538330078124998],[117.46914062500004,8.511376953125009],[117.4125,8.495849609375043],[117.31113281250012,8.439599609375051]]],[[[119.86142578125006,11.52534179687504],[119.88291015625012,11.472412109375],[119.85488281249998,11.393066406249998],[119.83066406250012,11.37568359375001],[119.79863281250009,11.408740234375003],[119.72998046874997,11.431933593750017],[119.72558593750001,11.474658203125017],[119.76142578125004,11.473632812499986],[119.82675781250012,11.515429687499974],[119.86142578125006,11.52534179687504]]],[[[124.57460937499998,11.343066406250031],[124.64433593750006,11.308105468750014],[124.72431640625003,11.322070312500015],[124.82109375000002,11.401416015625017],[124.92998046875,11.372851562499974],[124.99394531250006,11.255908203125044],[125.02656250000004,11.21171875],[125.04433593750004,11.13525390624997],[125.03974609375004,10.951904296875014],[125.01318359374996,10.785693359374989],[125.0337890625001,10.751464843750028],[125.08388671875,10.72158203124998],[125.12753906250012,10.684716796875023],[125.16416015625012,10.637451171874986],[125.1876953125001,10.584863281250023],[125.19716796875,10.45722656250004],[125.26005859375,10.349609375000057],[125.26845703125004,10.307714843750048],[125.25332031250005,10.26381835937498],[125.14843750000001,10.272412109375052],[125.14003906249998,10.23535156250004],[125.14257812499996,10.189453125000028],[125.10537109375005,10.218310546875045],[125.04394531250003,10.323437500000054],[124.9875,10.36757812499998],[125.00488281249997,10.197070312499974],[125.02353515625005,10.115283203125017],[125.02656250000004,10.033105468749964],[124.9291015625,10.095898437499969],[124.81279296875003,10.134619140625047],[124.78076171874997,10.16806640625002],[124.7916992187501,10.274560546875037],[124.78955078124997,10.327539062499994],[124.7376953125,10.439746093750031],[124.79863281250007,10.682226562499963],[124.79716796875002,10.73178710937502],[124.7867187500001,10.781396484375009],[124.738671875,10.879736328124963],[124.66269531250005,10.961962890625017],[124.61611328125,10.962207031249974],[124.50283203124998,10.904443359375023],[124.44550781250003,10.923583984375014],[124.41171875000013,11.150341796875026],[124.36601562500003,11.370703124999977],[124.33095703124998,11.427099609375004],[124.30820312500006,11.486181640624963],[124.33066406250012,11.535205078125003],[124.37412109375006,11.514990234374977],[124.4359375,11.457226562500026],[124.5109375000001,11.423876953124974],[124.54824218750004,11.395019531250043],[124.57460937499998,11.343066406250031]]],[[[124.60839843750003,11.492187500000043],[124.48349609375005,11.485839843749986],[124.4288085937501,11.531738281250014],[124.36035156250003,11.665917968749993],[124.43740234375,11.695019531249969],[124.5109375000001,11.687109375000047],[124.56494140624996,11.639697265624974],[124.6222656250001,11.549560546875],[124.60839843750003,11.492187500000043]]],[[[124.85439453125004,11.594775390624974],[124.83593750000001,11.543310546874977],[124.80664062500003,11.557568359375038],[124.78105468750002,11.580761718750054],[124.74365234374996,11.658544921875006],[124.730859375,11.715332031250028],[124.78837890625002,11.683105468750027],[124.8214843750001,11.62661132812498],[124.85439453125004,11.594775390624974]]],[[[122.49619140625005,11.615087890625034],[122.61269531250001,11.56416015625004],[122.72626953125004,11.607910156249984],[122.83808593750004,11.595654296874983],[122.93125000000012,11.529296875000043],[122.90078125000004,11.487353515625031],[122.89453125000003,11.441308593749978],[123.10273437500004,11.541455078125038],[123.15830078125012,11.53554687499999],[123.1564453125001,11.442529296875051],[123.14414062500006,11.363574218750031],[123.11953125,11.286816406250026],[123.07548828125,11.196875],[123.01650390625,11.116503906249973],[122.93876953125006,11.058154296874989],[122.84667968750003,11.0224609375],[122.8029296875001,10.99003906249996],[122.789453125,10.94121093749996],[122.79111328125005,10.879736328124963],[122.76992187500004,10.823828125000034],[122.67314453125002,10.800927734374978],[122.52207031250006,10.691894531249972],[122.19765625,10.622900390625048],[122.10859375000003,10.575537109374991],[122.05175781250003,10.5140625],[121.98837890625006,10.458300781249989],[121.95400390625,10.444384765625003],[121.93828125000006,10.470898437499981],[121.93378906250003,10.49365234375],[121.98007812500006,10.638574218750035],[121.97236328125008,10.69887695312498],[121.95029296875012,10.757373046874987],[121.96435546874996,10.871679687500006],[122.0207031250001,10.979101562500048],[122.05087890625005,11.097363281249983],[122.0596679687501,11.325683593750043],[122.10351562499997,11.64291992187502],[122.10136718750007,11.680859375000011],[122.06699218750006,11.723730468750048],[121.94082031250004,11.758300781249986],[121.89121093750006,11.790869140625047],[121.91601562499997,11.854345703125006],[121.96367187500002,11.89736328124998],[122.02919921875005,11.895410156250023],[122.08681640625005,11.855078124999977],[122.29072265625008,11.772021484375031],[122.39921875000002,11.702197265625017],[122.49619140625005,11.615087890625034]]],[[[120.03876953125004,11.703320312499969],[119.96386718749997,11.669384765624983],[119.94492187500006,11.690722656249987],[119.9317382812501,11.740332031249963],[119.93281250000003,11.774462890624989],[119.86093750000005,11.953955078124963],[119.91601562500003,11.981347656250037],[119.95654296875001,11.960253906250001],[119.99785156250006,11.93212890625004],[120.03593750000002,11.917236328125027],[120.07070312499998,11.860546875000026],[120.06240234375,11.82133789062503],[120.07314453125005,11.78349609374996],[120.03876953125004,11.703320312499969]]],[[[120.1,12.167675781249983],[120.15468750000005,12.152392578124974],[120.19375,12.167041015625031],[120.22822265625004,12.219824218750034],[120.26054687500002,12.141748046875037],[120.34140625000005,12.077441406249989],[120.31455078125012,12.012402343749969],[120.24345703125002,12.004785156250023],[120.1736328125,12.019628906250018],[120.10009765625001,11.99375],[120.01054687500002,12.008251953125011],[119.95703125000003,12.069238281250009],[119.89609375000005,12.178759765625017],[119.86591796875004,12.199023437499974],[119.86962890624997,12.24399414062499],[119.89179687500003,12.27250976562503],[119.88007812500004,12.27988281250002],[119.88574218749996,12.299853515625003],[119.8966796875001,12.31342773437501],[119.91640625,12.319091796875012],[119.96386718749997,12.270410156250037],[120.07753906250007,12.197753906249986],[120.1,12.167675781249983]]],[[[122.65449218750004,12.30903320312501],[122.6033203125,12.285595703125024],[122.49931640625006,12.383691406250023],[122.4388671875,12.429492187500031],[122.42294921875005,12.455078125],[122.471875,12.491943359375057],[122.60361328125005,12.49160156249998],[122.6736328125,12.42426757812504],[122.68330078125004,12.382324218750014],[122.65449218750004,12.30903320312501]]],[[[125.23955078125002,12.527880859375003],[125.31035156250003,12.446289062499984],[125.32753906249998,12.387207031250028],[125.32021484374998,12.32182617187503],[125.35224609375004,12.292773437499974],[125.40878906250012,12.284863281249969],[125.48125,12.251953125000014],[125.53564453125003,12.191406250000028],[125.50332031249998,12.135791015624974],[125.5133789062501,12.054589843750037],[125.45654296874997,11.952539062500037],[125.46425781250004,11.771582031250018],[125.496875,11.713769531249966],[125.5,11.65541992187498],[125.49179687500006,11.594335937499977],[125.50576171875,11.544238281249987],[125.59296875000004,11.378222656250003],[125.60898437500006,11.323046875000045],[125.58232421875003,11.279492187500054],[125.57353515625002,11.238232421874997],[125.62734375000005,11.233886718749998],[125.70400390625004,11.164794921875043],[125.74912109375005,11.07358398437502],[125.73564453125002,11.049609375000017],[125.67441406250005,11.120800781250054],[125.628125,11.132031250000026],[125.4318359375001,11.112597656249974],[125.31152343750003,11.142285156249983],[125.23339843749997,11.145068359375017],[125.15585937500013,11.267041015624997],[125.08789062500001,11.287353515625057],[125.03427734375012,11.341259765625026],[124.94531250000004,11.47915039062505],[124.91699218750003,11.55839843750003],[124.97890625,11.638476562500001],[124.99824218750004,11.70234375000004],[124.99501953124998,11.764941406250003],[124.93564453125008,11.75463867187504],[124.88427734375003,11.77548828125002],[124.82109375000002,11.852099609375003],[124.79580078125001,11.896337890625034],[124.74980468750006,11.933349609375028],[124.67675781250003,12.020898437500009],[124.571875,12.055126953124969],[124.52910156250002,12.079199218749991],[124.445703125,12.152783203124967],[124.38486328125005,12.24399414062499],[124.32578125000013,12.40380859375004],[124.29472656250006,12.569335937500012],[124.5658203125,12.52622070312502],[124.84013671875006,12.534570312500037],[125.1501953125,12.57255859374996],[125.23955078125002,12.527880859375003]]],[[[123.71660156250007,12.287353515625028],[123.90830078125008,12.169091796875009],[124.04033203125002,11.966796875],[124.05566406249997,11.811572265625001],[124.0455078125001,11.752441406250027],[123.98271484375003,11.818896484374989],[123.84775390625005,11.91357421875],[123.75400390625006,11.934472656249994],[123.72519531250005,11.9515625],[123.73603515625004,12.002636718750026],[123.67480468749997,12.05],[123.66757812500013,12.069335937500028],[123.6120117187501,12.090234375000023],[123.53105468750002,12.19663085937502],[123.47373046875006,12.21665039062502],[123.41884765625001,12.19423828124998],[123.29267578125003,12.036376953124972],[123.1578125000001,11.925634765624963],[123.15585937500005,11.967968749999983],[123.21054687500006,12.10659179687498],[123.24531250000004,12.328027343749966],[123.26718750000005,12.395458984375026],[123.23984375000012,12.494677734374989],[123.2364257812501,12.583496093750055],[123.33701171875012,12.542382812500023],[123.46298828125012,12.501220703124986],[123.558984375,12.444824218750043],[123.57480468750005,12.406933593749969],[123.71660156250007,12.287353515625028]]],[[[122.31083984375002,12.528808593750014],[122.27978515625003,12.498291015625014],[122.26093750000011,12.503076171875009],[122.24785156250007,12.556933593749974],[122.27802734375008,12.592919921875023],[122.2875,12.58925781249998],[122.31083984375002,12.528808593750014]]],[[[122.09404296875002,12.354882812500023],[122.01396484375,12.105615234375035],[121.9601562500001,12.191406250000028],[121.98193359374997,12.2453125],[121.93564453125005,12.29038085937502],[121.9232421875,12.331298828125014],[121.94101562500005,12.385400390625023],[121.98945312500008,12.435302734374972],[122.00156250000005,12.598535156250009],[122.10380859375002,12.650634765625057],[122.14501953124996,12.652636718750017],[122.1302734375,12.61259765625003],[122.13164062500002,12.537548828125026],[122.09404296875002,12.354882812500023]]],[[[123.77539062499996,12.453906250000031],[123.77910156250002,12.366259765625031],[123.74150390625007,12.398535156250034],[123.62060546874996,12.570507812499983],[123.58720703125,12.633300781249984],[123.62148437500005,12.674902343750018],[123.70869140625004,12.610791015625026],[123.77539062499996,12.453906250000031]]],[[[123.28183593750006,12.85341796874998],[123.36718750000001,12.700830078124978],[123.27421875,12.80507812499999],[123.16640625,12.875878906250023],[123.05419921875001,12.993457031250003],[122.97343750000002,13.034716796874958],[122.94902343750002,13.058691406249963],[122.95751953124997,13.107177734374986],[123.01708984375003,13.11616210937504],[123.04355468750006,13.113378906250004],[123.20625,12.905419921875009],[123.28183593750006,12.85341796874998]]],[[[120.70439453125002,13.479492187499986],[120.75537109374996,13.470996093750031],[120.91533203125002,13.501074218750034],[120.98076171875003,13.48598632812498],[121.02470703125,13.428710937500028],[121.07929687500004,13.410742187500006],[121.12246093750004,13.38125],[121.20273437500005,13.432324218749969],[121.284375,13.374121093750004],[121.3568359375,13.265478515624991],[121.44218750000006,13.188427734375011],[121.52275390625006,13.131201171874991],[121.53867187500012,13.088867187499984],[121.48974609374996,13.019580078124989],[121.47480468750004,12.931591796875011],[121.4796875000001,12.837109375000026],[121.540625,12.63818359375],[121.51923828125005,12.584228515625028],[121.45800781250003,12.507958984375037],[121.41230468750003,12.423046875000054],[121.41816406250003,12.388769531249991],[121.40009765625004,12.360742187499964],[121.39433593750002,12.300585937499974],[121.3568359375,12.313085937500034],[121.32236328125005,12.303613281249966],[121.28886718750002,12.276708984374991],[121.23671875000005,12.218798828125003],[121.1554687500001,12.236328125000028],[121.11699218750007,12.253417968750043],[121.10761718750004,12.303613281249966],[121.0833984375,12.338964843749975],[121.0485351562501,12.359960937499991],[120.9625,12.44653320312504],[120.92216796875002,12.511621093749978],[120.92148437500006,12.581103515625017],[120.89941406249997,12.645849609374961],[120.85478515625002,12.703662109375017],[120.79599609375006,12.747998046874997],[120.77636718749996,12.79057617187496],[120.76875,12.840917968750006],[120.76367187499996,12.969824218749975],[120.6802734375001,13.130615234375057],[120.65136718749997,13.169140625],[120.57314453125005,13.208886718750007],[120.50830078124997,13.260058593750045],[120.48066406250003,13.311035156250043],[120.45546875000004,13.393505859375052],[120.43808593750006,13.405419921874994],[120.3875,13.40166015625003],[120.33847656250012,13.412353515624986],[120.35273437500008,13.472949218749989],[120.40126953125,13.517041015624997],[120.46835937500013,13.522412109375026],[120.65332031250003,13.497607421875031],[120.70439453125002,13.479492187499986]]],[[[121.91484375000002,13.540332031250031],[121.97656249999997,13.53740234375006],[121.99570312500006,13.546777343750007],[122.11455078125002,13.463183593750031],[122.10732421875004,13.420849609375026],[122.12236328125003,13.36513671875005],[122.05468749999996,13.26865234375002],[122.04238281250004,13.236181640624975],[122.00488281249997,13.204980468750009],[121.87587890625007,13.281738281250014],[121.82919921875006,13.328613281249972],[121.81503906250012,13.424462890624966],[121.86621093749997,13.566162109375055],[121.91484375000002,13.540332031250031]]],[[[120.27128906250002,13.750683593749983],[120.27285156250005,13.682958984375048],[120.1041992187501,13.782373046875051],[120.09941406250006,13.816943359374989],[120.10341796875,13.842529296875043],[120.12070312500006,13.858056640625009],[120.21142578124996,13.820654296875034],[120.27128906250002,13.750683593749983]]],[[[124.35361328125008,13.632226562500007],[124.32705078125,13.567382812500043],[124.29453125000012,13.590332031249998],[124.24824218750003,13.586669921874972],[124.1753906250001,13.531542968750017],[124.05703125000005,13.605566406250006],[124.03886718750002,13.663134765625003],[124.12373046875005,13.790478515625011],[124.12285156250006,13.979687500000011],[124.15371093750004,14.026171874999974],[124.18623046875008,14.059521484375024],[124.22490234375007,14.077587890624969],[124.3083007812501,13.946972656250011],[124.33671875,13.931103515624969],[124.41718750000003,13.871044921874995],[124.39628906250006,13.750097656250048],[124.40400390625004,13.679443359375043],[124.35361328125008,13.632226562500007]]],[[[122.17539062500006,14.04882812499997],[122.17226562500004,14.00800781250001],[121.95625,14.156054687499974],[121.94638671875012,14.181494140625004],[121.94599609375004,14.205126953125017],[121.95917968750003,14.228759765625043],[122.17539062500006,14.04882812499997]]],[[[122.03349609375002,15.005029296875009],[122.05156250000007,14.969873046875037],[122.03173828125003,14.97163085937504],[122.01728515625008,14.965283203124983],[121.97031250000012,14.89296875],[122.02167968750008,14.759423828124966],[121.98964843750005,14.662158203125045],[121.93300781250005,14.656054687500044],[121.91064453125003,14.666503906250043],[121.92216796875007,14.714550781249983],[121.93457031250003,14.73662109375003],[121.92304687500008,14.8],[121.8892578125001,14.839843750000014],[121.86230468749997,14.917187500000052],[121.82031250000003,14.963574218749997],[121.83984374999997,15.038134765625003],[121.97167968750001,15.046386718749986],[122.03349609375002,15.005029296875009]]],[[[121.10156249999997,18.615283203125017],[121.25449218750012,18.563427734375008],[121.59296875000003,18.37646484375003],[121.71679687499997,18.330078125],[121.84560546875,18.29541015625003],[121.94755859375003,18.28515625],[122.03847656250004,18.327929687499985],[122.07695312500007,18.371679687500034],[122.14667968750003,18.486572265625],[122.22119140624996,18.500634765625023],[122.26552734375005,18.458837890625034],[122.29980468749996,18.402783203124983],[122.31503906250006,18.320312500000057],[122.29384765625005,18.234277343750023],[122.22285156250003,18.157128906250023],[122.17949218750002,18.064257812500017],[122.15097656250005,17.756494140625023],[122.15234374999997,17.664404296875002],[122.1751953125,17.575683593750057],[122.23681640624996,17.434863281250045],[122.26904296874996,17.39526367187497],[122.36230468750001,17.344873046874994],[122.3875,17.306787109374966],[122.39287109375002,17.238378906249977],[122.40751953125,17.178125],[122.46787109375008,17.155126953124977],[122.5191406250001,17.124853515625034],[122.5,17.058007812499994],[122.46796875000003,16.990039062500017],[122.42578124999997,16.822656250000023],[122.22587890625002,16.43520507812505],[122.21416015625007,16.351513671874955],[122.13515625000005,16.18481445312503],[121.97470703125012,16.157910156249955],[121.78867187500005,16.07744140624999],[121.6851562500001,16.014746093750002],[121.59531250000012,15.933251953125023],[121.5609375,15.826757812499977],[121.59042968750005,15.77802734375001],[121.60917968750007,15.726025390624983],[121.60703125000005,15.669824218749994],[121.5791992187501,15.623193359374994],[121.48984375000012,15.509521484375028],[121.45205078125004,15.416650390625023],[121.41191406250002,15.375048828124974],[121.39228515625004,15.324414062499969],[121.39892578124997,15.2666015625],[121.43496093749998,15.216308593749972],[121.54394531250003,14.999169921874966],[121.660546875,14.789501953124967],[121.68564453125012,14.765429687500044],[121.69541015625006,14.737304687500002],[121.62656250000008,14.68173828125005],[121.62792968749996,14.581152343749975],[121.6485351562501,14.481494140625015],[121.75185546874998,14.234179687499989],[121.76660156249997,14.16806640625002],[121.80048828125004,14.113867187499991],[121.85332031250007,14.063085937500034],[121.91171875000005,14.020410156250051],[122.07958984374997,13.947119140625034],[122.14433593750002,13.932714843750034],[122.21171875000002,13.930175781250057],[122.22841796874998,13.97949218749997],[122.2875,13.996191406250006],[122.27441406249996,14.044726562500031],[122.20253906250001,14.111669921874991],[122.19970703125003,14.148046875000034],[122.2375,14.175048828125028],[122.28261718750005,14.190820312500037],[122.38369140625004,14.263867187499997],[122.49082031250013,14.32236328125002],[122.6271484375001,14.317529296875009],[122.76103515625,14.284863281250011],[122.85605468750005,14.25078125],[122.93417968750012,14.18808593750002],[123.01455078125005,14.079833984374986],[123.0709960937501,13.959960937499986],[123.070703125,13.902734374999964],[123.05693359375007,13.845458984375028],[123.05996093750004,13.788769531250026],[123.10195312499998,13.750244140624986],[123.23144531249996,13.747363281250017],[123.29697265625013,13.83642578125004],[123.30537109375003,13.936572265625017],[123.25927734374997,13.975439453125034],[123.28046875000004,14.024804687499966],[123.32031249999996,14.061669921875023],[123.37744140624997,14.028662109375047],[123.43232421875003,13.966259765625026],[123.63281249999997,13.898486328124989],[123.68408203125001,13.897021484375045],[123.72597656250005,13.884326171875031],[123.81572265625002,13.837109375000011],[123.85761718750003,13.799609375],[123.8062500000001,13.721728515625045],[123.60712890625004,13.704443359374975],[123.54960937500007,13.645751953125014],[123.6081054687501,13.528076171875028],[123.70361328124996,13.431591796874995],[123.76484375000003,13.353515624999986],[123.81923828124998,13.269482421875011],[123.8166015625001,13.19160156250004],[123.78515625000003,13.110546875000054],[123.8727539062501,13.116992187500031],[123.95517578125005,13.099707031249977],[124.069140625,13.031933593750024],[124.10458984375005,13.025],[124.14277343750004,13.035791015625007],[124.13730468750006,12.791162109374994],[124.05976562500008,12.567089843749997],[123.96171875,12.594970703124998],[123.87783203125005,12.689697265625014],[123.894921875,12.804980468749974],[123.94853515625007,12.916406250000023],[123.91796874999996,12.939941406250014],[123.86386718750006,12.930664062499998],[123.80234375000006,12.90556640625003],[123.73603515625004,12.896923828125054],[123.62675781250006,12.911767578124966],[123.40234374999996,13.033105468749994],[123.31093750000004,13.044091796875009],[123.2904296875,13.099023437500009],[123.29550781250005,13.215576171875043],[123.20595703125005,13.353515624999986],[123.19160156250004,13.402880859375003],[123.16328125000004,13.44174804687502],[122.8961914062501,13.59194335937498],[122.8634765625001,13.617236328124974],[122.78134765625005,13.737060546875055],[122.59521484374997,13.90761718749998],[122.54306640625005,13.925048828124984],[122.48632812499997,13.929980468750017],[122.46796875000003,13.886718749999986],[122.49375,13.820214843750037],[122.50419921875007,13.763085937500023],[122.50019531250005,13.703173828124989],[122.50800781250004,13.656835937499963],[122.59619140624996,13.562011718750014],[122.609375,13.517138671875015],[122.66787109374998,13.395361328124991],[122.67509765625007,13.253173828124972],[122.59990234375002,13.194140625000031],[122.5152343750001,13.260009765625028],[122.5125,13.313623046875037],[122.49794921875004,13.363525390624984],[122.40693359375004,13.49277343750002],[122.37656250000012,13.520605468750004],[122.2052734375001,13.648242187499989],[122.07275390625003,13.788378906250031],[121.77792968750006,13.93764648437498],[121.74287109375004,13.945849609375045],[121.69169921875002,13.93457031249997],[121.64345703125004,13.915966796874995],[121.50107421875008,13.8421875],[121.45078125000005,13.790771484374986],[121.44628906250001,13.711865234374981],[121.344140625,13.649121093749997],[121.20351562500005,13.640283203124966],[121.09550781250006,13.679492187500045],[121.00615234375007,13.758105468749989],[120.93232421875004,13.76186523437505],[120.84072265625,13.884716796875026],[120.72910156250013,13.900537109374964],[120.63710937499998,13.804492187500031],[120.6173828125001,13.9953125],[120.61679687500006,14.188037109375003],[120.64267578125006,14.24433593750001],[120.68828125000006,14.291210937499967],[120.92207031250011,14.493115234374983],[120.95156250000004,14.557958984374961],[120.94130859374998,14.645068359375031],[120.88808593749998,14.715771484375056],[120.80449218750002,14.758789062500014],[120.70791015625004,14.776611328125014],[120.63828125000006,14.816162109374984],[120.58369140625003,14.88125],[120.54677734374998,14.76611328125],[120.58271484375004,14.594628906249964],[120.58867187500002,14.483105468749983],[120.55566406250001,14.441357421875011],[120.49570312500006,14.44018554687504],[120.43876953125002,14.45336914062497],[120.39609375000012,14.493310546875021],[120.36523437499997,14.608300781250009],[120.28388671875008,14.684375],[120.25078125000003,14.793310546875034],[120.21386718750003,14.808789062499997],[120.13798828125003,14.800390624999961],[120.08212890625012,14.851074218749984],[120.04453125000006,14.978125],[120.03662109374996,15.114550781250017],[120.0049804687501,15.229248046875028],[119.959375,15.34023437499999],[119.93281250000003,15.430908203124986],[119.89160156250001,15.837695312499989],[119.88144531250006,15.875],[119.85966796875006,15.90576171875],[119.80820312500006,15.951953125000015],[119.76894531249998,16.008447265624966],[119.76181640625006,16.054980468750042],[119.7725585937501,16.25512695312503],[119.79023437500003,16.303320312500002],[119.83076171875004,16.326562500000023],[119.88613281250004,16.287402343750045],[119.93037109375008,16.23876953125],[119.98515625000006,16.215429687500034],[120.03339843750004,16.184570312500057],[120.12402343750001,16.066210937500017],[120.15976562500013,16.047656250000045],[120.27128906250002,16.051416015625023],[120.33701171875008,16.066455078125074],[120.36875,16.109570312499955],[120.38876953125006,16.160937500000045],[120.38925781250005,16.22163085937495],[120.325,16.400341796874955],[120.30527343750006,16.52924804687501],[120.3043945312501,16.645458984374983],[120.32119140625005,16.761865234374994],[120.40888671875003,16.955615234375017],[120.42011718750003,17.09008789062497],[120.41171875000012,17.269921875000023],[120.42714843750007,17.376904296874955],[120.42451171875003,17.438330078125034],[120.37207031250001,17.535107421875036],[120.35839843749997,17.63818359375],[120.50507812500003,18.16264648437499],[120.55097656250004,18.26406250000005],[120.58447265624999,18.36875],[120.5997070312501,18.507861328125074],[120.709375,18.545947265625017],[120.81376953125002,18.603417968749994],[120.8677734375001,18.598925781250045],[120.925,18.585107421874994],[121.05136718750012,18.613671875000023],[121.10156249999997,18.615283203125017]]],[[[121.92167968750006,18.89472656250001],[121.85820312500002,18.822900390625023],[121.82519531250001,18.842724609374983],[121.8607421875,18.912548828124983],[121.85976562500005,18.936767578125057],[121.88886718750003,18.991552734375006],[121.94335937500003,19.010449218749955],[121.98789062500005,18.956640625],[121.92167968750006,18.89472656250001]]],[[[121.25224609375002,19.082421874999966],[121.2466796875001,19.015185546875045],[121.19609375000002,19.050683593749994],[121.18486328125007,19.101416015625002],[121.18994140625001,19.13891601562503],[121.21318359375007,19.18359374999997],[121.24472656250005,19.143017578124955],[121.25224609375002,19.082421874999966]]],[[[121.52089843750004,19.361962890624994],[121.53125,19.271337890625006],[121.47207031250005,19.27333984375005],[121.38291015625005,19.328466796875006],[121.37460937500005,19.356298828124977],[121.37597656249997,19.379687500000045],[121.39160156249997,19.39936523437495],[121.52089843750004,19.361962890624994]]],[[[121.96005859375006,20.365869140625048],[121.94130859375,20.353710937499955],[121.91406250000001,20.359423828125074],[121.94121093750002,20.453710937500006],[121.99121093750003,20.479589843750034],[122.03115234374998,20.469384765624994],[121.96005859375006,20.365869140625048]]],[[[121.878125,20.781884765624966],[121.82958984374997,20.70029296875006],[121.7906250000001,20.701171875000057],[121.79648437500006,20.74663085937499],[121.84785156250003,20.841259765624983],[121.86699218750002,20.839208984375034],[121.878125,20.781884765624966]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"North Korea","sov_a3":"PRK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"North Korea","adm0_a3":"PRK","geou_dif":0,"geounit":"North Korea","gu_a3":"PRK","su_dif":0,"subunit":"North Korea","su_a3":"PRK","brk_diff":0,"name":"Dem. Rep. Korea","name_long":"Dem. Rep. Korea","brk_a3":"PRK","brk_name":"Dem. Rep. Korea","brk_group":null,"abbrev":"N.K.","postal":"KP","formal_en":"Democratic People's Republic of Korea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Korea, Dem. Rep.","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":9,"pop_est":22665345,"gdp_md_est":40000,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KP","iso_a3":"PRK","iso_n3":"408","un_a3":"408","wb_a2":"KP","wb_a3":"PRK","woe_id":-99,"adm0_a3_is":"PRK","adm0_a3_us":"PRK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":15,"long_len":15,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PRK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.90527343750003,39.536279296874994],[124.84892578125002,39.507568359375],[124.84609375000005,39.55888671874996],[124.88955078125,39.60209960937499],[124.93457031249997,39.6078125],[124.90527343750003,39.536279296874994]]],[[[129.97695312500002,42.974853515625],[130.02226562500002,42.96259765625001],[130.08261718750006,42.97416992187496],[130.12480468750007,42.95600585937498],[130.15126953125005,42.91796875000006],[130.24033203125006,42.891796874999955],[130.248828125,42.87260742187496],[130.24667968750012,42.74482421874995],[130.29560546875004,42.684960937500016],[130.3607421875,42.630859375],[130.45029296875012,42.58168945312502],[130.49824218750004,42.570507812499955],[130.5269531250001,42.535400390625],[130.55410156250005,42.47470703124997],[130.61796875000007,42.415625],[130.6515625000001,42.372509765624955],[130.65800781250007,42.327783203124994],[130.68730468750007,42.30253906249999],[130.63652343750002,42.274853515624955],[130.56923828125,42.291699218750004],[130.45751953124997,42.30170898437501],[130.31474609375002,42.21411132812499],[130.2357421875,42.183203125000034],[130.1798828125001,42.096972656250045],[130.06826171874997,42.045751953125],[130.00732421875003,41.99116210937498],[129.92822265624997,41.896728515625],[129.8763671875,41.805517578125006],[129.75634765624997,41.712255859375006],[129.68632812500007,41.594970703125],[129.68242187500002,41.494335937500004],[129.75898437500004,41.39150390625002],[129.76582031250004,41.30385742187502],[129.7121093750001,41.123681640624994],[129.74199218750007,40.93227539062499],[129.70869140625004,40.857324218749994],[129.34111328125,40.72631835937506],[129.24511718749994,40.661035156249966],[129.10976562500005,40.49106445312497],[128.94521484375,40.427880859374994],[128.84296875000004,40.35849609374998],[128.70136718750004,40.317529296874994],[128.6107421875,40.19790039062505],[128.51123046874997,40.130224609375006],[128.39296875,40.08896484375006],[128.30449218750002,40.03593749999999],[128.10634765625,40.032568359375006],[127.96660156250002,39.99560546875002],[127.86708984374998,39.89594726562498],[127.5681640625,39.78198242187503],[127.52744140625008,39.69570312500005],[127.54726562500004,39.56279296874996],[127.54892578125013,39.461083984375016],[127.52285156250005,39.37739257812504],[127.45742187500004,39.400976562500034],[127.422265625,39.37358398437496],[127.38349609375004,39.296142578125],[127.39453125000003,39.207910156249966],[127.49697265625,39.179492187500045],[127.58095703124998,39.14326171875004],[127.69892578125004,39.12504882812496],[127.78613281250003,39.084130859374966],[127.97167968749997,38.89799804687499],[128.12304687500003,38.81640625000006],[128.1625,38.78613281250003],[128.2494140625,38.74521484375003],[128.32949218750002,38.68090820312497],[128.37460937500012,38.6234375],[128.33945312500006,38.60786132812501],[128.27929687499997,38.523779296875034],[128.22314453124997,38.41699218750003],[128.16865234375,38.35932617187501],[128.10625,38.32734374999998],[128.03896484375,38.30854492187498],[127.90527343749997,38.30043945312502],[127.78466796874997,38.30771484374998],[127.74550781250001,38.31923828125002],[127.57949218750005,38.3125],[127.53271484375003,38.30498046874996],[127.29404296875005,38.31328125],[127.16953125000008,38.304541015625034],[127.09033203125003,38.28388671875001],[127.00966796875005,38.24052734374996],[126.94003906250005,38.17558593749999],[126.87890625000003,38.10605468750003],[126.75429687500005,37.97895507812498],[126.66679687500006,37.91718750000001],[126.66650390625001,37.82792968750002],[126.66455078124996,37.80073242187498],[126.63388671875012,37.78183593750006],[126.62324218750008,37.790185546874966],[126.57275390625003,37.79682617187498],[126.36992187500007,37.87836914062501],[126.203125,37.828515624999966],[126.16103515625,37.76372070312499],[126.11669921875001,37.74291992187503],[126.05029296874996,37.86982421875004],[125.94169921875007,37.87368164062502],[125.76914062500005,37.98535156250003],[125.6950195312501,37.962695312500045],[125.67617187500005,37.91772460937503],[125.58154296874997,37.81503906249997],[125.4493164062501,37.73022460937503],[125.40664062500004,37.71904296874996],[125.35781250000005,37.72480468749998],[125.36484375000006,37.748242187499955],[125.31074218750003,37.843505859375],[125.10195312500007,37.88208007812505],[125.0267578125,37.92260742187503],[124.98876953124996,37.93144531249999],[125.19316406250007,38.03779296874998],[125.24667968750012,38.05683593750004],[125.20673828125008,38.08154296874999],[125.16259765624996,38.093652343749994],[124.99501953124998,38.077832031249955],[124.90703125000002,38.112646484375034],[124.77949218750008,38.101513671874976],[124.69091796874997,38.12919921875001],[124.87451171874999,38.23339843750003],[124.88271484375005,38.29497070312496],[124.88056640625005,38.34165039062506],[124.97373046875012,38.48012695312502],[125.06738281250003,38.556738281250006],[125.30966796875005,38.665380859375],[125.41533203125002,38.68041992187497],[125.49179687500006,38.67612304687498],[125.5544921875,38.686230468750004],[125.48867187500005,38.72778320312503],[125.42421875000005,38.746875],[125.29892578125012,38.74296875000001],[125.16884765625,38.80551757812506],[125.15732421875005,38.871533203125004],[125.40966796875003,39.28837890625001],[125.41318359375012,39.326269531250006],[125.37363281250006,39.42763671874996],[125.36083984375003,39.52661132812497],[125.18007812500005,39.58349609375],[125.10009765625003,39.59033203124997],[124.86787109375005,39.70180664062505],[124.77529296875,39.75805664062506],[124.73886718750005,39.74150390624996],[124.73222656250002,39.65219726562498],[124.69921874999997,39.63237304687502],[124.63828125000008,39.61508789062506],[124.60761718750003,39.71694335937502],[124.55742187500002,39.79057617187502],[124.40380859375003,39.86552734375001],[124.34863281249997,39.906884765624994],[124.37509765625013,39.99614257812496],[124.362109375,40.004052734374994],[124.38662109375005,40.10424804687506],[124.4810546875001,40.181640625],[124.71240234374997,40.319238281249966],[124.77197265624996,40.38374023437498],[124.88935546875011,40.459814453125006],[124.94228515625,40.45815429687502],[124.996875,40.46474609375005],[125.01337890625003,40.497851562500045],[125.02597656250012,40.52387695312501],[125.07294921875008,40.547460937500034],[125.1859375,40.58940429687504],[125.31445312499996,40.644628906250006],[125.41689453125,40.65991210937503],[125.5425781250001,40.74257812499999],[125.59384765625008,40.77895507812502],[125.6451171875001,40.77895507812502],[125.65917968749997,40.7958984375],[125.68828125,40.83867187500001],[125.72832031250002,40.86669921875006],[125.78398437500007,40.87202148437498],[125.87490234375005,40.892236328124994],[125.98906250000002,40.904638671875034],[126.06679687500005,40.97407226562498],[126.0931640625,41.02368164062506],[126.14453124999996,41.078271484374994],[126.25361328125011,41.137792968750034],[126.3287109375001,41.225683593750006],[126.41181640625008,41.32133789062502],[126.45146484375007,41.35185546875002],[126.49042968750003,41.35805664062505],[126.51357421875005,41.39399414062501],[126.5401367187501,41.49555664062498],[126.57832031250008,41.594335937500034],[126.60126953125004,41.640966796875034],[126.6969726562501,41.69189453125003],[126.72158203125004,41.716552734375],[126.74306640625,41.724853515625],[126.78769531250012,41.71821289062498],[126.84726562500005,41.74799804687501],[126.90351562500008,41.78105468749999],[126.95478515625004,41.76948242187501],[127.00693359375006,41.742041015625034],[127.06132812500006,41.68735351562498],[127.0853515625,41.643798828125],[127.12841796874996,41.60742187500006],[127.13671874999996,41.554541015625034],[127.17968750000001,41.531347656250006],[127.27080078125,41.51982421874996],[127.4203125,41.483789062499994],[127.5169921875,41.48173828125002],[127.57216796875005,41.45473632812502],[127.68769531250004,41.439990234375045],[127.91865234375004,41.46113281250001],[128.0130859375,41.44868164062504],[128.05273437499994,41.415625],[128.11123046875,41.389257812500006],[128.14941406249997,41.38774414062496],[128.20029296875012,41.43300781250005],[128.25488281249997,41.50654296875001],[128.29091796875,41.56279296875002],[128.28925781250004,41.60742187500006],[128.25781250000003,41.655371093750034],[128.18173828125006,41.700048828125006],[128.13193359375006,41.769140625000034],[128.0841796875001,41.84057617187503],[128.05605468750002,41.86376953125006],[128.03291015625004,41.89848632812502],[128.0287109375,41.95161132812501],[128.04521484375007,41.9875],[128.16015625,42.011621093749966],[128.3078125000001,42.02563476562497],[128.42724609374997,42.01074218749997],[128.62675781250002,42.02084960937498],[128.74902343749994,42.04067382812502],[128.83984375000003,42.03784179687497],[128.92343750000006,42.038232421874966],[128.96064453125004,42.06879882812498],[129.07724609375006,42.14238281249995],[129.13369140625005,42.16850585937496],[129.1955078125001,42.21845703125001],[129.20537109375007,42.27055664062496],[129.21777343750003,42.31269531250001],[129.25253906250006,42.35786132812498],[129.3136718750001,42.41357421874997],[129.36582031250006,42.43920898437503],[129.42363281250002,42.43588867187498],[129.48486328124997,42.41030273437502],[129.52373046875002,42.38466796875002],[129.56757812500004,42.39208984375003],[129.60390625,42.43588867187498],[129.62792968749997,42.44428710937501],[129.69785156250012,42.448144531249994],[129.71972656249997,42.475],[129.746484375,42.60380859374999],[129.77343749999997,42.70546875000002],[129.77919921875,42.77656250000001],[129.8415039062501,42.89423828125001],[129.86103515625004,42.96508789062497],[129.89824218750002,42.998144531250034],[129.94121093750007,42.99565429687499],[129.97695312500002,42.974853515625]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Israel","sov_a3":"ISR","adm0_dif":1,"level":2,"type":"Disputed","admin":"Palestine","adm0_a3":"PSX","geou_dif":0,"geounit":"Palestine","gu_a3":"PSX","su_dif":0,"subunit":"Palestine","su_a3":"PSX","brk_diff":0,"name":"Palestine","name_long":"Palestine","brk_a3":"PSX","brk_name":"Palestine","brk_group":null,"abbrev":"Pal.","postal":"PAL","formal_en":"West Bank and Gaza","formal_fr":null,"note_adm0":"Partial self-admin.","note_brk":"Partial self-admin.","name_sort":"Palestine (West Bank and Gaza)","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":8,"pop_est":4119083,"gdp_md_est":11950.77,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PS","iso_a3":"PSE","iso_n3":"275","un_a3":"275","wb_a2":"GZ","wb_a3":"WBG","woe_id":-99,"adm0_a3_is":"PSE","adm0_a3_us":"PSX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"PSE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[34.34833984375004,31.292919921874955],[34.2453125000001,31.208300781250045],[34.2125,31.292285156250017],[34.198144531249994,31.322607421875063],[34.3873046875,31.48378906250002],[34.47734375000002,31.584863281250023],[34.52412109375004,31.541650390624994],[34.5255859375001,31.52563476562503],[34.35019531250006,31.36274414062498],[34.34833984375004,31.292919921874955]]],[[[35.53144531250004,31.98491210937499],[35.55898437500005,31.765527343749966],[35.499414062499994,31.67236328125],[35.465429687500055,31.56235351562506],[35.45058593749999,31.479296875000014],[35.40869140624997,31.48291015625003],[35.27666015625007,31.42280273437495],[35.101171875,31.366210937499968],[34.90781250000006,31.351318359375057],[34.88046875,31.368164062499996],[34.87275390625004,31.396875],[34.92919921874997,31.53657226562504],[34.950976562500074,31.602294921875025],[35.03466796874997,31.67324218749999],[35.153417968750006,31.73447265625003],[35.20371093750006,31.75],[35.19804687500002,31.776318359375043],[35.1271484375001,31.816748046875002],[35.05322265625003,31.837939453124957],[34.983007812500006,31.81679687500002],[34.9611328125001,31.823339843750002],[34.95380859375004,31.841259765625036],[34.97832031250002,31.86640625],[34.98974609374997,31.91328124999995],[34.978808593750074,31.99160156250002],[34.97138671875004,32.08710937500001],[34.955957031249994,32.1609375],[34.99951171875003,32.28105468750002],[35.01054687500002,32.33818359375001],[35.06503906250006,32.46044921875006],[35.19326171875005,32.53442382812503],[35.303808593750006,32.512939453125],[35.362109375000074,32.50747070312505],[35.38671875000003,32.493017578125034],[35.402636718750074,32.45063476562501],[35.484375,32.40166015624999],[35.5514648437501,32.39550781250005],[35.57207031250002,32.237890625],[35.534765625,32.10302734374997],[35.53144531250004,31.98491210937499]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Qatar","sov_a3":"QAT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Qatar","adm0_a3":"QAT","geou_dif":0,"geounit":"Qatar","gu_a3":"QAT","su_dif":0,"subunit":"Qatar","su_a3":"QAT","brk_diff":0,"name":"Qatar","name_long":"Qatar","brk_a3":"QAT","brk_name":"Qatar","brk_group":null,"abbrev":"Qatar","postal":"QA","formal_en":"State of Qatar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Qatar","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":4,"pop_est":833285,"gdp_md_est":91330,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"QA","iso_a3":"QAT","iso_n3":"634","un_a3":"634","wb_a2":"QA","wb_a3":"QAT","woe_id":-99,"adm0_a3_is":"QAT","adm0_a3_us":"QAT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"QAT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[51.26796875000002,24.607226562500003],[51.17802734375001,24.58671875],[51.093359375,24.564648437499997],[51.02275390625002,24.565234375],[50.96601562500001,24.573925781249997],[50.928320312500006,24.595117187499994],[50.85566406250001,24.679638671874997],[50.80439453125001,24.789257812499997],[50.8359375,24.850390625],[50.84677734375,24.888574218749994],[50.77734375,25.177441406249997],[50.75458984375001,25.39926757812499],[50.76289062500001,25.444726562499994],[50.80263671875002,25.4970703125],[50.86865234375,25.612695312499994],[50.90380859374999,25.724072265624994],[51.003125,25.9814453125],[51.10810546875001,26.08056640625],[51.262304687500006,26.153271484374997],[51.38906250000002,26.011132812499994],[51.543066406250006,25.902392578125],[51.572265625,25.781005859374996],[51.526953125,25.68212890625],[51.4853515625,25.524707031250003],[51.51025390625,25.45234375],[51.51953125,25.38974609374999],[51.561425781250016,25.284472656250003],[51.601953125000016,25.14794921875],[51.60888671875,25.052880859374994],[51.5869140625,24.96484375],[51.53339843750001,24.890869140625],[51.42792968750001,24.668261718750003],[51.396484375,24.64511718749999],[51.26796875000002,24.607226562500003]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Saudi Arabia","sov_a3":"SAU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saudi Arabia","adm0_a3":"SAU","geou_dif":0,"geounit":"Saudi Arabia","gu_a3":"SAU","su_dif":0,"subunit":"Saudi Arabia","su_a3":"SAU","brk_diff":0,"name":"Saudi Arabia","name_long":"Saudi Arabia","brk_a3":"SAU","brk_name":"Saudi Arabia","brk_group":null,"abbrev":"Saud.","postal":"SA","formal_en":"Kingdom of Saudi Arabia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Saudi Arabia","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":6,"mapcolor13":7,"pop_est":28686633,"gdp_md_est":576500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"SA","iso_a3":"SAU","iso_n3":"682","un_a3":"682","wb_a2":"SA","wb_a3":"SAU","woe_id":-99,"adm0_a3_is":"SAU","adm0_a3_us":"SAU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":12,"long_len":12,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SAU.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[41.98769531250005,16.715625],[42.06503906250006,16.710058593750006],[42.033203124999964,16.741943359374996],[42.02636718750003,16.757666015625006],[42.059960937499994,16.803515625000017],[42.17041015625003,16.708642578124966],[42.1671875000001,16.59638671875001],[42.15781250000006,16.570703125000023],[42.127734375000074,16.594824218750063],[42.10839843750003,16.61845703124999],[42.10234375000002,16.64394531250002],[42.07177734375003,16.671484375000034],[41.96416015625002,16.65346679687502],[41.897265625000074,16.684277343749983],[41.80156250000002,16.778759765624955],[41.7760742187501,16.846875],[41.81611328125004,16.860156250000017],[41.85820312500002,16.892919921875034],[41.88496093750004,16.946826171875017],[41.86044921875006,17.002539062499974],[41.917285156250074,16.99365234375003],[41.94794921875009,16.936425781250023],[41.953906250000074,16.80625],[41.9625,16.778662109375034],[41.94667968749999,16.748925781250023],[41.98769531250005,16.715625]]],[[[36.90166015625001,25.383056640624968],[36.87519531250004,25.383056640624968],[36.80507812500005,25.45073242187499],[36.7638671875001,25.500585937500034],[36.722070312499994,25.534033203125002],[36.53027343750003,25.6015625],[36.50429687499999,25.645117187499977],[36.53359375,25.688720703125],[36.554101562499994,25.64536132812503],[36.58876953125005,25.619824218749983],[36.74755859374997,25.558740234374966],[36.924414062500006,25.42553710937503],[36.9547851562501,25.414648437500006],[36.90166015625001,25.383056640624968]]],[[[36.595507812500074,25.71279296874999],[36.58613281250004,25.69921875],[36.54394531249997,25.73427734375002],[36.54648437500006,25.811621093749977],[36.58271484375004,25.855517578125045],[36.57988281250002,25.795410156250053],[36.595605468749994,25.734863281249968],[36.595507812500074,25.71279296874999]]],[[[44.71650390625004,29.193603515625032],[45.05029296875003,29.167089843750034],[45.49892578124999,29.131542968749983],[45.94970703125003,29.09584960937499],[46.35644531250003,29.06367187500001],[46.53144531250004,29.096240234374985],[46.7248046875001,29.07460937500002],[46.982226562500074,29.045654296875],[47.138769531250055,29.02617187500002],[47.433203125,28.98955078125002],[47.52128906250002,28.83784179687501],[47.55322265625003,28.731542968750034],[47.583105468750006,28.627978515624985],[47.671289062499994,28.533154296875036],[47.87197265625005,28.53544921874996],[48.04960937500007,28.5375],[48.26875,28.54052734375003],[48.442480468750006,28.542919921874983],[48.49853515624997,28.44887695312499],[48.523046875,28.35502929687499],[48.626367187499994,28.13256835937503],[48.773730468750074,27.959082031250034],[48.80898437499999,27.895898437499962],[48.83281250000002,27.800683593750023],[48.80722656250006,27.765283203124994],[48.797167968750074,27.72431640625001],[48.90644531250004,27.62905273437505],[49.08691406250003,27.548583984375],[49.15751953125002,27.528222656250023],[49.2375,27.49272460937499],[49.17509765625002,27.437646484375048],[49.281542968750074,27.310498046874983],[49.40527343749997,27.180957031249957],[49.537695312500006,27.151757812499962],[49.71650390625004,26.955859375000045],[49.986132812500074,26.828906250000017],[50.14980468749999,26.662646484374985],[50.13466796875005,26.659521484375063],[50.08662109375003,26.67641601562502],[50.02636718750003,26.69921874999997],[50.00810546875002,26.678515625000014],[50.01132812500006,26.608789062500023],[50.02734375000002,26.52685546875003],[50.11074218750005,26.455957031249966],[50.184960937499994,26.404931640624966],[50.21386718750003,26.30849609375005],[50.15546875000004,26.100537109374955],[50.13525390624997,26.100683593749977],[50.09599609375007,26.118701171875017],[50.05390625000004,26.12285156249996],[50.03164062499999,26.11098632812505],[50.08105468749997,25.96137695312501],[50.13027343750005,25.84663085937501],[50.18964843750004,25.755810546874983],[50.23896484375004,25.622851562500074],[50.28125,25.566113281249955],[50.45517578125006,25.424804687500057],[50.5084960937501,25.306689453125045],[50.55791015625001,25.086669921875],[50.66689453125005,24.963818359375008],[50.72558593749997,24.869384765625057],[50.80439453125004,24.78925781249998],[50.85566406250004,24.679638671875008],[50.928320312500006,24.595117187500023],[50.96601562500004,24.573925781249983],[51.022753906250074,24.56523437499999],[51.093359375000055,24.56464843749995],[51.17802734375007,24.586718750000017],[51.26796875,24.607226562500017],[51.33847656250006,24.56435546874999],[51.411230468750055,24.570800781250057],[51.41835937499999,24.530957031250008],[51.369921875000074,24.476904296875034],[51.30986328125002,24.340380859375014],[51.39521484375009,24.31884765624997],[51.4767578125001,24.308203125000034],[51.534765625,24.28632812500001],[51.56835937500003,24.286181640625074],[51.56835937500003,24.257910156250006],[51.57216796874999,24.128320312499962],[51.592578125000074,24.07885742187503],[51.62929687499999,24.03500976562506],[51.684375,23.969531250000042],[51.739355468750006,23.90400390625001],[51.79433593750005,23.838476562499977],[51.849414062500074,23.772998046875045],[51.904394531250006,23.70751953125003],[51.95947265625003,23.641992187500023],[52.01445312500002,23.57646484374999],[52.06943359375006,23.51098632812497],[52.124511718749964,23.445458984375023],[52.179492187500074,23.379980468750006],[52.2345703125001,23.314453125],[52.28955078125003,23.248974609374983],[52.34453125000002,23.183496093750048],[52.39960937500004,23.117968750000017],[52.45458984374997,23.052441406249983],[52.50957031250002,22.986962890624966],[52.55507812500005,22.932812499999955],[52.63916015625003,22.922509765624994],[52.66591796875005,22.919287109375034],[52.74160156249999,22.910009765625002],[52.85927734374999,22.895605468750006],[53.01191406250004,22.877001953125045],[53.19238281250003,22.854931640624983],[53.39404296874997,22.830322265625025],[53.6095703125001,22.80400390624999],[53.832128906250055,22.776806640624955],[54.054589843749994,22.749658203125023],[54.2701171875,22.72333984375001],[54.47167968749997,22.698730468750053],[54.652246093749994,22.676660156249994],[54.8048828125001,22.658007812500017],[54.92246093750006,22.643652343750006],[54.99824218750003,22.634375],[55.025,22.631152343750045],[55.104296875000074,22.621484375000023],[55.11943359375002,22.623925781249994],[55.18583984375007,22.7041015625],[55.25927734375003,22.590917968750034],[55.32011718750007,22.496923828125063],[55.40380859374997,22.36782226562505],[55.49277343750006,22.230664062499983],[55.57773437500006,22.099511718749994],[55.64101562499999,22.001855468749994],[55.60742187499997,21.90039062500003],[55.57080078124997,21.78969726562505],[55.53417968749997,21.679003906250045],[55.49755859374997,21.568310546874955],[55.46093749999997,21.457617187499977],[55.42431640624997,21.34692382812497],[55.38769531249997,21.236230468749994],[55.35107421874997,21.12553710937499],[55.31445312499997,21.014794921874994],[55.277929687500006,20.904101562500017],[55.24121093749997,20.79340820312501],[55.20458984374997,20.682714843750034],[55.168066406250006,20.572021484375025],[55.131445312500006,20.46132812500005],[55.094726562499964,20.350634765625045],[55.058203125,20.239941406249983],[55.02148437499997,20.129248046874977],[54.97734375000002,19.995947265625006],[54.87109374999997,19.960498046875074],[54.69902343750002,19.903125],[54.52705078125004,19.845800781250063],[54.35498046874997,19.788476562500023],[54.183007812500044,19.731152343749955],[54.01093750000003,19.673828125],[53.83886718750003,19.616503906250045],[53.66689453125005,19.559130859375017],[53.4948242187501,19.50180664062506],[53.32285156250006,19.444482421874994],[53.15078125,19.387158203124955],[52.9787109375001,19.32978515625001],[52.80673828125006,19.272460937500057],[52.634667968749994,19.21513671874999],[52.46269531250001,19.157812500000034],[52.290625,19.100488281249994],[52.118554687499994,19.043164062499955],[51.977636718750006,18.996142578125074],[51.742968750000074,18.964550781250008],[51.514941406250074,18.93388671874999],[51.258398437500006,18.899365234374983],[50.95,18.857861328124955],[50.7082031250001,18.825292968749977],[50.355273437500074,18.777783203124983],[50.038964843749994,18.73525390625002],[49.742089843749994,18.695312499999968],[49.445117187500074,18.65532226562499],[49.19238281250003,18.621337890625],[49.04199218750003,18.58178710937503],[48.86484375,18.495214843750063],[48.59296875000004,18.362402343750006],[48.315820312500044,18.227050781250057],[48.17216796875002,18.156933593749983],[48.0216796875001,17.97695312499999],[47.9455078125001,17.885839843750002],[47.80781250000004,17.72109375],[47.70371093750006,17.596826171874994],[47.57958984374997,17.448339843750034],[47.52539062499997,17.31611328125001],[47.44179687499999,17.111865234375045],[47.36962890625003,17.060400390625063],[47.251269531250074,16.993945312500017],[47.14355468749997,16.946679687499966],[46.97568359375006,16.953466796875034],[46.879980468750006,17.079003906250023],[46.77851562500003,17.212109374999955],[46.72763671875006,17.265576171875008],[46.68203125,17.2685546875],[46.51347656250002,17.251660156250008],[46.31035156250002,17.231298828125063],[46.07080078124997,17.25317382812497],[45.79443359375003,17.278417968750063],[45.5353515625001,17.30205078124999],[45.40654296875002,17.319775390624955],[45.236621093750074,17.406201171874983],[45.19277343749999,17.423388671875017],[45.148046875000055,17.427441406249955],[44.9464843750001,17.429589843750023],[44.7467773437501,17.431689453125017],[44.54648437500006,17.404345703125045],[44.35468750000004,17.414355468750045],[44.1559570312501,17.398535156250006],[44.08593750000003,17.365527343750045],[44.00820312499999,17.36748046874999],[43.95966796875004,17.33833007812501],[43.91699218749997,17.32470703124997],[43.86640625000004,17.349609375],[43.804296875,17.344140625000023],[43.712988281250055,17.365527343750045],[43.653417968750006,17.421875],[43.597265625,17.47143554687503],[43.53925781250004,17.49873046875001],[43.47421875,17.515917968750045],[43.41796875000003,17.516259765625023],[43.34609375,17.486035156249983],[43.30214843750005,17.45678710937497],[43.19091796875003,17.359375],[43.186328125000074,17.32470703124997],[43.23691406250006,17.266455078125006],[43.2213867187501,17.23925781249997],[43.1559570312501,17.20502929687504],[43.1359375000001,17.11298828125001],[43.12617187500003,17.06245117187501],[43.11650390625007,16.941992187500006],[43.145605468750006,16.84677734375006],[43.18447265625005,16.811816406250045],[43.186328125000074,16.77099609374997],[43.16503906249997,16.689404296874955],[43.104785156250074,16.664160156250063],[43.06074218750004,16.586621093749983],[43.033593750000044,16.550390624999977],[42.98632812499997,16.50908203124999],[42.79931640624997,16.37177734375001],[42.78984375000002,16.4515625],[42.73066406250004,16.569824218750025],[42.726367187500074,16.65332031249997],[42.69882812500006,16.736962890624966],[42.64746093749997,16.801367187500034],[42.55292968750009,16.868457031250017],[42.54414062500003,16.959667968749955],[42.475,17.049853515625045],[42.38330078124997,17.122460937499994],[42.33242187499999,17.256640625000074],[42.293945312499964,17.434960937499966],[42.05224609375003,17.669335937500023],[41.75,17.88574218749997],[41.65800781250002,18.007666015625034],[41.50761718750002,18.256103515625025],[41.431738281250006,18.452441406250045],[41.22949218750002,18.678417968749983],[41.220800781250006,18.765234375],[41.19082031250005,18.871191406250006],[41.14414062500006,18.989062500000042],[41.116015625000074,19.082177734374994],[40.9132812500001,19.49013671874999],[40.8478515625001,19.555273437500006],[40.79160156250006,19.64638671875002],[40.77705078125004,19.716894531250006],[40.75917968750005,19.755468750000034],[40.6159179687501,19.822363281249977],[40.48222656250002,19.993457031250017],[40.080664062500006,20.265917968750017],[39.88408203125002,20.292968750000025],[39.728320312500074,20.390332031249955],[39.61367187499999,20.517675781249977],[39.49121093749997,20.73701171874998],[39.27607421875004,20.973974609375034],[39.09355468750007,21.31035156249999],[39.150683593750074,21.432763671874962],[39.14707031250006,21.518994140624955],[39.0910156250001,21.663964843749994],[39.02978515624997,21.775976562500006],[38.98789062500006,21.88173828125005],[39.0211914062501,22.033447265625057],[39.03398437500002,22.20336914062503],[39.06992187500006,22.29365234375004],[39.09589843750004,22.392773437499983],[39.06201171874997,22.592187500000023],[39.00136718750005,22.698974609375],[39.007421875,22.770068359375017],[38.938769531250074,22.804785156249977],[38.88291015625006,22.88203125],[38.94111328125009,22.881835937500057],[38.835546875,22.989062500000045],[38.796875,23.048583984375],[38.7570312500001,23.19428710937501],[38.70605468750002,23.305517578125034],[38.54228515625002,23.557910156250017],[38.46416015625002,23.71186523437504],[38.28886718750002,23.910986328125002],[38.098632812499964,24.05800781250002],[37.977832031250074,24.124560546875017],[37.91972656250002,24.185400390625063],[37.8209960937501,24.1875],[37.71337890625003,24.274414062499968],[37.63818359374997,24.277734375000023],[37.54306640625006,24.291650390625023],[37.43095703125002,24.459033203125017],[37.3384765625,24.615820312499977],[37.18085937500003,24.82001953125001],[37.22041015625004,24.873339843750045],[37.26630859375004,24.96005859375003],[37.24345703125002,25.073437499999955],[37.21835937500006,25.150683593750074],[37.14882812499999,25.291113281249974],[36.920703125000074,25.641162109375074],[36.86015625000002,25.692480468750034],[36.76269531250003,25.751318359375034],[36.70253906250005,25.902880859375017],[36.675195312499994,26.03886718749999],[36.51875,26.10488281250005],[36.24960937500006,26.594775390625017],[36.09375,26.765820312499955],[36.03203125000002,26.881005859374966],[35.85166015625006,27.070458984375023],[35.76298828125002,27.25878906250003],[35.581347656250074,27.432470703125063],[35.42382812500003,27.733789062499962],[35.18046875000002,28.03486328125004],[35.0783203125001,28.087011718750006],[34.82753906250005,28.108593749999955],[34.722070312499994,28.130664062500014],[34.625,28.064501953125017],[34.61621093749997,28.148339843749962],[34.6833007812501,28.26411132812501],[34.779882812500006,28.50732421875],[34.79912109375002,28.720507812500017],[34.95078125,29.353515625],[35.1637695312501,29.320947265625023],[35.33916015625002,29.294091796874962],[35.59531250000006,29.25488281249997],[35.86035156249997,29.214257812499966],[36.01542968750002,29.190478515625014],[36.068457031250006,29.200537109375002],[36.28281250000006,29.35537109375002],[36.47607421874997,29.49511718749997],[36.59179687500003,29.666113281250006],[36.703906250000074,29.831640624999977],[36.755273437500044,29.86601562499996],[36.92705078125001,29.897070312499974],[37.1994140625001,29.946289062499968],[37.46923828125003,29.995068359374955],[37.49072265625003,30.01171874999997],[37.55361328125005,30.144580078124957],[37.63359375000002,30.313281250000045],[37.64990234374997,30.330957031249994],[37.66972656250007,30.34814453125003],[37.862890625,30.44262695312503],[37.980078125000055,30.5],[37.81298828124997,30.669287109375006],[37.65546875000003,30.82895507812503],[37.47900390624997,31.00776367187495],[37.32949218750005,31.146826171875034],[37.10527343750002,31.35517578125004],[36.95859375000006,31.491503906250014],[37.215625,31.55610351562501],[37.49335937500003,31.62587890625002],[37.77382812499999,31.69633789062499],[38.111425781250006,31.78115234375005],[38.37548828124997,31.847460937499957],[38.769628906250006,31.946484374999983],[38.962304687499994,31.994921874999985],[38.99707031249997,32.00747070312505],[39.145410156249994,32.12451171875],[39.36865234374997,32.09174804687498],[39.70410156250003,32.04252929687499],[40.02783203124997,31.995019531249994],[40.3693359375001,31.93896484375003],[40.47890625000005,31.893359374999985],[40.80839843750001,31.72543945312506],[41.02246093750003,31.61635742187505],[41.27246093749997,31.48901367187503],[41.58505859375006,31.32973632812499],[41.799707031249994,31.22036132812502],[42.07441406250004,31.08037109374999],[42.28857421874997,30.92041015625],[42.55976562500004,30.71777343750003],[42.857714843750074,30.495214843749974],[43.103125,30.32221679687501],[43.44082031250005,30.083984375000057],[43.77373046875002,29.84921875],[44.09960937499997,29.61933593749998],[44.36074218750005,29.43525390624995],[44.69082031250005,29.20234375],[44.71650390625004,29.193603515625032]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Singapore","sov_a3":"SGP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Singapore","adm0_a3":"SGP","geou_dif":0,"geounit":"Singapore","gu_a3":"SGP","su_dif":0,"subunit":"Singapore","su_a3":"SGP","brk_diff":0,"name":"Singapore","name_long":"Singapore","brk_a3":"SGP","brk_name":"Singapore","brk_group":null,"abbrev":"Sing.","postal":"SG","formal_en":"Republic of Singapore","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Singapore","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":4657542,"gdp_md_est":237300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"SG","iso_a3":"SGP","iso_n3":"702","un_a3":"702","wb_a2":"SG","wb_a3":"SGP","woe_id":-99,"adm0_a3_is":"SGP","adm0_a3_us":"SGP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"SGP.geojson"},"geometry":{"type":"Polygon","coordinates":[[[103.9697265625,1.331445312499994],[103.81992187500003,1.265380859375],[103.65019531249999,1.325537109374991],[103.70527343750001,1.4234375],[103.81796875000003,1.447070312499989],[103.90898437499997,1.415966796874997],[103.96083984375002,1.392236328124994],[103.99638671874999,1.365234375],[103.9697265625,1.331445312499994]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Syria","sov_a3":"SYR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Syria","adm0_a3":"SYR","geou_dif":0,"geounit":"Syria","gu_a3":"SYR","su_dif":0,"subunit":"Syria","su_a3":"SYR","brk_diff":0,"name":"Syria","name_long":"Syria","brk_a3":"SYR","brk_name":"Syria","brk_group":null,"abbrev":"Syria","postal":"SYR","formal_en":"Syrian Arab Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Syrian Arab Republic","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":2,"mapcolor13":6,"pop_est":20178485,"gdp_md_est":98830,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SY","iso_a3":"SYR","iso_n3":"760","un_a3":"760","wb_a2":"SY","wb_a3":"SYR","woe_id":-99,"adm0_a3_is":"SYR","adm0_a3_us":"SYR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SYR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[42.358984375,37.10859375],[42.35908203125001,37.095019531249996],[42.35009765624999,37.060595703124996],[42.2373046875,36.9611328125],[42.083984375,36.826025390625],[41.97402343750002,36.7408203125],[41.78857421875,36.59716796875],[41.65019531250002,36.56640625],[41.41679687500002,36.5146484375],[41.35419921875001,36.464404296874996],[41.295996093750006,36.383349609374996],[41.261816406250006,36.2724609375],[41.25175781250002,36.203027343749994],[41.24560546875,36.073388671874994],[41.30019531250002,35.93896484374999],[41.352636718750006,35.809960937499994],[41.359375,35.724609375],[41.3541015625,35.640429687499996],[41.303320312500006,35.550634765625],[41.24833984375002,35.427490234375],[41.21640625,35.28818359374999],[41.19960937500002,35.027392578124996],[41.19921875,34.805322265624994],[41.19472656250002,34.768994140625],[41.09902343750002,34.6123046875],[40.987011718750004,34.429052734375],[40.93505859375,34.38657226562499],[40.689453125,34.33203125],[40.421484375,34.19775390625],[40.12197265625002,34.04765625],[39.85,33.911376953125],[39.564453125,33.768359375],[39.26835937500002,33.620019531249994],[39.056738281250006,33.514013671875],[38.773535156250006,33.372216796874994],[38.515625,33.236621093749996],[38.25429687500002,33.09921875],[38.055761718750006,32.994873046875],[37.75410156250001,32.829833984375],[37.57744140625001,32.733056640624994],[37.31757812500001,32.590771484375],[37.088964843750006,32.46552734375],[36.818359375,32.317285156249994],[36.479199218750004,32.36132812499999],[36.3720703125,32.3869140625],[36.284277343750006,32.457470703125],[36.2197265625,32.4951171875],[36.05947265625002,32.5337890625],[35.95644531250002,32.66669921875],[35.89472656250001,32.713769531249994],[35.78730468750001,32.734912109374996],[35.80146484375001,32.78232421875],[35.85683593750002,32.86235351562499],[35.91347656250002,32.94960937499999],[35.88203125000001,32.998095703124996],[35.87177734375001,33.039355468749996],[35.86806640625002,33.08857421875],[35.90664062500002,33.135693359375],[35.88847656250002,33.19248046874999],[35.858789062500016,33.24956054687499],[35.837011718750006,33.278222656249994],[35.83710937500001,33.330517578125],[35.8515625,33.370458984375],[35.869140625,33.43173828124999],[35.914746093750004,33.465380859374996],[35.92656250000002,33.500292968749996],[35.96757812500002,33.534570312499994],[36.02226562500002,33.5625],[36.03447265625002,33.58505859375],[36.02666015625002,33.597949218749996],[35.9716796875,33.623095703124996],[35.9423828125,33.667578125],[35.96845703125001,33.732421875],[35.98613281250002,33.75263671875],[36.01884765625002,33.783935546875],[36.09218750000002,33.831591796874996],[36.149804687500016,33.839501953124994],[36.199414062500004,33.83955078125],[36.28339843750001,33.835595703124994],[36.348535156250016,33.82705078124999],[36.36503906250001,33.83935546875],[36.36279296875,33.855126953124994],[36.2822265625,33.894189453124994],[36.27783203125,33.92529296875],[36.2978515625,33.958642578124994],[36.354882812500016,34.01132812499999],[36.4228515625,34.049853515624996],[36.45751953125,34.0568359375],[36.53515625,34.134326171874996],[36.5849609375,34.221240234374996],[36.50439453125,34.43237304687499],[36.45556640625,34.466162109375],[36.37646484375,34.495166015624996],[36.32988281250002,34.499609375],[36.326269531250006,34.513330078124994],[36.388671875,34.56689453125],[36.43300781250002,34.61347656249999],[36.383886718750006,34.65791015625],[36.29628906250002,34.6787109375],[36.26357421875002,34.632861328124996],[36.15107421875001,34.62861328124999],[35.97626953125001,34.629199218749996],[35.899316406250016,34.852099609374996],[35.88789062500001,34.948632812499994],[35.88994140625002,35.060302734375],[35.94306640625001,35.223828125],[35.918066406250006,35.29951171875],[35.916015625,35.350537109375],[35.902441406250006,35.420703125],[35.76445312500002,35.571582031249996],[35.83964843750002,35.84921875],[35.892675781250006,35.916552734374996],[35.96757812500002,35.91005859374999],[36.12734375000002,35.831445312499994],[36.15361328125002,35.833886718749994],[36.20195312500002,35.93754882812499],[36.24882812500002,35.972705078124996],[36.34755859375002,36.003515625],[36.37539062500002,36.171240234375],[36.421484375,36.203466796875],[36.47705078125,36.220703125],[36.562402343750016,36.223925781249996],[36.63671875,36.233984375],[36.64140625000002,36.263525390625],[36.5375,36.45742187499999],[36.54667968750002,36.50634765625],[36.596875,36.7013671875],[36.62841796875,36.777685546875],[36.658593750000016,36.80253906249999],[36.7765625,36.79267578124999],[36.94179687500002,36.7583984375],[36.9853515625,36.702392578125],[37.06621093750001,36.652636718749996],[37.18740234375002,36.655908203124994],[37.32705078125002,36.64658203125],[37.43632812500002,36.64331054687499],[37.523535156250006,36.6783203125],[37.7203125,36.74370117187499],[37.81796875,36.765576171875],[37.90664062500002,36.79462890625],[38.19169921875002,36.9015625],[38.30585937500001,36.893359375],[38.38398437500001,36.879248046875],[38.44375,36.862255859375],[38.57802734375002,36.789111328124996],[38.68886718750002,36.715087890625],[38.7666015625,36.693115234375],[38.906445312500004,36.694677734375],[39.1083984375,36.680566406249994],[39.35664062500001,36.681591796875],[39.50146484374999,36.70224609375],[39.6865234375,36.738623046875],[40.01640625000002,36.826074218749994],[40.450390625,37.00888671875],[40.705664062500006,37.097705078124996],[40.815625,37.108154296875],[40.958886718750016,37.109179687499996],[41.1021484375,37.085888671875],[41.2646484375,37.0693359375],[41.33955078125001,37.07080078125],[41.51552734375002,37.089160156249996],[41.74355468750002,37.126123046874994],[41.88681640625,37.156396484374994],[42.05986328125002,37.2060546875],[42.16787109375002,37.288623046874996],[42.202734375,37.29726562499999],[42.24755859375,37.2822265625],[42.2685546875,37.2765625],[42.312890625000016,37.22958984374999],[42.358984375,37.10859375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Thailand","sov_a3":"THA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Thailand","adm0_a3":"THA","geou_dif":0,"geounit":"Thailand","gu_a3":"THA","su_dif":0,"subunit":"Thailand","su_a3":"THA","brk_diff":0,"name":"Thailand","name_long":"Thailand","brk_a3":"THA","brk_name":"Thailand","brk_group":null,"abbrev":"Thai.","postal":"TH","formal_en":"Kingdom of Thailand","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Thailand","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":8,"mapcolor13":1,"pop_est":65905410,"gdp_md_est":547400,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TH","iso_a3":"THA","iso_n3":"764","un_a3":"764","wb_a2":"TH","wb_a3":"THA","woe_id":-99,"adm0_a3_is":"THA","adm0_a3_us":"THA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"THA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.66308593749997,6.521923828124983],[99.64404296875003,6.516113281250043],[99.60664062500004,6.596826171874966],[99.65400390625008,6.714111328124972],[99.70136718750004,6.570556640625028],[99.66308593749997,6.521923828124983]]],[[[99.07841796875007,7.591845703125003],[99.10439453125005,7.471289062500035],[99.06787109374997,7.495898437499988],[99.03769531250012,7.54848632812505],[99.03808593750003,7.625732421874972],[99.04511718750004,7.636523437500045],[99.07841796875007,7.591845703125003]]],[[[98.5919921875001,7.933935546874963],[98.57998046875005,7.917041015624989],[98.52939453125012,8.108544921875009],[98.604296875,8.057324218749969],[98.5919921875001,7.933935546874963]]],[[[98.40908203125005,7.90205078125004],[98.39843750000003,7.828417968749959],[98.35742187499996,7.829443359374991],[98.315625,7.782324218749991],[98.2962890625,7.776074218750054],[98.26230468750006,7.92607421874996],[98.30136718750012,8.136230468749972],[98.32207031250006,8.166308593749974],[98.3509765625,8.110644531250003],[98.4349609375,8.085644531249969],[98.398828125,7.964550781249982],[98.40908203125005,7.90205078125004]]],[[[98.30751953125005,9.051464843749997],[98.25078125000002,9.04082031249996],[98.25839843750006,9.095410156249983],[98.27363281250004,9.129882812499986],[98.30117187499998,9.139111328124997],[98.3125,9.080371093750031],[98.30751953125005,9.051464843749997]]],[[[100.070703125,9.586035156250018],[100.07529296875012,9.529443359375037],[100.05371093749997,9.461425781250028],[99.96240234375003,9.421630859375],[99.93125,9.476074218749998],[99.93955078125006,9.559960937500037],[99.95361328125003,9.581005859374969],[100.04296875000003,9.576855468750011],[100.070703125,9.586035156250018]]],[[[100.07412109375005,9.696679687499994],[100.06445312499997,9.679980468749974],[100.02568359375007,9.711718750000045],[99.99804687500003,9.747607421874974],[99.98339843749997,9.79355468750002],[100.04345703125003,9.79165039062498],[100.07304687500002,9.74912109375002],[100.07412109375005,9.696679687499994]]],[[[102.60644531250003,11.676513671875012],[102.58994140625012,11.572167968749994],[102.5328125000001,11.614941406249997],[102.54648437500005,11.667773437500017],[102.56894531250012,11.691699218750003],[102.60644531250003,11.676513671875012]]],[[[102.42675781250003,11.988720703125026],[102.42998046875,11.964746093750037],[102.378125,11.982958984375017],[102.35996093750006,11.97441406249996],[102.30195312500004,11.98081054687502],[102.27333984374998,12.119335937499997],[102.27744140625006,12.151855468750043],[102.31884765624997,12.141650390625017],[102.378125,12.072851562500034],[102.4083984375001,12.025097656249983],[102.42675781250003,11.988720703125026]]],[[[100.0036132812501,20.37958984375001],[100.12246093750005,20.316650390625057],[100.11494140625004,20.257666015625034],[100.13974609375012,20.245410156250017],[100.17412109375002,20.27275390624999],[100.21806640625007,20.33959960937503],[100.266015625,20.377294921874977],[100.31796875000006,20.38588867187505],[100.37314453125006,20.340380859375017],[100.43154296875005,20.24072265625003],[100.4916015625,20.184082031250053],[100.51953125000003,20.17792968750004],[100.53994140624998,20.13237304687499],[100.54306640625012,20.088671875000074],[100.51455078124998,19.996337890625],[100.4662109375,19.888916015625057],[100.39765625000004,19.756103515625],[100.42011718750004,19.644482421874983],[100.51357421875005,19.553466796875],[100.62548828125003,19.499853515625006],[100.74394531250002,19.514746093750034],[100.80683593750004,19.541943359374955],[100.85820312500002,19.585058593750034],[100.90605468750006,19.605371093750023],[100.96650390625003,19.610791015624955],[101.1546875,19.579199218750006],[101.21191406249997,19.54833984375003],[101.22080078125006,19.486621093750074],[101.19755859375007,19.327929687500074],[101.22656250000003,19.211523437499974],[101.2798828125001,19.088916015625045],[101.2863281250001,18.977148437500006],[101.22050781250002,18.792773437500017],[101.16552734375003,18.618310546874994],[101.10634765625005,18.533544921875063],[101.06044921875,18.479003906250057],[101.04697265625012,18.44199218750006],[101.05058593750002,18.407031250000045],[101.09277343750003,18.35454101562499],[101.1375,18.28686523437497],[101.14873046875007,18.22216796875003],[101.14394531250005,18.14262695312499],[101.11328125000003,18.033544921874977],[100.99902343750003,17.797167968750045],[100.90849609375002,17.583886718750023],[100.955859375,17.541113281250006],[101.04570312500002,17.509960937499983],[101.10517578125004,17.47954101562499],[101.16748046874997,17.49902343749997],[101.29970703125,17.625],[101.4136718750001,17.71875],[101.55507812500005,17.812353515625034],[101.56367187500004,17.820507812500008],[101.6875,17.889404296875],[101.74414062500003,17.952685546875014],[101.77480468750004,18.03339843750004],[101.81865234375002,18.06464843750001],[101.87548828124997,18.046435546875017],[101.94746093750003,18.081494140624983],[102.03457031250005,18.169824218750023],[102.10146484374998,18.210644531249983],[102.14824218750002,18.20385742187503],[102.23164062500004,18.148974609375045],[102.35185546875002,18.045947265625017],[102.45878906250002,17.984619140625053],[102.55253906250007,17.965087890624968],[102.5982421875001,17.92675781249997],[102.59609375000005,17.86962890624997],[102.61679687500006,17.833349609375034],[102.66064453124997,17.817968750000034],[102.680078125,17.824121093750023],[102.6751953125,17.851757812499983],[102.71757812500002,17.892236328124966],[102.80742187500002,17.945556640625],[102.89863281250004,17.976904296874977],[102.99140625000008,17.986230468750023],[103.05136718750006,18.02851562500001],[103.0912109375,18.13823242187499],[103.14853515625006,18.221728515625045],[103.19970703124997,18.259472656249983],[103.26318359374997,18.27846679687505],[103.27958984375002,18.304980468750017],[103.24892578125,18.338964843750034],[103.25175781250002,18.373486328124955],[103.2882812500001,18.408398437499955],[103.36699218750007,18.42333984374997],[103.48798828125004,18.418164062499983],[103.62968750000002,18.38256835937503],[103.79228515625002,18.316503906249977],[103.89882812500005,18.295312500000023],[103.949609375,18.31899414062505],[104.04873046875005,18.216699218749994],[104.19619140625005,17.988378906250002],[104.32265625,17.81582031250002],[104.428125,17.69897460937503],[104.53925781250003,17.60927734375005],[104.65585937500012,17.546728515625006],[104.7396484375,17.461669921875],[104.81601562500012,17.30029296874997],[104.75898437500004,17.0771484375],[104.7435546875,16.884375],[104.75058593750012,16.647558593750063],[104.81933593750003,16.46606445312503],[104.94990234375004,16.339941406250006],[105.02578125000005,16.237988281250008],[105.04716796875007,16.160253906249977],[105.14873046875007,16.09355468749999],[105.33066406250005,16.037890625000014],[105.40625,15.987451171875051],[105.37558593750006,15.942187500000045],[105.37324218750004,15.889697265625017],[105.39892578124997,15.829882812500015],[105.46201171875012,15.780419921874964],[105.56240234375004,15.741259765625072],[105.62207031250003,15.699951171874998],[105.64101562499998,15.656542968750045],[105.63886718750008,15.585937500000055],[105.615625,15.488281250000057],[105.57373046875003,15.413232421875037],[105.51318359374997,15.360888671875031],[105.50585937499997,15.31962890625006],[105.49042968750004,15.256591796875],[105.49042968750004,15.127587890625007],[105.5333984375001,15.041601562499991],[105.54667968750002,14.932470703124961],[105.52304687500012,14.843310546875003],[105.50019531250004,14.661230468750032],[105.49736328125,14.590673828124963],[105.47558593750001,14.530126953124977],[105.42265625000007,14.471630859375052],[105.34218750000005,14.416699218750052],[105.24365234375003,14.367871093750052],[105.1833007812501,14.346240234374989],[105.16914062500003,14.336083984374966],[105.12597656250003,14.280957031250011],[105.07412109375004,14.227441406250037],[105.03369140624997,14.227392578125034],[105.00341796875003,14.254443359375031],[104.98242187500001,14.289453124999966],[104.96972656249997,14.36611328125005],[104.87880859375005,14.40400390625004],[104.77900390625004,14.427832031250004],[104.57578125000012,14.390039062500037],[104.41162109374997,14.369580078125038],[104.2277343750001,14.3955078125],[104.05429687500012,14.362744140624983],[103.9818359375,14.35791015624997],[103.8986328125001,14.362792968749986],[103.81835937500003,14.362158203125034],[103.74189453125004,14.374169921874994],[103.600390625,14.421093749999967],[103.54638671875003,14.417431640625026],[103.43242187500006,14.378613281250011],[103.31347656249997,14.351318359375055],[103.19941406250004,14.332617187499977],[103.0310546875,14.252539062500006],[102.90927734375006,14.136718750000028],[102.8732421875001,14.054882812499967],[102.81279296875002,13.972460937500045],[102.72890625,13.841894531250006],[102.62041015625002,13.716943359375035],[102.54472656250007,13.659960937499974],[102.56552734375012,13.62636718749998],[102.546875,13.585693359375043],[102.428515625,13.567578124999983],[102.33632812500005,13.560302734375014],[102.31972656250005,13.539990234375052],[102.3307617187501,13.288232421875009],[102.36298828125004,13.192968749999963],[102.42265625000007,13.07797851562499],[102.46171875,13.015039062500037],[102.49072265624997,12.828320312500011],[102.4996093750001,12.669970703125003],[102.62968750000002,12.569921875000048],[102.70332031250004,12.49350585937502],[102.75566406250002,12.42626953125],[102.73740234375006,12.383398437499963],[102.70625,12.255664062499974],[102.73662109375007,12.08979492187501],[102.91806640625006,11.732080078124964],[102.93388671875,11.706689453125037],[102.91230468750004,11.703857421875],[102.88369140624998,11.772753906250003],[102.79160156250006,11.888623046874983],[102.76298828125002,12.012451171874986],[102.65488281250012,12.148828124999966],[102.594140625,12.203027343749994],[102.57480468750006,12.15781250000002],[102.54023437500004,12.109228515624975],[102.43408203124997,12.179248046875031],[102.34316406250005,12.252587890624966],[102.25908203125002,12.394335937499974],[102.2484375,12.36142578125002],[102.22958984375006,12.33164062499999],[102.1341796875,12.443017578125037],[102.034375,12.531884765625023],[101.9445312500001,12.563671875000011],[101.88906250000005,12.59326171875],[101.83574218750002,12.640380859375014],[101.72363281250003,12.689355468750035],[101.44492187500006,12.618945312499989],[101.09023437500005,12.67363281250003],[100.95371093750012,12.621240234375023],[100.89775390625007,12.653808593749986],[100.86328124999996,12.714501953125009],[100.89638671875,12.818164062499989],[100.90390625000005,13.034912109375],[100.94609375000007,13.187255859375043],[100.92626953125001,13.303027343750003],[100.94697265625004,13.357568359375007],[100.96269531250007,13.43198242187499],[100.90654296875002,13.462402343750055],[100.65605468750002,13.521289062499974],[100.60292968750004,13.568164062500017],[100.53642578125002,13.514453125],[100.23564453125,13.484472656250018],[100.12236328125002,13.439550781250018],[100.01748046875,13.353173828125007],[99.99052734375007,13.24345703125003],[100.05107421875007,13.171240234374977],[100.08994140625006,13.045654296874972],[99.98203125000012,12.771484374999986],[99.96396484375006,12.690039062500006],[100.00566406250007,12.354736328124986],[99.98906250000007,12.170800781249994],[99.93027343750006,12.047460937500006],[99.8371093750001,11.936621093749991],[99.79873046875,11.748779296875],[99.72548828125,11.661767578125037],[99.62734375,11.462890625000014],[99.56132812500002,11.215185546875006],[99.51435546875004,11.100585937500014],[99.48691406250006,10.889550781250009],[99.28476562500012,10.569140625000017],[99.23730468750003,10.388134765624997],[99.16503906250003,10.319824218750027],[99.19033203125005,10.265869140625043],[99.19462890625002,10.175439453125009],[99.16933593750005,9.934179687499977],[99.16074218750006,9.734033203124966],[99.19130859375005,9.62714843750004],[99.28828125000008,9.414599609374989],[99.2650390625,9.352978515625054],[99.25390625000003,9.265234375000034],[99.33544921875003,9.225439453125006],[99.39384765625002,9.21372070312502],[99.72382812500008,9.314208984374972],[99.83554687500012,9.28837890625003],[99.87753906250006,9.194628906250031],[99.9046875,9.11289062499999],[99.96064453125004,8.671240234374991],[99.98955078125007,8.589208984374977],[100.05625,8.511132812499966],[100.129296875,8.428076171875006],[100.15410156250002,8.442968750000018],[100.1588867187501,8.473779296874994],[100.16347656250005,8.508398437500034],[100.22871093750003,8.424707031250037],[100.27939453125006,8.26850585937501],[100.453515625,7.442285156249993],[100.50371093750002,7.337304687500009],[100.54521484375002,7.226904296874991],[100.43935546875005,7.280761718750042],[100.41074218750006,7.464306640625039],[100.38037109375003,7.541503906250043],[100.34296875000004,7.552880859374966],[100.28378906250005,7.551513671875042],[100.2799804687501,7.584326171874978],[100.32431640625006,7.644189453125009],[100.31738281249997,7.715966796874965],[100.25664062500002,7.774902343749987],[100.15820312499997,7.728125],[100.1607421875001,7.599267578124994],[100.20488281250006,7.50053710937496],[100.37138671875002,7.280126953124991],[100.42353515625008,7.187841796875021],[100.48974609374996,7.161376953125057],[100.58623046875002,7.175976562500011],[100.70166015625003,7.081982421875039],[100.79257812500005,6.994677734375017],[101.01787109375,6.860937500000033],[101.15439453125006,6.875146484375008],[101.3019531250001,6.908300781250005],[101.40087890624996,6.899560546875009],[101.49794921875004,6.86528320312503],[101.61425781250003,6.753955078125002],[101.79921875000005,6.474609375000028],[102.10107421874997,6.242236328125031],[102.06835937499997,6.18466796875002],[102.05517578124997,6.096679687500042],[101.93613281250006,5.97934570312502],[101.9171875000001,5.911376953125028],[101.87363281250012,5.825292968749991],[101.7907226562501,5.77934570312496],[101.71953125000007,5.770605468750048],[101.67841796875004,5.778808593750028],[101.65000000000012,5.795996093749977],[101.60136718750007,5.877148437499983],[101.57675781250012,5.902001953124993],[101.55605468749998,5.907763671875003],[101.40419921875004,5.851660156250034],[101.2570312500001,5.789355468750045],[101.22978515625002,5.733691406249989],[101.190625,5.66875],[101.1476562500001,5.643066406249999],[101.1139648437501,5.636767578125045],[101.08173828125008,5.674902343749991],[101.02519531250002,5.724511718749979],[100.98164062500004,5.771044921875045],[100.99277343750006,5.846191406249985],[101.0755859375,5.956494140624983],[101.08652343750006,6.03369140625],[101.07597656250006,6.16606445312496],[101.05351562500002,6.242578125],[101.02939453125005,6.245312500000025],[100.98876953124997,6.257666015624977],[100.87392578124998,6.24541015624996],[100.81650390625005,6.331640625000033],[100.79375,6.426171875000023],[100.75449218750012,6.460058593749991],[100.715625,6.480664062500011],[100.62949218750006,6.447998046875028],[100.56386718749998,6.467529296875],[100.3454101562501,6.549902343750006],[100.26142578125004,6.682714843749963],[100.2166015625,6.686621093749963],[100.17675781250003,6.671826171874969],[100.16123046875012,6.641601562500028],[100.13798828125002,6.488671875000051],[100.11914062499996,6.441992187500048],[99.86865234375003,6.749902343749979],[99.69599609375003,6.87666015625004],[99.72031250000012,7.106201171875],[99.66777343750007,7.150878906250042],[99.60244140625,7.155322265624974],[99.55302734375002,7.218798828125031],[99.59697265625002,7.355615234375009],[99.52910156250002,7.329492187500023],[99.43515625000006,7.334375],[99.35859375000004,7.372216796875024],[99.30039062500006,7.561328125],[99.26367187499997,7.619042968750036],[99.18339843750007,7.718066406250045],[99.07763671874997,7.718066406250045],[99.04267578125003,7.765625],[99.05107421875,7.887841796874994],[98.97392578125002,7.96279296874998],[98.87246093750005,8.02392578125],[98.78867187500012,8.059814453125028],[98.70351562499998,8.256738281250009],[98.63632812500005,8.305029296874991],[98.57919921875005,8.344287109374989],[98.49980468750007,8.317822265625011],[98.47402343750005,8.246923828124963],[98.42099609375006,8.17822265625],[98.36074218750005,8.186962890624997],[98.30546875000007,8.226220703125009],[98.23818359375005,8.423095703124972],[98.22695312500005,8.543652343750011],[98.24179687500006,8.767871093750045],[98.32597656250007,8.968945312499969],[98.37138671875002,9.290527343750028],[98.44316406250007,9.492822265625037],[98.49296875000007,9.56142578124998],[98.56191406249998,9.8375],[98.70253906250005,10.19038085937504],[98.7184570312501,10.26601562499999],[98.746875,10.35083007812504],[98.76835937500007,10.430859375],[98.77539062499997,10.557031250000037],[98.7572265625,10.623583984375003],[98.7572265625,10.660937499999973],[98.78691406250002,10.708447265624969],[98.887109375,10.788330078125],[99.02539062500003,10.919970703124989],[99.1901367187501,11.105273437499989],[99.3587890625,11.389453124999974],[99.44267578125002,11.554394531250011],[99.47792968749998,11.6125],[99.51523437500006,11.630664062500003],[99.57285156250006,11.687158203124964],[99.6125,11.749658203124994],[99.61474609374997,11.781201171875026],[99.52294921875003,12.089648437499987],[99.46289062499997,12.19023437499996],[99.43242187500007,12.30903320312501],[99.41630859375007,12.394824218749989],[99.3942382812501,12.473632812500057],[99.40507812500002,12.547900390625003],[99.37197265625,12.594238281250028],[99.29736328124996,12.652880859374973],[99.21982421875012,12.73974609375],[99.1735351562501,12.88193359375002],[99.1735351562501,12.961328125000023],[99.12392578125,13.030761718750043],[99.10742187500003,13.103515625000043],[99.13710937500005,13.17299804687498],[99.176171875,13.233056640625051],[99.17167968750007,13.496923828124975],[99.15605468750007,13.575781249999977],[99.13681640625006,13.716699218749993],[99.08623046875007,13.822753906250014],[99.01464843749997,13.947167968750051],[98.93359374999997,14.049853515625003],[98.72119140625003,14.235742187500037],[98.57001953125004,14.359912109375031],[98.49501953125005,14.472900390625043],[98.40019531250002,14.602978515624981],[98.33212890625006,14.696484375000026],[98.24599609375005,14.814746093750044],[98.20214843749997,14.97592773437502],[98.17792968750004,15.147412109374969],[98.19101562500012,15.204101562499972],[98.23222656250007,15.241357421875009],[98.28613281250003,15.271582031250034],[98.32939453125007,15.278564453125044],[98.45214843750001,15.357373046875026],[98.53730468750004,15.35068359374999],[98.55693359375007,15.367675781249986],[98.56523437500007,15.403564453125014],[98.55449218750002,15.559765624999953],[98.55820312500006,15.768603515625045],[98.57402343750007,15.938623046875051],[98.59238281250006,16.05068359375005],[98.81796875000012,16.18081054687499],[98.86552734375002,16.237060546875],[98.88847656250002,16.298095703125],[98.88828125000006,16.351904296875034],[98.8693359375001,16.39418945312505],[98.83544921875001,16.417578125],[98.68925781250002,16.30541992187497],[98.66074218750006,16.330419921875006],[98.59365234374998,16.514794921874994],[98.56474609375002,16.570947265624994],[98.5231445312501,16.638183593749996],[98.478125,16.732226562500074],[98.47119140624997,16.895019531250025],[98.4388671875,16.975683593750034],[98.25654296875004,17.147656249999983],[98.17460937500007,17.239892578125023],[98.06308593750006,17.37329101562503],[97.92929687500006,17.533300781250034],[97.79296875000003,17.68125],[97.72910156250006,17.775830078124955],[97.70644531249998,17.79711914062503],[97.69853515625007,17.83354492187499],[97.73994140625004,17.935302734375025],[97.71972656250003,18.037402343750042],[97.6515625000001,18.173730468750023],[97.6224609375,18.258007812499955],[97.63222656250005,18.290332031250074],[97.5993164062501,18.302978515624968],[97.52382812499998,18.295898437500053],[97.45078125000012,18.359667968750074],[97.38066406250002,18.49428710937505],[97.37392578125,18.51796875],[97.3970703125001,18.517529296874983],[97.48496093750006,18.494238281250034],[97.51513671874997,18.497753906249955],[97.57734375000004,18.52871093750005],[97.6715820312501,18.56123046875001],[97.72773437500004,18.572021484375],[97.74589843750002,18.58818359374999],[97.75400390625005,18.620800781249983],[97.70605468749997,18.931787109374994],[97.71416015625002,18.99648437500005],[97.80390625000003,19.130468749999977],[97.79355468750006,19.26586914062503],[97.816796875,19.459960937500057],[97.91640625000005,19.592871093750034],[97.99121093749997,19.653710937499994],[98.01503906250005,19.749511718749968],[98.04902343750004,19.76972656250001],[98.1110351562501,19.762158203124983],[98.23906250000002,19.690673828124968],[98.29365234375003,19.687255859375],[98.37128906250004,19.68916015625004],[98.45498046875,19.694433593750034],[98.4938476562501,19.701318359375023],[98.76064453124998,19.771093750000034],[98.8195312500001,19.778466796875023],[98.87578125000007,19.769580078125074],[98.9166992187501,19.77290039062504],[98.95800781249997,19.804931640625],[98.98740234375006,19.861376953125017],[99.02070312500004,20.041796875000017],[99.0397460937501,20.073632812500023],[99.07421875000003,20.099365234375025],[99.13076171875,20.116601562499966],[99.1968750000001,20.115136718750023],[99.28369140624997,20.080419921874977],[99.33789062499997,20.078906250000017],[99.39921875000007,20.09345703124998],[99.45156250000004,20.118310546874966],[99.48593750000006,20.14985351562501],[99.50166015625004,20.187744140625],[99.4875,20.260644531250023],[99.44794921875003,20.35205078124997],[99.45888671875005,20.363037109375],[99.53164062500005,20.342822265625045],[99.63867187499997,20.320458984375023],[99.72011718750005,20.32543945312497],[99.77333984375,20.34130859375003],[99.82519531249996,20.384472656250008],[99.8903320312501,20.424414062499977],[99.9542968750001,20.415429687500023],[100.0036132812501,20.37958984375001]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Tajikistan","sov_a3":"TJK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tajikistan","adm0_a3":"TJK","geou_dif":0,"geounit":"Tajikistan","gu_a3":"TJK","su_dif":0,"subunit":"Tajikistan","su_a3":"TJK","brk_diff":0,"name":"Tajikistan","name_long":"Tajikistan","brk_a3":"TJK","brk_name":"Tajikistan","brk_group":null,"abbrev":"Tjk.","postal":"TJ","formal_en":"Republic of Tajikistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tajikistan","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":7349145,"gdp_md_est":13160,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TJ","iso_a3":"TJK","iso_n3":"762","un_a3":"762","wb_a2":"TJ","wb_a3":"TJK","woe_id":-99,"adm0_a3_is":"TJK","adm0_a3_us":"TJK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TJK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[70.70166015625003,39.82529296874998],[70.61210937500006,39.78676757812502],[70.55957031250003,39.790917968749994],[70.51865234375006,39.828173828125045],[70.48925781250003,39.86303710937503],[70.48281250000005,39.88271484375005],[70.49775390625003,39.88242187499998],[70.56708984375004,39.86660156250005],[70.66416015625,39.85546875],[70.69824218750003,39.845849609374994],[70.70166015625003,39.82529296874998]]],[[[70.65253906250004,40.93662109374998],[70.62275390625004,40.93442382812498],[70.56875,40.981835937499966],[70.55,41.01489257812503],[70.57207031250002,41.02480468750002],[70.6183593750001,41.00166015625001],[70.64921875000002,40.96083984375005],[70.65253906250004,40.93662109374998]]],[[[70.69833984375006,40.66118164062502],[70.54882812499997,40.562792968750045],[70.38261718750002,40.453515624999966],[70.3771484375001,40.43925781250002],[70.3697265625,40.41201171875005],[70.37158203125003,40.38413085937506],[70.3982421875,40.361376953125045],[70.46992187500004,40.345361328124966],[70.53359375,40.32451171874999],[70.56582031250005,40.26713867187502],[70.60273437500003,40.21416015624998],[70.653125,40.201171875],[70.89941406249997,40.234570312499955],[70.95800781250003,40.238867187500034],[70.96093749999997,40.22065429687495],[70.94638671875006,40.18759765624998],[70.73857421875007,40.13115234375002],[70.64433593750007,40.083447265624976],[70.62412109375006,39.99897460937501],[70.59921875,39.974511718749994],[70.5568359375001,39.95449218750002],[70.51513671875003,39.949902343749955],[70.4513671875001,40.04921875000002],[70.37890624999996,40.06987304687499],[70.27441406250003,40.104833984375006],[70.0714843750001,40.172753906249966],[69.96679687499997,40.202246093750034],[69.765234375,40.15800781249999],[69.53027343750003,40.097314453124966],[69.49365234375003,40.06035156249999],[69.46875,40.020751953125],[69.47099609375002,39.990625],[69.487890625,39.95043945312497],[69.47626953125004,39.919726562500045],[69.43193359375007,39.909765625000034],[69.36542968750004,39.94707031250002],[69.30722656250006,39.96855468750004],[69.27880859374997,39.91777343749999],[69.24472656250006,39.82709960937498],[69.22910156250006,39.761083984375034],[69.28027343749997,39.665869140625006],[69.29765625000007,39.52480468750005],[69.39150390625,39.53247070312499],[69.46328125,39.532080078125006],[69.59882812500004,39.57377929687499],[69.66699218749997,39.57490234375004],[69.7720703125,39.55673828124998],[69.95595703125,39.553076171875034],[70.10166015625,39.56059570312496],[70.13681640625006,39.55756835937498],[70.17109375000004,39.584179687499976],[70.20927734375007,39.575],[70.24482421875004,39.54262695312502],[70.39208984375003,39.581884765625034],[70.50117187500004,39.58735351562501],[70.56796875000006,39.57587890624998],[70.6078125,39.56440429687503],[70.67861328125005,39.47128906249998],[70.73310546875003,39.413281249999976],[70.79931640625003,39.39472656250001],[71.00488281249997,39.41186523437503],[71.06503906250006,39.49340820312506],[71.11806640625005,39.513574218749966],[71.20273437500006,39.51982421875002],[71.27285156250005,39.535302734374966],[71.328515625,39.568701171875006],[71.40429687499997,39.59785156250001],[71.4703125,39.60366210937502],[71.50302734375006,39.58217773437502],[71.51738281250002,39.55385742187502],[71.50585937499997,39.51708984374997],[71.5033203125,39.47880859374999],[71.54628906250005,39.45307617187501],[71.67265625000002,39.44707031250002],[71.7322265625,39.422998046874994],[71.73535156250003,39.37773437500002],[71.72568359375,39.30659179687501],[71.77861328125007,39.27797851562502],[71.80595703125002,39.27558593749998],[71.99101562500007,39.35092773437506],[72.04277343750002,39.352148437500034],[72.08417968750004,39.310644531250034],[72.14736328125005,39.26074218749997],[72.22998046874997,39.20751953124997],[72.24980468750002,39.215673828125034],[72.28720703125,39.27373046874996],[72.35771484375007,39.33686523437504],[72.49023437499997,39.357373046874955],[72.56337890625005,39.377197265625],[72.63994140625002,39.385986328125],[72.87246093750005,39.360400390625045],[72.9494140625001,39.357080078124994],[73.10927734375,39.36191406249998],[73.2349609375,39.37456054687498],[73.3361328125001,39.41235351562506],[73.38740234375004,39.442724609375034],[73.47041015625008,39.46059570312502],[73.57558593750005,39.45761718750003],[73.63164062500006,39.44887695312502],[73.63632812500006,39.396679687499955],[73.62314453125006,39.2978515625],[73.60732421875,39.22919921874995],[73.69042968749997,39.10454101562496],[73.74375,39.04453124999998],[73.7956054687501,39.00214843749998],[73.80527343749999,38.968652343749994],[73.79453125000006,38.94130859375002],[73.72998046874997,38.914697265624994],[73.70683593750002,38.88623046874997],[73.69609375000007,38.85429687499996],[73.71679687500003,38.817236328125034],[73.7541015625001,38.698925781250004],[73.80166015624998,38.60688476562501],[73.86914062499997,38.56289062500002],[73.97001953125002,38.53369140625],[74.02558593750004,38.53984375000002],[74.06533203125,38.60849609374997],[74.13134765625003,38.66118164062496],[74.1873046875,38.65751953125002],[74.27744140624999,38.659765625000034],[74.5140625,38.6],[74.74501953125,38.51000976562497],[74.8123046875,38.46030273437498],[74.83593750000003,38.40429687500003],[74.77207031250006,38.274755859375006],[74.77509765625003,38.19189453125],[74.7896484375,38.10361328125006],[74.84248046875004,38.03808593750003],[74.8908203125001,37.92578124999997],[74.90029296874998,37.83271484375001],[74.9212890625,37.80498046874996],[74.93828125000002,37.77250976562502],[74.91230468750004,37.68730468749999],[74.8942382812501,37.60141601562498],[74.91582031250007,37.57280273437502],[74.98642578125006,37.53037109374997],[75.09746093750002,37.451269531250034],[75.11875,37.38569335937498],[75.07900390625,37.344042968750045],[75.0083984375,37.29355468750006],[74.9181640625001,37.25],[74.89130859375004,37.231640624999955],[74.875390625,37.24199218750002],[74.83046875,37.28593750000002],[74.73056640625006,37.35703125],[74.659375,37.39448242187501],[74.52421875000002,37.38237304687502],[74.44492187500006,37.39560546875006],[74.34902343750005,37.41875],[74.25966796875005,37.41542968750002],[74.20351562500005,37.37246093750005],[74.16708984375,37.32944335937498],[74.077734375,37.31621093749996],[73.94882812500006,37.28315429687498],[73.74960937500006,37.23178710937498],[73.6535156250001,37.239355468750034],[73.62753906250006,37.261572265625006],[73.64882812500005,37.29121093750001],[73.71728515625001,37.32944335937498],[73.7337890625,37.37578125000002],[73.72060546875,37.41875],[73.65712890625005,37.43046875],[73.63261718750002,37.437207031250004],[73.6046875000001,37.44604492187503],[73.48134765625,37.4716796875],[73.38291015625006,37.462255859375034],[73.21113281250004,37.40849609375002],[72.89550781250003,37.267529296874976],[72.7570312500001,37.17270507812503],[72.65742187500004,37.029052734375],[72.35878906250005,36.98291015625],[72.15351562500004,36.900537109374994],[71.9419921875,36.76645507812503],[71.80205078125002,36.69428710937501],[71.7337890625,36.684033203124955],[71.665625,36.696923828124994],[71.59746093750002,36.73291015625006],[71.530859375,36.845117187499994],[71.471875,37.01508789062498],[71.43291015625007,37.12753906249998],[71.45478515625004,37.27182617187498],[71.47968750000008,37.43603515625003],[71.50507812500008,37.60292968750002],[71.54619140625,37.79565429687503],[71.58037109375007,37.86425781250006],[71.5822265625001,37.91010742187498],[71.55195312500003,37.93315429687496],[71.48779296874997,37.93188476562497],[71.38964843750003,37.90629882812502],[71.31992187500006,37.90185546874999],[71.27851562500003,37.91840820312498],[71.2828125,38.007910156250006],[71.33271484375004,38.170263671875034],[71.25585937499997,38.306982421875006],[71.0521484375,38.41787109375005],[70.87890624999997,38.45639648437498],[70.7359375,38.42255859375001],[70.6158203125,38.33442382812501],[70.51855468750003,38.191992187500034],[70.41777343750002,38.075439453125],[70.31328125000002,37.98481445312501],[70.23876953124997,37.94121093750002],[70.21464843750002,37.924414062500055],[70.19941406250004,37.88603515624996],[70.25498046875006,37.76538085937497],[70.25146484374997,37.66416015625006],[70.18867187500004,37.58247070312501],[70.11982421875004,37.54350585937499],[70.04472656250002,37.547216796875034],[69.9849609375,37.566162109375],[69.940625,37.60029296875001],[69.8208984375,37.60957031250004],[69.62578125000002,37.59404296874999],[69.49208984375,37.55307617187498],[69.42011718750004,37.486718749999966],[69.39921875000007,37.39931640625002],[69.42968749999997,37.290869140625034],[69.414453125,37.20776367187497],[69.35380859375007,37.15004882812502],[69.3039062500001,37.11694335937503],[69.26484375000004,37.10839843749999],[69.18017578125003,37.158300781250034],[69.05,37.26650390625005],[68.96044921875003,37.32504882812498],[68.91181640625008,37.333935546875004],[68.88525390624997,37.32807617187498],[68.85537109375005,37.31684570312501],[68.83847656250006,37.30283203124998],[68.82373046874996,37.27070312500001],[68.78203125000002,37.25800781250001],[68.7232421875,37.26801757812501],[68.6691406250001,37.258398437500006],[68.63701171875002,37.224462890625006],[68.54648437500006,37.183447265625],[68.3869140625001,37.1375],[68.29951171875004,37.08842773437502],[68.28476562500006,37.036328124999955],[68.2609375000001,37.01308593750002],[68.21210937500008,37.02153320312496],[68.06777343749998,36.949804687500006],[67.95800781249997,36.972021484375006],[67.83447265624997,37.06420898437506],[67.76601562500005,37.14013671874997],[67.75898437500004,37.172216796875034],[67.7980468750001,37.244970703125006],[67.81435546875004,37.48701171875003],[67.86357421875002,37.57070312500002],[68.01093750000003,37.720947265625],[68.08759765625004,37.83544921875006],[68.17402343750004,37.92841796874998],[68.2365234375001,37.959667968749955],[68.29404296875006,38.032910156249955],[68.3412109375,38.11679687499998],[68.35449218750003,38.16953124999998],[68.3502929687501,38.211035156250006],[68.33310546875,38.23779296875002],[68.2513671875,38.29453125000006],[68.144140625,38.38310546874999],[68.08720703125002,38.47353515625002],[68.05595703125007,38.58891601562499],[68.04785156250003,38.669287109375],[68.14853515625,38.890625],[68.13251953125004,38.927636718749966],[68.10351562499996,38.96201171875006],[68.0443359375,38.98359375],[67.95957031250006,38.99291992187506],[67.8756835937501,38.98300781249998],[67.76855468750003,38.98222656249999],[67.69443359375006,38.99462890625002],[67.67656250000002,39.00849609375001],[67.66728515625002,39.10917968750002],[67.64833984375005,39.13105468750003],[67.61650390625006,39.15029296875005],[67.40039062499997,39.19667968749999],[67.3576171875001,39.216699218749994],[67.34960937499997,39.24208984374999],[67.426171875,39.46557617187497],[67.45957031250006,39.48242187500003],[67.49169921875003,39.51875],[67.54248046874997,39.55761718749997],[67.71904296875007,39.62138671875002],[67.90859375000005,39.59379882812499],[68.07714843750003,39.56416015624998],[68.24492187500002,39.54829101562504],[68.30302734375002,39.537695312500006],[68.39902343750006,39.52885742187499],[68.46328125,39.53671874999998],[68.50693359375,39.56279296874996],[68.58613281250004,39.63496093750001],[68.61035156250003,39.74326171875006],[68.63896484375006,39.8388671875],[68.6869140625,39.846289062500006],[68.73525390625,39.83623046874999],[68.75820312500005,39.855566406250006],[68.76796875,39.88183593750003],[68.77783203124997,39.904199218749966],[68.79765625000007,39.90913085937501],[68.83242187500005,39.88432617187502],[68.8522460937501,39.890966796875034],[68.86875,39.90747070312503],[68.86386718750006,39.92734374999998],[68.82441406250004,39.96079101562506],[68.789453125,40.013330078124994],[68.79277343750007,40.03149414062497],[68.80468750000003,40.05034179687498],[68.90849609375002,40.068212890625006],[68.95566406249999,40.07133789062502],[68.9720703125,40.08994140624998],[68.9660156250001,40.11958007812498],[68.92685546875,40.136328125],[68.7845703125,40.127099609374994],[68.63974609375006,40.12919921874999],[68.6224609375,40.14726562500002],[68.63066406250007,40.16708984374998],[68.65253906250008,40.182666015625045],[68.95175781250006,40.22260742187501],[69.11035156250003,40.20874023437503],[69.22832031250007,40.18759765624998],[69.27490234374997,40.19809570312498],[69.21953125000007,40.28813476562504],[69.29443359375003,40.296582031249976],[69.30419921874997,40.32739257812503],[69.20625,40.56655273437499],[69.25996093750004,40.58764648437503],[69.31396484375003,40.63476562500006],[69.309375,40.72392578124999],[69.35722656250002,40.76738281249996],[69.41386718750002,40.79716796874999],[69.4982421875001,40.76708984375],[69.62841796874997,40.679052734375006],[69.67080078125,40.66196289062498],[69.71289062500003,40.65698242187503],[69.77324218750007,40.68427734375001],[70.00566406250007,40.77143554687501],[70.13632812500005,40.820410156250034],[70.29208984375005,40.89169921874998],[70.31894531250006,40.91923828124999],[70.37265625000006,41.02763671874996],[70.40195312500006,41.035107421874976],[70.44150390625005,41.0234375],[70.57822265625,40.911474609375006],[70.65732421875006,40.839648437500045],[70.65732421875006,40.81508789062502],[70.63476562499996,40.796582031249976],[70.63916015624997,40.77856445312503],[70.75097656250003,40.739599609375],[70.75107421875006,40.721777343750006],[70.72558593750003,40.68779296875002],[70.71201171875,40.66909179687502],[70.69833984375006,40.66118164062502]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Turkmenistan","sov_a3":"TKM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Turkmenistan","adm0_a3":"TKM","geou_dif":0,"geounit":"Turkmenistan","gu_a3":"TKM","su_dif":0,"subunit":"Turkmenistan","su_a3":"TKM","brk_diff":0,"name":"Turkmenistan","name_long":"Turkmenistan","brk_a3":"TKM","brk_name":"Turkmenistan","brk_group":null,"abbrev":"Turkm.","postal":"TM","formal_en":"Turkmenistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Turkmenistan","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":9,"pop_est":4884887,"gdp_md_est":29780,"pop_year":-99,"lastcensus":1995,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TM","iso_a3":"TKM","iso_n3":"795","un_a3":"795","wb_a2":"TM","wb_a3":"TKM","woe_id":-99,"adm0_a3_is":"TKM","adm0_a3_us":"TKM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":12,"long_len":12,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"TKM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.10957031250004,38.803076171875006],[53.10019531250006,38.756152343750045],[53.04589843750003,38.89721679687499],[53.01855468749997,39.05273437499997],[53.053320312500006,39.09658203125002],[53.09218750000005,39.09409179687506],[53.05517578124997,39.03793945312498],[53.10957031250004,38.803076171875006]]],[[[58.72998046875003,42.67617187499999],[58.87695312500002,42.56147460937498],[58.93085937500009,42.54028320312503],[59.03583984375004,42.528125],[59.123144531250006,42.523779296875034],[59.159570312500044,42.51142578125001],[59.199121093749994,42.481689453125],[59.2765625000001,42.35615234374998],[59.35429687500002,42.32329101562496],[59.45107421874999,42.29951171875001],[59.76259765625005,42.30156249999999],[59.85830078124999,42.29516601562499],[59.936523437499964,42.23603515625004],[59.98515625000002,42.21171875],[60.0060546875001,42.190820312499966],[60.00078125000001,42.16474609374998],[59.98164062500009,42.13173828125002],[59.97919921875003,42.06806640625001],[59.97412109374997,42.018798828125],[59.94931640625,41.995410156250045],[59.94179687499999,41.97353515625002],[59.96259765625004,41.954394531250045],[60.106933593749964,41.90742187499998],[60.15556640625002,41.85703125],[60.1920898437501,41.83442382812501],[60.20078125000006,41.803125],[60.17636718750006,41.78227539062495],[60.10859375000004,41.792675781249955],[60.07558593750006,41.759667968749966],[60.07558593750006,41.700537109375006],[60.124023437499964,41.644970703124976],[60.13798828125007,41.59414062499999],[60.106054687500055,41.54521484374999],[60.06875,41.476220703124966],[60.06738281249998,41.427343750000034],[60.089648437500074,41.39941406250003],[60.2,41.34897460937497],[60.454980468749994,41.221630859374955],[60.51357421875,41.216162109375006],[60.75488281249997,41.245751953124994],[60.86718750000003,41.248681640624966],[60.93320312500006,41.22900390625006],[61.11992187500001,41.21088867187501],[61.179296875,41.19057617187502],[61.2423828125001,41.18920898437503],[61.32890625000002,41.19511718749999],[61.3875,41.252148437499955],[61.417382812500044,41.26513671875003],[61.44365234375007,41.27460937500001],[61.496972656249994,41.276074218749955],[61.64453125000003,41.239843750000034],[61.79990234375006,41.163427734375006],[61.90283203124997,41.09370117187501],[61.95351562499999,41.030615234375034],[62.01757812500002,40.89379882812497],[62.095019531250074,40.68330078124998],[62.18847656250003,40.54121093749998],[62.29804687500005,40.467480468749976],[62.375,40.33208007812502],[62.44160156250004,40.03623046875006],[62.48320312500002,39.97563476562496],[62.52548828125001,39.94409179687503],[62.65068359375002,39.858496093750006],[62.90683593750006,39.716796875],[63.058105468749964,39.633154296875006],[63.291894531249994,39.49951171875006],[63.50605468750003,39.377099609374966],[63.72080078125,39.18813476562502],[63.76367187500003,39.16054687499999],[63.95253906250005,39.05834960937506],[64.16279296875004,38.95361328125003],[64.3099609375,38.97729492187497],[64.531640625,38.81621093750002],[64.621875,38.756445312500006],[64.65996093750002,38.73603515625001],[64.820703125,38.672460937500034],[65.07666015624997,38.53945312500002],[65.39960937500004,38.34882812500001],[65.612890625,38.23857421875002],[65.67089843749997,38.225732421874966],[65.72851562500003,38.22636718750002],[65.79023437500004,38.25004882812496],[65.8571289062501,38.26875],[65.97119140624996,38.244238281250006],[66.09482421875,38.20014648437501],[66.17314453125007,38.16669921875003],[66.26367187499996,38.118066406249994],[66.3353515625,38.07216796875005],[66.38974609375006,38.050927734374994],[66.57451171875007,38.01079101562499],[66.60625,37.986718750000044],[66.62636718750005,37.959863281249994],[66.629296875,37.93203125],[66.52558593750004,37.785742187500034],[66.51132812500006,37.59916992187496],[66.51064453125,37.45869140625004],[66.52226562500007,37.34848632812506],[66.471875,37.3447265625],[66.35029296875004,37.36816406249997],[66.10839843750003,37.414746093749955],[65.90068359375002,37.50810546874996],[65.7650390625,37.56914062499996],[65.74384765625004,37.56083984374996],[65.68300781250005,37.519140625],[65.64121093750005,37.46782226562502],[65.60800781250006,37.36840820312503],[65.55498046875,37.25117187500004],[65.30361328125004,37.24677734375001],[65.08964843750007,37.237939453124994],[64.9515625,37.19355468750001],[64.81630859375005,37.13208007812503],[64.78242187500008,37.05927734375001],[64.753125,36.964794921874955],[64.67431640624997,36.75019531250001],[64.60253906250003,36.554541015625034],[64.5658203125,36.427587890625034],[64.51103515625002,36.34067382812498],[64.35800781250005,36.22607421875],[64.184375,36.14892578125],[64.0921875,36.112695312499994],[64.0513671875,36.06762695312506],[64.04238281250005,36.02509765625001],[64.00966796875005,36.01210937500002],[63.938085937500006,36.01972656249998],[63.8625,36.012353515624994],[63.69658203125002,35.96782226562496],[63.51699218750005,35.91313476562502],[63.301660156250044,35.85839843749997],[63.1789062500001,35.85844726562499],[63.129980468750055,35.84619140624997],[63.10859375000003,35.81870117187506],[63.129980468750055,35.76674804687505],[63.15078125000006,35.72827148437503],[63.169726562500074,35.678125],[63.11933593750004,35.637548828125006],[63.08417968750004,35.56806640624998],[63.05664062500003,35.44580078125003],[62.98027343750001,35.40917968750003],[62.85800781250006,35.34965820312499],[62.72265625000003,35.271337890625],[62.688085937500006,35.25532226562503],[62.610546875000104,35.23315429687506],[62.53310546875005,35.23989257812499],[62.46289062499997,35.251367187500016],[62.38662109375005,35.23125],[62.30781250000009,35.17080078125005],[62.27119140625009,35.18911132812505],[62.25283203125005,35.25024414062497],[62.21308593750003,35.289941406249966],[62.08964843750002,35.3796875],[61.98388671874997,35.443701171875034],[61.93808593750007,35.447900390624994],[61.8410156250001,35.431494140625034],[61.71972656249997,35.41943359374997],[61.620996093750044,35.43232421875004],[61.54277343750001,35.457861328125006],[61.421777343750044,35.545800781249966],[61.37773437500001,35.593115234375006],[61.34472656249997,35.62949218750006],[61.26201171875002,35.61958007812498],[61.2388671875,35.659277343750006],[61.23554687500003,35.70556640625],[61.25869140625005,35.761816406250006],[61.25214843750004,35.86762695312498],[61.20585937500001,35.943701171875034],[61.15292968750006,35.976757812500004],[61.159472656250074,35.99990234375002],[61.18261718749997,36.05283203125006],[61.21240234375003,36.099121093749964],[61.21201171875,36.190527343750034],[61.17509765625007,36.289697265624994],[61.160351562500104,36.432714843750006],[61.16992187499997,36.572265625],[61.11962890625003,36.64257812500003],[60.707910156249994,36.64296875000002],[60.34130859375002,36.63764648437501],[60.32070312499999,36.65356445312506],[60.1783203125,36.829443359375006],[60.06279296875001,36.96289062499999],[59.94863281250005,37.04160156250006],[59.68720703125004,37.13847656249999],[59.56220703125009,37.178906249999955],[59.454980468749994,37.25283203125002],[59.3673828125001,37.333740234374964],[59.344726562500036,37.44472656250002],[59.32695312500002,37.48115234374998],[59.30175781249997,37.51064453125005],[59.27412109375004,37.52373046874996],[59.240820312500006,37.52075195312497],[58.93720703125004,37.64965820312503],[58.81542968750003,37.683496093749994],[58.70078125,37.65625],[58.65019531250002,37.65156249999998],[58.55048828125004,37.68818359374998],[58.4357421875001,37.63852539062497],[58.38671874999998,37.63535156250006],[58.31816406250001,37.64721679687497],[58.26162109374999,37.665820312500045],[58.108789062499994,37.783056640625034],[57.98056640625,37.830468750000016],[57.88818359375002,37.86083984374997],[57.71054687500006,37.90527343749997],[57.52099609374997,37.928466796875],[57.42382812500002,37.947705078125004],[57.35371093750004,37.97333984374998],[57.33574218750001,37.98994140624998],[57.33671875000002,38.032910156249955],[57.33144531249999,38.08930664062498],[57.308105468749964,38.13037109375],[57.26015625000005,38.179589843749994],[57.1935546875001,38.216406250000034],[57.079003906249994,38.20996093750006],[56.90664062499999,38.213037109374966],[56.7746093750001,38.25004882812496],[56.66992187499997,38.25664062499996],[56.54404296875,38.249609375000034],[56.440625,38.249414062499994],[56.36689453125004,38.222509765625034],[56.324121093750044,38.19111328125004],[56.296972656250006,38.094824218750034],[56.2720703125,38.080419921875034],[56.22880859375001,38.07338867187502],[56.171191406250074,38.07836914062497],[56.050292968749964,38.077539062499994],[55.84130859375002,38.094628906249994],[55.57841796875001,38.099755859374994],[55.38085937500003,38.051123046875034],[55.224707031250006,37.98134765625002],[55.075585937499994,37.90249023437502],[54.90009765625004,37.77792968750006],[54.84863281250003,37.72265624999997],[54.745214843750006,37.501904296874955],[54.69941406250009,37.47016601562498],[54.63964843749997,37.44472656250002],[54.578906250000074,37.44023437499998],[54.4586914062501,37.407568359375],[54.29980468750002,37.353613281250034],[54.1916015625001,37.33247070312498],[53.91416015625006,37.34355468750002],[53.89785156250005,37.41357421875],[53.84785156250003,37.669580078124994],[53.823535156250074,37.92792968749998],[53.82519531249997,38.04692382812496],[53.854101562500006,38.28564453125003],[53.851855468750074,38.405908203124994],[53.84003906250004,38.51494140625002],[53.85156250000003,38.62177734375001],[53.8737304687501,38.74194335937497],[53.885351562500055,38.86406249999999],[53.86865234375003,38.94926757812504],[53.81494140625003,39.01801757812501],[53.724121093749964,39.10307617187501],[53.709765625000074,39.15341796875006],[53.70458984375003,39.20957031250003],[53.61757812500005,39.21596679687502],[53.53945312500005,39.27407226562502],[53.475,39.30571289062499],[53.336328125000044,39.34082031250006],[53.26679687500009,39.34262695312506],[53.20332031250004,39.31679687500002],[53.15664062499999,39.26499023437506],[53.12402343750003,39.3466796875],[53.12480468750002,39.43208007812498],[53.23564453125002,39.608544921874966],[53.30498046875002,39.557080078124955],[53.38964843749997,39.53642578125001],[53.497363281250074,39.533300781250006],[53.603125,39.546972656250034],[53.58242187499999,39.607421875],[53.533300781250006,39.641748046874966],[53.472265625,39.66879882812498],[53.45048828125002,39.74853515624997],[53.45830078125002,39.83120117187502],[53.48730468749997,39.909375],[53.4542968750001,39.94086914062498],[53.404199218749994,39.96035156250005],[53.28857421874997,39.95800781250003],[53.138574218749994,39.97866210937505],[52.9875,39.98759765625002],[52.95214843750002,39.89545898437498],[53.03554687500005,39.7744140625],[52.96484375000002,39.83388671875005],[52.89824218750002,39.9125],[52.80468749999997,40.054003906250045],[52.744433593750074,40.21977539062496],[52.73369140625002,40.39873046875002],[52.784765625,40.54672851562506],[52.849902343750074,40.685644531250006],[52.8892578125,40.86347656250001],[52.943457031250006,41.03808593750006],[52.99765625000006,40.95986328125002],[53.05957031249997,40.889746093750034],[53.1452148437501,40.82495117187497],[53.191992187500006,40.809472656250016],[53.33291015625005,40.78271484375],[53.423632812500074,40.79277343749999],[53.52031250000002,40.83105468749997],[53.61523437500002,40.818505859374994],[53.69375,40.74643554687506],[53.763769531250055,40.66567382812502],[53.87001953125005,40.64868164062503],[54.08886718749997,40.70708007812504],[54.19296875,40.72041015624998],[54.28330078125006,40.69370117187506],[54.32988281250002,40.68876953125004],[54.37734375,40.693261718749966],[54.336230468750074,40.76494140625002],[54.31943359375,40.83457031249997],[54.37441406250005,40.87138671875002],[54.54707031250004,40.83227539062506],[54.65703125000007,40.85834960937504],[54.68505859375003,40.873046875],[54.710058593750006,40.89111328125006],[54.72324218750006,40.951269531250034],[54.71796875000004,41.01298828125002],[54.70371093750006,41.071142578125034],[54.671484375,41.122167968750034],[54.5921875,41.19355468750001],[54.28457031250005,41.363720703124955],[54.181054687499994,41.43159179687501],[54.094824218750006,41.51938476562506],[54.03984375000002,41.64335937499999],[53.995214843750055,41.772558593750034],[53.95380859375004,41.86845703125002],[53.846484375000074,42.091162109375],[53.80468749999997,42.11762695312498],[53.75234375000005,42.129394531249964],[53.624902343750044,42.136376953124994],[53.49589843750002,42.12016601562495],[53.284960937500074,42.08183593749999],[53.16416015625006,42.09379882812502],[53.10830078125005,42.07006835937497],[52.97001953125001,41.976220703125044],[52.905273437499964,41.895751953125],[52.81484374999999,41.711816406249994],[52.88349609375003,41.652539062500004],[52.882226562499994,41.61367187499999],[52.830175781250006,41.341894531250034],[52.86181640624997,41.210058593750006],[52.850390625000074,41.20029296875006],[52.825585937499994,41.23085937499999],[52.7472656250001,41.36542968749995],[52.609375,41.529443359374966],[52.4938476562501,41.780371093750034],[52.696875,41.944384765625045],[52.87050781249999,42.06059570312499],[53.0125,42.13071289062498],[53.0558593750001,42.14775390624999],[53.25009765625006,42.20585937500002],[53.500781250000074,42.25825195312504],[53.685351562500074,42.296875],[53.92636718750006,42.32978515624995],[54.00517578125007,42.335888671874955],[54.12099609374999,42.335205078125],[54.21494140625006,42.30419921874997],[54.271875,42.27998046875001],[54.47285156250003,42.18017578125003],[54.67792968750003,42.078222656250034],[54.85380859375002,41.965185546875006],[54.90371093750005,41.91909179687505],[54.93164062499997,41.864013671875],[54.9523437500001,41.81000976562501],[55.10185546875002,41.63872070312502],[55.16230468750004,41.56025390625004],[55.249609375,41.458105468750006],[55.319726562499994,41.408398437500004],[55.38837890625004,41.346923828125],[55.434375,41.296289062499994],[55.48701171875004,41.27226562499998],[55.54521484375002,41.26274414062498],[55.678613281249994,41.27880859374997],[55.8390625000001,41.310791015625],[55.934960937499994,41.324121093749966],[55.977441406250044,41.32221679687503],[56.24199218750002,41.31083984375001],[56.47988281249999,41.30063476562498],[56.77363281250003,41.287988281249994],[56.86083984374997,41.27612304687506],[56.96582031249997,41.26513671875003],[57.01796875,41.26347656249996],[57.06425781250002,41.307275390624994],[57.09482421875006,41.33129882812502],[57.11884765625004,41.35029296874998],[57.113867187500006,41.37177734375001],[57.07666015624997,41.38999023437498],[57.01816406250006,41.45058593749999],[56.98486328125003,41.669335937500044],[56.96406250000004,41.85654296875],[57.03369140625003,41.91484375],[57.11357421875002,41.95712890625006],[57.228808593750074,42.08447265624997],[57.290625,42.123779296875],[57.381738281250044,42.15629882812496],[57.686132812500055,42.16479492187499],[57.814257812500074,42.18984375000005],[57.85595703125002,42.2310546875],[57.9234375,42.335205078125],[57.945703125,42.420019531250034],[57.983496093750006,42.458789062500045],[58.02890625,42.48764648437506],[58.075488281250074,42.486523437500004],[58.165625,42.461572265624966],[58.23408203125004,42.44770507812498],[58.28291015625003,42.42885742187496],[58.32724609375,42.39892578125],[58.370507812500044,42.34677734375003],[58.37714843750009,42.31245117187498],[58.39707031250006,42.29248046875],[58.43144531250001,42.292089843750006],[58.45703125000002,42.29179687500002],[58.474414062500074,42.29936523437496],[58.48583984375002,42.31684570312498],[58.47695312499999,42.34013671875002],[58.4181640625001,42.40668945312498],[58.288671875,42.527294921874955],[58.20410156249997,42.576367187500004],[58.16201171875005,42.60297851562501],[58.15156250000004,42.628076171874966],[58.2064453125,42.666308593750045],[58.259667968750044,42.688085937500034],[58.353125,42.67172851562498],[58.4771484375,42.66284179687503],[58.53232421875006,42.68193359375002],[58.58906250000009,42.778466796874966],[58.72998046875003,42.67617187499999]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"East Timor","sov_a3":"TLS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"East Timor","adm0_a3":"TLS","geou_dif":0,"geounit":"East Timor","gu_a3":"TLS","su_dif":0,"subunit":"East Timor","su_a3":"TLS","brk_diff":0,"name":"Timor-Leste","name_long":"Timor-Leste","brk_a3":"TLS","brk_name":"Timor-Leste","brk_group":null,"abbrev":"T.L.","postal":"TL","formal_en":"Democratic Republic of Timor-Leste","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Timor-Leste","name_alt":"East Timor","mapcolor7":2,"mapcolor8":2,"mapcolor9":4,"mapcolor13":3,"pop_est":1131612,"gdp_md_est":2520,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TL","iso_a3":"TLS","iso_n3":"626","un_a3":"626","wb_a2":"TP","wb_a3":"TMP","woe_id":-99,"adm0_a3_is":"TLS","adm0_a3_us":"TLS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TLS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.31933593750003,-9.413769531249983],[124.2823242187501,-9.427929687500026],[124.13457031250002,-9.413867187500003],[124.11552734375009,-9.42314453125003],[124.09013671875009,-9.41640625],[124.05244140625008,-9.37539062499998],[124.0363281250001,-9.341601562500031],[124.19814453125005,-9.256152343750031],[124.4444335937501,-9.190332031250023],[124.43828125,-9.238574218750003],[124.41298828124998,-9.31435546874998],[124.37568359375004,-9.349902343750031],[124.31933593750003,-9.413769531249983]]],[[[127.29609375000004,-8.424511718749969],[127.11455078125007,-8.583593749999963],[126.91523437500004,-8.715234374999966],[126.79248046875003,-8.755078125],[126.6654296875,-8.782031249999974],[126.56855468750004,-8.832910156249952],[126.48691406250012,-8.912695312499949],[126.38251953125004,-8.957617187499963],[126.26474609375008,-8.97275390625002],[126.1642578125001,-8.996679687500006],[126.07304687500007,-9.043554687499963],[125.94609375000007,-9.123925781249994],[125.89472656250008,-9.132128906249987],[125.84033203125004,-9.13017578125003],[125.73515625000006,-9.160937499999987],[125.4080078125,-9.275781250000023],[125.21025390625007,-9.403515625000026],[125.0681640625,-9.511914062499995],[125.03359375000005,-9.381835937499957],[124.99697265625005,-9.325976562499946],[124.96826171874997,-9.294238281249974],[124.95859375000005,-9.254687499999989],[124.96015625000004,-9.213769531250009],[124.97753906250003,-9.19492187499999],[125.10048828124998,-9.189843750000021],[125.14941406250003,-9.12294921874998],[125.1490234375001,-9.042578125000034],[125.12441406249998,-9.015429687500017],[125.10039062500007,-9.004003906249991],[124.97324218750012,-9.064257812500017],[124.93681640625007,-9.053417968750024],[124.91503906249997,-9.031542968750003],[124.92226562500005,-8.942480468749977],[125.02695312500012,-8.859082031249955],[125.11572265625003,-8.7080078125],[125.17802734375,-8.647851562499994],[125.32314453124998,-8.591308593750028],[125.38183593749997,-8.575390624999983],[125.80429687500005,-8.4921875],[125.90507812500007,-8.486523437499995],[126.17285156249996,-8.488964843749955],[126.5310546875,-8.470800781249991],[126.61972656250006,-8.459472656249986],[126.73457031250004,-8.422753906249966],[126.84570312500001,-8.377343749999952],[126.90468750000004,-8.34160156249996],[126.96640625000012,-8.315722656250017],[127.05849609375004,-8.348242187499977],[127.21484374999997,-8.372949218750035],[127.25703125000003,-8.39453125],[127.29609375000004,-8.424511718749969]]],[[[125.64609375000005,-8.139941406250001],[125.57949218749998,-8.311816406250017],[125.50712890625007,-8.275097656249997],[125.58408203125012,-8.178613281249966],[125.62109375000003,-8.15],[125.64609375000005,-8.139941406250001]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Turkey","sov_a3":"TUR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Turkey","adm0_a3":"TUR","geou_dif":0,"geounit":"Turkey","gu_a3":"TUR","su_dif":0,"subunit":"Turkey","su_a3":"TUR","brk_diff":0,"name":"Turkey","name_long":"Turkey","brk_a3":"TUR","brk_name":"Turkey","brk_group":null,"abbrev":"Tur.","postal":"TR","formal_en":"Republic of Turkey","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Turkey","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":8,"mapcolor13":4,"pop_est":76805524,"gdp_md_est":902700,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TR","iso_a3":"TUR","iso_n3":"792","un_a3":"792","wb_a2":"TR","wb_a3":"TUR","woe_id":-99,"adm0_a3_is":"TUR","adm0_a3_us":"TUR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TUR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[25.970019531250045,40.136328125],[25.740234375000057,40.10546875000003],[25.668945312499996,40.13588867187502],[25.74091796875001,40.19628906249997],[25.874804687500014,40.23369140624996],[25.91835937500002,40.23798828125004],[25.977050781250053,40.177832031250034],[25.970019531250045,40.136328125]]],[[[35.114062500000074,41.95698242187504],[35.12207031250002,41.89111328125003],[35.2091796875001,41.79438476562503],[35.297753906249994,41.72851562500003],[35.558007812499994,41.63403320312506],[35.919824218749994,41.713720703125034],[35.978125,41.704833984375],[36.05175781249997,41.68256835937498],[36.17919921875003,41.4265625],[36.27841796875006,41.336132812500004],[36.40537109375006,41.27460937500001],[36.509667968749994,41.2625],[36.58710937500004,41.32666015625006],[36.647070312500006,41.3525390625],[36.77773437499999,41.36347656250001],[36.99199218750002,41.275390625],[37.066210937500074,41.18442382812503],[37.43095703125002,41.114111328125006],[37.765625,41.07890625000002],[37.910058593749994,41.001904296874955],[38.38105468750004,40.92451171875001],[38.55693359375001,40.93652343749997],[38.8521484375,41.01767578124998],[39.426367187500006,41.10644531250003],[39.80791015625002,40.982519531250006],[39.91113281250003,40.96645507812502],[40.00019531250004,40.97714843749998],[40.12841796874997,40.94301757812505],[40.26523437500006,40.96132812500005],[40.6875,41.10742187499997],[40.8195312500001,41.19023437499996],[40.95947265624997,41.211621093749976],[41.08359375000006,41.26118164062504],[41.41435546875002,41.42363281249999],[41.510058593750074,41.51748046875002],[41.57656250000005,41.497314453125],[41.70175781250006,41.471582031249994],[41.77939453125006,41.44052734374998],[41.823535156250074,41.432373046875],[41.92578125000003,41.49565429687502],[42.077734375,41.494091796874955],[42.21113281250009,41.486718749999966],[42.27998046875004,41.475],[42.364355468750006,41.454003906249966],[42.46640625,41.43984375000002],[42.50791015625006,41.470068359375034],[42.56738281249997,41.55927734375001],[42.5904296875,41.57070312500002],[42.60683593750005,41.57880859374998],[42.682421875000074,41.58574218749999],[42.75410156250003,41.57890625000002],[42.787890625000074,41.56372070312503],[42.82167968750005,41.49238281249998],[42.90673828125003,41.46684570312502],[43.05712890625003,41.35283203124996],[43.149023437500006,41.30712890624997],[43.171289062499994,41.28793945312498],[43.14101562499999,41.264843749999976],[43.15283203124997,41.23642578125006],[43.20546875000005,41.19916992187501],[43.27929687499997,41.185205078124994],[43.35898437500006,41.19013671875004],[43.40234375000002,41.17656250000001],[43.43339843750002,41.155517578125],[43.44160156250004,41.12597656250003],[43.43945312500003,41.107128906250004],[43.45527343750003,41.06469726562497],[43.51748046875005,41.00483398437504],[43.591699218750044,40.96821289062504],[43.63164062500002,40.929003906250045],[43.6964843750001,40.79414062500001],[43.722656249999964,40.71953124999999],[43.71289062499997,40.64775390625002],[43.667871093749994,40.574072265625034],[43.56933593750003,40.48237304687498],[43.59375,40.444042968750004],[43.615820312500006,40.39331054687497],[43.60839843749997,40.35659179687505],[43.678125,40.239306640625045],[43.70986328125005,40.16650390625002],[43.68330078125004,40.14965820312497],[43.66621093750004,40.12636718750002],[43.79169921875004,40.07026367187498],[43.9419921875,40.023144531249955],[44.00537109375003,40.01411132812498],[44.17802734375002,40.035742187500034],[44.28925781250003,40.040380859375006],[44.39960937500004,39.995751953124966],[44.56044921875005,39.887597656249966],[44.733789062499994,39.74648437499999],[44.76826171875004,39.70351562500005],[44.7833984375001,39.684667968750006],[44.81718750000002,39.65043945312496],[44.782128906249994,39.65107421875001],[44.725,39.681738281250034],[44.58710937500004,39.76855468750006],[44.51669921875,39.73125],[44.455957031249994,39.666748046875],[44.3893554687501,39.422119140625],[44.33544921874997,39.39604492187502],[44.24042968750004,39.39677734374998],[44.12402343749997,39.40522460937501],[44.04394531249997,39.39296875000002],[44.02324218750002,39.37744140625005],[44.03378906250006,39.35102539062498],[44.05751953124999,39.31083984374999],[44.07431640625006,39.25996093750001],[44.07910156249997,39.218310546875045],[44.12128906250004,39.18061523437501],[44.17802734375002,39.14482421874998],[44.180566406249994,39.10805664062496],[44.171875,39.05625],[44.158789062500006,39.01674804687502],[44.14453124999997,38.994384765625],[44.170800781249994,38.934375],[44.23242187500003,38.86323242187501],[44.27167968750004,38.83603515625006],[44.25703125000004,38.70063476562501],[44.28017578124999,38.64067382812496],[44.29785156250003,38.557812499999955],[44.29082031250002,38.420117187499955],[44.2985351562501,38.38627929687499],[44.31962890625002,38.374707031249955],[44.37578125000001,38.36958007812498],[44.43085937500004,38.356787109375034],[44.44990234375009,38.33422851562506],[44.44960937500005,38.317773437499994],[44.38085937499997,38.25458984374998],[44.37275390625009,38.209716796875],[44.34892578125002,38.146484375],[44.329394531250074,38.109277343749966],[44.26796875,38.038818359375],[44.22890625,37.96718749999996],[44.21132812499999,37.908056640625006],[44.22294921875002,37.88017578125002],[44.33623046875002,37.87177734374998],[44.39775390625002,37.82924804687502],[44.56123046875004,37.74462890625003],[44.58994140625,37.71035156249996],[44.5453125,37.65815429687498],[44.54609375000003,37.63632812499998],[44.56718750000002,37.60864257812503],[44.57714843749997,37.560205078125016],[44.573144531249994,37.50639648437499],[44.574023437500074,37.435400390625],[44.60410156250006,37.42373046875002],[44.71513671875001,37.35712890625004],[44.79414062500003,37.29038085937503],[44.79677734375005,37.26977539062499],[44.75830078125003,37.21708984375002],[44.76669921875006,37.15634765624998],[44.76513671875003,37.142431640625006],[44.73095703124997,37.16528320312502],[44.66933593750005,37.17358398437503],[44.605957031249964,37.17602539062499],[44.566015625,37.15825195312502],[44.495996093749994,37.11054687499998],[44.401953125,37.058496093750016],[44.325585937499994,37.0107421875],[44.28183593750006,36.97802734374997],[44.245703125000055,36.983300781249994],[44.2174804687501,37.01186523437505],[44.20166015624997,37.05180664062502],[44.208398437499994,37.20263671875],[44.19179687499999,37.24985351562503],[44.15625,37.28295898437502],[44.11445312500004,37.30185546875006],[44.06464843750004,37.31245117187498],[44.01318359375003,37.313525390625045],[43.94003906250006,37.269287109375],[43.83642578124997,37.223535156249994],[43.67578125000002,37.227246093749955],[43.56796875,37.23583984375003],[43.51582031250004,37.244531250000016],[43.30673828125,37.31464843749998],[43.263085937499994,37.316503906250006],[43.18515625,37.34487304687502],[43.09248046875004,37.36738281249998],[42.936621093750006,37.32475585937502],[42.86914062500003,37.33491210937504],[42.77460937500004,37.371875],[42.74111328125005,37.36191406250003],[42.6354492187501,37.249267578125],[42.45585937500002,37.128710937500045],[42.358984375,37.10859375000004],[42.31289062499999,37.22958984374998],[42.268554687499964,37.27656249999995],[42.24755859375003,37.28222656250006],[42.20273437500006,37.29726562499999],[42.16787109375005,37.28862304687502],[42.05986328125007,37.2060546875],[41.88681640625,37.156396484374994],[41.74355468750005,37.12612304687505],[41.51552734375005,37.08916015624999],[41.33955078125004,37.07080078125006],[41.26464843749997,37.06933593750003],[41.1021484375,37.085888671875004],[40.95888671875005,37.10917968749996],[40.815625,37.10815429687503],[40.70566406250006,37.09770507812502],[40.4503906250001,37.00888671875006],[40.016406250000074,36.82607421875002],[39.68652343749997,36.73862304687506],[39.50146484374997,36.702246093750034],[39.35664062500004,36.681591796874976],[39.10839843749997,36.68056640625005],[38.90644531250004,36.69467773437498],[38.76660156249997,36.69311523437503],[38.68886718750005,36.71508789062497],[38.57802734375005,36.789111328125045],[38.44375,36.86225585937501],[38.38398437500004,36.879248046875034],[38.30585937500009,36.89335937499996],[38.19169921875002,36.90156250000004],[37.90664062500005,36.79462890625001],[37.81796875,36.765576171874955],[37.7203125,36.74370117187502],[37.52353515625006,36.678320312500034],[37.436328125000074,36.64331054687499],[37.327050781249994,36.64658203125006],[37.18740234375005,36.655908203124994],[37.066210937500074,36.652636718750045],[36.98535156250003,36.70239257812506],[36.94179687499999,36.758398437500006],[36.77656250000004,36.79267578124998],[36.65859375000005,36.80253906250002],[36.62841796875003,36.777685546875034],[36.596875,36.70136718750001],[36.546679687500074,36.50634765625],[36.5375,36.45742187499996],[36.64140625000002,36.263525390625],[36.63671874999997,36.233984375],[36.562402343749994,36.22392578125002],[36.47705078125003,36.220703124999964],[36.42148437500006,36.203466796875006],[36.37539062499999,36.171240234375034],[36.347558593749994,36.003515625000034],[36.248828125000074,35.97270507812499],[36.20195312500002,35.93754882812502],[36.15361328125002,35.83388671875005],[36.12734375,35.831445312499994],[35.96757812500007,35.91005859375002],[35.89267578125006,35.91655273437502],[35.95693359374999,35.998144531250006],[35.88710937499999,36.15908203125002],[35.81093750000005,36.30986328125002],[35.88281250000003,36.406347656250034],[36.03173828124997,36.52270507812503],[36.18847656250003,36.65898437499999],[36.18818359375004,36.743066406249994],[36.18007812499999,36.807226562500006],[36.13515625,36.85161132812499],[36.04892578125,36.91059570312501],[35.90458984375002,36.84760742187498],[35.801562500000074,36.77807617187502],[35.73427734375005,36.76396484374999],[35.66113281249997,36.72431640624998],[35.625585937500006,36.65278320312498],[35.53740234375007,36.59702148437497],[35.393164062500006,36.57519531249997],[35.17617187500005,36.634863281250055],[34.943164062500074,36.725683593750006],[34.81123046875004,36.799267578124976],[34.70361328125003,36.81679687499999],[34.601367187500074,36.78447265624999],[34.29960937500007,36.60419921875004],[34.02343750000003,36.34077148437501],[33.95488281250002,36.29521484374996],[33.694726562499994,36.18198242187498],[33.522753906250074,36.14399414062498],[33.44179687499999,36.15283203124999],[33.099511718749994,36.10297851562498],[32.92949218750002,36.095703125],[32.794824218749994,36.03588867187497],[32.533789062500006,36.10073242187505],[32.37773437500002,36.18364257812495],[32.283789062500006,36.26787109374999],[32.13056640625004,36.449121093749966],[32.02197265625003,36.53530273437502],[31.77792968750006,36.61279296875],[31.352539062499968,36.80107421874998],[31.240625,36.82172851562504],[30.950292968750002,36.84868164062502],[30.64404296874997,36.865673828125004],[30.58203124999997,36.79716796874999],[30.55849609375005,36.525830078124955],[30.506054687500097,36.45112304687501],[30.483593750000043,36.310400390625034],[30.44609375000007,36.269873046875034],[30.38730468750006,36.24326171875003],[30.295410156250025,36.287695312500034],[30.23164062500004,36.30732421875004],[30.08320312500004,36.249365234375034],[29.789257812500097,36.168066406250006],[29.6890625,36.15668945312498],[29.348339843750043,36.25883789062502],[29.223632812499968,36.32446289062497],[29.143261718750008,36.39721679687506],[29.116113281250076,36.520117187500034],[29.065527343750006,36.59008789062499],[29.05810546875,36.63813476562501],[29.038281250000043,36.693457031250006],[28.96962890625008,36.71533203125002],[28.895898437500076,36.67358398437505],[28.816894531250053,36.67529296875003],[28.717675781249994,36.70087890625001],[28.48359375000001,36.803808593750006],[28.303710937500053,36.811962890624976],[28.195605468750045,36.68632812499999],[28.111523437500068,36.64638671875002],[28.01943359375005,36.63447265624998],[28.01416015625003,36.67021484374999],[28.083984375000057,36.75146484374999],[27.803808593749974,36.73647460937496],[27.655859375000034,36.67460937499998],[27.54042968750008,36.684228515624994],[27.453906250000017,36.712158203125],[27.466894531250006,36.74633789062502],[27.55468750000003,36.75888671875],[27.63085937500003,36.78666992187499],[27.93447265625005,36.80927734374998],[28.00537109375003,36.83198242187498],[28.08300781250003,36.920263671875034],[28.224414062500045,36.99638671874999],[28.242382812500068,37.029052734375],[28.133691406250048,37.02949218749998],[27.668359375000023,37.007421875000034],[27.348925781250045,37.01958007812502],[27.311035156250057,36.98188476562498],[27.262988281250045,36.97656250000003],[27.249707031249983,37.07915039062499],[27.30019531250005,37.126855468750016],[27.368164062500057,37.122412109375006],[27.535058593750048,37.16386718750002],[27.520117187500006,37.24912109375006],[27.400585937500008,37.30673828124998],[27.376269531250017,37.34072265624996],[27.28955078125003,37.34868164062499],[27.219238281249996,37.38916015625],[27.203906250000074,37.49140625000004],[27.147949218750057,37.60361328124998],[27.06796875,37.65791015625003],[27.077832031250065,37.687695312499955],[27.22441406250007,37.725439453125006],[27.254785156250048,37.88232421875],[27.232421875000025,37.978662109374994],[27.15869140625,37.98686523437499],[26.94384765625003,38.06289062500002],[26.878613281250068,38.054785156250055],[26.807421875000045,38.13833007812502],[26.68281250000004,38.198339843750006],[26.62109375,38.176367187500034],[26.582421875000023,38.149267578125034],[26.524707031250074,38.16225585937502],[26.427929687499983,38.21435546874997],[26.33291015625008,38.24248046875002],[26.290722656250008,38.27719726562498],[26.34365234375005,38.37006835937498],[26.41640625000005,38.36787109374998],[26.4296875,38.440625],[26.37226562500001,38.561914062499994],[26.37783203124999,38.624169921874966],[26.44130859375005,38.64121093749998],[26.513574218750023,38.62949218749998],[26.586523437500063,38.557031249999966],[26.61035156250003,38.48691406249998],[26.595019531250017,38.41860351562502],[26.64130859375004,38.35244140625002],[26.67421875000008,38.33574218750002],[26.69638671875006,38.40537109374998],[26.727343750000074,38.41860351562502],[26.769921875000023,38.38818359375003],[26.861425781250034,38.37294921875005],[27.09863281250003,38.415722656249955],[27.144238281250008,38.45195312499995],[26.97041015625001,38.447851562500034],[26.906835937500034,38.48173828124998],[26.83779296874999,38.55756835937498],[26.795312500000048,38.62641601562498],[26.787695312500006,38.66020507812501],[26.763671875,38.709619140624966],[26.790136718750063,38.73608398437503],[26.909179687499968,38.77578125000005],[27.013671875000057,38.88686523437502],[26.97011718750005,38.919042968750006],[26.920312500000023,38.934228515624994],[26.86621093750003,38.92294921875],[26.814941406250057,38.96098632812502],[26.808300781250036,39.01391601562497],[26.84931640625004,39.05673828124998],[26.853613281250034,39.115625],[26.719335937500034,39.26064453124996],[26.68183593750004,39.292236328125],[26.710742187500042,39.33964843749999],[26.813281250000074,39.41904296875],[26.910937500000074,39.51733398437503],[26.89921874999999,39.549658203125034],[26.82705078125005,39.56289062499999],[26.484082031250068,39.52070312500001],[26.35078125,39.48408203125001],[26.113085937500074,39.46738281249998],[26.095996093750045,39.52080078125002],[26.101367187500074,39.56894531249998],[26.154687500000023,39.65664062499999],[26.14980468750008,39.87285156249999],[26.18134765625004,39.99008789062498],[26.313378906250023,40.025],[26.475390625000074,40.197265625],[26.738085937500045,40.40024414062506],[27.01210937500008,40.39633789062506],[27.12167968750003,40.45234375000001],[27.28457031250008,40.45561523437496],[27.314160156250068,40.414892578125006],[27.332617187500006,40.37592773437498],[27.4755859375,40.319921875000034],[27.728027343749996,40.32880859374998],[27.789355468750074,40.35087890625002],[27.84853515625005,40.381738281250016],[27.731835937500076,40.48149414062499],[27.769140625000034,40.509619140625034],[27.87490234375008,40.512939453125],[27.989550781250074,40.48945312500001],[27.99482421875001,40.46660156249999],[27.96435546875,40.435302734375],[27.928906250000065,40.38041992187502],[27.96259765625001,40.369873046875],[28.2890625,40.40302734374998],[28.63027343750005,40.37646484375],[28.738867187500063,40.390869140625],[29.007128906249985,40.389746093750034],[29.055175781250025,40.424169921875034],[28.97402343749999,40.46738281250006],[28.894628906250006,40.482421875],[28.84121093750005,40.50346679687502],[28.787890625000017,40.53403320312503],[28.958007812500025,40.63056640624998],[29.054101562500076,40.64912109375004],[29.507617187500017,40.70839843750002],[29.844921875000036,40.73808593750004],[29.84921875000006,40.760107421875006],[29.800585937500017,40.760156250000016],[29.36474609375003,40.80927734374998],[29.25976562499997,40.847314453124994],[29.113867187499977,40.93784179687506],[29.082226562500008,40.963427734375045],[29.045507812500002,41.00756835937506],[29.06738281250003,41.101660156250034],[29.094335937500006,41.17724609374997],[29.14814453125004,41.221044921875034],[29.322265624999968,41.227734374999955],[29.919335937500048,41.150830078125004],[30.34492187500004,41.196923828124994],[30.81005859374997,41.08486328124999],[31.254882812499968,41.10761718750001],[31.34667968750003,41.15791015624995],[31.45800781249997,41.32001953125004],[32.08642578125003,41.58920898437498],[32.30644531250007,41.72958984374998],[32.54218750000004,41.806396484375],[32.94667968750005,41.891748046874966],[33.284765625,42.004589843749955],[33.38134765625003,42.01757812500003],[34.19296875,41.96367187499996],[34.75048828124997,41.95683593749998],[35.006445312500006,42.06328125000002],[35.15488281250006,42.02753906250001],[35.14101562500005,41.989501953125],[35.114062500000074,41.95698242187504]]],[[[27.362890625000034,42.02504882812505],[27.47480468750001,41.946875],[27.53486328125001,41.92080078125002],[27.579882812500017,41.93291015625002],[27.661132812500057,41.96132812500002],[27.738867187500006,41.96152343749998],[27.80166015625008,41.95654296875003],[27.831933593750023,41.981298828125006],[27.879199218750074,41.98662109375001],[28.014453125000017,41.96904296874999],[27.98730468749997,41.854882812500016],[28.05029296875003,41.729150390624966],[28.19785156250006,41.55449218750002],[28.34638671875004,41.46635742187499],[28.94677734375006,41.248388671875],[29.057226562500002,41.22973632812503],[29.032128906250023,41.140478515625034],[28.99599609375005,41.06113281250003],[28.95625,41.00820312499999],[28.78037109374998,40.97416992187498],[28.294921875000025,41.07148437500001],[28.172167968750074,41.08071289062502],[28.085546875,41.06132812499999],[27.925195312500023,40.99057617187506],[27.747363281250045,41.01328124999998],[27.49941406250005,40.97314453124997],[27.43017578125,40.839941406250006],[27.258007812499983,40.687353515625006],[26.974609375,40.56401367187502],[26.772070312500034,40.498046875],[26.467968750000068,40.26147460937503],[26.329980468750023,40.123388671875034],[26.271777343750074,40.096582031249994],[26.202734375000034,40.07539062500004],[26.22597656250005,40.141699218750034],[26.260156250000023,40.20239257812497],[26.252343750000023,40.24814453125006],[26.25380859375005,40.31469726562503],[26.355273437500017,40.39023437500006],[26.447460937500068,40.44501953125001],[26.720312500000063,40.54423828124999],[26.792089843750034,40.626611328124994],[26.578125,40.62465820312502],[26.360937500000034,40.60634765625002],[26.224218750000063,40.61806640625002],[26.10546875000003,40.61132812499997],[26.06777343750008,40.68339843750002],[26.03896484375008,40.726757812499955],[26.069726562500023,40.74028320312496],[26.109179687500074,40.749658203124994],[26.178906250000068,40.826513671875034],[26.241210937500057,40.88320312500002],[26.331054687500057,40.95449218749999],[26.354101562500063,40.99707031250006],[26.354101562500063,41.03676757812496],[26.33261718750003,41.06430664062497],[26.32841796875007,41.09702148437498],[26.325683593750025,41.143261718749976],[26.330664062499977,41.23876953125],[26.536425781250074,41.343115234375034],[26.60234374999999,41.354150390624966],[26.62490234375008,41.401757812499994],[26.60976562499999,41.51215820312501],[26.581347656250074,41.60126953125003],[26.54453125000003,41.60722656250002],[26.49501953125008,41.63325195312498],[26.4625,41.66337890624999],[26.41054687499999,41.696337890625045],[26.320898437500034,41.716552734375],[26.31796875000006,41.744677734375045],[26.327246093750006,41.77280273437498],[26.3603515625,41.80156249999999],[26.51142578125004,41.82636718749998],[26.52929687500003,41.84667968750003],[26.549707031250023,41.896728515625],[26.5796875,41.947949218749955],[26.61533203125006,41.964892578125045],[26.67919921875003,41.96333007812498],[26.800390625000034,41.97514648437498],[26.884863281250006,41.99184570312502],[26.96875,42.02685546875006],[27.01171875,42.05864257812496],[27.193359375000057,42.07709960937498],[27.24433593750004,42.09326171874999],[27.294921875000057,42.079541015624955],[27.362890625000034,42.02504882812505]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Taiwan","sov_a3":"TWN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Taiwan","adm0_a3":"TWN","geou_dif":0,"geounit":"Taiwan","gu_a3":"TWN","su_dif":0,"subunit":"Taiwan","su_a3":"TWN","brk_diff":1,"name":"Taiwan","name_long":"Taiwan","brk_a3":"B77","brk_name":"Taiwan","brk_group":null,"abbrev":"Taiwan","postal":"TW","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Self admin.; Claimed by China","name_sort":"Taiwan","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":7,"mapcolor13":2,"pop_est":22974347,"gdp_md_est":712000,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TW","iso_a3":"TWN","iso_n3":"158","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"TWN","adm0_a3_us":"TWN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"TWN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.4074218750001,24.522119140624994],[118.45117187500001,24.45556640625003],[118.43271484375006,24.41435546875007],[118.29511718750003,24.436328125000017],[118.28730468750004,24.476611328125045],[118.33935546874999,24.46914062500005],[118.4074218750001,24.522119140624994]]],[[[121.00878906249996,22.620361328124968],[120.946875,22.503076171874966],[120.89736328125,22.379150390625053],[120.87734375,22.26220703125003],[120.87841796874997,22.141552734374955],[120.86425781250001,22.032666015624983],[120.83984375000003,21.925],[120.74277343750006,21.956005859374983],[120.6901367187501,22.033105468749966],[120.67802734375,22.159667968749996],[120.60761718750003,22.312548828125074],[120.58125,22.35639648437504],[120.47978515625002,22.44189453125003],[120.38759765624998,22.484521484375023],[120.31621093750002,22.547607421875],[120.32558593750007,22.54243164062501],[120.27285156250005,22.62744140625],[120.2328125,22.71791992187505],[120.15009765625008,22.974902343749985],[120.12158203124997,23.03701171875005],[120.08339843749998,23.093701171874955],[120.07246093750008,23.149755859375002],[120.08554687500006,23.21206054687499],[120.12119140625006,23.305175781250057],[120.14296875,23.399072265624994],[120.12539062500005,23.526611328125057],[120.13212890625007,23.652929687500034],[120.15898437500002,23.70903320312499],[120.62968750000002,24.478515625],[120.7574218750001,24.642285156249955],[120.83593750000001,24.72265625],[120.90156250000004,24.813281250000074],[120.9640625000001,24.927978515624996],[121.040625,25.03281250000003],[121.09541015625003,25.065087890625023],[121.36542968750004,25.15917968750003],[121.449609375,25.24902343750003],[121.51708984374997,25.276904296875014],[121.59365234375,25.275341796874983],[121.64306640624996,25.23242187500003],[121.68710937500008,25.18159179687495],[121.73330078125005,25.154101562500042],[121.85283203125007,25.104443359374983],[121.90517578125001,25.056445312500045],[121.92900390625002,24.973730468749977],[121.85625,24.895263671875],[121.82011718750006,24.824511718750045],[121.81337890625,24.746337890625025],[121.8263671875001,24.64052734375005],[121.82802734374998,24.534375],[121.73701171875008,24.285253906250063],[121.6393554687501,24.130078124999983],[121.61308593750007,24.05273437500003],[121.5833984375,23.860888671875017],[121.52607421875004,23.668261718750045],[121.47714843750008,23.42407226562503],[121.39746093750003,23.172509765625023],[121.35224609375004,23.067285156249994],[121.29589843750003,22.96660156249999],[121.16123046875012,22.776367187500057],[121.00878906249996,22.620361328124968]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Uzbekistan","sov_a3":"UZB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uzbekistan","adm0_a3":"UZB","geou_dif":0,"geounit":"Uzbekistan","gu_a3":"UZB","su_dif":0,"subunit":"Uzbekistan","su_a3":"UZB","brk_diff":0,"name":"Uzbekistan","name_long":"Uzbekistan","brk_a3":"UZB","brk_name":"Uzbekistan","brk_group":null,"abbrev":"Uzb.","postal":"UZ","formal_en":"Republic of Uzbekistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uzbekistan","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":5,"mapcolor13":4,"pop_est":27606007,"gdp_md_est":71670,"pop_year":-99,"lastcensus":1989,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"UZ","iso_a3":"UZB","iso_n3":"860","un_a3":"860","wb_a2":"UZ","wb_a3":"UZB","woe_id":-99,"adm0_a3_is":"UZB","adm0_a3_us":"UZB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"UZB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[71.7796875,39.95024414062504],[71.75292968749997,39.90712890625005],[71.70585937500007,39.91743164062501],[71.66894531249997,39.94609374999999],[71.68125,39.968652343749966],[71.7365234375001,39.98095703124997],[71.7653320312501,39.993261718750006],[71.78994140625005,39.99531249999998],[71.7796875,39.95024414062504]]],[[[71.20615234375006,39.89257812499999],[71.15625,39.88344726562502],[71.06425781250002,39.88491210937505],[71.01171874999996,39.895117187500006],[71.04365234375004,39.97631835937503],[71.04482421875005,39.992529296875034],[71.04101562499997,39.99492187499999],[71.01445312500006,40.005761718749966],[70.97441406250007,40.03886718749996],[70.96064453125004,40.087988281250034],[70.9762695312501,40.133251953125004],[71.00546875,40.15229492187498],[71.0241210937501,40.14916992187497],[71.08037109375007,40.07988281249999],[71.13027343750005,40.059667968750034],[71.2287109375001,40.04814453124999],[71.179296875,39.979833984375034],[71.215625,39.90678710937495],[71.20615234375006,39.89257812499999]]],[[[61.99023437500002,43.49213867187495],[62.0719726562501,43.489355468750034],[62.23789062500006,43.50957031249996],[62.459375,43.536621093749964],[62.6344726562501,43.558007812499966],[62.846191406249964,43.583886718749994],[63.047656250000074,43.60849609375003],[63.207031250000036,43.62797851562502],[63.44482421874997,43.61323242187504],[63.679687499999964,43.5986328125],[63.848144531249964,43.58813476562497],[64.01328125000006,43.57783203125001],[64.20878906250002,43.565722656250045],[64.31816406250002,43.55893554687498],[64.44316406250007,43.55117187499999],[64.49609375000003,43.571630859375006],[64.6041015625,43.613476562499976],[64.70605468749997,43.65297851562505],[64.81181640625002,43.693945312500034],[64.9054687500001,43.714697265625006],[65.003125,43.649072265624966],[65.08486328125005,43.573681640624976],[65.17089843750003,43.49418945312502],[65.27050781249997,43.417529296875045],[65.36650390625006,43.37202148437501],[65.49619140625,43.310546875],[65.570703125,43.205175781250034],[65.67021484375002,43.06459960937499],[65.73564453125002,42.97211914062498],[65.80302734375,42.87695312500006],[65.9010742187501,42.91450195312498],[66.00566406250007,42.95458984375006],[66.1002929687501,42.99082031249998],[66.08886718749996,42.873388671875034],[66.078515625,42.76665039062496],[66.06269531250004,42.60517578125001],[66.04980468750003,42.472753906250034],[66.01552734375005,42.314794921875006],[66.01318359375003,42.19448242187502],[66.01123046874997,42.088769531249966],[66.00957031250007,42.00488281250003],[66.19316406250007,42.00112304687496],[66.3288085937501,41.99833984375002],[66.49863281250006,41.99487304687503],[66.5150390625,41.88940429687502],[66.53789062500007,41.74125976562496],[66.57255859375,41.60698242187496],[66.60166015625,41.494335937500004],[66.64531250000002,41.3486328125],[66.66865234375004,41.27075195312503],[66.70966796875004,41.17915039062501],[66.74980468750007,41.15708007812506],[66.8142578125,41.14238281249999],[67.038671875,41.1533203125],[67.225,41.16235351562497],[67.37158203124997,41.16953125],[67.52802734375004,41.177148437499966],[67.73505859375004,41.187255859374964],[67.805078125,41.163916015625034],[67.86572265625001,41.18027343749998],[67.9357421875001,41.19658203125002],[67.99140625000004,41.13002929687505],[68.01972656250004,41.09624023437499],[68.059375,41.06127929687497],[68.11308593750007,41.02861328124999],[68.09033203124997,40.96025390625001],[68.05703125,40.86059570312506],[68.04765625000007,40.80927734374998],[68.11230468749997,40.75405273437502],[68.16025390625,40.721777343750006],[68.29189453125,40.656103515625034],[68.41503906250003,40.61943359375002],[68.495703125,40.60864257812506],[68.57265625,40.62265624999998],[68.60068359375,40.65996093750002],[68.59365234375,40.711279296875006],[68.55654296875,40.76513671875006],[68.5592773437501,40.82929687499998],[68.58408203125,40.876269531250045],[68.66279296875004,40.961523437500006],[68.73710937500002,41.04189453125002],[68.85117187500006,41.12382812500002],[68.9869140625,41.205029296874955],[69.04345703124997,41.26411132812501],[69.06494140625003,41.366943359375],[69.15361328125002,41.42524414062498],[69.24931640625007,41.46025390624999],[69.3683593750001,41.490576171875034],[69.40097656250006,41.54189453125002],[69.56513671875004,41.62905273437502],[69.66386718750007,41.672119140625],[69.78808593749997,41.69731445312499],[69.95996093749997,41.754052734374994],[70.09560546875,41.82050781250004],[70.22587890625007,41.94599609375001],[70.32890625000002,42.02797851562502],[70.41601562500003,42.07856445312501],[70.48906250000007,42.080273437500004],[70.54013671875005,42.03945312500005],[70.58427734375,42.036035156249966],[70.61328124999997,42.05473632812496],[70.6625,42.10747070312495],[70.71523437500005,42.16865234374998],[70.76455078125005,42.194189453125034],[70.86035156250003,42.20722656250004],[70.94677734374997,42.24868164062505],[70.97900390625003,42.26655273437504],[71.03603515625,42.28466796875],[71.12998046875005,42.25],[71.21269531250002,42.20644531250005],[71.23232421875005,42.18627929687503],[71.22851562499997,42.16289062499996],[71.03222656249997,42.07778320312505],[70.9103515625001,42.03798828125002],[70.85664062500004,42.03081054687496],[70.84189453125,42.019628906250006],[70.80332031250006,41.92265625],[70.7277343750001,41.90522460937495],[70.63085937499997,41.87548828125003],[70.562890625,41.830810546875],[70.45498046875005,41.72504882812504],[70.18095703125007,41.57143554687499],[70.17695312500004,41.539990234374976],[70.20087890625004,41.51445312500001],[70.29003906250003,41.496826171875],[70.4078125,41.449560546875034],[70.4713867187501,41.41264648437499],[70.64589843750005,41.46035156250002],[70.6888671875,41.449804687500006],[70.734375,41.40053710937499],[70.78242187500003,41.2625],[70.86044921875006,41.22490234375002],[70.9625976562501,41.19599609374998],[71.0259765625,41.18657226562502],[71.11074218750005,41.152636718750045],[71.2234375,41.13994140625001],[71.29882812500003,41.15249023437499],[71.39306640625003,41.123388671875034],[71.40839843750004,41.13603515625002],[71.42089843750003,41.341894531250034],[71.5,41.307470703125034],[71.5456054687501,41.30805664062498],[71.58554687500006,41.33325195312497],[71.60625,41.36743164062499],[71.61962890624997,41.435449218749994],[71.60224609375008,41.50327148437506],[71.6375,41.53417968750006],[71.66494140625,41.54121093749998],[71.68515625,41.53300781249999],[71.69726562499997,41.51557617187498],[71.70068359374997,41.454003906249966],[71.75771484375004,41.42802734375002],[71.79248046875003,41.41313476562499],[71.82578125000006,41.36103515625004],[71.85800781250006,41.311376953125034],[71.8786132812501,41.195019531249955],[71.95849609375001,41.18706054687502],[72.05244140625004,41.16474609375001],[72.1154296875001,41.18657226562502],[72.1642578125001,41.173730468749966],[72.18095703125002,41.11845703124999],[72.18066406249997,41.066845703124955],[72.18730468750002,41.02592773437499],[72.2130859375001,41.014257812500006],[72.29492187499996,41.039941406249994],[72.36406250000002,41.04345703125],[72.42734375000006,41.018945312499966],[72.50595703125,40.98168945312503],[72.62041015625002,40.88378906249997],[72.65830078125,40.86992187499999],[72.83095703125004,40.862158203125006],[72.86660156249998,40.84233398437496],[72.92597656250004,40.84243164062499],[72.9900390625,40.86010742187503],[73.13212890625002,40.82851562499999],[73.1369140625001,40.810644531250006],[73.112890625,40.786035156250044],[72.77382812500005,40.65039062500003],[72.74882812500002,40.60869140624996],[72.67958984375,40.55561523437498],[72.6041015625,40.52543945312499],[72.56748046875,40.524365234375004],[72.40205078125004,40.578076171874955],[72.3826171875,40.56513671874998],[72.36904296874998,40.54345703125],[72.36972656250006,40.519726562499955],[72.40595703125003,40.46308593749998],[72.3892578125,40.42739257812499],[72.35771484375007,40.40166015624999],[72.25400390625,40.42421875000005],[72.23466796875007,40.438623046874966],[72.23281250000005,40.45439453124999],[72.19287109374997,40.45444335937498],[72.13125,40.438623046874966],[72.01259765625,40.34072265624999],[71.97109375,40.289501953124955],[71.95566406250006,40.25859375],[71.902734375,40.24096679687503],[71.84541015625004,40.23432617187501],[71.7726562500001,40.18803710937499],[71.69248046875,40.15234375],[71.66679687500002,40.17861328125002],[71.65087890624996,40.20800781250006],[71.62988281250003,40.21713867187506],[71.58046875,40.21025390624999],[71.52041015625005,40.20898437499999],[71.457421875,40.24199218749996],[71.37617187500004,40.27519531249999],[71.30468749999997,40.28691406249996],[71.09453125000002,40.27124023437497],[70.990625,40.2548828125],[70.95800781250003,40.238867187500034],[70.89941406249997,40.234570312499955],[70.653125,40.201171875],[70.60273437500003,40.21416015624998],[70.56582031250005,40.26713867187502],[70.53359375,40.32451171874999],[70.46992187500004,40.345361328124966],[70.3982421875,40.361376953125045],[70.37158203125003,40.38413085937506],[70.3697265625,40.41201171875005],[70.3771484375001,40.43925781250002],[70.38261718750002,40.453515624999966],[70.54882812499997,40.562792968750045],[70.69833984375006,40.66118164062502],[70.71201171875,40.66909179687502],[70.72558593750003,40.68779296875002],[70.75107421875006,40.721777343750006],[70.75097656250003,40.739599609375],[70.63916015624997,40.77856445312503],[70.63476562499996,40.796582031249976],[70.65732421875006,40.81508789062502],[70.65732421875006,40.839648437500045],[70.57822265625,40.911474609375006],[70.44150390625005,41.0234375],[70.40195312500006,41.035107421874976],[70.37265625000006,41.02763671874996],[70.31894531250006,40.91923828124999],[70.29208984375005,40.89169921874998],[70.13632812500005,40.820410156250034],[70.00566406250007,40.77143554687501],[69.77324218750007,40.68427734375001],[69.71289062500003,40.65698242187503],[69.67080078125,40.66196289062498],[69.62841796874997,40.679052734375006],[69.4982421875001,40.76708984375],[69.41386718750002,40.79716796874999],[69.35722656250002,40.76738281249996],[69.309375,40.72392578124999],[69.31396484375003,40.63476562500006],[69.25996093750004,40.58764648437503],[69.20625,40.56655273437499],[69.30419921874997,40.32739257812503],[69.29443359375003,40.296582031249976],[69.21953125000007,40.28813476562504],[69.27490234374997,40.19809570312498],[69.22832031250007,40.18759765624998],[69.11035156250003,40.20874023437503],[68.95175781250006,40.22260742187501],[68.65253906250008,40.182666015625045],[68.63066406250007,40.16708984374998],[68.6224609375,40.14726562500002],[68.63974609375006,40.12919921874999],[68.7845703125,40.127099609374994],[68.92685546875,40.136328125],[68.9660156250001,40.11958007812498],[68.9720703125,40.08994140624998],[68.95566406249999,40.07133789062502],[68.90849609375002,40.068212890625006],[68.80468750000003,40.05034179687498],[68.79277343750007,40.03149414062497],[68.789453125,40.013330078124994],[68.82441406250004,39.96079101562506],[68.86386718750006,39.92734374999998],[68.86875,39.90747070312503],[68.8522460937501,39.890966796875034],[68.83242187500005,39.88432617187502],[68.79765625000007,39.90913085937501],[68.77783203124997,39.904199218749966],[68.76796875,39.88183593750003],[68.75820312500005,39.855566406250006],[68.73525390625,39.83623046874999],[68.6869140625,39.846289062500006],[68.63896484375006,39.8388671875],[68.61035156250003,39.74326171875006],[68.58613281250004,39.63496093750001],[68.50693359375,39.56279296874996],[68.46328125,39.53671874999998],[68.39902343750006,39.52885742187499],[68.30302734375002,39.537695312500006],[68.24492187500002,39.54829101562504],[68.07714843750003,39.56416015624998],[67.90859375000005,39.59379882812499],[67.71904296875007,39.62138671875002],[67.54248046874997,39.55761718749997],[67.49169921875003,39.51875],[67.45957031250006,39.48242187500003],[67.426171875,39.46557617187497],[67.34960937499997,39.24208984374999],[67.3576171875001,39.216699218749994],[67.40039062499997,39.19667968749999],[67.61650390625006,39.15029296875005],[67.64833984375005,39.13105468750003],[67.66728515625002,39.10917968750002],[67.67656250000002,39.00849609375001],[67.69443359375006,38.99462890625002],[67.76855468750003,38.98222656249999],[67.8756835937501,38.98300781249998],[67.95957031250006,38.99291992187506],[68.0443359375,38.98359375],[68.10351562499996,38.96201171875006],[68.13251953125004,38.927636718749966],[68.14853515625,38.890625],[68.04785156250003,38.669287109375],[68.05595703125007,38.58891601562499],[68.08720703125002,38.47353515625002],[68.144140625,38.38310546874999],[68.2513671875,38.29453125000006],[68.33310546875,38.23779296875002],[68.3502929687501,38.211035156250006],[68.35449218750003,38.16953124999998],[68.3412109375,38.11679687499998],[68.29404296875006,38.032910156249955],[68.2365234375001,37.959667968749955],[68.17402343750004,37.92841796874998],[68.08759765625004,37.83544921875006],[68.01093750000003,37.720947265625],[67.86357421875002,37.57070312500002],[67.81435546875004,37.48701171875003],[67.7980468750001,37.244970703125006],[67.75898437500004,37.172216796875034],[67.75292968749997,37.199804687500034],[67.7,37.227246093749955],[67.60742187499996,37.22250976562506],[67.546484375,37.23564453124999],[67.51728515625008,37.26665039062499],[67.44169921875007,37.25800781250001],[67.3197265625,37.209570312500006],[67.1955078125001,37.23520507812498],[67.06884765624997,37.334814453125006],[66.82773437500006,37.37128906249998],[66.52226562500007,37.34848632812506],[66.51064453125,37.45869140625004],[66.51132812500006,37.59916992187496],[66.52558593750004,37.785742187500034],[66.629296875,37.93203125],[66.62636718750005,37.959863281249994],[66.60625,37.986718750000044],[66.57451171875007,38.01079101562499],[66.38974609375006,38.050927734374994],[66.3353515625,38.07216796875005],[66.26367187499996,38.118066406249994],[66.17314453125007,38.16669921875003],[66.09482421875,38.20014648437501],[65.97119140624996,38.244238281250006],[65.8571289062501,38.26875],[65.79023437500004,38.25004882812496],[65.72851562500003,38.22636718750002],[65.67089843749997,38.225732421874966],[65.612890625,38.23857421875002],[65.39960937500004,38.34882812500001],[65.07666015624997,38.53945312500002],[64.820703125,38.672460937500034],[64.65996093750002,38.73603515625001],[64.621875,38.756445312500006],[64.531640625,38.81621093750002],[64.3099609375,38.97729492187497],[64.16279296875004,38.95361328125003],[63.95253906250005,39.05834960937506],[63.76367187500003,39.16054687499999],[63.72080078125,39.18813476562502],[63.50605468750003,39.377099609374966],[63.291894531249994,39.49951171875006],[63.058105468749964,39.633154296875006],[62.90683593750006,39.716796875],[62.65068359375002,39.858496093750006],[62.52548828125001,39.94409179687503],[62.48320312500002,39.97563476562496],[62.44160156250004,40.03623046875006],[62.375,40.33208007812502],[62.29804687500005,40.467480468749976],[62.18847656250003,40.54121093749998],[62.095019531250074,40.68330078124998],[62.01757812500002,40.89379882812497],[61.95351562499999,41.030615234375034],[61.90283203124997,41.09370117187501],[61.79990234375006,41.163427734375006],[61.64453125000003,41.239843750000034],[61.496972656249994,41.276074218749955],[61.44365234375007,41.27460937500001],[61.417382812500044,41.26513671875003],[61.3875,41.252148437499955],[61.32890625000002,41.19511718749999],[61.2423828125001,41.18920898437503],[61.179296875,41.19057617187502],[61.11992187500001,41.21088867187501],[60.93320312500006,41.22900390625006],[60.86718750000003,41.248681640624966],[60.75488281249997,41.245751953124994],[60.51357421875,41.216162109375006],[60.454980468749994,41.221630859374955],[60.2,41.34897460937497],[60.089648437500074,41.39941406250003],[60.06738281249998,41.427343750000034],[60.06875,41.476220703124966],[60.106054687500055,41.54521484374999],[60.13798828125007,41.59414062499999],[60.124023437499964,41.644970703124976],[60.07558593750006,41.700537109375006],[60.07558593750006,41.759667968749966],[60.10859375000004,41.792675781249955],[60.17636718750006,41.78227539062495],[60.20078125000006,41.803125],[60.1920898437501,41.83442382812501],[60.15556640625002,41.85703125],[60.106933593749964,41.90742187499998],[59.96259765625004,41.954394531250045],[59.94179687499999,41.97353515625002],[59.94931640625,41.995410156250045],[59.97412109374997,42.018798828125],[59.97919921875003,42.06806640625001],[59.98164062500009,42.13173828125002],[60.00078125000001,42.16474609374998],[60.0060546875001,42.190820312499966],[59.98515625000002,42.21171875],[59.936523437499964,42.23603515625004],[59.85830078124999,42.29516601562499],[59.76259765625005,42.30156249999999],[59.45107421874999,42.29951171875001],[59.35429687500002,42.32329101562496],[59.2765625000001,42.35615234374998],[59.199121093749994,42.481689453125],[59.159570312500044,42.51142578125001],[59.123144531250006,42.523779296875034],[59.03583984375004,42.528125],[58.93085937500009,42.54028320312503],[58.87695312500002,42.56147460937498],[58.72998046875003,42.67617187499999],[58.58906250000009,42.778466796874966],[58.53232421875006,42.68193359375002],[58.4771484375,42.66284179687503],[58.353125,42.67172851562498],[58.259667968750044,42.688085937500034],[58.2064453125,42.666308593750045],[58.15156250000004,42.628076171874966],[58.16201171875005,42.60297851562501],[58.20410156249997,42.576367187500004],[58.288671875,42.527294921874955],[58.4181640625001,42.40668945312498],[58.47695312499999,42.34013671875002],[58.48583984375002,42.31684570312498],[58.474414062500074,42.29936523437496],[58.45703125000002,42.29179687500002],[58.43144531250001,42.292089843750006],[58.39707031250006,42.29248046875],[58.37714843750009,42.31245117187498],[58.370507812500044,42.34677734375003],[58.32724609375,42.39892578125],[58.28291015625003,42.42885742187496],[58.23408203125004,42.44770507812498],[58.165625,42.461572265624966],[58.075488281250074,42.486523437500004],[58.02890625,42.48764648437506],[57.983496093750006,42.458789062500045],[57.945703125,42.420019531250034],[57.9234375,42.335205078125],[57.85595703125002,42.2310546875],[57.814257812500074,42.18984375000005],[57.686132812500055,42.16479492187499],[57.381738281250044,42.15629882812496],[57.290625,42.123779296875],[57.228808593750074,42.08447265624997],[57.11357421875002,41.95712890625006],[57.03369140625003,41.91484375],[56.96406250000004,41.85654296875],[56.98486328125003,41.669335937500044],[57.01816406250006,41.45058593749999],[57.07666015624997,41.38999023437498],[57.113867187500006,41.37177734375001],[57.11884765625004,41.35029296874998],[57.09482421875006,41.33129882812502],[57.06425781250002,41.307275390624994],[57.01796875,41.26347656249996],[56.96582031249997,41.26513671875003],[56.86083984374997,41.27612304687506],[56.77363281250003,41.287988281249994],[56.47988281249999,41.30063476562498],[56.24199218750002,41.31083984375001],[55.977441406250044,41.32221679687503],[55.97734375000002,41.5517578125],[55.977148437500055,41.781347656250034],[55.97705078124997,42.010888671874994],[55.97695312500005,42.240429687499955],[55.97685546875001,42.469970703125],[55.9767578125001,42.69951171874996],[55.97666015625006,42.929052734375],[55.97656250000002,43.15859375000005],[55.976464843749994,43.38808593749999],[55.97636718750002,43.617626953124955],[55.97626953125004,43.84721679687502],[55.97617187500006,44.07675781250006],[55.97607421875003,44.30629882812502],[55.975976562499994,44.535839843749955],[55.97578125000004,44.76538085937499],[55.97568359375006,44.99492187499996],[56.10048828125005,45.02338867187498],[56.25791015625006,45.05932617187503],[56.40917968749997,45.093798828125045],[56.588769531250044,45.13476562500003],[56.79189453125005,45.181054687499966],[56.96503906250004,45.22060546875002],[57.171679687500074,45.26772460937502],[57.32929687500004,45.303662109374976],[57.477343750000074,45.33745117187502],[57.66669921875009,45.37744140625],[57.961035156250006,45.439697265625],[58.1251953125001,45.47436523437503],[58.29111328125006,45.509423828124994],[58.44941406250004,45.542919921874955],[58.555273437500006,45.55537109375001],[58.668945312500036,45.50756835937506],[58.80703124999999,45.441796874999966],[58.945117187500074,45.37597656249997],[59.083398437499994,45.310205078124994],[59.22148437500001,45.24443359374999],[59.35957031250005,45.178613281249994],[59.49785156250002,45.11284179687502],[59.6359375000001,45.04707031250001],[59.774023437500006,44.981298828125034],[59.912207031250006,44.91557617187496],[60.05029296874997,44.84975585937496],[60.18847656249997,44.78398437499998],[60.32666015624997,44.71821289062498],[60.464746093749994,44.652441406250006],[60.602929687499994,44.58662109375001],[60.741113281249994,44.520849609375034],[60.87919921875007,44.45507812500003],[61.007910156250006,44.39379882812497],[61.06533203125,44.348388671874964],[61.09707031250005,44.24824218749998],[61.16074218750006,44.16860351562502],[61.27148437499997,44.08227539062503],[61.38505859375002,43.99394531249996],[61.52587890625002,43.877197265625],[61.62363281250006,43.79619140625001],[61.723242187500006,43.713574218749955],[61.887597656249994,43.57724609374998],[61.99023437500002,43.49213867187495]],[[70.56875,40.981835937499966],[70.62275390625004,40.93442382812498],[70.65253906250004,40.93662109374998],[70.64921875000002,40.96083984375005],[70.6183593750001,41.00166015625001],[70.57207031250002,41.02480468750002],[70.55,41.01489257812503],[70.56875,40.981835937499966]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Vietnam","sov_a3":"VNM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vietnam","adm0_a3":"VNM","geou_dif":0,"geounit":"Vietnam","gu_a3":"VNM","su_dif":0,"subunit":"Vietnam","su_a3":"VNM","brk_diff":0,"name":"Vietnam","name_long":"Vietnam","brk_a3":"VNM","brk_name":"Vietnam","brk_group":null,"abbrev":"Viet.","postal":"VN","formal_en":"Socialist Republic of Vietnam","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vietnam","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":5,"mapcolor13":4,"pop_est":86967524,"gdp_md_est":241700,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VN","iso_a3":"VNM","iso_n3":"704","un_a3":"704","wb_a2":"VN","wb_a3":"VNM","woe_id":-99,"adm0_a3_is":"VNM","adm0_a3_us":"VNM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"VNM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.61748046875006,8.68281250000004],[106.5892578125,8.680517578125006],[106.56796875000006,8.700927734375],[106.65859375,8.766357421875],[106.64951171875006,8.722998046874963],[106.6525390625001,8.70112304687504],[106.61748046875006,8.68281250000004]]],[[[104.06396484375003,10.39082031250001],[104.08300781250003,10.341113281250017],[104.07578125000006,10.224853515625043],[104.0368164062501,10.11074218749998],[104.04833984374996,10.061035156249972],[104.01845703125,10.029199218749966],[103.95214843749997,10.242919921874986],[103.86796875000007,10.335400390624997],[103.84951171875005,10.371093749999986],[103.89843749999997,10.36850585937499],[103.98583984375003,10.426953125],[104.02773437500004,10.428369140625023],[104.06396484375003,10.39082031250001]]],[[[107.16767578125003,10.397167968749967],[107.08378906250002,10.33657226562498],[107.07792968750007,10.3875],[107.15087890625003,10.420312499999978],[107.17656250000007,10.446191406250009],[107.1949218750001,10.445703125],[107.16767578125003,10.397167968749967]]],[[[107.03134765625006,20.747021484374983],[106.99003906250002,20.743066406249962],[106.91064453124997,20.82421875],[106.95341796875002,20.867041015625006],[107.04375,20.836816406249966],[107.06445312499997,20.817285156249994],[107.06396484374997,20.799755859374983],[107.04228515625007,20.76103515624999],[107.03134765625006,20.747021484374983]]],[[[106.865625,20.815722656250045],[106.85410156250012,20.79638671875],[106.803125,20.84375],[106.76943359375,20.86420898437495],[106.79531250000005,20.927929687499983],[106.85507812500006,20.858251953125006],[106.865625,20.815722656250045]]],[[[107.52128906250007,20.926611328124977],[107.46552734375004,20.900537109374994],[107.39921875000007,20.903466796874966],[107.47861328125006,20.952343749999983],[107.51894531250005,21.01284179687505],[107.55126953125003,21.034033203125006],[107.55107421875002,20.981201171875],[107.52128906250007,20.926611328124977]]],[[[107.60273437500004,21.216796875000025],[107.4586914062501,21.091650390625034],[107.40351562500004,21.093652343749994],[107.4525390625,21.235302734374983],[107.47626953125003,21.268945312499994],[107.56269531250004,21.22041015624995],[107.60273437500004,21.216796875000025]]],[[[105.78232421875005,22.969335937500034],[105.8429687500001,22.922802734374955],[105.90263671875007,22.92495117187505],[105.9623046875,22.93745117187501],[106.00097656250003,22.974755859374966],[106.06845703125012,22.975537109374955],[106.14843749999997,22.970068359375002],[106.183984375,22.955126953125045],[106.24941406250005,22.869433593750017],[106.2790039062501,22.857470703125045],[106.33808593750004,22.86347656250004],[106.45087890625004,22.893896484375006],[106.54179687500007,22.90834960937502],[106.62402343749997,22.87426757812503],[106.78027343749997,22.778906250000034],[106.73632812500001,22.710937500000057],[106.70156250000005,22.637744140625045],[106.63310546875002,22.586035156250002],[106.582421875,22.57324218749997],[106.55039062500006,22.501367187499994],[106.53632812500004,22.395410156249994],[106.55361328124998,22.341699218749966],[106.5931640625,22.324511718750017],[106.63652343750002,22.28862304687499],[106.65419921875,22.24145507812497],[106.66005859374998,22.136474609375],[106.65771484374996,22.018212890624966],[106.66357421875003,21.97890625000005],[106.69765625000004,21.986181640625002],[106.72949218749997,22.000341796875063],[106.79414062500003,21.981982421875045],[106.87451171875003,21.951269531250006],[106.92519531250005,21.920117187499955],[106.97099609375002,21.923925781250034],[107.00644531250005,21.893408203125034],[107.01982421875002,21.834863281249994],[107.06162109375012,21.79418945312497],[107.17851562500002,21.71708984374999],[107.27207031250005,21.71064453125001],[107.35117187500012,21.60888671874997],[107.43349609375005,21.64228515625004],[107.4713867187501,21.598339843749955],[107.64101562500005,21.613916015625023],[107.75927734374997,21.655029296875057],[107.80205078125006,21.645166015624994],[107.90839843750004,21.560400390625034],[107.97265624999996,21.507958984375023],[107.92578124999997,21.49892578125005],[107.80908203124997,21.497119140625017],[107.7072265625001,21.405859375],[107.63671875000003,21.368066406250023],[107.52695312500006,21.336230468750017],[107.4099609375,21.284814453125023],[107.3761718750001,21.194140625000045],[107.37333984375,21.128466796875074],[107.35429687500007,21.055175781250057],[107.1647460937501,20.94873046875003],[107.11171875,20.959570312500034],[107.07519531250001,20.99926757812503],[107.01923828125008,20.9912109375],[106.98144531250003,20.97138671875004],[106.93642578125,20.974072265624955],[106.88623046874997,20.95],[106.82060546875002,20.957519531250057],[106.76025390625001,20.991113281249962],[106.72519531250005,20.99990234374999],[106.68339843750007,21.000292968750074],[106.67548828125004,20.960498046875045],[106.73730468750003,20.806152343750025],[106.75341796875003,20.73505859375004],[106.55078124999997,20.52656250000001],[106.57285156250012,20.392187499999977],[106.51796875000004,20.288867187499985],[106.39550781250003,20.205908203125063],[106.16572265625004,19.992041015625006],[106.0622070312501,19.987353515625017],[105.98408203125004,19.939062500000034],[105.81396484374997,19.58745117187499],[105.81210937500012,19.46699218749998],[105.78535156250008,19.378857421874955],[105.7911132812501,19.29418945312503],[105.71640625000006,19.127783203125063],[105.63906250000005,19.057177734375074],[105.62177734375004,18.96630859375003],[105.73203125000006,18.77929687500003],[105.74423828125006,18.746289062499955],[105.80820312500012,18.645849609375006],[105.83925781250005,18.57416992187498],[105.88828125000006,18.502490234375042],[106.065625,18.31635742187504],[106.14453124999997,18.25942382812499],[106.23955078125007,18.220703125],[106.41191406250002,18.053173828124983],[106.49902343749997,17.946435546874994],[106.459375,17.873681640624994],[106.47890625000005,17.719580078125063],[106.35585937500004,17.765039062499994],[106.3705078125,17.746875],[106.51679687500004,17.66279296875004],[106.7357421875,17.36718750000003],[106.92617187500005,17.22138671874998],[107.11992187500002,17.055517578125034],[107.18037109375003,16.89794921875],[107.35507812500012,16.79375],[107.54931640624997,16.642578125000025],[107.54082031250002,16.60864257812503],[107.5934570312501,16.56806640625001],[107.72412109374997,16.487841796875017],[107.803125,16.40307617187497],[107.83378906250002,16.322460937499983],[107.8820312500001,16.309619140625045],[107.93632812500007,16.329394531250074],[107.99072265625003,16.337109374999955],[108.02939453125012,16.331103515625074],[108.08798828125006,16.24272460937499],[108.16972656250002,16.163671875000063],[108.20898437500003,16.091064453125],[108.24082031250012,16.10078125000004],[108.26738281250002,16.08979492187501],[108.27402343750012,16.029052734375],[108.28603515625,15.989062500000017],[108.39531250000002,15.872460937499966],[108.4474609375001,15.7626953125],[108.5778320312501,15.58471679687497],[108.67421875,15.483593749999983],[108.74277343750012,15.426611328125006],[108.82128906249997,15.377929687500028],[108.8982421875,15.180517578124961],[108.93994140624997,15.001464843749986],[109.02246093749997,14.802832031250018],[109.08486328124998,14.716162109375034],[109.08701171875012,14.55258789062502],[109.13730468750012,14.384130859374991],[109.19140624999997,14.270458984375011],[109.20732421875002,14.154296874999972],[109.22392578125002,14.096679687500043],[109.24462890624996,14.053417968750026],[109.3033203125001,13.856445312500043],[109.28808593750003,13.76503906249998],[109.24707031250001,13.85473632812504],[109.25205078125006,13.59052734375004],[109.28808593750003,13.45078125],[109.271875,13.279345703124974],[109.30957031249997,13.219189453124983],[109.37675781250007,13.025488281250034],[109.42392578125006,12.955957031249994],[109.42001953125006,12.71904296874996],[109.44492187500006,12.599609375000057],[109.3814453125001,12.670751953124977],[109.33554687500012,12.751904296874997],[109.27402343750005,12.70903320312496],[109.21894531250003,12.64580078124996],[109.30468750000003,12.391162109375045],[109.20683593750007,12.415380859375006],[109.21572265625005,12.072900390625037],[109.25625,11.992871093749983],[109.2591796875,11.954541015624997],[109.24726562500004,11.908691406249986],[109.22021484374997,11.958837890624977],[109.21455078125004,12.010449218750011],[109.19912109375,11.9990234375],[109.1999023437501,11.972460937500003],[109.16728515625002,11.912011718750035],[109.15751953125007,11.837109375000054],[109.19267578125,11.773437500000043],[109.1986328125,11.724853515625014],[109.1732421875,11.664746093750026],[109.13251953125004,11.601074218750014],[109.0396484375001,11.592675781249994],[109.01845703125,11.468359374999977],[108.98671875,11.336376953124997],[108.82080078125001,11.3154296875],[108.70029296875006,11.19926757812496],[108.55126953125003,11.155957031250011],[108.41855468750005,11.040722656249983],[108.2716796875001,10.934277343749969],[108.176171875,10.920166015625028],[108.09492187500003,10.897265624999989],[108.0013671875,10.720361328125009],[107.84511718750005,10.700097656250051],[107.56445312499997,10.555468749999989],[107.47031250000006,10.485839843750014],[107.3844726562501,10.45864257812498],[107.26152343750006,10.39838867187504],[107.2350585937501,10.419873046874983],[107.19414062500002,10.471582031250037],[107.08779296875005,10.498339843749974],[107.03574218750006,10.55629882812498],[107.02070312500004,10.630957031249991],[107.00664062500002,10.66054687499998],[106.98369140625007,10.618310546874994],[106.96611328125002,10.440722656249958],[106.94746093750004,10.400341796874997],[106.90205078125003,10.382812499999986],[106.81269531250004,10.433300781250054],[106.72734375000007,10.535644531250028],[106.605859375,10.464941406250018],[106.64306640625003,10.45625],[106.69843750000004,10.462060546875051],[106.74121093750001,10.444384765625003],[106.77753906250004,10.376123046875037],[106.77626953124998,10.33896484375002],[106.75742187500006,10.295800781250023],[106.64355468750003,10.288916015625034],[106.49169921875003,10.304101562500023],[106.46406250000004,10.298291015624997],[106.60244140625,10.231738281250017],[106.72900390625003,10.193310546875011],[106.78525390625012,10.151171875000045],[106.78525390625012,10.116455078124984],[106.71416015625002,10.06020507812498],[106.65917968750003,9.99140625],[106.65810546875,9.948730468750012],[106.65683593750005,9.901074218749981],[106.59560546875005,9.859863281250028],[106.55732421875003,9.868066406250009],[106.44912109375005,9.939648437500026],[106.1364257812501,10.221679687500014],[106.18359375000003,10.142089843750057],[106.50742187500012,9.821240234374969],[106.56435546875005,9.715625],[106.57246093750004,9.641113281250043],[106.53916015625005,9.603564453125031],[106.48408203125003,9.559423828125006],[106.37802734375012,9.55610351562504],[106.20400390625,9.675439453125023],[105.92568359374998,9.961718749999989],[105.83095703125004,10.000732421875028],[106.1125,9.673583984375],[106.15859375,9.59414062499998],[106.2061523437501,9.502343750000023],[106.1925781250001,9.447802734375003],[106.16835937500005,9.396728515625],[105.50097656249997,9.093212890624983],[105.40136718750003,8.962402343749972],[105.32226562499997,8.801123046874977],[105.19121093750002,8.71132812499998],[105.11435546875005,8.629199218750031],[104.89189453125002,8.583251953124998],[104.77041015625,8.59765625],[104.89628906250007,8.746630859374974],[104.81855468750004,8.801855468750034],[104.81464843750004,9.18549804687504],[104.84521484375003,9.606152343750024],[104.90322265625005,9.81625976562502],[104.98710937500007,9.86865234375004],[105.09257812500006,9.900976562499963],[105.0949218750001,9.945263671875011],[105.08447265625003,9.99570312499999],[105.02783203125003,10.067431640625031],[104.96582031250003,10.10058593750004],[104.87324218750003,10.114794921875001],[104.8019531250001,10.202734374999975],[104.74765625000006,10.199121093750035],[104.66347656250005,10.169921875000043],[104.6126953125,10.207666015625007],[104.59404296875,10.266894531249989],[104.51611328124997,10.339990234375051],[104.42636718750006,10.411230468749991],[104.46699218750008,10.422363281250043],[104.5140625,10.46333007812504],[104.56425781250007,10.51596679687502],[104.68964843750004,10.523242187499989],[104.81542968750001,10.520800781250031],[104.85058593749997,10.534472656249974],[104.90126953125,10.590234375000051],[104.98388671874997,10.661914062500003],[105.04638671874997,10.701660156250014],[105.06113281250006,10.73378906249998],[105.03613281250003,10.809375],[105.02226562500002,10.886865234374994],[105.045703125,10.911376953125014],[105.15947265625002,10.897558593750048],[105.28427734375006,10.86147460937498],[105.31464843750008,10.845166015625026],[105.38652343750002,10.940087890625007],[105.40576171875003,10.95161132812504],[105.45273437500006,10.951416015625],[105.5765625,10.968896484375007],[105.69775390624997,10.99404296874998],[105.75507812500004,10.989990234375043],[105.81074218750008,10.926074218749989],[105.85332031250007,10.86357421874996],[105.8751953125001,10.858496093749991],[105.93818359375004,10.88515625],[105.99013671875004,10.851806640625043],[106.0988281250001,10.797265625000037],[106.16396484375005,10.794921875],[106.1315429687501,10.921972656250048],[106.16796874999996,11.012304687499977],[106.16093750000002,11.037109375000057],[106.09951171875005,11.078662109374989],[105.89160156249997,11.244824218749997],[105.85605468750006,11.294287109375048],[105.8609375000001,11.372412109374975],[105.85400390625001,11.48706054687497],[105.83535156250005,11.559130859375003],[105.83847656250006,11.601318359374972],[105.85146484375005,11.635009765625],[105.88984375000004,11.648388671874969],[105.92656250000007,11.652929687500006],[105.95625,11.682470703124991],[106.0060546875001,11.758007812500011],[106.10292968750004,11.751269531249974],[106.23916015625,11.708349609375018],[106.33984374999997,11.68183593750004],[106.39921875000007,11.687011718750028],[106.4125,11.697802734375003],[106.41074218750012,11.738378906250004],[106.4177734375,11.911718749999977],[106.41386718750002,11.9484375],[106.49960937500012,11.965527343750011],[106.63095703125012,11.969189453125052],[106.70009765625,11.979296874999973],[106.76464843750003,12.05234375000002],[106.93066406249997,12.077490234374991],[107.05068359375,12.175878906249963],[107.15898437500007,12.277050781249969],[107.21210937500004,12.30400390624996],[107.27968750000004,12.321582031249987],[107.33007812500003,12.319042968749997],[107.39335937500002,12.260498046874972],[107.4459960937501,12.295703125000045],[107.50644531250006,12.36455078125003],[107.53808593750003,12.431787109374966],[107.55546875000002,12.539990234374983],[107.54355468750006,12.705908203125034],[107.51152343750002,12.835742187500017],[107.48154296875006,12.93310546875004],[107.475390625,13.030371093749963],[107.54550781250012,13.225439453125006],[107.60546874999997,13.437792968750017],[107.59394531250003,13.521679687500052],[107.52861328125002,13.654199218750051],[107.46230468750004,13.815625],[107.389453125,13.993017578124977],[107.36210937500007,14.01948242187504],[107.34257812500006,14.068896484374974],[107.3314453125,14.126611328125009],[107.36035156249996,14.307861328124984],[107.3644531250001,14.368701171875044],[107.44843750000004,14.451220703124974],[107.49316406250001,14.545751953124963],[107.53525390625006,14.649951171875045],[107.51943359375005,14.705078125],[107.51376953125012,14.817382812500057],[107.52451171875012,14.87182617187504],[107.50468750000006,14.915917968749968],[107.48037109375,14.979882812500037],[107.49628906250004,15.021435546874969],[107.55527343750005,15.057031250000021],[107.5896484375,15.118457031250019],[107.63369140625005,15.18984375],[107.653125,15.25522460937499],[107.62167968750006,15.309863281250017],[107.5642578125,15.391601562499973],[107.45957031250012,15.465820312499998],[107.33876953125,15.56049804687501],[107.27939453125006,15.618701171875045],[107.23261718750004,15.678076171874977],[107.18955078125005,15.747265624999955],[107.16591796875005,15.802490234375028],[107.1888671875,15.838623046875],[107.36064453125,15.921728515624979],[107.3919921875,15.951660156250027],[107.41015624999997,15.997851562500017],[107.39638671874998,16.043017578124985],[107.35009765624997,16.06738281249997],[107.29648437500006,16.08403320312499],[107.21738281250006,16.136328125],[107.0697265625,16.279833984375017],[107.00195312500001,16.311816406250045],[106.93066406249997,16.353125],[106.8927734375001,16.396533203125074],[106.85107421875003,16.515625],[106.83242187500005,16.52626953125002],[106.79160156250006,16.490332031250006],[106.73955078125007,16.452539062500023],[106.69609375000007,16.458984375],[106.65644531250008,16.49262695312501],[106.6375,16.537939453125006],[106.59365234375,16.60009765624997],[106.54619140625002,16.650732421874974],[106.53369140625003,16.821044921875057],[106.52597656250006,16.876611328124994],[106.50224609375,16.95410156249997],[106.46533203124996,16.98183593750002],[106.42597656250004,17.002539062499974],[106.3333984375,17.143701171874966],[106.26953125000003,17.21679687500003],[106.00625,17.415283203125057],[105.97353515625005,17.44697265625001],[105.902734375,17.528662109375063],[105.77949218750003,17.644433593750023],[105.69140625000003,17.737841796875045],[105.62724609375002,17.834423828125008],[105.59765625000003,17.918261718750017],[105.58847656250012,17.983691406250045],[105.51855468749997,18.077441406250045],[105.45820312500004,18.154296874999968],[105.4,18.179248046874985],[105.33349609375003,18.189648437499983],[105.27324218750002,18.235351562500057],[105.1632812500001,18.338720703124977],[105.11455078125002,18.40527343750003],[105.08583984375005,18.450097656250023],[105.08701171875006,18.496240234374994],[105.11347656250003,18.573046875000017],[105.14541015625,18.616796875000063],[105.14648437500003,18.650976562500006],[105.11513671875005,18.678857421874994],[104.99316406249997,18.728320312500045],[104.7165039062501,18.803417968749955],[104.61328125000003,18.86064453124999],[104.51796875,18.93408203125003],[104.44580078125003,18.983837890624955],[104.10859375000003,19.195556640625],[104.00634765625001,19.23090820312501],[103.91835937500005,19.26850585937504],[103.89160156250001,19.304980468750017],[103.89638671875,19.339990234375023],[103.93203125,19.366064453125006],[104.0275390625001,19.42045898437499],[104.062890625,19.48256835937505],[104.05156250000007,19.564160156249955],[104.01347656250007,19.64648437500003],[104.03203125000002,19.675146484375006],[104.06279296875007,19.678417968749983],[104.12714843750004,19.680859375],[104.25986328125006,19.685498046874983],[104.5462890625,19.61054687500001],[104.58789062500003,19.61875],[104.74316406250003,19.754736328124977],[104.80175781249997,19.83613281250004],[104.81513671875004,19.90400390625001],[104.84580078125005,19.947167968750023],[104.9279296875001,20.01811523437499],[104.92919921875003,20.082812500000017],[104.88867187500001,20.16909179687502],[104.84785156250003,20.202441406250045],[104.8126953125001,20.216845703125074],[104.69873046875003,20.20532226562503],[104.67695312500004,20.224707031249977],[104.66191406250007,20.28901367187501],[104.65644531250004,20.32851562499999],[104.6188476562501,20.37451171875003],[104.49619140625006,20.413671875],[104.39218750000012,20.424755859374955],[104.3677734375001,20.44140624999997],[104.40781250000012,20.48574218750005],[104.47861328125006,20.529589843750017],[104.53271484374997,20.55488281250001],[104.57519531250003,20.600244140625023],[104.58320312500004,20.646679687499955],[104.53037109375012,20.68798828125003],[104.46142578125003,20.733740234375034],[104.34960937499997,20.821093750000074],[104.19531249999997,20.913964843749962],[104.10136718750002,20.94550781250001],[104.05205078125002,20.941210937500014],[103.88203125000008,20.861425781250006],[103.79052734375003,20.80952148437501],[103.71445312500006,20.716943359374994],[103.63505859375007,20.697070312500017],[103.55468750000001,20.737841796875074],[103.46357421875004,20.779833984375014],[103.2107421875,20.840625],[103.10449218749997,20.891650390625045],[102.88378906250001,21.202587890624983],[102.85117187500006,21.26591796874999],[102.87226562500008,21.3375],[102.8875,21.43994140625003],[102.90957031250005,21.506347656250057],[102.9486328125,21.56977539062501],[102.95917968750004,21.626220703125025],[102.94960937500005,21.681347656249983],[102.9176757812501,21.712939453125045],[102.8761718750001,21.722265624999977],[102.84521484374997,21.73476562500005],[102.81591796874996,21.807373046875],[102.7982421875,21.797949218750034],[102.77109375000006,21.709667968749983],[102.73857421875,21.67792968750001],[102.69531250000003,21.66210937499997],[102.66201171875004,21.67602539062497],[102.6408203125001,21.71142578125],[102.63125,21.771337890625034],[102.60966796875007,21.851757812499983],[102.58251953125003,21.90429687500003],[102.4875,21.957763671874996],[102.44267578125007,22.027148437500017],[102.30136718750012,22.178173828124955],[102.1830078125,22.284033203125034],[102.12744140624996,22.379199218750045],[102.1759765625001,22.414648437500006],[102.2370117187501,22.466015624999983],[102.30224609375003,22.545996093750006],[102.37578125,22.646630859374994],[102.40644531250004,22.70800781249997],[102.42792968750003,22.732812499999966],[102.47089843750004,22.75092773437501],[102.5171875000001,22.741015625000045],[102.59853515625,22.700390625000036],[102.72099609375007,22.648486328125017],[102.83007812500003,22.587158203125057],[102.87421875000004,22.525390625],[102.9351562500001,22.466162109375006],[102.98193359374997,22.448242187499996],[103.00537109375003,22.452978515624977],[103.07587890625008,22.49750976562501],[103.13632812500005,22.542236328125057],[103.13759765625005,22.592968749999983],[103.19335937500003,22.63852539062503],[103.26630859375004,22.71352539062505],[103.30058593750002,22.76440429687503],[103.32666015625003,22.769775390625057],[103.35605468750006,22.754687499999985],[103.47099609375002,22.597412109375],[103.49296875000006,22.587988281250034],[103.52539062500003,22.611572265625057],[103.57070312499998,22.734423828125042],[103.62021484375006,22.782031250000045],[103.63730468750005,22.77001953125],[103.91503906249997,22.538232421875023],[103.94150390625006,22.540087890625045],[103.9713867187501,22.55048828124995],[103.99082031250006,22.58613281250001],[104.01269531249997,22.66635742187503],[104.05390625000004,22.752294921875034],[104.14306640624997,22.800146484375006],[104.21250000000012,22.809423828125034],[104.23828125000001,22.768505859374955],[104.29833984374997,22.712011718750006],[104.37177734375004,22.704052734374983],[104.52685546875003,22.804101562500023],[104.57753906250005,22.82001953124998],[104.63173828125,22.818212890625063],[104.68730468750002,22.822216796874983],[104.74003906250002,22.860498046874966],[104.79570312500007,22.91113281249997],[104.81474609375002,23.010791015625017],[104.82656250000005,23.100195312500034],[104.86474609375001,23.136376953125023],[104.91015625000003,23.16054687499999],[104.99570312500006,23.19433593750003],[105.18906250000012,23.281054687500017],[105.23876953125003,23.322119140625034],[105.27539062500003,23.34521484375003],[105.35048828125005,23.307666015625017],[105.44013671875008,23.235351562500025],[105.49453125,23.18085937500004],[105.53085937500012,23.121972656250023],[105.54814453125007,23.072656250000023],[105.69121093750007,23.029931640625023],[105.78232421875005,22.969335937500034]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Yemen","sov_a3":"YEM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Yemen","adm0_a3":"YEM","geou_dif":0,"geounit":"Yemen","gu_a3":"YEM","su_dif":0,"subunit":"Yemen","su_a3":"YEM","brk_diff":0,"name":"Yemen","name_long":"Yemen","brk_a3":"YEM","brk_name":"Yemen","brk_group":null,"abbrev":"Yem.","postal":"YE","formal_en":"Republic of Yemen","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Yemen, Rep.","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":3,"mapcolor13":11,"pop_est":23822783,"gdp_md_est":55280,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"YE","iso_a3":"YEM","iso_n3":"887","un_a3":"887","wb_a2":"RY","wb_a3":"YEM","woe_id":-99,"adm0_a3_is":"YEM","adm0_a3_us":"YEM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"YEM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.76318359374997,12.636816406249991],[53.82480468750006,12.624804687500031],[53.918554687500006,12.659423828124986],[54.18740234375005,12.664013671875026],[54.511132812499994,12.552783203125017],[54.45,12.523437499999986],[54.41376953125004,12.48330078124998],[54.271289062500074,12.446630859374977],[54.129492187500055,12.360644531250045],[53.71884765625006,12.318994140624994],[53.59833984375004,12.342285156250028],[53.499414062500044,12.425341796874987],[53.31582031250005,12.533154296875011],[53.38847656250002,12.601855468749974],[53.40390625,12.633349609375003],[53.43095703125002,12.663574218750027],[53.53496093750002,12.715771484374997],[53.63847656250002,12.707373046874977],[53.76318359374997,12.636816406249991]]],[[[42.75585937500003,13.70429687500004],[42.689746093750074,13.673632812500017],[42.734960937500006,13.752978515625017],[42.78125,13.769287109375043],[42.7941406250001,13.766113281250028],[42.75585937500003,13.70429687500004]]],[[[42.787402343750074,13.97148437500003],[42.77421875000002,13.950244140625058],[42.75605468750004,13.954882812500017],[42.69404296875004,14.007910156249991],[42.76210937500005,14.067480468750048],[42.79833984374997,14.012255859374989],[42.787402343750074,13.97148437500003]]],[[[42.59023437500005,15.303417968750038],[42.558691406250006,15.281201171875038],[42.54902343750009,15.320068359374972],[42.56972656250005,15.407324218749979],[42.60234375000002,15.432519531249966],[42.62451171875003,15.367968750000044],[42.61044921875006,15.33227539062497],[42.59023437500005,15.303417968750038]]],[[[52.903710937499994,17.043847656249966],[52.96435546875003,16.91206054687504],[53.025,16.780224609374983],[53.08564453125004,16.648388671874955],[52.581445312499994,16.470361328125023],[52.44843750000004,16.391259765624966],[52.327734375,16.293554687500063],[52.23730468749997,16.17138671875003],[52.17402343750004,15.956835937500017],[52.22207031250005,15.760595703125004],[52.2174804687501,15.655517578124998],[52.087304687500044,15.585937500000055],[51.96582031249997,15.535693359375015],[51.8307617187501,15.459277343749989],[51.74863281250006,15.44013671875001],[51.68154296875005,15.379101562500011],[51.6037109375001,15.336816406250009],[51.3224609375001,15.226269531250038],[51.01513671875003,15.140771484375039],[50.52705078125003,15.038183593750006],[50.33857421875003,14.92719726562504],[50.16689453125005,14.851025390624981],[49.906347656250055,14.828125],[49.54863281250002,14.722412109374986],[49.34990234375002,14.637792968749977],[49.102929687499994,14.500048828124973],[49.0480468750001,14.456445312499978],[49.004687500000074,14.355029296875005],[48.92871093750003,14.267480468750021],[48.7799804687501,14.123876953124991],[48.66835937499999,14.050146484374977],[48.59375,14.046240234374977],[48.44902343750002,14.00590820312503],[48.27783203125003,13.997656250000032],[47.9899414062501,14.048095703124998],[47.91601562499997,14.012841796875023],[47.855078125000055,13.956933593749994],[47.633398437500006,13.858447265625003],[47.40771484374997,13.661621093750057],[47.24257812499999,13.609375],[46.97568359375006,13.547460937499977],[46.78886718750002,13.465576171874986],[46.66347656250005,13.432714843750048],[46.50195312499997,13.415576171875015],[46.203125,13.423828125000014],[45.91972656250001,13.394287109375028],[45.65732421875006,13.338720703124991],[45.533984375000074,13.233496093749963],[45.39355468749997,13.06704101562498],[45.163867187500074,12.998291015625],[45.10976562500005,12.938574218750006],[45.03867187500006,12.815869140624969],[44.8898437500001,12.784179687499998],[44.75527343750005,12.763769531250004],[44.6177734375,12.817236328124977],[44.35849609375,12.669140625000011],[44.260351562500006,12.644628906249991],[44.1115234375001,12.638671875000014],[44.00585937499997,12.607666015624998],[43.929785156250006,12.616503906250031],[43.83535156250005,12.67441406250002],[43.634375,12.744482421874991],[43.487597656250074,12.69882812500002],[43.47529296875004,12.83901367187498],[43.23193359375003,13.267089843750057],[43.28261718750005,13.639843749999969],[43.2824218750001,13.692529296875037],[43.23408203125004,13.858935546875017],[43.08906250000004,14.010986328125],[43.09335937500006,14.203662109374989],[43.044824218749994,14.341552734375012],[43.00625,14.483105468749983],[43.01875,14.520800781250033],[43.02109375000006,14.554882812500038],[42.94697265625004,14.77314453125001],[42.922167968750074,14.817382812500057],[42.912988281249994,14.863085937500045],[42.93730468750002,14.898046874999963],[42.93642578125005,14.938574218749963],[42.897070312500006,15.005566406250026],[42.85566406250004,15.132958984375037],[42.65781250000006,15.232812500000053],[42.697851562500006,15.326318359374994],[42.73642578125006,15.293554687499991],[42.788476562499994,15.265722656250004],[42.79902343750004,15.326269531249991],[42.799902343750006,15.371630859374987],[42.717187500000044,15.654638671875006],[42.83964843750002,16.032031250000074],[42.79931640624997,16.37177734375001],[42.98632812499997,16.50908203124999],[43.033593750000044,16.550390624999977],[43.06074218750004,16.586621093749983],[43.104785156250074,16.664160156250063],[43.16503906249997,16.689404296874955],[43.186328125000074,16.77099609374997],[43.18447265625005,16.811816406250045],[43.145605468750006,16.84677734375006],[43.11650390625007,16.941992187500006],[43.12617187500003,17.06245117187501],[43.1359375000001,17.11298828125001],[43.1559570312501,17.20502929687504],[43.2213867187501,17.23925781249997],[43.23691406250006,17.266455078125006],[43.186328125000074,17.32470703124997],[43.19091796875003,17.359375],[43.30214843750005,17.45678710937497],[43.34609375,17.486035156249983],[43.41796875000003,17.516259765625023],[43.47421875,17.515917968750045],[43.53925781250004,17.49873046875001],[43.597265625,17.47143554687503],[43.653417968750006,17.421875],[43.712988281250055,17.365527343750045],[43.804296875,17.344140625000023],[43.86640625000004,17.349609375],[43.91699218749997,17.32470703124997],[43.95966796875004,17.33833007812501],[44.00820312499999,17.36748046874999],[44.08593750000003,17.365527343750045],[44.1559570312501,17.398535156250006],[44.35468750000004,17.414355468750045],[44.54648437500006,17.404345703125045],[44.7467773437501,17.431689453125017],[44.9464843750001,17.429589843750023],[45.148046875000055,17.427441406249955],[45.19277343749999,17.423388671875017],[45.236621093750074,17.406201171874983],[45.40654296875002,17.319775390624955],[45.5353515625001,17.30205078124999],[45.79443359375003,17.278417968750063],[46.07080078124997,17.25317382812497],[46.31035156250002,17.231298828125063],[46.51347656250002,17.251660156250008],[46.68203125,17.2685546875],[46.72763671875006,17.265576171875008],[46.77851562500003,17.212109374999955],[46.879980468750006,17.079003906250023],[46.97568359375006,16.953466796875034],[47.14355468749997,16.946679687499966],[47.251269531250074,16.993945312500017],[47.36962890625003,17.060400390625063],[47.44179687499999,17.111865234375045],[47.52539062499997,17.31611328125001],[47.57958984374997,17.448339843750034],[47.70371093750006,17.596826171874994],[47.80781250000004,17.72109375],[47.9455078125001,17.885839843750002],[48.0216796875001,17.97695312499999],[48.17216796875002,18.156933593749983],[48.315820312500044,18.227050781250057],[48.59296875000004,18.362402343750006],[48.86484375,18.495214843750063],[49.04199218750003,18.58178710937503],[49.19238281250003,18.621337890625],[49.445117187500074,18.65532226562499],[49.742089843749994,18.695312499999968],[50.038964843749994,18.73525390625002],[50.355273437500074,18.777783203124983],[50.7082031250001,18.825292968749977],[50.95,18.857861328124955],[51.258398437500006,18.899365234374983],[51.514941406250074,18.93388671874999],[51.742968750000074,18.964550781250008],[51.977636718750006,18.996142578125074],[52.021875,18.896289062500045],[52.06621093750002,18.796386718750057],[52.11044921875006,18.69648437500004],[52.1546875,18.596582031250023],[52.199023437500074,18.496679687500006],[52.243261718750006,18.396826171875006],[52.2875,18.296923828124985],[52.33173828125009,18.197070312500074],[52.37607421875006,18.09716796874997],[52.4203125,17.997314453125057],[52.46455078125003,17.897412109374955],[52.50888671875006,17.79750976562502],[52.553125,17.697607421875006],[52.59736328125003,17.597753906250006],[52.641699218750006,17.49785156249999],[52.68593750000005,17.39794921874997],[52.72919921875003,17.300390625],[52.80058593750001,17.267919921875063],[52.84296875000003,17.175683593749994],[52.903710937499994,17.043847656249966]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Country","admin":"United States of America","adm0_a3":"USA","geou_dif":0,"geounit":"United States of America","gu_a3":"USA","su_dif":0,"subunit":"United States of America","su_a3":"USA","brk_diff":0,"name":"United States","name_long":"United States","brk_a3":"USA","brk_name":"United States","brk_group":null,"abbrev":"U.S.A.","postal":"US","formal_en":"United States of America","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United States of America","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":313973000,"gdp_md_est":15094000,"pop_year":0,"lastcensus":2010,"gdp_year":0,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":0,"fips_10":null,"iso_a2":"US","iso_a3":"USA","iso_n3":"840","un_a3":"840","wb_a2":"US","wb_a3":"USA","woe_id":-99,"adm0_a3_is":"USA","adm0_a3_us":"USA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":13,"long_len":13,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"USA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.58134765624996,19.012011718750017],[-155.62563476562502,18.963916015625074],[-155.68076171874998,18.967675781250023],[-155.88129882812495,19.07050781250001],[-155.90561523437503,19.125830078125006],[-155.89072265625003,19.382519531249983],[-155.96582031249994,19.59082031249997],[-156.04868164062498,19.749951171874983],[-155.988427734375,19.83159179687499],[-155.90888671874998,19.894726562499983],[-155.82031249999997,20.01416015624997],[-155.8927734375,20.167382812500023],[-155.87426757812494,20.259814453125017],[-155.83164062499998,20.27583007812501],[-155.6220703125,20.163427734375006],[-155.198779296875,19.99438476562503],[-155.08608398437497,19.875634765624994],[-155.06591796875003,19.748193359374966],[-154.989013671875,19.731982421875042],[-154.95258789062504,19.644628906250006],[-154.841357421875,19.568164062500074],[-154.80419921875,19.524462890625045],[-154.85029296874995,19.4541015625],[-155.053466796875,19.319189453125063],[-155.30961914062493,19.260156250000023],[-155.53525390624998,19.109082031249983],[-155.58134765624996,19.012011718750017]]],[[[-156.84960937499997,20.772656249999955],[-156.90888671874995,20.744482421875006],[-156.97338867187494,20.757519531249983],[-156.98842773437502,20.82568359375003],[-157.0505859375,20.912451171875034],[-156.94179687500002,20.93002929687506],[-156.88056640624995,20.904833984375074],[-156.84829101562497,20.877783203124977],[-156.809375,20.831152343749977],[-156.84960937499997,20.772656249999955]]],[[[-156.48681640624994,20.93256835937504],[-156.46083984375,20.914746093749955],[-156.35439453124997,20.941455078125074],[-156.27753906250004,20.951269531250034],[-156.14833984375002,20.88549804687503],[-156.10351562500003,20.84033203124997],[-156.01865234374998,20.792089843750002],[-155.98984374999998,20.757128906249985],[-156.01357421875002,20.71479492187498],[-156.10712890624993,20.644775390625025],[-156.23476562499997,20.62861328125001],[-156.3099609375,20.598779296874962],[-156.40878906249998,20.60517578125004],[-156.438232421875,20.617871093749955],[-156.44887695312497,20.70625],[-156.480078125,20.80122070312501],[-156.54384765625002,20.78999023437504],[-156.61542968750007,20.821826171875045],[-156.689697265625,20.90141601562499],[-156.69775390625003,20.949072265625034],[-156.65688476562497,21.024511718750034],[-156.58540039062495,21.034326171874994],[-156.53232421874998,20.99267578125003],[-156.48681640624994,20.93256835937504]]],[[[-157.21362304687497,21.215380859375017],[-157.00229492187498,21.18793945312501],[-156.95234375,21.19970703125],[-156.91718749999995,21.177294921875074],[-156.74218750000003,21.16352539062501],[-156.71215820312506,21.155078125000074],[-156.74790039062503,21.103564453125045],[-156.85986328125,21.05634765625004],[-157.02089843749997,21.097802734375023],[-157.29033203124996,21.112597656250017],[-157.27949218749998,21.152343750000057],[-157.25380859374997,21.180566406250023],[-157.249951171875,21.229785156250017],[-157.21362304687497,21.215380859375017]]],[[[-157.79936523437502,21.456640625000034],[-157.76499023437503,21.450927734375025],[-157.7208984375,21.45771484374998],[-157.705517578125,21.378076171875023],[-157.654150390625,21.33393554687501],[-157.63540039062502,21.30761718749997],[-157.69086914062498,21.279736328124983],[-157.79877929687498,21.268603515625017],[-157.84931640624995,21.290820312500017],[-157.9017578125,21.34057617187503],[-157.958447265625,21.326904296874996],[-157.968310546875,21.366894531249955],[-157.97841796875,21.378515625000034],[-158.01728515624998,21.367724609375045],[-157.98095703124997,21.31611328125001],[-158.079150390625,21.31225585937503],[-158.11035156249994,21.318603515625],[-158.13784179687497,21.37714843750001],[-158.23911132812498,21.48935546875003],[-158.238671875,21.533056640624977],[-158.27314453125,21.585253906250045],[-158.123095703125,21.600244140624994],[-158.020361328125,21.69179687499999],[-157.9625,21.701367187499983],[-157.85151367187495,21.553369140625023],[-157.85434570312503,21.51191406250001],[-157.82958984374994,21.47143554687503],[-157.79936523437502,21.456640625000034]]],[[[-160.18002929687498,21.84106445312503],[-160.20024414062502,21.796875],[-160.23471679687503,21.803662109374955],[-160.2434570312499,21.84306640624999],[-160.22089843749995,21.897265625000014],[-160.1638671875,21.944042968749955],[-160.100634765625,22.015234374999977],[-160.04873046874997,22.004638671875025],[-160.076708984375,21.958105468749977],[-160.080029296875,21.907421874999955],[-160.15341796874998,21.878759765624977],[-160.18002929687498,21.84106445312503]]],[[[-159.37275390625,21.93237304687497],[-159.460693359375,21.876123046874966],[-159.511865234375,21.90039062500003],[-159.60883789062495,21.90952148437503],[-159.64638671874997,21.951757812500006],[-159.747998046875,21.989843750000034],[-159.78916015625003,22.041796875000074],[-159.726611328125,22.140185546875045],[-159.57919921874998,22.22314453124997],[-159.35205078124997,22.21958007812503],[-159.30478515625003,22.15405273437503],[-159.30068359375,22.105273437500017],[-159.33017578124998,22.050683593749994],[-159.34375,21.973632812500025],[-159.37275390625,21.93237304687497]]],[[[-81.783837890625,24.544580078125048],[-81.809228515625,24.542333984375034],[-81.81142578125002,24.557812499999983],[-81.76767578124998,24.576708984375017],[-81.73867187500002,24.57543945312503],[-81.73974609374996,24.554492187500017],[-81.783837890625,24.544580078125048]]],[[[-81.56669921874999,24.599902343750045],[-81.63149414062494,24.590039062499983],[-81.57924804687497,24.629394531249996],[-81.56230468749996,24.689160156250008],[-81.53164062499992,24.642480468749994],[-81.53222656249997,24.614160156249994],[-81.56669921874999,24.599902343750045]]],[[[-81.33481445312498,24.650488281250034],[-81.36479492187495,24.629931640625017],[-81.37905273437494,24.636279296875074],[-81.37905273437494,24.666259765625057],[-81.42167968750002,24.732617187499983],[-81.42006835937494,24.75],[-81.32231445312502,24.685058593749968],[-81.31982421874994,24.667626953124966],[-81.33481445312498,24.650488281250034]]],[[[-81.04418945312503,24.716796875000057],[-81.08999023437494,24.69311523437503],[-81.13735351562498,24.710498046875017],[-81.08525390624996,24.734179687500045],[-80.93046875,24.75947265625004],[-80.98891601562497,24.727880859375002],[-81.04418945312503,24.716796875000057]]],[[[-80.82939453124996,24.803662109374983],[-80.84833984375001,24.803662109374983],[-80.83886718750003,24.817871093750025],[-80.79941406249998,24.846289062500034],[-80.785205078125,24.835253906250014],[-80.786767578125,24.821044921875053],[-80.82939453124996,24.803662109374983]]],[[[-80.63828125,24.903173828125002],[-80.66513671874996,24.8984375],[-80.62568359374993,24.94111328125001],[-80.61459960937498,24.93793945312498],[-80.63828125,24.903173828125002]]],[[[-80.3818359375,25.14228515624995],[-80.58056640624996,24.954248046875023],[-80.55854492187493,25.001318359375002],[-80.48105468749993,25.10195312499999],[-80.456005859375,25.149316406249966],[-80.403662109375,25.17934570312505],[-80.35493164062493,25.233642578124996],[-80.35126953124998,25.296972656250034],[-80.28046874999995,25.341259765624983],[-80.25708007812496,25.34760742187504],[-80.3818359375,25.14228515624995]]],[[[-82.03720703125,26.453613281250025],[-82.07285156249998,26.42753906249996],[-82.14497070312493,26.446679687500048],[-82.184375,26.48095703125],[-82.20136718749995,26.548046874999983],[-82.13857421874995,26.47700195312501],[-82.11606445312496,26.4609375],[-82.03720703125,26.453613281250025]]],[[[-82.08378906249999,26.552343749999977],[-82.08520507812499,26.49360351562501],[-82.13559570312498,26.59199218749998],[-82.16914062499995,26.700732421875017],[-82.12114257812496,26.665527343750025],[-82.08378906249999,26.552343749999977]]],[[[-97.17070312499995,26.159375],[-97.18452148437491,26.112939453124994],[-97.26733398437503,26.32978515625004],[-97.40209960937494,26.820507812499983],[-97.40717773437501,27.100195312500034],[-97.38598632812494,27.19648437500004],[-97.35122070312497,26.80146484375001],[-97.20224609375,26.299804687500053],[-97.17070312499995,26.159375]]],[[[-97.35361328125,27.300048828125],[-97.38481445312499,27.242529296875002],[-97.376220703125,27.328271484374962],[-97.29501953124998,27.52309570312505],[-97.13002929687494,27.779150390624974],[-97.060546875,27.822021484375],[-97.25087890624997,27.54121093750001],[-97.35361328125,27.300048828125]]],[[[-80.18676757812497,27.278417968750034],[-80.17050781250003,27.20478515625004],[-80.262451171875,27.375585937500006],[-80.37607421874998,27.643408203125034],[-80.43691406249994,27.85053710937495],[-80.395751953125,27.79453125],[-80.35551757812496,27.678613281250023],[-80.18676757812497,27.278417968750034]]],[[[-97.01435546875001,27.90161132812497],[-97.03603515624995,27.899169921875],[-96.98764648437498,27.981054687500006],[-96.97866210937501,28.01386718750001],[-96.89931640625002,28.11748046874999],[-96.857421875,28.132910156250034],[-96.83974609374997,28.08881835937501],[-96.92133789062495,28.01601562500002],[-97.01435546875001,27.90161132812497]]],[[[-96.76440429687497,28.152587890625025],[-96.80112304687498,28.1484375],[-96.75561523437494,28.20244140624999],[-96.68164062499996,28.22968750000001],[-96.51933593749996,28.33344726562501],[-96.453125,28.340576171875057],[-96.41865234374995,28.37631835937506],[-96.403564453125,28.38159179687497],[-96.41333007812494,28.337792968750023],[-96.54389648437498,28.275585937499955],[-96.76440429687497,28.152587890625025]]],[[[-95.03969726562495,29.14589843749999],[-95.08964843750002,29.136328124999974],[-94.8716796875,29.290136718750063],[-94.82597656249992,29.34130859375],[-94.76762695312496,29.339062499999983],[-94.86494140624998,29.25288085937501],[-95.03969726562495,29.14589843749999]]],[[[-91.793701171875,29.50073242187497],[-91.83085937499993,29.486474609374994],[-91.99624023437495,29.573095703125063],[-92.00664062499996,29.61030273437501],[-91.92504882812503,29.64394531250002],[-91.87524414062499,29.640966796875034],[-91.79648437499995,29.596972656250045],[-91.76767578125002,29.584716796875025],[-91.75429687499997,29.56689453125003],[-91.7619140625,29.539013671874955],[-91.793701171875,29.50073242187497]]],[[[-84.90791015624998,29.642626953125017],[-85.00825195312498,29.606640624999955],[-85.11674804687499,29.63281249999997],[-85.04931640625,29.637792968750002],[-85.000537109375,29.62719726562497],[-84.87700195312497,29.678662109374983],[-84.81220703124993,29.717626953125006],[-84.737158203125,29.732421875],[-84.90791015624998,29.642626953125017]]],[[[-88.889306640625,29.712597656249983],[-88.94360351562496,29.660253906250063],[-88.94111328124998,29.680224609375045],[-88.90117187499992,29.732617187499958],[-88.87265624999998,29.752978515625017],[-88.889306640625,29.712597656249983]]],[[[-88.82744140625002,29.807714843749977],[-88.85566406249997,29.77587890624997],[-88.82797851562503,29.928369140624966],[-88.86689453124997,30.056738281250002],[-88.82587890624994,30.00039062499999],[-88.81259765625,29.933349609375004],[-88.82744140625002,29.807714843749977]]],[[[-89.22397460937498,30.084082031249974],[-89.22045898437497,30.03759765625],[-89.26943359375,30.060742187500008],[-89.34199218749995,30.062841796875006],[-89.31005859375003,30.078710937500038],[-89.28764648437497,30.094189453124983],[-89.27646484374999,30.11083984375],[-89.18466796874995,30.16865234374998],[-89.21069335937503,30.12622070312503],[-89.22397460937498,30.084082031249974]]],[[[-88.55810546874994,30.215917968750006],[-88.570654296875,30.20478515624995],[-88.65922851562493,30.22558593750003],[-88.71308593749998,30.24492187499996],[-88.72285156249991,30.264257812500002],[-88.57397460937497,30.22915039062505],[-88.55810546874994,30.215917968750006]]],[[[-88.07133789062497,30.252343749999966],[-88.15932617187495,30.23090820312495],[-88.28974609374997,30.232910156249996],[-88.31625976562498,30.24042968750004],[-88.26391601562497,30.254736328125002],[-88.109375,30.273730468749985],[-88.07133789062497,30.252343749999966]]],[[[-81.41899414062499,30.971435546874996],[-81.4634765625,30.727783203125025],[-81.48271484375002,30.8140625],[-81.48461914062494,30.89785156250002],[-81.45092773437503,30.94741210937499],[-81.41899414062499,30.971435546874996]]],[[[-118.35039062499996,32.82758789062498],[-118.40859375000002,32.818505859374994],[-118.47319335937493,32.83891601562496],[-118.52890625000002,32.935595703125045],[-118.59018554687498,33.01118164062498],[-118.55708007812498,33.03266601562501],[-118.507470703125,32.95991210937501],[-118.383203125,32.84946289062498],[-118.35039062499996,32.82758789062498]]],[[[-119.43803710937495,33.21718750000002],[-119.48251953124996,33.21533203125],[-119.54365234374998,33.22460937500003],[-119.5751953125,33.27832031250006],[-119.52514648437503,33.28203125000002],[-119.47880859375,33.27460937500001],[-119.44204101562497,33.23242187500003],[-119.43803710937495,33.21718750000002]]],[[[-118.34794921875002,33.3857421875],[-118.29746093750005,33.312109375],[-118.37021484375,33.32124023437501],[-118.44628906249997,33.317089843749955],[-118.46933593749996,33.35712890625004],[-118.49204101562495,33.412792968750004],[-118.50732421874996,33.42700195312506],[-118.55942382812502,33.431982421875006],[-118.56333007812502,33.43706054687496],[-118.56943359375002,33.46416015624999],[-118.55483398437495,33.47709960937496],[-118.39169921874993,33.41508789062502],[-118.34794921875002,33.3857421875]]],[[[-120.04355468749993,33.918847656249994],[-120.11391601562497,33.90488281249998],[-120.16713867187498,33.918066406250006],[-120.25190429687493,34.01386718749998],[-120.07182617187493,34.026513671874966],[-119.99438476562497,33.98491210937502],[-119.98393554687497,33.97333984374998],[-120.04355468749993,33.918847656249994]]],[[[-120.30659179687497,34.02485351562498],[-120.35971679687496,34.02226562499999],[-120.44155273437492,34.03291015625004],[-120.41293945312498,34.056298828124994],[-120.36772460937499,34.07329101562502],[-120.35332031249999,34.06059570312498],[-120.30659179687497,34.02485351562498]]],[[[-119.88237304687497,34.07968749999998],[-119.678857421875,34.02846679687502],[-119.56914062499993,34.05297851562503],[-119.54926757812497,34.02817382812506],[-119.56220703124993,34.006591796875],[-119.80957031249996,33.9677734375],[-119.885498046875,33.99492187500002],[-119.89243164062498,34.03217773437498],[-119.91806640624996,34.067822265624955],[-119.88237304687497,34.07968749999998]]],[[[-76.546240234375,34.654882812500006],[-76.56850585937502,34.65253906249998],[-76.60781250000002,34.66357421875],[-76.66196289062495,34.684667968750034],[-76.67392578125,34.70014648437498],[-76.62226562499994,34.69453125000001],[-76.546240234375,34.654882812500006]]],[[[-76.50366210937494,34.642968749999966],[-76.52856445312494,34.63149414062505],[-76.43701171874994,34.75634765624997],[-76.25620117187498,34.91469726562499],[-76.20737304687496,34.938916015624955],[-76.35771484374996,34.80366210937504],[-76.50366210937494,34.642968749999966]]],[[[-75.78193359374998,35.190185546875],[-75.96367187499999,35.11884765625004],[-75.98417968749999,35.12309570312502],[-75.86494140624993,35.17412109375002],[-75.78193359374998,35.190185546875]]],[[[-75.54414062499994,35.240087890625034],[-75.67827148437502,35.21284179687498],[-75.69008789062502,35.22158203124999],[-75.53637695312497,35.27861328124998],[-75.48789062499995,35.47949218750005],[-75.48125,35.572119140625006],[-75.504296875,35.73540039062496],[-75.50351562500003,35.769140625],[-75.478515625,35.71650390625001],[-75.45644531249994,35.56416015624998],[-75.46474609374994,35.448632812499966],[-75.50932617187496,35.28032226562496],[-75.54414062499994,35.240087890625034]]],[[[-75.63569335937494,35.85590820312498],[-75.65078125,35.83559570312502],[-75.71718749999994,35.946142578125006],[-75.64887695312498,35.910400390625],[-75.63666992187498,35.88066406249999],[-75.63569335937494,35.85590820312498]]],[[[-75.33305664062493,37.88828124999998],[-75.37851562499993,37.87207031250006],[-75.22597656249997,38.07231445312498],[-75.13740234374995,38.240087890625055],[-75.097900390625,38.29809570312497],[-75.13623046874996,38.180517578125006],[-75.20322265624995,38.072412109374994],[-75.33305664062493,37.88828124999998]]],[[[-74.13320312500002,39.680761718750034],[-74.25048828125,39.529394531250006],[-74.25317382812503,39.55849609374999],[-74.10673828124996,39.74643554687498],[-74.13320312500002,39.680761718750034]]],[[[-74.18813476562502,40.52285156249999],[-74.23588867187496,40.51870117187502],[-74.18818359374991,40.614599609375034],[-74.10048828124998,40.65844726562497],[-74.06875,40.649316406249994],[-74.06738281249999,40.61542968750001],[-74.07968750000003,40.58647460937499],[-74.13852539062503,40.541845703125034],[-74.18813476562502,40.52285156249999]]],[[[-72.50976562500003,40.98603515625001],[-72.58085937499996,40.92133789062498],[-72.5166015625,40.91479492187497],[-72.46132812500002,40.93378906250004],[-72.40898437500002,40.97216796875003],[-72.28745117187503,41.02407226562505],[-72.18388671874999,41.046777343750044],[-72.15126953125,41.05146484375004],[-72.10190429687496,41.015039062499966],[-72.00395507812502,41.04428710937498],[-71.90322265625,41.06069335937505],[-72.33896484374995,40.894140625000034],[-72.428076171875,40.87539062500005],[-72.55556640624994,40.82578125000006],[-72.67607421874999,40.790625],[-72.762841796875,40.777832031249964],[-73.19428710937495,40.654199218749994],[-73.228515625,40.651513671874994],[-73.26552734375,40.66357421875006],[-73.62089843749999,40.59990234374996],[-73.76674804687497,40.592724609375004],[-73.89956054687502,40.570507812500004],[-73.80131835937499,40.621777343749976],[-73.799169921875,40.64096679687498],[-73.82265625,40.65595703125001],[-73.87519531249993,40.651611328125],[-73.92900390624999,40.59882812500001],[-74.01489257812497,40.58120117187496],[-74.03203125000002,40.63867187500003],[-74.00336914062493,40.683154296875045],[-73.96455078124993,40.72534179687503],[-73.87924804687498,40.79165039062502],[-73.75722656249997,40.83369140624998],[-73.69521484374997,40.87001953125002],[-73.65224609375,40.83803710937496],[-73.64282226562503,40.88125],[-73.60976562499997,40.90620117187501],[-73.573828125,40.91962890624998],[-73.48740234374998,40.91997070312496],[-73.44086914062501,40.92675781250003],[-73.4072265625,40.94111328125001],[-73.37270507812497,40.94379882812503],[-73.27817382812498,40.92421875000005],[-73.18583984375002,40.92983398437502],[-73.11127929687501,40.956884765625034],[-73.03378906250002,40.96596679687502],[-72.82880859375001,40.97207031250002],[-72.62509765624998,40.99184570312505],[-72.54365234375001,41.02700195312502],[-72.37255859374997,41.12553710937502],[-72.27412109374998,41.15302734375001],[-72.42739257812494,41.038525390624955],[-72.50976562500003,40.98603515625001]]],[[[-69.9779296875,41.26557617187504],[-70.055078125,41.249462890624955],[-70.23305664062502,41.28632812500001],[-70.08662109374993,41.31757812499998],[-70.06269531249995,41.32846679687506],[-70.04360351562497,41.374414062499994],[-70.04121093750001,41.3974609375],[-69.98559570312493,41.29863281250002],[-69.9779296875,41.26557617187504]]],[[[-70.50991210937502,41.376318359375034],[-70.785302734375,41.32744140625002],[-70.82919921874995,41.358984375000055],[-70.760498046875,41.37358398437502],[-70.67373046875,41.44853515625002],[-70.61601562499996,41.45722656250001],[-70.52534179687495,41.41479492187497],[-70.50991210937502,41.376318359375034]]],[[[-71.36533203125003,41.485253906250016],[-71.39306640625,41.46674804687498],[-71.40341796874998,41.515039062499966],[-71.38398437500001,41.570556640625],[-71.36430664062499,41.57182617187499],[-71.35449218749994,41.54228515625001],[-71.36533203125003,41.485253906250016]]],[[[-71.24140625000001,41.49194335937497],[-71.29091796874997,41.464599609375],[-71.34624023437496,41.469384765624994],[-71.31816406250002,41.506298828124955],[-71.30747070312495,41.56049804687498],[-71.28017578125,41.620019531250044],[-71.26445312499999,41.63823242187502],[-71.23203124999995,41.654296875],[-71.24140625000001,41.49194335937497]]],[[[-68.62319335937497,44.19604492187503],[-68.66118164062496,44.17626953124999],[-68.70170898437496,44.18266601562496],[-68.70302734374997,44.23198242187496],[-68.69077148437495,44.24873046875001],[-68.67675781250001,44.256201171875006],[-68.65595703124995,44.24233398437502],[-68.62319335937497,44.19604492187503]]],[[[-68.18725585937497,44.33247070312501],[-68.245458984375,44.31298828125003],[-68.30927734374995,44.32148437499998],[-68.30795898437503,44.268701171874994],[-68.31508789062497,44.24970703125004],[-68.38579101562499,44.27685546875006],[-68.41171875000003,44.294335937499966],[-68.40947265624993,44.3642578125],[-68.347021484375,44.43037109374998],[-68.29941406249998,44.45649414062495],[-68.238037109375,44.43837890624999],[-68.19091796875,44.364355468750034],[-68.18725585937497,44.33247070312501]]],[[[-122.85307617187497,47.20473632812505],[-122.86259765624997,47.18505859375002],[-122.8767578125,47.18613281249998],[-122.90795898437496,47.226123046875045],[-122.91191406249997,47.254345703125004],[-122.885107421875,47.27470703124998],[-122.84916992187497,47.21630859375],[-122.85307617187497,47.20473632812505]]],[[[-122.394140625,47.39526367187503],[-122.39873046874997,47.37250976562501],[-122.43710937499998,47.35478515624996],[-122.45698242187501,47.35932617187501],[-122.458203125,47.38613281250005],[-122.46855468749999,47.390234375],[-122.50991210937497,47.358007812500006],[-122.50683593749999,47.42167968750002],[-122.486474609375,47.48876953125],[-122.46860351562499,47.48999023437497],[-122.44208984375001,47.446142578125006],[-122.394140625,47.39526367187503]]],[[[-122.49726562499997,47.59458007812506],[-122.50263671875,47.57543945312497],[-122.5578125,47.598291015625016],[-122.57592773437501,47.61948242187498],[-122.57373046874999,47.666845703125034],[-122.56010742187497,47.69775390625003],[-122.54975585937501,47.703955078125034],[-122.51723632812495,47.690576171874994],[-122.507861328125,47.68266601562496],[-122.49726562499997,47.59458007812506]]],[[[-122.57275390624997,48.15664062499999],[-122.52382812499995,48.02543945312499],[-122.50283203124995,48.08007812500003],[-122.36674804687492,47.98544921875],[-122.36660156249998,47.938818359375034],[-122.38315429687498,47.923193359375034],[-122.41142578124997,47.917724609375],[-122.43759765624998,47.93134765625001],[-122.46162109374998,47.964013671874994],[-122.49228515625003,47.98129882812506],[-122.55751953125,47.99248046875002],[-122.59135742187496,48.02963867187506],[-122.60317382812497,48.05502929687497],[-122.60629882812496,48.12856445312505],[-122.62265625000002,48.15141601562499],[-122.65727539062497,48.15649414062506],[-122.69038085937495,48.173876953125045],[-122.74150390624999,48.22529296875004],[-122.74873046874995,48.23901367187497],[-122.72451171874998,48.280908203124994],[-122.66899414062496,48.351025390624976],[-122.62861328125,48.38422851562498],[-122.60351562499994,48.38061523437506],[-122.5724609375,48.35957031250004],[-122.53554687499995,48.32119140625002],[-122.54243164062504,48.29399414062498],[-122.69213867187499,48.24106445312503],[-122.69702148437499,48.228662109374994],[-122.62441406249994,48.213769531249994],[-122.59760742187498,48.20043945312503],[-122.57275390624997,48.15664062499999]]],[[[-122.8208984375,48.43134765625001],[-122.83657226562498,48.421533203125044],[-122.89003906249997,48.434667968750055],[-122.921630859375,48.456933593749966],[-122.93227539062495,48.48476562500005],[-122.91220703124995,48.537988281249966],[-122.88549804687501,48.55161132812498],[-122.86889648437501,48.54863281249999],[-122.8619140625,48.501855468749966],[-122.81459960937497,48.45234375],[-122.8208984375,48.43134765625001]]],[[[-123.01313476562498,48.50087890625005],[-122.98676757812494,48.468017578125],[-123.09443359374997,48.489062500000045],[-123.13994140624997,48.507958984374966],[-123.15341796874998,48.52631835937498],[-123.16958007812497,48.586718750000045],[-123.16215820312497,48.606396484374955],[-123.11416015624997,48.61328125000003],[-123.02416992187501,48.538476562499966],[-123.01313476562498,48.50087890625005]]],[[[-122.78212890625001,48.67270507812506],[-122.76884765624996,48.65097656249998],[-122.80898437499995,48.62983398437501],[-122.83759765625003,48.6265625],[-122.88310546874997,48.66064453125],[-122.90302734374994,48.66469726562502],[-122.88701171874996,48.6123046875],[-122.89252929687503,48.59448242187503],[-122.98564453124999,48.626708984375],[-123.00283203124992,48.65219726562506],[-122.97666015625002,48.67915039062504],[-122.91801757812497,48.70698242187501],[-122.897705078125,48.710351562499994],[-122.78212890625001,48.67270507812506]]],[[[-94.80346679687497,49.00292968749999],[-94.71279296874995,48.86342773437499],[-94.71254882812502,48.86298828125001],[-94.705078125,48.808496093749994],[-94.67534179687499,48.7744140625],[-94.62089843749999,48.742626953125004],[-94.41416015624998,48.70410156250006],[-94.05517578125003,48.659033203125034],[-93.85161132812495,48.607275390625034],[-93.803564453125,48.54892578125006],[-93.70771484374995,48.52543945312499],[-93.56425781249993,48.53691406250001],[-93.46362304687494,48.561279296875],[-93.37788085937498,48.61655273437498],[-93.25795898437497,48.628857421875004],[-93.15522460937501,48.625341796875006],[-93.05170898437495,48.61987304687503],[-92.99624023437494,48.61181640625],[-92.83671875,48.56777343749999],[-92.73266601562496,48.531835937500034],[-92.583251953125,48.46508789062502],[-92.50058593749995,48.43535156250002],[-92.46088867187495,48.365869140624994],[-92.41459960937492,48.276611328125],[-92.3484375,48.276611328125],[-92.29868164062503,48.32890624999999],[-92.17177734375002,48.33837890624997],[-92.00517578125002,48.30185546875],[-91.85839843749994,48.19755859374999],[-91.64731445312503,48.104589843750034],[-91.51831054687493,48.05830078125004],[-91.38720703124997,48.05854492187498],[-91.22065429687495,48.104589843750034],[-91.04345703125003,48.19370117187498],[-90.91606445312497,48.20913085937502],[-90.84033203125003,48.20053710937506],[-90.79731445312495,48.13105468750001],[-90.74438476562501,48.104589843750034],[-90.60708007812502,48.11259765624999],[-90.32011718749999,48.09916992187502],[-90.09179687500003,48.118115234374955],[-90.03994140624992,48.07817382812499],[-89.99365234375003,48.01533203124998],[-89.90102539062497,47.995458984375006],[-89.77539062499997,48.01533203124998],[-89.55058593749999,47.99990234375002],[-89.4556640625,47.996240234374994],[-89.27319335937497,48.01997070312504],[-89.18564453124998,48.04741210937502],[-89.06259765624993,48.09379882812499],[-88.89868164062497,48.15571289062498],[-88.61176757812495,48.264013671875006],[-88.37817382812497,48.30307617187497],[-88.16064453124997,48.22539062499996],[-87.98745117187494,48.15688476562505],[-87.92050781249996,48.13037109375006],[-87.74389648437497,48.06054687500003],[-87.49423828125,47.96176757812498],[-87.20800781249996,47.848486328125006],[-86.92182617187501,47.735205078125006],[-86.67216796874996,47.636425781249955],[-86.49555664062495,47.566601562499955],[-86.42856445312498,47.54008789062496],[-86.23447265624995,47.460058593750006],[-86.04038085937503,47.380029296875044],[-85.84633789062502,47.3],[-85.65224609374998,47.21997070312502],[-85.45820312499998,47.13994140624999],[-85.26411132812498,47.059960937500016],[-85.07006835937496,46.97993164062498],[-84.87597656249994,46.89990234375003],[-84.82705078125002,46.766845703125],[-84.77939453125,46.63730468749998],[-84.66577148437503,46.54326171875002],[-84.56176757812497,46.457373046875],[-84.50156249999998,46.461865234374955],[-84.44047851562496,46.49814453125006],[-84.40170898437498,46.515625],[-84.33671875,46.51850585937503],[-84.19218749999999,46.54956054687506],[-84.14946289062499,46.54277343750002],[-84.12519531249995,46.52724609375005],[-84.12319335937497,46.502929687499964],[-84.128125,46.48359375000004],[-84.15048828125003,46.44477539062501],[-84.11518554687495,46.370800781249955],[-84.10776367187502,46.28862304687501],[-84.08837890625,46.226513671874955],[-84.02919921875002,46.14702148437501],[-83.97778320312503,46.08491210937498],[-83.91303710937497,46.07290039062502],[-83.76318359375,46.10908203125001],[-83.66928710937498,46.122753906249955],[-83.61596679687503,46.116845703124994],[-83.524755859375,46.05869140625006],[-83.48012695312497,46.023730468750045],[-83.46948242187503,45.99467773437499],[-83.59267578125,45.81713867187506],[-83.39731445312498,45.72905273437496],[-83.17929687499998,45.632763671874976],[-82.91933593749994,45.51796875000002],[-82.760400390625,45.44770507812501],[-82.55107421874996,45.34736328125001],[-82.51523437499995,45.20439453125002],[-82.48505859374991,45.08374023437502],[-82.44658203124997,44.91552734375006],[-82.407373046875,44.74394531249999],[-82.36826171875003,44.57299804687499],[-82.32680664062502,44.39155273437498],[-82.28125,44.192236328125034],[-82.24077148437499,44.01533203124998],[-82.19658203124996,43.82221679687498],[-82.137841796875,43.570898437500034],[-82.19038085937495,43.47407226562501],[-82.30478515624998,43.26323242187496],[-82.408203125,43.07265625000005],[-82.41723632812497,43.01738281249996],[-82.48833007812499,42.73950195312503],[-82.54531249999997,42.62470703124998],[-82.64511718750003,42.558056640625004],[-82.74418945312496,42.49345703124998],[-82.8677734375,42.385205078124955],[-83.00371093749999,42.33173828124998],[-83.07314453125002,42.300292968749964],[-83.10952148437497,42.25068359375001],[-83.14965820312497,42.14194335937506],[-83.141943359375,41.97587890624996],[-83.02998046874993,41.83295898437498],[-82.86621093749997,41.753027343750034],[-82.69003906249995,41.675195312499994],[-82.43906249999998,41.67485351562502],[-82.21333007812501,41.77871093750005],[-81.97416992187496,41.88872070312499],[-81.76093749999993,41.98681640624997],[-81.50732421874997,42.10346679687504],[-81.27763671874999,42.20917968749998],[-81.02822265624997,42.247167968750006],[-80.6826171875,42.299755859374955],[-80.24755859375,42.36601562499996],[-80.0357421875,42.44145507812496],[-79.76201171874993,42.53896484375002],[-79.44624023437498,42.651464843750034],[-79.17373046875,42.74853515625],[-79.03671874999998,42.80234375000003],[-78.93925781250002,42.86372070312501],[-78.91508789062496,42.90913085937503],[-78.92084960937498,42.93520507812502],[-78.94599609374995,42.96132812499999],[-78.98076171874993,42.98061523437502],[-79.01166992187501,42.99702148437498],[-79.02617187499996,43.01733398437506],[-79.02905273437499,43.06176757812503],[-79.04799804687497,43.087304687499994],[-79.066064453125,43.10610351562502],[-79.05922851562502,43.27807617187506],[-79.08305664062499,43.331396484375],[-79.171875,43.466552734375],[-79.00249023437502,43.52714843749999],[-78.845556640625,43.58334960937498],[-78.72041015625,43.624951171875004],[-78.45825195312497,43.63149414062502],[-78.21479492187493,43.630664062500045],[-77.87924804687498,43.629541015624994],[-77.596533203125,43.62861328124998],[-77.26669921874998,43.62749023437502],[-77.07333984375,43.626855468749966],[-76.819970703125,43.62880859375002],[-76.69648437499998,43.78481445312499],[-76.58613281249995,43.92431640625],[-76.46459960937497,44.05761718749997],[-76.24853515625001,44.21411132812497],[-76.18579101562501,44.24223632812502],[-76.15117187499999,44.30395507812497],[-76.02021484374995,44.36259765625002],[-75.87592773437495,44.4169921875],[-75.81933593749997,44.46801757812499],[-75.79194335937498,44.49707031249997],[-75.40126953124997,44.77226562499999],[-75.17939453124998,44.89936523437495],[-74.99614257812496,44.970117187499966],[-74.85664062499995,45.00390625000003],[-74.76245117187494,44.99907226562501],[-74.70888671874997,45.00385742187501],[-74.663232421875,45.00390625000003],[-74.43037109374998,45.00419921874998],[-74.01425781250003,45.00468750000002],[-73.59814453124997,45.00517578125002],[-73.18203124999994,45.00561523437503],[-72.76591796874999,45.00610351562503],[-72.34975585937492,45.00659179687503],[-71.93364257812499,45.00708007812505],[-71.51752929687495,45.00756835937497],[-71.41904296874995,45.200341796874994],[-71.327294921875,45.29008789062496],[-71.20161132812498,45.260351562500034],[-71.13466796875001,45.26284179687502],[-71.06025390624994,45.309130859375045],[-70.99990234374998,45.33725585937498],[-70.96015624999998,45.333105468750034],[-70.92622070312501,45.29072265625001],[-70.89799804687493,45.26245117187503],[-70.86503906249999,45.270703125],[-70.83681640625,45.310693359374994],[-70.83779296875002,45.36616210937501],[-70.79916992187498,45.40478515624997],[-70.75332031249997,45.41069335937502],[-70.71093750000003,45.40947265624996],[-70.68979492187498,45.42832031249998],[-70.692138671875,45.45537109374999],[-70.70742187500002,45.498925781249966],[-70.70224609375003,45.551367187500006],[-70.59638671874995,45.643994140624955],[-70.46660156249999,45.70683593749996],[-70.4210937499999,45.738232421874955],[-70.407861328125,45.801904296874966],[-70.33344726562495,45.86806640625005],[-70.296240234375,45.90610351562506],[-70.28715820312502,45.939160156249955],[-70.30644531249996,45.97983398437498],[-70.30449218749999,46.05737304687497],[-70.27890625000003,46.15],[-70.248291015625,46.25087890625005],[-70.17968749999997,46.34184570312501],[-70.0671875,46.441064453124966],[-70.03823242187502,46.57143554687499],[-70.00771484375002,46.708935546875004],[-69.87172851562494,46.84291992187505],[-69.71752929687497,46.994873046875],[-69.62978515624994,47.081347656250045],[-69.47148437499993,47.23867187500002],[-69.35888671875,47.35063476562502],[-69.3021484375,47.402001953124994],[-69.24287109374998,47.46298828124998],[-69.14628906249993,47.44477539062501],[-69.0501953125,47.426611328125034],[-69.0642578125,47.33813476562503],[-69.04858398437503,47.273632812499955],[-69.003125,47.236425781250006],[-68.93720703124997,47.21123046875002],[-68.88740234374995,47.20283203125001],[-68.82871093749996,47.20332031250001],[-68.66855468749993,47.25346679687502],[-68.48037109375,47.285791015625016],[-68.37690429687495,47.316162109375],[-68.3580078125,47.34453125000002],[-68.31088867187499,47.3544921875],[-68.23549804687502,47.34594726562503],[-68.09677734375,47.27485351562501],[-67.93486328124996,47.16762695312502],[-67.806787109375,47.08281249999999],[-67.80283203124998,46.93574218750004],[-67.80034179687502,46.779882812500006],[-67.797705078125,46.615625],[-67.79580078124997,46.49838867187503],[-67.79252929687502,46.33740234375],[-67.78994140625002,46.209326171875],[-67.78647460937503,46.042138671874966],[-67.78466796875,45.952783203124966],[-67.76704101562498,45.92700195312505],[-67.77763671874999,45.89179687499998],[-67.78227539062496,45.874169921875044],[-67.78115234375,45.86015625000002],[-67.77412109374998,45.842529296875],[-67.77529296874997,45.81787109375003],[-67.79169921874993,45.79555664062502],[-67.79990234375,45.769775390625],[-67.80224609374994,45.7275390625],[-67.78466796875,45.70170898437499],[-67.75532226562498,45.68647460937498],[-67.73066406249993,45.68647460937498],[-67.69897460937497,45.67119140624998],[-67.65791015624995,45.644189453124994],[-67.59575195312499,45.62075195312502],[-67.53120117187498,45.61254882812503],[-67.48662109374996,45.61840820312497],[-67.43266601562495,45.603125],[-67.41386718749996,45.565576171874966],[-67.42441406249998,45.530419921874994],[-67.45493164062498,45.51396484375002],[-67.48779296874999,45.50102539062496],[-67.49365234374997,45.47407226562498],[-67.47724609374998,45.445898437500006],[-67.453759765625,45.421240234375034],[-67.42792968749998,45.37792968750002],[-67.43852539062502,45.34038085937502],[-67.46196289062499,45.308691406250034],[-67.47255859375002,45.27587890625],[-67.45258789062495,45.247656250000034],[-67.39980468749994,45.21015625000004],[-67.366943359375,45.17377929687498],[-67.31528320312495,45.15380859375],[-67.290673828125,45.167919921874955],[-67.27070312499993,45.186718749999955],[-67.24960937499998,45.20078124999998],[-67.21323242187502,45.192529296874994],[-67.17099609374995,45.18198242187498],[-67.12485351562498,45.16943359375],[-67.13037109375003,45.139013671875006],[-67.10224609374997,45.08774414062506],[-67.08046875,44.98916015625005],[-67.11391601562497,44.94438476562499],[-67.10673828125002,44.88505859374996],[-67.01401367187503,44.867773437500006],[-66.99145507812497,44.84960937500003],[-66.98701171874995,44.82768554687502],[-67.191259765625,44.67558593750002],[-67.36406249999993,44.696875],[-67.45781249999992,44.656542968750045],[-67.55600585937498,44.64477539062506],[-67.59907226562495,44.576806640624966],[-67.652978515625,44.562402343750044],[-67.72680664062494,44.566503906250006],[-67.79047851562495,44.58569335937499],[-67.83906249999998,44.576269531250034],[-67.90703124999997,44.45361328125],[-67.96269531249996,44.464306640624955],[-67.98486328125003,44.42016601562503],[-68.01396484375002,44.40087890625],[-68.056640625,44.38432617187502],[-68.09370117187498,44.438818359375],[-68.11728515625,44.490625],[-68.15205078124998,44.50200195312499],[-68.19824218749997,44.515234375000034],[-68.24575195312497,44.51479492187502],[-68.27744140625003,44.50737304687502],[-68.31674804687495,44.47387695312506],[-68.37373046874993,44.44511718749996],[-68.416845703125,44.469091796875034],[-68.45058593749997,44.50761718749999],[-68.47944335937498,44.44565429687498],[-68.52143554687501,44.38022460937506],[-68.51445312500002,44.30390624999995],[-68.53251953124996,44.25864257812498],[-68.57236328124998,44.27084960937498],[-68.61201171874998,44.31054687499999],[-68.723291015625,44.34228515624997],[-68.81191406249994,44.33935546875],[-68.79389648437501,44.38173828125002],[-68.710107421875,44.442578124999976],[-68.73588867187499,44.454492187499994],[-68.77700195312502,44.44604492187497],[-68.79492187499994,44.454492187499994],[-68.76552734375,44.509765624999964],[-68.76269531249994,44.57075195312498],[-68.80019531249997,44.54941406249998],[-68.84736328124998,44.48505859375001],[-68.96147460937496,44.43383789062497],[-68.95615234375,44.34809570312501],[-69.06357421874998,44.17236328125],[-69.06835937499997,44.09755859375002],[-69.13725585937495,44.03784179687503],[-69.22607421875003,43.98647460937505],[-69.34453125000002,44.00092773437498],[-69.43496093749997,43.95629882812503],[-69.48085937499997,43.90507812499999],[-69.52075195312503,43.897363281250016],[-69.54155273437499,43.96259765624998],[-69.55668945312496,43.982763671875006],[-69.589990234375,43.886572265625034],[-69.62392578125,43.88061523437497],[-69.63676757812493,43.948828125],[-69.65288085937492,43.99389648437506],[-69.69912109374994,43.95502929687504],[-69.72983398437498,43.85200195312501],[-69.76201171874996,43.860693359375006],[-69.77226562500002,43.8990234375],[-69.7953125,43.91064453125006],[-69.80322265625003,43.86684570312502],[-69.79160156249995,43.80522460937498],[-69.80834960937499,43.772314453125034],[-69.84033203125003,43.78989257812506],[-69.872509765625,43.819531249999955],[-69.92558593749999,43.797021484374994],[-69.97431640624995,43.78789062499999],[-69.97451171875,43.81806640625001],[-69.965234375,43.855078125],[-70.06235351562495,43.83461914062502],[-70.17880859374998,43.76635742187506],[-70.26923828125,43.67192382812499],[-70.237890625,43.65620117187498],[-70.20258789062493,43.626123046874994],[-70.35966796874996,43.48022460937502],[-70.52070312499998,43.34882812499998],[-70.642333984375,43.13442382812502],[-70.691162109375,43.109326171874955],[-70.73310546875001,43.07001953125004],[-70.77763671874993,42.940576171875044],[-70.82905273437493,42.82534179687502],[-70.80029296875003,42.774023437500034],[-70.78134765624996,42.721240234375045],[-70.73569335937499,42.669287109375006],[-70.696875,42.664599609375045],[-70.65483398437496,42.673974609374994],[-70.62397460937498,42.67177734374999],[-70.60415039062494,42.64970703125001],[-70.61293945312497,42.62324218749995],[-70.66142578124995,42.616650390624955],[-70.75185546875002,42.57036132812502],[-70.83115234375,42.552587890625034],[-70.87089843750002,42.49663085937502],[-70.93046874999999,42.43198242187498],[-71.04619140624993,42.331103515625045],[-70.996728515625,42.3],[-70.81796874999996,42.26494140624999],[-70.73828125,42.228857421875006],[-70.61767578125003,42.040429687499966],[-70.64521484374994,42.02158203125003],[-70.65615234374997,41.98706054687503],[-70.54892578124998,41.93862304687502],[-70.51469726562502,41.80332031249998],[-70.42666015625002,41.75727539062501],[-70.29545898437493,41.72895507812504],[-70.13500976562503,41.769873046875],[-70.00141601562498,41.82617187500003],[-70.00610351562497,41.872314453125],[-70.09003906250001,41.97968750000003],[-70.11025390624992,42.030126953125006],[-70.17255859374995,42.06279296875002],[-70.19624023437498,42.035107421874955],[-70.23652343750001,42.07104492187499],[-70.24106445312495,42.09121093750002],[-70.20351562499994,42.10102539062498],[-70.15986328124993,42.09711914062498],[-70.10893554687496,42.07832031249998],[-69.97788085937498,41.961279296875006],[-69.94160156249995,41.80786132812503],[-69.93383789062497,41.71044921875],[-69.94863281249997,41.67714843750005],[-69.98676757812493,41.683984375000016],[-70.05952148437501,41.67734375],[-70.4046875,41.62690429687501],[-70.48134765624997,41.58247070312504],[-70.65712890625,41.53422851562495],[-70.66806640624999,41.558300781249976],[-70.65537109374998,41.60810546875001],[-70.66645507812493,41.710107421874994],[-70.70112304687498,41.71484375],[-70.97421875,41.548535156249955],[-71.07978515624993,41.53808593750006],[-71.1685546875,41.489404296874994],[-71.18842773437495,41.51640624999998],[-71.20429687499998,41.64111328124997],[-71.14873046874996,41.74570312499997],[-71.17832031250003,41.74404296874999],[-71.27109375,41.68125],[-71.3107421875,41.71987304687505],[-71.33061523437496,41.76225585937496],[-71.35917968750002,41.78623046875006],[-71.39013671875003,41.79531250000005],[-71.36367187499997,41.702734375],[-71.42656249999999,41.63330078125],[-71.44379882812493,41.453710937500006],[-71.52285156249997,41.378955078125045],[-71.769287109375,41.330908203125034],[-71.92993164062503,41.34106445312506],[-72.07387695312497,41.32612304687503],[-72.26528320312497,41.29165039062502],[-72.37104492187501,41.31215820312502],[-72.47939453124997,41.27578124999999],[-72.84716796875003,41.265869140625],[-72.92470703125002,41.28515625000002],[-73.02373046874993,41.21645507812496],[-73.18227539062498,41.17583007812496],[-73.5830078125,41.021875],[-73.67138671874997,40.96586914062499],[-73.77900390624998,40.87841796875003],[-73.85126953124995,40.83139648437503],[-73.91069335937499,40.81611328124995],[-73.94721679687495,40.776953125000055],[-73.98710937499999,40.751367187499994],[-73.94858398437498,40.83876953125005],[-73.90673828124997,40.912451171875034],[-73.87197265625,41.05517578124997],[-73.88222656249994,41.170605468749955],[-73.92534179687492,41.218066406250045],[-73.96992187499995,41.24970703125001],[-73.91767578124998,41.13579101562499],[-73.90922851562493,40.99609375000003],[-73.92719726562495,40.914257812499955],[-74.02548828125,40.75639648437504],[-74.06733398437501,40.719628906250016],[-74.11625976562493,40.68730468749999],[-74.153125,40.673242187499966],[-74.18715820312498,40.64799804687499],[-74.22670898437497,40.608007812500006],[-74.26420898437496,40.52861328124999],[-74.24150390624996,40.45625],[-74.04985351562499,40.429833984375044],[-73.9984375,40.45214843750006],[-73.97226562499999,40.40034179687498],[-73.95761718750002,40.32836914062497],[-73.97197265624993,40.25053710937502],[-74.00400390624998,40.17133789062495],[-74.02832031249997,40.072998046875],[-74.04892578124996,39.92304687500001],[-74.079931640625,39.78813476562496],[-74.08398437500003,39.82910156250005],[-74.06459960937497,39.99311523437498],[-74.09599609374999,39.97597656250002],[-74.11762695312495,39.938134765624966],[-74.17612304687495,39.726611328125045],[-74.25654296875001,39.61386718749998],[-74.33061523437499,39.535888671875],[-74.40703125000002,39.54877929687495],[-74.38984374999998,39.48681640625002],[-74.41083984374998,39.45454101562504],[-74.42880859375,39.38720703125],[-74.47436523437497,39.34257812499996],[-74.51718749999998,39.346875],[-74.5787109375,39.31611328124998],[-74.60297851562498,39.29257812499998],[-74.60478515624999,39.24750976562495],[-74.64594726562493,39.207861328125034],[-74.79448242187499,39.001904296875004],[-74.92343749999996,38.94111328124998],[-74.95429687499994,38.949951171875],[-74.92031249999997,39.04716796874999],[-74.89702148437502,39.14545898437504],[-74.97529296874998,39.18823242187505],[-75.05019531249995,39.21083984375002],[-75.13613281249997,39.207861328125034],[-75.23105468750003,39.28427734374997],[-75.35341796874998,39.33984375000003],[-75.52421874999999,39.49018554687501],[-75.51923828124995,39.531884765624966],[-75.52353515625,39.60185546875002],[-75.47163085937501,39.71240234374997],[-75.421875,39.78969726562502],[-75.35317382812494,39.829736328124994],[-75.15380859375,39.87050781250005],[-75.10380859374996,39.93183593750001],[-75.07416992187495,39.983496093750055],[-75.17294921875,39.894775390625],[-75.32089843750003,39.86469726562501],[-75.40063476562503,39.83159179687502],[-75.46440429687496,39.780957031250004],[-75.5021484375,39.717382812500034],[-75.58759765625001,39.64077148437505],[-75.58159179687493,39.58945312499998],[-75.56728515624997,39.552978515625],[-75.57387695312497,39.47695312499996],[-75.51982421874996,39.40283203124997],[-75.41264648437499,39.281396484375016],[-75.3921875,39.09277343750006],[-75.31040039062503,38.966552734375],[-75.18505859374997,38.819384765625045],[-75.08867187499999,38.777539062499955],[-75.083984375,38.722802734374994],[-75.12846679687499,38.63242187500006],[-75.18710937499995,38.59111328124999],[-75.11083984374996,38.59936523437497],[-75.07285156249995,38.578710937500034],[-75.03588867187497,38.50332031250005],[-75.03876953124993,38.426367187500006],[-75.05126953125,38.383007812499955],[-75.07436523437498,38.36572265625],[-75.07338867187497,38.410009765625034],[-75.08974609375002,38.42539062499998],[-75.116748046875,38.40620117187498],[-75.13422851562493,38.38432617187495],[-75.14150390625,38.29814453124998],[-75.16000976562503,38.25507812500001],[-75.22543945312495,38.24228515624998],[-75.29179687499996,38.12919921875001],[-75.35351562500003,38.0650390625],[-75.59638671874993,37.631201171875006],[-75.58710937500001,37.55869140624998],[-75.63154296874998,37.53535156250001],[-75.69882812500003,37.51635742187505],[-75.76689453124996,37.472998046875006],[-75.81206054687497,37.42519531250005],[-75.85400390625003,37.29663085937506],[-75.934375,37.15190429687496],[-75.98452148437497,37.21220703124999],[-75.99736328125002,37.26381835937502],[-75.97504882812498,37.3984375],[-75.88813476562495,37.61914062500003],[-75.79238281249998,37.75634765624999],[-75.71933593750002,37.82138671875003],[-75.65927734374995,37.953955078125034],[-75.73515624999995,37.97373046874998],[-75.850830078125,37.97158203124999],[-75.82905273437501,38.03276367187502],[-75.79531249999997,38.086669921874964],[-75.855615234375,38.14038085937499],[-75.89130859374998,38.14721679687497],[-75.928076171875,38.16923828125002],[-75.88496093749993,38.21396484374998],[-75.863916015625,38.26123046875003],[-75.87675781249995,38.31875],[-75.85869140624999,38.36206054687503],[-75.888818359375,38.355517578125045],[-75.93725585937503,38.309667968750034],[-75.96738281250002,38.291357421875034],[-75.98574218749994,38.33193359375002],[-76.00668945312495,38.32275390625003],[-76.0203125,38.29487304687504],[-76.05122070312495,38.27954101562503],[-76.11650390624993,38.31767578124996],[-76.21166992187497,38.36132812499997],[-76.2646484375,38.436425781249994],[-76.29487304687495,38.49462890625006],[-76.26416015625,38.599951171875006],[-76.19838867187502,38.61865234375],[-76.11293945312502,38.60156249999997],[-76.00092773437493,38.601708984375016],[-76.016943359375,38.62509765624998],[-76.05693359374996,38.621240234374994],[-76.175,38.706689453124994],[-76.21298828124996,38.75830078125003],[-76.27832031249993,38.77246093749997],[-76.30810546874996,38.722851562500004],[-76.34116210937498,38.709667968749976],[-76.30034179687499,38.81821289062498],[-76.24697265624997,38.82265625],[-76.16816406249998,38.852734374999976],[-76.19106445312494,38.91557617187502],[-76.24082031249995,38.943066406250004],[-76.33066406249995,38.90859375],[-76.32958984375,38.95278320312505],[-76.31274414062494,39.009375],[-76.24501953125002,39.009179687499994],[-76.185693359375,38.99072265625002],[-76.13520507812491,39.082128906250006],[-76.132958984375,39.122949218749966],[-76.21684570312496,39.063623046874966],[-76.23569335937498,39.19160156250001],[-76.153125,39.315039062500034],[-76.07436523437497,39.36884765624998],[-75.9759765625,39.367285156250006],[-75.87597656249997,39.3759765625],[-75.93872070312497,39.398583984374994],[-76.003125,39.41083984375001],[-75.95473632812502,39.459619140624994],[-75.91347656249995,39.468359375],[-75.87294921874997,39.510888671874966],[-75.97041015624993,39.50458984375001],[-75.95893554687498,39.58505859374998],[-76.00629882812495,39.568701171875006],[-76.06298828124997,39.56113281249998],[-76.08505859375,39.52700195312505],[-76.08071289062502,39.47031250000003],[-76.097265625,39.43310546875003],[-76.14135742187503,39.403222656249966],[-76.2158203125,39.37993164062502],[-76.22304687499997,39.4203125],[-76.24765625,39.438623046874994],[-76.25683593750003,39.352148437500034],[-76.2763671875,39.32275390625],[-76.33081054687499,39.40390625],[-76.34716796874994,39.38754882812506],[-76.34506835937498,39.36450195312497],[-76.35898437499995,39.32465820312504],[-76.40566406249997,39.30390624999998],[-76.402783203125,39.252832031249966],[-76.42089843749997,39.225],[-76.57041015624995,39.26933593749996],[-76.57392578124995,39.25429687499999],[-76.48935546874995,39.15869140624997],[-76.42758789062498,39.12602539062499],[-76.42006835937495,39.073876953125016],[-76.47309570312493,39.030615234375006],[-76.546240234375,39.06796875000006],[-76.55854492187493,39.065234375000045],[-76.518798828125,39.00117187500004],[-76.49375,38.945214843749994],[-76.51953124999996,38.89833984375005],[-76.51552734374997,38.840625],[-76.52109375000003,38.78828125000001],[-76.53686523437497,38.74262695312504],[-76.501318359375,38.53217773437498],[-76.45849609374997,38.47495117187503],[-76.41640625000002,38.42021484374999],[-76.39409179687502,38.368994140625034],[-76.43876953124996,38.36152343750001],[-76.50991210937497,38.40366210937498],[-76.572412109375,38.43579101562506],[-76.646875,38.53852539062501],[-76.65917968749999,38.57954101562504],[-76.67734374999996,38.61196289062496],[-76.66855468749998,38.5375],[-76.64199218749997,38.454345703125],[-76.40878906249998,38.26826171875004],[-76.36572265625,38.196875],[-76.33291015624997,38.140771484374994],[-76.34116210937498,38.08701171875006],[-76.401953125,38.12504882812499],[-76.45439453124992,38.17353515625001],[-76.59360351562498,38.22832031249996],[-76.76914062500003,38.262939453125],[-76.86811523437495,38.39028320312502],[-76.86777343749995,38.33715820312502],[-76.88974609375,38.292089843750006],[-76.95024414062499,38.347021484375006],[-76.98837890625,38.39389648437503],[-77.00117187499995,38.44526367187504],[-77.07670898437499,38.441748046875034],[-77.15590820312497,38.397119140624994],[-77.23251953125,38.40771484375003],[-77.2416015625,38.49482421875001],[-77.22089843749995,38.54096679687498],[-77.13491210937494,38.65009765625001],[-77.05390624999995,38.705810546875],[-77.01816406249995,38.77773437499999],[-77.03037109374995,38.88925781249998],[-77.04560546874995,38.77578125000005],[-77.09189453124998,38.71953125000004],[-77.16464843749995,38.67656249999998],[-77.26040039062501,38.6],[-77.28378906249998,38.529199218749994],[-77.31367187499995,38.396630859374966],[-77.27324218749996,38.35175781249998],[-77.23193359375,38.340039062499976],[-77.10991210937499,38.37011718749999],[-77.04677734375002,38.356689453125],[-76.90634765625,38.19707031249999],[-76.64487304687503,38.13393554687502],[-76.54951171874995,38.09448242187497],[-76.47177734375003,38.01118164062495],[-76.35493164062493,37.96323242187506],[-76.26425781250003,37.89355468749997],[-76.26181640624998,37.848095703124955],[-76.29321289062497,37.79433593750002],[-76.30561523437501,37.721582031250016],[-76.34414062499997,37.675683593749994],[-76.43662109374998,37.67041015625],[-76.49248046874999,37.682226562500006],[-76.79277343749996,37.937988281249964],[-76.82861328124997,37.96152343749998],[-76.93999023437502,38.095458984375],[-77.070654296875,38.167187499999955],[-77.11108398437497,38.165673828124994],[-76.92509765625002,38.03300781249996],[-76.84916992187499,37.94023437499999],[-76.7154296875,37.810156250000034],[-76.61982421874998,37.75507812500001],[-76.54946289062494,37.66914062500001],[-76.48408203124995,37.62885742187498],[-76.30556640625,37.57148437500001],[-76.36762695312495,37.53027343750006],[-76.2685546875,37.49516601562499],[-76.25439453124997,37.43061523437498],[-76.26347656249996,37.35703125],[-76.40097656249998,37.386132812499994],[-76.40546875000001,37.33193359374996],[-76.3931640625,37.29995117187502],[-76.45390624999993,37.27353515625006],[-76.53837890624999,37.309375],[-76.75771484375002,37.50541992187496],[-76.755859375,37.47919921875004],[-76.73808593750002,37.44877929687496],[-76.61088867187492,37.32255859375002],[-76.49736328124999,37.246875],[-76.40112304687503,37.21269531250002],[-76.32695312500002,37.149267578125055],[-76.30078125,37.11088867187496],[-76.28330078125,37.05268554687501],[-76.33828125,37.01313476562503],[-76.40087890624997,36.991308593750034],[-76.46201171874998,37.03076171874997],[-76.50683593749996,37.07231445312502],[-76.60229492187497,37.14287109374998],[-76.63090820312493,37.22172851562499],[-76.70351562499998,37.21767578125005],[-77.006982421875,37.31767578124999],[-77.25087890624994,37.329199218750034],[-77.22705078124997,37.30908203125003],[-77.19619140625,37.295703125000045],[-77.00195312500003,37.27104492187499],[-76.92519531250002,37.225],[-76.76542968749999,37.18413085937496],[-76.671875,37.172949218750006],[-76.63393554687501,37.04741210937499],[-76.50463867187497,36.96103515624998],[-76.48784179687502,36.89702148437499],[-76.39956054687497,36.889843749999955],[-76.24423828125003,36.95263671875005],[-76.14399414062495,36.93061523437501],[-75.99941406249995,36.91264648437499],[-75.96635742187499,36.861962890624966],[-75.941552734375,36.76552734375002],[-75.89042968749999,36.65703125],[-75.75786132812496,36.22924804687503],[-75.55869140624998,35.879345703124976],[-75.53417968749997,35.81909179687506],[-75.58046875,35.871972656249994],[-75.72822265624997,36.10371093750004],[-75.80976562499998,36.27104492187502],[-75.8935546875,36.56650390624998],[-75.91787109374997,36.63266601562506],[-75.94648437499994,36.65908203125002],[-75.96533203124997,36.637597656249994],[-75.97343750000002,36.59995117187506],[-75.95976562499999,36.57104492187503],[-75.99277343749995,36.47377929687502],[-75.97846679687498,36.42915039062498],[-75.92485351562497,36.383007812500004],[-75.86660156250002,36.26787109374999],[-75.82006835937494,36.11284179687502],[-75.88300781249998,36.175683593750044],[-75.9501953125,36.20898437499997],[-76.05473632812496,36.23452148437502],[-76.14785156250002,36.279296875],[-76.14106445312498,36.21508789062497],[-76.15,36.14575195312497],[-76.22177734374998,36.16689453125002],[-76.27060546874998,36.189892578125004],[-76.22739257812498,36.11601562499996],[-76.32119140625,36.13818359375003],[-76.38369140625002,36.13354492187497],[-76.42431640624994,36.067968750000034],[-76.47880859374993,36.028173828125],[-76.559375,36.015332031249955],[-76.67890624999995,36.075292968750006],[-76.717626953125,36.14809570312502],[-76.733642578125,36.229150390624994],[-76.74003906249996,36.13330078125002],[-76.71875,36.03349609375001],[-76.726220703125,35.957617187500034],[-76.61113281249999,35.94365234375001],[-76.50351562499999,35.95605468749997],[-76.35830078125,35.95288085937502],[-76.26357421874997,35.96708984374998],[-76.20654296875,35.99121093750003],[-76.06977539062501,35.970312500000034],[-76.06005859375,35.878662109375],[-76.07568359374997,35.787548828125004],[-76.08359374999998,35.69052734375006],[-76.04570312499999,35.691162109375],[-76.00117187499998,35.72216796875003],[-75.97890624999997,35.89594726562498],[-75.85390625,35.96015625000001],[-75.81201171875,35.95576171875001],[-75.77221679687497,35.89990234375],[-75.75883789062499,35.84326171875],[-75.74472656249995,35.76547851562503],[-75.77392578124996,35.64697265624997],[-75.965966796875,35.50839843749998],[-76.10351562499997,35.380273437499994],[-76.17382812499997,35.354150390624994],[-76.27524414062495,35.369042968750016],[-76.390234375,35.40126953125002],[-76.44663085937495,35.40776367187499],[-76.489501953125,35.397021484375045],[-76.515625,35.43647460937498],[-76.53247070312494,35.508447265624994],[-76.57719726562502,35.53232421874998],[-76.61103515624998,35.529687499999966],[-76.63413085937498,35.453222656250034],[-76.74140624999998,35.431494140625034],[-76.88725585937493,35.46308593749998],[-77.03999023437495,35.527392578125045],[-76.97446289062503,35.45839843750002],[-76.595458984375,35.3296875],[-76.55278320312502,35.30561523437498],[-76.51293945312497,35.270410156249994],[-76.56596679687493,35.215185546875034],[-76.60751953124998,35.152978515624966],[-76.61337890624999,35.104150390624966],[-76.62802734374996,35.073339843750006],[-76.77915039062502,34.99033203125003],[-76.86103515625001,35.00498046875],[-77.07026367187501,35.154638671875034],[-76.97495117187503,35.025195312500045],[-76.89863281249995,34.970263671875045],[-76.74497070312498,34.94096679687502],[-76.45673828124998,34.989355468750034],[-76.36220703125,34.9365234375],[-76.43979492187498,34.84291992187502],[-76.51689453124999,34.777246093749966],[-76.61801757812498,34.76992187499999],[-76.70708007812499,34.75214843750001],[-76.73320312499999,34.706982421874955],[-76.79667968749996,34.70415039062501],[-76.89589843749998,34.70146484374999],[-77.04951171874995,34.697363281250034],[-77.13388671875,34.707910156249966],[-77.25175781249993,34.615625],[-77.29624023437503,34.602929687499994],[-77.3583984375,34.620263671874966],[-77.38447265624998,34.69438476562496],[-77.41225585937495,34.730810546875034],[-77.412939453125,34.592138671875006],[-77.40205078125001,34.554785156250034],[-77.37978515625,34.526611328125],[-77.51767578125002,34.45136718750001],[-77.649658203125,34.357519531250006],[-77.69697265624995,34.33198242187504],[-77.75073242187499,34.28496093749996],[-77.86083984374994,34.149169921875],[-77.88803710937496,34.050146484375],[-77.92783203125,33.93974609374998],[-77.93286132812497,33.98945312499998],[-77.926025390625,34.07314453124996],[-77.95327148437492,34.16899414062496],[-77.970556640625,33.99340820312497],[-78.01333007812502,33.91181640624998],[-78.40585937499995,33.91757812499998],[-78.57768554687496,33.87324218750001],[-78.84145507812497,33.72407226562501],[-78.92031249999995,33.65869140625],[-79.13818359375003,33.40590820312502],[-79.19379882812497,33.24414062500003],[-79.23837890625,33.31215820312502],[-79.22734374999999,33.363183593750016],[-79.22646484375,33.40488281249998],[-79.28134765624998,33.31542968749997],[-79.22924804687503,33.18515624999998],[-79.27602539062497,33.135400390624966],[-79.41992187499996,33.04252929687499],[-79.49868164062502,33.02729492187498],[-79.58710937500001,33.00087890625002],[-79.61494140624998,32.909277343750006],[-79.73500976562494,32.824804687500034],[-79.80498046874999,32.78740234374996],[-79.93310546874997,32.81005859375006],[-79.89365234374999,32.72871093749998],[-79.94072265625002,32.667138671874966],[-80.02177734375002,32.619921875000045],[-80.12255859375003,32.58911132812497],[-80.18032226562497,32.592871093750034],[-80.22968750000001,32.57651367187498],[-80.26835937499996,32.537353515625],[-80.36284179687496,32.500732421875],[-80.46098632812496,32.521337890625034],[-80.57221679687498,32.53369140625006],[-80.63417968749998,32.51171875000003],[-80.530029296875,32.47539062499999],[-80.47426757812498,32.42275390625002],[-80.48574218749994,32.35180664062503],[-80.51362304687493,32.324414062499955],[-80.579345703125,32.28730468750004],[-80.60820312500002,32.292822265625006],[-80.62583007812498,32.32626953124998],[-80.64721679687497,32.39594726562495],[-80.67778320312499,32.38110351562506],[-80.68305664062498,32.3486328125],[-80.709326171875,32.33706054687505],[-80.80253906249999,32.44804687500002],[-80.79790039062493,32.363378906250006],[-80.76533203124995,32.29833984374997],[-80.73383789062495,32.26533203125001],[-80.70205078124997,32.245898437500045],[-80.69423828124997,32.21572265625002],[-80.75800781249998,32.142187500000055],[-80.7908203125,32.125830078125006],[-80.84921875,32.113916015624966],[-80.88208007812494,32.06860351562497],[-80.87236328125002,32.02958984375002],[-80.92343750000003,31.944921875],[-81.04555664062494,31.89204101562498],[-81.082861328125,31.894091796875042],[-81.11328124999996,31.87861328125001],[-81.09550781249999,31.840917968750034],[-81.0650390625,31.813476562500053],[-81.06611328124995,31.787988281250023],[-81.09838867187497,31.753369140624983],[-81.16210937499997,31.74370117187496],[-81.197900390625,31.704199218750006],[-81.18657226562499,31.666943359374958],[-81.16552734374997,31.646142578124966],[-81.16992187499997,31.61030273437495],[-81.24238281249998,31.574316406250002],[-81.259375,31.538916015624974],[-81.22338867187503,31.52846679687499],[-81.195703125,31.538916015624974],[-81.17543945312494,31.53129882812502],[-81.218896484375,31.47211914062495],[-81.25791015624995,31.436035156249968],[-81.29497070312495,31.371191406250006],[-81.38095703124998,31.353271484375004],[-81.37773437499993,31.33232421874999],[-81.32915039062499,31.313769531250042],[-81.28847656249997,31.263916015624996],[-81.364892578125,31.171875],[-81.41259765625003,31.179443359375025],[-81.441748046875,31.19970703124997],[-81.4603515625,31.127050781250006],[-81.45322265624995,31.088281250000023],[-81.47138671875001,31.00903320312503],[-81.5005859375,30.913769531249983],[-81.52041015624997,30.87465820312502],[-81.5162109375,30.801806640625017],[-81.50395507812499,30.73144531249997],[-81.45717773437497,30.640771484374962],[-81.38574218749997,30.269970703125008],[-81.33710937500001,30.141210937499974],[-81.24951171875003,29.793798828125006],[-81.10454101562496,29.456982421875036],[-80.9,29.049853515625045],[-80.56430664062495,28.556396484375057],[-80.52412109374995,28.48608398437503],[-80.56782226562495,28.426464843749955],[-80.58115234375,28.364697265624983],[-80.58496093749999,28.271582031250034],[-80.5728515625,28.18085937500001],[-80.53315429687501,28.070068359375],[-80.456884765625,27.90068359374996],[-80.49956054687497,27.934472656249994],[-80.61000976562494,28.177587890624977],[-80.62285156249999,28.320361328125017],[-80.60693359375001,28.522900390624983],[-80.63286132812499,28.518017578124955],[-80.65390625,28.452197265624957],[-80.66547851562495,28.374902343750023],[-80.693505859375,28.344970703124968],[-80.73173828124996,28.462890625],[-80.72905273437496,28.51621093750003],[-80.68847656250003,28.57851562500002],[-80.70024414062493,28.600927734374977],[-80.76591796874997,28.6328125],[-80.7798828125,28.682958984375002],[-80.77099609374997,28.732470703125045],[-80.80869140625,28.758935546875023],[-80.83818359374999,28.757666015625034],[-80.81840820312493,28.635595703125034],[-80.78720703124998,28.560644531250034],[-80.74863281250002,28.381005859375023],[-80.68637695312495,28.272167968749983],[-80.65009765624993,28.18090820312503],[-80.22612304687499,27.207031250000057],[-80.12578125,27.0830078125],[-80.08867187499996,26.99394531249999],[-80.05004882812499,26.80771484375006],[-80.04130859374999,26.568603515625],[-80.11059570312497,26.131591796874968],[-80.1263671875,25.833496093749996],[-80.13627929687499,25.842626953124977],[-80.142919921875,25.874023437499996],[-80.15893554687497,25.878320312499966],[-80.21909179687496,25.741748046875045],[-80.30083007812502,25.618554687499994],[-80.32773437499998,25.427099609374974],[-80.36694335937497,25.33125],[-80.48466796874999,25.229833984375034],[-80.55761718750001,25.23242187500003],[-80.73652343749995,25.156347656249974],[-80.86220703125,25.17617187500002],[-81.01196289062503,25.133251953124983],[-81.11049804687494,25.138037109374974],[-81.1673828125,25.228515625000025],[-81.15869140625,25.26899414062501],[-81.13603515624999,25.309667968750034],[-81.09765625,25.319140625000017],[-80.96538085937496,25.224316406249955],[-80.94042968750003,25.264208984375014],[-80.98037109375,25.311669921874994],[-81.05683593749993,25.338134765624968],[-81.11333007812497,25.367236328125045],[-81.2271484375,25.583398437500023],[-81.34506835937503,25.731835937499962],[-81.36494140625001,25.83105468750003],[-81.56826171874992,25.89155273437501],[-81.715478515625,25.98315429687503],[-81.81147460937493,26.14609375],[-81.86655273437495,26.43500976562498],[-81.93149414062495,26.46748046875001],[-81.95893554687495,26.489941406249983],[-81.8955078125,26.597167968750053],[-81.82866210937496,26.68706054687499],[-81.88154296874998,26.66469726562505],[-81.92055664062494,26.631445312500034],[-81.97016601562493,26.552050781250017],[-82.00639648437493,26.539843750000014],[-82.03959960937496,26.552050781250017],[-82.07788085937503,26.70434570312503],[-82.066943359375,26.891552734374983],[-82.01328125,26.96157226562505],[-82.09570312500003,26.96342773437499],[-82.181103515625,26.936767578125057],[-82.16860351562494,26.874365234375034],[-82.1806640625,26.84008789062497],[-82.24287109374998,26.848876953125],[-82.2900390625,26.87080078125001],[-82.35405273437499,26.93574218750001],[-82.44135742187501,27.05966796875003],[-82.62045898437498,27.401074218749955],[-82.65537109375,27.44921875],[-82.71459960937497,27.499609375000063],[-82.68671874999998,27.51528320312505],[-82.63583984375,27.524560546874994],[-82.52084960937502,27.678271484375045],[-82.43051757812499,27.77114257812505],[-82.40053710937492,27.835400390624983],[-82.40576171874994,27.862890624999977],[-82.445703125,27.902832031250057],[-82.49814453125003,27.86791992187503],[-82.52060546874998,27.87788085937501],[-82.57958984375,27.95844726562501],[-82.6359375,27.98120117187503],[-82.67519531249994,27.963769531250023],[-82.63378906249993,27.89775390624999],[-82.59658203125,27.873242187499955],[-82.61098632812501,27.77724609375005],[-82.62602539062496,27.745996093749966],[-82.66088867187497,27.71840820312505],[-82.71533203124994,27.73310546875001],[-82.74287109374995,27.709375],[-82.77529296875,27.734375],[-82.807568359375,27.776562499999983],[-82.84350585937494,27.845996093750017],[-82.74853515624997,28.236816406250057],[-82.66064453125,28.48583984374997],[-82.65058593749998,28.769921875000023],[-82.64404296874999,28.81201171875],[-82.65146484375,28.8875],[-82.76933593749993,29.051562500000045],[-83.29047851562498,29.451904296874975],[-83.69438476562502,29.92597656250001],[-84.04423828124996,30.103808593749992],[-84.30966796874995,30.064746093750042],[-84.35561523437498,30.02900390625004],[-84.375341796875,29.98227539062503],[-84.35869140624999,29.92939453124998],[-84.38281250000003,29.90737304687505],[-84.45405273437498,29.91015624999997],[-84.55,29.897851562499966],[-84.80053710937494,29.773046875000034],[-84.888916015625,29.777636718749985],[-84.96918945312493,29.745312499999983],[-85.02929687499999,29.72109375000002],[-85.18603515624997,29.70791015624999],[-85.31894531249995,29.680224609375045],[-85.37636718750002,29.69521484374999],[-85.413818359375,29.767578124999975],[-85.413818359375,29.842480468749955],[-85.38344726562497,29.78505859374999],[-85.33642578124996,29.740136718749994],[-85.31489257812493,29.758105468750014],[-85.30683593749997,29.79785156250003],[-85.35361328125,29.875732421875],[-85.50429687499997,29.97578125000004],[-85.67578125,30.12192382812506],[-85.62348632812501,30.11708984375005],[-85.61025390624997,30.148388671875008],[-85.66342773437496,30.189453125000025],[-85.64096679687499,30.236914062500038],[-85.60351562500003,30.286767578124966],[-85.67587890625003,30.279296875000057],[-85.7408203125,30.244384765625025],[-85.74296875000002,30.20126953125006],[-85.75581054687495,30.166992187499996],[-85.79077148437497,30.171972656250034],[-85.85566406249994,30.214404296874957],[-86.17514648437495,30.33251953125006],[-86.454443359375,30.399121093750036],[-86.24008789062503,30.429101562500023],[-86.12382812499999,30.405810546874985],[-86.13769531249997,30.441552734374966],[-86.16567382812497,30.464257812499994],[-86.25737304687502,30.493017578124977],[-86.374169921875,30.482080078124966],[-86.44794921874993,30.495605468749968],[-86.52338867187493,30.467089843750017],[-86.60605468749998,30.424707031249994],[-86.67963867187495,30.40288085937499],[-86.967626953125,30.372363281249985],[-87.20117187499999,30.33925781249999],[-87.16372070312498,30.37421875],[-87.12377929687494,30.39667968749998],[-86.98579101562498,30.43085937500001],[-86.96513671874996,30.50190429687501],[-86.99755859375,30.5703125],[-87.03388671874993,30.55390625000004],[-87.07202148437496,30.500439453124983],[-87.118798828125,30.538964843750023],[-87.17060546874998,30.538769531249983],[-87.18466796875,30.453710937500063],[-87.25107421875003,30.39667968749998],[-87.28105468750002,30.33925781249999],[-87.47578124999998,30.294287109375002],[-87.500732421875,30.309277343750036],[-87.44375,30.36381835937505],[-87.44829101562499,30.394140625],[-87.51328124999998,30.36811523437501],[-87.62226562499998,30.264746093750006],[-88.00595703124998,30.23090820312495],[-87.985009765625,30.25439453125003],[-87.90400390625001,30.259082031250014],[-87.79028320312503,30.291796875000014],[-87.81328124999999,30.346875],[-87.85712890624995,30.40742187500004],[-87.89760742187494,30.41416015624998],[-87.92431640624997,30.44965820312504],[-87.92299804687497,30.5615234375],[-87.948876953125,30.626904296874983],[-88.011328125,30.694189453125002],[-88.03242187499994,30.68125],[-88.078369140625,30.56621093749996],[-88.11655273437495,30.41533203124996],[-88.13544921874997,30.366601562499994],[-88.24921874999998,30.36318359374999],[-88.34990234374999,30.373486328124955],[-88.69208984374997,30.355371093749994],[-88.819921875,30.406494140625025],[-88.87294921874997,30.41630859374999],[-88.90522460937495,30.415136718750002],[-89.054052734375,30.36826171875006],[-89.2236328125,30.332373046875034],[-89.26357421874995,30.34365234375002],[-89.32055664062503,30.3453125],[-89.44350585937501,30.22314453124997],[-89.58847656249996,30.165966796874955],[-89.95424804687498,30.26875],[-90.04521484374996,30.351416015625006],[-90.12597656249997,30.369091796874955],[-90.22529296874994,30.37929687499999],[-90.33198242187493,30.277587890625053],[-90.41303710937501,30.140332031249983],[-90.28496093749993,30.065087890625023],[-90.17534179687499,30.02910156249996],[-89.99418945312495,30.059277343749983],[-89.89404296874997,30.12587890624997],[-89.812255859375,30.123681640624966],[-89.77314453124995,30.137207031250057],[-89.73745117187497,30.171972656250034],[-89.66752929687502,30.14453125000003],[-89.66503906249993,30.117041015625034],[-89.71469726562503,30.07832031249995],[-89.77724609375,30.045703124999985],[-89.81518554687497,30.007275390624955],[-89.743798828125,29.92983398437499],[-89.631689453125,29.90380859375003],[-89.58950195312502,29.915039062500004],[-89.56337890625001,30.002099609374966],[-89.49443359375002,30.058154296875017],[-89.400732421875,30.046044921875055],[-89.41406249999997,30.01088867187499],[-89.40092773437495,29.977685546874962],[-89.35786132812498,29.920996093750063],[-89.36279296875,29.83979492187504],[-89.35444335937501,29.820214843750048],[-89.45541992187498,29.784375],[-89.53066406250002,29.772216796875025],[-89.59086914062493,29.725292968749983],[-89.559326171875,29.698046875000017],[-89.62065429687496,29.674121093750045],[-89.66210937499997,29.683691406250034],[-89.68295898437495,29.674853515625014],[-89.689208984375,29.64604492187499],[-89.72089843749995,29.619287109374962],[-89.67480468749997,29.538671874999974],[-89.580322265625,29.486035156250008],[-89.51367187500003,29.420068359374966],[-89.24570312499995,29.333203125000043],[-89.18076171874998,29.335693359375],[-89.116845703125,29.24824218749995],[-89.06533203125,29.218164062500048],[-89.01572265624999,29.202880859375057],[-89.02138671875,29.142724609375048],[-89.10952148437501,29.098681640625042],[-89.13334960937499,29.046142578125],[-89.15551757812497,29.01660156250003],[-89.19526367187497,29.05400390624999],[-89.23608398437494,29.081103515625017],[-89.33056640625003,28.998681640625023],[-89.37612304687497,28.981347656250023],[-89.353515625,29.070214843750023],[-89.38920898437499,29.105029296875017],[-89.44316406249995,29.194140625000042],[-89.52177734374999,29.249267578125],[-89.57714843749996,29.267529296874983],[-89.62026367187497,29.302392578124966],[-89.67246093749995,29.316503906250002],[-89.71699218749995,29.31289062499999],[-89.79238281249997,29.333203125000043],[-89.79736328125,29.38061523437503],[-89.81826171874998,29.416113281250063],[-89.87724609375002,29.458007812499968],[-90.15908203124997,29.537158203125014],[-90.16079101562497,29.50439453125],[-90.14125976562497,29.479736328125057],[-90.10078124999997,29.46333007812498],[-90.05234374999998,29.43139648437497],[-90.05278320312499,29.336816406249966],[-90.07373046875,29.29677734374999],[-90.08271484374995,29.23974609375],[-90.10136718749993,29.181787109375023],[-90.13583984375003,29.136083984375034],[-90.21279296875,29.10493164062498],[-90.24672851562497,29.131005859374962],[-90.30161132812495,29.25581054687498],[-90.37919921874996,29.295117187500008],[-90.50249023437493,29.299755859374986],[-90.58623046874996,29.27153320312499],[-90.67749023437497,29.150634765624975],[-90.75102539062495,29.13085937500003],[-91.00273437499997,29.19350585937499],[-91.29013671875,29.28896484374999],[-91.28271484375,29.320751953124983],[-91.2375,29.330957031250023],[-91.15078124999994,29.317919921875045],[-91.15537109374998,29.350683593750034],[-91.243994140625,29.457324218750017],[-91.26025390624994,29.505468750000063],[-91.24882812499993,29.56420898437503],[-91.27773437499997,29.56289062500002],[-91.33095703124997,29.51357421875002],[-91.51420898437499,29.555371093750015],[-91.564794921875,29.605322265625066],[-91.6724609375,29.746093750000057],[-91.82441406249995,29.750683593750008],[-91.8931640625,29.836035156249974],[-92.017333984375,29.80029296874997],[-92.08022460937502,29.760742187499996],[-92.135498046875,29.699462890625053],[-92.11396484374998,29.667675781249955],[-92.05888671874993,29.617187499999968],[-92.08403320312499,29.59282226562499],[-92.26083984374995,29.55683593750004],[-92.6712890625,29.597070312499962],[-92.79130859374993,29.63466796874999],[-92.95239257812497,29.714160156250017],[-93.17568359375,29.778955078124994],[-93.28320312499997,29.789404296874977],[-93.38847656250002,29.776562500000036],[-93.69482421874997,29.769921875000023],[-93.76591796874999,29.752685546875053],[-93.82646484374997,29.725146484375042],[-93.86572265624997,29.755615234375025],[-93.88388671874995,29.81000976562501],[-93.84833984374998,29.81884765625003],[-93.80878906249993,29.850830078124968],[-93.77309570312494,29.91406249999997],[-93.76904296875,29.95229492187505],[-93.79399414062493,29.977246093749983],[-93.84145507812501,29.979736328125025],[-93.94628906249997,29.81499023437496],[-93.88637695312502,29.72265624999997],[-93.89047851562495,29.68935546875002],[-94.09965820312493,29.67041015625],[-94.57446289062494,29.484521484375048],[-94.759619140625,29.384277343750057],[-94.75014648437494,29.41801757812499],[-94.52626953125,29.547949218750002],[-94.60532226562502,29.56782226562495],[-94.73261718749993,29.535351562500008],[-94.77827148437498,29.547851562499968],[-94.72436523437501,29.655273437500025],[-94.74194335937497,29.75],[-94.83232421874999,29.752587890625023],[-94.88989257812499,29.676953124999983],[-94.92988281249997,29.680175781250032],[-94.98227539062498,29.712597656249983],[-95.0228515625,29.70234375],[-94.992822265625,29.53095703125001],[-94.93588867187495,29.460449218750025],[-94.88828125000003,29.37055664062501],[-95.01831054687497,29.25947265625004],[-95.13906249999995,29.167822265625002],[-95.15214843749996,29.079248046874998],[-95.27348632812499,28.96386718750003],[-95.38764648437498,28.898437500000025],[-95.65585937499999,28.74462890625003],[-95.73237304687494,28.71171875],[-95.85341796875,28.64033203125001],[-96.02041015625002,28.586816406250023],[-96.18051757812503,28.501855468750048],[-96.23452148437501,28.48896484374998],[-96.13227539062498,28.560888671875006],[-96.01103515624996,28.631933593749977],[-96.11503906250002,28.622216796874962],[-96.27534179687498,28.655126953125002],[-96.3734375,28.657031250000045],[-96.37412109374995,28.631103515625],[-96.44873046874997,28.594482421875],[-96.52602539062498,28.64829101562503],[-96.55971679687502,28.68447265625002],[-96.57568359374997,28.71572265624999],[-96.60849609375,28.72329101562505],[-96.64003906249994,28.708789062500014],[-96.52465820312497,28.48872070312504],[-96.47548828125,28.479199218749955],[-96.42109374999993,28.457324218750045],[-96.48881835937496,28.40605468749999],[-96.56171874999998,28.367138671874955],[-96.67636718749998,28.34130859375003],[-96.77353515624998,28.421630859375057],[-96.79458007812498,28.320849609375017],[-96.806884765625,28.220214843750053],[-96.839501953125,28.194384765625017],[-96.89160156249994,28.157568359374974],[-96.91987304687493,28.18535156249996],[-96.93330078125001,28.22426757812499],[-96.96665039062495,28.189550781250006],[-97.01547851562495,28.16347656250002],[-97.09604492187503,28.158251953125045],[-97.156494140625,28.144335937500045],[-97.15507812499999,28.102636718749977],[-97.14125976562498,28.060742187499983],[-97.034326171875,28.093847656250063],[-97.07309570312498,27.986083984375025],[-97.17143554687493,27.879589843750008],[-97.2515625,27.854443359374955],[-97.37412109375,27.870019531250023],[-97.40439453124998,27.85932617187498],[-97.43149414062496,27.83720703124999],[-97.28872070312494,27.670605468749983],[-97.38046874999998,27.41933593750005],[-97.43911132812502,27.328271484374962],[-97.47978515624996,27.316601562499983],[-97.52387695312497,27.31396484374997],[-97.68212890624997,27.39492187500005],[-97.76845703124997,27.45751953125],[-97.69238281250003,27.287158203125014],[-97.48510742187497,27.237402343750002],[-97.47451171874997,27.172949218750034],[-97.47568359375,27.11787109375001],[-97.51650390625,27.05322265624997],[-97.55468749999994,26.96733398437496],[-97.52651367187495,26.907519531250042],[-97.49379882812497,26.75961914062503],[-97.46582031249997,26.691748046875063],[-97.43505859375,26.485839843750025],[-97.40234375,26.396533203125045],[-97.21391601562499,26.067871093750057],[-97.15039062499999,26.065332031249966],[-97.14018554687496,26.02973632812501],[-97.14624023437494,25.961474609375042],[-97.28178710937496,25.941601562499983],[-97.33867187499999,25.911181640625017],[-97.34975585937494,25.884765625000057],[-97.35815429687496,25.870507812499994],[-97.37563476562497,25.871826171875],[-97.440283203125,25.890820312500036],[-97.587255859375,25.984179687500045],[-97.80141601562494,26.042041015625017],[-98.08281249999999,26.064453124999968],[-98.27504882812497,26.111181640624974],[-98.378125,26.18237304687503],[-98.48588867187493,26.224560546874983],[-98.59829101562502,26.237841796875045],[-98.69140624999996,26.276464843750006],[-98.765234375,26.340429687499977],[-98.87319335937498,26.38125],[-99.01528320312497,26.39897460937499],[-99.10776367187498,26.446923828124994],[-99.17207031250003,26.56416015624998],[-99.17236328125,26.56591796875],[-99.22993164062498,26.761914062499955],[-99.30244140625003,26.88471679687501],[-99.4435546875,27.036669921874985],[-99.45649414062497,27.056640625000057],[-99.45654296874999,27.05668945312496],[-99.45771484374995,27.081689453124994],[-99.44023437499995,27.170117187499983],[-99.45512695312496,27.23369140624996],[-99.49980468749999,27.28549804687503],[-99.51005859374996,27.34033203125003],[-99.48583984375,27.39804687500006],[-99.48427734374995,27.467382812500063],[-99.50532226562495,27.54833984375003],[-99.5953125,27.635888671875023],[-99.75424804687496,27.729931640624983],[-99.8896484375,27.867285156250006],[-100.00141601562495,28.0478515625],[-100.11196289062501,28.172949218750006],[-100.22128906249999,28.242626953124983],[-100.29604492187495,28.32768554687499],[-100.33627929687498,28.428125],[-100.34814453124997,28.486425781250006],[-100.33173828125003,28.502539062500006],[-100.39892578124994,28.614208984375008],[-100.54970703125002,28.821337890625017],[-100.63632812499999,28.972802734374962],[-100.65864257812501,29.06855468750004],[-100.75458984375001,29.18251953124999],[-100.92412109375,29.314697265624996],[-101.01630859374995,29.400683593750017],[-101.03862304687497,29.460302734375002],[-101.03896484374995,29.46040039062501],[-101.30351562499993,29.634082031249957],[-101.38037109374994,29.74257812500005],[-101.44038085937503,29.77685546875],[-101.50927734375003,29.77314453124995],[-101.54462890624994,29.78354492187503],[-101.54638671874994,29.80805664062495],[-101.56870117187496,29.80922851562502],[-101.61162109375,29.786962890625034],[-101.75234375,29.782470703125],[-101.99091796875,29.795703125000014],[-102.1630859375,29.825244140625017],[-102.26894531249998,29.871191406250038],[-102.34306640624996,29.86499023437503],[-102.38564453124995,29.80664062500003],[-102.47626953125003,29.769091796875017],[-102.61494140624994,29.75234375],[-102.73417968749997,29.64394531250002],[-102.83398437499999,29.443945312500034],[-102.87783203124994,29.315332031250048],[-102.86567382812495,29.258007812499983],[-102.8919921875,29.216406250000034],[-102.95683593749996,29.190380859374983],[-103.02285156250001,29.13222656250005],[-103.08999023437501,29.041894531250023],[-103.16831054687496,28.998193359374994],[-103.25771484374997,29.001123046874966],[-103.42294921874998,29.07070312500002],[-103.66396484374997,29.20688476562506],[-103.85292968750001,29.291064453124985],[-103.98974609374999,29.323144531250023],[-104.11059570312499,29.386132812499998],[-104.21552734374998,29.47988281249999],[-104.31220703124995,29.54243164062504],[-104.40063476562503,29.573730468749996],[-104.50400390624995,29.67768554687495],[-104.62221679687497,29.854296874999957],[-104.68134765625003,29.99052734375002],[-104.68134765625003,30.134375],[-104.83588867187497,30.447656249999962],[-104.91787109374998,30.583349609375006],[-104.97880859374996,30.64594726562495],[-105.09814453125003,30.72055664062506],[-105.27583007812498,30.807275390624966],[-105.51401367187502,30.980761718749957],[-105.81269531250003,31.241015625000045],[-106.02407226562501,31.39775390624999],[-106.14804687499995,31.450927734374996],[-106.25571289062495,31.544677734374996],[-106.34697265624996,31.679003906250014],[-106.43603515625,31.764453125000017],[-106.44541015624996,31.768408203125002],[-106.45322265624993,31.770166015625023],[-106.67304687499997,31.771337890625006],[-106.89287109374999,31.772460937500057],[-107.11269531250001,31.77363281250001],[-107.33251953124994,31.774755859374977],[-107.55234374999996,31.77587890625003],[-107.772216796875,31.77705078125001],[-107.992041015625,31.778173828125063],[-108.21181640625001,31.77934570312502],[-108.2125,31.666845703125034],[-108.21318359374995,31.554394531250036],[-108.21381835937497,31.441894531250025],[-108.21445312499993,31.329443359375034],[-108.56787109375,31.328808593749983],[-108.92133789062498,31.328125],[-109.27475585937493,31.32744140624999],[-109.62822265625,31.326806640625023],[-109.98164062499998,31.32617187499997],[-110.33510742187497,31.325537109375034],[-110.68852539062502,31.324853515624994],[-111.0419921875,31.324218750000025],[-111.51621093749998,31.472265625],[-111.99047851562497,31.62021484375003],[-112.46474609374995,31.76826171874998],[-112.93896484375001,31.916259765625025],[-113.41318359374999,32.064306640625006],[-113.88745117187499,32.21230468750002],[-114.36171874999997,32.36030273437498],[-114.83593749999993,32.50830078125003],[-114.78798828124995,32.564794921875006],[-114.72475585937494,32.71533203125003],[-114.83906249999997,32.704736328124994],[-115.1251953125,32.68330078124998],[-115.41137695312503,32.66186523437505],[-115.69750976562499,32.640478515625034],[-115.98369140625,32.619042968750016],[-116.26982421874993,32.59760742187501],[-116.55595703124996,32.57622070312502],[-116.84208984375002,32.554785156250006],[-117.12827148437493,32.533349609374994],[-117.13046874999996,32.539746093749955],[-117.13740234374994,32.64916992187503],[-117.183740234375,32.68789062500002],[-117.24345703124997,32.664013671874955],[-117.27070312500001,32.80625],[-117.25576171875001,32.87338867187498],[-117.26298828124995,32.938867187499994],[-117.31884765624997,33.10004882812498],[-117.46743164062494,33.295507812500006],[-117.78852539062501,33.53847656250002],[-117.95209960937501,33.61962890625003],[-118.08051757812495,33.72216796874997],[-118.16191406249995,33.750683593750004],[-118.26440429687496,33.75859375000002],[-118.29418945312499,33.712304687499994],[-118.41044921874996,33.74394531249996],[-118.39296874999995,33.858300781249994],[-118.506201171875,34.01738281249999],[-118.59882812499997,34.035009765625034],[-118.83203124999994,34.02446289062501],[-119.14375,34.112011718749976],[-119.23583984374996,34.164111328125045],[-119.26767578124998,34.257421875000034],[-119.41367187499996,34.338574218749955],[-119.60605468749998,34.41801757812499],[-119.71318359374996,34.39965820312497],[-119.8533203125,34.41196289062498],[-120.05297851562499,34.46928710937504],[-120.16953125000002,34.476464843749994],[-120.396484375,34.459570312500006],[-120.48120117187504,34.47163085937498],[-120.55981445312499,34.543896484374955],[-120.64467773437504,34.57998046875002],[-120.62670898437499,34.66894531250003],[-120.63759765625002,34.74936523437497],[-120.62490234375,34.81196289062504],[-120.66303710937494,34.94926757812502],[-120.63359374999999,35.07646484375002],[-120.65908203124992,35.122412109375034],[-120.70703125000003,35.15766601562504],[-120.85737304687501,35.209667968749955],[-120.88486328125002,35.274951171875045],[-120.86030273437497,35.36542968749998],[-120.89960937500001,35.42509765624999],[-121.02285156249998,35.480761718750045],[-121.13793945312496,35.60712890625004],[-121.28383789062494,35.67631835937499],[-121.34384765625,35.792236328125],[-121.43374023437502,35.863867187500006],[-121.46499023437498,35.927392578124994],[-121.66435546875003,36.15405273437497],[-121.87739257812498,36.33105468749997],[-121.91015625,36.432910156250045],[-121.91865234374995,36.572363281250034],[-121.83515625,36.65747070312506],[-121.78999023437494,36.732275390625006],[-121.79453124999998,36.80097656249998],[-121.80742187499993,36.851220703124994],[-121.88066406249993,36.93891601562501],[-122.16420898437498,36.99096679687506],[-122.394921875,37.20751953125003],[-122.408447265625,37.373144531250006],[-122.49921875000001,37.542626953124994],[-122.50043945312498,37.652783203124955],[-122.51420898437496,37.77197265625],[-122.44560546875,37.797998046874966],[-122.38408203124999,37.78852539062498],[-122.39028320312502,37.741064453125006],[-122.3697265625,37.65585937500006],[-122.29760742187496,37.59184570312499],[-122.22866210937495,37.56391601562498],[-122.16601562499999,37.50166015624998],[-122.11904296875,37.482812499999966],[-122.07050781249997,37.47827148437503],[-122.09653320312495,37.518212890624994],[-122.12412109374998,37.54379882812506],[-122.15805664062496,37.62646484375003],[-122.22221679687499,37.732031250000034],[-122.29599609374999,37.79033203125002],[-122.333447265625,37.89658203124998],[-122.36547851562493,37.92119140625002],[-122.38544921875001,37.960595703124966],[-122.31425781249997,38.00732421874997],[-122.21704101562497,38.040625],[-122.08671874999999,38.04960937499999],[-121.71684570312497,38.03408203125002],[-121.6380859375,38.06127929687506],[-121.57299804687497,38.05239257812502],[-121.52534179687501,38.05590820312503],[-121.62573242187496,38.083935546874955],[-121.6822265625,38.07480468750006],[-121.74863281249993,38.08046875000005],[-121.88076171874997,38.075],[-121.9341796875,38.08681640625002],[-121.99311523437501,38.12011718750006],[-122.03149414062504,38.12353515625003],[-122.15375976562498,38.06552734375003],[-122.20830078124997,38.072558593750045],[-122.33710937500003,38.135888671874966],[-122.39335937499993,38.14482421875002],[-122.48388671875,38.108837890624955],[-122.49492187499993,37.953564453124955],[-122.46689453125,37.83818359374999],[-122.52133789062498,37.82641601562497],[-122.58417968749998,37.87407226562502],[-122.68071289062495,37.90234375],[-122.76040039062501,37.945654296875034],[-122.87294921874994,38.02607421874998],[-122.93198242187496,38.05546875000002],[-122.998779296875,37.98862304687498],[-123.00146484375,38.01928710937503],[-122.96816406249998,38.097021484375034],[-122.97758789062493,38.22734375000004],[-122.876806640625,38.12333984374999],[-122.908154296875,38.19658203124999],[-122.9865234375,38.27709960937506],[-123.04619140624996,38.30507812499996],[-123.12114257812497,38.449267578125045],[-123.28974609374995,38.53583984375001],[-123.42480468750001,38.67563476562498],[-123.70112304687498,38.90727539062502],[-123.71953124999993,39.11098632812502],[-123.82031249999993,39.36840820312497],[-123.77778320312497,39.51494140624999],[-123.78349609374999,39.61870117187499],[-123.83291015624992,39.775488281250034],[-123.88447265624998,39.86079101562501],[-124.10849609374995,40.09453125000001],[-124.32402343749997,40.25195312500003],[-124.35654296875002,40.37109374999997],[-124.37167968749999,40.49121093750003],[-124.32451171874999,40.59809570312504],[-124.28369140625003,40.71054687500003],[-124.25390625,40.74028320312496],[-124.24233398437495,40.727880859375006],[-124.25058593750005,40.70390625000002],[-124.22001953124993,40.69648437500001],[-124.20844726562495,40.74609375],[-124.19023437499997,40.77172851562497],[-124.22250976562498,40.77504882812502],[-124.21918945312493,40.790722656250004],[-124.19990234375,40.82207031250002],[-124.13310546874999,40.96977539062499],[-124.14003906249997,41.155908203124994],[-124.06850585937497,41.38417968750005],[-124.07192382812498,41.45952148437501],[-124.11767578124996,41.62172851562502],[-124.163232421875,41.71899414062503],[-124.24462890624996,41.78793945312506],[-124.20874023437493,41.88857421875005],[-124.21166992187501,41.98461914062497],[-124.35527343749996,42.122900390625],[-124.410009765625,42.30434570312502],[-124.4205078125,42.381005859374994],[-124.40615234375002,42.58369140624998],[-124.44379882812495,42.67021484375002],[-124.53964843750002,42.81289062499996],[-124.49858398437502,42.936865234375006],[-124.45444335937499,43.01235351562502],[-124.34658203124995,43.341650390625034],[-124.32060546874999,43.368212890625045],[-124.27548828124996,43.36738281249995],[-124.19692382812502,43.42333984374997],[-124.23315429687494,43.43637695312498],[-124.28798828125,43.40971679687495],[-124.23920898437504,43.54003906250006],[-124.184375,43.65156250000004],[-124.14873046874997,43.691748046875034],[-124.13066406249992,44.05566406250003],[-124.099169921875,44.33378906250002],[-124.04746093749993,44.42548828124995],[-124.06542968749997,44.52006835937504],[-124.04453124999996,44.648242187500045],[-124.05917968750002,44.77773437500005],[-123.94858398437498,45.40083007812498],[-123.9630859375,45.47607421875003],[-123.92934570312495,45.57695312499995],[-123.96123046874997,45.84296874999998],[-123.94711914062502,46.140576171874955],[-123.97524414062498,46.1783203125],[-123.989306640625,46.21938476562502],[-123.96293945312496,46.225439453125006],[-123.911669921875,46.18217773437499],[-123.67363281249999,46.1826171875],[-123.52163085937494,46.22265624999997],[-123.46635742187495,46.20942382812504],[-123.40229492187495,46.154980468749955],[-123.32158203124995,46.14399414062503],[-123.22060546874998,46.153613281250045],[-123.251318359375,46.16728515624998],[-123.29868164062499,46.17084960937498],[-123.40473632812501,46.22099609374999],[-123.46484375,46.27109374999998],[-123.65034179687495,46.26772460937502],[-123.68837890624998,46.29985351562499],[-123.89570312499993,46.26777343750001],[-123.95976562499992,46.30073242187498],[-124.07275390624996,46.279443359374994],[-124.0451171875,46.372900390625034],[-124.05019531249998,46.49052734375001],[-124.04433593750002,46.605078125],[-124.01640625000002,46.52138671874999],[-123.946142578125,46.43256835937501],[-123.91240234374997,46.533349609375044],[-123.88916015625003,46.660009765625006],[-123.95771484374998,46.708691406249955],[-124.07167968749998,46.74477539062502],[-124.11254882812497,46.862695312499994],[-123.84287109375,46.96318359375004],[-123.98603515624995,46.98447265625],[-124.04223632812496,47.0296875],[-124.11171874999997,47.03520507812496],[-124.11679687499995,47.00034179687506],[-124.13925781249999,46.9546875],[-124.16357421875,47.01533203125001],[-124.17050781249998,47.08666992187506],[-124.19882812499995,47.20854492187502],[-124.30927734374998,47.40458984374999],[-124.37602539062499,47.658642578124955],[-124.46005859374998,47.78422851562496],[-124.62109375000001,47.90415039062498],[-124.66308593749996,47.97412109375003],[-124.70166015624999,48.151660156250045],[-124.67998046874992,48.28588867187503],[-124.70996093749999,48.38037109374999],[-124.63261718749997,48.37504882812498],[-124.42905273437496,48.30078125000006],[-124.17548828125001,48.242431640624964],[-124.098779296875,48.2],[-123.97578125,48.16845703125],[-123.29443359375,48.119531249999966],[-123.24990234375001,48.124218749999955],[-123.16186523437501,48.15454101562499],[-123.12441406250004,48.15092773437498],[-123.02421874999995,48.08159179687499],[-122.97387695312497,48.07329101562495],[-122.90888671874997,48.076904296875],[-122.86088867187496,48.09003906250001],[-122.77861328124999,48.13759765625002],[-122.76752929687498,48.120019531249994],[-122.769091796875,48.07597656249999],[-122.73974609374999,48.01323242187499],[-122.67949218749999,47.93178710937502],[-122.656640625,47.88115234374999],[-122.77841796874995,47.738427734374966],[-122.80175781250001,47.73535156250006],[-122.80537109374994,47.78364257812504],[-122.82138671874999,47.79316406250001],[-123.05063476562499,47.551953124999976],[-123.13105468749997,47.437744140625],[-123.13906249999997,47.386083984375034],[-123.13632812499995,47.355810546875],[-123.10419921874998,47.34838867187499],[-123.03090820312498,47.360205078125006],[-122.92216796874993,47.40766601562498],[-122.91689453125002,47.41796875000006],[-123.01821289062495,47.40107421874998],[-123.066796875,47.39965820312506],[-123.06015624999998,47.45366210937504],[-123.04863281249996,47.479345703125034],[-122.98247070312497,47.559375],[-122.912890625,47.60737304687501],[-122.81406250000003,47.658544921875034],[-122.75712890624996,47.70053710937506],[-122.71787109374998,47.76210937499999],[-122.60815429687499,47.83549804687502],[-122.58789062499994,47.85595703125003],[-122.59267578124995,47.91640625],[-122.58574218749997,47.92788085937502],[-122.53281250000002,47.919726562500045],[-122.51079101562497,47.81572265624999],[-122.52392578124999,47.76933593750004],[-122.61840820312494,47.712792968749994],[-122.63017578124996,47.69282226562501],[-122.61362304687496,47.615625],[-122.62827148437502,47.60815429687497],[-122.66430664062499,47.61723632812496],[-122.67548828124995,47.612353515625045],[-122.58583984374998,47.52841796874998],[-122.55742187499996,47.46318359375002],[-122.55356445312498,47.40493164062496],[-122.57788085937496,47.29316406250001],[-122.60390625000002,47.27460937499998],[-122.64863281249998,47.28144531250004],[-122.70771484374993,47.31640625000006],[-122.72089843749995,47.30512695312498],[-122.76777343750003,47.218359375000055],[-122.78330078124996,47.22597656250002],[-122.81254882812497,47.328955078125034],[-122.82846679687503,47.336572265624994],[-122.91953125,47.289648437500006],[-122.95620117187494,47.24458007812498],[-122.98764648437495,47.172558593749955],[-123.027587890625,47.13891601562502],[-122.91416015624999,47.13149414062505],[-122.81196289062494,47.145996093749964],[-122.72988281250001,47.11181640625003],[-122.701953125,47.11088867187502],[-122.62705078125002,47.14423828124998],[-122.604150390625,47.1669921875],[-122.54218749999997,47.27558593749998],[-122.51108398437502,47.29501953125003],[-122.46484375000003,47.29580078125002],[-122.42011718749998,47.31210937499998],[-122.35380859374996,47.37158203125],[-122.35112304687495,47.39521484375004],[-122.37524414062499,47.52836914062498],[-122.36835937499998,47.60390625],[-122.38076171874994,47.627832031249994],[-122.41049804687496,47.65263671874999],[-122.406787109375,47.67675781249999],[-122.383642578125,47.71645507812502],[-122.38198242187502,47.75234375000005],[-122.40180664062497,47.78427734374998],[-122.39287109375002,47.820556640625],[-122.33032226562496,47.89863281250001],[-122.31845703124996,47.93305664062501],[-122.24199218750002,48.01074218750003],[-122.26127929687495,48.04204101562498],[-122.31748046875002,48.080175781250034],[-122.35297851562497,48.11381835937496],[-122.38867187499996,48.166357421875006],[-122.41582031249997,48.183935546875034],[-122.42470703125002,48.17592773437502],[-122.38662109375,48.08994140624997],[-122.39477539062496,48.08413085937505],[-122.49404296875002,48.13046875],[-122.51699218749998,48.159667968749964],[-122.52915039062496,48.19931640624998],[-122.5203125,48.229101562500006],[-122.46704101562504,48.258496093749955],[-122.40336914062492,48.269189453124994],[-122.408544921875,48.29389648437498],[-122.48842773437497,48.37431640625002],[-122.54165039062495,48.41093750000002],[-122.58256835937495,48.42866210937498],[-122.63779296875,48.43330078124995],[-122.6625,48.446386718750034],[-122.66899414062496,48.465234374999966],[-122.65727539062497,48.48999023437506],[-122.62797851562496,48.49790039062506],[-122.54267578124997,48.48798828124998],[-122.49677734374995,48.50556640625001],[-122.50107421875003,48.5375],[-122.51479492187498,48.55517578125],[-122.51274414062502,48.66943359375],[-122.54511718749994,48.762304687500006],[-122.56201171875001,48.777978515624994],[-122.58017578124999,48.77958984374999],[-122.59941406249999,48.76708984375],[-122.65302734374998,48.76386718749998],[-122.68593749999995,48.794287109375034],[-122.72246093750002,48.85302734375002],[-122.78876953125001,48.993017578125034],[-122.68637695312496,48.993017578125034],[-122.26000976562496,48.993017578125034],[-121.83359375000002,48.993017578125034],[-121.40722656249994,48.993017578125034],[-120.98085937499995,48.993017578125034],[-120.55449218749993,48.993017578125034],[-120.12807617187494,48.993017578125034],[-119.70170898437495,48.993017578125034],[-119.27534179687493,48.993066406250044],[-118.84892578124993,48.993066406250044],[-118.42255859375001,48.993066406250044],[-117.99619140625002,48.993066406250044],[-117.569775390625,48.993066406250044],[-117.143408203125,48.993066406250044],[-116.71704101562501,48.993066406250044],[-116.290625,48.993066406250044],[-115.8642578125,48.993066406250044],[-115.437890625,48.993066406250044],[-115.01152343750002,48.993066406250044],[-114.58510742187501,48.993066406250044],[-114.158740234375,48.993066406250044],[-113.73237304687501,48.993066406250044],[-113.30595703125,48.993066406250044],[-112.87958984375,48.993066406250044],[-112.45322265624999,48.993066406250044],[-112.02680664062498,48.993066406250044],[-111.60043945312498,48.993066406250044],[-111.174072265625,48.993066406250044],[-110.74765625,48.993066406250044],[-110.32128906249999,48.993066406250044],[-109.894921875,48.993066406250044],[-109.46855468749999,48.993066406250044],[-109.04213867187498,48.993115234374955],[-108.61577148437499,48.993115234374955],[-108.18940429687498,48.993115234374955],[-107.76298828124997,48.993115234374955],[-107.33662109374998,48.993115234374955],[-106.91025390624998,48.993115234374955],[-106.48383789062497,48.993115234374955],[-106.05747070312496,48.993115234374955],[-105.63110351562496,48.993115234374955],[-105.20468749999995,48.993115234374955],[-104.77832031249997,48.993115234374955],[-104.35195312499997,48.993115234374955],[-103.92558593749997,48.993115234374955],[-103.49916992187497,48.993115234374955],[-103.07280273437496,48.993115234374955],[-102.64643554687497,48.993115234374955],[-102.22001953124996,48.993115234374955],[-101.79365234374995,48.993115234374955],[-101.36728515624996,48.993115234374955],[-100.94086914062495,48.993115234374955],[-100.51450195312495,48.993115234374955],[-100.08813476562496,48.993115234374955],[-99.66171874999995,48.993115234374955],[-99.23535156249994,48.993115234374955],[-98.80898437499994,48.99316406249997],[-98.38261718749996,48.99316406249997],[-97.95620117187492,48.99316406249997],[-97.52983398437492,48.99316406249997],[-97.10346679687495,48.99316406249997],[-96.67705078124993,48.99316406249997],[-96.25068359374993,48.99316406249997],[-95.82431640625003,48.99316406249997],[-95.39790039062493,48.99316406249997],[-95.16206054687493,48.991748046875045],[-95.15825195312496,49.20307617187501],[-95.15527343749997,49.36967773437502],[-94.93935546874994,49.34941406249999],[-94.87480468749993,49.319042968750004],[-94.85434570312493,49.304589843749994],[-94.86040039062493,49.258593750000045],[-94.84257812499996,49.11918945312498],[-94.80346679687497,49.00292968749999]]],[[[179.45156250000005,51.37260742187496],[179.278125,51.37221679687496],[178.92587890625006,51.53505859375002],[178.74707031250003,51.58671875],[178.64794921875009,51.64389648437498],[178.69218750000007,51.655957031249955],[178.90800781250013,51.61557617187498],[179.08427734375,51.52768554687503],[179.18173828125012,51.469921874999976],[179.2943359375,51.42084960937501],[179.41552734374997,51.40087890625003],[179.45156250000005,51.37260742187496]]],[[[-176.28671874999998,51.79199218750006],[-176.34965820312502,51.733300781249994],[-176.39609374999998,51.75986328124997],[-176.41372070312502,51.840576171875],[-176.37856445312497,51.86113281250002],[-176.28022460937495,51.80283203125003],[-176.28671874999998,51.79199218750006]]],[[[-176.00898437499998,51.812353515625006],[-176.09335937500003,51.79047851562501],[-176.204443359375,51.83481445312498],[-176.19365234375,51.88627929687499],[-176.07163085937503,51.84331054687502],[-176.00898437499998,51.812353515625006]]],[[[-177.87905273437502,51.64970703125002],[-177.90126953125002,51.61640624999998],[-177.92534179687493,51.617382812500004],[-178.05888671875,51.67260742187497],[-178.07846679687495,51.691259765625034],[-178.000048828125,51.71748046874995],[-177.97724609375004,51.73779296875003],[-177.98637695312493,51.76425781249998],[-178.0451171875,51.80107421875002],[-178.15346679687497,51.848242187500034],[-178.19453124999998,51.882226562500044],[-178.16826171874996,51.90302734375001],[-178.11660156250002,51.91586914062506],[-177.95380859374995,51.91845703125006],[-177.865869140625,51.860400390625045],[-177.799609375,51.84003906249998],[-177.64448242187498,51.82626953125],[-177.72495117187498,51.801660156249966],[-177.77065429687497,51.77788085937502],[-177.82695312499996,51.685888671875006],[-177.87905273437502,51.64970703125002]]],[[[-177.14819335937494,51.71674804687498],[-177.177001953125,51.703710937500006],[-177.22988281250002,51.69355468749998],[-177.38237304687496,51.70483398437506],[-177.47465820312496,51.701269531250034],[-177.57758789062498,51.694189453125006],[-177.6548828125,51.67656249999999],[-177.67021484375002,51.701074218749994],[-177.66762695312502,51.72119140625],[-177.33471679687497,51.776220703125034],[-177.257275390625,51.80493164062502],[-177.209765625,51.841259765624955],[-177.16640624999997,51.90942382812499],[-177.13149414062497,51.92978515625006],[-177.11005859375,51.92875976562502],[-177.06303710937496,51.90190429687496],[-177.079541015625,51.866552734375034],[-177.12138671875002,51.835791015625],[-177.13510742187498,51.80693359374999],[-177.14819335937494,51.71674804687498]]],[[[-176.593310546875,51.86669921875],[-176.587939453125,51.83320312500001],[-176.47338867187497,51.83740234374997],[-176.43745117187504,51.82011718749999],[-176.43735351562503,51.75429687499999],[-176.45234374999995,51.735693359375034],[-176.46977539062496,51.73115234374998],[-176.510986328125,51.74560546875],[-176.55751953125,51.71206054687502],[-176.770947265625,51.62993164062498],[-176.837109375,51.675878906250006],[-176.96162109374995,51.60366210937505],[-176.87441406249997,51.79047851562501],[-176.77363281249995,51.81875],[-176.73642578125,51.839941406250034],[-176.74511718750003,51.894677734374994],[-176.69833984374998,51.986035156249955],[-176.59682617187502,51.98178710937498],[-176.54990234375003,51.94404296875001],[-176.55161132812503,51.91958007812502],[-176.593310546875,51.86669921875]]],[[[178.57548828125007,51.91625976562506],[178.51181640625006,51.89912109375001],[178.47773437500004,51.942529296874994],[178.475,51.967724609374955],[178.50937500000012,51.994677734375045],[178.57060546874996,51.9775390625],[178.60732421875,51.95302734374999],[178.57548828125007,51.91625976562506]]],[[[179.72773437500013,51.905419921874966],[179.64521484375,51.88022460937498],[179.54960937500013,51.89404296875006],[179.49765625000018,51.932812499999955],[179.50390625000003,51.97958984374998],[179.6271484375001,52.03041992187502],[179.77998046875015,51.96684570312496],[179.72773437500013,51.905419921874966]]],[[[-176.02153320312496,52.00244140625003],[-176.04506835937497,51.97299804687506],[-176.14287109375,52.00429687500005],[-176.1775390624999,52.02983398437502],[-176.184521484375,52.05605468750002],[-176.1556640625,52.09941406249995],[-176.07739257812497,52.09995117187498],[-176.03120117187495,52.08232421875004],[-175.9880859375,52.049462890624994],[-175.97529296875,52.028955078124994],[-176.02153320312496,52.00244140625003]]],[[[177.41542968749997,51.882812499999964],[177.32851562500005,51.84106445312499],[177.2606445312501,51.883691406249994],[177.25029296875013,51.902929687500006],[177.38066406250002,51.97578125000001],[177.47841796875005,51.991601562500016],[177.52050781250009,52.01821289062502],[177.56376953125002,52.110498046874994],[177.63652343750007,52.11381835937496],[177.66962890625007,52.10302734375],[177.6530273437501,52.059765624999976],[177.59599609375,51.993847656249955],[177.594140625,51.94755859375001],[177.41542968749997,51.882812499999964]]],[[[-173.5533203125,52.13627929687502],[-173.35722656250002,52.09565429687501],[-173.11328124999997,52.10039062499999],[-173.02431640624997,52.09052734375001],[-173.02290039062504,52.07915039062502],[-173.17885742187502,52.0625],[-173.23222656249993,52.067968750000034],[-173.36840820312497,52.04560546875001],[-173.46098632812502,52.04155273437499],[-173.67255859375004,52.06264648437502],[-173.83579101562498,52.048193359375006],[-173.878955078125,52.05366210937498],[-173.93022460937496,52.07216796875002],[-173.98959960937498,52.103613281250034],[-173.99248046874993,52.12333984374996],[-173.93891601562504,52.131298828124976],[-173.79409179687502,52.10429687499999],[-173.77900390624993,52.11835937500001],[-173.6568359375,52.14375],[-173.5533203125,52.13627929687502]]],[[[-172.464794921875,52.27226562500002],[-172.53911132812496,52.25747070312502],[-172.61982421874998,52.27285156250005],[-172.58217773437497,52.325634765624955],[-172.54365234375,52.35380859375001],[-172.47041015625,52.38803710937506],[-172.38310546875,52.372949218749994],[-172.31362304687497,52.32958984375006],[-172.464794921875,52.27226562500002]]],[[[-174.67739257812502,52.035009765625006],[-175.2138671875,51.99389648437506],[-175.29555664062502,52.022167968749955],[-175.21416015624996,52.03823242187502],[-175.11767578125003,52.04711914062497],[-174.91591796874997,52.09418945312498],[-174.66777343750002,52.134960937500004],[-174.47426757812497,52.18403320312498],[-174.30615234375,52.21616210937503],[-174.25883789062502,52.26904296874997],[-174.406494140625,52.29599609375006],[-174.43554687499997,52.31723632812503],[-174.36542968749995,52.341943359374994],[-174.30688476562491,52.37792968750006],[-174.168896484375,52.42016601562503],[-174.04560546875,52.36723632812499],[-174.018359375,52.33178710937497],[-174.03007812499996,52.28979492187503],[-174.05488281250004,52.245996093749994],[-174.16323242187497,52.223388671875],[-174.17939453125,52.20034179687502],[-174.1206542968749,52.13520507812498],[-174.34355468749996,52.07778320312499],[-174.67739257812502,52.035009765625006]]],[[[173.72275390625018,52.35957031250003],[173.65781250000006,52.35664062499998],[173.61621093749997,52.391259765624994],[173.40234375000009,52.40478515624999],[173.42451171875015,52.43764648437505],[173.51650390625005,52.451416015625],[173.65761718750005,52.50410156249998],[173.77607421875004,52.49511718750002],[173.7447265625,52.446630859375006],[173.72275390625018,52.35957031250003]]],[[[-170.73339843749997,52.58149414062504],[-170.79736328124994,52.549755859374955],[-170.81606445312494,52.56152343750005],[-170.82705078124997,52.60073242187505],[-170.79116210937502,52.63125],[-170.682080078125,52.69755859374996],[-170.60805664062502,52.68505859375],[-170.58461914062497,52.66757812499998],[-170.58662109375,52.642431640625006],[-170.614013671875,52.609619140625],[-170.64926757812498,52.593115234375006],[-170.69228515624997,52.59296874999998],[-170.73339843749997,52.58149414062504]]],[[[-169.691943359375,52.847363281250004],[-169.70810546875,52.80712890624999],[-169.72275390624998,52.792333984375006],[-169.87734375000002,52.81376953125002],[-169.98056640625,52.806005859375034],[-169.991845703125,52.829833984375],[-169.98256835937497,52.85102539062498],[-169.820654296875,52.883398437500006],[-169.75488281250003,52.883642578125034],[-169.71098632812493,52.86674804687499],[-169.691943359375,52.847363281250004]]],[[[172.81181640625002,53.01298828125001],[172.98398437500012,52.98027343750001],[173.1021484375001,52.99560546875003],[173.2516601562501,52.94267578124999],[173.43603515625003,52.85205078125],[173.39472656250015,52.834765625000045],[173.34824218750006,52.824853515624966],[173.30253906250002,52.825927734375],[173.15869140625003,52.81079101562503],[173.0802734375001,52.81445312499997],[172.93515625000012,52.752099609374966],[172.77558593750004,52.79692382812496],[172.72177734375006,52.88554687499999],[172.59511718750005,52.90742187500001],[172.49482421875004,52.93789062499999],[172.67792968750004,53.00756835937497],[172.81181640625002,53.01298828125001]]],[[[-167.96435546875003,53.34511718749999],[-168.270703125,53.23803710937503],[-168.3701171875,53.15976562499998],[-168.44599609375,53.08442382812501],[-168.50561523437497,53.04316406250004],[-168.54902343750004,53.03608398437501],[-168.59741210937503,53.01611328125003],[-168.69853515625002,52.963427734375045],[-168.741015625,52.956884765625034],[-169.06591796875,52.833935546874955],[-169.088916015625,52.83203125],[-169.073095703125,52.864160156249994],[-168.973876953125,52.90966796875003],[-168.90917968749994,52.95117187500003],[-168.83608398437497,53.01972656249995],[-168.79584960937504,53.04492187500003],[-168.78300781249996,53.07934570312502],[-168.777783203125,53.14877929687506],[-168.75961914062503,53.175048828125],[-168.68984375000002,53.22724609374995],[-168.63901367187498,53.255761718749994],[-168.57216796874997,53.265625],[-168.43662109374995,53.25688476562495],[-168.38041992187496,53.28344726562506],[-168.36298828124993,53.30356445312506],[-168.39726562500002,53.321923828124994],[-168.405322265625,53.35380859374999],[-168.396435546875,53.408789062500006],[-168.3572265624999,53.45756835937499],[-168.28769531249998,53.500146484374966],[-168.19306640624998,53.533300781250055],[-168.07329101562502,53.556982421875],[-167.98569335937503,53.55820312499997],[-167.82807617187493,53.50795898437505],[-167.8046875,53.48496093749998],[-167.843115234375,53.43457031250003],[-167.86513671874997,53.38730468749997],[-167.96435546875003,53.34511718749999]]],[[[-166.20976562499996,53.72329101562505],[-166.22382812499998,53.72041015624998],[-166.24941406249997,53.74516601562495],[-166.25073242187497,53.767773437499955],[-166.234375,53.78417968749999],[-166.187744140625,53.822460937499976],[-166.154541015625,53.83613281250001],[-166.11372070312504,53.84306640625002],[-166.102685546875,53.8328125],[-166.13862304687504,53.787402343750045],[-166.183740234375,53.756884765625045],[-166.20976562499996,53.72329101562505]]],[[[-166.61533203124998,53.90092773437499],[-166.57216796875,53.85346679687501],[-166.49746093749997,53.88354492187499],[-166.44277343750002,53.92480468749997],[-166.40004882812502,53.978125],[-166.37231445312494,53.99897460937498],[-166.33564453125004,53.97089843750004],[-166.23085937499997,53.93261718750006],[-166.318994140625,53.87377929687506],[-166.48876953124997,53.785498046875006],[-166.54560546875,53.726464843749966],[-166.54921875000002,53.70097656250002],[-166.384716796875,53.72050781250001],[-166.33876953124997,53.71767578125005],[-166.30947265625002,53.69750976562503],[-166.354541015625,53.67353515625004],[-166.44418945312503,53.65180664062495],[-166.522021484375,53.60966796874999],[-166.70219726562502,53.536669921875045],[-166.77041015624994,53.47602539062501],[-166.85097656249997,53.45288085937503],[-166.96074218750002,53.447363281250034],[-167.15366210937498,53.40786132812499],[-167.27080078124993,53.37060546875003],[-167.30043945312494,53.35048828125002],[-167.33725585937498,53.34096679687505],[-167.38129882812498,53.34199218749998],[-167.42880859374998,53.32568359375003],[-167.47983398437498,53.29199218749999],[-167.52246093749997,53.276220703125006],[-167.59218749999997,53.272705078125],[-167.62861328125,53.25942382812505],[-167.66943359374997,53.25996093749998],[-167.78085937500003,53.30024414062501],[-167.80878906250004,53.32377929687501],[-167.710107421875,53.37089843750002],[-167.63872070312493,53.386572265625006],[-167.53017578125002,53.39370117187505],[-167.42353515624998,53.43725585937503],[-167.20410156250003,53.49497070312498],[-167.13608398437503,53.526464843750006],[-167.092333984375,53.6359375],[-167.04243164062495,53.65458984374999],[-167.01572265625003,53.69838867187502],[-166.89414062500003,53.697119140625034],[-166.83833007812504,53.64804687499997],[-166.81875,53.64135742187506],[-166.80898437500002,53.64614257812505],[-166.80366210937495,53.68540039062503],[-166.741259765625,53.71293945312496],[-166.77724609375002,53.733154296875],[-166.889599609375,53.758593750000045],[-166.97294921875002,53.77055664062499],[-167.02724609374997,53.76914062500006],[-167.071484375,53.78339843750004],[-167.10561523437497,53.81337890624999],[-167.12114257812502,53.843115234375034],[-167.11816406250003,53.87260742187499],[-167.09047851562497,53.905664062499966],[-167.03808593749997,53.94218749999995],[-166.978076171875,53.96293945312501],[-166.84868164062502,53.977880859375034],[-166.73403320312502,54.00219726562503],[-166.67329101562498,54.00595703124998],[-166.62739257812493,53.99565429687501],[-166.61533203124998,53.90092773437499]]],[[[-165.841552734375,54.070654296875],[-165.87939453125,54.05302734374999],[-165.90986328124998,54.049169921875],[-165.93291015624996,54.05917968749998],[-166.03642578125,54.04716796875002],[-166.05664062500003,54.054345703124994],[-166.10283203124993,54.113964843749955],[-166.10581054687503,54.14482421875002],[-166.08774414062495,54.16914062500001],[-166.04125976562497,54.19125976562498],[-165.96640625000003,54.211035156250006],[-165.89287109375,54.20698242187498],[-165.764453125,54.152099609375],[-165.70424804687502,54.11992187500002],[-165.69287109375,54.09990234375002],[-165.73789062500003,54.08110351562502],[-165.841552734375,54.070654296875]]],[[[-165.56113281249998,54.136718749999964],[-165.604833984375,54.12915039062503],[-165.61538085937502,54.13955078125002],[-165.62050781249997,54.18354492187501],[-165.65415039062503,54.25332031250002],[-165.59033203125,54.278662109375034],[-165.55063476562495,54.28452148437498],[-165.5337890625,54.27387695312504],[-165.4876953124999,54.221875],[-165.441748046875,54.20800781250003],[-165.40786132812502,54.19682617187496],[-165.46757812500002,54.18090820312499],[-165.56113281249998,54.136718749999964]]],[[[-162.55439453125,54.40136718749997],[-162.64111328125,54.379541015624966],[-162.73310546875,54.40229492187498],[-162.81171875000004,54.44438476562504],[-162.82055664062497,54.49453125000005],[-162.64541015624997,54.46206054687499],[-162.60795898437496,54.44663085937506],[-162.55439453125,54.40136718749997]]],[[[-162.29814453124993,54.847021484375006],[-162.32192382812497,54.842382812500034],[-162.39077148437494,54.87299804687495],[-162.415771484375,54.89589843750002],[-162.43388671874996,54.931542968749994],[-162.29365234375,54.982861328124955],[-162.26459960937504,54.983496093750006],[-162.23837890625,54.954736328124994],[-162.23374023437498,54.93203125],[-162.27255859374998,54.86718750000003],[-162.29814453124993,54.847021484375006]]],[[[-163.476025390625,54.98071289062497],[-163.37895507812496,54.81552734374998],[-163.3369140625,54.78320312500006],[-163.27451171874998,54.76557617187501],[-163.18710937500003,54.74775390625004],[-163.13505859375,54.723291015625016],[-163.0892578125,54.68608398437498],[-163.083251953125,54.66899414062495],[-163.35810546874995,54.73569335937506],[-163.53085937499998,54.63833007812502],[-163.58300781249994,54.62568359375004],[-164.07329101562502,54.62099609375005],[-164.1712890625,54.60302734375003],[-164.234619140625,54.57133789062496],[-164.3466796875,54.48242187499997],[-164.40351562500004,54.44785156250003],[-164.46347656249998,54.427343750000034],[-164.5908203125,54.40434570312496],[-164.74379882812502,54.40747070312497],[-164.82343749999998,54.41909179687505],[-164.86616210937498,54.46137695312504],[-164.90395507812497,54.54477539062497],[-164.9037109375,54.56796875],[-164.887646484375,54.60781250000002],[-164.75146484374997,54.66293945312498],[-164.706201171875,54.69199218750003],[-164.52978515624997,54.88085937500006],[-164.47861328124998,54.906835937500006],[-164.42431640625,54.91318359374998],[-164.27368164062497,54.900048828124966],[-164.145068359375,54.95512695312499],[-163.86796875000002,55.03911132812496],[-163.80712890624997,55.04907226562503],[-163.60747070312496,55.050830078125045],[-163.55302734374996,55.03784179687497],[-163.51088867187502,55.014306640624966],[-163.476025390625,54.98071289062497]]],[[[-159.36201171875004,54.97241210937506],[-159.394482421875,54.96733398437499],[-159.42133789062493,54.978125],[-159.45849609375,55.03496093750002],[-159.46191406249997,55.05878906249998],[-159.3904296875,55.04086914062506],[-159.36318359375,54.99951171874997],[-159.36201171875004,54.97241210937506]]],[[[-159.51513671875,55.15185546875003],[-159.52041015625,55.07216796875005],[-159.53496093750002,55.05961914062496],[-159.561474609375,55.080908203125034],[-159.617724609375,55.05732421875004],[-159.64848632812496,55.074560546875006],[-159.63540039062497,55.10234375],[-159.63964843750003,55.12397460937501],[-159.59794921875,55.12568359375001],[-159.588037109375,55.16533203125002],[-159.59526367187496,55.18203125000005],[-159.57475585937496,55.21772460937503],[-159.54506835937497,55.22597656250002],[-159.51513671875,55.15185546875003]]],[[[-131.33974609375002,55.079833984375],[-131.23745117187497,54.94951171875002],[-131.23203125,54.90375976562501],[-131.32954101562498,54.887744140625045],[-131.40620117187493,54.89428710937503],[-131.44570312500002,54.909326171874994],[-131.456103515625,54.930566406249966],[-131.43134765625,54.99648437499999],[-131.48173828124996,55.03525390624998],[-131.54003906249997,55.048486328125016],[-131.592236328125,55.02568359374999],[-131.5951171875,55.090722656249994],[-131.556005859375,55.13740234375001],[-131.57783203124998,55.20083007812505],[-131.57846679687498,55.24877929687506],[-131.5654296875,55.26411132812498],[-131.51264648437498,55.26274414062495],[-131.404638671875,55.213330078125004],[-131.33974609375002,55.079833984375]]],[[[-159.87299804687495,55.128759765625034],[-159.93393554687503,55.10683593749999],[-159.953076171875,55.078955078125006],[-159.99941406249997,55.06718749999999],[-160.038427734375,55.04448242187499],[-160.169580078125,54.94169921875001],[-160.22705078124997,54.92270507812506],[-160.16357421874997,55.01044921874998],[-160.15361328125005,55.038330078124964],[-160.15239257812496,55.05688476562503],[-160.17207031249995,55.12304687499999],[-160.13374023437495,55.12016601562496],[-160.10219726562502,55.133886718750006],[-160.03876953124998,55.19252929687505],[-159.98164062499995,55.19775390625005],[-159.92045898437496,55.267529296874955],[-159.88735351562497,55.27299804687502],[-159.871044921875,55.263574218750044],[-159.89824218749996,55.221289062500034],[-159.83940429687496,55.18237304687503],[-159.85410156250003,55.144677734374966],[-159.87299804687495,55.128759765625034]]],[[[-132.86225585937504,54.894433593749966],[-132.83774414062503,54.88095703124998],[-132.81289062500002,54.89042968749996],[-132.772314453125,54.92607421875002],[-132.70063476562498,54.919042968750006],[-132.648876953125,54.90708007812498],[-132.61723632812493,54.892431640625006],[-132.63403320312497,54.84047851562499],[-132.64697265624997,54.75615234374996],[-132.67666015624997,54.726220703124994],[-132.70581054687497,54.684179687500034],[-132.80727539062502,54.709130859374966],[-132.889599609375,54.762646484374955],[-133.00893554687497,54.854833984375006],[-133.075390625,54.921337890624955],[-133.08056640625,54.94941406249998],[-133.122705078125,54.969824218750055],[-133.204638671875,55.084472656249964],[-133.25117187500007,55.17514648437506],[-133.32485351562497,55.18549804687504],[-133.41796875,55.21069335937503],[-133.45380859375,55.260351562500006],[-133.42905273437498,55.30380859374998],[-133.29658203124995,55.32573242187501],[-133.097412109375,55.213720703125006],[-133.06708984375,55.16621093750001],[-132.99575195312497,55.11059570312506],[-132.98217773437494,55.03300781249995],[-132.94599609375007,55.002587890624994],[-132.86225585937504,54.894433593749966]]],[[[-160.329296875,55.337695312500045],[-160.34331054687493,55.25878906250006],[-160.48076171875,55.308984374999966],[-160.51748046875,55.33383789062506],[-160.49291992187494,55.35234375000002],[-160.36230468749997,55.35698242187498],[-160.329296875,55.337695312500045]]],[[[-160.68491210937498,55.314794921875],[-160.6697265625,55.31425781249999],[-160.63881835937502,55.321923828125016],[-160.57397460937494,55.37827148437506],[-160.552783203125,55.380761718750016],[-160.552490234375,55.363378906250034],[-160.58315429687497,55.30761718750006],[-160.53120117187504,55.23320312499999],[-160.482666015625,55.197412109374966],[-160.48754882812503,55.18486328124999],[-160.60908203124998,55.159033203125055],[-160.70180664062497,55.17763671875002],[-160.75063476562497,55.17119140624996],[-160.79506835937497,55.14521484375001],[-160.8254882812499,55.173974609374994],[-160.84653320312498,55.31132812499999],[-160.8396484375,55.33540039062501],[-160.78920898437502,55.38310546874996],[-160.72392578124993,55.404638671875],[-160.69565429687498,55.398339843749966],[-160.67216796875,55.37939453125],[-160.66635742187503,55.35942382812502],[-160.68491210937498,55.314794921875]]],[[[-133.30507812500002,55.54375],[-133.283203125,55.515625],[-133.28168945312507,55.49785156249999],[-133.42646484374993,55.43144531249996],[-133.42910156249997,55.417724609375],[-133.46308593749993,55.376660156249976],[-133.49345703125005,55.361669921875034],[-133.54736328125,55.317236328125055],[-133.6501953125,55.26928710937505],[-133.635009765625,55.413330078125],[-133.73710937500002,55.49692382812498],[-133.634228515625,55.53925781249998],[-133.56669921875005,55.527197265625],[-133.45478515624995,55.522314453125],[-133.345556640625,55.55908203125002],[-133.30507812500002,55.54375]]],[[[-155.56601562500003,55.82119140625005],[-155.60488281249997,55.78955078125],[-155.680615234375,55.791845703125],[-155.723193359375,55.80219726562498],[-155.73735351562493,55.82978515625001],[-155.62060546874997,55.91308593750003],[-155.59394531250004,55.92431640624999],[-155.57324218749997,55.92109374999998],[-155.56391601562493,55.88666992187498],[-155.56601562500003,55.82119140625005]]],[[[-130.97915039062502,55.489160156249994],[-131.013916015625,55.37929687499999],[-131.08276367187497,55.26679687499998],[-131.187890625,55.206298828125],[-131.26186523437497,55.21977539062499],[-131.31630859374997,55.268505859374976],[-131.36684570312502,55.26582031249995],[-131.420703125,55.27587890624997],[-131.450927734375,55.31630859375005],[-131.42236328124997,55.368408203125],[-131.44755859374996,55.408789062500055],[-131.47451171875002,55.373486328124955],[-131.52182617187498,55.34106445312503],[-131.64130859375,55.298925781250055],[-131.723681640625,55.21835937499998],[-131.7625,55.16582031250001],[-131.81098632812498,55.223095703124955],[-131.8419921875,55.35869140624996],[-131.84609374999997,55.41625976562497],[-131.75947265625,55.503076171874994],[-131.64755859375003,55.585546875],[-131.62495117187504,55.831689453124966],[-131.26923828125,55.95537109375001],[-131.23618164062498,55.94897460937506],[-131.120654296875,55.85664062499998],[-130.99780273437497,55.727636718750006],[-130.96596679687497,55.669531250000055],[-130.96503906249995,55.56801757812499],[-130.97915039062502,55.489160156249994]]],[[[-133.56611328125,56.33920898437497],[-133.37661132812502,56.317773437500044],[-133.202978515625,56.31982421875003],[-133.14370117187502,56.27856445312506],[-133.1044921875,56.235107421875],[-133.08173828125,56.194189453125],[-133.07543945312494,56.155859375],[-133.08012695312502,56.12871093749999],[-133.10122070312497,56.09980468749995],[-133.096630859375,56.09003906250001],[-132.75756835937503,55.99501953125002],[-132.597607421875,55.89501953124999],[-132.5337890625,55.84248046875004],[-132.49697265624997,55.79809570312505],[-132.43017578125003,55.687011718749964],[-132.28886718750002,55.55810546875],[-132.21474609375002,55.51884765624999],[-132.17270507812498,55.48061523437502],[-132.196337890625,55.479150390624994],[-132.29589843750003,55.50747070312499],[-132.51127929687493,55.59394531250001],[-132.528857421875,55.59047851562502],[-132.54833984375006,55.543701171875],[-132.58173828125,55.50263671874998],[-132.63129882812495,55.47319335937502],[-132.5916015625,55.46435546875],[-132.41787109375,55.48291015625006],[-132.27202148437496,55.398632812500004],[-132.21528320312504,55.38354492187497],[-132.16025390625003,55.322998046874964],[-132.15839843749998,55.29980468750006],[-132.19042968749991,55.25498046874998],[-132.21489257812496,55.23676757812501],[-132.20668945312497,55.22441406249996],[-132.165966796875,55.218017578125],[-132.005078125,55.230615234374994],[-131.97641601562498,55.208593750000034],[-132.00039062499997,55.033837890625044],[-131.97758789062502,54.96948242187499],[-131.97792968750002,54.94023437499999],[-131.99658203125,54.90141601562498],[-131.99721679687502,54.868603515624955],[-131.98271484375,54.834912109375004],[-131.98085937499997,54.80483398437502],[-132.02167968750004,54.72631835937499],[-132.06474609375002,54.713134765625],[-132.134326171875,54.712548828125044],[-132.18925781249996,54.73486328124997],[-132.26630859375004,54.802343750000034],[-132.34130859374991,54.9072265625],[-132.37021484374998,54.922216796875034],[-132.46865234374997,54.937939453124955],[-132.48647460937497,54.95039062500001],[-132.54936523437496,54.952587890625004],[-132.59384765624998,54.99575195312502],[-132.5884765625,55.05234375],[-132.62695312499997,55.11005859375004],[-132.62216796874998,55.13593749999998],[-132.66533203125,55.14677734374995],[-132.70175781250003,55.13051757812502],[-132.682861328125,55.073925781249955],[-132.704150390625,55.03007812499999],[-132.78232421875,55.048486328125016],[-132.91259765625,55.18847656250003],[-133.0605957031249,55.30092773437502],[-133.11855468750002,55.32763671875003],[-133.10302734374997,55.36025390625002],[-133.03002929687503,55.37753906249998],[-132.97080078125003,55.37617187499998],[-132.95888671875002,55.39555664062501],[-133.08247070312495,55.50410156250001],[-133.07841796875005,55.534912109375],[-133.0333984375,55.589697265625034],[-133.0896484375,55.61259765625001],[-133.24375,55.595410156249955],[-133.29824218749997,55.60688476562498],[-133.34282226562496,55.65083007812498],[-133.36899414062498,55.68896484375003],[-133.50273437499996,55.695898437500006],[-133.55327148437496,55.69116210937503],[-133.64047851562498,55.74877929687503],[-133.68017578124991,55.78515625],[-133.664404296875,55.803808593750055],[-133.58408203125003,55.83652343750006],[-133.53715820312493,55.83193359375002],[-133.44697265624995,55.79702148437499],[-133.41171874999998,55.79833984375],[-133.32211914062503,55.84462890625002],[-133.30849609375,55.88647460937503],[-133.24150390624993,55.920800781249994],[-133.25214843749998,55.95708007812502],[-133.28920898437494,56.01870117187505],[-133.371240234375,56.035888671875],[-133.538623046875,55.999267578125],[-133.684228515625,55.942773437500016],[-133.74252929687498,55.96484375],[-133.75517578124996,55.99946289062504],[-133.59921874999998,56.09365234375005],[-133.530859375,56.145654296874966],[-133.54409179687497,56.17651367187505],[-133.59443359375,56.21635742187499],[-133.59863281249994,56.316259765625006],[-133.56611328125,56.33920898437497]]],[[[-132.77988281249998,56.247265624999976],[-132.83095703124997,56.24414062499997],[-132.89145507812503,56.259423828124966],[-133.03500976562498,56.34091796875006],[-133.037646484375,56.364843750000034],[-133.01708984374997,56.391992187499994],[-132.93549804687504,56.44179687499999],[-132.90205078124998,56.453759765625044],[-132.7060546875,56.44848632812503],[-132.64335937499993,56.43515624999998],[-132.62910156249995,56.411914062500045],[-132.632275390625,56.388281250000034],[-132.65283203125,56.364355468750034],[-132.65756835937498,56.33930664062498],[-132.64658203124998,56.31318359375001],[-132.66938476562498,56.28730468749998],[-132.77988281249998,56.247265624999976]]],[[[-132.11235351562493,56.109375],[-132.13295898437497,55.943261718750044],[-132.17260742187494,55.95263671875],[-132.210302734375,55.95297851562498],[-132.28730468749995,55.92939453124998],[-132.368603515625,55.939746093750045],[-132.40659179687503,55.95820312499998],[-132.42060546875004,55.97954101562498],[-132.4060546875,56.02885742187498],[-132.45117187499991,56.056347656249976],[-132.60297851562495,56.06640625],[-132.65991210937503,56.07817382812498],[-132.69135742187504,56.13007812500001],[-132.6990234375,56.19819335937501],[-132.67519531249997,56.22363281250006],[-132.59873046875,56.241650390624976],[-132.539013671875,56.32416992187501],[-132.50595703125003,56.33525390624995],[-132.379833984375,56.498779296874964],[-132.31650390624998,56.4875],[-132.20561523437505,56.38793945312505],[-132.06689453125,56.24423828124998],[-132.11235351562493,56.109375]]],[[[-154.68281249999995,56.43579101562503],[-154.75122070312494,56.41215820312502],[-154.77392578124991,56.42026367187506],[-154.7771484375,56.43989257812498],[-154.76093749999998,56.47114257812504],[-154.72934570312503,56.502148437499955],[-154.62373046875,56.56132812500002],[-154.51752929687504,56.60053710937501],[-154.46337890625003,56.59819335937499],[-154.444873046875,56.57319335937503],[-154.511181640625,56.521435546874976],[-154.68281249999995,56.43579101562503]]],[[[-154.208642578125,56.51489257812497],[-154.25781249999997,56.51269531249997],[-154.33212890625003,56.53901367187501],[-154.32221679687504,56.570605468750045],[-154.21674804687507,56.608740234375006],[-154.11040039062496,56.602929687499966],[-154.10224609375,56.58164062499997],[-154.107177734375,56.55781250000001],[-154.11596679687503,56.54389648437501],[-154.14980468749997,56.529589843750045],[-154.208642578125,56.51489257812497]]],[[[-169.755224609375,56.63505859375001],[-169.62392578125,56.615136718749966],[-169.55048828125004,56.628125],[-169.48569335937495,56.61772460937496],[-169.47431640624998,56.59404296875002],[-169.58686523437498,56.54243164062498],[-169.6326171875,56.54570312500004],[-169.76616210937502,56.60795898437501],[-169.755224609375,56.63505859375001]]],[[[-132.746875,56.525683593750045],[-132.75761718749993,56.51103515624999],[-132.884716796875,56.512451171875],[-132.93081054687497,56.52446289062495],[-132.94804687500002,56.56723632812498],[-132.93623046875,56.606835937499966],[-132.90654296875,56.63740234374998],[-132.87065429687496,56.696386718750006],[-132.84252929687497,56.79477539062506],[-132.65585937499998,56.68471679687502],[-132.59868164062496,56.6357421875],[-132.56796875000003,56.57583007812505],[-132.634228515625,56.55346679687503],[-132.71445312500003,56.54252929687502],[-132.746875,56.525683593750045]]],[[[-133.98959960937503,56.84497070312497],[-133.92480468749997,56.77568359374999],[-133.83085937500002,56.78129882812499],[-133.778125,56.728906249999966],[-133.73837890625,56.65043945312496],[-133.76728515625004,56.60009765624999],[-133.809033203125,56.61132812499999],[-133.8552734375,56.582177734374994],[-133.88359375000002,56.48549804687502],[-133.870458984375,56.38867187500003],[-133.88461914062498,56.292138671874966],[-133.93852539062502,56.19365234374999],[-133.94970703124997,56.12773437499995],[-133.97080078125003,56.10791015625003],[-133.99399414062503,56.10112304687496],[-134.02402343750003,56.11899414062506],[-134.06748046874998,56.13300781249998],[-134.12241210937498,56.07739257812502],[-134.18959960937502,56.07695312500001],[-134.245068359375,56.20327148437499],[-134.19545898437497,56.41352539062501],[-134.084375,56.456347656250045],[-134.15048828125003,56.513476562500045],[-134.290234375,56.580029296875004],[-134.278369140625,56.617089843750016],[-134.38442382812497,56.72402343750002],[-134.390625,56.74946289062498],[-134.37368164062502,56.838671875000045],[-134.27441406249997,56.918164062499976],[-134.14326171874998,56.93232421875001],[-134.05180664062496,56.898291015625006],[-134.00058593749998,56.86918945312504],[-133.98959960937503,56.84497070312497]]],[[[-133.36621093750006,57.003515625000034],[-133.29970703125,56.97216796875006],[-133.26352539062498,57.00498046874998],[-133.19599609375,57.003466796875045],[-133.07080078125,56.97426757812502],[-132.99624023437497,56.930419921874964],[-132.95415039062502,56.880273437499994],[-132.9505859375,56.85043945312503],[-132.963330078125,56.782568359375055],[-132.95400390625,56.71308593750003],[-132.95917968749998,56.67705078124996],[-132.97587890625,56.64726562500002],[-133.00410156249998,56.62373046875004],[-133.03491210937494,56.62075195312505],[-133.132373046875,56.683251953124994],[-133.243994140625,56.79584960937501],[-133.32895507812498,56.83007812499997],[-133.332421875,56.81850585937502],[-133.30908203125003,56.786230468750006],[-133.239697265625,56.725683593750006],[-133.22724609374995,56.68925781249996],[-133.178466796875,56.64482421874999],[-133.15664062499997,56.611132812500045],[-133.14423828125,56.56689453125],[-133.14472656250004,56.52822265625002],[-133.158154296875,56.495166015625045],[-133.18081054687502,56.47397460937498],[-133.212646484375,56.46459960937502],[-133.38276367187504,56.47387695312505],[-133.4841796875,56.45175781249998],[-133.602783203125,56.46411132812503],[-133.63134765624994,56.484033203124994],[-133.64926757812498,56.51679687500001],[-133.65830078125003,56.596289062500034],[-133.68818359375,56.71000976562502],[-133.68095703124993,56.797509765624994],[-133.75751953125,56.876660156249955],[-133.82304687500002,56.92436523437499],[-133.91728515624993,56.96708984374999],[-133.979443359375,57.009570312500045],[-133.96235351562498,57.04345703125],[-133.86596679687497,57.068701171875],[-133.70771484374998,57.06284179687506],[-133.36621093750006,57.003515625000034]]],[[[-153.007080078125,57.12485351562498],[-153.13422851562504,57.09257812499998],[-153.15683593750003,57.093945312499976],[-153.23540039062496,57.02861328125001],[-153.29541015625,57.00043945312504],[-153.37460937499995,57.05190429687505],[-153.35434570312503,57.131933593750006],[-153.28520507812496,57.18505859375],[-152.93544921874997,57.167333984375034],[-152.9083984375,57.152441406250006],[-152.907763671875,57.139746093750006],[-152.93344726562498,57.12924804687498],[-153.007080078125,57.12485351562498]]],[[[-170.16054687499997,57.183935546875034],[-170.264013671875,57.13676757812501],[-170.35800781249998,57.15419921875002],[-170.38588867187497,57.188574218750006],[-170.38662109375002,57.203027343750016],[-170.116162109375,57.241796875],[-170.16054687499997,57.183935546875034]]],[[[-134.96977539062496,57.35141601562503],[-134.88486328124998,57.24169921874997],[-134.82319335937504,57.156542968750045],[-134.768505859375,57.05419921874997],[-134.67685546874998,56.842285156249964],[-134.63408203124996,56.762109374999966],[-134.62070312499998,56.71831054687502],[-134.61054687499995,56.60341796874996],[-134.62431640625002,56.578710937500006],[-134.651708984375,56.55605468750002],[-134.65708007812503,56.52324218749999],[-134.631689453125,56.435644531250006],[-134.63002929687502,56.30244140625004],[-134.65400390625,56.227490234374955],[-134.68188476562503,56.216162109375034],[-134.75029296875,56.24077148437499],[-134.80644531249996,56.28125],[-134.84799804687503,56.32348632812497],[-134.95014648437495,56.45683593749996],[-134.98056640625003,56.518945312499994],[-134.98242187499997,56.56362304687505],[-134.966650390625,56.59614257812501],[-134.93320312499995,56.61635742187505],[-134.87509765625003,56.67045898437496],[-134.88344726562497,56.679052734375034],[-134.92758789062498,56.66699218750005],[-135.017822265625,56.66015625],[-135.09716796875,56.702832031249976],[-135.15903320312498,56.72539062499996],[-135.14658203125003,56.80234375],[-135.16313476562502,56.82412109374999],[-135.28481445312502,56.800341796875045],[-135.33061523437505,56.821875],[-135.340625,56.85078125000001],[-135.33837890625,56.893994140625004],[-135.31513671874995,56.93183593750001],[-135.19960937499994,57.02734375],[-135.21123046874993,57.04492187500002],[-135.26738281250002,57.04887695312496],[-135.34135742187496,57.08159179687496],[-135.37529296875,57.188427734374955],[-135.45493164062503,57.24941406250005],[-135.50195312500003,57.24384765624998],[-135.608935546875,57.07143554687502],[-135.661865234375,57.03374023437498],[-135.81230468750002,57.00952148437503],[-135.78164062499994,57.057519531250016],[-135.767724609375,57.10039062499996],[-135.82114257812503,57.23041992187498],[-135.82275390625,57.280419921874966],[-135.78710937500003,57.31728515625002],[-135.680908203125,57.33256835937502],[-135.62451171875006,57.35439453125002],[-135.58056640624997,57.389990234375],[-135.56962890624996,57.424707031249966],[-135.48730468749997,57.51650390625002],[-135.448681640625,57.534375],[-135.34628906250003,57.533105468750016],[-135.13066406249996,57.43164062500006],[-135.06523437499996,57.416699218750004],[-134.96977539062496,57.35141601562503]]],[[[-153.240625,57.850097656250036],[-153.26855468749997,57.82236328124997],[-153.29497070312502,57.82949218749999],[-153.35083007812503,57.86196289062505],[-153.46503906249998,57.909375],[-153.51708984374997,57.94189453125],[-153.52006835937496,57.955761718749976],[-153.4810546875,57.97104492187497],[-153.34697265624996,57.93281250000001],[-153.2900390625,57.89790039062502],[-153.240625,57.850097656250036]]],[[[-152.89804687499998,57.82392578125004],[-152.8908203125,57.76899414062504],[-152.850146484375,57.77568359374997],[-152.69624023437498,57.83227539062503],[-152.616015625,57.84887695312505],[-152.51157226562503,57.85146484375005],[-152.42875976562493,57.82568359375002],[-152.4119140625,57.805908203125],[-152.419140625,57.78232421874997],[-152.48540039062502,57.73442382812498],[-152.48261718749998,57.703320312499976],[-152.41147460937498,57.646093750000034],[-152.23652343750004,57.614892578124994],[-152.21528320312493,57.597705078125045],[-152.21621093749997,57.577001953125006],[-152.33666992187497,57.48222656249996],[-152.38085937499991,57.460107421874994],[-152.41220703125003,57.454785156249955],[-152.63095703125,57.471826171874966],[-152.83115234375003,57.50288085937498],[-152.91215820312502,57.508154296875006],[-152.94077148437498,57.49809570312499],[-152.99746093749997,57.468945312500004],[-152.95683593749996,57.46035156250003],[-152.78134765624998,57.453417968750045],[-152.71953125000005,57.410839843749976],[-152.69252929687502,57.37958984375001],[-152.67905273437503,57.345117187499994],[-152.71406249999998,57.330957031250044],[-152.78911132812496,57.320654296875006],[-152.87905273437502,57.32080078125003],[-152.9902832031249,57.28198242187502],[-153.051611328125,57.23764648437503],[-153.274365234375,57.22636718749996],[-153.44370117187503,57.16718749999998],[-153.50356445312494,57.13798828124998],[-153.52441406249994,57.10307617187499],[-153.58828125,57.07768554687496],[-153.732568359375,57.05234375000003],[-153.64653320312496,57.02958984375002],[-153.63305664062497,57.010351562500006],[-153.6314453125,56.98369140624998],[-153.64331054687497,56.96074218750004],[-153.75722656249997,56.858349609374955],[-153.972705078125,56.77421874999995],[-154.02734374999997,56.77797851562502],[-154.05078125,56.78847656250002],[-154.07001953125,56.804541015625006],[-154.070849609375,56.820654296875],[-153.793212890625,56.98950195312503],[-153.80419921875003,56.99780273437503],[-153.87973632812498,57.003515625000034],[-153.99936523437498,57.04995117187499],[-154.08378906249996,57.020068359375045],[-154.10297851562495,57.021240234375],[-154.08046875,57.06103515625003],[-154.025439453125,57.108496093750034],[-154.03505859374997,57.121826171875],[-154.06533203125002,57.133691406249994],[-154.13486328124998,57.14077148437502],[-154.24375,57.143017578124955],[-154.32441406250004,57.13178710937498],[-154.37680664062498,57.10703125],[-154.38110351562494,57.09653320312498],[-154.26953124999994,57.09946289062506],[-154.239208984375,57.086865234374976],[-154.20913085937502,57.06333007812506],[-154.1908203125,57.03613281250003],[-154.18432617187497,57.00532226562495],[-154.20771484374998,56.96381835937504],[-154.2609375,56.911767578124994],[-154.33896484374998,56.9208984375],[-154.49877929687494,57.03657226562504],[-154.56933593750003,57.20590820312498],[-154.70595703124997,57.33535156249996],[-154.71220703124996,57.36625976562497],[-154.67319335937498,57.44609374999995],[-154.53530273437502,57.559423828125055],[-154.38706054687503,57.590478515624994],[-154.2814453125,57.638085937499994],[-154.17934570312497,57.652441406250006],[-154.11616210937498,57.65122070312501],[-154.029833984375,57.630712890625006],[-153.99501953125,57.58730468750005],[-154.015869140625,57.56689453124997],[-154.00791015624998,57.55615234374999],[-153.94736328124998,57.530078125000024],[-153.88188476562493,57.439013671875045],[-153.805419921875,57.35820312500001],[-153.75458984375004,57.325341796874966],[-153.68769531249998,57.30512695312504],[-153.75693359374998,57.366845703124994],[-153.79780273437495,57.44326171875002],[-153.81835937499997,57.59560546874996],[-153.838134765625,57.63583984374997],[-153.79946289062494,57.64667968749998],[-153.69013671874993,57.64072265625],[-153.69316406249996,57.663427734375],[-153.80849609375002,57.71474609374999],[-153.879443359375,57.757177734375],[-153.906103515625,57.79077148437503],[-153.90444335937502,57.81987304687499],[-153.841552734375,57.86284179687496],[-153.805810546875,57.875097656250055],[-153.76899414062504,57.88037109374997],[-153.69560546875002,57.87124023437499],[-153.66264648437493,57.85781249999999],[-153.56855468749998,57.761083984375006],[-153.52446289062496,57.73100585937501],[-153.48793945312494,57.73095703124999],[-153.454052734375,57.747021484374976],[-153.42270507812503,57.779150390625055],[-153.3904296875,57.798388671874996],[-153.35712890624998,57.80468750000003],[-153.25239257812507,57.79047851562496],[-153.21748046875004,57.79575195312506],[-153.20029296875,57.82001953125003],[-153.20102539062498,57.86328125000006],[-153.17519531249997,57.87885742187504],[-153.16884765624997,57.91064453125003],[-153.22592773437495,57.957617187500006],[-153.16044921874996,57.97197265624998],[-152.94326171874994,57.936035156250036],[-152.85039062499993,57.89677734375004],[-152.89804687499998,57.82392578125004]]],[[[-135.73037109375002,58.24423828125003],[-135.5875,58.14677734374998],[-135.58627929687498,58.124414062500044],[-135.61538085937497,58.057470703125006],[-135.693115234375,58.03852539062496],[-135.67114257812503,58.01191406249995],[-135.61323242187507,57.99184570312506],[-135.572021484375,58.008544921874964],[-135.42119140625,58.102392578125],[-135.37470703125,58.12211914062501],[-135.346630859375,58.12412109374997],[-135.16284179687494,58.09584960937499],[-135.00209960937497,58.05107421875001],[-134.9546875,58.01533203125004],[-134.92797851562497,57.952783203125],[-134.97065429687495,57.817236328125006],[-135.10258789062502,57.793652343749976],[-135.16474609374998,57.79609374999996],[-135.23120117187503,57.815820312499966],[-135.33847656250003,57.76865234375003],[-135.24956054687493,57.732568359374966],[-134.97885742187503,57.724365234375],[-134.89663085937497,57.64799804687499],[-134.873095703125,57.58920898437501],[-134.93149414062498,57.48115234375001],[-135.08486328124997,57.51103515624996],[-135.22021484375,57.57363281250002],[-135.4978515625,57.662255859375044],[-135.564208984375,57.66640625],[-135.60854492187497,57.650732421875],[-135.62065429687496,57.59697265624998],[-135.617822265625,57.480371093750016],[-135.691943359375,57.41992187500005],[-135.91079101562502,57.44658203124999],[-135.9966796875,57.53486328125001],[-136.07661132812504,57.674560546874964],[-136.37822265625002,57.83999023437502],[-136.45991210937495,57.87309570312502],[-136.568603515625,57.97216796875002],[-136.52509765625,58.05058593750002],[-136.51230468749998,58.095996093750045],[-136.45439453125,58.10800781249998],[-136.36953125000002,58.14306640625003],[-136.32197265625,58.21889648437502],[-136.245703125,58.15747070312502],[-136.14375,58.098486328125006],[-136.142333984375,58.15390625],[-136.09438476562502,58.198144531249966],[-135.994384765625,58.196533203125],[-135.94741210937502,58.20581054687503],[-135.88173828124994,58.247167968750006],[-135.787060546875,58.26850585937501],[-135.73037109375002,58.24423828125003]]],[[[-134.31274414062494,58.22890625000002],[-134.319873046875,58.20410156250002],[-134.45625,58.20654296874999],[-134.59399414062497,58.243115234374976],[-134.66157226562495,58.290917968750044],[-134.64799804687496,58.312402343749966],[-134.51997070312498,58.33251953125],[-134.398876953125,58.287207031250006],[-134.31274414062494,58.22890625000002]]],[[[-134.68027343749998,58.16166992187499],[-134.42612304687498,58.13881835937496],[-134.24008789062498,58.143994140624955],[-134.07016601562498,57.994531249999966],[-133.96552734375,57.873779296874964],[-133.90410156250002,57.78920898437496],[-133.86928710937502,57.70751953125003],[-133.82275390624997,57.62866210937503],[-133.826904296875,57.61757812499999],[-133.925,57.670800781249994],[-133.99555664062498,57.778466796874994],[-134.03164062499997,57.82060546874996],[-134.06723632812503,57.83959960937502],[-134.10473632812506,57.87934570312504],[-134.1775390624999,57.98217773437503],[-134.18027343749998,58.01113281249996],[-134.21259765624998,58.037939453125006],[-134.24995117187504,58.049169921875006],[-134.29233398437498,58.044726562500074],[-134.30688476562497,58.034375],[-134.30039062500003,57.96342773437502],[-134.26708984375,57.88452148437503],[-134.08369140625,57.712255859375006],[-133.9611328125,57.614160156250016],[-133.93701171874997,57.581591796875045],[-133.92084960937495,57.49199218749998],[-133.97373046874998,57.45136718749998],[-133.90883789062502,57.368701171875024],[-133.91113281250003,57.35253906249999],[-133.92529296875,57.336767578124984],[-134.10004882812495,57.30009765624999],[-134.26015625,57.14677734375002],[-134.43530273437497,57.056982421875006],[-134.51601562499994,57.042578125],[-134.55478515624998,57.057568359374955],[-134.59150390625,57.09199218750004],[-134.6130859374999,57.137939453124964],[-134.61953125000002,57.19550781249998],[-134.57587890625,57.23173828124998],[-134.489208984375,57.42016601562503],[-134.48676757812495,57.48203125],[-134.59482421874998,57.56782226562498],[-134.65986328124995,57.638085937499994],[-134.69511718749996,57.73603515624998],[-134.7541015625,57.99501953124996],[-134.78149414062497,58.07783203124998],[-134.82011718749993,58.146875],[-134.86997070312498,58.20209960937498],[-134.907666015625,58.262792968750006],[-134.93310546874991,58.328955078124984],[-134.92348632812497,58.354638671874966],[-134.836962890625,58.32016601562503],[-134.73320312499996,58.225],[-134.68027343749998,58.16166992187499]]],[[[-152.416943359375,58.360205078125034],[-152.38076171875002,58.35209960937508],[-152.34301757812497,58.41162109375003],[-152.31625976562503,58.41347656249997],[-152.19794921874998,58.36308593749998],[-152.125244140625,58.374267578124964],[-152.078515625,58.31235351562506],[-152.03662109375,58.306689453125045],[-151.99775390624995,58.314208984375],[-151.974365234375,58.30986328124999],[-151.98251953124998,58.24433593749995],[-152.06889648437496,58.177929687500004],[-152.10908203125,58.16113281249997],[-152.16547851562504,58.17827148437502],[-152.18652343749994,58.18466796874997],[-152.22358398437495,58.214013671874994],[-152.25166015625,58.251123046875016],[-152.26835937499993,58.25170898437506],[-152.334375,58.208056640625045],[-152.332666015625,58.1865234375],[-152.305224609375,58.15405273437505],[-152.30922851562502,58.133886718750034],[-152.38115234375,58.12426757812502],[-152.45161132812498,58.12924804687506],[-152.537646484375,58.100976562499966],[-152.55820312500003,58.118603515625004],[-152.57133789062493,58.168212890625],[-152.59824218749998,58.16259765625],[-152.63876953125,58.10180664062497],[-152.68305664062495,58.063330078125034],[-152.7638671875,58.031396484375016],[-152.78154296874996,58.015917968750074],[-152.84072265625,58.013818359374994],[-152.92841796875004,57.99370117187498],[-152.98256835937497,57.99707031250003],[-153.30546875000005,58.06308593749998],[-153.38134765625003,58.08720703125002],[-153.11582031250003,58.23852539062502],[-152.976123046875,58.297021484375044],[-152.89536132812498,58.29384765625002],[-152.81455078125003,58.27563476562503],[-152.771875,58.27856445312499],[-152.76870117187502,58.345605468749994],[-152.84394531249995,58.39560546875006],[-152.84111328125002,58.41640625000002],[-152.67465820312503,58.450585937499966],[-152.61230468750003,58.445703125000044],[-152.54355468749998,58.42817382812501],[-152.478466796875,58.39970703124998],[-152.416943359375,58.360205078125034]]],[[[-152.48608398437497,58.485009765624966],[-152.51552734375002,58.47861328125],[-152.588623046875,58.50922851562501],[-152.63662109375002,58.54169921874998],[-152.60488281250002,58.56640625000003],[-152.46318359375002,58.61850585937498],[-152.3955078125,58.619384765625],[-152.367919921875,58.611083984374964],[-152.35683593750002,58.59497070312499],[-152.36225585937498,58.570849609375045],[-152.392822265625,58.54086914062498],[-152.48608398437497,58.485009765624966]]],[[[-160.918994140625,58.577099609374976],[-160.99238281249998,58.56103515624999],[-161.07026367187498,58.56914062500004],[-161.13149414062502,58.66821289062499],[-161.08457031249998,58.671289062499994],[-160.98623046875002,58.736425781250034],[-160.768603515625,58.78920898437502],[-160.71513671875005,58.79521484375001],[-160.918994140625,58.577099609374976]]],[[[-144.565625,59.81840820312501],[-144.61357421875002,59.81264648437499],[-144.54155273437496,59.87822265625001],[-144.44492187500003,59.95068359375006],[-144.35395507812493,59.996191406250006],[-144.23574218749997,60.01518554687504],[-144.24897460937498,59.98212890624998],[-144.40322265624997,59.921093749999976],[-144.565625,59.81840820312501]]],[[[-148.02177734375,60.06533203125005],[-148.074169921875,60.03471679687501],[-148.271875,60.05327148437499],[-148.23066406249998,60.11352539062499],[-148.07958984375003,60.15166015625005],[-147.91420898437502,60.092333984375045],[-148.02177734375,60.06533203125005]]],[[[-147.735888671875,59.81323242187503],[-147.84633789062502,59.79882812500003],[-147.87246093750002,59.828369140625],[-147.81435546875,59.90195312499997],[-147.76806640625,59.94375],[-147.733642578125,59.95361328125002],[-147.60668945312497,60.036621093749964],[-147.46582031249994,60.097021484375006],[-147.33652343749998,60.18535156249998],[-147.20522460937497,60.31132812500007],[-147.180859375,60.35825195312503],[-147.12001953125002,60.36308593750004],[-147.01987304687498,60.33222656249998],[-146.95786132812503,60.28886718750002],[-146.98671874999997,60.25434570312502],[-147.31845703124998,60.075292968750034],[-147.34633789062497,60.05195312499999],[-147.376513671875,59.99116210937503],[-147.40380859375003,59.96997070312497],[-147.44755859375,59.96025390625004],[-147.47939453124997,59.93369140625006],[-147.49931640624993,59.890185546875074],[-147.540234375,59.86752929687497],[-147.60205078124997,59.86557617187503],[-147.64492187500002,59.85361328124998],[-147.66875,59.83154296875003],[-147.735888671875,59.81323242187503]]],[[[-166.13544921875,60.38354492187502],[-166.04365234374995,60.333935546874955],[-165.994921875,60.331152343750034],[-165.84091796874998,60.34624023437499],[-165.78447265625002,60.33559570312506],[-165.72968750000004,60.31420898437503],[-165.69580078124997,60.28154296875004],[-165.68935546875,60.22412109374997],[-165.71440429687493,60.1728515625],[-165.70693359375002,60.10058593750003],[-165.71235351562498,60.06933593749997],[-165.63056640624998,60.028369140625074],[-165.60502929687496,59.972802734375016],[-165.591796875,59.913134765625045],[-165.76928710937503,59.893212890624966],[-165.946728515625,59.89003906250005],[-166.09985351562494,59.84960937499998],[-166.13120117187503,59.819775390625004],[-166.10668945312503,59.77543945312504],[-166.14873046874996,59.764111328124955],[-166.187548828125,59.77382812499999],[-166.26162109374994,59.814892578125004],[-166.34296875,59.834423828124976],[-166.62763671875,59.86464843750002],[-166.98505859375,59.98388671874997],[-167.13886718749998,60.00854492187502],[-167.2951171875,60.09570312500003],[-167.43642578125002,60.20664062500006],[-167.34433593749998,60.224462890625034],[-167.25170898437494,60.233544921875016],[-166.836328125,60.21699218750004],[-166.784375,60.296435546875045],[-166.73095703125,60.316259765625006],[-166.59897460937503,60.33876953124996],[-166.47568359374998,60.382763671874955],[-166.42036132812495,60.381689453125006],[-166.3638671875,60.36474609375003],[-166.24697265625,60.39116210937498],[-166.18496093749997,60.396777343750074],[-166.13544921875,60.38354492187502]]],[[[-145.11850585937503,60.33710937499998],[-145.15048828124998,60.312646484374994],[-145.23764648437495,60.321337890625074],[-145.28427734374998,60.33681640625002],[-145.128125,60.40112304687497],[-145.10244140624997,60.38823242187502],[-145.11850585937503,60.33710937499998]]],[[[-146.3939453125,60.449658203125004],[-146.37167968749998,60.42216796874998],[-146.179541015625,60.42875976562502],[-146.12426757812503,60.423925781250006],[-146.10224609374998,60.41118164062499],[-146.12827148437498,60.392529296875004],[-146.20239257812494,60.36801757812498],[-146.419189453125,60.32504882812503],[-146.59531249999998,60.26845703125005],[-146.61831054687497,60.27368164062502],[-146.65043945312502,60.335644531249955],[-146.6830078125,60.36069335937501],[-146.70288085937494,60.395605468750006],[-146.70253906249997,60.40854492187497],[-146.67026367187498,60.43261718749999],[-146.605908203125,60.467822265625074],[-146.56030273437494,60.48056640625],[-146.3939453125,60.449658203125004]]],[[[-147.658251953125,60.45048828124999],[-147.65869140625,60.424121093750045],[-147.69003906249998,60.398876953124955],[-147.6599609375,60.352490234375004],[-147.71201171875003,60.27275390625001],[-147.73212890625004,60.22207031249999],[-147.75991210937502,60.19023437499998],[-147.787841796875,60.17792968749998],[-147.81582031250002,60.185156250000034],[-147.82167968749994,60.20273437499997],[-147.80527343750003,60.23066406249998],[-147.87133789062497,60.229785156250074],[-147.89145507812495,60.299414062500034],[-147.8548828125,60.32143554687499],[-147.84169921874997,60.35126953125003],[-147.83759765625,60.37128906250004],[-147.79453124999998,60.459863281250044],[-147.779150390625,60.46606445312497],[-147.774169921875,60.44497070312502],[-147.76020507812498,60.43876953125002],[-147.73730468750003,60.44741210937499],[-147.70297851562498,60.48681640625003],[-147.68857421875003,60.49140624999998],[-147.658251953125,60.45048828124999]]],[[[-152.02075195312491,60.361718750000016],[-152.06904296875,60.35805664062499],[-152.00449218750003,60.407421875],[-151.95971679687494,60.50375976562501],[-151.8994140625,60.49038085937505],[-151.88730468750003,60.47270507812498],[-151.98691406249998,60.37397460937495],[-152.02075195312491,60.361718750000016]]],[[[-172.74223632812496,60.45737304687497],[-172.52607421874998,60.39174804687502],[-172.3875,60.39848632812507],[-172.27753906249995,60.343652343749994],[-172.23208007812494,60.29912109375008],[-172.39716796875,60.33110351562502],[-172.63574218750003,60.328857421875],[-172.95839843749994,60.46279296875002],[-173.07402343749996,60.49321289062498],[-173.04765625000002,60.56831054687501],[-172.92387695312502,60.606835937499966],[-172.860205078125,60.50566406250004],[-172.74223632812496,60.45737304687497]]],[[[-147.930712890625,60.82617187499997],[-148.05742187499996,60.81791992187507],[-148.11542968749995,60.830615234374996],[-148.12377929687497,60.84433593750003],[-148.09970703124998,60.89482421875002],[-148.10166015625,60.91611328125],[-148.03774414062497,60.92412109375004],[-147.96440429687502,60.90014648437502],[-147.94311523437503,60.875390624999966],[-147.930712890625,60.82617187499997]]],[[[-171.46303710937494,63.640039062499994],[-171.44785156249998,63.615673828125004],[-171.34335937499998,63.61962890625003],[-171.196923828125,63.609130859375],[-171.03486328125,63.58549804687498],[-170.87460937499995,63.59399414062502],[-170.672509765625,63.668847656250016],[-170.55185546875003,63.6884765625],[-170.430419921875,63.69882812499997],[-170.29936523437502,63.680615234375004],[-170.17128906249994,63.64091796875002],[-170.121826171875,63.617529296875034],[-170.08242187499994,63.57666015624998],[-170.05629882812494,63.527197265625006],[-170.0173828124999,63.49174804687498],[-169.77744140625,63.44799804687506],[-169.62412109375003,63.430566406249966],[-169.58720703125,63.40659179687506],[-169.55454101562498,63.373486328124955],[-169.42758789062498,63.34833984374998],[-169.29506835937497,63.357519531250006],[-169.22109375,63.348583984374955],[-168.99604492187498,63.347314453124966],[-168.71601562500004,63.310595703125045],[-168.76132812500003,63.21376953125002],[-168.85239257812503,63.17124023437498],[-169.109033203125,63.184912109375006],[-169.36469726562498,63.17114257812506],[-169.47084960937497,63.12128906250001],[-169.55927734374995,63.058203125000034],[-169.5712890625,62.99677734374995],[-169.62285156249993,62.96855468749999],[-169.67636718750003,62.956103515625024],[-169.71982421874998,62.990087890625],[-169.77778320312498,63.09375],[-169.81860351562494,63.122363281250045],[-169.86342773437502,63.140380859375],[-169.9884765625,63.173144531250024],[-170.11538085937502,63.19384765625005],[-170.18959960937497,63.19633789062502],[-170.243115234375,63.23227539062497],[-170.272705078125,63.284277343750006],[-170.32353515624996,63.31113281250006],[-170.42416992187503,63.34926757812499],[-170.52709960937494,63.37929687499999],[-170.84838867187494,63.44438476562502],[-170.95405273437498,63.45292968749998],[-171.06123046874998,63.44589843749997],[-171.176025390625,63.416210937499955],[-171.2873046875,63.372167968750055],[-171.40117187499996,63.33925781250002],[-171.519140625,63.331982421874955],[-171.63183593749997,63.35122070312496],[-171.73784179687496,63.39423828125001],[-171.79096679687495,63.42470703125002],[-171.819384765625,63.47724609374995],[-171.8179199218749,63.52983398437501],[-171.80351562499993,63.580517578124955],[-171.74638671874993,63.703076171874955],[-171.646484375,63.727001953124955],[-171.46303710937494,63.640039062499994]]],[[[-166.10986328124994,66.22744140625],[-166.14863281250004,66.221826171875],[-166.14648437499994,66.237158203125],[-166.03251953125002,66.27773437500002],[-165.82221679687498,66.32807617187498],[-165.82988281250002,66.31713867187497],[-165.94228515625002,66.27817382812503],[-166.10986328124994,66.22744140625]]],[[[-155.97353515625002,70.84199218749995],[-155.87221679687497,70.83466796874998],[-155.708056640625,70.85727539062505],[-155.57939453125002,70.89433593750005],[-155.31337890625,71.01499023437503],[-155.229736328125,71.08222656249995],[-155.16684570312498,71.09921875000006],[-154.943798828125,71.08305664062505],[-154.81752929687497,71.04848632812502],[-154.67368164062498,70.98710937500005],[-154.72631835937503,70.92778320312505],[-154.78520507812493,70.89428710937506],[-154.59863281249994,70.84799804687503],[-154.39218749999995,70.83833007812501],[-154.19521484375002,70.80112304687498],[-153.918212890625,70.87734374999997],[-153.70136718750004,70.89360351562499],[-153.49770507812502,70.89106445312501],[-153.23291015625,70.93256835937504],[-152.78491210937503,70.87602539062505],[-152.67084960937495,70.89072265625003],[-152.49121093749994,70.88095703125],[-152.30039062499998,70.84677734375006],[-152.23291015625,70.81035156249999],[-152.437255859375,70.733251953125],[-152.47060546875002,70.65361328125005],[-152.39921874999993,70.62045898437503],[-152.26967773437497,70.61474609375003],[-152.253369140625,70.56826171874997],[-152.17294921874998,70.556640625],[-151.76904296875,70.56015625],[-151.79990234374998,70.53803710937504],[-151.81962890625002,70.511328125],[-151.94467773437498,70.45209960937501],[-151.22480468749998,70.41875],[-151.12802734374995,70.45161132812501],[-150.979052734375,70.464697265625],[-150.66264648437502,70.509912109375],[-150.543505859375,70.49013671875005],[-150.40322265625002,70.44389648437505],[-150.2736328125,70.43432617187506],[-150.15249023437502,70.443701171875],[-149.87011718750006,70.50966796875002],[-149.54404296875003,70.51289062499997],[-149.41059570312504,70.49140624999995],[-149.26943359374997,70.50078124999999],[-148.84477539062496,70.42519531249997],[-148.68837890624994,70.41630859375002],[-148.47919921875,70.31791992187505],[-148.37114257812502,70.31499023437507],[-148.24877929687494,70.35673828125005],[-148.142724609375,70.35546874999997],[-148.03906250000006,70.31547851562499],[-147.86953124999994,70.30327148437499],[-147.79057617187493,70.24013671875],[-147.70537109375,70.21723632812495],[-147.06293945312504,70.17041015625],[-146.744873046875,70.191748046875],[-146.28125,70.1861328125],[-146.05766601562496,70.15625],[-145.82314453124997,70.16005859375001],[-145.440087890625,70.050927734375],[-145.23681640624997,70.033935546875],[-145.19736328125003,70.00869140625002],[-144.619189453125,69.98212890625001],[-144.41689453125002,70.03901367187498],[-144.06411132812497,70.05410156250002],[-143.74643554687503,70.10195312500002],[-143.56640625,70.10146484374998],[-143.35703124999998,70.08955078124998],[-143.27646484375003,70.09531249999998],[-143.218310546875,70.11625976562499],[-142.70786132812495,70.03378906249998],[-142.42211914062494,69.93950195312505],[-142.29697265625003,69.86987304687497],[-141.69921875000003,69.77036132812503],[-141.52636718749997,69.71469726562498],[-141.40791015625,69.653369140625],[-141.338623046875,69.64677734375002],[-141.28964843749998,69.66469726562501],[-141.080810546875,69.659423828125],[-141.00214843750004,69.65078125000002],[-141.00214843750004,69.35859375000001],[-141.00214843750004,69.06635742187498],[-141.00214843750004,68.77416992187504],[-141.00214843750004,68.48198242187502],[-141.00214843750004,68.18974609374999],[-141.00214843750004,67.89755859374998],[-141.00214843750004,67.60537109374997],[-141.00214843750004,67.31313476562502],[-141.00214843750004,67.02094726562501],[-141.00214843750004,66.72875976562496],[-141.00214843750004,66.43652343750006],[-141.00214843750004,66.14433593750002],[-141.00214843750004,65.8521484375],[-141.00214843750004,65.55991210937498],[-141.00214843750004,65.26772460937497],[-141.00214843750004,64.97553710937504],[-141.00214843750004,64.68330078125],[-141.00214843750004,64.39111328124997],[-141.00214843750004,64.09887695312506],[-141.00214843750004,63.80668945312501],[-141.00214843750004,63.51445312499999],[-141.00214843750004,63.22226562499997],[-141.00214843750004,62.930078124999966],[-141.00214843750004,62.63789062500003],[-141.00214843750004,62.345703125],[-141.00214843750004,62.05346679687497],[-141.00214843750004,61.76127929687504],[-141.00214843750004,61.46904296875002],[-141.00214843750004,61.17685546875],[-141.00214843750004,60.884667968749994],[-141.00214843750004,60.59243164062496],[-141.00214843750004,60.30024414062504],[-140.76274414062505,60.259130859375006],[-140.525439453125,60.218359375000034],[-140.45283203125004,60.299707031250016],[-140.19692382812497,60.2375],[-139.97329101562497,60.183154296875074],[-139.83066406250003,60.252880859374976],[-139.67631835937505,60.328320312499976],[-139.46796875000004,60.33369140625001],[-139.23476562499997,60.33974609374999],[-139.07924804687497,60.34370117187501],[-139.07924804687497,60.27944335937497],[-139.136962890625,60.17270507812498],[-139.18515624999998,60.083593750000034],[-139.04345703124997,59.993261718750006],[-138.86875,59.945751953125004],[-138.70546874999997,59.90131835937504],[-138.63227539062504,59.77827148437501],[-138.45361328124997,59.683398437500045],[-138.317626953125,59.611132812500074],[-138.187451171875,59.541943359375004],[-138.00112304687497,59.44291992187499],[-137.870556640625,59.37358398437498],[-137.696630859375,59.28115234374999],[-137.59331054687493,59.226269531249976],[-137.54370117187494,59.11943359374999],[-137.48417968749996,58.99121093749997],[-137.52089843750002,58.91538085937497],[-137.43857421875003,58.903125],[-137.2775390625,58.98818359374999],[-137.126220703125,59.040966796874976],[-136.93930664062503,59.10610351562502],[-136.81328125000002,59.15004882812499],[-136.57875976562502,59.15224609375002],[-136.466748046875,59.27993164062499],[-136.46635742187493,59.459082031250006],[-136.34785156249995,59.45605468749999],[-136.27797851562502,59.480322265625055],[-136.24711914062496,59.532910156250004],[-136.321826171875,59.60483398437503],[-136.09716796874991,59.63837890625001],[-135.93466796874998,59.66264648437499],[-135.70258789062504,59.72875976562506],[-135.47592773437498,59.793261718750045],[-135.36787109374998,59.743310546874994],[-135.26079101562502,59.695019531250004],[-135.05102539062497,59.57866210937501],[-135.036669921875,59.550683593749994],[-135.05083007812493,59.496044921874976],[-135.07128906249994,59.44145507812504],[-134.94375,59.28828125],[-134.9072265625,59.271191406249976],[-134.80239257812497,59.25],[-134.67724609374997,59.19926757812499],[-134.62197265624997,59.15532226562501],[-134.44077148437503,59.085351562499966],[-134.410205078125,59.05625],[-134.39306640625,59.00917968749999],[-134.363525390625,58.96875],[-134.32963867187505,58.939697265625064],[-134.29697265625003,58.89848632812502],[-134.21850585937503,58.849902343750045],[-134.06918945312498,58.79550781249997],[-133.96572265624997,58.75786132812504],[-133.82075195312498,58.70502929687503],[-133.67392578125003,58.59716796875],[-133.54638671874994,58.50346679687499],[-133.40112304687494,58.410888671874964],[-133.42255859374995,58.337060546875016],[-133.27529296875,58.22285156250004],[-133.12041015624996,58.07773437500004],[-133.00141601562495,57.948974609375],[-132.91684570312498,57.87700195312501],[-132.81552734375003,57.77270507812497],[-132.69150390624998,57.6451171875],[-132.55048828125,57.49990234374999],[-132.44248046874998,57.40673828125003],[-132.30166015624997,57.27631835937501],[-132.232177734375,57.19853515624999],[-132.27939453124995,57.14536132812497],[-132.33798828124998,57.07944335937506],[-132.15703125,57.048193359375006],[-132.03154296875,57.02656250000004],[-132.062890625,56.95336914062503],[-132.104296875,56.856787109375006],[-131.9625,56.81870117187506],[-131.86616210937495,56.792822265625],[-131.885986328125,56.74213867187498],[-131.83310546874998,56.68481445312502],[-131.82426757812496,56.589990234374994],[-131.65151367187502,56.59609375],[-131.57509765625002,56.59882812500001],[-131.471875,56.556738281250055],[-131.335791015625,56.50122070312502],[-131.1994140625,56.44921875],[-131.08291015625002,56.40483398437502],[-130.930224609375,56.37861328125001],[-130.74169921875006,56.34082031250003],[-130.649072265625,56.26367187500003],[-130.47709960937496,56.230566406250034],[-130.413134765625,56.12250976562498],[-130.21469726562498,56.0828125],[-130.09785156249995,56.10927734375002],[-130.05595703124996,56.06523437500002],[-130.02290039062495,56.014501953125],[-130.01406249999997,55.950537109375006],[-130.02509765624995,55.88823242187502],[-130.07465820312504,55.83603515625006],[-130.111962890625,55.77978515625005],[-130.13706054687498,55.719384765624994],[-130.14653320312502,55.654492187500004],[-130.14042968750002,55.58500976562499],[-130.12041015624993,55.52441406249997],[-130.05947265624997,55.412304687499955],[-130.0392578125,55.343603515625006],[-130.036572265625,55.29790039062501],[-130.171826171875,55.13701171875002],[-130.218505859375,55.06025390625001],[-130.2140625,55.02587890625003],[-130.312548828125,54.945947265624994],[-130.49326171874998,54.834179687499955],[-130.57534179687497,54.769677734374966],[-130.61582031249998,54.790917968750016],[-130.849609375,54.80761718750006],[-130.934619140625,54.95039062500001],[-130.9796875,55.061181640625016],[-131.04785156249997,55.15766601562495],[-131.0458984375,55.179589843749994],[-130.983935546875,55.243945312500045],[-130.75039062500002,55.296972656250006],[-130.74819335937502,55.318017578125016],[-130.83505859374998,55.33208007812496],[-130.85595703124994,55.35512695312505],[-130.87978515625002,55.45952148437498],[-130.87338867187503,55.551123046875006],[-130.879638671875,55.61181640625003],[-130.9185546875,55.735986328124994],[-130.977001953125,55.81196289062504],[-131.127685546875,55.96015625000001],[-131.140380859375,55.997509765624976],[-131.0740234375,56.044384765624955],[-131.032763671875,56.08808593749998],[-131.28759765624994,56.01210937500005],[-131.63525390625,55.932226562500006],[-131.78417968749997,55.87656250000003],[-131.81547851562493,55.854199218750004],[-131.826171875,55.835351562499994],[-131.799072265625,55.78281250000003],[-131.80327148437493,55.76596679687497],[-131.83359374999998,55.73491210937496],[-131.86943359375002,55.64716796875004],[-131.94501953125007,55.55415039062501],[-131.98339843749994,55.535009765625],[-132.11899414062498,55.56977539062498],[-132.15541992187502,55.59956054687501],[-132.22343750000002,55.72104492187498],[-132.20751953124994,55.75341796874999],[-132.157958984375,55.78066406250005],[-132.09067382812498,55.839550781249955],[-132.00571289062498,55.930078125000016],[-131.84384765625003,56.16010742187498],[-131.738037109375,56.16123046875003],[-131.55136718749998,56.206787109375],[-131.84423828125,56.22963867187502],[-131.88789062500004,56.241650390624976],[-131.927294921875,56.27299804687498],[-131.96230468750002,56.32368164062501],[-132.021923828125,56.380078124999955],[-132.133251953125,56.399853515624976],[-132.18203125000002,56.42065429687506],[-132.25556640624995,56.489111328125055],[-132.30498046875,56.519873046875006],[-132.33203125000003,56.557910156250045],[-132.33666992187497,56.603125],[-132.357666015625,56.62587890625002],[-132.434423828125,56.634130859375006],[-132.47592773437503,56.64965820312497],[-132.487109375,56.76640625],[-132.63950195312495,56.796435546875045],[-132.701953125,56.822265624999964],[-132.80219726562495,56.895166015624994],[-132.82988281250002,56.930615234375004],[-132.83881835937495,56.960205078125],[-132.81425781249993,57.040722656249976],[-132.82460937500002,57.05581054687505],[-132.91342773437498,57.047460937500034],[-133.465869140625,57.17216796875002],[-133.43666992187502,57.33686523437501],[-133.53896484374997,57.554150390624955],[-133.64873046874993,57.64228515624998],[-133.62695312499994,57.67651367187503],[-133.60336914062503,57.69467773437498],[-133.55419921874997,57.69506835937497],[-133.342333984375,57.631103515625],[-133.14282226562497,57.55512695312498],[-133.11704101562498,57.56621093750001],[-133.4357421875,57.72705078125],[-133.51547851562498,57.77514648437503],[-133.535205078125,57.83295898437501],[-133.53642578125,57.863867187500006],[-133.51113281249994,57.88012695312503],[-133.21206054687497,57.865673828125004],[-133.1943359375,57.87768554687506],[-133.49741210937503,57.924658203125034],[-133.559375,57.924462890624994],[-133.62573242187497,57.85698242187502],[-133.657275390625,57.841015624999955],[-133.72231445312502,57.84423828125],[-133.74414062500003,57.854589843750055],[-133.82138671875003,57.936376953125034],[-133.894482421875,57.99326171874998],[-134.03110351562498,58.072167968749966],[-134.05673828125003,58.128369140624955],[-134.063330078125,58.211083984375016],[-134.045263671875,58.289257812499955],[-133.933642578125,58.467871093750034],[-133.888525390625,58.49873046875001],[-133.87675781249996,58.51816406249998],[-133.91113281250003,58.515234375],[-133.94384765625003,58.49829101562499],[-134.0361328125,58.41533203124999],[-134.131201171875,58.27934570312499],[-134.20883789062503,58.23295898437504],[-134.2576171875,58.24418945312501],[-134.33144531249994,58.299609375000045],[-134.48544921874998,58.36718750000003],[-134.66362304687493,58.38471679687495],[-134.77612304687506,58.45385742187503],[-134.94252929687502,58.646289062500045],[-134.964794921875,58.74218750000006],[-134.98613281250002,58.765625],[-135.07646484374993,58.796777343749966],[-135.13183593750003,58.842871093750034],[-135.21738281249998,59.07661132812495],[-135.33032226562497,59.23906250000001],[-135.358447265625,59.324902343750004],[-135.34892578125005,59.41005859375005],[-135.36367187500002,59.41943359374999],[-135.4025390625,59.353076171875074],[-135.41274414062497,59.318457031250034],[-135.48408203125,59.30869140625],[-135.416943359375,59.24150390624999],[-135.400146484375,59.20791015624999],[-135.43374023437497,59.21069335937503],[-135.50234375000002,59.20229492187499],[-135.38613281249997,59.087548828124966],[-135.33408203125003,58.90961914062495],[-135.25703125000004,58.77773437499999],[-135.207080078125,58.67089843749999],[-135.18457031250003,58.589746093749994],[-135.15190429687493,58.51220703125],[-135.06201171875,58.34086914062499],[-135.04970703125,58.30678710937499],[-135.06049804687495,58.27890624999998],[-135.090234375,58.245849609375],[-135.14155273437495,58.23339843750006],[-135.30253906249996,58.255908203125024],[-135.36313476562498,58.29829101562504],[-135.44995117187497,58.376123046874994],[-135.57177734374994,58.41206054687503],[-135.87343749999997,58.394238281249955],[-135.89755859374998,58.40019531250002],[-135.89633789062498,58.463818359375004],[-135.86171874999997,58.57705078124996],[-135.88955078125002,58.622705078125044],[-136.0455078125,58.78911132812502],[-136.04311523437494,58.82163085937497],[-135.82636718750004,58.89794921874997],[-135.931689453125,58.903759765625004],[-136.0166015625,58.873974609374976],[-136.049365234375,58.893212890624994],[-136.10063476562496,58.999853515625055],[-136.13369140625002,59.03955078124997],[-136.150048828125,59.04809570312502],[-136.15947265624996,58.94677734374997],[-136.12353515625,58.89345703125005],[-136.11840820312503,58.862597656250074],[-136.12416992187497,58.819628906250024],[-136.14682617187503,58.78881835937506],[-136.186328125,58.77016601562496],[-136.22583007812497,58.765478515625],[-136.29902343749995,58.78691406250002],[-136.3802734375,58.82729492187496],[-136.45117187499994,58.84633789062505],[-136.47758789062502,58.8625],[-136.51118164062498,58.90708007812497],[-136.56621093749993,58.940917968750036],[-136.83095703124997,58.983837890624976],[-136.989013671875,59.03447265624998],[-137.00214843750004,59.02114257812502],[-136.95283203125,58.96694335937499],[-136.94804687500005,58.934912109375055],[-136.98789062499998,58.925146484375006],[-137.05903320312498,58.87373046875001],[-137.03837890624996,58.86665039062501],[-136.96303710937497,58.883544921874964],[-136.8791015625,58.88154296875001],[-136.74013671874997,58.85019531250003],[-136.61391601562497,58.809277343749955],[-136.568212890625,58.78632812499999],[-136.54931640624997,58.75239257812498],[-136.53349609374993,58.740234375],[-136.41010742187504,58.700634765625004],[-136.40419921874997,58.67978515625003],[-136.48374023437503,58.61767578125],[-136.31987304687493,58.624462890624955],[-136.224609375,58.60224609374996],[-136.10288085937498,58.506298828124955],[-136.06147460937495,58.45273437500006],[-136.05595703125,58.38417968750003],[-136.08125,58.36420898437495],[-136.129638671875,58.35039062499998],[-136.46240234375003,58.32797851562503],[-136.5826171875,58.24521484375006],[-136.607421875,58.24399414062498],[-136.69892578124998,58.266455078125034],[-136.864990234375,58.33242187499997],[-137.07192382812494,58.39521484374999],[-137.54399414062502,58.58120117187502],[-137.55693359375,58.589941406250034],[-137.56459960937497,58.625878906249966],[-137.59707031249997,58.644238281249976],[-137.66108398437495,58.65991210937497],[-137.75,58.70708007812499],[-137.86372070312495,58.78554687499999],[-137.93398437499997,58.846875],[-137.96088867187504,58.89101562499999],[-138.026904296875,58.941455078125045],[-138.24072265625003,59.04682617187503],[-138.35249023437498,59.08730468750002],[-138.45131835937497,59.11010742187502],[-138.53715820312493,59.11508789062498],[-138.56030273437506,59.12915039062499],[-138.52070312499995,59.15224609375002],[-138.51489257812503,59.165917968750044],[-138.70419921875003,59.18754882812501],[-138.884326171875,59.23691406250004],[-139.34096679687502,59.37563476562505],[-139.57680664062502,59.462451171875045],[-139.71445312499998,59.50395507812498],[-139.77329101562498,59.52729492187505],[-139.79912109375,59.54624023437498],[-139.766064453125,59.566064453125016],[-139.67412109375002,59.586816406249994],[-139.61162109375,59.610302734374976],[-139.51303710937498,59.698095703125006],[-139.50556640624995,59.726318359375],[-139.55849609375002,59.790185546875016],[-139.582177734375,59.84829101562496],[-139.58115234375,59.880517578124966],[-139.56914062499993,59.91235351562498],[-139.5541015625,59.93330078124998],[-139.5123046875,59.953564453125004],[-139.48300781249998,59.96376953124997],[-139.446875,59.956835937500045],[-139.33095703125002,59.87700195312504],[-139.31464843749995,59.84794921874999],[-139.32001953125,59.73872070312503],[-139.28671874999995,59.610937500000034],[-139.27626953124997,59.620361328125],[-139.265625,59.66259765624997],[-139.25874023437504,59.743310546874994],[-139.24570312499998,59.78208007812497],[-139.22080078125,59.81987304687504],[-139.17885742187502,59.83984375000003],[-139.04829101562498,59.82822265625006],[-138.98808593749996,59.83500976562502],[-139.24248046875002,59.892773437499976],[-139.40249023437502,60.0009765625],[-139.43144531249996,60.012255859375074],[-139.51894531250002,60.01708984375],[-139.61166992187498,59.973437500000074],[-139.8501953125,59.83071289062502],[-139.91689453125,59.80566406249999],[-140.216748046875,59.72666015624998],[-140.41982421874994,59.71074218750002],[-140.648388671875,59.723193359375074],[-140.84316406249997,59.748876953125055],[-141.33193359375,59.87377929687499],[-141.40830078125,59.902783203124976],[-141.29462890625,59.98002929687499],[-141.28994140624997,60.00415039062503],[-141.32954101562504,60.08281250000004],[-141.36215820312503,60.10527343750002],[-141.408740234375,60.11767578125006],[-141.4216796875,60.10883789062503],[-141.42216796875,60.085498046875074],[-141.40971679687505,60.042285156250045],[-141.4470703125,60.01943359375002],[-141.53017578124997,59.99477539062497],[-141.67016601562497,59.969873046874966],[-142.1041015625,60.03344726562502],[-142.54858398437494,60.08603515625],[-142.94565429687503,60.09697265625002],[-143.506103515625,60.05502929687498],[-143.80507812499994,60.012890625],[-143.97949218749997,60.00878906249997],[-144.14721679687494,60.01640625000001],[-144.1609375,60.045800781249966],[-144.08427734374996,60.06303710937502],[-144.08852539062497,60.084326171875006],[-144.185498046875,60.150732421875034],[-144.33261718749998,60.19101562499998],[-144.52998046875004,60.205224609375016],[-144.64296874999997,60.22465820312498],[-144.67158203125,60.24921875000004],[-144.74140625000004,60.27270507812503],[-144.85244140625,60.29506835937505],[-144.901318359375,60.33515624999995],[-144.86245117187502,60.45917968749998],[-144.82441406249998,60.533593749999966],[-144.786572265625,60.58461914062496],[-144.69111328125,60.66909179687502],[-144.72441406249993,60.662841796875],[-144.86308593749996,60.60087890624999],[-144.984033203125,60.53691406250002],[-145.09599609375,60.45366210937502],[-145.16269531249998,60.41538085937503],[-145.248291015625,60.38012695312505],[-145.381787109375,60.388574218749994],[-145.56313476562502,60.44072265625004],[-145.71845703125004,60.46757812500002],[-145.84775390625,60.46923828124999],[-145.89887695312498,60.478173828125044],[-145.81064453124995,60.524658203125],[-145.75981445312493,60.56201171874997],[-145.690234375,60.62197265625002],[-145.67490234374998,60.65112304687503],[-146.14902343749998,60.66069335937502],[-146.16640625,60.692285156249966],[-146.16708984374998,60.71552734374998],[-146.18232421875004,60.73476562499999],[-146.25102539062496,60.74907226562498],[-146.34716796874997,60.73813476562498],[-146.502978515625,60.70078125],[-146.57045898437497,60.72915039062502],[-146.54638671874994,60.74511718749997],[-146.4955078125,60.756787109374955],[-146.39199218749997,60.810839843750045],[-146.53193359375004,60.83886718749997],[-146.603564453125,60.870947265625034],[-146.63842773437497,60.89731445312498],[-146.63603515625002,60.99252929687503],[-146.59912109374994,61.05351562500001],[-146.28491210937497,61.11264648437497],[-146.384375,61.13583984375001],[-146.58271484375,61.127832031249966],[-146.71591796875003,61.077539062500016],[-146.8740234375,61.00488281249997],[-146.98017578124993,60.97778320312503],[-147.03432617187497,60.99619140624997],[-147.10595703124997,61.002539062500034],[-147.19501953125,60.996826171875],[-147.25488281249997,60.97827148437506],[-147.285595703125,60.94677734375003],[-147.32109375,60.925488281249955],[-147.361376953125,60.91450195312504],[-147.390576171875,60.918017578125045],[-147.43339843750002,60.950292968750034],[-147.52329101562503,60.970312500000034],[-147.56728515625002,60.994921875000074],[-147.59257812500005,60.97944335937502],[-147.62329101562497,60.933007812499966],[-147.6556640625,60.90952148437497],[-147.80761718749994,60.885400390624966],[-147.89111328125,60.88989257812501],[-147.990771484375,60.948291015624996],[-148.00512695312494,60.96855468750002],[-147.97119140624994,61.01904296874999],[-147.75185546874997,61.21894531249995],[-147.77377929687498,61.21782226562501],[-147.84482421874998,61.186376953125006],[-147.98637695312496,61.106494140625074],[-148.04941406250003,61.082666015624994],[-148.15791015625,61.0796875],[-148.20869140625004,61.08828125],[-148.27001953124997,61.08178710937499],[-148.34189453124998,61.060400390625006],[-148.38876953124998,61.036962890625006],[-148.41074218749998,61.01147460937497],[-148.39584960937498,61.007128906250074],[-148.28740234375,61.03623046875003],[-148.22587890625,61.044042968750034],[-148.20869140625004,61.029931640624994],[-148.2931640625,60.939697265625],[-148.34443359374998,60.85356445312504],[-148.39331054687497,60.83188476562498],[-148.471044921875,60.83549804687502],[-148.55615234374994,60.827001953125055],[-148.55737304687503,60.80292968750003],[-148.39868164062503,60.73403320312502],[-148.34125976562495,60.72431640625001],[-148.26787109375002,60.699707031249964],[-148.25673828124997,60.67529296874997],[-148.284228515625,60.60932617187504],[-148.3049804687499,60.58334960937497],[-148.33842773437496,60.56982421874998],[-148.4677734375,60.57207031249998],[-148.50957031249996,60.56523437500001],[-148.596630859375,60.523779296875],[-148.64013671875,60.48945312500004],[-148.62426757812494,60.48642578125003],[-148.54912109374993,60.514794921875044],[-148.43984374999997,60.52998046875004],[-148.29638671874997,60.532080078125],[-148.18945312500003,60.54711914062497],[-148.11918945312502,60.57514648437498],[-148.05068359375002,60.567187500000045],[-147.98403320312502,60.523339843749994],[-147.96411132812494,60.48486328124997],[-147.990966796875,60.451855468750004],[-148.04599609375003,60.428320312500006],[-148.12919921875,60.41420898437496],[-148.18168945312493,60.39306640625003],[-148.20356445312498,60.364941406249976],[-148.215869140625,60.323144531249994],[-148.21865234375002,60.26767578125006],[-148.197607421875,60.167773437500045],[-148.21376953125,60.154248046874955],[-148.24501953124997,60.14682617187503],[-148.291357421875,60.14545898437503],[-148.33310546874998,60.122021484374955],[-148.430712890625,59.98911132812498],[-148.46508789062494,59.97470703125006],[-148.50605468749995,59.98896484375003],[-148.5423828125,59.98740234374998],[-148.57407226562498,59.970068359375006],[-148.643603515625,59.956835937500045],[-148.75087890625002,59.947753906249964],[-148.84272460937498,59.95122070312507],[-149.00424804687503,59.97998046874998],[-149.0701171874999,60.00024414062502],[-149.12158203124994,60.03349609375004],[-149.2666015625,59.99829101562498],[-149.304931640625,60.013671875],[-149.395263671875,60.10576171875001],[-149.41484375000002,60.100244140624966],[-149.4322265625,60.00102539062499],[-149.459716796875,59.966259765625004],[-149.549169921875,59.89433593750001],[-149.59804687500002,59.770458984375004],[-149.61289062500003,59.76684570312499],[-149.629638671875,59.78466796874997],[-149.68466796875,59.89531250000004],[-149.7138671875,59.91958007812502],[-149.79477539062498,59.855810546875006],[-149.803662109375,59.83271484374998],[-149.78247070312503,59.750341796875006],[-149.80126953124994,59.737939453124966],[-149.964990234375,59.78227539062501],[-150.00532226562507,59.784423828125036],[-150.01596679687498,59.776953125],[-149.96015625,59.71303710937505],[-149.96650390625004,59.69003906249998],[-150.19804687499996,59.56655273437505],[-150.25849609375,59.57094726562505],[-150.29648437500003,59.58325195312498],[-150.338134765625,59.581347656250045],[-150.48535156249994,59.53530273437497],[-150.52597656249998,59.53730468750003],[-150.58154296875,59.56459960937499],[-150.60737304687504,59.563378906250016],[-150.621142578125,59.535058593750016],[-150.622900390625,59.479638671874994],[-150.67744140625,59.42695312500001],[-150.85278320312506,59.34184570312498],[-150.89931640625002,59.30268554687501],[-150.93452148437498,59.24912109375003],[-150.9607421875,59.24399414062506],[-151.06357421874998,59.278417968750034],[-151.18276367187502,59.300781249999964],[-151.19921875,59.289648437500034],[-151.163037109375,59.25693359375003],[-151.170703125,59.23691406250004],[-151.22226562499998,59.229394531249994],[-151.2875,59.232324218749994],[-151.36635742187497,59.24560546875002],[-151.477001953125,59.23056640624998],[-151.61938476562497,59.187304687500045],[-151.73818359375002,59.18852539062502],[-151.90385742187493,59.25976562499997],[-151.94951171875,59.265087890624976],[-151.96406250000004,59.28510742187498],[-151.93168945312502,59.342724609375004],[-151.884619140625,59.386328125],[-151.84995117187498,59.406347656250006],[-151.69257812499995,59.46220703125002],[-151.5126953125,59.48271484375002],[-151.39960937499995,59.51630859375001],[-151.26210937500002,59.58559570312502],[-151.18940429687507,59.637695312499964],[-151.04648437499998,59.77182617187503],[-151.05732421874995,59.78217773437501],[-151.08945312500003,59.78940429687506],[-151.403662109375,59.662255859374994],[-151.45009765624997,59.650390624999964],[-151.51259765625,59.651269531249966],[-151.76381835937502,59.7],[-151.816943359375,59.720898437499955],[-151.85322265625,59.78208007812497],[-151.783447265625,59.92114257812497],[-151.734521484375,59.98833007812499],[-151.61186523437496,60.09204101562498],[-151.45146484375,60.20263671875003],[-151.39599609375006,60.27446289062502],[-151.3126953125,60.46645507812496],[-151.31752929687494,60.553564453125034],[-151.35502929687493,60.65986328125001],[-151.35644531249994,60.72294921874998],[-151.32177734375,60.74291992187497],[-150.95375976562502,60.84121093750002],[-150.7794921875,60.91479492187499],[-150.44125976562503,61.023583984375044],[-150.34912109375,61.02265625000003],[-150.281494140625,60.98520507812504],[-150.20278320312494,60.95522460937497],[-150.11303710937497,60.93281250000004],[-149.99755859374997,60.93515624999998],[-149.85625,60.96225585937498],[-149.63247070312502,60.952001953125034],[-149.1728515625,60.88041992187502],[-149.07509765624997,60.87641601562499],[-149.0712890625,60.88554687499999],[-149.14223632812497,60.93569335937499],[-149.45913085937497,60.964746093749966],[-149.59248046874995,60.99384765625003],[-149.96772460937498,61.12172851562496],[-150.05327148437496,61.171093749999976],[-150.0185546875,61.194238281249994],[-149.92675781250003,61.21328124999996],[-149.89531250000002,61.23173828124998],[-149.88203124999998,61.26372070312501],[-149.82919921874998,61.307519531249994],[-149.73691406249998,61.36333007812499],[-149.59599609375,61.41728515625004],[-149.329052734375,61.49736328125002],[-149.43354492187498,61.50078125000002],[-149.625439453125,61.48603515625001],[-149.695263671875,61.47070312499999],[-149.82373046875,61.413378906250045],[-149.87368164062497,61.37299804687501],[-149.94521484374997,61.29423828125002],[-149.97568359374998,61.27934570312502],[-150.10893554687502,61.267919921875006],[-150.47177734375003,61.259960937499976],[-150.53320312500003,61.300244140625004],[-150.56723632812503,61.30678710937502],[-150.61225585937495,61.301123046875006],[-150.9455078125,61.1982421875],[-151.06499023437502,61.14570312499995],[-151.15014648437494,61.08583984375002],[-151.28188476562497,61.04194335937495],[-151.46010742187497,61.01411132812498],[-151.59350585937494,60.979638671874966],[-151.73398437499998,60.91074218749998],[-151.781640625,60.85795898437504],[-151.784423828125,60.833154296874966],[-151.75048828124994,60.75488281250002],[-151.785107421875,60.74023437500005],[-151.86616210937498,60.73408203124995],[-151.99624023437502,60.68222656250004],[-152.27070312499998,60.528125],[-152.306591796875,60.47221679687498],[-152.30507812499997,60.45302734374999],[-152.260302734375,60.409423828124964],[-152.29150390624994,60.381103515624964],[-152.36884765625,60.336328125000016],[-152.54091796874997,60.265429687500045],[-152.653955078125,60.238427734374966],[-152.727294921875,60.23706054687502],[-152.797900390625,60.247167968750055],[-152.923388671875,60.292871093750044],[-153.025,60.29565429687497],[-153.03125,60.28925781250001],[-152.892919921875,60.24038085937499],[-152.75239257812495,60.177490234374964],[-152.66474609374995,60.12529296875002],[-152.630126953125,60.08378906249998],[-152.62856445312497,60.041113281250006],[-152.660107421875,59.99721679687503],[-152.75947265625,59.92089843750003],[-152.85693359374994,59.898095703124994],[-153.10605468749998,59.87504882812502],[-153.186376953125,59.85688476562504],[-153.21123046875002,59.842724609374976],[-153.04008789062496,59.810498046875004],[-153.024609375,59.79399414062502],[-153.04814453125,59.730029296875045],[-153.09360351562503,59.70913085937506],[-153.236181640625,59.67094726562498],[-153.36401367187494,59.659863281249955],[-153.38349609375,59.66718750000001],[-153.35961914062491,59.717480468749955],[-153.366455078125,59.729833984375006],[-153.41440429687503,59.740136718749966],[-153.48261718749995,59.72094726562506],[-153.6525390625,59.64702148437498],[-153.67070312499996,59.634814453124996],[-153.609375,59.615039062500045],[-153.622265625,59.59848632812498],[-153.71435546874997,59.545263671875055],[-153.752587890625,59.50986328125003],[-153.81416015625,59.47373046875003],[-154.088330078125,59.36328125000002],[-154.06748046875003,59.336376953124955],[-154.13881835937497,59.24013671874996],[-154.1783203125,59.15556640625007],[-154.129833984375,59.11987304687499],[-153.899560546875,59.078027343749994],[-153.78793945312498,59.067919921875074],[-153.65639648437502,59.03867187500006],[-153.41826171875,58.95996093749999],[-153.33896484375,58.908544921875],[-153.32705078124997,58.884326171875045],[-153.33442382812495,58.85786132812498],[-153.362939453125,58.82221679687501],[-153.43759765625003,58.754833984374955],[-153.61733398437497,58.654736328124976],[-153.698583984375,58.626367187499994],[-153.82148437499998,58.60410156249998],[-153.86196289062497,58.587841796874955],[-154.01987304687498,58.49296874999999],[-154.06245117187495,58.441748046875034],[-154.05571289062502,58.39716796875001],[-154.08588867187504,58.365820312500034],[-154.289013671875,58.30434570312502],[-154.281787109375,58.29345703125002],[-154.20805664062493,58.28876953124995],[-154.23510742187497,58.23461914062503],[-154.247021484375,58.15942382812497],[-154.282275390625,58.14677734374998],[-154.409228515625,58.14731445312501],[-154.57060546875002,58.118066406249994],[-154.58193359375002,58.10976562499999],[-154.584912109375,58.05566406250001],[-155.006884765625,58.01606445312501],[-155.09926757812497,57.91333007812503],[-155.14736328125002,57.88183593749999],[-155.31274414062494,57.80712890624997],[-155.41396484374994,57.77705078124998],[-155.529638671875,57.758886718750006],[-155.59023437499997,57.73359375000001],[-155.595849609375,57.701074218750044],[-155.62871093750002,57.67304687500001],[-155.728955078125,57.62661132812496],[-155.77797851562497,57.56821289062498],[-155.81367187500004,57.559033203124976],[-156.0001953125,57.544970703125045],[-156.03735351562491,57.52651367187502],[-156.05537109374998,57.44755859374998],[-156.089892578125,57.44506835937502],[-156.15600585937494,57.46342773437504],[-156.24218750000006,57.44921874999997],[-156.43588867187498,57.359960937500006],[-156.47841796875002,57.32788085937506],[-156.47368164062493,57.310693359374994],[-156.4435546875,57.29365234375001],[-156.39765625,57.240576171875034],[-156.40048828124995,57.20483398437502],[-156.475146484375,57.10517578124998],[-156.50131835937495,57.08979492187504],[-156.592041015625,57.065087890624966],[-156.62900390624998,57.00996093750001],[-156.71264648437494,57.01606445312501],[-156.77988281249998,57.00561523437503],[-156.82387695312494,56.968847656250006],[-156.87172851562497,56.94765625000002],[-156.92343749999998,56.942089843749955],[-156.98842773437502,56.91293945312498],[-157.06669921875,56.86020507812498],[-157.13916015624997,56.826562499999966],[-157.20576171874995,56.81206054687502],[-157.27055664062502,56.80849609375002],[-157.33359374999998,56.81586914062501],[-157.39023437499998,56.80981445312503],[-157.44057617187502,56.790332031250045],[-157.48964843749997,56.75976562500003],[-157.52871093749997,56.67319335937497],[-157.578369140625,56.63447265625001],[-157.60976562500002,56.62768554687502],[-157.67387695312493,56.633447265624966],[-157.770703125,56.651660156250045],[-157.869091796875,56.645214843749955],[-158.02788085937493,56.59213867187498],[-158.0783203125,56.55205078124998],[-157.97827148437494,56.543164062499955],[-157.9287109375,56.53168945312501],[-157.92998046875,56.520458984374955],[-157.98217773437494,56.509570312500045],[-158.07094726562502,56.510351562500034],[-158.12436523437498,56.50102539062498],[-158.18940429687498,56.47817382812505],[-158.352490234375,56.45351562499999],[-158.41440429687498,56.435839843750045],[-158.53740234375,56.33544921874999],[-158.5521484375,56.31269531249998],[-158.53637695312494,56.307666015625045],[-158.46733398437493,56.318261718749966],[-158.38613281250002,56.30156250000004],[-158.34399414062494,56.28032226562496],[-158.31699218749998,56.25415039062506],[-158.29140624999997,56.20366210937498],[-158.27563476562494,56.19624023437498],[-158.4318359375,56.111474609375016],[-158.47612304687496,56.07548828124999],[-158.5046875,56.062109375],[-158.52333984374997,56.07246093749998],[-158.54267578125,56.166845703125034],[-158.554443359375,56.182861328125],[-158.59116210937503,56.18452148437498],[-158.6267578125,56.154687500000044],[-158.70488281250002,56.04311523437505],[-158.78984375000002,55.98691406250006],[-159.429443359375,55.84272460937498],[-159.52324218749993,55.810009765624976],[-159.54130859375,55.74848632812498],[-159.567626953125,55.695214843750044],[-159.61005859375004,55.65278320312501],[-159.65966796875003,55.62592773437495],[-159.67026367187498,55.64501953125002],[-159.66533203125005,55.79487304687501],[-159.67851562499993,55.82465820312495],[-159.743017578125,55.84375],[-159.77138671874997,55.84111328125002],[-159.810400390625,55.83271484374998],[-159.87436523437498,55.80029296875006],[-159.91352539062495,55.7921875],[-159.96230468749997,55.79487304687501],[-160.04565429687494,55.76293945312499],[-160.24379882812502,55.66054687499999],[-160.373193359375,55.63510742187506],[-160.40742187500004,55.61381835937498],[-160.46269531250002,55.55781250000004],[-160.49931640625002,55.53730468750003],[-160.55351562499996,55.535498046875006],[-160.625244140625,55.552392578124994],[-160.68291015624993,55.54042968750005],[-160.72651367187504,55.49965820312499],[-160.770849609375,55.483544921874994],[-160.896728515625,55.51362304687501],[-160.952197265625,55.493066406249994],[-161.02421875000002,55.4404296875],[-161.09951171875,55.40571289062495],[-161.17802734375,55.38886718749998],[-161.38193359374998,55.371289062499955],[-161.46386718749997,55.38251953125004],[-161.48051757812496,55.397802734375034],[-161.47670898437502,55.46489257812502],[-161.44379882812493,55.51328125000003],[-161.413330078125,55.53613281249997],[-161.37270507812497,55.556298828124994],[-161.31328125000005,55.55864257812501],[-161.202099609375,55.54355468750006],[-161.21469726562503,55.55976562499998],[-161.25512695312497,55.579003906249994],[-161.357470703125,55.61220703125002],[-161.45878906249996,55.629150390625],[-161.51694335937503,55.61840820312503],[-161.59877929687502,55.59282226562495],[-161.65429687499991,55.56337890625002],[-161.68354492187495,55.529931640625044],[-161.720361328125,55.42070312499998],[-161.74155273437498,55.39116210937502],[-161.98032226562503,55.19863281250005],[-162.07397460937497,55.13930664062505],[-162.16660156249998,55.14375],[-162.21147460937496,55.12133789062503],[-162.27465820312494,55.0732421875],[-162.33291015625002,55.05024414062501],[-162.38637695312497,55.05234375],[-162.4279296875,55.06147460937498],[-162.45747070312498,55.07768554687501],[-162.452392578125,55.09282226562499],[-162.41254882812498,55.10688476562501],[-162.42680664062493,55.14541015625005],[-162.49526367187497,55.20844726562501],[-162.54189453124997,55.24272460937496],[-162.63037109375003,55.24667968749998],[-162.64414062499998,55.218017578125],[-162.61430664062496,55.07148437499998],[-162.618896484375,55.038427734375006],[-162.67436523437505,54.99658203124999],[-162.819580078125,54.95],[-162.86503906249993,54.954541015624955],[-162.9958984375,55.04648437500003],[-163.11962890624997,55.06469726562503],[-163.12783203124997,55.03476562500006],[-163.1001953125,54.97363281250003],[-163.131103515625,54.916552734375045],[-163.220556640625,54.863378906250034],[-163.28862304687502,54.83759765625004],[-163.33530273437503,54.83916015624999],[-163.33789062500003,54.87636718750002],[-163.296337890625,54.94926757812496],[-163.28569335937493,55.00996093749998],[-163.30595703125,55.05854492187501],[-163.30366210937498,55.095849609374966],[-163.27880859374997,55.12182617187502],[-163.114501953125,55.19394531249998],[-163.045361328125,55.204736328125044],[-163.008251953125,55.186865234375034],[-162.961962890625,55.18383789062506],[-162.906591796875,55.19555664062503],[-162.87158203124997,55.218603515625034],[-162.85712890625,55.253027343750034],[-162.78623046874995,55.29707031250004],[-162.658984375,55.35078124999995],[-162.51337890625,55.45],[-162.349365234375,55.5947265625],[-162.15712890625,55.71943359375001],[-161.93662109374998,55.82416992187504],[-161.69731445312502,55.9072265625],[-161.215625,56.021435546874976],[-161.17861328124997,56.01445312499998],[-161.22255859375002,55.97744140624999],[-161.19252929687502,55.95429687499998],[-161.14516601562497,55.951318359374994],[-160.96865234374997,55.969628906249994],[-160.8986328125,55.99365234375],[-160.87783203124994,55.97050781249999],[-160.902392578125,55.941308593749994],[-161.00839843749998,55.91171875],[-161.00537109375,55.887158203124976],[-160.85131835937497,55.771875],[-160.80283203125003,55.754443359375045],[-160.76259765625,55.75659179687503],[-160.7455078125,55.77148437500006],[-160.75839843749998,55.854638671875016],[-160.70634765625,55.870458984375034],[-160.59970703124998,55.874316406250045],[-160.530224609375,55.863476562499955],[-160.497900390625,55.83789062499997],[-160.43691406250002,55.81669921875002],[-160.34731445312494,55.799902343750055],[-160.29169921875,55.80507812500005],[-160.27011718749998,55.832177734374966],[-160.30849609374994,55.86445312499998],[-160.47988281249997,55.935449218749966],[-160.52744140624998,55.965039062499955],[-160.53906250000006,56.00629882812501],[-160.51469726562496,56.05913085937502],[-160.46083984374997,56.1375],[-160.377490234375,56.24145507812506],[-160.30205078125,56.314111328125016],[-160.14926757812503,56.39633789062498],[-160.046240234375,56.43701171875],[-159.78505859375,56.56162109374998],[-159.28310546874997,56.68857421875],[-159.15903320312498,56.77006835937499],[-158.990380859375,56.86005859375004],[-158.91801757812502,56.882177734375006],[-158.91801757812502,56.84741210937503],[-158.894873046875,56.81640625000003],[-158.78208007812503,56.795751953125006],[-158.70883789062503,56.78857421875003],[-158.675146484375,56.79487304687498],[-158.66591796875,56.82792968749998],[-158.68105468749997,56.88774414062499],[-158.684814453125,56.944238281250044],[-158.67724609375,56.997363281250045],[-158.66079101562502,57.03940429687498],[-158.58559570312494,57.11406250000002],[-158.47373046874998,57.199072265625],[-158.32094726562497,57.29790039062499],[-158.22451171874997,57.34267578125005],[-158.13354492187497,57.36640625],[-158.04570312500002,57.40947265624995],[-157.8943359375,57.511376953125016],[-157.84575195312493,57.52807617187497],[-157.73720703124997,57.54814453124999],[-157.69741210937502,57.53925781250004],[-157.67402343749995,57.513720703124996],[-157.64555664062493,57.49780273437502],[-157.53530273437497,57.48344726562502],[-157.46191406249997,57.506201171875034],[-157.47387695312497,57.51821289062499],[-157.53349609374993,57.525878906249964],[-157.57163085937498,57.540673828124966],[-157.60756835937502,57.601464843749994],[-157.6806640625,57.638085937499994],[-157.697216796875,57.67944335937499],[-157.68398437499997,57.74389648437497],[-157.62119140624998,57.89521484374998],[-157.610888671875,58.050830078125074],[-157.55502929687498,58.13994140625002],[-157.44267578125,58.17216796875001],[-157.19370117187498,58.19418945312507],[-157.33940429687502,58.234521484374994],[-157.39360351562496,58.234814453124976],[-157.48837890624998,58.25371093750002],[-157.52441406249994,58.35073242187497],[-157.52363281249998,58.42133789062495],[-157.46088867187498,58.503027343750006],[-157.22885742187498,58.64091796875001],[-156.97465820312493,58.736328125],[-157.00903320312503,58.74418945312502],[-157.04047851562504,58.77255859375],[-156.92324218749994,58.96367187500004],[-156.80888671875005,59.13427734375],[-156.96337890624997,58.98886718750004],[-157.14204101562504,58.877636718750004],[-157.66572265624995,58.748486328125004],[-158.02192382812495,58.64018554687504],[-158.19091796875003,58.6142578125],[-158.30258789062503,58.64179687500001],[-158.3896484375,58.745654296875045],[-158.43930664062498,58.782617187500016],[-158.50317382812494,58.85034179687497],[-158.47626953124998,58.938378906249966],[-158.42563476562498,58.99931640625002],[-158.314501953125,59.00932617187501],[-158.18920898437506,58.97993164062498],[-158.080517578125,58.97744140625002],[-158.22060546874997,59.0375],[-158.422802734375,59.08984375],[-158.51440429687503,59.072851562500006],[-158.58447265625,58.98779296875],[-158.67827148437502,58.92939453124999],[-158.76059570312498,58.95009765625005],[-158.80947265625002,58.97387695312501],[-158.77553710937502,58.90253906250004],[-158.837744140625,58.79394531250003],[-158.86137695312502,58.71875],[-158.77211914062497,58.52031250000005],[-158.78862304687493,58.44096679687504],[-158.95068359375,58.40454101562499],[-159.08266601562497,58.46977539062508],[-159.358203125,58.72128906250007],[-159.45419921875,58.792919921874976],[-159.67026367187498,58.9111328125],[-159.74145507812497,58.89428710937503],[-159.8322265625,58.835986328125074],[-159.92021484375,58.819873046875074],[-160.152587890625,58.905908203124994],[-160.26079101562502,58.971533203125055],[-160.36313476562498,59.05117187500002],[-160.51992187499994,59.00732421874997],[-160.65664062500002,58.95507812499999],[-160.81708984375,58.87167968750006],[-160.924267578125,58.872412109375034],[-161.21591796874998,58.80097656250003],[-161.246826171875,58.799462890624994],[-161.287890625,58.76093749999995],[-161.328125,58.74370117187499],[-161.36132812499994,58.66953125],[-161.75546874999998,58.61201171874998],[-162.144921875,58.644238281249976],[-162.00869140624997,58.68500976562504],[-161.85649414062505,58.71708984374999],[-161.72436523437497,58.794287109375],[-161.780517578125,58.897412109374955],[-161.79028320312506,58.94995117187499],[-161.78867187499998,59.01640625000005],[-161.64438476562498,59.10966796875004],[-161.794482421875,59.10947265625],[-161.89077148437497,59.07607421875002],[-161.9810546875,59.146142578125016],[-162.02329101562498,59.28398437500002],[-161.9201171875,59.36547851562503],[-161.87221679687502,59.42827148437502],[-161.83168945312497,59.514501953125],[-161.82871093749998,59.58862304687499],[-161.908642578125,59.714111328125],[-162.138134765625,59.98002929687499],[-162.24248046875,60.17832031249997],[-162.421337890625,60.283984375000024],[-162.28779296874995,60.45688476562507],[-162.1388671875,60.61435546874997],[-161.94658203125,60.68481445312503],[-161.96201171875003,60.695361328125045],[-162.06826171875002,60.694873046875045],[-162.138037109375,60.685546875],[-162.19990234375,60.634326171875045],[-162.26503906249997,60.59521484375],[-162.46870117187507,60.39467773437499],[-162.59970703125,60.29697265624998],[-162.68496093749997,60.26894531249996],[-162.54770507812498,60.23105468750006],[-162.52695312500003,60.19912109375002],[-162.50048828124994,60.1265625],[-162.53564453125,60.03837890625008],[-162.57075195312495,59.98974609375],[-162.7326171875,59.99365234374999],[-162.87783203125,59.922753906250044],[-163.21938476562497,59.84560546875005],[-163.68037109374998,59.80151367187502],[-163.90688476562494,59.80678710937505],[-164.14282226562494,59.89677734374999],[-164.14111328124997,59.94887695312502],[-164.13154296874998,59.994238281250034],[-164.47050781250002,60.14931640625002],[-164.662255859375,60.30380859375004],[-164.799951171875,60.307226562500034],[-164.91972656249996,60.34843749999999],[-165.06113281249998,60.41254882812498],[-165.04873046874997,60.46425781249996],[-165.02651367187497,60.500634765624994],[-165.11328124999997,60.52607421875003],[-165.22451171874997,60.523583984374966],[-165.35380859375002,60.541210937500004],[-165.01601562499997,60.74003906250001],[-164.8998046875,60.873144531250034],[-164.80517578125,60.892041015624976],[-164.682373046875,60.871533203124976],[-164.51293945312494,60.81904296875003],[-164.37006835937498,60.79589843750002],[-164.31850585937497,60.77128906249999],[-164.26567382812493,60.72465820312499],[-164.32138671875,60.646630859374994],[-164.37236328125002,60.59184570312502],[-164.30966796875003,60.606738281250045],[-164.13183593750003,60.69150390624998],[-163.999560546875,60.76606445312498],[-163.93613281250003,60.75830078124999],[-163.894921875,60.74516601562499],[-163.82138671875003,60.66826171875004],[-163.72998046874997,60.589990234374994],[-163.5287109375,60.66455078124999],[-163.420947265625,60.75742187500001],[-163.51186523437502,60.798144531250045],[-163.62304687500003,60.82221679687495],[-163.90654296874993,60.85380859375002],[-163.83730468749997,60.88041992187502],[-163.65541992187497,60.87749023437505],[-163.58691406249994,60.902978515624994],[-163.65893554687497,60.93823242187497],[-163.74902343750003,60.96972656249999],[-163.99462890624997,60.864697265625004],[-164.44155273437494,60.869970703125006],[-164.75395507812493,60.931298828124994],[-165.065625,60.92065429687503],[-165.11484375,60.93281250000004],[-165.17548828125,60.96567382812498],[-164.99990234374997,61.043652343749955],[-164.87558593750003,61.08676757812503],[-164.868994140625,61.11176757812499],[-164.94121093749996,61.11489257812499],[-165.07709960937493,61.09418945312495],[-165.13769531249997,61.130126953125],[-165.12778320312498,61.19243164062499],[-165.150048828125,61.186865234375],[-165.20375976562502,61.15283203124999],[-165.27978515624994,61.16962890624995],[-165.34487304687494,61.19770507812498],[-165.31079101562497,61.22763671875006],[-165.24394531250002,61.26875],[-165.27363281250004,61.27485351562498],[-165.33369140625,61.266113281249964],[-165.392041015625,61.212304687500016],[-165.37929687499994,61.16875],[-165.38076171875002,61.106298828125034],[-165.48046875,61.094873046874994],[-165.56586914062498,61.10234375000001],[-165.62758789062502,61.16518554687502],[-165.69135742187504,61.299902343750034],[-165.86396484375004,61.33569335937502],[-165.90629882812496,61.40380859374997],[-165.797119140625,61.491162109375004],[-165.84531249999998,61.536230468750034],[-165.96132812499997,61.550878906250006],[-166.093994140625,61.506738281249966],[-166.152734375,61.54594726562507],[-166.16352539062495,61.58901367187505],[-166.16811523437502,61.65083007812501],[-166.13115234374993,61.65732421875001],[-166.10048828125,61.64506835937502],[-165.8345703125,61.67939453124998],[-165.808935546875,61.69609375000002],[-166.01992187500002,61.748291015624964],[-166.07880859375,61.803125],[-165.99140624999998,61.834179687499976],[-165.83383789062503,61.836816406249994],[-165.61279296875003,61.86928710937502],[-165.70581054687497,61.92744140624998],[-165.72524414062502,61.959375],[-165.74394531250002,62.01171875],[-165.70727539062497,62.100439453125055],[-165.44765624999997,62.30390625000001],[-165.19453125,62.473535156250016],[-165.115625,62.51269531250003],[-164.99970703125,62.533789062500055],[-164.89184570312497,62.51757812500003],[-164.77919921875002,62.481152343749976],[-164.75786132812493,62.496728515624966],[-164.79609374999998,62.511621093749966],[-164.84438476562497,62.5810546875],[-164.68798828125,62.60825195312503],[-164.59628906249998,62.68666992187502],[-164.589453125,62.709375],[-164.68896484375003,62.67675781250005],[-164.79267578125,62.62319335937497],[-164.81865234374996,62.677050781250024],[-164.84541015625,62.80097656249995],[-164.79965820312503,62.91806640625],[-164.76406249999997,62.970605468750044],[-164.67744140624998,63.02045898437498],[-164.428125,63.04042968749996],[-164.384228515625,63.03046874999998],[-164.37509765625003,63.05400390624998],[-164.52519531249993,63.12763671874998],[-164.46328124999994,63.185205078124966],[-164.40903320312503,63.21503906250001],[-164.10761718749998,63.26171875000003],[-163.94287109375,63.24721679687499],[-163.73623046874997,63.19282226562502],[-163.61630859374995,63.12514648437499],[-163.63374023437498,63.090429687500034],[-163.66357421875003,63.070312500000036],[-163.72573242187497,63.047802734374955],[-163.748974609375,63.03032226562504],[-163.73784179687496,63.01640625000004],[-163.64936523437498,63.05678710937502],[-163.504345703125,63.105859374999966],[-163.42319335937498,63.08452148437499],[-163.358837890625,63.04575195312498],[-163.28784179687494,63.046435546875045],[-163.062255859375,63.079736328124994],[-162.947705078125,63.11499023437497],[-162.80776367187502,63.20659179687499],[-162.62148437499997,63.26582031249998],[-162.35981445312498,63.45258789062501],[-162.28281250000003,63.529199218749994],[-162.19331054687498,63.540966796874976],[-162.1125,63.53417968750002],[-162.05625,63.47133789062499],[-161.97397460937498,63.45292968749998],[-161.505419921875,63.468164062499994],[-161.266015625,63.496972656249994],[-161.09970703125003,63.557910156250045],[-160.92670898437495,63.66054687499999],[-160.82651367187495,63.72934570312498],[-160.778564453125,63.81894531250003],[-160.84047851562497,63.934912109375034],[-160.90395507812494,64.03120117187501],[-160.987548828125,64.25126953125002],[-161.22011718749997,64.39658203125002],[-161.38569335937504,64.43994140624996],[-161.49072265625003,64.43378906249998],[-161.414599609375,64.5263671875],[-161.19306640625007,64.51640625000002],[-161.04877929687495,64.53447265625005],[-160.93193359374996,64.5791015625],[-160.893701171875,64.61289062500003],[-160.83603515624998,64.68193359374999],[-160.855908203125,64.755615234375],[-160.88696289062506,64.79555664062504],[-160.96748046875,64.83955078124995],[-161.06323242187494,64.90400390625001],[-161.13017578125005,64.92543945312505],[-161.18691406249997,64.92402343750001],[-161.46635742187493,64.79487304687498],[-161.633984375,64.79248046875003],[-161.759375,64.816259765625],[-161.86831054687497,64.74267578125003],[-162.17226562499997,64.678076171875],[-162.33461914062497,64.61284179687505],[-162.63574218749997,64.450830078125],[-162.71108398437497,64.37753906249998],[-162.80703124999997,64.37421875000001],[-162.87641601562498,64.51640625000002],[-163.20390625,64.65200195312502],[-163.30283203124998,64.60590820312495],[-163.24829101562497,64.56328125000007],[-163.17407226562494,64.53295898437503],[-163.0517578125,64.51972656249998],[-163.1044921875,64.47861328125003],[-163.14433593750002,64.423828125],[-163.26704101562498,64.47519531249996],[-163.48618164062503,64.54980468749997],[-163.71308593749998,64.588232421875],[-164.303955078125,64.583935546875],[-164.69184570312498,64.50742187500005],[-164.72749023437493,64.52329101562499],[-164.76494140624993,64.52963867187506],[-164.82954101562498,64.51137695312497],[-164.85727539062503,64.48032226562503],[-164.89951171875003,64.46064453125004],[-164.978759765625,64.45366210937502],[-165.13813476562495,64.465234375],[-165.44619140625002,64.512841796875],[-166.1427734375,64.58276367187503],[-166.32509765625002,64.625732421875],[-166.48139648437498,64.72807617187506],[-166.478125,64.79755859375001],[-166.40869140625,64.82695312500005],[-166.415234375,64.926513671875],[-166.55087890624998,64.95297851562506],[-166.82695312499993,65.09609375],[-166.92841796875,65.15708007812498],[-166.90639648437494,65.16381835937503],[-166.85678710937498,65.14726562500002],[-166.76254882812498,65.13491210937498],[-166.53100585937494,65.15473632812504],[-166.45166015624994,65.24731445312497],[-166.2796875,65.27377929687503],[-166.12148437500002,65.26074218750006],[-166.15703125,65.28583984375001],[-166.19741210937502,65.30556640625001],[-166.609375,65.35273437499995],[-166.66538085937498,65.33828125000002],[-167.40400390625,65.42211914062497],[-167.98725585937498,65.5677734375],[-168.03500976562503,65.59560546874995],[-168.08837890624997,65.65776367187502],[-168.00966796875,65.719140625],[-167.93056640624997,65.74814453125002],[-167.92700195312497,65.71435546875],[-167.91435546874996,65.68120117187499],[-167.58002929687498,65.75830078124997],[-167.405322265625,65.85932617187495],[-167.07421874999994,65.87705078125],[-166.997216796875,65.90493164062502],[-166.89443359375002,65.95917968749995],[-166.74765625000003,66.05185546875],[-166.54013671875003,66.10063476562502],[-166.39873046875,66.14443359375005],[-166.21459960937497,66.17026367187498],[-166.05742187500002,66.12724609375002],[-166.00893554687497,66.12133789062506],[-165.723681640625,66.11254882812503],[-165.62993164062496,66.131201171875],[-165.589990234375,66.1451171875],[-165.56020507812497,66.16708984375003],[-165.840234375,66.24506835937504],[-165.811865234375,66.2884765625],[-165.77617187500002,66.31904296875001],[-165.44941406249995,66.40991210937503],[-165.19829101562493,66.43994140625003],[-165.06396484374994,66.43784179687503],[-164.67412109375002,66.55502929687502],[-164.46049804687502,66.58842773437499],[-164.05825195312497,66.61074218750002],[-163.72768554687502,66.61645507812503],[-163.63823242187502,66.57465820312504],[-163.81572265625002,66.58349609374997],[-163.89394531249994,66.57587890625001],[-163.83823242187498,66.56157226562502],[-163.77548828125,66.53110351562502],[-163.79370117187497,66.49262695312501],[-163.90288085937502,66.37836914062501],[-163.89394531249994,66.28691406250002],[-163.96499023437497,66.25732421875003],[-164.03374023437493,66.21552734374995],[-163.69536132812502,66.08383789062503],[-163.17143554687496,66.07543945312503],[-162.886474609375,66.09921874999998],[-162.72177734375,66.05981445312503],[-162.58686523437495,66.05083007812499],[-162.2142578125,66.07104492187503],[-161.93369140625003,66.04287109374997],[-161.81630859375002,66.05366210937504],[-161.5568359375,66.25053710937499],[-161.455419921875,66.28139648437497],[-161.34506835937503,66.24716796875],[-161.20107421875,66.21938476562505],[-161.10922851562503,66.23950195312504],[-161.03427734375003,66.18881835937503],[-161.06953125,66.29462890625001],[-161.12031249999993,66.33432617187499],[-161.54443359374991,66.40703124999999],[-161.82817382812493,66.370849609375],[-161.91689453124997,66.41181640624998],[-161.88759765624997,66.49306640625002],[-162.191162109375,66.693115234375],[-162.31772460937503,66.73369140625002],[-162.46743164062497,66.73564453125005],[-162.54365234375004,66.80512695312501],[-162.60742187499997,66.89438476562496],[-162.47832031249996,66.93081054687502],[-162.36162109375,66.94731445312502],[-162.25356445312502,66.91865234375003],[-162.131396484375,66.80136718750003],[-162.017626953125,66.78413085937498],[-162.05073242187498,66.66728515624999],[-161.90957031250002,66.55961914062499],[-161.591015625,66.45952148437502],[-161.33593750000003,66.49633789062497],[-161.155810546875,66.49531250000004],[-161.04814453125002,66.47421875],[-160.78447265624993,66.384375],[-160.65053710937502,66.37309570312499],[-160.23168945312503,66.42026367187499],[-160.22734374999993,66.50854492187497],[-160.26254882812503,66.57246093750004],[-160.360888671875,66.6125],[-160.64379882812497,66.60498046875],[-160.864013671875,66.67084960937501],[-161.05146484374995,66.65278320312495],[-161.39804687499995,66.55185546875],[-161.571728515625,66.5916015625],[-161.68090820312494,66.6455078125],[-161.85668945312494,66.70034179687497],[-161.87875976562503,66.80395507812503],[-161.731298828125,66.92280273437498],[-161.622216796875,66.97934570312506],[-161.719921875,67.02055664062502],[-161.96542968750003,67.04956054687497],[-162.39155273437495,67.01987304687506],[-162.41157226562504,67.06030273437503],[-162.40942382812494,67.10395507812495],[-162.58310546874998,67.01850585937495],[-162.76142578125,67.03642578125003],[-163.001708984375,67.02729492187495],[-163.5318359375,67.10258789062502],[-163.720556640625,67.19555664062506],[-163.79980468749997,67.27099609375006],[-163.94267578124996,67.47758789062505],[-164.1251953125,67.60673828125007],[-165.38603515625002,68.04560546875004],[-165.95957031249998,68.15590820312502],[-166.23593749999998,68.27792968750002],[-166.40913085937498,68.307958984375],[-166.574462890625,68.32026367187503],[-166.786279296875,68.35961914062497],[-166.64389648437503,68.40800781250005],[-166.54589843749997,68.42436523437502],[-166.64785156249994,68.37382812500002],[-166.57041015624995,68.361083984375],[-166.447021484375,68.39023437499998],[-166.38051757812502,68.425146484375],[-166.28295898437494,68.57324218749997],[-166.18203125,68.79721679687503],[-166.20908203125,68.88535156250003],[-165.50947265625,68.86757812499997],[-165.04394531249994,68.882470703125],[-164.88969726562496,68.90244140624998],[-164.30234375000003,68.93647460937498],[-164.15019531249996,68.96118164062503],[-163.867919921875,69.03666992187505],[-163.535693359375,69.17011718749998],[-163.250537109375,69.34536132812497],[-163.20517578124998,69.39252929687498],[-163.18710937500003,69.38046875],[-163.16147460937498,69.38793945312503],[-163.13100585937497,69.45434570312497],[-163.09355468749996,69.61069335937503],[-162.95209960937504,69.75810546875005],[-162.35039062500002,70.09414062500002],[-162.07114257812498,70.22719726562502],[-161.977978515625,70.28764648437502],[-161.88095703125003,70.33173828125001],[-161.81259765624998,70.28984375000002],[-161.77993164062497,70.27734375000003],[-161.76108398437503,70.25766601562503],[-161.818408203125,70.24843750000002],[-161.91196289062498,70.20546874999997],[-162.04238281249997,70.17666015625005],[-162.07387695312497,70.16196289062496],[-161.99741210937498,70.16523437500001],[-161.76816406249998,70.196533203125],[-161.63901367187503,70.23452148437502],[-160.9962890625,70.30458984375],[-160.64765625000004,70.420556640625],[-160.63413085937503,70.44638671875],[-160.11713867187495,70.59121093750002],[-160.04560546875004,70.58559570312505],[-159.96313476562503,70.56816406250005],[-160.106396484375,70.47255859375002],[-160.00556640624993,70.44755859374999],[-160.095068359375,70.33330078125007],[-159.90756835937495,70.33144531250005],[-159.86567382812498,70.27885742187499],[-159.855224609375,70.32416992187498],[-159.85751953125,70.3892578125],[-159.84262695312498,70.45302734375002],[-159.81499023437496,70.49707031250003],[-159.68330078125,70.47714843749998],[-159.38676757812493,70.52451171875002],[-159.74619140624995,70.53046875000001],[-159.96181640625002,70.63408203125007],[-160.081591796875,70.63486328125003],[-159.68090820312497,70.786767578125],[-159.31450195312496,70.87851562500003],[-159.23173828125,70.87675781250002],[-159.191748046875,70.85966796875002],[-159.18315429687505,70.83193359375005],[-159.26220703124997,70.81386718749998],[-159.33984374999997,70.78125],[-159.30415039062498,70.75253906250003],[-159.251171875,70.7484375],[-159.075048828125,70.7720703125],[-158.99628906249993,70.801611328125],[-158.62094726562495,70.79902343750001],[-158.51083984375003,70.82011718750005],[-158.484375,70.84106445312503],[-157.998486328125,70.8453125],[-157.909375,70.860107421875],[-157.60561523437497,70.94125976562503],[-157.32475585937496,71.03959960937499],[-157.19531249999994,71.09326171875],[-156.97333984375004,71.23002929687505],[-156.78330078124998,71.31894531250006],[-156.47021484374994,71.40766601562501],[-156.39526367187491,71.39667968749998],[-156.4966796875,71.37910156249995],[-156.567236328125,71.34155273437503],[-156.469970703125,71.29155273437507],[-155.81113281249998,71.18842773437501],[-155.64560546875,71.18276367187502],[-155.57944335937503,71.12109374999997],[-155.6345703125,71.06157226562502],[-155.80434570312502,70.99541015625005],[-156.14658203125,70.92783203125003],[-156.04194335937498,70.90224609375],[-155.97353515625002,70.84199218749995]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Benin","sov_a3":"BEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Benin","adm0_a3":"BEN","geou_dif":0,"geounit":"Benin","gu_a3":"BEN","su_dif":0,"subunit":"Benin","su_a3":"BEN","brk_diff":0,"name":"Benin","name_long":"Benin","brk_a3":"BEN","brk_name":"Benin","brk_group":null,"abbrev":"Benin","postal":"BJ","formal_en":"Republic of Benin","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Benin","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":12,"pop_est":8791832,"gdp_md_est":12830,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BJ","iso_a3":"BEN","iso_n3":"204","un_a3":"204","wb_a2":"BJ","wb_a3":"BEN","woe_id":-99,"adm0_a3_is":"BEN","adm0_a3_us":"BEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BEN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[3.595410156250011,11.6962890625],[3.553906250000011,11.631884765624987],[3.490527343750017,11.49921875],[3.48779296875,11.395410156249993],[3.638867187500011,11.17685546874999],[3.65625,11.154589843749989],[3.6953125,11.1203125],[3.71640625,11.07958984375],[3.734179687500017,10.971923828124998],[3.744921875000017,10.850439453124991],[3.7568359375,10.76875],[3.8296875,10.653759765624997],[3.83447265625,10.607421875],[3.783789062500006,10.43588867187499],[3.771777343750017,10.417626953124994],[3.758496093750011,10.412695312499991],[3.680273437500005,10.427783203124989],[3.646582031250005,10.408984374999989],[3.604101562500006,10.350683593749991],[3.577929687500017,10.29248046875],[3.576562500000023,10.268359374999989],[3.645898437500023,10.16015625],[3.60205078125,10.004541015624994],[3.557226562500005,9.907324218749991],[3.476757812500011,9.851904296874991],[3.40478515625,9.838623046875],[3.3544921875,9.812792968749989],[3.3251953125,9.778466796874994],[3.329492187500022,9.667041015624989],[3.223437500000017,9.565625],[3.164648437500006,9.494677734374989],[3.136132812500023,9.451611328124997],[3.148046875,9.320605468749989],[3.110449218750006,9.188281249999989],[3.044921875,9.083837890624991],[2.898046875,9.061376953124991],[2.774804687500023,9.048535156249997],[2.73291015625,8.782519531249989],[2.734667968750017,8.614013671875],[2.7236328125,8.44189453125],[2.703125,8.371826171875],[2.711523437500006,8.272998046874989],[2.702343750000011,8.0498046875],[2.68603515625,7.873730468749996],[2.707714843750011,7.826611328124996],[2.720410156250011,7.723095703124996],[2.719335937500006,7.616259765624989],[2.7509765625,7.541894531249993],[2.78515625,7.476855468749988],[2.783984375000017,7.443408203124989],[2.765820312500011,7.422509765624994],[2.75048828125,7.395068359374989],[2.750585937500006,7.143212890624994],[2.756738281250023,7.067919921874989],[2.747753906250011,7.019824218749989],[2.721386718750011,6.980273437499989],[2.731738281250017,6.852832031249989],[2.7529296875,6.771630859374994],[2.774609375000011,6.711718749999989],[2.753710937500017,6.661767578124993],[2.735644531250017,6.595703125],[2.7080078125,6.427685546874997],[2.706445312500023,6.369238281249991],[2.286914062500017,6.328076171874996],[1.818164062500017,6.260644531249994],[1.62265625,6.216796875],[1.6109375,6.250830078124991],[1.777929687500006,6.294628906249997],[1.7431640625,6.426269531249999],[1.639257812500005,6.58154296875],[1.598535156250023,6.610205078124991],[1.577539062500023,6.687402343749993],[1.602929687500023,6.738085937499989],[1.5908203125,6.772265624999989],[1.58203125,6.877001953124989],[1.530957031250011,6.992431640624999],[1.624707031250011,6.997314453124999],[1.624707031250011,7.369189453124989],[1.624609375,7.725878906249988],[1.624609375,8.030224609374997],[1.624609375,8.270996093749998],[1.606640625000011,8.559277343749995],[1.603808593750017,8.77099609375],[1.600195312500006,9.050048828125],[1.566308593750023,9.137255859374989],[1.42431640625,9.285009765624991],[1.3857421875,9.361669921874991],[1.37890625,9.46298828124999],[1.347070312500023,9.567529296874994],[1.345117187500023,9.750195312499997],[1.342871093750006,9.962939453124987],[1.330078125,9.996972656249993],[1.176171875000023,10.098388671875],[0.958300781250017,10.242041015624991],[0.792187500000011,10.3515625],[0.779980468750011,10.359570312499997],[0.763378906250011,10.386669921874997],[0.7875,10.710253906249987],[0.821875,10.752587890624994],[0.874804687500017,10.8857421875],[0.900488281250006,10.993261718749991],[0.924609375000017,10.992822265624994],[0.9580078125,11.027783203124997],[0.985058593750011,11.079003906249993],[1.013867187500011,11.068115234374998],[1.062304687500017,11.05820312499999],[1.084570312500006,11.076367187499997],[1.08154296875,11.116015624999989],[1.097558593750023,11.156347656249991],[1.135546875000017,11.174365234374987],[1.1455078125,11.210400390624997],[1.145800781250017,11.251904296874997],[1.1787109375,11.262744140624989],[1.234667968750017,11.261035156249989],[1.280468750000011,11.273974609374989],[1.3173828125,11.295263671874991],[1.36484375,11.37890625],[1.391503906250023,11.408007812499989],[1.399707031250017,11.4287109375],[1.4267578125,11.447119140624991],[1.501367187500023,11.45556640625],[1.561425781250023,11.449121093749994],[1.6,11.400634765624998],[1.857617187500011,11.443359375],[1.980371093750023,11.418408203124995],[2.230859375000022,11.629150390625],[2.287207031250006,11.69125976562499],[2.36328125,11.840087890624998],[2.38916015625,11.897070312499991],[2.412695312500006,11.999316406249989],[2.36328125,12.188427734374997],[2.366015625000017,12.221923828125],[2.469335937500005,12.262792968749991],[2.598437500000017,12.294335937499994],[2.6484375,12.296777343749993],[2.681347656250011,12.312792968749989],[2.728515625,12.353613281249991],[2.805273437500006,12.383837890624989],[2.850195312500006,12.373681640624994],[2.878125,12.367724609374989],[3.149609375000011,12.118066406249994],[3.267382812500017,11.991894531249997],[3.299121093750017,11.927148437499994],[3.359960937500005,11.88046875],[3.449804687500005,11.85195312499999],[3.53173828125,11.78745117187499],[3.595410156250011,11.6962890625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Burkina Faso","sov_a3":"BFA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Burkina Faso","adm0_a3":"BFA","geou_dif":0,"geounit":"Burkina Faso","gu_a3":"BFA","su_dif":0,"subunit":"Burkina Faso","su_a3":"BFA","brk_diff":0,"name":"Burkina Faso","name_long":"Burkina Faso","brk_a3":"BFA","brk_name":"Burkina Faso","brk_group":null,"abbrev":"B.F.","postal":"BF","formal_en":"Burkina Faso","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Burkina Faso","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":5,"mapcolor13":11,"pop_est":15746232,"gdp_md_est":17820,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BF","iso_a3":"BFA","iso_n3":"854","un_a3":"854","wb_a2":"BF","wb_a3":"BFA","woe_id":-99,"adm0_a3_is":"BFA","adm0_a3_us":"BFA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BFA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[0.217480468750011,14.911474609374991],[0.203808593750011,14.865039062500005],[0.202734375,14.7828125],[0.18505859375,14.65292968749999],[0.163867187500017,14.497216796874993],[0.250585937500006,14.396435546874995],[0.354589843750006,14.288037109374995],[0.382519531250011,14.245800781249997],[0.354882812500023,14.139013671874991],[0.3740234375,14.076367187499995],[0.42919921875,13.972119140624997],[0.522363281250023,13.839746093749993],[0.6181640625,13.703417968750003],[0.6845703125,13.685400390624991],[0.747753906250011,13.674511718749995],[0.786035156250023,13.650048828124994],[0.84228515625,13.626416015624997],[0.89794921875,13.6109375],[0.946582031250017,13.581152343749991],[0.977734375000011,13.551953125],[1.017871093750017,13.467871093749991],[1.1259765625,13.412353515625],[1.201171875,13.357519531249991],[1.1708984375,13.329589843749998],[1.076855468750011,13.340771484374995],[0.988476562500011,13.36484375],[0.976757812500011,13.324511718750001],[0.973046875000023,13.170361328124997],[0.9873046875,13.041894531249994],[1.007910156250006,13.024804687499994],[1.096777343750005,13.001123046874994],[1.308691406250006,12.834277343749989],[1.50048828125,12.676464843749997],[1.56494140625,12.635400390624994],[1.671093750000011,12.619824218749997],[1.789843750000017,12.61328125],[1.840917968750006,12.627880859374997],[1.956152343750006,12.70742187499999],[2.017382812500017,12.716210937499994],[2.073828125,12.713964843749991],[2.104589843750006,12.701269531249991],[2.159765625,12.636425781249997],[2.211523437500006,12.538427734374991],[2.226269531250011,12.466064453125],[2.221386718750011,12.42724609375],[2.203808593750011,12.41259765625],[2.109375,12.393847656249989],[2.068554687500011,12.379150390625],[2.058398437500017,12.357958984374987],[2.072949218750011,12.309375],[2.09140625,12.277978515624994],[2.194433593750006,12.136474609375],[2.343359375,11.945996093749997],[2.38916015625,11.897070312499991],[2.36328125,11.840087890624998],[2.287207031250006,11.69125976562499],[2.230859375000022,11.629150390625],[1.980371093750023,11.418408203124995],[1.857617187500011,11.443359375],[1.6,11.400634765624998],[1.561425781250023,11.449121093749994],[1.501367187500023,11.45556640625],[1.4267578125,11.447119140624991],[1.399707031250017,11.4287109375],[1.391503906250023,11.408007812499989],[1.36484375,11.37890625],[1.3173828125,11.295263671874991],[1.280468750000011,11.273974609374989],[1.234667968750017,11.261035156249989],[1.1787109375,11.262744140624989],[1.145800781250017,11.251904296874997],[1.1455078125,11.210400390624997],[1.135546875000017,11.174365234374987],[1.097558593750023,11.156347656249991],[1.08154296875,11.116015624999989],[1.084570312500006,11.076367187499997],[1.062304687500017,11.05820312499999],[1.013867187500011,11.068115234374998],[0.985058593750011,11.079003906249993],[0.9580078125,11.027783203124997],[0.924609375000017,10.992822265624994],[0.900488281250006,10.993261718749991],[0.642968750000023,10.983056640624994],[0.549121093750017,10.955419921874991],[0.49267578125,10.954980468749993],[0.49072265625,10.978173828124994],[0.484179687500017,10.991992187499989],[0.159277343750006,11.069628906249989],[-0.068603515625,11.115625],[-0.299462890624994,11.166894531249994],[-0.312548828124989,11.118896484375],[-0.345751953124989,11.087939453124989],[-0.395605468749977,11.085693359375],[-0.430322265624994,11.09326171875],[-0.45351562499999,11.056298828124994],[-0.49169921875,11.007617187499989],[-0.545214843749989,10.983691406249989],[-0.59765625,10.953662109374989],[-0.627148437499983,10.927392578124994],[-0.648535156249977,10.9267578125],[-0.701416015625,10.988964843749997],[-0.771582031249977,10.995263671874994],[-0.902929687499977,10.984716796874991],[-0.961816406249994,11.001708984374998],[-1.04248046875,11.010058593749989],[-1.232617187499983,10.997216796874994],[-1.536767578124994,11.02265625],[-1.586474609374989,11.008886718749991],[-1.599658203124989,10.99765625],[-1.900634765625,10.994677734374987],[-2.23193359375,10.99140625],[-2.509179687499994,10.988720703124997],[-2.751660156249983,10.986376953124989],[-2.752099609374994,10.996972656249994],[-2.829931640624977,10.99838867187499],[-2.838574218749983,10.977490234374997],[-2.907324218749977,10.727978515624997],[-2.914892578124977,10.592333984374989],[-2.87841796875,10.507958984374993],[-2.837207031249989,10.454638671874987],[-2.791162109374994,10.432421874999989],[-2.78662109375,10.401904296874989],[-2.823437499999983,10.362939453124994],[-2.8203125,10.322851562499991],[-2.777099609375,10.281591796874991],[-2.766503906249994,10.238183593749994],[-2.788476562499994,10.192578125],[-2.783203125,10.08310546874999],[-2.750732421875,9.90966796875],[-2.749804687499989,9.797216796874991],[-2.780517578125,9.745849609375],[-2.765966796874977,9.658056640624991],[-2.706201171874994,9.533935546875],[-2.695849609374989,9.481347656249994],[-2.7171875,9.457128906249991],[-2.7666015625,9.424707031249994],[-2.816748046874977,9.425830078124989],[-2.875146484374994,9.500927734374997],[-2.90087890625,9.534619140624997],[-2.948144531249994,9.610742187499994],[-2.98828125,9.687353515624991],[-3.042626953124994,9.720898437499997],[-3.095800781249977,9.752099609374993],[-3.160693359374989,9.849169921874989],[-3.223535156249994,9.895458984374997],[-3.289697265624994,9.882226562499994],[-3.386279296874989,9.900292968749994],[-3.581152343749977,9.92431640625],[-3.790625,9.9171875],[-3.877636718749983,9.89492187499999],[-3.963476562499977,9.859619140625],[-4.18115234375,9.781738281249998],[-4.267187499999977,9.743261718749991],[-4.332226562499983,9.645703125],[-4.406201171874983,9.647998046874989],[-4.480273437499989,9.679248046874989],[-4.526611328125,9.723486328124991],[-4.625830078124977,9.713574218749997],[-4.721777343749977,9.756542968749997],[-4.814453125,9.841162109374991],[-4.882714843749994,9.868945312499989],[-4.969921874999983,9.93007812499999],[-4.994042968749994,10.04648437499999],[-5.04931640625,10.128320312499994],[-5.099853515625,10.241601562499994],[-5.175292968749999,10.292626953124994],[-5.262304687499977,10.319677734374991],[-5.382275390624982,10.314013671874989],[-5.461279296874977,10.359570312499997],[-5.523535156249976,10.426025390625],[-5.507031249999983,10.483447265624989],[-5.479003906249999,10.565087890624994],[-5.475683593749977,10.643945312499994],[-5.457080078124989,10.771386718749994],[-5.468554687499989,10.931054687499994],[-5.490478515625,11.042382812499994],[-5.42421875,11.088720703124991],[-5.347412109375,11.130273437499993],[-5.299853515624989,11.205957031249994],[-5.250244140625,11.375781249999989],[-5.229394531249994,11.522460937499998],[-5.244775390624994,11.57675781249999],[-5.270312499999988,11.619873046874998],[-5.29052734375,11.683300781249997],[-5.302001953124999,11.760449218749995],[-5.288134765624989,11.827929687499989],[-5.230175781249983,11.890283203124994],[-5.157519531249988,11.9423828125],[-5.105908203124983,11.967529296875],[-4.968994140625,11.993310546874994],[-4.797949218749977,12.032128906249994],[-4.699316406249977,12.076171875],[-4.627246093749989,12.120214843749991],[-4.5869140625,12.155029296875],[-4.546044921874994,12.226464843749994],[-4.479882812499994,12.281787109374989],[-4.4287109375,12.337597656249997],[-4.421582031249983,12.493066406249994],[-4.421923828124989,12.581591796874989],[-4.459863281249994,12.63037109375],[-4.480615234374994,12.672216796874991],[-4.227099609374989,12.793701171874998],[-4.225244140624994,12.879492187499991],[-4.260644531249994,12.975341796875],[-4.310253906249983,13.052490234374998],[-4.328710937499976,13.119042968749993],[-4.258691406249994,13.197314453124987],[-4.196191406249994,13.256152343750001],[-4.151025390624994,13.306201171875003],[-4.05117187499999,13.38242187499999],[-3.947314453124989,13.402197265624991],[-3.853466796874983,13.37353515625],[-3.575781249999977,13.194189453124991],[-3.527636718749988,13.18271484374999],[-3.469921874999983,13.196386718749991],[-3.396728515625,13.243701171875003],[-3.3017578125,13.28076171875],[-3.266748046874994,13.40078125],[-3.270166015624994,13.577441406250003],[-3.248632812499977,13.658349609374994],[-3.198437499999983,13.6728515625],[-3.038671874999977,13.639111328124995],[-2.997216796874994,13.63710937499999],[-2.950830078124994,13.6484375],[-2.917089843749977,13.679492187500001],[-2.918505859374989,13.736376953125003],[-2.925878906249977,13.786767578124994],[-2.873925781249994,13.950732421875003],[-2.778857421874989,14.073730468749998],[-2.586718749999989,14.227587890625003],[-2.526904296874989,14.25830078125],[-2.457226562499983,14.274121093749995],[-2.113232421874983,14.16845703125],[-2.05712890625,14.194628906250003],[-1.97304687499999,14.456542968749998],[-1.879785156249994,14.481494140625003],[-1.767773437499983,14.486035156249997],[-1.695068359375,14.508496093749995],[-1.657324218749977,14.526806640624995],[-1.49365234375,14.626074218749991],[-1.204980468749994,14.761523437500001],[-1.049560546875,14.81953125],[-1.019189453124994,14.841357421875003],[-0.907958984375,14.937402343749996],[-0.760449218749983,15.047753906249994],[-0.666455078124983,15.069775390624995],[-0.536523437499994,15.077880859374998],[-0.454492187499994,15.05966796874999],[-0.432275390624994,15.028515625],[-0.405419921874994,15.0125],[-0.235888671874989,15.059423828124991],[0.00732421875,14.984814453124995],[0.217480468750011,14.911474609374991]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Botswana","sov_a3":"BWA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Botswana","adm0_a3":"BWA","geou_dif":0,"geounit":"Botswana","gu_a3":"BWA","su_dif":0,"subunit":"Botswana","su_a3":"BWA","brk_diff":0,"name":"Botswana","name_long":"Botswana","brk_a3":"BWA","brk_name":"Botswana","brk_group":null,"abbrev":"Bwa.","postal":"BW","formal_en":"Republic of Botswana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Botswana","name_alt":null,"mapcolor7":6,"mapcolor8":5,"mapcolor9":7,"mapcolor13":3,"pop_est":1990876,"gdp_md_est":27060,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BW","iso_a3":"BWA","iso_n3":"072","un_a3":"072","wb_a2":"BW","wb_a3":"BWA","woe_id":-99,"adm0_a3_is":"BWA","adm0_a3_us":"BWA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BWA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[25.2587890625,-17.793554687500006],[25.239062500000017,-17.843066406250003],[25.224023437500023,-17.91523437500001],[25.242285156250006,-17.969042968750003],[25.28242187500001,-18.04121093750001],[25.340234375000023,-18.1044921875],[25.384375,-18.14199218750001],[25.43671875000001,-18.234960937500006],[25.489257812499996,-18.35126953125001],[25.55830078125001,-18.441796875],[25.76123046875,-18.64921875],[25.78369140625,-18.723535156250005],[25.811914062500023,-18.79707031250001],[25.939355468750023,-18.93867187500001],[25.959179687500008,-18.98564453125],[25.95068359375,-19.08173828125001],[26.081933593750023,-19.369921875],[26.168066406250002,-19.53828125000001],[26.241015625000017,-19.5693359375],[26.474609375,-19.748632812500006],[26.678222656249996,-19.89277343750001],[26.91669921875001,-19.99013671875001],[27.091796875,-20.05419921875],[27.17822265625,-20.10097656250001],[27.221484375000017,-20.145800781250003],[27.256738281250023,-20.23203125],[27.274609375,-20.3818359375],[27.28076171875,-20.47871093750001],[27.468945312500008,-20.47480468750001],[27.624609375,-20.48359375000001],[27.679296875,-20.503027343750006],[27.69960937500002,-20.53066406250001],[27.69482421875,-20.59453125],[27.69697265625001,-20.689746093750003],[27.704296875,-20.76640625],[27.688085937500006,-20.848339843750008],[27.67695312500001,-20.94482421875],[27.66943359375,-21.0642578125],[27.693457031250006,-21.11103515625001],[27.844140625000023,-21.261523437500003],[27.907421875,-21.35908203125001],[27.974609375,-21.50673828125001],[28.01406250000002,-21.55419921875],[28.04560546875001,-21.573046875],[28.181640625,-21.58935546875],[28.532031250000017,-21.65126953125001],[28.74775390625001,-21.707617187500006],[28.919335937500023,-21.766015625],[28.99072265625,-21.78144531250001],[29.02558593750001,-21.796875],[29.03730468750001,-21.811328125],[29.01582031250001,-21.93994140625],[29.023339843750023,-21.98125],[29.042382812500023,-22.018359375],[29.07148437500001,-22.047460937500006],[29.106835937500023,-22.065722656250003],[29.237207031250023,-22.07949218750001],[29.315234375000014,-22.15771484375],[29.36484375,-22.193945312500006],[29.1298828125,-22.21328125],[29.013476562500017,-22.278417968750006],[28.945800781249996,-22.395117187500006],[28.83984375,-22.480859375],[28.69550781250001,-22.53544921875],[28.542871093750023,-22.57294921875001],[28.38173828125002,-22.593359375],[28.21015625000001,-22.69365234375],[28.027929687500006,-22.87373046875001],[27.93505859375,-22.987011718750008],[27.93134765625001,-23.03359375],[27.890527343750023,-23.07392578125001],[27.812597656250002,-23.108007812500002],[27.7685546875,-23.14892578125],[27.758300781249996,-23.196777343749996],[27.716796875,-23.21962890625001],[27.643847656250017,-23.21767578125001],[27.59267578125002,-23.25263671875001],[27.563183593750008,-23.324609375],[27.49873046875001,-23.36835937500001],[27.399218750000014,-23.38359375],[27.313378906250023,-23.42421875],[27.2412109375,-23.490039062500003],[27.185546875,-23.5234375],[27.146386718750023,-23.5244140625],[27.085546875,-23.577929687500003],[26.98701171875001,-23.70458984375],[26.97060546875002,-23.763476562500003],[26.835058593750002,-24.240820312500006],[26.761132812500023,-24.297167968750003],[26.617773437500006,-24.3955078125],[26.5015625,-24.51328125],[26.451757812500006,-24.58271484375001],[26.39716796875001,-24.613574218750003],[26.130859375,-24.671484375],[26.031835937500006,-24.702441406250003],[25.912109375,-24.747460937500005],[25.8818359375,-24.787988281250005],[25.852441406250023,-24.93525390625001],[25.769921875000023,-25.146484375],[25.70263671875,-25.30234375],[25.6591796875,-25.437890625],[25.583789062500014,-25.60625],[25.518164062500006,-25.66279296875001],[25.443652343750017,-25.714453125],[25.34619140625,-25.73994140625001],[25.213378906249996,-25.75625],[25.09248046875001,-25.75146484375],[24.99892578125002,-25.754003906250006],[24.869238281250006,-25.8134765625],[24.748144531250002,-25.8173828125],[24.55585937500001,-25.78310546875001],[24.400195312500017,-25.749804687500003],[24.33056640625,-25.74287109375001],[24.19296875,-25.632910156250006],[24.1044921875,-25.634863281250006],[23.969531250000017,-25.626074218750006],[23.89375,-25.600878906250003],[23.82343750000001,-25.544628906250008],[23.670703125000017,-25.433984375],[23.521484375,-25.34443359375001],[23.389257812500006,-25.29140625],[23.266015625000023,-25.2666015625],[23.148730468750017,-25.288671875],[23.057519531250023,-25.312304687500003],[23.022070312500006,-25.32412109375001],[22.951269531250006,-25.37031250000001],[22.878808593750023,-25.45791015625001],[22.818945312500006,-25.59511718750001],[22.79609375000001,-25.67910156250001],[22.72900390625,-25.857324218750005],[22.640234375,-26.071191406250005],[22.59765625,-26.13271484375001],[22.548632812500017,-26.17841796875001],[22.47089843750001,-26.219042968750003],[22.217578125000017,-26.38886718750001],[22.090917968750006,-26.580175781250006],[22.01093750000001,-26.635839843750006],[21.91455078125,-26.661914062500003],[21.83320312500001,-26.678320312500006],[21.78828125000001,-26.710058593750006],[21.738085937500017,-26.80683593750001],[21.69472656250002,-26.840917968750006],[21.646289062500017,-26.85419921875001],[21.501367187500023,-26.84267578125001],[21.454980468750023,-26.8328125],[21.070996093750008,-26.85175781250001],[20.953906250000017,-26.82109375],[20.870898437500017,-26.80878906250001],[20.73984375,-26.848828125],[20.68505859375,-26.82246093750001],[20.641406250000017,-26.7421875],[20.619921875000017,-26.580859375],[20.626757812500017,-26.44384765625],[20.697851562500002,-26.340136718750003],[20.75703125000001,-26.26416015625],[20.815039062500006,-26.16494140625001],[20.822656250000023,-26.12060546875],[20.81103515625,-26.08056640625],[20.799414062500006,-25.9990234375],[20.79316406250001,-25.915625],[20.710742187500017,-25.733203125],[20.609277343750023,-25.491210937499996],[20.47314453125,-25.221289062500006],[20.4306640625,-25.147070312500006],[20.34521484375,-25.029882812500006],[20.028613281250017,-24.80703125],[19.98046875,-24.77675781250001],[19.98046875,-24.751953125],[19.980175781250008,-24.535742187500006],[19.97988281250002,-24.249023437499996],[19.979589843750006,-23.962402343749996],[19.979296875000017,-23.67578125],[19.978906250000023,-23.389160156249996],[19.978515625,-23.1025390625],[19.978222656250008,-22.81591796875],[19.977929687500023,-22.529296875],[19.977636718750006,-22.242578125],[19.977343750000017,-22.00019531250001],[20.205371093750017,-22.00019531250001],[20.4875,-22.00019531250001],[20.82275390625,-22.00019531250001],[20.970996093750017,-22.00019531250001],[20.9794921875,-21.9619140625],[20.979296875000017,-21.78408203125001],[20.97871093750001,-21.376074218750006],[20.978125,-20.96816406250001],[20.977441406250023,-20.56025390625001],[20.976855468750017,-20.15234375],[20.976171875,-19.74433593750001],[20.9755859375,-19.33642578125],[20.975,-18.928515625],[20.97431640625001,-18.5205078125],[20.97412109375,-18.31884765625],[21.232519531250002,-18.30683593750001],[21.529687500000023,-18.265625],[22.01142578125001,-18.19863281250001],[22.460058593750002,-18.11572265625],[22.752734375000017,-18.0671875],[23.099902343750017,-18.009570312500003],[23.219335937500006,-17.99970703125001],[23.2515625,-18.00751953125001],[23.298632812500017,-18.02734375],[23.459765625000017,-18.231054687500006],[23.56015625,-18.38642578125001],[23.58056640625,-18.452929687500003],[23.599707031250002,-18.4599609375],[23.64716796875001,-18.44941406250001],[23.700488281250017,-18.42431640625],[23.8642578125,-18.26953125],[23.898339843750023,-18.22919921875001],[24.002636718750008,-18.154101562500003],[24.129296875000023,-18.077539062500005],[24.243945312500017,-18.0234375],[24.358984375,-17.97822265625001],[24.412207031250002,-17.989453125],[24.474902343750017,-18.02851562500001],[24.530566406250017,-18.052734375],[24.79218750000001,-17.86464843750001],[24.90908203125002,-17.821386718750006],[25.21601562500001,-17.78759765625],[25.2587890625,-17.793554687500006]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Burundi","sov_a3":"BDI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Burundi","adm0_a3":"BDI","geou_dif":0,"geounit":"Burundi","gu_a3":"BDI","su_dif":0,"subunit":"Burundi","su_a3":"BDI","brk_diff":0,"name":"Burundi","name_long":"Burundi","brk_a3":"BDI","brk_name":"Burundi","brk_group":null,"abbrev":"Bur.","postal":"BI","formal_en":"Republic of Burundi","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Burundi","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":8,"pop_est":8988091,"gdp_md_est":3102,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BI","iso_a3":"BDI","iso_n3":"108","un_a3":"108","wb_a2":"BI","wb_a3":"BDI","woe_id":-99,"adm0_a3_is":"BDI","adm0_a3_us":"BDI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BDI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[30.55361328125002,-2.400097656250011],[30.53369140625,-2.42626953125],[30.441992187500006,-2.613476562500011],[30.424218750000023,-2.6416015625],[30.434375,-2.658886718750011],[30.473339843750008,-2.6943359375],[30.450488281250017,-2.753222656250003],[30.44130859375002,-2.76904296875],[30.42402343750001,-2.824023437500003],[30.43349609375002,-2.87451171875],[30.455566406249996,-2.893164062500006],[30.515039062500023,-2.917578125],[30.60429687500002,-2.935253906250011],[30.70947265625,-2.977246093750011],[30.7802734375,-2.98486328125],[30.796875,-3.01513671875],[30.793554687500002,-3.0693359375],[30.811132812500002,-3.116406250000011],[30.811425781250023,-3.200585937500008],[30.79023437500001,-3.274609375000011],[30.681835937500008,-3.309375],[30.62607421875001,-3.347363281250011],[30.6109375,-3.366406250000011],[30.624609375,-3.388671875],[30.631933593750006,-3.418652343750011],[30.52988281250001,-3.492480468750003],[30.425,-3.5888671875],[30.4,-3.65390625],[30.37910156250001,-3.730761718750003],[30.348437500000017,-3.77978515625],[30.268554687499996,-3.850488281250009],[30.187109375,-3.992871093750011],[30.14716796875001,-4.085351562500009],[29.947265625,-4.307324218750011],[29.76953125,-4.418066406250006],[29.717773437499996,-4.455859375],[29.403222656250026,-4.449316406250006],[29.379199218750017,-4.299707031250009],[29.331347656250014,-4.095410156250011],[29.223242187500006,-3.910839843750011],[29.211816406250023,-3.833789062500002],[29.216796875,-3.684960937500008],[29.217187500000026,-3.475683593750006],[29.210058593750002,-3.36328125],[29.21230468750002,-3.28125],[29.22607421875,-3.138671875],[29.224414062500017,-3.053515625],[29.153222656250023,-2.955273437500011],[29.064746093750017,-2.850781250000011],[29.016601562499996,-2.799609375],[29.014160156249996,-2.75830078125],[29.01435546875001,-2.72021484375],[29.028613281250017,-2.66455078125],[29.063183593750008,-2.6025390625],[29.10205078125,-2.595703125],[29.197558593750014,-2.620312500000011],[29.29707031250001,-2.673046875000011],[29.34980468750001,-2.79150390625],[29.390234375,-2.80859375],[29.463671875000017,-2.808398437500003],[29.6513671875,-2.792773437500003],[29.698046875000017,-2.794726562500002],[29.783398437500008,-2.76640625],[29.868164062500004,-2.71640625],[29.892578125,-2.664648437500006],[29.912402343750014,-2.548632812500003],[29.930175781250004,-2.339550781250011],[29.973437500000017,-2.337109375000011],[30.091894531250006,-2.411523437500009],[30.117285156250006,-2.416601562500006],[30.14228515625001,-2.413964843750009],[30.183300781250008,-2.377050781250006],[30.23378906250002,-2.347070312500008],[30.270996093749996,-2.347851562500011],[30.408496093750014,-2.31298828125],[30.482226562500017,-2.376074218750006],[30.52890625,-2.395605468750006],[30.55361328125002,-2.400097656250011]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Central African Republic","sov_a3":"CAF","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Central African Republic","adm0_a3":"CAF","geou_dif":0,"geounit":"Central African Republic","gu_a3":"CAF","su_dif":0,"subunit":"Central African Republic","su_a3":"CAF","brk_diff":0,"name":"Central African Rep.","name_long":"Central African Republic","brk_a3":"CAF","brk_name":"Central African Rep.","brk_group":null,"abbrev":"C.A.R.","postal":"CF","formal_en":"Central African Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Central African Republic","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":6,"mapcolor13":9,"pop_est":4511488,"gdp_md_est":3198,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"CF","iso_a3":"CAF","iso_n3":"140","un_a3":"140","wb_a2":"CF","wb_a3":"CAF","woe_id":-99,"adm0_a3_is":"CAF","adm0_a3_us":"CAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":20,"long_len":24,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"CAF.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.86005859375001,10.919677734375],[22.930761718750006,10.7953125],[22.96435546875,10.751806640624991],[23.255859375,10.457812499999989],[23.312304687500017,10.387939453125],[23.456640625,10.174267578124997],[23.545019531250006,10.030078124999989],[23.646289062500014,9.822900390624994],[23.65625,9.710351562499993],[23.64277343750001,9.613916015624994],[23.62265625,9.340625],[23.59609375000002,9.261914062499997],[23.468261718749996,9.11474609375],[23.462792968750023,9.048486328124993],[23.489062500000017,8.993310546874994],[23.528027343750008,8.970605468749994],[23.551855468750006,8.943212890624991],[23.53730468750001,8.815820312499994],[23.58320312500001,8.765820312499997],[23.679296875,8.732470703124989],[23.921972656250006,8.709716796875],[24.048144531250017,8.691308593749994],[24.147363281250023,8.665625],[24.19482421875,8.653369140624989],[24.220898437500008,8.608251953124991],[24.179980468750017,8.461132812499997],[24.208398437500023,8.369140625],[24.291406250000023,8.29140625],[24.37548828125,8.258447265624994],[24.4560546875,8.239453125],[24.736718750000023,8.191552734374994],[24.853320312500017,8.137548828124991],[25.00722656250002,7.96484375],[25.20039062500001,7.807910156249989],[25.247363281250017,7.724560546874997],[25.238671875000023,7.648974609374988],[25.18134765625001,7.557226562499991],[25.19013671875001,7.519335937499989],[25.27890625,7.427490234375001],[25.380664062500014,7.333398437499993],[25.56660156250001,7.228710937499997],[25.888964843750017,7.06494140625],[26.036523437500023,6.955224609374993],[26.0869140625,6.872119140624989],[26.169335937500023,6.78173828125],[26.284570312500023,6.699023437499989],[26.361816406249996,6.635302734374989],[26.30859375,6.455322265625],[26.32460937500002,6.396240234375],[26.353320312500017,6.344921875],[26.420507812500002,6.274169921875],[26.44746093750001,6.183007812499994],[26.514257812500002,6.069238281249994],[26.593652343750023,6.017529296874997],[26.726367187500017,5.998242187499997],[26.796484375,5.945507812499997],[26.942285156250023,5.854931640624996],[27.083398437500023,5.77685546875],[27.143945312500023,5.722949218749989],[27.18125,5.675146484374991],[27.21337890625,5.618798828124994],[27.229101562500006,5.5625],[27.232519531250006,5.440771484374991],[27.256738281250023,5.289648437499991],[27.332421875000023,5.186328124999989],[27.403320312499996,5.109179687499989],[27.11494140625001,5.197851562499991],[27.071875,5.199755859374988],[27.020605468750006,5.184375],[26.8701171875,5.07568359375],[26.822070312500014,5.062402343749994],[26.767578125,5.071923828124994],[26.632617187500017,5.085205078125],[26.17353515625001,5.171142578125],[25.819921875,5.253710937499988],[25.713867187499996,5.28369140625],[25.525097656250008,5.31210937499999],[25.400195312500017,5.255908203124988],[25.28310546875002,5.062695312499997],[25.249316406250017,5.024560546874994],[25.065234375000017,4.967431640624994],[24.978417968750023,4.982958984374989],[24.76552734375002,4.93007812499999],[24.437109375,5.009960937499997],[24.31982421875,4.994140625],[24.22773437500001,4.953857421875],[23.99169921875,4.866259765624989],[23.848437500000017,4.816357421874997],[23.681835937500008,4.770800781249989],[23.523632812500008,4.701269531249991],[23.41718750000001,4.663134765624989],[23.312890625000023,4.663525390624997],[23.218847656250006,4.702978515624991],[23.11591796875001,4.736914062499991],[22.99287109375001,4.743847656249997],[22.864550781250017,4.723876953125],[22.755761718750023,4.646679687499996],[22.711718750000017,4.591748046874997],[22.6171875,4.445556640624999],[22.505664062500017,4.207666015624994],[22.461816406250023,4.15976562499999],[22.44970703125,4.155126953124991],[22.422167968750017,4.134960937499997],[21.908203125,4.25390625],[21.687011718749996,4.281396484374994],[21.53759765625,4.244824218749997],[21.350195312500002,4.311376953124991],[21.268359375000014,4.323095703124991],[21.229785156250017,4.302197265624997],[21.125585937500002,4.332177734374994],[20.95576171875001,4.413134765624989],[20.79296875,4.447314453124989],[20.6474609375,4.435644531249991],[20.558105468749996,4.462695312499989],[20.48652343750001,4.541552734374989],[20.3935546875,4.686181640624994],[20.226367187500017,4.829638671874989],[20.002343750000023,4.944726562499994],[19.8625,5.031298828124989],[19.80654296875002,5.089306640624996],[19.68603515625,5.121386718749989],[19.5009765625,5.127490234374989],[19.32343750000001,5.070751953124997],[19.06855468750001,4.891406249999989],[18.83173828125001,4.5234375],[18.69990234375001,4.382617187499989],[18.59414062500002,4.346240234374989],[18.567480468750006,4.257568359375],[18.619921875000017,4.116601562499994],[18.633691406250023,3.954296875],[18.5966796875,3.6787109375],[18.6103515625,3.478417968749994],[18.553808593750006,3.510205078124997],[18.499804687500017,3.604101562499991],[18.474414062500017,3.622998046874997],[18.318164062500017,3.580810546875],[18.237109375000017,3.542675781249997],[18.193945312500006,3.505419921874988],[18.160937500000017,3.499804687499988],[18.111328125,3.551074218749989],[18.072265625,3.560302734375],[18.0107421875,3.550830078124989],[17.94794921875001,3.5517578125],[17.907128906250023,3.558398437499989],[17.88037109375,3.553857421874994],[17.806640625,3.584179687499997],[17.537695312500006,3.66162109375],[17.491601562500023,3.687304687499988],[17.437988281249996,3.684619140624988],[17.2984375,3.6171875],[17.224707031250006,3.598437499999988],[17.002539062500002,3.556689453124989],[16.76435546875001,3.536279296874994],[16.67333984375,3.535205078124989],[16.610742187500023,3.50537109375],[16.570410156250006,3.463085937499997],[16.543066406250006,3.36953125],[16.49628906250001,3.208837890624991],[16.47675781250001,3.165136718749991],[16.480078125,3.100976562499994],[16.466210937500023,2.993212890624989],[16.459570312500002,2.896533203124989],[16.468554687500017,2.831738281249997],[16.401269531250023,2.701025390624991],[16.319628906250017,2.542773437499989],[16.251757812500014,2.406787109374988],[16.183398437500017,2.270068359374989],[16.136132812500023,2.36376953125],[16.106738281250017,2.473486328124991],[16.095507812500014,2.59921875],[16.101855468750017,2.632666015624991],[16.08349609375,2.670019531249991],[16.082128906250006,2.678173828124997],[16.05927734375001,2.772998046874988],[16.082421875000023,2.839111328125],[16.0634765625,2.90859375],[16.008203125000023,2.976660156249991],[15.958007812499998,3.028710937499994],[15.9287109375,3.07578125],[15.904882812500006,3.095849609374994],[15.849316406250011,3.103076171874989],[15.775,3.127197265625],[15.676562500000019,3.2296875],[15.580859375000017,3.329296875],[15.458398437500023,3.456835937499989],[15.360156250000019,3.567138671875],[15.23984375,3.7021484375],[15.128710937500015,3.826904296875],[15.062109375,3.947216796874997],[15.034863281250011,4.016357421875],[15.0673828125,4.02294921875],[15.115429687500013,4.024462890624989],[15.135839843750004,4.036914062499989],[15.136914062500011,4.069140624999989],[15.0875,4.163964843749994],[15.063574218750006,4.284863281249997],[15.022753906250017,4.358544921874994],[14.8935546875,4.471875],[14.770410156250021,4.55810546875],[14.73125,4.602392578124991],[14.708984375,4.665576171874989],[14.66171875,5.065527343749991],[14.640625,5.179052734374991],[14.60175781250001,5.228808593749989],[14.573535156250017,5.251708984375],[14.56298828125,5.279931640624994],[14.568066406250013,5.35107421875],[14.584375,5.414746093749997],[14.58359375,5.439648437499997],[14.61689453125001,5.495507812499994],[14.61689453125001,5.865136718749993],[14.598828125000011,5.883984375],[14.577246093750004,5.916015625],[14.542480468749998,5.913574218749999],[14.503125,5.916894531249994],[14.4638671875,5.970703125],[14.431152343749998,6.038720703124994],[14.440722656250017,6.086718749999989],[14.475,6.126806640624991],[14.512109375000025,6.161914062499989],[14.559375,6.191210937499989],[14.699511718750017,6.250244140625],[14.739257812499998,6.279785156249999],[14.764062500000021,6.316357421874997],[14.780371093750004,6.36572265625],[14.861914062500004,6.555712890624989],[14.982714843750017,6.7453125],[15.034570312500023,6.784423828125],[15.086328125000023,6.909912109375],[15.157128906250021,7.063574218749991],[15.185839843750017,7.134912109374994],[15.20673828125001,7.206152343749991],[15.245898437500017,7.263574218749994],[15.379101562500011,7.358154296875],[15.480078125,7.523779296874991],[15.589257812500021,7.515039062499993],[15.701269531250006,7.488427734374993],[15.845019531250015,7.475292968749997],[15.957617187500006,7.507568359374999],[16.030664062500023,7.572119140624991],[16.19111328125001,7.6234375],[16.37890625,7.683544921874996],[16.404394531250006,7.772363281249994],[16.459375,7.818994140624995],[16.523242187500014,7.859960937499991],[16.545312500000023,7.865478515624999],[16.550195312500023,7.835888671874997],[16.588964843750006,7.743359375],[16.668359375000023,7.651757812499993],[16.784765625,7.550976562499996],[16.818164062500017,7.557324218749996],[16.89033203125001,7.633691406249993],[17.071972656250008,7.680810546874993],[17.117968750000017,7.701904296874999],[17.24697265625002,7.81298828125],[17.402148437500014,7.884570312499989],[17.436425781250023,7.890917968749989],[17.49267578125,7.909814453124993],[17.6494140625,7.98359375],[17.760839843750006,7.973828125],[17.940136718750008,7.985449218749991],[18.238867187500006,8.020361328124991],[18.455078125,8.032031249999989],[18.56416015625001,8.0458984375],[18.591601562500017,8.060791015625],[18.633593750000017,8.167724609375],[18.66621093750001,8.197705078124997],[18.747460937500023,8.243798828124994],[18.90644531250001,8.405078124999989],[19.010839843750006,8.541210937499997],[19.039843750000017,8.5869140625],[19.042382812500023,8.590283203124995],[19.063867187500023,8.598828125],[19.108691406250014,8.656152343749993],[19.06416015625001,8.715429687499991],[18.886035156250017,8.836035156249991],[18.888574218750023,8.852490234374997],[18.878320312500023,8.873193359374993],[18.88828125,8.889746093749991],[18.95625,8.938867187499994],[19.0478515625,8.995019531249993],[19.1455078125,9.01596679687499],[19.40029296875002,9.011621093749994],[19.617480468750014,9.023583984374994],[19.668359375000023,9.020898437499994],[19.837695312500014,9.049365234374989],[19.953515625000023,9.075146484374997],[20.072656250000023,9.13320312499999],[20.342089843750017,9.127099609374994],[20.56689453125,9.274951171874989],[20.631445312500002,9.301367187499991],[20.65966796875,9.324511718749987],[20.66816406250001,9.347119140624997],[20.773242187500017,9.405664062499993],[20.891015625000023,9.527148437499989],[20.984179687500014,9.636279296874989],[21.00947265625001,9.713232421874991],[21.26386718750001,9.974609375],[21.352441406250023,9.96914062499999],[21.39599609375,10.001367187499994],[21.496875,10.175683593749994],[21.52802734375001,10.207812499999989],[21.57578125,10.218554687499989],[21.63271484375002,10.23828125],[21.682714843750006,10.289843749999989],[21.72578125000001,10.366552734374991],[21.726171875,10.461621093749997],[21.70654296875,10.537890624999989],[21.70654296875,10.574804687499991],[21.73066406250001,10.608691406249987],[21.771484375,10.642822265625],[21.96484375,10.736669921874991],[22.013769531250006,10.782031249999989],[22.04316406250001,10.822705078124995],[22.09716796875,10.830078125],[22.15625,10.826074218749994],[22.193652343750017,10.851367187499987],[22.2359375,10.89414062499999],[22.36982421875001,10.951513671874991],[22.49384765625001,10.996240234374994],[22.6240234375,10.977343749999989],[22.730175781250008,10.954052734374997],[22.8173828125,10.927197265624997],[22.86005859375001,10.919677734375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ivory Coast","sov_a3":"CIV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ivory Coast","adm0_a3":"CIV","geou_dif":0,"geounit":"Ivory Coast","gu_a3":"CIV","su_dif":0,"subunit":"Ivory Coast","su_a3":"CIV","brk_diff":0,"name":"Côte d'Ivoire","name_long":"Côte d'Ivoire","brk_a3":"CIV","brk_name":"Côte d'Ivoire","brk_group":null,"abbrev":"I.C.","postal":"CI","formal_en":"Republic of Ivory Coast","formal_fr":"Republic of Cote D'Ivoire","note_adm0":null,"note_brk":null,"name_sort":"Côte d'Ivoire","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":3,"mapcolor13":3,"pop_est":20617068,"gdp_md_est":33850,"pop_year":-99,"lastcensus":1998,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CI","iso_a3":"CIV","iso_n3":"384","un_a3":"384","wb_a2":"CI","wb_a3":"CIV","woe_id":-99,"adm0_a3_is":"CIV","adm0_a3_us":"CIV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":13,"long_len":13,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CIV.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-3.08671875,5.128320312500023],[-3.114013671875028,5.088671875000031],[-3.246386718749988,5.114062499999959],[-3.21489257812496,5.147216796875056],[-3.08671875,5.128320312500023]]],[[[-6.230664062500011,10.597509765625018],[-6.239746093749999,10.558105468749986],[-6.217773437499943,10.476269531250011],[-6.190673828124943,10.400292968749994],[-6.192626953124972,10.369433593750003],[-6.214990234374994,10.322363281250006],[-6.241308593749949,10.279199218750007],[-6.238378906249976,10.26162109374998],[-6.196875,10.232128906250011],[-6.117187499999971,10.201904296874984],[-6.034570312499937,10.194824218750055],[-5.98867187499999,10.23911132812502],[-5.940673828125,10.275097656249969],[-5.907568359375005,10.307226562500034],[-5.896191406249983,10.354736328125028],[-5.843847656249977,10.389550781250023],[-5.694287109374983,10.433203125000034],[-5.556591796874983,10.439941406249986],[-5.52353515624992,10.426025390624986],[-5.46127929687492,10.35957031250004],[-5.382275390625011,10.314013671875003],[-5.262304687499977,10.319677734374991],[-5.175292968749943,10.292626953124994],[-5.099853515625028,10.241601562499994],[-5.049316406249943,10.128320312500009],[-4.994042968749966,10.046484375000034],[-4.969921874999926,9.930078125000023],[-4.882714843750023,9.868945312500003],[-4.814453124999972,9.841162109375034],[-4.72177734374992,9.756542968750026],[-4.625830078125006,9.713574218749969],[-4.526611328124943,9.723486328125034],[-4.480273437500016,9.679248046875003],[-4.406201171874926,9.647998046875031],[-4.332226562499955,9.645703125],[-4.267187499999949,9.743261718749977],[-4.18115234375,9.781738281249998],[-3.963476562499977,9.859619140624972],[-3.877636718749983,9.894921874999966],[-3.790625,9.917187499999983],[-3.581152343749977,9.924316406250014],[-3.38627929687496,9.900292968749994],[-3.289697265625023,9.882226562500051],[-3.223535156249937,9.895458984374997],[-3.160693359374932,9.849169921874974],[-3.095800781249949,9.752099609375007],[-3.042626953124937,9.72089843750004],[-2.988281249999972,9.687353515624961],[-2.948144531249966,9.61074218749998],[-2.900878906249943,9.534619140625026],[-2.875146484374937,9.500927734374997],[-2.816748046874949,9.425830078124974],[-2.766601562499943,9.424707031250009],[-2.7171875,9.457128906250048],[-2.695849609374989,9.481347656250009],[-2.686132812499977,9.43173828125002],[-2.705761718749983,9.351367187499989],[-2.701806640624966,9.301660156249994],[-2.674218749999937,9.282617187500023],[-2.689208984374972,9.218603515625034],[-2.746679687499977,9.109619140625028],[-2.74692382812492,9.04511718750004],[-2.689892578124955,9.02509765625004],[-2.649218750000017,8.956591796875031],[-2.624902343749937,8.839599609375],[-2.600390625000017,8.800439453125023],[-2.597998046874949,8.7763671875],[-2.556884765624943,8.493017578125006],[-2.505859375000028,8.208740234375],[-2.538281249999955,8.171630859374986],[-2.582763671874972,8.160791015624994],[-2.61171875,8.147558593749963],[-2.619970703125006,8.12109375],[-2.600976562499937,8.082226562499983],[-2.613378906249977,8.046679687500017],[-2.668847656249994,8.022216796875014],[-2.789746093749955,7.931933593750003],[-2.79814453124996,7.895996093750056],[-2.830126953124989,7.819042968750011],[-2.856884765624955,7.772070312500034],[-2.896337890624977,7.685009765624969],[-2.959082031249977,7.454541015624996],[-2.982324218750023,7.263623046875011],[-2.985791015624926,7.204882812500031],[-3.01015625,7.16376953125001],[-3.03769531249992,7.104589843750034],[-3.168896484374926,6.940966796875003],[-3.235791015624955,6.80722656250002],[-3.227148437499977,6.749121093749991],[-3.224121093749972,6.690771484375005],[-3.243896484375,6.648681640625057],[-3.240283203124989,6.535644531250028],[-3.224023437499966,6.441064453125037],[-3.200585937499966,6.348242187500033],[-3.105566406249977,6.085644531250011],[-3.056152343749943,5.926269531250043],[-3.025292968749965,5.797753906249979],[-2.998291015624972,5.711328125000051],[-2.972802734374937,5.676269531250013],[-2.96225585937492,5.643017578124983],[-2.821191406249966,5.619189453125017],[-2.793652343749954,5.600097656250028],[-2.754980468749977,5.432519531249994],[-2.761914062499955,5.356933593750057],[-2.789599609375017,5.328222656249977],[-2.788671875,5.264111328124969],[-2.795214843749989,5.184521484375011],[-2.815673828125,5.153027343749997],[-2.894726562499926,5.149023437499977],[-2.94833984374992,5.11884765625004],[-3.019140624999948,5.130810546874997],[-3.02587890625,5.150537109375022],[-3.063964843749943,5.157714843749972],[-3.168701171874972,5.203027343749966],[-3.151416015624989,5.34829101562498],[-3.199951171874943,5.3544921875],[-3.23759765624996,5.335400390625025],[-3.312011718749943,5.16079101562498],[-3.347558593749994,5.130664062499959],[-3.870605468749971,5.220703125000014],[-3.984179687499931,5.293164062500025],[-4.120166015625017,5.309716796875023],[-4.357275390625006,5.301416015625023],[-4.552832031249949,5.279882812499991],[-4.60888671875,5.235888671875003],[-4.115185546874955,5.261621093749994],[-4.062060546874989,5.25664062499996],[-4.037207031249977,5.23012695312498],[-4.661523437499994,5.172558593749969],[-4.899707031249932,5.138330078125023],[-4.970117187499966,5.147753906249989],[-5.023681640624943,5.203613281249999],[-5.282373046874994,5.210253906250017],[-5.335449218749972,5.19199218750002],[-5.36752929687492,5.15078125],[-5.265771484374994,5.159716796875017],[-5.104882812499966,5.162158203124989],[-5.061816406249988,5.130664062499959],[-5.564746093749959,5.089453125],[-5.913769531249926,5.0109375],[-6.061718749999955,4.952832031249969],[-6.5484375,4.761767578125045],[-6.845166015624955,4.671484375000034],[-6.922900390624989,4.638330078125022],[-7.057958984374977,4.544726562499959],[-7.231396484374955,4.485986328124994],[-7.426074218749989,4.376025390624974],[-7.544970703124989,4.351318359375],[-7.571582031249989,4.38642578125004],[-7.574658203124983,4.572314453124989],[-7.591210937499995,4.821533203125043],[-7.585058593749976,4.916748046875],[-7.569335937499971,5.006445312499977],[-7.56889648437496,5.080664062499991],[-7.509765625,5.108496093749977],[-7.494140625,5.139794921875051],[-7.485205078124977,5.23642578125002],[-7.429833984374966,5.324511718750017],[-7.428906249999954,5.477880859375006],[-7.412451171874977,5.50991210937505],[-7.39990234375,5.550585937499989],[-7.423730468749966,5.651318359374983],[-7.454394531249988,5.841308593749971],[-7.469433593749954,5.853710937500011],[-7.482812500000023,5.845507812500031],[-7.513916015624943,5.842041015625028],[-7.636132812499995,5.907714843749999],[-7.730371093749994,5.919042968749991],[-7.796533203124966,5.975097656250043],[-7.800927734374994,6.038916015624991],[-7.833251953125,6.076367187499983],[-7.855517578125016,6.150146484375],[-7.88862304687501,6.234863281250028],[-7.981591796874937,6.2861328125],[-8.068945312499977,6.298388671875002],[-8.131005859374994,6.287548828125025],[-8.203857421875,6.29072265625004],[-8.287109375,6.31904296875004],[-8.344873046874964,6.351269531250039],[-8.399316406249937,6.413183593750034],[-8.449902343749955,6.4625],[-8.49033203124992,6.456396484375048],[-8.53955078125,6.46806640625003],[-8.587890625,6.490527343749989],[-8.603564453124989,6.507812500000042],[-8.401220703124977,6.705126953125003],[-8.332568359374932,6.801562500000016],[-8.325097656250023,6.860400390625016],[-8.324511718749989,6.920019531249991],[-8.30234375,6.980957031249972],[-8.296630859374998,7.074023437500017],[-8.408740234374989,7.411816406249996],[-8.437158203124937,7.516406249999988],[-8.467285156249943,7.547021484375009],[-8.486425781249919,7.558496093750037],[-8.429980468749989,7.601855468749988],[-8.351757812499926,7.590576171875],[-8.231884765624953,7.556738281250033],[-8.205957031249993,7.590234375000022],[-8.115429687499926,7.760742187500028],[-8.117822265624966,7.824023437499959],[-8.126855468749937,7.867724609374974],[-8.073828124999977,7.984423828125045],[-8.031738281249943,8.02973632812504],[-8.00986328124992,8.078515625000023],[-8.016748046874993,8.144921874999964],[-8.048583984374998,8.169726562500045],[-8.090527343749926,8.165136718749991],[-8.140625,8.181445312500031],[-8.217138671874949,8.219677734375011],[-8.256103515625,8.253710937500017],[-8.244140624999943,8.407910156249983],[-8.236962890624993,8.455664062500034],[-8.2099609375,8.483251953124963],[-8.167773437499932,8.490673828124967],[-8.049121093749932,8.495312500000026],[-7.953125,8.477734375],[-7.86875,8.467529296875057],[-7.823583984374976,8.467675781249994],[-7.787402343749989,8.421972656250006],[-7.738964843749982,8.375244140624986],[-7.696093749999932,8.375585937499977],[-7.681201171874932,8.41035156250004],[-7.69096679687496,8.5625],[-7.71958007812492,8.643017578125011],[-7.78403320312492,8.720605468750009],[-7.950976562499989,8.786816406249997],[-7.954980468749937,8.879443359375031],[-7.938183593749983,8.97978515624996],[-7.902099609374999,9.017089843750014],[-7.777978515624937,9.080859375000031],[-7.799804687499943,9.115039062499987],[-7.839404296875016,9.151611328124972],[-7.918066406249949,9.188525390625031],[-7.9,9.308691406250006],[-7.896191406249955,9.41586914062499],[-7.962695312499989,9.40385742187503],[-8.031005859374972,9.397656250000011],[-8.088671874999989,9.430664062499986],[-8.136962890624972,9.49570312499999],[-8.14604492187496,9.674804687499984],[-8.14584960937492,9.881738281250037],[-8.155175781249937,9.973193359375017],[-8.136621093749994,10.022070312500034],[-8.077832031250011,10.067089843750052],[-8.013525390624949,10.125292968750003],[-7.990625,10.1625],[-7.9609375,10.163476562499966],[-7.884082031249959,10.185742187499983],[-7.814208984374942,10.236572265625028],[-7.749072265624989,10.342285156249986],[-7.661132812500028,10.427441406250011],[-7.56210937499992,10.421240234374991],[-7.532812499999976,10.436816406249974],[-7.497949218749993,10.439794921875048],[-7.45654296875,10.383935546875037],[-7.414794921875,10.341308593750055],[-7.38505859374999,10.340136718749989],[-7.363183593749965,10.259375],[-7.182324218749983,10.225683593750034],[-7.104882812499937,10.20351562500005],[-7.039746093749983,10.144775390624986],[-7.017089843749999,10.143261718750026],[-6.989453124999955,10.15566406249998],[-6.968164062499966,10.176220703124997],[-6.963818359374983,10.198730468750043],[-6.991748046874988,10.251855468750037],[-6.979492187499971,10.299560546874986],[-6.950341796874994,10.342333984374989],[-6.90380859375,10.34506835937502],[-6.833642578125023,10.35698242187496],[-6.753222656249959,10.357128906249983],[-6.693261718750023,10.349462890625018],[-6.669335937499937,10.392187500000018],[-6.69199218749992,10.512011718750017],[-6.686132812499977,10.578027343750051],[-6.676367187499949,10.633789062500043],[-6.654150390624948,10.65644531250004],[-6.564599609374994,10.586425781249986],[-6.482617187499983,10.561230468749997],[-6.423925781249949,10.559130859375017],[-6.40751953124996,10.572363281249963],[-6.432617187499943,10.648730468749974],[-6.425878906249977,10.671777343749966],[-6.404150390625005,10.685107421875017],[-6.365625,10.692822265624983],[-6.261132812499994,10.724072265625054],[-6.250244140625,10.717919921875037],[-6.230664062500011,10.597509765625018]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cameroon","sov_a3":"CMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cameroon","adm0_a3":"CMR","geou_dif":0,"geounit":"Cameroon","gu_a3":"CMR","su_dif":0,"subunit":"Cameroon","su_a3":"CMR","brk_diff":0,"name":"Cameroon","name_long":"Cameroon","brk_a3":"CMR","brk_name":"Cameroon","brk_group":null,"abbrev":"Cam.","postal":"CM","formal_en":"Republic of Cameroon","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cameroon","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":3,"pop_est":18879301,"gdp_md_est":42750,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CM","iso_a3":"CMR","iso_n3":"120","un_a3":"120","wb_a2":"CM","wb_a3":"CMR","woe_id":-99,"adm0_a3_is":"CMR","adm0_a3_us":"CMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CMR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[15.480078125,7.523779296874991],[15.379101562500011,7.358154296875],[15.245898437500017,7.263574218749994],[15.20673828125001,7.206152343749991],[15.185839843750017,7.134912109374994],[15.157128906250021,7.063574218749991],[15.086328125000023,6.909912109375],[15.034570312500023,6.784423828125],[14.982714843750017,6.7453125],[14.861914062500004,6.555712890624989],[14.780371093750004,6.36572265625],[14.764062500000021,6.316357421874997],[14.739257812499998,6.279785156249999],[14.699511718750017,6.250244140625],[14.559375,6.191210937499989],[14.512109375000025,6.161914062499989],[14.475,6.126806640624991],[14.440722656250017,6.086718749999989],[14.431152343749998,6.038720703124994],[14.4638671875,5.970703125],[14.503125,5.916894531249994],[14.542480468749998,5.913574218749999],[14.577246093750004,5.916015625],[14.598828125000011,5.883984375],[14.61689453125001,5.865136718749993],[14.61689453125001,5.495507812499994],[14.58359375,5.439648437499997],[14.584375,5.414746093749997],[14.568066406250013,5.35107421875],[14.56298828125,5.279931640624994],[14.573535156250017,5.251708984375],[14.60175781250001,5.228808593749989],[14.640625,5.179052734374991],[14.66171875,5.065527343749991],[14.708984375,4.665576171874989],[14.73125,4.602392578124991],[14.770410156250021,4.55810546875],[14.8935546875,4.471875],[15.022753906250017,4.358544921874994],[15.063574218750006,4.284863281249997],[15.0875,4.163964843749994],[15.136914062500011,4.069140624999989],[15.135839843750004,4.036914062499989],[15.115429687500013,4.024462890624989],[15.0673828125,4.02294921875],[15.034863281250011,4.016357421875],[15.062109375,3.947216796874997],[15.128710937500015,3.826904296875],[15.23984375,3.7021484375],[15.360156250000019,3.567138671875],[15.458398437500023,3.456835937499989],[15.580859375000017,3.329296875],[15.676562500000019,3.2296875],[15.775,3.127197265625],[15.849316406250011,3.103076171874989],[15.904882812500006,3.095849609374994],[15.9287109375,3.07578125],[15.958007812499998,3.028710937499994],[16.008203125000023,2.976660156249991],[16.0634765625,2.90859375],[16.082421875000023,2.839111328125],[16.05927734375001,2.772998046874988],[16.082128906250006,2.678173828124997],[16.08349609375,2.670019531249991],[16.101855468750017,2.632666015624991],[16.095507812500014,2.59921875],[16.106738281250017,2.473486328124991],[16.136132812500023,2.36376953125],[16.183398437500017,2.270068359374989],[16.1826171875,2.262451171875],[16.176562500000017,2.204785156249997],[16.11572265625,2.167822265624991],[16.080078125,2.106787109374991],[16.069628906250017,2.021679687499997],[16.087890625,1.918066406249991],[16.13496093750001,1.795947265624988],[16.136132812500023,1.72421875],[16.119531250000023,1.714111328125],[16.09033203125,1.691259765624991],[16.059375,1.676220703124997],[15.975195312500006,1.760009765625],[15.881640625000015,1.816601562499997],[15.741601562500025,1.914990234374997],[15.60029296875001,1.950390625],[15.41748046875,1.956738281249997],[15.338769531250021,1.944726562499995],[15.282421875000011,1.981738281249988],[15.203515625000023,2.024462890624989],[15.160058593750023,2.035595703124997],[15.099609375,2.00234375],[15.057812500000011,2.000878906249994],[15.006445312500006,2.013769531249991],[14.902441406250004,2.012304687499991],[14.89277343750001,2.0693359375],[14.875,2.08046875],[14.762890625000011,2.0751953125],[14.728320312500017,2.122412109374991],[14.713281250000023,2.117138671874997],[14.669140625000011,2.132080078125],[14.578906250000015,2.199121093749994],[14.48408203125001,2.154736328124997],[14.287011718750023,2.160351562499997],[14.034375,2.158886718749997],[13.772753906250015,2.157421875],[13.533496093750017,2.159521484374991],[13.293554687500006,2.161572265624997],[13.269921875000021,2.22421875],[13.2203125,2.256445312499991],[13.130859375,2.259423828124994],[12.867480468750017,2.246777343749997],[12.665722656250011,2.256787109374997],[12.601367187500017,2.265039062499994],[12.529785156249998,2.281347656249991],[12.361328125,2.295996093749991],[12.153417968750006,2.284375],[12.106152343750011,2.2875],[11.939746093750017,2.28515625],[11.558984375000023,2.302197265624997],[11.348437500000017,2.299707031249994],[11.353320312500017,2.261425781249997],[11.339941406250006,2.233837890624997],[11.328710937500004,2.167431640624997],[11.096582031250023,2.16748046875],[10.790917968750023,2.16757812499999],[10.502246093750017,2.167626953124994],[10.307031250000023,2.167724609375],[9.979882812500021,2.167773437499989],[9.8701171875,2.21328125],[9.8369140625,2.242382812499997],[9.830371093750015,2.275488281249991],[9.826171875,2.297802734374997],[9.80078125,2.304443359375],[9.82177734375,2.539257812499997],[9.867578125000023,2.734960937499991],[9.885449218750011,2.916552734374988],[9.948437500000011,3.079052734374997],[9.9150390625,3.239648437499994],[9.876171875000011,3.309765625],[9.672070312500011,3.53759765625],[9.765722656250006,3.623828124999989],[9.642382812500017,3.611767578124997],[9.615917968750011,3.696484375],[9.556152343749998,3.798046875],[9.5927734375,3.814306640624991],[9.628125,3.870019531249995],[9.739648437500023,3.852929687499995],[9.736132812500017,3.880126953125],[9.639941406250017,3.96533203125],[9.649218750000017,4.008349609374989],[9.688867187500023,4.056396484374999],[9.66953125,4.07666015625],[9.600390625000017,4.026904296874989],[9.550585937500017,4.028417968749991],[9.511816406250006,4.060644531249991],[9.483691406250017,4.066113281249996],[9.500781250000017,4.000732421875],[9.462011718750006,3.942529296874994],[9.42529296875,3.922314453124998],[9.3623046875,3.925732421874997],[9.310937500000023,3.940380859374997],[9.29736328125,3.972949218749989],[9.249121093750004,3.997851562499988],[9.113867187500006,4.041064453124989],[9.000097656250006,4.091601562499989],[8.97705078125,4.230419921874997],[8.932031250000023,4.290234375],[8.913574218749998,4.3578125],[8.90283203125,4.43515625],[8.918261718750017,4.553759765624989],[8.889453125000015,4.57275390625],[8.8564453125,4.579248046874994],[8.80712890625,4.5734375],[8.761914062500011,4.580029296874997],[8.707910156250023,4.645703125],[8.660351562500011,4.670996093749991],[8.689648437500011,4.550244140624997],[8.65625,4.516357421875],[8.574414062500011,4.526220703124991],[8.53955078125,4.571875],[8.5328125,4.60585937499999],[8.570507812500011,4.752099609374993],[8.555859375000011,4.755224609374991],[8.585156250000011,4.832812499999989],[8.640527343750023,4.927001953125],[8.715625,5.046875],[8.80097656250001,5.197460937499997],[8.859179687500017,5.463769531249994],[8.898828125000023,5.629687499999989],[8.93505859375,5.781005859374999],[8.997167968750006,5.917724609375],[9.06015625,6.009082031249989],[9.23876953125,6.186132812499991],[9.373339843750017,6.319628906249989],[9.442187500000017,6.373388671874991],[9.490234375,6.418652343749997],[9.574023437500017,6.470410156249997],[9.659960937500017,6.531982421875],[9.7255859375,6.65],[9.779882812500006,6.76015625],[9.820703125000023,6.783935546874999],[9.874218750000011,6.803271484374989],[10.038867187500015,6.921386718749999],[10.1435546875,6.996435546874991],[10.167773437500017,6.959179687499997],[10.185546875,6.912792968749997],[10.205468750000021,6.8916015625],[10.293066406250006,6.876757812499989],[10.413183593750006,6.877734374999989],[10.482324218750023,6.891259765624994],[10.51904296875,6.930468749999989],[10.556347656250011,7.037451171874991],[10.578125,7.057714843749991],[10.60625,7.063085937499991],[10.737597656250017,6.98828125],[10.846484375000017,6.881787109374997],[10.954199218750006,6.7765625],[11.008691406250023,6.739111328124991],[11.032519531250017,6.697900390624994],[11.0796875,6.505517578124994],[11.1064453125,6.457714843749997],[11.1533203125,6.437939453124997],[11.2373046875,6.450537109374991],[11.324609375000023,6.484667968749989],[11.401757812500023,6.533935546875],[11.477539062499998,6.597412109374999],[11.529101562500017,6.655029296875],[11.551660156250021,6.697265625],[11.56298828125,6.854638671874994],[11.580078125,6.888867187499996],[11.657519531250017,6.9515625],[11.787011718750023,7.056201171874989],[11.861425781250006,7.11640625],[11.854785156250017,7.137988281249989],[11.80859375,7.201953124999988],[11.767382812500017,7.272265624999989],[11.809179687500006,7.345068359374991],[11.852441406250023,7.400732421874991],[12.016015625000023,7.589746093749993],[12.0166015625,7.652001953124993],[12.025195312500017,7.727783203124999],[12.155957031250011,7.942480468749991],[12.231152343750011,8.227392578124991],[12.2333984375,8.282324218749991],[12.311328125000017,8.419726562499989],[12.403515625000011,8.595556640624991],[12.58271484375001,8.624121093749991],[12.651562500000011,8.667773437499989],[12.731152343750011,8.745654296874989],[12.7822265625,8.81787109375],[12.806542968750023,8.886621093749994],[12.82441406250001,9.019433593749994],[12.85595703125,9.170751953124991],[12.87568359375001,9.303515624999989],[12.929492187500017,9.42626953125],[13.019433593750023,9.488330078124989],[13.175488281250011,9.539648437499991],[13.19873046875,9.563769531249989],[13.22119140625,9.645166015624993],[13.23876953125,9.814013671874989],[13.24375,9.915917968749994],[13.249804687500015,9.96005859374999],[13.269921875000021,10.036181640624989],[13.41455078125,10.171435546874987],[13.478515625,10.383251953124997],[13.535351562500011,10.60507812499999],[13.699902343750011,10.87314453124999],[13.89208984375,11.140087890624997],[13.9814453125,11.211865234374997],[14.056738281250006,11.245019531249994],[14.143261718750011,11.24853515625],[14.202343750000011,11.268164062499991],[14.409472656250017,11.401171874999989],[14.49609375,11.446142578124991],[14.559765625000011,11.49228515624999],[14.575390625000011,11.532421875],[14.581640625,11.591162109374991],[14.561816406250015,11.728710937499997],[14.59736328125001,11.829833984375],[14.6181640625,11.986621093749989],[14.62714843750001,12.108691406249989],[14.619726562500004,12.15097656249999],[14.587011718750006,12.209423828124997],[14.580957031250023,12.222070312499994],[14.518945312500023,12.298242187499994],[14.415429687500021,12.34414062499999],[14.272851562500021,12.356494140624989],[14.197460937500011,12.3837890625],[14.184863281250017,12.447216796874997],[14.177636718750021,12.484082031249997],[14.170312500000021,12.524072265624994],[14.160058593750023,12.61279296875],[14.063964843749998,13.07851562499999],[14.244824218750011,13.07734375],[14.461718750000015,13.021777343749989],[14.516210937500006,12.979736328125],[14.544726562500015,12.820214843749994],[14.62324218750001,12.729931640624997],[14.76123046875,12.65561523437499],[14.847070312500021,12.502099609374993],[14.880664062500015,12.269384765624991],[14.95673828125001,12.13037109375],[14.97382812500001,12.108349609374997],[15.059863281250017,11.907128906249994],[15.08125,11.845507812499989],[15.087695312500015,11.724365234375],[15.078027343750021,11.642578125],[15.121972656250023,11.541259765625],[15.055468750000017,11.368554687499994],[15.035742187500006,11.2625],[15.029882812500006,11.11367187499999],[15.068652343750015,10.851074218749998],[15.132226562500025,10.648486328124989],[15.200976562500017,10.484521484374993],[15.276074218750011,10.357373046874997],[15.399902343749998,10.216894531249991],[15.53193359375001,10.08847656249999],[15.654882812500004,10.0078125],[15.540917968750023,9.960302734374991],[15.32001953125001,9.954296875],[15.193164062500015,9.981494140624989],[15.132714843750023,9.982861328124997],[15.071582031250017,9.965966796874993],[14.835839843750023,9.941699218749989],[14.597949218750017,9.953076171874997],[14.377246093750017,9.985058593749997],[14.243261718750006,9.979736328125],[14.139746093750004,9.901806640624997],[14.055957031250015,9.784375],[13.977246093750011,9.691552734374994],[14.004980468750004,9.588720703124991],[14.064160156250011,9.53173828125],[14.177929687500011,9.406494140624998],[14.280078125000017,9.285058593749994],[14.332324218750017,9.20351562499999],[14.536132812499998,9.025244140624991],[14.732812500000023,8.865673828124997],[14.771289062500015,8.839160156249987],[14.826269531250006,8.810302734375],[14.860742187500023,8.798632812499989],[14.967968750000013,8.707275390624998],[15.1162109375,8.557324218749997],[15.252343750000023,8.322363281249991],[15.349023437500023,8.083837890624991],[15.44296875,7.851855468749989],[15.484472656250007,7.812744140625],[15.549804687499998,7.787890624999988],[15.55781250000001,7.738037109375],[15.552636718750021,7.664501953124997],[15.532421875000013,7.604394531249994],[15.480078125,7.523779296874991]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Angola","sov_a3":"AGO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Angola","adm0_a3":"AGO","geou_dif":0,"geounit":"Angola","gu_a3":"AGO","su_dif":0,"subunit":"Angola","su_a3":"AGO","brk_diff":0,"name":"Angola","name_long":"Angola","brk_a3":"AGO","brk_name":"Angola","brk_group":null,"abbrev":"Ang.","postal":"AO","formal_en":"People's Republic of Angola","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Angola","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":6,"mapcolor13":1,"pop_est":12799293,"gdp_md_est":110300,"pop_year":-99,"lastcensus":1970,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AO","iso_a3":"AGO","iso_n3":"024","un_a3":"024","wb_a2":"AO","wb_a3":"AGO","woe_id":-99,"adm0_a3_is":"AGO","adm0_a3_us":"AGO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AGO.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.190820312500078,-5.8759765625],[14.398632812500066,-5.892675781250019],[14.657910156250042,-5.888867187499954],[14.749414062500025,-5.88007812500004],[15.089355468749998,-5.874511718749972],[15.425,-5.868847656249969],[15.726953125000051,-5.86386718750002],[16.060156250000063,-5.864941406249968],[16.315234375000074,-5.865625],[16.431445312500042,-5.90019531249996],[16.53710937499997,-5.9658203125],[16.58515625000001,-6.025292968749951],[16.608007812500034,-6.051562499999974],[16.63955078125008,-6.114550781250017],[16.697265625,-6.164257812500026],[16.71777343750003,-6.241406250000011],[16.700976562500042,-6.345996093750002],[16.709375,-6.471679687499943],[16.74296874999999,-6.618457031250003],[16.813085937500063,-6.772558593749963],[16.919433593750057,-6.93398437499998],[16.9658203125,-7.062109374999976],[16.952050781250048,-7.157031249999946],[16.98476562500005,-7.257421874999977],[17.063769531250074,-7.363085937500003],[17.121582031250025,-7.419042968750034],[17.155078125000017,-7.461328125000037],[17.245019531250048,-7.623339843750002],[17.41132812500001,-7.88193359375002],[17.536035156249994,-8.075878906249997],[17.57958984375,-8.099023437500009],[17.643359375000017,-8.090722656250009],[17.77880859375,-8.071386718749977],[17.9130859375,-8.067675781250017],[18.00878906250003,-8.107617187499983],[18.047167968750045,-8.100781250000011],[18.191503906250063,-8.023828124999966],[18.334863281250023,-8.000292968749974],[18.48466796874999,-7.968554687499988],[18.56269531250001,-7.9359375],[18.653417968750002,-7.936035156250028],[18.89833984375008,-7.998144531249977],[18.944433593750063,-8.001464843750028],[19.142675781250034,-8.001464843750028],[19.34082031249997,-7.96660156250003],[19.369921875000045,-7.706542968749986],[19.371679687500063,-7.655078124999989],[19.41933593750008,-7.55732421874997],[19.47988281250008,-7.472167968750028],[19.487402343750002,-7.390722656249949],[19.48378906250008,-7.279492187500025],[19.527636718750014,-7.144433593749952],[19.660351562500068,-7.037109375000028],[19.87519531250004,-6.986328124999986],[19.99746093750008,-6.976464843750023],[20.190039062500063,-6.9462890625],[20.482226562500074,-6.915820312500017],[20.59003906250001,-6.919921874999957],[20.598730468750006,-6.935156249999949],[20.536914062500045,-7.121777343749954],[20.535839843749983,-7.182812499999954],[20.558398437500045,-7.244433593749989],[20.60781250000008,-7.277734375000022],[20.910937500000017,-7.281445312499982],[21.19033203125002,-7.284960937499989],[21.510839843750034,-7.296679687499974],[21.751074218750034,-7.305468749999989],[21.78164062500005,-7.314648437499996],[21.80605468750005,-7.32861328125],[21.84160156249999,-7.420996093749991],[21.83359375000006,-7.601660156250021],[21.780078125000074,-7.865429687500025],[21.800878906250063,-8.111914062499977],[21.895898437500048,-8.341113281249946],[21.905371093750034,-8.693359374999943],[21.871875,-8.90351562500004],[21.82949218750002,-9.168457031250014],[21.813183593750065,-9.46875],[21.85664062500004,-9.594238281249986],[21.94863281250005,-9.7255859375],[22.089160156250074,-9.862792968749986],[22.19775390625,-10.040625],[22.274511718750006,-10.259082031249974],[22.302441406250008,-10.39667968750004],[22.281640625000023,-10.453320312500026],[22.283203125,-10.551562499999974],[22.30703125000005,-10.691308593750023],[22.280468750000068,-10.783984374999973],[22.203515625000023,-10.829492187500009],[22.17792968750004,-10.89228515625001],[22.21669921875002,-11.012695312499943],[22.226171875,-11.121972656250009],[22.25664062499999,-11.163671874999977],[22.27880859375,-11.19414062499996],[22.314941406250057,-11.198632812499993],[22.39296875000005,-11.159472656250001],[22.486132812500045,-11.086718750000015],[22.56103515625003,-11.05585937500004],[22.666503906249996,-11.059765625000026],[22.814746093750017,-11.08027343750004],[23.076269531250006,-11.087890624999986],[23.156738281250057,-11.074804687499991],[23.400195312500017,-10.976464843750021],[23.463964843750034,-10.969335937499991],[23.55996093750005,-10.97861328125002],[23.696386718750034,-11.007617187499974],[23.83388671875008,-11.013671874999972],[23.901171875000017,-10.983203124999974],[23.907324218750034,-10.943457031249963],[23.92871093750003,-10.891503906250037],[23.96650390625001,-10.871777343750011],[23.98828125,-11.00283203124998],[24.01005859375007,-11.184765625000011],[24.02558593750004,-11.315625],[24.04140625000008,-11.374121093750034],[24.04667968750007,-11.405371093750006],[24.029296875,-11.439160156249969],[24.01464843750003,-11.517675781249977],[23.986816406250057,-11.587207031250015],[23.970996093750017,-11.635839843749977],[23.983886718749996,-11.725],[23.973437500000074,-11.852929687499964],[23.962304687500023,-11.98789062500002],[23.95888671875005,-12.11777343750002],[23.99648437500008,-12.350683593750034],[23.991308593750006,-12.422167968750031],[23.944726562499994,-12.54375],[23.909375,-12.636132812500009],[23.886523437500045,-12.74326171874999],[23.882421875,-12.799023437499983],[23.968066406250045,-12.956933593749994],[23.962988281250006,-12.988476562500026],[23.897460937500057,-12.998242187499983],[23.843164062500023,-13.0009765625],[23.635839843750063,-13.0009765625],[23.33867187500007,-13.0009765625],[23.04150390625003,-13.0009765625],[22.744335937500068,-13.0009765625],[22.470996093750074,-13.0009765625],[22.209570312500006,-13.0009765625],[21.97890625000008,-13.0009765625],[21.97900390625003,-13.156835937499963],[21.979101562500034,-13.477734374999969],[21.979101562500034,-13.798730468749994],[21.979296875000074,-14.119628906249998],[21.979394531249994,-14.440527343750004],[21.97949218750003,-14.761425781250011],[21.979589843750034,-15.082324218750017],[21.979687500000068,-15.403222656250021],[21.97978515624999,-15.724121093750028],[21.97978515624999,-15.955566406250014],[22.040234375000068,-16.26279296874999],[22.15068359374999,-16.597167968749986],[22.193945312500006,-16.628125],[22.305078125000023,-16.689550781249977],[22.45947265625003,-16.81513671874998],[22.545996093750063,-16.91025390624999],[22.721972656250045,-17.075292968749963],[22.95585937500007,-17.28574218750002],[23.181640625000057,-17.474414062500003],[23.380664062500017,-17.640625],[23.06826171875005,-17.698828124999977],[22.624023437500053,-17.78164062499998],[22.32421875,-17.8375],[21.96083984375005,-17.90517578125001],[21.71845703125004,-17.94775390624997],[21.41689453125008,-18.00068359375001],[21.36875,-17.999511718749957],[21.28789062500007,-17.962988281249977],[21.113476562500068,-17.95576171875001],[20.908300781250034,-18.00605468750004],[20.74550781250008,-18.019726562499983],[20.625097656250063,-17.99667968749999],[20.507617187500017,-17.95253906249998],[20.392968750000023,-17.887402343750026],[20.194335937500057,-17.86367187499999],[19.911816406250036,-17.881347656250043],[19.63935546875004,-17.86865234375003],[19.377148437500008,-17.82548828125003],[19.189453125000057,-17.808496093750023],[19.076464843750045,-17.81767578125003],[18.95527343750004,-17.80351562499999],[18.825976562500074,-17.766308593750054],[18.718066406250045,-17.70322265624999],[18.588183593750045,-17.570019531250026],[18.486621093750045,-17.442773437500033],[18.460351562500023,-17.424609374999974],[18.428222656250057,-17.40517578125002],[18.39638671875005,-17.399414062499996],[18.10878906250008,-17.395996093750014],[17.83535156250005,-17.392773437499983],[17.678808593750063,-17.39257812500003],[17.296289062500023,-17.391992187499994],[16.913671875000034,-17.39140625],[16.531054687500074,-17.390820312500026],[16.14843750000003,-17.39023437499999],[15.76582031250007,-17.389648437499954],[15.38320312500008,-17.389160156249957],[15.000585937500032,-17.38857421875001],[14.617968750000072,-17.38798828124997],[14.41474609375004,-17.38769531250001],[14.225878906250045,-17.397753906250017],[14.017480468750023,-17.40888671874997],[13.987402343750034,-17.404199218749994],[13.93798828125,-17.388769531249963],[13.90419921875005,-17.360742187500023],[13.7919921875,-17.28837890625003],[13.6943359375,-17.233496093750034],[13.561718749999983,-17.141210937499977],[13.475976562500023,-17.040039062499968],[13.40371093750005,-17.00781249999997],[13.275683593750072,-16.98955078124999],[13.179492187500017,-16.971679687499986],[13.101171875000063,-16.967675781249966],[12.963183593750015,-17.015429687500017],[12.859277343750051,-17.06259765625003],[12.785156250000057,-17.108203125],[12.656542968750074,-17.160546875],[12.548144531250017,-17.21269531249997],[12.359277343750078,-17.205859375],[12.318457031250006,-17.21337890625003],[12.213378906250027,-17.209960937500043],[12.114355468750006,-17.16455078125003],[12.013964843750072,-17.168554687500034],[11.902539062500011,-17.226562499999957],[11.743066406250021,-17.24921875000004],[11.780078125000017,-16.87128906249997],[11.818945312500034,-16.704101562500014],[11.819921875000063,-16.50429687499998],[11.796972656250006,-15.986425781249991],[11.76943359375008,-15.915332031249987],[11.750878906250023,-15.831933593749966],[11.849707031250006,-15.768359374999974],[11.899902343749998,-15.719824218750036],[11.967871093750006,-15.63398437500004],[12.016113281250057,-15.513671874999956],[12.073242187500057,-15.248242187499967],[12.280468750000011,-14.6375],[12.37890625,-14.039062500000014],[12.503710937500017,-13.755468749999963],[12.55048828125004,-13.437792968750003],[12.897656250000068,-13.027734375000037],[12.983203124999989,-12.775683593750017],[13.16269531250006,-12.652148437499989],[13.4169921875,-12.52041015624998],[13.597949218750017,-12.286132812500027],[13.685546875,-12.123828125],[13.785351562499983,-11.81279296874996],[13.784277343750034,-11.487988281249969],[13.847460937500045,-11.054394531249997],[13.833593750000063,-10.9296875],[13.73896484375004,-10.757128906250017],[13.721386718750011,-10.633593749999989],[13.63349609375004,-10.512304687499963],[13.53945312500008,-10.42070312499996],[13.495410156250074,-10.25712890625003],[13.33222656250004,-9.998925781250009],[13.2875,-9.826757812500006],[13.209375,-9.703222656249977],[13.196875,-9.550683593749994],[13.15566406250005,-9.389648437499957],[13.075976562500074,-9.230371093750007],[12.99853515625,-9.048046875],[12.99853515625,-8.991015625000017],[13.046777343750078,-8.922265625000037],[13.092773437500028,-8.899707031249974],[13.07724609375006,-8.934277343749997],[13.04658203125004,-8.975195312499991],[13.053808593750006,-9.006835937499943],[13.358984375,-8.687207031250026],[13.378320312500023,-8.624707031249997],[13.36806640625008,-8.554785156249963],[13.366406249999981,-8.469238281250028],[13.378515625000063,-8.369726562500006],[13.09082031249997,-7.780175781249979],[12.862304687500057,-7.231835937499993],[12.823437500000038,-6.954785156249955],[12.521289062500045,-6.590332031249957],[12.402148437500017,-6.353417968750009],[12.334277343750045,-6.187304687500003],[12.283300781250063,-6.12431640624996],[12.302539062500074,-6.092578124999988],[12.380371093750028,-6.084277343749974],[12.553515625000045,-6.045898437499972],[12.790625,-6.003906249999943],[13.009765625,-5.907617187499966],[13.068164062500074,-5.864843749999949],[13.184375,-5.85625],[13.302636718750051,-5.881835937499942],[13.346484375000017,-5.863378906250006],[13.371484375000051,-5.861816406249957],[13.649023437500004,-5.861718750000023],[13.764550781250023,-5.855175781250026],[13.978515625,-5.857226562500003],[14.113769531250028,-5.865136718750009],[14.190820312500078,-5.8759765625]]],[[[12.255273437500021,-5.74648437499999],[12.213671875000074,-5.758691406249994],[12.199023437500017,-5.731933593749957],[12.15546875000004,-5.632714843749994],[12.18007812500008,-5.53867187500002],[12.206542968750057,-5.468261718749986],[12.177148437499994,-5.324804687499977],[12.11054687500004,-5.197167968749994],[12.039941406250023,-5.035156250000028],[12.018359375000072,-5.004296874999965],[12.077539062500051,-4.9521484375],[12.167089843750004,-4.837695312499946],[12.20429687500004,-4.778613281249989],[12.307910156249989,-4.765527343749994],[12.3466796875,-4.724121093749986],[12.374023437500057,-4.657714843749957],[12.384570312500074,-4.619140625000014],[12.50146484375,-4.5875],[12.641699218750063,-4.531152343750023],[12.719433593749981,-4.469726562499943],[12.798242187500051,-4.430566406249966],[12.848144531250028,-4.428906249999983],[12.881054687500068,-4.445117187499989],[12.971386718750068,-4.551757812499956],[13.048046875000068,-4.619238281250033],[13.072753906250028,-4.634765625],[13.057324218750011,-4.651074218750025],[12.94746093750001,-4.695312499999986],[12.829687499999977,-4.736621093749959],[12.674804687500057,-4.905371093749963],[12.596191406250027,-4.978417968750023],[12.573535156250017,-4.996582031249986],[12.502734375000072,-5.03691406250003],[12.451464843750017,-5.071484374999969],[12.453222656250034,-5.090625],[12.487402343750063,-5.112695312500023],[12.52236328125008,-5.148925781250028],[12.518945312499994,-5.424609374999974],[12.503710937500017,-5.695800781249972],[12.484570312500011,-5.71875],[12.386035156250017,-5.727734375],[12.255273437500021,-5.74648437499999]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Democratic Republic of the Congo","sov_a3":"COD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Democratic Republic of the Congo","adm0_a3":"COD","geou_dif":0,"geounit":"Democratic Republic of the Congo","gu_a3":"COD","su_dif":0,"subunit":"Democratic Republic of the Congo","su_a3":"COD","brk_diff":0,"name":"Dem. Rep. Congo","name_long":"Democratic Republic of the Congo","brk_a3":"COD","brk_name":"Democratic Republic of the Congo","brk_group":null,"abbrev":"D.R.C.","postal":"DRC","formal_en":"Democratic Republic of the Congo","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Congo, Dem. Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":7,"pop_est":68692542,"gdp_md_est":20640,"pop_year":-99,"lastcensus":1984,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"CD","iso_a3":"COD","iso_n3":"180","un_a3":"180","wb_a2":"ZR","wb_a3":"ZAR","woe_id":-99,"adm0_a3_is":"COD","adm0_a3_us":"COD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":15,"long_len":32,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"COD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[27.403320312499996,5.109179687499989],[27.439257812500017,5.039208984374993],[27.491015625000017,4.967578124999989],[27.664160156250006,4.845996093749989],[27.71923828125,4.7783203125],[27.76142578125001,4.703222656249991],[27.788085937499996,4.644677734374994],[27.841601562500017,4.597753906249991],[27.916601562500006,4.567919921874989],[27.98066406250001,4.532080078124991],[28.019824218750017,4.479394531249994],[28.07861328125,4.4248046875],[28.19208984375001,4.350244140624994],[28.247265625,4.348535156249994],[28.31103515625,4.338037109374994],[28.3671875,4.318652343749989],[28.427539062500017,4.324169921874997],[28.524804687500023,4.372851562499989],[28.639550781250023,4.454492187499994],[28.727050781249996,4.504980468749991],[28.939355468750023,4.487060546875],[29.057421875000017,4.445947265624994],[29.151464843750006,4.38818359375],[29.22490234375002,4.391894531249989],[29.384863281250002,4.498388671874991],[29.469628906250023,4.611816406249999],[29.552050781250017,4.636035156249989],[29.676855468750006,4.5869140625],[29.779882812500002,4.48095703125],[29.870214843750006,4.3271484375],[29.933984375000023,4.268505859374997],[30.021386718750023,4.177636718749994],[30.194921875,3.98193359375],[30.420703125000017,3.883886718749991],[30.50830078125,3.835693359375],[30.536914062500017,3.787207031249991],[30.553515625000017,3.722949218749989],[30.559375,3.652783203124997],[30.586718750000014,3.62421875],[30.64765625,3.634130859374991],[30.69990234375001,3.644091796874989],[30.757226562500023,3.62421875],[30.79697265625001,3.573144531249994],[30.81689453125,3.533349609374994],[30.838574218750015,3.49072265625],[30.895312500000017,3.463671874999989],[30.90644531250001,3.408935546875],[30.86757812500002,3.342138671874991],[30.82783203125001,3.282617187499994],[30.779296875,3.163378906249989],[30.754003906250002,3.041796874999989],[30.78652343750002,3.001367187499994],[30.821386718750002,2.967578124999989],[30.83994140625001,2.933496093749994],[30.85078125000001,2.893652343749991],[30.846679687499996,2.847021484374991],[30.76953125,2.677978515625],[30.72988281250002,2.5302734375],[30.72861328125001,2.455371093749989],[30.830078125,2.400439453124989],[30.961914062499996,2.403271484374997],[31.00361328125001,2.369384765625],[31.045312500000023,2.315527343749991],[31.082128906250002,2.2880859375],[31.137597656250023,2.288867187499989],[31.176367187500006,2.270068359374989],[31.19140625,2.232275390624991],[31.236328125,2.191357421874997],[31.27402343750001,2.146289062499989],[31.25605468750001,2.088476562499991],[31.252734375000014,2.044580078124994],[31.158789062500006,1.922021484374994],[30.942578125,1.6828125],[30.478125,1.239062499999989],[30.477832031250014,1.238818359374989],[30.321093750000014,1.185302734375],[30.24013671875002,1.102783203125],[30.18291015625002,0.973486328124992],[30.04736328125,0.863525390625],[29.942871093750004,0.819238281249994],[29.931640625,0.792871093749994],[29.923828125,0.673925781249991],[29.934472656250023,0.4990234375],[29.88544921875001,0.4189453125],[29.81464843750001,0.263623046874997],[29.77783203125,0.166357421874991],[29.74970703125001,0.147216796875],[29.717675781250023,0.098339843749997],[29.697851562500006,-0.060205078125009],[29.684375,-0.113574218750003],[29.633203125000023,-0.441699218750003],[29.64785156250002,-0.535253906250006],[29.608203125000017,-0.691308593750009],[29.606445312499996,-0.783105468750009],[29.59003906250001,-0.887109375],[29.561914062500023,-0.97734375],[29.5640625,-1.121386718750003],[29.579980468750023,-1.356738281250003],[29.576953125000014,-1.387890625000011],[29.537792968750008,-1.409765625],[29.467968750000015,-1.468066406250003],[29.401953125,-1.507421875],[29.351660156250006,-1.517578125],[29.26816406250001,-1.62158203125],[29.196582031250017,-1.719921875000011],[29.143261718750008,-1.816015625],[29.129394531249996,-1.860253906250008],[29.140625,-1.984570312500011],[29.148046875,-2.1318359375],[29.131542968750008,-2.195117187500003],[29.106445312499996,-2.233203125],[28.98955078125002,-2.312792968750003],[28.912695312500002,-2.370312500000011],[28.876367187500023,-2.400292968750009],[28.85761718750001,-2.446679687500009],[28.891406250000017,-2.555566406250008],[28.893945312500023,-2.635058593750003],[28.921777343750023,-2.68203125],[29.01435546875001,-2.72021484375],[29.014160156249996,-2.75830078125],[29.016601562499996,-2.799609375],[29.064746093750017,-2.850781250000011],[29.153222656250023,-2.955273437500011],[29.224414062500017,-3.053515625],[29.22607421875,-3.138671875],[29.21230468750002,-3.28125],[29.210058593750002,-3.36328125],[29.217187500000026,-3.475683593750006],[29.216796875,-3.684960937500008],[29.211816406250023,-3.833789062500002],[29.223242187500006,-3.910839843750011],[29.331347656250014,-4.095410156250011],[29.379199218750017,-4.299707031250009],[29.403222656250026,-4.449316406250006],[29.404199218750023,-4.496679687500005],[29.367578125000023,-4.668847656250009],[29.325683593749996,-4.835644531250011],[29.32343750000001,-4.898828125],[29.3427734375,-4.983105468750011],[29.420117187500008,-5.176171875],[29.476464843750023,-5.31660156250001],[29.503710937500014,-5.400976562500006],[29.542382812500026,-5.499804687500003],[29.594140625000023,-5.65078125],[29.60703125,-5.72265625],[29.59638671875001,-5.775976562500006],[29.490820312500006,-5.965429687500006],[29.480078125,-6.025],[29.50625,-6.172070312500011],[29.540820312500017,-6.313867187500009],[29.590625,-6.394433593750008],[29.70966796875001,-6.616894531250011],[29.79814453125002,-6.69189453125],[29.961816406250023,-6.803125],[30.10625,-6.9150390625],[30.161816406250008,-6.973046875],[30.212695312500017,-7.037890625],[30.31318359375001,-7.203710937500005],[30.374511718749996,-7.338671875],[30.40673828125,-7.460644531250011],[30.485644531250014,-7.627148437500011],[30.558886718750014,-7.78193359375001],[30.65380859375,-7.97089843750001],[30.720898437500015,-8.104394531250009],[30.75117187500001,-8.193652343750003],[30.577929687500014,-8.220019531250003],[30.32753906250002,-8.258203125],[30.051367187500006,-8.30029296875],[29.766210937500006,-8.34375],[29.483789062500023,-8.386914062500011],[29.215625,-8.427832031250006],[28.972265625,-8.464941406250006],[28.89814453125001,-8.485449218750006],[28.934472656250023,-8.590234375],[28.917773437500014,-8.700585937500009],[28.86953125000002,-8.785839843750011],[28.793554687500006,-8.891015625],[28.758789062499996,-8.9326171875],[28.68125,-9.0146484375],[28.616503906250017,-9.072265625],[28.48427734375002,-9.16943359375],[28.400683593750017,-9.224804687500011],[28.400195312500014,-9.275],[28.54052734375,-9.510058593750003],[28.60419921875001,-9.678808593750006],[28.630078125,-9.83125],[28.62890625,-9.91875],[28.62353515625,-10.098828125000011],[28.6171875,-10.31298828125],[28.607421875,-10.397363281250009],[28.645507812499996,-10.550195312500009],[28.638867187500008,-10.669238281250003],[28.544238281250017,-10.80234375],[28.517968750000023,-10.933203125],[28.4703125,-11.109570312500011],[28.404199218750023,-11.354394531250009],[28.357226562500014,-11.483007812500006],[28.383398437500002,-11.566699218750001],[28.407031250000017,-11.622851562500003],[28.43183593750001,-11.698339843750006],[28.482519531250006,-11.812109375],[28.541601562500002,-11.879199218750003],[28.574609375000023,-11.908105468750009],[28.76943359375002,-12.05126953125],[28.85,-12.120507812500007],[28.973437500000014,-12.2578125],[29.06435546875002,-12.348828125000011],[29.191210937500014,-12.370214843750004],[29.34375,-12.40478515625],[29.427539062500014,-12.43125],[29.48554687500001,-12.418457031249998],[29.5048828125,-12.386132812500009],[29.502246093750014,-12.31757812500001],[29.491992187500014,-12.266894531250003],[29.508203125000026,-12.228222656250011],[29.55976562500001,-12.202441406250003],[29.691992187500006,-12.198339843750006],[29.749609375,-12.1640625],[29.79511718750001,-12.155468750000011],[29.795312500000023,-12.306152343749998],[29.795507812500006,-12.450585937500009],[29.79560546875001,-12.625878906250009],[29.79580078125002,-12.827050781250009],[29.79609375,-12.992089843750009],[29.796289062500023,-13.16748046875],[29.796484375,-13.369726562500006],[29.795312500000023,-13.392773437500011],[29.775195312500017,-13.438085937500006],[29.72265625,-13.453808593750011],[29.651757812500023,-13.414355468750001],[29.64765625000001,-13.372949218750009],[29.630273437500023,-13.298535156250011],[29.59716796875,-13.260546875],[29.55419921875,-13.248925781250009],[29.4814453125,-13.26796875],[29.3818359375,-13.322851562500004],[29.253710937500017,-13.37080078125001],[29.20185546875001,-13.398339843750009],[29.111621093750017,-13.395117187500006],[29.014257812500002,-13.368847656250011],[28.942285156250023,-13.307128906249998],[28.921679687500017,-13.214648437500003],[28.858789062500023,-13.119433593750003],[28.77314453125001,-12.981933593749998],[28.730078125,-12.925488281250011],[28.672949218750006,-12.861328125],[28.615429687500008,-12.854101562500006],[28.550878906250006,-12.83613281250001],[28.51123046875,-12.7421875],[28.474414062500017,-12.623339843750003],[28.451464843750014,-12.577441406250003],[28.412890625000014,-12.51806640625],[28.357714843750017,-12.48203125],[28.237304687499996,-12.434570312499998],[28.06884765625,-12.368164062499998],[27.857421875,-12.284863281250011],[27.7568359375,-12.280859375],[27.644335937500017,-12.266796875000011],[27.573828125,-12.227050781249998],[27.533398437500008,-12.1953125],[27.48701171875001,-12.0796875],[27.423632812500017,-11.94453125000001],[27.238085937500017,-11.783496093750003],[27.196386718750002,-11.605078125],[27.159179687499996,-11.579199218750006],[27.09541015625001,-11.59375],[27.04609375000001,-11.615917968750011],[27.026660156250017,-11.663769531250011],[26.976855468750017,-11.824609375],[26.949609375000023,-11.898828125],[26.93085937500001,-11.919335937500009],[26.890429687500014,-11.943554687500011],[26.824023437500014,-11.965234375],[26.72968750000001,-11.975976562500009],[26.596386718750008,-11.972070312500009],[26.4296875,-11.947851562500004],[26.339648437500017,-11.929882812500011],[26.096386718750008,-11.903222656250009],[26.025976562500006,-11.89013671875],[25.926562500000017,-11.855273437500003],[25.854882812500023,-11.820117187500001],[25.61884765625001,-11.744140625],[25.51191406250001,-11.753417968749998],[25.4599609375,-11.699804687500004],[25.413378906250017,-11.673535156250011],[25.349414062500017,-11.623046875],[25.320703125000023,-11.553515625],[25.282617187500023,-11.404980468750011],[25.291796875000017,-11.325488281250003],[25.3193359375,-11.236914062500004],[25.28876953125001,-11.212402343749998],[25.245996093750023,-11.212402343749998],[25.184863281250017,-11.24296875],[25.075976562500017,-11.260058593750003],[24.87685546875002,-11.299121093750003],[24.80634765625001,-11.321191406250009],[24.728125,-11.337792968750007],[24.668261718750017,-11.352929687500009],[24.518554687499996,-11.4384765625],[24.466601562500017,-11.44765625],[24.3779296875,-11.417089843750006],[24.33515625000001,-11.37128906250001],[24.3779296875,-11.319335937499998],[24.396289062500017,-11.255175781250003],[24.36572265625,-11.1298828125],[24.319921875,-11.07177734375],[24.18720703125001,-11.029980468750011],[24.136523437500017,-11.025976562500006],[24.115136718750023,-10.955664062500004],[24.078417968750014,-10.891503906250009],[24.002734375000017,-10.879101562500011],[23.96650390625001,-10.871777343750011],[23.9287109375,-10.891503906250009],[23.907324218750006,-10.943457031250006],[23.901171875000017,-10.983203125],[23.833886718750023,-11.013671875],[23.696386718750006,-11.007617187500001],[23.559960937500023,-10.978613281250006],[23.463964843750006,-10.969335937500006],[23.400195312500017,-10.976464843750009],[23.15673828125,-11.074804687500006],[23.076269531250006,-11.087890625],[22.814746093750017,-11.080273437500011],[22.666503906249996,-11.059765625000011],[22.56103515625,-11.05585937500001],[22.486132812500017,-11.08671875],[22.392968750000023,-11.159472656250001],[22.31494140625,-11.198632812500009],[22.27880859375,-11.194140625],[22.256640625000017,-11.163671875],[22.226171875,-11.121972656250009],[22.21669921875002,-11.0126953125],[22.17792968750001,-10.89228515625001],[22.203515625000023,-10.829492187500009],[22.28046875000001,-10.783984375],[22.307031250000023,-10.691308593750009],[22.283203125,-10.5515625],[22.281640625000023,-10.453320312500011],[22.302441406250008,-10.396679687500011],[22.274511718750006,-10.259082031250001],[22.19775390625,-10.040625],[22.089160156250017,-9.86279296875],[21.948632812500023,-9.7255859375],[21.85664062500001,-9.59423828125],[21.81318359375001,-9.46875],[21.82949218750002,-9.16845703125],[21.871875,-8.903515625000011],[21.905371093750006,-8.693359375],[21.89589843750002,-8.341113281250003],[21.800878906250006,-8.111914062500006],[21.780078125000017,-7.86542968750001],[21.83359375,-7.601660156250006],[21.841601562500014,-7.420996093750006],[21.80605468750002,-7.32861328125],[21.781640625000023,-7.31464843750001],[21.751074218750006,-7.30546875],[21.510839843750006,-7.296679687500003],[21.19033203125002,-7.284960937500003],[20.910937500000017,-7.28144531250001],[20.607812500000023,-7.277734375],[20.558398437500014,-7.244433593750003],[20.53583984375001,-7.182812500000011],[20.536914062500017,-7.121777343750011],[20.598730468750006,-6.93515625],[20.59003906250001,-6.919921875],[20.482226562500017,-6.915820312500003],[20.190039062500006,-6.9462890625],[19.997460937500023,-6.976464843750009],[19.87519531250001,-6.986328125],[19.66035156250001,-7.037109375],[19.527636718750014,-7.144433593750009],[19.48378906250002,-7.27949218750001],[19.487402343750002,-7.390722656250005],[19.479882812500023,-7.472167968749999],[19.419335937500023,-7.55732421875001],[19.371679687500006,-7.655078125],[19.369921875000017,-7.706542968750001],[19.3408203125,-7.966601562500002],[19.142675781250006,-8.00146484375],[18.944433593750002,-8.00146484375],[18.898339843750023,-7.998144531250005],[18.653417968750002,-7.936035156249999],[18.56269531250001,-7.9359375],[18.484667968750017,-7.968554687500002],[18.334863281250023,-8.000292968750003],[18.191503906250002,-8.023828125],[18.047167968750017,-8.100781250000011],[18.0087890625,-8.107617187500011],[17.9130859375,-8.067675781250003],[17.77880859375,-8.071386718750006],[17.643359375000017,-8.090722656250009],[17.57958984375,-8.099023437500009],[17.536035156250023,-8.075878906250011],[17.41132812500001,-7.881933593750006],[17.245019531250023,-7.623339843750002],[17.155078125000017,-7.461328125],[17.121582031249996,-7.419042968750006],[17.063769531250017,-7.363085937500003],[16.984765625000023,-7.257421875],[16.952050781250023,-7.15703125],[16.9658203125,-7.062109375],[16.91943359375,-6.933984375],[16.813085937500006,-6.772558593750005],[16.742968750000017,-6.618457031250003],[16.709375,-6.4716796875],[16.700976562500017,-6.345996093750002],[16.7177734375,-6.241406250000011],[16.697265625,-6.164257812500011],[16.63955078125002,-6.114550781250002],[16.608007812500006,-6.0515625],[16.58515625000001,-6.025292968750009],[16.537109375,-5.9658203125],[16.431445312500017,-5.900195312500002],[16.315234375000017,-5.865625],[16.06015625,-5.864941406250011],[15.726953125000023,-5.863867187500006],[15.425,-5.86884765625001],[15.089355468749998,-5.87451171875],[14.749414062500025,-5.88007812500001],[14.657910156250011,-5.888867187500011],[14.39863281250001,-5.892675781250006],[14.190820312500023,-5.8759765625],[14.11376953125,-5.865136718750009],[13.978515625,-5.857226562500003],[13.764550781250023,-5.855175781250011],[13.649023437500004,-5.86171875],[13.371484375000021,-5.86181640625],[13.346484375000017,-5.863378906250006],[13.302636718750023,-5.8818359375],[13.184375,-5.85625],[13.068164062500017,-5.86484375],[13.003320312500023,-5.836132812500011],[12.86083984375,-5.854101562500005],[12.791601562500006,-5.877734375],[12.6806640625,-5.960839843750009],[12.514550781250023,-6.004199218750003],[12.452929687500017,-6.00048828125],[12.41171875,-5.986328125],[12.315039062500006,-5.8953125],[12.240429687500011,-5.807324218750011],[12.213671875000015,-5.758691406250009],[12.255273437500021,-5.746484375],[12.386035156250017,-5.72773437500001],[12.484570312500011,-5.71875],[12.503710937500017,-5.69580078125],[12.518945312500023,-5.424609375],[12.522363281250023,-5.14892578125],[12.487402343750006,-5.112695312500009],[12.453222656250006,-5.090625],[12.451464843750017,-5.071484375000011],[12.502734375000017,-5.036914062500003],[12.573535156250017,-4.99658203125],[12.59619140625,-4.978417968750009],[12.6748046875,-4.905371093750006],[12.8296875,-4.736621093750003],[12.94746093750001,-4.6953125],[13.057324218750011,-4.651074218750011],[13.07275390625,-4.634765625],[13.08740234375,-4.601953125],[13.136621093750023,-4.604296875],[13.15234375,-4.620312500000011],[13.176464843750011,-4.655859375],[13.219628906250021,-4.705859375],[13.297265625000023,-4.765234375],[13.375781250000017,-4.829394531250003],[13.414941406250023,-4.83740234375],[13.478417968750021,-4.804980468750003],[13.551660156250023,-4.756738281250009],[13.659570312500023,-4.721484375],[13.685351562500017,-4.688671875000011],[13.699414062500011,-4.618359375000011],[13.707617187500006,-4.543261718750003],[13.717089843750015,-4.454492187500009],[13.739062500000017,-4.442480468750006],[13.778027343750011,-4.433886718750003],[13.849511718750021,-4.458886718750009],[13.882324218749998,-4.484667968750003],[13.94091796875,-4.484667968750003],[13.978417968750023,-4.461230468750003],[14.046875,-4.41748046875],[14.133886718750006,-4.4],[14.22705078125,-4.358105468750011],[14.316210937500017,-4.304101562500009],[14.358300781250023,-4.299414062500005],[14.402929687500006,-4.369726562500006],[14.442773437500021,-4.419042968750006],[14.449804687500006,-4.449511718750003],[14.409960937500015,-4.508105468750003],[14.365429687500011,-4.585546875],[14.402929687500006,-4.681640625],[14.411914062500017,-4.775],[14.410742187500004,-4.83125],[14.44091796875,-4.854101562500006],[14.461621093750011,-4.864941406250011],[14.493945312500015,-4.851660156250005],[14.557617187500002,-4.855761718750003],[14.63398437500001,-4.885058593750003],[14.707910156250021,-4.881738281250009],[14.779296875,-4.845703125],[14.912109375,-4.70556640625],[15.10625,-4.461035156250006],[15.2671875,-4.307617187499999],[15.394628906250007,-4.244921875],[15.480957031249998,-4.171777343750009],[15.525976562500006,-4.087988281250006],[15.60009765625,-4.030957031250011],[15.75458984375001,-3.985546875000011],[15.872460937500023,-3.934277343750011],[15.990039062500017,-3.766210937500006],[16.146777343750017,-3.464160156250003],[16.190625,-3.194433593750006],[16.217382812500006,-3.0302734375],[16.20185546875001,-2.464746093750009],[16.19160156250001,-2.279101562500002],[16.21533203125,-2.177832031250006],[16.27392578125,-2.108203125],[16.43359375,-1.960839843750009],[16.54072265625001,-1.840136718750003],[16.62246093750002,-1.698925781250011],[16.780078125000017,-1.376367187500009],[16.84912109375,-1.2724609375],[16.879882812499996,-1.225878906250003],[16.974707031250006,-1.139941406250003],[17.10761718750001,-1.064453125],[17.27880859375,-0.999609375],[17.542871093750023,-0.775],[17.752832031250023,-0.549023437500011],[17.72412109375,-0.277539062500011],[17.77314453125001,-0.052392578125009],[17.8876953125,0.234130859375],[17.925195312500023,0.537304687499997],[17.8857421875,0.856884765624997],[17.902441406250006,1.118066406249994],[18.01171875,1.422119140625],[18.0578125,1.534863281249997],[18.072851562500006,1.719384765624994],[18.072167968750023,2.01328125],[18.211621093750008,2.414941406249994],[18.34345703125001,2.655419921874994],[18.49091796875001,2.924414062499991],[18.54707031250001,3.087011718749991],[18.622167968750006,3.304052734374991],[18.6103515625,3.478417968749994],[18.5966796875,3.6787109375],[18.633691406250023,3.954296875],[18.619921875000017,4.116601562499994],[18.567480468750006,4.257568359375],[18.59414062500002,4.346240234374989],[18.69990234375001,4.382617187499989],[18.83173828125001,4.5234375],[19.06855468750001,4.891406249999989],[19.32343750000001,5.070751953124997],[19.5009765625,5.127490234374989],[19.68603515625,5.121386718749989],[19.80654296875002,5.089306640624996],[19.8625,5.031298828124989],[20.002343750000023,4.944726562499994],[20.226367187500017,4.829638671874989],[20.3935546875,4.686181640624994],[20.48652343750001,4.541552734374989],[20.558105468749996,4.462695312499989],[20.6474609375,4.435644531249991],[20.79296875,4.447314453124989],[20.95576171875001,4.413134765624989],[21.125585937500002,4.332177734374994],[21.229785156250017,4.302197265624997],[21.268359375000014,4.323095703124991],[21.350195312500002,4.311376953124991],[21.53759765625,4.244824218749997],[21.687011718749996,4.281396484374994],[21.908203125,4.25390625],[22.422167968750017,4.134960937499997],[22.44970703125,4.155126953124991],[22.461816406250023,4.15976562499999],[22.505664062500017,4.207666015624994],[22.6171875,4.445556640624999],[22.711718750000017,4.591748046874997],[22.755761718750023,4.646679687499996],[22.864550781250017,4.723876953125],[22.99287109375001,4.743847656249997],[23.11591796875001,4.736914062499991],[23.218847656250006,4.702978515624991],[23.312890625000023,4.663525390624997],[23.41718750000001,4.663134765624989],[23.523632812500008,4.701269531249991],[23.681835937500008,4.770800781249989],[23.848437500000017,4.816357421874997],[23.99169921875,4.866259765624989],[24.22773437500001,4.953857421875],[24.31982421875,4.994140625],[24.437109375,5.009960937499997],[24.76552734375002,4.93007812499999],[24.978417968750023,4.982958984374989],[25.065234375000017,4.967431640624994],[25.249316406250017,5.024560546874994],[25.28310546875002,5.062695312499997],[25.400195312500017,5.255908203124988],[25.525097656250008,5.31210937499999],[25.713867187499996,5.28369140625],[25.819921875,5.253710937499988],[26.17353515625001,5.171142578125],[26.632617187500017,5.085205078125],[26.767578125,5.071923828124994],[26.822070312500014,5.062402343749994],[26.8701171875,5.07568359375],[27.020605468750006,5.184375],[27.071875,5.199755859374988],[27.11494140625001,5.197851562499991],[27.403320312499996,5.109179687499989]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Egypt","sov_a3":"EGY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Egypt","adm0_a3":"EGY","geou_dif":0,"geounit":"Egypt","gu_a3":"EGY","su_dif":0,"subunit":"Egypt","su_a3":"EGY","brk_diff":0,"name":"Egypt","name_long":"Egypt","brk_a3":"EGY","brk_name":"Egypt","brk_group":null,"abbrev":"Egypt","postal":"EG","formal_en":"Arab Republic of Egypt","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Egypt, Arab Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":7,"mapcolor13":2,"pop_est":83082869,"gdp_md_est":443700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"EG","iso_a3":"EGY","iso_n3":"818","un_a3":"818","wb_a2":"EG","wb_a3":"EGY","woe_id":-99,"adm0_a3_is":"EGY","adm0_a3_us":"EGY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"EGY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[34.19814453125002,31.322607421875002],[34.2125,31.29228515625],[34.24531250000001,31.208300781249996],[34.32851562500002,30.99501953124999],[34.400976562500006,30.827832031249997],[34.48994140625001,30.5962890625],[34.51777343750001,30.507373046874992],[34.52968750000002,30.446044921874996],[34.65859375000002,30.191455078124996],[34.73505859375001,29.98203125],[34.79111328125,29.812109375],[34.86982421875001,29.563916015624997],[34.904296875,29.47734375],[34.84853515625002,29.43212890625],[34.736425781250006,29.270605468750002],[34.6171875,28.75791015625],[34.44648437500001,28.357324218749994],[34.42714843750002,28.106494140624996],[34.39970703125001,28.01601562499999],[34.31855468750001,27.888964843749996],[34.22011718750002,27.764306640624994],[34.04511718750001,27.828857421875],[33.76025390625,28.04765625],[33.59414062500002,28.255566406249997],[33.416113281250006,28.38984375],[33.24775390625001,28.567724609375],[33.20195312500002,28.69570312499999],[33.203710937500006,28.777783203124994],[33.13017578125002,28.978271484374996],[33.07578125,29.07304687499999],[32.87060546875,29.286230468749995],[32.81171875000001,29.4],[32.766699218750006,29.45],[32.72148437500002,29.521777343749996],[32.647167968750004,29.7984375],[32.56572265625002,29.973974609374995],[32.47304687500002,29.925439453124994],[32.48945312500001,29.851513671874997],[32.40859375000002,29.749316406249996],[32.35976562500002,29.6306640625],[32.39726562500002,29.533789062500002],[32.5650390625,29.386328125],[32.59902343750002,29.321923828124994],[32.63808593750002,29.182177734374992],[32.6318359375,28.992236328125],[32.65888671875001,28.927734375],[32.78447265625002,28.786621093749996],[32.82949218750002,28.702880859375],[32.856542968750006,28.630615234375],[32.89824218750002,28.565234375],[33.02285156250002,28.442285156249994],[33.2021484375,28.208300781249996],[33.372265625,28.050585937499996],[33.49492187500001,27.974462890624995],[33.54707031250001,27.898144531249997],[33.55878906250001,27.701220703124992],[33.5498046875,27.607373046874997],[33.65742187500001,27.430566406249994],[33.697265625,27.341113281249992],[33.80166015625002,27.2681640625],[33.849316406250004,27.184912109375],[33.89306640625,27.049462890624994],[33.959082031250006,26.6490234375],[34.04951171875001,26.550732421874997],[34.32929687500001,26.024365234374997],[34.56513671875001,25.691162109374996],[34.679296875,25.44252929687499],[34.85322265625001,25.139794921874994],[35.19414062500002,24.475146484375003],[35.397070312500006,24.269970703124994],[35.47783203125002,24.154785156249996],[35.62470703125001,24.06601562499999],[35.78388671875001,23.937792968750003],[35.63203125000001,23.950341796874994],[35.593847656250006,23.942578125],[35.54082031250002,23.920654296874996],[35.515234375,23.84287109374999],[35.50439453125,23.779296875],[35.52275390625002,23.442529296874994],[35.56435546875002,23.27109375],[35.697851562500006,22.946191406249994],[35.79736328125,22.84873046874999],[35.845800781250006,22.785693359375003],[35.91337890625002,22.739648437499994],[36.22968750000001,22.628808593749994],[36.41455078125,22.394189453124994],[36.8296875,22.09765625],[36.87041015625002,22.015771484374994],[36.87138671875002,21.996728515624994],[36.54326171875002,21.996630859375003],[36.21523437500002,21.99658203125],[35.88701171875002,21.996533203124997],[35.55898437500002,21.99648437499999],[35.23085937500002,21.99643554687499],[34.90273437500002,21.99638671875],[34.57460937500002,21.996337890625],[34.246484375000016,21.996289062499997],[33.91845703125,21.996240234374994],[33.59033203125,21.99619140624999],[33.26220703125,21.996142578125003],[32.93408203125,21.99609375],[32.606054687500006,21.995996093749994],[32.27783203124999,21.995996093749994],[31.94980468750001,21.995898437500003],[31.621679687500006,21.995849609375],[31.43447265625002,21.995849609375],[31.46640625,22.084667968749997],[31.486132812500017,22.147802734374988],[31.464257812500023,22.191503906249988],[31.40029296875002,22.202441406250003],[31.358496093750006,22.188623046874994],[31.260644531250023,22.002294921874988],[31.20917968750001,21.994873046875],[31.092675781250026,21.994873046875],[30.71064453125001,21.994921875],[30.32861328125,21.995019531249994],[29.946679687500023,21.995117187499996],[29.564550781250002,21.995117187499996],[29.182519531250023,21.99521484374999],[28.800585937500017,21.99526367187499],[28.418554687500006,21.9953125],[28.036425781250014,21.995361328125],[27.65449218750001,21.99545898437499],[27.2724609375,21.995507812499994],[26.890429687500014,21.995556640624997],[26.508398437500006,21.99560546875],[26.126367187500023,21.995654296875003],[25.74433593750001,21.995751953124994],[25.3623046875,21.995800781249994],[24.980273437500017,21.995849609375],[24.980273437500017,22.220410156249997],[24.980273437500017,22.444970703124994],[24.980273437500017,22.66953125],[24.980273437500017,22.894091796875003],[24.980273437500017,23.11865234375],[24.980273437500017,23.343212890624997],[24.980273437500017,23.567822265624997],[24.980273437500017,23.79238281249999],[24.980273437500017,24.01694335937499],[24.980273437500017,24.241503906250003],[24.980273437500017,24.466064453124996],[24.980273437500017,24.690625],[24.980273437500017,24.915185546874994],[24.980273437500017,25.13974609374999],[24.980273437500017,25.364306640625003],[24.980273437500017,25.5888671875],[24.980273437500017,25.813427734374997],[24.980273437500017,26.03798828124999],[24.980273437500017,26.262548828125],[24.980273437500017,26.487109375],[24.980273437500017,26.711669921875],[24.980273437500017,26.936230468749997],[24.980273437500017,27.160839843749997],[24.980273437500017,27.385400390624994],[24.980273437500017,27.609960937499995],[24.980273437500017,27.834521484374996],[24.980273437500017,28.05908203125],[24.980273437500017,28.283642578124994],[24.980273437500017,28.50820312499999],[24.980273437500017,28.732763671875],[24.980273437500017,28.957324218749996],[24.980273437500017,29.181884765624996],[24.971679687499996,29.22382812499999],[24.916113281250006,29.37626953125],[24.86591796875001,29.570263671874997],[24.810839843750017,29.808740234374994],[24.8037109375,29.886035156249996],[24.71162109375001,30.131542968749997],[24.703222656250002,30.201074218749994],[24.726464843750023,30.250585937499995],[24.877539062500006,30.45751953125],[24.92304687500001,30.558007812499998],[24.96142578125,30.678515625],[24.973925781250017,30.7765625],[24.929492187500014,30.926464843749997],[24.877539062500006,31.061230468749994],[24.859960937500006,31.199169921874997],[24.85273437500001,31.334814453125],[24.929980468750017,31.427490234375],[25.02265625,31.514013671874995],[25.057226562500006,31.5671875],[25.11201171875001,31.626904296874997],[25.150488281250006,31.654980468749994],[25.22548828125002,31.533789062499995],[25.382226562500023,31.51279296875],[25.89326171875001,31.620898437499996],[26.457324218750017,31.51210937499999],[26.768652343750006,31.470361328124994],[27.248046875,31.377880859374997],[27.540039062499996,31.212695312499992],[27.6201171875,31.191748046875],[27.82998046875002,31.195019531249997],[27.967578125000017,31.097412109375],[28.51484375,31.050439453124994],[28.806933593750017,30.942675781249996],[28.972753906250006,30.856738281249996],[29.072070312500014,30.830273437499997],[29.159960937500017,30.8345703125],[29.27890625,30.866943359375],[29.428515625000017,30.927441406249997],[29.591601562500017,31.011523437499992],[29.929785156250006,31.227490234374994],[30.049414062500002,31.265429687499996],[30.127539062500002,31.255664062499992],[30.22265625,31.2583984375],[30.262304687500006,31.316845703124997],[30.312304687500014,31.35703125],[30.34375,31.40273437499999],[30.395117187500006,31.457617187499995],[30.57099609375001,31.472998046875],[30.923535156250008,31.566845703124994],[30.88417968750002,31.522363281249998],[30.562988281250004,31.4169921875],[30.70048828125002,31.403857421874996],[30.84140625,31.439892578124997],[31.001757812500014,31.462792968749994],[31.030859375,31.507568359375],[31.05195312500001,31.591552734374996],[31.08291015625002,31.603320312499996],[31.193945312500006,31.587597656249994],[31.5244140625,31.458251953125],[31.606542968750006,31.455761718749997],[31.839257812500023,31.526318359374994],[31.888964843750014,31.54140625],[31.964257812500023,31.502099609374994],[32.13603515625002,31.341064453124996],[32.076074218750016,31.344482421874996],[31.8921875,31.482470703124996],[31.875878906250023,31.413720703124994],[31.77109375,31.292578125],[31.902050781250008,31.240185546874994],[32.00849609375001,31.220507812499992],[32.065625,31.152978515624994],[32.10175781250001,31.092822265624996],[32.20654296875,31.11904296874999],[32.281835937500006,31.200878906249997],[32.242773437500006,31.246533203124994],[32.21621093750002,31.29375],[32.250585937500006,31.294921875],[32.32353515625002,31.256054687499994],[32.5328125,31.10073242187499],[32.60332031250002,31.06875],[32.6845703125,31.074023437499996],[32.8544921875,31.117724609374996],[32.90156250000001,31.1109375],[33.1298828125,31.168164062499997],[33.15673828125,31.126220703125],[33.1943359375,31.084521484374992],[33.3779296875,31.130957031249995],[33.66650390625,31.130419921874996],[33.902539062500004,31.18095703125],[34.17626953125,31.30390625],[34.19814453125002,31.322607421875002]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Cape Verde","sov_a3":"CPV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cape Verde","adm0_a3":"CPV","geou_dif":0,"geounit":"Cape Verde","gu_a3":"CPV","su_dif":0,"subunit":"Cape Verde","su_a3":"CPV","brk_diff":0,"name":"Cape Verde","name_long":"Cape Verde","brk_a3":"CPV","brk_name":"Cape Verde","brk_group":null,"abbrev":"C.Vd.","postal":"CV","formal_en":"Republic of Cape Verde","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cape Verde","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":4,"mapcolor13":11,"pop_est":429474,"gdp_md_est":1626,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CV","iso_a3":"CPV","iso_n3":"132","un_a3":"132","wb_a2":"CV","wb_a3":"CPV","woe_id":-99,"adm0_a3_is":"CPV","adm0_a3_us":"CPV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"CPV.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-24.308251953124966,14.856298828124991],[-24.386132812499937,14.818212890625048],[-24.44052734374992,14.834814453124963],[-24.49218749999997,14.87421875],[-24.51708984374997,14.93125],[-24.496875,14.980273437500017],[-24.391992187499966,15.038281250000026],[-24.329492187499937,15.01948242187501],[-24.295800781250023,14.929541015624991],[-24.308251953124966,14.856298828124991]]],[[[-23.18212890624997,15.136767578125017],[-23.209960937499943,15.133105468749987],[-23.251806640624945,15.178125],[-23.242480468750017,15.240527343750017],[-23.247167968749977,15.256982421874993],[-23.210253906250014,15.32353515625006],[-23.13774414062499,15.317724609375022],[-23.11933593749995,15.268408203125018],[-23.115869140624966,15.16665039062498],[-23.18212890624997,15.136767578125017]]],[[[-23.444238281249994,15.007958984374982],[-23.5046875,14.916113281250006],[-23.63720703124994,14.923486328124996],[-23.70537109374999,14.961328124999978],[-23.78500976562495,15.076904296874984],[-23.78251953124999,15.166113281250048],[-23.75449218749995,15.243554687500007],[-23.759375,15.310791015625027],[-23.74809570312499,15.328515625],[-23.70722656250001,15.316894531250027],[-23.700634765624983,15.27163085937505],[-23.579980468750023,15.160888671875044],[-23.535253906249977,15.139257812499991],[-23.444238281249994,15.007958984374982]]],[[[-22.917724609374996,16.237255859374955],[-22.834326171874977,16.218994140625057],[-22.80263671875002,16.225537109374955],[-22.749414062499994,16.221533203125034],[-22.69262695312497,16.169042968750006],[-22.68188476562503,16.11328125],[-22.710107421874994,16.043359374999966],[-22.820507812499926,15.986035156250011],[-22.88408203124999,15.992724609375045],[-22.95927734374996,16.045117187499983],[-22.91611328124995,16.148437499999968],[-22.917724609374996,16.237255859374955]]],[[[-24.08769531249999,16.62250976562501],[-24.04638671875,16.593066406250045],[-24.032714843749968,16.57202148437503],[-24.094140624999962,16.56103515625],[-24.243066406250023,16.599414062500017],[-24.28281249999995,16.57592773437503],[-24.32236328124992,16.49311523437504],[-24.398095703124966,16.61840820312497],[-24.392919921874977,16.664453125000023],[-24.37670898437497,16.67778320312499],[-24.271093749999945,16.644873046875034],[-24.08769531249999,16.62250976562501]]],[[[-22.888330078124966,16.659082031249994],[-22.920263671875006,16.60791015624997],[-22.959423828124983,16.68305664062501],[-22.980615234374934,16.700878906249983],[-22.99091796875001,16.808837890625057],[-22.93291015624999,16.84101562500004],[-22.904736328124955,16.84375],[-22.90390624999995,16.732128906249955],[-22.888330078124966,16.659082031249994]]],[[[-24.88706054687495,16.81811523437497],[-24.969140624999966,16.794189453125],[-25.019970703124926,16.797216796874977],[-25.09306640624999,16.83251953125],[-25.07011718749993,16.870703125000034],[-24.99101562499999,16.913232421874994],[-24.936474609374983,16.92211914062503],[-24.89189453124996,16.84648437499999],[-24.88706054687495,16.81811523437497]]],[[[-25.16982421874999,16.94648437500001],[-25.267236328124937,16.925927734375023],[-25.308300781249955,16.935839843749985],[-25.321923828124994,17.01538085937503],[-25.34155273437497,17.067724609375034],[-25.337109374999955,17.09101562499998],[-25.113476562499983,17.193652343750017],[-25.03466796875,17.176464843749983],[-24.97968749999998,17.09472656250003],[-25.01708984374997,17.04931640625],[-25.16982421874999,16.94648437500001]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Eritrea","sov_a3":"ERI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Eritrea","adm0_a3":"ERI","geou_dif":0,"geounit":"Eritrea","gu_a3":"ERI","su_dif":0,"subunit":"Eritrea","su_a3":"ERI","brk_diff":0,"name":"Eritrea","name_long":"Eritrea","brk_a3":"ERI","brk_name":"Eritrea","brk_group":null,"abbrev":"Erit.","postal":"ER","formal_en":"State of Eritrea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Eritrea","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":2,"mapcolor13":12,"pop_est":5647168,"gdp_md_est":3945,"pop_year":-99,"lastcensus":1984,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ER","iso_a3":"ERI","iso_n3":"232","un_a3":"232","wb_a2":"ER","wb_a3":"ERI","woe_id":-99,"adm0_a3_is":"ERI","adm0_a3_us":"ERI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ERI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[40.141210937500006,15.696142578125034],[40.18251953125005,15.642919921875006],[40.21142578124997,15.648144531250011],[40.2340820312501,15.665869140624977],[40.25009765625006,15.703466796875004],[40.40820312500002,15.629199218750072],[40.399023437500006,15.579882812500044],[40.30468749999997,15.577343749999983],[40.19580078125003,15.598144531250057],[40.09511718749999,15.590917968750004],[39.975195312500006,15.612451171875023],[39.94746093750004,15.696142578125034],[40.02392578124997,15.655615234375034],[40.06347656249997,15.665869140624977],[40.07050781250004,15.676611328125034],[40.01630859375004,15.733251953125032],[39.93994140625002,15.744531250000023],[39.94521484375005,15.789062500000027],[39.979394531249994,15.806591796874953],[40.00048828125003,15.828271484375025],[39.9567382812501,15.889404296875057],[40.04257812500006,15.875488281249972],[40.096777343750006,15.838476562499977],[40.13242187500006,15.79526367187506],[40.141210937500006,15.696142578125034]]],[[[40.07646484375002,16.082421875000023],[40.11005859375004,15.985742187500051],[40.01240234375004,16.02265625000001],[39.99609375000003,16.04267578125001],[40.03906249999997,16.080957031249994],[40.04814453125002,16.1044921875],[40.07646484375002,16.082421875000023]]],[[[38.60947265625006,18.00507812500004],[38.91171875000006,17.427148437499994],[39.03447265625002,17.085546875000034],[39.14257812500002,16.729150390624966],[39.222558593749994,16.193701171875063],[39.29892578125,15.92109375000001],[39.42226562499999,15.786669921874989],[39.5065429687501,15.532128906249994],[39.5788085937501,15.522509765624989],[39.63125,15.45253906250005],[39.72080078125006,15.213671875000058],[39.78554687499999,15.12485351562499],[39.819433593750006,15.201269531250022],[39.815625,15.24531250000001],[39.79033203125002,15.318847656249986],[39.81347656250003,15.413574218750012],[39.86376953124997,15.470312500000034],[39.97832031250002,15.393115234375015],[40.04101562500003,15.334521484374987],[40.05781250000004,15.217089843750045],[40.084082031250006,15.151953125],[40.20410156250003,15.014111328124983],[40.305273437500006,14.974023437499994],[40.43652343750003,14.963964843749991],[40.546289062499994,14.933593750000014],[40.634375,14.883007812500011],[40.799316406249964,14.743017578125004],[41.17646484375004,14.620312500000052],[41.47968750000009,14.243896484375014],[41.65820312499997,13.983056640624993],[42.24511718749997,13.587646484374986],[42.34648437500002,13.398095703125007],[42.39931640625005,13.212597656249969],[42.522851562499994,13.221484375],[42.734472656250006,13.018603515624973],[42.796191406250074,12.864257812500057],[42.96953125000002,12.808349609375028],[42.99902343750003,12.899511718750048],[43.082910156250044,12.824609374999966],[43.11669921874997,12.708593749999963],[43.00566406250002,12.66230468750004],[42.88330078124997,12.621289062500024],[42.86591796875004,12.622802734374986],[42.82529296875006,12.569335937500012],[42.767480468749994,12.422851562500012],[42.70371093750006,12.380322265625054],[42.67011718750004,12.3765625],[42.47939453124999,12.513623046875026],[42.45,12.521337890625006],[42.40859374999999,12.494384765625014],[42.37851562500006,12.46640625],[42.28994140625005,12.570214843750009],[42.225,12.661962890624961],[42.13427734374997,12.771435546874969],[42.04658203125004,12.820605468750045],[41.952148437499964,12.88232421875],[41.85957031250004,13.025878906250027],[41.76503906250005,13.183935546874991],[41.625,13.313232421875043],[41.362890625,13.499804687500031],[41.12236328125002,13.736132812500045],[40.938574218750006,13.983105468749997],[40.82011718750002,14.111669921874991],[40.76953125000003,14.144482421875011],[40.52441406249997,14.22519531250002],[40.353125,14.338085937500024],[40.22148437500002,14.43115234374997],[40.140625,14.456054687499988],[40.06210937500006,14.459130859374993],[39.89511718750006,14.440673828125043],[39.756152343750074,14.499023437500028],[39.69794921875009,14.499023437500028],[39.604882812499994,14.51606445312504],[39.531835937500006,14.53671875],[39.44609375000002,14.511865234374982],[39.270117187500006,14.470312500000048],[39.198046875000074,14.479394531250037],[39.15859374999999,14.5375],[39.1354492187501,14.581884765625034],[39.07421874999997,14.628222656249974],[39.02382812499999,14.628222656249974],[38.99570312500006,14.586865234374983],[38.81201171875003,14.482324218750007],[38.50439453124997,14.424414062500018],[38.43144531250002,14.428613281249994],[38.37695312500002,14.470410156249983],[38.22148437500007,14.649658203124986],[38.177050781250074,14.678808593749977],[38.141992187499994,14.681494140624991],[38.069921875,14.702734374999965],[38.002539062500006,14.737109375000044],[37.943457031250055,14.810546875],[37.884179687499994,14.852294921874972],[37.82031250000003,14.708496093749986],[37.70839843750005,14.45722656250004],[37.64843750000003,14.32255859375006],[37.571191406249994,14.149072265624966],[37.546777343749994,14.143847656249974],[37.507226562499994,14.156396484375035],[37.3537109375001,14.372460937500009],[37.257226562499994,14.453759765625051],[37.18515625000006,14.445996093749985],[37.132617187500074,14.406054687500015],[37.099414062500074,14.333984374999984],[37.06347656250003,14.289257812500024],[37.024511718750006,14.271972656250057],[36.940722656250074,14.28056640625003],[36.81191406250005,14.315039062500034],[36.67910156250005,14.307568359375024],[36.542382812499994,14.25820312499999],[36.52431640625005,14.256835937499986],[36.492285156250006,14.544335937500023],[36.470800781250006,14.73647460937501],[36.448144531249994,14.940087890625009],[36.42675781249997,15.132080078125043],[36.521777343750074,15.250146484375021],[36.566015625,15.362109375],[36.67919921874997,15.726367187500045],[36.724511718749994,15.798876953124987],[36.81347656249997,15.993945312500045],[36.82587890625004,16.050292968750057],[36.91376953125009,16.296191406250045],[36.9054687500001,16.459521484375017],[36.887792968750006,16.624658203124994],[36.93574218750004,16.72236328125001],[36.9787109375001,16.800585937500045],[36.97578125000009,16.866552734375006],[36.99521484375006,17.020556640625014],[37.00898437500004,17.058886718750017],[37.06152343749997,17.061279296875057],[37.16953125000006,17.04140625],[37.24882812500002,17.056884765625057],[37.34042968750006,17.057080078124983],[37.41103515625005,17.061718749999955],[37.452929687500074,17.108691406250017],[37.51015625,17.28813476562499],[37.54746093750006,17.324121093750048],[37.575976562500074,17.335009765625042],[37.65673828125003,17.368261718749974],[37.725976562499994,17.420507812500063],[37.78242187500004,17.458007812500057],[37.803320312500006,17.465527343749983],[37.86298828125003,17.470263671875074],[37.9225585937501,17.492333984375023],[37.95009765624999,17.517675781250034],[38.02529296875005,17.53779296874995],[38.09892578125001,17.526464843750063],[38.14853515625,17.54853515625001],[38.181542968749994,17.562841796875006],[38.21904296875007,17.563964843750057],[38.253515625,17.584765625000017],[38.26728515625004,17.616699218750057],[38.28984375000002,17.637011718750017],[38.34736328125004,17.68359375],[38.37373046875004,17.717333984375045],[38.385546875000074,17.751269531250017],[38.39716796875004,17.778369140625045],[38.42246093750006,17.823925781249983],[38.522851562499994,17.938525390625074],[38.60947265625006,18.00507812500004]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Comoros","sov_a3":"COM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Comoros","adm0_a3":"COM","geou_dif":0,"geounit":"Comoros","gu_a3":"COM","su_dif":0,"subunit":"Comoros","su_a3":"COM","brk_diff":0,"name":"Comoros","name_long":"Comoros","brk_a3":"COM","brk_name":"Comoros","brk_group":null,"abbrev":"Com.","postal":"KM","formal_en":"Union of the Comoros","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Comoros","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":4,"mapcolor13":10,"pop_est":752438,"gdp_md_est":751.2,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KM","iso_a3":"COM","iso_n3":"174","un_a3":"174","wb_a2":"KM","wb_a3":"COM","woe_id":-99,"adm0_a3_is":"COM","adm0_a3_us":"COM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":2,"homepart":1,"filename":"COM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[43.788671875,-12.307031250000023],[43.85898437500006,-12.368261718749977],[43.66367187500006,-12.342871093749949],[43.632910156250006,-12.287695312499991],[43.63134765624997,-12.247070312499972],[43.7042968750001,-12.255957031250006],[43.788671875,-12.307031250000023]]],[[[44.476367187500074,-12.08154296875],[44.52675781250005,-12.21953125],[44.526269531249994,-12.323535156250017],[44.504980468750006,-12.356542968749991],[44.46015625000003,-12.335156249999983],[44.37744140624997,-12.25224609374996],[44.220117187499994,-12.171386718750014],[44.29228515625001,-12.164746093749995],[44.33447265625003,-12.173046875],[44.37910156250003,-12.165625],[44.407031250000074,-12.120117187499957],[44.41259765624997,-12.092968750000026],[44.45185546875004,-12.071386718749977],[44.476367187500074,-12.08154296875]]],[[[43.465820312499964,-11.901269531249966],[43.44677734375002,-11.91455078125],[43.35546874999997,-11.85751953125002],[43.303320312500006,-11.844042968750031],[43.226660156250006,-11.75185546874998],[43.25605468750004,-11.432128906249957],[43.280664062499994,-11.391210937499963],[43.2990234375001,-11.374511718750028],[43.34150390625004,-11.368457031249946],[43.392968750000044,-11.408593749999952],[43.37939453124997,-11.614160156249994],[43.44765625,-11.752539062500034],[43.491503906250074,-11.862109374999974],[43.465820312499964,-11.901269531249966]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Djibouti","sov_a3":"DJI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Djibouti","adm0_a3":"DJI","geou_dif":0,"geounit":"Djibouti","gu_a3":"DJI","su_dif":0,"subunit":"Djibouti","su_a3":"DJI","brk_diff":0,"name":"Djibouti","name_long":"Djibouti","brk_a3":"DJI","brk_name":"Djibouti","brk_group":null,"abbrev":"Dji.","postal":"DJ","formal_en":"Republic of Djibouti","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Djibouti","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":4,"mapcolor13":8,"pop_est":516055,"gdp_md_est":1885,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DJ","iso_a3":"DJI","iso_n3":"262","un_a3":"262","wb_a2":"DJ","wb_a3":"DJI","woe_id":-99,"adm0_a3_is":"DJI","adm0_a3_us":"DJI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Middle East & North Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DJI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[43.24599609375002,11.499804687499989],[43.159375,11.36572265625],[43.04863281250002,11.1943359375],[42.92275390625002,10.999316406249989],[42.84414062500002,10.997949218749994],[42.78300781250002,11.009277343749998],[42.74121093749999,11.042382812499994],[42.654980468750004,11.078320312499995],[42.557714843750006,11.080761718749997],[42.46513671875002,11.047070312499997],[42.30810546875,11.005224609374991],[42.16621093750001,10.991601562499994],[42.052148437500016,10.96835937499999],[41.95742187500002,10.94101562499999],[41.872167968750006,10.955810546874998],[41.79824218750002,10.98046875],[41.78203125000002,11.187792968749989],[41.7646484375,11.412890624999989],[41.76650390625002,11.589111328125],[41.79267578125001,11.686035156249998],[41.815625,11.723779296874993],[41.94960937500002,11.857861328124995],[41.99589843750002,11.912353515625],[42.14912109375001,12.134130859374991],[42.28037109375,12.324267578124989],[42.378515625,12.46640625],[42.40859375000002,12.494384765624998],[42.45,12.521337890624991],[42.47939453125002,12.513623046874997],[42.670117187500004,12.3765625],[42.703710937500006,12.380322265624997],[42.76748046875002,12.422851562499998],[42.825292968750006,12.569335937499998],[42.86591796875001,12.622802734374998],[42.88330078125,12.621289062499995],[43.00566406250002,12.662304687499997],[43.11669921875,12.70859375],[43.130859375,12.660449218749987],[43.29863281250002,12.4638671875],[43.353515625,12.367041015624991],[43.409765625,12.18994140625],[43.38027343750002,12.091259765624997],[43.33671875000002,12.027001953124994],[43.272070312500006,11.969531249999989],[43.04804687500001,11.829052734374997],[42.79902343750001,11.739404296874994],[42.64003906250002,11.560107421874989],[42.52177734375002,11.572167968749994],[42.539746093750004,11.50429687499999],[42.58378906250002,11.496777343749997],[42.65273437500002,11.509570312499989],[42.78974609375001,11.56171875],[42.911523437500016,11.586621093749997],[43.04277343750002,11.58847656249999],[43.16171875,11.56601562499999],[43.24599609375002,11.499804687499989]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Algeria","sov_a3":"DZA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Algeria","adm0_a3":"DZA","geou_dif":0,"geounit":"Algeria","gu_a3":"DZA","su_dif":0,"subunit":"Algeria","su_a3":"DZA","brk_diff":0,"name":"Algeria","name_long":"Algeria","brk_a3":"DZA","brk_name":"Algeria","brk_group":null,"abbrev":"Alg.","postal":"DZ","formal_en":"People's Democratic Republic of Algeria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Algeria","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":6,"mapcolor13":3,"pop_est":34178188,"gdp_md_est":232900,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DZ","iso_a3":"DZA","iso_n3":"012","un_a3":"012","wb_a2":"DZ","wb_a3":"DZA","woe_id":-99,"adm0_a3_is":"DZA","adm0_a3_us":"DZA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DZA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[8.576562500000023,36.93720703125],[8.59765625,36.88388671875],[8.601269531250011,36.833935546875],[8.506738281250023,36.7875],[8.444238281250023,36.7607421875],[8.36962890625,36.63251953125],[8.230761718750017,36.545263671875],[8.207617187500006,36.518945312499994],[8.208789062500017,36.4951171875],[8.302734375,36.455615234374996],[8.333984375,36.4181640625],[8.348730468750006,36.36796875],[8.306738281250006,36.18876953124999],[8.2802734375,36.0509765625],[8.245703125,35.870556640625],[8.2470703125,35.801806640624996],[8.282910156250011,35.719287109374996],[8.318066406250011,35.654931640624994],[8.329003906250021,35.5822265625],[8.31640625,35.403125],[8.35986328125,35.299609375],[8.394238281250011,35.203857421875],[8.312109375,35.084619140624994],[8.27685546875,34.9794921875],[8.254687500000017,34.828955078125],[8.24560546875,34.73408203125],[8.192773437500023,34.646289062499996],[8.123437500000023,34.563916015625],[8.045605468750011,34.51269531249999],[7.949414062500011,34.468701171875],[7.838281250000022,34.410302734374994],[7.74853515625,34.2544921875],[7.554492187500017,34.125],[7.513867187500011,34.080517578125],[7.495605468749999,33.976513671875],[7.500195312500011,33.832470703125],[7.534375,33.717919921874994],[7.627539062500006,33.548632812499996],[7.70917968750001,33.3623046875],[7.731347656250022,33.268505859375],[7.7626953125,33.23310546875],[7.877246093750017,33.172119140625],[8.075585937500023,33.0890625],[8.1125,33.055322265624994],[8.2109375,32.926708984375],[8.30419921875,32.6962890625],[8.333398437500023,32.543603515624994],[8.51513671875,32.422314453125],[8.682910156250017,32.310449218749994],[8.844042968750017,32.212109375],[9.018945312500023,32.105371093749994],[9.044042968750006,32.07236328125],[9.102343750000015,31.846142578124997],[9.160253906250006,31.621337890625],[9.224023437500021,31.373681640624998],[9.287890625000017,31.125341796874995],[9.36328125,30.83291015624999],[9.406054687500017,30.666796875],[9.4580078125,30.465380859374992],[9.51875,30.22939453124999],[9.420996093750006,30.179296875],[9.310253906250011,30.115234375],[9.391015625000023,29.993652343749996],[9.546191406250017,29.795947265624992],[9.64013671875,29.636425781249994],[9.672656250000017,29.566992187499995],[9.745898437500015,29.368945312499992],[9.805273437500006,29.17695312499999],[9.820703125000023,29.114794921874996],[9.842578125000017,28.966992187499994],[9.815625,28.56020507812499],[9.858203125000015,28.043310546875],[9.916015625,27.785693359374996],[9.825292968750006,27.552978515625],[9.747558593749998,27.330859375],[9.752539062500006,27.2193359375],[9.79541015625,27.044775390625],[9.837109375000011,26.915820312499996],[9.894433593750021,26.847949218749996],[9.883203125000023,26.630810546874994],[9.859375,26.551953125],[9.684960937500023,26.438232421875],[9.491406250000011,26.333740234375],[9.437890625000021,26.24550781249999],[9.42236328125,26.147070312499995],[9.448242187499998,26.067138671875],[9.58125,25.89013671875],[9.781054687500017,25.624267578125],[10.00068359375001,25.332080078125003],[10.01904296875,25.258544921875],[10.028125,25.051025390625],[10.119531250000023,24.790234375],[10.218652343750023,24.676220703124994],[10.255859375,24.591015625],[10.32578125,24.530224609374997],[10.395898437500021,24.485595703125],[10.43896484375,24.480224609375],[10.686132812500004,24.55136718749999],[11.108203125000015,24.434033203124997],[11.507617187500017,24.31435546874999],[11.536914062500015,24.290820312500003],[11.624218750000011,24.139697265625003],[11.766992187500023,23.892578125],[11.873046875,23.69482421875],[11.967871093750006,23.517871093750003],[11.45,23.212597656249994],[10.932226562500006,22.907275390625003],[10.414355468750017,22.602001953124994],[9.896484375,22.29672851562499],[9.378710937500017,21.99140625],[8.8609375,21.68613281249999],[8.343066406250017,21.380859375],[7.825195312500001,21.075585937499994],[7.481738281250017,20.873095703125003],[7.26337890625001,20.694482421874994],[6.989355468750006,20.470507812500003],[6.73066406250001,20.248046875],[6.527050781250011,20.072949218749997],[6.26337890625001,19.846142578124997],[6.130664062500016,19.731982421875003],[5.836621093750011,19.479150390624994],[5.748339843750017,19.434228515624994],[5.358691406250016,19.359521484374994],[5.001367187500022,19.291064453125003],[4.671289062500023,19.227783203125],[4.445703125000023,19.184521484374997],[4.227636718750006,19.142773437499997],[3.91015625,19.083740234375],[3.683496093750022,19.041601562499988],[3.438769531250017,18.996142578125003],[3.40087890625,18.98842773437499],[3.3564453125,18.986621093750003],[3.323437500000011,18.98837890624999],[3.255957031250006,19.01328125],[3.174218750000023,19.072900390624994],[3.119726562500006,19.103173828124994],[3.106054687500005,19.150097656249997],[3.137890625000011,19.212158203125],[3.17724609375,19.268164062499988],[3.1923828125,19.312060546875003],[3.219628906250022,19.345410156249997],[3.25439453125,19.372607421875003],[3.255859375,19.4109375],[3.22705078125,19.473583984374997],[3.20166015625,19.56040039062499],[3.202734375,19.718310546875003],[3.203417968750017,19.770751953125],[3.203710937500006,19.789697265624994],[3.130273437500023,19.85019531249999],[2.992480468750017,19.91660156249999],[2.86572265625,19.955957031249994],[2.807910156250017,19.969433593749997],[2.667773437500017,19.992919921875],[2.47421875,20.035009765624988],[2.406152343750023,20.063867187499994],[2.280859375,20.210302734374988],[2.219335937500006,20.247802734375],[1.928808593750005,20.272705078125],[1.832421875000023,20.296875],[1.753222656250017,20.331591796875003],[1.685449218750023,20.378369140624997],[1.647363281250023,20.45883789062499],[1.636035156250017,20.524365234374997],[1.610644531250017,20.555566406249994],[1.290234375000011,20.713574218749997],[1.208886718750023,20.767285156249997],[1.165722656250011,20.817431640625003],[1.1640625,20.891308593749997],[1.172753906250023,20.981982421875],[1.1591796875,21.0625],[1.1455078125,21.102246093749997],[0.999414062500023,21.19775390625],[0.671875,21.411865234375],[0.344433593750011,21.6259765625],[0.016992187500023,21.840136718750003],[-0.310546875,22.05419921875],[-0.637988281249989,22.268310546875],[-0.965478515624994,22.482470703125003],[-1.29296875,22.696533203125],[-1.620410156249989,22.91064453125],[-1.947900390624994,23.124804687500003],[-2.275390625,23.3388671875],[-2.602929687499994,23.553027343750003],[-2.930371093749983,23.767138671875003],[-3.257861328124989,23.98125],[-3.585351562499994,24.195361328125003],[-3.912792968749983,24.409472656250003],[-4.240332031249977,24.62353515625],[-4.516992187499994,24.8044921875],[-4.822607421874977,24.99560546875],[-5.049511718749983,25.135449218749997],[-5.275,25.27451171874999],[-5.516943359374977,25.423779296874997],[-5.674511718749983,25.51640625],[-5.862548828125,25.627001953125003],[-6.050585937499989,25.737597656250003],[-6.23867187499999,25.848193359375003],[-6.426708984374983,25.958789062500003],[-6.61474609375,26.06943359375],[-6.802832031249976,26.179980468749992],[-6.990869140624994,26.290576171874996],[-7.178906249999984,26.401171875],[-7.366992187499989,26.511767578124996],[-7.55507812499999,26.622363281249992],[-7.743115234374982,26.732958984374996],[-7.93115234375,26.843554687499996],[-8.119238281249977,26.954150390624996],[-8.307275390624994,27.064746093749996],[-8.495312499999983,27.175341796874992],[-8.683349609375,27.2859375],[-8.683349609375,27.490234375],[-8.683349609375,27.656445312499997],[-8.683349609375,27.900390625],[-8.683349609375,28.112011718749997],[-8.683349609375,28.323681640624997],[-8.683349609375,28.46923828125],[-8.683349609375,28.620751953124994],[-8.678417968749983,28.689404296874997],[-8.659912109375,28.718603515624995],[-8.558349609375,28.767871093749992],[-8.399316406249994,28.88017578125],[-8.340478515624994,28.93017578125],[-8.265185546874989,28.980517578124996],[-7.998925781249994,29.132421875],[-7.943847656249999,29.174755859375],[-7.685156249999977,29.34951171874999],[-7.624609374999976,29.375195312499997],[-7.485742187499994,29.39223632812499],[-7.427685546874982,29.425],[-7.349755859374994,29.494726562499995],[-7.234912109374989,29.574902343749997],[-7.160205078124988,29.612646484375],[-7.142431640624977,29.619580078124997],[-7.094921874999983,29.625195312499997],[-6.855566406249977,29.601611328124996],[-6.755126953124999,29.583837890624995],[-6.635351562499977,29.568798828124994],[-6.597753906249977,29.578955078124995],[-6.565673828125,29.603857421875],[-6.520556640624989,29.659863281249997],[-6.510693359374983,29.726025390624997],[-6.507910156249977,29.7837890625],[-6.500878906249994,29.809130859374996],[-6.479736328124999,29.820361328124992],[-6.427636718749994,29.816113281249994],[-6.357617187499983,29.808300781249994],[-6.214794921874983,29.810693359374998],[-6.166503906249999,29.818945312499995],[-6.00429687499999,29.83125],[-5.775,29.869042968749994],[-5.593310546874989,29.91796875],[-5.448779296874989,29.956933593749998],[-5.293652343749983,30.058642578124996],[-5.180126953124982,30.166162109374994],[-5.061914062499994,30.326416015625],[-4.96826171875,30.465380859374992],[-4.778515624999983,30.55239257812499],[-4.61962890625,30.604785156249996],[-4.529150390624976,30.625537109374996],[-4.322851562499976,30.698876953124994],[-4.148779296874977,30.8095703125],[-3.9853515625,30.913525390624997],[-3.860058593749983,30.92724609375],[-3.702001953124977,30.944482421874994],[-3.666796874999989,30.96401367187499],[-3.626904296874983,31.000927734375],[-3.62451171875,31.065771484374995],[-3.672509765624994,31.111376953124996],[-3.730175781249983,31.135400390624994],[-3.77099609375,31.161816406249997],[-3.811816406249988,31.166601562499995],[-3.833398437499994,31.197802734374996],[-3.821386718749978,31.25546875],[-3.815136718749983,31.308837890625],[-3.789160156249977,31.361816406249996],[-3.796435546874989,31.437109375],[-3.837109374999983,31.512353515624994],[-3.849560546874983,31.56640625],[-3.8466796875,31.619873046875],[-3.826757812499978,31.661914062499992],[-3.768164062499977,31.68955078125],[-3.700244140624989,31.700097656249994],[-3.604589843749977,31.686767578125],[-3.439794921874977,31.704541015625],[-3.017382812499989,31.834277343749992],[-2.988232421874983,31.87421875],[-2.961132812499983,31.963964843749995],[-2.930859374999983,32.042529296874996],[-2.88720703125,32.06884765625],[-2.863427734374994,32.07470703125],[-2.722607421874983,32.095751953124996],[-2.523242187499989,32.12568359375],[-2.448388671874994,32.12998046875],[-2.23125,32.121337890625],[-2.072802734374989,32.11503906249999],[-1.816992187499977,32.104785156249996],[-1.63515625,32.099560546875],[-1.47705078125,32.094873046874994],[-1.275341796874983,32.089013671874994],[-1.225927734374977,32.107226562499996],[-1.225927734374977,32.16455078125],[-1.26210937499999,32.271142578124994],[-1.240332031249977,32.33759765625],[-1.16259765625,32.399169921875],[-1.065527343749977,32.468310546874996],[-1.111035156249983,32.55229492187499],[-1.188232421875,32.60849609375],[-1.29638671875,32.675683593749994],[-1.352148437499977,32.703369140625],[-1.45,32.78481445312499],[-1.510009765625,32.87763671875],[-1.550732421874983,33.073583984375],[-1.625097656249977,33.18334960937499],[-1.67919921875,33.318652343749996],[-1.63125,33.566748046875],[-1.702978515624977,33.716845703124996],[-1.714111328125,33.7818359375],[-1.714697265624977,33.858203125],[-1.692675781249989,33.990283203124996],[-1.706933593749994,34.176074218749996],[-1.791796874999989,34.36791992187499],[-1.751855468749994,34.433251953124994],[-1.733300781249994,34.467041015625],[-1.739453124999983,34.49609375],[-1.816601562499983,34.55708007812499],[-1.849658203124988,34.607324218749994],[-1.83242187499999,34.654638671875],[-1.792187499999983,34.723193359374996],[-1.795605468749983,34.751904296875],[-1.9208984375,34.835546875],[-2.131787109374983,34.970849609374994],[-2.190771484374977,35.02978515625],[-2.219628906249994,35.10419921875],[-2.017773437499983,35.08505859375],[-1.913281249999983,35.09423828125],[-1.673632812499988,35.18310546875],[-1.483740234374977,35.303076171875],[-1.335839843749994,35.3642578125],[-1.205371093749989,35.495751953124994],[-1.087695312499989,35.578857421875],[-0.91748046875,35.668408203125],[-0.426123046874977,35.8615234375],[-0.350781249999983,35.86318359374999],[-0.189160156249983,35.819091796875],[-0.048242187499994,35.8328125],[0.047949218750006,35.90053710937499],[0.151660156250017,36.063134765624994],[0.312207031250011,36.16235351562499],[0.514941406250017,36.26181640625],[0.790820312500017,36.35654296875],[0.9716796875,36.4439453125],[1.257226562500023,36.519580078124996],[1.974511718750023,36.567578125],[2.342871093750005,36.610302734375],[2.593359375,36.60068359375],[2.846484375000017,36.7388671875],[2.972851562500011,36.784472656249996],[3.5205078125,36.7951171875],[3.779003906250011,36.89619140625],[4.758105468750017,36.896337890625],[4.877832031250022,36.86240234375],[4.995410156250017,36.808056640625],[5.195605468750016,36.676806640624996],[5.29541015625,36.648242187499996],[5.424609375000017,36.675439453124994],[5.725488281250023,36.799609375],[6.064746093750017,36.8642578125],[6.249121093750005,36.938330078125],[6.327832031250011,37.046044921874994],[6.486523437500011,37.085742187499996],[6.575878906250011,37.00302734374999],[6.927539062500017,36.91943359375],[7.143457031250023,36.943359375],[7.238476562500011,36.96850585937499],[7.20429687500001,37.0923828125],[7.432421875000017,37.05927734375],[7.607714843750017,36.999755859375],[7.791601562500005,36.880273437499994],[7.910449218750017,36.856347656249994],[8.127148437500011,36.91035156249999],[8.576562500000023,36.93720703125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Gabon","sov_a3":"GAB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Gabon","adm0_a3":"GAB","geou_dif":0,"geounit":"Gabon","gu_a3":"GAB","su_dif":0,"subunit":"Gabon","su_a3":"GAB","brk_diff":0,"name":"Gabon","name_long":"Gabon","brk_a3":"GAB","brk_name":"Gabon","brk_group":null,"abbrev":"Gabon","postal":"GA","formal_en":"Gabonese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Gabon","name_alt":null,"mapcolor7":6,"mapcolor8":2,"mapcolor9":5,"mapcolor13":5,"pop_est":1514993,"gdp_md_est":21110,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GA","iso_a3":"GAB","iso_n3":"266","un_a3":"266","wb_a2":"GA","wb_a3":"GAB","woe_id":-99,"adm0_a3_is":"GAB","adm0_a3_us":"GAB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"GAB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[13.293554687500006,2.161572265624997],[13.288671875,2.091699218749994],[13.20947265625,1.92041015625],[13.172167968750017,1.78857421875],[13.162695312500006,1.648095703124994],[13.1845703125,1.535058593749994],[13.222753906250006,1.45458984375],[13.247363281250017,1.36669921875],[13.228320312500015,1.305419921875],[13.19013671875001,1.279248046874997],[13.21630859375,1.2484375],[13.274121093750011,1.241015624999988],[13.372363281250017,1.267773437499997],[13.523339843750021,1.314599609374994],[13.72119140625,1.382275390624997],[13.851367187500017,1.41875],[14.066210937500017,1.395898437499994],[14.180859375000011,1.370214843749991],[14.23974609375,1.322558593749989],[14.303027343750015,1.120849609375],[14.334472656249998,1.09023437499999],[14.386425781250011,1.004443359374988],[14.429882812500011,0.901464843749991],[14.43916015625001,0.84912109375],[14.434472656250021,0.811474609374997],[14.390625,0.755712890624991],[14.341503906250011,0.673828125],[14.32421875,0.62421875],[14.283105468750023,0.587451171874989],[14.23095703125,0.551123046874991],[14.0875,0.536572265624997],[14.065527343750006,0.514990234374991],[14.025292968750023,0.427734375],[13.949609375000023,0.353808593749989],[13.915136718750004,0.283984374999989],[13.884570312500017,0.190820312499994],[13.890625,0.075292968749991],[13.87548828125,-0.0908203125],[13.860058593750011,-0.203320312500011],[13.898046875,-0.242578125],[14.069433593750006,-0.270117187500006],[14.102832031250017,-0.292382812500009],[14.148339843750023,-0.361914062500006],[14.206738281250011,-0.42734375],[14.36376953125,-0.468554687500003],[14.424707031250023,-0.518652343750006],[14.474121093749998,-0.573437500000011],[14.480566406250006,-0.618359375000011],[14.444921875,-0.798828125],[14.41064453125,-0.972070312500009],[14.42402343750001,-1.10390625],[14.436914062500021,-1.229785156250003],[14.45556640625,-1.413183593750006],[14.447265625,-1.525097656250011],[14.402929687500006,-1.593359375],[14.402929687500006,-1.64697265625],[14.423242187500023,-1.711523437500006],[14.38398437500001,-1.890039062500009],[14.358593750000011,-1.920214843750003],[14.288378906250017,-1.953515625],[14.25146484375,-2.00146484375],[14.239648437500021,-2.076757812500006],[14.201757812500004,-2.179882812500011],[14.162890625000015,-2.217578125],[14.162890625000015,-2.265527343750008],[14.200390625000011,-2.300585937500003],[14.199804687500006,-2.354199218750011],[14.129785156250023,-2.41796875],[14.08740234375,-2.466894531250006],[13.993847656250011,-2.490625],[13.886914062500011,-2.465429687500006],[13.86181640625,-2.429882812500011],[13.887695312499998,-2.37451171875],[13.878515625,-2.330175781250006],[13.841601562500017,-2.28369140625],[13.784375,-2.163769531250011],[13.733789062500023,-2.138476562500002],[13.70556640625,-2.1875],[13.618554687500021,-2.278613281250003],[13.464941406250006,-2.395410156250009],[13.357324218750023,-2.40478515625],[13.158593750000023,-2.369140625],[12.991992187500017,-2.313378906250008],[12.913574218749998,-2.17626953125],[12.864453125000011,-2.06328125],[12.793554687500004,-1.931835937500011],[12.713671875000017,-1.869433593750003],[12.62841796875,-1.82958984375],[12.590429687500004,-1.826855468750011],[12.468652343750023,-1.9],[12.43212890625,-1.928906250000011],[12.432421875000017,-1.990332031250006],[12.44375,-2.047558593750011],[12.462597656250011,-2.075292968750006],[12.478515625,-2.112011718750011],[12.475683593750006,-2.169238281250002],[12.453808593750011,-2.24560546875],[12.446386718750006,-2.329980468750009],[12.064453125,-2.41259765625],[11.998242187500011,-2.3828125],[11.950292968750006,-2.344824218750006],[11.892382812500017,-2.351464843750009],[11.726757812500011,-2.394726562500011],[11.665917968750023,-2.364550781250003],[11.60546875,-2.342578125],[11.577734375,-2.3609375],[11.5751953125,-2.397070312500006],[11.603417968750023,-2.595410156250011],[11.594531250000017,-2.670996093750006],[11.55712890625,-2.769628906250006],[11.537792968750011,-2.83671875],[11.639062500000023,-2.855371093750009],[11.675683593750021,-2.886621093750009],[11.711328125000023,-2.9365234375],[11.760156250000021,-2.983105468750011],[11.763476562500017,-3.01123046875],[11.7080078125,-3.063085937500006],[11.6890625,-3.126953125],[11.715429687500006,-3.176953125000011],[11.784375,-3.229101562500006],[11.885058593750017,-3.283203125],[11.934179687500006,-3.318554687500011],[11.929296875,-3.350976562500009],[11.8828125,-3.420214843750002],[11.86474609375,-3.478613281250006],[11.832910156250021,-3.531445312500011],[11.839453125,-3.580078125],[11.884765625,-3.625390625],[11.8798828125,-3.665917968750009],[11.84912109375,-3.696679687500008],[11.786425781250017,-3.690234375],[11.7333984375,-3.694531250000011],[11.68574218750001,-3.68203125],[11.536816406250011,-3.525],[11.504296875000023,-3.5203125],[11.288281250000011,-3.64111328125],[11.234472656250006,-3.690820312500008],[11.190039062500006,-3.762011718750003],[11.130175781250017,-3.916308593750003],[11.032031250000017,-3.826464843750003],[10.947265625,-3.662109375],[10.848535156250023,-3.561328125],[10.640722656250006,-3.398046875],[10.58544921875,-3.278027343750011],[10.34765625,-3.013085937500009],[10.006152343750017,-2.748339843750003],[9.759472656250011,-2.5185546875],[9.722070312500023,-2.467578125],[9.763671875,-2.473828125000011],[10.001953125,-2.58837890625],[10.034472656250017,-2.575585937500009],[10.062011718749998,-2.549902343750006],[9.959082031250004,-2.48984375],[9.86083984375,-2.442578125000011],[9.768652343750006,-2.4130859375],[9.676367187500006,-2.415625],[9.624609375,-2.367089843750009],[9.591015625000011,-2.293164062500011],[9.574023437500017,-2.22998046875],[9.533203125,-2.163867187500003],[9.402246093750023,-2.027636718750003],[9.370507812500021,-1.975],[9.298925781250006,-1.903027343750011],[9.342480468750011,-1.893652343750006],[9.482812500000021,-1.962304687500009],[9.495312500000011,-1.934960937500009],[9.483203125000017,-1.894628906250006],[9.342187500000023,-1.829394531250003],[9.265625,-1.825097656250009],[9.247949218750023,-1.779296875],[9.258398437500006,-1.726269531250011],[9.157519531250017,-1.527734375],[9.052832031250006,-1.379101562500011],[9.036328125000011,-1.308886718750003],[9.318847656249998,-1.632031250000011],[9.356640625000011,-1.637597656250009],[9.406347656250004,-1.634570312500003],[9.523339843750021,-1.598339843750011],[9.501074218750006,-1.55517578125],[9.448339843750006,-1.508886718750006],[9.397167968750011,-1.530175781250009],[9.330664062500006,-1.534570312500009],[9.295800781250023,-1.515234375],[9.280175781250023,-1.48193359375],[9.346679687499998,-1.325],[9.31787109375,-1.332910156250009],[9.296679687500017,-1.3609375],[9.260156250000023,-1.374218750000011],[9.203808593750011,-1.382421875],[9.064648437500011,-1.29833984375],[8.94189453125,-1.071484375000011],[8.909375,-1.025],[8.8765625,-0.94609375],[8.84423828125,-0.91357421875],[8.703125,-0.591015625000011],[8.757226562500023,-0.614941406250011],[8.821386718750006,-0.708398437500009],[8.946386718750006,-0.688769531250003],[8.995214843750006,-0.634667968750008],[9.037890625000017,-0.63671875],[9.08154296875,-0.624316406250003],[9.136523437500015,-0.573339843750006],[9.296679687500017,-0.351269531250011],[9.339062500000011,-0.058251953125009],[9.325292968750006,0.115820312499991],[9.301855468750006,0.288525390624997],[9.354882812500023,0.343603515624991],[9.375781250000017,0.307226562499991],[9.386132812500023,0.245898437499989],[9.4111328125,0.200439453125],[9.468164062500023,0.15976562499999],[9.574316406250006,0.14892578125],[9.738378906250006,0.0849609375],[9.796777343750023,0.044238281249989],[9.812695312500011,0.125585937499991],[10.00146484375,0.194970703124994],[9.944433593750006,0.219873046874994],[9.776660156250017,0.192480468749991],[9.546484375,0.295947265624989],[9.470117187500023,0.361914062499991],[9.398828125000023,0.48671875],[9.324804687500006,0.552099609374991],[9.329980468750023,0.61083984375],[9.495312500000011,0.664843749999989],[9.538964843750023,0.65869140625],[9.556640625,0.594189453124997],[9.601074218749998,0.567724609374991],[9.617968750000017,0.576513671874991],[9.625292968750017,0.631640624999989],[9.625878906250023,0.779443359374994],[9.575390625000011,0.991308593749991],[9.5908203125,1.031982421875],[9.636132812500023,1.046679687499988],[9.676464843750011,1.07470703125],[9.70458984375,1.079980468749994],[9.760546875000017,1.07470703125],[9.788671875,1.025683593749989],[9.80390625000001,0.998730468749997],[9.8603515625,0.986230468749994],[9.90673828125,0.960107421874994],[9.946679687500023,0.967138671874991],[9.979785156250017,0.997705078124994],[10.028515625000011,1.004003906249991],[10.178906250000011,1.003564453124994],[10.3154296875,1.003076171874994],[10.587207031250017,1.002148437499997],[10.85888671875,1.001269531249989],[11.130664062500015,1.00039062499999],[11.335351562500023,0.999707031249997],[11.334667968750011,1.120751953124994],[11.33359375,1.3076171875],[11.332324218750017,1.528369140624988],[11.331152343750006,1.740185546874997],[11.330078125,1.935888671874991],[11.328710937500004,2.167431640624997],[11.339941406250006,2.233837890624997],[11.353320312500017,2.261425781249997],[11.348437500000017,2.299707031249994],[11.558984375000023,2.302197265624997],[11.939746093750017,2.28515625],[12.106152343750011,2.2875],[12.153417968750006,2.284375],[12.361328125,2.295996093749991],[12.529785156249998,2.281347656249991],[12.601367187500017,2.265039062499994],[12.665722656250011,2.256787109374997],[12.867480468750017,2.246777343749997],[13.130859375,2.259423828124994],[13.2203125,2.256445312499991],[13.269921875000021,2.22421875],[13.293554687500006,2.161572265624997]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Republic of Congo","sov_a3":"COG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Republic of Congo","adm0_a3":"COG","geou_dif":0,"geounit":"Republic of Congo","gu_a3":"COG","su_dif":0,"subunit":"Republic of Congo","su_a3":"COG","brk_diff":0,"name":"Congo","name_long":"Republic of Congo","brk_a3":"COG","brk_name":"Republic of Congo","brk_group":null,"abbrev":"Rep. Congo","postal":"CG","formal_en":"Republic of Congo","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Congo, Rep.","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":10,"pop_est":4012809,"gdp_md_est":15350,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CG","iso_a3":"COG","iso_n3":"178","un_a3":"178","wb_a2":"CG","wb_a3":"COG","woe_id":-99,"adm0_a3_is":"COG","adm0_a3_us":"COG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":17,"abbrev_len":10,"tiny":-99,"homepart":1,"filename":"COG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[18.6103515625,3.478417968749994],[18.622167968750006,3.304052734374991],[18.54707031250001,3.087011718749991],[18.49091796875001,2.924414062499991],[18.34345703125001,2.655419921874994],[18.211621093750008,2.414941406249994],[18.072167968750023,2.01328125],[18.072851562500006,1.719384765624994],[18.0578125,1.534863281249997],[18.01171875,1.422119140625],[17.902441406250006,1.118066406249994],[17.8857421875,0.856884765624997],[17.925195312500023,0.537304687499997],[17.8876953125,0.234130859375],[17.77314453125001,-0.052392578125009],[17.72412109375,-0.277539062500011],[17.752832031250023,-0.549023437500011],[17.542871093750023,-0.775],[17.27880859375,-0.999609375],[17.10761718750001,-1.064453125],[16.974707031250006,-1.139941406250003],[16.879882812499996,-1.225878906250003],[16.84912109375,-1.2724609375],[16.780078125000017,-1.376367187500009],[16.62246093750002,-1.698925781250011],[16.54072265625001,-1.840136718750003],[16.43359375,-1.960839843750009],[16.27392578125,-2.108203125],[16.21533203125,-2.177832031250006],[16.19160156250001,-2.279101562500002],[16.20185546875001,-2.464746093750009],[16.217382812500006,-3.0302734375],[16.190625,-3.194433593750006],[16.146777343750017,-3.464160156250003],[15.990039062500017,-3.766210937500006],[15.872460937500023,-3.934277343750011],[15.75458984375001,-3.985546875000011],[15.60009765625,-4.030957031250011],[15.525976562500006,-4.087988281250006],[15.480957031249998,-4.171777343750009],[15.394628906250007,-4.244921875],[15.2671875,-4.307617187499999],[15.10625,-4.461035156250006],[14.912109375,-4.70556640625],[14.779296875,-4.845703125],[14.707910156250021,-4.881738281250009],[14.63398437500001,-4.885058593750003],[14.557617187500002,-4.855761718750003],[14.493945312500015,-4.851660156250005],[14.461621093750011,-4.864941406250011],[14.44091796875,-4.854101562500006],[14.410742187500004,-4.83125],[14.411914062500017,-4.775],[14.402929687500006,-4.681640625],[14.365429687500011,-4.585546875],[14.409960937500015,-4.508105468750003],[14.449804687500006,-4.449511718750003],[14.442773437500021,-4.419042968750006],[14.402929687500006,-4.369726562500006],[14.358300781250023,-4.299414062500005],[14.316210937500017,-4.304101562500009],[14.22705078125,-4.358105468750011],[14.133886718750006,-4.4],[14.046875,-4.41748046875],[13.978417968750023,-4.461230468750003],[13.94091796875,-4.484667968750003],[13.882324218749998,-4.484667968750003],[13.849511718750021,-4.458886718750009],[13.778027343750011,-4.433886718750003],[13.739062500000017,-4.442480468750006],[13.717089843750015,-4.454492187500009],[13.707617187500006,-4.543261718750003],[13.699414062500011,-4.618359375000011],[13.685351562500017,-4.688671875000011],[13.659570312500023,-4.721484375],[13.551660156250023,-4.756738281250009],[13.478417968750021,-4.804980468750003],[13.414941406250023,-4.83740234375],[13.375781250000017,-4.829394531250003],[13.297265625000023,-4.765234375],[13.219628906250021,-4.705859375],[13.176464843750011,-4.655859375],[13.15234375,-4.620312500000011],[13.136621093750023,-4.604296875],[13.08740234375,-4.601953125],[13.07275390625,-4.634765625],[13.048046875000011,-4.619238281250006],[12.971386718750011,-4.5517578125],[12.88105468750001,-4.445117187500003],[12.84814453125,-4.428906250000011],[12.798242187500023,-4.430566406250009],[12.719433593750011,-4.4697265625],[12.641699218750004,-4.531152343750009],[12.50146484375,-4.5875],[12.384570312500017,-4.619140625],[12.3740234375,-4.65771484375],[12.3466796875,-4.724121093749999],[12.307910156250015,-4.765527343750008],[12.20429687500001,-4.778613281250003],[12.167089843750004,-4.837695312500003],[12.077539062500023,-4.9521484375],[12.018359375000017,-5.004296875],[12.002734375000017,-4.98203125],[11.966796875,-4.954394531250002],[11.893261718750011,-4.86572265625],[11.820703125000023,-4.75546875],[11.80126953125,-4.705175781250005],[11.780859375,-4.6765625],[11.777539062500011,-4.565820312500009],[11.668066406250006,-4.434277343750011],[11.393847656250017,-4.200292968750006],[11.364453125000011,-4.130566406250011],[11.130175781250017,-3.916308593750003],[11.190039062500006,-3.762011718750003],[11.234472656250006,-3.690820312500008],[11.288281250000011,-3.64111328125],[11.504296875000023,-3.5203125],[11.536816406250011,-3.525],[11.68574218750001,-3.68203125],[11.7333984375,-3.694531250000011],[11.786425781250017,-3.690234375],[11.84912109375,-3.696679687500008],[11.8798828125,-3.665917968750009],[11.884765625,-3.625390625],[11.839453125,-3.580078125],[11.832910156250021,-3.531445312500011],[11.86474609375,-3.478613281250006],[11.8828125,-3.420214843750002],[11.929296875,-3.350976562500009],[11.934179687500006,-3.318554687500011],[11.885058593750017,-3.283203125],[11.784375,-3.229101562500006],[11.715429687500006,-3.176953125000011],[11.6890625,-3.126953125],[11.7080078125,-3.063085937500006],[11.763476562500017,-3.01123046875],[11.760156250000021,-2.983105468750011],[11.711328125000023,-2.9365234375],[11.675683593750021,-2.886621093750009],[11.639062500000023,-2.855371093750009],[11.537792968750011,-2.83671875],[11.55712890625,-2.769628906250006],[11.594531250000017,-2.670996093750006],[11.603417968750023,-2.595410156250011],[11.5751953125,-2.397070312500006],[11.577734375,-2.3609375],[11.60546875,-2.342578125],[11.665917968750023,-2.364550781250003],[11.726757812500011,-2.394726562500011],[11.892382812500017,-2.351464843750009],[11.950292968750006,-2.344824218750006],[11.998242187500011,-2.3828125],[12.064453125,-2.41259765625],[12.446386718750006,-2.329980468750009],[12.453808593750011,-2.24560546875],[12.475683593750006,-2.169238281250002],[12.478515625,-2.112011718750011],[12.462597656250011,-2.075292968750006],[12.44375,-2.047558593750011],[12.432421875000017,-1.990332031250006],[12.43212890625,-1.928906250000011],[12.468652343750023,-1.9],[12.590429687500004,-1.826855468750011],[12.62841796875,-1.82958984375],[12.713671875000017,-1.869433593750003],[12.793554687500004,-1.931835937500011],[12.864453125000011,-2.06328125],[12.913574218749998,-2.17626953125],[12.991992187500017,-2.313378906250008],[13.158593750000023,-2.369140625],[13.357324218750023,-2.40478515625],[13.464941406250006,-2.395410156250009],[13.618554687500021,-2.278613281250003],[13.70556640625,-2.1875],[13.733789062500023,-2.138476562500002],[13.784375,-2.163769531250011],[13.841601562500017,-2.28369140625],[13.878515625,-2.330175781250006],[13.887695312499998,-2.37451171875],[13.86181640625,-2.429882812500011],[13.886914062500011,-2.465429687500006],[13.993847656250011,-2.490625],[14.08740234375,-2.466894531250006],[14.129785156250023,-2.41796875],[14.199804687500006,-2.354199218750011],[14.200390625000011,-2.300585937500003],[14.162890625000015,-2.265527343750008],[14.162890625000015,-2.217578125],[14.201757812500004,-2.179882812500011],[14.239648437500021,-2.076757812500006],[14.25146484375,-2.00146484375],[14.288378906250017,-1.953515625],[14.358593750000011,-1.920214843750003],[14.38398437500001,-1.890039062500009],[14.423242187500023,-1.711523437500006],[14.402929687500006,-1.64697265625],[14.402929687500006,-1.593359375],[14.447265625,-1.525097656250011],[14.45556640625,-1.413183593750006],[14.436914062500021,-1.229785156250003],[14.42402343750001,-1.10390625],[14.41064453125,-0.972070312500009],[14.444921875,-0.798828125],[14.480566406250006,-0.618359375000011],[14.474121093749998,-0.573437500000011],[14.424707031250023,-0.518652343750006],[14.36376953125,-0.468554687500003],[14.206738281250011,-0.42734375],[14.148339843750023,-0.361914062500006],[14.102832031250017,-0.292382812500009],[14.069433593750006,-0.270117187500006],[13.898046875,-0.242578125],[13.860058593750011,-0.203320312500011],[13.87548828125,-0.0908203125],[13.890625,0.075292968749991],[13.884570312500017,0.190820312499994],[13.915136718750004,0.283984374999989],[13.949609375000023,0.353808593749989],[14.025292968750023,0.427734375],[14.065527343750006,0.514990234374991],[14.0875,0.536572265624997],[14.23095703125,0.551123046874991],[14.283105468750023,0.587451171874989],[14.32421875,0.62421875],[14.341503906250011,0.673828125],[14.390625,0.755712890624991],[14.434472656250021,0.811474609374997],[14.43916015625001,0.84912109375],[14.429882812500011,0.901464843749991],[14.386425781250011,1.004443359374988],[14.334472656249998,1.09023437499999],[14.303027343750015,1.120849609375],[14.23974609375,1.322558593749989],[14.180859375000011,1.370214843749991],[14.066210937500017,1.395898437499994],[13.851367187500017,1.41875],[13.72119140625,1.382275390624997],[13.523339843750021,1.314599609374994],[13.372363281250017,1.267773437499997],[13.274121093750011,1.241015624999988],[13.21630859375,1.2484375],[13.19013671875001,1.279248046874997],[13.228320312500015,1.305419921875],[13.247363281250017,1.36669921875],[13.222753906250006,1.45458984375],[13.1845703125,1.535058593749994],[13.162695312500006,1.648095703124994],[13.172167968750017,1.78857421875],[13.20947265625,1.92041015625],[13.288671875,2.091699218749994],[13.293554687500006,2.161572265624997],[13.533496093750017,2.159521484374991],[13.772753906250015,2.157421875],[14.034375,2.158886718749997],[14.287011718750023,2.160351562499997],[14.48408203125001,2.154736328124997],[14.578906250000015,2.199121093749994],[14.669140625000011,2.132080078125],[14.713281250000023,2.117138671874997],[14.728320312500017,2.122412109374991],[14.762890625000011,2.0751953125],[14.875,2.08046875],[14.89277343750001,2.0693359375],[14.902441406250004,2.012304687499991],[15.006445312500006,2.013769531249991],[15.057812500000011,2.000878906249994],[15.099609375,2.00234375],[15.160058593750023,2.035595703124997],[15.203515625000023,2.024462890624989],[15.282421875000011,1.981738281249988],[15.338769531250021,1.944726562499995],[15.41748046875,1.956738281249997],[15.60029296875001,1.950390625],[15.741601562500025,1.914990234374997],[15.881640625000015,1.816601562499997],[15.975195312500006,1.760009765625],[16.059375,1.676220703124997],[16.09033203125,1.691259765624991],[16.119531250000023,1.714111328125],[16.136132812500023,1.72421875],[16.13496093750001,1.795947265624988],[16.087890625,1.918066406249991],[16.069628906250017,2.021679687499997],[16.080078125,2.106787109374991],[16.11572265625,2.167822265624991],[16.176562500000017,2.204785156249997],[16.1826171875,2.262451171875],[16.183398437500017,2.270068359374989],[16.251757812500014,2.406787109374988],[16.319628906250017,2.542773437499989],[16.401269531250023,2.701025390624991],[16.468554687500017,2.831738281249997],[16.459570312500002,2.896533203124989],[16.466210937500023,2.993212890624989],[16.480078125,3.100976562499994],[16.47675781250001,3.165136718749991],[16.49628906250001,3.208837890624991],[16.543066406250006,3.36953125],[16.570410156250006,3.463085937499997],[16.610742187500023,3.50537109375],[16.67333984375,3.535205078124989],[16.76435546875001,3.536279296874994],[17.002539062500002,3.556689453124989],[17.224707031250006,3.598437499999988],[17.2984375,3.6171875],[17.437988281249996,3.684619140624988],[17.491601562500023,3.687304687499988],[17.537695312500006,3.66162109375],[17.806640625,3.584179687499997],[17.88037109375,3.553857421874994],[17.907128906250023,3.558398437499989],[17.94794921875001,3.5517578125],[18.0107421875,3.550830078124989],[18.072265625,3.560302734375],[18.111328125,3.551074218749989],[18.160937500000017,3.499804687499988],[18.193945312500006,3.505419921874988],[18.237109375000017,3.542675781249997],[18.318164062500017,3.580810546875],[18.474414062500017,3.622998046874997],[18.499804687500017,3.604101562499991],[18.553808593750006,3.510205078124997],[18.6103515625,3.478417968749994]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ghana","sov_a3":"GHA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ghana","adm0_a3":"GHA","geou_dif":0,"geounit":"Ghana","gu_a3":"GHA","su_dif":0,"subunit":"Ghana","su_a3":"GHA","brk_diff":0,"name":"Ghana","name_long":"Ghana","brk_a3":"GHA","brk_name":"Ghana","brk_group":null,"abbrev":"Ghana","postal":"GH","formal_en":"Republic of Ghana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ghana","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":1,"mapcolor13":4,"pop_est":23832495,"gdp_md_est":34200,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GH","iso_a3":"GHA","iso_n3":"288","un_a3":"288","wb_a2":"GH","wb_a3":"GHA","woe_id":-99,"adm0_a3_is":"GHA","adm0_a3_us":"GHA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"GHA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-0.068603515625,11.115625],[-0.004736328124977,11.055566406249994],[0.009423828125023,11.020996093749998],[-0.013867187499983,10.891357421875],[-0.060595703124989,10.800585937499989],[-0.090185546874977,10.715527343749997],[-0.08632812499999,10.673046875],[-0.057714843749977,10.630615234375],[0.039453125000023,10.563867187499994],[0.089257812500023,10.520605468749991],[0.148242187500017,10.454785156249997],[0.216015625000011,10.390527343749994],[0.331835937500017,10.306933593749989],[0.380859375,10.291845703124991],[0.378613281250011,10.2685546875],[0.362695312500023,10.236474609374993],[0.351855468750017,9.924902343749991],[0.343066406250017,9.84458007812499],[0.334570312500006,9.803955078125],[0.323925781250011,9.687597656249991],[0.311718750000011,9.670996093749991],[0.289648437500006,9.672314453124995],[0.26953125,9.667919921874997],[0.264550781250023,9.644726562499997],[0.272753906250017,9.620947265624991],[0.342578125000017,9.604150390624994],[0.327343750000011,9.586572265624994],[0.275488281250006,9.570605468749989],[0.2515625,9.53564453125],[0.261914062500011,9.49560546875],[0.2333984375,9.463525390624994],[0.241503906250017,9.44189453125],[0.259960937500011,9.426025390625],[0.289355468750017,9.431835937499997],[0.370996093750023,9.485546875],[0.4052734375,9.491455078125],[0.447558593750017,9.480273437499989],[0.525683593750017,9.398486328124989],[0.529003906250011,9.358300781249994],[0.497167968750006,9.221240234374989],[0.466113281250017,9.115332031249991],[0.460351562500023,8.97421875],[0.493261718750006,8.89492187499999],[0.48876953125,8.851464843749994],[0.453125,8.813769531249989],[0.37255859375,8.75927734375],[0.378613281250011,8.722021484374991],[0.415332031250017,8.65273437499999],[0.483300781250023,8.575292968749991],[0.6162109375,8.479638671874993],[0.686328125000017,8.354882812499994],[0.688085937500006,8.304248046874989],[0.647070312500006,8.253466796874989],[0.59921875,8.209570312499991],[0.58359375,8.145800781249989],[0.605175781250011,7.728222656249996],[0.5,7.546875],[0.498925781250023,7.4951171875],[0.509570312500017,7.435107421874988],[0.537304687500011,7.398730468749988],[0.591015625000011,7.388818359374993],[0.634765625,7.353662109374993],[0.619531250000023,7.2265625],[0.59619140625,7.096630859374997],[0.592480468750011,7.033984374999988],[0.579492187500023,7.004101562499997],[0.5380859375,6.9796875],[0.523046875,6.938867187499994],[0.533398437500011,6.888330078124994],[0.525585937500011,6.850927734374991],[0.548046875000011,6.802490234375],[0.595703125,6.7421875],[0.672753906250023,6.592529296874999],[0.702246093750006,6.580761718749997],[0.715429687500006,6.549316406249999],[0.707226562500011,6.51875],[0.736914062500006,6.452587890624996],[0.822460937500011,6.386376953124993],[0.912207031250006,6.328564453124996],[0.984960937500006,6.3203125],[1.002148437500011,6.268554687499999],[1.049902343750006,6.20263671875],[1.08447265625,6.173779296874997],[1.1396484375,6.155029296875],[1.18505859375,6.14501953125],[1.187207031250011,6.089404296874989],[1.105566406250006,6.051367187499991],[1.05029296875,5.993994140624991],[1.008007812500011,5.906396484374994],[0.94970703125,5.810253906249997],[0.748828125000017,5.760107421874991],[0.671875,5.759716796874996],[0.259667968750023,5.75732421875],[-0.126513671874989,5.568164062499989],[-0.348730468749977,5.500781249999989],[-0.485449218749977,5.394238281249997],[-0.66943359375,5.318554687499997],[-0.797705078124977,5.226708984374994],[-1.064306640624977,5.182666015624988],[-1.501660156249983,5.037988281249994],[-1.638476562499989,4.98085937499999],[-1.77685546875,4.88037109375],[-2.001855468749994,4.762451171875],[-2.090185546874977,4.7640625],[-2.266406249999989,4.874072265624989],[-2.39892578125,4.929345703124994],[-2.72304687499999,5.013720703124988],[-2.964990234374994,5.046289062499994],[-3.081884765624977,5.082470703124997],[-3.114013671875,5.088671874999989],[-3.086718749999989,5.128320312499994],[-3.019140624999977,5.130810546874997],[-2.948339843749977,5.118847656249997],[-2.894726562499983,5.149023437499991],[-2.815673828125,5.153027343749997],[-2.795214843749989,5.184521484374996],[-2.788671874999977,5.264111328124997],[-2.789599609374988,5.328222656249991],[-2.761914062499983,5.35693359375],[-2.754980468749977,5.432519531249994],[-2.793652343749983,5.60009765625],[-2.821191406249994,5.619189453124989],[-2.962255859374977,5.643017578124997],[-2.972802734374994,5.676269531249999],[-2.998291015625,5.71132812499999],[-3.025292968749994,5.797753906249993],[-3.05615234375,5.92626953125],[-3.105566406249977,6.085644531249997],[-3.200585937499994,6.348242187499991],[-3.224023437499994,6.441064453124994],[-3.240283203124989,6.53564453125],[-3.243896484375,6.648681640624999],[-3.22412109375,6.690771484374991],[-3.227148437499977,6.749121093749991],[-3.235791015624983,6.807226562499991],[-3.168896484374983,6.940966796874988],[-3.037695312499977,7.104589843749991],[-3.01015625,7.163769531249996],[-2.985791015624983,7.204882812499989],[-2.982324218749994,7.263623046874997],[-2.959082031249977,7.454541015624996],[-2.896337890624977,7.685009765624997],[-2.856884765624983,7.772070312499991],[-2.830126953124989,7.819042968749996],[-2.798144531249988,7.89599609375],[-2.789746093749983,7.931933593749989],[-2.668847656249994,8.022216796875],[-2.613378906249977,8.046679687499989],[-2.600976562499994,8.082226562499997],[-2.619970703124977,8.12109375],[-2.61171875,8.147558593749991],[-2.582763671875,8.160791015624994],[-2.538281249999983,8.171630859375],[-2.505859375,8.208740234375],[-2.556884765625,8.493017578124991],[-2.597998046874977,8.7763671875],[-2.600390624999989,8.800439453124993],[-2.624902343749994,8.839599609375],[-2.649218749999989,8.956591796874989],[-2.689892578124983,9.025097656249997],[-2.746923828124977,9.045117187499997],[-2.746679687499977,9.109619140625],[-2.689208984375,9.218603515624991],[-2.67421875,9.282617187499993],[-2.701806640624994,9.301660156249994],[-2.705761718749983,9.351367187499989],[-2.686132812499977,9.431738281249991],[-2.695849609374989,9.481347656249994],[-2.706201171874994,9.533935546875],[-2.765966796874977,9.658056640624991],[-2.780517578125,9.745849609375],[-2.749804687499989,9.797216796874991],[-2.750732421875,9.90966796875],[-2.783203125,10.08310546874999],[-2.788476562499994,10.192578125],[-2.766503906249994,10.238183593749994],[-2.777099609375,10.281591796874991],[-2.8203125,10.322851562499991],[-2.823437499999983,10.362939453124994],[-2.78662109375,10.401904296874989],[-2.791162109374994,10.432421874999989],[-2.837207031249989,10.454638671874987],[-2.87841796875,10.507958984374993],[-2.914892578124977,10.592333984374989],[-2.907324218749977,10.727978515624997],[-2.838574218749983,10.977490234374997],[-2.829931640624977,10.99838867187499],[-2.752099609374994,10.996972656249994],[-2.751660156249983,10.986376953124989],[-2.509179687499994,10.988720703124997],[-2.23193359375,10.99140625],[-1.900634765625,10.994677734374987],[-1.599658203124989,10.99765625],[-1.586474609374989,11.008886718749991],[-1.536767578124994,11.02265625],[-1.232617187499983,10.997216796874994],[-1.04248046875,11.010058593749989],[-0.961816406249994,11.001708984374998],[-0.902929687499977,10.984716796874991],[-0.771582031249977,10.995263671874994],[-0.701416015625,10.988964843749997],[-0.648535156249977,10.9267578125],[-0.627148437499983,10.927392578124994],[-0.59765625,10.953662109374989],[-0.545214843749989,10.983691406249989],[-0.49169921875,11.007617187499989],[-0.45351562499999,11.056298828124994],[-0.430322265624994,11.09326171875],[-0.395605468749977,11.085693359375],[-0.345751953124989,11.087939453124989],[-0.312548828124989,11.118896484375],[-0.299462890624994,11.166894531249994],[-0.068603515625,11.115625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Ethiopia","sov_a3":"ETH","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ethiopia","adm0_a3":"ETH","geou_dif":0,"geounit":"Ethiopia","gu_a3":"ETH","su_dif":0,"subunit":"Ethiopia","su_a3":"ETH","brk_diff":0,"name":"Ethiopia","name_long":"Ethiopia","brk_a3":"ETH","brk_name":"Ethiopia","brk_group":null,"abbrev":"Eth.","postal":"ET","formal_en":"Federal Democratic Republic of Ethiopia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ethiopia","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":1,"mapcolor13":13,"pop_est":85237338,"gdp_md_est":68770,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ET","iso_a3":"ETH","iso_n3":"231","un_a3":"231","wb_a2":"ET","wb_a3":"ETH","woe_id":-99,"adm0_a3_is":"ETH","adm0_a3_us":"ETH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ETH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[38.43144531250002,14.428613281249994],[38.50439453125,14.42441406249999],[38.81201171875,14.482324218749994],[38.995703125,14.586865234374995],[39.023828125000016,14.628222656250003],[39.07421875,14.628222656250003],[39.135449218750004,14.58188476562499],[39.15859375000002,14.5375],[39.19804687500002,14.479394531249993],[39.270117187500006,14.4703125],[39.44609375000002,14.511865234374994],[39.531835937500006,14.53671875],[39.60488281250002,14.516064453124995],[39.69794921875001,14.4990234375],[39.75615234375002,14.4990234375],[39.895117187500006,14.440673828124998],[40.062109375,14.459130859374993],[40.140625,14.4560546875],[40.22148437500002,14.431152343749998],[40.353125,14.338085937499999],[40.5244140625,14.22519531249999],[40.76953125,14.144482421874997],[40.82011718750002,14.111669921874991],[40.938574218750006,13.983105468749997],[41.12236328125002,13.736132812500001],[41.362890625,13.499804687500003],[41.625,13.313232421875],[41.765039062500016,13.183935546874991],[41.85957031250001,13.025878906249998],[41.9521484375,12.88232421875],[42.04658203125001,12.820605468749989],[42.13427734375,12.771435546874997],[42.225,12.66196289062499],[42.28994140625002,12.570214843749994],[42.378515625,12.46640625],[42.28037109375,12.324267578124989],[42.14912109375001,12.134130859374991],[41.99589843750002,11.912353515625],[41.94960937500002,11.857861328124995],[41.815625,11.723779296874993],[41.79267578125001,11.686035156249998],[41.76650390625002,11.589111328125],[41.7646484375,11.412890624999989],[41.78203125000002,11.187792968749989],[41.79824218750002,10.98046875],[41.872167968750006,10.955810546874998],[41.95742187500002,10.94101562499999],[42.052148437500016,10.96835937499999],[42.16621093750001,10.991601562499994],[42.30810546875,11.005224609374991],[42.46513671875002,11.047070312499997],[42.557714843750006,11.080761718749997],[42.654980468750004,11.078320312499995],[42.74121093749999,11.042382812499994],[42.78300781250002,11.009277343749998],[42.84414062500002,10.997949218749994],[42.92275390625002,10.999316406249989],[42.90615234375002,10.960253906249989],[42.862890625,10.903222656249994],[42.80976562500001,10.845996093749987],[42.76308593750002,10.786914062499989],[42.65957031250002,10.621386718749989],[42.65644531250001,10.6],[42.66923828125002,10.567578125],[42.725195312500006,10.491748046874989],[42.78369140625,10.36962890625],[42.81640625,10.257373046874989],[42.84160156250002,10.203076171874997],[42.9125,10.140820312499997],[43.014746093750006,10.012597656249994],[43.0689453125,9.926220703124997],[43.18164062499999,9.87998046874999],[43.21845703125001,9.770166015624993],[43.303125,9.609082031249997],[43.39433593750002,9.480273437499989],[43.482519531250006,9.37949218749999],[43.5810546875,9.340722656249994],[43.62050781250002,9.33740234375],[43.826757812500006,9.15078125],[43.98378906250002,9.008837890624989],[44.02285156250002,8.986035156249997],[44.30625,8.89306640625],[44.63203125000001,8.786083984374997],[44.8935546875,8.7001953125],[45.22695312500002,8.5908203125],[45.55546875000002,8.483007812499991],[45.86328125,8.3798828125],[46.29599609375,8.234960937499991],[46.64472656250001,8.1181640625],[46.91953125,8.026123046874998],[46.97822265625001,7.997070312499999],[47.3056640625,7.997070312499999],[47.6376953125,7.997070312499999],[47.97822265625001,7.997070312499999],[47.73164062500001,7.75932617187499],[47.45283203125001,7.490478515624999],[47.159765625,7.207861328124991],[46.97119140625,7.026025390624994],[46.67177734375002,6.737255859374997],[46.422949218750006,6.497265625],[46.16679687500002,6.234667968749989],[45.934960937500016,5.997216796874993],[45.63359375000002,5.668261718749989],[45.4384765625,5.455419921874991],[45.1328125,5.121679687499991],[44.94052734375,4.912011718749994],[44.91162109374999,4.89990234375],[44.63662109375002,4.915771484375],[44.36953125000002,4.931201171874989],[44.028125,4.950976562499989],[43.9888671875,4.950537109374991],[43.88945312500002,4.930761718749991],[43.829199218750006,4.911425781249989],[43.58349609375,4.85498046875],[43.53828125,4.84033203125],[43.333984375,4.75039062499999],[43.125683593750004,4.644482421874997],[43.01601562500002,4.563330078124991],[42.93095703125002,4.4453125],[42.89472656250001,4.361083984374999],[42.85664062500001,4.32421875],[42.791601562500006,4.2919921875],[42.35517578125001,4.212255859374991],[42.22841796875002,4.20166015625],[42.02412109375001,4.137939453125],[41.91533203125002,4.031298828124989],[41.88398437500001,3.977734375],[41.73769531250002,3.979052734374989],[41.48193359374999,3.96328125],[41.37246093750002,3.946191406249994],[41.318945312500006,3.943066406249997],[41.22089843750001,3.943554687499997],[41.14042968750002,3.962988281249991],[41.08720703125002,3.991943359375],[41.02080078125002,4.057470703124991],[40.87265625,4.190332031249994],[40.765234375,4.27304687499999],[40.52871093750002,4.177636718749994],[40.316015625,4.082714843749997],[40.01416015625,3.947949218749997],[39.84218750000002,3.851464843749994],[39.79033203125002,3.754248046874991],[39.65751953125002,3.577832031249997],[39.53886718750002,3.469189453124997],[39.49443359375002,3.456103515624989],[39.22548828125002,3.478759765625],[39.12832031250002,3.500878906249994],[38.9677734375,3.520605468749991],[38.75273437500002,3.55898437499999],[38.608007812500006,3.60009765625],[38.45156250000002,3.604833984374991],[38.22529296875001,3.618994140624991],[38.08613281250001,3.64882812499999],[37.944921875,3.746728515624994],[37.76289062500001,3.864648437499994],[37.57548828125002,3.9859375],[37.38251953125001,4.11083984375],[37.15458984375002,4.254541015624994],[36.90556640625002,4.411474609374991],[36.848242187500006,4.42734375],[36.82363281250002,4.430126953124997],[36.55302734375002,4.437255859375],[36.271875,4.444726562499994],[36.08193359375002,4.44970703125],[36.02197265625,4.468115234374991],[35.97871093750001,4.503808593749994],[35.91982421875002,4.619824218749997],[35.84560546875002,4.70263671875],[35.76308593750002,4.808007812499994],[35.75615234375002,4.950488281249989],[35.779296875,5.105566406249991],[35.80029296875,5.156933593749997],[35.78847656250002,5.208105468749991],[35.79140625000002,5.278564453125],[35.74501953125002,5.343994140625],[35.46865234375002,5.419091796874994],[35.42402343750001,5.41328125],[35.3779296875,5.38515625],[35.325292968750006,5.364892578124994],[35.28759765625,5.384082031249989],[35.2646484375,5.412060546874997],[35.26386718750001,5.457910156249994],[35.26835937500002,5.492285156249991],[35.25244140625,5.511035156249989],[35.16445312500002,5.581201171874994],[35.08193359375002,5.673144531249989],[35.03193359375001,5.77490234375],[34.98359375000001,5.858300781249994],[34.958984375,6.045068359374994],[34.89785156250002,6.159814453124994],[34.83808593750001,6.300146484374991],[34.74921875,6.56787109375],[34.71064453125001,6.660302734374994],[34.638769531250006,6.72216796875],[34.56279296875002,6.779833984374989],[34.484375,6.898388671874997],[34.279296875,7.002832031249993],[34.20039062500001,7.084570312499991],[34.06425781250002,7.225732421874994],[34.03017578125002,7.296972656249991],[34.02041015625002,7.36796875],[33.97792968750002,7.434570312499999],[33.902441406250006,7.509521484374999],[33.666113281250006,7.670996093749992],[33.60097656250002,7.690429687499999],[33.51630859375001,7.707763671875],[33.39228515625001,7.723730468749991],[33.22597656250002,7.760644531249994],[33.08076171875001,7.823730468749999],[33.0146484375,7.868554687499994],[32.99892578125002,7.899511718749991],[33.012597656250016,7.951513671874991],[33.06523437500002,8.040478515624997],[33.16523437500001,8.251074218749991],[33.23427734375002,8.396386718749994],[33.28105468750001,8.437255859375],[33.409375,8.44775390625],[33.545312500000016,8.443408203124989],[33.64482421875002,8.432568359374997],[33.78505859375002,8.431103515624997],[33.95332031250001,8.443505859374994],[34.01972656250001,8.492089843749994],[34.07275390625,8.545263671874991],[34.09453125000002,8.582226562499997],[34.10175781250001,8.676367187499991],[34.1015625,8.751855468749994],[34.091015625,9.041259765625],[34.084570312500006,9.218505859375],[34.0771484375,9.420996093749991],[34.078125,9.461523437499991],[34.07929687500001,9.513476562499989],[34.12031250000001,9.7296875],[34.159082031250016,9.853417968749994],[34.18525390625001,9.918554687499991],[34.29150390625,10.124755859375],[34.311230468750004,10.190869140624995],[34.314843750000016,10.2515625],[34.27568359375001,10.528125],[34.34394531250001,10.658642578124997],[34.43144531250002,10.787841796875],[34.50800781250001,10.842871093749991],[34.571875,10.880175781249989],[34.60175781250001,10.864550781249989],[34.675,10.804931640625],[34.77128906250002,10.746191406249991],[34.81621093750002,10.759179687499993],[34.88232421874999,10.810546875],[34.93144531250002,10.864794921874989],[34.924902343750006,10.962109375],[34.969140625000016,11.161767578124994],[34.96074218750002,11.276757812499993],[35.007910156250006,11.419873046874997],[35.059667968750006,11.621044921874997],[35.08271484375001,11.748291015625],[35.1123046875,11.816552734374994],[35.25244140625,11.95703125],[35.37275390625001,12.155566406249989],[35.44960937500002,12.300585937499989],[35.59609375000002,12.537304687499997],[35.67021484375002,12.623730468749997],[35.730566406250006,12.661035156249994],[35.82060546875002,12.684863281249989],[35.98759765625002,12.706298828125],[36.107519531250006,12.726464843749994],[36.12519531250001,12.75703125],[36.135351562500006,12.805322265624994],[36.137109375000016,12.9111328125],[36.16015625,13.093310546874989],[36.21220703125002,13.27109375],[36.273535156250006,13.40576171875],[36.30683593750001,13.466845703125001],[36.346289062500006,13.526269531249994],[36.390625,13.626074218749991],[36.44707031250002,13.842041015625],[36.443945312500006,13.988427734374994],[36.52431640625002,14.2568359375],[36.54238281250002,14.25820312499999],[36.67910156250002,14.307568359374997],[36.81191406250002,14.31503906249999],[36.94072265625002,14.280566406250001],[37.024511718750006,14.27197265625],[37.0634765625,14.289257812499995],[37.09941406250002,14.333984375],[37.13261718750002,14.406054687500003],[37.18515625,14.445996093749997],[37.257226562500016,14.453759765624994],[37.35371093750001,14.372460937499993],[37.50722656250002,14.156396484374994],[37.54677734375002,14.143847656250003],[37.57119140625002,14.149072265624994],[37.6484375,14.322558593750003],[37.70839843750002,14.457226562499995],[37.8203125,14.70849609375],[37.88417968750002,14.852294921875],[37.94345703125,14.810546875],[38.002539062500006,14.737109375],[38.069921875,14.70273437499999],[38.14199218750002,14.681494140624991],[38.17705078125002,14.67880859374999],[38.22148437500002,14.649658203125],[38.376953125,14.470410156249995],[38.43144531250002,14.428613281249994]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Guinea","sov_a3":"GIN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guinea","adm0_a3":"GIN","geou_dif":0,"geounit":"Guinea","gu_a3":"GIN","su_dif":0,"subunit":"Guinea","su_a3":"GIN","brk_diff":0,"name":"Guinea","name_long":"Guinea","brk_a3":"GIN","brk_name":"Guinea","brk_group":null,"abbrev":"Gin.","postal":"GN","formal_en":"Republic of Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guinea","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":7,"mapcolor13":2,"pop_est":10057975,"gdp_md_est":10600,"pop_year":-99,"lastcensus":1996,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"GN","iso_a3":"GIN","iso_n3":"324","un_a3":"324","wb_a2":"GN","wb_a3":"GIN","woe_id":-99,"adm0_a3_is":"GIN","adm0_a3_us":"GIN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GIN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-11.389404296875,12.40439453124999],[-11.418066406249977,12.377685546875],[-11.447558593749989,12.319238281249993],[-11.474560546874983,12.24716796874999],[-11.502197265624998,12.198632812499994],[-11.492431640625,12.166943359374997],[-11.414648437499977,12.10400390625],[-11.30517578125,12.015429687499989],[-11.260693359374983,12.004052734374994],[-11.209667968749983,12.024853515624997],[-11.129248046874977,12.095019531249989],[-11.065820312499994,12.170800781249994],[-11.004541015624994,12.20751953125],[-10.933203124999977,12.205175781249991],[-10.876171874999981,12.15185546875],[-10.806494140624977,12.034277343749991],[-10.743017578124977,11.92724609375],[-10.734912109374987,11.916455078124997],[-10.709228515625,11.898730468749989],[-10.677343749999977,11.8994140625],[-10.643701171874994,11.925537109374998],[-10.618994140624977,11.941210937499989],[-10.589501953124994,11.990283203124989],[-10.4658203125,12.138671875],[-10.372753906249983,12.179541015624991],[-10.339892578124989,12.190283203124991],[-10.274853515624983,12.212646484375],[-10.167089843749977,12.177441406249995],[-10.010644531249994,12.116455078125],[-9.82070312499999,12.04248046875],[-9.754003906249977,12.029931640624994],[-9.714746093749994,12.04248046875],[-9.658300781249977,12.143115234374987],[-9.587744140624977,12.182470703124991],[-9.48681640625,12.228662109374994],[-9.404980468749981,12.25244140625],[-9.358105468749983,12.255419921874989],[-9.340185546874977,12.282763671874989],[-9.33154296875,12.32373046875],[-9.3408203125,12.366015624999989],[-9.393652343749977,12.442236328124991],[-9.395361328124977,12.464648437499989],[-9.365185546874983,12.479296874999989],[-9.3,12.490283203124989],[-9.215527343749983,12.482861328124997],[-9.120458984374977,12.449951171875],[-9.043066406249977,12.40234375],[-8.998925781249994,12.345898437499997],[-8.950830078124994,12.2255859375],[-8.913867187499989,12.108544921874993],[-8.818310546874983,11.922509765624993],[-8.820068359375,11.80712890625],[-8.822021484375,11.673242187499994],[-8.779736328124983,11.648242187499989],[-8.733105468749983,11.6375],[-8.71142578125,11.617773437499991],[-8.664941406249994,11.514990234374991],[-8.621142578124989,11.485107421874998],[-8.56875,11.478076171874989],[-8.470703125,11.412207031249991],[-8.407470703125,11.386279296874989],[-8.398535156249977,11.366552734374991],[-8.400683593749989,11.339404296874989],[-8.42529296875,11.304736328124987],[-8.463525390624994,11.280712890624997],[-8.520312499999989,11.2359375],[-8.567285156249994,11.177001953125],[-8.663916015624977,11.035839843749997],[-8.666699218749983,11.009472656249997],[-8.646191406249983,10.990478515625],[-8.606201171875,10.986962890624993],[-8.563525390624989,10.996679687499991],[-8.474707031249977,11.048388671874989],[-8.404492187499983,11.029931640624994],[-8.33740234375,10.990625],[-8.312744140624998,10.949755859374987],[-8.306347656249983,10.89609375],[-8.321679687499994,10.826953124999989],[-8.324121093749994,10.749511718749998],[-8.301562499999989,10.61757812499999],[-8.266650390624989,10.485986328124994],[-8.231494140624989,10.43798828125],[-8.007275390624983,10.321875],[-7.985693359374977,10.278417968749991],[-7.974462890624976,10.229541015624989],[-7.990625,10.1625],[-8.013525390624977,10.125292968749989],[-8.077832031249983,10.067089843749997],[-8.136621093749994,10.02207031249999],[-8.155175781249994,9.973193359374989],[-8.145849609374977,9.881738281249994],[-8.146044921874989,9.6748046875],[-8.136962890625,9.49570312499999],[-8.088671874999989,9.4306640625],[-8.031005859375,9.39765625],[-7.962695312499989,9.403857421874989],[-7.896191406249982,9.41586914062499],[-7.9,9.308691406249991],[-7.918066406249977,9.188525390624989],[-7.839404296874988,9.151611328125],[-7.7998046875,9.115039062499987],[-7.777978515624993,9.080859374999989],[-7.902099609374999,9.01708984375],[-7.938183593749983,8.979785156249989],[-7.954980468749994,8.879443359374989],[-7.950976562499989,8.786816406249997],[-7.784033203124976,8.720605468749994],[-7.719580078124977,8.643017578124997],[-7.690966796874989,8.5625],[-7.681201171874988,8.410351562499997],[-7.696093749999988,8.375585937499991],[-7.738964843749982,8.375244140625],[-7.787402343749989,8.421972656249991],[-7.823583984374976,8.467675781249994],[-7.86875,8.467529296875],[-7.953125,8.477734375],[-8.049121093749989,8.4953125],[-8.167773437499989,8.490673828124997],[-8.2099609375,8.483251953124991],[-8.236962890624993,8.45566406249999],[-8.244140625,8.407910156249997],[-8.256103515625,8.253710937499989],[-8.217138671874977,8.219677734374997],[-8.140625,8.181445312499989],[-8.090527343749983,8.165136718749991],[-8.048583984374998,8.169726562499989],[-8.016748046874993,8.14492187499999],[-8.009863281249977,8.07851562499999],[-8.03173828125,8.029736328124997],[-8.073828124999977,7.984423828124989],[-8.126855468749993,7.867724609374989],[-8.117822265624994,7.824023437499989],[-8.115429687499981,7.760742187499999],[-8.205957031249993,7.59023437499999],[-8.231884765624983,7.556738281249991],[-8.351757812499981,7.590576171875],[-8.429980468749989,7.601855468749988],[-8.486425781249977,7.558496093749994],[-8.522265624999989,7.58554687499999],[-8.564404296874983,7.625097656249991],[-8.578857421875,7.677050781249989],[-8.607324218749994,7.687939453124998],[-8.659765624999977,7.688378906249993],[-8.708300781249989,7.658886718749996],[-8.729443359374983,7.605273437499988],[-8.732617187499983,7.543554687499991],[-8.740234375,7.49570312499999],[-8.769140624999977,7.466796875],[-8.827929687499989,7.391943359374992],[-8.855517578124989,7.322802734374988],[-8.8896484375,7.262695312499999],[-8.938427734374983,7.266162109374988],[-8.960986328124987,7.274609375],[-8.9765625,7.258886718749991],[-9.052343749999977,7.225488281249993],[-9.11757812499999,7.215917968749991],[-9.134814453124989,7.250585937499991],[-9.1728515625,7.278417968749991],[-9.215185546874977,7.333300781249989],[-9.263281249999977,7.377734374999989],[-9.355322265624977,7.40869140625],[-9.391650390624989,7.39492187499999],[-9.435107421874989,7.3984375],[-9.463818359374983,7.415869140624991],[-9.459765624999989,7.442529296874993],[-9.411474609374975,7.509960937499997],[-9.383984374999983,7.571875],[-9.368945312499989,7.639550781249994],[-9.369140625,7.703808593749996],[-9.39492187499999,7.794628906249996],[-9.436328124999989,7.866699218749999],[-9.446386718749977,7.908496093749989],[-9.441552734374994,7.967919921874994],[-9.451123046874983,8.023242187499989],[-9.464550781249983,8.052099609374991],[-9.471142578124983,8.106982421874989],[-9.484130859375,8.156982421875],[-9.508496093749983,8.17626953125],[-9.522216796875,8.260009765625],[-9.518261718749981,8.34609375],[-9.553906249999983,8.378613281249997],[-9.610156249999989,8.40234375],[-9.643212890624994,8.43603515625],[-9.66357421875,8.473535156249994],[-9.683886718749989,8.484423828124989],[-9.701171875,8.482177734375],[-9.716894531249977,8.458886718749994],[-9.735595703125,8.453955078124991],[-9.768261718749983,8.534570312499994],[-9.781982421875,8.537695312499991],[-9.804736328124989,8.519189453124993],[-10.064355468749994,8.429882812499995],[-10.07568359375,8.464599609375],[-10.09765625,8.505859375],[-10.147412109374983,8.519726562499995],[-10.233056640624994,8.488818359374989],[-10.283203125,8.485156249999987],[-10.360058593749983,8.495507812499994],[-10.394433593749994,8.48095703125],[-10.496435546874977,8.362109374999989],[-10.557714843749975,8.315673828125],[-10.604003906249998,8.319482421874994],[-10.652636718749989,8.330273437499997],[-10.686962890624981,8.321679687499994],[-10.712109374999983,8.335253906249989],[-10.7021484375,8.364208984374997],[-10.677343749999977,8.400585937499997],[-10.628466796874989,8.529980468749997],[-10.503125,8.660302734374994],[-10.500537109374989,8.687548828124989],[-10.5517578125,8.763769531249991],[-10.605615234374994,8.86757812499999],[-10.605761718749989,8.978808593749989],[-10.615966796875,9.059179687499991],[-10.726855468749989,9.081689453124993],[-10.747021484374983,9.095263671874989],[-10.749951171874981,9.122363281249989],[-10.721240234374989,9.194482421874994],[-10.687646484374993,9.261132812499994],[-10.682714843749977,9.289355468749989],[-10.690527343749977,9.314257812499989],[-10.758593749999989,9.385351562499991],[-10.864794921874989,9.516455078124991],[-10.963085937499983,9.66162109375],[-11.047460937499975,9.786328125],[-11.115673828124981,9.843164062499994],[-11.180859374999981,9.925341796874989],[-11.205664062499975,9.977734375],[-11.273632812499983,9.996533203124997],[-11.471923828125,9.99545898437499],[-11.710058593749977,9.994189453124989],[-11.911083984374983,9.993017578124991],[-11.922753906249994,9.922753906249994],[-12.142333984375,9.87539062499999],[-12.27773437499999,9.929785156249991],[-12.427978515625,9.898144531249997],[-12.50146484375,9.862158203124991],[-12.524365234374983,9.787207031249991],[-12.557861328125,9.704980468749993],[-12.58984375,9.671142578125],[-12.603613281249977,9.634228515624997],[-12.622167968749977,9.600634765624989],[-12.651660156249989,9.561914062499994],[-12.684423828124975,9.484179687499989],[-12.755859375,9.373583984374989],[-12.831103515624989,9.30224609375],[-12.958789062499987,9.263330078124994],[-12.998632812499977,9.146923828124997],[-13.028027343749983,9.103564453124989],[-13.077294921874993,9.069628906249989],[-13.1298828125,9.047558593749997],[-13.178369140624994,9.06088867187499],[-13.234228515624977,9.070117187499987],[-13.292675781249981,9.04921875],[-13.302636718749994,9.078369140625],[-13.269482421874983,9.170556640624994],[-13.2958984375,9.218505859375],[-13.396093749999977,9.31430664062499],[-13.405566406249989,9.360644531249989],[-13.436279296875,9.4203125],[-13.568261718749994,9.543408203124997],[-13.691357421874981,9.535791015624994],[-13.657128906249994,9.639111328124995],[-13.658691406249998,9.7763671875],[-13.700488281249989,9.851269531249997],[-13.689794921874977,9.927783203124989],[-13.712646484375,9.922949218749991],[-13.753710937499989,9.870263671874994],[-13.820117187499989,9.88720703125],[-13.954638671874989,9.968701171874997],[-14.021875,10.0478515625],[-14.029931640624993,10.115136718749994],[-14.045019531249977,10.141259765624993],[-14.086279296874975,10.127246093749989],[-14.17041015625,10.128613281249997],[-14.426904296874993,10.248339843749987],[-14.609570312499983,10.549853515624987],[-14.613623046874977,10.617822265624994],[-14.587402343749998,10.734912109374987],[-14.593505859375,10.766699218749991],[-14.677343749999975,10.68896484375],[-14.693359375,10.741015624999989],[-14.757373046874987,10.862060546875],[-14.775927734374989,10.931640625],[-14.837451171874989,10.962548828124994],[-14.88671875,10.968066406249989],[-14.924804687499998,10.94492187499999],[-14.975,10.803417968749997],[-15.012402343749981,10.804345703124994],[-15.051220703124983,10.834570312499991],[-15.043017578124989,10.940136718749997],[-14.9990234375,10.9921875],[-14.944433593749977,11.072167968749994],[-14.779296875,11.405517578125],[-14.720263671874989,11.481933593749998],[-14.682958984374975,11.508496093749997],[-14.604785156249987,11.511621093749994],[-14.452441406249987,11.556201171874989],[-14.327832031249981,11.629785156249994],[-14.265576171874981,11.659912109375],[-14.122314453125,11.65195312499999],[-13.953222656249977,11.664599609374989],[-13.732763671874977,11.736035156249997],[-13.728564453124987,11.834130859374994],[-13.730664062499983,11.959863281249994],[-13.737988281249983,12.009667968749994],[-13.816308593749994,12.054492187499989],[-13.861914062499977,12.093310546874989],[-13.901171874999989,12.142871093749989],[-13.948876953124994,12.178173828124997],[-13.947314453124989,12.21523437499999],[-13.8875,12.246875],[-13.849462890624977,12.262988281249989],[-13.759765625,12.262353515624994],[-13.730078124999975,12.280810546874989],[-13.707910156249994,12.312695312499997],[-13.682373046874998,12.393408203124991],[-13.673535156249983,12.478515625],[-13.732617187499983,12.592822265624989],[-13.729248046875,12.673925781249991],[-13.40576171875,12.662255859374994],[-13.37255859375,12.653613281249989],[-13.228076171874989,12.639599609374997],[-13.138476562499987,12.639746093749991],[-13.082910156249994,12.633544921875],[-13.059765624999983,12.615039062499989],[-13.064404296874983,12.581054687499998],[-13.079833984375,12.536279296874993],[-13.061279296875,12.489990234375],[-13.011914062499983,12.477636718749991],[-12.985644531249987,12.491650390624997],[-12.960546874999977,12.514355468749995],[-12.930712890624989,12.532275390624987],[-12.88818359375,12.520019531249998],[-12.797314453124983,12.451904296875],[-12.713037109374994,12.433154296874989],[-12.620800781249983,12.396191406249997],[-12.534228515624989,12.375781249999989],[-12.457373046874977,12.378369140624997],[-12.399072265624994,12.340087890625],[-12.291210937499983,12.328027343749994],[-12.151953124999975,12.376611328124994],[-12.042382812499993,12.39804687499999],[-11.888574218749994,12.4033203125],[-11.80810546875,12.38730468749999],[-11.573681640624983,12.426318359374987],[-11.456738281249981,12.41757812499999],[-11.389404296875,12.40439453124999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Equatorial Guinea","sov_a3":"GNQ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Equatorial Guinea","adm0_a3":"GNQ","geou_dif":0,"geounit":"Equatorial Guinea","gu_a3":"GNQ","su_dif":0,"subunit":"Equatorial Guinea","su_a3":"GNQ","brk_diff":0,"name":"Eq. Guinea","name_long":"Equatorial Guinea","brk_a3":"GNQ","brk_name":"Eq. Guinea","brk_group":null,"abbrev":"Eq. G.","postal":"GQ","formal_en":"Republic of Equatorial Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Equatorial Guinea","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":650702,"gdp_md_est":14060,"pop_year":0,"lastcensus":2002,"gdp_year":0,"economy":"7. Least developed region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"GQ","iso_a3":"GNQ","iso_n3":"226","un_a3":"226","wb_a2":"GQ","wb_a3":"GNQ","woe_id":-99,"adm0_a3_is":"GNQ","adm0_a3_us":"GNQ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":17,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"GNQ.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[11.334667968750068,1.12075195312498],[11.335351562500023,0.999707031250011],[11.130664062500074,1.00039062499998],[10.858886718750028,1.001269531249974],[10.587207031250017,1.002148437499983],[10.315429687500057,1.003076171874994],[10.17890625000004,1.003564453125009],[10.028515625000068,1.004003906250006],[9.979785156250074,0.997705078124966],[9.94667968750008,0.967138671875048],[9.906738281250028,0.960107421875037],[9.8603515625,0.986230468750023],[9.80390625000004,0.998730468749997],[9.788671875000034,1.025683593749974],[9.760546874999989,1.074707031250014],[9.704589843750057,1.079980468750023],[9.676464843750011,1.074707031250014],[9.636132812500051,1.046679687499988],[9.590820312500057,1.031982421875014],[9.599414062500045,1.054443359374972],[9.509863281250006,1.114794921875017],[9.4453125,1.12065429687496],[9.385937500000068,1.13925781250002],[9.43408203125,1.296386718749972],[9.494238281250006,1.435302734375028],[9.584277343750045,1.540234375],[9.632128906250045,1.565527343750006],[9.647656250000011,1.617578125000037],[9.718847656250034,1.78867187499999],[9.807031250000051,1.927490234375028],[9.77968750000008,2.068212890625006],[9.800781250000028,2.304443359375],[9.826171875000057,2.297802734374969],[9.830371093750015,2.275488281250048],[9.8369140625,2.242382812500054],[9.870117187500028,2.21328125],[9.979882812499994,2.167773437500045],[10.307031250000051,2.167724609375028],[10.502246093750017,2.167626953125009],[10.790917968750023,2.167578125],[11.096582031250051,2.167480468749986],[11.328710937500004,2.167431640624969],[11.330078125,1.935888671874963],[11.33115234375006,1.740185546874969],[11.332324218750017,1.528369140624988],[11.33359375,1.307617187500043],[11.334667968750068,1.12075195312498]]],[[[8.735742187500023,3.758300781249971],[8.760449218750011,3.754345703124969],[8.910058593750023,3.758203125000051],[8.950683593750028,3.705322265625014],[8.946093750000074,3.627539062499977],[8.792187500000068,3.400390624999986],[8.763476562500074,3.304638671875011],[8.704003906250051,3.223632812500028],[8.65234375,3.217089843750031],[8.474902343749989,3.264648437500043],[8.444921875000034,3.29350585937496],[8.434277343750068,3.33242187499999],[8.451757812500006,3.422900390625031],[8.464648437500045,3.450585937499994],[8.549804687499972,3.467626953125006],[8.577246093750063,3.482373046874983],[8.622753906250011,3.57998046874998],[8.637695312500028,3.668847656250051],[8.675878906250006,3.735937500000034],[8.735742187500023,3.758300781249971]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Guinea Bissau","sov_a3":"GNB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guinea Bissau","adm0_a3":"GNB","geou_dif":0,"geounit":"Guinea Bissau","gu_a3":"GNB","su_dif":0,"subunit":"Guinea Bissau","su_a3":"GNB","brk_diff":0,"name":"Guinea-Bissau","name_long":"Guinea-Bissau","brk_a3":"GNB","brk_name":"Guinea-Bissau","brk_group":null,"abbrev":"GnB.","postal":"GW","formal_en":"Republic of Guinea-Bissau","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guinea-Bissau","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":4,"pop_est":1533964,"gdp_md_est":904.2,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"GW","iso_a3":"GNB","iso_n3":"624","un_a3":"624","wb_a2":"GW","wb_a3":"GNB","woe_id":-99,"adm0_a3_is":"GNB","adm0_a3_us":"GNB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":13,"long_len":13,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GNB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-15.895898437499966,11.082470703124967],[-15.905175781249994,11.054736328125003],[-15.963964843749977,11.05898437499998],[-15.950634765624926,11.087109375000026],[-15.963476562499977,11.0953125],[-15.946484374999981,11.179736328124974],[-15.937695312499953,11.192773437499966],[-15.909130859374924,11.16132812500004],[-15.905273437500028,11.148339843749978],[-15.895898437499966,11.082470703124967]]],[[[-16.11450195312503,11.059423828124977],[-16.194531249999983,11.04458007812498],[-16.231005859374957,11.094238281250057],[-16.236425781249977,11.113427734374966],[-16.19462890624999,11.130126953124998],[-16.175878906250006,11.13081054687504],[-16.14404296875,11.16684570312502],[-16.10478515624999,11.191015624999963],[-16.087451171875017,11.198779296875031],[-16.06733398437501,11.197216796874983],[-16.05278320312496,11.117529296875006],[-16.072216796874926,11.084082031250032],[-16.11450195312503,11.059423828124977]]],[[[-15.725146484375017,11.21547851562498],[-15.725146484375017,11.174511718749981],[-15.767480468750023,11.182275390625051],[-15.779785156249941,11.194531249999969],[-15.754687499999989,11.26870117187498],[-15.717480468749953,11.301757812500057],[-15.671923828124989,11.296484375000048],[-15.658349609374993,11.286474609374963],[-15.667187499999926,11.257861328124989],[-15.687109374999975,11.234326171874997],[-15.725146484375017,11.21547851562498]]],[[[-15.901806640624926,11.465820312499998],[-15.94873046875,11.434423828124991],[-15.997216796875025,11.449169921874983],[-16.023193359374968,11.477148437499991],[-16.01933593749999,11.527294921874997],[-15.964550781249926,11.59829101562498],[-15.91533203124993,11.589111328124972],[-15.901806640624926,11.465820312499998]]],[[[-15.553417968749928,11.537011718750023],[-15.562792968749958,11.51376953124999],[-15.619628906249998,11.533496093750017],[-15.536572265624955,11.617626953125011],[-15.482470703124958,11.632324218749986],[-15.484423828124987,11.567529296875023],[-15.526220703124977,11.553857421874994],[-15.553417968749928,11.537011718750023]]],[[[-15.986425781249947,11.882031249999969],[-16.038330078124943,11.759716796875011],[-16.102441406249966,11.773193359375],[-16.147363281249966,11.845996093750003],[-16.15244140624992,11.876806640624963],[-16.021875,11.886669921875026],[-15.986425781249947,11.882031249999969]]],[[[-13.673535156249926,12.478515624999986],[-13.682373046874943,12.393408203124963],[-13.707910156249994,12.31269531250004],[-13.730078124999975,12.280810546875031],[-13.759765625,12.262353515624994],[-13.849462890624977,12.262988281250044],[-13.8875,12.246875],[-13.947314453124932,12.21523437499999],[-13.948876953124966,12.178173828124997],[-13.901171874999932,12.142871093749989],[-13.861914062499949,12.093310546875017],[-13.816308593749966,12.054492187500015],[-13.737988281250011,12.009667968750037],[-13.730664062499924,11.959863281250009],[-13.728564453124958,11.83413085937498],[-13.73276367187492,11.736035156249983],[-13.953222656249977,11.664599609374989],[-14.122314453124972,11.65195312499999],[-14.265576171874926,11.659912109375014],[-14.32783203125001,11.629785156250009],[-14.452441406249987,11.556201171875015],[-14.604785156249934,11.511621093749994],[-14.682958984374947,11.508496093749983],[-14.720263671875017,11.481933593749986],[-14.77929687499997,11.405517578125057],[-14.944433593749949,11.072167968749994],[-14.999023437499972,10.992187500000043],[-15.04301757812496,10.940136718750011],[-15.09375,11.011035156249974],[-15.054589843749993,11.141943359375006],[-15.096777343749975,11.140039062499966],[-15.181054687499993,11.034228515625001],[-15.222119140624926,11.030908203125037],[-15.216699218749994,11.15625],[-15.263378906249983,11.160888671875043],[-15.317480468750004,11.152001953125009],[-15.39311523437496,11.217236328124981],[-15.400585937499955,11.266210937500006],[-15.394531249999972,11.334472656249972],[-15.348437499999987,11.378076171874966],[-15.354687499999956,11.396337890624963],[-15.399169921874943,11.401464843750034],[-15.448974609374972,11.389746093750034],[-15.479492187499972,11.410302734374964],[-15.429101562499993,11.498876953124977],[-15.252587890625021,11.573291015625045],[-15.163769531249953,11.580957031250009],[-15.072656249999937,11.597802734374966],[-15.122412109374949,11.661572265624997],[-15.230371093750021,11.686767578124972],[-15.31669921874993,11.66918945312504],[-15.359667968749987,11.622900390625018],[-15.412988281249994,11.615234374999972],[-15.501904296875011,11.723779296874966],[-15.500244140625028,11.778369140624987],[-15.467187499999936,11.842822265624974],[-15.415722656249955,11.87177734375001],[-15.21083984374994,11.870947265625018],[-15.133105468750015,11.907324218749963],[-15.101708984374994,11.913964843749993],[-15.071972656249981,11.947021484374972],[-15.078271484374937,11.968994140625014],[-15.111523437499955,11.970263671875003],[-15.18808593749992,11.927294921875044],[-15.434765625000011,11.943554687499983],[-15.513476562499958,11.91757812500002],[-15.650683593749932,11.818359375000057],[-15.819384765624932,11.763476562499974],[-15.941748046875006,11.786621093749986],[-15.902734374999937,11.919677734375],[-15.92021484374996,11.93779296874996],[-15.95878906249999,11.959619140624966],[-16.138427734375,11.917285156250045],[-16.274316406249966,11.978125],[-16.32807617187501,12.051611328124963],[-16.31884765625,12.14375],[-16.254736328124977,12.206054687499986],[-16.244580078124955,12.237109375],[-16.31230468749999,12.243017578124963],[-16.43681640624996,12.204150390625044],[-16.711816406249934,12.354833984375006],[-16.656933593749955,12.364355468749991],[-16.52133789062495,12.348632812499986],[-16.41630859374996,12.367675781250057],[-16.34228515624997,12.399511718749963],[-16.24150390624996,12.443310546875011],[-16.144189453124934,12.457421875000035],[-15.839550781249953,12.437890624999964],[-15.57480468749992,12.490380859375007],[-15.37792968749997,12.58896484375002],[-15.19609375,12.679931640624986],[-14.960595703124937,12.678955078125057],[-14.708154296874937,12.677978515625028],[-14.3492187499999,12.67641601562498],[-14.064843749999966,12.675292968750014],[-13.729248046875,12.673925781250004],[-13.732617187499983,12.592822265625003],[-13.673535156249926,12.478515624999986]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Gambia","sov_a3":"GMB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Gambia","adm0_a3":"GMB","geou_dif":0,"geounit":"Gambia","gu_a3":"GMB","su_dif":0,"subunit":"Gambia","su_a3":"GMB","brk_diff":0,"name":"Gambia","name_long":"The Gambia","brk_a3":"GMB","brk_name":"Gambia","brk_group":null,"abbrev":"Gambia","postal":"GM","formal_en":"Republic of the Gambia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Gambia, The","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":1782893,"gdp_md_est":2272,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"GM","iso_a3":"GMB","iso_n3":"270","un_a3":"270","wb_a2":"GM","wb_a3":"GMB","woe_id":-99,"adm0_a3_is":"GMB","adm0_a3_us":"GMB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":10,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"GMB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-16.763330078124994,13.064160156249997],[-16.76933593749999,13.148486328124989],[-16.824804687499977,13.341064453125],[-16.75039062499999,13.42539062499999],[-16.66933593749999,13.475],[-16.61479492187499,13.435302734374998],[-16.598339843749983,13.356835937499994],[-16.55644531249999,13.30322265625],[-16.41337890624999,13.269726562499997],[-16.271679687499983,13.293798828124991],[-16.18505859375,13.28271484375],[-16.18789062499999,13.326171875],[-16.158398437499983,13.384033203124998],[-15.986425781249975,13.408837890624993],[-15.804492187499987,13.42539062499999],[-15.617675781249998,13.460107421874993],[-15.471289062499975,13.458642578124994],[-15.427490234375,13.46835937499999],[-15.438134765624993,13.483203125],[-15.569531249999983,13.499853515624991],[-15.849902343749989,13.459960937499998],[-16.135449218749983,13.448242187499998],[-16.351806640625,13.34335937499999],[-16.440527343749977,13.353173828124993],[-16.53007812499999,13.457958984374997],[-16.56230468749999,13.587304687499993],[-16.308740234374994,13.596875],[-16.001611328124994,13.5927734375],[-15.667187499999983,13.58828125],[-15.509667968749994,13.586230468750003],[-15.426855468749977,13.727001953124997],[-15.26953125,13.789111328125003],[-15.108349609374983,13.81210937499999],[-15.024462890624987,13.80600585937499],[-14.935791015625,13.785205078125003],[-14.76601562499999,13.669091796874994],[-14.66015625,13.642626953125003],[-14.570849609374989,13.616162109374997],[-14.506982421874994,13.559716796874994],[-14.405468749999983,13.503710937500003],[-14.325537109374977,13.488574218750003],[-14.278027343749983,13.49716796874999],[-14.199023437499987,13.51875],[-14.14697265625,13.5361328125],[-13.977392578124977,13.54345703125],[-13.852832031249989,13.478564453125001],[-13.826708984374989,13.4078125],[-13.847509765624977,13.335302734374991],[-14.014892578124998,13.296386718749998],[-14.246777343749983,13.23583984375],[-14.438574218749975,13.268896484374991],[-14.671923828124987,13.351708984374994],[-14.808251953124994,13.4111328125],[-14.865039062499989,13.434863281250003],[-14.950292968749977,13.472607421874997],[-15.024609374999983,13.513330078124994],[-15.096386718749983,13.539648437499991],[-15.151123046875002,13.556494140624991],[-15.191601562499981,13.535253906249991],[-15.212109374999983,13.485058593749995],[-15.24453125,13.429101562499993],[-15.286230468749977,13.39599609375],[-15.481835937499994,13.376367187499994],[-15.657324218749975,13.355810546874991],[-15.751562499999975,13.33837890625],[-15.814404296874983,13.325146484374997],[-15.834277343749987,13.156445312499997],[-16.033056640624977,13.158349609374994],[-16.22832031249999,13.160302734374994],[-16.430859374999983,13.157324218749991],[-16.648779296874977,13.154150390624991],[-16.704541015624983,13.11972656249999],[-16.763330078124994,13.064160156249997]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Kenya","sov_a3":"KEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kenya","adm0_a3":"KEN","geou_dif":0,"geounit":"Kenya","gu_a3":"KEN","su_dif":0,"subunit":"Kenya","su_a3":"KEN","brk_diff":0,"name":"Kenya","name_long":"Kenya","brk_a3":"KEN","brk_name":"Kenya","brk_group":null,"abbrev":"Ken.","postal":"KE","formal_en":"Republic of Kenya","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kenya","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":7,"mapcolor13":3,"pop_est":39002772,"gdp_md_est":61510,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KE","iso_a3":"KEN","iso_n3":"404","un_a3":"404","wb_a2":"KE","wb_a3":"KEN","woe_id":-99,"adm0_a3_is":"KEN","adm0_a3_us":"KEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KEN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[40.99443359375001,-2.158398437499983],[40.957324218750074,-2.167285156250017],[40.976464843749994,-2.109765625000022],[41.086035156250006,-2.036523437500022],[41.13066406250002,-2.053027343750003],[41.139257812500006,-2.069824218749957],[41.13681640625006,-2.085058593749963],[41.118164062499964,-2.10009765625],[40.99443359375001,-2.158398437499983]]],[[[35.28759765624997,5.384082031249989],[35.325292968750006,5.364892578124994],[35.37792968750003,5.385156250000037],[35.4240234375001,5.413281249999982],[35.468652343749994,5.419091796875023],[35.745019531249994,5.343994140625],[35.79140625000005,5.278564453124986],[35.78847656249999,5.20810546875002],[35.80029296874997,5.156933593749983],[35.77929687499997,5.105566406250006],[35.756152343750074,4.950488281250031],[35.763085937500044,4.808007812500051],[35.845605468749994,4.702636718749985],[35.919824218749994,4.619824218749983],[35.9787109375001,4.50380859374998],[36.02197265625003,4.468115234374991],[36.081933593749994,4.449707031249971],[36.271875,4.444726562500023],[36.55302734375002,4.437255859375014],[36.823632812499994,4.430126953124983],[36.84824218750006,4.427343750000033],[36.90556640625002,4.411474609374991],[37.15458984375002,4.254541015624994],[37.3825195312501,4.110839843750028],[37.575488281250074,3.9859375],[37.76289062500003,3.864648437499966],[37.944921875,3.746728515625023],[38.0861328125001,3.648828124999966],[38.22529296875004,3.61899414062502],[38.45156250000005,3.604833984374977],[38.608007812500006,3.600097656249986],[38.75273437500002,3.558984375000051],[38.96777343750003,3.520605468750048],[39.12832031250005,3.500878906250023],[39.22548828125005,3.478759765625043],[39.49443359375002,3.45610351562496],[39.53886718750002,3.469189453125054],[39.65751953125002,3.577832031249983],[39.79033203125002,3.754248046875034],[39.8421875,3.851464843750037],[40.01416015624997,3.947949218749983],[40.316015625,4.082714843749983],[40.528710937499994,4.177636718749966],[40.765234375,4.273046875000034],[40.87265625000006,4.19033203124998],[41.02080078125002,4.057470703124991],[41.087207031250074,3.991943359374971],[41.140429687500074,3.96298828125002],[41.22089843750004,3.943554687499969],[41.318945312500006,3.943066406250054],[41.372460937499994,3.94619140624998],[41.48193359375003,3.96328125],[41.737695312499994,3.979052734375003],[41.88398437500004,3.977734375000011],[41.7609375000001,3.801611328125005],[41.6134765625001,3.59047851562498],[41.34179687499997,3.20166015625],[41.13496093750004,2.997070312499972],[40.9787109375001,2.842431640624994],[40.964453125,2.814648437500026],[40.96503906250004,2.642333984375],[40.96669921875005,2.220947265625043],[40.97001953125002,1.378173828125028],[40.97324218750006,0.535400390625014],[40.97656250000003,-0.307324218749983],[40.9782226562501,-0.72871093750004],[40.9787109375001,-0.870312500000011],[41.11582031250006,-1.047460937499963],[41.249804687500074,-1.220507812499946],[41.4269531250001,-1.449511718749974],[41.521875,-1.572265625000028],[41.53759765624997,-1.613183593750009],[41.53271484374997,-1.695312499999957],[41.38691406250004,-1.866992187500031],[41.26748046875005,-1.945019531250025],[41.106835937499994,-1.982324218749994],[41.05869140625006,-1.975195312499963],[40.99550781250005,-1.950585937500008],[40.97070312499997,-1.991796874999963],[40.95214843750003,-2.055957031249974],[40.91660156250006,-2.042480468749986],[40.889746093750006,-2.023535156250034],[40.905859375,-2.1375],[40.92236328124997,-2.19375],[40.89824218750001,-2.269921874999966],[40.82011718750002,-2.33632812499999],[40.81318359375004,-2.392382812499946],[40.64414062500006,-2.53945312499998],[40.4044921875001,-2.5556640625],[40.2785156250001,-2.628613281250026],[40.22246093750001,-2.688378906250037],[40.17978515625006,-2.819042968750011],[40.19472656250005,-3.019238281250026],[40.128125,-3.173339843749986],[40.11542968750009,-3.250585937499991],[39.99169921874997,-3.350683593749963],[39.93681640625002,-3.442480468750006],[39.89628906250002,-3.535839843750026],[39.8609375,-3.576757812500005],[39.81914062500002,-3.786035156250008],[39.7614257812501,-3.913085937499957],[39.7458007812501,-3.955175781250006],[39.73164062500004,-3.993261718749948],[39.686914062499994,-4.067871093749972],[39.658007812500074,-4.119140625000014],[39.63710937500005,-4.152832031249957],[39.49091796875004,-4.478417968750023],[39.37695312499997,-4.625488281249972],[39.2875,-4.60859375],[39.228125,-4.665527343749957],[39.221777343750006,-4.692382812500014],[39.19013671875004,-4.677246093749943],[39.1154296875001,-4.623535156250014],[38.96191406249997,-4.51298828124996],[38.808398437500074,-4.402441406250006],[38.65488281250006,-4.291894531249952],[38.50136718750005,-4.181445312500016],[38.34785156250004,-4.070898437499963],[38.19433593750003,-3.960351562499994],[38.04082031250002,-3.84980468750004],[37.887304687500006,-3.739257812499985],[37.79726562500005,-3.674414062500005],[37.757421875,-3.636132812500023],[37.72617187500006,-3.559765625000011],[37.71103515625006,-3.540820312499974],[37.6701171875001,-3.516796874999968],[37.62207031249997,-3.51152343749996],[37.608203125000074,-3.497070312500028],[37.608691406250074,-3.460253906249988],[37.62539062499999,-3.407226562500028],[37.68183593750004,-3.305761718749963],[37.68798828124997,-3.246191406249991],[37.676855468750006,-3.178417968750039],[37.65917968749997,-3.070019531249983],[37.643847656250074,-3.045410156250028],[37.54218750000004,-2.988574218750003],[37.32900390625005,-2.869628906250014],[37.11582031250006,-2.750585937500006],[36.90263671875002,-2.631640625000017],[36.68945312500003,-2.512597656250022],[36.47636718750007,-2.393554687500014],[36.263085937500044,-2.274609375000025],[36.05,-2.155664062499951],[35.83691406249997,-2.036621093749943],[35.6237304687501,-1.917578125000034],[35.41054687499999,-1.79863281249996],[35.1974609375001,-1.679589843749952],[34.984277343749994,-1.560546874999943],[34.77109375,-1.441601562499969],[34.55791015625001,-1.32255859374996],[34.34472656250003,-1.203613281249971],[34.13164062500002,-1.084570312499963],[34.05156250000007,-1.03984375],[33.979394531249994,-1.002050781250034],[33.90322265625005,-1.002050781250034],[33.9,-0.831640624999949],[33.924414062500006,-0.397851562499952],[33.921484375,-0.016992187499994],[33.94316406250002,0.173779296874969],[34.03720703125006,0.294531249999977],[34.08056640625002,0.382470703125037],[34.11171874999999,0.505126953124972],[34.160937500000074,0.605175781250025],[34.27255859375006,0.686425781249966],[34.29257812500006,0.73125],[34.4108398437501,0.867285156250034],[34.48173828125002,1.042138671875051],[34.535253906250006,1.101562499999986],[34.60195312499999,1.156445312499969],[34.64912109375004,1.185302734374986],[34.72675781250004,1.214257812500023],[34.78759765625003,1.230712890625],[34.79863281250002,1.24453125],[34.803808593750006,1.27285156249998],[34.78359375,1.381152343750017],[34.80957031250003,1.416699218749969],[34.85097656250005,1.489013671875043],[34.898339843749994,1.556494140625034],[34.94121093750002,1.599267578125037],[34.96523437500005,1.64335937499996],[34.976464843749994,1.719628906250051],[34.97822265625004,1.77363281250004],[34.97753906249997,1.861914062499991],[34.9640625000001,2.06240234374998],[34.913964843749994,2.230175781250054],[34.8830078125001,2.417919921875026],[34.90576171875003,2.4796875],[34.86621093750003,2.589697265625019],[34.84667968749997,2.595751953125017],[34.81445312499997,2.619824218750026],[34.77343749999997,2.7234375],[34.742480468750074,2.818115234375014],[34.72324218750006,2.84194335937498],[34.589160156250074,2.924755859374983],[34.522558593750006,3.119970703124963],[34.44785156250006,3.163476562500037],[34.40722656249997,3.357519531250034],[34.39941406249997,3.412695312500006],[34.44179687499999,3.60625],[34.43769531250004,3.650585937499969],[34.392871093750074,3.691503906250048],[34.26708984375003,3.733154296875],[34.16503906250003,3.812988281250014],[34.17822265625003,3.840869140625017],[34.18574218750004,3.869775390625037],[34.13203125000004,3.889160156249986],[33.97607421874997,4.220214843750028],[34.176855468750006,4.419091796875037],[34.38017578125002,4.620654296874974],[34.6398437500001,4.875488281250028],[34.878320312499994,5.109570312500026],[35.08447265624997,5.31186523437502],[35.268359375000074,5.492285156250006],[35.26386718750004,5.457910156250022],[35.26464843750003,5.412060546875011],[35.28759765624997,5.384082031249989]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Libya","sov_a3":"LBY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Libya","adm0_a3":"LBY","geou_dif":0,"geounit":"Libya","gu_a3":"LBY","su_dif":0,"subunit":"Libya","su_a3":"LBY","brk_diff":0,"name":"Libya","name_long":"Libya","brk_a3":"LBY","brk_name":"Libya","brk_group":null,"abbrev":"Libya","postal":"LY","formal_en":"Libya","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Libya","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":11,"pop_est":6310434,"gdp_md_est":88830,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LY","iso_a3":"LBY","iso_n3":"434","un_a3":"434","wb_a2":"LY","wb_a3":"LBY","woe_id":-99,"adm0_a3_is":"LBY","adm0_a3_us":"LBY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"LBY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[25.150488281250006,31.654980468749994],[25.11201171875001,31.626904296874997],[25.057226562500006,31.5671875],[25.02265625,31.514013671874995],[24.929980468750017,31.427490234375],[24.85273437500001,31.334814453125],[24.859960937500006,31.199169921874997],[24.877539062500006,31.061230468749994],[24.929492187500014,30.926464843749997],[24.973925781250017,30.7765625],[24.96142578125,30.678515625],[24.92304687500001,30.558007812499998],[24.877539062500006,30.45751953125],[24.726464843750023,30.250585937499995],[24.703222656250002,30.201074218749994],[24.71162109375001,30.131542968749997],[24.8037109375,29.886035156249996],[24.810839843750017,29.808740234374994],[24.86591796875001,29.570263671874997],[24.916113281250006,29.37626953125],[24.971679687499996,29.22382812499999],[24.980273437500017,29.181884765624996],[24.980273437500017,28.957324218749996],[24.980273437500017,28.732763671875],[24.980273437500017,28.50820312499999],[24.980273437500017,28.283642578124994],[24.980273437500017,28.05908203125],[24.980273437500017,27.834521484374996],[24.980273437500017,27.609960937499995],[24.980273437500017,27.385400390624994],[24.980273437500017,27.160839843749997],[24.980273437500017,26.936230468749997],[24.980273437500017,26.711669921875],[24.980273437500017,26.487109375],[24.980273437500017,26.262548828125],[24.980273437500017,26.03798828124999],[24.980273437500017,25.813427734374997],[24.980273437500017,25.5888671875],[24.980273437500017,25.364306640625003],[24.980273437500017,25.13974609374999],[24.980273437500017,24.915185546874994],[24.980273437500017,24.690625],[24.980273437500017,24.466064453124996],[24.980273437500017,24.241503906250003],[24.980273437500017,24.01694335937499],[24.980273437500017,23.79238281249999],[24.980273437500017,23.567822265624997],[24.980273437500017,23.343212890624997],[24.980273437500017,23.11865234375],[24.980273437500017,22.894091796875003],[24.980273437500017,22.66953125],[24.980273437500017,22.444970703124994],[24.980273437500017,22.220410156249997],[24.980273437500017,21.995849609375],[24.980078125,21.49755859375],[24.979882812500023,20.99921875],[24.97968750000001,20.500927734374997],[24.9794921875,20.002587890624994],[24.976367187500014,20.00078125],[24.973242187500006,19.9990234375],[24.97021484375,19.997265625],[24.966992187500008,19.99545898437499],[24.72041015625001,19.995556640624997],[24.473632812499996,19.99570312499999],[24.22695312500002,19.995849609375],[23.980273437500017,19.99594726562499],[23.980273437500017,19.87109375],[23.980273437500017,19.746289062499997],[23.980273437500017,19.62148437499999],[23.980273437500017,19.496630859375003],[23.501269531250017,19.733203125],[23.02216796875001,19.969775390625003],[22.543066406250006,20.206347656250003],[22.0640625,20.442919921875],[21.5849609375,20.679492187500003],[21.105859375000023,20.91611328124999],[20.626757812500017,21.152636718750003],[20.14765625000001,21.38925781249999],[19.668554687500006,21.625830078124988],[19.189453125,21.86240234374999],[18.710449218749996,22.09897460937499],[18.231347656250023,22.33554687499999],[17.752246093750017,22.57211914062499],[17.273242187500017,22.80869140624999],[16.79414062500001,23.04526367187499],[16.315039062500006,23.28183593749999],[15.984082031250011,23.445214843749994],[15.627148437500011,23.28574218749999],[15.347460937500017,23.160693359375003],[14.979003906250002,22.99619140624999],[14.978906250000023,22.996289062499994],[14.5556640625,22.782519531250003],[14.230761718750017,22.618457031250003],[14.21552734375001,22.619677734375003],[14.20068359375,22.623730468749997],[13.862695312500023,22.902099609375],[13.5986328125,23.11953125],[13.48125,23.18017578125],[12.983593750000011,23.291259765625],[12.48876953125,23.40166015625],[11.967871093750006,23.517871093750003],[11.873046875,23.69482421875],[11.766992187500023,23.892578125],[11.624218750000011,24.139697265625003],[11.536914062500015,24.290820312500003],[11.507617187500017,24.31435546874999],[11.108203125000015,24.434033203124997],[10.686132812500004,24.55136718749999],[10.43896484375,24.480224609375],[10.395898437500021,24.485595703125],[10.32578125,24.530224609374997],[10.255859375,24.591015625],[10.218652343750023,24.676220703124994],[10.119531250000023,24.790234375],[10.028125,25.051025390625],[10.01904296875,25.258544921875],[10.00068359375001,25.332080078125003],[9.781054687500017,25.624267578125],[9.58125,25.89013671875],[9.448242187499998,26.067138671875],[9.42236328125,26.147070312499995],[9.437890625000021,26.24550781249999],[9.491406250000011,26.333740234375],[9.684960937500023,26.438232421875],[9.859375,26.551953125],[9.883203125000023,26.630810546874994],[9.894433593750021,26.847949218749996],[9.837109375000011,26.915820312499996],[9.79541015625,27.044775390625],[9.752539062500006,27.2193359375],[9.747558593749998,27.330859375],[9.825292968750006,27.552978515625],[9.916015625,27.785693359374996],[9.858203125000015,28.043310546875],[9.815625,28.56020507812499],[9.842578125000017,28.966992187499994],[9.820703125000023,29.114794921874996],[9.805273437500006,29.17695312499999],[9.745898437500015,29.368945312499992],[9.672656250000017,29.566992187499995],[9.64013671875,29.636425781249994],[9.546191406250017,29.795947265624992],[9.391015625000023,29.993652343749996],[9.310253906250011,30.115234375],[9.420996093750006,30.179296875],[9.51875,30.22939453124999],[9.637988281250015,30.28232421875],[9.807421875000017,30.342236328124997],[9.89501953125,30.3873046875],[9.932519531250023,30.425341796874996],[10.059765625000011,30.580078125],[10.1259765625,30.665966796874994],[10.21640625,30.783203125],[10.256054687500011,30.864941406249994],[10.257031250000011,30.940820312499994],[10.24335937500001,31.032128906249994],[10.172656250000017,31.2509765625],[10.114941406250011,31.463769531249994],[10.15986328125001,31.545800781249994],[10.195996093750011,31.58510742187499],[10.274609375000011,31.684960937499994],[10.306054687500021,31.704833984375],[10.475781250000011,31.736035156249994],[10.543652343750011,31.802539062499992],[10.595507812500017,31.885742187499996],[10.60888671875,31.929541015625],[10.683007812500023,31.975390625],[10.771582031250006,32.02119140625],[10.826367187500011,32.0806640625],[11.005175781250017,32.172705078125],[11.168261718750017,32.256738281249994],[11.358007812500006,32.34521484375],[11.504980468750006,32.413671875],[11.535937500000017,32.47333984375],[11.533789062500006,32.524951171874996],[11.453906250000017,32.642578125],[11.453906250000017,32.781689453125],[11.459179687500011,32.897363281249994],[11.467187500000021,32.965722656249994],[11.50244140625,33.155566406249996],[11.504589843750011,33.181933593749996],[11.657128906250023,33.118896484375],[11.8134765625,33.093701171875],[12.279882812500006,32.858544921874994],[12.427050781250017,32.8291015625],[12.753515625,32.801074218749996],[13.138085937500023,32.897363281249994],[13.283496093750017,32.9146484375],[13.536328125000011,32.824267578124996],[13.647753906250017,32.798828125],[13.835351562500023,32.791796875],[14.155664062500023,32.70976562499999],[14.237109375000017,32.68125],[14.423828125,32.55029296875],[14.513378906250011,32.51108398437499],[15.176562500000017,32.391162109374996],[15.266894531250017,32.311669921874994],[15.35908203125001,32.15966796875],[15.363085937500017,31.97119140625],[15.4140625,31.834228515624996],[15.496386718750015,31.656787109374996],[15.595800781250006,31.531103515625],[15.705957031250023,31.426416015624994],[15.832226562500011,31.360986328124998],[16.123046875,31.264453125],[16.450976562500017,31.227294921875],[16.781542968750017,31.214746093749994],[17.34921875,31.081494140624997],[17.830468750000023,30.927587890625],[17.949316406250006,30.851904296874995],[18.1904296875,30.777294921874994],[18.669824218750023,30.415673828124998],[18.93642578125002,30.290429687499994],[19.12373046875001,30.26611328125],[19.291699218750008,30.2880859375],[19.58984375,30.413769531249997],[19.713281250000023,30.488378906249995],[20.01318359375,30.800683593749994],[20.11152343750001,30.963720703124995],[20.150976562500006,31.07861328125],[20.141113281249996,31.195507812499994],[20.103808593750017,31.300537109374996],[20.02001953125,31.41064453125],[19.961230468750017,31.556005859375],[19.926367187500006,31.817529296874994],[19.973437500000017,31.999072265624996],[20.03095703125001,32.107861328125],[20.121484375000023,32.21875],[20.37060546875,32.43076171875],[20.62109375,32.58017578125],[21.062304687500017,32.775537109374994],[21.31875,32.777685546875],[21.424707031250023,32.799169921875],[21.63593750000001,32.937304687499996],[21.72138671875001,32.94248046875],[21.839453125,32.908642578125],[22.187402343750023,32.918261718749996],[22.340625,32.8798828125],[22.5234375,32.7939453125],[22.75410156250001,32.740527343749996],[22.916894531250023,32.687158203124994],[23.090625,32.61875],[23.129687500000017,32.448144531249994],[23.110449218750006,32.397412109375],[23.10625,32.331445312499994],[23.286328125,32.213818359375],[23.797656250000017,32.15869140625],[23.8984375,32.127197265625],[24.038964843750023,32.037011718749994],[24.129687500000014,32.009228515625],[24.479785156250017,31.996533203124997],[24.683886718750017,32.015966796875],[24.878515625,31.984277343749998],[24.95068359375,31.953710937499995],[25.025,31.883349609374996],[25.115039062500017,31.71230468749999],[25.150488281250006,31.654980468749994]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Lesotho","sov_a3":"LSO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lesotho","adm0_a3":"LSO","geou_dif":0,"geounit":"Lesotho","gu_a3":"LSO","su_dif":0,"subunit":"Lesotho","su_a3":"LSO","brk_diff":0,"name":"Lesotho","name_long":"Lesotho","brk_a3":"LSO","brk_name":"Lesotho","brk_group":null,"abbrev":"Les.","postal":"LS","formal_en":"Kingdom of Lesotho","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lesotho","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":8,"pop_est":2130819,"gdp_md_est":3293,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LS","iso_a3":"LSO","iso_n3":"426","un_a3":"426","wb_a2":"LS","wb_a3":"LSO","woe_id":-99,"adm0_a3_is":"LSO","adm0_a3_us":"LSO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"LSO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.736914062500002,-30.101953125],[28.646875,-30.1265625],[28.634375,-30.128710937500003],[28.57666015625,-30.123046875],[28.499609375,-30.12890625],[28.4390625,-30.14248046875001],[28.39208984375,-30.147558593750006],[28.3154296875,-30.218457031250015],[28.176171875000023,-30.409863281250008],[28.139062500000023,-30.44990234375001],[28.128710937500014,-30.525097656250008],[28.09638671875001,-30.584570312500002],[28.05683593750001,-30.631054687500015],[28.018164062500006,-30.64228515625001],[27.90185546875,-30.623828125],[27.753125,-30.6],[27.666601562500006,-30.54228515625],[27.589648437500014,-30.46640625],[27.54902343750001,-30.411230468750002],[27.50654296875001,-30.380957031250002],[27.491992187500017,-30.363964843750015],[27.431445312500014,-30.338476562500006],[27.40859375000002,-30.325292968750002],[27.388476562500014,-30.31591796875],[27.364062500000017,-30.27919921875001],[27.349707031250006,-30.24736328125],[27.35537109375002,-30.15859375],[27.31269531250001,-30.10566406250001],[27.23974609375,-30.01533203125001],[27.19355468750001,-29.94130859375001],[27.13046875,-29.840234375],[27.091796875,-29.7537109375],[27.0517578125,-29.6640625],[27.056933593750017,-29.625585937500006],[27.095214843749996,-29.59931640625001],[27.207421875000023,-29.55419921875],[27.29453125,-29.519335937500003],[27.356835937500023,-29.45527343750001],[27.424902343750006,-29.36005859375001],[27.4580078125,-29.302734375],[27.491015625000017,-29.27656250000001],[27.527148437500017,-29.2361328125],[27.590234375000023,-29.146484375],[27.660449218750014,-29.046972656250002],[27.73554687500001,-28.940039062500006],[27.830371093750017,-28.90908203125001],[27.959863281250023,-28.873339843750003],[28.084375,-28.779980468750008],[28.232617187500008,-28.70126953125001],[28.471875,-28.615820312500006],[28.583398437500023,-28.594140625],[28.625781250000017,-28.58173828125001],[28.652636718750017,-28.59785156250001],[28.681152343750004,-28.646777343750003],[28.721777343750002,-28.68769531250001],[28.816210937500014,-28.758886718750006],[28.85625,-28.776074218750008],[28.953710937500006,-28.881445312500002],[29.05800781250002,-28.953710937500006],[29.17802734375002,-29.036914062500003],[29.259765625,-29.078320312500008],[29.301367187500002,-29.08984375],[29.3359375,-29.163671875],[29.370898437500014,-29.21845703125001],[29.390722656250006,-29.269726562500008],[29.38671875,-29.319726562500005],[29.34882812500001,-29.441992187500002],[29.293554687500002,-29.56689453125],[29.24921875,-29.618847656250008],[29.195117187500017,-29.651660156250003],[29.1421875,-29.700976562500003],[29.121972656250023,-29.801171875],[29.098046875000023,-29.919042968750002],[29.029003906250008,-29.967578125],[28.97529296875001,-29.999414062500005],[28.901074218750015,-30.038476562500005],[28.736914062500002,-30.101953125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Liberia","sov_a3":"LBR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Liberia","adm0_a3":"LBR","geou_dif":0,"geounit":"Liberia","gu_a3":"LBR","su_dif":0,"subunit":"Liberia","su_a3":"LBR","brk_diff":0,"name":"Liberia","name_long":"Liberia","brk_a3":"LBR","brk_name":"Liberia","brk_group":null,"abbrev":"Liberia","postal":"LR","formal_en":"Republic of Liberia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Liberia","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":4,"mapcolor13":9,"pop_est":3441790,"gdp_md_est":1526,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"LR","iso_a3":"LBR","iso_n3":"430","un_a3":"430","wb_a2":"LR","wb_a3":"LBR","woe_id":-99,"adm0_a3_is":"LBR","adm0_a3_us":"LBR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"LBR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-8.486425781249977,7.558496093749994],[-8.46728515625,7.547021484374993],[-8.437158203124994,7.516406249999988],[-8.408740234374989,7.411816406249996],[-8.296630859374998,7.074023437499989],[-8.302343749999977,6.98095703125],[-8.324511718749989,6.920019531249991],[-8.325097656249994,6.860400390624989],[-8.332568359374989,6.801562499999989],[-8.401220703124977,6.705126953124989],[-8.603564453124989,6.5078125],[-8.587890625,6.490527343749989],[-8.53955078125,6.468066406249989],[-8.490332031249977,6.456396484374991],[-8.449902343749983,6.4625],[-8.399316406249994,6.413183593749991],[-8.344873046874994,6.351269531249997],[-8.287109375,6.319042968749997],[-8.203857421875,6.290722656249997],[-8.131005859374994,6.287548828124997],[-8.068945312499977,6.298388671874988],[-7.981591796874994,6.2861328125],[-7.888623046874982,6.23486328125],[-7.85551757812499,6.150146484375],[-7.833251953125,6.076367187499997],[-7.800927734374994,6.038916015624991],[-7.796533203124995,5.975097656249999],[-7.730371093749994,5.919042968749991],[-7.636132812499995,5.907714843749999],[-7.513916015624999,5.842041015625],[-7.4828125,5.845507812499989],[-7.469433593749982,5.853710937499997],[-7.454394531249988,5.84130859375],[-7.423730468749994,5.651318359374997],[-7.39990234375,5.550585937499989],[-7.412451171874977,5.509912109374994],[-7.428906249999982,5.477880859374991],[-7.429833984374994,5.324511718749989],[-7.485205078124977,5.236425781249991],[-7.494140625,5.139794921874994],[-7.509765625,5.108496093749991],[-7.568896484374988,5.080664062499991],[-7.569335937499999,5.006445312499991],[-7.585058593749976,4.916748046875],[-7.591210937499995,4.821533203125],[-7.574658203124983,4.572314453124989],[-7.571582031249989,4.386425781249997],[-7.544970703124989,4.351318359375],[-7.660009765624976,4.36679687499999],[-7.998242187499983,4.508691406249994],[-8.259033203125,4.589990234374994],[-9.132177734374977,5.054638671874997],[-9.374755859375,5.241064453124991],[-9.654394531249977,5.518701171874993],[-10.2763671875,6.07763671875],[-10.418164062499983,6.167333984374991],[-10.597070312499994,6.2109375],[-10.707617187499977,6.258496093749996],[-10.785595703124983,6.31015625],[-10.849023437499993,6.465087890625],[-11.004541015624994,6.557373046875],[-11.291601562499977,6.688232421874999],[-11.507519531249983,6.906542968749989],[-11.454541015624981,6.951220703124989],[-11.376660156249981,7.094677734374996],[-11.267675781249975,7.232617187499997],[-11.166113281249975,7.314404296874996],[-11.085400390624983,7.398583984374993],[-11.000244140625,7.463037109374994],[-10.878076171874994,7.538232421874994],[-10.691308593749994,7.736425781249991],[-10.6474609375,7.759375],[-10.61757812499999,7.896435546874998],[-10.570849609374989,8.071142578124991],[-10.516748046874994,8.125292968749989],[-10.389550781249994,8.157617187499994],[-10.359814453124981,8.187939453124997],[-10.314648437499983,8.310839843749989],[-10.285742187499977,8.4541015625],[-10.283203125,8.485156249999987],[-10.233056640624994,8.488818359374989],[-10.147412109374983,8.519726562499995],[-10.09765625,8.505859375],[-10.07568359375,8.464599609375],[-10.064355468749994,8.429882812499995],[-9.804736328124989,8.519189453124993],[-9.781982421875,8.537695312499991],[-9.768261718749983,8.534570312499994],[-9.735595703125,8.453955078124991],[-9.716894531249977,8.458886718749994],[-9.701171875,8.482177734375],[-9.683886718749989,8.484423828124989],[-9.66357421875,8.473535156249994],[-9.643212890624994,8.43603515625],[-9.610156249999989,8.40234375],[-9.553906249999983,8.378613281249997],[-9.518261718749981,8.34609375],[-9.522216796875,8.260009765625],[-9.508496093749983,8.17626953125],[-9.484130859375,8.156982421875],[-9.471142578124983,8.106982421874989],[-9.464550781249983,8.052099609374991],[-9.451123046874983,8.023242187499989],[-9.441552734374994,7.967919921874994],[-9.446386718749977,7.908496093749989],[-9.436328124999989,7.866699218749999],[-9.39492187499999,7.794628906249996],[-9.369140625,7.703808593749996],[-9.368945312499989,7.639550781249994],[-9.383984374999983,7.571875],[-9.411474609374975,7.509960937499997],[-9.459765624999989,7.442529296874993],[-9.463818359374983,7.415869140624991],[-9.435107421874989,7.3984375],[-9.391650390624989,7.39492187499999],[-9.355322265624977,7.40869140625],[-9.263281249999977,7.377734374999989],[-9.215185546874977,7.333300781249989],[-9.1728515625,7.278417968749991],[-9.134814453124989,7.250585937499991],[-9.11757812499999,7.215917968749991],[-9.052343749999977,7.225488281249993],[-8.9765625,7.258886718749991],[-8.960986328124987,7.274609375],[-8.938427734374983,7.266162109374988],[-8.8896484375,7.262695312499999],[-8.855517578124989,7.322802734374988],[-8.827929687499989,7.391943359374992],[-8.769140624999977,7.466796875],[-8.740234375,7.49570312499999],[-8.732617187499983,7.543554687499991],[-8.729443359374983,7.605273437499988],[-8.708300781249989,7.658886718749996],[-8.659765624999977,7.688378906249993],[-8.607324218749994,7.687939453124998],[-8.578857421875,7.677050781249989],[-8.564404296874983,7.625097656249991],[-8.522265624999989,7.58554687499999],[-8.486425781249977,7.558496093749994]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Morocco","sov_a3":"MAR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Morocco","adm0_a3":"MAR","geou_dif":0,"geounit":"Morocco","gu_a3":"MAR","su_dif":0,"subunit":"Morocco","su_a3":"MAR","brk_diff":0,"name":"Morocco","name_long":"Morocco","brk_a3":"MAR","brk_name":"Morocco","brk_group":null,"abbrev":"Mor.","postal":"MA","formal_en":"Kingdom of Morocco","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Morocco","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":9,"pop_est":34859364,"gdp_md_est":136600,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MA","iso_a3":"MAR","iso_n3":"504","un_a3":"504","wb_a2":"MA","wb_a3":"MAR","woe_id":-99,"adm0_a3_is":"MAR","adm0_a3_us":"MAR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MAR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-4.628320312499966,35.206396484375006],[-4.329980468749937,35.161474609375006],[-3.982421875,35.243408203125],[-3.787988281250023,35.244921875000045],[-3.693261718749994,35.27998046874998],[-3.590625,35.228320312500045],[-3.394726562499926,35.21181640625005],[-3.206005859374926,35.239111328125006],[-3.063085937499949,35.317236328125034],[-2.972216796874989,35.40727539062499],[-2.957958984374926,35.36308593749996],[-2.953613281249943,35.315136718749955],[-2.925976562499983,35.28710937500003],[-2.869531249999937,35.17265624999999],[-2.839941406249949,35.127832031249994],[-2.731396484374955,35.135205078124976],[-2.636816406249977,35.11269531250002],[-2.423730468749994,35.12348632812498],[-2.219628906249965,35.104199218749976],[-2.190771484374948,35.02978515625],[-2.131787109374926,34.970849609374994],[-1.920898437499943,34.835546875000034],[-1.795605468749926,34.751904296874955],[-1.792187499999926,34.72319335937499],[-1.832421874999966,34.654638671875034],[-1.849658203125017,34.607324218749994],[-1.816601562499926,34.55708007812498],[-1.739453124999926,34.49609375],[-1.733300781250023,34.46704101562503],[-1.751855468749966,34.43325195312496],[-1.791796874999932,34.36791992187499],[-1.706933593749966,34.17607421874999],[-1.692675781249989,33.99028320312496],[-1.714697265624949,33.85820312499995],[-1.714111328125,33.781835937500034],[-1.702978515624977,33.716845703125045],[-1.63125,33.566748046875006],[-1.67919921875,33.31865234375002],[-1.625097656250005,33.18334960937497],[-1.550732421874954,33.073583984375006],[-1.510009765625,32.877636718749955],[-1.45,32.784814453124966],[-1.352148437499977,32.70336914062497],[-1.29638671875,32.67568359375002],[-1.188232421875,32.608496093750006],[-1.111035156249983,32.55229492187502],[-1.065527343749949,32.46831054687496],[-1.16259765625,32.399169921875],[-1.240332031249949,32.33759765624998],[-1.262109374999937,32.27114257812502],[-1.225927734374949,32.16455078125],[-1.225927734374949,32.10722656250004],[-1.275341796874983,32.089013671874966],[-1.477050781249943,32.094873046874994],[-1.63515625,32.09956054687498],[-1.81699218749992,32.10478515624998],[-2.072802734374989,32.11503906250002],[-2.23125,32.12133789062497],[-2.448388671874937,32.12998046875006],[-2.523242187500017,32.12568359374998],[-2.722607421874955,32.09575195312502],[-2.863427734374937,32.074707031249964],[-2.88720703125,32.06884765625003],[-2.930859374999926,32.04252929687499],[-2.961132812499955,31.963964843749977],[-2.988232421874983,31.874218749999983],[-3.01738281249996,31.834277343750017],[-3.439794921874949,31.70454101562498],[-3.604589843749948,31.686767578125],[-3.700244140624989,31.70009765625005],[-3.768164062499977,31.689550781250034],[-3.82675781249992,31.661914062499985],[-3.846679687499971,31.619873046875057],[-3.849560546874955,31.56640625],[-3.837109374999983,31.512353515624994],[-3.79643554687496,31.43710937500003],[-3.789160156249977,31.361816406250053],[-3.815136718749954,31.308837890625],[-3.821386718749978,31.25546875000006],[-3.833398437499938,31.19780273437505],[-3.811816406249988,31.166601562499977],[-3.77099609375,31.161816406249983],[-3.730175781249955,31.13540039062502],[-3.672509765624937,31.111376953125014],[-3.62451171875,31.065771484375034],[-3.626904296874954,31.00092773437498],[-3.666796874999932,30.964013671875023],[-3.702001953124977,30.94448242187502],[-3.860058593749954,30.927246093749968],[-3.985351562499972,30.913525390625036],[-4.148779296874977,30.8095703125],[-4.322851562500006,30.698876953124994],[-4.52915039062492,30.62553710937499],[-4.619628906249972,30.604785156250014],[-4.778515624999926,30.55239257812499],[-4.968261718749943,30.465380859375042],[-5.061914062499937,30.326416015625057],[-5.180126953124955,30.166162109374994],[-5.293652343749983,30.058642578125045],[-5.448779296874959,29.956933593750023],[-5.593310546875017,29.91796874999997],[-5.775,29.86904296875005],[-6.00429687499999,29.83125],[-6.166503906249999,29.81894531250006],[-6.214794921874955,29.810693359374966],[-6.357617187499925,29.80830078125001],[-6.427636718749994,29.816113281250008],[-6.479736328124943,29.82036132812499],[-6.500878906249994,29.809130859375014],[-6.507910156250005,29.783789062500006],[-6.510693359374954,29.72602539062495],[-6.520556640624989,29.65986328124998],[-6.565673828124943,29.60385742187503],[-6.59775390624992,29.578955078125002],[-6.635351562499949,29.568798828124983],[-6.755126953124999,29.583837890625034],[-6.855566406249949,29.601611328125014],[-7.094921874999955,29.625195312500008],[-7.142431640624949,29.61958007812504],[-7.160205078124932,29.61264648437503],[-7.234912109374959,29.574902343749983],[-7.349755859374994,29.49472656250001],[-7.427685546874982,29.425],[-7.485742187499994,29.39223632812499],[-7.624609374999948,29.37519531249998],[-7.685156249999949,29.34951171874999],[-7.943847656249972,29.17475585937501],[-7.998925781249994,29.132421874999974],[-8.265185546874989,28.980517578125045],[-8.340478515624937,28.93017578125],[-8.399316406249937,28.880175781250017],[-8.558349609375028,28.76787109374996],[-8.659912109375,28.71860351562506],[-8.678417968749955,28.689404296874983],[-8.683349609375,28.620751953125023],[-8.683349609375,28.46923828124997],[-8.683349609375,28.323681640624983],[-8.683349609375,28.11201171875004],[-8.683349609375,27.900390625],[-8.683349609375,27.65644531250004],[-8.817822265624953,27.65644531250004],[-8.817773437499937,27.65590820312502],[-8.813916015624955,27.61386718750006],[-8.784570312499994,27.530859375000034],[-8.774365234374983,27.460546875],[-8.788964843750023,27.416552734375017],[-8.802685546874955,27.360937500000034],[-8.796826171874926,27.30820312500006],[-8.774365234374983,27.250585937500034],[-8.753857421874955,27.191015624999977],[-8.753857421874955,27.150976562500006],[-8.794873046874983,27.120703125000034],[-8.889062499999964,27.104101562500034],[-9.001904296874955,27.090429687500006],[-9.084423828124983,27.090429687500006],[-9.208447265624955,27.100195312500034],[-9.285595703124926,27.098242187500002],[-9.352978515624983,27.098242187500002],[-9.413037109374955,27.088476562500063],[-9.4873046875,27.050390625],[-9.569824218749941,26.990820312500063],[-9.673339843749972,26.910742187499977],[-9.7353515625,26.86093750000006],[-9.817871093750028,26.850195312500002],[-9.900341796874955,26.850195312500002],[-9.980908203124924,26.890234374999977],[-10.03271484375,26.910742187499977],[-10.066845703124926,26.908789062500034],[-10.123046875000027,26.880468750000034],[-10.189453124999972,26.86093750000006],[-10.251464843749972,26.86093750000006],[-10.354931640624926,26.900976562500034],[-10.478955078124955,26.960546875],[-10.551269531249943,26.990820312500063],[-10.654248046874983,27.000585937500006],[-10.757763671874926,27.020117187499977],[-10.830078125,27.010351562500034],[-10.922802734374983,27.010351562500034],[-11.046826171874926,26.970312500000034],[-11.150341796874955,26.941015625000034],[-11.263623046874955,26.910742187499977],[-11.392578125000028,26.883398437500006],[-11.361279296874955,26.793554687500006],[-11.316845703124955,26.744726562500006],[-11.316845703124955,26.684179687500006],[-11.337890624999972,26.633398437499977],[-11.39990234375,26.583593750000034],[-11.470703124999943,26.520117187499977],[-11.511669921874955,26.470312500000063],[-11.553173828124955,26.400976562500063],[-11.583984374999943,26.360937499999977],[-11.637207031249943,26.295507812500063],[-11.684521484374981,26.213476562500034],[-11.699218749999972,26.162695312500006],[-11.718212890624926,26.10410156250006],[-11.754882812499943,26.086523437500034],[-11.880859375000027,26.070898437500034],[-11.960888671874983,26.05039062500003],[-12.03076171875,26.030859375000063],[-12.056787109374966,25.99633789062503],[-12.060986328124955,25.990820312499977],[-12.081054687499943,25.920507812500034],[-12.081054687499943,25.87070312500003],[-12.101025390624926,25.830664062500034],[-12.130859374999972,25.731054687500006],[-12.170849609374953,25.64023437500006],[-12.201123046874983,25.520117187500002],[-12.230957031249943,25.420507812500063],[-12.270947265625011,25.260302734375017],[-12.310986328124981,25.110937500000063],[-12.360839843750027,24.9703125],[-12.40087890625,24.88046875],[-12.431152343749941,24.830664062500063],[-12.500976562499972,24.770117187499977],[-12.561035156249943,24.731054687500002],[-12.630810546874955,24.680273437499977],[-12.710937500000028,24.63046875000003],[-12.820751953124924,24.570898437499977],[-12.911132812499941,24.520117187500034],[-12.947851562499977,24.497265624999983],[-12.99116210937501,24.4703125],[-13.061035156249943,24.400976562500006],[-13.12109375,24.300390625000034],[-13.1611328125,24.22031250000006],[-13.23095703125,24.090429687499977],[-13.280761718749943,24.020117187500034],[-13.310986328124955,23.981054687499977],[-13.391113281249941,23.941015625],[-13.480957031249941,23.910742187500063],[-13.5810546875,23.870703124999977],[-13.661083984374955,23.830664062500002],[-13.770947265624955,23.790625],[-13.840771484374983,23.750585937500034],[-13.891113281250028,23.691015625000063],[-13.93110351562501,23.620703125000034],[-13.980908203124924,23.520117187500063],[-14.020996093750028,23.410742187499977],[-14.040966796875011,23.340429687500034],[-14.10107421875,23.100195312500034],[-14.121093749999972,22.960546875],[-14.141064453124955,22.870703125],[-14.170898437499998,22.760351562499977],[-14.190869140624981,22.590429687500002],[-14.190869140624981,22.450781249999977],[-14.2109375,22.370703125],[-14.221191406249943,22.310156250000034],[-14.270996093749972,22.240820312500006],[-14.311035156249943,22.191015625],[-14.380810546874955,22.120703125000063],[-14.440917968749943,22.080664062499977],[-14.460888671874924,22.040625],[-14.520996093749998,21.99086914062499],[-14.581005859374981,21.910742187500006],[-14.630859375,21.860937499999974],[-14.62109375,21.820898437500006],[-14.610791015625011,21.750585937499977],[-14.641113281249972,21.680273437500034],[-14.670849609374981,21.600195312499974],[-14.750976562499972,21.500585937500034],[-14.840820312499972,21.45078125],[-14.971142578124955,21.441015625000063],[-15.15087890625,21.441015625000063],[-15.290966796874924,21.45078125],[-15.4609375,21.45078125],[-15.610791015624983,21.470312499999977],[-15.750927734374924,21.490820312499977],[-15.920849609375011,21.500585937500034],[-16.04101562499997,21.500585937500034],[-16.190869140624955,21.481054687500034],[-16.581005859374926,21.481054687500034],[-16.73095703125003,21.470312499999977],[-16.951123046874926,21.430273437500006],[-17.002978515625017,21.420751953125006],[-17.003076171874937,21.420703125000017],[-16.930859374999983,21.9],[-16.793261718750017,22.159716796875017],[-16.683984374999937,22.27436523437501],[-16.514404296874943,22.33349609374997],[-16.35874023437495,22.594531250000042],[-16.30429687499995,22.834814453125063],[-16.201855468749955,22.945361328125017],[-16.16972656249999,23.031933593749983],[-16.21025390624999,23.097900390625],[-16.113671874999937,23.227539062500057],[-15.996728515624993,23.425488281249955],[-15.942626953125,23.552636718750023],[-15.805957031249958,23.74951171874997],[-15.789257812499926,23.79287109375002],[-15.801660156249966,23.842236328124955],[-15.855175781249955,23.800341796875045],[-15.912548828124983,23.727587890625045],[-15.980712890624943,23.670312500000023],[-15.952832031249953,23.740820312499974],[-15.899316406249964,23.844433593749955],[-15.777783203124983,23.952929687500045],[-15.586328124999966,24.07275390625003],[-15.188623046874937,24.478808593750045],[-15.038867187499987,24.54882812500003],[-14.90429687500003,24.719775390625017],[-14.856054687499977,24.871582031250053],[-14.842919921874966,25.220117187499994],[-14.794921874999943,25.404150390625006],[-14.70703125,25.547705078125034],[-14.602294921874972,25.80854492187498],[-14.522753906250017,25.92524414062504],[-14.470556640624949,26.163037109374983],[-14.41386718749993,26.25371093749999],[-14.312451171874983,26.296728515625034],[-14.168359375000023,26.415429687499966],[-13.952099609374924,26.48876953125],[-13.695898437499949,26.642919921875063],[-13.57578125,26.735107421875],[-13.495751953124937,26.872656250000034],[-13.409814453124937,27.14663085937499],[-13.256152343749987,27.43461914062496],[-13.177392578125023,27.65185546874997],[-13.175976562499981,27.655712890624983],[-13.040722656249983,27.769824218750045],[-12.948925781249926,27.914160156250034],[-12.793652343749983,27.978417968749994],[-12.468896484374993,28.009423828124994],[-11.986083984374972,28.12929687499999],[-11.552685546874955,28.31010742187496],[-11.430175781249943,28.38203124999998],[-11.299072265624972,28.52607421875001],[-11.080957031249937,28.713769531249962],[-10.673828124999972,28.93920898437497],[-10.486474609374994,29.064941406249996],[-10.200585937499994,29.380371093750057],[-10.010498046875,29.641406250000045],[-9.852636718750006,29.80922851562502],[-9.74345703124996,29.958203125],[-9.667089843749949,30.10927734375005],[-9.623828124999932,30.352636718749974],[-9.652929687499977,30.447558593750045],[-9.773144531249955,30.603125],[-9.85390625,30.644580078125045],[-9.875488281249943,30.717919921874962],[-9.832421874999966,30.84726562500003],[-9.833349609374977,31.069628906250042],[-9.80869140624992,31.424609374999957],[-9.674951171874937,31.710986328125045],[-9.347460937499932,32.086376953124955],[-9.286572265624955,32.240576171875034],[-9.249121093749977,32.48583984374997],[-9.245849609375,32.57246093749995],[-8.83623046874996,32.92045898437499],[-8.59628906249992,33.187158203125044],[-8.512841796874993,33.25244140625003],[-8.301171874999937,33.37436523437498],[-7.562353515624977,33.64028320312499],[-7.144677734374966,33.83032226562497],[-6.900976562499949,33.96904296874999],[-6.755761718749966,34.13291015624998],[-6.353125,34.77607421875001],[-5.95756835937496,35.68115234375],[-5.924804687499943,35.78579101562502],[-5.747949218749994,35.81596679687502],[-5.622851562499989,35.82890624999999],[-5.522265624999932,35.86201171874998],[-5.397363281249966,35.929882812499955],[-5.277832031249943,35.90273437500002],[-5.337646484374972,35.856542968750034],[-5.337646484374972,35.74521484375],[-5.252685546874971,35.61474609374997],[-5.105371093749994,35.46777343749997],[-4.837207031249989,35.28129882812499],[-4.628320312499966,35.206396484375006]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Madagascar","sov_a3":"MDG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Madagascar","adm0_a3":"MDG","geou_dif":0,"geounit":"Madagascar","gu_a3":"MDG","su_dif":0,"subunit":"Madagascar","su_a3":"MDG","brk_diff":0,"name":"Madagascar","name_long":"Madagascar","brk_a3":"MDG","brk_name":"Madagascar","brk_group":null,"abbrev":"Mad.","postal":"MG","formal_en":"Republic of Madagascar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Madagascar","name_alt":null,"mapcolor7":6,"mapcolor8":5,"mapcolor9":2,"mapcolor13":3,"pop_est":20653556,"gdp_md_est":20130,"pop_year":-99,"lastcensus":1993,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MG","iso_a3":"MDG","iso_n3":"450","un_a3":"450","wb_a2":"MG","wb_a3":"MDG","woe_id":-99,"adm0_a3_is":"MDG","adm0_a3_us":"MDG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MDG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[49.936425781249994,-16.90292968750002],[49.82402343750001,-17.08652343750002],[49.85566406250004,-16.933203124999963],[49.9859375,-16.712402343750014],[50.02304687500006,-16.6953125],[49.936425781249994,-16.90292968750002]]],[[[48.3421875,-13.363867187500034],[48.34355468750002,-13.400390625000014],[48.21191406250003,-13.385253906249957],[48.191210937500074,-13.259960937500011],[48.255664062500074,-13.256054687500011],[48.2697265625001,-13.20458984375],[48.308886718750074,-13.198242187499957],[48.35107421875003,-13.309570312499986],[48.3421875,-13.363867187500034]]],[[[49.53828125000004,-12.432128906250014],[49.58417968750009,-12.53671875],[49.63779296875006,-12.637109375000035],[49.80498046875001,-12.879687499999987],[49.87646484375003,-12.97304687499999],[49.9375,-13.072265624999957],[49.96718750000005,-13.270214843749969],[50.0734375000001,-13.577929687500031],[50.17382812500003,-14.040234374999983],[50.204589843749964,-14.514453124999958],[50.23535156249997,-14.732031249999961],[50.313476562499964,-14.936816406250031],[50.441308593749994,-15.149316406249978],[50.482714843750074,-15.385644531249994],[50.404589843750074,-15.629101562500024],[50.29150390625003,-15.858496093750048],[50.262304687500006,-15.901562500000026],[50.20898437499997,-15.960449218750027],[50.184960937499994,-15.957812500000033],[50.09443359375004,-15.898632812500052],[50.02041015625005,-15.801757812500027],[49.92656250000001,-15.573535156249987],[49.89257812500003,-15.457714843750011],[49.85332031250002,-15.439453125000028],[49.74375,-15.449511718750031],[49.66435546875007,-15.521582031249977],[49.64990234374997,-15.566992187499991],[49.66699218749997,-15.695703125],[49.697070312500074,-15.811425781250051],[49.71044921874997,-15.92890625],[49.712792968749994,-16.076757812500002],[49.74228515625006,-16.12148437499998],[49.78593750000007,-16.159082031249994],[49.83105468750003,-16.255859375],[49.83906250000004,-16.486523437499997],[49.81132812500007,-16.60302734375003],[49.73398437500006,-16.703027343749966],[49.73857421875002,-16.758398437499963],[49.767187500000055,-16.81513671874998],[49.73974609374997,-16.849414062500028],[49.6369140625001,-16.892871093750003],[49.59521484375003,-16.931152343749986],[49.53955078124997,-17.032910156250026],[49.44931640625006,-17.240625],[49.43710937500006,-17.3466796875],[49.49365234375003,-17.669531249999963],[49.477832031250074,-17.89853515624999],[49.362890625,-18.336328125],[49.296875,-18.54404296875005],[49.20332031250003,-18.79228515624999],[49.06005859374997,-19.11962890624997],[48.91806640625,-19.53046875000001],[48.797460937500006,-19.953222656249977],[48.708300781250074,-20.207324218749974],[48.60703125000006,-20.457519531249957],[48.46855468750007,-20.9],[48.35078125000004,-21.349023437500037],[48.17587890625006,-21.843066406249974],[47.934472656249994,-22.393945312500023],[47.9083984375001,-22.465820312500014],[47.858300781249994,-22.74726562499997],[47.804101562499994,-22.99150390624999],[47.73945312500004,-23.23339843749997],[47.604101562500006,-23.63310546874996],[47.588671875000074,-23.75634765625003],[47.55800781250005,-23.874609374999963],[47.42763671874999,-24.125195312500026],[47.372558593749964,-24.218457031250026],[47.333593750000055,-24.31757812499997],[47.31171875000004,-24.443164062499974],[47.272851562499994,-24.564355468749962],[47.17734375,-24.787207031249977],[47.034960937500074,-24.97900390624997],[46.93818359375004,-25.048730468749966],[46.72851562499997,-25.14990234374997],[46.6222656250001,-25.170410156249986],[46.38671874999997,-25.17275390625001],[46.15869140624997,-25.230371093750023],[45.92089843750002,-25.341308593749986],[45.692187500000074,-25.46845703125004],[45.60458984375006,-25.528710937499962],[45.5080078125001,-25.56318359374997],[45.2057617187501,-25.57050781250004],[45.11523437500003,-25.543066406249963],[44.812890625000044,-25.33417968750004],[44.69580078125002,-25.299707031250037],[44.4738281250001,-25.271093749999977],[44.40673828125003,-25.25332031249999],[44.34589843750004,-25.226074218749957],[44.256152343750074,-25.116894531249997],[44.078125,-25.024609375000026],[44.0353515625001,-24.995703125],[44.00830078125003,-24.93203125],[43.98984375000006,-24.863476562499983],[43.94375,-24.786718749999977],[43.90957031250005,-24.640625],[43.85156249999997,-24.538378906250003],[43.6875,-24.357910156250014],[43.67001953125,-24.300292968749996],[43.656835937500006,-24.108789062499962],[43.66210937500003,-23.979199218750036],[43.64609375,-23.741894531250008],[43.6647460937501,-23.63027343750001],[43.722265625,-23.529687500000037],[43.69873046875003,-23.420898437499986],[43.637597656249994,-23.30654296875005],[43.61464843749999,-23.188183593749997],[43.56953125000004,-23.08046875],[43.397851562499994,-22.88632812499996],[43.357519531250006,-22.790820312499957],[43.32958984375003,-22.691894531249968],[43.2648437500001,-22.38359375],[43.25712890625001,-22.276367187499957],[43.26660156249997,-22.04931640624997],[43.29052734374997,-21.93251953124998],[43.33222656250004,-21.85117187500002],[43.34267578125005,-21.790429687499994],[43.369726562500006,-21.73828125000003],[43.41054687499999,-21.69648437500004],[43.43779296875002,-21.64667968750001],[43.501855468750044,-21.356445312499954],[43.58310546875006,-21.29199218749997],[43.70361328125002,-21.254980468749977],[43.800195312499994,-21.179199218749982],[43.8556640625001,-21.07685546875001],[43.91113281250002,-20.865820312500006],[44.06308593750006,-20.65625],[44.11718749999997,-20.54609374999997],[44.23964843749999,-20.3796875],[44.34814453124997,-20.145507812499986],[44.3810546875001,-20.03515624999997],[44.40468750000005,-19.922070312500026],[44.43222656250006,-19.67421875],[44.45292968750002,-19.55087890624999],[44.44882812500006,-19.428710937499968],[44.386523437500074,-19.303125],[44.23876953124997,-19.075195312499986],[44.23398437500006,-19.03261718750001],[44.245703125000055,-18.86318359375005],[44.23310546875004,-18.740625],[44.17871093749997,-18.618554687500037],[44.10878906250005,-18.503515624999963],[44.04003906249997,-18.28847656250002],[44.00664062500002,-17.933007812499994],[44.01367187500002,-17.804492187500017],[43.99355468750005,-17.690332031250023],[43.94355468750004,-17.58144531250005],[43.979394531249994,-17.3916015625],[44.42138671874997,-16.70263671874997],[44.43574218750004,-16.621484374999966],[44.41796874999997,-16.411328125000054],[44.427050781250074,-16.289062500000014],[44.442480468750006,-16.24375],[44.476171875,-16.217285156249957],[44.551855468750006,-16.20449218750001],[44.90917968749997,-16.174511718750026],[44.95507812499997,-16.15332031249997],[45.04423828125002,-16.095117187500023],[45.16679687500001,-15.982812499999964],[45.2228515625001,-15.95048828124996],[45.27128906250002,-15.962304687499966],[45.30234375,-16.010449218749997],[45.3421875,-16.03671875000002],[45.48632812500003,-15.985839843749957],[45.541796875000074,-15.984277343749994],[45.598242187500006,-15.992578125],[45.62470703125004,-15.945800781249972],[45.640527343749994,-15.883105468749987],[45.661523437499994,-15.838867187499956],[45.70019531249997,-15.813769531249989],[45.8859375000001,-15.800097656249958],[46.00429687500005,-15.782128906250021],[46.157519531250074,-15.738281249999972],[46.19052734375006,-15.746875],[46.3140625,-15.904589843750015],[46.35156249999997,-15.918164062500024],[46.3996093750001,-15.924609375000019],[46.44160156250004,-15.895898437500023],[46.34130859374997,-15.813378906249993],[46.32617187499997,-15.766699218749991],[46.331445312499994,-15.71367187500003],[46.38515625,-15.600097656249988],[46.47509765625002,-15.513476562500003],[46.67470703124999,-15.381835937500012],[46.88203125000004,-15.229589843749991],[46.942285156249994,-15.219042968749973],[46.99326171875,-15.2431640625],[47.032324218750055,-15.422656249999973],[47.02744140625,-15.452246093749963],[47.06054687500003,-15.456347656250003],[47.09921875,-15.434179687500018],[47.133398437500006,-15.36171875],[47.135156250000044,-15.3015625],[47.107324218750044,-15.243847656249967],[47.09375,-15.195019531249967],[47.092578125000074,-15.150097656249967],[47.19765625,-15.044042968750032],[47.28046875000004,-14.942675781249987],[47.31875,-14.821777343749957],[47.35195312500005,-14.766113281249988],[47.43906250000006,-14.703320312499983],[47.46474609375005,-14.713281249999966],[47.4850585937501,-14.764355468749981],[47.496386718750074,-14.81835937499997],[47.47402343750005,-14.871972656249966],[47.44208984375004,-14.925],[47.42919921874997,-14.995703125000034],[47.47832031250002,-15.009375],[47.524707031250074,-14.992187500000028],[47.592578125000074,-14.8642578125],[47.670019531250006,-14.743261718750034],[47.71601562500004,-14.680371093750011],[47.774023437500055,-14.63671875],[47.870410156250074,-14.645507812500014],[47.964160156250074,-14.672558593750026],[47.811523437499964,-14.544824218750023],[47.773339843749994,-14.369921875],[47.955175781250006,-14.067285156249994],[47.95693359375005,-14.004296875000037],[47.983203125000074,-13.984863281249984],[47.995507812499994,-13.960449218749986],[47.901367187499964,-13.85820312500003],[47.88359375000002,-13.807519531250009],[47.89599609374997,-13.730664062499983],[47.941015625000055,-13.662402343750017],[47.981835937500044,-13.614648437499966],[48.03984375000002,-13.596289062499961],[48.08593750000003,-13.622558593749986],[48.187109375,-13.706542968750043],[48.255273437500044,-13.719335937499975],[48.337695312500074,-13.638671874999972],[48.40507812500002,-13.537988281249978],[48.50644531250006,-13.46875],[48.62138671875002,-13.425976562499983],[48.796484375,-13.267480468750023],[48.91035156250004,-12.93583984374996],[48.91943359375003,-12.839062499999969],[48.89423828125004,-12.721679687500028],[48.853808593750074,-12.610156249999958],[48.78632812500004,-12.470898437500011],[48.8039062500001,-12.440039062500034],[48.89960937500003,-12.458496093749972],[48.931738281250006,-12.4390625],[49.0357421875,-12.315820312500037],[49.20703124999997,-12.079589843749957],[49.26347656250002,-12.080175781249991],[49.31210937500006,-12.123925781250023],[49.330175781250006,-12.188671874999983],[49.36396484375003,-12.236328125000014],[49.47978515625001,-12.348437500000015],[49.53828125000004,-12.432128906250014]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mali","sov_a3":"MLI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mali","adm0_a3":"MLI","geou_dif":0,"geounit":"Mali","gu_a3":"MLI","su_dif":0,"subunit":"Mali","su_a3":"MLI","brk_diff":0,"name":"Mali","name_long":"Mali","brk_a3":"MLI","brk_name":"Mali","brk_group":null,"abbrev":"Mali","postal":"ML","formal_en":"Republic of Mali","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mali","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":7,"pop_est":12666987,"gdp_md_est":14590,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ML","iso_a3":"MLI","iso_n3":"466","un_a3":"466","wb_a2":"ML","wb_a3":"MLI","woe_id":-99,"adm0_a3_is":"MLI","adm0_a3_us":"MLI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MLI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[4.227636718750006,19.142773437499997],[4.228222656250011,18.968066406250003],[4.22900390625,18.704345703125],[4.22998046875,18.410595703124994],[4.230859375000023,18.139453125],[4.23193359375,17.830517578124997],[4.232714843750017,17.582177734374994],[4.233691406250017,17.28842773437499],[4.234667968750017,16.996386718750003],[4.202929687500017,16.9626953125],[4.191210937500017,16.79819335937499],[4.18212890625,16.581787109375],[4.121289062500011,16.357714843750003],[4.01484375000001,16.19272460937499],[3.976171875,16.03554687499999],[3.947070312500017,15.94565429687499],[3.9072265625,15.89682617187499],[3.89794921875,15.83798828124999],[3.876953125,15.755273437499994],[3.842968750000011,15.701708984375001],[3.816503906250006,15.674023437499995],[3.709570312500006,15.641699218749991],[3.5205078125,15.483105468749997],[3.504296875000022,15.356347656249993],[3.2890625,15.391113281249998],[3.06015625,15.427197265624995],[3.029394531250006,15.424853515625003],[3.010546875000017,15.40830078124999],[3.001074218750006,15.340966796874994],[2.689648437500011,15.329882812500003],[2.420800781250023,15.32041015624999],[2.088183593750017,15.309375],[1.859375,15.301708984374997],[1.569140625000017,15.286474609374991],[1.300195312500023,15.272265625],[1.121289062500011,15.126123046874993],[0.960058593750006,14.98691406249999],[0.947460937500011,14.982128906249997],[0.718652343750023,14.954882812500005],[0.433007812500023,14.979003906250002],[0.286230468750006,14.980175781249997],[0.228710937500011,14.963671875],[0.217480468750011,14.911474609374991],[0.00732421875,14.984814453124995],[-0.235888671874989,15.059423828124991],[-0.405419921874994,15.0125],[-0.432275390624994,15.028515625],[-0.454492187499994,15.05966796874999],[-0.536523437499994,15.077880859374998],[-0.666455078124983,15.069775390624995],[-0.760449218749983,15.047753906249994],[-0.907958984375,14.937402343749996],[-1.019189453124994,14.841357421875003],[-1.049560546875,14.81953125],[-1.204980468749994,14.761523437500001],[-1.49365234375,14.626074218749991],[-1.657324218749977,14.526806640624995],[-1.695068359375,14.508496093749995],[-1.767773437499983,14.486035156249997],[-1.879785156249994,14.481494140625003],[-1.97304687499999,14.456542968749998],[-2.05712890625,14.194628906250003],[-2.113232421874983,14.16845703125],[-2.457226562499983,14.274121093749995],[-2.526904296874989,14.25830078125],[-2.586718749999989,14.227587890625003],[-2.778857421874989,14.073730468749998],[-2.873925781249994,13.950732421875003],[-2.925878906249977,13.786767578124994],[-2.918505859374989,13.736376953125003],[-2.917089843749977,13.679492187500001],[-2.950830078124994,13.6484375],[-2.997216796874994,13.63710937499999],[-3.038671874999977,13.639111328124995],[-3.198437499999983,13.6728515625],[-3.248632812499977,13.658349609374994],[-3.270166015624994,13.577441406250003],[-3.266748046874994,13.40078125],[-3.3017578125,13.28076171875],[-3.396728515625,13.243701171875003],[-3.469921874999983,13.196386718749991],[-3.527636718749988,13.18271484374999],[-3.575781249999977,13.194189453124991],[-3.853466796874983,13.37353515625],[-3.947314453124989,13.402197265624991],[-4.05117187499999,13.38242187499999],[-4.151025390624994,13.306201171875003],[-4.196191406249994,13.256152343750001],[-4.258691406249994,13.197314453124987],[-4.328710937499976,13.119042968749993],[-4.310253906249983,13.052490234374998],[-4.260644531249994,12.975341796875],[-4.225244140624994,12.879492187499991],[-4.227099609374989,12.793701171874998],[-4.480615234374994,12.672216796874991],[-4.459863281249994,12.63037109375],[-4.421923828124989,12.581591796874989],[-4.421582031249983,12.493066406249994],[-4.4287109375,12.337597656249997],[-4.479882812499994,12.281787109374989],[-4.546044921874994,12.226464843749994],[-4.5869140625,12.155029296875],[-4.627246093749989,12.120214843749991],[-4.699316406249977,12.076171875],[-4.797949218749977,12.032128906249994],[-4.968994140625,11.993310546874994],[-5.105908203124983,11.967529296875],[-5.157519531249988,11.9423828125],[-5.230175781249983,11.890283203124994],[-5.288134765624989,11.827929687499989],[-5.302001953124999,11.760449218749995],[-5.29052734375,11.683300781249997],[-5.270312499999988,11.619873046874998],[-5.244775390624994,11.57675781249999],[-5.229394531249994,11.522460937499998],[-5.250244140625,11.375781249999989],[-5.299853515624989,11.205957031249994],[-5.347412109375,11.130273437499993],[-5.42421875,11.088720703124991],[-5.490478515625,11.042382812499994],[-5.468554687499989,10.931054687499994],[-5.457080078124989,10.771386718749994],[-5.475683593749977,10.643945312499994],[-5.479003906249999,10.565087890624994],[-5.507031249999983,10.483447265624989],[-5.523535156249976,10.426025390625],[-5.556591796874983,10.43994140625],[-5.694287109374983,10.43320312499999],[-5.843847656249977,10.389550781249994],[-5.896191406249983,10.354736328125],[-5.907568359374977,10.307226562499991],[-5.940673828125,10.275097656249997],[-5.98867187499999,10.23911132812499],[-6.034570312499994,10.19482421875],[-6.1171875,10.201904296875],[-6.196875,10.232128906249997],[-6.238378906249976,10.261621093749994],[-6.241308593749977,10.279199218749993],[-6.214990234374994,10.322363281249991],[-6.192626953125,10.369433593749989],[-6.190673828125,10.400292968749994],[-6.217773437499999,10.476269531249997],[-6.239746093749999,10.558105468749998],[-6.230664062499982,10.597509765624991],[-6.250244140625,10.717919921874994],[-6.261132812499994,10.724072265624997],[-6.365625,10.692822265624997],[-6.404150390624977,10.685107421874989],[-6.425878906249977,10.671777343749994],[-6.4326171875,10.648730468749989],[-6.407519531249989,10.572363281249991],[-6.423925781249977,10.559130859374989],[-6.482617187499983,10.561230468749997],[-6.564599609374994,10.58642578125],[-6.654150390624977,10.656445312499997],[-6.676367187499977,10.6337890625],[-6.686132812499977,10.578027343749994],[-6.691992187499977,10.512011718749989],[-6.669335937499994,10.3921875],[-6.693261718749993,10.349462890624991],[-6.753222656249989,10.357128906249997],[-6.833642578124994,10.356982421874989],[-6.90380859375,10.34506835937499],[-6.950341796874994,10.342333984374989],[-6.9794921875,10.299560546875],[-6.991748046874988,10.251855468749994],[-6.963818359374983,10.198730468749998],[-6.968164062499994,10.176220703124997],[-6.989453124999983,10.155664062499994],[-7.017089843749999,10.143261718749997],[-7.039746093749983,10.144775390625],[-7.104882812499993,10.20351562499999],[-7.182324218749983,10.225683593749991],[-7.363183593749993,10.259375],[-7.38505859374999,10.340136718749989],[-7.414794921875,10.34130859375],[-7.45654296875,10.383935546874993],[-7.497949218749993,10.439794921874991],[-7.532812499999976,10.436816406249989],[-7.562109374999977,10.421240234374991],[-7.6611328125,10.427441406249997],[-7.749072265624989,10.34228515625],[-7.814208984374999,10.236572265625],[-7.884082031249988,10.185742187499997],[-7.9609375,10.163476562499994],[-7.990625,10.1625],[-7.974462890624976,10.229541015624989],[-7.985693359374977,10.278417968749991],[-8.007275390624983,10.321875],[-8.231494140624989,10.43798828125],[-8.266650390624989,10.485986328124994],[-8.301562499999989,10.61757812499999],[-8.324121093749994,10.749511718749998],[-8.321679687499994,10.826953124999989],[-8.306347656249983,10.89609375],[-8.312744140624998,10.949755859374987],[-8.33740234375,10.990625],[-8.404492187499983,11.029931640624994],[-8.474707031249977,11.048388671874989],[-8.563525390624989,10.996679687499991],[-8.606201171875,10.986962890624993],[-8.646191406249983,10.990478515625],[-8.666699218749983,11.009472656249997],[-8.663916015624977,11.035839843749997],[-8.567285156249994,11.177001953125],[-8.520312499999989,11.2359375],[-8.463525390624994,11.280712890624997],[-8.42529296875,11.304736328124987],[-8.400683593749989,11.339404296874989],[-8.398535156249977,11.366552734374991],[-8.407470703125,11.386279296874989],[-8.470703125,11.412207031249991],[-8.56875,11.478076171874989],[-8.621142578124989,11.485107421874998],[-8.664941406249994,11.514990234374991],[-8.71142578125,11.617773437499991],[-8.733105468749983,11.6375],[-8.779736328124983,11.648242187499989],[-8.822021484375,11.673242187499994],[-8.820068359375,11.80712890625],[-8.818310546874983,11.922509765624993],[-8.913867187499989,12.108544921874993],[-8.950830078124994,12.2255859375],[-8.998925781249994,12.345898437499997],[-9.043066406249977,12.40234375],[-9.120458984374977,12.449951171875],[-9.215527343749983,12.482861328124997],[-9.3,12.490283203124989],[-9.365185546874983,12.479296874999989],[-9.395361328124977,12.464648437499989],[-9.393652343749977,12.442236328124991],[-9.3408203125,12.366015624999989],[-9.33154296875,12.32373046875],[-9.340185546874977,12.282763671874989],[-9.358105468749983,12.255419921874989],[-9.404980468749981,12.25244140625],[-9.48681640625,12.228662109374994],[-9.587744140624977,12.182470703124991],[-9.658300781249977,12.143115234374987],[-9.714746093749994,12.04248046875],[-9.754003906249977,12.029931640624994],[-9.82070312499999,12.04248046875],[-10.010644531249994,12.116455078125],[-10.167089843749977,12.177441406249995],[-10.274853515624983,12.212646484375],[-10.339892578124989,12.190283203124991],[-10.372753906249983,12.179541015624991],[-10.4658203125,12.138671875],[-10.589501953124994,11.990283203124989],[-10.618994140624977,11.941210937499989],[-10.643701171874994,11.925537109374998],[-10.677343749999977,11.8994140625],[-10.709228515625,11.898730468749989],[-10.734912109374987,11.916455078124997],[-10.743017578124977,11.92724609375],[-10.806494140624977,12.034277343749991],[-10.876171874999981,12.15185546875],[-10.933203124999977,12.205175781249991],[-11.004541015624994,12.20751953125],[-11.065820312499994,12.170800781249994],[-11.129248046874977,12.095019531249989],[-11.209667968749983,12.024853515624997],[-11.260693359374983,12.004052734374994],[-11.30517578125,12.015429687499989],[-11.414648437499977,12.10400390625],[-11.492431640625,12.166943359374997],[-11.502197265624998,12.198632812499994],[-11.474560546874983,12.24716796874999],[-11.447558593749989,12.319238281249993],[-11.418066406249977,12.377685546875],[-11.389404296875,12.40439453124999],[-11.382421874999977,12.479248046875],[-11.448779296874989,12.531933593749997],[-11.450585937499994,12.557714843749991],[-11.444091796875,12.627587890624994],[-11.414355468749989,12.775488281249991],[-11.417431640624983,12.831884765624991],[-11.390380859375,12.941992187499991],[-11.433935546874977,12.991601562499994],[-11.444140624999989,13.028222656249993],[-11.492822265624993,13.086962890624989],[-11.548779296874981,13.170263671874991],[-11.561669921874994,13.236962890624994],[-11.581347656249989,13.2900390625],[-11.634960937499983,13.369873046875],[-11.674462890624993,13.382373046875001],[-11.758251953124981,13.39453125],[-11.772216796875,13.367089843749993],[-11.803369140624994,13.327294921874994],[-11.831689453124993,13.315820312499993],[-11.877783203124977,13.364550781250003],[-11.895214843749981,13.406298828125003],[-11.894580078124989,13.444433593749991],[-11.957080078124989,13.510888671874994],[-12.05419921875,13.633056640624998],[-12.044140624999983,13.73388671875],[-11.984179687499989,13.788085937499998],[-11.966357421874989,13.828955078124991],[-11.960888671874983,13.875292968750001],[-11.988085937499989,13.930761718749991],[-12.020117187499977,13.974658203125001],[-12.011181640624983,14.071826171875003],[-12.019189453124994,14.206494140624997],[-12.068359375,14.27421875],[-12.112890624999977,14.323291015625001],[-12.175244140624981,14.376660156249997],[-12.228417968749993,14.45859375],[-12.206835937499989,14.57114257812499],[-12.186523437499998,14.648144531249999],[-12.280615234374977,14.809033203124995],[-12.104687499999981,14.745361328125],[-12.08154296875,14.766357421875],[-12.021582031249975,14.804931640625],[-11.94091796875,14.886914062499995],[-11.872851562499989,14.995166015625003],[-11.842236328124983,15.12939453125],[-11.828759765624994,15.244873046874998],[-11.798437499999977,15.342724609374997],[-11.76015625,15.425537109375],[-11.675878906249977,15.51206054687499],[-11.596728515624987,15.573242187499998],[-11.502685546875,15.63681640624999],[-11.455224609374994,15.62539062499999],[-11.365625,15.536767578124993],[-11.169335937499994,15.358642578125],[-11.007421874999977,15.222900390625],[-10.948242187499998,15.151123046875002],[-10.895605468749975,15.150488281249991],[-10.815087890624994,15.28173828125],[-10.731982421874989,15.39492187499999],[-10.696582031249989,15.42265625],[-10.586572265624994,15.434863281250003],[-10.4931640625,15.439794921874991],[-10.411816406249983,15.437939453124995],[-10.26210937499999,15.416015625],[-10.19375,15.396044921875001],[-10.129541015624993,15.383691406249993],[-9.94140625,15.373779296875],[-9.755078124999983,15.40146484374999],[-9.577832031249983,15.437255859374998],[-9.446923828124994,15.458203125],[-9.440332031249994,15.511669921874997],[-9.447705078124981,15.574853515624994],[-9.426562499999989,15.623046875],[-9.385351562499977,15.667626953124993],[-9.3505859375,15.677392578124994],[-9.33544921875,15.525683593750001],[-9.293701171875,15.502832031249994],[-9.176806640624989,15.49609375],[-8.987060546875,15.49609375],[-8.783105468749994,15.49609375],[-8.579150390624989,15.496142578125001],[-8.375195312499983,15.496142578125001],[-8.171240234374975,15.496142578125001],[-7.967285156249999,15.496142578125001],[-7.763378906249982,15.496142578125001],[-7.559375,15.496142578125001],[-7.35546875,15.496191406249993],[-7.151513671874994,15.496191406249993],[-6.947558593749989,15.496191406249993],[-6.743603515624983,15.496191406249993],[-6.539648437499977,15.496191406249993],[-6.335742187499988,15.496191406249993],[-6.131787109374982,15.496240234374993],[-5.927832031249977,15.496289062499995],[-5.723876953125,15.496289062499995],[-5.5125,15.496289062499995],[-5.455615234374989,15.78940429687499],[-5.403564453124999,16.057910156250003],[-5.359912109374989,16.282861328124994],[-5.509619140624976,16.442041015624994],[-5.628662109374999,16.568652343750003],[-5.65625,16.8095703125],[-5.684765624999983,17.058251953124994],[-5.713183593749989,17.306884765625],[-5.74169921875,17.555566406249994],[-5.770166015624994,17.804248046875003],[-5.798632812499989,18.052929687499997],[-5.827099609374983,18.3015625],[-5.855566406249976,18.550244140624997],[-5.884082031249988,18.798876953125003],[-5.9125,19.047509765624994],[-5.941015624999977,19.296191406250003],[-5.969482421875,19.544873046874997],[-5.997949218749994,19.793505859375003],[-6.026416015624989,20.0421875],[-6.054882812499983,20.29086914062499],[-6.083398437499994,20.539501953124997],[-6.11181640625,20.78818359374999],[-6.140332031249982,21.036865234375],[-6.168798828124976,21.28554687499999],[-6.197265625,21.5341796875],[-6.225732421874994,21.782861328124994],[-6.254199218749989,22.031542968750003],[-6.28271484375,22.280175781249994],[-6.311132812499977,22.528857421875003],[-6.339648437499989,22.777490234374994],[-6.368115234374983,23.026123046875],[-6.396582031249976,23.274804687499994],[-6.425048828125,23.523486328125003],[-6.45351562499999,23.772167968749997],[-6.482031249999977,24.020800781250003],[-6.510449218749983,24.269482421874997],[-6.538964843749994,24.518164062499988],[-6.5673828125,24.766796875],[-6.594091796874977,24.99462890625],[-6.287207031249977,24.994824218749997],[-5.959814453124976,24.99497070312499],[-5.640771484374994,24.995166015625003],[-5.172900390624989,24.995410156250003],[-4.822607421874977,24.99560546875],[-4.516992187499994,24.8044921875],[-4.240332031249977,24.62353515625],[-3.912792968749983,24.409472656250003],[-3.585351562499994,24.195361328125003],[-3.257861328124989,23.98125],[-2.930371093749983,23.767138671875003],[-2.602929687499994,23.553027343750003],[-2.275390625,23.3388671875],[-1.947900390624994,23.124804687500003],[-1.620410156249989,22.91064453125],[-1.29296875,22.696533203125],[-0.965478515624994,22.482470703125003],[-0.637988281249989,22.268310546875],[-0.310546875,22.05419921875],[0.016992187500023,21.840136718750003],[0.344433593750011,21.6259765625],[0.671875,21.411865234375],[0.999414062500023,21.19775390625],[1.1455078125,21.102246093749997],[1.1591796875,21.0625],[1.172753906250023,20.981982421875],[1.1640625,20.891308593749997],[1.165722656250011,20.817431640625003],[1.208886718750023,20.767285156249997],[1.290234375000011,20.713574218749997],[1.610644531250017,20.555566406249994],[1.636035156250017,20.524365234374997],[1.647363281250023,20.45883789062499],[1.685449218750023,20.378369140624997],[1.753222656250017,20.331591796875003],[1.832421875000023,20.296875],[1.928808593750005,20.272705078125],[2.219335937500006,20.247802734375],[2.280859375,20.210302734374988],[2.406152343750023,20.063867187499994],[2.47421875,20.035009765624988],[2.667773437500017,19.992919921875],[2.807910156250017,19.969433593749997],[2.86572265625,19.955957031249994],[2.992480468750017,19.91660156249999],[3.130273437500023,19.85019531249999],[3.203710937500006,19.789697265624994],[3.203417968750017,19.770751953125],[3.202734375,19.718310546875003],[3.20166015625,19.56040039062499],[3.22705078125,19.473583984374997],[3.255859375,19.4109375],[3.25439453125,19.372607421875003],[3.219628906250022,19.345410156249997],[3.1923828125,19.312060546875003],[3.17724609375,19.268164062499988],[3.137890625000011,19.212158203125],[3.106054687500005,19.150097656249997],[3.119726562500006,19.103173828124994],[3.174218750000023,19.072900390624994],[3.255957031250006,19.01328125],[3.323437500000011,18.98837890624999],[3.3564453125,18.986621093750003],[3.40087890625,18.98842773437499],[3.438769531250017,18.996142578125003],[3.683496093750022,19.041601562499988],[3.91015625,19.083740234375],[4.227636718750006,19.142773437499997]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mozambique","sov_a3":"MOZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mozambique","adm0_a3":"MOZ","geou_dif":0,"geounit":"Mozambique","gu_a3":"MOZ","su_dif":0,"subunit":"Mozambique","su_a3":"MOZ","brk_diff":0,"name":"Mozambique","name_long":"Mozambique","brk_a3":"MOZ","brk_name":"Mozambique","brk_group":null,"abbrev":"Moz.","postal":"MZ","formal_en":"Republic of Mozambique","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mozambique","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":1,"mapcolor13":4,"pop_est":21669278,"gdp_md_est":18940,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MZ","iso_a3":"MOZ","iso_n3":"508","un_a3":"508","wb_a2":"MZ","wb_a3":"MOZ","woe_id":-99,"adm0_a3_is":"MOZ","adm0_a3_us":"MOZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MOZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[32.88613281250002,-26.84931640625001],[32.77656250000001,-26.85097656250001],[32.58876953125002,-26.855761718750003],[32.47773437500001,-26.858496093750006],[32.353515625,-26.86162109375],[32.19960937500002,-26.83349609375],[32.112890625,-26.839453125],[32.10595703125,-26.520019531249996],[32.07792968750002,-26.449804687500006],[32.04833984375,-26.34716796875],[32.04140625000002,-26.28125],[32.05996093750002,-26.21503906250001],[32.06884765625,-26.11015625],[32.060546875,-26.018359375],[31.96845703125001,-25.972265625],[31.9482421875,-25.957617187500006],[31.92832031250001,-25.885351562500006],[31.920312500000026,-25.77392578125],[31.98457031250001,-25.631933593750006],[31.979394531250023,-25.359472656250002],[31.98701171875001,-25.263476562500003],[31.985742187500023,-25.073828125],[31.984375,-24.844042968750003],[31.983203125000017,-24.63828125],[31.985839843749996,-24.46064453125001],[31.966601562500017,-24.37646484375],[31.950585937500023,-24.33027343750001],[31.908007812500014,-24.236230468750005],[31.858300781250026,-24.04023437500001],[31.799609375000017,-23.8921875],[31.724023437500023,-23.79453125],[31.7,-23.74306640625001],[31.675585937500017,-23.67421875],[31.604101562500006,-23.55292968750001],[31.54560546875001,-23.48232421875001],[31.52968750000002,-23.42578125],[31.53173828125,-23.27949218750001],[31.466699218750023,-23.016699218750006],[31.41933593750002,-22.825097656250005],[31.348046875000023,-22.617578125],[31.300195312500026,-22.478613281250006],[31.293164062500008,-22.4546875],[31.287890625000014,-22.40205078125001],[31.429492187500014,-22.298828125],[31.571484375,-22.15351562500001],[31.737695312500023,-21.9833984375],[31.88593750000001,-21.83154296875],[32.01630859375001,-21.698046875],[32.19472656250002,-21.5154296875],[32.37109375,-21.33486328125001],[32.41240234375002,-21.311816406250003],[32.429785156250006,-21.29707031250001],[32.35361328125,-21.136523437500003],[32.476171875,-20.95009765625001],[32.48281250000002,-20.82890625],[32.47763671875,-20.712988281250002],[32.49238281250001,-20.659765625],[32.529296875,-20.6130859375],[32.67255859375001,-20.51611328125],[32.780859375,-20.36152343750001],[32.86962890625,-20.2171875],[32.9927734375,-19.984863281249996],[33.0048828125,-19.93017578125],[33.00673828125002,-19.873828125],[32.97265625,-19.79541015625],[32.89042968750002,-19.668066406250006],[32.83076171875001,-19.558203125],[32.77763671875002,-19.388769531250006],[32.83095703125002,-19.24140625000001],[32.85,-19.152441406250006],[32.84980468750001,-19.10439453125001],[32.826171875,-19.05878906250001],[32.7662109375,-19.02431640625001],[32.71650390625001,-19.00185546875001],[32.69970703125,-18.94091796875],[32.69921875,-18.868457031250003],[32.72197265625002,-18.828417968750003],[32.8544921875,-18.763671875],[32.88457031250002,-18.728515625],[32.90029296875002,-18.6890625],[32.90166015625002,-18.632910156250006],[32.942480468750006,-18.49267578125],[32.99306640625002,-18.35957031250001],[32.99638671875002,-18.312597656250006],[32.978515625,-18.271484375],[32.96464843750001,-18.1962890625],[32.95556640625,-18.08291015625001],[32.9546875,-17.765429687500003],[32.98076171875002,-17.4375],[32.969335937500006,-17.2515625],[32.884375,-17.037792968750008],[32.87626953125002,-16.88359375],[32.937890625000016,-16.775976562500002],[32.94804687500002,-16.71230468750001],[32.9029296875,-16.704199218750006],[32.81025390625001,-16.69765625],[32.741796875,-16.67763671875001],[32.63583984375,-16.589453125],[32.45195312500002,-16.515722656250006],[32.243261718750006,-16.44873046875],[31.939843750000023,-16.428808593750006],[31.687597656250006,-16.21416015625],[31.48984375,-16.1796875],[31.426171875000023,-16.15234375],[31.236230468750023,-16.02363281250001],[30.938769531250014,-16.01171875],[30.630175781250017,-15.999218750000011],[30.437792968750017,-15.995312500000011],[30.409375,-15.978222656250011],[30.398144531250015,-15.80078125],[30.39609375,-15.64306640625],[30.379882812499996,-15.505859375],[30.350585937499996,-15.349707031250004],[30.3056640625,-15.288867187500003],[30.25214843750001,-15.183203125],[30.225,-15.06689453125],[30.221777343750006,-15.010546875],[30.231835937500023,-14.990332031250004],[30.44609375000002,-14.907519531250001],[30.537695312500002,-14.866503906250001],[30.673339843749996,-14.819140625],[30.915136718750002,-14.753320312500009],[31.130859375,-14.694628906250003],[31.32851562500002,-14.6376953125],[31.537890625000017,-14.5771484375],[31.623046875,-14.53671875],[31.728906250000023,-14.49609375],[31.98212890625001,-14.414453125],[32.05449218750002,-14.386523437500003],[32.19990234375001,-14.3408203125],[32.27285156250002,-14.323046875],[32.55322265625,-14.229589843750004],[32.87451171875,-14.122460937500009],[32.98710937500002,-14.0849609375],[33.201757812500006,-14.01337890625001],[33.24355468750002,-14.043066406250006],[33.38994140625002,-14.289453125],[33.50527343750002,-14.43408203125],[33.63642578125001,-14.568164062500003],[33.658300781250006,-14.561621093750006],[33.69609375000001,-14.5302734375],[33.76142578125001,-14.517285156250011],[33.969824218750006,-14.487109375],[34.0494140625,-14.48525390625001],[34.10185546875002,-14.449316406250004],[34.20878906250002,-14.423730468750009],[34.33251953125,-14.40859375],[34.375,-14.424804687499998],[34.50527343750002,-14.598144531249998],[34.52412109375001,-14.730761718750003],[34.55117187500002,-14.92236328125],[34.5576171875,-15.015917968750003],[34.55546875000002,-15.140917968750005],[34.54082031250002,-15.297265625],[34.434960937500016,-15.477148437500006],[34.41474609375001,-15.566796875],[34.358007812500006,-15.70527343750001],[34.28300781250002,-15.7734375],[34.24609375,-15.829394531250005],[34.24824218750001,-15.8875],[34.28828125000001,-15.936132812500006],[34.3759765625,-16.023730468750003],[34.40302734375001,-16.08027343750001],[34.395117187500006,-16.130859375],[34.3955078125,-16.19921875],[34.41640625000002,-16.24677734375001],[34.441308593750016,-16.2744140625],[34.528125,-16.319140625],[34.61269531250002,-16.43154296875001],[34.7587890625,-16.56708984375001],[34.93339843750002,-16.760351562500006],[35.01533203125001,-16.81953125],[35.07988281250002,-16.83388671875001],[35.11210937500002,-16.898535156250006],[35.09423828125,-16.97382812500001],[35.0439453125,-17.016894531250003],[35.06464843750001,-17.07861328125],[35.09306640625002,-17.1109375],[35.124609375,-17.12724609375],[35.20136718750001,-17.13105468750001],[35.272558593750006,-17.118457031250003],[35.29042968750002,-17.096972656250003],[35.28115234375002,-16.80781250000001],[35.22978515625002,-16.639257812500006],[35.1783203125,-16.573339843750006],[35.16718750000001,-16.56025390625001],[35.18525390625001,-16.5048828125],[35.2427734375,-16.375390625],[35.29150390625,-16.247167968750006],[35.322460937500004,-16.193164062500003],[35.358496093750006,-16.160546875],[35.59931640625001,-16.12587890625001],[35.70888671875002,-16.095800781250006],[35.75527343750002,-16.058300781250008],[35.79121093750001,-15.958691406250011],[35.819921875,-15.680371093750011],[35.83027343750001,-15.418945312499998],[35.80537109375001,-15.265625],[35.839941406250006,-15.03466796875],[35.89277343750001,-14.891796875000011],[35.86669921875,-14.86376953125],[35.84716796875,-14.670898437499998],[35.6904296875,-14.465527343750011],[35.48847656250001,-14.201074218750007],[35.37578125000002,-14.058691406250006],[35.247460937500016,-13.896875],[35.01386718750001,-13.643457031250009],[34.906835937500006,-13.551660156250009],[34.85048828125002,-13.516015625],[34.66162109375,-13.48671875],[34.61152343750001,-13.437890625],[34.56367187500001,-13.36015625],[34.54570312500002,-13.21630859375],[34.542578125,-13.108691406250001],[34.52128906250001,-12.92578125],[34.48291015625,-12.666796875],[34.4658203125,-12.590722656250009],[34.412109375,-12.395898437500009],[34.36083984374999,-12.210546875],[34.357812500000016,-12.16474609375001],[34.3759765625,-12.120214843750006],[34.462890625,-11.983789062500009],[34.52480468750002,-11.887011718750003],[34.55390625000001,-11.834082031250006],[34.60625,-11.690039062500006],[34.618554687500016,-11.620214843750006],[34.65957031250002,-11.588671875],[34.82656250000002,-11.57568359375],[34.95947265624999,-11.578125],[35.1826171875,-11.574804687500006],[35.41826171875002,-11.583203125000011],[35.45136718750001,-11.58955078125001],[35.50439453125,-11.604785156250003],[35.56435546875002,-11.60234375],[35.630957031250006,-11.58203125],[35.7046875,-11.532128906250009],[35.78544921875001,-11.452929687500003],[35.91132812500001,-11.4546875],[36.08222656250001,-11.537304687500011],[36.17548828125001,-11.609277343750007],[36.19130859375002,-11.670703125],[36.3056640625,-11.706347656250003],[36.518652343750006,-11.716210937500007],[36.673828125,-11.684277343750011],[36.77109375,-11.6103515625],[36.87265625,-11.5712890625],[36.97890625000002,-11.566992187500006],[37.059179687500006,-11.5921875],[37.113867187500006,-11.64716796875001],[37.218359375,-11.6865234375],[37.37285156250002,-11.71044921875],[37.54169921875001,-11.675097656250003],[37.72480468750001,-11.580664062500006],[37.82929687500001,-11.481933593749998],[37.855078125,-11.379101562500011],[37.885351562500006,-11.316699218750003],[37.92021484375002,-11.294726562500003],[38.01728515625001,-11.282128906250007],[38.17656250000002,-11.278710937500009],[38.31513671875001,-11.311132812500006],[38.491796875,-11.413281250000011],[38.60332031250002,-11.3453125],[38.79472656250002,-11.22890625],[38.9875,-11.167285156250003],[39.17099609375,-11.166894531250009],[39.32158203125002,-11.122558593749998],[39.439160156250004,-11.034570312500009],[39.56347656249999,-10.978515625],[39.694433593750006,-10.954785156250011],[39.81708984375001,-10.912402343750001],[39.98867187500002,-10.82080078125],[40.16621093750001,-10.6875],[40.34746093750002,-10.5515625],[40.46357421875001,-10.46435546875],[40.516699218750006,-10.5673828125],[40.61171875000002,-10.661523437500009],[40.555078125000016,-10.716210937500009],[40.48662109375002,-10.76513671875],[40.59716796875,-10.830664062500006],[40.51611328125,-10.929589843750009],[40.50625,-10.9984375],[40.52685546875,-11.025390625],[40.54453125,-11.065625],[40.49140625000001,-11.17890625000001],[40.420996093750006,-11.265625],[40.40283203125,-11.33203125],[40.46513671875002,-11.44941406250001],[40.43310546875,-11.657324218750006],[40.49355468750002,-11.844433593750011],[40.51044921875001,-11.9404296875],[40.53154296875002,-12.004589843750011],[40.50146484375,-12.119433593750003],[40.50917968750002,-12.312890625],[40.52314453125001,-12.392773437500011],[40.48710937500002,-12.4921875],[40.54833984375,-12.526562500000011],[40.58085937500002,-12.635546875],[40.57207031250002,-12.758398437500004],[40.553320312500006,-12.824609375],[40.44765625000002,-12.90478515625],[40.43515625,-12.9359375],[40.43681640625002,-12.983105468750011],[40.56875,-12.984667968750001],[40.5732421875,-13.057714843750004],[40.56445312499999,-13.115234375],[40.56953125000001,-13.2234375],[40.55195312500001,-13.29375],[40.582910156250016,-13.3740234375],[40.54511718750001,-13.462890625],[40.558203125,-13.531445312500011],[40.55986328125002,-13.620312500000011],[40.59052734375001,-13.845019531250003],[40.595703125,-14.122851562500003],[40.60253906249999,-14.167382812500009],[40.649511718750006,-14.198828125],[40.715625,-14.214453125],[40.71308593750001,-14.290625],[40.63994140625002,-14.390039062500009],[40.63554687500002,-14.45185546875001],[40.64609375,-14.538671875],[40.726660156250006,-14.420703125],[40.775,-14.421289062500009],[40.81816406250002,-14.467578125],[40.812109375,-14.535546875],[40.82695312500002,-14.569042968750011],[40.82060546875002,-14.634960937500011],[40.84453125000002,-14.718652343750009],[40.83515625,-14.79150390625],[40.775976562500006,-14.842480468750011],[40.70068359375,-14.929785156250006],[40.68740234375002,-15.011621093750009],[40.6943359375,-15.065234375],[40.6421875,-15.082421875],[40.617773437500006,-15.115527343750003],[40.653125,-15.192675781250003],[40.650976562500006,-15.260937500000011],[40.558984375000016,-15.4734375],[40.31386718750002,-15.763964843750003],[40.2080078125,-15.867089843750009],[40.10878906250002,-15.979296875],[40.10888671874999,-16.02529296875001],[40.09921875,-16.065332031250005],[39.98359375000001,-16.22548828125001],[39.85976562500002,-16.251757812500003],[39.79091796875002,-16.29453125],[39.84462890625002,-16.435644531250006],[39.76455078125002,-16.46816406250001],[39.62539062500002,-16.579394531250003],[39.242285156250006,-16.792578125],[39.181738281250006,-16.84199218750001],[39.084375,-16.97285156250001],[38.95605468749999,-17.00458984375001],[38.884765625,-17.041601562500006],[38.75761718750002,-17.055175781249996],[38.71328125000002,-17.045703125],[38.669921875,-17.05029296875],[38.63330078124999,-17.078320312500008],[38.38076171875002,-17.17011718750001],[38.14492187500002,-17.242773437500006],[38.0869140625,-17.275976562500006],[38.04824218750002,-17.321386718750006],[37.839453125,-17.393164062500006],[37.512304687500006,-17.570703125],[37.244531250000016,-17.73994140625001],[37.05058593750002,-17.909277343750002],[36.99951171874999,-17.93496093750001],[36.93935546875002,-17.99345703125],[36.91923828125002,-18.080078125],[36.89960937500001,-18.129003906250006],[36.75615234375001,-18.30732421875001],[36.540136718750006,-18.518164062500006],[36.498046875,-18.57578125],[36.41220703125,-18.69296875],[36.40371093750002,-18.76972656250001],[36.327246093750006,-18.79316406250001],[36.26289062500001,-18.71962890625001],[36.23564453125002,-18.861328125],[36.183203125,-18.871386718750003],[36.125,-18.842382812500006],[35.980078125,-18.9125],[35.85371093750001,-18.99335937500001],[35.651269531250016,-19.163867187500003],[35.365332031250006,-19.493945312500003],[34.947851562500006,-19.81269531250001],[34.890820312500004,-19.82177734375],[34.85234375000002,-19.82050781250001],[34.72099609375002,-19.709570312500006],[34.64941406249999,-19.70136718750001],[34.713476562500006,-19.7671875],[34.75576171875002,-19.821972656250008],[34.745019531250016,-19.929492187500003],[34.75,-20.0908203125],[34.69814453125002,-20.404394531250006],[34.70507812499999,-20.473046875],[34.764746093750006,-20.56191406250001],[34.87705078125,-20.67080078125001],[34.98232421875002,-20.80625],[35.11757812500002,-21.19521484375001],[35.128027343750006,-21.3953125],[35.267675781250006,-21.650976562500006],[35.27294921875,-21.76171875],[35.32929687500001,-22.037402343750003],[35.32558593750002,-22.260351562500006],[35.31572265625002,-22.396875],[35.38300781250001,-22.45458984375],[35.4078125,-22.40253906250001],[35.40087890625,-22.316210937500003],[35.41884765625002,-22.17763671875001],[35.45634765625002,-22.11591796875001],[35.49375,-22.12470703125001],[35.50488281249999,-22.19013671875001],[35.53007812500002,-22.248144531250002],[35.54023437500001,-22.30263671875001],[35.5419921875,-22.3765625],[35.490234375,-22.65771484375],[35.50576171875002,-22.772070312500002],[35.57539062500001,-22.96308593750001],[35.49443359375001,-23.18515625],[35.376953125,-23.7078125],[35.37041015625001,-23.79824218750001],[35.39882812500002,-23.8376953125],[35.46210937500001,-23.851074218749996],[35.4853515625,-23.784472656250003],[35.5224609375,-23.784960937500003],[35.5419921875,-23.82441406250001],[35.48964843750002,-24.065527343750006],[35.438085937500006,-24.17119140625],[35.2548828125,-24.430273437500006],[35.15595703125001,-24.54140625],[34.99208984375002,-24.650585937500008],[34.60732421875002,-24.8212890625],[33.836035156250006,-25.06796875],[33.53007812500002,-25.18886718750001],[33.34746093750002,-25.26093750000001],[32.96113281250001,-25.49042968750001],[32.79218750000001,-25.644335937500003],[32.72255859375002,-25.820898437500006],[32.655859375,-25.90175781250001],[32.590429687500006,-26.004101562500008],[32.6474609375,-26.091992187500008],[32.70351562500002,-26.158496093750003],[32.769628906250006,-26.20302734375001],[32.80390625000001,-26.24140625],[32.84882812500001,-26.26806640625],[32.89404296875,-26.1298828125],[32.916406250000016,-26.0869140625],[32.95488281250002,-26.08359375],[32.93359375,-26.25234375],[32.88916015624999,-26.83046875],[32.88613281250002,-26.84931640625001]],[[34.6416015625,-12.013671875],[34.62421875000001,-11.984765625],[34.59140625,-11.97109375],[34.55400390625002,-11.982226562500003],[34.541601562500006,-12.018652343750006],[34.58046875000002,-12.065820312500007],[34.62177734375001,-12.066601562500011],[34.6416015625,-12.013671875]],[[34.719335937500006,-12.110644531250003],[34.74599609375002,-12.08837890625],[34.75625,-12.05908203125],[34.755957031250006,-12.03076171875],[34.738964843750004,-12.013085937500009],[34.714941406250006,-12.002734375],[34.67988281250001,-12.008886718750004],[34.66748046875,-12.047558593750011],[34.66210937499999,-12.100781250000011],[34.684179687500006,-12.11865234375],[34.719335937500006,-12.110644531250003]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mauritania","sov_a3":"MRT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mauritania","adm0_a3":"MRT","geou_dif":0,"geounit":"Mauritania","gu_a3":"MRT","su_dif":0,"subunit":"Mauritania","su_a3":"MRT","brk_diff":0,"name":"Mauritania","name_long":"Mauritania","brk_a3":"MRT","brk_name":"Mauritania","brk_group":null,"abbrev":"Mrt.","postal":"MR","formal_en":"Islamic Republic of Mauritania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mauritania","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":2,"mapcolor13":1,"pop_est":3129486,"gdp_md_est":6308,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MR","iso_a3":"MRT","iso_n3":"478","un_a3":"478","wb_a2":"MR","wb_a3":"MRT","woe_id":-99,"adm0_a3_is":"MRT","adm0_a3_us":"MRT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MRT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-16.373339843749985,19.706445312499994],[-16.437548828124932,19.609277343749994],[-16.465966796874937,19.64638671875002],[-16.477001953124983,19.71035156249999],[-16.420166015624943,19.80195312500001],[-16.393261718749955,19.84926757812505],[-16.343652343749994,19.86621093750003],[-16.373339843749985,19.706445312499994]]],[[[-6.16879882812492,21.28554687499999],[-6.140332031249982,21.036865234375057],[-6.111816406249943,20.788183593750006],[-6.083398437499937,20.539501953124983],[-6.054882812499983,20.290869140625034],[-6.02641601562496,20.0421875],[-5.997949218749937,19.793505859375045],[-5.969482421875,19.54487304687504],[-5.941015624999977,19.29619140624999],[-5.9125,19.04750976562505],[-5.884082031250017,18.798876953125017],[-5.855566406249976,18.550244140624983],[-5.827099609374955,18.301562500000045],[-5.798632812500016,18.05292968750001],[-5.770166015624966,17.804248046875074],[-5.741699218749942,17.555566406250023],[-5.713183593750017,17.306884765625],[-5.684765624999983,17.058251953124966],[-5.65625,16.80957031250003],[-5.628662109375028,16.568652343750045],[-5.50961914062492,16.442041015625023],[-5.359912109374989,16.282861328124994],[-5.403564453124999,16.057910156250017],[-5.455615234374932,15.789404296875006],[-5.5125,15.496289062499983],[-5.723876953124972,15.496289062499983],[-5.927832031249949,15.496289062499983],[-6.131787109374926,15.496240234374964],[-6.335742187500017,15.496191406250063],[-6.539648437499977,15.496191406250063],[-6.743603515624955,15.496191406250063],[-6.94755859374996,15.496191406250063],[-7.151513671874937,15.496191406250063],[-7.35546875,15.496191406250063],[-7.559375,15.496142578125045],[-7.763378906249982,15.496142578125045],[-7.967285156249943,15.496142578125045],[-8.17124023437492,15.496142578125045],[-8.375195312499926,15.496142578125045],[-8.579150390624989,15.496142578125045],[-8.783105468749966,15.496093750000027],[-8.987060546874972,15.496093750000027],[-9.176806640624989,15.496093750000027],[-9.293701171875,15.502832031249994],[-9.335449218749972,15.525683593750017],[-9.350585937499941,15.677392578125023],[-9.38535156249992,15.667626953124993],[-9.4265625,15.623046875000057],[-9.447705078124926,15.574853515624994],[-9.440332031249937,15.51166992187501],[-9.446923828124937,15.458203124999955],[-9.577832031249955,15.437255859375027],[-9.755078124999926,15.401464843750034],[-9.941406249999972,15.373779296874984],[-10.129541015625023,15.383691406249964],[-10.19375,15.396044921874989],[-10.262109374999937,15.416015624999972],[-10.411816406249955,15.437939453125011],[-10.493164062500028,15.439794921875034],[-10.586572265624937,15.43486328124999],[-10.696582031249989,15.42265625],[-10.731982421874989,15.394921875000037],[-10.815087890624966,15.28173828124997],[-10.895605468749949,15.150488281249975],[-10.948242187499998,15.151123046875014],[-11.007421874999977,15.222900390624986],[-11.169335937500023,15.358642578125014],[-11.365625,15.536767578124964],[-11.455224609374994,15.62539062499999],[-11.502685546874972,15.636816406250006],[-11.59672851562496,15.573242187500027],[-11.675878906249919,15.512060546875006],[-11.760156249999937,15.425537109375057],[-11.7984375,15.342724609374969],[-11.828759765624966,15.244873046875014],[-11.842236328124955,15.129394531250028],[-11.872851562499989,14.995166015625031],[-11.94091796875,14.886914062500011],[-12.02158203124992,14.804931640625],[-12.08154296874997,14.766357421875055],[-12.104687499999955,14.74536132812504],[-12.28061523437492,14.80903320312504],[-12.30253906249996,14.816992187499975],[-12.40869140625,14.889013671874991],[-12.459863281249937,14.97465820312503],[-12.543554687499949,15.039013671874997],[-12.659619140624955,15.082080078124974],[-12.735253906249993,15.13125],[-12.7703125,15.186669921874966],[-12.813183593749983,15.223535156250021],[-12.858496093749977,15.242529296874977],[-12.862646484374919,15.262402343750038],[-12.851904296874949,15.289648437499991],[-12.862695312499937,15.340429687500034],[-12.930859374999983,15.453027343749966],[-12.994335937499926,15.504882812500055],[-13.048535156249955,15.496630859375045],[-13.079296874999926,15.510449218750038],[-13.097900390624972,15.535253906250032],[-13.105273437499987,15.57177734375],[-13.142382812499989,15.603320312500044],[-13.206445312499994,15.616894531249953],[-13.258007812499926,15.700390625000011],[-13.297021484374966,15.853857421875006],[-13.347558593749966,15.973486328125034],[-13.409667968749998,16.059179687500006],[-13.4541015625,16.091113281250017],[-13.486962890624937,16.097021484374977],[-13.498144531249975,16.11030273437501],[-13.506982421875023,16.13520507812504],[-13.555517578124949,16.144042968749968],[-13.623535156249943,16.118310546874966],[-13.684667968749977,16.12690429687504],[-13.714941406249919,16.168798828125034],[-13.756640624999989,16.172509765624994],[-13.809814453124972,16.138037109374977],[-13.86845703124993,16.148144531250008],[-13.932617187499943,16.202880859375057],[-13.968164062499994,16.257226562500023],[-13.975048828124983,16.311132812500006],[-14.085644531249955,16.418847656249994],[-14.300097656249932,16.58027343750001],[-14.533740234374932,16.655957031249983],[-14.786718749999947,16.64589843749999],[-14.928613281249993,16.65351562500001],[-14.959521484374989,16.678906249999955],[-14.990625,16.67690429687499],[-15.02192382812501,16.64746093750003],[-15.05522460937496,16.640966796875034],[-15.09057617187497,16.657373046875023],[-15.112646484374919,16.64492187500005],[-15.121435546874947,16.603613281249977],[-15.210546874999975,16.582617187500063],[-15.379980468749949,16.58198242187501],[-15.516699218750006,16.556591796874983],[-15.620800781249983,16.50659179687503],[-15.768212890624996,16.485107421875],[-15.958984374999943,16.49213867187501],[-16.074023437499932,16.51044921875001],[-16.113281249999943,16.540136718750006],[-16.168359374999966,16.54707031250001],[-16.23901367187497,16.53129882812499],[-16.30229492187499,16.45131835937505],[-16.358105468749983,16.30717773437499],[-16.404345703124985,16.224902343750017],[-16.44101562499992,16.20454101562504],[-16.480078124999977,16.097216796875017],[-16.50205078124992,15.91733398437506],[-16.53525390624995,15.838378906250055],[-16.53574218749995,16.28681640625001],[-16.48129882812495,16.454248046875023],[-16.463623046875,16.60151367187501],[-16.34667968749997,16.926416015625023],[-16.207470703124955,17.192578124999983],[-16.07890625,17.54584960937501],[-16.030322265625014,17.887939453124968],[-16.046728515624977,18.223144531250053],[-16.084960937499943,18.52119140625001],[-16.15009765624998,18.71816406249999],[-16.213085937499926,19.003320312500023],[-16.305908203125025,19.15380859375003],[-16.476171874999977,19.285058593750023],[-16.514453124999957,19.361962890624994],[-16.474804687499955,19.390625],[-16.371289062499926,19.410253906250063],[-16.305273437499974,19.51264648437504],[-16.44487304687499,19.47314453124997],[-16.283398437499955,19.787158203125017],[-16.23320312499996,20.000976562500057],[-16.241162109374983,20.14125976562502],[-16.21044921875003,20.22792968750002],[-16.333740234375,20.415869140625006],[-16.42978515624995,20.652343750000053],[-16.479199218749983,20.689794921875034],[-16.530419921875023,20.70952148437507],[-16.534912109374943,20.654003906250036],[-16.562695312499923,20.604150390624994],[-16.622509765624955,20.63417968749999],[-16.72836914062492,20.806152343750025],[-16.876074218749917,21.086132812499955],[-16.92792968750001,21.114794921875045],[-16.971142578124926,21.076464843750045],[-16.998242187499926,21.039697265625023],[-17.04804687499995,20.806152343750025],[-17.06396484375,20.89882812499999],[-17.042382812499966,21.00800781250004],[-17.00590820312499,21.142431640624977],[-16.96455078125001,21.329248046875023],[-16.83632812499999,21.329394531250045],[-16.60703125,21.329638671875017],[-16.377734374999985,21.329931640624977],[-16.1484375,21.33022460937505],[-15.91914062500001,21.33046875],[-15.689794921875006,21.330761718749983],[-15.460546874999922,21.33105468750003],[-15.231201171875,21.331298828125],[-15.001904296874924,21.331591796875042],[-14.772607421875023,21.331884765625034],[-14.543261718750019,21.332128906249977],[-14.313964843750028,21.33242187500005],[-14.084667968749924,21.33271484375001],[-13.855371093749936,21.332958984374983],[-13.626025390624932,21.333251953125025],[-13.396728515624943,21.333544921875014],[-13.167431640624926,21.333789062500074],[-13.016210937499949,21.33393554687501],[-13.025097656249983,21.466796874999968],[-13.032226562500028,21.572070312500014],[-13.041748046875,21.71381835937504],[-13.051220703124983,21.85478515625007],[-13.060644531249947,21.995751953124994],[-13.069580078124998,22.12817382812497],[-13.07846679687492,22.26044921875001],[-13.086767578124949,22.383251953124983],[-13.094335937499977,22.49599609375005],[-13.107324218749937,22.56074218750001],[-13.15595703125001,22.689306640625006],[-13.166503906250028,22.753222656250045],[-13.153271484374983,22.820507812499983],[-13.12089843749996,22.884082031250074],[-13.031494140624943,23.000244140625],[-12.895996093749972,23.089550781250008],[-12.739599609375006,23.19272460937506],[-12.62041015624996,23.271337890625002],[-12.559375,23.290820312500045],[-12.372900390624977,23.318017578124994],[-12.226171874999949,23.377490234375045],[-12.083349609374977,23.43544921875002],[-12.023437499999943,23.467578125000017],[-12.016308593749983,23.57646484374999],[-12.016308593749983,23.697900390625023],[-12.016308593749983,23.834033203125045],[-12.016308593749983,23.97021484375],[-12.016308593749983,24.106347656250023],[-12.016308593749983,24.242480468750045],[-12.016308593749983,24.378662109375],[-12.016308593749983,24.514794921875023],[-12.016308593749983,24.650976562500034],[-12.016308593749983,24.78710937499997],[-12.016308593749983,24.923242187499994],[-12.016308593749983,25.059375],[-12.016308593749983,25.19555664062497],[-12.016308593749983,25.331689453124994],[-12.016308593749983,25.467871093750034],[-12.016308593749983,25.604003906250057],[-12.016308593749983,25.740136718749994],[-12.016308593749983,25.876318359375006],[-12.016308593749983,25.995410156250017],[-11.866650390624955,25.995410156250017],[-11.680371093749955,25.995410156250017],[-11.494042968749994,25.995410156250017],[-11.307714843749949,25.995410156250017],[-11.121386718749932,25.995458984375034],[-10.935107421874989,25.995458984375034],[-10.748779296874943,25.995458984375034],[-10.562451171874926,25.995458984375034],[-10.376123046874966,25.995458984375034],[-10.189794921874947,25.995458984375034],[-10.00351562499992,25.995458984375034],[-9.8171875,25.995458984375034],[-9.630859374999943,25.995507812500048],[-9.444531249999981,25.995507812500048],[-9.258203124999966,25.995507812500048],[-9.071923828124937,25.995507812500048],[-8.885644531249994,25.995507812500048],[-8.682226562499947,25.995507812500048],[-8.68212890625,26.109472656250006],[-8.68212890625,26.273193359375053],[-8.682324218749955,26.49770507812505],[-8.682617187500028,26.723144531250057],[-8.682861328124972,26.92133789062501],[-8.683105468749943,27.119287109375023],[-8.683349609375,27.285937500000045],[-8.495312499999955,27.17534179687499],[-8.307275390624936,27.064746093750017],[-8.119238281250006,26.954150390625045],[-7.931152343749972,26.84355468749999],[-7.743115234374925,26.732958984375017],[-7.55507812499999,26.622363281250045],[-7.36699218749996,26.51176757812499],[-7.178906249999926,26.401171875000017],[-6.990869140624965,26.290576171875042],[-6.802832031249949,26.179980468749957],[-6.61474609375,26.069433593750002],[-6.426708984374983,25.958789062500017],[-6.238671874999937,25.848193359375042],[-6.050585937499989,25.737597656249985],[-5.862548828124972,25.627001953125017],[-5.674511718749954,25.516406250000045],[-5.516943359375006,25.423779296875008],[-5.275,25.274511718749977],[-5.049511718749983,25.135449218749983],[-4.822607421874949,24.99560546875],[-5.172900390624989,24.995410156250045],[-5.640771484374994,24.99516601562499],[-5.959814453124976,24.994970703125063],[-6.287207031249977,24.994824218750008],[-6.594091796874977,24.99462890624997],[-6.567382812499943,24.76679687500001],[-6.538964843749937,24.518164062499977],[-6.510449218749983,24.269482421874955],[-6.482031249999977,24.020800781250014],[-6.453515624999937,23.772167968749983],[-6.425048828125,23.523486328125014],[-6.396582031249976,23.274804687499994],[-6.368115234374926,23.026123046875057],[-6.339648437499989,22.777490234375023],[-6.311132812499977,22.528857421874985],[-6.282714843749942,22.28017578125005],[-6.254199218749989,22.031542968750017],[-6.225732421874966,21.782861328124966],[-6.197265624999942,21.53417968750003],[-6.16879882812492,21.28554687499999]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Namibia","sov_a3":"NAM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Namibia","adm0_a3":"NAM","geou_dif":0,"geounit":"Namibia","gu_a3":"NAM","su_dif":0,"subunit":"Namibia","su_a3":"NAM","brk_diff":0,"name":"Namibia","name_long":"Namibia","brk_a3":"NAM","brk_name":"Namibia","brk_group":null,"abbrev":"Nam.","postal":"NA","formal_en":"Republic of Namibia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Namibia","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":1,"mapcolor13":7,"pop_est":2108665,"gdp_md_est":13250,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NA","iso_a3":"NAM","iso_n3":"516","un_a3":"516","wb_a2":"NA","wb_a3":"NAM","woe_id":-99,"adm0_a3_is":"NAM","adm0_a3_us":"NAM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NAM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[23.380664062500017,-17.640625],[23.59492187500001,-17.599414062500003],[23.79921875000002,-17.56015625],[24.036914062500017,-17.52089843750001],[24.227148437500006,-17.489550781250003],[24.27490234375,-17.481054687500006],[24.73291015625,-17.51777343750001],[24.932421875000017,-17.54345703125],[25.001757812500017,-17.56855468750001],[25.092187500000023,-17.634375],[25.2587890625,-17.793554687500006],[25.21601562500001,-17.78759765625],[24.90908203125002,-17.821386718750006],[24.79218750000001,-17.86464843750001],[24.530566406250017,-18.052734375],[24.474902343750017,-18.02851562500001],[24.412207031250002,-17.989453125],[24.358984375,-17.97822265625001],[24.243945312500017,-18.0234375],[24.129296875000023,-18.077539062500005],[24.002636718750008,-18.154101562500003],[23.898339843750023,-18.22919921875001],[23.8642578125,-18.26953125],[23.700488281250017,-18.42431640625],[23.64716796875001,-18.44941406250001],[23.599707031250002,-18.4599609375],[23.58056640625,-18.452929687500003],[23.56015625,-18.38642578125001],[23.459765625000017,-18.231054687500006],[23.298632812500017,-18.02734375],[23.2515625,-18.00751953125001],[23.219335937500006,-17.99970703125001],[23.099902343750017,-18.009570312500003],[22.752734375000017,-18.0671875],[22.460058593750002,-18.11572265625],[22.01142578125001,-18.19863281250001],[21.529687500000023,-18.265625],[21.232519531250002,-18.30683593750001],[20.97412109375,-18.31884765625],[20.97431640625001,-18.5205078125],[20.975,-18.928515625],[20.9755859375,-19.33642578125],[20.976171875,-19.74433593750001],[20.976855468750017,-20.15234375],[20.977441406250023,-20.56025390625001],[20.978125,-20.96816406250001],[20.97871093750001,-21.376074218750006],[20.979296875000017,-21.78408203125001],[20.9794921875,-21.9619140625],[20.970996093750017,-22.00019531250001],[20.82275390625,-22.00019531250001],[20.4875,-22.00019531250001],[20.205371093750017,-22.00019531250001],[19.977343750000017,-22.00019531250001],[19.977636718750006,-22.242578125],[19.977929687500023,-22.529296875],[19.978222656250008,-22.81591796875],[19.978515625,-23.1025390625],[19.978906250000023,-23.389160156249996],[19.979296875000017,-23.67578125],[19.979589843750006,-23.962402343749996],[19.97988281250002,-24.249023437499996],[19.980175781250008,-24.535742187500006],[19.98046875,-24.751953125],[19.98046875,-24.77675781250001],[19.98046875,-25.19677734375],[19.98046875,-25.6416015625],[19.98046875,-26.086328125],[19.98046875,-26.53115234375001],[19.98046875,-26.97597656250001],[19.98046875,-27.420703125],[19.98046875,-27.865527343750003],[19.98046875,-28.310351562500003],[19.98046875,-28.451269531250006],[19.877832031250023,-28.44941406250001],[19.671484375,-28.50390625],[19.539843750000017,-28.574609375],[19.48291015625,-28.66162109375],[19.4072265625,-28.714453125],[19.31269531250001,-28.73330078125001],[19.27099609375,-28.777734375000012],[19.2822265625,-28.84794921875],[19.24580078125001,-28.901660156250003],[19.16171875,-28.93876953125],[19.02607421875001,-28.927929687500008],[18.838769531250023,-28.869140625],[18.600390625000017,-28.8552734375],[18.310839843750017,-28.886230468749996],[18.102734375,-28.871679687500006],[17.97607421875,-28.811328125],[17.841601562500017,-28.776953125],[17.699316406250006,-28.768359375],[17.616796875,-28.74306640625001],[17.44794921875001,-28.698144531250005],[17.41572265625001,-28.62109375],[17.395898437500023,-28.56269531250001],[17.347851562500008,-28.50117187500001],[17.342578125000017,-28.45166015625],[17.380273437500023,-28.41396484375001],[17.3857421875,-28.35322265625001],[17.358691406250017,-28.269433593750005],[17.31201171875,-28.228613281250006],[17.24580078125001,-28.230859375],[17.20458984375,-28.198828125],[17.1884765625,-28.13251953125001],[17.149414062499996,-28.08222656250001],[17.05625,-28.0310546875],[16.93330078125001,-28.06962890625],[16.875292968750017,-28.127929687499996],[16.841210937500023,-28.21894531250001],[16.81015625,-28.26455078125001],[16.79453125,-28.3408203125],[16.7875,-28.39472656250001],[16.755761718750023,-28.4521484375],[16.72304687500002,-28.47548828125001],[16.689453125,-28.464941406250006],[16.62617187500001,-28.487890625],[16.487109375000017,-28.572851562500006],[16.447558593750017,-28.617578125],[16.335058593750006,-28.53652343750001],[16.007128906250017,-28.231738281250003],[15.890917968750017,-28.15253906250001],[15.719042968750015,-27.9658203125],[15.34150390625001,-27.386523437500003],[15.28759765625,-27.275],[15.215722656250023,-26.9951171875],[15.1328125,-26.78759765625],[15.12373046875001,-26.667871093750005],[15.163281250000011,-26.600195312500006],[15.139062500000023,-26.50800781250001],[15.096582031250023,-26.42578125],[14.967773437499998,-26.31806640625001],[14.93125,-25.95820312500001],[14.84521484375,-25.725683593750006],[14.863671875000023,-25.53359375],[14.822558593750015,-25.35859375],[14.818554687500011,-25.246386718750003],[14.83710937500001,-25.033203125],[14.767968750000021,-24.787988281250005],[14.627929687499998,-24.548046875],[14.5015625,-24.201953125],[14.4833984375,-24.050390625],[14.496875,-23.642871093750003],[14.472460937500015,-23.476660156250006],[14.47382812500001,-23.28115234375001],[14.423828125,-23.07861328125],[14.403320312499998,-22.968066406250003],[14.4384765625,-22.88056640625001],[14.459277343750015,-22.908203125],[14.495703125,-22.92138671875],[14.519921875000021,-22.80517578125],[14.525976562500004,-22.70253906250001],[14.462792968750025,-22.44912109375001],[14.321875,-22.18994140625],[13.973242187500006,-21.767578125],[13.888085937500023,-21.60664062500001],[13.83935546875,-21.473242187500006],[13.450585937500021,-20.91669921875001],[13.284375,-20.52392578125],[13.168359375000021,-20.184667968750002],[13.042089843750006,-20.02822265625001],[12.458203125000011,-18.9267578125],[12.328710937500006,-18.751074218750006],[12.095703125,-18.54091796875001],[12.041210937500011,-18.470703125],[11.951367187500011,-18.2705078125],[11.775878906249998,-18.001757812500003],[11.733496093750006,-17.7509765625],[11.7216796875,-17.466796875],[11.743066406250021,-17.24921875000001],[11.902539062500011,-17.2265625],[12.013964843750017,-17.168554687500006],[12.114355468750006,-17.16455078125],[12.21337890625,-17.2099609375],[12.318457031250006,-17.213378906249996],[12.359277343750023,-17.205859375],[12.548144531250017,-17.212695312500003],[12.656542968750017,-17.160546875],[12.78515625,-17.108203125],[12.859277343750021,-17.062597656250002],[12.963183593750015,-17.015429687500003],[13.101171875,-16.96767578125001],[13.179492187500017,-16.9716796875],[13.275683593750017,-16.989550781250003],[13.403710937500023,-17.0078125],[13.475976562500023,-17.0400390625],[13.561718750000011,-17.141210937500006],[13.6943359375,-17.233496093750002],[13.7919921875,-17.288378906250003],[13.904199218750023,-17.36074218750001],[13.93798828125,-17.388769531250006],[13.987402343750006,-17.40419921875001],[14.017480468750023,-17.40888671875001],[14.225878906250017,-17.397753906250003],[14.414746093750011,-17.3876953125],[14.617968750000015,-17.387988281250003],[15.000585937500004,-17.38857421875001],[15.383203125000023,-17.38916015625],[15.765820312500011,-17.3896484375],[16.1484375,-17.390234375],[16.531054687500017,-17.39082031250001],[16.913671875,-17.39140625],[17.296289062500023,-17.39199218750001],[17.678808593750006,-17.392578125],[17.835351562500023,-17.392773437500008],[18.10878906250002,-17.39599609375],[18.396386718750023,-17.399414062499996],[18.428222656249996,-17.40517578125001],[18.460351562500023,-17.424609375],[18.486621093750017,-17.44277343750001],[18.588183593750017,-17.57001953125001],[18.718066406250017,-17.703222656250006],[18.825976562500017,-17.76630859375001],[18.95527343750001,-17.803515625],[19.076464843750014,-17.817675781250003],[19.189453125,-17.80849609375001],[19.377148437500008,-17.825488281250003],[19.63935546875001,-17.86865234375],[19.911816406250008,-17.88134765625],[20.194335937499996,-17.863671875],[20.392968750000023,-17.88740234375001],[20.507617187500017,-17.95253906250001],[20.625097656250002,-17.996679687500006],[20.74550781250002,-18.01972656250001],[20.908300781250006,-18.00605468750001],[21.113476562500008,-17.95576171875001],[21.287890625000017,-17.962988281250006],[21.36875,-17.99951171875],[21.41689453125002,-18.00068359375001],[21.71845703125001,-17.94775390625],[21.960839843750023,-17.90517578125001],[22.32421875,-17.8375],[22.6240234375,-17.781640625],[23.068261718750023,-17.698828125],[23.380664062500017,-17.640625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Niger","sov_a3":"NER","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Niger","adm0_a3":"NER","geou_dif":0,"geounit":"Niger","gu_a3":"NER","su_dif":0,"subunit":"Niger","su_a3":"NER","brk_diff":0,"name":"Niger","name_long":"Niger","brk_a3":"NER","brk_name":"Niger","brk_group":null,"abbrev":"Niger","postal":"NE","formal_en":"Republic of Niger","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Niger","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":3,"mapcolor13":13,"pop_est":15306252,"gdp_md_est":10040,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"NE","iso_a3":"NER","iso_n3":"562","un_a3":"562","wb_a2":"NE","wb_a3":"NER","woe_id":-99,"adm0_a3_is":"NER","adm0_a3_us":"NER","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"NER.geojson"},"geometry":{"type":"Polygon","coordinates":[[[14.979003906250002,22.99619140624999],[15.088964843750007,22.41835937499999],[15.172265625000021,21.922070312499997],[15.177832031250006,21.60581054687499],[15.181835937500011,21.523388671874997],[15.215820312499998,21.467431640624994],[15.293652343750011,21.411523437499994],[15.607324218750023,20.954394531250003],[15.540332031250017,20.874902343749994],[15.587109375000011,20.733300781249994],[15.66845703125,20.67236328125],[15.929296875,20.399853515624997],[15.963183593750019,20.346191406249996],[15.948828125,20.303173828124994],[15.766210937500004,19.982568359374994],[15.73505859375001,19.904052734375],[15.698632812500021,19.49521484374999],[15.672949218750006,19.206787109375],[15.637597656250023,18.810839843750003],[15.595507812500017,18.337060546874994],[15.5615234375,17.937255859374996],[15.516699218750006,17.408496093750003],[15.47431640625001,16.908398437499994],[15.212109375000011,16.63388671874999],[14.746679687500007,16.14663085937499],[14.367968750000017,15.750146484374994],[14.17822265625,15.48476562499999],[13.80712890625,14.966113281250003],[13.642382812500017,14.630761718749994],[13.513671875,14.455517578124997],[13.448242187499998,14.380664062500003],[13.505761718750023,14.134423828124994],[13.606347656250023,13.70458984375],[13.426953125000011,13.701757812499991],[13.323828125,13.670849609374997],[13.19384765625,13.573046875],[13.0484375,13.53452148437499],[12.871679687500004,13.449023437500003],[12.759960937500011,13.38037109375],[12.654785156249998,13.3265625],[12.510156250000023,13.1943359375],[12.463183593750017,13.09375],[12.319042968750011,13.073681640624997],[12.117968750000017,13.090429687499991],[11.990039062500017,13.19179687499999],[11.693359375,13.297705078124991],[11.501074218750006,13.340527343749997],[11.411914062500017,13.353613281249991],[10.958886718750023,13.371533203124997],[10.475878906250017,13.330224609374994],[10.229589843750004,13.281005859375],[10.184667968750004,13.270117187499991],[10.045117187500011,13.206152343749991],[9.929296875,13.13525390625],[9.615917968750011,12.81064453124999],[9.201562500000021,12.821484375],[8.957617187500006,12.857470703124989],[8.750585937500006,12.908154296874997],[8.4560546875,13.059667968749991],[8.095019531250017,13.291162109374993],[7.955761718750011,13.32275390625],[7.830468750000022,13.34091796874999],[7.788671875,13.337890625],[7.357812500000023,13.107177734374998],[7.274707031250016,13.112255859374997],[7.173046875000011,13.08632812499999],[7.106054687500006,13.029101562499989],[7.056738281250006,13.000195312499997],[7.005078125000011,12.995556640624997],[6.937207031250011,13.00820312499999],[6.870605468749999,13.043261718749987],[6.804296875,13.107666015625],[6.6265625,13.3642578125],[6.589941406250006,13.409130859374995],[6.514062500000023,13.485400390625003],[6.386328125,13.603613281249991],[6.2998046875,13.658789062499991],[6.247167968750006,13.672998046874993],[6.18427734375001,13.66367187499999],[5.838183593750016,13.765380859375],[5.491992187500017,13.872851562500003],[5.415820312500017,13.859179687500001],[5.361621093750017,13.836865234374995],[5.241894531250011,13.757226562499994],[5.100878906250017,13.742724609375001],[4.921679687500017,13.749121093749991],[4.823339843750005,13.759765625],[4.664843750000017,13.733203125],[4.559472656250023,13.701806640624993],[4.42138671875,13.647509765625001],[4.2421875,13.501074218749991],[4.190820312500023,13.482128906249997],[4.147558593750006,13.457714843749997],[4.087402343749999,13.055468749999989],[4.038769531250011,12.93466796874999],[3.947851562500006,12.775048828124994],[3.769238281250011,12.622167968749991],[3.646679687500011,12.529980468749997],[3.643847656250017,12.4052734375],[3.634179687500023,12.201611328124997],[3.632519531250011,12.061572265624989],[3.640625,11.970361328124994],[3.6201171875,11.926953125],[3.61181640625,11.887304687499991],[3.618457031250017,11.82773437499999],[3.647363281250023,11.799658203124991],[3.664746093750011,11.762451171875],[3.653125,11.731835937499994],[3.595410156250011,11.6962890625],[3.53173828125,11.78745117187499],[3.449804687500005,11.85195312499999],[3.359960937500005,11.88046875],[3.299121093750017,11.927148437499994],[3.267382812500017,11.991894531249997],[3.149609375000011,12.118066406249994],[2.878125,12.367724609374989],[2.850195312500006,12.373681640624994],[2.805273437500006,12.383837890624989],[2.728515625,12.353613281249991],[2.681347656250011,12.312792968749989],[2.6484375,12.296777343749993],[2.598437500000017,12.294335937499994],[2.469335937500005,12.262792968749991],[2.366015625000017,12.221923828125],[2.36328125,12.188427734374997],[2.412695312500006,11.999316406249989],[2.38916015625,11.897070312499991],[2.343359375,11.945996093749997],[2.194433593750006,12.136474609375],[2.09140625,12.277978515624994],[2.072949218750011,12.309375],[2.058398437500017,12.357958984374987],[2.068554687500011,12.379150390625],[2.109375,12.393847656249989],[2.203808593750011,12.41259765625],[2.221386718750011,12.42724609375],[2.226269531250011,12.466064453125],[2.211523437500006,12.538427734374991],[2.159765625,12.636425781249997],[2.104589843750006,12.701269531249991],[2.073828125,12.713964843749991],[2.017382812500017,12.716210937499994],[1.956152343750006,12.70742187499999],[1.840917968750006,12.627880859374997],[1.789843750000017,12.61328125],[1.671093750000011,12.619824218749997],[1.56494140625,12.635400390624994],[1.50048828125,12.676464843749997],[1.308691406250006,12.834277343749989],[1.096777343750005,13.001123046874994],[1.007910156250006,13.024804687499994],[0.9873046875,13.041894531249994],[0.973046875000023,13.170361328124997],[0.976757812500011,13.324511718750001],[0.988476562500011,13.36484375],[1.076855468750011,13.340771484374995],[1.1708984375,13.329589843749998],[1.201171875,13.357519531249991],[1.1259765625,13.412353515625],[1.017871093750017,13.467871093749991],[0.977734375000011,13.551953125],[0.946582031250017,13.581152343749991],[0.89794921875,13.6109375],[0.84228515625,13.626416015624997],[0.786035156250023,13.650048828124994],[0.747753906250011,13.674511718749995],[0.6845703125,13.685400390624991],[0.6181640625,13.703417968750003],[0.522363281250023,13.839746093749993],[0.42919921875,13.972119140624997],[0.3740234375,14.076367187499995],[0.354882812500023,14.139013671874991],[0.382519531250011,14.245800781249997],[0.354589843750006,14.288037109374995],[0.250585937500006,14.396435546874995],[0.163867187500017,14.497216796874993],[0.18505859375,14.65292968749999],[0.202734375,14.7828125],[0.203808593750011,14.865039062500005],[0.217480468750011,14.911474609374991],[0.228710937500011,14.963671875],[0.286230468750006,14.980175781249997],[0.433007812500023,14.979003906250002],[0.718652343750023,14.954882812500005],[0.947460937500011,14.982128906249997],[0.960058593750006,14.98691406249999],[1.121289062500011,15.126123046874993],[1.300195312500023,15.272265625],[1.569140625000017,15.286474609374991],[1.859375,15.301708984374997],[2.088183593750017,15.309375],[2.420800781250023,15.32041015624999],[2.689648437500011,15.329882812500003],[3.001074218750006,15.340966796874994],[3.010546875000017,15.40830078124999],[3.029394531250006,15.424853515625003],[3.06015625,15.427197265624995],[3.2890625,15.391113281249998],[3.504296875000022,15.356347656249993],[3.5205078125,15.483105468749997],[3.709570312500006,15.641699218749991],[3.816503906250006,15.674023437499995],[3.842968750000011,15.701708984375001],[3.876953125,15.755273437499994],[3.89794921875,15.83798828124999],[3.9072265625,15.89682617187499],[3.947070312500017,15.94565429687499],[3.976171875,16.03554687499999],[4.01484375000001,16.19272460937499],[4.121289062500011,16.357714843750003],[4.18212890625,16.581787109375],[4.191210937500017,16.79819335937499],[4.202929687500017,16.9626953125],[4.234667968750017,16.996386718750003],[4.233691406250017,17.28842773437499],[4.232714843750017,17.582177734374994],[4.23193359375,17.830517578124997],[4.230859375000023,18.139453125],[4.22998046875,18.410595703124994],[4.22900390625,18.704345703125],[4.228222656250011,18.968066406250003],[4.227636718750006,19.142773437499997],[4.445703125000023,19.184521484374997],[4.671289062500023,19.227783203125],[5.001367187500022,19.291064453125003],[5.358691406250016,19.359521484374994],[5.748339843750017,19.434228515624994],[5.836621093750011,19.479150390624994],[6.130664062500016,19.731982421875003],[6.26337890625001,19.846142578124997],[6.527050781250011,20.072949218749997],[6.73066406250001,20.248046875],[6.989355468750006,20.470507812500003],[7.26337890625001,20.694482421874994],[7.481738281250017,20.873095703125003],[7.825195312500001,21.075585937499994],[8.343066406250017,21.380859375],[8.8609375,21.68613281249999],[9.378710937500017,21.99140625],[9.896484375,22.29672851562499],[10.414355468750017,22.602001953124994],[10.932226562500006,22.907275390625003],[11.45,23.212597656249994],[11.967871093750006,23.517871093750003],[12.48876953125,23.40166015625],[12.983593750000011,23.291259765625],[13.48125,23.18017578125],[13.5986328125,23.11953125],[13.862695312500023,22.902099609375],[14.20068359375,22.623730468749997],[14.21552734375001,22.619677734375003],[14.230761718750017,22.618457031250003],[14.5556640625,22.782519531250003],[14.978906250000023,22.996289062499994],[14.979003906250002,22.99619140624999]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Nigeria","sov_a3":"NGA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nigeria","adm0_a3":"NGA","geou_dif":0,"geounit":"Nigeria","gu_a3":"NGA","su_dif":0,"subunit":"Nigeria","su_a3":"NGA","brk_diff":0,"name":"Nigeria","name_long":"Nigeria","brk_a3":"NGA","brk_name":"Nigeria","brk_group":null,"abbrev":"Nigeria","postal":"NG","formal_en":"Federal Republic of Nigeria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nigeria","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":2,"pop_est":149229090,"gdp_md_est":335400,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NG","iso_a3":"NGA","iso_n3":"566","un_a3":"566","wb_a2":"NG","wb_a3":"NGA","woe_id":-99,"adm0_a3_is":"NGA","adm0_a3_us":"NGA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"NGA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[7.30078125,4.418164062500026],[7.203906250000045,4.387646484375026],[7.140429687500017,4.395117187500034],[7.227343750000045,4.527343749999972],[7.271386718750051,4.498925781250051],[7.327929687500017,4.487207031249966],[7.30078125,4.418164062500026]]],[[[5.838183593749989,13.765380859375057],[6.184277343750068,13.66367187500002],[6.247167968750006,13.672998046874966],[6.2998046875,13.658789062500006],[6.386328125000034,13.603613281250048],[6.514062500000023,13.485400390625031],[6.589941406250034,13.40913085937504],[6.626562500000034,13.364257812500043],[6.804296875,13.107666015625],[6.870605468749999,13.043261718750017],[6.937207031249983,13.00820312499998],[7.005078125000039,12.995556640624983],[7.056738281250006,13.00019531250004],[7.106054687500006,13.029101562499974],[7.173046875000068,13.08632812499999],[7.274707031250016,13.112255859375038],[7.357812500000051,13.107177734374986],[7.788671875,13.337890625],[7.83046875000008,13.34091796874999],[7.955761718750011,13.322753906250028],[8.095019531250045,13.291162109374978],[8.456054687499972,13.059667968749991],[8.750585937500034,12.908154296875026],[8.957617187500034,12.857470703125003],[9.20156250000008,12.82148437500004],[9.615917968750011,12.810644531249963],[9.929296875,13.135253906250014],[10.045117187500068,13.206152343749991],[10.184667968750063,13.270117187499963],[10.229589843749977,13.281005859375043],[10.475878906250074,13.330224609375037],[10.958886718750051,13.371533203125011],[11.411914062500074,13.353613281250006],[11.501074218750032,13.340527343750011],[11.693359375000028,13.297705078124991],[11.990039062500074,13.19179687499999],[12.117968750000017,13.090429687500034],[12.31904296875004,13.073681640624997],[12.463183593750017,13.09375],[12.51015625000008,13.194335937499972],[12.654785156250057,13.3265625],[12.759960937499983,13.380371093750043],[12.871679687500004,13.449023437499989],[13.04843750000006,13.534521484375004],[13.19384765625,13.573046875000031],[13.323828125000034,13.670849609374983],[13.426953125000068,13.701757812499963],[13.606347656250023,13.704589843750014],[13.763476562500074,13.489550781249989],[13.932324218750011,13.258496093749995],[14.063964843749998,13.078515625],[14.160058593750023,12.612792968749986],[14.17031250000008,12.524072265625023],[14.177636718750051,12.484082031250054],[14.184863281250017,12.447216796874997],[14.197460937500011,12.383789062500043],[14.272851562500021,12.356494140624989],[14.415429687500021,12.344140624999966],[14.518945312500051,12.298242187500023],[14.58095703125008,12.222070312499966],[14.587011718750063,12.209423828125054],[14.619726562500063,12.150976562500048],[14.627148437500068,12.108691406249958],[14.618164062500028,11.98662109374996],[14.597363281250038,11.829833984374986],[14.561816406250074,11.728710937499997],[14.581640625000032,11.591162109375034],[14.575390625000011,11.532421874999969],[14.559765625000011,11.492285156249963],[14.496093750000028,11.446142578124977],[14.409472656250045,11.401171874999974],[14.20234375000004,11.268164062499963],[14.143261718750068,11.248535156250043],[14.056738281250034,11.245019531250037],[13.981445312500057,11.21186523437504],[13.892089843750055,11.140087890624983],[13.699902343749981,10.873144531250048],[13.53535156250004,10.605078124999963],[13.478515625,10.383251953124981],[13.414550781250028,10.171435546874987],[13.269921875000051,10.036181640624974],[13.249804687500045,9.960058593750006],[13.24375,9.91591796874998],[13.238769531250027,9.814013671875003],[13.22119140625,9.64516601562498],[13.198730468750028,9.563769531250003],[13.175488281250011,9.539648437499977],[13.019433593749994,9.488330078125003],[12.929492187500074,9.426269531249972],[12.87568359375004,9.303515625000017],[12.85595703125,9.170751953124963],[12.824414062500068,9.019433593750051],[12.80654296875008,8.886621093749994],[12.7822265625,8.817871093750014],[12.731152343750068,8.74565429687496],[12.651562500000011,8.667773437499989],[12.58271484375004,8.624121093749977],[12.40351562500004,8.59555664062502],[12.311328125000072,8.419726562499989],[12.2333984375,8.282324218749977],[12.231152343749983,8.227392578124977],[12.15595703125004,7.942480468750019],[12.025195312500045,7.727783203124985],[12.016601562499972,7.652001953124993],[12.016015625000051,7.589746093750009],[11.852441406250023,7.400732421874963],[11.809179687500006,7.345068359374991],[11.767382812500017,7.272265624999989],[11.808593750000057,7.201953124999974],[11.854785156250045,7.137988281249989],[11.861425781249977,7.11640625000004],[11.787011718750023,7.056201171875031],[11.657519531250017,6.951562500000022],[11.580078125000057,6.88886718750004],[11.562988281250028,6.854638671874994],[11.551660156250021,6.697265625],[11.529101562500045,6.655029296875014],[11.477539062500028,6.597412109374999],[11.401757812500051,6.533935546875028],[11.324609375000051,6.48466796875003],[11.237304687500028,6.450537109375006],[11.153320312500057,6.437939453125011],[11.1064453125,6.457714843750053],[11.079687500000063,6.505517578125023],[11.032519531250045,6.697900390625037],[11.00869140625008,6.739111328125006],[10.954199218750006,6.7765625],[10.846484375000072,6.881787109375026],[10.737597656250017,6.988281250000043],[10.60625,7.063085937500006],[10.578125,7.057714843749977],[10.55634765625004,7.037451171875034],[10.519042968749972,6.930468749999989],[10.482324218750051,6.891259765624994],[10.413183593750006,6.877734375],[10.293066406250034,6.876757812499974],[10.205468750000051,6.891601562499986],[10.185546874999972,6.91279296875004],[10.167773437500017,6.959179687499983],[10.143554687500057,6.99643554687502],[10.038867187500045,6.921386718750013],[9.874218750000068,6.803271484375017],[9.82070312500008,6.783935546874985],[9.779882812500034,6.760156250000023],[9.725585937499972,6.65],[9.659960937500017,6.531982421874986],[9.574023437500017,6.470410156249969],[9.490234375,6.418652343749997],[9.442187500000074,6.373388671875006],[9.373339843750074,6.319628906249989],[9.23876953125,6.186132812499963],[9.060156250000034,6.009082031250045],[8.997167968750006,5.917724609375],[8.935058593750057,5.781005859375028],[8.898828125000023,5.629687500000016],[8.859179687500045,5.463769531249966],[8.800976562499983,5.197460937499983],[8.715625,5.046875],[8.640527343750078,4.927001953125043],[8.585156249999983,4.832812500000031],[8.555859375000068,4.755224609375034],[8.54375,4.757812500000028],[8.514843750000068,4.724707031250034],[8.431347656250011,4.74624023437498],[8.393652343750063,4.813769531249974],[8.342089843750045,4.824755859374989],[8.252734375000045,4.92397460937505],[8.23378906250008,4.907470703124972],[8.328027343750021,4.656103515625006],[8.293066406250006,4.557617187500014],[8.028515625000011,4.555371093749997],[7.800781250000056,4.522265625],[7.644238281250067,4.525341796875011],[7.565625,4.5609375],[7.530761718750028,4.655175781249994],[7.517382812500074,4.645458984374968],[7.509472656250039,4.594921874999983],[7.459863281250079,4.555224609374974],[7.284375,4.547656250000031],[7.20673828125001,4.612060546875],[7.143847656250074,4.684082031250028],[7.076562500000051,4.716162109374991],[7.086914062500028,4.685839843750031],[7.164160156250033,4.615576171875006],[7.15468750000008,4.514404296875],[7.013378906250068,4.397314453125048],[6.92324218750008,4.390673828125017],[6.867871093750068,4.441113281249997],[6.839160156249989,4.523486328124988],[6.82470703125,4.645263671875014],[6.787597656250057,4.724707031250034],[6.767675781250006,4.724707031250034],[6.786035156250023,4.652001953124965],[6.79218750000001,4.592626953125047],[6.793066406250034,4.469140625000023],[6.860351562500057,4.373339843750045],[6.757031250000068,4.343554687500017],[6.715136718750045,4.342431640624965],[6.633007812500011,4.340234375000051],[6.617285156250006,4.37578125],[6.6015625,4.45517578125002],[6.579980468750051,4.475976562499994],[6.554589843750023,4.34140625000002],[6.5,4.331933593750051],[6.462109375000011,4.333154296875023],[6.2998046875,4.303857421875009],[6.263671875,4.309423828124991],[6.255957031250034,4.334472656250028],[6.275292968750051,4.371679687499977],[6.270996093749972,4.432128906250028],[6.214648437500045,4.385498046875028],[6.205566406250057,4.29228515624996],[6.173339843749971,4.277392578125031],[6.07656250000008,4.290625],[5.970703125,4.338574218749983],[5.906445312500039,4.38774414062496],[5.798632812500016,4.455957031249994],[5.587792968750051,4.647216796874972],[5.553613281250022,4.733203124999989],[5.493261718749977,4.838769531250008],[5.448144531250023,4.945849609374974],[5.383300781250057,5.129003906249976],[5.403222656250023,5.142285156250026],[5.452148437500057,5.126562500000019],[5.475976562500023,5.153857421874989],[5.38828125,5.17377929687504],[5.370019531250023,5.195019531250026],[5.364160156250051,5.259277343750057],[5.367968750000045,5.337744140624963],[5.439257812499988,5.365332031249991],[5.500878906250023,5.378613281250026],[5.531835937500033,5.426367187499991],[5.549707031250023,5.474218749999963],[5.385839843750034,5.401757812500037],[5.232421875000057,5.483789062499966],[5.199218750000028,5.533544921874977],[5.215820312500028,5.571679687500023],[5.289062500000028,5.577490234375048],[5.393847656250074,5.574511718749974],[5.456640624999977,5.61171875],[5.418066406250034,5.624707031249983],[5.350292968749983,5.623291015625057],[5.325292968750063,5.647949218750013],[5.32734375000001,5.707519531249986],[5.305371093750068,5.694335937500043],[5.276269531250023,5.64155273437504],[5.1728515625,5.602734375000039],[5.112402343750034,5.64155273437504],[5.10625,5.728125],[5.093066406250074,5.767089843750043],[5.042089843750006,5.797509765625023],[4.861035156250068,6.026318359374997],[4.633593749999988,6.2171875],[4.431347656250011,6.348583984375026],[4.125878906250023,6.411376953125028],[3.486621093750017,6.408935546874972],[3.450781249999977,6.427050781250017],[3.489941406250068,6.457275390625043],[3.54609375000004,6.47744140624998],[3.751660156250011,6.583837890624991],[3.71699218750004,6.597949218750017],[3.503320312500023,6.531347656250034],[3.430175781250057,6.525],[3.335546875000063,6.396923828125011],[2.7724609375,6.375732421875042],[2.706445312500051,6.369238281249962],[2.7080078125,6.427685546874969],[2.735644531250045,6.595703125],[2.753710937499989,6.661767578124966],[2.774609374999983,6.711718750000016],[2.752929687500028,6.771630859374966],[2.731738281250045,6.852832031249989],[2.721386718750068,6.980273437500017],[2.74775390625004,7.019824218749989],[2.75673828125008,7.067919921875017],[2.750585937500063,7.143212890624994],[2.750488281250057,7.39506835937496],[2.765820312500068,7.42250976562505],[2.783984375000045,7.443408203125045],[2.78515625,7.476855468750016],[2.750976562500056,7.541894531250036],[2.719335937500006,7.616259765625003],[2.72041015625004,7.723095703124996],[2.707714843750039,7.82661132812504],[2.686035156250056,7.873730468750054],[2.702343750000011,8.049804687500043],[2.711523437500006,8.272998046875031],[2.703125,8.371826171875],[2.7236328125,8.441894531249986],[2.734667968750017,8.614013671875057],[2.732910156250028,8.782519531250001],[2.774804687500023,9.048535156250026],[2.898046875,9.061376953124977],[3.044921875,9.08383789062502],[3.110449218750034,9.188281249999989],[3.148046875000034,9.320605468750031],[3.136132812500023,9.451611328124983],[3.164648437500063,9.49467773437496],[3.223437500000045,9.565625],[3.329492187500051,9.667041015625003],[3.325195312499972,9.778466796875051],[3.3544921875,9.812792968750031],[3.404785156250028,9.83862304687504],[3.476757812500039,9.851904296875006],[3.557226562500005,9.907324218750006],[3.60205078125,10.004541015625009],[3.645898437500051,10.16015625],[3.576562500000023,10.268359375000017],[3.577929687500045,10.292480468750057],[3.604101562500062,10.350683593750006],[3.646582031250005,10.408984374999989],[3.680273437500034,10.427783203124989],[3.758496093750068,10.412695312500034],[3.771777343750017,10.417626953124966],[3.783789062500062,10.435888671875048],[3.83447265625,10.607421875],[3.8296875,10.653759765625026],[3.7568359375,10.76875],[3.744921875000045,10.850439453125034],[3.734179687500073,10.971923828124998],[3.71640625,11.07958984375],[3.695312499999971,11.120312500000038],[3.65625,11.154589843750003],[3.63886718750004,11.176855468750006],[3.487792968749971,11.395410156250037],[3.490527343750017,11.499218750000054],[3.55390625000004,11.631884765624987],[3.595410156250068,11.696289062500057],[3.653125,11.731835937500009],[3.664746093750068,11.762451171875028],[3.647363281250079,11.799658203124977],[3.618457031250045,11.827734375],[3.611816406250028,11.887304687499977],[3.620117187500028,11.926953124999969],[3.640625,11.970361328125023],[3.632519531250068,12.061572265625045],[3.634179687500051,12.201611328124969],[3.643847656250073,12.405273437499986],[3.646679687500011,12.529980468749983],[3.76923828125004,12.622167968750034],[3.947851562500006,12.775048828124994],[4.03876953125004,12.934667968750004],[4.087402343749999,13.055468750000017],[4.147558593750006,13.457714843749983],[4.190820312500023,13.482128906249983],[4.242187500000028,13.501074218750034],[4.421386718750028,13.647509765625015],[4.55947265625008,13.70180664062498],[4.664843750000045,13.733203124999974],[4.823339843750005,13.759765624999972],[4.921679687500074,13.74912109375002],[5.100878906250074,13.74272460937506],[5.241894531250011,13.757226562499994],[5.361621093750073,13.836865234375054],[5.415820312500017,13.859179687499974],[5.491992187500074,13.872851562500003],[5.838183593749989,13.765380859375057]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Malawi","sov_a3":"MWI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malawi","adm0_a3":"MWI","geou_dif":0,"geounit":"Malawi","gu_a3":"MWI","su_dif":0,"subunit":"Malawi","su_a3":"MWI","brk_diff":0,"name":"Malawi","name_long":"Malawi","brk_a3":"MWI","brk_name":"Malawi","brk_group":null,"abbrev":"Mal.","postal":"MW","formal_en":"Republic of Malawi","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malawi","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":4,"mapcolor13":5,"pop_est":14268711,"gdp_md_est":11810,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MW","iso_a3":"MWI","iso_n3":"454","un_a3":"454","wb_a2":"MW","wb_a3":"MWI","woe_id":-99,"adm0_a3_is":"MWI","adm0_a3_us":"MWI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MWI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[34.71933593750006,-12.110644531249989],[34.68417968750006,-12.118652343750014],[34.66210937500003,-12.100781250000011],[34.66748046874997,-12.047558593750011],[34.6798828125001,-12.008886718750032],[34.714941406250006,-12.002734375000031],[34.73896484375004,-12.013085937500009],[34.75595703125006,-12.030761718749957],[34.75625,-12.059082031249956],[34.74599609375005,-12.088378906249972],[34.71933593750006,-12.110644531249989]]],[[[34.64160156250003,-12.013671874999943],[34.62177734375004,-12.066601562499983],[34.58046875,-12.065820312499993],[34.541601562500055,-12.018652343749977],[34.55400390625002,-11.982226562500017],[34.59140625,-11.97109375],[34.62421875000004,-11.984765625],[34.64160156250003,-12.013671874999943]]],[[[33.330859375000074,-9.519140624999963],[33.42089843750003,-9.608007812500034],[33.46777343749997,-9.61972656250002],[33.52753906250004,-9.60751953125002],[33.69765625,-9.598144531249972],[33.766210937500006,-9.6109375],[33.8541992187501,-9.662988281249952],[33.88886718750004,-9.670117187499981],[33.943945312500006,-9.67216796874996],[33.953710937500006,-9.658203124999957],[33.959375,-9.62734375],[33.94960937499999,-9.565332031249952],[33.96210937500004,-9.531738281249943],[33.99560546875003,-9.495410156250003],[34.08857421875004,-9.537792968750026],[34.32089843750006,-9.731542968749977],[34.32783203125004,-9.756542968750011],[34.475976562499994,-9.948828125],[34.524218750000074,-10.03017578124998],[34.524218750000074,-10.073144531250023],[34.56992187500006,-10.241113281249966],[34.57998046874999,-10.319824218750014],[34.569726562500044,-10.379687499999944],[34.571582031250074,-10.427636718750037],[34.58955078125004,-10.496191406249963],[34.58359375,-10.525097656249997],[34.63652343750002,-10.625585937499949],[34.66181640625004,-10.71005859375002],[34.66708984375006,-10.792480468750028],[34.65234374999997,-10.87285156249996],[34.60566406250004,-10.990234374999986],[34.59765625000003,-11.0375],[34.60791015624997,-11.08046875],[34.638085937499994,-11.127148437499997],[34.68847656249997,-11.177441406250026],[34.726464843749994,-11.238183593749964],[34.75214843750004,-11.309472656250009],[34.77382812500005,-11.341699218750009],[34.80087890625006,-11.34091796875002],[34.85058593749997,-11.351953124999966],[34.890625,-11.3935546875],[34.93701171874997,-11.463476562500034],[34.952636718749964,-11.54375],[34.95947265625003,-11.578125],[34.82656250000005,-11.575683593749972],[34.659570312500044,-11.58867187499996],[34.61855468750005,-11.620214843749991],[34.60625,-11.690039062500006],[34.5539062500001,-11.834082031249949],[34.524804687499994,-11.887011718749989],[34.46289062500003,-11.98378906249998],[34.37597656249997,-12.120214843749977],[34.3578125,-12.164746093749995],[34.36083984375003,-12.21054687499999],[34.41210937499997,-12.395898437500009],[34.46582031249997,-12.590722656249994],[34.48291015625003,-12.666796874999958],[34.52128906250001,-12.925781249999957],[34.542578125,-13.108691406250001],[34.54570312500002,-13.21630859375],[34.56367187500003,-13.360156249999989],[34.6115234375001,-13.437890625000021],[34.66162109375003,-13.486718750000023],[34.85048828125005,-13.516015625000035],[34.90683593750006,-13.551660156250009],[35.0138671875001,-13.64345703124998],[35.247460937499994,-13.896875],[35.37578125000002,-14.05869140625002],[35.48847656250004,-14.201074218749978],[35.690429687499964,-14.465527343750026],[35.84716796875002,-14.670898437500043],[35.86669921875003,-14.863769531249984],[35.8927734375001,-14.891796875000011],[35.839941406250006,-15.034667968749986],[35.80537109375004,-15.265625],[35.83027343750004,-15.418945312500027],[35.819921875,-15.680371093749995],[35.79121093750009,-15.958691406250024],[35.75527343750005,-16.058300781249983],[35.70888671874999,-16.095800781249974],[35.5993164062501,-16.12587890624998],[35.35849609375006,-16.16054687500002],[35.3224609375001,-16.193164062500017],[35.29150390624997,-16.247167968750006],[35.2427734375,-16.375390625],[35.1852539062501,-16.504882812500014],[35.16718750000004,-16.56025390625001],[35.1783203125,-16.57333984375002],[35.22978515625002,-16.63925781250003],[35.281152343749994,-16.8078125],[35.29042968750005,-17.096972656250017],[35.27255859375006,-17.11845703124996],[35.2013671875001,-17.13105468750004],[35.124609375,-17.12724609374997],[35.093066406250074,-17.11093750000002],[35.06464843750004,-17.078613281250014],[35.04394531250003,-17.016894531249957],[35.09423828125002,-16.973828124999983],[35.11210937500002,-16.898535156250006],[35.07988281250002,-16.83388671874998],[35.01533203125004,-16.81953124999998],[34.93339843750002,-16.760351562500006],[34.75878906249997,-16.56708984374998],[34.612695312499994,-16.431542968749994],[34.528125,-16.319140625],[34.441308593749994,-16.274414062499957],[34.41640625000005,-16.24677734375001],[34.39550781249997,-16.19921875],[34.39511718750006,-16.130859375000014],[34.4030273437501,-16.08027343750001],[34.37597656249997,-16.02373046874996],[34.28828125000004,-15.936132812499961],[34.2482421875001,-15.8875],[34.24609374999997,-15.829394531249974],[34.283007812500074,-15.773437500000028],[34.35800781250006,-15.705273437499997],[34.4147460937501,-15.566796875000035],[34.434960937499994,-15.477148437499975],[34.54082031250002,-15.297265625],[34.555468750000074,-15.140917968749958],[34.55761718749997,-15.015917968749989],[34.55117187499999,-14.922363281250016],[34.52412109375004,-14.730761718749974],[34.505273437500044,-14.598144531249957],[34.375,-14.424804687499998],[34.33251953125003,-14.40859375],[34.20878906250002,-14.423730468750037],[34.10185546875002,-14.44931640625002],[34.049414062500055,-14.485253906249964],[33.969824218750006,-14.487109374999987],[33.76142578125003,-14.517285156250011],[33.69609375000001,-14.530273437499984],[33.658300781250055,-14.561621093749977],[33.63642578125004,-14.568164062499974],[33.50527343750005,-14.434082031250012],[33.38994140625002,-14.289453125000037],[33.243554687500044,-14.043066406250034],[33.20175781250006,-14.013378906250024],[33.148046875,-13.94091796875],[33.103613281250006,-13.959179687499997],[33.04238281249999,-14.01005859374996],[33.00927734374997,-14.023730468750003],[32.99208984375005,-14.022167968750038],[32.98125,-14.009375],[32.96757812500002,-13.976855468750045],[32.9203125,-13.88388671875002],[32.86718750000003,-13.817382812499972],[32.81103515625003,-13.791601562499963],[32.76513671874997,-13.76103515625003],[32.78535156250004,-13.731445312499957],[32.80673828125006,-13.710253906249989],[32.797460937500006,-13.6884765625],[32.77177734375002,-13.656542968749974],[32.67207031250004,-13.610351562499986],[32.67041015624997,-13.590429687500006],[32.75839843750006,-13.55029296875],[32.8140625,-13.502734374999989],[32.85185546875007,-13.457031250000014],[32.899707031250074,-13.357031249999975],[32.93857421875006,-13.25742187500002],[32.96757812500002,-13.225],[32.97763671875006,-13.158886718750026],[32.97109375000005,-13.084277343750003],[32.99042968750004,-12.989453124999969],[33,-12.89960937500004],[32.97050781250002,-12.864746093749957],[32.94560546875007,-12.804394531250011],[32.97519531250006,-12.701367187499981],[33.021582031250006,-12.63046875000002],[33.24345703125002,-12.556542968749964],[33.39794921874997,-12.489843749999961],[33.43066406249997,-12.460449218750014],[33.48320312500002,-12.403417968750032],[33.51230468750006,-12.347753906249977],[33.4914062500001,-12.331054687499943],[33.370019531250044,-12.329687500000018],[33.340136718750074,-12.308300781250011],[33.252343750000044,-12.112597656250031],[33.3009765625001,-11.888183593749957],[33.30507812500005,-11.8],[33.3039062500001,-11.69082031249998],[33.2882812500001,-11.611132812500003],[33.25,-11.577636718750014],[33.226367187500074,-11.534863281250011],[33.23271484375002,-11.417675781250026],[33.26835937500001,-11.403906249999977],[33.34550781250001,-11.249121093749977],[33.379785156249994,-11.15791015625004],[33.338671875000074,-11.085156249999969],[33.29326171875002,-10.981152343749997],[33.27275390625002,-10.915039062499943],[33.261328125,-10.893359374999974],[33.29277343750002,-10.852343749999958],[33.34492187500009,-10.812695312499969],[33.403125,-10.801757812499957],[33.464746093749994,-10.78310546874998],[33.65908203125005,-10.590527343749997],[33.661523437499994,-10.553125],[33.6261718750001,-10.488574218750017],[33.55371093749997,-10.391308593750011],[33.53759765624997,-10.351562499999984],[33.52890625,-10.234667968749974],[33.500097656250055,-10.199707031249956],[33.39355468750003,-10.120898437499989],[33.31152343750003,-10.037988281249966],[33.3371093750001,-9.954003906249994],[33.350976562499994,-9.862207031250037],[33.310449218749994,-9.811816406249989],[33.25,-9.759570312500003],[33.212695312500074,-9.683007812500037],[33.19570312500005,-9.626171875],[33.148046875,-9.603515625],[33.10449218750003,-9.602636718750006],[33.0724609375001,-9.638183593749957],[33.03779296875004,-9.635058593749946],[32.99599609375005,-9.622851562499946],[32.98212890625004,-9.573632812499952],[32.97988281250005,-9.520312500000015],[32.95107421875005,-9.484179687500031],[32.92333984374997,-9.433984375000023],[32.91992187500003,-9.407421875000026],[32.937304687500074,-9.39970703124996],[32.97402343749999,-9.395019531249986],[33.13046875,-9.495898437500017],[33.22529296875004,-9.50048828124997],[33.330859375000074,-9.519140624999963]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Rwanda","sov_a3":"RWA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Rwanda","adm0_a3":"RWA","geou_dif":0,"geounit":"Rwanda","gu_a3":"RWA","su_dif":0,"subunit":"Rwanda","su_a3":"RWA","brk_diff":0,"name":"Rwanda","name_long":"Rwanda","brk_a3":"RWA","brk_name":"Rwanda","brk_group":null,"abbrev":"Rwa.","postal":"RW","formal_en":"Republic of Rwanda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Rwanda","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":3,"mapcolor13":10,"pop_est":10473282,"gdp_md_est":9706,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"RW","iso_a3":"RWA","iso_n3":"646","un_a3":"646","wb_a2":"RW","wb_a3":"RWA","woe_id":-99,"adm0_a3_is":"RWA","adm0_a3_us":"RWA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"RWA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[30.509960937500008,-1.067285156250009],[30.477050781249996,-1.0830078125],[30.47021484375,-1.131152343750003],[30.50810546875002,-1.208203125000011],[30.631933593750006,-1.367480468750003],[30.710742187500014,-1.396777343750003],[30.76220703125,-1.458691406250011],[30.812597656250002,-1.563085937500005],[30.827539062500023,-1.693652343750003],[30.806738281250006,-1.850683593750006],[30.819140625000017,-1.967480468750011],[30.864648437500023,-2.044042968750005],[30.8765625,-2.143359375],[30.85498046875,-2.265429687500003],[30.828710937500002,-2.338476562500006],[30.797656250000017,-2.362695312500009],[30.7625,-2.371679687500006],[30.71484375,-2.363476562500011],[30.656640625000023,-2.373828125],[30.593359375,-2.396777343750003],[30.55361328125002,-2.400097656250011],[30.52890625,-2.395605468750006],[30.482226562500017,-2.376074218750006],[30.408496093750014,-2.31298828125],[30.270996093749996,-2.347851562500011],[30.23378906250002,-2.347070312500008],[30.183300781250008,-2.377050781250006],[30.14228515625001,-2.413964843750009],[30.117285156250006,-2.416601562500006],[30.091894531250006,-2.411523437500009],[29.973437500000017,-2.337109375000011],[29.930175781250004,-2.339550781250011],[29.912402343750014,-2.548632812500003],[29.892578125,-2.664648437500006],[29.868164062500004,-2.71640625],[29.783398437500008,-2.76640625],[29.698046875000017,-2.794726562500002],[29.6513671875,-2.792773437500003],[29.463671875000017,-2.808398437500003],[29.390234375,-2.80859375],[29.34980468750001,-2.79150390625],[29.29707031250001,-2.673046875000011],[29.197558593750014,-2.620312500000011],[29.10205078125,-2.595703125],[29.063183593750008,-2.6025390625],[29.028613281250017,-2.66455078125],[29.01435546875001,-2.72021484375],[28.921777343750023,-2.68203125],[28.893945312500023,-2.635058593750003],[28.891406250000017,-2.555566406250008],[28.85761718750001,-2.446679687500009],[28.876367187500023,-2.400292968750009],[28.912695312500002,-2.370312500000011],[28.98955078125002,-2.312792968750003],[29.106445312499996,-2.233203125],[29.131542968750008,-2.195117187500003],[29.148046875,-2.1318359375],[29.140625,-1.984570312500011],[29.129394531249996,-1.860253906250008],[29.143261718750008,-1.816015625],[29.196582031250017,-1.719921875000011],[29.26816406250001,-1.62158203125],[29.351660156250006,-1.517578125],[29.401953125,-1.507421875],[29.467968750000015,-1.468066406250003],[29.537792968750008,-1.409765625],[29.576953125000014,-1.387890625000011],[29.609667968750014,-1.387109375],[29.825390625,-1.335546875],[29.846875,-1.351660156250006],[29.881640625000017,-1.451757812500005],[29.9,-1.46630859375],[29.93007812500002,-1.469921875000011],[29.99052734375002,-1.446972656250011],[30.1015625,-1.36865234375],[30.15,-1.32109375],[30.20703125,-1.254199218750003],[30.279882812500006,-1.178808593750006],[30.32050781250001,-1.113085937500003],[30.36025390625002,-1.074609375],[30.412304687500008,-1.063085937500005],[30.46992187500001,-1.066015625],[30.509960937500008,-1.067285156250009]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":7,"sovereignt":"Western Sahara","sov_a3":"SAH","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Western Sahara","adm0_a3":"SAH","geou_dif":0,"geounit":"Western Sahara","gu_a3":"SAH","su_dif":0,"subunit":"Western Sahara","su_a3":"SAH","brk_diff":1,"name":"W. Sahara","name_long":"Western Sahara","brk_a3":"B28","brk_name":"W. Sahara","brk_group":null,"abbrev":"W. Sah.","postal":"WS","formal_en":"Sahrawi Arab Democratic Republic","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Morocco","name_sort":"Western Sahara","name_alt":null,"mapcolor7":4,"mapcolor8":7,"mapcolor9":4,"mapcolor13":4,"pop_est":-99,"gdp_md_est":-99,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"EH","iso_a3":"ESH","iso_n3":"732","un_a3":"732","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"MAR","adm0_a3_us":"SAH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":9,"long_len":14,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"ESH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-8.683349609375,27.2859375],[-8.68310546875,27.119287109374994],[-8.682861328125,26.921337890624994],[-8.682617187499998,26.723144531249996],[-8.682324218749983,26.497705078124994],[-8.68212890625,26.273193359375],[-8.68212890625,26.10947265625],[-8.682226562499977,25.995507812499994],[-8.885644531249994,25.995507812499994],[-9.071923828124994,25.995507812499994],[-9.25820312499999,25.995507812499994],[-9.444531249999981,25.995507812499994],[-9.630859375,25.995507812499994],[-9.817187499999989,25.99545898437499],[-10.003515624999977,25.99545898437499],[-10.189794921874977,25.99545898437499],[-10.376123046874994,25.99545898437499],[-10.562451171874983,25.99545898437499],[-10.748779296875,25.99545898437499],[-10.935107421874989,25.99545898437499],[-11.121386718749989,25.99545898437499],[-11.307714843749977,25.99541015625],[-11.494042968749994,25.99541015625],[-11.680371093749983,25.99541015625],[-11.866650390624983,25.99541015625],[-12.016308593749983,25.99541015625],[-12.016308593749983,25.87631835937499],[-12.016308593749983,25.740136718749994],[-12.016308593749983,25.60400390625],[-12.016308593749983,25.46787109374999],[-12.016308593749983,25.331689453124994],[-12.016308593749983,25.195556640625],[-12.016308593749983,25.059375],[-12.016308593749983,24.923242187499994],[-12.016308593749983,24.787109375],[-12.016308593749983,24.65097656249999],[-12.016308593749983,24.514794921874994],[-12.016308593749983,24.378662109375],[-12.016308593749983,24.242480468750003],[-12.016308593749983,24.106347656249994],[-12.016308593749983,23.97021484375],[-12.016308593749983,23.834033203125003],[-12.016308593749983,23.697900390624994],[-12.016308593749983,23.576464843750003],[-12.0234375,23.467578125],[-12.083349609374977,23.43544921874999],[-12.226171874999977,23.377490234375003],[-12.372900390624977,23.318017578124994],[-12.559375,23.290820312500003],[-12.620410156249989,23.27133789062499],[-12.739599609374977,23.19272460937499],[-12.89599609375,23.089550781249997],[-13.031494140625,23.000244140625],[-13.120898437499989,22.88408203125],[-13.153271484374983,22.820507812499997],[-13.16650390625,22.753222656250003],[-13.155957031249983,22.68930664062499],[-13.107324218749993,22.560742187499997],[-13.094335937499977,22.495996093749994],[-13.086767578124977,22.383251953124997],[-13.078466796874977,22.260449218749997],[-13.069580078124998,22.128173828125],[-13.060644531249977,21.995751953124994],[-13.051220703124983,21.854785156250003],[-13.041748046875,21.713818359374997],[-13.032226562499998,21.572070312500003],[-13.025097656249983,21.466796875],[-13.016210937499977,21.333935546874994],[-13.167431640624981,21.333789062500003],[-13.396728515625,21.333544921875003],[-13.626025390624987,21.333251953124996],[-13.855371093749994,21.332958984374997],[-14.084667968749983,21.332714843749994],[-14.31396484375,21.33242187499999],[-14.543261718749989,21.33212890624999],[-14.772607421874994,21.33188476562499],[-15.001904296874983,21.331591796875003],[-15.231201171875,21.331298828125],[-15.460546874999975,21.3310546875],[-15.689794921874977,21.330761718749997],[-15.919140624999981,21.33046875],[-16.1484375,21.33022460937499],[-16.377734374999985,21.32993164062499],[-16.607031249999977,21.329638671875003],[-16.83632812499999,21.32939453125],[-16.964550781249983,21.329248046874994],[-17.00590820312499,21.14243164062499],[-17.042382812499994,21.008007812499997],[-17.06396484375,20.89882812499999],[-17.048046874999983,20.806152343749996],[-17.098779296874994,20.856884765624994],[-17.009619140624977,21.37709960937499],[-17.003076171874994,21.420703125],[-17.00297851562499,21.420751953124988],[-16.951123046874983,21.430273437499988],[-16.73095703125,21.4703125],[-16.58100585937498,21.48105468749999],[-16.190869140624983,21.48105468749999],[-16.041015625,21.50058593749999],[-15.920849609374983,21.50058593749999],[-15.750927734374981,21.49082031249999],[-15.610791015624983,21.4703125],[-15.4609375,21.45078125],[-15.290966796874981,21.45078125],[-15.15087890625,21.441015624999988],[-14.971142578124983,21.441015624999988],[-14.8408203125,21.45078125],[-14.7509765625,21.50058593749999],[-14.670849609374981,21.60019531249999],[-14.641113281250002,21.680273437499988],[-14.610791015624983,21.75058593749999],[-14.62109375,21.82089843749999],[-14.630859375,21.8609375],[-14.581005859374981,21.91074218749999],[-14.520996093749998,21.99086914062499],[-14.460888671874983,22.040625],[-14.44091796875,22.08066406249999],[-14.380810546874985,22.12070312499999],[-14.311035156249998,22.19101562499999],[-14.27099609375,22.240820312499988],[-14.221191406249998,22.31015625],[-14.2109375,22.37070312499999],[-14.190869140624981,22.45078125],[-14.190869140624981,22.59042968749999],[-14.170898437499998,22.760351562499988],[-14.141064453124983,22.87070312499999],[-14.12109375,22.96054687499999],[-14.10107421875,23.100195312499988],[-14.040966796874981,23.34042968749999],[-14.02099609375,23.41074218749999],[-13.980908203124983,23.52011718749999],[-13.931103515624983,23.62070312499999],[-13.89111328125,23.69101562499999],[-13.840771484374983,23.750585937499988],[-13.770947265624983,23.790625],[-13.661083984374983,23.83066406249999],[-13.5810546875,23.87070312499999],[-13.48095703125,23.910742187499988],[-13.39111328125,23.94101562499999],[-13.310986328124983,23.98105468749999],[-13.28076171875,24.02011718749999],[-13.23095703125,24.090429687499988],[-13.1611328125,24.2203125],[-13.12109375,24.30039062499999],[-13.061035156249998,24.40097656249999],[-12.991162109374981,24.4703125],[-12.947851562499977,24.497265625],[-12.9111328125,24.520117187499988],[-12.820751953124983,24.57089843749999],[-12.7109375,24.63046875],[-12.630810546874981,24.68027343749999],[-12.56103515625,24.73105468749999],[-12.5009765625,24.77011718749999],[-12.43115234375,24.83066406249999],[-12.40087890625,24.88046875],[-12.360839843749998,24.9703125],[-12.310986328124981,25.1109375],[-12.270947265624983,25.260302734375003],[-12.23095703125,25.420507812499988],[-12.201123046874983,25.52011718749999],[-12.170849609374983,25.64023437499999],[-12.130859375,25.73105468749999],[-12.101025390624983,25.83066406249999],[-12.0810546875,25.87070312499999],[-12.0810546875,25.92050781249999],[-12.060986328124983,25.99082031249999],[-12.056787109374994,25.996337890625],[-12.03076171875,26.030859375],[-11.960888671874983,26.050390625],[-11.880859375,26.0708984375],[-11.7548828125,26.0865234375],[-11.718212890624983,26.1041015625],[-11.69921875,26.1626953125],[-11.684521484374981,26.213476562499995],[-11.63720703125,26.2955078125],[-11.583984375,26.3609375],[-11.553173828124983,26.4009765625],[-11.511669921874983,26.4703125],[-11.470703125,26.5201171875],[-11.39990234375,26.58359375],[-11.337890625,26.6333984375],[-11.316845703124983,26.6841796875],[-11.316845703124983,26.7447265625],[-11.361279296874983,26.7935546875],[-11.392578125,26.8833984375],[-11.263623046874983,26.910742187499995],[-11.150341796874983,26.941015625],[-11.046826171874983,26.9703125],[-10.922802734374983,27.0103515625],[-10.830078125,27.0103515625],[-10.757763671874983,27.0201171875],[-10.654248046874983,27.0005859375],[-10.55126953125,26.9908203125],[-10.478955078124983,26.960546875],[-10.354931640624983,26.9009765625],[-10.25146484375,26.8609375],[-10.189453125,26.8609375],[-10.123046875,26.88046875],[-10.066845703124981,26.9087890625],[-10.03271484375,26.910742187499995],[-9.980908203124983,26.890234375],[-9.900341796874983,26.8501953125],[-9.81787109375,26.8501953125],[-9.7353515625,26.8609375],[-9.67333984375,26.910742187499995],[-9.56982421875,26.9908203125],[-9.4873046875,27.050390625],[-9.413037109374983,27.0884765625],[-9.352978515624983,27.0982421875],[-9.285595703124983,27.0982421875],[-9.208447265624983,27.1001953125],[-9.084423828124983,27.0904296875],[-9.001904296874983,27.0904296875],[-8.8890625,27.1041015625],[-8.794873046874983,27.120703125],[-8.753857421874983,27.1509765625],[-8.753857421874983,27.191015625],[-8.774365234374983,27.250585937499995],[-8.796826171874983,27.308203125],[-8.802685546874983,27.3609375],[-8.788964843749994,27.416552734374996],[-8.774365234374983,27.460546875],[-8.784570312499994,27.530859375],[-8.813916015624983,27.613867187499995],[-8.817773437499994,27.655908203124994],[-8.817822265624983,27.656445312499997],[-8.683349609375,27.656445312499997],[-8.683349609375,27.490234375],[-8.683349609375,27.2859375]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sudan","sov_a3":"SDN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sudan","adm0_a3":"SDN","geou_dif":0,"geounit":"Sudan","gu_a3":"SDN","su_dif":0,"subunit":"Sudan","su_a3":"SDN","brk_diff":0,"name":"Sudan","name_long":"Sudan","brk_a3":"SDN","brk_name":"Sudan","brk_group":null,"abbrev":"Sudan","postal":"SD","formal_en":"Republic of the Sudan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sudan","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":4,"mapcolor13":1,"pop_est":25946220,"gdp_md_est":88080,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SD","iso_a3":"SDN","iso_n3":"729","un_a3":"729","wb_a2":"SD","wb_a3":"SDN","woe_id":-99,"adm0_a3_is":"SDN","adm0_a3_us":"SDN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SDN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.46640625,22.084667968749997],[31.43447265625002,21.995849609375],[31.621679687500006,21.995849609375],[31.94980468750001,21.995898437500003],[32.27783203124999,21.995996093749994],[32.606054687500006,21.995996093749994],[32.93408203125,21.99609375],[33.26220703125,21.996142578125003],[33.59033203125,21.99619140624999],[33.91845703125,21.996240234374994],[34.246484375000016,21.996289062499997],[34.57460937500002,21.996337890625],[34.90273437500002,21.99638671875],[35.23085937500002,21.99643554687499],[35.55898437500002,21.99648437499999],[35.88701171875002,21.996533203124997],[36.21523437500002,21.99658203125],[36.54326171875002,21.996630859375003],[36.87138671875002,21.996728515624994],[36.88261718750001,21.768798828125],[36.92695312500001,21.58652343749999],[37.081152343750006,21.32602539062499],[37.21171875000001,21.185839843750003],[37.25859375000001,21.108544921874994],[37.26318359375,21.07265625],[37.257226562500016,21.03940429687499],[37.21748046875001,21.077636718749996],[37.15058593750001,21.103759765625],[37.14111328125,20.98178710937499],[37.156835937500006,20.89492187499999],[37.17265625000002,20.731982421875003],[37.2275390625,20.55673828124999],[37.18789062500002,20.39492187499999],[37.19316406250002,20.12070312499999],[37.26259765625002,19.791894531249994],[37.24843750000002,19.58188476562499],[37.36152343750001,19.091992187499997],[37.471289062500006,18.820117187500003],[37.53164062500002,18.753125],[37.59941406250002,18.717431640624994],[37.72978515625002,18.6943359375],[37.921875,18.555908203125],[38.07402343750002,18.40976562499999],[38.128125,18.33330078125],[38.201757812500006,18.249414062499994],[38.252148437500004,18.264404296874996],[38.28310546875002,18.286718749999988],[38.332910156250016,18.219042968750003],[38.57402343750002,18.072949218749997],[38.609472656250006,18.005078125],[38.52285156250002,17.938525390625003],[38.422460937500006,17.823925781249997],[38.39716796875001,17.778369140625],[38.38554687500002,17.751269531250003],[38.37373046875001,17.717333984375003],[38.34736328125001,17.68359375],[38.28984375000002,17.637011718750003],[38.267285156250004,17.61669921875],[38.253515625,17.584765625],[38.21904296875001,17.56396484375],[38.18154296875002,17.562841796874988],[38.14853515625,17.548535156249997],[38.09892578125001,17.52646484374999],[38.025292968750016,17.537792968749997],[37.95009765625002,17.51767578124999],[37.92255859375001,17.492333984374994],[37.86298828125001,17.470263671875003],[37.803320312500006,17.465527343749997],[37.78242187500001,17.4580078125],[37.72597656250002,17.42050781249999],[37.65673828125,17.36826171874999],[37.57597656250002,17.335009765625003],[37.547460937500006,17.324121093749994],[37.51015625000002,17.288134765625003],[37.45292968750002,17.108691406250003],[37.41103515625002,17.06171875],[37.340429687500006,17.057080078124997],[37.24882812500002,17.056884765625],[37.16953125,17.04140625],[37.06152343749999,17.061279296875],[37.00898437500001,17.05888671875],[36.995214843750006,17.020556640625003],[36.97578125000001,16.86655273437499],[36.97871093750001,16.800585937500003],[36.93574218750001,16.722363281249997],[36.887792968750006,16.624658203124994],[36.90546875000001,16.459521484375003],[36.91376953125001,16.296191406250003],[36.825878906250004,16.05029296875],[36.81347656249999,15.993945312500001],[36.72451171875002,15.798876953125003],[36.67919921875,15.726367187500001],[36.566015625,15.362109375],[36.52177734375002,15.250146484374993],[36.4267578125,15.132080078125],[36.44814453125002,14.940087890624993],[36.470800781250006,14.736474609374994],[36.492285156250006,14.544335937499994],[36.52431640625002,14.2568359375],[36.443945312500006,13.988427734374994],[36.44707031250002,13.842041015625],[36.390625,13.626074218749991],[36.346289062500006,13.526269531249994],[36.30683593750001,13.466845703125001],[36.273535156250006,13.40576171875],[36.21220703125002,13.27109375],[36.16015625,13.093310546874989],[36.137109375000016,12.9111328125],[36.135351562500006,12.805322265624994],[36.12519531250001,12.75703125],[36.107519531250006,12.726464843749994],[35.98759765625002,12.706298828125],[35.82060546875002,12.684863281249989],[35.730566406250006,12.661035156249994],[35.67021484375002,12.623730468749997],[35.59609375000002,12.537304687499997],[35.44960937500002,12.300585937499989],[35.37275390625001,12.155566406249989],[35.25244140625,11.95703125],[35.1123046875,11.816552734374994],[35.08271484375001,11.748291015625],[35.059667968750006,11.621044921874997],[35.007910156250006,11.419873046874997],[34.96074218750002,11.276757812499993],[34.969140625000016,11.161767578124994],[34.924902343750006,10.962109375],[34.93144531250002,10.864794921874989],[34.88232421874999,10.810546875],[34.81621093750002,10.759179687499993],[34.77128906250002,10.746191406249991],[34.675,10.804931640625],[34.60175781250001,10.864550781249989],[34.571875,10.880175781249989],[34.50800781250001,10.842871093749991],[34.43144531250002,10.787841796875],[34.34394531250001,10.658642578124997],[34.27568359375001,10.528125],[34.314843750000016,10.2515625],[34.311230468750004,10.190869140624995],[34.29150390625,10.124755859375],[34.18525390625001,9.918554687499991],[34.159082031250016,9.853417968749994],[34.12031250000001,9.7296875],[34.07929687500001,9.513476562499989],[34.078125,9.461523437499991],[34.078125,9.461523437499991],[34.076757812500006,9.461523437499991],[33.89091796875002,9.462207031249989],[33.88789062500001,9.463525390624994],[33.88486328125,9.46640625],[33.88212890625001,9.47119140625],[33.87880859375002,9.477734375],[33.87148437500002,9.506152343749989],[33.867773437500006,9.550341796874989],[33.8740234375,9.626757812499989],[33.89492187500002,9.717626953124991],[33.95917968750001,9.845263671874987],[33.9625,9.855810546874991],[33.96328125000002,9.861767578124997],[33.96328125000002,9.868701171874989],[33.95732421875002,9.891455078124991],[33.94990234375001,9.911132812499998],[33.94619140625002,9.94091796875],[33.95732421875002,10.00717773437499],[33.95839843750002,10.02773437499999],[33.95683593750001,10.05419921875],[33.951855468750004,10.070947265624994],[33.90703125000002,10.181445312499989],[33.8921875,10.198974609375],[33.459082031250006,10.550830078124989],[33.3798828125,10.646191406249997],[33.37138671875002,10.65273437499999],[33.36074218750002,10.6578125],[33.14082031250001,10.73789062499999],[33.13007812500001,10.74594726562499],[33.131445312500006,10.757714843749994],[33.13828125,10.772949218749998],[33.164746093750004,10.819189453124991],[33.16845703125,10.831445312499994],[33.17216796875001,10.850146484374989],[33.07304687500002,11.591503906249995],[33.073339843750006,11.606103515624993],[33.07783203125001,11.615771484374989],[33.08154296875,11.621728515624994],[33.09462890625002,11.6375],[33.106054687500006,11.653857421874989],[33.119140625,11.682421874999989],[33.12246093750002,11.693164062499989],[33.13613281250002,11.825585937499994],[33.13505859375002,11.941601562499997],[33.19306640625001,12.135009765625],[33.199316406250006,12.21728515625],[32.721875,12.223095703124997],[32.71894531250001,12.218847656249991],[32.71855468750002,12.213769531249994],[32.719824218750006,12.2080078125],[32.72050781250002,12.201806640624994],[32.72011718750002,12.188818359374991],[32.71630859375,12.164843749999989],[32.71533203125,12.152197265624991],[32.7158203125,12.13925781249999],[32.72304687500002,12.092919921874994],[32.73564453125002,12.058056640624997],[32.73769531250002,12.046435546874989],[32.73828125,12.033740234374989],[32.736718750000016,12.009667968749994],[32.072265625,12.006738281249994],[32.33535156250002,11.716015625],[32.3384765625,11.710107421874994],[32.34306640625002,11.694287109374995],[32.34492187500001,11.68271484374999],[32.34990234375002,11.580419921874991],[32.33574218750002,11.41855468749999],[32.3388671875,11.314501953124989],[32.35419921875001,11.246923828124991],[32.425390625,11.113964843749997],[32.42080078125002,11.089111328125],[32.40410156250002,11.057763671874994],[31.933007812500026,10.6625],[31.919921875,10.643847656249989],[31.854296875000017,10.479052734374989],[31.791992187499996,10.383154296874991],[31.764257812500002,10.355712890625],[31.654882812500006,10.221142578124997],[31.224902343750014,9.799267578124997],[31.15449218750001,9.770947265624997],[30.940332031250023,9.759375],[30.82705078125002,9.756298828124997],[30.81416015625001,9.753125],[30.794921875,9.745849609375],[30.78310546875002,9.734960937499991],[30.769140625,9.726806640625],[30.755371093749996,9.731201171875],[30.739355468750006,9.74267578125],[30.474609375,9.978955078124997],[30.003027343750006,10.277392578124989],[29.95791015625002,10.250244140625],[29.691015625,10.121923828124991],[29.63593750000001,10.088623046874998],[29.60546875,10.065087890624994],[29.603906250000023,9.92138671875],[29.557421875000017,9.848291015624993],[29.47314453125,9.768603515624989],[29.24238281250001,9.718066406249987],[29.12236328125002,9.67465820312499],[28.999609375,9.610156249999989],[28.979589843750006,9.593994140625],[28.979589843750006,9.594189453124995],[28.93232421875001,9.549462890624994],[28.839453125,9.459082031249991],[28.829394531250017,9.388818359374994],[28.844531250000017,9.326074218749994],[28.048925781250006,9.32861328125],[27.99628906250001,9.378808593749994],[27.885839843750006,9.599658203124989],[27.880859375,9.601611328124989],[27.7998046875,9.587890625],[27.07421875,9.613818359374989],[26.970507812500017,9.590625],[26.76318359375,9.49921875],[26.65869140625,9.484130859375],[26.551367187500006,9.525830078124995],[26.16953125,9.965917968749991],[26.087011718750006,10.018457031249994],[26.057031250000023,10.046777343749994],[26.000585937500006,10.1234375],[25.91914062500001,10.169335937499994],[25.891503906250023,10.20273437499999],[25.8828125,10.24960937499999],[25.88525390625,10.34609375],[25.858203125000017,10.406494140625],[25.79804687500001,10.420507812499991],[25.28515625,10.318505859374994],[25.211718750000014,10.329931640624991],[25.10400390625,10.311816406249989],[25.066992187500006,10.293798828124991],[25.02363281250001,10.235791015624995],[25.01484375000001,10.175878906249991],[25.016210937500006,10.115234375],[25.0029296875,10.05527343749999],[24.9638671875,9.988867187499991],[24.817675781250017,9.839599609374998],[24.785253906250006,9.774658203125],[24.79218750000001,9.610302734374995],[24.78261718750002,9.52734375],[24.760351562500006,9.488916015624994],[24.696679687500023,9.425683593749994],[24.673632812500017,9.389306640624994],[24.662890625000017,9.338134765624998],[24.659375,9.229931640624997],[24.648046875,9.179101562499994],[24.568261718750023,9.051708984374997],[24.549414062500006,9.006787109374997],[24.544824218750023,8.914843749999989],[24.53193359375001,8.886914062499997],[24.300195312500023,8.814257812499989],[24.21357421875001,8.767822265625],[24.160449218750017,8.6962890625],[24.147363281250023,8.665625],[24.147363281250023,8.665625],[24.048144531250017,8.691308593749994],[23.921972656250006,8.709716796875],[23.679296875,8.732470703124989],[23.58320312500001,8.765820312499997],[23.53730468750001,8.815820312499994],[23.551855468750006,8.943212890624991],[23.528027343750008,8.970605468749994],[23.489062500000017,8.993310546874994],[23.462792968750023,9.048486328124993],[23.468261718749996,9.11474609375],[23.59609375000002,9.261914062499997],[23.62265625,9.340625],[23.64277343750001,9.613916015624994],[23.65625,9.710351562499993],[23.646289062500014,9.822900390624994],[23.545019531250006,10.030078124999989],[23.456640625,10.174267578124997],[23.312304687500017,10.387939453125],[23.255859375,10.457812499999989],[22.96435546875,10.751806640624991],[22.930761718750006,10.7953125],[22.86005859375001,10.919677734375],[22.894824218750017,11.029003906249997],[22.937695312500008,11.192041015624994],[22.942773437500023,11.2671875],[22.922656250000017,11.344873046874994],[22.849023437500023,11.403271484374997],[22.78339843750001,11.409960937499989],[22.754003906250006,11.43984375],[22.697363281250002,11.482666015625],[22.641015625000023,11.515917968749989],[22.591113281250017,11.579882812499989],[22.55634765625001,11.66953125],[22.580957031250023,11.990136718749994],[22.564355468750023,12.032958984375],[22.48984375,12.044726562499987],[22.472460937500014,12.067773437499994],[22.47548828125002,12.129248046874991],[22.435253906250008,12.311914062499994],[22.390234375,12.462988281249991],[22.414453125000023,12.54638671875],[22.352343750000017,12.660449218749987],[22.2333984375,12.70947265625],[22.121191406250006,12.694580078125],[22.00068359375001,12.671875],[21.928125,12.678125],[21.878125,12.699365234374994],[21.843359375,12.7412109375],[21.825292968750006,12.790527343749998],[21.841796875,12.86474609375],[21.90771484375,13.0009765625],[21.990234375,13.113085937499989],[22.158007812500014,13.215039062499997],[22.20263671875,13.269335937500003],[22.228125,13.329589843749998],[22.23261718750001,13.39877929687499],[22.221386718750008,13.471630859374997],[22.20234375000001,13.538085937499998],[22.152929687500006,13.626416015624997],[22.10761718750001,13.730322265624991],[22.1064453125,13.7998046875],[22.128222656250014,13.850146484375003],[22.173144531250014,13.910595703124995],[22.262109375000023,13.978710937499997],[22.283496093750017,13.992333984374994],[22.339355468749996,14.028857421875003],[22.38818359375,14.055517578124991],[22.509960937500008,14.12744140625],[22.53857421875,14.161865234375],[22.528222656250023,14.203222656249991],[22.498339843750017,14.237060546875],[22.449316406250002,14.284228515625003],[22.439355468750023,14.34213867187499],[22.425,14.441210937500001],[22.399707031250014,14.504199218750003],[22.381542968750008,14.550488281249997],[22.41621093750001,14.585205078125],[22.467773437499996,14.633349609375003],[22.532031250000017,14.662744140624994],[22.6318359375,14.688085937499991],[22.670898437499996,14.722460937500003],[22.682421875000017,14.788623046875001],[22.679199218749996,14.851464843749993],[22.714941406250006,14.898388671874997],[22.76328125,14.998681640624994],[22.802148437500023,15.044433593749998],[22.8671875,15.096630859374997],[22.93232421875001,15.162109375],[22.961328125000023,15.23813476562499],[22.969531250000017,15.311328125],[22.933886718750017,15.533105468749994],[23.009179687500023,15.625830078124991],[23.10517578125001,15.702539062499993],[23.243457031250017,15.697216796874997],[23.4580078125,15.71396484374999],[23.60400390625,15.745996093749994],[23.70820312500001,15.74497070312499],[23.94599609375001,15.70351562499999],[23.965234375000023,15.713427734375003],[23.970800781250006,15.72153320312499],[23.9833984375,15.780175781249994],[23.983300781250023,15.928125],[23.98291015625,16.37421875],[23.982519531250002,16.820263671874997],[23.982226562500014,17.266357421875],[23.981835937500023,17.71240234375],[23.981445312499996,18.158496093750003],[23.981054687500006,18.604541015625003],[23.98066406250001,19.050585937500003],[23.980273437500017,19.496630859375003],[23.980273437500017,19.62148437499999],[23.980273437500017,19.746289062499997],[23.980273437500017,19.87109375],[23.980273437500017,19.99594726562499],[24.22695312500002,19.995849609375],[24.473632812499996,19.99570312499999],[24.72041015625001,19.995556640624997],[24.966992187500008,19.99545898437499],[24.97021484375,19.997265625],[24.973242187500006,19.9990234375],[24.976367187500014,20.00078125],[24.9794921875,20.002587890624994],[24.97968750000001,20.500927734374997],[24.979882812500023,20.99921875],[24.980078125,21.49755859375],[24.980273437500017,21.995849609375],[25.3623046875,21.995800781249994],[25.74433593750001,21.995751953124994],[26.126367187500023,21.995654296875003],[26.508398437500006,21.99560546875],[26.890429687500014,21.995556640624997],[27.2724609375,21.995507812499994],[27.65449218750001,21.99545898437499],[28.036425781250014,21.995361328125],[28.418554687500006,21.9953125],[28.800585937500017,21.99526367187499],[29.182519531250023,21.99521484374999],[29.564550781250002,21.995117187499996],[29.946679687500023,21.995117187499996],[30.32861328125,21.995019531249994],[30.71064453125001,21.994921875],[31.092675781250026,21.994873046875],[31.20917968750001,21.994873046875],[31.260644531250023,22.002294921874988],[31.358496093750006,22.188623046874994],[31.40029296875002,22.202441406250003],[31.464257812500023,22.191503906249988],[31.486132812500017,22.147802734374988],[31.46640625,22.084667968749997]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"South Sudan","sov_a3":"SDS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Sudan","adm0_a3":"SDS","geou_dif":0,"geounit":"South Sudan","gu_a3":"SDS","su_dif":0,"subunit":"South Sudan","su_a3":"SDS","brk_diff":0,"name":"S. Sudan","name_long":"South Sudan","brk_a3":"SDS","brk_name":"S. Sudan","brk_group":null,"abbrev":"S. Sud.","postal":"SS","formal_en":"Republic of South Sudan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"South Sudan","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":3,"mapcolor13":5,"pop_est":10625176,"gdp_md_est":13227,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"SS","iso_a3":"SSD","iso_n3":"728","un_a3":"728","wb_a2":"SS","wb_a3":"SSD","woe_id":-99,"adm0_a3_is":"SSD","adm0_a3_us":"SDS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":11,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"SSD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[33.95917968750001,9.845263671874987],[33.89492187500002,9.717626953124991],[33.8740234375,9.626757812499989],[33.867773437500006,9.550341796874989],[33.87148437500002,9.506152343749989],[33.87880859375002,9.477734375],[33.88212890625001,9.47119140625],[33.88486328125,9.46640625],[33.88789062500001,9.463525390624994],[33.89091796875002,9.462207031249989],[34.076757812500006,9.461523437499991],[34.078125,9.461523437499991],[34.078125,9.461523437499991],[34.0771484375,9.420996093749991],[34.084570312500006,9.218505859375],[34.091015625,9.041259765625],[34.1015625,8.751855468749994],[34.10175781250001,8.676367187499991],[34.09453125000002,8.582226562499997],[34.07275390625,8.545263671874991],[34.01972656250001,8.492089843749994],[33.95332031250001,8.443505859374994],[33.78505859375002,8.431103515624997],[33.64482421875002,8.432568359374997],[33.545312500000016,8.443408203124989],[33.409375,8.44775390625],[33.28105468750001,8.437255859375],[33.23427734375002,8.396386718749994],[33.16523437500001,8.251074218749991],[33.06523437500002,8.040478515624997],[33.012597656250016,7.951513671874991],[32.99892578125002,7.899511718749991],[33.0146484375,7.868554687499994],[33.08076171875001,7.823730468749999],[33.22597656250002,7.760644531249994],[33.39228515625001,7.723730468749991],[33.51630859375001,7.707763671875],[33.60097656250002,7.690429687499999],[33.666113281250006,7.670996093749992],[33.902441406250006,7.509521484374999],[33.97792968750002,7.434570312499999],[34.02041015625002,7.36796875],[34.03017578125002,7.296972656249991],[34.06425781250002,7.225732421874994],[34.20039062500001,7.084570312499991],[34.279296875,7.002832031249993],[34.484375,6.898388671874997],[34.56279296875002,6.779833984374989],[34.638769531250006,6.72216796875],[34.71064453125001,6.660302734374994],[34.74921875,6.56787109375],[34.83808593750001,6.300146484374991],[34.89785156250002,6.159814453124994],[34.958984375,6.045068359374994],[34.98359375000001,5.858300781249994],[35.03193359375001,5.77490234375],[35.08193359375002,5.673144531249989],[35.16445312500002,5.581201171874994],[35.25244140625,5.511035156249989],[35.26835937500002,5.492285156249991],[35.08447265625,5.311865234374991],[34.87832031250002,5.109570312499997],[34.63984375000001,4.87548828125],[34.38017578125002,4.620654296874989],[34.176855468750006,4.419091796874994],[33.97607421875,4.22021484375],[33.74160156250002,3.985253906249994],[33.568457031250006,3.81171875],[33.53955078124999,3.787109375],[33.489355468750006,3.755078125],[33.32431640625,3.754345703124997],[33.15410156250002,3.774707031249989],[32.99726562500001,3.880175781249988],[32.83808593750001,3.798486328124994],[32.73710937500002,3.772705078125],[32.67695312500001,3.76318359375],[32.534765625,3.749951171874997],[32.33574218750002,3.706201171874994],[32.24550781250002,3.651318359374997],[32.19667968750002,3.6078125],[32.15625,3.528027343749997],[32.13593750000001,3.519726562499997],[32.09941406250002,3.529199218749994],[32.048242187500016,3.561181640624994],[31.941796875000023,3.607568359374994],[31.88828125,3.709082031249991],[31.838671875000014,3.770458984374997],[31.798046875,3.802636718749994],[31.62890625,3.701464843749989],[31.54716796875002,3.677587890624991],[31.47998046875,3.680468749999989],[31.357421875,3.737597656249988],[31.221972656250014,3.785937499999989],[31.15234375,3.785595703124997],[31.04804687500001,3.725],[30.92939453125001,3.634082031249989],[30.868164062499996,3.544140625],[30.838574218750015,3.49072265625],[30.81689453125,3.533349609374994],[30.79697265625001,3.573144531249994],[30.757226562500023,3.62421875],[30.69990234375001,3.644091796874989],[30.64765625,3.634130859374991],[30.586718750000014,3.62421875],[30.559375,3.652783203124997],[30.553515625000017,3.722949218749989],[30.536914062500017,3.787207031249991],[30.50830078125,3.835693359375],[30.420703125000017,3.883886718749991],[30.194921875,3.98193359375],[30.021386718750023,4.177636718749994],[29.933984375000023,4.268505859374997],[29.870214843750006,4.3271484375],[29.779882812500002,4.48095703125],[29.676855468750006,4.5869140625],[29.552050781250017,4.636035156249989],[29.469628906250023,4.611816406249999],[29.384863281250002,4.498388671874991],[29.22490234375002,4.391894531249989],[29.151464843750006,4.38818359375],[29.057421875000017,4.445947265624994],[28.939355468750023,4.487060546875],[28.727050781249996,4.504980468749991],[28.639550781250023,4.454492187499994],[28.524804687500023,4.372851562499989],[28.427539062500017,4.324169921874997],[28.3671875,4.318652343749989],[28.31103515625,4.338037109374994],[28.247265625,4.348535156249994],[28.19208984375001,4.350244140624994],[28.07861328125,4.4248046875],[28.019824218750017,4.479394531249994],[27.98066406250001,4.532080078124991],[27.916601562500006,4.567919921874989],[27.841601562500017,4.597753906249991],[27.788085937499996,4.644677734374994],[27.76142578125001,4.703222656249991],[27.71923828125,4.7783203125],[27.664160156250006,4.845996093749989],[27.491015625000017,4.967578124999989],[27.439257812500017,5.039208984374993],[27.403320312499996,5.109179687499989],[27.332421875000023,5.186328124999989],[27.256738281250023,5.289648437499991],[27.232519531250006,5.440771484374991],[27.229101562500006,5.5625],[27.21337890625,5.618798828124994],[27.18125,5.675146484374991],[27.143945312500023,5.722949218749989],[27.083398437500023,5.77685546875],[26.942285156250023,5.854931640624996],[26.796484375,5.945507812499997],[26.726367187500017,5.998242187499997],[26.593652343750023,6.017529296874997],[26.514257812500002,6.069238281249994],[26.44746093750001,6.183007812499994],[26.420507812500002,6.274169921875],[26.353320312500017,6.344921875],[26.32460937500002,6.396240234375],[26.30859375,6.455322265625],[26.361816406249996,6.635302734374989],[26.284570312500023,6.699023437499989],[26.169335937500023,6.78173828125],[26.0869140625,6.872119140624989],[26.036523437500023,6.955224609374993],[25.888964843750017,7.06494140625],[25.56660156250001,7.228710937499997],[25.380664062500014,7.333398437499993],[25.27890625,7.427490234375001],[25.19013671875001,7.519335937499989],[25.18134765625001,7.557226562499991],[25.238671875000023,7.648974609374988],[25.247363281250017,7.724560546874997],[25.20039062500001,7.807910156249989],[25.00722656250002,7.96484375],[24.853320312500017,8.137548828124991],[24.736718750000023,8.191552734374994],[24.4560546875,8.239453125],[24.37548828125,8.258447265624994],[24.291406250000023,8.29140625],[24.208398437500023,8.369140625],[24.179980468750017,8.461132812499997],[24.220898437500008,8.608251953124991],[24.19482421875,8.653369140624989],[24.147363281250023,8.665625],[24.147363281250023,8.665625],[24.160449218750017,8.6962890625],[24.21357421875001,8.767822265625],[24.300195312500023,8.814257812499989],[24.53193359375001,8.886914062499997],[24.544824218750023,8.914843749999989],[24.549414062500006,9.006787109374997],[24.568261718750023,9.051708984374997],[24.648046875,9.179101562499994],[24.659375,9.229931640624997],[24.662890625000017,9.338134765624998],[24.673632812500017,9.389306640624994],[24.696679687500023,9.425683593749994],[24.760351562500006,9.488916015624994],[24.78261718750002,9.52734375],[24.79218750000001,9.610302734374995],[24.785253906250006,9.774658203125],[24.817675781250017,9.839599609374998],[24.9638671875,9.988867187499991],[25.0029296875,10.05527343749999],[25.016210937500006,10.115234375],[25.01484375000001,10.175878906249991],[25.02363281250001,10.235791015624995],[25.066992187500006,10.293798828124991],[25.10400390625,10.311816406249989],[25.211718750000014,10.329931640624991],[25.28515625,10.318505859374994],[25.79804687500001,10.420507812499991],[25.858203125000017,10.406494140625],[25.88525390625,10.34609375],[25.8828125,10.24960937499999],[25.891503906250023,10.20273437499999],[25.91914062500001,10.169335937499994],[26.000585937500006,10.1234375],[26.057031250000023,10.046777343749994],[26.087011718750006,10.018457031249994],[26.16953125,9.965917968749991],[26.551367187500006,9.525830078124995],[26.65869140625,9.484130859375],[26.76318359375,9.49921875],[26.970507812500017,9.590625],[27.07421875,9.613818359374989],[27.7998046875,9.587890625],[27.880859375,9.601611328124989],[27.885839843750006,9.599658203124989],[27.99628906250001,9.378808593749994],[28.048925781250006,9.32861328125],[28.844531250000017,9.326074218749994],[28.829394531250017,9.388818359374994],[28.839453125,9.459082031249991],[28.93232421875001,9.549462890624994],[28.979589843750006,9.594189453124995],[28.979589843750006,9.593994140625],[28.999609375,9.610156249999989],[29.12236328125002,9.67465820312499],[29.24238281250001,9.718066406249987],[29.47314453125,9.768603515624989],[29.557421875000017,9.848291015624993],[29.603906250000023,9.92138671875],[29.60546875,10.065087890624994],[29.63593750000001,10.088623046874998],[29.691015625,10.121923828124991],[29.95791015625002,10.250244140625],[30.003027343750006,10.277392578124989],[30.474609375,9.978955078124997],[30.739355468750006,9.74267578125],[30.755371093749996,9.731201171875],[30.769140625,9.726806640625],[30.78310546875002,9.734960937499991],[30.794921875,9.745849609375],[30.81416015625001,9.753125],[30.82705078125002,9.756298828124997],[30.940332031250023,9.759375],[31.15449218750001,9.770947265624997],[31.224902343750014,9.799267578124997],[31.654882812500006,10.221142578124997],[31.764257812500002,10.355712890625],[31.791992187499996,10.383154296874991],[31.854296875000017,10.479052734374989],[31.919921875,10.643847656249989],[31.933007812500026,10.6625],[32.40410156250002,11.057763671874994],[32.42080078125002,11.089111328125],[32.425390625,11.113964843749997],[32.35419921875001,11.246923828124991],[32.3388671875,11.314501953124989],[32.33574218750002,11.41855468749999],[32.34990234375002,11.580419921874991],[32.34492187500001,11.68271484374999],[32.34306640625002,11.694287109374995],[32.3384765625,11.710107421874994],[32.33535156250002,11.716015625],[32.072265625,12.006738281249994],[32.736718750000016,12.009667968749994],[32.73828125,12.033740234374989],[32.73769531250002,12.046435546874989],[32.73564453125002,12.058056640624997],[32.72304687500002,12.092919921874994],[32.7158203125,12.13925781249999],[32.71533203125,12.152197265624991],[32.71630859375,12.164843749999989],[32.72011718750002,12.188818359374991],[32.72050781250002,12.201806640624994],[32.719824218750006,12.2080078125],[32.71855468750002,12.213769531249994],[32.71894531250001,12.218847656249991],[32.721875,12.223095703124997],[33.199316406250006,12.21728515625],[33.19306640625001,12.135009765625],[33.13505859375002,11.941601562499997],[33.13613281250002,11.825585937499994],[33.12246093750002,11.693164062499989],[33.119140625,11.682421874999989],[33.106054687500006,11.653857421874989],[33.09462890625002,11.6375],[33.08154296875,11.621728515624994],[33.07783203125001,11.615771484374989],[33.073339843750006,11.606103515624993],[33.07304687500002,11.591503906249995],[33.17216796875001,10.850146484374989],[33.16845703125,10.831445312499994],[33.164746093750004,10.819189453124991],[33.13828125,10.772949218749998],[33.131445312500006,10.757714843749994],[33.13007812500001,10.74594726562499],[33.14082031250001,10.73789062499999],[33.36074218750002,10.6578125],[33.37138671875002,10.65273437499999],[33.3798828125,10.646191406249997],[33.459082031250006,10.550830078124989],[33.8921875,10.198974609375],[33.90703125000002,10.181445312499989],[33.951855468750004,10.070947265624994],[33.95683593750001,10.05419921875],[33.95839843750002,10.02773437499999],[33.95732421875002,10.00717773437499],[33.94619140625002,9.94091796875],[33.94990234375001,9.911132812499998],[33.95732421875002,9.891455078124991],[33.96328125000002,9.868701171874989],[33.96328125000002,9.861767578124997],[33.9625,9.855810546874991],[33.95917968750001,9.845263671874987]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Senegal","sov_a3":"SEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Senegal","adm0_a3":"SEN","geou_dif":0,"geounit":"Senegal","gu_a3":"SEN","su_dif":0,"subunit":"Senegal","su_a3":"SEN","brk_diff":0,"name":"Senegal","name_long":"Senegal","brk_a3":"SEN","brk_name":"Senegal","brk_group":null,"abbrev":"Sen.","postal":"SN","formal_en":"Republic of Senegal","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Senegal","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":5,"mapcolor13":5,"pop_est":13711597,"gdp_md_est":21980,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SN","iso_a3":"SEN","iso_n3":"686","un_a3":"686","wb_a2":"SN","wb_a3":"SEN","woe_id":-99,"adm0_a3_is":"SEN","adm0_a3_us":"SEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SEN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-12.280615234374977,14.809033203124995],[-12.186523437499998,14.648144531249999],[-12.206835937499989,14.57114257812499],[-12.228417968749993,14.45859375],[-12.175244140624981,14.376660156249997],[-12.112890624999977,14.323291015625001],[-12.068359375,14.27421875],[-12.019189453124994,14.206494140624997],[-12.011181640624983,14.071826171875003],[-12.020117187499977,13.974658203125001],[-11.988085937499989,13.930761718749991],[-11.960888671874983,13.875292968750001],[-11.966357421874989,13.828955078124991],[-11.984179687499989,13.788085937499998],[-12.044140624999983,13.73388671875],[-12.05419921875,13.633056640624998],[-11.957080078124989,13.510888671874994],[-11.894580078124989,13.444433593749991],[-11.895214843749981,13.406298828125003],[-11.877783203124977,13.364550781250003],[-11.831689453124993,13.315820312499993],[-11.803369140624994,13.327294921874994],[-11.772216796875,13.367089843749993],[-11.758251953124981,13.39453125],[-11.674462890624993,13.382373046875001],[-11.634960937499983,13.369873046875],[-11.581347656249989,13.2900390625],[-11.561669921874994,13.236962890624994],[-11.548779296874981,13.170263671874991],[-11.492822265624993,13.086962890624989],[-11.444140624999989,13.028222656249993],[-11.433935546874977,12.991601562499994],[-11.390380859375,12.941992187499991],[-11.417431640624983,12.831884765624991],[-11.414355468749989,12.775488281249991],[-11.444091796875,12.627587890624994],[-11.450585937499994,12.557714843749991],[-11.448779296874989,12.531933593749997],[-11.382421874999977,12.479248046875],[-11.389404296875,12.40439453124999],[-11.456738281249981,12.41757812499999],[-11.573681640624983,12.426318359374987],[-11.80810546875,12.38730468749999],[-11.888574218749994,12.4033203125],[-12.042382812499993,12.39804687499999],[-12.151953124999975,12.376611328124994],[-12.291210937499983,12.328027343749994],[-12.399072265624994,12.340087890625],[-12.457373046874977,12.378369140624997],[-12.534228515624989,12.375781249999989],[-12.620800781249983,12.396191406249997],[-12.713037109374994,12.433154296874989],[-12.797314453124983,12.451904296875],[-12.88818359375,12.520019531249998],[-12.930712890624989,12.532275390624987],[-12.960546874999977,12.514355468749995],[-12.985644531249987,12.491650390624997],[-13.011914062499983,12.477636718749991],[-13.061279296875,12.489990234375],[-13.079833984375,12.536279296874993],[-13.064404296874983,12.581054687499998],[-13.059765624999983,12.615039062499989],[-13.082910156249994,12.633544921875],[-13.138476562499987,12.639746093749991],[-13.228076171874989,12.639599609374997],[-13.37255859375,12.653613281249989],[-13.40576171875,12.662255859374994],[-13.729248046875,12.673925781249991],[-14.06484375,12.67529296875],[-14.349218749999977,12.676416015624993],[-14.708154296874994,12.677978515625],[-14.960595703124994,12.678955078125],[-15.196093749999989,12.679931640625],[-15.3779296875,12.588964843749991],[-15.574804687499977,12.490380859374993],[-15.839550781249981,12.43789062499999],[-16.144189453124994,12.45742187499999],[-16.24150390624999,12.443310546874997],[-16.34228515625,12.399511718749991],[-16.41630859374999,12.36767578125],[-16.521337890624977,12.3486328125],[-16.65693359374998,12.364355468749991],[-16.711816406249994,12.354833984374991],[-16.745849609375,12.399707031249987],[-16.784863281249983,12.472509765624991],[-16.76030273437499,12.52578125],[-16.677636718749994,12.56005859375],[-16.55322265625,12.604882812499994],[-16.48808593749999,12.581835937499989],[-16.449951171875,12.580712890624994],[-16.44287109375,12.609472656249991],[-16.455029296874983,12.624804687499989],[-16.548828125,12.663818359375],[-16.59765625,12.715283203124995],[-16.637841796874994,12.68515625],[-16.672558593749983,12.622021484374997],[-16.701416015624996,12.603173828124994],[-16.743896484375,12.58544921875],[-16.76796875,12.62841796875],[-16.778417968749977,12.670166015625],[-16.758984374999983,12.70234375],[-16.768945312499994,12.88330078125],[-16.757373046874985,12.979785156249989],[-16.763330078124994,13.064160156249997],[-16.704541015624983,13.11972656249999],[-16.648779296874977,13.154150390624991],[-16.430859374999983,13.157324218749991],[-16.22832031249999,13.160302734374994],[-16.033056640624977,13.158349609374994],[-15.834277343749987,13.156445312499997],[-15.814404296874983,13.325146484374997],[-15.751562499999975,13.33837890625],[-15.657324218749975,13.355810546874991],[-15.481835937499994,13.376367187499994],[-15.286230468749977,13.39599609375],[-15.24453125,13.429101562499993],[-15.212109374999983,13.485058593749995],[-15.191601562499981,13.535253906249991],[-15.151123046875002,13.556494140624991],[-15.096386718749983,13.539648437499991],[-15.024609374999983,13.513330078124994],[-14.950292968749977,13.472607421874997],[-14.865039062499989,13.434863281250003],[-14.808251953124994,13.4111328125],[-14.671923828124987,13.351708984374994],[-14.438574218749975,13.268896484374991],[-14.246777343749983,13.23583984375],[-14.014892578124998,13.296386718749998],[-13.847509765624977,13.335302734374991],[-13.826708984374989,13.4078125],[-13.852832031249989,13.478564453125001],[-13.977392578124977,13.54345703125],[-14.14697265625,13.5361328125],[-14.199023437499987,13.51875],[-14.278027343749983,13.49716796874999],[-14.325537109374977,13.488574218750003],[-14.405468749999983,13.503710937500003],[-14.506982421874994,13.559716796874994],[-14.570849609374989,13.616162109374997],[-14.66015625,13.642626953125003],[-14.76601562499999,13.669091796874994],[-14.935791015625,13.785205078125003],[-15.024462890624987,13.80600585937499],[-15.108349609374983,13.81210937499999],[-15.26953125,13.789111328125003],[-15.426855468749977,13.727001953124997],[-15.509667968749994,13.586230468750003],[-15.667187499999983,13.58828125],[-16.001611328124994,13.5927734375],[-16.308740234374994,13.596875],[-16.56230468749999,13.587304687499993],[-16.587792968749994,13.68955078124999],[-16.647851562499994,13.770996093749998],[-16.745410156249985,13.840429687499991],[-16.766943359374977,13.904931640624993],[-16.73388671875,13.961181640625],[-16.639599609374983,14.007470703124993],[-16.618115234374983,14.040527343749998],[-16.66748046875,14.035595703124997],[-16.742138671874983,14.005810546874995],[-16.791748046875,14.004150390624998],[-16.79775390624999,14.09326171875],[-16.880517578124994,14.208349609374991],[-16.973828124999983,14.403222656249994],[-17.07939453124999,14.483056640624996],[-17.168066406249977,14.640625],[-17.260644531249994,14.701074218749994],[-17.345800781249977,14.729296875],[-17.41845703125,14.723486328124991],[-17.445019531249983,14.651611328125],[-17.53564453125,14.755126953124998],[-17.41181640624998,14.7921875],[-17.147167968749983,14.922021484374994],[-16.843408203124994,15.293994140625003],[-16.570751953124983,15.734423828125003],[-16.535253906249977,15.838378906249998],[-16.502050781249974,15.917333984374991],[-16.480078124999977,16.097216796875003],[-16.441015624999977,16.204541015624997],[-16.404345703124985,16.22490234375],[-16.358105468749983,16.307177734375],[-16.30229492187499,16.451318359374994],[-16.239013671875,16.531298828125003],[-16.16835937499999,16.547070312499997],[-16.11328125,16.54013671874999],[-16.074023437499985,16.510449218749994],[-15.958984375,16.492138671874997],[-15.768212890624996,16.485107421875],[-15.620800781249983,16.506591796875],[-15.516699218749977,16.556591796874994],[-15.379980468749977,16.581982421874997],[-15.210546874999975,16.58261718749999],[-15.121435546874975,16.60361328124999],[-15.112646484374975,16.64492187499999],[-15.090576171874998,16.657373046874994],[-15.05522460937499,16.64096679687499],[-15.021923828124981,16.6474609375],[-14.990625,16.67690429687499],[-14.959521484374989,16.67890625],[-14.928613281249993,16.653515625],[-14.786718749999975,16.64589843749999],[-14.533740234374989,16.655957031249994],[-14.300097656249989,16.580273437499997],[-14.085644531249983,16.418847656249994],[-13.975048828124983,16.31113281249999],[-13.968164062499994,16.257226562499994],[-13.932617187499998,16.202880859375],[-13.868457031249989,16.148144531249997],[-13.809814453125,16.13803710937499],[-13.756640624999989,16.172509765624994],[-13.714941406249977,16.16879882812499],[-13.684667968749977,16.126904296874997],[-13.623535156249998,16.118310546874994],[-13.555517578124977,16.14404296875],[-13.506982421874994,16.135205078124994],[-13.498144531249975,16.110302734374997],[-13.486962890624994,16.09702148437499],[-13.4541015625,16.091113281250003],[-13.409667968749998,16.05917968749999],[-13.347558593749994,15.97348632812499],[-13.297021484374994,15.85385742187499],[-13.258007812499983,15.700390625],[-13.206445312499994,15.616894531249999],[-13.142382812499989,15.603320312500003],[-13.105273437499987,15.57177734375],[-13.097900390625,15.535253906249991],[-13.079296874999983,15.510449218749997],[-13.048535156249983,15.496630859375001],[-12.994335937499981,15.504882812499998],[-12.930859374999983,15.453027343749994],[-12.862695312499994,15.340429687499991],[-12.851904296874977,15.289648437499991],[-12.862646484374977,15.262402343749997],[-12.858496093749977,15.24252929687499],[-12.813183593749983,15.223535156249993],[-12.770312499999989,15.186669921874994],[-12.735253906249993,15.13125],[-12.659619140624981,15.082080078125005],[-12.543554687499977,15.039013671874997],[-12.459863281249994,14.974658203125001],[-12.40869140625,14.889013671874991],[-12.302539062499989,14.816992187499991],[-12.280615234374977,14.809033203124995]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Sierra Leone","sov_a3":"SLE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sierra Leone","adm0_a3":"SLE","geou_dif":0,"geounit":"Sierra Leone","gu_a3":"SLE","su_dif":0,"subunit":"Sierra Leone","su_a3":"SLE","brk_diff":0,"name":"Sierra Leone","name_long":"Sierra Leone","brk_a3":"SLE","brk_name":"Sierra Leone","brk_group":null,"abbrev":"S.L.","postal":"SL","formal_en":"Republic of Sierra Leone","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sierra Leone","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":7,"pop_est":6440053,"gdp_md_est":4285,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"SL","iso_a3":"SLE","iso_n3":"694","un_a3":"694","wb_a2":"SL","wb_a3":"SLE","woe_id":-99,"adm0_a3_is":"SLE","adm0_a3_us":"SLE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SLE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-12.526074218749926,7.436328125000016],[-12.540625,7.410253906250033],[-12.607177734375028,7.474511718749979],[-12.951611328124926,7.570849609374988],[-12.854394531249937,7.622021484375011],[-12.615234374999972,7.63720703125],[-12.544189453124972,7.607373046875054],[-12.5125,7.582421875000037],[-12.500634765624994,7.535107421874983],[-12.526074218749926,7.436328125000016]]],[[[-11.180859374999955,9.925341796875045],[-11.115673828124926,9.843164062499994],[-11.047460937499975,9.786328125000054],[-10.963085937499926,9.661621093750043],[-10.86479492187496,9.516455078124963],[-10.758593749999989,9.385351562499991],[-10.690527343749977,9.314257812499974],[-10.682714843750006,9.289355468749974],[-10.687646484374937,9.261132812499994],[-10.721240234374932,9.194482421875009],[-10.749951171874926,9.122363281249958],[-10.747021484374955,9.095263671875045],[-10.726855468749932,9.081689453125023],[-10.615966796875,9.059179687499977],[-10.60576171874996,8.978808593750031],[-10.605615234375023,8.867578125000023],[-10.551757812499972,8.763769531250004],[-10.500537109375017,8.687548828125017],[-10.503125,8.660302734374978],[-10.62846679687496,8.529980468749983],[-10.677343749999977,8.400585937499997],[-10.702148437499972,8.364208984375054],[-10.712109374999955,8.335253906250017],[-10.686962890624981,8.321679687500009],[-10.652636718749989,8.330273437499983],[-10.604003906249943,8.319482421874994],[-10.55771484374992,8.315673828125028],[-10.496435546874977,8.362109374999974],[-10.394433593749966,8.480957031250028],[-10.360058593749983,8.49550781249998],[-10.28320312499997,8.48515625],[-10.285742187499949,8.454101562499986],[-10.314648437499983,8.310839843750017],[-10.359814453124926,8.187939453125026],[-10.389550781249966,8.15761718749998],[-10.516748046874937,8.12529296874996],[-10.570849609374932,8.071142578125034],[-10.617578124999966,7.896435546874969],[-10.6474609375,7.759375],[-10.691308593749966,7.736425781249963],[-10.878076171874994,7.538232421874994],[-11.000244140624943,7.46303710937505],[-11.085400390624955,7.398583984374965],[-11.166113281249975,7.314404296875054],[-11.267675781249975,7.232617187499997],[-11.376660156249981,7.094677734375054],[-11.454541015624953,6.95122070312496],[-11.507519531249983,6.906542968750003],[-11.547509765624966,6.946972656249983],[-11.733447265625017,7.088574218750053],[-11.92919921875,7.18354492187504],[-12.346630859374955,7.341796875000042],[-12.48564453124996,7.386279296875045],[-12.480664062500011,7.442480468750034],[-12.43271484374992,7.545019531249963],[-12.510449218749955,7.66572265625004],[-12.480273437499932,7.753271484375019],[-12.510449218749955,7.753369140625041],[-12.570214843749936,7.700585937500037],[-12.697607421874977,7.715869140625045],[-12.781933593749926,7.791113281250006],[-12.850878906249932,7.818701171875033],[-12.880957031249919,7.856640625000025],[-12.925146484374949,8.055175781249972],[-12.956933593749966,8.145312500000045],[-13.020800781249987,8.200927734375],[-13.148974609374989,8.214599609375043],[-13.20175781249992,8.335839843750051],[-13.272753906249989,8.429736328124989],[-13.261230468749943,8.48759765624996],[-13.203320312499955,8.484277343749994],[-13.157958984374972,8.442285156249966],[-13.085009765624932,8.424755859375038],[-12.994238281249919,8.526464843749977],[-12.912939453124949,8.581542968750014],[-12.894091796874932,8.62978515624998],[-12.904003906249926,8.65625],[-12.953369140624943,8.615136718750009],[-13.088232421874977,8.625732421875043],[-13.121630859374932,8.588769531249966],[-13.181835937499955,8.576904296875043],[-13.228417968749937,8.695898437500034],[-13.226171874999919,8.765966796875006],[-13.206933593749994,8.843115234375006],[-13.071044921875028,8.856347656250037],[-13.059472656249966,8.881152343750031],[-13.153710937499994,8.897705078125027],[-13.271630859374936,8.987402343750006],[-13.292675781249955,9.04921875],[-13.234228515624949,9.070117187499974],[-13.178369140624937,9.060888671874963],[-13.129882812500028,9.047558593749997],[-13.077294921874964,9.069628906249974],[-13.028027343749955,9.103564453125045],[-12.99863281249992,9.146923828124997],[-12.958789062499987,9.263330078124994],[-12.831103515624989,9.302246093750014],[-12.755859374999943,9.373583984374989],[-12.684423828124949,9.48417968749996],[-12.65166015624993,9.56191406249998],[-12.622167968749977,9.600634765624974],[-12.60361328124992,9.634228515624969],[-12.589843749999943,9.671142578125028],[-12.557861328125,9.704980468749993],[-12.524365234374926,9.787207031249963],[-12.501464843749972,9.862158203125048],[-12.427978515625028,9.898144531250011],[-12.277734374999966,9.929785156249963],[-12.142333984375,9.87539062499999],[-11.922753906249937,9.922753906250051],[-11.911083984374953,9.993017578124977],[-11.710058593749949,9.994189453125031],[-11.471923828125028,9.995458984375018],[-11.273632812499955,9.996533203124983],[-11.205664062499949,9.977734374999969],[-11.180859374999955,9.925341796875045]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Somaliland","sov_a3":"SOL","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Somaliland","adm0_a3":"SOL","geou_dif":0,"geounit":"Somaliland","gu_a3":"SOL","su_dif":0,"subunit":"Somaliland","su_a3":"SOL","brk_diff":1,"name":"Somaliland","name_long":"Somaliland","brk_a3":"B30","brk_name":"Somaliland","brk_group":null,"abbrev":"Solnd.","postal":"SL","formal_en":"Republic of Somaliland","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Somalia","name_sort":"Somaliland","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":5,"mapcolor13":2,"pop_est":3500000,"gdp_md_est":12250,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"SOM","adm0_a3_us":"SOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"somaliland.geojson"},"geometry":{"type":"Polygon","coordinates":[[[48.938574218750006,11.258447265624994],[48.93847656249999,10.982324218749994],[48.93847656249999,10.714208984374991],[48.93837890625002,10.433251953124994],[48.93828125000002,9.973486328124991],[48.93828125000002,9.8076171875],[48.938085937500006,9.564111328124994],[48.938085937500006,9.451757812499991],[48.793554687500006,9.232714843749989],[48.616601562500016,8.964599609375],[48.42861328125002,8.679589843749993],[48.27275390625002,8.443359375],[48.12675781250002,8.22216796875],[47.97822265625001,7.997070312499999],[47.6376953125,7.997070312499999],[47.3056640625,7.997070312499999],[46.97822265625001,7.997070312499999],[46.91953125,8.026123046874998],[46.64472656250001,8.1181640625],[46.29599609375,8.234960937499991],[45.86328125,8.3798828125],[45.55546875000002,8.483007812499991],[45.22695312500002,8.5908203125],[44.8935546875,8.7001953125],[44.63203125000001,8.786083984374997],[44.30625,8.89306640625],[44.02285156250002,8.986035156249997],[43.98378906250002,9.008837890624989],[43.826757812500006,9.15078125],[43.62050781250002,9.33740234375],[43.5810546875,9.340722656249994],[43.482519531250006,9.37949218749999],[43.39433593750002,9.480273437499989],[43.303125,9.609082031249997],[43.21845703125001,9.770166015624993],[43.18164062499999,9.87998046874999],[43.0689453125,9.926220703124997],[43.014746093750006,10.012597656249994],[42.9125,10.140820312499997],[42.84160156250002,10.203076171874997],[42.81640625,10.257373046874989],[42.78369140625,10.36962890625],[42.725195312500006,10.491748046874989],[42.66923828125002,10.567578125],[42.65644531250001,10.6],[42.65957031250002,10.621386718749989],[42.76308593750002,10.786914062499989],[42.80976562500001,10.845996093749987],[42.862890625,10.903222656249994],[42.90615234375002,10.960253906249989],[42.92275390625002,10.999316406249989],[43.04863281250002,11.1943359375],[43.159375,11.36572265625],[43.24599609375002,11.499804687499989],[43.44121093750002,11.346435546875],[43.63115234375002,11.035449218749989],[43.85273437500001,10.784277343749991],[44.158203125,10.55078125],[44.279296875,10.471875],[44.38652343750002,10.430224609374989],[44.94296875,10.43671875],[45.33769531250001,10.64975585937499],[45.695898437500006,10.80390625],[45.81669921875002,10.835888671874997],[46.024511718750006,10.793701171875],[46.25390625,10.781103515624991],[46.46025390625001,10.734179687499989],[46.565039062500006,10.745996093749994],[46.97343750000002,10.92539062499999],[47.230078125,11.099902343749989],[47.40498046875001,11.174023437499997],[47.47382812500001,11.1748046875],[47.7125,11.112011718749997],[48.01923828125001,11.139355468749995],[48.43886718750002,11.29013671874999],[48.57255859375002,11.320507812499997],[48.674414062500006,11.32265625],[48.903125,11.2548828125],[48.938574218750006,11.258447265624994]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Somalia","sov_a3":"SOM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Somalia","adm0_a3":"SOM","geou_dif":0,"geounit":"Somalia","gu_a3":"SOM","su_dif":0,"subunit":"Somalia","su_a3":"SOM","brk_diff":0,"name":"Somalia","name_long":"Somalia","brk_a3":"SOM","brk_name":"Somalia","brk_group":null,"abbrev":"Som.","postal":"SO","formal_en":"Federal Republic of Somalia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Somalia","name_alt":null,"mapcolor7":2,"mapcolor8":8,"mapcolor9":6,"mapcolor13":7,"pop_est":9832017,"gdp_md_est":5524,"pop_year":-99,"lastcensus":1987,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"SO","iso_a3":"SOM","iso_n3":"706","un_a3":"706","wb_a2":"SO","wb_a3":"SOM","woe_id":-99,"adm0_a3_is":"SOM","adm0_a3_us":"SOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SOM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[41.53271484374999,-1.6953125],[41.53759765625,-1.613183593750009],[41.521875,-1.572265625],[41.42695312500001,-1.449511718750003],[41.24980468750002,-1.220507812500003],[41.115820312500006,-1.047460937500005],[40.97871093750001,-0.870312500000011],[40.97822265625001,-0.728710937500011],[40.9765625,-0.307324218750011],[40.973242187500006,0.535400390625],[40.97001953125002,1.378173828125],[40.96669921875002,2.220947265625],[40.96503906250001,2.642333984375],[40.964453125,2.814648437499997],[40.97871093750001,2.842431640624994],[41.134960937500004,2.9970703125],[41.341796875,3.20166015625],[41.61347656250001,3.590478515624994],[41.76093750000001,3.801611328124991],[41.88398437500001,3.977734375],[41.91533203125002,4.031298828124989],[42.02412109375001,4.137939453125],[42.22841796875002,4.20166015625],[42.35517578125001,4.212255859374991],[42.791601562500006,4.2919921875],[42.85664062500001,4.32421875],[42.89472656250001,4.361083984374999],[42.93095703125002,4.4453125],[43.01601562500002,4.563330078124991],[43.125683593750004,4.644482421874997],[43.333984375,4.75039062499999],[43.53828125,4.84033203125],[43.58349609375,4.85498046875],[43.829199218750006,4.911425781249989],[43.88945312500002,4.930761718749991],[43.9888671875,4.950537109374991],[44.028125,4.950976562499989],[44.36953125000002,4.931201171874989],[44.63662109375002,4.915771484375],[44.91162109374999,4.89990234375],[44.94052734375,4.912011718749994],[45.1328125,5.121679687499991],[45.4384765625,5.455419921874991],[45.63359375000002,5.668261718749989],[45.934960937500016,5.997216796874993],[46.16679687500002,6.234667968749989],[46.422949218750006,6.497265625],[46.67177734375002,6.737255859374997],[46.97119140625,7.026025390624994],[47.159765625,7.207861328124991],[47.45283203125001,7.490478515624999],[47.73164062500001,7.75932617187499],[47.97822265625001,7.997070312499999],[48.12675781250002,8.22216796875],[48.27275390625002,8.443359375],[48.42861328125002,8.679589843749993],[48.616601562500016,8.964599609375],[48.793554687500006,9.232714843749989],[48.938085937500006,9.451757812499991],[48.938085937500006,9.564111328124994],[48.93828125000002,9.8076171875],[48.93828125000002,9.973486328124991],[48.93837890625002,10.433251953124994],[48.93847656249999,10.714208984374991],[48.93847656249999,10.982324218749994],[48.938574218750006,11.258447265624994],[49.062109375,11.270849609374991],[49.38828125,11.342724609374997],[49.64208984374999,11.450927734374998],[50.110058593750004,11.529296875],[50.46621093750002,11.7275390625],[50.5283203125,11.823193359374997],[50.63593750000001,11.943798828124997],[50.79228515625002,11.983691406249987],[51.19130859375002,11.841992187499997],[51.2548828125,11.830712890624993],[51.23183593750002,11.745019531249993],[51.21816406250002,11.657666015624997],[51.136328125,11.505126953125],[51.08427734375002,11.335644531249997],[51.12226562500001,11.076757812499991],[51.140625,10.656884765624994],[51.13125,10.595898437499997],[51.10488281250002,10.535839843749997],[51.093847656250006,10.488525390624998],[51.05078125,10.471972656249989],[51.031835937500006,10.444775390624997],[51.06318359375001,10.433935546874991],[51.18828125000001,10.479736328125],[51.185546875,10.529833984374989],[51.19296875,10.554638671874997],[51.29570312500001,10.498681640624994],[51.369140625,10.475244140624994],[51.390234375,10.422607421875],[51.38457031250002,10.386523437499989],[51.2681640625,10.403125],[51.20878906250002,10.431054687499993],[51.03593750000002,10.38515625],[50.93007812500002,10.33554687499999],[50.8984375,10.253125],[50.87373046875001,9.924169921874991],[50.83281250000002,9.710498046874987],[50.825,9.428173828124997],[50.68515625,9.241162109374997],[50.63798828125002,9.109277343749994],[50.429785156250006,8.845263671874989],[50.321191406250016,8.619580078124997],[50.285742187500006,8.509423828124994],[50.10283203125002,8.199804687499991],[49.85205078125,7.962548828124994],[49.76123046875,7.659521484374991],[49.67119140625002,7.46953125],[49.57001953125001,7.296972656249991],[49.34853515625002,6.990527343749989],[49.234960937500006,6.77734375],[49.09267578125002,6.407861328124994],[49.04931640625,6.173632812499989],[48.649023437500006,5.494384765625],[48.233984375,4.952685546874989],[47.97529296875001,4.497021484374997],[47.51142578125001,3.96826171875],[46.87880859375002,3.28564453125],[46.05117187500002,2.475146484374989],[45.826269531250006,2.309863281249989],[44.92021484375002,1.81015625],[44.33271484375001,1.390966796874991],[44.03271484375,1.105908203124997],[43.71757812500002,0.857861328124997],[43.46767578125002,0.621630859374989],[42.71210937500001,-0.175683593750008],[42.63417968750002,-0.25078125],[42.56074218750001,-0.321484375000011],[42.465625,-0.45654296875],[42.3994140625,-0.510058593750003],[42.21894531250001,-0.737988281250011],[42.10625,-0.856152343750011],[41.97988281250002,-0.973046875],[41.92626953124999,-1.055566406250009],[41.88828125,-1.150585937500011],[41.84619140625,-1.203417968750003],[41.73222656250001,-1.430078125],[41.63203125000001,-1.578515625],[41.53271484374999,-1.6953125]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Sao Tome and Principe","sov_a3":"STP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sao Tome and Principe","adm0_a3":"STP","geou_dif":0,"geounit":"Sao Tome and Principe","gu_a3":"STP","su_dif":0,"subunit":"Sao Tome and Principe","su_a3":"STP","brk_diff":0,"name":"São Tomé and Principe","name_long":"São Tomé and Principe","brk_a3":"STP","brk_name":"Sao Tome and Principe","brk_group":null,"abbrev":"S.T.P.","postal":"ST","formal_en":"Democratic Republic of São Tomé and Principe","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"São Tomé and Principe","name_alt":null,"mapcolor7":1,"mapcolor8":6,"mapcolor9":1,"mapcolor13":7,"pop_est":212679,"gdp_md_est":276.5,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ST","iso_a3":"STP","iso_n3":"678","un_a3":"678","wb_a2":"ST","wb_a3":"STP","woe_id":-99,"adm0_a3_is":"STP","adm0_a3_us":"STP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":21,"long_len":21,"abbrev_len":6,"tiny":3,"homepart":1,"filename":"STP.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.659960937499989,0.120654296874989],[6.55683593750004,0.047363281249972],[6.51972656250004,0.066308593750023],[6.496972656250023,0.117382812500026],[6.468164062499993,0.22734375],[6.477539062500057,0.280126953124963],[6.52431640625008,0.340283203124969],[6.62587890625008,0.40024414062502],[6.68691406250008,0.404394531249977],[6.749804687500017,0.325634765624997],[6.75,0.24345703124996],[6.659960937499989,0.120654296874989]]],[[[7.423828125,1.567724609375006],[7.38662109375008,1.541552734375003],[7.342382812500034,1.563574218749963],[7.330664062500034,1.603369140624991],[7.38759765625008,1.68017578125],[7.414453125000051,1.699121093750037],[7.437011718750028,1.683056640624969],[7.45039062500001,1.66196289062502],[7.45234375000004,1.631103515625042],[7.423828125,1.567724609375006]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Swaziland","sov_a3":"SWZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Swaziland","adm0_a3":"SWZ","geou_dif":0,"geounit":"Swaziland","gu_a3":"SWZ","su_dif":0,"subunit":"Swaziland","su_a3":"SWZ","brk_diff":0,"name":"Swaziland","name_long":"Swaziland","brk_a3":"SWZ","brk_name":"Swaziland","brk_group":null,"abbrev":"Swz.","postal":"SW","formal_en":"Kingdom of Swaziland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Swaziland","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":1123913,"gdp_md_est":5702,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SZ","iso_a3":"SWZ","iso_n3":"748","un_a3":"748","wb_a2":"SZ","wb_a3":"SWZ","woe_id":-99,"adm0_a3_is":"SWZ","adm0_a3_us":"SWZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SWZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.9482421875,-25.957617187500006],[31.96845703125001,-25.972265625],[32.060546875,-26.018359375],[32.06884765625,-26.11015625],[32.05996093750002,-26.21503906250001],[32.04140625000002,-26.28125],[32.04833984375,-26.34716796875],[32.07792968750002,-26.449804687500006],[32.10595703125,-26.520019531249996],[32.112890625,-26.839453125],[32.081640625,-26.824804687500006],[32.02480468750002,-26.811132812500006],[31.994726562500006,-26.817480468750006],[31.967187500000026,-26.96064453125001],[31.946093750000014,-27.1736328125],[31.95839843750002,-27.30585937500001],[31.742578125000023,-27.30996093750001],[31.469531250000017,-27.295507812500006],[31.27402343750001,-27.238378906250006],[31.063378906250023,-27.112304687499996],[30.938085937500006,-26.915820312500003],[30.883300781249996,-26.79238281250001],[30.806738281250006,-26.785253906250006],[30.79433593750002,-26.764257812500006],[30.7875,-26.613671875],[30.7890625,-26.45546875],[30.803320312500002,-26.413476562500005],[30.945214843750023,-26.21875],[31.033300781250006,-26.097753906250006],[31.088085937500008,-25.980664062500008],[31.207324218750017,-25.843359375],[31.33515625,-25.75556640625001],[31.38261718750002,-25.74296875],[31.415136718750006,-25.74658203125],[31.640429687500017,-25.867285156250006],[31.87148437500002,-25.98164062500001],[31.921679687500017,-25.96875],[31.9482421875,-25.957617187500006]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Chad","sov_a3":"TCD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Chad","adm0_a3":"TCD","geou_dif":0,"geounit":"Chad","gu_a3":"TCD","su_dif":0,"subunit":"Chad","su_a3":"TCD","brk_diff":0,"name":"Chad","name_long":"Chad","brk_a3":"TCD","brk_name":"Chad","brk_group":null,"abbrev":"Chad","postal":"TD","formal_en":"Republic of Chad","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Chad","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":8,"mapcolor13":6,"pop_est":10329208,"gdp_md_est":15860,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TD","iso_a3":"TCD","iso_n3":"148","un_a3":"148","wb_a2":"TD","wb_a3":"TCD","woe_id":-99,"adm0_a3_is":"TCD","adm0_a3_us":"TCD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TCD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[23.980273437500017,19.496630859375003],[23.98066406250001,19.050585937500003],[23.981054687500006,18.604541015625003],[23.981445312499996,18.158496093750003],[23.981835937500023,17.71240234375],[23.982226562500014,17.266357421875],[23.982519531250002,16.820263671874997],[23.98291015625,16.37421875],[23.983300781250023,15.928125],[23.9833984375,15.780175781249994],[23.970800781250006,15.72153320312499],[23.965234375000023,15.713427734375003],[23.94599609375001,15.70351562499999],[23.70820312500001,15.74497070312499],[23.60400390625,15.745996093749994],[23.4580078125,15.71396484374999],[23.243457031250017,15.697216796874997],[23.10517578125001,15.702539062499993],[23.009179687500023,15.625830078124991],[22.933886718750017,15.533105468749994],[22.969531250000017,15.311328125],[22.961328125000023,15.23813476562499],[22.93232421875001,15.162109375],[22.8671875,15.096630859374997],[22.802148437500023,15.044433593749998],[22.76328125,14.998681640624994],[22.714941406250006,14.898388671874997],[22.679199218749996,14.851464843749993],[22.682421875000017,14.788623046875001],[22.670898437499996,14.722460937500003],[22.6318359375,14.688085937499991],[22.532031250000017,14.662744140624994],[22.467773437499996,14.633349609375003],[22.41621093750001,14.585205078125],[22.381542968750008,14.550488281249997],[22.399707031250014,14.504199218750003],[22.425,14.441210937500001],[22.439355468750023,14.34213867187499],[22.449316406250002,14.284228515625003],[22.498339843750017,14.237060546875],[22.528222656250023,14.203222656249991],[22.53857421875,14.161865234375],[22.509960937500008,14.12744140625],[22.38818359375,14.055517578124991],[22.339355468749996,14.028857421875003],[22.283496093750017,13.992333984374994],[22.262109375000023,13.978710937499997],[22.173144531250014,13.910595703124995],[22.128222656250014,13.850146484375003],[22.1064453125,13.7998046875],[22.10761718750001,13.730322265624991],[22.152929687500006,13.626416015624997],[22.20234375000001,13.538085937499998],[22.221386718750008,13.471630859374997],[22.23261718750001,13.39877929687499],[22.228125,13.329589843749998],[22.20263671875,13.269335937500003],[22.158007812500014,13.215039062499997],[21.990234375,13.113085937499989],[21.90771484375,13.0009765625],[21.841796875,12.86474609375],[21.825292968750006,12.790527343749998],[21.843359375,12.7412109375],[21.878125,12.699365234374994],[21.928125,12.678125],[22.00068359375001,12.671875],[22.121191406250006,12.694580078125],[22.2333984375,12.70947265625],[22.352343750000017,12.660449218749987],[22.414453125000023,12.54638671875],[22.390234375,12.462988281249991],[22.435253906250008,12.311914062499994],[22.47548828125002,12.129248046874991],[22.472460937500014,12.067773437499994],[22.48984375,12.044726562499987],[22.564355468750023,12.032958984375],[22.580957031250023,11.990136718749994],[22.55634765625001,11.66953125],[22.591113281250017,11.579882812499989],[22.641015625000023,11.515917968749989],[22.697363281250002,11.482666015625],[22.754003906250006,11.43984375],[22.78339843750001,11.409960937499989],[22.849023437500023,11.403271484374997],[22.922656250000017,11.344873046874994],[22.942773437500023,11.2671875],[22.937695312500008,11.192041015624994],[22.894824218750017,11.029003906249997],[22.86005859375001,10.919677734375],[22.8173828125,10.927197265624997],[22.730175781250008,10.954052734374997],[22.6240234375,10.977343749999989],[22.49384765625001,10.996240234374994],[22.36982421875001,10.951513671874991],[22.2359375,10.89414062499999],[22.193652343750017,10.851367187499987],[22.15625,10.826074218749994],[22.09716796875,10.830078125],[22.04316406250001,10.822705078124995],[22.013769531250006,10.782031249999989],[21.96484375,10.736669921874991],[21.771484375,10.642822265625],[21.73066406250001,10.608691406249987],[21.70654296875,10.574804687499991],[21.70654296875,10.537890624999989],[21.726171875,10.461621093749997],[21.72578125000001,10.366552734374991],[21.682714843750006,10.289843749999989],[21.63271484375002,10.23828125],[21.57578125,10.218554687499989],[21.52802734375001,10.207812499999989],[21.496875,10.175683593749994],[21.39599609375,10.001367187499994],[21.352441406250023,9.96914062499999],[21.26386718750001,9.974609375],[21.00947265625001,9.713232421874991],[20.984179687500014,9.636279296874989],[20.891015625000023,9.527148437499989],[20.773242187500017,9.405664062499993],[20.66816406250001,9.347119140624997],[20.65966796875,9.324511718749987],[20.631445312500002,9.301367187499991],[20.56689453125,9.274951171874989],[20.342089843750017,9.127099609374994],[20.072656250000023,9.13320312499999],[19.953515625000023,9.075146484374997],[19.837695312500014,9.049365234374989],[19.668359375000023,9.020898437499994],[19.617480468750014,9.023583984374994],[19.40029296875002,9.011621093749994],[19.1455078125,9.01596679687499],[19.0478515625,8.995019531249993],[18.95625,8.938867187499994],[18.88828125,8.889746093749991],[18.878320312500023,8.873193359374993],[18.888574218750023,8.852490234374997],[18.886035156250017,8.836035156249991],[19.06416015625001,8.715429687499991],[19.108691406250014,8.656152343749993],[19.063867187500023,8.598828125],[19.042382812500023,8.590283203124995],[19.039843750000017,8.5869140625],[19.010839843750006,8.541210937499997],[18.90644531250001,8.405078124999989],[18.747460937500023,8.243798828124994],[18.66621093750001,8.197705078124997],[18.633593750000017,8.167724609375],[18.591601562500017,8.060791015625],[18.56416015625001,8.0458984375],[18.455078125,8.032031249999989],[18.238867187500006,8.020361328124991],[17.940136718750008,7.985449218749991],[17.760839843750006,7.973828125],[17.6494140625,7.98359375],[17.49267578125,7.909814453124993],[17.436425781250023,7.890917968749989],[17.402148437500014,7.884570312499989],[17.24697265625002,7.81298828125],[17.117968750000017,7.701904296874999],[17.071972656250008,7.680810546874993],[16.89033203125001,7.633691406249993],[16.818164062500017,7.557324218749996],[16.784765625,7.550976562499996],[16.668359375000023,7.651757812499993],[16.588964843750006,7.743359375],[16.550195312500023,7.835888671874997],[16.545312500000023,7.865478515624999],[16.523242187500014,7.859960937499991],[16.459375,7.818994140624995],[16.404394531250006,7.772363281249994],[16.37890625,7.683544921874996],[16.19111328125001,7.6234375],[16.030664062500023,7.572119140624991],[15.957617187500006,7.507568359374999],[15.845019531250015,7.475292968749997],[15.701269531250006,7.488427734374993],[15.589257812500021,7.515039062499993],[15.480078125,7.523779296874991],[15.532421875000013,7.604394531249994],[15.552636718750021,7.664501953124997],[15.55781250000001,7.738037109375],[15.549804687499998,7.787890624999988],[15.484472656250007,7.812744140625],[15.44296875,7.851855468749989],[15.349023437500023,8.083837890624991],[15.252343750000023,8.322363281249991],[15.1162109375,8.557324218749997],[14.967968750000013,8.707275390624998],[14.860742187500023,8.798632812499989],[14.826269531250006,8.810302734375],[14.771289062500015,8.839160156249987],[14.732812500000023,8.865673828124997],[14.536132812499998,9.025244140624991],[14.332324218750017,9.20351562499999],[14.280078125000017,9.285058593749994],[14.177929687500011,9.406494140624998],[14.064160156250011,9.53173828125],[14.004980468750004,9.588720703124991],[13.977246093750011,9.691552734374994],[14.055957031250015,9.784375],[14.139746093750004,9.901806640624997],[14.243261718750006,9.979736328125],[14.377246093750017,9.985058593749997],[14.597949218750017,9.953076171874997],[14.835839843750023,9.941699218749989],[15.071582031250017,9.965966796874993],[15.132714843750023,9.982861328124997],[15.193164062500015,9.981494140624989],[15.32001953125001,9.954296875],[15.540917968750023,9.960302734374991],[15.654882812500004,10.0078125],[15.53193359375001,10.08847656249999],[15.399902343749998,10.216894531249991],[15.276074218750011,10.357373046874997],[15.200976562500017,10.484521484374993],[15.132226562500025,10.648486328124989],[15.068652343750015,10.851074218749998],[15.029882812500006,11.11367187499999],[15.035742187500006,11.2625],[15.055468750000017,11.368554687499994],[15.121972656250023,11.541259765625],[15.078027343750021,11.642578125],[15.087695312500015,11.724365234375],[15.08125,11.845507812499989],[15.059863281250017,11.907128906249994],[14.97382812500001,12.108349609374997],[14.95673828125001,12.13037109375],[14.880664062500015,12.269384765624991],[14.847070312500021,12.502099609374993],[14.76123046875,12.65561523437499],[14.62324218750001,12.729931640624997],[14.544726562500015,12.820214843749994],[14.516210937500006,12.979736328125],[14.461718750000015,13.021777343749989],[14.244824218750011,13.07734375],[14.063964843749998,13.07851562499999],[13.932324218750011,13.258496093749995],[13.763476562500017,13.489550781250003],[13.606347656250023,13.70458984375],[13.505761718750023,14.134423828124994],[13.448242187499998,14.380664062500003],[13.513671875,14.455517578124997],[13.642382812500017,14.630761718749994],[13.80712890625,14.966113281250003],[14.17822265625,15.48476562499999],[14.367968750000017,15.750146484374994],[14.746679687500007,16.14663085937499],[15.212109375000011,16.63388671874999],[15.47431640625001,16.908398437499994],[15.516699218750006,17.408496093750003],[15.5615234375,17.937255859374996],[15.595507812500017,18.337060546874994],[15.637597656250023,18.810839843750003],[15.672949218750006,19.206787109375],[15.698632812500021,19.49521484374999],[15.73505859375001,19.904052734375],[15.766210937500004,19.982568359374994],[15.948828125,20.303173828124994],[15.963183593750019,20.346191406249996],[15.929296875,20.399853515624997],[15.66845703125,20.67236328125],[15.587109375000011,20.733300781249994],[15.540332031250017,20.874902343749994],[15.607324218750023,20.954394531250003],[15.293652343750011,21.411523437499994],[15.215820312499998,21.467431640624994],[15.181835937500011,21.523388671874997],[15.177832031250006,21.60581054687499],[15.172265625000021,21.922070312499997],[15.088964843750007,22.41835937499999],[14.979003906250002,22.99619140624999],[15.347460937500017,23.160693359375003],[15.627148437500011,23.28574218749999],[15.984082031250011,23.445214843749994],[16.315039062500006,23.28183593749999],[16.79414062500001,23.04526367187499],[17.273242187500017,22.80869140624999],[17.752246093750017,22.57211914062499],[18.231347656250023,22.33554687499999],[18.710449218749996,22.09897460937499],[19.189453125,21.86240234374999],[19.668554687500006,21.625830078124988],[20.14765625000001,21.38925781249999],[20.626757812500017,21.152636718750003],[21.105859375000023,20.91611328124999],[21.5849609375,20.679492187500003],[22.0640625,20.442919921875],[22.543066406250006,20.206347656250003],[23.02216796875001,19.969775390625003],[23.501269531250017,19.733203125],[23.980273437500017,19.496630859375003]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Togo","sov_a3":"TGO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Togo","adm0_a3":"TGO","geou_dif":0,"geounit":"Togo","gu_a3":"TGO","su_dif":0,"subunit":"Togo","su_a3":"TGO","brk_diff":0,"name":"Togo","name_long":"Togo","brk_a3":"TGO","brk_name":"Togo","brk_group":null,"abbrev":"Togo","postal":"TG","formal_en":"Togolese Republic","formal_fr":"République Togolaise","note_adm0":null,"note_brk":null,"name_sort":"Togo","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":5,"pop_est":6019877,"gdp_md_est":5118,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TG","iso_a3":"TGO","iso_n3":"768","un_a3":"768","wb_a2":"TG","wb_a3":"TGO","woe_id":-99,"adm0_a3_is":"TGO","adm0_a3_us":"TGO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TGO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[0.900488281250006,10.993261718749991],[0.874804687500017,10.8857421875],[0.821875,10.752587890624994],[0.7875,10.710253906249987],[0.763378906250011,10.386669921874997],[0.779980468750011,10.359570312499997],[0.792187500000011,10.3515625],[0.958300781250017,10.242041015624991],[1.176171875000023,10.098388671875],[1.330078125,9.996972656249993],[1.342871093750006,9.962939453124987],[1.345117187500023,9.750195312499997],[1.347070312500023,9.567529296874994],[1.37890625,9.46298828124999],[1.3857421875,9.361669921874991],[1.42431640625,9.285009765624991],[1.566308593750023,9.137255859374989],[1.600195312500006,9.050048828125],[1.603808593750017,8.77099609375],[1.606640625000011,8.559277343749995],[1.624609375,8.270996093749998],[1.624609375,8.030224609374997],[1.624609375,7.725878906249988],[1.624707031250011,7.369189453124989],[1.624707031250011,6.997314453124999],[1.530957031250011,6.992431640624999],[1.58203125,6.877001953124989],[1.5908203125,6.772265624999989],[1.602929687500023,6.738085937499989],[1.577539062500023,6.687402343749993],[1.598535156250023,6.610205078124991],[1.639257812500005,6.58154296875],[1.7431640625,6.426269531249999],[1.777929687500006,6.294628906249997],[1.6109375,6.250830078124991],[1.62265625,6.216796875],[1.310644531250006,6.146875],[1.187207031250011,6.089404296874989],[1.18505859375,6.14501953125],[1.1396484375,6.155029296875],[1.08447265625,6.173779296874997],[1.049902343750006,6.20263671875],[1.002148437500011,6.268554687499999],[0.984960937500006,6.3203125],[0.912207031250006,6.328564453124996],[0.822460937500011,6.386376953124993],[0.736914062500006,6.452587890624996],[0.707226562500011,6.51875],[0.715429687500006,6.549316406249999],[0.702246093750006,6.580761718749997],[0.672753906250023,6.592529296874999],[0.595703125,6.7421875],[0.548046875000011,6.802490234375],[0.525585937500011,6.850927734374991],[0.533398437500011,6.888330078124994],[0.523046875,6.938867187499994],[0.5380859375,6.9796875],[0.579492187500023,7.004101562499997],[0.592480468750011,7.033984374999988],[0.59619140625,7.096630859374997],[0.619531250000023,7.2265625],[0.634765625,7.353662109374993],[0.591015625000011,7.388818359374993],[0.537304687500011,7.398730468749988],[0.509570312500017,7.435107421874988],[0.498925781250023,7.4951171875],[0.5,7.546875],[0.605175781250011,7.728222656249996],[0.58359375,8.145800781249989],[0.59921875,8.209570312499991],[0.647070312500006,8.253466796874989],[0.688085937500006,8.304248046874989],[0.686328125000017,8.354882812499994],[0.6162109375,8.479638671874993],[0.483300781250023,8.575292968749991],[0.415332031250017,8.65273437499999],[0.378613281250011,8.722021484374991],[0.37255859375,8.75927734375],[0.453125,8.813769531249989],[0.48876953125,8.851464843749994],[0.493261718750006,8.89492187499999],[0.460351562500023,8.97421875],[0.466113281250017,9.115332031249991],[0.497167968750006,9.221240234374989],[0.529003906250011,9.358300781249994],[0.525683593750017,9.398486328124989],[0.447558593750017,9.480273437499989],[0.4052734375,9.491455078125],[0.370996093750023,9.485546875],[0.289355468750017,9.431835937499997],[0.259960937500011,9.426025390625],[0.241503906250017,9.44189453125],[0.2333984375,9.463525390624994],[0.261914062500011,9.49560546875],[0.2515625,9.53564453125],[0.275488281250006,9.570605468749989],[0.327343750000011,9.586572265624994],[0.342578125000017,9.604150390624994],[0.272753906250017,9.620947265624991],[0.264550781250023,9.644726562499997],[0.26953125,9.667919921874997],[0.289648437500006,9.672314453124995],[0.311718750000011,9.670996093749991],[0.323925781250011,9.687597656249991],[0.334570312500006,9.803955078125],[0.343066406250017,9.84458007812499],[0.351855468750017,9.924902343749991],[0.362695312500023,10.236474609374993],[0.378613281250011,10.2685546875],[0.380859375,10.291845703124991],[0.331835937500017,10.306933593749989],[0.216015625000011,10.390527343749994],[0.148242187500017,10.454785156249997],[0.089257812500023,10.520605468749991],[0.039453125000023,10.563867187499994],[-0.057714843749977,10.630615234375],[-0.08632812499999,10.673046875],[-0.090185546874977,10.715527343749997],[-0.060595703124989,10.800585937499989],[-0.013867187499983,10.891357421875],[0.009423828125023,11.020996093749998],[-0.004736328124977,11.055566406249994],[-0.068603515625,11.115625],[0.159277343750006,11.069628906249989],[0.484179687500017,10.991992187499989],[0.49072265625,10.978173828124994],[0.49267578125,10.954980468749993],[0.549121093750017,10.955419921874991],[0.642968750000023,10.983056640624994],[0.900488281250006,10.993261718749991]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Tunisia","sov_a3":"TUN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tunisia","adm0_a3":"TUN","geou_dif":0,"geounit":"Tunisia","gu_a3":"TUN","su_dif":0,"subunit":"Tunisia","su_a3":"TUN","brk_diff":0,"name":"Tunisia","name_long":"Tunisia","brk_a3":"TUN","brk_name":"Tunisia","brk_group":null,"abbrev":"Tun.","postal":"TN","formal_en":"Republic of Tunisia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tunisia","name_alt":null,"mapcolor7":4,"mapcolor8":3,"mapcolor9":3,"mapcolor13":2,"pop_est":10486339,"gdp_md_est":81710,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TN","iso_a3":"TUN","iso_n3":"788","un_a3":"788","wb_a2":"TN","wb_a3":"TUN","woe_id":-99,"adm0_a3_is":"TUN","adm0_a3_us":"TUN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TUN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[10.957617187500063,33.72207031250005],[10.93134765625004,33.717431640624994],[10.883007812500066,33.69018554687502],[10.857421875,33.68715820312502],[10.784765625000032,33.71767578125002],[10.757031250000068,33.71748046874998],[10.72207031250005,33.738916015624994],[10.733886718750057,33.855615234374966],[10.74521484375006,33.88867187500006],[10.921972656250006,33.89311523437499],[11.017871093749989,33.82333984374998],[11.03359375,33.80502929687498],[11.037597656250028,33.785058593749994],[10.993066406249994,33.745947265625006],[10.957617187500063,33.72207031250005]]],[[[11.278027343750068,34.753808593749994],[11.123632812500063,34.68168945312496],[11.153027343750011,34.74458007812498],[11.254882812500057,34.82031250000006],[11.281054687500045,34.80219726562501],[11.278027343750068,34.753808593749994]]],[[[9.783984375000074,37.21142578125002],[9.830273437499983,37.13535156250006],[9.896386718750051,37.181640625],[9.879394531250055,37.21284179687504],[9.875585937499975,37.25415039062503],[9.988085937500074,37.257763671874955],[10.087402343750057,37.25126953124996],[10.196386718750063,37.205859375000045],[10.188769531250017,37.03388671874998],[10.334082031250034,36.86538085937505],[10.293261718750074,36.781494140625],[10.412304687499983,36.73183593750002],[10.518164062500063,36.79135742187506],[10.571289062500057,36.87944335937496],[10.766210937500063,36.930273437500034],[10.951367187500038,37.05927734375001],[11.053906250000068,37.07250976562506],[11.07705078125005,36.96669921874999],[11.126660156250038,36.874072265625045],[11.056542968750051,36.84145507812505],[10.967187500000051,36.74301757812498],[10.798144531249989,36.493115234374955],[10.642382812500074,36.419628906250004],[10.525683593749989,36.323339843750006],[10.48798828125004,36.2548828125],[10.476562500000028,36.175146484375006],[10.505761718750023,36.03242187499998],[10.590820312500028,35.88725585937499],[10.688964843750057,35.799511718749955],[10.783691406249972,35.77207031250006],[11.00429687500008,35.63383789062496],[11.00068359375004,35.551611328125006],[11.031542968750017,35.45385742187497],[11.043261718750017,35.33510742187502],[11.120117187500057,35.24028320312499],[10.955859375000074,35.03364257812498],[10.8662109375,34.88432617187504],[10.69091796875,34.67846679687502],[10.534863281250011,34.544726562500045],[10.200390625000068,34.34604492187506],[10.118359375000068,34.28007812500004],[10.06484375000008,34.21162109375004],[10.0400390625,34.14033203124998],[10.049023437500066,34.056298828124994],[10.158984375000072,33.850048828125004],[10.305273437500034,33.72827148437497],[10.454296875000011,33.6625],[10.713183593750017,33.68901367187496],[10.704296875000068,33.60966796874996],[10.722753906250006,33.514404296875],[10.828125,33.518896484375034],[10.8984375,33.53369140625003],[10.958007812500057,33.62631835937498],[11.084570312500006,33.56289062500002],[11.150292968750051,33.369238281250006],[11.257421875000034,33.30883789062506],[11.269921875000023,33.28632812499998],[11.23212890625004,33.271582031250006],[11.20263671874997,33.24921874999998],[11.234277343750023,33.23359375000001],[11.33808593750004,33.20947265624997],[11.400585937500066,33.22490234375002],[11.50458984375004,33.181933593750045],[11.502441406250028,33.15556640624999],[11.467187500000051,32.96572265625005],[11.459179687500011,32.897363281249966],[11.453906250000017,32.78168945312504],[11.453906250000017,32.64257812500003],[11.533789062500034,32.52495117187495],[11.535937500000017,32.47333984375001],[11.504980468750034,32.41367187500003],[11.358007812500006,32.34521484375003],[11.168261718750072,32.25673828125002],[11.005175781250074,32.17270507812506],[10.826367187500066,32.080664062500034],[10.771582031250006,32.02119140625001],[10.68300781250008,31.97539062499999],[10.60888671875,31.929541015624977],[10.595507812500017,31.88574218750003],[10.543652343750011,31.802539062500042],[10.47578125000004,31.736035156249983],[10.306054687500021,31.704833984375025],[10.274609375000011,31.684960937499994],[10.195996093750068,31.585107421874966],[10.159863281249981,31.54580078124997],[10.114941406250068,31.46376953125005],[10.172656250000017,31.250976562500025],[10.24335937500004,31.03212890625002],[10.257031250000068,30.940820312499994],[10.25605468750004,30.86494140624998],[10.216406250000063,30.78320312500003],[10.125976562500028,30.66596679687495],[10.05976562500004,30.580078125000025],[9.932519531250051,30.425341796874964],[9.895019531250028,30.387304687500034],[9.807421875000045,30.342236328124983],[9.637988281250074,30.282324218750034],[9.51875,30.22939453124999],[9.4580078125,30.465380859375042],[9.406054687500074,30.666796875000045],[9.363281250000057,30.832910156250023],[9.287890625000074,31.12534179687501],[9.224023437500021,31.373681640624998],[9.160253906250006,31.621337890625],[9.102343750000015,31.846142578124955],[9.044042968750032,32.072363281250034],[9.018945312500078,32.10537109375002],[8.844042968750074,32.21210937499998],[8.682910156250017,32.31044921875005],[8.515136718750028,32.42231445312501],[8.333398437500051,32.54360351562502],[8.304199218750028,32.69628906250006],[8.210937500000057,32.92670898437501],[8.1125,33.055322265624994],[8.075585937499994,33.089062499999955],[7.877246093750017,33.172119140625],[7.762695312500028,33.23310546874998],[7.73134765625005,33.26850585937501],[7.709179687500068,33.36230468750003],[7.627539062500034,33.54863281249996],[7.534375,33.717919921874994],[7.500195312500011,33.83247070312498],[7.495605468750057,33.976513671875004],[7.513867187500067,34.080517578124955],[7.554492187500074,34.125],[7.74853515625,34.25449218750006],[7.838281250000079,34.410302734374994],[7.949414062500068,34.46870117187501],[8.04560546875004,34.51269531249999],[8.12343750000008,34.56391601562504],[8.19277343750008,34.646289062500045],[8.24560546875,34.73408203124998],[8.254687500000072,34.82895507812503],[8.276855468750057,34.97949218749997],[8.312109375000063,35.084619140624994],[8.394238281250011,35.20385742187503],[8.35986328125,35.29960937499999],[8.316406250000028,35.403125],[8.329003906250021,35.58222656250001],[8.318066406250011,35.654931640624994],[8.282910156250068,35.71928710937496],[8.247070312500028,35.80180664062499],[8.245703125000034,35.870556640624955],[8.280273437500057,36.05097656250004],[8.306738281250034,36.188769531250045],[8.348730468750063,36.367968750000045],[8.33398437499997,36.418164062499955],[8.302734375,36.45561523437495],[8.208789062500045,36.4951171875],[8.207617187500006,36.518945312499994],[8.230761718749987,36.545263671875006],[8.369628906250055,36.63251953125004],[8.444238281250051,36.76074218750003],[8.506738281249994,36.7875],[8.601269531250066,36.83393554687504],[8.597656250000057,36.88388671874998],[8.576562500000023,36.937207031250004],[8.823535156250072,36.99760742187499],[9.058886718750045,37.15585937499998],[9.141992187500023,37.19462890624996],[9.687988281250055,37.34038085937499],[9.758886718750006,37.330273437499976],[9.838476562500063,37.30898437499999],[9.815527343750006,37.25463867187503],[9.783984375000074,37.21142578125002]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"United Republic of Tanzania","sov_a3":"TZA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"United Republic of Tanzania","adm0_a3":"TZA","geou_dif":0,"geounit":"Tanzania","gu_a3":"TZA","su_dif":0,"subunit":"Tanzania","su_a3":"TZA","brk_diff":0,"name":"Tanzania","name_long":"Tanzania","brk_a3":"TZA","brk_name":"Tanzania","brk_group":null,"abbrev":"Tanz.","postal":"TZ","formal_en":"United Republic of Tanzania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tanzania","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":2,"pop_est":41048532,"gdp_md_est":54250,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TZ","iso_a3":"TZA","iso_n3":"834","un_a3":"834","wb_a2":"TZ","wb_a3":"TZA","woe_id":-99,"adm0_a3_is":"TZA","adm0_a3_us":"TZA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"TZA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[39.71132812499999,-7.977441406250023],[39.65722656249997,-7.990527343750017],[39.63613281250005,-7.977832031250017],[39.60292968749999,-7.936132812499949],[39.66064453124997,-7.900585937499996],[39.71660156250002,-7.831542968749957],[39.846582031249994,-7.73027343750003],[39.890917968750074,-7.663476562500009],[39.907128906249994,-7.64921875000003],[39.89775390625002,-7.728125],[39.82441406250004,-7.900683593750017],[39.76181640625006,-7.911914062499988],[39.71132812499999,-7.977441406250023]]],[[[39.49648437499999,-6.174609375],[39.57304687500007,-6.38740234375001],[39.5631835937501,-6.427246093749957],[39.50917968749999,-6.451660156249957],[39.48095703124997,-6.45371093750002],[39.44736328125006,-6.419726562500017],[39.42363281250002,-6.347851562500026],[39.382617187500074,-6.364941406249955],[39.31269531250004,-6.279101562499974],[39.243457031250074,-6.275],[39.18232421875004,-6.172558593750025],[39.20625,-6.083203125000026],[39.19238281249997,-5.931054687500022],[39.26699218750005,-5.853125],[39.30898437499999,-5.721972656249974],[39.357226562500074,-5.811523437500014],[39.368261718750006,-5.951171874999957],[39.43330078125009,-6.115429687500025],[39.487890625,-6.166210937499969],[39.49648437499999,-6.174609375]]],[[[39.86503906250002,-4.906152343750037],[39.870996093749994,-4.95654296875],[39.8556640625001,-5.004003906249991],[39.85898437500006,-5.155175781249966],[39.85302734374997,-5.255468749999977],[39.79589843749997,-5.394433593750037],[39.74931640625002,-5.443847656249986],[39.7076171875,-5.429492187499989],[39.6734375,-5.406640625000036],[39.646777343750074,-5.368554687500008],[39.70107421875005,-5.113671875000036],[39.6734375,-4.927050781250031],[39.78076171875003,-4.944921875000034],[39.86503906250002,-4.906152343750037]]],[[[30.82363281250005,-0.999023437499943],[30.844726562500025,-1.002050781250034],[30.949707031249968,-1.002050781250034],[31.12753906250006,-1.002050781250034],[31.305273437500063,-1.002050781250034],[31.48310546875004,-1.002050781250034],[31.660839843750093,-1.002050781250034],[31.83857421875004,-1.002050781250034],[32.016406250000074,-1.002050781250034],[32.19414062500002,-1.002050781250034],[32.371875,-1.002050781250034],[32.549707031249994,-1.002050781250034],[32.72744140625005,-1.002050781250034],[32.905175781249994,-1.002050781250034],[33.08300781250003,-1.002050781250034],[33.26074218749997,-1.002050781250034],[33.43847656249997,-1.002050781250034],[33.616308593750006,-1.002050781250034],[33.794042968750006,-1.002050781250034],[33.90322265625005,-1.002050781250034],[33.979394531249994,-1.002050781250034],[34.05156250000007,-1.03984375],[34.13164062500002,-1.084570312499963],[34.34472656250003,-1.203613281249971],[34.55791015625001,-1.32255859374996],[34.77109375,-1.441601562499969],[34.984277343749994,-1.560546874999943],[35.1974609375001,-1.679589843749952],[35.41054687499999,-1.79863281249996],[35.6237304687501,-1.917578125000034],[35.83691406249997,-2.036621093749943],[36.05,-2.155664062499951],[36.263085937500044,-2.274609375000025],[36.47636718750007,-2.393554687500014],[36.68945312500003,-2.512597656250022],[36.90263671875002,-2.631640625000017],[37.11582031250006,-2.750585937500006],[37.32900390625005,-2.869628906250014],[37.54218750000004,-2.988574218750003],[37.643847656250074,-3.045410156250028],[37.65917968749997,-3.070019531249983],[37.676855468750006,-3.178417968750039],[37.68798828124997,-3.246191406249991],[37.68183593750004,-3.305761718749963],[37.62539062499999,-3.407226562500028],[37.608691406250074,-3.460253906249988],[37.608203125000074,-3.497070312500028],[37.62207031249997,-3.51152343749996],[37.6701171875001,-3.516796874999968],[37.71103515625006,-3.540820312499974],[37.72617187500006,-3.559765625000011],[37.757421875,-3.636132812500023],[37.79726562500005,-3.674414062500005],[37.887304687500006,-3.739257812499985],[38.04082031250002,-3.84980468750004],[38.19433593750003,-3.960351562499994],[38.34785156250004,-4.070898437499963],[38.50136718750005,-4.181445312500016],[38.65488281250006,-4.291894531249952],[38.808398437500074,-4.402441406250006],[38.96191406249997,-4.51298828124996],[39.1154296875001,-4.623535156250014],[39.19013671875004,-4.677246093749943],[39.221777343750006,-4.692382812500014],[39.20185546875003,-4.776464843749991],[39.12324218750009,-4.980468749999986],[39.11875,-5.065429687499986],[39.087988281250006,-5.165429687500008],[39.0583007812501,-5.231542968749977],[38.97822265625004,-5.518554687500014],[38.911035156249994,-5.625976562499957],[38.81923828125005,-5.877636718749983],[38.80468750000002,-6.070117187500031],[38.85527343750002,-6.204882812499946],[38.87402343750003,-6.33125],[38.98144531249997,-6.455078125000028],[39.06738281249997,-6.499316406249974],[39.12548828125003,-6.555957031249974],[39.228417968749994,-6.685253906250025],[39.28730468750004,-6.814941406249972],[39.47236328125004,-6.878613281249982],[39.5460937500001,-7.024023437500034],[39.51923828125004,-7.124121093749991],[39.43339843750002,-7.207031250000013],[39.353125,-7.341406250000034],[39.288476562499994,-7.517871093750003],[39.28701171875005,-7.787695312500006],[39.33046875000005,-7.746679687499991],[39.4284179687501,-7.81279296874996],[39.441015625,-8.011523437499946],[39.34003906250004,-8.24287109375001],[39.30898437499999,-8.350976562500009],[39.304003906250074,-8.44384765625],[39.37734375,-8.720800781250034],[39.48837890625006,-8.861816406249986],[39.48007812500006,-8.905957031249997],[39.451269531250006,-8.94296875],[39.64130859375004,-9.192480468750018],[39.62548828124997,-9.409472656250003],[39.69667968750005,-9.57841796874996],[39.727929687499994,-9.724804687500024],[39.774804687500044,-9.837109374999983],[39.783789062500006,-9.914550781249957],[39.725195312500055,-10.000488281249972],[39.86376953124997,-10.021972656249986],[39.94521484375005,-10.092285156250014],[39.98359375000004,-10.159570312499952],[40.0836914062501,-10.15664062499998],[40.13789062500004,-10.202636718750028],[40.21601562500004,-10.240625],[40.38876953125006,-10.353515624999941],[40.43554687500003,-10.410253906249963],[40.452539062499994,-10.442968749999963],[40.46357421875003,-10.464355468749972],[40.34746093750002,-10.551562499999974],[40.16621093750003,-10.6875],[39.98867187499999,-10.820800781250014],[39.81708984375004,-10.912402343750031],[39.694433593750006,-10.954785156249955],[39.56347656249997,-10.978515625],[39.43916015625004,-11.034570312499966],[39.321582031250074,-11.122558593749943],[39.170996093750055,-11.166894531250009],[38.9875,-11.167285156250003],[38.79472656250002,-11.228906250000023],[38.60332031250002,-11.345312500000034],[38.49179687500006,-11.413281250000026],[38.31513671875004,-11.311132812499991],[38.17656250000002,-11.278710937499964],[38.01728515625009,-11.282128906250037],[37.92021484375002,-11.294726562500031],[37.88535156250006,-11.316699218749974],[37.855078125,-11.379101562499983],[37.8292968750001,-11.481933593749972],[37.72480468750004,-11.58066406250002],[37.54169921875004,-11.675097656249974],[37.37285156250002,-11.710449218749986],[37.21835937500006,-11.6865234375],[37.113867187500006,-11.647167968749969],[37.05917968750006,-11.592187499999966],[36.97890625000005,-11.566992187499975],[36.87265625000006,-11.571289062499972],[36.77109375000006,-11.610351562500027],[36.67382812499997,-11.684277343749983],[36.51865234375006,-11.716210937500007],[36.30566406250003,-11.706347656249946],[36.191308593749994,-11.670703124999974],[36.17548828125004,-11.609277343749978],[36.08222656250004,-11.537304687499969],[35.91132812500004,-11.45468750000002],[35.78544921875007,-11.452929687500017],[35.704687500000055,-11.53212890624998],[35.63095703125006,-11.582031250000028],[35.564355468749994,-11.602343749999989],[35.50439453125003,-11.60478515624996],[35.45136718750004,-11.589550781249955],[35.418261718750074,-11.583203125],[35.18261718750003,-11.574804687499977],[34.95947265625003,-11.578125],[34.952636718749964,-11.54375],[34.93701171874997,-11.463476562500034],[34.890625,-11.3935546875],[34.85058593749997,-11.351953124999966],[34.80087890625006,-11.34091796875002],[34.77382812500005,-11.341699218750009],[34.75214843750004,-11.309472656250009],[34.726464843749994,-11.238183593749964],[34.68847656249997,-11.177441406250026],[34.638085937499994,-11.127148437499997],[34.60791015624997,-11.08046875],[34.59765625000003,-11.0375],[34.60566406250004,-10.990234374999986],[34.65234374999997,-10.87285156249996],[34.66708984375006,-10.792480468750028],[34.66181640625004,-10.71005859375002],[34.63652343750002,-10.625585937499949],[34.58359375,-10.525097656249997],[34.58955078125004,-10.496191406249963],[34.571582031250074,-10.427636718750037],[34.569726562500044,-10.379687499999944],[34.57998046874999,-10.319824218750014],[34.56992187500006,-10.241113281249966],[34.524218750000074,-10.073144531250023],[34.524218750000074,-10.03017578124998],[34.475976562499994,-9.948828125],[34.32783203125004,-9.756542968750011],[34.32089843750006,-9.731542968749977],[34.08857421875004,-9.537792968750026],[33.99560546875003,-9.495410156250003],[33.96210937500004,-9.531738281249943],[33.94960937499999,-9.565332031249952],[33.959375,-9.62734375],[33.953710937500006,-9.658203124999957],[33.943945312500006,-9.67216796874996],[33.88886718750004,-9.670117187499981],[33.8541992187501,-9.662988281249952],[33.766210937500006,-9.6109375],[33.69765625,-9.598144531249972],[33.52753906250004,-9.60751953125002],[33.46777343749997,-9.61972656250002],[33.42089843750003,-9.608007812500034],[33.330859375000074,-9.519140624999963],[33.22529296875004,-9.50048828124997],[33.13046875,-9.495898437500017],[32.97402343749999,-9.395019531249986],[32.937304687500074,-9.39970703124996],[32.91992187500003,-9.407421875000026],[32.86328125000003,-9.380859375000028],[32.75664062500002,-9.322265625],[32.60839843749997,-9.270507812500014],[32.48710937500002,-9.21269531249996],[32.43320312500006,-9.156347656250034],[32.31933593750003,-9.134863281250006],[32.22089843750004,-9.125585937499977],[32.129785156250044,-9.073339843749991],[32.0353515625001,-9.067382812500028],[31.94257812500004,-9.05400390624996],[31.921875,-9.019433593750023],[31.918652343750043,-8.942187500000017],[31.886132812499994,-8.921972656249977],[31.81806640625004,-8.902246093749952],[31.744726562500066,-8.90322265624998],[31.7,-8.914355468750031],[31.673632812500017,-8.908789062499963],[31.612792968749968,-8.863281250000014],[31.55625,-8.80546875],[31.534863281250097,-8.71328125],[31.44921874999997,-8.65390625],[31.35058593750003,-8.607031250000034],[31.07636718750004,-8.611914062499963],[31.033398437500097,-8.597656249999986],[30.968359375000063,-8.550976562499983],[30.89199218750005,-8.473730468749961],[30.830664062500063,-8.385546875000031],[30.776757812499994,-8.265820312499969],[30.75117187500004,-8.193652343750017],[30.720898437500097,-8.104394531250037],[30.653808593750025,-7.970898437500026],[30.558886718750014,-7.781933593749984],[30.485644531250014,-7.627148437499983],[30.406738281250025,-7.460644531249983],[30.37451171874997,-7.338671875],[30.313183593750097,-7.203710937499949],[30.212695312500017,-7.037890625000016],[30.16181640625004,-6.973046875000036],[30.10625,-6.915039062500028],[29.961816406249994,-6.803125],[29.79814453125002,-6.691894531249957],[29.70966796875004,-6.616894531250039],[29.590625,-6.394433593750023],[29.540820312500017,-6.313867187500036],[29.50625,-6.172070312500011],[29.480078125,-6.025],[29.490820312500066,-5.96542968750002],[29.596386718750043,-5.775976562499963],[29.60703125,-5.722656250000028],[29.59414062500005,-5.650781250000037],[29.542382812499994,-5.499804687500016],[29.503710937500014,-5.400976562499948],[29.47646484375005,-5.316601562499997],[29.42011718750004,-5.17617187499998],[29.342773437499968,-4.983105468749997],[29.323437500000036,-4.898828124999966],[29.32568359374997,-4.835644531249969],[29.36757812499999,-4.668847656250009],[29.40419921874999,-4.49667968750002],[29.40322265625005,-4.449316406249963],[29.71777343750003,-4.45585937499996],[29.76953124999997,-4.418066406249991],[29.94726562499997,-4.307324218749983],[30.147167968750093,-4.085351562499979],[30.18710937500006,-3.992871093749969],[30.26855468750003,-3.850488281249994],[30.348437500000074,-3.779785156249985],[30.379101562500097,-3.730761718750031],[30.4,-3.65390625],[30.425,-3.588867187499986],[30.52988281250001,-3.492480468749989],[30.631933593750006,-3.41865234375004],[30.624609375,-3.388671874999972],[30.61093750000006,-3.366406249999969],[30.62607421875006,-3.347363281249997],[30.68183593750004,-3.309375],[30.790234375000093,-3.274609375000011],[30.811425781250048,-3.200585937500023],[30.811132812500002,-3.116406250000011],[30.79355468750006,-3.069335937500014],[30.796875,-3.015136718749986],[30.780273437500025,-2.984863281249957],[30.709472656249968,-2.977246093749997],[30.60429687500007,-2.935253906249969],[30.515039062499998,-2.917578125],[30.45556640625003,-2.893164062500006],[30.433496093749994,-2.874511718750028],[30.4240234375001,-2.82402343749996],[30.44130859375005,-2.769042968749943],[30.450488281250074,-2.753222656250017],[30.4733398437501,-2.6943359375],[30.434375,-2.658886718749983],[30.424218750000048,-2.641601562500014],[30.441992187500006,-2.613476562499969],[30.533691406249968,-2.426269531250014],[30.55361328125005,-2.400097656250011],[30.59335937500006,-2.39677734374996],[30.656640625000055,-2.373828124999989],[30.71484375000003,-2.363476562500011],[30.7625,-2.371679687499991],[30.797656250000017,-2.362695312500037],[30.828710937500002,-2.338476562499977],[30.854980468749968,-2.265429687500017],[30.8765625,-2.143359375000017],[30.86464843749999,-2.044042968749948],[30.819140625000017,-1.967480468749983],[30.806738281250006,-1.850683593749991],[30.827539062500055,-1.693652343749974],[30.812597656250002,-1.56308593750002],[30.76220703124997,-1.458691406249983],[30.71074218750007,-1.396777343749974],[30.631933593750006,-1.36748046874996],[30.50810546875007,-1.208203125000026],[30.470214843749968,-1.13115234374996],[30.47705078124997,-1.0830078125],[30.509960937500097,-1.067285156249994],[30.51992187499999,-1.0625],[30.598730468750063,-1.069726562499966],[30.67275390625005,-1.051367187499949],[30.741992187500017,-1.007519531249997],[30.809179687500063,-0.994921875],[30.82363281250005,-0.999023437499943]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Uganda","sov_a3":"UGA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uganda","adm0_a3":"UGA","geou_dif":0,"geounit":"Uganda","gu_a3":"UGA","su_dif":0,"subunit":"Uganda","su_a3":"UGA","brk_diff":0,"name":"Uganda","name_long":"Uganda","brk_a3":"UGA","brk_name":"Uganda","brk_group":null,"abbrev":"Uga.","postal":"UG","formal_en":"Republic of Uganda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uganda","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":4,"pop_est":32369558,"gdp_md_est":39380,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"UG","iso_a3":"UGA","iso_n3":"800","un_a3":"800","wb_a2":"UG","wb_a3":"UGA","woe_id":-99,"adm0_a3_is":"UGA","adm0_a3_us":"UGA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"UGA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[33.90322265625002,-1.002050781250006],[33.794042968750006,-1.002050781250006],[33.616308593750006,-1.002050781250006],[33.4384765625,-1.002050781250006],[33.2607421875,-1.002050781250006],[33.0830078125,-1.002050781250006],[32.90517578125002,-1.002050781250006],[32.72744140625002,-1.002050781250006],[32.54970703125002,-1.002050781250006],[32.371875,-1.002050781250006],[32.19414062500002,-1.002050781250006],[32.01640625000002,-1.002050781250006],[31.838574218750008,-1.002050781250006],[31.66083984375001,-1.002050781250006],[31.483105468750008,-1.002050781250006],[31.305273437500006,-1.002050781250006],[31.127539062500002,-1.002050781250006],[30.94970703125,-1.002050781250006],[30.8447265625,-1.002050781250006],[30.823632812500023,-0.9990234375],[30.809179687500006,-0.994921875],[30.741992187500017,-1.007519531250011],[30.67275390625002,-1.051367187500006],[30.598730468750002,-1.069726562500009],[30.519921875000023,-1.0625],[30.509960937500008,-1.067285156250009],[30.46992187500001,-1.066015625],[30.412304687500008,-1.063085937500005],[30.36025390625002,-1.074609375],[30.32050781250001,-1.113085937500003],[30.279882812500006,-1.178808593750006],[30.20703125,-1.254199218750003],[30.15,-1.32109375],[30.1015625,-1.36865234375],[29.99052734375002,-1.446972656250011],[29.93007812500002,-1.469921875000011],[29.9,-1.46630859375],[29.881640625000017,-1.451757812500005],[29.846875,-1.351660156250006],[29.825390625,-1.335546875],[29.609667968750014,-1.387109375],[29.576953125000014,-1.387890625000011],[29.579980468750023,-1.356738281250003],[29.5640625,-1.121386718750003],[29.561914062500023,-0.97734375],[29.59003906250001,-0.887109375],[29.606445312499996,-0.783105468750009],[29.608203125000017,-0.691308593750009],[29.64785156250002,-0.535253906250006],[29.633203125000023,-0.441699218750003],[29.684375,-0.113574218750003],[29.697851562500006,-0.060205078125009],[29.717675781250023,0.098339843749997],[29.74970703125001,0.147216796875],[29.77783203125,0.166357421874991],[29.81464843750001,0.263623046874997],[29.88544921875001,0.4189453125],[29.934472656250023,0.4990234375],[29.923828125,0.673925781249991],[29.931640625,0.792871093749994],[29.942871093750004,0.819238281249994],[30.04736328125,0.863525390625],[30.18291015625002,0.973486328124992],[30.24013671875002,1.102783203125],[30.321093750000014,1.185302734375],[30.477832031250014,1.238818359374989],[30.478125,1.239062499999989],[30.942578125,1.6828125],[31.158789062500006,1.922021484374994],[31.252734375000014,2.044580078124994],[31.25605468750001,2.088476562499991],[31.27402343750001,2.146289062499989],[31.236328125,2.191357421874997],[31.19140625,2.232275390624991],[31.176367187500006,2.270068359374989],[31.137597656250023,2.288867187499989],[31.082128906250002,2.2880859375],[31.045312500000023,2.315527343749991],[31.00361328125001,2.369384765625],[30.961914062499996,2.403271484374997],[30.830078125,2.400439453124989],[30.72861328125001,2.455371093749989],[30.72988281250002,2.5302734375],[30.76953125,2.677978515625],[30.846679687499996,2.847021484374991],[30.85078125000001,2.893652343749991],[30.83994140625001,2.933496093749994],[30.821386718750002,2.967578124999989],[30.78652343750002,3.001367187499994],[30.754003906250002,3.041796874999989],[30.779296875,3.163378906249989],[30.82783203125001,3.282617187499994],[30.86757812500002,3.342138671874991],[30.90644531250001,3.408935546875],[30.895312500000017,3.463671874999989],[30.838574218750015,3.49072265625],[30.868164062499996,3.544140625],[30.92939453125001,3.634082031249989],[31.04804687500001,3.725],[31.15234375,3.785595703124997],[31.221972656250014,3.785937499999989],[31.357421875,3.737597656249988],[31.47998046875,3.680468749999989],[31.54716796875002,3.677587890624991],[31.62890625,3.701464843749989],[31.798046875,3.802636718749994],[31.838671875000014,3.770458984374997],[31.88828125,3.709082031249991],[31.941796875000023,3.607568359374994],[32.048242187500016,3.561181640624994],[32.09941406250002,3.529199218749994],[32.13593750000001,3.519726562499997],[32.15625,3.528027343749997],[32.19667968750002,3.6078125],[32.24550781250002,3.651318359374997],[32.33574218750002,3.706201171874994],[32.534765625,3.749951171874997],[32.67695312500001,3.76318359375],[32.73710937500002,3.772705078125],[32.83808593750001,3.798486328124994],[32.99726562500001,3.880175781249988],[33.15410156250002,3.774707031249989],[33.32431640625,3.754345703124997],[33.489355468750006,3.755078125],[33.53955078124999,3.787109375],[33.568457031250006,3.81171875],[33.74160156250002,3.985253906249994],[33.97607421875,4.22021484375],[34.13203125000001,3.88916015625],[34.18574218750001,3.869775390624994],[34.17822265625,3.840869140624989],[34.1650390625,3.81298828125],[34.26708984375,3.733154296875],[34.39287109375002,3.691503906249991],[34.43769531250001,3.650585937499997],[34.44179687500002,3.60625],[34.3994140625,3.412695312499991],[34.4072265625,3.357519531249991],[34.447851562500006,3.163476562499994],[34.522558593750006,3.119970703124991],[34.58916015625002,2.924755859374997],[34.723242187500006,2.841943359374994],[34.74248046875002,2.818115234375],[34.7734375,2.723437499999989],[34.814453125,2.619824218749997],[34.8466796875,2.595751953124989],[34.8662109375,2.589697265624991],[34.90576171875,2.4796875],[34.88300781250001,2.417919921874997],[34.91396484375002,2.230175781249997],[34.96406250000001,2.062402343749994],[34.9775390625,1.861914062499991],[34.978222656250004,1.773632812499997],[34.97646484375002,1.719628906249994],[34.965234375000016,1.643359374999989],[34.94121093750002,1.599267578124994],[34.89833984375002,1.556494140624991],[34.85097656250002,1.489013671875],[34.8095703125,1.416699218749997],[34.78359375000002,1.381152343749989],[34.803808593750006,1.272851562499994],[34.79863281250002,1.24453125],[34.78759765625,1.230712890625],[34.72675781250001,1.214257812499994],[34.649121093750004,1.185302734375],[34.60195312500002,1.156445312499997],[34.535253906250006,1.1015625],[34.48173828125002,1.042138671874994],[34.41083984375001,0.867285156249991],[34.292578125,0.73125],[34.272558593750006,0.686425781249994],[34.16093750000002,0.605175781249997],[34.11171875000002,0.505126953125],[34.08056640625,0.382470703124994],[34.037207031250006,0.29453125],[33.94316406250002,0.173779296874997],[33.921484375,-0.016992187500009],[33.924414062500006,-0.397851562500009],[33.9,-0.831640625],[33.90322265625002,-1.002050781250006]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"French Southern and Antarctic Lands","adm0_a3":"ATF","geou_dif":0,"geounit":"French Southern and Antarctic Lands","gu_a3":"ATF","su_dif":0,"subunit":"French Southern and Antarctic Lands","su_a3":"ATF","brk_diff":0,"name":"Fr. S. Antarctic Lands","name_long":"French Southern and Antarctic Lands","brk_a3":"ATF","brk_name":"Fr. S. and Antarctic Lands","brk_group":null,"abbrev":"Fr. S.A.L.","postal":"TF","formal_en":"Territory of the French Southern and Antarctic Lands","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"French Southern and Antarctic Lands","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":140,"gdp_md_est":16,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TF","iso_a3":"ATF","iso_n3":"260","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"ATF","adm0_a3_us":"ATF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Seven seas (open ocean)","region_un":"Seven seas (open ocean)","subregion":"Seven seas (open ocean)","region_wb":"Sub-Saharan Africa","name_len":22,"long_len":35,"abbrev_len":10,"tiny":2,"homepart":-99,"filename":"ATF.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[69.2824218750001,-49.05888671875002],[69.22060546874998,-49.06679687500003],[69.20156250000005,-49.03427734374998],[69.20390625000007,-48.9912109375],[69.16953125,-48.957031249999964],[69.15009765625004,-48.91904296875004],[69.16718750000004,-48.88291015624996],[69.26640625000002,-48.878808593750016],[69.36875,-48.890429687499974],[69.39472656250004,-48.951171875000014],[69.32119140625,-49.03427734374998],[69.2824218750001,-49.05888671875002]]],[[[69.18486328125002,-49.10957031250003],[69.26513671875003,-49.11542968749999],[69.31425781250007,-49.10625],[69.53496093750002,-48.97431640625002],[69.59277343749997,-48.97099609375005],[69.5873046875,-49.07197265625002],[69.64404296875003,-49.11738281250003],[69.57226562499997,-49.129003906250006],[69.43623046875004,-49.124023437499964],[69.40507812500002,-49.18173828125],[69.5423828125,-49.25566406250005],[69.6107421875,-49.26582031249999],[69.6666015625,-49.26494140624999],[69.7707031250001,-49.24814453125003],[69.85439453125,-49.221582031249945],[69.983984375,-49.15986328124998],[70.06132812500002,-49.13603515625002],[70.2083984375,-49.13496093749997],[70.28496093750002,-49.076464843750045],[70.32021484375004,-49.05859374999996],[70.40625,-49.061132812500034],[70.48427734375005,-49.08388671874996],[70.53085937500006,-49.13691406250002],[70.55546875000007,-49.20146484375002],[70.53681640625008,-49.26552734375001],[70.48505859375003,-49.327636718749964],[70.3898437500001,-49.365625],[70.41142578125007,-49.410937499999974],[70.38613281250005,-49.433984374999966],[70.33837890624997,-49.43525390625005],[70.29765625000007,-49.42480468749995],[70.23779296875003,-49.37158203124994],[70.16582031250002,-49.34296874999998],[69.99316406250003,-49.344921875000026],[69.915625,-49.348535156249966],[69.9021484375,-49.3892578125],[69.86113281250002,-49.42050781249997],[69.81835937500001,-49.43769531250001],[69.75996093750003,-49.430175781249986],[69.74921875000004,-49.447558593749974],[69.78027343749997,-49.490136718749945],[69.85595703125003,-49.544042968750006],[69.98642578125006,-49.58164062500002],[70.062890625,-49.58935546875],[70.07343750000004,-49.51777343749998],[70.16582031250002,-49.509375],[70.2477539062501,-49.53066406250003],[70.30712890625003,-49.58349609374996],[70.25878906250001,-49.60078125000002],[70.2162109375,-49.628808593749945],[70.20742187500005,-49.665039062499964],[70.12431640625002,-49.70439453124998],[70.07509765625,-49.708593750000034],[69.91894531249997,-49.68935546875003],[69.82607421875,-49.64492187499995],[69.8039062500001,-49.613574218750045],[69.74667968750005,-49.60175781250004],[69.68203125000005,-49.6421875],[69.612890625,-49.65097656250003],[69.47763671875006,-49.617382812500026],[69.3527343750001,-49.56318359374999],[69.2746093750001,-49.5427734375],[69.153125,-49.5296875],[69.08593750000003,-49.65292968749998],[68.99296875000007,-49.704980468750016],[68.87265625,-49.709863281249945],[68.81474609375002,-49.69960937499999],[68.7828125,-49.651269531249994],[68.7912109375001,-49.59960937499996],[68.81054687499997,-49.550195312500016],[68.8483398437501,-49.49960937500001],[68.87207031249997,-49.44433593750003],[68.8619140625,-49.3921875],[68.81845703125006,-49.35390625],[68.84140625,-49.28535156249996],[68.79882812499997,-49.23164062500004],[68.81357421875006,-49.192089843749976],[68.88339843750006,-49.16494140624995],[68.85380859375007,-49.141308593750026],[68.81669921875007,-49.13505859374999],[68.79013671875006,-49.103710937500004],[68.76953125000003,-49.06591796875003],[68.79658203125004,-48.994726562500006],[68.83691406249997,-48.92617187499998],[68.83203124999997,-48.848730468750006],[68.90029296875004,-48.77558593750003],[68.95869140625003,-48.69384765624999],[69.00244140624997,-48.66123046875],[69.0572265625,-48.65644531250001],[69.08125,-48.679296874999956],[69.09306640625007,-48.72392578124999],[69.07158203125002,-48.752832031250016],[69.12275390625004,-48.76601562499995],[69.13613281250005,-48.86103515625003],[69.1041015625,-48.89990234374996],[69.09941406250002,-48.93759765625],[69.03271484375003,-49.01757812499995],[69.05214843750005,-49.08193359375],[69.18486328125002,-49.10957031250003]]],[[[51.83457031250006,-46.43994140625],[51.76171874999997,-46.448730468750014],[51.69658203125002,-46.428125],[51.659277343750055,-46.37363281249999],[51.74189453125009,-46.32685546874997],[51.78417968750003,-46.35888671875],[51.81542968749997,-46.39472656250002],[51.83457031250006,-46.43994140625]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Zimbabwe","sov_a3":"ZWE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Zimbabwe","adm0_a3":"ZWE","geou_dif":0,"geounit":"Zimbabwe","gu_a3":"ZWE","su_dif":0,"subunit":"Zimbabwe","su_a3":"ZWE","brk_diff":0,"name":"Zimbabwe","name_long":"Zimbabwe","brk_a3":"ZWE","brk_name":"Zimbabwe","brk_group":null,"abbrev":"Zimb.","postal":"ZW","formal_en":"Republic of Zimbabwe","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Zimbabwe","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":3,"mapcolor13":9,"pop_est":12619600,"gdp_md_est":9323,"pop_year":0,"lastcensus":2002,"gdp_year":0,"economy":"5. Emerging region: G20","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ZW","iso_a3":"ZWE","iso_n3":"716","un_a3":"716","wb_a2":"ZW","wb_a3":"ZWE","woe_id":-99,"adm0_a3_is":"ZWE","adm0_a3_us":"ZWE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ZWE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.287890625000014,-22.40205078125001],[31.197265625,-22.34492187500001],[31.07343750000001,-22.30781250000001],[30.916113281250002,-22.29072265625001],[30.71162109375001,-22.2978515625],[30.460156250000015,-22.329003906250005],[30.1904296875,-22.291113281250002],[29.90234375,-22.184179687500002],[29.6630859375,-22.1462890625],[29.377441406249996,-22.19277343750001],[29.36484375,-22.193945312500006],[29.315234375000014,-22.15771484375],[29.237207031250023,-22.07949218750001],[29.106835937500023,-22.065722656250003],[29.07148437500001,-22.047460937500006],[29.042382812500023,-22.018359375],[29.023339843750023,-21.98125],[29.01582031250001,-21.93994140625],[29.03730468750001,-21.811328125],[29.02558593750001,-21.796875],[28.99072265625,-21.78144531250001],[28.919335937500023,-21.766015625],[28.74775390625001,-21.707617187500006],[28.532031250000017,-21.65126953125001],[28.181640625,-21.58935546875],[28.04560546875001,-21.573046875],[28.01406250000002,-21.55419921875],[27.974609375,-21.50673828125001],[27.907421875,-21.35908203125001],[27.844140625000023,-21.261523437500003],[27.693457031250006,-21.11103515625001],[27.66943359375,-21.0642578125],[27.67695312500001,-20.94482421875],[27.688085937500006,-20.848339843750008],[27.704296875,-20.76640625],[27.69697265625001,-20.689746093750003],[27.69482421875,-20.59453125],[27.69960937500002,-20.53066406250001],[27.679296875,-20.503027343750006],[27.624609375,-20.48359375000001],[27.468945312500008,-20.47480468750001],[27.28076171875,-20.47871093750001],[27.274609375,-20.3818359375],[27.256738281250023,-20.23203125],[27.221484375000017,-20.145800781250003],[27.17822265625,-20.10097656250001],[27.091796875,-20.05419921875],[26.91669921875001,-19.99013671875001],[26.678222656249996,-19.89277343750001],[26.474609375,-19.748632812500006],[26.241015625000017,-19.5693359375],[26.168066406250002,-19.53828125000001],[26.081933593750023,-19.369921875],[25.95068359375,-19.08173828125001],[25.959179687500008,-18.98564453125],[25.939355468750023,-18.93867187500001],[25.811914062500023,-18.79707031250001],[25.78369140625,-18.723535156250005],[25.76123046875,-18.64921875],[25.55830078125001,-18.441796875],[25.489257812499996,-18.35126953125001],[25.43671875000001,-18.234960937500006],[25.384375,-18.14199218750001],[25.340234375000023,-18.1044921875],[25.28242187500001,-18.04121093750001],[25.242285156250006,-17.969042968750003],[25.224023437500023,-17.91523437500001],[25.239062500000017,-17.843066406250003],[25.2587890625,-17.793554687500006],[25.451757812500002,-17.84511718750001],[25.55712890625,-17.84951171875001],[25.6396484375,-17.82412109375001],[25.741601562500023,-17.858203125],[25.86328125,-17.951953125],[25.995898437500017,-17.969824218750006],[26.139550781250023,-17.91171875],[26.333398437500023,-17.929296875],[26.577539062500023,-18.022558593750002],[26.779882812500006,-18.04150390625],[27.020800781250014,-17.95839843750001],[27.23574218750002,-17.7283203125],[27.437890625000023,-17.51191406250001],[27.63671875,-17.262109375],[27.75654296875001,-17.060351562500003],[27.932226562500002,-16.89619140625001],[28.16376953125001,-16.76972656250001],[28.399804687500023,-16.66279296875001],[28.76064453125002,-16.53193359375001],[28.760546875000014,-16.53212890625001],[28.832714843750015,-16.424121093750003],[28.856738281250014,-16.30615234375],[28.856738281250014,-16.14228515625001],[28.875585937500006,-16.0361328125],[28.913085937499996,-15.987792968749998],[28.97304687500002,-15.95009765625001],[29.050585937500014,-15.901171875],[29.287890625000017,-15.776464843750006],[29.487304687500004,-15.696777343749998],[29.729589843750006,-15.644628906250004],[29.994921875000017,-15.644042968750002],[30.25068359375001,-15.643457031250007],[30.39609375,-15.64306640625],[30.398144531250015,-15.80078125],[30.409375,-15.978222656250011],[30.437792968750017,-15.995312500000011],[30.630175781250017,-15.999218750000011],[30.938769531250014,-16.01171875],[31.236230468750023,-16.02363281250001],[31.426171875000023,-16.15234375],[31.48984375,-16.1796875],[31.687597656250006,-16.21416015625],[31.939843750000023,-16.428808593750006],[32.243261718750006,-16.44873046875],[32.45195312500002,-16.515722656250006],[32.63583984375,-16.589453125],[32.741796875,-16.67763671875001],[32.81025390625001,-16.69765625],[32.9029296875,-16.704199218750006],[32.94804687500002,-16.71230468750001],[32.937890625000016,-16.775976562500002],[32.87626953125002,-16.88359375],[32.884375,-17.037792968750008],[32.969335937500006,-17.2515625],[32.98076171875002,-17.4375],[32.9546875,-17.765429687500003],[32.95556640625,-18.08291015625001],[32.96464843750001,-18.1962890625],[32.978515625,-18.271484375],[32.99638671875002,-18.312597656250006],[32.99306640625002,-18.35957031250001],[32.942480468750006,-18.49267578125],[32.90166015625002,-18.632910156250006],[32.90029296875002,-18.6890625],[32.88457031250002,-18.728515625],[32.8544921875,-18.763671875],[32.72197265625002,-18.828417968750003],[32.69921875,-18.868457031250003],[32.69970703125,-18.94091796875],[32.71650390625001,-19.00185546875001],[32.7662109375,-19.02431640625001],[32.826171875,-19.05878906250001],[32.84980468750001,-19.10439453125001],[32.85,-19.152441406250006],[32.83095703125002,-19.24140625000001],[32.77763671875002,-19.388769531250006],[32.83076171875001,-19.558203125],[32.89042968750002,-19.668066406250006],[32.97265625,-19.79541015625],[33.00673828125002,-19.873828125],[33.0048828125,-19.93017578125],[32.9927734375,-19.984863281249996],[32.86962890625,-20.2171875],[32.780859375,-20.36152343750001],[32.67255859375001,-20.51611328125],[32.529296875,-20.6130859375],[32.49238281250001,-20.659765625],[32.47763671875,-20.712988281250002],[32.48281250000002,-20.82890625],[32.476171875,-20.95009765625001],[32.35361328125,-21.136523437500003],[32.429785156250006,-21.29707031250001],[32.41240234375002,-21.311816406250003],[32.37109375,-21.33486328125001],[32.19472656250002,-21.5154296875],[32.01630859375001,-21.698046875],[31.88593750000001,-21.83154296875],[31.737695312500023,-21.9833984375],[31.571484375,-22.15351562500001],[31.429492187500014,-22.298828125],[31.287890625000014,-22.40205078125001]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Zambia","sov_a3":"ZMB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Zambia","adm0_a3":"ZMB","geou_dif":0,"geounit":"Zambia","gu_a3":"ZMB","su_dif":0,"subunit":"Zambia","su_a3":"ZMB","brk_diff":0,"name":"Zambia","name_long":"Zambia","brk_a3":"ZMB","brk_name":"Zambia","brk_group":null,"abbrev":"Zambia","postal":"ZM","formal_en":"Republic of Zambia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Zambia","name_alt":null,"mapcolor7":5,"mapcolor8":8,"mapcolor9":5,"mapcolor13":13,"pop_est":11862740,"gdp_md_est":17500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ZM","iso_a3":"ZMB","iso_n3":"894","un_a3":"894","wb_a2":"ZM","wb_a3":"ZMB","woe_id":-99,"adm0_a3_is":"ZMB","adm0_a3_us":"ZMB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"ZMB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[32.919921875,-9.407421875000011],[32.92333984375,-9.433984375],[32.95107421875002,-9.484179687500003],[32.97988281250002,-9.5203125],[32.98212890625001,-9.573632812500009],[32.99599609375002,-9.622851562500003],[33.03779296875001,-9.635058593750003],[33.07246093750001,-9.63818359375],[33.1044921875,-9.602636718750006],[33.148046875,-9.603515625],[33.19570312500002,-9.626171875000011],[33.21269531250001,-9.683007812500009],[33.25,-9.759570312500003],[33.31044921875002,-9.811816406250003],[33.35097656250002,-9.862207031250007],[33.33710937500001,-9.954003906250009],[33.3115234375,-10.037988281250009],[33.3935546875,-10.120898437500003],[33.500097656250006,-10.19970703125],[33.52890625,-10.234667968750003],[33.53759765625,-10.3515625],[33.5537109375,-10.391308593750011],[33.62617187500001,-10.488574218750003],[33.66152343750002,-10.553125],[33.65908203125002,-10.590527343750011],[33.46474609375002,-10.783105468750009],[33.403125,-10.8017578125],[33.34492187500001,-10.812695312500011],[33.29277343750002,-10.85234375],[33.261328125,-10.893359375],[33.27275390625002,-10.9150390625],[33.29326171875002,-10.98115234375001],[33.33867187500002,-11.085156250000011],[33.37978515625002,-11.157910156250011],[33.34550781250001,-11.249121093750006],[33.26835937500001,-11.40390625],[33.23271484375002,-11.417675781250011],[33.22636718750002,-11.534863281250011],[33.25,-11.57763671875],[33.28828125000001,-11.611132812500003],[33.30390625,-11.690820312500009],[33.30507812500002,-11.8],[33.30097656250001,-11.888183593749998],[33.25234375000002,-12.112597656250003],[33.34013671875002,-12.308300781250011],[33.37001953125002,-12.3296875],[33.49140625000001,-12.3310546875],[33.512304687500006,-12.347753906250004],[33.48320312500002,-12.403417968750004],[33.4306640625,-12.46044921875],[33.39794921875,-12.48984375],[33.24345703125002,-12.556542968750009],[33.021582031250006,-12.63046875],[32.975195312500006,-12.701367187500011],[32.94560546875001,-12.804394531250011],[32.97050781250002,-12.86474609375],[33,-12.899609375000011],[32.99042968750001,-12.989453125000011],[32.97109375000002,-13.084277343750003],[32.977636718750006,-13.158886718750011],[32.96757812500002,-13.225],[32.938574218750006,-13.257421875],[32.89970703125002,-13.35703125],[32.85185546875002,-13.45703125],[32.8140625,-13.502734375],[32.758398437500006,-13.55029296875],[32.67041015625,-13.590429687500006],[32.67207031250001,-13.6103515625],[32.77177734375002,-13.656542968750003],[32.797460937500006,-13.6884765625],[32.80673828125,-13.710253906250003],[32.78535156250001,-13.731445312499998],[32.76513671874999,-13.761035156250003],[32.81103515625,-13.791601562500006],[32.8671875,-13.8173828125],[32.92031250000002,-13.883886718750006],[32.96757812500002,-13.976855468750001],[32.98125,-14.009375],[32.99208984375002,-14.022167968750011],[33.00927734374999,-14.023730468750003],[33.04238281250002,-14.010058593750001],[33.103613281250006,-13.959179687500011],[33.148046875,-13.94091796875],[33.201757812500006,-14.01337890625001],[32.98710937500002,-14.0849609375],[32.87451171875,-14.122460937500009],[32.55322265625,-14.229589843750004],[32.27285156250002,-14.323046875],[32.19990234375001,-14.3408203125],[32.05449218750002,-14.386523437500003],[31.98212890625001,-14.414453125],[31.728906250000023,-14.49609375],[31.623046875,-14.53671875],[31.537890625000017,-14.5771484375],[31.32851562500002,-14.6376953125],[31.130859375,-14.694628906250003],[30.915136718750002,-14.753320312500009],[30.673339843749996,-14.819140625],[30.537695312500002,-14.866503906250001],[30.44609375000002,-14.907519531250001],[30.231835937500023,-14.990332031250004],[30.221777343750006,-15.010546875],[30.225,-15.06689453125],[30.25214843750001,-15.183203125],[30.3056640625,-15.288867187500003],[30.350585937499996,-15.349707031250004],[30.379882812499996,-15.505859375],[30.39609375,-15.64306640625],[30.25068359375001,-15.643457031250007],[29.994921875000017,-15.644042968750002],[29.729589843750006,-15.644628906250004],[29.487304687500004,-15.696777343749998],[29.287890625000017,-15.776464843750006],[29.050585937500014,-15.901171875],[28.97304687500002,-15.95009765625001],[28.913085937499996,-15.987792968749998],[28.875585937500006,-16.0361328125],[28.856738281250014,-16.14228515625001],[28.856738281250014,-16.30615234375],[28.832714843750015,-16.424121093750003],[28.760546875000014,-16.53212890625001],[28.76064453125002,-16.53193359375001],[28.399804687500023,-16.66279296875001],[28.16376953125001,-16.76972656250001],[27.932226562500002,-16.89619140625001],[27.75654296875001,-17.060351562500003],[27.63671875,-17.262109375],[27.437890625000023,-17.51191406250001],[27.23574218750002,-17.7283203125],[27.020800781250014,-17.95839843750001],[26.779882812500006,-18.04150390625],[26.577539062500023,-18.022558593750002],[26.333398437500023,-17.929296875],[26.139550781250023,-17.91171875],[25.995898437500017,-17.969824218750006],[25.86328125,-17.951953125],[25.741601562500023,-17.858203125],[25.6396484375,-17.82412109375001],[25.55712890625,-17.84951171875001],[25.451757812500002,-17.84511718750001],[25.2587890625,-17.793554687500006],[25.092187500000023,-17.634375],[25.001757812500017,-17.56855468750001],[24.932421875000017,-17.54345703125],[24.73291015625,-17.51777343750001],[24.27490234375,-17.481054687500006],[24.227148437500006,-17.489550781250003],[24.036914062500017,-17.52089843750001],[23.79921875000002,-17.56015625],[23.59492187500001,-17.599414062500003],[23.380664062500017,-17.640625],[23.181640625,-17.474414062500003],[22.955859375000014,-17.285742187500006],[22.721972656250017,-17.075292968750002],[22.545996093750006,-16.910253906250006],[22.45947265625,-16.81513671875001],[22.305078125000023,-16.689550781250006],[22.193945312500006,-16.628125],[22.150683593750017,-16.59716796875],[22.04023437500001,-16.262792968750002],[21.979785156250017,-15.955566406249998],[21.979785156250017,-15.72412109375],[21.9796875,-15.403222656250009],[21.979589843750006,-15.082324218750001],[21.9794921875,-14.761425781250011],[21.97939453125002,-14.440527343750004],[21.979296875000017,-14.119628906249998],[21.979101562500006,-13.798730468750009],[21.979101562500006,-13.47773437500001],[21.97900390625,-13.156835937500006],[21.978906250000023,-13.0009765625],[22.209570312500006,-13.0009765625],[22.470996093750017,-13.0009765625],[22.74433593750001,-13.0009765625],[23.04150390625,-13.0009765625],[23.338671875000017,-13.0009765625],[23.635839843750006,-13.0009765625],[23.843164062500023,-13.0009765625],[23.8974609375,-12.998242187500011],[23.962988281250006,-12.988476562500011],[23.968066406250017,-12.956933593750009],[23.882421875,-12.799023437500011],[23.886523437500017,-12.743261718750004],[23.909375,-12.636132812500009],[23.944726562500023,-12.54375],[23.991308593750006,-12.422167968750001],[23.996484375000023,-12.350683593750006],[23.958886718750023,-12.117773437500004],[23.962304687500023,-11.987890625],[23.973437500000014,-11.852929687500009],[23.983886718749996,-11.725],[23.970996093750017,-11.635839843750006],[23.98681640625,-11.587207031250003],[24.0146484375,-11.517675781250006],[24.029296875,-11.439160156250011],[24.046679687500017,-11.405371093750006],[24.041406250000023,-11.374121093750006],[24.02558593750001,-11.315625],[24.010058593750014,-11.184765625000011],[23.98828125,-11.002832031250009],[23.96650390625001,-10.871777343750011],[24.002734375000017,-10.879101562500011],[24.078417968750014,-10.891503906250009],[24.115136718750023,-10.955664062500004],[24.136523437500017,-11.025976562500006],[24.18720703125001,-11.029980468750011],[24.319921875,-11.07177734375],[24.36572265625,-11.1298828125],[24.396289062500017,-11.255175781250003],[24.3779296875,-11.319335937499998],[24.33515625000001,-11.37128906250001],[24.3779296875,-11.417089843750006],[24.466601562500017,-11.44765625],[24.518554687499996,-11.4384765625],[24.668261718750017,-11.352929687500009],[24.728125,-11.337792968750007],[24.80634765625001,-11.321191406250009],[24.87685546875002,-11.299121093750003],[25.075976562500017,-11.260058593750003],[25.184863281250017,-11.24296875],[25.245996093750023,-11.212402343749998],[25.28876953125001,-11.212402343749998],[25.3193359375,-11.236914062500004],[25.291796875000017,-11.325488281250003],[25.282617187500023,-11.404980468750011],[25.320703125000023,-11.553515625],[25.349414062500017,-11.623046875],[25.413378906250017,-11.673535156250011],[25.4599609375,-11.699804687500004],[25.51191406250001,-11.753417968749998],[25.61884765625001,-11.744140625],[25.854882812500023,-11.820117187500001],[25.926562500000017,-11.855273437500003],[26.025976562500006,-11.89013671875],[26.096386718750008,-11.903222656250009],[26.339648437500017,-11.929882812500011],[26.4296875,-11.947851562500004],[26.596386718750008,-11.972070312500009],[26.72968750000001,-11.975976562500009],[26.824023437500014,-11.965234375],[26.890429687500014,-11.943554687500011],[26.93085937500001,-11.919335937500009],[26.949609375000023,-11.898828125],[26.976855468750017,-11.824609375],[27.026660156250017,-11.663769531250011],[27.04609375000001,-11.615917968750011],[27.09541015625001,-11.59375],[27.159179687499996,-11.579199218750006],[27.196386718750002,-11.605078125],[27.238085937500017,-11.783496093750003],[27.423632812500017,-11.94453125000001],[27.48701171875001,-12.0796875],[27.533398437500008,-12.1953125],[27.573828125,-12.227050781249998],[27.644335937500017,-12.266796875000011],[27.7568359375,-12.280859375],[27.857421875,-12.284863281250011],[28.06884765625,-12.368164062499998],[28.237304687499996,-12.434570312499998],[28.357714843750017,-12.48203125],[28.412890625000014,-12.51806640625],[28.451464843750014,-12.577441406250003],[28.474414062500017,-12.623339843750003],[28.51123046875,-12.7421875],[28.550878906250006,-12.83613281250001],[28.615429687500008,-12.854101562500006],[28.672949218750006,-12.861328125],[28.730078125,-12.925488281250011],[28.77314453125001,-12.981933593749998],[28.858789062500023,-13.119433593750003],[28.921679687500017,-13.214648437500003],[28.942285156250023,-13.307128906249998],[29.014257812500002,-13.368847656250011],[29.111621093750017,-13.395117187500006],[29.20185546875001,-13.398339843750009],[29.253710937500017,-13.37080078125001],[29.3818359375,-13.322851562500004],[29.4814453125,-13.26796875],[29.55419921875,-13.248925781250009],[29.59716796875,-13.260546875],[29.630273437500023,-13.298535156250011],[29.64765625000001,-13.372949218750009],[29.651757812500023,-13.414355468750001],[29.72265625,-13.453808593750011],[29.775195312500017,-13.438085937500006],[29.795312500000023,-13.392773437500011],[29.796484375,-13.369726562500006],[29.796289062500023,-13.16748046875],[29.79609375,-12.992089843750009],[29.79580078125002,-12.827050781250009],[29.79560546875001,-12.625878906250009],[29.795507812500006,-12.450585937500009],[29.795312500000023,-12.306152343749998],[29.79511718750001,-12.155468750000011],[29.749609375,-12.1640625],[29.691992187500006,-12.198339843750006],[29.55976562500001,-12.202441406250003],[29.508203125000026,-12.228222656250011],[29.491992187500014,-12.266894531250003],[29.502246093750014,-12.31757812500001],[29.5048828125,-12.386132812500009],[29.48554687500001,-12.418457031249998],[29.427539062500014,-12.43125],[29.34375,-12.40478515625],[29.191210937500014,-12.370214843750004],[29.06435546875002,-12.348828125000011],[28.973437500000014,-12.2578125],[28.85,-12.120507812500007],[28.76943359375002,-12.05126953125],[28.574609375000023,-11.908105468750009],[28.541601562500002,-11.879199218750003],[28.482519531250006,-11.812109375],[28.43183593750001,-11.698339843750006],[28.407031250000017,-11.622851562500003],[28.383398437500002,-11.566699218750001],[28.357226562500014,-11.483007812500006],[28.404199218750023,-11.354394531250009],[28.4703125,-11.109570312500011],[28.517968750000023,-10.933203125],[28.544238281250017,-10.80234375],[28.638867187500008,-10.669238281250003],[28.645507812499996,-10.550195312500009],[28.607421875,-10.397363281250009],[28.6171875,-10.31298828125],[28.62353515625,-10.098828125000011],[28.62890625,-9.91875],[28.630078125,-9.83125],[28.60419921875001,-9.678808593750006],[28.54052734375,-9.510058593750003],[28.400195312500014,-9.275],[28.400683593750017,-9.224804687500011],[28.48427734375002,-9.16943359375],[28.616503906250017,-9.072265625],[28.68125,-9.0146484375],[28.758789062499996,-8.9326171875],[28.793554687500006,-8.891015625],[28.86953125000002,-8.785839843750011],[28.917773437500014,-8.700585937500009],[28.934472656250023,-8.590234375],[28.89814453125001,-8.485449218750006],[28.972265625,-8.464941406250006],[29.215625,-8.427832031250006],[29.483789062500023,-8.386914062500011],[29.766210937500006,-8.34375],[30.051367187500006,-8.30029296875],[30.32753906250002,-8.258203125],[30.577929687500014,-8.220019531250003],[30.75117187500001,-8.193652343750003],[30.77675781250002,-8.265820312500011],[30.830664062500006,-8.385546875],[30.891992187500023,-8.473730468750006],[30.968359375,-8.550976562500011],[31.03339843750001,-8.59765625],[31.07636718750001,-8.611914062500004],[31.350585937499996,-8.60703125],[31.44921875,-8.65390625],[31.534863281250008,-8.71328125],[31.55625,-8.80546875],[31.61279296875,-8.86328125],[31.673632812500017,-8.908789062500006],[31.7,-8.914355468750003],[31.744726562500006,-8.903222656250009],[31.818066406250015,-8.902246093750009],[31.886132812500026,-8.921972656250004],[31.91865234375001,-8.9421875],[31.921875,-9.019433593750009],[31.942578125,-9.054003906250003],[32.03535156250001,-9.0673828125],[32.12978515625002,-9.073339843750006],[32.22089843750001,-9.125585937500006],[32.3193359375,-9.134863281250006],[32.433203125,-9.156347656250006],[32.48710937500002,-9.212695312500003],[32.6083984375,-9.2705078125],[32.75664062500002,-9.322265625],[32.86328125,-9.380859375],[32.919921875,-9.407421875000011]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"South Africa","sov_a3":"ZAF","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Africa","adm0_a3":"ZAF","geou_dif":0,"geounit":"South Africa","gu_a3":"ZAF","su_dif":0,"subunit":"South Africa","su_a3":"ZAF","brk_diff":0,"name":"South Africa","name_long":"South Africa","brk_a3":"ZAF","brk_name":"South Africa","brk_group":null,"abbrev":"S.Af.","postal":"ZA","formal_en":"Republic of South Africa","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"South Africa","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":4,"mapcolor13":2,"pop_est":49052489,"gdp_md_est":491000,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ZA","iso_a3":"ZAF","iso_n3":"710","un_a3":"710","wb_a2":"ZA","wb_a3":"ZAF","woe_id":-99,"adm0_a3_is":"ZAF","adm0_a3_us":"ZAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ZAF.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[37.85693359375002,-46.94423828124998],[37.813964843749964,-46.96289062499996],[37.61181640625003,-46.94648437499998],[37.5900390625001,-46.90800781250006],[37.64970703125002,-46.84892578125],[37.684863281250074,-46.8240234375],[37.78955078124997,-46.8375],[37.872851562500074,-46.88544921874998],[37.88769531249997,-46.901660156249996],[37.85693359375002,-46.94423828124998]]],[[[30.190429687500025,-22.29111328125003],[30.460156250000097,-22.329003906250023],[30.711621093750036,-22.297851562499986],[30.91611328125006,-22.29072265625004],[31.073437500000036,-22.307812499999965],[31.19726562499997,-22.344921874999983],[31.28789062500007,-22.402050781249983],[31.29316406250004,-22.454687499999963],[31.300195312499994,-22.478613281250034],[31.348046875000048,-22.617578125000023],[31.419335937499994,-22.825097656250023],[31.466699218750048,-23.016699218749977],[31.531738281249975,-23.27949218750004],[31.5296875,-23.42578125],[31.545605468750036,-23.48232421874998],[31.604101562500006,-23.55292968749997],[31.675585937500074,-23.67421875],[31.7,-23.74306640624998],[31.72402343749999,-23.79453125],[31.799609375000017,-23.8921875],[31.858300781249994,-24.04023437500004],[31.90800781250007,-24.236230468749994],[31.95058593750005,-24.33027343749997],[31.966601562500017,-24.37646484374997],[31.98583984374997,-24.460644531249983],[31.983203125000017,-24.63828125000002],[31.984375,-24.844042968750014],[31.98574218749999,-25.07382812500002],[31.987011718750093,-25.263476562500017],[31.979394531250048,-25.359472656250034],[31.984570312500036,-25.631933593750034],[31.9203125,-25.773925781250014],[31.92832031250006,-25.885351562499977],[31.948242187500025,-25.957617187500034],[31.921679687500017,-25.96875],[31.87148437499999,-25.981640625000054],[31.640429687500017,-25.86728515625002],[31.415136718750063,-25.74658203125003],[31.38261718750007,-25.74296875],[31.3351562500001,-25.755566406249997],[31.207324218750074,-25.843359375000034],[31.08808593750004,-25.980664062500026],[31.033300781250063,-26.09775390624999],[30.945214843750055,-26.21875],[30.803320312500002,-26.413476562500005],[30.789062500000025,-26.455468750000037],[30.7875,-26.613671875000023],[30.79433593750005,-26.764257812499977],[30.806738281250006,-26.78525390624999],[30.88330078124997,-26.792382812500023],[30.938085937500006,-26.91582031250003],[31.063378906250048,-27.112304687499996],[31.27402343750006,-27.238378906250016],[31.469531250000017,-27.29550781250002],[31.742578125000048,-27.309960937500037],[31.95839843750005,-27.305859375],[31.946093750000014,-27.17363281249997],[31.96718750000005,-26.96064453125001],[31.994726562500006,-26.817480468749977],[32.024804687499994,-26.81113281250002],[32.081640625,-26.824804687499963],[32.112890625,-26.83945312500002],[32.19960937499999,-26.833496093749957],[32.35351562499997,-26.86162109375],[32.47773437500004,-26.85849609374999],[32.58876953125005,-26.855761718749957],[32.7765625000001,-26.850976562499966],[32.88613281250005,-26.849316406249983],[32.84912109374997,-27.080175781250034],[32.70585937500002,-27.441601562500026],[32.65703125000002,-27.607324218750037],[32.53476562500006,-28.19970703125003],[32.37519531250004,-28.498242187499997],[32.285742187500006,-28.62148437499998],[32.02724609375005,-28.839550781249997],[31.955371093750074,-28.88378906250003],[31.891503906249994,-28.912109375000025],[31.77822265624999,-28.937109374999977],[31.3351562500001,-29.378125],[31.169921874999968,-29.590820312500014],[31.023339843749994,-29.900878906250025],[30.877636718750036,-30.07109374999997],[30.663574218749975,-30.43417968749996],[30.472265625000063,-30.71455078124997],[30.288671875000063,-30.970117187499994],[29.97119140625003,-31.322070312500014],[29.830273437500097,-31.42382812499997],[29.73515625000007,-31.47041015625004],[29.482910156250025,-31.674707031250005],[29.12783203125008,-32.003125],[28.85595703125003,-32.29423828125002],[28.449414062500068,-32.62460937499999],[28.214062499999983,-32.76923828124997],[27.860644531250017,-33.05390624999997],[27.762109375000023,-33.09599609375002],[27.363769531250057,-33.36054687499999],[27.077441406250074,-33.52119140625004],[26.613671875000076,-33.70742187499996],[26.429492187500045,-33.75957031250002],[25.989550781250045,-33.711328124999966],[25.80585937500001,-33.737109374999974],[25.652441406250002,-33.849609374999986],[25.63818359375003,-34.011132812500016],[25.574218750000057,-34.03535156249998],[25.47724609375004,-34.028125],[25.169726562500074,-33.960742187499974],[25.00292968750003,-33.97363281250003],[24.90556640624999,-34.05976562499998],[24.8271484375,-34.16894531250003],[24.595507812500074,-34.17451171875],[24.18300781250005,-34.061523437499986],[23.697851562500063,-33.99277343750001],[23.585546875,-33.985156249999974],[23.350390625000074,-34.06894531249999],[23.268164062500002,-34.08115234374999],[22.925585937500045,-34.06318359374997],[22.73554687500004,-34.01025390625003],[22.553808593750063,-34.01005859374999],[22.41445312500008,-34.05380859375002],[22.24550781250005,-34.06914062500003],[21.78896484375002,-34.37265624999996],[21.553222656250057,-34.37304687500004],[21.349804687499983,-34.408203125],[21.24892578125005,-34.40703125000003],[21.060156250000063,-34.36464843750001],[20.989843750000034,-34.367480468749974],[20.882421874999977,-34.38652343750003],[20.774804687499994,-34.439941406249986],[20.529882812500034,-34.4630859375],[20.434667968749974,-34.50859375000003],[20.020605468750006,-34.785742187500006],[19.926269531250057,-34.77470703124997],[19.85,-34.75664062500003],[19.63496093750004,-34.753320312499966],[19.391503906249994,-34.6056640625],[19.298242187500023,-34.61503906249996],[19.323242187500057,-34.57080078125],[19.330761718750068,-34.49238281250001],[19.279394531250006,-34.437011718750014],[19.24462890625003,-34.41230468750004],[19.14912109375001,-34.416894531249994],[19.098339843750068,-34.350097656249986],[18.952148437500025,-34.34375],[18.90156250000001,-34.36064453125],[18.831347656250017,-34.36406249999999],[18.82509765625008,-34.29648437499998],[18.830664062500063,-34.253906250000014],[18.826367187500068,-34.1884765625],[18.80878906250004,-34.10820312499999],[18.75214843750004,-34.08261718750001],[18.708691406250068,-34.071875],[18.60517578125004,-34.07734375000001],[18.533886718749983,-34.08593749999998],[18.50039062499999,-34.10927734375004],[18.46210937500001,-34.16806640625002],[18.46162109375001,-34.346875],[18.41035156250004,-34.29560546874998],[18.35205078124997,-34.1884765625],[18.333398437499994,-34.07421875],[18.354394531250023,-33.939062499999984],[18.46503906250001,-33.887792968750034],[18.456445312500023,-33.79648437499999],[18.43300781250005,-33.71728515625002],[18.309472656250023,-33.514453125],[18.261230468750057,-33.42167968750002],[18.156347656250006,-33.35878906249999],[18.074804687499977,-33.20732421874996],[17.992578125000023,-33.15234375000004],[17.95839843750008,-33.04638671875003],[17.87822265624999,-32.96152343749998],[17.851074218750053,-32.82744140625002],[17.895312500000017,-32.75048828124997],[17.96523437500005,-32.70859374999996],[18.036523437499994,-32.77509765625001],[18.125,-32.74912109374996],[18.25087890625008,-32.6521484375],[18.325292968750034,-32.50498046874996],[18.32988281249999,-32.26953124999996],[18.31074218750001,-32.12246093750001],[18.21083984375008,-31.742480468749957],[18.163671875000063,-31.655175781250023],[17.938574218750034,-31.383203125000033],[17.67744140625004,-31.01904296875001],[17.34707031250005,-30.44482421875],[17.1890625,-30.09980468749997],[16.95,-29.40341796875002],[16.739453124999983,-29.009375],[16.480761718750045,-28.641503906249966],[16.447558593750045,-28.61757812499998],[16.487109375000017,-28.572851562500016],[16.62617187500001,-28.48789062500002],[16.68945312500003,-28.464941406249963],[16.72304687500002,-28.47548828124998],[16.755761718750023,-28.45214843750003],[16.7875,-28.39472656249997],[16.794531250000034,-28.3408203125],[16.81015625,-28.264550781249994],[16.841210937500023,-28.21894531250004],[16.875292968750045,-28.127929687499968],[16.93330078125004,-28.06962890624999],[17.05625,-28.03105468750003],[17.149414062500025,-28.082226562499983],[17.1884765625,-28.13251953125001],[17.20458984374997,-28.19882812500002],[17.24580078125004,-28.230859374999977],[17.312011718750025,-28.228613281249963],[17.358691406250017,-28.269433593750023],[17.38574218750003,-28.35322265625004],[17.38027343750008,-28.41396484374998],[17.342578125000017,-28.451660156250014],[17.347851562500036,-28.501171874999983],[17.39589843750005,-28.562695312499983],[17.41572265625001,-28.621093749999982],[17.44794921875001,-28.698144531249966],[17.616796875000034,-28.743066406249962],[17.699316406250063,-28.768359374999957],[17.84160156249999,-28.77695312500003],[17.97607421875003,-28.811328125000014],[18.102734374999983,-28.87167968749996],[18.310839843750017,-28.886230468749996],[18.600390625000045,-28.8552734375],[18.838769531250023,-28.869140624999986],[19.026074218750068,-28.92792968749997],[19.16171875,-28.93876953124996],[19.245800781250068,-28.901660156250028],[19.28222656250003,-28.847949218750014],[19.270996093750053,-28.777734375000012],[19.31269531250004,-28.733300781250023],[19.4072265625,-28.71445312499999],[19.482910156250057,-28.661621093749986],[19.539843750000017,-28.574609375000023],[19.67148437500003,-28.50390625],[19.87783203125005,-28.449414062499994],[19.98046875,-28.45126953125002],[19.98046875,-28.310351562500003],[19.98046875,-27.865527343749974],[19.98046875,-27.42070312500003],[19.98046875,-26.975976562500023],[19.98046875,-26.531152343749994],[19.98046875,-26.086328124999966],[19.98046875,-25.641601562499957],[19.98046875,-25.19677734375003],[19.98046875,-24.77675781249998],[20.028613281250045,-24.807031250000023],[20.345214843750057,-25.029882812500034],[20.430664062500057,-25.147070312500016],[20.47314453125,-25.22128906250005],[20.609277343750023,-25.491210937499968],[20.710742187500017,-25.733203124999974],[20.79316406250001,-25.915625],[20.799414062500034,-25.999023437500043],[20.81103515625,-26.080566406249957],[20.822656250000076,-26.12060546875003],[20.815039062500034,-26.164941406249994],[20.75703125000001,-26.264160156249954],[20.69785156250003,-26.34013671874999],[20.626757812500045,-26.44384765624997],[20.619921875000074,-26.580859375],[20.641406250000017,-26.7421875],[20.68505859375003,-26.82246093750001],[20.739843749999977,-26.84882812499997],[20.870898437500042,-26.808789062499983],[20.953906250000074,-26.82109375],[21.070996093750036,-26.85175781250004],[21.454980468750023,-26.83281249999999],[21.50136718750005,-26.842675781249966],[21.64628906249999,-26.854199218749994],[21.69472656250002,-26.840917968749963],[21.738085937500045,-26.806835937500026],[21.788281250000068,-26.710058593750034],[21.833203125000068,-26.678320312499963],[21.91455078125003,-26.66191406249999],[22.01093750000004,-26.635839843750006],[22.090917968749977,-26.580175781250034],[22.217578125000045,-26.38886718749997],[22.47089843750004,-26.219042968750003],[22.548632812500074,-26.178417968749994],[22.59765625000003,-26.13271484375001],[22.640234374999977,-26.071191406249994],[22.729003906250057,-25.857324218750033],[22.79609375000004,-25.679101562499966],[22.818945312500063,-25.59511718749999],[22.878808593750023,-25.457910156250023],[22.951269531250034,-25.370312500000022],[23.022070312500063,-25.324121093750037],[23.057519531249994,-25.312304687500014],[23.148730468750017,-25.288671875],[23.266015625000023,-25.266601562500043],[23.389257812500006,-25.291406250000023],[23.52148437500003,-25.344433593749994],[23.670703125000045,-25.433984375000033],[23.823437500000065,-25.544628906250008],[23.89375,-25.600878906250014],[23.96953124999999,-25.62607421874999],[24.104492187500057,-25.634863281250006],[24.192968750000034,-25.632910156249963],[24.33056640625,-25.742871093749983],[24.400195312500074,-25.749804687499974],[24.555859375000068,-25.78310546875001],[24.748144531250002,-25.817382812499982],[24.869238281250063,-25.813476562499986],[24.99892578125002,-25.754003906250034],[25.092480468750068,-25.751464843749957],[25.213378906249996,-25.75625],[25.346191406250053,-25.73994140625001],[25.443652343750017,-25.714453124999974],[25.518164062500006,-25.66279296875001],[25.583789062500074,-25.60625],[25.659179687500057,-25.437890625000023],[25.70263671875003,-25.302343750000034],[25.76992187500005,-25.146484374999986],[25.852441406250076,-24.935253906250036],[25.88183593750003,-24.787988281249966],[25.91210937499997,-24.747460937499966],[26.031835937500034,-24.70244140625003],[26.130859375000053,-24.671484375000034],[26.39716796875004,-24.61357421874996],[26.451757812500063,-24.582714843749983],[26.501562499999974,-24.51328125000005],[26.617773437500034,-24.39550781250003],[26.761132812500023,-24.29716796874997],[26.835058593750063,-24.240820312499963],[26.970605468750048,-23.76347656249996],[26.98701171875004,-23.704589843749954],[27.08554687500003,-23.577929687500003],[27.14638671875008,-23.52441406250003],[27.185546875000057,-23.5234375],[27.24121093750003,-23.49003906250003],[27.31337890625008,-23.424218750000037],[27.399218750000074,-23.383593750000017],[27.49873046875001,-23.368359375000026],[27.56318359374998,-23.32460937499999],[27.592675781250048,-23.252636718749983],[27.64384765624999,-23.217675781249966],[27.71679687500003,-23.21962890625001],[27.758300781250053,-23.196777343749968],[27.7685546875,-23.14892578125],[27.812597656250002,-23.108007812500002],[27.89052734375008,-23.073925781249997],[27.93134765625004,-23.033593750000037],[27.93505859375,-22.98701171874997],[28.027929687500006,-22.873730468749983],[28.210156249999983,-22.69365234374997],[28.381738281250048,-22.59335937499996],[28.542871093750023,-22.572949218749983],[28.69550781250001,-22.53544921874999],[28.83984375000003,-22.480859374999966],[28.94580078125003,-22.39511718749999],[29.013476562500045,-22.27841796875002],[29.129882812500057,-22.213281249999977],[29.364843750000063,-22.193945312500045],[29.37744140625003,-22.19277343749998],[29.66308593749997,-22.146289062500017],[29.90234375000003,-22.184179687500002],[30.190429687500025,-22.29111328125003]],[[27.830371093750074,-28.909082031250033],[27.73554687500004,-28.94003906250003],[27.660449218750014,-29.046972656249977],[27.59023437500008,-29.146484375],[27.527148437500017,-29.23613281249996],[27.491015625000045,-29.276562500000026],[27.458007812500057,-29.30273437500003],[27.424902343750063,-29.36005859374998],[27.35683593750005,-29.455273437500026],[27.294531250000063,-29.519335937500017],[27.20742187500008,-29.554199218750014],[27.095214843750057,-29.59931640624997],[27.056933593750074,-29.62558593749999],[27.0517578125,-29.664062500000014],[27.091796875000057,-29.753710937499974],[27.13046875000003,-29.84023437500002],[27.19355468750001,-29.94130859375001],[27.23974609375,-30.015332031249983],[27.31269531250004,-30.10566406250001],[27.35537109375002,-30.158593750000037],[27.349707031250034,-30.24736328125],[27.364062500000017,-30.27919921875001],[27.388476562500014,-30.315917968750025],[27.40859375000002,-30.32529296874999],[27.431445312500074,-30.338476562500006],[27.491992187500045,-30.36396484375005],[27.50654296875001,-30.380957031249967],[27.54902343750004,-30.41123046874999],[27.589648437500042,-30.466406249999963],[27.666601562500006,-30.54228515624996],[27.753125,-30.6],[27.90185546874997,-30.623828124999957],[28.01816406250006,-30.642285156249994],[28.05683593750001,-30.631054687500015],[28.09638671875001,-30.584570312499963],[28.128710937500014,-30.525097656250008],[28.13906250000008,-30.44990234374997],[28.17617187500008,-30.409863281249983],[28.31542968750003,-30.218457031249983],[28.39208984375003,-30.14755859375002],[28.4390625,-30.14248046875005],[28.499609374999977,-30.12890625000003],[28.576660156250057,-30.123046875],[28.634375,-30.12871093749999],[28.646875,-30.1265625],[28.736914062500002,-30.101953124999962],[28.901074218750065,-30.038476562499994],[28.97529296875001,-29.999414062500037],[29.029003906250008,-29.96757812500003],[29.09804687500005,-29.919042968750002],[29.121972656250048,-29.801171874999966],[29.142187500000063,-29.70097656249999],[29.195117187500017,-29.651660156249974],[29.24921875000004,-29.61884765625004],[29.293554687500002,-29.56689453125003],[29.348828125000097,-29.441992187499977],[29.386718749999975,-29.31972656250002],[29.390722656250006,-29.269726562499972],[29.370898437500014,-29.218457031249994],[29.33593750000003,-29.163671875000034],[29.301367187500002,-29.08984375],[29.25976562499997,-29.07832031249997],[29.17802734374999,-29.036914062499957],[29.05800781250005,-28.95371093749998],[28.953710937500038,-28.881445312500002],[28.85625,-28.77607421875003],[28.816210937500014,-28.75888671874999],[28.721777343750034,-28.687695312499965],[28.68115234375003,-28.64677734374997],[28.652636718750074,-28.59785156250004],[28.625781250000017,-28.581738281250054],[28.583398437499994,-28.59414062499999],[28.471875,-28.615820312499977],[28.232617187500036,-28.701269531249977],[28.084375,-28.779980468750022],[27.95986328125008,-28.873339843750035],[27.830371093750074,-28.909082031250033]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Antarctica","sov_a3":"ATA","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Antarctica","adm0_a3":"ATA","geou_dif":0,"geounit":"Antarctica","gu_a3":"ATA","su_dif":0,"subunit":"Antarctica","su_a3":"ATA","brk_diff":0,"name":"Antarctica","name_long":"Antarctica","brk_a3":"ATA","brk_name":"Antarctica","brk_group":null,"abbrev":"Ant.","postal":"AQ","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Multiple claims held in abeyance","name_sort":"Antarctica","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":-99,"pop_est":3802,"gdp_md_est":760.4,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"AQ","iso_a3":"ATA","iso_n3":"010","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"ATA","adm0_a3_us":"ATA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Antarctica","region_un":"Antarctica","subregion":"Antarctica","region_wb":"Antarctica","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ATA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-161.993798828125,-83.11875],[-162.304931640625,-83.14179687500001],[-163.046533203125,-83.09677734374999],[-163.24213867187493,-83.05966796874996],[-163.34838867187503,-83.02158203125003],[-163.55209960937498,-82.98769531249998],[-163.60175781250004,-82.96855468749999],[-163.60219726562497,-82.92734375000003],[-163.63432617187502,-82.90224609374998],[-163.70390625,-82.879296875],[-163.73530273437498,-82.85683593750005],[-163.795947265625,-82.84267578125001],[-162.798486328125,-82.86484375],[-162.410595703125,-82.89921874999999],[-162.33979492187498,-82.92275390624998],[-161.63515624999997,-83.02695312499998],[-161.82822265625,-83.04257812499995],[-161.993798828125,-83.11875]]],[[[-157.9875,-82.10498046875],[-158.07622070312502,-82.11201171875],[-158.1541015625,-82.05849609375004],[-158.54531250000002,-81.94882812499998],[-158.77319335937497,-81.87548828124997],[-158.92631835937502,-81.81865234375002],[-158.988720703125,-81.779296875],[-158.91372070312502,-81.77978515625],[-158.346728515625,-81.90048828124998],[-158.26083984374995,-81.94726562500001],[-157.83457031249998,-82.03076171874996],[-157.9875,-82.10498046875]]],[[[-160.46713867187503,-81.58945312500005],[-160.57099609374995,-81.59785156249998],[-163.25307617187497,-81.482421875],[-163.76606445312504,-81.44482421874997],[-163.89013671875,-81.4236328125],[-163.93925781249996,-81.40410156250003],[-163.951220703125,-81.39091796875002],[-163.93002929687503,-81.35214843750002],[-163.86899414062503,-81.32402343749996],[-163.20063476562504,-81.2814453125],[-162.45649414062507,-81.31328125],[-161.55859375,-81.39667968750003],[-160.93789062500002,-81.46347656249995],[-160.61689453125,-81.52207031249998],[-160.48544921875003,-81.5669921875],[-160.46713867187503,-81.58945312500005]]],[[[-153.93046875,-80.03330078125],[-154.1140625,-80.03603515625002],[-154.348828125,-80.02607421875004],[-154.52944335937494,-80.00048828124999],[-154.94165039062503,-79.96630859375003],[-155.04477539062498,-79.8998046875],[-155.525341796875,-79.84648437500005],[-155.751171875,-79.82958984374999],[-155.67426757812498,-79.76552734375],[-155.16220703125003,-79.85068359375002],[-154.53510742187498,-79.93554687499999],[-154.02539062499997,-79.98769531250004],[-153.93046875,-80.03330078125]]],[[[-59.73393554687496,-80.344140625],[-59.77373046874998,-80.55810546874997],[-59.77133789062494,-80.65654296875006],[-59.82548828124996,-80.73330078125005],[-59.926367187500006,-80.77431640624998],[-60.12465820312499,-80.84072265625001],[-60.26821289062502,-80.88134765625003],[-60.58281249999998,-80.94814453125004],[-62.023339843749994,-80.8890625],[-62.67050781249994,-80.83427734375003],[-62.94038085937495,-80.76582031250003],[-62.98608398437503,-80.73457031249997],[-63.067529296875016,-80.62744140624999],[-63.14399414062495,-80.59482421874999],[-63.714941406250006,-80.61699218749999],[-64.0650390625,-80.65039062499996],[-64.12646484375,-80.66787109375005],[-64.21992187499995,-80.73398437500002],[-64.26826171874993,-80.74853515624997],[-65.20283203125001,-80.607421875],[-66.183740234375,-80.44199218750005],[-66.59140625,-80.3576171875],[-66.73359374999993,-80.31855468750004],[-66.77114257812494,-80.29384765625007],[-66.68110351562498,-80.26044921875001],[-66.58842773437502,-80.23857421874999],[-66.48266601562497,-80.22441406250003],[-66.376953125,-80.22226562500003],[-66.29580078125,-80.23476562500002],[-66.2173828125,-80.258203125],[-66.167626953125,-80.34619140624997],[-66.11547851562493,-80.36123046875002],[-65.98007812499998,-80.38447265625005],[-62.518798828124936,-80.37333984375],[-62.231835937500016,-80.36865234375003],[-61.63330078125003,-80.344140625],[-61.312841796875034,-80.30654296874998],[-61.193994140624966,-80.25664062500003],[-61.484765624999966,-80.24384765625001],[-61.59746093750002,-80.20585937499999],[-61.69433593750002,-80.134375],[-61.71684570312499,-80.06933593749997],[-61.6841796875,-80.01972656249998],[-61.30234375,-79.99580078125001],[-61.24624023437497,-79.97832031249999],[-61.34624023437499,-79.95058593750002],[-61.34311523437497,-79.88681640625],[-61.11499023437494,-79.86220703125004],[-61.02631835937501,-79.80888671875003],[-60.578808593749955,-79.74101562500006],[-59.87333984374996,-79.776953125],[-59.70634765624994,-79.87529296875006],[-59.75244140625,-79.93798828125004],[-59.78564453125003,-80.00107421875],[-59.787792968749926,-80.10097656250001],[-59.49814453124997,-80.11503906250005],[-59.407812499999984,-80.15087890624997],[-59.321679687499994,-80.19619140625007],[-59.42661132812498,-80.19765625],[-59.53007812500001,-80.20800781249999],[-59.61240234374997,-80.25546874999998],[-59.68330078124995,-80.31533203125],[-59.73393554687496,-80.344140625]]],[[[-31.11884765624995,-79.79843750000003],[-30.98505859374998,-79.81845703125002],[-30.840820312499975,-79.77128906250002],[-30.861474609375023,-79.72587890624997],[-30.77993164062502,-79.64736328125],[-30.660156249999943,-79.73310546875004],[-29.870898437500017,-79.82324218750003],[-29.61445312499998,-79.90957031250002],[-29.720751953124957,-79.92988281249998],[-29.80009765624996,-79.92597656249997],[-30.029003906249983,-79.93613281250002],[-30.42211914062494,-80.01083984374996],[-30.84443359375001,-79.93847656249997],[-31.59423828125,-79.8876953125],[-31.824121093750026,-79.84951171875004],[-32.00029296874993,-79.732421875],[-31.680419921874975,-79.63427734374997],[-31.604882812499934,-79.64472656249998],[-31.11884765624995,-79.79843750000003]]],[[[-32.34252929687503,-79.67363281250002],[-32.51489257812497,-79.68281250000001],[-32.58325195312497,-79.65830078124999],[-32.50083007812495,-79.59228515624996],[-32.376611328124966,-79.53466796875003],[-32.15,-79.52988281250003],[-31.933447265625006,-79.56787109374994],[-31.956738281249955,-79.60380859374999],[-32.001171874999955,-79.60703125000002],[-32.34252929687503,-79.67363281250002]]],[[[-66.17363281249999,-80.07783203125001],[-66.26718750000003,-80.08144531250005],[-66.31948242187494,-80.07509765625],[-66.36689453125001,-80.05429687500002],[-66.41040039062499,-79.97333984375004],[-66.90419921874997,-79.90888671874998],[-66.96235351562498,-79.87265624999996],[-66.99365234374996,-79.79335937500007],[-67.07724609374995,-79.76181640625003],[-67.719140625,-79.62021484374996],[-67.77075195312503,-79.589453125],[-67.80874023437494,-79.5458984375],[-67.68793945312493,-79.52841796875],[-67.43823242187494,-79.56035156250002],[-66.97890625,-79.56865234375002],[-66.88129882812501,-79.58222656250004],[-66.78520507812496,-79.60800781249995],[-66.27377929687495,-79.61201171874998],[-66.01416015625,-79.62441406250002],[-65.87031250000001,-79.7376953125],[-65.57924804687494,-79.77080078124999],[-65.53955078125001,-79.83691406249997],[-65.50444335937499,-79.95429687499998],[-65.89902343749998,-80.04052734374997],[-65.98940429687502,-80.05400390625005],[-66.17363281249999,-80.07783203125001]]],[[[-67.26191406250001,-79.45263671875],[-67.43432617187494,-79.50117187500004],[-68.16147460937503,-79.47851562499996],[-68.40810546875002,-79.46396484375],[-68.54892578125,-79.43740234375002],[-68.42226562499997,-79.33320312500001],[-68.324365234375,-79.2982421875],[-68.23300781249995,-79.28496093750005],[-68.03256835937498,-79.2271484375],[-67.71416015624993,-79.2140625],[-67.47451171874997,-79.22294921875002],[-67.06865234374999,-79.26845703125007],[-67.17294921875,-79.31152343749996],[-67.23950195312497,-79.32763671875004],[-67.30488281249995,-79.39404296874997],[-67.26191406250001,-79.45263671875]]],[[[-33.934179687500034,-79.32041015624999],[-34.049951171874994,-79.35712890625001],[-36.48129882812498,-79.29404296875003],[-36.60078124999998,-79.28271484375003],[-36.56596679687499,-79.20878906249999],[-36.23779296875003,-79.195703125],[-36.047998046874994,-79.18115234375004],[-35.790234374999955,-79.14892578124996],[-35.597314453124994,-79.09189453124998],[-35.53466796875002,-79.09003906250004],[-34.39150390625002,-79.22294921875002],[-33.994726562500006,-79.27851562499998],[-33.94716796874999,-79.30537109375004],[-33.934179687500034,-79.32041015624999]]],[[[-159.05292968749995,-79.80742187499999],[-160.30209960937498,-79.84453125000002],[-160.80668945312505,-79.81201171874996],[-161.86552734375,-79.70351562500005],[-163.31723632812498,-79.50478515624998],[-163.71240234375,-79.44199218749998],[-163.9708984375,-79.38876953124998],[-164.22578124999998,-79.32080078124997],[-164.28164062499997,-79.24550781250001],[-164.24487304687497,-79.13769531249997],[-164.19951171874996,-79.05078125000003],[-164.125537109375,-78.99531250000001],[-163.81464843749998,-78.92880859374996],[-163.66025390624998,-78.85576171875],[-163.34531250000003,-78.7798828125],[-163.25610351562497,-78.72207031250004],[-163.12412109374998,-78.71914062500007],[-162.87275390625004,-78.72519531249996],[-162.62158203124997,-78.74179687499998],[-162.39003906250002,-78.76015625],[-162.160693359375,-78.79345703125001],[-161.64296874999997,-78.90097656249998],[-161.283447265625,-79.00703125000001],[-160.76440429687503,-79.13164062499999],[-160.24960937500003,-79.27148437499997],[-159.96352539062502,-79.32431640624998],[-159.68408203125003,-79.40244140625],[-159.41879882812498,-79.50810546875005],[-159.36640624999995,-79.54521484375005],[-159.25610351562497,-79.59101562500005],[-159.18969726562503,-79.63730468749998],[-159.11875,-79.67451171875],[-159.0513671875,-79.69453125000001],[-158.99658203125003,-79.73515625],[-159.00957031250002,-79.78046875000001],[-159.05292968749995,-79.80742187499999]]],[[[-70.33408203124998,-79.67988281250004],[-70.55253906249999,-79.68300781250005],[-70.98374023437499,-79.67441406249998],[-71.41401367187498,-79.64023437500003],[-71.52578124999994,-79.62363281250003],[-71.68666992187494,-79.56806640624998],[-71.73520507812498,-79.53857421875003],[-71.77773437500002,-79.5005859375],[-71.78354492187495,-79.44433593750001],[-71.66748046875003,-79.24570312500005],[-71.45400390624997,-79.12890624999996],[-71.2544921875,-79.05966796874998],[-70.62587890625001,-78.9015625],[-70.54399414062493,-78.88369140625002],[-69.971875,-78.809375],[-69.74765624999998,-78.76914062500002],[-69.39824218749993,-78.6861328125],[-67.478515625,-78.3625],[-67.03813476562499,-78.31572265625003],[-66.84023437499998,-78.34970703125003],[-66.72807617187496,-78.38369140625001],[-66.78701171874997,-78.42167968750005],[-67.046142578125,-78.51416015624996],[-67.16640625,-78.56953125000004],[-67.48095703124994,-78.68242187500005],[-68.15703125000002,-78.87089843749999],[-68.63793945312503,-79.01318359375001],[-69.25087890625002,-79.21035156250002],[-69.39443359374997,-79.27978515624997],[-69.68647460937495,-79.44335937499999],[-69.63447265625001,-79.51757812500001],[-69.73173828125002,-79.61835937500003],[-70.11630859375003,-79.66601562499997],[-70.33408203124998,-79.67988281250004]]],[[[167.6427734375001,-78.14140625000003],[167.51748046875005,-78.21601562499997],[167.37695312500003,-78.24902343750003],[166.93623046875004,-78.22246093750003],[166.62597656249997,-78.28427734375],[166.28486328125007,-78.30644531250002],[166.121875,-78.27460937500001],[166.05058593750007,-78.21337890624997],[166.0125,-78.13125],[166.01289062500004,-78.101953125],[166.11113281250007,-78.08964843749997],[166.56708984375004,-78.14804687499996],[166.75986328125006,-78.19794921875001],[166.86367187499997,-78.19638671874998],[167.1378906250001,-78.12998046875003],[167.36406250000007,-78.04580078125002],[167.42236328125003,-78.0064453125],[167.4978515625,-77.99238281249998],[167.59384765625006,-78.02226562500002],[167.6398437500001,-78.11171875000002],[167.6427734375001,-78.14140625000003]]],[[[-45.22265625000003,-78.81074218749998],[-45.09160156249996,-78.81425781249999],[-44.56630859374999,-78.804296875],[-44.04116210937502,-78.80664062500003],[-43.72207031250002,-78.81845703125005],[-43.62734375,-78.84609375],[-43.54433593749996,-78.901953125],[-43.45063476562498,-78.98964843750001],[-43.36367187500002,-79.08476562500003],[-43.26723632812499,-79.1630859375],[-43.210546875,-79.3],[-43.11870117187493,-79.35],[-42.96538085937496,-79.47705078125001],[-42.944677734375006,-79.57910156250003],[-42.98999023437499,-79.80126953124997],[-43.06591796875003,-79.89140625000005],[-43.26728515625001,-79.97861328124998],[-43.495800781249926,-79.96933593750003],[-43.600292968750004,-79.97392578124997],[-43.70366210937502,-79.99013671875001],[-43.74218749999994,-80.00292968750003],[-43.758203125000016,-80.02050781249997],[-43.489990234375,-80.09550781249999],[-43.45883789062495,-80.123046875],[-43.453759765624994,-80.15507812500005],[-43.48935546874995,-80.17802734375],[-43.527929687500006,-80.19140624999997],[-49.1875,-80.6427734375],[-49.41044921875002,-80.66689453125002],[-49.62968749999998,-80.71230468750005],[-49.70131835937502,-80.75322265625003],[-49.77304687499997,-80.78417968750003],[-54.1625,-80.87011718749994],[-54.202099609375004,-80.86386718750002],[-54.241308593750006,-80.84697265625005],[-54.35078125,-80.76035156249998],[-54.37158203124997,-80.6236328125],[-54.34716796874997,-80.56943359374998],[-54.12958984374998,-80.51650390625004],[-54.044921874999936,-80.4875],[-53.67607421874996,-80.28369140625003],[-53.482324218749994,-80.18896484375],[-53.393896484375006,-80.10878906250002],[-53.34648437499996,-80.11445312500001],[-53.17641601562502,-80.16093749999999],[-53.05346679687503,-80.175],[-52.80722656249994,-80.15595703125004],[-52.56679687499999,-80.0990234375],[-52.46098632812493,-80.06660156250004],[-52.35712890625001,-80.07783203125001],[-52.338085937499955,-80.12607421874999],[-52.29716796874996,-80.14121093749996],[-51.711328124999966,-79.98984375000003],[-51.18383789062497,-79.81972656250002],[-50.66435546875001,-79.62675781250005],[-50.401562499999955,-79.51171874999997],[-50.339257812499966,-79.47949218749997],[-50.294921875,-79.42968749999994],[-50.33134765624996,-79.38144531249999],[-50.378662109375,-79.33818359375006],[-50.41953124999998,-79.3212890625],[-50.46386718750003,-79.31328125000003],[-50.733056640624994,-79.28271484375003],[-50.649023437500006,-79.2328125],[-50.573291015624925,-79.172265625],[-50.52031249999999,-79.10439453125004],[-50.502392578124976,-79.02177734374999],[-50.51372070312498,-78.97988281249998],[-50.50249023437499,-78.94990234375001],[-50.379785156249966,-78.9228515625],[-50.29775390624994,-78.88222656249998],[-50.24194335937502,-78.83330078125005],[-50.33544921874997,-78.81826171875001],[-50.37739257812501,-78.78046875000003],[-50.29418945312503,-78.69599609374997],[-50.21962890625002,-78.60527343750005],[-50.141650390624925,-78.55673828125002],[-49.93974609375002,-78.46220703125003],[-49.354150390624994,-78.22246093750003],[-49.143652343750006,-78.09384765625003],[-49.08125,-78.04746093749999],[-47.692089843749955,-77.84013671875005],[-47.463476562500006,-77.81904296875001],[-47.029931640624966,-77.79052734374997],[-46.82568359375002,-77.78525390624996],[-46.25786132812499,-77.80488281249997],[-45.99316406249997,-77.82685546875],[-45.5302734375,-77.88144531250002],[-44.85195312499999,-77.98837890625005],[-44.59448242187494,-78.03515624999999],[-44.33984375000003,-78.09287109375002],[-44.09399414062494,-78.16728515624999],[-43.8544921875,-78.25849609375001],[-43.80859374999997,-78.28652343750002],[-43.784570312499966,-78.33632812500005],[-43.77670898437498,-78.38505859375005],[-43.78828125000001,-78.43261718749994],[-43.852294921875,-78.52988281249995],[-43.94721679687498,-78.59755859375],[-45.06782226562501,-78.66142578125003],[-45.213085937499955,-78.68701171875],[-45.29477539062498,-78.73984375000002],[-45.35234374999998,-78.79121093750001],[-45.22265625000003,-78.81074218749998]]],[[[-149.21811523437498,-77.33632812499998],[-148.92885742187497,-77.38681640624998],[-149.43867187499998,-77.37060546874996],[-149.662353515625,-77.30097656249998],[-149.51865234375003,-77.27470703125005],[-149.37543945312498,-77.27998046874997],[-149.24912109375,-77.3150390625],[-149.21811523437498,-77.33632812499998]]],[[[-150.3970703125,-77.36914062500001],[-150.47485351562494,-77.37373046874997],[-151.34448242187503,-77.2962890625],[-151.51162109374997,-77.27333984375004],[-151.218017578125,-77.22646484375],[-151.02153320312493,-77.22001953125002],[-150.49912109375003,-77.33505859375],[-150.35625,-77.34902343749998],[-150.3970703125,-77.36914062500001]]],[[[167.08408203125012,-77.32167968750001],[167.46093749999994,-77.39433593749999],[168.45078125000012,-77.38613281250001],[169.27558593750007,-77.45468750000003],[169.3527343750001,-77.52470703124999],[169.11728515625012,-77.560546875],[168.7545898437501,-77.6533203125],[168.51884765625002,-77.68125],[168.32255859375002,-77.68251953125],[167.91757812500012,-77.64414062499999],[167.39228515625,-77.6486328125],[167.27949218750004,-77.70263671875],[167.0250976562501,-77.75644531250005],[166.72900390624997,-77.85097656250002],[166.65039062499997,-77.77402343749998],[166.53251953125,-77.700390625],[166.23681640624997,-77.5474609375],[166.21679687500003,-77.52460937499998],[166.37841796874997,-77.49404296875005],[166.4580078125,-77.44375],[166.62636718750005,-77.37675781250005],[166.60712890625004,-77.335546875],[166.46904296875007,-77.2888671875],[166.41308593750003,-77.25195312500001],[166.50634765625003,-77.18935546874998],[166.71640625000006,-77.16171875000003],[166.98730468750003,-77.18652343750003],[167.10683593750005,-77.27060546875],[167.08496093750003,-77.30742187500005],[167.08408203125012,-77.32167968750001]]],[[[-148.59584960937497,-77.0068359375],[-149.0146484375,-77.01914062500003],[-149.24482421875,-76.99306640625005],[-149.30253906249996,-76.91582031250002],[-149.2380859375,-76.90019531250005],[-148.70410156249997,-76.93564453124998],[-148.50893554687502,-76.95458984375001],[-148.43974609374996,-76.9771484375],[-148.47431640624995,-76.99775390625003],[-148.59584960937497,-77.0068359375]]],[[[-149.23066406249995,-77.1205078125],[-149.29345703124997,-77.13662109374998],[-149.72861328124995,-77.12851562500002],[-149.81689453125003,-77.11416015625002],[-149.85634765624997,-77.09941406250005],[-150.46181640624997,-77.07568359374999],[-150.73579101562498,-77.00429687500002],[-150.788525390625,-76.98164062500003],[-150.68022460937496,-76.94843750000001],[-150.47578124999995,-76.92607421874999],[-150.39331054687494,-76.89873046875002],[-149.87060546874994,-76.875],[-149.78984375000005,-76.88925781250003],[-149.742578125,-76.92705078125],[-149.50576171874997,-77.00166015625001],[-149.44174804687495,-77.04921875000002],[-149.41640624999997,-77.07890625000005],[-149.28833007812497,-77.09316406250001],[-149.23066406249995,-77.1205078125]]],[[[-146.60673828125,-76.96132812500007],[-146.98144531249994,-77.00566406250005],[-147.07890625,-76.99277343749998],[-147.044140625,-76.92968750000001],[-147.10146484374994,-76.88652343750002],[-147.115625,-76.86621093749996],[-147.086669921875,-76.83730468750002],[-146.86650390625,-76.83710937499998],[-146.244384765625,-76.88310546875002],[-146.16396484374997,-76.94853515625003],[-146.60673828125,-76.96132812500007]]],[[[-149.333251953125,-76.7173828125],[-148.9279296875,-76.73007812500003],[-148.66259765624997,-76.72050781250003],[-148.38417968750002,-76.74443359375002],[-148.32080078124997,-76.77167968749998],[-148.37094726562498,-76.794921875],[-148.66953124999998,-76.80205078125003],[-148.81459960937502,-76.84072265625001],[-148.98388671874997,-76.84531249999996],[-149.23847656249995,-76.81777343750004],[-149.4689453125,-76.75712890625003],[-149.333251953125,-76.7173828125]]],[[[-150.23251953124998,-76.77646484374998],[-150.65517578125002,-76.78896484375001],[-150.83046875000002,-76.76152343750005],[-150.87353515625,-76.73671875000005],[-150.83764648437497,-76.71416015624999],[-150.17739257812502,-76.69130859375002],[-150.103564453125,-76.71884765625005],[-150.084765625,-76.73515624999999],[-150.23251953124998,-76.77646484374998]]],[[[-147.58828124999997,-76.64980468750002],[-147.57885742187497,-76.66279296875],[-147.72963867187497,-76.65341796875003],[-147.954296875,-76.59716796875003],[-148.00107421875,-76.57714843749994],[-147.89970703125,-76.55800781250004],[-147.76967773437497,-76.57685546874998],[-147.64912109375,-76.61083984374997],[-147.58828124999997,-76.64980468750002]]],[[[-146.79003906249994,-76.63310546874999],[-146.90781249999998,-76.71406250000004],[-147.22133789062497,-76.67089843749994],[-147.355322265625,-76.61884765625001],[-147.27861328125002,-76.5525390625],[-147.13530273437493,-76.53154296874997],[-146.94746093750007,-76.55498046875006],[-146.877880859375,-76.56328124999997],[-146.79003906249994,-76.63310546874999]]],[[[-146.69013671875,-76.24638671874999],[-146.894482421875,-76.26093750000001],[-147.15092773437502,-76.19746093750005],[-147.34541015625,-76.14667968750001],[-147.40776367187493,-76.10458984374996],[-147.42089843749994,-76.09023437500005],[-147.41806640625,-76.07343750000001],[-147.36064453125005,-76.06279296874997],[-146.94902343750002,-76.09814453124997],[-146.69013671875,-76.24638671874999]]],[[[162.96806640625002,-75.56708984374997],[162.78828125000007,-75.69619140624998],[162.66191406250002,-75.69189453125],[162.5912109375,-75.66855468750003],[162.72001953125002,-75.59667968749996],[162.84238281250006,-75.56621093750006],[162.91699218750003,-75.55732421875003],[162.96806640625002,-75.56708984374997]]],[[[-145.2380859375,-75.71123046875002],[-145.34838867187497,-75.71611328125005],[-145.54116210937497,-75.69267578124997],[-146.04277343749993,-75.61191406250003],[-146.150830078125,-75.57353515625003],[-146.075732421875,-75.53339843750004],[-145.89550781249997,-75.50478515624997],[-145.76079101562496,-75.51386718750005],[-145.4173828125,-75.58798828124996],[-145.3154296875,-75.64140625000002],[-145.25224609375002,-75.68281250000001],[-145.2380859375,-75.71123046875002]]],[[[163.9759765625,-74.83271484375],[163.84462890625,-74.83271484375],[163.76337890625,-74.80283203124998],[163.73720703125005,-74.73378906250002],[163.74169921874994,-74.71152343750002],[164.00234375000005,-74.62890624999997],[164.20849609374997,-74.60771484375002],[164.09824218750006,-74.73193359374999],[164.05917968750006,-74.75273437499997],[163.9759765625,-74.83271484375]]],[[[-132.39125976562502,-74.44189453124997],[-132.54628906249997,-74.49843750000004],[-132.857177734375,-74.46171875000002],[-132.83168945312502,-74.42158203125001],[-132.552490234375,-74.38662109375],[-132.36230468749997,-74.40996093750005],[-132.39125976562502,-74.44189453124997]]],[[[-131.06669921875,-74.58378906250002],[-131.17890624999998,-74.60478515625003],[-131.59794921874993,-74.55371093750003],[-131.840869140625,-74.54257812499998],[-131.95249023437498,-74.51435546875],[-132.02509765625,-74.488671875],[-132.04931640625,-74.46386718750001],[-132.162646484375,-74.42578124999997],[-131.93779296875,-74.34912109375],[-131.76269531250003,-74.32382812499998],[-131.59409179687498,-74.32968750000002],[-131.55961914062496,-74.36728515624996],[-131.23388671875003,-74.41357421874997],[-130.98110351562497,-74.41406249999999],[-130.956787109375,-74.45625],[-130.96728515625,-74.51503906250005],[-131.06669921875,-74.58378906250002]]],[[[-127.36582031249998,-74.62265625000003],[-127.51772460937495,-74.64052734375002],[-127.81708984375001,-74.57460937500002],[-127.915234375,-74.54257812499998],[-128.00004882812496,-74.48945312499998],[-128.07045898437502,-74.47822265625001],[-128.09624023437493,-74.46621093750005],[-128.13344726562497,-74.32744140625002],[-128.04287109375,-74.31220703125003],[-127.85297851562504,-74.33183593750002],[-127.48642578124996,-74.40527343749997],[-127.22973632812497,-74.42519531250004],[-127.14516601562497,-74.48017578125004],[-127.23193359374997,-74.57841796874999],[-127.36582031249998,-74.62265625000003]]],[[[-116.73862304687498,-74.16503906249997],[-117.23032226562495,-74.19277343750002],[-117.36298828124997,-74.16093750000002],[-117.39829101562498,-74.1224609375],[-117.37646484374997,-74.08281250000002],[-116.38129882812503,-73.86552734374997],[-116.20268554687496,-73.89560546874998],[-116.15498046875,-73.91044921874997],[-116.451416015625,-74.01767578124998],[-116.58457031250003,-74.05556640625005],[-116.60864257812497,-74.06855468750004],[-116.53417968749999,-74.08330078125002],[-116.51411132812497,-74.09550781250002],[-116.57089843750002,-74.12568359375004],[-116.73862304687498,-74.16503906249997]]],[[[-119.54892578124999,-74.11025390625],[-119.75834960937493,-74.12207031250001],[-119.82099609375,-74.11962890624996],[-119.88720703124999,-74.09726562500002],[-119.90512695312499,-74.08154296875],[-119.79667968750002,-74.02919921875001],[-119.69375,-74.00615234375],[-119.66157226562503,-73.98935546874998],[-119.80258789062498,-73.8146484375],[-119.66904296875002,-73.80927734374995],[-119.51635742187501,-73.77490234374997],[-119.21621093749998,-73.77763671875002],[-118.95927734374995,-73.80947265625001],[-118.90981445312498,-73.83427734375],[-118.87734374999994,-73.87802734375002],[-118.98979492187495,-73.96699218750004],[-119.05859375000001,-73.99765624999998],[-119.44853515624997,-74.07617187499999],[-119.54892578124999,-74.11025390625]]],[[[-120.55625,-73.75605468750005],[-120.378125,-73.85585937500005],[-120.31230468749999,-73.92197265625],[-120.27246093749994,-73.98916015625002],[-120.989501953125,-74.15703125000002],[-121.01904296874999,-74.1734375],[-121.05410156249995,-74.25996093750003],[-121.03642578124999,-74.27929687499996],[-121.0046875,-74.29287109374998],[-121.00244140625,-74.32636718749998],[-121.06240234374995,-74.3373046875],[-122.28662109374994,-74.403125],[-122.85908203124997,-74.34267578125002],[-122.93842773437495,-74.30205078124999],[-122.9560546875,-74.24033203125003],[-122.890625,-74.22705078125],[-122.76474609375,-74.21865234375005],[-122.79418945312496,-74.1904296875],[-122.87524414062497,-74.1412109375],[-122.88076171874994,-74.09902343750002],[-122.71000976562496,-73.99365234374997],[-122.62470703125001,-73.96552734375001],[-122.95117187499999,-73.86660156250002],[-122.99155273437495,-73.84414062500005],[-123.03466796875001,-73.83759765624997],[-123.19082031249995,-73.84931640625004],[-123.34619140625,-73.84306640625002],[-123.29179687500002,-73.80302734375003],[-123.24907226562502,-73.73867187500005],[-123.112158203125,-73.68222656250002],[-123.0125,-73.67294921875],[-122.91044921874996,-73.67968750000003],[-122.43569335937495,-73.681640625],[-121.96669921874997,-73.71181640625001],[-121.49731445312499,-73.7328125],[-120.722216796875,-73.75195312500001],[-120.55625,-73.75605468750005]]],[[[-20.607421875,-73.88662109375001],[-20.654248046874926,-74.10498046875],[-20.641259765624966,-74.15058593750004],[-20.60034179687497,-74.196875],[-20.42333984374997,-74.31738281250001],[-20.411425781249932,-74.40849609375002],[-20.416650390624934,-74.443359375],[-20.48901367187503,-74.49267578125003],[-20.737011718749926,-74.48095703125003],[-20.817675781250017,-74.45478515625003],[-20.845654296874926,-74.43779296875003],[-20.976757812500008,-74.22509765625004],[-21.051220703124983,-74.17607421875],[-21.16655273437493,-74.13261718750003],[-21.60986328125003,-74.09179687499997],[-22.035351562499926,-74.10654296875005],[-21.93037109374995,-74.056640625],[-21.288281249999955,-73.98935546874998],[-21.126367187500023,-73.93984375000002],[-21.02451171874995,-73.88007812500001],[-20.979199218749955,-73.79042968750004],[-20.86704101562495,-73.67666015625005],[-20.690136718749955,-73.62519531250004],[-20.580224609374966,-73.61923828124998],[-20.520703124999983,-73.71181640625001],[-20.520703124999983,-73.79785156250004],[-20.607421875,-73.88662109375001]]],[[[169.84365234375,-73.60498046875],[169.70917968750004,-73.62529296875006],[169.52236328125,-73.56152343750003],[169.47949218749997,-73.53945312499997],[169.659375,-73.41806640625003],[169.64541015625005,-73.3791015625],[169.671875,-73.34609375000002],[169.74003906250002,-73.32041015625003],[169.78320312499997,-73.32421875],[169.88652343750002,-73.45869140625004],[169.9603515625,-73.51435546875001],[169.8587890625,-73.56806640625004],[169.84365234375,-73.60498046875]]],[[[-126.32988281249996,-73.28623046874999],[-126.06528320312499,-73.31484375000005],[-125.97587890624997,-73.3568359375],[-125.85664062500001,-73.38828125],[-125.73579101562501,-73.40566406249998],[-125.62680664062499,-73.45322265625],[-125.56132812499997,-73.53642578124999],[-125.50390625000001,-73.5625],[-125.32617187499997,-73.61787109374997],[-125.26396484374997,-73.66640625],[-125.27607421874997,-73.69052734375003],[-125.61240234374999,-73.71074218750006],[-125.72319335937502,-73.70273437500003],[-125.82841796874996,-73.718359375],[-125.85991210937496,-73.74863281249995],[-125.85703125000002,-73.78017578125],[-125.79858398437501,-73.80195312499998],[-125.67441406250002,-73.82216796875002],[-125.55239257812494,-73.82011718750005],[-125.32685546875001,-73.7955078125],[-125.2244140625,-73.80078125000001],[-125.10878906249998,-73.82597656249999],[-124.993408203125,-73.82978515624997],[-124.69438476562493,-73.74960937499998],[-124.61748046874999,-73.73525390625],[-124.53999023437501,-73.73974609375001],[-124.12851562500002,-73.83398437500003],[-124.04204101562499,-73.88037109374997],[-124.100537109375,-73.90683593750003],[-124.15180664062498,-73.94423828125001],[-124.12934570312504,-73.97109375],[-123.93232421874993,-74.00800781250004],[-123.851171875,-74.05703125],[-123.80043945312498,-74.07626953125],[-123.81103515625001,-74.11738281250004],[-123.83876953124998,-74.16826171875],[-123.83671875000002,-74.22568359374998],[-123.93740234375,-74.25615234374997],[-123.98247070312493,-74.25605468750004],[-124.19941406249998,-74.22558593749997],[-124.872998046875,-74.20830078124999],[-125.08955078124998,-74.18242187500005],[-125.42080078124997,-74.06992187500005],[-125.54931640625003,-74.0626953125],[-125.68271484375002,-74.03544921875005],[-125.88686523437497,-73.95458984375],[-126.244091796875,-73.89091796874999],[-126.47167968749999,-73.812109375],[-126.46557617187499,-73.74628906250001],[-126.49609375,-73.70019531250004],[-126.53837890625,-73.68017578124996],[-126.58266601562497,-73.66992187499999],[-126.71093749999999,-73.65361328125005],[-126.83823242187498,-73.65732421874999],[-126.90166015625003,-73.67675781249997],[-127.00639648437495,-73.72578125000001],[-127.12207031249997,-73.73417968750005],[-127.21162109375003,-73.7244140625],[-127.231640625,-73.71347656249999],[-127.23291015625001,-73.58554687500002],[-127.33203124999994,-73.56748046875],[-127.41435546875002,-73.51630859374997],[-127.429052734375,-73.446875],[-127.39433593749995,-73.38222656250001],[-127.26762695312499,-73.30400390624997],[-127.12353515625,-73.29433593750005],[-126.97783203125,-73.3080078125],[-126.82998046874998,-73.29082031250005],[-126.596875,-73.27890625],[-126.32988281249996,-73.28623046874999]]],[[[-73.87841796874997,-73.3568359375],[-73.97480468749998,-73.37607421875],[-74.03828124999995,-73.36552734374999],[-74.146630859375,-73.3154296875],[-74.134423828125,-73.27666015624997],[-74.08447265625001,-73.24931640625],[-74.04873046874992,-73.22021484374996],[-73.83212890624995,-73.11328125000003],[-73.67421874999994,-73.10039062500006],[-73.542431640625,-73.12382812500005],[-73.682275390625,-73.225],[-73.72138671874995,-73.2962890625],[-73.87841796874997,-73.3568359375]]],[[[-104.53793945312492,-73.16630859374999],[-104.65957031250001,-73.21210937499998],[-104.88095703125,-73.20058593750005],[-105.05292968749995,-73.12597656250003],[-105.12343750000002,-73.02636718749999],[-105.13178710937495,-72.99150390624999],[-105.0845703125,-72.96591796875002],[-104.97241210937499,-72.941015625],[-104.53793945312492,-73.16630859374999]]],[[[-74.35444335937495,-73.09843750000002],[-74.49892578125,-73.22919921875001],[-74.5224609375,-73.24394531249999],[-74.66767578125001,-73.27529296874998],[-74.61538085937502,-73.31142578125007],[-74.57548828124996,-73.327734375],[-74.55063476562496,-73.369140625],[-74.467138671875,-73.42714843750002],[-74.36611328124994,-73.46425781250002],[-74.45209960937495,-73.56542968750003],[-74.57465820312497,-73.61132812499996],[-75.90083007812495,-73.33261718750002],[-76.00322265624996,-73.28798828124998],[-76.053125,-73.25468750000005],[-76.09042968749995,-73.20283203124997],[-76.09638671874991,-73.15048828124996],[-76.06240234375002,-73.1087890625],[-76.01767578124998,-73.08544921875003],[-75.89765624999995,-73.05634765624997],[-75.77465820312503,-73.05429687499999],[-75.50585937499997,-73.10888671875001],[-75.46757812499999,-73.10107421875003],[-75.41723632812493,-73.05156250000005],[-75.276220703125,-73.050390625],[-75.24384765624998,-73.009375],[-75.43945312500003,-72.99423828124999],[-75.60029296874991,-72.95263671874997],[-75.7017578125,-72.91103515625002],[-75.7310546875,-72.87929687500005],[-75.37685546874997,-72.82041015625003],[-74.47387695312497,-72.89375],[-74.33554687500003,-72.91894531250004],[-74.27578125000002,-72.95126953124996],[-74.223876953125,-72.99707031249997],[-74.35444335937495,-73.09843750000002]]],[[[-93.79560546874998,-72.91972656250002],[-93.96552734374998,-72.92021484375003],[-94.078125,-72.88388671875],[-94.11318359374994,-72.86005859375004],[-94.04697265624995,-72.82304687500005],[-94.00424804687495,-72.8197265625],[-93.799560546875,-72.88203124999997],[-93.75581054687498,-72.90761718750005],[-93.79560546874998,-72.91972656250002]]],[[[-91.16069335937502,-73.18222656250003],[-91.34418945312501,-73.20712890625003],[-91.51083984375003,-73.19550781249998],[-91.45039062499995,-72.96787109374998],[-91.35688476562501,-72.90947265624996],[-91.38212890624999,-72.86787109375003],[-91.55146484374995,-72.75361328125001],[-91.67001953125003,-72.62373046875003],[-91.61240234374999,-72.59384765624998],[-91.30351562499995,-72.54736328125001],[-90.947412109375,-72.55634765624998],[-90.80712890625,-72.61064453125002],[-90.76333007812497,-72.68105468749998],[-90.78017578125002,-72.73173828125],[-90.89536132812495,-72.82363281249998],[-90.776220703125,-72.85400390624996],[-90.75097656250003,-72.9166015625],[-90.77558593749998,-72.99296875000002],[-90.89306640625001,-73.083984375],[-90.9984375,-73.13652343750005],[-91.16069335937502,-73.18222656250003]]],[[[-95.02705078124994,-72.66503906249999],[-95.21943359374998,-72.66982421875],[-95.27294921874997,-72.646875],[-95.215625,-72.59941406250005],[-94.75302734375,-72.5171875],[-94.56611328124993,-72.46806640625002],[-94.53837890624996,-72.47578125],[-94.51386718749995,-72.49169921875004],[-94.43393554687499,-72.58916015625],[-94.426025390625,-72.61259765624999],[-95.02705078124994,-72.66503906249999]]],[[[-16.10449218750003,-72.67910156250002],[-16.174804687499943,-72.70283203124998],[-16.31757812500001,-72.70214843750001],[-16.453027343749966,-72.65234375],[-16.509765624999968,-72.58222656250001],[-16.516552734374955,-72.53085937500003],[-16.455371093750017,-72.47353515624998],[-16.35585937499999,-72.45859375000005],[-16.302880859374937,-72.47802734375],[-16.172509765624937,-72.6],[-16.10449218750003,-72.67910156250002]]],[[[68.46171875000002,-72.30009765624999],[68.4088867187501,-72.30019531250001],[68.43613281250006,-72.26044921875001],[68.56630859375004,-72.19013671874998],[68.66708984375005,-72.103125],[68.72929687500002,-72.08916015625002],[68.8404296875,-72.16542968750001],[68.81718750000007,-72.22871093750001],[68.66953125,-72.27597656249996],[68.46171875000002,-72.30009765624999]]],[[[-12.508886718749977,-72.17333984375001],[-12.588427734374932,-72.19609375000005],[-12.720166015624955,-72.18769531250001],[-12.888427734374943,-72.137109375],[-12.94370117187492,-72.09892578125005],[-12.96328125,-72.06445312500004],[-12.914794921874972,-72.01464843750003],[-12.875488281249972,-72.00068359375001],[-12.788867187499987,-72.00654296874997],[-12.636621093749964,-72.07128906250001],[-12.53476562499992,-72.14003906249998],[-12.508886718749977,-72.17333984375001]]],[[[69.91835937500005,-71.9177734375],[69.79199218749996,-72.04667968749997],[69.74355468750005,-72.04414062499997],[69.69257812500004,-71.96826171874999],[69.73710937500007,-71.92197265624998],[69.7960937500001,-71.89394531250002],[69.89521484375003,-71.9078125],[69.91835937500005,-71.9177734375]]],[[[-98.09111328124997,-71.9125],[-98.17592773437494,-72.01845703125],[-98.16796874999999,-72.12304687499999],[-97.92314453124996,-72.11660156250001],[-97.81601562499998,-71.91884765625005],[-97.58476562499993,-71.88261718750003],[-97.473486328125,-72.00029296875002],[-97.58198242187501,-72.09511718749998],[-97.52563476562497,-72.14921874999997],[-97.46025390624999,-72.18828125000003],[-97.34521484375,-72.18906250000003],[-97.24199218750002,-72.1318359375],[-97.19550781249995,-72.09101562500003],[-97.15478515625,-72.04541015624997],[-97.08872070312495,-71.94404296875003],[-96.86943359374996,-71.85097656249998],[-96.38334960937496,-71.83632812500002],[-96.125,-71.8955078125],[-96.29819335937503,-72.04511718750001],[-96.71494140624999,-72.13164062500005],[-96.97890624999997,-72.221875],[-96.89013671875,-72.24697265625001],[-96.79873046874994,-72.25947265624998],[-96.71757812499993,-72.25546874999995],[-96.48232421874997,-72.20761718749996],[-95.90634765624993,-72.12197265625002],[-95.68540039062498,-72.05664062499996],[-95.609375,-72.06845703124998],[-95.60952148437497,-72.175],[-95.53105468749996,-72.24873046875001],[-95.57539062499995,-72.40996093749997],[-95.82568359374994,-72.43896484374996],[-96.07817382812496,-72.45380859375004],[-96.01430664062502,-72.52470703125002],[-96.02988281249996,-72.554296875],[-96.0517578125,-72.57724609374998],[-96.69267578125002,-72.54765624999999],[-96.80390624999993,-72.55800781250005],[-96.91479492187497,-72.57832031250001],[-97.02763671874995,-72.57382812499998],[-97.25029296875002,-72.52089843750004],[-97.36552734374996,-72.52177734375005],[-97.59560546875002,-72.54765624999999],[-97.82832031250001,-72.55703125000002],[-98.16342773437498,-72.55605468750001],[-98.40781250000002,-72.54765624999999],[-98.64067382812493,-72.48974609375],[-98.88154296874998,-72.4732421875],[-99.14882812499998,-72.47197265625002],[-99.43432617187499,-72.40664062500002],[-99.67236328124997,-72.3798828125],[-100.01425781249999,-72.31240234375002],[-100.104052734375,-72.28701171875],[-100.19521484375001,-72.27265625],[-100.35742187500001,-72.278125],[-101.60195312499998,-72.17568359375005],[-101.78476562500002,-72.17773437500003],[-101.90332031250001,-72.19033203125002],[-102.02211914062497,-72.1849609375],[-102.26479492187502,-72.13525390624999],[-102.31362304687502,-72.08105468749996],[-102.28828125,-72.03212890625002],[-102.23652343749994,-72.00927734375],[-102.128125,-71.98544921875002],[-100.400927734375,-71.86572265624997],[-100.21865234375,-71.83291015625002],[-100.08461914062495,-71.83691406249996],[-99.98515624999993,-71.93945312499997],[-99.83320312499998,-72.04609375000004],[-99.78398437499999,-72.04433593750002],[-99.73491210937493,-72.03300781250003],[-99.56308593750002,-71.94492187500003],[-99.25410156249995,-71.97216796874997],[-99.08212890624999,-71.93251953125],[-98.96455078125003,-71.85429687500003],[-98.61542968749995,-71.76376953124998],[-98.39428710937503,-71.78154296875005],[-98.18916015624998,-71.82001953124998],[-98.09111328124997,-71.9125]]],[[[-2.954980468749937,-71.21376953125002],[-3.06059570312496,-71.23662109375005],[-3.201464843749989,-71.2302734375],[-3.309375,-71.20087890624997],[-3.385644531249937,-71.14296875],[-3.403857421874988,-71.11982421874998],[-3.39169921874992,-71.08115234375],[-3.398974609374989,-71.06210937500002],[-3.26303710937492,-71.05175781249997],[-3.212792968749966,-71.07597656250002],[-3.191357421874955,-71.09482421875003],[-2.954980468749937,-71.21376953125002]]],[[[-60.552246093749964,-71.05292968750001],[-60.65214843749999,-71.05869140625003],[-60.78974609374995,-71.04111328125],[-60.90634765624998,-71.00742187499999],[-60.94648437499998,-70.9673828125],[-60.88906250000002,-70.934375],[-60.78281249999995,-70.91406249999997],[-60.61313476562504,-70.92011718749995],[-60.533300781250006,-70.9625],[-60.516308593749926,-70.99951171874997],[-60.535937499999925,-71.04091796875007],[-60.552246093749964,-71.05292968750001]]],[[[-2.5328125,-70.76777343750001],[-2.4234375,-70.800390625],[-2.255566406249926,-70.79609375000001],[-2.092285156249972,-70.8208984375],[-2.119042968749994,-70.85537109375001],[-2.212695312499989,-70.90156250000001],[-2.293164062499955,-70.99794921875001],[-2.368945312499932,-71.04443359374997],[-2.60673828124996,-71.14111328124996],[-2.783496093750017,-71.16748046875],[-2.825146484374955,-71.11269531250002],[-2.821875,-71.05673828125],[-2.805175781249972,-71.01474609374998],[-2.800537109375,-70.98222656250002],[-2.963134765625,-70.94033203125],[-2.975,-70.88330078125001],[-3.006982421874966,-70.85146484375002],[-3.488964843749926,-70.7359375],[-3.574658203124983,-70.703125],[-3.537060546874955,-70.68330078125004],[-3.040039062499943,-70.67441406249999],[-2.749804687499989,-70.69414062500002],[-2.5328125,-70.76777343750001]]],[[[-73.70664062499998,-70.63515625],[-73.55034179687502,-70.72343750000005],[-73.69453124999997,-70.79433593750001],[-74.20502929687498,-70.92412109374999],[-74.50473632812503,-70.97343749999999],[-74.80581054687498,-71.0123046875],[-76.17631835937496,-71.13242187499996],[-76.27128906249993,-71.13281249999996],[-76.36396484374998,-71.11679687499996],[-76.42148437499998,-71.09042968750003],[-76.51152343749996,-70.99082031249998],[-76.50024414062497,-70.94140625000004],[-76.37763671874993,-70.894140625],[-76.248876953125,-70.86376953125003],[-76.03457031249994,-70.83593749999996],[-75.21000976562502,-70.77255859375],[-75.12695312499997,-70.75175781250005],[-75.05991210937498,-70.70556640624996],[-75.03754882812495,-70.65058593750004],[-75.00747070312497,-70.60888671874997],[-74.95361328125,-70.590234375],[-74.89848632812496,-70.59052734374997],[-74.79047851562498,-70.63095703125003],[-74.589697265625,-70.79199218749997],[-74.52714843749999,-70.76972656249997],[-74.46865234374997,-70.72666015624999],[-74.45615234374998,-70.58671874999999],[-74.40097656250003,-70.57587890625001],[-74.225,-70.6146484375],[-74.11455078124993,-70.65537109375003],[-74.112646484375,-70.5767578125],[-74.03833007812494,-70.55292968750004],[-73.95781249999999,-70.5609375],[-73.8794921875,-70.578125],[-73.70664062499998,-70.63515625]]],[[[-60.740625,-70.71054687499999],[-60.826074218749966,-70.71054687499999],[-60.89648437500002,-70.6896484375],[-60.958007812499936,-70.62900390624999],[-60.975537109374955,-70.59912109375001],[-60.94179687500002,-70.53251953125005],[-60.88388671875003,-70.51757812500003],[-60.55366210937499,-70.50878906250001],[-60.45249023437498,-70.54423828125003],[-60.44897460937497,-70.60332031249999],[-60.487695312499966,-70.64667968750004],[-60.740625,-70.71054687499999]]],[[[-5.894091796874989,-70.55224609374999],[-6.15610351562492,-70.61152343749997],[-6.180859374999983,-70.58554687500002],[-6.266113281249943,-70.55019531250001],[-6.437988281249972,-70.45263671875003],[-6.243652343749972,-70.44570312500004],[-6.068261718749966,-70.40468750000002],[-5.971630859374983,-70.42148437499999],[-5.949511718749931,-70.43222656250003],[-5.894091796874989,-70.55224609374999]]],[[[3.036914062500045,-70.59736328125003],[2.697753906250057,-70.62353515625003],[2.62275390625004,-70.59335937499999],[2.584667968750011,-70.53457031250002],[2.631445312500034,-70.500390625],[3.072167968750051,-70.38164062500005],[3.192773437499994,-70.39267578124998],[3.230566406250063,-70.40263671875006],[3.259863281250006,-70.44882812499996],[3.221289062500034,-70.51914062499999],[3.17109375000004,-70.55390624999997],[3.036914062500045,-70.59736328125003]]],[[[-3.280224609374955,-70.53378906250003],[-3.441894531249943,-70.53544921875002],[-3.490234375,-70.50800781250004],[-3.496826171874943,-70.48837890625003],[-3.28745117187492,-70.34404296875002],[-3.173242187499994,-70.30732421875],[-2.949902343749983,-70.27968750000005],[-2.805126953124983,-70.28847656249998],[-2.713525390624966,-70.32021484375004],[-2.684375,-70.376171875],[-2.682714843749977,-70.46220703125002],[-2.738037109374972,-70.50703125000001],[-3.280224609374955,-70.53378906250003]]],[[[-71.69501953124995,-70.26513671875001],[-71.64775390625002,-70.29541015624997],[-71.43159179687493,-70.26728515625001],[-71.35488281249994,-70.29785156250003],[-71.34028320312498,-70.31748046875003],[-71.43774414062494,-70.39150390625001],[-71.55122070312498,-70.43886718749997],[-71.68466796874998,-70.44228515625005],[-71.781982421875,-70.31884765625004],[-71.79526367187495,-70.28837890625005],[-71.69501953124995,-70.26513671875001]]],[[[72.00224609375002,-70.63261718750002],[71.92900390625002,-70.63300781250001],[71.8412109375,-70.62197265624998],[71.72578125000004,-70.54912109375006],[71.659375,-70.49746093750002],[71.637109375,-70.44355468750004],[71.64658203125006,-70.33632812500005],[71.70507812499997,-70.284375],[71.79658203125004,-70.26425781250002],[71.83798828125006,-70.31220703125],[71.85117187499999,-70.36767578125004],[71.87998046875,-70.40556640625003],[72,-70.45683593749999],[72.05566406250001,-70.50097656250003],[72.0734375000001,-70.52451171875002],[72.09736328125003,-70.574609375],[72.078125,-70.60908203125001],[72.00224609375002,-70.63261718750002]]],[[[4.52587890625,-70.47871093750001],[4.365234375000028,-70.50263671875001],[4.179687499999972,-70.45126953125002],[4.129589843749983,-70.41699218749996],[4.076171875000028,-70.32529296875002],[4.069726562500051,-70.29023437499997],[4.11171875000008,-70.26679687500001],[4.256054687500011,-70.24082031250003],[4.495019531250023,-70.25136718750005],[4.586230468750017,-70.29423828125],[4.617578125000023,-70.36865234374997],[4.589941406249977,-70.43251953125002],[4.52587890625,-70.47871093750001]]],[[[26.857226562500045,-70.38115234375003],[26.79296875000003,-70.4193359375],[26.60878906250008,-70.41240234375],[26.47021484375,-70.44794921875005],[26.357617187500068,-70.43427734375001],[26.005371093750057,-70.37294921875005],[25.964257812500023,-70.29453124999998],[25.9541015625,-70.26142578124998],[25.982519531250034,-70.19990234374995],[26.30107421874999,-70.07246093750003],[26.425585937500045,-70.060546875],[26.604785156250045,-70.07822265625005],[26.68623046875004,-70.11445312499997],[26.737402343750063,-70.18603515624999],[26.87480468749999,-70.32998046875],[26.857226562500045,-70.38115234375003]]],[[[1.29931640625,-70.25517578125005],[1.211523437500063,-70.38134765624999],[1.156347656250006,-70.378125],[1.104589843750034,-70.30419921874999],[0.990332031250006,-70.22431640624997],[0.952539062500051,-70.16894531249996],[0.94960937500008,-70.09404296874999],[1.02675781250008,-70.04980468750003],[1.314843750000051,-70.02275390625002],[1.412207031249977,-70.04072265625004],[1.460937500000057,-70.13564453125002],[1.29931640625,-70.25517578125005]]],[[[-61.15844726562499,-69.97578125000004],[-61.30864257812496,-69.97792968750005],[-61.37846679687499,-69.9498046875],[-61.40434570312502,-69.93251953125001],[-61.38647460937503,-69.89326171875003],[-61.3271484375,-69.85634765625005],[-61.15185546875,-69.88310546874999],[-61.10791015625002,-69.95527343750004],[-61.15844726562499,-69.97578125000004]]],[[[-74.98710937499999,-69.72783203124999],[-74.81015624999998,-69.75244140625003],[-74.54970703124997,-69.8609375],[-74.4654296875,-69.91689453125005],[-74.43798828125003,-69.94960937500005],[-74.46005859374998,-69.97167968750001],[-74.57841796874993,-69.99804687499997],[-74.67177734374995,-70.13173828125002],[-74.84882812499995,-70.17929687500003],[-75.268408203125,-70.14941406249999],[-75.72675781249995,-70.09609375000004],[-75.76445312499999,-70.08505859375002],[-75.80415039062498,-70.03818359374998],[-75.812939453125,-69.98398437500002],[-75.75952148437494,-69.91611328124998],[-75.68134765624991,-69.88164062500005],[-75.33994140625,-69.84023437500005],[-75.31391601562495,-69.816796875],[-75.26455078125002,-69.74931640625002],[-75.17895507812497,-69.73515625000005],[-75.13637695312502,-69.740625],[-74.98710937499999,-69.72783203124999]]],[[[16.222656250000057,-70.00761718750005],[16.159277343750006,-70.07197265625],[15.844921875000011,-69.98203125],[15.66347656250008,-69.955078125],[15.613867187500006,-69.93906250000003],[15.570996093750066,-69.88476562499997],[15.562597656250034,-69.86279296875003],[15.596875,-69.82802734375005],[15.699023437500045,-69.77324218749999],[15.909570312500023,-69.72841796875002],[16.246875,-69.70498046875002],[16.57343750000001,-69.72324218750002],[16.625488281250057,-69.75029296875003],[16.315429687500025,-69.84443359375001],[16.222656250000057,-70.00761718750005]]],[[[-71.98535156249994,-69.69843750000004],[-72.20205078124997,-69.74013671875],[-72.34458007812495,-69.70703125],[-72.77675781249997,-69.64501953124999],[-72.95732421874999,-69.52910156249999],[-72.93676757812497,-69.46884765624998],[-72.85732421874997,-69.43310546874997],[-72.72617187499998,-69.41308593749999],[-72.464306640625,-69.45185546874998],[-72.33115234374998,-69.49179687500003],[-71.98535156249994,-69.69843750000004]]],[[[-61.99760742187498,-69.721875],[-62.085156249999976,-69.72949218749997],[-62.17192382812499,-69.63662109375005],[-62.21601562499999,-69.49492187500005],[-62.496240234374966,-69.28818359375003],[-62.56767578124995,-69.18046875000002],[-62.51586914062497,-69.15458984374999],[-62.44213867187498,-69.14599609375003],[-62.238964843749955,-69.17578124999996],[-62.117919921875,-69.21474609375],[-61.97836914062498,-69.30039062500003],[-61.81596679687493,-69.37617187500001],[-61.78369140625002,-69.44189453124999],[-61.80717773437502,-69.51464843749999],[-61.91132812500001,-69.53339843749997],[-61.9078125,-69.58759765625001],[-61.9701171875,-69.69140625000003],[-61.99760742187498,-69.721875]]],[[[-70.05112304687498,-69.1890625],[-70.07934570312497,-69.31093750000005],[-69.91328124999995,-69.26728515625004],[-69.85498046875,-69.27656249999998],[-69.70756835937499,-69.32089843750002],[-69.41694335937501,-69.58320312500001],[-69.35297851562495,-69.66630859374997],[-69.2337890625,-69.90908203125005],[-69.09125976562501,-70.09033203125001],[-68.73056640624998,-70.40810546875001],[-68.55351562499996,-70.58144531249998],[-68.45947265625,-70.68291015625005],[-68.45078125,-70.81787109375],[-68.33598632812496,-70.85605468749996],[-68.31401367187492,-70.91171875000003],[-68.27792968749995,-71.09707031250005],[-68.25244140625,-71.31347656249999],[-68.22783203124996,-71.72519531250003],[-68.24101562499999,-71.82216796875007],[-68.39389648437495,-71.97519531249998],[-68.46074218749999,-72.08535156250002],[-68.54257812499995,-72.15761718750002],[-68.64003906250002,-72.20976562499997],[-69.149267578125,-72.4265625],[-69.209326171875,-72.5341796875],[-70.06308593750003,-72.62617187499998],[-70.54345703125,-72.66445312500007],[-70.73134765625,-72.62294921875005],[-70.92294921874995,-72.61308593749999],[-71.15859375,-72.62695312499997],[-71.84614257812501,-72.63935546875001],[-72.36748046874999,-72.66972656249999],[-72.43330078124998,-72.65830078124996],[-72.4798828125,-72.61728515625005],[-72.53081054687496,-72.58955078124997],[-72.67021484374993,-72.59589843750004],[-72.78037109375,-72.58056640625003],[-72.88764648437501,-72.54667968750005],[-73.00703124999998,-72.48408203125],[-73.05742187499996,-72.44755859375002],[-73.08637695312497,-72.4078125],[-72.85483398437498,-72.30419921875003],[-72.7375,-72.28056640625002],[-72.61821289062502,-72.27509765624997],[-72.37607421874998,-72.29628906250002],[-72.13496093749995,-72.33134765625006],[-71.60532226562498,-72.358984375],[-70.87260742187502,-72.36640625000001],[-70.671142578125,-72.35634765625],[-70.42768554687495,-72.32255859375005],[-70.20600585937501,-72.227734375],[-70.31420898437503,-72.19101562499998],[-70.42416992187495,-72.16777343750005],[-70.53320312499997,-72.16337890625003],[-70.64140624999999,-72.16962890624997],[-70.94516601562495,-72.2291015625],[-71.177734375,-72.26406250000002],[-71.41254882812495,-72.28447265625002],[-71.66147460937495,-72.24980468750005],[-71.89218749999998,-72.15283203125],[-71.89755859375,-72.12080078124998],[-71.10664062499998,-72.04707031250005],[-71.034375,-72.0345703125],[-70.89111328124997,-71.98740234374998],[-70.84462890625,-71.94580078125001],[-70.82099609374998,-71.90654296875002],[-71.35498046874997,-71.83642578125003],[-71.46464843750002,-71.83789062499997],[-71.57441406249998,-71.8505859375],[-71.81616210937494,-71.821875],[-72.04594726562496,-71.73964843750004],[-72.25908203124993,-71.64121093749998],[-72.33662109374993,-71.6322265625],[-72.41220703124995,-71.66230468750001],[-72.92763671875,-71.92167968749999],[-72.97207031249997,-71.92363281250005],[-73.16669921874993,-71.90458984374999],[-73.40996093750002,-71.853125],[-73.63291015624995,-71.83496093749999],[-73.77597656249998,-71.84892578125002],[-73.82988281249993,-71.87021484374999],[-73.690576171875,-71.92939453124997],[-73.57231445312496,-71.98095703125],[-73.53710937499997,-72.02236328124998],[-73.89926757812495,-72.15234375],[-73.99560546874994,-72.16982421875001],[-74.15297851562497,-72.15878906249998],[-74.20893554687497,-72.14228515625],[-74.32177734374997,-72.07265625000002],[-74.42929687500003,-72.05556640625],[-74.663232421875,-72.069921875],[-74.78583984375001,-72.06357421875003],[-74.90825195312499,-72.03330078125],[-75.02412109374998,-71.98847656250001],[-75.129736328125,-71.96396484374999],[-75.25888671875,-71.91396484375002],[-75.35307617187502,-71.87841796874997],[-75.38271484375002,-71.82792968749999],[-75.37324218749995,-71.78027343749997],[-75.330810546875,-71.75234375000005],[-75.32490234374995,-71.72558593750001],[-75.353125,-71.6796875],[-75.33544921874997,-71.64521484374998],[-75.29257812499995,-71.61494140625004],[-75.09965820312497,-71.55537109374998],[-74.86313476562502,-71.543359375],[-74.63637695312502,-71.61748046875002],[-74.48745117187497,-71.64150390625002],[-74.41865234374998,-71.64326171875004],[-74.39179687499991,-71.63818359374996],[-74.37333984374999,-71.61796875000003],[-74.38007812499995,-71.57939453124999],[-74.42031249999997,-71.50722656250002],[-74.42539062500003,-71.45693359375],[-74.375,-71.41494140625005],[-74.30791015624999,-71.39990234375001],[-74.236083984375,-71.38837890624998],[-74.18720703125,-71.38300781250004],[-74.04096679687495,-71.41044921875003],[-73.93710937500003,-71.43818359374998],[-73.72426757812502,-71.51699218750007],[-73.54536132812498,-71.57304687500002],[-73.47900390624997,-71.57871093750003],[-73.42714843749997,-71.55888671874999],[-73.38017578124999,-71.52792968749998],[-73.59218750000002,-71.44804687500005],[-73.61708984375002,-71.39658203125005],[-73.60449218749994,-71.35078125000004],[-73.473974609375,-71.32490234375001],[-73.39741210937495,-71.32119140625005],[-73.01972656250001,-71.36865234375004],[-72.82104492187503,-71.38359374999997],[-72.62158203124997,-71.38837890624998],[-72.21166992187497,-71.33505859375003],[-72.43007812499997,-71.275],[-72.90546875,-71.22314453124996],[-72.99453125000002,-71.18652343749996],[-73.06040039062503,-71.126953125],[-72.71044921874997,-71.07294921875001],[-72.35634765624994,-71.07480468750002],[-71.71850585937494,-71.14511718749998],[-71.50449218749995,-71.11152343749997],[-71.30751953124997,-71.01083984374998],[-71.19404296874995,-70.984765625],[-70.74111328124995,-70.992578125],[-70.38066406249996,-70.94638671874999],[-70.32290039062501,-70.95117187499999],[-70.26767578124995,-70.96474609375],[-69.91645507812498,-71.13378906249997],[-69.869775390625,-71.12568359375001],[-69.83510742187494,-71.09257812500002],[-69.8228515625,-71.03369140625001],[-69.82250976562494,-70.97343749999999],[-69.83041992187495,-70.91367187499998],[-69.87578124999995,-70.87597656250003],[-69.93320312500003,-70.88037109375003],[-69.99301757812495,-70.89707031249998],[-70.093994140625,-70.88261718750005],[-70.19624023437498,-70.8505859375],[-70.29868164062496,-70.8361328125],[-70.66064453125,-70.81787109375],[-70.91694335937498,-70.78583984374997],[-71.04941406249998,-70.76210937500002],[-71.17265624999993,-70.71298828125005],[-71.1900390625,-70.65957031249998],[-71.06108398437496,-70.537109375],[-70.56210937499998,-70.4041015625],[-70.32807617187501,-70.36123046875005],[-70.0904296875,-70.35068359375003],[-69.97529296874998,-70.36015625],[-69.70205078125001,-70.41474609375004],[-69.65986328124995,-70.41230468749998],[-69.61835937500001,-70.398046875],[-69.88300781249993,-70.30517578125],[-70.11787109374998,-70.23417968750002],[-70.23408203124995,-70.18046875],[-70.32763671874999,-70.15966796875003],[-70.71953124999999,-70.13945312499997],[-70.92622070312501,-70.19238281250003],[-71.02373046874999,-70.2013671875],[-71.12050781249997,-70.19648437499997],[-71.69609374999997,-70.06777343750005],[-71.72851562500003,-70.05371093750001],[-71.80996093750002,-70.00517578124999],[-71.85361328125003,-69.96933593749998],[-71.879248046875,-69.90898437500003],[-71.86767578124997,-69.84716796874996],[-71.85200195312495,-69.80703125000005],[-71.76650390624997,-69.6494140625],[-71.71821289062498,-69.52402343750003],[-71.74291992187494,-69.42275390625],[-71.83359375000003,-69.36679687499998],[-71.96323242187498,-69.32871093750003],[-72.0806640625,-69.26718750000002],[-72.11435546875003,-69.22539062500003],[-72.13515625,-69.17656250000003],[-72.13789062499995,-69.11455078125002],[-72.10864257812503,-69.06005859375],[-72.05786132812497,-69.00097656249997],[-71.99013671874994,-68.97080078125003],[-71.86899414062495,-68.941015625],[-71.39155273437495,-68.87353515625003],[-70.4169921875,-68.78896484375002],[-70.3119140625,-68.83222656250004],[-70.15429687499994,-68.92294921874996],[-70.10546874999994,-68.959375],[-70.05273437499994,-69.13955078125004],[-70.05112304687498,-69.1890625]]],[[[-90.53618164062495,-68.79775390625004],[-90.54716796874999,-68.79833984374996],[-90.56665039062494,-68.79814453125003],[-90.580859375,-68.79863281250005],[-90.59521484375,-68.8001953125],[-90.609130859375,-68.80185546874998],[-90.61738281249998,-68.80322265625],[-90.62036132812497,-68.80322265625],[-90.6236328125,-68.80136718749998],[-90.62836914062501,-68.79697265624996],[-90.63837890625001,-68.78828124999998],[-90.64707031249999,-68.7796875],[-90.65205078124995,-68.7708984375],[-90.648046875,-68.75957031249999],[-90.63720703125003,-68.75449218750002],[-90.63671875000003,-68.74726562499997],[-90.63671875000003,-68.737890625],[-90.6314453125,-68.72978515625005],[-90.62836914062501,-68.72138671875003],[-90.629150390625,-68.71640624999998],[-90.62568359374998,-68.7138671875],[-90.61674804687496,-68.712109375],[-90.60009765625003,-68.71230468750004],[-90.58964843749993,-68.71298828125],[-90.57060546874995,-68.71396484375002],[-90.56166992187498,-68.71503906249998],[-90.548486328125,-68.71835937500002],[-90.53544921874999,-68.72841796875004],[-90.52514648437503,-68.73847656250004],[-90.52514648437503,-68.74296874999999],[-90.52290039062501,-68.74882812500002],[-90.52119140624993,-68.75585937500003],[-90.51918945312497,-68.76425781249996],[-90.51469726562493,-68.77128906249997],[-90.51816406250003,-68.783203125],[-90.525927734375,-68.794921875],[-90.53295898437501,-68.797265625],[-90.53618164062495,-68.79775390625004]]],[[[-60.65590820312494,-68.76757812500003],[-60.69335937500003,-68.79501953124999],[-60.820068359375,-68.77841796875],[-60.894042968749964,-68.75888671875003],[-61.01494140624999,-68.70976562500005],[-60.947167968749966,-68.68066406249999],[-60.813574218750006,-68.6876953125],[-60.70483398437497,-68.7220703125],[-60.65590820312494,-68.76757812500003]]],[[[-67.34892578124996,-67.76621093750003],[-67.54453125000003,-67.78525390624999],[-67.69335937499997,-67.7634765625],[-67.68969726562503,-67.68769531250001],[-67.73066406249993,-67.67949218750005],[-67.74326171875,-67.66123046875005],[-67.55673828125003,-67.60449218750003],[-67.41767578124993,-67.590625],[-67.24672851562502,-67.59873046875],[-67.17490234374995,-67.62451171875003],[-67.1494140625,-67.65019531250002],[-67.2796875,-67.71191406249997],[-67.29970703124997,-67.73720703124998],[-67.34892578124996,-67.76621093750003]]],[[[164.83359375000012,-67.54042968750004],[164.7462890625001,-67.56884765624997],[164.69208984375,-67.56005859375004],[164.63896484375007,-67.50009765624999],[164.6962890625,-67.40781250000002],[164.6751953125,-67.28886718750005],[164.683984375,-67.259375],[164.825,-67.32607421874998],[164.85009765625003,-67.363671875],[164.90722656250003,-67.41855468749999],[164.91865234375004,-67.44746093750001],[164.86044921875006,-67.50390624999996],[164.83359375000012,-67.54042968750004]]],[[[-67.36240234374995,-66.89453125],[-67.40922851562499,-66.90195312499999],[-67.52080078124999,-66.89726562500002],[-67.59326171875,-66.87558593750003],[-67.49951171875,-66.80361328125002],[-67.51083984375,-66.75625],[-67.42597656249995,-66.73691406250003],[-67.331689453125,-66.75351562500003],[-67.26875,-66.815234375],[-67.25698242187497,-66.84091796874998],[-67.36240234374995,-66.89453125]]],[[[85.82236328125006,-66.95332031249998],[85.65009765625004,-66.97968750000001],[85.62226562500004,-66.96533203125003],[85.61738281250004,-66.95087890625001],[85.3587890625,-66.85429687500005],[85.31445312499997,-66.7759765625],[85.34033203124997,-66.72333984375],[85.5528320312501,-66.728515625],[85.80625,-66.77460937499997],[85.9376953125001,-66.894140625],[85.82236328125006,-66.95332031249998]]],[[[48.545996093750055,-66.78417968749997],[48.37792968749997,-66.80732421874998],[48.304492187500074,-66.79785156250001],[48.295996093750006,-66.773828125],[48.29394531250003,-66.75009765624996],[48.30078125000003,-66.72421875000002],[48.357714843750074,-66.70380859375004],[48.637792968750006,-66.70097656249999],[48.75107421875,-66.71962890625007],[48.7824218750001,-66.73115234375001],[48.78554687499999,-66.76757812499997],[48.77470703125002,-66.77832031250003],[48.545996093750055,-66.78417968749997]]],[[[163.3019531250001,-66.82119140625005],[163.28359375,-66.88193359375],[163.23457031250004,-66.86796874999999],[163.16386718750002,-66.81914062499999],[163.08964843750002,-66.7005859375],[163.15615234375005,-66.68847656250003],[163.23789062500012,-66.70878906249999],[163.27109375000012,-66.76757812499997],[163.29912109375007,-66.79843750000003],[163.3019531250001,-66.82119140625005]]],[[[86.54179687500007,-66.76748046875005],[86.42666015625005,-66.79199218749997],[86.33701171875006,-66.78759765624997],[86.23222656250007,-66.73291015625001],[86.277734375,-66.69667968750001],[86.38330078125003,-66.6748046875],[86.52060546875012,-66.68691406250004],[86.55673828125005,-66.70576171874998],[86.65195312500012,-66.71816406250002],[86.54179687500007,-66.76748046875005]]],[[[-67.98847656249995,-67.4744140625],[-68.09252929687503,-67.53867187500003],[-68.17509765624996,-67.55820312500002],[-68.25039062499994,-67.53964843749998],[-68.32509765624997,-67.53242187500001],[-68.38129882812495,-67.55537109374997],[-68.43940429687498,-67.65625],[-68.50673828124994,-67.70712890624998],[-68.58041992187503,-67.73281250000007],[-68.62236328124996,-67.72255859375002],[-68.66406250000001,-67.72285156249998],[-68.73369140624999,-67.74570312500003],[-68.818310546875,-67.75341796875],[-68.90136718749997,-67.74423828124999],[-68.98232421875002,-67.67998046875005],[-69.09755859374997,-67.60273437500004],[-69.120361328125,-67.57792968750005],[-69.13803710937503,-67.51523437499998],[-69.132666015625,-67.45263671875],[-69.082421875,-67.403125],[-68.81992187499998,-67.23359374999997],[-68.73359374999997,-67.15722656250004],[-68.65634765624995,-67.07041015625003],[-68.574609375,-66.99257812499998],[-68.416845703125,-66.85332031250003],[-68.33593749999997,-66.80205078124999],[-67.937646484375,-66.65683593749998],[-67.83051757812493,-66.62431640625002],[-67.71113281249995,-66.63300781250001],[-67.68115234374997,-66.70898437500003],[-67.74082031249995,-66.74619140624998],[-67.932373046875,-66.84453125],[-67.96918945312495,-66.98212890624998],[-67.96840820312497,-67.03222656249997],[-67.94892578124998,-67.04482421875005],[-67.87607421874998,-67.06240234375],[-67.827783203125,-67.08193359374998],[-67.76118164062493,-67.12294921875],[-67.687841796875,-67.14736328125],[-67.84804687499997,-67.21914062500005],[-67.95634765624997,-67.25537109374997],[-68.03007812499999,-67.3],[-68.17514648437498,-67.34414062500002],[-68.23510742187503,-67.37197265625],[-68.14443359374994,-67.382421875],[-68.006982421875,-67.41796874999996],[-67.969482421875,-67.45029296874998],[-67.98847656249995,-67.4744140625]]],[[[85.328515625,-66.61191406249998],[85.2224609375,-66.64345703125],[85.13613281250005,-66.63710937500004],[85.07958984374997,-66.604296875],[85.06875,-66.58378906250002],[85.12109374999997,-66.51855468749996],[85.1647460937501,-66.52158203125003],[85.19394531250012,-66.55605468750005],[85.328515625,-66.61191406249998]]],[[[98.84609375,-66.46982421874998],[98.75175781250002,-66.48164062499998],[98.65507812500007,-66.45332031249998],[98.60517578125003,-66.39990234375003],[98.596484375,-66.38261718749997],[98.7486328125001,-66.36923828125],[98.94980468750005,-66.42050781249996],[98.84609375,-66.46982421874998]]],[[[162.61142578125012,-66.47734374999999],[162.55712890624997,-66.52509765625004],[162.51132812500006,-66.5201171875],[162.30273437500003,-66.39970703124997],[162.3262695312501,-66.3474609375],[162.29726562500005,-66.30371093749997],[162.30205078125005,-66.2646484375],[162.31054687500003,-66.25126953125005],[162.56328125000007,-66.43261718750003],[162.61142578125012,-66.47734374999999]]],[[[100.26474609375005,-66.21660156249999],[100.133203125,-66.22949218750003],[100.08203124999997,-66.202734375],[100.07626953125006,-66.18808593750003],[100.17441406250006,-66.13105468749997],[100.29052734375003,-66.11240234374999],[100.28154296875002,-66.17998046874999],[100.26474609375005,-66.21660156249999]]],[[[-66.5953125,-66.20068359375003],[-66.81865234374993,-66.31269531250003],[-66.85,-66.30546874999997],[-66.86752929687503,-66.29384765625001],[-66.86699218750002,-66.27480468750004],[-66.79150390625,-66.23359374999998],[-66.77900390624995,-66.11083984375003],[-66.63134765624997,-66.06679687500002],[-66.5751953125,-66.082421875],[-66.62285156250002,-66.13388671875],[-66.59262695312498,-66.17861328124998],[-66.5953125,-66.20068359375003]]],[[[96.61269531249998,-66.03583984375003],[96.72734375000006,-66.06083984375005],[96.93164062499997,-66.0583984375],[97.0055664062501,-66.09677734375],[97.01884765625007,-66.13945312499999],[97.015625,-66.16396484375002],[96.933984375,-66.20078124999996],[96.39453124999997,-66.225],[96.30703125,-66.18583984375003],[96.39882812500004,-66.08017578125],[96.49980468750002,-66.04589843750003],[96.61269531249998,-66.03583984375003]]],[[[92.60136718750007,-65.80830078125004],[92.47050781250007,-65.8216796875],[92.33300781250003,-65.80722656249999],[92.2627929687501,-65.76005859374997],[92.24814453125006,-65.73994140625004],[92.30146484375008,-65.70673828125004],[92.49638671875002,-65.70214843749999],[92.63378906250003,-65.73066406250003],[92.66455078124997,-65.76044921875005],[92.66962890625003,-65.77480468750005],[92.60136718750007,-65.80830078125004]]],[[[-65.84526367187496,-65.84248046874998],[-66.06391601562501,-65.88085937499997],[-66.17529296874997,-65.86650390624999],[-66.18144531249996,-65.82636718749998],[-66.15346679687497,-65.77373046875],[-66.04960937499993,-65.74472656250003],[-66.06694335937502,-65.66611328125002],[-65.99970703124998,-65.63281249999999],[-65.96831054687499,-65.57099609375001],[-65.83359374999998,-65.52724609375005],[-65.63691406249998,-65.54775390625007],[-65.66796875,-65.62617187500005],[-65.66967773437497,-65.6529296875],[-65.78374023437496,-65.67431640625],[-65.81386718749997,-65.68662109375002],[-65.84082031249994,-65.73847656250001],[-65.83574218749999,-65.81376953124999],[-65.84526367187496,-65.84248046874998]]],[[[100.98144531249997,-65.67753906250005],[100.546875,-65.70126953124998],[100.51230468750006,-65.67539062500003],[100.35058593749997,-65.67294921874999],[100.29257812500006,-65.65126953125002],[100.27031250000007,-65.60332031250002],[100.32412109375,-65.52070312499997],[100.409375,-65.465625],[100.5451171875001,-65.40898437500005],[100.60693359374997,-65.39638671875005],[100.88339843750006,-65.378125],[101.07871093750005,-65.40253906249995],[101.22060546875005,-65.47226562499995],[101.25898437500003,-65.52763671875005],[101.23837890625012,-65.56455078125002],[100.98144531249997,-65.67753906250005]]],[[[103.39726562500002,-65.44531249999997],[103.33720703125002,-65.4685546875],[103.17597656250004,-65.45468750000002],[103.13847656250006,-65.43505859375003],[103.1242187500001,-65.33837890625004],[103.11279296874997,-65.31201171875],[103.05439453125003,-65.28535156249998],[102.78876953125003,-65.23593750000003],[102.75957031250002,-65.16787109375002],[102.7960937500001,-65.13632812499999],[102.89287109375002,-65.12968749999999],[103.13681640625006,-65.190625],[103.19082031250005,-65.23710937500002],[103.18173828125006,-65.30771484375],[103.18613281250006,-65.33056640624994],[103.26103515625007,-65.37734375],[103.37890625000003,-65.42646484375004],[103.39726562500002,-65.44531249999997]]],[[[-63.31621093749996,-64.86113281249999],[-63.47441406249997,-64.90654296874997],[-63.558349609375,-64.90595703125005],[-63.45927734374996,-64.7962890625],[-63.366894531249976,-64.79208984375003],[-63.21938476562493,-64.72978515625005],[-63.177246093749964,-64.73876953125],[-63.25693359374995,-64.79082031250005],[-63.31621093749996,-64.86113281249999]]],[[[-57.24047851562503,-64.56679687500005],[-57.326269531250006,-64.57070312500005],[-57.433398437499996,-64.54023437499998],[-57.447900390624994,-64.4884765625],[-57.44589843749994,-64.45986328125002],[-57.365625,-64.43876953124999],[-57.31455078125,-64.43535156250002],[-57.022558593750034,-64.35234374999997],[-56.894726562499926,-64.33300781250003],[-56.95170898437499,-64.38173828125001],[-56.94526367187501,-64.42724609374996],[-56.99101562500002,-64.46796875],[-57.24047851562503,-64.56679687500005]]],[[[-63.18056640624993,-64.46953125000005],[-63.27695312499995,-64.57333984374998],[-63.130517578124966,-64.57236328125003],[-63.03208007812497,-64.53496093750005],[-62.92822265624997,-64.51933593749999],[-62.83652343750003,-64.571875],[-63.02558593749998,-64.6109375],[-63.202587890624976,-64.68027343749999],[-63.27543945312498,-64.7173828125],[-63.35488281250002,-64.73388671875],[-63.45781249999993,-64.72734374999999],[-63.558447265625006,-64.73417968750005],[-63.646875,-64.80302734375005],[-63.739501953124936,-64.83427734375002],[-63.76992187500002,-64.80839843749999],[-63.804394531249926,-64.79150390625],[-64.00708007812503,-64.76855468750003],[-64.09916992187496,-64.73271484375002],[-64.18374023437494,-64.7095703125],[-64.2720703125,-64.69755859375003],[-64.226220703125,-64.63535156249999],[-64.17109374999995,-64.58193359375002],[-63.867138671874926,-64.50976562499997],[-63.896923828124955,-64.48710937499999],[-63.916162109374966,-64.45722656250003],[-63.674414062500006,-64.42138671875],[-63.668310546875006,-64.38398437500003],[-63.68310546875,-64.34277343749997],[-63.605566406250034,-64.31416015625001],[-63.53417968749994,-64.27294921874996],[-63.485595703125,-64.260546875],[-63.333593750000034,-64.2662109375],[-63.22963867187499,-64.3236328125],[-63.27070312500001,-64.38066406249997],[-63.18056640624993,-64.46953125000005]]],[[[-62.32578124999998,-64.4244140625],[-62.395898437499966,-64.46464843750003],[-62.45517578124995,-64.47167968750004],[-62.50810546874999,-64.45410156250001],[-62.5796875,-64.5142578125],[-62.72700195312501,-64.49599609375002],[-62.78178710937495,-64.47900390625001],[-62.74682617187494,-64.47167968750004],[-62.720898437500004,-64.44453125000001],[-62.64301757812495,-64.39160156249997],[-62.504003906249956,-64.25341796874999],[-62.47973632812499,-64.21064453124998],[-62.59028320312495,-64.13964843749999],[-62.61074218749994,-64.11630859375003],[-62.585693359375,-64.0755859375],[-62.54497070312495,-64.04570312500002],[-62.451416015625,-64.01240234375],[-62.32875976562496,-64.01347656250005],[-62.26762695312493,-64.03994140625002],[-62.26875,-64.09003906250001],[-62.058496093749966,-64.13808593750002],[-62.09384765624998,-64.23457031250005],[-62.17426757812492,-64.29599609375003],[-62.18569335937493,-64.36884765625005],[-62.30371093749999,-64.40136718750001],[-62.32578124999998,-64.4244140625]]],[[[-61.95244140624993,-64.07714843749996],[-62.04389648437501,-64.08037109374999],[-62.020751953125,-64.02734375000001],[-61.93627929687503,-63.990234375000014],[-61.79824218749996,-63.966601562499996],[-61.886230468749936,-64.02695312500003],[-61.91113281249997,-64.05449218750005],[-61.95244140624993,-64.07714843749996]]],[[[-57.84599609375001,-64.05390625000001],[-57.808544921874926,-64.06757812500003],[-57.77368164062503,-64.06152343749996],[-57.74116210937498,-64.04785156250003],[-57.71005859375003,-64.01513671875003],[-57.592919921874966,-63.96708984375],[-57.479736328125,-63.96162109375004],[-57.51708984374997,-64.01064453125],[-57.24946289062498,-64.09707031250001],[-57.272802734375034,-64.16621093749998],[-57.22226562499995,-64.22138671875004],[-57.32763671875003,-64.23779296875],[-57.413964843750016,-64.29589843750003],[-57.338378906249964,-64.31826171875005],[-57.294677734374964,-64.36699218750002],[-57.387890624999955,-64.37890624999997],[-57.580761718749976,-64.35039062500002],[-57.68320312499998,-64.35722656249999],[-57.670751953125006,-64.3109375],[-57.703320312499976,-64.29326171875002],[-57.822851562500006,-64.30205078125003],[-57.871484374999966,-64.40097656250003],[-57.90976562499994,-64.41005859375001],[-57.95224609374997,-64.39404296875003],[-57.92070312499996,-64.33125],[-57.97109375000002,-64.32041015625003],[-58.021582031250006,-64.32158203125002],[-58.16948242187501,-64.3685546875],[-58.21406249999995,-64.36972656249996],[-58.304443359374964,-64.31455078125],[-58.019970703124926,-64.24199218750005],[-58.13769531250002,-64.20615234375003],[-58.16220703124995,-64.16074218750002],[-58.14707031249998,-64.09736328124998],[-58.25043945312498,-64.10683593750005],[-58.35200195312498,-64.13066406250002],[-58.39760742187494,-64.13476562499997],[-58.43808593750003,-64.11347656249998],[-58.42495117187502,-64.0677734375],[-58.34189453124997,-63.99433593750005],[-58.27480468749996,-63.91621093750003],[-58.145654296874966,-63.87763671874999],[-58.07036132812499,-63.84746093750006],[-57.97070312500002,-63.834667968750026],[-57.925683593749994,-63.80605468750005],[-57.83134765624997,-63.80380859375005],[-57.779492187499955,-63.86826171875003],[-57.78066406249993,-63.906835937499984],[-57.82695312499996,-63.94921875],[-57.84599609375001,-64.05390625000001]]],[[[-57.374169921874994,-63.807226562500034],[-57.36020507812497,-63.82480468749997],[-57.160839843749955,-63.81572265624998],[-57.10400390625003,-63.84121093750003],[-57.21801757812497,-63.875585937500006],[-57.24775390624998,-63.86835937500005],[-57.34375,-63.878515624999984],[-57.61635742187493,-63.853613281249984],[-57.683251953124994,-63.81269531249998],[-57.43935546874994,-63.79140625],[-57.374169921874994,-63.807226562500034]]],[[[-60.653125,-63.86660156250005],[-60.77768554687498,-63.9021484375],[-60.85244140625002,-63.89101562500005],[-60.97216796875,-63.849023437500016],[-60.81005859375,-63.83662109374998],[-60.796679687499925,-63.716699218750065],[-60.71484374999997,-63.668847656249994],[-60.56235351562497,-63.6958984375],[-60.65590820312494,-63.75898437499997],[-60.688867187499994,-63.807910156249996],[-60.65498046874992,-63.850097656249964],[-60.653125,-63.86660156250005]]],[[[-55.87255859374997,-63.535644531250036],[-55.95673828124998,-63.57998046875001],[-56.178369140624994,-63.51328125],[-56.235205078125034,-63.46884765625002],[-56.20986328125002,-63.436914062499994],[-55.85791015625,-63.407324218750006],[-55.76181640624998,-63.4220703125],[-55.71918945312498,-63.49208984374996],[-55.87255859374997,-63.535644531250036]]],[[[-57.020654296874994,-63.3728515625],[-56.92734375,-63.50556640625004],[-56.781835937500034,-63.57167968750001],[-56.83476562499996,-63.63125],[-56.97368164062493,-63.62460937500005],[-57.11918945312501,-63.63779296874998],[-57.152246093749994,-63.57167968750001],[-57.09770507812499,-63.52353515624996],[-57.152246093749994,-63.47910156249998],[-57.283886718749976,-63.490625],[-57.46064453124992,-63.51357421874998],[-57.581494140624955,-63.54658203125004],[-57.736914062500006,-63.6166015625],[-57.85673828124999,-63.65683593750003],[-58.26298828124996,-63.76337890624998],[-58.53188476562493,-63.915429687500044],[-58.72285156249995,-64.07744140625002],[-58.83896484374998,-64.18681640625],[-59.00532226562496,-64.19492187499998],[-59.047314453124976,-64.23447265625003],[-58.97724609375001,-64.26591796875005],[-58.92299804687496,-64.27929687500001],[-58.79931640624999,-64.29267578124998],[-58.81914062499994,-64.33896484375],[-58.90512695312495,-64.35214843750003],[-58.89545898437495,-64.38886718750003],[-58.805908203125,-64.44482421874999],[-58.786083984374955,-64.52421874999999],[-58.89189453125002,-64.53740234375002],[-59.05068359374994,-64.45136718749998],[-59.22939453124993,-64.4435546875],[-59.36967773437502,-64.403515625],[-59.460742187499996,-64.34560546875002],[-59.54677734374994,-64.35878906250005],[-59.612158203125034,-64.44013671875],[-59.57319335937498,-64.53076171875],[-59.64599609375,-64.58369140625004],[-59.734375,-64.55888671875005],[-59.765039062499994,-64.45136718749998],[-59.85019531250003,-64.43359375],[-59.96308593749992,-64.43134765625],[-60.24248046875001,-64.546875],[-60.340527343750004,-64.55058593750005],[-60.393652343749984,-64.609375],[-60.555957031250024,-64.67656250000005],[-60.65996093749999,-64.72919921875001],[-60.91538085937497,-64.90683593749996],[-61.05986328124998,-64.98125],[-61.33183593749998,-65.023828125],[-61.439453124999964,-65.01767578124998],[-61.50302734374995,-64.99970703124997],[-61.603222656249955,-64.98779296875001],[-61.703125,-64.98720703125],[-61.736181640625034,-65.03349609375002],[-61.57744140625002,-65.18564453125],[-61.66342773437494,-65.23857421875005],[-61.855615234375016,-65.23535156250001],[-61.94785156249998,-65.19228515625002],[-62.02451171874997,-65.23251953124998],[-62.08466796874998,-65.2732421875],[-62.14531249999999,-65.33173828125001],[-62.053662109374955,-65.45683593750002],[-61.90336914062498,-65.51347656250002],[-61.79570312499999,-65.52294921874999],[-61.75600585937499,-65.56923828125],[-61.991406249999976,-65.58916015624997],[-62.150585937499976,-65.69882812500002],[-62.222412109374964,-65.775],[-62.305029296875,-65.8404296875],[-62.29326171875001,-65.91640625000002],[-62.169140624999955,-66.03134765625],[-62.005029296874994,-66.112890625],[-61.839062499999926,-66.11953125000002],[-61.624804687499996,-66.09472656250003],[-61.57470703125,-66.071484375],[-61.359130859374936,-66.05878906249998],[-61.26611328125,-65.97998046875001],[-61.198144531250016,-65.97451171875004],[-61.137597656249945,-65.988671875],[-61.039257812499976,-65.99199218749997],[-60.98813476562495,-65.94023437499999],[-60.91279296874998,-65.92089843749997],[-60.812988281249964,-65.93408203124999],[-60.61831054687502,-65.93310546874997],[-60.56538085937498,-65.97939453124998],[-60.62490234374994,-66.03232421875002],[-60.74399414062494,-66.105078125],[-60.85644531249995,-66.06533203125],[-60.9556640625,-66.07197265625001],[-61.00927734375,-66.11054687499997],[-60.902734374999966,-66.19101562500002],[-60.94243164062496,-66.26376953125],[-61.02841796874998,-66.3365234375],[-61.134277343749964,-66.29023437499998],[-61.149755859375006,-66.21171874999997],[-61.292968749999964,-66.16455078124996],[-61.43193359374996,-66.14472656250001],[-61.526123046874936,-66.22568359374998],[-61.67563476562495,-66.24951171875003],[-61.69648437499992,-66.34316406250002],[-61.75600585937499,-66.42919921874996],[-61.84199218750002,-66.402734375],[-61.87543945312498,-66.29609375000001],[-62.11650390624997,-66.20898437500001],[-62.24125976562499,-66.19707031250002],[-62.494140625,-66.2193359375],[-62.58281249999994,-66.21748046874998],[-62.68203124999999,-66.23730468750003],[-62.75483398437498,-66.31015625000003],[-62.65029296874999,-66.36367187500002],[-62.615380859374994,-66.43574218750004],[-62.61791992187497,-66.48964843750002],[-62.63754882812497,-66.51113281250005],[-62.65507812500002,-66.55605468750005],[-62.543164062499955,-66.62099609375005],[-62.53652343750002,-66.70703124999999],[-62.62890625,-66.70615234374998],[-62.704785156250004,-66.680078125],[-62.99672851562496,-66.45283203124998],[-63.179541015625,-66.35253906249997],[-63.25751953124999,-66.26376953125],[-63.44853515625002,-66.24375],[-63.586621093749976,-66.24169921875004],[-63.75253906250003,-66.277734375],[-63.68754882812493,-66.31982421874997],[-63.654394531250034,-66.38291015625003],[-63.75566406249995,-66.40898437500002],[-63.88041992187495,-66.50595703124996],[-63.96435546875003,-66.58876953125005],[-64.01503906249997,-66.60664062500004],[-64.07773437500003,-66.65410156250005],[-63.808789062499955,-66.76093750000004],[-63.76904296875003,-66.80322265625004],[-63.75473632812503,-66.87294921875004],[-63.839599609375,-66.91201171875],[-64.04257812499998,-66.92724609375],[-64.40097656249998,-66.85332031250003],[-64.55400390624999,-66.85175781249998],[-64.60693359375,-66.79960937500002],[-64.686279296875,-66.80625],[-64.73544921875,-66.894140625],[-64.79335937499997,-66.97197265625005],[-64.878125,-67.02451171875],[-64.8541015625,-67.10478515625002],[-64.78549804687498,-67.12373046874997],[-64.83872070312498,-67.15605468749999],[-64.95087890625001,-67.183203125],[-65.02690429687495,-67.21406249999998],[-64.85825195312498,-67.24277343749998],[-64.82646484374996,-67.269140625],[-64.81928710937493,-67.30732421874997],[-65.07958984375003,-67.3353515625],[-65.24853515624997,-67.34199218750003],[-65.35009765624997,-67.3109375],[-65.443115234375,-67.326171875],[-65.503125,-67.37724609375002],[-65.52343749999994,-67.44462890624997],[-65.50390624999997,-67.52822265625002],[-65.47080078124998,-67.58789062500003],[-65.44677734374997,-67.61015625000003],[-65.41806640624996,-67.65957031250007],[-65.57402343749996,-67.78837890625002],[-65.58925781249994,-67.81630859375001],[-65.600048828125,-67.87568359375004],[-65.52783203124994,-67.92998046874999],[-65.46943359374995,-68.00947265625001],[-65.551171875,-68.04833984375004],[-65.63950195312498,-68.13056640625],[-65.54624023437498,-68.14667968750001],[-65.3875,-68.15039062499996],[-65.21801757812497,-68.14003906249998],[-64.95883789062503,-68.06757812500005],[-64.88471679687493,-68.05634765624998],[-64.85346679687494,-68.08310546875002],[-64.82949218749997,-68.12744140625],[-64.89594726562501,-68.16835937499998],[-65.36518554687495,-68.2875],[-65.45200195312495,-68.33671874999999],[-65.33139648437496,-68.36416015625],[-65.08974609374997,-68.37021484374998],[-64.99648437499997,-68.4078125],[-65.05454101562498,-68.44931640625002],[-65.14008789062501,-68.48925781249999],[-65.2416015625,-68.58320312500003],[-65.158349609375,-68.61796875],[-64.89829101562495,-68.67333984375],[-64.42890624999998,-68.74609375],[-64.078466796875,-68.77119140625004],[-64.15683593749998,-68.68691406250002],[-64.16923828125002,-68.58251953124997],[-63.924462890624966,-68.49765625],[-63.796484375,-68.4697265625],[-63.21660156250002,-68.41884765625001],[-63.056542968749994,-68.42070312500005],[-62.93330078124992,-68.44257812499997],[-62.97968749999996,-68.48632812499999],[-63.11474609374994,-68.47060546875],[-63.34750976562503,-68.49941406250001],[-63.70732421874996,-68.5921875],[-63.77343750000003,-68.63183593749999],[-63.74702148437498,-68.70458984374997],[-63.44272460937498,-68.76416015625001],[-63.343505859375,-68.81044921875005],[-63.47822265625002,-68.95117187500003],[-63.455957031249994,-69.04189453125004],[-63.301464843749976,-69.14101562499998],[-63.094384765624966,-69.25302734374998],[-62.994091796874976,-69.32890624999999],[-62.83974609374996,-69.371875],[-62.58681640624996,-69.47724609375001],[-62.45053710937498,-69.584375],[-62.40712890624994,-69.82724609374996],[-62.20244140624999,-70.0279296875],[-61.96108398437502,-70.12011718749997],[-61.93461914062496,-70.19951171874997],[-62.01396484374996,-70.27890624999996],[-62.217871093750006,-70.233203125],[-62.33149414062498,-70.27890624999996],[-62.377783203125006,-70.36484375],[-62.232275390625034,-70.42441406249996],[-62.00078124999994,-70.49716796875003],[-61.50468749999994,-70.49052734375],[-61.49140624999998,-70.56992187500003],[-61.605322265625,-70.61669921874997],[-61.69648437499992,-70.67578125000001],[-61.808935546875,-70.70878906249999],[-61.994140625,-70.72861328125003],[-62.04042968750002,-70.8013671875],[-61.96108398437502,-70.90058593749998],[-61.70214843750003,-70.85673828125002],[-61.51337890624992,-70.85117187500003],[-61.312841796875034,-70.867578125],[-61.25166015624998,-71.00224609375],[-61.01723632812502,-71.16689453125005],[-60.962255859375006,-71.24462890625],[-61.003076171874966,-71.31933593750001],[-61.14843750000003,-71.34189453125],[-61.23730468750001,-71.40058593749998],[-61.369287109374966,-71.45234375000004],[-61.51591796875001,-71.47910156249998],[-61.78955078124997,-71.61601562499999],[-61.90957031249999,-71.630859375],[-61.95878906249999,-71.65781249999998],[-61.72543945312498,-71.67255859375004],[-61.56279296874995,-71.67529296874999],[-61.213574218749955,-71.56406249999998],[-61.081347656249925,-71.58857421874998],[-60.99531249999998,-71.66132812499998],[-60.949023437499996,-71.74726562499998],[-61.03505859375002,-71.82001953124998],[-61.64453125,-71.862890625],[-61.93891601562495,-71.90361328125003],[-62.25664062500001,-72.017578125],[-61.89404296874994,-72.07099609375004],[-61.62802734375003,-72.05273437499997],[-61.49267578124997,-72.07265625000002],[-61.310253906249955,-72.1126953125],[-61.10747070312502,-72.09150390625004],[-60.951757812500006,-72.05019531249998],[-60.83320312500001,-72.05156249999999],[-60.71943359375002,-72.07265625000002],[-60.70429687499996,-72.14414062500002],[-60.691064453124994,-72.26982421875005],[-60.66459960937493,-72.3625],[-60.730322265625006,-72.42597656249998],[-61.047509765624966,-72.47050781249997],[-61.27978515624994,-72.46826171874997],[-61.28613281249999,-72.60078124999995],[-60.93916015625001,-72.69970703124997],[-60.72412109375,-72.646875],[-60.532324218750006,-72.67333984375],[-60.532324218750006,-72.83212890625003],[-60.38466796875002,-73.00732421875001],[-60.25449218749998,-73.01728515625001],[-60.14868164062499,-72.937890625],[-60.00976562500003,-72.937890625],[-59.956835937499996,-73.03056640625005],[-60.01640625,-73.18925781250005],[-60.12221679687502,-73.27529296874998],[-60.403759765625004,-73.24023437500001],[-60.560693359374994,-73.21142578125003],[-60.68662109374998,-73.27099609375],[-60.89584960937498,-73.32041015625003],[-61.081347656249925,-73.32822265625002],[-61.242089843749994,-73.25029296875005],[-61.428417968749955,-73.19140625000003],[-61.726416015625,-73.1607421875],[-62.00830078124994,-73.14765625000001],[-61.91474609374998,-73.21572265625002],[-61.78759765625003,-73.25488281249999],[-61.73769531249999,-73.37548828124997],[-61.636962890624964,-73.50019531249998],[-61.40546874999998,-73.46708984374999],[-61.07978515624998,-73.538671875],[-60.87885742187498,-73.61201171875001],[-60.79028320312497,-73.71181640625001],[-60.902734374999966,-73.87060546875003],[-61.088281250000016,-73.92949218750003],[-61.20341796874993,-73.95664062499996],[-61.404052734374936,-73.89599609374996],[-61.54541015624997,-73.89599609374996],[-61.691699218749925,-73.92382812500001],[-61.741601562499966,-73.99619140625003],[-61.838232421875034,-74.03203125000005],[-61.31943359375003,-74.03593750000003],[-61.16069335937493,-74.05576171875],[-61.041650390625016,-74.12197265625],[-61.22685546875001,-74.20791015625],[-61.57080078124999,-74.19472656249998],[-61.71826171875002,-74.228125],[-61.84277343749997,-74.28964843750003],[-61.331787109374964,-74.32861328125],[-61.12060546875002,-74.30693359375002],[-60.78369140624997,-74.24101562499999],[-60.70429687499996,-74.30712890624997],[-60.83847656250001,-74.37294921875005],[-61.01079101562496,-74.4783203125],[-61.37016601562499,-74.51181640625],[-61.63999023437498,-74.51357421875001],[-61.99453125,-74.47578125000004],[-62.08886718750002,-74.45283203124998],[-62.235302734374926,-74.44130859375004],[-62.225683593750006,-74.50556640624997],[-62.132714843749994,-74.55],[-61.89443359374993,-74.71308593749998],[-61.855224609374936,-74.7767578125],[-61.92802734374993,-74.86279296875001],[-62.13779296874994,-74.9263671875],[-62.372460937499994,-74.95214843750001],[-62.566796874999966,-74.89580078124999],[-62.70849609374998,-74.73710937499999],[-62.887109375000016,-74.69082031250007],[-63.07231445312502,-74.67753906250002],[-63.178125,-74.68417968750002],[-63.16791992187495,-74.76455078125],[-63.12524414062494,-74.84951171875007],[-63.19799804687494,-74.90908203125002],[-63.35703125,-74.87832031249997],[-63.55878906249998,-74.90566406250005],[-63.75087890624996,-74.95234375000005],[-63.92470703125002,-75.00449218750002],[-63.57099609374998,-75.03027343750003],[-63.3369140625,-75.03476562499996],[-63.17319335937495,-75.11474609375],[-63.2310546875,-75.15380859374996],[-63.551416015625,-75.17148437500002],[-63.85751953125,-75.20615234374998],[-64.27954101562503,-75.29287109375005],[-63.97246093749999,-75.32939453125005],[-63.678417968749955,-75.32792968750002],[-63.47485351562494,-75.33632812500002],[-63.303808593750006,-75.35224609374998],[-63.25751953124999,-75.39853515624999],[-63.36337890624997,-75.45146484375005],[-64.05263671874997,-75.57958984375003],[-64.77827148437501,-75.73818359375],[-65.04438476562495,-75.7875],[-65.32172851562498,-75.81513671874997],[-65.96567382812498,-75.95166015624997],[-66.37041015625002,-76.01337890625004],[-67.518212890625,-76.10976562500002],[-69.30439453125001,-76.35078125000003],[-69.91528320312503,-76.52197265625],[-70.09550781249996,-76.65449218749998],[-70.21015624999995,-76.67412109374999],[-70.55078125,-76.71806640624997],[-70.89501953124994,-76.73935546874996],[-71.79868164062503,-76.75273437500002],[-72.722314453125,-76.68906250000002],[-73.47177734375,-76.67548828125],[-73.87978515625,-76.69677734375],[-75.26835937499999,-76.58144531250002],[-75.44350585937497,-76.58671875000005],[-75.65927734374995,-76.60820312499997],[-75.83134765624993,-76.60820312499997],[-75.96284179687497,-76.59208984374999],[-76.244189453125,-76.58535156250001],[-77.19003906249998,-76.62978515625002],[-77.28706054687493,-76.70166015625],[-77.16796874999999,-76.83388671875004],[-76.823583984375,-76.99345703125003],[-76.24858398437493,-77.27490234375],[-75.93725585937503,-77.33447265624997],[-75.74814453125003,-77.39843750000003],[-75.38691406249998,-77.47421875],[-74.58061523437493,-77.47802734374999],[-73.47822265624998,-77.535546875],[-72.851953125,-77.590234375],[-72.87514648437494,-77.69384765625],[-73.25156249999998,-77.89423828125005],[-73.48500976562494,-77.97080078125002],[-74.04213867187501,-78.109375],[-74.81206054687493,-78.17783203124999],[-75.39843750000003,-78.1578125],[-76.43784179687503,-78.04414062500003],[-77.74213867187501,-77.94033203125002],[-79.67900390624999,-77.84257812500002],[-80.1041015625,-77.79658203125005],[-80.6015625,-77.75195312500003],[-80.888525390625,-77.79765625],[-81.103125,-77.84179687500001],[-81.58095703124997,-77.84609375000002],[-81.44101562499995,-77.88564453125],[-79.50966796874994,-78.154296875],[-77.85810546875001,-78.35097656250002],[-77.66479492187497,-78.40146484375],[-77.43256835937501,-78.43466796875002],[-77.45244140624995,-78.56035156250005],[-77.54501953124999,-78.65957031250001],[-77.86914062499994,-78.74550781250002],[-78.71162109374998,-78.75205078125002],[-79.76655273437498,-78.82070312500004],[-80.29228515624995,-78.82275390625003],[-80.81630859374997,-78.754296875],[-81.92929687499995,-78.55908203124997],[-82.60844726562493,-78.41240234375002],[-83.08251953124997,-78.2466796875],[-83.41206054687495,-78.11464843750002],[-83.77900390624993,-77.98359375000004],[-83.75209960937497,-78.06630859375002],[-83.687744140625,-78.14804687499996],[-83.50825195312491,-78.24804687500001],[-83.24589843749996,-78.35703125],[-83.226953125,-78.40156250000003],[-83.35498046874997,-78.40761718750001],[-83.54443359375003,-78.35527343750002],[-83.70590820312498,-78.4041015625],[-83.76274414062499,-78.46113281249998],[-83.69663085937503,-78.53730468749997],[-83.59516601562495,-78.61103515624997],[-83.26000976562497,-78.77421875],[-82.97075195312493,-78.81669921875005],[-82.589208984375,-78.91630859374999],[-81.66088867187497,-79.09980468749998],[-81.50292968749994,-79.16289062500005],[-81.22216796874994,-79.29785156250001],[-81.16318359375,-79.40039062500003],[-80.89199218750002,-79.50185546875],[-80.70478515624998,-79.51718750000002],[-80.534814453125,-79.51279296875],[-80.47875976562503,-79.42617187500005],[-80.48852539062497,-79.32099609375001],[-80.41577148437497,-79.29453125000005],[-80.15117187499999,-79.26806640624999],[-79.45566406249995,-79.30439453125001],[-76.49912109375,-79.32568359374999],[-76.21767578124992,-79.38720703125],[-76.10512695312502,-79.46513671874997],[-76.03159179687495,-79.62705078125002],[-76.34394531250001,-79.82089843749999],[-76.55786132812497,-79.90351562500004],[-76.90400390624998,-79.95527343750001],[-77.22226562499998,-79.99414062500003],[-77.70185546874998,-80.00957031250005],[-78.69223632812495,-79.99541015625002],[-79.66040039062503,-79.996875],[-78.90712890624994,-80.08964843750003],[-78.17607421874995,-80.16679687500002],[-77.16044921874999,-80.15292968750003],[-76.75712890624999,-80.13125],[-76.40732421875003,-80.09492187500004],[-76.25961914062498,-80.16005859375],[-75.98564453125,-80.29501953125003],[-75.82241210937497,-80.33818359375005],[-75.70903320312495,-80.38271484375005],[-75.55502929687495,-80.53085937500002],[-75.49453124999997,-80.61748046875],[-75.34458007812498,-80.71894531249998],[-75.23652343749998,-80.80263671874998],[-75.07558593749995,-80.86005859375004],[-74.80659179687498,-80.88652343750002],[-74.5111328125,-80.83798828124998],[-73.937841796875,-80.81591796875001],[-73.38334960937502,-80.89365234375005],[-73.02949218749995,-80.91728515624997],[-72.55322265625,-80.853125],[-72.17358398437503,-80.76386718749997],[-71.380029296875,-80.68222656249996],[-71.23066406249995,-80.64677734375002],[-71.01767578124998,-80.61904296875004],[-70.68789062499994,-80.62626953125002],[-70.56005859375003,-80.64658203124998],[-70.39243164062498,-80.73544921874996],[-70.239111328125,-80.85664062499997],[-70.012451171875,-80.91777343749999],[-69.77226562500002,-80.96152343750002],[-69.63398437500001,-80.9658203125],[-69.18159179687493,-81.00488281249997],[-68.58984375,-80.96796875],[-68.3265625,-81.00410156249997],[-68.28461914062498,-81.07382812499996],[-68.14375,-81.13037109374996],[-67.96542968749996,-81.14824218750003],[-65.57368164062494,-81.46054687499998],[-64.75014648437497,-81.52167968750001],[-63.477734375,-81.55322265625003],[-62.49023437499999,-81.55673828125003],[-62.35371093749998,-81.57666015625001],[-62.16538085937497,-81.63613281250005],[-62.54184570312504,-81.67832031250003],[-62.945898437500006,-81.68398437500002],[-63.553955078125,-81.66718749999997],[-63.768652343750034,-81.67607421875002],[-64.23266601562497,-81.65976562499998],[-64.47568359375,-81.6716796875],[-64.69609375,-81.65234374999996],[-65.02158203125003,-81.696484375],[-65.61972656250003,-81.72929687500002],[-65.48662109374999,-81.775],[-65.26376953124996,-81.78564453124996],[-64.81054687500003,-81.80273437499997],[-64.19018554687503,-81.79482421875005],[-64.13710937499997,-81.86933593750004],[-64.70615234374998,-81.8875],[-65.91621093749993,-81.90224609375],[-66.04228515624995,-81.91386718750006],[-66.13383789062496,-81.95341796875003],[-65.95302734374997,-81.97099609374997],[-65.84384765625003,-81.99326171874998],[-65.78662109375,-82.04550781249995],[-65.91318359375003,-82.18320312500003],[-65.71396484375003,-82.27919921875005],[-65.57192382812497,-82.29433593750002],[-65.42441406250003,-82.28037109375003],[-65.17011718749998,-82.31826171875002],[-64.91958007812502,-82.37050781250001],[-64.39658203124998,-82.3744140625],[-63.77285156249999,-82.30429687500002],[-63.466308593749964,-82.3068359375],[-62.6453125,-82.26308593750004],[-61.90166015624999,-82.27109375],[-60.859082031249955,-82.18671875000004],[-60.687109375,-82.18857421874998],[-60.52773437499994,-82.19990234374997],[-60.817187499999925,-82.27578125],[-62.094531249999925,-82.46660156250005],[-62.55302734374998,-82.50332031250007],[-62.73564453124998,-82.52734374999999],[-62.63090820312497,-82.62070312499998],[-62.46557617187494,-82.71816406250005],[-62.12861328124995,-82.82236328125005],[-61.9169921875,-82.97666015625003],[-61.70893554687498,-83.00996093749998],[-61.312841796875034,-82.93916015625004],[-61.218408203124966,-82.991796875],[-61.20039062499996,-83.09794921875006],[-61.30322265625002,-83.18417968750003],[-61.43632812499996,-83.23242187499999],[-61.53056640624996,-83.27939453124998],[-61.58984374999997,-83.34121093750004],[-61.42529296875003,-83.39560546875003],[-60.98320312500001,-83.42753906250006],[-60.39702148437496,-83.44072265624999],[-59.85380859374997,-83.44238281249997],[-59.51601562499999,-83.45839843750004],[-58.289941406249966,-83.12070312499998],[-57.79775390624996,-82.95859375],[-57.55712890624997,-82.89023437500002],[-57.35361328124998,-82.84023437500004],[-56.31787109374999,-82.6333984375],[-56.075048828125006,-82.57021484375001],[-55.800683593749966,-82.47841796875005],[-55.29467773437499,-82.46484375000004],[-54.60112304687502,-82.31621093750005],[-53.986083984374936,-82.20058593750002],[-53.739599609375006,-82.17841796875003],[-53.557568359374955,-82.16943359374999],[-53.339062499999955,-82.14453124999997],[-52.79887695312493,-82.15361328125005],[-52.414941406249966,-82.13486328124996],[-51.73066406250001,-82.06152343750003],[-51.20966796875001,-82.015234375],[-50.653027343749926,-81.97548828125],[-50.029248046874955,-81.96767578125001],[-48.360791015624955,-81.89228515625001],[-47.886816406250034,-81.92519531250005],[-47.36025390624994,-82.00400390625003],[-47.01987304687497,-82.00322265625005],[-46.56669921875002,-81.97919921875004],[-46.25805664062502,-81.94697265625005],[-46.11914062499997,-82.03955078125],[-46.04638671874997,-82.15869140625001],[-46.19853515624999,-82.27109375],[-46.44833984374998,-82.33984374999997],[-46.516748046874966,-82.45458984375],[-46.17529296874994,-82.51162109374998],[-45.78857421875003,-82.49492187500005],[-45.04375,-82.43798828124999],[-44.45488281250002,-82.36591796875003],[-44.29179687500002,-82.3177734375],[-44.064208984375,-82.33144531250004],[-43.66933593749994,-82.27011718749998],[-43.18037109374998,-82.01718749999996],[-42.56455078125003,-81.76162109375004],[-42.046289062499966,-81.59785156249998],[-41.711572265624966,-81.40771484374997],[-41.43383789062497,-81.29775390625004],[-41.125878906250016,-81.21484375000003],[-40.914550781249964,-81.17236328124999],[-40.440820312499994,-81.16513671875002],[-39.76230468749995,-81.03203124999999],[-38.77172851562494,-80.88232421874996],[-38.010937499999955,-80.95429687499997],[-37.20927734374995,-81.0638671875],[-36.81240234375002,-80.97470703125003],[-36.49951171874994,-80.95957031249998],[-36.233984375000034,-80.9205078125],[-35.965771484374926,-80.89091796875002],[-35.77587890624997,-80.81269531249998],[-35.52055664062499,-80.745703125],[-35.327001953125,-80.65068359375002],[-34.349951171875,-80.60341796874998],[-33.32871093750003,-80.54042968750002],[-33.19130859375002,-80.51865234375003],[-33.05722656249998,-80.53164062500002],[-32.706201171874966,-80.51386718750004],[-32.255712890625034,-80.46074218750005],[-31.634228515624983,-80.44462890625005],[-31.312109374999977,-80.45009765625001],[-31.01542968749993,-80.30810546875003],[-30.42529296874997,-80.27968750000002],[-29.79736328125003,-80.22333984375],[-29.53149414062497,-80.18183593749998],[-29.32910156250003,-80.17207031250004],[-24.24028320312499,-80.06191406250007],[-24.019824218750017,-80.00898437500003],[-23.57446289062497,-79.96484374999999],[-23.406835937499917,-79.85898437500002],[-24.088281250000023,-79.81484375],[-24.29985351562496,-79.77080078124999],[-24.533886718749926,-79.75791015625003],[-24.670410156249943,-79.77460937499998],[-25.258642578124977,-79.7625],[-29.949316406250002,-79.59902343749998],[-30.04907226562497,-79.58535156250005],[-30.211230468749957,-79.48525390625],[-30.177929687499923,-79.30429687499999],[-30.315917968749968,-79.1630859375],[-30.645263671875025,-79.12412109374998],[-30.985156249999985,-79.12792968750003],[-31.41279296874998,-79.14521484375001],[-32.54184570312495,-79.22216796874996],[-32.994238281250034,-79.22880859374999],[-34.197363281250006,-79.11025390625],[-34.99492187499993,-78.97753906250003],[-35.51596679687495,-78.93300781250002],[-35.89008789062495,-78.84355468750002],[-36.23916015625002,-78.77421875],[-36.265625,-78.61552734375],[-36.180859374999955,-78.46835937500003],[-35.50927734375,-78.04121093749998],[-35.08759765624998,-77.83710937500004],[-34.80834960937503,-77.82060546874997],[-34.55146484375001,-77.72851562500004],[-34.290185546874994,-77.521875],[-34.07578125,-77.425390625],[-33.591162109375034,-77.31123046875003],[-33.37675781249996,-77.28164062500002],[-32.61406250000001,-77.14082031250004],[-32.40527343750003,-77.13623046874999],[-32.063378906249994,-77.15986328125001],[-31.67578125,-77.03310546875002],[-30.489208984374926,-76.76230468750002],[-30.22197265624993,-76.66035156250004],[-29.89155273437495,-76.59794921875],[-28.933642578125014,-76.3703125],[-28.079394531249985,-76.2578125],[-27.653076171875,-76.22636718749999],[-27.13452148437494,-76.15732421875005],[-26.56005859374997,-76.0546875],[-26.059326171875025,-75.95722656250004],[-24.269580078124985,-75.76699218750002],[-23.197265624999943,-75.71767578125001],[-22.465478515624994,-75.66103515625002],[-21.94809570312492,-75.69414062500002],[-21.433789062499955,-75.68310546874997],[-20.989013671874996,-75.634375],[-20.78330078124995,-75.59394531250003],[-20.4875,-75.49199218750005],[-19.493017578124977,-75.53994140625004],[-18.850927734374977,-75.47021484375004],[-18.585156249999926,-75.46259765624998],[-18.304589843749966,-75.43134765625003],[-18.41513671874995,-75.39648437500003],[-18.516943359374977,-75.38994140625003],[-18.617285156250002,-75.34238281250002],[-18.749218749999955,-75.24208984375002],[-18.617285156250002,-75.11533203125003],[-18.516943359374977,-75.05195312500001],[-18.221191406249943,-74.97451171875002],[-18.068261718749966,-74.86298828124997],[-17.922753906249994,-74.69921875],[-17.43583984374999,-74.37910156249998],[-17.299023437499926,-74.33388671875],[-16.98925781249997,-74.31982421874997],[-16.72709960937493,-74.32763671874997],[-16.429541015624977,-74.32392578125],[-15.672509765624937,-74.40732421875003],[-15.53125,-74.37558593749998],[-15.289746093749953,-74.28085937500003],[-15.089160156249932,-74.16328124999997],[-14.658935546874945,-73.98886718749996],[-14.57382812499992,-73.9375],[-14.611425781249947,-73.85175781250001],[-15.259619140624949,-73.88886718750001],[-15.748828124999958,-73.94560546875003],[-16.220117187499934,-73.91572265624998],[-16.281884765625023,-73.8669921875],[-16.180859374999955,-73.83027343749998],[-16.003125,-73.81591796875],[-15.935644531250004,-73.75761718750002],[-16.097460937500017,-73.70908203124998],[-16.38774414062499,-73.68134765625001],[-16.51884765624996,-73.64404296874997],[-16.50703124999995,-73.55595703125005],[-16.43520507812499,-73.42568359374998],[-16.27910156249999,-73.38847656250005],[-16.149023437499945,-73.33447265624997],[-15.80283203124995,-73.15214843750003],[-15.595996093749989,-73.09677734375003],[-15.007031249999983,-73.04746093750002],[-14.320996093749924,-73.12304687499997],[-14.164697265624993,-73.10244140625002],[-14.00009765624992,-73.00058593749998],[-14.168310546874919,-72.84326171874997],[-14.298242187500023,-72.78457031250002],[-14.297753906249994,-72.7330078125],[-13.938964843749998,-72.75625],[-13.602832031249989,-72.79208984375002],[-13.208593749999977,-72.78505859375002],[-12.746923828124977,-72.62890625000001],[-12.094726562499972,-72.49814453125002],[-11.777343749999972,-72.44404296875001],[-11.496972656249964,-72.41289062499997],[-11.34648437499996,-72.28164062500005],[-11.121386718749932,-72.03154296874997],[-10.958105468749977,-71.90195312499998],[-10.961035156249949,-71.82236328125],[-11.009228515624983,-71.75791015625003],[-11.179345703125023,-71.77685546874997],[-11.33305664062496,-71.78554687500007],[-11.696875,-71.71933593749998],[-12.148193359374943,-71.61367187500005],[-12.28452148437492,-71.49511718749996],[-12.351318359374943,-71.38974609374998],[-12.207812499999932,-71.33222656249998],[-12.073681640624955,-71.296875],[-11.926123046874919,-71.288671875],[-11.663037109374953,-71.33125],[-11.328076171874926,-71.43974609375005],[-11.16015625,-71.48115234375004],[-10.969824218749949,-71.56005859374996],[-10.825439453124943,-71.5533203125],[-10.65947265624996,-71.44267578125002],[-10.520068359374989,-71.29550781249998],[-10.406640624999966,-71.25029296874999],[-10.230566406249975,-71.20097656249999],[-10.033496093749987,-71.13066406250005],[-10.122314453124972,-71.06093750000005],[-10.331005859374926,-71.0240234375],[-10.359960937499975,-70.98242187499996],[-10.270605468749977,-70.93574218750004],[-10.098730468749949,-70.9263671875],[-9.887988281250017,-71.02734374999997],[-9.599365234375,-71.09531250000003],[-9.40234375,-71.11757812500005],[-9.230664062499926,-71.1740234375],[-8.96591796874992,-71.36132812499997],[-8.646484374999943,-71.67275390625],[-8.497705078124994,-71.67480468749996],[-8.216455078124994,-71.6470703125],[-7.915820312499931,-71.63535156250002],[-7.713720703124978,-71.54648437500003],[-7.668994140624931,-71.32431640624998],[-7.590136718749932,-71.22373046875],[-7.617968749999932,-71.12148437500005],[-7.756884765624988,-71.01718750000003],[-7.873486328124925,-70.94033203125],[-7.854931640624983,-70.88457031250002],[-7.752734374999932,-70.84277343750003],[-7.619775390624937,-70.82900390625004],[-7.388134765625011,-70.78691406250002],[-7.03159179687492,-70.83515624999998],[-6.838183593749959,-70.84453125000002],[-6.547509765624994,-70.81689453124999],[-6.245214843749949,-70.75576171875005],[-5.936328124999989,-70.71269531249999],[-5.694726562499966,-70.74531249999997],[-5.587890624999971,-70.85673828125002],[-5.708691406249983,-70.96826171874999],[-5.903808593749943,-71.05185546874998],[-6.080273437499926,-71.15410156250003],[-6.12675781249996,-71.265625],[-6.11748046874996,-71.32597656250005],[-5.950048828124948,-71.34160156250005],[-4.450146484374983,-71.32773437499996],[-4.253222656249931,-71.33847656250002],[-3.994824218749955,-71.33886718750001],[-3.71318359374996,-71.374609375],[-3.239648437499937,-71.36044921874998],[-2.812011718749943,-71.32099609375001],[-2.610253906249966,-71.32080078124997],[-2.261328124999949,-71.35712890625001],[-2.014599609374955,-71.43339843749999],[-1.500634765624966,-71.41230468750005],[-1.354248046874972,-71.38681640624999],[-1.21635742187496,-71.28417968749997],[-1.067773437499966,-71.265625],[-0.89584960937492,-71.34921875],[-0.840087890624943,-71.53974609374998],[-0.759863281249949,-71.63027343750005],[-0.543164062499926,-71.71269531250005],[-0.326953124999932,-71.64189453125002],[-0.184570312499972,-71.55888671874999],[0.154199218750023,-71.39794921874996],[0.53847656250008,-71.27421874999999],[0.834960937499971,-71.20234375],[1.55224609375,-71.08027343749998],[1.908691406250057,-71.00361328125001],[2.609472656250006,-70.90009765624998],[3.506933593750063,-70.84443359375001],[5.113085937500074,-70.6556640625],[5.643945312500051,-70.63632812499998],[6.50800781250004,-70.58642578125001],[6.950976562500045,-70.53525390624998],[7.401171875000016,-70.49443359375002],[7.676757812500029,-70.35634765625005],[8.306738281250034,-70.46162109375],[8.523046875000034,-70.473828125],[8.81748046875006,-70.39082031250004],[9.141601562500028,-70.18369140625003],[9.613476562500068,-70.26904296875003],[9.885546875000074,-70.40292968750003],[10.217675781250051,-70.50791015625],[10.968847656250034,-70.68769531250004],[11.20351562500008,-70.72871093750005],[11.701269531250034,-70.76660156249996],[11.83359375,-70.73652343750004],[12.06796875000006,-70.61650390625002],[12.308789062500011,-70.44326171875],[12.46162109375004,-70.3701171875],[12.681933593750074,-70.30869140624999],[12.929394531250038,-70.21337890624996],[12.864550781250074,-70.16230468750003],[12.723437500000017,-70.14365234374996],[12.59511718750008,-70.11738281250004],[12.626269531250017,-70.065625],[13.065625,-70.05361328125],[13.297949218750006,-70.22958984374996],[13.532617187500023,-70.2875],[13.822656250000051,-70.34316406250002],[14.491796875000032,-70.29960937500003],[15.063867187500053,-70.29472656250002],[15.562890625000023,-70.33076171874998],[15.806933593750072,-70.32402343750003],[16.025195312500042,-70.19345703124998],[16.381054687500068,-70.1451171875],[16.584863281250023,-70.20380859375005],[16.70917968750004,-70.39726562500003],[17.166699218749983,-70.45087890625003],[18.124609375,-70.54033203125005],[18.232031250000034,-70.51826171874998],[18.351367187500017,-70.41552734375003],[18.432617187500053,-70.28994140625002],[18.627343750000023,-70.26943359375001],[18.877246093750045,-70.2013671875],[19.009375,-70.21210937499997],[19.196386718750034,-70.29316406250004],[19.132324218750057,-70.49189453125004],[19.0265625,-70.67402343750001],[19.152929687499977,-70.8208984375],[19.26513671875003,-70.90234374999999],[19.409277343749977,-70.91699218750003],[19.65185546875003,-70.92060546874998],[19.94423828125008,-70.91015624999997],[20.128125,-70.91757812499998],[21.07080078125,-70.84345703124998],[21.18603515625003,-70.68056640625002],[21.337304687500023,-70.49511718749997],[21.70498046875005,-70.25849609375001],[21.848925781250074,-70.2767578125],[21.962304687500076,-70.300390625],[22.21582031250003,-70.41728515625],[22.366015625000074,-70.47509765624999],[22.39648437499997,-70.56132812500006],[22.233691406250045,-70.64267578125002],[22.277832031250057,-70.69560546875006],[22.445410156250006,-70.73974609375],[22.97900390625,-70.81035156249999],[23.149902343749996,-70.79628906250005],[23.406835937500034,-70.7232421875],[23.664843750000017,-70.575],[23.803613281250023,-70.40458984375],[24.024121093750008,-70.41337890625002],[24.23574218750005,-70.44863281250002],[24.385742187500057,-70.53691406250006],[24.385742187500057,-70.70439453124999],[24.58837890625003,-70.82041015624999],[24.75673828125005,-70.89208984375003],[25.18740234375005,-70.97099609375003],[25.650195312499985,-70.990625],[25.97412109375,-71.03740234375006],[26.498828125000045,-71.01953124999996],[26.75439453124997,-70.96728515624999],[26.91796875,-70.95371093749998],[27.206835937500042,-70.91093750000005],[27.50859375000007,-70.81328125000005],[27.697753906250057,-70.7724609375],[28.386425781250008,-70.68203125000005],[28.911523437500055,-70.58310546874996],[29.463867187499975,-70.40625],[30.003320312499994,-70.3],[30.834082031250063,-70.24628906250001],[31.062890625000055,-70.22470703125005],[31.378808593749994,-70.22578125],[32.159570312499994,-70.09980468750001],[32.45654296875003,-70.02597656249996],[32.6212890625001,-70.00058593750003],[32.80976562500004,-69.909375],[32.911523437499994,-69.73369140625],[32.989355468750006,-69.62421875000001],[32.97597656250005,-69.51699218750002],[32.903125,-69.3787109375],[32.73798828125004,-69.2548828125],[32.5675781250001,-69.07421874999997],[32.64160156249997,-68.86894531249997],[32.77617187500002,-68.78310546875],[33.12148437500005,-68.68916015625004],[33.465625,-68.670703125],[33.85351562499997,-68.68300781250002],[34.19287109374997,-68.70244140624999],[34.21933593750006,-68.790625],[34.07421874999997,-68.88535156250003],[33.88486328125,-68.97929687499999],[33.77207031250006,-69.02001953125003],[33.8136718750001,-69.09931640625001],[34.05859374999997,-69.11054687499998],[34.59589843750004,-69.09453125000002],[34.74951171874997,-69.16767578125],[35.13134765624997,-69.48691406250002],[35.2248046875001,-69.6373046875],[35.35703125,-69.68134765625001],[35.56767578125002,-69.66005859375002],[36.01777343750003,-69.66181640625004],[36.331152343750055,-69.63935546874998],[36.58593749999997,-69.63789062500004],[36.71875,-69.65224609375004],[36.855761718750074,-69.72558593749997],[37.11484375,-69.81044921875002],[37.37451171874997,-69.74785156249997],[37.55976562500004,-69.718359375],[37.78710937500003,-69.72568359374999],[38.14433593750007,-69.82421875],[38.499414062499994,-70.05615234375],[38.885546875000074,-70.171875],[38.91171875000006,-70.09785156250004],[38.85927734375005,-70.0060546875],[39.01875,-69.92421875000002],[39.21132812499999,-69.78593750000002],[39.48701171875004,-69.6080078125],[39.70507812499997,-69.42558593750005],[39.76230468750006,-69.17333984375],[39.86386718750006,-68.96699218749997],[40.04169921875004,-68.8677734375],[40.215625,-68.80488281249998],[40.48388671874997,-68.73886718750003],[40.81708984375004,-68.72363281250003],[41.132714843749994,-68.57509765625007],[41.356347656249994,-68.51494140624997],[41.82460937499999,-68.4326171875],[42.408789062500006,-68.35185546875006],[42.81953125000004,-68.12324218750003],[42.96093749999997,-68.09531250000002],[43.17089843750002,-68.05976562499997],[43.55410156250005,-68.04560546875001],[44.17753906250002,-67.97246093750005],[44.37285156250002,-67.96132812499998],[44.699804687500006,-67.90429687499999],[44.98955078125007,-67.76923828125003],[45.19697265625004,-67.73115234374998],[45.56933593749997,-67.73642578125],[45.88769531249997,-67.65976562499999],[46.15390625000006,-67.65703124999999],[46.399023437500006,-67.61757812500004],[46.43652343749997,-67.53339843750003],[46.319726562499994,-67.47656249999999],[46.31728515625005,-67.40195312499998],[46.45410156250003,-67.30361328125002],[46.559667968750006,-67.26816406249999],[46.883886718750006,-67.27480468750002],[47.15439453125006,-67.35722656250002],[47.35156249999997,-67.3619140625],[47.40292968750006,-67.40917968750003],[47.23134765624999,-67.46826171875],[47.11718750000003,-67.57265625000002],[47.3141601562501,-67.66494140625],[47.48984375,-67.72792968750005],[47.70351562499999,-67.71621093750005],[47.95859375,-67.66005859375],[48.20996093749997,-67.69931640624999],[48.321679687499994,-67.78525390624999],[48.321679687499994,-67.91748046875003],[48.37451171875003,-67.98808593750002],[48.5509765625001,-67.92636718749998],[48.64804687500006,-67.79404296875],[48.62001953125005,-67.62519531249998],[48.63037109375002,-67.52060546875],[49.05292968750004,-67.35244140625002],[49.2193359375,-67.22685546875002],[48.92304687500004,-67.19970703125],[48.71367187500002,-67.21689453125003],[48.598437500000074,-67.17128906250007],[48.46523437499999,-67.04345703124996],[48.83027343750004,-66.93828125],[49.24707031249997,-66.94160156249997],[49.48867187499999,-67.03095703124998],[50.00615234375007,-67.17519531250005],[50.29296874999997,-67.17216796874997],[50.55302734375001,-67.19433593749997],[50.605957031249964,-67.15019531250003],[50.50888671875,-66.93857421874999],[50.52089843750005,-66.82001953125],[50.30605468750005,-66.7533203125],[50.2443359375001,-66.60341796875002],[50.33242187499999,-66.44462890624999],[50.58828125,-66.35644531249997],[50.936914062500044,-66.31542968749997],[51.6875,-66.07216796875005],[51.88457031250002,-66.02001953124999],[52.378222656250074,-65.96914062500002],[52.95527343750004,-65.94550781250001],[53.67177734374999,-65.85869140624999],[54.94785156250006,-65.91630859375002],[55.29042968750005,-65.95419921875],[55.50449218750006,-66.00263671875001],[55.71035156249999,-66.07998046875005],[55.97402343750005,-66.209375],[56.36152343750004,-66.37275390625001],[56.859375,-66.42343750000003],[57.000292968750074,-66.47480468750001],[57.18544921875005,-66.61328124999997],[56.9865234375001,-66.70439453124999],[56.82363281250005,-66.71269531249999],[56.51005859375002,-66.65927734375003],[56.29453125000006,-66.60341796875002],[56.14589843749999,-66.62607421874999],[56.291894531249994,-66.72109375],[56.45322265625006,-66.77978515624997],[56.47968750000004,-66.85917968749997],[56.39140625000002,-66.97382812499998],[55.80273437499997,-67.19931640625],[56.15488281250006,-67.26455078125005],[56.36591796875004,-67.2125],[56.56210937500006,-67.11591796874998],[56.760058593750074,-67.07333984375],[56.89160156250002,-67.05625],[57.36113281250001,-67.05263671875004],[57.62744140625002,-67.0140625],[57.828125,-67.04130859375003],[58.0267578125,-67.10341796875],[58.317480468750006,-67.1630859375],[58.73740234375,-67.22958984375003],[59.25078125000007,-67.48496093750002],[59.65019531250007,-67.45859374999998],[59.86757812500005,-67.403125],[60.48203125,-67.38515625000002],[61.01210937499999,-67.49951171874997],[61.309082031249964,-67.540234375],[62.17392578125006,-67.57548828124999],[62.687890625000044,-67.64755859375],[63.017675781250006,-67.56181640625005],[63.23759765625002,-67.52685546875003],[63.699023437500074,-67.50830078124997],[63.93125,-67.52607421875003],[64.5736328125,-67.62041015624999],[65.70751953124997,-67.71640625],[66.48837890625,-67.76552734374998],[67.17480468749996,-67.76796875000002],[67.50244140625003,-67.81015625],[68.09853515625005,-67.85410156249999],[68.3279296875,-67.88955078125002],[68.89951171875006,-67.862109375],[69.16718750000004,-67.82480468749998],[69.41640625,-67.74296874999999],[69.55917968750006,-67.76318359375003],[69.65595703125004,-67.86455078124999],[69.60302734375003,-68.04101562499997],[69.7044921875,-68.16083984375004],[69.788671875,-68.27949218749997],[69.90742187500004,-68.3794921875],[69.98222656250002,-68.46425781250005],[69.92792968750004,-68.53535156250004],[69.76191406250004,-68.59853515625005],[69.53417968750003,-68.73691406249999],[69.546875,-68.85664062500004],[69.64560546874999,-68.93222656249999],[69.53076171874997,-69.02402343750003],[69.6146484375,-69.1537109375],[69.6294921875,-69.23164062499997],[69.5494140625,-69.29375],[69.371875,-69.33144531250005],[69.06494140625003,-69.33740234375003],[68.90625,-69.37275390625004],[68.87978515625005,-69.46972656249997],[68.95917968750004,-69.54023437500004],[69.13554687500002,-69.57792968749999],[69.18847656250003,-69.65488281250002],[69.16201171875005,-69.76962890624998],[69.08261718750006,-69.86660156250001],[68.92050781250006,-69.91181640624997],[68.74375,-69.92138671874997],[68.41523437500004,-69.90214843750006],[68.178125,-69.8373046875],[68.02714843750007,-69.89443359375],[67.91699218749997,-69.95273437499998],[67.57539062500004,-70.08789062499996],[67.4166015625,-70.17714843750004],[67.26796875,-70.27314453124997],[67.65898437500002,-70.32597656249999],[67.94082031250005,-70.4228515625],[68.559375,-70.4125],[68.75742187500006,-70.36992187500005],[69.0208984375,-70.3251953125],[69.16201171875005,-70.33398437500001],[69.2501953125001,-70.4310546875],[69.1966796875,-70.58525390625005],[69.18837890625,-70.70458984375003],[68.8727539062501,-71.03515624999996],[68.76796875,-71.09072265625],[68.6237304687501,-71.1814453125],[68.44755859375007,-71.2515625],[68.31054687499997,-71.28652343750001],[68.03740234375002,-71.39101562499998],[67.87333984375007,-71.57978515624997],[67.69355468750004,-71.73671875000005],[67.43222656249999,-72.00292968750003],[67.28105468750002,-72.290625],[67.21484375000003,-72.46142578124999],[67.11337890625006,-72.64111328125001],[66.89208984375003,-72.94863281250004],[66.74648437499998,-72.99980468749999],[66.49765625,-73.12548828125003],[66.56914062500002,-73.2091796875],[66.76474609375,-73.21689453124999],[67.003125,-73.23642578124996],[67.32207031250002,-73.30029296875001],[67.74863281250006,-73.16816406250001],[67.97138671875004,-73.08564453124997],[68.01552734375,-72.91816406249997],[67.97138671875004,-72.75058593750002],[68.10683593750004,-72.65068359375002],[68.41982421875005,-72.5150390625],[69.15703125000002,-72.41865234374998],[69.30947265625,-72.40878906250002],[69.55468750000003,-72.37451171874997],[69.76972656250004,-72.25361328125004],[69.9621093750001,-72.13291015625003],[70.2943359375,-72.05537109374995],[70.57285156250006,-71.93095703125002],[70.61621093750003,-71.84208984375005],[70.7316406250001,-71.82226562499999],[71.07880859375004,-71.73671875000005],[71.16787109375005,-71.67158203125003],[71.27675781250005,-71.62392578125],[71.34921875000006,-71.51386718750003],[71.37880859375005,-71.3091796875],[71.46484374999996,-71.15458984375005],[71.63388671875006,-70.94921875000003],[71.77138671875,-70.80126953125],[71.9048828125,-70.706640625],[72.26259765625005,-70.65673828124996],[72.41796875000003,-70.59863281250003],[72.62236328125007,-70.47207031249998],[72.76035156250006,-70.39570312499998],[72.74433593750004,-70.23916015625004],[72.82207031250002,-70.0958984375],[73.04140625,-70.00966796875002],[73.3248046875,-69.84892578125005],[73.67607421875007,-69.82578125000003],[73.94218750000002,-69.7431640625],[74.2267578125001,-69.80039062500002],[74.57109375000007,-69.87958984374998],[75.1478515625,-69.85546874999997],[75.42382812499997,-69.89306640624999],[75.63554687500002,-69.84892578125005],[75.820703125,-69.72548828125004],[75.8912109375,-69.57558593750005],[76.11171875000005,-69.48740234375003],[76.35976562500005,-69.49023437499999],[76.77011718750006,-69.33964843750005],[77.19199218750006,-69.20595703124998],[77.54091796875,-69.17441406250003],[77.81748046875012,-69.06894531250003],[78.01513671874997,-68.89189453125003],[78.22851562500003,-68.75615234375],[78.48896484375004,-68.62578124999997],[78.56347656250003,-68.39375],[78.7262695312501,-68.27783203124999],[79.03515625000003,-68.17539062499999],[79.2877929687501,-68.11933593750001],[80.3630859375,-67.946875],[81.18740234374998,-67.83125],[82.0169921875,-67.69003906249996],[82.27324218750007,-67.69169921875005],[82.60703125000012,-67.61308593750002],[83.15781250000006,-67.61054687500003],[83.30429687500006,-67.60302734375],[83.49365234375003,-67.44121093749999],[83.90371093750005,-67.29199218749997],[84.16074218750012,-67.24414062499999],[84.48515625000002,-67.11445312500004],[84.74833984375002,-67.10224609375004],[85.11679687500012,-67.12558593749998],[85.42900390625,-67.16093749999999],[85.71074218750002,-67.16132812499998],[86.11835937500004,-67.05498046874999],[86.75019531250004,-67.037109375],[86.94658203125002,-66.98554687499997],[87.08486328125005,-66.94013671875004],[87.98027343750002,-66.78847656250005],[88.3141601562501,-66.81748046875],[88.78945312500005,-66.79199218749997],[89.0765625,-66.79941406249998],[89.3517578125001,-66.81816406249997],[89.69843750000004,-66.82304687499999],[90.29296875000003,-66.76962890625003],[90.54726562500004,-66.73427734375002],[91.02167968750004,-66.60283203124999],[91.54609375000004,-66.57207031250002],[91.7770507812501,-66.5375],[92.0734375000001,-66.50791015625],[92.31230468750007,-66.55859375000003],[92.48583984374997,-66.604296875],[92.59199218750004,-66.61445312500004],[92.73056640625012,-66.62441406250002],[93.0749023437501,-66.57109374999999],[93.35800781250006,-66.58544921875],[93.72167968749997,-66.64296875],[93.9642578125,-66.6896484375],[94.08876953125005,-66.68886718750001],[94.31347656250003,-66.64716796875004],[94.58681640624998,-66.54355468749998],[94.83984374999997,-66.5013671875],[95.08398437499997,-66.52744140624999],[95.24794921875005,-66.57119140625001],[95.54101562499997,-66.63095703125003],[95.9914062500001,-66.62119140624999],[96.42373046875005,-66.59960937500003],[96.78886718750002,-66.55058593749999],[97.10058593750001,-66.49941406250005],[97.38847656250002,-66.57861328125003],[97.7198242187501,-66.60732421875001],[98.2576171875,-66.46748046875004],[98.46171875000002,-66.49853515624997],[98.603125,-66.53476562499998],[98.7201171875,-66.553125],[98.85888671875003,-66.67080078125005],[99.37011718749997,-66.64824218749999],[99.82431640625005,-66.54863281250005],[100.21171875,-66.47392578125],[100.5912109375,-66.42519531250002],[100.8890625,-66.35800781250002],[101.32714843749997,-66.10048828125005],[101.32089843750012,-66.0208984375],[101.38134765625003,-65.97304687500002],[101.47441406250007,-65.951171875],[102.17412109375007,-65.95419921875],[102.39218750000005,-65.93261718749996],[102.67421875000005,-65.86513671875007],[103.16660156250012,-65.91689453125004],[103.63876953125012,-65.99892578125005],[103.76347656250002,-65.98974609374996],[103.95117187499996,-65.98808593749997],[104.28906249999997,-66.03916015624999],[104.66699218749996,-66.13681640624999],[105.00039062500005,-66.16406250000003],[106.38691406250003,-66.41064453125],[107.17089843749997,-66.47041015625001],[107.5655273437501,-66.55234375],[107.66728515625007,-66.58037109375002],[107.78505859375004,-66.66406250000003],[107.99169921874996,-66.67207031249997],[108.1579101562501,-66.6390625],[108.37617187500003,-66.76582031249997],[108.91005859374998,-66.8619140625],[109.46279296875,-66.90869140625003],[109.82373046874997,-66.83369140625004],[110.43701171874996,-66.62109374999997],[110.62226562500004,-66.5240234375],[110.58701171875006,-66.31230468750005],[110.90673828125003,-66.07666015625],[111.453125,-65.96093750000004],[112.13027343750005,-65.90009765624997],[112.54785156250001,-65.84794921875002],[113.09941406250007,-65.79990234375],[113.36796875000007,-65.84873046875],[113.50214843750004,-65.88632812500002],[113.70976562500007,-65.92958984375005],[113.9544921875,-66.06044921875007],[114.33691406250001,-66.36015625000002],[114.6185546875,-66.46796875000004],[114.86953125,-66.476953125],[115.082421875,-66.49296874999999],[115.31035156250006,-66.56083984375005],[115.63535156250012,-66.77119140624998],[115.44189453124996,-66.95800781249996],[115.27373046875006,-67.02792968749999],[114.57060546875002,-67.10849609374998],[114.25976562500003,-67.172265625],[113.99121093750003,-67.2119140625],[113.9125,-67.36767578125001],[114.02656250000008,-67.44121093749999],[114.31904296875008,-67.40566406250002],[114.65791015625004,-67.38789062500004],[114.92578124999997,-67.35654296874998],[115.171875,-67.30781249999998],[115.38417968749998,-67.23808593749999],[115.88525390624997,-67.201953125],[116.2146484375,-67.14277343750003],[116.50908203125,-67.10791015625003],[116.71347656250012,-67.04716796875],[116.9236328125,-67.05546875],[117.13193359375012,-67.11435546874999],[117.29785156249999,-67.10927734375005],[117.74472656250006,-67.12851562499996],[117.95195312500002,-67.08535156250005],[118.13867187500001,-67.082421875],[118.32578125000008,-67.11503906249997],[118.51894531250004,-67.16093749999999],[118.71386718749997,-67.17167968750003],[118.96464843750002,-67.14482421875],[119.31826171875,-67.07080078125001],[119.76796875000004,-66.99150390625003],[120.18730468750003,-66.96621093750002],[120.28925781250003,-66.96660156250002],[120.37480468750003,-66.98378906250005],[119.95371093750005,-67.07587890624998],[119.2806640625,-67.19921874999997],[118.92167968750003,-67.31972656250002],[119.1330078125001,-67.370703125],[120.40039062500001,-67.23603515625001],[120.97871093750004,-67.13574218750001],[121.48759765625002,-67.09072265625],[121.61318359375,-67.05703125000005],[122.03310546875,-66.90175781250005],[122.18281250000004,-66.85947265625002],[122.63300781250003,-66.80488281250003],[123.22167968749996,-66.74511718750001],[123.6666015625001,-66.67685546874996],[123.96933593750005,-66.60810546874998],[124.19619140625,-66.60078125000001],[124.37050781249998,-66.65224609375001],[124.59785156250008,-66.70820312500004],[124.82158203125,-66.69453125000001],[125.09511718749998,-66.64111328124997],[125.28632812500004,-66.51582031250001],[125.39794921875001,-66.42441406249996],[125.60302734374997,-66.39335937500003],[125.865625,-66.36445312500001],[126.07714843750001,-66.39550781250003],[126.42373046875005,-66.46240234374997],[126.6647460937501,-66.49755859375003],[126.87363281250012,-66.759375],[127.36542968750003,-66.9896484375],[127.54121093750004,-67.05107421874999],[127.96806640625007,-67.02792968749999],[128.43056640625005,-67.119140625],[128.62783203125,-67.10712890625004],[128.81640624999997,-67.08037109375002],[128.98242187500003,-67.0982421875],[129.23691406250012,-67.04160156250002],[129.5,-66.7529296875],[129.74121093749994,-66.46855468749999],[129.97578125000007,-66.34482421875],[130.1205078125,-66.29150390624997],[130.30058593750007,-66.26845703125],[130.57851562500005,-66.20859375000005],[130.95175781250006,-66.19140625],[131.23203125000012,-66.21552734375004],[131.83085937500002,-66.23583984375],[132.32031249999994,-66.16542968750004],[132.87431640625002,-66.17802734375005],[133.14824218750007,-66.09482421874996],[133.44453125000004,-66.0814453125],[133.84277343749997,-66.15361328125005],[133.95751953124997,-66.20429687499997],[134.1789062500001,-66.27705078125004],[134.2318359375,-66.34765624999996],[134.28945312500005,-66.47675781249997],[134.39814453125004,-66.47988281249998],[134.7697265625001,-66.35332031250005],[134.97148437500007,-66.33017578125003],[135.35195312500005,-66.12714843749998],[135.55478515625006,-66.180078125],[136.009375,-66.26679687500001],[136.19394531250006,-66.29218750000003],[136.55332031250012,-66.43896484375],[136.73964843750005,-66.40771484375001],[136.88916015624997,-66.33964843750002],[137.33623046875002,-66.34648437499999],[137.75380859375,-66.40644531250004],[137.92578125000003,-66.45693359375002],[138.13994140625002,-66.54394531249997],[138.27099609375003,-66.56445312499997],[138.37646484374997,-66.54042968750005],[139.24160156250005,-66.57402343749997],[139.61318359375,-66.63759765625004],[139.9000976562501,-66.71513671875005],[140.9015625000001,-66.75195312499999],[141.28593750000007,-66.8318359375],[141.5171875000001,-66.79404296875003],[141.97285156250004,-66.80673828125005],[142.15898437500002,-66.8736328125],[142.32666015624994,-66.94833984375003],[142.6875,-67.01279296875],[142.88837890625004,-67.00009765625],[143.16894531249997,-66.9486328125],[143.44824218749997,-66.87675781250002],[143.73037109375005,-66.87675781250002],[143.8626953125,-66.93857421874999],[143.9111328125,-67.09072265625],[144.11767578124997,-67.08769531249999],[144.3478515625001,-67.01796875],[144.55058593750002,-67.035546875],[144.62119140625006,-67.14140625000002],[144.5153320312501,-67.28251953124999],[144.25966796875005,-67.47871093749998],[144.15371093750002,-67.64414062500003],[143.94199218750006,-67.79404296875],[143.97734375,-67.86455078124999],[144.18906250000006,-67.89980468749998],[144.404296875,-67.79423828125005],[144.87910156250004,-67.72089843750004],[145.12792968750003,-67.62597656249997],[145.55644531250002,-67.59091796875002],[145.97519531250006,-67.62421874999997],[146.27636718749997,-67.75087890625002],[146.82783203125004,-67.96464843750005],[146.85244140625,-68.04101562499997],[146.8965820312501,-68.12031250000004],[146.87822265625002,-68.1912109375],[146.79765625000002,-68.2736328125],[147.09365234375,-68.36865234375001],[147.35380859375007,-68.38427734375],[147.56855468750004,-68.37509765625],[148.45625,-68.46699218749998],[148.8805664062501,-68.43115234374994],[149.26269531250003,-68.43134765624998],[149.71689453125012,-68.41777343749999],[150.06552734375006,-68.41992187499996],[150.34218750000002,-68.43574218750001],[150.67197265625003,-68.40292968749998],[150.93593750000005,-68.35849609374999],[151.06826171875,-68.38496093750005],[151.12109375000003,-68.62304687499997],[151.1388671875001,-68.76416015625001],[151.28876953125004,-68.81708984374998],[151.44755859375002,-68.76416015625001],[151.56210937500006,-68.69365234375006],[152.26523437500006,-68.7255859375],[152.54550781250012,-68.72958984375],[152.81416015625004,-68.76767578125003],[153.08183593750007,-68.8568359375],[153.33994140625003,-68.81796874999998],[153.49570312500006,-68.76435546874998],[153.70527343750004,-68.72890625000005],[153.7669921875,-68.640625],[153.79238281250005,-68.49335937500001],[153.78466796874994,-68.34960937499996],[153.90800781250007,-68.32314453124998],[154.03154296875,-68.34960937499996],[154.19970703124997,-68.41787109375001],[154.57636718750004,-68.63427734375004],[154.866015625,-68.77431640625005],[154.9875,-68.84130859375003],[155.16396484375005,-68.89462890624998],[155.52031250000007,-69.02441406250003],[156.01093750000004,-69.07783203124998],[156.488671875,-69.18300781250001],[157.04638671875003,-69.17626953124997],[157.48134765625,-69.30869140625003],[157.77578125000005,-69.20468749999998],[157.93251953124997,-69.18076171875],[158.15781250000006,-69.20888671875005],[158.43261718749997,-69.2994140625],[158.6471679687501,-69.32011718750005],[159.38632812500006,-69.46835937499998],[159.78398437500007,-69.521875],[159.93095703125007,-69.63056640624998],[160.12578125000007,-69.73427734375005],[160.12578125000007,-69.84013671875005],[160.2096679687501,-69.97490234375003],[160.65185546875003,-70.08056640625],[160.82675781250006,-70.18203125000005],[161.03701171875,-70.31718750000006],[161.42451171875004,-70.82675781250002],[161.62509765625006,-70.91611328125003],[161.9161132812501,-70.90732421875003],[162.18945312500003,-71.03955078124997],[162.277734375,-71.021875],[162.2865234375,-70.96904296874999],[162.03964843750006,-70.625],[162.02197265625003,-70.43984375],[162.2160156250001,-70.33398437500001],[162.67480468749994,-70.30458984374998],[163.02646484375012,-70.50136718750001],[163.34873046875012,-70.6208984375],[163.56650390625006,-70.64228515625004],[163.99843750000005,-70.63652343750002],[164.40322265625,-70.51044921875],[164.716015625,-70.55654296875005],[165.209375,-70.57080078125003],[165.85390625000005,-70.64531250000002],[166.13203125000004,-70.63281249999997],[166.62695312499997,-70.66425781249998],[167.22880859375,-70.77128906250002],[167.56943359375006,-70.81025390624997],[167.64003906250005,-70.85439453125],[167.79882812499997,-70.92490234374996],[167.878125,-71.0130859375],[167.96630859374997,-71.09248046875],[168.17265625000002,-71.18320312499999],[168.38281250000003,-71.19736328124996],[168.79785156250003,-71.27480468750002],[169.66376953125004,-71.51132812499998],[169.97695312499997,-71.58066406249998],[170.1623046875001,-71.63046875],[170.25048828125,-71.56875],[170.27685546874994,-71.44394531249999],[170.43574218750004,-71.41875],[170.60332031250007,-71.60400390625001],[170.7796875,-71.7451171875],[170.85908203125004,-71.86855468750001],[170.67539062500006,-71.96855468750005],[170.40927734375006,-71.94794921875001],[170.22402343750005,-71.94794921875001],[170.03007812500007,-72.11552734375005],[169.953515625,-72.40283203124997],[170.12714843750004,-72.39775390624999],[170.259375,-72.37128906250003],[170.28583984375,-72.4771484375],[170.20644531250005,-72.56533203125002],[170.04775390625002,-72.60058593750003],[169.77490234374997,-72.5337890625],[169.44033203125,-72.48681640625003],[169.07236328125003,-72.46875],[168.71884765625012,-72.38447265625004],[168.57617187499997,-72.37910156250001],[168.4284179687501,-72.3833984375],[168.62167968750012,-72.47265624999997],[168.8200195312501,-72.55244140624998],[169.26953125,-72.62128906249997],[169.82861328124997,-72.72880859375003],[169.84482421875003,-72.79462890625003],[169.712109375,-72.87695312500001],[169.5450195312501,-73.050390625],[169.03339843750004,-73.20039062500001],[168.7359375000001,-73.09121093750005],[168.38134765624994,-73.06591796874996],[168.20449218750005,-73.12978515625001],[167.85302734375003,-73.12246093750002],[167.15566406250002,-73.14726562500002],[166.88281249999997,-73.01123046875001],[166.45283203125004,-72.93603515624997],[166.4669921875001,-72.99746093750005],[166.83398437499997,-73.22431640624998],[167.22558593749994,-73.27578125],[167.61582031250012,-73.33681640625],[167.70908203125006,-73.39423828124995],[167.53417968749997,-73.44726562500003],[167.29648437500006,-73.44003906249998],[166.99609374999997,-73.5443359375],[166.4288085937501,-73.52695312499999],[166.159375,-73.53378906249996],[166.00107421875012,-73.57666015625],[165.86015625000002,-73.59267578125],[165.97060546875005,-73.63076171875002],[166.10605468750006,-73.73515625000005],[165.9132812500001,-73.82285156249998],[165.73369140625005,-73.86669921875001],[165.54892578125012,-73.84609375],[165.34697265625007,-73.87939453124996],[165.24990234374997,-73.78242187500001],[165.24453125,-73.57119140625005],[165.12949218750006,-73.3826171875],[165.0048828125,-73.37451171875003],[164.81298828125003,-73.39677734375003],[164.74960937500006,-73.55878906250001],[164.88769531250003,-73.83769531249999],[164.9798828125,-73.92587890625],[164.90595703125004,-74.00292968749999],[164.77568359375002,-74.02851562500004],[165.03720703125012,-74.26347656250005],[165.26308593750005,-74.42617187500005],[165.3998046875,-74.47919921875003],[165.40859375,-74.55859375000003],[165.30283203125006,-74.59375],[165.00117187500004,-74.56269531249997],[164.85302734374997,-74.57832031249997],[164.68896484374997,-74.56835937499997],[164.4107421875001,-74.53339843749997],[164.17402343750004,-74.52324218750003],[163.93583984375002,-74.56738281249997],[163.73525390625,-74.56376953125002],[163.55654296875,-74.41738281250005],[163.3978515625,-74.38212890625006],[163.26552734375005,-74.42626953125],[163.16738281250005,-74.601953125],[162.96123046875007,-74.65605468749999],[162.75205078125006,-74.73613281250006],[162.60410156250012,-74.82314453125002],[162.53359375000005,-75.16708984375],[162.41005859375005,-75.23759765624999],[162.2255859375,-75.2345703125],[162.08779296875,-75.26162109375],[161.91035156250007,-75.23388671875003],[161.67958984375,-75.21777343750003],[160.91074218750012,-75.33466796875004],[161.03291015625004,-75.3958984375],[161.22734375000002,-75.38613281250004],[161.90351562500004,-75.40419921875],[162.18964843750004,-75.46689453124998],[162.23906250000002,-75.62167968749999],[162.351953125,-75.68652343749996],[162.57763671874994,-75.75800781250005],[162.75400390625012,-75.79326171875005],[162.81572265625007,-75.84619140624999],[162.74511718749997,-75.95195312500003],[162.64824218750007,-76.0490234375],[162.43652343749997,-76.15488281249999],[162.49824218750004,-76.20771484375001],[162.72753906249997,-76.22539062500006],[162.824609375,-76.46357421875],[162.67460937500002,-76.56933593749997],[162.74521484375012,-76.65751953124999],[162.76279296875012,-76.745703125],[162.6095703125001,-76.82871093750005],[162.48945312500004,-76.86923828125003],[162.45029296875006,-76.95566406249998],[162.67910156250005,-77.00673828125],[162.85019531250003,-77.02353515625003],[163.08691406249997,-77.03232421874996],[163.24990234375005,-77.12646484374996],[163.45849609375003,-77.26933593750002],[163.6076171875001,-77.38779296874998],[163.61914062499994,-77.58232421875002],[163.76621093750003,-77.69990234374997],[164.04521484375007,-77.77460937500001],[164.03642578125007,-77.85302734375],[164.23203125000012,-77.87705078125],[164.42089843749997,-77.88349609375],[164.49150390625007,-77.95400390625004],[164.42968749999997,-78.0421875],[164.10781250000005,-78.14677734374999],[163.97763671875003,-78.22382812500004],[164.29736328125,-78.23623046874998],[164.628125,-78.315625],[165.05058593750002,-78.22607421874997],[165.27402343750006,-78.12861328125001],[165.41757812500006,-78.0421875],[165.52402343750006,-78.06357421875],[165.53417968750003,-78.15380859374999],[165.66298828125,-78.30566406250003],[166.20859375000012,-78.45166015625001],[166.51035156250012,-78.49736328125],[166.80117187500005,-78.52158203124996],[167.05800781250005,-78.51845703125004],[167.13027343750002,-78.60615234375004],[167.0490234375001,-78.68603515624997],[166.85,-78.67988281249997],[166.52460937500007,-78.694921875],[166.2865234375,-78.62783203125002],[166.11679687500006,-78.57109375],[164.63476562500003,-78.60322265624998],[164.30058593750007,-78.63007812500004],[163.9017578125,-78.71708984375],[163.503125,-78.75859375000002],[162.89511718750006,-78.84482421875],[162.63945312500002,-78.89775390625005],[161.97451171874997,-78.69423828125005],[161.75742187500012,-78.54492187499999],[161.66923828125002,-78.5361328125],[161.5104492187501,-78.57138671874998],[161.50175781250007,-78.67724609374996],[161.81337890625005,-78.90742187500004],[161.95146484375002,-78.96826171875001],[161.95146484375002,-79.02998046874998],[161.86425781250003,-79.06093750000007],[161.73730468750003,-79.05996093750005],[161.54609375000004,-79.01503906250004],[161.19052734375006,-78.97871093750001],[160.87353515624997,-79.04970703125],[160.48271484375002,-79.20146484375],[160.56738281249997,-79.30234375000003],[160.67021484375002,-79.35888671875],[160.64609375000012,-79.42685546875],[160.20917968750007,-79.55439453125005],[160.06796875000012,-79.56123046875001],[159.97587890625007,-79.58564453125003],[160.08359375000003,-79.63251953124998],[160.32275390624994,-79.63554687499996],[160.34628906250006,-79.69150390625],[160.26484375000004,-79.73662109375005],[159.871875,-79.78984375000006],[159.89648437499997,-79.85898437500002],[160.11142578125006,-79.89248046875001],[160.38730468750006,-79.87949218750003],[160.5580078125,-79.92958984375002],[160.55878906250007,-80.01054687499997],[160.38173828125,-80.05449218749997],[160.17939453125,-80.08808593749998],[158.76748046875,-80.29335937500005],[158.56035156250002,-80.34892578124999],[158.57363281250005,-80.4234375],[159.0651367187501,-80.44257812499998],[160.5421875000001,-80.425],[160.63730468750006,-80.44990234374997],[160.6033203125,-80.5076171875],[160.52128906250007,-80.5833984375],[160.60136718750007,-80.63652343749997],[160.82324218749997,-80.67402343749998],[160.83027343750004,-80.7298828125],[160.72001953125007,-80.753125],[160.50253906250006,-80.77929687500001],[160.26015625,-80.78671875000002],[160.27578125,-80.84677734375],[160.60722656250002,-80.90117187499996],[160.71679687500003,-80.90742187500001],[160.7279296875,-81.11289062500002],[160.71669921875,-81.19960937500002],[160.54003906249997,-81.24169921874999],[160.47861328125006,-81.2701171875],[160.46982421875003,-81.340625],[160.90781250000006,-81.39023437499996],[161.5821289062501,-81.609765625],[161.7301757812501,-81.61044921874998],[161.99609374999997,-81.65302734375003],[162.42529296875003,-81.76494140625],[162.57666015625003,-81.83203125],[162.82119140625005,-81.86621093750001],[162.85439453125002,-81.92070312500003],[163.00429687500005,-81.96894531249998],[163.60234375000002,-82.12060546874999],[163.68007812500005,-82.18730468749997],[162.42656250000002,-82.31445312499996],[161.16650390624997,-82.40781249999996],[161.28320312499997,-82.48994140625],[162.64375,-82.48154296874998],[163.01181640625006,-82.53496093750002],[163.17470703125,-82.51894531250005],[163.26855468749997,-82.46328125],[164.00136718750005,-82.39677734375003],[164.74716796875012,-82.35439453125],[164.9800781250001,-82.38496093750001],[165.981640625,-82.62968750000005],[166.44589843750006,-82.72216796874997],[166.74218750000003,-82.75703124999997],[166.95673828125004,-82.76464843750001],[167.11630859375012,-82.80126953125001],[167.27128906250005,-82.87939453125003],[167.2326171875001,-82.95234374999997],[167.29746093750006,-82.98583984374996],[167.40449218750004,-82.99882812500002],[167.601953125,-83.04746093749998],[167.82753906250005,-83.03076171874996],[168.09179687499997,-82.97470703124999],[168.27597656250012,-82.98720703125005],[168.60732421875002,-83.06533203124998],[168.4816406250001,-83.12675781249997],[168.4083984375001,-83.15507812499997],[168.32001953125004,-83.21074218750002],[168.24023437500003,-83.22988281250002],[167.97304687500002,-83.24316406249997],[167.82539062500004,-83.24296875000002],[167.67441406250012,-83.23144531249999],[167.6576171875,-83.27216796875003],[167.84277343749997,-83.31621093750002],[168.11005859375004,-83.36201171875003],[169.83789062499997,-83.39902343750002],[170.33203125000003,-83.47880859375002],[170.81748046875006,-83.43574218750004],[171.03574218750003,-83.44843750000005],[171.22070312499997,-83.475],[171.2892578125001,-83.55546875],[171.53710937499997,-83.58134765625005],[171.91718750000004,-83.64404296875001],[172.45009765625,-83.675390625],[172.87392578125,-83.67314453125],[173.39726562500013,-83.75878906250004],[173.66181640624998,-83.76093750000004],[173.82236328125,-83.81015625000002],[175.01103515625007,-83.83906250000005],[175.18740234374994,-83.87744140624997],[175.32285156250018,-83.9400390625],[175.60576171875007,-83.96757812500002],[175.91123046875015,-83.97314453125],[177.58105468749997,-84.07490234375004],[178.20859375000012,-84.12988281249997],[178.35263671875018,-84.12666015625003],[178.49599609375005,-84.13574218749999],[178.94443359375012,-84.18144531249999],[179.4030273437501,-84.20615234374996],[179.62031250000015,-84.268359375],[180,-84.35156250000001],[180,-89.99892578124998],[178.59375,-89.99892578124998],[177.1875,-89.99892578124998],[175.78125,-89.99892578124998],[174.375,-89.99892578124998],[172.96875,-89.99892578124998],[171.5625,-89.99892578124998],[170.15625,-89.99892578124998],[168.75,-89.99892578124998],[167.34375,-89.99892578124998],[165.9375,-89.99892578124998],[164.53115234375005,-89.99892578124998],[163.125,-89.99892578124998],[161.71875,-89.99892578124998],[160.3125,-89.99892578124998],[158.90625,-89.99892578124998],[157.5,-89.99892578124998],[156.09375,-89.99892578124998],[154.6875,-89.99892578124998],[153.28125,-89.99892578124998],[151.875,-89.99892578124998],[150.46875,-89.99892578124998],[149.0625,-89.99892578124998],[147.65625,-89.99892578124998],[146.25,-89.99892578124998],[144.84375,-89.99892578124998],[143.4375,-89.99892578124998],[142.03125,-89.99892578124998],[140.625,-89.99892578124998],[139.21875,-89.99892578124998],[137.8125,-89.99892578124998],[136.40625,-89.99892578124998],[135,-89.99892578124998],[133.59375,-89.99892578124998],[132.1875,-89.99892578124998],[130.78125,-89.99892578124998],[129.375,-89.99892578124998],[127.96875,-89.99892578124998],[126.56240234375004,-89.99892578124998],[125.15625,-89.99892578124998],[123.75,-89.99892578124998],[122.34375,-89.99892578124998],[120.9375,-89.99892578124998],[119.53125,-89.99892578124998],[118.125,-89.99892578124998],[116.71875,-89.99892578124998],[115.3125,-89.99892578124998],[113.90625,-89.99892578124998],[112.5,-89.99892578124998],[111.0938476562501,-89.99892578124998],[109.6875,-89.99892578124998],[108.28125,-89.99892578124998],[106.875,-89.99892578124998],[105.46875,-89.99892578124998],[104.0625,-89.99892578124998],[102.65625,-89.99892578124998],[101.25,-89.99892578124998],[99.84375,-89.99892578124998],[98.4375,-89.99892578124998],[97.03125,-89.99892578124998],[95.625,-89.99892578124998],[94.21875,-89.99892578124998],[92.8125,-89.99892578124998],[91.40625,-89.99892578124998],[90,-89.99892578124998],[88.59375,-89.99892578124998],[87.1875,-89.99892578124998],[85.78125,-89.99892578124998],[84.375,-89.99892578124998],[82.96875,-89.99892578124998],[81.5625,-89.99892578124998],[80.15625,-89.99892578124998],[78.75,-89.99892578124998],[77.34375,-89.99892578124998],[75.9375,-89.99892578124998],[74.53125,-89.99892578124998],[73.125,-89.99892578124998],[71.71875,-89.99892578124998],[70.3125,-89.99892578124998],[68.90625,-89.99892578124998],[67.5,-89.99892578124998],[66.09375,-89.99892578124998],[64.6875,-89.99892578124998],[63.28125,-89.99892578124998],[61.875,-89.99892578124998],[60.46875,-89.99892578124998],[59.0625,-89.99892578124998],[57.65625,-89.99892578124998],[56.25,-89.99892578124998],[54.84375,-89.99892578124998],[53.4375,-89.99892578124998],[52.03125,-89.99892578124998],[50.625,-89.99892578124998],[49.21875,-89.99892578124998],[47.8125,-89.99892578124998],[46.40625,-89.99892578124998],[45,-89.99892578124998],[43.59375,-89.99892578124998],[42.1875,-89.99892578124998],[40.78125,-89.99892578124998],[39.375,-89.99892578124998],[37.96875,-89.99892578124998],[36.5625,-89.99892578124998],[35.15625,-89.99892578124998],[33.75,-89.99892578124998],[32.34375,-89.99892578124998],[30.9375,-89.99892578124998],[29.53125,-89.99892578124998],[28.124902343750023,-89.99892578124998],[26.71875,-89.99892578124998],[25.3125,-89.99892578124998],[23.906152343750048,-89.99892578124998],[22.5,-89.99892578124998],[21.09375,-89.99892578124998],[19.6875,-89.99892578124998],[18.281152343750023,-89.99892578124998],[16.875,-89.99892578124998],[15.46875,-89.99892578124998],[14.0625,-89.99892578124998],[12.65625,-89.99892578124998],[11.25,-89.99892578124998],[9.84375,-89.99892578124998],[8.4375,-89.99892578124998],[7.03125,-89.99892578124998],[5.625,-89.99892578124998],[4.21875,-89.99892578124998],[2.8125,-89.99892578124998],[1.40625,-89.99892578124998],[0,-89.99892578124998],[-1.40625,-89.99892578124998],[-2.8125,-89.99892578124998],[-4.218798828124932,-89.99892578124998],[-5.625048828124989,-89.99892578124998],[-7.03125,-89.99892578124998],[-8.437548828125017,-89.99892578124998],[-9.84379882812496,-89.99892578124998],[-11.250048828124932,-89.99892578124998],[-12.65625,-89.99892578124998],[-14.0625,-89.99892578124998],[-15.46875,-89.99892578124998],[-16.875,-89.99892578124998],[-18.28125,-89.99892578124998],[-19.6875,-89.99892578124998],[-21.09375,-89.99892578124998],[-22.5,-89.99892578124998],[-23.90625,-89.99892578124998],[-25.312548828124932,-89.99892578124998],[-26.71875,-89.99892578124998],[-28.125,-89.99892578124998],[-29.53125,-89.99892578124998],[-30.9375,-89.99892578124998],[-32.34375,-89.99892578124998],[-33.75,-89.99892578124998],[-35.15625,-89.99892578124998],[-36.5625,-89.99892578124998],[-37.96875,-89.99892578124998],[-39.375,-89.99892578124998],[-40.78125,-89.99892578124998],[-42.1875,-89.99892578124998],[-43.59379882812502,-89.99892578124998],[-45,-89.99892578124998],[-46.40625,-89.99892578124998],[-47.8125,-89.99892578124998],[-49.21875,-89.99892578124998],[-50.625,-89.99892578124998],[-52.03125,-89.99892578124998],[-53.43754882812493,-89.99892578124998],[-54.84375,-89.99892578124998],[-56.25,-89.99892578124998],[-57.65625,-89.99892578124998],[-59.0625,-89.99892578124998],[-60.46875,-89.99892578124998],[-61.875,-89.99892578124998],[-63.28125,-89.99892578124998],[-64.6875,-89.99892578124998],[-66.09375,-89.99892578124998],[-67.5,-89.99892578124998],[-68.90625,-89.99892578124998],[-70.3125,-89.99892578124998],[-71.71875,-89.99892578124998],[-73.125,-89.99892578124998],[-74.53125,-89.99892578124998],[-75.9375,-89.99892578124998],[-77.34375,-89.99892578124998],[-78.75,-89.99892578124998],[-80.15625,-89.99892578124998],[-81.5625,-89.99892578124998],[-82.96875,-89.99892578124998],[-84.375,-89.99892578124998],[-85.78125,-89.99892578124998],[-87.1875,-89.99892578124998],[-88.59375,-89.99892578124998],[-90,-89.99892578124998],[-91.40625,-89.99892578124998],[-92.8125,-89.99892578124998],[-94.21875,-89.99892578124998],[-95.625,-89.99892578124998],[-97.03125,-89.99892578124998],[-98.4375,-89.99892578124998],[-99.84375,-89.99892578124998],[-101.25,-89.99892578124998],[-102.65625,-89.99892578124998],[-104.0625,-89.99892578124998],[-105.46875,-89.99892578124998],[-106.875,-89.99892578124998],[-108.28125,-89.99892578124998],[-109.6875,-89.99892578124998],[-111.09375,-89.99892578124998],[-112.5,-89.99892578124998],[-113.90625,-89.99892578124998],[-115.3125,-89.99892578124998],[-116.71875,-89.99892578124998],[-118.125,-89.99892578124998],[-119.53125,-89.99892578124998],[-120.9375,-89.99892578124998],[-122.34375,-89.99892578124998],[-123.75,-89.99892578124998],[-125.15625,-89.99892578124998],[-126.5625,-89.99892578124998],[-127.96875,-89.99892578124998],[-129.375,-89.99892578124998],[-130.78125,-89.99892578124998],[-132.1875,-89.99892578124998],[-133.59375,-89.99892578124998],[-135,-89.99892578124998],[-136.40625,-89.99892578124998],[-137.8125,-89.99892578124998],[-139.21875,-89.99892578124998],[-140.625,-89.99892578124998],[-142.03125,-89.99892578124998],[-143.4375,-89.99892578124998],[-144.84375,-89.99892578124998],[-146.25,-89.99892578124998],[-147.65625,-89.99892578124998],[-149.0625,-89.99892578124998],[-150.46875,-89.99892578124998],[-151.875,-89.99892578124998],[-153.28125,-89.99892578124998],[-154.68754882812493,-89.99892578124998],[-156.09375,-89.99892578124998],[-157.5,-89.99892578124998],[-158.90625,-89.99892578124998],[-160.3125,-89.99892578124998],[-161.71879882812493,-89.99892578124998],[-163.125,-89.99892578124998],[-164.53125,-89.99892578124998],[-165.93754882812502,-89.99892578124998],[-167.343798828125,-89.99892578124998],[-168.75004882812496,-89.99892578124998],[-170.156298828125,-89.99892578124998],[-171.5625,-89.99892578124998],[-172.96875,-89.99892578124998],[-174.375,-89.99892578124998],[-175.78125,-89.99892578124998],[-177.1875,-89.99892578124998],[-178.59375,-89.99892578124998],[-180,-89.99892578124998],[-180,-89.58291015625005],[-180,-89.29296874999996],[-180,-88.58701171875002],[-180,-87.8810546875],[-180,-87.1751953125],[-180,-86.46933593749998],[-180,-85.76337890625004],[-180,-85.05751953125004],[-180,-84.35156250000001],[-178.389501953125,-84.3375],[-178.06904296875,-84.35234374999999],[-177.73041992187498,-84.39521484375001],[-176.98554687499995,-84.39931640625005],[-176.289013671875,-84.41835937500002],[-176.10737304687504,-84.47529296875],[-175.87460937500003,-84.51035156250003],[-175.38100585937502,-84.47978515625],[-174.98671875,-84.46542968750003],[-174.66318359374998,-84.4626953125],[-171.7036621093749,-84.54238281249998],[-168.6677734375,-84.68359374999997],[-168.04858398437494,-84.72861328125],[-167.49218750000003,-84.83369140625],[-166.911083984375,-84.81923828125],[-163.46372070312498,-84.90087890625001],[-162.93339843749996,-84.90117187499999],[-160.82089843749998,-84.98662109374999],[-157.127490234375,-85.18564453125003],[-156.81030273437494,-85.19218750000003],[-156.45913085937502,-85.18603515625001],[-156.6427734375,-85.07939453125005],[-156.98828124999997,-84.98222656249997],[-157.45390625,-84.91240234375005],[-157.14960937499998,-84.89130859375],[-156.48964843750002,-84.88925781250002],[-156.62099609375002,-84.83964843749996],[-156.98632812500003,-84.81113281250002],[-158.30341796875,-84.77802734375003],[-163.56850585937502,-84.52871093750004],[-163.68544921874994,-84.51308593750004],[-163.75898437499998,-84.4927734375],[-163.897021484375,-84.47041015624997],[-164.11416015625,-84.44541015625003],[-164.916845703125,-84.43134765625001],[-165.13535156250003,-84.40986328124997],[-165.2404296875,-84.38125],[-165.18481445312497,-84.36953125000002],[-165.12514648437497,-84.374609375],[-163.89916992187497,-84.35263671874995],[-163.76518554687493,-84.32421875000003],[-163.7576171875,-84.30546875000003],[-163.82138671875003,-84.29052734375001],[-164.03212890624994,-84.2740234375],[-164.52832031249997,-84.19101562499999],[-164.68505859375003,-84.15458984375003],[-164.60283203125,-84.09667968749996],[-164.50253906249998,-84.07158203124997],[-164.12392578125,-84.05351562500005],[-164.011328125,-84.015625],[-164.08291015625002,-83.94609375],[-164.95087890625,-83.80585937500004],[-165.536328125,-83.75664062500005],[-165.92177734375002,-83.79023437500005],[-166.64946289062502,-83.79199218749997],[-167.55288085937497,-83.81083984374997],[-167.801220703125,-83.79082031249999],[-168.052734375,-83.73544921874998],[-168.34736328124998,-83.63681640624998],[-168.49726562499995,-83.61132812500001],[-168.78500976562498,-83.529296875],[-169.16767578125004,-83.44980468749998],[-171.187841796875,-83.2564453125],[-171.53940429687498,-83.20371093750002],[-174.06596679687496,-82.90009765624998],[-174.172021484375,-82.84775390624998],[-174.23593749999998,-82.79345703125],[-173.07114257812498,-82.91582031249999],[-172.851513671875,-82.916796875],[-172.59291992187502,-82.88417968750002],[-172.392041015625,-82.89306640624997],[-172.12436523437503,-82.86240234375003],[-171.8212890625,-82.8474609375],[-171.03129882812502,-82.94296875],[-169.44077148437498,-83.09599609375002],[-169.01606445312493,-83.15029296875005],[-168.79013671875003,-83.187890625],[-168.603759765625,-83.2015625],[-168.41767578125,-83.22880859374997],[-168.191015625,-83.21328125000002],[-168.05473632812496,-83.22656249999996],[-167.72426757812497,-83.21738281249995],[-166.21689453125,-83.20078125000005],[-165.619189453125,-83.21552734375003],[-164.915625,-83.29003906250003],[-164.6443359375,-83.4125],[-164.445556640625,-83.46767578125007],[-164.0583984375,-83.42470703125001],[-163.73339843749994,-83.37304687499997],[-163.111083984375,-83.32910156249999],[-162.91206054687504,-83.34707031250001],[-162.57416992187504,-83.41064453124997],[-162.19726562499997,-83.51894531250002],[-160.5947265625,-83.48955078124997],[-159.92353515625007,-83.49472656249998],[-159.44438476562496,-83.54316406249998],[-157.69926757812496,-83.38125],[-157.42846679687491,-83.34638671875004],[-157.02778320312504,-83.234375],[-157.35581054687498,-83.19843750000001],[-157.58920898437503,-83.18740234374998],[-157.67949218750002,-83.1294921875],[-157.521875,-83.10664062500005],[-157.01826171875004,-83.07519531250004],[-156.03701171874997,-83.02685546874996],[-155.459423828125,-82.98076171874997],[-155.15024414062498,-82.85839843750001],[-153.82226562499997,-82.66933593750005],[-153.3986328125,-82.58623046874999],[-153.00986328125,-82.44960937500005],[-153.88261718750002,-82.17656250000002],[-154.717431640625,-81.94072265625002],[-154.45146484374996,-81.86757812500004],[-154.18847656249997,-81.81054687499997],[-154.06137695312503,-81.76542968750002],[-153.95664062499995,-81.70019531249994],[-154.23208007812494,-81.6232421875],[-154.48515625000002,-81.56621093750002],[-154.90781249999998,-81.5103515625],[-156.49257812499997,-81.37695312499999],[-157.03251953125002,-81.31914062500005],[-156.81508789062497,-81.23095703125001],[-156.52822265624997,-81.16230468749998],[-155.921142578125,-81.13339843750002],[-152.03476562499998,-81.02900390625],[-148.12275390625004,-80.90078125],[-148.02343749999994,-80.83574218749997],[-148.54296875000003,-80.76005859375],[-148.98417968750005,-80.74150390625005],[-149.14716796875,-80.71865234375001],[-149.207421875,-80.67041015625003],[-149.21406249999993,-80.60419921875005],[-149.26440429687497,-80.59306640625],[-149.42861328124997,-80.58623046875003],[-150.13276367187498,-80.51044921875003],[-150.28168945312504,-80.48046874999996],[-150.51611328125,-80.40947265624999],[-150.575390625,-80.35371093750001],[-150.43544921875002,-80.21103515624998],[-150.22070312499994,-80.15],[-149.84536132812497,-80.11767578124997],[-149.57763671874991,-80.10595703124997],[-148.766064453125,-80.10810546874997],[-148.44799804687506,-80.09052734375003],[-148.31713867187503,-80.07099609375004],[-148.339794921875,-80.00273437499999],[-148.43027343749998,-79.97128906249998],[-148.43349609375002,-79.92949218749997],[-148.296435546875,-79.90654296875002],[-148.12929687499997,-79.90771484374999],[-148.082958984375,-79.85673828125002],[-148.17651367187497,-79.77587890624997],[-148.41748046875006,-79.73144531249996],[-149.05141601562494,-79.65693359374998],[-150.490625,-79.54560546875004],[-151.04843750000003,-79.45966796875001],[-151.36826171874998,-79.39335937500002],[-151.63613281250002,-79.31767578125005],[-151.90356445312497,-79.28056640625005],[-152.09140624999998,-79.24160156250001],[-152.05341796875004,-79.19277343750001],[-152.13769531249997,-79.11591796874998],[-152.24350585937503,-79.10273437500005],[-152.70136718749995,-79.13486328125002],[-153.517578125,-79.11728515625],[-154.517724609375,-79.04658203124998],[-155.20991210937495,-78.96484375000003],[-156.11455078125,-78.74462890625001],[-156.46933593750003,-78.63535156250003],[-156.20791015624997,-78.55869140624998],[-155.91977539062498,-78.51035156249998],[-154.71640624999998,-78.39814453125004],[-154.53764648437496,-78.35888671875003],[-154.29301757812496,-78.25908203125003],[-154.69506835937497,-78.21699218749998],[-155.03662109375,-78.22080078124998],[-155.34150390625004,-78.19199218749996],[-156.56923828124997,-78.1861328125],[-157.26679687499995,-78.19980468750002],[-157.84804687499997,-78.07392578124998],[-158.285888671875,-77.95078125000003],[-158.40693359374998,-77.88779296874998],[-158.50039062500002,-77.77832031249997],[-158.35141601562503,-77.61484374999998],[-158.22998046874997,-77.49765624999998],[-158.24648437499997,-77.35429687500002],[-158.21357421875,-77.15712890625],[-158.00307617187497,-77.09121093750005],[-157.842041015625,-77.07919921874999],[-157.46538085937502,-77.23125],[-157.13930664062502,-77.24208984375007],[-156.66767578125004,-77.21298828125],[-156.36821289062496,-77.13476562499996],[-156.21123046874993,-77.10566406249998],[-155.91958007812497,-77.09804687500002],[-155.358837890625,-77.13330078125001],[-155.10175781250007,-77.11953125000005],[-154.81494140624994,-77.12695312499996],[-153.9099609375,-77.226953125],[-153.71259765625,-77.27421875000005],[-153.606103515625,-77.31015624999996],[-153.573046875,-77.36308593750002],[-153.46059570312502,-77.41601562499997],[-153.07695312500002,-77.44248046875003],[-151.99838867187503,-77.41259765624999],[-151.71899414062503,-77.42587890625003],[-150.956396484375,-77.57353515624999],[-150.30556640625002,-77.73144531250001],[-150.08432617187498,-77.77099609375],[-149.71772460937498,-77.79746093749996],[-149.58847656250003,-77.77421875000002],[-149.4740234375,-77.71484375],[-149.12597656249994,-77.64267578124995],[-148.33994140624998,-77.55117187500005],[-148.155712890625,-77.4623046875],[-148.259814453125,-77.41259765624999],[-148.55927734374995,-77.36132812500003],[-148.74438476562503,-77.34326171874996],[-148.84360351562498,-77.28369140625001],[-148.83901367187502,-77.20234375000004],[-148.77749023437502,-77.125],[-148.57241210937497,-77.10507812500003],[-148.19633789062502,-77.21132812500002],[-147.730224609375,-77.309765625],[-147.56640625000003,-77.32529296874996],[-147.44228515624997,-77.320703125],[-147.20722656250004,-77.28583984375001],[-146.92758789062495,-77.25986328125003],[-146.390625,-77.4724609375],[-146.07363281250002,-77.48671875],[-145.67714843749997,-77.48808593749999],[-145.60063476562502,-77.45527343749998],[-145.64965820312497,-77.39833984375001],[-145.71381835937498,-77.33837890624997],[-145.79428710937503,-77.32998046875002],[-145.80795898437498,-77.27324218750002],[-145.63457031249996,-77.2212890625],[-145.51572265625003,-77.19921875000003],[-145.56318359375,-77.16171875000003],[-145.753125,-77.10332031250005],[-145.864306640625,-77.094140625],[-145.96699218749993,-77.06875],[-145.93393554687495,-77.02900390625],[-145.80634765625,-77.01210937500002],[-145.62924804687498,-76.95371093750002],[-145.68569335937502,-76.88447265625004],[-145.67568359374997,-76.7966796875],[-145.75048828125,-76.74902343749997],[-146.166455078125,-76.65761718750001],[-146.77666015625,-76.50703124999997],[-147.34042968749998,-76.43837890625002],[-148.60107421874994,-76.49326171875],[-149.04584960937495,-76.45800781250003],[-149.33964843749996,-76.41894531249997],[-149.654248046875,-76.36533203124998],[-149.2849609375,-76.31123046875004],[-148.89482421874993,-76.27177734375],[-148.78037109374998,-76.23828125000003],[-148.631787109375,-76.16796875],[-148.45898437499997,-76.11796875000002],[-148.32031249999994,-76.10449218750003],[-147.86020507812503,-76.13085937499999],[-146.817333984375,-76.31806640625001],[-146.59741210937497,-76.33779296875005],[-145.8857421875,-76.42431640625],[-145.686865234375,-76.42880859375002],[-145.44208984374995,-76.40917968750001],[-145.64233398437497,-76.32568359374996],[-145.860400390625,-76.26660156250001],[-146.38300781249998,-76.09970703125003],[-146.32348632812503,-76.02031250000002],[-145.98774414062498,-75.88876953125005],[-145.10551757812496,-75.87890625],[-144.72128906250003,-75.83212890624996],[-144.22060546874997,-75.73144531249997],[-143.57426757812502,-75.56357421874996],[-143.02216796874998,-75.54345703125004],[-142.329833984375,-75.49091796875],[-142.094189453125,-75.52978515625],[-141.50571289062503,-75.69042968749997],[-141.13461914062503,-75.74599609375],[-141.008984375,-75.75078125],[-140.87431640625002,-75.74589843749997],[-141.22333984374998,-75.5458984375],[-140.99873046874995,-75.52001953124997],[-140.70927734375,-75.49765625000003],[-140.47099609375,-75.44726562499999],[-140.29379882812498,-75.40585937499998],[-139.69116210937503,-75.21279296875],[-139.148828125,-75.16015625000003],[-137.61816406250003,-75.07558593750002],[-137.09013671875002,-75.15263671874999],[-136.649853515625,-75.16171874999998],[-136.54951171875,-75.13945312499999],[-136.4619140625,-75.03583984375001],[-136.22783203125005,-74.83603515624996],[-136.030078125,-74.76533203124997],[-135.36206054687506,-74.69042968749999],[-134.840380859375,-74.69414062500003],[-134.465087890625,-74.77617187500005],[-134.11713867187498,-74.82968750000002],[-133.796337890625,-74.85458984375003],[-133.47485351562497,-74.85185546875002],[-132.991650390625,-74.80615234375003],[-132.35126953125004,-74.78935546874997],[-132.049365234375,-74.76572265625005],[-131.70654296874994,-74.8109375],[-130.857470703125,-74.82597656249997],[-130.19560546875,-74.890625],[-129.79082031249993,-74.89140624999999],[-129.23828125,-74.82890625000005],[-128.940625,-74.82021484375005],[-127.86337890625003,-74.71923828124999],[-127.02021484375003,-74.69785156249998],[-126.38398437499998,-74.74257812500004],[-125.35341796875,-74.71464843750003],[-124.31245117187503,-74.73574218749998],[-123.88945312499999,-74.77304687500003],[-121.5439453125,-74.75],[-119.67700195312497,-74.65458984375005],[-119.422216796875,-74.62158203125],[-119.02241210937503,-74.51787109375],[-118.80292968749998,-74.42226562500007],[-118.65576171875001,-74.39277343750001],[-118.34204101562496,-74.38154296875003],[-117.80620117187495,-74.40292968750003],[-117.06831054687501,-74.47324218749998],[-116.43300781249998,-74.44707031250005],[-115.22260742187494,-74.48740234374999],[-115.10517578125,-74.455078125],[-114.99101562500003,-74.275],[-114.79101562499993,-73.98857421874999],[-114.62373046874995,-73.90292968750003],[-114.34594726562496,-73.925],[-113.50849609374997,-74.0888671875],[-113.48940429687498,-74.15839843750004],[-113.57465820312493,-74.20791015625],[-113.71357421875,-74.22773437500004],[-113.75327148437499,-74.36669921875003],[-113.64082031250001,-74.40634765625002],[-113.45424804687501,-74.39423828125004],[-113.332958984375,-74.45419921875],[-113.59731445312494,-74.55878906249998],[-113.78310546874995,-74.6181640625],[-113.90346679687497,-74.64443359375002],[-113.984765625,-74.84296874999998],[-114.09721679687499,-74.90908203125002],[-114.11044921874993,-74.98183593750002],[-113.93183593749997,-74.98183593750002],[-113.75253906249995,-74.95214843750001],[-113.59340820312494,-74.94365234375005],[-113.09150390625001,-74.89169921875003],[-112.17001953124995,-74.83222656250001],[-111.86821289062502,-74.801171875],[-111.69624023437495,-74.79218750000001],[-111.58442382812501,-74.75087890625005],[-111.738720703125,-74.65341796874999],[-111.78872070312498,-74.57167968750004],[-111.69589843749999,-74.50410156250004],[-111.72226562499995,-74.38662109375],[-111.80634765625003,-74.26972656249998],[-111.62998046874996,-74.18144531250003],[-111.46679687499994,-74.20078124999998],[-111.18017578125,-74.18808593749996],[-111.01982421875002,-74.23046874999997],[-110.77041015625,-74.2689453125],[-110.53393554687497,-74.28886718749997],[-110.30708007812503,-74.36669921875003],[-110.22978515625,-74.53632812500004],[-110.300439453125,-74.71064453125001],[-110.53193359375001,-74.83632812500005],[-110.96757812500003,-74.95126953125],[-111.46313476562499,-75.13339843749999],[-111.35878906249997,-75.21992187500004],[-111.10419921874995,-75.19082031250005],[-109.989990234375,-75.19912109375005],[-109.27216796874995,-75.18505859375003],[-108.82226562499996,-75.20664062499999],[-108.25449218750002,-75.2525390625],[-107.80473632812496,-75.32158203125005],[-107.26679687499997,-75.33447265625],[-106.93212890625,-75.309375],[-106.61884765624993,-75.34394531249998],[-105.39936523437501,-75.19765625000002],[-104.90185546874999,-75.11513671875],[-104.61782226562495,-75.15625],[-104.15966796874996,-75.12070312499996],[-103.901318359375,-75.15253906249998],[-103.42490234375002,-75.10126953125001],[-103.12104492187503,-75.09521484375003],[-102.771337890625,-75.11699218750002],[-101.70810546874993,-75.12734375],[-101.62783203125002,-75.22177734374996],[-101.30371093749997,-75.3658203125],[-101.03935546874995,-75.421875],[-100.70634765624996,-75.39814453125001],[-100.46342773437495,-75.35341796875005],[-100.08281249999993,-75.37041015625005],[-99.53134765624995,-75.30898437500005],[-98.98022460937501,-75.32744140624999],[-98.75234374999997,-75.31708984375001],[-98.64570312499997,-75.27714843750005],[-98.55786132812494,-75.18974609375002],[-98.72724609374998,-75.14082031249998],[-99.208154296875,-75.078515625],[-99.65190429687499,-74.94882812500005],[-99.84858398437498,-74.92167968750002],[-100.16406249999997,-74.93789062500002],[-100.31298828125003,-74.91435546875005],[-100.47333984375001,-74.87236328125002],[-100.264892578125,-74.82294921874998],[-100.01269531249996,-74.66210937499999],[-100.11860351562494,-74.51503906250005],[-100.23813476562495,-74.48417968749997],[-100.53085937499999,-74.48886718750003],[-100.8818359375,-74.54111328125002],[-101.02314453125001,-74.50498046875003],[-101.25170898437496,-74.48574218750002],[-101.34277343750001,-74.35009765625001],[-101.58671874999999,-74.09638671875001],[-101.71542968749999,-74.02373046875005],[-102.105126953125,-73.95771484375001],[-102.4408203125,-73.92578124999999],[-102.76645507812499,-73.88378906249997],[-102.86274414062498,-73.78359375],[-102.79951171874998,-73.64570312500004],[-102.41064453124999,-73.61640625000003],[-102.03662109374997,-73.63056640624998],[-101.82836914062501,-73.65546874999998],[-101.58740234374996,-73.66679687499999],[-101.31074218749997,-73.69521484375],[-101.13022460937498,-73.73486328125],[-100.98544921874998,-73.75722656250002],[-100.71777343749997,-73.75781249999997],[-99.781103515625,-73.72011718750001],[-99.65615234374997,-73.69414062500003],[-99.54101562499996,-73.6451171875],[-99.34335937500002,-73.6341796875],[-99.1619140625,-73.64082031250003],[-98.89614257812494,-73.61113281250002],[-99.200341796875,-73.57099609375001],[-99.52792968749996,-73.4951171875],[-100.02080078125,-73.40253906249998],[-100.43637695312493,-73.353125],[-101.18945312499996,-73.31787109374996],[-101.57373046875,-73.32958984375003],[-101.81596679687496,-73.31123046875003],[-102.67504882812503,-73.32089843750003],[-102.90878906249993,-73.28515625000004],[-103.07617187500001,-73.18457031249997],[-103.30771484374995,-72.9453125],[-103.375,-72.81884765624999],[-103.21660156249995,-72.77207031249996],[-103.11010742187501,-72.72119140624999],[-102.855859375,-72.71621093750004],[-102.48476562499997,-72.73564453125],[-102.36289062500002,-72.76015625000002],[-102.27202148437497,-72.83496093749999],[-102.36293945312494,-72.91142578125002],[-102.48203124999996,-72.95117187500003],[-102.40927734374995,-72.98740234375003],[-102.028857421875,-72.99814453125],[-101.84150390625003,-73.02089843750002],[-101.68120117187496,-73.02988281249999],[-101.33183593749993,-72.99541015624999],[-100.82050781249994,-72.98115234375001],[-100.56357421875,-73.01552734375],[-100.25878906249999,-73.04130859375002],[-99.81074218750001,-72.99990234375001],[-98.20859375000003,-73.02226562500005],[-98.01240234374993,-73.03320312499996],[-97.81850585937497,-73.10175781249998],[-97.65102539062494,-73.14443359375005],[-97.47646484375,-73.12626953125],[-96.95576171874995,-73.2064453125],[-96.67583007812496,-73.26855468750003],[-96.39423828124995,-73.30117187500002],[-96.15214843749993,-73.30927734374998],[-95.88056640624995,-73.29384765625002],[-95.52924804687495,-73.24140625000001],[-95.23662109374993,-73.22011718750002],[-95.02958984374996,-73.23896484375004],[-94.58647460937499,-73.24951171874997],[-94.24619140624993,-73.31298828125003],[-93.98466796874996,-73.28671875],[-93.70595703124994,-73.21503906249997],[-92.82836914062503,-73.1646484375],[-92.241015625,-73.17841796874997],[-91.16865234374995,-73.30703125000005],[-90.92094726562502,-73.31914062500005],[-90.430908203125,-73.24326171875003],[-90.27377929687498,-73.11865234374994],[-90.29541015625003,-72.97792968749998],[-90.15244140625003,-72.94453125000001],[-90.03520507812496,-72.96015625],[-89.81767578124996,-72.86259765625002],[-89.52236328125002,-72.87089843750002],[-89.34125976562498,-72.88955078125],[-89.22939453125002,-72.82578124999998],[-89.12714843749995,-72.69316406250005],[-88.77998046874993,-72.68300781250002],[-88.52690429687499,-72.70234374999997],[-88.19409179687494,-72.7875],[-88.19453124999995,-72.85859375000001],[-88.33173828125001,-72.934375],[-88.56074218749995,-73.12070312500002],[-88.41938476562493,-73.22900390624997],[-88.20498046874992,-73.21953124999999],[-87.93632812500002,-73.24091796875],[-87.60844726562502,-73.19453125000005],[-87.40102539062494,-73.19199218749998],[-87.03793945312495,-73.35390625000002],[-86.79101562499999,-73.36367187500004],[-86.60214843749998,-73.35371093749998],[-85.98076171874996,-73.20849609374997],[-85.80141601562502,-73.19208984375],[-85.58217773437492,-73.25898437500004],[-85.26059570312498,-73.41328125000004],[-84.98120117187496,-73.50205078125],[-84.57128906249997,-73.55673828125003],[-84.21416015624996,-73.57275390625],[-83.7962890625,-73.6451171875],[-83.56484375,-73.70595703125005],[-83.04189453124995,-73.70722656250005],[-82.81523437499996,-73.73232421875002],[-82.18349609374997,-73.85683593749998],[-81.60610351562501,-73.79570312500005],[-81.308740234375,-73.73828124999999],[-81.16318359375,-73.632421875],[-81.23598632812502,-73.47373046875],[-81.26240234374998,-73.31494140624997],[-81.17641601562497,-73.24882812500002],[-81.02431640624997,-73.23554687499997],[-80.33637695312498,-73.41416015625003],[-80.37983398437495,-73.30810546875],[-80.43876953124996,-73.225],[-80.61420898437501,-73.08339843750005],[-80.58774414062503,-72.97763671875],[-80.44223632812495,-72.94453125000001],[-80.15175781250002,-73.00009765624996],[-79.80800781249997,-73.028125],[-79.521728515625,-73.08955078124998],[-78.963720703125,-73.31240234375],[-78.78623046875,-73.50673828125007],[-78.40786132812502,-73.55576171875],[-78.14414062500002,-73.54707031250001],[-77.84560546874997,-73.51503906249998],[-77.44404296874995,-73.48798828124998],[-77.13554687499999,-73.49580078124997],[-76.85048828125,-73.46044921874994],[-76.76450195312498,-73.56630859375002],[-77.03300781249996,-73.71845703125004],[-77.13491210937494,-73.81767578124999],[-77.04892578124999,-73.84414062500005],[-76.8875,-73.82050781250004],[-76.75498046874998,-73.78945312500002],[-76.29121093750001,-73.80537109374998],[-75.91621093749998,-73.73642578124996],[-75.59501953125002,-73.71123046874999],[-75.29306640624995,-73.63876953124995],[-75.04355468750002,-73.6451171875],[-74.85546874999997,-73.65800781249997],[-74.59404296875002,-73.715234375],[-74.34526367187496,-73.68388671875],[-74.19731445312502,-73.69550781249998],[-73.99604492187495,-73.69980468749996],[-72.92919921874994,-73.44794921874998],[-72.68740234375,-73.45234375],[-72.38081054687494,-73.43837890625],[-71.99418945312497,-73.37919921875002],[-71.69755859374993,-73.35302734375001],[-71.45273437499998,-73.35449218749996],[-71.01718749999998,-73.26279296875],[-70.32265624999997,-73.27402343749999],[-69.96860351562495,-73.22646484375],[-69.2822265625,-73.16962890625004],[-68.820947265625,-73.10546875000003],[-68.00034179687498,-72.93554687499996],[-67.66708984375003,-72.83457031249999],[-67.30673828124998,-72.61113281250005],[-67.07954101562498,-72.38759765625005],[-66.827734375,-72.0904296875],[-66.95166015624994,-71.89726562499999],[-67.08413085937502,-71.81220703124998],[-67.19575195312493,-71.7189453125],[-67.46035156250002,-71.52675781250001],[-67.529931640625,-71.28457031250005],[-67.50458984374998,-71.05781250000004],[-67.59838867187497,-70.84462890625005],[-67.69218749999999,-70.68613281249999],[-67.88847656250002,-70.42167968750003],[-68.12568359374993,-70.24990234375002],[-68.4033203125,-70.01972656250004],[-68.403662109375,-69.80917968750003],[-68.46982421874998,-69.64384765625002],[-68.63754882812503,-69.52636718749997],[-68.70795898437498,-69.43222656249998],[-68.58002929687495,-69.4126953125],[-68.46152343749996,-69.38398437500001],[-68.140869140625,-69.34755859375005],[-67.37177734375001,-69.41230468750001],[-67.30434570312494,-69.31757812499998],[-67.11044921874998,-69.24804687500003],[-66.97490234374996,-69.16103515625007],[-67.021240234375,-69.02871093750002],[-67.18759765624995,-68.97441406250006],[-67.39052734374998,-68.86123046874998],[-67.2990234375,-68.77070312500004],[-67.13369140625,-68.77070312500004],[-67.05429687499996,-68.67148437499998],[-67.11689453124994,-68.5748046875],[-67.04101562500003,-68.453125],[-66.89350585937501,-68.29765625000002],[-66.79335937500002,-68.24042968750001],[-66.97758789062497,-68.14677734375],[-67.14985351562501,-68.02460937500001],[-67.106689453125,-67.93007812500002],[-67.02128906250002,-67.8314453125],[-66.915380859375,-67.69257812500004],[-66.76987304687503,-67.59335937499996],[-66.67724609375,-67.56025390624998],[-66.70498046874997,-67.52714843749999],[-66.92314453124999,-67.49160156250002],[-67.12431640624996,-67.48505859375004],[-67.4869140625,-67.54697265625003],[-67.54453125000003,-67.53466796875003],[-67.56474609374996,-67.50292968750003],[-67.58579101562499,-67.43515625],[-67.55039062499996,-67.26923828125004],[-67.49335937499997,-67.11279296874996],[-67.44047851562496,-67.09072265625],[-67.2990234375,-67.07080078125001],[-67.16015624999997,-66.9517578125],[-67.03447265624993,-66.94511718749999],[-66.95507812500003,-66.984765625],[-66.92861328124997,-67.1435546875],[-66.8861328125,-67.17998046875006],[-66.90214843749997,-67.25595703124998],[-66.83603515624999,-67.28242187499997],[-66.75732421874997,-67.23251953125],[-66.61000976562497,-67.20859375000003],[-66.5515625,-67.26259765625002],[-66.49868164062494,-67.28906249999997],[-66.47221679687496,-67.24277343749998],[-66.49096679687497,-67.1142578125],[-66.51513671875,-67.0625],[-66.53330078124998,-66.97929687500003],[-66.50209960937501,-66.94013671875004],[-66.46469726562503,-66.87519531250004],[-66.52680664062498,-66.74072265625],[-66.50361328124998,-66.68984375000004],[-66.37089843749993,-66.60888671874997],[-66.30654296874997,-66.5919921875],[-66.18188476562496,-66.59248046875001],[-65.95375976562494,-66.64560546874999],[-65.84746093749996,-66.64980468750005],[-65.76640625,-66.62490234375004],[-65.71796874999995,-66.5732421875],[-65.678466796875,-66.402734375],[-65.77578125000002,-66.34257812499999],[-65.77451171875003,-66.28798828125005],[-65.71748046874995,-66.25449218749996],[-65.61728515624998,-66.13525390625003],[-65.46508789062497,-66.12929687500005],[-65.31635742187495,-66.13984374999998],[-65.17202148437494,-66.116796875],[-65.22207031250002,-66.06845703125],[-65.26748046875002,-65.99423828124998],[-65.10507812499998,-65.95791015625005],[-64.99873046874998,-65.94628906249999],[-64.72167968750003,-65.99277343750003],[-64.61352539062503,-66.01904296874997],[-64.51430664062497,-65.95957031250002],[-64.54736328124994,-65.9],[-64.65322265624994,-65.86689453124998],[-64.67304687499998,-65.81406249999996],[-64.64658203124999,-65.74785156249996],[-64.47460937499997,-65.78095703124995],[-64.43535156249996,-65.76835937499997],[-64.39003906249997,-65.70849609375003],[-64.41679687499997,-65.67988281249998],[-64.43891601562498,-65.640625],[-64.21347656249998,-65.63291015625],[-64.17998046874997,-65.61738281250004],[-64.13222656250002,-65.57050781249998],[-64.06591796875003,-65.55371093750003],[-63.86220703124999,-65.55595703125005],[-63.81811523437497,-65.53154296875005],[-63.79794921874994,-65.48037109375001],[-63.90800781249998,-65.46738281250003],[-64.05126953124997,-65.41718750000001],[-64.07109375000002,-65.27822265625005],[-64.03803710937491,-65.17900390624999],[-63.91240234375001,-65.09306640624999],[-63.76025390624999,-65.03349609375002],[-63.48212890625001,-65.0849609375],[-63.26416015624999,-65.07314453125001],[-63.178125,-65.12607421875003],[-63.05908203124997,-65.13935546875],[-63.032617187499994,-65.07978515625003],[-63.085693359374964,-65.02792968750003],[-63.11987304687502,-64.94248046875003],[-62.77465820312503,-64.84169921875002],[-62.66450195312498,-64.85751953125003],[-62.52753906249995,-64.83339843750002],[-62.57622070312502,-64.75566406249999],[-62.503466796874925,-64.65644531250003],[-62.404248046874976,-64.64326171875001],[-62.338085937499976,-64.72919921875001],[-62.243310546874966,-64.746875],[-62.13964843749997,-64.72675781250004],[-61.88251953125001,-64.62539062499998],[-61.75639648437497,-64.60986328125003],[-61.63178710937498,-64.60468750000004],[-61.50048828124997,-64.54560546875001],[-61.47001953124998,-64.47558593750003],[-61.395947265624976,-64.42714843750002],[-61.173583984375,-64.3625],[-61.082128906250006,-64.31474609375005],[-60.886621093749966,-64.14970703124997],[-60.92207031249998,-64.10791015625],[-60.864160156250016,-64.0734375],[-60.277246093749994,-63.923925781250006],[-59.98984374999998,-63.9095703125],[-59.51015624999994,-63.82070312500002],[-59.217578124999925,-63.71386718750002],[-59.03642578124999,-63.67031250000003],[-58.87207031249997,-63.55185546874996],[-58.67353515624995,-63.534375],[-58.215576171875,-63.45126953124999],[-57.868066406249994,-63.31875],[-57.389648437499936,-63.22626953124998],[-57.16826171874996,-63.234765625000016],[-57.07670898437496,-63.2625],[-57.020654296874994,-63.3728515625]]],[[[-55.52802734374995,-63.17353515624998],[-55.46625976562498,-63.19960937499997],[-55.215527343749955,-63.198632812500044],[-55.15625,-63.20478515625004],[-55.10644531250003,-63.24931640625006],[-55.07519531249997,-63.32431640624997],[-55.15678710937499,-63.353125],[-55.593652343749994,-63.33583984375001],[-55.75019531249998,-63.296679687500024],[-55.83046875,-63.29843750000002],[-56.00913085937498,-63.34150390625002],[-56.08300781250002,-63.38261718750004],[-56.378515625,-63.43730468749998],[-56.462841796874955,-63.41806640624998],[-56.49902343749997,-63.3576171875],[-56.505322265625004,-63.334277343750045],[-56.47534179687503,-63.31826171874997],[-56.460546875000034,-63.301953125000026],[-56.46596679687496,-63.28349609375],[-56.385107421875034,-63.23408203124997],[-56.042187499999976,-63.157128906250016],[-55.58964843749995,-63.12832031250001],[-55.528710937499994,-63.15683593750005],[-55.52802734374995,-63.17353515624998]]],[[[-56.059960937499966,-63.07851562499999],[-56.25898437499998,-63.173144531249996],[-56.354101562500006,-63.168847656250016],[-56.54584960937498,-63.098339843750026],[-56.60053710937495,-63.061621093750006],[-56.614160156249966,-63.04511718750002],[-56.48857421874996,-62.982226562499996],[-56.140380859375,-63.00527343749999],[-56.06176757812497,-63.0126953125],[-56.058447265625006,-63.01855468750003],[-56.051025390625,-63.054687500000014],[-56.059960937499966,-63.07851562499999]]],[[[-60.5048828125,-62.9673828125],[-60.55468750000002,-62.97753906250002],[-60.619726562499956,-62.969042968749974],[-60.61772460937499,-62.98662109375001],[-60.563671874999976,-63.00898437500003],[-60.6216796875,-63.01796875],[-60.692919921874925,-62.99570312499999],[-60.740429687499926,-62.948632812499994],[-60.70585937499999,-62.90556640625001],[-60.63740234375001,-62.89521484375004],[-60.5048828125,-62.9673828125]]],[[[-62.615087890625034,-63.069335937499986],[-62.65527343749994,-63.07382812500001],[-62.638867187499976,-63.03193359375],[-62.527050781249955,-62.923828125],[-62.31743164062495,-62.874121093750006],[-62.34404296874996,-62.91777343750002],[-62.41147460937504,-62.97158203124996],[-62.615087890625034,-63.069335937499986]]],[[[-60.625,-62.560058593749964],[-60.57631835937499,-62.57265624999996],[-60.13989257812497,-62.54873046874997],[-60.00273437500002,-62.618457031250045],[-59.84956054687498,-62.61494140625004],[-60.22094726562497,-62.74541015624998],[-60.32158203124996,-62.70751953124999],[-60.35380859374996,-62.67919921874999],[-60.378027343750006,-62.61650390625001],[-60.61962890625002,-62.633398437499984],[-60.696923828124966,-62.62070312499997],[-60.79589843749997,-62.66230468750002],[-60.995068359374955,-62.67910156249997],[-61.063330078125,-62.678906250000026],[-61.14980468749993,-62.63417968749998],[-61.152392578124925,-62.58906250000002],[-60.97470703124998,-62.59169921875002],[-60.83774414062495,-62.533691406250014],[-60.79926757812493,-62.47519531249999],[-60.73183593749997,-62.491015625000024],[-60.625,-62.560058593749964]]],[[[-59.38901367187495,-62.444335937500014],[-59.525244140625,-62.451464843750045],[-59.61943359374998,-62.39501953125],[-59.66069335937497,-62.35429687499997],[-59.478515624999964,-62.35214843749997],[-59.395849609375006,-62.36728515625004],[-59.35336914062498,-62.41289062500001],[-59.38901367187495,-62.444335937500014]]],[[[-58.83793945312496,-62.30253906249999],[-59.05942382812495,-62.34775390624997],[-59.17456054687498,-62.301757812500014],[-59.20244140624996,-62.28310546874994],[-59.06381835937494,-62.239062500000024],[-58.990625,-62.24921874999996],[-58.962109374999926,-62.263867187500026],[-58.878662109375,-62.26787109375004],[-58.83793945312496,-62.30253906249999]]],[[[-57.97841796874999,-61.911914062499996],[-57.849316406249976,-61.93994140625002],[-57.737988281249955,-61.921191406250024],[-57.67656249999995,-61.94208984375002],[-57.63652343749996,-61.9982421875],[-57.639550781249966,-62.02041015624999],[-57.80668945312499,-62.01191406250003],[-57.962744140625,-62.077539062499994],[-58.14755859374998,-62.06347656249996],[-58.17221679687495,-62.11777343750001],[-58.13310546874999,-62.14580078125004],[-58.18300781250002,-62.17001953124999],[-58.341455078124966,-62.11943359374999],[-58.46665039062497,-62.13720703124998],[-58.50732421875,-62.22568359374996],[-58.561962890624955,-62.24394531250005],[-58.59404296874998,-62.247753906250026],[-58.64399414062495,-62.225195312499956],[-58.74570312499997,-62.21787109374998],[-58.75532226562499,-62.20605468749998],[-58.819042968750004,-62.171289062499994],[-59.00371093749996,-62.20976562500002],[-58.955224609374966,-62.16425781249998],[-58.70952148437499,-62.04472656250005],[-58.68359374999994,-62.00820312499999],[-58.39946289062495,-61.93828125000004],[-58.26518554687496,-61.95332031249999],[-57.97841796874999,-61.911914062499996]]],[[[-54.070703124999966,-61.29912109375003],[-54.115429687500004,-61.30849609374999],[-54.18388671875002,-61.26972656249999],[-54.192236328125034,-61.24658203124998],[-54.12197265625002,-61.201757812500006],[-54.04990234374998,-61.142089843750014],[-54.02431640625002,-61.13525390624996],[-54.04130859375002,-61.25537109375],[-54.070703124999966,-61.29912109375003]]],[[[-55.165429687499966,-61.220410156249976],[-55.297021484374966,-61.24853515625003],[-55.346923828125,-61.21162109374997],[-55.369140625,-61.14638671875],[-55.44023437499999,-61.106152343749976],[-55.38701171874999,-61.07265624999999],[-54.67099609374995,-61.116992187500045],[-54.7099609375,-61.13974609374998],[-55.05761718750003,-61.16865234375001],[-55.165429687499966,-61.220410156249976]]],[[[-45.71777343749999,-60.52089843750003],[-45.49970703124998,-60.54648437499999],[-45.38627929687496,-60.58271484375002],[-45.35742187499994,-60.62382812500004],[-45.228125,-60.639746093749984],[-45.21098632812496,-60.64814453125001],[-45.186376953125006,-60.671875],[-45.1728515625,-60.698730468750014],[-45.173681640625006,-60.73300781249999],[-45.39804687499997,-60.64970703124998],[-45.709179687499926,-60.64541015624999],[-45.78002929687497,-60.586035156249984],[-45.93730468749996,-60.61992187500003],[-45.954785156249955,-60.597460937499996],[-45.95629882812499,-60.568359375000014],[-45.93481445312497,-60.52656250000002],[-45.83417968750001,-60.54345703125001],[-45.71777343749999,-60.52089843750003]]]]}}]} \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/resources/polygons/countriesMD.json b/GlobalQuakeCore/src/main/resources/polygons/countriesMD.json deleted file mode 100644 index fbc41e9..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons/countriesMD.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Albania","sov_a3":"ALB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Albania","adm0_a3":"ALB","geou_dif":0,"geounit":"Albania","gu_a3":"ALB","su_dif":0,"subunit":"Albania","su_a3":"ALB","brk_diff":0,"name":"Albania","name_long":"Albania","brk_a3":"ALB","brk_name":"Albania","brk_group":null,"abbrev":"Alb.","postal":"AL","formal_en":"Republic of Albania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Albania","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":3639453,"gdp_md_est":21810,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AL","iso_a3":"ALB","iso_n3":"008","un_a3":"008","wb_a2":"AL","wb_a3":"ALB","woe_id":-99,"adm0_a3_is":"ALB","adm0_a3_us":"ALB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ALB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.590247430104906,41.855404161133606],[20.463175083099202,41.51508901627533],[20.605181919037364,41.08622630468522],[21.0200403174764,40.84272695572588],[20.999989861747224,40.58000397395397],[20.674996779063633,40.43499990494303],[20.615000441172754,40.11000682225938],[20.15001590341052,39.62499766698397],[19.980000441170144,39.69499339452341],[19.960001661873207,39.91500580500605],[19.406081984136733,40.250773423822466],[19.319058872157143,40.72723012955356],[19.40354983895429,41.40956574153546],[19.540027296637106,41.71998607031276],[19.37176883309496,41.877547512370654],[19.304486118250793,42.19574514420782],[19.738051385179627,42.688247382165564],[19.801613396898688,42.50009349219084],[20.0707,42.58863],[20.283754510181893,42.32025950781508],[20.52295,42.21787],[20.590247430104906,41.855404161133606]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Austria","sov_a3":"AUT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Austria","adm0_a3":"AUT","geou_dif":0,"geounit":"Austria","gu_a3":"AUT","su_dif":0,"subunit":"Austria","su_a3":"AUT","brk_diff":0,"name":"Austria","name_long":"Austria","brk_a3":"AUT","brk_name":"Austria","brk_group":null,"abbrev":"Aust.","postal":"A","formal_en":"Republic of Austria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Austria","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":4,"pop_est":8210281,"gdp_md_est":329500,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"AT","iso_a3":"AUT","iso_n3":"040","un_a3":"040","wb_a2":"AT","wb_a3":"AUT","woe_id":-99,"adm0_a3_is":"AUT","adm0_a3_us":"AUT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"AUT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.979666782304037,48.123497015976305],[16.90375410326726,47.71486562762833],[16.340584344150415,47.71290192320123],[16.534267612380376,47.49617096616912],[16.202298211337364,46.85238597267696],[16.011663852612656,46.6836107448117],[15.137091912504985,46.65870270444703],[14.63247155117483,46.43181732846955],[13.806475457421527,46.509306138691215],[12.376485223040817,46.76755910906985],[12.153088006243054,47.11539317482645],[11.16482791509327,46.94157949481273],[11.048555942436536,46.75135854754634],[10.44270145024663,46.89354625099743],[9.932448357796659,46.92072805438296],[9.479969516649021,47.10280996356337],[9.632931756232978,47.34760122332999],[9.59422610844635,47.52505809182027],[9.896068149463188,47.580196845075704],[10.402083774465211,47.30248769793916],[10.544504021861627,47.56639923765377],[11.426414015354737,47.523766181012974],[12.141357456112788,47.703083401065776],[12.620759718484491,47.67238760028441],[12.932626987365948,47.467645575544],[13.02585127122049,47.637583523135824],[12.884102817443903,48.28914581968792],[13.243357374737,48.416114813829054],[13.595945672264437,48.87717194273715],[14.33889773932472,48.5553052842072],[14.901447381254057,48.964401760445824],[15.253415561593982,49.039074205107575],[16.02964725105022,48.73389903420793],[16.49928266771877,48.78580801044511],[16.960288120194576,48.5969823268506],[16.879982944413,48.47001333270947],[16.979666782304037,48.123497015976305]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Bulgaria","sov_a3":"BGR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bulgaria","adm0_a3":"BGR","geou_dif":0,"geounit":"Bulgaria","gu_a3":"BGR","su_dif":0,"subunit":"Bulgaria","su_a3":"BGR","brk_diff":0,"name":"Bulgaria","name_long":"Bulgaria","brk_a3":"BGR","brk_name":"Bulgaria","brk_group":null,"abbrev":"Bulg.","postal":"BG","formal_en":"Republic of Bulgaria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bulgaria","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":8,"pop_est":7204687,"gdp_md_est":93750,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BG","iso_a3":"BGR","iso_n3":"100","un_a3":"100","wb_a2":"BG","wb_a3":"BGR","woe_id":-99,"adm0_a3_is":"BGR","adm0_a3_us":"BGR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BGR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.65714969248299,44.23492300066128],[22.944832391051847,43.82378530534713],[23.33230228037632,43.89701080990471],[24.100679152124172,43.74105133724785],[25.569271681426926,43.68844472917472],[26.065158725699746,43.94349376075126],[27.242399529740908,44.175986029632405],[27.970107049275075,43.81246816667521],[28.558081495891997,43.70746165625813],[28.03909508638472,43.293171698574184],[27.67389773937805,42.577892361006214],[27.99672041190539,42.00735871028779],[27.135739373490477,42.14148489030134],[26.117041863720797,41.82690460872456],[26.106138136507212,41.32889883072778],[25.197201368925445,41.23448598893053],[24.49264489105803,41.583896185872035],[23.692073601992348,41.30908091894385],[22.952377150166452,41.33799388281115],[22.88137373219743,41.99929718685026],[22.380525750424592,42.32025950781509],[22.54501183440962,42.46136200618804],[22.43659467946128,42.580321153323936],[22.60480146657133,42.898518785161144],[22.986018507588483,43.211161200526966],[22.50015669118028,43.64281443946099],[22.410446404721597,44.00806346289995],[22.65714969248299,44.23492300066128]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Belgium","sov_a3":"BEL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belgium","adm0_a3":"BEL","geou_dif":0,"geounit":"Belgium","gu_a3":"BEL","su_dif":0,"subunit":"Belgium","su_a3":"BEL","brk_diff":0,"name":"Belgium","name_long":"Belgium","brk_a3":"BEL","brk_name":"Belgium","brk_group":null,"abbrev":"Belg.","postal":"B","formal_en":"Kingdom of Belgium","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belgium","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":8,"pop_est":10414336,"gdp_md_est":389300,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"BE","iso_a3":"BEL","iso_n3":"056","un_a3":"056","wb_a2":"BE","wb_a3":"BEL","woe_id":-99,"adm0_a3_is":"BEL","adm0_a3_us":"BEL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BEL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[3.314971144228537,51.345780951536085],[4.047071160507527,51.26725861266857],[4.973991326526914,51.475023708698124],[5.606975945670001,51.037298488969775],[6.156658155958779,50.80372101501058],[6.043073357781111,50.128051662794235],[5.782417433300906,50.09032786722122],[5.674051954784829,49.529483547557504],[4.799221632515809,49.985373033236385],[4.286022983425084,49.907496649772554],[3.588184441755686,50.37899241800358],[3.123251580425801,50.780363267614575],[2.658422071960274,50.79684804951574],[2.513573032246143,51.14850617126183],[3.314971144228537,51.345780951536085]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Bosnia and Herzegovina","sov_a3":"BIH","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bosnia and Herzegovina","adm0_a3":"BIH","geou_dif":0,"geounit":"Bosnia and Herzegovina","gu_a3":"BIH","su_dif":0,"subunit":"Bosnia and Herzegovina","su_a3":"BIH","brk_diff":0,"name":"Bosnia and Herz.","name_long":"Bosnia and Herzegovina","brk_a3":"BIH","brk_name":"Bosnia and Herz.","brk_group":null,"abbrev":"B.H.","postal":"BiH","formal_en":"Bosnia and Herzegovina","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bosnia and Herzegovina","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":2,"pop_est":4613414,"gdp_md_est":29700,"pop_year":-99,"lastcensus":1991,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BA","iso_a3":"BIH","iso_n3":"070","un_a3":"070","wb_a2":"BA","wb_a3":"BIH","woe_id":-99,"adm0_a3_is":"BIH","adm0_a3_us":"BIH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":16,"long_len":22,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BIH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.00548628101012,44.86023366960916],[19.36803,44.863],[19.11761,44.42307000000011],[19.59976,44.03847],[19.454,43.56810000000013],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674921502358984,43.02856252702361],[17.297373488034452,43.44634064388736],[16.91615644701733,43.66772247982567],[16.456442905348865,44.04123973243128],[16.23966027188453,44.35114329688571],[15.750026075918981,44.81871165626256],[15.959367303133376,45.233776760430935],[16.318156772535872,45.00412669532591],[16.534939406000206,45.21160757097772],[17.002146030351014,45.233776760430935],[17.861783481526402,45.067740383477144],[18.553214145591653,45.08158966733145],[19.00548628101012,44.86023366960916]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Belarus","sov_a3":"BLR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belarus","adm0_a3":"BLR","geou_dif":0,"geounit":"Belarus","gu_a3":"BLR","su_dif":0,"subunit":"Belarus","su_a3":"BLR","brk_diff":0,"name":"Belarus","name_long":"Belarus","brk_a3":"BLR","brk_name":"Belarus","brk_group":null,"abbrev":"Bela.","postal":"BY","formal_en":"Republic of Belarus","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belarus","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":5,"mapcolor13":11,"pop_est":9648533,"gdp_md_est":114100,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BY","iso_a3":"BLR","iso_n3":"112","un_a3":"112","wb_a2":"BY","wb_a3":"BLR","woe_id":-99,"adm0_a3_is":"BLR","adm0_a3_us":"BLR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BLR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[23.48412763844985,53.91249766704114],[24.450683628037037,53.905702216194754],[25.536353794056993,54.28242340760253],[25.7684326514798,54.84696259217509],[26.58827924979039,55.16717560487167],[26.494331495883753,55.615106919977634],[27.10245975109453,55.783313707087686],[28.176709425577993,56.16912995057881],[29.229513380660308,55.918344224666356],[29.371571893030673,55.670090643936184],[29.896294386522356,55.78946320253041],[30.873909132620007,55.55097646750341],[30.971835971813135,55.08154775656404],[30.757533807098717,54.81177094178432],[31.38447228366374,54.157056382862436],[31.79142418796224,53.97463857687212],[31.731272820774507,53.79402944601202],[32.405598585751164,53.618045355842035],[32.69364301934604,53.35142080343212],[32.304519484188226,53.1327261419729],[31.49764367038293,53.1674268662569],[31.305200636528014,53.07399587667321],[31.54001834486226,52.74205231384636],[31.785998162571587,52.101677964885454],[30.927549269338982,52.04235342061438],[30.619454380014844,51.822806098022376],[30.555117221811457,51.31950348571566],[30.157363722460897,51.41613841410147],[29.254938185347925,51.368234361366895],[28.99283532076353,51.602044379271476],[28.61761274589225,51.42771393493484],[28.24161502453657,51.57222707783907],[27.454066196408434,51.59230337178447],[26.337958611768556,51.83228872334793],[25.327787713327005,51.91065603291855],[24.553106316839518,51.888461005249184],[24.00507775238421,51.61744395609446],[23.52707075368437,51.57845408793023],[23.508002150168693,52.02364655212473],[23.199493849386187,52.486977444053664],[23.799198846133375,52.69109935160657],[23.80493493011778,53.089731350306074],[23.527535841575002,53.470121568406555],[23.48412763844985,53.91249766704114]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Switzerland","sov_a3":"CHE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Switzerland","adm0_a3":"CHE","geou_dif":0,"geounit":"Switzerland","gu_a3":"CHE","su_dif":0,"subunit":"Switzerland","su_a3":"CHE","brk_diff":0,"name":"Switzerland","name_long":"Switzerland","brk_a3":"CHE","brk_name":"Switzerland","brk_group":null,"abbrev":"Switz.","postal":"CH","formal_en":"Swiss Confederation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Switzerland","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":7,"mapcolor13":3,"pop_est":7604467,"gdp_md_est":316700,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"CH","iso_a3":"CHE","iso_n3":"756","un_a3":"756","wb_a2":"CH","wb_a3":"CHE","woe_id":-99,"adm0_a3_is":"CHE","adm0_a3_us":"CHE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"CHE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[9.59422610844635,47.52505809182027],[9.632931756232978,47.34760122332999],[9.479969516649021,47.10280996356337],[9.932448357796659,46.92072805438296],[10.44270145024663,46.89354625099743],[10.363378126678612,46.48357127540986],[9.92283654139038,46.31489940040919],[9.182881707403055,46.44021474871698],[8.966305779667806,46.036931871111186],[8.489952426801324,46.005150865251686],[8.31662967289438,46.16364248309086],[7.755992058959833,45.82449005795931],[7.273850945676656,45.776947740250776],[6.843592970414504,45.99114655210061],[6.500099724970425,46.42967275652944],[6.022609490593537,46.27298981382047],[6.037388950229001,46.725778713561866],[6.768713820023606,47.2877082383037],[6.736571079138059,47.541801255882845],[7.192202182655507,47.44976552997102],[7.46675906742223,47.62058197691181],[8.317301466514152,47.61357982033626],[8.522611932009765,47.830827541691285],[9.59422610844635,47.52505809182027]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Czech Republic","sov_a3":"CZE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Czech Republic","adm0_a3":"CZE","geou_dif":0,"geounit":"Czech Republic","gu_a3":"CZE","su_dif":0,"subunit":"Czech Republic","su_a3":"CZE","brk_diff":0,"name":"Czech Rep.","name_long":"Czech Republic","brk_a3":"CZE","brk_name":"Czech Rep.","brk_group":null,"abbrev":"Cz. Rep.","postal":"CZ","formal_en":"Czech Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Czech Republic","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":6,"pop_est":10211904,"gdp_md_est":265200,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"CZ","iso_a3":"CZE","iso_n3":"203","un_a3":"203","wb_a2":"CZ","wb_a3":"CZE","woe_id":-99,"adm0_a3_is":"CZE","adm0_a3_us":"CZE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":14,"abbrev_len":8,"tiny":-99,"homepart":1,"filename":"CZE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.960288120194576,48.5969823268506],[16.49928266771877,48.78580801044511],[16.02964725105022,48.73389903420793],[15.253415561593982,49.039074205107575],[14.901447381254057,48.964401760445824],[14.33889773932472,48.5553052842072],[13.595945672264437,48.87717194273715],[13.031328973043431,49.30706818297324],[12.521024204161192,49.547415269562734],[12.415190870827445,49.96912079528057],[12.240111118222558,50.266337795607285],[12.966836785543194,50.484076443069085],[13.338131951560285,50.73323436136435],[14.056227654688172,50.92691762959429],[14.307013380600637,51.117267767941414],[14.570718214586066,51.002339382524276],[15.01699588385867,51.10667409932158],[15.490972120839727,50.78472992614321],[16.23862674323857,50.69773265237984],[16.176253289462267,50.42260732685791],[16.719475945714436,50.21574656839354],[16.868769158605655,50.47397370055603],[17.55456709155112,50.36214590107641],[17.64944502123899,50.049038397819956],[18.392913852622172,49.98862864847075],[18.853144158613617,49.49622976337764],[18.554971144289482,49.49501536721878],[18.399993523846177,49.31500051533004],[18.170498488037964,49.271514797556435],[18.104972771891852,49.04398346617531],[17.913511590250465,48.996492824899086],[17.88648481616181,48.90347524677371],[17.545006951577108,48.80001902932537],[17.101984897538898,48.81696889911711],[16.960288120194576,48.5969823268506]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Germany","sov_a3":"DEU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Germany","adm0_a3":"DEU","geou_dif":0,"geounit":"Germany","gu_a3":"DEU","su_dif":0,"subunit":"Germany","su_a3":"DEU","brk_diff":0,"name":"Germany","name_long":"Germany","brk_a3":"DEU","brk_name":"Germany","brk_group":null,"abbrev":"Ger.","postal":"D","formal_en":"Federal Republic of Germany","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Germany","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":5,"mapcolor13":1,"pop_est":82329758,"gdp_md_est":2918000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"DE","iso_a3":"DEU","iso_n3":"276","un_a3":"276","wb_a2":"DE","wb_a3":"DEU","woe_id":-99,"adm0_a3_is":"DEU","adm0_a3_us":"DEU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DEU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[9.921906365609232,54.983104153048025],[9.9395797054529,54.596641954153256],[10.950112338920519,54.363607082733154],[10.939466993868448,54.00869334575258],[11.956252475643282,54.19648550070116],[12.518440382546714,54.47037059184799],[13.647467075259499,54.0755109727059],[14.119686313542559,53.75702912049103],[14.353315463934168,53.248171291713106],[14.074521111719434,52.98126251892535],[14.4375997250022,52.624850165408304],[14.685026482815713,52.089947414755216],[14.607098422919648,51.745188096719964],[15.016995883858781,51.10667409932171],[14.570718214586122,51.00233938252438],[14.307013380600665,51.11726776794137],[14.056227654688314,50.92691762959435],[13.338131951560397,50.73323436136428],[12.96683678554325,50.48407644306917],[12.240111118222671,50.26633779560723],[12.415190870827473,49.96912079528062],[12.521024204161336,49.54741526956275],[13.031328973043514,49.30706818297324],[13.595945672264577,48.877171942737164],[13.243357374737116,48.41611481382903],[12.884102817443873,48.28914581968786],[13.025851271220517,47.63758352313595],[12.932626987366064,47.467645575544],[12.620759718484521,47.672387600284424],[12.141357456112871,47.70308340106578],[11.426414015354851,47.52376618101306],[10.544504021861597,47.5663992376538],[10.402083774465325,47.30248769793916],[9.896068149463188,47.580196845075704],[9.594226108446376,47.5250580918202],[8.522611932009795,47.83082754169135],[8.317301466514095,47.61357982033627],[7.466759067422288,47.62058197691192],[7.593676385131062,48.33301911070373],[8.099278598674855,49.01778351500343],[6.658229607783709,49.20195831969164],[6.186320428094177,49.463802802114515],[6.242751092156993,49.90222565367873],[6.043073357781111,50.128051662794235],[6.156658155958779,50.80372101501058],[5.988658074577813,51.851615709025054],[6.589396599970826,51.852029120483394],[6.842869500362383,52.22844025329755],[7.092053256873896,53.14404328064489],[6.905139601274129,53.48216217713064],[7.100424838905268,53.69393219666267],[7.936239454793962,53.74829580343379],[8.121706170289485,53.52779246684429],[8.800734490604668,54.020785630908904],[8.572117954145368,54.39564647075405],[8.526229282270208,54.96274363872516],[9.282048780971136,54.83086538351631],[9.921906365609232,54.983104153048025]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Country","admin":"Denmark","adm0_a3":"DNK","geou_dif":0,"geounit":"Denmark","gu_a3":"DNK","su_dif":0,"subunit":"Denmark","su_a3":"DNK","brk_diff":0,"name":"Denmark","name_long":"Denmark","brk_a3":"DNK","brk_name":"Denmark","brk_group":null,"abbrev":"Den.","postal":"DK","formal_en":"Kingdom of Denmark","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Denmark","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":5500510,"gdp_md_est":203600,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"DK","iso_a3":"DNK","iso_n3":"208","un_a3":"208","wb_a2":"DK","wb_a3":"DNK","woe_id":-99,"adm0_a3_is":"DNK","adm0_a3_us":"DNK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DNK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.69000613775563,55.609990953180784],[12.089991082414741,54.80001455343793],[11.043543328504228,55.364863796604254],[10.903913608451631,55.77995473898875],[12.370904168353292,56.111407375708836],[12.69000613775563,55.609990953180784]]],[[[10.912181837618363,56.458621324277914],[10.667803989309988,56.08138336854722],[10.369992710011985,56.19000722922473],[9.649984978889307,55.469999498102055],[9.921906365609175,54.98310415304806],[9.282048780971136,54.83086538351616],[8.526229282270236,54.96274363872499],[8.120310906617588,55.517722683323626],[8.08997684086225,56.540011705137594],[8.256581658571264,56.8099693874303],[8.543437534223386,57.110002753316905],[9.42446902836761,57.17206614849948],[9.775558709358563,57.447940782289656],[10.580005730846153,57.73001658795485],[10.546105991262692,57.215732733786155],[10.250000034230226,56.89001618105047],[10.369992710011985,56.609981594460834],[10.912181837618363,56.458621324277914]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Spain","sov_a3":"ESP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Spain","adm0_a3":"ESP","geou_dif":0,"geounit":"Spain","gu_a3":"ESP","su_dif":0,"subunit":"Spain","su_a3":"ESP","brk_diff":0,"name":"Spain","name_long":"Spain","brk_a3":"ESP","brk_name":"Spain","brk_group":null,"abbrev":"Sp.","postal":"E","formal_en":"Kingdom of Spain","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Spain","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":5,"mapcolor13":5,"pop_est":40525002,"gdp_md_est":1403000,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"ES","iso_a3":"ESP","iso_n3":"724","un_a3":"724","wb_a2":"ES","wb_a3":"ESP","woe_id":-99,"adm0_a3_is":"ESP","adm0_a3_us":"ESP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":5,"abbrev_len":3,"tiny":-99,"homepart":1,"filename":"ESP.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-9.034817674180246,41.88057058365967],[-8.984433152695672,42.59277517350627],[-9.392883673530648,43.0266246608127],[-7.978189663108309,43.748337714200986],[-6.754491746436756,43.567909450853925],[-5.411886359061596,43.574239813809676],[-4.347842779955783,43.40344920508504],[-3.51753170410609,43.4559007838613],[-1.901351284177764,43.42280202897834],[-1.502770961910528,43.03401439063043],[0.338046909190581,42.57954600683954],[0.701590610363894,42.7957343613326],[1.826793247087153,42.34338471126569],[2.985998976258458,42.47301504166986],[3.039484083680549,41.892120266276905],[2.091841668312185,41.22608856868309],[0.810524529635188,41.01473196060934],[0.721331007499401,40.678318386389236],[0.106691521819869,40.12393362076202],[-0.278711310212941,39.30997813573272],[0.111290724293838,38.73851430923303],[-0.467123582349103,38.29236583104115],[-0.683389451490598,37.642353827457825],[-1.438382127274849,37.443063666324214],[-2.146452602538119,36.67414419203728],[-3.415780808923387,36.65889964451118],[-4.368900926114719,36.677839056946155],[-4.995219285492211,36.32470815687964],[-5.377159796561457,35.946850083961465],[-5.866432257500904,36.02981659600606],[-6.236693894872175,36.367677110330334],[-6.520190802425404,36.94291331638732],[-7.453725551778092,37.09778758396607],[-7.537105475281024,37.42890432387623],[-7.166507941099865,37.803894354802225],[-7.029281175148796,38.07576406508977],[-7.374092169616318,38.37305858006492],[-7.098036668313128,39.03007274022378],[-7.498632371439725,39.62957103124181],[-7.066591559263529,39.71189158788277],[-7.026413133156595,40.184524237624245],[-6.864019944679385,40.33087189387483],[-6.851126674822552,41.11108266861753],[-6.389087693700915,41.381815497394655],[-6.668605515967656,41.883386949219584],[-7.251308966490824,41.91834605566505],[-7.422512986673795,41.79207469335983],[-8.013174607769912,41.790886135417125],[-8.263856980817792,42.28046865495034],[-8.67194576662672,42.13468943945496],[-9.034817674180246,41.88057058365967]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Estonia","sov_a3":"EST","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Estonia","adm0_a3":"EST","geou_dif":0,"geounit":"Estonia","gu_a3":"EST","su_dif":0,"subunit":"Estonia","su_a3":"EST","brk_diff":0,"name":"Estonia","name_long":"Estonia","brk_a3":"EST","brk_name":"Estonia","brk_group":null,"abbrev":"Est.","postal":"EST","formal_en":"Republic of Estonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Estonia","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":10,"pop_est":1299371,"gdp_md_est":27410,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"EE","iso_a3":"EST","iso_n3":"233","un_a3":"233","wb_a2":"EE","wb_a3":"EST","woe_id":-99,"adm0_a3_is":"EST","adm0_a3_us":"EST","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"EST.geojson"},"geometry":{"type":"Polygon","coordinates":[[[24.312862583114622,57.79342357037698],[24.42892785004216,58.38341339785328],[24.061198357853186,58.25737457949341],[23.42656009287668,58.612753404364625],[23.339795363058645,59.18724030215338],[24.604214308376182,59.46585378685502],[25.86418908051664,59.61109039981134],[26.949135776484525,59.445803331125774],[27.981114129353244,59.47538808861287],[28.13169925305175,59.30082510033092],[27.42016645682494,58.72458120384424],[27.71668582531572,57.79189911562437],[27.28818484875151,57.47452830670383],[26.463532342237787,57.47638865826633],[25.602809685984365,57.84752879498657],[25.16459354014927,57.97015696881519],[24.312862583114622,57.79342357037698]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Finland","sov_a3":"FI1","adm0_dif":1,"level":2,"type":"Country","admin":"Finland","adm0_a3":"FIN","geou_dif":0,"geounit":"Finland","gu_a3":"FIN","su_dif":0,"subunit":"Finland","su_a3":"FIN","brk_diff":0,"name":"Finland","name_long":"Finland","brk_a3":"FIN","brk_name":"Finland","brk_group":null,"abbrev":"Fin.","postal":"FIN","formal_en":"Republic of Finland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Finland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":6,"pop_est":5250275,"gdp_md_est":193500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"FI","iso_a3":"FIN","iso_n3":"246","un_a3":"246","wb_a2":"FI","wb_a3":"FIN","woe_id":-99,"adm0_a3_is":"FIN","adm0_a3_us":"FIN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"FIN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.591929559043194,69.06477692328666],[28.445943637818658,68.36461294216404],[29.977426385220607,67.69829702419266],[29.054588657352326,66.94428620062193],[30.21765,65.80598],[29.544429559046986,64.94867157659048],[30.44468468600371,64.20445343693909],[30.035872430142714,63.55281362573855],[31.51609215671112,62.86768748641288],[31.139991082490894,62.35769277612441],[30.211107212044446,61.78002777774969],[28.069997592895277,60.503516547275844],[26.25517296723697,60.4239606797625],[24.496623976344523,60.05731639265165],[22.869694858499457,59.846373196036225],[22.290763787533592,60.39192129174154],[21.322244093519316,60.72016998965952],[21.544866163832694,61.7053294948718],[21.05921105315369,62.60739329695874],[21.536029493910803,63.18973501245587],[22.442744174903993,63.81781037053129],[24.730511508897536,64.90234365504082],[25.398067661243942,65.11142650009373],[25.294043003040404,65.53434642197045],[23.903378533633802,66.00692739527962],[23.565879754335583,66.39605093043743],[23.53947309743444,67.93600861273525],[21.978534783626117,68.6168456081807],[20.645592889089528,69.10624726020087],[21.244936150810673,69.37044302029307],[22.356237827247412,68.84174144151491],[23.66204959483076,68.89124746365054],[24.735679152126725,68.64955678982146],[25.68921268077636,69.09211375596904],[26.17962202322624,69.82529897732614],[27.732292107867863,70.16419302029625],[29.01557295097197,69.76649119737799],[28.591929559043194,69.06477692328666]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Country","admin":"France","adm0_a3":"FRA","geou_dif":0,"geounit":"France","gu_a3":"FRA","su_dif":0,"subunit":"France","su_a3":"FRA","brk_diff":0,"name":"France","name_long":"France","brk_a3":"FRA","brk_name":"France","brk_group":null,"abbrev":"Fr.","postal":"F","formal_en":"French Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"France","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":64057792,"gdp_md_est":2128000,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"FR","iso_a3":"FRA","iso_n3":"250","un_a3":"250","wb_a2":"FR","wb_a3":"FRA","woe_id":-99,"adm0_a3_is":"FRA","adm0_a3_us":"FRA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":3,"tiny":-99,"homepart":1,"filename":"FRA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-52.55642473001839,2.504705308437053],[-52.93965715189498,2.124857692875622],[-53.418465135295264,2.053389187016037],[-53.554839240113495,2.334896551925965],[-53.77852067728889,2.376702785650053],[-54.08806250671728,2.105556545414629],[-54.52475419779975,2.311848863123785],[-54.27122962097578,2.738747870286943],[-54.18428402364474,3.194172268075235],[-54.01150387227682,3.622569891774858],[-54.399542202356514,4.212611395683481],[-54.47863298197922,4.896755682795643],[-53.95804460307093,5.756548163267809],[-53.618452928264844,5.646529038918402],[-52.88214128275408,5.409850979021599],[-51.82334286152593,4.565768133966145],[-51.65779741067888,4.156232408053029],[-52.24933753112398,3.241094468596287],[-52.55642473001839,2.504705308437053]]],[[[9.560016310269134,42.15249197037957],[9.229752231491773,41.38000682226445],[8.77572309737536,41.58361196549444],[8.54421268070783,42.25651662858308],[8.746009148807588,42.62812185319396],[9.390000848028905,43.00998484961474],[9.560016310269134,42.15249197037957]]],[[[3.588184441755715,50.37899241800358],[4.28602298342514,49.907496649772554],[4.799221632515753,49.98537303323633],[5.674051954784885,49.52948354755745],[5.897759230176376,49.44266714130717],[6.186320428094206,49.46380280211446],[6.658229607783539,49.20195831969155],[8.099278598674772,49.01778351500337],[7.593676385131062,48.33301911070373],[7.46675906742223,47.620581976911865],[7.192202182655535,47.44976552997099],[6.736571079138088,47.54180125588289],[6.768713820023634,47.28770823830368],[6.037388950228972,46.72577871356191],[6.022609490593567,46.272989813820516],[6.500099724970454,46.42967275652944],[6.843592970414562,45.99114655210067],[6.802355177445662,45.70857982032867],[7.096652459347837,45.333098863295874],[6.749955275101711,45.02851797136759],[7.007562290076663,44.25476675066139],[7.549596388386163,44.12790110938482],[7.435184767291843,43.69384491634918],[6.529245232783068,43.12889232031836],[4.556962517931396,43.39965098731158],[3.10041059735272,43.075200507167125],[2.985998976258486,42.47301504166989],[1.826793247087181,42.34338471126566],[0.701590610363922,42.79573436133265],[0.338046909190581,42.579546006839564],[-1.502770961910471,43.03401439063049],[-1.901351284177735,43.42280202897834],[-1.384225226232957,44.02261037859017],[-1.193797573237362,46.014917710954876],[-2.225724249673789,47.06436269793821],[-2.963276129559574,47.570326646507965],[-4.491554938159481,47.95495433205642],[-4.592349819344747,48.68416046812695],[-3.295813971357745,48.901692409859635],[-1.616510789384932,48.644421291694584],[-1.933494025063254,49.776341864615766],[-0.98946895995536,49.347375800160876],[1.338761020522753,50.12717316344526],[1.6390010921385,50.946606350297515],[2.513573032246171,51.14850617126185],[2.658422071960331,50.79684804951566],[3.123251580425716,50.78036326761452],[3.588184441755715,50.37899241800358]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"United Kingdom","adm0_a3":"GBR","geou_dif":0,"geounit":"United Kingdom","gu_a3":"GBR","su_dif":0,"subunit":"United Kingdom","su_a3":"GBR","brk_diff":0,"name":"United Kingdom","name_long":"United Kingdom","brk_a3":"GBR","brk_name":"United Kingdom","brk_group":null,"abbrev":"U.K.","postal":"GB","formal_en":"United Kingdom of Great Britain and Northern Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United Kingdom","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":62262000,"gdp_md_est":1977704,"pop_year":0,"lastcensus":2011,"gdp_year":2009,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"GB","iso_a3":"GBR","iso_n3":"826","un_a3":"826","wb_a2":"GB","wb_a3":"GBR","woe_id":-99,"adm0_a3_is":"GBR","adm0_a3_us":"GBR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":14,"long_len":14,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GBR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.661948614921897,54.55460317648385],[-6.197884894220977,53.86756500916334],[-6.953730231137996,54.073702297575636],[-7.572167934591079,54.05995636658599],[-7.366030646178785,54.595840969452695],[-7.572167934591079,55.1316222194549],[-6.733847011736145,55.1728600124238],[-5.661948614921897,54.55460317648385]]],[[[-3.005004848635281,58.63500010846633],[-4.073828497728016,57.55302480735525],[-3.055001796877661,57.69001902936095],[-1.959280564776918,57.68479970969951],[-2.219988165689301,56.87001740175353],[-3.119003058271118,55.973793036515474],[-2.085009324543023,55.90999848085127],[-2.005675679673857,55.80490285035023],[-1.11499101399221,54.62498647726539],[-0.4304849918542,54.46437612570216],[0.184981316742039,53.32501414653103],[0.469976840831777,52.92999949809197],[1.681530795914739,52.739520168664],[1.559987827164377,52.09999848083601],[1.050561557630914,51.806760565795685],[1.449865349950301,51.28942780212196],[0.550333693045502,50.765738837275876],[-0.78751746255864,50.77498891865622],[-2.489997524414377,50.50001862243124],[-2.956273972984036,50.696879991247016],[-3.617448085942328,50.22835561787272],[-4.542507900399244,50.34183706318566],[-5.245023159191135,49.95999990498108],[-5.776566941745301,50.15967763935682],[-4.309989793301838,51.21000112568916],[-3.414850633142123,51.42600861266925],[-3.422719467108323,51.42684816740609],[-4.984367234710874,51.593466091510976],[-5.267295701508885,51.99140045837458],[-4.222346564134853,52.301355699261364],[-4.770013393564113,52.840004991255626],[-4.579999152026915,53.49500377055517],[-3.093830673788659,53.404547400669685],[-3.092079637047106,53.404440822963544],[-2.945008510744344,53.984999701546684],[-3.614700825433034,54.600936773292574],[-3.63000545898933,54.615012925833014],[-4.844169073903004,54.790971177786844],[-5.082526617849226,55.06160065369937],[-4.719112107756644,55.50847260194348],[-5.047980922862109,55.78398550070752],[-5.586397670911139,55.31114614523682],[-5.644998745130181,56.275014960344805],[-6.149980841486354,56.78500967063354],[-5.786824713555291,57.81884837506465],[-5.009998745127575,58.63001333275005],[-4.211494513353557,58.55084503847917],[-3.005004848635281,58.63500010846633]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Greece","sov_a3":"GRC","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Greece","adm0_a3":"GRC","geou_dif":0,"geounit":"Greece","gu_a3":"GRC","su_dif":0,"subunit":"Greece","su_a3":"GRC","brk_diff":0,"name":"Greece","name_long":"Greece","brk_a3":"GRC","brk_name":"Greece","brk_group":null,"abbrev":"Greece","postal":"GR","formal_en":"Hellenic Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Greece","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":10737428,"gdp_md_est":343000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"GR","iso_a3":"GRC","iso_n3":"300","un_a3":"300","wb_a2":"GR","wb_a3":"GRC","woe_id":-99,"adm0_a3_is":"GRC","adm0_a3_us":"GRC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"GRC.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.699980096133004,35.70500438083553],[24.24666507334868,35.368022365860156],[25.02501549652888,35.42499563246198],[25.769207797964185,35.35401805270908],[25.745023227651586,35.179997666966216],[26.290002882601723,35.29999034274792],[26.16499759288766,35.004995429009796],[24.724982130642303,34.91998769788961],[24.735007358506945,35.08499054619759],[23.51497846852811,35.27999156345098],[23.699980096133004,35.70500438083553]]],[[[26.604195590936282,41.562114569661105],[26.29460208507578,40.93626129817426],[26.056942172965506,40.824123440100834],[25.447677036244187,40.85254547786147],[24.92584842296094,40.94706167252323],[23.714811232200816,40.687129218095116],[24.407998894964066,40.1249929876241],[23.899967889102584,39.96200552017558],[23.3429993018608,39.96099782974579],[22.81398766448896,40.476005153966554],[22.62629886240478,40.25656118423919],[22.849747755634805,39.65931081802577],[23.3500272966526,39.19001129816726],[22.973099399515547,38.97090322524966],[23.530016310324953,38.51000112563847],[24.025024855248944,38.21999298761645],[24.040011020613605,37.655014553369426],[23.115002882589152,37.92001129816222],[23.409971958111072,37.409990749657396],[22.774971958108633,37.30501007745656],[23.15422529469862,36.422505804992056],[22.490028110451107,36.41000010837746],[21.670026482843696,36.8449864771942],[21.295010613701574,37.644989325504696],[21.120034213961333,38.31032339126273],[20.730032179454582,38.769985256498785],[20.217712029712857,39.340234686839636],[20.15001590341052,39.62499766698403],[20.615000441172782,40.11000682225943],[20.674996779063633,40.434999904943055],[20.99998986174728,40.58000397395397],[21.02004031747643,40.84272695572588],[21.674160597426976,40.93127452245798],[22.05537763844427,41.14986583105269],[22.597308383889015,41.130487168943205],[22.76177,41.3048],[22.952377150166566,41.33799388281122],[23.692073601992462,41.30908091894386],[24.49264489105803,41.58389618587205],[25.197201368925533,41.23448598893066],[26.106138136507184,41.32889883072784],[26.117041863720914,41.82690460872473],[26.604195590936282,41.562114569661105]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Croatia","sov_a3":"HRV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Croatia","adm0_a3":"HRV","geou_dif":0,"geounit":"Croatia","gu_a3":"HRV","su_dif":0,"subunit":"Croatia","su_a3":"HRV","brk_diff":0,"name":"Croatia","name_long":"Croatia","brk_a3":"HRV","brk_name":"Croatia","brk_group":null,"abbrev":"Cro.","postal":"HR","formal_en":"Republic of Croatia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Croatia","name_alt":null,"mapcolor7":5,"mapcolor8":4,"mapcolor9":5,"mapcolor13":1,"pop_est":4489409,"gdp_md_est":82390,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"HR","iso_a3":"HRV","iso_n3":"191","un_a3":"191","wb_a2":"HR","wb_a3":"HRV","woe_id":-99,"adm0_a3_is":"HRV","adm0_a3_us":"HRV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"HRV.geojson"},"geometry":{"type":"Polygon","coordinates":[[[18.829838087650046,45.908877671891844],[19.072768995854176,45.52151113543209],[19.39047570158459,45.236515611342384],[19.00548628101012,44.86023366960916],[18.553214145591653,45.08158966733145],[17.861783481526402,45.067740383477144],[17.002146030351014,45.233776760430935],[16.534939406000206,45.21160757097772],[16.318156772535872,45.00412669532591],[15.959367303133376,45.233776760430935],[15.750026075918981,44.81871165626256],[16.23966027188453,44.35114329688571],[16.456442905348865,44.04123973243128],[16.91615644701733,43.66772247982567],[17.297373488034452,43.44634064388736],[17.674921502358984,43.02856252702361],[18.56,42.65],[18.450016310304818,42.47999136002932],[17.509970330483327,42.849994615239154],[16.930005730871642,43.20999848080038],[16.015384555737683,43.50721548112722],[15.174453973052096,44.243191229827914],[15.376250441151795,44.31791535092208],[14.920309279040508,44.73848399512946],[14.901602410550877,45.07606028907611],[14.258747592839995,45.233776760430935],[13.952254672917034,44.80212352149687],[13.656975538801191,45.13693512631596],[13.67940311041582,45.48414907488501],[13.715059848697251,45.500323798192426],[14.4119682145855,45.46616567644742],[14.595109490627918,45.63494090431282],[14.935243767972963,45.471695054702764],[15.327674594797427,45.452316392593325],[15.323953891672431,45.731782538427694],[15.671529575267641,45.8341535507979],[15.768732944408612,46.23810822202353],[16.564808383864943,46.50375092221981],[16.882515089595415,46.38063182228444],[17.630066359129557,45.9517691106941],[18.45606245288286,45.75948110613615],[18.829838087650046,45.908877671891844]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Hungary","sov_a3":"HUN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Hungary","adm0_a3":"HUN","geou_dif":0,"geounit":"Hungary","gu_a3":"HUN","su_dif":0,"subunit":"Hungary","su_a3":"HUN","brk_diff":0,"name":"Hungary","name_long":"Hungary","brk_a3":"HUN","brk_name":"Hungary","brk_group":null,"abbrev":"Hun.","postal":"HU","formal_en":"Republic of Hungary","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Hungary","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":1,"mapcolor13":5,"pop_est":9905596,"gdp_md_est":196600,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"HU","iso_a3":"HUN","iso_n3":"348","un_a3":"348","wb_a2":"HU","wb_a3":"HUN","woe_id":-99,"adm0_a3_is":"HUN","adm0_a3_us":"HUN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"HUN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.202298211337364,46.85238597267696],[16.534267612380376,47.49617096616912],[16.340584344150415,47.71290192320123],[16.90375410326726,47.71486562762833],[16.979666782304037,48.123497015976305],[17.48847293464982,47.86746613218621],[17.857132602620027,47.758428860050365],[18.696512892336926,47.880953681014404],[18.77702477384767,48.081768296900634],[19.17436486173989,48.11137889260387],[19.661363559658497,48.26661489520866],[19.769470656013112,48.202691148463614],[20.239054396249347,48.32756724709692],[20.473562045989866,48.56285004332181],[20.801293979584926,48.623854071642384],[21.872236362401736,48.31997081155002],[22.08560835133485,48.42226430927179],[22.640819939878753,48.15023956968735],[22.710531447040495,47.88219391538941],[22.099767693782834,47.6724392767167],[21.62651492685387,46.99423777931816],[21.02195234547125,46.3160879583519],[20.220192498462836,46.127468980486555],[19.596044549241583,46.17172984474454],[18.82983808764996,45.90887767189193],[18.45606245288286,45.759481106136136],[17.630066359129557,45.95176911069419],[16.8825150895953,46.38063182228444],[16.564808383864857,46.50375092221983],[16.370504998447416,46.8413272161665],[16.202298211337364,46.85238597267696]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ireland","sov_a3":"IRL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ireland","adm0_a3":"IRL","geou_dif":0,"geounit":"Ireland","gu_a3":"IRL","su_dif":0,"subunit":"Ireland","su_a3":"IRL","brk_diff":0,"name":"Ireland","name_long":"Ireland","brk_a3":"IRL","brk_name":"Ireland","brk_group":null,"abbrev":"Ire.","postal":"IRL","formal_en":"Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ireland","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":2,"mapcolor13":2,"pop_est":4203200,"gdp_md_est":188400,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IE","iso_a3":"IRL","iso_n3":"372","un_a3":"372","wb_a2":"IE","wb_a3":"IRL","woe_id":-99,"adm0_a3_is":"IRL","adm0_a3_us":"IRL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"IRL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-6.197884894220991,53.86756500916336],[-6.03298539877761,53.15316417094435],[-6.788856573910849,52.260117906292336],[-8.56161658368356,51.669301255899356],[-9.977085740590269,51.82045482035307],[-9.16628251793078,52.86462881124268],[-9.688524542672454,53.8813626165853],[-8.327987433292009,54.66451894796863],[-7.572167934591064,55.13162221945487],[-7.366030646178785,54.59584096945272],[-7.572167934591064,54.059956366586],[-6.953730231138067,54.073702297575636],[-6.197884894220991,53.86756500916336]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Iceland","sov_a3":"ISL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iceland","adm0_a3":"ISL","geou_dif":0,"geounit":"Iceland","gu_a3":"ISL","su_dif":0,"subunit":"Iceland","su_a3":"ISL","brk_diff":0,"name":"Iceland","name_long":"Iceland","brk_a3":"ISL","brk_name":"Iceland","brk_group":null,"abbrev":"Iceland","postal":"IS","formal_en":"Republic of Iceland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iceland","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":4,"mapcolor13":9,"pop_est":306694,"gdp_md_est":12710,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IS","iso_a3":"ISL","iso_n3":"352","un_a3":"352","wb_a2":"IS","wb_a3":"ISL","woe_id":-99,"adm0_a3_is":"ISL","adm0_a3_us":"ISL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"ISL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-14.508695441129236,66.45589223903141],[-14.739637417041605,65.8087482774403],[-13.60973222497981,65.12667104761987],[-14.909833746794902,64.36408193628868],[-17.794438035543422,63.67874909123385],[-18.656245896874992,63.49638296167582],[-19.97275468594276,63.64363495549153],[-22.762971971110158,63.960178941495386],[-21.778484259517683,64.40211579045551],[-23.95504391121911,64.89112986923348],[-22.184402635170358,65.0849681667603],[-22.227423265053332,65.37859365504272],[-24.326184047939336,65.61118927678847],[-23.65051469572309,66.26251902939522],[-22.134922451250883,66.41046865504687],[-20.57628373867955,65.73211212835143],[-19.05684160000159,66.27660085719477],[-17.79862382655905,65.99385325790978],[-16.167818976292125,66.52679230413587],[-14.508695441129236,66.45589223903141]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Italy","sov_a3":"ITA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Italy","adm0_a3":"ITA","geou_dif":0,"geounit":"Italy","gu_a3":"ITA","su_dif":0,"subunit":"Italy","su_a3":"ITA","brk_diff":0,"name":"Italy","name_long":"Italy","brk_a3":"ITA","brk_name":"Italy","brk_group":null,"abbrev":"Italy","postal":"I","formal_en":"Italian Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Italy","name_alt":null,"mapcolor7":6,"mapcolor8":7,"mapcolor9":8,"mapcolor13":7,"pop_est":58126212,"gdp_md_est":1823000,"pop_year":-99,"lastcensus":2012,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IT","iso_a3":"ITA","iso_n3":"380","un_a3":"380","wb_a2":"IT","wb_a3":"ITA","woe_id":-99,"adm0_a3_is":"ITA","adm0_a3_us":"ITA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ITA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.520376010813834,38.23115509699147],[15.160242954171736,37.44404551853782],[15.309897902089006,37.1342194687318],[15.099988234119449,36.6199872909954],[14.335228712632016,36.996630967754754],[13.826732618879928,37.10453135838019],[12.431003859108813,37.61294993748381],[12.570943637755136,38.12638113051968],[13.741156447004585,38.03496552179536],[14.76124922044616,38.143873602850505],[15.520376010813834,38.23115509699147]]],[[[9.210011834356266,41.20999136002422],[9.809975213264977,40.5000088567661],[9.669518670295673,39.177376410471794],[9.21481774255949,39.240473334300134],[8.80693566247973,38.90661774347847],[8.428302443077115,39.17184703221662],[8.38825320805094,40.378310858718805],[8.15999840661766,40.95000722916379],[8.709990675500109,40.89998444270523],[9.210011834356266,41.20999136002422]]],[[[12.376485223040843,46.76755910906987],[13.806475457421556,46.50930613869119],[13.698109978905478,46.016778062517375],[13.937630242578335,45.591015936864665],[13.141606479554298,45.73669179949541],[12.328581170306306,45.38177806251485],[12.383874952858605,44.88537425391908],[12.261453484759159,44.600482082694015],[12.589237094786483,44.091365871754476],[13.526905958722494,43.5877273626379],[14.029820997787027,42.76100779883248],[15.142569614327956,41.955139675456905],[15.926191033601896,41.96131500911574],[16.169897088290412,41.74029490820342],[15.889345737377797,41.5410822617182],[16.785001661860576,41.179605617836586],[17.519168735431208,40.87714345963224],[18.376687452882575,40.35562490494266],[18.4802470231954,40.168866278639825],[18.293385044028096,39.81077444107325],[17.738380161213286,40.2776710068303],[16.869595981522338,40.44223460546385],[16.448743116937322,39.79540070246648],[17.1714896989715,39.42469981542072],[17.05284061042934,38.9028712021373],[16.635088331781844,38.8435724960824],[16.100960727613057,37.98589874933418],[15.684086948314501,37.90884918878703],[15.687962680736321,38.214592800441864],[15.891981235424707,38.750942491199226],[16.109332309644312,38.96454702407769],[15.718813510814641,39.544072374014945],[15.413612501698822,40.04835683853517],[14.998495721098237,40.17294871679093],[14.70326826341477,40.604550279292624],[14.060671827865264,40.78634796809544],[13.627985060285397,41.188287258461656],[12.88808190273042,41.25308950455562],[12.10668257004491,41.70453481705741],[11.191906365614187,42.35542531998967],[10.511947869517797,42.931462510747224],[10.200028924204048,43.920006822274615],[9.702488234097814,44.03627879493132],[8.88894616052687,44.36633616797954],[8.428560825238577,44.23122813575242],[7.850766635783201,43.76714793555524],[7.435184767291843,43.69384491634918],[7.549596388386163,44.12790110938482],[7.007562290076663,44.25476675066139],[6.749955275101711,45.02851797136759],[7.096652459347837,45.333098863295874],[6.802355177445662,45.70857982032867],[6.843592970414562,45.99114655210067],[7.273850945676685,45.77694774025076],[7.755992058959833,45.82449005795928],[8.31662967289438,46.163642483090854],[8.489952426801295,46.00515086525175],[8.966305779667834,46.036931871111165],[9.182881707403112,46.44021474871698],[9.922836541390353,46.31489940040919],[10.363378126678668,46.483571275409844],[10.442701450246602,46.893546250997446],[11.048555942436508,46.7513585475464],[11.164827915093326,46.94157949481274],[12.153088006243081,47.11539317482644],[12.376485223040843,46.76755910906987]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kosovo","sov_a3":"KOS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kosovo","adm0_a3":"KOS","geou_dif":0,"geounit":"Kosovo","gu_a3":"KOS","su_dif":0,"subunit":"Kosovo","su_a3":"KOS","brk_diff":1,"name":"Kosovo","name_long":"Kosovo","brk_a3":"B57","brk_name":"Kosovo","brk_group":null,"abbrev":"Kos.","postal":"KO","formal_en":"Republic of Kosovo","formal_fr":null,"note_adm0":null,"note_brk":"Self admin.; Claimed by Serbia","name_sort":"Kosovo","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":11,"pop_est":1804838,"gdp_md_est":5352,"pop_year":-99,"lastcensus":1981,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"KV","wb_a3":"KSV","woe_id":-99,"adm0_a3_is":"SRB","adm0_a3_us":"KOS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KOS.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.76216,42.05186],[20.71731000000011,41.84711],[20.59023,41.85541],[20.52295,42.21787],[20.28374,42.3202500000001],[20.0707,42.58863],[20.25758,42.81275000000011],[20.49679,42.88469],[20.63508,43.21671],[20.81448,43.27205],[20.95651,43.13094],[21.143395,43.06868500000012],[21.27421,42.90959],[21.43866,42.86255],[21.63302,42.67717],[21.77505,42.6827],[21.66292,42.43922],[21.54332,42.3202500000001],[21.57663598940212,42.24522439706186],[21.35270000000014,42.2068],[20.76216,42.05186]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Lithuania","sov_a3":"LTU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lithuania","adm0_a3":"LTU","geou_dif":0,"geounit":"Lithuania","gu_a3":"LTU","su_dif":0,"subunit":"Lithuania","su_a3":"LTU","brk_diff":0,"name":"Lithuania","name_long":"Lithuania","brk_a3":"LTU","brk_name":"Lithuania","brk_group":null,"abbrev":"Lith.","postal":"LT","formal_en":"Republic of Lithuania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lithuania","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":3,"mapcolor13":9,"pop_est":3555179,"gdp_md_est":63330,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LT","iso_a3":"LTU","iso_n3":"440","un_a3":"440","wb_a2":"LT","wb_a3":"LTU","woe_id":-99,"adm0_a3_is":"LTU","adm0_a3_us":"LTU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"LTU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.731098667092652,54.327536932993326],[22.65105187347254,54.582740993866736],[22.75776370615526,54.85657440858138],[22.315723504330577,55.015298570365864],[21.268448927503467,55.190481675835315],[21.055800408622414,56.03107636171106],[22.201156853939494,56.33780182557948],[23.878263787539964,56.273671373105266],[24.860684441840757,56.37252838807963],[25.000934279080894,56.16453074810484],[25.533046502390334,56.10029694276603],[26.494331495883753,55.615106919977634],[26.58827924979039,55.16717560487167],[25.7684326514798,54.84696259217509],[25.536353794056993,54.28242340760253],[24.450683628037037,53.905702216194754],[23.48412763844985,53.91249766704114],[23.24398725758951,54.22056671814914],[22.731098667092652,54.327536932993326]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Luxembourg","sov_a3":"LUX","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Luxembourg","adm0_a3":"LUX","geou_dif":0,"geounit":"Luxembourg","gu_a3":"LUX","su_dif":0,"subunit":"Luxembourg","su_a3":"LUX","brk_diff":0,"name":"Luxembourg","name_long":"Luxembourg","brk_a3":"LUX","brk_name":"Luxembourg","brk_group":null,"abbrev":"Lux.","postal":"L","formal_en":"Grand Duchy of Luxembourg","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Luxembourg","name_alt":null,"mapcolor7":1,"mapcolor8":7,"mapcolor9":3,"mapcolor13":7,"pop_est":491775,"gdp_md_est":39370,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"LU","iso_a3":"LUX","iso_n3":"442","un_a3":"442","wb_a2":"LU","wb_a3":"LUX","woe_id":-99,"adm0_a3_is":"LUX","adm0_a3_us":"LUX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"LUX.geojson"},"geometry":{"type":"Polygon","coordinates":[[[6.043073357781111,50.128051662794235],[6.242751092156993,49.90222565367873],[6.186320428094177,49.463802802114515],[5.897759230176405,49.44266714130703],[5.674051954784829,49.529483547557504],[5.782417433300906,50.09032786722122],[6.043073357781111,50.128051662794235]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Latvia","sov_a3":"LVA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Latvia","adm0_a3":"LVA","geou_dif":0,"geounit":"Latvia","gu_a3":"LVA","su_dif":0,"subunit":"Latvia","su_a3":"LVA","brk_diff":0,"name":"Latvia","name_long":"Latvia","brk_a3":"LVA","brk_name":"Latvia","brk_group":null,"abbrev":"Lat.","postal":"LV","formal_en":"Republic of Latvia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Latvia","name_alt":null,"mapcolor7":4,"mapcolor8":7,"mapcolor9":6,"mapcolor13":13,"pop_est":2231503,"gdp_md_est":38860,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LV","iso_a3":"LVA","iso_n3":"428","un_a3":"428","wb_a2":"LV","wb_a3":"LVA","woe_id":-99,"adm0_a3_is":"LVA","adm0_a3_us":"LVA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"LVA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[21.055800408622414,56.03107636171106],[21.09042361825797,56.78387278912293],[21.581866489353672,57.41187063254993],[22.524341261492875,57.75337433535076],[23.318452996522097,57.00623647727487],[24.12072960785343,57.02569265403277],[24.312862583114622,57.79342357037698],[25.16459354014927,57.97015696881519],[25.602809685984365,57.84752879498657],[26.463532342237787,57.47638865826633],[27.28818484875151,57.47452830670383],[27.77001590344093,57.24425812441123],[27.855282016722526,56.75932648378429],[28.176709425577993,56.16912995057881],[27.10245975109453,55.783313707087686],[26.494331495883753,55.615106919977634],[25.533046502390334,56.10029694276603],[25.000934279080894,56.16453074810484],[24.860684441840757,56.37252838807963],[23.878263787539964,56.273671373105266],[22.201156853939494,56.33780182557948],[21.055800408622414,56.03107636171106]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Moldova","sov_a3":"MDA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Moldova","adm0_a3":"MDA","geou_dif":0,"geounit":"Moldova","gu_a3":"MDA","su_dif":0,"subunit":"Moldova","su_a3":"MDA","brk_diff":0,"name":"Moldova","name_long":"Moldova","brk_a3":"MDA","brk_name":"Moldova","brk_group":null,"abbrev":"Mda.","postal":"MD","formal_en":"Republic of Moldova","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Moldova","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":4,"mapcolor13":12,"pop_est":4320748,"gdp_md_est":10670,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MD","iso_a3":"MDA","iso_n3":"498","un_a3":"498","wb_a2":"MD","wb_a3":"MDA","woe_id":-99,"adm0_a3_is":"MDA","adm0_a3_us":"MDA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MDA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[26.619336785597795,48.22072622333347],[26.857823520624805,48.368210761094495],[27.522537469195154,48.467119452501116],[28.259546746541844,48.15556224221342],[28.670891147585163,48.1181485052341],[29.12269819511303,47.84909516050646],[29.05086795422733,47.51022695575249],[29.41513512545274,47.34664520933257],[29.559674106573112,46.928582872091326],[29.908851759569302,46.67436066343146],[29.838210076626297,46.52532583270169],[30.02465864433537,46.42393667254503],[29.75997195813639,46.34998769793536],[29.170653924279886,46.3792623968287],[29.072106967899295,46.517677720722496],[28.862972446414062,46.43788930926383],[28.93371748222162,46.2588304713725],[28.659987420371575,45.93998688413164],[28.485269402792767,45.5969070501459],[28.233553501099042,45.48828318946837],[28.0544429867754,45.944586086605625],[28.160017937947714,46.37156260841722],[28.128030226359044,46.810476386088254],[27.551166212684848,47.40511709247083],[27.233872918412743,47.82677094175638],[26.924176059687568,48.123264472030996],[26.619336785597795,48.22072622333347]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Macedonia","sov_a3":"MKD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Macedonia","adm0_a3":"MKD","geou_dif":0,"geounit":"Macedonia","gu_a3":"MKD","su_dif":0,"subunit":"Macedonia","su_a3":"MKD","brk_diff":0,"name":"Macedonia","name_long":"Macedonia","brk_a3":"MKD","brk_name":"Macedonia","brk_group":null,"abbrev":"Mkd.","postal":"MK","formal_en":"Former Yugoslav Republic of Macedonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Macedonia, FYR","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":2066718,"gdp_md_est":18780,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MK","iso_a3":"MKD","iso_n3":"807","un_a3":"807","wb_a2":"MK","wb_a3":"MKD","woe_id":-99,"adm0_a3_is":"MKD","adm0_a3_us":"MKD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MKD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.59023,41.85541],[20.71731000000011,41.84711],[20.76216,42.05186],[21.35270000000014,42.2068],[21.57663598940212,42.24522439706186],[21.917080000000112,42.30364],[22.38052575042468,42.32025950781508],[22.881373732197346,41.999297186850356],[22.952377150166512,41.33799388281119],[22.76177,41.3048],[22.597308383889015,41.130487168943205],[22.05537763844427,41.14986583105269],[21.674160597426976,40.93127452245795],[21.0200403174764,40.84272695572588],[20.60518,41.08622],[20.46315,41.5150900000001],[20.59023,41.85541]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Montenegro","sov_a3":"MNE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Montenegro","adm0_a3":"MNE","geou_dif":0,"geounit":"Montenegro","gu_a3":"MNE","su_dif":0,"subunit":"Montenegro","su_a3":"MNE","brk_diff":0,"name":"Montenegro","name_long":"Montenegro","brk_a3":"MNE","brk_name":"Montenegro","brk_group":null,"abbrev":"Mont.","postal":"ME","formal_en":"Montenegro","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Montenegro","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":5,"pop_est":672180,"gdp_md_est":6816,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ME","iso_a3":"MNE","iso_n3":"499","un_a3":"499","wb_a2":"ME","wb_a3":"MNE","woe_id":-99,"adm0_a3_is":"MNE","adm0_a3_us":"MNE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"MNE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.801613396898688,42.50009349219084],[19.738051385179627,42.688247382165564],[19.3044900000001,42.19574],[19.37177000000014,41.87755],[19.16246,41.95502],[18.88214,42.28151],[18.45,42.48],[18.56,42.65],[18.70648,43.20011],[19.03165,43.43253],[19.21852,43.52384],[19.48389,43.35229],[19.63,43.21377997027054],[19.95857,43.10604],[20.3398,42.89852],[20.25758,42.81275000000011],[20.0707,42.58863],[19.801613396898688,42.50009349219084]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Netherlands","adm0_a3":"NLD","geou_dif":0,"geounit":"Netherlands","gu_a3":"NLD","su_dif":0,"subunit":"Netherlands","su_a3":"NLD","brk_diff":0,"name":"Netherlands","name_long":"Netherlands","brk_a3":"NLD","brk_name":"Netherlands","brk_group":null,"abbrev":"Neth.","postal":"NL","formal_en":"Kingdom of the Netherlands","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Netherlands","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":16715999,"gdp_md_est":672000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"NL","iso_a3":"NLD","iso_n3":"528","un_a3":"528","wb_a2":"NL","wb_a3":"NLD","woe_id":-99,"adm0_a3_is":"NLD","adm0_a3_us":"NLD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"NLD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[6.074182570020923,53.510403347378144],[6.905139601274129,53.48216217713064],[7.092053256873896,53.14404328064489],[6.842869500362383,52.22844025329755],[6.589396599970826,51.852029120483394],[5.988658074577813,51.851615709025054],[6.156658155958779,50.80372101501058],[5.606975945670001,51.037298488969775],[4.973991326526914,51.475023708698124],[4.047071160507527,51.26725861266857],[3.314971144228537,51.34575511331991],[3.830288527043137,51.62054454203195],[4.705997348661185,53.09179840759776],[6.074182570020923,53.510403347378144]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Norway","sov_a3":"NOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Norway","adm0_a3":"NOR","geou_dif":0,"geounit":"Norway","gu_a3":"NOR","su_dif":0,"subunit":"Norway","su_a3":"NOR","brk_diff":0,"name":"Norway","name_long":"Norway","brk_a3":"NOR","brk_name":"Norway","brk_group":null,"abbrev":"Nor.","postal":"N","formal_en":"Kingdom of Norway","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Norway","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":8,"mapcolor13":12,"pop_est":4676305,"gdp_md_est":276400,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"NO","iso_a3":"NOR","iso_n3":"578","un_a3":"578","wb_a2":"NO","wb_a3":"NOR","woe_id":-99,"adm0_a3_is":"NOR","adm0_a3_us":"NOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NOR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[28.165547316202915,71.18547435168051],[31.29341840996548,70.45378774685992],[30.005435011522792,70.1862588568849],[31.10107872897512,69.55808014594486],[29.399580519332886,69.15691600206307],[28.591929559043194,69.0647769232867],[29.01557295097197,69.76649119737797],[27.73229210786789,70.16419302029628],[26.1796220232263,69.82529897732616],[25.68921268077639,69.09211375596902],[24.73567915212672,68.64955678982145],[23.662049594830762,68.89124746365053],[22.356237827247412,68.84174144151494],[21.24493615081073,69.37044302029312],[20.64559288908958,69.10624726020085],[20.025268995857914,69.06513865831272],[19.878559604581255,68.40719432237262],[17.99386844246439,68.56739126247734],[17.729181756265348,68.01055186631623],[16.76887861498554,68.01393667263139],[16.108712192456835,67.3024555528369],[15.108411492583059,66.19386688909543],[13.55568973150909,64.78702769638147],[13.919905226302205,64.44542064071611],[13.57191613124877,64.04911408146967],[12.57993533697393,64.06621898055835],[11.93056928879423,63.128317572676984],[11.992064243221535,61.800362453856565],[12.631146681375242,61.29357168237009],[12.3003658382749,60.11793284773006],[11.468271925511175,59.432393296946],[11.027368605196926,58.856149400459394],[10.356556837616097,59.46980703392538],[8.382000359743643,58.31328847923328],[7.048748406613299,58.07888418235728],[5.665835402050419,58.58815542259367],[5.308234490590735,59.66323191999382],[4.992078077829007,61.970998033284275],[5.912900424837885,62.614472968182696],[8.553411085655766,63.45400828719647],[10.527709181366788,64.48603831649748],[12.358346795306375,65.87972585719316],[14.761145867581604,67.81064158799515],[16.43592736172897,68.56320547146169],[19.184028354578516,69.81744415961782],[21.378416375420613,70.25516937934606],[23.023742303161583,70.20207184516626],[24.546543409938522,71.03049673123724],[26.370049676221807,70.98626170519537],[28.165547316202915,71.18547435168051]]],[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[21.41611,77.93504],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[25.447625359811894,80.40734039989451],[27.4075057309135,80.05640574820046],[25.92465050629818,79.51783397085455],[23.02446577321362,79.4000117052291],[20.075188429451885,79.56682322866726],[19.897266473070914,79.84236196564751],[18.462263624757924,79.85988027619442],[17.368015170977458,80.31889618602702],[20.455992059010697,80.59815562613224],[21.9079447771154,80.35767934846209],[22.919252557067438,80.65714427359349],[25.447625359811894,80.40734039989451]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Poland","sov_a3":"POL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Poland","adm0_a3":"POL","geou_dif":0,"geounit":"Poland","gu_a3":"POL","su_dif":0,"subunit":"Poland","su_a3":"POL","brk_diff":0,"name":"Poland","name_long":"Poland","brk_a3":"POL","brk_name":"Poland","brk_group":null,"abbrev":"Pol.","postal":"PL","formal_en":"Republic of Poland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Poland","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":1,"mapcolor13":2,"pop_est":38482919,"gdp_md_est":667900,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"PL","iso_a3":"POL","iso_n3":"616","un_a3":"616","wb_a2":"PL","wb_a3":"POL","woe_id":-99,"adm0_a3_is":"POL","adm0_a3_us":"POL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"POL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[15.01699588385867,51.10667409932158],[14.607098422919535,51.745188096719964],[14.685026482815688,52.0899474147552],[14.4375997250022,52.62485016540838],[14.074521111719491,52.98126251892543],[14.353315463934138,53.24817129171297],[14.119686313542587,53.75702912049103],[14.802900424873458,54.05070628520575],[16.36347700365573,54.513158677785725],[17.622831658608675,54.85153595643291],[18.62085859546164,54.68260569927078],[18.696254510175464,54.43871877706929],[19.660640089606403,54.42608388937393],[20.892244500418624,54.31252492941253],[22.731098667092652,54.327536932993326],[23.24398725758951,54.22056671814914],[23.48412763844985,53.91249766704114],[23.527535841575002,53.470121568406555],[23.80493493011778,53.089731350306074],[23.799198846133375,52.69109935160657],[23.199493849386187,52.486977444053664],[23.508002150168693,52.02364655212473],[23.52707075368437,51.57845408793023],[24.029985792748903,50.70540660257518],[23.922757195743262,50.42488108987875],[23.426508416444392,50.30850576435745],[22.518450148211603,49.47677358661974],[22.776418898212626,49.02739533140962],[22.558137648211755,49.085738023467144],[21.607808058364213,49.47010732685409],[20.887955356538413,49.32877228453583],[20.41583947111985,49.43145335549977],[19.825022820726872,49.21712535256923],[19.320712517990472,49.571574001659194],[18.909574822676316,49.435845852244576],[18.853144158613617,49.49622976337764],[18.392913852622172,49.98862864847075],[17.64944502123899,50.049038397819956],[17.55456709155112,50.36214590107641],[16.868769158605655,50.47397370055603],[16.719475945714436,50.21574656839354],[16.176253289462267,50.42260732685791],[16.23862674323857,50.69773265237984],[15.490972120839727,50.78472992614321],[15.01699588385867,51.10667409932158]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Portugal","sov_a3":"PRT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Portugal","adm0_a3":"PRT","geou_dif":0,"geounit":"Portugal","gu_a3":"PRT","su_dif":1,"subunit":"Portugal","su_a3":"PR1","brk_diff":0,"name":"Portugal","name_long":"Portugal","brk_a3":"PR1","brk_name":"Portugal","brk_group":null,"abbrev":"Port.","postal":"P","formal_en":"Portuguese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Portugal","name_alt":null,"mapcolor7":1,"mapcolor8":7,"mapcolor9":1,"mapcolor13":4,"pop_est":10707924,"gdp_md_est":208627,"pop_year":-99,"lastcensus":2011,"gdp_year":0,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"PT","iso_a3":"PRT","iso_n3":"620","un_a3":"620","wb_a2":"PT","wb_a3":"PRT","woe_id":-99,"adm0_a3_is":"PRT","adm0_a3_us":"PRT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"PRT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-9.034817674180246,41.88057058365967],[-8.67194576662672,42.13468943945496],[-8.263856980817792,42.28046865495034],[-8.013174607769912,41.790886135417125],[-7.422512986673795,41.79207469335983],[-7.251308966490824,41.91834605566505],[-6.668605515967656,41.883386949219584],[-6.389087693700915,41.381815497394655],[-6.851126674822552,41.11108266861753],[-6.864019944679385,40.33087189387483],[-7.026413133156595,40.184524237624245],[-7.066591559263529,39.71189158788277],[-7.498632371439725,39.62957103124181],[-7.098036668313128,39.03007274022378],[-7.374092169616318,38.37305858006492],[-7.029281175148796,38.07576406508977],[-7.166507941099865,37.803894354802225],[-7.537105475281024,37.42890432387623],[-7.453725551778092,37.09778758396607],[-7.855613165711985,36.83826854099627],[-8.382816127953689,36.97888011326246],[-8.898856980820327,36.86880931248078],[-8.746101446965554,37.65134552667661],[-8.839997524439879,38.26624339451761],[-9.287463751655224,38.3584858261586],[-9.526570603869715,38.73742910415491],[-9.446988898140232,39.39206614842837],[-9.048305223008427,39.75509308527877],[-8.977353481471681,40.15930613866581],[-8.768684047877102,40.76063894303019],[-8.79085323733031,41.18433401139126],[-8.99078935386757,41.54345937760364],[-9.034817674180246,41.88057058365967]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Romania","sov_a3":"ROU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Romania","adm0_a3":"ROU","geou_dif":0,"geounit":"Romania","gu_a3":"ROU","su_dif":0,"subunit":"Romania","su_a3":"ROU","brk_diff":0,"name":"Romania","name_long":"Romania","brk_a3":"ROU","brk_name":"Romania","brk_group":null,"abbrev":"Rom.","postal":"RO","formal_en":"Romania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Romania","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":3,"mapcolor13":13,"pop_est":22215421,"gdp_md_est":271400,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RO","iso_a3":"ROU","iso_n3":"642","un_a3":"642","wb_a2":"RO","wb_a3":"ROM","woe_id":-99,"adm0_a3_is":"ROU","adm0_a3_us":"ROU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ROU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.710531447040495,47.88219391538941],[23.142236362406802,48.09634105080695],[23.76095828623741,47.985598456405455],[24.40205610525038,47.98187775328042],[24.866317172960578,47.73752574318831],[25.20774336111299,47.89105642352747],[25.9459411964024,47.987148749374214],[26.19745039236693,48.22088125263035],[26.619336785597795,48.22072622333347],[26.924176059687568,48.123264472030996],[27.233872918412743,47.82677094175638],[27.551166212684848,47.40511709247083],[28.128030226359044,46.810476386088254],[28.160017937947714,46.37156260841722],[28.0544429867754,45.944586086605625],[28.233553501099042,45.48828318946837],[28.679779493939378,45.304030870131704],[29.149724969201653,45.46492544207245],[29.603289015427432,45.293308010431126],[29.626543409958767,45.03539093686239],[29.141611769331835,44.82021027279904],[28.837857700320203,44.913873806328056],[28.558081495891997,43.70746165625813],[27.970107049275075,43.81246816667521],[27.242399529740908,44.175986029632405],[26.065158725699746,43.94349376075126],[25.569271681426926,43.68844472917472],[24.100679152124172,43.74105133724785],[23.33230228037632,43.89701080990471],[22.944832391051847,43.82378530534713],[22.65714969248299,44.23492300066128],[22.4740084164406,44.40922760678177],[22.705725538837356,44.57800283464702],[22.459022251075936,44.7025171982543],[22.14508792490281,44.47842234962059],[21.562022739353605,44.7689472519655],[21.483526238702233,45.18117015235778],[20.874312778413355,45.416375433934235],[20.762174920339987,45.734573065771436],[20.220192498462836,46.127468980486555],[21.02195234547125,46.3160879583519],[21.62651492685387,46.99423777931816],[22.099767693782834,47.6724392767167],[22.710531447040495,47.88219391538941]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Russia","sov_a3":"RUS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Russia","adm0_a3":"RUS","geou_dif":0,"geounit":"Russia","gu_a3":"RUS","su_dif":0,"subunit":"Russia","su_a3":"RUS","brk_diff":0,"name":"Russia","name_long":"Russian Federation","brk_a3":"RUS","brk_name":"Russia","brk_group":null,"abbrev":"Rus.","postal":"RUS","formal_en":"Russian Federation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Russian Federation","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":7,"mapcolor13":7,"pop_est":140041247,"gdp_md_est":2266000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RU","iso_a3":"RUS","iso_n3":"643","un_a3":"643","wb_a2":"RU","wb_a3":"RUS","woe_id":-99,"adm0_a3_is":"RUS","adm0_a3_us":"RUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":18,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"RUS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[143.64800744036287,50.74760040954151],[144.65414757708564,48.976390692737596],[143.17392785051723,49.30655141865037],[142.5586682476501,47.861575018904915],[143.53349246640406,46.83672801369249],[143.5052771343726,46.13790761980948],[142.74770063697392,46.74076487892657],[142.0920300640545,45.96675527605879],[141.90692508358504,46.80592886004655],[142.0184428244709,47.780132961612935],[141.90444461483506,48.85918854429956],[142.13580000220568,49.61516307229746],[142.1799833518153,50.95234243428192],[141.59407596249002,51.93543488220254],[141.68254601457366,53.30196645772878],[142.60693403541075,53.762145087287905],[142.2097489768154,54.22547597921687],[142.654786411713,54.36588084575388],[142.91461551327657,53.704577541714734],[143.26084760963207,52.74076040303905],[143.23526777564766,51.75666026468875],[143.64800744036287,50.74760040954151]]],[[[22.731098667092652,54.327536932993326],[20.892244500418652,54.312524929412575],[19.660640089606403,54.426083889373984],[19.888481479581344,54.8661603867715],[21.2684489275035,55.19048167583528],[22.315723504330606,55.0152985703659],[22.757763706155288,54.85657440858142],[22.651051873472568,54.58274099386671],[22.731098667092652,54.327536932993326]]],[[[-175.01425,66.58435],[-174.33983,66.33556],[-174.57182,67.06219],[-171.85731,66.91308],[-169.89958,65.97724],[-170.89107,65.54139],[-172.53025,65.43791],[-172.555,64.46079],[-172.95533,64.25269],[-173.89184,64.2826],[-174.65392,64.63125],[-175.98353,64.92288],[-176.20716,65.35667],[-177.22266,65.52024],[-178.35993,65.39052],[-178.90332,65.74044],[-178.68611,66.11211],[-179.88377,65.87456],[-179.43268,65.40411],[-180,64.97970870219837],[-180,68.96363636363635],[-177.55,68.2],[-174.92825,67.20589],[-175.01425,66.58435]]],[[[180.00000000000014,70.83219920854668],[178.9034250000001,70.78114],[178.7253,71.0988],[180.00000000000014,71.51571433642826],[180.00000000000014,70.83219920854668]]],[[[-178.69378,70.89302],[-180,70.83219920854668],[-180,71.51571433642826],[-179.871875,71.55762],[-179.02433,71.55553],[-177.577945,71.26948],[-177.663575,71.13277],[-178.69378,70.89302]]],[[[143.60385,73.21244],[142.08763,73.20544],[140.038155,73.31692],[139.86312,73.36983],[140.81171,73.76506],[142.06207,73.85758],[143.48283,73.47525],[143.60385,73.21244]]],[[[150.73167,75.08406],[149.575925,74.68892],[147.977465,74.778355],[146.11919,75.17298],[146.358485,75.49682],[148.22223,75.345845],[150.73167,75.08406]]],[[[145.086285,75.562625],[144.3,74.82],[140.61381,74.84768],[138.95544,74.61148],[136.97439,75.26167],[137.51176,75.94917],[138.831075,76.13676],[141.471615,76.09289],[145.086285,75.562625]]],[[[57.5356925799924,70.72046397570216],[56.94497928246395,70.63274323188668],[53.6773751157842,70.76265778266847],[53.41201663596539,71.2066616889202],[51.60189456564572,71.47475901965049],[51.45575361512422,72.01488108996514],[52.47827518088357,72.22944163684096],[52.444168735570855,72.77473135038485],[54.42761355979766,73.62754751249759],[53.50828982932515,73.74981395130015],[55.90245893740766,74.62748647734533],[55.631932814359715,75.08141225859717],[57.86864383324885,75.60939036732321],[61.170044386647504,76.25188345000814],[64.49836836127022,76.43905548776928],[66.2109770038551,76.80978221303124],[68.15705976753483,76.93969676381292],[68.85221113472512,76.54481130645462],[68.18057254422766,76.23364166940911],[64.637326287703,75.73775462513623],[61.58350752141476,75.2608845079468],[58.47708214705338,74.30905630156283],[56.98678551618801,73.33304352486624],[55.419335971910954,72.37126760526598],[55.622837762276305,71.54059479439033],[57.5356925799924,70.72046397570216]]],[[[106.97013000000013,76.97419],[107.24000000000015,76.48],[108.1538,76.72335000000015],[111.07726000000017,76.71],[113.33151,76.22224],[114.13417,75.84764],[113.88539,75.32779000000014],[112.77918,75.03186],[110.1512500000002,74.47673],[109.4,74.18],[110.64,74.04],[112.11919,73.78774000000011],[113.01954000000026,73.97693000000015],[113.52958000000032,73.33505000000011],[113.96881,73.59488],[115.56782,73.75285],[118.77633000000023,73.58772],[119.02,73.12],[123.20066000000011,72.97122],[123.25777000000018,73.73503000000011],[125.38000000000018,73.56],[126.97644,73.56549],[128.59126,73.03871],[129.05157,72.39872],[128.46000000000012,71.98],[129.7159900000002,71.19304],[131.28858000000028,70.78699000000012],[132.25350000000017,71.83630000000011],[133.85766000000032,71.38642000000016],[135.56193,71.65525000000014],[137.49755,71.34763],[138.23409000000018,71.62803],[139.86983000000012,71.48783000000014],[139.14791,72.4161900000001],[140.46817,72.84941000000013],[149.5,72.2],[150.3511800000002,71.60643],[152.96890000000022,70.84222],[157.00688,71.03141],[158.99779,70.86672],[159.83031000000025,70.45324],[159.70866,69.72198],[160.94053000000034,69.4372800000001],[162.27907000000013,69.64204],[164.05248000000014,69.66823],[165.94037000000023,69.47199],[167.83567,69.58269],[169.5776300000002,68.6938],[170.81688000000028,69.01363],[170.0082000000002,69.65276],[170.4534500000003,70.09703],[173.64391000000026,69.81743],[175.72403000000023,69.87725000000023],[178.6,69.4],[180.00000000000014,68.96363636363657],[180.00000000000014,64.97970870219848],[179.99281,64.97433],[178.70720000000026,64.53493],[177.41128000000018,64.60821],[178.31300000000024,64.07593],[178.9082500000002,63.251970000000135],[179.37034,62.982620000000104],[179.48636,62.56894],[179.22825000000014,62.30410000000015],[177.3643,62.5219],[174.56929000000022,61.76915],[173.68013,61.65261],[172.15,60.95],[170.6985000000001,60.33618],[170.3308500000003,59.88177],[168.90046,60.57355],[166.29498000000032,59.788550000000214],[165.84000000000023,60.16],[164.87674,59.7316],[163.53929000000014,59.86871],[163.21711000000025,59.21101],[162.0173300000001,58.24328],[162.05297,57.83912],[163.19191,57.61503000000011],[163.05794000000017,56.159240000000125],[162.12958000000023,56.12219],[161.70146,55.285680000000156],[162.11749000000017,54.85514],[160.36877000000032,54.34433],[160.02173000000022,53.20257],[158.5309400000002,52.958680000000236],[158.23118,51.94269],[156.7897900000003,51.01105],[156.42000000000016,51.7],[155.99182,53.15895],[155.43366000000012,55.38103000000012],[155.91442000000032,56.767920000000146],[156.75815,57.3647],[156.8103500000001,57.83204],[158.3643300000002,58.05575],[160.15064000000012,59.31477000000012],[161.87204,60.34300000000013],[163.66969,61.1409],[164.47355000000013,62.55061],[163.2584200000002,62.46627],[162.65791,61.6425],[160.1214800000001,60.54423],[159.30232,61.77396],[156.7206800000001,61.43442],[154.21806000000035,59.75818000000013],[155.04375,59.14495],[152.81185,58.88385],[151.26573000000025,58.78089],[151.33815000000013,59.50396],[149.78371,59.65573000000014],[148.54481,59.16448],[145.48722,59.33637],[142.19782000000018,59.03998],[138.95848000000032,57.08805],[135.12619,54.72959],[136.70171,54.603550000000126],[137.19342,53.97732],[138.1647,53.755010000000254],[138.80463,54.25455000000011],[139.90151,54.18968000000018],[141.34531,53.08957000000012],[141.37923,52.23877],[140.5974200000002,51.2396700000001],[140.51308,50.04553000000013],[140.06193000000022,48.44671000000017],[138.5547200000002,46.99965],[138.21971,46.30795],[136.86232,45.14350000000019],[135.5153500000002,43.989],[134.86939000000027,43.39821],[133.53687000000028,42.81147],[132.90627000000015,42.79849],[132.27807000000027,43.28456000000011],[130.93587000000014,42.55274],[130.78,42.22000000000019],[130.64000000000019,42.395],[130.6338664084098,42.90301463477056],[131.144687941615,42.92998973242695],[131.28855512911562,44.111519680348266],[131.02519000000026,44.96796],[131.8834542176596,45.32116160743652],[133.09712000000022,45.14409],[133.7696439963132,46.116926988299156],[134.1123500000002,47.21248000000014],[134.50081,47.578450000000146],[135.0263114767868,48.47822988544391],[133.37359581922803,48.18344167743484],[132.50669000000013,47.78896],[130.98726000000013,47.79013],[130.58229332898267,48.729687404976204],[129.3978178244205,49.440600084015614],[127.65740000000038,49.76027],[127.28745568248493,50.73979726826545],[126.93915652883786,51.3538941514059],[126.56439904185699,51.7842554795327],[125.94634891164647,52.79279857035695],[125.06821129771045,53.161044826868924],[123.57147,53.4588],[122.24574791879307,53.43172597921369],[121.00308475147037,53.25140106873124],[120.1770886577169,52.75388621684121],[120.725789015792,52.51622630473091],[120.7382,51.96411],[120.18208000000018,51.64355],[119.27939,50.58292],[119.28846072802585,50.14288279886196],[117.8792444194265,49.51098338479704],[116.67880089728621,49.888531399121405],[115.48569542853144,49.80517731383475],[114.96210981655038,50.14024730081513],[114.36245649623534,50.248302720737485],[112.89773969935439,49.54356537535699],[111.58123091028668,49.37796824807767],[110.66201053267886,49.13012807880585],[109.40244917199672,49.29296051695769],[108.47516727095127,49.28254771585071],[107.86817589725112,49.79370514586588],[106.88880415245532,50.27429596618029],[105.8865914245869,50.406019192092174],[104.62158,50.275320000000164],[103.67654544476036,50.089966132195144],[102.25589000000011,50.51056000000011],[102.06521,51.25991],[100.88948042196265,51.51685578063842],[99.98173221232356,51.63400625264395],[98.8614905131005,52.04736603454671],[97.82573978067452,51.01099518493325],[98.23176150919173,50.42240062112873],[97.25976000000023,49.72605],[95.81402000000017,49.977460000000114],[94.81594933469879,50.01343333597088],[94.14756635943561,50.48053660745716],[93.10421,50.49529],[92.23471154171969,50.80217072204175],[90.71366743364078,50.331811835321105],[88.80556684769559,49.47052073831247],[87.75126427607685,49.29719798440556],[87.35997033076269,49.21498078062916],[86.82935672398966,49.82667470966813],[85.5412699726825,49.69285858824816],[85.11555952346211,50.11730296487763],[84.41637739455304,50.311399644565824],[83.93511478061893,50.88924551045358],[83.38300377801247,51.069182847693895],[81.94598554883994,50.81219594990633],[80.56844689323546,51.38833649352844],[80.03555952344172,50.864750881547224],[77.80091556184433,53.40441498474754],[76.52517947785478,54.177003485727134],[76.89110029491346,54.49052440044193],[74.38482000000013,53.54685000000011],[73.42567874542053,53.489810289109755],[73.50851606638437,54.035616766976595],[72.22415001820221,54.37665538188679],[71.1801310566095,54.133285224008254],[70.86526655465516,55.169733588270105],[69.06816694527289,55.3852501491435],[68.1691003762589,54.97039175070438],[65.6668700000001,54.601250000000164],[65.17853356309595,54.35422781027208],[61.43660000000013,54.00625],[60.97806644068325,53.66499339457914],[61.699986199800634,52.97999644633427],[60.739993117114544,52.71998647725775],[60.92726850774025,52.447548326215006],[59.96753380721557,51.960420437215674],[61.58800337102414,51.272658799843185],[61.33742435084101,50.79907013610426],[59.93280724471557,50.842194118851836],[59.64228234237057,50.545442206415714],[58.36332000000013,51.06364],[56.77798,51.04355],[55.71694000000011,50.62171000000015],[54.532878452376195,51.02623973245937],[52.32872358583106,51.718652248738096],[50.76664839051219,51.69276235615987],[48.702381626181044,50.60512848571284],[48.577841424357615,49.874759629915644],[47.549480421749394,50.454698391311126],[46.75159630716277,49.35600576435374],[47.0436715024766,49.152038886097586],[46.46644575377629,48.39415233010493],[47.31524000000016,47.71585],[48.05725,47.74377],[48.694733514201886,47.0756281601779],[48.593250000000154,46.561040000000105],[49.101160000000135,46.39933],[48.64541000000011,45.80629],[47.67591,45.64149000000012],[46.68201,44.6092000000001],[47.59094,43.66016000000013],[47.49252,42.98658],[48.58437000000018,41.80888],[47.98728315612604,41.4058192001944],[47.81566572448466,41.151416124021345],[47.373315464066394,41.21973236751114],[46.686070591016716,41.827137152669906],[46.40495079934894,41.860675157227426],[45.7764,42.09244000000024],[45.470279168485916,42.50278066667005],[44.53762291848207,42.711992702803684],[43.93121000000011,42.5549600000001],[43.755990000000196,42.74083],[42.39440000000016,43.2203],[40.92219000000014,43.38215000000014],[40.07696495947985,43.553104153002494],[39.955008579271095,43.434997666999294],[38.68,44.28],[37.53912000000011,44.65721],[36.67546000000013,45.24469],[37.40317,45.4045100000001],[38.23295,46.24087],[37.67372,46.63657],[39.14767,47.04475000000013],[39.12120000000013,47.26336],[38.22353803889948,47.10218984637598],[38.25511233902981,47.54640045835697],[38.77057,47.82562000000024],[39.738277622238996,47.89893707945208],[39.89562000000015,48.23241],[39.67465,48.783820000000134],[40.08078901546949,49.30742991799937],[40.069040000000115,49.60105],[38.59498823421356,49.92646190042373],[38.010631137857075,49.91566152607473],[37.39345950699524,50.38395335550368],[36.626167840325394,50.225590928745135],[35.35611616388812,50.57719737405915],[35.37791,50.77394],[35.02218305841794,51.2075723333715],[34.2248157081544,51.255993150428935],[34.14197838719061,51.566413479206204],[34.39173058445723,51.768881740925906],[33.75269982273588,52.33507457133166],[32.71576053236716,52.23846548116216],[32.41205813978777,52.28869497334977],[32.15944000000022,52.061250000000115],[31.78597,52.10168],[31.54001834486226,52.74205231384644],[31.30520063652798,53.0739958766733],[31.49764,53.16743000000014],[32.304519484188376,53.132726141972846],[32.693643019346126,53.35142080343214],[32.405598585751164,53.618045355842014],[31.731272820774592,53.79402944601202],[31.791424187962406,53.974638576872195],[31.384472283663822,54.15705638286238],[30.75753380709878,54.811770941784395],[30.971835971813245,55.081547756564134],[30.87390913262007,55.55097646750351],[29.89629438652244,55.7894632025305],[29.37157189303079,55.67009064393628],[29.22951338066039,55.91834422466641],[28.17670942557794,56.16912995057879],[27.855282016722526,56.75932648378438],[27.770015903440992,57.244258124411196],[27.288184848751655,57.47452830670392],[27.71668582531578,57.79189911562445],[27.420150000000202,58.72457000000014],[28.131699253051863,59.300825100331],[27.98112,59.47537],[29.1177,60.02805000000012],[28.07,60.50352000000015],[30.211107212044652,61.78002777774969],[31.139991082491036,62.357692776124445],[31.51609215671127,62.867687486412905],[30.035872430142803,63.552813625738565],[30.444684686003736,64.20445343693908],[29.544429559047018,64.94867157659056],[30.21765,65.80598],[29.054588657352383,66.94428620062203],[29.977426385220696,67.69829702419275],[28.44594363781877,68.36461294216399],[28.591929559043365,69.0647769232867],[29.39955,69.15692000000018],[31.10108000000011,69.55811],[32.13272000000026,69.90595000000025],[33.77547,69.30142000000012],[36.51396,69.06342],[40.292340000000166,67.9324],[41.059870000000124,67.4571300000001],[41.12595000000019,66.79158000000012],[40.01583,66.26618000000013],[38.38295,65.9995300000001],[33.918710000000175,66.75961],[33.18444,66.63253],[34.81477,65.90015000000014],[34.87857425307877,65.4362128770482],[34.94391000000015,64.41437000000016],[36.23129,64.10945],[37.01273000000012,63.84983000000011],[37.14197000000016,64.33471],[36.539579035089815,64.76446],[37.17604000000014,65.14322000000013],[39.59345,64.52079000000018],[40.43560000000011,64.76446],[39.76260000000016,65.49682],[42.0930900000001,66.47623],[43.01604000000012,66.41858],[43.94975000000014,66.06908],[44.53226,66.75634000000014],[43.69839,67.35245],[44.18795000000014,67.95051],[43.45282,68.57079],[46.25000000000014,68.25],[46.82134000000016,67.68997],[45.55517,67.56652],[45.5620200000001,67.01005000000019],[46.34915000000015,66.6676700000001],[47.894160000000255,66.88455000000016],[48.13876,67.52238],[50.22766000000016,67.99867000000013],[53.71743000000018,68.85738000000012],[54.47171,68.80815],[53.48582000000013,68.20131],[54.72628,68.09702],[55.44268000000014,68.43866],[57.317020000000156,68.46628],[58.80200000000021,68.88082],[59.94142000000019,68.2784400000001],[61.07784000000018,68.94069],[60.03,69.52],[60.55,69.85],[63.50400000000016,69.54739],[64.888115,69.23483500000013],[68.51216000000014,68.09233000000017],[69.18068,68.61563000000012],[68.16444,69.14436],[68.13522,69.35649],[66.93008000000012,69.45461000000012],[67.25976,69.92873],[66.72492000000014,70.70889000000014],[66.69466,71.02897000000024],[68.54006000000011,71.93450000000024],[69.19636000000011,72.84336000000016],[69.94,73.04000000000013],[72.58754,72.7762900000001],[72.79603,72.22006],[71.8481100000001,71.40898],[72.47011,71.09019],[72.79188,70.39114],[72.56470000000022,69.02085],[73.66787,68.4079],[73.2387,67.7404],[71.28000000000011,66.32000000000016],[72.42301000000018,66.17267000000018],[72.82077,66.53267],[73.92099000000016,66.78946000000013],[74.1865100000002,67.28429],[75.052,67.76047000000017],[74.46926000000016,68.32899],[74.93584000000013,68.98918],[73.84236,69.07146],[73.60187000000022,69.62763],[74.3998,70.63175],[73.1011,71.44717000000026],[74.89082000000022,72.12119],[74.65926,72.83227],[75.15801000000019,72.85497000000011],[75.68351,72.30056000000013],[75.28898000000012,71.33556],[76.35911,71.15287000000015],[75.90313000000017,71.87401],[77.57665000000011,72.26717],[79.65202000000014,72.32011],[81.5,71.75],[80.61071000000013,72.58285000000012],[80.51109,73.6482],[82.25,73.85000000000011],[84.65526,73.80591000000018],[86.82230000000024,73.93688],[86.00956,74.45967000000014],[87.16682000000017,75.11643],[88.31571000000011,75.14393],[90.26,75.64],[92.90058,75.77333],[93.23421000000016,76.0472],[95.86000000000016,76.14],[96.67821,75.91548],[98.92254000000023,76.44689],[100.75967000000023,76.43028],[101.03532,76.86189],[101.99084000000013,77.2875400000002],[104.3516000000001,77.69792],[106.06664000000013,77.37389],[104.70500000000024,77.1274],[106.97013000000013,76.97419]]],[[[105.07547,78.30689],[99.43814,77.921],[101.2649,79.23399],[102.08635,79.34641],[102.837815,79.28129],[105.37243,78.71334],[105.07547,78.30689]]],[[[51.13618655783128,80.54728017854093],[49.79368452332071,80.4154277615482],[48.89441124857754,80.3395667589437],[48.754936557821765,80.17546824820084],[47.586119012244154,80.01018117951533],[46.502825962109654,80.24724681265437],[47.07245527526291,80.55942414012945],[44.846958042181114,80.58980988231718],[46.79913862487123,80.77191762971364],[48.318477410684665,80.78400991486996],[48.522806023966695,80.51456899690015],[49.09718956889091,80.75398590770843],[50.03976769389462,80.91888540315182],[51.52293297710369,80.6997256538019],[51.13618655783128,80.54728017854093]]],[[[99.93976,78.88094],[97.75794,78.7562],[94.97259,79.044745],[93.31288,79.4265],[92.5454,80.14379],[91.18107,80.34146],[93.77766,81.0246],[95.940895,81.2504],[97.88385,80.746975],[100.186655,79.780135],[99.93976,78.88094]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Republic of Serbia","sov_a3":"SRB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Republic of Serbia","adm0_a3":"SRB","geou_dif":0,"geounit":"Republic of Serbia","gu_a3":"SRB","su_dif":0,"subunit":"Republic of Serbia","su_a3":"SRB","brk_diff":0,"name":"Serbia","name_long":"Serbia","brk_a3":"SRB","brk_name":"Serbia","brk_group":null,"abbrev":"Serb.","postal":"RS","formal_en":"Republic of Serbia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Serbia","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":2,"mapcolor13":10,"pop_est":7379339,"gdp_md_est":80340,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RS","iso_a3":"SRB","iso_n3":"688","un_a3":"688","wb_a2":"YF","wb_a3":"SRB","woe_id":-99,"adm0_a3_is":"SRB","adm0_a3_us":"SRB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SRB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.87431277841341,45.41637543393432],[21.48352623870221,45.18117015235788],[21.562022739353722,44.76894725196564],[22.145087924902896,44.47842234962059],[22.459022251075965,44.70251719825444],[22.70572553883744,44.57800283464701],[22.474008416440654,44.40922760678177],[22.657149692483074,44.234923000661354],[22.410446404721597,44.008063462900054],[22.500156691180223,43.642814439461006],[22.986018507588483,43.2111612005271],[22.60480146657136,42.898518785161116],[22.43659467946139,42.58032115332394],[22.54501183440965,42.46136200618804],[22.38052575042468,42.32025950781508],[21.917080000000112,42.30364],[21.57663598940212,42.24522439706186],[21.54332,42.3202500000001],[21.66292,42.43922],[21.77505,42.6827],[21.63302,42.67717],[21.43866,42.86255],[21.27421,42.90959],[21.143395,43.06868500000012],[20.95651,43.13094],[20.81448,43.27205],[20.63508,43.21671],[20.49679,42.88469],[20.25758,42.81275000000011],[20.3398,42.89852],[19.95857,43.10604],[19.63,43.21377997027054],[19.48389,43.35229],[19.21852,43.52384],[19.454,43.56810000000013],[19.59976,44.03847],[19.11761,44.42307000000011],[19.36803,44.863],[19.00548,44.86023],[19.39047570158459,45.236515611342384],[19.072768995854176,45.52151113543209],[18.82982,45.90888],[19.59604454924164,46.171729844744554],[20.220192498462893,46.12746898048658],[20.762174920339987,45.734573065771485],[20.87431277841341,45.41637543393432]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Slovakia","sov_a3":"SVK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Slovakia","adm0_a3":"SVK","geou_dif":0,"geounit":"Slovakia","gu_a3":"SVK","su_dif":0,"subunit":"Slovakia","su_a3":"SVK","brk_diff":0,"name":"Slovakia","name_long":"Slovakia","brk_a3":"SVK","brk_name":"Slovakia","brk_group":null,"abbrev":"Svk.","postal":"SK","formal_en":"Slovak Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovak Republic","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":4,"mapcolor13":9,"pop_est":5463046,"gdp_md_est":119500,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"SK","iso_a3":"SVK","iso_n3":"703","un_a3":"703","wb_a2":"SK","wb_a3":"SVK","woe_id":-99,"adm0_a3_is":"SVK","adm0_a3_us":"SVK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SVK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[18.853144158613617,49.49622976337764],[18.909574822676316,49.435845852244576],[19.320712517990472,49.571574001659194],[19.825022820726872,49.21712535256923],[20.41583947111985,49.43145335549977],[20.887955356538413,49.32877228453583],[21.607808058364213,49.47010732685409],[22.558137648211755,49.085738023467144],[22.28084191253356,48.82539215758067],[22.08560835133485,48.42226430927179],[21.872236362401736,48.31997081155002],[20.801293979584926,48.623854071642384],[20.473562045989866,48.56285004332181],[20.239054396249347,48.32756724709692],[19.769470656013112,48.202691148463614],[19.661363559658497,48.26661489520866],[19.17436486173989,48.11137889260387],[18.77702477384767,48.081768296900634],[18.696512892336926,47.880953681014404],[17.857132602620027,47.758428860050365],[17.48847293464982,47.86746613218621],[16.979666782304037,48.123497015976305],[16.879982944413,48.47001333270947],[16.960288120194576,48.5969823268506],[17.101984897538898,48.81696889911711],[17.545006951577108,48.80001902932537],[17.88648481616181,48.90347524677371],[17.913511590250465,48.996492824899086],[18.104972771891852,49.04398346617531],[18.170498488037964,49.271514797556435],[18.399993523846177,49.31500051533004],[18.554971144289482,49.49501536721878],[18.853144158613617,49.49622976337764]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Slovenia","sov_a3":"SVN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Slovenia","adm0_a3":"SVN","geou_dif":0,"geounit":"Slovenia","gu_a3":"SVN","su_dif":0,"subunit":"Slovenia","su_a3":"SVN","brk_diff":0,"name":"Slovenia","name_long":"Slovenia","brk_a3":"SVN","brk_name":"Slovenia","brk_group":null,"abbrev":"Slo.","postal":"SLO","formal_en":"Republic of Slovenia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovenia","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":2,"mapcolor13":12,"pop_est":2005692,"gdp_md_est":59340,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"SI","iso_a3":"SVN","iso_n3":"705","un_a3":"705","wb_a2":"SI","wb_a3":"SVN","woe_id":-99,"adm0_a3_is":"SVN","adm0_a3_us":"SVN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SVN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[13.806475457421527,46.509306138691215],[14.63247155117483,46.43181732846955],[15.137091912504985,46.65870270444703],[16.011663852612656,46.6836107448117],[16.202298211337364,46.85238597267696],[16.370504998447416,46.8413272161665],[16.564808383864857,46.50375092221983],[15.768732944408551,46.23810822202345],[15.671529575267556,45.83415355079788],[15.323953891672403,45.73178253842768],[15.327674594797427,45.45231639259323],[14.935243767972935,45.471695054702685],[14.595109490627804,45.634940904312714],[14.411968214585414,45.46616567644746],[13.715059848697221,45.50032379819237],[13.937630242578306,45.59101593686462],[13.698109978905478,46.01677806251735],[13.806475457421527,46.509306138691215]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sweden","sov_a3":"SWE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sweden","adm0_a3":"SWE","geou_dif":0,"geounit":"Sweden","gu_a3":"SWE","su_dif":0,"subunit":"Sweden","su_a3":"SWE","brk_diff":0,"name":"Sweden","name_long":"Sweden","brk_a3":"SWE","brk_name":"Sweden","brk_group":null,"abbrev":"Swe.","postal":"S","formal_en":"Kingdom of Sweden","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sweden","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":2,"mapcolor13":4,"pop_est":9059651,"gdp_md_est":344300,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"SE","iso_a3":"SWE","iso_n3":"752","un_a3":"752","wb_a2":"SE","wb_a3":"SWE","woe_id":-99,"adm0_a3_is":"SWE","adm0_a3_us":"SWE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SWE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.183173455501926,65.72374054632017],[21.21351687997722,65.02600535751527],[21.369631381930958,64.41358795842429],[19.77887576669022,63.60955434839504],[17.84777916837521,62.74940013289681],[17.119554884518124,61.34116567651097],[17.83134606290639,60.63658336042741],[18.78772179533209,60.081914374422595],[17.86922488777634,58.9537661810587],[16.829185011470088,58.71982697207339],[16.447709588291474,57.041118069071885],[15.879785597403783,56.10430186626866],[14.666681349352075,56.200885118222175],[14.100721062891465,55.40778107362265],[12.942910597392057,55.36173737245058],[12.625100538797028,56.30708018658197],[11.787942335668674,57.44181712506307],[11.027368605196866,58.85614940045936],[11.468271925511146,59.43239329694604],[12.3003658382749,60.11793284773003],[12.631146681375183,61.293571682370136],[11.992064243221563,61.80036245385656],[11.93056928879423,63.12831757267698],[12.579935336973932,64.06621898055833],[13.571916131248711,64.04911408146971],[13.919905226302204,64.44542064071608],[13.55568973150909,64.78702769638151],[15.108411492583002,66.19386688909547],[16.108712192456778,67.30245555283689],[16.768878614985482,68.01393667263139],[17.729181756265348,68.01055186631628],[17.993868442464333,68.56739126247736],[19.878559604581255,68.40719432237258],[20.025268995857886,69.0651386583127],[20.645592889089528,69.10624726020087],[21.978534783626117,68.6168456081807],[23.53947309743444,67.93600861273525],[23.565879754335583,66.39605093043743],[23.903378533633802,66.00692739527962],[22.183173455501926,65.72374054632017]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ukraine","sov_a3":"UKR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ukraine","adm0_a3":"UKR","geou_dif":0,"geounit":"Ukraine","gu_a3":"UKR","su_dif":0,"subunit":"Ukraine","su_a3":"UKR","brk_diff":0,"name":"Ukraine","name_long":"Ukraine","brk_a3":"UKR","brk_name":"Ukraine","brk_group":null,"abbrev":"Ukr.","postal":"UA","formal_en":"Ukraine","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ukraine","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":6,"mapcolor13":3,"pop_est":45700395,"gdp_md_est":339800,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"UA","iso_a3":"UKR","iso_n3":"804","un_a3":"804","wb_a2":"UA","wb_a3":"UKR","woe_id":-99,"adm0_a3_is":"UKR","adm0_a3_us":"UKR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"UKR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.785998162571587,52.101677964885454],[32.15941206231267,52.06126699483322],[32.41205813978763,52.28869497334975],[32.71576053236697,52.23846548116205],[33.7526998227357,52.335074571331695],[34.39173058445701,51.76888174092579],[34.14197838719039,51.56641347920623],[34.22481570815427,51.25599315042895],[35.02218305841788,51.20757233337145],[35.37792361831512,50.77395539001034],[35.35611616388795,50.577197374059054],[36.62616784032534,50.225590928745135],[37.39345950699507,50.38395335550359],[38.010631137856905,49.91566152607463],[38.59498823421342,49.92646190042363],[40.06905846533911,49.6010554062817],[40.08078901546935,49.307429917999286],[39.67466393408753,48.78381846780187],[39.89563235856758,48.23240509703143],[39.738277622238826,47.89893707945198],[38.7705847511412,47.825608222029814],[38.25511233902975,47.546400458356814],[38.22353803889942,47.10218984637588],[37.42513715998999,47.022220567404204],[36.75985477066439,46.698700263040934],[35.82368452326483,46.64596446388707],[34.96234174982388,46.27319651954964],[35.020787794745985,45.65121898048466],[35.51000857925317,45.40999339454619],[36.52999799983016,45.46998973243706],[36.33471276219916,45.113215643893966],[35.23999922052812,44.939996242851606],[33.882511020652885,44.36147858334407],[33.326420932760044,44.56487702084489],[33.54692426934946,45.03477081967489],[32.4541744321055,45.32746613217608],[32.630804477679135,45.519185695978905],[33.58816206231839,45.85156850848024],[33.29856733575471,46.080598456397844],[31.74414025241518,46.333347886737386],[31.675307244602408,46.70624502215554],[30.748748813609097,46.583100084004],[30.377608676888883,46.03241018328567],[29.603289015427432,45.293308010431126],[29.149724969201653,45.46492544207245],[28.679779493939378,45.304030870131704],[28.233553501099042,45.48828318946837],[28.485269402792767,45.5969070501459],[28.659987420371575,45.93998688413164],[28.93371748222162,46.2588304713725],[28.862972446414062,46.43788930926383],[29.072106967899295,46.517677720722496],[29.170653924279886,46.3792623968287],[29.75997195813639,46.34998769793536],[30.02465864433537,46.42393667254503],[29.838210076626297,46.52532583270169],[29.908851759569302,46.67436066343146],[29.559674106573112,46.928582872091326],[29.41513512545274,47.34664520933257],[29.05086795422733,47.51022695575249],[29.12269819511303,47.84909516050646],[28.670891147585163,48.1181485052341],[28.259546746541844,48.15556224221342],[27.522537469195154,48.467119452501116],[26.857823520624805,48.368210761094495],[26.619336785597795,48.22072622333347],[26.19745039236693,48.22088125263035],[25.9459411964024,47.987148749374214],[25.20774336111299,47.89105642352747],[24.866317172960578,47.73752574318831],[24.40205610525038,47.98187775328042],[23.76095828623741,47.985598456405455],[23.142236362406802,48.09634105080695],[22.710531447040495,47.88219391538941],[22.640819939878753,48.15023956968735],[22.08560835133485,48.42226430927179],[22.28084191253356,48.82539215758067],[22.558137648211755,49.085738023467144],[22.776418898212626,49.02739533140962],[22.518450148211603,49.47677358661974],[23.426508416444392,50.30850576435745],[23.922757195743262,50.42488108987875],[24.029985792748903,50.70540660257518],[23.52707075368437,51.57845408793023],[24.00507775238421,51.61744395609446],[24.553106316839518,51.888461005249184],[25.327787713327005,51.91065603291855],[26.337958611768556,51.83228872334793],[27.454066196408434,51.59230337178447],[28.24161502453657,51.57222707783907],[28.61761274589225,51.42771393493484],[28.99283532076353,51.602044379271476],[29.254938185347925,51.368234361366895],[30.157363722460897,51.41613841410147],[30.555117221811457,51.31950348571566],[30.619454380014844,51.822806098022376],[30.927549269338982,52.04235342061438],[31.785998162571587,52.101677964885454]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Country","admin":"Australia","adm0_a3":"AUS","geou_dif":0,"geounit":"Australia","gu_a3":"AUS","su_dif":0,"subunit":"Australia","su_a3":"AUS","brk_diff":0,"name":"Australia","name_long":"Australia","brk_a3":"AUS","brk_name":"Australia","brk_group":null,"abbrev":"Auz.","postal":"AU","formal_en":"Commonwealth of Australia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Australia","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":21262641,"gdp_md_est":800200,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"AU","iso_a3":"AUS","iso_n3":"036","un_a3":"036","wb_a2":"AU","wb_a3":"AUS","woe_id":-99,"adm0_a3_is":"AUS","adm0_a3_us":"AUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AUS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.39797814349484,-40.79254851660589],[146.36412072162372,-41.13769540788334],[146.90858361225085,-41.00054615658068],[147.68925947488415,-40.80825815202269],[148.28906782449602,-40.87543751400213],[148.35986453673584,-42.06244516374644],[148.0173014670731,-42.407023614268624],[147.9140519553538,-43.211522312188485],[147.564564243764,-42.93768889747386],[146.87034305235494,-43.634597263362096],[146.66332726459368,-43.58085377377856],[146.04837772032042,-43.54974456153889],[145.43192955951056,-42.69377613705627],[145.2950903668017,-42.03360971452756],[144.71807132383063,-41.162551771815714],[144.74375451067968,-40.70397511165771],[145.39797814349484,-40.79254851660589]]],[[[143.56181115129996,-13.763655694232213],[143.92209923723894,-14.548310642152003],[144.56371382057486,-14.171176039285882],[144.89490807513354,-14.594457696188625],[145.37472374896348,-14.984976495018286],[145.27199100156727,-15.428205254785695],[145.48525963763578,-16.285672295804773],[145.63703331927695,-16.784918308176614],[145.88890425026767,-16.90692636481765],[146.1603088726645,-17.761654554925244],[146.0636739442787,-18.28007252367732],[146.3874784690196,-18.95827402107591],[147.47108157774792,-19.48072275154668],[148.1776017600425,-19.95593922290277],[148.84841352762322,-20.39120981209726],[148.7174654481956,-20.633468926681516],[149.28942020080206,-21.260510756111103],[149.67833703023067,-22.342511895438392],[150.07738244038862,-22.12278370533332],[150.48293908101516,-22.556142266533012],[150.72726525289121,-22.40240488046466],[150.89955447815228,-23.462236830338682],[151.60917524638424,-24.076256198830762],[152.07353966695908,-24.457886651306197],[152.85519738180594,-25.267501316023015],[153.13616214417678,-26.07117319102619],[153.16194868389042,-26.641319268502443],[153.0929089703486,-27.26029957449451],[153.5694690289442,-28.1100668271021],[153.51210818910022,-28.995077406532758],[153.33909549378706,-29.458201592732447],[153.06924116435889,-30.350240166954816],[153.0896016786818,-30.923641859665448],[152.8915775901394,-31.640445651985956],[152.45000247620536,-32.550002536755244],[151.70911746643682,-33.041342054986345],[151.34397179586242,-33.81602345147385],[151.01055545471516,-34.310360202777886],[150.71413943908905,-35.17345997491681],[150.32821984273326,-35.67187916437193],[150.07521203023228,-36.42020558039051],[149.94612430236717,-37.10905242284123],[149.99728397033616,-37.42526051203514],[149.42388227762555,-37.77268116633346],[148.30462243061592,-37.80906137466688],[147.3817330263153,-38.21921721776755],[146.92212283751135,-38.60653207779512],[146.3179219911548,-39.03575652441144],[145.48965213438058,-38.59376799901905],[144.87697635312816,-38.41744801203912],[145.03221235573298,-37.896187839510986],[144.48568240781404,-38.08532358169927],[143.6099735861961,-38.80946542740533],[142.745426873953,-38.538267510737526],[142.178329705982,-38.38003427505984],[141.6065816591047,-38.30851409276788],[140.63857872941324,-38.019332777662555],[139.99215823787435,-37.40293629328511],[139.80658816951407,-36.64360279718828],[139.57414757706525,-36.13836231867067],[139.0828080588341,-35.73275400161178],[138.12074791885632,-35.612296237939404],[138.44946170466503,-35.127261244447894],[138.2075643251067,-34.38472258884593],[137.71917036351616,-35.07682504653103],[136.82940555231474,-35.26053476332862],[137.3523710471085,-34.70733855564409],[137.50388634658836,-34.130267836240776],[137.89011600153768,-33.640478610978334],[137.81032759007914,-32.90000701266811],[136.99683719294038,-33.752771498348636],[136.37206912653167,-34.09476612725619],[135.98904341038437,-34.89011809666049],[135.20821251845413,-34.47867034275261],[135.23921837782916,-33.94795338311498],[134.6134167827746,-33.22277800876314],[134.08590376193914,-32.848072198214766],[134.27390262261704,-32.61723357516696],[132.99077680880984,-32.011224053680195],[132.2880806825049,-31.98264698662277],[131.32633060112093,-31.495803318001048],[129.5357938986397,-31.590422865527483],[128.24093753470223,-31.948488864877856],[127.10286746633831,-32.28226694105105],[126.14871382050116,-32.21596607842061],[125.08862348846561,-32.728751316052836],[124.22164798390494,-32.95948658623607],[124.02894656788854,-33.483847344701715],[123.65966678273072,-33.89017913181273],[122.81103641163364,-33.91446705498984],[122.18306440642286,-34.003402194964224],[121.2991907085026,-33.82103606540613],[120.58026818245814,-33.930176690406626],[119.89369510302824,-33.976065362281815],[119.2988993673488,-34.50936614353397],[119.007340936358,-34.464149265278536],[118.5057178081008,-34.7468193499151],[118.02497195848953,-35.064732761374714],[117.29550744025747,-35.02545867283287],[116.62510908413495,-35.02509693780683],[115.56434695847972,-34.386427911111554],[115.02680870977954,-34.196517022438925],[115.04861616420679,-33.62342538832203],[115.5451233256671,-33.48725798923296],[115.71467370001668,-33.25957162855495],[115.6793786967614,-32.90036874769413],[115.80164513556397,-32.20506235120703],[115.68961063035513,-31.61243702568379],[115.16090905157697,-30.60159433362246],[114.99704308477945,-30.030724786094165],[115.04003787644628,-29.461095472940798],[114.64197431850201,-28.810230808224713],[114.61649783738217,-28.516398614213042],[114.17357913620847,-28.11807667410733],[114.04888390508816,-27.334765313427127],[113.4774975932369,-26.543134047147902],[113.3389530782625,-26.116545098578484],[113.77835778204026,-26.54902516042918],[113.44096235560662,-25.621278171493156],[113.93690107631167,-25.911234633082884],[114.23285200404732,-26.298446140245872],[114.21616051641703,-25.786281019801105],[113.72125532435771,-24.998938897402127],[113.62534386602405,-24.683971042583153],[113.39352339076267,-24.38476449961327],[113.50204389857564,-23.806350192970257],[113.70699262904517,-23.560215345964068],[113.8434184102957,-23.059987481378737],[113.7365515483161,-22.47547535572538],[114.1497563009219,-21.755881036061012],[114.22530724493268,-22.517488295178634],[114.64776207891869,-21.829519952076904],[115.46016727097933,-21.495173435148544],[115.94737267462702,-21.06868783944371],[116.71161543179156,-20.70168181730682],[117.16631635952771,-20.623598728113805],[117.44154503791427,-20.746898695562162],[118.22955895393298,-20.374208265873236],[118.83608523974273,-20.26331064217483],[118.98780724495177,-20.044202569257322],[119.25249393115065,-19.95294198982984],[119.80522505094457,-19.976506442954985],[120.85622033089666,-19.68370777758919],[121.39985639860723,-19.239755547769732],[121.65513797412909,-18.705317885007133],[122.24166548064177,-18.19764861417177],[122.28662397673567,-17.798603204013915],[122.31277225147544,-17.25496713630345],[123.01257449757193,-16.405199883695857],[123.43378909718304,-17.268558037996225],[123.85934451710662,-17.069035332917252],[123.50324222218326,-16.596506036040367],[123.81707319549193,-16.111316013251994],[124.25828657439988,-16.327943617419564],[124.37972619028582,-15.567059828353976],[124.92615278534005,-15.075100192935324],[125.16727501841389,-14.680395603090004],[125.67008670461385,-14.510070082256021],[125.6857963400305,-14.230655612853838],[126.12514936737611,-14.347340996968953],[126.14282270721989,-14.095986830301213],[126.58258914602376,-13.95279143642041],[127.06586714081735,-13.817967624570926],[127.80463341686195,-14.276906019755046],[128.35968997610897,-14.869169610252257],[128.98554324759593,-14.875990899314742],[129.62147342337963,-14.969783623924556],[129.409600050983,-14.420669854391035],[129.88864057832862,-13.618703301653483],[130.33946577364296,-13.357375583553477],[130.183506300986,-13.107520033422304],[130.617795037967,-12.536392103732467],[131.22349450086003,-12.183648776908115],[131.73509118054952,-12.302452894747162],[132.57529829318312,-12.114040622611014],[132.55721154188106,-11.603012383676685],[131.82469811414367,-11.273781833545101],[132.35722374891142,-11.128519382372644],[133.01956058159644,-11.376411228076847],[133.55084598198906,-11.786515394745138],[134.393068475482,-12.042365411022175],[134.67863244032705,-11.9411829565947],[135.29849124566803,-12.248606052299051],[135.88269331272764,-11.962266940969798],[136.25838097548947,-12.04934172938161],[136.49247521377166,-11.857208754120393],[136.95162031468502,-12.351958916882737],[136.68512495335577,-12.887223402562057],[136.30540652887512,-13.291229750219898],[135.96175825413414,-13.324509372615893],[136.07761681533256,-13.724278252825783],[135.78383629775325,-14.223989353088214],[135.42866417861123,-14.7154322241839],[135.50018436090318,-14.99774057379443],[136.29517459528137,-15.550264987859123],[137.0653601421595,-15.870762220933356],[137.58047081924482,-16.215082289294084],[138.303217401279,-16.807604261952658],[138.5851640158634,-16.806622409739177],[139.1085429221155,-17.06267913174537],[139.26057498591823,-17.371600843986187],[140.2152453960783,-17.710804945550066],[140.87546349503927,-17.369068698803943],[141.0711104676963,-16.832047214426723],[141.27409549373883,-16.388870131091608],[141.3982222841038,-15.840531508042588],[141.70218305884467,-15.04492115647693],[141.5633801617087,-14.56133310308951],[141.63552046118812,-14.270394789286284],[141.51986860571898,-13.698078301653808],[141.650920038011,-12.944687595270565],[141.84269127824624,-12.74154753993119],[141.6869901877508,-12.407614434461138],[141.92862918514757,-11.87746591557878],[142.118488397388,-11.32804208745162],[142.14370649634637,-11.042736504768143],[142.51526004452498,-10.668185723516643],[142.79731001197408,-11.157354831591519],[142.8667631369743,-11.784706719614931],[143.1159468934857,-11.905629571177911],[143.1586316265588,-12.325655612846191],[143.5221236512999,-12.834358412327433],[143.5971578309877,-13.400422051652598],[143.56181115129996,-13.763655694232213]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Fiji","sov_a3":"FJI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Fiji","adm0_a3":"FJI","geou_dif":0,"geounit":"Fiji","gu_a3":"FJI","su_dif":0,"subunit":"Fiji","su_a3":"FJI","brk_diff":0,"name":"Fiji","name_long":"Fiji","brk_a3":"FJI","brk_name":"Fiji","brk_group":null,"abbrev":"Fiji","postal":"FJ","formal_en":"Republic of Fiji","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Fiji","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":2,"mapcolor13":2,"pop_est":944720,"gdp_md_est":3579,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"FJ","iso_a3":"FJI","iso_n3":"242","un_a3":"242","wb_a2":"FJ","wb_a3":"FJI","woe_id":-99,"adm0_a3_is":"FJI","adm0_a3_us":"FJI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"FJI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[178.3736,-17.33992],[178.71806,-17.62846],[178.55271,-18.15059],[177.93266,-18.28799],[177.38146,-18.16432],[177.28504,-17.72465],[177.67087,-17.38114],[178.12557,-17.50481],[178.3736,-17.33992]]],[[[179.36414266196428,-16.80135407694685],[178.7250593629971,-17.01204167436802],[178.59683859511708,-16.63915],[179.09660936299716,-16.43398427754742],[179.41350936299713,-16.379054277547397],[180.00000000000014,-16.06713266364244],[180.00000000000014,-16.55521656663916],[179.36414266196428,-16.80135407694685]]],[[[-179.91736938476524,-16.50178313564936],[-180,-16.55521656663916],[-180,-16.06713266364244],[-179.79332010904858,-16.02088225674123],[-179.91736938476524,-16.50178313564936]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"New Caledonia","adm0_a3":"NCL","geou_dif":0,"geounit":"New Caledonia","gu_a3":"NCL","su_dif":0,"subunit":"New Caledonia","su_a3":"NCL","brk_diff":0,"name":"New Caledonia","name_long":"New Caledonia","brk_a3":"NCL","brk_name":"New Caledonia","brk_group":null,"abbrev":"New C.","postal":"NC","formal_en":"New Caledonia","formal_fr":"Nouvelle-Calédonie","note_adm0":"Fr.","note_brk":null,"name_sort":"New Caledonia","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":227436,"gdp_md_est":3158,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"NC","iso_a3":"NCL","iso_n3":"540","un_a3":"540","wb_a2":"NC","wb_a3":"NCL","woe_id":-99,"adm0_a3_is":"NCL","adm0_a3_us":"NCL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":13,"long_len":13,"abbrev_len":6,"tiny":-99,"homepart":-99,"filename":"NCL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[165.77998986232637,-21.08000497811563],[166.59999148993384,-21.700018812753523],[167.1200114280869,-22.159990736583488],[166.74003462144478,-22.39997608814695],[166.18973229396866,-22.12970834726045],[165.47437544175222,-21.679606621998232],[164.82981530177568,-21.14981983814195],[164.16799523341365,-20.444746595951628],[164.029605747736,-20.105645847252354],[164.45996707586272,-20.1200118954295],[165.02003624904205,-20.45999114347773],[165.46000939357512,-20.80002206795826],[165.77998986232637,-21.08000497811563]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"The Bahamas","sov_a3":"BHS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"The Bahamas","adm0_a3":"BHS","geou_dif":0,"geounit":"The Bahamas","gu_a3":"BHS","su_dif":0,"subunit":"The Bahamas","su_a3":"BHS","brk_diff":0,"name":"Bahamas","name_long":"Bahamas","brk_a3":"BHS","brk_name":"Bahamas","brk_group":null,"abbrev":"Bhs.","postal":"BS","formal_en":"Commonwealth of the Bahamas","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bahamas, The","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":5,"pop_est":309156,"gdp_md_est":9093,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"BS","iso_a3":"BHS","iso_n3":"044","un_a3":"044","wb_a2":"BS","wb_a3":"BHS","woe_id":-99,"adm0_a3_is":"BHS","adm0_a3_us":"BHS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BHS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975]]],[[[-77.82,26.58],[-78.91,26.42],[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58]]],[[[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04],[-77,26.59]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"New Zealand","sov_a3":"NZ1","adm0_dif":1,"level":2,"type":"Country","admin":"New Zealand","adm0_a3":"NZL","geou_dif":0,"geounit":"New Zealand","gu_a3":"NZL","su_dif":0,"subunit":"New Zealand","su_a3":"NZL","brk_diff":0,"name":"New Zealand","name_long":"New Zealand","brk_a3":"NZL","brk_name":"New Zealand","brk_group":null,"abbrev":"N.Z.","postal":"NZ","formal_en":"New Zealand","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"New Zealand","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":4213418,"gdp_md_est":116700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"NZ","iso_a3":"NZL","iso_n3":"554","un_a3":"554","wb_a2":"NZ","wb_a3":"NZL","woe_id":-99,"adm0_a3_is":"NZL","adm0_a3_us":"NZL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NZL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[173.02037479074076,-40.919052422856424],[173.24723432850206,-41.331998793300784],[173.95840538970288,-40.92670053483562],[174.24758670480813,-41.34915536882167],[174.2485168805895,-41.770008233406756],[173.8764465680879,-42.233184096038826],[173.22273969959568,-42.970038344088564],[172.71124637277077,-43.372287693048506],[173.0801127464702,-43.85334360125358],[172.30858361235252,-43.865694268571346],[171.45292524646365,-44.24251881284372],[171.18513797432726,-44.89710418068489],[170.61669721911662,-45.90892872495971],[169.8314221540093,-46.3557748349876],[169.33233117093428,-46.641235446967855],[168.41135379462858,-46.61994475686359],[167.76374474514685,-46.29019744240921],[166.67688602118423,-46.21991749449224],[166.5091443219647,-45.85270476662622],[167.04642418850327,-45.11094125750867],[168.3037634625969,-44.12397307716613],[168.94940880765157,-43.93581918719142],[169.66781456937318,-43.55532561622634],[170.52491987536618,-43.03168832781283],[171.125089960004,-42.51275359473778],[171.56971398344322,-41.767424411792135],[171.94870893787194,-41.51441659929115],[172.09722700427878,-40.95610442480968],[172.798579543344,-40.493962090823466],[173.02037479074076,-40.919052422856424]]],[[[174.61200890533055,-36.156397393540544],[175.3366158389272,-37.20909799575826],[175.35759647043753,-36.52619394302113],[175.8088867536425,-36.79894215265769],[175.9584900251275,-37.55538176854606],[176.76319542877658,-37.8812533505787],[177.4388131045605,-37.961248467766495],[178.0103544457087,-37.57982472102013],[178.51709354076283,-37.6953732236248],[178.27473107331386,-38.58281259537309],[177.97046023997936,-39.166342868812976],[177.20699262929915,-39.145775648760846],[176.93998050364704,-39.44973642350158],[177.0329464053401,-39.87994272233148],[176.88582360260526,-40.065977878582174],[176.50801720611938,-40.60480803808959],[176.0124402204403,-41.28962411882151],[175.239567499083,-41.68830779395324],[175.0678983910094,-41.42589487077508],[174.65097293527847,-41.28182097754545],[175.22763024322367,-40.459235528323404],[174.90015669179,-39.90893320084723],[173.82404666574402,-39.50885426204351],[173.85226199777534,-39.14660247167746],[174.5748018740804,-38.797683200842755],[174.74347374908106,-38.027807712558385],[174.69701663645063,-37.38112883885796],[174.29202843657922,-36.71109221776144],[174.31900353423555,-36.53482390721389],[173.84099653553582,-36.121980889634116],[173.0541711774596,-35.23712533950034],[172.63600548735374,-34.52910654066939],[173.00704227120949,-34.45066171645034],[173.55129845610747,-35.006183363587965],[174.3293904971263,-35.26549570082862],[174.61200890533055,-36.156397393540544]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Solomon Islands","sov_a3":"SLB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Solomon Islands","adm0_a3":"SLB","geou_dif":0,"geounit":"Solomon Islands","gu_a3":"SLB","su_dif":0,"subunit":"Solomon Islands","su_a3":"SLB","brk_diff":0,"name":"Solomon Is.","name_long":"Solomon Islands","brk_a3":"SLB","brk_name":"Solomon Is.","brk_group":null,"abbrev":"S. Is.","postal":"SB","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Solomon Islands","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":595613,"gdp_md_est":1078,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SB","iso_a3":"SLB","iso_n3":"090","un_a3":"090","wb_a2":"SB","wb_a3":"SLB","woe_id":-99,"adm0_a3_is":"SLB","adm0_a3_us":"SLB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":11,"long_len":15,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"SLB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[162.11902469304087,-10.482719008021135],[162.39864586817222,-10.82636728276212],[161.70003218001838,-10.820011081590224],[161.31979699121476,-10.204751478723125],[161.917383254238,-10.446700534713656],[162.11902469304087,-10.482719008021135]]],[[[160.85222863183796,-9.872937106977005],[160.46258833235729,-9.895209649294841],[159.8494474632142,-9.794027194867368],[159.64000288313517,-9.63997975020527],[159.70294477766666,-9.242949720906779],[160.36295617089846,-9.400304457235533],[160.6885176943372,-9.610162448772812],[160.85222863183796,-9.872937106977005]]],[[[161.67998172428915,-9.599982191611375],[161.52939660059053,-9.784312025596435],[160.78825320866056,-8.91754322676492],[160.57999718652437,-8.320008640173967],[160.92002811100494,-8.320008640173967],[161.28000613835,-9.120011488484451],[161.67998172428915,-9.599982191611375]]],[[[159.8750272971986,-8.337320244991716],[159.917401971678,-8.538289890174866],[159.1336771995394,-8.114181410355398],[158.58611372297472,-7.754823500197715],[158.21114953026486,-7.421872246941149],[158.35997765526545,-7.320017998893917],[158.82000125552773,-7.560003350457392],[159.64000288313517,-8.020026950719569],[159.8750272971986,-8.337320244991716]]],[[[157.5384257346893,-7.34781991946693],[157.33941979393327,-7.404767347852555],[156.9020304710148,-7.176874281445392],[156.49135786359133,-6.765943291860395],[156.54282759015396,-6.59933847415148],[157.1400004417189,-7.021638278840655],[157.5384257346893,-7.34781991946693]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Belize","sov_a3":"BLZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belize","adm0_a3":"BLZ","geou_dif":0,"geounit":"Belize","gu_a3":"BLZ","su_dif":0,"subunit":"Belize","su_a3":"BLZ","brk_diff":0,"name":"Belize","name_long":"Belize","brk_a3":"BLZ","brk_name":"Belize","brk_group":null,"abbrev":"Belize","postal":"BZ","formal_en":"Belize","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belize","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":5,"mapcolor13":7,"pop_est":307899,"gdp_md_est":2536,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BZ","iso_a3":"BLZ","iso_n3":"084","un_a3":"084","wb_a2":"BZ","wb_a3":"BLZ","woe_id":-99,"adm0_a3_is":"BLZ","adm0_a3_us":"BLZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"BLZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-89.14308041050332,17.80831899664932],[-89.15090938999553,17.95546763760042],[-89.02985734735182,18.001511338772488],[-88.84834387892661,17.883198147040233],[-88.49012285027935,18.486830552641603],[-88.3000310940937,18.4999822046599],[-88.29633622918482,18.35327281338327],[-88.10681291375437,18.348673610909287],[-88.1234785631685,18.07667470954101],[-88.2853549873228,17.644142971258034],[-88.19786678745265,17.489475409408456],[-88.30264075392444,17.131693630435663],[-88.23951799187991,17.036066392479555],[-88.35542822951057,16.530774237529627],[-88.55182451043585,16.265467434143147],[-88.73243364129594,16.233634751851355],[-88.93061275913527,15.887273464415074],[-89.22912167026928,15.88693756760517],[-89.15080603713095,17.015576687075836],[-89.14308041050332,17.80831899664932]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Canada","sov_a3":"CAN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Canada","adm0_a3":"CAN","geou_dif":0,"geounit":"Canada","gu_a3":"CAN","su_dif":0,"subunit":"Canada","su_a3":"CAN","brk_diff":0,"name":"Canada","name_long":"Canada","brk_a3":"CAN","brk_name":"Canada","brk_group":null,"abbrev":"Can.","postal":"CA","formal_en":"Canada","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Canada","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":2,"mapcolor13":2,"pop_est":33487208,"gdp_md_est":1300000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"CA","iso_a3":"CAN","iso_n3":"124","un_a3":"124","wb_a2":"CA","wb_a3":"CAN","woe_id":-99,"adm0_a3_is":"CAN","adm0_a3_us":"CAN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CAN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506]]],[[[-123.51000158755114,48.51001089130344],[-124.0128907883995,48.370846259141416],[-125.65501277733837,48.8250045843385],[-125.95499446679275,49.179995835967645],[-126.85000443587187,49.53000031188043],[-127.0299934495444,49.81499583597008],[-128.05933630436624,49.9949590114266],[-128.44458410710217,50.539137681676124],[-128.35841365625544,50.770648098343685],[-127.3085810960299,50.55257355407195],[-126.69500097721232,50.400903225295394],[-125.75500667382319,50.29501821552938],[-125.4150015875588,49.95000051533261],[-124.92076818911934,49.475274970083404],[-123.92250870832102,49.06248362893581],[-123.51000158755114,48.51001089130344]]],[[[-56.13403581401712,50.6870097926793],[-56.795881720595276,49.81230866149096],[-56.1431050278843,50.150117499382844],[-55.471492275602934,49.93581533466846],[-55.82240108908093,49.58712860777911],[-54.935142584845664,49.31301097268684],[-54.47377539734378,49.55669118915918],[-53.476549445191324,49.24913890237405],[-53.78601375997124,48.51678050393363],[-53.086133999226256,48.687803656603535],[-52.958648240762244,48.157164211614486],[-52.64809872090419,47.5355484075755],[-53.069158291218336,46.65549876564495],[-53.52145626485304,46.61829173439483],[-54.17893551290254,46.80706574155701],[-53.961868659060485,47.62520701760192],[-54.24048214376214,47.75227936460763],[-55.4007730780115,46.884993801453135],[-55.99748084168584,46.9197203639533],[-55.29121904155278,47.389562486351],[-56.25079871278052,47.63254507098739],[-57.3252292547771,47.572807115258],[-59.26601518414677,47.603347886742505],[-59.419494188053704,47.899453843774864],[-58.796586473207405,48.25152537697949],[-59.231624518456535,48.52318838153781],[-58.39180497906523,49.12558055276418],[-57.35868974468604,50.718274034215845],[-56.73865007183201,51.28743825947853],[-55.870976935435294,51.632094224649194],[-55.406974249886616,51.58827261006573],[-55.60021826844209,51.31707469339793],[-56.13403581401712,50.6870097926793]]],[[[-133.1800040417117,54.16997549093531],[-132.71000788443132,54.040009315423525],[-131.74998958400326,54.12000438090922],[-132.049480347351,52.984621487024526],[-131.1790425218266,52.180432847698285],[-131.57782954982292,52.18237071390925],[-132.18042842677855,52.639707139692405],[-132.54999243231387,53.100014960332146],[-133.05461117875552,53.41146881775537],[-133.2396644827927,53.8510802272624],[-133.1800040417117,54.16997549093531]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108]]],[[[-85.16130794954985,65.65728465439281],[-84.97576371940596,65.217518215589],[-84.4640120104195,65.37177236598018],[-83.88262630891975,65.10961782496355],[-82.78757687043877,64.76669302027469],[-81.64201371939254,64.45513580998696],[-81.55344031444425,63.979609280037145],[-80.81736121287886,64.05748566350101],[-80.10345130076661,63.725981350348604],[-80.99101986359568,63.41124603947497],[-82.54717810741701,63.65172231714524],[-83.10879757356506,64.10187571883972],[-84.10041663281388,63.56971181909802],[-85.52340471061902,63.05237905542409],[-85.86676876498237,63.637252916103556],[-87.22198320183674,63.541238104905226],[-86.35275977247127,64.03583323837071],[-86.22488644076513,64.82291697860826],[-85.88384782585487,65.73877838811705],[-85.16130794954985,65.65728465439281]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425],[-75.86588,67.14886]]],[[[-95.64768120380052,69.10769035832178],[-96.2695212038006,68.75704035832175],[-97.61740120380057,69.0600303583218],[-98.43180120380052,68.9507003583218],[-99.79740120380053,69.4000303583218],[-98.91740120380055,69.7100303583218],[-98.2182612038005,70.14354035832176],[-97.15740120380056,69.86003035832181],[-96.55740120380054,69.68003035832176],[-96.25740120380053,69.49003035832177],[-95.64768120380052,69.10769035832178]]],[[[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.01845889375872],[-76.82003414580558,43.628784288093755],[-77.7378850979577,43.629055589363304],[-78.72027991404238,43.625089423184875],[-79.17167355011188,43.46633942318422],[-79.01,43.27],[-78.92,42.965],[-78.9393621487437,42.86361135514804],[-80.24744767934794,42.36619985612259],[-81.27774654816716,42.20902598730686],[-82.43927771679162,41.675105088867156],[-82.69008928092018,41.675105088867156],[-83.02981014680694,41.83279572200584],[-83.14199968131256,41.975681057292825],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.1376423815039,43.571087551439916],[-82.33776312543108,44.44],[-82.55092464875818,45.347516587905375],[-83.59285071484308,45.81689362241237],[-83.46955074739463,45.99468638771259],[-83.61613094759059,46.11692698829907],[-83.89076534700575,46.11692698829907],[-84.09185126416148,46.275418606138174],[-84.14211951367338,46.51222585711574],[-84.3367,46.40877],[-84.6049,46.4396],[-84.54374874544587,46.538684190449146],[-84.77923824739992,46.637101955749046],[-84.87607988151485,46.90008331968238],[-85.65236324740343,47.22021881773051],[-86.46199083122826,47.55333801939204],[-87.43979262330024,47.94],[-88.37811418328673,48.302917588893735],[-89.27291744663668,48.019808254582664],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.15906950917204,49],[-97.22872000000481,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49],[-122.97421,49.0025377777778],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766]]],[[[-114.1671699999999,73.12145],[-114.66634,72.65277],[-112.44101999999988,72.95540000000011],[-111.05039,72.4504],[-109.92034999999989,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953000000011],[-107.51645,73.23598],[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46475999999984,70.99297],[-102.78537,70.49776],[-100.9807799999999,70.02432],[-101.08929,69.58447000000012],[-102.73116,69.50402],[-102.09329,69.11962000000011],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18000000000015],[-107.12254,69.11922],[-109,68.78],[-111.53414887520013,68.63005915681794],[-113.3132,68.53554],[-113.85495999999983,69.00744000000012],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96000000000012],[-116.67472999999988,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056000000014],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459000000012],[-114.1671699999999,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.10268498995302],[-76.25140380859375,72.82638549804688],[-77.31443786621091,72.85554504394527],[-78.39167022705081,72.87665557861328],[-79.48625183105466,72.74220275878909],[-79.77583312988284,72.80290222167974],[-80.87609863281253,73.3331832885742],[-80.83388519287105,73.69318389892578],[-80.35305786132812,73.75971984863278],[-78.06443786621094,73.65193176269534],[-76.34,73.10268498995302]]],[[[-86.56217851433414,73.15744700793846],[-85.77437130404454,72.53412588163383],[-84.85011247428824,73.34027822538712],[-82.31559017610098,73.75095083281059],[-80.60008765330764,72.71654368762421],[-80.7489416165244,72.06190664335077],[-78.77063859731078,72.35217316353416],[-77.82462398955958,72.74961660429105],[-75.60584469267573,72.24367849393741],[-74.22861609566499,71.7671442735579],[-74.09914079455771,71.33084015571765],[-72.24222571479766,71.5569245469945],[-71.20001542833519,70.92001251899723],[-68.7860542466849,70.52502370877426],[-67.91497046575694,70.12194753689761],[-66.96903337265417,69.18608734809189],[-68.80512285020055,68.72019847276442],[-66.44986609563387,68.06716339789202],[-64.86231441919522,67.84753856065163],[-63.42493445499676,66.92847321234066],[-61.85198137068058,66.86212067327784],[-62.1631768459423,66.16025136988961],[-63.918444383384184,64.99866852483284],[-65.14886023625363,65.42603261988668],[-66.72121904159854,66.3880410834322],[-68.01501603867396,66.26272573512439],[-68.14128740097917,65.68978913030438],[-67.08964616562339,65.108455105237],[-65.73208045109976,64.64840566675863],[-65.32016760930128,64.38273712834606],[-64.66940629744968,63.39292674422748],[-65.01380388045891,62.67418508569599],[-66.27504472519047,62.945098781986076],[-68.78318620469273,63.74567007105181],[-67.36968075221304,62.883965562584876],[-66.3282972886672,62.280074774822054],[-66.16556820338016,61.93089712182589],[-68.87736650254465,62.33014923771282],[-71.02343705919384,62.91070811629584],[-72.235378587519,63.39783600529517],[-71.8862784491713,63.67998932560885],[-73.37830624051838,64.19396312118383],[-74.8344189114226,64.67907562932379],[-74.81850257027673,64.38909332951798],[-77.70997982452005,64.22954234481679],[-78.55594885935417,64.57290639918014],[-77.89728105336192,65.30919220647479],[-76.0182742987972,65.32696889918316],[-73.95979529488272,65.45476471624089],[-74.29388342964964,65.8117713487294],[-73.94491248238265,66.31057811142672],[-72.65116716173941,67.28457550726387],[-72.92605994331609,67.72692576768239],[-73.31161780464575,68.06943716091291],[-74.84330725777681,68.55462718370129],[-76.86910091826674,68.89473562283027],[-76.22864905465735,69.14776927354742],[-77.28736996123712,69.76954010688328],[-78.1686339993266,69.82648753526891],[-78.95724219431673,70.16688019477542],[-79.49245500356366,69.87180776638891],[-81.30547095409176,69.74318512641435],[-84.94470618359847,69.9666340196444],[-87.06000342481789,70.26000112576537],[-88.6817132230015,70.41074127876081],[-89.51341956252304,70.76203766548099],[-88.46772111688075,71.21818553332133],[-89.8881512112875,71.22255219184996],[-90.20516028518202,72.2350743679608],[-89.43657670770494,73.12946421985237],[-88.40824154331281,73.53788890247121],[-85.82615108920092,73.80381582304521],[-86.56217851433414,73.15744700793846]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.19629553910022,72.77199249947336],[-94.26904659704726,72.02459625923598],[-95.40985551632266,72.06188080513459],[-96.03374508338246,72.94027680123182],[-96.01826799191099,73.4374299180958],[-95.49579342322403,73.86241689726418],[-94.50365759965234,74.1349067247392],[-92.42001217321177,74.10002513294219],[-90.50979285354259,73.85673248971203],[-92.0039652168299,72.9662442084585],[-93.19629553910022,72.77199249947336]]],[[[-120.46,71.38360179308759],[-123.09219,70.90164],[-123.62,71.34],[-125.92894873747335,71.86868846301141],[-125.5,72.29226081179502],[-124.80729,73.02256],[-123.9399999999999,73.68000000000015],[-124.91775,74.29275000000013],[-121.53788,74.44893],[-120.10978,74.24135],[-117.55563999999987,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76793999999988,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.38360179308759]]],[[[-93.61275590694049,74.97999726022445],[-94.15690873897384,74.59234650338686],[-95.60868058956561,74.66686391875177],[-96.82093217648458,74.92762319609658],[-96.2885874092298,75.37782827422335],[-94.85081987178913,75.6472175157609],[-93.97774654821794,75.29648956979597],[-93.61275590694049,74.97999726022445]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-94.68408586299947,77.09787832305838],[-93.57392106807313,76.77629588490609],[-91.60502315953661,76.77851797149461],[-90.74184587274922,76.44959747995681],[-90.96966142450799,76.07401317005946],[-89.82223792189927,75.84777374948563],[-89.18708289259979,75.61016551380763],[-87.83827633334963,75.56618886992723],[-86.37919226758868,75.48242137318218],[-84.78962521029061,75.69920400664651],[-82.75344458691006,75.78431509063125],[-81.12853084992437,75.71398346628203],[-80.05751095245915,75.33684886341588],[-79.83393286814832,74.92312734648719],[-80.45777075877584,74.65730377877779],[-81.94884253612554,74.44245901152433],[-83.22889360221143,74.56402781849096],[-86.0974523587333,74.41003205026115],[-88.15035030796022,74.39230703398499],[-89.76472205275837,74.51555532500115],[-92.42244096552943,74.837757880341],[-92.7682854886428,75.38681997344216],[-92.88990597204173,75.88265534128266],[-93.893824022176,76.31924367950054],[-95.96245744503582,76.44138092722247],[-97.12137895382949,76.75107778594761],[-96.74512285031236,77.16138865834515],[-94.68408586299947,77.09787832305838]]],[[[-116.19858659550734,77.64528677032621],[-116.33581336145838,76.87696157501055],[-117.10605058476878,76.53003184681913],[-118.04041215703813,76.4811717800871],[-119.89931758688569,76.05321340606199],[-121.4999950771265,75.9000186225328],[-122.85492448615896,76.11654287383568],[-122.8549252936032,76.11654287383568],[-121.15753536032825,76.86450755482835],[-119.10393897182104,77.51221995717464],[-117.57013078496597,77.4983189968881],[-116.19858659550734,77.64528677032621]]],[[[-93.84000301794399,77.5199972602345],[-94.29560828324526,77.4913426785287],[-96.16965410031008,77.5551113959769],[-96.43630449093612,77.83462921824362],[-94.42257727738638,77.82000478790499],[-93.72065629756588,77.63433136668033],[-93.84000301794399,77.5199972602345]]],[[[-110.18693803591297,77.6970148790503],[-112.05119116905848,77.40922882761686],[-113.53427893761906,77.73220652944116],[-112.72458675825384,78.05105011668195],[-111.26444332563085,78.15295604116156],[-109.8544518705471,77.99632477488484],[-110.18693803591297,77.6970148790503]]],[[[-109.66314571820259,78.60197256134569],[-110.88131425661886,78.40691986766001],[-112.54209143761517,78.4079017198735],[-112.5258908760916,78.55055451121522],[-111.5000103422334,78.84999359813057],[-110.96366065147602,78.80444082306522],[-109.66314571820259,78.60197256134569]]],[[[-95.83029496944934,78.05694122996326],[-97.30984290239799,77.85059723582178],[-98.12428931353396,78.08285696075758],[-98.55286780474664,78.4581053738451],[-98.63198442258552,78.87193024363839],[-97.33723141151262,78.83198436147677],[-96.75439876990879,78.765812689927],[-95.55927792029458,78.41831452098029],[-95.83029496944934,78.05694122996326]]],[[[-100.06019182005214,78.3247543403159],[-99.67093909381362,77.9075446642074],[-101.30394019245301,78.01898489044481],[-102.94980872273305,78.34322866486022],[-105.17613277873154,78.38033234324574],[-104.21042945027716,78.6774201524918],[-105.41958045125854,78.91833567983645],[-105.49228919149316,79.30159393992919],[-103.52928239623793,79.16534902619165],[-100.82515804726881,78.80046173777869],[-100.06019182005214,78.3247543403159]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.50932203389829],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.10632151676575],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.43016220480207],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.97022222222222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.40869565217383,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.65227345805704],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.1720588235294],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.16978075838284],[-68.5,83.10632151676575]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Costa Rica","sov_a3":"CRI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Costa Rica","adm0_a3":"CRI","geou_dif":0,"geounit":"Costa Rica","gu_a3":"CRI","su_dif":0,"subunit":"Costa Rica","su_a3":"CRI","brk_diff":0,"name":"Costa Rica","name_long":"Costa Rica","brk_a3":"CRI","brk_name":"Costa Rica","brk_group":null,"abbrev":"C.R.","postal":"CR","formal_en":"Republic of Costa Rica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Costa Rica","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":4,"mapcolor13":2,"pop_est":4253877,"gdp_md_est":48320,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CR","iso_a3":"CRI","iso_n3":"188","un_a3":"188","wb_a2":"CR","wb_a3":"CRI","woe_id":-99,"adm0_a3_is":"CRI","adm0_a3_us":"CRI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CRI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-82.96578304719736,8.225027980985985],[-83.50843726269431,8.446926581247283],[-83.71147396516908,8.656836249216866],[-83.59631303580665,8.830443223501419],[-83.63264156770784,9.051385809765321],[-83.90988562695372,9.29080272057358],[-84.30340165885636,9.487354030795714],[-84.64764421256866,9.615537421095707],[-84.71335079622777,9.908051866083852],[-84.97566036654133,10.086723130733006],[-84.91137488477024,9.795991522658923],[-85.11092342806532,9.55703969974131],[-85.33948828809227,9.83454214114866],[-85.66078650586698,9.933347479690724],[-85.79744483106285,10.134885565629034],[-85.79170874707843,10.439337266476613],[-85.65931372754666,10.75433095951172],[-85.94172543002176,10.895278428587801],[-85.7125404528073,11.088444932494824],[-85.56185197624418,11.217119248901597],[-84.90300330273895,10.952303371621896],[-84.67306901725627,11.082657172078143],[-84.35593075228104,10.999225572142905],[-84.19017859570485,10.793450018756674],[-83.89505449088595,10.726839097532446],[-83.65561174186158,10.938764146361422],[-83.40231970898296,10.395438137244652],[-83.01567664257517,9.992982082555555],[-82.54619625520348,9.566134751824677],[-82.93289099804358,9.476812038608173],[-82.92715491405916,9.074330145702916],[-82.71918311230053,8.925708726431495],[-82.86865719270477,8.807266343618522],[-82.82977067740516,8.62629547773237],[-82.91317643912421,8.42351715741907],[-82.96578304719736,8.225027980985985]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cuba","sov_a3":"CUB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cuba","adm0_a3":"CUB","geou_dif":0,"geounit":"Cuba","gu_a3":"CUB","su_dif":0,"subunit":"Cuba","su_a3":"CUB","brk_diff":0,"name":"Cuba","name_long":"Cuba","brk_a3":"CUB","brk_name":"Cuba","brk_group":null,"abbrev":"Cuba","postal":"CU","formal_en":"Republic of Cuba","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cuba","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":4,"pop_est":11451652,"gdp_md_est":108200,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CU","iso_a3":"CUB","iso_n3":"192","un_a3":"192","wb_a2":"CU","wb_a3":"CUB","woe_id":-99,"adm0_a3_is":"CUB","adm0_a3_us":"CUB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CUB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-82.26815121125706,23.188610744717703],[-81.40445716014683,23.11727142993878],[-80.6187686835812,23.105980129483],[-79.67952368846025,22.76530324959883],[-79.28148596873207,22.399201565027056],[-78.34743445505649,22.512166246017088],[-77.99329586456028,22.277193508385935],[-77.14642249216105,21.657851467367834],[-76.52382483590856,21.206819566324373],[-76.19462012399319,21.220565497314013],[-75.59822241891267,21.016624457274133],[-75.67106035022806,20.735091254148],[-74.9338960435845,20.693905137611385],[-74.17802486845126,20.28462779385974],[-74.29664811877724,20.05037852628068],[-74.96159461129294,19.92343537035569],[-75.63468014189459,19.873774318923196],[-76.323656175426,19.95289093676206],[-77.75548092315306,19.855480861891873],[-77.08510840524674,20.413353786698792],[-77.49265458851661,20.67310537361389],[-78.13729224314159,20.73994883878343],[-78.48282670766119,21.02861338956585],[-78.71986650258401,21.598113511638434],[-79.28499996612794,21.5591753199065],[-80.21747534861865,21.827324327069036],[-80.51753455272141,22.03707896574176],[-81.82094336620318,22.19205658618507],[-82.16999182811864,22.38710927987075],[-81.79500179719267,22.636964830001958],[-82.77589799674084,22.688150336187064],[-83.49445878775936,22.16851797127613],[-83.90880042187563,22.154565334557333],[-84.05215084505326,21.910575059491254],[-84.54703019889638,21.801227728761642],[-84.97491105827311,21.89602814380109],[-84.44706214062776,22.204949856041907],[-84.23035702181178,22.565754706303764],[-83.7782399156902,22.788118394455694],[-83.26754757356575,22.983041897060644],[-82.51043616405751,23.078746649665188],[-82.26815121125706,23.188610744717703]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Papua New Guinea","sov_a3":"PNG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Papua New Guinea","adm0_a3":"PNG","geou_dif":0,"geounit":"Papua New Guinea","gu_a3":"PNG","su_dif":1,"subunit":"Papua New Guinea","su_a3":"PN1","brk_diff":0,"name":"Papua New Guinea","name_long":"Papua New Guinea","brk_a3":"PN1","brk_name":"Papua New Guinea","brk_group":null,"abbrev":"P.N.G.","postal":"PG","formal_en":"Independent State of Papua New Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Papua New Guinea","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":3,"mapcolor13":1,"pop_est":6057263,"gdp_md_est":13210,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PG","iso_a3":"PNG","iso_n3":"598","un_a3":"598","wb_a2":"PG","wb_a3":"PNG","woe_id":-99,"adm0_a3_is":"PNG","adm0_a3_us":"PNG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":16,"long_len":16,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"PNG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[155.88002566957843,-6.81999684003776],[155.5999910829888,-6.919990736522493],[155.16699425681512,-6.535931491729301],[154.72919152243836,-5.900828138862209],[154.51411421123967,-5.139117526880014],[154.65250369691736,-5.042430922061839],[154.7599906760844,-5.339983819198494],[155.06291792217937,-5.566791680527487],[155.54774620994172,-6.200654799019659],[156.01996544822478,-6.540013929880388],[155.88002566957843,-6.81999684003776]]],[[[151.9827958518545,-5.478063246282346],[151.45910688700866,-5.56028045005874],[151.3013904156539,-5.840728448106702],[150.7544470562767,-6.083762709175389],[150.24119673075384,-6.317753594592986],[149.70996300679332,-6.316513360218053],[148.89006473205046,-6.026040134305433],[148.31893680236075,-5.74714242922613],[148.4018257997569,-5.437755629094724],[149.29841190002082,-5.583741550319217],[149.84556196512725,-5.505503431829339],[149.9962504416903,-5.026101169457675],[150.13975589416495,-5.001348158389789],[150.23690758687349,-5.532220147324281],[150.8074670758081,-5.455842380396888],[151.089672072554,-5.113692722192368],[151.64788089417087,-4.757073662946169],[151.53786176982155,-4.16780730552189],[152.13679162008438,-4.14879037843852],[152.33874311748102,-4.312966403829762],[152.31869266175178,-4.86766122805075],[151.9827958518545,-5.478063246282346]]],[[[147.19187381407494,-7.38802418378998],[148.0846358583494,-8.044108168167611],[148.7341052593936,-9.104663588093757],[149.30683515848446,-9.07143564213007],[149.26663089416135,-9.514406019736027],[150.03872846903434,-9.684318129111702],[149.73879845601226,-9.872937106977005],[150.80162763895916,-10.293686618697421],[150.69057498596388,-10.582712904505868],[150.02839318257585,-10.652476088099931],[149.782310012002,-10.393267103723943],[148.92313764871722,-10.280922539921363],[147.91301842670802,-10.130440769087471],[147.13544315001226,-9.492443536012019],[146.56788089415062,-8.942554619994155],[146.04848107318494,-8.06741423913131],[144.74416792213802,-7.630128269077473],[143.8970878440097,-7.915330498896281],[143.2863757671843,-8.245491224809056],[143.4139132020807,-8.983068942910947],[142.62843143124422,-9.326820570516503],[142.06825890520022,-9.159595635620036],[141.0338517600139,-9.117892754760419],[141.01705691951904,-5.859021905138022],[141.00021040259188,-2.600151055515624],[142.7352466167915,-3.289152927263217],[144.58397098203326,-3.861417738463401],[145.27317955951,-4.373737888205028],[145.82978641172568,-4.876497897972683],[145.98192182839298,-5.465609226100014],[147.6480733583476,-6.083659356310804],[147.8911076194162,-6.614014580922315],[146.9709053895949,-6.721656589386257],[147.19187381407494,-7.38802418378998]]],[[[153.14003787659877,-4.499983412294114],[152.8272921083683,-4.766427097190999],[152.638673130503,-4.176127211120928],[152.40602583232496,-3.789742526874562],[151.95323693258356,-3.462062269711822],[151.38427941305005,-3.035421644710112],[150.66204959533886,-2.741486097833956],[150.93996544820456,-2.500002129734028],[151.4799841656545,-2.779985039891386],[151.82001509013512,-2.999971612157907],[152.2399894553711,-3.240008640153661],[152.64001671774253,-3.659983005389648],[153.01999352438466,-3.980015150573294],[153.14003787659877,-4.499983412294114]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Dominican Republic","sov_a3":"DOM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Dominican Republic","adm0_a3":"DOM","geou_dif":0,"geounit":"Dominican Republic","gu_a3":"DOM","su_dif":0,"subunit":"Dominican Republic","su_a3":"DOM","brk_diff":0,"name":"Dominican Rep.","name_long":"Dominican Republic","brk_a3":"DOM","brk_name":"Dominican Rep.","brk_group":null,"abbrev":"Dom. Rep.","postal":"DO","formal_en":"Dominican Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Dominican Republic","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":5,"mapcolor13":7,"pop_est":9650054,"gdp_md_est":78000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DO","iso_a3":"DOM","iso_n3":"214","un_a3":"214","wb_a2":"DO","wb_a3":"DOM","woe_id":-99,"adm0_a3_is":"DOM","adm0_a3_us":"DOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":14,"long_len":18,"abbrev_len":9,"tiny":-99,"homepart":1,"filename":"DOM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-71.71236141629296,19.714455878167357],[-71.58730445014663,19.8849105900821],[-70.80670610216174,19.880285549391985],[-70.21436499701613,19.62288524014616],[-69.95081519232758,19.647999986240006],[-69.76925004747008,19.293267116772437],[-69.22212582057988,19.313214219637103],[-69.25434607611385,19.015196234609874],[-68.80941199408083,18.979074408437853],[-68.31794328476897,18.612197577381693],[-68.68931596543452,18.205142320218613],[-69.16494584824892,18.42264842373511],[-69.62398759629764,18.380712998930246],[-69.95293392605154,18.42830699307106],[-70.1332329983179,18.245915025296895],[-70.51713721381422,18.184290879788833],[-70.66929846869763,18.426885891183034],[-70.99995012071719,18.283328762276213],[-71.4002099270339,17.5985643579766],[-71.65766191271202,17.7575727401387],[-71.70830481635805,18.04499705654609],[-71.68773759630587,18.31666006110447],[-71.94511206733556,18.61690013272026],[-71.70130265978248,18.78541697842405],[-71.62487321642283,19.169837958243306],[-71.71236141629296,19.714455878167357]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Vanuatu","sov_a3":"VUT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vanuatu","adm0_a3":"VUT","geou_dif":0,"geounit":"Vanuatu","gu_a3":"VUT","su_dif":0,"subunit":"Vanuatu","su_a3":"VUT","brk_diff":0,"name":"Vanuatu","name_long":"Vanuatu","brk_a3":"VUT","brk_name":"Vanuatu","brk_group":null,"abbrev":"Van.","postal":"VU","formal_en":"Republic of Vanuatu","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vanuatu","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":218519,"gdp_md_est":988.5,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VU","iso_a3":"VUT","iso_n3":"548","un_a3":"548","wb_a2":"VU","wb_a3":"VUT","woe_id":-99,"adm0_a3_is":"VUT","adm0_a3_us":"VUT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":4,"tiny":2,"homepart":1,"filename":"VUT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.8448767438451,-16.466333103097156],[167.5151811058229,-16.597849623279966],[167.18000776597782,-16.15999521247096],[167.21680138576963,-15.891846205308452],[167.8448767438451,-16.466333103097156]]],[[[167.10771243720149,-14.933920179913954],[167.27002811103026,-15.740020847234874],[167.00120731024796,-15.614602146062495],[166.79315799384088,-15.668810723536723],[166.64985924709558,-15.392703545801195],[166.62913699774649,-14.626497084209603],[167.10771243720149,-14.933920179913954]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Country","admin":"Greenland","adm0_a3":"GRL","geou_dif":0,"geounit":"Greenland","gu_a3":"GRL","su_dif":0,"subunit":"Greenland","su_a3":"GRL","brk_diff":0,"name":"Greenland","name_long":"Greenland","brk_a3":"GRL","brk_name":"Greenland","brk_group":null,"abbrev":"Grlnd.","postal":"GL","formal_en":"Greenland","formal_fr":null,"note_adm0":"Den.","note_brk":null,"name_sort":"Greenland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":57600,"gdp_md_est":1100,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"GL","iso_a3":"GRL","iso_n3":"304","un_a3":"304","wb_a2":"GL","wb_a3":"GRL","woe_id":-99,"adm0_a3_is":"GRL","adm0_a3_us":"GRL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":6,"tiny":-99,"homepart":-99,"filename":"GRL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.40653696727257],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Guatemala","sov_a3":"GTM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guatemala","adm0_a3":"GTM","geou_dif":0,"geounit":"Guatemala","gu_a3":"GTM","su_dif":0,"subunit":"Guatemala","su_a3":"GTM","brk_diff":0,"name":"Guatemala","name_long":"Guatemala","brk_a3":"GTM","brk_name":"Guatemala","brk_group":null,"abbrev":"Guat.","postal":"GT","formal_en":"Republic of Guatemala","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guatemala","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":3,"mapcolor13":6,"pop_est":13276517,"gdp_md_est":68580,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GT","iso_a3":"GTM","iso_n3":"320","un_a3":"320","wb_a2":"GT","wb_a3":"GTM","woe_id":-99,"adm0_a3_is":"GTM","adm0_a3_us":"GTM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":5,"tiny":4,"homepart":1,"filename":"GTM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-90.09555457229098,13.735337632700734],[-90.60862403030085,13.909771429901951],[-91.23241024449605,13.927832342987957],[-91.68974667027912,14.126218166556455],[-92.22775000686983,14.538828640190928],[-92.20322953974731,14.830102850804069],[-92.08721594925207,15.06458466232844],[-92.22924862340628,15.25144664149586],[-91.74796017125591,16.066564846251723],[-90.46447262242265,16.069562079324655],[-90.43886695022204,16.410109768128095],[-90.60084672724092,16.47077789963876],[-90.71182186558772,16.687483018454728],[-91.08167009150065,16.918476670799404],[-91.45392127151516,17.252177232324172],[-91.0022692532842,17.25465770107418],[-91.00151994501596,17.81759491624571],[-90.06793351923098,17.819326076727474],[-89.14308041050332,17.80831899664932],[-89.15080603713095,17.015576687075836],[-89.22912167026928,15.88693756760517],[-88.93061275913527,15.887273464415074],[-88.60458614780583,15.70638011317736],[-88.51836402052686,15.855389105690975],[-88.22502275262202,15.727722479713902],[-88.68067969435563,15.346247056535304],[-89.15481096063357,15.06641917567481],[-89.22522009963127,14.874286200413621],[-89.14553504103718,14.678019110569084],[-89.35332597528279,14.424132798719116],[-89.58734269891654,14.362586167859488],[-89.53421932652051,14.244815578666305],[-89.72193396682073,14.134228013561694],[-90.0646779039966,13.881969509328924],[-90.09555457229098,13.735337632700734]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Honduras","sov_a3":"HND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Honduras","adm0_a3":"HND","geou_dif":0,"geounit":"Honduras","gu_a3":"HND","su_dif":0,"subunit":"Honduras","su_a3":"HND","brk_diff":0,"name":"Honduras","name_long":"Honduras","brk_a3":"HND","brk_name":"Honduras","brk_group":null,"abbrev":"Hond.","postal":"HN","formal_en":"Republic of Honduras","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Honduras","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":2,"mapcolor13":5,"pop_est":7792854,"gdp_md_est":33720,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"HN","iso_a3":"HND","iso_n3":"340","un_a3":"340","wb_a2":"HN","wb_a3":"HND","woe_id":-99,"adm0_a3_is":"HND","adm0_a3_us":"HND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"HND.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-87.31665442579549,12.984685777229004],[-87.48940873894713,13.297534898323931],[-87.79311113152653,13.384480495655168],[-87.72350297722932,13.785050360565606],[-87.85951534702161,13.893312486217097],[-88.06534257684012,13.96462596277979],[-88.50399797234962,13.845485948130943],[-88.54123084181595,13.980154730683523],[-88.84307288283276,14.140506700085211],[-89.05851192905766,14.340029405164215],[-89.35332597528281,14.424132798719086],[-89.14553504103719,14.678019110569153],[-89.22522009963124,14.874286200413678],[-89.15481096063353,15.066419175674866],[-88.6806796943556,15.34624705653539],[-88.22502275262195,15.72772247971403],[-88.12115312371537,15.688655096901359],[-87.90181250685241,15.864458319558196],[-87.61568010125234,15.8787985295192],[-87.52292090528846,15.797278957578783],[-87.36776241733213,15.84694000901129],[-86.90319129102818,15.756712958229569],[-86.44094560417739,15.78283539475319],[-86.11923397494434,15.893448798073962],[-86.00195431185784,16.00540578863439],[-85.68331743034628,15.953651841693953],[-85.44400387240256,15.885749009662446],[-85.18244361035721,15.90915843349063],[-84.98372188997882,15.995923163308701],[-84.52697974316715,15.857223619037427],[-84.36825558138258,15.835157782448732],[-84.06305457226682,15.648244126849136],[-83.77397661002612,15.42407176356687],[-83.41038123242036,15.270902818253774],[-83.14721900097413,14.99582916916421],[-83.48998877636602,15.016267198135663],[-83.62858496777288,14.880073960830371],[-83.97572140169359,14.749435939996486],[-84.22834164095241,14.74876414637663],[-84.4493359036486,14.621614284722511],[-84.64958207877963,14.666805324761867],[-84.8200367906943,14.81958669683263],[-84.92450069857233,14.790492865452336],[-85.05278744173688,14.551541042534723],[-85.14875057650288,14.560196844943619],[-85.16536454948482,14.35436961512505],[-85.51441301140028,14.079011745657908],[-85.69866533073696,13.960078436738002],[-85.8012947252685,13.836054999237604],[-86.09626380079061,14.038187364147234],[-86.31214209668985,13.771356106008225],[-86.52070817741992,13.778487453664468],[-86.75508663607962,13.75484548589094],[-86.73382178419149,13.263092556201398],[-86.88055701368438,13.254204209847217],[-87.00576900912743,13.025794379117258],[-87.31665442579549,12.984685777229004]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Haiti","sov_a3":"HTI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Haiti","adm0_a3":"HTI","geou_dif":0,"geounit":"Haiti","gu_a3":"HTI","su_dif":0,"subunit":"Haiti","su_a3":"HTI","brk_diff":0,"name":"Haiti","name_long":"Haiti","brk_a3":"HTI","brk_name":"Haiti","brk_group":null,"abbrev":"Haiti","postal":"HT","formal_en":"Republic of Haiti","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Haiti","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":7,"mapcolor13":2,"pop_est":9035536,"gdp_md_est":11500,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"HT","iso_a3":"HTI","iso_n3":"332","un_a3":"332","wb_a2":"HT","wb_a3":"HTI","woe_id":-99,"adm0_a3_is":"HTI","adm0_a3_us":"HTI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"HTI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-73.18979061551762,19.915683905511912],[-72.57967281766362,19.871500555902358],[-71.71236141629296,19.714455878167357],[-71.62487321642283,19.169837958243306],[-71.70130265978248,18.78541697842405],[-71.94511206733556,18.61690013272026],[-71.68773759630587,18.31666006110447],[-71.70830481635805,18.04499705654609],[-72.37247616238935,18.21496084235406],[-72.84441118029488,18.14561107021836],[-73.45455481636503,18.217906398994696],[-73.92243323433566,18.030992743395004],[-74.45803361682478,18.342549953682706],[-74.36992529976713,18.66490753831941],[-73.44954220243272,18.526052964751145],[-72.69493709989064,18.445799465401862],[-72.334881557897,18.668421535715254],[-72.79164954292489,19.10162506761803],[-72.78410478381028,19.48359141690341],[-73.41502234566175,19.639550889560283],[-73.18979061551762,19.915683905511912]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Jamaica","sov_a3":"JAM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Jamaica","adm0_a3":"JAM","geou_dif":0,"geounit":"Jamaica","gu_a3":"JAM","su_dif":0,"subunit":"Jamaica","su_a3":"JAM","brk_diff":0,"name":"Jamaica","name_long":"Jamaica","brk_a3":"JAM","brk_name":"Jamaica","brk_group":null,"abbrev":"Jam.","postal":"J","formal_en":"Jamaica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Jamaica","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":4,"mapcolor13":10,"pop_est":2825928,"gdp_md_est":20910,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"JM","iso_a3":"JAM","iso_n3":"388","un_a3":"388","wb_a2":"JM","wb_a3":"JAM","woe_id":-99,"adm0_a3_is":"JAM","adm0_a3_us":"JAM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"JAM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-77.56960079619921,18.490525417550487],[-76.89661861846211,18.400866807524082],[-76.36535905628554,18.160700588447597],[-76.19965857614164,17.886867173732966],[-76.9025614081757,17.868237819891746],[-77.20634131540348,17.70111623785982],[-77.76602291534061,17.86159739834224],[-78.33771928578561,18.225967922432233],[-78.21772661000388,18.454532782459193],[-77.79736467152563,18.524218451404778],[-77.56960079619921,18.490525417550487]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Mexico","sov_a3":"MEX","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mexico","adm0_a3":"MEX","geou_dif":0,"geounit":"Mexico","gu_a3":"MEX","su_dif":0,"subunit":"Mexico","su_a3":"MEX","brk_diff":0,"name":"Mexico","name_long":"Mexico","brk_a3":"MEX","brk_name":"Mexico","brk_group":null,"abbrev":"Mex.","postal":"MX","formal_en":"United Mexican States","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mexico","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":7,"mapcolor13":3,"pop_est":111211789,"gdp_md_est":1563000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MX","iso_a3":"MEX","iso_n3":"484","un_a3":"484","wb_a2":"MX","wb_a3":"MEX","woe_id":-99,"adm0_a3_is":"MEX","adm0_a3_us":"MEX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MEX.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-97.14000830767071,25.869997463478395],[-97.52807247596655,24.992144069920297],[-97.70294552284223,24.272343044526735],[-97.77604183631905,22.932579860927657],[-97.87236670611111,22.44421173755336],[-97.69904395220419,21.898689480064263],[-97.38895952023677,21.411018988525825],[-97.18933346229329,20.635433254473128],[-96.52557552772032,19.890930894444068],[-96.29212724484177,19.320371405509547],[-95.90088497595995,18.82802419684873],[-94.83906348344271,18.562717393462208],[-94.4257295397562,18.144370835843347],[-93.5486512926824,18.423836981677937],[-92.7861138577835,18.52483856859226],[-92.0373481920904,18.704569200103432],[-91.40790340855926,18.87608327888023],[-90.77186987991087,19.28412038825678],[-90.53358985061305,19.8674181177513],[-90.45147599970124,20.707521877520435],[-90.27861833368489,20.99985545499555],[-89.60132117385149,21.26172577563449],[-88.54386633986284,21.49367544197662],[-87.65841651075772,21.458845526611977],[-87.05189022494807,21.543543199138295],[-86.81198238803296,21.331514797444754],[-86.84590796583262,20.849864610268355],[-87.38329118523586,20.25540477139873],[-87.62105445021075,19.64655304613592],[-87.43675045444176,19.47240346931227],[-87.58656043165593,19.04013011319074],[-87.83719112827151,18.25981598558343],[-88.09066402866318,18.51664785407405],[-88.30003109409364,18.49998220466],[-88.4901228502793,18.48683055264172],[-88.84834387892658,17.883198147040332],[-89.02985734735176,18.00151133877256],[-89.15090938999549,17.955467637600407],[-89.14308041050333,17.808318996649405],[-90.0679335192309,17.81932607672752],[-91.00151994501596,17.817594916245696],[-91.00226925328417,17.25465770107428],[-91.45392127151511,17.252177232324186],[-91.0816700915006,16.91847667079952],[-90.71182186558764,16.687483018454767],[-90.60084672724093,16.47077789963879],[-90.438866950222,16.41010976812811],[-90.46447262242265,16.069562079324726],[-91.74796017125595,16.066564846251765],[-92.2292486234063,15.251446641495873],[-92.08721594925203,15.064584662328512],[-92.20322953974727,14.83010285080411],[-92.22775000686983,14.538828640190957],[-93.35946387406176,15.615429592343672],[-93.87516883011851,15.940164292865914],[-94.69165646033014,16.200975246642884],[-95.25022701697304,16.128318182840644],[-96.05338212765331,15.752087917539596],[-96.55743404822829,15.65351512294279],[-97.26359249549665,15.917064927631316],[-98.01302995480961,16.107311713113912],[-98.94767574745651,16.566043402568763],[-99.69739742714705,16.70616404872817],[-100.82949886758131,17.17107107184205],[-101.66608862995446,17.649026394109626],[-101.91852800170022,17.916090196193977],[-102.47813208698891,17.975750637275098],[-103.50098954955808,18.29229462327885],[-103.91752743204682,18.74857168220001],[-104.9920096504755,19.316133938061682],[-105.49303849976144,19.946767279535436],[-105.73139604370766,20.434101874264115],[-105.39777299683135,20.531718654863425],[-105.50066077352443,20.81689504646613],[-105.27075232625793,21.07628489835514],[-105.26581722697402,21.42210358325235],[-105.6031609769754,21.871145941652568],[-105.69341386597313,22.269080308516152],[-106.02871639689897,22.773752346278627],[-106.90998043498837,23.767774359628902],[-107.91544877809139,24.54891531015295],[-108.40190487347098,25.17231395110593],[-109.26019873740665,25.58060944264406],[-109.44408932171734,25.824883938087677],[-109.29164384645627,26.442934068298428],[-109.80145768923182,26.676175645447927],[-110.3917317370857,27.16211497650454],[-110.64101884646163,27.859876003525528],[-111.17891883018785,27.941240546169066],[-111.75960689985163,28.46795258230395],[-112.2282346260904,28.95440867768349],[-112.27182369672869,29.266844387320074],[-112.80959448937398,30.021113593052345],[-113.16381059451868,30.78688080496943],[-113.14866939985717,31.17096588797892],[-113.87188106978186,31.567608344035193],[-114.2057366606035,31.52404511161313],[-114.77645117883503,31.799532172161147],[-114.93669979537212,31.3934846054276],[-114.77123185917351,30.913617255165267],[-114.67389929895177,30.162681179315992],[-114.33097449426292,29.75043244070741],[-113.58887508833544,29.061611436473015],[-113.42405310754054,28.82617361095123],[-113.27196936730553,28.7547826197399],[-113.14003943566439,28.411289374295958],[-112.9622983467965,28.42519033458251],[-112.76158708377488,27.780216783147523],[-112.45791052941166,27.52581370697476],[-112.2449519519368,27.17172679291076],[-111.6164890206192,26.662817287700477],[-111.28467464887302,25.732589830014433],[-110.98781938357239,25.294606228124564],[-110.71000688357134,24.82600434010186],[-110.65504899782887,24.298594672131117],[-110.17285620811343,24.265547593680424],[-109.77184709352855,23.811182562754198],[-109.4091043770557,23.36467234953625],[-109.43339230023292,23.1855876734287],[-109.85421932660171,22.818271592698068],[-110.03139197471444,22.823077500901206],[-110.29507097048366,23.43097321216669],[-110.94950130902805,24.00096426034599],[-111.67056840701268,24.484423122652515],[-112.18203589562147,24.738412787367167],[-112.14898881717085,25.47012523040405],[-112.3007108223797,26.012004299416613],[-112.77729671919155,26.32195954030317],[-113.46467078332194,26.768185533143424],[-113.59672990604383,26.639459540304472],[-113.84893673384424,26.90006378835244],[-114.46574662968003,27.142090358991368],[-115.055142178185,27.72272675222291],[-114.98225257043741,27.798200181585116],[-114.57036556685495,27.74148529714489],[-114.19932878299925,28.115002549750553],[-114.16201839888463,28.566111965442303],[-114.93184221073663,29.279479275015486],[-115.518653937627,29.556361599235398],[-115.88736528202958,30.180793768834178],[-116.25835038945293,30.83646434175358],[-116.72152625208498,31.635743720012044],[-117.12775999999985,32.53534],[-115.99135,32.61239000000012],[-114.72139,32.72083],[-114.815,32.52528],[-113.30498,32.03914],[-111.02361,31.33472],[-109.035,31.341940000000136],[-108.24194,31.34222],[-108.24,31.75485371816637],[-106.50759,31.75452],[-106.1429,31.39995],[-105.63159,31.08383],[-105.03737,30.64402],[-104.70575,30.12173],[-104.4569699999999,29.57196],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-101.6624,29.7793],[-100.9576,29.380710000000132],[-100.45584,28.696120000000118],[-100.11,28.110000000000127],[-99.52,27.54],[-99.3,26.84],[-99.02,26.37],[-98.24,26.06],[-97.53,25.84],[-97.14000830767071,25.869997463478395]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Nicaragua","sov_a3":"NIC","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nicaragua","adm0_a3":"NIC","geou_dif":0,"geounit":"Nicaragua","gu_a3":"NIC","su_dif":0,"subunit":"Nicaragua","su_a3":"NIC","brk_diff":0,"name":"Nicaragua","name_long":"Nicaragua","brk_a3":"NIC","brk_name":"Nicaragua","brk_group":null,"abbrev":"Nic.","postal":"NI","formal_en":"Republic of Nicaragua","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nicaragua","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":9,"pop_est":5891199,"gdp_md_est":16790,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NI","iso_a3":"NIC","iso_n3":"558","un_a3":"558","wb_a2":"NI","wb_a3":"NIC","woe_id":-99,"adm0_a3_is":"NIC","adm0_a3_us":"NIC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NIC.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-85.7125404528073,11.088444932494824],[-86.05848832878526,11.403438625529944],[-86.52584998243296,11.806876532432597],[-86.74599158399633,12.143961900272487],[-87.16751624220116,12.458257961471656],[-87.66849341505471,12.909909979702633],[-87.5574666002756,13.064551703336065],[-87.39238623731923,12.914018256069838],[-87.31665442579549,12.984685777228975],[-87.00576900912756,13.025794379117157],[-86.88055701368437,13.254204209847245],[-86.7338217841916,13.263092556201443],[-86.7550866360797,13.754845485890913],[-86.5207081774199,13.77848745366444],[-86.31214209668993,13.77135610600817],[-86.0962638007906,14.038187364147248],[-85.80129472526859,13.83605499923759],[-85.69866533073693,13.960078436738087],[-85.51441301140025,14.079011745657837],[-85.1653645494848,14.354369615125078],[-85.14875057650296,14.560196844943619],[-85.05278744173692,14.551541042534723],[-84.9245006985724,14.790492865452352],[-84.82003679069435,14.819586696832669],[-84.64958207877962,14.666805324761754],[-84.4493359036486,14.621614284722495],[-84.22834164095241,14.748764146376658],[-83.97572140169359,14.749435939996461],[-83.62858496777292,14.880073960830302],[-83.48998877636612,15.016267198135536],[-83.14721900097413,14.99582916916411],[-83.23323442252394,14.899866034398102],[-83.2841615465476,14.6766238468972],[-83.18212643098728,14.31070302983845],[-83.41249996614445,13.970077826386557],[-83.51983191601468,13.567699286345883],[-83.55220720084554,13.127054348193086],[-83.49851538769427,12.869292303921227],[-83.47332312695198,12.419087225794428],[-83.62610449902292,12.320850328007566],[-83.71961300325506,11.893124497927726],[-83.65085751009072,11.629032090700118],[-83.8554703437504,11.373311265503787],[-83.80893571647155,11.103043524617274],[-83.65561174186158,10.938764146361422],[-83.89505449088595,10.726839097532446],[-84.19017859570485,10.793450018756674],[-84.35593075228104,10.999225572142905],[-84.67306901725627,11.082657172078143],[-84.90300330273895,10.952303371621896],[-85.56185197624418,11.217119248901597],[-85.7125404528073,11.088444932494824]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Panama","sov_a3":"PAN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Panama","adm0_a3":"PAN","geou_dif":0,"geounit":"Panama","gu_a3":"PAN","su_dif":0,"subunit":"Panama","su_a3":"PAN","brk_diff":0,"name":"Panama","name_long":"Panama","brk_a3":"PAN","brk_name":"Panama","brk_group":null,"abbrev":"Pan.","postal":"PA","formal_en":"Republic of Panama","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Panama","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":6,"mapcolor13":3,"pop_est":3360474,"gdp_md_est":38830,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PA","iso_a3":"PAN","iso_n3":"591","un_a3":"591","wb_a2":"PA","wb_a3":"PAN","woe_id":-99,"adm0_a3_is":"PAN","adm0_a3_us":"PAN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PAN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-77.88157141794525,7.223771267114785],[-78.21493608266012,7.512254950384161],[-78.42916073272607,8.052041123888927],[-78.18209570993864,8.319182440621773],[-78.4354652574657,8.38770538984079],[-78.62212053090394,8.718124497915028],[-79.12030717641375,8.996092027213022],[-79.55787736684519,8.932374986197146],[-79.76057817251004,8.5845150822244],[-80.16448116730334,8.333315944853595],[-80.38265906443961,8.298408514840432],[-80.4806892564973,8.09030752200107],[-80.00368994822716,7.547524115423371],[-80.276670701809,7.419754136581715],[-80.42115800649708,7.271571966984764],[-80.8864009264208,7.220541490096537],[-81.05954281281473,7.817921047390596],[-81.18971574575795,7.647905585150339],[-81.51951473664468,7.706610012233909],[-81.72131120474445,8.108962714058435],[-82.13144120962892,8.175392767769635],[-82.39093441438257,8.29236237226229],[-82.82008134635042,8.290863755725823],[-82.85095801464482,8.073822740099956],[-82.96578304719736,8.225027980985985],[-82.91317643912421,8.42351715741907],[-82.82977067740516,8.62629547773237],[-82.86865719270477,8.807266343618522],[-82.71918311230053,8.925708726431495],[-82.92715491405916,9.074330145702916],[-82.93289099804358,9.476812038608173],[-82.54619625520348,9.566134751824677],[-82.18712256542341,9.20744863528678],[-82.20758643261095,8.9955752628901],[-81.80856686066929,8.950616766796173],[-81.71415401887204,9.031955471223583],[-81.43928707551154,8.786234035675719],[-80.94730160187676,8.858503526235905],[-80.52190121125008,9.111072089062432],[-79.91459977895599,9.31276520429762],[-79.57330278188431,9.611610012241526],[-79.02119177927793,9.552931423374105],[-79.05845048696037,9.454565334506526],[-78.50088762074719,9.420458889193881],[-78.05592770049802,9.2477304142583],[-77.72951351592641,8.946844387238869],[-77.35336076527385,8.67050466555807],[-77.47472286651133,8.524286200388218],[-77.24256649444008,7.935278225125444],[-77.43110795765699,7.638061224798735],[-77.75341386586139,7.709839789252142],[-77.88157141794525,7.223771267114785]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Puerto Rico","adm0_a3":"PRI","geou_dif":0,"geounit":"Puerto Rico","gu_a3":"PRI","su_dif":0,"subunit":"Puerto Rico","su_a3":"PRI","brk_diff":0,"name":"Puerto Rico","name_long":"Puerto Rico","brk_a3":"PRI","brk_name":"Puerto Rico","brk_group":null,"abbrev":"P.R.","postal":"PR","formal_en":"Commonwealth of Puerto Rico","formal_fr":null,"note_adm0":"Commonwealth of U.S.A.","note_brk":null,"name_sort":"Puerto Rico","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":3971020,"gdp_md_est":70230,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"PR","iso_a3":"PRI","iso_n3":"630","un_a3":"630","wb_a2":"PR","wb_a3":"PRI","woe_id":-99,"adm0_a3_is":"PRI","adm0_a3_us":"PRI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"PRI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-66.28243445500821,18.514761664295364],[-65.7713028632093,18.426679185453878],[-65.59100379094295,18.228034979723915],[-65.84716386581377,17.97590566657186],[-66.59993445500949,17.981822618069273],[-67.18416236028527,17.946553453030077],[-67.24242753769435,18.374460150622937],[-67.10067908391774,18.52060110114435],[-66.28243445500821,18.514761664295364]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"El Salvador","sov_a3":"SLV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"El Salvador","adm0_a3":"SLV","geou_dif":0,"geounit":"El Salvador","gu_a3":"SLV","su_dif":0,"subunit":"El Salvador","su_a3":"SLV","brk_diff":0,"name":"El Salvador","name_long":"El Salvador","brk_a3":"SLV","brk_name":"El Salvador","brk_group":null,"abbrev":"El. S.","postal":"SV","formal_en":"Republic of El Salvador","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"El Salvador","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":6,"mapcolor13":8,"pop_est":7185218,"gdp_md_est":43630,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SV","iso_a3":"SLV","iso_n3":"222","un_a3":"222","wb_a2":"SV","wb_a3":"SLV","woe_id":-99,"adm0_a3_is":"SLV","adm0_a3_us":"SLV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"SLV.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-87.79311113152657,13.384480495655055],[-87.90411210808952,13.149016831917137],[-88.48330156121682,13.163951320849492],[-88.8432279121297,13.259733588102478],[-89.2567427233293,13.458532823129303],[-89.81239356154767,13.520622056527998],[-90.09555457229098,13.735337632700734],[-90.0646779039966,13.881969509328924],[-89.72193396682073,14.134228013561694],[-89.53421932652051,14.244815578666305],[-89.58734269891654,14.362586167859488],[-89.35332597528279,14.424132798719116],[-89.05851192905766,14.340029405164085],[-88.84307288283284,14.140506700085169],[-88.541230841816,13.980154730683479],[-88.50399797234971,13.845485948130857],[-88.06534257684012,13.964625962779778],[-87.8595153470216,13.893312486216983],[-87.72350297722939,13.785050360565506],[-87.79311113152657,13.384480495655055]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Trinidad and Tobago","sov_a3":"TTO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Trinidad and Tobago","adm0_a3":"TTO","geou_dif":0,"geounit":"Trinidad and Tobago","gu_a3":"TTO","su_dif":0,"subunit":"Trinidad and Tobago","su_a3":"TTO","brk_diff":0,"name":"Trinidad and Tobago","name_long":"Trinidad and Tobago","brk_a3":"TTO","brk_name":"Trinidad and Tobago","brk_group":null,"abbrev":"Tr.T.","postal":"TT","formal_en":"Republic of Trinidad and Tobago","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Trinidad and Tobago","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":1310000,"gdp_md_est":29010,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TT","iso_a3":"TTO","iso_n3":"780","un_a3":"780","wb_a2":"TT","wb_a3":"TTO","woe_id":-99,"adm0_a3_is":"TTO","adm0_a3_us":"TTO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":19,"long_len":19,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"TTO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-61.68,10.76],[-61.105,10.89],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.95,10.09],[-61.66,10.365],[-61.68,10.76]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Country","admin":"United States of America","adm0_a3":"USA","geou_dif":0,"geounit":"United States of America","gu_a3":"USA","su_dif":0,"subunit":"United States of America","su_a3":"USA","brk_diff":0,"name":"United States","name_long":"United States","brk_a3":"USA","brk_name":"United States","brk_group":null,"abbrev":"U.S.A.","postal":"US","formal_en":"United States of America","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United States of America","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":313973000,"gdp_md_est":15094000,"pop_year":0,"lastcensus":2010,"gdp_year":0,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":0,"fips_10":null,"iso_a2":"US","iso_a3":"USA","iso_n3":"840","un_a3":"840","wb_a2":"US","wb_a3":"USA","woe_id":-99,"adm0_a3_is":"USA","adm0_a3_us":"USA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":13,"long_len":13,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"USA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.54211,19.08348],[-155.68817,18.91619],[-155.93665,19.05939],[-155.90806,19.33888],[-156.07347,19.70294],[-156.02368,19.81422],[-155.85008,19.97729],[-155.91907,20.17395],[-155.86108,20.26721],[-155.78505,20.2487],[-155.40214,20.07975],[-155.22452,19.99302],[-155.06226,19.8591],[-154.80741,19.50871],[-154.83147,19.45328],[-155.22217,19.23972],[-155.54211,19.08348]]],[[[-156.07926,20.64397],[-156.41445,20.57241],[-156.58673,20.783],[-156.70167,20.8643],[-156.71055,20.92676],[-156.61258,21.01249],[-156.25711,20.91745],[-155.99566,20.76404],[-156.07926,20.64397]]],[[[-156.75824,21.17684],[-156.78933,21.06873],[-157.32521,21.09777],[-157.25027,21.21958],[-156.75824,21.17684]]],[[[-157.65283,21.32217],[-157.70703,21.26442],[-157.7786,21.27729],[-158.12667,21.31244],[-158.2538,21.53919],[-158.29265,21.57912],[-158.0252,21.71696],[-157.94161,21.65272],[-157.65283,21.32217]]],[[[-159.34512,21.982],[-159.46372,21.88299],[-159.80051,22.06533],[-159.74877,22.1382],[-159.5962,22.23618],[-159.36569,22.21494],[-159.34512,21.982]]],[[[-94.81758,49.38905],[-94.63999999999987,48.84000000000012],[-94.32914,48.67074000000011],[-93.63087,48.60926],[-92.61,48.45],[-91.64,48.14],[-90.82999999999986,48.27],[-89.6,48.010000000000105],[-89.27291744663668,48.01980825458284],[-88.37811418328653,48.30291758889382],[-87.43979262330024,47.94],[-86.46199083122815,47.55333801939204],[-85.65236324740323,47.22021881773051],[-84.87607988151485,46.90008331968238],[-84.77923824739983,46.63710195574913],[-84.54374874544567,46.53868419044923],[-84.6049,46.4396],[-84.3367,46.40877000000011],[-84.1421195136733,46.51222585711574],[-84.09185126416148,46.27541860613826],[-83.89076534700567,46.116926988299156],[-83.6161309475905,46.116926988299156],[-83.46955074739463,45.99468638771259],[-83.59285071484308,45.81689362241255],[-82.55092464875818,45.34751658790545],[-82.33776312543108,44.44],[-82.13764238150397,43.57108755144],[-82.43,42.9800000000001],[-82.89999999999989,42.43000000000015],[-83.11999999999989,42.08],[-83.14199968131256,41.975681057293],[-83.02981014680694,41.83279572200601],[-82.69008928092018,41.675105088867326],[-82.43927771679162,41.675105088867326],[-81.27774654816707,42.20902598730686],[-80.24744767934784,42.36619985612267],[-78.9393621487437,42.86361135514812],[-78.92,42.965],[-79.00999999999988,43.27],[-79.17167355011188,43.46633942318431],[-78.72027991404238,43.62508942318496],[-77.73788509795762,43.62905558936339],[-76.82003414580558,43.628784288093755],[-76.5,44.018458893758606],[-76.375,44.09631],[-75.31821,44.816450000000174],[-74.867,45.000480000000124],[-73.34783,45.00738],[-71.50505999999987,45.0082000000001],[-71.405,45.25500000000014],[-71.08482,45.30524000000017],[-70.6599999999998,45.46],[-70.305,45.915],[-69.99997,46.69307],[-69.237216,47.447781],[-68.905,47.185],[-68.23444,47.35486],[-67.79046,47.06636],[-67.79134,45.70281000000014],[-67.13741,45.13753],[-66.96466,44.80970000000016],[-68.03252,44.3252],[-69.05999999999989,43.98],[-70.11617,43.684050000000155],[-70.645475633411,43.09023834896405],[-70.81489,42.8653],[-70.825,42.335],[-70.495,41.805],[-70.08,41.78],[-70.185,42.145],[-69.88497,41.92283000000012],[-69.96503,41.63717000000017],[-70.64,41.475],[-71.12039,41.49445000000017],[-71.85999999999984,41.32],[-72.295,41.27],[-72.87643,41.22065],[-73.71,40.93110235165449],[-72.24126,41.11948000000015],[-71.94499999999982,40.93],[-73.345,40.63],[-73.982,40.628],[-73.952325,40.75075],[-74.25671,40.47351],[-73.96244,40.42763],[-74.17838,39.70926],[-74.90604,38.93954],[-74.98041,39.1964],[-75.20002,39.248450000000105],[-75.52805,39.4985],[-75.32,38.96],[-75.0718347647898,38.78203223017928],[-75.05673,38.40412000000012],[-75.37747,38.01551],[-75.94023,37.21689],[-76.03127,37.2566],[-75.72204999999978,37.93705000000011],[-76.23287,38.319215],[-76.35,39.15],[-76.542725,38.71761500000011],[-76.32933,38.08326],[-76.98999793161354,38.23999176691339],[-76.30162,37.917945],[-76.25874,36.96640000000011],[-75.9718,36.89726],[-75.86803999999984,36.55125],[-75.72749,35.55074000000013],[-76.36318,34.80854000000013],[-77.39763499999988,34.51201],[-78.05496,33.92547],[-78.55434999999983,33.86133000000012],[-79.06067,33.49395],[-79.20357,33.15839],[-80.301325,32.509355],[-80.86498,32.0333],[-81.33629,31.44049],[-81.49042,30.72999000000013],[-81.31371,30.035520000000105],[-80.98,29.180000000000117],[-80.53558499999988,28.47213],[-80.5299999999998,28.040000000000106],[-80.05653928497756,26.880000000000138],[-80.088015,26.205765],[-80.13155999999987,25.816775],[-80.38103,25.20616],[-80.67999999999988,25.08],[-81.17213,25.201260000000133],[-81.33,25.64],[-81.70999999999981,25.87],[-82.24,26.730000000000132],[-82.70515,27.49504],[-82.85526,27.88624],[-82.65,28.550000000000153],[-82.92999999999988,29.100000000000136],[-83.70959,29.93656],[-84.1,30.090000000000117],[-85.10882,29.63615],[-85.28784,29.68612000000013],[-85.7731,30.152610000000124],[-86.39999999999988,30.40000000000012],[-87.53036,30.27433],[-88.41782,30.3849],[-89.18048999999984,30.31598],[-89.59383117841978,30.15999400483685],[-89.413735,29.89419],[-89.43,29.48864],[-89.21767,29.29108],[-89.40823,29.15961],[-89.77928,29.307140000000143],[-90.15463,29.11743],[-90.880225,29.148535000000123],[-91.62678499999987,29.67700000000013],[-92.49906,29.5523],[-93.22637,29.78375],[-93.84842,29.71363],[-94.69,29.480000000000132],[-95.60026,28.73863],[-96.59404,28.30748],[-97.13999999999982,27.83],[-97.37,27.38],[-97.37999999999987,26.69],[-97.33,26.21000000000012],[-97.13999999999982,25.87],[-97.52999999999989,25.84],[-98.24,26.060000000000116],[-99.01999999999988,26.37],[-99.3,26.84],[-99.51999999999987,27.54],[-100.11,28.110000000000127],[-100.45584,28.696120000000118],[-100.9576,29.380710000000132],[-101.6624,29.779300000000116],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.45696999999984,29.57196],[-104.70575,30.12173],[-105.03737,30.64402],[-105.63159,31.08383000000012],[-106.1429,31.39995],[-106.50758999999982,31.75452],[-108.24,31.7548537181664],[-108.24194,31.34222],[-109.035,31.34194000000016],[-111.02361,31.33472],[-113.30498,32.03914],[-114.815,32.52528],[-114.72138999999986,32.72083],[-115.9913499999999,32.61239000000014],[-117.12775999999978,32.53534],[-117.29593769127388,33.04622461520389],[-117.944,33.621236431201396],[-118.41060227589749,33.740909223124504],[-118.51989482279971,34.02778157757575],[-119.081,34.078],[-119.43884064201669,34.3484771782843],[-120.36778,34.44711],[-120.62286,34.60855],[-120.74433,35.15686000000011],[-121.71456999999988,36.16153],[-122.54747,37.551760000000115],[-122.51201,37.78339000000013],[-122.95319,38.11371000000011],[-123.7272,38.95166000000012],[-123.86517,39.76699000000013],[-124.39807,40.3132],[-124.17886,41.142020000000116],[-124.2137,41.99964000000014],[-124.53284,42.7659900000001],[-124.14214,43.70838],[-124.020535,44.615895],[-123.89893,45.52341],[-124.079635,46.86475],[-124.39567,47.72017000000011],[-124.68721008300783,48.18443298339855],[-124.56610107421876,48.3797149658204],[-123.12,48.04],[-122.58736,47.096],[-122.34,47.36],[-122.5,48.18],[-122.84,49.000000000000114],[-120,49.000000000000114],[-117.03121,49.000000000000114],[-116.04818,49.000000000000114],[-113,49.000000000000114],[-110.04999999999983,49.000000000000114],[-107.05,49.000000000000114],[-104.04826,48.99986],[-100.65,49.000000000000114],[-97.22872000000471,49.00070000000011],[-95.15906950917196,49.000000000000114],[-95.15609,49.38425],[-94.81758,49.38905]]],[[[-153.0063140533369,57.11584219016589],[-154.0050902984581,56.73467682558106],[-154.5164027577701,56.9927489284467],[-154.67099280497115,57.46119578717249],[-153.76277950744148,57.81657461204377],[-153.2287294179211,57.968968410872435],[-152.56479061583514,57.901427313866975],[-152.1411472239063,57.59105866152199],[-153.0063140533369,57.11584219016589]]],[[[-165.57916419173358,59.90998688418755],[-166.19277014876727,59.754440822988975],[-166.848337368822,59.94140615502096],[-167.45527706609008,60.21306915957938],[-166.46779212142462,60.38416982689778],[-165.67442969466367,60.293606879306246],[-165.57916419173358,59.90998688418755]]],[[[-171.7316568675394,63.78251536727592],[-171.1144335602452,63.592191067144995],[-170.4911124339407,63.69497549097352],[-169.68250545965358,63.431115627691156],[-168.6894394603007,63.2975062120006],[-168.7719408844546,63.18859813094545],[-169.52943986720504,62.9769314642779],[-170.29055620021597,63.194437567794466],[-170.67138566799088,63.37582184513897],[-171.55306311753867,63.317789211675084],[-171.7911106028912,63.405845852300494],[-171.7316568675394,63.78251536727592]]],[[[-155.06779029032424,71.1477763943237],[-154.34416520894123,70.6964085964702],[-153.90000627339262,70.8899885118357],[-152.2100060699353,70.82999217394485],[-152.27000240782615,70.60000621202985],[-150.73999243874454,70.43001658800571],[-149.72000301816752,70.53001048449045],[-147.61336157935708,70.2140349392418],[-145.6899898002253,70.12000967068676],[-144.92001095907642,69.9899917670405],[-143.5894461804252,70.15251414659832],[-142.07251034871342,69.85193817817265],[-140.98598752156073,69.71199839952638],[-140.9859883290049,69.71199839952638],[-140.9924987520294,66.00002859156868],[-140.99776974812312,60.30639679629861],[-140.0129978161531,60.27683787702759],[-139.03900042031586,60.000007229240026],[-138.34089,59.56211000000016],[-137.4525,58.905000000000115],[-136.4797200000001,59.46389],[-135.47583,59.78778],[-134.945,59.27056000000013],[-134.27111,58.86111],[-133.35554888220722,58.410285142645165],[-132.73042,57.69289000000011],[-131.70780999999988,56.55212],[-130.00778,55.91583],[-129.9799942633583,55.28499787049722],[-130.53611018946725,54.8027534043494],[-131.08581823797215,55.17890615500204],[-131.9672114671423,55.49777558045906],[-132.25001074285947,56.36999624289746],[-133.53918108435641,57.17888743756214],[-134.07806292029605,58.1230675319669],[-135.03821103227907,58.18771474876393],[-136.62806230995466,58.21220937767046],[-137.80000627968604,58.49999542910379],[-139.867787041413,59.53776154238915],[-140.82527381713305,59.727517401765084],[-142.57444353556446,60.08444651960499],[-143.9588809948799,59.9991804063234],[-145.92555681682785,60.45860972761429],[-147.11437394914668,60.88465607364463],[-148.22430620012767,60.672989406977166],[-148.01806555885076,59.97832896589363],[-148.5708225168609,59.914172675203304],[-149.72785783587585,59.70565827090556],[-150.60824337461645,59.36821116803949],[-151.71639278868332,59.15582103131999],[-151.85943315326716,59.744984035879604],[-151.4097190012472,60.72580272077939],[-150.34694149473253,61.03358755150986],[-150.62111080625698,61.284424953854455],[-151.89583919981686,60.72719798445129],[-152.5783298410956,60.06165721296429],[-154.01917212625762,59.35027944603428],[-153.28751135965317,58.8647276882198],[-154.2324924387585,58.14637360293054],[-155.30749142151024,57.72779450136633],[-156.3083347239231,57.42277435976365],[-156.55609737854633,56.979984849670636],[-158.11721655986776,56.46360809999419],[-158.43332129619716,55.99415355083855],[-159.60332739971744,55.56668610292012],[-160.2897196116342,55.643580634170576],[-161.2230476552578,55.364734605523495],[-162.23776607974108,55.02418691672011],[-163.06944658104638,54.68973704692717],[-164.7855692210272,54.40417308208217],[-164.94222632552004,54.57222483989534],[-163.84833960676568,55.03943146424612],[-162.87000139061593,55.348043117893205],[-161.80417497459604,55.89498647727043],[-160.56360470278116,56.00805451112504],[-160.0705598622845,56.41805532492876],[-158.68444291891944,57.01667511659787],[-158.46109737855394,57.21692129172888],[-157.7227703521839,57.57000051536306],[-157.55027442119356,58.32832632103023],[-157.041674974577,58.91888458926172],[-158.19473120830548,58.61580231386984],[-158.5172179840231,58.78778148053732],[-159.05860612692874,58.424186102931685],[-159.71166704001735,58.93139028587634],[-159.9812888255002,58.57254914004164],[-160.35527116599653,59.07112335879364],[-161.35500342511506,58.670837714260756],[-161.96889360252635,58.67166453717738],[-162.05498653872468,59.26692536074745],[-161.87417070213536,59.6336213242906],[-162.5180590484921,59.98972361921391],[-163.81834143782015,59.79805573184339],[-164.66221757714646,60.26748444278265],[-165.34638770247483,60.50749563256241],[-165.35083187565186,61.07389516869751],[-166.12137915755596,61.500019029376226],[-165.73445187077053,62.074996853271806],[-164.91917863671785,62.63307648380793],[-164.56250790103934,63.14637848576305],[-163.75333248599702,63.21944896102377],[-163.0672244944579,63.05945872664802],[-162.26055538638172,63.54193573674117],[-161.5344498362486,63.455816962326764],[-160.77250668032113,63.766108100023274],[-160.95833513084256,64.22279857040277],[-161.5180684072122,64.40278758407531],[-160.77777767641476,64.78860382756642],[-161.39192623598763,64.77723501246234],[-162.45305009666885,64.55944468856822],[-162.7577860178941,64.33860545516882],[-163.5463942128843,64.5591604681905],[-164.96082984114517,64.44694509546885],[-166.42528825586447,64.68667206487072],[-166.84500423893905,65.08889557561453],[-168.11056006576717,65.66999705673675],[-166.70527116602196,66.0883177761394],[-164.4747096425755,66.5766600612975],[-163.65251176659564,66.5766600612975],[-163.78860165103617,66.07720734319668],[-161.67777442121016,66.11611969671242],[-162.48971452538,66.73556509059512],[-163.71971696679108,67.1163945583701],[-164.4309913808565,67.6163382025778],[-165.39028683170676,68.04277212185025],[-166.76444068099602,68.35887685817968],[-166.20470740462662,68.88303091091618],[-164.4308105133435,68.91553538682774],[-163.16861365461452,69.3711148139129],[-162.93056616926202,69.85806183539927],[-161.90889726463553,70.33332998318764],[-160.9347965159337,70.44768992784958],[-159.03917578838715,70.89164215766894],[-158.11972286683397,70.82472117785105],[-156.58082455139805,71.35776357694175],[-155.06779029032424,71.1477763943237]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Argentina","sov_a3":"ARG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Argentina","adm0_a3":"ARG","geou_dif":0,"geounit":"Argentina","gu_a3":"ARG","su_dif":0,"subunit":"Argentina","su_a3":"ARG","brk_diff":0,"name":"Argentina","name_long":"Argentina","brk_a3":"ARG","brk_name":"Argentina","brk_group":null,"abbrev":"Arg.","postal":"AR","formal_en":"Argentine Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Argentina","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":13,"pop_est":40913584,"gdp_md_est":573900,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AR","iso_a3":"ARG","iso_n3":"032","un_a3":"032","wb_a2":"AR","wb_a3":"ARG","woe_id":-99,"adm0_a3_is":"ARG","adm0_a3_us":"ARG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ARG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.5,-55.2],[-66.45,-55.25],[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.63401022758316,-52.63637045887445],[-68.25,-53.1],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2]]],[[[-64.96489213729458,-22.075861504812348],[-64.37702104354227,-22.798091322523547],[-63.98683814152247,-21.993644301035957],[-62.846468471921554,-22.034985446869456],[-62.6850571356579,-22.249029229422405],[-60.84656470400994,-23.8807125790383],[-60.02896603050399,-24.032796319273245],[-58.80712846539495,-24.771459242453275],[-57.77721716981796,-25.16233977630904],[-57.63366004091114,-25.60365650808167],[-58.61817359071972,-27.12371876394712],[-57.60975969097615,-27.395898532828426],[-56.48670162619299,-27.54849903738625],[-55.6958455063982,-27.38783700939082],[-54.78879492859505,-26.621785577096087],[-54.625290696823555,-25.739255466415486],[-54.13004960795441,-25.54763925547725],[-53.62834896504873,-26.124865004177437],[-53.648735317587885,-26.92347258881611],[-54.49072526713553,-27.474756768505767],[-55.1622863429846,-27.88191537853342],[-56.2908996242391,-28.852760512000852],[-57.62513342958291,-30.216294854454244],[-57.87493730328191,-31.016556084926165],[-58.14244035504075,-32.04450367607619],[-58.13264767112142,-33.040566908502015],[-58.34961117209883,-33.263188978815435],[-58.42707414410438,-33.90945444105755],[-58.49544206402654,-34.43148976007011],[-57.225829637263644,-35.28802662530789],[-57.362358771378744,-35.977390232081504],[-56.73748735210546,-36.41312590916658],[-56.78828528504834,-36.901571547189334],[-57.74915686708343,-38.183870538079915],[-59.231857062401865,-38.720220228837206],[-61.23744523786561,-38.928424574541154],[-62.33595699731015,-38.82770720800437],[-62.12576310896293,-39.424104913084875],[-62.330530971919444,-40.17258635840032],[-62.14599443220524,-40.67689666113674],[-62.745802781816984,-41.02876148861209],[-63.77049475773253,-41.166789239263665],[-64.73208980981971,-40.802677097335135],[-65.11803524439159,-41.06431487402888],[-64.97856055363584,-42.05800099056932],[-64.30340796574248,-42.359016208669495],[-63.75594784204235,-42.04368661882451],[-63.45805904809589,-42.563138116222355],[-64.3788038804563,-42.87355844499964],[-65.1818039618397,-43.495380954767796],[-65.32882341171013,-44.501366062193696],[-65.5652689276616,-45.03678557716979],[-66.50996578638936,-45.03962778094584],[-67.29379391139244,-45.5518962542552],[-67.58054643418009,-46.30177296324254],[-66.59706641301726,-47.03392465595381],[-65.64102657740145,-47.236134535511894],[-65.98508826360074,-48.13328907653114],[-67.16617896184766,-48.697337334996945],[-67.81608761256646,-49.86966887797042],[-68.72874508327317,-50.26421843851887],[-69.1385391913478,-50.7325102679478],[-68.81556148952353,-51.771104011594105],[-68.14999487982041,-52.3499834061277],[-68.57154537624135,-52.29944385534626],[-69.49836218939609,-52.14276091263725],[-71.91480383979635,-52.009022305865926],[-72.32940385607404,-51.42595631287241],[-72.30997351753237,-50.677009779666356],[-72.97574683296463,-50.74145029073431],[-73.32805091011448,-50.37878508890987],[-73.41543575712004,-49.31843637471296],[-72.64824744331494,-48.87861825947679],[-72.33116085477195,-48.244238376661826],[-72.44735531278027,-47.73853281025353],[-71.91725847033021,-46.8848381487918],[-71.55200944689125,-45.56073292417713],[-71.65931555854533,-44.97368865334144],[-71.22277889675973,-44.784242852559416],[-71.32980078803621,-44.40752166115169],[-71.79362260607195,-44.20717213315611],[-71.46405615913051,-43.78761117937833],[-71.91542395698391,-43.40856454851742],[-72.14889807807853,-42.25488819760139],[-71.74680375841547,-42.051386407235995],[-71.91573401557756,-40.83233936947073],[-71.68076127794646,-39.80816415787807],[-71.41351660834904,-38.916022230791114],[-70.81466427273472,-38.55299529394074],[-71.11862504747543,-37.5768274879472],[-71.1218806627098,-36.65812387466234],[-70.36476925320167,-36.005088799789945],[-70.38804948594908,-35.16968759535944],[-69.81730912950147,-34.193571465798286],[-69.81477698431921,-33.27388600029985],[-70.07439938015364,-33.09120981214803],[-70.53506893581945,-31.365010267870286],[-69.91900834825192,-30.336339206668313],[-70.01355038112987,-29.36792286551855],[-69.65613033718314,-28.459141127233693],[-69.00123491074828,-27.52121388113613],[-68.2955415513704,-26.89933969493579],[-68.59479977077268,-26.506908868111267],[-68.38600114609736,-26.185016371365233],[-68.41765296087613,-24.518554782816878],[-67.32844295924414,-24.02530323659091],[-66.98523393417764,-22.98634856536283],[-67.10667355006362,-22.7359245744764],[-66.27333940292485,-21.832310479420684],[-64.96489213729458,-22.075861504812348]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Bolivia","sov_a3":"BOL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bolivia","adm0_a3":"BOL","geou_dif":0,"geounit":"Bolivia","gu_a3":"BOL","su_dif":0,"subunit":"Bolivia","su_a3":"BOL","brk_diff":0,"name":"Bolivia","name_long":"Bolivia","brk_a3":"BOL","brk_name":"Bolivia","brk_group":null,"abbrev":"Bolivia","postal":"BO","formal_en":"Plurinational State of Bolivia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bolivia","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":3,"pop_est":9775246,"gdp_md_est":43270,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BO","iso_a3":"BOL","iso_n3":"068","un_a3":"068","wb_a2":"BO","wb_a3":"BOL","woe_id":-99,"adm0_a3_is":"BOL","adm0_a3_us":"BOL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"BOL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-62.846468471921554,-22.03498544686945],[-63.98683814152247,-21.99364430103595],[-64.37702104354226,-22.79809132252354],[-64.9648921372946,-22.075861504812327],[-66.27333940292485,-21.83231047942072],[-67.1066735500636,-22.735924574476414],[-67.82817989772273,-22.872918796482175],[-68.21991309271128,-21.494346612231865],[-68.75716712103375,-20.372657972904463],[-68.44222510443092,-19.40506845467143],[-68.96681840684187,-18.981683444904107],[-69.10024695501949,-18.260125420812674],[-69.59042375352405,-17.580011895419332],[-68.9596353827533,-16.50069793057127],[-69.38976416693471,-15.660129082911654],[-69.16034664577495,-15.323973890853019],[-69.33953467474701,-14.953195489158832],[-68.9488866848366,-14.453639418193283],[-68.92922380234954,-13.602683607643007],[-68.88007951523997,-12.899729099176653],[-68.66507971868961,-12.561300144097173],[-69.52967810736496,-10.951734307502194],[-68.78615759954948,-11.03638030359628],[-68.27125362819326,-11.01452117273682],[-68.04819230820539,-10.712059014532485],[-67.17380123561074,-10.30681243249961],[-66.64690833196279,-9.931331475466862],[-65.33843522811642,-9.76198780684639],[-65.44483700220539,-10.511451104375432],[-65.32189876978302,-10.895872084194679],[-65.40228146021303,-11.566270440317153],[-64.3163529120316,-12.461978041232191],[-63.19649878605057,-12.627032565972433],[-62.80306026879638,-13.000653171442686],[-62.127080857986385,-13.198780612849724],[-61.71320431176078,-13.489202162330052],[-61.08412126325565,-13.479383640194598],[-60.503304002511136,-13.775954685117659],[-60.45919816755003,-14.354007256734555],[-60.26432634137736,-14.64597909918364],[-60.251148851142936,-15.077218926659322],[-60.542965664295146,-15.093910414289596],[-60.158389655179036,-16.258283786690082],[-58.24121985536669,-16.299573256091293],[-58.38805843772404,-16.877109063385276],[-58.28080400250226,-17.271710300366017],[-57.734558274961,-17.55246835700777],[-57.498371141170985,-18.174187513911292],[-57.67600887717431,-18.961839694904025],[-57.949997321185826,-19.40000416430682],[-57.85380164247451,-19.969995212486186],[-58.166392381408045,-20.176700941653678],[-58.183471442280506,-19.868399346600363],[-59.115042487206104,-19.356906019775398],[-60.04356462262649,-19.342746677327426],[-61.786326463453776,-19.633736667562964],[-62.26596126977079,-20.513734633061276],[-62.29117936872922,-21.05163461678739],[-62.685057135657885,-22.249029229422387],[-62.846468471921554,-22.03498544686945]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Brazil","sov_a3":"BRA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Brazil","adm0_a3":"BRA","geou_dif":0,"geounit":"Brazil","gu_a3":"BRA","su_dif":0,"subunit":"Brazil","su_a3":"BRA","brk_diff":0,"name":"Brazil","name_long":"Brazil","brk_a3":"BRA","brk_name":"Brazil","brk_group":null,"abbrev":"Brazil","postal":"BR","formal_en":"Federative Republic of Brazil","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Brazil","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":5,"mapcolor13":7,"pop_est":198739269,"gdp_md_est":1993000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BR","iso_a3":"BRA","iso_n3":"076","un_a3":"076","wb_a2":"BR","wb_a3":"BRA","woe_id":-99,"adm0_a3_is":"BRA","adm0_a3_us":"BRA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"BRA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-57.62513342958296,-30.216294854454258],[-56.29089962423908,-28.85276051200089],[-55.16228634298457,-27.881915378533463],[-54.490725267135524,-27.47475676850579],[-53.648735317587885,-26.923472588816086],[-53.62834896504874,-26.124865004177472],[-54.13004960795439,-25.547639255477254],[-54.625290696823576,-25.73925546641551],[-54.42894609233059,-25.162184747012166],[-54.29347632507745,-24.570799655863965],[-54.29295956075451,-24.02101409271073],[-54.652834235235126,-23.83957813893396],[-55.02790178080954,-24.001273695575225],[-55.40074723979542,-23.956935316668805],[-55.517639329639636,-23.571997572526634],[-55.610682745981144,-22.655619398694842],[-55.79795813660691,-22.356929620047822],[-56.47331743022939,-22.086300144135283],[-56.8815095689029,-22.28215382252148],[-57.937155727761294,-22.090175876557172],[-57.87067399761779,-20.73268767668195],[-58.166392381408045,-20.176700941653678],[-57.85380164247451,-19.969995212486186],[-57.949997321185826,-19.40000416430682],[-57.67600887717431,-18.961839694904025],[-57.498371141170985,-18.174187513911292],[-57.734558274961,-17.55246835700777],[-58.28080400250226,-17.271710300366017],[-58.38805843772404,-16.877109063385276],[-58.24121985536669,-16.299573256091293],[-60.158389655179036,-16.258283786690082],[-60.542965664295146,-15.093910414289596],[-60.251148851142936,-15.077218926659322],[-60.26432634137736,-14.64597909918364],[-60.45919816755003,-14.354007256734555],[-60.503304002511136,-13.775954685117659],[-61.08412126325565,-13.479383640194598],[-61.71320431176078,-13.489202162330052],[-62.127080857986385,-13.198780612849724],[-62.80306026879638,-13.000653171442686],[-63.19649878605057,-12.627032565972433],[-64.3163529120316,-12.461978041232191],[-65.40228146021303,-11.566270440317153],[-65.32189876978302,-10.895872084194679],[-65.44483700220539,-10.511451104375432],[-65.33843522811642,-9.76198780684639],[-66.64690833196279,-9.931331475466862],[-67.17380123561074,-10.30681243249961],[-68.04819230820539,-10.712059014532485],[-68.27125362819326,-11.01452117273682],[-68.78615759954948,-11.03638030359628],[-69.52967810736496,-10.951734307502194],[-70.0937522040469,-11.123971856331012],[-70.54868567572841,-11.009146823778465],[-70.48189388699117,-9.490118096558845],[-71.30241227892154,-10.079436130415374],[-72.18489071316984,-10.053597914269432],[-72.56303300646564,-9.520193780152717],[-73.22671342639016,-9.462212823121234],[-73.01538265653254,-9.03283334720806],[-73.57105933296707,-8.424446709835834],[-73.98723548042966,-7.523829847853064],[-73.7234014553635,-7.340998630404414],[-73.72448666044164,-6.91859547285064],[-73.1200274319236,-6.629930922068239],[-73.21971126981461,-6.089188734566078],[-72.96450720894119,-5.741251315944893],[-72.89192765978726,-5.274561455916981],[-71.74840572781655,-4.593982842633011],[-70.92884334988358,-4.401591485210368],[-70.7947688463023,-4.251264743673303],[-69.89363521999663,-4.298186944194327],[-69.44410193548961,-1.556287123219818],[-69.42048580593223,-1.122618503426409],[-69.5770653957766,-0.549991957200163],[-70.02065589057005,-0.185156345219539],[-70.0155657619893,0.541414292804205],[-69.45239600287246,0.706158758950693],[-69.25243404811906,0.602650865070075],[-69.21863766140018,0.985676581217433],[-69.80459672715773,1.089081122233466],[-69.81697323269162,1.714805202639624],[-67.86856502955884,1.692455145673392],[-67.53781002467468,2.03716278727633],[-67.25999752467358,1.719998684084956],[-67.0650481838525,1.130112209473225],[-66.87632585312258,1.253360500489336],[-66.32576514348496,0.724452215982012],[-65.54826738143757,0.78925446207603],[-65.35471330428837,1.0952822941085],[-64.61101192895985,1.328730576987042],[-64.19930579289051,1.49285492594602],[-64.08308549666609,1.91636912679408],[-63.36878801131166,2.200899562993129],[-63.42286739770512,2.411067613124174],[-64.26999915226578,2.497005520025567],[-64.40882788761792,3.126786200366624],[-64.36849443221409,3.797210394705246],[-64.81606401229402,4.056445217297423],[-64.62865943058755,4.14848094320925],[-63.88834286157416,4.020530096854571],[-63.0931975978991,3.770571193858785],[-62.804533047116706,4.006965033377952],[-62.08542965355914,4.162123521334308],[-60.96689327660153,4.536467596856639],[-60.60117916527194,4.91809804933213],[-60.73357418480372,5.200277207861901],[-60.21368343773133,5.244486395687602],[-59.98095862490488,5.014061184098139],[-60.11100236676737,4.574966538914083],[-59.767405768458715,4.423502915866607],[-59.53803992373123,3.958802598481938],[-59.81541317405786,3.606498521332085],[-59.97452490908456,2.755232652188056],[-59.71854570172674,2.24963043864436],[-59.64604366722126,1.786893825686789],[-59.03086157900265,1.317697658692722],[-58.5400129868783,1.268088283692521],[-58.42947709820596,1.463941962078721],[-58.11344987652502,1.507195135907025],[-57.66097103537737,1.682584947105639],[-57.335822923396904,1.94853770589576],[-56.78270423036083,1.863710842288654],[-56.539385748914555,1.899522609866921],[-55.99569800477175,1.817667141116601],[-55.905600145070885,2.02199575439866],[-56.0733418442903,2.220794989425499],[-55.973322109589375,2.510363877773017],[-55.569755011606,2.421506252447131],[-55.09758744975514,2.523748073736613],[-54.52475419779971,2.311848863123785],[-54.08806250671724,2.105556545414629],[-53.77852067728892,2.376702785650082],[-53.55483924011354,2.334896551925951],[-53.4184651352953,2.053389187015981],[-52.939657151894956,2.124857692875636],[-52.55642473001842,2.504705308437053],[-52.249337531123956,3.241094468596245],[-51.65779741067888,4.156232408053029],[-51.31714636901086,4.203490505383954],[-51.069771287629656,3.650397650564031],[-50.508875291533656,1.901563828942457],[-49.97407589374506,1.736483465986069],[-49.947100796088705,1.046189683431223],[-50.699251268096916,0.222984117021682],[-50.38821082213214,-0.078444512536819],[-48.62056677915631,-0.235489190271821],[-48.58449662941659,-1.237805271005001],[-47.824956427590635,-0.5816179337628],[-46.566583624851226,-0.941027520352776],[-44.905703090990414,-1.551739597178134],[-44.417619187993665,-2.137750339367976],[-44.58158850765578,-2.691308282078524],[-43.418791266440195,-2.383110039889793],[-41.47265682632825,-2.912018324397116],[-39.97866533055404,-2.873054294449041],[-38.50038347019657,-3.700652357603395],[-37.2232521225352,-4.820945733258917],[-36.45293738457639,-5.109403578312153],[-35.59779578301047,-5.149504489770648],[-35.23538896334756,-5.464937432480247],[-34.89602983248683,-6.738193047719711],[-34.729993455533034,-7.343220716992966],[-35.12821204277422,-8.996401462442286],[-35.636966518687714,-9.649281508017815],[-37.046518724097,-11.040721123908801],[-37.68361161960736,-12.171194756725823],[-38.42387651218844,-13.038118584854288],[-38.673887091616514,-13.057652276260619],[-38.953275722802545,-13.793369642800023],[-38.88229814304965,-15.667053724838768],[-39.16109249526431,-17.208406670808472],[-39.2673392400564,-17.867746270420483],[-39.58352149103423,-18.262295830968938],[-39.76082333022764,-19.59911345792741],[-40.77474077001034,-20.904511814052423],[-40.94475623225061,-21.937316989837807],[-41.754164191238225,-22.370675551037458],[-41.98828426773655,-22.970070489190892],[-43.07470374202475,-22.96769337330547],[-44.64781185563781,-23.351959323827842],[-45.35213578955991,-23.796841729428582],[-46.47209326840554,-24.08896860117454],[-47.64897233742066,-24.885199069927722],[-48.4954581365777,-25.877024834905654],[-48.64100480812774,-26.623697605090932],[-48.47473588722865,-27.17591196056189],[-48.661520351747626,-28.186134535435716],[-48.88845740415739,-28.674115085567884],[-49.587329474472675,-29.224469089476337],[-50.696874152211485,-30.984465020472957],[-51.576226162306156,-31.77769825615321],[-52.256081305538046,-32.24536996839466],[-52.712099982297694,-33.19657805759118],[-53.373661668498244,-33.768377780900764],[-53.6505439927181,-33.20200408298183],[-53.209588995971544,-32.727666110974724],[-53.787951626182185,-32.047242526987624],[-54.57245154480512,-31.494511407193748],[-55.601510179249345,-30.853878676071393],[-55.97324459494093,-30.883075860316303],[-56.97602576356473,-30.109686374636127],[-57.62513342958296,-30.216294854454258]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Chile","sov_a3":"CHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Chile","adm0_a3":"CHL","geou_dif":0,"geounit":"Chile","gu_a3":"CHL","su_dif":0,"subunit":"Chile","su_a3":"CHL","brk_diff":0,"name":"Chile","name_long":"Chile","brk_a3":"CHL","brk_name":"Chile","brk_group":null,"abbrev":"Chile","postal":"CL","formal_en":"Republic of Chile","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Chile","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":5,"mapcolor13":9,"pop_est":16601707,"gdp_md_est":244500,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CL","iso_a3":"CHL","iso_n3":"152","un_a3":"152","wb_a2":"CL","wb_a3":"CHL","woe_id":-99,"adm0_a3_is":"CHL","adm0_a3_us":"CHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"CHL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.63401022758316,-52.63637045887437],[-68.6333499999999,-54.8695],[-67.56244,-54.87001],[-66.95992,-54.89681],[-67.29102999999989,-55.30124],[-68.14862999999986,-55.61183],[-68.63999081081181,-55.58001799908689],[-69.2321,-55.49906],[-69.95809,-55.19843],[-71.00568,-55.05383],[-72.2639,-54.49514],[-73.2852,-53.95751999999989],[-74.66253,-52.83749],[-73.8381,-53.04743],[-72.43418,-53.7154],[-71.10773,-54.07433],[-70.59177999999979,-53.61583],[-70.26748,-52.93123],[-69.34564999999989,-52.5183],[-68.63401022758316,-52.63637045887437]]],[[[-68.21991309271124,-21.494346612231837],[-67.82817989772266,-22.87291879648218],[-67.10667355006362,-22.7359245744764],[-66.98523393417764,-22.98634856536283],[-67.32844295924414,-24.02530323659091],[-68.41765296087613,-24.518554782816878],[-68.38600114609736,-26.185016371365233],[-68.59479977077268,-26.506908868111267],[-68.2955415513704,-26.89933969493579],[-69.00123491074828,-27.52121388113613],[-69.65613033718314,-28.459141127233693],[-70.01355038112987,-29.36792286551855],[-69.91900834825192,-30.336339206668313],[-70.53506893581945,-31.365010267870286],[-70.07439938015364,-33.09120981214803],[-69.81477698431921,-33.27388600029985],[-69.81730912950147,-34.193571465798286],[-70.38804948594908,-35.16968759535944],[-70.36476925320167,-36.005088799789945],[-71.1218806627098,-36.65812387466234],[-71.11862504747543,-37.5768274879472],[-70.81466427273472,-38.55299529394074],[-71.41351660834904,-38.916022230791114],[-71.68076127794646,-39.80816415787807],[-71.91573401557756,-40.83233936947073],[-71.74680375841547,-42.051386407235995],[-72.14889807807853,-42.25488819760139],[-71.91542395698391,-43.40856454851742],[-71.46405615913051,-43.78761117937833],[-71.79362260607195,-44.20717213315611],[-71.32980078803621,-44.40752166115169],[-71.22277889675973,-44.784242852559416],[-71.65931555854533,-44.97368865334144],[-71.55200944689125,-45.56073292417713],[-71.91725847033021,-46.8848381487918],[-72.44735531278027,-47.73853281025353],[-72.33116085477195,-48.244238376661826],[-72.64824744331494,-48.87861825947679],[-73.41543575712004,-49.31843637471296],[-73.32805091011448,-50.37878508890987],[-72.97574683296463,-50.74145029073431],[-72.30997351753237,-50.677009779666356],[-72.32940385607404,-51.42595631287241],[-71.91480383979635,-52.009022305865926],[-69.49836218939609,-52.14276091263725],[-68.57154537624135,-52.29944385534626],[-69.46128434922664,-52.29195077266393],[-69.94277950710614,-52.53793059037325],[-70.84510169135453,-52.899200528525725],[-71.00633216010525,-53.83325204220135],[-71.42979468452094,-53.85645476030039],[-72.55794287788486,-53.531410001184454],[-73.70275672066288,-52.83506926860725],[-73.70275672066288,-52.8350700760515],[-74.94676347522515,-52.26275358841903],[-75.2600260077785,-51.629354750373224],[-74.9766324530898,-51.04339568461569],[-75.4797541978835,-50.37837167745156],[-75.60801510283196,-48.6737728818718],[-75.18276974150213,-47.71191944762316],[-74.1265809801047,-46.9392534319951],[-75.64439531116545,-46.64764332457203],[-74.69215369332306,-45.76397633238098],[-74.35170935738427,-44.103044122087894],[-73.2403560045152,-44.454960625995625],[-72.71780392117978,-42.383355808278985],[-73.38889990913825,-42.11753224056957],[-73.70133561877486,-43.365776462579745],[-74.33194312203258,-43.22495818458441],[-74.01795711942717,-41.794812920906836],[-73.67709937202997,-39.942212823243125],[-73.21759253609068,-39.258688653318515],[-73.50555945503706,-38.28288258235107],[-73.58806087919109,-37.156284681956016],[-73.1667170884993,-37.12378020604435],[-72.55313696968173,-35.508840020491036],[-71.86173214383257,-33.90909270603153],[-71.43845048692992,-32.41889942803083],[-71.66872066922244,-30.92064462659252],[-71.37008256700773,-30.095682061485004],[-71.48989437527646,-28.861442152625912],[-70.90512386746158,-27.6403797340012],[-70.72495398627598,-25.70592416758721],[-70.40396582709505,-23.628996677344542],[-70.09124589708067,-21.393319187101223],[-70.16441972520599,-19.756468194256186],[-70.37257239447774,-18.347975355708883],[-69.85844356960581,-18.092693780187034],[-69.590423753524,-17.58001189541929],[-69.10024695501943,-18.260125420812656],[-68.96681840684184,-18.981683444904093],[-68.44222510443095,-19.405068454671422],[-68.75716712103372,-20.372657972904477],[-68.21991309271124,-21.494346612231837]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Colombia","sov_a3":"COL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Colombia","adm0_a3":"COL","geou_dif":0,"geounit":"Colombia","gu_a3":"COL","su_dif":0,"subunit":"Colombia","su_a3":"COL","brk_diff":0,"name":"Colombia","name_long":"Colombia","brk_a3":"COL","brk_name":"Colombia","brk_group":null,"abbrev":"Col.","postal":"CO","formal_en":"Republic of Colombia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Colombia","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":1,"pop_est":45644023,"gdp_md_est":395400,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CO","iso_a3":"COL","iso_n3":"170","un_a3":"170","wb_a2":"CO","wb_a3":"COL","woe_id":-99,"adm0_a3_is":"COL","adm0_a3_us":"COL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"COL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-75.37322323271385,-0.15203175212045],[-75.80146582711659,0.084801337073202],[-76.29231441924097,0.416047268064119],[-76.57637976754938,0.256935533037435],[-77.4249843004304,0.395686753741117],[-77.66861284047044,0.825893052570961],[-77.85506140817952,0.809925034992773],[-78.85525875518871,1.380923773601822],[-78.99093522817103,1.691369940595251],[-78.61783138702371,1.766404120283056],[-78.66211808949785,2.267355454920477],[-78.42761043975732,2.629555568854215],[-77.93154252797149,2.696605739752926],[-77.51043128122501,3.325016994638247],[-77.12768978545526,3.849636135265357],[-77.49627193877703,4.087606105969428],[-77.3076012844794,4.667984117039452],[-77.53322058786573,5.582811997902496],[-77.31881507028675,5.84535411216136],[-77.47666073272228,6.691116441266303],[-77.88157141794525,7.223771267114785],[-77.75341386586139,7.709839789252142],[-77.43110795765699,7.638061224798735],[-77.24256649444008,7.935278225125444],[-77.47472286651133,8.524286200388218],[-77.35336076527385,8.67050466555807],[-76.83667395700357,8.638749497914716],[-76.08638383655786,9.336820583529487],[-75.67460018584005,9.443248195834599],[-75.66470414905618,9.774003200718738],[-75.48042599150335,10.618990383339309],[-74.90689510771197,11.083044745320322],[-74.27675269234489,11.102035834187587],[-74.1972226630477,11.310472723836865],[-73.41476396350029,11.22701528568548],[-72.62783525255963,11.731971543825523],[-72.23819495307892,11.955549628136326],[-71.75409013536864,12.437303168177309],[-71.3998223537917,12.376040757695293],[-71.13746110704588,12.112981879113505],[-71.3315836249503,11.776284084515808],[-71.97392167833829,11.60867157637712],[-72.22757544624294,11.10870209395324],[-72.61465776232521,10.821975409381778],[-72.9052860175347,10.450344346554772],[-73.02760413276957,9.736770331252444],[-73.30495154488005,9.151999823437606],[-72.7887298245004,9.085027167187334],[-72.6604947577681,8.625287787302682],[-72.43986223009796,8.405275376820029],[-72.36090064155596,8.002638454617895],[-72.47967892117885,7.632506008327354],[-72.44448727078807,7.423784898300481],[-72.19835242378188,7.340430813013682],[-71.96017574734864,6.991614895043538],[-70.67423356798152,7.087784735538719],[-70.09331295437242,6.96037649172311],[-69.38947994655712,6.099860541198836],[-68.98531856960236,6.206804917826858],[-68.26505245631823,6.153268133972475],[-67.69508724635502,6.267318020040647],[-67.34143958196557,6.095468044454023],[-67.52153194850275,5.556870428891969],[-67.74469662135522,5.221128648291668],[-67.82301225449355,4.503937282728899],[-67.62183590358127,3.839481716319994],[-67.33756384954368,3.542342230641722],[-67.30317318385345,3.31845408773718],[-67.8099381171237,2.820655015469569],[-67.44709204778631,2.600280869960869],[-67.18129431829307,2.250638129074062],[-66.87632585312258,1.253360500489336],[-67.0650481838525,1.130112209473225],[-67.25999752467358,1.719998684084956],[-67.53781002467468,2.03716278727633],[-67.86856502955884,1.692455145673392],[-69.81697323269162,1.714805202639624],[-69.80459672715773,1.089081122233466],[-69.21863766140018,0.985676581217433],[-69.25243404811906,0.602650865070075],[-69.45239600287246,0.706158758950693],[-70.0155657619893,0.541414292804205],[-70.02065589057005,-0.185156345219539],[-69.5770653957766,-0.549991957200163],[-69.42048580593223,-1.122618503426409],[-69.44410193548961,-1.556287123219818],[-69.89363521999663,-4.298186944194327],[-70.39404395209499,-3.766591485207825],[-70.69268205430971,-3.742872002785859],[-70.04770850287485,-2.725156345229699],[-70.81347571479196,-2.256864515800743],[-71.41364579942979,-2.342802422702128],[-71.7747607082854,-2.169789727388938],[-72.32578650581365,-2.434218031426454],[-73.07039221870724,-2.308954359550953],[-73.6595035468346,-1.260491224781134],[-74.12239518908906,-1.002832533373848],[-74.44160051135597,-0.530820000819887],[-75.10662451852008,-0.05720549886486],[-75.37322323271385,-0.15203175212045]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ecuador","sov_a3":"ECU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ecuador","adm0_a3":"ECU","geou_dif":0,"geounit":"Ecuador","gu_a3":"ECU","su_dif":0,"subunit":"Ecuador","su_a3":"ECU","brk_diff":0,"name":"Ecuador","name_long":"Ecuador","brk_a3":"ECU","brk_name":"Ecuador","brk_group":null,"abbrev":"Ecu.","postal":"EC","formal_en":"Republic of Ecuador","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ecuador","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":12,"pop_est":14573101,"gdp_md_est":107700,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"EC","iso_a3":"ECU","iso_n3":"218","un_a3":"218","wb_a2":"EC","wb_a3":"ECU","woe_id":-99,"adm0_a3_is":"ECU","adm0_a3_us":"ECU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ECU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-80.30256059438722,-3.404856459164713],[-79.77029334178093,-2.65751189535964],[-79.98655921092241,-2.220794366061014],[-80.36878394236925,-2.685158786635788],[-80.96776546906436,-2.246942640800704],[-80.76480628123804,-1.965047702648533],[-80.9336590237517,-1.057454522306358],[-80.58337032746127,-0.906662692878683],[-80.39932471385376,-0.283703301600141],[-80.02089820018037,0.360340074053468],[-80.09060970734211,0.768428859862397],[-79.54276201039978,0.982937730305963],[-78.85525875518871,1.380923773601822],[-77.85506140817952,0.809925034992773],[-77.66861284047044,0.825893052570961],[-77.4249843004304,0.395686753741117],[-76.57637976754938,0.256935533037435],[-76.29231441924097,0.416047268064119],[-75.80146582711659,0.084801337073202],[-75.37322323271385,-0.15203175212045],[-75.23372270374193,-0.911416924649529],[-75.54499569365204,-1.56160979574588],[-76.63539425322672,-2.608677666843818],[-77.83790483265861,-3.003020521663103],[-78.45068396677564,-3.873096612161376],[-78.63989722361234,-4.547784112164074],[-79.20528906931771,-4.959128513207389],[-79.62497921417618,-4.454198093283494],[-80.02890804718561,-4.346090996928893],[-80.44224199087216,-4.425724379090674],[-80.46929460317695,-4.059286797708999],[-80.18401485870967,-3.821161797708044],[-80.30256059438722,-3.404856459164713]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Peru","sov_a3":"PER","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Peru","adm0_a3":"PER","geou_dif":0,"geounit":"Peru","gu_a3":"PER","su_dif":0,"subunit":"Peru","su_a3":"PER","brk_diff":0,"name":"Peru","name_long":"Peru","brk_a3":"PER","brk_name":"Peru","brk_group":null,"abbrev":"Peru","postal":"PE","formal_en":"Republic of Peru","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Peru","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":11,"pop_est":29546963,"gdp_md_est":247300,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PE","iso_a3":"PER","iso_n3":"604","un_a3":"604","wb_a2":"PE","wb_a3":"PER","woe_id":-99,"adm0_a3_is":"PER","adm0_a3_us":"PER","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PER.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-69.59042375352405,-17.580011895419332],[-69.85844356960587,-18.092693780187012],[-70.37257239447771,-18.34797535570887],[-71.37525021023691,-17.773798516513857],[-71.46204077827112,-17.363487644116383],[-73.44452958850042,-16.359362888252996],[-75.23788265654144,-15.265682875227782],[-76.00920508492995,-14.649286390850321],[-76.42346920439775,-13.82318694423243],[-76.25924150257416,-13.535039157772943],[-77.10619238962184,-12.22271615972082],[-78.09215287953464,-10.377712497604065],[-79.03695309112695,-8.386567884965892],[-79.44592037628485,-7.93083342858386],[-79.76057817251004,-7.194340915560083],[-80.53748165558608,-6.541667575713717],[-81.24999630402642,-6.136834405139183],[-80.92634680858244,-5.690556735866565],[-81.41094255239946,-4.736764825055459],[-81.09966956248937,-4.036394138203697],[-80.30256059438722,-3.404856459164713],[-80.18401485870967,-3.821161797708044],[-80.46929460317695,-4.059286797708999],[-80.44224199087216,-4.425724379090674],[-80.02890804718561,-4.346090996928893],[-79.62497921417618,-4.454198093283494],[-79.20528906931771,-4.959128513207389],[-78.63989722361234,-4.547784112164074],[-78.45068396677564,-3.873096612161376],[-77.83790483265861,-3.003020521663103],[-76.63539425322672,-2.608677666843818],[-75.54499569365204,-1.56160979574588],[-75.23372270374193,-0.911416924649529],[-75.37322323271385,-0.15203175212045],[-75.10662451852008,-0.05720549886486],[-74.44160051135597,-0.530820000819887],[-74.12239518908906,-1.002832533373848],[-73.6595035468346,-1.260491224781134],[-73.07039221870724,-2.308954359550953],[-72.32578650581365,-2.434218031426454],[-71.7747607082854,-2.169789727388938],[-71.41364579942979,-2.342802422702128],[-70.81347571479196,-2.256864515800743],[-70.04770850287485,-2.725156345229699],[-70.69268205430971,-3.742872002785859],[-70.39404395209499,-3.766591485207825],[-69.89363521999663,-4.298186944194327],[-70.7947688463023,-4.251264743673303],[-70.92884334988358,-4.401591485210368],[-71.74840572781655,-4.593982842633011],[-72.89192765978726,-5.274561455916981],[-72.96450720894119,-5.741251315944893],[-73.21971126981461,-6.089188734566078],[-73.1200274319236,-6.629930922068239],[-73.72448666044164,-6.91859547285064],[-73.7234014553635,-7.340998630404414],[-73.98723548042966,-7.523829847853064],[-73.57105933296707,-8.424446709835834],[-73.01538265653254,-9.03283334720806],[-73.22671342639016,-9.462212823121234],[-72.56303300646564,-9.520193780152717],[-72.18489071316984,-10.053597914269432],[-71.30241227892154,-10.079436130415374],[-70.48189388699117,-9.490118096558845],[-70.54868567572841,-11.009146823778465],[-70.0937522040469,-11.123971856331012],[-69.52967810736496,-10.951734307502194],[-68.66507971868961,-12.561300144097173],[-68.88007951523997,-12.899729099176653],[-68.92922380234954,-13.602683607643007],[-68.9488866848366,-14.453639418193283],[-69.33953467474701,-14.953195489158832],[-69.16034664577495,-15.323973890853019],[-69.38976416693471,-15.660129082911654],[-68.9596353827533,-16.50069793057127],[-69.59042375352405,-17.580011895419332]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Guyana","sov_a3":"GUY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guyana","adm0_a3":"GUY","geou_dif":0,"geounit":"Guyana","gu_a3":"GUY","su_dif":0,"subunit":"Guyana","su_a3":"GUY","brk_diff":0,"name":"Guyana","name_long":"Guyana","brk_a3":"GUY","brk_name":"Guyana","brk_group":null,"abbrev":"Guy.","postal":"GY","formal_en":"Co-operative Republic of Guyana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guyana","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":772298,"gdp_md_est":2966,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GY","iso_a3":"GUY","iso_n3":"328","un_a3":"328","wb_a2":"GY","wb_a3":"GUY","woe_id":-99,"adm0_a3_is":"GUY","adm0_a3_us":"GUY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GUY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-59.758284878159195,8.367034816924047],[-59.101684129458654,7.999201971870492],[-58.482962205628056,7.347691351750697],[-58.45487606467743,6.832787380394463],[-58.07810319683737,6.809093736188643],[-57.542218593970645,6.321268215353356],[-57.14743648947688,5.973149929219161],[-57.307245856339506,5.073566595882227],[-57.91428890647214,4.812626451024414],[-57.86020952007869,4.57680105226045],[-58.04469438336068,4.060863552258382],[-57.60156897645786,3.334654649260685],[-57.2814334784097,3.333491929534119],[-57.150097825739905,2.768926906745406],[-56.539385748914555,1.899522609866921],[-56.78270423036083,1.863710842288654],[-57.335822923396904,1.94853770589576],[-57.66097103537737,1.682584947105639],[-58.11344987652502,1.507195135907025],[-58.42947709820596,1.463941962078721],[-58.5400129868783,1.268088283692521],[-59.03086157900265,1.317697658692722],[-59.64604366722126,1.786893825686789],[-59.71854570172674,2.24963043864436],[-59.97452490908456,2.755232652188056],[-59.81541317405786,3.606498521332085],[-59.53803992373123,3.958802598481938],[-59.767405768458715,4.423502915866607],[-60.11100236676737,4.574966538914083],[-59.98095862490488,5.014061184098139],[-60.21368343773133,5.244486395687602],[-60.73357418480372,5.200277207861901],[-61.410302903881956,5.959068101419618],[-61.13941504580795,6.234296779806144],[-61.15933631045648,6.696077378766319],[-60.54399919294098,6.856584377464883],[-60.29566809756239,7.043911444522919],[-60.637972785063766,7.414999904810855],[-60.55058793805819,7.779602972846178],[-59.758284878159195,8.367034816924047]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Paraguay","sov_a3":"PRY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Paraguay","adm0_a3":"PRY","geou_dif":0,"geounit":"Paraguay","gu_a3":"PRY","su_dif":0,"subunit":"Paraguay","su_a3":"PRY","brk_diff":0,"name":"Paraguay","name_long":"Paraguay","brk_a3":"PRY","brk_name":"Paraguay","brk_group":null,"abbrev":"Para.","postal":"PY","formal_en":"Republic of Paraguay","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Paraguay","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":2,"pop_est":6995655,"gdp_md_est":28890,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PY","iso_a3":"PRY","iso_n3":"600","un_a3":"600","wb_a2":"PY","wb_a3":"PRY","woe_id":-99,"adm0_a3_is":"PRY","adm0_a3_us":"PRY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"PRY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-62.685057135657885,-22.249029229422387],[-62.29117936872922,-21.05163461678739],[-62.26596126977079,-20.513734633061276],[-61.786326463453776,-19.633736667562964],[-60.04356462262649,-19.342746677327426],[-59.115042487206104,-19.356906019775398],[-58.183471442280506,-19.868399346600363],[-58.166392381408045,-20.176700941653678],[-57.87067399761779,-20.73268767668195],[-57.937155727761294,-22.090175876557172],[-56.8815095689029,-22.28215382252148],[-56.47331743022939,-22.086300144135283],[-55.79795813660691,-22.356929620047822],[-55.610682745981144,-22.655619398694842],[-55.517639329639636,-23.571997572526634],[-55.40074723979542,-23.956935316668805],[-55.02790178080954,-24.001273695575225],[-54.652834235235126,-23.83957813893396],[-54.29295956075451,-24.02101409271073],[-54.29347632507745,-24.570799655863965],[-54.42894609233059,-25.162184747012166],[-54.625290696823576,-25.73925546641551],[-54.78879492859505,-26.621785577096134],[-55.69584550639816,-27.38783700939086],[-56.48670162619299,-27.548499037386293],[-57.60975969097615,-27.395898532828387],[-58.61817359071974,-27.123718763947096],[-57.633660040911124,-25.60365650808164],[-57.77721716981794,-25.16233977630904],[-58.80712846539498,-24.77145924245331],[-60.02896603050402,-24.032796319273274],[-60.84656470400991,-23.880712579038292],[-62.685057135657885,-22.249029229422387]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Uruguay","sov_a3":"URY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uruguay","adm0_a3":"URY","geou_dif":0,"geounit":"Uruguay","gu_a3":"URY","su_dif":0,"subunit":"Uruguay","su_a3":"URY","brk_diff":0,"name":"Uruguay","name_long":"Uruguay","brk_a3":"URY","brk_name":"Uruguay","brk_group":null,"abbrev":"Ury.","postal":"UY","formal_en":"Oriental Republic of Uruguay","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uruguay","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":10,"pop_est":3494382,"gdp_md_est":43160,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"UY","iso_a3":"URY","iso_n3":"858","un_a3":"858","wb_a2":"UY","wb_a3":"URY","woe_id":-99,"adm0_a3_is":"URY","adm0_a3_us":"URY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"URY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-57.62513342958296,-30.216294854454258],[-56.97602576356473,-30.109686374636127],[-55.97324459494093,-30.883075860316303],[-55.601510179249345,-30.853878676071393],[-54.57245154480512,-31.494511407193748],[-53.787951626182185,-32.047242526987624],[-53.209588995971544,-32.727666110974724],[-53.6505439927181,-33.20200408298183],[-53.373661668498244,-33.768377780900764],[-53.806425950726535,-34.396814874002224],[-54.93586605489773,-34.952646579733624],[-55.67408972840329,-34.75265878676407],[-56.21529700379607,-34.85983570733742],[-57.139685024633096,-34.430456231424245],[-57.8178606838155,-34.4625472958775],[-58.42707414410439,-33.90945444105757],[-58.34961117209887,-33.26318897881541],[-58.13264767112144,-33.040566908502015],[-58.14244035504076,-32.044503676076154],[-57.87493730328188,-31.016556084926208],[-57.62513342958296,-30.216294854454258]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Venezuela","sov_a3":"VEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Venezuela","adm0_a3":"VEN","geou_dif":0,"geounit":"Venezuela","gu_a3":"VEN","su_dif":0,"subunit":"Venezuela","su_a3":"VEN","brk_diff":0,"name":"Venezuela","name_long":"Venezuela","brk_a3":"VEN","brk_name":"Venezuela","brk_group":null,"abbrev":"Ven.","postal":"VE","formal_en":"Bolivarian Republic of Venezuela","formal_fr":"República Bolivariana de Venezuela","note_adm0":null,"note_brk":null,"name_sort":"Venezuela, RB","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":1,"mapcolor13":4,"pop_est":26814843,"gdp_md_est":357400,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VE","iso_a3":"VEN","iso_n3":"862","un_a3":"862","wb_a2":"VE","wb_a3":"VEN","woe_id":-99,"adm0_a3_is":"VEN","adm0_a3_us":"VEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"VEN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-71.3315836249503,11.776284084515808],[-71.36000566271082,11.53999359786121],[-71.94704993354651,11.423282375530022],[-71.62086829292019,10.969459947142795],[-71.63306393094108,10.446494452349027],[-72.07417395698451,9.865651353388373],[-71.69564409044654,9.072263088411248],[-71.26455929226773,9.137194525585983],[-71.03999935574339,9.859992784052407],[-71.35008378771079,10.211935126176215],[-71.40062333849224,10.968969021036015],[-70.1552988349065,11.37548167566004],[-70.29384334988103,11.846822414594214],[-69.94324459499683,12.162307033736099],[-69.58430009629747,11.459610907431212],[-68.88299923366445,11.443384507691563],[-68.23327145045873,10.885744126829946],[-68.19412655299763,10.554653225135922],[-67.29624854192633,10.54586823164631],[-66.227864142508,10.648626817258688],[-65.65523759628175,10.200798855017323],[-64.89045223657817,10.0772146671913],[-64.32947872583374,10.38959870039568],[-64.31800655786495,10.64141795495398],[-63.07932247582874,10.7017243514386],[-61.880946010980196,10.715625311725104],[-62.73011898461641,10.420268662960906],[-62.388511928950976,9.94820445397464],[-61.58876746280193,9.873066921422264],[-60.83059668643172,9.38133982994894],[-60.67125240745973,8.580174261911878],[-60.15009558779618,8.602756862823426],[-59.758284878159195,8.367034816924047],[-60.55058793805819,7.779602972846178],[-60.637972785063766,7.414999904810855],[-60.29566809756239,7.043911444522919],[-60.54399919294098,6.856584377464883],[-61.15933631045648,6.696077378766319],[-61.13941504580795,6.234296779806144],[-61.410302903881956,5.959068101419618],[-60.73357418480372,5.200277207861901],[-60.60117916527194,4.91809804933213],[-60.96689327660153,4.536467596856639],[-62.08542965355914,4.162123521334308],[-62.804533047116706,4.006965033377952],[-63.0931975978991,3.770571193858785],[-63.88834286157416,4.020530096854571],[-64.62865943058755,4.14848094320925],[-64.81606401229402,4.056445217297423],[-64.36849443221409,3.797210394705246],[-64.40882788761792,3.126786200366624],[-64.26999915226578,2.497005520025567],[-63.42286739770512,2.411067613124174],[-63.36878801131166,2.200899562993129],[-64.08308549666609,1.91636912679408],[-64.19930579289051,1.49285492594602],[-64.61101192895985,1.328730576987042],[-65.35471330428837,1.0952822941085],[-65.54826738143757,0.78925446207603],[-66.32576514348496,0.724452215982012],[-66.87632585312258,1.253360500489336],[-67.18129431829307,2.250638129074062],[-67.44709204778631,2.600280869960869],[-67.8099381171237,2.820655015469569],[-67.30317318385345,3.31845408773718],[-67.33756384954368,3.542342230641722],[-67.62183590358127,3.839481716319994],[-67.82301225449355,4.503937282728899],[-67.74469662135522,5.221128648291668],[-67.52153194850275,5.556870428891969],[-67.34143958196557,6.095468044454023],[-67.69508724635502,6.267318020040647],[-68.26505245631823,6.153268133972475],[-68.98531856960236,6.206804917826858],[-69.38947994655712,6.099860541198836],[-70.09331295437242,6.96037649172311],[-70.67423356798152,7.087784735538719],[-71.96017574734864,6.991614895043538],[-72.19835242378188,7.340430813013682],[-72.44448727078807,7.423784898300481],[-72.47967892117885,7.632506008327354],[-72.36090064155596,8.002638454617895],[-72.43986223009796,8.405275376820029],[-72.6604947577681,8.625287787302682],[-72.7887298245004,9.085027167187334],[-73.30495154488005,9.151999823437606],[-73.02760413276957,9.736770331252444],[-72.9052860175347,10.450344346554772],[-72.61465776232521,10.821975409381778],[-72.22757544624294,11.10870209395324],[-71.97392167833829,11.60867157637712],[-71.3315836249503,11.776284084515808]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Afghanistan","sov_a3":"AFG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Afghanistan","adm0_a3":"AFG","geou_dif":0,"geounit":"Afghanistan","gu_a3":"AFG","su_dif":0,"subunit":"Afghanistan","su_a3":"AFG","brk_diff":0,"name":"Afghanistan","name_long":"Afghanistan","brk_a3":"AFG","brk_name":"Afghanistan","brk_group":null,"abbrev":"Afg.","postal":"AF","formal_en":"Islamic State of Afghanistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Afghanistan","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":8,"mapcolor13":7,"pop_est":28400000,"gdp_md_est":22270,"pop_year":-99,"lastcensus":1979,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"AF","iso_a3":"AFG","iso_n3":"004","un_a3":"004","wb_a2":"AF","wb_a3":"AFG","woe_id":-99,"adm0_a3_is":"AFG","adm0_a3_us":"AFG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AFG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[61.21081709172574,35.650072333309225],[62.230651483005886,35.270663967422294],[62.9846623065766,35.40404083916762],[63.19353844590035,35.857165635718914],[63.9828959491587,36.0079574651466],[64.5464791197339,36.31207326918427],[64.7461051776774,37.111817735333304],[65.58894778835784,37.30521678318564],[65.74563073106681,37.66116404881207],[66.21738488145932,37.39379018813392],[66.51860680528867,37.36278432875879],[67.07578209825962,37.35614390720929],[67.82999962755952,37.14499400486468],[68.13556237170138,37.0231151393043],[68.85944583524594,37.344335842430596],[69.19627282092438,37.15114350030743],[69.51878543485796,37.60899669041341],[70.11657840361033,37.58822276463209],[70.27057417184014,37.735164699854025],[70.3763041523093,38.13839590102752],[70.80682050973289,38.486281643216415],[71.34813113799026,38.258905341132156],[71.23940392444817,37.95326508234188],[71.54191775908478,37.905774441065645],[71.44869347523024,37.06564484308051],[71.8446382994506,36.73817129164692],[72.1930408059624,36.948287665345674],[72.63688968291729,37.047558091778356],[73.26005577992501,37.495256862939],[73.9486959166465,37.4215662704908],[74.98000247589542,37.419990139305895],[75.15802778514092,37.13303091078912],[74.57589277537298,37.02084137628346],[74.06755171091783,36.83617564548845],[72.92002485544447,36.72000702569632],[71.84629194528392,36.50994232842986],[71.26234826038575,36.074387518857804],[71.49876793812109,35.650563259416],[71.6130762063507,35.153203436822864],[71.11501875192162,34.733125718722235],[71.15677330921346,34.34891144463215],[70.8818030129884,33.98885590263851],[69.9305432473596,34.02012014417511],[70.3235941913716,33.35853261975839],[69.68714725126485,33.105498969041236],[69.26252200712256,32.5019440780883],[69.31776411324255,31.90141225842444],[68.92667687365767,31.620189113892064],[68.55693200060932,31.713310044882018],[67.79268924344478,31.58293040620963],[67.68339358914747,31.30315420178142],[66.93889122911847,31.304911200479353],[66.38145755398602,30.73889923758645],[66.34647260932442,29.887943427036177],[65.0468620136161,29.472180691031905],[64.35041873561852,29.560030625928093],[64.14800215033125,29.340819200145972],[63.55026085801117,29.468330796826162],[62.54985680527278,29.31857249604431],[60.874248488208785,29.829238999952604],[61.781221551363444,30.735850328081234],[61.699314406180825,31.37950613049267],[60.94194461451113,31.548074652628753],[60.863654819588966,32.18291962333443],[60.536077915290775,32.98126882581157],[60.963700392506006,33.52883230237625],[60.52842980331158,33.676446031218006],[60.80319339380745,34.40410187431986],[61.21081709172574,35.650072333309225]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"United Arab Emirates","sov_a3":"ARE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"United Arab Emirates","adm0_a3":"ARE","geou_dif":0,"geounit":"United Arab Emirates","gu_a3":"ARE","su_dif":0,"subunit":"United Arab Emirates","su_a3":"ARE","brk_diff":0,"name":"United Arab Emirates","name_long":"United Arab Emirates","brk_a3":"ARE","brk_name":"United Arab Emirates","brk_group":null,"abbrev":"U.A.E.","postal":"AE","formal_en":"United Arab Emirates","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United Arab Emirates","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":3,"pop_est":4798491,"gdp_md_est":184300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"AE","iso_a3":"ARE","iso_n3":"784","un_a3":"784","wb_a2":"AE","wb_a3":"ARE","woe_id":-99,"adm0_a3_is":"ARE","adm0_a3_us":"ARE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":20,"long_len":20,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"ARE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[51.57951867046327,24.245497137951105],[51.757440626844186,24.29407298430547],[51.794389275932865,24.019826158132506],[52.57708051942561,24.177439276622707],[53.404006788960146,24.15131684009917],[54.00800092958758,24.121757920828212],[54.69302371604863,24.79789236093509],[55.43902469261414,25.43914520924494],[56.07082075381456,26.055464178973978],[56.261041701080956,25.71460643157677],[56.396847365144005,24.924732163995486],[55.88623253766801,24.920830593357444],[55.804118686756226,24.269604193615265],[55.981213820220454,24.130542914317825],[55.52863162620823,23.933604030853502],[55.525841098864475,23.524869289640932],[55.234489373602884,23.11099274341532],[55.20834109886319,22.708329982997046],[55.0068030129249,22.496947536707136],[52.000733270074335,23.00115448657894],[51.61770755392698,24.014219265228828],[51.57951867046327,24.245497137951105]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Armenia","sov_a3":"ARM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Armenia","adm0_a3":"ARM","geou_dif":0,"geounit":"Armenia","gu_a3":"ARM","su_dif":0,"subunit":"Armenia","su_a3":"ARM","brk_diff":0,"name":"Armenia","name_long":"Armenia","brk_a3":"ARM","brk_name":"Armenia","brk_group":null,"abbrev":"Arm.","postal":"ARM","formal_en":"Republic of Armenia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Armenia","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":2,"mapcolor13":10,"pop_est":2967004,"gdp_md_est":18770,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AM","iso_a3":"ARM","iso_n3":"051","un_a3":"051","wb_a2":"AM","wb_a3":"ARM","woe_id":-99,"adm0_a3_is":"ARM","adm0_a3_us":"ARM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ARM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[43.582745802592726,41.09214325618257],[44.97248009621808,41.248128567055595],[45.17949588397934,40.98535390885141],[45.56035118997045,40.812289537105926],[45.35917483905817,40.56150381119346],[45.89190717955509,40.21847565364],[45.61001224140293,39.89999380142518],[46.034534132680676,39.628020738273065],[46.48349897643246,39.464154771475535],[46.50571984231797,38.770605373686294],[46.14362308124881,38.74120148371222],[45.73537926614301,39.31971914321974],[45.73997846861698,39.47399913182713],[45.298144972521456,39.471751207022436],[45.00198733905674,39.740003567049555],[44.79398969908195,39.71300263117705],[44.4000085792887,40.00500031184228],[43.65643639504094,40.253563951166186],[43.75265791196841,40.74020091405876],[43.582745802592726,41.09214325618257]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Bangladesh","sov_a3":"BGD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bangladesh","adm0_a3":"BGD","geou_dif":0,"geounit":"Bangladesh","gu_a3":"BGD","su_dif":0,"subunit":"Bangladesh","su_a3":"BGD","brk_diff":0,"name":"Bangladesh","name_long":"Bangladesh","brk_a3":"BGD","brk_name":"Bangladesh","brk_group":null,"abbrev":"Bang.","postal":"BD","formal_en":"People's Republic of Bangladesh","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bangladesh","name_alt":null,"mapcolor7":3,"mapcolor8":4,"mapcolor9":7,"mapcolor13":7,"pop_est":156050883,"gdp_md_est":224000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BD","iso_a3":"BGD","iso_n3":"050","un_a3":"050","wb_a2":"BD","wb_a3":"BGD","woe_id":-99,"adm0_a3_is":"BGD","adm0_a3_us":"BGD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BGD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[92.67272098182556,22.041238918541254],[92.65225711463799,21.324047552978485],[92.30323449093868,21.47548533780982],[92.36855350135562,20.670883287025347],[92.08288618364612,21.19219513598577],[92.02521528520839,21.701569729086767],[91.83489098507744,22.18293569588556],[91.41708702999766,22.76501902922122],[90.49600630082728,22.80501658781513],[90.58695682166098,22.392793687422866],[90.27297081905554,21.83636770272011],[89.84746707556428,22.039146023033425],[89.70204959509493,21.857115790285306],[89.41886274613549,21.9661789006373],[89.03196129756623,22.055708319582976],[88.87631188350309,22.879146429937826],[88.52976972855377,23.631141872649163],[88.69994022009092,24.23371491138856],[88.08442223506242,24.501657212821925],[88.30637251175602,24.866079413344206],[88.93155398962308,25.238692328384776],[88.2097892598025,25.76806570078271],[88.56304935094977,26.44652558034272],[89.35509402868729,26.014407253518073],[89.83248091019962,25.96508209889548],[89.92069258012185,25.26974986419218],[90.8722107279121,25.132600612889547],[91.79959598182207,25.147431748957317],[92.37620161333481,24.976692816664965],[91.91509280799443,24.13041372323711],[91.46772993364367,24.072639471934792],[91.15896325069971,23.50352692310439],[91.70647505083211,22.985263983649183],[91.86992760617132,23.624346421802784],[92.14603478390681,23.627498684172593],[92.67272098182556,22.041238918541254]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Azerbaijan","sov_a3":"AZE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Azerbaijan","adm0_a3":"AZE","geou_dif":0,"geounit":"Azerbaijan","gu_a3":"AZE","su_dif":0,"subunit":"Azerbaijan","su_a3":"AZE","brk_diff":0,"name":"Azerbaijan","name_long":"Azerbaijan","brk_a3":"AZE","brk_name":"Azerbaijan","brk_group":null,"abbrev":"Aze.","postal":"AZ","formal_en":"Republic of Azerbaijan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Azerbaijan","name_alt":null,"mapcolor7":1,"mapcolor8":6,"mapcolor9":5,"mapcolor13":8,"pop_est":8238672,"gdp_md_est":77610,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AZ","iso_a3":"AZE","iso_n3":"031","un_a3":"031","wb_a2":"AZ","wb_a3":"AZE","woe_id":-99,"adm0_a3_is":"AZE","adm0_a3_us":"AZE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AZE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.0019873390568,39.7400035670496],[45.29814497252144,39.471751207022436],[45.739978468617004,39.473999131827156],[45.73537926614309,39.3197191432198],[46.14362308124881,38.74120148371222],[45.457721795438744,38.874139105783115],[44.95268802265028,39.33576467544643],[44.793989699082005,39.713002631177034],[45.0019873390568,39.7400035670496]]],[[[47.373315464066216,41.219732367511256],[47.81566572448472,41.151416124021345],[47.98728315612604,41.40581920019423],[48.58435265482629,41.808869533854676],[49.11026370626067,41.282286688800525],[49.6189148293096,40.57292430272997],[50.0848295428531,40.52615713150578],[50.39282107931271,40.256561184239104],[49.5692021014448,40.17610097916071],[49.39525923035043,39.39948171646225],[49.223228387250714,39.04921885838792],[48.85653242370759,38.81548635513178],[48.88324913920255,38.32024526626264],[48.634375441284845,38.27037750910094],[48.010744256386516,38.794014797514535],[48.355529412637935,39.28876496027689],[48.06009524922527,39.582235419262446],[47.685079380083124,39.50836395930119],[46.50571984231797,38.770605373686266],[46.48349897643246,39.464154771475535],[46.034534132680704,39.62802073827305],[45.61001224140293,39.89999380142518],[45.89190717955515,40.218475653639985],[45.35917483905817,40.56150381119349],[45.560351189970476,40.81228953710595],[45.1794958839794,40.98535390885143],[44.972480096218156,41.24812856705562],[45.21742638528164,41.41145193131405],[45.962600538930445,41.1238725856098],[46.501637404166985,41.06444468847411],[46.637908156120574,41.181672675128226],[46.14543175637899,41.72280243587264],[46.404950799348825,41.86067515722735],[46.68607059101666,41.827137152669906],[47.373315464066216,41.219732367511256]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Brunei","sov_a3":"BRN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Brunei","adm0_a3":"BRN","geou_dif":0,"geounit":"Brunei","gu_a3":"BRN","su_dif":0,"subunit":"Brunei","su_a3":"BRN","brk_diff":0,"name":"Brunei","name_long":"Brunei Darussalam","brk_a3":"BRN","brk_name":"Brunei","brk_group":null,"abbrev":"Brunei","postal":"BN","formal_en":"Negara Brunei Darussalam","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Brunei","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":6,"mapcolor13":12,"pop_est":388190,"gdp_md_est":20250,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"BN","iso_a3":"BRN","iso_n3":"096","un_a3":"096","wb_a2":"BN","wb_a3":"BRN","woe_id":-99,"adm0_a3_is":"BRN","adm0_a3_us":"BRN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":6,"long_len":17,"abbrev_len":6,"tiny":2,"homepart":1,"filename":"BRN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[114.20401655482837,4.525873928236805],[114.59996137904872,4.900011298029966],[115.45071048386981,5.447729803891534],[115.4057003113436,4.955227565933839],[115.34746097215067,4.316636053887009],[114.8695573263154,4.348313706881925],[114.65959598191353,4.007636826997754],[114.20401655482837,4.525873928236805]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Bhutan","sov_a3":"BTN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bhutan","adm0_a3":"BTN","geou_dif":0,"geounit":"Bhutan","gu_a3":"BTN","su_dif":0,"subunit":"Bhutan","su_a3":"BTN","brk_diff":0,"name":"Bhutan","name_long":"Bhutan","brk_a3":"BTN","brk_name":"Bhutan","brk_group":null,"abbrev":"Bhutan","postal":"BT","formal_en":"Kingdom of Bhutan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bhutan","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":1,"mapcolor13":8,"pop_est":691141,"gdp_md_est":3524,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BT","iso_a3":"BTN","iso_n3":"064","un_a3":"064","wb_a2":"BT","wb_a3":"BTN","woe_id":-99,"adm0_a3_is":"BTN","adm0_a3_us":"BTN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"BTN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[91.69665652869668,27.77174184825166],[92.10371178585973,27.452614040633208],[92.03348351437509,26.83831045176356],[91.21751264848643,26.808648179628022],[90.37327477413407,26.87572418874288],[89.74452762243884,26.719402981059957],[88.83564253128938,27.098966376243762],[88.81424848832054,27.29931590423936],[89.47581017452111,28.042758897406397],[90.01582889197118,28.296438503527217],[90.7305139505678,28.064953925075756],[91.25885379431992,28.040614325466294],[91.69665652869668,27.77174184825166]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"China","sov_a3":"CH1","adm0_dif":1,"level":2,"type":"Country","admin":"China","adm0_a3":"CHN","geou_dif":0,"geounit":"China","gu_a3":"CHN","su_dif":0,"subunit":"China","su_a3":"CHN","brk_diff":0,"name":"China","name_long":"China","brk_a3":"CHN","brk_name":"China","brk_group":null,"abbrev":"China","postal":"CN","formal_en":"People's Republic of China","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"China","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":3,"pop_est":1338612970,"gdp_md_est":7973000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CN","iso_a3":"CHN","iso_n3":"156","un_a3":"156","wb_a2":"CN","wb_a3":"CHN","woe_id":-99,"adm0_a3_is":"CHN","adm0_a3_us":"CHN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"CHN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.33918786015154,18.678395087147607],[109.4752095886637,18.197700913968614],[108.65520796105616,18.5076819930714],[108.62621748254045,19.367887885001977],[109.11905561730802,19.821038519769385],[110.21159874882285,20.101253973872076],[110.78655073450223,20.07753449145008],[111.01005130416465,19.695929877190736],[110.57064660038682,19.255879218009312],[110.33918786015154,18.678395087147607]]],[[[127.6574072612624,49.76027049417294],[129.39781782442046,49.44060008401544],[130.5822933289824,48.72968740497612],[130.98728152885386,47.790132351261406],[132.50667199109952,47.78896963153488],[133.37359581922803,48.18344167743493],[135.02631147678673,48.47822988544391],[134.50081383681064,47.57843984637785],[134.11236209527263,47.21246735288673],[133.7696439963129,46.11692698829907],[133.09712690646646,45.14406647397217],[131.8834542176596,45.32116160743644],[131.0252120301561,44.96795319272157],[131.28855512911557,44.111519680348266],[131.14468794161488,42.92998973242695],[130.6338664084098,42.90301463477056],[130.64001590385246,42.39500946712528],[129.99426720593326,42.98538686784379],[129.5966687358795,42.42498179785459],[128.05221520397234,41.99428457291799],[128.20843305879075,41.46677155208254],[127.34378299368305,41.50315176041596],[126.86908328664988,41.81656932226616],[126.18204511932946,41.10733612727637],[125.07994184784062,40.569823716792456],[124.26562462778534,39.92849335383414],[122.86757042856104,39.63778758397626],[122.13138797413094,39.17045176854464],[121.05455447803288,38.89747101496291],[121.5859949077225,39.36085358332414],[121.37675703337267,39.750261338859524],[122.16859500538104,40.422442531896046],[121.64035851449356,40.94638987890332],[120.76862877816197,40.5933881699176],[119.63960208544907,39.89805593521421],[119.02346398323304,39.2523330755111],[118.04274865119793,39.20427399347969],[117.53270226447708,38.7376358098841],[118.0596985209897,38.06147553156105],[118.87814985562838,37.8973253443859],[118.91163618375353,37.44846385349874],[119.70280236214207,37.15638865818508],[120.82345747282366,37.87042776137798],[121.71125857959797,37.48112335870718],[122.35793745329848,37.45448415786069],[122.51999474496584,36.930614325501836],[121.10416385303303,36.65132904718044],[120.6370089051146,36.111439520811125],[119.6645618022461,35.609790554337735],[119.1512081238586,34.909859117160465],[120.22752485563375,34.36033193616862],[120.6203690939166,33.37672272392513],[121.22901411345023,32.46031871187719],[121.90814578663006,31.69217438407469],[121.89191938689035,30.949351508095102],[121.26425744027331,30.67626740164872],[121.50351932178475,30.142914943964257],[122.09211388558911,29.832520453403163],[121.93842817595308,29.018022365834806],[121.68443851123847,28.225512600206685],[121.12566124886645,28.135673122667185],[120.39547326058234,27.053206895449392],[119.58549686083958,25.740780544532612],[118.65687137255453,24.547390855400238],[117.28160647997086,23.624501451099718],[115.89073530483515,22.782873236578098],[114.76382734584624,22.66807404224167],[114.15254682826568,22.223760077396207],[113.80677981980075,22.54833974862143],[113.24107791550162,22.05136749927047],[111.84359215703248,21.550493679281512],[110.78546552942414,21.397143866455334],[110.44403934127169,20.341032619706397],[109.88986128137357,20.282457383703445],[109.62765506392466,21.008227037026728],[109.86448815311834,21.395050970947523],[108.52281294152444,21.71521230721183],[108.050180291783,21.552379869060104],[107.04342003787266,21.811898912029903],[106.56727339073537,22.218204860924743],[106.7254032735485,22.79426788989838],[105.81124718630521,22.976892401617903],[105.32920942588666,23.352063300056983],[104.4768583516645,22.81915009204692],[103.50451460166053,22.70375661873922],[102.70699222210018,22.708795070887703],[102.17043582561355,22.464753119389343],[101.65201785686158,22.31819875740956],[101.80311974488292,21.174366766845054],[101.27002566936002,21.20165192309517],[101.18000532430759,21.43657298429406],[101.15003299357826,21.84998444262902],[100.41653771362738,21.558839423096657],[99.98348921102158,21.74293671313646],[99.24089887898722,22.118314317304566],[99.53199222208744,22.949038804612595],[98.89874922078283,23.142722072842588],[98.6602624857558,24.063286037690006],[97.60471967976203,23.897404690033056],[97.72460900267916,25.083637193293043],[98.67183800658924,25.918702500913497],[98.71209394734458,26.74353587494025],[98.68269005737054,27.50881216075066],[98.24623091023338,27.74722138112918],[97.91198774616944,28.335945136014374],[97.32711388549004,28.26158274994634],[96.24883344928784,28.411030992134467],[96.58659061074755,28.83097951915437],[96.11767866413103,29.452802028922516],[95.40480228066465,29.031716620392164],[94.56599043170294,29.277438055939964],[93.41334760943268,28.640629380807237],[92.50311893104364,27.89687632904645],[91.6966565286967,27.771741848251622],[91.25885379431989,28.04061432546635],[90.73051395056783,28.064953925075738],[90.01582889197121,28.296438503527185],[89.47581017452116,28.042758897406372],[88.8142484883206,27.299315904239393],[88.73032596227856,28.08686473236756],[88.12044070836994,27.876541652939576],[86.95451704300065,27.97426178640353],[85.82331994013154,28.20357595469875],[85.01163821812307,28.642773952747376],[84.23457970575018,28.839893703724698],[83.89899295444675,29.32022614187764],[83.33711510613719,29.463731594352193],[82.32751264845089,30.115268052688208],[81.5258044778748,30.422716986608663],[81.11125613802928,30.18348094331341],[79.72136681510712,30.882714748654735],[78.73889448437401,31.51590607352705],[78.45844648632604,32.61816437431273],[79.17612877799556,32.483779812137755],[79.20889163606856,32.99439463961374],[78.81108646028574,33.506198025032404],[78.91226891471322,34.32193634697577],[77.83745079947462,35.49400950778781],[76.19284834178572,35.89840342868786],[75.89689741405019,36.66680613865188],[75.158027785141,37.13303091078916],[74.98000247589542,37.419990139305895],[74.82998579295216,37.99000702570146],[74.8648157083168,38.3788463404816],[74.2575142760227,38.60650686294349],[73.9288521666464,38.50581533462272],[73.67537926625485,39.43123688410557],[73.96001305531846,39.660008449861714],[73.82224368682833,39.89397349706314],[74.77686242055606,40.36642527929163],[75.46782799673073,40.56207225194868],[76.52636803579745,40.42794607193513],[76.90448449087712,41.06648590754966],[78.18719689322606,41.185315863604814],[78.54366092317528,41.58224254003871],[80.11943037305142,42.123940741538235],[80.25999026888533,42.34999929459909],[80.18015018099439,42.92006785742686],[80.86620649610123,43.180362046881015],[79.96610639844144,44.91751699480462],[81.9470707539181,45.31702749285316],[82.45892581576905,45.539649563166506],[83.18048383986054,47.33003123635075],[85.16429039911324,47.00095571551611],[85.7204838398707,47.45296946877309],[85.76823286330838,48.4557506373969],[86.59877648310336,48.54918162698061],[87.35997033076269,49.21498078062916],[87.75126427607668,49.29719798440547],[88.0138322285517,48.5994627956006],[88.85429772334678,48.069081732773014],[90.28082563676392,47.693549099307916],[90.97080936072499,46.888146063822944],[90.58576826371834,45.7197160914875],[90.94553958533433,45.28607330991025],[92.13389082231825,45.115075995456436],[93.48073367714133,44.975472113620015],[94.68892866412537,44.35233185482846],[95.30687544147153,44.24133087826547],[95.7624548685567,43.31944916439462],[96.34939578652782,42.72563528092866],[97.451757440178,42.74888967546008],[99.51581749878002,42.524691473961695],[100.8458655131083,42.663804429691425],[101.83304039917995,42.51487295182628],[103.31227827353482,41.90746816666763],[104.52228193564903,41.90834666601663],[104.96499393109346,41.59740957291635],[106.12931562706169,42.1343277044289],[107.744772576938,42.481515814781915],[109.24359581913146,42.51944631608416],[110.4121033061153,42.87123362891103],[111.12968224492023,43.40683401140018],[111.8295878438814,43.74311839453949],[111.66773725794323,44.07317576758771],[111.34837690637946,44.45744171811006],[111.87330610560028,45.10207937273512],[112.43606245325887,45.01164561622426],[113.46390669154422,44.80889313412711],[114.46033165899607,45.33981679949389],[115.98509647020013,45.72723501238602],[116.71786828009888,46.388202419615254],[117.42170128791425,46.67273285581421],[118.87432579963873,46.80541209572365],[119.66326989143877,46.69267995867895],[119.77282392789756,47.04805878355015],[118.86657433479498,47.74706004494621],[118.06414269416675,48.06673045510374],[117.29550744025747,47.6977090521074],[116.30895267137325,47.853410142602826],[115.74283735561575,47.72654450132629],[115.48528201707305,48.135382595403456],[116.19180219936761,49.13459809019906],[116.67880089728621,49.888531399121405],[117.87924441942639,49.51098338479696],[119.28846072802585,50.14288279886205],[119.27936567594239,50.582907619827296],[120.18204959521695,51.64356639261803],[120.738191359542,51.964115302124554],[120.725789015792,52.516226304730814],[120.1770886577169,52.75388621684121],[121.00308475147024,53.25140106873124],[122.24574791879289,53.43172597921369],[123.57150678924087,53.45880442973464],[125.06821129771045,53.161044826868846],[125.94634891164618,52.79279857035695],[126.56439904185699,51.7842554795327],[126.93915652883769,51.3538941514059],[127.28745568248493,50.73979726826545],[127.6574072612624,49.76027049417294]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Northern Cyprus","sov_a3":"CYN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Northern Cyprus","adm0_a3":"CYN","geou_dif":0,"geounit":"Northern Cyprus","gu_a3":"CYN","su_dif":0,"subunit":"Northern Cyprus","su_a3":"CYN","brk_diff":1,"name":"N. Cyprus","name_long":"Northern Cyprus","brk_a3":"B20","brk_name":"N. Cyprus","brk_group":null,"abbrev":"N. Cy.","postal":"CN","formal_en":"Turkish Republic of Northern Cyprus","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Cyprus","name_sort":"Cyprus, Northern","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":265100,"gdp_md_est":3600,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"CYP","adm0_a3_us":"CYP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":9,"long_len":15,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"CYN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[32.73178022637745,35.14002594658844],[32.80247358575275,35.14550364841138],[32.946960890440806,35.3867033961337],[33.667227003724946,35.37321584730551],[34.57647382990046,35.67159556735879],[33.900804477684204,35.245755927057616],[33.97361657078346,35.058506374648],[33.86643965021011,35.09359467217419],[33.675391880027064,35.01786286065045],[33.5256852556775,35.03868846286407],[33.475817498515845,35.000344550103506],[33.45592207208347,35.10142365166641],[33.3838334490363,35.16271190036457],[33.19097700372305,35.17312470147138],[32.919572381326134,35.08783274997364],[32.73178022637745,35.14002594658844]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Cyprus","sov_a3":"CYP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cyprus","adm0_a3":"CYP","geou_dif":0,"geounit":"Cyprus","gu_a3":"CYP","su_dif":0,"subunit":"Cyprus","su_a3":"CYP","brk_diff":0,"name":"Cyprus","name_long":"Cyprus","brk_a3":"CYP","brk_name":"Cyprus","brk_group":null,"abbrev":"Cyp.","postal":"CY","formal_en":"Republic of Cyprus","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cyprus","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":3,"mapcolor13":7,"pop_est":531640,"gdp_md_est":22700,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"CY","iso_a3":"CYP","iso_n3":"196","un_a3":"196","wb_a2":"CY","wb_a3":"CYP","woe_id":-99,"adm0_a3_is":"CYP","adm0_a3_us":"CYP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CYP.geojson"},"geometry":{"type":"Polygon","coordinates":[[[33.97361657078346,35.058506374648],[34.00488081232004,34.97809784600186],[32.97982710137845,34.57186941175544],[32.49029625827753,34.701654771456475],[32.25666710788596,35.10323232679663],[32.73178022637745,35.14002594658844],[32.919572381326134,35.08783274997364],[33.19097700372305,35.17312470147138],[33.3838334490363,35.16271190036457],[33.45592207208347,35.10142365166641],[33.475817498515845,35.000344550103506],[33.5256852556775,35.03868846286407],[33.675391880027064,35.01786286065045],[33.86643965021011,35.09359467217419],[33.97361657078346,35.058506374648]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Georgia","sov_a3":"GEO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Georgia","adm0_a3":"GEO","geou_dif":0,"geounit":"Georgia","gu_a3":"GEO","su_dif":0,"subunit":"Georgia","su_a3":"GEO","brk_diff":0,"name":"Georgia","name_long":"Georgia","brk_a3":"GEO","brk_name":"Georgia","brk_group":null,"abbrev":"Geo.","postal":"GE","formal_en":"Georgia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Georgia","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":3,"mapcolor13":2,"pop_est":4615807,"gdp_md_est":21510,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GE","iso_a3":"GEO","iso_n3":"268","un_a3":"268","wb_a2":"GE","wb_a3":"GEO","woe_id":-99,"adm0_a3_is":"GEO","adm0_a3_us":"GEO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GEO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[41.55408410011065,41.53565623632757],[41.70317060727271,41.96294281673292],[41.45347008643839,42.64512339941794],[40.87546919125379,43.013628038091284],[40.32139448422032,43.128633938156845],[39.955008579270924,43.43499766699922],[40.07696495947977,43.55310415300231],[40.922184686045625,43.38215851498079],[42.39439456560882,43.22030792904263],[43.75601688006739,42.74082815202249],[43.931199985536836,42.55497386328477],[44.537622918481986,42.71199270280363],[45.47027916848572,42.50278066666998],[45.77641035338277,42.09244395605636],[46.404950799348825,41.860675157227305],[46.14543175637902,41.72280243587258],[46.63790815612058,41.181672675128226],[46.50163740416693,41.06444468847411],[45.96260053893039,41.123872585609774],[45.217426385281584,41.41145193131405],[44.97248009621808,41.248128567055595],[43.582745802592726,41.09214325618257],[42.61954878110449,41.58317271581994],[41.55408410011065,41.53565623632757]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Indonesia","sov_a3":"IDN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Indonesia","adm0_a3":"IDN","geou_dif":0,"geounit":"Indonesia","gu_a3":"IDN","su_dif":0,"subunit":"Indonesia","su_a3":"IDN","brk_diff":0,"name":"Indonesia","name_long":"Indonesia","brk_a3":"IDN","brk_name":"Indonesia","brk_group":null,"abbrev":"Indo.","postal":"INDO","formal_en":"Republic of Indonesia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Indonesia","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":11,"pop_est":240271522,"gdp_md_est":914600,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ID","iso_a3":"IDN","iso_n3":"360","un_a3":"360","wb_a2":"ID","wb_a3":"IDN","woe_id":-99,"adm0_a3_is":"IDN","adm0_a3_us":"IDN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"IDN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.71560875863044,-10.239581394087864],[120.2950142762069,-10.258649997603525],[118.96780846565471,-9.557969252158031],[119.90030968636161,-9.361340427287516],[120.42575564990543,-9.665921319215798],[120.77550174365675,-9.969675388227456],[120.71560875863044,-10.239581394087864]]],[[[124.43595014861941,-10.140000909061442],[123.57998172413673,-10.359987481327963],[123.45998904835503,-10.239994805546175],[123.55000939340746,-9.90001555749798],[123.98000898650811,-9.290026950724695],[124.96868248911622,-8.892790215697048],[125.07001997284064,-9.089987481322837],[125.08852013560109,-9.393173109579322],[124.43595014861941,-10.140000909061442]]],[[[117.90001834520777,-8.095681247594925],[118.2606164897405,-8.362383314653329],[118.87845991422215,-8.28068287519983],[119.12650678922309,-8.705824883665073],[117.9704016459893,-8.906639499551261],[117.27773074754903,-9.040894870645559],[116.74014082241663,-9.03293670007264],[117.08373742072533,-8.457157891476541],[117.63202436734215,-8.449303073768192],[117.90001834520777,-8.095681247594925]]],[[[122.90353722543611,-8.094234307490737],[122.75698286345632,-8.64980763106064],[121.25449059457013,-8.933666273639943],[119.9243909038096,-8.810417982623875],[119.92092858284613,-8.444858900591072],[120.71509199430757,-8.236964613480865],[121.34166873584658,-8.536739597206022],[122.00736453663043,-8.460620212440162],[122.90353722543611,-8.094234307490737]]],[[[108.62347863162894,-6.777673841990676],[110.53922732955331,-6.877357679881683],[110.75957563684594,-6.465186455921752],[112.61481123255638,-6.946035658397591],[112.97876834518812,-7.59421314863458],[114.47893517462117,-7.776527601760279],[115.70552697150109,-8.370806573116866],[114.56451134649652,-8.751816908404834],[113.4647335144609,-8.348947442257426],[112.55967247930103,-8.376180922075164],[111.52206139531248,-8.302128594600957],[110.58614953007432,-8.122604668819022],[109.4276672709552,-7.740664157749761],[108.69365522668133,-7.641600437046221],[108.27776329959632,-7.766657403192581],[106.45410200401615,-7.354899590690947],[106.28062422081231,-6.924899997590202],[105.36548628135554,-6.85141611087117],[106.05164594932707,-5.8959188777945],[107.2650085795402,-5.954985039904059],[108.0720910990747,-6.345762220895239],[108.48684614464926,-6.421984958525768],[108.62347863162894,-6.777673841990676]]],[[[134.72462446506668,-6.214400730009287],[134.21013390516893,-6.895237725454706],[134.112775506731,-6.142467136259014],[134.2903357280858,-5.783057549669039],[134.49962527886788,-5.445042006047899],[134.72700158095213,-5.73758228925216],[134.72462446506668,-6.214400730009287]]],[[[127.24921512258892,-3.45906503663889],[126.87492272349888,-3.79098276124958],[126.18380211802733,-3.607376397316556],[125.98903364471929,-3.177273451351325],[127.00065148326499,-3.12931772218441],[127.24921512258892,-3.45906503663889]]],[[[130.4713440288518,-3.09376433676762],[130.8348360535928,-3.858472181822762],[129.99054650280814,-3.446300957862817],[129.15524865124243,-3.362636813982249],[128.59068362845366,-3.428679294451257],[127.89889122936236,-3.393435967628193],[128.1358793478528,-2.843650404474914],[129.37099775606092,-2.802154229344552],[130.4713440288518,-3.09376433676762]]],[[[134.1433679546478,-1.151867364103595],[134.42262739475305,-2.769184665542383],[135.4576029806947,-3.367752780779114],[136.2933142437188,-2.30704233155609],[137.44073774632753,-1.703513278819372],[138.3297274110448,-1.70268645590265],[139.18492068904297,-2.051295668143638],[139.92668419816042,-2.409051608900284],[141.00021040259188,-2.600151055515624],[141.01705691951904,-5.859021905138022],[141.0338517600139,-9.117892754760419],[140.14341515519257,-8.297167657100957],[139.12776655492812,-8.096042982620942],[138.88147667862498,-8.380935153846096],[137.61447391169284,-8.411682631059762],[138.0390991558352,-7.597882175327356],[138.6686214540148,-7.320224704623072],[138.40791385310237,-6.232849216337484],[137.92783979711086,-5.393365573756],[135.98925011611348,-4.546543877789048],[135.16459760959972,-4.462931410340772],[133.6628804871979,-3.538853448097527],[133.3677047059468,-4.024818617370315],[132.98395551974735,-4.112978610860281],[132.756940952689,-3.74628264731713],[132.75378869031923,-3.311787204607072],[131.9898043153162,-2.820551039240456],[133.0668445171435,-2.460417982598443],[133.78003095920351,-2.47984832114021],[133.69621178602614,-2.214541517753688],[132.23237348849423,-2.212526136894326],[131.8362219585447,-1.617161960459597],[130.94283979708283,-1.432522067880797],[130.51955814018007,-0.937720228686075],[131.86753787651364,-0.695461114101818],[132.3801164084168,-0.369537855636977],[133.98554813042844,-0.780210463060442],[134.1433679546478,-1.151867364103595]]],[[[125.24050052297159,1.419836127117605],[124.43703535369737,0.427881171058971],[123.68550499887672,0.235593166500877],[122.72308312387288,0.431136786293337],[121.0567248881891,0.381217352699451],[120.18308312386276,0.23724681233422],[120.04086958219548,-0.519657891444851],[120.93590538949073,-1.408905938323372],[121.4758207540762,-0.955962009285116],[123.34056481332848,-0.615672702643081],[123.2583992859845,-1.076213067228338],[122.82271528533161,-0.930950616055881],[122.38852990121539,-1.516858005381124],[121.50827355355548,-1.904482924002423],[122.4545723816843,-3.186058444840882],[122.27189619353257,-3.529500013852697],[123.17096276254657,-4.683693129091708],[123.16233279835379,-5.340603936385961],[122.62851525277871,-5.634591159694494],[122.23639448454806,-5.282933037948283],[122.71956912647707,-4.46417164471579],[121.73823367725439,-4.8513314754465],[121.48946333220127,-4.574552504091216],[121.61917117725388,-4.188477878438674],[120.89818159391771,-3.602105401222829],[120.97238895068877,-2.62764291749491],[120.30545291552991,-2.931603692235726],[120.39004723519176,-4.097579034037224],[120.43071658740539,-5.528241062037779],[119.79654341031952,-5.673400160345651],[119.36690555224496,-5.379878024927805],[119.65360639860013,-4.459417412944958],[119.49883548388597,-3.49441171632651],[119.078344354327,-3.487021986508765],[118.7677689962529,-2.801999200047689],[119.18097374885869,-2.147103773612798],[119.32339399625508,-1.353147067880471],[119.82599897672586,0.154254462073496],[120.03570193896637,0.566477362465804],[120.8857792501677,1.309222723796836],[121.666816847827,1.013943589681077],[122.92756676645185,0.875192368977466],[124.07752241424285,0.917101955566139],[125.06598921112183,1.643259182131558],[125.24050052297159,1.419836127117605]]],[[[128.68824873262074,1.132385972494106],[128.63595218314137,0.258485826006179],[128.12016971243617,0.356412665199286],[127.96803429576887,-0.252077325037533],[128.37999881399972,-0.780003757331286],[128.10001590384232,-0.899996433112975],[127.69647464407504,-0.266598402511505],[127.39949018769377,1.011721503092573],[127.60051150930907,1.810690822757181],[127.93237755748751,2.174596258956555],[128.00415612194084,1.628531398928331],[128.59455936087548,1.540810655112864],[128.68824873262074,1.132385972494106]]],[[[117.87562706916603,1.827640692548911],[118.99674726773819,0.902219143066048],[117.81185835171779,0.784241848143722],[117.47833865770608,0.102474676917026],[117.52164350796662,-0.803723239753211],[116.56004845587952,-1.487660821136231],[116.53379682827519,-2.483517347832901],[116.14808393764864,-4.012726332214015],[116.0008577820491,-3.657037448749008],[114.86480309454454,-4.106984144714417],[114.46865156459509,-3.495703627133821],[113.75567182826413,-3.43916961020652],[113.25699425664757,-3.118775729996855],[112.06812625534067,-3.478392022316072],[111.70329064336002,-2.994442233902632],[111.04824018762824,-3.049425957861189],[110.223846063276,-2.934032484553484],[110.07093550012436,-1.592874037282414],[109.57194786991406,-1.314906507984489],[109.09187381392253,-0.459506524257051],[108.95265750532816,0.415375474444346],[109.06913618371404,1.341933905437642],[109.66326012577375,2.006466986494985],[109.83022667850886,1.338135687664192],[110.51406090702713,0.773131415200993],[111.15913781132659,0.976478176269509],[111.79754845586044,0.904441229654651],[112.38025190638368,1.410120957846758],[112.8598091980522,1.497790025229946],[113.80584964401956,1.217548732911041],[114.6213554220175,1.430688177898887],[115.13403730678523,2.821481838386219],[115.51907840379201,3.169238389494396],[115.86551720587677,4.306559149590157],[117.01521447150637,4.306094061699469],[117.88203494677019,4.137551377779488],[117.31323245653354,3.234428208830579],[118.04832970588538,2.287690131027361],[117.87562706916603,1.827640692548911]]],[[[105.81765506390936,-5.852355645372413],[104.71038414919151,-5.873284600450646],[103.86821333213074,-5.037314955264975],[102.58426069540693,-4.220258884298204],[102.15617313030103,-3.614146009946765],[101.39911339722508,-2.799777113459172],[100.90250288290017,-2.05026213949786],[100.14198082886062,-0.650347588710957],[99.26373986206025,0.183141587724663],[98.97001102091333,1.042882391764536],[98.60135135294311,1.823506577965617],[97.6995976094499,2.453183905442117],[97.1769421732499,3.30879059489861],[96.42401655475734,3.868859768077911],[95.38087609251347,4.970782172053673],[95.29302615761733,5.479820868344817],[95.93686282754176,5.439513251157109],[97.4848820332771,5.246320909034011],[98.36916914265569,4.268370266126368],[99.14255862833582,3.590349636240916],[99.69399783732243,3.174328518075157],[100.64143354696168,2.099381211755798],[101.65801232300734,2.083697414555189],[102.49827111207324,1.398700466310217],[103.07684044801303,0.561361395668854],[103.83839603069835,0.104541734208667],[103.43764529827497,-0.711945896002845],[104.01078860882402,-1.059211521004229],[104.3699914896849,-1.084843031421016],[104.53949018760218,-1.782371514496716],[104.88789269411402,-2.340425306816655],[105.622111444117,-2.42884368246807],[106.10859337771271,-3.06177662517895],[105.85744591677414,-4.305524997579724],[105.81765506390936,-5.852355645372413]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"India","sov_a3":"IND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"India","adm0_a3":"IND","geou_dif":0,"geounit":"India","gu_a3":"IND","su_dif":0,"subunit":"India","su_a3":"IND","brk_diff":0,"name":"India","name_long":"India","brk_a3":"IND","brk_name":"India","brk_group":null,"abbrev":"India","postal":"IND","formal_en":"Republic of India","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"India","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":2,"mapcolor13":2,"pop_est":1166079220,"gdp_md_est":3297000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"IN","iso_a3":"IND","iso_n3":"356","un_a3":"356","wb_a2":"IN","wb_a3":"IND","woe_id":-99,"adm0_a3_is":"IND","adm0_a3_us":"IND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"IND.geojson"},"geometry":{"type":"Polygon","coordinates":[[[77.83745079947457,35.494009507787766],[78.91226891471322,34.32193634697579],[78.81108646028574,33.50619802503242],[79.20889163606857,32.994394639613716],[79.17612877799553,32.48377981213771],[78.45844648632601,32.61816437431273],[78.73889448437401,31.515906073527063],[79.7213668151071,30.882714748654728],[81.11125613802932,30.183480943313402],[80.4767212259174,29.72986522065534],[80.08842451367627,28.79447011974014],[81.05720258985203,28.416095282499043],[81.99998742058497,27.925479234319994],[83.30424889519955,27.36450572357556],[84.6750179381738,27.234901231387536],[85.25177859898338,26.72619843190634],[86.02439293817918,26.63098460540857],[87.22747195836628,26.397898057556077],[88.06023766474982,26.41461538340249],[88.17480431514092,26.81040517832595],[88.04313276566123,27.445818589786825],[88.12044070836987,27.876541652939594],[88.73032596227856,28.086864732367516],[88.81424848832054,27.29931590423936],[88.83564253128938,27.098966376243762],[89.74452762243884,26.719402981059957],[90.37327477413407,26.87572418874288],[91.21751264848643,26.808648179628022],[92.03348351437509,26.83831045176356],[92.10371178585973,27.452614040633208],[91.69665652869668,27.77174184825166],[92.50311893104364,27.89687632904645],[93.41334760943268,28.640629380807226],[94.56599043170294,29.277438055939985],[95.40480228066464,29.03171662039213],[96.11767866413103,29.452802028922466],[96.58659061074749,28.830979519154344],[96.24883344928779,28.41103099213444],[97.32711388549004,28.26158274994634],[97.40256147663612,27.88253611908544],[97.0519885599681,27.69905894623315],[97.1339990580153,27.083773505149964],[96.41936567585097,27.264589341739224],[95.12476769407496,26.5735720891323],[95.1551534362626,26.001307277932085],[94.60324913938538,25.162495428970402],[94.55265791217164,24.675238348890332],[94.10674197792505,23.85074087167348],[93.3251876159428,24.078556423432204],[93.28632693885928,23.043658352139005],[93.06029422401463,22.70311066333557],[93.16612755734836,22.278459580977103],[92.67272098182556,22.041238918541254],[92.14603478390681,23.627498684172593],[91.86992760617132,23.624346421802784],[91.70647505083211,22.985263983649183],[91.15896325069971,23.50352692310439],[91.46772993364367,24.072639471934792],[91.91509280799443,24.13041372323711],[92.37620161333481,24.976692816664965],[91.79959598182207,25.147431748957317],[90.8722107279121,25.132600612889547],[89.92069258012185,25.26974986419218],[89.83248091019962,25.96508209889548],[89.35509402868729,26.014407253518073],[88.56304935094977,26.44652558034272],[88.2097892598025,25.76806570078271],[88.93155398962308,25.238692328384776],[88.30637251175602,24.866079413344206],[88.08442223506242,24.501657212821925],[88.69994022009092,24.23371491138856],[88.52976972855377,23.631141872649163],[88.87631188350309,22.879146429937826],[89.03196129756623,22.055708319582976],[88.88876590368542,21.690588487224748],[88.20849734899521,21.703171698487807],[86.97570438024027,21.49556163175521],[87.03316857294887,20.743307806882413],[86.49935102737378,20.151638495356607],[85.0602657409097,19.4785788029711],[83.94100589390001,18.302009792549725],[83.18921715691785,17.67122142177898],[82.19279218946592,17.016636053937813],[82.19124189649719,16.556664130107848],[81.69271935417748,16.310219224507904],[80.79199913933014,15.951972357644491],[80.32489586784388,15.899184882058348],[80.02506920768644,15.136414903214147],[80.2332735533904,13.835770778859981],[80.28629357292186,13.006260687710833],[79.8625468281285,12.056215318240888],[79.85799930208682,10.35727509199711],[79.340511509116,10.30885427493962],[78.88534549348918,9.546135972527722],[79.18971967968828,9.216543687370148],[78.2779407083305,8.933046779816934],[77.94116539908435,8.252959092639742],[77.53989790233794,7.965534776232333],[76.59297895702167,8.89927623131419],[76.13006147655108,10.299630031775521],[75.74646731964849,11.308250637248307],[75.39610110870957,11.781245022015824],[74.86481570831681,12.741935736537897],[74.61671715688354,13.99258291264968],[74.44385949086723,14.617221787977696],[73.5341992532334,15.99065216721496],[73.11990929554943,17.928570054592498],[72.82090945830865,19.208233547436166],[72.8244751321368,20.419503282141534],[72.6305334817454,21.356009426351008],[71.17527347197395,20.757441311114235],[70.4704586119451,20.877330634031384],[69.16413008003883,22.0892980005727],[69.64492760608239,22.450774644454338],[69.34959679553435,22.84317963306269],[68.1766451353734,23.69196503345671],[68.84259931831878,24.35913361256094],[71.04324018746823,24.3565239527302],[70.84469933460284,25.21510203704352],[70.28287316272558,25.72222870533983],[70.16892662952202,26.491871649678842],[69.51439293811312,26.940965684511372],[70.61649620960193,27.989196275335868],[71.77766564320032,27.913180243434525],[72.8237516620847,28.961591701772054],[73.45063846221743,29.97641347911987],[74.42138024282026,30.979814764931177],[74.40592898956501,31.69263947196528],[75.25864179881322,32.2711054550405],[74.45155927927871,32.7648996038055],[74.10429365427734,33.44147329358685],[73.74994835805195,34.31769887952785],[74.24020267120497,34.74888703057125],[75.75706098826834,34.50492259372132],[76.87172163280403,34.65354401299274],[77.83745079947457,35.494009507787766]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Iran","sov_a3":"IRN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iran","adm0_a3":"IRN","geou_dif":0,"geounit":"Iran","gu_a3":"IRN","su_dif":0,"subunit":"Iran","su_a3":"IRN","brk_diff":0,"name":"Iran","name_long":"Iran","brk_a3":"IRN","brk_name":"Iran","brk_group":null,"abbrev":"Iran","postal":"IRN","formal_en":"Islamic Republic of Iran","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iran, Islamic Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":3,"mapcolor9":4,"mapcolor13":13,"pop_est":66429284,"gdp_md_est":841700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"IR","iso_a3":"IRN","iso_n3":"364","un_a3":"364","wb_a2":"IR","wb_a3":"IRN","woe_id":-99,"adm0_a3_is":"IRN","adm0_a3_us":"IRN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"IRN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[53.92159793479556,37.19891836196126],[54.800303989486565,37.392420762678185],[55.51157840355191,37.96411713312317],[56.18037479027333,37.93512665460742],[56.61936608259282,38.121394354803485],[57.33043379092898,38.02922943781094],[58.4361544126782,37.522309475243794],[59.23476199731681,37.412987982730336],[60.37763797388387,36.52738312432837],[61.123070509694145,36.49159719496624],[61.21081709172574,35.650072333309225],[60.80319339380745,34.40410187431986],[60.52842980331158,33.676446031218006],[60.963700392506006,33.52883230237625],[60.536077915290775,32.98126882581157],[60.863654819588966,32.18291962333443],[60.94194461451113,31.548074652628753],[61.699314406180825,31.37950613049267],[61.781221551363444,30.735850328081234],[60.874248488208785,29.829238999952604],[61.36930870956494,29.303276272085924],[61.77186811711863,28.699333807890795],[62.72783043808598,28.25964488373539],[62.755425652929866,27.378923448184985],[63.233897739520295,27.21704702403071],[63.31663170761959,26.756532497661667],[61.87418745305655,26.239974880472104],[61.49736290878419,25.0782370061185],[59.61613406763084,25.380156561783778],[58.5257613462723,25.60996165618573],[57.397251417882394,25.73990204518364],[56.970765822177555,26.96610626882136],[56.492138706290206,27.143304755150197],[55.72371015811006,26.96463349050104],[54.71508955263727,26.480657863871514],[53.49309695823135,26.81236888275305],[52.48359785340961,27.580849107365495],[51.52076256694741,27.865689602158298],[50.85294803243954,28.814520575469384],[50.115008579311585,30.147772528599717],[49.576850213423995,29.985715236932407],[48.94133344909855,30.317090359004037],[48.567971225789755,29.926778265903522],[48.0145683123761,30.452456773392598],[48.004698113808324,30.985137437457244],[47.68528608581227,30.98485321707963],[47.8492037290421,31.70917593029867],[47.3346614927119,32.469155381799105],[46.10936160663932,33.017287299119005],[45.41669070819904,33.967797756479584],[45.64845950702809,34.748137722303014],[46.15178795755093,35.09325877536429],[46.0763403664048,35.67738332777549],[45.4206181170532,35.97754588474282],[44.77267,37.17045],[44.22575564960053,37.97158437758935],[44.421402622257546,38.28128123631454],[44.10922529478234,39.4281362981681],[44.79398969908195,39.71300263117705],[44.95268802265031,39.33576467544637],[45.45772179543877,38.87413910578306],[46.14362308124881,38.74120148371222],[46.50571984231797,38.770605373686294],[47.685079380083096,39.508363959301214],[48.06009524922524,39.58223541926246],[48.35552941263788,39.28876496027691],[48.01074425638648,38.79401479751452],[48.63437544128481,38.27037750910097],[48.88324913920249,38.32024526626262],[49.19961225769334,37.58287425388988],[50.14777143738462,37.37456655532134],[50.84235436381971,36.8728142359834],[52.264024692601424,36.7004216578577],[53.82578982932642,36.965030829408235],[53.92159793479556,37.19891836196126]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Iraq","sov_a3":"IRQ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iraq","adm0_a3":"IRQ","geou_dif":0,"geounit":"Iraq","gu_a3":"IRQ","su_dif":0,"subunit":"Iraq","su_a3":"IRQ","brk_diff":0,"name":"Iraq","name_long":"Iraq","brk_a3":"IRQ","brk_name":"Iraq","brk_group":null,"abbrev":"Iraq","postal":"IRQ","formal_en":"Republic of Iraq","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iraq","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":3,"mapcolor13":1,"pop_est":31129225,"gdp_md_est":103900,"pop_year":-99,"lastcensus":1997,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"IQ","iso_a3":"IRQ","iso_n3":"368","un_a3":"368","wb_a2":"IQ","wb_a3":"IRQ","woe_id":-99,"adm0_a3_is":"IRQ","adm0_a3_us":"IRQ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"IRQ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[45.4206181170532,35.97754588474282],[46.0763403664048,35.67738332777549],[46.15178795755093,35.09325877536429],[45.64845950702809,34.748137722303014],[45.41669070819904,33.967797756479584],[46.10936160663932,33.017287299119005],[47.3346614927119,32.469155381799105],[47.8492037290421,31.70917593029867],[47.68528608581227,30.98485321707963],[48.004698113808324,30.985137437457244],[48.0145683123761,30.452456773392598],[48.567971225789755,29.926778265903522],[47.974519077349896,29.9758192001485],[47.30262210469096,30.05906993257072],[46.568713413281756,29.09902517345229],[44.70949873228474,29.178891099559383],[41.889980910007836,31.190008653278365],[40.399994337736246,31.889991766887935],[39.19546837744497,32.16100881604267],[38.792340529136084,33.378686428352225],[41.006158888519934,34.41937226006212],[41.383965285005814,35.628316555314356],[41.289707472505455,36.35881460219227],[41.83706424334096,36.605853786763575],[42.34959109881177,37.2298725449041],[42.77912560402182,37.385263576805755],[43.9422587420473,37.25622752537295],[44.29345177590286,37.0015143906063],[44.772699008977696,37.170444647768434],[45.4206181170532,35.97754588474282]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Israel","sov_a3":"ISR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Israel","adm0_a3":"ISR","geou_dif":0,"geounit":"Israel","gu_a3":"ISR","su_dif":0,"subunit":"Israel","su_a3":"ISR","brk_diff":0,"name":"Israel","name_long":"Israel","brk_a3":"ISR","brk_name":"Israel","brk_group":null,"abbrev":"Isr.","postal":"IS","formal_en":"State of Israel","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Israel","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":9,"pop_est":7233701,"gdp_md_est":201400,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IL","iso_a3":"ISR","iso_n3":"376","un_a3":"376","wb_a2":"IL","wb_a3":"ISR","woe_id":-99,"adm0_a3_is":"ISR","adm0_a3_us":"ISR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ISR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[35.71991824722275,32.709192409794866],[35.54566531753454,32.393992011030576],[35.183930291491436,32.53251068778894],[34.97464074070933,31.86658234305972],[35.22589155451242,31.754341132121766],[34.970506626125996,31.616778469360806],[34.92740848159457,31.353435370401414],[35.397560662586045,31.48908600516758],[35.420918409981965,31.100065822874356],[34.92260257339142,29.501326198844524],[34.26543338393568,31.219360866820153],[34.55637169773891,31.548823960896996],[34.48810713068136,31.60553884533732],[34.752587111151165,32.07292633720117],[34.95541710789677,32.82737641044638],[35.098457472480675,33.080539252244265],[35.126052687324545,33.09090037691878],[35.460709262846706,33.08904002535628],[35.55279666519081,33.26427480725802],[35.82110070165024,33.2774264592763],[35.836396925608625,32.86812327730851],[35.700797967274745,32.71601369885738],[35.71991824722275,32.709192409794866]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Jordan","sov_a3":"JOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Jordan","adm0_a3":"JOR","geou_dif":0,"geounit":"Jordan","gu_a3":"JOR","su_dif":0,"subunit":"Jordan","su_a3":"JOR","brk_diff":0,"name":"Jordan","name_long":"Jordan","brk_a3":"JOR","brk_name":"Jordan","brk_group":null,"abbrev":"Jord.","postal":"J","formal_en":"Hashemite Kingdom of Jordan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Jordan","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":6342948,"gdp_md_est":31610,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"JO","iso_a3":"JOR","iso_n3":"400","un_a3":"400","wb_a2":"JO","wb_a3":"JOR","woe_id":-99,"adm0_a3_is":"JOR","adm0_a3_us":"JOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"JOR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[35.54566531753454,32.393992011030576],[35.71991824722275,32.709192409794866],[36.834062127435544,32.312937526980775],[38.792340529136084,33.378686428352225],[39.19546837744497,32.16100881604267],[39.00488569515255,32.01021698661498],[37.00216556168101,31.508412990844743],[37.998848911294374,30.50849986421313],[37.66811974462638,30.3386652694859],[37.503581984209035,30.003776150018403],[36.74052778498725,29.86528331147619],[36.50121422704358,29.5052536076987],[36.06894087092206,29.197494615184457],[34.95603722508426,29.35655467377884],[34.92260257339142,29.501326198844524],[35.420918409981965,31.100065822874356],[35.397560662586045,31.48908600516758],[35.5452519060762,31.78250478772084],[35.54566531753454,32.393992011030576]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Japan","sov_a3":"JPN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Japan","adm0_a3":"JPN","geou_dif":0,"geounit":"Japan","gu_a3":"JPN","su_dif":0,"subunit":"Japan","su_a3":"JPN","brk_diff":0,"name":"Japan","name_long":"Japan","brk_a3":"JPN","brk_name":"Japan","brk_group":null,"abbrev":"Japan","postal":"J","formal_en":"Japan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Japan","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":5,"mapcolor13":4,"pop_est":127078679,"gdp_md_est":4329000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"JP","iso_a3":"JPN","iso_n3":"392","un_a3":"392","wb_a2":"JP","wb_a3":"JPN","woe_id":-99,"adm0_a3_is":"JPN","adm0_a3_us":"JPN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"JPN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.63842817600388,34.14923371025642],[134.7663790223585,33.80633474378368],[134.20341596897086,33.20117788342964],[133.7929500672765,33.5219851750976],[133.28026818250888,33.28957042086495],[133.01485802625788,32.70456736910478],[132.3631148621927,32.98938202568137],[132.37117638563018,33.46364248304007],[132.9243725933148,34.06029857028204],[133.49296837782222,33.9446208765967],[133.90410607313638,34.36493113864262],[134.63842817600388,34.14923371025642]]],[[[140.9763875673053,37.14207428644016],[140.59976972876214,36.343983466124534],[140.77407433488264,35.84287710219024],[140.25327925024513,35.13811391859365],[138.97552778539622,34.66760000257611],[137.21759891169123,34.60628591566186],[135.7929830262689,33.46480520276663],[135.12098270074543,33.84907115328906],[135.07943484918272,34.59654490817482],[133.340316196832,34.37593821872076],[132.15677086805132,33.90493337659652],[130.98614464734348,33.88576142021628],[132.00003624891005,33.149992377244615],[131.33279015515737,31.450354519164843],[130.68631798718596,31.029579169228242],[130.20241987520498,31.418237616495418],[130.44767622286216,32.319474595665724],[129.8146916037189,32.61030955660439],[129.40846316947258,33.29605581311759],[130.35393517468466,33.6041507024417],[130.87845096244715,34.232742824840045],[131.88422936414392,34.74971385348791],[132.61767296766251,35.43339305270942],[134.6083008159778,35.73161774346582],[135.67753787652893,35.527134100886826],[136.72383060114245,37.30498423924038],[137.3906116070045,36.827390651998826],[138.85760216690628,37.82748464614346],[139.4264046571429,38.21596222589764],[140.0547900738121,39.438807481436385],[139.88337934789988,40.563312486323696],[140.30578250545372,41.19500519465956],[141.3689734234267,41.37855988216029],[141.91426313697048,39.99161611587868],[141.884600864835,39.180864569651504],[140.9594893739458,38.17400096287658],[140.9763875673053,37.14207428644016]]],[[[143.9101619813795,44.17409983985373],[144.61342654843963,43.960882880217525],[145.3208252300831,44.38473297787544],[145.54313724180278,43.262088324550604],[144.0596618999999,42.98835826270056],[143.18384972551732,41.9952147486992],[141.61149092017249,42.67879059505608],[141.06728641170665,41.58459381770799],[139.95510623592108,41.569555975911044],[139.81754357315995,42.5637588567744],[140.31208703019323,43.33327261003265],[141.38054894426003,43.388824774746496],[141.67195234595394,44.77212535255148],[141.967644891528,45.55148346616135],[143.14287031470982,44.510358384776964],[143.9101619813795,44.17409983985373]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Kazakhstan","sov_a3":"KAZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kazakhstan","adm0_a3":"KAZ","geou_dif":0,"geounit":"Kazakhstan","gu_a3":"KAZ","su_dif":0,"subunit":"Kazakhstan","su_a3":"KAZ","brk_diff":0,"name":"Kazakhstan","name_long":"Kazakhstan","brk_a3":"KAZ","brk_name":"Kazakhstan","brk_group":null,"abbrev":"Kaz.","postal":"KZ","formal_en":"Republic of Kazakhstan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kazakhstan","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":6,"mapcolor13":1,"pop_est":15399437,"gdp_md_est":175800,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"KZ","iso_a3":"KAZ","iso_n3":"398","un_a3":"398","wb_a2":"KZ","wb_a3":"KAZ","woe_id":-99,"adm0_a3_is":"KAZ","adm0_a3_us":"KAZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KAZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[70.96231489449929,42.26615428320554],[70.3889648782208,42.081307684897524],[69.07002729683524,41.38424428971234],[68.63248294462005,40.66868073176687],[68.25989586779565,40.6623245305949],[67.98585574735182,41.135990708982206],[66.7140470722166,41.168443508461564],[66.51064863471572,41.987644151368556],[66.02339155463562,41.99464630794404],[66.0980123228652,42.99766002051308],[64.90082441595933,43.728080552742654],[63.185786981056594,43.650074978198006],[62.01330040878628,43.50447663021566],[61.0583199400325,44.40581696225058],[60.23997195825847,44.784036770194746],[58.6899890480958,45.50001373959873],[58.50312706892844,45.586804307632974],[55.92891727074118,44.99585846615918],[55.968191359283026,41.30864166926938],[55.45525109235381,41.25985911718584],[54.75534549339267,42.04397146256662],[54.07941775901497,42.32410940202084],[52.94429324729174,42.11603424739758],[52.50245975119628,41.78331553808647],[52.44633914572722,42.027150783855575],[52.692112257707265,42.44389537207337],[52.50142622255032,42.7922978785852],[51.342427199108215,43.132974758469345],[50.89129194520024,44.03103363705378],[50.339129266161365,44.284015611338475],[50.305642938036264,44.609835516938915],[51.278503452363225,44.51485423438646],[51.316899041556034,45.2459982366679],[52.16738976421573,45.40839142514511],[53.0408764992452,45.25904653582177],[53.220865512917726,46.234645901059935],[53.042736850807785,46.853006089864486],[52.04202273947561,46.80463694923924],[51.191945428274266,47.048704738953916],[50.03408328634248,46.60898997658222],[49.10116000000011,46.399330000000134],[48.593241001180495,46.56103424741547],[48.694733514201744,47.07562816017793],[48.05725304544927,47.74375275327952],[47.31523115417024,47.715847479841955],[46.46644575377627,48.39415233010493],[47.043671502476506,49.152038886097614],[46.75159630716274,49.35600576435377],[47.5494804217493,50.454698391311126],[48.57784142435752,49.87475962991567],[48.70238162618102,50.60512848571284],[50.76664839051215,51.6927623561599],[52.32872358583097,51.718652248738124],[54.532878452376224,51.02623973245932],[55.716940545479815,50.62171662047853],[56.777961053296565,51.04355133727705],[58.36329064314674,51.06365346943858],[59.6422823423706,50.545442206415714],[59.93280724471549,50.842194118851864],[61.337424350840934,50.79907013610426],[61.58800337102417,51.272658799843214],[59.96753380721554,51.9604204372157],[60.92726850774027,52.44754832621504],[60.73999311711459,52.71998647725775],[61.6999861998006,52.97999644633427],[60.97806644068316,53.66499339457914],[61.436591424409066,54.00626455343479],[65.17853356309593,54.35422781027211],[65.666875848254,54.60126699484345],[68.16910037625883,54.97039175070432],[69.06816694527288,55.38525014914353],[70.86526655465514,55.169733588270105],[71.18013105660941,54.133285224008254],[72.22415001820218,54.376655381886735],[73.5085160663844,54.035616766976595],[73.42567874542043,53.489810289109755],[74.38484500519007,53.54686107036008],[76.89110029491343,54.49052440044193],[76.52517947785473,54.177003485727134],[77.80091556184425,53.404414984747575],[80.03555952344169,50.86475088154725],[80.56844689323549,51.38833649352847],[81.94598554883993,50.81219594990637],[83.38300377801238,51.069182847693924],[83.93511478061885,50.88924551045358],[84.41637739455308,50.311399644565824],[85.11555952346203,50.11730296487763],[85.54126997268247,49.69285858824816],[86.82935672398963,49.82667470966817],[87.35997033076268,49.21498078062916],[86.59877648310339,48.54918162698061],[85.7682328633083,48.45575063739698],[85.72048383987072,47.45296946877312],[85.16429039911338,47.00095571551611],[83.18048383986047,47.330031236350855],[82.45892581576913,45.539649563166506],[81.94707075391813,45.31702749285324],[79.96610639844141,44.91751699480466],[80.86620649610137,43.18036204688104],[80.1801501809943,42.92006785742694],[80.25999026888536,42.349999294599115],[79.64364546094015,42.496682847659656],[79.1421773619798,42.856092434249604],[77.6583919615832,42.960685533208334],[76.00035363149857,42.98802236589063],[75.6369649596221,42.87789988867678],[74.21286583852259,43.29833934180351],[73.64530358266092,43.09127187760987],[73.48975752146237,42.50089447689129],[71.84463829945065,42.845395412765185],[71.18628055205227,42.70429291439223],[70.96231489449929,42.26615428320554]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Kyrgyzstan","sov_a3":"KGZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kyrgyzstan","adm0_a3":"KGZ","geou_dif":0,"geounit":"Kyrgyzstan","gu_a3":"KGZ","su_dif":0,"subunit":"Kyrgyzstan","su_a3":"KGZ","brk_diff":0,"name":"Kyrgyzstan","name_long":"Kyrgyzstan","brk_a3":"KGZ","brk_name":"Kyrgyzstan","brk_group":null,"abbrev":"Kgz.","postal":"KG","formal_en":"Kyrgyz Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kyrgyz Republic","name_alt":null,"mapcolor7":5,"mapcolor8":7,"mapcolor9":7,"mapcolor13":6,"pop_est":5431747,"gdp_md_est":11610,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KG","iso_a3":"KGZ","iso_n3":"417","un_a3":"417","wb_a2":"KG","wb_a3":"KGZ","woe_id":-99,"adm0_a3_is":"KGZ","adm0_a3_us":"KGZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KGZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[70.96231489449914,42.26615428320549],[71.18628055205212,42.70429291439214],[71.8446382994506,42.84539541276509],[73.48975752146237,42.50089447689132],[73.64530358266092,43.09127187760982],[74.21286583852256,43.29833934180337],[75.636964959622,42.87789988867668],[76.00035363149846,42.98802236589067],[77.6583919615832,42.96068553320826],[79.14217736197978,42.85609243424952],[79.64364546094012,42.49668284765953],[80.2599902688853,42.34999929459906],[80.11943037305139,42.12394074153825],[78.54366092317531,41.58224254003869],[78.18719689322597,41.18531586360481],[76.90448449087708,41.06648590754964],[76.52636803579745,40.42794607193512],[75.4678279967307,40.56207225194867],[74.77686242055606,40.36642527929163],[73.8222436868283,39.893973497063186],[73.96001305531843,39.660008449861735],[73.6753792662548,39.4312368841056],[71.784693637992,39.27946320246437],[70.54916181832562,39.6041979029865],[69.46488691597753,39.5266832545487],[69.55960981636852,40.10321137141298],[70.64801883329997,39.93575389257117],[71.01419803252017,40.24436554621823],[71.77487511585656,40.14584442805378],[73.05541710804917,40.866033026689465],[71.87011478057047,41.392900092121266],[71.1578585142916,41.14358714452912],[70.42002241402821,41.51999827734314],[71.25924767444822,42.16771067968946],[70.96231489449914,42.26615428320549]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"South Korea","sov_a3":"KOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Korea","adm0_a3":"KOR","geou_dif":0,"geounit":"South Korea","gu_a3":"KOR","su_dif":0,"subunit":"South Korea","su_a3":"KOR","brk_diff":0,"name":"Korea","name_long":"Republic of Korea","brk_a3":"KOR","brk_name":"Republic of Korea","brk_group":null,"abbrev":"S.K.","postal":"KR","formal_en":"Republic of Korea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Korea, Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":1,"mapcolor13":5,"pop_est":48508972,"gdp_md_est":1335000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"KR","iso_a3":"KOR","iso_n3":"410","un_a3":"410","wb_a2":"KR","wb_a3":"KOR","woe_id":-99,"adm0_a3_is":"KOR","adm0_a3_us":"KOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":17,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KOR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[128.34971642467661,38.61224294692785],[129.21291954968007,37.43239248305595],[129.46044966035817,36.78418915460282],[129.4683044780665,35.63214061130395],[129.0913765809296,35.082484239231434],[128.1858504578791,34.89037710218639],[127.38651940318839,34.47567373304412],[126.48574751190874,34.39004588473648],[126.37391971242913,34.934560451795946],[126.5592313986278,35.6845405136479],[126.11739790253229,36.72548472751926],[126.86014326386339,36.893924058574626],[126.17475874237624,37.74968577732804],[126.23733890188176,37.84037791600028],[126.68371992401892,37.80477285415118],[127.07330854706737,38.2561148137884],[127.780035435091,38.30453563084589],[128.20574588431145,38.37039724380189],[128.34971642467661,38.61224294692785]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cambodia","sov_a3":"KHM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cambodia","adm0_a3":"KHM","geou_dif":0,"geounit":"Cambodia","gu_a3":"KHM","su_dif":0,"subunit":"Cambodia","su_a3":"KHM","brk_diff":0,"name":"Cambodia","name_long":"Cambodia","brk_a3":"KHM","brk_name":"Cambodia","brk_group":null,"abbrev":"Camb.","postal":"KH","formal_en":"Kingdom of Cambodia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cambodia","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":5,"pop_est":14494293,"gdp_md_est":27940,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KH","iso_a3":"KHM","iso_n3":"116","un_a3":"116","wb_a2":"KH","wb_a3":"KHM","woe_id":-99,"adm0_a3_is":"KHM","adm0_a3_us":"KHM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"KHM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[103.4972799011397,10.632555446815928],[103.09068973186724,11.153660590047165],[102.5849324890267,12.186594956913282],[102.348099399833,13.394247341358223],[102.98842207236163,14.225721136934467],[104.28141808473661,14.416743068901367],[105.21877689007887,14.273211778210694],[106.04394616091552,13.881091009979954],[106.49637332563087,14.570583807834282],[107.38272749230109,14.202440904186972],[107.61454796756243,13.535530707244206],[107.49140302941089,12.337205918827946],[105.81052371625313,11.567614650921227],[106.24967003786946,10.961811835163587],[105.19991499229235,10.889309800658097],[104.33433475140347,10.48654368737523],[103.4972799011397,10.632555446815928]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kuwait","sov_a3":"KWT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kuwait","adm0_a3":"KWT","geou_dif":0,"geounit":"Kuwait","gu_a3":"KWT","su_dif":0,"subunit":"Kuwait","su_a3":"KWT","brk_diff":0,"name":"Kuwait","name_long":"Kuwait","brk_a3":"KWT","brk_name":"Kuwait","brk_group":null,"abbrev":"Kwt.","postal":"KW","formal_en":"State of Kuwait","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kuwait","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":2,"mapcolor13":2,"pop_est":2691158,"gdp_md_est":149100,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"KW","iso_a3":"KWT","iso_n3":"414","un_a3":"414","wb_a2":"KW","wb_a3":"KWT","woe_id":-99,"adm0_a3_is":"KWT","adm0_a3_us":"KWT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KWT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[47.974519077349896,29.9758192001485],[48.18318851094448,29.534476630159766],[48.09394331237642,29.306299343375002],[48.416094191283946,28.55200429942667],[47.708850538937384,28.526062730416143],[47.45982181172283,29.002519436147224],[46.568713413281756,29.09902517345229],[47.30262210469096,30.05906993257072],[47.974519077349896,29.9758192001485]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Laos","sov_a3":"LAO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Laos","adm0_a3":"LAO","geou_dif":0,"geounit":"Laos","gu_a3":"LAO","su_dif":0,"subunit":"Laos","su_a3":"LAO","brk_diff":0,"name":"Lao PDR","name_long":"Lao PDR","brk_a3":"LAO","brk_name":"Laos","brk_group":null,"abbrev":"Laos","postal":"LA","formal_en":"Lao People's Democratic Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lao PDR","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":9,"pop_est":6834942,"gdp_md_est":13980,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LA","iso_a3":"LAO","iso_n3":"418","un_a3":"418","wb_a2":"LA","wb_a3":"LAO","woe_id":-99,"adm0_a3_is":"LAO","adm0_a3_us":"LAO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"LAO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[105.21877689007887,14.273211778210694],[105.54433841351769,14.723933620660416],[105.58903852745016,15.570316066952858],[104.7793205098688,16.44186493577145],[104.7169470560925,17.42885895433008],[103.95647667848529,18.24095408779688],[103.20019209189373,18.309632066312773],[102.9987056823877,17.9616946476916],[102.41300499879162,17.932781683824288],[102.11359175009248,18.109101670804165],[101.05954756063517,17.51249725999449],[101.03593143107777,18.408928330961615],[101.2820146016517,19.462584947176765],[100.60629357300316,19.508344427971224],[100.54888105672688,20.109237982661128],[100.11598758341783,20.417849636308187],[100.32910119018952,20.786121731036232],[101.18000532430754,21.436572984294024],[101.27002566935997,21.201651923095184],[101.80311974488292,21.17436676684507],[101.65201785686152,22.318198757409547],[102.17043582561358,22.464753119389304],[102.75489627483466,21.675137233969465],[103.20386111858645,20.766562201413745],[104.43500044150805,20.75873322192153],[104.8225736836971,19.886641750563882],[104.18338789267894,19.62466807706022],[103.8965320170267,19.265180975821806],[105.09459842328152,18.66697459561108],[105.92576216026403,17.48531545660896],[106.55600792849569,16.604283962464805],[107.3127059265456,15.90853831630318],[107.5645251811039,15.202173163305558],[107.38272749230109,14.202440904186972],[106.49637332563087,14.570583807834282],[106.04394616091552,13.881091009979954],[105.21877689007887,14.273211778210694]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Lebanon","sov_a3":"LBN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lebanon","adm0_a3":"LBN","geou_dif":0,"geounit":"Lebanon","gu_a3":"LBN","su_dif":0,"subunit":"Lebanon","su_a3":"LBN","brk_diff":0,"name":"Lebanon","name_long":"Lebanon","brk_a3":"LBN","brk_name":"Lebanon","brk_group":null,"abbrev":"Leb.","postal":"LB","formal_en":"Lebanese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lebanon","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":12,"pop_est":4017095,"gdp_md_est":44060,"pop_year":-99,"lastcensus":1970,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LB","iso_a3":"LBN","iso_n3":"422","un_a3":"422","wb_a2":"LB","wb_a3":"LBN","woe_id":-99,"adm0_a3_is":"LBN","adm0_a3_us":"LBN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":4,"homepart":1,"filename":"LBN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[35.82110070165024,33.2774264592763],[35.55279666519081,33.26427480725802],[35.460709262846706,33.08904002535628],[35.126052687324545,33.09090037691878],[35.48220665868013,33.90545014091944],[35.9795923194894,34.61005829521913],[35.99840254084364,34.644914048800004],[36.4481942075121,34.59393524834407],[36.61175011571589,34.201788641897174],[36.066460402172055,33.82491242119255],[35.82110070165024,33.2774264592763]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sri Lanka","sov_a3":"LKA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sri Lanka","adm0_a3":"LKA","geou_dif":0,"geounit":"Sri Lanka","gu_a3":"LKA","su_dif":0,"subunit":"Sri Lanka","su_a3":"LKA","brk_diff":0,"name":"Sri Lanka","name_long":"Sri Lanka","brk_a3":"LKA","brk_name":"Sri Lanka","brk_group":null,"abbrev":"Sri L.","postal":"LK","formal_en":"Democratic Socialist Republic of Sri Lanka","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sri Lanka","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":4,"mapcolor13":9,"pop_est":21324791,"gdp_md_est":91870,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LK","iso_a3":"LKA","iso_n3":"144","un_a3":"144","wb_a2":"LK","wb_a3":"LKA","woe_id":-99,"adm0_a3_is":"LKA","adm0_a3_us":"LKA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":9,"long_len":9,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"LKA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[81.7879590188914,7.523055324733164],[81.63732221876059,6.481775214051921],[81.21801964714433,6.197141424988288],[80.34835696810441,5.968369859232155],[79.87246870312853,6.76346344647493],[79.69516686393513,8.200843410673386],[80.14780073437964,9.824077663609557],[80.83881798698656,9.268426825391188],[81.30431928907177,8.56420624433369],[81.7879590188914,7.523055324733164]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Myanmar","sov_a3":"MMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Myanmar","adm0_a3":"MMR","geou_dif":0,"geounit":"Myanmar","gu_a3":"MMR","su_dif":0,"subunit":"Myanmar","su_a3":"MMR","brk_diff":0,"name":"Myanmar","name_long":"Myanmar","brk_a3":"MMR","brk_name":"Myanmar","brk_group":null,"abbrev":"Myan.","postal":"MM","formal_en":"Republic of the Union of Myanmar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Myanmar","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":13,"pop_est":48137741,"gdp_md_est":55130,"pop_year":-99,"lastcensus":1983,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MM","iso_a3":"MMR","iso_n3":"104","un_a3":"104","wb_a2":"MM","wb_a3":"MMR","woe_id":-99,"adm0_a3_is":"MMR","adm0_a3_us":"MMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"MMR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[99.54330936075931,20.186597601802063],[98.95967573445488,19.752980658440947],[98.25372399291561,19.708203029860044],[97.7977828308044,18.627080389881755],[97.37589643757354,18.445437730375815],[97.85912275593486,17.567946071843664],[98.49376102091135,16.83783559820793],[98.90334842325676,16.177824204976115],[98.53737592976572,15.308497422746084],[98.1920740091914,15.12370250087035],[98.43081912637987,14.622027696180835],[99.09775516153876,13.827502549693278],[99.21201175333609,13.269293728076464],[99.19635379435167,12.80474843998867],[99.58728600463972,11.892762762901697],[99.03812055867398,10.960545762572437],[98.55355065307305,9.932959906448545],[98.45717410684871,10.67526601810515],[98.76454552612077,11.441291612183749],[98.42833865762985,12.032986761925683],[98.50957400919268,13.122377631070677],[98.1036039571077,13.640459703012851],[97.77773237507517,14.837285874892642],[97.59707156778276,16.10056793869977],[97.1645398294998,16.928734442609336],[96.505768670643,16.42724050543285],[95.3693522481124,15.7143899601826],[94.80840457558412,15.80345429123764],[94.18880415240454,16.037936102762018],[94.53348595579135,17.277240301985728],[94.32481652219674,18.2135139022499],[93.54098839719364,19.36649262133002],[93.66325483599621,19.726961574781996],[93.07827762245219,19.855144965081976],[92.36855350135562,20.670883287025347],[92.30323449093868,21.47548533780982],[92.65225711463799,21.324047552978485],[92.67272098182556,22.041238918541254],[93.16612755734836,22.278459580977103],[93.06029422401463,22.70311066333557],[93.28632693885928,23.043658352139005],[93.3251876159428,24.078556423432204],[94.10674197792505,23.85074087167348],[94.55265791217164,24.675238348890332],[94.60324913938538,25.162495428970402],[95.1551534362626,26.001307277932085],[95.12476769407496,26.5735720891323],[96.41936567585097,27.264589341739224],[97.1339990580153,27.083773505149964],[97.0519885599681,27.69905894623315],[97.40256147663612,27.88253611908544],[97.32711388549004,28.26158274994634],[97.91198774616944,28.335945136014345],[98.2462309102333,27.74722138112918],[98.68269005737046,27.50881216075062],[98.71209394734451,26.743535874940264],[98.67183800658916,25.918702500913525],[97.72460900267914,25.083637193293],[97.60471967976198,23.897404690033042],[98.66026248575577,24.063286037689966],[98.89874922078276,23.14272207284253],[99.5319922220874,22.94903880461258],[99.24089887898725,22.11831431730458],[99.98348921102149,21.7429367131364],[100.41653771362738,21.558839423096614],[101.15003299357825,21.84998444262902],[101.18000532430754,21.436572984294024],[100.32910119018952,20.786121731036232],[100.11598758341783,20.417849636308187],[99.54330936075931,20.186597601802063]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mongolia","sov_a3":"MNG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mongolia","adm0_a3":"MNG","geou_dif":0,"geounit":"Mongolia","gu_a3":"MNG","su_dif":0,"subunit":"Mongolia","su_a3":"MNG","brk_diff":0,"name":"Mongolia","name_long":"Mongolia","brk_a3":"MNG","brk_name":"Mongolia","brk_group":null,"abbrev":"Mong.","postal":"MN","formal_en":"Mongolia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mongolia","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":5,"mapcolor13":6,"pop_est":3041142,"gdp_md_est":9476,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MN","iso_a3":"MNG","iso_n3":"496","un_a3":"496","wb_a2":"MN","wb_a3":"MNG","woe_id":-99,"adm0_a3_is":"MNG","adm0_a3_us":"MNG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"MNG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[87.7512642760767,49.29719798440548],[88.80556684769552,49.47052073831242],[90.71366743364067,50.33181183532109],[92.23471154171968,50.80217072204172],[93.10421919146269,50.49529022887643],[94.14756635943561,50.48053660745709],[94.81594933469873,50.01343333597085],[95.81402794798399,49.977466539095715],[97.25972781778141,49.72606069599574],[98.23176150919156,50.422400621128745],[97.8257397806743,51.01099518493318],[98.86149051310034,52.047366034546684],[99.98173221232354,51.63400625264399],[100.88948042196262,51.51685578063832],[102.06522260946733,51.259920559283124],[102.25590864462431,50.51056061461868],[103.67654544476022,50.089966132195116],[104.6215523620817,50.275329494826074],[105.88659142458675,50.406019192092224],[106.88880415245534,50.27429596618023],[107.86817589725094,49.793705145865815],[108.47516727095127,49.28254771585074],[109.40244917199666,49.29296051695755],[110.66201053267876,49.13012807880587],[111.58123091028662,49.37796824807769],[112.89773969935439,49.54356537535699],[114.36245649623527,50.24830272073741],[114.96210981655018,50.140247300815126],[115.48569542853141,49.805177313834605],[116.67880089728618,49.88853139912139],[116.19180219936757,49.134598090199106],[115.48528201707305,48.13538259540344],[115.74283735561578,47.72654450132629],[116.30895267137323,47.85341014260284],[117.29550744025741,47.69770905210743],[118.06414269416672,48.06673045510368],[118.86657433479495,47.74706004494617],[119.7728239278975,47.048058783550125],[119.66326989143874,46.69267995867892],[118.87432579963873,46.80541209572365],[117.42170128791419,46.67273285581426],[116.71786828009886,46.38820241961521],[115.98509647020008,45.727235012386004],[114.46033165899607,45.339816799493825],[113.46390669154417,44.80889313412711],[112.43606245325881,45.01164561622429],[111.87330610560029,45.10207937273506],[111.34837690637946,44.45744171811009],[111.66773725794323,44.07317576758771],[111.82958784388137,43.743118394539515],[111.12968224492022,43.40683401140015],[110.41210330611528,42.87123362891103],[109.24359581913146,42.5194463160841],[107.74477257693795,42.48151581478187],[106.12931562706169,42.13432770442891],[104.96499393109347,41.59740957291635],[104.52228193564899,41.908346666016556],[103.31227827353482,41.9074681666676],[101.83304039917994,42.51487295182628],[100.84586551310827,42.66380442969145],[99.51581749878004,42.52469147396172],[97.45175744017801,42.74888967546002],[96.34939578652781,42.725635280928685],[95.76245486855669,43.319449164394605],[95.30687544147153,44.24133087826547],[94.68892866412533,44.352331854828414],[93.4807336771413,44.975472113619965],[92.13389082231822,45.11507599545646],[90.9455395853343,45.28607330991028],[90.58576826371828,45.71971609148753],[90.97080936072501,46.88814606382293],[90.28082563676392,47.69354909930793],[88.85429772334676,48.06908173277296],[88.01383222855173,48.599462795600616],[87.7512642760767,49.29719798440548]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Malaysia","sov_a3":"MYS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malaysia","adm0_a3":"MYS","geou_dif":0,"geounit":"Malaysia","gu_a3":"MYS","su_dif":0,"subunit":"Malaysia","su_a3":"MYS","brk_diff":0,"name":"Malaysia","name_long":"Malaysia","brk_a3":"MYS","brk_name":"Malaysia","brk_group":null,"abbrev":"Malay.","postal":"MY","formal_en":"Malaysia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malaysia","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":3,"mapcolor13":6,"pop_est":25715819,"gdp_md_est":384300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MY","iso_a3":"MYS","iso_n3":"458","un_a3":"458","wb_a2":"MY","wb_a3":"MYS","woe_id":-99,"adm0_a3_is":"MYS","adm0_a3_us":"MYS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"MYS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.07551557821333,6.204867051615892],[101.15421878459384,5.691384182147715],[101.81428185425804,5.810808417174228],[102.14118696493645,6.221636053894656],[102.37114708863524,6.12820506431096],[102.9617053568667,5.524495144061078],[103.38121463421217,4.855001125503748],[103.4385754740562,4.181605536308382],[103.33212202353488,3.726697902842971],[103.42942874554055,3.38286876058902],[103.50244754436889,2.791018581550205],[103.85467410687036,2.515454006353763],[104.24793175661151,1.631141058759056],[104.22881147666354,1.293048000489534],[103.51970747275443,1.226333726400682],[102.57361535035479,1.967115383304744],[101.39063846232918,2.760813706875624],[101.27353966675585,3.270291652841181],[100.6954354187067,3.93913971599487],[100.55740766805509,4.76728038168828],[100.19670617065773,5.31249258058368],[100.30626020711652,6.040561835143876],[100.08575687052709,6.46448944745029],[100.25959638875692,6.642824815289572],[101.07551557821333,6.204867051615892]]],[[[118.61832075406485,4.478202419447541],[117.88203494677019,4.137551377779488],[117.01521447150637,4.306094061699469],[115.86551720587677,4.306559149590157],[115.51907840379201,3.169238389494396],[115.13403730678523,2.821481838386219],[114.6213554220175,1.430688177898887],[113.80584964401956,1.217548732911041],[112.8598091980522,1.497790025229946],[112.38025190638368,1.410120957846758],[111.79754845586044,0.904441229654651],[111.15913781132659,0.976478176269509],[110.51406090702713,0.773131415200993],[109.83022667850886,1.338135687664192],[109.66326012577375,2.006466986494985],[110.39613528853707,1.663774725751395],[111.1688529805975,1.850636704918784],[111.3700810079421,2.697303371588873],[111.79692833867287,2.885896511238073],[112.99561486211527,3.102394924324869],[113.71293541875873,3.893509426281128],[114.20401655482843,4.52587392823682],[114.65959598191355,4.00763682699781],[114.8695573263154,4.348313706881952],[115.34746097215069,4.316636053887009],[115.40570031134362,4.955227565933825],[115.45071048386981,5.447729803891561],[116.22074100145099,6.143191229675621],[116.72510298061978,6.924771429873998],[117.12962609260049,6.928052883324567],[117.64339318244633,6.422166449403306],[117.68907514859237,5.987490139180181],[118.3476912781522,5.708695786965464],[119.18190392463994,5.407835598162251],[119.11069380094172,5.016128241389865],[118.43972700406411,4.96651886638962],[118.61832075406485,4.478202419447541]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Oman","sov_a3":"OMN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Oman","adm0_a3":"OMN","geou_dif":0,"geounit":"Oman","gu_a3":"OMN","su_dif":0,"subunit":"Oman","su_a3":"OMN","brk_diff":0,"name":"Oman","name_long":"Oman","brk_a3":"OMN","brk_name":"Oman","brk_group":null,"abbrev":"Oman","postal":"OM","formal_en":"Sultanate of Oman","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Oman","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":3418085,"gdp_md_est":66980,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"OM","iso_a3":"OMN","iso_n3":"512","un_a3":"512","wb_a2":"OM","wb_a3":"OMN","woe_id":-99,"adm0_a3_is":"OMN","adm0_a3_us":"OMN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"OMN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[58.86114139184659,21.114034532144302],[58.48798587426696,20.42898590746711],[58.034318475176605,20.48143748624335],[57.82637251163411,20.24300242764863],[57.665762160070955,19.736004950433113],[57.788700392493375,19.06757029873765],[57.69439090356068,18.944709580963803],[57.234263950433814,18.947991034414258],[56.609650913321985,18.57426707607948],[56.512189162019496,18.087113348863937],[56.28352094912801,17.87606679938395],[55.6614917336307,17.88412832282154],[55.2699394061552,17.632309068263197],[55.274900343655105,17.228354397037663],[54.79100223167413,16.950696926333364],[54.239252964093765,17.044980577049984],[53.570508253804604,16.707662665264678],[53.10857262554751,16.65105113368898],[52.78218427919207,17.349742336491232],[52.00000980002224,19.000003363516072],[54.99998172386242,19.99999400479612],[55.66665937685988,22.00000112557231],[55.2083410988632,22.70832998299701],[55.234489373602884,23.11099274341535],[55.5258410988645,23.524869289640918],[55.52863162620829,23.933604030853502],[55.98121382022052,24.130542914317854],[55.80411868675625,24.269604193615294],[55.886232537668064,24.920830593357493],[56.396847365144,24.924732163995515],[56.84514041527606,24.241673081961494],[57.40345258975744,23.87859446867884],[58.13694786970834,23.74793060962884],[58.72921146020544,23.565667832935418],[59.18050174341036,22.99239533130546],[59.45009769067703,22.6602709009656],[59.80806033716286,22.533611965418203],[59.8061483091681,22.31052480721419],[59.44219119653641,21.714540513592084],[59.282407667889885,21.433885809814882],[58.86114139184659,21.114034532144302]]],[[[56.39142133975341,25.89599070892126],[56.26104170108093,25.71460643157675],[56.07082075381456,26.05546417897395],[56.36201744977936,26.395934353128947],[56.48567915225382,26.309117946878672],[56.39142133975341,25.89599070892126]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Pakistan","sov_a3":"PAK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Pakistan","adm0_a3":"PAK","geou_dif":0,"geounit":"Pakistan","gu_a3":"PAK","su_dif":0,"subunit":"Pakistan","su_a3":"PAK","brk_diff":0,"name":"Pakistan","name_long":"Pakistan","brk_a3":"PAK","brk_name":"Pakistan","brk_group":null,"abbrev":"Pak.","postal":"PK","formal_en":"Islamic Republic of Pakistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Pakistan","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":11,"pop_est":176242949,"gdp_md_est":427300,"pop_year":-99,"lastcensus":1998,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PK","iso_a3":"PAK","iso_n3":"586","un_a3":"586","wb_a2":"PK","wb_a3":"PAK","woe_id":-99,"adm0_a3_is":"PAK","adm0_a3_us":"PAK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PAK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[75.15802778514092,37.13303091078912],[75.89689741405013,36.666806138651836],[76.19284834178569,35.89840342868782],[77.83745079947457,35.494009507787766],[76.87172163280403,34.65354401299274],[75.75706098826834,34.50492259372132],[74.24020267120497,34.74888703057125],[73.74994835805195,34.31769887952785],[74.10429365427734,33.44147329358685],[74.45155927927871,32.7648996038055],[75.25864179881322,32.2711054550405],[74.40592898956501,31.69263947196528],[74.42138024282026,30.979814764931177],[73.45063846221743,29.97641347911987],[72.8237516620847,28.961591701772054],[71.77766564320032,27.913180243434525],[70.61649620960193,27.989196275335868],[69.51439293811312,26.940965684511372],[70.16892662952202,26.491871649678842],[70.28287316272558,25.72222870533983],[70.84469933460284,25.21510203704352],[71.04324018746823,24.3565239527302],[68.84259931831878,24.35913361256094],[68.1766451353734,23.69196503345671],[67.44366661974547,23.94484365487699],[67.14544192898907,24.663611151624647],[66.37282758979326,25.425140896093847],[64.53040774929113,25.23703868255143],[62.9057007180346,25.21840932871021],[61.49736290878419,25.0782370061185],[61.87418745305655,26.239974880472104],[63.31663170761959,26.756532497661667],[63.233897739520295,27.21704702403071],[62.755425652929866,27.378923448184985],[62.72783043808598,28.25964488373539],[61.77186811711863,28.699333807890795],[61.36930870956494,29.303276272085924],[60.874248488208785,29.829238999952604],[62.54985680527278,29.31857249604431],[63.55026085801117,29.468330796826162],[64.14800215033125,29.340819200145972],[64.35041873561852,29.560030625928093],[65.0468620136161,29.472180691031905],[66.34647260932442,29.887943427036177],[66.38145755398602,30.73889923758645],[66.93889122911847,31.304911200479353],[67.68339358914747,31.30315420178142],[67.79268924344478,31.58293040620963],[68.55693200060932,31.713310044882018],[68.92667687365767,31.620189113892064],[69.31776411324255,31.90141225842444],[69.26252200712256,32.5019440780883],[69.68714725126485,33.105498969041236],[70.3235941913716,33.35853261975839],[69.9305432473596,34.02012014417511],[70.8818030129884,33.98885590263851],[71.15677330921346,34.34891144463215],[71.11501875192162,34.733125718722235],[71.6130762063507,35.153203436822864],[71.49876793812109,35.650563259416],[71.26234826038575,36.074387518857804],[71.84629194528392,36.50994232842986],[72.92002485544447,36.72000702569632],[74.06755171091783,36.83617564548845],[74.57589277537298,37.02084137628346],[75.15802778514092,37.13303091078912]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Philippines","sov_a3":"PHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Philippines","adm0_a3":"PHL","geou_dif":0,"geounit":"Philippines","gu_a3":"PHL","su_dif":0,"subunit":"Philippines","su_a3":"PHL","brk_diff":0,"name":"Philippines","name_long":"Philippines","brk_a3":"PHL","brk_name":"Philippines","brk_group":null,"abbrev":"Phil.","postal":"PH","formal_en":"Republic of the Philippines","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Philippines","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":2,"mapcolor13":8,"pop_est":97976603,"gdp_md_est":317500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PH","iso_a3":"PHL","iso_n3":"608","un_a3":"608","wb_a2":"PH","wb_a3":"PHL","woe_id":-99,"adm0_a3_is":"PHL","adm0_a3_us":"PHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"PHL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.37681359263748,8.414706325713354],[126.4785128113879,7.750354112168978],[126.53742394420063,7.189380601424574],[126.19677290253256,6.27429433840004],[125.83142052622911,7.293715318221857],[125.3638521668523,6.786485297060992],[125.68316084198372,6.049656887227258],[125.39651167206064,5.58100332277229],[124.21978763234236,6.161355495626182],[123.93871951710695,6.885135606306122],[124.24366214406135,7.360610459823661],[123.61021243702757,7.833527329942754],[123.2960714051252,7.418875637232787],[122.82550581267542,7.457374579290217],[122.08549930225577,6.899424139834849],[121.91992801319263,7.192119452336072],[122.31235884001714,8.034962063016508],[122.94239790251966,8.316236883981174],[123.48768761606352,8.693009751821194],[123.84115441293984,8.240324204944386],[124.60146976125023,8.514157619659017],[124.76461225799564,8.96040945071546],[125.47139082245157,8.986996975129642],[125.41211795461278,9.760334784377548],[126.22271447154318,9.28607432701885],[126.3066369975851,8.782487494334575],[126.37681359263748,8.414706325713354]]],[[[123.98243777882583,10.278778591345812],[123.62318322153278,9.950090643753299],[123.30992068897936,9.318268744336676],[122.99588300994164,9.0221886255204],[122.38005496631948,9.713360907424203],[122.5860889018671,9.981044826696104],[122.83708133350873,10.261156927934238],[122.94741051645192,10.881868394408029],[123.49884972543848,10.940624497923949],[123.33777428598475,10.267383938025446],[124.07793582570125,11.23272553145371],[123.98243777882583,10.278778591345812]]],[[[118.50458092659035,9.31638255455809],[117.1742745301007,8.367499904814665],[117.66447716682138,9.066888739452935],[118.38691369026175,9.684499619989225],[118.98734215706108,10.376292019080509],[119.51149620979756,11.369668077027214],[119.68967654833992,10.554291490109875],[119.029458449379,10.003653265823871],[118.50458092659035,9.31638255455809]]],[[[121.88354780485913,11.89175507247198],[122.48382124236147,11.582187404827508],[123.12021650603597,11.58366018314787],[123.10083784392647,11.16593374271649],[122.6377136577267,10.741308498574227],[122.00261030485957,10.441016750526087],[121.96736697803655,10.905691229694623],[122.03837039600555,11.41584096928004],[121.88354780485913,11.89175507247198]]],[[[125.50255171112352,12.162694606978349],[125.78346479706218,11.046121934447768],[125.01188398651229,11.31145457605038],[125.03276126515814,10.975816148314706],[125.27744917206027,10.358722032101312],[124.80181928924573,10.134678859899893],[124.76016808481849,10.837995103392302],[124.45910119028606,10.889929917845635],[124.30252160044172,11.495370998577227],[124.8910128113816,11.415582587118593],[124.87799035044398,11.79418996830499],[124.26676150929572,12.557760931849685],[125.22711632700785,12.535720933477194],[125.50255171112352,12.162694606978349]]],[[[121.52739383350351,13.06959015548452],[121.26219038298157,12.205560207564403],[120.83389611214656,12.70449616134242],[120.3234363139675,13.46641347905387],[121.18012820850217,13.429697373910443],[121.52739383350351,13.06959015548452]]],[[[121.32130822152358,18.504064642811016],[121.9376013530364,18.218552354398383],[122.24600630095429,18.478949896717097],[122.336956821788,18.224882717354177],[122.1742794129332,17.810282701076375],[122.51565392465336,17.093504746971973],[122.2523108256939,16.262444362854126],[121.66278608610828,15.931017564350128],[121.5050696147534,15.124813544164622],[121.72882856657728,14.328376369682246],[122.25892540902734,14.218202216035976],[122.70127566944566,14.33654124598442],[123.95029503794026,13.78213064214107],[123.85510704965863,13.237771104378467],[124.1812886902849,12.997527370653472],[124.07741906137825,12.536676947474575],[123.29803510955227,13.027525539598981],[122.92865197152993,13.552919826710408],[122.67135501514869,13.185836289925135],[122.03464969288055,13.784481919810347],[121.1263847189186,13.63668732345556],[120.62863732308331,13.857655747935652],[120.67938357959385,14.271015529838323],[120.99181928923055,14.525392767795083],[120.69333621631272,14.756670640517285],[120.564145135583,14.396279201713822],[120.0704285014664,14.970869452367097],[119.92092858284613,15.406346747290739],[119.88377322802826,16.363704331929966],[120.28648766487882,16.03462881109533],[120.39004723519176,17.59908112229951],[120.71586714079191,18.50522736253754],[121.32130822152358,18.504064642811016]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"North Korea","sov_a3":"PRK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"North Korea","adm0_a3":"PRK","geou_dif":0,"geounit":"North Korea","gu_a3":"PRK","su_dif":0,"subunit":"North Korea","su_a3":"PRK","brk_diff":0,"name":"Dem. Rep. Korea","name_long":"Dem. Rep. Korea","brk_a3":"PRK","brk_name":"Dem. Rep. Korea","brk_group":null,"abbrev":"N.K.","postal":"KP","formal_en":"Democratic People's Republic of Korea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Korea, Dem. Rep.","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":9,"pop_est":22665345,"gdp_md_est":40000,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KP","iso_a3":"PRK","iso_n3":"408","un_a3":"408","wb_a2":"KP","wb_a3":"PRK","woe_id":-99,"adm0_a3_is":"PRK","adm0_a3_us":"PRK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":15,"long_len":15,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PRK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[130.6400159038524,42.39500946712528],[130.78000735893113,42.22000722916885],[130.40003055228902,42.28000356705971],[129.96594852103726,41.94136790625105],[129.66736209525482,41.60110443782523],[129.70518924369247,40.88282786718433],[129.18811486218,40.66180776627199],[129.01039961152821,40.485436102859815],[128.63336836152672,40.18984691015031],[127.96741417858135,40.02541250259756],[127.53343550019417,39.7568500839767],[127.5021195822253,39.32393077245153],[127.38543419811029,39.213472398427655],[127.78334272675772,39.05089834243742],[128.34971642467661,38.61224294692785],[128.20574588431145,38.37039724380189],[127.780035435091,38.30453563084589],[127.07330854706737,38.2561148137884],[126.68371992401892,37.80477285415118],[126.23733890188176,37.84037791600028],[126.17475874237624,37.74968577732804],[125.6891036316972,37.940010077459014],[125.56843916229569,37.75208873142962],[125.2753304383362,37.669070542952724],[125.24008711151315,37.85722443292744],[124.98103315643398,37.94882090916478],[124.71216067921938,38.10834605564979],[124.98599409393398,38.54847422947968],[125.2219486837787,38.66585724543067],[125.13285851450752,38.84855927179859],[125.3865897970606,39.387957872061165],[125.3211157573468,39.5513845891842],[124.7374821310424,39.66034434667162],[124.26562462778531,39.928493353834156],[125.07994184784063,40.56982371679245],[126.18204511932943,41.10733612727637],[126.86908328664985,41.81656932226619],[127.34378299368302,41.50315176041597],[128.20843305879066,41.46677155208249],[128.0522152039723,41.99428457291795],[129.59666873587952,42.42498179785456],[129.99426720593323,42.985386867843786],[130.6400159038524,42.39500946712528]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Qatar","sov_a3":"QAT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Qatar","adm0_a3":"QAT","geou_dif":0,"geounit":"Qatar","gu_a3":"QAT","su_dif":0,"subunit":"Qatar","su_a3":"QAT","brk_diff":0,"name":"Qatar","name_long":"Qatar","brk_a3":"QAT","brk_name":"Qatar","brk_group":null,"abbrev":"Qatar","postal":"QA","formal_en":"State of Qatar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Qatar","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":4,"pop_est":833285,"gdp_md_est":91330,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"QA","iso_a3":"QAT","iso_n3":"634","un_a3":"634","wb_a2":"QA","wb_a3":"QAT","woe_id":-99,"adm0_a3_is":"QAT","adm0_a3_us":"QAT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"QAT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[50.81010827006958,24.754742539971378],[50.74391076030369,25.482424221289396],[51.01335167827349,26.00699168548419],[51.28646162293606,26.11458201751587],[51.58907881043726,25.80111277923338],[51.60670047384881,25.21567047779874],[51.38960778179063,24.62738597258806],[51.11241539897702,24.556330878186724],[50.81010827006958,24.754742539971378]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Israel","sov_a3":"ISR","adm0_dif":1,"level":2,"type":"Disputed","admin":"Palestine","adm0_a3":"PSX","geou_dif":0,"geounit":"Palestine","gu_a3":"PSX","su_dif":0,"subunit":"Palestine","su_a3":"PSX","brk_diff":0,"name":"Palestine","name_long":"Palestine","brk_a3":"PSX","brk_name":"Palestine","brk_group":null,"abbrev":"Pal.","postal":"PAL","formal_en":"West Bank and Gaza","formal_fr":null,"note_adm0":"Partial self-admin.","note_brk":"Partial self-admin.","name_sort":"Palestine (West Bank and Gaza)","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":8,"pop_est":4119083,"gdp_md_est":11950.77,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PS","iso_a3":"PSE","iso_n3":"275","un_a3":"275","wb_a2":"GZ","wb_a3":"WBG","woe_id":-99,"adm0_a3_is":"PSE","adm0_a3_us":"PSX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"PSE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[35.54566531753454,32.393992011030576],[35.5452519060762,31.78250478772084],[35.397560662586045,31.48908600516758],[34.92740848159457,31.353435370401414],[34.970506626125996,31.616778469360806],[35.22589155451242,31.754341132121766],[34.97464074070933,31.86658234305972],[35.183930291491436,32.53251068778894],[35.54566531753454,32.393992011030576]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Syria","sov_a3":"SYR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Syria","adm0_a3":"SYR","geou_dif":0,"geounit":"Syria","gu_a3":"SYR","su_dif":0,"subunit":"Syria","su_a3":"SYR","brk_diff":0,"name":"Syria","name_long":"Syria","brk_a3":"SYR","brk_name":"Syria","brk_group":null,"abbrev":"Syria","postal":"SYR","formal_en":"Syrian Arab Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Syrian Arab Republic","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":2,"mapcolor13":6,"pop_est":20178485,"gdp_md_est":98830,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SY","iso_a3":"SYR","iso_n3":"760","un_a3":"760","wb_a2":"SY","wb_a3":"SYR","woe_id":-99,"adm0_a3_is":"SYR","adm0_a3_us":"SYR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SYR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[38.792340529136084,33.378686428352225],[36.834062127435544,32.312937526980775],[35.71991824722275,32.709192409794866],[35.700797967274745,32.71601369885738],[35.836396925608625,32.86812327730851],[35.82110070165024,33.2774264592763],[36.066460402172055,33.82491242119255],[36.61175011571589,34.201788641897174],[36.4481942075121,34.59393524834407],[35.99840254084364,34.644914048800004],[35.905023227692226,35.410009467097325],[36.149762811026534,35.82153473565367],[36.417550083163036,36.04061697035506],[36.6853890317318,36.25969920505646],[36.7394942563414,36.81752045343109],[37.06676110204583,36.62303620050062],[38.1677274920242,36.90121043552777],[38.6998913917659,36.71292735447234],[39.52258019385255,36.71605377862599],[40.67325931169569,37.09127635349729],[41.21208947120305,37.074352321921694],[42.34959109881177,37.2298725449041],[41.83706424334096,36.605853786763575],[41.289707472505455,36.35881460219227],[41.383965285005814,35.628316555314356],[41.006158888519934,34.41937226006212],[38.792340529136084,33.378686428352225]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Saudi Arabia","sov_a3":"SAU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saudi Arabia","adm0_a3":"SAU","geou_dif":0,"geounit":"Saudi Arabia","gu_a3":"SAU","su_dif":0,"subunit":"Saudi Arabia","su_a3":"SAU","brk_diff":0,"name":"Saudi Arabia","name_long":"Saudi Arabia","brk_a3":"SAU","brk_name":"Saudi Arabia","brk_group":null,"abbrev":"Saud.","postal":"SA","formal_en":"Kingdom of Saudi Arabia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Saudi Arabia","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":6,"mapcolor13":7,"pop_est":28686633,"gdp_md_est":576500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"SA","iso_a3":"SAU","iso_n3":"682","un_a3":"682","wb_a2":"SA","wb_a3":"SAU","woe_id":-99,"adm0_a3_is":"SAU","adm0_a3_us":"SAU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":12,"long_len":12,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SAU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[42.77933230975097,16.347891343648683],[42.649572788266084,16.774635321514964],[42.347989129410706,17.075805568912003],[42.270887892431226,17.474721787989125],[41.75438195167396,17.833046169500975],[41.22139122901558,18.671599636301206],[40.93934126156654,19.486485297111756],[40.247652215339826,20.17463450772649],[39.80168460466095,20.338862209550054],[39.139399448408284,21.29190481209293],[39.023695916506796,21.986875311770195],[39.06632897314759,22.57965566659027],[38.49277225114008,23.688451036060854],[38.02386030452362,24.07868561451293],[37.483634881344386,24.285494696545015],[37.154817742671185,24.85848297779731],[37.209491408036,25.084541530858104],[36.93162723160259,25.602959499610176],[36.63960371272122,25.82622752532722],[36.249136590323815,26.57013560638488],[35.64018151219639,27.37652049408342],[35.13018680190788,28.06335195567472],[34.63233605320798,28.058546047471566],[34.787778761541944,28.6074272730597],[34.832220493312946,28.957483425404845],[34.95603722508426,29.35655467377884],[36.06894087092206,29.197494615184457],[36.50121422704358,29.5052536076987],[36.74052778498725,29.86528331147619],[37.503581984209035,30.003776150018403],[37.66811974462638,30.3386652694859],[37.998848911294374,30.50849986421313],[37.00216556168101,31.508412990844743],[39.00488569515255,32.01021698661498],[39.19546837744497,32.16100881604267],[40.399994337736246,31.889991766887935],[41.889980910007836,31.190008653278365],[44.70949873228474,29.178891099559383],[46.568713413281756,29.09902517345229],[47.45982181172283,29.002519436147224],[47.708850538937384,28.526062730416143],[48.416094191283946,28.55200429942667],[48.80759484232718,27.689627997339883],[49.29955447774582,27.46121816660981],[49.470913527225655,27.10999929453808],[50.15242231629088,26.689663194275997],[50.212935418504685,26.277026882425375],[50.11330325704594,25.943972276304248],[50.239858839728754,25.608049628190926],[50.52738650900073,25.3278083358721],[50.66055667501689,24.99989553476402],[50.81010827006958,24.754742539971378],[51.11241539897702,24.556330878186724],[51.38960778179063,24.62738597258806],[51.57951867046327,24.245497137951105],[51.61770755392698,24.014219265228828],[52.000733270074335,23.00115448657894],[55.0068030129249,22.496947536707136],[55.20834109886319,22.708329982997046],[55.666659376859826,22.00000112557234],[54.99998172386236,19.999994004796108],[52.00000980002224,19.000003363516058],[49.11667158386487,18.616667588774945],[48.18334354024134,18.166669216377315],[47.46669477721763,17.116681626854884],[47.000004917189756,16.949999294497445],[46.74999433776165,17.283338120996177],[46.366658563020536,17.233315334537636],[45.39999922056875,17.333335069238558],[45.21665123879718,17.43332896572333],[44.06261315285508,17.410358791569593],[43.79151858905192,17.31997671149111],[43.380794305196105,17.57998668056767],[43.11579756040335,17.088440456607373],[43.21837527850275,16.66688996018641],[42.77933230975097,16.347891343648683]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Thailand","sov_a3":"THA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Thailand","adm0_a3":"THA","geou_dif":0,"geounit":"Thailand","gu_a3":"THA","su_dif":0,"subunit":"Thailand","su_a3":"THA","brk_diff":0,"name":"Thailand","name_long":"Thailand","brk_a3":"THA","brk_name":"Thailand","brk_group":null,"abbrev":"Thai.","postal":"TH","formal_en":"Kingdom of Thailand","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Thailand","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":8,"mapcolor13":1,"pop_est":65905410,"gdp_md_est":547400,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TH","iso_a3":"THA","iso_n3":"764","un_a3":"764","wb_a2":"TH","wb_a3":"THA","woe_id":-99,"adm0_a3_is":"THA","adm0_a3_us":"THA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"THA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[102.5849324890267,12.186594956913282],[101.68715783081996,12.645740057826572],[100.83180952352487,12.627084865769206],[100.9784672383692,13.412721665902566],[100.0977974792511,13.406856390837433],[100.01873253784456,12.307001044153354],[99.47892052612363,10.846366685423547],[99.15377241414316,9.963061428258554],[99.22239871622676,9.239255479362427],[99.87383182169813,9.20786204674512],[100.27964684448622,8.295152899606052],[100.45927412313276,7.429572658717177],[101.01732791545273,6.856868597842478],[101.62307905477806,6.74062246340192],[102.14118696493638,6.221636053894628],[101.81428185425798,5.810808417174242],[101.15421878459387,5.691384182147715],[101.07551557821336,6.204867051615921],[100.25959638875696,6.642824815289543],[100.0857568705271,6.46448944745029],[99.69069054565574,6.848212795433597],[99.51964155476963,7.34345388430276],[98.9882528015123,7.907993068875327],[98.503786248776,8.382305202666288],[98.339661899817,7.794511623562386],[98.15000939330581,8.350007432483878],[98.25915001830624,8.973922837759801],[98.55355065307305,9.932959906448545],[99.03812055867398,10.960545762572437],[99.58728600463972,11.892762762901697],[99.19635379435167,12.80474843998867],[99.21201175333609,13.269293728076464],[99.09775516153876,13.827502549693278],[98.43081912637987,14.622027696180835],[98.1920740091914,15.12370250087035],[98.53737592976572,15.308497422746084],[98.90334842325676,16.177824204976115],[98.49376102091135,16.83783559820793],[97.85912275593486,17.567946071843664],[97.37589643757354,18.445437730375815],[97.7977828308044,18.627080389881755],[98.25372399291561,19.708203029860044],[98.95967573445488,19.752980658440947],[99.54330936075931,20.186597601802063],[100.11598758341783,20.417849636308187],[100.54888105672688,20.109237982661128],[100.60629357300316,19.508344427971224],[101.2820146016517,19.462584947176765],[101.03593143107777,18.408928330961615],[101.05954756063517,17.51249725999449],[102.11359175009248,18.109101670804165],[102.41300499879162,17.932781683824288],[102.9987056823877,17.9616946476916],[103.20019209189373,18.309632066312773],[103.95647667848529,18.24095408779688],[104.7169470560925,17.42885895433008],[104.7793205098688,16.44186493577145],[105.58903852745016,15.570316066952858],[105.54433841351769,14.723933620660416],[105.21877689007887,14.273211778210694],[104.28141808473661,14.416743068901367],[102.98842207236163,14.225721136934467],[102.348099399833,13.394247341358223],[102.5849324890267,12.186594956913282]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Tajikistan","sov_a3":"TJK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tajikistan","adm0_a3":"TJK","geou_dif":0,"geounit":"Tajikistan","gu_a3":"TJK","su_dif":0,"subunit":"Tajikistan","su_a3":"TJK","brk_diff":0,"name":"Tajikistan","name_long":"Tajikistan","brk_a3":"TJK","brk_name":"Tajikistan","brk_group":null,"abbrev":"Tjk.","postal":"TJ","formal_en":"Republic of Tajikistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tajikistan","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":7349145,"gdp_md_est":13160,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TJ","iso_a3":"TJK","iso_n3":"762","un_a3":"762","wb_a2":"TJ","wb_a3":"TJK","woe_id":-99,"adm0_a3_is":"TJK","adm0_a3_us":"TJK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TJK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[71.01419803252017,40.24436554621823],[70.64801883329997,39.93575389257117],[69.55960981636852,40.10321137141298],[69.46488691597753,39.5266832545487],[70.54916181832562,39.6041979029865],[71.784693637992,39.27946320246437],[73.6753792662548,39.4312368841056],[73.92885216664644,38.50581533462274],[74.25751427602273,38.60650686294345],[74.86481570831681,38.3788463404816],[74.8299857929521,37.9900070257014],[74.98000247589542,37.419990139305895],[73.9486959166465,37.4215662704908],[73.26005577992501,37.495256862939],[72.63688968291729,37.047558091778356],[72.1930408059624,36.948287665345674],[71.8446382994506,36.73817129164692],[71.44869347523024,37.06564484308051],[71.54191775908478,37.905774441065645],[71.23940392444817,37.95326508234188],[71.34813113799026,38.258905341132156],[70.80682050973289,38.486281643216415],[70.3763041523093,38.13839590102752],[70.27057417184014,37.735164699854025],[70.11657840361033,37.58822276463209],[69.51878543485796,37.60899669041341],[69.19627282092438,37.15114350030743],[68.85944583524594,37.344335842430596],[68.13556237170138,37.0231151393043],[67.82999962755952,37.14499400486468],[68.39203250516596,38.157025254868735],[68.17602501818592,38.901553453113905],[67.44221967964131,39.140143541005486],[67.70142866401736,39.58047842056453],[68.53641645698941,39.53345286717894],[69.0116329283455,40.08615814875666],[69.32949466337283,40.72782440852485],[70.66662234892505,40.96021332454141],[70.45815962105962,40.49649485937029],[70.60140669137269,40.21852733007229],[71.01419803252017,40.24436554621823]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Turkmenistan","sov_a3":"TKM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Turkmenistan","adm0_a3":"TKM","geou_dif":0,"geounit":"Turkmenistan","gu_a3":"TKM","su_dif":0,"subunit":"Turkmenistan","su_a3":"TKM","brk_diff":0,"name":"Turkmenistan","name_long":"Turkmenistan","brk_a3":"TKM","brk_name":"Turkmenistan","brk_group":null,"abbrev":"Turkm.","postal":"TM","formal_en":"Turkmenistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Turkmenistan","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":9,"pop_est":4884887,"gdp_md_est":29780,"pop_year":-99,"lastcensus":1995,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TM","iso_a3":"TKM","iso_n3":"795","un_a3":"795","wb_a2":"TM","wb_a3":"TKM","woe_id":-99,"adm0_a3_is":"TKM","adm0_a3_us":"TKM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":12,"long_len":12,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"TKM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[61.21081709172574,35.650072333309225],[61.123070509694145,36.49159719496624],[60.37763797388387,36.52738312432837],[59.23476199731681,37.412987982730336],[58.4361544126782,37.522309475243794],[57.33043379092898,38.02922943781094],[56.61936608259282,38.121394354803485],[56.18037479027333,37.93512665460742],[55.51157840355191,37.96411713312317],[54.800303989486565,37.392420762678185],[53.92159793479556,37.19891836196126],[53.73551110211252,37.90613617609169],[53.880928582581845,38.95209300389536],[53.101027866432894,39.29057363540713],[53.35780805849123,39.97528636327445],[52.69397260926982,40.03362905533197],[52.915251092343624,40.87652334244473],[53.858139275941134,40.63103445084218],[54.73684533063215,40.95101491959346],[54.008310988181314,41.55121084244742],[53.72171349469059,42.12319143327003],[52.916749708880076,41.86811656347733],[52.81468875510361,41.13537059179471],[52.50245975119615,41.78331553808637],[52.944293247291654,42.11603424739759],[54.07941775901495,42.32410940202083],[54.75534549339263,42.043971462566574],[55.45525109235377,41.25985911718584],[55.96819135928291,41.30864166926936],[57.0963912290791,41.32231008561057],[56.932215203687804,41.826026109375604],[57.78652998233708,42.17055288346552],[58.62901085799146,42.75155101172305],[59.97642215356978,42.22308197689021],[60.08334069198167,41.425146185871405],[60.46595299667069,41.22032664648255],[61.54717898951356,41.266370347654615],[61.88271406438469,41.084856879229406],[62.374260288345,40.05388621679039],[63.51801476426103,39.36325653742564],[64.17022301621677,38.892406724598246],[65.2159989765074,38.40269501398429],[66.54615034370022,37.97468496352687],[66.51860680528867,37.36278432875879],[66.21738488145932,37.39379018813392],[65.74563073106681,37.66116404881207],[65.58894778835784,37.30521678318564],[64.7461051776774,37.111817735333304],[64.5464791197339,36.31207326918427],[63.9828959491587,36.0079574651466],[63.19353844590035,35.857165635718914],[62.9846623065766,35.40404083916762],[62.230651483005886,35.270663967422294],[61.21081709172574,35.650072333309225]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"East Timor","sov_a3":"TLS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"East Timor","adm0_a3":"TLS","geou_dif":0,"geounit":"East Timor","gu_a3":"TLS","su_dif":0,"subunit":"East Timor","su_a3":"TLS","brk_diff":0,"name":"Timor-Leste","name_long":"Timor-Leste","brk_a3":"TLS","brk_name":"Timor-Leste","brk_group":null,"abbrev":"T.L.","postal":"TL","formal_en":"Democratic Republic of Timor-Leste","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Timor-Leste","name_alt":"East Timor","mapcolor7":2,"mapcolor8":2,"mapcolor9":4,"mapcolor13":3,"pop_est":1131612,"gdp_md_est":2520,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TL","iso_a3":"TLS","iso_n3":"626","un_a3":"626","wb_a2":"TP","wb_a3":"TMP","woe_id":-99,"adm0_a3_is":"TLS","adm0_a3_us":"TLS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TLS.geojson"},"geometry":{"type":"Polygon","coordinates":[[[124.96868248911622,-8.892790215697083],[125.08624637258026,-8.65688730228468],[125.94707238169826,-8.432094821815035],[126.64470421763855,-8.398246758663852],[126.95724328013982,-8.273344821814398],[127.33592817597464,-8.397316582882603],[126.96799197805655,-8.668256117388893],[125.9258850444586,-9.106007175333351],[125.08852013560109,-9.393173109579294],[125.07001997284061,-9.089987481322872],[124.96868248911622,-8.892790215697083]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Turkey","sov_a3":"TUR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Turkey","adm0_a3":"TUR","geou_dif":0,"geounit":"Turkey","gu_a3":"TUR","su_dif":0,"subunit":"Turkey","su_a3":"TUR","brk_diff":0,"name":"Turkey","name_long":"Turkey","brk_a3":"TUR","brk_name":"Turkey","brk_group":null,"abbrev":"Tur.","postal":"TR","formal_en":"Republic of Turkey","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Turkey","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":8,"mapcolor13":4,"pop_est":76805524,"gdp_md_est":902700,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TR","iso_a3":"TUR","iso_n3":"792","un_a3":"792","wb_a2":"TR","wb_a3":"TUR","woe_id":-99,"adm0_a3_is":"TUR","adm0_a3_us":"TUR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TUR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[36.91312706884215,41.335358384764305],[38.34766482926452,40.94858612727572],[39.51260664242025,41.102762763018575],[40.373432651538245,41.01367259374734],[41.554084100110714,41.53565623632761],[42.619548781104555,41.58317271581993],[43.58274580259271,41.09214325618257],[43.7526579119685,40.74020091405882],[43.65643639504096,40.25356395116617],[44.400008579288766,40.00500031184231],[44.793989699082005,39.713002631177034],[44.109225294782355,39.428136298168056],[44.4214026222576,38.28128123631453],[44.22575564960053,37.97158437758935],[44.77269900897775,37.17044464776845],[44.29345177590286,37.00151439060635],[43.94225874204736,37.256227525372935],[42.77912560402186,37.38526357680581],[42.34959109881177,37.22987254490411],[41.21208947120303,37.07435232192173],[40.673259311695716,37.09127635349736],[39.52258019385252,36.71605377862602],[38.69989139176593,36.71292735447233],[38.16772749202416,36.90121043552779],[37.06676110204583,36.62303620050062],[36.739494256341374,36.817520453431115],[36.68538903173183,36.259699205056506],[36.41755008316309,36.0406169703551],[36.14976281102659,35.82153473565367],[35.782084995269855,36.274995429014915],[36.160821567537056,36.650605577128374],[35.55093631362834,36.56544281671134],[34.714553256984374,36.795532131490916],[34.02689497247647,36.21996002862397],[32.5091581560641,36.1075637883892],[31.699595167779567,36.64427521417261],[30.62162479017107,36.677864895162315],[30.39109622571712,36.26298065850698],[29.699975620245567,36.144357408181],[28.73290286633539,36.67683136651644],[27.64118655773737,36.658822129862756],[27.048767937943296,37.65336090753601],[26.318218214633045,38.208133246405396],[26.804700148228733,38.98576019953356],[26.17078535330438,39.463612168936464],[27.280019972449395,40.42001373957831],[28.819977654747216,40.46001129817221],[29.24000369641558,41.21999074967269],[31.145933872204434,41.08762156835706],[32.34797936374579,41.73626414648464],[33.51328291192752,42.018960069337304],[35.16770389175187,42.04022492122544],[36.91312706884215,41.335358384764305]]],[[[27.192376743282406,40.690565700842455],[26.35800906749779,40.15199392349649],[26.04335127127254,40.61775360774317],[26.056942172965336,40.82412344010075],[26.29460208507569,40.93626129817417],[26.604195590936282,41.56211456966102],[26.117041863720825,41.82690460872456],[27.135739373490505,42.14148489030131],[27.996720411905414,42.00735871028777],[28.115524529744444,41.622886054036286],[28.988442824018787,41.29993419042819],[28.80643842948675,41.05496206314854],[27.61901736828412,40.99982330989312],[27.192376743282406,40.690565700842455]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Taiwan","sov_a3":"TWN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Taiwan","adm0_a3":"TWN","geou_dif":0,"geounit":"Taiwan","gu_a3":"TWN","su_dif":0,"subunit":"Taiwan","su_a3":"TWN","brk_diff":1,"name":"Taiwan","name_long":"Taiwan","brk_a3":"B77","brk_name":"Taiwan","brk_group":null,"abbrev":"Taiwan","postal":"TW","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Self admin.; Claimed by China","name_sort":"Taiwan","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":7,"mapcolor13":2,"pop_est":22974347,"gdp_md_est":712000,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TW","iso_a3":"TWN","iso_n3":"158","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"TWN","adm0_a3_us":"TWN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"TWN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[121.77781782438993,24.3942735865194],[121.17563235889274,22.790857245367167],[120.74707970589621,21.970571397382113],[120.22008344938367,22.81486094816674],[120.1061885926124,23.556262722258236],[120.69467980355225,24.538450832613737],[121.49504438688876,25.295458889257386],[121.95124393116144,24.997595933527034],[121.77781782438993,24.3942735865194]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Uzbekistan","sov_a3":"UZB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uzbekistan","adm0_a3":"UZB","geou_dif":0,"geounit":"Uzbekistan","gu_a3":"UZB","su_dif":0,"subunit":"Uzbekistan","su_a3":"UZB","brk_diff":0,"name":"Uzbekistan","name_long":"Uzbekistan","brk_a3":"UZB","brk_name":"Uzbekistan","brk_group":null,"abbrev":"Uzb.","postal":"UZ","formal_en":"Republic of Uzbekistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uzbekistan","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":5,"mapcolor13":4,"pop_est":27606007,"gdp_md_est":71670,"pop_year":-99,"lastcensus":1989,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"UZ","iso_a3":"UZB","iso_n3":"860","un_a3":"860","wb_a2":"UZ","wb_a3":"UZB","woe_id":-99,"adm0_a3_is":"UZB","adm0_a3_us":"UZB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"UZB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[66.51860680528867,37.36278432875879],[66.54615034370022,37.97468496352687],[65.2159989765074,38.40269501398429],[64.17022301621677,38.892406724598246],[63.51801476426103,39.36325653742564],[62.374260288345,40.05388621679039],[61.88271406438469,41.084856879229406],[61.54717898951356,41.266370347654615],[60.46595299667069,41.22032664648255],[60.08334069198167,41.425146185871405],[59.97642215356978,42.22308197689021],[58.62901085799146,42.75155101172305],[57.78652998233708,42.17055288346552],[56.932215203687804,41.826026109375604],[57.0963912290791,41.32231008561057],[55.96819135928291,41.30864166926936],[55.928917270741096,44.99585846615911],[58.50312706892847,45.586804307632825],[58.689989048095896,45.50001373959862],[60.23997195825833,44.78403677019473],[61.05831994003245,44.40581696225051],[62.01330040878625,43.50447663021565],[63.18578698105657,43.650074978198006],[64.90082441595928,43.72808055274258],[66.09801232286509,42.99766002051309],[66.02339155463562,41.99464630794398],[66.51064863471572,41.987644151368436],[66.7140470722165,41.1684435084615],[67.98585574735182,41.13599070898222],[68.25989586779562,40.6623245305949],[68.63248294462001,40.66868073176681],[69.07002729683532,41.38424428971237],[70.3889648782208,42.08130768489745],[70.96231489449914,42.26615428320549],[71.25924767444822,42.16771067968946],[70.42002241402821,41.51999827734314],[71.1578585142916,41.14358714452912],[71.87011478057047,41.392900092121266],[73.05541710804917,40.866033026689465],[71.77487511585656,40.14584442805378],[71.01419803252017,40.24436554621823],[70.60140669137269,40.21852733007229],[70.45815962105962,40.49649485937029],[70.66662234892505,40.96021332454141],[69.32949466337283,40.72782440852485],[69.0116329283455,40.08615814875666],[68.53641645698941,39.53345286717894],[67.70142866401736,39.58047842056453],[67.44221967964131,39.140143541005486],[68.17602501818592,38.901553453113905],[68.39203250516596,38.157025254868735],[67.82999962755952,37.14499400486468],[67.07578209825962,37.35614390720929],[66.51860680528867,37.36278432875879]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Vietnam","sov_a3":"VNM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vietnam","adm0_a3":"VNM","geou_dif":0,"geounit":"Vietnam","gu_a3":"VNM","su_dif":0,"subunit":"Vietnam","su_a3":"VNM","brk_diff":0,"name":"Vietnam","name_long":"Vietnam","brk_a3":"VNM","brk_name":"Vietnam","brk_group":null,"abbrev":"Viet.","postal":"VN","formal_en":"Socialist Republic of Vietnam","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vietnam","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":5,"mapcolor13":4,"pop_est":86967524,"gdp_md_est":241700,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VN","iso_a3":"VNM","iso_n3":"704","un_a3":"704","wb_a2":"VN","wb_a3":"VNM","woe_id":-99,"adm0_a3_is":"VNM","adm0_a3_us":"VNM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"VNM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[108.05018029178294,21.55237986906012],[106.7150679870901,20.69685069425202],[105.88168216351903,19.752050482659698],[105.66200564984631,19.05816518806057],[106.426816847766,18.004120998603227],[107.36195356651974,16.69745656988705],[108.26949507042963,16.07974233648615],[108.87710656131748,15.27669057867044],[109.33526981001721,13.426028347217722],[109.20013593957398,11.666859239137764],[108.36612999881545,11.008320624226272],[107.22092858279524,10.364483954301832],[106.40511274620343,9.53083974856932],[105.15826378786511,8.599759629750494],[104.79518517458237,9.241038316276502],[105.0762016133856,9.918490505406808],[104.33433475140347,10.48654368737523],[105.19991499229235,10.889309800658097],[106.24967003786946,10.961811835163587],[105.81052371625313,11.567614650921227],[107.49140302941089,12.337205918827946],[107.61454796756243,13.535530707244206],[107.38272749230109,14.202440904186972],[107.5645251811039,15.202173163305558],[107.3127059265456,15.90853831630318],[106.55600792849569,16.604283962464805],[105.92576216026403,17.48531545660896],[105.09459842328152,18.66697459561108],[103.8965320170267,19.265180975821806],[104.18338789267894,19.62466807706022],[104.8225736836971,19.886641750563882],[104.43500044150805,20.75873322192153],[103.20386111858645,20.766562201413745],[102.75489627483466,21.675137233969465],[102.17043582561358,22.464753119389304],[102.7069922221001,22.708795070887675],[103.50451460166056,22.70375661873921],[104.47685835166448,22.819150092046968],[105.32920942588663,23.352063300056912],[105.81124718630521,22.976892401617903],[106.72540327354845,22.79426788989842],[106.56727339073532,22.21820486092477],[107.04342003787262,21.811898912029914],[108.05018029178294,21.55237986906012]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Suriname","sov_a3":"SUR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Suriname","adm0_a3":"SUR","geou_dif":0,"geounit":"Suriname","gu_a3":"SUR","su_dif":0,"subunit":"Suriname","su_a3":"SUR","brk_diff":0,"name":"Suriname","name_long":"Suriname","brk_a3":"SUR","brk_name":"Suriname","brk_group":null,"abbrev":"Sur.","postal":"SR","formal_en":"Republic of Suriname","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Suriname","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":7,"mapcolor13":6,"pop_est":481267,"gdp_md_est":4254,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SR","iso_a3":"SUR","iso_n3":"740","un_a3":"740","wb_a2":"SR","wb_a3":"SUR","woe_id":-99,"adm0_a3_is":"SUR","adm0_a3_us":"SUR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SUR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-57.14743648947688,5.973149929219161],[-55.9493184067898,5.772877915872002],[-55.841779751190415,5.953125311706059],[-55.033250291551774,6.025291449401664],[-53.958044603070896,5.756548163267765],[-54.47863298197923,4.896755682795586],[-54.399542202356514,4.212611395683466],[-54.00693050801901,3.620037746592558],[-54.181726040246275,3.189779771330421],[-54.2697051662232,2.732391669115046],[-54.52475419779971,2.311848863123785],[-55.09758744975514,2.523748073736613],[-55.569755011606,2.421506252447131],[-55.973322109589375,2.510363877773017],[-56.0733418442903,2.220794989425499],[-55.905600145070885,2.02199575439866],[-55.99569800477175,1.817667141116601],[-56.539385748914555,1.899522609866921],[-57.150097825739905,2.768926906745406],[-57.2814334784097,3.333491929534119],[-57.60156897645786,3.334654649260685],[-58.04469438336068,4.060863552258382],[-57.86020952007869,4.57680105226045],[-57.91428890647214,4.812626451024414],[-57.307245856339506,5.073566595882227],[-57.14743648947688,5.973149929219161]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Falkland Islands","adm0_a3":"FLK","geou_dif":0,"geounit":"Falkland Islands","gu_a3":"FLK","su_dif":0,"subunit":"Falkland Islands","su_a3":"FLK","brk_diff":1,"name":"Falkland Is.","name_long":"Falkland Islands","brk_a3":"B12","brk_name":"Falkland Is.","brk_group":null,"abbrev":"Flk. Is.","postal":"FK","formal_en":"Falkland Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":"Admin. by U.K.; Claimed by Argentina","name_sort":"Falkland Islands","name_alt":"Islas Malvinas","mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":3140,"gdp_md_est":105.1,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"FK","iso_a3":"FLK","iso_n3":"238","un_a3":"238","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"FLK","adm0_a3_us":"FLK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":12,"long_len":16,"abbrev_len":8,"tiny":-99,"homepart":-99,"filename":"FLK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-58.05,-51.9],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Yemen","sov_a3":"YEM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Yemen","adm0_a3":"YEM","geou_dif":0,"geounit":"Yemen","gu_a3":"YEM","su_dif":0,"subunit":"Yemen","su_a3":"YEM","brk_diff":0,"name":"Yemen","name_long":"Yemen","brk_a3":"YEM","brk_name":"Yemen","brk_group":null,"abbrev":"Yem.","postal":"YE","formal_en":"Republic of Yemen","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Yemen, Rep.","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":3,"mapcolor13":11,"pop_est":23822783,"gdp_md_est":55280,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"YE","iso_a3":"YEM","iso_n3":"887","un_a3":"887","wb_a2":"RY","wb_a3":"YEM","woe_id":-99,"adm0_a3_is":"YEM","adm0_a3_us":"YEM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"YEM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[53.10857262554751,16.65105113368895],[52.38520592632588,16.382411200419654],[52.19172936382509,15.93843313238402],[52.1681649107,15.597420355689948],[51.172515089732485,15.175249742081492],[49.57457645040315,14.70876658778275],[48.67923058451416,14.00320241948566],[48.23894738138742,13.948089504446372],[47.938914015500785,14.007233181204427],[47.354453566279716,13.592219753468383],[46.717076450391744,13.39969920496502],[45.87759280781027,13.347764390511685],[45.62505008319987,13.290946153206763],[45.406458774605255,13.026905422411433],[45.14435591002086,12.95393830001531],[44.98953331887441,12.699586900274708],[44.49457645038285,12.721652736863346],[44.175112745954486,12.585950425664876],[43.48295861183713,12.636800035040084],[43.22287112811213,13.220950425667425],[43.25144819516953,13.767583726450852],[43.08794396339806,14.06263031662131],[42.89224531430872,14.802249253798749],[42.60487267433362,15.213335272680595],[42.80501549660005,15.261962795467255],[42.70243777850066,15.718885809791999],[42.823670688657415,15.911742255105265],[42.77933230975097,16.347891343648683],[43.21837527850275,16.66688996018641],[43.11579756040335,17.088440456607373],[43.380794305196105,17.57998668056767],[43.79151858905192,17.31997671149111],[44.06261315285508,17.410358791569593],[45.21665123879718,17.43332896572333],[45.39999922056875,17.333335069238558],[46.366658563020536,17.233315334537636],[46.74999433776165,17.283338120996177],[47.000004917189756,16.949999294497445],[47.46669477721763,17.116681626854884],[48.18334354024134,18.166669216377315],[49.11667158386487,18.616667588774945],[52.00000980002224,19.000003363516058],[52.78218427919205,17.349742336491232],[53.10857262554751,16.65105113368895]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Angola","sov_a3":"AGO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Angola","adm0_a3":"AGO","geou_dif":0,"geounit":"Angola","gu_a3":"AGO","su_dif":0,"subunit":"Angola","su_a3":"AGO","brk_diff":0,"name":"Angola","name_long":"Angola","brk_a3":"AGO","brk_name":"Angola","brk_group":null,"abbrev":"Ang.","postal":"AO","formal_en":"People's Republic of Angola","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Angola","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":6,"mapcolor13":1,"pop_est":12799293,"gdp_md_est":110300,"pop_year":-99,"lastcensus":1970,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AO","iso_a3":"AGO","iso_n3":"024","un_a3":"024","wb_a2":"AO","wb_a3":"AGO","woe_id":-99,"adm0_a3_is":"AGO","adm0_a3_us":"AGO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AGO.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.326528354567046,-5.877470391466218],[16.57317996589614,-6.622644545115094],[16.86019087084523,-7.222297865429979],[17.08999596524717,-7.545688978712476],[17.472970004962292,-8.068551120641656],[18.13422163256905,-7.987677504104866],[18.464175652752687,-7.847014255406477],[19.01675174324967,-7.98824594486014],[19.166613396896082,-7.738183688999725],[19.417502475673217,-7.155428562044278],[20.037723016040218,-7.11636117923166],[20.09162153492062,-6.943090101756951],[20.601822950938327,-6.939317722199689],[20.51474816252653,-7.299605808138665],[21.728110792739756,-7.290872491081316],[21.746455926203367,-7.920084730667114],[21.94913089365204,-8.305900974158305],[21.801801385187957,-8.908706556842986],[21.875181919042404,-9.523707777548566],[22.208753289486424,-9.89479623783653],[22.155268182064333,-11.084801120653779],[22.402798292742432,-10.99307545333569],[22.83734541188477,-11.017621758674338],[23.456790805767465,-10.867863457892483],[23.912215203555746,-10.926826267137542],[24.017893507592614,-11.237298272347118],[23.90415368011824,-11.722281589406336],[24.079905226342902,-12.191296888887308],[23.930922072045377,-12.565847670138822],[24.016136508894704,-12.911046237848552],[21.933886346125945,-12.898437188369357],[21.887842644953878,-16.080310153876894],[22.56247846852429,-16.898451429921835],[23.215048455506093,-17.523116143465952],[21.377176141045595,-17.93063648851971],[18.95618696460363,-17.789094740472237],[18.26330936043422,-17.309950860262006],[14.209706658595051,-17.353100681225712],[14.058501417709039,-17.423380629142656],[13.462362094789967,-16.97121184658874],[12.814081251688407,-16.941342868724078],[12.215461460019384,-17.111668389558062],[11.734198846085148,-17.3018893368245],[11.64009606288161,-16.67314218512921],[11.778537224991567,-15.79381601325069],[12.123580763404448,-14.878316338767931],[12.175618930722266,-14.449143568583892],[12.500095249083017,-13.547699883684402],[12.738478631245442,-13.137905775609935],[13.312913852601838,-12.483630466362513],[13.633721144269828,-12.038644707897191],[13.738727654686926,-11.297863050993143],[13.686379428775297,-10.731075941615842],[13.38732791510216,-10.373578383020728],[13.120987583069875,-9.766897067914115],[12.875369500386569,-9.166933689005488],[12.929061313537801,-8.959091078327575],[13.236432732809874,-8.562629489784342],[12.933040398824316,-7.596538588087753],[12.72829837408392,-6.927122084178805],[12.227347039446443,-6.294447523629372],[12.322431674863566,-6.100092461779653],[12.735171339578699,-5.965682061388478],[13.02486941900699,-5.984388929878108],[13.375597364971895,-5.864241224799557],[16.326528354567046,-5.877470391466218]]],[[[12.436688266660923,-5.684303887559224],[12.18233686692028,-5.789930515163803],[11.914963006242116,-5.037986748884734],[12.318607618873926,-4.606230157086158],[12.62075971848455,-4.438023369976121],[12.995517205465205,-4.781103203961919],[12.631611769265845,-4.991271254092936],[12.468004184629763,-5.248361504744992],[12.436688266660923,-5.684303887559224]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ivory Coast","sov_a3":"CIV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ivory Coast","adm0_a3":"CIV","geou_dif":0,"geounit":"Ivory Coast","gu_a3":"CIV","su_dif":0,"subunit":"Ivory Coast","su_a3":"CIV","brk_diff":0,"name":"Côte d'Ivoire","name_long":"Côte d'Ivoire","brk_a3":"CIV","brk_name":"Côte d'Ivoire","brk_group":null,"abbrev":"I.C.","postal":"CI","formal_en":"Republic of Ivory Coast","formal_fr":"Republic of Cote D'Ivoire","note_adm0":null,"note_brk":null,"name_sort":"Côte d'Ivoire","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":3,"mapcolor13":3,"pop_est":20617068,"gdp_md_est":33850,"pop_year":-99,"lastcensus":1998,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CI","iso_a3":"CIV","iso_n3":"384","un_a3":"384","wb_a2":"CI","wb_a3":"CIV","woe_id":-99,"adm0_a3_is":"CIV","adm0_a3_us":"CIV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":13,"long_len":13,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CIV.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-2.856125047202397,4.994475816259509],[-3.311084357100071,4.984295559098015],[-4.008819545904942,5.179813340674315],[-4.649917364917911,5.168263658057086],[-5.834496222344526,4.993700669775137],[-6.528769090185847,4.705087795425015],[-7.518941209330436,4.338288479017308],[-7.71215938966975,4.364565944837722],[-7.63536821128403,5.188159084489456],[-7.539715135111762,5.313345241716519],[-7.570152553731688,5.707352199725904],[-7.993692592795881,6.126189683451543],[-8.311347622094019,6.193033148621083],[-8.60288021486862,6.46756419517166],[-8.385451626000574,6.911800645368742],[-8.48544552248535,7.39520783124307],[-8.439298468448698,7.686042792181738],[-8.280703497744938,7.687179673692156],[-8.221792364932199,8.123328762235573],[-8.299048631208564,8.316443589710303],[-8.20349890790088,8.455453192575447],[-7.832100389019188,8.575704250518626],[-8.079113735374348,9.376223863152035],[-8.30961646161225,9.789531968622441],[-8.229337124046822,10.1290202905639],[-8.029943610048619,10.206534939001713],[-7.899589809592372,10.297382106970828],[-7.622759161804809,10.147236232946796],[-6.850506557635057,10.138993841996239],[-6.666460944027548,10.430810655148447],[-6.493965013037267,10.411302801958271],[-6.205222947606431,10.524060777219134],[-6.050452032892267,10.096360785355444],[-5.816926235365287,10.222554633012194],[-5.404341599946974,10.370736802609146],[-4.954653286143099,10.152713934769736],[-4.779883592131966,9.821984768101743],[-4.330246954760383,9.61083486575714],[-3.980449184576685,9.8623440617217],[-3.511898972986273,9.90032623945622],[-2.827496303712707,9.642460842319778],[-2.562189500326241,8.219627793811483],[-2.983584967450327,7.379704901555512],[-3.244370083011262,6.250471503113502],[-2.81070146321784,5.38905121502411],[-2.856125047202397,4.994475816259509]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Nepal","sov_a3":"NPL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nepal","adm0_a3":"NPL","geou_dif":0,"geounit":"Nepal","gu_a3":"NPL","su_dif":0,"subunit":"Nepal","su_a3":"NPL","brk_diff":0,"name":"Nepal","name_long":"Nepal","brk_a3":"NPL","brk_name":"Nepal","brk_group":null,"abbrev":"Nepal","postal":"NP","formal_en":"Nepal","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nepal","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":12,"pop_est":28563377,"gdp_md_est":31080,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"NP","iso_a3":"NPL","iso_n3":"524","un_a3":"524","wb_a2":"NP","wb_a3":"NPL","woe_id":-99,"adm0_a3_is":"NPL","adm0_a3_us":"NPL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"NPL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[88.12044070836987,27.876541652939594],[88.04313276566123,27.445818589786825],[88.17480431514092,26.81040517832595],[88.06023766474982,26.41461538340249],[87.22747195836628,26.397898057556077],[86.02439293817918,26.63098460540857],[85.25177859898338,26.72619843190634],[84.6750179381738,27.234901231387536],[83.30424889519955,27.36450572357556],[81.99998742058497,27.925479234319994],[81.05720258985203,28.416095282499043],[80.08842451367627,28.79447011974014],[80.4767212259174,29.72986522065534],[81.11125613802932,30.183480943313402],[81.52580447787474,30.42271698660863],[82.32751264845088,30.115268052688133],[83.33711510613719,29.463731594352193],[83.89899295444673,29.320226141877658],[84.23457970575015,28.839893703724698],[85.01163821812304,28.642773952747344],[85.82331994013151,28.203575954698703],[86.9545170430006,27.974261786403517],[88.12044070836987,27.876541652939594]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Algeria","sov_a3":"DZA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Algeria","adm0_a3":"DZA","geou_dif":0,"geounit":"Algeria","gu_a3":"DZA","su_dif":0,"subunit":"Algeria","su_a3":"DZA","brk_diff":0,"name":"Algeria","name_long":"Algeria","brk_a3":"DZA","brk_name":"Algeria","brk_group":null,"abbrev":"Alg.","postal":"DZ","formal_en":"People's Democratic Republic of Algeria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Algeria","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":6,"mapcolor13":3,"pop_est":34178188,"gdp_md_est":232900,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DZ","iso_a3":"DZA","iso_n3":"012","un_a3":"012","wb_a2":"DZ","wb_a3":"DZA","woe_id":-99,"adm0_a3_is":"DZA","adm0_a3_us":"DZA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DZA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[11.999505649471613,23.47166840259645],[8.572893100629784,21.565660712159143],[5.677565952180686,19.601206976799716],[4.267419467800039,19.155265204337],[3.158133172222705,19.057364203360038],[3.1466610042539,19.69357859952144],[2.683588494486429,19.856230170160114],[2.06099083823392,20.142233384679486],[1.823227573259032,20.610809434486043],[-1.550054897457613,22.792665920497384],[-4.92333736817423,24.974574082941],[-8.68439978680905,27.395744126896005],[-8.665124477564191,27.589479071558227],[-8.665589565454809,27.656425889592356],[-8.674116176782974,28.84128896739658],[-7.059227667661928,29.57922842052453],[-6.060632290053774,29.731699734001694],[-5.242129278982787,30.000443020135588],[-4.859646165374471,30.501187649043842],[-3.690441046554696,30.896951605751152],[-3.647497931320146,31.63729401298067],[-3.068980271812648,31.724497992473214],[-2.616604783529567,32.09434621838615],[-1.30789913573787,32.2628889023061],[-1.124551153966308,32.65152151135713],[-1.388049282222568,32.86401500094131],[-1.733454555661467,33.919712836231994],[-1.792985805661687,34.527918606091205],[-2.169913702798624,35.16839630791668],[-1.208602871089056,35.7148487411871],[-0.127454392894606,35.888662421200806],[0.503876580415209,36.30127289483528],[1.466918572606545,36.605647081034405],[3.161698846050825,36.78390493422522],[4.81575809084913,36.86503693292346],[5.320120070017793,36.71651886651662],[6.261819695672613,37.11065501560674],[7.33038496260397,37.118380642234364],[7.737078484741004,36.885707505840216],[8.420964389691676,36.94642731378316],[8.217824334352315,36.433176988260286],[8.376367628623768,35.47987600355594],[8.140981479534304,34.65514598239379],[7.524481642292244,34.09737641045146],[7.612641635782182,33.34411489514896],[8.430472853233368,32.74833730725595],[8.439102817426118,32.50628489840082],[9.055602654668148,32.10269196220129],[9.482139926805274,30.307556057246188],[9.805634392952411,29.42463837332339],[9.859997999723447,28.959989732371014],[9.683884718472767,28.1441738957792],[9.756128370816782,27.68825857188415],[9.629056023811074,27.14095347748092],[9.716285841519749,26.512206325785698],[9.319410841518163,26.094324856057455],[9.910692579801776,25.36545461679674],[9.94826134607797,24.936953640232517],[10.303846876678362,24.379313259370917],[10.771363559622927,24.56253205006175],[11.560669386449005,24.097909247325518],[11.999505649471613,23.47166840259645]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Egypt","sov_a3":"EGY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Egypt","adm0_a3":"EGY","geou_dif":0,"geounit":"Egypt","gu_a3":"EGY","su_dif":0,"subunit":"Egypt","su_a3":"EGY","brk_diff":0,"name":"Egypt","name_long":"Egypt","brk_a3":"EGY","brk_name":"Egypt","brk_group":null,"abbrev":"Egypt","postal":"EG","formal_en":"Arab Republic of Egypt","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Egypt, Arab Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":7,"mapcolor13":2,"pop_est":83082869,"gdp_md_est":443700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"EG","iso_a3":"EGY","iso_n3":"818","un_a3":"818","wb_a2":"EG","wb_a3":"EGY","woe_id":-99,"adm0_a3_is":"EGY","adm0_a3_us":"EGY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"EGY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[34.9226,29.50133],[34.64174,29.09942],[34.42655,28.34399],[34.15451,27.8233],[33.92136,27.6487],[33.58811,27.97136],[33.13676,28.41765],[32.42323,29.85108],[32.32046,29.76043],[32.73482,28.70523],[33.34876,27.69989],[34.10455,26.14227],[34.47387,25.59856],[34.79507,25.03375],[35.69241,23.92671],[35.49372,23.75237],[35.52598,23.10244],[36.69069,22.20485],[36.86623,22],[32.9,22],[29.02,22],[25,22],[25,25.682499996361],[25,29.23865452953346],[24.70007,30.04419],[24.95762,30.6616],[24.80287,31.08929],[25.16482,31.56915],[26.49533,31.58568],[27.45762,31.32126],[28.45048,31.02577],[28.91353,30.87005],[29.68342,31.18686],[30.09503,31.4734],[30.97693,31.55586],[31.68796,31.4296],[31.96041,30.9336],[32.19247,31.26034],[32.99392,31.02407],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Central African Republic","sov_a3":"CAF","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Central African Republic","adm0_a3":"CAF","geou_dif":0,"geounit":"Central African Republic","gu_a3":"CAF","su_dif":0,"subunit":"Central African Republic","su_a3":"CAF","brk_diff":0,"name":"Central African Rep.","name_long":"Central African Republic","brk_a3":"CAF","brk_name":"Central African Rep.","brk_group":null,"abbrev":"C.A.R.","postal":"CF","formal_en":"Central African Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Central African Republic","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":6,"mapcolor13":9,"pop_est":4511488,"gdp_md_est":3198,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"CF","iso_a3":"CAF","iso_n3":"140","un_a3":"140","wb_a2":"CF","wb_a3":"CAF","woe_id":-99,"adm0_a3_is":"CAF","adm0_a3_us":"CAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":20,"long_len":24,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"CAF.geojson"},"geometry":{"type":"Polygon","coordinates":[[[15.279460483469109,7.421924546737969],[16.10623172370677,7.497087917506505],[16.290561557691888,7.754307359239306],[16.456184523187346,7.734773667832968],[16.705988396886255,7.508327541529979],[17.964929640380888,7.890914008002866],[18.38955488452322,8.281303615751824],[18.911021762780507,8.630894680206353],[18.81200971850927,8.982914536978598],[19.09400800952602,9.07484691002584],[20.05968549976427,9.012706000194854],[21.000868361096167,9.475985215691509],[21.723821648859452,10.567055568885976],[22.231129184668788,10.97188873946051],[22.864165480244225,11.142395127807546],[22.97754357269261,10.71446259199854],[23.554304233502194,10.089255275915308],[23.557249790142826,9.681218166538684],[23.394779087017184,9.265067857292223],[23.459012892355986,8.954285793488893],[23.805813429466752,8.666318874542426],[24.567369012152085,8.229187933785468],[25.11493248871679,7.825104071479174],[25.124130893664727,7.500085150579436],[25.79664798351118,6.979315904158071],[26.213418409945117,6.546603298362072],[26.46590945812323,5.94671743410187],[27.21340905122517,5.550953477394557],[27.37422610851749,5.233944403500061],[27.04406538260471,5.127852688004836],[26.402760857862543,5.150874538590871],[25.650455356557472,5.256087754737123],[25.278798455514302,5.170408229997192],[25.12883344900328,4.927244777847789],[24.805028924262416,4.89724660890235],[24.410531040146253,5.108784084489129],[23.29721398285014,4.609693101414223],[22.841479526468106,4.710126247573484],[22.70412356943629,4.633050848810157],[22.405123732195538,4.029160061047321],[21.659122755630023,4.22434194581372],[20.927591180106276,4.322785549329737],[20.290679152108936,4.691677761245288],[19.467783644293146,5.03152781821278],[18.93231245288476,4.709506130385975],[18.54298221199778,4.201785183118318],[18.45306521980993,3.504385891123349],[17.809900343505262,3.56019643799857],[17.133042433346304,3.728196519379452],[16.537058139724135,3.198254706226279],[16.012852410555354,2.267639675298085],[15.907380812247652,2.557389431158612],[15.86273237474748,3.013537298998983],[15.405395948964383,3.33530060466434],[15.036219516671252,3.851367295747124],[14.950953403389661,4.210389309094921],[14.478372430080467,4.732605495620447],[14.558935988023505,5.03059764243153],[14.459407179429348,5.4517605656103],[14.536560092841112,6.22695872642069],[14.776545444404576,6.408498033062045],[15.279460483469109,7.421924546737969]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Burkina Faso","sov_a3":"BFA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Burkina Faso","adm0_a3":"BFA","geou_dif":0,"geounit":"Burkina Faso","gu_a3":"BFA","su_dif":0,"subunit":"Burkina Faso","su_a3":"BFA","brk_diff":0,"name":"Burkina Faso","name_long":"Burkina Faso","brk_a3":"BFA","brk_name":"Burkina Faso","brk_group":null,"abbrev":"B.F.","postal":"BF","formal_en":"Burkina Faso","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Burkina Faso","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":5,"mapcolor13":11,"pop_est":15746232,"gdp_md_est":17820,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BF","iso_a3":"BFA","iso_n3":"854","un_a3":"854","wb_a2":"BF","wb_a3":"BFA","woe_id":-99,"adm0_a3_is":"BFA","adm0_a3_us":"BFA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BFA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-2.827496303712707,9.642460842319778],[-3.511898972986273,9.90032623945622],[-3.980449184576685,9.8623440617217],[-4.330246954760383,9.61083486575714],[-4.779883592131966,9.821984768101743],[-4.954653286143099,10.152713934769736],[-5.404341599946974,10.370736802609146],[-5.470564947929006,10.951269842976048],[-5.197842576508648,11.37514577885014],[-5.220941941743121,11.713858954307227],[-4.427166103523803,12.542645575404295],[-4.28040503581488,13.228443508349741],[-4.006390753587226,13.472485459848116],[-3.522802700199861,13.337661647998615],[-3.10370683431276,13.541266791228594],[-2.967694464520577,13.79815033615151],[-2.191824510090385,14.246417548067356],[-2.001035122068771,14.559008287000891],[-1.066363491205664,14.973815009007765],[-0.515854458000348,15.116157741755726],[-0.26625729003058,14.924308986872148],[0.374892205414682,14.928908189346132],[0.295646396495101,14.444234930880654],[0.429927605805517,13.988733018443924],[0.993045688490071,13.335749620003824],[1.024103224297477,12.851825669806574],[2.177107781593776,12.625017808477534],[2.154473504249921,11.940150051313337],[1.935985548519881,11.641150214072553],[1.447178175471066,11.547719224488858],[1.243469679376489,11.110510769083461],[0.899563022474069,10.99733938236426],[0.023802524423701,11.018681748900804],[-0.438701544588582,11.09834096927872],[-0.761575893548183,10.936929633015055],[-1.203357713211431,11.009819240762738],[-2.940409308270461,10.962690334512558],[-2.963896246747112,10.395334784380083],[-2.827496303712707,9.642460842319778]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Botswana","sov_a3":"BWA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Botswana","adm0_a3":"BWA","geou_dif":0,"geounit":"Botswana","gu_a3":"BWA","su_dif":0,"subunit":"Botswana","su_a3":"BWA","brk_diff":0,"name":"Botswana","name_long":"Botswana","brk_a3":"BWA","brk_name":"Botswana","brk_group":null,"abbrev":"Bwa.","postal":"BW","formal_en":"Republic of Botswana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Botswana","name_alt":null,"mapcolor7":6,"mapcolor8":5,"mapcolor9":7,"mapcolor13":3,"pop_est":1990876,"gdp_md_est":27060,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BW","iso_a3":"BWA","iso_n3":"072","un_a3":"072","wb_a2":"BW","wb_a3":"BWA","woe_id":-99,"adm0_a3_is":"BWA","adm0_a3_us":"BWA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BWA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[25.649163445750162,-18.53602589281899],[25.85039147309473,-18.714412937090536],[26.164790887158485,-19.29308562589494],[27.296504754350508,-20.391519870691],[27.724747348753255,-20.499058526290387],[27.72722781750326,-20.851801853114715],[28.021370070108617,-21.485975030200585],[28.794656202924212,-21.63945403410745],[29.43218834810904,-22.091312758067588],[28.01723595552525,-22.827753594659075],[27.119409620886245,-23.574323011979775],[26.786406691197413,-24.240690606383485],[26.4857532081233,-24.616326592713104],[25.94165205252216,-24.69637338633322],[25.76584882986521,-25.174845472923675],[25.66466637543772,-25.486816094669713],[25.025170525825786,-25.7196700985769],[24.211266717228792,-25.670215752873574],[23.73356977712271,-25.390129489851613],[23.312096795350186,-25.26868987396572],[22.8242712745149,-25.500458672794768],[22.57953169118059,-25.979447523708146],[22.105968865657868,-26.280256036079138],[21.60589603036939,-26.726533705351756],[20.88960900237174,-26.828542982695915],[20.66647016773544,-26.477453301704923],[20.758609246511835,-25.86813648855145],[20.165725538827186,-24.917961928000768],[19.895767856534434,-24.767790215760588],[19.89545779794068,-21.84915699634787],[20.881134067475866,-21.814327080983148],[20.910641310314535,-18.252218926672022],[21.655040317478978,-18.219146010005225],[23.1968583513393,-17.869038181227786],[23.579005568137717,-18.28126108162006],[24.217364536239213,-17.88934701911849],[24.520705193792537,-17.887124932529936],[25.08444339366457,-17.661815687737374],[25.264225701608012,-17.736539808831417],[25.649163445750162,-18.53602589281899]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Democratic Republic of the Congo","sov_a3":"COD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Democratic Republic of the Congo","adm0_a3":"COD","geou_dif":0,"geounit":"Democratic Republic of the Congo","gu_a3":"COD","su_dif":0,"subunit":"Democratic Republic of the Congo","su_a3":"COD","brk_diff":0,"name":"Dem. Rep. Congo","name_long":"Democratic Republic of the Congo","brk_a3":"COD","brk_name":"Democratic Republic of the Congo","brk_group":null,"abbrev":"D.R.C.","postal":"DRC","formal_en":"Democratic Republic of the Congo","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Congo, Dem. Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":7,"pop_est":68692542,"gdp_md_est":20640,"pop_year":-99,"lastcensus":1984,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"CD","iso_a3":"COD","iso_n3":"180","un_a3":"180","wb_a2":"ZR","wb_a3":"ZAR","woe_id":-99,"adm0_a3_is":"COD","adm0_a3_us":"COD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":15,"long_len":32,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"COD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[30.833859897593808,3.509165961110341],[30.773346795380043,2.339883327642127],[31.174149204235814,2.204465236821264],[30.852670118948055,1.849396470543809],[30.468507521290295,1.58380544677972],[30.086153598762703,1.062312730306289],[29.875778842902495,0.597379868976304],[29.819503208136638,-0.205310153813372],[29.58783776217217,-0.587405694179481],[29.579466180140884,-1.341313164885626],[29.29188683443661,-1.620055840667987],[29.25483483248334,-2.215109958508911],[29.117478875451553,-2.292211195488385],[29.024926385216787,-2.839257907730158],[29.276383904749053,-3.293907159034063],[29.339997592900346,-4.499983412294092],[29.519986606572925,-5.419978936386314],[29.419992710088167,-5.939998874539433],[29.62003217949001,-6.520015150583426],[30.199996779101696,-7.079980970898163],[30.740015496551788,-8.340007419470915],[30.346086053190813,-8.238256524288218],[29.002912225060467,-8.407031752153472],[28.7348665707625,-8.526559340044578],[28.449871046672826,-9.164918308146085],[28.67368167492893,-9.605924981324932],[28.49606977714177,-10.789883721564044],[28.372253045370428,-11.793646742401393],[28.642417433392353,-11.971568698782315],[29.34154788586909,-12.360743910372413],[29.61600141777123,-12.178894545137311],[29.69961388521949,-13.257226657771831],[28.934285922976837,-13.248958428605135],[28.523561639121027,-12.698604424696683],[28.155108676879987,-12.272480564017897],[27.38879886242378,-12.132747491100666],[27.164419793412463,-11.608748467661075],[26.553087599399618,-11.924439792532127],[25.752309604604733,-11.784965101776358],[25.418118116973204,-11.330935967659961],[24.78316979340295,-11.238693536018964],[24.31451622894795,-11.26282642989927],[24.25715538910399,-10.951992689663657],[23.912215203555718,-10.926826267137514],[23.45679080576744,-10.867863457892483],[22.83734541188474,-11.01762175867433],[22.402798292742375,-10.99307545333569],[22.155268182064308,-11.084801120653772],[22.208753289486395,-9.894796237836509],[21.875181919042348,-9.523707777548566],[21.8018013851879,-8.908706556842978],[21.949130893652043,-8.305900974158277],[21.74645592620331,-7.920084730667149],[21.7281107927397,-7.290872491081302],[20.514748162526498,-7.299605808138629],[20.6018229509383,-6.939317722199682],[20.091621534920648,-6.943090101756993],[20.037723016040218,-7.116361179231646],[19.417502475673157,-7.155428562044298],[19.16661339689611,-7.738183688999754],[19.01675174324967,-7.988245944860132],[18.464175652752687,-7.847014255406444],[18.13422163256905,-7.987677504104922],[17.472970004962235,-8.0685511206417],[17.08999596524717,-7.545688978712526],[16.8601908708452,-7.222297865429986],[16.57317996589614,-6.622644545115087],[16.326528354567046,-5.877470391466267],[13.375597364971895,-5.864241224799549],[13.02486941900696,-5.984388929878157],[12.735171339578699,-5.965682061388499],[12.32243167486351,-6.10009246177966],[12.182336866920252,-5.789930515163839],[12.436688266660868,-5.684303887559246],[12.468004184629736,-5.248361504745005],[12.63161176926579,-4.991271254092936],[12.995517205465177,-4.781103203961884],[13.258240187237048,-4.882957452009165],[13.600234816144678,-4.50013844159097],[14.144956088933299,-4.510008640158715],[14.209034864975223,-4.793092136253598],[14.58260379401318,-4.97023894615014],[15.170991652088444,-4.343507175314301],[15.75354007331475,-3.855164890156096],[16.0062895036543,-3.535132744972529],[15.972803175529151,-2.712392266453612],[16.407091912510054,-1.740927015798682],[16.865306837642123,-1.225816338713287],[17.523716261472856,-0.743830254726987],[17.638644646889986,-0.424831638189247],[17.66355268725468,-0.058083998213817],[17.826540154703252,0.288923244626105],[17.774191928791566,0.855658677571085],[17.898835483479587,1.741831976728278],[18.094275750407434,2.365721543788055],[18.39379235197114,2.90044342692822],[18.45306521980993,3.504385891123349],[18.54298221199778,4.201785183118318],[18.93231245288476,4.709506130385975],[19.467783644293146,5.03152781821278],[20.290679152108936,4.691677761245288],[20.927591180106276,4.322785549329737],[21.659122755630023,4.22434194581372],[22.405123732195538,4.029160061047321],[22.70412356943629,4.633050848810157],[22.841479526468106,4.710126247573484],[23.29721398285014,4.609693101414223],[24.410531040146253,5.108784084489129],[24.805028924262416,4.89724660890235],[25.12883344900328,4.927244777847789],[25.278798455514302,5.170408229997192],[25.650455356557472,5.256087754737123],[26.402760857862543,5.150874538590871],[27.04406538260471,5.127852688004836],[27.37422610851749,5.233944403500061],[27.979977247842807,4.408413397637375],[28.428993768026913,4.287154649264494],[28.696677687298802,4.455077215996937],[29.1590784034465,4.389267279473231],[29.71599531425602,4.600804755060025],[29.953500197069474,4.173699042167683],[30.833859897593808,3.509165961110341]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Republic of Congo","sov_a3":"COG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Republic of Congo","adm0_a3":"COG","geou_dif":0,"geounit":"Republic of Congo","gu_a3":"COG","su_dif":0,"subunit":"Republic of Congo","su_a3":"COG","brk_diff":0,"name":"Congo","name_long":"Republic of Congo","brk_a3":"COG","brk_name":"Republic of Congo","brk_group":null,"abbrev":"Rep. Congo","postal":"CG","formal_en":"Republic of Congo","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Congo, Rep.","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":10,"pop_est":4012809,"gdp_md_est":15350,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CG","iso_a3":"COG","iso_n3":"178","un_a3":"178","wb_a2":"CG","wb_a3":"COG","woe_id":-99,"adm0_a3_is":"COG","adm0_a3_us":"COG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":17,"abbrev_len":10,"tiny":-99,"homepart":1,"filename":"COG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[12.995517205465177,-4.781103203961884],[12.620759718484491,-4.438023369976136],[12.318607618873926,-4.606230157086188],[11.91496300624209,-5.037986748884791],[11.093772820691925,-3.978826592630547],[11.855121697648114,-3.426870619321051],[11.478038771214303,-2.765618991714241],[11.820963575903193,-2.514161472181982],[12.495702752338161,-2.391688327650243],[12.575284458067642,-1.948511244315135],[13.109618767965628,-2.428740329603514],[13.99240726080771,-2.4708049454891],[14.299210239324564,-1.998275648612214],[14.425455763413593,-1.333406670744971],[14.316418491277743,-0.552627455247048],[13.843320753645655,0.038757635901149],[14.276265903386957,1.196929836426619],[14.026668735417218,1.395677395021153],[13.282631463278818,1.31418366129688],[13.003113641012078,1.83089630778332],[13.075822381246752,2.267097072759015],[14.33781253424658,2.227874660649491],[15.146341993885244,1.964014797367184],[15.940918816805064,1.727672634280295],[16.012852410555354,2.267639675298085],[16.537058139724135,3.198254706226279],[17.133042433346304,3.728196519379452],[17.809900343505262,3.56019643799857],[18.45306521980993,3.504385891123349],[18.39379235197114,2.90044342692822],[18.094275750407434,2.365721543788055],[17.898835483479587,1.741831976728278],[17.774191928791566,0.855658677571085],[17.826540154703252,0.288923244626105],[17.66355268725468,-0.058083998213817],[17.638644646889986,-0.424831638189247],[17.523716261472856,-0.743830254726987],[16.865306837642123,-1.225816338713287],[16.407091912510054,-1.740927015798682],[15.972803175529151,-2.712392266453612],[16.0062895036543,-3.535132744972529],[15.75354007331475,-3.855164890156096],[15.170991652088444,-4.343507175314301],[14.58260379401318,-4.97023894615014],[14.209034864975223,-4.793092136253598],[14.144956088933299,-4.510008640158715],[13.600234816144678,-4.50013844159097],[13.258240187237048,-4.882957452009165],[12.995517205465177,-4.781103203961884]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Benin","sov_a3":"BEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Benin","adm0_a3":"BEN","geou_dif":0,"geounit":"Benin","gu_a3":"BEN","su_dif":0,"subunit":"Benin","su_a3":"BEN","brk_diff":0,"name":"Benin","name_long":"Benin","brk_a3":"BEN","brk_name":"Benin","brk_group":null,"abbrev":"Benin","postal":"BJ","formal_en":"Republic of Benin","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Benin","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":12,"pop_est":8791832,"gdp_md_est":12830,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BJ","iso_a3":"BEN","iso_n3":"204","un_a3":"204","wb_a2":"BJ","wb_a3":"BEN","woe_id":-99,"adm0_a3_is":"BEN","adm0_a3_us":"BEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BEN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[2.691701694356254,6.258817246928629],[1.865240512712319,6.142157701029731],[1.618950636409238,6.832038072126237],[1.664477573258381,9.12859039960938],[1.46304284018467,9.334624335157088],[1.425060662450136,9.825395412633],[1.077795037448738,10.175606594275024],[0.772335646171484,10.470808213742359],[0.899563022474069,10.99733938236426],[1.243469679376489,11.110510769083461],[1.447178175471066,11.547719224488858],[1.935985548519881,11.641150214072553],[2.154473504249921,11.940150051313337],[2.49016360841793,12.233052069543675],[2.848643019226671,12.235635891158267],[3.611180454125559,11.660167141155966],[3.572216424177469,11.327939357951518],[3.797112257511714,10.734745591673105],[3.600070021182801,10.332186184119408],[3.705438266625919,10.063210354040208],[3.220351596702101,9.4441525333997],[2.912308383810256,9.13760793704432],[2.723792758809509,8.50684540448971],[2.74906253420022,7.870734361192888],[2.691701694356254,6.258817246928629]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cameroon","sov_a3":"CMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cameroon","adm0_a3":"CMR","geou_dif":0,"geounit":"Cameroon","gu_a3":"CMR","su_dif":0,"subunit":"Cameroon","su_a3":"CMR","brk_diff":0,"name":"Cameroon","name_long":"Cameroon","brk_a3":"CMR","brk_name":"Cameroon","brk_group":null,"abbrev":"Cam.","postal":"CM","formal_en":"Republic of Cameroon","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cameroon","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":3,"pop_est":18879301,"gdp_md_est":42750,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CM","iso_a3":"CMR","iso_n3":"120","un_a3":"120","wb_a2":"CM","wb_a3":"CMR","woe_id":-99,"adm0_a3_is":"CMR","adm0_a3_us":"CMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CMR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[13.075822381246752,2.267097072759015],[12.951333855855609,2.32161570882694],[12.359380323952221,2.19281220133945],[11.75166548019979,2.326757513839993],[11.276449008843713,2.261050930180872],[9.649158155972628,2.283866075037736],[9.795195753629457,3.073404445809117],[9.404366896206,3.734526882335202],[8.948115675501072,3.904128933117136],[8.744923943729418,4.35221527751996],[8.488815545290889,4.495617377129918],[8.500287713259695,4.771982937026849],[8.757532993208628,5.479665839047911],[9.233162876023044,6.444490668153334],[9.522705926154401,6.453482367372117],[10.118276808318257,7.038769639509879],[10.497375115611417,7.055357774275564],[11.05878787603035,6.644426784690594],[11.74577436691851,6.981382961449753],[11.839308709366803,7.397042344589436],[12.063946160539558,7.799808457872302],[12.218872104550599,8.305824082874324],[12.753671502339214,8.717762762888995],[12.955467970438974,9.417771714714704],[13.167599724997103,9.640626328973411],[13.308676385153918,10.160362046748928],[13.572949659894562,10.798565985553566],[14.415378859116686,11.572368882692075],[14.468192172918975,11.904751695193411],[14.577177768622533,12.085360826053503],[14.181336297266792,12.483656927943116],[14.213530714584634,12.802035427293347],[14.495787387762844,12.85939626713733],[14.893385857816526,12.219047756392584],[14.9601518083376,11.555574042197224],[14.923564894274959,10.891325181517473],[15.467872755605269,9.98233673750343],[14.909353875394716,9.99212942142273],[14.62720055508106,9.920919297724538],[14.171466098699028,10.021378282099931],[13.954218377344006,9.549494940626685],[14.544466586981768,8.965861314322268],[14.97999555833769,8.796104234243472],[15.120865512765334,8.382150173369423],[15.436091749745769,7.692812404811973],[15.279460483469109,7.421924546737969],[14.776545444404576,6.408498033062045],[14.536560092841112,6.22695872642069],[14.459407179429348,5.4517605656103],[14.558935988023505,5.03059764243153],[14.478372430080467,4.732605495620447],[14.950953403389661,4.210389309094921],[15.036219516671252,3.851367295747124],[15.405395948964383,3.33530060466434],[15.86273237474748,3.013537298998983],[15.907380812247652,2.557389431158612],[16.012852410555354,2.267639675298085],[15.940918816805064,1.727672634280295],[15.146341993885244,1.964014797367184],[14.33781253424658,2.227874660649491],[13.075822381246752,2.267097072759015]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Burundi","sov_a3":"BDI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Burundi","adm0_a3":"BDI","geou_dif":0,"geounit":"Burundi","gu_a3":"BDI","su_dif":0,"subunit":"Burundi","su_a3":"BDI","brk_diff":0,"name":"Burundi","name_long":"Burundi","brk_a3":"BDI","brk_name":"Burundi","brk_group":null,"abbrev":"Bur.","postal":"BI","formal_en":"Republic of Burundi","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Burundi","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":8,"pop_est":8988091,"gdp_md_est":3102,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BI","iso_a3":"BDI","iso_n3":"108","un_a3":"108","wb_a2":"BI","wb_a3":"BDI","woe_id":-99,"adm0_a3_is":"BDI","adm0_a3_us":"BDI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BDI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[29.339997592900346,-4.499983412294092],[29.276383904749053,-3.293907159034063],[29.024926385216787,-2.839257907730158],[29.632176141078588,-2.917857761246097],[29.938359002407942,-2.348486830254238],[30.469696079232985,-2.413857517103458],[30.527677036264464,-2.807631931167535],[30.7430127296247,-3.034284763199686],[30.75226281100495,-3.35932952231557],[30.505559523243566,-3.568567396665365],[30.116332635221173,-4.090137627787243],[29.753512404099922,-4.452389418153281],[29.339997592900346,-4.499983412294092]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Equatorial Guinea","sov_a3":"GNQ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Equatorial Guinea","adm0_a3":"GNQ","geou_dif":0,"geounit":"Equatorial Guinea","gu_a3":"GNQ","su_dif":0,"subunit":"Equatorial Guinea","su_a3":"GNQ","brk_diff":0,"name":"Eq. Guinea","name_long":"Equatorial Guinea","brk_a3":"GNQ","brk_name":"Eq. Guinea","brk_group":null,"abbrev":"Eq. G.","postal":"GQ","formal_en":"Republic of Equatorial Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Equatorial Guinea","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":650702,"gdp_md_est":14060,"pop_year":0,"lastcensus":2002,"gdp_year":0,"economy":"7. Least developed region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"GQ","iso_a3":"GNQ","iso_n3":"226","un_a3":"226","wb_a2":"GQ","wb_a3":"GNQ","woe_id":-99,"adm0_a3_is":"GNQ","adm0_a3_us":"GNQ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":17,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"GNQ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[9.492888624721985,1.010119533691494],[9.305613234096256,1.160911363119183],[9.649158155972628,2.283866075037736],[11.276449008843713,2.261050930180872],[11.285078973036462,1.057661851400013],[9.830284051155644,1.067893784993799],[9.492888624721985,1.010119533691494]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Djibouti","sov_a3":"DJI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Djibouti","adm0_a3":"DJI","geou_dif":0,"geounit":"Djibouti","gu_a3":"DJI","su_dif":0,"subunit":"Djibouti","su_a3":"DJI","brk_diff":0,"name":"Djibouti","name_long":"Djibouti","brk_a3":"DJI","brk_name":"Djibouti","brk_group":null,"abbrev":"Dji.","postal":"DJ","formal_en":"Republic of Djibouti","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Djibouti","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":4,"mapcolor13":8,"pop_est":516055,"gdp_md_est":1885,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DJ","iso_a3":"DJI","iso_n3":"262","un_a3":"262","wb_a2":"DJ","wb_a3":"DJI","woe_id":-99,"adm0_a3_is":"DJI","adm0_a3_us":"DJI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Middle East & North Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DJI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[43.08122602720015,12.699638576707116],[43.31785241066467,12.390148423711025],[43.286381463398925,11.974928290245884],[42.715873650896526,11.735640570518342],[43.14530480324214,11.462039699748857],[42.77685184100096,10.92687856693442],[42.55493000000013,11.105110000000195],[42.31414000000012,11.0342],[41.755570000000205,11.050910000000101],[41.73959000000019,11.355110000000138],[41.66176000000013,11.6312],[42.000000000000114,12.100000000000136],[42.35156000000012,12.542230000000131],[42.77964236834475,12.455415757695675],[43.08122602720015,12.699638576707116]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Libya","sov_a3":"LBY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Libya","adm0_a3":"LBY","geou_dif":0,"geounit":"Libya","gu_a3":"LBY","su_dif":0,"subunit":"Libya","su_a3":"LBY","brk_diff":0,"name":"Libya","name_long":"Libya","brk_a3":"LBY","brk_name":"Libya","brk_group":null,"abbrev":"Libya","postal":"LY","formal_en":"Libya","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Libya","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":11,"pop_est":6310434,"gdp_md_est":88830,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LY","iso_a3":"LBY","iso_n3":"434","un_a3":"434","wb_a2":"LY","wb_a3":"LBY","woe_id":-99,"adm0_a3_is":"LBY","adm0_a3_us":"LBY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"LBY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[14.8513,22.862950000000126],[14.143870883855243,22.49128896737113],[13.581424594790462,23.04050608976928],[11.9995056494717,23.471668402596432],[11.560669386449035,24.097909247325617],[10.771363559622955,24.562532050061748],[10.303846876678449,24.379313259370974],[9.948261346078027,24.936953640232616],[9.910692579801776,25.365454616796796],[9.31941084151822,26.094324856057483],[9.716285841519664,26.51220632578565],[9.629056023811074,27.140953477481048],[9.756128370816782,27.688258571884205],[9.683884718472882,28.144173895779314],[9.859997999723475,28.95998973237107],[9.805634392952356,29.424638373323376],[9.482139926805417,30.307556057246188],[9.970017124072967,30.539324856075382],[10.056575148161699,30.961831366493524],[9.950225050505196,31.376069647745283],[10.636901482799487,31.761420803345683],[10.944789666394513,32.081814683555365],[11.432253452203781,32.36890310315283],[11.48878746913101,33.13699575452324],[12.66331,32.79278],[13.08326,32.87882],[13.91868,32.71196],[15.24563,32.26508],[15.71394,31.37626],[16.61162,31.18218],[18.02109,30.76357],[19.08641,30.26639],[19.57404,30.52582],[20.05335,30.98576],[19.82033,31.75179000000014],[20.13397,32.2382],[20.85452,32.7068],[21.54298,32.8432],[22.89576,32.63858],[23.2368,32.19149],[23.609130000000107,32.18726],[23.9275,32.01667],[24.92114,31.89936],[25.16482,31.56915],[24.80287,31.08929],[24.95762,30.6616],[24.70007,30.04419],[25.00000000000011,29.23865452953356],[25.00000000000011,25.682499996361003],[25.00000000000011,22],[25.00000000000011,20.00304],[23.850000000000136,20],[23.837660000000138,19.580470000000105],[19.84926,21.49509],[15.86085,23.40972],[14.8513,22.862950000000126]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Guinea","sov_a3":"GIN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guinea","adm0_a3":"GIN","geou_dif":0,"geounit":"Guinea","gu_a3":"GIN","su_dif":0,"subunit":"Guinea","su_a3":"GIN","brk_diff":0,"name":"Guinea","name_long":"Guinea","brk_a3":"GIN","brk_name":"Guinea","brk_group":null,"abbrev":"Gin.","postal":"GN","formal_en":"Republic of Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guinea","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":7,"mapcolor13":2,"pop_est":10057975,"gdp_md_est":10600,"pop_year":-99,"lastcensus":1996,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"GN","iso_a3":"GIN","iso_n3":"324","un_a3":"324","wb_a2":"GN","wb_a3":"GIN","woe_id":-99,"adm0_a3_is":"GIN","adm0_a3_us":"GIN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GIN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-8.439298468448698,7.686042792181738],[-8.722123582382123,7.71167430259851],[-8.926064622422004,7.309037380396375],[-9.208786383490844,7.313920803247953],[-9.40334815106975,7.526905218938907],[-9.337279832384581,7.928534450711353],[-9.755342169625834,8.541055202666925],[-10.016566534861255,8.42850393313523],[-10.23009355309128,8.406205552601293],[-10.505477260774668,8.348896389189605],[-10.494315151399633,8.715540676300435],[-10.654770473665891,8.977178452994194],[-10.622395188835041,9.267910061068278],[-10.8391519840833,9.688246161330369],[-11.117481248407328,10.045872911006285],[-11.917277390988659,10.046983954300558],[-12.150338100625005,9.858571682164381],[-12.425928514037565,9.835834051955956],[-12.59671912276221,9.62018830000197],[-12.71195756677308,9.342711696810767],[-13.246550258832515,8.903048610871508],[-13.685153977909792,9.49474376061346],[-14.074044969122282,9.886166897008252],[-14.33007585291237,10.015719712763966],[-14.579698859098258,10.214467271358515],[-14.693231980843505,10.656300767454042],[-14.839553798877944,10.876571560098139],[-15.130311245168171,11.040411688679526],[-14.685687221728898,11.527823798056488],[-14.382191534878729,11.509271958863692],[-14.121406419317779,11.677117010947697],[-13.900799729863776,11.678718980348748],[-13.743160773157411,11.811269029177412],[-13.828271857142125,12.142644151249044],[-13.718743658899513,12.24718557377551],[-13.700476040084325,12.586182969610194],[-13.217818162478238,12.575873521367967],[-12.499050665730564,12.332089952031057],[-12.278599005573438,12.354440008997285],[-12.203564825885634,12.465647691289405],[-11.65830095055793,12.386582749882834],[-11.51394283695059,12.442987575729418],[-11.456168585648271,12.076834214725338],[-11.29757361494451,12.077971096235771],[-11.036555955438258,12.211244615116515],[-10.870829637078215,12.17788747807211],[-10.593223842806282,11.92397532800598],[-10.165213792348837,11.844083563682744],[-9.890992804392013,12.060478623904972],[-9.567911749703214,12.194243068892476],[-9.327616339546012,12.334286200403454],[-9.127473517279583,12.308060411015331],[-8.90526485842453,12.088358059126437],[-8.786099005559464,11.812560939984706],[-8.376304897484914,11.393645941610629],[-8.581305304386774,11.136245632364805],[-8.620321010767128,10.810890814655183],[-8.407310756860028,10.909256903522762],[-8.282357143578281,10.792597357623846],[-8.33537716310974,10.494811916541934],[-8.029943610048619,10.206534939001713],[-8.229337124046822,10.1290202905639],[-8.30961646161225,9.789531968622441],[-8.079113735374348,9.376223863152035],[-7.832100389019188,8.575704250518626],[-8.20349890790088,8.455453192575447],[-8.299048631208564,8.316443589710303],[-8.221792364932199,8.123328762235573],[-8.280703497744938,7.687179673692156],[-8.439298468448698,7.686042792181738]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ghana","sov_a3":"GHA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ghana","adm0_a3":"GHA","geou_dif":0,"geounit":"Ghana","gu_a3":"GHA","su_dif":0,"subunit":"Ghana","su_a3":"GHA","brk_diff":0,"name":"Ghana","name_long":"Ghana","brk_a3":"GHA","brk_name":"Ghana","brk_group":null,"abbrev":"Ghana","postal":"GH","formal_en":"Republic of Ghana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ghana","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":1,"mapcolor13":4,"pop_est":23832495,"gdp_md_est":34200,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GH","iso_a3":"GHA","iso_n3":"288","un_a3":"288","wb_a2":"GH","wb_a3":"GHA","woe_id":-99,"adm0_a3_is":"GHA","adm0_a3_us":"GHA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"GHA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[1.060121697604927,5.928837388528876],[-0.507637905265938,5.343472601742675],[-1.063624640294194,5.000547797053812],[-1.964706590167594,4.710462144383371],[-2.856125047202397,4.994475816259509],[-2.81070146321784,5.38905121502411],[-3.244370083011262,6.250471503113502],[-2.983584967450327,7.379704901555512],[-2.562189500326241,8.219627793811483],[-2.827496303712707,9.642460842319778],[-2.963896246747112,10.395334784380083],[-2.940409308270461,10.962690334512558],[-1.203357713211431,11.009819240762738],[-0.761575893548183,10.936929633015055],[-0.438701544588582,11.09834096927872],[0.023802524423701,11.018681748900804],[-0.049784715159944,10.706917832883931],[0.367579990245389,10.19121287682718],[0.365900506195885,9.465003973829482],[0.461191847342121,8.677222601756014],[0.712029249686878,8.31246450442383],[0.490957472342245,7.411744289576475],[0.570384148774849,6.914358628767189],[0.836931186536333,6.279978745952149],[1.060121697604927,5.928837388528876]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Ethiopia","sov_a3":"ETH","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ethiopia","adm0_a3":"ETH","geou_dif":0,"geounit":"Ethiopia","gu_a3":"ETH","su_dif":0,"subunit":"Ethiopia","su_a3":"ETH","brk_diff":0,"name":"Ethiopia","name_long":"Ethiopia","brk_a3":"ETH","brk_name":"Ethiopia","brk_group":null,"abbrev":"Eth.","postal":"ET","formal_en":"Federal Democratic Republic of Ethiopia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ethiopia","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":1,"mapcolor13":13,"pop_est":85237338,"gdp_md_est":68770,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ET","iso_a3":"ETH","iso_n3":"231","un_a3":"231","wb_a2":"ET","wb_a3":"ETH","woe_id":-99,"adm0_a3_is":"ETH","adm0_a3_us":"ETH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ETH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[37.90607000000011,14.959430000000168],[38.51295,14.50547],[39.0994,14.74064],[39.34061,14.53155],[40.02625000000012,14.51959],[40.8966,14.118640000000141],[41.1552,13.77333],[41.59856,13.452090000000112],[42.00975,12.86582],[42.35156000000012,12.542230000000131],[42.000000000000114,12.100000000000136],[41.66176000000013,11.6312],[41.73959000000019,11.355110000000138],[41.755570000000205,11.050910000000101],[42.31414000000012,11.0342],[42.55493000000013,11.105110000000195],[42.77685184100096,10.92687856693442],[42.55876,10.57258000000013],[42.92812,10.021940000000143],[43.29699000000011,9.540480000000173],[43.67875,9.18358000000012],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.001620000000116],[43.66087,4.95755],[42.76967000000013,4.252590000000225],[42.12861,4.234130000000164],[41.85508309264412,3.918911920483765],[41.17180000000013,3.91909],[40.76848000000012,4.257020000000125],[39.85494000000011,3.838790000000131],[39.55938425876593,3.422060000000215],[38.89251,3.50074],[38.67114,3.61607],[38.436970000000144,3.58851],[38.12091500000014,3.598605],[36.85509323800824,4.447864127672858],[36.15907863285565,4.447864127672858],[35.81744766235362,4.776965663462022],[35.81744766235362,5.338232082790853],[35.298007118233095,5.506],[34.70702,6.59422000000012],[34.25032,6.82607],[34.07510000000019,7.22595],[33.568290000000104,7.71334],[32.954180000000235,7.784970000000102],[33.29480000000012,8.35458],[33.82550000000015,8.37916],[33.97498,8.684560000000147],[33.96162,9.58358],[34.25745,10.63009],[34.73115000000013,10.910170000000107],[34.83163000000013,11.318960000000118],[35.26049,12.08286],[35.863630000000164,12.57828],[36.27022,13.563330000000121],[36.42951,14.42211],[37.59377,14.2131],[37.90607000000011,14.959430000000168]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Gabon","sov_a3":"GAB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Gabon","adm0_a3":"GAB","geou_dif":0,"geounit":"Gabon","gu_a3":"GAB","su_dif":0,"subunit":"Gabon","su_a3":"GAB","brk_diff":0,"name":"Gabon","name_long":"Gabon","brk_a3":"GAB","brk_name":"Gabon","brk_group":null,"abbrev":"Gabon","postal":"GA","formal_en":"Gabonese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Gabon","name_alt":null,"mapcolor7":6,"mapcolor8":2,"mapcolor9":5,"mapcolor13":5,"pop_est":1514993,"gdp_md_est":21110,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GA","iso_a3":"GAB","iso_n3":"266","un_a3":"266","wb_a2":"GA","wb_a3":"GAB","woe_id":-99,"adm0_a3_is":"GAB","adm0_a3_us":"GAB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"GAB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[11.093772820691925,-3.978826592630547],[10.06613528813574,-2.969482517105681],[9.40524539555497,-2.144313246269043],[8.79799563969317,-1.111301364754496],[8.830086704146423,-0.779073581550037],[9.048419630579588,-0.459351494960217],[9.29135053878369,0.268666083167687],[9.492888624721985,1.010119533691494],[9.830284051155644,1.067893784993799],[11.285078973036462,1.057661851400013],[11.276449008843713,2.261050930180872],[11.75166548019979,2.326757513839993],[12.359380323952221,2.19281220133945],[12.951333855855609,2.32161570882694],[13.075822381246752,2.267097072759015],[13.003113641012078,1.83089630778332],[13.282631463278818,1.31418366129688],[14.026668735417218,1.395677395021153],[14.276265903386957,1.196929836426619],[13.843320753645655,0.038757635901149],[14.316418491277743,-0.552627455247048],[14.425455763413593,-1.333406670744971],[14.299210239324564,-1.998275648612214],[13.99240726080771,-2.4708049454891],[13.109618767965628,-2.428740329603514],[12.575284458067642,-1.948511244315135],[12.495702752338161,-2.391688327650243],[11.820963575903193,-2.514161472181982],[11.478038771214303,-2.765618991714241],[11.855121697648114,-3.426870619321051],[11.093772820691925,-3.978826592630547]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Morocco","sov_a3":"MAR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Morocco","adm0_a3":"MAR","geou_dif":0,"geounit":"Morocco","gu_a3":"MAR","su_dif":0,"subunit":"Morocco","su_a3":"MAR","brk_diff":0,"name":"Morocco","name_long":"Morocco","brk_a3":"MAR","brk_name":"Morocco","brk_group":null,"abbrev":"Mor.","postal":"MA","formal_en":"Kingdom of Morocco","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Morocco","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":9,"pop_est":34859364,"gdp_md_est":136600,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MA","iso_a3":"MAR","iso_n3":"504","un_a3":"504","wb_a2":"MA","wb_a3":"MAR","woe_id":-99,"adm0_a3_is":"MAR","adm0_a3_us":"MAR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MAR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-5.193863491222032,35.75518219659085],[-4.591006232105143,35.33071198174565],[-3.640056525070008,35.39985504815198],[-2.604305792644112,35.17909332940112],[-2.169913702798624,35.16839630791671],[-1.792985805661658,34.527918606091305],[-1.73345455566141,33.91971283623212],[-1.388049282222596,32.86401500094137],[-1.124551153966195,32.6515215113572],[-1.30789913573787,32.26288890230603],[-2.616604783529567,32.094346218386164],[-3.068980271812649,31.72449799247329],[-3.647497931320146,31.63729401298082],[-3.690441046554667,30.896951605751152],[-4.859646165374443,30.50118764904388],[-5.242129278982787,30.000443020135574],[-6.060632290053746,29.731699734001808],[-7.059227667661901,29.579228420524657],[-8.674116176782832,28.84128896739665],[-8.665589565454836,27.65642588959247],[-8.817809007940525,27.65642588959247],[-8.817828334986643,27.65642588959247],[-8.794883999049034,27.12069631602256],[-9.413037482124508,27.088476060488546],[-9.735343390328751,26.860944729107416],[-10.189424200877452,26.860944729107416],[-10.55126257978526,26.990807603456886],[-11.392554897496948,26.883423977154393],[-11.718219773800342,26.104091701760808],[-12.030758836301658,26.03086619720312],[-12.50096269372537,24.770116278578143],[-13.891110398809047,23.691009019459386],[-14.221167771857154,22.310163072188345],[-14.630832688850946,21.860939846274874],[-14.750954555713404,21.500600083903805],[-17.00296179856107,21.420734157796687],[-17.020428432675768,21.422310288981635],[-16.973247849993186,21.885744533774954],[-16.58913692876763,22.15823436125009],[-16.261921759495664,22.679339504481277],[-16.3264139469959,23.017768459560898],[-15.982610642958063,23.723358466074103],[-15.426003790742186,24.35913361256104],[-15.089331834360733,24.52026072844697],[-14.824645148161691,25.103532619725314],[-14.800925665739667,25.63626496022229],[-14.439939947964831,26.254418443297652],[-13.773804897506464,26.618892320252286],[-13.139941779014292,27.640147813420494],[-13.121613369914712,27.654147671719812],[-12.618836635783111,28.038185533148663],[-11.688919236690765,28.148643907172584],[-10.900956997104402,28.83214223888092],[-10.399592251008642,29.098585923777787],[-9.564811163765626,29.933573716749862],[-9.814718390329174,31.17773550060906],[-9.434793260119363,32.038096421836485],[-9.300692918321829,32.564679266890636],[-8.65747636558504,33.2402452662424],[-7.654178432638218,33.69706492770251],[-6.91254411460136,34.11047638603745],[-6.244342006851411,35.145865383437524],[-5.929994269219833,35.75998810479399],[-5.193863491222032,35.75518219659085]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Guinea Bissau","sov_a3":"GNB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guinea Bissau","adm0_a3":"GNB","geou_dif":0,"geounit":"Guinea Bissau","gu_a3":"GNB","su_dif":0,"subunit":"Guinea Bissau","su_a3":"GNB","brk_diff":0,"name":"Guinea-Bissau","name_long":"Guinea-Bissau","brk_a3":"GNB","brk_name":"Guinea-Bissau","brk_group":null,"abbrev":"GnB.","postal":"GW","formal_en":"Republic of Guinea-Bissau","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guinea-Bissau","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":4,"pop_est":1533964,"gdp_md_est":904.2,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"GW","iso_a3":"GNB","iso_n3":"624","un_a3":"624","wb_a2":"GW","wb_a3":"GNB","woe_id":-99,"adm0_a3_is":"GNB","adm0_a3_us":"GNB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":13,"long_len":13,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GNB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-15.130311245168171,11.040411688679526],[-15.664180467175527,11.458474025920795],[-16.085214199273565,11.52459402103824],[-16.314786749730203,11.806514797406548],[-16.30894731288123,11.95870189050612],[-16.613838263403277,12.170911159712702],[-16.677451951554573,12.384851589401052],[-16.147716844130585,12.547761542201187],[-15.816574266004254,12.515567124883345],[-15.548476935274008,12.628170070847347],[-13.700476040084325,12.586182969610194],[-13.718743658899513,12.24718557377551],[-13.828271857142125,12.142644151249044],[-13.743160773157411,11.811269029177412],[-13.900799729863776,11.678718980348748],[-14.121406419317779,11.677117010947697],[-14.382191534878729,11.509271958863692],[-14.685687221728898,11.527823798056488],[-15.130311245168171,11.040411688679526]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Kenya","sov_a3":"KEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kenya","adm0_a3":"KEN","geou_dif":0,"geounit":"Kenya","gu_a3":"KEN","su_dif":0,"subunit":"Kenya","su_a3":"KEN","brk_diff":0,"name":"Kenya","name_long":"Kenya","brk_a3":"KEN","brk_name":"Kenya","brk_group":null,"abbrev":"Ken.","postal":"KE","formal_en":"Republic of Kenya","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kenya","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":7,"mapcolor13":3,"pop_est":39002772,"gdp_md_est":61510,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KE","iso_a3":"KEN","iso_n3":"404","un_a3":"404","wb_a2":"KE","wb_a3":"KEN","woe_id":-99,"adm0_a3_is":"KEN","adm0_a3_us":"KEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KEN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[40.993,-0.85829],[41.58513,-1.68325],[40.88477,-2.08255],[40.63785,-2.49979],[40.26304,-2.57309],[40.12119,-3.27768],[39.80006,-3.68116],[39.60489,-4.34653],[39.20222,-4.67677],[37.7669,-3.67712],[37.69869,-3.09699],[34.07262,-1.05982],[33.90371119710453,-0.95],[33.89356896966694,0.109813537861896],[34.18,0.515],[34.6721,1.17694],[35.03599,1.90584],[34.59607,3.05374],[34.47913,3.5556],[34.005,4.249884947362048],[34.62019626785388,4.847122742081988],[35.298007118232974,5.506],[35.817447662353516,5.338232082790797],[35.817447662353516,4.77696566346189],[36.159078632855646,4.447864127672769],[36.85509323800812,4.447864127672769],[38.120915,3.598605],[38.43697,3.58851],[38.67114,3.61607],[38.89251,3.50074],[39.55938425876585,3.42206],[39.85494,3.83879],[40.76848,4.25702],[41.1718,3.91909],[41.85508309264397,3.918911920483727],[40.98105,2.78452],[40.993,-0.85829]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Eritrea","sov_a3":"ERI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Eritrea","adm0_a3":"ERI","geou_dif":0,"geounit":"Eritrea","gu_a3":"ERI","su_dif":0,"subunit":"Eritrea","su_a3":"ERI","brk_diff":0,"name":"Eritrea","name_long":"Eritrea","brk_a3":"ERI","brk_name":"Eritrea","brk_group":null,"abbrev":"Erit.","postal":"ER","formal_en":"State of Eritrea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Eritrea","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":2,"mapcolor13":12,"pop_est":5647168,"gdp_md_est":3945,"pop_year":-99,"lastcensus":1984,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ER","iso_a3":"ERI","iso_n3":"232","un_a3":"232","wb_a2":"ER","wb_a3":"ERI","woe_id":-99,"adm0_a3_is":"ERI","adm0_a3_us":"ERI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ERI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[42.35156000000012,12.542230000000131],[42.00975,12.86582],[41.59856,13.452090000000112],[41.15519371924984,13.773319810435224],[40.8966,14.118640000000141],[40.026218702969175,14.519579169162284],[39.34061,14.53155],[39.0994,14.74064],[38.51295,14.50547],[37.90607000000011,14.959430000000168],[37.59377,14.2131],[36.42951,14.42211],[36.32318891779812,14.82248057704106],[36.75386030451858,16.29187409104429],[36.852530000000115,16.95655],[37.16747,17.263140000000135],[37.90400000000011,17.42754],[38.410089959473225,17.99830739997031],[38.990622999840014,16.84062612555169],[39.26611006038803,15.922723496967249],[39.814293654140215,15.435647284400318],[41.17927493669765,14.491079616753211],[41.73495161313235,13.921036892141558],[42.27683068214486,13.343992010954423],[42.58957645037526,13.000421250861905],[43.08122602720015,12.699638576707116],[42.77964236834475,12.455415757695675],[42.35156000000012,12.542230000000131]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Namibia","sov_a3":"NAM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Namibia","adm0_a3":"NAM","geou_dif":0,"geounit":"Namibia","gu_a3":"NAM","su_dif":0,"subunit":"Namibia","su_a3":"NAM","brk_diff":0,"name":"Namibia","name_long":"Namibia","brk_a3":"NAM","brk_name":"Namibia","brk_group":null,"abbrev":"Nam.","postal":"NA","formal_en":"Republic of Namibia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Namibia","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":1,"mapcolor13":7,"pop_est":2108665,"gdp_md_est":13250,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NA","iso_a3":"NAM","iso_n3":"516","un_a3":"516","wb_a2":"NA","wb_a3":"NAM","woe_id":-99,"adm0_a3_is":"NAM","adm0_a3_us":"NAM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NAM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.344976840895242,-28.576705010697697],[15.601818068105814,-27.8212472470228],[15.21047244635946,-27.090955905874047],[14.989710727608552,-26.117371921495156],[14.743214145576331,-25.39292001719538],[14.408144158595833,-23.853014011329847],[14.385716586981149,-22.65665292734069],[14.257714064194175,-22.111208184499954],[13.86864220546866,-21.699036960539978],[13.35249799973744,-20.872834161057504],[12.826845330464492,-19.673165785401665],[12.608564080463621,-19.0453488094877],[11.794918654028066,-18.069129327061916],[11.734198846085121,-17.301889336824473],[12.215461460019355,-17.111668389558083],[12.814081251688407,-16.94134286872407],[13.462362094789967,-16.971211846588773],[14.05850141770901,-17.423380629142663],[14.209706658595024,-17.35310068122572],[18.26330936043416,-17.309950860262006],[18.956186964603603,-17.789094740472258],[21.377176141045567,-17.930636488519696],[23.215048455506064,-17.52311614346598],[24.033861525170778,-17.295843194246324],[24.682349074001507,-17.353410739819473],[25.07695031098226,-17.57882333747662],[25.08444339366457,-17.661815687737374],[24.520705193792537,-17.887124932529936],[24.217364536239213,-17.88934701911849],[23.579005568137717,-18.28126108162006],[23.1968583513393,-17.869038181227786],[21.655040317478978,-18.219146010005225],[20.910641310314535,-18.252218926672022],[20.881134067475866,-21.814327080983148],[19.89545779794068,-21.84915699634787],[19.895767856534434,-24.767790215760588],[19.894734327888614,-28.461104831660776],[19.002127312911085,-28.972443129188864],[18.464899122804752,-29.04546192801728],[17.83615197110953,-28.85637786226132],[17.387497185951503,-28.78351409272978],[17.218928663815404,-28.35594329194681],[16.824017368240902,-28.082161553664466],[16.344976840895242,-28.576705010697697]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Liberia","sov_a3":"LBR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Liberia","adm0_a3":"LBR","geou_dif":0,"geounit":"Liberia","gu_a3":"LBR","su_dif":0,"subunit":"Liberia","su_a3":"LBR","brk_diff":0,"name":"Liberia","name_long":"Liberia","brk_a3":"LBR","brk_name":"Liberia","brk_group":null,"abbrev":"Liberia","postal":"LR","formal_en":"Republic of Liberia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Liberia","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":4,"mapcolor13":9,"pop_est":3441790,"gdp_md_est":1526,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"LR","iso_a3":"LBR","iso_n3":"430","un_a3":"430","wb_a2":"LR","wb_a3":"LBR","woe_id":-99,"adm0_a3_is":"LBR","adm0_a3_us":"LBR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"LBR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-7.71215938966975,4.364565944837722],[-7.974107224957251,4.355755113131963],[-9.004793667018674,4.8324185245922],[-9.913420376006684,5.593560695819207],[-10.765383876986643,6.140710760925558],[-11.438779466182055,6.785916856305747],[-11.19980180504828,7.105845648624737],[-11.146704270868383,7.396706447779536],[-10.69559485517648,7.939464016141087],[-10.23009355309128,8.406205552601293],[-10.016566534861255,8.42850393313523],[-9.755342169625834,8.541055202666925],[-9.337279832384581,7.928534450711353],[-9.40334815106975,7.526905218938907],[-9.208786383490844,7.313920803247953],[-8.926064622422004,7.309037380396375],[-8.722123582382123,7.71167430259851],[-8.439298468448698,7.686042792181738],[-8.48544552248535,7.39520783124307],[-8.385451626000574,6.911800645368742],[-8.60288021486862,6.46756419517166],[-8.311347622094019,6.193033148621083],[-7.993692592795881,6.126189683451543],[-7.570152553731688,5.707352199725904],[-7.539715135111762,5.313345241716519],[-7.63536821128403,5.188159084489456],[-7.71215938966975,4.364565944837722]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Gambia","sov_a3":"GMB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Gambia","adm0_a3":"GMB","geou_dif":0,"geounit":"Gambia","gu_a3":"GMB","su_dif":0,"subunit":"Gambia","su_a3":"GMB","brk_diff":0,"name":"Gambia","name_long":"The Gambia","brk_a3":"GMB","brk_name":"Gambia","brk_group":null,"abbrev":"Gambia","postal":"GM","formal_en":"Republic of the Gambia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Gambia, The","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":1782893,"gdp_md_est":2272,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"GM","iso_a3":"GMB","iso_n3":"270","un_a3":"270","wb_a2":"GM","wb_a3":"GMB","woe_id":-99,"adm0_a3_is":"GMB","adm0_a3_us":"GMB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":10,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"GMB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-16.841524624081273,13.15139394780256],[-16.713728807023468,13.594958604379853],[-15.62459632003994,13.62358734786956],[-15.39877031092446,13.86036876063092],[-15.08173539881382,13.876491807505984],[-14.687030808968487,13.630356960499784],[-14.376713833055788,13.625680243377372],[-14.046992356817482,13.79406789800045],[-13.844963344772408,13.505041612192002],[-14.277701788784553,13.280585028532242],[-14.712197231494626,13.298206691943777],[-15.141163295949466,13.509511623585238],[-15.511812506562935,13.278569647672867],[-15.691000535534995,13.270353094938455],[-15.931295945692211,13.130284125211332],[-16.841524624081273,13.15139394780256]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":7,"sovereignt":"Western Sahara","sov_a3":"SAH","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Western Sahara","adm0_a3":"SAH","geou_dif":0,"geounit":"Western Sahara","gu_a3":"SAH","su_dif":0,"subunit":"Western Sahara","su_a3":"SAH","brk_diff":1,"name":"W. Sahara","name_long":"Western Sahara","brk_a3":"B28","brk_name":"W. Sahara","brk_group":null,"abbrev":"W. Sah.","postal":"WS","formal_en":"Sahrawi Arab Democratic Republic","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Morocco","name_sort":"Western Sahara","name_alt":null,"mapcolor7":4,"mapcolor8":7,"mapcolor9":4,"mapcolor13":4,"pop_est":-99,"gdp_md_est":-99,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"EH","iso_a3":"ESH","iso_n3":"732","un_a3":"732","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"MAR","adm0_a3_us":"SAH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":9,"long_len":14,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"ESH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-8.794883999049077,27.120696316022503],[-8.817828334986672,27.656425889592356],[-8.665589565454809,27.656425889592356],[-8.665124477564191,27.589479071558227],[-8.68439978680905,27.395744126896005],[-8.6872936670174,25.881056219988906],[-11.96941891117116,25.933352769468268],[-11.937224493853321,23.374594224536168],[-12.874221564169575,23.284832261645178],[-13.118754441774712,22.771220201096256],[-12.929101935263532,21.32707062426756],[-16.845193650773993,21.33332347257488],[-17.063423224342568,20.999752102130827],[-17.020428432675743,21.42231028898148],[-17.00296179856109,21.420734157796577],[-14.750954555713534,21.500600083903663],[-14.630832688851072,21.8609398462749],[-14.221167771857251,22.31016307218816],[-13.891110398809047,23.691009019459305],[-12.50096269372537,24.7701162785782],[-12.030758836301615,26.030866197203043],[-11.718219773800357,26.104091701760623],[-11.392554897496979,26.883423977154365],[-10.551262579785273,26.990807603456886],[-10.189424200877582,26.860944729107405],[-9.735343390328879,26.860944729107405],[-9.413037482124466,27.088476060488517],[-8.794883999049077,27.120696316022503]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sudan","sov_a3":"SDN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sudan","adm0_a3":"SDN","geou_dif":0,"geounit":"Sudan","gu_a3":"SDN","su_dif":0,"subunit":"Sudan","su_a3":"SDN","brk_diff":0,"name":"Sudan","name_long":"Sudan","brk_a3":"SDN","brk_name":"Sudan","brk_group":null,"abbrev":"Sudan","postal":"SD","formal_en":"Republic of the Sudan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sudan","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":4,"mapcolor13":1,"pop_est":25946220,"gdp_md_est":88080,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SD","iso_a3":"SDN","iso_n3":"729","un_a3":"729","wb_a2":"SD","wb_a3":"SDN","woe_id":-99,"adm0_a3_is":"SDN","adm0_a3_us":"SDN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SDN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[33.963392794971185,9.464285229420625],[33.82496348090751,9.484060845715362],[33.842130853028145,9.981914637215993],[33.72195924818311,10.325262079630193],[33.20693808456178,10.720111638406593],[33.086766479716744,11.441141267476496],[33.20693808456178,12.179338268667093],[32.743419037302544,12.248007757149992],[32.67474954881965,12.02483191958072],[32.073891524594785,11.973329803218519],[32.31423473428475,11.68148447716652],[32.400071594888345,11.080626452941488],[31.850715687025517,10.531270545078826],[31.35286189552488,9.810240916008695],[30.83784073190338,9.70723668328452],[29.99663949798855,10.290927335388687],[29.61895731133285,10.084918869940225],[29.515953078608614,9.793073543888056],[29.000931914987174,9.60423245056029],[28.966597170745782,9.398223985111654],[27.970889587744352,9.398223985111654],[27.833550610778783,9.60423245056029],[27.112520981708883,9.638567194801624],[26.752006167173818,9.466893473594496],[26.477328213242515,9.552730334198088],[25.962307049621018,10.136420986302424],[25.790633328413946,10.411098940233728],[25.069603699343986,10.273759963267992],[24.794925745412684,9.810240916008695],[24.53741516360202,8.91753756573172],[24.19406772118765,8.728696472403897],[23.886979580860665,8.619729712933065],[23.805813429466752,8.666318874542526],[23.459012892355986,8.95428579348902],[23.394779087017298,9.26506785729225],[23.55724979014292,9.68121816653877],[23.554304233502194,10.08925527591532],[22.97754357269275,10.71446259199854],[22.864165480244253,11.142395127807617],[22.87622,11.384610000000123],[22.50869,11.67936],[22.49762,12.26024],[22.28801,12.64605],[21.93681,12.588180000000136],[22.03759,12.95546],[22.29658,13.37232],[22.18329,13.78648],[22.51202,14.09318],[22.30351,14.32682],[22.56795000000011,14.944290000000137],[23.024590000000103,15.68072],[23.886890000000108,15.61084],[23.837660000000138,19.580470000000105],[23.850000000000136,20],[25.00000000000011,20.00304],[25.00000000000011,22],[29.02,22],[32.9,22],[36.86623,22],[37.1887200000001,21.01885],[36.96941,20.83744000000013],[37.11470000000014,19.80796],[37.4817900000001,18.61409],[37.86276,18.36786],[38.410089959473225,17.99830739997031],[37.90400000000011,17.42754],[37.16747,17.263140000000135],[36.852530000000115,16.95655],[36.75389,16.29186],[36.32322,14.82249],[36.42951,14.42211],[36.27022,13.563330000000121],[35.86363,12.57828],[35.26049,12.08286],[34.83163000000013,11.318960000000118],[34.73115000000013,10.910170000000107],[34.25745,10.63009],[33.96162,9.58358],[33.963392794971185,9.464285229420625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Madagascar","sov_a3":"MDG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Madagascar","adm0_a3":"MDG","geou_dif":0,"geounit":"Madagascar","gu_a3":"MDG","su_dif":0,"subunit":"Madagascar","su_a3":"MDG","brk_diff":0,"name":"Madagascar","name_long":"Madagascar","brk_a3":"MDG","brk_name":"Madagascar","brk_group":null,"abbrev":"Mad.","postal":"MG","formal_en":"Republic of Madagascar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Madagascar","name_alt":null,"mapcolor7":6,"mapcolor8":5,"mapcolor9":2,"mapcolor13":3,"pop_est":20653556,"gdp_md_est":20130,"pop_year":-99,"lastcensus":1993,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MG","iso_a3":"MDG","iso_n3":"450","un_a3":"450","wb_a2":"MG","wb_a3":"MDG","woe_id":-99,"adm0_a3_is":"MDG","adm0_a3_us":"MDG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MDG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[49.54351891459575,-12.469832858940554],[49.80898074727909,-12.895284925999555],[50.056510857957164,-13.555761407121985],[50.21743126811407,-14.758788750876795],[50.47653689962553,-15.226512139550541],[50.377111443895956,-15.706069431219126],[50.20027469259318,-16.000263360256767],[49.86060550313868,-15.414252618066916],[49.67260664246086,-15.710203545802479],[49.863344354050156,-16.451036879138776],[49.77456424337271,-16.875042006093597],[49.49861209493412,-17.106035658438273],[49.435618523970305,-17.953064060134366],[49.041792433473944,-19.118781019774445],[48.54854088724801,-20.496888116134127],[47.93074913919867,-22.391501153251085],[47.54772342305131,-23.781958916928517],[47.095761346226595,-24.941629733990453],[46.282477654817086,-25.178462823184105],[45.409507684110444,-25.60143442149309],[44.83357384621755,-25.34610116953894],[44.03972049334976,-24.988345228782308],[43.76376834491117,-24.460677178649988],[43.697777540874455,-23.574116306250602],[43.345654331237625,-22.776903985283873],[43.254187046081,-22.057413018484123],[43.43329756040464,-21.336475111580185],[43.893682895692926,-21.163307386970125],[43.896370070172104,-20.830459486578174],[44.37432539243966,-20.07236622485639],[44.46439741392439,-19.435454196859048],[44.23242190936617,-18.961994724200906],[44.04297610858415,-18.33138722094317],[43.96308434426091,-17.409944756746782],[44.31246870298628,-16.850495700754955],[44.4465173683514,-16.216219170804507],[44.94493655780653,-16.1793738745804],[45.50273196796499,-15.97437346767854],[45.87299360533626,-15.793454278224685],[46.31224327981721,-15.780018405828798],[46.882182651564285,-15.210182386946313],[47.70512983581235,-14.594302666891764],[48.005214878131255,-14.091232598530375],[47.869047479042166,-13.663868503476586],[48.29382775248138,-13.784067884987486],[48.84506025573878,-13.089174899958664],[48.86350874206698,-12.48786793381042],[49.194651320193316,-12.04055673589197],[49.54351891459575,-12.469832858940554]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mali","sov_a3":"MLI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mali","adm0_a3":"MLI","geou_dif":0,"geounit":"Mali","gu_a3":"MLI","su_dif":0,"subunit":"Mali","su_a3":"MLI","brk_diff":0,"name":"Mali","name_long":"Mali","brk_a3":"MLI","brk_name":"Mali","brk_group":null,"abbrev":"Mali","postal":"ML","formal_en":"Republic of Mali","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mali","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":7,"pop_est":12666987,"gdp_md_est":14590,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ML","iso_a3":"MLI","iso_n3":"466","un_a3":"466","wb_a2":"ML","wb_a3":"MLI","woe_id":-99,"adm0_a3_is":"MLI","adm0_a3_us":"MLI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MLI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-12.170750291380301,14.616834214735505],[-11.834207526079467,14.79909699142894],[-11.666078253617854,15.388208319556298],[-11.349095017939504,15.411256008358478],[-10.650791388379417,15.132745876521426],[-10.086846482778212,15.330485744686273],[-9.700255092802706,15.264107367407362],[-9.55023840985939,15.486496893775437],[-5.537744309908447,15.501689764869257],[-5.315277268891933,16.20185374599184],[-5.488522508150438,16.325102037007966],[-5.971128709324248,20.64083344164763],[-6.453786586930335,24.956590684503425],[-4.92333736817423,24.974574082941],[-1.550054897457613,22.792665920497384],[1.823227573259032,20.610809434486043],[2.06099083823392,20.142233384679486],[2.683588494486429,19.856230170160114],[3.1466610042539,19.69357859952144],[3.158133172222705,19.057364203360038],[4.267419467800039,19.155265204337],[4.270209995143801,16.852227484601215],[3.723421665063483,16.184283759012615],[3.638258904646477,15.568119818580454],[2.749992709981484,15.409524847876696],[1.385528191746858,15.323561102759172],[1.01578331869851,14.968182277887948],[0.374892205414682,14.928908189346132],[-0.26625729003058,14.924308986872148],[-0.515854458000348,15.116157741755726],[-1.066363491205664,14.973815009007765],[-2.001035122068771,14.559008287000891],[-2.191824510090385,14.246417548067356],[-2.967694464520577,13.79815033615151],[-3.10370683431276,13.541266791228594],[-3.522802700199861,13.337661647998615],[-4.006390753587226,13.472485459848116],[-4.28040503581488,13.228443508349741],[-4.427166103523803,12.542645575404295],[-5.220941941743121,11.713858954307227],[-5.197842576508648,11.37514577885014],[-5.470564947929006,10.951269842976048],[-5.404341599946974,10.370736802609146],[-5.816926235365287,10.222554633012194],[-6.050452032892267,10.096360785355444],[-6.205222947606431,10.524060777219134],[-6.493965013037267,10.411302801958271],[-6.666460944027548,10.430810655148447],[-6.850506557635057,10.138993841996239],[-7.622759161804809,10.147236232946796],[-7.899589809592372,10.297382106970828],[-8.029943610048619,10.206534939001713],[-8.33537716310974,10.494811916541934],[-8.282357143578281,10.792597357623846],[-8.407310756860028,10.909256903522762],[-8.620321010767128,10.810890814655183],[-8.581305304386774,11.136245632364805],[-8.376304897484914,11.393645941610629],[-8.786099005559464,11.812560939984706],[-8.90526485842453,12.088358059126437],[-9.127473517279583,12.308060411015331],[-9.327616339546012,12.334286200403454],[-9.567911749703214,12.194243068892476],[-9.890992804392013,12.060478623904972],[-10.165213792348837,11.844083563682744],[-10.593223842806282,11.92397532800598],[-10.870829637078215,12.17788747807211],[-11.036555955438258,12.211244615116515],[-11.29757361494451,12.077971096235771],[-11.456168585648271,12.076834214725338],[-11.51394283695059,12.442987575729418],[-11.467899135778524,12.754518947800975],[-11.55339779300543,13.141213690641067],[-11.927716030311615,13.422075100147394],[-12.12488745772126,13.994727484589788],[-12.170750291380301,14.616834214735505]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mauritania","sov_a3":"MRT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mauritania","adm0_a3":"MRT","geou_dif":0,"geounit":"Mauritania","gu_a3":"MRT","su_dif":0,"subunit":"Mauritania","su_a3":"MRT","brk_diff":0,"name":"Mauritania","name_long":"Mauritania","brk_a3":"MRT","brk_name":"Mauritania","brk_group":null,"abbrev":"Mrt.","postal":"MR","formal_en":"Islamic Republic of Mauritania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mauritania","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":2,"mapcolor13":1,"pop_est":3129486,"gdp_md_est":6308,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MR","iso_a3":"MRT","iso_n3":"478","un_a3":"478","wb_a2":"MR","wb_a3":"MRT","woe_id":-99,"adm0_a3_is":"MRT","adm0_a3_us":"MRT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MRT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-12.170750291380301,14.616834214735505],[-12.830658331747516,15.303691514542946],[-13.43573767745306,16.03938304286619],[-14.099521450242179,16.304302273010492],[-14.577347581428981,16.59826365810281],[-15.135737270558817,16.587282416240782],[-15.62366614425869,16.369337063049812],[-16.12069007004193,16.455662543193384],[-16.463098110407884,16.13503611903846],[-16.549707810929064,16.67389211676196],[-16.270551723688357,17.166962795474873],[-16.14634741867485,18.108481553616656],[-16.256883307347167,19.096715806550307],[-16.37765112961327,19.593817246981985],[-16.277838100641517,20.0925206568147],[-16.536323614965468,20.567866319251493],[-17.063423224342568,20.999752102130827],[-16.845193650773993,21.33332347257488],[-12.929101935263532,21.32707062426756],[-13.118754441774712,22.771220201096256],[-12.874221564169575,23.284832261645178],[-11.937224493853321,23.374594224536168],[-11.96941891117116,25.933352769468268],[-8.6872936670174,25.881056219988906],[-8.68439978680905,27.395744126896005],[-4.92333736817423,24.974574082941],[-6.453786586930335,24.956590684503425],[-5.971128709324248,20.64083344164763],[-5.488522508150438,16.325102037007966],[-5.315277268891933,16.20185374599184],[-5.537744309908447,15.501689764869257],[-9.55023840985939,15.486496893775437],[-9.700255092802706,15.264107367407362],[-10.086846482778212,15.330485744686273],[-10.650791388379417,15.132745876521426],[-11.349095017939504,15.411256008358478],[-11.666078253617854,15.388208319556298],[-11.834207526079467,14.79909699142894],[-12.170750291380301,14.616834214735505]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Lesotho","sov_a3":"LSO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lesotho","adm0_a3":"LSO","geou_dif":0,"geounit":"Lesotho","gu_a3":"LSO","su_dif":0,"subunit":"Lesotho","su_a3":"LSO","brk_diff":0,"name":"Lesotho","name_long":"Lesotho","brk_a3":"LSO","brk_name":"Lesotho","brk_group":null,"abbrev":"Les.","postal":"LS","formal_en":"Kingdom of Lesotho","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lesotho","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":8,"pop_est":2130819,"gdp_md_est":3293,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LS","iso_a3":"LSO","iso_n3":"426","un_a3":"426","wb_a2":"LS","wb_a3":"LSO","woe_id":-99,"adm0_a3_is":"LSO","adm0_a3_us":"LSO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"LSO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.97826256685724,-28.955596612261715],[29.325166456832587,-29.257386976846252],[29.018415154748023,-29.74376555757737],[28.84839969250774,-30.070050551068253],[28.29106937023991,-30.2262167294543],[28.107204624145425,-30.54573211031495],[27.749397006956485,-30.64510588961222],[26.999261915807637,-29.875953871379984],[27.532511020627478,-29.24271087007536],[28.07433841320778,-28.851468601193588],[28.541700066855498,-28.64750172293757],[28.97826256685724,-28.955596612261715]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mozambique","sov_a3":"MOZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mozambique","adm0_a3":"MOZ","geou_dif":0,"geounit":"Mozambique","gu_a3":"MOZ","su_dif":0,"subunit":"Mozambique","su_a3":"MOZ","brk_diff":0,"name":"Mozambique","name_long":"Mozambique","brk_a3":"MOZ","brk_name":"Mozambique","brk_group":null,"abbrev":"Moz.","postal":"MZ","formal_en":"Republic of Mozambique","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mozambique","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":1,"mapcolor13":4,"pop_est":21669278,"gdp_md_est":18940,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MZ","iso_a3":"MOZ","iso_n3":"508","un_a3":"508","wb_a2":"MZ","wb_a3":"MOZ","woe_id":-99,"adm0_a3_is":"MOZ","adm0_a3_us":"MOZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MOZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[34.55998904799935,-11.520020033415925],[35.31239790216904,-11.439146416879147],[36.51408165868426,-11.720938002166733],[36.775150994622805,-11.594537448780805],[37.47128421402661,-11.56875090906716],[37.82764489111139,-11.268769219612835],[38.42755659358775,-11.285202325081656],[39.521029900883775,-10.896853936408226],[40.31658857601719,-10.317096042525698],[40.47838748552303,-10.765440769089993],[40.437253045418686,-11.761710707245015],[40.56081139502857,-12.639176527561027],[40.59962039567975,-14.201975192931862],[40.775475294768995,-14.691764418194241],[40.4772506040126,-15.406294447493972],[40.08926395036522,-16.10077402106446],[39.45255862809705,-16.72089120856694],[38.53835086442152,-17.101023044505958],[37.41113284683888,-17.586368096591237],[36.28127933120936,-18.65968759529345],[35.89649661636406,-18.842260430580634],[35.198399692533144,-19.552811374593894],[34.78638349787005,-19.784011732667736],[34.70189253107284,-20.49704314543101],[35.176127150215365,-21.25436126066841],[35.37342776870574,-21.840837090748877],[35.385848253705404,-22.14],[35.562545536369086,-22.09],[35.533934767404304,-23.070787855727758],[35.37177412287238,-23.5353589820317],[35.60747033055563,-23.706563002214683],[35.45874555841962,-24.12260995859655],[35.04073489761066,-24.478350518493805],[34.21582400893547,-24.81631438568266],[33.01321007663901,-25.357573337507738],[32.574632195777866,-25.72731821055609],[32.66036339695009,-26.148584486599443],[32.91595503106569,-26.215867201443466],[32.830120477028885,-26.742191664336197],[32.07166548028107,-26.73382008230491],[31.98577924981197,-26.291779880480227],[31.837777947728064,-25.84333180105135],[31.75240848158188,-25.484283949487413],[31.93058882012425,-24.369416599222536],[31.670397983534652,-23.658969008073864],[31.191409132621285,-22.2515096981724],[32.244988234188014,-21.116488539313693],[32.50869306817344,-20.395292250248307],[32.65974327976258,-20.304290052982317],[32.772707960752626,-19.715592136313298],[32.61199425632489,-19.419382826416275],[32.65488569512715,-18.672089939043495],[32.84986087416439,-17.97905730557718],[32.847638787575846,-16.713398125884616],[32.32823896661022,-16.392074069893752],[31.8520406430406,-16.319417006091378],[31.636498243951195,-16.071990248277885],[31.173063999157677,-15.860943698797872],[30.338954705534544,-15.880839125230244],[30.274255812305107,-15.507786960515212],[30.17948123548183,-14.796099134991527],[33.214024692525214,-13.971860039936153],[33.789700148256685,-14.451830743063072],[34.064825473778626,-14.359950046448121],[34.45963341648854,-14.613009535381424],[34.51766604995231,-15.013708591372612],[34.307291294092096,-15.478641452702595],[34.38129194513405,-16.183559665596043],[35.033810255683534,-16.801299737213093],[35.33906294123164,-16.10744028083011],[35.77190473810836,-15.896858819240725],[35.68684533055594,-14.611045830954332],[35.26795617039801,-13.887834161029566],[34.907151320136165,-13.565424899960568],[34.55998904799935,-13.579997653866876],[34.28000613784198,-12.280025323132504],[34.55998904799935,-11.520020033415925]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Rwanda","sov_a3":"RWA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Rwanda","adm0_a3":"RWA","geou_dif":0,"geounit":"Rwanda","gu_a3":"RWA","su_dif":0,"subunit":"Rwanda","su_a3":"RWA","brk_diff":0,"name":"Rwanda","name_long":"Rwanda","brk_a3":"RWA","brk_name":"Rwanda","brk_group":null,"abbrev":"Rwa.","postal":"RW","formal_en":"Republic of Rwanda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Rwanda","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":3,"mapcolor13":10,"pop_est":10473282,"gdp_md_est":9706,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"RW","iso_a3":"RWA","iso_n3":"646","un_a3":"646","wb_a2":"RW","wb_a3":"RWA","woe_id":-99,"adm0_a3_is":"RWA","adm0_a3_us":"RWA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"RWA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[30.41910485201924,-1.134659112150416],[30.81613488131771,-1.698914076345389],[30.75830895358311,-2.287250257988369],[30.469696079232985,-2.413857517103458],[29.938359002407942,-2.348486830254238],[29.632176141078588,-2.917857761246097],[29.024926385216787,-2.839257907730158],[29.117478875451553,-2.292211195488385],[29.25483483248334,-2.215109958508911],[29.29188683443661,-1.620055840667987],[29.579466180140884,-1.341313164885626],[29.82151858899601,-1.443322442229785],[30.41910485201924,-1.134659112150416]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Nigeria","sov_a3":"NGA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nigeria","adm0_a3":"NGA","geou_dif":0,"geounit":"Nigeria","gu_a3":"NGA","su_dif":0,"subunit":"Nigeria","su_a3":"NGA","brk_diff":0,"name":"Nigeria","name_long":"Nigeria","brk_a3":"NGA","brk_name":"Nigeria","brk_group":null,"abbrev":"Nigeria","postal":"NG","formal_en":"Federal Republic of Nigeria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nigeria","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":2,"pop_est":149229090,"gdp_md_est":335400,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NG","iso_a3":"NGA","iso_n3":"566","un_a3":"566","wb_a2":"NG","wb_a3":"NGA","woe_id":-99,"adm0_a3_is":"NGA","adm0_a3_us":"NGA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"NGA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[8.500287713259695,4.771982937026849],[7.46210818851594,4.412108262546241],[7.082596469764439,4.464689032403228],[6.6980721370806,4.240594183769517],[5.898172641634687,4.262453314628985],[5.362804803090881,4.887970689305959],[5.033574252959368,5.611802476418234],[4.325607130560683,6.270651149923467],[3.574180128604553,6.258300482605719],[2.691701694356254,6.258817246928629],[2.74906253420022,7.870734361192888],[2.723792758809509,8.50684540448971],[2.912308383810256,9.13760793704432],[3.220351596702101,9.4441525333997],[3.705438266625919,10.063210354040208],[3.600070021182801,10.332186184119408],[3.797112257511714,10.734745591673105],[3.572216424177469,11.327939357951518],[3.611180454125559,11.660167141155966],[3.680633579125811,12.552903347214226],[3.967282749048849,12.956108710171575],[4.107945997747322,13.531215725147831],[4.368343540066064,13.747481594289324],[5.443058302440164,13.865923977102298],[6.445426059605637,13.492768459522678],[6.820441928747754,13.115091254117518],[7.330746697630018,13.0980380314612],[7.804671258178786,13.343526923063745],[9.014933302454466,12.82665924728043],[9.524928012742945,12.851102199754479],[10.114814487354693,13.27725189864941],[10.701031935273704,13.246917832894084],[10.989593133191535,13.38732269943111],[11.527803175511394,13.328980007373588],[12.302071160540523,13.037189032437524],[13.08398725754887,13.596147162322566],[13.318701613018561,13.556356309457826],[13.99535281744835,12.461565253138346],[14.181336297266792,12.483656927943116],[14.577177768622533,12.085360826053503],[14.468192172918975,11.904751695193411],[14.415378859116686,11.572368882692075],[13.572949659894562,10.798565985553566],[13.308676385153918,10.160362046748928],[13.167599724997103,9.640626328973411],[12.955467970438974,9.417771714714704],[12.753671502339214,8.717762762888995],[12.218872104550599,8.305824082874324],[12.063946160539558,7.799808457872302],[11.839308709366803,7.397042344589436],[11.74577436691851,6.981382961449753],[11.05878787603035,6.644426784690594],[10.497375115611417,7.055357774275564],[10.118276808318257,7.038769639509879],[9.522705926154401,6.453482367372117],[9.233162876023044,6.444490668153334],[8.757532993208628,5.479665839047911],[8.500287713259695,4.771982937026849]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Niger","sov_a3":"NER","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Niger","adm0_a3":"NER","geou_dif":0,"geounit":"Niger","gu_a3":"NER","su_dif":0,"subunit":"Niger","su_a3":"NER","brk_diff":0,"name":"Niger","name_long":"Niger","brk_a3":"NER","brk_name":"Niger","brk_group":null,"abbrev":"Niger","postal":"NE","formal_en":"Republic of Niger","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Niger","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":3,"mapcolor13":13,"pop_est":15306252,"gdp_md_est":10040,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"NE","iso_a3":"NER","iso_n3":"562","un_a3":"562","wb_a2":"NE","wb_a3":"NER","woe_id":-99,"adm0_a3_is":"NER","adm0_a3_us":"NER","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"NER.geojson"},"geometry":{"type":"Polygon","coordinates":[[[2.15447350424995,11.940150051313424],[2.177107781593918,12.625017808477537],[1.024103224297619,12.851825669806601],[0.993045688490156,13.335749620003865],[0.429927605805517,13.988733018443893],[0.295646396495215,14.444234930880667],[0.374892205414767,14.928908189346147],[1.015783318698482,14.968182277887989],[1.385528191746971,15.32356110275924],[2.749992709981541,15.409524847876753],[3.638258904646591,15.568119818580442],[3.723421665063597,16.184283759012658],[4.270209995143887,16.852227484601315],[4.267419467800096,19.155265204337127],[5.677565952180714,19.6012069767998],[8.57289310062987,21.565660712159225],[11.9995056494717,23.471668402596432],[13.581424594790462,23.04050608976928],[14.143870883855243,22.49128896737113],[14.8513,22.862950000000126],[15.096887648181848,21.30851878507491],[15.471076694407316,21.048457139565983],[15.487148064850146,20.730414537025638],[15.903246697664313,20.387618923417506],[15.685740594147774,19.957180080642384],[15.30044111497972,17.927949937405003],[15.247731154041846,16.627305813050782],[13.972201775781684,15.684365953021143],[13.540393507550789,14.367133693901222],[13.956698846094127,13.996691189016929],[13.95447675950561,13.353448798063766],[14.595781284247607,13.330426947477859],[14.495787387762903,12.859396267137356],[14.21353071458475,12.802035427293333],[14.18133629726691,12.483656927943171],[13.995352817448293,12.461565253138303],[13.318701613018561,13.556356309457954],[13.083987257548813,13.596147162322495],[12.30207116054055,13.037189032437539],[11.527803175511508,13.32898000737356],[10.989593133191532,13.387322699431195],[10.701031935273818,13.246917832894042],[10.114814487354748,13.277251898649467],[9.52492801274309,12.851102199754564],[9.014933302454438,12.826659247280418],[7.804671258178871,13.343526923063735],[7.330746697630047,13.098038031461215],[6.820441928747812,13.115091254117601],[6.445426059605722,13.492768459522722],[5.443058302440135,13.865923977102225],[4.368343540066007,13.747481594289411],[4.107945997747379,13.531215725147945],[3.967282749048934,12.956108710171577],[3.680633579125925,12.55290334721417],[3.611180454125587,11.660167141155966],[2.848643019226586,12.23563589115821],[2.490163608418015,12.233052069543588],[2.15447350424995,11.940150051313424]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Swaziland","sov_a3":"SWZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Swaziland","adm0_a3":"SWZ","geou_dif":0,"geounit":"Swaziland","gu_a3":"SWZ","su_dif":0,"subunit":"Swaziland","su_a3":"SWZ","brk_diff":0,"name":"Swaziland","name_long":"Swaziland","brk_a3":"SWZ","brk_name":"Swaziland","brk_group":null,"abbrev":"Swz.","postal":"SW","formal_en":"Kingdom of Swaziland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Swaziland","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":1123913,"gdp_md_est":5702,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SZ","iso_a3":"SWZ","iso_n3":"748","un_a3":"748","wb_a2":"SZ","wb_a3":"SWZ","woe_id":-99,"adm0_a3_is":"SWZ","adm0_a3_us":"SWZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SWZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[32.07166548028107,-26.73382008230491],[31.868060337051077,-27.177927341421277],[31.282773064913325,-27.285879408478998],[30.68596194837448,-26.74384531016953],[30.676608514129637,-26.398078301704608],[30.949666782359913,-26.022649021104147],[31.04407962415715,-25.731452325139443],[31.333157586397906,-25.66019052500895],[31.837777947728064,-25.84333180105135],[31.98577924981197,-26.291779880480227],[32.07166548028107,-26.73382008230491]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Malawi","sov_a3":"MWI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malawi","adm0_a3":"MWI","geou_dif":0,"geounit":"Malawi","gu_a3":"MWI","su_dif":0,"subunit":"Malawi","su_a3":"MWI","brk_diff":0,"name":"Malawi","name_long":"Malawi","brk_a3":"MWI","brk_name":"Malawi","brk_group":null,"abbrev":"Mal.","postal":"MW","formal_en":"Republic of Malawi","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malawi","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":4,"mapcolor13":5,"pop_est":14268711,"gdp_md_est":11810,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MW","iso_a3":"MWI","iso_n3":"454","un_a3":"454","wb_a2":"MW","wb_a3":"MWI","woe_id":-99,"adm0_a3_is":"MWI","adm0_a3_us":"MWI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MWI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[34.55998904799935,-11.520020033415925],[34.28000613784198,-12.280025323132504],[34.55998904799935,-13.579997653866876],[34.907151320136165,-13.565424899960568],[35.26795617039801,-13.887834161029566],[35.68684533055594,-14.611045830954332],[35.77190473810836,-15.896858819240725],[35.33906294123164,-16.10744028083011],[35.033810255683534,-16.801299737213093],[34.38129194513405,-16.183559665596043],[34.307291294092096,-15.478641452702595],[34.51766604995231,-15.013708591372612],[34.45963341648854,-14.613009535381424],[34.064825473778626,-14.359950046448121],[33.789700148256685,-14.451830743063072],[33.214024692525214,-13.971860039936153],[32.68816531752313,-13.712857761289275],[32.991764357237884,-12.783870537978272],[33.306422153463075,-12.435778090060218],[33.11428917820191,-11.607198174692314],[33.315310499817286,-10.796549981329697],[33.48568769708359,-10.525558770391115],[33.2313879737753,-9.6767216935648],[32.75937544122132,-9.230599053589058],[33.73972903823045,-9.417150974162723],[33.94083772409653,-9.693673841980294],[34.28000613784198,-10.159999688358404],[34.55998904799935,-11.520020033415925]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Tunisia","sov_a3":"TUN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tunisia","adm0_a3":"TUN","geou_dif":0,"geounit":"Tunisia","gu_a3":"TUN","su_dif":0,"subunit":"Tunisia","su_a3":"TUN","brk_diff":0,"name":"Tunisia","name_long":"Tunisia","brk_a3":"TUN","brk_name":"Tunisia","brk_group":null,"abbrev":"Tun.","postal":"TN","formal_en":"Republic of Tunisia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tunisia","name_alt":null,"mapcolor7":4,"mapcolor8":3,"mapcolor9":3,"mapcolor13":2,"pop_est":10486339,"gdp_md_est":81710,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TN","iso_a3":"TUN","iso_n3":"788","un_a3":"788","wb_a2":"TN","wb_a3":"TUN","woe_id":-99,"adm0_a3_is":"TUN","adm0_a3_us":"TUN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TUN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[9.482139926805274,30.307556057246188],[9.055602654668148,32.10269196220129],[8.439102817426118,32.50628489840082],[8.430472853233368,32.74833730725595],[7.612641635782182,33.34411489514896],[7.524481642292244,34.09737641045146],[8.140981479534304,34.65514598239379],[8.376367628623768,35.47987600355594],[8.217824334352315,36.433176988260286],[8.420964389691676,36.94642731378316],[9.509993523810607,37.349994411766545],[10.210002475636317,37.230001735984814],[10.18065026209453,36.724037787415085],[11.028867221733348,37.09210317641396],[11.100025668999251,36.899996039368915],[10.600004510143094,36.410000108377375],[10.593286573945136,35.94744436293281],[10.939518670300687,35.698984076473494],[10.807847120821009,34.83350718844919],[10.149592726287125,34.3307730168977],[10.339658644256616,33.78574168551532],[10.856836378633687,33.76874013929128],[11.108500603895122,33.293342800422195],[11.48878746913101,33.13699575452314],[11.432253452203696,32.368903103152874],[10.944789666394456,32.081814683555365],[10.636901482799487,31.761420803345754],[9.950225050505082,31.376069647745254],[10.056575148161755,30.9618313664936],[9.970017124072854,30.539324856075243],[9.482139926805274,30.307556057246188]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Uganda","sov_a3":"UGA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uganda","adm0_a3":"UGA","geou_dif":0,"geounit":"Uganda","gu_a3":"UGA","su_dif":0,"subunit":"Uganda","su_a3":"UGA","brk_diff":0,"name":"Uganda","name_long":"Uganda","brk_a3":"UGA","brk_name":"Uganda","brk_group":null,"abbrev":"Uga.","postal":"UG","formal_en":"Republic of Uganda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uganda","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":4,"pop_est":32369558,"gdp_md_est":39380,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"UG","iso_a3":"UGA","iso_n3":"800","un_a3":"800","wb_a2":"UG","wb_a3":"UGA","woe_id":-99,"adm0_a3_is":"UGA","adm0_a3_us":"UGA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"UGA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.86617,-1.02736],[30.769860000000108,-1.01455],[30.4191048520193,-1.134659112150416],[29.821518588996124,-1.443322442229771],[29.579466180141022,-1.341313164885605],[29.58783776217217,-0.587405694179381],[29.8195,-0.2053],[29.875778842902434,0.597379868976361],[30.08615359876279,1.062312730306417],[30.46850752129029,1.583805446779706],[30.852670118948136,1.849396470543752],[31.17414920423596,2.204465236821306],[30.77332,2.339890000000139],[30.83385,3.50917],[31.24556,3.7819],[31.88145,3.55827],[32.68642,3.79232],[33.3900000000001,3.79],[34.005,4.249884947362147],[34.47913,3.5556],[34.59607,3.053740000000118],[35.03599,1.90584],[34.6721,1.17694],[34.18,0.515],[33.893568969666994,0.109813537861839],[33.9037111971046,-0.95],[31.86617,-1.02736]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"South Sudan","sov_a3":"SDS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Sudan","adm0_a3":"SDS","geou_dif":0,"geounit":"South Sudan","gu_a3":"SDS","su_dif":0,"subunit":"South Sudan","su_a3":"SDS","brk_diff":0,"name":"S. Sudan","name_long":"South Sudan","brk_a3":"SDS","brk_name":"S. Sudan","brk_group":null,"abbrev":"S. Sud.","postal":"SS","formal_en":"Republic of South Sudan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"South Sudan","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":3,"mapcolor13":5,"pop_est":10625176,"gdp_md_est":13227,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"SS","iso_a3":"SSD","iso_n3":"728","un_a3":"728","wb_a2":"SS","wb_a3":"SSD","woe_id":-99,"adm0_a3_is":"SSD","adm0_a3_us":"SDS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":11,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"SSD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[33.963392794971185,9.464285229420625],[33.97498,8.68456],[33.82550000000015,8.37916],[33.29480000000012,8.35458],[32.95418,7.784970000000102],[33.568290000000104,7.71334],[34.0751,7.22595],[34.25032,6.82607],[34.70702,6.59422000000012],[35.298007118233095,5.506],[34.62019626785394,4.847122742082036],[34.005,4.249884947362147],[33.3900000000001,3.79],[32.68642,3.79232],[31.881450000000143,3.55827],[31.24556,3.7819],[30.83385,3.50917],[29.95349,4.1737],[29.71599531425602,4.600804755060153],[29.159078403446642,4.389267279473245],[28.696677687298802,4.455077215996994],[28.428993768027,4.287154649264608],[27.979977247842953,4.408413397637388],[27.374226108517632,5.233944403500175],[27.213409051225256,5.550953477394614],[26.465909458123292,5.946717434101856],[26.21341840994512,6.546603298362129],[25.796647983511264,6.97931590415817],[25.124130893664812,7.500085150579424],[25.114932488716875,7.825104071479245],[24.5673690121522,8.229187933785454],[23.886979580860665,8.619729712933065],[24.19406772118765,8.728696472403897],[24.53741516360202,8.91753756573172],[24.794925745412684,9.810240916008695],[25.069603699343986,10.273759963267992],[25.790633328413946,10.411098940233728],[25.962307049621018,10.136420986302424],[26.477328213242515,9.552730334198088],[26.752006167173818,9.466893473594496],[27.112520981708883,9.638567194801624],[27.833550610778783,9.60423245056029],[27.970889587744352,9.398223985111654],[28.966597170745782,9.398223985111654],[29.000931914987174,9.60423245056029],[29.515953078608614,9.793073543888056],[29.61895731133285,10.084918869940225],[29.99663949798855,10.290927335388687],[30.83784073190338,9.70723668328452],[31.35286189552488,9.810240916008695],[31.850715687025517,10.531270545078826],[32.400071594888345,11.080626452941488],[32.31423473428475,11.68148447716652],[32.073891524594785,11.973329803218519],[32.67474954881965,12.02483191958072],[32.743419037302544,12.248007757149992],[33.20693808456178,12.179338268667093],[33.086766479716744,11.441141267476496],[33.20693808456178,10.720111638406593],[33.72195924818311,10.325262079630193],[33.842130853028145,9.981914637215993],[33.82496348090751,9.484060845715362],[33.963392794971185,9.464285229420625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Sierra Leone","sov_a3":"SLE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sierra Leone","adm0_a3":"SLE","geou_dif":0,"geounit":"Sierra Leone","gu_a3":"SLE","su_dif":0,"subunit":"Sierra Leone","su_a3":"SLE","brk_diff":0,"name":"Sierra Leone","name_long":"Sierra Leone","brk_a3":"SLE","brk_name":"Sierra Leone","brk_group":null,"abbrev":"S.L.","postal":"SL","formal_en":"Republic of Sierra Leone","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sierra Leone","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":7,"pop_est":6440053,"gdp_md_est":4285,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"SL","iso_a3":"SLE","iso_n3":"694","un_a3":"694","wb_a2":"SL","wb_a3":"SLE","woe_id":-99,"adm0_a3_is":"SLE","adm0_a3_us":"SLE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SLE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-11.438779466182055,6.785916856305747],[-11.70819454593574,6.860098374860726],[-12.428098924193819,7.26294200279203],[-12.949049038128194,7.798645738145738],[-13.124025437868482,8.163946438016978],[-13.246550258832515,8.903048610871508],[-12.71195756677308,9.342711696810767],[-12.59671912276221,9.62018830000197],[-12.425928514037565,9.835834051955956],[-12.150338100625005,9.858571682164381],[-11.917277390988659,10.046983954300558],[-11.117481248407328,10.045872911006285],[-10.8391519840833,9.688246161330369],[-10.622395188835041,9.267910061068278],[-10.654770473665891,8.977178452994194],[-10.494315151399633,8.715540676300435],[-10.505477260774668,8.348896389189605],[-10.23009355309128,8.406205552601293],[-10.69559485517648,7.939464016141087],[-11.146704270868383,7.396706447779536],[-11.19980180504828,7.105845648624737],[-11.438779466182055,6.785916856305747]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Senegal","sov_a3":"SEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Senegal","adm0_a3":"SEN","geou_dif":0,"geounit":"Senegal","gu_a3":"SEN","su_dif":0,"subunit":"Senegal","su_a3":"SEN","brk_diff":0,"name":"Senegal","name_long":"Senegal","brk_a3":"SEN","brk_name":"Senegal","brk_group":null,"abbrev":"Sen.","postal":"SN","formal_en":"Republic of Senegal","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Senegal","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":5,"mapcolor13":5,"pop_est":13711597,"gdp_md_est":21980,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SN","iso_a3":"SEN","iso_n3":"686","un_a3":"686","wb_a2":"SN","wb_a3":"SEN","woe_id":-99,"adm0_a3_is":"SEN","adm0_a3_us":"SEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SEN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-16.713728807023468,13.594958604379853],[-17.126106736712615,14.373515733289224],[-17.62504269049066,14.729540513564071],[-17.18517289882223,14.919477240452863],[-16.700706346085923,15.621527411354108],[-16.463098110407884,16.13503611903846],[-16.12069007004193,16.455662543193384],[-15.62366614425869,16.369337063049812],[-15.135737270558817,16.587282416240782],[-14.577347581428981,16.59826365810281],[-14.099521450242179,16.304302273010492],[-13.43573767745306,16.03938304286619],[-12.830658331747516,15.303691514542946],[-12.170750291380301,14.616834214735505],[-12.12488745772126,13.994727484589788],[-11.927716030311615,13.422075100147394],[-11.55339779300543,13.141213690641067],[-11.467899135778524,12.754518947800975],[-11.51394283695059,12.442987575729418],[-11.65830095055793,12.386582749882834],[-12.203564825885634,12.465647691289405],[-12.278599005573438,12.354440008997285],[-12.499050665730564,12.332089952031057],[-13.217818162478238,12.575873521367967],[-13.700476040084325,12.586182969610194],[-15.548476935274008,12.628170070847347],[-15.816574266004254,12.515567124883345],[-16.147716844130585,12.547761542201187],[-16.677451951554573,12.384851589401052],[-16.841524624081273,13.15139394780256],[-15.931295945692211,13.130284125211332],[-15.691000535534995,13.270353094938455],[-15.511812506562935,13.278569647672867],[-15.141163295949466,13.509511623585238],[-14.712197231494626,13.298206691943777],[-14.277701788784553,13.280585028532242],[-13.844963344772408,13.505041612192002],[-14.046992356817482,13.79406789800045],[-14.376713833055788,13.625680243377372],[-14.687030808968487,13.630356960499784],[-15.08173539881382,13.876491807505984],[-15.39877031092446,13.86036876063092],[-15.62459632003994,13.62358734786956],[-16.713728807023468,13.594958604379853]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Somaliland","sov_a3":"SOL","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Somaliland","adm0_a3":"SOL","geou_dif":0,"geounit":"Somaliland","gu_a3":"SOL","su_dif":0,"subunit":"Somaliland","su_a3":"SOL","brk_diff":1,"name":"Somaliland","name_long":"Somaliland","brk_a3":"B30","brk_name":"Somaliland","brk_group":null,"abbrev":"Solnd.","postal":"SL","formal_en":"Republic of Somaliland","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Somalia","name_sort":"Somaliland","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":5,"mapcolor13":2,"pop_est":3500000,"gdp_md_est":12250,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"SOM","adm0_a3_us":"SOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"somaliland.geojson"},"geometry":{"type":"Polygon","coordinates":[[[48.938129510296505,9.451748968946674],[48.48673587422701,8.83762624758998],[47.78942,8.003],[46.94832848489796,7.996876532417388],[43.67875,9.18358000000012],[43.29697513201876,9.540477403191744],[42.92812,10.021940000000143],[42.55876,10.57258000000013],[42.77685184100096,10.92687856693442],[43.14530480324214,11.462039699748857],[43.470659620951665,11.27770986576388],[43.66666832863484,10.864169216348158],[44.11780358254282,10.445538438351605],[44.614259067570856,10.442205308468942],[45.55694054543915,10.698029486529776],[46.645401238803004,10.816549383991173],[47.525657586462785,11.12722809492999],[48.02159630716778,11.193063869669743],[48.37878380716927,11.375481675660126],[48.94820641459347,11.41062164961852],[48.94200524271844,11.394266058798166],[48.93849124532261,10.982327378783452],[48.93823286316109,9.973500067581483],[48.938129510296505,9.451748968946674]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Somalia","sov_a3":"SOM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Somalia","adm0_a3":"SOM","geou_dif":0,"geounit":"Somalia","gu_a3":"SOM","su_dif":0,"subunit":"Somalia","su_a3":"SOM","brk_diff":0,"name":"Somalia","name_long":"Somalia","brk_a3":"SOM","brk_name":"Somalia","brk_group":null,"abbrev":"Som.","postal":"SO","formal_en":"Federal Republic of Somalia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Somalia","name_alt":null,"mapcolor7":2,"mapcolor8":8,"mapcolor9":6,"mapcolor13":7,"pop_est":9832017,"gdp_md_est":5524,"pop_year":-99,"lastcensus":1987,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"SO","iso_a3":"SOM","iso_n3":"706","un_a3":"706","wb_a2":"SO","wb_a3":"SOM","woe_id":-99,"adm0_a3_is":"SOM","adm0_a3_us":"SOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SOM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[49.72862,11.5789],[50.25878,11.67957],[50.73202,12.0219],[51.1112,12.02464],[51.13387,11.74815],[51.04153,11.16651],[51.04531,10.6409],[50.83418,10.27972],[50.55239,9.19874],[50.07092,8.08173],[49.4527,6.80466],[48.59455,5.33911],[47.74079,4.2194],[46.56476,2.85529],[45.56399,2.04576],[44.06815,1.05283],[43.13597,0.2922],[42.04157,-0.91916],[41.81095,-1.44647],[41.58513,-1.68325],[40.993,-0.85829],[40.98105,2.78452],[41.85508309264397,3.918911920483727],[42.12861,4.23413],[42.76967,4.25259],[43.66087,4.95755],[44.9636,5.00162],[47.78942,8.003],[48.48673587422695,8.837626247589995],[48.93812951029645,9.451748968946617],[48.93823286316103,9.973500067581512],[48.938491245322496,10.982327378783467],[48.94200524271835,11.394266058798138],[48.94820475850974,11.410617281697963],[49.26776,11.43033],[49.72862,11.5789]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"United Republic of Tanzania","sov_a3":"TZA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"United Republic of Tanzania","adm0_a3":"TZA","geou_dif":0,"geounit":"Tanzania","gu_a3":"TZA","su_dif":0,"subunit":"Tanzania","su_a3":"TZA","brk_diff":0,"name":"Tanzania","name_long":"Tanzania","brk_a3":"TZA","brk_name":"Tanzania","brk_group":null,"abbrev":"Tanz.","postal":"TZ","formal_en":"United Republic of Tanzania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tanzania","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":2,"pop_est":41048532,"gdp_md_est":54250,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TZ","iso_a3":"TZA","iso_n3":"834","un_a3":"834","wb_a2":"TZ","wb_a3":"TZA","woe_id":-99,"adm0_a3_is":"TZA","adm0_a3_us":"TZA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"TZA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[33.9037111971046,-0.95],[34.07262,-1.05982],[37.69869,-3.09699],[37.7669,-3.67712],[39.20222,-4.67677],[38.74054,-5.90895],[38.79977,-6.47566],[39.44,-6.839999999999861],[39.470000000000134,-7.1],[39.19469,-7.7039],[39.25203,-8.00781],[39.18652,-8.48551],[39.53574,-9.112369999999883],[39.9496,-10.0984],[40.31659,-10.317099999999868],[39.521,-10.89688],[38.42755659358778,-11.285202325081627],[37.82764,-11.26879],[37.47129,-11.56876],[36.77515099462289,-11.594537448780784],[36.514081658684404,-11.720938002166747],[35.31239790216915,-11.439146416879169],[34.559989047999466,-11.520020033415847],[34.28,-10.16],[33.940837724096525,-9.693673841980285],[33.73972,-9.41715],[32.75937544122138,-9.230599053589003],[32.19186486179194,-8.930358981973257],[31.556348097466635,-8.762048841998647],[31.15775133695007,-8.594578747317314],[30.74,-8.34],[30.2,-7.08],[29.62,-6.52],[29.419992710088305,-5.939998874539299],[29.51998660657307,-5.419978936386258],[29.33999759290037,-4.499983412294114],[29.753512404099865,-4.452389418153302],[30.11632,-4.09012],[30.50554,-3.56858],[30.75224,-3.35931],[30.74301,-3.03431],[30.52766,-2.80762],[30.46967,-2.41383],[30.758308953583136,-2.287250257988376],[30.81613488131785,-1.698914076345375],[30.4191048520193,-1.134659112150416],[30.769860000000108,-1.01455],[31.86617,-1.02736],[33.9037111971046,-0.95]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Togo","sov_a3":"TGO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Togo","adm0_a3":"TGO","geou_dif":0,"geounit":"Togo","gu_a3":"TGO","su_dif":0,"subunit":"Togo","su_a3":"TGO","brk_diff":0,"name":"Togo","name_long":"Togo","brk_a3":"TGO","brk_name":"Togo","brk_group":null,"abbrev":"Togo","postal":"TG","formal_en":"Togolese Republic","formal_fr":"République Togolaise","note_adm0":null,"note_brk":null,"name_sort":"Togo","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":5,"pop_est":6019877,"gdp_md_est":5118,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TG","iso_a3":"TGO","iso_n3":"768","un_a3":"768","wb_a2":"TG","wb_a3":"TGO","woe_id":-99,"adm0_a3_is":"TGO","adm0_a3_us":"TGO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TGO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[1.865240512712319,6.142157701029731],[1.060121697604927,5.928837388528876],[0.836931186536333,6.279978745952149],[0.570384148774849,6.914358628767189],[0.490957472342245,7.411744289576475],[0.712029249686878,8.31246450442383],[0.461191847342121,8.677222601756014],[0.365900506195885,9.465003973829482],[0.367579990245389,10.19121287682718],[-0.049784715159944,10.706917832883931],[0.023802524423701,11.018681748900804],[0.899563022474069,10.99733938236426],[0.772335646171484,10.470808213742359],[1.077795037448738,10.175606594275024],[1.425060662450136,9.825395412633],[1.46304284018467,9.334624335157088],[1.664477573258381,9.12859039960938],[1.618950636409238,6.832038072126237],[1.865240512712319,6.142157701029731]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Chad","sov_a3":"TCD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Chad","adm0_a3":"TCD","geou_dif":0,"geounit":"Chad","gu_a3":"TCD","su_dif":0,"subunit":"Chad","su_a3":"TCD","brk_diff":0,"name":"Chad","name_long":"Chad","brk_a3":"TCD","brk_name":"Chad","brk_group":null,"abbrev":"Chad","postal":"TD","formal_en":"Republic of Chad","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Chad","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":8,"mapcolor13":6,"pop_est":10329208,"gdp_md_est":15860,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TD","iso_a3":"TCD","iso_n3":"148","un_a3":"148","wb_a2":"TD","wb_a3":"TCD","woe_id":-99,"adm0_a3_is":"TCD","adm0_a3_us":"TCD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TCD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[14.495787387762903,12.859396267137356],[14.595781284247607,13.330426947477859],[13.95447675950561,13.353448798063766],[13.956698846094127,13.996691189016929],[13.540393507550789,14.367133693901222],[13.97217,15.68437],[15.247731154041846,16.627305813050782],[15.30044111497972,17.927949937405003],[15.685740594147774,19.957180080642384],[15.903246697664313,20.387618923417506],[15.487148064850146,20.730414537025638],[15.47106,21.04845],[15.096887648181848,21.30851878507491],[14.8513,22.862950000000126],[15.86085,23.40972],[19.84926,21.49509],[23.837660000000138,19.580470000000105],[23.886890000000108,15.61084],[23.024590000000103,15.68072],[22.56795000000011,14.944290000000137],[22.30351,14.32682],[22.51202,14.09318],[22.18329,13.78648],[22.29658,13.37232],[22.03759,12.95546],[21.93681,12.588180000000136],[22.28801,12.64605],[22.49762,12.26024],[22.50869,11.67936],[22.87622,11.384610000000123],[22.864165480244253,11.142395127807617],[22.23112918466876,10.97188873946061],[21.72382164885954,10.567055568885962],[21.00086836109631,9.47598521569148],[20.05968549976427,9.01270600019484],[19.09400800952608,9.07484691002577],[18.81200971850927,8.982914536978626],[18.911021762780592,8.630894680206438],[18.389554884523303,8.281303615751881],[17.964929640380888,7.890914008002994],[16.70598839688637,7.508327541529979],[16.456184523187403,7.734773667832939],[16.290561557691888,7.754307359239418],[16.106231723706742,7.497087917506462],[15.279460483469164,7.421924546738012],[15.43609174974574,7.692812404811889],[15.120865512765306,8.382150173369437],[14.97999555833769,8.796104234243444],[14.544466586981855,8.96586131432224],[13.954218377344091,9.549494940626685],[14.171466098699113,10.021378282100045],[14.62720055508106,9.920919297724595],[14.9093538753948,9.99212942142276],[15.467872755605244,9.982336737503543],[14.923564894275046,10.891325181517516],[14.960151808337683,11.555574042197236],[14.89336,12.21905],[14.495787387762903,12.859396267137356]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Zambia","sov_a3":"ZMB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Zambia","adm0_a3":"ZMB","geou_dif":0,"geounit":"Zambia","gu_a3":"ZMB","su_dif":0,"subunit":"Zambia","su_a3":"ZMB","brk_diff":0,"name":"Zambia","name_long":"Zambia","brk_a3":"ZMB","brk_name":"Zambia","brk_group":null,"abbrev":"Zambia","postal":"ZM","formal_en":"Republic of Zambia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Zambia","name_alt":null,"mapcolor7":5,"mapcolor8":8,"mapcolor9":5,"mapcolor13":13,"pop_est":11862740,"gdp_md_est":17500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ZM","iso_a3":"ZMB","iso_n3":"894","un_a3":"894","wb_a2":"ZM","wb_a3":"ZMB","woe_id":-99,"adm0_a3_is":"ZMB","adm0_a3_us":"ZMB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"ZMB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[32.75937544122132,-9.230599053589058],[33.2313879737753,-9.6767216935648],[33.48568769708359,-10.525558770391115],[33.315310499817286,-10.796549981329697],[33.11428917820191,-11.607198174692314],[33.306422153463075,-12.435778090060218],[32.991764357237884,-12.783870537978272],[32.68816531752313,-13.712857761289275],[33.214024692525214,-13.971860039936153],[30.17948123548183,-14.796099134991527],[30.274255812305107,-15.507786960515212],[29.516834344203147,-15.644677829656388],[28.947463413211263,-16.04305144619444],[28.825868768028496,-16.389748630440614],[28.467906121542683,-16.468400160388846],[27.598243442502756,-17.290830580314008],[27.04442711763073,-17.938026218337434],[26.70677330903564,-17.961228936436484],[26.381935255648926,-17.8460421688579],[25.264225701608012,-17.736539808831417],[25.08444339366457,-17.661815687737374],[25.07695031098226,-17.57882333747662],[24.682349074001507,-17.353410739819473],[24.033861525170778,-17.295843194246324],[23.215048455506064,-17.52311614346598],[22.56247846852426,-16.898451429921813],[21.887842644953874,-16.08031015387688],[21.933886346125917,-12.898437188369359],[24.016136508894675,-12.911046237848574],[23.930922072045377,-12.565847670138854],[24.079905226342845,-12.191296888887365],[23.904153680118185,-11.722281589406322],[24.017893507592586,-11.23729827234709],[23.912215203555718,-10.926826267137514],[24.25715538910399,-10.951992689663657],[24.31451622894795,-11.26282642989927],[24.78316979340295,-11.238693536018964],[25.418118116973204,-11.330935967659961],[25.752309604604733,-11.784965101776358],[26.553087599399618,-11.924439792532127],[27.164419793412463,-11.608748467661075],[27.38879886242378,-12.132747491100666],[28.155108676879987,-12.272480564017897],[28.523561639121027,-12.698604424696683],[28.934285922976837,-13.248958428605135],[29.69961388521949,-13.257226657771831],[29.61600141777123,-12.178894545137311],[29.34154788586909,-12.360743910372413],[28.642417433392353,-11.971568698782315],[28.372253045370428,-11.793646742401393],[28.49606977714177,-10.789883721564044],[28.67368167492893,-9.605924981324932],[28.449871046672826,-9.164918308146085],[28.7348665707625,-8.526559340044578],[29.002912225060467,-8.407031752153472],[30.346086053190813,-8.238256524288218],[30.740015496551788,-8.340007419470915],[31.15775133695005,-8.594578747317366],[31.556348097466497,-8.762048841998642],[32.19186486179197,-8.930358981973278],[32.75937544122132,-9.230599053589058]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"South Africa","sov_a3":"ZAF","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Africa","adm0_a3":"ZAF","geou_dif":0,"geounit":"South Africa","gu_a3":"ZAF","su_dif":0,"subunit":"South Africa","su_a3":"ZAF","brk_diff":0,"name":"South Africa","name_long":"South Africa","brk_a3":"ZAF","brk_name":"South Africa","brk_group":null,"abbrev":"S.Af.","postal":"ZA","formal_en":"Republic of South Africa","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"South Africa","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":4,"mapcolor13":2,"pop_est":49052489,"gdp_md_est":491000,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ZA","iso_a3":"ZAF","iso_n3":"710","un_a3":"710","wb_a2":"ZA","wb_a3":"ZAF","woe_id":-99,"adm0_a3_is":"ZAF","adm0_a3_us":"ZAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ZAF.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.521001417778876,-29.257386976846252],[31.325561150851,-29.401977634398914],[30.901762729625343,-29.90995696382804],[30.622813348113823,-30.42377573010613],[30.05571618014278,-31.140269463832958],[28.925552605919535,-32.17204111097249],[28.2197558936771,-32.771952813448856],[27.464608188595975,-33.2269637997788],[26.419452345492825,-33.61495045342619],[25.90966434093349,-33.6670402971764],[25.780628289500697,-33.944646091448334],[25.172861769315972,-33.796851495093584],[24.677853224392123,-33.98717579522455],[23.594043409934642,-33.794474379208154],[22.988188917744733,-33.91643075941698],[22.574157342222236,-33.864082533505304],[21.542799106541025,-34.258838799782936],[20.689052768647002,-34.417175388325234],[20.071261020597632,-34.79513681410799],[19.61640506356457,-34.81916635512371],[19.193278435958717,-34.46259897230979],[18.85531456876987,-34.444305515278465],[18.42464318204938,-33.99787281670896],[18.377410922934615,-34.13652068454807],[18.244499139079917,-33.86775156019802],[18.250080193767445,-33.28143075941444],[17.92519046394844,-32.61129078545343],[18.247909783611192,-32.42913136162456],[18.22176150887148,-31.66163298922567],[17.56691775886887,-30.725721123987547],[17.064416131262703,-29.87864104585916],[17.062917514726223,-29.875953871379984],[16.344976840895242,-28.576705010697697],[16.824017368240902,-28.082161553664466],[17.218928663815404,-28.35594329194681],[17.387497185951503,-28.78351409272978],[17.83615197110953,-28.85637786226132],[18.464899122804752,-29.04546192801728],[19.002127312911085,-28.972443129188864],[19.894734327888614,-28.461104831660776],[19.895767856534434,-24.767790215760588],[20.165725538827186,-24.917961928000768],[20.758609246511835,-25.86813648855145],[20.66647016773544,-26.477453301704923],[20.88960900237174,-26.828542982695915],[21.60589603036939,-26.726533705351756],[22.105968865657868,-26.280256036079138],[22.57953169118059,-25.979447523708146],[22.8242712745149,-25.500458672794768],[23.312096795350186,-25.26868987396572],[23.73356977712271,-25.390129489851613],[24.211266717228792,-25.670215752873574],[25.025170525825786,-25.7196700985769],[25.66466637543772,-25.486816094669713],[25.76584882986521,-25.174845472923675],[25.94165205252216,-24.69637338633322],[26.4857532081233,-24.616326592713104],[26.786406691197413,-24.240690606383485],[27.119409620886245,-23.574323011979775],[28.01723595552525,-22.827753594659075],[29.43218834810904,-22.091312758067588],[29.839036899542972,-22.102216485281176],[30.322883335091774,-22.27161183033393],[30.65986535006709,-22.151567478119915],[31.191409132621285,-22.2515096981724],[31.670397983534652,-23.658969008073864],[31.93058882012425,-24.369416599222536],[31.75240848158188,-25.484283949487413],[31.837777947728064,-25.84333180105135],[31.333157586397906,-25.66019052500895],[31.04407962415715,-25.731452325139443],[30.949666782359913,-26.022649021104147],[30.676608514129637,-26.398078301704608],[30.68596194837448,-26.74384531016953],[31.282773064913325,-27.285879408478998],[31.868060337051077,-27.177927341421277],[32.07166548028107,-26.73382008230491],[32.830120477028885,-26.742191664336197],[32.580264926897684,-27.470157566031816],[32.46213260267845,-28.301011244420557],[32.20338870619304,-28.752404880490072],[31.521001417778876,-29.257386976846252]],[[28.97826256685724,-28.955596612261715],[28.541700066855498,-28.64750172293757],[28.07433841320778,-28.851468601193588],[27.532511020627478,-29.24271087007536],[26.999261915807637,-29.875953871379984],[27.749397006956485,-30.64510588961222],[28.107204624145425,-30.54573211031495],[28.29106937023991,-30.2262167294543],[28.84839969250774,-30.070050551068253],[29.018415154748023,-29.74376555757737],[29.325166456832587,-29.257386976846252],[28.97826256685724,-28.955596612261715]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"French Southern and Antarctic Lands","adm0_a3":"ATF","geou_dif":0,"geounit":"French Southern and Antarctic Lands","gu_a3":"ATF","su_dif":0,"subunit":"French Southern and Antarctic Lands","su_a3":"ATF","brk_diff":0,"name":"Fr. S. Antarctic Lands","name_long":"French Southern and Antarctic Lands","brk_a3":"ATF","brk_name":"Fr. S. and Antarctic Lands","brk_group":null,"abbrev":"Fr. S.A.L.","postal":"TF","formal_en":"Territory of the French Southern and Antarctic Lands","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"French Southern and Antarctic Lands","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":140,"gdp_md_est":16,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TF","iso_a3":"ATF","iso_n3":"260","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"ATF","adm0_a3_us":"ATF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Seven seas (open ocean)","region_un":"Seven seas (open ocean)","subregion":"Seven seas (open ocean)","region_wb":"Sub-Saharan Africa","name_len":22,"long_len":35,"abbrev_len":10,"tiny":2,"homepart":-99,"filename":"ATF.geojson"},"geometry":{"type":"Polygon","coordinates":[[[68.935,-48.625],[69.58,-48.94],[70.525,-49.065],[70.56,-49.255],[70.28,-49.71],[68.745,-49.775],[68.72,-49.2425],[68.8675,-48.83],[68.935,-48.625]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Antarctica","sov_a3":"ATA","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Antarctica","adm0_a3":"ATA","geou_dif":0,"geounit":"Antarctica","gu_a3":"ATA","su_dif":0,"subunit":"Antarctica","su_a3":"ATA","brk_diff":0,"name":"Antarctica","name_long":"Antarctica","brk_a3":"ATA","brk_name":"Antarctica","brk_group":null,"abbrev":"Ant.","postal":"AQ","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Multiple claims held in abeyance","name_sort":"Antarctica","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":-99,"pop_est":3802,"gdp_md_est":760.4,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"AQ","iso_a3":"ATA","iso_n3":"010","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"ATA","adm0_a3_us":"ATA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Antarctica","region_un":"Antarctica","subregion":"Antarctica","region_wb":"Antarctica","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ATA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.57209469261152,-80.0401787250963],[-59.86584937197471,-80.54965667106185],[-60.1596557277702,-81.0003268370793],[-62.25539343936708,-80.86317758577665],[-64.48812537296976,-80.92193368929256],[-65.74166642928984,-80.58882740673914],[-65.74166642928984,-80.54965667106185],[-66.29003089055513,-80.25577280061799],[-64.03768775089765,-80.29494353629516],[-61.88324561221713,-80.39287037548829],[-61.13897579613345,-79.9813709451481],[-60.610119188058405,-79.62867929475613],[-59.57209469261152,-80.0401787250963]]],[[[-159.20818356019765,-79.49705942170873],[-161.12760128481463,-79.6342086730113],[-162.4398467682184,-79.28146534618702],[-163.02740780337697,-78.92877369579494],[-163.06660437727032,-78.86996591584676],[-163.71289567772874,-78.59566741324153],[-163.71289567772874,-78.59566660579728],[-163.10580095116381,-78.2233379111343],[-161.24511349184635,-78.38017588314015],[-160.2462080556445,-78.69364512142266],[-159.48240454815448,-79.04633757925899],[-159.20818356019765,-79.49705942170873]]],[[[-45.154757656421026,-78.04706960058674],[-43.920827806155756,-78.47810272233325],[-43.489949713706096,-79.08555999136846],[-43.37243750667437,-79.51664478954726],[-43.333266770997085,-80.02612273551293],[-44.88053666846429,-80.33964365022771],[-46.50617387550201,-80.59435678499432],[-48.38642086444178,-80.82948455192235],[-50.48210689960646,-81.02544158317312],[-52.85198808451178,-80.96668547965729],[-54.1642594061316,-80.63352752067158],[-53.98799109558405,-80.22202809033139],[-51.85313432474219,-79.94772958772609],[-50.99132646341059,-79.61462330517266],[-50.36459469257474,-79.18348683056163],[-49.91413123228651,-78.81120900488669],[-49.30695899107312,-78.45856903092692],[-48.66061601418252,-78.04701792415445],[-48.66061601418252,-78.04701873159868],[-48.1513964503784,-78.04706960058674],[-46.662856818211026,-77.83147552506503],[-45.154757656421026,-78.04706960058674]]],[[[-121.21151139385712,-73.50099049900604],[-119.91885127829205,-73.65772511814733],[-118.72414303269191,-73.4813534547352],[-119.29211870001195,-73.83409678155948],[-120.23221716370998,-74.08880991632616],[-121.62282995668426,-74.0104684449716],[-122.62173458544189,-73.65777760202388],[-122.62173539288612,-73.65777679457963],[-122.40624467022903,-73.32461883559391],[-121.21151139385712,-73.50099049900604]]],[[[-125.55956640689531,-73.4813534547352],[-124.03188187726685,-73.87326751723674],[-124.61946875064153,-73.83409678155948],[-125.91218054263891,-73.7361182659341],[-127.28312964568191,-73.46176889434082],[-127.28313045312618,-73.46176808689657],[-126.55847184309721,-73.24622568780717],[-125.55956640689531,-73.4813534547352]]],[[[-98.9815496488239,-71.93333424899978],[-97.88474321164503,-72.07053517673472],[-96.78793677446623,-71.9529712932707],[-96.20034990109144,-72.52120534275218],[-96.98376461463621,-72.44286387139763],[-98.19808325884685,-72.48203460707492],[-99.4320131091122,-72.44286387139763],[-100.78345516640921,-72.50161997491355],[-101.80186845580133,-72.30566294366277],[-102.33072506387637,-71.89416432076685],[-102.33072506387637,-71.89416351332261],[-101.70396745482444,-71.71779184991038],[-100.4309185453141,-71.85499277764532],[-98.9815496488239,-71.93333424899978]]],[[[-68.45134599473042,-70.95582285576674],[-68.3338337876987,-71.40649302178419],[-68.51012793646242,-71.79840708428573],[-68.78429724798698,-72.17073577894863],[-69.9594709947364,-72.3078850302513],[-71.07588863797014,-72.50384206150207],[-72.38813412137378,-72.48425669366343],[-71.89849992540829,-72.09234263116188],[-73.07362199572542,-72.22949188246454],[-74.19003963895906,-72.3666928101995],[-74.95389482288138,-72.07275726332324],[-75.01262508818121,-71.66125783298307],[-73.91581865100233,-71.26934457792576],[-73.91581865100233,-71.26934377048153],[-73.23033077665055,-71.15177988701751],[-72.07471655952355,-71.19095062269477],[-71.78096188016036,-70.68147267672913],[-71.72217993842844,-70.30919565849851],[-71.74179114448319,-69.5057821656568],[-71.17381547716315,-69.03547495536841],[-70.25325151231573,-68.8787403362272],[-69.72444658067306,-69.25101735445782],[-69.48942216660959,-69.62334604912073],[-69.05851823594381,-70.07401621513817],[-68.72554114447105,-70.50515268974928],[-68.45134599473042,-70.95582285576674]]],[[[-58.61414282900091,-64.15246713013315],[-59.045072597882864,-64.36800952922263],[-59.789342413966544,-64.21122323364905],[-60.61192786318869,-64.30920174927444],[-61.297415737540376,-64.54432951620257],[-62.022100185785426,-64.79909432740136],[-62.511760219966895,-65.09302987427752],[-62.648857794837376,-65.48494232189066],[-62.59012752953774,-65.85721934012136],[-62.120078701410705,-66.1903256226747],[-62.805566575762384,-66.42550506603496],[-63.745690070232364,-66.50384653738958],[-64.29410620792996,-66.83700449637522],[-64.88169308130463,-67.15047373465772],[-65.50842485214056,-67.58161020926892],[-65.66508195663327,-67.95388722749945],[-65.31254533553809,-68.36533498140741],[-64.78371456567932,-68.6789075725545],[-63.96110327824109,-68.91398366305017],[-63.197299770751044,-69.22755625419725],[-62.78595536970775,-69.6194186402665],[-62.57051632348291,-69.9917473349295],[-62.27673580590354,-70.38366139743104],[-61.80666113956059,-70.71676767998447],[-61.5129064601974,-71.08904469821508],[-61.375808885327125,-72.01007375095313],[-61.08197669131553,-72.38235076918383],[-61.00366105817719,-72.77426483168537],[-60.69026933454315,-73.16617889418708],[-60.82736690941343,-73.69524220799119],[-61.375808885327125,-74.10674163833137],[-61.96336992048569,-74.43984792088489],[-63.29520077172796,-74.57699717218738],[-63.745690070232364,-74.92974049901173],[-64.35283647322959,-75.26284678156516],[-65.86098731145177,-75.63512379979578],[-67.19281816269412,-75.79191009536945],[-68.44628170436576,-76.00745249445876],[-69.79772376166284,-76.22299489354818],[-70.60072384304624,-76.63449432388845],[-72.20677568224536,-76.67366505956572],[-73.96953630236966,-76.63449432388845],[-75.55597693551402,-76.7128874716752],[-77.2403702460676,-76.7128874716752],[-76.92697852243359,-77.10480153417674],[-75.39929399280493,-77.28106984472439],[-74.28287634957141,-77.55542002376181],[-73.65611874051945,-77.90811167415396],[-74.77253638375308,-78.22163258886867],[-76.49610042998401,-78.12365407324327],[-77.92585812041926,-78.37841888444225],[-77.98466590036747,-78.78991831478234],[-78.02378495961247,-79.18183318472822],[-76.84863705107912,-79.51493946728165],[-76.6332238430704,-79.88721648551227],[-75.36009741891175,-80.25954518017525],[-73.24485185412462,-80.41633147574875],[-71.44294633653922,-80.69062997835398],[-70.01316280788775,-81.00415089306878],[-68.19164608424754,-81.31767180778357],[-65.70427853052666,-81.47445810335725],[-63.2560300360507,-81.74875660596248],[-61.5520255194423,-82.04269215283854],[-59.69141557477345,-82.37585011182435],[-58.712121344626205,-82.84610564568034],[-58.222487148660925,-83.21843434034334],[-57.00811682801781,-82.86569101351907],[-55.36289425314155,-82.57175546664283],[-53.61977067728824,-82.25823455192803],[-51.543644171746024,-82.00352141716135],[-49.76134986021546,-81.72917123812375],[-47.27393063006221,-81.7095858702853],[-44.82570797380251,-81.84673512158777],[-42.80836340999238,-82.0819145649481],[-42.16202043310179,-81.65082976676929],[-40.771433478343596,-81.35689421989322],[-38.24481767429705,-81.33730885205458],[-36.26666968438022,-81.12171477653298],[-34.386396857224355,-80.90617237744347],[-32.31029618989831,-80.76902312614074],[-30.097097947701997,-80.59265146272868],[-28.5498022120187,-80.33793832796201],[-29.254901292425128,-79.98519500113764],[-29.685805223090963,-79.63250335074568],[-29.685805223090963,-79.26022633251497],[-31.62480831554663,-79.29939706819223],[-33.68132361503396,-79.45613168733344],[-35.639912075328255,-79.45613168733344],[-35.91410722506902,-79.08385466910292],[-35.777009650198714,-78.33924814876498],[-35.32654618991043,-78.12365407324327],[-33.89676266125886,-77.88852630631523],[-32.2123693507053,-77.65345021581956],[-30.99805070649461,-77.35951466894332],[-29.78373206228406,-77.06557912206725],[-28.882779303491358,-76.67366505956572],[-27.511751878355653,-76.49734507258579],[-26.16033565927475,-76.36014414485074],[-25.474821946706864,-76.28180267349629],[-23.92755204923978,-76.24258026138673],[-22.45859778491095,-76.10543101008425],[-21.22469377286177,-75.90947397883347],[-20.010375128651077,-75.67434621190543],[-18.91354285325616,-75.43921844497729],[-17.522981736714172,-75.1256975302625],[-16.641588507544014,-74.79253957127686],[-15.70149085129026,-74.49860402440063],[-15.407710333710867,-74.10674163833137],[-16.465320196996373,-73.87161387140341],[-16.11278357590126,-73.46011444106315],[-15.44685523117195,-73.14654184991608],[-14.408804897508986,-72.9505848186653],[-13.311972622113984,-72.71545705173733],[-12.293507656289563,-72.40193613702255],[-11.510067104528588,-72.01007375095313],[-11.020432908563038,-71.53976654066483],[-10.295774298534155,-71.2654163616273],[-9.101015183946089,-71.3242241415755],[-8.611380987980596,-71.65733042412884],[-7.416621873392415,-71.69650115980603],[-7.37745113771524,-71.3242241415755],[-6.868231573911117,-70.93231007907397],[-5.790984666354774,-71.03028859469927],[-5.53637488445267,-71.40261728936225],[-4.341667446296867,-71.46137339287807],[-3.048981492515594,-71.28505340589814],[-1.795492112627784,-71.16743784600183],[-0.659489101555522,-71.22624562595003],[-0.228636847322065,-71.6377450562903],[0.868195428072937,-71.30463877373678],[1.886686232113533,-71.12826711032474],[3.022637566753417,-70.99111785902207],[4.139055209987049,-70.85391693128703],[5.157546014027673,-70.61878916435909],[6.273911980828927,-70.46205454521778],[7.135719842160626,-70.24651214612838],[7.742866245157842,-69.89376881930403],[8.487110223025326,-70.148533630503],[9.525134718472202,-70.01133270276821],[10.249845004933434,-70.48163991305651],[10.81782067225339,-70.8343315634485],[11.953823683325652,-70.63837453219772],[12.404287143613942,-70.24651214612838],[13.422777947654394,-69.97216196709094],[14.734997592842005,-70.03091807060677],[15.126756626046586,-70.40324676526976],[15.949342075268646,-70.03091807060677],[17.02658898282516,-69.91335418714274],[18.201711053142333,-69.87418345146547],[19.259372592860046,-69.89376881930403],[20.37573855966147,-70.01133270276821],[21.452985467217815,-70.07014048271625],[21.923034295344735,-70.40324676526976],[22.569403110451447,-70.69718231214583],[23.66618370941421,-70.5208106487337],[24.841357456163593,-70.48163991305651],[25.977308790803644,-70.48163991305651],[27.093726434037276,-70.46205454521778],[28.092580193806867,-70.32485361748293],[29.15024173352458,-70.20728973401899],[30.03158328626253,-69.93293955498129],[30.97173261894861,-69.75661956800145],[31.99017174655685,-69.65864105237607],[32.75405276869529,-69.38429087333846],[33.30244306817676,-68.83564219169571],[33.8704187354966,-68.50258758557456],[34.908494907375854,-68.65927052828349],[35.30020226414822,-69.01201385510794],[36.16201012547978,-69.24714162203597],[37.20003462092657,-69.16874847424904],[37.9051078631168,-69.5214401246412],[38.649403517416914,-69.77620493584018],[39.66789432145733,-69.54107716891204],[40.020430942552565,-69.10994069430095],[40.92135786312909,-68.93362070732118],[41.95943403500823,-68.60051442476767],[42.9387024269391,-68.46331349703271],[44.113876173688624,-68.26740814221424],[44.897290887233424,-68.05186574312492],[45.719928012887834,-67.81673797619678],[46.503342726432635,-67.60119557710746],[47.443440382686305,-67.71875946057148],[48.34441897969512,-67.36606781017942],[48.9907361183696,-67.09171763114189],[49.93088545105567,-67.11130299898045],[50.75347090027773,-66.8761752320524],[50.94932457866392,-66.52348358166043],[51.791547072157044,-66.2491334026229],[52.614132521378934,-66.05317637137213],[53.613037957580815,-65.89639007579855],[54.533550245996054,-65.818048604444],[55.41494347516621,-65.8768047079599],[56.35504113141988,-65.97478322358538],[57.15809288923568,-66.2491334026229],[57.25596805199646,-66.68021820080163],[58.13736128116661,-67.01332448335515],[58.74450768416394,-67.28767466239267],[59.939318475184244,-67.40523854585669],[60.605220981697435,-67.6795887248942],[61.427806430919325,-67.95388722749945],[62.38748945501166,-68.01269500744755],[63.190489536395226,-67.81673797619678],[64.05234907415901,-67.40523854585669],[64.99244673041292,-67.62072926851371],[65.97171512234397,-67.73834482841004],[66.91186445502976,-67.85590871187414],[67.89113284696091,-67.9343018596608],[68.89003828316291,-67.9343018596608],[69.71262373238474,-68.97279144299837],[69.67345299670748,-69.22755625419725],[69.55594078967582,-69.67822642021471],[68.59625776558347,-69.93293955498129],[67.81273969917416,-70.30526824964429],[67.94988895047666,-70.69718231214583],[69.06630659371027,-70.67754526787499],[68.92915734240776,-71.06945933037653],[68.41998945503596,-71.44178802503953],[67.94988895047666,-71.85328745537961],[68.71376997261515,-72.16680837009442],[69.86930667509395,-72.2647868857198],[71.02489505400457,-72.08841522230775],[71.57328535348606,-71.69650115980603],[71.90628828317492,-71.3242241415755],[72.45462690622404,-71.01070322686063],[73.08141035349209,-70.71676767998447],[73.3360201353942,-70.3640243531602],[73.86487674346924,-69.87418345146547],[74.49155683787271,-69.77620493584018],[75.62755984894497,-69.73703420016281],[76.62646528514685,-69.6194186402665],[77.64490441275527,-69.4626840211253],[78.13453860872059,-69.07076995862376],[78.42837080273225,-68.69844126396067],[79.11385867708393,-68.32621592216243],[80.09312706901486,-68.07150278739576],[80.93534956250775,-67.87554575614499],[81.48379153842144,-67.54238779715926],[82.05176720574146,-67.36606781017942],[82.7764258157704,-67.20928151460592],[83.7753312519724,-67.30726003023122],[84.67620649611663,-67.20928151460592],[85.65552656447997,-67.09171763114189],[86.75235883987486,-67.15047373465772],[87.4770174499038,-66.8761752320524],[87.98628869014024,-66.20991099051335],[88.35841067907394,-66.48426116955086],[88.82840783076855,-66.95456837983923],[89.67063032426157,-67.15047373465772],[90.6303650247863,-67.22886688244446],[91.59009972531081,-67.11130299898045],[92.60853885291905,-67.1896961467672],[93.54863650917295,-67.20928151460592],[94.17541995644099,-67.11130299898045],[95.01759077350167,-67.17011077892865],[95.78147179564027,-67.38565317801798],[96.6823987162168,-67.24850392671549],[97.75964562377312,-67.24850392671549],[98.68020958862056,-67.11130299898045],[99.71818240763504,-67.24850392671549],[100.38418826701276,-66.91534596772968],[100.89335615438468,-66.58223968517625],[101.57889570516855,-66.30788950613864],[102.83241092327265,-65.56328379324512],[103.47867638551477,-65.70048472097997],[104.2425574076531,-65.97478322358538],[104.90845991416623,-66.32752655040964],[106.18156050010876,-66.9349313355684],[107.1608805684721,-66.95456837983923],[108.08139285688715,-66.95456837983923],[109.15863976444368,-66.83700449637522],[110.23583499556784,-66.69980356864036],[111.05847212122208,-66.42550506603496],[111.74395999557393,-66.13156951915889],[112.86037763880748,-66.09234710704932],[113.60467329310735,-65.8768047079599],[114.38808800665205,-66.07276173921068],[114.89730757045626,-66.38628265392548],[115.60238081264653,-66.69980356864036],[116.69916141160942,-66.66063283296299],[117.38470096239321,-66.91534596772968],[118.57946007698128,-67.17011077892865],[119.8329236186531,-67.26808929455395],[120.87099979053217,-67.1896961467672],[121.65441450407708,-66.8761752320524],[122.32036868702235,-66.56265431733769],[123.22129560759893,-66.48426116955086],[124.12227420460762,-66.6214620972859],[125.16024702362223,-66.71938893647891],[126.10039635630838,-66.56265431733769],[127.00142662974932,-66.56265431733769],[127.88276818248723,-66.66063283296299],[128.8032804709024,-66.75861134858846],[129.70425906791115,-66.58223968517625],[130.78145429903543,-66.42550506603496],[131.79994510307588,-66.38628265392548],[132.93589643771614,-66.38628265392548],[133.85646040256339,-66.28830413830009],[134.7573873231399,-66.20996266694563],[135.03158247288073,-65.72007008881862],[135.07075320855782,-65.30857065847843],[135.69748497939358,-65.58286916108366],[135.8738049663735,-66.03359100353342],[136.2067045431978,-66.44509043387367],[136.6180489442411,-66.77819671642702],[137.46027143773395,-66.95456837983923],[138.59622277237415,-66.89576059989113],[139.90844241756147,-66.8761752320524],[140.8094210145703,-66.81736745210438],[142.1216923361902,-66.81736745210438],[143.06184166887616,-66.79778208426566],[144.3740613140637,-66.83700449637522],[145.49042728086502,-66.91534596772968],[146.19555219948782,-67.22886688244446],[145.99969852110152,-67.60119557710746],[146.64606733620823,-67.8951311239837],[147.72326256733234,-68.13025889091166],[148.8396285341337,-68.38502370211054],[150.1323144879149,-68.56129201265819],[151.4837048687796,-68.71812998466397],[152.50224734925249,-68.87481292737299],[153.63819868389257,-68.8945016480761],[154.28456749899928,-68.56129201265819],[155.16585737530485,-68.83564219169571],[155.92979007387547,-69.14921478284279],[156.8111316266134,-69.38429087333846],[158.0255277854724,-69.48226938896394],[159.18101281151874,-69.59983327242796],[159.67069868391653,-69.9917473349295],[160.8066500185565,-70.22687510185754],[161.57047936426278,-70.57961842868181],[162.68689700749636,-70.73635304782319],[163.84243370997493,-70.71676767998447],[164.9196806175312,-70.77552378350029],[166.11443973211945,-70.75593841566175],[167.309095493843,-70.8343315634485],[168.42561648994118,-70.97148081475106],[169.46358930895596,-71.2066602581114],[170.50166548083504,-71.40261728936225],[171.20679039945762,-71.69650115980603],[171.08922651599377,-72.08841522230775],[170.56042158435073,-72.44115854913211],[170.1099581240624,-72.89182871514939],[169.75736982653515,-73.24452036554155],[169.2873209984083,-73.65601979588163],[167.97510135322077,-73.81280609145513],[167.38748864162972,-74.16549774184719],[166.09480268784844,-74.3810401409366],[165.64439090399244,-74.77295420343815],[164.9588513532086,-75.14528289810123],[164.23419274317968,-75.45880381281593],[163.82279666570392,-75.8703032431562],[163.56823856023428,-76.24258026138673],[163.47026004460898,-76.69330210383656],[163.48989708887976,-77.06557912206725],[164.05787275619977,-77.45744150813643],[164.27336347885696,-77.82977020279932],[164.74346398341615,-78.18251352962376],[166.60412560451735,-78.31961110449406],[166.99578128485743,-78.75074757910525],[165.193875767272,-78.9074830056907],[163.66621707585958,-79.12302540478002],[161.7663847190811,-79.16224781688966],[160.9241622255883,-79.73048186637098],[160.74789391504075,-80.20073740022715],[160.31696414615868,-80.57306609488995],[159.78821089094842,-80.94539478955305],[161.1200159039744,-81.27850107210647],[161.62928714421088,-81.69000050244657],[162.49099165267805,-82.06227752067727],[163.70533613510474,-82.3954354796629],[165.09594892807885,-82.70895639437778],[166.60412560451735,-83.02247730909258],[168.89566531806796,-83.33599822380737],[169.40478152900758,-83.82589080193438],[172.28393395414938,-84.0414332010237],[172.47704878162415,-84.11791432081567],[173.2240832868354,-84.41371021925441],[175.9856718285131,-84.15899708448764],[178.27721154206407,-84.47251799920242],[180.00000000000014,-84.71338],[180.00000000000014,-90],[-180,-90],[-180,-84.71338],[-179.9424993561789,-84.72144337355249],[-179.0586773346912,-84.1394117166491],[-177.25677181710574,-84.45293263136388],[-177.14080667326579,-84.41794122714832],[-176.0846728180776,-84.09925912875842],[-175.94723461362776,-84.11044871021662],[-175.82988216866252,-84.11791432081567],[-174.3825028148157,-84.53432301222357],[-173.11655941474547,-84.11791432081567],[-172.8891055980128,-84.06101856886234],[-169.95122290757143,-83.88464690545011],[-168.9999889801586,-84.11791432081567],[-168.53019853419323,-84.23739023227448],[-167.02209937240332,-84.5704965148279],[-164.18214352115507,-84.82520964959458],[-161.92977454328138,-85.13873056430938],[-158.07137956442494,-85.3739100076697],[-155.1922529774993,-85.0995598286321],[-150.94209896543802,-85.29551685988288],[-148.5330728830715,-85.60903777459767],[-145.88891822633298,-85.31510222772161],[-143.10771847860042,-85.04075204868391],[-142.89227943237563,-84.5704965148279],[-146.8290683664633,-84.53127410271834],[-150.06073157448395,-84.29614633579038],[-150.9029282297607,-83.90423227328884],[-153.5862011383002,-83.68868987419935],[-153.40990698953647,-83.23801970818207],[-153.0377591623864,-82.82652027784181],[-152.66563717345275,-82.45419158317881],[-152.86151669005505,-82.04269215283854],[-154.5262987945539,-81.7683936502333],[-155.2901798166924,-81.41565032340904],[-156.8374497141595,-81.10212940869425],[-154.40878658752223,-81.16093718864245],[-152.09766150613282,-81.00415089306878],[-150.64829260964262,-81.33730885205458],[-148.86599829811206,-81.04337330517833],[-147.2207498850195,-80.67104461051542],[-146.41774899619185,-80.33793832796201],[-146.77028642473118,-79.9264388976219],[-148.06294654029637,-79.65208871858422],[-149.5319008046251,-79.35820484814045],[-151.5884161041124,-79.29939706819223],[-153.39032162169778,-79.16224781688966],[-155.32937639058574,-79.06426930126419],[-155.97566769104418,-78.69193979915704],[-157.26830196839305,-78.37841888444225],[-158.0517683583701,-78.0256755576179],[-158.36513424378796,-76.88920745865494],[-157.87547420960635,-76.98723765071261],[-156.97457312724595,-77.30075856542751],[-155.32937639058574,-77.20272837336975],[-153.74283240457675,-77.06557912206725],[-152.92024695535477,-77.49666392024598],[-151.3337804839943,-77.3987370810528],[-150.00194963275194,-77.18314300553119],[-148.74848609108034,-76.90884450292597],[-147.61248308000808,-76.57573822037253],[-146.10440894899,-76.47775970474706],[-146.14352800823497,-76.10543101008425],[-146.49609127499048,-75.73315399185354],[-146.202309949967,-75.38041066502917],[-144.90962399618576,-75.20403900161696],[-144.32203712281108,-75.53719696060276],[-142.79435259318262,-75.341239929352],[-141.63876421427162,-75.08647511815295],[-140.20900652383617,-75.06688975031439],[-138.85759030475535,-74.96891123468892],[-137.50619992389045,-74.73378346776096],[-136.42890133990193,-74.51824106867164],[-135.2145826956913,-74.30269866958214],[-134.43119382036258,-74.36145477309796],[-133.74565426957855,-74.43984792088489],[-132.25716792873206,-74.30269866958214],[-130.92531123927358,-74.47901865656199],[-129.55428381413776,-74.45943328872343],[-128.24203833073426,-74.3222840374207],[-126.89062211165324,-74.42026255304617],[-125.40208247948578,-74.51824106867164],[-124.01149552472761,-74.47901865656199],[-122.5621524664536,-74.49860402440063],[-121.07361283428624,-74.51824106867164],[-119.70255957093421,-74.47901865656199],[-118.68414547409793,-74.18508310968583],[-117.46980099167122,-74.02834849054462],[-116.2163116117834,-74.24389088963395],[-115.02155249719543,-74.06751922622189],[-113.94433142785508,-73.71482757582983],[-113.29798845096448,-74.02834849054462],[-112.94545182986937,-74.3810401409366],[-112.29908301476257,-74.7141980999224],[-111.26105851931563,-74.42026255304617],[-110.06632524294372,-74.79253957127686],[-108.71490902386272,-74.91010345474089],[-107.55934648316811,-75.18445363377842],[-106.14914832235502,-75.1256975302625],[-104.87607357462866,-74.94932586685044],[-103.36794857462266,-74.98849660252765],[-102.01650651732564,-75.1256975302625],[-100.64553076862231,-75.30201751724243],[-100.11669999876325,-74.87093271906353],[-100.76304297565393,-74.53782643651019],[-101.25270300983553,-74.18508310968583],[-102.5453372871845,-74.10674163833137],[-103.11331295450454,-73.73441294366839],[-103.32875200072928,-73.36208424900556],[-103.68128862182438,-72.61753021254415],[-102.91748511433435,-72.75467946384681],[-101.60523963093073,-72.81343556736263],[-100.31252783893345,-72.75467946384681],[-99.1373799304001,-72.9114140829881],[-98.11888912635946,-73.20534962986417],[-97.68803687212609,-73.55804128025633],[-96.3365948148289,-73.61684906020436],[-95.04396053747983,-73.47969980890187],[-93.6729072741281,-73.28374277765093],[-92.43900326207896,-73.16617889418708],[-91.42056413447071,-73.40130666111513],[-90.08873328322844,-73.3229135133282],[-89.22695126011294,-72.55872243259596],[-88.4239511787295,-73.0093925986134],[-87.26833696160261,-73.18576426202563],[-86.01482174349842,-73.08778574640016],[-85.19223629427657,-73.47969980890187],[-83.87999081087275,-73.51887054457897],[-82.66564632844602,-73.63643442804309],[-81.47091305207414,-73.8519768271324],[-80.68744666209699,-73.47969980890187],[-80.295790981757,-73.12695648207743],[-79.29688554555499,-73.51887054457897],[-77.92585812041926,-73.42089202895359],[-76.90736731637874,-73.63643442804309],[-76.22187944202707,-73.96954071059642],[-74.8900485907848,-73.87161387140341],[-73.85202409533792,-73.65601979588163],[-72.83353329129741,-73.40130666111513],[-71.61921464708686,-73.26415740981237],[-70.20904232448996,-73.14654184991608],[-68.93591590033121,-73.0093925986134],[-67.95662167018409,-72.79385019952409],[-67.36906063502559,-72.4803292848093],[-67.13403622096203,-72.04924448663039],[-67.25154842799367,-71.6377450562903],[-67.5649401516279,-71.24583099378876],[-67.917476772723,-70.85391693128703],[-68.23084265814092,-70.46205454521778],[-68.48545244004302,-70.10931121839351],[-68.54420854355894,-69.71739715589197],[-68.44628170436576,-69.32553476982272],[-67.9762328762389,-68.95320607515973],[-67.58449968125032,-68.54170664481947],[-67.42784257675751,-68.14984425875022],[-67.6236704169277,-67.71875946057148],[-67.74118262395933,-67.32684539806993],[-67.25154842799367,-66.8761752320524],[-66.70318396672857,-66.58223968517625],[-66.05681515162186,-66.20996266694563],[-65.37132727727008,-65.89639007579855],[-64.5682755194544,-65.60250620535467],[-64.17654232446583,-65.17142302206445],[-63.62815202498453,-64.89707284302675],[-63.00139441593256,-64.64230803182787],[-62.04168555362398,-64.58355192831195],[-61.414927944572014,-64.27003101359716],[-60.709854702381705,-64.07407398234639],[-59.88726925315956,-63.95651009888237],[-59.16258480491453,-63.70174528768357],[-58.59455746116228,-63.388224372968594],[-57.81114274761751,-63.27066048950457],[-57.22358171245884,-63.52542530070364],[-57.595729539608875,-63.85853158325706],[-58.61414282900091,-64.15246713013315]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Zimbabwe","sov_a3":"ZWE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Zimbabwe","adm0_a3":"ZWE","geou_dif":0,"geounit":"Zimbabwe","gu_a3":"ZWE","su_dif":0,"subunit":"Zimbabwe","su_a3":"ZWE","brk_diff":0,"name":"Zimbabwe","name_long":"Zimbabwe","brk_a3":"ZWE","brk_name":"Zimbabwe","brk_group":null,"abbrev":"Zimb.","postal":"ZW","formal_en":"Republic of Zimbabwe","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Zimbabwe","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":3,"mapcolor13":9,"pop_est":12619600,"gdp_md_est":9323,"pop_year":0,"lastcensus":2002,"gdp_year":0,"economy":"5. Emerging region: G20","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ZW","iso_a3":"ZWE","iso_n3":"716","un_a3":"716","wb_a2":"ZW","wb_a3":"ZWE","woe_id":-99,"adm0_a3_is":"ZWE","adm0_a3_us":"ZWE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ZWE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.191409132621285,-22.2515096981724],[30.65986535006709,-22.151567478119915],[30.322883335091774,-22.27161183033393],[29.839036899542972,-22.102216485281176],[29.43218834810904,-22.091312758067588],[28.794656202924212,-21.63945403410745],[28.021370070108617,-21.485975030200585],[27.72722781750326,-20.851801853114715],[27.724747348753255,-20.499058526290387],[27.296504754350508,-20.391519870691],[26.164790887158485,-19.29308562589494],[25.85039147309473,-18.714412937090536],[25.649163445750162,-18.53602589281899],[25.264225701608012,-17.736539808831417],[26.381935255648926,-17.8460421688579],[26.70677330903564,-17.961228936436484],[27.04442711763073,-17.938026218337434],[27.598243442502756,-17.290830580314008],[28.467906121542683,-16.468400160388846],[28.825868768028496,-16.389748630440614],[28.947463413211263,-16.04305144619444],[29.516834344203147,-15.644677829656388],[30.274255812305107,-15.507786960515212],[30.338954705534544,-15.880839125230244],[31.173063999157677,-15.860943698797872],[31.636498243951195,-16.071990248277885],[31.8520406430406,-16.319417006091378],[32.32823896661022,-16.392074069893752],[32.847638787575846,-16.713398125884616],[32.84986087416439,-17.97905730557718],[32.65488569512715,-18.672089939043495],[32.61199425632489,-19.419382826416275],[32.772707960752626,-19.715592136313298],[32.65974327976258,-20.304290052982317],[32.50869306817344,-20.395292250248307],[32.244988234188014,-21.116488539313693],[31.191409132621285,-22.2515096981724]]]}}]} \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/resources/polygons/countriesUHD.json b/GlobalQuakeCore/src/main/resources/polygons/countriesUHD.json deleted file mode 100644 index f239ed7..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons/countriesUHD.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Albania","sov_a3":"ALB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Albania","adm0_a3":"ALB","geou_dif":0,"geounit":"Albania","gu_a3":"ALB","su_dif":0,"subunit":"Albania","su_a3":"ALB","brk_diff":0,"name":"Albania","name_long":"Albania","brk_a3":"ALB","brk_name":"Albania","brk_group":null,"abbrev":"Alb.","postal":"AL","formal_en":"Republic of Albania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Albania","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":3639453,"gdp_md_est":21810,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"AL","iso_a2":"AL","iso_a3":"ALB","iso_n3":"008","un_a3":"008","wb_a2":"AL","wb_a3":"ALB","woe_id":23424742,"woe_id_eh":23424742,"woe_note":"Exact WOE match as country","adm0_a3_is":"ALB","adm0_a3_us":"ALB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ALB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.747765747000074,42.57890085900007],[19.746008749000083,42.579934387000065],[19.741357870000115,42.574405009000145],[19.73391646400009,42.56259694500005],[19.73215946400012,42.555543111000134],[19.730299113000115,42.540427755000024],[19.730919230000097,42.53365814300008],[19.7343298750001,42.52438222300006],[19.751589803000087,42.49340220200014],[19.784456014000025,42.47456614300012],[19.801405884000133,42.46813242600007],[19.81959598800009,42.466478780000045],[19.82906279900007,42.46872253700005],[19.835512329000093,42.470251160000146],[19.873339477000087,42.48683929500007],[19.882537883000083,42.49340220200014],[19.882744588000037,42.493557231000096],[19.882744588000037,42.493608907000095],[19.907549276000083,42.50639882400009],[19.956331828000117,42.50531362000007],[19.981756632000042,42.51076548300005],[20.017723429000114,42.54624135300008],[20.039220825000143,42.55776519900013],[20.064955688000055,42.54675811800004],[20.085626261000073,42.53001495400008],[20.135545695000133,42.50962860100014],[20.15239221200011,42.493712260000024],[20.152598918000052,42.493712260000024],[20.152598918000052,42.493608907000095],[20.152702271000095,42.49342804000013],[20.152702271000095,42.49340220200014],[20.180814249000036,42.44309519500007],[20.18629195200012,42.43743662500012],[20.199727824000064,42.4277989710001],[20.20468876100011,42.42009918200003],[20.204378703000117,42.41183095300008],[20.19404341600011,42.400100403000096],[20.192803182000088,42.39369252600005],[20.19745406100014,42.387439677000145],[20.21306034300008,42.37751780200005],[20.218848104000074,42.37144582200011],[20.221225220000093,42.36372019500001],[20.219468221000113,42.35020680800005],[20.220915161000107,42.34310129800011],[20.22959680200009,42.326719869000044],[20.237761678000084,42.319924419000095],[20.249647257000017,42.31860666900005],[20.317963501000094,42.31982106500007],[20.333363078000076,42.31788320000007],[20.45697310400007,42.250497132000135],[20.473664576000086,42.23712300200006],[20.481674439000074,42.23070505800006],[20.500794719000055,42.211223043000075],[20.53862186700013,42.150115662000076],[20.54937056500006,42.123476461000024],[20.551954386000148,42.105803122000026],[20.552161092000116,42.07378957200012],[20.55825891100008,42.05510854100007],[20.589678182000114,41.993639425000055],[20.59432906100008,41.97371816000003],[20.59928999800013,41.960566509000074],[20.59928999800013,41.94787994400011],[20.58874800600006,41.929586488000034],[20.580583130000036,41.92173166900011],[20.573348430000067,41.91767507000011],[20.567250611000105,41.91217153000011],[20.562496379000038,41.90010508200004],[20.562703084000077,41.89284454400006],[20.56776737500007,41.88051971500002],[20.56714725800009,41.873181662000036],[20.54172245200007,41.86158030200008],[20.54078621900007,41.84486463200008],[20.540482218000136,41.83943695100007],[20.54844038900012,41.8141930130001],[20.550136327000104,41.80006020100012],[20.550920858000094,41.79352244100008],[20.54440962800001,41.7847632860001],[20.521155232000098,41.76765838700007],[20.511336710000137,41.75794321700002],[20.503275187000042,41.74463653600008],[20.500381307000055,41.73409454400013],[20.50833947800001,41.66174753900009],[20.513403768000103,41.64040517200007],[20.53459110500006,41.594025574000085],[20.534670174000013,41.587324468000105],[20.534694458000075,41.58526641900011],[20.52932010900011,41.574879456000076],[20.5208451740001,41.568368225000114],[20.50740930200007,41.56227040600004],[20.492939901000028,41.55767120400009],[20.44415734900008,41.54966135600011],[20.447878052000075,41.53545033800006],[20.4449841710001,41.50847524100004],[20.452012166000117,41.49359242700009],[20.463174275000142,41.48976837200004],[20.470822388000016,41.483773905000106],[20.48159697500006,41.46826901200012],[20.48353479000008,41.46548044900004],[20.486842082000063,41.457780660000054],[20.488909139000043,41.441450908000036],[20.49087284300006,41.436024883000044],[20.498004191000092,41.4314773560001],[20.514644002000125,41.429461976000056],[20.52218876100008,41.42568959600003],[20.534074341000093,41.41297719400009],[20.539048843000018,41.40294387500009],[20.540172160000054,41.40067820200005],[20.53996545400011,41.38713897700006],[20.532937459000095,41.37044749000003],[20.523428995000103,41.356804912000115],[20.510406534000083,41.34440256800005],[20.496040487000073,41.33778798500006],[20.481674439000074,41.341198629000075],[20.47810834000006,41.32158509000004],[20.477747029000113,41.3195978810001],[20.483121379000067,41.28947052000012],[20.50007124800007,41.23552032500007],[20.512680297000088,41.21014719700008],[20.549680623000143,41.170614726000025],[20.565493611000136,41.14741200800003],[20.570557902000104,41.12482940700007],[20.569937785000064,41.107104390000075],[20.57696578000005,41.09351348900009],[20.597419353000074,41.08627262500005],[20.60528446400005,41.08348826100007],[20.618927042000053,41.08240305600006],[20.63153609200009,41.08286814400009],[20.634128612000094,41.0825761940001],[20.6430082600001,41.081576233000135],[20.65386031000014,41.07527170800003],[20.66409224400013,41.05914866200004],[20.683419230000084,40.9938296520001],[20.702746216000033,40.93631378200007],[20.717215617000075,40.91321441700009],[20.730572639000087,40.904611095000035],[20.7408834230001,40.897969870000054],[20.766101522000042,40.8937324020001],[20.78367150900004,40.899055074000046],[20.81695113100008,40.92024241100009],[20.83654426400011,40.923903755000076],[20.837414999000117,40.924066468000035],[20.89022831200009,40.91827870700007],[20.939941040000093,40.907064921000114],[20.956684204000027,40.89476593100008],[20.964849080000135,40.87595570900007],[20.965262492000075,40.84939402300006],[20.96701949000004,40.80200673400009],[20.96092167100008,40.7807677210001],[20.943661743000092,40.76526479100011],[20.953480265000053,40.75916697200003],[20.95720096800008,40.751622213000076],[20.959164673000117,40.743560689000105],[20.9635054930001,40.73606760700005],[20.992030884000144,40.71550038700007],[21.018592570000067,40.69090240500009],[21.028824503000124,40.676846416000075],[21.035335734000114,40.65937978100004],[21.036679321000065,40.63974273700009],[21.033165324,40.621397604],[21.022519979000037,40.58661936500005],[21.020762980000143,40.57509552100004],[21.02034956800011,40.56677561400008],[21.01879927600001,40.55897247300004],[21.013528280000088,40.5488955700001],[21.00670699000011,40.54321116200006],[20.99750858500002,40.53918039900006],[20.988310181000116,40.533495993000116],[20.981488891000083,40.52326405800005],[20.968569783000078,40.520576884],[20.957924439000067,40.51494415300007],[20.951929973000034,40.50605580700008],[20.95265344200004,40.4936534630001],[20.949759562000054,40.48786570200011],[20.946452270000066,40.48290476500008],[20.93684045400005,40.472517802000056],[20.911932413000073,40.45954701800014],[20.889608195000108,40.46373280900008],[20.8667672120001,40.472052714000114],[20.83999882000012,40.471639303000096],[20.8266663010001,40.46481801400005],[20.82129195100015,40.456394756000066],[20.81736454300008,40.446834615000085],[20.80919966600007,40.436602682000085],[20.80031132000005,40.43277862600007],[20.7795373940001,40.429006246000114],[20.770649048000077,40.42197825100004],[20.768995402000144,40.41257314000006],[20.773336223000115,40.385339661000074],[20.77385298700005,40.37490102200013],[20.770442342000138,40.362550354000064],[20.765998168000124,40.354282125000026],[20.75504276500004,40.33862416600007],[20.739552404000108,40.30916637200008],[20.736645955000142,40.30363922100008],[20.728791138000105,40.29826487300011],[20.717835734000033,40.29392405200013],[20.70698368400008,40.28808461600005],[20.699128866000137,40.27836944600011],[20.694581339000106,40.2555801390001],[20.696648397000075,40.23558136000008],[20.696441691000132,40.21506581700001],[20.685279582000074,40.1911913050001],[20.6798018800001,40.18783233700008],[20.665022420000096,40.18437001600006],[20.66037154100013,40.17889231400008],[20.659854777000078,40.1727428180001],[20.663162068000076,40.16168406200009],[20.663472127000148,40.15661977200003],[20.66822635900007,40.13806793300009],[20.66677941900008,40.13352040600006],[20.651793254000097,40.10101593100012],[20.647555786000055,40.0940396120001],[20.640217733000043,40.09011220300005],[20.615361181000083,40.08101733900008],[20.577792602000073,40.06727122000004],[20.552884562000116,40.06541086900003],[20.499864543000115,40.07145701100009],[20.481674439000074,40.06778798500008],[20.4659648030001,40.06081166600009],[20.432788533000092,40.063808899],[20.41377160600012,40.05719431600011],[20.40043908700011,40.04525706000007],[20.38907027200011,40.029444072000075],[20.380698690000116,40.01166737900013],[20.376461222000074,39.99373565700006],[20.35992476400008,39.99104848200005],[20.31000533000011,39.989859925000104],[20.297913045000143,39.986914368000015],[20.302977335000037,39.97911122700009],[20.317963501000094,39.9183914190001],[20.323131144000087,39.91239695200008],[20.346902303000064,39.894258525000055],[20.392997680000065,39.83545074500006],[20.397028442000078,39.81808746300003],[20.38896691900007,39.79814036100004],[20.371603637000074,39.78429107700006],[20.35455041500012,39.785789693000055],[20.33687707600012,39.794006246000095],[20.299576529000092,39.80505640700011],[20.298326457000144,39.80542673700009],[20.288404581000066,39.80661529600013],[20.28003299900007,39.803979797000096],[20.273005005000073,39.79648671500007],[20.27548547400005,39.79240427700006],[20.281376587000036,39.7881668090001],[20.28468387800004,39.78031199200006],[20.283133586000133,39.775144348000076],[20.276829061000115,39.7631554160001],[20.27569217900009,39.76005483000008],[20.278172648000062,39.75674753800007],[20.285510701000078,39.749667868000046],[20.287267700000143,39.746670634000054],[20.2910917560001,39.737937317000075],[20.296466105000064,39.73349314400005],[20.299463339000056,39.72822214800004],[20.296466105000064,39.71737009700007],[20.282720174000104,39.70439931200005],[20.264116658000148,39.6960794070001],[20.249027140000067,39.68481394400004],[20.246029907000032,39.662903137000086],[20.237244914000144,39.667037252000085],[20.228563273000105,39.66915598600008],[20.220088338000096,39.66915598600008],[20.212026815000115,39.667037252000085],[20.20417199700006,39.660319316000084],[20.20303511600005,39.65261952700006],[20.20344852700006,39.6453331510001],[20.19993453000012,39.64006215400008],[20.18412154100011,39.63701324500005],[20.163761027000078,39.64429962200012],[20.135235636000033,39.664195048000124],[20.08934696400007,39.68279856400008],[20.049556111000072,39.692720438000066],[20.016069784000052,39.70140208000004],[19.999909785591484,39.69349825129129],[19.999847852000073,39.69350820500006],[19.996836785000053,39.692572333000065],[19.99586022200009,39.686712958000044],[19.989024285000085,39.686712958000044],[19.983571811000047,39.70136139500005],[19.986989780000044,39.717962958],[20.002696160000113,39.748236395000106],[19.985606316000055,39.753729559000135],[19.98064212300011,39.75731028900009],[19.99586022200009,39.782945054000066],[20.014170769000145,39.832953192000105],[20.016286655000073,39.845038153000104],[20.009776238000086,39.86566803600002],[19.999278191000087,39.8714053410001],[19.9837345710001,39.872381903000075],[19.961680535000113,39.878566799000055],[19.960215691000144,39.88104889500008],[19.95997155000009,39.88507721600013],[19.95883222700007,39.889349677000034],[19.95484459700009,39.89280833500004],[19.941172722000147,39.8989932310001],[19.931162957000055,39.90192291900012],[19.914073113000114,39.9024112000001],[19.906423373000077,39.90643952000008],[19.906423373000077,39.91266510600005],[19.92123457100007,39.926947333000044],[19.9310001960001,39.93451569200007],[19.941172722000147,39.940008856000105],[19.923838738000143,39.95282623900004],[19.87680097700013,40.022365627000056],[19.8704533210001,40.0347354190001],[19.86345462300005,40.045355536000045],[19.85523522200012,40.04987213700008],[19.82325280000012,40.05060455900011],[19.807383660000113,40.052883205000086],[19.796560092000107,40.05731842700007],[19.804535352000073,40.06346263200003],[19.777354363000143,40.077785549000026],[19.77312259200005,40.07123444200005],[19.771657748000077,40.06830475500004],[19.770518425000144,40.06346263200003],[19.767263217000107,40.07245514500007],[19.762461785000113,40.07684967700004],[19.756358269000117,40.07990143400005],[19.749359571000127,40.08462148600006],[19.748057488000143,40.08860911700012],[19.7408960300001,40.1004092470001],[19.73267662900011,40.11025625200003],[19.729014519000145,40.1082217470001],[19.719086134000037,40.11603424700007],[19.653168165000096,40.1323916690001],[19.59782962300011,40.157700914000145],[19.565765821000127,40.179836330000114],[19.509287957000083,40.194484768000024],[19.47624759200005,40.21369049700007],[19.381114129000053,40.2952334660001],[19.369965040000125,40.30902741100001],[19.365082227000073,40.317368882000096],[19.351573113000086,40.362046617000146],[19.34424889400009,40.374335028000104],[19.3092554050001,40.40082428600007],[19.296885613000143,40.41356028900012],[19.29517662900014,40.4175479190001],[19.29517662900014,40.41868724200014],[19.289561394000145,40.42039622600004],[19.289561394000145,40.42723216400006],[19.316172722000086,40.43781159100009],[19.33253014400009,40.43891022300004],[19.34815514400009,40.43065013200007],[19.38379967500012,40.397406317000076],[19.393239780000044,40.38629791900004],[19.406504754000082,40.362616278000104],[19.41195722700013,40.34808991100007],[19.41423587300008,40.334418036000045],[19.42359459700012,40.33002350500007],[19.444590691000055,40.33380768400007],[19.465586785000113,40.3414981140001],[19.474945509000037,40.34837474200011],[19.481618686000104,40.43911367400011],[19.478770379000053,40.45392487200007],[19.453135613000086,40.465318101000065],[19.418793165000125,40.491888739000096],[19.391368035000085,40.52179596600007],[19.38640384200005,40.5432803410001],[19.393239780000044,40.53705475500004],[19.39600670700011,40.52960846600006],[19.39861087300011,40.52094147300008],[19.406748894000117,40.52277252800005],[19.41423587300008,40.52277252800005],[19.433604363000114,40.505926825000046],[19.446055535000113,40.51113515800006],[19.45264733200011,40.529852606000105],[19.45460045700014,40.55385976800005],[19.44214928500014,40.5730654970001],[19.41570071700005,40.58348216400009],[19.39161217500012,40.578314520000106],[19.38640384200005,40.55072663000007],[19.379242384000094,40.56614817900001],[19.309825066000144,40.64435455900011],[19.304372592000107,40.65314362200007],[19.309336785000085,40.66502513200004],[19.322927280000044,40.67487213700005],[19.339040561000104,40.68406810100004],[19.351573113000086,40.6941592470001],[19.36052493600002,40.70978424700007],[19.364512566000087,40.72650788],[19.36557050900006,40.785956122000044],[19.368825717000107,40.80215078300009],[19.377777540000125,40.81297435100009],[19.396250847000147,40.81704336100006],[19.406748894000117,40.820746161000095],[19.404063347000143,40.829291083000015],[19.396739129000135,40.838690497000044],[19.393239780000044,40.8449160830001],[19.397634311000047,40.85297272300005],[19.40479576900009,40.861070054000066],[19.411387566000144,40.86709219000008],[19.41423587300008,40.868841864000075],[19.406260613000143,40.88031647300011],[19.391123894000145,40.895249742000054],[19.381195509000037,40.908270575000046],[19.389821811000047,40.913804429000066],[19.40495853000004,40.91815827000005],[19.424571160000113,40.93964264500008],[19.44092858200011,40.94863515800009],[19.427012566000144,40.93683502800013],[19.4353947270001,40.91339752800005],[19.42725670700008,40.89337799700007],[19.42725670700008,40.87225983300007],[19.434743686000047,40.87225983300007],[19.437836134000122,40.88654205900008],[19.43767337300008,40.88344961100009],[19.43913821700005,40.88007233300007],[19.44092858200011,40.87225983300007],[19.454112175000144,40.885809637000136],[19.506602410000113,40.90509674700007],[19.523448113000114,40.92064036700009],[19.52515709700012,40.94525788000007],[19.514659050000148,40.96491120000013],[19.50147545700011,40.98297760600005],[19.495453321000095,41.00263092700001],[19.4920353520001,40.97695547100005],[19.479665561000047,40.95392487200007],[19.45386803500011,40.923976955000114],[19.453461134000122,40.92837148600009],[19.447764519000113,40.93431224200003],[19.45850670700014,40.94261302300009],[19.469981316000087,40.95673248900002],[19.477224155000016,40.97500234600008],[19.474945509000037,40.995794989000075],[19.469981316000087,41.00071849200006],[19.453786655000044,41.00584544500006],[19.447764519000113,41.00946686400002],[19.440603061000104,41.020656643000024],[19.44125410200013,41.02602773600009],[19.445485873000052,41.03070709800011],[19.456390821000127,41.106675523000035],[19.451182488000143,41.12270742400011],[19.445485873000052,41.12946198100005],[19.441172722000147,41.13735586100003],[19.44190514400009,41.143866278000104],[19.46371504000004,41.1513125670001],[19.467133009000065,41.16266510600007],[19.467133009000065,41.17617422100005],[19.468760613000086,41.1875674500001],[19.509532097000147,41.237290757000096],[19.51661217500009,41.25641510600007],[19.513356967000046,41.276678778000075],[19.502940300000148,41.29413483300004],[19.48804772200012,41.30646393400008],[19.471934441000144,41.311102606000105],[19.450043165000096,41.311102606000105],[19.431651238000057,41.313706773],[19.41895592500009,41.32257721600007],[19.41423587300008,41.341498114000075],[19.41423587300008,41.382798570000034],[19.410817905000073,41.39166901200008],[19.39600670700011,41.402044989000075],[19.393239780000044,41.41351959800002],[19.40642337300011,41.40037669500006],[19.428721550000148,41.40131256700005],[19.44516035200013,41.415187893000024],[19.44092858200011,41.44086334800008],[19.46461022200012,41.450873114000075],[19.48926842500012,41.46613190300013],[19.50863691500004,41.486883856000134],[19.51661217500009,41.513413804000095],[19.51417076900006,41.52997467700006],[19.5071720710001,41.53628164300011],[19.496348504000082,41.538763739000046],[19.48243248800011,41.543850002000056],[19.468028191000144,41.554266669000036],[19.451996290000068,41.574774481000105],[19.44092858200011,41.58539459800005],[19.52808678500014,41.576564846000075],[19.55640709700009,41.58307526200008],[19.565196160000138,41.58510976800011],[19.584808790000125,41.619574286000045],[19.59164472700013,41.619574286000045],[19.59229576900009,41.608587958000065],[19.596039259000122,41.602728583000044],[19.60303795700011,41.60175202000005],[19.612966342000107,41.605292059000135],[19.604991082000137,41.632147528000104],[19.60010826900009,41.63910553600001],[19.59164472700013,41.63263580900011],[19.587087436000104,41.640692450000046],[19.55762780000012,41.66054922100005],[19.578135613000057,41.687648830000086],[19.57634524800008,41.71893952000005],[19.571136915000096,41.7523867860001],[19.571299675000148,41.77041250200002],[19.58952884200002,41.7656924500001],[19.598968946000127,41.77871328300009],[19.599782748000052,41.79975006700005],[19.59164472700013,41.81879303600001],[19.585215691000116,41.81854889500008],[19.465505405000044,41.855454820000034],[19.451182488000143,41.862534898],[19.43295332100007,41.86859772300011],[19.36512209956595,41.85237191031314],[19.364223267000057,41.86284637500011],[19.36494673700014,41.888994650000114],[19.356988566000098,41.89963999400001],[19.34768680800005,41.90635793100003],[19.345309692000114,41.91033701600011],[19.345929810000086,41.91447113000004],[19.34541304500004,41.92118906700006],[19.346653279000062,41.92617584300012],[19.35047733600001,41.93136932400003],[19.352854452000145,41.93850067200006],[19.346446574000108,41.96154836100004],[19.351614217000133,41.96516571100011],[19.359779093000043,41.96599253400004],[19.365773559000075,41.969713237000065],[19.3710445560001,41.98655975400004],[19.363706503000117,41.99348439500011],[19.363396443000113,41.993639425000055],[19.35419803900004,42.00870310500005],[19.35058068900014,42.02782338500003],[19.351717570000062,42.047615458000024],[19.356575155000087,42.0647978720001],[19.374868612000057,42.094666850000095],[19.372491496000094,42.104252828000114],[19.36999787700009,42.106506676000066],[19.35502486100006,42.1200399790001],[19.29776737500009,42.15166595500008],[19.282057739000038,42.16455922500009],[19.281955677000013,42.16472336600009],[19.272032511000106,42.18068227100007],[19.27492639200008,42.19127594100004],[19.30458866300006,42.21509877600002],[19.400396769000082,42.325893047000136],[19.40132694500005,42.33106069000013],[19.400706828000068,42.344754944000044],[19.402670532000087,42.35201548300003],[19.412075643000065,42.368396912000065],[19.417243286000144,42.37410715800013],[19.468402954000055,42.4181096400001],[19.48173547300007,42.434491069000046],[19.50147587100014,42.44412872400005],[19.517805623000072,42.45802968400002],[19.531654907000128,42.47477284800007],[19.543747192000126,42.49340220200014],[19.543747192000126,42.493557231000096],[19.549328247000062,42.50859507200008],[19.5613171790001,42.516243185000064],[19.5756832270001,42.52234100400011],[19.588085572000068,42.53285715800007],[19.5936666260001,42.54482025200011],[19.599247681000094,42.571046041000045],[19.60503544100007,42.58484364900008],[19.621778605000117,42.60499745700005],[19.64792688000003,42.62783844100008],[19.65803716600007,42.63461270400003],[19.67603885900007,42.646674500000074],[19.699293254000082,42.6548135380001],[19.72213423700009,42.646080221000034],[19.737533814000074,42.62440195700012],[19.746008749000083,42.59889963900011],[19.74688465400007,42.58892977200014],[19.747765747000074,42.57890085900007]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Finland","sov_a3":"FI1","adm0_dif":1,"level":2,"type":"Country","admin":"Aland","adm0_a3":"ALD","geou_dif":0,"geounit":"Aland","gu_a3":"ALD","su_dif":0,"subunit":"Aland","su_a3":"ALD","brk_diff":0,"name":"Aland","name_long":"Aland Islands","brk_a3":"ALD","brk_name":"Aland","brk_group":null,"abbrev":"Aland","postal":"AI","formal_en":"Åland Islands","formal_fr":null,"note_adm0":"Fin.","note_brk":null,"name_sort":"Aland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":6,"pop_est":27153,"gdp_md_est":1563,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"-99","iso_a2":"AX","iso_a3":"ALA","iso_n3":"248","un_a3":"248","wb_a2":"-99","wb_a3":"-99","woe_id":12577865,"woe_id_eh":12577865,"woe_note":"Exact WOE match as country","adm0_a3_is":"ALA","adm0_a3_us":"ALD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":13,"abbrev_len":5,"tiny":5,"homepart":-99,"filename":"ALA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[20.920176629000082,59.909247137000115],[20.912364129000082,59.90448639500013],[20.88770592500009,59.90912506700014],[20.875254754000082,59.91412995000008],[20.867930535000085,59.91791413000011],[20.86207116000014,59.928168036000145],[20.87086022200009,59.93675364800005],[20.88453209700012,59.93976471600014],[20.897471550000144,59.940130927000084],[20.906586134000122,59.93353913],[20.912852410000085,59.92072174700015],[20.920176629000082,59.909247137000115]]],[[[20.99659264400009,59.945013739000146],[20.983571811000104,59.942775783000165],[20.9694116550001,59.9438337260001],[20.969248894000117,59.94208405200012],[20.984141472000086,59.93626536700007],[20.991221550000148,59.92674388200008],[20.982758009000094,59.92153554900007],[20.932139519000117,59.93585846600015],[20.91846764400009,59.943060614],[20.913259311000076,59.948431708000136],[20.915212436000047,59.94936758000012],[20.919932488000143,59.95331452000011],[20.934743686000104,59.95799388200014],[20.978688998000052,59.95205312700001],[20.989756707000083,59.95189036700005],[20.99586022200006,59.949896552000105],[20.99659264400009,59.945013739000146]]],[[[20.44705937100011,59.99518055800014],[20.398575509000096,59.981349051000116],[20.367134795000137,59.981993852000116],[20.339324880000078,59.98020791300003],[20.324819234000046,59.977195317000096],[20.322365859000115,59.962685524],[20.306648030000076,59.953624346000176],[20.283707094000132,59.9584754560001],[20.281315311000128,59.97661612300014],[20.301908032000114,59.99897521400006],[20.339446925000118,60.02010972400007],[20.362417727000036,60.01767049000015],[20.3984574750001,60.009128720000106],[20.436746037000148,60.004989416000015],[20.44705937100011,59.99518055800014]]],[[[20.582855665000068,60.05914948100003],[20.587087436000076,60.055894272999986],[20.587901238000082,60.05194733299999],[20.591075066000144,60.050848700000145],[20.59864342500009,60.052679755000106],[20.60499108200011,60.05206940300015],[20.608653191000087,60.04759349200011],[20.61011803500014,60.044989325000095],[20.612559441000087,60.043443101000044],[20.61793053500014,60.04222239800004],[20.615244988000143,60.04108307500011],[20.6033634770001,60.039780992000104],[20.600922071000067,60.03921133000013],[20.608246290000068,60.035956122000094],[20.60987389400009,60.0298526060001],[20.606293165000125,60.02265045800009],[20.596446160000113,60.016058661],[20.587168816000144,60.00812409100003],[20.577484571000095,60.00665924700017],[20.550466342000046,60.01886627800015],[20.546153191000144,60.0165062520001],[20.539886915000096,60.00950755400011],[20.527028842000075,60.00507233300014],[20.51189212300008,60.00633372600005],[20.500824415000125,60.01268138200008],[20.505544467000046,60.02423737200011],[20.530935092000078,60.04840729400011],[20.544932488000114,60.056097723000114],[20.55836022200012,60.05760325699999],[20.56820722700013,60.05695221600003],[20.576182488000086,60.05914948100003],[20.582855665000068,60.05914948100003]]],[[[20.432139519000117,60.025091864],[20.402354363000114,60.02130768400017],[20.39014733200014,60.02822500200007],[20.403493686000072,60.04051341400004],[20.424082879000082,60.055243231000034],[20.44890384200005,60.06513092700013],[20.462575717000078,60.066799221000146],[20.451019727000073,60.04010651200004],[20.432139519000117,60.025091864]]],[[[20.519379102000126,60.04295482000008],[20.500336134000065,60.036363023000014],[20.471364780000044,60.04132721600014],[20.469737175000116,60.05735911700004],[20.488047722000086,60.06240469000006],[20.522227410000085,60.06476471600003],[20.525401238000143,60.06549713700015],[20.516449415000125,60.06696198100012],[20.518402540000068,60.07037995000003],[20.53337649800011,60.07363515800007],[20.541840040000125,60.070990302],[20.535817905000044,60.06415436400006],[20.526215040000068,60.05683014500006],[20.52116946700002,60.048041083],[20.519379102000126,60.04295482000008]]],[[[20.101269174000038,60.09497463500009],[20.1300416790001,60.08692804800011],[20.163259320000066,60.087845341000055],[20.193190627000092,60.06556971100012],[20.21265842200006,60.03591823400016],[20.222526497000047,60.01487984699999],[20.225218278000085,60.005477722000094],[20.211791270000074,59.99115005600007],[20.18764083600007,59.97636703000004],[20.175120918000058,59.97143592200014],[20.184036574000118,59.99293783500012],[20.171495088000086,59.99875382600011],[20.151812520000107,59.9929227940001],[20.12317881100006,59.988872416],[20.10525492100004,59.9964691690001],[20.11686943000009,60.00543387000011],[20.121317588000068,60.01662719500014],[20.104257697000037,60.02824800500012],[20.07825715800007,60.028223621000144],[20.058456981000063,60.03939637900008],[20.02525632700005,60.04248523600004],[20.033649523000065,60.063626004000135],[20.068193261000143,60.07265423500008],[20.101269174000038,60.09497463500009]]],[[[20.244639519000117,60.11969635600011],[20.25806725400011,60.10797760600003],[20.26392662900014,60.11823151200014],[20.253265821000127,60.13857656500015],[20.255707227000073,60.14541250200015],[20.277598504000082,60.14215729400011],[20.29761803500014,60.121527411],[20.285166863000143,60.10358307500006],[20.2688908210001,60.086004950000124],[20.277598504000082,60.06647370000004],[20.2662866550001,60.060492255000106],[20.259043816000087,60.06256745000003],[20.252289259000065,60.06834544500001],[20.242849155000044,60.073919989],[20.208994988000086,60.083319403000026],[20.201914910000113,60.087551174000154],[20.198252800000144,60.104071356000034],[20.204925977000098,60.12034739800008],[20.215342644000085,60.13568756700003],[20.222422722000147,60.149603583],[20.244639519000117,60.11969635600011]]],[[[20.681976759000122,60.11017487200011],[20.671560092000107,60.10919830900003],[20.655772332000083,60.115912177],[20.638682488000114,60.13133372600011],[20.635508660000056,60.14394765800011],[20.64405358200008,60.149359442000154],[20.653575066000087,60.15135325699999],[20.65992272200012,60.14972565300015],[20.6686304050001,60.145005601000044],[20.67945397200009,60.13629791900017],[20.68336022200009,60.13051992400001],[20.686534050000148,60.12653229400003],[20.68824303500014,60.11701080900003],[20.681976759000122,60.11017487200011]]],[[[20.707692905000073,60.19965241100003],[20.686778191000087,60.19456614799999],[20.67066491000011,60.1992048200001],[20.664073113000143,60.20502350500006],[20.6634220710001,60.216376044000064],[20.668467644000145,60.226711330000136],[20.68376712300011,60.22939687700013],[20.705902540000068,60.2182477890001],[20.716319207000055,60.20929596600017],[20.707692905000073,60.19965241100003]]],[[[19.667491082000083,60.19676341399998],[19.67090905000009,60.190578518],[19.673106316000087,60.184230861000074],[19.674327019000117,60.166327216000035],[19.671071811000076,60.15810781500012],[19.663340691000144,60.15668366100006],[19.654307488000143,60.15753815300015],[19.646983269000117,60.155829169000135],[19.632497592000078,60.16543203300012],[19.60954837300011,60.18748607000013],[19.59164472700013,60.19676341399998],[19.59945722700013,60.1798770200001],[19.603282097000147,60.16400788000006],[19.599619988000086,60.14911530200003],[19.584808790000125,60.13532135600009],[19.565196160000138,60.129950262000044],[19.54460696700002,60.13475169500013],[19.527028842000107,60.14862702000012],[19.51661217500009,60.17011139500015],[19.51392662900011,60.17910390800016],[19.513194207000083,60.18378327000009],[19.517588738000086,60.1876488300001],[19.530284050000148,60.19367096600008],[19.53728274800011,60.20111725500009],[19.5369572270001,60.21112702000015],[19.535166863000114,60.222072658000016],[19.537119988000143,60.232163804],[19.542246941000087,60.236965236000074],[19.560394727000073,60.248968817],[19.56788170700014,60.25511302300007],[19.578868035000085,60.26048411700013],[19.59376061300014,60.26048411700013],[19.608409050000148,60.25690338700014],[19.628103061000104,60.24664948100003],[19.63445071700005,60.24013906500012],[19.63835696700005,60.23163483300004],[19.639496290000068,60.22093333499999],[19.643077019000145,60.21344635600011],[19.660492384000094,60.20282623900008],[19.667491082000083,60.19676341399998]]],[[[20.37964928500008,60.269680080000015],[20.410980665000125,60.259507554000045],[20.42790774800011,60.26569245000003],[20.434825066000116,60.262396552],[20.438975457000137,60.25820547100015],[20.440765821000124,60.25263092700005],[20.441416863000086,60.24518463700015],[20.392914259000094,60.19676341399998],[20.380869988000086,60.19887929900009],[20.380869988000086,60.204046942],[20.385508660000113,60.210760809000035],[20.38624108200014,60.217230536000145],[20.38770592500012,60.22186920800006],[20.387543165000064,60.232977606000084],[20.382660352000073,60.24070872600011],[20.35303795700014,60.22882721600014],[20.345388217000103,60.237697658000016],[20.347015821000127,60.252875067],[20.358897332000083,60.26569245000003],[20.37964928500008,60.269680080000015]]],[[[20.83887780000009,60.24681224200001],[20.823985222000143,60.24445221600014],[20.811371290000068,60.24518463700015],[20.818858269000117,60.232163804],[20.790537957000083,60.23871491100005],[20.781097852000073,60.26365794500002],[20.78728274800005,60.28632233300005],[20.80518639400009,60.28620026200018],[20.815277540000064,60.280991929],[20.84595787900005,60.27033112200014],[20.85303795700011,60.26569245000003],[20.85059655000009,60.25360748900012],[20.83887780000009,60.24681224200001]]],[[[20.777354363000143,60.326483466000134],[20.74000084700009,60.31240469000003],[20.732676629000082,60.314357815000065],[20.731455925000148,60.32099030200011],[20.7317814460001,60.32440827000012],[20.732676629000082,60.332749742000104],[20.735362175000148,60.33779531500012],[20.74350019600007,60.34845612200017],[20.746918165000093,60.351874091000084],[20.7506616550001,60.35488515800007],[20.75489342500012,60.36074453300013],[20.757172071000095,60.3661156270001],[20.764333530000044,60.367865302000084],[20.776133660000113,60.366400458000115],[20.78736412900011,60.361965236000124],[20.792002800000148,60.35276927300008],[20.789398634000065,60.342718817],[20.785329623000077,60.33356354400003],[20.777354363000143,60.326483466000134]]],[[[19.918467644000113,60.37018463700004],[19.92750084700012,60.3564313820001],[19.969981316000087,60.36139557500017],[19.99561608200014,60.3564313820001],[20.019704623000077,60.34625885600017],[20.036794467000107,60.33392975500015],[20.028493686000047,60.35407135600017],[20.02369225400014,60.36127350500003],[20.038422071000127,60.35956452],[20.072032097000147,60.34992096600003],[20.08220462300011,60.35130442900011],[20.093028191000116,60.355129299000126],[20.104665561000104,60.34992096600003],[20.126149936000047,60.33392975500015],[20.178070509000122,60.32298411700008],[20.1920679050001,60.312323309000035],[20.181407097000147,60.28620026200018],[20.19629967500012,60.290269273000135],[20.201914910000113,60.2929548200001],[20.217621290000068,60.28628164300006],[20.238047722000143,60.28156159100014],[20.277598504000082,60.278713283000016],[20.242849155000044,60.24518463700015],[20.236013217000107,60.232163804],[20.20875084700012,60.22467682500012],[20.22201582100007,60.20990631700011],[20.22974694100006,60.20425039300015],[20.21892337300008,60.20132070500004],[20.209646030000016,60.20087311400011],[20.20093834700012,60.19940827000006],[20.191661004000082,60.19367096600008],[20.186371290000096,60.18732330900014],[20.17798912900014,60.17352936400006],[20.174571160000138,60.17011139500015],[20.16195722700007,60.16714101800012],[20.15463300900006,60.16974518400003],[20.147797071000124,60.17401764500014],[20.13697350400014,60.17633698100009],[20.095469597000147,60.17633698100009],[20.087087436000072,60.18219635600015],[20.088877800000148,60.195868231000176],[20.09555097700013,60.21088288000011],[20.10230553500014,60.22093333499999],[20.1228947270001,60.23078034100011],[20.172373894000145,60.232814846000124],[20.188243035000085,60.24518463700015],[20.147715691000144,60.24477773600016],[20.11101321700005,60.23944733299999],[20.0818791020001,60.223374742000104],[20.064707879000053,60.19061920799999],[20.057871941000144,60.19061920799999],[20.060883009000065,60.21474844000004],[20.0481876960001,60.22650788],[20.031911655000044,60.23639557500012],[20.02369225400014,60.25511302300007],[20.036387566000116,60.271877346000096],[20.057139519000117,60.29315827000007],[20.061289910000138,60.310044664000074],[20.02369225400014,60.31346263200008],[20.02369225400014,60.30662669500004],[20.0338647800001,60.293890692],[20.024912957000083,60.27643463700004],[20.00326582100007,60.26703522300003],[19.9759220710001,60.278713283000016],[19.979746941000116,60.26105377800009],[19.99398847700013,60.24144114800013],[20.012950066000144,60.225165106000084],[20.030528191000087,60.217230536000145],[20.020762566000116,60.21035390800014],[20.014903191000087,60.202337958],[20.01319420700008,60.19342682500014],[20.016286655000073,60.18374258000009],[19.964121941000144,60.19481028900013],[19.948008660000085,60.20425039300015],[19.953868035000113,60.209418036000145],[19.955739780000073,60.21283600500006],[19.95484459700009,60.22467682500012],[19.927744988000143,60.22280508000015],[19.914561394000117,60.21820709800003],[19.917246941000084,60.20766836100015],[19.929698113000114,60.19635651200014],[19.943614129000082,60.18622467700011],[19.95883222700007,60.17910390800016],[19.987315300000063,60.17304108300006],[19.996592644000117,60.16600169500002],[20.003916863000114,60.15892161700013],[20.01002037900011,60.155829169000135],[20.019867384000122,60.15810781500012],[20.02751712300008,60.163316148000106],[20.034922722000143,60.169989325000174],[20.044200066000116,60.17633698100009],[20.03296959700012,60.14435455900009],[20.030121290000068,60.128973700000145],[20.030528191000087,60.114813544000135],[20.03419030000012,60.11139557500003],[20.040863477000073,60.10911692900005],[20.047536655000044,60.10541413000012],[20.05046634200005,60.09780508000007],[20.044769727000073,60.087469794000164],[20.031586134000122,60.08738841399998],[20.006358269000145,60.09438711100007],[19.965993686000104,60.091131903000026],[19.948985222000147,60.083889065],[19.951426629000082,60.07013580900018],[19.958181186000104,60.05377838700015],[19.948496941000144,60.04767487200017],[19.937754754000135,60.05036041900014],[19.941172722000147,60.06024811400007],[19.92400149800011,60.091538804000145],[19.91032962300008,60.101060289000124],[19.8865666020001,60.1012230490001],[19.87330162900014,60.0964216170001],[19.870290561000047,60.09100983300005],[19.868337436000104,60.08551666900003],[19.858653191000144,60.08075592700011],[19.8450626960001,60.078680731000084],[19.831716342000078,60.079494533],[19.823252800000148,60.08429596600011],[19.824473504000135,60.09438711100007],[19.806976759000094,60.09983958500011],[19.7889103520001,60.096258856000034],[19.773448113000057,60.086493231000084],[19.76303144600007,60.073919989],[19.74756920700014,60.10138580900014],[19.71029707100007,60.145209052000105],[19.6946720710001,60.17011139500015],[19.687998894000145,60.199286200000095],[19.68238366000014,60.21198151200015],[19.67090905000009,60.217230536000145],[19.668793165000096,60.22467682500012],[19.646983269000117,60.26569245000003],[19.666677280000073,60.26605866100014],[19.682871941000116,60.26434967700013],[19.691416863000143,60.25653717700015],[19.68848717500012,60.238348700000145],[19.69629967500012,60.24876536700005],[19.7024845710001,60.26007721600002],[19.709320509000094,60.26886627800009],[19.71892337300008,60.27252838700003],[19.73210696700005,60.27391185100011],[19.770518425000144,60.28620026200018],[19.762868686000104,60.29051341399998],[19.757823113000086,60.295477606000034],[19.749359571000127,60.30662669500004],[19.770030144000145,60.303290106000034],[19.777354363000143,60.29979075700014],[19.78345787900014,60.303045966000084],[19.786306186000104,60.30353424700018],[19.796560092000107,60.29979075700014],[19.780772332000083,60.270941473],[19.76514733200008,60.248968817],[19.768077019000117,60.240423895000056],[19.77637780000009,60.233343817000026],[19.78419030000009,60.22467682500012],[19.792002800000063,60.200140692],[19.798594597000147,60.193060614000125],[19.81421959700012,60.19061920799999],[19.821787957000083,60.195990302000055],[19.823496941000087,60.20848216400007],[19.82129967500009,60.22247955900003],[19.817637566000144,60.232163804],[19.83545983200011,60.22638580900012],[19.85181725400014,60.217230536000145],[19.858653191000144,60.24518463700015],[19.879730665000068,60.258856512000094],[19.88461347700013,60.27252838700003],[19.88640384200002,60.29364655200005],[19.892832879000135,60.30662669500004],[19.898122592000107,60.29197825700014],[19.899587436000076,60.28461334800014],[19.900157097000143,60.27558014500012],[19.905528191000087,60.27179596600012],[19.917246941000084,60.27293528900005],[19.92904707100007,60.27716705900015],[19.93433678500014,60.28241608300006],[19.9314884770001,60.29975006700015],[19.92400149800011,60.31427643400017],[19.912933790000093,60.32575104400003],[19.900157097000143,60.33392975500015],[19.893321160000113,60.3395856790001],[19.889496290000096,60.34467194200014],[19.885101759000122,60.34520091400013],[19.87598717500012,60.33763255400008],[19.865082227000073,60.31964752800003],[19.857676629000082,60.31321849200013],[19.848399285000113,60.317206122000115],[19.833343946000095,60.334051825000124],[19.819183790000096,60.346828518000144],[19.80201256600014,60.35419342700014],[19.777354363000143,60.355047919000135],[19.792979363000143,60.360541083000086],[19.80176842500012,60.36884186400006],[19.80836022200009,60.37856679900001],[19.817637566000144,60.38857656500009],[19.838145379000082,60.40045807500003],[19.85962975400011,60.40558502800015],[19.882334832000083,60.40558502800015],[19.906423373000077,60.40216705900003],[19.91358483200014,60.38886139500011],[19.918467644000113,60.37018463700004]]],[[[21.088226759000094,60.45221588700014],[21.078379754000082,60.44896067900011],[21.06495201900009,60.45477936400006],[21.0592554050001,60.466742255],[21.06430097700013,60.47435130400013],[21.07642662900011,60.48041413000014],[21.084646030000044,60.480780341000134],[21.088633660000113,60.480129299],[21.09473717500009,60.47557200700005],[21.09669030000012,60.46344635600015],[21.088226759000094,60.45221588700014]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Andorra","sov_a3":"AND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Andorra","adm0_a3":"AND","geou_dif":0,"geounit":"Andorra","gu_a3":"AND","su_dif":0,"subunit":"Andorra","su_a3":"AND","brk_diff":0,"name":"Andorra","name_long":"Andorra","brk_a3":"AND","brk_name":"Andorra","brk_group":null,"abbrev":"And.","postal":"AND","formal_en":"Principality of Andorra","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Andorra","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":83888,"gdp_md_est":3660,"pop_year":-99,"lastcensus":1989,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"AN","iso_a2":"AD","iso_a3":"AND","iso_n3":"020","un_a3":"020","wb_a2":"AD","wb_a3":"ADO","woe_id":23424744,"woe_id_eh":23424744,"woe_note":"Exact WOE match as country","adm0_a3_is":"AND","adm0_a3_us":"AND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"AND.geojson"},"geometry":{"type":"Polygon","coordinates":[[[1.707006470000067,42.5027814740001],[1.697498006000075,42.49446156900012],[1.68633589600006,42.49061167500008],[1.674243611000065,42.49050832100005],[1.662358032000043,42.493712260000024],[1.659774210000137,42.49681284600007],[1.656983683000078,42.49763966900008],[1.653986450000048,42.4965286260001],[1.650369100000063,42.49340220200014],[1.639517049000119,42.46642710400002],[1.607477661000104,42.456427714000085],[1.544432414000084,42.45035573400014],[1.538851359000063,42.44565317800007],[1.534510539000081,42.43991709400009],[1.528206014000091,42.43423268600006],[1.516630493000122,42.42950429300009],[1.508465617000127,42.42867747000005],[1.447900838000066,42.43464609800009],[1.436428670000055,42.44095062300008],[1.436428670000055,42.4534821580001],[1.407593221000099,42.486761780000045],[1.424543090000014,42.49247202600008],[1.43022749800005,42.493557231000096],[1.449967895000043,42.50407338400004],[1.446557251000087,42.51988637400004],[1.428987264000114,42.531461894000074],[1.406456339000101,42.529239808000085],[1.409763631000089,42.540608622000065],[1.426300090000097,42.56179596000004],[1.426403442000122,42.56564585400008],[1.418031860000042,42.5698316450001],[1.419272095000082,42.579262594000085],[1.424853150000104,42.5893653360001],[1.42929732200011,42.59538564100006],[1.451414836000112,42.60205190100007],[1.466814412000105,42.641455180000065],[1.498440389000081,42.64024078400004],[1.527792602000062,42.64853485200009],[1.543088827000133,42.64936167400003],[1.597349081000061,42.62192148900007],[1.608304484000143,42.61812327100002],[1.721992635000049,42.60985504200007],[1.713310995000086,42.58954620400007],[1.729434041000047,42.58200144500011],[1.752688435000067,42.576678772000065],[1.761107147000132,42.567646197000016],[1.76509078000015,42.56337209100005],[1.739976033000119,42.561640930000095],[1.721682577000138,42.54851511600003],[1.710623820000137,42.52774119100007],[1.707006470000067,42.5027814740001]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Belgium","sov_a3":"BEL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belgium","adm0_a3":"BEL","geou_dif":0,"geounit":"Belgium","gu_a3":"BEL","su_dif":0,"subunit":"Belgium","su_a3":"BEL","brk_diff":0,"name":"Belgium","name_long":"Belgium","brk_a3":"BEL","brk_name":"Belgium","brk_group":null,"abbrev":"Belg.","postal":"B","formal_en":"Kingdom of Belgium","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belgium","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":8,"pop_est":10414336,"gdp_md_est":389300,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"BE","iso_a2":"BE","iso_a3":"BEL","iso_n3":"056","un_a3":"056","wb_a2":"BE","wb_a3":"BEL","woe_id":23424757,"woe_id_eh":23424757,"woe_note":"Exact WOE match as country","adm0_a3_is":"BEL","adm0_a3_us":"BEL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BEL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[4.815447224000138,51.431073711000025],[4.822681925000011,51.413684591],[4.779067016000056,51.42642283200014],[4.767801554000101,51.42538930300016],[4.762117146000151,51.413374532000105],[4.783304484000013,51.40763844800016],[4.853274373000119,51.406139832000136],[4.871671183000046,51.403039246],[4.910325154000134,51.39190297500009],[4.931925903000092,51.395623678],[4.957144002000064,51.410997416000086],[4.980191691000101,51.43053110800018],[4.995797973000066,51.44670583100015],[5.002722616000142,51.45900482200001],[5.00613326000007,51.468306580000146],[5.012127727000092,51.47432688400009],[5.027527303000085,51.47680735300007],[5.030317831000048,51.4744302370001],[5.060290161000069,51.46197621700012],[5.079927205000104,51.438540955000136],[5.076413208000048,51.421901144000124],[5.065251099000108,51.40590728799999],[5.061737101000062,51.38425486300009],[5.068144979000095,51.37453969400015],[5.102561483000073,51.35066518200007],[5.107832479000081,51.34198354100012],[5.118064412000081,51.31991770500012],[5.122921997000105,51.31338063600005],[5.140181926000082,51.30738617000013],[5.178835897000083,51.309504903000104],[5.197336059000122,51.30834218299999],[5.214906047000085,51.294337870000064],[5.215422811000025,51.258732808],[5.232992798000112,51.25591644300012],[5.239455934000091,51.25693018200017],[5.270716593000145,51.261833395000124],[5.389055623000104,51.258706971],[5.409932901000076,51.26353871700011],[5.451894165000084,51.28211639400014],[5.471634562000133,51.28808502300008],[5.493235311000119,51.28653472900005],[5.516696411000083,51.27723297200013],[5.535196573000121,51.26204010000002],[5.542327921000066,51.24266143900003],[5.54553186000004,51.21992380800005],[5.551406597000096,51.21676713400008],[5.568372843000134,51.207650655000016],[5.62501021300011,51.196901957000094],[5.638549438000098,51.190907491000175],[5.648161255000105,51.183957011000174],[5.659013306000048,51.17907358800015],[5.676169881000106,51.17917694099999],[5.718027791000083,51.18460296700006],[5.730843547000063,51.183750306000135],[5.74717329900011,51.17760081000015],[5.768050577000082,51.15946238300004],[5.781383098000106,51.15240854900009],[5.812078898000038,51.15731781000015],[5.829132121000071,51.15646514900011],[5.838020467000092,51.14372690900014],[5.840500936000069,51.138921],[5.826444946000038,51.130161845000075],[5.823241007000064,51.11874135400016],[5.845978638000048,51.103393454000084],[5.836780232000137,51.09949188300014],[5.826651652000095,51.09690806100003],[5.81590295400008,51.09587453200005],[5.804947550000094,51.096623840000134],[5.807428019000071,51.08938914],[5.808978312000106,51.08634023000015],[5.81176884000007,51.082309469000066],[5.804327434000128,51.06858937600013],[5.798849731000132,51.06148386600001],[5.79130497200009,51.05499847500015],[5.779626098000023,51.06130299900015],[5.771461222000113,51.058124899000106],[5.766396932000133,51.04843556800016],[5.764019816000086,51.035180563000054],[5.777559041000075,51.023553366],[5.761746053000081,50.999162090000155],[5.722368612000082,50.959422913000154],[5.744692830000133,50.963246969000025],[5.75430464700014,50.96309194000015],[5.764019816000086,50.959422913000154],[5.752547648000075,50.94722727500006],[5.73528771900007,50.923972881000125],[5.722368612000082,50.9116738900001],[5.717614380000071,50.909245097000124],[5.706038859000046,50.906609599000134],[5.694463338000077,50.903664042000045],[5.622323039000094,50.85265940400016],[5.624493448000067,50.83028350900018],[5.640719849000078,50.81503896100004],[5.657432381000092,50.807640982000166],[5.663250773000101,50.805065410000125],[5.68485152100007,50.79850250300014],[5.700457804000109,50.79555694600004],[5.698700806000119,50.783774720000146],[5.688365519000115,50.7608303840001],[5.706555623000071,50.75421580000004],[5.717407674000128,50.75282053700014],[5.727846313000072,50.75416412400001],[5.732776968000081,50.758851489000065],[5.743555949000039,50.769098613000054],[5.752444296000135,50.773439433000036],[5.762469523000078,50.77101064099998],[5.782933390000039,50.75669627000009],[5.793165324000114,50.75214874300015],[5.879878377000068,50.75354400600004],[5.891287548000122,50.751246327],[5.89132117000014,50.75123955600016],[5.902202596000024,50.74904815700002],[5.974756307000064,50.747549540000094],[5.994910116000113,50.74992665600014],[5.993256469000073,50.74806630500014],[5.992636353000108,50.74625763000016],[5.992739705000133,50.74444895500007],[5.994186645000126,50.74258860300016],[6.010826457000064,50.73705922500015],[6.011343221000089,50.727447408000145],[6.00762251800009,50.71690541700018],[6.011549926000043,50.7085338350001],[6.02477909300012,50.70755198200014],[6.06436324000009,50.71447662400011],[6.081003052000113,50.71349477200006],[6.100226685000052,50.70129913400014],[6.161101521000091,50.64218129600009],[6.147769002000047,50.63675527000011],[6.159447876000115,50.62238922200002],[6.180015096000119,50.615516256000134],[6.249054809000086,50.61443105100012],[6.251328572000091,50.608436585],[6.244300577000075,50.5995482390001],[6.232931763000096,50.59076324500002],[6.232931763000096,50.58714589400004],[6.210607543000037,50.57867095900012],[6.17908492000015,50.56197947200009],[6.160688110000081,50.543582663000095],[6.177327922000075,50.53019846600016],[6.169473103000144,50.522498678000076],[6.170816691000113,50.51795115200012],[6.178878214000093,50.51578074200013],[6.190557088000077,50.515212301000176],[6.182598917000121,50.50658233700012],[6.190660441000119,50.50182810500014],[6.199238729000057,50.49040761300013],[6.207196900000099,50.48632517500012],[6.217118774000085,50.486015117000065],[6.25091516100008,50.492681376000164],[6.253085571000071,50.49407664000013],[6.255566040000132,50.49459340400007],[6.257839803000052,50.49407664000013],[6.260113566000086,50.492681376000164],[6.275409790000139,50.48803049700008],[6.31871464000011,50.481674296000065],[6.336904744000037,50.48100250200018],[6.325742635000097,50.47402618400018],[6.323262166000119,50.46601633700011],[6.326156046000108,50.457024638000156],[6.331633748000115,50.44689605700001],[6.340212036000139,50.437852682000155],[6.347343384000084,50.43697418300003],[6.351167440000039,50.433563538],[6.35044396900011,50.416872051000055],[6.343312622000099,50.39330759700005],[6.336387980000097,50.37992340200013],[6.337731567000077,50.36808949800012],[6.372458130000098,50.329435527],[6.373399684000105,50.32308003500004],[6.374525187000074,50.31548289100002],[6.362019490000079,50.30695627900009],[6.335457804000043,50.30385569200014],[6.322021932000098,50.30540598600008],[6.310653116000111,50.308248190000036],[6.299491007000086,50.30886830700002],[6.285951782000097,50.30385569200014],[6.276029907000094,50.29610422800015],[6.269415324000107,50.286492412000044],[6.267348267000045,50.27641550700009],[6.271792439000137,50.26742380800006],[6.253395630000057,50.25677846300006],[6.210400838000083,50.24902699800005],[6.189626912000023,50.24272247300006],[6.179808390000062,50.233007304000104],[6.15717411300011,50.222723694000095],[6.146838827000096,50.21404205400013],[6.160171346000112,50.204533590000054],[6.165752400000144,50.19316477500017],[6.165132284000065,50.18189931200011],[6.159137817000043,50.172442526000125],[6.151696411000017,50.169341939],[6.131749308000109,50.16830841100004],[6.123171020000086,50.164897767000085],[6.121310668000149,50.1615904750001],[6.118003377000149,50.150376689000055],[6.115832967000074,50.14546742800011],[6.125961547000117,50.140196432],[6.129475545000076,50.134046937],[6.126581665000089,50.12732900000019],[6.117486613000039,50.120456035000025],[6.102603800000082,50.124745179000065],[6.100330037000077,50.132651673000126],[6.101466919000075,50.1421084600001],[6.097126098000103,50.15130686500002],[6.084206991000086,50.15931671200018],[6.076455525000085,50.158644918],[6.070047648000127,50.15420074500018],[6.061366008000078,50.15073842400015],[6.038628377000094,50.148412985000036],[6.027362915000139,50.149446513],[6.022966606000097,50.150820360000075],[6.014133749000051,50.153580628000114],[6.008035929000101,50.16091868100001],[6.004728638000102,50.17047882100012],[5.998320760000041,50.174974671000044],[5.982921183000144,50.16706817699998],[5.961630493000087,50.165621236],[5.953155558000077,50.15637115500009],[5.949021444000067,50.142676900000154],[5.941063273000083,50.12831085200007],[5.926180461000058,50.11833730100012],[5.888973429000116,50.10660675100014],[5.872436971000127,50.09689158100012],[5.868819621000057,50.090535381000095],[5.866855916000134,50.07430898100007],[5.864375447000043,50.067487691000125],[5.858277628000081,50.06180328400008],[5.843704874000139,50.053638408000054],[5.837710408000105,50.04743723600007],[5.838847290000102,50.03586171500005],[5.838847290000102,50.02645660399999],[5.836366821000126,50.01855011000013],[5.829132121000071,50.013589173000085],[5.808874959000065,50.007801412],[5.802673787000089,50.002478740000136],[5.801536906000081,49.988681133],[5.808564901000096,49.983100078000106],[5.812595662000091,49.9775707000001],[5.801640258000106,49.963824768000066],[5.793372029000068,49.9588121550001],[5.778592570000058,49.95659006699999],[5.771564575000127,49.953541158000164],[5.7637097570001,49.94682322200005],[5.759989054000101,49.941603902000125],[5.757611939000128,49.936539612000146],[5.75358117600004,49.93018341100013],[5.718957967000051,49.891374410000154],[5.714927205000038,49.881865946000104],[5.726709432000064,49.87819692],[5.748826945000047,49.86729319300004],[5.758128702000078,49.85819814100016],[5.731877075000056,49.859955139000036],[5.73198042800007,49.85416738000008],[5.730533488000077,49.85117014600014],[5.728673136000083,49.848844707000026],[5.726916137000103,49.84522735700013],[5.73652795400011,49.83943959600008],[5.724642374000097,49.834271953000055],[5.720198202000091,49.82471181300014],[5.721645142000085,49.81277455700002],[5.727742960000114,49.80021718400012],[5.73828495300009,49.78884836800002],[5.748413533000132,49.78564443000015],[5.759162231000062,49.78445587200003],[5.771874634000113,49.779391582000144],[5.778489217000099,49.77303538000002],[5.802053670000105,49.74285634400003],[5.803603963000057,49.73815378900004],[5.805774373000133,49.72420115200004],[5.805360961000105,49.72187571300013],[5.81176884000007,49.71851674500003],[5.82572147600004,49.715777894000055],[5.831715942000073,49.71360748299999],[5.837296997000095,49.71293569],[5.843704874000139,49.71433095400006],[5.850216105000101,49.71402089399999],[5.856003865000076,49.708078105000155],[5.856402764000052,49.70580745000014],[5.857347453000045,49.7004299930001],[5.853626749000028,49.69629587800007],[5.848769165000107,49.6927302050001],[5.847218872000099,49.6872008270001],[5.846702108000045,49.68068959600013],[5.843704874000139,49.67748565700008],[5.842257934000145,49.67391998300009],[5.845771932000104,49.666581930000106],[5.852593221000063,49.663222962000084],[5.872643676000109,49.661724345],[5.879878377000068,49.657745260000084],[5.88545943200009,49.64353424100012],[5.879878377000068,49.63485260099999],[5.869956502000149,49.628858135000044],[5.861998331000109,49.62276031599999],[5.849182577000107,49.59971262600011],[5.841224406000066,49.589687398000095],[5.829958944000111,49.58276275600004],[5.846908813000113,49.576716614000176],[5.837400350000109,49.561110332000126],[5.814456014000086,49.5451423140001],[5.790684855000023,49.53775258500009],[5.779005982000058,49.5396129360001],[5.757095174000114,49.54839792899999],[5.74634647600007,49.54943145800017],[5.735597779000074,49.54571075500014],[5.72267867000005,49.53460032200003],[5.710276327000088,49.53108632500009],[5.688675578000101,49.53351511700005],[5.667178182000072,49.5404397590001],[5.644647257000145,49.54379872700004],[5.619739217000074,49.535530497000096],[5.607853638000051,49.524936829000026],[5.605579875000046,49.51775380500005],[5.60227258300003,49.513723043000155],[5.587493124000019,49.51243113300002],[5.57891483600008,49.513929749000035],[5.547598918000091,49.5234382120001],[5.528788696000077,49.51796051100003],[5.503673950000064,49.50509307900001],[5.477732381000095,49.495222881000025],[5.456131633000041,49.498943584000145],[5.449930461000037,49.507831930000165],[5.450963989000115,49.5167719520001],[5.454167928000088,49.52617706300005],[5.454374633000042,49.53661570300009],[5.450240519000118,49.54576243100016],[5.402078084000038,49.60245147700009],[5.391165749000066,49.60881700600008],[5.3834745690001,49.61330352800003],[5.352468709000078,49.62069325800003],[5.341099894000081,49.625137432000045],[5.334898722000077,49.625809225000026],[5.331178019000077,49.62312205000008],[5.326940552000025,49.617644349],[5.321669555000085,49.61258005800011],[5.314538208000073,49.611133118000126],[5.29789839700004,49.61325185200012],[5.2930408120001,49.61717926100008],[5.29066369700007,49.62637766600006],[5.293764282000012,49.64053700800012],[5.301825806000096,49.64389597600005],[5.306373332000135,49.64751332700003],[5.299448690000048,49.662499492000094],[5.280121704000095,49.67789906899999],[5.259244425000134,49.69133494100011],[5.237643677000079,49.69097320600004],[5.192478475000087,49.68280832900011],[5.169430786000135,49.6872008270001],[5.151240682000093,49.69598582],[5.13635787000004,49.70533925400004],[5.093776489000078,49.745336812000104],[5.081890909000037,49.752726543],[5.04623417200014,49.7593928020001],[5.026287068000045,49.76673085600011],[4.989080037000121,49.790553691000085],[4.970993286000122,49.79706492200013],[4.968370957000019,49.79698095600004],[4.950012654000119,49.796393128000076],[4.906604451000106,49.78647125200017],[4.884176879000023,49.78414581300014],[4.858028605000129,49.78657460500001],[4.849036906000066,49.794171041000155],[4.849243611000134,49.831584778000135],[4.846763142000071,49.837527568000056],[4.836944620000082,49.8480178840001],[4.834877564000124,49.85303049800013],[4.836737915000128,49.859128317000014],[4.845626261000064,49.86584625300004],[4.848933553000052,49.87106557200015],[4.854307902000102,49.883312887],[4.85937219200008,49.891684469000054],[4.8619560140001,49.90031443300002],[4.860199016000109,49.913336894000125],[4.84459273300007,49.93173370400014],[4.797257120000097,49.94429107700016],[4.783924601000081,49.95829539000006],[4.78826542200008,49.97426340800008],[4.826712687000111,50.036016744000065],[4.827642863000079,50.046713766],[4.826092570000128,50.05503367200005],[4.827229451000051,50.06407704700011],[4.846039673000064,50.090690410000136],[4.852137492000111,50.09162058599999],[4.86288619000004,50.08407582700012],[4.865159953000073,50.101594137000106],[4.870534302000124,50.122264710000096],[4.871877889000075,50.13978302000008],[4.862679484000097,50.147586162],[4.831363566000078,50.14340037100005],[4.820098103000106,50.146449280000084],[4.815550578000084,50.16133209200002],[4.788575480000133,50.15337392200014],[4.681915324000073,50.08392079700009],[4.676127563000108,50.07606598000014],[4.673440389000064,50.06619578099999],[4.675817505000111,50.060201315000036],[4.67953820800011,50.05518870000019],[4.680571737000093,50.04831573500003],[4.672923624000134,50.01637970000006],[4.665895629000119,50.000515035000134],[4.656697225000101,49.989094544000025],[4.645845174000072,49.98449534200007],[4.60419396900005,49.98020619800012],[4.464770956000081,49.935609436],[4.435108683000095,49.93225046800008],[4.427651209000089,49.93357167400016],[4.27759891700012,49.960155742000055],[4.215952935000132,49.95440767000009],[4.201117798000041,49.953024394000025],[4.187681925000078,49.955504863],[4.131664672000056,49.974986878],[4.132364978000112,49.974945951000095],[4.139622843000041,49.97452179000008],[4.138382609000075,49.98919789700015],[4.132904907000096,50.004494121],[4.128150675000114,50.00578603100014],[4.132284790000114,50.017568258000054],[4.137349080000092,50.0250613410001],[4.14458378100008,50.03079742500016],[4.162877238000134,50.04180450500014],[4.186028279000141,50.05244984900004],[4.210006144000147,50.06014963800014],[4.210316203000048,50.066712545000094],[4.203391561000046,50.074670716000085],[4.197397095000042,50.08407582700012],[4.180550578000036,50.12722564700006],[4.170628703000148,50.130481262000146],[4.159880005000048,50.129396058000154],[4.139932902000112,50.12355662000005],[4.125773559000066,50.128155823000114],[4.128150675000114,50.14624257500012],[4.147374308000024,50.18634348600004],[4.152748657000103,50.204533590000054],[4.157296183000113,50.21269846600008],[4.167941528000114,50.222465312000125],[4.19150598100012,50.23429921500015],[4.20132450300008,50.24153391600011],[4.203701619000128,50.25197255400014],[4.197603800000081,50.25848378500002],[4.185201457000118,50.26546010400001],[4.17176558500006,50.27088612900009],[4.16277388500012,50.27295318700005],[4.150268189000116,50.26954254200002],[4.149751424000072,50.26313466500009],[4.150991658000123,50.25626169800002],[4.143653605000111,50.25161082000015],[4.125256795000041,50.25714019800016],[4.097868286000079,50.29481231699999],[4.077197713000146,50.30664622000002],[4.055907023000088,50.31455271500006],[4.022730753000076,50.338117167000156],[4.003300415000098,50.34405995700017],[3.982113077000122,50.342613017000176],[3.918551066000048,50.32545644100012],[3.895916789000097,50.325301412999984],[3.878036743000052,50.33077911400006],[3.860880168000079,50.33847890200015],[3.840209595000061,50.34519683899999],[3.798661743000082,50.34845245400008],[3.755046834000041,50.34633372100011],[3.741507609000052,50.34312978100003],[3.733446085000053,50.337238668000126],[3.715462687000069,50.31765330000009],[3.711121867000088,50.30933339500014],[3.708434692000082,50.30633616200011],[3.703887167000118,50.304320780000076],[3.702233520000078,50.30525095600002],[3.700786580000084,50.30468251600017],[3.696859172000131,50.29822296200002],[3.661719198000071,50.319306946000054],[3.652934204000075,50.36018300400015],[3.652830851000146,50.406846822000134],[3.644355916000051,50.445500793000136],[3.628129517000048,50.464362692000165],[3.608285766000051,50.47650665300016],[3.586374959000096,50.48348297100016],[3.56374068100007,50.48653188100009],[3.499145142000088,50.48679026300006],[3.486742798000137,50.492681376000164],[3.496457967000083,50.50379181000007],[3.498008260000091,50.51185333200006],[3.491497029000129,50.51707265200018],[3.477130982000119,50.51986318000014],[3.462868286000059,50.51913971000015],[3.45263635200007,50.51485056600008],[3.442714477000066,50.50849436500006],[3.429175252000078,50.50182810500014],[3.385353637000094,50.49164784800017],[3.361065714000091,50.489787497000165],[3.343599080000047,50.49293975900004],[3.299880819000066,50.50746083600008],[3.286755005000089,50.51407542000008],[3.27104537000011,50.52694285100007],[3.265877726000042,50.538311666000155],[3.264327433000091,50.57019602500013],[3.237869100000097,50.62647166],[3.229807576000042,50.65541046200018],[3.243760213000115,50.67210195000011],[3.232391398000118,50.69592478500008],[3.224433227000077,50.705174866],[3.210997355000103,50.707965394000055],[3.1969413650001,50.70920562800008],[3.188983195000048,50.715096742000085],[3.176684204000082,50.73411366800015],[3.162822752000096,50.74992512100003],[3.162810519000061,50.749939075000114],[3.146195109000104,50.76889190700011],[3.129245239000085,50.779072165000066],[3.103303671000049,50.784084778000036],[3.023816593000049,50.76826211600003],[2.971425415000112,50.75783315000011],[2.948377726000046,50.74868642200012],[2.930187622000119,50.73623240200014],[2.900111938000038,50.70310780900003],[2.886882772000149,50.69664825500017],[2.87127648900011,50.69876698900004],[2.86672588400009,50.70009100300008],[2.786733846000033,50.723364970000134],[2.768233683000119,50.733235169000025],[2.762962687000083,50.739384665],[2.74952681500011,50.759590149000175],[2.743842407000074,50.76620473200008],[2.706635376000065,50.78878733400002],[2.700020792000089,50.79628041600013],[2.696920207000119,50.803050028000186],[2.691855916000065,50.80883778900006],[2.678730102000088,50.81323028600015],[2.669221639000114,50.81390207900013],[2.650618123000044,50.81224843400018],[2.642453247000048,50.812455139000136],[2.627777140000148,50.81441884400008],[2.620439087000136,50.81648590200014],[2.615168091000015,50.82217030900007],[2.606589803000076,50.83483103400012],[2.602042277000066,50.838086649],[2.589949992000072,50.84201405900008],[2.586746053000098,50.845424704000024],[2.587779582000081,50.85002390600014],[2.595531046000076,50.86113433900006],[2.596667928000102,50.867645569000146],[2.576927531000138,50.91151886000015],[2.582715291000113,50.92066558900014],[2.605762980000065,50.93523834300011],[2.611654093000055,50.941232809000134],[2.608450154000081,50.96112823500014],[2.592740519000131,50.9761144000001],[2.556980428000116,51.00117747000003],[2.547058553000113,51.020478618000155],[2.537033325000095,51.06461029100013],[2.521799927690466,51.08754088348043],[2.521820509000094,51.08755117400007],[2.54200280000012,51.096869208000115],[2.579925977000073,51.104803778000175],[2.715668165000039,51.169501044000114],[2.923594597000118,51.246486721000096],[3.124847852000045,51.32965729400006],[3.34896894600007,51.375148830000015],[3.349414674022739,51.375223117889796],[3.358068481000061,51.3367125460001],[3.353934366000146,51.311907858000055],[3.353210897000054,51.28860178700002],[3.367370240000099,51.263487040000186],[3.391658163000102,51.246769715000035],[3.398798477000071,51.24469829300007],[3.421940552000109,51.237984721000075],[3.45387658700011,51.23563344400012],[3.501212199000065,51.240284323000175],[3.504106079000053,51.24974111000016],[3.501522258000136,51.262401836],[3.503382609000141,51.27395151800011],[3.514338012000024,51.281031189000075],[3.529014120000113,51.28333079100018],[3.54503381300006,51.28392506900006],[3.584824666000088,51.28953196300007],[3.609526001000091,51.290436300000025],[3.635054159000049,51.28782664],[3.757320597000046,51.262324321000065],[3.776234172000102,51.254521180000054],[3.781401815000095,51.241421204000105],[3.779748169000129,51.23031077100008],[3.781401815000095,51.21987213200005],[3.796284627000119,51.20876169800012],[3.8086869710001,51.20532521600008],[3.927026001000058,51.20625539200013],[3.949453572000067,51.21077708000017],[3.995032186000032,51.233230489000064],[4.118952271000096,51.272401225000024],[4.168561645000096,51.29687001600014],[4.207939087000084,51.33058888800012],[4.213520141000089,51.34053660100012],[4.220961547000115,51.36381683400005],[4.221491455026921,51.3680006030731],[4.221527540000068,51.36798737200017],[4.222178582000112,51.367743231000034],[4.241058790000124,51.356594143],[4.249034050000091,51.34666575700002],[4.256114129000139,51.32843659100003],[4.272634311000019,51.31582265800012],[4.290782097000118,51.305894273000135],[4.30298912900011,51.29608795800003],[4.306651238000143,51.289740302000084],[4.308116082000112,51.283636786],[4.305430535000141,51.276597398000106],[4.298675977000102,51.26959870000003],[4.296722852000045,51.267564195000105],[4.308360222000147,51.271226304000045],[4.316416863000086,51.27684153900016],[4.330821160000141,51.29608795800003],[4.297129754000139,51.3051618510001],[4.289317254000053,51.30914948100017],[4.285411004000082,51.318019924000126],[4.286143425000091,51.339667059000114],[4.283050977000102,51.35008372600011],[4.27564537900011,51.358099677000055],[4.261078321000099,51.369370835000055],[4.261067579111284,51.36937927502028],[4.28112422200013,51.368946510000015],[4.290104614000114,51.3687519330001],[4.326278117000129,51.35642710400005],[4.345605103000081,51.35229299000012],[4.392217244000051,51.35040679900011],[4.411234171000018,51.35673716200013],[4.416195109000085,51.37397125300011],[4.410097290000124,51.38378977500018],[4.387669719000115,51.40053293900002],[4.379918253000113,51.409524638000065],[4.3806417240001,51.419653219000125],[4.387152954000071,51.42745636000013],[4.389220011000134,51.434587708],[4.37712772600014,51.44288177500012],[4.429424275000059,51.46197621700012],[4.483064412000147,51.47432688400009],[4.512623331000071,51.47737579400011],[4.525232381000109,51.47592885400012],[4.533190551000075,51.467583110000064],[4.531846964000096,51.4508657840001],[4.523372029000086,51.43841176400012],[4.521511678000081,51.42864491800007],[4.540631958000091,51.42006663000013],[4.553861125000083,51.41929148400011],[4.582696573000106,51.42259877600013],[4.614632609000097,51.417560323000046],[4.630135539000094,51.418206279000124],[4.643571411000067,51.42141021700009],[4.653906697000053,51.42621612600003],[4.731214641000064,51.485618185000064],[4.764184204000117,51.49623769100013],[4.778653605000045,51.49535919200009],[4.796843709000086,51.49101837200011],[4.813586873000133,51.48411956900004],[4.823922159000062,51.47564463300013],[4.826092570000128,51.46055511500013],[4.819891398000067,51.44621490500005],[4.815447224000138,51.431073711000025]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Bulgaria","sov_a3":"BGR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bulgaria","adm0_a3":"BGR","geou_dif":0,"geounit":"Bulgaria","gu_a3":"BGR","su_dif":0,"subunit":"Bulgaria","su_a3":"BGR","brk_diff":0,"name":"Bulgaria","name_long":"Bulgaria","brk_a3":"BGR","brk_name":"Bulgaria","brk_group":null,"abbrev":"Bulg.","postal":"BG","formal_en":"Republic of Bulgaria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bulgaria","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":8,"pop_est":7204687,"gdp_md_est":93750,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"BU","iso_a2":"BG","iso_a3":"BGR","iso_n3":"100","un_a3":"100","wb_a2":"BG","wb_a3":"BGR","woe_id":23424771,"woe_id_eh":23424771,"woe_note":"Exact WOE match as country","adm0_a3_is":"BGR","adm0_a3_us":"BGR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BGR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.919561808000054,43.83422475200007],[23.052551215000108,43.84281985600006],[23.13184859200004,43.847944845000086],[23.161924275000104,43.85732411700013],[23.196960896000117,43.86275014300011],[23.23447798700002,43.87729705900005],[23.325150732000054,43.88659228100008],[23.484695272000096,43.880604350000056],[23.59269901600007,43.83742869100013],[23.620853516000068,43.83400993000003],[23.63610721900005,43.83215769500009],[23.72075321500006,43.84582611100009],[23.742870727000053,43.84269968700005],[23.799921509000058,43.81846344000007],[24.149605832000134,43.7547199490001],[24.159382772000125,43.75293772400008],[24.336705387000052,43.75925092500009],[24.35823368400014,43.76001739500009],[24.375493612000042,43.763867290000036],[24.431200806000078,43.79417551700007],[24.46634077900012,43.80241790800011],[24.500137166000115,43.79949819000012],[24.661763224000083,43.75565671600006],[24.705602661000057,43.74376515800008],[24.7526282150001,43.738804220000134],[24.963674764000075,43.749604594000054],[25.08160038200009,43.71893463100011],[25.21130822700013,43.71188079900011],[25.252339315000086,43.70464609800004],[25.285404775000075,43.69039131500011],[25.288719523000083,43.68896230100009],[25.323032674000103,43.669712830000066],[25.35961958800004,43.654287415000056],[25.40313114400007,43.65004994800012],[25.426075480000094,43.65439076700008],[25.467416626000045,43.667749125000114],[25.482450035000113,43.66971475300005],[25.48875899300012,43.67053965300008],[25.53382084100008,43.66867930100008],[25.556558472000063,43.67035878500013],[25.575058634000072,43.677386780000035],[25.593868856000086,43.68066823400002],[25.616503134000137,43.68774790400005],[25.637897176000138,43.69728220700006],[25.6535034580001,43.7081342570001],[25.67138350400006,43.7173585000001],[25.73294793700012,43.71878101100003],[25.739596395000092,43.71893463100011],[25.781144246000082,43.73200876900009],[25.80439864100009,43.75991404200008],[25.806258993000085,43.763660584000085],[25.839331909000094,43.78843943300012],[25.869304240000133,43.8008934530001],[25.916433146000113,43.8443791710001],[25.924494670000115,43.858616028000085],[25.93400313300009,43.87032074000007],[26.054305868000085,43.93432200100005],[26.061643921000098,43.94977325400006],[26.079317260000092,43.969048564000076],[26.116214233000107,43.998865865000084],[26.150734091000086,44.01240509000007],[26.23145267800004,44.02749460900005],[26.31051761900011,44.0526093550001],[26.332335498000102,44.05492629800003],[26.41579067300006,44.06378879400003],[26.614168335000098,44.08485544800004],[26.647758016000125,44.09338206000007],[26.667808471000082,44.095087382000116],[26.67731693500008,44.09705108700007],[26.697212361000084,44.106094463000034],[26.708684530000085,44.10810984300008],[26.753694702000104,44.10810984300008],[26.78945479300003,44.115964661000106],[26.88412601700014,44.156530660000044],[27.001534871000075,44.16510894900006],[27.027476441000115,44.177046204000106],[27.100236857000084,44.144490052000066],[27.20555342600008,44.12924550400001],[27.226740763000063,44.12071889300009],[27.251132039000083,44.12237253900014],[27.252662458000145,44.121518866000116],[27.269012085000043,44.11239898700003],[27.264309530000048,44.089764710000075],[27.285341838000075,44.07245310500008],[27.34166914900007,44.0530744430001],[27.35355472800009,44.04527130200009],[27.372881714000073,44.020724996000126],[27.38383711700004,44.015092265000106],[27.57452315200004,44.01628082300002],[27.633434285000135,44.02976837200009],[27.65627526800006,44.02387725900007],[27.676119019000055,43.99354319300005],[27.68251497600008,43.98725601000004],[27.72169763100004,43.94873972600007],[27.78732670100007,43.96041860000013],[27.856469767000135,43.98863393200011],[27.91207360800007,43.99333648700007],[27.91207360800007,43.993233134000064],[27.935844767000106,43.96439768500002],[27.981009969000098,43.84934010900005],[28.014806355000076,43.83003896100009],[28.22125370300006,43.76198110000012],[28.434574015000123,43.735212707000045],[28.578379754000082,43.7412783870001],[28.576182488000086,43.72752513200001],[28.573090040000125,43.60614655200009],[28.575531446000042,43.59332916900004],[28.58570397200009,43.57583242400011],[28.595876498000052,43.563706773],[28.602712436000076,43.55272044500006],[28.603526238000086,43.53815338700011],[28.594574415000036,43.512518622000044],[28.578461134000065,43.4807803410001],[28.560313347000058,43.45384349200003],[28.545176629000082,43.442531643000045],[28.53500410200013,43.438625393000045],[28.488617384000065,43.4064395200001],[28.479258660000113,43.396795966000035],[28.473887566000087,43.38426341400011],[28.473155144000145,43.366848049000055],[28.459483269000113,43.38068268400008],[28.41456139400009,43.398871161000045],[28.404958530000044,43.40468984600011],[28.393809441000116,43.4142927100001],[28.36866295700011,43.42177969000005],[28.3216251960001,43.42829010600005],[28.299164259000094,43.425034898],[28.2615666020001,43.41095612200007],[28.243174675000063,43.4077822940001],[28.17798912900014,43.40997955900008],[28.15723717500006,43.4077822940001],[28.11882571700005,43.39154694200005],[28.091563347000147,43.36395905200004],[28.087006056000092,43.35525136900006],[28.031097852000045,43.24896881700005],[28.017588738000086,43.2327334660001],[28.00017337300011,43.223211981000105],[27.931976759000094,43.2097842470001],[27.920583530000016,43.20404694200004],[27.91382897200009,43.202337958000044],[27.903981967000078,43.202337958000044],[27.903981967000078,43.19550202000002],[27.938731316000112,43.17649974200003],[27.94556725400014,43.168850002000084],[27.944346550000034,43.157131252000084],[27.925140821000067,43.11359284100007],[27.911387566000144,43.06517161700009],[27.904307488000086,43.055853583000044],[27.895518425000034,43.04926178600007],[27.88770592500003,43.042141018000024],[27.88355553500008,43.03099192900009],[27.885427280000073,43.00861237200007],[27.900401238000086,42.96287669500006],[27.903981967000078,42.94228750200002],[27.898448113000143,42.87466054900008],[27.903981967000078,42.85968659100004],[27.8839624360001,42.84837474200006],[27.88355553500008,42.83193594000005],[27.89161217500003,42.81037018400005],[27.897146030000044,42.784002997000044],[27.897146030000044,42.7362328150001],[27.89470462300011,42.71747467700004],[27.892263217000078,42.71051666900007],[27.841075066000116,42.708319403000075],[27.78736412900014,42.71515534100006],[27.74317467500009,42.716050523000064],[27.73267662900011,42.714504299000026],[27.725596550000063,42.70848216400011],[27.71900475400008,42.694566148000064],[27.715830925,42.68374258000006],[27.716970248000052,42.6745059270001],[27.72413170700008,42.66697825700004],[27.739512566000116,42.6610781920001],[27.71273847700013,42.65766022300008],[27.669200066000084,42.643703518000024],[27.646739129000082,42.640570380000035],[27.628428582000137,42.62897370000013],[27.63038170700008,42.602728583000015],[27.64144941500012,42.57477448100008],[27.65015709700009,42.55805084800005],[27.634043816000116,42.563706773000035],[27.5408634770001,42.56549713700011],[27.51148522200009,42.5530459660001],[27.49854576900009,42.532456773000064],[27.491465691000116,42.50775788000007],[27.48015384200005,42.48289622600004],[27.4622501960001,42.489569403000075],[27.452891472000143,42.480129299000076],[27.45337975400014,42.465236721000025],[27.465668165000093,42.45563385600005],[27.462087436000044,42.448716539000145],[27.461110873000052,42.44354889500004],[27.465668165000093,42.42829010600007],[27.468435092000046,42.43577708500004],[27.46989993600002,42.43707916900004],[27.469411655000044,42.43720123900002],[27.465668165000093,42.44135163000004],[27.472666863000086,42.461859442000105],[27.50391686300014,42.43732330900008],[27.514170769000085,42.4351260440001],[27.52637780000006,42.44367096600009],[27.534434441000084,42.45526764500002],[27.544444207000083,42.46002838700011],[27.562022332000108,42.448187567000076],[27.571055535000113,42.45848216400009],[27.57960045700014,42.45722077000008],[27.587738477000045,42.4514834660001],[27.595550977000126,42.448187567000076],[27.609629754000082,42.451157945000084],[27.619476759000094,42.455877997000066],[27.629405144000113,42.458644924000055],[27.643321160000085,42.45563385600005],[27.64283287900011,42.45050690300013],[27.641774936000044,42.44953034100006],[27.639821811000104,42.449774481000105],[27.636485222000058,42.448187567000076],[27.642425977000098,42.430894273000064],[27.65219160200013,42.418524481000134],[27.66773522200012,42.416083075000095],[27.691661004000107,42.42829010600007],[27.69353274800008,42.41889069200005],[27.699066602000073,42.41388580900011],[27.707855665000068,42.41274648600005],[27.71900475400008,42.41469961100012],[27.71900475400008,42.40721263200003],[27.713226759000094,42.405951239000046],[27.698008660000113,42.400376695000034],[27.705414259000122,42.39061107],[27.709646030000044,42.38812897300008],[27.71900475400008,42.38670482],[27.70948326900009,42.37677643400008],[27.708343946000127,42.36310455900004],[27.71436608200014,42.34918854400007],[27.725840691000087,42.33893463700005],[27.74040774800011,42.33429596600013],[27.75212649800011,42.33539459800008],[27.76449629000004,42.3383242860001],[27.780446811000047,42.33893463700005],[27.780446811000047,42.3327090520001],[27.7745874360001,42.32721588700005],[27.77442467500006,42.32172272300005],[27.77914472700004,42.31631094000008],[27.78785241000014,42.31098053600002],[27.762950066000087,42.29559967700006],[27.751149936000044,42.277044989000075],[27.755869988000143,42.25849030200007],[27.780446811000047,42.24335358300007],[27.776052280000073,42.240668036000095],[27.775645379000053,42.23965078300003],[27.77369225400011,42.2359072940001],[27.809743686000076,42.218410549000055],[27.815277540000096,42.211981512000136],[27.819997592000107,42.20465729400013],[27.83139082100007,42.195013739000046],[27.844899936000044,42.186102606000105],[27.856211785000113,42.181301174000026],[27.854177280000098,42.17792389500002],[27.85141035200013,42.17011139500002],[27.84937584700009,42.1670596370001],[27.879079623000024,42.1542422550001],[27.88672936300014,42.14736562700008],[27.903981967000078,42.11981842700006],[27.957774285000113,42.09430573100008],[27.964366082000083,42.08462148600009],[27.972666863000057,42.075384833000044],[27.986582879000135,42.0720889340001],[27.982432488000114,42.06110260600005],[27.98731530000009,42.05174388200001],[27.996918165000068,42.04401276200011],[28.00700931100002,42.0379092470001],[28.00757897200009,42.032904364000075],[28.006114129000107,42.03156159100007],[28.00342858200014,42.03148021000001],[28.00017337300011,42.030462958000044],[28.011566602000073,42.02138906500005],[28.01905358200014,42.008449611000025],[28.020355665000125,41.994574286000045],[28.013845248000052,41.982652085],[28.016774936000076,41.97256094000005],[28.016783431046946,41.97253145701359],[27.981009969000098,41.97852406900006],[27.965920451000102,41.98214141900013],[27.91703454600011,41.97790395100009],[27.903391968000104,41.981056213000045],[27.876933634000096,41.99071970700007],[27.85223230000011,41.99544810000006],[27.843033895000104,41.99575815900004],[27.824016968000137,41.99348439500011],[27.819934529000108,41.99469879200004],[27.81595544500004,41.99513804200006],[27.81192468200004,41.99469879200004],[27.807997274000083,41.99348439500011],[27.80494836400007,41.98343332900009],[27.804896687000053,41.969894104000105],[27.802726278000137,41.96004974400003],[27.818280884000075,41.95286672000009],[27.81533532700007,41.94679473900004],[27.802829631000066,41.94307403600001],[27.78980717000013,41.942686463000115],[27.776164592000043,41.94612294500004],[27.723971395000063,41.96759450300007],[27.68707442200011,41.968602193000066],[27.609301392000106,41.95348683700004],[27.60687259900004,41.94351328500005],[27.60335860200007,41.938629863000095],[27.59808760600006,41.9386040250001],[27.59054284700011,41.94289316900006],[27.582377970000067,41.934883322000076],[27.572197713,41.9298448690001],[27.55075199400008,41.92421213800009],[27.552095581000057,41.92183502200004],[27.55488610800012,41.92033640500003],[27.557935018000133,41.91907033400008],[27.560673869000084,41.91767507000011],[27.55746993000011,41.9155046590001],[27.551268758000017,41.91310170500006],[27.548891642000083,41.91087961900007],[27.562740926000057,41.90643544500006],[27.54641117300011,41.901164449000134],[27.533182007000107,41.90806325300011],[27.50946252400007,41.93317799900012],[27.494321330000048,41.94284149200004],[27.420837443000096,41.97371816000003],[27.396859578000058,41.98932444300007],[27.374845418000092,42.00870310500005],[27.33247074400009,42.05743398100009],[27.30528894000008,42.07758778900006],[27.2733529060001,42.09174713200011],[27.238212931000074,42.097922465000096],[27.216405477000137,42.09562286400006],[27.203796427000015,42.08812978100013],[27.18157556100007,42.06588307700007],[27.178991740000072,42.061878154000084],[27.17816491700006,42.05836415600004],[27.17382409700008,42.057072246000075],[27.149587849000085,42.061826478000086],[27.127211954000103,42.06257578600008],[27.116049845000077,42.061826478000086],[27.100650268000095,42.07110239700008],[27.083700398000076,42.078414612000074],[27.065510294000035,42.08270375600006],[27.047903041000097,42.082919649000075],[27.046545044000084,42.082936300000114],[27.022618856000094,42.07389292400006],[27.000397990000067,42.0428095500001],[26.981071004000086,42.03286183700001],[26.967170044000113,42.02849517900012],[26.9582300210001,42.01823740600014],[26.950065144000064,42.00617096000005],[26.938903035000035,41.996223247000046],[26.930221395000075,41.99451792400009],[26.911462850000078,41.996791687],[26.901075887000076,41.99348439500011],[26.89032718900006,41.98542287300012],[26.881128784000055,41.98552622500006],[26.871723674000094,41.98813588500005],[26.86076826900012,41.987903341000106],[26.850019572000093,41.98286488900004],[26.837899181000097,41.97521950300009],[26.82769535300011,41.968783061000096],[26.819427124000068,41.96565663600006],[26.808420044000087,41.96787872400006],[26.78991988100006,41.979945170000036],[26.780566447000126,41.98343332900009],[26.768577515000057,41.980771994000065],[26.746976766000103,41.96449391700014],[26.736744833000103,41.958964539000135],[26.7175728760001,41.957310893000084],[26.623573446000076,41.969041444000084],[26.605693400000092,41.96741363600003],[26.589467,41.95875783400007],[26.560631552000075,41.93568430600001],[26.553293497000084,41.93157603000009],[26.547092326000097,41.92689931200002],[26.54295821100007,41.920362244000046],[26.54471521000005,41.916434835000075],[26.556807495000044,41.91075042700004],[26.55980472800013,41.90733978300011],[26.55897790500012,41.90173289000009],[26.554740438000067,41.892947897000084],[26.553603557000145,41.887702739000076],[26.552894853000026,41.881643325000084],[26.55205326300012,41.87444773400006],[26.547815796000094,41.85628346800013],[26.539547567000028,41.83799001100007],[26.526111694000093,41.82424408000011],[26.478362671000095,41.81328867600004],[26.375526571000076,41.81662180600006],[26.334185425000044,41.789543355],[26.320026082000084,41.765462138000146],[26.31630537900008,41.74375803600006],[26.323230021000143,41.7236817430001],[26.333358602000114,41.71303639700011],[26.29491133600007,41.710323385000066],[26.273930705000055,41.71489674900002],[26.261011597000046,41.72306162600003],[26.234449910000137,41.74582509400002],[26.2261816810001,41.749674988000066],[26.2118156330001,41.75047597300007],[26.189904826000117,41.734688823000084],[26.13512780800005,41.733396912000046],[26.10835941500008,41.72789337200004],[26.081487671000072,41.71151194300008],[26.074046265000046,41.70913482700004],[26.0672249750001,41.708850606000084],[26.06050704000009,41.707300314000065],[26.053685750000113,41.70151255300007],[26.04810469500009,41.689084371],[26.047484578000137,41.67461497000008],[26.0502751060001,41.66045562700003],[26.05502933700009,41.64875091600004],[26.05948958500008,41.64377677000007],[26.066914917000105,41.635495911000135],[26.08117761200009,41.63045745900006],[26.09523360200012,41.62839040100002],[26.106705770000133,41.62428212500009],[26.115284057000054,41.61663401300012],[26.12107181800013,41.60821075500013],[26.13027022300014,41.58268259700009],[26.130993693000022,41.575137838000046],[26.1294434000001,41.55937652700007],[26.13120039800009,41.552658590000135],[26.13678145300011,41.5491962690001],[26.15249108900008,41.54702585900011],[26.158072144000073,41.542323303000046],[26.16313643400005,41.52914581300004],[26.164480021000113,41.51772532200005],[26.16292972800011,41.50645986000009],[26.15931237800004,41.49379913400014],[26.147633504000055,41.484755758000084],[26.145876506000064,41.47803782200006],[26.156211792000075,41.46041615800007],[26.16044926000012,41.45586863200003],[26.174298543000102,41.445998434000046],[26.177399129000037,41.439952291000104],[26.175642130000142,41.43189076700011],[26.170577840000078,41.42956532800008],[26.164273316000077,41.427860006000024],[26.159002319000138,41.4218138630001],[26.147840210000112,41.39690582300011],[26.132440633000016,41.37153269500004],[26.12086511200007,41.357786764000075],[26.11466394100009,41.35520294200008],[26.107325887000087,41.35659820600006],[26.021853068000066,41.3416637170001],[26.008933960000064,41.33680613200008],[25.982268921000127,41.32326690700012],[25.959634643000072,41.31499867800005],[25.94857588700006,41.31396515000009],[25.935140015000115,41.31592885400002],[25.921187378000127,41.31603220600004],[25.896279338000053,41.3062653610001],[25.88201664200008,41.304043274000094],[25.862689657000118,41.310089417000114],[25.83333744300006,41.33463572200009],[25.811013224000078,41.341043600000035],[25.800781290000117,41.33804636600013],[25.763470906000066,41.319029440000065],[25.72874434400012,41.317065735000114],[25.71747888200008,41.314120178000024],[25.70517989100003,41.307298889000066],[25.698048543000084,41.3019245400001],[25.691227255000058,41.298410543000045],[25.679961792000086,41.29717030900011],[25.670453328000093,41.29918568900007],[25.64957605000012,41.30848744700009],[25.639757528000047,41.31107126900008],[25.551494182000084,41.31567047100014],[25.537954956000107,41.31220815000008],[25.530203491000094,41.30275136400013],[25.52369226100012,41.29169260700013],[25.514907267000126,41.28347605400009],[25.50508874500008,41.2805821740001],[25.497337280000067,41.281202291000085],[25.489482462000126,41.28306264300007],[25.479095500000113,41.28378611200009],[25.453463989000056,41.28042714400007],[25.28572229000005,41.23939605700011],[25.26226119000009,41.23810414700006],[25.239110148000094,41.24089467400003],[25.219679810000116,41.24973134400002],[25.177098430000058,41.293863017000035],[25.15787479700012,41.30611033200006],[25.153847445000054,41.30753500800006],[25.116533650000093,41.320734762000114],[25.11260624200011,41.32414540600004],[25.104854777000128,41.334067282000035],[25.101857544000097,41.33665110300004],[25.09679325400012,41.336702779000056],[25.080360148000068,41.334067282000035],[24.91695926900007,41.38636383100007],[24.88636682200007,41.400626526000025],[24.872930949000107,41.401866761000065],[24.863009074000104,41.40031646800014],[24.84213179500003,41.39473541300003],[24.803271118000083,41.39266835500007],[24.80017053200004,41.37933583600005],[24.802857706000054,41.361920878],[24.79427941900013,41.34739980100008],[24.774435669000127,41.34807159500005],[24.7526282150001,41.362747701000046],[24.718728475000088,41.39571726500009],[24.69919478300011,41.40894643200008],[24.68090132600011,41.41550933800008],[24.661264282000104,41.41767974900006],[24.638216594000113,41.41767974900006],[24.644314413000075,41.42765330000006],[24.60948449700004,41.42723988800006],[24.59584191900012,41.42977203400005],[24.58044234200014,41.44052073200006],[24.579718872000026,41.44418975900007],[24.58219934100012,41.45524851500008],[24.581062459000094,41.46020945300012],[24.577238403000052,41.46356842100005],[24.567729939000085,41.46811594700006],[24.5641125890001,41.47106150400006],[24.55873824100013,41.47684926400003],[24.553570598000135,41.480776673],[24.549436483000104,41.48542755200006],[24.54654260300012,41.49364410400011],[24.543338664000146,41.52134267200003],[24.530936320000077,41.54754262300014],[24.510162395000123,41.56165028900008],[24.481326945000088,41.55322703100009],[24.45920943200008,41.54950632800009],[24.438848917000144,41.52769887300004],[24.42396610500012,41.52521840500009],[24.40288212100009,41.52785390200009],[24.387482544000108,41.52666534500008],[24.353892863000084,41.51912058600004],[24.345004517000064,41.51839711500011],[24.318236124000094,41.520774231000075],[24.309554484000046,41.51979237900011],[24.303043254000073,41.516950175000034],[24.29611861200007,41.51524485300006],[24.28681685400005,41.51762196900012],[24.28505985500007,41.523151347000116],[24.2873336180001,41.53162628200002],[24.28640344200005,41.54035959900008],[24.26686975100003,41.54976471000006],[24.250746704000047,41.563458964000056],[24.23328007,41.56180531800004],[24.214366496000082,41.555759176000066],[24.197697918000074,41.5477106350001],[24.196279744000066,41.54702585900011],[24.18160363800007,41.53736236600008],[24.177469523000124,41.531006165000065],[24.173128703000145,41.51529652900009],[24.170234823000072,41.51157582600007],[24.162793416000053,41.51204091400009],[24.158452596000075,41.51633005800008],[24.15400842300008,41.52211781800013],[24.146256958000066,41.52676869700011],[24.116491333000084,41.533383280000095],[24.076597127000127,41.5360187790001],[24.047348267000075,41.52573516900011],[24.049828736000052,41.49364410400011],[24.052515910000093,41.471474915000066],[24.051999146000043,41.46299998000006],[24.04590132700008,41.45545522100011],[24.034739217000066,41.45132110600011],[24.022853637000136,41.45307810500009],[24.000736125000117,41.46413686100007],[23.997118774000057,41.45700551400005],[23.992364542000132,41.4546283980001],[23.986886841000057,41.45369822200004],[23.981305786000036,41.45085601900007],[23.964665975000116,41.43835032200007],[23.949886515000117,41.43757517500006],[23.90286096200012,41.46351674500002],[23.894799438000035,41.46434356700004],[23.867720988000087,41.44548166900012],[23.851597941000108,41.43959055600001],[23.83092736800009,41.43561147000014],[23.809740031000047,41.433802795000126],[23.792066691000116,41.43447458900002],[23.77708052600005,41.42904856400014],[23.754446248000107,41.40067820200005],[23.73821984800008,41.39747426400007],[23.705353638000076,41.403158671000114],[23.672177368000064,41.40295196500006],[23.6528503830001,41.39762929300011],[23.627735637000086,41.378509014000116],[23.624846740000063,41.377093845000076],[23.61243941200013,41.371015931000066],[23.578953084000116,41.37199778300004],[23.513013957000112,41.39773264600004],[23.414518677000046,41.39990305600011],[23.39550175000008,41.39525217700006],[23.36511600700004,41.378560690000114],[23.34723596200007,41.37122263600014],[23.32604862500011,41.369310608000035],[23.315609985000062,41.376855367000076],[23.306204875000105,41.3883792120001],[23.287704712000078,41.398197734000064],[23.269928019000048,41.397267558000124],[23.2465702720001,41.389722799000054],[23.22424605300006,41.379025778000056],[23.209776652000098,41.36858713800012],[23.206366007000096,41.36093902600004],[23.204815714000063,41.342697245000096],[23.19954471900013,41.332982076000064],[23.19065637200003,41.326057435000074],[23.179700968000134,41.3213548790001],[23.15717004300012,41.31634226500003],[23.115208781000035,41.31267323800003],[22.916977986000063,41.33577260400011],[22.940852498000137,41.34982859300004],[22.944469849000114,41.368432109000075],[22.939405558000146,41.38941274000007],[22.937338501000085,41.410755107000085],[22.94054244000006,41.416904602000045],[22.95211796000009,41.427704976000086],[22.95459842900007,41.43240753200007],[22.953358195000135,41.438195293000035],[22.947570435000074,41.448375549000104],[22.94622684800009,41.45323313500012],[22.943599338000126,41.52320117600007],[22.943022909000035,41.5385509240001],[22.94788049300007,41.55513905900011],[22.948707316000082,41.560978495000086],[22.946433553000073,41.567748108000046],[22.936925090000074,41.57891021800006],[22.9337211510001,41.5845946250001],[22.93206750500005,41.59795298300014],[22.9329976810001,41.612344869000054],[22.936098266000045,41.626168315000115],[22.940852498000137,41.63764048300004],[22.945813436000094,41.64107696600007],[22.96152307100007,41.64448761100007],[22.967000773000052,41.647045594000076],[22.970101359000097,41.65203236900003],[22.97661259000006,41.66655344600007],[22.9854345280001,41.67719775700007],[22.998626750000142,41.693115133000106],[23.00958215300011,41.716369528000115],[23.008858683000113,41.73993398000002],[22.991185344000115,41.76099212700004],[22.98053999800004,41.764738668000064],[22.956872192000105,41.76566884400012],[22.94591678800012,41.7693378700001],[22.939715617000047,41.776701762000094],[22.918321573000128,41.81434804300005],[22.907676229000113,41.84858367900006],[22.901371704000013,41.86041758200005],[22.896720825000045,41.86444834400007],[22.88504195200008,41.86915089900003],[22.88208830500011,41.87161827500009],[22.88080448400012,41.87269073500008],[22.878220662000047,41.88026133300005],[22.878634073000057,41.895014954000146],[22.877083781000124,41.90204294900008],[22.866335083000106,41.924883932000085],[22.858893677000083,41.94787994400011],[22.857136678000103,41.97188364700014],[22.85475956200014,41.98263234500007],[22.846904744000113,41.99348439500011],[22.846594686000028,41.993639425000055],[22.845767863000106,42.006868592000046],[22.84562115900013,42.00740772900008],[22.843700806000044,42.014465027000114],[22.838223104000065,42.01947764100006],[22.82695764200011,42.02508453400009],[22.821273234000046,42.02536875400008],[22.805977010000106,42.02138966900009],[22.79894901500009,42.021234640000046],[22.791094198000053,42.025808004000076],[22.787683553000136,42.03257761600014],[22.785306437000088,42.0391405230001],[22.780862264000064,42.0431712860001],[22.770630330000103,42.04399810800004],[22.7250517170001,42.04247365400002],[22.718437134000112,42.044463196000066],[22.713992961000116,42.048623149000086],[22.71027225800009,42.05298980800009],[22.705724731000146,42.05593536400008],[22.675855753000036,42.060612081000045],[22.627176665000036,42.07912659200011],[22.617771443000066,42.08270375600006],[22.531058390000112,42.12910919300006],[22.510181112000026,42.14479299000004],[22.50693853400014,42.14892727600005],[22.494678182000115,42.16455922500009],[22.481449015000123,42.193317160000106],[22.443621867000047,42.21442698200013],[22.345023234000053,42.31343902600014],[22.364143514000148,42.320983785000095],[22.405794718000067,42.32155222600005],[22.423984822000108,42.325893047000136],[22.438454223000036,42.34005238800009],[22.454370565000147,42.376768494000146],[22.46977014100014,42.391702983000094],[22.485066365000108,42.39715484600009],[22.4975720620001,42.39919606500004],[22.508837525000075,42.40493215],[22.519482870000047,42.42092600500004],[22.533125448000078,42.45759043400011],[22.536536092000087,42.478390198000056],[22.532505330000106,42.49340220200014],[22.532505330000106,42.493557231000096],[22.524857218000108,42.50766489700001],[22.512144816000074,42.51918874200003],[22.481449015000123,42.53562184600011],[22.429669230000055,42.57140777600003],[22.425328410000077,42.57285471600002],[22.428842407000044,42.592775981000045],[22.44131821900004,42.63289146300011],[22.44455204200008,42.64328969400006],[22.44920292100005,42.667965190000075],[22.442071573000106,42.6816852820001],[22.468116496000107,42.718323873000145],[22.481449015000123,42.72767730700011],[22.482585897000035,42.73067454100001],[22.482895955000117,42.73377512600007],[22.482585897000035,42.73682403600008],[22.481449015000123,42.73982126900009],[22.46656620300007,42.74852874800007],[22.453130331000125,42.76359242800007],[22.429359172000062,42.80612213100011],[22.425845174000102,42.80984283500004],[22.427395467000053,42.81361521400004],[22.430446174000025,42.81707659300011],[22.43680057800009,42.82428639800014],[22.445482218000052,42.830177511000045],[22.470907023000052,42.84012522400005],[22.481449015000123,42.84673980700006],[22.497055298000078,42.86441314700005],[22.506046997000112,42.870123393000085],[22.51979292800013,42.87035593700005],[22.537569621000074,42.868340556000106],[22.544494262000057,42.87138946600003],[22.544785162000068,42.871706438000075],[22.549971965000054,42.877358093000055],[22.56361454200004,42.884282735000056],[22.590899699000147,42.88689239500005],[22.666243937000043,42.871932068000085],[22.696629680000086,42.87740977000007],[22.727015422000136,42.88689239500005],[22.73879764800006,42.897382711],[22.73957861800011,42.898857543000105],[22.74551558400006,42.91006927500007],[22.763188924000076,42.95864512100004],[22.769390096000052,42.97128000900008],[22.776418091000068,42.97972910600009],[22.788096964000147,42.984896749000086],[22.815795532000067,42.989702657000095],[22.828817993000115,42.99344919800009],[22.82892134600013,42.99344919800009],[22.82902469900006,42.993500875000024],[22.82902469900006,42.993655905000054],[22.842253865000142,43.00750518800004],[22.88421512800005,43.03665069600004],[22.889486124000086,43.04437632300005],[22.896720825000045,43.06272145700012],[22.901681763000113,43.069749451000035],[22.910156698000094,43.07527882900004],[22.927106568000113,43.081144105000135],[22.93527144300012,43.08556243900002],[22.955631958000055,43.108274232000014],[22.974028768000068,43.14119211800005],[22.98457076000011,43.174626771000135],[22.98290193500014,43.187317919000094],[22.981366822000066,43.19899220800005],[22.964727010000043,43.20441823400003],[22.915531046000066,43.21224721300006],[22.89775435300004,43.22033457400005],[22.88380171700004,43.23059234700014],[22.857343384000046,43.256947327],[22.833158814000083,43.274646505000106],[22.82695764200011,43.28139027900005],[22.823857056000065,43.2892967730001],[22.820756469000113,43.30753855400005],[22.817139119000046,43.31549672400009],[22.804530070000112,43.32898427400008],[22.733009888000083,43.38151336700014],[22.724343132000087,43.38606013100011],[22.719367309000063,43.38867055300008],[22.702934204000087,43.39404490200005],[22.693219035000055,43.39487172500009],[22.674202108000088,43.39414825500009],[22.664693644000096,43.39673207700008],[22.658926066000106,43.40129503400007],[22.6565287680001,43.40319163100014],[22.645366658000057,43.4202965290001],[22.63782190000012,43.426368511000135],[22.628520141000077,43.42825470000014],[22.606919393000112,43.42740203800011],[22.59627404800011,43.42915903800008],[22.586765584000116,43.434430033000126],[22.572709595000106,43.44815012700005],[22.565784953000048,43.45334360800006],[22.53260868400011,43.46484161400008],[22.51886275200007,43.47424672500006],[22.50935428800011,43.49334116600005],[22.49064742000013,43.54088348500005],[22.478451783000107,43.55922861700011],[22.47762495900008,43.56416371700007],[22.47865848800006,43.56917633100005],[22.481449015000123,43.57411143000007],[22.48268925000005,43.57669525200009],[22.48310266100006,43.579279073000095],[22.48268925000005,43.581733704000044],[22.481449015000123,43.584136658],[22.478141723000107,43.587573141000036],[22.47710819400004,43.59129384400006],[22.478141723000107,43.59491119400013],[22.481449015000123,43.59852854500011],[22.48175907400011,43.59894195600003],[22.481965780000053,43.59945872000006],[22.48175907400011,43.5999754850001],[22.481449015000123,43.60064727800008],[22.47380090300004,43.612997946000036],[22.47287072800009,43.63594228200009],[22.466256144000084,43.64911977200006],[22.4559208580001,43.656406149000134],[22.42646529100008,43.668214213000056],[22.41395959500008,43.67666331000004],[22.404864543000116,43.68717946400011],[22.396906372000043,43.69940094000012],[22.390498495000113,43.71244924000006],[22.386054321000103,43.7254975380001],[22.38584761600006,43.73381744400007],[22.389568319000148,43.750508932000116],[22.38853479000008,43.75828623500012],[22.362593221000026,43.78084299800014],[22.349467407000077,43.807921448000116],[22.354738403000084,43.82970306500002],[22.367554159000065,43.852750753000095],[22.377062622000068,43.88352406800004],[22.379026326000087,43.91349639900008],[22.382023560000107,43.91856069000008],[22.39194543500011,43.931867371000095],[22.39452925600011,43.936337382],[22.396803019000117,43.951943665000044],[22.397319783000057,43.980934144000116],[22.39959354600009,43.99333648700007],[22.4117891840001,44.00692738900008],[22.43432010900011,44.0139553840001],[22.46588525700014,44.017624140000066],[22.481449015000123,44.01943308500009],[22.503669882000054,44.01989817300009],[22.51493534300002,44.03028513600012],[22.522583455000103,44.04470286100013],[22.53415897600013,44.05715688100011],[22.554622844000107,44.06242787700006],[22.575190064000083,44.06139434800008],[22.592966757000113,44.06392649400007],[22.604748982000018,44.07937774700005],[22.604645630000107,44.088162740000136],[22.598134399000116,44.1092984010001],[22.597100871000038,44.11906524700004],[22.599064575000085,44.1303307090001],[22.6093998610001,44.159941305000046],[22.607952921000106,44.15999298100007],[22.605989217000054,44.163145244000106],[22.604852335000142,44.16846791600008],[22.606195923000115,44.174565735000044],[22.608573039000078,44.17585764600008],[22.624799438000082,44.189396872000145],[22.63999231000011,44.20732859300003],[22.648777303000088,44.213994853000145],[22.691640373000098,44.228434539],[22.906435995000095,44.12288930300007],[22.94260949700003,44.111468811000094],[22.98808475700008,44.10702463800006],[23.008306709000095,44.10044641300007],[23.03097619600004,44.09307200200007],[23.040071248000086,44.06232452400013],[23.02301802500008,44.0316287230001],[22.98808475700008,44.0176760870001],[22.96627730300014,44.015557353000105],[22.92648645000014,44.00615224300006],[22.905815877000123,44.00398183200007],[22.8858687740001,43.9945250450001],[22.874706665000076,43.972045797000106],[22.850522095000088,43.896985779],[22.85103885900014,43.87435150200005],[22.863441203,43.85541208900011],[22.88876265500008,43.83952158700009],[22.919561808000054,43.83422475200007]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Bosnia and Herzegovina","sov_a3":"BIH","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bosnia and Herzegovina","adm0_a3":"BIH","geou_dif":0,"geounit":"Bosnia and Herzegovina","gu_a3":"BIH","su_dif":0,"subunit":"Bosnia and Herzegovina","su_a3":"BIH","brk_diff":0,"name":"Bosnia and Herz.","name_long":"Bosnia and Herzegovina","brk_a3":"BIH","brk_name":"Bosnia and Herz.","brk_group":null,"abbrev":"B.H.","postal":"BiH","formal_en":"Bosnia and Herzegovina","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bosnia and Herzegovina","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":2,"pop_est":4613414,"gdp_md_est":29700,"pop_year":-99,"lastcensus":1991,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"BK","iso_a2":"BA","iso_a3":"BIH","iso_n3":"070","un_a3":"070","wb_a2":"BA","wb_a3":"BIH","woe_id":23424761,"woe_id_eh":23424761,"woe_note":"Exact WOE match as country","adm0_a3_is":"BIH","adm0_a3_us":"BIH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":16,"long_len":22,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BIH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.941528768000097,45.241218974],[16.947316529000148,45.235689596],[16.96798710100009,45.237291566000025],[16.965299926000057,45.24421620700012],[16.961165812000047,45.25093414300012],[16.975945271000057,45.24716176400001],[16.988140909000066,45.23651641900004],[16.99868290200004,45.23140045200013],[17.008294718000116,45.244164531000095],[17.012015421000058,45.23646474200011],[17.013565715000055,45.230573629],[17.012532186000072,45.22447581000013],[17.008294718000116,45.21615590500009],[17.014392537000074,45.21977325500007],[17.0302055250001,45.226956279000106],[17.036303344000146,45.23047027600008],[17.055733683000113,45.20044626900004],[17.09841841600013,45.17765696200002],[17.124628433000083,45.169057755000054],[17.18709517400012,45.14856313100002],[17.197843872000135,45.1529556280001],[17.245489543000076,45.155384420000175],[17.24972701000013,45.159880269],[17.268950643000068,45.189542542000154],[17.3078113200001,45.17140411500012],[17.326518188000108,45.16592641200005],[17.359384399000135,45.150681865000095],[17.368582804000113,45.14510081000016],[17.382432088000087,45.13962310900008],[17.400828898000096,45.141018372000175],[17.434108520000024,45.14856313100002],[17.4361755780001,45.15192209900012],[17.438759399000105,45.15812327100012],[17.443306925000115,45.16205068000009],[17.451161743000057,45.158485006000106],[17.456949503000118,45.15181874600002],[17.45808638500006,45.146134339000135],[17.4549857990001,45.14060496000015],[17.44775109900013,45.13430043600014],[17.460360148000063,45.13125152600012],[17.472349080000125,45.132750142000035],[17.49622359200009,45.141690165000156],[17.487025187000114,45.120864564],[17.481857544000093,45.114405009000116],[17.48929895000012,45.116265361000146],[17.53952844300008,45.12096791600011],[17.56143925000012,45.11936594700008],[17.57239465300009,45.12039947600006],[17.593065226000107,45.12959788000008],[17.629962199000147,45.15734812500001],[17.651562948000105,45.16535797100009],[17.68473921700013,45.16396270800002],[17.71450484200011,45.15202545200016],[17.741376587000104,45.133266907000156],[17.797497193000055,45.081952210000125],[17.815583944000082,45.07016998300013],[17.835737752000057,45.064433899000065],[17.845659628000135,45.065260723000094],[17.87521854600007,45.07399403900014],[17.902607056000107,45.0777664190001],[17.911185343000053,45.081073711],[17.927721802000065,45.09202911400014],[17.988493286000047,45.143808900000025],[18.003479451000118,45.14933827800003],[18.019085734000072,45.14944163100016],[18.035002075000108,45.14334381200011],[18.090295857000115,45.107997131],[18.112413371000116,45.10060740199999],[18.131843709000094,45.09786855100004],[18.143698040000118,45.09770000500004],[18.143704328000098,45.09769991600014],[18.153651164000053,45.097558493000165],[18.17494185400011,45.100762431000035],[18.192511841000083,45.10851389600004],[18.199333130000127,45.119004212],[18.20005659900005,45.131613262000094],[18.202330363000073,45.144067281],[18.213285766000123,45.15378245000012],[18.237883748000115,45.15745147700012],[18.26196496600008,45.150681865000095],[18.307440227000114,45.1275308230001],[18.322323039000054,45.12287994400005],[18.392913045000057,45.118642476],[18.41203332500004,45.11244130500002],[18.42929325400013,45.10220937200005],[18.45182985200009,45.084958745],[18.451841622000074,45.08494973600007],[18.46608687300011,45.07404571600007],[18.481708184000066,45.06692135200007],[18.49078820800014,45.06278025300009],[18.517039835000077,45.05585561200003],[18.541121053000097,45.05528717100016],[18.539260702000092,45.06934316000009],[18.534403117000092,45.081538799000114],[18.534802705000118,45.08841171800016],[18.53491988100012,45.090427145000135],[18.549595988000107,45.094767965000116],[18.557657511000116,45.09440623000002],[18.57378055800009,45.09156402600003],[18.581842082000065,45.09135732099999],[18.588560018000095,45.09321767199999],[18.60251265400009,45.09926381500013],[18.609127238000095,45.10009063700015],[18.61667199700014,45.097661845000104],[18.62111617000005,45.09311431900006],[18.627937459000094,45.08004018200002],[18.633621867000045,45.071978658000106],[18.640546509000046,45.06536407500012],[18.648711385000123,45.0626769],[18.658116495000087,45.06629425000007],[18.661217082000036,45.07110015900015],[18.663284139000098,45.07714630100013],[18.66607466600007,45.08298573900011],[18.671345662000107,45.086861470000066],[18.678166951000065,45.08737823500009],[18.684058065000045,45.084794414],[18.689019002000094,45.080246888000076],[18.726329386000117,45.026141663000075],[18.738318319000086,45.015909729000086],[18.750100546000084,45.01224070300016],[18.778005819000068,45.010328674000064],[18.784930461000073,45.00846832300006],[18.78896122200007,45.00572947200011],[18.7917517490001,45.001543681000086],[18.794645630000105,44.99544586200003],[18.795162394000045,44.993327129000036],[18.795162394000045,44.988004456],[18.795782512000102,44.985058899000094],[18.7979529210001,44.98221669500013],[18.80301721200007,44.9773074350001],[18.80456750500008,44.97384511300005],[18.801570271000084,44.963974915000065],[18.779866170000076,44.95224436400018],[18.772631469000117,44.942477519000036],[18.783380167000132,44.91374542300012],[18.817796672000096,44.887545472],[18.842129476000082,44.87623932000006],[18.842144042000115,44.8762325520001],[18.858724406000107,44.868528545000125],[18.889626912000097,44.86119049100013],[18.97491591404824,44.862757179978516],[19.00496870900014,44.863309225000116],[19.015820760000082,44.86563466400004],[19.047756795000083,44.87271433600007],[19.068427368000073,44.87483306900005],[19.08455041500008,44.87896718399999],[19.174260701000037,44.925424297000106],[19.186869751000074,44.92754303000008],[19.19317427600009,44.92154856400005],[19.196894979000092,44.91317698200008],[19.201855916000056,44.90837107300014],[19.21188114400007,44.90837107300014],[19.22955448400006,44.91374542300012],[19.239476359000065,44.91514068700008],[19.283814738000103,44.90837107300014],[19.293013143000106,44.90940460200012],[19.301281372000062,44.91235015900004],[19.310169718000083,44.91235015900004],[19.330220174000118,44.89870758100012],[19.34014204900012,44.89622711200015],[19.35027062900008,44.89700225899999],[19.352957805000102,44.89808746300015],[19.353164510000056,44.89901763900012],[19.3569823040001,44.895877196000136],[19.356992726000072,44.89586862300017],[19.362776327000063,44.89111114500015],[19.368667440000053,44.8871320600001],[19.37280155400009,44.88144765300014],[19.37569543400008,44.873127747000076],[19.376625610000133,44.86299916600005],[19.373111613000077,44.860260315000076],[19.367840617000127,44.859278463000024],[19.363706503000117,44.85462758400014],[19.328359822000095,44.73396311500006],[19.31802453600011,44.71546295200015],[19.308412720000092,44.705127665000035],[19.2882589110001,44.69303538000006],[19.277613566000127,44.68487050400013],[19.270068807000087,44.67562042200002],[19.25570275900006,44.64564809200009],[19.208677205000097,44.58839060500013],[19.20412967900006,44.585134990000036],[19.193277628000118,44.58058746400009],[19.188316691000068,44.57603993700015],[19.186249633000102,44.56932200200005],[19.187283162000085,44.55330230700018],[19.185319458000038,44.54622263600005],[19.179635051000105,44.53826446500001],[19.17312382000011,44.53144317700004],[19.165269002000088,44.52668894500006],[19.1299223230001,44.518317363000094],[19.127338500000093,44.502556051],[19.143358195000133,44.45821767200005],[19.141394490000092,44.43082916300001],[19.129612264000116,44.41615305600011],[19.115762980000056,44.403595683],[19.107184693000107,44.38271840400013],[19.108941691000098,44.36364980100013],[19.11669315600011,44.34370269800002],[19.13891402200005,44.309337871000096],[19.15700077300005,44.2935765590001],[19.177154582000128,44.286961976000114],[19.22004602000007,44.280244039000095],[19.240716594000105,44.272699280000055],[19.249501587000083,44.270735576],[19.26366093000013,44.270167135000136],[19.295907023000098,44.2757998660001],[19.30737919100011,44.27419789600005],[19.3243290610001,44.26396596299999],[19.341588989000115,44.245827535000146],[19.353991333000067,44.224330140000106],[19.356058390000044,44.20402130100008],[19.362362915000062,44.19120554700002],[19.381173136000143,44.17709788000015],[19.424891398000057,44.153791810000044],[19.435536743000114,44.14609202100014],[19.442564738000044,44.14319814000005],[19.44845585100003,44.144438375],[19.459721313000102,44.15270660400013],[19.46571577900005,44.15280995700006],[19.474190714000116,44.14490346300011],[19.476361125000036,44.12702341700016],[19.482665649000126,44.12066721700013],[19.498168579000065,44.110228577],[19.516189487000133,44.09119350600004],[19.52204309100003,44.08501047800014],[19.55459924300007,44.07126454700001],[19.570928995000116,44.05689849900001],[19.580230753000137,44.05152415000005],[19.583848104000108,44.0543146780001],[19.589945923000073,44.060309144000044],[19.598937622000022,44.06258290600006],[19.611443319000045,44.05452138300016],[19.618884725000044,44.03571116100015],[19.610409790000062,44.01927805700007],[19.593356567000114,44.00558380200006],[19.55222212700005,43.983414612000146],[19.528554321000115,43.97721344100016],[19.504059692000055,43.97566314700005],[19.447112264000083,43.979797262000076],[19.393988892000035,43.9770584110001],[19.37910607900011,43.97385447200004],[19.364636678000068,43.973286031],[19.351717570000062,43.97912546800008],[19.32587935400005,43.99659210200004],[19.300557902000065,44.00951121000004],[19.287328735000074,44.013025208],[19.2727559810001,44.01240509000003],[19.252085409000074,44.00749583],[19.24350712100005,44.0020181280001],[19.23802941900007,43.992509664000025],[19.238132771000096,43.98537831599999],[19.242887003000078,43.97282094400008],[19.240716594000105,43.96574127200012],[19.22934777800012,43.95767974800004],[19.241026652000073,43.952357077],[19.27544315600005,43.93326263400003],[19.305932251000115,43.90473724400006],[19.35946903500007,43.842208761000066],[19.46168501800014,43.76213612900004],[19.48173547300007,43.72921824200007],[19.505713338000106,43.67364023900008],[19.507366984000043,43.64718190500018],[19.48173547300007,43.62891428700011],[19.477498006000133,43.616977030000086],[19.47563765400011,43.60255930600005],[19.476877889000065,43.588684184],[19.48173547300007,43.578116353000105],[19.488970174000144,43.57318125500008],[19.491760702000107,43.56860789000014],[19.489590291000127,43.56444793700011],[19.48173547300007,43.560830587000126],[19.44390832500011,43.57186350600004],[19.43181604000011,43.57114003500011],[19.41931034400011,43.54925506700008],[19.410732056000086,43.54075429300015],[19.402877238000144,43.54964263900008],[19.394609009000106,43.56646331800006],[19.38044966600006,43.585583598000035],[19.363396443000113,43.601577454],[19.346549926000137,43.60883799200015],[19.335801228000033,43.60651255300002],[19.312650187000145,43.59315419500011],[19.300867960000033,43.58829661099998],[19.289189087000064,43.58793487500019],[19.26366093000013,43.590957947],[19.252705525000067,43.58863250700007],[19.238856242000082,43.57212188699999],[19.229451131000133,43.54974599200001],[19.217462199000067,43.53279612200011],[19.195344686000084,43.53279612200011],[19.147699015000114,43.53814463300016],[19.122790975000072,43.535948385000054],[19.096022583000092,43.5129006960001],[19.07638553800004,43.507242127000055],[19.054991495000138,43.50669952400001],[19.038144979000066,43.51101450700018],[19.02501916500009,43.52302927700004],[19.014270467000074,43.53778289800006],[19.000214477000043,43.547885641],[18.977476847000073,43.546231995000156],[18.962697388000066,43.538299662],[18.93892622900009,43.51894683900004],[18.920529419000104,43.51220306400002],[18.911020955000108,43.50726796500008],[18.90512984200012,43.49905141300003],[18.90564660700005,43.49062815400005],[18.91525842300007,43.48538299600012],[18.93065799900006,43.48228241],[18.937892700000106,43.478949280000066],[18.951225219000037,43.46380808500005],[18.950708455000097,43.457296855],[18.94636763500011,43.449080303000144],[18.9462642820001,43.443938497000076],[18.968278443000088,43.44809845000019],[18.975306437000086,43.44427439400006],[19.009929647000092,43.41099477200011],[19.039591919000145,43.35071421300013],[19.06966760300011,43.30883046500007],[19.062536255000083,43.30438629200013],[19.036284627000043,43.30332692500015],[19.0247091060001,43.29872772300011],[19.02253515300009,43.29654632500011],[19.01716434700006,43.291157125000055],[19.010859823000146,43.28232045500006],[19.002901652000077,43.273948873000066],[18.992463013000133,43.26710174600011],[18.98950569700014,43.27201610900012],[18.988949015000085,43.272941183000015],[18.968588501000056,43.29221649200004],[18.959493449000092,43.303456116000106],[18.957116333000045,43.31182769800007],[18.957943156000056,43.3189848840001],[18.957323038000084,43.32585785],[18.950295044000086,43.33306671200013],[18.923423299000092,43.34683848100018],[18.899135376000086,43.351902771000155],[18.839604126000097,43.347820333000136],[18.821207316000113,43.34138661700011],[18.824617960000126,43.337407532000114],[18.830302368000076,43.32815745],[18.83350630700005,43.32415252700012],[18.80715132600008,43.31802887000005],[18.67951053900012,43.24948008200012],[18.66431766700009,43.233176168000014],[18.68839888500011,43.22446869000014],[18.645300741000113,43.18018198600002],[18.62907434100012,43.154886373000025],[18.621127821000126,43.1245781520001],[18.62059940600011,43.122562765000126],[18.62111617000005,43.096440328000035],[18.638996215000105,43.020243429000125],[18.598378540000084,43.0244550580001],[18.538950643000106,43.02388661700003],[18.483036743000127,43.014636536000026],[18.452754354000092,42.99339752200014],[18.433530721000068,42.954200949],[18.43404748600011,42.9368893440001],[18.44396936000001,42.916864726000064],[18.467637166000145,42.8816989140001],[18.473321574000096,42.86255279500001],[18.465983520000094,42.85281178800015],[18.45347782400009,42.84565460300011],[18.44365930200013,42.83446665500015],[18.44458947700008,42.81707753600013],[18.453891235000096,42.79315134700015],[18.467430460000088,42.769199321000045],[18.50215702300011,42.72744476300009],[18.522517537000056,42.711890157000155],[18.539674113000103,42.695457052],[18.550009400000135,42.66806854300016],[18.549595988000107,42.63892303500013],[18.542832323000113,42.626429044000034],[18.53843387800009,42.618304139000045],[18.517246542000123,42.60298207700008],[18.506797873000068,42.598490208000115],[18.486654093000112,42.589830424000084],[18.493682088000128,42.579831034000094],[18.49585249800012,42.57086517400013],[18.49213179500009,42.564767355000086],[18.481796509000105,42.56368214899999],[18.47053104700012,42.569056499000155],[18.45895552500008,42.569728292000136],[18.447690064000113,42.56621429500008],[18.43735477700011,42.55921213800017],[18.42102502500009,42.56363047300009],[18.385264933000144,42.56652435300007],[18.370485474000134,42.5736298630001],[18.36979059300012,42.57438408400007],[18.369782537000077,42.574392828000086],[18.349608195000087,42.59628997900013],[18.3386527910001,42.602516989000044],[18.31157434100004,42.6012250780001],[18.25710738100014,42.614893494000015],[18.2241378170001,42.62807098500009],[18.049368124000097,42.714758200000134],[17.995314575000123,42.740441387000104],[17.971853475000046,42.754962464000144],[17.928858684000147,42.790800069000014],[17.904467407000112,42.804546],[17.869430786000095,42.8118065390001],[17.85847538200005,42.81697418200012],[17.82715946400012,42.853121847000054],[17.825092408000074,42.86454233900003],[17.82622928800006,42.88864939400018],[17.823335408000077,42.89836456300013],[17.811759887000047,42.909862570000044],[17.802664836000076,42.909630026000094],[17.794706665000092,42.90459157300002],[17.78674849500004,42.90138763500015],[17.76545780400005,42.90412648600001],[17.723599894000074,42.916244609],[17.701585734000105,42.91950022500008],[17.679468221000093,42.91567616800013],[17.6659289960001,42.90516001400008],[17.653349062064137,42.89092833614079],[17.653330925000116,42.89093659100014],[17.652842644000117,42.89118073100009],[17.55648847700013,42.934759833000115],[17.57398522200009,42.934271552000105],[17.601084832000108,42.92523834800012],[17.617930535000113,42.92177969000012],[17.60303795700014,42.93256256700012],[17.580678729091773,42.94207540221559],[17.634509724000083,42.95040273100006],[17.662725057000046,42.965698955000114],[17.65931441200013,42.99339752200014],[17.659211060000104,42.993449198000164],[17.659107707000146,42.99363006600011],[17.659004354000047,42.993655905000125],[17.62841190500012,43.046572571000084],[17.59802550000009,43.07290235300012],[17.58738081800007,43.082125957000144],[17.45091327000011,43.14815159700013],[17.442066691000093,43.15243174300014],[17.42677046700004,43.165712585000065],[17.41519494700009,43.18496205700011],[17.406823365000037,43.20542592400007],[17.400208781000117,43.21604543100012],[17.389666788000056,43.223099264000055],[17.36940962800014,43.23255605100003],[17.328688599000085,43.26035797100009],[17.28993127500007,43.30343027800008],[17.2676070550001,43.353323873000036],[17.286417277000112,43.43737559000009],[17.270500936000076,43.463213807],[17.23949507700004,43.478406677000024],[17.142756795000082,43.48933624300009],[17.08456913200007,43.513236593],[17.06231406800012,43.52774706500004],[17.030515585000074,43.54847991900005],[16.98193973800008,43.589691875000156],[16.823809855000093,43.70730743400013],[16.71260217300008,43.77151540100006],[16.698236125000076,43.788077698000066],[16.689761190000098,43.809316712000125],[16.686143839000096,43.82613739000011],[16.678599081000044,43.84068430600014],[16.637361288000136,43.86840871200009],[16.604805135000106,43.90106821700006],[16.5558158770001,43.93747426400016],[16.5274466730001,43.96785917400014],[16.51654178800004,43.97953888000007],[16.501038859000115,43.99271637000008],[16.483468872000117,44.00253489200004],[16.439647258000036,44.014007060000054],[16.43148238100011,44.02578928700013],[16.42693485500007,44.04051707000015],[16.414015747000064,44.0558132930001],[16.403990519000043,44.05875885000002],[16.377945597000064,44.057363587000125],[16.367196899000135,44.05813873300006],[16.35737837700009,44.06216949500005],[16.346112915000106,44.068474019000135],[16.326889282000078,44.082374980000125],[16.312213175000096,44.099996644000115],[16.28999230900007,44.13911570200004],[16.27552290800014,44.15735748300001],[16.232114705000125,44.19099884000006],[16.21578495300011,44.20815541600011],[16.19707808400011,44.25115020800008],[16.18756962000012,44.28241445],[16.186639445000083,44.29760732000001],[16.18953332500007,44.30851104800017],[16.19966190600013,44.32468577100014],[16.203175903000073,44.33305735300014],[16.205863078000107,44.349800517000105],[16.20564364200007,44.35053070800002],[16.202865844000087,44.35977406800011],[16.192117146000072,44.367422181000094],[16.171343221000114,44.3770856730001],[16.153153117000073,44.38044464200011],[16.141991008000048,44.38075470000011],[16.13827030500005,44.37760243800015],[16.138787069000074,44.385405579000164],[16.14540165200009,44.38959137000002],[16.15387658700007,44.39357045500019],[16.159871053000103,44.40070180300001],[16.159664347000046,44.41610138000003],[16.15294641100013,44.435066630000065],[16.12834842900014,44.48431427100006],[16.123077433000105,44.50389963800016],[16.11646285000012,44.52146962500013],[16.104887329000064,44.5323733530001],[16.083699991000113,44.53490549700008],[16.04731978300012,44.52332997700013],[16.026649210000098,44.525190328000136],[16.00608199000004,44.54100331600012],[16.013936809000143,44.557023011000084],[16.030473266000058,44.57221588200004],[16.034917440000072,44.58539337200001],[16.04318566900011,44.58844228200003],[16.044735962000118,44.58937245700018],[16.041118612000048,44.60280833000003],[16.036157674000094,44.615314026000036],[16.028302856000067,44.6247191370001],[16.016003865000126,44.628956604000116],[15.991612589000084,44.6314370730001],[15.979106893000107,44.63438263000002],[15.968978312000049,44.63924021400014],[15.955645792000041,44.65319285100013],[15.948101034000075,44.678100891],[15.937352336000059,44.68895294200014],[15.929807577000107,44.68946970700007],[15.921539347000133,44.68611073900017],[15.913064412000068,44.68450876900012],[15.905416301000086,44.69014150000008],[15.902005656000142,44.69882314100012],[15.89931848100011,44.709210103000046],[15.89559777800011,44.718563537000094],[15.888776489000064,44.72424794500013],[15.87627079200007,44.724816386],[15.86924279800013,44.718563537000094],[15.863868449000078,44.70998525000006],[15.856427043000052,44.70357737200011],[15.847848755000113,44.701510315000135],[15.829968709000068,44.70052846300008],[15.820356893000053,44.69825470000008],[15.805680786000066,44.69665273000013],[15.796999146000102,44.70326731400003],[15.790487915000142,44.71339589500009],[15.782839803000059,44.72259430000018],[15.75927535000008,44.73416982000013],[15.75369429500006,44.73928578700013],[15.728476196000088,44.769103088000016],[15.717314087000146,44.78646637000004],[15.716073852000136,44.80320953400009],[15.730646607000097,44.81700714200004],[15.75121382700007,44.82155466700008],[15.76868046000004,44.82734242800014],[15.773434692000109,44.84501576800015],[15.764029581000074,44.864032695000034],[15.748009888000096,44.882016094],[15.734263957000081,44.902118226000155],[15.730853312000136,44.927232972000084],[15.734108149000066,44.934440112000075],[15.7388114820001,44.94485463500017],[15.763616170000148,44.97555043600003],[15.767440226000076,44.99322377600011],[15.755554647000054,45.02355784100014],[15.755968059000082,45.042213033000124],[15.779429158000143,45.08536285500004],[15.78376997900011,45.100917460000076],[15.780049276000113,45.16029368100011],[15.780979451000062,45.16799347000001],[15.792348267000136,45.189800924000124],[15.802568519000147,45.19647338200012],[15.824801066000077,45.210988261000075],[15.878854614000147,45.217241109],[15.974559367000067,45.21538075799999],[15.997503703000094,45.21853302100014],[16.00845910600006,45.21817128500014],[16.020448039000115,45.213933818],[16.029233032000036,45.205045472000066],[16.028716268000068,45.19626047800007],[16.024995565000065,45.188922425],[16.024375447000097,45.184323222000145],[16.033057088000135,45.17972402],[16.054967896000107,45.176416728],[16.067473592000113,45.16959543900005],[16.082769816000052,45.15161204100015],[16.104060506000053,45.11254465800011],[16.121527140000097,45.096163229000084],[16.212994426000133,45.03146433500011],[16.24120975700012,45.01895863900001],[16.279346965000087,45.0071764120001],[16.316243937000106,45.00123362300009],[16.34063521300004,45.00593617800017],[16.346019392000102,45.02001001200016],[16.346023380000073,45.02002043500011],[16.356964966000078,45.04862091100007],[16.37732548000008,45.07559600899999],[16.38197635900005,45.08370920800009],[16.38404341600011,45.095439759],[16.38197635900005,45.10195098900006],[16.381769654000095,45.10758372],[16.389211060000036,45.116833801],[16.398512817000068,45.12143300400005],[16.42476444500008,45.12727244100013],[16.435513143000094,45.13285349600015],[16.449155721000096,45.148098043000104],[16.48191857900011,45.19951609300007],[16.528944133000095,45.222253724000055],[16.587028443000065,45.22085846000006],[16.7862927650001,45.17884552100004],[16.811717570000038,45.18122263700008],[16.8242232660001,45.189077454000035],[16.82577356000013,45.19636383100011],[16.825050089000058,45.205045472000066],[16.830734497000094,45.216982727000115],[16.84075972500011,45.22401072200001],[16.851921834000052,45.22742136700004],[16.861740357000116,45.23222727400015],[16.86732141100012,45.2433893850001],[16.875382935000115,45.24695505800015],[16.885821574000147,45.2552232870001],[16.893986450000085,45.26354319200006],[16.896983683000087,45.2681423960001],[16.924372193000124,45.28452382500016],[16.932640421000087,45.2787877410001],[16.940701945000058,45.2577554330001],[16.94214888500005,45.24984893900013],[16.941528768000097,45.241218974]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Austria","sov_a3":"AUT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Austria","adm0_a3":"AUT","geou_dif":0,"geounit":"Austria","gu_a3":"AUT","su_dif":0,"subunit":"Austria","su_a3":"AUT","brk_diff":0,"name":"Austria","name_long":"Austria","brk_a3":"AUT","brk_name":"Austria","brk_group":null,"abbrev":"Aust.","postal":"A","formal_en":"Republic of Austria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Austria","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":4,"pop_est":8210281,"gdp_md_est":329500,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"AU","iso_a2":"AT","iso_a3":"AUT","iso_n3":"040","un_a3":"040","wb_a2":"AT","wb_a3":"AUT","woe_id":23424750,"woe_id_eh":23424750,"woe_note":"Exact WOE match as country","adm0_a3_is":"AUT","adm0_a3_us":"AUT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"AUT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[15.161792440000113,48.93722076400007],[15.23806685400004,48.95075998900006],[15.243234497000058,48.95293040000004],[15.25708378100012,48.96388580300001],[15.260391073000108,48.969156800000064],[15.262871542000084,48.982592672000095],[15.26690230300008,48.986675111000096],[15.27455041500005,48.98672678700012],[15.27961470600013,48.982592672000095],[15.283748820000142,48.977631735000045],[15.288709757000104,48.97535797200003],[15.335528605000036,48.974996237000134],[15.357852823000087,48.97081044600009],[15.405911906000142,48.95468739900011],[15.450353638000108,48.944817200000045],[15.471851033000062,48.936704000000134],[15.521253703000097,48.908488668000075],[15.54418668100007,48.90261173300007],[15.603729288000096,48.887353007000115],[15.681347290000074,48.85846588200007],[15.703774861000085,48.854951884000116],[15.726822550000037,48.854951884000116],[15.743669067000042,48.85846588200007],[15.779222453000074,48.87086822500004],[15.787904093000037,48.872263489000034],[15.818496541000057,48.87231516500003],[15.82428430100012,48.869421285000044],[15.828315064000035,48.857122295000096],[15.833276001000058,48.8520063280001],[15.84009729000013,48.85009430000011],[15.859217570000112,48.84916412400014],[15.870172973000079,48.84389312800002],[15.877614379000105,48.84167104100001],[15.885985961000102,48.8420327760001],[15.8757540280001,48.833092753000074],[15.888363077000122,48.83505645800011],[15.899628540000093,48.83474640000011],[15.907069946000119,48.83025054900011],[15.908103475000102,48.81970855800006],[15.925053345000094,48.82260243800005],[15.93032434100013,48.81831329400006],[15.93032434100013,48.81138865200009],[15.931771281000122,48.80642771400005],[16.032333618000052,48.758058574000096],[16.085353638000072,48.742865702000074],[16.177751098000073,48.746534729000075],[16.317587524000146,48.732840475000046],[16.318724406000058,48.73351226800011],[16.3394983310001,48.73557932600008],[16.352727498,48.72844797800005],[16.358308553000114,48.727259420000024],[16.374018188000093,48.73030832900005],[16.38497359200008,48.73707794300009],[16.435719848000048,48.794542135000114],[16.453083130000067,48.802190247000084],[16.48191857900011,48.79939971900012],[16.492253865000123,48.799709779000096],[16.510340617000026,48.804774069000075],[16.519539022000117,48.80560089100001],[16.528737426000134,48.80353383400006],[16.54579065000007,48.796299134000094],[16.605528605000103,48.78482696500006],[16.624028767000112,48.78338002600005],[16.643149047000122,48.778264059000094],[16.651003866000053,48.76622345000001],[16.654724569000052,48.75185740200001],[16.661959269000135,48.740023499000095],[16.675085083000084,48.73392567900004],[16.69100142400012,48.73206532800003],[16.729035279000044,48.7330988570001],[16.744331502000108,48.72963653600007],[16.780505005000123,48.71377187100006],[16.798901814000118,48.709224345000024],[16.818125447000057,48.71077463800006],[16.856572713000105,48.71981801400011],[16.87300581900007,48.71899119100007],[16.896673625000087,48.696977030000085],[16.910522908000075,48.6307795210001],[16.945042766000142,48.60416615800008],[16.95434452300006,48.557398987000084],[16.9490548790001,48.54483608300003],[16.946903117000147,48.53972564700006],[16.930470012000086,48.52820180300003],[16.913933553000078,48.51933929500012],[16.90649214700008,48.50990834600006],[16.90122115000014,48.49660166500004],[16.875072876000047,48.47153859500014],[16.864944295000072,48.45807688500008],[16.860810181000147,48.44378835100011],[16.851921834000052,48.390406596000105],[16.849338012000143,48.384102071000086],[16.846857544000073,48.38113067600008],[16.845100545000093,48.376583151000034],[16.844480428000107,48.36560190900005],[16.84758101400007,48.35958160400011],[16.855332479000083,48.35645518000007],[16.875486287000058,48.355034078000074],[16.881170695000094,48.352811992000085],[16.89171268700005,48.347024231],[16.90194462100004,48.339401958000046],[16.90649214700008,48.33146962500009],[16.904218384000046,48.32702545200007],[16.900290975000072,48.32123769100011],[16.89843062300008,48.31617340100013],[16.902771444000052,48.314106344000066],[16.905458618000097,48.3119876100001],[16.908869263000014,48.306974996000115],[16.912073201000084,48.30123891200006],[16.913313435000106,48.296691386000134],[16.91662072700012,48.29080027300003],[16.924268839000092,48.28751882000005],[16.933363892000074,48.284728292000096],[16.944422648000085,48.27801035600007],[16.950623820000146,48.27658925400007],[16.95434452300006,48.27312693300013],[16.955274699000114,48.26878611300006],[16.95393111200005,48.25733978400004],[16.95434452300006,48.25255971300004],[16.96995080500011,48.2166445930001],[16.974705037000092,48.19855784200007],[16.974808390000135,48.17687957800006],[16.98193973800008,48.16129913400004],[17.007157837000104,48.14279897100002],[17.020903768000068,48.137166240000084],[17.036923462000118,48.13551259400003],[17.047465454000076,48.13099090600011],[17.06245529600008,48.112724488000055],[17.067205851000036,48.10693552700007],[17.080228312000088,48.097607931000134],[17.0699963780001,48.089158834000045],[17.064828735000077,48.07903025400009],[17.05914432700004,48.06042673700006],[17.063071737000115,48.05877309200008],[17.075060669000067,48.05208099400008],[17.069686320000102,48.035673726000105],[17.09263065600004,48.027250468000034],[17.12498010300004,48.01952484100013],[17.148337850000072,48.005443014],[17.085602661000053,47.9701480110001],[17.096144653000092,47.961931458000066],[17.09573124200008,47.95573028600009],[17.09087365700006,47.94947743800009],[17.088083130000115,47.940899150000064],[17.086119426000067,47.939219666000014],[17.076817668000043,47.93495636000006],[17.074130493000013,47.932114157000086],[17.07516402200011,47.92777333600008],[17.080124959000045,47.925757955000044],[17.08539595500008,47.924621074000044],[17.087463013000043,47.922631531],[17.083328898000104,47.904829],[17.07754113800013,47.891729025000096],[17.067619262000047,47.88162628200007],[17.051186157000075,47.87289296500009],[17.016562948000086,47.86769948300008],[17.00405725100009,47.86328114800008],[17.004367310000077,47.852377421000114],[17.010671834000078,47.84788157200009],[17.03165246600008,47.84134450400012],[17.03950728300012,47.83736541800005],[17.04911910000004,47.81868438800006],[17.0556303300001,47.81235402500004],[17.040644165000117,47.801114400000074],[17.041987752000097,47.7839061490001],[17.048705689000116,47.763648987000096],[17.05056604000012,47.73098948200004],[17.055526977000056,47.72091257800008],[17.064001912000062,47.71329030400002],[17.075370728000053,47.7084843960001],[17.054803508000077,47.70202484200007],[16.98193973800008,47.695436096000066],[16.902668091000123,47.68202606200003],[16.86473758900013,47.686728617000114],[16.850164836000147,47.71292856900004],[16.83693566900007,47.70535797100007],[16.81729862500012,47.68424814900004],[16.80623986800012,47.67688425700004],[16.79745487400004,47.675463156000035],[16.741127564000124,47.68145762200007],[16.730378866000105,47.68590179500009],[16.719216756000094,47.6937307740001],[16.711568644000096,47.70406606100002],[16.707847941000097,47.71460805300009],[16.702473592000047,47.72359975200004],[16.689864543000112,47.729568380000046],[16.60976607300006,47.75062652600007],[16.56780481000004,47.754192200000034],[16.53111454200007,47.742978415000096],[16.52512007600006,47.73331492100007],[16.52687707500013,47.72013743100007],[16.521399373000122,47.711533305000046],[16.51292443800014,47.70600392700004],[16.4730302320001,47.691767070000076],[16.461144653000076,47.684532370000106],[16.45453007000006,47.681767680000064],[16.449879191000093,47.682413635000046],[16.444918254000072,47.68554006000008],[16.43913049300008,47.69047515900013],[16.431792440000095,47.685462545000064],[16.416599568000066,47.66882273400003],[16.40781457500009,47.6613296510001],[16.425901326000087,47.65427581800009],[16.48191857900011,47.638953756000035],[16.509617147000142,47.64313954700006],[16.575452921000107,47.62494944300002],[16.60842248600008,47.62877349900006],[16.630229940000106,47.6220038860001],[16.647696574000065,47.606139221],[16.656171509000046,47.58593373700011],[16.650590454000053,47.566555074000064],[16.667540324000125,47.56009552100011],[16.681389608000103,47.550561219000116],[16.689141072000012,47.538029684],[16.688004191000086,47.522630107000104],[16.677358846000118,47.50986602800006],[16.64821333900008,47.50154612200009],[16.636844523000093,47.49320037800004],[16.64087528400009,47.45291860000009],[16.626973417000045,47.44554893500003],[16.589405558000124,47.42563344400005],[16.48191857900011,47.39230214500011],[16.469929647000043,47.4055313120001],[16.456597128000027,47.41183583600011],[16.444091430000128,47.409510397000076],[16.433962850000086,47.39684967100004],[16.436443319000148,47.35850575800003],[16.434272908000054,47.35556020100012],[16.429311971000118,47.35380320200005],[16.42497115000012,47.35111602800003],[16.42435103400007,47.3451990770001],[16.42714156100004,47.34137502000007],[16.431689087000052,47.339721375000124],[16.436133260000073,47.3385586550001],[16.43882043500011,47.33656911300005],[16.469206177000046,47.293238424000094],[16.473236938000042,47.27680531900012],[16.46662235500014,47.263421123000086],[16.452463012000095,47.25458445300009],[16.42135380000005,47.24313812300007],[16.42135380000005,47.243060608000064],[16.42135380000005,47.243034770000065],[16.424661092000065,47.2255939740001],[16.409261515000082,47.20368316600005],[16.41277551200011,47.187172546000085],[16.418769979000047,47.183658550000104],[16.426728149000013,47.18412363700014],[16.435099732000083,47.1835810340001],[16.44181766700012,47.17712148000004],[16.4421277270001,47.16833648700006],[16.433962850000086,47.151283265000096],[16.43365279200009,47.14575388600011],[16.447088664000148,47.13970774300009],[16.480885051000115,47.15076650100008],[16.49731815600009,47.14968129500008],[16.50951379300011,47.137537334000086],[16.504759563000107,47.125832621000114],[16.48191857900011,47.10523956300011],[16.460834595000076,47.09629954000007],[16.454323364000118,47.081700949],[16.46176477100005,47.06849762000013],[16.48191857900011,47.063898417000075],[16.493700805000117,47.059815979000064],[16.497214803000077,47.05462249800007],[16.49318404100006,47.04914479600006],[16.48191857900011,47.044209697000035],[16.437166788000038,47.03178151500006],[16.424661092000065,47.02408172600005],[16.453289836000124,47.021678773000104],[16.46755253100011,47.018423157000115],[16.48191857900011,47.009379781000064],[16.486362752000105,46.99855356900011],[16.467449178000066,46.995427145000065],[16.441404256000112,46.99522043900003],[16.42476444500008,46.99310170500004],[16.42476444500008,46.992998352000114],[16.420423625000097,46.99025950100008],[16.415566040000073,46.98943267900006],[16.41039839600009,46.99041453100011],[16.40502404800011,46.99315338200006],[16.387764120000043,47.00204172800007],[16.366576782000067,47.00382456500006],[16.3258557530001,47.00043975800014],[16.288545369000076,47.00558156400012],[16.274902791000073,47.004315491000085],[16.265394328000067,46.993256735000074],[16.2610535070001,46.97808970200006],[16.252991984000115,46.9735163380001],[16.243070109000115,46.972017721000014],[16.232941528000055,46.966074931000094],[16.230357707000053,46.95997711200005],[16.231184530000093,46.954421895000024],[16.230667765000135,46.94834991500008],[16.223949829000105,46.941063538],[16.217025187000047,46.937394511],[16.196147909000075,46.931296692000046],[16.170723104000047,46.918532613000075],[16.159147583000106,46.91031606100006],[16.122870728000066,46.87636464500011],[16.110054972000086,46.86791554800004],[16.09403527800012,46.86277374300005],[16.05293554600007,46.84605985200011],[16.03202356000008,46.837555644000076],[16.028440945000114,46.83694743300003],[15.987581828000087,46.830010885000036],[15.981690715000099,46.827685446],[15.971975545000047,46.820631612000085],[15.972905721000103,46.818435364000095],[15.977349894000012,46.81621327700009],[15.978176717000052,46.809133607000064],[15.971252075000052,46.77807607000011],[15.97098466500006,46.77504987900011],[15.96970178200013,46.760531922000034],[15.970528606000071,46.743013611000094],[15.982000773000065,46.718544820000034],[16.003291463000068,46.7091913860001],[16.014556925000107,46.69371429500009],[16.01672257900006,46.670691342000055],[16.016727336000116,46.67064076800003],[16.016593059000115,46.67075696900005],[15.997917114000101,46.68691884400004],[15.986961710000116,46.69218984000008],[15.946344034000077,46.69715077700004],[15.878544555000074,46.72071523100004],[15.850742635000103,46.72448761100006],[15.822940714000053,46.7228339640001],[15.784609910000057,46.71219950300013],[15.755141235000053,46.70402374300011],[15.728682902000058,46.702990215000106],[15.652098429000148,46.710819193000134],[15.635975382000053,46.71756296800007],[15.632874796000124,46.70247345000007],[15.632978150000042,46.68963185700008],[15.626983684000038,46.68087270100011],[15.62174527100012,46.67817491800008],[15.616648397000118,46.67555002800006],[15.603729288000096,46.673017884000075],[15.58863977100009,46.67596344000006],[15.567349080000014,46.67575673500002],[15.54595503700011,46.67188100200007],[15.530658814000047,46.66384531700007],[15.520840292000086,46.64960846000011],[15.520308138000106,46.64772017100008],[15.517636353000112,46.63823964500003],[15.513939450000121,46.63254522100004],[15.51122847500008,46.628369446000136],[15.492624959000096,46.61829254200009],[15.46265262800006,46.61464935300012],[15.440018352000036,46.62439036100005],[15.435380874000089,46.627195287000056],[15.417590780000124,46.63795542400004],[15.388135214000016,46.64557769800012],[15.332783734000117,46.6435796750001],[15.204890585000042,46.63896311500011],[15.172556751000085,46.641359513000054],[15.105591442000074,46.64632259600011],[15.085722504000048,46.64779516700008],[15.061953572000105,46.64955678300009],[15.004386027000066,46.63684438100006],[14.96717899500004,46.60025746700009],[14.94795536200013,46.61927439400006],[14.933589315000118,46.62113474600008],[14.91950676900012,46.615016752000145],[14.897725871000063,46.605554302000144],[14.894062722000115,46.605215461000085],[14.877055298000073,46.60364227400004],[14.862999308000042,46.60483083100004],[14.850390259000106,46.60113596700003],[14.83364709500006,46.58439280200008],[14.822278279000074,46.56754628500002],[14.814519309000076,46.551337476000036],[14.807188762000065,46.53602366200005],[14.796662504000066,46.51940094700012],[14.78858524500012,46.50664561000008],[14.783004191000089,46.503260804000064],[14.760886678000107,46.49628448500005],[14.735255167000048,46.49333892800004],[14.726366821000113,46.49770558700004],[14.70972701000008,46.49251210600002],[14.703732544000076,46.48775787400004],[14.69877160700011,46.48096242300007],[14.687092733000041,46.47122141600005],[14.679961385000098,46.458870748000095],[14.672545840000081,46.459790506000076],[14.66662886500009,46.46052439400003],[14.662081339000054,46.459697571000106],[14.642030884000093,46.44522817000009],[14.631695597000087,46.440577291000125],[14.621567017000132,46.43851023400006],[14.59986291500013,46.437166646000094],[14.5901477460001,46.43442779500006],[14.5753682860001,46.41972585100007],[14.566996704000102,46.400373027000086],[14.562108198000116,46.39173666600004],[14.557694946000083,46.383939921000035],[14.54033166500008,46.378643087000086],[14.527102498000064,46.388229065000104],[14.515837036000105,46.40535980300004],[14.502194458000107,46.41835642600009],[14.467674601000112,46.41267201800014],[14.450931437000063,46.414480693000115],[14.43714475200005,46.418884133000034],[14.420028931000076,46.42435089200009],[14.414447876000054,46.42900177000007],[14.41124393700008,46.4346345020001],[14.406489705000098,46.439337057000074],[14.395844361000114,46.440990702000136],[14.362151327000051,46.43587473600012],[14.242323222000095,46.438237462000046],[14.149864543000064,46.44006052700007],[14.147933084000044,46.440424654000076],[14.137255493000055,46.44243764300012],[14.081031535000077,46.47594980900004],[14.066355428000094,46.481039938],[14.050025676000132,46.484398905000035],[14.032455688000082,46.48470896500001],[14.014921609000053,46.482530652000094],[13.998762654000103,46.48052317400007],[13.982329549000069,46.48191843700005],[13.890862264000106,46.511787415000065],[13.860683228000113,46.5152497360001],[13.79577762900007,46.507885845],[13.782135051000067,46.507782492000075],[13.716092570000114,46.518867087000075],[13.7009513750001,46.51974558600002],[13.68534509300005,46.51762685100004],[13.670255574000066,46.518712057000045],[13.549229370000091,46.54584218400004],[13.506751343000133,46.546927389000096],[13.499103230000058,46.550622254000096],[13.484943889000107,46.56173268600014],[13.478019246000114,46.563567200000136],[13.417041056000071,46.560492452000084],[13.373322794000075,46.56578928600004],[13.27141687000008,46.55077728300006],[13.231109253000056,46.552172547000055],[13.210025269000113,46.558011983000114],[13.146463257000049,46.58496124300004],[13.064504435000089,46.598035380000084],[12.830410197000077,46.60963674000004],[12.773566122000119,46.635190735000094],[12.74849950400008,46.64099604100011],[12.739873088000081,46.64299387600002],[12.73201827000014,46.642270407000126],[12.71599857600009,46.63795542400004],[12.706593465000111,46.637748719000086],[12.697395061000122,46.64053924600006],[12.679204956000092,46.650021871000035],[12.671367650000093,46.652465763000095],[12.669593139000083,46.653019105000055],[12.620190471000058,46.65648142500007],[12.562002807000056,46.65121042900006],[12.547326701000145,46.652192281000104],[12.53079024200005,46.65766998400011],[12.499887736000062,46.67213938500004],[12.469632190000139,46.67579886500004],[12.445627482000106,46.67870229200011],[12.405009806000095,46.690122783000014],[12.370386596000088,46.711155090000034],[12.35147302300004,46.743246155000065],[12.342688029000044,46.765131124000106],[12.32604821800004,46.7724950160001],[12.305274292000092,46.774458720000034],[12.284397013000103,46.779988099000036],[12.274785197000114,46.7846389770001],[12.26910078900005,46.78856638700006],[12.266723673000115,46.795335999000116],[12.266930380000074,46.808255107000036],[12.269617554000092,46.81983062800006],[12.27333825700012,46.826755270000035],[12.276128784000065,46.83398997000011],[12.275818726000097,46.84628896100014],[12.266620320000072,46.8681480920001],[12.250807332000079,46.87561533700011],[12.208742716000073,46.87662302700008],[12.195100138000043,46.88008534800014],[12.189002319000082,46.88494293200005],[12.183524617000103,46.89122161900005],[12.172155802000105,46.89917978900012],[12.16099369300008,46.903029684000074],[12.137429240000074,46.90592356400006],[12.126887247000127,46.90886912000005],[12.141563355000102,46.91884267200007],[12.141666708000031,46.92798940000006],[12.134742065000069,46.93744618800011],[12.128230835000096,46.948582459000136],[12.122133015000117,46.971655986000115],[12.117792196000039,46.98307647700011],[12.111177612000063,46.992998352000114],[12.121719604000106,47.01051666300006],[12.18228438300008,47.03361602800004],[12.203575073000138,47.0533305880001],[12.203896989000043,47.06701198800005],[12.204195191000109,47.07968556700006],[12.180630737000113,47.085214945000075],[12.1331463140001,47.07883160600011],[12.116241903000114,47.07655914300011],[12.014956096000105,47.040488994000015],[11.943642618000126,47.0381635550001],[11.899510946000134,47.02772491500004],[11.85703291900009,47.01201527900008],[11.822513061000109,46.993256735000074],[11.777141154000077,46.988295797000035],[11.766082397000076,46.98343821300011],[11.746445353000041,46.97245697100004],[11.7348698320001,46.97062245700005],[11.716162964000118,46.97548004200004],[11.683813517000118,46.99191314700002],[11.664796590000066,46.993256735000074],[11.65725183100011,46.99253326400009],[11.64970707200007,46.992998352000114],[11.648466838000047,46.993256735000074],[11.64795007300009,46.993256735000074],[11.596480347000096,47.00043975800014],[11.572709188000147,46.99891530400003],[11.543667033000048,46.99310170500004],[11.54356368000012,46.99310170500004],[11.543356974000062,46.992998352000114],[11.543253621000131,46.992998352000114],[11.533848511000087,46.98953603200007],[11.524443400000024,46.98834747300006],[11.515348348000146,46.98948435500006],[11.506976766000093,46.992998352000114],[11.501705770000058,46.997855937000026],[11.495918009000093,47.00160247800005],[11.489406779000118,47.00421213800007],[11.471836792000119,47.00708018100005],[11.4618115640001,47.00550404900011],[11.452923217000091,47.00087900900004],[11.44527510600011,46.99310170500004],[11.445171753000096,46.992998352000114],[11.411168661000145,46.97049326600009],[11.38057621200005,46.97155263300007],[11.349467001000077,46.9819395960001],[11.31381026200009,46.98726226800005],[11.243737020000054,46.97925242200009],[11.174490601000059,46.9638528450001],[11.1566105550001,46.9565147910001],[11.091911662000113,46.91243479500011],[11.083643432000144,46.90013580400009],[11.07310144100009,46.86496999200003],[11.054291219000078,46.834144999000046],[11.053464396000066,46.83032094300012],[11.054601277000074,46.81993398000008],[11.052844279000082,46.814921367000125],[11.048503458000113,46.811691590000066],[11.037444702000101,46.808255107000036],[11.033310588000091,46.80556793200009],[11.010883016000093,46.77921295200011],[10.996930379000103,46.76911021000009],[10.98266768400012,46.7677407840001],[10.96571781400013,46.77164235400008],[10.93088789900014,46.77399363300012],[10.913731323000093,46.77233998600005],[10.880348348000041,46.76458852200005],[10.870426473000123,46.764071757000096],[10.860194539000133,46.7669914760001],[10.843141317000118,46.777042542000025],[10.834149617000065,46.7802464800001],[10.823917684000094,46.78034983300003],[10.804900757000041,46.77662913000012],[10.795082235000052,46.776887513000105],[10.766350138000064,46.788101299000026],[10.754774618000111,46.79076263400006],[10.733690633000064,46.786189271000126],[10.72294193500005,46.78644765200008],[10.716947469000047,46.795206808000074],[10.7215983480001,46.800141907000096],[10.743819213000023,46.81251841300007],[10.748676798000133,46.81944305500005],[10.738961629000102,46.829545797],[10.662480509000119,46.86096506800004],[10.647080932000051,46.863755596],[10.629407593000053,46.86241200800003],[10.527708374000099,46.843214213000124],[10.486263875000134,46.84636647500008],[10.453811076000136,46.86442738900006],[10.451433960000088,46.88576975600009],[10.46383630300005,46.919747009000105],[10.458461955000104,46.9366193650001],[10.449573608000094,46.943905742000084],[10.41557051600006,46.96240590500011],[10.39469323700007,46.98540191600005],[10.384357950000066,46.992998352000114],[10.384357950000066,46.99315338200006],[10.384254598000041,46.99315338200006],[10.37898360200009,46.99550465900009],[10.373402547000097,46.99625396700009],[10.367924846000106,46.99550465900009],[10.338882691000094,46.984110006000094],[10.313664592000066,46.9643179330001],[10.296197957000118,46.94137359700008],[10.295681193000064,46.92269256600011],[10.270773152000087,46.9218915810001],[10.251342814000111,46.92537974000004],[10.235116415000107,46.92331268400008],[10.219923543000078,46.90576853500011],[10.215169311000096,46.89310780900007],[10.214342488000057,46.88468455000009],[10.21165531400004,46.87703643800009],[10.201423381000067,46.86683034300003],[10.157808471000095,46.85161163400011],[10.131970255000082,46.84657318200004],[10.125187508000124,46.84675122900012],[10.111299683000084,46.84711578400007],[10.068098185000025,46.85662424800006],[10.045567260000098,46.865564271000096],[10.006913289000096,46.890756531000136],[9.899943075000039,46.91439849900007],[9.875138387000106,46.92742096000009],[9.86242598400014,46.93977162700014],[9.860772339000107,46.9491508990001],[9.86397627800008,46.95992543600002],[9.86645674600004,46.98338653600009],[9.870590861000068,46.99294667600009],[9.870590861000068,46.998837790000096],[9.866766805000026,47.00193837500004],[9.860565633000135,47.00160247800005],[9.856328165000093,47.004082947000114],[9.857981812000048,47.015477600000025],[9.669052775000097,47.05619862900008],[9.652309611000048,47.05792979000005],[9.599909709000116,47.053485616000046],[9.58120284000003,47.05687042300007],[9.608798055000136,47.08077077300007],[9.615722697000109,47.10676401800003],[9.605594116000077,47.13226633700006],[9.5818229570001,47.15490061500009],[9.552057332000118,47.16688954700007],[9.551953979000103,47.17557118800001],[9.561875854000078,47.190609029000115],[9.562909383000061,47.19774037700006],[9.554331095000123,47.21161549900012],[9.544822632000148,47.22032297800007],[9.540378458000134,47.229107972000065],[9.547096395000068,47.243034770000065],[9.530249878000092,47.25365427700004],[9.52115482500011,47.262801005000114],[9.553297567000072,47.29985300800009],[9.587404012000121,47.327809957000085],[9.591228068000078,47.33468292300006],[9.596395711000069,47.352304586000024],[9.601046590000124,47.36127044700006],[9.639803914000055,47.394524231000105],[9.649519084000104,47.40971710300005],[9.650345907000116,47.45209177700005],[9.621717163000142,47.46919667600011],[9.584510132000046,47.48072052100014],[9.554951212000104,47.51089955700013],[9.553058591000081,47.5168913380001],[9.547481674000068,47.53454710200006],[9.54988692200004,47.533533834000075],[9.554143852000093,47.532743111000116],[9.612622111000064,47.521880799000115],[9.676700887000095,47.522630107000104],[9.7039860430001,47.53141510000009],[9.718455444000114,47.54671132400006],[9.730857788000092,47.56490142900009],[9.75266524200012,47.58205800400006],[9.767134643000048,47.58727732400006],[9.782120809000048,47.58841420500008],[9.796280152000065,47.584951885000066],[9.80795902500006,47.57632192000011],[9.811266317000046,47.56448801700009],[9.809302612000124,47.55231821700007],[9.81312666900007,47.541750387],[9.833487182000084,47.53461903900006],[9.841548706000083,47.535032450000074],[9.853847697000106,47.54040680000014],[9.858911988000102,47.541336975],[9.88898767100008,47.53379221600005],[9.918753296000148,47.5321902470001],[9.933842814000059,47.53420562800005],[9.945935099000053,47.540768534000044],[9.948725626000083,47.52423207700004],[9.95916426600013,47.51487864300012],[9.971669962000135,47.50640370700012],[9.980765015000088,47.49294199700006],[9.980765015000088,47.48991892500003],[9.981075073000085,47.48687001600009],[9.982625366000093,47.48103057900002],[9.99358077000008,47.47658640600011],[10.002365764000073,47.47917022700011],[10.011254110000095,47.484441224000136],[10.022622924000073,47.48795522100011],[10.071818888000053,47.439120993000124],[10.080603881000116,47.427390442000046],[10.07595300300008,47.41687428800009],[10.053215373000086,47.40485951800011],[10.064170776000052,47.39617787800006],[10.066857951000088,47.38579091400004],[10.06778812700014,47.375042217000015],[10.073162475000117,47.365482076000035],[10.082877644000062,47.35907419900008],[10.089595581000083,47.35928090400003],[10.097243693000053,47.36313079900009],[10.110369507000113,47.36739410400014],[10.11533044400008,47.3669548550001],[10.125665731000083,47.36269154900006],[10.130833374000076,47.362665711000055],[10.135070842000118,47.36488779700005],[10.146956420000066,47.37380198200008],[10.190881388000093,47.37922800800007],[10.209278198000078,47.37248423300011],[10.208554729000099,47.354474996000135],[10.190467977000083,47.31747467100007],[10.192741739000098,47.31091176400008],[10.193258504000141,47.30491729800007],[10.190778036000069,47.29825103800004],[10.185920451000129,47.294995423000074],[10.172691284000052,47.29230824800004],[10.168660522000067,47.29042205800002],[10.15946211800005,47.279130758000065],[10.155431355000076,47.27287790900007],[10.159875529000061,47.27112091100008],[10.17495085000013,47.272375554000064],[10.239353882000074,47.27773549400007],[10.2611613360001,47.283497416000046],[10.305913126000064,47.3021784470001],[10.325446818000044,47.314322409000106],[10.343430216000058,47.33075551400009],[10.365651082000083,47.361115418000026],[10.371645549000105,47.36739410400014],[10.381980835000121,47.37212249800012],[10.403064819000036,47.37710927300009],[10.411643107000087,47.38103668300005],[10.428282918000093,47.396048686000114],[10.442855672000064,47.41628001000004],[10.451950724000113,47.43875925700013],[10.451744018000085,47.460204977000046],[10.447609904000046,47.47258148300011],[10.442235555000082,47.48139231400012],[10.433657267000058,47.487851868000064],[10.41960127800013,47.493045350000074],[10.429729858000085,47.532913717000014],[10.430970093000042,47.54216379800002],[10.424355509000122,47.55335174600006],[10.415673868000084,47.56438466500006],[10.414226929000078,47.573014628000095],[10.429213094000147,47.57701955200008],[10.445956258000109,47.57906077100006],[10.453604370000079,47.58110199],[10.457118368000122,47.5792416380001],[10.461562540000044,47.56991404300007],[10.460322306000108,47.56598663300011],[10.455464721000084,47.56118072600009],[10.451744018000085,47.554824524000054],[10.453501017000065,47.54624623600003],[10.458772013000072,47.54164703400008],[10.466936890000085,47.5377196250001],[10.482543172000135,47.53286204000008],[10.525124552000108,47.528469544000096],[10.536906779000105,47.52986480800007],[10.549619181000052,47.53678945000007],[10.56987634300006,47.55593556700006],[10.58372562700012,47.56247263600005],[10.607910197000109,47.56226593000008],[10.73989180500007,47.528469544000096],[10.74392256700014,47.52531728100004],[10.74722985800014,47.520149638000134],[10.752190795000104,47.51539540600006],[10.760769083000127,47.51363840700009],[10.790328003000068,47.51606720000004],[10.830635620000123,47.52857289600013],[10.844794962000066,47.531311747000075],[10.858644247000115,47.530665792],[10.86928959100004,47.526583354000074],[10.892233928000053,47.51487864300012],[10.883862346000086,47.50800567600004],[10.851616252000014,47.4930970260001],[10.858437540000066,47.48516469300003],[10.909907267000051,47.468989970000045],[10.959826701000111,47.43250640900004],[10.962823934000141,47.42795888300009],[10.96313399200011,47.42124094700006],[10.960860229000104,47.414316305000085],[10.95765629100012,47.40971710300005],[10.955279175000072,47.40961375000012],[10.965511108000072,47.39607452400011],[10.979463745000144,47.390545146000136],[11.083746785000102,47.389511618000135],[11.103280477000084,47.393568218000034],[11.168599487000051,47.42426401800009],[11.193817587000096,47.428940735000054],[11.215211629000095,47.42299794500005],[11.213041219000019,47.39581614200006],[11.23701908300012,47.39395579000006],[11.25882653800005,47.400725403000074],[11.273089233000121,47.41111236600011],[11.286318400000113,47.423204651000106],[11.305645385000075,47.4354002900001],[11.324248901000118,47.439431051000014],[11.36765710500012,47.4401286830001],[11.383883504000039,47.44485707600009],[11.392461792000061,47.454778951000094],[11.388637736000135,47.462220357],[11.377785685000077,47.46705210400012],[11.36548669400014,47.46932586700004],[11.412615600000038,47.50609364800002],[11.435353231000105,47.509710999000106],[11.459951212000107,47.5074372360001],[11.482585490000048,47.50257965100007],[11.529507690000116,47.5078506480001],[11.551211792000089,47.513690084000075],[11.569401896000045,47.527384339],[11.574466186000109,47.53663442000004],[11.58232100400005,47.559785462],[11.589142293000094,47.570379131000095],[11.6170475670001,47.586760560000045],[11.620458211000111,47.58965444000003],[11.63895837400014,47.58924102800012],[11.682573283000096,47.583349915000014],[11.764015340000128,47.58311737100004],[11.820342651000118,47.57528839100013],[11.830677938000122,47.577613831000065],[11.840703166000054,47.59461537700008],[11.851968627000103,47.599162903],[11.935891154000018,47.61073842400006],[12.165644572000133,47.6039688110001],[12.173602742000098,47.605079855],[12.202128133000143,47.629832866000044],[12.205745483000044,47.63621490500009],[12.206779012000112,47.6455683390001],[12.205125366000088,47.67228505500009],[12.202334839000116,47.67778859500007],[12.197270549000052,47.6800881960001],[12.18910567200004,47.68556589800007],[12.181767619000112,47.69212880500007],[12.178563680000053,47.69765818300007],[12.17659997600012,47.70582305900009],[12.192412964000113,47.71016388000007],[12.216494181000058,47.72370310500013],[12.225175822000038,47.72737213200014],[12.239748576000094,47.731687114000124],[12.242229044000055,47.73202301100011],[12.239128459000113,47.72744964600008],[12.236544637000122,47.71677846300008],[12.233030639000049,47.70887196900011],[12.226622762000117,47.702877502000085],[12.223315470000017,47.69590118400009],[12.22879317200011,47.6848682660001],[12.238715047000113,47.67889963900006],[12.249567098000057,47.680010682000066],[12.271891317000012,47.687891337000025],[12.293698771000038,47.6900100710001],[12.35147302300004,47.68169016600003],[12.36842289200004,47.683550517000036],[12.407696980000111,47.6937307740001],[12.424130086000076,47.691560365000015],[12.428780965000044,47.68579844200005],[12.43921960400007,47.66448191400005],[12.44469730600008,47.65629119900003],[12.45275883000005,47.64975413000005],[12.482524454000043,47.63357940700007],[12.496580444000074,47.6289026900001],[12.51714766400005,47.62854095500009],[12.538231649000096,47.631331482000064],[12.553837931000118,47.636008199000116],[12.563374919000069,47.64176137000006],[12.59838301500011,47.662879944000025],[12.617399943000095,47.669339498000085],[12.653056681000095,47.67512725900005],[12.688713419000067,47.67512725900005],[12.744834025000017,47.66536041300009],[12.761990600000074,47.6668590290001],[12.751655314000061,47.64939239600005],[12.767364950000058,47.63636993500012],[12.793306518000094,47.624794413000075],[12.81315026900009,47.61182362900004],[12.785865112000065,47.60267690100008],[12.773669474000144,47.57950002100006],[12.778940470000094,47.554824524000054],[12.803641805000096,47.541336975],[12.819041381000089,47.539528300000114],[12.828446492000126,47.53725453800009],[12.83692142700005,47.532655335000044],[12.882603393000068,47.49857472800008],[12.931592651000072,47.473511658000064],[12.942548055000143,47.47048858700006],[12.951022990000126,47.4724781300001],[12.959291219000077,47.475527039],[12.96972985800002,47.47573374500006],[12.979341674000123,47.47224558600004],[12.98492272900006,47.468266500000134],[12.991123901000035,47.465682679000054],[13.00187259900005,47.46601857600004],[13.008797241000138,47.47010101400013],[13.03732263100008,47.493045350000074],[13.037012573000112,47.50136525500005],[13.034428751000092,47.5074372360001],[13.031224812000119,47.51255320300006],[13.028951050000103,47.518030905000074],[13.028124227000092,47.52423207700004],[13.028124227000092,47.54164703400008],[13.030604696000069,47.5442566940001],[13.040113159000043,47.5604572550001],[13.041250041000069,47.561904196000086],[13.039079631000078,47.56133575500013],[13.038252807000049,47.5840217090001],[13.040939982000081,47.583349915000014],[13.057063029000062,47.59766428600011],[13.057683146000015,47.600428976000046],[13.069568725000067,47.62024688700003],[13.072049194000044,47.62241729800013],[13.074219604000119,47.63450958300012],[13.074839722000092,47.64665354500002],[13.072049194000044,47.6594692990001],[13.064091024000078,47.67399037700005],[13.044557332000066,47.696572978000084],[13.032258341000102,47.70662404400011],[13.019855998000137,47.71292856900004],[13.004353068000029,47.71460805300009],[12.979031616000043,47.707089132000135],[12.96404545100009,47.70535797100007],[12.908338256000148,47.712360129000075],[12.892008504000103,47.723548076000014],[12.91061201900007,47.74292673800008],[12.910818726000116,47.743030090000104],[12.910818726000116,47.743081767000035],[12.917226603000072,47.750161438000134],[12.91898360200014,47.75677602200005],[12.919293661000038,47.76318389900007],[12.921257365000143,47.7695401010001],[12.926735067000036,47.77739491800014],[12.99122725400008,47.84710642600007],[12.986576375000112,47.850258688000054],[12.964975626000124,47.871962790000026],[12.931075887000105,47.92487945600001],[12.914229370000044,47.93598988900004],[12.906167847000063,47.938909607000106],[12.88601403800007,47.95288808200013],[12.862036173000147,47.96255157500005],[12.853974650000083,47.970483907000094],[12.848600301000118,47.980948385000055],[12.848246271000049,47.98238892000003],[12.845603068000088,47.99314402300007],[12.830616903000134,48.015468242000026],[12.760233602000113,48.06487091100004],[12.750931844000064,48.07474111000004],[12.742043498000072,48.08678171800011],[12.736979207000076,48.099959209000076],[12.738942912000113,48.11344675700005],[12.745040731000074,48.120629782000094],[12.751448608000116,48.12210256000009],[12.75795983900008,48.12189585400005],[12.764057658000127,48.12375620500006],[12.778320353000112,48.138716533],[12.782351115000012,48.14202382500011],[12.82214196800004,48.16067901700009],[12.835164429000145,48.170704244],[12.85345788600003,48.18997955300006],[12.862552938000107,48.19664581300006],[12.877642456000103,48.202046001000014],[12.933039591000068,48.20925486300007],[12.931696004000086,48.21163197900012],[12.947198934000113,48.22000356100008],[12.979445027000054,48.23201833200005],[13.01665205900008,48.25589284300014],[13.032775106000145,48.26356679300005],[13.136438029000118,48.291058655000114],[13.274207397000055,48.30710418700007],[13.307797079000068,48.31963572200007],[13.405568888000062,48.376583151000034],[13.419521525000048,48.392163595000085],[13.425205932000068,48.413376770000035],[13.427169637000105,48.418544413000035],[13.431717163000142,48.423712057000046],[13.436161336000055,48.430585022000116],[13.438228394000106,48.44099782400013],[13.436368042000112,48.46923899400011],[13.438228394000106,48.47854075200004],[13.442982625000099,48.487713319000136],[13.456418498000062,48.50665273100009],[13.45920902500012,48.51639373800003],[13.457038615000045,48.525178732000114],[13.447736857000109,48.534816386000045],[13.443706095000096,48.552851461000046],[13.440708862000093,48.55734731100006],[13.44008874500011,48.56096466100004],[13.445566447000116,48.56791514100013],[13.454558146000068,48.573444519000134],[13.48721765200011,48.581583557000044],[13.52070397900013,48.584580791000064],[13.624366902000105,48.56535715800004],[13.641833537000139,48.55910430900013],[13.658059936000143,48.551094463000055],[13.67335616000011,48.5354881800001],[13.71433557100005,48.52321502700007],[13.716505981000125,48.52169057200006],[13.72539432800005,48.54838145000011],[13.733869263000145,48.55977610300002],[13.73727990700007,48.55925933900008],[13.758053833000105,48.56148142500007],[13.766012003000071,48.5637551880001],[13.774280233000127,48.56920705200008],[13.77903446400012,48.573935446000064],[13.796191040000082,48.59858510400005],[13.802392211000067,48.611710918000114],[13.805492798000103,48.62612864200014],[13.8062162680001,48.64292348300012],[13.800945272000062,48.675221253000075],[13.803529093000066,48.68715850800003],[13.81686161200008,48.69558176700011],[13.804355916000105,48.699560852000104],[13.799394979000056,48.70260976200012],[13.788749634000055,48.71651072300011],[13.783581991000062,48.71527048800007],[13.785855754000066,48.72477895100005],[13.815724731000072,48.76643015600007],[13.855928996000102,48.75929880800004],[13.874945923000068,48.75242584300005],[13.89313602700011,48.743020732000105],[13.915046834000064,48.73098012400004],[13.982329549000069,48.70648549400008],[13.991114543000036,48.700180970000076],[14.00775435400007,48.683282776000084],[14.014162231000114,48.675066223000044],[14.019226521000093,48.67191396100008],[14.026151164000055,48.670053610000075],[14.032145630000088,48.66726308200003],[14.03472945100009,48.66116526300007],[14.032869100000084,48.65491241400008],[14.028321574000046,48.6539822390001],[14.02346398900005,48.65460235600008],[14.020466756000104,48.65315541600009],[14.013748820000103,48.643801982000035],[14.008064412000039,48.642406718000075],[14.00620406000013,48.63951283800009],[14.010854939000097,48.625870260000084],[14.015195760000097,48.62039255800008],[14.032455688000082,48.606129863],[14.040827270000136,48.60116892500005],[14.074830363000075,48.591712139000094],[14.216527140000094,48.581170146000034],[14.31574589000013,48.557915752000014],[14.325357706000148,48.55863922100011],[14.333212525000077,48.56070627900007],[14.353366333000082,48.57142913900009],[14.405352823000099,48.586286113000114],[14.421165812000083,48.59706064900004],[14.443593384000081,48.636515605000056],[14.458166137000148,48.64318186500009],[14.48214400200007,48.6244749970001],[14.522038208000081,48.61062571200003],[14.533820434000091,48.60871368400012],[14.548806599000072,48.6109357710001],[14.578778930000112,48.620495911000035],[14.594178507000093,48.621322734000046],[14.600586385000044,48.61757619300002],[14.601826619000065,48.6111941530001],[14.601929973000095,48.60452789300007],[14.605133911000081,48.60031626400012],[14.612885376000094,48.59974782300009],[14.628181600000033,48.603287659000046],[14.634692831000107,48.60233164500008],[14.645441529000038,48.5929006960001],[14.651332641000124,48.583495585000065],[14.659187459000064,48.576958517000094],[14.675620565000116,48.57623504600007],[14.691140439000039,48.586534963000105],[14.695671020000077,48.58954172800011],[14.700735310000141,48.61553497400007],[14.700218546000114,48.646101583000075],[14.703835897000092,48.67310251900011],[14.722749471000043,48.69341135700003],[14.77535607900012,48.72400380500005],[14.780420370000087,48.743124085000034],[14.790445597000115,48.75485463500012],[14.794476359000015,48.766998597000025],[14.800367472000119,48.776507060000114],[14.815456991000103,48.780331116000035],[14.867650187000095,48.775576884000145],[14.91932662000005,48.761572571000045],[14.939583781000037,48.762812806000085],[14.951055949000077,48.780331116000035],[14.948885538000068,48.782139791000134],[14.944441366000147,48.78859934500008],[14.940100545000092,48.79650583900013],[14.93813684000014,48.80281036400007],[14.939790487000094,48.80978668200004],[14.947025187000063,48.822395732000075],[14.968212524000108,48.88502756800008],[14.968315877000064,48.9126744590001],[14.964181763000028,48.943266907000115],[14.964595174000038,48.971740622000134],[14.978237753000144,48.99282460500007],[14.977307577000088,48.99825063100005],[14.977307577000088,49.0029015100001],[14.978857869000109,49.00626047800003],[14.982061808000083,49.007914124000074],[15.003972616000055,49.00977447500008],[15.059576457000048,48.997217102000064],[15.137401164000094,48.99303131100004],[15.14473921700008,48.978923645000094],[15.148976684000047,48.965332743],[15.148563273000036,48.95174184200002],[15.141948689000117,48.93747914700003],[15.161792440000113,48.93722076400007]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Switzerland","sov_a3":"CHE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Switzerland","adm0_a3":"CHE","geou_dif":0,"geounit":"Switzerland","gu_a3":"CHE","su_dif":0,"subunit":"Switzerland","su_a3":"CHE","brk_diff":0,"name":"Switzerland","name_long":"Switzerland","brk_a3":"CHE","brk_name":"Switzerland","brk_group":null,"abbrev":"Switz.","postal":"CH","formal_en":"Swiss Confederation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Switzerland","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":7,"mapcolor13":3,"pop_est":7604467,"gdp_md_est":316700,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"SZ","iso_a2":"CH","iso_a3":"CHE","iso_n3":"756","un_a3":"756","wb_a2":"CH","wb_a3":"CHE","woe_id":23424957,"woe_id_eh":23424957,"woe_note":"Exact WOE match as country","adm0_a3_is":"CHE","adm0_a3_us":"CHE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"CHE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[8.61743737800009,47.75731862400008],[8.629839721000053,47.76279632600008],[8.635007365000149,47.78460378000008],[8.644102417000113,47.79101165800003],[8.657021525000118,47.78811777800004],[8.66663334200004,47.778273417000065],[8.674488159000077,47.766697897000114],[8.681929565000104,47.75873972600007],[8.692264852000108,47.75716359500004],[8.703323608000119,47.758713887000056],[8.71314213000008,47.757421977],[8.719756714000084,47.74731923400006],[8.71706954000004,47.743546855000034],[8.70373702000012,47.73003346800007],[8.70042972800013,47.72349639900008],[8.70466719500007,47.71533152300009],[8.712625366000054,47.708691101000085],[8.715105835000116,47.701068827000086],[8.71706954000004,47.69455759700011],[8.769882853000098,47.69507436100008],[8.761717977000075,47.70124969500006],[8.770709676000108,47.72086090100006],[8.797581420000114,47.72003407900004],[8.830240926000101,47.707192485000064],[8.85607914200011,47.690681864000084],[8.837682333000117,47.687787985000085],[8.837785685000142,47.68083750400009],[8.851935119000075,47.67128172300011],[8.8526684980001,47.67078643800008],[8.881710652000095,47.656136170000075],[8.906205281000041,47.65179534900011],[8.945376017000086,47.65430165600009],[8.981756225000055,47.66215647400011],[8.997672566000091,47.6738353480001],[9.016586141000118,47.67889963900006],[9.12810388100013,47.670424704000084],[9.183397664000069,47.670424704000084],[9.196936890000131,47.656136170000075],[9.234350627000083,47.65616200800011],[9.273211304000142,47.65009002700006],[9.547481674000068,47.53454710200006],[9.553058591000081,47.5168913380001],[9.554951212000104,47.51089955700013],[9.584510132000046,47.48072052100014],[9.621717163000142,47.46919667600011],[9.650345907000116,47.45209177700005],[9.649519084000104,47.40971710300005],[9.639803914000055,47.394524231000105],[9.601046590000124,47.36127044700006],[9.596395711000069,47.352304586000024],[9.591228068000078,47.33468292300006],[9.587404012000121,47.327809957000085],[9.553297567000072,47.29985300800009],[9.52115482500011,47.262801005000114],[9.504618368000138,47.243732402000035],[9.487358439000047,47.210013529000065],[9.484981323000085,47.17634633400013],[9.492629435000083,47.159809876000054],[9.503481486000112,47.145392151000124],[9.511853068000107,47.12937245700007],[9.512369832000047,47.108030091000074],[9.50286136800014,47.09469757200014],[9.487565145000104,47.083948874000036],[9.475886271000121,47.073226014000106],[9.477023153000118,47.063898417000075],[9.499554077000141,47.05935089100004],[9.560635620000141,47.052400412000054],[9.58120284000003,47.05687042300007],[9.599909709000116,47.053485616000046],[9.652309611000048,47.05792979000005],[9.669052775000097,47.05619862900008],[9.857981812000048,47.015477600000025],[9.856328165000093,47.004082947000114],[9.860565633000135,47.00160247800005],[9.866766805000026,47.00193837500004],[9.870590861000068,46.998837790000096],[9.870590861000068,46.99294667600009],[9.86645674600004,46.98338653600009],[9.86397627800008,46.95992543600002],[9.860772339000107,46.9491508990001],[9.86242598400014,46.93977162700014],[9.875138387000106,46.92742096000009],[9.899943075000039,46.91439849900007],[10.006913289000096,46.890756531000136],[10.045567260000098,46.865564271000096],[10.068098185000025,46.85662424800006],[10.111299683000084,46.84711578400007],[10.125187508000124,46.84675122900012],[10.131970255000082,46.84657318200004],[10.157808471000095,46.85161163400011],[10.201423381000067,46.86683034300003],[10.21165531400004,46.87703643800009],[10.214342488000057,46.88468455000009],[10.215169311000096,46.89310780900007],[10.219923543000078,46.90576853500011],[10.235116415000107,46.92331268400008],[10.251342814000111,46.92537974000004],[10.270773152000087,46.9218915810001],[10.295681193000064,46.92269256600011],[10.296197957000118,46.94137359700008],[10.313664592000066,46.9643179330001],[10.338882691000094,46.984110006000094],[10.367924846000106,46.99550465900009],[10.373402547000097,46.99625396700009],[10.37898360200009,46.99550465900009],[10.384254598000041,46.99315338200006],[10.384357950000066,46.99315338200006],[10.384357950000066,46.992998352000114],[10.39469323700007,46.98540191600005],[10.41557051600006,46.96240590500011],[10.449573608000094,46.943905742000084],[10.458461955000104,46.9366193650001],[10.46383630300005,46.919747009000105],[10.451433960000088,46.88576975600009],[10.453811076000136,46.86442738900006],[10.4485400800001,46.832232971000025],[10.444922730000116,46.823241272000075],[10.439031616000108,46.81688507100006],[10.417224162000082,46.798849997000076],[10.419084513000085,46.7839671830001],[10.426215861000031,46.76942026800006],[10.42869633,46.75564849900013],[10.41660404400011,46.743013611000094],[10.399654175000109,46.73554636700007],[10.395623413000123,46.72639963900008],[10.396553588000074,46.71500498400007],[10.394383179000073,46.70081980400002],[10.384771363000084,46.68901173900011],[10.373919312000112,46.68190623000009],[10.369165080000128,46.6723977660001],[10.377536662000097,46.653277486],[10.395623413000123,46.63880808500008],[10.438204793000097,46.63565582300003],[10.459082072000058,46.62356353800004],[10.466626831000013,46.604288229000105],[10.465903361000102,46.57847585100009],[10.457945190000146,46.553697001000046],[10.45183267900012,46.546701572000075],[10.443992554000147,46.5377289840001],[10.425905803000148,46.53532603000004],[10.354282267000087,46.54832265300009],[10.319452351000022,46.546048889000076],[10.306636597000136,46.54749582900007],[10.295371135000096,46.55108734100014],[10.28906660900006,46.555686544000075],[10.283795614000041,46.56072499600006],[10.27594079500011,46.56553090500006],[10.234703003000106,46.57529775000011],[10.23025883000008,46.58614980100006],[10.235736531000072,46.60669118300006],[10.23377282700005,46.61798248400004],[10.21785648600013,46.626974182000055],[10.192121623000048,46.62681915400012],[10.097450398000092,46.6080347700001],[10.087838582000103,46.60439158200011],[10.083497762000121,46.597001851000094],[10.071198771000068,46.56439402300006],[10.062930542000117,46.55674591100009],[10.041329793000074,46.541863098000135],[10.032751506000125,46.532974752000115],[10.03140791900006,46.52579172800006],[10.031201212000099,46.503829245000105],[10.026860392000117,46.493183900000105],[10.028100627000072,46.48393381800008],[10.03047774300012,46.476673279000124],[10.03533532700004,46.4710663860001],[10.04401696800008,46.466983948000085],[10.026343627000072,46.446261699000075],[10.04205326300007,46.43272247400009],[10.071405477000042,46.424815980000034],[10.11615726700009,46.418821514000115],[10.133417195000078,46.41401560500009],[10.14075524900008,46.40290517200008],[10.133210490000124,46.381097717000046],[10.125975789000051,46.374379782000034],[10.104995158000065,46.3613573210001],[10.097450398000092,46.35164215100005],[10.092386108000113,46.33810292600006],[10.091765991000074,46.32895619800009],[10.095796753000059,46.32053293900009],[10.104891805000136,46.30937083000006],[10.146129598000128,46.28027699800006],[10.15894535300012,46.26244862900012],[10.145819539000057,46.24332834900011],[10.11791426600007,46.231132711000015],[10.075746297000109,46.2200222780001],[10.04267338000011,46.220487366000015],[10.041846557000099,46.243069967000054],[10.031717977000142,46.26007151300007],[9.99223718200011,46.284359436000074],[9.977561076000114,46.29810536700008],[9.971049846000057,46.32001617500006],[9.970636434000141,46.339808249000036],[9.964021851000068,46.356086325000064],[9.939010457000052,46.36745514000006],[9.918443237000076,46.37115000400004],[9.899012899000098,46.37215769500002],[9.85539799000014,46.3669642130001],[9.78883874500005,46.34329640800007],[9.768064819000102,46.338619690000115],[9.755249064000026,46.340531718000136],[9.730857788000092,46.3507119750001],[9.72010909000008,46.350892843000054],[9.709257039000136,46.34239207000013],[9.707293335000088,46.33097157900005],[9.708843628000125,46.31962860100006],[9.708430217000114,46.31174794600011],[9.693133992000043,46.29707183900012],[9.674323771000047,46.2918008420001],[9.559705444000087,46.29273101800004],[9.536451050000068,46.29862213200005],[9.51526371300011,46.30859568300005],[9.502551310000058,46.32073964500005],[9.482604207000065,46.35680979400007],[9.47371586100013,46.361874085000125],[9.451598348000118,46.37037485800005],[9.444363648000149,46.375284119000064],[9.442399943000112,46.38089101200009],[9.443846883000106,46.396135559000044],[9.437852417000101,46.49204701800011],[9.434648478000014,46.49832570400011],[9.426793660000072,46.497111308000086],[9.41067061400011,46.488894756000036],[9.403849324000134,46.482512716000116],[9.400335327000107,46.47540720700007],[9.395477742000082,46.469412740000045],[9.384625691000025,46.46641550800004],[9.377080933000087,46.468689270000056],[9.35155277500013,46.48548411100011],[9.350829305000046,46.49786061600008],[9.330985555000069,46.50150380500008],[9.282306355000115,46.497369691000046],[9.263186076000123,46.48512237600002],[9.245822794000105,46.461041158000086],[9.237967977000068,46.436546530000015],[9.247579794000103,46.423033142000065],[9.26091231300012,46.41665110300002],[9.262876017000051,46.40662587500009],[9.260292195000147,46.39401682600007],[9.260395548000076,46.379728292000095],[9.273831420000107,46.344252421000135],[9.275175008000076,46.33138499000005],[9.2689738360001,46.30937083000006],[9.239724975000058,46.266996155000044],[9.224842163000117,46.23118438700004],[9.215747111000042,46.221055807000084],[9.2041715900001,46.21356272400004],[9.192182658000121,46.20963531500007],[9.181330607000092,46.20405426000005],[9.17574955200007,46.194132385000046],[9.171098673000103,46.182608541000036],[9.16378802500006,46.17298926700002],[9.163243856000063,46.17227325500002],[9.090586792000124,46.13816680900003],[9.072086629000095,46.1188915000001],[9.06815922000004,46.1059723920001],[9.070329631000048,46.083441467000085],[9.067125692000076,46.07114247700014],[9.059167521000091,46.061789043],[9.049659057000014,46.05791331000006],[9.027748250000059,46.05310740200014],[9.002116740000105,46.039309795000094],[8.997775919000105,46.0279409790001],[9.015552612000135,45.99311106400003],[8.982686401000109,45.9719754030001],[8.980515991000116,45.969494934000124],[8.979792521000121,45.96691111300004],[8.980515991000116,45.964378968000034],[8.982686401000109,45.96184682200004],[8.993435099000124,45.95425038700008],[9.001703329000094,45.93606028300013],[9.010798380000068,45.92665517200007],[9.0205135490001,45.92277944000003],[9.042321004000115,45.919730530000095],[9.051726115000065,45.91554473900007],[9.063094930000148,45.89895660400006],[9.05927087400002,45.88195505800013],[9.034362834000149,45.84810699500014],[9.002426798000073,45.820718486],[8.972351115,45.82464589500005],[8.93958825700011,45.83482615200003],[8.900004109000065,45.826402893000136],[8.903724812000064,45.84180247000011],[8.909719279000086,45.853688050000045],[8.9137500410001,45.866090393000036],[8.91209639400003,45.883401998000124],[8.906515340000112,45.896476135000086],[8.89814375800006,45.909550273000036],[8.880780476000039,45.93109934500009],[8.870961954000052,45.947067363000116],[8.86445072400008,45.95342356400004],[8.857732788000078,45.95709259100005],[8.800371948000077,45.97853831000009],[8.785075724000109,45.9823106900001],[8.767919149000079,45.983085836000015],[8.769572794000112,45.98577301000006],[8.773396850000069,45.99057891900014],[8.790966838000116,46.018690898000074],[8.819595581000101,46.04292714500008],[8.834375041000015,46.06638824500004],[8.8089502360001,46.08974599300009],[8.793860717000115,46.093415019000076],[8.763164917000067,46.09289825500005],[8.747145223000103,46.09444854800006],[8.739497111000048,46.098065898000044],[8.732159057000047,46.10741933200009],[8.728983368000115,46.10823310300009],[8.723890828000094,46.109538066000084],[8.717689656000118,46.10752268500002],[8.702186727000111,46.097962545000115],[8.695055379000081,46.09517201800005],[8.67748539200008,46.09579213500003],[8.630873250000121,46.11470570900008],[8.611546264000083,46.11935658800013],[8.601831095000135,46.122818909000074],[8.538682495000074,46.187621155000066],[8.510260457000072,46.20787831700008],[8.482665242000053,46.217541809000124],[8.456516968000045,46.2248281870001],[8.43812015800006,46.23537017800007],[8.427164754000074,46.25144154900002],[8.423237345000103,46.275832825000066],[8.426647990000049,46.30156768800006],[8.442874389000053,46.353373312000116],[8.446285034000084,46.38218292300004],[8.445768270000116,46.412361959000066],[8.441634155000115,46.434944560000076],[8.427888224000071,46.448690491000036],[8.399156128000072,46.452178650000064],[8.385906925000114,46.4502060180001],[8.343448934000037,46.443884583000106],[8.316267130000142,46.43365264900003],[8.294976441000074,46.418046366000084],[8.286604859000079,46.40535980300004],[8.290428914000131,46.40112233500008],[8.297043497000116,46.397634176000054],[8.297456909000033,46.387505596000096],[8.291462443000114,46.37835886600001],[8.28154056800011,46.37011647500006],[8.270068400000099,46.364044495000115],[8.241749715000111,46.35412262000003],[8.192553752000038,46.30916412400012],[8.171883178000115,46.299190573],[8.128474975000131,46.29247263600007],[8.106874227000047,46.28554799500009],[8.087340535000038,46.27180206300005],[8.07731530700002,46.26203521800011],[8.073077840000082,46.253611959000125],[8.076591837000109,46.24973622600007],[8.099949585000076,46.23562856100003],[8.129508504000114,46.19604441300007],[8.132299032000077,46.1593541470001],[8.110594930000076,46.12695302300011],[8.066876668000077,46.10059804300004],[8.056024617000048,46.098065898000044],[8.035354044000115,46.096515605000036],[8.025328817000087,46.09114125600007],[8.018197469000143,46.080857646000084],[8.016027059000066,46.06938547800007],[8.015923706000137,46.058171692000116],[8.010652710000102,46.02969797800009],[8.008792358000107,46.02768259700014],[7.999077189000076,46.012799784000094],[7.998353719000079,46.010629375000086],[7.985848022000084,45.99931223600004],[7.978716674000026,45.995178121000095],[7.969104858000036,45.99311106400003],[7.898204794000065,45.9819489540001],[7.8837819861848,45.97386867462196],[7.872917431422024,45.95938260160503],[7.870201292731367,45.94036963077022],[7.849620116000039,45.939712062000126],[7.848388712000116,45.93807566300009],[7.845288127000089,45.927792053000076],[7.84611494900011,45.92257273300007],[7.843737833000147,45.91921376600007],[7.831232137000142,45.91445953400005],[7.825444376000093,45.914666239000034],[7.807564331000037,45.91849029600007],[7.780072469000061,45.91812856100006],[7.732013387000108,45.930375875000095],[7.72219486500012,45.92960072800008],[7.714650105000088,45.92712026],[7.706278523,45.92572499700012],[7.693979533000061,45.92867055300013],[7.692532593000068,45.93120269800002],[7.673722371000053,45.950322978000116],[7.6587362060001,45.96003814700006],[7.64302657100012,45.96634267200005],[7.541120646000137,45.984119365000076],[7.524377482000091,45.978073223000045],[7.514662312000041,45.96670440700006],[7.503706909000073,45.956730855000046],[7.482726278000057,45.95487050400004],[7.452960652000086,45.94587880500009],[7.393842814000037,45.91569976800011],[7.361803426000108,45.90784495100007],[7.286665893000104,45.913426005000076],[7.273540079000043,45.91027374300003],[7.245428100000083,45.898129782000126],[7.183726440000044,45.88045644200011],[7.153547404000022,45.876529033000054],[7.120887899000138,45.87611562100005],[7.090192097000113,45.88050811800013],[7.066937703000093,45.89022328800007],[7.022082560000115,45.925259909],[7.015157918000114,45.93332143100008],[7.009783569000149,45.943398336000115],[7.002755575000066,45.961691793000085],[6.991283406000122,45.98246571900006],[6.987666056000052,45.99311106400003],[6.982808471000055,45.99538482700006],[6.91511234500004,46.048611553000114],[6.892374715000074,46.055587871000114],[6.884003133000077,46.053210755000066],[6.876871786000066,46.04809478800007],[6.869223673000079,46.044064026000086],[6.859715210000104,46.04499420200003],[6.850930216000108,46.0496450810001],[6.850310099000126,46.05274566700004],[6.852377156000102,46.056931458000065],[6.851963745000091,46.06468292200009],[6.853410685000085,46.065664775000045],[6.853100627000089,46.07610341400007],[6.851343628000109,46.086025290000094],[6.848553100000061,46.08504343700011],[6.853100627000089,46.09021108100012],[6.861162150000097,46.097032369000054],[6.868190144000096,46.10468048200005],[6.869223673000079,46.11232859300011],[6.853927449000111,46.12261220300013],[6.774345743000083,46.13480784100005],[6.765664103000034,46.1516026810001],[6.774862508000125,46.185864156],[6.79222578900007,46.22167592400004],[6.827675822000089,46.26947662400002],[6.804938192000094,46.2966067510001],[6.769488159000076,46.32267751100008],[6.750367879000095,46.34551849400009],[6.755742228000144,46.357068177000116],[6.782097209000113,46.37846222000013],[6.789228556000125,46.395205383000075],[6.78810673300012,46.405007978000064],[6.787058146000049,46.41417063500003],[6.777756388000114,46.42409250900005],[6.77771555400011,46.42410649300004],[6.762666870000118,46.42926015200004],[6.613683716000139,46.45589935400008],[6.547021118000117,46.457372132000074],[6.482942342000115,46.44858713800008],[6.397676229000069,46.4081761680001],[6.365223430000128,46.40244008400006],[6.332357218000112,46.40138071700008],[6.301558065000052,46.394481914000096],[6.269105265000121,46.3750257370001],[6.240579874000076,46.34895497700012],[6.219495890000132,46.32911122700003],[6.214121541000083,46.31546864900011],[6.21825565600011,46.30549509700012],[6.227454060000099,46.2884935510001],[6.227970825000057,46.28446278900009],[6.237582642000064,46.26792633100009],[6.241820109000116,46.26368886400004],[6.252258748000145,46.25991648400011],[6.269001912000078,46.265239156000064],[6.276029907000094,46.263120423],[6.281197550000115,46.24007273400013],[6.255359335000094,46.22110748400007],[6.191383911000087,46.1917035940001],[6.140327596000134,46.15020741800003],[6.107874796000118,46.13863189700006],[6.073871704000084,46.14917389000004],[6.028293090000091,46.14793365500009],[5.982921183000144,46.140440572000074],[5.958839966000113,46.13046702100007],[5.972172485000044,46.152171122000055],[5.979820597000128,46.16224802700009],[5.982921183000144,46.170826314000124],[5.965247843000071,46.186225891000106],[5.954809204000128,46.199920146000125],[5.958529907000127,46.2119607540001],[5.982921183000144,46.22270945200012],[6.042865844000061,46.243069967000054],[6.044519491000102,46.24343170200006],[6.04617313600005,46.24353505500008],[6.048033488000044,46.24343170200006],[6.055888305000082,46.241674704000076],[6.061882772000104,46.24115793900003],[6.067670532000079,46.24162302700006],[6.089684692000077,46.24637725900004],[6.094025513000132,46.253043518000055],[6.093095337000108,46.26229360000008],[6.093612101000133,46.27309397400012],[6.100743448000088,46.30141265900011],[6.104050740000076,46.30921580000012],[6.118607037000088,46.33177108500009],[6.136400187000077,46.359341940000036],[6.135056600000098,46.37040069600005],[6.12286096200009,46.38554189100006],[6.108184855000103,46.39649729400014],[6.059019361000082,46.4173832110001],[6.054234660000134,46.41941579200008],[6.065706827000071,46.42701222800014],[6.06756717900015,46.433600973000125],[6.065500122000087,46.44037058600006],[6.065500122000087,46.447992859000124],[6.064776652000091,46.451067607000056],[6.062399536000072,46.45520172200008],[6.060229126000081,46.45990427700008],[6.060229126000081,46.46502024400007],[6.064156535000052,46.47111806300012],[6.075525349000117,46.479592998000015],[6.110355265000095,46.52083079000001],[6.145701945000098,46.5516299440001],[6.12151737500011,46.57028513700007],[6.118416789000065,46.58346262600014],[6.131852661000039,46.59560658800004],[6.266314738000062,46.68035593700006],[6.337938273000105,46.70740855000011],[6.347860148000109,46.71317047200009],[6.374215128000088,46.73360850100004],[6.407391398000101,46.745700786000015],[6.417933390000144,46.75110097300009],[6.429198853000116,46.760816142000124],[6.433022908000055,46.76911021000009],[6.432609497000044,46.78598256500007],[6.425168090000113,46.79161529600009],[6.419897095000096,46.796524557000026],[6.417106568000122,46.802157288000075],[6.418553507000127,46.80701487200008],[6.434263143000095,46.83954518700011],[6.441187785000068,46.84814931300005],[6.443117662000048,46.85145512100009],[6.4467688390001,46.85770945300007],[6.44842248600014,46.871558737000015],[6.445218546000063,46.882617493000026],[6.431886027000132,46.900032451000044],[6.427751913000122,46.909075827],[6.442634725000062,46.944164124000054],[6.491107218000138,46.96338775700008],[6.598697550000082,46.986538798000055],[6.665411824000102,47.0212911990001],[6.688252807000111,47.04384796100004],[6.676263875000131,47.06239980100008],[6.689699747000105,47.078290304000085],[6.699104858000055,47.0846206670001],[6.724219604000069,47.09077016200007],[6.727940307000097,47.097126363000115],[6.731661011000085,47.098883363000084],[6.746027059000112,47.10394765300006],[6.744786824000072,47.121052551000105],[6.774759155000111,47.128183899000135],[6.838076256000079,47.16813159700007],[6.840284871000108,47.169525045000086],[6.859301798000075,47.1909190880001],[6.88834395300006,47.211305441000036],[6.956246785000104,47.24523101800014],[6.952216024000023,47.27003570500008],[6.958623901000066,47.29055125000005],[6.977434123000079,47.303728739000036],[6.986529174000054,47.30450388700007],[6.991903524000093,47.30595082700006],[7.00647627800015,47.319360860000074],[7.016914917000093,47.3235208130001],[7.027146850000094,47.32543284100004],[7.036551961000043,47.32951527900005],[7.044303426000056,47.340496521000034],[7.033864787000113,47.350650940000094],[7.018878621000055,47.3599010210001],[7.003995809000088,47.36814341300004],[6.985598999000104,47.362123108000105],[6.866639852000077,47.35416493700003],[6.871600789000126,47.3669548550001],[6.884003133000077,47.382586976000056],[6.898782593000107,47.39571279000003],[6.924517456000103,47.40599640000002],[6.926067749000111,47.42485829700004],[6.952319376000048,47.428837383000115],[6.968545777000145,47.43519358300006],[6.983428589000112,47.44379770900011],[6.990973348000068,47.452220968000084],[6.986115763000043,47.46413238500011],[6.975780477000114,47.47795583100008],[6.973300008000137,47.489092103000104],[6.991903524000093,47.49294199700006],[7.000791870000114,47.49767039000005],[7.009783569000149,47.49924652200008],[7.018878621000055,47.49767039000005],[7.027973674000094,47.49294199700006],[7.053915242000073,47.49038401300007],[7.10373132300009,47.49627512600006],[7.127295776000095,47.49294199700006],[7.140318237000116,47.487851868000064],[7.142169389000087,47.487650968000054],[7.15365075700015,47.48640492800007],[7.180832560000056,47.488265280000086],[7.1626424560001,47.45989491800006],[7.16832686300006,47.44356516500005],[7.190030965000034,47.43472849600005],[7.219383179000118,47.42847564700014],[7.223517293000043,47.426227723000125],[7.226307820000101,47.422636211000054],[7.230338583000105,47.41901886100007],[7.2380900470001,47.416796773000065],[7.244807984000118,47.41772694900001],[7.282635132000109,47.42888905900014],[7.309093465000103,47.432661438000075],[7.336930048000085,47.43185368000013],[7.37854659000007,47.430646058000036],[7.388218887000107,47.43328886000012],[7.406348511000119,47.438242493000075],[7.420563120000111,47.450857028000115],[7.426088908000081,47.455760803000054],[7.429292847000055,47.4651142380001],[7.4276392000001,47.47074696900012],[7.422781616000094,47.475423686000084],[7.419474325000095,47.477852478000045],[7.414410034000099,47.484027812000136],[7.414306681000085,47.490177307000096],[7.425985555000067,47.492502747000024],[7.441488485000149,47.48883372000003],[7.445995797000137,47.48688412900012],[7.454510946000112,47.483200989000096],[7.4674300530001,47.48190907800005],[7.482726278000057,47.491262512000105],[7.484483276000049,47.49294199700006],[7.485826864000103,47.49578420000012],[7.485930217000146,47.498393860000135],[7.485776134000075,47.49876751100004],[7.484896688000049,47.500900167000104],[7.477765340000104,47.50769561800007],[7.475594930000027,47.511726379000066],[7.476938517000092,47.51487864300012],[7.482726278000057,47.51699737600009],[7.493061564000072,47.51549875900008],[7.501123087000082,47.51730743400006],[7.505463908000137,47.52301768100003],[7.505153850000056,47.53301707000014],[7.501743205000138,47.532965394000115],[7.485103394000106,47.54159535700006],[7.482726278000057,47.54226715100006],[7.520866596000104,47.563416048000136],[7.52634118600011,47.56645172100011],[7.550319051000116,47.57549509700007],[7.585482836000097,47.584479135],[7.586028488000124,47.58461854400011],[7.637032104000098,47.59497711200006],[7.659666382000039,47.59657908200011],[7.64654056800009,47.5715418500001],[7.63589522300009,47.5645913700001],[7.612337281000094,47.56473104100013],[7.609746948000094,47.56474639900006],[7.646901035000069,47.55144523600006],[7.661423380000115,47.54624623600003],[7.683437540000113,47.5442566940001],[7.727320447000125,47.550422624000106],[7.766739949000054,47.55596140600008],[7.78555017100004,47.563196106000134],[7.801466512000076,47.57608937600014],[7.819656616000117,47.59533884700007],[7.83371260600012,47.59048126300004],[7.898204794000065,47.587845764000036],[7.904302613000111,47.58355662100007],[7.907506551000097,47.57417734800003],[7.909470256000105,47.564798076000066],[7.91215743000015,47.56056060800012],[8.042278686000088,47.56056060800012],[8.08723718200011,47.567381897000075],[8.09695235100014,47.57185190900009],[8.10139652500007,47.57619272900006],[8.105427286000065,47.58125701900005],[8.113902221000075,47.587845764000036],[8.122067098000088,47.5921349080001],[8.143771199000069,47.600067241000055],[8.162064656000041,47.60376210500007],[8.168885946000103,47.608645528000096],[8.173846883000067,47.613528951000035],[8.17901452600006,47.61580271500011],[8.232964721000116,47.6219522100001],[8.251051473000132,47.6220038860001],[8.276993042000072,47.61662953700005],[8.288568562000108,47.61580271500011],[8.293942912000091,47.61146189400006],[8.299317260000036,47.60182423900005],[8.306345255000052,47.592186585000036],[8.316163777000014,47.587845764000036],[8.354094279000037,47.58102447500008],[8.41806970200011,47.5807660940001],[8.421100326000044,47.581111870000115],[8.448868856000075,47.58428009100007],[8.450109090000097,47.58903432300005],[8.461787964000079,47.606139221],[8.492380411000084,47.619833476000025],[8.522352742000036,47.621900534000076],[8.53775231900002,47.61213368800014],[8.54963789900006,47.59859446200005],[8.551719149000036,47.59686332900009],[8.560696655000072,47.58939605700007],[8.574132527000103,47.59244496700009],[8.576305366000042,47.595023058000066],[8.580643758000093,47.600170594000076],[8.581780639000101,47.60766367700011],[8.581263875000047,47.614769186000046],[8.582504110000087,47.62159047500009],[8.582090698000087,47.625026957000046],[8.579713583000114,47.62892852900009],[8.578059936000074,47.63347605400014],[8.580333699000105,47.63900543200003],[8.583951050000081,47.64112416600011],[8.589222046000117,47.64246775400008],[8.593562866000097,47.642571106000105],[8.594493042000039,47.64096913700007],[8.595113159000107,47.634819641],[8.601624390000069,47.6325975550001],[8.607308797000115,47.65629119900003],[8.598213745000066,47.656885478000106],[8.59358868300009,47.658168560000036],[8.582194051000101,47.6613296510001],[8.568241414000113,47.66293162100004],[8.519665568000107,47.65735056600002],[8.504679402000136,47.65226043700005],[8.490830119000066,47.6455683390001],[8.476050659000064,47.640400696000114],[8.458273966000121,47.63988393200009],[8.43760339400012,47.64784210200014],[8.411971883000149,47.66104543000003],[8.40701094500011,47.661562195000066],[8.39130131000013,47.66546376500011],[8.397709188000077,47.676289979000074],[8.3952287190001,47.684816590000075],[8.39099125100006,47.69212880500007],[8.39212813300014,47.69951853500007],[8.401946655000131,47.707089132000135],[8.427268107000115,47.71646840400009],[8.437913452000089,47.723186341000115],[8.445458211000044,47.743185120000135],[8.450109090000097,47.750471497000035],[8.463648315000086,47.763907370000084],[8.471503133000112,47.767059632000034],[8.482665242000053,47.76685292600007],[8.536512085000082,47.77408762600004],[8.55160160300008,47.779255270000135],[8.542299846000075,47.795016581000105],[8.558216187000085,47.80116607700009],[8.58312422700007,47.800235901000036],[8.601624390000069,47.7946031700001],[8.603174682000088,47.78731679300003],[8.604104858000142,47.774397685000025],[8.607618856000101,47.76225372300013],[8.61743737800009,47.75731862400008]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Belarus","sov_a3":"BLR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belarus","adm0_a3":"BLR","geou_dif":0,"geounit":"Belarus","gu_a3":"BLR","su_dif":0,"subunit":"Belarus","su_a3":"BLR","brk_diff":0,"name":"Belarus","name_long":"Belarus","brk_a3":"BLR","brk_name":"Belarus","brk_group":null,"abbrev":"Bela.","postal":"BY","formal_en":"Republic of Belarus","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belarus","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":5,"mapcolor13":11,"pop_est":9648533,"gdp_md_est":114100,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"BO","iso_a2":"BY","iso_a3":"BLR","iso_n3":"112","un_a3":"112","wb_a2":"BY","wb_a3":"BLR","woe_id":23424765,"woe_id_eh":23424765,"woe_note":"Exact WOE match as country","adm0_a3_is":"BLR","adm0_a3_us":"BLR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BLR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.148906697000115,56.14241404300008],[28.169112182000106,56.12525746700001],[28.238461955000048,56.08262441000002],[28.269364462000055,56.05820729600009],[28.2898283290001,56.04660593700004],[28.310912313000127,56.04267852800006],[28.333443238000143,56.05024912500005],[28.366516154000124,56.07911041300008],[28.389770548000058,56.08856720000006],[28.537823527000086,56.09771392800013],[28.59471927900003,56.09239125600007],[28.61146244300008,56.08846384700009],[28.620712524000112,56.08298614600002],[28.637093954000132,56.065726217000126],[28.671923868000107,56.03756256100007],[28.680605510000078,56.02738230500012],[28.69001062000012,56.003895365000034],[28.695488322000106,55.980150045000066],[28.70639205000009,55.95984120700007],[28.731920207000112,55.946792908000106],[28.808969767000065,55.93457143200009],[28.830880574000105,55.93767201800006],[28.83305098500009,55.960978089000065],[28.859716024000136,55.976455180000066],[28.922141154000084,55.99213897700014],[28.92224450700013,55.99219065400006],[28.922296184000057,55.99219065400006],[28.922451212000087,55.99224233000007],[28.980845581000064,56.01353302000007],[29.030765015000014,56.02417836600006],[29.088642619000037,56.0232223510001],[29.145435018000082,56.01203440400005],[29.192925660000075,55.99213897700014],[29.224034871000125,55.97818634100013],[29.37741052300009,55.954027608000075],[29.39560062700013,55.947723084000074],[29.413067261000094,55.93798207600011],[29.431567423000104,55.92418446900007],[29.441075887000185,55.91493438700007],[29.444434855000107,55.90692454000009],[29.440559123000067,55.900542502000064],[29.43373783300012,55.89953481100008],[29.4255729570001,55.899999898],[29.417408081000076,55.89801035600007],[29.40779626500006,55.893876242000054],[29.399631388000046,55.89188669900011],[29.39198327700007,55.88837270100006],[29.384128459000124,55.87994944300007],[29.380717814000093,55.871241964000085],[29.37565352400014,55.84679901200005],[29.37193282100009,55.836386210000114],[29.348161662000052,55.8028482060001],[29.34361413500011,55.78698354100009],[29.35074548300014,55.7660545860001],[29.363406209000118,55.75148183200005],[29.413067261000094,55.72776235],[29.461022990000117,55.68729970300012],[29.48086674000012,55.681098532000135],[29.508100219000085,55.685491028000115],[29.585356486000077,55.73802012100009],[29.684161825000047,55.77060211200006],[29.71082686400007,55.7737543740001],[29.779866577000064,55.7638066610001],[29.805704794000064,55.77145477400009],[29.844772176000106,55.81256337500014],[29.869473511000077,55.83054677400014],[29.90781742300004,55.843207500000084],[29.94771162900014,55.84819427600013],[29.988225952000047,55.84679901200005],[30.106254924000037,55.8219168090001],[30.13235152200014,55.82687774700014],[30.17725834200013,55.851372376000086],[30.200254353000105,55.8579869590001],[30.21777266400005,55.85514475500011],[30.251517375000105,55.83762644500007],[30.270792684000128,55.83065012700007],[30.468816773000125,55.79352061000009],[30.477395060000106,55.78773285000011],[30.477808472000106,55.77912872400006],[30.471814005000056,55.77096384700005],[30.46928186100007,55.76264394200009],[30.480702351000104,55.75396230100002],[30.56958581500004,55.72951934900009],[30.5801278080001,55.72476511700009],[30.58746586100011,55.71830556300006],[30.591599975000122,55.705696513000106],[30.588396037000052,55.69660146100006],[30.583745158000056,55.68853993800005],[30.583745158000056,55.67913482700009],[30.596354207000104,55.66528554300004],[30.61661136900011,55.65743072500009],[30.639142293000134,55.65448516900011],[30.679966675000117,55.656345521000105],[30.69371260600013,55.65215972900006],[30.70332442200009,55.642341207000094],[30.713039591000097,55.62668324800006],[30.74218509900004,55.59438547800007],[30.770710490000052,55.59154327400009],[30.80409346500005,55.60234364900003],[30.84765669700016,55.611025289000075],[30.886155640000144,55.60048329700004],[30.907121887000073,55.57776986300009],[30.912820679000102,55.57159617200008],[30.91974532100005,55.534492493000094],[30.899384807000043,55.4991458130001],[30.914370972000086,55.493306376000106],[30.91943526200009,55.49232452400013],[30.913234090000117,55.47971547400001],[30.887189169000123,55.46808827700005],[30.881298055000116,55.451448466000045],[30.88910119700006,55.433413392000034],[30.90527592000012,55.42085601800002],[30.91860843900014,55.407626852000135],[30.918298380000067,55.38778310200013],[30.90594771400004,55.376000875000045],[30.845641317000112,55.351144512000076],[30.81122481300008,55.32308420900006],[30.79716882300005,55.304273987000045],[30.794274943000058,55.28551544200005],[30.80409346500005,55.27295806900014],[30.821353394000138,55.264379781000116],[30.85680342600006,55.25347605400005],[30.8698258870001,55.24153879800011],[30.88651737500004,55.20453847300004],[30.90072839400011,55.19213612900009],[30.947237182000038,55.17136220300003],[30.959794555000144,55.16257721000005],[30.96118981900014,55.15854644900014],[30.956848999000044,55.14950307300009],[30.958812703000092,55.144438782000115],[30.962223348000123,55.142888489000086],[30.972455281000066,55.14087310800005],[30.975039103000082,55.13952952100007],[30.97948327600011,55.134258525000064],[30.984030802000117,55.130899557000134],[30.985477742000114,55.12583526700007],[30.98062015800008,55.11534495100011],[30.972661987000034,55.108575338000065],[30.970284872000093,55.10144399100005],[30.97307539900004,55.093950908000096],[30.98062015800008,55.08630279600004],[30.99421106000011,55.067027486000086],[31.00640669800004,55.04242950500009],[31.005631551000082,55.02299916700011],[30.98062015800008,55.01865834600005],[30.933491252000177,55.02563466400005],[30.913234090000117,55.02460113500007],[30.906619507000073,55.01256052700009],[30.916954793000116,54.996024068000075],[30.93142419400004,54.985172018000036],[30.936075073000094,54.97323476200009],[30.917368205000116,54.95395945200008],[30.89948815900004,54.94636301800008],[30.838613322000125,54.93917999300004],[30.814842163000097,54.92801788400001],[30.817425985000057,54.9176309210001],[30.827451213000074,54.90254140200008],[30.826107625000137,54.877478333000084],[30.810708048000038,54.86151031500006],[30.787867065000054,54.8477127080001],[30.768126668000093,54.829936015000065],[30.762648966000086,54.80197906500007],[30.770607137000123,54.786011048000034],[30.78605839000005,54.77934478800012],[30.827296183000044,54.771024883000045],[30.98062015800008,54.7056541960001],[30.995502970000132,54.689841207000086],[30.999016967000102,54.67134104400009],[31.020927775000075,54.67366648400011],[31.105160359000134,54.66829213500006],[31.128621460000087,54.64038686100005],[31.16794722500009,54.62157664000006],[31.139473511000062,54.58287099200004],[31.089554077000113,54.535897116000086],[31.064646037000042,54.49228220600011],[31.093584839000076,54.47941477500012],[31.167895548000104,54.46706410800007],[31.179016967000052,54.45335277000006],[31.17921268700007,54.45311147100008],[31.20902998800005,54.448047181000106],[31.225359741000087,54.42804840200006],[31.248717488000068,54.37678538000006],[31.261739949000116,54.36448639000011],[31.274142293000068,54.356631571000065],[31.28478763800007,54.34738149000006],[31.292022339000138,54.33125844400007],[31.299153686000068,54.27260569300003],[31.309799032000054,54.24433868500006],[31.324681844000107,54.229249166000045],[31.48064131700005,54.15664377900003],[31.506376180000075,54.14393137600007],[31.53087080900019,54.13742014600009],[31.58311568200008,54.12951365200007],[31.666934855000076,54.101866760000036],[31.697837361000094,54.09793935200008],[31.72579431100007,54.09747426400014],[31.736749715000148,54.09416697200007],[31.748118531000046,54.086312155000115],[31.755766642000193,54.07494333900012],[31.762587932000084,54.060318909000046],[31.77126957200005,54.048536683000066],[31.783516886000143,54.0457978310001],[31.808476604000134,54.055978089000064],[31.81385095200011,54.05706329400007],[31.822635945000112,54.05344594400008],[31.823876180000127,54.0501386520001],[31.823566121000056,54.04548777300002],[31.84651045700008,53.99231272400007],[31.84144616700007,53.98456125900005],[31.83968916900011,53.977223206000076],[31.83927575700011,53.96978180000005],[31.837932170000045,53.96213368700009],[31.8264600020002,53.94017120400011],[31.810130249000107,53.88260365900007],[31.79256026200011,53.85743723500013],[31.753802938000096,53.81961008700006],[31.744656209000084,53.79485707600011],[31.787289266000073,53.794391988000086],[31.873175496000044,53.777132060000014],[32.08360192900011,53.809636536000134],[32.10602950000009,53.80694936100011],[32.164837280000086,53.781679586000045],[32.29041101000007,53.76085398400008],[32.32580936700009,53.745454407000096],[32.35738366700008,53.719719544000014],[32.371801391000076,53.71439687100007],[32.42156579600004,53.715792135000044],[32.44213301600013,53.713931783000135],[32.46156335400007,53.70680043600009],[32.48058028200006,53.69207265200009],[32.487814982000145,53.68468292300008],[32.49019209800008,53.67713816300005],[32.487814982000145,53.66964508100011],[32.48058028200006,53.66241038100014],[32.40611454300011,53.639414368000104],[32.39908654800012,53.63538360600009],[32.39800134300009,53.627425436000124],[32.40110192900005,53.609855449000065],[32.41148889100009,53.58236358700009],[32.42942061400004,53.561589661000134],[32.452933391000045,53.5463967900001],[32.48058028200006,53.53564809200008],[32.53080977400009,53.52143707300013],[32.55427087400005,53.510791728000044],[32.56987715700012,53.49260162400009],[32.56987715700012,53.49239491800006],[32.57680179900018,53.486038717000014],[32.58429488200005,53.484230042000036],[32.592511434000066,53.48645212800002],[32.60057295800004,53.49239491800006],[32.618142944000056,53.494255269000064],[32.635712932000104,53.492653300000114],[32.650285685000085,53.48764068700007],[32.647598511000126,53.47932078000008],[32.64165572100012,53.46898549400009],[32.646771688000115,53.457978414000074],[32.65824385500013,53.45565297500008],[32.68852624500005,53.46221588200004],[32.70123864700008,53.46211252900011],[32.71953210400011,53.43947825200007],[32.717794068000046,53.4310618740001],[32.704442587000074,53.3664077760001],[32.71746504700013,53.33493682900007],[32.69793135600008,53.325893454],[32.68180830900013,53.32679779100005],[32.66671879000012,53.331345317000086],[32.64987227300014,53.33367075700002],[32.57995406100014,53.3243689980001],[32.58346805800011,53.321216736000046],[32.5918913160001,53.31183746400009],[32.5959220790001,53.30827179000002],[32.56915368600011,53.29884084100007],[32.53732100400009,53.29506846100011],[32.50564335100006,53.29718719600001],[32.48058028200006,53.30517120400009],[32.454845419000094,53.300442811000096],[32.44719730600008,53.28876393700011],[32.45598230000007,53.27778269500004],[32.47913334200007,53.27491465300005],[32.46921146700015,53.25545847600006],[32.455672241000116,53.23667409300006],[32.42363285300007,53.204402161000104],[32.40554610200007,53.192671611],[32.38911299600011,53.18763315900014],[32.35283614100007,53.18045013400009],[32.320279989000085,53.1627767950001],[32.29516524200005,53.14086598700004],[32.26798343900009,53.12476877900005],[32.2156868890001,53.125518087000074],[32.21051924600016,53.12177154500006],[32.20907230600017,53.11634552000007],[32.20669519100005,53.1123922730001],[32.20648848500008,53.109860128],[32.20700524900013,53.10515757200002],[32.20592004400004,53.10035166500012],[32.201114136000115,53.09756113800006],[32.197393432000126,53.097742005],[32.18860843900011,53.09924062200011],[32.15233158400008,53.09634674100005],[32.12654504400007,53.08422861800005],[32.11729496300006,53.081102193000106],[32.0827751060001,53.08195485500002],[32.00991133700006,53.09996409100012],[31.980559122000102,53.0980262250001],[31.954720907000077,53.08999054000011],[31.930743042000074,53.088336894000065],[31.907178588000075,53.091928406000136],[31.8555021570001,53.110247701000105],[31.84263472500004,53.11218556700004],[31.806822957000065,53.11001515700005],[31.796280966000037,53.1123922730001],[31.78046797700011,53.127869364000105],[31.769719279000128,53.16926218700004],[31.75628340600008,53.18657379200005],[31.738558390000037,53.192542419000056],[31.69447839300005,53.192904155000065],[31.674944702000058,53.195229595000114],[31.61401818900009,53.209750672000034],[31.59360599700005,53.210680848000095],[31.57365889500005,53.20708933600011],[31.53593510000007,53.19486785900011],[31.51206058800011,53.19406687500009],[31.46400150600004,53.1999838260001],[31.416355835000104,53.1999838260001],[31.378528686000035,53.18202626500002],[31.359925171000043,53.133837993000036],[31.361165406000108,53.121306458000014],[31.361573285000077,53.12003750000011],[31.36488610900011,53.10973093700008],[31.367056519000126,53.098930562000135],[31.363697550000097,53.08877614400009],[31.354137411000064,53.08210988400006],[31.329436076000093,53.07934519500011],[31.319204142000103,53.07637380000011],[31.26928470800004,53.02841807100009],[31.247063843000095,53.01438791900006],[31.322614787000134,52.977129212000136],[31.33915124500004,52.95806060900006],[31.36622969600006,52.90855458700011],[31.38793379700007,52.88798736700002],[31.418112834000055,52.870236512000105],[31.45097904400012,52.85721405100006],[31.48064131700005,52.850935364000065],[31.505135946000113,52.84889414500009],[31.51278405700009,52.84103932800008],[31.515161173000138,52.82837860200004],[31.523946167000133,52.81166127600008],[31.53836389100013,52.79985321100008],[31.550559529000058,52.79473724400009],[31.560843139000042,52.787063294000085],[31.56952478000011,52.767503764000075],[31.570248250000187,52.725258281],[31.54792403200014,52.705698751000085],[31.48064131700005,52.68252187100009],[31.48064131700005,52.682470195000086],[31.491700073000064,52.6670964570001],[31.536141805000053,52.630483704000056],[31.56590743000004,52.5901502480001],[31.579033243000083,52.57782541900004],[31.615206746000123,52.558575949000016],[31.62864261800007,52.54805979500005],[31.62430179900008,52.53806040500004],[31.610762574000034,52.53599334700007],[31.574382364000144,52.541264344000126],[31.55929284700005,52.54054087300011],[31.56363366700009,52.537052714000076],[31.575932658000056,52.52472788500011],[31.55815596500014,52.51999949200004],[31.550559529000058,52.511886292000035],[31.55298832200015,52.50224863700004],[31.565494018000038,52.492636821000104],[31.587921590000125,52.48261159300009],[31.58936853000011,52.4580394490001],[31.583322387000067,52.428299663000125],[31.582857300000057,52.40277150500009],[31.590350382000054,52.39184194000012],[31.600530639000052,52.38339284300011],[31.608075398000096,52.372463278000055],[31.608592163000136,52.35442820300005],[31.602752727000052,52.34091481600009],[31.5922624100001,52.32861582500004],[31.579601684000064,52.318513082000095],[31.5673543700002,52.311381734000065],[31.597119995000128,52.284303284],[31.61365645300009,52.27301198400005],[31.63143314600012,52.264769593000096],[31.64869307400005,52.26099721300008],[31.683419637000043,52.25719899600003],[31.69943933100012,52.25146291100009],[31.68889733800006,52.243220520000136],[31.68192102000006,52.23045644100006],[31.679492228000075,52.21585784900009],[31.68238610800006,52.201931051000116],[31.689517456000086,52.19156992600011],[31.69871586100004,52.18544626900004],[31.74904870600011,52.163948874000084],[31.762587932000084,52.14984120700006],[31.766618693000055,52.1300749720001],[31.76434493000005,52.10056772900009],[31.64993330900006,52.096847026000056],[31.474853556000085,52.117775981000044],[31.383076213000034,52.11749176100008],[31.30442468300009,52.09749298100013],[31.28427087400013,52.08124074300011],[31.268871297000203,52.06124196400009],[31.252438191000067,52.04449880000004],[31.2289770910001,52.038220114000126],[31.204895874000044,52.043930359000086],[31.159213908000137,52.068114929000075],[31.134822632000123,52.076667379000064],[31.09632369000013,52.079612936000075],[30.959329467000146,52.074677836000035],[30.934421428000064,52.0697168990001],[30.918815145000107,52.059174906000116],[30.924706258000125,52.04227671300003],[30.91974532100005,52.037264099000076],[30.916851440000073,52.03235483900005],[30.914629354000056,52.027574768000136],[30.911270386000066,52.02256215400007],[30.940519247000108,52.02008168600011],[30.950131063000125,52.006775004000104],[30.94124271600009,51.993804220000065],[30.915197795000037,51.99258982300003],[30.90837650500009,51.99835174600011],[30.90279545100014,51.99997955400005],[30.896904338000066,51.99832590800008],[30.88873946100006,51.994346823000114],[30.880884643000115,51.98817148900014],[30.87902429200011,51.982021993000075],[30.879644409000093,51.976880188000074],[30.879334350000082,51.97365041100008],[30.86910241700008,51.96502044700014],[30.85804366000008,51.95763071800013],[30.845641317000112,51.95135203100002],[30.831378621000056,51.94590016700005],[30.803059937000054,51.939130554000116],[30.802543172000124,51.93553904200013],[30.805230347000133,51.92933787100014],[30.8106046960001,51.92517791800012],[30.8106046960001,51.91838246700007],[30.79706547000012,51.906729432000105],[30.78817712400013,51.90060577400004],[30.779495483000066,51.89791860000011],[30.749729859000073,51.899623922000075],[30.741668335000096,51.89791860000011],[30.737844279000058,51.89158823700009],[30.737224162000075,51.882234803000046],[30.73453698700013,51.87373403000004],[30.713969767000034,51.866964417000105],[30.707561890000193,51.86037567200003],[30.702807658000037,51.85376108900002],[30.697329956000143,51.85073801700008],[30.694539429000088,51.84727569600005],[30.672731975000147,51.829602356000066],[30.666324096000093,51.822393494000096],[30.661983277000044,51.819422099000086],[30.66229333500013,51.81559804300013],[30.669631388000088,51.80606374200005],[30.67056156400008,51.79053497400014],[30.65278487100005,51.77914032000003],[30.630460653000057,51.770019430000076],[30.618161661000045,51.761337789],[30.63810876500014,51.75511077900012],[30.64617028800012,51.75454233800005],[30.64617028800012,51.74707509400014],[30.63505985500012,51.73968536400011],[30.632010946000094,51.72798065200004],[30.630564006000096,51.71560414700008],[30.624982951000106,51.706095683000086],[30.613820842000052,51.702917583000044],[30.582814982000112,51.70229746500007],[30.570309286000107,51.69992034900011],[30.575993693000044,51.68640696200006],[30.564314819000174,51.66529714000012],[30.570309286000107,51.65149953300008],[30.563487996000045,51.64731374200002],[30.55532312000014,51.63976898300007],[30.549948771000118,51.63718516000008],[30.552842651000102,51.63333526700012],[30.55661503100009,51.62362009700009],[30.543850952000124,51.62013193800004],[30.51511885600013,51.60367299400008],[30.51511885600013,51.59625742700007],[30.534549194000075,51.58584462600004],[30.543127482000045,51.58258901000004],[30.543127482000045,51.57638783800004],[30.535272665000093,51.57501841200008],[30.531086874000092,51.57331309000011],[30.527727905000063,51.57129770900008],[30.522560262000066,51.56892059300011],[30.522560262000066,51.56271942200004],[30.534135783000067,51.55326263500007],[30.567415405000137,51.547268169000034],[30.58400354000014,51.54225555400009],[30.5764071050001,51.53111928400005],[30.571446167000147,51.52641672800007],[30.562867880000113,51.5217658490001],[30.575063517000103,51.51605560300006],[30.585398803000142,51.50938934400005],[30.589739624000117,51.50197377600003],[30.58400354000014,51.49383473800003],[30.588912801000106,51.481819967000064],[30.597284383000044,51.47427520800011],[30.607619670000073,51.46983103500011],[30.618161661000045,51.46714386100007],[30.618161661000045,51.45965077800014],[30.60482914200008,51.46122690900006],[30.59356368000004,51.45890147000003],[30.586018921000118,51.4518476360001],[30.58400354000014,51.43921274900009],[30.587879272000123,51.42735300800007],[30.595579061000077,51.424950053],[30.60601770000011,51.4245624800001],[30.618161661000045,51.41872304300011],[30.622605835000115,51.41210846000012],[30.6324243570001,51.383970642000065],[30.63748864800016,51.378596293],[30.6445166420001,51.37267934200011],[30.645550171000078,51.36746002300009],[30.6324243570001,51.36410105400009],[30.638315470000176,51.33585988400009],[30.610461874000123,51.31754058900003],[30.579921102000124,51.303665467000144],[30.577233928000112,51.28901519800007],[30.55935388200004,51.26932647800004],[30.55661503100009,51.26731109600007],[30.55532312000014,51.243462423000096],[30.554656844000075,51.242507427000135],[30.55067224200008,51.23679616300009],[30.539613484000085,51.235168356000145],[30.532017050000036,51.24462514300012],[30.520803264000048,51.25240244600013],[30.50809086100014,51.257673442000055],[30.494654989000086,51.25992136700006],[30.480702351000104,51.258862],[30.465044393000195,51.26193674800001],[30.442771851000085,51.28304657000007],[30.42809574400007,51.2917540490001],[30.413522990000047,51.29405365000014],[30.38375736500012,51.29392445900001],[30.368461141000065,51.29767100100011],[30.355128621000063,51.30526743600009],[30.324536174000063,51.3299687710001],[30.317094767000125,51.34058827700007],[30.319885294000073,51.341595968000064],[30.328256877000054,51.36247324700014],[30.33001387600012,51.37035390300008],[30.330117229000052,51.38071502700009],[30.32903202300008,51.38862152100003],[30.326189819000092,51.39526194300004],[30.320195353000145,51.40208323200008],[30.307379598000068,51.40960215300004],[30.25689172300008,51.425053406000124],[30.242784057000048,51.434406840000065],[30.205370320000043,51.4664979040001],[30.177310018000124,51.47949452700004],[30.14862959800007,51.48442962700008],[30.00868981900004,51.482078350000016],[29.985745483000077,51.47786672000009],[29.925077352000187,51.457867941000046],[29.912571655000132,51.45742869100013],[29.89655196100006,51.464198304000064],[29.886268351000066,51.464792582000115],[29.873607625000144,51.45918569000011],[29.856761108000057,51.43985870400007],[29.8466325280001,51.43290822400007],[29.828649129000095,51.42996266800006],[29.737905314000045,51.43949696900006],[29.725296265000107,51.45045237200014],[29.716511271000055,51.465671082000085],[29.699974813000036,51.48370615700008],[29.68271488500005,51.4911992400001],[29.66080407800018,51.493137106000034],[29.637756388000128,51.490889181000114],[29.618015991000107,51.485644023000106],[29.597345418000145,51.47396514900003],[29.583186076000118,51.46081349800005],[29.568199911000136,51.44962555000012],[29.545048869000137,51.4436569210001],[29.519003947000158,51.44179657000009],[29.50546472200011,51.43745575000011],[29.49554284600009,51.42564768500009],[29.48086674000012,51.40125640900006],[29.46629398600004,51.38505584800006],[29.44639855900004,51.38490081800012],[29.40273197500016,51.396140442000075],[29.37968428500011,51.39154123900005],[29.353260212000123,51.37705512300005],[29.340565226000077,51.37009552000009],[29.319946330000107,51.365573832000074],[29.297001994000137,51.37371287000007],[29.284599650000075,51.39174794600009],[29.276124716000083,51.4135812390001],[29.26485925300011,51.43290822400007],[29.244395386000065,51.447894389000055],[29.227755574000128,51.45562001600003],[29.221037638000038,51.46696299200002],[29.230442749000073,51.492878723000075],[29.226515340000105,51.51905283600007],[29.214836467000058,51.53546010300005],[29.181453491000067,51.567008565],[29.160421183000043,51.603311259000066],[29.147967163000146,51.61563608800011],[29.123885945000016,51.625041199000066],[29.083681681000087,51.631216533000035],[29.063217814000044,51.63059641600009],[29.04358077000009,51.62617808100009],[29.023633667000066,51.614034119000074],[28.99996586100013,51.58240814200008],[28.980845581000064,51.569463197000054],[28.954593954000103,51.563262024000096],[28.892892294000063,51.562874451000084],[28.86364343200012,51.55892120400011],[28.831914103000084,51.54827585900011],[28.79987471600009,51.53261789900006],[28.77186608900007,51.51127553300005],[28.752229045000036,51.48370615700008],[28.74943851700007,51.46685964000008],[28.751608928000078,51.428748271000124],[28.74675134200004,51.41399465000012],[28.728767945000076,51.40125640900006],[28.718225952000093,51.41161753400007],[28.711094605000138,51.43024688700004],[28.70396325700011,51.442623393000105],[28.691147501000046,51.44342437800003],[28.67791833500013,51.43807586700006],[28.663552286000137,51.433993429000054],[28.647015829000054,51.43900604300012],[28.637300659000115,51.44962555000012],[28.630892781000053,51.46362986300011],[28.615183146000106,51.519569601000114],[28.61270267700013,51.539930115000054],[28.603917684000123,51.553546855000064],[28.578079468000112,51.56010976200014],[28.488369181000053,51.572021180000064],[28.46123905400006,51.571659444000055],[28.435349162000136,51.566130066000056],[28.38553308100009,51.545046082000056],[28.359643188000064,51.529362284000086],[28.34687911000009,51.52515065600005],[28.33385664900007,51.5283804330001],[28.328172241000118,51.536364441000075],[28.317423543000103,51.563959656000065],[28.310912313000127,51.57444997100003],[28.298509969000065,51.58297658300006],[28.269726196000136,51.59426788400003],[28.257788940000097,51.601760966000136],[28.249365682000104,51.61307810500011],[28.248383830000137,51.62209564200006],[28.248900594000077,51.63059641600009],[28.245128214000147,51.64062164300012],[28.23040043100013,51.651137797000075],[28.210039917000103,51.651964621000076],[28.187612346000037,51.64519500800014],[28.166218302000118,51.63310272300006],[28.146684611000097,51.614395854000094],[28.1142318120001,51.57561269100006],[28.090150594000136,51.56204762800007],[28.070823608000097,51.55762929300005],[27.97315515100007,51.5578101610001],[27.954758342000044,51.56078155500011],[27.936051473000077,51.567008565],[27.87559004700006,51.60803965300005],[27.854196004000126,51.615326030000034],[27.831251668000107,51.612923076000065],[27.812544800000126,51.60201934900002],[27.799522339000074,51.585198669000135],[27.79321781400006,51.565019023000076],[27.793734578000112,51.5523066200001],[27.796266724000105,51.541532085000085],[27.79714522300011,51.5306025190001],[27.792546021000078,51.51729583800011],[27.78732670100007,51.510913798000075],[27.74055953000007,51.47140716600011],[27.73012089000011,51.46515431700004],[27.7142562250001,51.46370737700005],[27.700045207000045,51.46753143300009],[27.68376713100011,51.475515443000056],[27.67033125800009,51.484817200000066],[27.666181614000095,51.49019444700011],[27.664130087000103,51.49285288500005],[27.697306356000094,51.54318573000003],[27.70516117400012,51.56835215300006],[27.69265547700013,51.58922943200014],[27.676842488000148,51.59481048600006],[27.620618531000076,51.595895692000056],[27.512426250000146,51.623098617],[27.51230472800003,51.623129171000045],[27.477268107000015,51.62367177400009],[27.4587679440001,51.61749644000011],[27.430966023000053,51.59842783600004],[27.40900354000007,51.591709900000126],[27.388384644000066,51.59072804800004],[27.32906009900006,51.59695505800005],[27.28926924700005,51.588971049000065],[27.26746179200012,51.58749827100007],[27.254025920000057,51.59537892700009],[27.259710327000107,51.612302959000026],[27.274489787000018,51.633800354000044],[27.277487020000137,51.651137797000075],[27.2479281010001,51.655659485000086],[27.223640177000107,51.65369578000005],[27.203589722000057,51.65514272100006],[27.18901696800009,51.663772685000076],[27.18105879700005,51.68340973000005],[27.18147220800006,51.7101264450001],[27.18415938300009,51.73144297400009],[27.177854858000075,51.74707509400014],[27.151086466000095,51.75676442500006],[27.109952026000116,51.762422995000094],[27.02158532700011,51.76454172800006],[26.920816284000125,51.7425275680001],[26.854773803000082,51.749348857000136],[26.665741415000124,51.80138702400009],[26.445599813000115,51.80559865400005],[26.431543823000084,51.810223694000086],[26.41924483200006,51.8209207160001],[26.416971069000027,51.83063588500004],[26.41996830200014,51.83973093700009],[26.419761597000075,51.84686228500004],[26.40777266500004,51.85060882600007],[26.17533207200009,51.85670664500011],[26.145359741000046,51.864845684000045],[26.08076420100008,51.90065745100006],[26.050585165000086,51.904817404000084],[25.9811320390001,51.903473816000115],[25.76791508000008,51.92851104700011],[25.683475789000028,51.91802073200008],[25.547396408000054,51.91944198200008],[25.35197147700006,51.92148305300012],[25.18329960100004,51.949750061],[25.138031046000037,51.948949077000094],[25.09265913900009,51.93975067200009],[25.002742147000074,51.91047597300013],[24.72182906100005,51.88233815600009],[24.701055135000104,51.882906596000055],[24.639766886000046,51.89213083900005],[24.390789836000096,51.88001271600007],[24.369602498000063,51.875103455],[24.34789839700005,51.86115081800003],[24.311518189000054,51.827561137],[24.29611861200007,51.808130798000036],[24.272347452000105,51.742889303000084],[24.244132121000064,51.7182138070001],[24.13075402800004,51.669792989000115],[23.981305786000036,51.585999654000055],[23.941308228000082,51.58191721600005],[23.91288619000005,51.598582866000065],[23.884877563000142,51.619873556000066],[23.84529341600009,51.629821269000075],[23.82028202300009,51.63126820900007],[23.749692017000115,51.64447153800006],[23.726230916000134,51.644859111000066],[23.628975871000108,51.62904612200006],[23.61667688000008,51.624782817000096],[23.606444946000092,51.61811655700009],[23.5943526610001,51.60496490500012],[23.59331913200012,51.59695505800005],[23.599106893000084,51.588971049000065],[23.62628869700009,51.540886129000114],[23.628665812000122,51.53122263600008],[23.62411828600008,51.51590057400011],[23.61543664600012,51.513110047000055],[23.60623824100014,51.51739919100003],[23.602310832000057,51.53078338700007],[23.588668253000066,51.53589935300004],[23.57275191200003,51.53967173300009],[23.560349569000067,51.555303854000044],[23.56717085700012,51.554890442000016],[23.57399214700007,51.555303854000044],[23.55208133900004,51.57881663100011],[23.543399699000076,51.59274342900011],[23.539885702000106,51.6071094780001],[23.54515669700004,51.634110413000144],[23.543813110000087,51.64379974400006],[23.53244429500009,51.65149953300008],[23.53244429500009,51.6589667770001],[23.54143599400004,51.6597419230001],[23.547533813000086,51.662067363000034],[23.560349569000067,51.67196340000004],[23.555388631000113,51.6763042200001],[23.549290812000066,51.68320302300009],[23.546086873000093,51.689636739000036],[23.55001428200006,51.692427267000085],[23.55921268700007,51.695166118000024],[23.556938924000036,51.7013931270001],[23.550220988000035,51.70842112200012],[23.546603637000118,51.71358876600004],[23.55228804500007,51.736636455000074],[23.556318806000064,51.74735931400011],[23.560349569000067,51.75454233800005],[23.577299439000083,51.76668630000005],[23.598280070000072,51.774670309000044],[23.617503703000096,51.78650421200004],[23.628665812000122,51.80975860600006],[23.610269002000024,51.82518402100007],[23.59455936700007,51.84329661100008],[23.6057214760001,51.85159067800003],[23.609855591000013,51.87326894200004],[23.621844523000078,51.87742889400005],[23.62132775800012,51.8820280970001],[23.62060428900014,51.88321665500012],[23.618847290000076,51.88326833200003],[23.614919881000105,51.88425018400011],[23.621431111000078,51.89556732200009],[23.622154582000064,51.92794260700006],[23.628665812000122,51.94633941700007],[23.647579386000075,51.9740896610001],[23.660705200000052,51.9868795780001],[23.676414835000088,51.99408844000004],[23.664942668000094,52.011167501000074],[23.650783325000134,52.04894297300007],[23.642515096000096,52.061396994000035],[23.641481567000113,52.07292083800007],[23.637450806000118,52.0844705210001],[23.62525516800011,52.08971567800012],[23.615850057000042,52.09229950000013],[23.609855591000013,52.09862986200005],[23.604791301000148,52.106768901000066],[23.598176717000058,52.11452036600008],[23.57936649600012,52.121548361000066],[23.531927531000036,52.120644023000125],[23.51249719200007,52.124442241000054],[23.484695272000096,52.158626201000054],[23.48872603300009,52.162140199000106],[23.49151656100005,52.17410329200007],[23.48769250500004,52.18162221300011],[23.47094934100008,52.17162282400008],[23.464334757000074,52.176351217000075],[23.454412882000067,52.18146718400007],[23.450485474000118,52.18591135700006],[23.43673954200008,52.175679424000094],[23.42723107900011,52.17679046700007],[23.418239380000045,52.18250071200003],[23.405733684000065,52.18591135700006],[23.39136763500005,52.18250071200003],[23.388473755000064,52.184154358000086],[23.395811808000076,52.19337860100009],[23.395811808000076,52.19957977300007],[23.374831177000146,52.200949199000064],[23.312716105000078,52.21528940800005],[23.29959029200012,52.22342844600007],[23.284190715000136,52.21973358200006],[23.21225712100008,52.23167083700011],[23.189726196000066,52.24053334600009],[23.197684367000136,52.25831003900004],[23.194480428000045,52.2714616900001],[23.18352502400009,52.28130605100009],[23.176099382000128,52.28513571000013],[23.16874556500008,52.28892832500014],[23.165644979000035,52.289393413000084],[23.212050415000135,52.34750356100008],[23.230447225000116,52.36507354700004],[23.270548137000016,52.3951233940001],[23.392297810000116,52.509638367000036],[23.480457805000068,52.554415995000085],[23.569031209000116,52.58588694300005],[23.736152792000038,52.61490325900012],[23.868961222000106,52.67004201300011],[23.908752075000024,52.69985931500011],[23.92249800600007,52.74259572400012],[23.92042563900011,52.772624530000115],[23.91205936700004,52.8938526410001],[23.909475545000134,52.90150075300011],[23.90544478300012,52.90653920500006],[23.902034139000108,52.91253367100009],[23.901103963000136,52.92325653200001],[23.9038944910001,52.93113718700005],[23.91495324700011,52.944624735000104],[23.917950480000115,52.9508000700001],[23.9175370690001,52.95880991700008],[23.909062134000123,52.98666351400004],[23.90895878100008,52.99304555300006],[23.911335897000125,53.00506032400003],[23.909682251000078,53.01273427400011],[23.898210083000066,53.027539571000034],[23.86792769400003,53.05102651000004],[23.859349406,53.06797638000012],[23.86069299300007,53.087484233000026],[23.87030481000008,53.10125600200007],[23.88239709500007,53.11329661100004],[23.891388794000108,53.127714336000054],[23.89366255700011,53.15195058200004],[23.88312056500007,53.16399119100004],[23.865963989000104,53.172001038000104],[23.84808394300006,53.1838091030001],[23.83619836500011,53.1992861950001],[23.828446899000113,53.21383311000005],[23.81862837700004,53.22796661400011],[23.80064497900014,53.24246185400005],[23.782971639000063,53.270935568000084],[23.742974080000096,53.36547760000008],[23.72292362500013,53.39710357700005],[23.675794719000123,53.45570465100007],[23.59094201600007,53.61125071200013],[23.56706750400008,53.68101389600008],[23.564793742000063,53.74240549800007],[23.56469038900013,53.74240549800007],[23.56469038900013,53.742457174000094],[23.540402466000046,53.76359283500002],[23.52986047400009,53.784160055000115],[23.52066206900008,53.837335103000065],[23.51043013500009,53.86250152700009],[23.497200968000097,53.885549215000076],[23.486865682000087,53.909992168000116],[23.485625448000064,53.93929270400008],[23.520145305000142,53.93397003200002],[23.60995894400014,53.9018272910001],[23.627115519000114,53.89820994100011],[23.64261844900011,53.898985087000106],[23.691917765000113,53.91149078400011],[23.754446248000107,53.91676178000006],[23.77180952900011,53.9243065390001],[23.787209106000088,53.92792389000007],[23.794133749000082,53.92709706600007],[23.812117147000066,53.92084421900006],[23.820592082000076,53.919293925000034],[23.82834354600007,53.92006907100005],[23.90472131300004,53.94606231700001],[23.919810832000053,53.94776763900006],[23.93541711400007,53.943943583000134],[23.96487268000007,53.932729797000086],[23.981305786000036,53.93040435800006],[24.045384562000066,53.93086944600009],[24.074943482000094,53.93572703100011],[24.13674849500009,53.95541575200004],[24.1696147050001,53.958929749000106],[24.20113732900006,53.952470195000046],[24.229145955000092,53.9323680630001],[24.24640588400007,53.90363596700007],[24.25705122900007,53.894024150000064],[24.276378215000108,53.89180206300005],[24.310174601000085,53.89268056300011],[24.341903931000015,53.887047832000064],[24.377870728000087,53.886841126000036],[24.414044230000115,53.897693176000075],[24.528662557000075,53.958361308000065],[24.579098755000075,53.97562123700004],[24.642970825000106,53.98301096700004],[24.666845336000108,53.99386301700011],[24.67056604000004,53.99427642900011],[24.67428674300004,53.99370798800007],[24.677904094,53.99231272400007],[24.690823201000114,53.97283070900008],[24.705602661000057,53.96420074500014],[24.723896118000113,53.96342559900012],[24.7886983650001,53.969678447000035],[24.806371704000128,53.97531117800005],[24.819084107000066,53.99231272400007],[24.819187459000087,53.992416077000115],[24.819290812000133,53.99251943000013],[24.819394165000062,53.992571106000035],[24.821357870000096,54.01990793900006],[24.81246952300009,54.03892486600006],[24.799033651000116,54.05602976500009],[24.787148071000104,54.07763051400005],[24.78249719200005,54.092875062000104],[24.784254191000116,54.0962340290001],[24.790558716000106,54.096595765000096],[24.799447062000127,54.10321034800012],[24.81815393100004,54.11013499000009],[24.818670695000066,54.11395904600005],[24.81743046000011,54.12062530500003],[24.817533813000068,54.12822174100009],[24.82156457500014,54.13452626600011],[24.85098389500007,54.14495112900007],[24.855981079000088,54.14672190300012],[24.902283163000074,54.14977081300006],[24.948275187000064,54.145895081000106],[25.027133423000095,54.127860006000105],[25.0719885660001,54.13220082700008],[25.115603475000054,54.14878896100009],[25.15653121000005,54.175712382000114],[25.17306766700005,54.196589661000075],[25.193531535000115,54.24366689100005],[25.206243937000067,54.25679270500004],[25.224123983000112,54.25854970300011],[25.287582641000057,54.2452171840001],[25.369748169000104,54.247904358000106],[25.39403609200008,54.25715443900003],[25.43413700400009,54.291829326000055],[25.459355103000036,54.29890899700007],[25.472067505000098,54.29715199900011],[25.478682088000085,54.293327942000076],[25.483487996000093,54.287695211000134],[25.553974650000043,54.2312645480001],[25.545499715000062,54.22749216800008],[25.522141967000096,54.228629049000084],[25.50167810000005,54.22175608400002],[25.499300984000087,54.21183420800011],[25.52338220200005,54.204237773000074],[25.528963257000044,54.195659485000135],[25.52172855600008,54.18821807900011],[25.493203165000125,54.18243031900005],[25.4857617590001,54.17540232400012],[25.493306518000054,54.15752227800007],[25.516044149000038,54.1447582000001],[25.543019247000075,54.13695505800006],[25.63159265100003,54.12832509400004],[25.6535034580001,54.12873850500006],[25.663942098000117,54.13235585500013],[25.679755086000114,54.145326640000064],[25.690607137000086,54.148220520000045],[25.72812422700008,54.145223288000125],[25.740009806000103,54.14625681600009],[25.763057495000055,54.15643707300006],[25.77101566600004,54.17214670800012],[25.771945841000075,54.217880351000076],[25.775046427000117,54.22247955300011],[25.786828654000118,54.231781311000134],[25.789205770000052,54.23622548500006],[25.78662194900005,54.24232330400011],[25.78176436400014,54.244442037000084],[25.776286662000047,54.24563059500011],[25.77225590000006,54.248937887000096],[25.765641316000142,54.25999664300011],[25.757786499000133,54.268988343000046],[25.748898152,54.27632639600006],[25.739286336000102,54.28257924500013],[25.734738811000057,54.2831993610001],[25.723266642000056,54.28097727500011],[25.719235881000145,54.28154571600007],[25.715411825000103,54.28521474200005],[25.704766480000018,54.30299143500008],[25.70176924600011,54.31275828100004],[25.69598148600005,54.32097483400008],[25.682338908000133,54.325625713000136],[25.667352743000066,54.323300273000115],[25.607408081000074,54.3048517870001],[25.56399987800006,54.303146465000026],[25.54229577600009,54.30805572500006],[25.528653198000058,54.32097483400008],[25.52999678600014,54.346141256000124],[25.54880700600006,54.367742005000075],[25.594695678000104,54.40009145100006],[25.612575724000067,54.42179555300006],[25.616296427000094,54.4410708630001],[25.615572958000087,54.46189646400006],[25.61991377700008,54.488096416000076],[25.630869181000037,54.50835357700009],[25.64616540500009,54.520394186000054],[25.707350301000105,54.5415298470001],[25.726470581000115,54.552950338000095],[25.740423217000114,54.56850494400004],[25.74559086100001,54.588400370000045],[25.739906454000078,54.60772735600008],[25.715101766000117,54.64322906500013],[25.708383830000088,54.66302113900011],[25.70952071200011,54.675630189000024],[25.713861531000077,54.685552064000035],[25.719132528000014,54.69475046800005],[25.7230599370001,54.70534413700011],[25.724610229000117,54.71567942300004],[25.72119958500008,54.7667357390001],[25.72430017100004,54.78011993400011],[25.73494551600004,54.78905995700006],[25.756752970000036,54.800377096000034],[25.76657149200011,54.80327097600011],[25.77339278200006,54.803374329000064],[25.778457072000037,54.80528635700006],[25.782901245000062,54.81370961500005],[25.78228112800008,54.821977845000106],[25.773702840000055,54.841924947000024],[25.77225590000006,54.85086497000006],[25.78269453900009,54.86967519200007],[25.802538290000086,54.881612447000094],[25.825792684000106,54.89199941000003],[25.846669962000078,54.90621042900008],[25.85307784000011,54.91644236300007],[25.85483483900009,54.925485738000134],[25.858452189000076,54.932978821000056],[25.870234416000073,54.93881825800014],[25.907854858000093,54.94806833900005],[25.926148315000063,54.94775828100009],[25.96252852400005,54.942900696000066],[25.9811320390001,54.942693990000095],[26.10257165600009,54.957008362000096],[26.138641805000105,54.96894561800013],[26.153627970000084,54.97850575800004],[26.170324564000083,54.993260301000134],[26.187837768000065,55.008736471000134],[26.224631388000063,55.054883525000086],[26.229385620000073,55.0634101360001],[26.231245971000078,55.07545074500007],[26.230315796000095,55.100255432],[26.233002971000133,55.11162424800011],[26.26442224100009,55.14009796200014],[26.309484090000122,55.144645487000076],[26.420278361000044,55.128109030000076],[26.42875329600014,55.12821238200009],[26.4385718180001,55.130021058000096],[26.444772989000086,55.13394846600008],[26.45066410300009,55.13983958000005],[26.459139038000075,55.14474884100011],[26.47340173300006,55.14567901600014],[26.578925008000027,55.11854888900009],[26.60093916800011,55.12082265200009],[26.616338745000093,55.13539540600007],[26.627500854000118,55.16443756100006],[26.633908732000066,55.19218780600008],[26.641143432000035,55.20283315100008],[26.656956421000128,55.21533884700008],[26.685688517000127,55.2316169230001],[26.701088094000113,55.236836243000106],[26.739901281000073,55.24277640300008],[26.765580281000037,55.24670644200009],[26.78966149900009,55.25719675800005],[26.800720256000087,55.27331980400004],[26.79157352700011,55.2901663210001],[26.768629191000088,55.30024322500006],[26.602696167000087,55.31688303700008],[26.542338094000087,55.30758127900006],[26.525388224000093,55.30809804400007],[26.46575362200008,55.32086212200005],[26.450043986000107,55.32706329400014],[26.445496460000072,55.337501933000084],[26.455211629000104,55.35610544900004],[26.479086141000096,55.381375224000095],[26.486010783000093,55.390832012000054],[26.499239950000085,55.428090719000096],[26.507818238000112,55.43914947500008],[26.543268270000056,55.45961334200006],[26.54647220900011,55.47124054000011],[26.5276619870001,55.4921694950001],[26.532106161000115,55.51625071200004],[26.551639852000108,55.534492493000094],[26.576134480000064,55.55056386400005],[26.59556481900006,55.56803049800001],[26.605176635000078,55.590096334000094],[26.60765710500004,55.61645131500006],[26.603833048000098,55.64327138300007],[26.594531291000067,55.666990866000106],[26.615615275000096,55.68797149700009],[26.64010990400007,55.695567933000056],[26.66687829600005,55.69396596300004],[26.72010502100008,55.68187367800004],[26.74304935700013,55.68285553000001],[26.822837769000103,55.706109925000135],[26.84278487200004,55.71933909200004],[26.900145711000107,55.77871531200006],[26.957816610000094,55.818583680000074],[26.979425815000127,55.826290963000076],[26.981071004000086,55.82687774700014],[27.11077884900004,55.83628285800009],[27.151448201000075,55.83245880200005],[27.173203980000096,55.82574086500002],[27.23552575700003,55.79584605000011],[27.263017619000095,55.78721608500007],[27.282447957000073,55.79186696400012],[27.32916345200007,55.81757599000011],[27.34962731900003,55.831218567000114],[27.374587036000037,55.81483713800006],[27.405851277000124,55.80434682300012],[27.43882084200007,55.7987399290001],[27.564601278000055,55.792228699000134],[27.592713256000078,55.794244080000084],[27.601498251000063,55.80961781900006],[27.61012821400001,55.830960185000066],[27.617156209000115,55.878554179000076],[27.645009806000104,55.9228408810001],[27.74443526200011,55.95973785400013],[27.776991414000065,55.99239736],[27.781228882000107,56.01637522400003],[27.812544800000126,56.034513651000054],[27.880654337000124,56.06386586600013],[27.892746622000118,56.077095032000045],[27.901531617000103,56.08934234600005],[27.911453491000085,56.100246074],[27.92705977400004,56.10936696400009],[27.939668823000147,56.11306182900009],[27.981009969000098,56.11802276700004],[28.023798055000015,56.129649964000095],[28.0511000380001,56.14066599700004],[28.068239787000095,56.14758168600008],[28.11097619600011,56.156805929000086],[28.148906697000115,56.14241404300008]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Czech Republic","sov_a3":"CZE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Czech Republic","adm0_a3":"CZE","geou_dif":0,"geounit":"Czech Republic","gu_a3":"CZE","su_dif":0,"subunit":"Czech Republic","su_a3":"CZE","brk_diff":0,"name":"Czech Rep.","name_long":"Czech Republic","brk_a3":"CZE","brk_name":"Czech Rep.","brk_group":null,"abbrev":"Cz. Rep.","postal":"CZ","formal_en":"Czech Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Czech Republic","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":6,"pop_est":10211904,"gdp_md_est":265200,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"EZ","iso_a2":"CZ","iso_a3":"CZE","iso_n3":"203","un_a3":"203","wb_a2":"CZ","wb_a3":"CZE","woe_id":23424810,"woe_id_eh":23424810,"woe_note":"Exact WOE match as country","adm0_a3_is":"CZE","adm0_a3_us":"CZE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":14,"abbrev_len":8,"tiny":-99,"homepart":1,"filename":"CZE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[14.39780806400006,51.01311472600011],[14.425816691000135,51.02094370600013],[14.462093547000109,51.01965179400008],[14.473462362000108,51.02337249800009],[14.48214400200007,51.03719594300014],[14.487931763000121,51.028721009000066],[14.490102173000109,51.022700704],[14.493512818000058,51.0167062380001],[14.502917928000102,51.008515524000074],[14.515320272000082,51.00303782200007],[14.542295369000101,50.998748678000105],[14.55459436000004,50.992650859000065],[14.566686645000116,50.983400778000025],[14.574334758000106,50.975494283000074],[14.577435343000046,50.96572743700003],[14.575574992000043,50.950689596000046],[14.567823527000142,50.93864898700008],[14.555834594000087,50.92428293900008],[14.550356893000098,50.91208730100007],[14.56182906100011,50.90635121700009],[14.617122843000118,50.92087229400005],[14.629215128000112,50.92071726600011],[14.634589478000066,50.90940012700011],[14.628801717000101,50.8961192830001],[14.611851847000109,50.87095286100009],[14.608337850000053,50.85307281500013],[14.613195435000078,50.84557973200009],[14.647921997000111,50.8393785610001],[14.662184692000068,50.83436594600005],[14.700425252000061,50.81596913700014],[14.73752893100004,50.8106981410001],[14.759233032000052,50.81018137600006],[14.77535607900012,50.81297190400002],[14.785071248000065,50.820051575000065],[14.794579712000141,50.83162709600009],[14.810392700000136,50.8584471640001],[14.831683390000137,50.85798207600007],[14.867856893000065,50.864389954000096],[14.982061808000083,50.85906728200007],[14.98412886500006,50.86769724600009],[14.982888631,50.90242380800004],[14.981751749000097,50.90526601200011],[14.981131632000142,50.90909006800004],[14.982061808000083,50.91467112300006],[14.98485233500014,50.918081767000075],[14.9946708570001,50.92510976200009],[14.99777144400005,50.93017405200007],[14.996634562000052,50.959216207000054],[14.981441691000015,50.97322052000007],[14.965215291000106,50.981333720000066],[14.960977824000054,50.992650859000065],[14.961081176000077,50.992650859000065],[14.96562870300002,50.99606150300008],[14.970692993000084,50.99869700200008],[14.976377401000036,51.00040232400005],[14.982061808000083,51.001177470000066],[14.996531209000125,51.007843730000076],[15.001182088000093,51.01244293200003],[15.003972616000055,51.020685323000066],[15.022989543000108,51.00965240500008],[15.073632446000062,51.00262441000007],[15.082107381000071,50.99275421200008],[15.093889607000078,50.98541615800008],[15.10794559700008,50.98102366200009],[15.119211059000067,50.98247060200009],[15.122518351000053,50.992650859000065],[15.122518351000053,50.99275421200008],[15.131510051000106,51.00582834900012],[15.144429158000094,51.011564433000075],[15.156108032000075,51.007843730000076],[15.160758911000128,50.992650859000065],[15.170164022000106,50.97797475200005],[15.22711145000008,50.977406311],[15.253776489000105,50.96903472900004],[15.269796183000066,50.952653300000094],[15.268762655000073,50.94298980700006],[15.260081014000036,50.932499491000094],[15.253053019000106,50.914102682000106],[15.256050252000136,50.89989166300006],[15.26535201000007,50.88227],[15.277134236000052,50.86573354100005],[15.287779581000052,50.85488149000011],[15.30772668500006,50.84475291000007],[15.325813436000088,50.8396886190001],[15.34100630600011,50.83173044900013],[15.352995239000082,50.81297190400002],[15.353305298000064,50.803256735000076],[15.350514770000103,50.79323150600007],[15.34968794800008,50.783723043000094],[15.356095825000125,50.77545481400003],[15.368578785000096,50.7729491100001],[15.370255168000057,50.77261261000007],[15.381313924000068,50.78000234000007],[15.39082238800006,50.79064768500007],[15.40012414500009,50.79798573800005],[15.441775350000086,50.80020782500006],[15.641866496000148,50.75576609400008],[15.65323531000004,50.75096018500008],[15.666464477000147,50.738092753000075],[15.673802530000046,50.733545227000064],[15.684344523000105,50.73142649400006],[15.767440226000076,50.744190572000036],[15.792244914000037,50.742691956000044],[15.794415323000093,50.735870667000086],[15.797619263000085,50.72977284800004],[15.848158813000111,50.67515085900006],[15.854566691000059,50.673703919000076],[15.882265258000075,50.674220683000044],[15.94148645000007,50.68838002600009],[15.958022908000146,50.68688140900008],[15.97145878100011,50.67861318000012],[15.984481242000044,50.662903544000045],[15.99316288200012,50.649364319000085],[15.9986405840001,50.63556671200013],[15.996366821000095,50.62368113200009],[15.982000773000065,50.61623972600009],[15.980037068000057,50.61298411100009],[15.979210246000036,50.609780172000114],[15.9799337150001,50.606627910000064],[15.982000773000065,50.603630677000034],[16.02447880000011,50.60859161400009],[16.08649051900008,50.64678049800008],[16.128658488000042,50.64404164700002],[16.160284465000103,50.62864207000004],[16.17547733500004,50.624094544000116],[16.19232385200013,50.62657501300009],[16.20451949100004,50.63634185800004],[16.211754191000097,50.649105937000115],[16.2190922450001,50.65913116500013],[16.232011352000114,50.660888164000106],[16.268288208000058,50.660423076000086],[16.300947714000127,50.65510040300003],[16.331643514000092,50.64404164700002],[16.416806275000113,50.58662913000011],[16.425901326000087,50.56756052700004],[16.394482056000044,50.559343974000114],[16.398306111000096,50.551799215000074],[16.398306111000096,50.54849192300006],[16.395515584000123,50.54570139600011],[16.391174764000137,50.53991363500003],[16.389624471000047,50.534849345000055],[16.388280884000068,50.52714955700006],[16.388384237000082,50.52125844300008],[16.391174764000137,50.52182688400012],[16.382596476000117,50.51417877200004],[16.36202925600014,50.501207988000026],[16.352624145000078,50.49278472900004],[16.335467570000105,50.49035593700006],[16.30342818200012,50.4960403440001],[16.287718547000054,50.49278472900004],[16.27996708200004,50.479865621000016],[16.264980917000056,50.47164906800009],[16.247410929000097,50.46498280900008],[16.232011352000114,50.45676625600004],[16.226533651000125,50.45537099200007],[16.21733524600012,50.451650289000064],[16.21123742700007,50.45128855400014],[16.21609501100008,50.440178122000134],[16.2179553630001,50.4371292110001],[16.19800826000008,50.440023092000104],[16.190153443000042,50.424158427000094],[16.199558553000088,50.40627838100002],[16.232011352000114,50.40260935500003],[16.24493046000012,50.37682281500011],[16.249684692000102,50.37103505500004],[16.262500448000083,50.364420472000056],[16.26983850100009,50.365454001000046],[16.276969849000125,50.36943308500011],[16.28864872200009,50.37186187800008],[16.334227335000094,50.37186187800008],[16.343735799000054,50.36994985000007],[16.35076379400007,50.360648092000126],[16.35148726400007,50.35134633400011],[16.35066044100006,50.34225128200012],[16.353244263000136,50.333517965000055],[16.37102095600008,50.31837677000004],[16.415566040000073,50.3079381310001],[16.437786906000014,50.2979645800001],[16.45215295400004,50.28499379500008],[16.47757775900004,50.25533152300011],[16.492047160000055,50.242722473000065],[16.504759563000107,50.22799469100008],[16.535041952000142,50.20773752900007],[16.545894003000086,50.18882395500003],[16.55726281700009,50.15471751000006],[16.56666792800013,50.142211812000085],[16.584237915000102,50.127432353000074],[16.618654419000052,50.1070201630001],[16.66061568200007,50.093015850000114],[16.701233357000092,50.094927877000025],[16.732032511000057,50.121954652000085],[16.75425337700011,50.13228993800007],[16.76644901600011,50.1434003710001],[16.777301066000064,50.15693959600008],[16.795284464000048,50.17440623000001],[16.817712036000046,50.186756897000066],[16.837555786000053,50.18861724900009],[16.857606242000088,50.18773875000005],[16.86976208200008,50.189728865000035],[16.880963990000023,50.19156280600009],[16.8903691000001,50.19693715400003],[16.907008911000105,50.211768290000066],[16.918997843000056,50.21709096300003],[16.927782837000052,50.21729766900009],[16.946283,50.21306020200012],[16.955274699000114,50.21347361300013],[16.9577551670001,50.217142640000134],[16.957548462000148,50.22923492500013],[16.960338989000093,50.23197377500006],[16.975015096000075,50.231818747000034],[16.981009563000015,50.22918324800011],[16.985660441000075,50.22313710600005],[16.996305786000075,50.21290517200009],[17.008398071000073,50.20995961500009],[17.014805949000106,50.218486227000085],[17.01284224400007,50.23166371700008],[16.999819783000135,50.242722473000065],[16.99837284300014,50.267010396000074],[16.98783085100007,50.28494211900005],[16.969640747000113,50.29775787400004],[16.945249471000096,50.30690460200012],[16.926542602000012,50.31925527000006],[16.91672408000005,50.33863393200005],[16.909282674000025,50.35992462200005],[16.897913859000138,50.378218079000106],[16.86587447100004,50.408448792000115],[16.865771118000108,50.422401429000104],[16.892952921000102,50.432943421000054],[16.91579390400008,50.43108306900007],[16.94400462900012,50.420266697000045],[16.958788696000084,50.414598287000075],[16.98193973800008,50.416355286000055],[17.084672485000084,50.39795847600007],[17.09562788900007,50.39366933200009],[17.11888228400008,50.38116363600011],[17.13169803800005,50.37682281500011],[17.145443970000088,50.37671946300008],[17.175933065000066,50.380750224000074],[17.187611939000135,50.378476461000076],[17.18544152800007,50.37568593400002],[17.1888521730001,50.364833883000074],[17.195053345000076,50.35191477500007],[17.20104781100011,50.34323313400009],[17.21086633300007,50.33641184500004],[17.24610965900004,50.32214915000006],[17.269880819000093,50.31775665300006],[17.316803019000048,50.318635153000116],[17.337473592000066,50.31300242200007],[17.319076782000078,50.308248190000086],[17.321867309000112,50.30447581000007],[17.32538130700007,50.301116842000056],[17.3295154220001,50.29822296200007],[17.334062947000035,50.295690817000064],[17.3328227130001,50.282668356000045],[17.334786418000135,50.270007630000094],[17.341711060000108,50.25972402000011],[17.35504357900004,50.25326446600005],[17.365895630000097,50.27155792300002],[17.38801314300011,50.272643128000105],[17.409820597000135,50.261325989000056],[17.41912235500007,50.242722473000065],[17.424186645000134,50.240552063000074],[17.429560994000095,50.239776917000086],[17.434831991000124,50.24050038700008],[17.439999634000117,50.242722473000065],[17.469351847000098,50.26556345600008],[17.51699751800004,50.26835398400004],[17.60639774600014,50.2582254030001],[17.629548787000118,50.26210113600004],[17.64670536300008,50.2710928350001],[17.676367635000133,50.29739613900006],[17.68194869000007,50.30556101500005],[17.68453251100007,50.31238230400001],[17.691043741000044,50.315069478000055],[17.707993611000035,50.31103871700014],[17.713574666000056,50.307679749000044],[17.73197147600007,50.2917634070001],[17.734451945000046,50.28948964500009],[17.73496870900007,50.286802470000055],[17.734245239000074,50.28380523700014],[17.73197147600007,50.280652975000095],[17.721119425000097,50.26194610600001],[17.719155721000075,50.252799378000105],[17.721429484000083,50.242722473000065],[17.73197147600007,50.23600453800006],[17.74757775900011,50.21750437400004],[17.738172648000045,50.2023631800001],[17.71791548700014,50.19109771800006],[17.675334106000065,50.174716289000116],[17.648669067000128,50.16799835200007],[17.60040327900012,50.16680979500006],[17.589447876000122,50.16324412000008],[17.582109823000053,50.153167216000035],[17.584176880000083,50.145880839000085],[17.632752726000092,50.10634836900004],[17.648359009000046,50.10180084300009],[17.65848758900009,50.102989400000126],[17.666962524000095,50.10614166300007],[17.677607869000095,50.10774363200011],[17.690733683000047,50.1054698690001],[17.71791548700014,50.09678822800004],[17.73197147600007,50.094876201000034],[17.73238488800007,50.09389434900004],[17.73259159400004,50.0929641730001],[17.73238488800007,50.092189026000085],[17.73197147600007,50.09146555600009],[17.722669719000123,50.08634959000008],[17.719465780000064,50.080871888000104],[17.72256636500009,50.07513580400004],[17.73197147600007,50.069089661000106],[17.743030232000052,50.0605630500001],[17.749851522000114,50.04950429400008],[17.755432577000136,50.03715362600013],[17.76328739400006,50.02521637000009],[17.774552857000117,50.01519114200007],[17.839355102000127,49.97364329100009],[17.875735311000113,49.96868235300013],[17.91211551900011,49.97581370000006],[17.941571085000106,49.99276357000008],[17.959761190000048,49.9958124800001],[17.999862101000133,49.99658762700011],[18.03241825300009,50.00284047500011],[18.037482544000053,50.00723297100009],[18.035725545000076,50.017206523000105],[18.028697550000086,50.024131165000085],[18.020119262000065,50.02428619500003],[18.0121610920001,50.022684225],[18.006890096000063,50.024131165000085],[18.00244592300004,50.04676544200004],[18.019073899000148,50.044087110000135],[18.0332450760001,50.0418045050001],[18.091639445000084,50.017206523000105],[18.08512821400012,49.99875803600008],[18.098150675000056,49.98904286700005],[18.1620227460001,49.981239726000034],[18.17721561700003,49.97581370000006],[18.208738241000106,49.9582953900001],[18.220520467000085,49.95488474600009],[18.243981567000073,49.95173248300011],[18.25586714700009,49.94604807600007],[18.260104614000056,49.94057037400009],[18.26702925600003,49.925067444000064],[18.27261031100005,49.91829783100013],[18.292454061000058,49.90780751600008],[18.30692346200007,49.9096678680001],[18.334932088000073,49.925429179000076],[18.333795206000072,49.92713450100004],[18.33245161900001,49.92827138300004],[18.330694621000134,49.92883982400011],[18.328524211000058,49.92883982400011],[18.368831827000093,49.93204376300008],[18.407485800000103,49.92315541600007],[18.481796509000077,49.896645407000044],[18.505050903000097,49.89669708300007],[18.544428345000114,49.9129751590001],[18.55920780400004,49.9071873980001],[18.5654089760001,49.88904897100008],[18.562928507000034,49.87370107100011],[18.567269328000123,49.86145375600009],[18.593831014000042,49.852203675000084],[18.566339152000065,49.831584778000064],[18.56675256400007,49.804764710000086],[18.5841158450001,49.77437896700013],[18.607680298000105,49.74295969700009],[18.617705526000123,49.71386586600008],[18.624010050000038,49.70637278300006],[18.637342570000044,49.7003266400001],[18.668141724000122,49.698569641000034],[18.68240441800009,49.69577911400009],[18.695426880000127,49.68885447200009],[18.715063924000077,49.67381663],[18.727672974000086,49.66890736900007],[18.742245727000068,49.66968251600008],[18.757852010000107,49.67407501300008],[18.773458293000118,49.67583201100007],[18.7884444580001,49.6685973110001],[18.792578573000128,49.66079416900007],[18.799296508000054,49.626377666000025],[18.803947387000107,49.6167658490001],[18.815729614000105,49.59929921500006],[18.82017378800012,49.59025583900009],[18.83453983600012,49.5476227820001],[18.837433716000106,49.5269522100001],[18.833196249000082,49.51026072200008],[18.792268514000057,49.50953725200009],[18.773561645000058,49.504886373],[18.73253055800012,49.48028839100004],[18.704521932000088,49.47925486300005],[18.67558313000003,49.48504262300011],[18.64282027200005,49.495791321000034],[18.63589563000005,49.496721497000095],[18.628970988000077,49.495791321000034],[18.600445598000135,49.48597279900007],[18.556210571000094,49.4901585900001],[18.535643351000115,49.48168365500001],[18.53047570800001,49.473467102000086],[18.527995239000035,49.454863587000034],[18.522930949000052,49.44607859400011],[18.514662719000114,49.44060089100014],[18.481796509000077,49.429077047000106],[18.43921512900002,49.39507395500007],[18.416787557000134,49.385462138000065],[18.387642049000107,49.38975128200013],[18.385161580000045,49.342260641000024],[18.36158636600004,49.330191418000084],[18.324596802000087,49.31125478100008],[18.190031372000107,49.276941631000085],[18.16057580600011,49.25869985000011],[18.136494588000062,49.233068339000056],[18.11778771900009,49.20257924500007],[18.105075318000047,49.16976471000007],[18.101457967000044,49.14294464100007],[18.101629686000138,49.13692833200011],[18.10290490700004,49.09225006200009],[18.096290323000062,49.070287578000034],[18.075516398000104,49.047188212000066],[18.04606083200011,49.02915313800014],[18.012884562000096,49.01912791000012],[17.95924442600011,49.02186676000008],[17.935059855000134,49.01938629200009],[17.914079223000044,49.010497946000065],[17.900850057000127,48.99303131100004],[17.894648885000066,48.97820017600011],[17.886897420000135,48.94724599200009],[17.87873254400003,48.93355173800006],[17.860335734000042,48.92171783500007],[17.841215454000036,48.92099436500007],[17.820131469000103,48.92337148100011],[17.795533488000046,48.92058095300004],[17.779410441000035,48.91174428300004],[17.74489058400007,48.872573548000105],[17.72721724400006,48.86291005400008],[17.535084269000066,48.81299062100001],[17.49849735500004,48.81676300100013],[17.467904907000104,48.83810536700014],[17.453332153000133,48.842756247000096],[17.429560994000095,48.83815704300005],[17.41122471900013,48.83021633400011],[17.391733846000108,48.8217756140001],[17.374370565000106,48.8196052050001],[17.260269002000086,48.85779408800008],[17.212209920000134,48.86606231800005],[17.167458130000085,48.85975779200004],[17.113714641000087,48.83391957600011],[17.104619588000105,48.824617818000064],[17.098728475000083,48.80575592100004],[17.084362426000098,48.793715312000074],[17.049945923000053,48.77402659200004],[17.025347941000064,48.746328024],[16.974808390000135,48.64987396300008],[16.963336222000123,48.6359471640001],[16.9475232340001,48.62315724700005],[16.945042766000142,48.60416615800008],[16.910522908000075,48.6307795210001],[16.896673625000087,48.696977030000085],[16.87300581900007,48.71899119100007],[16.856572713000105,48.71981801400011],[16.818125447000057,48.71077463800006],[16.798901814000118,48.709224345000024],[16.780505005000123,48.71377187100006],[16.744331502000108,48.72963653600007],[16.729035279000044,48.7330988570001],[16.69100142400012,48.73206532800003],[16.675085083000084,48.73392567900004],[16.661959269000135,48.740023499000095],[16.654724569000052,48.75185740200001],[16.651003866000053,48.76622345000001],[16.643149047000122,48.778264059000094],[16.624028767000112,48.78338002600005],[16.605528605000103,48.78482696500006],[16.54579065000007,48.796299134000094],[16.528737426000134,48.80353383400006],[16.519539022000117,48.80560089100001],[16.510340617000026,48.804774069000075],[16.492253865000123,48.799709779000096],[16.48191857900011,48.79939971900012],[16.453083130000067,48.802190247000084],[16.435719848000048,48.794542135000114],[16.38497359200008,48.73707794300009],[16.374018188000093,48.73030832900005],[16.358308553000114,48.727259420000024],[16.352727498,48.72844797800005],[16.3394983310001,48.73557932600008],[16.318724406000058,48.73351226800011],[16.317587524000146,48.732840475000046],[16.177751098000073,48.746534729000075],[16.085353638000072,48.742865702000074],[16.032333618000052,48.758058574000096],[15.931771281000122,48.80642771400005],[15.93032434100013,48.81138865200009],[15.93032434100013,48.81831329400006],[15.925053345000094,48.82260243800005],[15.908103475000102,48.81970855800006],[15.907069946000119,48.83025054900011],[15.899628540000093,48.83474640000011],[15.888363077000122,48.83505645800011],[15.8757540280001,48.833092753000074],[15.885985961000102,48.8420327760001],[15.877614379000105,48.84167104100001],[15.870172973000079,48.84389312800002],[15.859217570000112,48.84916412400014],[15.84009729000013,48.85009430000011],[15.833276001000058,48.8520063280001],[15.828315064000035,48.857122295000096],[15.82428430100012,48.869421285000044],[15.818496541000057,48.87231516500003],[15.787904093000037,48.872263489000034],[15.779222453000074,48.87086822500004],[15.743669067000042,48.85846588200007],[15.726822550000037,48.854951884000116],[15.703774861000085,48.854951884000116],[15.681347290000074,48.85846588200007],[15.603729288000096,48.887353007000115],[15.54418668100007,48.90261173300007],[15.521253703000097,48.908488668000075],[15.471851033000062,48.936704000000134],[15.450353638000108,48.944817200000045],[15.405911906000142,48.95468739900011],[15.357852823000087,48.97081044600009],[15.335528605000036,48.974996237000134],[15.288709757000104,48.97535797200003],[15.283748820000142,48.977631735000045],[15.27961470600013,48.982592672000095],[15.27455041500005,48.98672678700012],[15.26690230300008,48.986675111000096],[15.262871542000084,48.982592672000095],[15.260391073000108,48.969156800000064],[15.25708378100012,48.96388580300001],[15.243234497000058,48.95293040000004],[15.23806685400004,48.95075998900006],[15.161792440000113,48.93722076400007],[15.141948689000117,48.93747914700003],[15.148563273000036,48.95174184200002],[15.148976684000047,48.965332743],[15.14473921700008,48.978923645000094],[15.137401164000094,48.99303131100004],[15.059576457000048,48.997217102000064],[15.003972616000055,49.00977447500008],[14.982061808000083,49.007914124000074],[14.978857869000109,49.00626047800003],[14.977307577000088,49.0029015100001],[14.977307577000088,48.99825063100005],[14.978237753000144,48.99282460500007],[14.964595174000038,48.971740622000134],[14.964181763000028,48.943266907000115],[14.968315877000064,48.9126744590001],[14.968212524000108,48.88502756800008],[14.947025187000063,48.822395732000075],[14.939790487000094,48.80978668200004],[14.93813684000014,48.80281036400007],[14.940100545000092,48.79650583900013],[14.944441366000147,48.78859934500008],[14.948885538000068,48.782139791000134],[14.951055949000077,48.780331116000035],[14.939583781000037,48.762812806000085],[14.91932662000005,48.761572571000045],[14.867650187000095,48.775576884000145],[14.815456991000103,48.780331116000035],[14.800367472000119,48.776507060000114],[14.794476359000015,48.766998597000025],[14.790445597000115,48.75485463500012],[14.780420370000087,48.743124085000034],[14.77535607900012,48.72400380500005],[14.722749471000043,48.69341135700003],[14.703835897000092,48.67310251900011],[14.700218546000114,48.646101583000075],[14.700735310000141,48.61553497400007],[14.695671020000077,48.58954172800011],[14.691140439000039,48.586534963000105],[14.675620565000116,48.57623504600007],[14.659187459000064,48.576958517000094],[14.651332641000124,48.583495585000065],[14.645441529000038,48.5929006960001],[14.634692831000107,48.60233164500008],[14.628181600000033,48.603287659000046],[14.612885376000094,48.59974782300009],[14.605133911000081,48.60031626400012],[14.601929973000095,48.60452789300007],[14.601826619000065,48.6111941530001],[14.600586385000044,48.61757619300002],[14.594178507000093,48.621322734000046],[14.578778930000112,48.620495911000035],[14.548806599000072,48.6109357710001],[14.533820434000091,48.60871368400012],[14.522038208000081,48.61062571200003],[14.48214400200007,48.6244749970001],[14.458166137000148,48.64318186500009],[14.443593384000081,48.636515605000056],[14.421165812000083,48.59706064900004],[14.405352823000099,48.586286113000114],[14.353366333000082,48.57142913900009],[14.333212525000077,48.56070627900007],[14.325357706000148,48.55863922100011],[14.31574589000013,48.557915752000014],[14.216527140000094,48.581170146000034],[14.074830363000075,48.591712139000094],[14.040827270000136,48.60116892500005],[14.032455688000082,48.606129863],[14.015195760000097,48.62039255800008],[14.010854939000097,48.625870260000084],[14.00620406000013,48.63951283800009],[14.008064412000039,48.642406718000075],[14.013748820000103,48.643801982000035],[14.020466756000104,48.65315541600009],[14.02346398900005,48.65460235600008],[14.028321574000046,48.6539822390001],[14.032869100000084,48.65491241400008],[14.03472945100009,48.66116526300007],[14.032145630000088,48.66726308200003],[14.026151164000055,48.670053610000075],[14.019226521000093,48.67191396100008],[14.014162231000114,48.675066223000044],[14.00775435400007,48.683282776000084],[13.991114543000036,48.700180970000076],[13.982329549000069,48.70648549400008],[13.915046834000064,48.73098012400004],[13.89313602700011,48.743020732000105],[13.874945923000068,48.75242584300005],[13.855928996000102,48.75929880800004],[13.815724731000072,48.76643015600007],[13.796191040000082,48.7798143520001],[13.747925252000073,48.84337636300006],[13.724670858000138,48.86730255200007],[13.710614868000022,48.87247019500009],[13.67335616000011,48.876345928000035],[13.654442586000071,48.882237040000035],[13.637389363000125,48.89345082600007],[13.621783081000103,48.909057109000116],[13.611137736000103,48.92724721300007],[13.608657267000126,48.94616078700011],[13.590467163000083,48.944817200000045],[13.573413940000137,48.95101837200011],[13.55646407100005,48.95995839500006],[13.53889408300006,48.96703806600007],[13.522395447000093,48.9693419300001],[13.515949747000034,48.970242005000046],[13.50210046400008,48.966056214000105],[13.492592,48.95504913300002],[13.482256713000083,48.93763417600007],[13.45889896600005,48.9450239060001],[13.427272990000034,48.95995839500006],[13.398540893000131,48.97768341100007],[13.384174845000132,48.99303131100004],[13.38355472800015,49.021091614000056],[13.372392618000049,49.0385065720001],[13.32991459100009,49.06692861000002],[13.299528849000126,49.09364532500007],[13.287333211000117,49.10056996700007],[13.267282755000082,49.10563425700013],[13.206821330000139,49.10749460900013],[13.178502645000064,49.118346660000064],[13.162586303000126,49.135141500000145],[13.149460489000147,49.15483022100008],[13.055822795000012,49.23818430600005],[13.043420451000145,49.242783509000105],[13.043213745000088,49.24288686100002],[13.043213745000088,49.24293853800003],[13.011277710000115,49.26779490200007],[13.006730184000077,49.27709665900002],[13.005386597000012,49.286760153000046],[12.999805542000104,49.29492502900006],[12.982442261000074,49.299627584000035],[12.954330282000058,49.31910959900003],[12.9398608810001,49.32675771100011],[12.92291101100011,49.33270050100003],[12.884670451000119,49.33957346700009],[12.870924519000084,49.33673126300002],[12.875368693000098,49.32386383100003],[12.856661825000089,49.322210185000074],[12.797750692000108,49.32784291700011],[12.777906941000111,49.33254547200008],[12.762093953000116,49.343242493000076],[12.729331095000106,49.3911465460001],[12.709177286000028,49.40473744700009],[12.663081909000113,49.41889679000005],[12.64354821800009,49.42949045800003],[12.632179402000105,49.443959859000046],[12.627218465000055,49.46018625900007],[12.624324585000068,49.49300079400007],[12.622980998000115,49.50984731000005],[12.61553959200009,49.51377472000013],[12.604997599000114,49.51279286700006],[12.593732137000075,49.515014954000065],[12.58288008700012,49.522404683000076],[12.575025268000076,49.529897766],[12.568720744000075,49.53883778900013],[12.562312867000117,49.55082672200009],[12.558282104000028,49.56255727200008],[12.55363122500006,49.58472646100009],[12.546603230000073,49.595578512000145],[12.536061239000105,49.6031232710001],[12.512186727000113,49.611649882000016],[12.501954793000037,49.6197114060001],[12.50267826300012,49.62214019800006],[12.507432495000103,49.629995016000095],[12.49947432400006,49.6325271610001],[12.496890503000145,49.63387074800005],[12.505365437000137,49.646118063000074],[12.504641968000072,49.6593989050001],[12.49637373900012,49.669992575000066],[12.482524454000043,49.67469513000005],[12.44924483200009,49.685030416000046],[12.433948608000065,49.691800029000085],[12.419582560000038,49.700223287000085],[12.398911987000133,49.71949859700003],[12.388576700000016,49.7323143510001],[12.38361576300008,49.742856344000074],[12.395397990000077,49.757894186000044],[12.436739135000096,49.76926300100004],[12.452655477000121,49.77970164000007],[12.455859415000106,49.796134746000035],[12.456376180000035,49.81711537700005],[12.46247399900011,49.83122304300007],[12.482524454000043,49.82724395800008],[12.489862508000044,49.84269521100009],[12.51291019700011,49.870238749000066],[12.52097172000009,49.885534973000034],[12.52407230600005,49.904965312000115],[12.517871135000064,49.912200012000085],[12.50360843900009,49.91576568700006],[12.462680705000139,49.93126861600007],[12.463817586000062,49.94212066600011],[12.470742228000063,49.95560821600009],[12.468158406000043,49.970232646000056],[12.451311889000067,49.98056793200007],[12.414518270000059,49.983048401000126],[12.39922204600012,49.99276357000008],[12.398188517000051,49.99276357000008],[12.246879923000108,50.04495676700014],[12.243675984000049,50.05131296900006],[12.243469279000093,50.06040802000004],[12.241402221000044,50.07063995400003],[12.232513875000109,50.080510152000016],[12.218044474000095,50.0885716760001],[12.202024780000045,50.09451446500012],[12.187865438000074,50.102834372000075],[12.179183797000121,50.1179755660001],[12.178563680000053,50.13296173100005],[12.185591675000069,50.15569936100013],[12.18269779500008,50.170737203000044],[12.175049682000093,50.182622783000056],[12.163784220000137,50.19378489200008],[12.139289592000097,50.21104482000007],[12.089886922000062,50.23083689400005],[12.079551635000144,50.242722473000065],[12.09205733300007,50.254814758000066],[12.102392619000057,50.259155579000065],[12.109110555000084,50.263806458000026],[12.110970906000091,50.27662221300008],[12.107250203000092,50.290884908000066],[12.099188680000083,50.299773255000076],[12.076140991000045,50.31517283100007],[12.101343547000027,50.31398033800008],[12.149314819000011,50.31171051100003],[12.16853845200012,50.30297719300005],[12.174429565000137,50.29372711200005],[12.174119507000057,50.27657053700008],[12.178046916000113,50.268767395000054],[12.189209025000139,50.26246287100013],[12.20378177900011,50.259568990000076],[12.232513875000109,50.25910390200005],[12.239645223000139,50.25657175800006],[12.242952515000068,50.25295440700006],[12.242435750000112,50.24835520400012],[12.237991577000116,50.242722473000065],[12.236441284000078,50.242567445000134],[12.235097697000128,50.24225738500007],[12.233754110000064,50.241688944],[12.232513875000109,50.24096547500011],[12.229826701000093,50.23905344700009],[12.228896525000037,50.23703806600014],[12.229930054000107,50.23481597900013],[12.232513875000109,50.2324905400001],[12.249980510000057,50.221173401000044],[12.254321330000039,50.217401021000114],[12.258455445000067,50.21088979100003],[12.260212443000057,50.20505035500014],[12.26124597200004,50.19988271100004],[12.273234904000077,50.17233917300007],[12.28336348400012,50.16221059200009],[12.300416707000066,50.16081532800012],[12.314369344000054,50.16732655900009],[12.314369344000054,50.17621490500011],[12.30858158300009,50.18691192700004],[12.305584351000078,50.19931427000009],[12.308684936000104,50.21709096300003],[12.314059286000088,50.22649607400007],[12.333799683000052,50.242722473000065],[12.336486857000068,50.258587138000074],[12.344651733000092,50.26639028000011],[12.355813842000117,50.27140289400009],[12.367182658000104,50.27905100500007],[12.398188517000051,50.31517283100007],[12.408937215000066,50.32199412100001],[12.438289429000122,50.33253611300008],[12.450175008000143,50.339357402000125],[12.453792359000147,50.340700990000094],[12.462784058000095,50.340494283000055],[12.466814819000092,50.34188954700005],[12.468985229000083,50.345558574000016],[12.46836511300009,50.34948598300011],[12.46702152500012,50.352844951000094],[12.466814819000092,50.35491200800007],[12.469501994000098,50.35940785800008],[12.471569051000074,50.36447214800006],[12.475083048000045,50.36943308500011],[12.482524454000043,50.37356720000014],[12.510223022000075,50.38876007100006],[12.550530640000119,50.39635650700012],[12.625358114000049,50.39992218100011],[12.678791544000063,50.393721008000114],[12.6918140060001,50.39465118400008],[12.702976115000041,50.40152415000003],[12.725093628000138,50.42343495800009],[12.737909383000044,50.431548157000094],[12.75423913600008,50.43532053600012],[12.770258830000046,50.435940654000085],[12.788138875000072,50.43433868400007],[12.794340047000077,50.435888977000076],[12.80839603700008,50.44183176700008],[12.817387736000029,50.4430203250001],[12.82575931800011,50.44141835600007],[12.918363485000071,50.4053998820001],[12.952573283000078,50.404159648000046],[12.960631103000111,50.40923412300009],[12.982442261000074,50.42296987000006],[12.996601603000045,50.43366689100006],[13.0031128330001,50.451908672000116],[13.00962406400015,50.49268137600009],[13.017892293000102,50.49635040400011],[13.026263875000097,50.497642314000046],[13.03453210400005,50.49650543200005],[13.042283570000052,50.49278472900004],[13.051068563000115,50.491131084000074],[13.06037032100005,50.490614319000144],[13.069775431000094,50.49107940700006],[13.078870483000088,50.49268137600009],[13.078973836000102,50.49268137600009],[13.079180542000074,50.49278472900004],[13.107395874000133,50.49898590100011],[13.160105835000138,50.49702219700009],[13.184703817000127,50.508752747000074],[13.199069865000126,50.52534088200008],[13.232349487000079,50.58202992800008],[13.251779825000142,50.580893047000075],[13.268006226000068,50.573658346000116],[13.284646037000101,50.568955790000125],[13.305626668000087,50.57577708000008],[13.316272013000088,50.59603424100009],[13.32185306800011,50.602390443000104],[13.359370158000104,50.619340312000105],[13.365364624000108,50.62347442700013],[13.36598474100009,50.62709177700003],[13.368775268000148,50.62833201100005],[13.380970906000073,50.62548980700009],[13.386345256000112,50.62161407500014],[13.400401245000126,50.606576234000045],[13.407015828000056,50.601305237000105],[13.429340048000114,50.594328919000105],[13.44794356300005,50.597274476000024],[13.464893432000054,50.60709299800009],[13.482256713000083,50.620890605000056],[13.492178589000076,50.6244562790001],[13.498173055000109,50.62915883400009],[13.499103230000058,50.63520497700003],[13.493315471000072,50.64321482300011],[13.509955281000115,50.65122467100008],[13.523287801000038,50.662180075000066],[13.527215210000094,50.67566762300004],[13.515639689000066,50.69101552400007],[13.556567423000075,50.70672515900005],[13.601939331000096,50.71215118500004],[13.691752970000096,50.71184112600014],[13.71102828000005,50.7142699180001],[13.74906213400007,50.72320994100005],[13.770662882000039,50.72460520400011],[13.816551554000112,50.72134958900002],[13.834534953000087,50.72367502900008],[13.863473755000143,50.73514719700009],[13.869571574000105,50.73525054900011],[13.87535933400008,50.736542461000056],[13.882180624000057,50.74274363200004],[13.882697388000082,50.74801462800008],[13.880320272000034,50.755042623000094],[13.879080037000108,50.7635175580001],[13.883317505000065,50.77323272700005],[13.892515910000041,50.78041575200009],[13.900990844000148,50.78062245700005],[13.910706014000082,50.77876210500003],[13.923315064000121,50.77995066400006],[13.933546997000093,50.784808248000076],[13.948843221000061,50.797210592000056],[13.959591919000076,50.80206817700008],[13.979125610000095,50.80475535100009],[14.015712524000037,50.801758118000095],[14.03493615700006,50.802584941000106],[14.1907922770001,50.847905172000104],[14.202987915000108,50.85513987300009],[14.221281372000078,50.87260650700003],[14.23213342300002,50.879376119000085],[14.268100220000093,50.88413035100007],[14.34654504400001,50.880202942000096],[14.375897257000076,50.89596425400009],[14.381891724000127,50.92087229400005],[14.355226685000076,50.93063914000009],[14.318329712000063,50.93751210600007],[14.292801554000107,50.953480124000095],[14.293731730000074,50.963970439000065],[14.302206665000057,50.967691142000064],[14.303756958000093,50.9697065230001],[14.283809855000072,50.974822490000086],[14.250013469000095,50.97761301700006],[14.238334595000111,50.98247060200009],[14.249496704000137,50.992650859000065],[14.263552694000055,51.02143463200008],[14.287530558000071,51.036834208000045],[14.319363240000115,51.0400123090001],[14.356570272000056,51.03233835900005],[14.364115031000097,51.02799753800005],[14.369386027000102,51.02244232200013],[14.375897257000076,51.01699045900005],[14.386749308000049,51.01326975600006],[14.39780806400006,51.01311472600011]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Germany","sov_a3":"DEU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Germany","adm0_a3":"DEU","geou_dif":0,"geounit":"Germany","gu_a3":"DEU","su_dif":0,"subunit":"Germany","su_a3":"DEU","brk_diff":0,"name":"Germany","name_long":"Germany","brk_a3":"DEU","brk_name":"Germany","brk_group":null,"abbrev":"Ger.","postal":"D","formal_en":"Federal Republic of Germany","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Germany","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":5,"mapcolor13":1,"pop_est":82329758,"gdp_md_est":2918000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"GM","iso_a2":"DE","iso_a3":"DEU","iso_n3":"276","un_a3":"276","wb_a2":"DE","wb_a3":"DEU","woe_id":23424829,"woe_id_eh":23424829,"woe_note":"Exact WOE match as country","adm0_a3_is":"DEU","adm0_a3_us":"DEU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DEU.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.742198113000114,53.57835521000014],[6.749522332000112,53.572414455],[6.756521030000101,53.56289297100001],[6.747569207000083,53.565985419000086],[6.734629754000053,53.575181382000075],[6.72608483200014,53.57713450700011],[6.715993686000075,53.576076565000065],[6.701182488000114,53.57143789300012],[6.695078972000118,53.5702985700001],[6.67709394600007,53.575628973000065],[6.663340691000144,53.58734772300014],[6.659515821000127,53.59910716400013],[6.671153191000144,53.604437567],[6.747325066000116,53.618353583000086],[6.784678582000083,53.62006256700008],[6.798106316000087,53.604437567],[6.775645379000082,53.60248444200014],[6.740896030000101,53.59345123900014],[6.722422722000089,53.59076569200006],[6.722422722000089,53.584621486000074],[6.733571811000104,53.582017319999984],[6.742198113000114,53.57835521000014]]],[[[7.085459832000083,53.68699778900002],[6.873789910000141,53.67275625200009],[6.910817905000101,53.683661200000145],[7.047048373000051,53.69415924700002],[7.085459832000083,53.68699778900002]]],[[[7.34669030000012,53.72321198100012],[7.345062696000098,53.72207265800007],[7.342295769000117,53.72211334800006],[7.295746290000096,53.71100495000003],[7.17359459700009,53.701402085000055],[7.133148634000121,53.70807526200012],[7.178965691000115,53.72406647300003],[7.232920769000145,53.72943756700006],[7.346202019000117,53.727972723],[7.34669030000012,53.72321198100012]]],[[[7.422618035000142,53.73419830900015],[7.435557488000143,53.727972723],[7.432383660000085,53.72406647300003],[7.42904707100007,53.72247955900018],[7.42123457100007,53.721136786],[7.381195509000121,53.72850169499999],[7.366547071000126,53.727972723],[7.383067254000109,53.73484935100011],[7.403493686000076,53.736721096000096],[7.422618035000142,53.73419830900015]]],[[[8.171722852000073,53.725572007000075],[8.155772332000083,53.716376044000086],[8.150889519000117,53.714300848000065],[8.142263217000107,53.715643622000144],[8.136729363000086,53.71796295800011],[8.130707227000073,53.71845123900012],[8.12012780000012,53.714300848000065],[8.12012780000012,53.721136786],[8.13266035200013,53.73403554900001],[8.152354363000057,53.73916250200004],[8.174815300000148,53.737005927000105],[8.195974155000071,53.727972723],[8.181651238000086,53.727972723],[8.171722852000073,53.725572007000075]]],[[[7.62720787900011,53.750921942],[7.625743035000141,53.74994538000011],[7.62330162900011,53.7499860700001],[7.620616082000112,53.74909088700012],[7.547699415000095,53.750433661000116],[7.51392662900011,53.74551015800016],[7.511241082000139,53.727972723],[7.481944207000112,53.72711823100012],[7.472992384000094,53.731878973],[7.469574415000067,53.745347397999986],[7.474619988000113,53.75682200700014],[7.486989780000045,53.76141998900006],[7.517425977000102,53.762111721],[7.606618686000076,53.76260000200009],[7.626719597000117,53.755275783000094],[7.62720787900011,53.750921942]]],[[[7.798594597000118,53.77635325700011],[7.776215040000125,53.76797109600015],[7.748220248000081,53.760931708000086],[7.719493035000141,53.759914455000015],[7.694997592000107,53.76951732000002],[7.685883009000122,53.76178620000009],[7.67709394600007,53.7577985700001],[7.6686304050001,53.75787995000009],[7.660899285000114,53.762111721],[7.686289910000112,53.78099192900014],[7.728282097000117,53.78656647300015],[7.812836134000122,53.783148505000135],[7.812836134000122,53.77635325700011],[7.798594597000118,53.77635325700011]]],[[[7.928965691000143,53.79254791900017],[7.955577019000117,53.782904364],[7.946055535000112,53.784002997000144],[7.93531334700009,53.783148505000135],[7.893239780000044,53.78896719],[7.875254754000082,53.78839752800003],[7.873789910000141,53.77635325700011],[7.854502800000091,53.784572658000016],[7.858897332000083,53.79092031500015],[7.876719597000147,53.79486725500011],[7.897634311000104,53.7962914080001],[7.914073113000113,53.79535553600011],[7.928965691000143,53.79254791900017]]],[[[11.497894727000128,54.02277252800009],[11.468272332000083,53.97068919500005],[11.457692905000044,53.961371161],[11.445323113000086,53.96112702000015],[11.444509311000076,53.968085028000054],[11.45142662900008,53.985541083],[11.447032097000088,53.99713776200012],[11.438731316000116,53.997259833],[11.433278842000078,53.98875560100005],[11.437754754000139,53.975002346000124],[11.423106316000142,53.96771881700012],[11.40707441500004,53.968207098000036],[11.390961134000065,53.97394440300008],[11.375661655000101,53.98183828300016],[11.390391472000118,54.004584052],[11.426605665000125,54.022935289000046],[11.468028191000142,54.030951239],[11.497894727000128,54.02277252800009]]],[[[11.539561394000089,54.05695221600017],[11.533946160000085,54.05695221600017],[11.528493686000047,54.07510000200007],[11.528575066000116,54.07746002800003],[11.533946160000085,54.084865627],[11.601898634000065,54.10415273600016],[11.615896030000016,54.112127997000115],[11.598968946000127,54.09804922100007],[11.552744988000141,54.073065497000144],[11.539561394000089,54.05695221600017]]],[[[13.986175977000073,54.07123444200006],[14.01661217500012,54.06000397300006],[14.192393425000148,53.94611237200003],[14.209483269000089,53.938625393000066],[14.210052931000064,53.938462632],[14.210075518000421,53.938456568001364],[14.193066040000105,53.91149078400015],[14.184797811000067,53.90813181600005],[14.175289348000092,53.90647817000011],[14.192755981000118,53.89376576800005],[14.200818737011842,53.87815729282859],[14.08741295700014,53.87042877800006],[14.0651147800001,53.87238190300009],[14.048350457000081,53.87938060100008],[14.025075717000078,53.86383698100014],[13.995860222000147,53.85374583500002],[13.93848717500012,53.844671942],[13.875254754000139,53.84406159100014],[13.84009850400008,53.85028717700002],[13.82178795700011,53.865139065000065],[13.834727410000113,53.86798737200011],[13.855479363000114,53.877386786000116],[13.887705925000148,53.881537177000084],[13.922373894000145,53.89337799700003],[13.931651238000086,53.89931875200015],[13.938975457000112,53.92820872600008],[13.901866082000081,53.969794012000065],[13.904470248000079,53.99542877800012],[13.954844597000118,53.99359772300012],[13.972666863000114,53.98924388200005],[13.965830925000091,53.98183828300016],[13.96827233200011,53.976263739000146],[13.96029707100007,53.95673248900006],[13.958994988000086,53.94086334800015],[13.974619988000141,53.95734284100002],[13.987478061000074,53.96141185099999],[14.027842644000145,53.961371161],[14.022634311000045,53.95897044500004],[14.018565300000091,53.95636627800015],[14.01587975400011,53.95270416900011],[14.014333530000073,53.94708893400009],[14.048350457000081,53.94086334800015],[14.040293816000144,53.95384349200004],[14.053070509000094,53.97842031500015],[14.051280144000117,54.005072333000086],[14.03744550900012,54.02171458500013],[14.014333530000073,54.01601797100015],[14.006195509000063,54.03229401200018],[13.995290561000076,54.04572174700017],[13.981700066000114,54.05634186400012],[13.965830925000091,54.06378815300008],[13.946055535000056,54.06659577000015],[13.926117384000092,54.06403229400006],[13.915863477000045,54.05638255400011],[13.924815300000091,54.043890692],[13.924815300000091,54.03644440300003],[13.916270379000137,54.03363678600009],[13.907237175000148,54.0274925800001],[13.89991295700014,54.01972077],[13.896983269000115,54.01227448100012],[13.890879754000139,54.010158596],[13.855967644000117,54.00234609600001],[13.858083530000044,54.015773830000015],[13.865570509000094,54.024074611000074],[13.873545769000144,54.02997467700011],[13.876312696000099,54.03644440300003],[13.871104363000114,54.048651434000085],[13.863617384000037,54.049994208],[13.85499108200014,54.04633209800012],[13.82300866000014,54.03790924700009],[13.80827884200005,54.02631256700006],[13.794200066000116,54.01813385600014],[13.774099155000071,54.02277252800009],[13.782074415000125,54.042141018],[13.809255405000043,54.07510000200007],[13.814952019000117,54.10126373900012],[13.80616295700014,54.116644598000065],[13.765310092000107,54.14191315300012],[13.752940300000148,54.153143622000115],[13.762217644000115,54.164455471],[13.777598504000139,54.17401764500009],[13.796153191000144,54.17829010600009],[13.814952019000117,54.17365143400015],[13.823741082000083,54.16396719],[13.844086134000065,54.13129303600008],[13.855967644000117,54.11835358300006],[13.882497592000078,54.102443752000156],[13.948415561000104,54.079779364],[13.986175977000073,54.07123444200006]]],[[[7.904144727000101,54.1804059920001],[7.899180535000141,54.178168036000116],[7.897715691000086,54.18231842700005],[7.893565300000148,54.18309153899999],[7.89039147200009,54.18756745000014],[7.885915561000047,54.190659898000135],[7.879893425000119,54.193915106000176],[7.894541863000113,54.19464752800011],[7.900645379000109,54.190659898000135],[7.904144727000101,54.1804059920001]]],[[[7.93344160200013,54.189886786000116],[7.917653842000078,54.18699778899999],[7.912364129000109,54.192287502000156],[7.929860873000052,54.19529857000008],[7.93344160200013,54.189886786000116]]],[[[8.887950066000114,54.468451239000146],[8.844493035000085,54.466498114],[8.82390384200005,54.4708519550001],[8.812836134000122,54.48212311400009],[8.823741082000083,54.485541083],[8.82553144600007,54.491197007],[8.820974155000044,54.497259833000086],[8.812836134000122,54.50193919500002],[8.844493035000085,54.51972077000009],[8.879649285000141,54.52912018400009],[8.919200066000087,54.530462958],[8.963145379000139,54.52366771000008],[8.958506707000112,54.522447007000046],[8.956309441000114,54.51943594000015],[8.955821160000113,54.514960028000175],[8.956879102000073,54.50942617400007],[8.93848717500012,54.49909088700014],[8.925791863000086,54.48676178600003],[8.911306186000047,54.47549062700001],[8.887950066000114,54.468451239000146]]],[[[11.255625847000088,54.47870514500006],[11.314219597000118,54.413804429],[11.18848717500012,54.42617422100012],[11.170176629000082,54.42007070500012],[11.174652540000123,54.416001694999984],[11.179047071000127,54.4142113300001],[11.13884524800011,54.41266510600015],[11.112640821000099,54.41522858300006],[11.10132897200009,54.423488674000154],[11.103282097000147,54.443833726000044],[11.09864342500012,54.451646226000136],[11.08432050900012,54.45477936400003],[11.058116082000112,54.455267645],[11.047373894000087,54.45327383000016],[11.039886915000125,54.44733307500003],[11.032481316000144,54.44733307500003],[11.029144727000102,54.45465729400006],[11.025726759000094,54.45880768400018],[11.020355665000125,54.45897044500004],[11.008474155000101,54.45465729400006],[11.00570722700013,54.468451239000146],[11.033702019000144,54.508856512000094],[11.072927280000073,54.53119538000011],[11.121267123000079,54.53595612200003],[11.20655358200014,54.51447174700009],[11.23210696700005,54.50165436400005],[11.240000847000118,54.49555084800006],[11.255625847000088,54.47870514500006]]],[[[8.669769727000128,54.50189850500003],[8.641286655000101,54.49237702],[8.618825717000107,54.49262116100005],[8.606130405000044,54.499212958000115],[8.595876498000107,54.51365794499999],[8.602061394000087,54.529771226000044],[8.62012780000012,54.53790924700017],[8.627452019000117,54.53994375200001],[8.63453209700009,54.54262929900007],[8.698903842000078,54.55857982],[8.700938347000118,54.5477562520001],[8.692881707000083,54.52326080900014],[8.669769727000128,54.50189850500003]]],[[[13.15723717500012,54.599066473000114],[13.157074415000068,54.58795807500009],[13.156504754000082,54.58905670800014],[13.153656446000127,54.59113190300015],[13.149668816000059,54.59137604400008],[13.149668816000059,54.57770416900014],[13.143402540000125,54.57770416900014],[13.143402540000125,54.598130601000136],[13.11890709700009,54.58641185100005],[13.11312910200013,54.57005442900014],[13.112152540000068,54.55068594000004],[13.102549675000063,54.52993398600002],[13.095225457000083,54.524359442],[13.081065300000148,54.517157294000164],[13.075043165000125,54.50942617400007],[13.071462436000076,54.49966054900012],[13.069590691000085,54.48965078300013],[13.06820722700013,54.468451239000146],[13.061371290000096,54.468451239000146],[13.061371290000096,54.48212311400009],[13.064219597000147,54.50511302300007],[13.095550977000102,54.57078685100008],[13.102305535000113,54.596096096],[13.109629754000139,54.603094794000086],[13.125987175000148,54.605617580000015],[13.139821811000047,54.60602448100011],[13.151052280000044,54.604925848000065],[13.15723717500012,54.599066473000114]]],[[[13.390879754000139,54.650539455],[13.38298587300008,54.6363792990001],[13.385996941000085,54.61863841399999],[13.394541863000086,54.60443756700009],[13.40772545700014,54.59341054900012],[13.424571160000141,54.58515045800014],[13.466319207000083,54.57689036700005],[13.595957879000082,54.59137604400008],[13.640472852000073,54.58567942900011],[13.670664910000085,54.56622955900012],[13.677256707000083,54.54047272300009],[13.651133660000113,54.516262111000074],[13.60678144600007,54.49896881700009],[13.584808790000068,54.486517645000056],[13.575450066000114,54.47186920800006],[13.579112175000091,54.45506419500004],[13.587901238000143,54.43756745000009],[13.59913170700014,54.42267487200006],[13.609548373000052,54.413804429],[13.630056186000104,54.40753815300006],[13.67741946700005,54.400824286],[13.69825280000012,54.392075914000124],[13.724864129000137,54.36359284100011],[13.74195397200009,54.35049062700012],[13.766449415000123,54.34491608300014],[13.753103061000104,54.33930084800012],[13.740082227000128,54.32982005400014],[13.73015384200005,54.316839911000116],[13.72624759200005,54.30052317900011],[13.72624759200005,54.28465403899999],[13.723155144000145,54.27838776200004],[13.712738477000073,54.278998114],[13.690928582000112,54.283514716000134],[13.702647332000083,54.283514716000134],[13.711924675000148,54.286566473000114],[13.715993686000102,54.293280341000084],[13.711924675000148,54.303941148000106],[13.705088738000114,54.303941148000106],[13.694834832000112,54.297430731000034],[13.679453972000147,54.29401276200012],[13.663340691000087,54.29389069200015],[13.651133660000113,54.297186591000084],[13.651133660000113,54.303941148000106],[13.688243035000113,54.313299872000144],[13.70362389400006,54.3204613300001],[13.711924675000148,54.33185455900015],[13.65992272200009,54.329779364000146],[13.636729363000141,54.32550690300003],[13.616953972000118,54.31761302300005],[13.672129754000139,54.34031810100002],[13.690928582000112,54.34491608300014],[13.690928582000112,54.35175202000014],[13.664073113000114,54.35325755400011],[13.650075717000078,54.35244375200009],[13.640310092000107,54.34833405200014],[13.626800977000128,54.33909739799999],[13.618337436000104,54.34137604400014],[13.610606316000085,54.34796784100003],[13.599294467000107,54.35175202000014],[13.499685092000078,54.34491608300014],[13.481781446000099,54.33828359600007],[13.428884311000047,54.31093984600001],[13.417735222000116,54.30052317900011],[13.40609785200013,54.285223700000145],[13.381602410000085,54.28221263200005],[13.359629754000082,54.27545807500011],[13.35572350400008,54.248724677],[13.36939537900011,54.25556061400012],[13.369639519000145,54.26064687700012],[13.367523634000065,54.26194896000014],[13.364756707000083,54.26203034100003],[13.363129102000073,54.26300690300009],[13.410899285000113,54.26788971600014],[13.417735222000116,54.26605866100009],[13.425059441000144,54.24323151200015],[13.423024936000102,54.232733466000084],[13.407237175000148,54.228216864000146],[13.378672722000061,54.230861721000124],[13.347015821000099,54.237453518],[13.31153405000012,54.25112539300012],[13.319509311000076,54.25641510600012],[13.324880405000016,54.268215236000074],[13.335215691000116,54.283514716000134],[13.320567254000109,54.27838776200004],[13.31397545700014,54.274400132000046],[13.307871941000144,54.269191799000154],[13.311859571000127,54.26642487200009],[13.314707879000082,54.26300690300009],[13.294688347000118,54.26410553600014],[13.28419030000012,54.26284414300012],[13.27686608200014,54.25926341400007],[13.267914259000094,54.256496486000096],[13.25798587300011,54.260443427],[13.248789910000113,54.26626211100013],[13.24244225400011,54.269191799000154],[13.227793816000085,54.270819403000175],[13.210134311000074,54.275824286000116],[13.199229363000086,54.284409898000135],[13.204844597000088,54.297186591000084],[13.190277540000068,54.29975006700008],[13.15967858200014,54.29096100500011],[13.149668816000059,54.29026927299999],[13.142832879000139,54.298000393000095],[13.148936394000145,54.30475495000003],[13.16228274800005,54.30768463700015],[13.177500847000118,54.303941148000106],[13.177500847000118,54.31020742400007],[13.115489129000082,54.33808014500012],[13.129242384000094,54.35956452000015],[13.148936394000145,54.377264716000134],[13.174327019000144,54.38397858299999],[13.204844597000088,54.37225983300003],[13.211680535000113,54.37909577000012],[13.223317905000043,54.37250397300015],[13.237152540000123,54.37396881700003],[13.266856316000144,54.38589101800015],[13.251149936000076,54.38690827000012],[13.23926842500012,54.39362213700015],[13.234385613000143,54.403387762000094],[13.239024285000085,54.413804429],[13.239024285000085,54.42007070500012],[13.225352410000141,54.42084381700006],[13.217946811000076,54.42568594000015],[13.211599155000043,54.43109772300009],[13.201426629000082,54.43366120000009],[13.156993035000085,54.42682526200018],[13.174327019000144,54.44765859600015],[13.181813998000024,54.45302969000004],[13.208832227000073,54.45693594],[13.239024285000085,54.46625397300015],[13.259532097000147,54.468451239000146],[13.259532097000147,54.475287177000055],[13.260752800000148,54.47549062700001],[13.266856316000144,54.477484442000055],[13.273122592000105,54.48212311400009],[13.245371941000116,54.48834870000005],[13.233246290000125,54.493068752000156],[13.225352410000141,54.50193919500002],[13.228770379000053,54.50429922100015],[13.231944207000112,54.50600820500016],[13.233653191000116,54.509222723],[13.232758009000122,54.516262111000074],[13.203298373000052,54.50946686400006],[13.185394727000102,54.508286851000136],[13.177500847000118,54.512844143000066],[13.17530358200014,54.51601797100012],[13.170664910000113,54.51679108300006],[13.166026238000084,54.51911041900002],[13.16382897200009,54.52680084800015],[13.162608269000089,54.535467841000056],[13.158864780000044,54.540676174000126],[13.152354363000141,54.542954820000105],[13.143402540000125,54.54291413000011],[13.166351759000094,54.54938385600012],[13.242930535000085,54.55597565300008],[13.259532097000147,54.55377838700009],[13.264903191000087,54.54779694200008],[13.276540561000102,54.545070705000015],[13.288259311000104,54.53994375200001],[13.293630405000044,54.52680084800015],[13.297862175000063,54.5196800800001],[13.305511915000094,54.52342357000013],[13.309255405000044,54.5348167990001],[13.301036004000139,54.550360419000086],[13.315440300000091,54.561957098],[13.333669467000078,54.57306549700003],[13.35254967500012,54.5814476580001],[13.36939537900011,54.58515045800014],[13.358246290000096,54.56476471600014],[13.350759311000047,54.55597565300008],[13.342051629000137,54.550360419000086],[13.348399285000085,54.55048248900006],[13.353851759000122,54.54987213700009],[13.358653191000116,54.54755280200013],[13.363129102000073,54.54291413000011],[13.358083530000043,54.53815338700012],[13.348887566000142,54.52366771000008],[13.363291863000114,54.523138739],[13.374847852000073,54.52558014500011],[13.383799675000091,54.53188711100016],[13.389821811000104,54.54291413000011],[13.381358269000145,54.544378973000065],[13.371836785000141,54.54889557500003],[13.363129102000073,54.550360419000086],[13.363129102000073,54.55719635600012],[13.376719597000118,54.56464264500009],[13.387868686000047,54.55125560099999],[13.405528191000142,54.538234768],[13.417328321000127,54.524562893000066],[13.410899285000113,54.50942617400007],[13.43067467500012,54.49274323100003],[13.455577019000089,54.48749420800014],[13.507090691000142,54.48826732000008],[13.499685092000078,54.495754299000126],[13.50928795700014,54.50897858300005],[13.514170769000115,54.513128973],[13.520762566000085,54.516262111000074],[13.520762566000085,54.52366771000008],[13.512950066000087,54.53754303600006],[13.50749759200005,54.54466380400011],[13.499685092000078,54.550360419000086],[13.499685092000078,54.55719635600012],[13.505544467000107,54.55971914300012],[13.508799675000148,54.56183502800003],[13.512868686000102,54.56354401200004],[13.520762566000085,54.56464264500009],[13.520762566000085,54.57078685100008],[13.50831139400006,54.570379950000145],[13.500254754000139,54.56606679900015],[13.49390709700009,54.56073639500009],[13.48658287900011,54.55719635600012],[13.475759311000104,54.55609772300006],[13.441416863000143,54.55719635600012],[13.436045769000087,54.56037018400017],[13.43067467500012,54.56745026200004],[13.423838738000113,54.574530341000084],[13.41431725400011,54.57770416900014],[13.399261915000096,54.579575914000124],[13.393077019000145,54.58454010600017],[13.38965905000012,54.59105052300007],[13.38298587300008,54.598130601000136],[13.371348504000082,54.60809967700011],[13.369151238000084,54.61212799700009],[13.35572350400008,54.605617580000015],[13.347911004000082,54.600816148000106],[13.331797722000118,54.58783600500011],[13.308360222000147,54.579575914000124],[13.291351759000094,54.568793036000116],[13.273285352000073,54.560939846000124],[13.253265821000099,54.56464264500009],[13.249766472000088,54.57648346600014],[13.256846550000148,54.594916083000086],[13.269867384000065,54.61180247600008],[13.283946160000085,54.61928945500013],[13.286957227000102,54.623521226000044],[13.29127037900011,54.632961330000064],[13.293467644000089,54.64227936400012],[13.290537957000083,54.64655182500003],[13.245860222000118,54.639797268000095],[13.231211785000085,54.63385651200015],[13.22478274800008,54.634955145000035],[13.225352410000141,54.64655182500003],[13.230967644000144,54.653306382000075],[13.241547071000099,54.65997955900012],[13.253591342000107,54.66502513200005],[13.39079837300008,54.688177802],[13.418711785000111,54.68842194200015],[13.44507897200009,54.68008047100007],[13.44507897200009,54.67389557500009],[13.429698113000143,54.666734117000075],[13.409027540000038,54.65981679900015],[13.390879754000139,54.650539455]]],[[[8.36068769600007,54.71002838700004],[8.359141472000118,54.70892975499999],[8.356293165000068,54.70917389500011],[8.353526238000113,54.70799388200011],[8.342458530000071,54.70140208500013],[8.332367384000094,54.693793036],[8.38233483200014,54.63914622600005],[8.40137780000012,54.632961330000064],[8.387705925000091,54.62612539300015],[8.35368899800008,54.61896393400012],[8.33025149800011,54.631415106000034],[8.311371290000068,54.6513532570001],[8.291514519000145,54.66705963700018],[8.320485873000052,54.698716539000074],[8.338389519000117,54.71015045800011],[8.36036217500012,54.71482982000013],[8.36068769600007,54.71002838700004]]],[[[8.574066602000073,54.69440338700015],[8.565765821000099,54.687567450000024],[8.55209394600007,54.68500397300012],[8.535166863000084,54.68618398600016],[8.519867384000122,54.68960195500007],[8.511241082000112,54.693793036],[8.485199415000125,54.688055731000034],[8.45281009200005,54.69383372599999],[8.394541863000114,54.71482982000013],[8.414235873000052,54.73578522300009],[8.436778191000142,54.748480536000145],[8.464121941000116,54.75478750200007],[8.497569207000083,54.75641510600009],[8.553233269000089,54.75446198100015],[8.575938347000147,54.74640534100003],[8.593760613000114,54.72850169500008],[8.593760613000114,54.72166575700005],[8.58545983200014,54.713609117000104],[8.574066602000073,54.69440338700015]]],[[[8.904138224000093,54.8979422],[8.982686401000109,54.87933868400013],[9.194766480000055,54.85039988199999],[9.211509644000103,54.84182159400014],[9.216057169000123,54.83174469],[9.219054403000143,54.81779205400012],[9.226392456000042,54.80590647399999],[9.244065796000143,54.80177236000016],[9.31703291800008,54.80161733000013],[9.332019084000137,54.80321930000015],[9.341734253000084,54.80905873600015],[9.355996948000069,54.81133249900016],[9.366952352000112,54.81701690700011],[9.385039103000054,54.819394023000065],[9.405192911000114,54.808386943000144],[9.422142781000018,54.80725006100006],[9.436922241000048,54.81014394200004],[9.437503026532056,54.81041112705874],[9.437510613000143,54.810410874000105],[9.451426629000139,54.81037018400012],[9.510996941000144,54.82782623900009],[9.529958530000073,54.84149811400012],[9.554372592000107,54.847113348000036],[9.566905144000117,54.86017487200009],[9.579925977000102,54.86627838700018],[9.583181186000047,54.83026764500003],[9.63160241000014,54.819891669000114],[9.693044467000107,54.81801992400015],[9.734629754000082,54.80731842700011],[9.752126498000052,54.799627997000115],[9.77808678500014,54.79315827],[9.801768425000148,54.78339264500006],[9.81218509200005,54.76605866100009],[9.823741082000083,54.75674062700012],[9.84986412900011,54.75934479400003],[9.895355665000096,54.769476630000085],[9.891449415000096,54.79026927300008],[9.91504967500012,54.79120514500015],[9.94752037900011,54.779527085000055],[9.970469597000118,54.76264069200006],[9.984141472000147,54.72850169500008],[9.990489129000082,54.72052643400012],[9.999522332000083,54.712958075000145],[10.018239780000073,54.701239325000174],[10.00538170700014,54.69550202],[9.992198113000086,54.696478583000086],[9.979828321000127,54.69977448100011],[9.970469597000118,54.701239325000174],[9.971039259000092,54.69904205900018],[9.946299675000091,54.687648830000015],[9.943125847000147,54.687567450000024],[9.936696811000047,54.68500397300012],[9.932383660000113,54.68524811400009],[9.92994225400008,54.68309153899999],[9.92945397200009,54.67389557500009],[9.944102410000113,54.67332591400013],[9.970225457000083,54.67792389500006],[9.99634850400011,54.67877838700014],[10.01140384200005,54.66705963700018],[10.022146030000044,54.672430731000034],[10.033539259000122,54.67291901200004],[10.039073113000143,54.66681549700006],[10.0319116550001,54.652777411],[10.03695722700013,54.63890208499999],[10.037608269000089,54.61908600499999],[10.0319116550001,54.57770416900014],[10.02686608200014,54.55996328300007],[10.020030144000145,54.54584381700011],[10.010427280000071,54.534328518],[9.99781334700009,54.52366771000008],[9.965586785000141,54.50617096600003],[9.925303582000055,54.49310944200015],[9.882009311000076,54.48484935100005],[9.840098504000082,54.48212311400009],[9.840098504000082,54.475287177000055],[9.883311394000089,54.46210358300011],[10.124685092000107,54.495754299000126],[10.143402540000096,54.491848049000126],[10.203868035000085,54.461004950000174],[10.18392988400012,54.44936758000016],[10.183848504000139,54.438421942],[10.191742384000094,54.42617422100012],[10.19703209700009,54.41010163000006],[10.191254102000102,54.396714585000055],[10.177093946000099,54.38426341400013],[10.159027540000068,54.375311591000106],[10.141774936000076,54.37225983300003],[10.144379102000073,54.37002187700013],[10.14779707100007,54.36831289300012],[10.148285352000071,54.365179755000135],[10.141774936000076,54.358587958000086],[10.152517123000079,54.35179271000014],[10.155528191000087,54.34341054900009],[10.151621941000085,54.33397044500008],[10.141774936000076,54.32440827000009],[10.163747592000078,54.32916901200018],[10.180349155000043,54.34113190300012],[10.203868035000085,54.37225983300003],[10.21713300900012,54.40542226800012],[10.224375847000147,54.413804429],[10.234385613000141,54.417710679],[10.272146030000101,54.42007070500012],[10.285817905000044,54.42475006700006],[10.292491082000083,54.43016185100011],[10.297618035000111,54.43573639500011],[10.306895379000139,54.44110748900009],[10.318369988000086,54.44330475500005],[10.360850457000083,54.44110748900009],[10.382823113000086,54.43475983300014],[10.443369988000086,54.40639883],[10.601084832000083,54.36542389500009],[10.690196160000141,54.31622955900017],[10.731293165000125,54.31020742400007],[10.777110222000118,54.315130927000105],[10.810801629000139,54.327378647999986],[10.867930535000113,54.358587958000086],[10.900889519000087,54.37103913],[10.935313347000118,54.37954336100002],[11.018809441000085,54.38589101800015],[11.018809441000085,54.37909577000012],[11.000824415000068,54.378566799000154],[10.975840691000144,54.37840403899999],[10.99317467500012,54.37384674700006],[11.010508660000113,54.37718333500008],[11.033946160000085,54.36762116100009],[11.104177280000043,54.39288971600003],[11.135508660000085,54.38589101800015],[11.098399285000085,54.361517645],[11.08773847700013,54.35175202000014],[11.081797722000118,54.354641018000095],[11.06657962300005,54.358587958000086],[11.077403191000144,54.34223053600006],[11.086599155000101,54.30243561400006],[11.094493035000085,54.283514716000134],[11.087087436000104,54.27090078300016],[11.08773847700013,54.2538923200001],[11.094493035000085,54.22508372600008],[11.090179884000094,54.20799388200011],[11.080577019000117,54.198879299000126],[11.070974155000043,54.192572333],[11.06657962300005,54.183905341000084],[10.950450066000114,54.13947174700017],[10.91032962300011,54.10919830900018],[10.892832879000139,54.10252513200014],[10.852386915000125,54.09430573100003],[10.844574415000125,54.09446849200002],[10.83611087300008,54.08999258000013],[10.829356316000144,54.09284088700014],[10.822276238000086,54.09735748900012],[10.813324415000068,54.09788646000002],[10.805430535000085,54.094875393],[10.801442905000101,54.092230536000116],[10.762868686000047,54.056830145],[10.7526147800001,54.05011627800015],[10.7526147800001,54.043890692],[10.765879754000139,54.02435944200011],[10.780446811000076,54.00995514500014],[10.799652540000125,54.00055573100003],[10.826914910000113,53.99542877800012],[10.865570509000065,53.99778880400007],[10.875498894000144,53.99542877800012],[10.882578972000118,53.985052802000105],[10.883555535000111,53.97313060100008],[10.8873804050001,53.96393463700009],[10.902110222000118,53.961371161],[10.906016472000088,53.961208401000036],[10.917653842000107,53.960760809000035],[10.922618035000141,53.961371161],[10.9353947270001,53.96727122600013],[10.96469160200013,53.98541901200003],[10.981211785000113,53.98924388200005],[11.00025475400008,53.9916039080001],[11.053477410000085,54.008490302],[11.175059441000142,54.018011786],[11.18384850400011,54.01601797100015],[11.190765821000099,54.01032135600015],[11.197276238000086,53.99624258000012],[11.204356316000144,53.98924388200005],[11.23991946700005,53.98346588700017],[11.245371941000059,53.97842031500015],[11.240733269000145,53.955633856000034],[11.24293053500014,53.945217190000115],[11.255625847000088,53.94086334800015],[11.28541100400011,53.93968333500011],[11.293711785000085,53.94086334800015],[11.334157748000107,53.961371161],[11.341807488000143,53.95831940300009],[11.352061394000087,53.94415924700017],[11.358246290000038,53.94086334800015],[11.399912957000112,53.94086334800015],[11.400401238000086,53.93773021000008],[11.438731316000116,53.90912506700009],[11.446299675000148,53.90615469000006],[11.457692905000044,53.90615469000006],[11.458994988000114,53.91669342700014],[11.469086134000092,53.93276601800004],[11.47681725400011,53.95270416900011],[11.472422722000118,53.968817450000174],[11.479828321000099,53.97614166900017],[11.489512566000059,53.98061758000013],[11.497894727000128,53.98183828300016],[11.495941602000073,53.98631419500013],[11.493500196000127,53.997626044000114],[11.49170983200014,54.00234609600001],[11.525889519000145,54.02277252800009],[11.525889519000145,54.03021881700006],[11.51905358200014,54.03021881700006],[11.51905358200014,54.03644440300003],[11.544606967000107,54.03017812700007],[11.553233269000115,54.03021881700006],[11.573496941000116,54.039048570000105],[11.591319207000112,54.065619208000086],[11.604746941000085,54.07123444200006],[11.61280358200014,54.072902736000074],[11.61939537900011,54.077297268000066],[11.624522332000112,54.083644924],[11.628916863000114,54.09105052299999],[11.629567905000073,54.096014716000056],[11.622080925000091,54.09955475500011],[11.622080925000091,54.104681708000115],[11.625254754000139,54.10980866100014],[11.629405144000089,54.11322663000006],[11.633148634000122,54.11591217700013],[11.657888217000107,54.142238674000126],[11.689707879000139,54.15521881700012],[11.72877037900011,54.15851471600017],[11.81226647200009,54.1498070330001],[12.0506291020001,54.17991771000011],[12.088145379000139,54.19407786700005],[12.09327233200014,54.16543203300007],[12.089528842000107,54.137640692],[12.09164472700013,54.11399974199999],[12.115000847000118,54.09788646000002],[12.105316602000073,54.1100121110001],[12.100352410000113,54.13597239799999],[12.095062696000127,54.14569733300014],[12.105479363000113,54.15737539300012],[12.13428795700014,54.16697825700011],[12.142832879000082,54.18048737200009],[12.131602410000085,54.181138414000046],[12.120860222000147,54.17999909100011],[12.110606316000114,54.177435614],[12.10132897200009,54.17365143400015],[12.108897332000112,54.183010158000016],[12.142832879000082,54.20917389500015],[12.163096550000091,54.21991608300006],[12.186859571000099,54.24335358300014],[12.200938347000116,54.248724677],[12.214040561000104,54.250962632000075],[12.289398634000065,54.275091864],[12.327321811000076,54.29376862200017],[12.342133009000065,54.303941148000106],[12.378184441000116,54.34491608300014],[12.438324415000094,54.39581940300015],[12.444834832000083,54.405462958000115],[12.486094597000118,54.44733307500003],[12.501963738000143,54.47357819200006],[12.513438347000118,54.48224518400015],[12.533864780000071,54.48826732000008],[12.533864780000071,54.48212311400009],[12.527028842000078,54.48212311400009],[12.548350457000112,54.46206289300012],[12.59148196700005,54.45172760600011],[12.819102410000085,54.45172760600011],[12.856618686000076,54.44110748900009],[12.879649285000141,54.448797919000086],[12.90837649800011,54.44464752800014],[12.921153191000142,54.43349844000012],[12.8963322270001,54.42007070500012],[12.870778842000107,54.41681549700009],[12.763682488000086,54.42218659100014],[12.720957879000082,54.431586005000085],[12.694590691000087,54.43366120000009],[12.686778191000085,54.43162669500007],[12.676117384000063,54.422552802000084],[12.670420769000087,54.42007070500012],[12.650075717000078,54.42007070500012],[12.624196811000074,54.42291901200018],[12.614512566000116,54.41974518400012],[12.60840905000012,54.40639883],[12.602224155000071,54.413804429],[12.596934441000085,54.41193268400003],[12.58806399800005,54.40745677300008],[12.581716342000107,54.40639883],[12.583506707000081,54.39785390800007],[12.587657097000118,54.394029039000074],[12.594004754000053,54.392767645000056],[12.602224155000071,54.392075914000124],[12.598643425000091,54.39154694200015],[12.595876498000024,54.39150625200015],[12.594411655000073,54.39020416900014],[12.594737175000091,54.38589101800015],[12.575531446000127,54.39199453300013],[12.554047071000099,54.390814520000035],[12.535980665000096,54.38373444200015],[12.527028842000078,54.37225983300003],[12.51075280000012,54.38426341400013],[12.490977410000113,54.39008209800009],[12.454763217000078,54.392075914000124],[12.438487175000148,54.38751862200017],[12.424978061000076,54.37592194200006],[12.418467644000089,54.36066315300009],[12.42400149800011,54.34491608300014],[12.409678582000112,54.34662506700014],[12.403819207000083,54.348089911],[12.396739129000109,54.35175202000014],[12.389903191000087,54.34491608300014],[12.396494988000086,54.332953192],[12.391612175000091,54.321112372000144],[12.37907962300011,54.31244538000006],[12.362559441000116,54.31020742400007],[12.369639519000089,54.29657623900011],[12.377940300000148,54.285874742000104],[12.380137566000142,54.27708567900014],[12.368825717000078,54.269191799000154],[12.412445509000094,54.251410223000065],[12.436778191000142,54.247707424000126],[12.458181186000104,54.25556061400012],[12.442637566000087,54.25519440300009],[12.430837436000019,54.258612372000115],[12.41032962300008,54.269191799000154],[12.416840040000066,54.280951239000146],[12.426280144000089,54.289618231000034],[12.451426629000137,54.303941148000106],[12.45728600400011,54.30630117400006],[12.46827233200014,54.308335679000024],[12.472422722000088,54.31020742400007],[12.475596550000148,54.315130927000105],[12.476573113000141,54.327785549],[12.478688998000052,54.33185455900015],[12.49561608200014,54.340277411000024],[12.560557488000114,54.358587958000086],[12.547048373000024,54.364488023000106],[12.54078209700009,54.36542389500009],[12.54078209700009,54.37225983300003],[12.559336785000085,54.376288153000175],[12.566091342000107,54.37592194200006],[12.574229363000143,54.37225983300003],[12.574229363000143,54.37909577000012],[12.592946811000104,54.369330145000085],[12.622731967000107,54.373928127000035],[12.677256707000083,54.392075914000124],[12.675059441000114,54.39541250200015],[12.672373894000117,54.4029808610001],[12.670420769000087,54.40639883],[12.680837436000076,54.410874742000075],[12.692556186000045,54.41364166900003],[12.704844597000118,54.41461823100009],[12.717539910000085,54.413804429],[12.717539910000085,54.40639883],[12.70248457100007,54.404120184000035],[12.692393425000091,54.39618561400006],[12.686534050000148,54.384751695000105],[12.684092644000117,54.37225983300003],[12.696625196000099,54.38495514500006],[12.701182488000141,54.39166901200012],[12.704600457000083,54.39960358300008],[12.7135522800001,54.39008209800009],[12.723806186000019,54.381252346000124],[12.735036655000044,54.37815989800005],[12.746104363000143,54.38589101800015],[12.757823113000141,54.37978750200006],[12.768565300000148,54.38007233299999],[12.778330925000091,54.384751695000105],[12.787119988000086,54.392075914000124],[12.789886915000125,54.38434479400011],[12.794688347000118,54.377142645000085],[12.800954623000079,54.370754299000154],[12.818044467000107,54.35797760600011],[12.82178795700014,54.35614655200014],[12.825368686000102,54.35724518400018],[12.835459832000083,54.358587958000086],[12.854665561000047,54.35785553600014],[12.864756707000112,54.35956452000015],[12.875987175000091,54.36542389500009],[12.884532097000118,54.373480536000116],[12.894867384000122,54.38971588700015],[12.903819207000055,54.39960358300008],[12.92937259200005,54.41437409100014],[12.969086134000063,54.42938873900009],[13.008799675000148,54.438055731000176],[13.034190300000091,54.43366120000009],[13.021494988000114,54.426459052000055],[13.02100670700014,54.4145368510001],[13.028575066000087,54.401841539000074],[13.04037519600007,54.392075914000124],[13.08366946700005,54.378973700000145],[13.095550977000102,54.37225983300003],[13.076670769000145,54.35252513200008],[13.080739780000016,54.337144273000135],[13.109222852000128,54.31020742400007],[13.112071160000085,54.29930247599999],[13.112071160000085,54.2884789080001],[13.114919467000107,54.28001536700005],[13.125987175000148,54.27659739800004],[13.170664910000113,54.27659739800004],[13.170664910000113,54.269191799000154],[13.161306186000076,54.2690290390001],[13.154633009000122,54.267320054],[13.143402540000125,54.26300690300009],[13.176117384000065,54.26483795800005],[13.228363477000073,54.24738190300012],[13.263194207000083,54.24249909100005],[13.288828972000147,54.23427969000012],[13.32178795700014,54.194525458000136],[13.348887566000142,54.18048737200009],[13.33334394600007,54.17401764500009],[13.321543816000087,54.166815497000144],[13.346527540000096,54.16693756700012],[13.383799675000091,54.17812734600012],[13.403493686000045,54.17365143400015],[13.395681186000047,54.16193268400018],[13.390879754000139,54.15729401200015],[13.38298587300008,54.153143622000115],[13.394786004000139,54.14891185099999],[13.402110222000147,54.15131256700015],[13.408702019000117,54.15460846600017],[13.417735222000116,54.153143622000115],[13.42318769600007,54.1480980490001],[13.43767337300011,54.125189520000085],[13.450368686000076,54.110419012000094],[13.465098504000082,54.09845612200017],[13.483571811000104,54.09129466400013],[13.507090691000142,54.09105052299999],[13.507090691000142,54.09788646000002],[13.498871290000066,54.10248444200015],[13.487478061000104,54.1139183610001],[13.479258660000085,54.11835358300006],[13.479258660000085,54.125189520000085],[13.602712436000019,54.13947174700017],[13.632334832000083,54.14752838700012],[13.683441602000128,54.16803620000017],[13.711924675000148,54.17365143400015],[13.716481967000107,54.16844310100007],[13.714691602000102,54.164048569999984],[13.708262566000087,54.16087474200013],[13.69825280000012,54.159328518000095],[13.69825280000012,54.153143622000115],[13.728770379000139,54.14386627800015],[13.808116082000083,54.104681708000115],[13.808116082000083,54.09788646000002],[13.793711785000113,54.083197333],[13.785492384000122,54.06391022300006],[13.773203972000147,54.04633209800012],[13.746104363000143,54.03644440300003],[13.758148634000063,54.030991929],[13.787119988000143,54.00910065300014],[13.797618035000113,53.998928127],[13.803477410000141,53.99632396000011],[13.831797722000118,53.98924388200005],[13.838633660000113,53.98631419500013],[13.843109571000099,53.97955963700017],[13.846202019000089,53.972235419000086],[13.849131707000083,53.967596747000144],[13.850271030000044,53.964016018000095],[13.848968946000127,53.959458726000136],[13.84864342500012,53.95555247600005],[13.85254967500009,53.95384349200004],[13.866872592000078,53.954657294000135],[13.87012780000012,53.95384349200004],[13.875498894000087,53.95123932500006],[13.881602410000085,53.94904205900015],[13.887950066000116,53.947577216000084],[13.89356530000012,53.94708893400009],[13.906016472000118,53.94306061400012],[13.90756269600007,53.93353913000014],[13.901377800000091,53.92230866100014],[13.890147332000112,53.912909247000115],[13.81853274800008,53.877997137000094],[13.808116082000083,53.865139065000065],[13.8170679050001,53.8529320330001],[13.835785352000073,53.84747955900015],[13.854340040000096,53.84491608300014],[13.86280358200014,53.841253973],[13.869151238000143,53.83030833500011],[13.883799675000063,53.81769440300015],[13.89991295700014,53.809149481000034],[13.910655144000145,53.81049225500011],[13.98422285200013,53.77399323100014],[14.017344597000147,53.76951732000002],[14.033539259000122,53.75751373900009],[14.03744550900012,53.755275783000094],[14.061534050000148,53.75641510600003],[14.068858269000145,53.755275783000094],[14.09400475400011,53.746323960000055],[14.106130405000016,53.74335358300005],[14.18653405000012,53.73981354400017],[14.2146916020001,53.7448591170001],[14.226573113000143,53.75869375200001],[14.23414147200009,53.76178620000009],[14.25017337300008,53.759955145],[14.264496290000066,53.751613674000126],[14.267425977000102,53.73541901200017],[14.259532097000118,53.727972723],[14.212738477000128,53.70807526200012],[14.225352410000113,53.70376211100002],[14.240000847000147,53.700751044000114],[14.256195509000094,53.69944896000011],[14.263900720266179,53.699976159552655],[14.263862752000136,53.69987579400008],[14.265102986000102,53.671763815000034],[14.260968872000149,53.65620920900001],[14.276058390000058,53.63662384100009],[14.297039022000149,53.59776316400002],[14.298899373000069,53.58789296500005],[14.296212199000138,53.55130605100011],[14.296935669000048,53.529136862000186],[14.304170370000092,53.50851796500008],[14.328458293000097,53.486090394000186],[14.338896932000123,53.46521311500011],[14.359877564000042,53.44407745400015],[14.370316202000083,53.392297669000115],[14.391260511000096,53.33401700300011],[14.398014770000088,53.31522227000006],[14.399565064000114,53.30674733500014],[14.400185180000081,53.28860890800003],[14.403285767000026,53.27879038500007],[14.409383586000105,53.27243418400003],[14.424679810000043,53.26465688100002],[14.428607219000098,53.25907582700002],[14.44162968000006,53.251841126000144],[14.415584757000088,53.22099029600015],[14.408246704000078,53.21440155100008],[14.397704712000118,53.210990906000134],[14.387782837000117,53.20207672200003],[14.380651489000085,53.189855245],[14.377860962000112,53.176548564000186],[14.381478312000096,53.16029632600007],[14.387472779000118,53.14613698400002],[14.38953983500011,53.13166758300018],[14.359567505000141,53.075056051],[14.356776977000093,53.06668446900012],[14.343341105000064,53.04862355500002],[14.312645305000103,53.029219055000155],[14.253734172000094,53.00087453300016],[14.192859334000076,52.98165090000013],[14.14449019300011,52.959920960000126],[14.14449019300011,52.95369395000013],[14.150484660000131,52.943642884],[14.162680298000055,52.90816701300015],[14.164954061000088,52.89566131700015],[14.16081994600006,52.876747742000035],[14.150484660000131,52.86462961900004],[14.123922973000047,52.85065114400014],[14.13539514200005,52.83659515400002],[14.15275842300008,52.82832692500007],[14.173739054000064,52.824347839],[14.195959920000092,52.823365987000116],[14.216010375000053,52.817991639000134],[14.248669882000115,52.794582215],[14.27595503700013,52.78571970600008],[14.382201782000095,52.73815155100006],[14.397704712000118,52.727118633000075],[14.431914510000098,52.686087546000024],[14.442353149000041,52.679963888000074],[14.461370076000035,52.67456370100008],[14.490102173000109,52.6506375120001],[14.549943481000069,52.63619395000016],[14.60796482800009,52.596462963000036],[14.613712199000105,52.592527364000105],[14.644821411000066,52.57692108200014],[14.616812785000063,52.54103180000011],[14.609061320000139,52.5178032430001],[14.627664836000092,52.50741628000016],[14.632315715000061,52.496745098000176],[14.615779256000081,52.47328399700011],[14.591594686000093,52.44979705900012],[14.539814901000113,52.42186594700003],[14.54539595600005,52.38215260800014],[14.569167114000095,52.338511861000185],[14.5901477460001,52.309418030000174],[14.584153280000066,52.29122792600013],[14.606580851000073,52.275750835000125],[14.640480590000095,52.26505381300002],[14.668902628000096,52.260997213000124],[14.696911255000117,52.25347829300007],[14.712414184000124,52.23590830500011],[14.712104126000042,52.215444438000056],[14.69257043500005,52.19957977300014],[14.69257043500005,52.193378601000134],[14.707039836000147,52.179451803000156],[14.703215780000022,52.16516327000009],[14.692467082000093,52.14697316500003],[14.686369263000133,52.121031596000094],[14.696394491000063,52.106691386000094],[14.761403443000118,52.07666737900006],[14.74300663300005,52.062533875],[14.735358520000146,52.054033102000076],[14.732154582000078,52.04506724100007],[14.730294230000082,52.03589467400015],[14.726056762000042,52.026437887],[14.704456014000073,52.00222747800002],[14.699081665000108,51.99251230900007],[14.695567667000148,51.931456604000076],[14.687092733000041,51.91189707400015],[14.671693156000062,51.89388783800017],[14.653296346000076,51.87861745300004],[14.59593550700009,51.84241811200008],[14.582809693000115,51.82508066800007],[14.585806925000043,51.80389333200013],[14.602240031000093,51.78831288700009],[14.620326782000092,51.78053558400008],[14.634176066000066,51.76901173900013],[14.638103475000035,51.74263092100007],[14.648438761000138,51.71720611600007],[14.670969686000149,51.700773011000095],[14.719545532000069,51.675632426000064],[14.732464640000074,51.65834665900017],[14.742283162000149,51.63297353200009],[14.743936808000086,51.60664439000011],[14.732154582000078,51.58661977200008],[14.71272424300011,51.56742197700008],[14.704559367000085,51.547991638],[14.706769960000116,51.540828064000046],[14.710037068000075,51.53024078400007],[14.732154582000078,51.51582305900014],[14.79747359200013,51.50210296600012],[14.818557576000075,51.49269785600016],[14.818557576000075,51.49259450400013],[14.841398559000082,51.48442962700012],[14.888320760000113,51.47574798700007],[14.910955038000083,51.46897837300013],[14.926561320000102,51.46133026100012],[14.945061483000133,51.449186300000136],[14.95539676900006,51.43541453000002],[14.946921835000126,51.42290883400001],[14.950647846000065,51.39653937700011],[14.95663700400007,51.35415334100013],[14.95663700400007,51.35322316500016],[14.960977824000054,51.33529144300009],[14.963768352000017,51.32839263900003],[14.982268514000054,51.308006287000076],[15.00490279200011,51.29128896100006],[15.019475545000148,51.271677755000105],[15.01430790100005,51.24266143900003],[15.017925252000053,51.23956085200008],[15.022059367000054,51.23677032500005],[15.00490279200011,51.21560882600009],[14.991363566000103,51.18896962500004],[14.983198690000107,51.16090932300004],[14.982061808000083,51.13563954700005],[14.97999475100005,51.12279795400015],[14.973380168000121,51.11613169400006],[14.96562870300002,51.111506653],[14.960254354000055,51.10458201100012],[14.958497355000075,51.09473765100013],[14.958290649000046,51.0755140180001],[14.955293417000123,51.064041850000095],[14.910644979000095,50.9926508590001],[14.860208781000097,50.916841533000095],[14.824655395000036,50.891830139000106],[14.810496053000065,50.877050680000096],[14.810392700000136,50.85844716400014],[14.794579712000141,50.83162709600005],[14.785071248000065,50.82005157500011],[14.77535607900012,50.812971904000094],[14.759233032000052,50.810181376000045],[14.73752893100004,50.81069814100006],[14.700425252000061,50.815969137000096],[14.662184692000068,50.834365946],[14.647921997000111,50.83937856100006],[14.613195435000078,50.84557973200005],[14.608337850000053,50.853072815000175],[14.611851847000109,50.870952861000134],[14.628801717000101,50.896119283000175],[14.634589478000095,50.90940012700018],[14.629215128000112,50.920717266000146],[14.617122843000118,50.920872294],[14.56182906100011,50.906351217000136],[14.550356893000098,50.912087301000106],[14.555834594000087,50.92428293900004],[14.567823527000142,50.938648987000036],[14.575574992000043,50.95068959600009],[14.577435343000046,50.96572743700009],[14.574334758000106,50.975494283000145],[14.566686645000116,50.98340077799999],[14.55459436000004,50.9926508590001],[14.542295369000101,50.998748678000155],[14.515320272000082,51.00303782200002],[14.502917928000102,51.00851552400012],[14.493512818000058,51.01670623800014],[14.490102173000109,51.02270070400006],[14.487931763000121,51.0287210090001],[14.48214400200007,51.03719594300009],[14.473462362000108,51.02337249800014],[14.462093547000109,51.01965179400004],[14.425816691000135,51.02094370600018],[14.39780806400006,51.013114726000154],[14.386749308000049,51.013269756000014],[14.375897257000105,51.01699045900001],[14.36938602700013,51.02244232200009],[14.364115031000097,51.02799753800009],[14.356570272000056,51.03233835900009],[14.319363240000115,51.040012309000176],[14.287530558000071,51.036834208000116],[14.263552694000083,51.02143463200012],[14.249496704000137,50.9926508590001],[14.238334595000111,50.982470602000134],[14.250013469000095,50.977613017000024],[14.283809855000072,50.974822490000165],[14.303756958000093,50.96970652300017],[14.302206665000085,50.9676911420001],[14.293731730000074,50.96397043900011],[14.292801554000107,50.953480124000166],[14.318329712000063,50.93751210600011],[14.355226685000076,50.93063914000005],[14.381891724000127,50.920872294],[14.375897257000105,50.895964254000134],[14.346545044000038,50.880202942000054],[14.268100220000093,50.88413035100002],[14.23213342300005,50.87937611900013],[14.221281372000078,50.8726065070001],[14.202987915000108,50.85513987300014],[14.1907922770001,50.847905172000154],[14.03493615700006,50.80258494100015],[14.015712524000037,50.80175811800014],[13.979125610000095,50.804755351000054],[13.959591919000076,50.80206817700012],[13.948843221000061,50.79721059200001],[13.933546997000093,50.78480824800012],[13.923315064000121,50.77995066400011],[13.910706014000082,50.7787621050001],[13.900990844000148,50.780622457],[13.892515910000071,50.78041575200014],[13.883317505000065,50.77323272700009],[13.879080037000108,50.763517558000146],[13.880320272000034,50.755042623000136],[13.882697388000082,50.748014628000035],[13.882180624000057,50.742743632],[13.87535933400008,50.73654246100001],[13.869571574000105,50.73525054900007],[13.863473755000143,50.73514719700013],[13.834534953000087,50.72367502900011],[13.816551554000112,50.7213495890001],[13.770662882000039,50.72460520400007],[13.74906213400007,50.723209941],[13.71102828000005,50.71426991800017],[13.691752970000096,50.711841126000095],[13.601939331000096,50.71215118499999],[13.556567423000075,50.7067251590001],[13.515639689000066,50.691015524000065],[13.527215210000094,50.67566762300008],[13.523287801000038,50.6621800750001],[13.509955281000115,50.65122467100004],[13.493315471000102,50.643214823000065],[13.499103230000058,50.63520497700007],[13.498173055000109,50.62915883400014],[13.492178589000076,50.624456279000135],[13.482256713000083,50.6208906050001],[13.464893432000082,50.60709299800014],[13.44794356300005,50.59727447600006],[13.429340048000114,50.59432891900017],[13.407015828000056,50.601305237000176],[13.400401245000126,50.606576234],[13.386345256000112,50.62161407500018],[13.380970906000073,50.625489807000136],[13.368775268000148,50.62833201100001],[13.36598474100009,50.62709177699999],[13.365364624000108,50.62347442700008],[13.359370158000104,50.619340312000176],[13.32185306800011,50.60239044300006],[13.316272013000088,50.59603424100014],[13.305626668000087,50.57577708000004],[13.284646037000101,50.568955790000174],[13.268006226000068,50.57365834600015],[13.251779825000142,50.58089304700003],[13.232349487000079,50.582029928000125],[13.199069865000126,50.52534088200004],[13.184703817000127,50.50875274700003],[13.160105835000138,50.497022197000135],[13.107395874000133,50.498985901000154],[13.079180542000074,50.49278472900009],[13.078973836000102,50.492681376000164],[13.078870483000088,50.492681376000164],[13.069775431000094,50.49107940700012],[13.06037032100005,50.49061431900019],[13.051068563000115,50.49113108400003],[13.042283570000052,50.49278472900009],[13.03453210400005,50.496505432],[13.026263875000097,50.49764231400012],[13.017892293000102,50.496350404000154],[13.00962406400015,50.492681376000164],[13.0031128330001,50.45190867200007],[12.996601603000045,50.43366689100013],[12.982442261000074,50.4229698700001],[12.960631103000111,50.409234123000125],[12.952573283000078,50.40415964800011],[12.918363485000071,50.40539988200013],[12.82575931800011,50.44141835600011],[12.817387736000029,50.44302032500015],[12.80839603700008,50.441831767000124],[12.794340047000077,50.43588897700011],[12.7881388750001,50.43433868400011],[12.770258830000046,50.43594065400005],[12.75423913600008,50.43532053600008],[12.737909383000044,50.43154815700014],[12.725093628000138,50.423434958000044],[12.702976115000041,50.40152415000009],[12.6918140060001,50.394651184000125],[12.678791544000092,50.39372100800007],[12.625358114000049,50.39992218100015],[12.550530640000119,50.39635650700008],[12.510223022000075,50.38876007100011],[12.482524454000043,50.373567200000096],[12.475083048000045,50.36943308500015],[12.471569051000074,50.36447214800002],[12.469501994000098,50.359407858000154],[12.466814819000092,50.35491200800011],[12.46702152500012,50.352844951000165],[12.46836511300009,50.34948598300014],[12.468985229000083,50.345558574000094],[12.466814819000092,50.341889547000086],[12.462784058000095,50.34049428300001],[12.453792359000147,50.340700990000144],[12.450175008000143,50.33935740200009],[12.438289429000122,50.33253611300013],[12.408937215000066,50.32199412100008],[12.398188517000051,50.31517283100011],[12.367182658000104,50.279051005000106],[12.355813842000117,50.27140289400013],[12.344651733000092,50.26639028000007],[12.336486857000068,50.258587138000145],[12.333799683000052,50.24272247300006],[12.314059286000088,50.226496074000025],[12.308684936000104,50.21709096299999],[12.305584351000078,50.19931427000013],[12.30858158300009,50.18691192700008],[12.314369344000054,50.176214905000066],[12.314369344000054,50.16732655900016],[12.300416707000066,50.16081532800008],[12.28336348400012,50.162210592000164],[12.273234904000077,50.17233917300002],[12.26124597200004,50.199882711],[12.260212443000057,50.20505035500009],[12.258455445000067,50.2108897910001],[12.254321330000039,50.21740102100016],[12.249980510000057,50.221173401],[12.232513875000109,50.23249054000014],[12.229930054000107,50.23481597900008],[12.228896525000037,50.237038066000096],[12.229826701000093,50.23905344700013],[12.232513875000109,50.24096547500007],[12.233754110000064,50.241688944000074],[12.235097697000128,50.24225738500011],[12.236441284000078,50.24256744500009],[12.237991577000116,50.24272247300006],[12.242435750000112,50.24835520400008],[12.242952515000068,50.25295440700002],[12.239645223000139,50.256571758000106],[12.232513875000109,50.259103902],[12.20378177900011,50.25956899000012],[12.189209025000139,50.262462871000096],[12.178046916000113,50.268767395],[12.174119507000057,50.27657053700012],[12.174429565000137,50.29372711200001],[12.16853845200012,50.30297719300002],[12.149314819000011,50.31171051100007],[12.101343547000056,50.313980338000036],[12.076140991000045,50.31517283100011],[12.099188680000083,50.29977325500015],[12.107250203000092,50.290884908000024],[12.110970906000091,50.276622213000145],[12.109110555000084,50.263806458000076],[12.102392619000057,50.2591555790001],[12.09205733300007,50.25481475800002],[12.079551635000144,50.24272247300006],[12.089886922000062,50.230836894],[12.139289592000097,50.21104482000014],[12.163784220000137,50.193784892000124],[12.175049682000093,50.182622783000014],[12.18269779500008,50.17073720300008],[12.185591675000069,50.15569936100009],[12.178563680000053,50.13296173100012],[12.179183797000121,50.117975566000055],[12.187865438000102,50.102834372000025],[12.202024780000045,50.09451446500015],[12.218044474000095,50.08857167600014],[12.232513875000109,50.08051015200006],[12.241402221000044,50.07063995400007],[12.243469279000093,50.06040802000011],[12.243675984000049,50.051312969000136],[12.246879923000108,50.0449567670001],[12.398188517000051,49.99276357000003],[12.39922204600012,49.99276357000003],[12.414518270000087,49.98304840100009],[12.451311889000067,49.98056793200011],[12.468158406000043,49.970232646],[12.470742228000063,49.95560821600013],[12.463817586000062,49.942120666000065],[12.462680705000139,49.93126861600002],[12.50360843900009,49.9157656870001],[12.517871135000064,49.91220001200004],[12.52407230600005,49.90496531200007],[12.52097172000009,49.88553497300007],[12.51291019700011,49.87023874900005],[12.489862508000044,49.84269521100005],[12.482524454000043,49.82724395800015],[12.46247399900011,49.83122304300004],[12.456376180000063,49.817115377],[12.455859415000106,49.79613474600011],[12.452655477000121,49.77970164000014],[12.436739135000096,49.769263001000084],[12.395397990000077,49.75789418600003],[12.38361576300008,49.74285634400003],[12.388576700000044,49.732314351000134],[12.398911987000133,49.71949859700008],[12.419582560000066,49.70022328700004],[12.433948608000065,49.69180002900005],[12.449244832000119,49.68503041600012],[12.482524454000043,49.6746951300001],[12.49637373900012,49.6699925750001],[12.504641968000072,49.659398905000145],[12.505365437000137,49.64611806300003],[12.496890503000145,49.633870748],[12.49947432400006,49.632527161000056],[12.507432495000103,49.62999501600014],[12.50267826300012,49.622140198000025],[12.501954793000037,49.61971140600015],[12.512186727000113,49.611649882000066],[12.536061239000105,49.60312327100014],[12.546603230000073,49.5955785120001],[12.55363122500006,49.58472646100015],[12.558282104000028,49.56255727200012],[12.562312867000117,49.55082672200014],[12.568720744000075,49.538837789000084],[12.575025268000076,49.529897766000076],[12.58288008700012,49.52240468300012],[12.593732137000075,49.51501495400011],[12.604997599000114,49.5127928670001],[12.61553959200009,49.51377472000008],[12.622980998000115,49.50984731000001],[12.624324585000068,49.493000794000054],[12.627218465000055,49.460186259000025],[12.632179402000105,49.44395985900012],[12.64354821800009,49.42949045799999],[12.663081909000113,49.41889679000009],[12.709177286000028,49.40473744700016],[12.729331095000106,49.391146546000144],[12.762093953000116,49.34324249300015],[12.777906941000111,49.33254547200012],[12.797750692000108,49.32784291700007],[12.856661825000115,49.32221018500003],[12.875368693000098,49.323863831],[12.870924519000084,49.33673126300009],[12.884670451000119,49.33957346700005],[12.92291101100011,49.33270050099999],[12.9398608810001,49.326757711000155],[12.954330282000058,49.3191095990001],[12.982442261000074,49.299627584000106],[12.999805542000104,49.29492502900003],[13.005386597000012,49.286760153],[13.006730184000077,49.277096659000065],[13.011277710000115,49.26779490200015],[13.043213745000088,49.24293853799999],[13.043213745000088,49.24288686100009],[13.043420451000145,49.24278350900015],[13.05582279500004,49.238184306],[13.149460489000147,49.154830221000154],[13.162586303000126,49.1351415000001],[13.178502645000064,49.11834666000014],[13.206821330000139,49.107494609000085],[13.267282755000082,49.10563425700009],[13.287333211000117,49.10056996700011],[13.299528849000126,49.093645325000026],[13.32991459100009,49.06692861000006],[13.372392618000049,49.038506572000145],[13.38355472800015,49.021091614000014],[13.384174845000132,48.993031311],[13.398540893000131,48.97768341100011],[13.427272990000063,48.959958395000015],[13.45889896600005,48.945023906000145],[13.482256713000083,48.93763417600003],[13.492592,48.95504913300006],[13.50210046400008,48.966056214000055],[13.515949747000034,48.970242005],[13.522395447000093,48.96934193000005],[13.538894083000088,48.96703806600011],[13.55646407100005,48.959958395000015],[13.573413940000137,48.95101837200018],[13.590467163000083,48.9448172],[13.608657267000126,48.94616078700015],[13.611137736000103,48.927247213000115],[13.621783081000103,48.909057109000074],[13.637389363000125,48.89345082600012],[13.654442586000071,48.88223704000008],[13.67335616000011,48.87634592799999],[13.71061486800005,48.872470195000126],[13.724670858000138,48.86730255200003],[13.747925252000073,48.84337636300005],[13.796191040000082,48.779814352000145],[13.815724731000103,48.76643015600003],[13.785855754000066,48.72477895100009],[13.783581991000062,48.715270488000115],[13.788749634000055,48.716510723000155],[13.799394979000056,48.70260976200008],[13.804355916000105,48.699560852000054],[13.81686161200011,48.69558176700015],[13.803529093000066,48.687158508],[13.800945272000062,48.67522125300003],[13.8062162680001,48.64292348300015],[13.805492798000103,48.6261286420001],[13.802392211000067,48.611710918000185],[13.796191040000082,48.59858510400004],[13.77903446400012,48.573935446000014],[13.774280233000127,48.56920705200004],[13.766012003000071,48.56375518800014],[13.758053833000105,48.56148142500005],[13.73727990700007,48.55925933900012],[13.733869263000145,48.55977610300006],[13.72539432800005,48.54838145000017],[13.716505981000125,48.521690572000026],[13.71433557100005,48.52321502700012],[13.67335616000011,48.53548818000017],[13.658059936000143,48.5510944630001],[13.641833537000139,48.55910430900009],[13.624366902000105,48.565357158],[13.52070397900013,48.584580791000015],[13.487217652000139,48.581583557],[13.454558146000068,48.57344451900009],[13.445566447000116,48.567915141000086],[13.44008874500011,48.560964661000085],[13.440708862000093,48.557347311000015],[13.443706095000096,48.552851461],[13.447736857000109,48.534816386],[13.457038615000045,48.52517873200016],[13.45920902500012,48.51639373799999],[13.456418498000062,48.50665273100004],[13.442982625000099,48.487713319000086],[13.438228394000106,48.478540752000086],[13.436368042000112,48.46923899400015],[13.438228394000106,48.44099782400009],[13.436161336000055,48.430585022000066],[13.431717163000142,48.423712057],[13.427169637000105,48.418544413000106],[13.425205932000095,48.413376770000085],[13.419521525000048,48.39216359500013],[13.405568888000062,48.37658315100002],[13.307797079000096,48.319635722000115],[13.274207397000055,48.30710418700012],[13.136438029000118,48.29105865500015],[13.032775106000145,48.263566793000095],[13.01665205900008,48.2558928430001],[12.979445027000082,48.23201833200004],[12.947198934000113,48.220003561000155],[12.931696004000086,48.21163197900007],[12.933039591000068,48.20925486300003],[12.877642456000103,48.202046001000085],[12.862552938000107,48.1966458130001],[12.85345788600003,48.18997955300009],[12.835164429000145,48.17070424400005],[12.82214196800004,48.16067901700013],[12.782351115000012,48.14202382500015],[12.778320353000112,48.13871653300008],[12.764057658000127,48.123756205000106],[12.75795983900008,48.1218958540001],[12.751448608000116,48.122102560000044],[12.745040731000074,48.12062978200005],[12.738942912000113,48.11344675700009],[12.736979207000076,48.09995920900003],[12.742043498000072,48.08678171800015],[12.75093184400009,48.07474111000009],[12.760233602000113,48.064870911000106],[12.830616903000134,48.01546824200007],[12.845603068000088,47.99314402300002],[12.848246271000049,47.982388920000105],[12.848600301000118,47.980948385000104],[12.853974650000083,47.970483907000144],[12.862036173000147,47.96255157500009],[12.88601403800007,47.95288808200017],[12.906167847000063,47.938909607000156],[12.914229370000044,47.935989889],[12.931075887000134,47.924879456000056],[12.964975626000124,47.8719627900001],[12.986576375000112,47.850258688000096],[12.99122725400008,47.84710642600014],[12.926735067000036,47.7773949180001],[12.921257365000143,47.769540101000146],[12.919293661000038,47.763183899000026],[12.91898360200014,47.756776022000096],[12.917226603000072,47.75016143800009],[12.910818726000116,47.74308176700008],[12.910818726000116,47.74303009000006],[12.91061201900007,47.74292673800012],[12.892008504000103,47.72354807600005],[12.908338256000148,47.71236012900012],[12.96404545100009,47.705357971000026],[12.979031616000071,47.70708913200009],[13.004353068000029,47.714608053000134],[13.019855998000137,47.712928569000084],[13.032258341000102,47.70662404400015],[13.044557332000066,47.696572978000134],[13.064091024000078,47.67399037700001],[13.072049194000044,47.65946929900015],[13.074839722000092,47.646653545000056],[13.074219604000119,47.63450958300017],[13.072049194000044,47.62241729800009],[13.069568725000067,47.62024688700011],[13.057683146000045,47.60042897600003],[13.057063029000062,47.59766428600007],[13.040939982000081,47.583349915000085],[13.038252807000049,47.58402170900013],[13.039079631000078,47.56133575500008],[13.041250041000069,47.56190419600013],[13.040113159000043,47.560457255000145],[13.030604696000069,47.54425669400014],[13.028124227000092,47.541647034000114],[13.028124227000092,47.52423207700009],[13.028951050000103,47.51803090500012],[13.031224812000119,47.51255320300014],[13.034428751000092,47.50743723600014],[13.037012573000112,47.50136525500001],[13.03732263100008,47.493045350000116],[13.008797241000138,47.47010101400009],[13.00187259900005,47.46601857600008],[12.991123901000035,47.46568267900001],[12.98492272900006,47.4682665000001],[12.979341674000123,47.47224558599999],[12.96972985800002,47.47573374500003],[12.959291219000077,47.475527039000085],[12.951022990000126,47.47247813000014],[12.942548055000143,47.470488587000105],[12.931592651000072,47.47351165800002],[12.882603393000068,47.49857472800012],[12.83692142700005,47.532655335000086],[12.828446492000126,47.53725453800014],[12.819041381000089,47.53952830000016],[12.803641805000096,47.54133697500005],[12.778940470000094,47.554824524000125],[12.773669474000144,47.579500021000044],[12.785865112000065,47.602676901000116],[12.81315026900009,47.611823629000114],[12.793306518000094,47.624794413000025],[12.767364950000058,47.63636993500007],[12.75165531400009,47.649392396],[12.761990600000074,47.66685902900015],[12.744834025000017,47.665360413000045],[12.688713419000067,47.67512725900009],[12.653056681000095,47.67512725900009],[12.617399943000095,47.66933949800013],[12.598383015000138,47.66287994400007],[12.563374919000069,47.64176137000011],[12.553837931000118,47.636008199000074],[12.538231649000096,47.63133148200002],[12.51714766400005,47.628540955000126],[12.496580444000074,47.62890269000014],[12.482524454000043,47.63357940700002],[12.452758830000079,47.64975413000012],[12.44469730600008,47.65629119900008],[12.43921960400007,47.66448191400012],[12.428780965000044,47.68579844200009],[12.424130086000076,47.691560365000086],[12.407696980000111,47.69373077400014],[12.36842289200004,47.683550517000086],[12.35147302300004,47.68169016600008],[12.293698771000038,47.690010071000145],[12.27189131700004,47.68789133700007],[12.249567098000057,47.680010682000116],[12.238715047000113,47.67889963900005],[12.22879317200011,47.68486826600015],[12.223315470000017,47.69590118400005],[12.226622762000117,47.70287750200005],[12.233030639000077,47.70887196900016],[12.236544637000122,47.716778463000125],[12.239128459000113,47.727449646000125],[12.242229044000055,47.73202301100015],[12.239748576000094,47.73168711400008],[12.225175822000038,47.7273721320001],[12.216494181000058,47.7237031050001],[12.192412964000113,47.7101638800001],[12.17659997600012,47.70582305900014],[12.178563680000053,47.697658183000115],[12.18176761900014,47.69212880500011],[12.18910567200004,47.68556589800015],[12.197270549000052,47.68008819600006],[12.202334839000116,47.67778859500014],[12.205125366000088,47.672285055000046],[12.206779012000112,47.64556833900018],[12.205745483000044,47.63621490500004],[12.202128133000143,47.629832866000086],[12.173602742000098,47.605079855000085],[12.165644572000133,47.603968811000165],[11.935891154000046,47.610738424000104],[11.851968627000133,47.59916290300008],[11.840703166000054,47.59461537700003],[11.830677938000122,47.57761383100002],[11.820342651000118,47.575288391000086],[11.764015340000128,47.58311737100011],[11.682573283000096,47.583349915000085],[11.63895837400014,47.58924102800007],[11.620458211000111,47.589654440000075],[11.6170475670001,47.58676056000009],[11.58914229300012,47.57037913100005],[11.58232100400005,47.55978546200008],[11.574466186000109,47.536634420000084],[11.569401896000045,47.52738433900008],[11.551211792000117,47.51369008400006],[11.529507690000116,47.50785064800005],[11.482585490000076,47.50257965100003],[11.459951212000107,47.50743723600014],[11.435353231000136,47.509710999000056],[11.412615600000066,47.50609364800008],[11.36548669400014,47.46932586700008],[11.377785685000077,47.467052104000075],[11.388637736000135,47.46222035700005],[11.392461792000061,47.45477895100014],[11.383883504000039,47.44485707600013],[11.36765710500012,47.44012868300013],[11.324248901000146,47.43943105100006],[11.305645385000075,47.43540029000017],[11.286318400000141,47.42320465100006],[11.273089233000121,47.41111236600007],[11.25882653800008,47.40072540300007],[11.23701908300012,47.39395579000002],[11.213041219000019,47.395816142],[11.215211629000123,47.42299794500009],[11.193817587000096,47.428940735000126],[11.168599487000051,47.424264018000045],[11.103280477000112,47.39356821800003],[11.083746785000102,47.3895116180001],[10.979463745000144,47.39054514600018],[10.965511108000072,47.396074524000184],[10.9552791750001,47.40961375000016],[10.95765629100012,47.409717103],[10.960860229000104,47.41431630500013],[10.96313399200011,47.421240947000044],[10.962823934000141,47.427958883000045],[10.959826701000111,47.43250640899999],[10.909907267000051,47.46898997000001],[10.858437540000066,47.4851646930001],[10.851616252000042,47.49309702600005],[10.883862346000086,47.508005676],[10.892233928000053,47.51487864300015],[10.86928959100004,47.52658335400004],[10.858644247000115,47.53066579200004],[10.844794962000066,47.53131174700003],[10.830635620000123,47.52857289600008],[10.790328003000068,47.51606720000008],[10.760769083000127,47.51363840700013],[10.752190795000104,47.51539540600011],[10.74722985800014,47.52014963800009],[10.74392256700014,47.52531728100011],[10.73989180500007,47.528469544000146],[10.607910197000109,47.56226593000004],[10.58372562700012,47.56247263600001],[10.56987634300006,47.55593556700002],[10.549619181000082,47.53678945000002],[10.536906779000105,47.529864808000056],[10.525124552000108,47.528469544000146],[10.482543172000135,47.532862040000154],[10.466936890000113,47.53771962500015],[10.458772013000072,47.541647034000114],[10.453501017000065,47.5462462360001],[10.451744018000085,47.554824524000125],[10.455464721000084,47.561180726000046],[10.460322306000108,47.56598663300015],[10.461562540000044,47.56991404300011],[10.457118368000122,47.579241638000056],[10.453604370000079,47.58110199000005],[10.445956258000109,47.579060771000016],[10.429213094000147,47.57701955200007],[10.414226929000078,47.57301462800016],[10.415673868000084,47.564384665000105],[10.424355509000122,47.5533517460001],[10.430970093000042,47.54216379800009],[10.429729858000085,47.532913717000056],[10.41960127800013,47.493045350000116],[10.433657267000058,47.48785186800002],[10.442235555000082,47.48139231400007],[10.447609904000046,47.47258148300006],[10.451744018000085,47.46020497700003],[10.451950724000113,47.438759257000086],[10.442855672000064,47.41628001],[10.428282918000093,47.39604868600016],[10.411643107000087,47.381036683],[10.403064819000065,47.377109273000045],[10.381980835000121,47.37212249800008],[10.371645549000105,47.3673941040001],[10.365651082000083,47.3611154180001],[10.343430216000058,47.330755514000046],[10.325446818000074,47.31432240900007],[10.305913126000064,47.30217844700017],[10.2611613360001,47.283497416],[10.239353882000074,47.27773549400003],[10.17495085000013,47.27237555400002],[10.159875529000061,47.27112091100004],[10.155431355000076,47.272877909000115],[10.15946211800005,47.27913075800002],[10.168660522000067,47.29042205800009],[10.172691284000052,47.292308248],[10.185920451000129,47.29499542300011],[10.190778036000069,47.298251038],[10.193258504000141,47.30491729800012],[10.192741739000098,47.31091176400004],[10.190467977000083,47.31747467100003],[10.208554729000099,47.35447499600018],[10.209278198000106,47.37248423300018],[10.190881388000093,47.37922800800011],[10.146956420000066,47.373801982000046],[10.135070842000118,47.364887797],[10.130833374000076,47.362665711000105],[10.125665731000083,47.362691549000104],[10.11533044400008,47.36695485500017],[10.110369507000113,47.3673941040001],[10.097243693000053,47.36313079900005],[10.089595581000083,47.359280904000094],[10.082877644000062,47.359074199000034],[10.073162475000117,47.365482075999985],[10.06778812700014,47.375042217000086],[10.066857951000088,47.385790914],[10.064170776000083,47.39617787800002],[10.053215373000086,47.404859518000144],[10.07595300300008,47.416874288000045],[10.080603881000116,47.427390442],[10.071818888000053,47.43912099300009],[10.022622924000073,47.48795522100015],[10.011254110000095,47.48444122400009],[10.002365764000073,47.47917022700007],[9.99358077000008,47.47658640600015],[9.982625366000121,47.48103057900006],[9.981075073000085,47.48687001600014],[9.980765015000117,47.489918925],[9.980765015000117,47.49294199700002],[9.971669962000135,47.50640370700016],[9.95916426600013,47.51487864300015],[9.948725626000112,47.52423207700009],[9.945935099000053,47.540768534],[9.933842814000059,47.53420562800004],[9.918753296000148,47.53219024700017],[9.88898767100008,47.533792216],[9.858911988000102,47.54133697500005],[9.853847697000106,47.54040680000009],[9.841548706000083,47.53503245000005],[9.833487182000084,47.53461903900005],[9.81312666900007,47.54175038700008],[9.809302612000124,47.55231821700012],[9.811266317000046,47.564488017000045],[9.80795902500006,47.57632192000007],[9.796280152000094,47.58495188500011],[9.782120809000048,47.58841420500015],[9.767134643000075,47.587277324000056],[9.75266524200012,47.5820580040001],[9.730857788000092,47.56490142900007],[9.718455444000142,47.546711324000015],[9.7039860430001,47.53141510000015],[9.676700887000095,47.52263010700007],[9.612622111000093,47.52188079900016],[9.554143852000093,47.53274311100007],[9.54988692200004,47.53353383400004],[9.547481674000068,47.53454710200013],[9.273211304000142,47.650090027000104],[9.23435062700011,47.656162008000145],[9.196936890000131,47.65613617000004],[9.183397664000069,47.67042470400004],[9.12810388100013,47.67042470400004],[9.016586141000118,47.67889963900005],[8.997672566000091,47.67383534800013],[8.981756225000083,47.662156474000184],[8.945376017000086,47.654301656000044],[8.906205281000041,47.65179534900006],[8.881710652000095,47.65613617000004],[8.8526684980001,47.670786438000114],[8.851935119000075,47.67128172300006],[8.837785685000142,47.68083750400014],[8.837682333000117,47.68778798500013],[8.85607914200011,47.69068186400012],[8.830240926000101,47.707192485000014],[8.797581420000114,47.720034079000115],[8.770709676000108,47.72086090100014],[8.761717977000075,47.701249695000016],[8.769882853000098,47.69507436100003],[8.717069540000068,47.69455759700018],[8.715105835000116,47.70106882700007],[8.712625366000054,47.70869110100012],[8.70466719500007,47.71533152300013],[8.70042972800013,47.723496399000155],[8.70373702000012,47.730033468000116],[8.717069540000068,47.74354685500002],[8.719756714000084,47.74731923400013],[8.71314213000008,47.75742197700008],[8.703323608000119,47.75871388700001],[8.692264852000108,47.75716359500011],[8.681929565000104,47.75873972600011],[8.674488159000077,47.766697897000185],[8.66663334200004,47.778273417000136],[8.657021525000118,47.788117778000114],[8.644102417000113,47.7910116580001],[8.635007365000149,47.784603780000154],[8.629839721000053,47.76279632600013],[8.61743737800009,47.75731862400012],[8.607618856000101,47.762253723000086],[8.604104858000142,47.77439768500006],[8.603174682000116,47.7873167930001],[8.601624390000097,47.79460317000017],[8.58312422700007,47.80023590100011],[8.558216187000085,47.80116607700013],[8.542299846000075,47.79501658100018],[8.55160160300008,47.77925527000009],[8.536512085000082,47.774087626],[8.482665242000053,47.76685292600003],[8.471503133000112,47.767059632],[8.463648315000086,47.763907370000034],[8.450109090000126,47.750471496999985],[8.445458211000044,47.74318512000009],[8.437913452000089,47.72318634100015],[8.427268107000115,47.71646840400014],[8.401946655000131,47.70708913200009],[8.39212813300014,47.69951853500014],[8.39099125100006,47.69212880500011],[8.3952287190001,47.68481659000004],[8.397709188000077,47.67628997900011],[8.39130131000013,47.665463765000176],[8.40701094500011,47.661562195000116],[8.411971883000149,47.661045430000065],[8.43760339400012,47.6478421020001],[8.458273966000121,47.63988393200013],[8.476050659000064,47.64040069600016],[8.490830119000094,47.64556833900018],[8.504679402000136,47.65226043700001],[8.519665568000107,47.65735056600008],[8.568241414000113,47.662931621],[8.582194051000101,47.661329651000145],[8.59358868300009,47.65816856],[8.598213745000066,47.65688547800015],[8.607308797000115,47.65629119900008],[8.601624390000097,47.632597555000146],[8.595113159000107,47.63481964100004],[8.594493042000039,47.64096913700003],[8.593562866000097,47.64257110600006],[8.589222046000117,47.64246775400012],[8.583951050000081,47.64112416600007],[8.580333699000105,47.63900543199999],[8.578059936000074,47.633476054000184],[8.579713583000114,47.628928529000135],[8.582090698000087,47.625026957],[8.582504110000087,47.62159047500016],[8.581263875000047,47.614769186],[8.581780639000101,47.607663677000076],[8.580643758000093,47.60017059400003],[8.576305366000042,47.59502305800011],[8.574132527000103,47.592444967000134],[8.560696655000072,47.589396057000116],[8.551719149000036,47.596863329000044],[8.54963789900006,47.598594462],[8.537752319000049,47.61213368800018],[8.522352742000036,47.621900534000055],[8.492380411000113,47.619833476000096],[8.461787964000079,47.60613922100008],[8.450109090000126,47.58903432300012],[8.448868856000075,47.58428009100011],[8.421100326000044,47.58111187000016],[8.41806970200011,47.58076609400017],[8.354094279000037,47.58102447500012],[8.316163777000043,47.58784576400007],[8.306345255000052,47.59218658500008],[8.299317260000036,47.601824239000095],[8.293942912000091,47.611461894000016],[8.288568562000108,47.615802715000186],[8.276993042000072,47.616629537],[8.251051473000132,47.622003886000165],[8.232964721000116,47.621952210000146],[8.17901452600006,47.615802715000186],[8.173846883000067,47.61352895100008],[8.168885946000103,47.60864552800014],[8.16206465600007,47.60376210500011],[8.143771199000069,47.600067241000104],[8.122067098000088,47.59213490800006],[8.113902221000075,47.58784576400007],[8.105427286000065,47.58125701900009],[8.10139652500007,47.57619272900003],[8.09695235100014,47.571851909000046],[8.08723718200011,47.56738189700003],[8.042278686000117,47.560560608000074],[7.91215743000015,47.560560608000074],[7.909470256000105,47.564798076000116],[7.907506551000097,47.57417734799999],[7.904302613000111,47.58355662100003],[7.898204794000065,47.58784576400007],[7.83371260600012,47.590481263000115],[7.819656616000117,47.59533884700012],[7.801466512000076,47.5760893760001],[7.785550171000068,47.56319610600009],[7.766739949000054,47.55596140600012],[7.727320447000125,47.55042262400014],[7.683437540000113,47.54425669400014],[7.661423380000115,47.5462462360001],[7.646901035000069,47.55144523600002],[7.609746948000094,47.564746399000015],[7.612337281000094,47.56473104100009],[7.63589522300009,47.56459137000017],[7.64654056800009,47.571541850000145],[7.659666382000039,47.59657908200016],[7.637032104000098,47.59497711200014],[7.586028488000124,47.58461854400015],[7.590109904000143,47.59482208300009],[7.592487020000107,47.59841359500016],[7.590316609000097,47.607947896000056],[7.585045614000079,47.61316721600014],[7.578637735000115,47.61693959600011],[7.572643270000101,47.622003886000165],[7.550112345000088,47.65244130500004],[7.536573120000098,47.66520538400003],[7.5217936600001,47.67042470400004],[7.517866251000015,47.67502390599999],[7.514662312000041,47.68579844200009],[7.511871785000096,47.70732167600006],[7.515385783000057,47.713316142000096],[7.531922241000132,47.72520172200002],[7.537813355000139,47.73181630400002],[7.538330119000079,47.748146057000056],[7.525927775000098,47.78315684000016],[7.528614949000143,47.79703196300012],[7.542877645000118,47.829433086000115],[7.548458699000121,47.83423899300014],[7.5619979250001,47.839225769],[7.564168334000101,47.85041371700014],[7.559000691000107,47.869017233000086],[7.559207397000136,47.8734614050001],[7.558380575000116,47.87599355100018],[7.557863810000099,47.878525697000086],[7.559000691000107,47.88271148800011],[7.5619979250001,47.88705230699999],[7.568612508000114,47.89136729000016],[7.572643270000101,47.89630238900009],[7.578947795000118,47.906327617000116],[7.580808146000038,47.91079762800014],[7.579567911000083,47.92704986600016],[7.584942261000037,47.94040822400008],[7.611607300000088,47.959399313000134],[7.621115763000062,47.971439922000016],[7.618945353000073,48.00265248700002],[7.575743856000144,48.05370880200017],[7.572643270000101,48.09497243300008],[7.578947795000118,48.114480286000074],[7.58566573000013,48.129724833000026],[7.592900431000118,48.13866485600006],[7.599721720000076,48.14471099899999],[7.604786010000054,48.15256581600012],[7.606749715000149,48.16698354100005],[7.613364298000079,48.179205018000076],[7.676616252000144,48.23840037100014],[7.687158243000112,48.252921448],[7.693462769000121,48.26987131800011],[7.695529825000079,48.29018015600003],[7.702454467000081,48.31118662500004],[7.71857751500005,48.31999745700004],[7.736974325000062,48.326663717000045],[7.750720255000089,48.341365662000115],[7.751960490000044,48.35534413700013],[7.746896199000048,48.36867665700005],[7.740384969000075,48.381440736000016],[7.737181030000102,48.39348134400008],[7.738317912000126,48.40660715800006],[7.74565596500011,48.43301381400012],[7.750720255000089,48.44440846800002],[7.757644897000147,48.453891093000024],[7.764156128000137,48.46035064800007],[7.769220419000106,48.47006581700002],[7.771287475000064,48.489108582000156],[7.776455119000075,48.49817779600012],[7.788444051000055,48.506342672000144],[7.813455444000027,48.51946848600012],[7.813455444000027,48.52634145100008],[7.801673217000115,48.54758046500014],[7.801776571000061,48.582358704000015],[7.810251506000071,48.61501820900018],[7.852419475000119,48.65868479400014],[7.864098348000084,48.66416249700013],[7.880634806000073,48.6677281700001],[7.895931030000042,48.676513163],[7.923319539000089,48.698217265],[7.935205119000102,48.70333323199999],[7.948434285000103,48.7118598440001],[7.959182983000118,48.721368306999985],[7.963627157000133,48.72927480100013],[7.964867391000069,48.748343405000114],[7.970138387000106,48.75728342700013],[7.981507202000103,48.75976389600011],[8.009619181000119,48.760073954000106],[8.017267293000117,48.761830954000075],[8.022951701000068,48.76508656900016],[8.025122111000144,48.77061594700013],[8.02729252100005,48.78002105800011],[8.031943400000102,48.78534373000015],[8.036594279000068,48.78828928700006],[8.038764689000061,48.790769756000046],[8.047549682000124,48.79102813700011],[8.084239950000097,48.80405059800013],[8.090337769000143,48.80751292000018],[8.102740112000049,48.82131052600011],[8.14811202000007,48.903734436000136],[8.17932458500013,48.94269846700003],[8.1998915450001,48.958250331],[8.20030521600006,48.95856313100002],[8.188729695000092,48.96574615499999],[8.090441121000081,48.97918202800004],[7.931897827000114,49.034837546000134],[7.913811075000097,49.03618113300003],[7.856863647000124,49.03225372300015],[7.773664591000113,49.04811838800005],[7.762605835000102,49.046154683000125],[7.739144735000138,49.03773142500013],[7.726949096000112,49.035664368000155],[7.717337281000114,49.03659454400004],[7.696149943000051,49.04155548100009],[7.68509118700007,49.042795716000015],[7.672482137000117,49.04103871700012],[7.660803264000066,49.03773142500013],[7.648814331000096,49.03571604500008],[7.644938840000066,49.036294476000144],[7.634965047000036,49.03778310100012],[7.625663289000101,49.043002421000075],[7.61594812000007,49.05597320599998],[7.608610066000067,49.06196767200011],[7.586389201000144,49.06956410700009],[7.542670939000061,49.074576722000145],[7.52086348500012,49.08367177400011],[7.507737671000057,49.09457550100007],[7.485103394000106,49.11870839500013],[7.471047404000103,49.128320212000126],[7.472804403000082,49.13162750300013],[7.475284871000042,49.133901266000166],[7.482726278000086,49.13705352800012],[7.476111694000081,49.15152292900014],[7.458024942000065,49.15586375000014],[7.414823446000128,49.157775778000044],[7.410482625000043,49.168937887000176],[7.39105228700015,49.17002309200008],[7.371633809000087,49.16617361400007],[7.367591186000083,49.165372213000026],[7.350951376000068,49.15917104200004],[7.346300496000111,49.15421010400008],[7.339065796000057,49.13968902600014],[7.334001506000077,49.134159648000136],[7.326456746000105,49.131834208],[7.305992879000144,49.13012888700014],[7.297104533000038,49.12811350499999],[7.290800008000133,49.12310089200004],[7.280258016000061,49.108993226],[7.274366902000053,49.10501414000011],[7.268062378000137,49.10563425700009],[7.241190633000144,49.11390248600004],[7.154994344000045,49.11441925100017],[7.139284708000048,49.117933248000114],[7.123575073000096,49.12330759700008],[7.085334513000106,49.14154937800004],[7.079856812000116,49.14201446500005],[7.07076175900005,49.13612335300017],[7.071588582000061,49.13059397400015],[7.07479252100012,49.125374655000044],[7.073242228000112,49.12031036399999],[7.042546427000076,49.107597962],[7.020532267000077,49.1189667770001],[7.008956746000138,49.14640696300015],[7.009473510000078,49.18170196500016],[6.987872762000109,49.182425436000145],[6.925447632000072,49.20557647700004],[6.914388876000146,49.20666168300012],[6.885243367000044,49.20480133100013],[6.843488810000081,49.21105418000003],[6.833463583000054,49.20945221],[6.827675822000089,49.19555125000004],[6.835220581000044,49.17937652600004],[6.839044637000086,49.16278839200011],[6.821784709000098,49.147750550000026],[6.809072306000131,49.14583852200012],[6.770108276000143,49.15529530900007],[6.725563192000038,49.155553691000065],[6.713780965000126,49.15886098200006],[6.700965210000078,49.172865296000154],[6.703755737000108,49.18511260999998],[6.708820027000087,49.19777333600002],[6.702515503000086,49.21363800100012],[6.6984847410001,49.21358632400002],[6.685048868000138,49.20779856400004],[6.680604696000045,49.20748850500014],[6.677917521000097,49.21105418000003],[6.675953817000077,49.218908997000156],[6.674816935000138,49.22113108400008],[6.671612996000079,49.225316875000104],[6.66375817900007,49.24386871300005],[6.659520711000113,49.24676259400003],[6.645671427000138,49.25001820900012],[6.640297078000088,49.25275706000015],[6.639160196000148,49.25678782200005],[6.641227254000114,49.26691640300011],[6.639676961000106,49.27115387000005],[6.573169393000057,49.31311513300007],[6.556426228000078,49.326395976000164],[6.550121704000077,49.338023173000025],[6.555599406000055,49.34716990200012],[6.573376098000096,49.347738343000074],[6.577716919000068,49.355799866000055],[6.574306274000064,49.361794332],[6.525730428000145,49.39548736600012],[6.518805786000057,49.40215362600004],[6.520769491000095,49.40256703800016],[6.520562785000038,49.40814809199999],[6.517875610000118,49.41641632100011],[6.511674438000114,49.42473622600009],[6.494517863000084,49.43553660100012],[6.402740519000133,49.46545725500006],[6.391681763000122,49.4666974900001],[6.383516886000108,49.464630432000135],[6.364499959000057,49.456103821],[6.353854614000056,49.45476023400015],[6.345307071000092,49.45534865200007],[6.345379679000132,49.46271840400003],[6.342279094000105,49.493000794000054],[6.348808550000085,49.52528975500009],[6.350754028000097,49.53491038100013],[6.350754028000097,49.56658803400005],[6.356438435000142,49.57759511300013],[6.371527954000044,49.59299469000011],[6.397572876000112,49.61387196900007],[6.407701457000087,49.62741119400006],[6.415246216000128,49.63464589400003],[6.417933390000144,49.63914174500006],[6.417003215000108,49.64575632700006],[6.410905396000145,49.64963206],[6.404497518000113,49.65247426400008],[6.402740519000133,49.655781555000075],[6.418243449000045,49.669889222],[6.49172733600011,49.70079172800008],[6.489763631000073,49.70296213799999],[6.482942342000115,49.708078105000155],[6.486352986000043,49.71293569],[6.49100386500001,49.714434306],[6.499685506000076,49.71221221899999],[6.492554158000132,49.71841339100008],[6.48779992600015,49.72559641600004],[6.485526163000117,49.73376129200015],[6.486249634000018,49.74270131499999],[6.495964803000077,49.748230693],[6.496378214000089,49.752106425000036],[6.493691040000044,49.756550598000146],[6.493794392000069,49.763630269000075],[6.498548624000079,49.78538604800018],[6.499995564000074,49.78605784100016],[6.500098918000077,49.794481100000056],[6.502269327000078,49.79587636300012],[6.502579387000139,49.79566965800008],[6.4972050370001,49.799442038],[6.493277629000119,49.799597066000146],[6.462478475000069,49.805488180000125],[6.414522746000046,49.805488180000125],[6.397056111000097,49.808588766000085],[6.380106242000096,49.815565084000085],[6.351374145000078,49.8332901000001],[6.33442427500006,49.84021474200007],[6.325639282000083,49.840369772000095],[6.310653116000111,49.83447865900002],[6.30259159400012,49.83494374700014],[6.301558065000052,49.838302714000136],[6.295567892000122,49.84861569200008],[6.291532837000119,49.855562643000056],[6.286778605000109,49.86104034500011],[6.27220585200007,49.867138164],[6.238306111000071,49.87690500900005],[6.222699829000106,49.88713694300012],[6.18983361800008,49.938296611000126],[6.172677043000107,49.95622833300008],[6.161928345000092,49.94248240200007],[6.153970174000051,49.951215719000125],[6.138777303000097,49.979327698000176],[6.12151737500011,49.996277568],[6.117176554000139,50.00439076800008],[6.119967081000111,50.01550120000009],[6.113765910000012,50.03637848000007],[6.10725467900005,50.04459503200011],[6.096402629000096,50.0486257940001],[6.105704386000127,50.060304668000164],[6.10942509000003,50.06356028300014],[6.107151327000111,50.06376698800001],[6.101156861000078,50.0634052540001],[6.099399861000109,50.064128723000024],[6.105704386000127,50.09224070200007],[6.110561971000037,50.10598663399999],[6.117486613000039,50.120456035000025],[6.126581665000089,50.12732900000019],[6.129475545000076,50.134046937],[6.125961547000117,50.140196432],[6.115832967000074,50.14546742800011],[6.118003377000149,50.150376689000055],[6.121310668000149,50.1615904750001],[6.123171020000086,50.164897767000085],[6.131749308000109,50.16830841100004],[6.151696411000017,50.169341939],[6.159137817000043,50.172442526000125],[6.165132284000065,50.18189931200011],[6.165752400000144,50.19316477500017],[6.160171346000112,50.204533590000054],[6.146838827000096,50.21404205400013],[6.15717411300011,50.222723694000095],[6.179808390000062,50.233007304000104],[6.189626912000023,50.24272247300006],[6.210400838000083,50.24902699800005],[6.253395630000057,50.25677846300006],[6.271792439000137,50.26742380800006],[6.267348267000045,50.27641550700009],[6.269415324000107,50.286492412000044],[6.276029907000094,50.29610422800015],[6.285951782000097,50.30385569200014],[6.299491007000086,50.30886830700002],[6.310653116000111,50.308248190000036],[6.322021932000098,50.30540598600008],[6.335457804000043,50.30385569200014],[6.362019490000079,50.30695627900009],[6.374525187000074,50.31548289100002],[6.373399684000105,50.32308003500004],[6.372458130000098,50.329435527],[6.337731567000077,50.36808949800012],[6.336387980000097,50.37992340200013],[6.343312622000099,50.39330759700005],[6.35044396900011,50.416872051000055],[6.351167440000039,50.433563538],[6.347343384000084,50.43697418300003],[6.340212036000139,50.437852682000155],[6.331633748000115,50.44689605700001],[6.326156046000108,50.457024638000156],[6.323262166000119,50.46601633700011],[6.325742635000097,50.47402618400018],[6.336904744000037,50.48100250200018],[6.31871464000011,50.481674296000065],[6.275409790000139,50.48803049700008],[6.260113566000086,50.492681376000164],[6.257839803000052,50.49407664000013],[6.255566040000132,50.49459340400007],[6.253085571000071,50.49407664000013],[6.25091516100008,50.492681376000164],[6.217118774000085,50.486015117000065],[6.207196900000099,50.48632517500012],[6.199238729000057,50.49040761300013],[6.190660441000119,50.50182810500014],[6.182598917000121,50.50658233700012],[6.190557088000077,50.515212301000176],[6.178878214000093,50.51578074200013],[6.170816691000113,50.51795115200012],[6.169473103000144,50.522498678000076],[6.177327922000075,50.53019846600016],[6.160688110000081,50.543582663000095],[6.17908492000015,50.56197947200009],[6.210607543000037,50.57867095900012],[6.232931763000096,50.58714589400004],[6.232931763000096,50.59076324500002],[6.244300577000075,50.5995482390001],[6.251328572000091,50.608436585],[6.249054809000086,50.61443105100012],[6.180015096000119,50.615516256000134],[6.159447876000115,50.62238922200002],[6.147769002000047,50.63675527000011],[6.161101521000091,50.64218129600009],[6.100226685000052,50.70129913400014],[6.081003052000113,50.71349477200006],[6.06436324000009,50.71447662400011],[6.02477909300012,50.70755198200014],[6.011549926000043,50.7085338350001],[6.00762251800009,50.71690541700018],[6.011343221000089,50.727447408000145],[6.010826457000064,50.73705922500015],[5.994186645000126,50.74258860300016],[5.992739705000133,50.74444895500007],[5.992636353000108,50.74625763000016],[5.993256469000073,50.74806630500014],[5.994910116000113,50.74992665600014],[5.997080525000115,50.762949117000105],[5.990569295000057,50.76904693600015],[5.980647420000139,50.773439433000036],[5.972999308000084,50.781811015000116],[5.968761841000116,50.79462677000002],[5.983954712000127,50.79219797800015],[5.998320760000041,50.800724589000154],[6.003591756000077,50.81261016899999],[6.001421346000085,50.82180857400009],[6.000491170000146,50.830438538000024],[6.009276164000113,50.84046376500005],[6.023022095000073,50.845424704000024],[6.045553019000096,50.84418446900015],[6.056715129000111,50.85265940400016],[6.062812948000071,50.86294301400007],[6.063123006000069,50.87090118400012],[6.054648071000145,50.89146840400012],[6.056508423000139,50.89808298800001],[6.061779419000088,50.90350901300017],[6.06374312400004,50.90753977499999],[6.031083618000138,50.914722799000124],[6.007519165000132,50.924076233000065],[5.999871053000078,50.92939890600012],[5.997287232000076,50.937357076000076],[5.995840291000064,50.9517748010001],[5.999664348000124,50.96009470600016],[6.005762167000085,50.96851796500014],[6.00369510900012,50.97373728400007],[5.967831665000062,50.97099843400012],[5.941580037000051,50.97647613500011],[5.927730754000065,50.977664694000126],[5.914191529000078,50.975235901000175],[5.888249959000035,50.967122701000065],[5.874607381000117,50.96536570299999],[5.87357385200005,50.99058380100014],[5.858174275000067,51.01934173600016],[5.852489868000106,51.042751160000115],[5.88049849500004,51.05205291800014],[5.894347778000082,51.047143657],[5.906233358000122,51.03740264900016],[5.919565877000138,51.029702860000086],[5.937962687000066,51.030943095],[5.950261678000088,51.03946970700012],[5.969485311000113,51.06492035000004],[5.982921183000144,51.074687195000095],[6.075421997000092,51.12036916100003],[6.132369426000082,51.13982533799999],[6.147252238000107,51.15225352000006],[6.12627160700012,51.164578349000024],[6.149112589000111,51.17633473700003],[6.157070760000096,51.179254456000095],[6.134126424000044,51.18421539400004],[6.084310344000102,51.162692159000116],[6.06084924300012,51.17090871200004],[6.05371789500009,51.189383037000155],[6.056611776000096,51.21170725500012],[6.065190063000102,51.23162852000003],[6.075421997000092,51.24266143900003],[6.09650598100012,51.25881032400012],[6.147769002000047,51.31816070600014],[6.158207641000104,51.32459442200009],[6.183632446000104,51.3357048540001],[6.193554321000106,51.344515686000086],[6.198928670000072,51.356969706000186],[6.202029256000087,51.37888051300014],[6.207817016000149,51.38766550800012],[6.192727499000085,51.39895680800002],[6.194071086000122,51.417379456],[6.201719197000102,51.43864430800009],[6.205336548000104,51.45843638200016],[6.20047896300008,51.47657480900009],[6.19334761500005,51.509337667000075],[6.153039998000082,51.538431499000076],[6.086480754000092,51.59553395600001],[6.08213993300012,51.607807109000056],[6.087514282000086,51.62209564200013],[6.099193156000069,51.64447153800002],[6.031497030000054,51.66299753900013],[6.008552694000115,51.68118764300009],[6.02198856600009,51.70950632799999],[6.012066691000086,51.71586252800002],[5.989742472000102,51.726378682000146],[5.978270304000091,51.72978932700009],[5.949228150000095,51.72937591600008],[5.939306274000103,51.73188222300014],[5.940133097000057,51.74263092100007],[5.946056400000145,51.746288216],[5.962353963000083,51.75635101300009],[5.964110962000063,51.77655649899999],[5.950778442000114,51.795909322000156],[5.928040812000063,51.806735535000186],[5.931451457000094,51.815649720000025],[5.948091268000098,51.822961935000095],[5.988915650000081,51.82745778400012],[6.008242635000045,51.83257375100011],[6.028913208000063,51.84210805300002],[6.043279256000062,51.846862285],[6.084000284000126,51.85365773500014],[6.116453084000057,51.848283387],[6.140017537000062,51.844536845000064],[6.156140584000127,51.84205637600009],[6.142704712000067,51.855182190000065],[6.105394327000056,51.87947011300015],[6.092991984000149,51.885309550000144],[6.1269950760001,51.89673004100013],[6.159241170000087,51.88729909300018],[6.191383911000116,51.87115020800009],[6.225180298000083,51.862546082000065],[6.256392862000069,51.86680938700012],[6.264661092000011,51.86618927100015],[6.271792439000137,51.861900127000084],[6.282851196000137,51.84960113500013],[6.28739872200009,51.84616465300011],[6.325742635000097,51.842547303000046],[6.341969034000015,51.83668202800014],[6.344966268000121,51.8211015830001],[6.382483358000115,51.82758697500015],[6.386617472000069,51.837560527000065],[6.378452596000044,51.86011728900009],[6.442531372000133,51.848360901000106],[6.462891887000068,51.848360901000106],[6.47942834400007,51.85301178000016],[6.528624308000133,51.876421204000124],[6.628153117000067,51.89750518900014],[6.716674846000046,51.89926218700013],[6.743753296000079,51.908331401],[6.767007690000099,51.92551381500006],[6.789848673000108,51.95114532500004],[6.798013550000121,51.956700542000036],[6.805661661000101,51.95752736500007],[6.810725952000098,51.960576274000104],[6.811656127000049,51.9727977510001],[6.809175659000061,51.97954152500013],[6.804008016000068,51.98437327100005],[6.778169800000057,52.00127146500016],[6.712850789000099,52.02385406500017],[6.690939982000145,52.02785898800009],[6.675023641000108,52.03480946900008],[6.672956583000143,52.050054016],[6.679881225000115,52.06046681800013],[6.688872925000083,52.06310231600007],[6.699414917000126,52.06356740400018],[6.711403849000106,52.067288107000174],[6.719465373000077,52.07356679300009],[6.7276302490001,52.08630503300007],[6.73290124500005,52.09198944100011],[6.749851115000125,52.10286733000005],[6.765870808000102,52.108396709000075],[6.77157568400014,52.10879250200013],[6.830673055000091,52.11289255800007],[6.843282105000128,52.11999806700011],[6.865399617000037,52.14779998800016],[6.884829956000118,52.16033152300015],[6.927721395000076,52.17190704400012],[6.94766849700008,52.182810771000085],[6.971129598000061,52.20627187100014],[6.981878296000076,52.21399749800007],[7.026320027000053,52.23063730900016],[7.029110555000017,52.23577911400015],[7.02660015200007,52.23862268700007],[7.02073897300005,52.24526173900013],[7.011850626000125,52.26662994400006],[7.012470744000098,52.28494923900003],[7.019705444000067,52.30003875800012],[7.039755900000102,52.328615825],[7.048230835000112,52.3650735470001],[7.034174845000109,52.39078257300018],[6.973300008000137,52.451373190000034],[6.966995483000062,52.44956451500015],[6.960794311000143,52.44284657800013],[6.951492553000036,52.43747222900008],[6.926481161000139,52.43297638000014],[6.9002295330001,52.431917013000074],[6.872014200000137,52.434733378000125],[6.820337769000105,52.44682566300009],[6.741169474000088,52.45367279100015],[6.714814494000109,52.4615534470001],[6.695074097000145,52.47560943700013],[6.688976278000098,52.4905180870001],[6.687529337000115,52.50813975100009],[6.684015340000144,52.52599395800003],[6.671716349000121,52.54167775500017],[6.688252807000111,52.542582093000036],[6.743753296000079,52.55971283000018],[6.710990438000096,52.576636862000086],[6.70396244300008,52.58307057700012],[6.703652384000094,52.5913904830001],[6.708199911000121,52.599684550000134],[6.710163615000056,52.60865041199998],[6.7017920320001,52.619114889000045],[6.719083149000085,52.62675898200003],[6.737035360000078,52.634695333000145],[6.77052168700007,52.641025696000085],[6.865399617000037,52.64195587200014],[6.918419637000056,52.632189026000084],[6.967718953000144,52.6366590380001],[6.982808471000055,52.632783305000046],[7.018465210000045,52.62598785400009],[7.036655314000085,52.64738189700001],[7.043993367000069,52.68262522400009],[7.053295125000091,52.790577291000105],[7.061976766000043,52.82401194200009],[7.072150759000124,52.841316552000066],[7.079856812000116,52.85442352300005],[7.161918986000103,52.9326358040001],[7.183623088000104,52.96612213100012],[7.19282149300011,52.99800649000015],[7.194371786000119,53.03384409600001],[7.185070027000108,53.10544179300017],[7.181349324000081,53.11417511100014],[7.176491740000074,53.11939443000015],[7.172667684000118,53.12575063100017],[7.17194421400012,53.13771372500004],[7.174424682000108,53.145775249000124],[7.188584025000067,53.167789408000104],[7.195405314000112,53.18499766100008],[7.198505900000043,53.200578105000105],[7.19747237100006,53.21662363700007],[7.194590691000116,53.24502187700007],[7.204437696000127,53.24827708500011],[7.21583092500009,53.25560130400014],[7.224619988000057,53.262925523000135],[7.233571811000104,53.27362702000006],[7.2369897800001,53.28554922100001],[7.22950280000012,53.296576239000146],[7.254730665000095,53.31952545800014],[7.268321160000141,53.32367584800006],[7.291514519000089,53.32391998900012],[7.313161655000073,53.32050202],[7.347666863000086,53.30735911700005],[7.366547071000126,53.30280182500012],[7.342539910000085,53.32404205900009],[7.302907748000051,53.33274974199999],[7.075205925000148,53.33759186400006],[7.038259311000104,53.34857819200003],[7.023610873000081,53.376410223000065],[7.023285352000073,53.45050690300003],[7.027679884000037,53.467352606000034],[7.047048373000051,53.497707424],[7.051442905000044,53.512600002000156],[7.059743686000019,53.52171458500014],[7.079356316000087,53.521551825000174],[7.119639519000144,53.516302802],[7.125010613000114,53.52435944200012],[7.134532097000118,53.52741120000003],[7.141774936000047,53.53717682500014],[7.13998457100007,53.54979075700005],[7.131114129000109,53.556952216000084],[7.101898634000064,53.56574127800015],[7.088877800000091,53.5737165390001],[7.086761915000068,53.58685944200006],[7.100922071000099,53.59788646000011],[7.133148634000121,53.61127350500011],[7.169444207000141,53.635484117000104],[7.188975457000112,53.643500067000055],[7.226084832000112,53.666489976000136],[7.305023634000064,53.684800523000106],[7.458832227000072,53.69513580900012],[7.469574415000067,53.69074127800003],[7.480235222000117,53.682033596000124],[7.503916863000114,53.67865631700012],[7.651377800000091,53.69696686400009],[7.951426629000082,53.721909898000106],[8.031423373000052,53.70807526200012],[8.031423373000052,53.700628973000114],[8.02491295700014,53.67255280200014],[8.05290774800008,53.63629791900003],[8.094086134000065,53.604722398000135],[8.127614780000101,53.59076569200006],[8.127614780000101,53.584621486000074],[8.119151238000143,53.571926174000126],[8.134613477000073,53.56745026200015],[8.156748894000145,53.56366608300014],[8.167979363000143,53.55320872600005],[8.164886915000068,53.53522370000011],[8.155446811000047,53.52602773600013],[8.133799675000148,53.516302802],[8.115733269000145,53.510728257],[8.076345248000052,53.508612372000165],[8.05876712300011,53.50202057500009],[8.076996290000096,53.468695380000106],[8.086192254000082,53.45612213700012],[8.099782748000052,53.44741445500013],[8.112478061000104,53.451076565000086],[8.123871290000068,53.45400625200001],[8.140635613000084,53.45359935100011],[8.152354363000057,53.44977448100009],[8.17139733200014,53.43659088700004],[8.178558790000096,53.433742580000015],[8.186696811000104,53.42951080900018],[8.19483483200014,53.42011139500006],[8.20533287900011,53.41071198100003],[8.219737175000063,53.40643952000012],[8.236501498000079,53.40672435100005],[8.248708530000073,53.408392645000056],[8.259450717000078,53.41229889500006],[8.271739129000139,53.41950104400008],[8.292816602000073,53.44049713700004],[8.315114780000101,53.47492096600017],[8.320485873000052,53.50922272300012],[8.291514519000145,53.529364325000174],[8.252207879000139,53.523098049000126],[8.231211785000113,53.525213934000035],[8.233164910000056,53.539862372000144],[8.241709832000083,53.556301174000126],[8.248871290000125,53.59027741100009],[8.257334832000083,53.604437567],[8.270681186000076,53.612860419000135],[8.287608269000145,53.61688873900011],[8.329356316000116,53.61810944200011],[8.348480665000066,53.612860419000135],[8.363291863000141,53.600572007],[8.375498894000115,53.58690013200005],[8.387705925000091,53.57713450700011],[8.428070509000063,53.56476471600008],[8.51343834700009,53.55475495000009],[8.55209394600007,53.543605861000074],[8.55209394600007,53.53620026200009],[8.528168165000096,53.523911851000136],[8.506195509000092,53.50796133000013],[8.490000847000118,53.48639557500012],[8.48389733200014,53.45734284100014],[8.485036655000073,53.40119049700003],[8.490896030000016,53.376450914000074],[8.504405144000089,53.35805898600002],[8.507334832000112,53.38279857],[8.496755405000073,53.445257880000135],[8.497569207000083,53.474758205000015],[8.512868686000047,53.496486721000096],[8.535817905000043,53.50617096600014],[8.556651238000113,53.51821523600016],[8.565765821000099,53.54669830900015],[8.560801629000139,53.551703192],[8.535166863000084,53.59076569200006],[8.527517123000052,53.596625067],[8.51710045700014,53.61017487200017],[8.508311394000089,53.625148830000015],[8.501231316000116,53.64419179900001],[8.487071160000113,53.66693756700012],[8.48389733200014,53.68357982],[8.486094597000118,53.70042552299999],[8.492198113000114,53.71515534100017],[8.529633009000063,53.770697333000115],[8.556162957000112,53.83095937700007],[8.573252800000148,53.857652085],[8.58757571700005,53.87042877800006],[8.607106967000021,53.881537177000084],[8.629242384000094,53.88939036700004],[8.651866082000083,53.89248281500012],[8.67269941500004,53.89158763200005],[8.684580925000091,53.88849518400015],[8.709157748000107,53.8719750020001],[8.744639519000089,53.85415273600002],[8.782481316000144,53.84247467700011],[8.860687696000127,53.831000067000055],[8.903575066000116,53.831732489],[8.976247592000107,53.84243398600002],[9.016286655000044,53.840521552000055],[9.035004102000102,53.85358307500006],[9.114512566000087,53.865139065000065],[9.193614129000082,53.864691473000065],[9.210703972000147,53.8719750020001],[9.224294467000107,53.865912177],[9.240733269000089,53.8641625020001],[9.274668816000144,53.865139065000065],[9.283376498000107,53.86163971600017],[9.305349155000044,53.84454987200003],[9.402679884000122,53.74241771000008],[9.442881707000112,53.714300848000065],[9.47095787900011,53.700628973000114],[9.48471113400012,53.69009023600007],[9.498383009000063,53.65985748900009],[9.567067905000073,53.5995954450001],[9.582367384000122,53.591294664000046],[9.600922071000127,53.586330471000096],[9.624766472000118,53.584621486000074],[9.637217644000115,53.58100006700012],[9.696625196000099,53.55662669500008],[9.764008009000094,53.54767487200003],[9.819021030000071,53.54035065300003],[9.832041863000143,53.543605861000074],[9.819590691000116,53.55662669500008],[9.782074415000096,53.56972890800012],[9.692393425000148,53.575913804000024],[9.65577233200014,53.584621486000074],[9.583669467000021,53.61245351800015],[9.550791863000143,53.63458893400012],[9.539073113000143,53.666489976000136],[9.53614342500012,53.693752346000124],[9.53223717500012,53.71116771],[9.522227410000141,53.716620184000035],[9.475271030000101,53.73216380400014],[9.460215691000087,53.73541901200017],[9.435801629000139,53.74868398600002],[9.412445509000065,53.778753973000065],[9.396657748000107,53.81102122599999],[9.395192905000044,53.831000067000055],[9.35873457100007,53.839544989],[9.295583530000101,53.87189362200011],[9.257823113000143,53.88556549700006],[9.22046959700009,53.89077383000013],[9.093435092000078,53.89248281500012],[9.055430535000085,53.902899481000034],[9.029958530000071,53.907131252000156],[9.018321160000141,53.90273672100007],[9.007823113000086,53.89248281500012],[8.984629754000139,53.897040106000176],[8.94947350400008,53.912909247000115],[8.916026238000141,53.93740469000015],[8.83334394600007,54.03644440300003],[8.871836785000141,54.04694245000009],[8.890635613000114,54.047796942],[8.914561394000089,54.043890692],[8.953868035000085,54.02830638200011],[8.975352410000113,54.024074611000074],[8.997243686000047,54.03021881700006],[9.004893425000148,54.04116445500013],[9.013031446000099,54.060980536000145],[9.018565300000091,54.082424221000096],[9.018321160000141,54.09788646000002],[9.006683790000068,54.10814036700013],[8.98812910200013,54.117865302000084],[8.974457227000102,54.12807851800004],[8.977305535000141,54.13947174700017],[8.977305535000141,54.14569733300014],[8.95289147200009,54.15009186400012],[8.917979363000086,54.14630768400009],[8.885427280000101,54.13703034100014],[8.867442254000082,54.125189520000085],[8.860687696000127,54.125189520000085],[8.83334394600007,54.153143622000115],[8.815684441000144,54.17560455900012],[8.812836134000122,54.18048737200009],[8.820974155000044,54.20050690300015],[8.836273634000094,54.21775950700005],[8.846690300000091,54.233547268],[8.839610222000118,54.248724677],[8.839610222000118,54.25556061400012],[8.851898634000065,54.26105377800006],[8.894216342000078,54.268215236000074],[8.911468946000099,54.269191799000154],[8.922048373000052,54.27423737200009],[8.937510613000143,54.286688544000114],[8.953135613000143,54.302557684000035],[8.963145379000139,54.31761302300005],[8.940277540000125,54.31500885600015],[8.902598504000139,54.295843817],[8.88111412900011,54.29026927299999],[8.883067254000052,54.29360586100002],[8.885915561000104,54.30072663000006],[8.887950066000114,54.303941148000106],[8.857595248000052,54.30182526200009],[8.805430535000113,54.29242584800009],[8.774668816000142,54.29026927299999],[8.738942905000101,54.29389069200015],[8.723480665000096,54.29026927299999],[8.690196160000085,54.27147044500013],[8.678477410000113,54.269191799000154],[8.651866082000083,54.27484772300015],[8.623383009000065,54.29010651200012],[8.602712436000047,54.31207916900003],[8.59986412900011,54.33808014500012],[8.614024285000113,54.34837474200013],[8.641368035000085,54.35565827000015],[8.67204837300011,54.35927969],[8.695567254000139,54.358587958000086],[8.695567254000139,54.36542389500009],[8.677582227000102,54.367905992000104],[8.66382897200009,54.37555573100006],[8.650645379000139,54.37799713700018],[8.634776238000114,54.36542389500009],[8.626231316000087,54.37641022300015],[8.62916100400011,54.38768138200014],[8.63843834700009,54.39813873900012],[8.648448113000143,54.40639883],[8.669769727000128,54.400824286],[8.750824415000068,54.413804429],[8.860687696000127,54.413804429],[8.88607832100007,54.41779205900015],[8.907237175000148,54.425523179],[8.94947350400008,54.44733307500003],[8.988047722000147,54.458441473000065],[9.004730665000096,54.46588776200004],[9.011485222000147,54.48212311400009],[9.01156660200013,54.50633372599999],[8.986094597000118,54.52928294500008],[8.90447024800011,54.58063385600017],[8.89283287900011,54.59125397300012],[8.887950066000114,54.60187409100016],[8.878754102000073,54.606512762000094],[8.858164910000113,54.606146552000084],[8.837087436000104,54.60268789300009],[8.825856967000107,54.598130601000136],[8.819021030000073,54.605617580000015],[8.853282097000147,54.61928945500013],[8.818369988000143,54.67365143400014],[8.805430535000113,54.687567450000024],[8.77670332100007,54.69798411700013],[8.722666863000086,54.72553131700015],[8.688731316000144,54.735296942],[8.688731316000144,54.7421735700001],[8.69434655000012,54.76023997600011],[8.68132571700005,54.78058502800011],[8.661875847000147,54.80060455900018],[8.648448113000143,54.81785716399999],[8.642751498000079,54.844183661],[8.647227410000141,54.86737702000011],[8.660816132543687,54.896303911092375],[8.695882202000092,54.88998402900013],[8.732779175000104,54.88905385400009],[8.80088871200013,54.90383331400001],[8.82424645900008,54.905900370000055],[8.904138224000093,54.8979422]]],[[[8.38835696700005,54.89423248900003],[8.436534050000091,54.88727448100012],[8.654470248000079,54.89362213700015],[8.629405144000145,54.88214752800012],[8.504405144000089,54.886175848000065],[8.488780144000117,54.881293036],[8.461192254000082,54.86880117400009],[8.446055535000085,54.86627838700018],[8.377126498000052,54.86627838700018],[8.37061608200014,54.86823151200004],[8.361989780000044,54.876939195000105],[8.353526238000113,54.87933991100006],[8.343923373000052,54.879095770000035],[8.33741295700014,54.87759023600015],[8.307139519000145,54.8653832050001],[8.302012566000114,54.86261627800003],[8.299327019000145,54.855292059000114],[8.297862175000091,54.83559804900007],[8.294932488000086,54.83152903900013],[8.298350457000083,54.77692291900014],[8.295746290000096,54.75910065300017],[8.29070071700005,54.745306708000086],[8.284434441000087,54.74237702000015],[8.277842644000117,54.75641510600009],[8.277028842000107,54.782782294000114],[8.28858483200014,54.89130280199999],[8.298024936000045,54.91254303600009],[8.373708530000044,55.034979559000035],[8.415782097000088,55.06533437700001],[8.463389519000089,55.05068594],[8.402354363000114,55.04877350500014],[8.394541863000114,55.0438500020001],[8.422211134000122,55.042181708000086],[8.430430535000113,55.03001536699999],[8.421560092000078,55.016262111000074],[8.380869988000086,55.00307851800012],[8.361989780000044,54.98680247599999],[8.351573113000143,54.96674225500011],[8.36036217500012,54.94818756700011],[8.354502800000091,54.912746486000046],[8.38835696700005,54.89423248900003]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Country","admin":"Denmark","adm0_a3":"DNK","geou_dif":0,"geounit":"Denmark","gu_a3":"DNK","su_dif":0,"subunit":"Denmark","su_a3":"DNK","brk_diff":0,"name":"Denmark","name_long":"Denmark","brk_a3":"DNK","brk_name":"Denmark","brk_group":null,"abbrev":"Den.","postal":"DK","formal_en":"Kingdom of Denmark","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Denmark","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":5500510,"gdp_md_est":203600,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"DA","iso_a2":"DK","iso_a3":"DNK","iso_n3":"208","un_a3":"208","wb_a2":"DK","wb_a3":"DNK","woe_id":23424796,"woe_id_eh":23424796,"woe_note":"Exact WOE match as country","adm0_a3_is":"DNK","adm0_a3_us":"DNK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DNK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[11.256032748000107,54.954575914000046],[11.303477410000113,54.93244049700017],[11.321055535000141,54.92772044500007],[11.33887780000012,54.91913483300014],[11.36890709700009,54.881089585000055],[11.392751498000052,54.872503973000114],[11.416758660000113,54.86933014500006],[11.59473717500012,54.81110260600015],[11.585134311000047,54.82851797100004],[11.573578321000099,54.8393415390001],[11.572764519000089,54.84796784100003],[11.59473717500012,54.85887278900002],[11.622080925000091,54.85887278900002],[11.646332227000073,54.8653832050001],[11.656260613000084,54.86627838700018],[11.647227410000085,54.87714264500006],[11.644786004000139,54.88963450700008],[11.646332227000073,54.90228913000014],[11.649424675000148,54.91351959800014],[11.725759311000104,54.873358466000134],[11.731944207000055,54.85887278900002],[11.75562584700009,54.84113190300009],[11.770681186000104,54.83429596600008],[11.78728274800005,54.83152903900013],[11.777191602000102,54.82599518400009],[11.772959832000083,54.8246931010001],[11.787608269000089,54.80687083500011],[11.837738477000073,54.782782294000114],[11.848643425000148,54.77317942900011],[11.851328972000116,54.75682200700011],[11.855479363000086,54.749457098000036],[11.855479363000086,54.74359772300006],[11.84522545700014,54.73191966399999],[11.833832227000073,54.724554755000085],[11.82357832100007,54.72211334800015],[11.81470787900011,54.71869538000014],[11.806976759000092,54.70799388200011],[11.846446160000056,54.69782135600014],[11.842621290000068,54.67621491100005],[11.81072024800005,54.655096747000144],[11.766123894000144,54.64655182500003],[11.610524936000076,54.666408596000124],[11.56006920700014,54.659613348],[11.512217644000117,54.64655182500003],[11.474375847000061,54.62612539300015],[11.4518335300001,54.628363348000114],[11.358734571000127,54.660549221000096],[11.297699415000068,54.691555080000015],[11.18775475400011,54.73224518400009],[11.138194207000083,54.73859284100003],[11.084646030000073,54.75311920800006],[11.030528191000085,54.76064687700012],[11.009287957000112,54.77163320500007],[10.999196811000047,54.78676992400007],[11.00570722700013,54.80365631700006],[11.03077233200014,54.81216054900001],[11.061289910000085,54.809312242000075],[11.089691602000102,54.810614325000145],[11.108164910000113,54.83152903900013],[11.09197024800008,54.83502838700012],[11.07837975400011,54.84113190300009],[11.0252384770001,54.879461981000034],[11.018809441000085,54.886175848000065],[11.018809441000085,54.903387762000094],[11.032399936000047,54.91925690300012],[11.073985222000116,54.94818756700011],[11.088145379000139,54.944159247000144],[11.231700066000114,54.961249091000106],[11.256032748000107,54.954575914000046]]],[[[10.349619988000057,54.89671458500014],[10.364268425000091,54.893011786],[10.379405144000089,54.89305247599999],[10.391368035000113,54.89545319200012],[10.39584394600007,54.90346914300006],[10.388845248000079,54.92031484600007],[10.403086785000085,54.90839264500012],[10.415212436000074,54.878485419000135],[10.426036004000082,54.872503973000114],[10.446787957000083,54.87238190300014],[10.460948113000113,54.87449778899999],[10.463633660000085,54.882473049000126],[10.450205925000091,54.899807033000016],[10.466644727000073,54.89057038000006],[10.48568769600007,54.883693752000156],[10.499196811000047,54.874579169000135],[10.498708530000073,54.85887278900002],[10.508148634000094,54.854925848],[10.518565300000148,54.85199616100009],[10.440114780000043,54.84149811400012],[10.418630405000101,54.82782623900009],[10.406260613000143,54.8246931010001],[10.383474155000043,54.830755927],[10.211436394000145,54.939357815000065],[10.195160352000102,54.96185944200006],[10.18921959700009,54.97748444200015],[10.203868035000085,54.96808502800012],[10.28874759200005,54.94074127800014],[10.313731316000087,54.92772044500007],[10.337250196000127,54.90591054900001],[10.349619988000057,54.89671458500014]]],[[[12.537608269000117,55.00238678600009],[12.553721550000091,54.96808502800012],[12.55176842500012,54.95718008000013],[12.54265384200005,54.95115794500013],[12.526215040000068,54.948675848],[12.502777540000068,54.94818756700011],[12.38461347700013,54.963080145000085],[12.348399285000111,54.96002838700018],[12.313975457000083,54.950873114],[12.280039910000113,54.93455638200008],[12.226817254000139,54.892645575000174],[12.207774285000141,54.886175848000065],[12.178721550000148,54.88898346600003],[12.115000847000118,54.90729401200017],[12.115000847000118,54.91351959800014],[12.129161004000139,54.91351959800014],[12.124685092000078,54.92373281500009],[12.128916863000086,54.93162669500005],[12.13819420700014,54.93724192900005],[12.149099155000044,54.94082265800013],[12.144053582000083,54.94379303600014],[12.134532097000088,54.951605536000116],[12.129161004000139,54.954413153000175],[12.151377800000091,54.96889883000013],[12.164398634000094,54.97264232000008],[12.177012566000142,54.96808502800012],[12.184336785000085,54.975531317],[12.177012566000142,54.98920319200012],[12.193125847000118,54.98834870000003],[12.217295769000145,54.97866445500007],[12.23218834700009,54.975531317],[12.242198113000084,54.97662995000006],[12.274750196000127,54.98444245000003],[12.286875847000147,54.98920319200012],[12.281504754000082,54.99909088700003],[12.281260613000143,55.00714752800017],[12.285655144000115,55.013128973],[12.294200066000144,55.016546942],[12.294200066000144,55.02338288000011],[12.261566602000102,55.03681061400011],[12.252696160000141,55.0438500020001],[12.24756920700014,55.053859768000066],[12.250987175000148,55.06073639500009],[12.26197350400011,55.06427643400015],[12.280039910000113,55.06427643400015],[12.301768425000091,55.04205963700009],[12.335297071000127,55.03327057500003],[12.417165561000076,55.03021881700015],[12.504730665000125,55.01976146000005],[12.537608269000117,55.00238678600009]]],[[[9.793467644000089,55.08075592700014],[9.853037957000083,55.04010651200015],[9.884776238000141,55.03021881700015],[9.929047071000099,55.02619049700017],[9.960948113000114,55.01504140800016],[9.986582879000082,54.99774811400005],[10.01140384200005,54.975531317],[10.025889519000089,54.95978424700006],[10.0651147800001,54.89081452],[10.064463738000143,54.881008205000064],[10.050466342000105,54.878851630000085],[10.021983269000087,54.87933991100006],[10.007090691000144,54.87482330900009],[9.987559441000144,54.86591217700005],[9.968028191000087,54.85952383000013],[9.953623894000117,54.86261627800003],[9.937185092000107,54.87091705900009],[9.891123894000089,54.87929922100007],[9.874278191000087,54.886175848000065],[9.874278191000087,54.893011786],[9.900889519000117,54.900702216000106],[9.932302280000043,54.89280833500014],[9.96387780000012,54.87995026200012],[9.991547071000127,54.872503973000114],[9.991547071000127,54.87933991100006],[9.943695509000094,54.90363190300003],[9.898285352000102,54.91299062700007],[9.887950066000116,54.91351959800014],[9.87794030000012,54.91132233300006],[9.863536004000139,54.903062242000075],[9.85377037900011,54.899807033000016],[9.814707879000139,54.901068427000105],[9.780935092000078,54.91681549700009],[9.76124108200014,54.94306061400003],[9.764414910000085,54.975531317],[9.758148634000063,54.975531317],[9.758148634000063,54.98175690300015],[9.78028405000012,54.97284577000012],[9.804047071000127,54.95718008000013],[9.827403191000116,54.94546133000016],[9.847504102000073,54.94818756700011],[9.84327233200014,54.95172760600009],[9.836680535000085,54.95856354400003],[9.832774285000085,54.965155341000084],[9.836680535000085,54.96808502800012],[9.842133009000122,54.97028229400011],[9.835215691000114,54.975165106000176],[9.793711785000113,54.99217357000005],[9.786794467000107,55.0001488300001],[9.799082879000082,55.009711005],[9.799082879000082,55.016546942],[9.72055097700013,55.01227448100009],[9.706879102000102,55.013128973],[9.696950717000107,55.017523505000085],[9.684825066000116,55.01854075700014],[9.674164259000094,55.02106354400014],[9.668793165000125,55.03021881700015],[9.672373894000087,55.0346540390001],[9.69125410200013,55.042792059000035],[9.696625196000099,55.05068594],[9.678233269000145,55.050197658000016],[9.661631707000083,55.04653554900006],[9.64551842500012,55.04486725500006],[9.628428582000083,55.05068594],[9.628428582000083,55.058050848],[9.716644727000045,55.08222077],[9.751963738000084,55.085394598000065],[9.793467644000089,55.08075592700014]]],[[[10.837738477000102,54.93724192900005],[10.741058790000068,54.752386786000145],[10.731293165000125,54.74005768400009],[10.717539910000113,54.73578522300009],[10.693858269000089,54.735296942],[10.681895379000082,54.744818427],[10.65642337300008,54.80365631700006],[10.645518425000091,54.81460195500013],[10.632090691000087,54.823431708],[10.601084832000083,54.838324286000145],[10.625336134000063,54.83930084800012],[10.640879754000052,54.84320709800012],[10.653493686000045,54.851629950000174],[10.669281446000099,54.86627838700018],[10.678558790000123,54.88304271],[10.684418165000096,54.887844143000095],[10.693858269000089,54.88275788000006],[10.69890384200005,54.88117096600002],[10.72445722700013,54.886175848000065],[10.72217858200014,54.896063544000086],[10.717784050000148,54.90729401200017],[10.708994988000086,54.902980861000074],[10.700368686000104,54.901556708000115],[10.691905144000145,54.902980861000074],[10.682953321000127,54.90729401200017],[10.697032097000147,54.93134186400012],[10.71827233200014,54.94916413],[10.774099155000044,54.98655833500014],[10.79818769600007,54.996568101000136],[10.854991082000112,55.0438500020001],[10.861989780000101,55.07208893400015],[10.89551842500012,55.12152741100003],[10.934255405000071,55.15965403899999],[10.956716342000078,55.15371328300016],[10.908946160000113,55.03021881700015],[10.889903191000116,54.99738190300003],[10.837738477000102,54.93724192900005]]],[[[14.889008009000037,55.233221747000144],[14.926799100000066,55.21579873500018],[14.95435443400004,55.2192544170001],[14.973399285000111,55.21613190300012],[14.98975670700011,55.19603099200007],[15.000498894000145,55.18842194200012],[15.012868686000076,55.18382396],[15.084542879000137,55.15457949600015],[15.131602410000111,55.14545319200006],[15.151377800000118,55.13320547100001],[15.146657748000111,55.12824127800015],[15.144541863000114,55.124823309000064],[15.142344597000118,55.12213776200015],[15.13770592500009,55.11953359600007],[15.145030144000087,55.10488515800016],[15.147715691000087,55.095607815],[15.14470462300008,55.087103583000086],[15.134287957000083,55.07485586100002],[15.11280358200014,55.05463288],[15.106618686000077,55.044663804],[15.110362175000118,55.036363023000106],[15.110362175000118,55.03021881700015],[15.1132422310001,55.01829487400012],[15.09735325700012,55.00782296300009],[15.086685936000093,54.99921337800005],[15.072666226000052,54.991638006000144],[15.023663842000133,54.99933929399999],[14.982869819000145,55.001013408000134],[14.92726517400007,55.01369188200012],[14.858606616000115,55.0382263530001],[14.780832726000114,55.051128327000114],[14.699554884000092,55.08917877800009],[14.684172687000114,55.10134680800003],[14.69704474600013,55.12265371400004],[14.701426629000139,55.16469961100002],[14.705739780000073,55.22565338700012],[14.709239129000137,55.235825914000074],[14.717539910000113,55.246771552000105],[14.737071160000113,55.266669012000115],[14.745127800000146,55.28156159100017],[14.75212649800011,55.29877350499999],[14.760915561000076,55.309271552000055],[14.774587436000017,55.30390045799999],[14.814952019000089,55.270412502000156],[14.828949415000125,55.26170482000007],[14.85142220400013,55.248199851],[14.889008009000037,55.233221747000144]]],[[[8.4119572270001,55.438706773000106],[8.428558790000038,55.43353913],[8.44890384200005,55.43553294500005],[8.463389519000089,55.42743561400012],[8.463063998000052,55.41571686400012],[8.45020592500012,55.39337799700009],[8.452891472000118,55.38336823100012],[8.460459832000055,55.37238190300015],[8.467458530000043,55.35370514500009],[8.476410352000073,55.345445054],[8.451670769000089,55.33974844],[8.425303582000112,55.35553620000014],[8.402354363000114,55.380031643000095],[8.370941602000073,55.42743561400012],[8.36426842500012,55.449042059000114],[8.374359571000099,55.46328359600004],[8.408213738000141,55.468410549000126],[8.4119572270001,55.438706773000106]]],[[[10.338389519000145,55.61009349200005],[10.407399936000104,55.58295319200012],[10.423024936000076,55.57200755400005],[10.435394727000102,55.559719143],[10.444183790000096,55.55316803600011],[10.453623894000089,55.55027903899999],[10.471934441000144,55.549017645000085],[10.48853600400011,55.54547760600009],[10.518809441000116,55.533433335],[10.502452019000089,55.53717682500012],[10.486827019000117,55.53717682500012],[10.475271030000101,55.53196849200013],[10.470713738000141,55.52020905200014],[10.47437584700009,55.51581452000006],[10.489105665000096,55.50910065300012],[10.491221550000091,55.503119208],[10.486013217000107,55.494777736000124],[10.477793816000114,55.49249909100014],[10.46778405000012,55.49213288000014],[10.457041863000114,55.48944733300006],[10.419606967000078,55.45880768400015],[10.436045769000144,55.4421247420001],[10.471527540000068,55.443060614],[10.491221550000091,55.46527741100006],[10.502452019000089,55.463568427000055],[10.566905144000089,55.48265208500014],[10.604746941000116,55.48944733300006],[10.609141472000118,55.492580471000124],[10.607188347000147,55.49941640800016],[10.602305535000085,55.50625234600007],[10.597666863000143,55.50934479400014],[10.588715040000123,55.51068756700014],[10.579112175000148,55.51410553600006],[10.571055535000113,55.518703518000095],[10.566905144000089,55.52362702000014],[10.569834832000112,55.532416083000115],[10.582286004000109,55.52912018400018],[10.595550977000045,55.521389065000065],[10.601084832000083,55.51679108300014],[10.613780144000117,55.52789948100014],[10.610524936000076,55.54364655200011],[10.600840691000114,55.561224677000055],[10.594248894000144,55.57827383],[10.599131707000112,55.57367584800006],[10.614593946000127,55.56460195500007],[10.615000847000147,55.58144765800007],[10.608409050000091,55.60626862200002],[10.608571811000047,55.61298248900009],[10.627614780000044,55.61359284100003],[10.656911655000044,55.594875393000066],[10.70411217500012,55.55027903899999],[10.706065300000091,55.54389069200006],[10.707041863000141,55.534979559000035],[10.709239129000139,55.52704498900006],[10.71436608200014,55.52362702000014],[10.716807488000086,55.52142975500005],[10.738129102000073,55.50934479400014],[10.744476759000094,55.49555084800015],[10.74236087300008,55.487494208000115],[10.733083530000043,55.48187897300003],[10.703949415000066,55.471136786],[10.657481316000114,55.45970286700005],[10.588389519000117,55.46336497600002],[10.571299675000148,55.461249091000084],[10.559418165000125,55.455308335000055],[10.55404707100007,55.442572333000115],[10.563324415000096,55.436224677000084],[10.57943769600007,55.43585846600016],[10.594248894000144,55.441066799000154],[10.589610222000118,55.44623444200006],[10.588552280000073,55.44940827000011],[10.595957879000139,55.459662177000055],[10.615733269000089,55.45685455900009],[10.682953321000127,55.44790273600007],[10.697927280000071,55.440252997000144],[10.796641472000118,55.35854726800015],[10.80307050900012,55.34975820500009],[10.828379754000082,55.306586005000085],[10.834320509000094,55.29026927300004],[10.826914910000113,55.29026927300004],[10.815114780000044,55.30084870000012],[10.796885613000141,55.30768463700004],[10.780284050000091,55.30491771000008],[10.772959832000083,55.28709544499999],[10.77865644600007,55.274847723000114],[10.805349155000101,55.25043366100009],[10.813324415000068,55.235581773000106],[10.815196160000113,55.21405670799999],[10.81267337300011,55.19428131700006],[10.806000196000042,55.17739492400007],[10.790782097000061,55.156927802000105],[10.787852410000141,55.14948151200004],[10.78663170700014,55.129461981000176],[10.783376498000079,55.12421295799999],[10.758799675000063,55.10529205900014],[10.74935957100007,55.09308502800009],[10.742686394000087,55.081691799000126],[10.733653191000087,55.071844794000114],[10.717784050000148,55.06427643400015],[10.705577019000089,55.062567450000145],[10.666270379000082,55.06427643400015],[10.621429884000065,55.06427643400015],[10.604746941000116,55.062567450000145],[10.586110873000052,55.057521877000035],[10.568858269000117,55.049872137000094],[10.556407097000118,55.04010651200015],[10.538259311000104,55.02973053600006],[10.516856316000144,55.03131745000009],[10.477549675000148,55.0438500020001],[10.410655144000145,55.046942450000174],[10.388845248000079,55.05068594],[10.379161004000139,55.05451080900012],[10.371348504000139,55.05902741100008],[10.362559441000087,55.062730210000105],[10.35092207100007,55.06427643400015],[10.325938347000147,55.06289297100006],[10.31275475400011,55.063666083],[10.234222852000073,55.092230536],[10.20525149800008,55.09369538000005],[10.197601759000063,55.08608633],[10.19703209700009,55.06427643400015],[10.181895379000082,55.070868231000034],[10.15837649800011,55.08665599199998],[10.141774936000076,55.092230536],[10.12126712300011,55.09247467700014],[10.08350670700014,55.086981512000094],[10.065928582000112,55.092230536],[10.142588738000086,55.12579987200003],[10.156016472000061,55.140082098000036],[10.138682488000086,55.154282945000126],[10.126149936000076,55.17064036700005],[10.11296634200005,55.18378327],[10.09400475400011,55.18842194200012],[10.078949415000096,55.18593984600001],[10.067556186000047,55.18227773600013],[10.055837436000045,55.17975495000003],[10.039317254000082,55.18097565300014],[10.01661217500012,55.19428131700006],[10.00359134200005,55.197333075000145],[9.991547071000127,55.18842194200012],[9.994476759000063,55.17279694200014],[10.02914472700013,55.14240143400018],[10.025645379000139,55.12571849200004],[10.020681186000104,55.124457098000114],[9.985524936000047,55.12775299700017],[9.982920769000117,55.13060130400011],[9.984385613000086,55.134670315000065],[9.984141472000147,55.140082098000036],[9.9869897800001,55.13934967699999],[9.98975670700014,55.143377997000144],[9.988780144000089,55.15184153900002],[9.974294467000021,55.17401764500006],[9.97201582100007,55.184719143000095],[9.974294467000021,55.19525788000014],[9.980723504000139,55.20490143400012],[9.97950280000012,55.212836005000085],[9.964121941000087,55.21816640800013],[9.92400149800008,55.22394440300012],[9.911387566000087,55.22850169500005],[9.90015709700009,55.23411692900005],[9.895355665000096,55.238999742000125],[9.893239780000073,55.24445221600014],[9.883962436000047,55.25348541900017],[9.881683790000068,55.25950755400007],[9.883962436000047,55.26561107000007],[9.893239780000073,55.27464427300007],[9.895355665000096,55.28025950700008],[9.893239780000073,55.29124583500013],[9.883962436000047,55.30878327000006],[9.881683790000068,55.31443919500008],[9.884776238000141,55.34886302300002],[9.874522332000112,55.35333893400014],[9.85889733200014,55.35407135600009],[9.829844597000147,55.3522809920001],[9.81657962300011,55.35521067900014],[9.802419467000107,55.36237213700014],[9.77808678500014,55.38027578300013],[9.794932488000141,55.38385651200009],[9.813649936000104,55.38515859600001],[9.830088738000086,55.38890208500014],[9.840098504000082,55.400091864000146],[9.785492384000122,55.41376373900009],[9.793711785000113,55.41278717700003],[9.819590691000116,55.41376373900009],[9.809255405000016,55.42548248900005],[9.791026238000143,55.431830145],[9.751312696000127,55.43488190300009],[9.737315300000148,55.43817780200011],[9.703461134000094,55.46214427299999],[9.703461134000094,55.468410549000126],[9.730235222000118,55.461493231000034],[9.758474155000073,55.44749583500008],[9.786306186000047,55.43720123900006],[9.81218509200005,55.441066799000154],[9.713389519000117,55.49103424700008],[9.676280144000089,55.49567291900003],[9.683929884000122,55.50604889500012],[9.69353274800011,55.51019928600005],[9.704763217000107,55.51239655200005],[9.717784050000091,55.51679108300014],[9.755137566000142,55.54413483300003],[9.809092644000145,55.55027903899999],[9.827403191000116,55.54840729400003],[9.830821160000113,55.54311758000013],[9.831309441000116,55.534735419000086],[9.840098504000082,55.52362702000014],[9.88819420700014,55.508693752],[9.940277540000096,55.51923248900006],[10.039317254000082,55.55776601800015],[10.168630405000044,55.58226146],[10.212657097000147,55.60065338700004],[10.237315300000148,55.60553620000009],[10.264170769000145,55.60663483300014],[10.272146030000101,55.60553620000009],[10.272797071000127,55.602525132],[10.27906334700009,55.58832428600009],[10.279551629000082,55.58510976800012],[10.293630405000043,55.58808014500012],[10.29712975400011,55.595648505],[10.293793165000096,55.616115627000156],[10.307627800000091,55.61823151200015],[10.338389519000145,55.61009349200005]]],[[[12.577972852000073,55.55402252800012],[12.556325717000078,55.550482489000146],[12.53484134200005,55.56932200700008],[12.520518425000148,55.59674713700004],[12.520192905000044,55.61920807500003],[12.531016472000147,55.63190338700009],[12.543955925000148,55.64036692900013],[12.55681399800008,55.64695872600011],[12.56739342500012,55.65399811400009],[12.578135613000141,55.666449286],[12.595062696000127,55.69135163000014],[12.60840905000012,55.701117255000085],[12.612559441000059,55.69513580900014],[12.614105665000096,55.69245026200018],[12.615733269000117,55.688137111000074],[12.673838738000086,55.60553620000009],[12.674571160000113,55.60126373900009],[12.639414910000141,55.57827383],[12.624196811000074,55.57562897300012],[12.605723504000139,55.56928131700009],[12.588877800000148,55.56134674700003],[12.577972852000073,55.55402252800012]]],[[[10.621429884000065,55.87986888200011],[10.638682488000086,55.86611562700009],[10.65064537900011,55.87010325700008],[10.65919030000012,55.880764065],[10.666270379000082,55.88670482000013],[10.669281446000099,55.880031643000066],[10.655039910000085,55.86538320500016],[10.62826582100007,55.84577057500009],[10.623301629000139,55.82770416900008],[10.624359571000099,55.794338283000016],[10.614593946000127,55.776841539000046],[10.58220462300005,55.7597516950001],[10.547129754000139,55.76520416900014],[10.520274285000085,55.788560289000046],[10.511566602000102,55.825262762000065],[10.517263217000078,55.84552643400014],[10.527679884000065,55.85390859600004],[10.542165561000104,55.85814036700005],[10.559418165000125,55.86627838700015],[10.573090040000068,55.878851630000135],[10.581065300000091,55.894517320000105],[10.580251498000079,55.91152578300007],[10.566905144000089,55.92829010600009],[10.548594597000118,55.93573639500009],[10.52833092500012,55.94061920800006],[10.51539147200009,55.95123932500009],[10.518565300000148,55.97614166900003],[10.528819207000083,55.989203192],[10.543955925000091,55.99799225500008],[10.556813998000107,55.99579498900009],[10.56421959700009,55.95384349199999],[10.580251498000079,55.936509507000025],[10.602793816000085,55.925238348],[10.62826582100007,55.92084381700012],[10.619395379000139,55.910956122000115],[10.61540774800005,55.90033600500008],[10.616384311000047,55.889797268],[10.621429884000065,55.87986888200011]]],[[[12.328461134000122,56.126898505000135],[12.414886915000125,56.099025783000094],[12.486094597000118,56.099025783000094],[12.505381707000083,56.09316640800012],[12.54037519600007,56.07538483300006],[12.57007897200009,56.068264065],[12.621918165000096,56.04376862200017],[12.60840905000012,56.02802155200011],[12.56739342500012,55.9965681010001],[12.552744988000114,55.979681708000115],[12.52556399800011,55.939886786000116],[12.512705925000091,55.92829010600009],[12.512705925000091,55.92084381700012],[12.540293816000085,55.89826080900015],[12.554453972000118,55.88287995000011],[12.560557488000114,55.869940497000115],[12.565114780000044,55.85114166900014],[12.57601972700013,55.82916901200004],[12.589691602000073,55.80947500200001],[12.602224155000071,55.79734935100011],[12.597992384000122,55.78758372600008],[12.595876498000024,55.774237372000144],[12.594737175000091,55.75299713700015],[12.589040561000102,55.73574453300015],[12.587901238000086,55.72907135600012],[12.58920332100007,55.72426992400003],[12.592784050000148,55.71914297100001],[12.602224155000071,55.708563544000135],[12.581228061000104,55.69306061400014],[12.541026238000114,55.64887116100006],[12.50326582100007,55.634019273000106],[12.496755405000073,55.62177155200013],[12.487152540000096,55.60984935100002],[12.46501712300011,55.60553620000009],[12.448578321000127,55.60887278900013],[12.436778191000142,55.61440664300015],[12.423675977000073,55.61884186400011],[12.403575066000114,55.61920807500003],[12.331309441000144,55.59540436400014],[12.312022332000112,55.583970444999984],[12.248383009000063,55.54625071800002],[12.248220248000079,55.54612864800004],[12.198090040000096,55.487494208000115],[12.224864129000082,55.43488190300009],[12.273448113000141,55.41022370000008],[12.290537957000083,55.406927802000055],[12.352061394000144,55.40444570500013],[12.368825717000078,55.400091864000146],[12.412119988000143,55.37913646],[12.434743686000104,55.36367422100007],[12.444590691000144,55.34886302300002],[12.446299675000148,55.33169179900007],[12.450856967000078,55.31720612200003],[12.46501712300011,55.29026927300004],[12.450205925000148,55.27968984600001],[12.444590691000144,55.276556708000115],[12.392425977000102,55.25531647300014],[12.182790561000047,55.22719961100016],[12.167002800000091,55.217352606000034],[12.141368035000113,55.207993882],[12.121104363000114,55.19106679900001],[12.109060092000078,55.17072174700003],[12.115000847000118,55.15371328300016],[12.107432488000057,55.14508698100015],[12.098968946000127,55.141424872000115],[12.090098504000082,55.14223867400001],[12.080739780000044,55.146877346000124],[12.088145379000139,55.16836172100007],[12.076670769000089,55.18195221600003],[12.05640709700009,55.18569570500016],[12.036794467000107,55.17755768400003],[12.027842644000087,55.172674872000165],[12.020030144000089,55.17096588700015],[12.01465905000012,55.16746653899998],[12.012461785000141,55.15713125200007],[12.017914259000094,55.153021552000105],[12.046641472000118,55.140082098000036],[12.130544467000107,55.135891018000095],[12.168630405000101,55.128485419000086],[12.177012566000142,55.10529205900014],[12.171397332000055,55.09544505400005],[12.16504967500012,55.0912946640001],[12.157725457000112,55.08917877800009],[12.149099155000044,55.085394598000065],[12.128428582000112,55.07884349199999],[12.118500196000099,55.07355377800012],[12.125743035000113,55.07111237200017],[12.163340691000116,55.02338288000011],[12.16228274800008,55.0043806010001],[12.148936394000144,54.99412669499999],[12.128428582000112,54.98997630400005],[12.10499108200014,54.98920319200012],[12.089528842000107,54.98566315300015],[12.055918816000085,54.97077057500009],[12.032969597000088,54.96808502800012],[11.998057488000086,54.97650788000008],[11.943858269000117,55.00608958500011],[11.910166863000114,55.009711005],[11.90951582100007,55.00495026200018],[11.911143425000091,55.00381094000014],[11.913828972000061,55.00385163000014],[11.916840040000068,55.002875067000055],[11.911387566000144,55.00092194200012],[11.908376498000052,54.99860260600015],[11.904633009000094,54.996568101000136],[11.897146030000044,54.99542877800009],[11.901540561000102,54.976385809000085],[11.894379102000071,54.96499258000013],[11.885020379000139,54.95514557500011],[11.882823113000143,54.94082265800013],[11.89014733200014,54.92963288000011],[11.903330925000091,54.923000393000144],[11.918467644000089,54.92194245000009],[11.93116295700014,54.92772044500007],[11.928558790000068,54.93138255400011],[11.923675977000102,54.94082265800013],[11.932383660000085,54.941473700000174],[11.957855665000096,54.94818756700011],[11.965993686000104,54.942613023000106],[11.98023522200009,54.92426178600005],[11.982188347000147,54.92031484600007],[11.991465691000116,54.91632721600008],[12.023936394000089,54.89801666900003],[12.040375196000099,54.893011786],[12.058929884000094,54.89435455900018],[12.078298373000107,54.89785390800007],[12.096446160000113,54.89809804900001],[12.111827019000145,54.88959381700008],[12.139903191000144,54.864935614],[12.170176629000139,54.844549872000115],[12.170176629000139,54.838324286000145],[12.081716342000107,54.79645416900006],[12.067149285000085,54.78681061400006],[12.028005405000043,54.74355703300007],[12.022715691000085,54.735296942],[12.012705925000091,54.73110586100016],[11.985850457000112,54.712307033000016],[11.975271030000044,54.70799388200011],[11.960703972000118,54.69407786700013],[11.960215691000144,54.662339585000076],[11.971446160000141,54.605617580000015],[11.96900475400011,54.569769598],[11.949066602000102,54.568589585000076],[11.928233269000145,54.5839704450001],[11.923675977000102,54.598130601000136],[11.909353061000104,54.6095238300001],[11.876638217000078,54.646958726000136],[11.869151238000113,54.659613348],[11.870616082000083,54.68036530200002],[11.882660352000073,54.69643789300009],[11.910166863000114,54.72166575700005],[11.889903191000116,54.72418854400014],[11.875824415000066,54.729722397999986],[11.872325066000087,54.73993561400012],[11.882823113000143,54.75641510600009],[11.871429884000094,54.76032135600009],[11.865244988000114,54.765448309000114],[11.855479363000086,54.77692291900014],[11.809092644000117,54.80491771000008],[11.805430535000141,54.80951569200012],[11.80095462300008,54.81785716399999],[11.798838738000086,54.82587311400012],[11.800059441000087,54.831203518],[11.799815300000148,54.83657461100016],[11.793467644000117,54.844549872000115],[11.776052280000073,54.85614655200011],[11.760590040000123,54.86322663],[11.74968509200005,54.87311432500009],[11.745616082000112,54.893011786],[11.745371941000144,54.91132233300006],[11.74203535200013,54.9254417990001],[11.731944207000055,54.93528880400011],[11.711436394000115,54.94082265800013],[11.711436394000115,54.94818756700011],[11.749766472000147,54.96572500200006],[11.75928795700014,54.96808502800012],[11.773610873000107,54.96503327000012],[11.792979363000143,54.9513207050001],[11.803965691000087,54.94818756700011],[11.814789259000094,54.95209381700011],[11.837575717000107,54.966131903000175],[11.841807488000143,54.96466705900012],[11.848317905000043,54.9591332050001],[11.862478061000047,54.96369049700003],[11.882823113000143,54.975531317],[11.882823113000143,54.98175690300015],[11.872325066000087,54.98956940300015],[11.853526238000114,55.020086981000176],[11.841807488000143,55.03021881700015],[11.774668816000085,55.048570054],[11.75562584700009,55.05068594],[11.75025475400011,55.05280182500012],[11.736989780000101,55.062201239000146],[11.72877037900011,55.06427643400015],[11.66553795700014,55.06639232000008],[11.64665774800011,55.07233307500008],[11.630381707000083,55.08112213700015],[11.615896030000016,55.092230536],[11.669606967000078,55.08563873900012],[11.77523847700013,55.05744049700006],[11.82748457100007,55.05068594],[11.805349155000073,55.073879299000126],[11.743418816000116,55.10053131700006],[11.717621290000066,55.12571849200004],[11.803965691000087,55.13483307500003],[11.809580925000091,55.138861395],[11.806976759000092,55.146877346000124],[11.785411004000082,55.15721263200005],[11.728526238000143,55.15477122600011],[11.711436394000115,55.167914130000085],[11.726247592000078,55.176947333000086],[11.734711134000122,55.188666083000086],[11.7330835300001,55.20014069200011],[11.717621290000066,55.20831940300003],[11.695078972000088,55.20807526200018],[11.678233269000087,55.1993675800001],[11.663828972000118,55.188299872000144],[11.649424675000148,55.18097565300014],[11.636241082000112,55.181626695000105],[11.599375847000147,55.191310940000065],[11.524180535000141,55.20209381700006],[11.50603274800005,55.20831940300003],[11.492360873000107,55.20416901200018],[11.423187696000127,55.22190989799999],[11.41032962300008,55.2201195330001],[11.38298587300011,55.211167710000055],[11.36890709700009,55.20831940300003],[11.299978061000047,55.20831940300003],[11.299978061000047,55.20148346600011],[11.32048587300008,55.19464752800009],[11.285899285000085,55.19537995000012],[11.260996941000144,55.200588283000016],[11.245371941000059,55.21478913000011],[11.238536004000139,55.24241771000014],[11.253103061000076,55.23627350500006],[11.267832879000082,55.23590729400006],[11.280039910000141,55.24233633000016],[11.286306186000104,55.25608958500008],[11.276052280000073,55.251613674],[11.265391472000116,55.249457098],[11.241953972000147,55.248683986000074],[11.238780144000087,55.25413646000011],[11.24154707100007,55.278509833000086],[11.235118035000141,55.284002997000115],[11.217133009000094,55.29022858300006],[11.162119988000143,55.31915924700017],[11.152842644000089,55.32843659100003],[11.161957227000071,55.330877997000144],[11.176442905000016,55.33185455900003],[11.188243035000085,55.33527252800006],[11.190114780000073,55.345445054],[11.182302280000071,55.35040924700006],[11.167979363000086,55.35276927299999],[11.152598504000139,55.353216864],[11.142344597000118,55.3522809920001],[11.1354272800001,55.34686920800005],[11.130869988000057,55.33844635600012],[11.123545769000144,55.33185455900003],[11.108164910000113,55.33185455900003],[11.101898634000065,55.336330471],[11.08773847700013,55.35854726800015],[11.08773847700013,55.36595286700005],[11.114593946000127,55.364406643],[11.128916863000114,55.36517975500011],[11.13892662900011,55.369370835000055],[11.147715691000059,55.37592194200011],[11.15919030000012,55.381293036],[11.1717228520001,55.38507721600003],[11.18327884200005,55.386419989],[11.204356316000144,55.39183177300005],[11.21420332100007,55.40379466399999],[11.213145379000109,55.4157575540001],[11.200938347000147,55.42121002800015],[11.204844597000147,55.43134186400003],[11.196462436000076,55.453843492000104],[11.176442905000016,55.48944733300006],[11.16391035200013,55.50189850500008],[11.151133660000085,55.51032135600003],[11.135590040000068,55.51512278900013],[11.115000847000147,55.51679108300014],[11.097178582000053,55.50950755400011],[11.085785352000102,55.50755442900007],[11.080902540000125,55.513088283000094],[11.082774285000085,55.526556708000086],[11.088552280000073,55.5338402360001],[11.098155144000145,55.53668854400002],[11.111582879000139,55.53729889500009],[11.137950066000116,55.54291413],[11.148448113000086,55.557318427000055],[11.145681186000047,55.57611725500003],[11.132090691000085,55.595282294000164],[11.087901238000114,55.62693919500004],[11.03923587300008,55.643459377000035],[10.929942254000082,55.66014232000008],[10.929942254000082,55.667629299000126],[11.08773847700013,55.66014232000008],[11.071055535000113,55.676947333000086],[11.008636915000068,55.69228750200004],[10.98462975400011,55.701117255000085],[10.974294467000107,55.71084219000012],[10.968272332000083,55.71841054900006],[10.960215691000142,55.724351304000024],[10.94361412900011,55.72907135600012],[10.891449415000068,55.73126862200009],[10.875498894000144,55.73651764500009],[10.875498894000144,55.74274323100006],[11.033050977000102,55.72907135600012],[11.065684441000144,55.73224518400017],[11.128184441000087,55.74632396000011],[11.162771030000073,55.74949778899999],[11.162771030000073,55.74274323100006],[11.151703321000127,55.743638414000046],[11.141123894000089,55.74323151200003],[11.130869988000057,55.74103424700005],[11.121836785000141,55.73651764500009],[11.137543165000125,55.71906159100003],[11.163422071000127,55.705389716000084],[11.192637566000087,55.70034414300015],[11.218028191000087,55.708563544000135],[11.176442905000016,55.72907135600012],[11.190114780000073,55.73651764500009],[11.199473504000082,55.73110586100013],[11.216156446000127,55.728745835],[11.252207879000082,55.72907135600012],[11.268402540000125,55.732733466000134],[11.302419467000078,55.74652741100006],[11.336680535000141,55.75092194200015],[11.352224155000043,55.75580475500011],[11.364024285000113,55.765122789000074],[11.36890709700009,55.77997467700011],[11.369965040000125,55.78778717700011],[11.37468509200005,55.80158112200003],[11.375661655000101,55.80792877800015],[11.372080925000148,55.81586334800012],[11.354665561000076,55.8302269550001],[11.348399285000113,55.838324286000116],[11.373871290000125,55.828762111000124],[11.398448113000143,55.826402085],[11.421722852000071,55.83197663],[11.443369988000143,55.84577057500009],[11.47754967500012,55.841538804],[11.505218946000127,55.868719794000086],[11.510508660000113,55.90827057500003],[11.477386915000068,55.941351630000085],[11.448415561000076,55.948187567],[11.384287957000112,55.95083242400009],[11.304535352000073,55.96784088700015],[11.2819116550001,55.97894928600008],[11.272634311000076,55.9965681010001],[11.400563998000052,55.961981512000094],[11.426931186000047,55.96552155199999],[11.581065300000091,55.951849677000055],[11.599375847000147,55.94208405200011],[11.640879754000139,55.94342682500009],[11.711436394000115,55.955633856000176],[11.74781334700009,55.968247789000074],[11.768321160000141,55.970526434000035],[11.779795769000087,55.96185944200011],[11.775401238000114,55.951849677000055],[11.747325066000116,55.93280670800005],[11.738780144000089,55.92084381700012],[11.75049889400006,55.910386460000055],[11.743988477000073,55.90375397300009],[11.727875196000099,55.902289130000106],[11.711436394000115,55.907171942],[11.713552280000016,55.91083405200014],[11.717621290000066,55.92084381700012],[11.685801629000139,55.91986725500006],[11.67286217500012,55.91592031500006],[11.663096550000091,55.907171942],[11.712657097000118,55.85809967700005],[11.731618686000047,55.830715236000074],[11.717621290000066,55.81098053600006],[11.702403191000087,55.80947500200001],[11.671234571000099,55.81427643400009],[11.656260613000084,55.81098053600006],[11.637950066000114,55.79608795799999],[11.626231316000114,55.79059479400017],[11.607758009000094,55.790472723],[11.607758009000094,55.783026434000114],[11.624278191000087,55.7800153670001],[11.673594597000147,55.783026434000114],[11.68702233200014,55.78644440300003],[11.702810092000107,55.793402411000116],[11.72038821700005,55.79865143400009],[11.738780144000089,55.79734935100011],[11.745453321000127,55.78937409100014],[11.755869988000114,55.77293528900007],[11.763682488000114,55.756822007],[11.762705925000148,55.74949778899999],[11.682302280000044,55.74127838700017],[11.664561394000144,55.737127997000144],[11.657237175000148,55.730861721000096],[11.669932488000114,55.72284577000015],[11.684336785000085,55.72162506700011],[11.729258660000085,55.72357819200008],[11.738780144000089,55.725978908000044],[11.746348504000139,55.73102448100015],[11.76303144600007,55.72138092699999],[11.78728274800005,55.701117255000085],[11.794444207000112,55.687933661000116],[11.793793165000068,55.68301015800007],[11.787933790000096,55.676947333000086],[11.779795769000087,55.66014232000008],[11.797618035000056,55.66962311400005],[11.810557488000086,55.67910390800007],[11.852305535000113,55.73090241100008],[11.854421420000108,55.73216380399999],[11.855479363000086,55.732814846000124],[11.85328209700009,55.73997630399999],[11.844004754000139,55.75267161700005],[11.841807488000143,55.75641510600017],[11.844981316000116,55.76788971600003],[11.852712436000104,55.782294012000094],[11.869151238000113,55.80475495000009],[11.884043816000142,55.81366608300011],[11.919444207000083,55.819403387000094],[11.937347852000128,55.825262762000065],[11.953623894000145,55.8535016950001],[11.933116082000112,55.88613515800016],[11.90951582100007,55.91547272300006],[11.916840040000068,55.93451569200006],[11.934743686000047,55.933661200000145],[11.969981316000087,55.912583726000136],[11.988617384000063,55.907171942],[11.998220248000052,55.90281810100002],[11.997894727000102,55.89276764500012],[11.99382571700005,55.88153717700011],[11.992035352000073,55.87372467700013],[11.996348504000082,55.86107005400005],[12.000173373000079,55.856512762000115],[12.004893425000091,55.85346100500011],[12.012461785000141,55.84577057500009],[12.031260613000086,55.81659577000015],[12.04900149800008,55.775336005],[12.051931186000104,55.73663971600014],[12.026133660000085,55.715399481000176],[11.990000847000147,55.72280508000016],[11.972666863000143,55.72142161699999],[11.965342644000145,55.70490143400009],[11.958181186000104,55.693426825000145],[11.923024936000047,55.67413971600003],[11.910166863000114,55.66014232000008],[11.930430535000113,55.65761953300013],[11.95915774800008,55.66510651200012],[11.982188347000147,55.678900458000115],[11.985199415000068,55.69489166900002],[12.001149936000076,55.69867584800015],[12.017588738000143,55.69570547100012],[12.031911655000044,55.687201239],[12.040375196000099,55.674465236000124],[12.009287957000083,55.680487372000144],[12.005137566000144,55.678168036],[12.011403842000078,55.669012762000094],[12.026621941000059,55.66205475500011],[12.060313347000061,55.65399811400009],[12.069102410000141,55.67495351800012],[12.092051629000109,55.70673248900009],[12.095062696000127,55.72907135600012],[12.053477410000141,55.838324286000116],[12.053477410000141,55.87372467700013],[12.049815300000091,55.88800690300003],[12.026133660000085,55.941351630000085],[12.010590040000066,55.95526764500006],[11.99244225400008,55.960598049000126],[11.970713738000113,55.9598656270001],[11.89429772200009,55.94228750200007],[11.865489129000137,55.93935781500015],[11.848643425000148,55.948187567],[11.865570509000122,55.97272370000003],[11.91732832100007,55.99762604400014],[12.012461785000141,56.030707098],[12.16537519600007,56.103705145],[12.245127800000091,56.12872955900012],[12.328461134000122,56.126898505000135]]],[[[11.581065300000091,56.68121979400014],[11.56421959700009,56.67743561400012],[11.543711785000113,56.67865631700015],[11.524587436000047,56.68471914300015],[11.512217644000117,56.69546133000016],[11.509532097000118,56.71015045800006],[11.520843946000127,56.71539948100015],[11.606130405000073,56.720404364],[11.649424675000148,56.72964101800015],[11.649424675000148,56.72215403899999],[11.645192905000043,56.72199127800003],[11.641937696000099,56.72064850500014],[11.63575280000012,56.71596914300004],[11.618011915000125,56.71133047100009],[11.604258660000113,56.70115794500005],[11.592539910000113,56.68984609600007],[11.581065300000091,56.68121979400014]]],[[[8.911387566000114,56.95612213700004],[8.908457879000082,56.948716539000046],[8.910411004000139,56.94440338700015],[8.920420769000117,56.930487372000165],[8.922699415000096,56.92202383000012],[8.920420769000117,56.919907945000105],[8.908457879000082,56.887274481000176],[8.900401238000143,56.87482330900015],[8.895274285000141,56.870306708],[8.887950066000114,56.86684804900001],[8.887705925000091,56.87872955900015],[8.882660352000073,56.88637929900007],[8.875010613000114,56.89109935099999],[8.867442254000082,56.894110419000086],[8.843760613000143,56.88344961100015],[8.839610222000118,56.879828192],[8.836436394000145,56.86928945500013],[8.839040561000045,56.86286041900002],[8.843597852000102,56.85822174700009],[8.847015821000099,56.853094794000086],[8.855153842000107,56.819769598],[8.863942905000101,56.80951569200006],[8.88111412900011,56.80536530200011],[8.87476647200009,56.800360419000086],[8.868418816000144,56.798081773000106],[8.861338738000086,56.79755280200013],[8.853282097000147,56.79783763200008],[8.860687696000127,56.79490794500004],[8.867442254000082,56.79108307500003],[8.854177280000044,56.77993398600002],[8.839121941000116,56.757269598000065],[8.825856967000107,56.74384186400006],[8.81267337300005,56.734564520000035],[8.771250847000147,56.71596914300004],[8.766123894000117,56.698716539000095],[8.686371290000096,56.686590887000115],[8.658376498000052,56.67812734600007],[8.648448113000143,56.681057033000094],[8.621755405000044,56.71393463700018],[8.61085045700014,56.72215403899999],[8.586273634000063,56.73647695500007],[8.562266472000088,56.743231512000094],[8.555918816000087,56.74384186400006],[8.52491295700014,56.737290757],[8.51465905000012,56.73822663000006],[8.518077019000117,56.75006745000003],[8.522797071000127,56.75507233300006],[8.530284050000091,56.75934479400017],[8.539235873000052,56.762518622000144],[8.54867597700013,56.763739325000145],[8.553233269000089,56.76813385600006],[8.551605665000066,56.777777411000116],[8.548024936000104,56.787258205000015],[8.545258009000122,56.79108307500003],[8.573008660000113,56.80255768400018],[8.643809441000116,56.808050848],[8.668793165000068,56.8258324240001],[8.656260613000141,56.82514069200015],[8.643809441000116,56.82587311400009],[8.632009311000076,56.82807038000008],[8.621104363000086,56.83201732000008],[8.62671959700009,56.84153880400005],[8.646739129000139,56.85635000200012],[8.655121290000125,56.86684804900001],[8.651866082000083,56.86603424700009],[8.64975019600007,56.87425364799999],[8.648448113000143,56.890692450000174],[8.651621941000114,56.89419179900006],[8.659353061000047,56.89447663000003],[8.668223504000082,56.89378489800008],[8.675059441000087,56.894110419000086],[8.703786655000044,56.90005117400001],[8.762461785000085,56.90542226800006],[8.791758660000085,56.91453685100008],[8.813649936000047,56.91034577000012],[8.83375084700009,56.924750067],[8.867442254000082,56.96295807500014],[8.890391472000147,56.95482005400014],[8.905039910000085,56.96600983300006],[8.916270379000082,56.979071356000034],[8.928884311000076,56.97662995000009],[8.923106316000085,56.96857330900015],[8.911387566000114,56.95612213700004]]],[[[11.190114780000073,57.32550690300015],[11.197276238000086,57.31338125200015],[11.196501696000041,57.302821193],[11.189113397000085,57.294282642],[11.166875953000101,57.29677506300008],[11.143231237000094,57.301351214000185],[11.06657962300005,57.29132721600017],[11.082692905000101,57.283880927],[11.094164612000098,57.268996019000056],[11.09110071300006,57.25278405699999],[11.067166313000087,57.23836201100006],[11.053517093000067,57.22620211300006],[11.045137624000063,57.212714961000145],[11.028835411000102,57.201914301],[10.99790457900005,57.19790995300015],[10.97796192000007,57.20673294600009],[10.951814885000147,57.233729677000106],[10.916536645000122,57.23736867400013],[10.88879932800009,57.245344161],[10.871104363000086,57.254624742000075],[10.854991082000112,57.26463450700014],[10.854991082000112,57.270900783000094],[10.888424550000082,57.27486484300008],[10.921263275000058,57.29227995900011],[10.946601235000088,57.30464328700005],[10.986869588000076,57.305992644000135],[11.010083612000129,57.30987331100006],[11.027723181000082,57.32069050900016],[11.101927424000053,57.32041692500008],[11.142344597000118,57.33234284100016],[11.169932488000114,57.332709052],[11.181488477000045,57.33030833500015],[11.190114780000073,57.32550690300015]]],[[[10.460459832000112,57.63056061400005],[10.430430535000056,57.570542710000055],[10.458343946000099,57.525458075000174],[10.508962436000104,57.48403554900007],[10.546560092000078,57.435288804000045],[10.517425977000128,57.391302802000105],[10.517914259000122,57.33917877800009],[10.539073113000114,57.23672109600001],[10.521983269000089,57.22174713700015],[10.47087649800011,57.20115794500013],[10.446787957000083,57.18488190300009],[10.41146894600007,57.144435940000065],[10.395518425000148,57.11725495000014],[10.384043816000087,57.074204820000105],[10.359222852000128,57.02610911700005],[10.34717858200014,57.010199286000116],[10.338715040000096,57.00324127800003],[10.330577019000089,56.99933502800003],[10.319672071000099,56.99750397300006],[10.27247155000012,56.99787018400017],[10.25798587300008,56.99583567900005],[10.239756707000083,56.99282461100013],[10.156016472000061,57.02383047100007],[10.09400475400011,57.06049225499999],[10.052744988000086,57.06972890800013],[10.019379102000102,57.08844635600012],[9.994639519000117,57.09271881700012],[9.974457227000102,57.08649323100015],[9.946136915000123,57.061183986000046],[9.926931186000076,57.05857982000013],[9.94548587300008,57.05731842700011],[9.966563347000118,57.07221100500008],[9.984141472000147,57.079046942],[10.001963738000114,57.08388906500006],[10.022634311000047,57.079087632],[10.12126712300011,57.02212148600016],[10.15398196700005,57.01325104400003],[10.192393425000148,56.99404531500006],[10.214366082000083,56.98969147300006],[10.29509524800008,56.98859284100003],[10.313731316000087,56.98285553600006],[10.28565514400006,56.96369049700009],[10.279551629000082,56.95551178600009],[10.274750196000099,56.94228750200012],[10.269297722000147,56.91502513200005],[10.265879754000139,56.907700914000046],[10.273122592000078,56.89134349200013],[10.28402754000004,56.840318101000136],[10.288340691000144,56.80011627800006],[10.295420769000117,56.77887604400014],[10.319997592000107,56.73647695500007],[10.328461134000065,56.72980377800012],[10.338226759000094,56.723944403000175],[10.340586785000141,56.71735260600009],[10.326833530000043,56.70856354400002],[10.31869550900012,56.708238023000106],[10.295176629000082,56.714300848],[10.282562696000099,56.71596914300004],[10.237559441000087,56.71596914300004],[10.221853061000047,56.712103583000115],[10.203868035000085,56.702337958000086],[10.187022332000083,56.712225653000175],[10.16814212300008,56.720038153000175],[10.146494988000084,56.722357489000146],[10.12126712300011,56.71596914300004],[10.09896894600007,56.706122137000094],[10.089610222000147,56.70404694200009],[10.073496941000059,56.702337958000086],[10.058360222000061,56.69822825700011],[10.027517123000107,56.68427155200005],[9.990896030000073,56.67694733300014],[9.945567254000082,56.658148505],[9.805918816000087,56.64704010600015],[9.805918816000087,56.64020416900014],[9.85132897200009,56.635728257],[10.00147545700014,56.66132233300006],[10.03492272200009,56.672837632],[10.049571160000113,56.674994208],[10.05290774800005,56.6771507830001],[10.053477410000113,56.68183014500012],[10.055430535000141,56.68650950700014],[10.062836134000122,56.68866608300014],[10.070974155000044,56.6874860700001],[10.084320509000063,56.68235911700002],[10.090586785000113,56.68121979400014],[10.101328972000118,56.68268463700012],[10.113617384000094,56.686712958],[10.123789910000113,56.69232819200009],[10.128103061000047,56.69887929900007],[10.134776238000086,56.712388414000046],[10.150563998000052,56.71442291900017],[10.183360222000147,56.70856354400002],[10.180837436000047,56.70490143400018],[10.175791863000086,56.69546133000016],[10.193207227000071,56.693589585],[10.24195397200009,56.68838125200001],[10.283539259000065,56.689764716000084],[10.310313347000147,56.69887929900007],[10.334239129000109,56.70384349200013],[10.352793816000114,56.68183014500012],[10.35767662900011,56.64874909100017],[10.340342644000117,56.62034739800004],[10.272959832000112,56.59170156500006],[10.2233179050001,56.560614325000174],[10.214366082000083,56.558294989],[10.20728600400011,56.52578359600012],[10.203868035000085,56.51666901200003],[10.211436394000145,56.505316473000065],[10.206797722000118,56.49095286699999],[10.195485873000052,56.47768789300006],[10.183360222000147,56.469549872000144],[10.214121941000116,56.47044505400013],[10.225596550000148,56.475734768],[10.224375847000147,56.51361725500014],[10.22754967500012,56.54108307500009],[10.23764082100007,56.55438873900003],[10.279551629000082,56.571966864000146],[10.31267337300011,56.59662506700012],[10.330332879000139,56.60321686400003],[10.35092207100007,56.595892645],[10.35450280000012,56.58954498900009],[10.359873894000087,56.56810130400014],[10.360850457000083,56.56171295800011],[10.365244988000143,56.55841705900018],[10.394867384000094,56.544663804000045],[10.469899936000047,56.52090078300016],[10.551524285000141,56.51557038],[10.789073113000057,56.53636302299999],[10.822276238000086,56.53424713700014],[10.854991082000112,56.5241559920001],[10.869883660000056,56.514715887000094],[10.902110222000118,56.48322174700017],[10.964121941000144,56.448431708000115],[10.964121941000144,56.44220612200017],[10.940928582000112,56.42951080900012],[10.928477410000113,56.40648021000014],[10.92351321700005,56.379868882],[10.922618035000141,56.356268622000144],[10.911631707000112,56.33405182500008],[10.819590691000116,56.260931708000115],[10.772959832000083,56.24298737200017],[10.755381707000055,56.22931549700006],[10.750010613000114,56.216050523000106],[10.7526147800001,56.184963283000016],[10.738617384000037,56.154527085000055],[10.707041863000141,56.15086497599999],[10.672211134000122,56.165187893000095],[10.648936394000089,56.18838125200001],[10.67465254000004,56.19082265800013],[10.685231967000107,56.196234442],[10.690440300000091,56.208889065000065],[10.687673373000052,56.22223541900017],[10.677582227000071,56.22630442900013],[10.664561394000087,56.22760651200004],[10.652598504000139,56.23273346600014],[10.628591342000107,56.23753489800013],[10.603770379000139,56.221014716000134],[10.581228061000076,56.199204820000105],[10.549164259000094,56.17820872600007],[10.556162957000083,56.15493398600016],[10.56934655000012,56.12946198100015],[10.573741082000112,56.11261627800014],[10.56397545700014,56.10561758000007],[10.548024936000047,56.10126373900009],[10.53101647200009,56.10016510600003],[10.518565300000148,56.10272858300014],[10.508474155000101,56.11102936400012],[10.498545769000089,56.130194403000175],[10.491221550000091,56.13996002800012],[10.499196811000047,56.14472077000012],[10.516123894000115,56.151597398000135],[10.525401238000086,56.15363190300015],[10.518239780000043,56.16478099199998],[10.509450717000078,56.17011139500014],[10.468109571000127,56.17706940300003],[10.458994988000141,56.17609284100014],[10.436696811000104,56.16791413000006],[10.408702019000089,56.164862372000144],[10.391449415000096,56.172674872000144],[10.376231316000114,56.186672268],[10.354665561000104,56.202053127000156],[10.376963738000143,56.20331452000006],[10.41041100400011,56.21849192900005],[10.42920983200014,56.22247955900012],[10.443369988000086,56.21662018400018],[10.460703972000147,56.20620351800009],[10.477793816000114,56.202337958000086],[10.491221550000091,56.216294664000046],[10.474294467000107,56.23224518400015],[10.475433790000068,56.24469635600017],[10.504730665000068,56.277777411000116],[10.491221550000091,56.27765534100014],[10.476817254000139,56.28091054900001],[10.463633660000085,56.28685130400011],[10.453623894000089,56.294501044000135],[10.442637566000142,56.298651434000085],[10.416758660000113,56.291896877000156],[10.4030054050001,56.2982445330001],[10.399261915000066,56.28485748900009],[10.393809441000144,56.27651601800004],[10.385020379000082,56.27216217700011],[10.371104363000086,56.270941473],[10.363780144000089,56.26557038000005],[10.336924675000091,56.23273346600014],[10.312510613000141,56.21515534100003],[10.258474155000071,56.190252997000165],[10.234222852000073,56.171332098000065],[10.220225457000112,56.14789459800009],[10.226898634000065,56.13324616100009],[10.243418816000144,56.119574286000145],[10.259043816000116,56.099025783000094],[10.265635613000114,56.073716539000046],[10.261485222000147,56.05442942900011],[10.249196811000104,56.03693268400015],[10.231130405000101,56.017035223000065],[10.255137566000116,56.02362702000015],[10.272715691000142,56.024847723000065],[10.27751712300005,56.017767645],[10.252452019000145,55.986232815],[10.250010613000114,55.973456122000144],[10.25163821700005,55.948187567],[10.250743035000141,55.93073151200003],[10.249278191000087,55.923041083000115],[10.245371941000087,55.91461823100015],[10.221364780000044,55.89691803600006],[10.21753991000014,55.88983795799999],[10.212657097000147,55.88987864799999],[10.201833530000071,55.88589101800004],[10.190196160000141,55.879706122000144],[10.183360222000147,55.87372467700013],[10.188324415000096,55.87116120000003],[10.19556725400011,55.861314195000105],[10.19939212300005,55.85073476800015],[10.190603061000076,55.84349192900014],[10.18734785200013,55.838609117000075],[10.182139519000117,55.833685614],[10.172699415000094,55.831488348],[10.160411004000139,55.83331940300017],[10.151052280000016,55.83812083500008],[10.135508660000113,55.85199616100006],[10.13103274800005,55.85846588700015],[10.128103061000047,55.86587148600013],[10.123789910000113,55.87327708500013],[10.114512566000087,55.87986888200011],[10.10181725400011,55.88239166900003],[10.004649285000111,55.87986888200011],[9.991709832000083,55.87734609600009],[9.983653191000144,55.87140534100017],[9.977386915000096,55.86456940300014],[9.970469597000118,55.859442450000024],[9.944509311000104,55.85358307500009],[9.891774936000019,55.85537344000009],[9.867442254000139,55.85199616100006],[9.892588738000143,55.83624909100011],[10.035655144000117,55.81842682500003],[10.045746290000096,55.813950914000074],[10.042165561000104,55.80341217700003],[10.025645379000139,55.783026434000114],[10.017344597000147,55.76557038000005],[10.01978600400011,55.75787995000006],[10.033702019000087,55.75604889500006],[10.059825066000114,55.75641510600017],[10.059825066000114,55.74949778899999],[10.018809441000116,55.73627350500014],[10.006846550000091,55.725043036000145],[10.018239780000073,55.708563544000135],[10.014496290000125,55.70685455900015],[10.00521894600007,55.701117255000085],[9.981700066000114,55.70941803600006],[9.871836785000141,55.69122955900014],[9.821787957000112,55.67597077],[9.792246941000144,55.674465236000124],[9.730967644000145,55.688137111000074],[9.695648634000122,55.70579661700002],[9.68653405000012,55.708563544000135],[9.583018425000091,55.708889065000086],[9.559580925000091,55.715399481000176],[9.556407097000118,55.71157461100015],[9.554535352000073,55.70880768400009],[9.553477410000113,55.70579661700002],[9.552744988000086,55.701117255000085],[9.57357832100007,55.6954613300001],[9.64551842500012,55.69489166900002],[9.658539259000094,55.69037506700006],[9.710297071000127,55.66014232000008],[9.720957879000139,55.64826080900012],[9.728200717000078,55.63751862200009],[9.738291863000141,55.62970612200011],[9.758148634000063,55.62665436400003],[9.85377037900011,55.62665436400003],[9.837412957000112,55.61522044500005],[9.785492384000122,55.59194570500012],[9.757660352000073,55.57160065300015],[9.744151238000086,55.56635163000006],[9.72087649800008,55.56460195500007],[9.71241295700014,55.56028880400008],[9.71062259200005,55.55093008000013],[9.710297071000127,55.54157135600009],[9.706879102000102,55.53729889500009],[9.643890821000099,55.52830638200008],[9.621104363000143,55.51894765800013],[9.607269727000071,55.51679108300014],[9.59522545700014,55.51837799700017],[9.572764519000145,55.52391185099999],[9.559580925000091,55.52362702000014],[9.562185092000107,55.519517320000105],[9.566416863000114,55.51679108300014],[9.551931186000076,55.505113023000135],[9.514903191000144,55.49819570500013],[9.498057488000143,55.48944733300006],[9.515635613000084,55.483140367000125],[9.534434441000116,55.48383209800006],[9.583669467000021,55.491156317000055],[9.59278405000012,55.49428945500013],[9.602386915000096,55.495794989],[9.660166863000114,55.47797272300012],[9.66423587300008,55.46670156500012],[9.65992272200009,55.45302969000009],[9.648936394000115,55.441066799000154],[9.635264519000089,55.435736395],[9.60141035200013,55.431830145],[9.586761915000094,55.42743561400012],[9.592051629000082,55.41632721600008],[9.604340040000125,55.40119049700008],[9.607920769000117,55.39325592700011],[9.60515384200005,55.382025458000115],[9.599294467000107,55.37335846600002],[9.600840691000144,55.365912177000055],[9.621104363000143,55.35854726800015],[9.633474155000101,55.35199616100009],[9.645274285000085,55.34271881700012],[9.648285352000073,55.3329125020001],[9.63461347700013,55.325018622000115],[9.63461347700013,55.31757233300014],[9.644867384000063,55.31093984600006],[9.68189537900008,55.27464427300007],[9.694183790000068,55.27163320500007],[9.706065300000091,55.26508209800009],[9.710297071000127,55.248683986000074],[9.706553582000083,55.237005927],[9.69947350400011,55.22980377800015],[9.69288170700014,55.221014716000084],[9.689789259000065,55.20490143400012],[9.684418165000096,55.19757721600011],[9.671560092000078,55.192450262000094],[9.65577233200014,55.18943919499999],[9.642100457000112,55.18842194200012],[9.583343946000099,55.19464752800009],[9.569834832000112,55.192531643000066],[9.561534050000148,55.18720123900003],[9.554942254000082,55.18056875200012],[9.545909050000148,55.17413971600003],[9.521820509000122,55.16543203300013],[9.507172071000127,55.16193268400015],[9.494395379000082,55.16054922100007],[9.486338738000143,55.156236069999984],[9.486338738000143,55.14740631700012],[9.494639519000117,55.140082098000036],[9.51189212300005,55.140082098000036],[9.51189212300005,55.13320547100001],[9.482432488000143,55.13377513200008],[9.468760613000113,55.13178131700011],[9.45655358200014,55.12571849200004],[9.466644727000102,55.121405341000056],[9.4791772800001,55.119696356000034],[9.50806725400011,55.11953359600007],[9.521332227000045,55.11587148600002],[9.5358179050001,55.106878973],[9.559580925000091,55.085394598000065],[9.533702019000089,55.0658226580001],[9.516612175000148,55.05654531500015],[9.498057488000143,55.05068594],[9.452403191000114,55.045355536000145],[9.434336785000085,55.037543036000145],[9.442881707000112,55.02338288000011],[9.45525149800005,55.02317942900008],[9.51189212300005,55.036363023000106],[9.537364129000139,55.03538646000013],[9.545909050000148,55.036363023000106],[9.55323326900006,55.03961823100015],[9.56023196700005,55.044419664000046],[9.568532748000024,55.04877350500014],[9.579925977000102,55.05068594],[9.601573113000086,55.04539622600013],[9.641856316000142,55.01972077000006],[9.662608269000145,55.009711005],[9.717539910000141,55.00116608300006],[9.730967644000145,54.99542877800009],[9.738617384000065,54.98086172100007],[9.760752800000148,54.904974677000105],[9.763194207000083,54.900458075000174],[9.761566602000073,54.89740631700009],[9.751963738000084,54.893011786],[9.737071160000113,54.89276764500015],[9.722992384000092,54.897650458000115],[9.711436394000145,54.89858633],[9.703461134000094,54.886175848000065],[9.715993686000104,54.88377513200014],[9.72787519600007,54.879461981000034],[9.73780358200014,54.87352122600011],[9.74447675900012,54.86627838700018],[9.748301629000109,54.857855536000116],[9.750254754000082,54.84625885600012],[9.745941602000073,54.83600495000009],[9.731211785000085,54.83152903900013],[9.719574415000068,54.83584219000012],[9.705332879000082,54.854559637000094],[9.696625196000099,54.85887278900002],[9.655039910000113,54.85708242400001],[9.642100457000112,54.85887278900002],[9.623301629000139,54.86530182500011],[9.62468509200005,54.86928945500007],[9.632823113000143,54.87311432500009],[9.63461347700013,54.87933991100006],[9.616953972000118,54.89423248900003],[9.610362175000148,54.90322500200013],[9.617523634000094,54.90729401200017],[9.644216342000107,54.913275458],[9.638845248000052,54.92475006700014],[9.61500084700009,54.932684637000115],[9.586761915000094,54.92772044500007],[9.581228061000104,54.92177969000012],[9.56804446700005,54.90143463700004],[9.55681399800005,54.89032623900012],[9.55054772200009,54.882717190000065],[9.545909050000148,54.87933991100006],[9.538340691000116,54.877915757],[9.522146030000073,54.87929922100007],[9.515147332000083,54.87592194200015],[9.498057488000143,54.86432526200004],[9.45639082100007,54.84381745000017],[9.442881707000112,54.83152903900013],[9.436289910000141,54.810451565],[9.437503026532056,54.81041112705874],[9.436922241000048,54.81014394200004],[9.422142781000018,54.80725006100006],[9.405192911000114,54.808386943000144],[9.385039103000054,54.819394023000065],[9.366952352000112,54.81701690700011],[9.355996948000069,54.81133249900016],[9.341734253000084,54.80905873600015],[9.332019084000137,54.80321930000015],[9.31703291800008,54.80161733000013],[9.244065796000143,54.80177236000016],[9.226392456000042,54.80590647399999],[9.219054403000143,54.81779205400012],[9.216057169000123,54.83174469],[9.211509644000103,54.84182159400014],[9.194766480000055,54.85039988199999],[8.982686401000109,54.87933868400013],[8.904138224000093,54.8979422],[8.82424645900008,54.905900370000055],[8.80088871200013,54.90383331400001],[8.732779175000104,54.88905385400009],[8.695882202000092,54.88998402900013],[8.660816132543687,54.896303911092375],[8.660817905000101,54.896307684000035],[8.668793165000068,54.91351959800014],[8.661387566000142,54.92031484600007],[8.674815300000148,54.947943427000084],[8.666351759000122,54.97333405200003],[8.650401238000114,54.997992255],[8.640961134000092,55.02338288000011],[8.64478600400011,55.05573151200004],[8.65650475400008,55.082505601000136],[8.670909050000148,55.10712311400014],[8.68189537900011,55.13320547100001],[8.575531446000127,55.144110419000086],[8.563649936000076,55.143377997000144],[8.559906446000042,55.13507721600017],[8.557383660000141,55.09638092700011],[8.551117384000092,55.091376044000086],[8.541351759000037,55.090277411000145],[8.528575066000087,55.08197663000006],[8.514821811000076,55.07078685100005],[8.49935957100007,55.06557851800015],[8.48389733200014,55.067613022999986],[8.470225457000112,55.07859935100005],[8.45883222700013,55.103461005],[8.460215691000114,55.12738678600006],[8.466481967000078,55.15159739800005],[8.470225457000112,55.17755768400003],[8.488942905000071,55.197170315],[8.530528191000144,55.20075104400017],[8.57260175900012,55.19367096600011],[8.593760613000114,55.18097565300014],[8.58033287900011,55.1789411480001],[8.569509311000047,55.17377350500011],[8.55209394600007,55.16054922100007],[8.555186394000145,55.14935944200006],[8.61475670700014,55.144354559000035],[8.669281446000127,55.13690827000015],[8.689463738000057,55.14158763200008],[8.687185092000105,55.16058991100006],[8.668793165000068,55.19464752800009],[8.655935092000021,55.237494208000086],[8.648448113000143,55.28025950700008],[8.650401238000114,55.291734117000104],[8.659353061000047,55.30581289300006],[8.661387566000142,55.31443919500008],[8.65967858200014,55.327215887000094],[8.648448113000143,55.3522809920001],[8.639414910000141,55.39740631700006],[8.632090691000144,55.41876862200003],[8.617686394000089,55.43793366100009],[8.592539910000085,55.44928620000014],[8.556651238000113,55.454291083],[8.490000847000118,55.455308335000055],[8.441905144000145,55.46393463700015],[8.401133660000085,55.48566315300003],[8.3103947270001,55.562689520000035],[8.311208530000101,55.56976959800006],[8.332367384000094,55.57200755400005],[8.332367384000094,55.57827383],[8.313161655000044,55.58270905200008],[8.290212436000076,55.58380768400003],[8.267832879000139,55.580511786],[8.250498894000145,55.57200755400005],[8.239024285000113,55.55792877800012],[8.242035352000102,55.548529364],[8.271739129000139,55.530462958000086],[8.262461785000085,55.529201565000065],[8.256358269000089,55.526800848000114],[8.24366295700014,55.51679108300014],[8.266774936000076,55.51439036699998],[8.293955925000091,55.504339911000116],[8.316742384000122,55.48940664300006],[8.326182488000143,55.472113348000065],[8.313324415000125,55.469305731000034],[8.19361412900011,55.52594635600011],[8.169200066000059,55.53408437700013],[8.110606316000114,55.540228583000115],[8.095225457000083,55.54905833500008],[8.094004754000082,55.56391022300012],[8.150238477000073,55.64923737200008],[8.169118686000076,55.687933661000116],[8.181651238000086,55.72907135600012],[8.18336022200009,55.769598700000024],[8.135590040000038,55.966009833000086],[8.130707227000073,55.97614166900003],[8.127777540000068,55.978216864000146],[8.126800977000073,55.98297760600015],[8.127777540000068,55.987616278000175],[8.130707227000073,55.98973216399999],[8.136729363000086,55.98859284100014],[8.139414910000141,55.986029364000146],[8.141123894000145,55.98346588700004],[8.144053582000083,55.982326565],[8.15056399800008,55.97703685100011],[8.175466342000107,55.90033600500008],[8.193369988000086,55.87384674700011],[8.195974155000071,55.86277903900007],[8.19361412900011,55.85321686400009],[8.183848504000082,55.839504299000154],[8.181651238000086,55.82835521000014],[8.185069207000083,55.814642645],[8.19361412900011,55.81183502800015],[8.23853600400011,55.826076565000065],[8.286306186000076,55.84747955900009],[8.308848504000139,55.85199616100006],[8.347829623000024,55.86933014500015],[8.387705925000091,55.892889716000084],[8.393321160000113,55.90916575700014],[8.38689212300008,55.926499742000104],[8.37289472700013,55.94342682500009],[8.356944207000112,55.95868561400006],[8.319509311000076,55.986029364000146],[8.319509311000076,56.017035223000065],[8.308116082000112,56.05292389500006],[8.282399936000076,56.075873114000146],[8.247731967000105,56.089829820000105],[8.170583530000044,56.10956452000014],[8.149668816000087,56.11115143400018],[8.140635613000084,56.10272858300014],[8.141612175000148,56.06000397300012],[8.139903191000144,56.03974030200011],[8.133799675000148,56.017035223000065],[8.137461785000113,56.00039297100004],[8.134776238000143,55.99396393400009],[8.12012780000012,55.9965681010001],[8.115977410000085,56.00185781500009],[8.111664259000092,56.01227448100015],[8.107920769000145,56.02431875200007],[8.103363477000102,56.096869208],[8.106455925000091,56.11945221600017],[8.13062584700009,56.18195221600011],[8.133799675000148,56.20547109600015],[8.122406446000099,56.55166250200013],[8.126638217000107,56.568426825000145],[8.133799675000148,56.58563873900009],[8.178721550000148,56.67206452000009],[8.19898522200009,56.69887929900007],[8.21387780000012,56.71181875200007],[8.219981316000116,56.70917389500009],[8.223968946000099,56.700425523000106],[8.233164910000056,56.69546133000016],[8.232432488000143,56.68838125200001],[8.20997155000012,56.655951239],[8.202159050000148,56.64704010600015],[8.202159050000148,56.64020416900014],[8.208343946000099,56.63678620000006],[8.215098504000139,56.63495514500006],[8.233164910000056,56.63397858299999],[8.236582879000082,56.62970612200017],[8.240489129000082,56.62006256700003],[8.24577884200005,56.61041901200004],[8.253916863000143,56.60610586100013],[8.294932488000086,56.601996161],[8.305918816000116,56.59780508000016],[8.291514519000145,56.59300364800008],[8.29517662900011,56.58380768400009],[8.29249108200014,56.56769440300003],[8.298350457000083,56.558294989],[8.307383660000085,56.55434804900003],[8.315196160000085,56.55687083500014],[8.318044467000107,56.563625393000066],[8.312022332000112,56.571966864000146],[8.312022332000112,56.578802802000055],[8.343516472000118,56.584540106000034],[8.392100457000083,56.58527252800015],[8.436534050000091,56.58022695500013],[8.455902540000125,56.56854889500012],[8.465179884000065,56.56688060100011],[8.51465905000012,56.544663804000045],[8.528493686000104,56.54816315300015],[8.541351759000037,56.55683014500015],[8.55209394600007,56.568019924000154],[8.55958092500012,56.578802802000055],[8.565765821000099,56.578802802000055],[8.596039259000092,56.531805731000034],[8.596853061000104,56.5241559920001],[8.593028191000087,56.519924221000096],[8.594574415000125,56.510484117000075],[8.601084832000112,56.50112539300012],[8.617442254000139,56.493801174000126],[8.63697350400011,56.47972239799999],[8.648448113000143,56.475734768],[8.665537957000112,56.475897528000175],[8.726573113000084,56.48322174700017],[8.733164910000141,56.485052802000055],[8.73853600400011,56.49005768400009],[8.742035352000102,56.49774811400012],[8.743418816000085,56.50706614800007],[8.743662957000112,56.52167389500009],[8.744965040000125,56.531561591000084],[8.750824415000068,56.55206940300015],[8.755137566000059,56.55780670800011],[8.760427280000043,56.560126044000086],[8.762543165000068,56.56338125200013],[8.75757897200009,56.571966864000146],[8.726573113000084,56.58563873900009],[8.71656334700009,56.586167710000055],[8.708994988000143,56.588568427],[8.704437696000099,56.59369538000011],[8.702972852000128,56.602362372000115],[8.698496941000085,56.61123281500015],[8.681488477000102,56.61627838700018],[8.68189537900011,56.626532294000114],[8.69516035200013,56.63324616100006],[8.740896030000073,56.63495514500006],[8.805430535000113,56.69546133000016],[8.820485873000052,56.700384833000115],[8.861582879000139,56.70746491100009],[8.916758660000056,56.70880768400018],[8.918711785000113,56.71100495000014],[8.894786004000139,56.71596914300004],[8.851084832000055,56.71678294500013],[8.84083092500012,56.722357489000146],[8.850108269000087,56.740179755000106],[8.864756707000112,56.755845444999984],[8.87663821700005,56.76430898600013],[8.908457879000082,56.77741120000009],[8.955739780000044,56.80296458499999],[8.97429446700005,56.80536530200011],[8.985199415000125,56.804144598],[9.003672722000147,56.799058335],[9.014903191000144,56.79783763200008],[9.026621941000144,56.79962799700014],[9.032725457000112,56.80377838700009],[9.037608269000089,56.80853913],[9.045583530000044,56.812201239000146],[9.063161655000071,56.812567450000145],[9.08611087300008,56.80841705900012],[9.105967644000089,56.80011627800006],[9.114512566000087,56.787990627000156],[9.120453321000127,56.76459381700006],[9.134450717000078,56.75071849199998],[9.150563998000052,56.74091217700014],[9.162852410000113,56.72964101800015],[9.176036004000052,56.70856354400002],[9.148203972000088,56.70473867400001],[9.118825717000107,56.67877838700012],[9.093435092000078,56.674994208],[9.093435092000078,56.66754791900003],[9.097504102000128,56.65843333500014],[9.086680535000141,56.64960358300008],[9.059336785000085,56.63397858299999],[9.049978061000047,56.619818427000084],[9.048838738000086,56.607163804],[9.052989129000139,56.57538483300006],[9.060557488000086,56.565741278000175],[9.076996290000096,56.5673688820001],[9.093435092000078,56.578070380000106],[9.106781446000099,56.610785223000065],[9.121592644000145,56.61302317900014],[9.139659050000091,56.611029364],[9.155446811000047,56.612941799000154],[9.149180535000085,56.62250397300015],[9.141123894000145,56.62604401200004],[9.131521030000071,56.62482330900012],[9.12134850400011,56.62034739800004],[9.128916863000057,56.631252346000124],[9.136729363000143,56.63906484600001],[9.143728061000047,56.647691148000106],[9.148610873000107,56.66132233300006],[9.155446811000047,56.66132233300006],[9.14942467500012,56.63886139500006],[9.17554772200009,56.635443427000055],[9.21119225400011,56.63886139500006],[9.233653191000116,56.63715241100006],[9.247243686000076,56.63202545800014],[9.262461785000141,56.63373444200015],[9.276215040000068,56.63296133000013],[9.285329623000079,56.62034739800004],[9.282399936000047,56.610541083000115],[9.25945071700005,56.591945705],[9.250336134000065,56.578802802000055],[9.26124108200014,56.57636139500012],[9.26335696700005,56.571966864000146],[9.264008009000094,56.56590403900004],[9.270843946000127,56.558294989],[9.28060957100007,56.552801825000174],[9.305674675000148,56.544663804000045],[9.309743686000104,56.54051341400013],[9.31218509200005,56.535101630000085],[9.316416863000086,56.53082916900014],[9.326182488000114,56.53034088700018],[9.340586785000085,56.54706452],[9.346690300000148,56.55206940300015],[9.360850457000083,56.544745184000035],[9.373057488000057,56.55272044500001],[9.37273196700005,56.56537506700006],[9.350352410000113,56.571966864000146],[9.319346550000091,56.56171295800011],[9.317393425000148,56.55866120000003],[9.312836134000094,56.55776601800012],[9.30225670700014,56.558294989],[9.293711785000113,56.56102122600008],[9.293142123000052,56.566799221000124],[9.296153191000144,56.57160065300003],[9.298838738000141,56.571966864000146],[9.300629102000128,56.609116929000045],[9.317067905000044,56.64109935100005],[9.326019727000045,56.66941966399999],[9.325938347000061,56.669623114000146],[9.305674675000148,56.69546133000016],[9.29590905000012,56.70156484600015],[9.290700717000021,56.70384349200013],[9.270843946000127,56.702337958000086],[9.23064212300011,56.69208405200014],[9.220713738000114,56.68427155200005],[9.199066602000128,56.67658112200003],[9.177907748000024,56.67584870000009],[9.169118686000076,56.68866608300014],[9.180349155000073,56.70075104400006],[9.226410352000102,56.71625397300015],[9.236827019000089,56.73305898600015],[9.242523634000065,56.7470563820001],[9.240489129000139,56.75397370000003],[9.215505405000044,56.758856512000094],[9.205251498000107,56.76382070500012],[9.196543816000116,56.770453192],[9.18970787900011,56.77741120000009],[9.184418165000125,56.78400299700017],[9.178721550000148,56.794134833000115],[9.174978061000104,56.80605703300007],[9.176036004000052,56.81842682500012],[9.181162957000083,56.82172272300015],[9.204112175000148,56.84162018400003],[9.206716342000078,56.846340236000124],[9.211436394000058,56.85150788000005],[9.21062259200005,56.86310455900014],[9.205902540000068,56.874579169000114],[9.199554884000122,56.879828192],[9.187836134000122,56.881170966000084],[9.178965691000087,56.884588934000085],[9.162852410000113,56.894110419000086],[9.181488477000102,56.919094143],[9.200205925000148,56.93891022300012],[9.22046959700009,56.95506419499999],[9.251475457000112,56.97256094000012],[9.258474155000073,56.974839585000105],[9.265961134000065,56.9762230490001],[9.274668816000144,56.97662995000009],[9.279958530000101,56.97980377800015],[9.285492384000122,56.99396393400017],[9.288747592000078,56.997137762000065],[9.437022332000055,57.02440013200014],[9.470062696000127,57.02383047100007],[9.586761915000094,56.997137762000065],[9.586761915000094,56.98969147300006],[9.573985222000147,56.98501211100016],[9.573090040000068,56.978827216000084],[9.580821160000085,56.972967841000134],[9.594248894000089,56.96918366100011],[9.607920769000117,56.96987539300015],[9.617686394000145,56.97504303600006],[9.654144727000102,57.00678131700012],[9.670664910000085,57.02484772300012],[9.68897545700014,57.03912995000003],[9.728200717000078,57.04706452],[9.76124108200014,57.05857982000013],[9.809092644000145,57.05174388200011],[9.915782097000147,57.05857982000013],[9.856618686000076,57.088690497000144],[9.826670769000089,57.09487539300012],[9.80640709700009,57.10423411700007],[9.795664910000056,57.10639069200006],[9.787608269000117,57.103949286000116],[9.752452019000145,57.0777855490001],[9.733246290000094,57.066799221000124],[9.711924675000148,57.061265367000104],[9.693207227000073,57.06915924700017],[9.67514082100007,57.07916901200015],[9.656097852000073,57.07636139500003],[9.621104363000143,57.05857982000013],[9.580821160000085,57.04930247600008],[9.493988477000073,57.04857005400005],[9.26514733200014,57.0034040390001],[9.245371941000116,57.002346096000124],[9.226410352000102,57.00702545800006],[9.114512566000087,57.05857982000013],[9.120860222000118,57.04539622599999],[9.112803582000083,57.038641669000135],[9.079844597000118,57.03123607000005],[9.055430535000085,57.0211449240001],[9.04265384200005,57.01772695500007],[9.025726759000063,57.0175641950001],[9.031993035000085,57.02383047100007],[9.014008009000063,57.03017812700001],[8.996755405000044,57.02806224199999],[8.979665561000104,57.02049388200014],[8.963145379000139,57.010199286000116],[8.946950717000078,57.011175848],[8.926442905000044,57.00014883000016],[8.909027540000068,56.98818594000012],[8.901621941000059,56.98627350500006],[8.893077019000145,56.99966054900007],[8.873220248000052,57.004828192000055],[8.850433790000125,57.00348541900017],[8.83334394600007,56.997137762000065],[8.847992384000094,56.98847077000015],[8.811696811000076,56.96987539300015],[8.762054884000065,56.95547109600009],[8.726410352000102,56.96124909100014],[8.702972852000128,56.958441473],[8.679535352000073,56.952541408000066],[8.668793165000068,56.94529857000005],[8.663340691000114,56.92593008000012],[8.649912957000112,56.914129950000145],[8.63412519600007,56.90517812700013],[8.621104363000086,56.894110419000086],[8.61540774800011,56.86562734600009],[8.614268425000148,56.86334870000012],[8.612559441000144,56.854681708000115],[8.607920769000145,56.84967682500017],[8.601328972000147,56.84552643400003],[8.569590691000116,56.81842682500012],[8.54704837300011,56.81732819200006],[8.536306186000104,56.81452057500012],[8.531748894000144,56.80878327000011],[8.524261915000096,56.804754950000174],[8.507823113000114,56.80109284100003],[8.491384311000104,56.79425690300009],[8.48389733200014,56.78115469000012],[8.492442254000053,56.747259833000086],[8.491465691000087,56.73139069200015],[8.476410352000073,56.72215403899999],[8.476410352000073,56.71596914300004],[8.516368035000113,56.718207098],[8.52556399800011,56.71596914300004],[8.533050977000073,56.70380280200013],[8.52702884200005,56.695298570000105],[8.514008009000065,56.69025299700017],[8.500987175000091,56.68866608300014],[8.489268425000091,56.69074127800014],[8.46583092500012,56.70014069200009],[8.452891472000118,56.702337958000086],[8.440928582000083,56.700384833000115],[8.42090905000012,56.69135163000011],[8.408213738000141,56.68866608300014],[8.408213738000141,56.68121979400014],[8.455902540000125,56.68866608300014],[8.470225457000112,56.68610260600003],[8.491221550000148,56.676988023000135],[8.500987175000091,56.674994208],[8.571543816000142,56.691961981000176],[8.586273634000063,56.68866608300014],[8.589040561000104,56.68134186400012],[8.586273634000063,56.66229889500012],[8.586273634000063,56.653876044000086],[8.601328972000147,56.64061107000004],[8.608083530000101,56.63104889500006],[8.593272332000112,56.616359768000066],[8.583018425000091,56.60932038],[8.569590691000116,56.60610586100013],[8.555430535000085,56.604885158000044],[8.546641472000118,56.60171133000016],[8.54704837300011,56.59747955900003],[8.55958092500012,56.59300364800008],[8.53931725400011,56.59275950700014],[8.511485222000147,56.60700104400003],[8.486989780000044,56.625311591000084],[8.476410352000073,56.63715241100006],[8.467295769000089,56.65204498900003],[8.444834832000083,56.664048570000126],[8.416758660000085,56.67206452000009],[8.391123894000117,56.674994208],[8.373383009000122,56.68024323100017],[8.3522241550001,56.69293854400014],[8.332530144000058,56.708400783000066],[8.319509311000076,56.72215403899999],[8.308360222000147,56.758205471000124],[8.302012566000114,56.763739325000145],[8.28842207100007,56.76634349200007],[8.260264519000089,56.77667877800015],[8.24366295700014,56.77741120000009],[8.25806725400011,56.74054596600003],[8.263194207000112,56.71893952000011],[8.260752800000091,56.70538971600017],[8.245860222000118,56.7040062520001],[8.238291863000086,56.72504303600011],[8.236175977000073,56.77118561400014],[8.247894727000073,56.81244538],[8.270355665000068,56.843247789000074],[8.449717644000145,57.003973700000145],[8.503591342000078,57.03465403900007],[8.586273634000063,57.10639069200006],[8.618011915000096,57.12287018400015],[8.653819207000112,57.122503973000114],[8.737152540000125,57.10639069200006],[8.783946160000113,57.104803778000026],[8.87435957100007,57.11611562700001],[8.914561394000089,57.12742747599999],[8.962575717000078,57.15656159100014],[8.980479363000114,57.16103750200001],[9.23064212300011,57.14109935100013],[9.321543816000087,57.14704010600015],[9.412119988000114,57.1654320330001],[9.49781334700009,57.197007554],[9.57325280000012,57.242905992000075],[9.788422071000127,57.45929596600009],[9.826426629000139,57.48993561400001],[9.895355665000096,57.53156159100017],[9.92986087300011,57.56745026200015],[9.943125847000147,57.572495835],[9.96697024800011,57.59137604400002],[10.015391472000118,57.596625067000026],[10.107676629000139,57.59296295800005],[10.197601759000063,57.601223049000154],[10.279551629000082,57.62091705900009],[10.350596550000148,57.648993231000084],[10.472504102000128,57.716986395000056],[10.539073113000114,57.74384186400014],[10.566091342000078,57.74945709800015],[10.596039259000122,57.751166083000136],[10.625010613000143,57.747503973],[10.648936394000089,57.73700592700011],[10.5944116550001,57.72589752800008],[10.54249108200014,57.69891998900014],[10.460459832000112,57.63056061400005]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Spain","sov_a3":"ESP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Spain","adm0_a3":"ESP","geou_dif":0,"geounit":"Spain","gu_a3":"ESP","su_dif":0,"subunit":"Spain","su_a3":"ESP","brk_diff":0,"name":"Spain","name_long":"Spain","brk_a3":"ESP","brk_name":"Spain","brk_group":null,"abbrev":"Sp.","postal":"E","formal_en":"Kingdom of Spain","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Spain","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":5,"mapcolor13":5,"pop_est":40525002,"gdp_md_est":1403000,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"SP","iso_a2":"ES","iso_a3":"ESP","iso_n3":"724","un_a3":"724","wb_a2":"ES","wb_a3":"ESP","woe_id":23424950,"woe_id_eh":23424950,"woe_note":"Exact WOE match as country","adm0_a3_is":"ESP","adm0_a3_us":"ESP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":5,"abbrev_len":3,"tiny":-99,"homepart":1,"filename":"ESP.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-17.885121222999942,27.797919012000037],[-17.9264216789999,27.742824611000103],[-17.927601691999907,27.73651764500015],[-17.926909959999872,27.73037344000006],[-17.926909959999872,27.72435130400008],[-17.930165167999917,27.718654690000093],[-17.93512936099995,27.715643622000083],[-17.940663214999887,27.71369049700003],[-17.945139126999948,27.710760809000117],[-17.946929490999935,27.70465729400003],[-17.95030676999994,27.699530341000113],[-17.95775305899994,27.6939964860001],[-17.965240037999905,27.686997789000102],[-17.96861731699991,27.677679755000085],[-17.97130286399991,27.654364325000145],[-17.97948157499991,27.642523505000028],[-17.994130011999914,27.64223867400007],[-18.0157771479999,27.653469143000066],[-18.03066972599987,27.667873440000122],[-18.039784308999852,27.681341864000117],[-18.053130662999877,27.691229559000035],[-18.126942511999886,27.700262762000033],[-18.146636522999927,27.70856354400003],[-18.160389777999853,27.722357489000117],[-18.16722571499986,27.75755442899999],[-18.14049231699994,27.76878489799999],[-18.097767706999917,27.76536692900008],[-18.056792772999927,27.75649648600013],[-18.041981574999852,27.765204169000114],[-18.0032445949999,27.79881419500013],[-17.995350714999944,27.808050848],[-17.994130011999914,27.818752346000124],[-17.989857550999915,27.82371653900016],[-17.96861731699991,27.83222077],[-17.933949347999942,27.852036851000108],[-17.914051886999857,27.849554755],[-17.896473761999914,27.840318101000136],[-17.884022589999887,27.827582098000093],[-17.879261847999913,27.81452057500009],[-17.885121222999942,27.797919012000037]]],[[[-15.415638800999941,28.141506252000127],[-15.41494706899991,28.11448802299999],[-15.408558722999885,28.074896552000137],[-15.406239386999912,28.068060614000117],[-15.403920050999943,28.05630117400015],[-15.399647589999859,28.042669989],[-15.391590949999907,28.03021881700009],[-15.383452928999901,28.024318752000156],[-15.367583787999875,28.015814520000117],[-15.363636847999885,28.00971100500011],[-15.36628170499995,27.99347565300009],[-15.37413489499994,27.975490627000156],[-15.37669837099986,27.957505601000108],[-15.363636847999885,27.94147370000003],[-15.363636847999885,27.934637762000094],[-15.374623175999913,27.92987702],[-15.381906704999949,27.921210028000118],[-15.391590949999907,27.89984772300015],[-15.382720506999874,27.885484117000157],[-15.375965949999909,27.867580471000124],[-15.377837693999878,27.85228099200016],[-15.394683397999898,27.84589264500015],[-15.406971808999854,27.838324286],[-15.43919837099989,27.802679755000142],[-15.453033006999874,27.791245835],[-15.523426886999884,27.77167389500012],[-15.534901495999945,27.766424872000027],[-15.539662238999938,27.765611070000105],[-15.566029425999943,27.739406643000095],[-15.57795162699989,27.73436107000005],[-15.588246222999885,27.7389183610001],[-15.597727016999896,27.74628327],[-15.60724850199989,27.750311591000138],[-15.650502081999889,27.753119208000115],[-15.669545050999885,27.757147528000175],[-15.685699022999927,27.76333242400015],[-15.739654100999871,27.80434804900015],[-15.747873501999946,27.81452057500009],[-15.75186113199993,27.821356512000122],[-15.77281653599988,27.831976630000053],[-15.781971808999856,27.838446356000148],[-15.786000128999914,27.844224351000136],[-15.81505286399991,27.901271877000124],[-15.821197068999881,27.921779690000093],[-15.81607011599988,27.94147370000003],[-15.820057745999861,27.952866929],[-15.821766730999855,27.968329169000114],[-15.820627407999922,27.984076239000057],[-15.81607011599988,27.99603913],[-15.806996222999885,28.005031643],[-15.767689581999944,28.023993231000034],[-15.749826626999889,28.035956122000144],[-15.72520911399991,28.05687083500011],[-15.708363410999906,28.081935940000037],[-15.713693813999953,28.10590241100006],[-15.70213782499985,28.115057684000146],[-15.698109503999973,28.13304271],[-15.700062628999914,28.15289948100009],[-15.706206834999904,28.16738515800013],[-15.695057745999888,28.16819896000005],[-15.684396938999923,28.167629299000094],[-15.674427863999936,28.16526927300013],[-15.665272589999857,28.160549221000124],[-15.650786912999905,28.163885809000146],[-15.597035285999963,28.147528387000033],[-15.521311001999893,28.147528387000033],[-15.458729620999861,28.134222723000033],[-15.435047980999855,28.14093659100014],[-15.438710089999885,28.174872137000094],[-15.40929114499991,28.179754950000174],[-15.405262824999852,28.177923895],[-15.399891730999881,28.16502513199999],[-15.400135870999916,28.157212632],[-15.408558722999885,28.153753973],[-15.415638800999941,28.141506252000127]]],[[[-17.207110520999947,28.02669329900006],[-17.232705541999906,28.019106132000058],[-17.257887594999914,28.02456954100002],[-17.310073186999887,28.053473574000137],[-17.343220901999928,28.097660414000146],[-17.343376510999917,28.133356288000083],[-17.338816928999876,28.171047137000173],[-17.309673192999924,28.20711735499999],[-17.259173290999883,28.21771663800008],[-17.212721082999902,28.205449330000093],[-17.17039954299986,28.18109772300006],[-17.116118943999908,28.146226304000137],[-17.104279473999952,28.12303526500004],[-17.09841969699988,28.100763585000053],[-17.113937354999877,28.08096711800006],[-17.133525170999917,28.069778589000165],[-17.16318652599989,28.04501360300013],[-17.184975310999988,28.03161903900003],[-17.207110520999947,28.02669329900006]]],[[[-16.117746548999946,28.572088934000178],[-16.12707047199993,28.54381850200018],[-16.157397776999858,28.524482834000125],[-16.231391362999915,28.48841554799999],[-16.2480147389999,28.46112282000017],[-16.268671852999944,28.443315981000026],[-16.29613593399995,28.417762461000123],[-16.323895607999873,28.397469471000093],[-16.34163360999989,28.391334892000103],[-16.355513648999903,28.381149772000086],[-16.365771928999948,28.362455298000054],[-16.366106515999917,28.34142529900008],[-16.360577139999915,28.324581066000107],[-16.35810622799994,28.31463092800008],[-16.36133221699987,28.304423457000084],[-16.3710002279999,28.297118609000066],[-16.380015986999894,28.288342115000077],[-16.386773159999876,28.26498973500013],[-16.419232876999928,28.211382738000125],[-16.427966321999918,28.167685903000162],[-16.427695488999888,28.14966954],[-16.441029425999943,28.132757880000057],[-16.456776495999886,28.115464585000055],[-16.52154665499992,28.05757308600012],[-16.53632727099992,28.036474285000125],[-16.545765753999888,28.023993231000034],[-16.57971021299988,28.030332462000057],[-16.63442150499992,28.011656512000073],[-16.657439618999945,28.003653684000042],[-16.676339731999914,27.997096487000093],[-16.692683274999865,27.999846942000104],[-16.703551699999934,28.01368318300017],[-16.7057519789999,28.023000334000027],[-16.704090949999852,28.034979559000178],[-16.713246222999942,28.03827545800011],[-16.721058722999942,28.044501044000167],[-16.724110480999908,28.052679755],[-16.725941535999908,28.071478583000143],[-16.727894660999937,28.07859935099999],[-16.74160722599987,28.093817450000145],[-16.780629035999937,28.12787506700009],[-16.788685675999886,28.143784898000103],[-16.795399542999917,28.16526927300013],[-16.810536261999914,28.181870835],[-16.826812303999873,28.195746161000088],[-16.83714758999986,28.2089704450001],[-16.84398352799988,28.253078518],[-16.847238735999923,28.262518622000027],[-16.86119544199991,28.28188711100013],[-16.873402472999885,28.305243231000034],[-16.906605597999885,28.335150458000115],[-16.916058089999865,28.35496980600014],[-16.891935291999857,28.368656446000145],[-16.837439856999907,28.39108280900002],[-16.817766410999866,28.38356311200003],[-16.794178839999915,28.369126695000045],[-16.7825414699999,28.36603424700017],[-16.77013098899988,28.366278387000122],[-16.74156653599988,28.373480536000145],[-16.71961939299993,28.383261875000144],[-16.687189944999915,28.392780067000146],[-16.664179502999897,28.400726786000135],[-16.64439856699988,28.396429755000142],[-16.604406380999905,28.39966697700011],[-16.584633967999878,28.40109951000015],[-16.564478885999876,28.415335341000127],[-16.538929816999882,28.417873440000065],[-16.528187628999973,28.42210521],[-16.50713517699998,28.4241340520001],[-16.48690353399985,28.438273596],[-16.43993079299989,28.475246486000103],[-16.420399542999917,28.490627346000124],[-16.41429602799991,28.499212958000143],[-16.411976691999968,28.51373932500009],[-16.408273891999926,28.51984284100017],[-16.389393683999884,28.528753973],[-16.381214972999885,28.534247137000033],[-16.363352016999926,28.543036200000117],[-16.341053839999887,28.546576239000085],[-16.322743292999917,28.55345286700019],[-16.316395636999886,28.572088934000178],[-16.300160285999937,28.56663646000014],[-16.202707485999895,28.56403229400014],[-16.141346808999884,28.583441473000146],[-16.117746548999946,28.572088934000178]]],[[[-14.244536912999877,28.129217841000166],[-14.27139238199993,28.096136786000116],[-14.301340298999918,28.06785716400016],[-14.343169725999928,28.05068594000015],[-14.369007941999937,28.05076732000013],[-14.408314581999946,28.066961981000173],[-14.428618943999963,28.071193752000013],[-14.494862433999913,28.06781647300009],[-14.507069464999914,28.071193752000013],[-14.503407355999855,28.074774481000176],[-14.499256964999915,28.08657461100013],[-14.496449347999942,28.09853750200007],[-14.496896938999953,28.102525132000054],[-14.489735480999911,28.104315497000027],[-14.455555792999917,28.099107164000046],[-14.43602454299986,28.100531317000033],[-14.398915167999915,28.111232815000122],[-14.341175910999908,28.13450755400005],[-14.270130988999938,28.17597077000015],[-14.240142381999874,28.201564846000124],[-14.22443600199992,28.218573309000092],[-14.213531053999928,28.23493073100012],[-14.207386847999942,28.254380601000108],[-14.201893683999913,28.303900458000143],[-14.19322669199994,28.321844794000082],[-14.1712947259999,28.352362372000027],[-14.146392381999874,28.4233259140001],[-14.140858527999853,28.434881903000033],[-14.127919074999852,28.44358958500011],[-14.098296678999901,28.48663971600014],[-14.07555091099988,28.53611888200011],[-14.03612219999988,28.587388414000046],[-14.024566209999875,28.63711172100012],[-14.010121222999912,28.6674665390001],[-14.005279100999926,28.70359935100005],[-13.999908006999874,28.716742255000028],[-13.989491339999887,28.72687409100014],[-13.972645636999886,28.735907294000167],[-13.93541419199991,28.74949778900013],[-13.89867102799991,28.753892320000105],[-13.864572719999899,28.74420807500014],[-13.835519985999923,28.715480861000106],[-13.824370897999898,28.6817894550001],[-13.821156378999945,28.636664130000142],[-13.82868404899989,28.551581122000027],[-13.835194464999887,28.530747789000046],[-13.8529353509999,28.492743231000063],[-13.856556769999939,28.478989976000136],[-13.857736782999979,28.445502020000088],[-13.856556769999939,28.434881903000033],[-13.853627081999917,28.42841217700014],[-13.844349738999881,28.41429271],[-13.842925584999904,28.406927802000027],[-13.847767706999889,28.397406317],[-13.865712042999915,28.382879950000174],[-13.869618292999917,28.376898505000053],[-13.870106574999907,28.367743231000176],[-13.871815558999911,28.357977606000034],[-13.875152147999925,28.349066473],[-13.892079230999911,28.32819245000003],[-13.900217251999948,28.311102606000173],[-13.911284959999875,28.277248440000037],[-13.933705206999889,28.244208075000145],[-13.966786261999857,28.22797272300012],[-14.072580532999948,28.21283600500011],[-14.118560350999898,28.200506903000175],[-14.152007615999878,28.179999091000028],[-14.19163977799991,28.170843817000147],[-14.212228969999927,28.160549221000124],[-14.244536912999877,28.129217841000166]]],[[[-17.86583411399991,28.840643622000027],[-17.84166419199991,28.835435289000046],[-17.80138098899991,28.849310614000114],[-17.78148352799994,28.842271226000047],[-17.765004035999937,28.82941315300003],[-17.755767381999874,28.818508205000157],[-17.757801886999914,28.798651434000153],[-17.750602426999933,28.774762657000124],[-17.74143808499991,28.757911764000042],[-17.721882904999887,28.74902884900014],[-17.72104415999985,28.730643804000138],[-17.751099500999942,28.699983927000133],[-17.765253519999874,28.677548591000043],[-17.757532133999884,28.657676527000017],[-17.745604195999903,28.62188696100004],[-17.7536603959999,28.603026217000107],[-17.7598564029999,28.576821003000116],[-17.783340290999885,28.548595946000134],[-17.803297796999885,28.509456075000074],[-17.82168535099993,28.475816148000078],[-17.830881313999896,28.455389716000084],[-17.837066209999872,28.455389716000084],[-17.84288489499991,28.465033270000063],[-17.86512205699998,28.475381034000023],[-17.872153170999866,28.49442620900011],[-17.879687701999956,28.543712542000108],[-17.891166430999903,28.555651122000157],[-17.89858985399985,28.571648749000175],[-17.919289367999852,28.596303282000022],[-17.92483835399989,28.618339006000113],[-17.963098057999957,28.671488781],[-17.967145670999912,28.69673583100014],[-17.97141390399986,28.712563172],[-17.97614498599998,28.72817617400015],[-17.992298956999946,28.73859284100014],[-18.002186652999853,28.749579169000114],[-17.996815558999884,28.780096747000144],[-17.970692511999857,28.81321849200016],[-17.936350063999896,28.840318101000108],[-17.911145077999947,28.85561903200001],[-17.89053453999992,28.843945767000047],[-17.86583411399991,28.840643622000027]]],[[[-13.458729620999918,29.147406317000144],[-13.462391730999881,29.13214752800017],[-13.459136522999925,29.118597723],[-13.454009568999908,29.104071356000144],[-13.451893683999884,29.08600495000014],[-13.453846808999856,29.078924872000087],[-13.462269660999908,29.065741278000036],[-13.46556555899994,29.05805084800012],[-13.46621660099987,29.04975006700015],[-13.464588995999861,29.032171942],[-13.46556555899994,29.023911851000108],[-13.482045050999915,28.99945709800009],[-13.510487433999856,28.97748444200006],[-13.543039516999897,28.961737372000115],[-13.589955206999946,28.951361395],[-13.599720831999889,28.942043361000156],[-13.607574022999868,28.932603257000054],[-13.61978105399993,28.92837148600013],[-13.635487433999911,28.927232164000184],[-13.65843665299991,28.92259349200016],[-13.674387173999916,28.921535549000012],[-13.709299282999922,28.914699611000103],[-13.736073370999918,28.8964704450001],[-13.757191535999937,28.870306708000058],[-13.774647589999915,28.83958567900008],[-13.780873175999943,28.83958567900008],[-13.791493292999917,28.853461005000057],[-13.812123175999913,28.85907623900006],[-13.85968990799992,28.859442450000174],[-13.867298956999946,28.864894924000037],[-13.87364661399988,28.87685781500015],[-13.87633216099988,28.88882070500007],[-13.873036261999943,28.894232489000117],[-13.86192786399991,28.897406317],[-13.853423631999874,28.90497467700014],[-13.842925584999904,28.921535549000012],[-13.839100714999885,28.937892971000124],[-13.835072394999912,28.98720937700001],[-13.832102016999897,29.000392971000068],[-13.798491990999878,29.048081773000135],[-13.780873175999943,29.064886786000148],[-13.766835089999915,29.074042059000117],[-13.75055904899989,29.08063385600009],[-13.731434699999909,29.08466217700005],[-13.70889238199993,29.08600495000014],[-13.690174933999856,29.09088776200012],[-13.656483527999853,29.116034247000087],[-13.636830206999889,29.12693919500016],[-13.618275519999884,29.13239166900011],[-13.602365688999953,29.134263414000156],[-13.551177537999905,29.134222723000093],[-13.537220831999946,29.138251044000143],[-13.526112433999913,29.15029531500006],[-13.513986782999922,29.174750067000033],[-13.503163214999915,29.208156643000095],[-13.495472785999906,29.225083726000076],[-13.48298092399989,29.239935614000117],[-13.465402798999975,29.24331289300015],[-13.446603969999927,29.23297760600003],[-13.41779537699989,29.208929755],[-13.42760169199991,29.18870677299999],[-13.43150794199991,29.172430731000144],[-13.438791469999925,29.159002997000144],[-13.458729620999918,29.147406317000144]]],[[[-13.49201412699992,29.24266185099999],[-13.517079230999911,29.226263739],[-13.54124915299991,29.22939687700007],[-13.54124915299991,29.23680247600005],[-13.525746222999912,29.251206773000103],[-13.517933722999913,29.27350495000014],[-13.508168097999885,29.289455471000064],[-13.486683722999942,29.28461334800009],[-13.47789466099988,29.26626211100013],[-13.49201412699992,29.24266185099999]]],[[[-4.296899558999883,35.17224902600016],[-4.297730463999869,35.17153682100003],[-4.299392273999985,35.17165552199999],[-4.300935382999853,35.17207097400008],[-4.301884987999898,35.17266447800007],[-4.301054082999882,35.172901879],[-4.300045127999908,35.17272382800011],[-4.298700709999963,35.17261202000019],[-4.296899558999883,35.17224902600016]]],[[[-2.426501991999942,35.182113679000125],[-2.431414170999858,35.17876558400006],[-2.435858709999877,35.1811898780001],[-2.434242513999919,35.18523036700019],[-2.42939392699995,35.18603846500015],[-2.426501991999942,35.182113679000125]]],[[[-3.901956849999948,35.215464452000035],[-3.902532578999882,35.21478712400001],[-3.90313178999989,35.21503870100007],[-3.902962458999923,35.215309632000086],[-3.902329379999855,35.21590471400013],[-3.901956849999948,35.215464452000035]]],[[[-3.899953471999908,35.217860931000146],[-3.89981800699988,35.21728520300003],[-3.900495333999885,35.217352935000136],[-3.901003328999906,35.21721747000011],[-3.901308126999908,35.21731906899999],[-3.901274259999866,35.21762386600007],[-3.900732397999888,35.217827065],[-3.899953471999908,35.217860931000146]]],[[[-2.912906597796621,35.27691564016676],[-2.943045613999885,35.26787424800007],[-2.963767862999902,35.28621938100015],[-2.966920125999877,35.313866272000084],[-2.947817735929419,35.32976812504365],[-2.92202714799987,35.287990627000156],[-2.913197394999912,35.27724844000015],[-2.912912563999952,35.27692291900002],[-2.912906597796621,35.27691564016676]]],[[[-5.415969540999896,35.91353101900016],[-5.417888241999918,35.91087435600018],[-5.420249719999929,35.91161231800011],[-5.420840089999927,35.91426898100012],[-5.418773795999925,35.91559731200006],[-5.415969540999896,35.91353101900016]]],[[[-5.327381964999915,35.90424225500014],[-5.309315558999884,35.900824286000145],[-5.283070441999939,35.91168854400003],[-5.291859503999916,35.89052969000012],[-5.335560675999914,35.86237213700004],[-5.340725500097989,35.84736567903393],[-5.362897908999884,35.863806865000086],[-5.378400837999891,35.881686910000056],[-5.389717976999862,35.90204742499999],[-5.398858678935312,35.924503852782905],[-5.398833787999876,35.924505927000055],[-5.385161912999934,35.92617422100007],[-5.366200324999909,35.924750067],[-5.344105597999942,35.91474030200011],[-5.327381964999915,35.90424225500014]]],[[[-0.740142381999902,37.70246002800009],[-0.726470506999874,37.66518789300012],[-0.746896938999924,37.68378327000012],[-0.751210089999859,37.713283596000096],[-0.75031490799995,37.74603913000011],[-0.754505988999881,37.774400132000046],[-0.749419725999871,37.77488841400013],[-0.748199022999927,37.77317942900014],[-0.748199022999927,37.77049388200005],[-0.746978318999908,37.768215236000074],[-0.743641730999883,37.76398346600014],[-0.737538214999915,37.75364817900005],[-0.732736782999922,37.74774811400012],[-0.741851365999906,37.72553131700006],[-0.740142381999902,37.70246002800009]]],[[[1.437510613000143,38.74925364800005],[1.48609459700009,38.69456614800002],[1.526383264000089,38.677767624000076],[1.565683815000114,38.69148550500001],[1.582367384000122,38.67491282800013],[1.581390821000127,38.653062242000104],[1.557485750000097,38.64883885900015],[1.523448113000143,38.64940013200005],[1.474222865000058,38.674596642],[1.458085631000046,38.681340739000134],[1.438731316000144,38.67027415600002],[1.429047071000099,38.66494375200015],[1.412791680000083,38.64644583200014],[1.396976700000096,38.63864630700006],[1.382950333000053,38.64206092500013],[1.387550540000092,38.66237786100011],[1.383459549000094,38.670000028000075],[1.383474155000044,38.68040599200016],[1.388682488000143,38.68711985900002],[1.393321160000056,38.696275132000025],[1.393728061000076,38.70420970300016],[1.386485222000147,38.70766836100016],[1.382823113000086,38.71157461100016],[1.388612436000102,38.719114917000084],[1.401002263000123,38.730326346000126],[1.408029279000033,38.72448584800004],[1.418142123000109,38.72789134300008],[1.427907748000052,38.73936595300013],[1.431325717000078,38.75486888200014],[1.43539472700013,38.755357164000124],[1.436534050000148,38.75401439000014],[1.436534050000148,38.7516136740001],[1.437510613000143,38.74925364800005]]],[[[1.578379754000139,39.10488515800012],[1.58969160200013,39.102769273000135],[1.59791100400011,39.09813060100011],[1.605967644000145,39.09129466400019],[1.600840691000144,39.08238353100013],[1.606944207000112,39.062363999000084],[1.623057488000086,39.02920156500015],[1.606455925000148,39.02838776200004],[1.593272332000083,39.02024974200013],[1.584646030000101,39.0074323590001],[1.581390821000127,38.99192942899999],[1.576182488000143,38.98582591400019],[1.541188998000052,38.96775950700008],[1.509776238000114,38.93016185100008],[1.497243686000104,38.92186107000002],[1.469493035000141,38.91026439000008],[1.45866946700005,38.90013255400011],[1.454925977000102,38.90403880400011],[1.448415561000104,38.908799546000026],[1.444997592000107,38.91315338700012],[1.428558790000096,38.89659251500014],[1.414728475000118,38.89062173700002],[1.404144727000073,38.85675690300015],[1.403104951000103,38.83227756300012],[1.370650433000122,38.83180940700011],[1.360850457000083,38.851914781000076],[1.34351647200009,38.86237213700014],[1.328868035000085,38.85789622600002],[1.322032097000147,38.85789622600002],[1.318614129000139,38.85911692900011],[1.31771894600007,38.85984935100005],[1.307790561000076,38.85789622600002],[1.300303582000083,38.87046946800008],[1.283457879000082,38.87461985900004],[1.266612175000091,38.870347398000106],[1.259938998000052,38.85789622600002],[1.228200717000078,38.87461985900004],[1.216644727000045,38.88507721600011],[1.212168816000087,38.90322500200001],[1.224294467000078,38.92735423400002],[1.22754967500012,38.942002671000054],[1.21843509200005,38.95408763200014],[1.226735873000109,38.960191148000135],[1.236827019000089,38.96515534100017],[1.248220248000052,38.966376044000086],[1.259938998000052,38.96092357000005],[1.26726321700005,38.96605052300008],[1.276866082000112,38.968003648000106],[1.300954623000052,38.96775950700008],[1.292246941000144,39.00987376500002],[1.29281660200013,39.03327057500012],[1.304453972000118,39.04344310100005],[1.317556186000104,39.04759349200018],[1.332530144000117,39.05723704600017],[1.356781446000127,39.07762278900004],[1.363047722000061,39.07762278900004],[1.372243686000047,39.0713972030001],[1.391937696000099,39.08331940300003],[1.403330925000148,39.07762278900004],[1.42318769600007,39.09056224200005],[1.450694207000083,39.101792710000055],[1.478688998000109,39.107733466000084],[1.499522332000083,39.10488515800012],[1.508636915000068,39.11436595300013],[1.522715691000116,39.118882554000024],[1.537119988000086,39.11802806200011],[1.553558790000096,39.107652085],[1.560394727000102,39.10582103100002],[1.578379754000139,39.10488515800012]]],[[[2.982307966000093,39.13918350800019],[2.962154470000144,39.11606223500017],[2.930866760000072,39.118175889000085],[2.913614193000086,39.151962675000064],[2.940424231000122,39.171930378000084],[2.980582428000076,39.18556043100012],[2.985366533000047,39.16617614000013],[2.982307966000093,39.13918350800019]]],[[[3.179453972000118,39.968776760000125],[3.193125847000147,39.95510488500018],[3.198415561000018,39.95929596600011],[3.201345248000052,39.96051666900002],[3.21420332100007,39.95510488500018],[3.203623894000117,39.94916413000005],[3.168467644000145,39.93638743700002],[3.155609571000127,39.93402741100005],[3.140879754000139,39.92808665600013],[3.127452019000145,39.91669342700008],[3.11548912900011,39.90875885600009],[3.104340040000096,39.913519598],[3.096934441000116,39.913519598],[3.09473717500012,39.88121165600007],[3.130218946000099,39.87641022300009],[3.20679772200009,39.893011786000145],[3.20679772200009,39.88682689000008],[3.196787957000112,39.88121165600007],[3.195567254000082,39.874538479000115],[3.196462436000076,39.86713288000014],[3.193125847000147,39.85956452000009],[3.187185092000021,39.85435618700011],[3.18148847700013,39.85138580900018],[3.165212436000104,39.84589264500015],[3.133555535000141,39.83954498900012],[3.126312696000099,39.83185455900009],[3.124847852000045,39.81110260600009],[3.136485222000147,39.78876373900009],[3.162608269000117,39.76911041900003],[3.19483483200014,39.7549909530001],[3.223887566000116,39.74970123900012],[3.29249108200014,39.74970123900012],[3.309906446000127,39.755072333000086],[3.340342644000089,39.77899811400012],[3.354502800000091,39.784369208],[3.383148634000065,39.77794017100008],[3.439789259000065,39.75197988500018],[3.474375847000147,39.74970123900012],[3.468516472000118,39.73932526200012],[3.469411655000101,39.73106517100002],[3.472666863000143,39.72357819200006],[3.474375847000147,39.71552155200011],[3.470550977000129,39.710313218000024],[3.464366082000083,39.70640696800005],[3.461436394000145,39.70005931200011],[3.467539910000141,39.68756745000009],[3.453868035000113,39.65969472900004],[3.443207227000073,39.645778713000155],[3.429942254000139,39.63983795800014],[3.413096550000148,39.635077216000134],[3.40186608200014,39.62323639500009],[3.398692254000082,39.60773346600017],[3.40601647200009,39.59198639500003],[3.365407748000081,39.56305573100012],[3.32325280000012,39.52387116100009],[3.291758660000113,39.47577545800003],[3.282481316000059,39.42011139500009],[3.272715691000115,39.42475006700012],[3.268809441000116,39.42755768400015],[3.252614780000073,39.38617584800015],[3.221039259000094,39.35989004100013],[3.129405144000088,39.31574127800006],[3.090993686000076,39.29006582200019],[3.083262566000087,39.28009674700009],[3.079112175000119,39.27688222900004],[3.06999759200005,39.27175527600012],[3.060801629000082,39.26906972900003],[3.056651238000114,39.27297597900003],[3.029307488000142,39.30463288000011],[3.022959832000112,39.308172919000086],[3.00733483200014,39.3137474630001],[3.001312696000127,39.31769440300009],[2.996755405000101,39.326971747000144],[2.994639519000088,39.33795807500008],[2.991384311000047,39.347276109000134],[2.984222852000102,39.35114166900014],[2.974457227000045,39.35346100500011],[2.958832227000073,39.36322663000005],[2.950043165000096,39.365505276000036],[2.938161655000044,39.3643659530001],[2.922373894000116,39.35972728100016],[2.91260826900006,39.3586693380001],[2.825450066000144,39.36359284100016],[2.786631707000112,39.37592194200011],[2.761729363000085,39.400213934000085],[2.751231316000115,39.45477936400006],[2.73658287900011,39.462103583000086],[2.739512566000116,39.47829824400013],[2.754893425000148,39.502630927],[2.743500196000098,39.52338288],[2.715098504000082,39.543524481000034],[2.681651238000114,39.55866120000003],[2.65528405000012,39.56472402600012],[2.633474155000073,39.559271552],[2.569102410000056,39.53152090100009],[2.555674675000063,39.520046291000156],[2.544932488000142,39.49298737200003],[2.520192905000073,39.472845770000085],[2.492686394000145,39.47024160400018],[2.473806187000122,39.49579498800007],[2.471690300000091,39.497910874000084],[2.46900475400011,39.50588613500003],[2.472178582000083,39.512152411],[2.480642123000052,39.51622142100014],[2.453949415000096,39.53742096600014],[2.445811394000089,39.52887604400003],[2.438161655000073,39.52521393400015],[2.431162957000083,39.527696031000104],[2.425954623000081,39.53742096600014],[2.398285352000102,39.52496979400003],[2.391856316000087,39.52374909100011],[2.382090691000144,39.52924225500014],[2.373708530000073,39.547186591000084],[2.355642123000052,39.55866120000003],[2.350759311000104,39.57648346600011],[2.351735873000081,39.59674713700012],[2.357676629000082,39.61188385600012],[2.429372592000106,39.64667389500006],[2.450450066000116,39.650336005000106],[2.468272332000083,39.65936920800011],[2.517588738000086,39.70014069200009],[2.532399936000047,39.70636627800006],[2.552419467000021,39.708685614],[2.569672071000127,39.71308014500009],[2.586599155000101,39.723822333],[2.617686394000117,39.74970123900012],[2.621918165000125,39.75446198100012],[2.629079623000081,39.76687246300004],[2.631358269000145,39.770127671000076],[2.635996941000087,39.77102285400018],[2.64747155000012,39.769232489],[2.651866082000111,39.770127671000076],[2.67603600400011,39.7890892600001],[2.679209832000083,39.79401276200015],[2.683604363000057,39.79621002800015],[2.703949415000068,39.814154364],[2.710622592000107,39.81854889500009],[2.717946811000104,39.82013580900012],[2.747406446000099,39.83161041900014],[2.761729363000085,39.840521552],[2.773203972000118,39.84963613500018],[2.78484134200005,39.85671621300004],[2.799652540000096,39.85956452000009],[2.803233269000089,39.86159902600012],[2.80958092500012,39.87055084800015],[2.813243035000056,39.87258535400018],[2.834157748000109,39.87116120000012],[2.84359785200013,39.87258535400018],[2.873057488000114,39.883490302000055],[2.933278842000078,39.91449616100009],[2.964121941000144,39.92096588700018],[3.020274285000141,39.92515696800011],[3.075694207000112,39.936102606000176],[3.179453972000118,39.968776760000125]]],[[[4.116791212000095,40.05963776200018],[4.139089389000048,40.04592519700016],[4.13697350400011,40.043036200000024],[4.134857618000097,40.035711981000034],[4.135427280000073,40.028225002000156],[4.142263217000107,40.02480703300012],[4.14852949300004,40.02781810100005],[4.15593509200005,40.03465403900016],[4.165782097000147,40.04592519700016],[4.16382897200009,40.060573635000154],[4.170502149000072,40.06460195500013],[4.176524285000056,40.05923086100007],[4.172618035000084,40.04592519700016],[4.178640170000079,40.038845119000094],[4.206716342000078,40.02480703300012],[4.212494337000038,40.017238674],[4.216888868000126,40.01260000200007],[4.227224155000044,40.004909572000045],[4.232676629000082,40.00271230700015],[4.247487826000054,40.00039297100001],[4.254567905000101,39.99746328300007],[4.264903191000116,39.98639557500003],[4.273366733000046,39.96995677300004],[4.272390170000079,39.95534902600012],[4.254567905000101,39.949693101000136],[4.2701115240001,39.943752346],[4.285899285000141,39.9446068380001],[4.298024936000047,39.94196198100012],[4.302907748000109,39.92552317900011],[4.307302280000101,39.910549221000096],[4.328786655000044,39.88344961100016],[4.337087436000104,39.86717357000013],[4.330332879000082,39.86717357000013],[4.326263868000097,39.87343984600007],[4.319753451000111,39.87921784100014],[4.311778191000059,39.8841820330001],[4.302907748000109,39.88760000200001],[4.300059441000087,39.821763414000046],[4.248138868000098,39.816473700000145],[4.177175326000111,39.84332916900014],[4.015065951000025,39.92576732000008],[3.981374545000023,39.936061916000185],[3.941335483000103,39.936753648000135],[3.869313998000052,39.92552317900011],[3.8306583990001,39.936061916000185],[3.834890170000023,39.94798411700013],[3.835703972000146,39.96242910400018],[3.839121941000144,39.97557200700014],[3.850515170000107,39.98387278900013],[3.8423771490001,39.98940664300012],[3.822032097000089,39.9951439470001],[3.812917514000105,40.001206773000106],[3.803396030000016,40.013169664000046],[3.803151889000076,40.01813385600009],[3.807058139000077,40.02326080900009],[3.809499545000108,40.03538646],[3.821869337000038,40.04763418200015],[3.891530795000108,40.05955638200011],[3.915456576000082,40.05198802300005],[4.011892123000081,40.05955638200011],[4.052012566000087,40.05817291900003],[4.063405795000051,40.05955638200011],[4.077565951000082,40.06427643400012],[4.0943302740001,40.07473379100018],[4.105072462000095,40.07941315300012],[4.107839389000077,40.06761302300005],[4.116791212000095,40.05963776200018]]],[[[1.986162557000114,42.44126068100003],[1.983372030000055,42.44126068100003],[1.960634399000071,42.443715312],[1.947508585000122,42.451234233000044],[1.945648233000099,42.463817445000146],[1.956603638000076,42.481775005000046],[1.967972453000072,42.48570241300011],[1.978307740000076,42.47497955400008],[1.988436320000119,42.458184713000136],[1.99949507600013,42.44389618000004],[1.996084432000117,42.44283681200007],[1.986162557000114,42.44126068100003]]],[[[-7.696156378999916,43.73151276200004],[-7.691558397999871,43.72724030200011],[-7.683990037999933,43.72870514500009],[-7.67516028599988,43.731634833],[-7.673573370999946,43.73436107000008],[-7.674143032999893,43.73920319200015],[-7.672474738999881,43.74384186400009],[-7.664621548999918,43.745917059000085],[-7.658029751999919,43.74652741100006],[-7.641021287999876,43.75267161700013],[-7.637603318999878,43.73908112200017],[-7.613026495999861,43.704291083000115],[-7.615956183999884,43.68854401200015],[-7.607167120999917,43.69110748900009],[-7.594593878999916,43.70368073100015],[-7.586415167999917,43.71796295800005],[-7.574289516999925,43.71454498900006],[-7.56541907499988,43.71979401200004],[-7.555775519999912,43.72760651200004],[-7.541411912999934,43.731634833],[-7.502023891999926,43.72833893400015],[-7.490142381999902,43.725327867000075],[-7.4076228509999,43.69122955900015],[-7.367054816999882,43.680080471000124],[-7.304107225999928,43.598578192],[-7.256743943999908,43.58161041900003],[-7.260161912999905,43.57750071800017],[-7.262277798999919,43.57428620000011],[-7.265126105999855,43.57147858300006],[-7.271066860999895,43.568630276000036],[-7.271066860999895,43.56114329600014],[-7.257720506999873,43.55666738500009],[-7.249623175999943,43.559393622000144],[-7.242014126999919,43.56480540600002],[-7.230091925999886,43.568630276000036],[-7.215443488999966,43.56867096600003],[-7.194894985999922,43.5635033220001],[-7.156971808999884,43.559271552],[-7.095855272999927,43.560980536],[-7.079335089999859,43.568630276000036],[-7.061594204999949,43.56159088700015],[-7.04430091099988,43.559393622000144],[-7.032338019999941,43.553005276000036],[-7.030873175999886,43.53322988500012],[-7.037749803999873,43.52224355700015],[-7.048410610999923,43.510443427],[-7.053618943999908,43.49652741100003],[-7.044585740999906,43.47919342700011],[-7.043853318999879,43.47919342700011],[-7.038319464999859,43.47919342700011],[-7.032704230999854,43.49546946800014],[-7.029530402999882,43.512152411],[-7.023752407999922,43.525824286000116],[-7.01036536399991,43.53322988500012],[-7.0013728509999,43.55666738500009],[-6.943959113999881,43.56598541900002],[-6.845936652999882,43.568630276000036],[-6.8307185539999,43.56513092700013],[-6.770822719999956,43.568630276000036],[-6.729644334999875,43.559759833000086],[-6.70372473899988,43.55756256700009],[-6.64867102799991,43.57904694200003],[-6.597727016999925,43.5752220720001],[-6.546620245999861,43.56183502800009],[-6.510121222999884,43.547471421000026],[-6.499663865999906,43.55308665600002],[-6.488270636999857,43.55512116100006],[-6.462961391999897,43.55495840100009],[-6.464751756999902,43.5596784530001],[-6.467274542999917,43.57086823100009],[-6.469105597999885,43.57538483300006],[-6.455311652999882,43.57335032800013],[-6.431792772999927,43.56342194200012],[-6.417632615999906,43.56114329600014],[-6.366118943999908,43.568630276000036],[-6.314605272999927,43.568630276000036],[-6.300038214999915,43.57062409100014],[-6.27391516799986,43.57961660400018],[-6.249989386999886,43.584051825000145],[-6.24388587099989,43.58930084800012],[-6.236398891999925,43.594305731000176],[-6.222767706999889,43.595892645000035],[-6.190988735999952,43.578558661000116],[-6.178049282999922,43.57538483300006],[-6.100412563999896,43.56919993700008],[-6.08495032499988,43.57538483300006],[-6.069162563999924,43.56968821800008],[-6.054188605999911,43.57457103100013],[-6.039214647999869,43.583115953000075],[-6.023508266999897,43.588446356000034],[-5.907378709999875,43.588446356000034],[-5.902170376999891,43.597520249000056],[-5.90884355399993,43.60492584800012],[-5.913075324999851,43.61286041900008],[-5.900624152999853,43.62323639500009],[-5.902577277999882,43.62649160400004],[-5.905344204999948,43.633815822000045],[-5.907378709999875,43.63682689000014],[-5.875152147999927,43.636786200000145],[-5.863514777999938,43.64142487200017],[-5.859038865999878,43.65363190300015],[-5.85220292899993,43.66294993700011],[-5.836333787999904,43.662217515000165],[-5.803822394999941,43.65049876500008],[-5.782338019999911,43.637030341000084],[-5.727406378999916,43.58954498900008],[-5.708851691999911,43.568630276000036],[-5.701975063999924,43.568630276000036],[-5.696766730999911,43.58283112200003],[-5.68919837099986,43.578558661000116],[-5.67747962099989,43.56114329600014],[-5.625599738999881,43.55495840100009],[-5.424224412999905,43.56114329600014],[-5.393869594999927,43.555243231000034],[-5.390736456999946,43.54132721600014],[-5.403553839999887,43.525417385000125],[-5.420806443999879,43.51337311400003],[-5.413929816999882,43.50653717699999],[-5.403675910999937,43.51109446800014],[-5.382639126999919,43.516384182000124],[-5.37242591099988,43.520209052000105],[-5.365101691999882,43.526719468000024],[-5.362212693999936,43.53339264500009],[-5.356800910999908,43.53860097900015],[-5.341949022999927,43.540635484000106],[-5.299875454999949,43.53766510600009],[-5.284006313999924,43.53347402600015],[-5.211903449999937,43.498358466000084],[-5.177886522999898,43.489365953000075],[-5.091664191999939,43.48627350499999],[-5.067697719999899,43.48139069200003],[-5.057036912999877,43.46861399900016],[-5.045033331999945,43.47431061400006],[-4.975168423999918,43.458766994000044],[-4.967111782999893,43.46088288000005],[-4.952544725999957,43.470078843000024],[-4.941029425999914,43.47174713700004],[-4.930246548999918,43.46950918200015],[-4.907622850999928,43.46063873900012],[-4.836537238999909,43.449774481000034],[-4.754994269999884,43.42165761900004],[-4.734934048999918,43.4171003280001],[-4.512318488999938,43.40273672100001],[-4.508168097999885,43.40245189000008],[-4.481678839999915,43.38361237200006],[-4.460804816999939,43.398708401000064],[-4.432525193999907,43.402614651000036],[-4.404896613999881,43.39699941600004],[-4.385568813999953,43.38361237200006],[-4.379261847999913,43.38361237200006],[-4.368763800999943,43.39618561400012],[-4.359364386999914,43.39968496300013],[-4.312814907999893,43.39577871300013],[-4.188588019999941,43.40538157800002],[-4.160959438999924,43.42116933800004],[-4.097727016999954,43.43561432500012],[-4.07396399599989,43.438259182000095],[-4.029204881999931,43.438259182000095],[-4.023426886999886,43.44094472900015],[-4.022572394999884,43.44574616100006],[-4.020904100999871,43.450384833],[-4.012766079999921,43.45250071800011],[-4.005686001999891,43.450791734000106],[-3.98143469999988,43.438259182000095],[-3.976470506999931,43.442938544000114],[-3.971994594999956,43.44415924700003],[-3.967152472999885,43.44419993700002],[-3.961008266999925,43.4450951190001],[-3.965443488999881,43.446844794000114],[-3.974598761999886,43.45250071800011],[-3.974598761999886,43.458766994000044],[-3.940052863999881,43.47711823100009],[-3.922718878999887,43.48261139500011],[-3.906320766999954,43.47919342700011],[-3.893788214999887,43.4848900410001],[-3.890858527999853,43.483710028000175],[-3.885853644999912,43.47919342700011],[-3.856800910999936,43.49237702000006],[-3.826730923999889,43.497015692],[-3.79702714799987,43.492743231000084],[-3.769154425999914,43.47919342700011],[-3.812652147999955,43.46487051000004],[-3.830962693999907,43.456000067],[-3.844309048999918,43.4450951190001],[-3.833851691999939,43.435899156000126],[-3.829253709999904,43.43313222900017],[-3.823841925999943,43.430772203000046],[-3.827259894999884,43.430039781000104],[-3.829986131999931,43.43012116100008],[-3.831532355999883,43.429063218000024],[-3.831288214999944,43.42458730700015],[-3.820220506999902,43.42426178600011],[-3.811187303999901,43.42548248900006],[-3.796498175999886,43.430772203000046],[-3.789540167999888,43.43585846600014],[-3.776193813999897,43.44965241100005],[-3.772287563999896,43.45250071800011],[-3.763498501999919,43.45026276200012],[-3.754139777999881,43.44049713700018],[-3.744984503999916,43.438259182000095],[-3.740712042999888,43.44232819200006],[-3.743031378999945,43.45136139500006],[-3.748890753999916,43.460720119000094],[-3.755523240999878,43.465521552],[-3.755523240999878,43.47174713700004],[-3.741525844999898,43.470241604000094],[-3.735747850999929,43.468817450000024],[-3.728871222999941,43.465521552],[-3.727162238999937,43.470526434000035],[-3.725819464999859,43.470526434000035],[-3.721424933999856,43.47174713700004],[-3.728871222999941,43.47919342700011],[-3.717925584999875,43.48273346600011],[-3.688384568999907,43.48423899900014],[-3.676991339999859,43.48944733300006],[-3.667062954999949,43.496649481000176],[-3.65607662699989,43.500677802000055],[-3.579416469999927,43.518255927],[-3.554351365999934,43.51691315300009],[-3.556263800999886,43.49970123900008],[-3.539051886999857,43.49896881700015],[-3.525624152999882,43.491644598000114],[-3.514719204999892,43.48322174700009],[-3.505360480999855,43.47919342700011],[-3.436634894999884,43.470485744000044],[-3.431507941999939,43.466864325000174],[-3.428293423999889,43.461737372000144],[-3.427154100999871,43.455633856000176],[-3.428618943999908,43.446844794000114],[-3.432606574999908,43.44542064000014],[-3.438872850999957,43.44655996300015],[-3.447010870999861,43.4450951190001],[-3.451161261999914,43.44769928600003],[-3.460601365999906,43.45221588700015],[-3.470041469999927,43.45416901200012],[-3.474354620999946,43.44879791900014],[-3.477772589999859,43.44306061400009],[-3.485829230999883,43.437567450000145],[-3.501698370999918,43.430772203000046],[-3.481800910999908,43.42804596600014],[-3.470448370999861,43.41677480700015],[-3.461089647999898,43.412461656000154],[-3.447010870999861,43.430772203000046],[-3.436187303999873,43.41901276200006],[-3.422230597999913,43.418076890000165],[-3.392486131999874,43.42458730700015],[-3.378041144999912,43.42255280200011],[-3.330311652999882,43.41034577000006],[-3.268950975999871,43.40412018400009],[-3.223540818999879,43.39162832200019],[-3.210519985999895,43.389837958],[-3.200021938999924,43.385524807000095],[-3.176909959999875,43.36623769700016],[-3.150868292999888,43.36021556200013],[-3.131499803999872,43.35578034100008],[-3.112375454999921,43.35407135600017],[-3.089507615999906,43.366888739000025],[-3.057850714999915,43.35236237200017],[-3.008168097999913,43.32090892100014],[-3.008168097999913,43.32843659100011],[-3.020008917999888,43.35256582200012],[-3.023426886999886,43.36493561400005],[-3.029286261999857,43.372137762000094],[-3.029286261999857,43.37616608300005],[-3.024322068999879,43.380926825000145],[-3.010975714999887,43.384141343000024],[-2.999419725999957,43.39435455900015],[-2.955922003999916,43.413845119000044],[-2.939930792999917,43.4171003280001],[-2.939930792999917,43.42458730700015],[-2.946685350999871,43.42458730700015],[-2.946685350999871,43.430772203000046],[-2.930083787999905,43.43793366100006],[-2.905262824999852,43.439886786000116],[-2.854237433999856,43.438259182000095],[-2.806996222999885,43.44167715100009],[-2.785959438999953,43.44786204600017],[-2.768625454999948,43.45250071800011],[-2.755848761999914,43.45026276200012],[-2.734934048999946,43.43878815300017],[-2.715199347999913,43.424505927000084],[-2.70653235599994,43.41368235900008],[-2.694935675999915,43.388617255],[-2.691029425999915,43.36753978100016],[-2.687001105999855,43.37144603100016],[-2.679269985999923,43.389837958],[-2.678456183999912,43.39463939000008],[-2.678781704999949,43.400580145000035],[-2.677805141999983,43.40619538000011],[-2.672963019999912,43.41034577000006],[-2.661203579999921,43.411932684000085],[-2.649322068999879,43.40953196800014],[-2.638091600999871,43.40595123900006],[-2.606922980999883,43.40188222900012],[-2.548898891999897,43.38361237200006],[-2.506011522999927,43.37714264500012],[-2.483509894999941,43.37063222900003],[-2.464426235999952,43.349229234000106],[-2.36742102799991,43.315700588000155],[-2.327056443999936,43.306830145],[-2.284657355999855,43.30349355700018],[-2.241118943999936,43.307237046000026],[-2.207875128999916,43.31399160400015],[-2.196278449999909,43.31476471600017],[-2.19041907499988,43.311590887000094],[-2.183461066999882,43.304510809000064],[-2.174468553999873,43.29743073100009],[-2.162220831999889,43.294256903000026],[-2.1595759759999,43.29535553600005],[-2.156320766999954,43.29767487200003],[-2.151519334999875,43.299994208],[-2.144846157999922,43.301092841000056],[-2.140044725999928,43.298895575000145],[-2.137806769999941,43.29421621300004],[-2.134836391999926,43.2895775410001],[-2.127797003999945,43.28742096600011],[-2.098866339999859,43.30414459800012],[-2.08641516799986,43.307237046000026],[-2.065541144999884,43.30959707200016],[-1.994618292999888,43.32843659100011],[-1.971791144999884,43.339219468000024],[-1.9603572259999,43.34308502800003],[-1.945627407999922,43.342637437000015],[-1.933705206999889,43.335638739000146],[-1.926584438999924,43.325873114],[-1.918690558999856,43.32099030200013],[-1.904652472999913,43.32843659100011],[-1.910227016999926,43.33136627800003],[-1.918853318999908,43.338568427000055],[-1.925689256999931,43.342637437000015],[-1.88491777299987,43.356024481000034],[-1.847401495999861,43.380926825000145],[-1.811268683999913,43.39508698100009],[-1.794074744889741,43.386015332151615],[-1.796448933999954,43.374382020000056],[-1.797172403999951,43.353323873000036],[-1.796914021999953,43.341128235000106],[-1.768233601999981,43.33092214000005],[-1.755779581999889,43.31854563400019],[-1.752420612999884,43.2990894580001],[-1.74972998599992,43.294792691000126],[-1.747356322999906,43.291002096000014],[-1.736555948999865,43.29231984400015],[-1.724825397999894,43.29653147400002],[-1.703328002999854,43.298624370000184],[-1.683019164999934,43.3049288940001],[-1.673872435999925,43.30415374799999],[-1.654907185999889,43.2975391640001],[-1.645036986999912,43.29237152100008],[-1.645192016999943,43.28764312800008],[-1.647982543999916,43.28154530900004],[-1.646328897999865,43.272786153000155],[-1.63904252099988,43.25568125500003],[-1.634081583999915,43.25110789000017],[-1.621885945999907,43.24699961300014],[-1.611085571999894,43.24581105600013],[-1.598476521999942,43.24699961300014],[-1.587572794999886,43.251598817000016],[-1.581888386999935,43.26035797100009],[-1.57398189299991,43.27743703200004],[-1.559047403999926,43.284077454000126],[-1.539203654999937,43.2835606900001],[-1.508094441999901,43.27676523900014],[-1.466391560999881,43.26077138300009],[-1.455281127999854,43.262218323000084],[-1.444222371999928,43.26511220300007],[-1.432233438999987,43.26500885000014],[-1.403501342999959,43.24333058700016],[-1.399677286999946,43.20674367300002],[-1.41052933799989,43.16690114400008],[-1.425773884999927,43.1352751670001],[-1.438434610999877,43.1227953090001],[-1.479620727999873,43.090264995000084],[-1.487837279999894,43.08181589800007],[-1.475279906999986,43.06013763400007],[-1.457141478999858,43.04507395500009],[-1.435023965999932,43.035720520000055],[-1.41052933799989,43.03091461200013],[-1.383140827999852,43.02920929],[-1.366139282999939,43.033317567],[-1.357612670999913,43.04683095300008],[-1.355183877999934,43.07303090400008],[-1.348259236999866,43.09308136000014],[-1.331050984999905,43.10734405600003],[-1.308623412999907,43.11357106600009],[-1.286040811999953,43.109178569],[-1.306969766999941,43.09597524000013],[-1.315082966999853,43.08287526500005],[-1.310587117999944,43.06949106900011],[-1.293688923999952,43.05520253500005],[-1.274878702999928,43.04683095300008],[-1.216897745999887,43.039260356],[-1.182532918999925,43.025281881000026],[-1.149925088999879,43.005722352000085],[-1.112408,43.00825449600008],[-1.103726358999921,43.00574819000009],[-1.087189900999931,42.99799672500011],[-1.079696817999888,42.99339752200014],[-1.0450736089999,42.990219422000095],[-1.028485473999893,42.98670542400013],[-1.016289834999952,42.97624094700008],[-0.981459920999896,42.95704315200008],[-0.943219360999905,42.94789642300019],[-0.863534301999948,42.943064677000066],[-0.786433064999926,42.95327077300006],[-0.759664672999861,42.946501160000096],[-0.745031962999889,42.918727227000076],[-0.740906128999939,42.91089609800004],[-0.741422891999889,42.90389394200004],[-0.744781859999904,42.89929473900018],[-0.745867065999903,42.89392039000002],[-0.740286010999881,42.884799499000124],[-0.730105753999908,42.877513123000156],[-0.720287231999862,42.8766087850001],[-0.710520385999899,42.877668153000016],[-0.700391804999924,42.876427918000054],[-0.666078653999904,42.86074412],[-0.648301961999891,42.84978871700003],[-0.609492960999944,42.81144480400012],[-0.60804602099995,42.80718149800005],[-0.609958048999971,42.802840679000084],[-0.610164753999925,42.799094137000154],[-0.603550170999938,42.79684621200015],[-0.587323770999916,42.79684621200015],[-0.582931274999936,42.79583852100008],[-0.577143513999943,42.78979237900005],[-0.578538777999938,42.783306987000074],[-0.578693806999866,42.777338359000126],[-0.56903031399986,42.77263580400007],[-0.561175495999919,42.77354014100002],[-0.544432332999861,42.78201507600003],[-0.535647338999894,42.784211324000026],[-0.533890339999914,42.80800832199999],[-0.508413858999887,42.80749155700012],[-0.454463662999927,42.788913880000095],[-0.423922892999911,42.79067087800017],[-0.399738321999934,42.80131622300014],[-0.351679239999896,42.82924733500014],[-0.342997599999933,42.82273610500009],[-0.335168619999905,42.82495819100008],[-0.328243977999932,42.83258046500005],[-0.322792113999952,42.84250234000014],[-0.307418375999873,42.83183115700013],[-0.305134937999952,42.83081010700012],[-0.247034463999853,42.804830221000095],[-0.235148885999934,42.78622670500006],[-0.208354654999937,42.78387542700004],[-0.179390014999882,42.78974070200012],[-0.161406615999908,42.79534759600013],[-0.163628702999887,42.77798431400011],[-0.157789265999924,42.76069854700002],[-0.145722818999928,42.74589325],[-0.129238036999936,42.73589385999998],[-0.12311437999989,42.73036448200018],[-0.121822468999937,42.723310649000055],[-0.119031941999879,42.71685109500011],[-0.108489949999921,42.713362936000166],[-0.095751708999956,42.71067576100013],[-0.088852905999886,42.706128235],[-0.084202026999918,42.701089783000114],[-0.078414265999953,42.69667144800003],[-0.038933471999911,42.68514760400011],[-0.004310262999923,42.68752472000013],[0.072842651000144,42.70847951300014],[0.134182576000114,42.715223288000075],[0.152941121000111,42.72460256000004],[0.169167521000134,42.72646291100004],[0.222394246000079,42.71620514000013],[0.238362264000045,42.71036570300004],[0.259807983000144,42.682382914000144],[0.275388428000099,42.668688660000115],[0.290245402000039,42.67029062900015],[0.318305704000039,42.69953949000002],[0.336030721000071,42.712691142],[0.354169148000096,42.71749705000009],[0.381816040000103,42.70010793100006],[0.384012288000093,42.696852315000065],[0.383676391000108,42.69269236300015],[0.384399862000095,42.68858408600012],[0.389283285000118,42.68514760400011],[0.409282064000081,42.6822537230001],[0.428789917000074,42.683028870000115],[0.466927124000023,42.690444438000135],[0.483515259000029,42.68530263300011],[0.608158813000102,42.68798980800007],[0.64360884600012,42.68447581000011],[0.656734660000097,42.68798980800007],[0.66342581400005,42.69621435100005],[0.66541630100005,42.69866099100006],[0.666449829000044,42.714758200000134],[0.659628540000085,42.72989939400007],[0.647639608000134,42.74103566500018],[0.633480265000088,42.74478220600009],[0.63957808400005,42.75483327200011],[0.643298787000049,42.75907074000018],[0.650740194000065,42.763385723000155],[0.639681437000149,42.77467702300011],[0.653737427000095,42.802685649000026],[0.651567016000087,42.82405385400013],[0.656321248000097,42.838419902000126],[0.679368937000049,42.84511200000015],[0.706757446000097,42.84658477900013],[0.72432743300007,42.84529286700011],[0.758847290000062,42.83526764],[0.776313924000078,42.832451274000114],[0.795744263000074,42.833846537000014],[0.812900838000132,42.831624451],[0.856102336000077,42.81276255300015],[0.885764608000045,42.80423594200006],[0.894446248000094,42.79932668100012],[0.910362589000101,42.78767364600004],[0.921111287000116,42.784366354000056],[0.930619751000108,42.78803538000015],[0.940024862000087,42.79366811199999],[0.950256795000143,42.796122742000065],[0.958731730000068,42.79371978800001],[0.975268189000133,42.78374623600008],[0.982916300000113,42.780361430000156],[1.068182414000091,42.7761239630001],[1.089059692000149,42.77131805400002],[1.106733032000079,42.75961334300002],[1.116551554000125,42.74524729400004],[1.124096313000081,42.729744365000116],[1.13432824700007,42.71597259600015],[1.151484823000118,42.70672251400005],[1.162543579000044,42.705688986000084],[1.195926554000096,42.71364715600005],[1.319123169000079,42.713362936000166],[1.342584269000042,42.70866038100009],[1.338243449000061,42.694449361000025],[1.343307739000039,42.690444438000135],[1.352712850000103,42.69005686500013],[1.361084432000069,42.686723735000115],[1.378757771000068,42.66323679600004],[1.397981404000092,42.64362559],[1.414827921000068,42.609338277000106],[1.42929732200011,42.59538564100002],[1.424853150000104,42.58936533600017],[1.419272095000082,42.57926259400013],[1.418031860000042,42.56983164500015],[1.426403442000122,42.56564585400004],[1.426300090000097,42.56179596],[1.409763631000089,42.54060862200011],[1.406456339000101,42.52923980800012],[1.428987264000114,42.531461894000024],[1.446557251000087,42.51988637400008],[1.449967895000043,42.50407338399999],[1.430227498000079,42.49355723100014],[1.424543090000014,42.492472026000044],[1.407593221000099,42.48676178],[1.436428670000055,42.45348215800006],[1.436428670000055,42.44095062300015],[1.447900838000066,42.434646098000044],[1.508465617000127,42.428677470000096],[1.516630493000122,42.429504293000136],[1.528206014000091,42.43423268600013],[1.534510539000109,42.439917094000165],[1.538851359000091,42.445653178000114],[1.544432414000084,42.4503557340001],[1.607477661000132,42.45642771400004],[1.639517049000119,42.46642710400006],[1.650369100000091,42.4934022020001],[1.653986450000076,42.49652862600006],[1.656983683000078,42.49763966900006],[1.659774210000137,42.49681284600002],[1.662358032000043,42.493712260000095],[1.674243611000065,42.490508321],[1.68633589600006,42.49061167500004],[1.697498006000075,42.49446156900008],[1.707006470000067,42.50278147400014],[1.710003703000069,42.50133453400015],[1.711967407000117,42.499293315],[1.712690877000114,42.49678700800003],[1.71217411300006,42.493712260000095],[1.730570923000073,42.48805369100013],[1.792685995000056,42.481723328000115],[1.813666626000042,42.475237936000056],[1.869787232000107,42.446790060000026],[1.89324833200007,42.44273346000013],[1.911955200000136,42.441958313000114],[1.927458129000058,42.43689402300005],[1.941100708000078,42.42009918200007],[1.954226522000056,42.382685445000035],[1.963734985000116,42.367234192000026],[1.983372030000055,42.35454762800008],[1.995671020000088,42.34868235300017],[2.009210245000077,42.34708038300015],[2.035255168000049,42.34925079400013],[2.05168827300011,42.35235138000017],[2.063263794000079,42.35790659700008],[2.080110311000055,42.3712649540001],[2.103984823000133,42.384830017000084],[2.108739054000125,42.390643615999984],[2.116283813000081,42.405397237],[2.121038045000148,42.4106165570001],[2.136954386000098,42.41622345000003],[2.184186645000125,42.41180511500012],[2.245991659000111,42.42611948700004],[2.277410930000144,42.42862579400009],[2.305316203000132,42.416972758000114],[2.317305135000083,42.40960886700013],[2.375492798000096,42.389325867000125],[2.406602010000142,42.38426157600004],[2.422518351000065,42.383693135999984],[2.429856404000077,42.3675442510001],[2.445566040000131,42.35196380600017],[2.464893025000094,42.340620829],[2.483393188000122,42.33697764100002],[2.503650350000015,42.32845103000007],[2.514812459000069,42.32566050300012],[2.525251098000098,42.32589304700018],[2.531969035000117,42.33077647000003],[2.540340617000084,42.346977031],[2.548092081000107,42.352248027000044],[2.56741906700006,42.352635600000056],[2.613411092000149,42.340956726000066],[2.635425253000022,42.337881979000045],[2.662193644000098,42.33901886100015],[2.661780232000098,42.34335968000012],[2.649377889000107,42.35372080600014],[2.640282837000143,42.37284108500013],[2.648241007000109,42.38147104900018],[2.690408976000072,42.4061723840001],[2.708082316000059,42.41289032000013],[2.72854618300002,42.41402720200013],[2.767716919000065,42.409557191000104],[2.788594198000055,42.41201182100018],[2.804613892000106,42.41955658000013],[2.834792928000098,42.44131235800013],[2.850812622000149,42.44836619100006],[2.866935669000043,42.449632263000105],[2.88409224500009,42.44919301400007],[2.900835409000137,42.45126007100005],[2.933701619000061,42.4702253220001],[2.966051066000148,42.4610010790001],[2.983104289000096,42.46932098400005],[2.993749634000096,42.467615662000085],[3.02299849400012,42.467047221000044],[3.029613077000135,42.46565195700005],[3.036020956000073,42.45461903900015],[3.04387577300011,42.4452656050001],[3.053590942000142,42.43764333100013],[3.065579874000093,42.43201060000003],[3.086147094000097,42.427178854000104],[3.111675252000111,42.42500844400003],[3.137823527000137,42.42593862000017],[3.180969656711085,42.43148414768645],[3.178721550000091,42.4179955100001],[3.170176629000053,42.396592515000165],[3.174489780000072,42.3808861350001],[3.174489780000072,42.36379629100004],[3.187347852000073,42.349514065000065],[3.204193556000092,42.33958567900005],[3.226491733000046,42.34251536699999],[3.24984785200013,42.34320709800003],[3.26303144600007,42.32920970300015],[3.269867384000094,42.32920970300015],[3.280609571000099,42.33685944200009],[3.293711785000085,42.3349876970001],[3.317718946000099,42.32298411700002],[3.294037306000092,42.28803131700009],[3.290375196000127,42.27806224199999],[3.287038608000103,42.26292552299999],[3.279388868000097,42.25564199400016],[3.270355665000067,42.250108140000165],[3.26303144600007,42.239854234000134],[3.247162306000035,42.24571360900008],[3.210134311000104,42.23973216400016],[3.178721550000091,42.24970123900006],[3.170176629000053,42.25967031500015],[3.151621941000144,42.2568220070001],[3.130300326000082,42.23973216400016],[3.11882571700005,42.21832916900002],[3.117442254000053,42.182847398000135],[3.116465691000087,42.15843333500008],[3.122487826000082,42.14048899900003],[3.138601108000074,42.12763092700002],[3.173106316000087,42.11200592700011],[3.192298528000066,42.09292147100017],[3.214495693000117,42.068333846000044],[3.213009237000051,42.055986077000156],[3.199859564000036,42.04619009200009],[3.195896147000042,42.03311787200012],[3.201589389000077,42.01744212400011],[3.206960483000046,41.99669017100011],[3.207855665000125,41.990016994000044],[3.211843295000107,41.984605210000026],[3.230560743000098,41.973008531000076],[3.235687696000099,41.96552155200011],[3.232188347000118,41.94603099200013],[3.207448764000048,41.913926499000134],[3.194916212000123,41.888291734000106],[3.178558790000125,41.87523021000011],[3.150165377000064,41.845350970000034],[3.116829332000065,41.847569212000096],[3.078630960000112,41.826618274000154],[3.069057555000086,41.799076112000094],[3.040341037000104,41.786890013000075],[2.95093834700009,41.734279690000115],[2.932990851000056,41.712464376000085],[2.900870238000095,41.70670637700009],[2.877253539000122,41.70195770000011],[2.851084832000112,41.69717031500012],[2.840179884000122,41.69464752800012],[2.835459832000112,41.692572333],[2.820160352000073,41.68195221600014],[2.817067905000073,41.67763906500015],[2.813161655000073,41.670314846000124],[2.803721550000148,41.66864655200011],[2.792002800000091,41.66901276200004],[2.778496578000073,41.64558226100003],[2.651866082000111,41.60529205900017],[2.449473504000139,41.53522370000009],[2.428965691000087,41.51894765800007],[2.37134850400011,41.48920319200015],[2.296722852000102,41.46531810099999],[2.26734459700009,41.44863515800012],[2.240407748000024,41.42096588700004],[2.191905144000145,41.35675690300009],[2.163259311000076,41.32664622600008],[2.13054446700005,41.303656317],[2.060313347000118,41.274603583000115],[2.019704623000109,41.26585521000014],[1.951345248000024,41.26068756700012],[1.88412519600007,41.24750397300009],[1.863780144000089,41.23810455900015],[1.854014519000145,41.235988674000154],[1.819834832000055,41.23712799700009],[1.624359571000099,41.192165432000095],[1.539235873000109,41.18744538],[1.28809655000012,41.11627838700014],[1.217784050000091,41.10468170800014],[1.210052931000092,41.09988027600015],[1.192474806000064,41.07599518400018],[1.188649936000047,41.06830475500006],[1.183604363000086,41.06256745000009],[1.172943556000064,41.05866120000009],[1.149099155000073,41.06964752800015],[1.141693556000092,41.071722723000065],[1.097666863000086,41.07086823100015],[1.055674675000091,41.064886786000145],[1.017425977000073,41.05178457200016],[0.990407748000109,41.039699611000074],[0.877452019000145,40.95477936400012],[0.822764519000117,40.89960358299999],[0.714203321000127,40.81521230700004],[0.694834832000112,40.78599681200008],[0.721527540000125,40.77427806200011],[0.750173373000109,40.76557038000011],[0.762380405000073,40.766058661],[0.76726321700005,40.77102285400015],[0.763519727000102,40.77838776200014],[0.750173373000109,40.78599681200008],[0.766937696000127,40.78502024900003],[0.780528191000087,40.779486395],[0.79200280000012,40.77118561400012],[0.815928582000083,40.748399156000104],[0.841807488000086,40.73212311400006],[0.854177280000044,40.73314036700013],[0.873708530000016,40.72793203300013],[0.872406446000127,40.707098700000145],[0.858083530000044,40.68626536700016],[0.848317905000101,40.675360419000086],[0.784027540000068,40.66095612200003],[0.756358269000089,40.642238674000154],[0.707041863000086,40.58340078300007],[0.677093946000127,40.56517161700019],[0.647959832000055,40.55691152600009],[0.615896030000073,40.553452867000104],[0.592458530000101,40.582098700000174],[0.640635613000143,40.58685944200009],[0.663177931000035,40.574733791000185],[0.696218295000079,40.59035879100015],[0.732676629000139,40.63373444200012],[0.712494337000123,40.636175848000065],[0.682220899000129,40.634222723000036],[0.599782748000109,40.61371491100005],[0.580170118000041,40.6036644550001],[0.56348717500012,40.59003327000015],[0.548513217000078,40.57233307500003],[0.517425977000073,40.514349677000055],[0.501312696000099,40.484198309000035],[0.483409050000148,40.46503327000006],[0.466156446000127,40.45066966400019],[0.452647332000055,40.434068101000136],[0.446136915000068,40.40843333500008],[0.420258009000065,40.38825104400006],[0.350596550000091,40.28489817900005],[0.338959181000064,40.274359442],[0.312103712000095,40.257513739],[0.298838738000143,40.246771552000084],[0.264740431000064,40.20978424700006],[0.205251498000109,40.1715355490001],[0.144541863000057,40.07884349200005],[0.11703535200013,40.056341864000146],[0.06617272200009,40.031927802],[0.040497267000148,40.00287506700012],[-0.002919074999909,39.93195221600005],[-0.028675910999937,39.901800848000036],[-0.091297980999855,39.84792715100018],[-0.194488084999875,39.71544017100014],[-0.199818488999938,39.70494212400016],[-0.202137824999909,39.68085358300014],[-0.208933071999923,39.664089260000125],[-0.219838019999912,39.65139394700016],[-0.243723110999895,39.63104889500006],[-0.257435675999915,39.616237697000095],[-0.269561326999906,39.59870026200015],[-0.274891730999883,39.58181386900015],[-0.281483527999853,39.56936269700004],[-0.31273352799991,39.53400299700003],[-0.323353644999941,39.51622142100014],[-0.330593476999894,39.48040663400003],[-0.327471569999886,39.430674937000056],[-0.320668097999885,39.388128973000086],[-0.301340298999946,39.322007554],[-0.238701407999883,39.21544586500009],[-0.227817945999902,39.1993356360001],[-0.215492823999909,39.181838544000115],[-0.227857368999878,39.17524499700009],[-0.24218216599985,39.16627518000017],[-0.236505322999903,39.1480534680001],[-0.226703362999956,39.11178175500011],[-0.210026595999892,39.07869019400009],[-0.184040187999869,39.04225851600002],[-0.158029751999919,39.00214264500012],[-0.120676235999952,38.95111725500011],[-0.10594641799986,38.93650950700011],[-0.06859290299991,38.91339752800015],[-0.030995245999918,38.882757880000135],[-0.009755011999914,38.86969635600014],[0.017425977000073,38.864325262000115],[0.0630802740001,38.86078522300012],[0.111013217000021,38.84992096600014],[0.153981967000078,38.83100006700012],[0.185313347000118,38.80353424700017],[0.181000196000127,38.80190664300015],[0.170909050000148,38.796087958],[0.182871941000087,38.79181549700009],[0.19076582100007,38.78522370000012],[0.217865431000092,38.768133856000176],[0.227712436000104,38.770209052],[0.23406009200005,38.757879950000145],[0.234548373000052,38.742254950000145],[0.227712436000104,38.73456452000015],[0.208994988000143,38.73371002800003],[0.192067905000073,38.73041413],[0.176768425000091,38.724025783000066],[0.162608269000089,38.71352773600002],[0.150889519000089,38.69245026200018],[0.148936394000145,38.68992747600007],[0.145030144000145,38.68634674700009],[0.125743035000113,38.685492255],[0.118581576000082,38.682806708000115],[0.10531660200013,38.672552802],[0.093679233000046,38.667629299000126],[0.083018425000091,38.66095612200017],[0.073130730000088,38.64520905200011],[0.080577019000145,38.631008205000015],[0.060435418000111,38.63483307500003],[0.046641472000118,38.63222890800004],[0.033376498000081,38.627386786000145],[0.015025261000119,38.624741929000045],[-0.014759894999884,38.62441640800013],[-0.028797980999911,38.620672919000086],[-0.042958136999857,38.61172109600007],[-0.054758266999926,38.59528229400017],[-0.055083787999934,38.58075592700014],[-0.053618943999879,38.566961981000034],[-0.060047980999883,38.55272044500013],[-0.075428839999915,38.53994375200007],[-0.090199347999913,38.53534577000015],[-0.131743943999908,38.53534577000015],[-0.176991339999915,38.52724844000012],[-0.202137824999909,38.51959870000009],[-0.233957485999952,38.501654364000146],[-0.329416469999956,38.47003815300015],[-0.344553188999953,38.46161530200011],[-0.350819464999887,38.45001862200009],[-0.358713344999956,38.44594961100013],[-0.39517167899993,38.41376373900009],[-0.406076626999919,38.39887116100011],[-0.410145636999886,38.379339911000145],[-0.409982876999919,38.36896393400015],[-0.413685675999943,38.364813544000114],[-0.445871548999889,38.36343008000013],[-0.460194464999887,38.36005280200011],[-0.470570441999882,38.35187409100011],[-0.474354620999918,38.336737372000115],[-0.509836391999897,38.338364976000136],[-0.518788214999915,38.29865143400012],[-0.504017706999946,38.20722077000009],[-0.515451626999891,38.19550202],[-0.532866990999878,38.19216543200015],[-0.56883704299986,38.19419993700011],[-0.591379360999923,38.18964264500014],[-0.609486456999946,38.17804596600003],[-0.623687303999958,38.16242096600014],[-0.634388800999886,38.14581940300009],[-0.640736456999917,38.13165924700017],[-0.645008917999917,38.11603424700009],[-0.648019985999923,38.07379791900014],[-0.652495897999898,38.00775788000014],[-0.65453040299991,37.989325262000094],[-0.663400844999955,37.980292059000085],[-0.689930792999917,37.97215403900016],[-0.708851691999939,37.95628489800005],[-0.718413865999935,37.943019924000126],[-0.758615688999924,37.863348700000145],[-0.760731574999852,37.84707265800013],[-0.760568813999953,37.845851955000015],[-0.75609290299991,37.806057033000016],[-0.760731574999852,37.796128648000106],[-0.787993943999936,37.822821356000034],[-0.812408006999874,37.77008698100006],[-0.825550910999936,37.761379299000154],[-0.847808397999898,37.756089585],[-0.856109178999873,37.74249909100003],[-0.852609829999977,37.723781643000066],[-0.819813605999855,37.67670319200006],[-0.809925910999937,37.66689687700013],[-0.777699347999913,37.65009186400012],[-0.754790818999908,37.641302802000055],[-0.734852667999917,37.639349677],[-0.726470506999874,37.651516018000095],[-0.707997199999852,37.64301178600006],[-0.701242641999897,37.631333726000044],[-0.705311652999853,37.61953359600009],[-0.719715949999937,37.61054108300005],[-0.727894660999937,37.60342031500004],[-0.736643032999922,37.59943268400003],[-0.745676235999923,37.59943268400003],[-0.754505988999881,37.604315497000115],[-0.764027472999885,37.599595445000105],[-0.791493292999917,37.5914574240001],[-0.807972785999908,37.58844635600017],[-0.836415167999917,37.576402085000076],[-0.873890753999945,37.576402085000076],[-0.886708136999886,37.574286200000145],[-0.900624152999853,37.569037177000084],[-0.92516028599988,37.555894273000106],[-0.933705206999917,37.561021226000136],[-0.973500128999888,37.576402085000076],[-1.006418423999889,37.5814476580001],[-1.069935675999886,37.582586981000034],[-1.087757941999939,37.58087799700003],[-1.103423631999931,37.576402085000076],[-1.114654100999928,37.56867096600014],[-1.119984503999888,37.559027411],[-1.116851365999906,37.54938385600012],[-1.105766687999903,37.53213493500006],[-1.137171939999917,37.53800062300009],[-1.167057480999887,37.54375531600009],[-1.173408476999924,37.55507578800016],[-1.178585325999904,37.56388335700014],[-1.199732067999975,37.566564654000146],[-1.22899329299986,37.57607656500015],[-1.242698867999934,37.579202797000065],[-1.257666802999921,37.567013400000135],[-1.261670586999912,37.55766126800002],[-1.289784308999913,37.558417059000035],[-1.323735140999872,37.56199082100015],[-1.353260870999918,37.5499128280001],[-1.369170701999849,37.541367906000076],[-1.413685675999915,37.50653717700014],[-1.430368618999864,37.49811432500009],[-1.450225389999957,37.49469635600017],[-1.455555792999945,37.49270254100004],[-1.46349036399991,37.48798248900012],[-1.47089596299989,37.48224518400015],[-1.474110480999855,37.47760651200004],[-1.476673956999946,37.472723700000145],[-1.48729407499988,37.439764716000084],[-1.488352016999954,37.433213609000106],[-1.496937628999945,37.427801825000145],[-1.502797003999916,37.42926666900003],[-1.508168097999942,37.43268463700004],[-1.51500403599988,37.433213609000106],[-1.523915167999917,37.42865631700006],[-1.543731248999933,37.41498444200012],[-1.552967902999882,37.412176825000174],[-1.56773841099988,37.409938869000186],[-1.61872311099998,37.39227936400008],[-1.64161771299996,37.38103644700011],[-1.64591344299987,37.36924709500015],[-1.652838941999903,37.36125918700012],[-1.670887824999909,37.36330801000018],[-1.68016516799986,37.35443756700012],[-1.685780402999853,37.33698151200018],[-1.698963995999918,37.31643301000004],[-1.728505011999886,37.282416083],[-1.787220831999889,37.235215562000015],[-1.812733527999882,37.20705801000004],[-1.830352342999902,37.16636790600016],[-1.837757941999882,37.13161855700009],[-1.849842902999882,37.104437567],[-1.855213995999861,37.076605536000116],[-1.884999152999853,37.01548899900017],[-1.906117316999883,36.98761627800003],[-1.906971808999884,36.975287177000084],[-1.904164191999911,36.96637604400014],[-1.900502081999946,36.9587669940001],[-1.898671027999882,36.95005931200002],[-1.900339321999894,36.94118886900016],[-1.905222133999871,36.93598053600009],[-1.912871873999904,36.93353913000014],[-1.935292120999918,36.93219635600014],[-1.941395636999914,36.92987702000009],[-1.953846808999913,36.91994863500018],[-1.988921678999901,36.90049876500008],[-2.002797003999888,36.887030341000106],[-2.013050910999908,36.845770575000145],[-2.024769660999908,36.83376699400012],[-2.040476040999863,36.82432689000002],[-2.056874152999882,36.81008535400012],[-2.06073971299989,36.80243561400009],[-2.065907355999883,36.78355540600013],[-2.071156378999888,36.77533600500006],[-2.080311652999853,36.77061595300013],[-2.091420050999886,36.768255927],[-2.100819464999915,36.765163479000094],[-2.111073370999918,36.746120510000125],[-2.126698370999918,36.736395575000145],[-2.146717902999882,36.72992584800006],[-2.166127081999889,36.7275658220001],[-2.203643357999908,36.73712799700009],[-2.231678839999915,36.760077216000084],[-2.256133592999959,36.78738027600015],[-2.282785610999894,36.81008535400012],[-2.318348761999857,36.827907619000186],[-2.33914140499985,36.83425527600012],[-2.361683722999942,36.836778062000135],[-2.380238410999937,36.83376699400012],[-2.412709113999938,36.82001373900012],[-2.433094855999911,36.816270249000084],[-2.442331508999871,36.81830475500011],[-2.469390428999901,36.82774485900002],[-2.481434699999909,36.82994212400003],[-2.560780402999853,36.818793036],[-2.576893683999941,36.81130605700004],[-2.596709764999929,36.77309804900007],[-2.617176886999914,36.728420315],[-2.642689581999917,36.70701732000008],[-2.647572394999884,36.70416901200012],[-2.658884243999864,36.69481028900019],[-2.684356248999961,36.685980536000116],[-2.718251105999911,36.68203359600015],[-2.736195441999882,36.68740469],[-2.756662563999924,36.68036530200014],[-2.782948370999861,36.69460683800004],[-2.802601691999911,36.70730215100009],[-2.82099361899995,36.71389394700016],[-2.829986131999874,36.71173737200017],[-2.839060024999867,36.70241933800013],[-2.848255988999938,36.700222072000045],[-2.858754035999908,36.704942124000134],[-2.88609778599988,36.734401760000125],[-2.91397050699993,36.75031159100014],[-2.933257615999878,36.75165436400012],[-2.987718933999929,36.73710894900002],[-3.07645340499991,36.74975623400012],[-3.156711171999916,36.74452573300014],[-3.22789466099988,36.754828192],[-3.329579230999855,36.744899807000095],[-3.344390428999901,36.73692454600014],[-3.358306443999908,36.72593821800008],[-3.378773566999939,36.71389394700016],[-3.415154668999917,36.69551628700007],[-3.477602127999972,36.696095994000146],[-3.51596254699993,36.721046505000075],[-3.536060363999894,36.71840638700006],[-3.549831564999863,36.71237268600005],[-3.58640154899993,36.7265792570001],[-3.601100173999924,36.742550294000026],[-3.632419884999877,36.741279670000054],[-3.665666698999872,36.739370416],[-3.679822363999961,36.72880787800001],[-3.731281329999944,36.724097324000084],[-3.803433052999907,36.74247433600014],[-3.83854125499991,36.751969933000126],[-3.889444745999953,36.743388384000085],[-3.960961123999908,36.726792779],[-4.056711391999954,36.74799225500008],[-4.079957949999937,36.74356419200008],[-4.110172195999922,36.725732647000044],[-4.19701087099989,36.715399481000034],[-4.224720831999889,36.71238841400013],[-4.403187628999888,36.72386302300008],[-4.420318162999905,36.719875393000095],[-4.433257615999935,36.71067942900011],[-4.461171027999882,36.67145416900008],[-4.466867641999954,36.66303131700015],[-4.480458136999914,36.65119049700008],[-4.491118943999936,36.63666413000014],[-4.495350714999859,36.620550848000065],[-4.524826052999913,36.580715264],[-4.587799793999864,36.573817661000035],[-4.615021325999862,36.53055576100017],[-4.6498103509999,36.51211172100007],[-4.659250454999921,36.50763580900009],[-4.680287238999938,36.50079987200009],[-4.722767706999917,36.49298737200008],[-4.764230923999918,36.49396393400015],[-4.880319790999863,36.50568268400015],[-4.902658657999893,36.506537177000055],[-4.912180141999897,36.50401439000014],[-4.923532680999869,36.496852932000095],[-4.994166374999907,36.45709395800016],[-5.062489386999913,36.45221588700004],[-5.108713344999899,36.42902252800009],[-5.121042446999866,36.4255638690001],[-5.157622850999899,36.42194245000003],[-5.173654751999891,36.41742584800009],[-5.1865535149999,36.41120026200012],[-5.199655727999868,36.397162177000084],[-5.227121548999918,36.35793691600004],[-5.227935350999928,36.34853750200013],[-5.244699673999946,36.31207916900014],[-5.253651495999861,36.29710521000011],[-5.258615688999924,36.292547919000086],[-5.265939907999922,36.28709544500005],[-5.274118618999921,36.28253815300009],[-5.290598110999923,36.27741120000009],[-5.289499477999868,36.269842841000056],[-5.285308397999927,36.26080963700004],[-5.296620245999918,36.24738190300003],[-5.329335089999858,36.19814687700013],[-5.334055141999953,36.18781159100003],[-5.338773483119979,36.141119672012294],[-5.358386758763487,36.14110944708828],[-5.366607225999928,36.16315338700003],[-5.382517055999926,36.172308661000024],[-5.406076626999891,36.179225979000094],[-5.425445115999906,36.17975495000009],[-5.428700324999851,36.169989325000145],[-5.437896287999934,36.161485093000024],[-5.442331508999899,36.14878978100013],[-5.441477016999897,36.134548244000044],[-5.434885219999927,36.12152741100006],[-5.439890102999868,36.11420319200006],[-5.437163865999906,36.09870026200004],[-5.431630011999886,36.088934637000094],[-5.428700324999851,36.08079661700019],[-5.431833462999918,36.06956614799999],[-5.438628709999874,36.06281159100014],[-5.445505337999862,36.05744049700009],[-5.466501430999898,36.05072663000014],[-5.566599087999862,36.02163320500007],[-5.581003383999898,36.01398346600014],[-5.611765102999897,36.006455796000076],[-5.629709438999924,36.03676992400007],[-5.671701626999919,36.05597565300003],[-5.689361131999931,36.06712474200005],[-5.713124152999853,36.059963283000016],[-5.73387610599994,36.06565989799999],[-5.753651495999861,36.0755882830001],[-5.796050584999931,36.08551666900008],[-5.811268683999913,36.096828518000066],[-5.832753058999855,36.12238190300015],[-5.897897915999863,36.17389557500006],[-5.917185024999895,36.18406810099999],[-5.938954230999882,36.18382396000014],[-5.983550584999932,36.176988023000135],[-6.036773240999935,36.18952057500003],[-6.062489386999886,36.217230536000116],[-6.082183397999927,36.250677802000084],[-6.104725714999915,36.280707098000114],[-6.15945390499985,36.30430735900016],[-6.165964321999923,36.31871165600005],[-6.168527798999946,36.33531321800008],[-6.1752009759999,36.353583075000145],[-6.18419348899991,36.370713609000106],[-6.218373175999915,36.40245189000014],[-6.242054816999911,36.44647858300006],[-6.25711015499985,36.47642649900003],[-6.279611782999922,36.51129791900014],[-6.301421678999901,36.52598704600014],[-6.310007290999891,36.53412506700009],[-6.297678188999952,36.538763739],[-6.289377407999979,36.53729889500015],[-6.257517055999955,36.51378001500007],[-6.248972133999928,36.50474681200008],[-6.254099087999947,36.49628327000012],[-6.246652798999946,36.48663971600017],[-6.231475389999957,36.4726830100001],[-6.21906490799995,36.474961656000154],[-6.211496548999889,36.480536200000174],[-6.200754360999895,36.493841864],[-6.179351365999935,36.51353587400014],[-6.186472133999899,36.514227606000176],[-6.206817186999984,36.50889720300002],[-6.224354620999918,36.51085032800016],[-6.232451951999849,36.526190497000115],[-6.226022915999919,36.556667385000154],[-6.23489335799988,36.57575104400014],[-6.283192511999914,36.61237213700015],[-6.293853318999936,36.616848049000126],[-6.361724412999934,36.620550848000065],[-6.379790818999936,36.624253648000106],[-6.394683397999898,36.636908270000085],[-6.406971808999855,36.67670319200009],[-6.417632615999906,36.695949611000046],[-6.431548631999873,36.71458567900011],[-6.437896287999905,36.73330312700007],[-6.433338995999861,36.751206773000135],[-6.414540167999917,36.76764557500003],[-6.396311001999919,36.77509186400003],[-6.358876105999883,36.78583405200011],[-6.345611131999874,36.79498932500012],[-6.335194464999887,36.81826406500012],[-6.343739386999886,36.859930731000176],[-6.338205532999979,36.88373444200006],[-6.304351365999906,36.90721263200014],[-6.223255988999881,36.90232982000008],[-6.194813605999855,36.93211497600007],[-6.214019334999904,36.92169830900018],[-6.239654100999871,36.91339752800009],[-6.2650447259999,36.912909247000115],[-6.283558722999913,36.925930080000015],[-6.325917120999918,36.91266510600017],[-6.34471594999988,36.90127187700001],[-6.352447068999879,36.88027578300007],[-6.346669074999909,36.81989166900014],[-6.352447068999879,36.80857982000008],[-6.388010219999956,36.80817291900014],[-6.41624915299991,36.837795315],[-6.448638475999928,36.90420156500012],[-6.471099412999905,36.935614325000145],[-6.499582485999923,36.959662177],[-6.744862433999855,37.10138580900009],[-6.771473761999914,37.11277903900016],[-6.794667120999946,37.11774323100011],[-6.811756964999887,37.12372467700011],[-6.853016730999854,37.15110911700019],[-6.873280402999853,37.158677476000136],[-6.892893032999893,37.16657135600012],[-6.910878058999856,37.18895091400013],[-6.917632615999878,37.21507396],[-6.910755988999881,37.22760651200018],[-6.89875240799995,37.235785223],[-6.864125128999945,37.27753327000012],[-6.852691209999904,37.295233466000056],[-6.903472459999874,37.249579169000114],[-6.931141730999855,37.233872789000046],[-6.962554490999878,37.23383209800015],[-6.962554490999878,37.22760651200018],[-6.940744594999926,37.20066966400013],[-6.930083787999904,37.183172919000164],[-6.928456183999884,37.17234935100008],[-6.94163977799991,37.17108795800006],[-7.029367641999926,37.205511786],[-7.061675584999932,37.21393463700015],[-7.101040416999864,37.22425075100006],[-7.127349412999934,37.214748440000065],[-7.098988410999908,37.21190013200011],[-7.085560675999915,37.206488348000065],[-7.32787024599986,37.20156484600001],[-7.343088344999926,37.19623444200015],[-7.362904425999943,37.18170807500012],[-7.381418423999946,37.17991771000011],[-7.398508266999896,37.18545156500015],[-7.414418097999913,37.19281647300012],[-7.429386758999953,37.23674631800013],[-7.434244343999864,37.259328919000055],[-7.427578083999946,37.274521790000094],[-7.437448282999952,37.30733632400002],[-7.444993041999907,37.38676300100009],[-7.462252970999883,37.41787221300014],[-7.460030883999877,37.429137675],[-7.462924763999865,37.45112599700017],[-7.46886755399987,37.475568950000124],[-7.475947224999913,37.494249980000106],[-7.481476603999909,37.500373638000056],[-7.498633178999881,37.51166493800012],[-7.506332967999867,37.518124492000176],[-7.514613427999932,37.52833392300006],[-7.515428018999926,37.529338277000036],[-7.51754675299992,37.5351777150001],[-7.518425252999862,37.54194732700016],[-7.52367040999988,37.55566741900016],[-7.527597819999926,37.55551239100013],[-7.529122273999859,37.55670094800014],[-7.529690714999902,37.5671654260001],[-7.526486775999928,37.571196188],[-7.515841430999927,37.580937195000146],[-7.514652872999932,37.58587229400008],[-7.512534138999854,37.590368144000095],[-7.511758992999944,37.59527740500015],[-7.514342813999947,37.60140106200011],[-7.504886026999968,37.60638783800006],[-7.478479369999889,37.62886708600017],[-7.471606404999931,37.636902771000145],[-7.466335407999908,37.65196645200014],[-7.4575504149999,37.70007721000012],[-7.444011189999913,37.73015289300018],[-7.426337849999924,37.75061676100013],[-7.334405476999847,37.81193084700011],[-7.306861937999968,37.85076568600006],[-7.295803181999872,37.88487213100002],[-7.273892374999918,37.93153595000011],[-7.268621378999881,37.94923512800001],[-7.26908646599989,37.959441224],[-7.272135375999937,37.968949687000176],[-7.272703816999893,37.97701121000016],[-7.265830850999919,37.98295400100007],[-7.234049844999958,37.988069967000065],[-7.223301146999859,37.99383188900013],[-7.210330362999939,37.99303090400012],[-7.197617960999877,37.98993031900007],[-7.185267293999913,37.98869008400014],[-7.172864949999848,37.99383188900013],[-7.159739135999899,37.99680328400014],[-7.152246052999942,38.00065317800009],[-7.141910765999852,38.01158274300015],[-7.131988891999953,38.032382507000094],[-7.12325557399987,38.04000478100009],[-7.105943969999885,38.03866119400011],[-7.049358275999907,38.0202127080001],[-7.023985148999913,38.02256398500005],[-7.015768594999884,38.046826071000126],[-7.006363484999923,38.05933176700013],[-6.997630167999944,38.08961415600005],[-6.97897497599996,38.119948222000104],[-6.965487426999914,38.15333119700007],[-6.957632609999877,38.16816233300001],[-6.947504027999911,38.19663604700004],[-6.950575759999879,38.198385888000146],[-6.964195516999951,38.20614451100012],[-6.992100789999938,38.204284160000114],[-7.018145710999902,38.19803131100012],[-7.021039591999909,38.198238017000065],[-7.026413939999968,38.199633281000146],[-7.038712930999907,38.18622324600001],[-7.063052530999926,38.17754160600004],[-7.088322306999885,38.173381653000106],[-7.103515176999905,38.17358835900008],[-7.117068156999977,38.18363315600011],[-7.126872924999872,38.19089996400008],[-7.167180541999898,38.27208363900003],[-7.172399861999935,38.27652781200013],[-7.189453084999854,38.28652720200016],[-7.196326049999925,38.29215993300009],[-7.200666870999896,38.29838694300018],[-7.207126424999956,38.31169362399999],[-7.211363891999923,38.31753306100008],[-7.317145547999871,38.42458079100008],[-7.34551591,38.440962220000024],[-7.359210163999876,38.446362407],[-7.344844115999877,38.45832550100015],[-7.33518062399986,38.46943593400006],[-7.334095417999947,38.481011455],[-7.34561926299989,38.49413726800016],[-7.335800740999929,38.50586781900016],[-7.317713988999913,38.55625234000014],[-7.275856079999925,38.603820496000154],[-7.270430053999859,38.617695618000035],[-7.273530639999905,38.62539540600012],[-7.279421752999895,38.62890940400008],[-7.286036335999909,38.631906637],[-7.290945596999933,38.63815948500009],[-7.2924958899999,38.64611765600016],[-7.292960977999882,38.65627207400003],[-7.290945596999933,38.679087219000124],[-7.284072631999977,38.7132453410001],[-7.28071366399996,38.72042836600015],[-7.272187052999925,38.73373504700008],[-7.270430053999859,38.7375074270001],[-7.22587838499993,38.76613382800015],[-7.211518920999964,38.77536041300009],[-7.196429402999853,38.77998545400014],[-7.179737914999919,38.79088918000009],[-7.166198689999931,38.803420715000115],[-7.160617634999937,38.81290334099999],[-7.15100581899992,38.81928538000001],[-7.104858764999959,38.827191874000064],[-7.088684040999879,38.83336720900006],[-7.076540079999887,38.84323740600003],[-7.064292764999948,38.85111806300016],[-7.056076212999926,38.85514882400015],[-7.057264769999932,38.86943735700014],[-7.052200479999954,38.884991964000065],[-7.066049764999916,38.904603170000186],[-7.044500691999872,38.918633321000115],[-7.022124796999889,38.942869568],[-6.988638467999891,38.99377085400012],[-6.97881994599993,39.003821920000135],[-6.973290567999925,39.01395050100011],[-6.974892537999949,39.02301971500016],[-6.986313028999859,39.030073547000185],[-6.979388386999887,39.047178447000036],[-6.985692911999904,39.06676381500016],[-6.99969722599991,39.084695536000126],[-7.015768594999884,39.09681366000002],[-7.038816283999921,39.10913848900016],[-7.064912882999919,39.114771220000094],[-7.091267862999899,39.11244578100014],[-7.115194050999889,39.10110280400009],[-7.127286336999873,39.097485453],[-7.14253088399991,39.09952667300014],[-7.157206990999896,39.10544362400016],[-7.167490600999883,39.11347931000013],[-7.168885864999878,39.12185089200012],[-7.157930460999893,39.14138458300012],[-7.155811726999929,39.151513163000075],[-7.168059040999935,39.170633443000085],[-7.191571817999944,39.17916005500008],[-7.21932206299988,39.18484446200013],[-7.244126749999906,39.19564483700016],[-7.258079386999895,39.21130279500012],[-7.265779174999892,39.231353252000176],[-7.264332233999909,39.25233388300008],[-7.250844685999937,39.27062734000005],[-7.300454060999925,39.317911275000185],[-7.319264282999938,39.329538473000135],[-7.326654011999949,39.34132069900015],[-7.33140824399993,39.36261139000014],[-7.331925008999889,39.384728902000134],[-7.326705688999936,39.39883656799999],[-7.318850870999909,39.413254293000094],[-7.3136315509999,39.43609527600002],[-7.313528197999887,39.457437643],[-7.320917927999886,39.46741119400012],[-7.362930866999903,39.47609283500016],[-7.384169880999877,39.48399932900013],[-7.399414428999903,39.493662821000136],[-7.408922891999907,39.51557362900009],[-7.417552856999947,39.52420359300005],[-7.451349242999924,39.53784617200015],[-7.468092406999886,39.55024851500012],[-7.497858032999943,39.581047668000096],[-7.515841430999927,39.59376007100006],[-7.548242553999954,39.66321319700002],[-7.555871748999947,39.67720731800007],[-7.557285929999892,39.67980133100012],[-7.341433470999958,39.67184316000005],[-7.327842569999859,39.67478871700013],[-7.311409464999911,39.680318095000146],[-7.292754272999928,39.68331532900008],[-7.252860066999886,39.68233347600001],[-7.235755167999855,39.68651926700015],[-7.214051065999854,39.67618398100013],[-7.182890177999894,39.67509877500005],[-7.035767373999903,39.68925811800009],[-7.021142944999923,39.69401235],[-7.009619099999895,39.71545806900012],[-7.010704304999904,39.722796122000105],[-7.013649861999908,39.72961741200005],[-7.013339802999923,39.73891917000019],[-7.008740600999942,39.748324280000034],[-6.996803344999904,39.7647057090001],[-6.993030964999888,39.77421417300017],[-6.994581258999915,39.78258575500014],[-6.998870401999881,39.79178416000015],[-7.000265664999858,39.802532858000156],[-6.993030964999888,39.81607208300015],[-6.985227824999867,39.821136373000044],[-6.962335164999956,39.82852610300013],[-6.952826700999879,39.8328669240001],[-6.927660278999923,39.86190907800001],[-6.924249633999892,39.87157257100013],[-6.923474487999897,39.888315735000084],[-6.921769164999915,39.897152405000085],[-6.921562459999961,39.902165019000115],[-6.92512813299993,39.91224192400007],[-6.925231485999887,39.91792633100012],[-6.922285928999883,39.92242218000014],[-6.912570759999937,39.92810658800009],[-6.909521850999909,39.931982321000035],[-6.903682413999917,39.956683655000134],[-6.899755004999861,39.96562367800008],[-6.901615355999866,39.97647572800004],[-6.89691280099987,39.98712107400003],[-6.879704548999911,40.00918691000011],[-6.919908812999921,40.06489410400014],[-6.942129679999965,40.086339823000074],[-6.955720581999856,40.1029279590001],[-6.966417602999854,40.11031768800011],[-6.977166300999983,40.11341827400004],[-7.003676309999888,40.11631215400003],[-7.015768594999884,40.11905100500017],[-7.027654174999896,40.132641907000064],[-7.034837198999866,40.16674835200003],[-7.043105428999894,40.1813727830001],[-7.034578816999981,40.19305165600018],[-7.024760294999908,40.216202698000146],[-7.015768594999884,40.225504456000074],[-6.997785196999899,40.23170562700007],[-6.954687052999873,40.253358053000156],[-6.942100807999878,40.25497773100015],[-6.935411742999945,40.25583852200013],[-6.915826374999909,40.254443258000045],[-6.896447712999958,40.255476786000045],[-6.878050903999849,40.26524363200009],[-6.875105346999959,40.27123809900002],[-6.874509091999897,40.27918816700013],[-6.873865112999908,40.287774556000116],[-6.870196085999907,40.29552602200012],[-6.863943236999916,40.30095204700008],[-6.820793415999901,40.325343323000126],[-6.811956745999908,40.332319641000126],[-6.794438435999921,40.356400859000146],[-6.828079793999961,40.38058542900005],[-6.851282510999879,40.40952423099999],[-6.857121948999861,40.442132060000134],[-6.838673461999861,40.47722035800008],[-6.815315714999911,40.50254181000015],[-6.812525186999949,40.51463409500015],[-6.818054564999954,40.531894023000135],[-6.828544881999902,40.54553660100005],[-6.839758666999955,40.55457997600011],[-6.848388630999892,40.56476023400007],[-6.850455688999944,40.58222686800011],[-6.844461222999911,40.59778147400014],[-6.821310180999943,40.63018259700014],[-6.814282185999928,40.64718414300016],[-6.814230508999913,40.65932810500005],[-6.816245889999948,40.677156474000114],[-6.824307413999861,40.71069447800012],[-6.836968139999897,40.743302308000075],[-6.839138549999888,40.75751332600005],[-6.839138549999888,40.776891989000106],[-6.837278197999865,40.78676218700009],[-6.834539347999936,40.79223988900016],[-6.833505818999953,40.79782094300002],[-6.836813109999952,40.808311260000046],[-6.838053343999888,40.81492584200005],[-6.836658080999911,40.84024729400012],[-6.82032832799996,40.84422638000011],[-6.816194213999949,40.85683542900013],[-6.821155151999903,40.870064596000034],[-6.832058877999941,40.87590403300011],[-6.847045043999913,40.87890126600003],[-6.855261596999866,40.88722117200008],[-6.863633178999919,40.90830515600011],[-6.885182251999879,40.94892283200015],[-6.899238240999921,40.96675120100009],[-6.930605834999938,40.99207265200009],[-6.940424356999898,41.003389791000146],[-6.942491414999949,41.01599884000008],[-6.931794392999961,41.02912465400014],[-6.927866983999877,41.047934876000156],[-6.927447856999947,41.04809758400002],[-6.90683467599996,41.05609975200015],[-6.845288044999933,41.05191396100004],[-6.818002888999927,41.054136048000046],[-6.804360310999925,41.064419658000034],[-6.764776163999954,41.108861390000115],[-6.756507934999917,41.127051494000156],[-6.758988403999894,41.151752828000056],[-6.755216023999878,41.15883250000008],[-6.742245238999941,41.17144154900002],[-6.706950235999955,41.19433420900013],[-6.701265828999908,41.20244740800005],[-6.693772745999894,41.217381897000095],[-6.658219359999919,41.25784454400018],[-6.646643839999882,41.26761139000014],[-6.628918823999868,41.26993682900017],[-6.563496459999897,41.270711975],[-6.55445308399993,41.27562123700004],[-6.495852010999897,41.29494822200017],[-6.463140828999911,41.31412017800006],[-6.430998086999892,41.33902821900013],[-6.399578816999849,41.377475485],[-6.395496377999932,41.37840566000012],[-6.3831973879999,41.37654530900012],[-6.379166625999915,41.377475485],[-6.376737832999936,41.38300486300009],[-6.37554927599993,41.390808004000014],[-6.376169392999884,41.39685414600014],[-6.379166625999915,41.39731923400007],[-6.366247517999881,41.40517405300004],[-6.352346557999908,41.409256491000015],[-6.321133991999942,41.4110134890001],[-6.321030639999917,41.41959177700012],[-6.282945108999854,41.46563547800004],[-6.282480020999941,41.472301738000155],[-6.285167194999872,41.47896799800016],[-6.285890665999943,41.48687449200012],[-6.279534463999937,41.49700307200008],[-6.253644571999899,41.51751861600006],[-6.205947224999932,41.57028025300017],[-6.216127481999905,41.58009877500013],[-6.230080118999894,41.594904073000166],[-6.272248087999856,41.62823537200002],[-6.317103230999948,41.65014618],[-6.365937459999913,41.66360789000013],[-6.447069457999959,41.67624277800017],[-6.46081538999988,41.676552836000056],[-6.467740030999948,41.67205698700003],[-6.474354614999868,41.66593333000016],[-6.488048868999897,41.65880198200012],[-6.503035033999964,41.65309173700008],[-6.513421996999881,41.6509213260001],[-6.541533976999915,41.65890533500006],[-6.555279906999942,41.67489919100011],[-6.560499226999866,41.69445872100012],[-6.563083048999885,41.71303639700007],[-6.567682250999923,41.72244150800013],[-6.574348510999926,41.73104563400007],[-6.577397419999954,41.73972727500002],[-6.571506306999964,41.7492099],[-6.564374958999935,41.75750396800005],[-6.560137491999881,41.7668832400001],[-6.53574621599995,41.8485836790001],[-6.524222371999911,41.86741974000002],[-6.550060587999923,41.87387929300017],[-6.567888956999894,41.875868836],[-6.575795450999919,41.88289683100011],[-6.567630574999896,41.92607249000006],[-6.571661335999892,41.942608948000135],[-6.585148885999956,41.95464955700011],[-6.609488484999872,41.96232350700011],[-6.622821003999917,41.94095530200009],[-6.656772419999925,41.93307464700014],[-6.727982543999872,41.930852559000144],[-6.757903197999894,41.93757049599999],[-6.794386759999924,41.97971262600011],[-6.824927530999928,41.98376922600012],[-6.831232055999919,41.95395192500003],[-6.854951537999881,41.94294484500013],[-6.917118285999948,41.93909495000018],[-6.945126911999893,41.94335825700013],[-6.96951818799991,41.95769846600013],[-6.983456182999929,41.96299616600005],[-6.992359170999918,41.96638010700009],[-7.015768594999884,41.95366770500006],[-7.051270303999928,41.94201466900007],[-7.082741251999948,41.95278920500003],[-7.113178670999929,41.97242625000014],[-7.1453730879999,41.98748992900012],[-7.159739135999899,41.98573293100016],[-7.177309122999873,41.97836903900015],[-7.192605346999926,41.96960988400017],[-7.1999434,41.963718771000075],[-7.20211381099989,41.94974029500018],[-7.195654255999955,41.917365011000086],[-7.19792801899996,41.90150034599999],[-7.209316117999947,41.88916087300005],[-7.21865026899991,41.87904693700006],[-7.251464802999919,41.86369903600011],[-7.322468220999894,41.845405579000115],[-7.340503295999895,41.84320933100004],[-7.376831827999865,41.84403615300006],[-7.391921345999974,41.842046611000015],[-7.405408894999937,41.83519948400006],[-7.4295417889999,41.81450307300004],[-7.442719278999959,41.805950623000015],[-7.446956746999916,41.82184112600014],[-7.456568562999848,41.83923024500014],[-7.469384318999913,41.852536926000155],[-7.483285278999887,41.856205954000146],[-7.493000447999946,41.85690358600006],[-7.508141642999959,41.86493927000005],[-7.515841430999927,41.86499094700015],[-7.523282836999954,41.860159201000144],[-7.525246540999887,41.854164734],[-7.526331746999888,41.84736928300007],[-7.531551066999923,41.84016042100002],[-7.546692260999919,41.832047221000025],[-7.567104451999882,41.826595358000034],[-7.588395141999854,41.82421824200016],[-7.606068480999851,41.82553599100014],[-7.622191528999848,41.83233144200007],[-7.622811644999899,41.84173655200014],[-7.607360391999919,41.87318166199999],[-7.661155557999932,41.874912822000155],[-7.678673868999879,41.881346537000084],[-7.706372436999913,41.896255188000154],[-7.722030395999865,41.899252421000156],[-7.750142374999911,41.888374532000014],[-7.812154092999947,41.877134909000134],[-7.839232543999913,41.878375143000184],[-7.849722859999872,41.87576548300008],[-7.854425414999922,41.87026194300007],[-7.85788773599998,41.86377655100004],[-7.864812377999953,41.85788543700012],[-7.896593383999885,41.85793711300012],[-7.903362995999941,41.88682424000008],[-7.906101846999888,41.913851014000116],[-7.92579056799994,41.90816660600008],[-7.930493122999906,41.89666860000007],[-7.93535070799993,41.879951274000014],[-7.94475581899988,41.866954652000075],[-7.963359334999921,41.866618755],[-7.979430704999913,41.86860829700014],[-7.993641723999872,41.863673198000086],[-8.005889037999905,41.85395802900014],[-8.01570756099994,41.841891581000155],[-8.048573770999894,41.816389262000044],[-8.050445716999889,41.81598643800011],[-8.093480590999889,41.80672576900012],[-8.179573526999889,41.810704854],[-8.17926510099994,41.81261252500012],[-8.175387735999948,41.83659474700012],[-8.177041381999885,41.84984975200014],[-8.184586140999954,41.85773040800008],[-8.220397908999871,41.868194886000126],[-8.231715047999955,41.88604909300007],[-8.23021643099986,41.90467844700014],[-8.220707966999953,41.92271352100011],[-8.182131509999891,41.96542409300004],[-8.152960163999865,41.98681813600014],[-8.12391800899988,42.000899964],[-8.10802750699986,42.010899353000084],[-8.097356322999929,42.02348256500004],[-8.095082559999922,42.04092336100014],[-8.103195760999938,42.05580617300011],[-8.118440307999975,42.06686492900009],[-8.137612263999898,42.07291107200014],[-8.15838618999993,42.071386617000044],[-8.17616288299996,42.065262960000084],[-8.19130407699987,42.06208485900011],[-8.204016479999922,42.06955210400004],[-8.207375447999937,42.08577850400006],[-8.204326537999918,42.12879913300004],[-8.213395751999883,42.14401784300016],[-8.222361612999919,42.15362966],[-8.252333943999956,42.13758412800003],[-8.270679076999926,42.1320030720001],[-8.287835652999888,42.13143463200005],[-8.295380411999957,42.130091045000185],[-8.304268757999864,42.125827739000115],[-8.329951944999948,42.1084386190001],[-8.346746785999898,42.10169484500007],[-8.501207641999883,42.083091330000016],[-8.520017862999879,42.07771698000006],[-8.554434366999942,42.06006947800016],[-8.572805337999938,42.054410909000026],[-8.60941809099998,42.05366160100011],[-8.626884724999911,42.05102610300009],[-8.643886271999946,42.04149180200001],[-8.65256791199991,42.03144073599999],[-8.663213256999882,42.00989166300003],[-8.670809691999864,41.999814758000085],[-8.69127355899991,41.989608664],[-8.717008422999896,41.98376922600012],[-8.739591023999933,41.975113424000156],[-8.750803188999924,41.96898021000011],[-8.761952277999853,41.952582098000036],[-8.777088995999861,41.9371605490001],[-8.795399542999917,41.92568594000012],[-8.815988735999952,41.921210028000175],[-8.832834438999953,41.91396719000015],[-8.848784959999875,41.899481512000094],[-8.8646541009999,41.888902085000055],[-8.881255662999934,41.89329661700005],[-8.87873287699992,41.90713125200013],[-8.898589647999927,42.10175202],[-8.895497199999852,42.119086005],[-8.88459225199989,42.12604401200014],[-8.844960089999859,42.12661367400012],[-8.826527472999912,42.13051992400012],[-8.819081183999856,42.139715887000094],[-8.823719855999883,42.147609768000095],[-8.842762824999852,42.154445705000015],[-8.846994594999984,42.16083405200011],[-8.842030402999939,42.16429271000011],[-8.815988735999952,42.174505927000055],[-8.813465949999852,42.178697007],[-8.811024542999917,42.18813711100002],[-8.805775519999912,42.19749583500014],[-8.79523678299995,42.20172760600015],[-8.790638800999915,42.204535223],[-8.77196204299986,42.222235419000114],[-8.719553188999953,42.252346096000124],[-8.7064509759999,42.256415106000084],[-8.701893683999856,42.258530992000104],[-8.669911261999857,42.280910549000126],[-8.652007615999906,42.286322333000086],[-8.631743943999908,42.29682038000006],[-8.625152147999925,42.30194733300006],[-8.621652798999918,42.310207424000154],[-8.621652798999918,42.34080638200008],[-8.622710740999878,42.347479559000035],[-8.626454230999911,42.348334052000105],[-8.634755011999886,42.346380927],[-8.649891730999883,42.33559804900006],[-8.660755988999881,42.316799221000124],[-8.674794074999852,42.29901764500015],[-8.699574347999885,42.29116445500016],[-8.7198380199999,42.28758372599999],[-8.773915167999888,42.268988348],[-8.78498287699992,42.26007721600014],[-8.795765753999945,42.25824616100008],[-8.848296678999873,42.26097239800005],[-8.86750240799992,42.256415106000084],[-8.863636847999913,42.268988348],[-8.853423631999902,42.291083075000174],[-8.853260870999918,42.3048363300001],[-8.846994594999984,42.3048363300001],[-8.832997199999909,42.28912995000003],[-8.827219204999947,42.29669830900018],[-8.826527472999912,42.329046942],[-8.82852128799996,42.33722565300009],[-8.83071855399993,42.34162018400018],[-8.82725989499994,42.34414297100001],[-8.812855597999885,42.346380927],[-8.776926235999895,42.34015534100003],[-8.77196204299986,42.34271881700012],[-8.764637824999852,42.35569896000011],[-8.726877407999893,42.388739325000174],[-8.709828253999916,42.40037669499999],[-8.67686926999994,42.41644928600006],[-8.662505662999877,42.42690664300015],[-8.655262824999852,42.44135163],[-8.66437740799995,42.43797435099999],[-8.672515428999873,42.43842194200009],[-8.682525193999934,42.44135163],[-8.69127356699991,42.440619208000086],[-8.694488084999875,42.439642645],[-8.696766730999855,42.43797435099999],[-8.718820766999926,42.42796458499999],[-8.743641730999911,42.413234768],[-8.757639126999948,42.407212632000025],[-8.779367641999926,42.40289948100009],[-8.811024542999917,42.40070221600011],[-8.843576626999974,42.403713283000016],[-8.86750240799992,42.414699611000074],[-8.875721808999941,42.425970770000056],[-8.88023841099988,42.44501373900005],[-8.888010219999897,42.45563385600009],[-8.90094967399989,42.461004950000145],[-8.935454881999902,42.465399481000034],[-8.942616339999859,42.469305731000034],[-8.935047980999911,42.479071356000176],[-8.916737433999854,42.48761627800009],[-8.895985480999855,42.49388255400005],[-8.881255662999934,42.49656810100011],[-8.869007941999882,42.49339427300004],[-8.860829230999883,42.4850121110001],[-8.86115475199989,42.475572007],[-8.874338344999954,42.469305731000034],[-8.865549282999893,42.46503327000012],[-8.851551886999912,42.460760809000114],[-8.836984829999892,42.45892975500014],[-8.826527472999912,42.46185944200006],[-8.822499152999853,42.47235748900012],[-8.825184699999937,42.48411692900011],[-8.825062628999945,42.49494049700009],[-8.812855597999885,42.50275299700009],[-8.825184699999937,42.53742096600017],[-8.826527472999912,42.55463288],[-8.822987433999856,42.56952545800014],[-8.813832160999937,42.58144765800007],[-8.801584438999896,42.58930084800006],[-8.788400844999927,42.59218984600001],[-8.775502081999917,42.60472239799999],[-8.738758917999917,42.66608307500009],[-8.730946417999945,42.68842194200012],[-8.737172003999886,42.68842194200012],[-8.744048631999902,42.672430731000034],[-8.753895636999914,42.65688711100002],[-8.767323370999918,42.64516836100013],[-8.78498287699992,42.64057038],[-8.803822394999884,42.645941473000065],[-8.815988735999952,42.658514716000134],[-8.826242641999897,42.67413971600003],[-8.839507615999906,42.682440497000115],[-8.854603644999912,42.66156647300012],[-8.857004360999952,42.64911530200011],[-8.846994594999984,42.64057038],[-8.868763800999943,42.61749909100005],[-8.880523240999906,42.61180247600005],[-8.894846157999893,42.62010325700014],[-8.889475063999953,42.63060130400011],[-8.903431769999912,42.62547435099999],[-8.936390753999888,42.606431382],[-8.922230597999885,42.59369538000006],[-8.933990037999934,42.58681875200013],[-8.969878709999932,42.57916901200009],[-8.972767706999889,42.57391998900011],[-8.980783657999922,42.55121491100009],[-8.989165818999878,42.54889557500012],[-8.997059699999852,42.543402411],[-9.01154537699989,42.53070709800012],[-9.02635657499988,42.54311758000016],[-9.028553839999857,42.561468817],[-9.033355272999868,42.57811107000004],[-9.05581620999996,42.585394598000065],[-9.070871548999975,42.59613678600008],[-9.065744594999954,42.620306708],[-9.051421678999873,42.645941473000065],[-9.03880774599989,42.66107819200006],[-9.039458787999934,42.673041083],[-9.036284959999875,42.687933661000145],[-9.030140753999886,42.707709052000055],[-9.018788214999915,42.71975332200016],[-9.014027472999913,42.726833401000036],[-9.006255662999934,42.733832098000036],[-8.99449622299994,42.73700592699999],[-8.992014126999917,42.73908112200009],[-8.96312415299991,42.751288153000175],[-8.937367316999882,42.777777411000145],[-8.922230597999885,42.788112697000045],[-8.89826412699992,42.79230377800009],[-8.891346808999911,42.79934316600007],[-8.884917772999897,42.815008856000034],[-8.88768469999988,42.83112213700009],[-8.908436652999853,42.83946360900008],[-8.912587042999888,42.81659577000006],[-8.928089972999912,42.80251699400013],[-8.95103919199991,42.79511139500012],[-8.977365688999896,42.79230377800009],[-9.028187628999945,42.79787832200019],[-9.048939581999946,42.79474518400012],[-9.045643683999913,42.778021552],[-9.068674282999893,42.759711005000106],[-9.081288214999859,42.75482819200006],[-9.100249803999873,42.75751373900011],[-9.113433397999927,42.76605866100006],[-9.12010657499988,42.77899811400005],[-9.125477667999917,42.794989325000145],[-9.134999152999939,42.812770901000064],[-9.122547980999911,42.81260814000008],[-9.113189256999874,42.81635163000011],[-9.106190558999884,42.823309637000094],[-9.100249803999873,42.8332787130001],[-9.10838782499988,42.844834703000046],[-9.122222459999875,42.85175202000012],[-9.141224738999881,42.8574486350001],[-9.142323370999918,42.86530182500009],[-9.14753170499992,42.87860748900003],[-9.148671027999882,42.88446686400006],[-9.146636522999927,42.88837311400006],[-9.137521938999953,42.89606354400017],[-9.134999152999939,42.90216705900015],[-9.133697068999936,42.91120026200015],[-9.134510870999861,42.917547919000086],[-9.141428188999924,42.92141347900009],[-9.158599412999877,42.922634182000124],[-9.16787675699993,42.92682526200015],[-9.18346106699991,42.94525788],[-9.195871548999946,42.94932689000014],[-9.195871548999946,42.94314199400015],[-9.19001217399989,42.93239980700015],[-9.19579016799986,42.926581122000115],[-9.205189581999889,42.92475006700012],[-9.21007239499994,42.92572663000003],[-9.214344855999881,42.93903229400003],[-9.224232550999886,42.94021230700015],[-9.235585089999859,42.93488190300009],[-9.244252081999946,42.928778387000094],[-9.251698370999918,42.920233466000084],[-9.261708136999914,42.90017324400013],[-9.268422003999945,42.891302802000084],[-9.273060675999885,42.893337307000095],[-9.28294837099989,42.916612046000026],[-9.291981574999909,42.922634182000124],[-9.291981574999909,42.928778387000094],[-9.28538977799991,42.93834056200008],[-9.264759894999912,42.98033274900017],[-9.263986782999893,42.98651764500011],[-9.261830206999889,42.994492906000104],[-9.258656378999916,43.00238678600006],[-9.254790818999908,43.00800202000006],[-9.25096594999988,43.01679108300011],[-9.257313605999911,43.023260809000035],[-9.272124803999901,43.03127676000018],[-9.279530402999882,43.054999091000084],[-9.271107550999913,43.06049225500011],[-9.257923956999889,43.06089915600002],[-9.251088019999969,43.069769598000065],[-9.245716925999915,43.08799876500014],[-9.233957485999923,43.09650299700008],[-9.222320115999906,43.10272858300014],[-9.217600063999924,43.114447333000115],[-9.20295162699989,43.105047919000114],[-9.189808722999942,43.10232168200004],[-9.176828579999947,43.10557689000008],[-9.162261522999927,43.114447333000115],[-9.156890428999873,43.11973704600011],[-9.154204881999874,43.12470123900006],[-9.150298631999902,43.12958405200011],[-9.141224738999881,43.13487376500011],[-9.13312740799995,43.13796621300018],[-9.125803188999953,43.13959381700003],[-9.107736782999922,43.141140041000064],[-9.107736782999922,43.148504950000145],[-9.124663865999906,43.142523505000135],[-9.147084113999938,43.138698635000125],[-9.163319464999887,43.139756578000075],[-9.162261522999927,43.148504950000145],[-9.194203253999916,43.136542059000114],[-9.208363410999937,43.13788483300003],[-9.217600063999924,43.15534088700015],[-9.170074022999898,43.18874746300004],[-9.137928839999859,43.201524156000076],[-9.100412563999924,43.189520575000145],[-9.083159959999932,43.18976471600011],[-9.065174933999884,43.192328192],[-9.052398240999935,43.19635651200018],[-9.039784308999856,43.20453522300009],[-9.026966925999915,43.210150458],[-9.016753709999904,43.223863023000106],[-9.01154537699989,43.23875560100008],[-9.004058397999927,43.23875560100008],[-8.985747850999871,43.22687409100002],[-8.958973761999857,43.22748444200006],[-8.932525193999878,43.23529694200006],[-8.915272589999887,43.24502187700001],[-8.936390753999888,43.24408600500011],[-8.94815019399988,43.249945380000085],[-8.96312415299991,43.272284247000115],[-8.967518683999884,43.27195872599999],[-8.979807094999927,43.27692291900003],[-8.988026495999861,43.28302643400012],[-8.980783657999922,43.28595612200006],[-8.970855272999927,43.286566473],[-8.930490688999953,43.29975006700014],[-8.888010219999897,43.320746161],[-8.856597459999875,43.326890367000075],[-8.849110480999883,43.33405182500012],[-8.841175910999937,43.33893463700018],[-8.829986131999902,43.34121328300015],[-8.81700598899991,43.33584219],[-8.785552537999903,43.31244538000011],[-8.768544074999852,43.30707428600006],[-8.750477667999917,43.304917710000055],[-8.711740688999896,43.29555898600002],[-8.69310462099989,43.293402411000116],[-8.665394660999908,43.30117422100004],[-8.630034959999904,43.31586334800012],[-8.592518683999884,43.32420482],[-8.558420376999948,43.31321849200013],[-8.505970831999889,43.33152903900019],[-8.497547980999855,43.33779531500015],[-8.494252081999917,43.346625067],[-8.486073370999918,43.35431549700003],[-8.475982225999928,43.35968659100008],[-8.45571855399993,43.36334870000003],[-8.451405402999939,43.36737702],[-8.44896399599989,43.37197500200012],[-8.443023240999876,43.37531159100014],[-8.388295050999943,43.385891018],[-8.384673631999874,43.37270742400007],[-8.375721808999854,43.36298248900012],[-8.353586391999954,43.34861888200014],[-8.340809699999909,43.35993073100003],[-8.337269660999937,43.369045315],[-8.339914516999926,43.39272695500013],[-8.330718553999873,43.40566640800013],[-8.310617641999897,43.40314362200003],[-8.28156490799992,43.38959381700006],[-8.267201300999941,43.385931708],[-8.26081295499992,43.377020575000145],[-8.257069464999915,43.365668036],[-8.250559048999918,43.3548851580001],[-8.227528449999852,43.33812083500008],[-8.217274542999917,43.32831452000011],[-8.210194464999859,43.31321849200013],[-8.202463344999927,43.32925039300012],[-8.20295162699992,43.34467194200006],[-8.210194464999859,43.37531159100014],[-8.209624803999871,43.39069245000009],[-8.20482337099989,43.39972565300011],[-8.19395911399991,43.406805731000176],[-8.175404425999915,43.41632721600017],[-8.195057745999861,43.42324453300007],[-8.213286912999934,43.424953518000066],[-8.247141079999892,43.423081773000106],[-8.264759894999912,43.42731354400003],[-8.288726365999878,43.44623444200015],[-8.305165167999888,43.45107656500012],[-8.286488410999908,43.461981512000094],[-8.185617641999926,43.47150299700009],[-8.17878170499992,43.473293361000074],[-8.171457485999923,43.477972723],[-8.166981574999852,43.484564520000085],[-8.168568488999881,43.49201080900015],[-8.173451300999943,43.492743231000084],[-8.196522589999915,43.48517487200002],[-8.257313605999855,43.47772858300006],[-8.25365149599989,43.48126862200006],[-8.250884568999936,43.48285553600009],[-8.243723110999895,43.48517487200002],[-8.247547980999911,43.48773834800015],[-8.257313605999855,43.49201080900015],[-8.269195115999906,43.47894928600009],[-8.28897050699993,43.47296784100014],[-8.333119269999912,43.47150299700009],[-8.325347459999904,43.48676178600006],[-8.321685350999957,43.50787995000008],[-8.31663977799991,43.522894598],[-8.305165167999888,43.519354559000035],[-8.292103644999884,43.532945054],[-8.300160285999937,43.538234768000066],[-8.308216925999972,43.54633209800009],[-8.313221808999913,43.55634186400006],[-8.312652147999927,43.56712474199999],[-8.308705206999946,43.56712474199999],[-8.291330532999979,43.56484609600001],[-8.284657355999911,43.56712474199999],[-8.260975714999885,43.564520575000174],[-8.232248501999948,43.57550690300003],[-8.086659308999856,43.65648021],[-8.08299719999988,43.64545319200015],[-8.074615037999932,43.639634507],[-8.06354732999989,43.63886139500006],[-8.051869269999884,43.64280833500005],[-8.06240800699996,43.64232005400008],[-8.065541144999912,43.64280833500005],[-8.065541144999912,43.64907461100002],[-8.061268683999913,43.650946356000176],[-8.05646725199992,43.65424225500011],[-8.051869269999884,43.65648021],[-8.071156378999916,43.667873440000065],[-8.07396399599989,43.67853424700009],[-8.069162563999896,43.68927643400009],[-8.065541144999912,43.70087311400012],[-8.059315558999883,43.709418036000145],[-8.044504360999895,43.712103583000115],[-8.010975714999859,43.711737372000115],[-7.981190558999857,43.717840887000094],[-7.952951626999891,43.730129299000154],[-7.928130662999933,43.746771552],[-7.908558722999942,43.766343492000075],[-7.880848761999886,43.763251044000086],[-7.869048631999902,43.74884674700003],[-7.861480272999869,43.731187242000104],[-7.846506313999924,43.71796295800005],[-7.846506313999924,43.711737372000115],[-7.852284308999884,43.71417877800003],[-7.86229407499988,43.716253973000065],[-7.867583787999934,43.71796295800005],[-7.874623175999914,43.709418036000145],[-7.879261847999941,43.70050690300009],[-7.879790818999908,43.69196198100017],[-7.873768683999913,43.68447500200001],[-7.884103969999926,43.67861562700007],[-7.887318488999881,43.679673570000126],[-7.894886847999913,43.68447500200001],[-7.901234503999944,43.67975495000012],[-7.903879360999922,43.678290106000055],[-7.908558722999942,43.67698802300005],[-7.908558722999942,43.67015208500011],[-7.85838782499988,43.66819896],[-7.849232550999886,43.67560455900015],[-7.867583787999934,43.697455145],[-7.856027798999918,43.70343659100003],[-7.843861456999917,43.70380280200014],[-7.819162563999952,43.697455145],[-7.821400519999911,43.70075104400014],[-7.823963995999918,43.70807526200014],[-7.826039191999938,43.711737372000115],[-7.812001105999911,43.72308991100009],[-7.793853318999907,43.73411692900011],[-7.773793097999942,43.74258047100007],[-7.734038865999934,43.75006745000003],[-7.712757941999883,43.76068756700009],[-7.695708787999904,43.77488841400019],[-7.688832160999908,43.789984442],[-7.685536261999886,43.79344310099999],[-7.678334113999938,43.79047272300009],[-7.671294725999871,43.782863674000126],[-7.668324347999942,43.77252838700004],[-7.672596808999856,43.766669012000094],[-7.695627407999921,43.745917059000085],[-7.696156378999916,43.73151276200004]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Estonia","sov_a3":"EST","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Estonia","adm0_a3":"EST","geou_dif":0,"geounit":"Estonia","gu_a3":"EST","su_dif":0,"subunit":"Estonia","su_a3":"EST","brk_diff":0,"name":"Estonia","name_long":"Estonia","brk_a3":"EST","brk_name":"Estonia","brk_group":null,"abbrev":"Est.","postal":"EST","formal_en":"Republic of Estonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Estonia","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":10,"pop_est":1299371,"gdp_md_est":27410,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"EN","iso_a2":"EE","iso_a3":"EST","iso_n3":"233","un_a3":"233","wb_a2":"EE","wb_a3":"EST","woe_id":23424805,"woe_id_eh":23424805,"woe_note":"Exact WOE match as country","adm0_a3_is":"EST","adm0_a3_us":"EST","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"EST.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.270192905000044,57.78563060100008],[23.250254754000135,57.78436920800006],[23.229502800000148,57.791693427000084],[23.217784050000144,57.80093008000013],[23.218597852000073,57.80951569200015],[23.22055097700013,57.81769440300014],[23.22429446700005,57.82371653900007],[23.239593946000127,57.822577216000035],[23.260508660000085,57.813544012000115],[23.270681186000015,57.80780670800014],[23.275075717000103,57.798732815000115],[23.270192905000044,57.78563060100008]]],[[[24.00245201900009,58.108547268000116],[23.970713738000114,58.099595445000105],[23.94336998800014,58.11318594000007],[23.93799889400009,58.137274481000084],[23.955332879000082,58.15180084800013],[23.9842228520001,58.15713125200009],[24.01335696700005,58.15350983300015],[24.022146030000016,58.12986888200011],[24.00245201900009,58.108547268000116]]],[[[22.64079837300008,58.588853257],[22.648122592000107,58.58673737200017],[22.65821373800014,58.588853257],[22.675791863000086,58.5982933610001],[22.682139519000117,58.60032786700013],[22.702647332000083,58.59711334800006],[22.719248894000145,58.59121328300012],[22.736338738000086,58.588080145000056],[22.75798587300008,58.592922268000144],[22.790700717000107,58.614813544000164],[22.811371290000125,58.622951565],[22.846364780000016,58.6134300800001],[22.899668816000087,58.62026601800003],[22.92204837300011,58.61741771000009],[22.944021030000012,58.61017487200014],[22.98975670700014,58.60175202],[23.036468946000127,58.58417389500006],[23.091075066000087,58.57094961100013],[23.111338738000082,58.55573151200014],[23.12582441500004,58.53510163000011],[23.13355553500014,58.52899811400014],[23.14828535200013,58.521551825000145],[23.188649936000104,58.51040273600013],[23.23064212300008,58.50482819200012],[23.255137566000116,58.500067450000024],[23.288584832000083,58.48818594000009],[23.318369988000086,58.47247955900012],[23.333262566000144,58.45636627800014],[23.32496178500014,58.44228750200001],[23.261403842000078,58.46588776200004],[23.237640821000067,58.45636627800014],[23.250254754000135,58.45453522300006],[23.261729363000086,58.45160553600014],[23.27133222700007,58.44599030200005],[23.278005405000044,58.43650950700014],[23.234873894000117,58.43988678600005],[23.215668165000068,58.445868231000176],[23.19605553500008,58.45636627800014],[23.192230665000068,58.46112702000015],[23.188243035000113,58.468207098],[23.181895379000082,58.47467682500011],[23.171885613000086,58.477484442000055],[23.15650475400014,58.47752513200005],[23.154795769000145,58.475490627000035],[23.14893639400009,58.470038153000175],[23.146983269000145,58.46637604400003],[23.14161217500009,58.45184967699999],[23.138031446000127,58.44611237200002],[23.130381707000083,58.43952057500014],[23.12354576900009,58.43569570500012],[23.108653191000116,58.42902252800017],[23.101898634000094,58.42959219000014],[23.09253991000014,58.43154531500009],[23.084239129000082,58.42963288000014],[23.080577019000117,58.418524481000084],[23.08106530000009,58.41242096600002],[23.08228600400011,58.4059919290001],[23.084239129000082,58.39996979400008],[23.086761915000096,58.39496491100006],[23.0638126960001,58.385443427000055],[23.04249108200014,58.371486721000096],[23.02198326900009,58.36322663],[22.977549675000148,58.38165924700003],[22.95484459700012,58.381048895000085],[22.94752037900011,58.37262604400003],[22.96949303500011,58.360174872000115],[22.90267988400009,58.31183502800009],[22.88697350400011,58.307359117000125],[22.87094160200013,58.30467357000004],[22.854014519000145,58.29873281500012],[22.8248804050001,58.27920156500015],[22.811208530000073,58.27342357],[22.788584832000083,58.27138906500015],[22.742930535000138,58.27383047100009],[22.72120201900009,58.27033112200008],[22.710134311000047,58.25775788000012],[22.756683790000064,58.24225495000009],[22.723155144000117,58.22540924700009],[22.669200066000116,58.22150299700008],[22.6549585300001,58.24469635600003],[22.639821811000104,58.25023021000005],[22.621348504000082,58.25275299700017],[22.602549675000148,58.252101955000015],[22.58619225400014,58.24778880400011],[22.570974155000044,58.23944733300015],[22.564952019000145,58.23517487200004],[22.560313347000115,58.237250067000055],[22.54908287900011,58.24778880400011],[22.535004102000073,58.254055080000064],[22.526133660000113,58.24738190300011],[22.517588738000114,58.23041413000014],[22.510427280000073,58.22719961100007],[22.507172071000127,58.224920966000106],[22.50416100400011,58.22353750200012],[22.4972436860001,58.223049221000124],[22.49683678500011,58.226507880000135],[22.491547071000124,58.24152252800015],[22.490977410000056,58.24469635600003],[22.47681725400014,58.245103257000146],[22.459320509000094,58.24091217700011],[22.443044467000046,58.23407623900001],[22.432383660000113,58.226752020000085],[22.42164147200012,58.221625067000055],[22.4100041020001,58.224025783],[22.398448113000086,58.22772858300005],[22.387950066000116,58.226752020000085],[22.380544467000107,58.223456122000144],[22.361501498000024,58.21771881700008],[22.35377037900011,58.216782945],[22.323415561000047,58.206610419000135],[22.29509524800011,58.19285716400013],[22.281993035000113,58.18256256700003],[22.2747501960001,58.179266669000164],[22.27173912900011,58.174261786000116],[22.26986738400012,58.137030341000134],[22.26539147200006,58.115057684000035],[22.256846550000148,58.09324778899998],[22.22925866000014,58.05219147300009],[22.221039259000122,58.042954820000105],[22.20980879000012,58.034898179],[22.19988040500004,58.02602773600013],[22.198415561000076,58.01634349199998],[22.2029728520001,57.99396393400015],[22.189952019000117,57.983832098],[22.04835045700011,57.915106512000094],[22.016856316000087,57.91449616100014],[21.990082227000073,57.93561432500014],[21.994395379000082,57.94725169500008],[21.990733269000117,57.95823802300013],[21.980804884000122,57.96649811400011],[21.966807488000086,57.96971263200008],[21.964121941000087,57.97138092699999],[21.96265709700012,57.97528717700008],[21.962250196000127,57.9799665390001],[21.963389519000145,57.984035549000154],[21.98975670700014,57.982733466000134],[21.99756920700014,57.984035549000154],[22.004567905000044,57.99095286700005],[22.01539147200012,58.01203034100017],[22.021332227000045,58.02122630400005],[22.058929884000065,58.052313544000135],[22.076182488000143,58.073391018000066],[22.085703972000143,58.08258698100014],[22.096202019000117,58.08641185100008],[22.110687696000067,58.08405182500011],[22.12354576900009,58.07953522300014],[22.13550866000011,58.076727606000084],[22.147715691000116,58.079575914000046],[22.153168165000125,58.08624909100011],[22.159027540000096,58.10712311400005],[22.16504967500009,58.11688873900003],[22.2029728520001,58.14789459800012],[22.180349155000044,58.16083405200015],[22.141856316000144,58.16950104400003],[22.07227623800014,58.17584870000014],[22.05298912900011,58.186590887000186],[22.016856316000087,58.23387278900004],[21.993825717000107,58.24469635600003],[21.928884311000047,58.245103257000146],[21.896494988000143,58.25071849200005],[21.867849155000073,58.26459381700012],[21.85132897200009,58.28188711100004],[21.843760613000143,58.29360586100001],[21.84327233200014,58.30215078300012],[21.85564212300011,58.30687083500014],[21.908213738000114,58.29873281500012],[21.89665774800011,58.313910223000036],[21.879567905000073,58.329535223],[21.87330162900011,58.34162018400009],[21.894541863000082,58.34650299700017],[21.912364129000082,58.339748440000115],[21.92839603000007,58.326808986000124],[21.944590691000112,58.318752346000096],[21.963389519000145,58.32660553600008],[21.95492597700013,58.344061591000056],[21.968028191000084,58.35455963700009],[21.990489129000082,58.35785553600014],[22.011241082000083,58.353949286000145],[22.002207879000082,58.365423895],[21.990082227000073,58.38694896000011],[21.9459741550001,58.43227773600002],[21.924489780000073,58.44696686400011],[21.901133660000085,58.46841054900015],[21.88770592500009,58.477484442000055],[21.859385613000114,58.49188873900012],[21.832367384000094,58.510972398000106],[21.88502037900011,58.49819570500007],[21.90137780000012,58.49799225500011],[21.916270379000082,58.501166083000086],[21.918467644000145,58.504706122000144],[21.918955925000148,58.50995514500015],[21.92847741000014,58.51837799700008],[21.9666447270001,58.51756419499999],[21.995616082000108,58.512518622000144],[22.020762566000087,58.4992536480001],[22.064219597000115,58.45669179900006],[22.06983483200011,58.44647858300014],[22.07203209700012,58.432806708],[22.07357832100007,58.426906643000066],[22.077810092000078,58.423773505],[22.0833439460001,58.422512111000074],[22.08936608200011,58.42218659100015],[22.098480665000093,58.42609284100014],[22.098643425000148,58.434759833000136],[22.093109571000127,58.44953034100003],[22.098806186000015,58.47577545800005],[22.10368899800008,58.487209377],[22.11361738400009,58.49799225500011],[22.12680097700013,58.50462474199998],[22.15894616000011,58.513617255],[22.171885613000114,58.521551825000145],[22.183278842000078,58.53546784100014],[22.18775475400014,58.542873440000115],[22.194590691000144,58.54584381700015],[22.212901238000114,58.546372789000095],[22.215586785000085,58.544175523000135],[22.21900475400011,58.539007880000106],[22.22217858200008,58.533026434000085],[22.223480665000068,58.528387762000186],[22.22486412900014,58.51642487200014],[22.228851759000122,58.51056549700011],[22.243337436000076,58.50482819200012],[22.273203972000147,58.502020575000174],[22.282888217000103,58.52204010600015],[22.283946160000085,58.549546617],[22.288340691000144,58.5693220070001],[22.321950717000078,58.58478424700002],[22.46306399800011,58.592922268000144],[22.55030358200014,58.629584052000055],[22.583181186000047,58.63450755400011],[22.594086134000094,58.629136460000055],[22.6126408210001,58.60569896],[22.623789910000113,58.60032786700013],[22.630137566000144,58.59821198100011],[22.64079837300008,58.588853257]]],[[[23.348155144000085,58.62518952000009],[23.34595787900011,58.61566803600009],[23.34750410200013,58.607163804000045],[23.35564212300005,58.598334052],[23.37403405000009,58.58637116100005],[23.38160241000014,58.57990143400014],[23.397146030000073,58.56366608300011],[23.40023847700013,58.555405992000125],[23.379893425000148,58.54755280200014],[23.371592644000057,58.53876373900009],[23.362152540000064,58.53245677300013],[23.346934441000087,58.53546784100014],[23.330902540000096,58.54148997600005],[23.313731316000144,58.5446638040001],[23.278575066000087,58.546372789000095],[23.264659050000116,58.54385000200001],[23.234873894000117,58.53465403900013],[23.223806186000076,58.53546784100014],[23.134613477000098,58.57990143400014],[23.083262566000087,58.590521552],[23.059336785000138,58.60346100500002],[23.062836134000122,58.62457916900002],[23.075450066000116,58.629828192],[23.1061304050001,58.62421295799999],[23.120941602000073,58.62832265800016],[23.12354576900009,58.633693752],[23.130381707000083,58.654486395],[23.134613477000098,58.66181061400001],[23.154633009000094,58.67593008000012],[23.175791863000086,58.681097723000114],[23.19776451900009,58.68060944200015],[23.288340691000144,58.66648997600011],[23.330251498000052,58.65306224200013],[23.343760613000114,58.64472077000006],[23.34913170700008,58.635077216000084],[23.348155144000085,58.62518952000009]]],[[[23.20801842500012,59.04409414300012],[23.278005405000044,59.03237539300015],[23.322032097000147,59.03900788000011],[23.34424889400009,59.03929271000013],[23.364024285000113,59.028957424000126],[23.38965905000009,59.007513739],[23.393728061000047,58.996242580000015],[23.384776238000114,58.98053620000006],[23.374278191000144,58.975531317],[23.36231530000012,58.977484442000154],[23.350433790000068,58.98187897300012],[23.340098504000135,58.983954169000135],[23.329437696000127,58.98183828300013],[23.29908287900014,58.97089264500006],[23.278575066000087,58.97068919500011],[23.24439537900011,58.98135000200015],[23.223399285000056,58.983954169000135],[23.21753991000011,58.98187897300012],[23.215098504000082,58.977362372000165],[23.210785352000073,58.97296784100008],[23.17416425900006,58.96832916900018],[23.163259311000076,58.96893952000011],[23.14828535200013,58.97402578300013],[23.11939537900014,59.01609935100011],[23.114105665000064,59.02179596600008],[23.118907097000147,59.03351471600009],[23.131358269000145,59.04071686400012],[23.148203972000147,59.04441966400007],[23.170176629000082,59.04588450700011],[23.20801842500012,59.04409414300012]]],[[[22.720469597000147,59.01162344000014],[22.736664259000094,59.00507233300005],[22.837168816000144,59.008612372000144],[22.934092644000117,58.98403554900012],[22.949554884000122,58.97089264500006],[22.95264733200011,58.960598049000154],[22.94760175900009,58.94513580900003],[22.949554884000122,58.936183986000025],[22.958506707000083,58.926703192],[22.97950280000012,58.91762929900001],[22.987559441000144,58.91193268400012],[22.993988477000073,58.90582916900003],[23.00806725400011,58.89740631700009],[23.01514733200014,58.89179108300008],[23.01807701900009,58.887193101000044],[23.01905358200014,58.88202545800014],[23.018565300000148,58.87067291900017],[23.02173912900014,58.864081122000094],[23.028493686000076,58.862127997000144],[23.035492384000065,58.862005927000084],[23.039073113000114,58.861029364],[23.040537957000083,58.84076569200009],[23.033539259000094,58.83030833500011],[23.01905358200014,58.829087632],[22.977793816000116,58.844183661],[22.967295769000117,58.846502997000144],[22.956797722000147,58.847398179000045],[22.949554884000122,58.84393952000015],[22.94703209700012,58.83755117400012],[22.942230665000125,58.83421458500002],[22.92920983200014,58.83999258000007],[22.91260826900009,58.8355980490001],[22.895518425000148,58.83551666900012],[22.879567905000044,58.83270905200005],[22.867198113000086,58.820054429],[22.876638217000107,58.81989166900003],[22.88306725400011,58.817287502000035],[22.88697350400011,58.811835028000175],[22.88819420700014,58.80304596600002],[22.886729363000082,58.790472723000114],[22.882090691000144,58.788031317],[22.874278191000144,58.78790924700002],[22.863617384000122,58.78221263200013],[22.84538821700005,58.77651601800015],[22.816661004000082,58.77594635600009],[22.790049675000144,58.78099192900011],[22.778330925000148,58.792181708000115],[22.78931725400011,58.802639065],[22.811208530000073,58.81085846600011],[22.826914910000113,58.81915924700008],[22.819346550000063,58.82965729400014],[22.80225670700011,58.830389716000084],[22.777598504000135,58.824367580000064],[22.753184441000087,58.81513092700011],[22.736664259000094,58.806463934000035],[22.715179884000094,58.78204987200017],[22.6810001960001,58.724066473000015],[22.6549585300001,58.70278554900004],[22.61117597700013,58.69049713700014],[22.55567467500009,58.68699778899999],[22.50171959700009,58.69476959800007],[22.46306399800011,58.71645742400015],[22.47217858200011,58.71991608300006],[22.48096764400009,58.72479889500012],[22.4972436860001,58.737534897999986],[22.48340905000012,58.748195705000015],[22.465179884000122,58.76658763200005],[22.449473504000082,58.78681061400009],[22.442637566000144,58.80304596600002],[22.442637566000144,58.82721588700012],[22.439789259000122,58.841376044000135],[22.429942254000082,58.8524437520001],[22.382090691000144,58.88226959800009],[22.354746941000087,58.8920759140001],[22.324961785000085,58.89663320500015],[22.291758660000085,58.89520905199999],[22.22689863400009,58.8864606790001],[22.194997592000075,58.88800690300015],[22.062510613000114,58.92584870000009],[22.044688347000147,58.936183986000025],[22.055511915000125,58.952704169000086],[22.09424889400009,58.9560407570001],[22.168223504000135,58.95038483300011],[22.46306399800011,58.97089264500006],[22.443532748000052,58.977728583],[22.442067905000073,58.984686591000084],[22.454600457000083,58.987209377000106],[22.47673587300005,58.98053620000006],[22.488454623000052,58.98114655199999],[22.487559441000144,59.01642487200003],[22.504242384000094,59.02558014500012],[22.52686608200014,59.02635325700014],[22.544444207000083,59.03009674700017],[22.55925540500007,59.03839752800014],[22.5729272800001,59.05280182500012],[22.576426629000082,59.06171295800006],[22.576426629000082,59.070135809000085],[22.578298373000052,59.078436591000084],[22.587168816000116,59.086981512000094],[22.597666863000086,59.089504299000126],[22.64047285200007,59.0870628930001],[22.641123894000117,59.086981512000094],[22.6666772800001,59.08490631700009],[22.696543816000087,59.079169012000115],[22.714121941000116,59.06956614800013],[22.691579623000052,59.041164455000015],[22.701345248000077,59.02496979400014],[22.720469597000147,59.01162344000014]]],[[[24.54281660200013,59.547796942000055],[24.516286655000073,59.54425690300018],[24.489105665000064,59.55963776200012],[24.487315300000148,59.578517971000146],[24.500498894000117,59.59625885600014],[24.51587975400014,59.598089911000116],[24.530935092000078,59.583970444999984],[24.550059441000144,59.55776601800015],[24.54281660200013,59.547796942000055]]],[[[25.807383660000085,59.580471096],[25.826182488000114,59.57526276200009],[25.83692467500012,59.576483466000035],[25.844493035000085,59.577337958000115],[25.861338738000082,59.58612702],[25.876231316000144,59.60089752800017],[25.868825717000046,59.607733466000084],[25.88306725400014,59.631333726000136],[25.90447024800011,59.62400950700012],[25.926931186000104,59.60529205900014],[25.944509311000047,59.59467194200011],[25.96501712300008,59.597316799],[25.96705162900011,59.60382721600008],[25.9627384770001,59.612534898],[25.96436608200014,59.62140534100003],[25.976898634000037,59.631252346000146],[25.98853600400014,59.63434479400002],[26.001800977000073,59.63263580900004],[26.036387566000087,59.623236395],[26.07447350400005,59.60431549700009],[26.07837975400014,59.60028717700011],[26.08033287900011,59.59467194200011],[26.081716342000078,59.587307033000016],[26.090993686000047,59.58563873900001],[26.280039910000085,59.587307033000016],[26.299327019000113,59.58421458500014],[26.34009850400008,59.57050202],[26.401703321000127,59.56305573100003],[26.45769290500007,59.5458845070001],[26.49781334700009,59.53998444200006],[26.519867384000094,59.53949616100009],[26.536468946000127,59.542669989000146],[26.570323113000114,59.55678945500007],[26.584727410000085,59.55996328300014],[26.626312696000042,59.55805084800009],[26.66504967500009,59.551947333],[26.702321811000076,59.541408596000124],[26.739024285000056,59.525824286000145],[26.78085371200009,59.50254954600005],[26.826914910000113,59.476955471000146],[26.875743035000113,59.467718817],[26.917491082000055,59.454169012000044],[26.937673373000077,59.45010000200006],[27.116221550000063,59.44204336100013],[27.275075717000107,59.446966864],[27.409027540000096,59.451890367000075],[27.56316165500004,59.432074286000145],[27.717051629000107,59.42715078300008],[27.87330162900008,59.407619533000016],[27.914724155000073,59.4145368510001],[27.953461134000122,59.42816803600014],[27.98316491000014,59.446966864],[28.01905358200014,59.48175690300015],[28.03857751400005,59.46298655200014],[28.083432657000117,59.45089426700015],[28.104826701000032,59.439215394000186],[28.12839115400004,59.409449769],[28.137796264000084,59.40035471600014],[28.149578491000085,59.393171692000074],[28.175365031000094,59.38185455400009],[28.186475464000125,59.374929911000116],[28.181824585000072,59.35606801400009],[28.15753666200007,59.36402618500016],[28.1135600180001,59.34542266900011],[28.032376343000067,59.34196034800006],[28.000647014000037,59.33374379600003],[28.07320072400006,59.3189643350001],[28.09686853100007,59.31942942300004],[28.076611369000148,59.3052700810001],[27.959719279000097,59.30645863900013],[27.903908733000037,59.290387268000146],[27.88230798400008,59.27565948500013],[27.890782919000088,59.25803782200016],[27.873522990000083,59.236488750000106],[27.842413778000036,59.16119618800015],[27.78432946700013,59.07717030900012],[27.767172892000104,59.05593129500014],[27.72438480700006,59.014435120000165],[27.713326049000074,58.991904196000135],[27.69588933300011,58.97718303300017],[27.69441247600011,58.975936178000104],[27.60532230600012,58.93469838500003],[27.477784871000065,58.875425517],[27.446269007000126,58.81886666300012],[27.410605509000106,58.754864400000045],[27.42884876200011,58.70940260400015],[27.44925948000011,58.65853953099999],[27.498868856000083,58.534567769],[27.55488610800012,58.39524810900003],[27.494114624000105,58.31954213500016],[27.482849161000043,58.268640849000136],[27.495354859000145,58.221460266000015],[27.519585015000047,58.19450982700009],[27.540003296000066,58.171799215000036],[27.579690796000136,58.12585886700005],[27.630437053000037,58.088290100000116],[27.63658654800011,58.05919626900013],[27.630126993000147,58.032996318000116],[27.63157393400013,58.00416086800008],[27.650642537000124,58.000078431000155],[27.669091024000124,57.99196523000016],[27.675188843000086,57.967806499000105],[27.6704346110001,57.954964906000114],[27.66319991100005,57.94395782500011],[27.659375855000093,57.93245981900018],[27.664956909000125,57.91840382900007],[27.673121785000035,57.912822774000155],[27.77440759300006,57.89070526200005],[27.790840698000125,57.88086090100008],[27.799315633000017,57.861068827],[27.78680993600011,57.84758127900012],[27.763452189000077,57.83866709400011],[27.700717,57.82484364900015],[27.55634348500007,57.81308699600013],[27.53762618000013,57.81156280500016],[27.52460371900008,57.8072995000001],[27.53256189000004,57.805077414],[27.553852580000125,57.79476796500007],[27.52615401200009,57.78727488200014],[27.512408081000075,57.78130625500005],[27.502434530000073,57.772547099000136],[27.497835327000104,57.75567474400007],[27.508894084000104,57.72745941200019],[27.507757202000104,57.714772847000134],[27.490393921000077,57.704618429000085],[27.407711629000115,57.68898630900004],[27.391433553000095,57.68020131400006],[27.384663940000053,57.67438771600016],[27.379703003000117,57.66645538400004],[27.377015829000072,57.656714376000146],[27.377946004000137,57.65170176200011],[27.38021976700014,57.647722677000125],[27.382803589000048,57.63446767200013],[27.38512902800008,57.63121205700004],[27.386989380000102,57.62764638300016],[27.38487064600011,57.606975810000066],[27.38208011900005,57.60268666600008],[27.374845418000092,57.59785491999999],[27.362546428000144,57.594547628000086],[27.34890384900004,57.594056702000145],[27.336604858000097,57.591731263000106],[27.328026571000066,57.5831529750001],[27.32854333500012,57.57056976300007],[27.335571330000104,57.55390411500004],[27.344976440000067,57.53809112600013],[27.352934611000137,57.52760081000009],[27.319965047000096,57.51612864200017],[27.165659220000066,57.54669525200007],[27.08535404500014,57.54943410300002],[27.061531209000066,57.555661113000106],[27.041325724000075,57.5684510300001],[27.00463545800011,57.59891428600015],[26.981071004000114,57.6089911910001],[26.946551148000108,57.61534739200012],[26.929187866000092,57.61555409800008],[26.91161788000005,57.61343536400002],[26.896114950000108,57.614985657000126],[26.884952840000096,57.622091166000146],[26.872653849000127,57.627181295000135],[26.854153687000117,57.62255625400008],[26.83854740400008,57.609869690000046],[26.82831547100011,57.5950385550001],[26.816326538000055,57.581189270000046],[26.795759318000137,57.571319071000076],[26.778085978000064,57.5684768680001],[26.70046797600014,57.57075063100002],[26.666981649000064,57.56485951800012],[26.634322144000095,57.55442087900018],[26.604763224000067,57.54031321300014],[26.59835534700011,57.533853659],[26.594841349000063,57.526489767],[26.59008711800007,57.520366109000015],[26.579855183000088,57.51783396500004],[26.570243367000074,57.519590963000105],[26.551743205000065,57.52682566400007],[26.54223474100007,57.528169251000136],[26.528695516000084,57.523880107000174],[26.515052938000082,57.517265524],[26.499550008000085,57.5158185830001],[26.481049846000133,57.52713572200015],[26.44756351700005,57.55292226200008],[26.430923706000044,57.56170725500006],[26.430678413000066,57.56176425200006],[26.351325150000033,57.58020300100015],[26.33862959800004,57.5831529750001],[26.297185099000075,57.599146830000116],[26.26318200700004,57.62082509400012],[26.168510783000045,57.70404998800013],[26.135231161000092,57.72477223800016],[26.024746948000143,57.77435577400006],[26.016065308000094,57.78668060299999],[26.013068074000103,57.8072995000001],[26.016065308000094,57.81647206700007],[26.021749715000055,57.822414856000094],[26.025263713000097,57.82840932200013],[26.021956421000112,57.83794362400012],[26.014515015000086,57.842827047000135],[26.00273278800009,57.84597931000008],[25.792616415000083,57.85597869900012],[25.76750166800008,57.868923646000134],[25.75468591300009,57.88889658600006],[25.745384155000067,57.90917958600006],[25.73029463700007,57.92313222300005],[25.714998413000103,57.92339060500005],[25.70379977200008,57.92132652400015],[25.65009281400006,57.91142751100007],[25.62508142100006,57.910290630000176],[25.601516968000084,57.91220265800009],[25.579399455000072,57.91946319600007],[25.558315470000135,57.93424265599999],[25.552941122000078,57.94217498800013],[25.55211429800005,57.94881541000013],[25.551815984000143,57.94985951000011],[25.550253947000044,57.9553266400001],[25.541675659000106,57.96281972300015],[25.531960489000085,57.966437073000016],[25.496613810000067,57.970597026000156],[25.457184692000055,57.984058736000016],[25.396619914000098,58.023177796000034],[25.356519002000113,58.034753317000174],[25.346390421000137,58.03444325800011],[25.33987919100008,58.03258290600008],[25.333678019000104,58.03180776000009],[25.32458296700011,58.034753317000174],[25.31827844300011,58.04061859200008],[25.306392863000067,58.058731181000034],[25.29957157400011,58.06560414700008],[25.281691528000067,58.073407288000105],[25.26350142400011,58.075138449000164],[25.250685669000063,58.068498027000075],[25.24954878800014,58.05118642200015],[25.277557414000057,58.02410797200009],[25.2843787030001,58.008139954000164],[25.264534953000094,57.99418731800007],[25.232495565000104,57.98537648600008],[25.21678593000013,57.98537648600008],[25.20210982200004,57.99196523000016],[25.189914184000116,58.013514303000115],[25.180715780000128,58.038163961000016],[25.166969848000093,58.058731181000034],[25.141028280000057,58.068007101000134],[25.094209432000127,58.067309469000136],[25.070644978000132,58.063614604000044],[25.048837524000106,58.05619903600002],[25.034856819000083,58.04857408499999],[24.974836873000097,58.01583974200006],[24.949308716000072,58.006434631],[24.872517537000107,58.00044016500005],[24.84833296700012,57.992146098000106],[24.827417479000104,57.98187693600006],[24.816810344000146,57.976669007],[24.79076542100009,57.97899444600012],[24.76472050000009,57.98790863100005],[24.73350793500012,57.99219777400013],[24.718831828000134,57.981836650000034],[24.70043501800012,57.954189758],[24.684828735000107,57.947575175],[24.624057251000096,57.94395782500011],[24.553880656000103,57.94742014600014],[24.533830200000068,57.94506886800012],[24.481326945000088,57.91930816700012],[24.441639445000106,57.90809438100016],[24.42913374800011,57.90034291600007],[24.41270064300005,57.87657175700012],[24.40153853300012,57.866469014000145],[24.378180786000087,57.85944102000015],[24.349655395000127,57.85864003600012],[24.306158734217973,57.86818625586186],[24.306162957000083,57.868190822000074],[24.306162957000083,57.86823151200015],[24.31666100400005,57.87726471600017],[24.324392123000077,57.886786200000145],[24.327891472000147,57.89813873900011],[24.330332879000082,57.91010163000005],[24.333832227000073,57.92133209800006],[24.38111412900014,57.983832098],[24.39828535200007,58.023260809000185],[24.446543816000084,58.05451080900006],[24.464121941000116,58.072170315000065],[24.464121941000116,58.12055084800006],[24.47144616000014,58.142482815000086],[24.47291100400011,58.15473053600006],[24.46753991000014,58.1652692730001],[24.459808790000125,58.174505927000084],[24.455088738000114,58.185248114],[24.454844597000086,58.196437893],[24.46753991000014,58.21784088700006],[24.4681095710001,58.22882721600011],[24.467621290000125,58.239813544000135],[24.47095787900014,58.250921942],[24.491465691000112,58.26569245000017],[24.521494988000143,58.27610911700007],[24.548513217000107,58.289292710000105],[24.560394727000045,58.31232330900017],[24.55103600400011,58.33372630400014],[24.528819207000055,58.350653387000115],[24.44418379000004,58.3861351580001],[24.403168165000125,58.395331122000165],[24.361827019000117,58.39728424700004],[24.326996290000068,58.388128973000114],[24.315928582000108,58.37995026200004],[24.304535352000073,58.36806875200007],[24.295746290000096,58.3549665390001],[24.292246941000116,58.34308502800015],[24.290782097000147,58.32754140800016],[24.286875847000147,58.31854889500014],[24.255869988000114,58.289536851000044],[24.243337436000047,58.28021881700003],[24.228851759000094,58.27411530200012],[24.210785352000073,58.27138906500015],[24.174164259000122,58.276800848],[24.15601647200012,58.27684153900002],[24.138926629000082,58.26797109600015],[24.120860222000058,58.24518463700012],[24.111664259000094,58.241034247000165],[24.094086134000065,58.24469635600003],[24.08350670700011,58.25088125200001],[24.053233269000117,58.27826569200006],[24.007090691000087,58.30052317900011],[23.980235222000115,58.31842682500017],[23.913828972000086,58.33331940300003],[23.873708530000073,58.335191147999986],[23.854665561000076,58.33966705900014],[23.849457227000073,58.34275950700014],[23.838389519000142,58.351385809000035],[23.833506707000083,58.353949286000145],[23.824473504000053,58.35455963700009],[23.818369988000086,58.35175202000007],[23.812836134000065,58.34829336100016],[23.805674675000116,58.34650299700017],[23.79664147200009,58.348822333000136],[23.786875847000147,58.353094794000135],[23.777110222000115,58.3549665390001],[23.768077019000117,58.35024648600002],[23.762054884000094,58.34438711100017],[23.755625847000086,58.340033270000056],[23.748545769000117,58.339056708],[23.740977410000085,58.34308502800015],[23.73487389400009,58.351385809000035],[23.729258660000085,58.362860419000086],[23.725271030000016,58.37490469],[23.72364342500009,58.384711005000106],[23.71892337300008,58.399562893000095],[23.707530144000113,58.407375393000095],[23.694183790000125,58.413153387000065],[23.68336022200012,58.42218659100015],[23.677419467000107,58.43524811400012],[23.67750084700009,58.44554271000005],[23.68336022200012,58.470038153000175],[23.684336785000085,58.499660549000126],[23.67896569100014,58.52415599200007],[23.663828972000143,58.53620026200014],[23.634938998000024,58.528387762000186],[23.622406446000127,58.529120184000114],[23.603200717000078,58.53595612200003],[23.584320509000037,58.54486725500006],[23.573496941000144,58.551947333000115],[23.56625410200013,58.565904039000095],[23.565114780000073,58.57737864800005],[23.5612085300001,58.583156643],[23.546153191000084,58.57990143400014],[23.532725457000083,58.57025788],[23.524750196000127,58.55955638200008],[23.516368035000056,58.554632880000035],[23.50147545700011,58.56248607],[23.498057488000114,58.57221100500015],[23.504405144000113,58.58295319200014],[23.51351972700013,58.593817450000024],[23.518239780000044,58.60374583500013],[23.51246178500008,58.62238190300003],[23.50098717500012,58.647121486000096],[23.49317467500012,58.67340729400003],[23.497731967000078,58.69660065300014],[23.50652103000004,58.70538971600003],[23.51482181100002,58.70669179900001],[23.53589928500014,58.70278554900004],[23.543223504000135,58.704901434000035],[23.546641472000147,58.70962148600013],[23.54623457100007,58.71430084800016],[23.530039910000113,58.722845770000085],[23.527354363000114,58.736151434000085],[23.5330509770001,58.74746328300007],[23.546153191000084,58.747748114000125],[23.58448326900009,58.73794179900009],[23.621755405000073,58.741400458000086],[23.658946160000085,58.74892812700013],[23.697032097000147,58.75116608300011],[23.7166447270001,58.74701569200009],[23.755218946000095,58.73358795799999],[23.771820509000065,58.73069896000006],[23.802500847000147,58.73069896000006],[23.80543053500008,58.733872789000124],[23.806651238000086,58.74095286699999],[23.804860873000106,58.74799225500005],[23.79908287900014,58.75116608300011],[23.783376498000077,58.75584544500005],[23.779551629000053,58.76642487200008],[23.785492384000094,58.77798086100002],[23.79948978000004,58.785345770000035],[23.81617272200009,58.784613348000086],[23.855153842000078,58.77326080900012],[23.874359571000127,58.77167389500009],[23.847422722000147,58.78823476800015],[23.815684441000084,58.799953518000116],[23.784190300000088,58.80097077],[23.75766035200013,58.785345770000035],[23.739512566000116,58.798000393000095],[23.719086134000065,58.79905833500013],[23.676524285000113,58.792181708000115],[23.60336347700013,58.79482656500012],[23.580332879000053,58.792181708000115],[23.56031334700009,58.78583405199999],[23.550140821000042,58.780910549000126],[23.542735222000147,58.775376695000105],[23.536631707000083,58.77448151200004],[23.50489342500012,58.77912018400015],[23.485524936000104,58.77732982000008],[23.42945397200009,58.76483795800005],[23.46656334700009,58.800726630000064],[23.485687696000067,58.809637762000094],[23.518809441000087,58.8126488300001],[23.526133660000113,58.81976959800015],[23.463633660000085,58.86416250200007],[23.455088738000143,58.88300202000003],[23.422373894000117,58.90867747600008],[23.422048373000077,58.92869700700013],[23.44369550900009,58.944037177],[23.51010175900012,58.94159577000014],[23.531911655000073,58.95669179900016],[23.549164259000065,58.95083242400001],[23.56690514400006,58.95014069200009],[23.58448326900009,58.95355866100008],[23.616709832000137,58.96767812700002],[23.624847852000073,58.972601630000085],[23.627696160000113,58.97915273600016],[23.628103061000104,58.99140045800011],[23.621592644000117,59.015326239],[23.60547936300014,59.032660223000086],[23.58350670700011,59.04474518400018],[23.559825066000116,59.05280182500012],[23.572276238000114,59.03974030200013],[23.60189863400006,59.02448151200014],[23.614431186000076,59.01129791900002],[23.605967644000117,59.00849030200008],[23.587575717000078,59.007473049],[23.580332879000053,59.00507233300005],[23.559825066000116,58.99140045800011],[23.55844160200013,58.987941799000126],[23.558604363000086,58.982001044000114],[23.552989129000082,58.97089264500006],[23.543304884000122,58.969875393],[23.537119988000057,58.97435130400007],[23.531993035000138,58.98053620000006],[23.52564537900011,58.983954169000135],[23.461273634000122,58.99237702],[23.434825066000144,59.00381094000014],[23.408376498000052,59.02558014500012],[23.415212436000076,59.02496979400014],[23.42945397200009,59.025864976000044],[23.436289910000085,59.02558014500012],[23.42920983200014,59.04360586100013],[23.434906446000127,59.05609772300016],[23.4803166020001,59.08364492400007],[23.49073326900009,59.08828359600001],[23.501231316000055,59.085435289000074],[23.518239780000044,59.07330963700015],[23.51937910200007,59.124986070000105],[23.486175977000045,59.174139716000056],[23.47087649800008,59.21214427300004],[23.52564537900011,59.230414130000106],[23.53679446700005,59.229681708000086],[23.557790561000072,59.22524648600001],[23.569672071000127,59.224188544000135],[23.57846113400009,59.22630442900008],[23.59278405000009,59.23566315300009],[23.615489129000107,59.241766669000086],[23.627696160000113,59.250067450000145],[23.641856316000116,59.257391669000164],[23.66228274800011,59.25828685100008],[23.715505405000073,59.231675523000106],[23.71851647200009,59.231431382000075],[23.730479363000114,59.230414130000106],[23.74219811300011,59.23940664300013],[23.74293053500014,59.25014883000012],[23.73601321700005,59.25958893400015],[23.72364342500009,59.265082098000086],[23.73487389400009,59.27773672100006],[23.75684655000012,59.283636786],[23.84538821700002,59.28465403900007],[23.88884524800008,59.278753973000114],[23.935557488000143,59.28058502800009],[23.9876408210001,59.290920315],[24.03858483200011,59.29328034100017],[24.08057701900009,59.27130768400014],[24.10010826900009,59.294501044000086],[24.09205162900014,59.31256745000009],[24.028168165000125,59.35765208500008],[24.019379102000073,59.367254950000145],[24.022227410000085,59.37811920800011],[24.034841342000078,59.388657945],[24.048187696000095,59.395086981000084],[24.062998894000145,59.39736562700006],[24.08057701900009,59.39545319200011],[24.108653191000084,59.384833075000174],[24.164886915000096,59.3540713560001],[24.19385826900009,59.34772370000014],[24.221934441000084,59.355169989000146],[24.213389519000145,59.372259833],[24.187266472000086,59.39069245000004],[24.16309655000009,59.40228913000014],[24.182871941000116,59.40875885600003],[24.27125084700006,59.41209544500008],[24.306162957000083,59.41909414300015],[24.317718946000095,59.43097565300009],[24.329600457000055,59.463812567],[24.333832227000073,59.47060781500012],[24.39966881600014,59.47882721600002],[24.422536655000073,59.47744375200013],[24.442149285000113,59.46987539300002],[24.478282097000147,59.44839101800007],[24.49830162900011,59.44383372600011],[24.516774936000047,59.44822825700011],[24.532399936000047,59.45677317900013],[24.54818769600007,59.46295807500008],[24.567149285000085,59.46002838700017],[24.62484785200013,59.43891022300007],[24.64258873800011,59.43642812700012],[24.66049238400009,59.44061920800005],[24.656586134000094,59.44989655200011],[24.640391472000147,59.45905182500009],[24.62183678500014,59.46312083500005],[24.62183678500014,59.47060781500012],[24.64812259200005,59.469224351000044],[24.658539259000037,59.4720726580001],[24.662771030000073,59.481146552],[24.66627037900014,59.49209219000014],[24.674978061000047,59.49603913000015],[24.686289910000113,59.495062567000055],[24.69752037900011,59.49103424700009],[24.71558678500014,59.47589752800009],[24.728282097000086,59.45856354400011],[24.744395379000082,59.44721100500014],[24.772634311000047,59.45010000200006],[24.784190300000148,59.454779364],[24.79004967500009,59.45892975500011],[24.81324303500014,59.48403554900003],[24.815765821000067,59.48932526200009],[24.806813998000024,59.50470612200003],[24.80030358200014,59.51056549700017],[24.791351759000094,59.514715887000115],[24.783539259000122,59.51984284100003],[24.780121290000093,59.52895742400012],[24.779958530000044,59.53839752800003],[24.778981967000078,59.54547760600009],[24.7767033210001,59.55215078300016],[24.772634311000047,59.55996328300014],[24.803477410000085,59.57050202],[24.841644727000073,59.55442942900014],[24.909190300000116,59.51154205900014],[24.934418165000096,59.50804271000005],[25.01221764400009,59.51837799700017],[25.035817905000044,59.515204169000114],[25.077159050000148,59.50104401200017],[25.09782962300008,59.497870184000114],[25.11646569100006,59.503119208],[25.107920769000145,59.52899811400012],[25.122080925000148,59.53949616100009],[25.145518425000148,59.539129950000174],[25.194102410000085,59.522650458000086],[25.407725457000055,59.49103424700009],[25.40943444100006,59.49103424700009],[25.402354363000114,59.51430898600001],[25.41578209700009,59.52708567900005],[25.440114780000073,59.53213125200009],[25.533213738000114,59.532049872000115],[25.543711785000085,59.53514232],[25.543304884000094,59.54222239800005],[25.536143425000148,59.54930247600011],[25.525726759000065,59.55247630399999],[25.497080925000088,59.57086823100003],[25.481944207000083,59.611151434000085],[25.478526238000082,59.65151601800006],[25.484873894000113,59.66982656500012],[25.502452019000145,59.66225820500007],[25.535329623000024,59.628973700000174],[25.553721550000063,59.62140534100003],[25.575043165000125,59.61688873900009],[25.59205162900011,59.60602448100009],[25.622325066000087,59.580471096],[25.644541863000143,59.57184479400008],[25.676768425000088,59.56606679900013],[25.705902540000064,59.56928131700001],[25.718516472000115,59.58759186400005],[25.71078535200013,59.60455963700003],[25.69556725400014,59.61591217699999],[25.684825066000112,59.62864817900005],[25.690684441000087,59.649359442000055],[25.68433678500014,59.650213934000156],[25.67530358200014,59.65412018400015],[25.670664910000113,59.655503648000135],[25.694672071000067,59.67088450700008],[25.72535241000014,59.665838934000064],[25.780528191000087,59.63568756700011],[25.773122592000107,59.62824127800014],[25.78541100400014,59.615464585000026],[25.79371178500014,59.591213283],[25.807383660000085,59.580471096]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Finland","sov_a3":"FI1","adm0_dif":1,"level":2,"type":"Country","admin":"Finland","adm0_a3":"FIN","geou_dif":0,"geounit":"Finland","gu_a3":"FIN","su_dif":0,"subunit":"Finland","su_a3":"FIN","brk_diff":0,"name":"Finland","name_long":"Finland","brk_a3":"FIN","brk_name":"Finland","brk_group":null,"abbrev":"Fin.","postal":"FIN","formal_en":"Republic of Finland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Finland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":6,"pop_est":5250275,"gdp_md_est":193500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"FI","iso_a2":"FI","iso_a3":"FIN","iso_n3":"246","un_a3":"246","wb_a2":"FI","wb_a3":"FIN","woe_id":23424812,"woe_id_eh":23424812,"woe_note":"Exact WOE match as country","adm0_a3_is":"FIN","adm0_a3_us":"FIN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"FIN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[22.443695509000094,59.85146719000009],[22.427744988000086,59.84951406500012],[22.416026238000114,59.85293203300013],[22.41382897200012,59.861232815000115],[22.421885613000143,59.865668036],[22.427744988000086,59.86591217700014],[22.43376712300011,59.866766669000135],[22.45704186300011,59.87299225500003],[22.480153842000078,59.87433502800008],[22.48812910200013,59.87665436400006],[22.498545769000117,59.87763092700013],[22.51026451900009,59.876288153000054],[22.512868686000104,59.87372467700014],[22.505056186000104,59.868719794000086],[22.443695509000094,59.85146719000009]]],[[[23.920420769000145,59.959418036],[23.90870201900006,59.95380280200002],[23.89600670700011,59.954291083],[23.895681186000072,59.951239325000095],[23.89421634200002,59.949693101000044],[23.8860783210001,59.94798411700004],[23.87077884200005,59.94672272300015],[23.856211785000113,59.95331452000011],[23.850433790000068,59.95258209800009],[23.847422722000147,59.95465729400011],[23.854014519000117,59.96287669500011],[23.870290561000076,59.972805080000015],[23.892263217000078,59.97650788000006],[23.915212436000076,59.973456122000144],[23.92351321700005,59.96930573100012],[23.92009524800005,59.967759507000075],[23.920420769000145,59.959418036]]],[[[22.88005618600002,60.01105377800015],[22.872243686000047,60.006048895000035],[22.859548373000077,60.01141998900006],[22.851084832000108,60.02789948100015],[22.85572350400014,60.04132721600014],[22.88331139400006,60.04311758000013],[22.883799675000148,60.048081772999986],[22.875173373000052,60.05149974200001],[22.8619897800001,60.051906643],[22.855153842000078,60.055568752000156],[22.86329186300011,60.06256745000003],[22.887380405000044,60.06777578300013],[22.91773522200009,60.06867096600003],[22.926605665000068,60.06537506700008],[22.919606967000078,60.0583356790001],[22.916840040000096,60.049221096000124],[22.910980665000068,60.04157135600009],[22.906586134000094,60.038397528000026],[22.90072675900012,60.03754303600011],[22.893402540000125,60.033148505000135],[22.884043816000087,60.019354559000035],[22.88005618600002,60.01105377800015]]],[[[22.449473504000082,60.06647370000004],[22.449717644000117,60.02952708500008],[22.448008660000113,60.01235586100017],[22.442637566000144,59.99750397300009],[22.43580162900014,59.99750397300009],[22.4256291020001,60.00690338700012],[22.409515821000127,60.00934479400014],[22.394541863000086,60.005031643000144],[22.387950066000116,59.994452216000084],[22.382823113000086,59.99258047100012],[22.371429884000122,60.00454336100016],[22.359711134000037,60.02090078300007],[22.353200717000046,60.03229401200003],[22.3494572270001,60.04751211100001],[22.34888756600014,60.06321849199998],[22.35482832100007,60.075628973000015],[22.37061608200011,60.08075592700011],[22.38266035200013,60.07453034100017],[22.383474155000044,60.06183502800008],[22.38721764400009,60.05166250200015],[22.408376498000077,60.05280182500008],[22.40186608200008,60.07575104400008],[22.411794467000078,60.08519114800002],[22.43043053500008,60.08185455900015],[22.449473504000082,60.06647370000004]]],[[[22.96314537900008,60.096869208],[22.957286004000135,60.088853257000046],[22.946787957000083,60.084702867000104],[22.93685957100007,60.083889065],[22.931976759000094,60.08588288000015],[22.933278842000107,60.08974844000014],[22.92790774800005,60.08991120000012],[22.91504967500012,60.084702867000104],[22.898936394000145,60.08100006700006],[22.870371941000144,60.08152903900004],[22.86158287900011,60.08104075700006],[22.84546959700012,60.08222077000009],[22.845062696000127,60.08576080900014],[22.856618686000047,60.09162018400012],[22.86402428500014,60.10081614799999],[22.873301629000082,60.10984935099999],[22.879730665000096,60.11367422100001],[22.891612175000148,60.11908600500006],[22.917002800000063,60.12506745000018],[22.93767337300008,60.124335028000026],[22.950043165000125,60.118638414000074],[22.95753014400009,60.110785223000065],[22.96168053500014,60.104396877000156],[22.96314537900008,60.096869208]]],[[[21.987640821000042,60.11204661699998],[21.971364780000098,60.11139557500003],[21.94385826900009,60.11347077000014],[21.939300977000126,60.11627838700009],[21.92994225400011,60.124579169000086],[21.935720248000077,60.13129303600011],[21.950531446000124,60.135728257000025],[21.962087436000076,60.13788483299999],[21.977224155000073,60.13076406500015],[21.991547071000127,60.129950262000044],[21.999766472000147,60.128485419000164],[22.012380405000044,60.122748114],[22.007334832000083,60.115464585],[21.987640821000042,60.11204661699998]]],[[[21.6373804050001,60.1388207050001],[21.613291863000086,60.12909577000012],[21.63021894600007,60.128485419000164],[21.63697350400011,60.1236839860001],[21.635101759000122,60.11615631700011],[21.62631269600007,60.10736725500005],[21.61312910200013,60.102118231000176],[21.59913170700014,60.102728583000136],[21.57203209700012,60.10736725500005],[21.561778191000116,60.106594143000144],[21.534353061000047,60.10138580900014],[21.524261915000096,60.09780508000007],[21.514414910000056,60.09735748900009],[21.503916863000086,60.102972723000086],[21.49317467500009,60.11017487200011],[21.4822697270001,60.114813544000135],[21.499196811000076,60.12107982],[21.51856530000009,60.12287018400018],[21.55811608200014,60.12164948100015],[21.549001498000052,60.133449611000124],[21.533050977000045,60.13703034100011],[21.49659264400009,60.13532135600009],[21.529795769000117,60.1594098980001],[21.571055535000138,60.170355536],[21.614512566000087,60.16889069200012],[21.654307488000086,60.155829169000135],[21.647471550000063,60.14508698100004],[21.6373804050001,60.1388207050001]]],[[[21.88770592500009,60.18374258000009],[21.88770592500009,60.17633698100009],[21.876475457000083,60.17694733300005],[21.865733269000145,60.176418361000074],[21.85564212300011,60.174139716000106],[21.846039259000122,60.17011139500015],[21.852305535000085,60.167181708000115],[21.867849155000073,60.155829169000135],[21.791514519000145,60.155829169000135],[21.82618248800011,60.149603583],[21.817149285000113,60.14545319200015],[21.807139519000117,60.14252350500011],[21.796560092000078,60.14138418200009],[21.80103600400014,60.13971588700018],[21.805674675000148,60.13532135600009],[21.783213738000143,60.123236395],[21.752126498000052,60.11517975500005],[21.72022545700014,60.113714911],[21.69581139400009,60.12164948100015],[21.704437696000095,60.126898505000135],[21.70687910200013,60.129584052000105],[21.702647332000108,60.14215729400011],[21.717295769000117,60.14838288000008],[21.7225041020001,60.149603583],[21.7225041020001,60.155829169000135],[21.705088738000143,60.16071198100012],[21.70818118600002,60.17177969000006],[21.723480665000096,60.18357982000013],[21.74366295700011,60.19061920799999],[21.79957116000008,60.19660065300011],[21.853526238000086,60.19676341399998],[21.88770592500009,60.18374258000009]]],[[[22.323741082000083,60.14687734600013],[22.298675977000073,60.14687734600013],[22.288340691000144,60.149847723000114],[22.292165561000076,60.15204498900012],[22.292246941000144,60.15631745000003],[22.290782097000086,60.16461823100013],[22.29371178500011,60.170355536],[22.29818769600007,60.17255280200008],[22.299082879000082,60.17593008000009],[22.299327019000117,60.18219635600015],[22.3045353520001,60.18878815300003],[22.3131616550001,60.191961981000084],[22.375010613000114,60.204046942],[22.385590040000068,60.19525788000011],[22.36793053500014,60.17739492400015],[22.344248894000117,60.16885000200013],[22.31999759200005,60.16404857000005],[22.31910241000014,60.16010163000005],[22.333262566000144,60.15403880400007],[22.33692467500012,60.148504950000145],[22.323741082000083,60.14687734600013]]],[[[21.39437910200013,60.19086334800014],[21.44890384200002,60.19061920799999],[21.44890384200002,60.18374258000009],[21.409353061000076,60.18451569200003],[21.394216342000078,60.178656317000055],[21.38738040500007,60.162665106000155],[21.38054446700005,60.162665106000155],[21.372243686000072,60.170355536],[21.357106967000078,60.174465236000124],[21.32569420700014,60.17633698100009],[21.310557488000143,60.179388739],[21.300791863000114,60.18573639500011],[21.289724155000073,60.19086334800014],[21.270681186000076,60.19061920799999],[21.28516686300011,60.20384349200004],[21.30640709700009,60.20970286699999],[21.353282097000147,60.21108633000016],[21.368907097000147,60.19660065300011],[21.39437910200013,60.19086334800014]]],[[[22.00928795700014,60.13727448100006],[21.977712436000047,60.135484117000075],[21.950694207000108,60.14907461100001],[21.93539472700013,60.17633698100009],[21.95020592500012,60.18138255400014],[21.99756920700014,60.19061920799999],[22.026540561000044,60.20575592699999],[22.041758660000113,60.21141185099999],[22.058929884000065,60.21108633000016],[22.07203209700012,60.19676341399998],[22.011241082000083,60.17011139500015],[22.017425977000073,60.16730377800009],[22.03150475400011,60.15851471600003],[22.037852410000113,60.155829169000135],[22.00928795700014,60.13727448100006]]],[[[25.852061394000117,60.199774481000176],[25.83562259200005,60.19603099200004],[25.820648634000094,60.197211005000085],[25.81421959700009,60.20766836100015],[25.82203209700009,60.21629466400007],[25.840586785000085,60.21881745000018],[25.876231316000144,60.217230536000145],[25.86312910200007,60.20425039300015],[25.852061394000117,60.199774481000176]]],[[[22.269297722000147,60.195868231000176],[22.232269727000126,60.184963283000016],[22.209239129000082,60.20425039300015],[22.222422722000115,60.223863023000106],[22.245860222000086,60.243068752000156],[22.271657748000106,60.25299713700015],[22.291758660000085,60.24518463700015],[22.296885613000086,60.22125885600011],[22.269297722000147,60.195868231000176]]],[[[21.597422722000147,60.25702545800011],[21.600433790000068,60.25482819200015],[21.615896030000073,60.25519440300014],[21.62671959700009,60.25259023600016],[21.621592644000145,60.24310944200014],[21.610118035000113,60.23484935100008],[21.606455925000148,60.22825755399999],[21.601735873000052,60.22256094],[21.592295769000145,60.221747137000094],[21.587412957000083,60.22256094],[21.57789147200009,60.22162506700012],[21.56348717500012,60.226223049000154],[21.56226647200009,60.23993561400009],[21.571055535000138,60.25592682500008],[21.58692467500009,60.26935455900017],[21.604665561000076,60.2687848980001],[21.6067814460001,60.26068756700009],[21.597422722000147,60.25702545800011]]],[[[25.633799675000148,60.218329169000086],[25.635996941000116,60.20425039300015],[25.611582879000082,60.21124909100003],[25.603363477000073,60.21539948100015],[25.60816491000008,60.222398179000045],[25.622325066000087,60.238348700000145],[25.59205162900011,60.24258047100006],[25.57016035200007,60.25804271],[25.564463738000086,60.27826569200011],[25.581716342000107,60.29637278900013],[25.598317905000044,60.29071686400012],[25.684418165000125,60.24518463700015],[25.677012566000144,60.238348700000145],[25.65992272200009,60.234442450000145],[25.643728061000047,60.22809479400003],[25.633799675000148,60.218329169000086]]],[[[22.833506707000083,60.193060614000125],[22.833994988000086,60.18207428600009],[22.840342644000117,60.17011139500015],[22.833506707000083,60.16925690300006],[22.828868035000085,60.16714101800012],[22.824554884000065,60.16461823100013],[22.819346550000063,60.162665106000155],[22.825043165000068,60.16144440300014],[22.840342644000117,60.155829169000135],[22.83570397200009,60.14594147300012],[22.83301842500012,60.14215729400011],[22.846853061000104,60.11102936400012],[22.8131616550001,60.08209870000012],[22.730479363000143,60.04657623900011],[22.730479363000143,60.03974030200011],[22.73975670700008,60.04010651200004],[22.745778842000107,60.03847890800002],[22.75798587300008,60.03229401200003],[22.74822024800005,60.026190497000144],[22.735118035000056,60.00861237200003],[22.7298283210001,60.00495026200015],[22.705414259000122,60.00690338700012],[22.69483483200008,60.005113023000135],[22.682139519000117,59.99750397300009],[22.669200066000116,60.01630280200013],[22.6549585300001,60.03229401200003],[22.64625084700012,60.021918036000145],[22.6139429050001,60.00165436400012],[22.60840905000009,60.00014883000007],[22.6053166020001,59.99591705900015],[22.606455925000148,59.9845238300001],[22.600271030000073,59.9845238300001],[22.601898634000094,59.99848053600005],[22.59896894600007,60.008042710000055],[22.591481967000107,60.01093170800008],[22.579112175000148,60.00495026200015],[22.574880405000044,60.01703522300006],[22.580821160000085,60.024603583000115],[22.589610222000147,60.03278229400003],[22.59343509200005,60.04657623900011],[22.581553582000108,60.03864166900017],[22.54623457100007,60.02081940300009],[22.529958530000044,60.008246161],[22.486338738000143,60.0018578150001],[22.469899936000047,59.99750397300009],[22.469574415000125,60.02366771000013],[22.47169030000012,60.03563060100008],[22.477305535000113,60.04657623900011],[22.471446160000085,60.05898672100007],[22.473399285000138,60.07123444200011],[22.476328972000147,60.08222077000009],[22.47364342500009,60.090969143000066],[22.461761915000125,60.09756094000012],[22.434825066000144,60.10512929900009],[22.42212975400011,60.114813544000135],[22.443044467000046,60.11871979400006],[22.480479363000082,60.13231028900002],[22.500824415000096,60.13532135600009],[22.600271030000073,60.13532135600009],[22.600271030000073,60.14215729400011],[22.415212436000104,60.149603583],[22.426117384000065,60.17133209800006],[22.433929884000065,60.19940827000006],[22.448090040000096,60.221380927000084],[22.477305535000113,60.22467682500012],[22.455902540000096,60.20001862200002],[22.4510197270001,60.18854401200018],[22.466481967000046,60.18374258000009],[22.566579623000077,60.193304755000085],[22.602061394000145,60.20636627800015],[22.620616082000055,60.21108633000016],[22.81495201900009,60.22699616100008],[22.84351647200009,60.241766669000135],[22.865733269000145,60.265326239000025],[22.890961134000094,60.285549221000124],[22.920746290000096,60.29669830900015],[22.95639082100007,60.2929548200001],[22.94947350400014,60.27045319200011],[22.930430535000056,60.25722890800008],[22.90642337300011,60.24746328300013],[22.88453209700009,60.23529694200006],[22.877452019000117,60.22565338700009],[22.873057488000143,60.21552155200014],[22.866872592000078,60.207464911],[22.83985436300011,60.20111725500009],[22.833506707000083,60.193060614000125]]],[[[21.983164910000085,60.28497955900015],[21.97681725400014,60.28457265800015],[21.97291100400014,60.28534577000009],[21.979014519000145,60.28925202000006],[21.99634850400014,60.296128647999986],[22.008311394000145,60.29730866100003],[22.00603274800008,60.292141018],[21.995778842000078,60.28729889500011],[21.983164910000085,60.28497955900015]]],[[[21.959808790000096,60.31216054900006],[21.973806186000047,60.309312242000125],[21.975352410000085,60.302557684000085],[21.956879102000073,60.2813988300001],[21.944590691000112,60.277085679],[21.92595462300011,60.27728913000014],[21.909678582000083,60.28009674700009],[21.89600670700014,60.28969961100007],[21.88493899800011,60.289496161000116],[21.875336134000122,60.30487702000006],[21.879730665000125,60.31053294500005],[21.895192905000044,60.31061432500003],[21.908539259000065,60.309393622000115],[21.925466342000046,60.31264883000016],[21.959808790000096,60.31216054900006]]],[[[22.33961022200009,60.28620026200018],[22.337168816000144,60.274481512000094],[22.33179772200009,60.269435940000065],[22.312836134000094,60.26569245000003],[22.305186394000145,60.26675039300009],[22.297699415000096,60.27073802300005],[22.289805535000113,60.273138739],[22.281504754000135,60.26911041900002],[22.27759850400014,60.266302802],[22.26539147200006,60.26007721600002],[22.260996941000084,60.258856512000094],[22.2155054050001,60.25311920800014],[22.200856967000107,60.25433991100005],[22.216644727000045,60.26569245000003],[22.203949415000096,60.27631256700006],[22.181162957000055,60.28131745000011],[22.156993035000138,60.28172435100011],[22.140879754000082,60.278713283000016],[22.181895379000082,60.278713283000016],[22.163340691000087,60.25922272300012],[22.136892123000106,60.262396552],[22.10962975400011,60.27130768400003],[22.08936608200011,60.26911041900002],[22.080088738000143,60.26947663000005],[22.076670769000145,60.28351471600011],[22.0838322270001,60.301459052000055],[22.10678144600007,60.31346263200008],[22.132009311000047,60.31565989800007],[22.24976647200009,60.31146881700011],[22.32129967500012,60.29706452000006],[22.33961022200009,60.28620026200018]]],[[[22.428965691000116,60.33392975500015],[22.44385826900006,60.33323802299999],[22.457530144000117,60.3341332050001],[22.46900475400014,60.33152903899999],[22.477305535000113,60.320949611000124],[22.454437696000127,60.30890534100002],[22.42530358200005,60.299058335000026],[22.394786004000107,60.29315827000007],[22.36744225400014,60.2929548200001],[22.37452233200011,60.29922109600007],[22.379893425000063,60.306097723000065],[22.387950066000116,60.320949611000124],[22.369883660000085,60.31452057500004],[22.350596550000148,60.313666083000115],[22.312836134000094,60.320949611000124],[22.329356316000055,60.33734772300014],[22.350271030000044,60.347845770000035],[22.3737085300001,60.35342031500012],[22.39820397200012,60.355047919000135],[22.40186608200008,60.353094794000086],[22.401703321000124,60.34861888200013],[22.400645379000082,60.34398021000011],[22.401621941000144,60.341376044000114],[22.428965691000116,60.33392975500015]]],[[[22.20215905000009,60.3432070980001],[22.191091342000078,60.341742255000106],[22.170176629000107,60.34418366100006],[22.15723717500009,60.351874091000084],[22.157074415000125,60.3583031270001],[22.16423587300008,60.36163971600002],[22.255707227000098,60.374172268000116],[22.284922722000147,60.37498607000013],[22.299652540000125,60.36758047100016],[22.28956139400009,60.35797760600014],[22.20215905000009,60.3432070980001]]],[[[22.207530144000145,60.37555573100009],[22.112478061000076,60.35293203300012],[22.10425866000014,60.35415273600015],[22.12208092500012,60.371649481000084],[22.137868686000072,60.37909577000009],[22.146820509000122,60.38043854400017],[22.206228061000072,60.38255442899999],[22.207530144000145,60.37555573100009]]],[[[21.352305535000085,60.37042877800008],[21.357106967000078,60.35814036700013],[21.35531660200007,60.35179271],[21.35279381600006,60.35162995000003],[21.345713738000114,60.35382721600002],[21.33838951900009,60.353094794000086],[21.333669467000107,60.35602448100012],[21.333994988000114,60.36298248900003],[21.33106530000009,60.365179755],[21.323741082000083,60.36668528900005],[21.303884311000076,60.36424388200011],[21.294444207000083,60.37051015800007],[21.296153191000087,60.37759023600013],[21.302989129000082,60.38369375200001],[21.307790561000076,60.38959381700015],[21.31983483200008,60.39150625200001],[21.33806399800008,60.38336823100009],[21.352305535000085,60.37042877800008]]],[[[26.548594597000115,60.37836334800015],[26.538340691000116,60.37807851800004],[26.52613366000014,60.38515859600007],[26.507172071000127,60.40346914300012],[26.51343834700006,60.41128164300013],[26.560883009000094,60.41681549700015],[26.57471764400009,60.42177969],[26.5807397800001,60.427394924],[26.58025149800011,60.43463776200003],[26.58497155000012,60.441066799000126],[26.59343509200005,60.44594961100002],[26.602061394000145,60.44651927299999],[26.64405358200014,60.43187083500008],[26.652598504000082,60.42690664300004],[26.649668816000144,60.421535549000154],[26.63648522200009,60.414862372000115],[26.573090040000068,60.40534088700009],[26.558929884000037,60.397406317000154],[26.548594597000115,60.37836334800015]]],[[[21.950368686000076,60.40216705900003],[21.950368686000076,60.39598216399998],[21.921071811000047,60.40119049700017],[21.906993035000113,60.40176015800013],[21.894541863000082,60.39598216399998],[21.907969597000086,60.39044830900015],[21.936778191000116,60.38263580900014],[21.950368686000076,60.37555573100009],[21.942230665000064,60.36810944200012],[21.97486412900011,60.36945221600011],[21.988617384000122,60.36591217700013],[21.99756920700014,60.355047919000135],[21.97331790500007,60.347845770000035],[21.963389519000145,60.347601630000085],[21.979502800000116,60.34259674700003],[21.987966342000078,60.34125397300013],[21.99756920700014,60.341376044000114],[21.99756920700014,60.33392975500015],[21.9796655610001,60.32859935100008],[21.960622592000107,60.327541408],[21.941091342000107,60.32957591400004],[21.9217228520001,60.33392975500015],[21.918711785000113,60.332668361000046],[21.91382897200012,60.32941315300017],[21.907888217000107,60.326727606000084],[21.90137780000012,60.32709381700012],[21.900726759000065,60.32953522300014],[21.901703321000127,60.339016018000144],[21.90137780000012,60.341376044000114],[21.879242384000122,60.35089752800011],[21.868418816000144,60.353949286],[21.837412957000108,60.35757070500016],[21.814463738000114,60.36424388200011],[21.794118686000047,60.37396881700006],[21.78532962300008,60.385443427000105],[21.79224694100006,60.39695872600005],[21.808848504000107,60.40521881700011],[21.828868035000085,60.40961334800013],[21.846039259000122,60.4096540390001],[21.846039259000122,60.416489976000136],[21.79835045700014,60.443793036000024],[21.801931186000044,60.45677317900011],[21.808116082000083,60.466701565],[21.81788170700014,60.471991278000175],[21.832367384000094,60.47113678600009],[21.848399285000085,60.46381256700009],[21.89234459700009,60.44920482000005],[21.90137780000012,60.440375067],[21.904633009000065,60.43162669500013],[21.91285241000014,60.426459052000105],[21.923024936000104,60.42397695500009],[21.93197675900012,60.42332591400004],[21.950368686000076,60.40216705900003]]],[[[21.700694207000137,60.45970286700013],[21.68799889400009,60.45530833500014],[21.681651238000143,60.464911200000024],[21.69092858200011,60.48407623900008],[21.714203321000127,60.508612372000115],[21.74187259200002,60.52643463700018],[21.764170769000145,60.525783596000124],[21.760508660000113,60.51203034100003],[21.750824415000068,60.50165436400012],[21.725922071000124,60.48167552300005],[21.71509850400011,60.47089264500012],[21.700694207000137,60.45970286700013]]],[[[21.324880405000044,60.482082424000154],[21.319102410000056,60.48167552300005],[21.300140821000067,60.48773834800012],[21.265961134000065,60.490057684000085],[21.25025475400011,60.49843984600006],[21.260590040000096,60.51972077000011],[21.25294030000009,60.53139883000012],[21.23845462300002,60.541937567],[21.22917728000007,60.559881903000054],[21.25025475400011,60.559881903000054],[21.278493686000076,60.54230377800012],[21.30494225400014,60.518947658000016],[21.30762780000012,60.50958893400017],[21.324880405000044,60.482082424000154]]],[[[21.461924675000116,60.539374091000084],[21.4822697270001,60.525783596000124],[21.477793816000144,60.52521393400015],[21.474782748000052,60.52407461100013],[21.470713738000086,60.52374909100011],[21.46314537900014,60.525783596000124],[21.45850670700011,60.51609935100008],[21.456309441000116,60.50678131700012],[21.457530144000117,60.49852122600006],[21.46314537900014,60.49225495000009],[21.446462436000104,60.49335358300014],[21.433604363000057,60.48908112200003],[21.430674675000148,60.481146552000055],[21.442637566000087,60.47113678600009],[21.41765384200005,60.477687893000066],[21.39226321700005,60.48997630400011],[21.371267123000077,60.50836823100015],[21.360118035000085,60.5331891950001],[21.346934441000116,60.522894598],[21.336110873000024,60.51943594],[21.328623894000145,60.52533600500014],[21.32593834700009,60.54315827000004],[21.33383222700007,60.557359117000125],[21.35254967500012,60.56183502800009],[21.394216342000078,60.559881903000054],[21.410980665000096,60.54291413000008],[21.461924675000116,60.539374091000084]]],[[[21.2986759770001,60.56732819200011],[21.28101647200009,60.56635163000014],[21.273285352000073,60.57282135600014],[21.26978600400008,60.5816917990001],[21.264414910000113,60.587836005000085],[21.244395379000135,60.590806382],[21.233164910000138,60.59389883000007],[21.222911004000107,60.60146719000012],[21.213877800000116,60.616359768000066],[21.219086134000122,60.62262604400003],[21.243418816000087,60.62872955900012],[21.249196811000047,60.635687567],[21.253265821000095,60.643500067],[21.25928795700011,60.64752838700015],[21.270681186000076,60.64305247599999],[21.271494988000086,60.63446686400009],[21.27491295700008,60.62677643400015],[21.281260613000114,60.62030670800005],[21.29118899800011,60.61513906500015],[21.28337649800005,60.60089752800015],[21.27833092500009,60.58612702000006],[21.281504754000082,60.575628973],[21.2986759770001,60.57416413000014],[21.2986759770001,60.56732819200011]]],[[[21.224619988000114,60.85028717700014],[21.226573113000086,60.84711334800006],[21.235362175000144,60.84861888200011],[21.242035352000098,60.84821198100011],[21.24586022200012,60.84601471600003],[21.251963738000114,60.84711334800006],[21.259532097000147,60.85309479400008],[21.267344597000147,60.85106028900007],[21.267588738000086,60.83779531500013],[21.26319420700011,60.830267645000056],[21.25017337300011,60.83295319200014],[21.209808790000068,60.84528229400008],[21.205332879000082,60.84324778900007],[21.202403191000084,60.844916083000086],[21.201182488000143,60.8482933610001],[21.19548587300008,60.852240302],[21.186289910000113,60.856512762000094],[21.189463738000057,60.86054108300005],[21.206553582000108,60.86318594000015],[21.22152754000004,60.85895416900002],[21.224619988000114,60.85028717700014]]],[[[21.32593834700009,60.88947174700017],[21.31812584700009,60.88019440300011],[21.297373894000085,60.879136460000055],[21.2752384770001,60.883286851000015],[21.264414910000113,60.88202545799999],[21.231700066000087,60.88202545799999],[21.21656334700009,60.88410065300012],[21.202403191000084,60.88947174700017],[21.227793816000087,60.89972565300008],[21.276621941000087,60.889105536000066],[21.2986759770001,60.895697333000115],[21.295258009000094,60.899644273000106],[21.293793165000125,60.902980861000124],[21.29281660200013,60.906154690000015],[21.29118899800011,60.90997955900013],[21.297373894000085,60.912298895000085],[21.30640709700009,60.91933828300016],[21.312266472000147,60.923000393],[21.283213738000086,60.94281647300012],[21.264821811000047,60.94961172100015],[21.243418816000087,60.95087311400006],[21.270030144000117,60.96796295799999],[21.285004102000073,60.97199127800017],[21.30494225400014,60.97138092700011],[21.321950717000107,60.956244208000115],[21.337087436000104,60.946722723000114],[21.374278191000087,60.93040599200002],[21.354746941000116,60.91986725500014],[21.338552280000073,60.91669342700008],[21.32789147200012,60.910142319999984],[21.32593834700009,60.88947174700017]]],[[[21.389170769000145,61.192206122000115],[21.421885613000082,61.17674388199999],[21.429372592000046,61.17300039300015],[21.431651238000114,61.171454169000114],[21.42359459700009,61.172105210000055],[21.38884524800011,61.18097565300011],[21.36939537900011,61.176092841000056],[21.352386915000068,61.17601146000005],[21.34669030000009,61.17755768400009],[21.348155144000145,61.17788320500004],[21.34978274800008,61.17804596600008],[21.347178582000083,61.181870835],[21.342946811000047,61.190619208000086],[21.346446160000138,61.19627513200008],[21.353526238000082,61.197455145],[21.357432488000086,61.19977448100015],[21.356781446000127,61.202582098],[21.363129102000073,61.20856354400002],[21.380056186000076,61.214016018000066],[21.391368035000138,61.209621486000074],[21.385752800000148,61.20099518400018],[21.389170769000145,61.192206122000115]]],[[[21.507823113000086,61.61806875200016],[21.500987175000063,61.617743231000034],[21.4783634770001,61.62083567900011],[21.461924675000116,61.626166083000086],[21.459971550000144,61.629339911000145],[21.470957879000107,61.630316473000114],[21.484548373000077,61.64044830900017],[21.52125084700009,61.633978583000086],[21.523936394000145,61.63312409100016],[21.526133660000138,61.62909577],[21.521983269000117,61.62543366100014],[21.51465905000012,61.62494538000006],[21.510508660000085,61.622219143000095],[21.507823113000086,61.61806875200016]]],[[[21.215993686000044,62.97516510600009],[21.221202019000117,62.96137116100009],[21.22193444100014,62.951361395],[21.21656334700009,62.94708893400017],[21.20850670700014,62.94623444200009],[21.191416863000114,62.953924872000115],[21.182871941000087,62.9501000020001],[21.16814212300011,62.94599030200014],[21.146657748000077,62.953273830000164],[21.135996941000144,62.96295807500012],[21.13648522200012,62.967230536000116],[21.141856316000087,62.96824778899998],[21.14820397200012,62.96552155200011],[21.15056399800008,62.96356842700009],[21.15479576900009,62.96759674700006],[21.159353061000047,62.97540924700003],[21.152679884000094,62.97968170800014],[21.140391472000115,62.984564520000035],[21.13184655000009,62.99282461100011],[21.13038170700014,63.000799872000144],[21.136241082000083,63.0065778670001],[21.1451929050001,63.010158596000096],[21.151621941000116,63.01032135600014],[21.155121290000125,63.00682200700006],[21.159841342000107,63.00433991100014],[21.184743686000076,62.999416408000066],[21.195648634000122,62.99437083500014],[21.207367384000122,62.986151434000064],[21.215993686000044,62.97516510600009]]],[[[21.078949415000125,63.28778717700014],[21.120290561000076,63.2719587260001],[21.159434441000116,63.27374909100008],[21.199473504000135,63.28070709800009],[21.243418816000087,63.2809919290001],[21.243418816000087,63.27480703300013],[21.227224155000044,63.27163320500007],[21.215179884000122,63.26386139500009],[21.195078972000147,63.239406643000116],[21.1979272800001,63.231594143000144],[21.199473504000135,63.23029205900006],[21.198903842000078,63.23016998900008],[21.195078972000147,63.22577545799999],[21.209483269000117,63.22138092700011],[21.264414910000113,63.21954987200002],[21.272227410000113,63.217108466000084],[21.279470248000052,63.21308014500011],[21.28679446700005,63.21137116100011],[21.294932488000143,63.215806382],[21.29786217500009,63.22304922100012],[21.294606967000046,63.22890859600006],[21.2903751960001,63.234198309000035],[21.29118899800011,63.239406643000116],[21.315765821000127,63.251939195000126],[21.355967644000117,63.260728257000025],[21.3963322270001,63.260687567000026],[21.42212975400011,63.24681224200013],[21.41521243600002,63.23346588700012],[21.41480553500011,63.22044505400011],[21.419606967000107,63.20868561400014],[21.428396030000073,63.198431708000115],[21.404551629000082,63.19253164300009],[21.377452019000145,63.19013092700015],[21.3639429050001,63.19367096600002],[21.38054446700005,63.20587799700008],[21.362803582000137,63.206244208000115],[21.29118899800011,63.17792389500006],[21.29118899800011,63.171128648000135],[21.298187696000095,63.17023346600014],[21.31853274800011,63.16494375200007],[21.301524285000138,63.15615469],[21.28345787900011,63.151922919000086],[21.243418816000087,63.15070221600017],[21.23113040500004,63.15839264500009],[21.21924889400009,63.16962311400008],[21.207367384000122,63.18333567900011],[21.188812696000127,63.19159577],[21.175791863000114,63.18829987200015],[21.161631707000108,63.18195221600003],[21.14722741000014,63.182196356000176],[21.133555535000113,63.198431708000115],[21.154551629000135,63.198431708000115],[21.154551629000135,63.20587799700008],[21.141612175000148,63.210679429],[21.11312910200013,63.227484442],[21.102793816000116,63.235988674000126],[21.096527540000068,63.245510158000044],[21.08179772200009,63.27728913000008],[21.078949415000125,63.28778717700014]]],[[[22.033457879000135,63.322088934000085],[22.06080162900011,63.302150783000016],[22.05811608200014,63.29486725499999],[22.04664147200009,63.28217194200015],[22.02979576900009,63.27741120000005],[22.01384524800008,63.27773672100007],[22.007090691000144,63.2810733090001],[22.008148634000094,63.28823476800012],[22.004567905000044,63.29116445500016],[21.997813347000086,63.28900788000005],[21.995616082000108,63.28473541900014],[21.994639519000113,63.28009674700002],[21.989919467000103,63.277573960000026],[21.98438561300011,63.27716705900009],[21.97828209700012,63.28001536700005],[21.974375847000115,63.28681061400006],[21.977712436000047,63.298651434000035],[21.989024285000113,63.310370184000114],[22.00228925900006,63.313421942],[22.02182050900012,63.30719635600014],[22.029958530000073,63.30841705900014],[22.026215040000125,63.313421942],[22.011973504000107,63.320298570000105],[22.00757897200012,63.324896552000055],[22.012705925000148,63.326117255000085],[22.01856530000009,63.32623932500006],[22.022227410000138,63.323431708],[22.026215040000125,63.32221100500008],[22.033457879000135,63.322088934000085]]],[[[22.2389429050001,63.31378815300003],[22.24626712300011,63.30707428600008],[22.244476759000122,63.30247630400014],[22.234385613000143,63.29315827],[22.222666863000143,63.27997467700005],[22.208669467000107,63.27326080900009],[22.187266472000147,63.27350495000014],[22.156504754000082,63.28856028900007],[22.1144311860001,63.284165757000075],[22.114105665000096,63.28221263200013],[22.139008009000122,63.279120184000064],[22.15853925900009,63.27407461100002],[22.163096550000148,63.26333242400001],[22.15723717500009,63.256537177000084],[22.14869225400008,63.25580475500014],[22.14405358200014,63.25413646000011],[22.144216342000107,63.25141022300006],[22.136485222000086,63.250555731000155],[22.085459832000108,63.261786200000145],[22.079356316000112,63.266302802000105],[22.083181186000047,63.27045319200014],[22.078461134000122,63.27448151200012],[22.067067905000073,63.27899811400009],[22.06869550900009,63.28388092700013],[22.075694207000083,63.286200262000094],[22.0833439460001,63.28803131700009],[22.08887780000012,63.29462311400006],[22.08277428500014,63.304185289000046],[22.072764519000145,63.312811591000134],[22.069183790000068,63.31854889500012],[22.07862389400009,63.32160065300012],[22.092621290000068,63.32306549700018],[22.110199415000096,63.32892487200003],[22.12354576900009,63.326361395000035],[22.132090691000116,63.3259138040001],[22.1399845710001,63.32221100500008],[22.14795983200014,63.315578518],[22.158213738000086,63.311021226000086],[22.16358483200014,63.31171295799999],[22.164398634000037,63.31671784100014],[22.16968834700012,63.31915924700017],[22.178558790000068,63.31785716399999],[22.186289910000085,63.314764716000084],[22.190603061000076,63.31053294499999],[22.195648634000122,63.30975983300006],[22.202647332000083,63.312811591000134],[22.208018425000148,63.31793854400014],[22.21070397200012,63.325384833000136],[22.215342644000142,63.33295319200008],[22.22169030000009,63.338568427],[22.22632897200012,63.34064362200011],[22.231293165000068,63.33881256700011],[22.235687696000127,63.33124420800008],[22.237071160000113,63.32550690300011],[22.2389429050001,63.31378815300003]]],[[[21.358246290000096,63.315659897999986],[21.31853274800011,63.28778717700014],[21.315277540000068,63.304022528000175],[21.305918816000116,63.30589427300005],[21.292653842000075,63.302191473],[21.27751712300008,63.301459052000084],[21.22917728000007,63.328802802000055],[21.23406009200005,63.33283112200011],[21.238780144000145,63.334377346000146],[21.25025475400011,63.335028387000094],[21.276621941000087,63.34076569200008],[21.311045769000117,63.35561758000012],[21.34595787900014,63.363755601000044],[21.374278191000087,63.34926992400001],[21.373871290000096,63.333400783000066],[21.358246290000096,63.315659897999986]]],[[[22.06983483200011,63.385199286],[22.0794376960001,63.383490302],[22.089121941000144,63.383937893000095],[22.096039259000065,63.383490302],[22.096039259000065,63.38031647300012],[22.08887780000012,63.377630927000055],[22.0794376960001,63.376857815000115],[22.08025149800011,63.37360260600017],[22.085134311000076,63.36701080900009],[22.076182488000143,63.360052802000105],[22.05933678500014,63.357855536000116],[22.026866082000083,63.366156317],[22.012705925000148,63.36371491100006],[22.001963738000143,63.35419342700008],[21.997080925000148,63.34845612200009],[21.984141472000147,63.34113190300009],[21.966075066000144,63.333156643000116],[21.957204623000077,63.331610419000086],[21.94898522200009,63.33380768400009],[21.947276238000086,63.33795807500003],[21.94898522200009,63.34003327000014],[21.951345248000052,63.343654690000015],[21.9562280610001,63.34931061400001],[21.961192254000082,63.35382721600014],[21.966075066000144,63.35980866100009],[21.971690300000148,63.36513906500012],[21.97820071700005,63.36888255400007],[21.983653191000087,63.37327708500005],[21.986582879000082,63.377875067],[21.996429884000122,63.38471100500011],[22.01465905000009,63.38540273600013],[22.03028405000009,63.38336823100012],[22.045909050000144,63.387518622000144],[22.059825066000144,63.38837311400006],[22.064952019000145,63.38703034100016],[22.06983483200011,63.385199286]]],[[[22.79566491000014,63.77765534100017],[22.800303582000083,63.77606842700014],[22.80445397200012,63.77822500200013],[22.807953321000095,63.77952708500013],[22.823415561000047,63.77924225500002],[22.828868035000085,63.77631256700009],[22.825531446000127,63.77285390800008],[22.821136915000064,63.771470445000105],[22.82007897200009,63.76886627800012],[22.819102410000113,63.763251044000114],[22.81519616000014,63.75649648600008],[22.812022332000083,63.75348541900017],[22.809418165000068,63.74713776200003],[22.80209394600007,63.73818594],[22.79322350400011,63.740220445000126],[22.782074415000096,63.744818427000084],[22.77719160200013,63.74176666900017],[22.780446811000076,63.73432038],[22.7760522800001,63.728176174000126],[22.764496290000068,63.72703685099999],[22.756602410000085,63.72272370000008],[22.739593946000124,63.72052643400009],[22.719248894000145,63.726629950000174],[22.70289147200012,63.73639557500003],[22.692230665000096,63.751125393],[22.687022332000083,63.75511302299999],[22.68311608200011,63.758612372000165],[22.681488477000073,63.76341380400007],[22.7029728520001,63.76976146],[22.711436394000142,63.77338288000006],[22.719574415000068,63.77887604400008],[22.737315300000148,63.785589911000145],[22.76384524800011,63.79144928600009],[22.781748894000085,63.790432033],[22.78980553500011,63.78375885600015],[22.79566491000014,63.77765534100017]]],[[[24.873012834000118,65.06583442900016],[24.882842351000136,65.05913917800014],[24.906521871000052,65.06048224000007],[24.936266979000035,65.05914173300009],[24.993436910000128,65.0551035720001],[25.033586393000064,65.05751195800015],[25.061817650000105,65.04347960300005],[25.02800871900004,65.0346188240001],[24.962218371000088,65.034778911],[24.8773760980001,65.04525499300003],[24.819656865000127,65.04328027800005],[24.801552192000145,65.02426616500016],[24.7223665270001,65.00346692900017],[24.75077494700008,64.9759656],[24.812388274000114,64.97919362900002],[24.827321811000076,64.97296784100014],[24.816091342000078,64.96808502800017],[24.804698113000114,64.96723053600007],[24.792816602000073,64.96771881700006],[24.780121290000093,64.96678294499999],[24.771250847000147,64.96385325700005],[24.7610783210001,64.95644765800007],[24.752126498000077,64.95311107000003],[24.734711134000122,64.95091380400005],[24.71314537900011,64.95172760600013],[24.70069420700008,64.95815664300007],[24.710622592000078,64.97296784100014],[24.706065300000144,64.97650788000011],[24.69752037900011,64.98663971600008],[24.68392988400006,64.996568101],[24.65837649800008,64.97199127800017],[24.631602410000085,64.96784088700004],[24.59736672200006,64.9925183520001],[24.5790087850001,65.00953603500015],[24.56990039600006,65.02291480200007],[24.56275475400011,65.03717682500009],[24.585785352000073,65.04938385600015],[24.6541901250001,65.08022052600005],[24.740887989000043,65.08327202200007],[24.83450553600011,65.09480030700014],[24.8830955410001,65.08690405900013],[24.89698258400008,65.07241547400004],[24.873012834000118,65.06583442900016]]],[[[27.89729414900006,70.07068532400005],[27.927163127000142,70.053270366],[27.981009969000098,70.00960378100014],[28.167355184000115,69.89433949900003],[28.18926599100007,69.88604543100017],[28.381192260000034,69.85620229100006],[28.37974532000004,69.82235422800005],[28.404550008000086,69.80225209600009],[28.442687215000035,69.79145172200008],[28.48092777500011,69.78571563800001],[28.806075887000077,69.7299567675001],[29.131223999000095,69.67419789700001],[29.147140341000124,69.66391428700001],[29.203157593000157,69.58598622600014],[29.344544311000078,69.46439158200009],[29.229254191000134,69.3768517050001],[28.864780314000114,69.21660308900007],[28.852171265000095,69.20352895200004],[28.844109741000096,69.18125640900017],[28.82695316600012,69.10684234700015],[28.827573283000103,69.090770976],[28.839613892000074,69.08028066000004],[28.954077189000085,69.02726064100011],[28.833464396000096,68.9844725550001],[28.713265015000047,68.96803945000012],[28.456226441000098,68.90013661799999],[28.410234415000104,68.89853464800014],[28.41312829600011,68.88008616200013],[28.426770874000113,68.87057769800005],[28.44423750800007,68.86582346600007],[28.645672241000085,68.87166290300014],[28.728251180000115,68.86504832000007],[28.801476684000107,68.83548940000011],[28.747268107000078,68.76014516200013],[28.7163656000001,68.72795074499999],[28.45994714400012,68.542432353],[28.447906535000044,68.52971995000014],[28.44744144700013,68.51488881500002],[28.46098067300011,68.49106597900014],[28.48092777500011,68.46259226500011],[28.6637589930001,68.20400339800013],[28.690320679000106,68.1831777960001],[28.72721765100005,68.17268748000014],[29.012936645000078,68.127238058],[29.298655639000092,68.08178863600011],[29.33085005700016,68.07269358300006],[29.360150594000203,68.05672556600003],[29.44262618000002,67.99114817400003],[29.44262618000002,67.9910964970001],[29.480866740000096,67.96045237200015],[29.651192261000087,67.82356150300008],[29.713824097000124,67.79250396800013],[30.009413290000143,67.68584381200007],[29.98786421700018,67.67245961600013],[29.977683960000117,67.66222768100015],[29.973446493000072,67.64930857400013],[29.964661499000073,67.58471303300009],[29.959907268000077,67.57158721900011],[29.933448934000094,67.52637034100003],[29.916240682000108,67.50812856100008],[29.519830770000084,67.29816721600012],[29.508461955000115,67.28809031200008],[29.4969897870001,67.27026194300005],[29.49068526200008,67.26297556600014],[29.480866740000096,67.25677439400008],[29.42939701400022,67.23277069200005],[29.100114787000052,66.99126088500005],[29.100114787000052,66.99123504700013],[29.09990808100011,66.99120920800011],[29.09990808100011,66.991131694],[29.051538940000054,66.90780344700006],[29.089159383000098,66.83754933700008],[29.322220093000194,66.68006541000005],[29.36249784200018,66.62655283100018],[29.363974650000074,66.62459076],[29.3923966880001,66.60528961200008],[29.395393920000203,66.59645294300007],[29.396427449000186,66.58663442000001],[29.401336711000084,66.57622161900015],[29.40944991,66.56847015400014],[29.524481648000087,66.49121388800008],[29.534196818000193,66.4740314750001],[29.54619429400017,66.43196931900009],[29.551663452000042,66.41279490200007],[29.569698527000156,66.37817169300014],[29.59321130300023,66.3459255990001],[29.65088220200019,66.28789296500011],[29.792372274000083,66.18087107400005],[29.875364624000127,66.13358713800001],[29.900169311000155,66.10805898100007],[29.920529826000088,66.06862986300014],[29.94884851000009,65.99127024400003],[29.958460327000097,65.97388112400002],[29.997941121000192,65.9315322880001],[30.009723348000104,65.915693462],[30.039282267000228,65.86538645500003],[30.07514571100009,65.82280507500015],[30.08351729300008,65.8046149700001],[30.111732625000144,65.71201080400006],[30.11628015100004,65.6872061160001],[30.11390303500022,65.66550201500003],[30.098503459000227,65.65638112400013],[30.064707071000075,65.66167795899999],[30.00300541100009,65.67813690200013],[29.764260294000138,65.6480870570001],[29.702868693000113,65.62938018900009],[29.73232426000007,65.60870961500008],[29.806738322000143,65.5848609420001],[29.838571004000215,65.56488800100009],[29.82575524900014,65.55196889200006],[29.745450073000114,65.51140289300004],[29.731532793000124,65.49692139899999],[29.72632979300013,65.49150746700003],[29.72632979300013,65.49124908500006],[29.71816491700011,65.45417124500001],[29.73056726000007,65.36536529600006],[29.7201286220002,65.32908844000012],[29.615122111000087,65.26940216100009],[29.580085490000073,65.23539906900004],[29.62669763200003,65.21521942100016],[29.7668441160001,65.21736399300006],[29.833196655000076,65.20501332700009],[29.83929447500012,65.16690195800005],[29.82968265800011,65.15860789],[29.818003784000126,65.15220001300003],[29.80911543800019,65.14522369500007],[29.808185262000084,65.13530181900016],[29.820329223000073,65.12651682600007],[29.83805424000016,65.124811503],[29.850198201000154,65.12150421100002],[29.845598999000085,65.10801666300013],[29.820484253000103,65.09365061500013],[29.667832072000092,65.07794098000006],[29.627317749000127,65.062231344],[29.598378947000157,65.03437774700014],[29.588147013000164,64.99143463200006],[29.633622274000146,64.90715037100007],[29.698321167000106,64.8391441860001],[29.780279989000093,64.79558095400016],[29.877845093000158,64.78483225600003],[30.062536662000042,64.78416046200014],[30.10191410300015,64.775478821],[30.11886397300017,64.76793406200012],[30.120414266000097,64.76157786100009],[30.114936564000203,64.75434316000015],[30.111112508000165,64.74442128500006],[30.109045451000185,64.73165720700008],[30.106823364000117,64.72561106400002],[30.109148803,64.72008168600006],[30.120517619000143,64.7089195760001],[30.13136967000017,64.70121978800002],[30.170540405000082,64.68168609600009],[30.187800334000116,64.66235911100016],[30.180824015000123,64.64277374300003],[30.160411825000068,64.6260822550001],[30.136433960000236,64.61538523400019],[29.965798380000166,64.578643291],[29.95877038600005,64.57487091100008],[29.95484297700008,64.56897979800009],[29.958873739000094,64.56598256500016],[29.965178263000126,64.56443227100013],[29.968485555000115,64.56283030300001],[29.970035848000204,64.545415345],[29.973601521000116,64.53621693999999],[29.980784546000134,64.52676015300001],[29.97892419400014,64.52402130200007],[29.97820072400023,64.52112742200008],[29.978975871000074,64.51833689400003],[29.980784546000134,64.51554636700017],[29.99153324400018,64.51322092700003],[29.993393595000185,64.51074045800006],[29.990499715000198,64.50417755100007],[30.035768269000098,64.49146514900012],[30.070391479000108,64.471879781],[30.062795044000012,64.44841868100004],[30.041039266000123,64.42294220000008],[30.032460978000103,64.39694895500004],[30.052976522000076,64.37808705700012],[30.093129110000092,64.36124054000014],[30.164442586000032,64.34191355400019],[30.321125529000113,64.317677307],[30.370476522000132,64.30083079000003],[30.39926029500023,64.2831057740001],[30.421584513000113,64.2646572880001],[30.44597579000006,64.2507563270001],[30.50343998200017,64.24378000900013],[30.53620284100023,64.23468495700014],[30.558475382000125,64.21969879199999],[30.550258830000104,64.19887318900011],[30.53248213700007,64.17918446900008],[30.53279219600014,64.16254465800016],[30.544781128000093,64.14636993500015],[30.562144409000126,64.12740468400001],[30.586432332000214,64.08466827500008],[30.580489543000198,64.05107859400006],[30.552325887000023,64.02172637900017],[30.509331095000075,63.99149566700008],[30.509331095000075,63.991443990000064],[30.509331095000075,63.99139231400015],[30.328566935000108,63.89599762000013],[30.265573365000105,63.830678609000174],[30.201546265000015,63.79264475600014],[30.051271199000126,63.76375762900001],[29.99843285900013,63.74710038100016],[29.980784546000134,63.74153676400005],[30.001145060000084,63.715336813000036],[30.24247399900017,63.58180491200007],[30.380450073000166,63.53245391900005],[30.441428263000116,63.49157786100015],[30.46106530700015,63.47287099300014],[30.488660522000114,63.46212229500005],[30.820939982000226,63.37566762400014],[30.97493575000007,63.289161276000144],[31.177817424000093,63.225237529000175],[31.20396569800019,63.21268015500005],[31.225669800000073,63.19604034500004],[31.233059530000073,63.17573150700004],[31.234248087000225,63.157231344000095],[31.2407593180001,63.13573394800006],[31.25083622300022,63.11547678600006],[31.26277347800007,63.100593974000034],[31.288508341000153,63.08472930900011],[31.351553589000073,63.06219838500008],[31.38033736200012,63.0479356900001],[31.44446781400015,63.00194366500001],[31.468032267000154,62.991556702000175],[31.48064131700008,62.98633738300007],[31.505446004000106,62.96819895500014],[31.51929528800005,62.94318756100012],[31.535831747000174,62.919519756],[31.569524780000133,62.90592885400012],[31.48064131700008,62.82608876600013],[31.441263875000086,62.78870086700005],[31.4105680750001,62.74653289800001],[31.36333581500011,62.65157745400002],[31.347006063000066,62.629330750000165],[31.302771037000156,62.596025290000014],[31.28406416900023,62.57297760000015],[31.260086304000225,62.524841004000066],[31.24375655100019,62.50334360800004],[31.222155802000227,62.49171641000008],[31.22194909600009,62.49171641000008],[31.22158736100019,62.491587219000124],[31.16861901900009,62.476006775000094],[31.152961059000145,62.46735097300013],[31.14164392100017,62.456524761000125],[31.123350463000094,62.434820659000124],[30.980620158000104,62.35880462700005],[30.967080933000233,62.348185120000075],[30.94186283400009,62.31459543900014],[30.925636433000165,62.30211558100016],[30.907549682000163,62.29289133700015],[30.79380985500003,62.25299713200012],[30.70384118700011,62.21038991300005],[30.665497274000103,62.199822083000164],[30.647720581000073,62.19276825000004],[30.635008178000106,62.18400909400007],[30.607206258000165,62.15127207500008],[30.480702351000073,62.067685445000066],[30.339935751000127,61.99177276700014],[30.339729045000094,61.991669414],[30.339574015000064,61.991669414],[30.14564900500019,61.85046941100007],[29.977683960000117,61.72817128600011],[29.842240030000113,61.66016510000004],[29.8218795170001,61.644584656000106],[29.79805668100019,61.6096513880001],[29.779143107000067,61.59311493000002],[29.635120891000014,61.51110443200004],[29.604270061000218,61.499193014000106],[29.53972619700019,61.48495615700013],[29.51704024200015,61.47506012000004],[29.49905684400008,61.459247132000044],[29.480866740000096,61.4347783410001],[29.463400106000076,61.4138235480001],[29.3183960370001,61.338427633000116],[29.289250529000157,61.316206767],[29.277058696000182,61.30459883400012],[29.262275431,61.290523580000105],[29.203157593000157,61.24590098099999],[29.1300871170001,61.21342234300006],[28.980845581000064,61.16810211200014],[28.926378621000136,61.14794830400017],[28.855478557000083,61.11267913900017],[28.797600952000067,61.09684031200008],[28.781322876000043,61.0869701130001],[28.75016198700007,61.061364442000134],[28.68897709200004,61.02738718700003],[28.670683634000085,61.01247853600016],[28.653837117000105,60.99188547800015],[28.653837117000105,60.99185964000007],[28.65373376400007,60.991756287000115],[28.65373376400007,60.991678772],[28.614563029000124,60.961938985000025],[28.526403036000087,60.95023427400003],[28.48092777500011,60.933465271],[28.33592370600013,60.85938710500007],[28.243939657000027,60.79158762600004],[28.14813155100009,60.757713725000045],[28.003781679000042,60.66422553500003],[27.981009969000098,60.649477438000034],[27.892953328000146,60.60426055900014],[27.807871941000116,60.55304596600003],[27.79118899800008,60.562201239],[27.77759850400011,60.57367584800015],[27.762054884000122,60.58014557500015],[27.739512566000116,60.57416413000014],[27.74317467500009,60.57094961100007],[27.74952233200011,60.563137111000096],[27.75318444100006,60.559881903000054],[27.7361759770001,60.55556875200013],[27.73340905000003,60.54425690300014],[27.740570509000094,60.53058502800003],[27.75318444100006,60.518947658000016],[27.738129102000045,60.513332424],[27.73267662900011,60.512111721],[27.74642988400012,60.5064964860001],[27.75318444100006,60.50584544500005],[27.718435092000107,60.488470770000056],[27.705414259000122,60.48541901200017],[27.636485222000058,60.49225495000009],[27.645762566000112,60.50356679900007],[27.676605665000096,60.511175848000036],[27.691661004000107,60.518947658000016],[27.651703321000042,60.52265045800006],[27.632172071000067,60.521673895000085],[27.615977410000113,60.512111721],[27.608246290000096,60.49994538000011],[27.61085045700011,60.49213288000011],[27.619313998000052,60.48407623900008],[27.62964928500014,60.47113678600009],[27.592458530000073,60.47736237200006],[27.5084741550001,60.513861395],[27.472666863000086,60.50584544500005],[27.482269727000073,60.504299221],[27.486338738000114,60.50193919500005],[27.493174675000034,60.49225495000009],[27.48707116000014,60.48944733300014],[27.478282097000086,60.48167552300005],[27.472666863000086,60.477972723000015],[27.483571811000076,60.47443268400012],[27.493011915000068,60.4702009140001],[27.50074303500008,60.46474844000006],[27.506683790000096,60.457464911000145],[27.456797722000147,60.463690497000115],[27.36931399800011,60.497870184000085],[27.32520592500012,60.50584544500005],[27.248789910000085,60.50787995000017],[27.232432488000086,60.512111721],[27.23080488400006,60.52631256700003],[27.256602410000085,60.5294457050001],[27.308116082000055,60.525783596000124],[27.28492272200012,60.53652578300013],[27.21192467500012,60.559881903000054],[27.227712436000076,60.57957591399999],[27.21461022200009,60.58494700700014],[27.191742384000094,60.57973867400015],[27.177744988000143,60.56732819200011],[27.18384850400011,60.552191473000114],[27.19703209700006,60.53705475500011],[27.200694207000108,60.523260809000114],[27.177744988000143,60.512111721],[27.175791863000086,60.525132554],[27.16968834700009,60.528631903000175],[27.149912957000083,60.525783596000124],[27.13770592500009,60.529038804],[27.124034050000148,60.543524481000034],[27.112559441000116,60.54682038000006],[27.10564212300011,60.54360586100001],[27.095713738000114,60.52920156500015],[27.088389519000113,60.525783596000124],[27.078949415000093,60.528631903000175],[27.062836134000122,60.54291413000008],[27.054372592000078,60.54682038000006],[27.04517662900011,60.54580312700001],[27.033376498000052,60.54181549700002],[27.02442467500012,60.53607819200015],[27.023936394000117,60.529486395000085],[27.027110222000086,60.519924221000096],[27.02076256600006,60.51434967700008],[27.011729363000143,60.50946686400003],[26.99822024800008,60.48802317900007],[26.976898634000122,60.483547268],[26.931407097000143,60.48541901200017],[26.955577019000145,60.46930573100009],[26.96534264400009,60.4584821640001],[26.962412957000083,60.44721100500012],[26.95460045700008,60.44940827],[26.92432701900009,60.466986395000156],[26.9147241550001,60.474554755],[26.823090040000096,60.45774974199999],[26.793630405000044,60.457464911000145],[26.80103600400011,60.463690497000115],[26.806488477000045,60.470526434000114],[26.814707879000135,60.48541901200017],[26.797048373000052,60.48590729400014],[26.776540561000076,60.48285553600006],[26.756846550000144,60.47662995000011],[26.742442254000082,60.46800364800011],[26.739024285000056,60.46088288000006],[26.740977410000113,60.44367096600005],[26.739024285000056,60.436957098000086],[26.73194420700011,60.432928778000026],[26.71062259200005,60.42584870000015],[26.70142662900008,60.419907945000126],[26.68734785200013,60.41815827000015],[26.6692814460001,60.42841217700008],[26.650889519000145,60.44208405200002],[26.635915561000047,60.450628973000114],[26.6170353520001,60.45294830900009],[26.59441165500004,60.452297268000116],[26.577159050000116,60.447333075000095],[26.57447350400014,60.436957098000086],[26.553396030000044,60.433010158000016],[26.527354363000143,60.43988678600011],[26.501963738000114,60.45307038000006],[26.482676629000082,60.46800364800011],[26.474864129000107,60.48725006700015],[26.491465691000144,60.49811432500003],[26.517263217000078,60.50580475500006],[26.53663170700011,60.51552969],[26.563649936000047,60.54336172100006],[26.567637566000116,60.54995351800012],[26.564463738000057,60.57257721600011],[26.56739342500009,60.58095937700007],[26.57984459700009,60.59137604400014],[26.62501061300014,60.60960521000014],[26.6666772800001,60.606431382000075],[26.753184441000087,60.57416413000014],[26.731781446000127,60.612860419000086],[26.699229363000086,60.64020416900014],[26.659190300000148,60.65180084800006],[26.61548912900014,60.64305247599999],[26.591807488000143,60.628566799000154],[26.553314649000125,60.59178294500008],[26.465830925000088,60.50812409100002],[26.456228061000104,60.474554755],[26.4856876960001,60.443793036000024],[26.469411655000073,60.427476304],[26.460703972000086,60.42088450700011],[26.451508009000094,60.416489976000136],[26.42335045700011,60.41632721600017],[26.416351759000037,60.41193268400018],[26.424164259000122,60.39598216399998],[26.41285241000014,60.39801666900011],[26.40259850400011,60.40265534100002],[26.38331139400009,60.416489976000136],[26.38453209700009,60.40485260600012],[26.381195509000065,60.39874909100003],[26.374034050000116,60.39642975500008],[26.36280358200014,60.39598216399998],[26.351410352000073,60.392808335000105],[26.348968946000127,60.38580963700003],[26.348317905000073,60.37872955900015],[26.34205162900014,60.37555573100009],[26.323985222000115,60.383002020000085],[26.310231967000107,60.39940013199999],[26.299164259000065,60.415920315000065],[26.290212436000044,60.42332591400004],[26.278656446000095,60.429144598],[26.262543165000125,60.440985419000135],[26.24561608200014,60.45087311400005],[26.23178144600007,60.450628973000114],[26.229340040000125,60.43842194200014],[26.242930535000085,60.424261786000116],[26.273448113000114,60.40216705900003],[26.178965691000087,60.41063060099999],[26.170420769000145,60.4096540390001],[26.150726759000122,60.39850495000009],[26.14242597700013,60.39598216399998],[26.134450717000078,60.40281810099999],[26.094574415000096,60.42332591400004],[26.062185092000107,60.432277736000074],[26.049164259000122,60.43748607000008],[26.013682488000114,60.46259186400007],[25.98096764400009,60.47577545800003],[25.946299675000116,60.48419830900015],[25.917246941000144,60.48541901200017],[25.917246941000144,60.477972723000015],[25.971853061000104,60.464911200000024],[25.98259524800011,60.45807526200009],[26.00375410200013,60.44049713700015],[26.028981967000078,60.43333567900013],[26.036143425000116,60.42475006700011],[26.039317254000082,60.41449616100001],[26.04004967500012,60.40595123900006],[26.032481316000087,60.40062083499999],[26.017425977000073,60.40167877800015],[26.00684655000012,60.400539455000015],[26.01221764400006,60.38857656500009],[26.02320397200012,60.38068268400012],[26.060557488000086,60.36810944200012],[26.079600457000083,60.35040924700003],[26.088633660000085,60.34393952000012],[26.10141035200013,60.341376044000114],[26.108164910000056,60.33592357000008],[26.106455925000148,60.32404205900012],[26.099864129000082,60.312079169000086],[26.091319207000055,60.30662669500004],[26.04004967500012,60.29979075700014],[26.03882897200012,60.322658596000124],[25.99708092500006,60.354925848000065],[26.005869988000143,60.36810944200012],[25.9935001960001,60.3678246110001],[25.984873894000085,60.36310455900018],[25.97730553500014,60.35773346600003],[25.968028191000087,60.355047919000135],[25.95655358200014,60.35602448100012],[25.94776451900009,60.358872789000074],[25.88835696700005,60.38914622600005],[25.867198113000114,60.397040106000034],[25.842051629000135,60.40216705900003],[25.87769616000008,60.377915757000046],[25.899099155000044,60.36725495000003],[25.917246941000144,60.36127350500003],[25.907237175000148,60.340969143],[25.884287957000083,60.32001373900006],[25.88306725400014,60.30662669500004],[25.8924259770001,60.291571356000034],[25.921234571000127,60.26528554900004],[25.930186394000145,60.24518463700015],[25.909353061000076,60.24616120000014],[25.894867384000122,60.24957916900014],[25.882660352000045,60.25592682500008],[25.868825717000046,60.26569245000003],[25.876231316000144,60.27252838700003],[25.86101321700005,60.284002997000094],[25.841481967000078,60.287746486000025],[25.820323113000086,60.28888580900014],[25.800547722000147,60.2929548200001],[25.77035566500012,60.31415436400003],[25.753754102000073,60.32074616100008],[25.739024285000085,60.31346263200008],[25.745371941000116,60.295803127000156],[25.780935092000078,60.282660223],[25.84888756600006,60.26569245000003],[25.780528191000087,60.25141022300012],[25.780528191000087,60.24518463700015],[25.761973504000082,60.24038320500007],[25.735524936000104,60.247259833],[25.65577233200014,60.293036200000095],[25.64966881600006,60.29979075700014],[25.65088951900009,60.31346263200008],[25.658539259000122,60.3227399760001],[25.67058353000004,60.32746002800003],[25.64966881600006,60.33392975500015],[25.64966881600006,60.341376044000114],[25.704356316000116,60.341376044000114],[25.690196160000085,60.36286041900006],[25.66863040500007,60.364650783000044],[25.646006707000108,60.35635000200013],[25.62916100400011,60.347601630000085],[25.602712436000047,60.33856842700005],[25.52613366000014,60.32709381700012],[25.52613366000014,60.320949611000124],[25.54127037900014,60.31635163],[25.54656009200005,60.305853583000115],[25.54509524800008,60.29230377800015],[25.54037519600007,60.278713283000016],[25.535899285000085,60.27570221600011],[25.52881920700014,60.274481512000094],[25.522227410000056,60.271389065],[25.516856316000116,60.25454336100002],[25.510915561000076,60.24921295800015],[25.502777540000064,60.24616120000014],[25.361664259000122,60.24518463700015],[25.36345462300011,60.26007721600002],[25.3509220710001,60.26723867400007],[25.3138126960001,60.27252838700003],[25.316172722000147,60.26788971600002],[25.319509311000072,60.256293036],[25.321299675000148,60.25141022300012],[25.290537957000083,60.24591705900009],[25.19752037900011,60.24518463700015],[25.19214928500014,60.24384186400008],[25.190440300000148,60.24005768400014],[25.19092858200014,60.228461005000135],[25.190277540000096,60.2277692730001],[25.18580162900011,60.223130601000086],[25.174164259000122,60.22540924700014],[25.156260613000143,60.232163804],[25.155039910000138,60.22378164300012],[25.191254102000073,60.212347723000065],[25.203949415000125,60.20425039300015],[25.19467207100007,60.200832424000126],[25.18140709700012,60.20050690300012],[25.1971134770001,60.19061920799999],[25.177012566000144,60.183294989],[25.117035352000126,60.17572663000014],[25.09473717500009,60.17633698100009],[25.09742272200006,60.18341705900015],[25.0989689460001,60.18650950700005],[25.101573113000114,60.19061920799999],[25.058604363000143,60.17731354400017],[25.047862175000148,60.16889069200012],[25.067393425000116,60.162665106000155],[25.061045769000085,60.156561591000084],[25.045258009000033,60.156805731000034],[25.029307488000143,60.1478539080001],[25.01075280000012,60.15135325699999],[24.9978947270001,60.162665106000155],[25.01075280000012,60.16986725499999],[25.021494988000143,60.183986721000124],[25.025889519000117,60.19944896000005],[25.01905358200011,60.21108633000016],[24.99878991000008,60.21283600500006],[24.98454837300008,60.19944896000005],[24.96119225400011,60.15155670800014],[24.95093834700006,60.14345937700001],[24.86573326900009,60.140122789],[24.84522545700014,60.143744208000136],[24.83415774800011,60.155829169000135],[24.87094160200007,60.16168854400008],[24.868825717000078,60.17975495000011],[24.842458530000073,60.19464752800014],[24.806813998000024,60.19061920799999],[24.827321811000076,60.162665106000155],[24.812510613000114,60.15827057500009],[24.785899285000056,60.14622630400007],[24.772634311000047,60.14215729400011],[24.72095787900008,60.138413804],[24.687754754000082,60.132513739000146],[24.679698113000143,60.130113023000106],[24.67335045700011,60.12543366100008],[24.671153191000112,60.11823151200014],[24.674815300000063,60.10553620000009],[24.670258009000122,60.1012230490001],[24.656423373000024,60.10097890800013],[24.649587436000104,60.10956452000006],[24.646169467000107,60.120917059000035],[24.642263217000107,60.12909577000012],[24.63062584700009,60.13629791900017],[24.569102410000138,60.15399811400009],[24.554047071000127,60.15595123900011],[24.549001498000077,60.15277741100005],[24.560394727000045,60.14215729400011],[24.57667076900009,60.135239976000115],[24.59083092500012,60.132228908],[24.596853061000104,60.12726471600014],[24.587657097000143,60.114813544000135],[24.574717644000145,60.10773346600008],[24.560557488000114,60.104559637000115],[24.5480249360001,60.09967682500014],[24.5403751960001,60.087551174000154],[24.608164910000085,60.1012230490001],[24.602712436000076,60.09178294500007],[24.594248894000117,60.08494700700005],[24.57398522200012,60.073919989],[24.594493035000053,60.06647370000004],[24.594493035000053,60.06024811400007],[24.527028842000078,60.03534577000012],[24.4876408210001,60.005804755000085],[24.4681095710001,59.99640534100014],[24.445648634000094,59.99225495000012],[24.41627037900011,59.99135976800002],[24.424327019000142,60.00507233300014],[24.4529728520001,60.037746486000074],[24.464121941000116,60.04657623900011],[24.446136915000096,60.04751211100001],[24.42090905000012,60.03546784100011],[24.37476647200012,60.00495026200015],[24.367686394000145,60.02204010600012],[24.350271030000073,60.0165469420001],[24.32976321700002,60.00336334800012],[24.31267337300008,59.99750397300009],[24.319102410000085,60.014146226000136],[24.330577019000145,60.021673895],[24.34424889400009,60.026800848],[24.35767662900008,60.03603750200007],[24.360362175000148,60.04311758000013],[24.359711134000094,60.05198802299999],[24.360850457000137,60.06240469000006],[24.36793053500008,60.073919989],[24.319672071000067,60.07583242400007],[24.295909050000148,60.072211005],[24.278575066000087,60.06024811400007],[24.292246941000116,60.05280182500008],[24.261078321000127,60.04157135600009],[24.252452019000117,60.03974030200011],[24.239024285000113,60.039374091000106],[24.20394941500004,60.04657623900011],[24.176524285000085,60.048041083],[24.158457879000082,60.043036200000145],[24.15796959700009,60.03449127800003],[24.182953321000095,60.02545807500003],[24.164235873000052,60.01943594000003],[24.147715691000144,60.02195872600014],[24.13184655000012,60.02798086100013],[24.11475670700008,60.03229401200003],[24.105967644000117,60.03192780200011],[24.06812584700009,60.02057526200015],[24.05836022200012,60.02041250200009],[24.046397332000108,60.02545807500003],[24.028168165000125,60.00934479400014],[24.0096134770001,60.010565497000165],[24.00261478000004,60.02098216400007],[24.019216342000103,60.03229401200003],[24.019216342000103,60.03974030200011],[24.000824415000068,60.03827545800005],[23.990244988000082,60.031561591000106],[23.98194420700011,60.02195872600014],[23.970713738000114,60.01178620000009],[23.955332879000082,60.00356679900009],[23.94068444100006,59.999335028000154],[23.873057488000114,59.993068752],[23.79948978000004,59.95661041900014],[23.77125084700009,59.96796295800011],[23.607595248000052,59.95661041900014],[23.594493035000085,59.96112702],[23.583832227000045,59.97333405199999],[23.573496941000144,59.97768789300006],[23.561859571000127,59.97760651200009],[23.4954533210001,59.96808502800008],[23.45297285200013,59.957261460000026],[23.42945397200009,59.95661041900014],[23.440603061000104,59.971828518000116],[23.483571811000047,60.011297919000086],[23.498301629000135,60.019273179000045],[23.52711022200009,60.023830471],[23.540863477000098,60.02912018400018],[23.542735222000147,60.03603750200007],[23.536143425000088,60.044989325000095],[23.5343530610001,60.053697007],[23.53736412900011,60.06305573100012],[23.546153191000084,60.073919989],[23.50961347700013,60.067450262000094],[23.498301629000135,60.06329987200014],[23.490244988000114,60.05548737200018],[23.485687696000067,60.04515208500005],[23.47877037900008,60.036118882000046],[23.46387780000012,60.03229401200003],[23.453786655000044,60.02798086100013],[23.44939212300008,60.01756419500004],[23.44605553500014,60.005113023000135],[23.43970787900011,59.994452216000084],[23.430186394000117,59.988674221000124],[23.407969597000147,59.980414130000135],[23.39869225400011,59.97426992400007],[23.36500084700009,59.94537995000014],[23.32642662900011,59.92304108300011],[23.237152540000096,59.898016669000114],[23.222341342000107,59.88621653900004],[23.22217858200014,59.867824611000096],[23.233164910000113,59.85199616100005],[23.2513126960001,59.847967841000084],[23.2513126960001,59.84113190300017],[23.080577019000117,59.82684967699999],[23.06812584700009,59.82078685099999],[23.00684655000009,59.82615794500005],[22.983897332000083,59.82371653900011],[22.964854363000086,59.818304755000064],[22.905121290000125,59.81122467699999],[22.88819420700014,59.813177802000055],[22.90601647200012,59.819647528000154],[22.931407097000147,59.84284088700017],[22.946136915000125,59.847967841000084],[22.986582879000082,59.85195547100007],[23.12745201900006,59.88637929900001],[23.168142123000052,59.888902085000105],[23.161143425000063,59.91022370000009],[23.165863477000073,59.91766998900006],[23.17709394600007,59.91742584800012],[23.18921959700009,59.91559479400014],[23.22242272200009,59.91608307500003],[23.24708092500009,59.92243073100014],[23.268890821000127,59.936224677000084],[23.293711785000085,59.95868561400009],[23.309092644000117,59.97943756700006],[23.32642662900011,60.00934479400014],[23.332855665000125,60.0298526060001],[23.31592858200014,60.02240631700011],[23.249766472000147,59.948472398000135],[23.223399285000056,59.92987702000015],[23.203623894000145,59.92987702000015],[23.205088738000114,59.933172919000164],[23.207286004000082,59.93976471600014],[23.209727410000113,59.94354889500009],[23.199717644000145,59.948187567],[23.18881269600007,59.95018138200014],[23.178070509000065,59.94891998900012],[23.168142123000052,59.94354889500009],[23.171234571000127,59.93642812700013],[23.131846550000148,59.94293854400002],[23.120941602000073,59.933579819999984],[23.1178491550001,59.92377350500006],[23.110687696000042,59.92328522300006],[23.10368899800008,59.92967357],[23.10059655000009,59.940415757000025],[23.110687696000042,59.970282294000086],[23.111338738000082,59.97426992400007],[23.128184441000087,59.983099677000105],[23.203623894000145,59.99750397300009],[23.217946811000047,60.008368231000176],[23.2413843110001,60.03310781500015],[23.257578972000143,60.03974030200011],[23.205088738000114,60.04970937700001],[23.10621178500008,60.03904857],[23.059418165000125,60.03974030200011],[23.035492384000065,60.04458242400009],[23.013356967000078,60.05158112200017],[22.996918165000068,60.062079169000135],[22.990733269000117,60.07733795800011],[22.997243686000104,60.08966705900015],[23.012868686000076,60.101752020000056],[23.045909050000148,60.12164948100015],[23.025401238000086,60.13532135600009],[23.019867384000065,60.12881094],[23.00879967500012,60.11200592699999],[23.00489342500012,60.10736725500005],[22.9967554050001,60.10370514500003],[22.9778751960001,60.098781643000144],[22.96949303500011,60.09438711100007],[22.96827233200011,60.110825914000074],[22.95866946700005,60.12156810099999],[22.942556186000076,60.127386786000116],[22.907888217000078,60.13178131700011],[22.88697350400011,60.14492422100007],[22.874685092000078,60.149603583],[22.88477623800011,60.15985748900012],[22.885590040000125,60.169338283000044],[22.87916100400014,60.17747630400014],[22.867198113000086,60.18374258000009],[22.921560092000107,60.231146552000105],[22.94288170700008,60.24518463700015],[23.00757897200012,60.27700429900001],[23.025401238000086,60.2929548200001],[23.031260613000114,60.30263906500006],[23.038096550000144,60.319159247000144],[23.045909050000148,60.32709381700012],[23.07252037900008,60.33869049700002],[23.082855665000096,60.34589264500006],[23.080577019000117,60.355047919000135],[23.06031334700012,60.357326565000115],[23.034190300000148,60.34393952000012],[23.010590040000125,60.32396067900014],[22.99805748800011,60.30662669500004],[22.94117272200009,60.316473700000174],[22.87712649800011,60.30109284100002],[22.73617597700013,60.238185940000086],[22.61117597700013,60.21995677300011],[22.553396030000016,60.20502350500006],[22.525075717000078,60.20425039300015],[22.539805535000056,60.21356842699999],[22.59343509200005,60.232163804],[22.57349694100006,60.234930731000055],[22.57203209700012,60.24266185100005],[22.59034264400006,60.26227448100012],[22.601084832000083,60.268215236000124],[22.648122592000107,60.278713283000016],[22.598399285000113,60.27578359600009],[22.574554884000122,60.270819403000026],[22.527354363000143,60.25214264500006],[22.50359134200005,60.24705638200014],[22.449473504000082,60.24518463700015],[22.45777428500014,60.252386786],[22.45923912900011,60.25873444200012],[22.459157748000024,60.26496002800009],[22.46306399800011,60.27252838700003],[22.46941165500007,60.27692291900002],[22.487478061000076,60.28497955900015],[22.508799675000148,60.30109284100002],[22.540293816000144,60.3189964860001],[22.545664910000113,60.33392975500015],[22.596364780000073,60.36367422100015],[22.62761478000004,60.37539297100012],[22.63135826900009,60.389553127000156],[22.624278191000116,60.39907461100016],[22.580821160000085,60.37592194200012],[22.543467644000117,60.3725446640001],[22.46306399800011,60.37555573100009],[22.483571811000076,60.40216705900003],[22.326182488000114,60.38239166900003],[22.291514519000117,60.38263580900014],[22.280121290000064,60.38646067900009],[22.24952233200014,60.40460846600018],[22.1814884770001,60.43048737200009],[22.161143425000088,60.43463776200003],[22.116709832000083,60.436957098000086],[22.111013217000107,60.44407786700004],[22.10816491000014,60.45685455900018],[22.101084832000083,60.46214427300008],[22.082692905000044,60.44721100500012],[22.064463738000086,60.43634674700003],[22.047048373000106,60.43878815300015],[22.018077019000117,60.457464911000145],[22.017425977000073,60.45990631700008],[22.01856530000009,60.468695380000135],[22.018077019000117,60.47113678600009],[22.01343834700009,60.471747137000044],[22.00171959700009,60.470119533000016],[21.99756920700014,60.47113678600009],[21.989024285000113,60.47516510600015],[21.981944207000083,60.476752020000085],[21.9791772800001,60.480780341000134],[21.98389733200011,60.49225495000009],[21.93539472700013,60.49225495000009],[21.93970787900014,60.49921295800008],[21.945648634000065,60.51203034100003],[21.950368686000076,60.518947658000016],[21.931651238000114,60.52496979400002],[21.903168165000096,60.52887604400003],[21.874034050000148,60.52952708500008],[21.853526238000086,60.525783596000124],[21.843923373000106,60.51552969],[21.848480665000068,60.50372955900003],[21.874034050000148,60.477972723000015],[21.828623894000145,60.48541901200017],[21.8060001960001,60.485988674000126],[21.78532962300008,60.477972723000015],[21.78956139400009,60.49510325700014],[21.802989129000082,60.525132554],[21.805674675000148,60.54682038000006],[21.805349155000044,60.561957098000065],[21.80787194100014,60.575588283],[21.819590691000144,60.585028387000115],[21.846039259000122,60.587836005000085],[21.833262566000084,60.59650299700017],[21.828461134000094,60.60639069200008],[21.830902540000125,60.61713288],[21.8405054050001,60.62872955900012],[21.773936394000117,60.603949286000145],[21.75424238400006,60.59096914300015],[21.73178144600007,60.58173248900009],[21.678965691000087,60.576483466000106],[21.66179446700005,60.56732819200011],[21.660166863000143,60.55906810100013],[21.66895592500009,60.54523346600003],[21.66480553500014,60.536322333],[21.65870201900009,60.530340887000186],[21.6556095710001,60.5259463560001],[21.654470248000052,60.51984284100012],[21.654307488000086,60.508978583000115],[21.641449415000068,60.4957542990001],[21.612071160000056,60.488836981000176],[21.57984459700012,60.487860419000114],[21.55811608200014,60.49225495000009],[21.58375084700012,60.50503164300013],[21.569672071000067,60.52643463700018],[21.51775149800008,60.56732819200011],[21.53345787900014,60.568060614000146],[21.578623894000117,60.559881903000054],[21.578623894000117,60.56732819200011],[21.555023634000065,60.572170315000015],[21.48609459700012,60.57416413000014],[21.454600457000108,60.56769440300003],[21.442637566000087,60.56732819200011],[21.434336785000085,60.56989166900003],[21.41846764400006,60.57843659100014],[21.408539259000065,60.58038971600008],[21.408539259000065,60.587836005000085],[21.415049675000144,60.58844635600003],[21.41944420700014,60.58991120000008],[21.428396030000073,60.594061591000035],[21.41480553500011,60.60830312700012],[21.445160352000098,60.602199611000124],[21.462657097000147,60.60175202000014],[21.46998131600014,60.60830312700012],[21.42156009200005,60.62872955900012],[21.399912957000055,60.63410065300015],[21.37964928500014,60.64704010600017],[21.36304772200009,60.66278717700011],[21.353282097000147,60.67658112200003],[21.35401451900009,60.68170807500014],[21.355804884000065,60.68292877800014],[21.356211785000085,60.68439362200003],[21.353282097000147,60.69017161699999],[21.425954623000052,60.67963288000011],[21.43897545700011,60.680324611000074],[21.445648634000094,60.692857164000074],[21.440928582000083,60.70302969000004],[21.431162957000137,60.71295807500012],[21.42212975400011,60.725002346000124],[21.46998131600014,60.725002346000124],[21.46998131600014,60.73114655200011],[21.448496941000112,60.73224518400015],[21.42709394600007,60.736517645000056],[21.40650475400014,60.743475653000154],[21.38738040500007,60.752346096],[21.403330925000063,60.758246161000145],[21.41163170700014,60.759670315],[21.42212975400011,60.759100653000026],[21.400238477000098,60.77456289300007],[21.38770592500009,60.779242255000085],[21.374278191000087,60.779608466000084],[21.380869988000086,60.793402411],[21.374278191000087,60.80760325700011],[21.36085045700011,60.81622955900012],[21.346446160000138,60.81313711100013],[21.339040561000047,60.81712474200011],[21.333262566000087,60.82184479400003],[21.328868035000113,60.827541408000094],[21.32593834700009,60.83486562700001],[21.336436394000142,60.8447126320001],[21.31853274800011,60.864691473],[21.332530144000145,60.86835358300005],[21.38233483200014,60.86318594000015],[21.407888217000107,60.86456940300003],[21.428396030000073,60.87579987200002],[21.417328321000127,60.880316473000086],[21.405935092000075,60.88202545799999],[21.380869988000086,60.88202545799999],[21.373708530000044,60.884588934000085],[21.353282097000147,60.90253327000014],[21.363780144000117,60.90485260600012],[21.381683790000096,60.91461823100014],[21.39079837300008,60.91681549700005],[21.399668816000116,60.91404857],[21.407399936000047,60.90827057500012],[21.41618899800011,60.903225002000106],[21.428396030000073,60.90253327000014],[21.422211134000094,60.91290924700015],[21.41781660200013,60.92430247600011],[21.4127710300001,60.933498440000086],[21.40447024800011,60.9372419290001],[21.392588738000143,60.93903229400008],[21.387868686000047,60.94367096600002],[21.385508660000085,60.950262762000094],[21.38054446700005,60.957709052000084],[21.33570397200012,61.00458405200011],[21.31853274800011,61.012355861000124],[21.332855665000093,61.02391185100005],[21.339040561000047,61.026597398000135],[21.31153405000012,61.037543036],[21.3020939460001,61.04604726800012],[21.2986759770001,61.06012604400017],[21.320323113000086,61.06020742400015],[21.36426842500012,61.044745184000035],[21.38738040500007,61.04026927300007],[21.4088647800001,61.04328034100016],[21.408132358000074,61.048163153000054],[21.407725457000137,61.05072663000006],[21.391368035000138,61.05792877800018],[21.366953972000086,61.06012604400017],[21.39527428500014,61.06940338700003],[21.453868035000085,61.054999091000134],[21.4822697270001,61.06012604400017],[21.46827233200014,61.066839911000116],[21.454844597000143,61.07819245000008],[21.450450066000055,61.09076569200009],[21.46314537900014,61.10114166900008],[21.452403191000116,61.12523021000011],[21.446055535000085,61.135158596],[21.435231967000078,61.14272695500016],[21.44507897200012,61.14305247599999],[21.46998131600014,61.14956289300006],[21.462657097000147,61.14935944200011],[21.455821160000113,61.150213934000035],[21.4490666020001,61.15232982000013],[21.442637566000087,61.155747789000046],[21.456309441000116,61.16998932500014],[21.442637566000087,61.16998932500014],[21.455821160000113,61.17617422100003],[21.471039259000094,61.17816803600005],[21.50342858200011,61.17743561400012],[21.498871290000068,61.18744538000011],[21.49659264400009,61.19110748900006],[21.526621941000144,61.19969310100008],[21.55811608200014,61.20416901200003],[21.543467644000145,61.225083726000015],[21.52409915500004,61.23460521],[21.476084832000137,61.24575429900001],[21.485606316000116,61.25617096600011],[21.499359571000042,61.26105377800017],[21.50831139400009,61.26683177300013],[21.50342858200011,61.27985260600003],[21.544444207000108,61.27985260600003],[21.544444207000108,61.287298895],[21.54200280000009,61.292710679000045],[21.544444207000108,61.310777085000076],[21.544444207000108,61.320868231000034],[21.54200280000009,61.32689036700005],[21.53419030000009,61.32949453300012],[21.530772332000083,61.33445872599999],[21.529958530000073,61.340521552],[21.531748894000145,61.34967682500015],[21.530772332000083,61.354966539000046],[21.524261915000096,61.37531159100003],[21.518402540000125,61.38157786699999],[21.50342858200011,61.389105536000145],[21.490082227000098,61.393255927000084],[21.462087436000072,61.398423569999984],[21.44890384200002,61.40277741100009],[21.477875196000124,61.41156647300015],[21.541677280000073,61.408392645000085],[21.572438998000052,61.416408596000124],[21.557871941000116,61.431219794000086],[21.542246941000116,61.44212474200007],[21.510264519000117,61.457993882],[21.4420679050001,61.47504303600006],[21.42212975400011,61.48533763200008],[21.55567467500012,61.475165106000034],[21.592133009000094,61.48533763200008],[21.571136915000125,61.514105536000116],[21.565603061000104,61.519476630000085],[21.550954623000106,61.52179596600003],[21.524261915000096,61.51740143400015],[21.510264519000117,61.519476630000085],[21.46998131600014,61.546820380000135],[21.461924675000116,61.557766018],[21.460134311000047,61.562404690000115],[21.46648196700005,61.564439195000084],[21.4822697270001,61.56785716399998],[21.50798587300005,61.57013580900006],[21.623383009000065,61.54588450700005],[21.68685957100007,61.524481512000115],[21.71631920700014,61.519476630000085],[21.71631920700014,61.526922919000135],[21.648122592000107,61.56028880400011],[21.614268425000148,61.585435289000095],[21.591807488000143,61.62811920800011],[21.573252800000144,61.635565497000115],[21.552500847000147,61.6407738300001],[21.53760826900009,61.649847723],[21.53614342500012,61.65802643400009],[21.544118686000104,61.67283763200008],[21.541026238000114,61.68024323100015],[21.51775149800008,61.7050641950001],[21.51775149800008,61.711249091000084],[21.536306186000104,61.708197333],[21.570323113000114,61.69501373900014],[21.585948113000114,61.697658596000124],[21.559336785000085,61.71332428600003],[21.48926842500009,61.73696523600013],[21.46998131600014,61.759711005000085],[21.472666863000114,61.77191803600014],[21.481944207000083,61.785589911000095],[21.48902428500014,61.799139716000134],[21.48609459700012,61.81118398600016],[21.472504102000073,61.81683991100006],[21.45557701900009,61.819973049000126],[21.444590691000116,61.82632070500016],[21.44890384200002,61.841620184000114],[21.41846764400006,61.86253489799999],[21.403168165000093,61.87641022300007],[21.394216342000078,61.889390367000075],[21.403575066000112,61.893133856000084],[21.411957227000073,61.90009186400009],[21.414073113000086,61.90688711100002],[21.393565300000116,61.913234768000144],[21.389496290000068,61.9211286480001],[21.387217644000085,61.93040599200007],[21.38054446700005,61.93781159100015],[21.37142988400006,61.93911367400015],[21.32569420700014,61.93781159100015],[21.316742384000122,61.939195054000145],[21.312510613000086,61.939846096000096],[21.290212436000047,61.948919989000096],[21.27751712300008,61.951483466000084],[21.294932488000143,61.9713402360001],[21.280528191000087,61.97955963700009],[21.236582879000053,61.98501211100013],[21.276215040000096,62.05019765800013],[21.284353061000104,62.07493724200013],[21.289073113000114,62.121568101000136],[21.296397332000108,62.130438544000164],[21.312266472000147,62.1091169290001],[21.329112175000148,62.138128973],[21.332530144000145,62.152573960000055],[21.32593834700009,62.16376373900005],[21.340342644000145,62.17572663],[21.371104363000114,62.18646881700003],[21.383962436000047,62.194484768000144],[21.389903191000087,62.20815664300009],[21.380869988000086,62.21784088700015],[21.353282097000147,62.23200104400017],[21.374278191000087,62.26679108300011],[21.352305535000085,62.266017971],[21.34001712300011,62.25519440300012],[21.329356316000087,62.24144114799999],[21.312266472000147,62.23200104400017],[21.316172722000147,62.24823639500013],[21.328461134000094,62.277167059000114],[21.332774285000113,62.294094143],[21.33350670700014,62.34056224200004],[21.339040561000047,62.35553620000009],[21.28532962300008,62.34528229400014],[21.270681186000076,62.34931061400012],[21.262461785000085,62.35919830900003],[21.260427280000044,62.37197500200007],[21.265310092000107,62.385199286000116],[21.27751712300008,62.396470445000105],[21.270681186000076,62.410793361000096],[21.205088738000143,62.35968659100003],[21.202403191000084,62.34918854400015],[21.216075066000116,62.33502838700003],[21.19434655000012,62.33706289300006],[21.18978925900009,62.352443752],[21.195078972000147,62.37287018400018],[21.202403191000084,62.39032623900011],[21.196543816000116,62.391506252000156],[21.18702233200014,62.39524974200001],[21.181325717000046,62.396470445000105],[21.189463738000057,62.408392645000156],[21.194590691000087,62.41323476800012],[21.202403191000084,62.41762929900001],[21.186045769000145,62.42357005400013],[21.16675866000011,62.42133209800006],[21.1477970710001,62.413804429000024],[21.133555535000113,62.40395742400007],[21.131358269000117,62.41669342700014],[21.149180535000085,62.44708893400009],[21.154551629000135,62.46478913],[21.13697350400011,62.45799388200008],[21.124278191000144,62.45482005400011],[21.116384311000076,62.46015045800009],[21.113047722000147,62.47842031500016],[21.115570509000065,62.49579498900012],[21.124278191000144,62.50999583500014],[21.137868686000104,62.52069733300005],[21.154551629000135,62.52749258000009],[21.148773634000094,62.535549221000124],[21.12671959700009,62.554144598000114],[21.146820509000122,62.56281159100003],[21.1673283210001,62.57575104400003],[21.188161655000073,62.584865627],[21.209239129000082,62.582098700000145],[21.19353274800011,62.60089752800008],[21.12159264400009,62.60944245000003],[21.10621178500014,62.62303294499999],[21.094086134000122,62.61945221600011],[21.083262566000144,62.61269765800007],[21.065196160000113,62.59577057500009],[21.06788170700011,62.620103257000046],[21.083181186000076,62.659247137000094],[21.078949415000125,62.678290106000084],[21.098887566000116,62.680894272999986],[21.125743035000113,62.69017161700005],[21.149668816000087,62.70380280199999],[21.1608179050001,62.71930573100009],[21.160166863000143,62.73016998900009],[21.1556095710001,62.73175690300012],[21.14861087300011,62.730414130000106],[21.140391472000115,62.73289622600005],[21.12281334700009,62.74371979400014],[21.116465691000144,62.74966054900006],[21.107920769000145,62.76703522300014],[21.11353600400014,62.78119538000008],[21.129079623000052,62.790838934000064],[21.15088951900009,62.794378973000114],[21.17107181100002,62.78461334800009],[21.18336022200009,62.782375393],[21.188812696000127,62.79067617400009],[21.192230665000125,62.79291413000005],[21.2096460300001,62.807603257000075],[21.216075066000116,62.81484609600009],[21.22193444100014,62.83104075700014],[21.222666863000086,62.84564850500005],[21.226735873000052,62.858465887000094],[21.243418816000087,62.869452216000134],[21.26742597700013,62.86904531500014],[21.33570397200012,62.85545482],[21.35670006600014,62.85952383000016],[21.36426842500012,62.865423895000085],[21.382823113000114,62.874579169000164],[21.39079837300008,62.880316473000114],[21.395518425000088,62.88735586100001],[21.399668816000116,62.90070221600002],[21.40919030000012,62.91380442899999],[21.42009524800008,62.93488190300011],[21.42212975400011,62.941799221],[21.42750084700009,62.944037177],[21.46314537900014,62.951402085],[21.446543816000087,62.987005927000055],[21.44271894600007,63.00507233300006],[21.442637566000087,63.02708567900007],[21.441742384000094,63.034369208],[21.4407658210001,63.037787177],[21.44410241000014,63.040920315000065],[21.456309441000116,63.04755280200014],[21.46705162900011,63.04791901200015],[21.475271030000044,63.043036200000174],[21.480479363000114,63.043036200000174],[21.4822697270001,63.05817291900017],[21.49512780000012,63.07172272300015],[21.523448113000086,63.063950914000046],[21.565196160000113,63.04075755400011],[21.59546959700012,63.03485748900008],[21.625743035000113,63.02387116100012],[21.656748894000113,63.01788971600011],[21.688487175000088,63.02708567900007],[21.645681186000076,63.05524323100015],[21.57911217500009,63.08372630400008],[21.55958092500012,63.09511953300013],[21.55323326900009,63.10858795800012],[21.572438998000052,63.123358466000084],[21.56006920700011,63.11969635600003],[21.54590905000009,63.11790599200005],[21.531993035000085,63.11969635600003],[21.52084394600007,63.126776434000085],[21.516774936000104,63.1376000020001],[21.51783287900008,63.14801666900008],[21.51612389400006,63.155462958000065],[21.50342858200011,63.157456773000106],[21.510508660000085,63.16840241100006],[21.52222741000014,63.17206452000013],[21.551931186000072,63.171128648000135],[21.551931186000072,63.17792389500006],[21.512868686000015,63.18500397300012],[21.500987175000063,63.192450262000094],[21.49659264400009,63.20897044499999],[21.504893425000144,63.21743398600002],[21.523773634000094,63.22540924700017],[21.544444207000108,63.23102448100017],[21.55811608200014,63.232611395],[21.61540774800008,63.20392487200014],[21.647227410000113,63.197658596],[21.66797936300011,63.21954987200002],[21.68799889400009,63.210191148000014],[21.714691602000098,63.20233795800012],[21.74236087300011,63.19965241100014],[21.764170769000145,63.20587799700008],[21.749034050000148,63.21088288000014],[21.717946811000076,63.21531810100011],[21.702647332000108,63.21954987200002],[21.702647332000108,63.22577545799999],[21.74366295700011,63.239406643000116],[21.758067254000082,63.24152252800015],[21.79835045700014,63.239406643000116],[21.821299675000144,63.24371979400005],[21.869883660000113,63.259426174],[21.894541863000082,63.260484117000075],[21.88445071700005,63.245428778000054],[21.88266035200013,63.235907294000135],[21.891449415000096,63.19660065300006],[21.88990319100006,63.188177802],[21.880869988000143,63.17792389500006],[21.905528191000144,63.17544179900012],[21.98389733200011,63.1432152360001],[21.972178582000108,63.164984442000055],[21.955902540000096,63.18475983300008],[21.984060092000078,63.19122955900018],[21.994395379000082,63.196437893000095],[22.00440514400006,63.20587799700008],[22.010020379000082,63.215765692],[22.012543165000096,63.22431061400012],[22.015961134000094,63.23200104400014],[22.02475019600007,63.239406643000116],[22.04314212300011,63.24559153900011],[22.053558790000093,63.24091217699999],[22.061371290000096,63.23212311400012],[22.07203209700012,63.22577545799999],[22.087575717000107,63.22577545799999],[22.11402428500011,63.23627350500006],[22.12720787900014,63.239406643000116],[22.139496290000096,63.23798248900006],[22.159190300000144,63.23175690300011],[22.175059441000087,63.232611395],[22.18018639400009,63.23550039300012],[22.181162957000055,63.24005768400017],[22.180837436000047,63.24445221600018],[22.181895379000082,63.24681224200013],[22.187266472000147,63.24640534100003],[22.194997592000075,63.24412669500005],[22.201426629000082,63.24135976800009],[22.2029728520001,63.239406643000116],[22.24463951900009,63.267075914000124],[22.26636803500014,63.28534577],[22.27808678500014,63.301459052000084],[22.284922722000147,63.301459052000084],[22.30762780000009,63.27586497600002],[22.330088738000086,63.28384023600016],[22.352224155000073,63.30560944200011],[22.3737085300001,63.32135651200015],[22.363942905000073,63.32689036699999],[22.357188347000115,63.33421458499999],[22.346934441000087,63.34926992400001],[22.33383222700013,63.35968659100012],[22.305349155000044,63.37270742400009],[22.255381707000083,63.40643952000009],[22.250498894000117,63.41132233300005],[22.23292076900009,63.411810614000146],[22.218272332000083,63.414374091000134],[22.20582116000014,63.42031484600007],[22.19556725400014,63.43121979400014],[22.19092858200011,63.45844147300014],[22.213389519000117,63.47089264500006],[22.246755405000073,63.469631252000156],[22.274668816000116,63.45571523600007],[22.304942254000107,63.43585846600017],[22.335215691000116,63.430405992000125],[22.366953972000147,63.42829010600003],[22.401621941000144,63.41815827000006],[22.31820722700013,63.46051666900017],[22.2799585300001,63.48761627800009],[22.27125084700012,63.51373932500014],[22.281423373000052,63.526190497000165],[22.292246941000144,63.529730536000145],[22.319346550000088,63.52741120000009],[22.33741295700011,63.523342190000115],[22.337087436000076,63.513617255000085],[22.331228061000047,63.502346096000096],[22.333343946000124,63.49323151200009],[22.355479363000114,63.487494208000115],[22.380218946000095,63.48541901200009],[22.396820509000065,63.47695547100006],[22.394786004000107,63.45233795800005],[22.4073999360001,63.45693594],[22.42367597700013,63.46800364800013],[22.43580162900014,63.472805080000036],[22.43580162900014,63.47955963700015],[22.428396030000044,63.488755601000136],[22.43148847700013,63.49738190300004],[22.438649936000076,63.506537177000105],[22.442637566000144,63.5174828150001],[22.44548587300008,63.518133856000034],[22.46306399800011,63.55475495000014],[22.472422722000147,63.56183502800012],[22.483734571000127,63.566839911000066],[22.493174675000148,63.573472398000135],[22.4972436860001,63.58576080900018],[22.503428582000083,63.58710358300008],[22.545664910000113,63.57518138200014],[22.53777103000004,63.587713934000035],[22.4972436860001,63.62299225500005],[22.51441491000014,63.63597239800008],[22.52222741000014,63.64061107],[22.531993035000085,63.644110419000164],[22.529470248000052,63.650864976000115],[22.527842644000117,63.65387604400002],[22.525075717000078,63.65770091400013],[22.567393425000088,63.65314362200008],[22.585703972000147,63.65704987200009],[22.59343509200005,63.67450592700013],[22.591075066000087,63.69415924700008],[22.589040561000072,63.703314520000085],[22.594086134000094,63.70429108300006],[22.61329186300014,63.69928620000012],[22.627777540000096,63.68744538000006],[22.637054884000065,63.68309153900007],[22.641123894000117,63.68846263200011],[22.644867384000065,63.69855377800017],[22.65406334700012,63.70376211100007],[22.665212436000047,63.70477936400014],[22.67530358200011,63.70237864799999],[22.690765821000127,63.69379303600009],[22.702321811000047,63.68341705900017],[22.707041863000143,63.67133209800009],[22.702647332000083,63.65770091400013],[22.713226759000122,63.64988841400004],[22.734060092000103,63.6275902360001],[22.74048912900011,63.62299225500005],[22.7552189460001,63.62409088700012],[22.773448113000082,63.62750885600011],[22.79053795700014,63.63300202000015],[22.80225670700011,63.64032623900006],[22.810231967000078,63.64374420800006],[22.82048587300011,63.64419179900016],[22.829274936000076,63.646226304],[22.83301842500012,63.65436432500012],[22.83301842500012,63.66181061400009],[22.833506707000083,63.66730377800012],[22.83570397200009,63.67210521],[22.840342644000117,63.67763906500013],[22.855479363000114,63.687160549],[22.88697350400011,63.69521719000015],[22.901866082000083,63.70551178600006],[22.885264519000117,63.7123070330001],[22.83301842500012,63.726019598000114],[22.901866082000083,63.726019598000114],[22.882090691000144,63.74213288],[22.874685092000078,63.74652741100009],[22.900401238000114,63.74005768400018],[22.9147241550001,63.739203192000055],[22.925791863000143,63.7433942730001],[22.928477410000113,63.748765367000075],[22.92986087300011,63.75690338700018],[22.92920983200014,63.764349677000055],[22.925791863000143,63.7675641950001],[22.90772545700011,63.77240631700009],[22.898773634000094,63.78327057500017],[22.902517123000106,63.794867255],[22.922373894000117,63.801703192],[22.94288170700008,63.800482489],[22.95484459700012,63.793280341000134],[22.97315514400009,63.7709821640001],[22.990000847000086,63.76129791900014],[23.0006616550001,63.763617255000106],[23.00180097700013,63.77374909100016],[22.990733269000117,63.787502346000096],[22.990733269000117,63.787624416000156],[22.994639519000117,63.80072663000014],[22.994476759000033,63.80621979400014],[22.990733269000117,63.81537506700015],[23.04761803500014,63.841294664000046],[23.062836134000122,63.85297272300014],[23.074961785000113,63.857367255000106],[23.121348504000082,63.84955475500015],[23.13257897200009,63.85248444200006],[23.14234459700012,63.85846588700014],[23.153493686000044,63.863470770000035],[23.151215040000068,63.8648949240001],[23.14161217500009,63.86945221600002],[23.141856316000144,63.87596263200011],[23.155039910000085,63.88369375200012],[23.167328321000124,63.88694896000008],[23.197927280000073,63.89061107000013],[23.275238477000073,63.88890208500011],[23.30648847700013,63.894232489],[23.32642662900011,63.91095612200003],[23.350759311000104,63.89883047100012],[23.372813347000086,63.900620835000105],[23.39421634200005,63.911078192],[23.415782097000143,63.924627997000144],[23.384776238000114,63.93829987200009],[23.370860222000143,63.946519272999986],[23.370860222000143,63.956000067],[23.3787541020001,63.96893952],[23.37671959700009,63.97874583500014],[23.370860222000143,63.987534898000106],[23.36744225400014,63.99725983300006],[23.369883660000056,64.00324127800015],[23.38160241000014,64.04816315300017],[23.396494988000114,64.05613841400013],[23.415212436000076,64.05621979400011],[23.44996178500014,64.04816315300017],[23.45655358200011,64.04547760600009],[23.467539910000053,64.03790924700014],[23.477305535000113,64.03510163],[23.487559441000116,64.03595612200009],[23.4967554050001,64.0394554710001],[23.506602410000113,64.04165273600007],[23.538340691000087,64.03188711100013],[23.60450280000006,64.02765534100003],[23.61980228000004,64.03803131700012],[23.605967644000117,64.06110260600018],[23.58171634200005,64.08466217700011],[23.56609134200005,64.09658437700007],[23.573578321000124,64.10724518400009],[23.585459832000083,64.108547268],[23.614431186000076,64.1034203150001],[23.62208092500009,64.10712311400012],[23.64478600400014,64.12441640800003],[23.656016472000147,64.13007233300011],[23.660329623000052,64.14329661700005],[23.6795353520001,64.15534088700015],[23.704274936000076,64.16669342700014],[23.706472201000082,64.16807689000002],[23.72364342500009,64.17853424700009],[23.716807488000086,64.17853424700009],[23.719411655000073,64.19428131700006],[23.72437584700012,64.20892975500006],[23.7356876960001,64.21621328300007],[23.75766035200013,64.20954010600003],[23.772715691000144,64.20892975500006],[23.819102410000113,64.22064850500006],[23.833506707000083,64.22687409100011],[23.8416447270001,64.23615143400015],[23.86109459700009,64.26788971600003],[23.88160241000014,64.26609935100014],[23.924489780000016,64.25470612200016],[23.94336998800014,64.24677155200011],[23.93458092500009,64.258490302],[23.9275822270001,64.27118561400006],[23.92514082100007,64.28546784100014],[23.92904707100007,64.30141836100016],[23.94092858200011,64.31655508000016],[23.971202019000117,64.33515045800004],[23.9842228520001,64.34979889500006],[23.996104363000143,64.37986888200011],[24.004405144000117,64.38910553600006],[24.025401238000057,64.397650458],[24.06861412900005,64.40558502800015],[24.08472741000014,64.41474030200014],[24.08057701900009,64.43170807500012],[24.09327233200014,64.4304059920001],[24.10482832100007,64.43121979400003],[24.11548912900011,64.43480052299999],[24.12501061300011,64.44232819200013],[24.129161004000135,64.4408226580001],[24.16928144600007,64.45221588700015],[24.20573978000004,64.45221588700015],[24.210785352000073,64.45600006700009],[24.21045983200014,64.47308991100012],[24.212250196000127,64.48102448100009],[24.217784050000148,64.48700592700011],[24.22950280000012,64.48916250200001],[24.25757897200012,64.48598867400015],[24.2688908210001,64.49005768400009],[24.275157097000147,64.49762604400014],[24.28093509200002,64.51015859600015],[24.285980665000064,64.51496002800006],[24.30632571700005,64.52204010600009],[24.325694207000083,64.52460358300011],[24.34408613400012,64.53074778899999],[24.36109459700009,64.5484072940001],[24.360118035000113,64.555365302],[24.355642123000052,64.56452057500017],[24.354991082000083,64.57241445500013],[24.37387129000012,64.579535223],[24.374522332000083,64.5877953150001],[24.37086022200012,64.5951602230001],[24.36793053500008,64.596869208],[24.375498894000145,64.61725495000017],[24.382660352000073,64.62864817900014],[24.408864780000012,64.65143463700015],[24.414317254000053,64.6590843770001],[24.418304884000122,64.66803620000012],[24.42286217500009,64.67560455900015],[24.429372592000078,64.67877838700004],[24.441172722000147,64.681097723],[24.47095787900014,64.69928620000009],[24.51156660200004,64.71002838700008],[24.53028405000012,64.7178408870001],[24.546071811000076,64.733384507],[24.5364689460001,64.7441266950001],[24.532399936000047,64.74770742400007],[24.532399936000047,64.75385163000006],[24.543711785000113,64.76471588700002],[24.557139519000117,64.77090078300002],[24.587657097000143,64.78119538000011],[24.550059441000144,64.79657623900006],[24.538422071000127,64.80532461100013],[24.556651238000114,64.80914948100015],[24.578379754000082,64.80792877800006],[24.658539259000037,64.78864166900011],[24.668304884000094,64.78912995000009],[24.676524285000085,64.79486725500006],[24.67676842500012,64.79954661699999],[24.665700717000078,64.80707428600014],[24.662771030000073,64.81256745000017],[24.67066491000014,64.8297386740001],[24.689626498000052,64.83470286700005],[24.731700066000116,64.8358421900001],[24.736338738000143,64.85537344000006],[24.77312259200002,64.86579010600015],[24.896983269000142,64.87311432500013],[25.07374108200014,64.91608307500012],[25.09473717500009,64.9183617210001],[25.112315300000116,64.9144554710001],[25.121755405000044,64.90509674700014],[25.129730665000096,64.89378489799999],[25.143239780000073,64.8842227230001],[25.15105228000007,64.88385651200015],[25.15845787900014,64.8867048200001],[25.166677280000044,64.88841380400011],[25.177256707000083,64.8842227230001],[25.179860873000077,64.87995026200018],[25.183929884000065,64.86579010600015],[25.18726647200009,64.86066315300003],[25.20248457100007,64.84918854400009],[25.217621290000068,64.8414574240001],[25.235606316000084,64.837103583],[25.25928795700011,64.8358421900001],[25.25928795700011,64.82957591400013],[25.24976647200012,64.82953522300014],[25.241547071000124,64.82811107000008],[25.225108269000117,64.82273997600011],[25.259532097000147,64.81647370000015],[25.354828321000095,64.82957591400013],[25.362152540000096,64.83307526200012],[25.350433790000125,64.85171133000001],[25.35181725400011,64.86066315300003],[25.36670983200014,64.89175039300015],[25.368500196000127,64.89850495000009],[25.359548373000106,64.91111888200005],[25.34782962300011,64.91156647300006],[25.334808790000125,64.90692780200014],[25.321299675000148,64.90473053600014],[25.306325717000018,64.908880927],[25.27979576900006,64.92230866100009],[25.24122155000009,64.92902252800003],[25.223480665000096,64.93891022300012],[25.19092858200014,64.96678294499999],[25.19605553500014,64.96979401200018],[25.206228061000104,64.977484442],[25.21143639400009,64.9804141300001],[25.203949415000125,64.98663971600008],[25.220957879000082,64.99054596600008],[25.3216251960001,64.983587958],[25.34009850400011,64.97724030200006],[25.37598717500009,64.95994700700005],[25.39909915500007,64.95189036700013],[25.42156009200005,64.94887929900013],[25.438161655000016,64.95307038000006],[25.44353274800008,64.96678294499999],[25.43628991000014,64.98029205900015],[25.424327019000117,64.98908112200003],[25.416758660000085,64.99860260600012],[25.423106316000087,65.01459381700012],[25.41618899800011,65.0199242210001],[25.41309655000012,65.02448151200004],[25.413259311000076,65.02924225500011],[25.41627037900008,65.0350609400001],[25.392588738000057,65.04767487200014],[25.380869988000086,65.05597565300003],[25.37598717500009,65.06574127800017],[25.37435957100007,65.07636139500012],[25.369965040000093,65.08441803600006],[25.363536004000082,65.090765692],[25.355479363000143,65.09650299700014],[25.32406660200013,65.10980866100009],[25.21143639400009,65.12376536700005],[25.218272332000108,65.14573802300008],[25.225840691000144,65.15664297100012],[25.25928795700011,65.17218659100014],[25.27263431100002,65.18040599200005],[25.282481316000144,65.1913923200001],[25.285655144000113,65.20477936399999],[25.27979576900006,65.21995677299999],[25.2921655610001,65.21906159100008],[25.304453972000147,65.21967194200006],[25.31625410200013,65.222113348],[25.327484571000127,65.22687409100008],[25.320648634000122,65.22842031500012],[25.30787194100006,65.23273346600003],[25.30014082100007,65.23362864800013],[25.30884850400014,65.24909088700007],[25.3138126960001,65.25413646],[25.297211134000122,65.25950755400014],[25.289073113000114,65.26113515800016],[25.27979576900006,65.26097239800002],[25.294200066000116,65.27114492400011],[25.30787194100006,65.30215078300007],[25.321299675000148,65.31622955900012],[25.317393425000148,65.31932200699998],[25.310801629000082,65.32684967700006],[25.306976759000065,65.32982005400007],[25.31625410200013,65.33136627800012],[25.32243899800011,65.33356354400009],[25.33497155000009,65.34349192900002],[25.266123894000117,65.377630927],[25.280039910000113,65.38117096600008],[25.30689537900008,65.38157786699999],[25.321299675000148,65.38507721600008],[25.330088738000114,65.39052969000004],[25.34669030000009,65.40574778900002],[25.355479363000143,65.411810614],[25.344493035000085,65.42853424700003],[25.358653191000116,65.46552155200006],[25.35181725400011,65.48411692900005],[25.323578321000127,65.50678131700003],[25.29371178500014,65.52509186400009],[25.21900475400014,65.55727773600005],[25.1971134770001,65.56264883000007],[25.170095248000052,65.562241929],[25.146820509000037,65.55902741100012],[25.12484785200013,65.56110260600003],[25.101573113000114,65.57689036699999],[25.096364780000016,65.5850283870001],[25.093190951000054,65.59190501500002],[25.091807488000086,65.5949567730001],[25.08545983200014,65.60516998900013],[25.074229363000143,65.61416250200007],[25.06072024800008,65.61725495000013],[25.035817905000044,65.61416250200007],[25.022471550000116,65.62099844000008],[25.00489342500009,65.62702057500009],[24.95720462300011,65.62278880400008],[24.93718509200005,65.62409088700015],[24.92408287900008,65.63043854400009],[24.906097852000045,65.645941473],[24.89551842500009,65.65135325700005],[24.859141472000115,65.65912506700006],[24.819509311000072,65.66217682500015],[24.780284050000148,65.65973541900003],[24.745290561000076,65.65135325700005],[24.719086134000122,65.63788483300009],[24.706797722000058,65.63328685100014],[24.68702233200014,65.63153717700014],[24.675791863000143,65.63544342700014],[24.671071811000047,65.64496491100012],[24.670176629000135,65.68341705900004],[24.66773522200012,65.690863348],[24.659678582000083,65.69505442900005],[24.596527540000096,65.70917389500006],[24.583994988000086,65.71686432500009],[24.567718946000067,65.73065827],[24.554860873000052,65.74510325700005],[24.55046634200005,65.76349518400009],[24.560394727000045,65.78912995000017],[24.575368686000072,65.80817291900014],[24.632009311000076,65.86058177300013],[24.645762566000087,65.87946198100015],[24.65365644600007,65.88556549700014],[24.670258009000122,65.89158763200005],[24.697601759000094,65.89447662999999],[24.70753014400009,65.89923737200009],[24.710622592000078,65.9120954450001],[24.694590691000084,65.903998114],[24.642263217000107,65.89158763200005],[24.634450717000107,65.8909365910001],[24.625336134000122,65.89130280200011],[24.61793053500014,65.88922760600009],[24.61500084700012,65.88133372600014],[24.61548912900011,65.87079498900006],[24.614512566000116,65.86615631700015],[24.61158287900011,65.86432526200015],[24.587168816000144,65.85431549700009],[24.54363040500004,65.80898672100007],[24.518809441000087,65.79604726800007],[24.494395379000107,65.79515208500008],[24.473480665000068,65.79718659100011],[24.4529728520001,65.79694245000013],[24.430511915000096,65.78912995000017],[24.42798912900008,65.78620026200007],[24.426117384000122,65.781683661],[24.42286217500009,65.77659739800008],[24.41570071700005,65.77179596600008],[24.404795769000142,65.76923248900009],[24.357106967000103,65.77920156500006],[24.327891472000147,65.79791901200004],[24.31666100400005,65.80223216400005],[24.277842644000145,65.80939362200009],[24.238291863000082,65.822699286],[24.248301629000082,65.80902741100006],[24.251231316000087,65.79413483300011],[24.24431399800011,65.78156159100003],[24.224619988000143,65.77488841400007],[24.206228061000104,65.77875397300006],[24.18824303500008,65.79022858300011],[24.173024936000104,65.80418528899999],[24.16309655000009,65.8158633480001],[24.16309655000009,65.822699286],[24.163413534000114,65.84078847300005],[24.12444950400004,65.86890045200009],[24.102331990000035,65.90858795200016],[24.07597701000006,65.92801829100013],[24.0547896730001,65.94791371700013],[24.05696008300009,65.97010874400009],[24.05530643700007,65.98517242499999],[24.029778279000112,66.03498850500002],[24.01964969900007,66.048941142],[24.00941776500008,66.05560740200012],[23.985129842000077,66.06635610000005],[23.974587850000116,66.07281565400008],[23.965596151000085,66.08160064700017],[23.911439250000058,66.14862498000018],[23.889321737000046,66.16110483900017],[23.785555461000055,66.17668528300011],[23.75000207500011,66.18965606700012],[23.724163859000072,66.20663177500013],[23.68943729700004,66.25699045900002],[23.680652303000073,66.2829837040001],[23.66597619600006,66.3054629520001],[23.662772258000103,66.31652170900009],[23.66442590300005,66.32639190700009],[23.673004191000075,66.33951772100015],[23.676414835000116,66.35000803700011],[23.67703495300009,66.363624776],[23.671660604000124,66.38178904300003],[23.67021366400013,66.39530243000011],[23.66587284300004,66.40556020100007],[23.646649210000103,66.42406036400003],[23.64230839000004,66.4362560020001],[23.652436971000096,66.45883860300007],[23.676828247000117,66.47400563600009],[23.706077108000073,66.48297149700012],[23.731088501000073,66.48715728800006],[23.731088501000073,66.5031253050001],[23.75506636500009,66.51185862300018],[23.78586551900014,66.51842153000014],[23.806122681000147,66.52813669900009],[23.807672974000067,66.53924713200001],[23.86120975700001,66.55459503200008],[23.881880330000115,66.56353505500012],[23.89149214600013,66.578882955],[23.893249146000127,66.59603953100005],[23.889115030000085,66.61407460600005],[23.881880330000115,66.63179962200014],[23.89159550000008,66.64787099300004],[23.899036906000106,66.66637115500005],[23.903171020000116,66.68631825800016],[23.902964315000077,66.70688547800007],[23.891698853000094,66.74357574500014],[23.8924223220001,66.75091379800013],[23.92477176900007,66.77297963500003],[23.939241170000116,66.79111806300016],[23.961048624000057,66.79354685500012],[23.98440637200008,66.79297841400016],[23.99918583200011,66.79628570600006],[24.004043416000115,66.80519989100016],[24.001252889000057,66.81243459100013],[23.960841919000075,66.86188893700007],[23.933350057000013,66.8887606820001],[23.91236942600011,66.90341095000015],[23.873612102000095,66.92464996400004],[23.816664672000115,66.97549957300005],[23.792066691000116,66.9889354460001],[23.761680949000063,66.99428395600016],[23.743800903000107,67.0010277310001],[23.72033980300006,67.0168665580001],[23.683856242000047,67.04952606300006],[23.676724894000102,67.05849192300008],[23.672590780000064,67.06570078600005],[23.67062707500014,67.07422739700017],[23.67021366400013,67.08706899000008],[23.666596313000127,67.09792104100002],[23.658018026000093,67.10401886100009],[23.647786092000043,67.10856638600002],[23.620500936000095,67.12926279700004],[23.59890018700014,67.14029571600004],[23.581330200000078,67.15313730900012],[23.57399214700007,67.17303273600011],[23.586497844000064,67.18088755400004],[23.597556600000075,67.1902668260001],[23.607065064000068,67.20122222999998],[23.614919881000105,67.21398630800014],[23.596729777000064,67.21796539400012],[23.591458781000114,67.22501922600004],[23.59455936700007,67.24442372600011],[23.602724243000097,67.26026255300003],[23.62225793400009,67.26902170900011],[23.735429321000137,67.28969228100011],[23.763231242000103,67.30648712200018],[23.7856588140001,67.33751882000003],[23.751449015000105,67.34622629900018],[23.751345662000062,67.36953237000002],[23.763231242000103,67.39754099600013],[23.765194946000122,67.42007192000013],[23.752585897000102,67.42730662100011],[23.730778442000084,67.43141489700004],[23.66266890500006,67.43622080500013],[23.59455936700007,67.45360992500015],[23.5538383380001,67.45200795500004],[23.514254191000134,67.44482493200017],[23.477150513000055,67.44381724100002],[23.443664184000056,67.46102549199999],[23.431261841000094,67.48552012200004],[23.443457479000102,67.50471791600013],[23.465988404000115,67.52244293200006],[23.484695272000124,67.54295847700003],[23.47342981000014,67.55499908500008],[23.499474731000134,67.56631622400009],[23.535441528000092,67.577013245],[23.55352827900012,67.58703847300002],[23.550324341000135,67.610912984],[23.54257287600012,67.62667429599999],[23.518801717000088,67.65282257200009],[23.51074019400008,67.66925567600005],[23.499474731000134,67.70899485300005],[23.488415975000123,67.72480784200006],[23.48459191900008,67.737158509],[23.484695272000124,67.79622467100013],[23.479734334000057,67.81699859600009],[23.476737102000044,67.84133819600011],[23.481284627000093,67.86464426700003],[23.498854614000066,67.88216257800009],[23.5325476480001,67.89316965799999],[23.60334436000005,67.90298818000015],[23.63610721900005,67.91347849600011],[23.661221964000077,67.93285715700007],[23.662152140000046,67.95042714500015],[23.64313521300008,67.96319122300011],[23.573682088000083,67.97331980400016],[23.484695272000124,68.01590118500003],[23.457306762000087,68.02432444300003],[23.382996053000085,68.05124786400013],[23.374831177000146,68.05998118100003],[23.371213826000087,68.06845611600004],[23.330906210000137,68.12778066000014],[23.31984745200012,68.13827097600007],[23.306514933000102,68.14560902900008],[23.272098429000067,68.14498891300012],[23.18724572700009,68.12225128200014],[23.165644979000035,68.12204457700007],[23.158823690000077,68.12757395500007],[23.15458622200012,68.12834910100018],[23.151692342000043,68.13026112900012],[23.149418579000013,68.139407857],[23.149831990000024,68.14483388300006],[23.154482869000105,68.1537739060001],[23.159753866000127,68.178733622],[23.15851363100009,68.18669179300004],[23.149418579000013,68.19402984700004],[23.155206340000092,68.217439271],[23.140013468000063,68.23418243500005],[23.094848267000085,68.25552480100005],[23.081619100000093,68.2652916470001],[23.076451457000104,68.273818258],[23.0735575760001,68.2819314580001],[23.06694299300011,68.29025136400016],[23.052163533000083,68.29820953400004],[22.903748820000146,68.33660512400017],[22.875120077000073,68.35107452500002],[22.833365519000036,68.38476755800015],[22.80825077300011,68.3948961390001],[22.7486161700001,68.38549102800006],[22.719057251000095,68.39877187200005],[22.690221801000064,68.41675527000014],[22.662213175000147,68.42740061500014],[22.64340295400012,68.42729726200012],[22.625832967000065,68.42507517500012],[22.60764286300011,68.42492014600008],[22.565164836000065,68.43628896100016],[22.52134322100008,68.43820098900007],[22.456851034000124,68.45179189100016],[22.377992798000037,68.4541173300001],[22.37396203600011,68.45633941700011],[22.37458215300009,68.46615793900015],[22.371068156000035,68.46838002599998],[22.303061971000147,68.47613149000006],[22.07217167200011,68.47700999000004],[22.038375285000143,68.488275452],[22.036721639000092,68.49292633100005],[22.03744510900009,68.50005767900008],[22.03610152200011,68.50651723300014],[22.028763469000122,68.50935943700001],[22.024215942000097,68.51044464200011],[22.0121236570001,68.51643910800013],[21.9984810790001,68.52584421900009],[21.969852336000116,68.54083038400016],[21.96396122200011,68.54692820300012],[21.91920943200006,68.568218893],[21.737101685000084,68.58790761400014],[21.716844523000074,68.61922353200008],[21.661550740000052,68.63353790300006],[21.572460571000136,68.66738596700004],[21.49566939300007,68.67549916600014],[21.463630005000084,68.68686798100005],[21.45153772000009,68.69647979800006],[21.421255330000065,68.72748565700009],[21.415260864000118,68.73875111900004],[21.406372518000126,68.74887969999999],[21.38590865100005,68.75384063800013],[21.314698527000104,68.7540473430001],[21.305396769000083,68.75580434199999],[21.300952596000087,68.75921498600009],[21.2937178950001,68.76820668600014],[21.288343547000068,68.77001536100012],[21.275734497000116,68.77642323900007],[21.216616658000078,68.81724762000006],[21.15284794100012,68.84174224900012],[21.072129353000093,68.86944081700015],[20.905731242000087,68.89460724000018],[20.884543905000044,68.90669952500015],[20.88764449000007,68.9270600380001],[20.91782352700008,68.932951152],[20.934256632000142,68.94902252200008],[20.934566691000043,68.96695424500014],[20.911208944000094,68.980700175],[20.86397668500004,68.98628123000002],[20.79535038300011,69.01124094699999],[20.67546105900004,69.01816558800006],[20.623164510000038,69.03635569300009],[20.716595499000107,69.09878082300014],[20.744397421000144,69.10436187800018],[21.03254520700005,69.04100657100015],[21.071509237000043,69.03666575199999],[21.099001099000105,69.04379709900003],[21.15636193800009,69.08761871400013],[21.033578735000045,69.18120473300014],[21.06303430200012,69.21494944300004],[21.079674113000067,69.23014231400005],[21.098380981000048,69.23949574900008],[21.313561646000096,69.29143056300002],[21.638813110000086,69.27138010700016],[21.662894328000107,69.26321523100013],[21.946100152000042,69.06570253200009],[22.02307906100009,69.01201609300008],[22.160745076000094,68.956102194],[22.1743876540001,68.94369985000013],[22.18865035000007,68.91863678000011],[22.2002258710001,68.90845652300005],[22.277223755000133,68.8574518840001],[22.35680546100005,68.83275055000009],[22.371378215000107,68.82262196900002],[22.396699666000103,68.73182647800014],[22.409205363000098,68.71291290300003],[22.42873905400009,68.71007070000014],[22.54294397000012,68.7260387170001],[22.570125773000115,68.7268138640001],[22.596480753000094,68.72464345300001],[22.85165897600012,68.67570587200011],[23.019297322000057,68.686712952],[23.071490519000037,68.6808735150001],[23.097948852000115,68.670124817],[23.175360148000067,68.62165232400012],[23.197581014000093,68.61803497300004],[23.48159468600008,68.68562774700011],[23.641584920000128,68.69498118100013],[23.734809204000072,68.715445048],[23.767985474000085,68.75595937100012],[23.78720910600012,68.79978098600013],[23.852631469000073,68.81667917900002],[23.92900923700003,68.81621409100008],[24.13116744000007,68.7761648560001],[24.16372359200011,68.75482249000011],[24.186874633000087,68.74453888],[24.332498820000065,68.70862376000015],[24.481326945000088,68.68919342100016],[24.663434693000085,68.66609405600009],[24.754178508000052,68.63787872400003],[24.82962609800003,68.59410878600012],[24.860942016000138,68.5634129840001],[24.87923547400004,68.55483469700006],[24.905177042000076,68.55695343000004],[24.927087850000106,68.57038930300008],[24.938146606000117,68.58826934800005],[24.951789185000052,68.60506418900012],[24.981244751000133,68.61508941700004],[25.006876261000087,68.614572653],[25.070955038000108,68.63141917000017],[25.097826782000112,68.63374460900012],[25.117567179000076,68.63767201700007],[25.13244999200012,68.64764556900009],[25.144232218000127,68.66800608400003],[25.132139933000133,68.67658437100015],[25.132760051000105,68.68268219000011],[25.138754517000052,68.68831492100004],[25.1430953360001,68.69596303400012],[25.1448523360001,68.7426268520001],[25.14960656700009,68.76464101200015],[25.16273238100004,68.78458811500008],[25.201283,68.81264841800011],[25.387214803000035,68.8745567840001],[25.43393029800012,68.88385854200006],[25.481059204000132,68.8877342730001],[25.602447144000106,68.87212799100007],[25.627768595000106,68.87414337200012],[25.651643107000098,68.88349680600008],[25.66621586100004,68.89739776700004],[25.678411499000077,68.91253896100007],[25.694844605000124,68.9256130980001],[25.7263672280001,68.94245961500009],[25.737425985000097,68.95253652000004],[25.742696981000023,68.96586903900005],[25.753859090000077,68.97837473600005],[25.795820353000067,68.99330922500008],[25.804708700000074,69.00612498],[25.80109135000009,69.0131529750001],[25.79292647300008,69.01816558800006],[25.773806193000066,69.02540028900002],[25.765848022000114,69.03067128600007],[25.76460778800009,69.03516713500007],[25.7657446690001,69.03919789600018],[25.765124553000103,69.04338368700012],[25.750241739000074,69.05924835200004],[25.749414917000138,69.06555287700002],[25.757166382000065,69.07511301700013],[25.759026734000145,69.08203765900011],[25.76047367400014,69.11516225200002],[25.7624373780001,69.11919301400012],[25.766364787000068,69.12270701200008],[25.769982137000053,69.12740956700004],[25.771222372000068,69.13510935500013],[25.76832849100009,69.14213735000014],[25.755306031000142,69.15955230800007],[25.749931681000103,69.165185039],[25.734118693000084,69.19133331400012],[25.73721927900004,69.2182050580001],[25.774529663000067,69.29882029300002],[25.786621949000075,69.31277292900002],[25.877365763000114,69.37080556299999],[25.872611532000118,69.37907379200011],[25.841398966000042,69.41777943900003],[25.865790242000084,69.44098215800012],[25.877469116000043,69.44702830100009],[25.886667521000046,69.4551931760001],[25.8857373460001,69.4791193650001],[25.89214522300003,69.49090159200001],[25.9064079180001,69.50185699500018],[25.901446981000078,69.50914337200005],[25.890594930000105,69.51482778000008],[25.886667521000046,69.52087392200005],[25.900206747000112,69.53203603200008],[25.960254761000044,69.5486758420001],[25.986196330000098,69.56541900600014],[26.003973023000125,69.58717478500016],[26.005109904000022,69.6108425900001],[25.9811320390001,69.63347686800013],[25.96438887500005,69.64267527300014],[25.961701701000038,69.65254547200011],[25.968833049000068,69.66319081600001],[25.981338745000073,69.67486969],[26.005109904000022,69.68933909100012],[26.031981649000045,69.69667714500011],[26.18142989100005,69.71124989800008],[26.198276408000112,69.71543569],[26.210988811000075,69.72287709600012],[26.222977742000126,69.7319204710001],[26.268246297000132,69.75827545200015],[26.31682214300011,69.79491404200012],[26.418728068000117,69.83563507100017],[26.44787357600012,69.85604726200002],[26.435884643000065,69.87423736600005],[26.445909871000083,69.8817562870001],[26.481049846000133,69.89940378900009],[26.500686890000082,69.91831736200014],[26.533863159000106,69.9252420050001],[26.706979207000128,69.93506052700009],[26.771884807000077,69.92839426700007],[26.86459232600006,69.93808359900011],[26.89570153800011,69.93433705700009],[26.951098673000075,69.92015187600013],[26.981071004000114,69.923278301],[27.00752933700008,69.92245147800016],[27.081219930000117,69.90294362400006],[27.1003402100001,69.90175506600004],[27.311800170000055,69.92947947200015],[27.352417847000112,69.948703105],[27.34507979300011,69.95074432400004],[27.330507039000054,69.95746226000006],[27.32316898600007,69.95968434700008],[27.334537801000124,69.96862436900001],[27.349110555000095,69.97128570600005],[27.364975220000105,69.97175079400016],[27.380943237000054,69.97425710100013],[27.445228719000113,70.00322174100002],[27.5633093670001,70.02358225500014],[27.570905802000055,70.04089386000014],[27.612557007000074,70.0620553590001],[27.665060262000054,70.06828237000018],[27.792184286000094,70.05892893600004],[27.866908407000096,70.07531036400009],[27.89729414900006,70.07068532400005]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Faroe Islands","adm0_a3":"FRO","geou_dif":0,"geounit":"Faroe Islands","gu_a3":"FRO","su_dif":0,"subunit":"Faroe Islands","su_a3":"FRO","brk_diff":0,"name":"Faeroe Is.","name_long":"Faeroe Islands","brk_a3":"FRO","brk_name":"Faeroe Islands","brk_group":null,"abbrev":"Faeroe Is.","postal":"FO","formal_en":"Føroyar Is. (Faeroe Is.)","formal_fr":null,"note_adm0":"Den.","note_brk":null,"name_sort":"Faeroe Islands","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":48856,"gdp_md_est":1000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"FO","iso_a2":"FO","iso_a3":"FRO","iso_n3":"234","un_a3":"234","wb_a2":"FO","wb_a3":"FRO","woe_id":23424816,"woe_id_eh":23424816,"woe_note":"Exact WOE match as country","adm0_a3_is":"FRO","adm0_a3_us":"FRO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":14,"abbrev_len":10,"tiny":3,"homepart":-99,"filename":"FRO.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.887766079999892,61.622219143000095],[-6.877023891999983,61.621730861000025],[-6.865834113999881,61.622503973000114],[-6.914173956999889,61.601385809000114],[-6.914173956999889,61.59520091400004],[-6.825672980999855,61.60016510600009],[-6.79906165299991,61.58344147300006],[-6.737456834999875,61.57904694200008],[-6.715565558999856,61.56785716399998],[-6.713205532999893,61.55442942899999],[-6.724273240999934,61.54645416900003],[-6.740630662999934,61.544867255],[-6.753773566999911,61.550482489],[-6.766102667999859,61.55801015800015],[-6.782622850999928,61.56159088700012],[-6.797718878999916,61.56061432500014],[-6.805572068999908,61.55418528900004],[-6.786203579999892,61.55170319200004],[-6.774525519999912,61.543280341000134],[-6.766428188999953,61.53359609600001],[-6.757191535999908,61.526922919000135],[-6.747222459999904,61.52594635600017],[-6.725331183999884,61.528469143000095],[-6.715565558999856,61.526922919000135],[-6.70571855399993,61.52106354400012],[-6.70164954299986,61.51471588700014],[-6.704660610999951,61.50934479400011],[-6.715565558999856,61.50580475500015],[-6.715565558999856,61.49896881700012],[-6.67398027299987,61.48847077000015],[-6.677601691999938,61.47992584800012],[-6.686594204999949,61.478420315000065],[-6.698068813999896,61.479559637000094],[-6.709380662999877,61.47915273600011],[-6.743641730999855,61.469956773000135],[-6.761097785999908,61.468898830000064],[-6.783843553999929,61.47231679900009],[-6.783843553999929,61.4648298200001],[-6.77245032499988,61.463568427000105],[-6.762684699999852,61.46002838700004],[-6.755197719999956,61.45368073100009],[-6.750355597999885,61.44432200700005],[-6.738840298999946,61.45571523600004],[-6.721180792999859,61.459377346000075],[-6.681385870999861,61.457993882],[-6.683827277999882,61.45429108300006],[-6.688303188999953,61.44432200700005],[-6.666249152999853,61.43984609600001],[-6.651234503999916,61.42523834800009],[-6.646351691999968,61.40814850500014],[-6.654774542999917,61.39594147300006],[-6.677601691999938,61.39411041900008],[-6.699777798999889,61.40424225500014],[-6.736683722999942,61.430731512000094],[-6.827463344999956,61.47186920799999],[-6.870472785999908,61.501532294000036],[-6.865834113999881,61.526922919000135],[-6.892241990999962,61.54242584800006],[-6.923085089999915,61.56610748900009],[-6.946034308999913,61.59072500200007],[-6.948963995999918,61.608832098000086],[-6.953521287999876,61.613674221000075],[-6.962554490999878,61.62872955900018],[-6.942128058999913,61.62872955900018],[-6.944325324999909,61.63239166900006],[-6.944691535999907,61.63336823100011],[-6.948963995999918,61.63613515800007],[-6.912220831999917,61.64789459800016],[-6.894642706999889,61.649115302000084],[-6.880034959999875,61.64232005400014],[-6.900217251999919,61.63157786700013],[-6.907338019999969,61.62872955900018],[-6.897857225999871,61.62433502800009],[-6.887766079999892,61.622219143000095]]],[[[-6.841867641999926,61.898871161000066],[-6.8216853509999,61.896877346000124],[-6.789702928999901,61.89940013200005],[-6.777658657999979,61.896877346000124],[-6.768218553999873,61.89179108300003],[-6.754058397999927,61.87982819200008],[-6.742909308999912,61.87641022300007],[-6.666859503999916,61.866034247000165],[-6.654774542999917,61.858954169000114],[-6.648182745999946,61.84479401200017],[-6.619211391999926,61.830877997000115],[-6.612538214999886,61.821112372000144],[-6.626454230999882,61.81049225500011],[-6.633168097999913,61.80369700699999],[-6.62987219999988,61.80060455900012],[-6.627674933999884,61.79531484600012],[-6.62987219999988,61.766546942],[-6.634632941999882,61.76333242400012],[-6.641916469999899,61.75629303600006],[-6.651031053999872,61.749253647999986],[-6.660959438999895,61.74603913000014],[-6.668039516999926,61.74884674700009],[-6.733225063999953,61.81391022300012],[-6.746652798999945,61.821112372000144],[-6.838286912999933,61.82900625200013],[-6.854359503999916,61.83222077],[-6.867665167999859,61.839341539000046],[-6.873280402999853,61.85211823100009],[-6.877552863999938,61.869574286000145],[-6.899077928999872,61.89386627800003],[-6.907338019999969,61.90985748900011],[-6.884266730999911,61.9078636740001],[-6.841867641999926,61.898871161000066]]],[[[-7.546254035999907,62.096991278000125],[-7.558705206999917,62.096136786000116],[-7.640695766999953,62.09983958500005],[-7.644154425999943,62.107001044000114],[-7.617258266999955,62.114447333000086],[-7.588042772999926,62.11513906500012],[-7.559722459999875,62.10773346600002],[-7.546009894999941,62.10179271000011],[-7.536732550999914,62.098781643],[-7.546254035999907,62.096991278000125]]],[[[-7.160145636999857,62.132554429],[-7.144154425999943,62.11615631700009],[-7.133900519999941,62.1091169290001],[-7.109038865999878,62.104925848000086],[-7.08263098899991,62.105698960000026],[-7.057972785999907,62.1031761740001],[-7.038319464999859,62.088609117000075],[-7.050689256999902,62.07583242400001],[-7.059803839999887,62.06289297100001],[-7.071848110999895,62.05255768400009],[-7.093006964999887,62.04767487200002],[-7.110910610999952,62.04930247600005],[-7.127268032999949,62.05304596600009],[-7.143544074999909,62.05402252800015],[-7.161203579999921,62.04767487200002],[-7.153228318999965,62.04413483300006],[-7.14500891799986,62.04169342700011],[-7.1361384759999,62.040472723],[-7.126454230999855,62.04022858300005],[-7.184885219999926,62.026556708000115],[-7.202137824999851,62.01972077],[-7.193592902999909,62.0305850280001],[-7.189116990999934,62.03400299700008],[-7.196034308999855,62.04791901200018],[-7.207427537999906,62.060207424000126],[-7.221424933999884,62.066229559000035],[-7.236317511999914,62.06134674700017],[-7.228016730999855,62.058050848000114],[-7.215687628999915,62.05117422100012],[-7.206613735999894,62.04254791900003],[-7.2084041009999,62.03400299700008],[-7.218983527999852,62.03286367400015],[-7.263579881999932,62.04767487200002],[-7.325754360999923,62.05390045799999],[-7.36620032499988,62.06745026200015],[-7.380279100999899,62.06818268400017],[-7.380279100999899,62.07493724200013],[-7.284820115999906,62.07493724200013],[-7.30711829299986,62.083197333000115],[-7.332834438999896,62.089504299000154],[-7.383697068999908,62.094875393],[-7.410755988999967,62.105698960000026],[-7.429554816999912,62.12848541900003],[-7.431548631999931,62.14817942900009],[-7.4076228509999,62.15009186400011],[-7.372059699999909,62.13296133000009],[-7.35985266799986,62.129584052000084],[-7.352406378999945,62.128851630000135],[-7.329172329999948,62.129584052000084],[-7.321359829999949,62.13174062700007],[-7.318837042999916,62.136419989],[-7.318023240999906,62.14109935100011],[-7.315174933999883,62.14325592700011],[-7.303618943999936,62.14549388199999],[-7.286122199999909,62.15525950700014],[-7.215891079999948,62.16376373900005],[-7.215891079999948,62.15753815300012],[-7.222645636999885,62.15753815300012],[-7.222645636999885,62.15009186400011],[-7.18390865799995,62.137437242000075],[-7.171131964999915,62.13580963700004],[-7.160145636999857,62.132554429]]],[[[-6.326079881999874,62.24713776200015],[-6.341867641999926,62.24433014500012],[-6.358509894999883,62.24583567900008],[-6.370350714999944,62.25592682500004],[-6.380726691999939,62.269110419000086],[-6.384348110999895,62.28021881700011],[-6.372466600999928,62.28799062700001],[-6.355620897999927,62.291896877],[-6.321441209999961,62.308091539000074],[-6.291330532999922,62.30768463700015],[-6.275786912999904,62.302720445000105],[-6.276844855999882,62.296291408000094],[-6.306141730999883,62.28180573100014],[-6.299549933999913,62.271551825000024],[-6.299427863999938,62.26227448100015],[-6.304107225999871,62.256008205000015],[-6.313140428999872,62.25079987200003],[-6.326079881999874,62.24713776200015]]],[[[-7.190256313999895,62.30980052300008],[-7.185617641999954,62.30882396],[-7.180816209999875,62.30914948100011],[-7.174956834999932,62.307766018000116],[-7.10643469999988,62.300034898000135],[-7.072621222999913,62.29026927299999],[-7.058216925999942,62.27667877800003],[-7.045480923999889,62.25238678600006],[-6.997222459999875,62.20718008],[-6.997385219999927,62.184230861000124],[-6.963775193999908,62.17890045800005],[-6.906605597999941,62.15546295799999],[-6.856068488999938,62.14789459800012],[-6.847320115999935,62.142035223],[-6.846343553999873,62.133368231000084],[-6.852691209999904,62.12274811400006],[-6.862212693999908,62.11542389500014],[-6.875477667999945,62.108954169000135],[-6.88931230399993,62.10431549700003],[-6.900502081999946,62.10228099200002],[-6.812977667999888,62.104234117000054],[-6.798085089999859,62.09174225500014],[-6.784087693999879,62.07672760600012],[-6.779367641999983,62.06610748900006],[-6.787587042999888,62.06134674700017],[-6.845936652999882,62.06134674700017],[-6.845936652999882,62.05390045799999],[-6.810536261999857,62.04633209800015],[-6.742909308999912,62.04710521000005],[-6.715565558999856,62.03400299700008],[-6.726144985999895,62.02171458500014],[-6.734038865999878,62.00535716400013],[-6.731922980999855,61.991115627000035],[-6.698841925999914,61.98208242400001],[-6.700754360999952,61.97370026200015],[-6.705881313999896,61.960760809000064],[-6.701893683999913,61.94403717700011],[-6.734486456999946,61.93821849200007],[-6.765004035999907,61.95368073100017],[-6.793853318999936,61.974514065000065],[-6.85692298099994,61.994777736000074],[-6.910145636999913,62.03790924700009],[-6.94554602799991,62.04767487200002],[-6.959828253999916,62.049994208],[-6.969146287999877,62.056952216000084],[-6.974110480999911,62.06858958499999],[-6.97569739499994,62.08490631700012],[-6.982167120999861,62.09406159100008],[-6.997670050999943,62.103745835000055],[-7.016021287999905,62.111883856000176],[-7.030873175999886,62.11660390800007],[-7.109445766999897,62.12274811400006],[-7.126942511999857,62.12714264500015],[-7.137115037999877,62.136664130000135],[-7.1361384759999,62.14614492400012],[-7.120228644999884,62.15009186400011],[-7.128814256999902,62.162054755000064],[-7.142486131999931,62.16079336100016],[-7.158558722999913,62.15412018400009],[-7.174956834999932,62.15009186400011],[-7.185617641999954,62.15241120000009],[-7.213693813999953,62.16474030200014],[-7.222645636999885,62.17059967699999],[-7.232085740999906,62.176418361000124],[-7.235218878999888,62.18016185100007],[-7.236317511999914,62.18764883000013],[-7.233957485999981,62.19839101800015],[-7.22826087099989,62.20111725500012],[-7.221587693999936,62.20140208500005],[-7.215891079999948,62.2047386740001],[-7.210357225999927,62.21845123900003],[-7.209462042999859,62.22870514500011],[-7.205067511999857,62.23566315300003],[-7.189116990999934,62.23944733300005],[-7.208159959999932,62.25421784100003],[-7.208119269999941,62.27521393400018],[-7.195423956999889,62.31460195500016],[-7.190256313999895,62.30980052300008]]],[[[-6.887521938999953,62.32143789300006],[-6.883208787999933,62.31122467700014],[-6.900705532999893,62.30414459800009],[-6.923410610999952,62.29791901200012],[-6.934641079999949,62.290350653000175],[-6.93423417899993,62.27358633000016],[-6.931304490999906,62.26007721600016],[-6.923207160999879,62.24900950700014],[-6.907338019999969,62.23944733300005],[-6.917388475999928,62.26992422100001],[-6.912953253999945,62.28180573100014],[-6.83849036399991,62.29417552299999],[-6.813832160999908,62.29340241100006],[-6.798085089999859,62.28046295800005],[-6.805978969999927,62.27948639500009],[-6.824777798999975,62.27301666900008],[-6.746652798999945,62.26679108300011],[-6.737131313999952,62.26211172100001],[-6.745432094999927,62.25202057500005],[-6.763498501999948,62.242417710000055],[-6.783843553999929,62.23944733300005],[-6.783843553999929,62.23200104400017],[-6.772287563999924,62.230169989],[-6.7533259759999,62.22109609600001],[-6.742909308999912,62.21841054900004],[-6.734730597999913,62.219183661000145],[-6.715728318999908,62.22455475499999],[-6.705637173999946,62.225816148000106],[-6.650949673999889,62.21625397300012],[-6.608631964999887,62.20237864800014],[-6.605539516999897,62.19599030200011],[-6.618763800999942,62.19228750200007],[-6.643950975999927,62.191066799000154],[-6.703968878999915,62.19513580900009],[-6.722401495999861,62.191066799000154],[-6.722401495999861,62.184230861000124],[-6.60008704299986,62.15338776200015],[-6.564116990999906,62.13580963700004],[-6.616200324999852,62.139146226000086],[-6.667795376999891,62.15009186400011],[-6.667795376999891,62.14325592700011],[-6.645822719999899,62.141017971000124],[-6.625477667999888,62.133449611000074],[-6.592030402999853,62.11660390800007],[-6.592030402999853,62.1091169290001],[-6.610096808999855,62.11041901200012],[-6.63068600199989,62.10907623900011],[-6.649159308999913,62.104193427000055],[-6.660959438999895,62.094875393],[-6.656605597999884,62.09296295800005],[-6.652251756999902,62.09003327000012],[-6.647328253999945,62.088609117000075],[-6.647328253999945,62.08124420800006],[-6.655751105999883,62.07705312700013],[-6.659535285999908,62.072943427],[-6.659087693999908,62.06806061400012],[-6.654774542999917,62.06134674700017],[-6.691395636999857,62.073391018000095],[-6.701242641999954,62.09418366100005],[-6.701527472999884,62.11912669500002],[-6.709380662999877,62.14325592700011],[-6.726796027999853,62.161281643000116],[-6.753570115999935,62.181708075000124],[-6.783843553999929,62.19481028899999],[-6.811838344999956,62.191066799000154],[-6.788400844999899,62.17804596600014],[-6.758656378999888,62.16559479400014],[-6.73302161399991,62.148830471000124],[-6.722401495999861,62.12274811400006],[-6.740305141999926,62.10114166900015],[-6.780873175999915,62.11668528900007],[-6.85960852799991,62.16376373900005],[-6.900257941999911,62.162543036000145],[-6.910755988999881,62.16718170800008],[-6.916981574999852,62.17157623900005],[-6.937977667999888,62.18211497600011],[-6.94554602799991,62.184230861000124],[-6.957508917999859,62.1896019550001],[-7.020334438999924,62.239691473000015],[-7.055083787999876,62.290350653000175],[-7.063588019999912,62.29637278899999],[-7.075021938999952,62.30194733299999],[-7.084055141999954,62.307766018000116],[-7.085560675999915,62.31460195500016],[-7.07713782499988,62.32160065300003],[-7.06663977799991,62.32050202],[-7.055246548999918,62.31639232000004],[-7.044585740999906,62.31460195500016],[-7.022857225999928,62.31899648600013],[-6.986439581999946,62.33226146000008],[-6.940663214999858,62.33698151200018],[-6.928456183999884,62.33502838700003],[-6.918120897999869,62.33104075700006],[-6.909331834999904,62.326239325000145],[-6.899973110999952,62.32241445500016],[-6.887521938999953,62.32143789300006]]],[[[-6.386586066999882,62.259955145],[-6.405262824999852,62.24461497600005],[-6.436512824999909,62.242377020000056],[-6.468576626999891,62.24892812700015],[-6.489654100999928,62.259955145],[-6.496490037999934,62.252508856000034],[-6.459339972999942,62.22809479400017],[-6.439849412999934,62.220119533000044],[-6.420765753999973,62.225816148000106],[-6.417795376999948,62.20831940300015],[-6.414296027999882,62.20258209800009],[-6.407093878999916,62.197821356000176],[-6.407093878999916,62.191066799000154],[-6.423817511999856,62.18549225500014],[-6.444162563999952,62.18309153900002],[-6.463856574999909,62.18553294500013],[-6.479074673999889,62.194484768000144],[-6.506459113999938,62.22174713700006],[-6.522124803999901,62.22955963700004],[-6.537464972999942,62.225816148000106],[-6.516021287999934,62.19179922100006],[-6.506988084999904,62.18109772300015],[-6.503163214999887,62.174058335],[-6.509917772999927,62.17381419500005],[-6.519398566999938,62.176418361000124],[-6.529367641999925,62.180609442000055],[-6.532093878999916,62.18390534100011],[-6.534087693999936,62.18756745000014],[-6.537464972999942,62.191066799000154],[-6.571278449999852,62.213324286],[-6.582753058999884,62.22858307500014],[-6.57835852799991,62.24567291900011],[-6.5713598299999,62.251776434000085],[-6.567494269999912,62.25112539300015],[-6.564808722999942,62.247707424000126],[-6.561024542999917,62.24567291900011],[-6.553089972999942,62.247015692],[-6.551503058999913,62.250881252],[-6.55142167899993,62.25649648600002],[-6.547963019999941,62.263373114000125],[-6.546009894999884,62.27195872600014],[-6.548898891999926,62.299505927000055],[-6.551096157999893,62.307766018000116],[-6.563303188999896,62.32831452000009],[-6.571685350999928,62.346747137000115],[-6.566517706999945,62.36127350500006],[-6.537464972999942,62.36981842700008],[-6.544911261999857,62.362372137000094],[-6.516916469999927,62.32306549700009],[-6.482736782999922,62.29511139500006],[-6.440174933999884,62.275132554],[-6.386586066999882,62.259955145]]],[[[-6.579701300999886,62.26679108300011],[-6.594471808999884,62.26117584800012],[-6.616200324999852,62.26630280200015],[-6.636382615999878,62.28009674700014],[-6.646311001999976,62.28961823100003],[-6.673329230999911,62.321030992000075],[-6.684315558999884,62.34406159100014],[-6.680816209999875,62.36611562700013],[-6.664296027999909,62.37421295800005],[-6.648060675999972,62.36652252800006],[-6.639271613999909,62.351996161],[-6.596262173999946,62.304754950000024],[-6.585275844999899,62.28986237200009],[-6.580718553999958,62.28156159100012],[-6.579701300999886,62.26679108300011]]],[[[-6.643299933999884,62.23851146000008],[-6.658599412999934,62.236476955000136],[-6.676665818999936,62.24140045799999],[-6.691029425999915,62.252264716000084],[-6.69896399599989,62.26845937700012],[-6.708973761999885,62.28327057500011],[-6.716053839999915,62.28961823100003],[-6.735829230999855,62.30414459800009],[-6.762277798999918,62.32770416900003],[-6.769439256999873,62.33600495000012],[-6.787220831999946,62.36127350500006],[-6.789051886999857,62.375311591000106],[-6.779123501999919,62.37958405200012],[-6.765288865999935,62.373724677000084],[-6.751942511999914,62.362127997000144],[-6.724354620999918,62.328843492000075],[-6.654693162999934,62.264064846000146],[-6.648182745999946,62.25983307500003],[-6.639149542999916,62.24900950700014],[-6.643299933999884,62.23851146000008]]],[[[-6.45482337099989,62.32420482000013],[-6.449126756999902,62.317816473000036],[-6.43846594999988,62.319077867000125],[-6.427479620999918,62.325873114000146],[-6.415516730999883,62.326239325000145],[-6.409169074999851,62.32404205900017],[-6.401519334999932,62.320013739],[-6.394602016999925,62.30988190300015],[-6.399403449999909,62.30109284100009],[-6.405913865999906,62.29425690300015],[-6.423695441999882,62.290350653000175],[-6.455718553999873,62.29596588700015],[-6.485463019999884,62.31000397300012],[-6.509266730999883,62.32977936400015],[-6.524077928999873,62.346502997000165],[-6.533436652999882,62.37189362200009],[-6.546294725999928,62.37811920800006],[-6.555897589999887,62.390936591000084],[-6.542551235999895,62.39891185100005],[-6.519032355999911,62.39533112200017],[-6.504628058999856,62.38760000200007],[-6.494740363999938,62.37494538],[-6.487049933999913,62.360337632000075],[-6.47476152299987,62.3493513040001],[-6.460438605999883,62.3398298200001],[-6.454701300999915,62.33104075700006],[-6.45482337099989,62.32420482000013]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Country","admin":"France","adm0_a3":"FRA","geou_dif":0,"geounit":"France","gu_a3":"FRA","su_dif":0,"subunit":"France","su_a3":"FRA","brk_diff":0,"name":"France","name_long":"France","brk_a3":"FRA","brk_name":"France","brk_group":null,"abbrev":"Fr.","postal":"F","formal_en":"French Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"France","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":64057792,"gdp_md_est":2128000,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"FR","iso_a2":"-99","iso_a3":"-99","iso_n3":"250","un_a3":"250","wb_a2":"FR","wb_a3":"FRA","woe_id":-90,"woe_id_eh":23424819,"woe_note":"Includes only Metropolitan France (including Corsica)","adm0_a3_is":"FRA","adm0_a3_us":"FRA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":3,"tiny":-99,"homepart":1,"filename":"FRA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[55.5013126960001,-20.87322356599999],[55.51400800900015,-20.875176690999933],[55.527110222,-20.87004973799993],[55.54249108200016,-20.875095309999963],[55.57837975400017,-20.87476979000003],[55.59229576900005,-20.880303643999866],[55.605804884000094,-20.888278903999918],[55.65064537900011,-20.89804452899986],[55.663828972000175,-20.90520598799999],[55.67383873800017,-20.91318124799986],[55.695323113000114,-20.93523528399986],[55.70281009200008,-20.94939544099988],[55.70655358200011,-20.9821102839999],[55.71208743600019,-20.993584893999852],[55.73658287900011,-21.017836195999934],[55.74000084700006,-21.02467213299994],[55.74146569100011,-21.04452890399986],[55.743662957000105,-21.05462004999991],[55.74683678500017,-21.062595309999878],[55.753103061000125,-21.066989841999956],[55.77051842500006,-21.07382577899996],[55.774180535000106,-21.079278252999913],[55.77588951900006,-21.08391692499994],[55.78785241000016,-21.10344817499991],[55.80176842500006,-21.111993096999853],[55.83757571700008,-21.12615325299987],[55.8498641290001,-21.137627862999988],[55.85450280000006,-21.156996351999837],[55.84913170700011,-21.173760674999855],[55.84058678500017,-21.190524997999873],[55.82422936300017,-21.26433684699998],[55.82195071700019,-21.28508879999997],[55.82252037900017,-21.303643487999892],[55.82081139400006,-21.32496510199986],[55.812022332000105,-21.342543226999894],[55.79127037900017,-21.349867445999976],[55.7557072270001,-21.34889088299991],[55.73796634200013,-21.351657809999963],[55.70655358200011,-21.367445570999834],[55.68311608200011,-21.37078215899986],[55.659922722000175,-21.369561455999843],[55.64380944100011,-21.36353932099992],[55.62680097700016,-21.369398695999873],[55.601573113000114,-21.37037525799985],[55.57504316500009,-21.367933851999823],[55.554453972000175,-21.36353932099992],[55.537119988000114,-21.35507577899989],[55.505625847000175,-21.33367278399993],[55.475433790000096,-21.326918226999908],[55.43433678500017,-21.311618747999944],[55.4178166020001,-21.302015882999953],[55.40984134200008,-21.29338958099987],[55.40414472700016,-21.284437757999925],[55.397797071000156,-21.27760182099992],[55.38705488400015,-21.274834893999866],[55.354502800000056,-21.274590752999913],[55.349619988000114,-21.271416924999855],[55.34229576900012,-21.25750090899987],[55.30762780000012,-21.219414971999967],[55.29558353000019,-21.199639580999957],[55.29102623800023,-21.17644622199984],[55.290782097,-21.158868096999896],[55.288422071000156,-21.143649997999916],[55.2463485040001,-21.090915623],[55.233246290000096,-21.06926848799992],[55.22543379000015,-21.048272393999895],[55.22543379000015,-21.029717705999886],[55.231211785000106,-21.009698175],[55.24187259200002,-20.993422132999967],[55.27540123800006,-20.98023853999993],[55.28785241000017,-20.96477629999991],[55.292328321000156,-20.946709893999895],[55.287445509000094,-20.932224216999856],[55.29346764400011,-20.926364841999984],[55.29542076900006,-20.92180754999995],[55.29346764400011,-20.917250257999825],[55.287445509000094,-20.911716403999975],[55.30298912900017,-20.90520598799999],[55.33594811300017,-20.905043226999933],[55.36402428500016,-20.88616301899991],[55.407969597000175,-20.8632138],[55.45582116000011,-20.86142343500002],[55.47250410200016,-20.8632138],[55.5013126960001,-20.87322356599999]]],[[[45.282562696000156,-12.804864190999908],[45.27572675900015,-12.804864190999908],[45.26221764400023,-12.763360283999916],[45.277110222,-12.747491143999978],[45.282562696000156,-12.743422132999838],[45.28931725400017,-12.75986093499992],[45.2908634770001,-12.774021091999854],[45.2884220710001,-12.788344007999838],[45.282562696000156,-12.804864190999908]]],[[[45.09017988400009,-12.663262627999885],[45.083994988000114,-12.667657158999958],[45.09050540500019,-12.667087497999987],[45.09351647200012,-12.66904062299993],[45.09498131600017,-12.67205169099985],[45.097178582000225,-12.674493096999882],[45.110606316000116,-12.685804945999946],[45.128916863000114,-12.707452080999857],[45.13868248800023,-12.71493905999992],[45.15259850400011,-12.718194268999952],[45.183767123000194,-12.717950127999913],[45.200694207000105,-12.722914320999875],[45.217621290000096,-12.734063408999987],[45.22478274800014,-12.745700778999902],[45.224945509000094,-12.759535414999903],[45.2205509770001,-12.777520440999934],[45.19695071700008,-12.811700127999927],[45.18816165500018,-12.817071221999967],[45.18873131600017,-12.828789971999967],[45.19516035200016,-12.840508721999868],[45.2131453790001,-12.851820570999848],[45.21094811300023,-12.865329685],[45.204356316000116,-12.878513278999959],[45.200694207000105,-12.883965752999984],[45.19166100400016,-12.904961846999852],[45.17530358200005,-12.924004815999934],[45.16822350400011,-12.944268487999935],[45.18637129000009,-12.968845309999864],[45.18230228000007,-12.975762627999956],[45.17807050900015,-12.981052342000012],[45.17302493600019,-12.98503997199991],[45.16586347700016,-12.989190362999949],[45.15992272200006,-12.97861093499999],[45.15308678500011,-12.97966887799994],[45.14429772200006,-12.985772393999852],[45.13184655000012,-12.989190362999949],[45.120616082000225,-12.98626067499984],[45.11329186300022,-12.981052342000012],[45.106700066000116,-12.978122654],[45.097178582000225,-12.98235442499984],[45.09848066500015,-12.967868747999887],[45.09449303500017,-12.958184502999927],[45.08497155000006,-12.953708591999868],[45.07032311300006,-12.955010674999867],[45.07032311300006,-12.948907158999958],[45.08838951900005,-12.940362237999949],[45.09017988400009,-12.924004815999934],[45.081228061000076,-12.908298434999878],[45.06251061300006,-12.89853281000002],[45.06527754000015,-12.89316171699997],[45.07292728000007,-12.888360283999887],[45.083994988000114,-12.88738372199991],[45.09009850400011,-12.891045830999872],[45.107920769000174,-12.911716403999973],[45.124766472000175,-12.921482028999918],[45.1341251960001,-12.916924737999878],[45.136485222000054,-12.903903903999888],[45.13184655000012,-12.88738372199991],[45.123871290000096,-12.875095309999864],[45.11329186300022,-12.863376559999963],[45.083994988000114,-12.839043877999899],[45.09799238400015,-12.83342864399998],[45.10450280000006,-12.832777601999936],[45.10450280000006,-12.825941664999931],[45.09864342500012,-12.817478122999972],[45.09424889400023,-12.802829684999963],[45.09083092500011,-12.773858330999886],[45.08716881600017,-12.759698174999869],[45.07837975400011,-12.753594658999958],[45.06714928500011,-12.750095309999978],[45.05665123800023,-12.743422132999838],[45.04948978000019,-12.734307549999926],[45.04517662900017,-12.725192966999856],[45.042979363000114,-12.713962497999944],[45.042491082000105,-12.698418877999941],[45.09083092500011,-12.647230726999894],[45.09473717500011,-12.65357838299991],[45.09595787900011,-12.656508070999847],[45.097178582000225,-12.660821221999853],[45.09278405000006,-12.661879164999903],[45.09017988400009,-12.663262627999885]]],[[[-53.81565116999994,5.715919366000093],[-53.80828775299997,5.71483613400008],[-53.81142424099997,5.720604829000166],[-53.83242275599994,5.731693648000174],[-53.82452494799988,5.733223204000168],[-53.81033328199993,5.731059818000134],[-53.776742030999856,5.714155674000096],[-53.75021302699989,5.696698701000144],[-53.732403966999954,5.684202814000159],[-53.7145809539999,5.674414258000084],[-53.69559610499991,5.66345642200018],[-53.58258299399992,5.617772066000142],[-53.54713874999993,5.599942349000088],[-53.51732237399992,5.580774589000072],[-53.4952102499999,5.5721046970001],[-53.48180091099991,5.569525458000115],[-53.448249392999855,5.560945511000127],[-53.40781005799994,5.561831606000083],[-53.33639431799992,5.543917484000147],[-53.30270985599986,5.535476236000179],[-53.277452077999925,5.538191937000164],[-53.26391785099992,5.529887600000151],[-53.247670050999915,5.509751695000148],[-53.23009192599997,5.495306708000101],[-53.20791581899991,5.502346096000067],[-53.20777458599985,5.51403708400008],[-53.22520761399997,5.517059900000078],[-53.24402696699991,5.529744527000132],[-53.264781955999894,5.54582513300015],[-53.2827064329999,5.5503008270001],[-53.28951169699988,5.548901656000155],[-53.29141073399995,5.554709668000115],[-53.28116976599995,5.561878547000147],[-53.27147561499987,5.560359586000146],[-53.25166383599986,5.54862687700016],[-53.22118648499986,5.536335553000129],[-53.17763212799986,5.524431953000132],[-53.15539879699986,5.51413035300007],[-53.130246847999864,5.504770442000108],[-53.08250891799992,5.472154039000145],[-53.04621334499993,5.45966217700014],[-53.005848761999886,5.450751044000114],[-53.00136455599994,5.458642102000112],[-52.99458056699987,5.457623554000136],[-52.96509665699991,5.443866856000099],[-52.89651900699991,5.405668008000177],[-52.829101661999886,5.341883111000157],[-52.78316844699995,5.316884190000124],[-52.75294894299989,5.267352196000147],[-52.681223110999895,5.210353908000144],[-52.54092363199996,5.079006252000141],[-52.52985592399992,5.073431708000129],[-52.526112433999884,5.070746161000145],[-52.526682094999956,5.064520575000088],[-52.52798417899996,5.057928778000118],[-52.52672278599994,5.053615627000112],[-52.521839972999885,5.052679755000128],[-52.509755011999886,5.054510809000106],[-52.504994269999884,5.053615627000112],[-52.479725714999915,5.039618231000148],[-52.40233313699994,4.973822333000086],[-52.380034959999904,4.936835028000132],[-52.38898678299992,4.895900783000116],[-52.370716925999936,4.907212632000096],[-52.34512285099987,4.942857164000145],[-52.32371985599994,4.950588283000158],[-52.29995683499993,4.945054429000137],[-52.27912350199995,4.931219794000143],[-52.26427161399988,4.912502346000082],[-52.258615688999896,4.892482815000108],[-52.27651933499995,4.859320380000084],[-52.31314042899987,4.810777085000112],[-52.34300696499985,4.761175848000093],[-52.34048417899996,4.724595445000147],[-52.33433997299996,4.724595445000147],[-52.331654425999886,4.738348700000174],[-52.32457434799994,4.747992255000142],[-52.317209438999924,4.755194403000175],[-52.31383216099991,4.761867580000128],[-52.30858313699994,4.787258205000157],[-52.30016028599988,4.813381252000113],[-52.2857966789999,4.829575914000159],[-52.24274654899997,4.856187242000189],[-52.231922980999876,4.875433661000145],[-52.21349036399993,4.866685289000173],[-52.19286048099991,4.849676825000117],[-52.176136847999885,4.82916901200015],[-52.169260219999956,4.809963283000101],[-52.15949459499992,4.795599677000125],[-52.09410559799997,4.758124091000099],[-52.060170050999915,4.73045482000019],[-52.02452551999997,4.693548895000134],[-51.99632727799991,4.652289130000099],[-51.98485266799985,4.611314195000161],[-51.97960364499997,4.571437893000108],[-51.95604407499991,4.494045315000108],[-51.95075436099995,4.454006252000084],[-51.96182206899988,4.408392645000133],[-51.98839270699992,4.38568756700009],[-52.01992753799993,4.367010809000106],[-52.04629472599993,4.333563544000143],[-51.98558508999989,4.352606512000136],[-51.95140540299988,4.370672919000157],[-51.93651282499994,4.391913153000147],[-51.934315558999856,4.402167059000163],[-51.92491614499991,4.429348049000083],[-51.92275956899991,4.447088934000178],[-51.93126380099994,4.590399481000119],[-51.925404425999915,4.626206773000121],[-51.90916907499987,4.655707098000107],[-51.896392381999924,4.664699611000117],[-51.88121497299994,4.667792059000107],[-51.86481686099992,4.664780992000189],[-51.84829667899996,4.655707098000107],[-51.801503058999884,4.612697658000144],[-51.79308020699991,4.601141669000128],[-51.80077063699986,4.589667059000178],[-51.773548956999946,4.551988023000192],[-51.76512610599991,4.529038804000109],[-51.76357988199996,4.506089585000126],[-51.75804602799994,4.477769273000177],[-51.74754798099988,4.457180080000143],[-51.73102779899989,4.457098700000159],[-51.73302161399994,4.447902736000088],[-51.73770097599996,4.440375067000133],[-51.74242102799985,4.436021226000136],[-51.74469967399992,4.436590887000108],[-51.743723110999944,4.428900458000086],[-51.73843339799987,4.413031317000062],[-51.73094641799992,4.399359442000119],[-51.71426347599987,4.395249742000175],[-51.69762122299991,4.393052476000179],[-51.69005286399988,4.385077216000127],[-51.694081183999934,4.371039130000085],[-51.70311438699986,4.363511460000126],[-51.71226966099993,4.353745835000083],[-51.716786261999886,4.333563544000143],[-51.714670376999976,4.316148179000081],[-51.70848548099991,4.300360419000128],[-51.66930091099987,4.242092190000122],[-51.65672766799989,4.217271226000165],[-51.65070553299998,4.190008856000161],[-51.649037238999966,4.15232982000019],[-51.65249589799987,4.122056382000095],[-51.67223059799991,4.060777085000083],[-51.68321692599994,4.039374091000127],[-51.75794714399993,4.002521668000156],[-51.7831910809999,3.980946757000182],[-51.7975312909999,3.949966736000178],[-51.806238769999936,3.917513937000152],[-51.8186152749999,3.891081442000171],[-51.83541011599996,3.867542827000178],[-51.89972143499995,3.796668600000131],[-51.93093400099994,3.781398214000163],[-51.93865962799992,3.773569234000149],[-51.94098506699996,3.763569845000134],[-51.9381945399999,3.742511699000204],[-51.9400807289999,3.733959249000093],[-51.94871069399994,3.725096741000087],[-51.9558162029999,3.724424947000102],[-51.96330928599991,3.725458476000085],[-51.9728435879999,3.721686096000141],[-51.988424031999955,3.704555359000096],[-51.99537451199992,3.685331726000172],[-52.00310013899993,3.64231109600017],[-52.012763630999956,3.619108379000167],[-52.05449234999988,3.556709087000129],[-52.06599035699992,3.528855489000151],[-52.07418107099994,3.516634013000129],[-52.09358557099992,3.506867168000085],[-52.09379227799988,3.499399923000155],[-52.0920352789999,3.490201518000148],[-52.0927587489999,3.481390686000153],[-52.22791845699993,3.260112203000133],[-52.23807287599996,3.249725240000203],[-52.25119868999994,3.2430589800001],[-52.25926021399994,3.243317363000173],[-52.26701167799993,3.244919332000109],[-52.27946569799994,3.242490539000144],[-52.299102741999945,3.225333964000185],[-52.31935990399995,3.177636617000132],[-52.35532670099994,3.151591695000064],[-52.36183793099991,3.131954651000115],[-52.361114461999904,3.109320373000159],[-52.351554320999924,3.065963847000176],[-52.353207967999964,3.05841908800005],[-52.41656327299998,2.942508850000138],[-52.422196003999915,2.927471008000069],[-52.41785518399993,2.915482076000018],[-52.41067215999996,2.905560201000099],[-52.4092768969999,2.897343649000163],[-52.422351033999945,2.890522359000116],[-52.43346146699989,2.886594951000063],[-52.44162634299997,2.881323954000123],[-52.44844763199992,2.874347636000039],[-52.455268920999885,2.865045878000103],[-52.533300333999904,2.689862773000186],[-52.53960485899992,2.65942535400012],[-52.54296382699991,2.651518860000166],[-52.55102534999992,2.645989482000175],[-52.57159256999997,2.638599752000161],[-52.57577836099994,2.63374216700015],[-52.57205765799992,2.622993470000125],[-52.5557795819999,2.598137105000163],[-52.551903849999945,2.586561585000126],[-52.55345414199988,2.573384094000062],[-52.55794999299991,2.565632630000138],[-52.563686075999954,2.559328105000134],[-52.56906042499992,2.550388082000097],[-52.59040279099992,2.504706116000179],[-52.61918656499992,2.463468323000171],[-52.656083536999944,2.430912171000131],[-52.677219197999904,2.390397847000045],[-52.690603393999936,2.372982890000017],[-52.70770829299997,2.358926901000089],[-52.81969112199991,2.29154083300017],[-52.8627375899999,2.274229228000166],[-52.88015254699994,2.260379944000192],[-52.89239986199996,2.236867167000113],[-52.900306355999895,2.214129538000051],[-52.906714232999946,2.204982808000153],[-52.9171528729999,2.195732727000134],[-52.92314733899991,2.193665670000087],[-52.9341027429999,2.196404521000118],[-52.93906367999995,2.195732727000134],[-52.944386352999885,2.190978495000138],[-52.95322302299991,2.179041240000103],[-52.95968257699994,2.175217184000076],[-52.98092159099991,2.173253479000124],[-53.01911047399997,2.181986796000103],[-53.06122676599994,2.186275940000158],[-53.09223262599997,2.211907450000126],[-53.11336828599991,2.219348856000067],[-53.13228186099994,2.219297181000144],[-53.25284297699991,2.196507873000144],[-53.26850093599995,2.195732727000134],[-53.27971472199991,2.204982808000153],[-53.27222163899995,2.219968974000039],[-53.2543415939999,2.234179993000083],[-53.234652872999874,2.241259665000114],[-53.234187784999925,2.250974834000061],[-53.29743973799992,2.303684794000162],[-53.32255448499993,2.338566386000139],[-53.330926066999915,2.345697734000083],[-53.3441035569999,2.349625143000154],[-53.348806111999885,2.347661438000117],[-53.3510798749999,2.3417186490002],[-53.378520060999925,2.30756052700012],[-53.39040563999987,2.299033915000024],[-53.42544226099989,2.286011455000079],[-53.462132527999955,2.258984681000129],[-53.4732429609999,2.254127096000104],[-53.511535196999965,2.252266744000096],[-53.53179235899998,2.247047424000172],[-53.54734696499992,2.251749980000071],[-53.57902461799992,2.270405172000125],[-53.59530269399993,2.273867493000168],[-53.62946081599992,2.275314433000161],[-53.64599727399991,2.278466695000034],[-53.71317663599987,2.307353821000078],[-53.742167114999944,2.308542379000187],[-53.748730021999926,2.31267649400003],[-53.74816158099989,2.319342753000129],[-53.738033,2.338824768000123],[-53.737361205999946,2.349056702000098],[-53.7482649339999,2.364662985000052],[-53.764801391999896,2.368693746000048],[-53.78345658399988,2.364094544000181],[-53.800974893999914,2.35381093400018],[-53.81182694499997,2.340426737000143],[-53.82107702699997,2.323631897000098],[-53.830895548999955,2.310144348000122],[-53.843452921999955,2.306630351000081],[-53.866810668999925,2.304925028000113],[-53.879368041999925,2.290610657000116],[-53.88846309399992,2.273815817000155],[-53.901227173999956,2.26451405900012],[-53.92163936399992,2.265960999000114],[-53.932904825999884,2.269630026000115],[-53.93776241099991,2.264617412000149],[-53.938744262999954,2.240122783000018],[-53.946133992999954,2.22198435500016],[-53.963910685999906,2.209323629000124],[-54.00597530199994,2.194337464000071],[-54.011711384999984,2.190565084000127],[-54.02137487899992,2.180591532000122],[-54.02798946099992,2.178576152000175],[-54.033260457999944,2.180333150000067],[-54.043337361999875,2.187722880000152],[-54.048453328999955,2.188808086000151],[-54.06927893099993,2.188342998000124],[-54.07666866099993,2.183692119000156],[-54.084213419999884,2.169326070000153],[-54.098424438999956,2.127959086000117],[-54.11139522299996,2.114290670000116],[-54.111526696999846,2.114270443000123],[-54.134908,2.110673320000132],[-54.14813716599994,2.114394023000131],[-54.15738724899995,2.121654562000117],[-54.18854813699994,2.161316224000174],[-54.19449092599987,2.163073222000165],[-54.210045532999885,2.161574605000069],[-54.229785929999935,2.157233785000088],[-54.246477416999966,2.151601054000139],[-54.263789021999884,2.148190410000125],[-54.31401851399994,2.154856669000125],[-54.32285518499992,2.157337138000102],[-54.33505082199994,2.163900045000091],[-54.360940714999884,2.188187968000179],[-54.37391149899992,2.196507873000144],[-54.38052608299998,2.197696432000072],[-54.38781245999988,2.19630116800009],[-54.40254024299989,2.197127991000116],[-54.41148026599989,2.199711812000118],[-54.42708654899994,2.207153219000133],[-54.43395951399992,2.209323629000124],[-54.47664424699991,2.214129538000051],[-54.49266394099996,2.222707825000072],[-54.51142248599987,2.243430074000017],[-54.54578731399991,2.268596497000132],[-54.549146280999906,2.279448548000175],[-54.52640865099994,2.282652486000145],[-54.5442886969999,2.300222473000133],[-54.56464921099993,2.314846904000191],[-54.58816198799991,2.324355367000095],[-54.6152921149999,2.326267396000105],[-54.59922074399992,2.345801087000112],[-54.58475134299988,2.348333231000197],[-54.551161661999856,2.338101298000126],[-54.53157629399993,2.340168356000092],[-54.52031083199998,2.348901672000068],[-54.49338741099987,2.417062886000167],[-54.483310505999924,2.422850647000061],[-54.472613484999926,2.428690084000138],[-54.45054764799991,2.428948466000023],[-54.43545813099993,2.431118876000184],[-54.42346919799988,2.435924784000107],[-54.375616821999955,2.48377716100019],[-54.35944209799996,2.508013408000096],[-54.32042639199997,2.606663717000089],[-54.28533809499992,2.67797719300016],[-54.21252600199995,2.776420797000114],[-54.20472285999992,2.791768698000084],[-54.188909871999925,2.838277486000038],[-54.182191935999924,2.846545716000079],[-54.170203002999955,2.853056946000052],[-54.18338049399992,2.863857320000164],[-54.18963334199992,2.870626933000111],[-54.19133866399988,2.87734487000013],[-54.190666869999916,2.887835185000184],[-54.18704951999993,2.899307353000111],[-54.17325191299997,2.919512837000183],[-54.170203002999955,2.925403951000192],[-54.1629683029999,2.955996399000114],[-54.16343339099993,2.969742330000145],[-54.16875606299996,2.971395976000011],[-54.179763143999935,2.98374664300006],[-54.18513749199991,2.997802633000077],[-54.17361364799987,3.004520569000178],[-54.16916947399997,3.010721741000168],[-54.17087479699992,3.024829407000198],[-54.1770242929999,3.048910625000147],[-54.17919470299998,3.051597799000092],[-54.18854813699994,3.058315735000107],[-54.190666869999916,3.059142558000048],[-54.188496459999925,3.064620260000126],[-54.1840006109999,3.067979228000127],[-54.17945308399996,3.070304668000076],[-54.1770242929999,3.072785136000135],[-54.17469885299997,3.09392079700018],[-54.17707596799991,3.116555074000046],[-54.18797969599989,3.130972799000062],[-54.21118241399998,3.12740712500009],[-54.19046016499996,3.178101705000145],[-54.17655920499996,3.200580953000156],[-54.14002396699996,3.245022685000052],[-54.11428910399988,3.285381979000192],[-54.080804556999844,3.309314029000063],[-54.080234334999915,3.309721578000122],[-54.0694856369999,3.327084859000138],[-54.06271602399994,3.346696066000163],[-54.06033890799989,3.36421437600012],[-54.055688028999924,3.377676086000179],[-54.019359497999886,3.415374044000117],[-54.003029744999935,3.455397441000017],[-54.00628535999991,3.531025900000059],[-53.998275512999925,3.573038839000162],[-53.99026566599985,3.595698955000116],[-53.98881872599986,3.610995178000167],[-53.994813191999896,3.62360422800019],[-54.008817504999904,3.637918599000087],[-54.01786088099996,3.641458435000147],[-54.02840287299992,3.639830627000109],[-54.039409952999904,3.636445821],[-54.05010697499992,3.634533793000159],[-54.05067541599996,3.640554098000024],[-54.07403316299991,3.676107483000167],[-54.094445352999884,3.747059225000058],[-54.10478063999997,3.758040467000043],[-54.12550288999992,3.78873626700016],[-54.13609655799988,3.795738424000163],[-54.170203002999955,3.805815328000107],[-54.18162349499994,3.811008810000118],[-54.18735957799993,3.814677837000204],[-54.19748815999995,3.826899312000137],[-54.20704829899995,3.84648468000016],[-54.21454138199991,3.858215230000141],[-54.21800370299994,3.8576467890001],[-54.22224117099998,3.866199239000125],[-54.24105139199992,3.876353658000169],[-54.26580440299992,3.922526551000118],[-54.27252233899995,3.929528707000131],[-54.28647497599994,3.940716655000159],[-54.29314123599994,3.949811707000137],[-54.30388993399987,3.984460755000142],[-54.31019445899997,3.994201762000102],[-54.34435258099995,4.024949239000151],[-54.35386104299994,4.041718241000112],[-54.35515295399992,4.066522929000143],[-54.351018839999966,4.082077535000167],[-54.33758296699991,4.116649068000157],[-54.33468908699993,4.131712748000155],[-54.3385648199999,4.15233164500016],[-54.34890010599992,4.160522359000182],[-54.38248978699994,4.169565735000148],[-54.394892129999896,4.177911479000116],[-54.40657100399997,4.191528219000119],[-54.41055008999987,4.208581441000149],[-54.39959468599997,4.22726247200012],[-54.39318680899992,4.244393209000165],[-54.39411698399991,4.269818013000176],[-54.4029536539999,4.312941997000109],[-54.43344274899996,4.376374817000141],[-54.4508060309999,4.484223532000143],[-54.44796382699991,4.509544983000126],[-54.42817175299992,4.546157736000168],[-54.42346919799988,4.563391825000153],[-54.42346919799988,4.604345398000177],[-54.42527787299994,4.61605011000016],[-54.43773189399994,4.648735453000143],[-54.43855871599996,4.673281759000105],[-54.43514807099993,4.692376200000182],[-54.43545813099993,4.709403585000118],[-54.44734370899994,4.727852071000129],[-54.45700720299996,4.733329773000207],[-54.467290812999885,4.736197815000195],[-54.47540401199998,4.741727194000191],[-54.47865962699987,4.755188904000164],[-54.47865962699987,4.878669739000202],[-54.48496415299987,4.892751567000133],[-54.486721150999955,4.902957662000119],[-54.48212194899992,4.912802022000093],[-54.45550858599997,4.931431377000152],[-54.4508060309999,4.936728211000087],[-54.44884232599995,4.951481832000184],[-54.45757564299993,4.991350199000124],[-54.45478511599987,5.008532613000099],[-54.44863561999992,5.02429392500008],[-54.430238810999896,5.053387757000095],[-54.375616821999955,5.114882711000092],[-54.37230952999997,5.121058045000083],[-54.36988073799992,5.13237518300015],[-54.36543656399991,5.138757222000081],[-54.350036986999925,5.149583436000128],[-54.34357743299995,5.156378886000169],[-54.33200191299991,5.196195577000182],[-54.32065194299989,5.21245441000012],[-54.311331339999896,5.225806173000137],[-54.269163370999934,5.269085185000094],[-54.19046016499996,5.325748393000183],[-54.17096517463119,5.348376149408509],[-54.13752193899995,5.360052802000097],[-54.106678839999915,5.381170966000113],[-54.08043372299988,5.407945054000109],[-54.061105923999946,5.43650950700011],[-54.03311113199993,5.505438544000143],[-54.013010219999984,5.540594794000114],[-54.00719153599994,5.558172919000143],[-53.99192502099993,5.661347855000145],[-53.974242129999936,5.692195860000168],[-53.954585181999875,5.726126182000129],[-53.94434961699994,5.744640779000107],[-53.93402292099992,5.744765375000114],[-53.88977661899986,5.738260363000122],[-53.85888293399989,5.733765930000132],[-53.83559892199992,5.723940846000146],[-53.81565116999994,5.715919366000093]]],[[[-60.97899329299988,14.784735419000098],[-60.961293097999885,14.749945380000142],[-60.94688880099992,14.761379299000112],[-60.92658443899992,14.771144924000138],[-60.90318762899995,14.77708567900008],[-60.87930253799996,14.777289130000126],[-60.88630123599995,14.771633205000127],[-60.892445441999904,14.767767645000118],[-60.895375128999945,14.763820705000143],[-60.892974412999905,14.757391669000128],[-60.9141332669999,14.73631419500019],[-60.926177537999905,14.755560614000144],[-60.933827277999846,14.750311591000155],[-60.936675584999875,14.73126862200017],[-60.93455969999988,14.708970445000132],[-60.926177537999905,14.712713934000163],[-60.91893469999988,14.712225653000175],[-60.91266842399994,14.708563544000128],[-60.90729732999998,14.702826239000148],[-60.93455969999988,14.68846263200008],[-60.92711341099991,14.681097723000091],[-60.939279751999976,14.6749942080001],[-60.937489386999886,14.666408596000082],[-60.9288630849999,14.66351959800015],[-60.92027747299988,14.67487213700012],[-60.886789516999926,14.660549221000139],[-60.89435787699997,14.65981679900011],[-60.89830481699997,14.65802643400012],[-60.9016820949999,14.655910549000113],[-60.90729732999998,14.653753973000107],[-60.90103105399992,14.638576565000122],[-60.89338131399989,14.630804755000128],[-60.87315833199988,14.619614976000108],[-60.87022864499996,14.614447333000115],[-60.86876380099991,14.60761139500009],[-60.86506100199995,14.601711330000157],[-60.85545813699988,14.59910716400016],[-60.84837805899991,14.596096096000151],[-60.844960089999915,14.588609117000175],[-60.84430904899995,14.579494533000101],[-60.845204230999855,14.571234442000103],[-60.83214270699997,14.578599351000108],[-60.83584550699993,14.565659898000192],[-60.83641516799989,14.552964585000138],[-60.83299719999988,14.54100169500019],[-60.82477779899997,14.530218817000105],[-60.830922003999945,14.527085679000123],[-60.83340410099989,14.524359442000147],[-60.83507239499991,14.521185614000089],[-60.83836829299994,14.516587632000066],[-60.82526607999995,14.510402736000088],[-60.81981360599994,14.496649481000162],[-60.81663977799988,14.480902411000114],[-60.81041419199991,14.468736070000134],[-60.81041419199991,14.461981512000177],[-60.822661912999884,14.45669179900011],[-60.83482825399995,14.42755768400015],[-60.845204230999855,14.414129950000158],[-60.856434699999845,14.409369208000072],[-60.87059485599988,14.408107815000148],[-60.882476365999935,14.413275458000072],[-60.886789516999926,14.427801825000103],[-60.88076738199993,14.43797435100005],[-60.86949622299994,14.441473700000131],[-60.85985266799985,14.446722723000121],[-60.85887610599988,14.461981512000177],[-60.86851966099996,14.475978908000144],[-60.88223222599989,14.47052643400012],[-60.8981013659999,14.460882880000142],[-60.9141332669999,14.461981512000177],[-60.91340084499986,14.472113348000148],[-60.92003333199994,14.473374742000146],[-60.94762122299994,14.468736070000134],[-61.00597083199994,14.476263739000089],[-61.02159583199992,14.474025783000101],[-61.04637610599991,14.464178778000175],[-61.06118730399987,14.461981512000177],[-61.06956946499991,14.466701565000106],[-61.09162350199992,14.49677155200014],[-61.09113521999984,14.504217841000111],[-61.09239661399993,14.50828685100008],[-61.09679114499993,14.511542059000119],[-61.10586503799993,14.516587632000066],[-61.078521287999955,14.544582424000085],[-61.052316860999916,14.557074286000088],[-61.043812628999895,14.56500885600015],[-61.033273891999926,14.54987213700015],[-61.01773027299992,14.545314846000108],[-61.00332597599996,14.550523179000109],[-60.99600175699996,14.56500885600015],[-60.99937903599988,14.571356512000179],[-61.0069880849999,14.58185455900015],[-61.01431230399993,14.595851955000114],[-61.01646887899992,14.612779039000188],[-61.03140214799986,14.607814846000137],[-61.04356848899993,14.605454820000174],[-61.05426998599995,14.605129299000152],[-61.06493079299992,14.605943101000078],[-61.08592688699995,14.604641018000079],[-61.09162350199992,14.605943101000078],[-61.09593665299994,14.610256252000084],[-61.10220292899988,14.622219143000109],[-61.10586503799993,14.626450914000133],[-61.14159094999988,14.65009186400006],[-61.15957597599991,14.666937567000064],[-61.16734778599991,14.684759833000127],[-61.16808020699991,14.691066799000083],[-61.17023678299992,14.696437893000136],[-61.17357337099986,14.701239325000117],[-61.17788652299987,14.705877997000144],[-61.18163001199988,14.7130394550001],[-61.18004309799996,14.719671942000147],[-61.17666581899993,14.726141669000157],[-61.17479407499988,14.732896226000092],[-61.17711341099993,14.744940497000115],[-61.18297278599987,14.756415106000148],[-61.19054114499993,14.766343492000146],[-61.219105597999906,14.795477606000118],[-61.226185675999886,14.807766018000079],[-61.22883053299997,14.821966864000087],[-61.226185675999886,14.835516669000143],[-61.219471808999934,14.846502997000101],[-61.210601365999906,14.854437567000076],[-61.17096920499994,14.876369533000101],[-61.13589433499987,14.87689850500007],[-61.10195878799993,14.866197007000137],[-61.05785071499994,14.838690497000115],[-61.01862545499991,14.821722723000134],[-61.002268032999886,14.811428127000125],[-60.99815833199995,14.80418528900019],[-60.99567623599993,14.795355536000143],[-60.9906306629999,14.787909247000156],[-60.97899329299988,14.784735419000098]]],[[[-61.618804490999935,15.852280992000047],[-61.62755286399992,15.846991278000173],[-61.638335740999906,15.853216864000117],[-61.634592251999976,15.866156317000117],[-61.62466386599996,15.871242580000155],[-61.621083136999886,15.867743231000148],[-61.616078253999945,15.860052802000057],[-61.618804490999935,15.852280992000047]]],[[[-61.5821833979999,15.86180247600005],[-61.592640753999966,15.858384507000137],[-61.595692511999886,15.862860419000084],[-61.59048417899987,15.867580471],[-61.585113084999925,15.870672919000086],[-61.57994544199991,15.880804755000142],[-61.5738826159999,15.883368231000148],[-61.567982550999886,15.881048895000092],[-61.566477016999926,15.878363348],[-61.566029425999936,15.876776434000176],[-61.565012173999975,15.874416408000044],[-61.57054602799988,15.869614976000134],[-61.5821833979999,15.86180247600005]]],[[[-61.24071204299991,15.881822007000109],[-61.27489173099991,15.873765367000159],[-61.305083787999926,15.878485419000084],[-61.318186001999884,15.904486395000063],[-61.31920325399994,15.911078192000145],[-61.32168535099991,15.919094143000095],[-61.3251033189999,15.925848700000031],[-61.32872473899994,15.928656317000062],[-61.332020636999886,15.931952216000113],[-61.32778886599987,15.93927643400012],[-61.318186001999884,15.952541408000128],[-61.315297003999945,15.966945705000017],[-61.3082576159999,15.977687893000123],[-61.29019120999987,15.997503973000121],[-61.26829993399994,16.009263414000102],[-61.24388587099988,16.003973700000056],[-61.2239884109999,15.98753489800005],[-61.21239173099988,15.958929755000055],[-61.20490475199991,15.953029690000122],[-61.197377081999946,15.945054429000079],[-61.19399980399993,15.932074286000088],[-61.19469153599988,15.919582424000069],[-61.19774329299986,15.91058991100006],[-61.20425370999996,15.902777411000057],[-61.215728318999915,15.893947658000016],[-61.24071204299991,15.881822007000109]]],[[[-61.03990637899989,16.313910223000036],[-61.068592902999846,16.302232164000102],[-61.09162350199992,16.30540599200016],[-61.078521287999955,16.31220123900003],[-61.039133266999954,16.344468492000047],[-61.01488196499989,16.353989976000136],[-60.9892471999999,16.346380927],[-61.03990637899989,16.313910223000036]]],[[[-61.6046443349999,16.282294012000037],[-61.603138800999936,16.28119538],[-61.60301673099988,16.282212632000054],[-61.59874426999996,16.285549221000068],[-61.59557044199991,16.281642971000096],[-61.58507239499994,16.271307684000178],[-61.58023027299995,16.28213125200007],[-61.57054602799988,16.289740302000112],[-61.5579727859999,16.291693427000055],[-61.55166581899996,16.285549221000068],[-61.549183722999935,16.28058502800003],[-61.555409308999884,16.258246161],[-61.54796301999991,16.23843008000007],[-61.55459550699987,16.23651764500012],[-61.5726619129999,16.232570705000125],[-61.57945716099993,16.222316799000012],[-61.577300584999925,16.17593008000013],[-61.564564581999974,16.140936591000138],[-61.55772864499993,16.086330471000096],[-61.565988735999944,16.033514716000113],[-61.59748287699994,15.996730861000017],[-61.643422003999916,15.97036367400004],[-61.694935675999915,15.949164130000113],[-61.696522589999944,15.955023505000083],[-61.70238196499989,15.969631252000099],[-61.694935675999915,15.97646719],[-61.702015753999966,15.989894924000012],[-61.71080481699993,15.997381903000147],[-61.721058722999935,16.003851630000085],[-61.73277747299994,16.013983466000028],[-61.74006100199995,16.025824286000088],[-61.74364173099994,16.03729889500012],[-61.74779212099988,16.04669830900015],[-61.75641842399997,16.05219147300009],[-61.76862545499994,16.087632554],[-61.76943925699995,16.166489976000136],[-61.78429114499991,16.202337958000143],[-61.779449022999955,16.217230536],[-61.78400631399989,16.229315497000087],[-61.79190019399996,16.240057684000092],[-61.79735266799991,16.25079987200003],[-61.79784094999988,16.26788971600017],[-61.79385331899991,16.299058335000055],[-61.79735266799991,16.31220123900003],[-61.78758704299986,16.320298570000134],[-61.770822719999835,16.348822333000143],[-61.75641842399997,16.36066315300009],[-61.73786373599996,16.365301825000028],[-61.728586391999926,16.35960521000014],[-61.72203528599994,16.350897528000147],[-61.71202551999993,16.346380927],[-61.68700110599994,16.341701565000093],[-61.65013587099989,16.32933177300005],[-61.6158341139999,16.31183502800009],[-61.59874426999996,16.291693427000055],[-61.61294511599988,16.285549221000068],[-61.6046443349999,16.282294012000037]]],[[[-61.353138800999915,16.340277411000116],[-61.33869381399995,16.332709052000055],[-61.33177649599995,16.34015534100014],[-61.321522589999915,16.334906317000062],[-61.31183834499987,16.33417389500012],[-61.30166581899991,16.334540106000034],[-61.29019120999987,16.332709052000055],[-61.28058834499989,16.32705312700007],[-61.258900519999905,16.309230861000103],[-61.25300045499997,16.30540599200016],[-61.242583787999905,16.300360419000143],[-61.18838456899994,16.263820705000015],[-61.16917883999989,16.2586937520001],[-61.163563605999876,16.252997137000122],[-61.17479407499988,16.243963934000092],[-61.183176235999916,16.244126695000162],[-61.21125240799995,16.250718492000047],[-61.218861456999974,16.254217841000028],[-61.23444576699996,16.25828685099999],[-61.410715298999975,16.21946849200016],[-61.44444739499996,16.205064195000105],[-61.46214758999989,16.202337958000143],[-61.4837133449999,16.205877997000115],[-61.50340735599994,16.21328359600001],[-61.5204158189999,16.22296784100014],[-61.533843553999894,16.233384507000054],[-61.5440974599999,16.245672919000114],[-61.54832923099994,16.25804271000014],[-61.54796301999991,16.27106354400003],[-61.544178839999894,16.28538646000011],[-61.5440974599999,16.285467841000084],[-61.5440974599999,16.285549221000068],[-61.52765865799992,16.33783600500008],[-61.51813717399992,16.348944403000118],[-61.499663865999906,16.353216864000114],[-61.49705969999991,16.35675690300009],[-61.49551347599995,16.365139065000065],[-61.49522864499991,16.374457098],[-61.4962458979999,16.38117096600014],[-61.50035559799995,16.385646877000013],[-61.50731360599991,16.389837958000143],[-61.51561438699992,16.393052476000022],[-61.523589647999955,16.394761460000026],[-61.52916419199996,16.43048737200003],[-61.533843553999894,16.43943919500016],[-61.53429114499988,16.44928620000009],[-61.52562415299988,16.462307033000073],[-61.50991777299993,16.480414130000085],[-61.50584876199986,16.48696523600016],[-61.4962458979999,16.493719794000114],[-61.465321417999945,16.509833075000174],[-61.462513800999886,16.513088283000016],[-61.45929928299992,16.51178620000003],[-61.42682857999994,16.489203192000147],[-61.40941321499989,16.47247955900012],[-61.397613084999904,16.45184967699999],[-61.39321855399993,16.425482489],[-61.39565995999995,16.39923737200017],[-61.394154425999915,16.389349677000055],[-61.38646399599989,16.373683986000074],[-61.37661699099987,16.359564520000145],[-61.36571204299989,16.348822333000143],[-61.353138800999915,16.340277411000116]]],[[[9.476898634000122,42.62010325700014],[9.476817254000139,42.619086005000085],[9.45655358200014,42.64740631700011],[9.48210696700005,42.62010325700014],[9.476898634000122,42.62010325700014]]],[[[9.44939212300011,42.68260325700008],[9.450368686000076,42.653631903000175],[9.449066602000073,42.651068427000084],[9.446055535000085,42.64858633000013],[9.443369988000086,42.645249742000104],[9.442881707000112,42.64057038],[9.445323113000141,42.637884833000115],[9.449961785000085,42.63572825700011],[9.454600457000083,42.63458893400018],[9.45655358200014,42.63442617400004],[9.45923912900011,42.625433661],[9.461680535000141,42.619818427],[9.461436394000117,42.61456940300012],[9.45655358200014,42.606431382],[9.46461022200009,42.60162995000012],[9.468028191000087,42.59495677300005],[9.470713738000057,42.58722565300006],[9.476898634000122,42.57916901200009],[9.484873894000089,42.57444896],[9.51189212300005,42.56549713700015],[9.50912519600007,42.57998281500012],[9.504730665000096,42.586615302],[9.489593946000099,42.61261627800015],[9.518565300000091,42.5809593770001],[9.528086785000085,42.56354401200004],[9.53223717500012,42.544378973000065],[9.53003991000014,42.48631419500001],[9.533376498000079,42.45624420800005],[9.545909050000148,42.43512604400014],[9.539886915000068,42.42206452000006],[9.53541100400008,42.40818919499999],[9.532725457000112,42.392523505],[9.53223717500012,42.37372467700005],[9.536957227000128,42.35317617400001],[9.555430535000141,42.31427643400012],[9.559580925000091,42.29458242400007],[9.552256707000083,42.170152085000055],[9.559580925000091,42.14655182500003],[9.55689537900011,42.13825104400014],[9.554942254000082,42.120835679],[9.552744988000086,42.113023179],[9.545583530000044,42.10398997599999],[9.518565300000091,42.08510976800015],[9.507823113000086,42.07221100500011],[9.492442254000139,42.04775625200009],[9.423838738000113,41.97353750200007],[9.408702019000117,41.96222565300009],[9.403168165000096,41.952948309000035],[9.402842644000089,41.91742584800015],[9.394297722000147,41.84796784100003],[9.403005405000043,41.779730536000116],[9.401621941000144,41.70644765800007],[9.39861087300005,41.70148346600003],[9.391123894000087,41.69904205900009],[9.381195509000094,41.69269440300015],[9.372243686000047,41.683905341000084],[9.367035352000073,41.674221096000124],[9.3807072270001,41.674221096000124],[9.37794030000012,41.65643952000015],[9.373057488000057,41.64516836100016],[9.363617384000063,41.64004140800013],[9.353200717000078,41.64081452000006],[9.345225457000112,41.64032623900009],[9.342133009000122,41.63467031500009],[9.346690300000148,41.61957428600009],[9.333262566000087,41.62445709800015],[9.318207227000073,41.62714264500012],[9.30372155000012,41.62783437700007],[9.292165561000076,41.626410223],[9.293955925000063,41.617621161000116],[9.284434441000085,41.60765208500014],[9.278575066000116,41.59837474199999],[9.292165561000076,41.59162018400015],[9.325043165000068,41.601955471000146],[9.345062696000127,41.604478257000075],[9.354177280000044,41.59540436400009],[9.350596550000148,41.58120351800006],[9.341075066000059,41.56928131700012],[9.326670769000089,41.56110260600012],[9.30909264400006,41.558172919000086],[9.299652540000068,41.55329010600011],[9.292165561000076,41.54291413000011],[9.281993035000141,41.533270575000145],[9.264659050000148,41.53082916900003],[9.268728061000104,41.52374909100014],[9.269867384000065,41.51679108300006],[9.268728061000104,41.50995514500015],[9.264659050000148,41.50287506700009],[9.276215040000068,41.4994164080001],[9.2791447270001,41.49164459800009],[9.274750196000127,41.482855536000116],[9.264659050000148,41.47614166900017],[9.270843946000127,41.46873607],[9.255218946000127,41.46360911699999],[9.228037957000112,41.45001862200003],[9.210703972000147,41.44822825700014],[9.210703972000147,41.44086334800012],[9.22006269600007,41.43504466400019],[9.223317905000016,41.42731354400017],[9.219981316000087,41.41962311400006],[9.210703972000147,41.413519598000065],[9.210703972000147,41.40729401200009],[9.222015821000127,41.410956122000144],[9.23796634200005,41.422267971000124],[9.250336134000065,41.427801825000145],[9.246592644000117,41.412909247000115],[9.238780144000145,41.39590078300013],[9.23015384200005,41.38092682500012],[9.223155144000145,41.372503973000065],[9.206716342000078,41.365912177],[9.193858269000145,41.36912669500005],[9.169118686000076,41.386175848],[9.15333092500012,41.391343492000104],[9.122243686000104,41.39496491100006],[9.096446160000085,41.403509833000086],[9.107269727000073,41.42926666900003],[9.11215254000004,41.432562567000055],[9.12134850400011,41.43463776200018],[9.105153842000078,41.44550202000006],[9.080902540000066,41.45319245000009],[9.06657962300008,41.46190013200008],[9.079844597000118,41.47614166900017],[9.079844597000118,41.48236725500014],[9.068207227000102,41.479478257000025],[9.03874759200005,41.46190013200008],[9.031993035000085,41.46873607],[9.034190300000091,41.47089264500009],[9.03541100400011,41.47162506700011],[9.036631707000112,41.47284577000012],[9.03874759200005,41.47614166900017],[9.028086785000113,41.473822333000115],[9.024099155000044,41.472113348],[9.018321160000141,41.46873607],[9.011485222000147,41.47614166900017],[9.000987175000063,41.483058986000074],[8.975596550000148,41.48908112200017],[8.951019727000128,41.49188873900011],[8.935720248000079,41.48920319200015],[8.924815300000091,41.49494049700003],[8.916758660000056,41.50165436400006],[8.906911655000043,41.50731028900016],[8.883636915000125,41.51117584800006],[8.88111412900011,41.514837958000115],[8.879161004000082,41.51935455900018],[8.873708530000043,41.52338288000014],[8.86426842500012,41.525336005],[8.856293165000068,41.525336005],[8.848399285000085,41.526109117000104],[8.839610222000118,41.53082916900003],[8.853282097000147,41.53766510600003],[8.853282097000147,41.54385000200001],[8.840586785000085,41.547267971],[8.83334394600007,41.55072663000011],[8.82390384200005,41.549953518000095],[8.809906446000099,41.55267975500006],[8.79721113400012,41.557074286000145],[8.791758660000085,41.561224677],[8.796397332000112,41.58055247600011],[8.793223504000139,41.58730703300013],[8.778086785000141,41.59162018400015],[8.785411004000053,41.604681708000115],[8.79200280000012,41.62514883000009],[8.801768425000091,41.63906484600007],[8.819021030000073,41.63263580900015],[8.872569207000083,41.651068427],[8.88111412900011,41.6571312520001],[8.885752800000148,41.6708845070001],[8.896983269000145,41.67792389500009],[8.910655144000089,41.68382396000011],[8.922699415000096,41.69464752800012],[8.89918053500014,41.69546133],[8.836436394000145,41.708929755],[8.81234785200013,41.70929596600003],[8.78882897200006,41.71255117400007],[8.776133660000113,41.722398179],[8.78492272200009,41.74249909100003],[8.760101759000122,41.74266185099999],[8.71908613400012,41.730698960000055],[8.695567254000139,41.72943756700006],[8.698090040000066,41.73305898600002],[8.702972852000128,41.74249909100003],[8.688731316000144,41.74176666900011],[8.67798912900011,41.74408600500006],[8.667979363000141,41.747503973000065],[8.655121290000125,41.74990469000012],[8.668223504000082,41.75486888200008],[8.696299675000091,41.75820547100001],[8.709157748000107,41.763576565000065],[8.717539910000085,41.77204010600009],[8.722015821000127,41.782416083],[8.72022545700014,41.79169342700005],[8.709157748000107,41.79706452],[8.709157748000107,41.80451080900018],[8.73194420700014,41.804592190000065],[8.75228925900012,41.80980052300005],[8.78492272200009,41.82440827000009],[8.780039910000113,41.833929755000085],[8.772308790000096,41.840399481000176],[8.762380405000101,41.84414297100001],[8.750824415000068,41.84552643400009],[8.783702019000145,41.85358307500003],[8.791758660000085,41.85911692900005],[8.789317254000139,41.86131419500005],[8.785817905000073,41.86798737200009],[8.781748894000117,41.873683986000074],[8.778086785000141,41.872788804],[8.790049675000091,41.886948960000026],[8.791758660000085,41.88711172100007],[8.79460696700005,41.892157294000086],[8.8033960300001,41.90053945500016],[8.805430535000113,41.90692780199999],[8.803070509000065,41.90745677300004],[8.791758660000085,41.913763739],[8.785980665000125,41.92283763199999],[8.78142337300008,41.92877838700003],[8.77507571700005,41.93231842700003],[8.764414910000113,41.934271552000055],[8.744395379000139,41.932806708],[8.710297071000127,41.91876862200006],[8.688731316000144,41.913763739],[8.647634311000047,41.91181061400006],[8.629893425000148,41.908636786],[8.614268425000148,41.90078359600001],[8.607269727000102,41.913763739],[8.61866295700014,41.93048737200003],[8.614431186000047,41.94407786699998],[8.586273634000063,41.96898021000011],[8.635508660000141,41.97264232],[8.655039910000141,41.97870514500006],[8.668793165000068,41.99632396],[8.656097852000102,42.00287506700009],[8.664561394000117,42.01447174700008],[8.684336785000141,42.02558014500012],[8.70606530000012,42.030462958],[8.711273634000122,42.03327057500006],[8.738047722000118,42.04393138200008],[8.743418816000085,42.044134833000115],[8.744965040000125,42.05658600500006],[8.739105665000068,42.06342194200006],[8.723480665000096,42.07208893400015],[8.706228061000076,42.1004906270001],[8.699229363000114,42.10932038000014],[8.688812696000127,42.11115143400012],[8.660899285000085,42.10545482000005],[8.655121290000125,42.10932038000014],[8.647715691000116,42.122015692],[8.629567905000044,42.13007233300014],[8.606700066000114,42.133734442],[8.586273634000063,42.133490302000055],[8.591075066000144,42.14288971600017],[8.593760613000114,42.14655182500003],[8.586273634000063,42.15143463700009],[8.578135613000114,42.154201565000065],[8.569102410000113,42.154974677000084],[8.55958092500012,42.153998114],[8.569672071000099,42.15558502800003],[8.57789147200009,42.15875885600009],[8.593760613000114,42.16705963700018],[8.593760613000114,42.174505927000055],[8.565765821000099,42.174505927000055],[8.565765821000099,42.1813011740001],[8.57764733200014,42.18488190300015],[8.58179772200009,42.194525458000115],[8.577810092000107,42.20441315300003],[8.565765821000099,42.208563544000164],[8.574066602000073,42.21991608300006],[8.565765821000099,42.225734768],[8.552419467000078,42.228989976000044],[8.545258009000122,42.23285553600006],[8.549489780000073,42.242254950000174],[8.559906446000042,42.244330145],[8.586273634000063,42.243353583000115],[8.593760613000114,42.24628327000015],[8.601328972000147,42.25067780200011],[8.61085045700014,42.254624742000104],[8.65113366000014,42.260402736000074],[8.664724155000101,42.26487864800005],[8.675059441000087,42.270656643],[8.680837436000076,42.27277252800012],[8.68523196700005,42.271918036000116],[8.687754754000053,42.27293528900016],[8.688731316000144,42.28095123900012],[8.674001498000052,42.289496161000145],[8.67204837300011,42.29116445500016],[8.634776238000114,42.3048363300001],[8.632334832000083,42.30866120000012],[8.629649285000113,42.31525299700009],[8.625173373000052,42.31915924700009],[8.61109459700009,42.31004466400018],[8.60531660200013,42.310451565],[8.601410352000128,42.314764716000084],[8.59986412900011,42.321926174000126],[8.604746941000087,42.3255882830001],[8.634776238000114,42.338934637000094],[8.612803582000112,42.35244375200007],[8.591563347000118,42.35114166900008],[8.55209394600007,42.338934637000094],[8.55958092500012,42.346380927],[8.553477410000141,42.354885158],[8.549652540000125,42.36579010600009],[8.549082879000139,42.37710195500007],[8.55209394600007,42.38670482000005],[8.560801629000139,42.38165924700002],[8.57048587300011,42.381781317],[8.579600457000083,42.385931708000115],[8.586273634000063,42.39297109600001],[8.598643425000091,42.38760000200013],[8.602386915000125,42.39191315300006],[8.603526238000143,42.400336005],[8.607269727000102,42.407212632000025],[8.612071160000085,42.411810614000146],[8.614024285000113,42.416245835000105],[8.61866295700014,42.419582424000126],[8.650889519000089,42.42328522300009],[8.659515821000099,42.429877020000056],[8.661631707000112,42.43976471600017],[8.661387566000142,42.451890367000075],[8.672373894000117,42.46442291900014],[8.676768425000091,42.47247955900009],[8.67204837300011,42.47614166900014],[8.65967858200014,42.477118231000034],[8.657074415000068,42.480047919000135],[8.659353061000047,42.48436107000005],[8.66749108200014,42.509711005],[8.680430535000141,42.52106354400014],[8.697601759000092,42.52700429900007],[8.71656334700009,42.53070709800012],[8.71078535200013,42.540106512000065],[8.71631920700014,42.56199778900016],[8.709157748000107,42.57172272300012],[8.709157748000107,42.57916901200009],[8.71697024800011,42.57611725500011],[8.719737175000148,42.575995184000035],[8.72087649800011,42.574123440000065],[8.723480665000096,42.56549713700015],[8.740000847000061,42.57233307500009],[8.750661655000101,42.56879303600003],[8.759613477000128,42.56175364800004],[8.771250847000147,42.558050848],[8.786957227000102,42.56199778900016],[8.798838738000143,42.57176341400013],[8.807465040000068,42.58510976800012],[8.812836134000122,42.59959544499999],[8.805430535000113,42.606431382],[8.843028191000114,42.60805898600001],[8.906504754000139,42.63247304900007],[9.018321160000141,42.650132554],[9.049978061000047,42.66217682500009],[9.052989129000139,42.68158600500003],[9.107106967000107,42.72589752800015],[9.117849155000044,42.73200104400006],[9.141449415000068,42.73501211100013],[9.165212436000076,42.73517487200011],[9.176036004000052,42.73281484600015],[9.185069207000083,42.73338450700011],[9.236827019000089,42.722560940000115],[9.257823113000143,42.713934637000115],[9.264659050000148,42.70888906500009],[9.270843946000127,42.70221588700004],[9.276133660000085,42.69415924700008],[9.285329623000079,42.674750067],[9.292165561000076,42.674750067],[9.327891472000118,42.72003815300011],[9.342539910000113,42.74909088700018],[9.33301842500012,42.77094147300012],[9.340993686000076,42.790106512000094],[9.335459832000083,42.80760325700005],[9.32178795700014,42.82391998900006],[9.305674675000148,42.839260158000016],[9.33301842500012,42.86713288000006],[9.332855665000068,42.875799872000144],[9.32634524800008,42.88532135600014],[9.326182488000114,42.89378489800002],[9.330251498000079,42.90355052300005],[9.33692467500012,42.910386460000055],[9.360199415000123,42.92861562700013],[9.356781446000127,42.93353913],[9.355723504000082,42.93650950700011],[9.356944207000083,42.94065989800005],[9.360199415000123,42.94912344],[9.34994550900012,42.95722077000012],[9.343435092000107,42.97308991100014],[9.341807488000086,42.99066803600009],[9.346690300000148,43.00372955900015],[9.36304772200009,43.011542059000064],[9.404307488000143,43.011664130000106],[9.422373894000145,43.01740143400009],[9.435557488000113,43.00372955900015],[9.444509311000047,42.997992255],[9.464040561000104,42.99005768400012],[9.464040561000104,42.98261139500015],[9.45557701900006,42.97455475500003],[9.453868035000056,42.963812567],[9.458750847000118,42.95233795800005],[9.470062696000127,42.94228750200007],[9.465505405000073,42.92352936400012],[9.484385613000114,42.83242422100001],[9.482758009000094,42.80231354400017],[9.450368686000076,42.70888906500009],[9.451426629000139,42.696722723],[9.44939212300011,42.68260325700008]]],[[[6.251004127000072,43.01729682500014],[6.2522088260001,43.00263219800003],[6.23023522200009,42.99534739799999],[6.216481967000078,42.99038320500013],[6.202484571000099,42.98712799700009],[6.190114780000073,42.99017975499999],[6.166188998000109,42.99966054900001],[6.164724155000044,43.00507233300014],[6.175140821000127,43.00897858300014],[6.202972852000102,43.00800202000006],[6.211599155000101,43.01162344000012],[6.215017123000109,43.01471588700012],[6.21827233200014,43.015448309000035],[6.221039259000122,43.01496002800015],[6.233393453000105,43.01558154300015],[6.235036655000073,43.02240631700012],[6.241884786000128,43.02564971800008],[6.251004127000072,43.01729682500014]]],[[[-1.285145636999886,46.00165436400006],[-1.273833787999905,45.997626044000086],[-1.261219855999911,46.000677802],[-1.247629360999952,46.001776434000035],[-1.233631964999887,45.99168528900016],[-1.229562954999921,45.97923411700005],[-1.231190558999856,45.967922268000066],[-1.230458136999914,45.958197333000115],[-1.219390428999901,45.95075104400014],[-1.219390428999901,45.943915106000034],[-1.224354620999861,45.93504466400016],[-1.213937954999949,45.928045966000084],[-1.185170050999915,45.915961005],[-1.177723761999943,45.906927802],[-1.176096157999922,45.898749091000084],[-1.184193488999938,45.8563500020001],[-1.194569464999944,45.83006419499999],[-1.209217902999853,45.81415436400006],[-1.22687740799995,45.819769598000065],[-1.241200324999852,45.854559637000094],[-1.249419725999928,45.86774323100015],[-1.26036536399991,45.881822007],[-1.31899980399993,45.92812734600007],[-1.34015865799995,45.93866608300014],[-1.361724412999934,45.95673248900005],[-1.3783259759999,45.975978908000016],[-1.373890753999945,45.984930731000034],[-1.371652798999946,45.995306708000115],[-1.382923956999946,46.01850006700006],[-1.404937303999958,46.053168036000145],[-1.373890753999945,46.05023834800012],[-1.339914516999897,46.03782786699999],[-1.308705206999917,46.020249742000075],[-1.285145636999886,46.00165436400006]]],[[[-1.467884894999884,46.24990469],[-1.467437303999901,46.24396393400009],[-1.473866339999887,46.238104559000035],[-1.497710740999878,46.245184637000094],[-1.507964647999898,46.24555084800012],[-1.490549282999922,46.22443268400009],[-1.464182094999927,46.224920966000084],[-1.435454881999902,46.23383209800012],[-1.411122199999909,46.238104559000035],[-1.411122199999909,46.23126862200002],[-1.425363735999923,46.23126862200002],[-1.425363735999923,46.22382233300006],[-1.408762173999946,46.218247789000046],[-1.308094855999854,46.206935940000065],[-1.284738735999951,46.196437893000095],[-1.265736456999946,46.18097565300015],[-1.254139777999853,46.16242096600014],[-1.26341712099989,46.161851304],[-1.27086341099988,46.160223700000145],[-1.281402147999927,46.15619538],[-1.286284959999904,46.16010163],[-1.290679490999906,46.161322333000115],[-1.336089647999898,46.16722239800004],[-1.432850714999887,46.21084219000015],[-1.488921678999901,46.20335521],[-1.50426184799997,46.207668361000074],[-1.544829881999874,46.239894924000126],[-1.555816209999932,46.24555084800012],[-1.555816209999932,46.25177643400018],[-1.498117641999897,46.26190827000012],[-1.480091925999943,46.259222723000065],[-1.472727016999954,46.25527578300007],[-1.467884894999884,46.24990469]]],[[[-2.279693162999905,46.71027252800017],[-2.2689509759999,46.69741445500013],[-2.291371222999913,46.70359935100011],[-2.371408657999893,46.70429108300006],[-2.382923956999917,46.7226423200001],[-2.375152147999927,46.731634833000115],[-2.35680091099988,46.73379140800013],[-2.337228969999898,46.73159414300012],[-2.298207160999937,46.72016022300009],[-2.279693162999905,46.71027252800017]]],[[[-2.189808722999913,46.977240302],[-2.155751105999883,46.96491120000006],[-2.144846157999922,46.95746491100006],[-2.140044725999928,46.94342682500012],[-2.13768469999988,46.92316315300009],[-2.142567511999857,46.90985748900009],[-2.159087693999908,46.916489976000044],[-2.173695441999939,46.939154364],[-2.194813605999854,46.96185944200015],[-2.220204230999883,46.97386302300007],[-2.247303839999915,46.96430084800009],[-2.263172980999855,46.97980377800009],[-2.278675910999937,47.018133856000034],[-2.295643683999912,47.03318919500005],[-2.238596157999922,47.03534577000015],[-2.220448370999918,47.03318919500005],[-2.200021938999953,47.02435944200009],[-2.19741777299987,47.01300690300012],[-2.201324022999955,46.999741929],[-2.200103318999936,46.985419012000094],[-2.189808722999913,46.977240302]]],[[[-3.114654100999871,47.331488348],[-3.102691209999932,47.32733795800006],[-3.072743292999888,47.32831452000015],[-3.062814907999893,47.32062409100003],[-3.06700598899991,47.30194733300014],[-3.093617316999939,47.296616929],[-3.171701626999891,47.30158112200003],[-3.223459438999896,47.31216054900007],[-3.240956183999856,47.32062409100003],[-3.237619594999927,47.33637116100009],[-3.245350714999944,47.35285065300015],[-3.256174282999922,47.36880117400007],[-3.26207434799997,47.383246161000116],[-3.253651495999918,47.38886139500012],[-3.249623175999943,47.395209052000055],[-3.242990688999896,47.39533112200003],[-3.234120245999918,47.38955312700007],[-3.221506313999953,47.38751862200006],[-3.176503058999884,47.371486721000146],[-3.151600714999915,47.35814036700005],[-3.148793097999885,47.35537344000009],[-3.114654100999871,47.331488348]]],[[[-5.04625403599988,48.47382233300014],[-5.042958136999914,48.47199127800015],[-5.036610480999883,48.47260163000011],[-5.036610480999883,48.46515534100014],[-5.087961391999897,48.44721100499999],[-5.105539516999926,48.44464752800009],[-5.105539516999926,48.45148346600003],[-5.10216223899991,48.45184967700011],[-5.095122850999871,48.45111725499999],[-5.091867641999897,48.45148346600003],[-5.097767706999946,48.461330471000124],[-5.107411261999913,48.46336497600008],[-5.132801886999943,48.45831940300003],[-5.132801886999943,48.46515534100014],[-5.091786261999914,48.48078034100003],[-5.068999803999901,48.48505280200005],[-5.05028235599994,48.478827216000084],[-5.048166469999927,48.47650788000011],[-5.04625403599988,48.47382233300014]]],[[[2.537033325000095,51.06461029100013],[2.547058553000113,51.020478618000155],[2.556980428000116,51.00117747000003],[2.592740519000131,50.9761144000001],[2.608450154000081,50.96112823500014],[2.611654093000055,50.941232809000134],[2.605762980000065,50.93523834300011],[2.582715291000113,50.92066558900014],[2.576927531000138,50.91151886000015],[2.596667928000102,50.867645569000146],[2.595531046000076,50.86113433900006],[2.587779582000081,50.85002390600014],[2.586746053000098,50.845424704000024],[2.589949992000072,50.84201405900008],[2.602042277000066,50.838086649],[2.606589803000076,50.83483103400012],[2.615168091000015,50.82217030900007],[2.620439087000136,50.81648590200014],[2.627777140000148,50.81441884400008],[2.642453247000048,50.812455139000136],[2.650618123000044,50.81224843400018],[2.669221639000114,50.81390207900013],[2.678730102000088,50.81323028600015],[2.691855916000065,50.80883778900006],[2.696920207000119,50.803050028000186],[2.700020792000089,50.79628041600013],[2.706635376000065,50.78878733400002],[2.743842407000074,50.76620473200008],[2.74952681500011,50.759590149000175],[2.762962687000083,50.739384665],[2.768233683000119,50.733235169000025],[2.786733846000033,50.723364970000134],[2.86672588400009,50.70009100300008],[2.87127648900011,50.69876698900004],[2.886882772000149,50.69664825500017],[2.900111938000038,50.70310780900003],[2.930187622000119,50.73623240200014],[2.948377726000046,50.74868642200012],[2.971425415000112,50.75783315000011],[3.023816593000049,50.76826211600003],[3.103303671000049,50.784084778000036],[3.129245239000085,50.779072165000066],[3.146195109000104,50.76889190700011],[3.162810519000061,50.749939075000114],[3.162822752000096,50.74992512100003],[3.176684204000082,50.73411366800015],[3.188983195000048,50.715096742000085],[3.1969413650001,50.70920562800008],[3.210997355000103,50.707965394000055],[3.224433227000077,50.705174866],[3.232391398000118,50.69592478500008],[3.243760213000115,50.67210195000011],[3.229807576000042,50.65541046200018],[3.237869100000097,50.62647166],[3.264327433000091,50.57019602500013],[3.265877726000042,50.538311666000155],[3.27104537000011,50.52694285100007],[3.286755005000089,50.51407542000008],[3.299880819000066,50.50746083600008],[3.343599080000047,50.49293975900004],[3.361065714000091,50.489787497000165],[3.385353637000094,50.49164784800017],[3.429175252000078,50.50182810500014],[3.442714477000066,50.50849436500006],[3.45263635200007,50.51485056600008],[3.462868286000059,50.51913971000015],[3.477130982000119,50.51986318000014],[3.491497029000129,50.51707265200018],[3.498008260000091,50.51185333200006],[3.496457967000083,50.50379181000007],[3.486742798000137,50.492681376000164],[3.499145142000088,50.48679026300006],[3.56374068100007,50.48653188100009],[3.586374959000096,50.48348297100016],[3.608285766000051,50.47650665300016],[3.628129517000048,50.464362692000165],[3.644355916000051,50.445500793000136],[3.652830851000146,50.406846822000134],[3.652934204000075,50.36018300400015],[3.661719198000071,50.319306946000054],[3.696859172000131,50.29822296200002],[3.700786580000084,50.30468251600017],[3.702233520000078,50.30525095600002],[3.703887167000118,50.304320780000076],[3.708434692000082,50.30633616200011],[3.711121867000088,50.30933339500014],[3.715462687000069,50.31765330000009],[3.733446085000053,50.337238668000126],[3.741507609000052,50.34312978100003],[3.755046834000041,50.34633372100011],[3.798661743000082,50.34845245400008],[3.840209595000061,50.34519683899999],[3.860880168000079,50.33847890200015],[3.878036743000052,50.33077911400006],[3.895916789000097,50.325301412999984],[3.918551066000048,50.32545644100012],[3.982113077000122,50.342613017000176],[4.003300415000098,50.34405995700017],[4.022730753000076,50.338117167000156],[4.055907023000088,50.31455271500006],[4.077197713000146,50.30664622000002],[4.097868286000079,50.29481231699999],[4.125256795000041,50.25714019800016],[4.143653605000111,50.25161082000015],[4.150991658000123,50.25626169800002],[4.149751424000072,50.26313466500009],[4.150268189000116,50.26954254200002],[4.16277388500012,50.27295318700005],[4.17176558500006,50.27088612900009],[4.185201457000118,50.26546010400001],[4.197603800000081,50.25848378500002],[4.203701619000128,50.25197255400014],[4.20132450300008,50.24153391600011],[4.19150598100012,50.23429921500015],[4.167941528000114,50.222465312000125],[4.157296183000113,50.21269846600008],[4.152748657000103,50.204533590000054],[4.147374308000024,50.18634348600004],[4.128150675000114,50.14624257500012],[4.125773559000066,50.128155823000114],[4.139932902000112,50.12355662000005],[4.159880005000048,50.129396058000154],[4.170628703000148,50.130481262000146],[4.180550578000036,50.12722564700006],[4.197397095000042,50.08407582700012],[4.203391561000046,50.074670716000085],[4.210316203000048,50.066712545000094],[4.210006144000147,50.06014963800014],[4.186028279000141,50.05244984900004],[4.162877238000134,50.04180450500014],[4.14458378100008,50.03079742500016],[4.137349080000092,50.0250613410001],[4.132284790000114,50.017568258000054],[4.128150675000114,50.00578603100014],[4.132904907000096,50.004494121],[4.138382609000075,49.98919789700015],[4.139622843000041,49.97452179000008],[4.132364978000112,49.974945951000095],[4.131664672000056,49.974986878],[4.187681925000078,49.955504863],[4.201117798000041,49.953024394000025],[4.215952935000132,49.95440767000009],[4.27759891700012,49.960155742000055],[4.427651209000089,49.93357167400016],[4.435108683000095,49.93225046800008],[4.464770956000081,49.935609436],[4.60419396900005,49.98020619800012],[4.645845174000072,49.98449534200007],[4.656697225000101,49.989094544000025],[4.665895629000119,50.000515035000134],[4.672923624000134,50.01637970000006],[4.680571737000093,50.04831573500003],[4.67953820800011,50.05518870000019],[4.675817505000111,50.060201315000036],[4.673440389000064,50.06619578099999],[4.676127563000108,50.07606598000014],[4.681915324000073,50.08392079700009],[4.788575480000133,50.15337392200014],[4.815550578000084,50.16133209200002],[4.820098103000106,50.146449280000084],[4.831363566000078,50.14340037100005],[4.862679484000097,50.147586162],[4.871877889000075,50.13978302000008],[4.870534302000124,50.122264710000096],[4.865159953000073,50.101594137000106],[4.86288619000004,50.08407582700012],[4.852137492000111,50.09162058599999],[4.846039673000064,50.090690410000136],[4.827229451000051,50.06407704700011],[4.826092570000128,50.05503367200005],[4.827642863000079,50.046713766],[4.826712687000111,50.036016744000065],[4.78826542200008,49.97426340800008],[4.783924601000081,49.95829539000006],[4.797257120000097,49.94429107700016],[4.84459273300007,49.93173370400014],[4.860199016000109,49.913336894000125],[4.8619560140001,49.90031443300002],[4.85937219200008,49.891684469000054],[4.854307902000102,49.883312887],[4.848933553000052,49.87106557200015],[4.845626261000064,49.86584625300004],[4.836737915000128,49.859128317000014],[4.834877564000124,49.85303049800013],[4.836944620000082,49.8480178840001],[4.846763142000071,49.837527568000056],[4.849243611000134,49.831584778000135],[4.849036906000066,49.794171041000155],[4.858028605000129,49.78657460500001],[4.884176879000023,49.78414581300014],[4.906604451000106,49.78647125200017],[4.950012654000119,49.796393128000076],[4.968370957000019,49.79698095600004],[4.970993286000122,49.79706492200013],[4.989080037000121,49.790553691000085],[5.026287068000045,49.76673085600011],[5.04623417200014,49.7593928020001],[5.081890909000037,49.752726543],[5.093776489000078,49.745336812000104],[5.13635787000004,49.70533925400004],[5.151240682000093,49.69598582],[5.169430786000135,49.6872008270001],[5.192478475000087,49.68280832900011],[5.237643677000079,49.69097320600004],[5.259244425000134,49.69133494100011],[5.280121704000095,49.67789906899999],[5.299448690000048,49.662499492000094],[5.306373332000135,49.64751332700003],[5.301825806000096,49.64389597600005],[5.293764282000012,49.64053700800012],[5.29066369700007,49.62637766600006],[5.2930408120001,49.61717926100008],[5.29789839700004,49.61325185200012],[5.314538208000073,49.611133118000126],[5.321669555000085,49.61258005800011],[5.326940552000025,49.617644349],[5.331178019000077,49.62312205000008],[5.334898722000077,49.625809225000026],[5.341099894000081,49.625137432000045],[5.352468709000078,49.62069325800003],[5.3834745690001,49.61330352800003],[5.391165749000066,49.60881700600008],[5.402078084000038,49.60245147700009],[5.450240519000118,49.54576243100016],[5.454374633000042,49.53661570300009],[5.454167928000088,49.52617706300005],[5.450963989000115,49.5167719520001],[5.449930461000037,49.507831930000165],[5.456131633000041,49.498943584000145],[5.477732381000095,49.495222881000025],[5.503673950000064,49.50509307900001],[5.528788696000077,49.51796051100003],[5.547598918000091,49.5234382120001],[5.57891483600008,49.513929749000035],[5.587493124000019,49.51243113300002],[5.60227258300003,49.513723043000155],[5.605579875000046,49.51775380500005],[5.607853638000051,49.524936829000026],[5.619739217000074,49.535530497000096],[5.644647257000145,49.54379872700004],[5.667178182000072,49.5404397590001],[5.688675578000101,49.53351511700005],[5.710276327000088,49.53108632500009],[5.72267867000005,49.53460032200003],[5.735597779000074,49.54571075500014],[5.74634647600007,49.54943145800017],[5.757095174000114,49.54839792899999],[5.779005982000058,49.5396129360001],[5.790684855000023,49.53775258500009],[5.822104126000055,49.51051910500008],[5.8395707600001,49.49987376000011],[5.864685506000029,49.492173971000014],[5.928144165000077,49.48230377200004],[5.946954386000101,49.46995310500007],[5.960700317000118,49.441324362],[5.978063599000052,49.44509674100011],[6.063329711000108,49.44845571000003],[6.078005819000111,49.452021383],[6.087720988000057,49.46163319900002],[6.099813273000109,49.464630432000135],[6.102087036000056,49.4700047810001],[6.1019836830001,49.47641265900005],[6.10725467900005,49.482510478000094],[6.11438602700008,49.48437083],[6.142601359000139,49.48607615200013],[6.136090129000081,49.49527455600007],[6.193554321000106,49.49940867200017],[6.221976359000109,49.49744496700004],[6.249364868000072,49.49031361900002],[6.251116525000042,49.489459778000146],[6.298767538000078,49.46623240200016],[6.325329224000085,49.45672393799999],[6.345307071000092,49.45534865200007],[6.353854614000056,49.45476023400015],[6.364499959000057,49.456103821],[6.383516886000108,49.464630432000135],[6.391681763000122,49.4666974900001],[6.402740519000133,49.46545725500006],[6.494517863000084,49.43553660100012],[6.511674438000114,49.42473622600009],[6.517875610000118,49.41641632100011],[6.520562785000038,49.40814809199999],[6.520769491000095,49.40256703800016],[6.518805786000057,49.40215362600004],[6.525730428000145,49.39548736600012],[6.574306274000064,49.361794332],[6.577716919000068,49.355799866000055],[6.573376098000096,49.347738343000074],[6.555599406000055,49.34716990200012],[6.550121704000077,49.338023173000025],[6.556426228000078,49.326395976000164],[6.573169393000057,49.31311513300007],[6.639676961000106,49.27115387000005],[6.641227254000114,49.26691640300011],[6.639160196000148,49.25678782200005],[6.640297078000088,49.25275706000015],[6.645671427000138,49.25001820900012],[6.659520711000113,49.24676259400003],[6.66375817900007,49.24386871300005],[6.671612996000079,49.225316875000104],[6.674816935000138,49.22113108400008],[6.675953817000077,49.218908997000156],[6.677917521000097,49.21105418000003],[6.680604696000045,49.20748850500014],[6.685048868000138,49.20779856400004],[6.6984847410001,49.21358632400002],[6.702515503000086,49.21363800100012],[6.708820027000087,49.19777333600002],[6.703755737000108,49.18511260999998],[6.700965210000078,49.172865296000154],[6.713780965000126,49.15886098200006],[6.725563192000038,49.155553691000065],[6.770108276000143,49.15529530900007],[6.809072306000131,49.14583852200012],[6.821784709000098,49.147750550000026],[6.839044637000086,49.16278839200011],[6.835220581000044,49.17937652600004],[6.827675822000089,49.19555125000004],[6.833463583000054,49.20945221],[6.843488810000081,49.21105418000003],[6.885243367000044,49.20480133100013],[6.914388876000146,49.20666168300012],[6.925447632000072,49.20557647700004],[6.987872762000109,49.182425436000145],[7.009473510000078,49.18170196500016],[7.008956746000138,49.14640696300015],[7.020532267000077,49.1189667770001],[7.042546427000076,49.107597962],[7.073242228000112,49.12031036399999],[7.07479252100012,49.125374655000044],[7.071588582000061,49.13059397400015],[7.07076175900005,49.13612335300017],[7.079856812000116,49.14201446500005],[7.085334513000106,49.14154937800004],[7.123575073000096,49.12330759700008],[7.139284708000048,49.117933248000114],[7.154994344000045,49.11441925100017],[7.241190633000144,49.11390248600004],[7.268062378000137,49.10563425700009],[7.274366902000053,49.10501414000011],[7.280258016000061,49.108993226],[7.290800008000133,49.12310089200004],[7.297104533000038,49.12811350499999],[7.305992879000144,49.13012888700014],[7.326456746000105,49.131834208],[7.334001506000077,49.134159648000136],[7.339065796000057,49.13968902600014],[7.346300496000111,49.15421010400008],[7.350951376000068,49.15917104200004],[7.367591186000083,49.165372213000026],[7.371633809000087,49.16617361400007],[7.39105228700015,49.17002309200008],[7.410482625000043,49.168937887000176],[7.414823446000128,49.157775778000044],[7.458024942000065,49.15586375000014],[7.476111694000081,49.15152292900014],[7.482726278000086,49.13705352800012],[7.475284871000042,49.133901266000166],[7.472804403000082,49.13162750300013],[7.471047404000103,49.128320212000126],[7.485103394000106,49.11870839500013],[7.507737671000057,49.09457550100007],[7.52086348500012,49.08367177400011],[7.542670939000061,49.074576722000145],[7.586389201000144,49.06956410700009],[7.608610066000067,49.06196767200011],[7.61594812000007,49.05597320599998],[7.625663289000101,49.043002421000075],[7.634965047000036,49.03778310100012],[7.644938840000066,49.036294476000144],[7.648814331000096,49.03571604500008],[7.660803264000066,49.03773142500013],[7.672482137000117,49.04103871700012],[7.68509118700007,49.042795716000015],[7.696149943000051,49.04155548100009],[7.717337281000114,49.03659454400004],[7.726949096000112,49.035664368000155],[7.739144735000138,49.03773142500013],[7.762605835000102,49.046154683000125],[7.773664591000113,49.04811838800005],[7.856863647000124,49.03225372300015],[7.913811075000097,49.03618113300003],[7.931897827000114,49.034837546000134],[8.090441121000081,48.97918202800004],[8.188729695000092,48.96574615499999],[8.20030521600006,48.95856313100002],[8.1998915450001,48.958250331],[8.17932458500013,48.94269846700003],[8.14811202000007,48.903734436000136],[8.102740112000049,48.82131052600011],[8.090337769000143,48.80751292000018],[8.084239950000097,48.80405059800013],[8.047549682000124,48.79102813700011],[8.038764689000061,48.790769756000046],[8.036594279000068,48.78828928700006],[8.031943400000102,48.78534373000015],[8.02729252100005,48.78002105800011],[8.025122111000144,48.77061594700013],[8.022951701000068,48.76508656900016],[8.017267293000117,48.761830954000075],[8.009619181000119,48.760073954000106],[7.981507202000103,48.75976389600011],[7.970138387000106,48.75728342700013],[7.964867391000069,48.748343405000114],[7.963627157000133,48.72927480100013],[7.959182983000118,48.721368306999985],[7.948434285000103,48.7118598440001],[7.935205119000102,48.70333323199999],[7.923319539000089,48.698217265],[7.895931030000042,48.676513163],[7.880634806000073,48.6677281700001],[7.864098348000084,48.66416249700013],[7.852419475000119,48.65868479400014],[7.810251506000071,48.61501820900018],[7.801776571000061,48.582358704000015],[7.801673217000115,48.54758046500014],[7.813455444000027,48.52634145100008],[7.813455444000027,48.51946848600012],[7.788444051000055,48.506342672000144],[7.776455119000075,48.49817779600012],[7.771287475000064,48.489108582000156],[7.769220419000106,48.47006581700002],[7.764156128000137,48.46035064800007],[7.757644897000147,48.453891093000024],[7.750720255000089,48.44440846800002],[7.74565596500011,48.43301381400012],[7.738317912000126,48.40660715800006],[7.737181030000102,48.39348134400008],[7.740384969000075,48.381440736000016],[7.746896199000048,48.36867665700005],[7.751960490000044,48.35534413700013],[7.750720255000089,48.341365662000115],[7.736974325000062,48.326663717000045],[7.71857751500005,48.31999745700004],[7.702454467000081,48.31118662500004],[7.695529825000079,48.29018015600003],[7.693462769000121,48.26987131800011],[7.687158243000112,48.252921448],[7.676616252000144,48.23840037100014],[7.613364298000079,48.179205018000076],[7.606749715000149,48.16698354100005],[7.604786010000054,48.15256581600012],[7.599721720000076,48.14471099899999],[7.592900431000118,48.13866485600006],[7.58566573000013,48.129724833000026],[7.578947795000118,48.114480286000074],[7.572643270000101,48.09497243300008],[7.575743856000144,48.05370880200017],[7.618945353000073,48.00265248700002],[7.621115763000062,47.971439922000016],[7.611607300000088,47.959399313000134],[7.584942261000037,47.94040822400008],[7.579567911000083,47.92704986600016],[7.580808146000038,47.91079762800014],[7.578947795000118,47.906327617000116],[7.572643270000101,47.89630238900009],[7.568612508000114,47.89136729000016],[7.5619979250001,47.88705230699999],[7.559000691000107,47.88271148800011],[7.557863810000099,47.878525697000086],[7.558380575000116,47.87599355100018],[7.559207397000136,47.8734614050001],[7.559000691000107,47.869017233000086],[7.564168334000101,47.85041371700014],[7.5619979250001,47.839225769],[7.548458699000121,47.83423899300014],[7.542877645000118,47.829433086000115],[7.528614949000143,47.79703196300012],[7.525927775000098,47.78315684000016],[7.538330119000079,47.748146057000056],[7.537813355000139,47.73181630400002],[7.531922241000132,47.72520172200002],[7.515385783000057,47.713316142000096],[7.511871785000096,47.70732167600006],[7.514662312000041,47.68579844200009],[7.517866251000015,47.67502390599999],[7.5217936600001,47.67042470400004],[7.536573120000098,47.66520538400003],[7.550112345000088,47.65244130500004],[7.572643270000101,47.622003886000165],[7.578637735000115,47.61693959600011],[7.585045614000079,47.61316721600014],[7.590316609000097,47.607947896000056],[7.592487020000107,47.59841359500016],[7.590109904000143,47.59482208300009],[7.586028488000124,47.58461854400015],[7.585482836000097,47.58447913500008],[7.550319051000145,47.57549509700014],[7.52634118600011,47.56645172100018],[7.520866596000133,47.56341604800018],[7.482726278000086,47.5422671510001],[7.485103394000106,47.54159535700001],[7.501743205000138,47.53296539400016],[7.505153850000056,47.53301707000009],[7.505463908000137,47.52301768100007],[7.501123087000082,47.51730743400013],[7.493061564000072,47.51549875900004],[7.482726278000086,47.516997376000134],[7.476938517000092,47.51487864300015],[7.475594930000027,47.51172637900011],[7.477765340000132,47.50769561800002],[7.484896688000077,47.50090016700007],[7.485776134000075,47.498767511],[7.485930217000146,47.49839386000009],[7.485826864000103,47.495784200000074],[7.484483276000049,47.49294199700002],[7.482726278000086,47.49126251200015],[7.4674300530001,47.481909078000015],[7.454510946000112,47.48320098900014],[7.445995797000137,47.48688412900016],[7.441488485000149,47.488833720000095],[7.425985555000067,47.492502747000074],[7.414306681000085,47.49017730700014],[7.414410034000099,47.48402781200018],[7.419474325000095,47.477852478],[7.422781616000094,47.47542368600013],[7.4276392000001,47.47074696900007],[7.429292847000055,47.46511423800013],[7.426088908000081,47.4557608030001],[7.420563120000111,47.45085702800016],[7.406348511000119,47.43824249300006],[7.388218887000107,47.433288860000076],[7.37854659000007,47.43064605799999],[7.336930048000085,47.431853680000174],[7.309093465000103,47.43266143800004],[7.282635132000109,47.4288890590001],[7.244807984000118,47.417726949000084],[7.2380900470001,47.416796773000115],[7.230338583000105,47.41901886100011],[7.226307820000101,47.42263621100001],[7.223517293000043,47.426227723000075],[7.219383179000118,47.428475647000184],[7.190030965000062,47.434728496],[7.16832686300006,47.443565165000095],[7.1626424560001,47.459894918000124],[7.180832560000056,47.488265280000135],[7.15365075700015,47.48640492800003],[7.142169389000087,47.487650968000096],[7.140318237000145,47.48785186800002],[7.127295776000095,47.49294199700002],[7.10373132300009,47.496275126000015],[7.053915242000073,47.49038401300011],[7.027973674000123,47.49294199700002],[7.018878621000055,47.497670390000096],[7.009783569000149,47.49924652200012],[7.000791870000114,47.497670390000096],[6.991903524000122,47.49294199700002],[6.973300008000137,47.48909210300015],[6.975780477000114,47.477955831000045],[6.986115763000043,47.464132385000156],[6.990973348000068,47.452220968000134],[6.983428589000112,47.44379770900015],[6.968545777000145,47.435193583000014],[6.952319376000048,47.428837383000186],[6.926067749000111,47.424858297000114],[6.924517456000103,47.40599640000009],[6.898782593000107,47.395712790000076],[6.884003133000107,47.38258697600013],[6.871600789000126,47.36695485500017],[6.866639852000077,47.35416493700011],[6.985598999000104,47.36212310800006],[7.003995809000088,47.368143413],[7.018878621000055,47.359901021000056],[7.033864787000113,47.35065094000005],[7.044303426000056,47.34049652099999],[7.036551961000043,47.32951527900009],[7.027146850000094,47.32543284100008],[7.016914917000093,47.32352081300017],[7.00647627800015,47.31936086000006],[6.991903524000122,47.3059508270001],[6.986529174000054,47.30450388700011],[6.977434123000079,47.30372873900011],[6.958623901000066,47.290551250000114],[6.952216024000023,47.270035705000126],[6.956246785000132,47.24523101800009],[6.888343953000088,47.21130544099999],[6.859301798000075,47.19091908800014],[6.840284871000108,47.16952504500013],[6.838076256000079,47.16813159700003],[6.774759155000111,47.12818389900009],[6.744786824000072,47.121052551000055],[6.746027059000112,47.1039476530001],[6.731661011000113,47.09888336300004],[6.727940307000097,47.09712636300016],[6.724219604000069,47.09077016200003],[6.699104858000055,47.08462066700015],[6.689699747000105,47.078290304000134],[6.676263875000131,47.06239980100012],[6.688252807000111,47.043847961],[6.665411824000102,47.021291199000146],[6.598697550000082,46.98653879800009],[6.491107218000138,46.963387757000035],[6.442634725000062,46.94416412400001],[6.427751913000122,46.90907582700008],[6.431886027000132,46.900032451000115],[6.445218546000063,46.88261749300007],[6.44842248600014,46.871558737000086],[6.4467688390001,46.85770945300011],[6.443117662000077,46.85145512100017],[6.441187785000068,46.84814931300012],[6.434263143000095,46.83954518700006],[6.418553507000127,46.80701487200004],[6.417106568000122,46.80215728800012],[6.419897095000096,46.7965245570001],[6.425168090000113,46.79161529600004],[6.432609497000044,46.78598256500011],[6.433022908000055,46.769110210000136],[6.429198853000116,46.76081614200008],[6.417933390000144,46.751100973000135],[6.407391398000101,46.745700786000086],[6.374215128000088,46.733608501],[6.347860148000109,46.71317047200013],[6.337938273000134,46.707408550000146],[6.266314738000062,46.680355937],[6.131852661000039,46.59560658800008],[6.118416789000094,46.5834626260001],[6.12151737500011,46.570285137000106],[6.145701945000098,46.55162994400014],[6.110355265000095,46.52083079000009],[6.075525349000117,46.479592998000086],[6.064156535000052,46.47111806300008],[6.060229126000081,46.465020244000115],[6.060229126000081,46.459904277000035],[6.062399536000072,46.45520172200004],[6.064776652000091,46.45106760700012],[6.065500122000087,46.44799285900008],[6.065500122000087,46.44037058600009],[6.06756717900015,46.43360097300008],[6.065706827000071,46.42701222800018],[6.054234660000134,46.41941579200012],[6.059019361000082,46.41738321100017],[6.108184855000103,46.3964972940001],[6.12286096200009,46.38554189100002],[6.135056600000098,46.370400696],[6.136400187000077,46.35934194000002],[6.118607037000088,46.33177108500017],[6.104050740000076,46.309215800000075],[6.100743448000088,46.30141265900006],[6.093612101000133,46.27309397400016],[6.093095337000108,46.262293600000035],[6.094025513000132,46.253043518000126],[6.089684692000077,46.24637725900003],[6.067670532000079,46.24162302700002],[6.061882772000104,46.24115793900007],[6.055888305000082,46.24167470400012],[6.048033488000073,46.24343170200011],[6.04617313600005,46.243535055000116],[6.044519491000102,46.24343170200011],[6.042865844000061,46.24306996700001],[5.982921183000144,46.22270945200007],[5.958529907000127,46.211960754000145],[5.954809204000128,46.19992014600008],[5.965247843000071,46.18622589100006],[5.982921183000144,46.17082631400008],[5.979820597000128,46.16224802700005],[5.972172485000044,46.15217112200009],[5.958839966000113,46.13046702100011],[5.982921183000144,46.14044057200012],[6.028293090000091,46.147933655000074],[6.073871704000084,46.14917389],[6.107874796000118,46.13863189700014],[6.140327596000134,46.15020741799999],[6.191383911000116,46.19170359400005],[6.255359335000094,46.22110748400006],[6.281197550000115,46.240072734000094],[6.276029907000094,46.263120423000046],[6.269001912000107,46.26523915600004],[6.252258748000145,46.259916484000186],[6.241820109000116,46.263688864000116],[6.237582642000064,46.26792633100014],[6.227970825000057,46.284462789000045],[6.227454060000099,46.28849355100005],[6.21825565600011,46.305495097000076],[6.214121541000083,46.31546864900018],[6.219495890000132,46.3291112270001],[6.240579874000076,46.348954977000076],[6.269105265000121,46.37502573700006],[6.301558065000052,46.39448191400005],[6.332357218000112,46.40138071700012],[6.365223430000128,46.402440084000105],[6.397676229000069,46.40817616800017],[6.482942342000115,46.44858713800015],[6.547021118000117,46.45737213200012],[6.613683716000139,46.455899354000124],[6.762666870000118,46.429260152],[6.77771555400011,46.42410649300008],[6.777756388000114,46.424092509],[6.787058146000049,46.414170635000104],[6.78810673300012,46.40500797800003],[6.789228556000125,46.39520538300006],[6.782097209000113,46.37846222000009],[6.755742228000144,46.35706817700015],[6.750367879000095,46.345518494000046],[6.769488159000076,46.32267751100012],[6.804938192000122,46.29660675100014],[6.827675822000089,46.26947662400009],[6.79222578900007,46.22167592400008],[6.774862508000125,46.18586415600008],[6.765664103000034,46.15160268100006],[6.774345743000111,46.1348078410001],[6.853927449000111,46.12261220300017],[6.869223673000079,46.112328593000186],[6.868190144000096,46.104680482],[6.861162150000097,46.09703236900013],[6.853100627000089,46.09021108100008],[6.848553100000061,46.08504343700015],[6.851343628000109,46.08602529000014],[6.853100627000089,46.07610341400014],[6.853410685000085,46.065664775000116],[6.851963745000091,46.064682922000046],[6.852377156000102,46.056931458000044],[6.850310099000126,46.052745667000075],[6.850930216000108,46.04964508100015],[6.859715210000104,46.0449942020001],[6.869223673000079,46.04406402600013],[6.876871786000066,46.04809478800002],[6.884003133000107,46.05321075500002],[6.892374715000074,46.05558787100007],[6.91511234500004,46.04861155300007],[6.982808471000055,45.995384827000024],[6.987666056000052,45.993111064000104],[6.99128340600015,45.9824657190001],[7.002755575000066,45.961691793000156],[7.009783569000149,45.943398336000186],[7.015157918000114,45.93332143100004],[7.022082560000115,45.92525990900005],[7.007716512000115,45.920505677000065],[6.997174519000055,45.91130727200005],[6.989112997000062,45.899266663],[6.982808471000055,45.88577911400013],[6.969165893000138,45.86975942],[6.949012085000049,45.85782216400004],[6.926377808000098,45.849760641000145],[6.905087117000107,45.84536814400015],[6.880385782000103,45.8455231730001],[6.873461141000121,45.844799704000096],[6.872736229769003,45.83967982505165],[6.871699264678142,45.832766724445904],[6.870662299587281,45.82827320905217],[6.864440509042112,45.82689058893102],[6.85856437352723,45.83345803450648],[6.851996927951859,45.836223274748775],[6.84335555219468,45.838642859960785],[6.816203654000077,45.83291412400017],[6.800804077000095,45.826454570000024],[6.788091675000118,45.81172678700001],[6.782717325000078,45.79529368100005],[6.781993856000071,45.7774653120001],[6.784681030000115,45.759585266000144],[6.795946492000069,45.718140768000076],[6.816100301000063,45.69685007700009],[6.843075398000082,45.68274241200005],[6.869223673000079,45.67902170800015],[6.882556193000112,45.675507711000094],[6.905293823000079,45.6596947230001],[6.918626343000113,45.65256337500007],[6.951079142000111,45.646775615000095],[6.963378133000077,45.64072947200005],[6.969475952000039,45.625846659],[6.967098836000076,45.620162252000156],[6.95562666800015,45.6025922650001],[6.952939494000134,45.59427236000012],[6.954903198000067,45.586210836000035],[6.965858601000122,45.57442860900012],[6.96978601100011,45.56698720300001],[6.975263712000099,45.52564605800008],[6.982808471000055,45.51112498000013],[7.028490437000045,45.493141581000046],[7.072001993000072,45.47004221700017],[7.075368543000081,45.466285856000056],[7.08182051500006,45.4590868130001],[7.088745158000108,45.446632793],[7.096806681000118,45.435419007000164],[7.110139201000038,45.428287659000134],[7.152927286000079,45.41511016900013],[7.160678752000081,45.41092437800002],[7.159645223000098,45.398470358000125],[7.150756877000076,45.38322581000007],[7.130086304000145,45.35707753500015],[7.097736857000058,45.329844056000084],[7.092569213000075,45.323952942000076],[7.097633504000044,45.29496246400002],[7.108382202000143,45.27491200800016],[7.108382202000143,45.259202373000086],[7.081200399000068,45.24307932500001],[7.062183471000111,45.21853302100014],[7.055465536000071,45.213675436000116],[7.05019453900013,45.21501902300018],[7.037688843000068,45.22576772100011],[7.029730672000084,45.22819651300016],[6.99448734500001,45.221323548],[6.958727254000109,45.20979970300006],[6.945808146000076,45.20106638599999],[6.928444865000074,45.179568990000135],[6.913768758000089,45.17016388000009],[6.904673706000096,45.168613587000074],[6.881315958000072,45.16840688100002],[6.873461141000121,45.16592641200005],[6.868190144000096,45.15745147700012],[6.872841023000149,45.15202545200016],[6.878628784000028,45.14742625000012],[6.876665079000104,45.14122507800012],[6.84410892700015,45.130114645],[6.808142131000096,45.13910634400007],[6.77145186300001,45.15316233400007],[6.736415242000106,45.15734812500001],[6.728870483000037,45.15460927300016],[6.710887085000138,45.14473907500008],[6.702205445000089,45.14122507800012],[6.694350626000073,45.140294902000065],[6.676263875000131,45.14075999],[6.66737552900014,45.13962310900008],[6.632700643000106,45.125515442000065],[6.629385185000046,45.123545113000105],[6.614613892000108,45.114766745000125],[6.602728312000067,45.103449606000154],[6.620298299000126,45.0844326790001],[6.636576375000061,45.07445912700008],[6.638126669000087,45.06743113200018],[6.63698978700009,45.059421285],[6.639676961000106,45.05037791000014],[6.651665894000075,45.035650126000135],[6.662207885000043,45.029242249],[6.697244507000049,45.02691681000006],[6.723496134000072,45.01337758400008],[6.729904012000134,44.98469716400011],[6.727940307000097,44.928731588000105],[6.745406941000056,44.90780263300012],[6.778169800000057,44.88764882500011],[6.847106161000085,44.859071758000155],[6.866019735000093,44.855661113000124],[6.915319051000097,44.862689108000055],[6.932682332000127,44.86165557900007],[6.982808471000055,44.846979472000086],[7.000791870000114,44.83297515900007],[7.004925985000057,44.82796254500003],[7.007096395000133,44.8220714320001],[7.006786336000062,44.81902252200008],[7.005856160000093,44.816335348000145],[7.00595951400004,44.811529440000136],[7.004099162000045,44.81080596900016],[6.999138224000092,44.795044658000066],[6.998414754000095,44.79375274700011],[7.009783569000149,44.77210032200004],[7.015157918000114,44.747398987000125],[7.018981974000069,44.73887237600012],[7.049367717000109,44.697892965000065],[7.055155476000095,44.68487050400013],[7.037275432000058,44.684612122000075],[7.001205282000058,44.69226023400013],[6.982808471000055,44.692156881000116],[6.959864135000116,44.683165182000074],[6.941467326000094,44.66699045899999],[6.934335978000149,44.64668162000005],[6.945601441000121,44.62544260700018],[6.931648804000133,44.61794952500004],[6.897335652000038,44.5754198210001],[6.84638269000007,44.547462871],[6.835737345000069,44.53402699800013],[6.838837931000113,44.50291778600008],[6.861265503000111,44.47490916],[6.891651245000077,44.451964824000136],[6.917799519000084,44.43630686400009],[6.88420983900005,44.42302602199999],[6.877181844000035,44.41439605700005],[6.868810262000068,44.38318349200007],[6.866329793000091,44.377189026000124],[6.866123088000052,44.37212473600006],[6.869843791000051,44.362926331000054],[6.873977905000061,44.35837880500013],[6.895992065000143,44.33982696599998],[6.903846883000084,44.330008444000114],[6.915629110000083,44.309699605],[6.921210164000115,44.302154846000136],[6.930201864000138,44.29538523400011],[6.950045613000043,44.285101624000035],[6.959244019000039,44.27735015900011],[6.965548543000067,44.26753163600013],[6.968855835000056,44.2581782020001],[6.973403361000095,44.249444885000045],[6.982808471000055,44.24174509800004],[6.996140991000061,44.23781768800016],[7.008026570000084,44.23921295200013],[7.020015503000138,44.24210683200011],[7.033451375000112,44.24293365500015],[7.046060425000121,44.24029815700013],[7.104868205000116,44.21776723300003],[7.144969116000112,44.20722524000014],[7.251319214000091,44.16004465700003],[7.270129435000115,44.15430857400015],[7.296174357000097,44.15115631100012],[7.309300171000132,44.14748728400003],[7.316224813000133,44.140200908000125],[7.321599161000079,44.13188100200007],[7.331004272000143,44.125266419000084],[7.34061608900015,44.12366444900006],[7.380820353000074,44.12294098000014],[7.554763224000054,44.159062806000165],[7.583598674000086,44.16071645100011],[7.624733114000064,44.18009511300009],[7.655635620000055,44.176064352000175],[7.641889689000037,44.143559876000054],[7.654085327000131,44.12495636],[7.676202840000143,44.10898834300015],[7.687942587000093,44.09079945700013],[7.691912475000095,44.08464874300012],[7.689948771000076,44.067337138000035],[7.67878666200005,44.05658844100013],[7.664317261000121,44.04857859300013],[7.653361857000049,44.03969024700005],[7.646953979000101,44.02749460900013],[7.63868575000015,44.005067037000046],[7.630934285000138,43.993543193],[7.608610066000067,43.97561147100011],[7.556933634000131,43.94408884700006],[7.536779826000072,43.920782776000024],[7.4934749760001,43.88623708100015],[7.477868693000062,43.8655148320001],[7.482726278000086,43.84021921900013],[7.502289259000094,43.79222239799999],[7.489105665000068,43.78546784100014],[7.484873894000144,43.785386460000055],[7.48072350400011,43.785834052000055],[7.476410352000101,43.78449127800015],[7.475759311000046,43.78082916900003],[7.477305535000085,43.76813385600015],[7.476410352000101,43.76463450700005],[7.46843509200005,43.76170482000005],[7.46265709700009,43.76211172100015],[7.454345265000087,43.757117291000085],[7.445974054000118,43.749845360000144],[7.437454032063101,43.74336054091743],[7.426246111000125,43.75546422899999],[7.406968628000101,43.763505554000105],[7.387538289000105,43.75789866200007],[7.372655477000079,43.74583221500008],[7.367262599000071,43.73412453300013],[7.365750207000076,43.72273028299999],[7.353184272000077,43.715690694],[7.342295769000117,43.707831122000115],[7.338063998000109,43.69830963700012],[7.330533323000084,43.686424123000094],[7.319001775000118,43.68524995800003],[7.300903921000071,43.68768908400013],[7.280252530000041,43.69332627400017],[7.257273161000057,43.69164800400013],[7.241674873000136,43.684869052000025],[7.228509115000064,43.67419580900003],[7.23181420800006,43.663470494000094],[7.213804599000127,43.64867291600008],[7.20379111000011,43.64435965000016],[7.196677433000104,43.65691660700004],[7.177651002000061,43.66010941899999],[7.164594891000093,43.65606095600005],[7.151621941000144,43.65477122599999],[7.144216342000078,43.64545319200015],[7.13656660200013,43.641180731000034],[7.133067254000139,43.63385651200004],[7.126154018000136,43.60583297200013],[7.132090691000087,43.578802802000084],[7.132578972000147,43.57355377800009],[7.136241540000071,43.56245863800008],[7.138916191000135,43.55402035800002],[7.125511178000068,43.547768114000164],[7.112940732000112,43.56454415400016],[7.104323741000087,43.568293579000155],[7.08842678700006,43.568674446000145],[7.071052428000115,43.56080479800012],[7.05810756800011,43.549885465],[7.045077517000067,43.54214282900004],[7.037202227000108,43.536263506000026],[7.030634394000089,43.547889169000044],[7.01446813300015,43.54708658200015],[6.993818672000116,43.548905626000035],[6.975599612000082,43.54694595700006],[6.962087436000019,43.54010651200004],[6.94520312500012,43.52725267200019],[6.94088799900004,43.51245966800011],[6.949554884000122,43.50787995000008],[6.948985222000147,43.507391669000086],[6.953805085000055,43.50461583900001],[6.95429855600014,43.500106394000014],[6.925079666000073,43.47276051200005],[6.920372044000118,43.44901182400018],[6.898241732000116,43.43799878100004],[6.894027990000097,43.42762841500014],[6.871072493000099,43.42609293000011],[6.869671608000118,43.432052322000075],[6.866559591000112,43.43545579400013],[6.862957239000109,43.43936205900003],[6.857987506000143,43.4361757650001],[6.856098247000148,43.428729440000104],[6.860136328000123,43.41586789000009],[6.846671575000072,43.41257713600011],[6.834825863000077,43.41581114899999],[6.818843208000146,43.41607234100003],[6.783050322000094,43.40863472300005],[6.772973707000091,43.41845419200003],[6.757085807000094,43.422686592],[6.746501343000091,43.41790611800015],[6.731146285000136,43.407846721000155],[6.732823701000115,43.38207900700009],[6.717784050000148,43.366888739000025],[6.717837534000125,43.35060424699999],[6.693930649000038,43.3483715710001],[6.674571160000141,43.346380927000055],[6.666026238000143,43.33319733300003],[6.661306186000046,43.32233307500003],[6.652028842000077,43.314927476000136],[6.62462860100004,43.2959130600001],[6.597242936000072,43.28400728600009],[6.590891640000109,43.268897951000056],[6.611672016000057,43.26428823700003],[6.672358114000104,43.27619557300007],[6.693373608000059,43.27297279800013],[6.698021526000047,43.26545707400002],[6.685394892000062,43.24803716600012],[6.668355527000131,43.239535642000035],[6.665403062000081,43.221289739],[6.671977632000051,43.21360924600002],[6.679800772000135,43.20155281400006],[6.660400217000131,43.19041167900015],[6.640391472000061,43.18183014500012],[6.629161004000082,43.17987702],[6.609873894000117,43.173407294000086],[6.599457227000129,43.17499420800011],[6.595469597000146,43.17987702],[6.593272332000083,43.187730210000076],[6.581275607000094,43.18437362000016],[6.563718110000081,43.18444937500014],[6.539911917000068,43.18220400900016],[6.536426701000096,43.17254385500014],[6.526714449000109,43.16056742200006],[6.505683047000076,43.15097126400009],[6.479162710000111,43.15606016800008],[6.451331547000052,43.152719291000054],[6.422017572000128,43.152341580000055],[6.401678985000046,43.14693816700018],[6.37854096500007,43.136079156],[6.36608020500006,43.118634922000055],[6.369877678000108,43.10551938000013],[6.375371472000097,43.09084111400012],[6.342257678000095,43.0907633690001],[6.328868035000056,43.099920966000084],[6.325694207000112,43.10419342700003],[6.306202437000109,43.109413116000056],[6.280373941000078,43.118665523000075],[6.25347017900009,43.1208747730001],[6.2197024970001,43.116547581000084],[6.193198227000039,43.108773327000065],[6.178664022000135,43.102856328000044],[6.162933790000068,43.09259674700009],[6.153168165000125,43.07196686400006],[6.152767707000123,43.04810730600015],[6.171330439000086,43.04232498900011],[6.185420303000057,43.045443635000034],[6.180072448000146,43.03592213800012],[6.154461750000053,43.03375113300008],[6.097694325000133,43.03126147400015],[6.088517320000108,43.03484858700004],[6.103031188000101,43.04078050000011],[6.119254454000099,43.04515018000007],[6.132065822000101,43.05263833600016],[6.129087889000061,43.07136218800004],[6.109662328000126,43.08431566500006],[6.091933384000072,43.08290279500012],[6.044522586000084,43.07820776700005],[6.027008490000127,43.078195102000066],[6.016520033000063,43.09893637100008],[5.991732384000102,43.102347472000034],[5.958652331000053,43.102167952000016],[5.934092644000117,43.11359284100003],[5.936534050000148,43.11945221600017],[5.938243035000056,43.12909577000015],[5.94092858200014,43.134019273000106],[5.924489780000044,43.13434479400003],[5.908539259000122,43.131293036000116],[5.879405144000089,43.12042877800015],[5.89625084700009,43.115423895],[5.910610168000061,43.09320399500014],[5.927252244000101,43.08760106099999],[5.951378968000085,43.07997756900012],[5.940288036000084,43.07090971700008],[5.917208171000111,43.07274182500005],[5.887956364000075,43.072225869000086],[5.875336134000122,43.068793036],[5.856605081000083,43.04482851500001],[5.818960387000089,43.05346898400013],[5.790241589000033,43.069930794000086],[5.781873138000066,43.07911819900006],[5.80289558000004,43.08889048400011],[5.818085226000078,43.099089592000055],[5.811464562000111,43.10672548200007],[5.800564292000074,43.11184894300008],[5.783406919000129,43.114597606000025],[5.780840298000044,43.12333360400005],[5.776126699000116,43.13081108100012],[5.760558150000093,43.13198199200012],[5.74101163600011,43.13206265100003],[5.696298672000069,43.146875111000114],[5.687673373000052,43.16885000200013],[5.67391854200008,43.17988854600016],[5.655221278000084,43.18559003400009],[5.63421264200008,43.187229117000086],[5.622902872000111,43.17672741200009],[5.612420433000096,43.16042865900012],[5.588262046000068,43.167978602000154],[5.572706403000041,43.169148290000024],[5.558973791000142,43.18157756400002],[5.547245558000071,43.19385852900017],[5.537835580000149,43.207389644],[5.524952486000103,43.21262908199999],[5.514335724000063,43.20773992500012],[5.504175851000099,43.20565889500007],[5.459833401000083,43.208519183000114],[5.439753874000103,43.20764571000013],[5.409515220000059,43.21129237300006],[5.395310694000102,43.21234101300014],[5.370337389000071,43.20785932100013],[5.346980067000061,43.21589931800004],[5.350596550000148,43.23358795800006],[5.35377037900011,43.24380117400001],[5.360850457000083,43.25397370000006],[5.369151238000057,43.27041250200013],[5.357342712000103,43.28034452800007],[5.355967644000117,43.29205963700004],[5.351817254000081,43.29791901200014],[5.338882958000056,43.334288836],[5.294173414000113,43.355471883000135],[5.238278858000029,43.32804075100013],[5.163237317000068,43.329314199000166],[5.12517355600005,43.32576874300018],[5.064794619000111,43.328018530000165],[5.034022073000102,43.33547643100003],[5.013936386000069,43.357920695000175],[5.005572076000078,43.38162750200003],[5.026133660000141,43.40932851800009],[5.05713951900006,43.42206452000015],[5.146169467000078,43.42206452000015],[5.173838738000057,43.428290106000084],[5.19288170700014,43.43952057500008],[5.213552280000073,43.457831122000144],[5.226328972000118,43.48029205900015],[5.222829623000023,43.50397370000009],[5.193614129000081,43.48993561400012],[5.165537957000083,43.48248932500014],[5.139984571000099,43.485785223],[5.118418816000087,43.50397370000009],[5.111501498000081,43.519354559000035],[5.11085045700014,43.52789948100015],[5.10572350400011,43.53302643400015],[5.08497155000012,43.53815338700018],[5.077403191000087,43.53888580900009],[5.053721550000148,43.53815338700018],[5.049571160000113,43.541449286000116],[5.035329623000109,43.555731512000094],[5.029144727000045,43.55857982000005],[5.022308790000125,43.55219147300012],[5.01587975400011,43.53876373900012],[5.010996941000144,43.525091864],[5.00928795700014,43.51764557500003],[5.01465905000009,43.498724677],[5.02369225400011,43.49046458500011],[5.035817905000101,43.48558177300004],[5.05030358200014,43.4767113300001],[5.06226647200009,43.45164622599999],[5.051117384000064,43.42926666900017],[5.02759850400011,43.41697825700011],[4.998465760000072,43.414699406000025],[4.983083530000101,43.41705963700009],[4.928477410000141,43.440130927000055],[4.903168165000096,43.431626695000126],[4.892588738000143,43.425360419000086],[4.86817467500009,43.421454169000086],[4.858409050000148,43.415228583000115],[4.850271030000044,43.40143463700012],[4.85499108200014,43.39618561400012],[4.864890595000077,43.3779000120001],[4.8675315750001,43.365112099],[4.901005115000089,43.36696508500002],[4.877188604000111,43.35078249100008],[4.855778264000094,43.341779141000146],[4.85082341800009,43.358928844],[4.833262566000087,43.38198476800004],[4.791758660000085,43.399115302000055],[4.757823113000143,43.42234935099999],[4.74244225400011,43.44871653900016],[4.744965040000125,43.507391669000086],[4.74244225400011,43.52448151200004],[4.736175977000045,43.53949616100005],[4.725840691000143,43.55678945500007],[4.711924675000148,43.57151927300004],[4.694590691000087,43.579087632000025],[4.694590691000087,43.57290273600013],[4.72437584700009,43.538397528000026],[4.728770379000053,43.52789948100015],[4.728770379000053,43.45620351800012],[4.742523634000094,43.42255280200011],[4.769704623000081,43.401922919000114],[4.800059441000059,43.386053778000175],[4.823018876000105,43.36716896300011],[4.820279138000075,43.34635571600002],[4.791247192000128,43.34522195800009],[4.66588637600006,43.34754133600016],[4.592335626000049,43.35988927400014],[4.56628876500011,43.37109356600003],[4.56554404400012,43.387949009000025],[4.585703972000061,43.40424225500006],[4.588043737000135,43.41689077600007],[4.579593630000147,43.43006620400014],[4.555208306000083,43.44326551500008],[4.513031446000099,43.45579661700005],[4.409418594000101,43.44774134200013],[4.205902540000068,43.45990631700009],[4.181651238000086,43.46377187700009],[4.160329623000109,43.47150299700009],[4.132823113000086,43.487046617000104],[4.117198113000086,43.51048411699999],[4.132823113000086,43.53278229400003],[4.131195509000065,43.53624095300002],[4.10531660200013,43.55186595300002],[4.047455274000128,43.556138414000095],[3.990896030000044,43.55084870000003],[3.952972852000101,43.53994375200007],[3.939300977000073,43.53253815300017],[3.739919467000107,43.41282786699999],[3.622162306000063,43.374904690000065],[3.589691602000073,43.3548851580001],[3.51335696700005,43.28107330900015],[3.492360873000109,43.27431875200013],[3.452403191000144,43.288763739],[3.428396030000101,43.28546784100014],[3.385427280000044,43.283921617000104],[3.317718946000099,43.26308828300013],[3.244313998000109,43.21942780200014],[3.227549675000091,43.20425039300015],[3.22095787900011,43.19521719000012],[3.207286004000082,43.186631578000046],[3.1958927740001,43.17666250200013],[3.178721550000091,43.165228583000086],[3.165944858000046,43.152411200000145],[3.154470248000081,43.1352806660001],[3.135996941000059,43.12103913000003],[3.114024285000141,43.10630931200002],[3.104177280000044,43.087795315],[3.096039259000122,43.07257721600003],[3.086029493000126,43.05402252800012],[3.070404493000041,43.02692291900008],[3.063243035000113,43.008368231000176],[3.056081576000054,42.9927025410001],[3.046153191000144,42.96417877800012],[3.038991733000017,42.94277578300016],[3.041840040000068,42.93280670800006],[3.054698113000085,42.92711009300008],[3.056081576000054,42.90713125200001],[3.047536655000044,42.84723541900017],[3.040456576000082,42.790187893000066],[3.038991733000017,42.75027090100012],[3.043304884000122,42.72459544500005],[3.037608269000145,42.68321360900005],[3.041840040000068,42.62905508000007],[3.046153191000144,42.58767324400004],[3.051849806000035,42.55487702000012],[3.066091342000049,42.542059637000094],[3.087494337000095,42.534938869000044],[3.114593946000127,42.53062571800014],[3.137380405000044,42.52492910400015],[3.145925326000082,42.51496002800015],[3.145925326000082,42.50352610900001],[3.143077019000117,42.49213288000006],[3.150238477000073,42.482163804000045],[3.160248243000069,42.475043036],[3.175873243000126,42.456488348],[3.181569858000017,42.43508535400015],[3.180969656711085,42.43148414768645],[3.137823527000137,42.42593862000017],[3.111675252000111,42.42500844400003],[3.086147094000097,42.427178854000104],[3.065579874000093,42.43201060000003],[3.053590942000142,42.43764333100013],[3.04387577300011,42.4452656050001],[3.036020956000073,42.45461903900015],[3.029613077000135,42.46565195700005],[3.02299849400012,42.467047221000044],[2.993749634000096,42.467615662000085],[2.983104289000096,42.46932098400005],[2.966051066000148,42.4610010790001],[2.933701619000061,42.4702253220001],[2.900835409000137,42.45126007100005],[2.88409224500009,42.44919301400007],[2.866935669000043,42.449632263000105],[2.850812622000149,42.44836619100006],[2.834792928000098,42.44131235800013],[2.804613892000106,42.41955658000013],[2.788594198000055,42.41201182100018],[2.767716919000065,42.409557191000104],[2.72854618300002,42.41402720200013],[2.708082316000059,42.41289032000013],[2.690408976000072,42.4061723840001],[2.648241007000109,42.38147104900018],[2.640282837000143,42.37284108500013],[2.649377889000107,42.35372080600014],[2.661780232000098,42.34335968000012],[2.662193644000098,42.33901886100015],[2.635425253000022,42.337881979000045],[2.613411092000149,42.340956726000066],[2.56741906700006,42.352635600000056],[2.548092081000107,42.352248027000044],[2.540340617000084,42.346977031],[2.531969035000117,42.33077647000003],[2.525251098000098,42.32589304700018],[2.514812459000069,42.32566050300012],[2.503650350000015,42.32845103000007],[2.483393188000122,42.33697764100002],[2.464893025000094,42.340620829],[2.445566040000131,42.35196380600017],[2.429856404000077,42.3675442510001],[2.422518351000065,42.383693135999984],[2.406602010000142,42.38426157600004],[2.375492798000096,42.389325867000125],[2.317305135000083,42.40960886700013],[2.305316203000132,42.416972758000114],[2.277410930000144,42.42862579400009],[2.245991659000111,42.42611948700004],[2.184186645000125,42.41180511500012],[2.136954386000098,42.41622345000003],[2.121038045000148,42.4106165570001],[2.116283813000081,42.405397237],[2.108739054000125,42.390643615999984],[2.103984823000133,42.384830017000084],[2.080110311000055,42.3712649540001],[2.063263794000079,42.35790659700008],[2.05168827300011,42.35235138000017],[2.035255168000049,42.34925079400013],[2.009210245000077,42.34708038300015],[1.995671020000088,42.34868235300017],[1.983372030000055,42.35454762800008],[1.963734985000116,42.367234192000026],[1.954226522000056,42.382685445000035],[1.941100708000078,42.42009918200007],[1.927458129000058,42.43689402300005],[1.911955200000136,42.441958313000114],[1.89324833200007,42.44273346000013],[1.869787232000107,42.446790060000026],[1.813666626000042,42.475237936000056],[1.792685995000056,42.481723328000115],[1.730570923000073,42.48805369100013],[1.71217411300006,42.493712260000095],[1.712690877000114,42.49678700800003],[1.711967407000117,42.499293315],[1.710003703000069,42.50133453400015],[1.707006470000067,42.50278147400014],[1.710623820000137,42.52774119100003],[1.721682577000138,42.54851511599999],[1.739976033000119,42.56164093000013],[1.76509078000015,42.56337209100012],[1.761107147000132,42.56764619700008],[1.752688435000067,42.5766787720001],[1.729434041000076,42.582001445000074],[1.713310995000086,42.589546204000115],[1.721992635000049,42.60985504200012],[1.608304484000143,42.61812327100007],[1.597349081000061,42.621921489000115],[1.543088827000133,42.64936167399999],[1.527792602000062,42.64853485200014],[1.498440389000109,42.640240784000085],[1.466814412000105,42.64145518000011],[1.451414836000112,42.60205190100011],[1.42929732200011,42.59538564100002],[1.414827921000068,42.609338277000106],[1.397981404000092,42.64362559],[1.378757771000068,42.66323679600004],[1.361084432000069,42.686723735000115],[1.352712850000103,42.69005686500013],[1.343307739000039,42.690444438000135],[1.338243449000061,42.694449361000025],[1.342584269000042,42.70866038100009],[1.319123169000079,42.713362936000166],[1.195926554000096,42.71364715600005],[1.162543579000044,42.705688986000084],[1.151484823000118,42.70672251400005],[1.13432824700007,42.71597259600015],[1.124096313000081,42.729744365000116],[1.116551554000125,42.74524729400004],[1.106733032000079,42.75961334300002],[1.089059692000149,42.77131805400002],[1.068182414000091,42.7761239630001],[0.982916300000113,42.780361430000156],[0.975268189000133,42.78374623600008],[0.958731730000068,42.79371978800001],[0.950256795000143,42.796122742000065],[0.940024862000087,42.79366811199999],[0.930619751000108,42.78803538000015],[0.921111287000116,42.784366354000056],[0.910362589000101,42.78767364600004],[0.894446248000094,42.79932668100012],[0.885764608000045,42.80423594200006],[0.856102336000077,42.81276255300015],[0.812900838000132,42.831624451],[0.795744263000074,42.833846537000014],[0.776313924000078,42.832451274000114],[0.758847290000062,42.83526764],[0.72432743300007,42.84529286700011],[0.706757446000097,42.84658477900013],[0.679368937000049,42.84511200000015],[0.656321248000097,42.838419902000126],[0.651567016000087,42.82405385400013],[0.653737427000095,42.802685649000026],[0.639681437000149,42.77467702300011],[0.650740194000065,42.763385723000155],[0.643298787000049,42.75907074000018],[0.63957808400005,42.75483327200011],[0.633480265000088,42.74478220600009],[0.647639608000134,42.74103566500018],[0.659628540000085,42.72989939400007],[0.666449829000044,42.714758200000134],[0.66541630100005,42.69866099100006],[0.66342581400005,42.69621435100005],[0.656734660000097,42.68798980800007],[0.64360884600012,42.68447581000011],[0.608158813000102,42.68798980800007],[0.483515259000029,42.68530263300011],[0.466927124000023,42.690444438000135],[0.428789917000074,42.683028870000115],[0.409282064000081,42.6822537230001],[0.389283285000118,42.68514760400011],[0.384399862000095,42.68858408600012],[0.383676391000108,42.69269236300015],[0.384012288000093,42.696852315000065],[0.381816040000103,42.70010793100006],[0.354169148000096,42.71749705000009],[0.336030721000071,42.712691142],[0.318305704000039,42.69953949000002],[0.290245402000039,42.67029062900015],[0.275388428000099,42.668688660000115],[0.259807983000144,42.682382914000144],[0.238362264000045,42.71036570300004],[0.222394246000079,42.71620514000013],[0.169167521000134,42.72646291100004],[0.152941121000111,42.72460256000004],[0.134182576000114,42.715223288000075],[0.072842651000144,42.70847951300014],[-0.004310262999923,42.68752472000013],[-0.038933471999911,42.68514760400011],[-0.078414265999953,42.69667144800003],[-0.084202026999918,42.701089783000114],[-0.088852905999886,42.706128235],[-0.095751708999956,42.71067576100013],[-0.108489949999921,42.713362936000166],[-0.119031941999879,42.71685109500011],[-0.121822468999937,42.723310649000055],[-0.12311437999989,42.73036448200018],[-0.129238036999936,42.73589385999998],[-0.145722818999928,42.74589325],[-0.157789265999924,42.76069854700002],[-0.163628702999887,42.77798431400011],[-0.161406615999908,42.79534759600013],[-0.179390014999882,42.78974070200012],[-0.208354654999937,42.78387542700004],[-0.235148885999934,42.78622670500006],[-0.247034463999853,42.804830221000095],[-0.305134937999952,42.83081010700012],[-0.307418375999873,42.83183115700013],[-0.322792113999952,42.84250234000014],[-0.328243977999932,42.83258046500005],[-0.335168619999905,42.82495819100008],[-0.342997599999933,42.82273610500009],[-0.351679239999896,42.82924733500014],[-0.399738321999934,42.80131622300014],[-0.423922892999911,42.79067087800017],[-0.454463662999927,42.788913880000095],[-0.508413858999887,42.80749155700012],[-0.533890339999914,42.80800832199999],[-0.535647338999894,42.784211324000026],[-0.544432332999861,42.78201507600003],[-0.561175495999919,42.77354014100002],[-0.56903031399986,42.77263580400007],[-0.578693806999866,42.777338359000126],[-0.578538777999938,42.783306987000074],[-0.577143513999943,42.78979237900005],[-0.582931274999936,42.79583852100008],[-0.587323770999916,42.79684621200015],[-0.603550170999938,42.79684621200015],[-0.610164753999925,42.799094137000154],[-0.609958048999971,42.802840679000084],[-0.60804602099995,42.80718149800005],[-0.609492960999944,42.81144480400012],[-0.648301961999891,42.84978871700003],[-0.666078653999904,42.86074412],[-0.700391804999924,42.876427918000054],[-0.710520385999899,42.877668153000016],[-0.720287231999862,42.8766087850001],[-0.730105753999908,42.877513123000156],[-0.740286010999881,42.884799499000124],[-0.745867065999903,42.89392039000002],[-0.744781859999904,42.89929473900018],[-0.741422891999889,42.90389394200004],[-0.740906128999939,42.91089609800004],[-0.745031962999889,42.918727227000076],[-0.759664672999861,42.946501160000096],[-0.786433064999926,42.95327077300006],[-0.863534301999948,42.943064677000066],[-0.943219360999905,42.94789642300019],[-0.981459920999896,42.95704315200008],[-1.016289834999952,42.97624094700008],[-1.028485473999893,42.98670542400013],[-1.0450736089999,42.990219422000095],[-1.079696817999888,42.99339752200014],[-1.087189900999931,42.99799672500011],[-1.103726358999921,43.00574819000009],[-1.112408,43.00825449600008],[-1.149925088999879,43.005722352000085],[-1.182532918999925,43.025281881000026],[-1.216897745999887,43.039260356],[-1.274878702999928,43.04683095300008],[-1.293688923999952,43.05520253500005],[-1.310587117999944,43.06949106900011],[-1.315082966999853,43.08287526500005],[-1.306969766999941,43.09597524000013],[-1.286040811999953,43.109178569],[-1.308623412999907,43.11357106600009],[-1.331050984999905,43.10734405600003],[-1.348259236999866,43.09308136000014],[-1.355183877999934,43.07303090400008],[-1.357612670999913,43.04683095300008],[-1.366139282999939,43.033317567],[-1.383140827999852,43.02920929],[-1.41052933799989,43.03091461200013],[-1.435023965999932,43.035720520000055],[-1.457141478999858,43.04507395500009],[-1.475279906999986,43.06013763400007],[-1.487837279999894,43.08181589800007],[-1.479620727999873,43.090264995000084],[-1.438434610999877,43.1227953090001],[-1.425773884999927,43.1352751670001],[-1.41052933799989,43.16690114400008],[-1.399677286999946,43.20674367300002],[-1.403501342999959,43.24333058700016],[-1.432233438999987,43.26500885000014],[-1.444222371999928,43.26511220300007],[-1.455281127999854,43.262218323000084],[-1.466391560999881,43.26077138300009],[-1.508094441999901,43.27676523900014],[-1.539203654999937,43.2835606900001],[-1.559047403999926,43.284077454000126],[-1.57398189299991,43.27743703200004],[-1.581888386999935,43.26035797100009],[-1.587572794999886,43.251598817000016],[-1.598476521999942,43.24699961300014],[-1.611085571999894,43.24581105600013],[-1.621885945999907,43.24699961300014],[-1.634081583999915,43.25110789000017],[-1.63904252099988,43.25568125500003],[-1.646328897999865,43.272786153000155],[-1.647982543999916,43.28154530900004],[-1.645192016999943,43.28764312800008],[-1.645036986999912,43.29237152100008],[-1.654907185999889,43.2975391640001],[-1.673872435999925,43.30415374799999],[-1.683019164999934,43.3049288940001],[-1.703328002999854,43.298624370000184],[-1.724825397999894,43.29653147400002],[-1.736555948999865,43.29231984400015],[-1.747356322999906,43.291002096000014],[-1.74972998599992,43.294792691000126],[-1.752420612999884,43.2990894580001],[-1.755779581999889,43.31854563400019],[-1.768233601999981,43.33092214000005],[-1.796914021999953,43.341128235000106],[-1.797172403999951,43.353323873000036],[-1.796448933999954,43.374382020000056],[-1.794074744889741,43.386015332151615],[-1.791371222999913,43.384588934000114],[-1.790760870999861,43.38426341400019],[-1.775502081999889,43.37616608300005],[-1.767974412999933,43.38361237200006],[-1.749623175999886,43.38922760600003],[-1.661000128999888,43.39968496300013],[-1.637806769999941,43.42377350500006],[-1.615467902999939,43.43256256700003],[-1.596750454999949,43.442531643],[-1.58804277299987,43.4511579450001],[-1.566395636999886,43.48216380400014],[-1.562082485999895,43.493394273000135],[-1.55333411399991,43.5013695330001],[-1.513986782999922,43.53864166900014],[-1.506337042999888,43.55011627800012],[-1.476877407999893,43.58006419499999],[-1.470041469999899,43.611517645],[-1.445952928999873,43.66844310100011],[-1.404937303999958,43.832342841000084],[-1.38117428299995,43.88959381700015],[-1.346099412999877,44.01919179900015],[-1.281564907999893,44.302191473000065],[-1.254139777999853,44.442450262000094],[-1.247303839999915,44.50454336100013],[-1.249745245999861,44.51923248900012],[-1.258290167999888,44.547552802000084],[-1.257232225999928,44.556057033000016],[-1.23078365799995,44.58356354400014],[-1.22687740799995,44.589911200000174],[-1.224191860999895,44.60199616100008],[-1.206288214999915,44.647894598000065],[-1.186512824999909,44.665472723000086],[-1.161447719999899,44.66616445500013],[-1.100209113999881,44.65534088700004],[-1.065012173999918,44.65912506700006],[-1.044748501999919,44.66941966400016],[-1.044422980999883,44.68463776200015],[-1.069162563999953,44.703192450000145],[-1.055490688999924,44.703192450000145],[-1.065297003999945,44.71747467700005],[-1.140858527999882,44.768133856000034],[-1.151722785999937,44.77142975500006],[-1.15640214799987,44.773423570000105],[-1.160633917999888,44.776516018000095],[-1.165353969999899,44.77871328300007],[-1.172230597999913,44.77826569200009],[-1.176503058999913,44.77521393400009],[-1.178456183999856,44.7709007830001],[-1.179758266999954,44.76691315300012],[-1.182118292999917,44.765204169000114],[-1.188588019999912,44.75584544499999],[-1.233631964999887,44.70685455900012],[-1.244943813999981,44.66274648600002],[-1.253814256999931,44.63865794499999],[-1.26036536399991,44.62742747599999],[-1.19945227799991,45.12083567900011],[-1.157866990999935,45.27912018400017],[-1.139963344999956,45.49005768400015],[-1.133697068999908,45.50482819200015],[-1.099598761999914,45.553534247000165],[-1.085275844999927,45.569037177],[-1.069162563999953,45.573309637000094],[-1.058583136999914,45.569647528000026],[-1.056223110999952,45.565130927],[-1.056752081999917,45.55760325700011],[-1.057362433999884,45.54633209800012],[-1.060170050999943,45.54303620000009],[-1.062326626999948,45.53774648600001],[-1.062326626999948,45.53241608300006],[-1.059234178999873,45.527044989],[-1.048695441999882,45.51504140800007],[-1.039947068999908,45.507269598000065],[-0.972971157999922,45.47052643400018],[-0.930775519999884,45.453802802000055],[-0.915272589999887,45.450425523000135],[-0.794178839999887,45.355414130000106],[-0.766184048999889,45.326076565],[-0.754505988999881,45.295884507],[-0.751942511999886,45.27594635600012],[-0.738677537999933,45.238714911000116],[-0.720041469999956,45.145941473],[-0.715972459999904,45.13450755400005],[-0.682199673999918,45.07648346600017],[-0.64818274599989,45.04490794499999],[-0.60985266799986,45.01845937700001],[-0.577788865999878,45.00507233299999],[-0.56895911399991,44.99799225500014],[-0.560699022999927,44.98541901200004],[-0.559193488999881,44.976141669000086],[-0.562082485999895,44.960150458],[-0.560861782999893,44.939276434000035],[-0.556507941999911,44.918524481000034],[-0.548166469999927,44.90228913],[-0.534657355999855,44.89496491100009],[-0.538644985999923,44.90875885600009],[-0.542388475999871,44.937201239],[-0.548451300999943,44.94953034100014],[-0.538970506999874,44.97650788000002],[-0.550363735999923,44.9981957050001],[-0.572580532999893,45.01430898600015],[-0.596180792999917,45.02464427300008],[-0.565297003999945,45.023586330000015],[-0.539418097999942,45.01951732000005],[-0.516428188999953,45.011379299000126],[-0.493763800999915,44.99799225500014],[-0.5189509759999,45.02944570500016],[-0.55874589799987,45.0434431010001],[-0.602162238999938,45.053452867000104],[-0.637766079999892,45.073065497000144],[-0.65599524599989,45.099107164000046],[-0.668690558999856,45.130804755],[-0.706654425999943,45.32241445500016],[-0.719715949999937,45.3610700540001],[-0.753041144999912,45.42405833500014],[-0.773101365999878,45.45209381700015],[-0.795480923999889,45.47711823100014],[-0.841786261999886,45.5145531270001],[-0.983509894999884,45.58698151200004],[-0.986887173999889,45.59125397300012],[-0.990874803999873,45.610052802],[-0.997222459999904,45.614325262000094],[-1.030262824999852,45.62287018400003],[-1.083811001999948,45.66038646000013],[-1.113921678999901,45.66893138200005],[-1.132801886999914,45.671698309000035],[-1.149322068999908,45.67890045800006],[-1.163441535999937,45.68895091400013],[-1.175607876999919,45.70026276200012],[-1.194203253999916,45.7101911480001],[-1.229359503999888,45.70477936400006],[-1.247303839999915,45.70990631700009],[-1.230132615999906,45.77960846600014],[-1.230295376999948,45.79242584800009],[-1.163807745999861,45.806708075000174],[-1.14427649599989,45.80609772300012],[-1.080555792999917,45.7534040390001],[-1.069162563999953,45.74811432500003],[-1.05724036399991,45.74022044500008],[-0.987172003999916,45.71735260600015],[-1.009632941999939,45.73517487200002],[-1.099476691999939,45.78603750200007],[-1.125355597999942,45.80768463700015],[-1.130686001999919,45.81671784100014],[-1.132150844999984,45.828314520000085],[-1.136586066999939,45.84324778900013],[-1.143218553999929,45.85773346600017],[-1.151722785999937,45.86815013200005],[-1.140614386999914,45.87230052300002],[-1.133656378999916,45.87824127800003],[-1.128529425999915,45.88422272300012],[-1.123768683999913,45.8886579450001],[-1.112538214999915,45.895656643],[-1.097035285999908,45.90228913000006],[-1.087757941999939,45.90322500200013],[-1.079741990999906,45.902004299000126],[-1.073353644999884,45.904364325000174],[-1.069162563999953,45.915961005],[-1.070423956999946,45.926336981000084],[-1.076324022999898,45.936712958],[-1.083485480999855,45.94537995000008],[-1.089751756999902,45.95075104400014],[-1.084217902999882,45.953924872000115],[-1.074208136999886,45.961574611000124],[-1.069162563999953,45.9643415390001],[-1.085560675999943,45.971991278000026],[-1.096587693999908,45.985419012000115],[-1.110747850999928,46.01837799700009],[-1.089751756999902,46.00820547100015],[-1.072987433999884,46.00747304900001],[-1.059722459999932,46.0157738300001],[-1.048695441999882,46.03266022300009],[-1.048695441999882,46.03880442900007],[-1.052886522999927,46.04328034100003],[-1.058583136999914,46.04791901200014],[-1.065174933999884,46.051581122000115],[-1.084217902999882,46.056545315000065],[-1.087757941999939,46.06468333500008],[-1.088734503999916,46.074774481000034],[-1.09601803299995,46.08836497599999],[-1.095692511999914,46.09772370000003],[-1.097035285999908,46.10154857000005],[-1.100738084999932,46.103094794000086],[-1.113596157999978,46.106146552],[-1.117014126999891,46.10781484600001],[-1.122954881999902,46.112494208000115],[-1.129017706999917,46.11579010600015],[-1.128895636999943,46.120062567000055],[-1.117014126999891,46.12824127800015],[-1.14037024599989,46.14057038000011],[-1.148019985999895,46.14191315300009],[-1.152088995999861,46.14386627800014],[-1.151844855999911,46.14842357000002],[-1.150542772999927,46.15326569200009],[-1.151722785999937,46.15619538],[-1.157093878999916,46.1569684920001],[-1.172230597999913,46.15619538],[-1.182606574999909,46.158392645],[-1.19163977799991,46.157945054],[-1.200184699999852,46.15912506700011],[-1.209706183999941,46.1661644550001],[-1.210804816999882,46.17454661700005],[-1.204416469999956,46.18431224199999],[-1.194488084999961,46.19277578300013],[-1.185170050999915,46.19717031500003],[-1.190541144999884,46.21629466400019],[-1.179595506999902,46.22947825700014],[-1.110747850999928,46.259222723000065],[-1.102650519999912,46.27195872600011],[-1.103505011999914,46.28001536700005],[-1.108021613999881,46.28851959800006],[-1.110747850999928,46.302679755],[-1.132476365999906,46.32412344000012],[-1.177235480999855,46.32615794500008],[-1.214344855999855,46.31069570500012],[-1.213205532999922,46.27912018400015],[-1.240101691999911,46.28424713700015],[-1.259185350999871,46.30044179900001],[-1.277414516999954,46.319525458],[-1.293365037999876,46.32265859600007],[-1.303456183999856,46.32387929900009],[-1.33421790299991,46.33673737200003],[-1.356841600999871,46.35032786699999],[-1.370228644999884,46.354193427000084],[-1.423329230999883,46.342474677],[-1.448719855999911,46.34341054900007],[-1.45958411399991,46.364732164000046],[-1.46548417899993,46.38996002800009],[-1.481434699999852,46.40818919499999],[-1.504465298999918,46.419338283000016],[-1.531890428999873,46.423081773000135],[-1.598784959999904,46.42503489799999],[-1.625640428999873,46.43113841400016],[-1.617176886999943,46.443548895],[-1.633452928999872,46.454291083000115],[-1.686756964999915,46.46088288],[-1.720285610999952,46.48126862200017],[-1.748605923999918,46.486558335000055],[-1.761138475999928,46.49201080900018],[-1.768422003999916,46.50023021],[-1.779652472999942,46.52212148600002],[-1.789173956999917,46.5329450540001],[-1.788889126999891,46.520453192],[-1.783070441999939,46.50413646000008],[-1.78172766799986,46.49542877800009],[-1.786000128999944,46.49095286700013],[-1.795399542999888,46.49453359600001],[-1.804798956999917,46.503607489],[-1.827056443999879,46.57697174700003],[-1.822661912999876,46.5943871110001],[-1.838693813999953,46.599066473],[-1.846587693999936,46.61025625200001],[-1.851226365999878,46.623724677],[-1.857411261999857,46.63532135600012],[-1.87242591099988,46.64740631700012],[-1.887806769999912,46.65656159100011],[-1.899769660999936,46.666245835000055],[-1.90990149599989,46.69179922100015],[-1.923166469999927,46.69916413000014],[-1.940012173999918,46.70307038000014],[-1.956450975999928,46.70429108300006],[-1.964995897999927,46.71039459800014],[-1.994618292999888,46.75202057500011],[-2.050282355999911,46.79205963700004],[-2.081288214999915,46.8073591170001],[-2.107167120999947,46.813462632],[-2.118763800999943,46.81997304900009],[-2.126088019999941,46.83559804900007],[-2.130034959999932,46.85468170800006],[-2.131255662999877,46.87181224199999],[-2.128773566999939,46.89345937700007],[-2.121978318999908,46.903713283000016],[-2.09634355399993,46.916489976000044],[-2.10216223899991,46.93065013200008],[-2.087473110999895,46.941229559000035],[-2.049224412999934,46.95746491100006],[-2.037017381999874,46.972560940000065],[-2.020171678999873,47.00861237200003],[-2.008290167999917,47.02635325700011],[-1.990712042999888,47.03538646000014],[-1.992583787999962,47.05231354400003],[-2.003773566999882,47.07001373900012],[-2.014556443999879,47.08161041900002],[-2.030018683999884,47.09210846600011],[-2.090158657999979,47.11517975500006],[-2.205474412999876,47.12909577000015],[-2.241118943999936,47.14248281500014],[-2.227853969999899,47.14862702000012],[-2.21703040299991,47.155503648000135],[-2.205393032999893,47.16120026200012],[-2.172840949999852,47.164374091000084],[-2.165191209999903,47.167873440000065],[-2.162098761999914,47.17601146],[-2.159087693999908,47.19086334800015],[-2.158680792999917,47.2044945330001],[-2.169300910999965,47.220160223000065],[-2.17210852799991,47.23525625200007],[-2.17088782499988,47.24632396000011],[-2.166981574999909,47.25922272300012],[-2.160552537999877,47.27118561400006],[-2.151682094999927,47.27968984600001],[-2.127674933999884,47.286810614000146],[-2.035633917999888,47.29328034100014],[-2.0287166009999,47.29694245000008],[-2.02196204299986,47.29926178600006],[-2.014556443999879,47.30011627800015],[-2.006581183999913,47.29328034100014],[-1.99913489499994,47.288560289000046],[-1.947865363999909,47.279364325000174],[-1.932484503999944,47.27968984600001],[-1.939361131999874,47.28644440300003],[-1.927805141999954,47.28632233300006],[-1.91706295499992,47.28416575700005],[-1.907338019999884,47.27993398600013],[-1.898426886999857,47.27342357000005],[-1.918853318999908,47.27342357000005],[-1.918853318999908,47.26601797100006],[-1.877837693999908,47.245510158000016],[-1.836252407999922,47.239935614],[-1.826079881999902,47.23525625200007],[-1.803944464999915,47.218980210000055],[-1.780995245999918,47.21198151200015],[-1.727040167999917,47.210760809000064],[-1.747222459999932,47.219916083000115],[-1.788238084999932,47.22557200700011],[-1.805653449999909,47.23525625200007],[-1.835926886999914,47.259751695000105],[-1.871164516999954,47.27968984600001],[-1.90562903599988,47.293931382],[-1.925689256999931,47.298488674000126],[-1.949289516999954,47.30011627800015],[-1.958159959999932,47.302394924000126],[-1.972157355999883,47.31216054900007],[-2.010121222999885,47.31972890800013],[-2.148101365999878,47.31321849200005],[-2.179554816999882,47.30011627800015],[-2.186594204999949,47.292710679],[-2.190581834999932,47.286200262000094],[-2.195952928999901,47.27993398600013],[-2.206288214999887,47.27342357000005],[-2.236073370999918,47.26748281500012],[-2.259429490999906,47.2516136740001],[-2.278391079999921,47.246405341000084],[-2.298085089999859,47.246649481000034],[-2.316070115999906,47.25165436400009],[-2.330962693999936,47.26080963700015],[-2.355336066999911,47.28009674700009],[-2.371408657999893,47.28644440300003],[-2.388091600999928,47.28790924700008],[-2.397450324999852,47.28758372600008],[-2.404896613999938,47.28644440300003],[-2.412831183999913,47.28172435100011],[-2.416574673999917,47.274969794000086],[-2.41812089799987,47.26886627800009],[-2.419178839999915,47.26601797100006],[-2.448394334999875,47.26658763200011],[-2.541981574999909,47.30011627800015],[-2.541981574999909,47.306952216000084],[-2.519032355999911,47.30463288000011],[-2.476063605999883,47.29067617400015],[-2.45335852799991,47.29328034100014],[-2.436187303999901,47.30703359600007],[-2.445383266999954,47.320379950000174],[-2.46544348899991,47.33380768400015],[-2.480620897999898,47.34788646000011],[-2.487945115999906,47.345404364],[-2.491281704999949,47.34389883000013],[-2.494252081999946,47.34174225500014],[-2.489369269999884,47.334418036000116],[-2.488921678999901,47.33038971600014],[-2.494252081999946,47.32062409100003],[-2.501698370999918,47.32062409100003],[-2.503325975999871,47.349595445000105],[-2.514800584999904,47.36493561400006],[-2.556385870999889,47.383246161000116],[-2.47679602799991,47.415676174000126],[-2.466135219999956,47.415228583000115],[-2.455799933999856,47.412176825000024],[-2.439035610999923,47.409979559000035],[-2.441029425999886,47.40444570500004],[-2.442209438999896,47.40436432500006],[-2.4464005199999,47.40253327000006],[-2.439035610999923,47.39630768400009],[-2.429432745999861,47.40387604400014],[-2.395008917999916,47.41697825700011],[-2.391835089999859,47.42365143400018],[-2.407134568999908,47.42572663],[-2.431752081999917,47.42617422100001],[-2.448150193999936,47.43060944200006],[-2.439035610999923,47.444769598],[-2.455311652999882,47.45221588700015],[-2.476185675999943,47.45376211100001],[-2.488921678999901,47.45917389500006],[-2.480620897999898,47.47821686400006],[-2.494740363999938,47.491197007000046],[-2.483631964999915,47.49795156500009],[-2.421213344999956,47.500230210000055],[-2.384673631999902,47.50714752800015],[-2.36392167899993,47.506170966000084],[-2.380116339999887,47.509222723000065],[-2.407053188999924,47.506048895],[-2.425363735999895,47.506170966000084],[-2.501698370999918,47.52667877800003],[-2.517486131999874,47.52838776200004],[-2.530506964999859,47.52724844],[-2.563221808999884,47.51984284100003],[-2.600697394999912,47.51984284100003],[-2.609852667999917,47.517726955000015],[-2.615589972999885,47.514146226000136],[-2.621693488999881,47.51341380400011],[-2.631988084999875,47.51984284100003],[-2.616932745999861,47.52171458499999],[-2.599354620999918,47.52912018400015],[-2.584462042999888,47.54047272300015],[-2.576812303999958,47.553941148000135],[-2.592274542999888,47.54364655200011],[-2.606434699999909,47.54205963700018],[-2.621205206999889,47.543036200000145],[-2.638254360999923,47.540269272999986],[-2.630116339999915,47.539129950000145],[-2.623931443999936,47.53717682500012],[-2.619943813999953,47.53339264500009],[-2.617787238999881,47.52667877800003],[-2.643055792999917,47.526434637000094],[-2.654774542999917,47.52830638200005],[-2.665516730999911,47.53351471600014],[-2.667103644999941,47.509588934000085],[-2.680734829999892,47.50421784100002],[-2.714019334999904,47.51239655200013],[-2.730702277999853,47.51162344000012],[-2.782785610999895,47.49941640800013],[-2.8021541009999,47.49811432500014],[-2.817128058999856,47.499212958],[-2.830189581999917,47.50360748900009],[-2.843658006999902,47.51239655200013],[-2.845692511999914,47.51618073100015],[-2.861073370999861,47.535834052000105],[-2.864816860999895,47.536851304],[-2.868967251999948,47.54218170800006],[-2.878529425999915,47.545314846000124],[-2.889881964999887,47.5466169290001],[-2.892933722999885,47.54767487200017],[-2.891509568999908,47.549058335000055],[-2.892079230999883,47.553941148000135],[-2.909250454999921,47.55841705900009],[-2.892567511999886,47.56659577],[-2.865305141999897,47.56663646],[-2.850575324999909,47.546535549000126],[-2.843658006999902,47.546535549000126],[-2.838124152999882,47.55182526200012],[-2.832427537999905,47.55402252800012],[-2.825428839999915,47.55247630400007],[-2.816395636999914,47.546535549000126],[-2.815297003999945,47.552964585000055],[-2.80955969999988,47.56761302300008],[-2.794016079999892,47.55512116100005],[-2.768666144999941,47.54954661700005],[-2.741444464999859,47.551336981000034],[-2.720204230999883,47.56077708500005],[-2.727650519999941,47.56761302300008],[-2.688628709999875,47.604396877000156],[-2.683990037999934,47.62299225500006],[-2.70653235599994,47.64272695500007],[-2.70653235599994,47.63654205900012],[-2.696929490999935,47.62978750200007],[-2.69562740799995,47.62335846600014],[-2.701568162999877,47.618353583000115],[-2.714019334999904,47.616034247000144],[-2.699777798999889,47.609198309000035],[-2.704253709999875,47.60443756700015],[-2.708607550999943,47.60228099200004],[-2.720204230999883,47.60175202000006],[-2.725331183999884,47.60736725500006],[-2.775380011999885,47.62909577000012],[-2.754465298999946,47.62702057500012],[-2.734486456999946,47.622259833000115],[-2.74632727799991,47.63385651200003],[-2.758208787999877,47.639064846000124],[-2.789133266999926,47.64272695500007],[-2.775380011999885,47.63654205900012],[-2.796050584999903,47.62986888200005],[-2.847727016999954,47.626166083000115],[-2.857980923999889,47.61912669500005],[-2.866769985999952,47.60716380400011],[-2.886382615999906,47.60101959800012],[-2.919422980999855,47.59552643400009],[-2.919422980999855,47.60175202000006],[-2.912668423999918,47.60175202000006],[-2.912668423999918,47.609198309000035],[-2.925689256999902,47.60765208499999],[-2.928822394999884,47.606024481000176],[-2.933094855999911,47.60175202000006],[-2.939930792999917,47.60175202000006],[-2.943755662999934,47.61395905200014],[-2.944813605999883,47.624090887000094],[-2.94163977799991,47.631822007000025],[-2.933094855999911,47.63654205900012],[-2.947499152999882,47.63690827000012],[-2.957997199999852,47.642157294000114],[-2.964588995999918,47.65143463700014],[-2.967193162999905,47.66380442900002],[-2.974680141999954,47.66380442900002],[-2.973296678999901,47.65599192900011],[-2.968576626999891,47.643500067],[-2.967193162999905,47.63654205900012],[-2.967193162999905,47.61261627800015],[-2.963612433999856,47.60260651200015],[-2.954701300999886,47.59153880400011],[-2.943511522999898,47.58148834800015],[-2.933094855999911,47.57444896],[-2.935617641999926,47.567572333000086],[-2.937245245999947,47.56468333500014],[-2.939930792999917,47.56077708500005],[-2.942616339999887,47.56439850500002],[-2.952951626999891,47.57444896],[-2.961293097999885,47.57054271],[-2.970285610999894,47.57697174700009],[-2.980946417999916,47.587347723],[-2.994496222999885,47.59552643400009],[-2.98859615799995,47.58226146000008],[-2.994211391999954,47.576076565],[-3.003407355999911,47.57868073100009],[-3.008168097999913,47.59178294500008],[-3.011789516999897,47.60716380400011],[-3.018218553999901,47.60565827000006],[-3.021717902999882,47.59454987200003],[-3.015695766999897,47.58124420800003],[-3.029937303999901,47.58193594000015],[-3.035796678999929,47.58331940300003],[-3.0423884759999,47.58808014500011],[-3.073841925999915,47.57648346600011],[-3.089751756999931,47.575506903000026],[-3.10374915299991,47.58124420800003],[-3.097320115999906,47.58405182500014],[-3.090728318999908,47.58808014500011],[-3.100453253999973,47.59418366100011],[-3.112049933999884,47.599188544000135],[-3.123280402999882,47.59878164300015],[-3.131703253999944,47.58808014500011],[-3.127186652999882,47.58661530200005],[-3.122954881999874,47.58323802300004],[-3.118031378999887,47.58124420800003],[-3.128895636999886,47.54759349200002],[-3.123280402999882,47.518988348000036],[-3.106760219999899,47.49579498900009],[-3.084543423999946,47.47821686400006],[-3.098133917999917,47.47870514500012],[-3.119130011999857,47.48261139500012],[-3.125477667999888,47.47821686400006],[-3.131703253999944,47.47821686400006],[-3.143788214999859,47.50702545799999],[-3.145375128999888,47.51609935099999],[-3.143218553999873,47.52704498900006],[-3.133859829999921,47.54393138200005],[-3.131703253999944,47.55744049700003],[-3.134185350999871,47.58075592700011],[-3.141184048999946,47.59804922100004],[-3.152170376999891,47.611232815000065],[-3.166493292999888,47.622259833000115],[-3.176014777999882,47.62636953300007],[-3.187245245999889,47.62958405200011],[-3.1966853509999,47.63349030200011],[-3.2005916009999,47.639593817],[-3.198394334999904,47.65257396],[-3.186350063999896,47.68060944200003],[-3.111195441999882,47.70416901200015],[-3.115061001999891,47.709418036000145],[-3.117176886999886,47.71503327000015],[-3.118031378999887,47.7221540390001],[-3.118031378999887,47.732123114],[-3.12279212099989,47.729925848],[-3.13451087099989,47.72679271000011],[-3.139149542999917,47.72467682500012],[-3.139759894999883,47.74579498900012],[-3.139149542999917,47.75259023600016],[-3.145375128999888,47.75259023600016],[-3.153187628999945,47.74201080900009],[-3.163929816999882,47.74388255400008],[-3.177357550999886,47.74852122599999],[-3.193186001999919,47.746405341000084],[-3.179188605999855,47.742743231000034],[-3.169667120999861,47.73541901200004],[-3.163319464999915,47.7247582050001],[-3.159087693999908,47.711004950000174],[-3.164051886999857,47.71027252800015],[-3.165028449999908,47.70954010600012],[-3.165028449999908,47.7079125020001],[-3.166493292999888,47.70416901200015],[-3.17837480399993,47.710028387000094],[-3.185373501999919,47.70636627800015],[-3.193226691999911,47.69993724200005],[-3.207386847999913,47.69733307500006],[-3.203521287999905,47.69432200700014],[-3.193186001999919,47.6837425800001],[-3.207142706999889,47.67914459800015],[-3.21190344999988,47.669826565],[-3.215077277999853,47.66058991100014],[-3.224191860999923,47.656398830000015],[-3.231597459999904,47.66034577],[-3.26207434799997,47.6837425800001],[-3.28758704299986,47.68866608300006],[-3.331532355999883,47.69672272300009],[-3.358265753999916,47.69733307500006],[-3.340199347999885,47.702297268],[-3.322417772999898,47.70099518400009],[-3.282622850999899,47.69114817900008],[-3.282622850999899,47.69733307500006],[-3.298451300999943,47.70384349200005],[-3.31627356699991,47.70807526200015],[-3.358265753999916,47.711004950000174],[-3.358265753999916,47.71845123900005],[-3.349354620999861,47.71906159100003],[-3.345122850999928,47.72125885600009],[-3.34398352799991,47.726263739000146],[-3.34398352799991,47.735541083],[-3.340565558999912,47.73948802299999],[-3.323557094999927,47.737738348],[-3.317290818999879,47.73895905200011],[-3.304432745999861,47.761135158000066],[-3.29539954299986,47.77301666900003],[-3.282622850999899,47.779933986000046],[-3.282622850999899,47.787339585000105],[-3.304351365999878,47.77008698100009],[-3.331776495999918,47.752508856000176],[-3.362172003999888,47.74042389500006],[-3.383168097999942,47.73704661700005],[-3.375477667999916,47.734035549000154],[-3.369252081999946,47.729803778000026],[-3.364491339999858,47.72467682500012],[-3.364491339999858,47.71845123900005],[-3.446441209999904,47.70457591400015],[-3.460682745999889,47.70758698100015],[-3.464995897999898,47.713039455],[-3.494862433999884,47.73895905200011],[-3.509185350999871,47.75942617400007],[-3.520253058999913,47.76813385600015],[-3.524484829999921,47.77244700700005],[-3.528309699999852,47.779933986000046],[-3.53929602799991,47.773749091000134],[-3.555653449999909,47.773993231000084],[-3.590972459999932,47.779933986000046],[-3.616851365999878,47.77912018400012],[-3.625152147999926,47.779933986000046],[-3.633046027999911,47.78302643400012],[-3.644398566999882,47.79173411700002],[-3.649037238999909,47.79360586100016],[-3.686919725999928,47.79230377800015],[-3.706166144999883,47.79694245000009],[-3.714588995999861,47.81061432500003],[-3.723215298999946,47.81338125200009],[-3.775380011999885,47.79360586100016],[-3.789906378999916,47.80320872600005],[-3.811187303999901,47.802923895],[-3.833566860999894,47.79975006700015],[-3.851714647999898,47.801011460000055],[-3.853098110999895,47.80434804900007],[-3.872222459999875,47.82831452000012],[-3.87922115799995,47.83356354400003],[-3.886463995999861,47.837469794000114],[-3.889963344999956,47.84345123900012],[-3.885853644999912,47.85504791900014],[-3.894520636999914,47.85529205900009],[-3.900786912999934,47.85712311400006],[-3.913197394999883,47.86245351800012],[-3.91633053299995,47.87335846600011],[-3.935129360999894,47.88788483300014],[-3.961822068999936,47.89996979400014],[-3.988270636999914,47.90346914300012],[-3.979237433999884,47.883002020000056],[-3.986480272999926,47.867905992000075],[-4.008900519999941,47.85126373900011],[-4.029204881999931,47.85504791900014],[-4.019154425999943,47.85447825700008],[-4.011219855999883,47.85594310100013],[-4.005441860999923,47.860500393000095],[-4.001942511999857,47.86928945500013],[-4.014068162999934,47.86627838700004],[-4.024037238999937,47.865952867000104],[-4.031564907999893,47.863714911000145],[-4.036691860999894,47.85504791900014],[-4.06493079299986,47.870794989],[-4.078236456999889,47.87441640800016],[-4.09439042899993,47.87547435100011],[-4.106556769999941,47.88011302300005],[-4.119292772999898,47.89191315300012],[-4.129139777999909,47.90761953300007],[-4.132191535999908,47.92389557500011],[-4.14273027299987,47.912014065000065],[-4.136830206999917,47.89691803600006],[-4.12336178299995,47.883246161000116],[-4.111195441999939,47.87547435100011],[-4.111195441999939,47.86928945500013],[-4.123768683999856,47.868597723],[-4.133615688999953,47.86619700700005],[-4.142648891999983,47.861761786],[-4.152740037999934,47.85504791900014],[-4.171620245999889,47.877020575000145],[-4.185617641999925,47.87441640800016],[-4.18846594999988,47.862127997000115],[-4.173898891999954,47.85504791900014],[-4.176665818999908,47.85126373900011],[-4.180043097999913,47.848211981000034],[-4.180043097999913,47.84198639500006],[-4.152740037999934,47.84198639500006],[-4.152740037999934,47.83445872600011],[-4.185210740999935,47.81338125200009],[-4.20055091099988,47.80719635600012],[-4.225168423999889,47.80243561400012],[-4.371815558999856,47.80719635600012],[-4.371245897999869,47.81476471600016],[-4.373443162999876,47.82868073100006],[-4.371815558999856,47.83445872600011],[-4.36546790299991,47.837103583],[-4.356068488999881,47.837062893],[-4.347645636999857,47.838324286000116],[-4.343861456999917,47.84511953300013],[-4.347320115999906,47.86294179900001],[-4.362212693999879,47.88857656500009],[-4.371978318999908,47.91583893400018],[-4.386952277999853,47.93406810100005],[-4.434641079999892,47.97565338700004],[-4.52326412699989,48.02269114800005],[-4.533273891999983,48.026312567],[-4.546701626999975,48.02073802300002],[-4.558990037999934,48.01068756700011],[-4.572010870999918,48.00592682500003],[-4.601958787999877,48.02558014500009],[-4.619211391999897,48.027655341000084],[-4.652984178999873,48.026312567],[-4.728138800999885,48.040594794000114],[-4.721506313999924,48.044134833],[-4.716460740999877,48.050238348000065],[-4.712269660999936,48.056586005],[-4.706206834999874,48.063910223],[-4.705555792999917,48.067450262000094],[-4.704253709999904,48.07123444200003],[-4.700795050999915,48.07477448100009],[-4.697417772999898,48.07489655200005],[-4.689523891999926,48.06883372600008],[-4.683705206999946,48.06732819200012],[-4.361927863999937,48.11570872600011],[-4.304758266999954,48.10407135600012],[-4.289906378999888,48.108221747000144],[-4.285389777999853,48.1153832050001],[-4.275705532999893,48.14362213700014],[-4.280181443999936,48.15493398600013],[-4.294341600999871,48.16705963700004],[-4.297352667999888,48.17405833500011],[-4.302357550999915,48.19635651200015],[-4.3158259759999,48.205511786000145],[-4.358225063999896,48.21185944200006],[-4.366118943999878,48.21515534100011],[-4.372425910999908,48.22003815300017],[-4.376861131999874,48.225978908000016],[-4.379261847999913,48.23236725500011],[-4.404367641999897,48.22614166900014],[-4.457630988999881,48.24896881700009],[-4.485463019999941,48.24262116100006],[-4.499989386999886,48.22492096600014],[-4.51398678299995,48.20209381700012],[-4.531646287999962,48.18309153900013],[-4.557484503999888,48.177191473],[-4.548736131999902,48.19843170800008],[-4.543771938999953,48.20506419500005],[-4.555043097999942,48.216538804],[-4.56118730399993,48.225043036000116],[-4.563628709999961,48.23236725500011],[-4.558664516999897,48.24420807500009],[-4.550933397999898,48.24860260600014],[-4.547189907999949,48.25259023600013],[-4.55406653599988,48.26276276200009],[-4.566273566999939,48.264878648000014],[-4.626332160999937,48.26654694200003],[-4.623687303999873,48.27704498900008],[-4.626332160999937,48.28705475500006],[-4.61538652299987,48.29108307500003],[-4.607085740999906,48.29059479400014],[-4.598784959999904,48.28839752800015],[-4.587880011999857,48.28705475500006],[-4.57518469999988,48.290025132],[-4.572906053999901,48.29682038000003],[-4.575510219999898,48.303859768000066],[-4.577259894999912,48.30752187700012],[-4.559478318999908,48.33869049700003],[-4.546701626999975,48.34682851800012],[-4.530140753999916,48.341620184000035],[-4.543202277999882,48.304673569999984],[-4.515533006999873,48.29584381700012],[-4.426503058999884,48.30003489800008],[-4.416371222999941,48.29661692900005],[-4.409657355999883,48.29230377800015],[-4.401966925999972,48.2885602890001],[-4.388986782999949,48.28705475500006],[-4.376861131999874,48.28778717699999],[-4.329701300999886,48.29702383000016],[-4.262603318999908,48.30003489800008],[-4.268950975999957,48.29584381700012],[-4.27521725199989,48.29401276200015],[-4.289906378999888,48.2938500020001],[-4.269357876999948,48.28839752800015],[-4.187489386999914,48.30003489800008],[-4.187489386999914,48.30752187700012],[-4.218820766999954,48.30605703300007],[-4.230539516999926,48.30988190300009],[-4.234730597999885,48.32172272300015],[-4.243967251999919,48.31391022300014],[-4.257720506999931,48.311346747000144],[-4.270171678999873,48.31468333500008],[-4.275705532999893,48.32485586100002],[-4.281971808999856,48.323675848],[-4.32469641799986,48.32172272300015],[-4.316314256999902,48.33079661700005],[-4.312082485999952,48.33307526200012],[-4.303618943999936,48.335394598000086],[-4.303130662999934,48.33958567900011],[-4.298491990999906,48.34381745000003],[-4.288685675999885,48.34853750200013],[-4.269398566999939,48.36273834800015],[-4.286284959999931,48.36253489800002],[-4.308990037999877,48.35154857000004],[-4.32469641799986,48.34845612200014],[-4.32469641799986,48.35529205900018],[-4.317290818999879,48.35529205900018],[-4.317290818999879,48.36273834800015],[-4.32469641799986,48.36273834800015],[-4.327788865999935,48.35785553600009],[-4.334055141999897,48.35272858300006],[-4.337717251999919,48.34845612200014],[-4.352609829999892,48.35272858300006],[-4.384185350999871,48.338120835000055],[-4.406605597999885,48.335394598000086],[-4.403797980999855,48.33917877800009],[-4.40282141799986,48.33958567900011],[-4.399159308999913,48.341620184000035],[-4.406605597999885,48.34845612200014],[-4.415028449999852,48.342922268000116],[-4.426503058999884,48.338853257],[-4.439930792999888,48.33637116100006],[-4.453724738999881,48.335394598000086],[-4.453724738999881,48.341620184000035],[-4.396595831999917,48.38776276200015],[-4.385568813999953,48.393744208000086],[-4.289906378999888,48.43158600500011],[-4.307728644999884,48.428045966000056],[-4.339019334999932,48.41608307500011],[-4.358957485999923,48.411118882000046],[-4.426503058999884,48.40371328300007],[-4.457508917999917,48.39484284100003],[-4.520619269999912,48.36831289300006],[-4.569569464999887,48.36029694200012],[-4.59935462099989,48.35016510600015],[-4.618885870999861,48.34845612200014],[-4.636341925999915,48.35114166900003],[-4.671131964999887,48.36058177300005],[-4.690541144999883,48.36273834800015],[-4.694081183999855,48.35944245000012],[-4.694081183999855,48.3521996110001],[-4.695668097999884,48.34495677300008],[-4.704497850999871,48.341620184000035],[-4.754994269999884,48.34198639500006],[-4.768381313999953,48.34540436400006],[-4.777170376999919,48.355617580000015],[-4.783355272999898,48.37641022300009],[-4.764759894999912,48.37763092700003],[-4.766346808999856,48.39044830900003],[-4.783355272999898,48.417385158000016],[-4.784901495999861,48.43618398600015],[-4.779855923999918,48.454901434000035],[-4.76805579299986,48.46865469000012],[-4.749256964999887,48.47260163000011],[-4.749256964999887,48.478827216000084],[-4.774647589999915,48.491278387000094],[-4.764556443999936,48.52020905200011],[-4.739898240999878,48.55072663000006],[-4.721994594999898,48.56818268400009],[-4.7115779289999,48.56366608300005],[-4.700795050999915,48.56073639500012],[-4.708241339999886,48.56818268400009],[-4.692290818999879,48.57550690300012],[-4.673451300999943,48.57957591400016],[-4.642486131999902,48.581854559000035],[-4.623036261999913,48.57819245000009],[-4.589833136999886,48.565741278000175],[-4.577259894999912,48.56818268400009],[-4.600493943999908,48.5893415390001],[-4.60773678299995,48.603013414000046],[-4.594634568999879,48.60911692900013],[-4.548817511999886,48.60122304900006],[-4.530140753999916,48.60171133000013],[-4.557484503999888,48.60911692900013],[-4.55443274599989,48.61322663],[-4.552601691999911,48.61652252800003],[-4.554798956999889,48.61969635600009],[-4.563628709999961,48.62343984600003],[-4.563628709999961,48.62962474199999],[-4.485463019999941,48.62962474199999],[-4.462880011999886,48.63231028900016],[-4.429798956999917,48.64280833500014],[-4.406605597999885,48.64325592700014],[-4.420399542999887,48.648871161000116],[-4.426503058999884,48.65009186400006],[-4.426503058999884,48.657538153000026],[-4.398060675999886,48.66095612200003],[-4.370228644999912,48.67182038000011],[-4.343251105999855,48.678859768],[-4.317290818999879,48.678045966000084],[-4.299143032999949,48.66364166900002],[-4.306507941999939,48.64154694200012],[-4.283111131999874,48.64325592700014],[-4.25259355399993,48.65546295800002],[-4.242054816999882,48.657538153000026],[-4.229807094999899,48.655951239],[-4.207142706999946,48.649969794000086],[-4.193755662999934,48.65009186400006],[-4.193755662999934,48.657538153000026],[-4.213002081999889,48.66120026200018],[-4.207753058999913,48.67137278900013],[-4.190581834999875,48.68305084800012],[-4.173898891999954,48.69110748900006],[-4.154652472999913,48.69623444200006],[-4.131459113999881,48.69916413],[-4.108713344999927,48.69814687700013],[-4.090687628999916,48.69110748900006],[-4.084787563999953,48.69717031500006],[-4.079253709999932,48.69692617400001],[-4.074330206999889,48.6922875020001],[-4.070220506999931,48.68488190300009],[-4.064035610999952,48.68488190300009],[-4.057362433999913,48.689601955000015],[-4.053293423999945,48.69554271000014],[-4.052642381999902,48.70307038],[-4.056548631999902,48.712144272999986],[-4.042713995999918,48.71393463700018],[-4.030506964999915,48.717027085000055],[-4.009348110999923,48.725816148000135],[-3.973988410999908,48.732814846],[-3.967762824999852,48.72955963700014],[-3.970285610999952,48.72003815300015],[-3.973866339999859,48.71279531500012],[-3.972727016999898,48.707709052000105],[-3.961008266999925,48.70473867400001],[-3.961008266999925,48.69855377800003],[-3.967762824999852,48.69855377800003],[-3.967762824999852,48.69110748900006],[-3.957753058999884,48.68683502800015],[-3.951039191999911,48.67938873900006],[-3.94953365799995,48.6693382830001],[-3.954741990999878,48.657538153000026],[-3.926584438999896,48.67617422100001],[-3.911936001999976,48.681219794000135],[-3.8919978509999,48.678045966000084],[-3.901966925999886,48.67202383000007],[-3.906320766999954,48.67059967700003],[-3.906320766999954,48.66437409100014],[-3.894195115999878,48.65355052300005],[-3.8646541009999,48.641017971000146],[-3.851714647999898,48.62962474199999],[-3.844309048999918,48.63646067900011],[-3.851714647999898,48.64325592700014],[-3.844309048999918,48.65009186400006],[-3.848947719999956,48.65631745000012],[-3.852447068999936,48.66453685100011],[-3.857899542999888,48.68488190300009],[-3.851714647999898,48.68488190300009],[-3.848500128999945,48.67902252800015],[-3.845448370999861,48.676011460000055],[-3.837473110999895,48.67059967700003],[-3.84007727799991,48.68805573100015],[-3.837147589999887,48.707261460000105],[-3.829253709999904,48.71845123900012],[-3.816965298999946,48.712144272999986],[-3.812652147999955,48.71674225500011],[-3.810454881999874,48.72150299700003],[-3.809803839999915,48.72695547100007],[-3.810129360999923,48.733221747000115],[-3.797108527999853,48.72117747600002],[-3.778431769999883,48.71735260600009],[-3.73192298099994,48.71898021000011],[-3.720855272999898,48.716009833],[-3.69786536399991,48.70233795800006],[-3.686634894999912,48.69855377800003],[-3.673817511999885,48.69822825700011],[-3.638172980999912,48.70473867400001],[-3.638539191999939,48.68781159100003],[-3.614003058999913,48.682684637000094],[-3.584787563999897,48.682806708000086],[-3.570546027999882,48.68797435099999],[-3.580474412999876,48.71108633000013],[-3.584543423999946,48.72638580900009],[-3.580474412999876,48.733221747000115],[-3.528309699999852,48.73948802300008],[-3.542836066999882,48.74567291900003],[-3.577381964999887,48.77423737200003],[-3.581532355999855,48.79059479400003],[-3.571400519999884,48.799058335000076],[-3.542591925999943,48.80780670800005],[-3.52086341099988,48.83364492400007],[-3.515288865999878,48.84194570500016],[-3.509185350999871,48.84194570500016],[-3.499826626999948,48.836981512000094],[-3.46812903599988,48.83567942900002],[-3.433583136999886,48.82221100500011],[-3.419748501999891,48.821437893],[-3.425404425999972,48.81842682500009],[-3.428089972999942,48.81574127800012],[-3.42992102799991,48.812445380000085],[-3.433338995999918,48.80780670800005],[-3.409901495999861,48.80654531500014],[-3.397613084999904,48.807318427000055],[-3.388742641999954,48.811183986000074],[-3.378651495999889,48.819322007],[-3.371815558999884,48.82249583500005],[-3.287464972999885,48.843451239],[-3.275786912999905,48.84935130400014],[-3.268950975999871,48.84935130400014],[-3.259510870999861,48.84772370000011],[-3.229725714999858,48.87225983300014],[-3.213612433999884,48.86981842699999],[-3.207142706999889,48.85541413000014],[-3.207753058999856,48.83592357000005],[-3.214955206999974,48.81785716400013],[-3.22789466099988,48.80780670800005],[-3.226796027999939,48.80329010600009],[-3.225575324999909,48.800482489000146],[-3.220529751999891,48.794134833000115],[-3.216867641999926,48.8067894550001],[-3.208729620999918,48.816351630000085],[-3.17882239499994,48.84100983300006],[-3.154204881999931,48.85492584800015],[-3.145375128999888,48.86237213700004],[-3.134999152999881,48.85919830900015],[-3.116444464999859,48.87409088700012],[-3.10374915299991,48.87665436400012],[-3.091460740999935,48.871283270000056],[-3.084339972999885,48.86220937700007],[-3.083729620999947,48.8517113300001],[-3.090728318999908,48.84194570500016],[-3.090728318999908,48.83567942900002],[-3.077056443999879,48.828273830000015],[-3.08462480399993,48.82013580900009],[-3.097523566999939,48.794134833000115],[-3.104074673999917,48.78620026200015],[-3.125477667999888,48.76740143400009],[-3.125477667999888,48.75995514500011],[-3.118031378999887,48.75995514500011],[-3.085031704999921,48.80499909100011],[-3.065500454999949,48.82396067900011],[-3.049183722999942,48.821437893],[-3.03929602799991,48.82697174700002],[-3.028716600999871,48.828802802],[-3.018218553999901,48.82697174700002],[-3.008168097999913,48.821437893],[-3.015695766999897,48.81460195500007],[-3.011789516999897,48.813666083],[-3.009388800999943,48.81370677299999],[-3.008371548999889,48.81248607000008],[-3.008168097999913,48.80780670800005],[-3.017811652999882,48.805853583],[-3.025502081999917,48.80292389500009],[-3.0423884759999,48.794134833000115],[-3.0423884759999,48.787909247000144],[-3.029286261999857,48.780462958000086],[-3.003651495999861,48.773871161],[-2.952951626999891,48.77228424700017],[-2.933094855999911,48.76740143400009],[-2.934437628999888,48.75910065300003],[-2.934396938999896,48.75307851800004],[-2.933094855999911,48.74632396],[-2.94273841099988,48.74091217700014],[-2.946685350999871,48.73948802300008],[-2.946685350999871,48.733221747000115],[-2.932036912999933,48.72695547100007],[-2.91397050699993,48.71649811400009],[-2.898671027999882,48.704779364],[-2.892079230999883,48.694769598],[-2.826975063999953,48.657538153000026],[-2.817046678999873,48.62767161700005],[-2.812977667999888,48.61969635600009],[-2.811431443999936,48.614569403000175],[-2.814361131999874,48.609930731000055],[-2.816395636999914,48.604925848],[-2.812977667999888,48.59857819200006],[-2.808013475999928,48.595607815000065],[-2.795033331999946,48.591253973000065],[-2.771066860999895,48.57916901200015],[-2.714019334999904,48.56073639500012],[-2.716949022999927,48.55170319200012],[-2.721018032999893,48.54462311400006],[-2.726673956999974,48.53896719000006],[-2.734486456999946,48.53400299700003],[-2.722727016999897,48.533636786],[-2.71312415299991,48.53009674700003],[-2.704701300999943,48.52415599200001],[-2.696278449999909,48.51666901200004],[-2.682362433999913,48.509019273000014],[-2.679676886999857,48.51837799700003],[-2.680246548999918,48.532782294000086],[-2.67613684799997,48.54022858300008],[-2.636341925999886,48.5388044290001],[-2.620025193999936,48.5436058610001],[-2.600697394999912,48.55760325700005],[-2.577056443999908,48.582464911],[-2.569406704999949,48.588690497000144],[-2.55882727799991,48.59414297100001],[-2.541086391999926,48.598089911],[-2.473622199999852,48.62596263200014],[-2.459543423999889,48.63646067900011],[-2.459543423999889,48.64325592700014],[-2.468006964999915,48.64394765800007],[-2.487456834999932,48.65009186400006],[-2.442860480999854,48.65908437700007],[-2.421050584999904,48.65696849200007],[-2.412261522999927,48.64325592700014],[-2.386219855999854,48.65009186400006],[-2.356068488999938,48.663275458],[-2.329986131999874,48.680365302000055],[-2.316070115999906,48.69855377800003],[-2.312489386999914,48.68695709800012],[-2.305327928999873,48.67963288000011],[-2.295236782999922,48.67658112200003],[-2.281971808999884,48.678045966000084],[-2.281971808999884,48.67059967700003],[-2.289418097999942,48.666571356000034],[-2.293771938999953,48.66136302300005],[-2.29747473899991,48.65570709800015],[-2.302398240999963,48.65009186400006],[-2.33031165299991,48.62962474199999],[-2.312652147999898,48.62018463700015],[-2.294016079999892,48.62860748900012],[-2.273589647999926,48.64264557500017],[-2.250965949999852,48.65009186400006],[-2.246205206999946,48.64472077],[-2.240712042999917,48.621323960000105],[-2.237294074999909,48.615912177000055],[-2.225941535999936,48.61237213700018],[-2.219227667999917,48.6036644550001],[-2.215687628999916,48.5924339860001],[-2.213693813999896,48.581854559000035],[-2.202788865999906,48.58588288000011],[-2.195546027999882,48.59345123900006],[-2.192128058999884,48.60374583500008],[-2.192616339999858,48.615912177000055],[-2.188384568999936,48.60130442900005],[-2.182972785999908,48.58877187700013],[-2.174061652999853,48.582953192],[-2.159087693999908,48.588690497000144],[-2.159087693999908,48.595445054],[-2.163197394999884,48.59650299700014],[-2.17210852799991,48.60171133000013],[-2.161040818999879,48.61302317900014],[-2.149322068999879,48.61888255400008],[-2.137033657999922,48.61798737200008],[-2.124338344999956,48.60911692900013],[-2.131255662999877,48.61530182500009],[-2.136626756999931,48.62213776200012],[-2.144846157999922,48.63646067900011],[-2.100209113999938,48.646918036],[-2.052357550999915,48.65009186400006],[-2.049794074999909,48.645575262000094],[-2.0287166009999,48.61969635600009],[-2.027088995999861,48.60895416900017],[-2.022043423999946,48.59894440300009],[-2.013254360999952,48.59162018400018],[-2.000884568999936,48.588690497000144],[-2.005116339999859,48.57884349200005],[-2.008290167999917,48.57501862200002],[-1.982492641999897,48.54897695500016],[-1.976389126999891,48.53563060100005],[-1.980295376999891,48.51357656500015],[-1.970448370999889,48.52069733299999],[-1.939361131999874,48.53400299700003],[-1.967274542999917,48.54706452],[-1.961903449999852,48.554917710000076],[-1.976633266999954,48.57269928600006],[-1.980295376999891,48.588690497000144],[-1.973500128999888,48.588690497000144],[-1.96939042899993,48.584173895],[-1.965158657999893,48.581203518],[-1.952951626999919,48.57501862200002],[-1.9603572259999,48.58661530200014],[-1.96939042899993,48.59275950700011],[-1.979807094999898,48.595119533000066],[-1.991118943999908,48.595445054],[-2.000477667999916,48.60130442900005],[-2.019032355999855,48.631048895000056],[-2.0287166009999,48.64325592700014],[-2.025542772999926,48.65131256700006],[-2.018137173999946,48.66034577000009],[-2.006581183999913,48.66762929900009],[-1.991118943999908,48.67059967700003],[-1.9877009759999,48.673773505000085],[-1.9877009759999,48.680853583000115],[-1.985910610999895,48.68789297100001],[-1.976958787999877,48.69110748900006],[-1.939361131999874,48.69110748900006],[-1.945627407999922,48.69855377800003],[-1.843739386999914,48.712144272999986],[-1.846669074999909,48.70783112200008],[-1.846913214999858,48.70343659100011],[-1.843576626999948,48.69814687700013],[-1.836333787999905,48.69110748900006],[-1.861195441999968,48.66421133000007],[-1.860951300999915,48.64085521],[-1.838205532999894,48.62376536700005],[-1.79600989499994,48.615912177000055],[-1.722808397999898,48.61530182500009],[-1.643950975999928,48.62343984600003],[-1.595692511999914,48.64093659100017],[-1.589670376999891,48.641791083000086],[-1.579701300999915,48.64325592700014],[-1.500559048999918,48.63646067900011],[-1.393137173999889,48.65241120000012],[-1.356556769999941,48.64325592700014],[-1.372303839999915,48.660589911000116],[-1.394602016999926,48.66828034100014],[-1.432850714999887,48.67059967700003],[-1.433013475999871,48.66828034100014],[-1.437733527999853,48.66445547100012],[-1.443267381999874,48.662827867000104],[-1.445952928999873,48.66746653900013],[-1.447092251999891,48.67389557500006],[-1.450510219999898,48.679510809000035],[-1.455799933999884,48.683417059000035],[-1.490223761999914,48.69013092699999],[-1.502674933999941,48.69550202000015],[-1.507964647999898,48.70160553600011],[-1.516468878999945,48.725165106000176],[-1.553618943999936,48.747137762000094],[-1.562082485999895,48.77081940300012],[-1.562570766999954,48.79848867400001],[-1.566761847999913,48.82217031500012],[-1.578846808999913,48.837836005],[-1.602935350999928,48.84194570500016],[-1.602935350999928,48.84935130400014],[-1.589100714999915,48.853583075000145],[-1.578521287999877,48.86261627800015],[-1.571848110999923,48.874212958],[-1.563710089999915,48.92210521],[-1.557036912999934,48.93231842700013],[-1.548410610999952,48.923814195000105],[-1.542795376999948,48.93524811400006],[-1.541981574999852,48.944077867000104],[-1.54702714799987,48.94969310100011],[-1.558990037999905,48.951808986000046],[-1.563059048999946,48.95758698100009],[-1.552235480999855,49.01544830900009],[-1.545765753999945,49.03034088700015],[-1.532338019999884,49.03514232000005],[-1.507964647999898,49.02753327],[-1.507964647999898,49.03367747599999],[-1.527251756999931,49.039780992000075],[-1.549712693999936,49.039780992000075],[-1.568430141999926,49.032660223000036],[-1.576324022999898,49.01727936400008],[-1.57945716099988,49.01316966400013],[-1.586537238999909,49.01898834800009],[-1.593576626999891,49.02899811400006],[-1.596750454999949,49.03742096600003],[-1.595936652999853,49.06126536700002],[-1.593739386999857,49.07196686400012],[-1.589344855999883,49.082098700000174],[-1.603423631999902,49.08397044500005],[-1.60875403599988,49.091498114],[-1.607736782999922,49.10272858299999],[-1.602935350999928,49.11562734600001],[-1.595936652999853,49.12848541900006],[-1.589019334999932,49.13458893400003],[-1.569488084999875,49.14354075700005],[-1.581776495999918,49.149847723],[-1.584217902999853,49.14842357000013],[-1.589344855999883,49.14354075700005],[-1.597767706999917,49.159369208],[-1.60448157499988,49.178208726000136],[-1.608794725999871,49.197821356000084],[-1.610422329999892,49.21588776200012],[-1.602650519999884,49.225409247000115],[-1.584462042999917,49.226263739000025],[-1.548410610999952,49.21930573100003],[-1.548410610999952,49.2254906270001],[-1.569569464999858,49.229681708000115],[-1.595285610999895,49.23786041900003],[-1.616851365999906,49.23822663000014],[-1.624663865999906,49.21930573100003],[-1.640533006999931,49.231512762000094],[-1.657093878999888,49.26837799700014],[-1.671864386999886,49.280096747000144],[-1.66539466099988,49.284613348],[-1.662587042999917,49.28603750200006],[-1.658192511999857,49.28754303600011],[-1.6869197259999,49.30243561400009],[-1.699086066999882,49.31354401200012],[-1.706654425999915,49.329169012000094],[-1.686187303999873,49.329169012000094],[-1.686187303999873,49.335353908000066],[-1.699126756999874,49.35586172100004],[-1.706654425999915,49.35586172100004],[-1.714751756999959,49.33852773600013],[-1.733265753999973,49.346258856000034],[-1.755726691999882,49.362453518],[-1.775502081999889,49.37010325700011],[-1.7728572259999,49.37702057500003],[-1.771107550999915,49.37995026200004],[-1.767974412999933,49.38373444200006],[-1.781890428999901,49.38153717700008],[-1.79507402299987,49.377630927],[-1.80679277299987,49.37685781500006],[-1.816477016999898,49.38373444200006],[-1.819569464999887,49.39679596600014],[-1.81578528599988,49.43085358300006],[-1.816477016999898,49.44521719000012],[-1.819406704999921,49.452053127000156],[-1.82359778599988,49.45848216400015],[-1.838205532999894,49.47581614800005],[-1.839507615999878,49.48065827000012],[-1.840240037999905,49.485825914000046],[-1.843739386999914,49.49359772300015],[-1.853586391999926,49.50429922100007],[-1.879465298999918,49.524969794000086],[-1.884673631999931,49.53091054900001],[-1.878407355999883,49.54486725500008],[-1.850168423999918,49.561712958000086],[-1.843739386999914,49.57184479400003],[-1.839222785999937,49.6031761740001],[-1.839507615999878,49.61977773600013],[-1.846913214999858,49.633937893000066],[-1.855051235999895,49.64508698100009],[-1.860585089999915,49.65477122600005],[-1.869496222999942,49.66168854400014],[-1.901600714999915,49.66583893400018],[-1.945627407999922,49.67796458500008],[-1.93765214799987,49.70156484600001],[-1.939564581999917,49.71645742400007],[-1.935210740999935,49.7241071640001],[-1.908355272999956,49.72638580900015],[-1.898996548999918,49.72426992400007],[-1.87913977799991,49.71482982000005],[-1.867298956999946,49.712713934000035],[-1.839426235999895,49.71539948100012],[-1.829457160999908,49.712713934000035],[-1.824615037999934,49.70844147300012],[-1.820952928999873,49.69635651200012],[-1.816477016999898,49.69163646000011],[-1.811838344999899,49.69074127800003],[-1.800892706999917,49.69208405200011],[-1.79600989499994,49.69163646000011],[-1.773996548999946,49.68671295800006],[-1.707753058999884,49.68016185100008],[-1.633046027999853,49.663519598000114],[-1.617176886999943,49.66429271000014],[-1.616688605999854,49.662014065000065],[-1.616363084999932,49.65704987200002],[-1.613921678999901,49.65224844000012],[-1.606678839999859,49.650051174000126],[-1.597320115999935,49.65228913000011],[-1.58372962099989,49.66205475500005],[-1.572865363999881,49.66429271000014],[-1.561187303999901,49.66303131700012],[-1.540394660999908,49.65778229400014],[-1.528431769999884,49.6574567730001],[-1.51146399599989,49.662543036000145],[-1.495920376999891,49.67218659100002],[-1.470122850999871,49.69505442900011],[-1.455718553999901,49.70221588700015],[-1.409494594999899,49.7115746110001],[-1.391265428999901,49.712713934000035],[-1.271148240999906,49.69843170800014],[-1.26305091099988,49.69550202000012],[-1.259103969999899,49.68829987200009],[-1.254139777999853,49.67177969],[-1.232248501999919,49.64142487200003],[-1.227772589999859,49.62409088700004],[-1.253325975999928,49.61225006700008],[-1.257557745999861,49.60285065300015],[-1.259999152999882,49.59345123900012],[-1.264027472999942,49.589260158000016],[-1.2862035799999,49.58893463700018],[-1.294992641999897,49.58681875200007],[-1.301421678999901,49.58177317900014],[-1.306263800999886,49.5580915390001],[-1.293609178999901,49.538397528000175],[-1.276519334999875,49.52073802300008],[-1.261586066999911,49.493150132000046],[-1.18529212099989,49.430365302000084],[-1.175689256999902,49.415228583000086],[-1.172230597999913,49.39337799700003],[-1.174224412999934,49.38239166900008],[-1.178700324999909,49.374579169000086],[-1.183257615999935,49.36945221600017],[-1.185170050999915,49.366400458000086],[-1.181996222999942,49.35618724200004],[-1.173817511999857,49.357001044000135],[-1.163075324999909,49.361517645],[-1.151722785999937,49.36269765800013],[-1.141021287999934,49.356675523000135],[-1.133452928999872,49.349514065000086],[-1.122873501999919,49.34544505400014],[-1.103423631999931,49.349025783000016],[-1.103423631999931,49.35586172100004],[-1.113758917999945,49.365790106000034],[-1.106353318999936,49.37946198100015],[-1.089588995999918,49.391546942000055],[-1.072255011999857,49.39679596600014],[-0.940419074999852,49.392279364],[-0.822132941999911,49.36269765800013],[-0.650786912999877,49.35586172100004],[-0.607980923999889,49.347398179],[-0.58336341099988,49.34589264500011],[-0.546945766999897,49.35895416900011],[-0.522531704999949,49.35529205900015],[-0.479481574999909,49.34275950700005],[-0.411122199999852,49.34275950700005],[-0.393625454999892,49.33803945500013],[-0.36343339799987,49.325018622000144],[-0.313099738999938,49.31732819200012],[-0.219471808999884,49.280096747000144],[-0.194081183999884,49.29523346600014],[-0.033843553999873,49.32005442900011],[0.012868686000047,49.33462148600013],[0.040293816000087,49.35040924700009],[0.0630802740001,49.35447825700013],[0.071950717000078,49.35927969000012],[0.09595787900011,49.38373444200006],[0.162364129000139,49.415187893000095],[0.286875847000118,49.433620510000125],[0.411306186000047,49.452053127000156],[0.457286004000082,49.4674339860001],[0.476573113000114,49.478664455000015],[0.493174675000091,49.49359772300015],[0.42212975400011,49.464422919000086],[0.339610222000118,49.45673248900009],[0.256846550000063,49.46405670800008],[0.185313347000118,49.4799665390001],[0.164805535000085,49.4799665390001],[0.147308790000125,49.48094310100007],[0.124359571000127,49.48578522300014],[0.104421420000051,49.49359772300015],[0.09595787900011,49.50324127800011],[0.092784050000148,49.509263414000095],[0.078623894000117,49.515529690000065],[0.075368686000076,49.5240746110001],[0.076589389000077,49.53497955900015],[0.079681837000066,49.542181708],[0.130869988000114,49.603501695000105],[0.170909050000148,49.69163646000011],[0.185883009000094,49.70319245000003],[0.23585045700014,49.72931549700009],[0.246755405000101,49.729437567000055],[0.256846550000063,49.735907294000164],[0.387461785000141,49.77505117400001],[0.397634311000104,49.78436920800006],[0.522797071000127,49.832953192],[0.557383660000113,49.83978913000011],[0.596690300000119,49.857245184000085],[0.674815300000148,49.87579987200009],[0.760915561000019,49.875067450000145],[1.172618035000141,49.961004950000174],[1.196950717000107,49.973578192000055],[1.221202019000089,49.9789899760001],[1.260996941000087,50.00751373900003],[1.391286655000044,50.07518138200005],[1.444102410000113,50.11725495000012],[1.455821160000113,50.123602606000055],[1.464528842000078,50.13214752800015],[1.486827019000117,50.18504466400013],[1.521006707000112,50.21466705900015],[1.555349155000073,50.21771881700006],[1.654307488000057,50.18659088700015],[1.664073113000114,50.187079169000135],[1.672536655000044,50.192531643],[1.672536655000044,50.199367580000015],[1.661957227000102,50.19891998900012],[1.655284050000148,50.20050690300015],[1.65007571700005,50.20477936400006],[1.644541863000114,50.2123884140001],[1.665049675000091,50.2123884140001],[1.665049675000091,50.21979401200017],[1.645681186000075,50.22003815300003],[1.625498894000117,50.224310614000146],[1.610036655000101,50.23224518400009],[1.603526238000114,50.24347565300009],[1.593923373000052,50.25629303600014],[1.551117384000065,50.26968008000013],[1.54151451900006,50.277899481000034],[1.543142123000081,50.310003973],[1.551524285000141,50.349066473000065],[1.572032097000118,50.375677802000105],[1.594981316000087,50.37266673400001],[1.61036217500012,50.37067291900017],[1.61036217500012,50.376898505000106],[1.555186394000117,50.40477122599999],[1.555186394000117,50.411566473],[1.573496941000059,50.445379950000174],[1.574229363000086,50.49237702],[1.579274936000047,50.533148505000085],[1.61036217500012,50.54816315300008],[1.583343946000099,50.57469310100005],[1.577891472000147,50.58860911700013],[1.573578321000042,50.63556549700017],[1.563161655000073,50.678290106000176],[1.562673373000081,50.698960679],[1.567637566000116,50.71674225500008],[1.588715040000039,50.756293036000116],[1.600108269000117,50.77098216400013],[1.605642123000024,50.79002513200011],[1.599294467000106,50.812933661000116],[1.583181186000047,50.84979889500009],[1.580821160000085,50.86371491100006],[1.580577019000117,50.8688011740001],[1.604828321000127,50.881048895000056],[1.613454623000109,50.88336823100012],[1.634287957000111,50.884588934000035],[1.653330925000091,50.889105536],[1.670176629000082,50.900091864000146],[1.699066602000102,50.925604559000064],[1.729828321000099,50.94391510600012],[1.92139733200014,50.996771552000084],[1.939300977000101,50.99445221600011],[1.973480665000096,51.007147528000175],[2.134043816000144,51.01996491100003],[2.305511915000068,51.055405992000104],[2.316091342000107,51.05902741100006],[2.324473504000081,51.05988190300017],[2.384450717000106,51.055324611000046],[2.466075066000116,51.068793036000024],[2.506683790000096,51.08075592700014],[2.521494988000086,51.087388414000095],[2.521799927690466,51.08754088348043],[2.537033325000095,51.06461029100013]],[[1.960634399000071,42.443715312],[1.983372030000055,42.44126068100003],[1.986162557000114,42.44126068100003],[1.996084432000117,42.44283681200007],[1.99949507600013,42.44389618000004],[1.988436320000119,42.458184713000136],[1.978307740000076,42.47497955400008],[1.967972453000072,42.48570241300011],[1.956603638000076,42.481775005000046],[1.945648233000099,42.463817445000146],[1.947508585000122,42.451234233000044],[1.960634399000071,42.443715312]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"United Kingdom","adm0_a3":"GBR","geou_dif":0,"geounit":"United Kingdom","gu_a3":"GBR","su_dif":0,"subunit":"United Kingdom","su_a3":"GBR","brk_diff":0,"name":"United Kingdom","name_long":"United Kingdom","brk_a3":"GBR","brk_name":"United Kingdom","brk_group":null,"abbrev":"U.K.","postal":"GB","formal_en":"United Kingdom of Great Britain and Northern Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United Kingdom","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":62262000,"gdp_md_est":1977704,"pop_year":0,"lastcensus":2011,"gdp_year":2009,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"UK","iso_a2":"GB","iso_a3":"GBR","iso_n3":"826","un_a3":"826","wb_a2":"GB","wb_a3":"GBR","woe_id":-90,"woe_id_eh":23424975,"woe_note":"Eh ID includes Channel Islands and Isle of Man. UK constituent countries of England (24554868), Wales (12578049), Scotland (12578048), and Northern Ireland (20070563).","adm0_a3_is":"GBR","adm0_a3_us":"GBR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":14,"long_len":14,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GBR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.287505662999904,49.91400788000006],[-6.297271287999933,49.909613348000065],[-6.309152798999889,49.91364166900003],[-6.307443813999896,49.927435614000146],[-6.298817511999886,49.935492255000085],[-6.292225714999915,49.93207428600006],[-6.28416907499988,49.92275625200013],[-6.287505662999904,49.91400788000006]]],[[[-6.326486782999893,49.949204820000105],[-6.332508917999888,49.941717841000056],[-6.341216600999871,49.94476959800012],[-6.348052537999905,49.956203518000095],[-6.348947719999899,49.9643415390001],[-6.341786261999857,49.96360911699999],[-6.336822068999907,49.96092357],[-6.333648240999935,49.95970286699999],[-6.328033006999931,49.956610419000086],[-6.326486782999893,49.949204820000105]]],[[[-1.295765753999916,50.77317942900011],[-1.14427649599989,50.73379140800012],[-1.119536912999905,50.73419830900003],[-1.109120245999918,50.73285553600005],[-1.097035285999908,50.72695547100004],[-1.096424933999856,50.72443268400009],[-1.097645636999857,50.71600983300006],[-1.097035285999908,50.71332428600009],[-1.09422766799986,50.71263255400014],[-1.085560675999943,50.714016018],[-1.082753058999913,50.71332428600009],[-1.062326626999948,50.69281647300012],[-1.062326626999948,50.685288804000045],[-1.066965298999946,50.68524811400006],[-1.069650844999927,50.683498440000065],[-1.071888800999915,50.68097565300014],[-1.0753067699999,50.67853424700003],[-1.112700975999871,50.67145416900014],[-1.128651495999889,50.666449286000116],[-1.156361456999889,50.65078359600015],[-1.162220831999917,50.645982164000074],[-1.16470292899993,50.64093659100003],[-1.164133266999983,50.619370835000105],[-1.16502844999988,50.60822174700009],[-1.168446417999888,50.603461005],[-1.279204881999931,50.58250560100005],[-1.315541144999941,50.58917877800009],[-1.445952928999873,50.64813873900005],[-1.452788865999878,50.65428294500013],[-1.485951300999915,50.66933828300016],[-1.497425910999937,50.67230866100006],[-1.535145636999914,50.66937897300015],[-1.551503058999941,50.66510651200004],[-1.569488084999875,50.65802643400015],[-1.545318162999877,50.686102606000176],[-1.505930141999982,50.707709052000084],[-1.418690558999884,50.73379140800012],[-1.420887824999852,50.7304548200001],[-1.423451300999972,50.72370026200015],[-1.425363735999923,50.7201195330001],[-1.400868292999888,50.72199127800015],[-1.377552863999881,50.73419830900003],[-1.343495245999861,50.76105377800003],[-1.31851152299987,50.772162177000055],[-1.295765753999916,50.77317942900011]]],[[[-0.938832160999908,50.78839752800009],[-0.938832160999908,50.78095123900011],[-1.020741339999859,50.78839752800009],[-1.020741339999859,50.79515208500014],[-0.998687303999873,50.801011460000076],[-0.972564256999902,50.82977936400012],[-0.959868943999936,50.829331773000135],[-0.950306769999969,50.823797919000114],[-0.947824673999946,50.81781647300009],[-0.95140540299991,50.81244538000014],[-0.959868943999936,50.80825429900001],[-0.959868943999936,50.80206940300003],[-0.954579230999883,50.79881419499999],[-0.94562740799995,50.791815497000115],[-0.938832160999908,50.78839752800009]]],[[[-4.663482225999928,51.164862372000165],[-4.670480923999918,51.160101630000085],[-4.678537563999953,51.16705963700014],[-4.679798956999974,51.18056875200013],[-4.676421678999958,51.19310130400014],[-4.671213344999956,51.195054429],[-4.666981574999852,51.18768952],[-4.6654353509999,51.18357982000004],[-4.663970506999931,51.17706940300014],[-4.663482225999928,51.164862372000165]]],[[[0.936371290000125,51.37103913000006],[0.91146894600007,51.364406643],[0.794769727000073,51.370550848000065],[0.77507571700005,51.37531159100017],[0.75757897200009,51.386419989],[0.743500196000042,51.400091864000146],[0.733897332000083,51.41217682500006],[0.746836785000085,51.439642645000085],[0.753916863000143,51.445705471000096],[0.766937696000127,51.447943427000055],[0.890798373000052,51.421047268000095],[0.900563998000109,51.417547919000086],[0.91146894600007,51.41217682500006],[0.932465040000125,51.397691147999986],[0.942149285000084,51.38300202],[0.936371290000125,51.37103913000006]]],[[[-4.655669725999871,53.31976959800009],[-4.644195115999906,53.31952545800014],[-4.626291469999956,53.32086823100003],[-4.618885870999861,53.317084052],[-4.60383053299995,53.30817291900014],[-4.590443488999938,53.29755280200011],[-4.580922003999945,53.28546784100003],[-4.577259894999912,53.272040106000034],[-4.57274329299986,53.26650625200001],[-4.563954230999882,53.26044342700011],[-4.558461066999938,53.25275299700009],[-4.563628709999961,53.241929429],[-4.571888800999943,53.23948802300005],[-4.581898566999911,53.24201080900018],[-4.602406378999888,53.253078518],[-4.622792120999861,53.27594635600011],[-4.63255774599989,53.282945054000024],[-4.641346808999884,53.284369208000086],[-4.67039954299986,53.282945054000024],[-4.676665818999908,53.28510163],[-4.693959113999881,53.30280182500012],[-4.693959113999881,53.30963776200012],[-4.667307094999956,53.32391998900012],[-4.655669725999871,53.31976959800009]]],[[[-4.203236456999946,53.29848867400001],[-4.190581834999875,53.296576239000146],[-4.177805141999926,53.29755280200011],[-4.154896613999938,53.30182526200004],[-4.142486131999902,53.30280182500012],[-4.136626756999874,53.30508047100006],[-4.127797003999916,53.31484609600004],[-4.121978318999879,53.317084052],[-4.115142381999931,53.31590403899999],[-4.10252844999988,53.310777085000055],[-4.098133917999888,53.30963776200012],[-4.068918423999946,53.31037018400015],[-4.055043097999942,53.30853913000008],[-4.042876756999874,53.30280182500012],[-4.063384568999908,53.28929271000014],[-4.098052537999905,53.25014883000009],[-4.121978318999879,53.241929429],[-4.146717902999853,53.239081122000144],[-4.171986456999889,53.23139069200012],[-4.195546027999853,53.220282294000114],[-4.214833136999886,53.20722077000012],[-4.218495245999918,53.20404694200006],[-4.220366990999906,53.201483466000134],[-4.22101803299995,53.197455145000085],[-4.22101803299995,53.190130927000084],[-4.222035285999908,53.182114976000136],[-4.225005662999904,53.18121979400014],[-4.229359503999916,53.18219635600011],[-4.264556443999878,53.16693756700014],[-4.280140753999945,53.15497467700011],[-4.343861456999917,53.132066148000106],[-4.354359503999888,53.12995026200009],[-4.36668860599994,53.13141510600015],[-4.392404751999891,53.13833242400007],[-4.392689581999917,53.13605377800008],[-4.398671027999938,53.13275788000006],[-4.406605597999885,53.13060130400005],[-4.412831183999855,53.132066148000106],[-4.41429602799991,53.137844143000095],[-4.413685675999943,53.147121486000124],[-4.411976691999938,53.15558502800017],[-4.409738735999952,53.159409897999986],[-4.40192623599998,53.1637230490001],[-4.390370245999861,53.173081773000135],[-4.38512122299997,53.182440497000144],[-4.395741339999915,53.186712958000086],[-4.410878058999913,53.18219635600011],[-4.432850714999915,53.16290924700017],[-4.447580532999922,53.159409897999986],[-4.448557094999899,53.16254303600005],[-4.481678839999915,53.17987702000015],[-4.484486456999974,53.18060944200009],[-4.492502407999922,53.17934804900007],[-4.495350714999859,53.17987702000015],[-4.496001756999902,53.18256256700012],[-4.494699673999918,53.190863348],[-4.495350714999859,53.19354889500009],[-4.495106574999909,53.196478583000115],[-4.496327277999939,53.20380280200011],[-4.499623175999972,53.211249091000084],[-4.519886847999885,53.22284577],[-4.553089972999885,53.26194896000005],[-4.571034308999856,53.27545807500003],[-4.571034308999856,53.282945054000024],[-4.565256313999981,53.293036200000145],[-4.563221808999856,53.308254299000126],[-4.563628709999961,53.33006419500002],[-4.558664516999897,53.36334870000009],[-4.560861782999893,53.37783437700013],[-4.571034308999856,53.39276764500009],[-4.553456183999913,53.40058014500009],[-4.425363735999952,53.42670319200012],[-4.412831183999855,53.426947333000086],[-4.34349524599989,53.42007070500007],[-4.32469641799986,53.41950104400008],[-4.286529100999871,53.40643952000012],[-4.276722785999937,53.401027736000074],[-4.271880662999876,53.389064846000124],[-4.269357876999948,53.377101955000015],[-4.266021287999934,53.371649481000176],[-4.266916469999927,53.368963934000085],[-4.254505988999881,53.36322663000011],[-4.240061001999918,53.35834381700015],[-4.234730597999885,53.35805898600002],[-4.233713344999899,53.352972723],[-4.23485266799986,53.34613678600009],[-4.235178188999953,53.34007396000008],[-4.231556769999912,53.33759186400006],[-4.230620897999927,53.33527252800009],[-4.214833136999886,53.32391998900012],[-4.209339972999942,53.31240469000009],[-4.207427537999877,53.30390045800006],[-4.203236456999946,53.29848867400001]]],[[[-6.440012173999918,55.23602936400003],[-6.415923631999902,55.23187897300006],[-6.378163214999915,55.24624258000013],[-6.35289466099988,55.24262116100009],[-6.255848761999942,55.21088288000011],[-6.239816860999952,55.20831940300003],[-6.217640753999888,55.21039459800015],[-6.179554816999882,55.21971263199999],[-6.16002356699991,55.22190989799999],[-6.120838995999889,55.21784088700012],[-6.100982225999871,55.21238841399999],[-6.092396613999966,55.20490143400012],[-6.084217902999853,55.20221588700004],[-6.047230597999913,55.178534247000115],[-6.037098761999857,55.167914130000085],[-6.040638800999943,55.112046617000104],[-6.047434048999945,55.095648505],[-6.06208248599998,55.07412344000009],[-6.054351365999878,55.065130927000055],[-6.035389777999853,55.063625393],[-6.016672329999892,55.06427643400015],[-6.003529425999915,55.063177802000105],[-5.988677537999877,55.05947500200007],[-5.975738084999875,55.053045966000134],[-5.968251105999883,55.0438500020001],[-5.970204230999855,55.02582428600006],[-5.988270636999857,54.988674221000146],[-5.986236131999931,54.98175690300015],[-5.957142706999946,54.978949286],[-5.930327928999872,54.97089264500006],[-5.906605597999942,54.95795319200006],[-5.886341925999942,54.94082265800013],[-5.881988084999961,54.934027411],[-5.87523352799991,54.91791413000011],[-5.869252081999889,54.910386460000076],[-5.862782355999911,54.905951239],[-5.847035285999937,54.898138739],[-5.839182094999956,54.893011786],[-5.829986131999902,54.88515859600001],[-5.820952928999873,54.875067450000145],[-5.813954230999911,54.86277903899999],[-5.81118730399993,54.84833405200014],[-5.800526495999918,54.820746161000116],[-5.775257941999938,54.81150950700005],[-5.745594855999911,54.80459219000015],[-5.721831834999904,54.783758856000176],[-5.715646938999953,54.783758856000176],[-5.733754035999965,54.805243231000084],[-5.797596808999883,54.844549872000115],[-5.78172766799986,54.86172109600012],[-5.751616990999935,54.85687897300015],[-5.720611131999902,54.841009833000115],[-5.701975063999924,54.8246931010001],[-5.689849412999904,54.793117580000015],[-5.692616339999887,54.765204169000164],[-5.706898566999882,54.742987372000115],[-5.729318813999896,54.72850169500008],[-5.758900519999941,54.71991608300006],[-5.818430141999953,54.70962148600013],[-5.845366990999934,54.701239325000174],[-5.871490037999876,54.68732330900009],[-5.890736456999917,54.67230866100005],[-5.914336717999959,54.64683665600016],[-5.927235480999882,54.632961330000064],[-5.915150519999884,54.62824127800015],[-5.910959438999953,54.61945221600011],[-5.909982876999891,54.61054108300006],[-5.907378709999875,54.605617580000015],[-5.894886847999885,54.60480377800009],[-5.887277798999918,54.609808661000116],[-5.881988084999961,54.61615631700006],[-5.871001756999902,54.62230052300004],[-5.848784959999932,54.6432152360001],[-5.839019334999904,54.64972565300008],[-5.803822394999941,54.659613348],[-5.769520636999886,54.67462799700003],[-5.747954881999874,54.68040599200002],[-5.732411261999886,54.67698802299999],[-5.716623501999919,54.66986725500014],[-5.694691535999908,54.6686872420001],[-5.57469641799986,54.68008047100007],[-5.568999803999901,54.676947333],[-5.556711391999926,54.66278717700008],[-5.547108527999853,54.659613348],[-5.536610480999883,54.6574567730001],[-5.533273891999954,54.651678778000054],[-5.532785610999951,54.6432152360001],[-5.530100063999896,54.632961330000064],[-5.514393683999912,54.59788646],[-5.502552863999881,54.58348216400013],[-5.48570716099988,54.57770416900014],[-5.478911912999934,54.569484768000066],[-5.472889777999939,54.53009674700017],[-5.468617316999911,54.516262111000074],[-5.437082485999923,54.48786041900014],[-5.430775519999884,54.48517487200017],[-5.437570766999897,54.47565338700017],[-5.436512824999852,54.47020091400004],[-5.433461066999939,54.46625397300015],[-5.433827277999882,54.461004950000174],[-5.438832160999908,54.45490143400018],[-5.458119269999941,54.43740469000012],[-5.464263475999928,54.42523834800015],[-5.457386847999913,54.40867747599999],[-5.461171027999853,54.392075914000124],[-5.470855272999898,54.38434479400011],[-5.483998175999943,54.377590236000074],[-5.489125128999888,54.369574286000116],[-5.474842902999882,54.358587958000086],[-5.489572719999956,54.353705145],[-5.502023891999897,54.33966705900014],[-5.515777147999898,54.33808014500012],[-5.527658657999949,54.34528229400014],[-5.536976691999911,54.35927969],[-5.547108527999853,54.37909577000012],[-5.558990037999905,54.382635809000085],[-5.569488084999875,54.39150625200015],[-5.576649542999917,54.402777411000145],[-5.578439907999893,54.413804429],[-5.571685350999871,54.42560455900014],[-5.548695441999882,54.442816473000086],[-5.543690558999856,54.45783112200011],[-5.547352667999887,54.48908112200017],[-5.558013475999928,54.51190827000009],[-5.575306769999912,54.52899811400012],[-5.644886847999913,54.56777578300016],[-5.671864386999886,54.576808986000074],[-5.701975063999924,54.57770416900014],[-5.701975063999924,54.57078685100008],[-5.694650844999899,54.561102606000084],[-5.69741777299987,54.551214911],[-5.70604407499988,54.54266998900006],[-5.715646938999953,54.536688544000135],[-5.701527472999913,54.53632233300014],[-5.69041907499988,54.53204987200003],[-5.681507941999939,54.52684153900013],[-5.674061652999882,54.52366771000008],[-5.636952277999852,54.52204010600006],[-5.625599738999881,54.516262111000074],[-5.641916469999899,54.51264069200012],[-5.663929816999911,54.51019928600009],[-5.670318162999934,54.50568268400003],[-5.639963344999956,54.495754299000126],[-5.644764777999853,54.48371002800012],[-5.644602016999897,54.472113348],[-5.63849850199989,54.463568427000084],[-5.625599738999881,54.461004950000174],[-5.626698370999918,54.45669179900006],[-5.628000454999921,54.45380280200013],[-5.63312740799995,54.44733307500003],[-5.625599738999881,54.44110748900009],[-5.653553839999915,54.388983466000056],[-5.661447719999899,54.37958405200011],[-5.697906053999873,54.36229075700011],[-5.708851691999911,54.35175202000014],[-5.668324347999913,54.36066315300009],[-5.622141079999892,54.376654364],[-5.579701300999915,54.383693752000156],[-5.550526495999861,54.36542389500009],[-5.540679490999935,54.327337958],[-5.553049282999893,54.29852936400006],[-5.579497850999871,54.27570221600014],[-5.612619594999899,54.25556061400012],[-5.617176886999857,54.2547875020001],[-5.628529425999914,54.256537177],[-5.63312740799995,54.25556061400012],[-5.639963344999956,54.235052802000055],[-5.646839972999885,54.23216380400014],[-5.655751105999911,54.229681708],[-5.663400844999927,54.230861721000124],[-5.666656053999901,54.23883698100017],[-5.678822394999884,54.24616120000009],[-5.736887173999918,54.24909088700012],[-5.779449022999898,54.246527411],[-5.822661912999877,54.23720937700015],[-5.84227454299986,54.235052802000055],[-5.862049933999884,54.23053620000012],[-5.868031378999888,54.218491929],[-5.866037563999953,54.18414948100003],[-5.865834113999881,54.18048737200009],[-5.86851966099988,54.161322333000115],[-5.874623175999942,54.14052969000012],[-5.883208787999876,54.12075429900001],[-5.893788214999915,54.104681708000115],[-5.91197669199991,54.09129466400013],[-5.953846808999912,54.07868073100015],[-5.984730597999885,54.059312242000125],[-6.027251756999931,54.04022858300014],[-6.040516730999882,54.03644440300003],[-6.079579230999911,54.03457265800016],[-6.095448370999861,54.03636302300004],[-6.112904425999914,54.043890692],[-6.112904425999914,54.05011627800015],[-6.093006964999915,54.055894273000106],[-6.08495032499988,54.05695221600017],[-6.161529100999871,54.0737165390001],[-6.174305792999917,54.074286200000145],[-6.185861782999922,54.09267812700001],[-6.212554490999934,54.09845612200017],[-6.242502407999922,54.09975820500007],[-6.263661261999914,54.104681708000115],[-6.269886847999885,54.09792715100009],[-6.284650430999932,54.105225728],[-6.299584920999877,54.10403717100009],[-6.313795938999931,54.09969635000003],[-6.327128458999964,54.09788767500011],[-6.338962361999961,54.10295196599999],[-6.346662149999872,54.10987660700009],[-6.354827025999896,54.110651754000074],[-6.368107869999903,54.09731923400006],[-6.369348103999925,54.09111806200018],[-6.367642781999876,54.083418274000095],[-6.366919310999975,54.075098369000116],[-6.371156778999932,54.066778463000055],[-6.377512980999938,54.06326446600012],[-6.401025756999928,54.06088735000016],[-6.426760619999925,54.05540964800018],[-6.433891967999955,54.05530629500005],[-6.440299844999913,54.05799346900006],[-6.446242635999936,54.06243764300008],[-6.450221719999917,54.06667511100012],[-6.450893513999887,54.06843210900011],[-6.478540405999894,54.06770863900012],[-6.564013224999911,54.04895009400011],[-6.571868041999948,54.04951853400017],[-6.587164265999916,54.05334259],[-6.59507076,54.05241241500006],[-6.600290079999894,54.04895009400011],[-6.605217158999976,54.04447525800004],[-6.610987100999893,54.03923492400018],[-6.616464803999889,54.03727122100004],[-6.630624144999928,54.04181874600009],[-6.657289184999883,54.06114573200013],[-6.672533732999908,54.06843210900011],[-6.657082478999911,54.09194488600009],[-6.655790567999872,54.1033137000001],[-6.666435913999861,54.114785869],[-6.643956664999848,54.13183909100005],[-6.634551554999888,54.150132548000116],[-6.640339314999949,54.16801259400007],[-6.648448442999893,54.17366497000013],[-6.663025268999916,54.18382558200007],[-6.683954223999904,54.19436757500012],[-6.694651244999932,54.197984925000114],[-6.706536824999944,54.19891510100017],[-6.717233845999941,54.19514272100004],[-6.724778605999916,54.18863149100015],[-6.732840128999896,54.1835672000001],[-6.744777384999849,54.184187317000166],[-6.766481486999851,54.19235219400018],[-6.78782385299985,54.20299753900018],[-6.807357543999927,54.216330058],[-6.823945678999848,54.23234975200013],[-6.829733438999909,54.24237498000017],[-6.833195759999881,54.252090149000125],[-6.837743285999892,54.26051340800011],[-6.846683308999928,54.266456197000124],[-6.882185017999888,54.277256572000155],[-6.864666707999902,54.28273427300006],[-6.856656860999948,54.29281117800018],[-6.858413858999909,54.30733225600012],[-6.870014701999906,54.32600060300002],[-6.879704548999911,54.34159373000013],[-6.885957397999902,54.34562449200003],[-6.897894652999952,54.3461929330001],[-6.905956176999921,54.34903513700006],[-6.915051228999913,54.36593332900004],[-6.922027547999903,54.37270294200009],[-6.984090942999955,54.40308868500013],[-7.01783565299985,54.41316558800018],[-7.049254923999882,54.41151194300012],[-7.078503783999905,54.39471710300016],[-7.127027953999914,54.34975860600015],[-7.15989416499994,54.33518585200009],[-7.168059040999935,54.33503082400016],[-7.185629028999927,54.336942851000074],[-7.189469552999896,54.33569177100012],[-7.192450316999981,54.33472076400006],[-7.193948933999878,54.32996653200017],[-7.1914684649999,54.323868713000124],[-7.187644408999887,54.31880442300006],[-7.185008910999954,54.31725413100013],[-7.184647175999943,54.316634013000154],[-7.192398640999954,54.30738393200012],[-7.193690551999907,54.30753896099999],[-7.199168253999916,54.30345652300014],[-7.206661336999928,54.304903463000144],[-7.211467244999938,54.304179993000055],[-7.209038452999891,54.29343129600015],[-7.175500446999878,54.283664449000085],[-7.1814949139999,54.26976348900003],[-7.145889851999925,54.252090149000125],[-7.159739135999899,54.24066965700011],[-7.153331257999951,54.22423655300004],[-7.174725300999852,54.21607167600003],[-7.229502319999939,54.207545064000115],[-7.24087113499985,54.202325745000095],[-7.249087686999872,54.19741648400016],[-7.255495564999904,54.190853577000084],[-7.261128295999923,54.18088002500015],[-7.256322387999916,54.176900940000095],[-7.247020629999895,54.17225006200012],[-7.245780395999873,54.16697906500009],[-7.265365762999891,54.161139629],[-7.260869913999954,54.15116607700018],[-7.263505411999886,54.140985820000125],[-7.27074011299993,54.13225250200007],[-7.280041870999866,54.126154683],[-7.293787800999922,54.122020569000156],[-7.29735347499988,54.12589630200013],[-7.296319946999886,54.13499135400009],[-7.2964233,54.14651519800013],[-7.295028035999848,54.155403545000134],[-7.292134155999861,54.1626382450001],[-7.295544799999988,54.16511871400009],[-7.325982218999854,54.154576722000016],[-7.333165242999911,54.14940907900002],[-7.333165242999911,54.1427428190001],[-7.310324259999901,54.11468251600017],[-7.316489273999905,54.114280450000116],[-7.326964069999917,54.11359731000009],[-7.375488240999913,54.12331248000011],[-7.390216023999898,54.121193746000145],[-7.394660197999911,54.121917217000046],[-7.39662390099994,54.126258036000124],[-7.403961954999943,54.13504303000012],[-7.412230183999895,54.13643829300018],[-7.422255411999913,54.13545644200003],[-7.425769408999884,54.13695505800003],[-7.414658976999958,54.1456883760001],[-7.439618692999944,54.146928610000046],[-7.480753132999921,54.127653300000084],[-7.502302204999864,54.125121155000116],[-7.60901403799994,54.139900615000116],[-7.620796264999853,54.144964905],[-7.624051879999855,54.15333648700009],[-7.625705525999905,54.162173157],[-7.632681843999904,54.168529358000015],[-7.704770466999889,54.20036204100016],[-7.722598836999907,54.202325745000095],[-7.782078409999883,54.20000030500015],[-7.836958780999907,54.20434112600004],[-7.856440796999891,54.211420797000144],[-7.869669961999875,54.22687205000006],[-7.873649047999948,54.27105540000015],[-7.880263631999867,54.287023417000015],[-7.894965576999936,54.293586324],[-7.934110472999891,54.29704864600005],[-7.942074756999915,54.29887328100001],[-7.950801961999928,54.30087270200006],[-7.968010213999889,54.31218984000004],[-7.981032673999948,54.32655588900015],[-8.002194172999879,54.35792348300008],[-8.031339680999906,54.358026835000096],[-8.056480265999935,54.365881654000034],[-8.079941364999911,54.38019602500013],[-8.12241939299986,54.41523264600015],[-8.146345580999963,54.43073557600014],[-8.156034911999882,54.439055481000125],[-8.15812780799996,54.44711700500001],[-8.161176717999894,54.45481679300009],[-8.173837442999911,54.46174143500017],[-8.168466710999894,54.46347695500005],[-8.150169636999891,54.46938954700006],[-8.09704626499996,54.478587952000154],[-8.072448282999886,54.48706288700005],[-8.06097611499996,54.49331573500014],[-8.05586014799988,54.49755320300001],[-8.043561156999912,54.51222930900009],[-8.023278157999925,54.52969594400003],[-8.002194172999879,54.543441875000084],[-7.926410685999911,54.53305491200014],[-7.887136596999937,54.532124736000114],[-7.848844360999919,54.54090972900009],[-7.749263875999874,54.596151836],[-7.707871052999906,54.60416168300016],[-7.707944064999907,54.604707869000045],[-7.707951474999902,54.60476330300013],[-7.710558227999854,54.624263815000134],[-7.721203572999855,54.625865784000084],[-7.736758178999878,54.61925120000008],[-7.753553019999941,54.61449696900008],[-7.769159301999877,54.61801096600014],[-7.801198689999892,54.634805807000085],[-7.814996296999936,54.63945668600014],[-7.822541055999892,54.63811309800009],[-7.838043985999888,54.631240133000134],[-7.846415567999968,54.631446838],[-7.854270385999911,54.63640777600012],[-7.864347290999944,54.64906850199999],[-7.87277054899991,54.65222076500014],[-7.890082153999913,54.65506296800011],[-7.906618611999932,54.66131581600011],[-7.914835164999943,54.671651103000116],[-7.907135375999871,54.686688945000085],[-7.913233194999918,54.688652649000126],[-7.929666300999884,54.69671417300013],[-7.880108601999922,54.711028544000115],[-7.845898803999915,54.73102732300005],[-7.832152872999899,54.73061391200003],[-7.803575805999913,54.71614451100002],[-7.770502888999942,54.70601593100007],[-7.736603149999921,54.70746287100006],[-7.702289997999912,54.71888336200014],[-7.667511759999853,54.738778789000044],[-7.649683390999911,54.7448766080001],[-7.615370238999986,54.7393472290001],[-7.585397907999948,54.74472157800007],[-7.566639363999855,54.738675436000115],[-7.556149047999894,54.73836537800004],[-7.543074910999848,54.74167266900004],[-7.543023233999917,54.74379140300012],[-7.5483975839999,54.747202047000044],[-7.551704874999899,54.75469513000017],[-7.549741170999936,54.77960317000004],[-7.543384968999931,54.79309071900011],[-7.470831258999908,54.845283916000184],[-7.455069945999923,54.863008932000106],[-7.444734659999909,54.88445465100012],[-7.444734659999909,54.89489329100017],[-7.448972126999877,54.920318095000155],[-7.445251423999878,54.932151998000094],[-7.436983194999924,54.93830149400016],[-7.417139444999918,54.94305572600014],[-7.415755225999874,54.944372422000114],[-7.408664510999927,54.95111724800013],[-7.407424275999886,54.959437155],[-7.413108682999848,54.98496531200014],[-7.409077921999938,54.992044983000156],[-7.403755248999886,54.993130189000155],[-7.401119750999952,54.99483551100003],[-7.405253865999896,55.00356882699999],[-7.376986856999906,55.02889027900006],[-7.366961629999907,55.03555654000009],[-7.355024372999935,55.04093088800015],[-7.291152302999904,55.04661529600018],[-7.28298742699988,55.05183461600002],[-7.275287638999885,55.05886261000002],[-7.266502644999889,55.06516713500004],[-7.247097142933142,55.0693283139659],[-7.247100389999928,55.069322007],[-7.256743943999908,55.05068594],[-7.240956183999855,55.0502790390001],[-7.195423956999889,55.058050848],[-7.177479620999861,55.056952216000134],[-7.133900519999941,55.0438500020001],[-7.099476691999911,55.04096100500006],[-7.065052863999881,55.0438500020001],[-7.05370032499988,55.04873281500015],[-7.031890428999929,55.06492747600011],[-7.017201300999943,55.07111237200017],[-7.01781165299991,55.0839704450001],[-7.009917772999927,55.102240302000084],[-6.997954881999902,55.11863841399999],[-6.986480272999954,55.12571849200004],[-6.974924282999922,55.13544342699999],[-6.968658006999874,55.18065013200011],[-6.962554490999878,55.19464752800009],[-6.946685350999871,55.19537995000012],[-6.903553839999859,55.17865631700009],[-6.883778449999909,55.17413971600003],[-6.754505988999938,55.17780182500009],[-6.640451626999918,55.20831940300003],[-6.571278449999852,55.211249091000134],[-6.554514126999919,55.21857330900015],[-6.539173956999946,55.23065827000015],[-6.519846157999922,55.240668036000145],[-6.498117641999954,55.24713776200003],[-6.475941535999908,55.248683986000074],[-6.440012173999918,55.23602936400003]]],[[[-6.174305792999917,55.30390045799999],[-6.171864386999886,55.29319896000008],[-6.178089972999913,55.28058502800009],[-6.187570766999926,55.26935455900009],[-6.194813605999855,55.26292552299999],[-6.193267381999902,55.27098216400013],[-6.192860480999911,55.27578359600001],[-6.19176184799997,55.279364325000174],[-6.18797766799986,55.284002997000115],[-6.211089647999898,55.295314846000096],[-6.235829230999883,55.29669830900015],[-6.260609503999916,55.29507070500013],[-6.283558722999913,55.297064520000085],[-6.272531704999977,55.303045966000106],[-6.261463995999918,55.30752187700007],[-6.249623175999885,55.31028880400011],[-6.236398891999925,55.31134674700017],[-6.184803839999886,55.30683014500012],[-6.174305792999917,55.30390045799999]]],[[[-5.11778723899991,55.43976471600014],[-5.163563605999911,55.43488190300009],[-5.217355923999946,55.43797435100008],[-5.263091600999871,55.447211005000135],[-5.304676886999857,55.46214427299999],[-5.345692511999857,55.48265208500014],[-5.345692511999857,55.48944733300006],[-5.346180792999859,55.49603913000014],[-5.355336066999939,55.522894598000114],[-5.359364386999914,55.530462958000086],[-5.359364386999914,55.53729889500009],[-5.354237433999884,55.539780992000104],[-5.352284308999856,55.54230377800003],[-5.350412563999953,55.54547760600009],[-5.345692511999857,55.55027903899999],[-5.370432094999927,55.57025788000006],[-5.389068162999934,55.590236721000124],[-5.3978572259999,55.614203192],[-5.39289303299995,55.64655182500012],[-5.379383917999859,55.66811758],[-5.355213995999861,55.68960195500012],[-5.324330206999917,55.705023505000085],[-5.290516730999855,55.708563544000135],[-5.292591925999943,55.71198151200015],[-5.295155402999853,55.71942780200013],[-5.29735266799986,55.72284577000015],[-5.271351691999882,55.72382233300011],[-5.263172980999855,55.72284577000015],[-5.198312954999977,55.704331773000135],[-5.180653449999851,55.69489166900002],[-5.159982876999948,55.676214911000145],[-5.145985480999883,55.654974677000055],[-5.125965949999909,55.60553620000009],[-5.137440558999856,55.59202708500011],[-5.09422766799986,55.566555080000015],[-5.091867641999897,55.54413483300003],[-5.101673956999945,55.540716864],[-5.116037563999924,55.54043203300016],[-5.125233527999882,55.53693268400018],[-5.119740363999938,55.52362702000014],[-5.111561652999853,55.519924221],[-5.070790167999888,55.50934479400014],[-5.093006964999858,55.500433661000116],[-5.091053839999887,55.48729075700005],[-5.080799933999884,55.47166575700008],[-5.078236456999946,55.455308335000055],[-5.092030402999882,55.44611237200009],[-5.11778723899991,55.43976471600014]]],[[[-5.009388800999886,55.729315497000144],[-5.016184048999918,55.72284577000015],[-5.028797980999911,55.72333405200014],[-5.038482225999871,55.73187897300006],[-5.05028235599994,55.74949778899999],[-5.115589972999913,55.784369208000115],[-5.125965949999909,55.801011460000055],[-5.137562628999915,55.82904694200006],[-5.139637824999852,55.84198639500009],[-5.174224412999934,55.85537344000009],[-5.180653449999851,55.86277903900007],[-5.188588019999912,55.878119208000115],[-5.200795050999886,55.89549388199999],[-5.199533657999893,55.91107819200009],[-5.166900193999936,55.92084381700012],[-5.135975714999887,55.90595123900009],[-5.105539516999926,55.88670482000013],[-5.096506313999924,55.883530992000075],[-5.08763587099989,55.88263580900015],[-5.080922003999945,55.879584052000084],[-5.07518469999988,55.85691966400013],[-5.068023240999934,55.85211823100003],[-5.058827277999853,55.850165106000176],[-5.05028235599994,55.84577057500009],[-5.038075324999852,55.832424221000096],[-5.028920050999886,55.81928131700012],[-5.021839972999913,55.805609442],[-5.011463995999918,55.774481512000094],[-5.012766079999921,55.768377997000115],[-5.019195115999935,55.7631696640001],[-5.029774542999888,55.74949778899999],[-5.019032355999855,55.74530670800006],[-5.011341925999943,55.737697658],[-5.009388800999886,55.729315497000144]]],[[[-6.102365688999953,55.83124420800006],[-6.099232550999886,55.801011460000055],[-6.093088344999899,55.79169342700011],[-6.079090949999852,55.78148021000008],[-6.063954230999854,55.77338288000005],[-6.054554816999911,55.770005601000136],[-6.049794074999909,55.76634349199999],[-6.052316860999922,55.758042710000026],[-6.056874152999882,55.74884674700003],[-6.058257615999878,55.74274323100006],[-6.053212042999916,55.7372907570001],[-6.046620245999861,55.73354726800006],[-6.030384894999911,55.72907135600012],[-6.032785610999952,55.71767812700013],[-6.032338019999941,55.70636627800014],[-6.029286261999856,55.696234442],[-6.023508266999897,55.688137111000074],[-6.023508266999897,55.68187083500014],[-6.035389777999853,55.67845286700013],[-6.045725063999953,55.674261786],[-6.053618943999935,55.668361721000146],[-6.058257615999878,55.66014232000008],[-6.064442511999914,55.667629299000126],[-6.082427537999877,55.65208567900011],[-6.105458136999857,55.64020416900017],[-6.13190670499992,55.63182200700011],[-6.16002356699991,55.62665436400003],[-6.202544725999871,55.630560614],[-6.215321417999917,55.62665436400003],[-6.222767706999889,55.60553620000009],[-6.226958787999905,55.60175202000006],[-6.236561652999909,55.595607815],[-6.261870897999927,55.58380768400003],[-6.287342902999853,55.57843659100017],[-6.31118730399993,55.58323802300005],[-6.32518469999988,55.60553620000009],[-6.319243943999879,55.62824127800006],[-6.29747473899991,55.64248281500015],[-6.243234829999948,55.66014232000008],[-6.264800584999875,55.69550202000009],[-6.277088995999917,55.70400625200001],[-6.316761847999942,55.715073960000055],[-6.32518469999988,55.715399481000176],[-6.320952928999873,55.733465887000094],[-6.295521613999938,55.75189850500011],[-6.249989386999886,55.776841539000046],[-6.27179928299995,55.783026434000114],[-6.300445115999906,55.78579336100007],[-6.328724738999881,55.783148505],[-6.349029100999871,55.77342357000005],[-6.372547980999911,55.73871491100009],[-6.386586066999882,55.72231679900006],[-6.418568488999881,55.70962148600002],[-6.450306769999941,55.68256256700006],[-6.462961391999897,55.674465236000124],[-6.490956183999913,55.67182038000006],[-6.503529425999915,55.68134186400006],[-6.50243079299986,55.69765859600007],[-6.489654100999928,55.715399481000176],[-6.494699673999946,55.717230536000145],[-6.498605923999945,55.721136786000145],[-6.503895636999914,55.72284577000015],[-6.493234829999892,55.73924388200005],[-6.448638475999928,55.776841539000046],[-6.482167120999861,55.790472723],[-6.469064907999893,55.79694245000009],[-6.460804816999911,55.80320872600005],[-6.456654425999943,55.81264883000007],[-6.455474412999933,55.82835521000014],[-6.452788865999962,55.84088776200003],[-6.445220506999902,55.848822333],[-6.409087693999879,55.86359284100016],[-6.354481574999909,55.87742747600008],[-6.342640753999945,55.88491445500013],[-6.331369594999956,55.889960028000175],[-6.318348761999886,55.88670482000013],[-6.325917120999918,55.8803571640001],[-6.338205532999979,55.85199616100006],[-6.338205532999979,55.84577057500009],[-6.330718553999901,55.82782623900005],[-6.323231574999852,55.82050202000015],[-6.310902472999885,55.81842682500003],[-6.310902472999885,55.825262762000065],[-6.318430141999954,55.844916083],[-6.296986456999917,55.86717357000005],[-6.264800584999875,55.88540273600013],[-6.229074673999917,55.89728424700017],[-6.204253709999875,55.91657135600012],[-6.191395636999857,55.92084381700012],[-6.177154100999928,55.9230817730001],[-6.162220831999889,55.928452867000075],[-6.14907792899993,55.93520742400001],[-6.140126105999911,55.941351630000085],[-6.130116339999915,55.93939850500014],[-6.12368730399993,55.93549225500014],[-6.120228644999911,55.92942942900014],[-6.115956183999913,55.88678620000012],[-6.102365688999953,55.83124420800006]]],[[[-6.133371548999889,56.11261627800014],[-6.165638800999915,56.08148834800015],[-6.177154100999928,56.06146881700008],[-6.174305792999917,56.04376862200017],[-6.19432532499988,56.03530508000013],[-6.221669074999852,56.03082916900017],[-6.249175584999875,56.031317450000145],[-6.269886847999885,56.037543036000116],[-6.254302537999905,56.04462311400009],[-6.246815558999912,56.0561384140001],[-6.241688605999911,56.06948476800012],[-6.23265540299991,56.08161041900003],[-6.211740688999924,56.09699127800015],[-6.20571855399993,56.10272858300014],[-6.19823157499988,56.106268622000115],[-6.18260657499988,56.10260651200014],[-6.174305792999917,56.10643138200008],[-6.177398240999878,56.11025625200009],[-6.179025844999899,56.11294179900007],[-6.18179277299987,56.11945221600017],[-6.164947068999879,56.12079498900006],[-6.14940344999988,56.12494538],[-6.138010219999899,56.124701239000146],[-6.133371548999889,56.11261627800014]]],[[[-5.780181443999908,56.020738023000106],[-5.864491339999915,55.92674388200005],[-5.886341925999942,55.88670482000013],[-5.896839972999913,55.88890208500011],[-5.921538865999906,55.87128327],[-5.938140428999873,55.86627838700015],[-5.945423956999889,55.858587958000136],[-5.955393032999949,55.82005442900005],[-5.962066209999932,55.80475495000009],[-5.987538214999915,55.794623114000146],[-6.026600714999886,55.79608795799999],[-6.062408006999902,55.80947500200001],[-6.078114386999857,55.83490631700012],[-6.086903449999852,55.8829613300001],[-6.08495032499988,55.90033600500008],[-6.075184699999852,55.91596100500006],[-6.060170050999915,55.922919012000065],[-6.04312089799987,55.92796458500008],[-6.026966925999915,55.93793366100009],[-5.997425910999937,55.951727606000176],[-5.919056769999883,55.960394598000065],[-5.886341925999942,55.97614166900003],[-5.910023566999882,55.97650788000014],[-5.946848110999952,55.97064850499999],[-5.98070227799991,55.969916083000086],[-5.995594855999855,55.986029364000146],[-5.983265753999915,56.00885651200014],[-5.955189581999917,56.03473541900017],[-5.924427863999938,56.05597565300015],[-5.903960740999878,56.06484609600001],[-5.873687303999872,56.07013580900017],[-5.797596808999883,56.11261627800014],[-5.746490037999904,56.141750393],[-5.715931769999883,56.15314362200017],[-5.694488084999932,56.147406317],[-5.6908259759999,56.137844143],[-5.68797766799986,56.12409088700009],[-5.689320441999939,56.11176178600014],[-5.705067511999886,56.103013414000074],[-5.7201228509999,56.08812083500011],[-5.740223761999857,56.07648346600011],[-5.780181443999908,56.020738023000106]]],[[[-5.725209113999937,56.162827867000125],[-5.749134894999912,56.16107819200012],[-5.738352016999897,56.17747630400014],[-5.722238735999923,56.187079169000114],[-5.68830318899998,56.202053127000156],[-5.680897589999887,56.19456614799999],[-5.673654751999948,56.17894114800002],[-5.694203253999916,56.168605861000096],[-5.725209113999937,56.162827867000125]]],[[[-5.612619594999899,56.26349518400003],[-5.610585089999859,56.2494164080001],[-5.618153449999909,56.235052802000105],[-5.628163214999887,56.22052643400018],[-5.637440558999856,56.18927643400009],[-5.647572394999912,56.19537995000009],[-5.666656053999901,56.22247955900012],[-5.65640214799987,56.23200104400003],[-5.645334438999924,56.25592682500017],[-5.63312740799995,56.26349518400003],[-5.627837693999878,56.25999583500014],[-5.622954881999902,56.25763580900017],[-5.618031378999945,56.25812409100017],[-5.612619594999899,56.26349518400003]]],[[[-5.584624803999873,56.32558828300016],[-5.59044348899991,56.31362539300012],[-5.599964972999913,56.30548737200011],[-5.605336066999882,56.29694245000009],[-5.598988410999937,56.283921617000104],[-5.62169348899988,56.27606842700011],[-5.640288865999877,56.28278229400017],[-5.64671790299991,56.29877350500006],[-5.63312740799995,56.318752346000124],[-5.620757615999906,56.324204819999984],[-5.59788977799991,56.32184479400003],[-5.584624803999873,56.32558828300016]]],[[[-5.502756313999924,56.42112864800005],[-5.518055792999888,56.40387604400014],[-5.536203579999891,56.392238674000126],[-5.557972785999937,56.38646067900008],[-5.584624803999873,56.387030341000134],[-5.57982337099989,56.39642975500006],[-5.573963995999947,56.40289948100015],[-5.557972785999937,56.41429271000014],[-5.526519334999904,56.4135602890001],[-5.5123591789999,56.41543203300007],[-5.502756313999924,56.42112864800005]]],[[[-6.16002356699991,56.469549872000144],[-6.212473110999952,56.46784088700004],[-6.237456834999903,56.47003815300003],[-6.263661261999914,56.48322174700017],[-6.253244594999926,56.492865302000055],[-6.242054816999911,56.49957916900008],[-6.229603644999912,56.50332265800012],[-6.215321417999917,56.50364817900005],[-6.200754360999895,56.49494049700017],[-6.170562303999873,56.481146552000055],[-6.16002356699991,56.469549872000144]]],[[[-6.881581183999913,56.444281317],[-6.902455206999888,56.443752346],[-6.965199347999885,56.4598656270001],[-6.973988410999937,56.47150299700009],[-6.979725714999915,56.48712799700017],[-6.989898240999963,56.50364817900005],[-6.968129035999908,56.510484117000075],[-6.900502081999946,56.51666901200003],[-6.878081834999931,56.52130768400014],[-6.841135219999899,56.53473541900014],[-6.81859290299991,56.53782786700005],[-6.767201300999886,56.548570054000045],[-6.741851365999878,56.54783763200011],[-6.729237433999884,56.53034088700018],[-6.743316209999931,56.51780833500008],[-6.803822394999912,56.51361725500014],[-6.805572068999908,56.496893622000115],[-6.825510219999899,56.48729075700014],[-6.847727016999954,56.484808661000116],[-6.86929277299987,56.479641018],[-6.887521938999953,56.46210358300006],[-6.881581183999913,56.444281317]]],[[[-6.033518032999893,56.618841864],[-6.008778449999909,56.59870026200014],[-5.968251105999883,56.544663804000045],[-5.965199347999885,56.537665106000176],[-5.965158657999893,56.53107330900009],[-5.962554490999906,56.52610911700005],[-5.952137824999909,56.5241559920001],[-5.85220292899993,56.5241559920001],[-5.844146287999905,56.52057526200004],[-5.83690344999988,56.51463450700011],[-5.829457160999907,56.510809637000094],[-5.814035610999895,56.51666901200003],[-5.804188605999855,56.51776764500009],[-5.794341600999928,56.51666901200003],[-5.787342902999853,56.51361725500014],[-5.765207485999895,56.49420807500003],[-5.756662563999952,56.49005768400009],[-5.746937628999916,56.48843008000007],[-5.728423631999902,56.49017975500008],[-5.721831834999904,56.49005768400009],[-5.710357225999871,56.48484935100011],[-5.696766730999911,56.47565338700004],[-5.685536261999914,56.464056708000115],[-5.680897589999887,56.45184967700014],[-5.673451300999914,56.449693101000136],[-5.6588435539999,56.45172760600014],[-5.648426886999913,56.44773997599999],[-5.653553839999915,56.42796458500008],[-5.66185462099989,56.43138255400007],[-5.670033331999917,56.43309153899998],[-5.68830318899998,56.43480052299999],[-5.679554816999911,56.42796458500008],[-5.664947068999879,56.41388580900003],[-5.657622850999871,56.40009186400012],[-5.670318162999934,56.39378489799999],[-5.703033006999874,56.39337799700017],[-5.71743730399993,56.39736562700015],[-5.715646938999953,56.40810781500006],[-5.721669074999851,56.412339585],[-5.727894660999907,56.41429271000014],[-5.73468990799995,56.414780992000104],[-5.74233964799987,56.41429271000014],[-5.739084438999924,56.401190497000144],[-5.751088019999941,56.38939036700001],[-5.783924933999856,56.37335846600011],[-5.783924933999856,56.36591217700011],[-5.767974412999933,56.372748114000146],[-5.749989386999913,56.37714264500011],[-5.712228969999926,56.38019440300003],[-5.695952928999901,56.375433661000116],[-5.702707485999952,56.364569403000026],[-5.719960089999859,56.35276927300007],[-5.808705206999917,56.318915106000084],[-5.848215298999975,56.31362539300012],[-5.880116339999886,56.32558828300016],[-5.873687303999872,56.32855866100009],[-5.862700975999928,56.33515045800014],[-5.853505011999857,56.343695380000085],[-5.85220292899993,56.35285065300014],[-5.860422329999948,56.35834381700009],[-5.872670050999915,56.35773346600003],[-5.897206183999941,56.35285065300014],[-5.902333136999857,56.34967682500009],[-5.907785610999895,56.34259674700003],[-5.914784308999856,56.33551666900014],[-5.924183722999885,56.332342841000084],[-5.957875128999888,56.32807038],[-6.037464972999885,56.30524323100015],[-6.054554816999911,56.294501044000135],[-6.065988735999952,56.28921133000007],[-6.078521287999877,56.291083075000145],[-6.090931769999912,56.29572174700017],[-6.102365688999953,56.2982445330001],[-6.112538214999887,56.29621002800015],[-6.136301235999895,56.28693268400009],[-6.146962042999917,56.283921617000104],[-6.239816860999952,56.283921617000104],[-6.245757615999878,56.280747789000046],[-6.250355597999913,56.27374909100014],[-6.256459113999881,56.266669012000094],[-6.266835089999887,56.26349518400003],[-6.279286261999913,56.264105536],[-6.300038214999915,56.26801178600009],[-6.327504035999937,56.27724844000015],[-6.345611131999874,56.28831614799999],[-6.360178188999896,56.30361562700013],[-6.366118943999908,56.32217031500015],[-6.357004360999923,56.33633047100007],[-6.335438605999911,56.344549872000165],[-6.310292120999918,56.34735748900012],[-6.290394660999937,56.34540436400009],[-6.274525519999912,56.334865627],[-6.261219855999883,56.32029857],[-6.247222459999931,56.311672268000095],[-6.228911912999877,56.318752346000124],[-6.228911912999877,56.32558828300016],[-6.23680579299986,56.326605536000116],[-6.241118943999936,56.32827383000013],[-6.244536912999934,56.33026764500009],[-6.249989386999886,56.332342841000084],[-6.231760219999898,56.33690013200014],[-6.18663489499994,56.33124420800006],[-6.170887824999909,56.33576080900009],[-6.153920050999915,56.34479401200012],[-6.08495032499988,56.35285065300014],[-6.039906378999916,56.371039130000135],[-6.020822719999927,56.38202545799999],[-6.026966925999915,56.387030341000134],[-6.046945766999983,56.38397858300014],[-6.105458136999857,56.36591217700011],[-6.15404212099989,56.35895416900006],[-6.178944464999915,56.35993073100011],[-6.198557094999898,56.36961497600008],[-6.203236456999917,56.380316473],[-6.198841925999915,56.39032623900008],[-6.189198370999861,56.39777252800015],[-6.178049282999922,56.40062083499999],[-6.164784308999913,56.40253327000015],[-6.157215949999852,56.40737539300012],[-6.142648891999926,56.42796458500008],[-6.139637824999936,56.43524811400009],[-6.135121222999885,56.44232819200014],[-6.126535610999952,56.448431708000115],[-6.11693274599989,56.450384833000086],[-6.081532355999883,56.448431708000115],[-6.021839972999885,56.464097398000106],[-6.009836391999953,56.469549872000144],[-6.004017706999917,56.47968170799999],[-6.00328528599988,56.48940664300015],[-6.007476365999906,56.49762604400014],[-6.016672329999892,56.50364817900005],[-6.081125454999949,56.485052802000055],[-6.102365688999953,56.48322174700017],[-6.109974738999881,56.480698960000055],[-6.118478969999927,56.476263739],[-6.12743079299986,56.47435130400013],[-6.136789516999896,56.47943756700006],[-6.153065558999913,56.500067450000174],[-6.162098761999914,56.509222723000065],[-6.174305792999917,56.51666901200003],[-6.194935675999915,56.52334219],[-6.288482225999871,56.532294012000115],[-6.307728644999912,56.53729889500006],[-6.324330206999889,56.54425690300015],[-6.338205532999979,56.55206940300015],[-6.290394660999937,56.571966864000146],[-6.298695441999911,56.581244208],[-6.319203253999888,56.59398021000005],[-6.32518469999988,56.60610586100013],[-6.28844153599988,56.60797760600011],[-6.272124803999873,56.61220937700013],[-6.256255662999934,56.62034739800004],[-6.247425910999879,56.612616278000026],[-6.238636847999913,56.60858795800005],[-6.23021399599986,56.60858795800005],[-6.222767706999889,56.612941799000154],[-6.220285610999952,56.632269598000086],[-6.190744594999899,56.64492422100015],[-6.151275193999936,56.65180084800006],[-6.119048631999902,56.653876044000086],[-6.105336066999882,56.64850495000003],[-6.058257615999878,56.64020416900014],[-6.05992591099988,56.635687567],[-6.062652147999927,56.62482330900012],[-6.064442511999914,56.62034739800004],[-6.033518032999893,56.618841864]]],[[[-6.564116990999906,56.59870026200014],[-6.616322394999911,56.57518138199999],[-6.633046027999853,56.571966864000146],[-6.657215949999851,56.57782623900009],[-6.668934699999851,56.5777855490001],[-6.67398027299987,56.56854889500012],[-6.67788652299987,56.55825429900001],[-6.686838344999899,56.56378815300003],[-6.696278449999909,56.57599518400012],[-6.701893683999913,56.58563873900009],[-6.674468553999872,56.58844635600003],[-6.648101365999963,56.60285065300009],[-6.602894660999908,56.64362213700015],[-6.591379360999895,56.651841539000074],[-6.55923417899993,56.66526927300005],[-6.535633917999888,56.670843817000055],[-6.505848761999886,56.68537018400009],[-6.489654100999928,56.68866608300014],[-6.462310350999871,56.69122955900003],[-6.4525447259999,56.688421942],[-6.459217902999882,56.67812734600007],[-6.468739386999856,56.66815827000009],[-6.482533331999889,56.647894598000065],[-6.489654100999928,56.64020416900014],[-6.497222459999875,56.63434479400011],[-6.504953579999892,56.63007233299999],[-6.514271613999937,56.62742747600011],[-6.527251756999931,56.626532294000114],[-6.564116990999906,56.59870026200014]]],[[[-7.381988084999904,56.98753489800008],[-7.373524542999888,56.98285553600006],[-7.402414516999897,56.98338450700014],[-7.411040818999907,56.97972239799999],[-7.419178839999915,56.973334052000055],[-7.427235480999854,56.96857330900015],[-7.435047980999856,56.965277411000116],[-7.442372199999852,56.96295807500014],[-7.436838344999926,56.95368073100009],[-7.445301886999858,56.947088934000035],[-7.460804816999882,56.943182684000035],[-7.476551886999942,56.941880601000136],[-7.541411912999934,56.948716539000046],[-7.556752081999889,56.95307038000014],[-7.556223110999894,56.96263255400013],[-7.544911261999913,56.9723167990001],[-7.528065558999912,56.97662995000009],[-7.516509568999879,56.98118724200005],[-7.51158606699991,56.99164459800012],[-7.514027472999942,57.00291575700011],[-7.524322068999878,57.010199286000116],[-7.499908006999931,57.02008698100003],[-7.475697394999941,57.02301666900014],[-7.457102016999926,57.031561591000084],[-7.449208136999856,57.05857982000013],[-7.444691535999907,57.05853913000014],[-7.441395636999886,57.05719635600015],[-7.434966600999871,57.05174388200011],[-7.428130662999934,57.05133698100009],[-7.4229630199999,57.05011627800009],[-7.418690558999912,57.04804108300006],[-7.414418097999913,57.04490794499999],[-7.428781704999892,57.02773672100007],[-7.434966600999871,57.02383047100007],[-7.402821417999888,57.014634507],[-7.393950975999957,57.010199286000116],[-7.389068162999878,57.003607489000146],[-7.38609778599988,56.995306708000086],[-7.381988084999904,56.98753489800008]]],[[[-6.269886847999885,57.0175641950001],[-6.269886847999885,57.010199286000116],[-6.243234829999948,57.010199286000116],[-6.256743943999935,56.97378164300015],[-6.276031053999873,56.95311107000013],[-6.303618943999879,56.94399648600013],[-6.341867641999926,56.941880601000136],[-6.359771287999877,56.947333075000174],[-6.376128709999904,56.971177476000044],[-6.390288865999906,56.97662995000009],[-6.405384894999912,56.98053620000009],[-6.436756964999859,56.998480536000145],[-6.455474412999933,57.003973700000145],[-6.395253058999884,57.04193756700009],[-6.364247199999851,57.05565013200011],[-6.32518469999988,57.05857982000013],[-6.272938605999883,57.040228583000086],[-6.25096594999988,57.02655670800014],[-6.269886847999885,57.0175641950001]]],[[[-6.51593990799995,57.05068594000015],[-6.548247850999871,57.047593492000075],[-6.580433722999913,57.048407294000086],[-6.606353318999908,57.05174388200011],[-6.590809699999909,57.058986721000124],[-6.556304490999906,57.07013580900015],[-6.537464972999942,57.072821356000034],[-6.52586829299986,57.06712474200004],[-6.50153561099998,57.06366608300006],[-6.489654100999928,57.05857982000013],[-6.51593990799995,57.05068594000015]]],[[[-5.925445115999906,57.291693427000084],[-5.958607550999915,57.28449127800014],[-5.98485266799986,57.290432033000066],[-6.007801886999857,57.303615627000035],[-6.01390540299991,57.317450262000115],[-5.989979620999861,57.32550690300015],[-5.955718553999901,57.32160065300014],[-5.929351365999906,57.307196356000084],[-5.925445115999906,57.291693427000084]]],[[[-7.353016730999912,57.40802643400014],[-7.263579881999932,57.37392812700015],[-7.272084113999938,57.370266018],[-7.279123501999918,57.36994049700017],[-7.298410610999952,57.37392812700015],[-7.298410610999952,57.36709219000012],[-7.27635657499988,57.36473216399999],[-7.244862433999856,57.348456122000144],[-7.222645636999885,57.34658437700006],[-7.222645636999885,57.33978913000006],[-7.250355597999884,57.33185455900018],[-7.271799282999922,57.33746979400008],[-7.290150519999883,57.347398179],[-7.33161373599998,57.360907294000135],[-7.35138912699989,57.37669505400011],[-7.371083136999857,57.387600002000106],[-7.393950975999957,57.380764065000065],[-7.387766079999891,57.37750885600012],[-7.38109290299991,57.37303294500004],[-7.375721808999884,57.368109442],[-7.373524542999888,57.36359284100014],[-7.37047278599988,57.35512929900001],[-7.363189256999874,57.353216864000146],[-7.354156053999872,57.35374583500011],[-7.346180792999917,57.35276927300005],[-7.32201087099989,57.34658437700006],[-7.317941860999922,57.34446849200007],[-7.30528723899988,57.33234284100016],[-7.290272589999859,57.32831452],[-7.259388800999886,57.328029690000065],[-7.243763800999914,57.32550690300015],[-7.232004360999923,57.31879303600003],[-7.222645636999885,57.31061432500009],[-7.211822068999908,57.30487702000012],[-7.195423956999889,57.305609442000055],[-7.20034746,57.29096100500006],[-7.209706183999884,57.28546784100002],[-7.221424933999884,57.28213125200009],[-7.233225063999952,57.27431875200001],[-7.239165818999879,57.2652855490001],[-7.249582485999951,57.24469635600015],[-7.256743943999908,57.23672109600001],[-7.276112433999913,57.23175690300015],[-7.353016730999912,57.242905992000075],[-7.353016730999912,57.23672109600001],[-7.28880774599989,57.22589752800012],[-7.271066860999895,57.216253973000114],[-7.26219641799986,57.200873114],[-7.257720506999873,57.17975495000009],[-7.25991777299987,57.15981679900001],[-7.271066860999895,57.14793528900004],[-7.288441535999879,57.153998114000146],[-7.307606574999852,57.15582916900003],[-7.346180792999917,57.15477122600008],[-7.346180792999917,57.14793528900004],[-7.328439907999922,57.14618561400006],[-7.292469855999854,57.14887116100011],[-7.277251756999874,57.14793528900004],[-7.259999152999853,57.140041408000066],[-7.248402472999941,57.129461981000034],[-7.235951300999915,57.12116120000014],[-7.215891079999948,57.120062567],[-7.215891079999948,57.11383698100003],[-7.239125128999887,57.10053131700012],[-7.321685350999871,57.10993073100006],[-7.353016730999912,57.09955475500014],[-7.381988084999904,57.118353583],[-7.390695766999897,57.129055080000015],[-7.416656053999901,57.18158600500006],[-7.420399542999916,57.19773997600011],[-7.414418097999913,57.209418036000116],[-7.414418097999913,57.216253973000114],[-7.431467251999948,57.22943756700008],[-7.442290818999879,57.23460521],[-7.455433722999913,57.23672109600001],[-7.442738410999964,57.24477773600013],[-7.434966600999871,57.251898505],[-7.421945766999954,57.270900783000094],[-7.417307094999927,57.28143952000014],[-7.414947068999878,57.290106512000065],[-7.409982876999948,57.295965887000094],[-7.39708411399991,57.298163153000175],[-7.389719204999921,57.311957098000086],[-7.401519334999904,57.34235260600015],[-7.428130662999934,57.387600002000106],[-7.408436652999909,57.39557526200004],[-7.362863735999951,57.4078636740001],[-7.353016730999912,57.40802643400014]]],[[[-7.292469855999854,57.48529694200009],[-7.284494594999983,57.482855536000145],[-7.274728969999928,57.48224518400017],[-7.263579881999932,57.48309967699999],[-7.265288865999935,57.478745835],[-7.265736456999917,57.478013414000074],[-7.266997850999927,57.47817617400012],[-7.271066860999895,57.47626373900005],[-7.262521938999953,57.47211334800012],[-7.254261847999885,57.47284577000006],[-7.245757615999934,57.47516510600012],[-7.236317511999914,57.47626373900005],[-7.229481574999909,57.474554755000064],[-7.202137824999851,57.46263255400011],[-7.2084041009999,57.45644765800016],[-7.222035285999937,57.460923570000105],[-7.244699673999889,57.449652411000116],[-7.263579881999932,57.44896067899999],[-7.258208787999876,57.43911367400006],[-7.249663865999935,57.43524811400006],[-7.226429816999911,57.435288804000045],[-7.2120255199999,57.43219635600014],[-7.20409094999988,57.42544179900012],[-7.205433722999884,57.41860586100001],[-7.292062954999921,57.404730536000116],[-7.318267381999874,57.40802643400014],[-7.396148240999935,57.43398672100015],[-7.4076228509999,57.445624091000134],[-7.402699347999913,57.46434153900013],[-7.389271613999939,57.47988515800012],[-7.369618292999888,57.48932526200004],[-7.346180792999917,57.48993561400001],[-7.334462042999917,57.485093492000125],[-7.322132941999882,57.482896226000136],[-7.309803839999915,57.48411692900005],[-7.298410610999952,57.48993561400001],[-7.292469855999854,57.48529694200009]]],[[[-5.982533331999889,57.49746328300016],[-5.986724412999905,57.48224518400017],[-6.003041144999941,57.452826239],[-6.017648891999954,57.418198960000026],[-6.016672329999892,57.387600002000106],[-6.008900519999883,57.38019440300009],[-5.99510657499988,57.363714911000116],[-5.989491339999887,57.347316799],[-6.006459113999938,57.33978913000006],[-6.022857225999871,57.33624909100017],[-6.038685675999886,57.32977936400005],[-6.054798956999946,57.32640208500005],[-6.071929490999906,57.33234284100016],[-6.069243943999908,57.339544989],[-6.067616339999887,57.34247467700011],[-6.064442511999914,57.34658437700006],[-6.075428839999887,57.35504791900003],[-6.07713782499988,57.371771552000055],[-6.069081183999855,57.43610260600015],[-6.061634894999884,57.45270416900002],[-6.04552161399991,57.46063873900009],[-6.016672329999892,57.46263255400011],[-6.016672329999892,57.469427802000055],[-6.023589647999898,57.47418854400014],[-6.029042120999918,57.47939687700012],[-6.037098761999857,57.48993561400001],[-6.02586829299986,57.49624258000012],[-6.015858527999882,57.49677155200011],[-5.995594855999855,57.48993561400001],[-5.995594855999855,57.49746328300016],[-6.009836391999953,57.51105377800011],[-6.000884568999936,57.50971100500011],[-5.993316209999904,57.50702545800014],[-5.987212693999907,57.502875067],[-5.982533331999889,57.49746328300016]]],[[[-5.968006964999859,57.53392161700013],[-5.968251105999883,57.51788971600003],[-5.983713344999898,57.52236562700009],[-5.989979620999861,57.53294505400005],[-5.98729407499988,57.54629140800015],[-5.975697394999884,57.55882396000006],[-5.980091925999943,57.56146881700015],[-5.980376756999873,57.562445380000106],[-5.982533331999889,57.56631094000012],[-5.975697394999884,57.57233307500003],[-5.968658006999902,57.576564846000146],[-5.961903449999852,57.577297268000095],[-5.955189581999917,57.572495835],[-5.968006964999859,57.53392161700013]]],[[[-13.688588019999912,57.59625885600009],[-13.690419074999909,57.59625885600009],[-13.691314256999902,57.59650299700006],[-13.691314256999902,57.59715403899998],[-13.690419074999909,57.59780508000012],[-13.688588019999912,57.59780508000012],[-13.687652147999927,57.59715403899998],[-13.687652147999927,57.59686920800006],[-13.688588019999912,57.59625885600009]]],[[[-7.189116990999934,57.65509674700017],[-7.172840949999909,57.64956289300006],[-7.142567511999914,57.6581078150001],[-7.129383917999888,57.65289948100009],[-7.114572719999899,57.6523298200001],[-7.092600063999896,57.65208567900008],[-7.074086066999882,57.646389065],[-7.065052863999881,57.63397858300006],[-7.075428839999859,57.628363348000065],[-7.092355923999946,57.61151764500006],[-7.099191860999951,57.60732656500012],[-7.113107876999948,57.60871002800012],[-7.123117641999926,57.61570872599999],[-7.130767381999874,57.623480536],[-7.137318488999938,57.627142645000156],[-7.148426886999885,57.629339911000145],[-7.171131964999915,57.641424872000144],[-7.215891079999948,57.641424872000144],[-7.215891079999948,57.63397858300006],[-7.204253709999931,57.63336823100012],[-7.197255011999885,57.63125234600002],[-7.196156378999916,57.62718333500013],[-7.202137824999851,57.62091705900009],[-7.202137824999851,57.613470770000035],[-7.173247850999928,57.61465078300013],[-7.164418097999885,57.60993073100003],[-7.161203579999921,57.596380927000084],[-7.154286261999914,57.587347723000065],[-7.138050910999879,57.58698151200003],[-7.106027798999889,57.59296295800005],[-7.125599738999938,57.571112372000115],[-7.149973110999923,57.56171295799999],[-7.2084041009999,57.55882396000006],[-7.215728318999908,57.5573591170001],[-7.230213995999861,57.55239492400015],[-7.236317511999914,57.55206940300004],[-7.243275519999913,57.55609772300009],[-7.252064581999889,57.56928131700015],[-7.256743943999908,57.572495835],[-7.269886847999941,57.570542710000055],[-7.312082485999895,57.55206940300004],[-7.312082485999895,57.54458242400015],[-7.240061001999948,57.54458242400015],[-7.181304490999877,57.55390045799999],[-7.161203579999921,57.55206940300004],[-7.144154425999943,57.54852936400015],[-7.137684699999852,57.54511139500012],[-7.133900519999941,57.53839752800008],[-7.137277798999946,57.53213125200013],[-7.157541469999956,57.51105377800011],[-7.199208136999914,57.51268138200014],[-7.2198380199999,57.51080963700014],[-7.236317511999914,57.50360748900014],[-7.25251217399989,57.510321356000176],[-7.287464972999884,57.50877513200013],[-7.30528723899988,57.51105377800011],[-7.314686652999882,57.514593817],[-7.318470831999917,57.517035223000114],[-7.32998613199996,57.52887604400009],[-7.333485480999856,57.534328518000116],[-7.338124152999883,57.53974030200008],[-7.346180792999917,57.54458242400015],[-7.337554490999906,57.54507070500013],[-7.318267381999874,57.55206940300004],[-7.351226365999935,57.55369700700005],[-7.411610480999855,57.57514069200009],[-7.442372199999852,57.57929108300011],[-7.449208136999856,57.5729027360001],[-7.455922003999916,57.56842682500004],[-7.462880011999886,57.56631094000012],[-7.47085527299987,57.56720612200002],[-7.483265753999888,57.57147858300011],[-7.499419725999928,57.575018622000115],[-7.544829881999931,57.59296295800005],[-7.544829881999931,57.59979889500009],[-7.522206183999884,57.608384507],[-7.506581183999885,57.62555573100012],[-7.493031378999916,57.645412502000035],[-7.476551886999942,57.66193268400009],[-7.455311652999852,57.655462958],[-7.387115037999933,57.66193268400009],[-7.387115037999933,57.65509674700017],[-7.394927537999934,57.65444570500013],[-7.414418097999913,57.64826080900014],[-7.396555141999953,57.63532135600015],[-7.366851365999906,57.65143463700004],[-7.335357225999899,57.67609284100002],[-7.312082485999895,57.68854401200003],[-7.312082485999895,57.682359117000075],[-7.31818600199989,57.678859768000095],[-7.32286536399991,57.67475006700012],[-7.332508917999859,57.66193268400009],[-7.277902798999917,57.64956289300006],[-7.256743943999908,57.64826080900014],[-7.256743943999908,57.65509674700017],[-7.263417120999861,57.65599192900007],[-7.277251756999874,57.66193268400009],[-7.255970831999888,57.66693756700014],[-7.209055141999926,57.6860212260001],[-7.181711391999953,57.68854401200003],[-7.169178839999858,57.6791852890001],[-7.165394660999937,57.66986725500005],[-7.171538865999906,57.661525783000094],[-7.189116990999934,57.65509674700017]]],[[[-6.310902472999885,57.70282623900011],[-6.302235480999911,57.692368882000046],[-6.293324347999942,57.6860212260001],[-6.269886847999885,57.675523179000045],[-6.260487433999855,57.66864655200014],[-6.236073370999918,57.646185614000146],[-6.23265540299991,57.641424872000144],[-6.18797766799986,57.62091705900009],[-6.168853318999878,57.60761139500007],[-6.158355272999898,57.59784577000012],[-6.153879360999922,57.58954498900014],[-6.14468339799987,57.520005601000044],[-6.135121222999885,57.49005768400017],[-6.133371548999889,57.47626373900005],[-6.136057094999956,57.46133047100013],[-6.145090298999946,57.43862539300007],[-6.146962042999917,57.42511627800009],[-6.15249589799987,57.41754791900014],[-6.178863084999932,57.403550522999986],[-6.18797766799986,57.39435455900013],[-6.175852016999954,57.40082428600011],[-6.159250454999892,57.407375393],[-6.14159094999988,57.41079336100001],[-6.126535610999952,57.40802643400014],[-6.117909308999856,57.397772528000026],[-6.123524542999859,57.38825104400003],[-6.134103969999899,57.380031643000116],[-6.140126105999911,57.37392812700015],[-6.13524329299986,57.357367255000085],[-6.120757615999906,57.34707265800016],[-6.105702277999882,57.33966705900018],[-6.099232550999886,57.33234284100016],[-6.106597459999875,57.323472398000135],[-6.140288865999878,57.312445380000085],[-6.153879360999922,57.305609442000055],[-6.068186001999948,57.31183502800012],[-6.045399542999944,57.30829498900014],[-6.041086391999926,57.30011627800003],[-6.052886522999898,57.29100169500004],[-6.078114386999857,57.28449127800014],[-6.078114386999857,57.27765534100003],[-6.050852016999954,57.27924225500005],[-6.028879360999952,57.28534577000015],[-6.008452928999901,57.28676992400004],[-5.986236131999931,57.27431875200001],[-5.976673956999946,57.27033112200003],[-5.963449673999889,57.26947663000011],[-5.938140428999873,57.270900783000094],[-5.9232478509999,57.26691315300012],[-5.91380774599989,57.25787995000012],[-5.907134568999935,57.24848053600009],[-5.900624152999853,57.242905992000075],[-5.886219855999883,57.24209219000006],[-5.877308722999942,57.246812242000075],[-5.87132727799991,57.25324127800017],[-5.865834113999881,57.25714752800017],[-5.824330206999889,57.25617096600011],[-5.795806443999907,57.271795966000084],[-5.76789303299995,57.27741120000009],[-5.738514777999852,57.27728913000011],[-5.721831834999904,57.26463450700014],[-5.647368943999936,57.26463450700014],[-5.663889126999919,57.239813544000086],[-5.663482225999927,57.2333031270001],[-5.659087693999935,57.222479559000085],[-5.662953253999945,57.21271393400015],[-5.670643683999856,57.20465729400002],[-5.690907355999882,57.189520575000024],[-5.727284308999856,57.172796942],[-5.74233964799987,57.1684431010001],[-5.782053188999895,57.16624583500011],[-5.788970506999873,57.159491278000175],[-5.79076087099986,57.13739655199999],[-5.800363735999952,57.123724677000055],[-5.821441209999874,57.114447333],[-5.842640753999945,57.10797760600009],[-5.85220292899993,57.10297272300014],[-5.860096808999913,57.09536367400001],[-5.918853318999908,57.05011627800009],[-5.934925910999908,57.04120514500015],[-5.953439907999922,57.03412506700009],[-6.006743943999879,57.028387762000115],[-6.020822719999927,57.03188711100002],[-6.030384894999911,57.04490794499999],[-6.027251756999931,57.06216054900001],[-6.000233527999882,57.08392975500006],[-6.003041144999941,57.09271881700012],[-6.003041144999941,57.09955475500014],[-5.997059699999909,57.10175202000012],[-5.994211391999897,57.10455963700018],[-5.989979620999861,57.11383698100003],[-5.986927863999881,57.118231512000115],[-5.980091925999943,57.12311432500009],[-5.961822068999879,57.142157294000086],[-5.952788865999878,57.148830471000124],[-5.94155839799987,57.15477122600008],[-5.845366990999934,57.18146393400009],[-5.845366990999934,57.188299872000115],[-5.872954881999931,57.17999909100003],[-5.900868292999888,57.17552317900007],[-5.986236131999931,57.174627997000165],[-5.991688605999883,57.17719147300009],[-5.993072068999936,57.18317291900008],[-5.993316209999904,57.19017161699999],[-5.995594855999855,57.19574616100009],[-6.01927649599989,57.21759674700003],[-6.03221594999988,57.22650788000006],[-6.044016079999949,57.229925848000065],[-6.039784308999856,57.21938711100002],[-6.035389777999853,57.211493231000034],[-6.023508266999897,57.19574616100009],[-6.034087693999936,57.181097723000065],[-6.040842251999891,57.17413971600008],[-6.050852016999954,57.1684431010001],[-6.044016079999949,57.16103750200001],[-6.056263800999914,57.152899481000084],[-6.064605272999898,57.141750393000095],[-6.073841925999943,57.13178131700009],[-6.088612433999856,57.12742747599999],[-6.101429816999882,57.135199286],[-6.107167120999861,57.153021552000084],[-6.111195441999911,57.17328522300009],[-6.112904425999914,57.188299872000115],[-6.120961066999939,57.19379303600014],[-6.126454230999883,57.19521719],[-6.132069464999887,57.19318268400018],[-6.140126105999911,57.188299872000115],[-6.147450324999908,57.19452545800005],[-6.155588344999927,57.198879299000154],[-6.164458787999876,57.20136139500009],[-6.174305792999917,57.20197174700014],[-6.174305792999917,57.19574616100009],[-6.159820115999962,57.18764883000016],[-6.177154100999928,57.18121979400014],[-6.318348761999886,57.16103750200001],[-6.318348761999886,57.1684431010001],[-6.306996222999884,57.17389557500006],[-6.276722785999908,57.19574616100009],[-6.276722785999908,57.20197174700014],[-6.295318162999905,57.20237864800005],[-6.313099738999881,57.19989655200011],[-6.329986131999873,57.19501373900006],[-6.345611131999874,57.188299872000115],[-6.364735480999855,57.20453522300015],[-6.379790818999936,57.22308991100006],[-6.368885870999889,57.22577545800014],[-6.359486456999946,57.22943756700008],[-6.351714647999955,57.234808661000145],[-6.345611131999874,57.242905992000075],[-6.391428188999953,57.24054596600003],[-6.408192511999886,57.24335358300006],[-6.455474412999933,57.27765534100003],[-6.457997199999852,57.28099192900005],[-6.462961391999897,57.290432033000066],[-6.466053839999886,57.29474518400018],[-6.471180792999887,57.29901764500009],[-6.47557532499988,57.301418361000124],[-6.479156053999873,57.304754950000145],[-6.482167120999861,57.31183502800012],[-6.4361873039999,57.32973867400007],[-6.416411912999877,57.33454010600015],[-6.394032355999855,57.33234284100016],[-6.376332160999937,57.32379791900014],[-6.358509894999883,57.31183502800012],[-6.337635870999918,57.30149974200011],[-6.310902472999885,57.298163153000175],[-6.323882615999878,57.31142812700001],[-6.386586066999882,57.33978913000006],[-6.399525519999884,57.348456122000144],[-6.40615800699993,57.35154857000014],[-6.417632615999906,57.35276927300005],[-6.428822394999912,57.35150788000014],[-6.450550910999879,57.34650299700008],[-6.462961391999897,57.34658437700006],[-6.448638475999928,57.35276927300005],[-6.448638475999928,57.36025625200001],[-6.456613735999951,57.361151434000085],[-6.475941535999908,57.36709219000012],[-6.468739386999856,57.3685570330001],[-6.465809699999851,57.370021877000156],[-6.462961391999897,57.37392812700015],[-6.472157355999883,57.376532294000135],[-6.478871222999913,57.381903387000094],[-6.480824347999885,57.390082098000015],[-6.475941535999908,57.40119049700005],[-6.490834113999938,57.39899323100014],[-6.510609503999888,57.38556549700014],[-6.523793097999913,57.380764065000065],[-6.518706834999903,57.38955312700013],[-6.517648891999954,57.39887116100009],[-6.521229620999918,57.4078636740001],[-6.530629035999937,57.415472723000114],[-6.538929816999911,57.402329819999984],[-6.550404425999972,57.39801666900017],[-6.562123175999942,57.39545319200006],[-6.571522589999887,57.387600002000106],[-6.573150193999907,57.37612539300012],[-6.562123175999942,57.35785553600006],[-6.564116990999906,57.34658437700006],[-6.580555792999888,57.33881256700008],[-6.67247473899991,57.35594310100011],[-6.695952928999873,57.36440664300015],[-6.714751756999931,57.37661367400013],[-6.722401495999861,57.39093659100011],[-6.731678839999915,57.416978257],[-6.773182745999917,57.434068101000136],[-6.783843553999929,57.45644765800016],[-6.722401495999861,57.45644765800016],[-6.736317511999857,57.465155341000056],[-6.745228644999884,57.475897528000154],[-6.7471410799999,57.48794179900007],[-6.739735480999854,57.50055573100006],[-6.726307745999861,57.51141998900012],[-6.7159317699999,57.51422760600017],[-6.706450975999871,57.510931708000136],[-6.653553839999887,57.468695380000106],[-6.647328253999945,57.459540106000034],[-6.638091600999871,57.4532738300001],[-6.620025193999936,57.44550202000009],[-6.606800910999907,57.44391510600015],[-6.612538214999886,57.45644765800016],[-6.612538214999886,57.46263255400011],[-6.608265753999888,57.46458567900008],[-6.60415605399993,57.46775950700014],[-6.59947669199991,57.469427802000055],[-6.616688605999911,57.480902411],[-6.619374152999909,57.48309967699999],[-6.622222459999932,57.48639557500003],[-6.631255662999962,57.49359772300015],[-6.633046027999853,57.49746328300016],[-6.630604620999918,57.50177643400014],[-6.621408657999921,57.50385163000008],[-6.619374152999909,57.50731028899999],[-6.611439581999945,57.512193101000044],[-6.593617316999882,57.510972398000135],[-6.564116990999906,57.50360748900014],[-6.573963995999918,57.52171458500005],[-6.599354620999947,57.53754303600009],[-6.62987219999988,57.54852936400015],[-6.654774542999917,57.55206940300004],[-6.64159094999988,57.56195709800012],[-6.631011522999898,57.576808986000096],[-6.628895636999913,57.59113190300017],[-6.640451626999918,57.59979889500009],[-6.640451626999918,57.60732656500012],[-6.619781053999901,57.60716380400008],[-6.605620897999898,57.59955475500014],[-6.594309048999918,57.59052155200011],[-6.572255011999913,57.58250560099999],[-6.568430141999897,57.57428620000017],[-6.56688391799986,57.56509023600001],[-6.564116990999906,57.55882396000006],[-6.554595506999902,57.55247630400014],[-6.547759568999879,57.54954661700011],[-6.501210089999858,57.535549221000146],[-6.49038652299987,57.53025950700009],[-6.479074673999889,57.520982164000095],[-6.464914516999954,57.512518622000165],[-6.451649542999917,57.51333242400009],[-6.43765214799987,57.5172386740001],[-6.420765753999973,57.51788971600003],[-6.443470831999917,57.488104559000035],[-6.43350175699993,57.486476955],[-6.412098761999886,57.50136953300016],[-6.400257941999911,57.520982164000095],[-6.386952277999882,57.51727936400008],[-6.310902472999885,57.46263255400011],[-6.310902472999885,57.469427802000055],[-6.31578528599988,57.472805080000064],[-6.320952928999873,57.479315497000144],[-6.32518469999988,57.48309967699999],[-6.324615037999905,57.4968122420001],[-6.338531053999901,57.509466864000096],[-6.372954881999931,57.53156159100017],[-6.389556443999879,57.55247630400014],[-6.385853644999941,57.56264883000007],[-6.372425910999937,57.57257721600016],[-6.359852667999859,57.59296295800005],[-6.371937628999973,57.59186432500012],[-6.383371548999918,57.592922268000066],[-6.393137173999946,57.595648505000135],[-6.400257941999911,57.59979889500009],[-6.395863410999937,57.613470770000035],[-6.401112433999913,57.62152741100014],[-6.40953528599988,57.62734609600001],[-6.414540167999917,57.63397858300006],[-6.415679490999935,57.645819403000026],[-6.41344153599988,57.64923737200003],[-6.406605597999942,57.65033600500008],[-6.366566535999908,57.664252020000056],[-6.359852667999859,57.66811758000007],[-6.351185675999885,57.680121161],[-6.345285610999922,57.692206122000094],[-6.337961391999925,57.699164130000085],[-6.32518469999988,57.69599030200011],[-6.317494269999884,57.697699286000116],[-6.314279751999919,57.699164130000085],[-6.310902472999885,57.70282623900011]]],[[[-7.170033331999975,57.71515534100008],[-7.198963995999891,57.70795319200015],[-7.222645636999885,57.709662177000055],[-7.180165167999917,57.734686591000134],[-7.161203579999921,57.73700592700011],[-7.152007615999935,57.726304429000024],[-7.170033331999975,57.71515534100008]]],[[[-8.56895911399991,57.807562567],[-8.590891079999949,57.804754950000145],[-8.61070716099988,57.81273021],[-8.621001756999874,57.83319733300005],[-8.60529537699992,57.82640208500015],[-8.569081183999884,57.823675848000065],[-8.552235480999883,57.818915106000155],[-8.56895911399991,57.807562567]]],[[[-6.997385219999927,57.915106512000094],[-6.997059699999909,57.89354075699999],[-7.0091853509999,57.889593817000026],[-7.044585740999906,57.9020856790001],[-7.048085089999887,57.89081452000011],[-7.05516516799986,57.88418203300016],[-7.065500454999949,57.88104889500009],[-7.079335089999859,57.88031647300006],[-7.077056443999879,57.88861725500014],[-7.076771613999938,57.890692450000145],[-7.07787024599989,57.891180731000055],[-7.079335089999859,57.89468008000013],[-7.037749803999873,57.91632721600002],[-7.015533006999931,57.92194245000003],[-6.997385219999927,57.915106512000094]]],[[[-6.861154751999948,58.253363348000114],[-6.828928188999896,58.23379140800016],[-6.81859290299991,58.237250067000055],[-6.809641079999977,58.23224518400013],[-6.801991339999859,58.22614166900003],[-6.795765753999887,58.21881745000004],[-6.791249152999939,58.20994700700008],[-6.873280402999853,58.20994700700008],[-6.873280402999853,58.216782945],[-6.862863735999952,58.21645742400006],[-6.85960852799991,58.216782945],[-6.85960852799991,58.223049221000124],[-6.872222459999904,58.22679271000008],[-6.882313605999855,58.236273505000085],[-6.886219855999854,58.24762604400014],[-6.880034959999875,58.25775788000012],[-6.861154751999948,58.253363348000114]]],[[[-6.195546027999882,58.35626862200011],[-6.182240363999881,58.353664455000015],[-6.167469855999883,58.353949286000145],[-6.167469855999883,58.34650299700017],[-6.188832160999936,58.340806382],[-6.233713344999956,58.32282135600014],[-6.249989386999886,58.312974351000136],[-6.244984503999945,58.304144598000065],[-6.246408657999922,58.29755280199999],[-6.253814256999902,58.29336172100006],[-6.266835089999887,58.29189687700002],[-6.278675910999936,58.28872304900012],[-6.288238084999932,58.27460358300011],[-6.317860480999883,58.26829661700007],[-6.319935675999915,58.260931708000086],[-6.316965298999889,58.252142645],[-6.318348761999886,58.24469635600003],[-6.327463344999956,58.23973216399998],[-6.33849036399991,58.237616278000175],[-6.366118943999908,58.237250067000055],[-6.347727016999953,58.22113678600009],[-6.310861782999893,58.21503327],[-6.270904100999956,58.21649811400006],[-6.243234829999948,58.223049221000124],[-6.194813605999855,58.250921942],[-6.179758266999926,58.25556061400012],[-6.161122199999851,58.258978583000115],[-6.15070553299995,58.25836823100015],[-6.16002356699991,58.250921942],[-6.16002356699991,58.24469635600003],[-6.153879360999922,58.24469635600003],[-6.158558722999942,58.239813544000135],[-6.163319464999858,58.233587958],[-6.167469855999883,58.23041413000014],[-6.164865688999896,58.226752020000085],[-6.16002356699991,58.216782945],[-6.186431443999908,58.20990631700008],[-6.195220506999874,58.20648834800006],[-6.20213782499988,58.20197174700003],[-6.211659308999856,58.192287502000156],[-6.215321417999917,58.1894391950001],[-6.233550584999904,58.18427155200011],[-6.247425910999879,58.18545156500015],[-6.276722785999908,58.19627513200014],[-6.29356848899991,58.19936758000004],[-6.338205532999979,58.19627513200014],[-6.3548884759999,58.19936758000004],[-6.384673631999931,58.20970286700013],[-6.400257941999911,58.20994700700008],[-6.377023891999897,58.173529364],[-6.366118943999908,58.162095445000055],[-6.374501105999883,58.157660223000065],[-6.37804114499994,58.153631903000125],[-6.377268032999922,58.14862702000006],[-6.372954881999931,58.141058661000116],[-6.390695766999926,58.13353099200008],[-6.441232876999919,58.12738678600009],[-6.474720831999889,58.10521067900011],[-6.489654100999928,58.10008372600002],[-6.499094204999949,58.10040924700003],[-6.514393683999913,58.106146552],[-6.523793097999913,58.106878973000114],[-6.551096157999893,58.09324778899998],[-6.603179490999935,58.08563873900014],[-6.619374152999909,58.08641185100008],[-6.619374152999909,58.079575914000046],[-6.581288214999915,58.07900625200007],[-6.451324022999898,58.0956891950001],[-6.420643683999884,58.10565827],[-6.407093878999916,58.106878973000114],[-6.394032355999855,58.101792710000026],[-6.383900519999912,58.091782945000105],[-6.378570115999935,58.07904694200006],[-6.379790818999936,58.06598541900008],[-6.375721808999884,58.06427643400017],[-6.366118943999908,58.058539130000106],[-6.373687303999873,58.05292389500003],[-6.381906704999949,58.048895575000145],[-6.390695766999926,58.04637278900013],[-6.400257941999911,58.045477606000034],[-6.389475063999896,58.04120514500012],[-6.377674933999856,58.038763739],[-6.365101691999939,58.03790924700009],[-6.352447068999879,58.03864166900003],[-6.370961066999882,58.02724844000014],[-6.385080532999921,58.01593659100016],[-6.400868292999888,58.007310289000074],[-6.4244685539999,58.00389232000007],[-6.518218553999901,58.01264069200011],[-6.539296027999853,58.01727936400006],[-6.544911261999857,58.01752350500003],[-6.550689256999902,58.01007721600002],[-6.542225714999859,58.00568268400007],[-6.520741339999915,58.000799872000165],[-6.505116339999859,57.992499091000084],[-6.469634568999964,57.98688385600009],[-6.455474412999933,57.976548569999984],[-6.455474412999933,57.96971263200008],[-6.464995897999927,57.965643622000115],[-6.481190558999884,57.949774481000176],[-6.489654100999928,57.943060614000146],[-6.50755774599989,57.935980536000095],[-6.520130988999881,57.93659088700003],[-6.532866990999934,57.940415757000046],[-6.551096157999893,57.943060614000146],[-6.551096157999893,57.93561432500014],[-6.546701626999919,57.93382396000008],[-6.541981574999908,57.93085358300006],[-6.537464972999942,57.92877838700003],[-6.537464972999942,57.92133209800006],[-6.559803839999887,57.91522858300008],[-6.578439907999893,57.9172223980001],[-6.593861456999917,57.924872137000065],[-6.606353318999908,57.93561432500014],[-6.614979620999918,57.949164130000106],[-6.620472785999937,57.954535223000086],[-6.62987219999988,57.95673248900009],[-6.634999152999882,57.95160553600006],[-6.629628058999941,57.940252997000094],[-6.620025193999936,57.92816803600009],[-6.612538214999886,57.92133209800006],[-6.619374152999909,57.915106512000094],[-6.651193813999924,57.923814194999984],[-6.660959438999895,57.92877838700003],[-6.66616777299987,57.933905341000134],[-6.672434048999918,57.94619375200001],[-6.699818488999881,57.97622304900006],[-6.707753058999856,57.989569403000175],[-6.709380662999877,58.00389232000007],[-6.694650844999899,58.03009674700009],[-6.665842251999948,58.04466380400011],[-6.629465298999975,58.05093008000007],[-6.592030402999853,58.052313544000135],[-6.592030402999853,58.058539130000106],[-6.688303188999953,58.058539130000106],[-6.688303188999953,58.052313544000135],[-6.692697719999926,58.040961005000085],[-6.716053839999915,58.02496979400009],[-6.744496222999942,58.01048411700013],[-6.764027472999913,58.00389232000007],[-6.750884568999879,57.99298737200009],[-6.730091925999886,57.96295807500003],[-6.718983527999852,57.95673248900009],[-6.704741990999935,57.95319245000009],[-6.693226691999911,57.94505442900008],[-6.683420376999891,57.93573639500011],[-6.67398027299987,57.92877838700003],[-6.679351365999934,57.92682526200009],[-6.683461066999882,57.92422109600001],[-6.688465949999908,57.92206452],[-6.695668097999942,57.92133209800006],[-6.688954230999911,57.91494375200012],[-6.680327928999901,57.912054755000106],[-6.67235266799986,57.91058991100005],[-6.667795376999891,57.90827057500009],[-6.665150519999912,57.90155670800014],[-6.660959438999895,57.88031647300006],[-6.742909308999912,57.891262111000046],[-6.777658657999979,57.9020856790001],[-6.787017381999902,57.89883047100006],[-6.792388475999871,57.89374420800005],[-6.797352667999917,57.887396552000105],[-6.805572068999908,57.88031647300006],[-6.794260219999926,57.87620677300011],[-6.7728572259999,57.87124258000015],[-6.764027472999913,57.86790599200013],[-6.740712042999916,57.84503815300003],[-6.736683722999942,57.83942291900002],[-6.741932745999861,57.831488348000065],[-6.75560462099989,57.82648346600003],[-6.773508266999926,57.824611721000146],[-6.791249152999939,57.82575104400008],[-6.791249152999939,57.818915106000155],[-6.783843553999929,57.818915106000155],[-6.783843553999929,57.81268952],[-6.806141730999882,57.81464264500006],[-6.852691209999904,57.83319733300005],[-6.85960852799991,57.82575104400008],[-6.854156053999872,57.823431708000115],[-6.845855272999898,57.81639232000004],[-6.839100714999858,57.81268952],[-6.850168423999889,57.802923895000056],[-6.861154751999948,57.796332098],[-6.887521938999953,57.78481679900016],[-6.882720506999874,57.78286367400001],[-6.877837693999879,57.77985260600012],[-6.873280402999853,57.77798086100013],[-6.893950975999871,57.76654694200008],[-6.955148891999897,57.74384186400014],[-6.973500128999944,57.733343817000055],[-6.980783657999949,57.73505280200008],[-7.031646287999904,57.76740143400009],[-7.041371222999942,57.77049388200008],[-7.10187740799995,57.811468817],[-7.112782355999911,57.815863348000065],[-7.117298956999889,57.823065497000115],[-7.124623175999886,57.83075592700011],[-7.125070766999953,57.83690013200011],[-7.109445766999897,57.83942291900002],[-7.096994594999955,57.83803945500012],[-7.088612433999913,57.833400783000016],[-7.083241339999859,57.82510000200013],[-7.079335089999859,57.81268952],[-6.997385219999927,57.85370514500012],[-6.984852667999917,57.864894924000126],[-6.962269660999937,57.86884186400012],[-6.914173956999889,57.86790599200013],[-6.962554490999878,57.88784414300004],[-6.962554490999878,57.89468008000013],[-6.911610480999883,57.91058991100005],[-6.881703253999888,57.91429271],[-6.851877407999893,57.91058991100005],[-6.832264777999853,57.9020856790001],[-6.841867641999926,57.907049872000165],[-6.851551886999886,57.911403713000155],[-6.85960852799991,57.91522858300008],[-6.862945115999935,57.918036200000024],[-6.865834113999881,57.92133209800006],[-6.846994594999927,57.92792389500015],[-6.839100714999858,57.92877838700003],[-6.839100714999858,57.93561432500014],[-6.897084113999937,57.93561432500014],[-6.910796678999872,57.938910223],[-6.937001105999911,57.953436591000056],[-6.952056443999908,57.95673248900009],[-7.009755011999856,57.955267645000035],[-7.036284959999931,57.96063873900006],[-7.044585740999906,57.976548569999984],[-7.057281053999872,57.970851955000015],[-7.0658259759999,57.97101471600017],[-7.112782355999911,57.990220445000126],[-7.096669074999851,57.99746328300013],[-7.084828253999888,58.00592682500009],[-7.071766730999911,58.01190827],[-7.051909959999904,58.011379299000126],[-7.051909959999904,58.01752350500003],[-7.05492102799991,58.01976146],[-7.055653449999852,58.02069733300009],[-7.056141730999911,58.021958726],[-7.058216925999942,58.02496979400009],[-7.027902798999945,58.02753327000009],[-6.995228644999912,58.03375885600015],[-6.934641079999949,58.052313544000135],[-7.028716600999871,58.03839752800018],[-7.058216925999942,58.03864166900003],[-7.053618943999908,58.047796942],[-7.045765753999916,58.05263906500009],[-7.035552537999905,58.053900458],[-7.024037238999938,58.052313544000135],[-7.024037238999938,58.058539130000106],[-7.051909959999904,58.058539130000106],[-7.042795376999919,58.06183502800015],[-7.035023566999911,58.06635163000002],[-7.028716600999871,58.07221100500005],[-7.024037238999938,58.079575914000046],[-7.067494269999912,58.06273021000013],[-7.075550910999937,58.06224192900005],[-7.104888475999928,58.094794012000115],[-7.112782355999911,58.10008372600002],[-7.107533331999917,58.11200592700014],[-7.113189256999931,58.116400458000115],[-7.121937628999887,58.118597723000036],[-7.126454230999855,58.12396881700006],[-7.123402472999942,58.13666413000014],[-7.112131313999953,58.145453192],[-7.112782355999911,58.155340887000115],[-7.104156053999901,58.157049872000115],[-7.100168423999946,58.15940989800007],[-7.097645636999914,58.16303131700012],[-7.093006964999887,58.168402411],[-7.10024980399993,58.170111395],[-7.107411261999857,58.17413971600015],[-7.112782355999911,58.17584870000014],[-7.112782355999911,58.182033596000124],[-7.037709113999881,58.18463776200003],[-7.017201300999943,58.1894391950001],[-7.04344641799986,58.19594961100002],[-7.053944464999944,58.20136139500006],[-7.058216925999942,58.21336497599999],[-7.056060350999928,58.22565338700004],[-7.050160285999908,58.232367255],[-7.030873175999886,58.24469635600003],[-7.016102667999888,58.23859284100014],[-6.977284308999884,58.227362372000144],[-6.969471808999883,58.226752020000085],[-6.962025519999912,58.230169989],[-6.907338019999969,58.216782945],[-6.907338019999969,58.20994700700008],[-6.937082485999895,58.21100495000003],[-6.930409308999913,58.196844794000114],[-6.909657355999911,58.179754950000145],[-6.897084113999937,58.17210521000014],[-6.898345506999931,58.15672435099999],[-6.888050910999937,58.135891018],[-6.872873501999948,58.11688873900003],[-6.85960852799991,58.106878973000114],[-6.861439581999889,58.11587148600013],[-6.861887173999889,58.12140534100017],[-6.85960852799991,58.134833075000145],[-6.8666072259999,58.14118073100009],[-6.881581183999913,58.158636786000145],[-6.887521938999953,58.168402411],[-6.877512173999946,58.17218659100011],[-6.873931443999908,58.17938873900014],[-6.872670050999886,58.18634674700003],[-6.869496222999913,58.1894391950001],[-6.825062628999916,58.195379950000145],[-6.815174933999884,58.19969310100005],[-6.798451300999943,58.202378648000135],[-6.77257239499994,58.19550202000012],[-6.748524542999917,58.182928778000026],[-6.736683722999942,58.168402411],[-6.709380662999877,58.1894391950001],[-6.734364386999886,58.19769928600003],[-6.742909308999912,58.20311107000004],[-6.746815558999913,58.20921458500013],[-6.752552863999881,58.22479889500011],[-6.757191535999908,58.23041413000014],[-6.763050910999936,58.23167552300005],[-6.777821417999944,58.22947825700005],[-6.783843553999929,58.23041413000014],[-6.785715298999918,58.232977606000055],[-6.789540167999917,58.24201080900015],[-6.791249152999939,58.24469635600003],[-6.802723761999886,58.25372955900003],[-6.807687954999921,58.25869375200009],[-6.811838344999956,58.26459381700012],[-6.806752081999946,58.26654694200009],[-6.802723761999886,58.268988348],[-6.798003709999875,58.27098216400005],[-6.791249152999939,58.27138906500015],[-6.796457485999922,58.278631903000175],[-6.801177537999934,58.28335195500009],[-6.807728644999911,58.285467841000084],[-6.81859290299991,58.28510163000009],[-6.736968553999901,58.32363515800015],[-6.715565558999856,58.33966705900014],[-6.703358527999882,58.33588288000011],[-6.695952928999873,58.33844635600003],[-6.689686652999853,58.343329169000114],[-6.681385870999861,58.34650299700017],[-6.647328253999945,58.34650299700017],[-6.620676235999895,58.35073476800009],[-6.557484503999915,58.36855703300007],[-6.548491990999906,58.37278880399999],[-6.523345506999931,58.39077383000013],[-6.345611131999874,58.46320221600017],[-6.296294725999871,58.49725983300008],[-6.267404751999948,58.51203034100016],[-6.243234829999948,58.510972398000106],[-6.223052537999934,58.499212958000115],[-6.205393032999921,58.48126862200009],[-6.192738410999937,58.46206289300012],[-6.18797766799986,58.44611237200002],[-6.169992641999897,58.429999091000134],[-6.166859503999916,58.419501044000164],[-6.184925910999937,58.41478099200007],[-6.192372199999908,58.40912506700009],[-6.215321417999917,58.36762116100009],[-6.206898566999968,58.36115143400018],[-6.195546027999882,58.35626862200011]]],[[[-3.34788977799991,58.65204498900006],[-3.340565558999912,58.64813873900005],[-3.309885219999899,58.64813873900005],[-3.244252081999889,58.659002997000144],[-3.20409094999988,58.66111888200006],[-3.151926235999952,58.64126211100015],[-3.118763800999915,58.64109935099999],[-3.05288652299987,58.64813873900005],[-3.019113735999895,58.64032623900009],[-3.025380011999857,58.62213776200017],[-3.044422980999855,58.601629950000024],[-3.049183722999942,58.58673737200017],[-3.06045488199993,58.57843659100008],[-3.075428839999859,58.56037018400017],[-3.084543423999946,58.551947333000115],[-3.110747850999899,58.538641669000114],[-3.118031378999887,58.53204987200002],[-3.129261847999913,58.51264069200012],[-3.129302537999905,58.496405341000084],[-3.118723110999923,58.48444245000015],[-3.097523566999939,58.477484442000055],[-3.085072394999912,58.478257554],[-3.07396399599989,58.481675522999986],[-3.064442511999914,58.48297760600009],[-3.056630011999914,58.477484442000055],[-3.053334113999881,58.46576569200006],[-3.05772864499994,58.456854559000035],[-3.06676184799997,58.45115794500004],[-3.077056443999879,58.44953034100003],[-3.086333787999934,58.414211330000015],[-3.129790818999879,58.36928945500009],[-3.182769334999904,58.32843659100014],[-3.220529751999891,58.30556875200013],[-3.262277798999918,58.292629299000126],[-3.349842902999853,58.27610911700007],[-3.38499915299991,58.26459381700012],[-3.438099738999938,58.236029364000146],[-3.447010870999861,58.226752020000085],[-3.454741990999878,58.210150458000115],[-3.473459438999953,58.19342682500009],[-3.515288865999878,58.168402411],[-3.735015428999901,58.072170315000065],[-3.809193488999938,58.05190664300015],[-3.827504035999908,58.04205963700003],[-3.836252407999893,58.031439520000085],[-3.846099412999905,58.011175848000065],[-3.851714647999898,58.00389232000007],[-3.860585089999858,57.998928127],[-3.885609503999944,57.99140045800006],[-3.917307094999927,57.987453518000066],[-3.98143469999988,57.96356842699999],[-3.990956183999884,57.960394598000114],[-3.997670050999915,57.95441315300011],[-4.001372850999871,57.94611237200003],[-4.001942511999857,57.93561432500014],[-4.018299933999855,57.94061920799999],[-4.023060675999943,57.943060614000146],[-4.016184048999946,57.949286200000095],[-4.030140753999916,57.95319245000009],[-4.055775519999884,57.954982815000086],[-4.084380662999877,57.96417877800015],[-4.089100714999887,57.96015045800008],[-4.086333787999905,57.95189036700002],[-4.077626105999911,57.943060614000146],[-4.062652147999898,57.93695709800015],[-4.03148352799991,57.93618398600013],[-4.016184048999946,57.93219635600015],[-4.009429490999906,57.927679755],[-3.988270636999914,57.90827057500009],[-4.008941209999932,57.889593817000026],[-4.013824022999898,57.87933991100009],[-4.009348110999923,57.86790599200013],[-4.025135870999889,57.8680687520001],[-4.054839647999898,57.874335028000054],[-4.070220506999931,57.874172268000095],[-4.079335089999915,57.87026601800009],[-4.096913214999859,57.85736725500009],[-4.104969855999911,57.85370514500012],[-4.132923956999917,57.85415273600002],[-4.190419074999909,57.87006256700012],[-4.2181697259999,57.874172268000095],[-4.298898891999926,57.862779039000095],[-4.320952928999901,57.87103913000003],[-4.353179490999963,57.895209052000105],[-4.372303839999915,57.904486395000056],[-4.392404751999891,57.90827057500009],[-4.33958899599989,57.86570872600013],[-4.307728644999884,57.851467190000115],[-4.269398566999939,57.84686920799999],[-4.229074673999889,57.857245184000085],[-4.208241339999887,57.85919830900006],[-4.190581834999875,57.85028717700011],[-4.173451300999942,57.83901601800004],[-4.149728969999927,57.829820054000045],[-4.133452928999901,57.83014557500017],[-4.139068162999905,57.84686920799999],[-4.075062628999916,57.82318756700009],[-4.039906378999945,57.81818268400003],[-3.983509894999912,57.84235260600007],[-3.951486782999921,57.83832428600009],[-3.933705206999917,57.8256696640001],[-3.947336391999982,57.81268952],[-3.914784308999912,57.80768463700015],[-3.877674933999913,57.81671784100017],[-3.841867641999897,57.834906317000055],[-3.813547329999949,57.85712311400011],[-3.798451300999943,57.86652252800014],[-3.786040818999907,57.865423895],[-3.779449022999927,57.85565827000007],[-3.78221594999988,57.83942291900002],[-3.79002844999988,57.830715236000124],[-3.926014777999911,57.73480866100011],[-3.948841925999915,57.72492096600003],[-3.975209113999938,57.703273830000136],[-3.988270636999914,57.69599030200011],[-4.008046027999939,57.69379303600011],[-4.02367102799991,57.69782135600009],[-4.028635219999956,57.70770905200003],[-4.016184048999946,57.72333405199999],[-4.042958136999857,57.73729075700006],[-4.077951626999948,57.73029205900017],[-4.155344204999949,57.69257233300003],[-4.168568488999881,57.68943919500013],[-4.193999803999901,57.68854401200003],[-4.259266730999883,57.67869700700011],[-4.277821417999888,57.68060944200008],[-4.294789191999882,57.680161851],[-4.302154100999871,57.66860586100017],[-4.30882727799991,57.65485260600003],[-4.324045376999891,57.64826080900014],[-4.338205532999922,57.64508698100009],[-4.403187628999888,57.60952383000013],[-4.412180141999897,57.60297272300015],[-4.420318162999905,57.59296295800005],[-4.428456183999856,57.57754140800013],[-4.423451300999886,57.576808986000096],[-4.409901495999918,57.582464911],[-4.37987219999988,57.589341539000095],[-4.365101691999911,57.597235419000164],[-4.351063605999854,57.60736725500012],[-4.340809699999909,57.61717357000005],[-4.32872473899991,57.62628815300015],[-4.283111131999874,57.641424872000144],[-4.244536912999905,57.66303131700015],[-4.201893683999884,57.674994208000086],[-4.193755662999934,57.675523179000045],[-4.18224036399991,57.6727969420001],[-4.169016079999892,57.663763739000096],[-4.118723110999923,57.65770091399998],[-4.096791144999884,57.6581078150001],[-4.0807185539999,57.664984442],[-4.068104620999918,57.672308661],[-4.024647589999887,57.687201239000146],[-4.009348110999923,57.68854401200003],[-4.004505988999938,57.67597077000014],[-4.025257941999939,57.65521881700015],[-4.054188605999855,57.63572825700005],[-4.0834041009999,57.62335846600002],[-4.118560350999871,57.59296295800005],[-4.115467902999882,57.587836005000135],[-4.112294074999909,57.584133205000015],[-4.108876105999883,57.58144765800005],[-4.104969855999911,57.57929108300011],[-4.15135657499988,57.576849677],[-4.170643683999913,57.570746161],[-4.187489386999914,57.55882396000006],[-4.178089972999885,57.54954661700011],[-4.184925910999908,57.54816315300003],[-4.207997199999852,57.55206940300004],[-4.262603318999908,57.55206940300004],[-4.262603318999908,57.54458242400015],[-4.233957485999952,57.54511139500012],[-4.220285610999923,57.543402411000116],[-4.207997199999852,57.53839752800008],[-4.226307745999918,57.515448309000085],[-4.237456834999932,57.50531647300014],[-4.248931443999879,57.49746328300016],[-4.212798631999931,57.49217357],[-4.194813605999911,57.491603908000016],[-4.173898891999954,57.49746328300016],[-4.1576228509999,57.50849030200011],[-4.150054490999878,57.515041408000094],[-4.149322068999935,57.51788971600003],[-4.126779751999948,57.51886627800011],[-4.116200324999909,57.52179596600002],[-4.097523566999911,57.53668854400008],[-4.08299719999988,57.54441966400001],[-4.067290818999908,57.549953518],[-4.053130662999905,57.55206940300004],[-4.034982876999891,57.55687083500011],[-4.046457485999922,57.56785716400008],[-4.083851691999882,57.58612702000015],[-4.056019660999937,57.58515045800005],[-3.964344855999854,57.59296295800005],[-3.868275519999883,57.587876695000126],[-3.837473110999895,57.59296295800005],[-3.684803839999944,57.65444570500013],[-3.625152147999926,57.66193268400009],[-3.632557745999918,57.650946356000034],[-3.637684699999852,57.64622630400014],[-3.645619269999912,57.641424872000144],[-3.632476365999934,57.63564687700006],[-3.619618292999916,57.63621653900004],[-3.606068488999938,57.63947174700008],[-3.590972459999932,57.641424872000144],[-3.611561652999882,57.66811758000007],[-3.574777798999889,57.661118882],[-3.554921027999881,57.65985748900009],[-3.535755988999938,57.66193268400009],[-3.521473761999942,57.667792059000035],[-3.505441860999951,57.67865631700011],[-3.495961066999939,57.69135163],[-3.501698370999918,57.70282623900011],[-3.491851365999878,57.713120835000055],[-3.482818162999877,57.714016018000144],[-3.473052537999933,57.71100495000005],[-3.460682745999889,57.709662177000055],[-3.447865363999881,57.71246979400011],[-3.421254035999937,57.72138092700013],[-3.409169074999909,57.72333405199999],[-3.284738735999923,57.72044505400005],[-3.210072394999912,57.693996486000074],[-3.078684048999917,57.66941966400007],[-3.034901495999946,57.66860586100017],[-2.994496222999885,57.675523179000045],[-2.932687954999892,57.69961172100007],[-2.916086391999926,57.70282623900011],[-2.75804602799991,57.70282623900011],[-2.751210089999887,57.70062897300015],[-2.741118943999936,57.690863348],[-2.731068488999938,57.68854401200003],[-2.719878709999932,57.69061920800006],[-2.711537238999881,57.693996486000074],[-2.703521287999934,57.69472890800002],[-2.69294186099998,57.68854401200003],[-2.658924933999856,57.697455145000085],[-2.573394334999932,57.68146393400018],[-2.541981574999909,57.682359117000075],[-2.526112433999884,57.66860586100017],[-2.518137173999917,57.670111395],[-2.511057094999956,57.677801825000024],[-2.497954881999902,57.682359117000075],[-2.480051235999951,57.68121979400003],[-2.432850714999859,57.66811758000007],[-2.425526495999861,57.67572663000003],[-2.417795376999948,57.67426178600014],[-2.408762173999946,57.66962311400011],[-2.398060675999915,57.66811758000007],[-2.386586066999882,57.67157623900005],[-2.369496222999913,57.6805687520001],[-2.360503709999904,57.682359117000075],[-2.341053839999915,57.67584870000017],[-2.328968878999916,57.674058335],[-2.323597785999937,57.67894114800007],[-2.320546027999853,57.684556382000046],[-2.313384568999908,57.68992747600011],[-2.30406653599988,57.693996486000074],[-2.295643683999912,57.69599030200011],[-2.274322068999936,57.69383372600011],[-2.230132615999878,57.679144598000036],[-2.209950324999852,57.675523179000045],[-2.18407141799986,57.67845286699999],[-2.124338344999956,57.70282623900011],[-2.108143683999913,57.704982815000115],[-1.997670050999886,57.70282623900011],[-1.996937628999944,57.699042059000114],[-1.990834113999966,57.69037506700012],[-1.982167120999861,57.681097723000065],[-1.973500128999888,57.675523179000045],[-1.961293097999885,57.67470937700012],[-1.944732225999928,57.68256256700012],[-1.932484503999944,57.682359117000075],[-1.925689256999931,57.678168036000145],[-1.914214647999899,57.664740302000055],[-1.829457160999908,57.613470770000035],[-1.820464647999898,57.59634023600007],[-1.817005988999881,57.578192450000174],[-1.811390753999887,57.560492255000085],[-1.79600989499994,57.54458242400015],[-1.79600989499994,57.53839752800008],[-1.800038214999915,57.525864976],[-1.78954016799986,57.51483795800014],[-1.761138475999928,57.49746328300016],[-1.775380011999914,57.49652741100009],[-1.782134568999964,57.4889997420001],[-1.781239386999857,57.48041413000003],[-1.771717902999882,57.47626373900005],[-1.759348110999923,57.47357819200008],[-1.765939907999893,57.46743398600002],[-1.789173956999917,57.45644765800016],[-1.830148891999954,57.42617422100015],[-1.847482876999919,57.408148505000106],[-1.849964972999942,57.39435455900013],[-1.954497850999871,57.34113190300003],[-1.980295376999891,57.31928131700001],[-2.04466712099989,57.22650788000006],[-2.068511522999898,57.174627997000165],[-2.074126756999874,57.154201565],[-2.071400519999912,57.13556549700011],[-2.052357550999915,57.12742747599999],[-2.049305792999917,57.11884186400009],[-2.065256313999924,57.10053131700012],[-2.065825975999899,57.09983958500008],[-2.156158006999902,57.020697333],[-2.186919725999871,56.98468659100003],[-2.200103318999936,56.948716539000046],[-2.197132941999911,56.940252997000115],[-2.191232876999891,56.93414948100003],[-2.186268683999941,56.92674388200014],[-2.186390753999916,56.91453685100008],[-2.191314256999874,56.908921617000075],[-2.209706183999913,56.89581940300008],[-2.213693813999896,56.890692450000174],[-2.219878709999961,56.87262604400014],[-2.234608527999853,56.861395575000145],[-2.2689509759999,56.846340236000124],[-2.295806443999879,56.82526276200012],[-2.319813605999911,56.80158112200011],[-2.33608964799987,56.79083893400009],[-2.391835089999859,56.77118561400014],[-2.40868079299986,56.76292552300005],[-2.426421678999873,56.75128815300006],[-2.435943162999934,56.74038320500007],[-2.440744594999927,56.73484935100005],[-2.451649542999917,56.690985419000086],[-2.463734503999916,56.67877838700012],[-2.477406378999945,56.668687242000075],[-2.487456834999932,56.653876044000086],[-2.487538214999915,56.646063544000086],[-2.481271938999953,56.632391669000135],[-2.480620897999898,56.626532294000114],[-2.486195441999911,56.619574286000116],[-2.504058397999898,56.608832098],[-2.514556443999965,56.59149811400012],[-2.530018683999884,56.58075592700011],[-2.623768683999884,56.54340241100006],[-2.640939907999922,56.52236562700004],[-2.661366339999887,56.51422760600009],[-2.699777798999889,56.50364817900005],[-2.708729620999918,56.49599844000012],[-2.727650519999941,56.469549872000144],[-2.737294074999909,56.46702708500011],[-2.744374152999882,56.469549872000144],[-2.752308722999942,56.473618882000025],[-2.764800584999932,56.475734768],[-2.819325324999937,56.47129954600013],[-3.055653449999852,56.45213450700008],[-3.060617641999897,56.45172760600014],[-3.099273240999935,56.44188060100005],[-3.133900519999912,56.426947333],[-3.238189256999902,56.36774323100009],[-3.280181443999879,56.35789622599999],[-3.323475714999859,56.36591217700011],[-3.311512824999908,56.356512762000094],[-3.294016079999977,56.35276927300007],[-3.251535610999895,56.35285065300014],[-3.230620897999927,56.35602448100012],[-3.188384568999907,56.37018463700004],[-3.149566209999904,56.37555573100009],[-2.9502660799999,56.431870835000055],[-2.939930792999917,56.438544012000115],[-2.93065344999988,56.448065497000115],[-2.909087693999936,56.45571523600013],[-2.884999152999939,56.45799388200011],[-2.867909308999884,56.45184967700014],[-2.850087042999917,56.44204336100002],[-2.814768032999893,56.440415757],[-2.802805141999954,56.42796458500008],[-2.800892706999889,56.40892161699999],[-2.808257615999878,56.39105866100003],[-2.821603969999898,56.37616608300006],[-2.837554490999906,56.36591217700011],[-2.812977667999888,56.36591217700011],[-2.809193488999881,56.36286041900003],[-2.804758266999897,56.3491071640001],[-2.802805141999954,56.34540436400009],[-2.79149329299986,56.342474677000055],[-2.782622850999928,56.34162018400014],[-2.77525794199991,56.33942291900014],[-2.768625454999948,56.332342841000084],[-2.677154100999928,56.32843659100011],[-2.655262824999908,56.32217031500015],[-2.621205206999889,56.30442942900005],[-2.613189256999931,56.30190664300012],[-2.576812303999958,56.283921617000104],[-2.576812303999958,56.277777411000116],[-2.630116339999915,56.24852122599999],[-2.648345506999902,56.22870514500009],[-2.672027147999927,56.22239817900013],[-2.720204230999883,56.216294664000046],[-2.783599412999905,56.191961981000176],[-2.806141730999883,56.18838125200001],[-2.830718553999901,56.19074127800015],[-2.892079230999883,56.208889065000065],[-2.940052863999881,56.209418036000145],[-2.964344855999883,56.20563385600011],[-2.974680141999954,56.19830963700012],[-2.982411261999886,56.18911367400012],[-3.035552537999877,56.16791413000006],[-3.091053839999859,56.132269598],[-3.107533331999917,56.126898505000135],[-3.12755286399991,56.12287018400018],[-3.138295050999915,56.11220937700012],[-3.152251756999874,56.078517971000124],[-3.163563605999855,56.06386953300013],[-3.17837480399993,56.058091539000074],[-3.248443162999905,56.05597565300015],[-3.268381313999896,56.050930080000036],[-3.303049282999893,56.037543036000116],[-3.342681443999908,56.027167059000114],[-3.381825324999852,56.02338288],[-3.420969204999892,56.024888414000046],[-3.582590298999889,56.05174388200013],[-3.671498175999915,56.05084870000006],[-3.710031704999892,56.058091539000074],[-3.745432094999899,56.072211005],[-3.746490037999877,56.07278066600015],[-3.78221594999988,56.09218984600007],[-3.803130662999934,56.10712311400012],[-3.817005988999937,56.11225006700012],[-3.837473110999895,56.11261627800014],[-3.837473110999895,56.10643138200008],[-3.777699347999942,56.08283112200005],[-3.769154425999914,56.07514069200012],[-3.760853644999941,56.07245514500015],[-3.72642981699991,56.038031317],[-3.721424933999856,56.030707098],[-3.71263587099989,56.028998114],[-3.693470831999917,56.03115469],[-3.686634894999912,56.030707098],[-3.679554816999939,56.02545807500012],[-3.674794074999852,56.018703518000095],[-3.66828365799995,56.01276276200014],[-3.656239386999858,56.010199286000145],[-3.599720831999917,56.01723867400004],[-3.577381964999887,56.017035223000065],[-3.405425584999904,55.98973216399999],[-3.358265753999916,55.98973216399999],[-3.340891079999921,55.994452216000084],[-3.331044074999909,55.99408600500008],[-3.320423956999946,55.986029364000146],[-3.303456183999884,55.977606512000094],[-3.121815558999913,55.96930573100012],[-3.114735480999855,55.96613190300015],[-3.096831834999904,55.95197174700002],[-3.090728318999908,55.948187567],[-3.078236456999917,55.946844794000114],[-3.015695766999897,55.95050690300014],[-2.939930792999917,55.96930573100012],[-2.916656053999901,55.9806175800001],[-2.900054490999935,55.99616120000008],[-2.882883266999925,56.00849030200014],[-2.857980923999889,56.010199286000145],[-2.863636847999885,56.022284247000144],[-2.86632239499994,56.026760158000016],[-2.870961066999882,56.030707098],[-2.852772589999887,56.039780992000104],[-2.823150193999936,56.059759833000086],[-2.802805141999954,56.06484609600001],[-2.635121222999942,56.058050848000065],[-2.615956183999884,56.053168036],[-2.587554490999878,56.03095123900014],[-2.569406704999949,56.02448151200004],[-2.578358527999882,56.00800202000006],[-2.583648240999878,56.002752997000165],[-2.569569464999915,55.99994538000011],[-2.544056769999941,56.00267161699999],[-2.528960740999935,55.9965681010001],[-2.5248103509999,56.00055573100017],[-2.514556443999965,56.00576406500006],[-2.507923956999889,56.010199286000145],[-2.493275519999884,56.00153229400014],[-2.452504035999908,55.98525625200004],[-2.41437740799995,55.97833893400012],[-2.350941535999908,55.948187567],[-2.307769334999904,55.93500397300015],[-2.146839972999942,55.91730377800015],[-2.138010219999899,55.91461823100015],[-2.132557745999861,55.906439520000056],[-2.13109290299991,55.897202867000104],[-2.128773566999939,55.889797268],[-2.120961066999939,55.88670482000013],[-2.099476691999911,55.88178131700006],[-2.080189581999889,55.86937083500013],[-2.022857225999957,55.80548737200003],[-2.02285626077952,55.805486299532944],[-2.009673631999902,55.79083893400012],[-1.877837693999908,55.69489166900002],[-1.863189256999902,55.67161692900011],[-1.853098110999923,55.659328518000144],[-1.831532355999911,55.65070221600014],[-1.826079881999902,55.64362213700018],[-1.8216853509999,55.636419989000146],[-1.816477016999898,55.632879950000174],[-1.807118292999888,55.634507554],[-1.800770636999857,55.639227606000084],[-1.796294725999871,55.644232489000146],[-1.792591925999943,55.64655182500012],[-1.781402147999927,55.645656643],[-1.768625454999892,55.641913153000175],[-1.756499803999901,55.63361237200009],[-1.747670050999943,55.61920807500003],[-1.767974412999933,55.61920807500003],[-1.767974412999933,55.61298248900009],[-1.755970831999917,55.60887278900013],[-1.720855272999927,55.61456940300011],[-1.699126756999874,55.61298248900009],[-1.630848761999885,55.58510976800012],[-1.630848761999885,55.57827383],[-1.636341925999886,55.57168203300013],[-1.634673631999874,55.564398505000106],[-1.627674933999913,55.55711497600011],[-1.617176886999943,55.55027903899999],[-1.630848761999885,55.54413483300003],[-1.630848761999885,55.53729889500009],[-1.622222459999875,55.53408437700013],[-1.602935350999928,55.52362702000014],[-1.602935350999928,55.51679108300014],[-1.611317511999886,55.508042710000055],[-1.606353318999936,55.50324127800017],[-1.596343553999873,55.49990469000014],[-1.589344855999883,55.49567291900003],[-1.58495032499988,55.48371002800008],[-1.581369594999927,55.41665273600002],[-1.583119269999912,55.406927802000055],[-1.588286912999905,55.39057038000014],[-1.589100714999915,55.385199286],[-1.589344855999883,55.376532294000086],[-1.583322719999956,55.35472239800005],[-1.558583136999886,55.328924872000115],[-1.555816209999932,55.31134674700017],[-1.557036912999934,55.30662669500008],[-1.558990037999905,55.30206940300003],[-1.561919725999928,55.29779694200012],[-1.565744594999927,55.293646552000084],[-1.570057745999947,55.286200262000094],[-1.568226691999968,55.27960846600002],[-1.564279751999891,55.27326080900009],[-1.562082485999895,55.266669012000115],[-1.556467251999891,55.255031643],[-1.54393469999988,55.24388255399999],[-1.520985480999883,55.22939687700013],[-1.529164191999911,55.216253973000086],[-1.524077928999873,55.210109768],[-1.514271613999938,55.204779364000146],[-1.507964647999898,55.19464752800009],[-1.510812954999949,55.184759833000086],[-1.517567511999886,55.17621491100006],[-1.522124803999929,55.16746653899998],[-1.517933722999913,55.15713125200007],[-1.500721808999884,55.14179108300011],[-1.495961066999882,55.13458893400018],[-1.492543097999885,55.11298248900009],[-1.483754035999908,55.091701565],[-1.480091925999943,55.085394598000065],[-1.476226365999935,55.08364492400007],[-1.463286912999934,55.080308335000055],[-1.45958411399991,55.07859935100005],[-1.458078579999949,55.075751044000114],[-1.454701300999943,55.067572333],[-1.438303188999924,55.04230377800006],[-1.429188605999854,55.03327057500003],[-1.42406165299991,55.024359442],[-1.419504360999895,55.01170482000013],[-1.412912563999896,55.00031159100014],[-1.401519334999932,54.99542877800009],[-1.398182745999918,54.992621161000145],[-1.370228644999884,54.975531317],[-1.362660285999937,54.964789130000085],[-1.361724412999934,54.958685614],[-1.363514777999853,54.95425039300012],[-1.364003058999913,54.94818756700011],[-1.362863735999895,54.92593008000007],[-1.36034094999988,54.91705963700003],[-1.353138800999943,54.91351959800014],[-1.355824347999913,54.904282944999984],[-1.296783006999874,54.77993398600016],[-1.275461391999926,54.748439846000146],[-1.24046790299991,54.72166575700005],[-1.225087042999888,54.715033270000085],[-1.172230597999913,54.701239325000174],[-1.172230597999913,54.693793036],[-1.192616339999887,54.693793036],[-1.192453579999921,54.689276434000035],[-1.190785285999908,54.68618398600016],[-1.185170050999915,54.68008047100007],[-1.182728644999884,54.67206452000012],[-1.178822394999884,54.66474030200011],[-1.172922329999949,54.6583519550001],[-1.16470292899993,54.652777411],[-1.172922329999949,54.64419179900006],[-1.182484503999916,54.639227606000034],[-1.206288214999915,54.632961330000064],[-1.20372473899991,54.62571849200005],[-1.198841925999943,54.62156810100011],[-1.191802537999877,54.61977773600004],[-1.182118292999917,54.61928945500013],[-1.179351365999963,54.62091705900015],[-1.178456183999856,54.62421295799999],[-1.176991339999915,54.62677643400009],[-1.172230597999913,54.62612539300015],[-1.169585740999906,54.623602606000034],[-1.165435350999871,54.61871979400017],[-1.162953253999945,54.613959052000084],[-1.16470292899993,54.61180247600008],[-1.152658657999922,54.61318594000015],[-1.14671790299991,54.61847565300003],[-1.138050910999908,54.64655182500003],[-1.120594855999855,54.63300202000006],[-1.103627081999889,54.6246605490001],[-1.084217902999882,54.620428778000175],[-1.042062954999921,54.61709219000015],[-0.993478969999956,54.598130601000136],[-0.787912563999953,54.56077708500008],[-0.562977667999888,54.47736237200008],[-0.534657355999855,54.461004950000174],[-0.5228572259999,54.44708893400009],[-0.521799282999922,54.438055731000176],[-0.523589647999927,54.43024323100009],[-0.520415818999936,54.42007070500012],[-0.509999152999853,54.411566473],[-0.476796027999853,54.397202867000125],[-0.462757941999882,54.388983466000056],[-0.44774329299986,54.3731957050001],[-0.430572068999936,54.34931061400012],[-0.41844641799986,54.32404205900015],[-0.418039516999926,54.303941148000106],[-0.41454016799986,54.29730866100006],[-0.409006313999924,54.29075755400008],[-0.401193813999924,54.285630601000044],[-0.390736456999946,54.283514716000134],[-0.394886847999913,54.27313873900014],[-0.397572394999884,54.269191799000154],[-0.38927161399991,54.26406484600015],[-0.370472785999937,54.247707424000126],[-0.36278235599994,54.24249909100005],[-0.322010870999861,54.23607005400011],[-0.3119197259999,54.23163483300006],[-0.300119594999927,54.224676825000145],[-0.277088995999861,54.21775950700005],[-0.269602016999897,54.2076683610001],[-0.262562628999916,54.18109772300015],[-0.260365363999938,54.17698802300002],[-0.233876105999855,54.16046784100003],[-0.111439581999889,54.131577867000104],[-0.075510219999899,54.112127997000115],[-0.163929816999939,54.08340078300016],[-0.194691535999937,54.062323309000035],[-0.219471808999884,54.02277252800009],[-0.197417772999898,53.994818427000055],[-0.168690558999856,53.92934804900001],[-0.151112433999913,53.89931875200015],[-0.045155402999853,53.80121491100006],[0.133474155000044,53.642645575000145],[0.149261915000068,53.609605210000026],[0.136892123000052,53.57713450700011],[0.131195509000065,53.573431708000086],[0.109629754000139,53.56289297100001],[0.131358269000117,53.59369538],[0.135996941000144,53.61066315300014],[0.120209181000092,53.61810944200011],[0.099457227000101,53.62230052300008],[0.056162957000112,53.641262111000074],[0.034515821000127,53.64606354400017],[0.014821811000076,53.643255927000105],[-0.02391516799986,53.62885163000006],[-0.045033331999946,53.62555573100012],[-0.069406704999921,53.62693919499999],[-0.092274542999917,53.63104889500015],[-0.112619594999927,53.637518622000144],[-0.130034959999904,53.64606354400017],[-0.225331183999856,53.71991608300008],[-0.260365363999938,53.73541901200017],[-0.295643683999884,53.7387962910001],[-0.30516516799986,53.739691473],[-0.431141730999911,53.714300848000065],[-0.449696417999917,53.714300848000065],[-0.510487433999856,53.714300848000065],[-0.544422980999883,53.70945872599999],[-0.551503058999856,53.71116771],[-0.576242641999926,53.725653387000065],[-0.579172329999949,53.727972723],[-0.63703365799995,53.73200104400017],[-0.658355272999927,53.727972723],[-0.726470506999874,53.700628973000114],[-0.717355923999889,53.698675848000086],[-0.708566860999895,53.69574616100006],[-0.700184699999852,53.69183991100009],[-0.692453579999921,53.68699778900002],[-0.67747962099989,53.70282623900012],[-0.6498103509999,53.710598049000126],[-0.619536912999905,53.71185944200015],[-0.596180792999917,53.70807526200012],[-0.555490688999924,53.69049713700018],[-0.544748501999919,53.68357982],[-0.52993730399993,53.67767975500005],[-0.514027472999913,53.68130117400001],[-0.486317511999857,53.694484768000066],[-0.307240363999881,53.71426015800007],[-0.279367641999926,53.70709870000006],[-0.260365363999938,53.68699778900002],[-0.188628709999932,53.62042877800009],[-0.144032355999855,53.606634833],[-0.113189256999902,53.584621486000074],[-0.095936652999882,53.57713450700011],[-0.060943162999877,53.57396067900005],[-0.04662024599989,53.570379950000174],[0.000091993000098,53.535345770000085],[0.09595787900011,53.488348700000145],[0.115082227000073,53.483221747000144],[0.134043816000087,53.48061758000016],[0.151866082000083,53.47581614800008],[0.167816602000073,53.4645042990001],[0.170909050000148,53.457017320000105],[0.173106316000144,53.44676341399999],[0.175791863000114,53.43768952000009],[0.181488477000102,53.433742580000015],[0.190603061000104,53.43187083500014],[0.219493035000113,53.41950104400008],[0.211924675000063,53.412665106000176],[0.229340040000125,53.4047712260001],[0.244883660000141,53.39093659100011],[0.256114129000139,53.375067450000174],[0.260427280000044,53.36147695500013],[0.342133009000122,53.2263044290001],[0.356211785000085,53.188544012000065],[0.356618686000075,53.14573802300005],[0.335785352000102,53.09345123900006],[0.32984459700009,53.08649323100015],[0.318695509000065,53.08368561400012],[0.298838738000143,53.081203518000095],[0.282481316000144,53.07485586100016],[0.19304446700005,53.020086981000034],[0.174489780000044,53.01544830900009],[0.160817905000101,53.008978583],[0.082123243000098,52.938666083000086],[0.061167839000063,52.92499420800014],[0.037608269000117,52.91917552299999],[0.022146030000101,52.91258372600011],[0.008555535000141,52.89862702000015],[0.010264519000145,52.88646067900005],[0.040660027000115,52.88507721600017],[0.092539910000085,52.89252350500006],[0.105642123000081,52.889349677],[0.133474155000044,52.87518952000006],[0.147146030000073,52.872015692],[0.170909050000148,52.86212799700009],[0.222422722000147,52.813666083],[0.246755405000101,52.795721747000144],[0.264496290000096,52.8036970070001],[0.285655144000117,52.80556875200007],[0.32553144600007,52.80316803600011],[0.341807488000114,52.79743073100015],[0.369883660000113,52.773016669000114],[0.384532097000118,52.76837799700009],[0.384532097000118,52.77521393400009],[0.379242384000065,52.79083893400018],[0.399424675000091,52.809515692000055],[0.425547722000118,52.827378648000135],[0.438649936000104,52.84072500200012],[0.444021030000073,52.86505768400012],[0.456716342000107,52.89199453300007],[0.472341342000107,52.916449286000116],[0.485687696000099,52.933498440000065],[0.520274285000113,52.95526764500011],[0.569590691000087,52.969305731000176],[0.623383009000065,52.97565338700012],[0.671885613000114,52.97443268400009],[0.664398634000065,52.98187897300006],[0.684743686000047,52.98639557500003],[0.706797722000147,52.983221747000144],[0.729177280000073,52.977484442],[0.750498894000117,52.97443268400009],[0.835703972000118,52.97443268400009],[0.875498894000088,52.96816640800013],[0.921071811000047,52.95465729400017],[0.968435092000106,52.94749583500013],[1.013926629000082,52.96015045799999],[1.003428582000083,52.96474844000012],[0.991547071000042,52.967474677000105],[0.979014519000145,52.9684105490001],[0.966075066000144,52.96759674700017],[0.966075066000144,52.97443268400009],[1.274668816000116,52.929185289000074],[1.39600670700014,52.891424872000115],[1.644216342000106,52.77582428600006],[1.673350457000055,52.75568268400012],[1.69703209700009,52.731024481000034],[1.71583092500012,52.68374258000007],[1.73414147200009,52.65460846600011],[1.747243686000076,52.62518952000012],[1.74073326900006,52.60390859600015],[1.746836785000141,52.58852773600002],[1.748708530000016,52.56879303600009],[1.747569207000083,52.53278229400011],[1.771169467000021,52.48590729400014],[1.767100457000055,52.476955471000124],[1.754405144000089,52.46735260600015],[1.729258660000113,52.41559479400003],[1.730153842000106,52.40591054900007],[1.727875196000127,52.39630768400009],[1.683604363000086,52.32453034100011],[1.65186608200014,52.28912995000009],[1.641123894000117,52.281805731000084],[1.630544467000078,52.27045319200011],[1.628265821000099,52.24481842700005],[1.630869988000086,52.199774481000176],[1.625498894000117,52.18036530200005],[1.607432488000114,52.14594147300012],[1.603526238000114,52.127834377000035],[1.589203321000127,52.10081614800008],[1.587575717000107,52.08698151200018],[1.582286004000139,52.08148834800015],[1.503672722000118,52.060980536],[1.486827019000117,52.049017645000056],[1.47201582100007,52.056219794000086],[1.466807488000142,52.048000393],[1.46387780000012,52.03514232000008],[1.455821160000113,52.02850983300003],[1.44898522200009,52.02496979400002],[1.424815300000091,52.001857815000065],[1.35482832100007,51.95404694200015],[1.34351647200009,51.94285716400013],[1.332286004000082,51.940090236000074],[1.264414910000085,51.99437083500011],[1.234873894000117,52.00031159100003],[1.185231967000021,52.025091864],[1.15788821700005,52.02850983300003],[1.15788821700005,52.02167389500009],[1.193532748000109,52.00079987200002],[1.214366082000083,51.99144114799999],[1.260264519000145,51.984808661000116],[1.270762566000116,51.98151276200018],[1.275157097000118,51.976996161000116],[1.274424675000091,51.96088288000006],[1.271006707000083,51.95644765800007],[1.250743035000056,51.95962148600013],[1.238942905000101,51.95864492400006],[1.217621290000125,51.95433177300008],[1.205739780000073,51.953436591000084],[1.193207227000073,51.955511786],[1.165293816000144,51.96702708500014],[1.143077019000089,51.96605052300008],[1.094493035000113,51.9559593770001],[1.069102410000085,51.953436591000084],[1.09546959700009,51.94574616100006],[1.262054884000037,51.93915436400009],[1.281993035000113,51.94660065300015],[1.278493686000047,51.92792389500009],[1.199554884000094,51.877671617000104],[1.21225019600007,51.87164948100012],[1.22787519600007,51.86737702],[1.264414910000085,51.86399974199999],[1.274750196000099,51.87030670800011],[1.282237175000063,51.880560614000146],[1.28663170700014,51.88165924700009],[1.288259311000076,51.86058177300008],[1.27637780000012,51.844794012000115],[1.219248894000145,51.81183502800015],[1.167816602000045,51.79022858300006],[1.135427280000044,51.78172435100011],[1.065440300000148,51.775295315],[1.04664147200009,51.777044989],[1.037282748000052,51.78217194200012],[1.021332227000045,51.80255768400009],[0.988780144000089,51.83026764500009],[0.97982832100007,51.84357330900009],[0.977061394000088,51.824611721000096],[0.962087436000076,51.81378815300009],[0.925140821000099,51.80255768400009],[0.894297722000147,51.78461334800015],[0.886973504000139,51.78213125200013],[0.886403842000078,51.77667877800009],[0.883474155000073,51.76471588700015],[0.878916863000114,51.75275299700002],[0.873708530000016,51.74730052299999],[0.861989780000044,51.74555084800009],[0.845957879000139,51.736761786000116],[0.835703972000118,51.73371002800003],[0.823496941000144,51.733832098],[0.801442905000044,51.73969147300014],[0.791758660000085,51.741156317],[0.767100457000083,51.739447333],[0.720876498000081,51.72817617400001],[0.698578321000042,51.72003815300008],[0.714203321000127,51.715277411],[0.732432488000114,51.71377187700013],[0.749278191000116,51.70848216400015],[0.760752800000148,51.69269440300003],[0.789073113000114,51.710150458000086],[0.853037957000112,51.71889883000015],[0.883555535000141,51.72687409100011],[0.912364129000082,51.741522528000026],[0.930023634000093,51.74359772300015],[0.945567254000082,51.73371002800003],[0.947438998000052,51.7252464860001],[0.944590691000116,51.71548086100013],[0.940440300000063,51.70799388199999],[0.938161655000101,51.70636627800015],[0.940196160000113,51.69843170799999],[0.944021030000045,51.690578518],[0.951833530000044,51.67841217700011],[0.941742384000065,51.673041083000086],[0.937998894000145,51.664496161000145],[0.938161655000101,51.641262111000046],[0.934743686000104,51.63589101800006],[0.92676842500012,51.63092682500012],[0.91146894600007,51.623846747000144],[0.93848717500012,51.62498607],[0.948090040000096,51.621527411],[0.951833530000044,51.617010809000035],[0.924489780000073,51.58832428600009],[0.87330162900011,51.559475002000156],[0.828298373000024,51.54185618700005],[0.816254102000102,51.53717682500012],[0.771250847000118,51.52826569200008],[0.692067905000044,51.53632233300011],[0.664398634000065,51.53506094],[0.663747592000107,51.535549221000096],[0.650563998000052,51.53579336100013],[0.646657748000052,51.53534577000011],[0.644053582000055,51.53506094],[0.642751498000081,51.533514716000134],[0.623383009000065,51.52204010600011],[0.608653191000144,51.51898834800012],[0.595225457000055,51.518622137000094],[0.582286004000053,51.51654694200009],[0.56885826900006,51.508368231000176],[0.552744988000086,51.51797109600015],[0.547211134000065,51.517726955000015],[0.525401238000114,51.51691315300009],[0.456065300000063,51.50556061400012],[0.450856967000078,51.49827708500011],[0.448008660000141,51.48822663000014],[0.44166100400011,51.477036851000136],[0.428477410000141,51.46710846600003],[0.414073113000086,51.46190013200014],[0.399180535000141,51.45840078300013],[0.384532097000118,51.45311107000008],[0.448415561000047,51.45994700699999],[0.45679772200009,51.463120835000055],[0.461436394000117,51.47016022300012],[0.464854363000143,51.477240302],[0.469574415000039,51.48041413000006],[0.53484134200005,51.491685289000046],[0.694834832000112,51.477036851000136],[0.709483269000117,51.470526434000035],[0.721934441000144,51.45628489800013],[0.723155144000145,51.44672272300015],[0.713145379000082,51.44122955900012],[0.692393425000091,51.43952057500011],[0.656504754000082,51.44452545800006],[0.640961134000093,51.44415924700006],[0.609385613000086,51.42511627800014],[0.572764519000145,51.41958242400012],[0.554535352000073,51.41217682500006],[0.56226647200009,51.40656159100014],[0.569102410000113,51.39960358300005],[0.576508009000094,51.39362213700003],[0.585948113000114,51.391058661000116],[0.671885613000114,51.391058661000116],[0.712901238000114,51.384222723],[0.704925977000073,51.39598216400019],[0.700368686000047,51.4098167990001],[0.705332879000082,51.41950104400014],[0.726410352000102,51.41901276200015],[0.728363477000045,51.4062360700001],[0.73926842500012,51.38792552300005],[0.75342858200014,51.371527411000145],[0.764414910000113,51.364406643],[0.977224155000073,51.34918854400003],[1.100922071000127,51.37323639500015],[1.423838738000114,51.39207591400019],[1.448252800000148,51.38287995000003],[1.439138217000078,51.35008372600011],[1.435557488000086,51.34373607],[1.430837436000076,51.33779531500015],[1.425140821000099,51.33295319200009],[1.418630405000101,51.32965729400006],[1.382985873000052,51.32977936400003],[1.377614780000101,51.32623932500003],[1.38062584700009,51.30475495000008],[1.387868686000047,51.28790924700009],[1.404307488000114,51.26137929900012],[1.413096550000091,51.22174713700012],[1.404795769000117,51.18353913000006],[1.384450717000107,51.15167877800003],[1.357188347000118,51.131008205000015],[1.290375196000099,51.11652252800015],[1.262950066000144,51.10325755400014],[1.25163821700005,51.102525132000025],[1.229991082000055,51.10370514500011],[1.218109571000099,51.10097890800016],[1.208262566000087,51.09467194200011],[1.19971764400006,51.08759186400006],[1.192067905000044,51.08258698100012],[1.172211134000122,51.0773786480001],[1.106700066000087,51.07636139500006],[1.087168816000115,51.07298411700005],[1.066905144000117,51.06439850500011],[1.02759850400011,51.0416527360001],[0.976410352000045,50.99445221600011],[0.96648196700005,50.98273346600003],[0.969086134000037,50.95685455900012],[0.97982832100007,50.91815827000006],[0.945160352000073,50.909369208],[0.869802280000016,50.92511627800014],[0.80225670700014,50.939195054000024],[0.762461785000056,50.930894273000106],[0.664398634000065,50.87030670800014],[0.624196811000076,50.85871002800003],[0.407481316000116,50.829331773000135],[0.370290561000019,50.81879303600005],[0.365244988000086,50.81899648600002],[0.354258660000113,50.80963776200018],[0.344411655000101,50.79905833500014],[0.342295769000089,50.79515208500014],[0.308116082000112,50.78095123900011],[0.271006707000083,50.74738190300009],[0.233897332000083,50.74701569200009],[0.214121941000144,50.74892812700013],[0.168304884000065,50.75983307500011],[0.157399936000075,50.76105377800003],[0.122080925000148,50.76080963700018],[0.113047722000147,50.76414622600011],[0.095550977000102,50.7750511740001],[0.077036980000088,50.77899811400008],[0.034515821000127,50.78095123900011],[0.017548048000151,50.78485748900012],[-0.173166469999899,50.82900625200001],[-0.206125454999892,50.83104075700014],[-0.208892381999931,50.83010488500004],[-0.233143683999941,50.821926174000126],[-0.26968339799987,50.83128489800007],[-0.397572394999884,50.80206940300003],[-0.56895911399991,50.80206940300003],[-0.732736782999922,50.76727936400009],[-0.74156653599988,50.76923248900012],[-0.749867316999939,50.77387116100006],[-0.758208787999905,50.77708567900011],[-0.767567511999857,50.77472565300015],[-0.773101365999878,50.76601797100007],[-0.766265428999873,50.747137762000065],[-0.770985480999855,50.73688385600012],[-0.789947068999879,50.730047919000114],[-0.812814907999893,50.73476797100001],[-0.904123501999948,50.771877346000124],[-0.911488410999936,50.77781810100005],[-0.905873175999943,50.78803131700008],[-0.892486131999931,50.79462311400006],[-0.863636847999913,50.80206940300003],[-0.863636847999913,50.80825429900001],[-0.873605923999918,50.812933661000116],[-0.893137173999889,50.82534414300015],[-0.904693162999905,50.829331773000135],[-0.909535285999908,50.82599518400009],[-0.921701626999891,50.82160065300012],[-0.928944464999915,50.82282135600003],[-0.919016079999892,50.83616771000014],[-0.929798956999917,50.83999258000016],[-0.939198370999918,50.8432477890001],[-0.970773891999926,50.84699127800003],[-0.994862433999856,50.847072658000016],[-1.001861131999931,50.847113348],[-1.020741339999859,50.84365469],[-1.033558722999885,50.82591380400011],[-1.042632615999906,50.80190664300006],[-1.056223110999952,50.783026434000035],[-1.082753058999913,50.78095123900011],[-1.103016730999911,50.79547760600015],[-1.093617316999911,50.812933661000116],[-1.0753067699999,50.83002350500005],[-1.069162563999953,50.84365469],[-1.087310350999871,50.84979889500009],[-1.088124152999882,50.8497582050001],[-1.1498103509999,50.84666575700011],[-1.16470292899993,50.84365469],[-1.129709438999953,50.82510000200001],[-1.123768683999913,50.81879303600005],[-1.121205206999917,50.79938385600015],[-1.124908006999874,50.788723049000126],[-1.138050910999908,50.78095123900011],[-1.151112433999884,50.781398830000015],[-1.169341600999871,50.78587474199999],[-1.185617641999897,50.79242584800006],[-1.192616339999887,50.798651434000035],[-1.199289516999926,50.80792877800017],[-1.231516079999892,50.818915106000034],[-1.255197719999899,50.83193594000012],[-1.288156704999892,50.83917877800014],[-1.301421678999901,50.84365469],[-1.318592902999853,50.856919664000046],[-1.338937954999921,50.8727074240001],[-1.449289516999897,50.912054755000085],[-1.466420050999915,50.91815827000006],[-1.466420050999915,50.911932684000114],[-1.456450975999928,50.90875885600006],[-1.437977667999917,50.901312567000055],[-1.425607876999948,50.900091864000146],[-1.401112433999856,50.88117096600003],[-1.323068813999896,50.82575104400014],[-1.314279751999919,50.812160549],[-1.317290818999936,50.800238348000065],[-1.339833136999914,50.79515208500014],[-1.403960740999878,50.79157135600015],[-1.418690558999884,50.78839752800009],[-1.411366339999859,50.78489817900011],[-1.404937303999958,50.78095123900011],[-1.404937303999958,50.77472565300015],[-1.450510219999898,50.76935455900009],[-1.476226365999935,50.763413804],[-1.487538214999944,50.75771719],[-1.491932745999918,50.757269598],[-1.524728969999927,50.76105377800003],[-1.557199673999918,50.72329336100016],[-1.559396938999896,50.7192243510001],[-1.561187303999901,50.718980210000055],[-1.580718553999873,50.722642320000105],[-1.602121548999918,50.73175690300012],[-1.670643683999856,50.74005768400018],[-1.672922329999921,50.74005768400018],[-1.693023240999878,50.73993561400012],[-1.715077277999882,50.735785223000065],[-1.753529425999886,50.722845770000056],[-1.771717902999882,50.7201195330001],[-1.797434048999918,50.723171291000185],[-1.835072394999912,50.727687893000144],[-1.857411261999857,50.72695547100004],[-1.877349412999934,50.722845770000056],[-1.896351691999911,50.71629466400019],[-1.896880662999905,50.71605052300005],[-1.913889126999948,50.707424221000124],[-1.929107225999928,50.69586823100012],[-1.940012173999918,50.690822658000066],[-1.944325324999909,50.69765859600001],[-1.946115688999896,50.70791250200013],[-1.949289516999954,50.71332428600009],[-1.9877009759999,50.7201195330001],[-2.01390540299991,50.718939520000056],[-2.02196204299986,50.7201195330001],[-2.025461391999954,50.723863023000135],[-2.026193813999981,50.72508372600005],[-2.033843553999901,50.737127997000144],[-2.038970506999931,50.73993561400012],[-2.048085089999915,50.734808661],[-2.082671678999901,50.698960679],[-2.069569464999859,50.70010000200013],[-2.057728644999883,50.702826239],[-2.046620245999861,50.70726146000008],[-2.035633917999888,50.71332428600009],[-2.01414954299986,50.68878815300015],[-2.002512173999946,50.6813011740001],[-1.984120245999918,50.67853424700003],[-1.967437303999873,50.678656317],[-1.952788865999878,50.67658112200017],[-1.945871548999946,50.66885000200007],[-1.952951626999919,50.6518415390001],[-1.938221808999856,50.64581940300009],[-1.932484503999944,50.64443594000004],[-1.967274542999917,50.61709219000015],[-1.965199347999885,50.6021996110001],[-1.983713344999899,50.59662506700009],[-2.065174933999856,50.595526434000035],[-2.082183397999927,50.59784577],[-2.157338019999912,50.62051015800015],[-2.342640753999945,50.633775132],[-2.377064581999889,50.647528387000094],[-2.398345506999959,50.64557526200014],[-2.435902472999942,50.637518622000115],[-2.447621222999942,50.62787506700015],[-2.460072394999884,50.60651276200009],[-2.465646938999981,50.585150458000136],[-2.4564509759999,50.57550690300015],[-2.431223110999952,50.570257880000085],[-2.428700324999937,50.55756256700012],[-2.439279751999891,50.541815497000144],[-2.45335852799991,50.52765534100014],[-2.459543423999889,50.52765534100014],[-2.460357225999899,50.56549713700018],[-2.483509894999941,50.59039948100011],[-2.69294186099998,50.69281647300012],[-2.864816860999895,50.73379140800012],[-2.887318488999881,50.7343610700001],[-2.94554602799991,50.725816147999986],[-2.962757941999939,50.72329336100016],[-2.998199022999927,50.70823802300005],[-3.021839972999942,50.70648834800015],[-3.059722459999904,50.71332428600009],[-3.071359829999892,50.71100495000012],[-3.094146287999934,50.698960679],[-3.099232550999943,50.697088934000035],[-3.11583411399991,50.687974351000136],[-3.125477667999888,50.685288804000045],[-3.135894334999875,50.68593984600001],[-3.155140753999916,50.69135163000006],[-3.166493292999888,50.69281647300012],[-3.185617641999954,50.69074127800009],[-3.219146287999905,50.680812893],[-3.259836391999897,50.67454661700005],[-3.271392381999902,50.66449616100009],[-3.280425584999904,50.651190497000144],[-3.295562303999901,50.637518622000115],[-3.368153449999908,50.61709219000015],[-3.390736456999889,50.617824611000074],[-3.407541469999898,50.62128327000006],[-3.420969204999892,50.629461981000176],[-3.433338995999918,50.64443594000004],[-3.4463598299999,50.668280341000084],[-3.450428839999887,50.67230866100006],[-3.453277147999927,50.67328522300012],[-3.455433722999913,50.67544179900012],[-3.458607550999886,50.67755768400015],[-3.464426235999923,50.67853424700003],[-3.46776282499988,50.67641836100002],[-3.468902147999898,50.67169830900009],[-3.467844204999949,50.666978257],[-3.455311652999853,50.657904364],[-3.442046678999901,50.62352122600005],[-3.433338995999918,50.61025625200013],[-3.451161261999914,50.599432684000035],[-3.467274542999888,50.58559804900012],[-3.481760219999927,50.56854889500009],[-3.494862433999884,50.54816315300008],[-3.505970831999917,50.52081940300003],[-3.505034959999932,50.50120677300008],[-3.487456834999904,50.45941803600011],[-3.509755011999857,50.45848216400004],[-3.532134568999879,50.454779364],[-3.549427863999881,50.446519273000106],[-3.556263800999886,50.432114976000044],[-3.549305792999888,50.415594794000164],[-3.531971808999912,50.41022370000012],[-3.487456834999904,50.411566473],[-3.487456834999904,50.40477122599999],[-3.4974666009999,50.38735586100002],[-3.49828040299991,50.38369375200015],[-3.507313605999911,50.38279857000008],[-3.514963344999927,50.37995026200012],[-3.520130988999938,50.37482330900012],[-3.526926235999952,50.349798895],[-3.538889126999891,50.34442780200014],[-3.554514126999891,50.347642320000105],[-3.570546027999882,50.35639069200008],[-3.577788865999906,50.33405182500006],[-3.599110480999883,50.325832424000126],[-3.621571417999859,50.321926174000154],[-3.631988084999875,50.31232330900015],[-3.637359178999901,50.29539622599999],[-3.647572394999941,50.274562893],[-3.653309699999909,50.25104401200015],[-3.645619269999912,50.22601959800014],[-3.660633917999917,50.22101471600011],[-3.700917120999918,50.21352773600013],[-3.718006964999858,50.2123884140001],[-3.74038652299987,50.215887762000094],[-3.758615688999952,50.22174713700003],[-3.774240688999924,50.22296784100014],[-3.788970506999931,50.2123884140001],[-3.826324022999898,50.23419830900014],[-3.884185350999899,50.28046295800014],[-3.949940558999884,50.318996486000046],[-3.961008266999925,50.32225169499999],[-3.970204230999883,50.320746161000116],[-3.995757615999878,50.31142812700007],[-4.00560462099989,50.309230861000074],[-4.011341925999972,50.30695221600003],[-4.024769660999965,50.29718659100017],[-4.032948370999861,50.294907945000105],[-4.044056769999884,50.29645416900014],[-4.054351365999906,50.30036041900006],[-4.070220506999931,50.309230861000074],[-4.067941860999952,50.31281159100014],[-4.064035610999952,50.32225169499999],[-4.086008266999896,50.326239325000145],[-4.108265753999945,50.33661530200005],[-4.118723110999923,50.35187409100002],[-4.104969855999911,50.37067291900017],[-4.141753709999875,50.36904531500015],[-4.152740037999934,50.37067291900017],[-4.165516730999883,50.37636953300016],[-4.171457485999923,50.38279857000008],[-4.175770636999914,50.39085521],[-4.183827277999853,50.40106842700014],[-4.191477016999983,50.41762929900001],[-4.183908657999922,50.431708075000145],[-4.170318162999876,50.445135809000035],[-4.15953528599988,50.45941803600011],[-4.179432745999861,50.45307038],[-4.189564581999917,50.45368073100015],[-4.20055091099988,50.45941803600011],[-4.203684048999946,50.45140208499999],[-4.204741990999906,50.44867584800012],[-4.212391730999855,50.44147370000009],[-4.222523566999882,50.43797435099999],[-4.234730597999885,50.43829987200003],[-4.234730597999885,50.432114976000044],[-4.22020423099994,50.42584870000009],[-4.216135219999956,50.41571686400014],[-4.219715949999852,50.405096747000115],[-4.228505011999913,50.3973656270001],[-4.241444464999915,50.39468008],[-4.289906378999888,50.3973656270001],[-4.273019985999894,50.38190338700015],[-4.21617591099988,50.38776276200012],[-4.193755662999934,50.376898505000106],[-4.228505011999913,50.37067291900017],[-4.228505011999913,50.36383698100015],[-4.220122850999957,50.36530182500012],[-4.20055091099988,50.36383698100015],[-4.207997199999852,50.35639069200008],[-4.180043097999913,50.35639069200008],[-4.180043097999913,50.35016510600012],[-4.191314256999902,50.34756094000012],[-4.197987433999884,50.34223053600006],[-4.199126756999902,50.33539459800012],[-4.193755662999934,50.32843659100014],[-4.193755662999934,50.32225169499999],[-4.214995897999927,50.32314687700007],[-4.22569739499994,50.33539459800012],[-4.235096808999884,50.34955475500006],[-4.252349412999905,50.35639069200008],[-4.337717251999919,50.37067291900017],[-4.383697068999908,50.367499091000106],[-4.456206834999904,50.338202216000084],[-4.495350714999859,50.32843659100014],[-4.659820115999906,50.32225169499999],[-4.659575975999957,50.32062409100014],[-4.66270911399991,50.317775783000016],[-4.667795376999948,50.31533437700007],[-4.673451300999943,50.31541575700005],[-4.687163865999878,50.34271881700015],[-4.694325324999909,50.34345123900006],[-4.700184699999852,50.34088776200015],[-4.705555792999917,50.33755117400012],[-4.711333787999876,50.33588288000011],[-4.731556769999884,50.334662177],[-4.752105272999927,50.33030833500011],[-4.763295050999943,50.32208893400012],[-4.755441860999952,50.309230861000074],[-4.755441860999952,50.3017438820001],[-4.762359178999873,50.29804108300008],[-4.771636522999927,50.291571356000176],[-4.779855923999918,50.28432851800015],[-4.783355272999898,50.277899481000034],[-4.78189042899993,50.271795966000134],[-4.776519334999875,50.265082098],[-4.776519334999875,50.260809637000094],[-4.788441535999937,50.24209219000012],[-4.790150519999941,50.236558335000026],[-4.800160285999908,50.22955963700004],[-4.849720831999946,50.23456452000006],[-4.868723110999952,50.22943756700006],[-4.887318488999938,50.2149925800001],[-4.904774542999917,50.208441473],[-4.947255011999886,50.199367580000015],[-4.960682745999861,50.19049713700015],[-5.002430792999917,50.14411041900008],[-5.014556443999908,50.15656159100003],[-5.020375128999945,50.191961981000034],[-5.033192511999886,50.199367580000015],[-5.05296790299991,50.19578685100005],[-5.053618943999965,50.1869164080001],[-5.051869269999969,50.17552317900014],[-5.064564581999917,50.16461823100014],[-5.064564581999917,50.158392645],[-5.058501756999931,50.155462958000086],[-5.043446417999917,50.14411041900008],[-5.051869269999969,50.14459870000009],[-5.058461066999939,50.142726955],[-5.070790167999888,50.13727448100017],[-5.080311652999882,50.13271719000012],[-5.081613735999895,50.125392971000124],[-5.080962693999936,50.11717357000013],[-5.085031704999892,50.10993073100012],[-5.093902147999927,50.10553620000003],[-5.125965949999909,50.09634023600016],[-5.114654100999928,50.096625067],[-5.10606848899991,50.09511953300013],[-5.091867641999897,50.08950429900012],[-5.086903449999852,50.089056708000136],[-5.075347459999931,50.09048086100002],[-5.070790167999888,50.08950429900012],[-5.068470831999917,50.08515045800014],[-5.06493079299986,50.07184479400003],[-5.060861782999893,50.069037177000084],[-5.056507941999882,50.06061432500003],[-5.069488084999875,50.042181708],[-5.098052537999877,50.014390367000104],[-5.107289191999939,50.01300690300003],[-5.127430792999888,50.01544830900018],[-5.139637824999852,50.014390367000104],[-5.146473761999886,50.010565497000115],[-5.176136847999913,49.987941799000126],[-5.18773352799991,49.96450429900007],[-5.191151495999918,49.959133205000015],[-5.200103318999965,49.961371161],[-5.2103572259999,49.96674225500006],[-5.240386522999927,49.988348700000145],[-5.245228644999912,49.99310944200014],[-5.249501105999911,50.000067450000024],[-5.253041144999912,50.01264069200011],[-5.252268032999893,50.02069733300006],[-5.252674933999884,50.02777741100011],[-5.259755011999857,50.037665106000034],[-5.288400844999927,50.06769440300009],[-5.304351365999935,50.08026764500006],[-5.32396399599989,50.08950429900012],[-5.384185350999871,50.10797760600015],[-5.424712693999879,50.112738348000065],[-5.458119269999941,50.12588125200001],[-5.474842902999882,50.13043854400014],[-5.495676235999952,50.12962474200005],[-5.521839972999913,50.123724677000105],[-5.540923631999873,50.11347077],[-5.540638800999943,50.099758205000064],[-5.534657355999854,50.082342841000084],[-5.5455623039999,50.06891510600009],[-5.56346594999988,50.059637762000065],[-5.578439907999893,50.054754950000174],[-5.619455532999922,50.04621002800015],[-5.667388475999928,50.04287344000012],[-5.705148891999983,50.05231354400014],[-5.715646938999953,50.08270905200011],[-5.705962693999879,50.08348216400013],[-5.698801235999952,50.08539459800009],[-5.694488084999932,50.08950429900012],[-5.694406704999949,50.09577057500009],[-5.697092251999948,50.10053131700009],[-5.700306769999912,50.10321686400006],[-5.701975063999924,50.10317617400007],[-5.707386847999942,50.12201569200003],[-5.709217902999853,50.13263580900015],[-5.705393032999922,50.13727448100017],[-5.703521287999962,50.140611070000105],[-5.684641079999921,50.16152578300007],[-5.676747199999851,50.16502513200005],[-5.647368943999936,50.17206452000012],[-5.583607550999914,50.195868231000034],[-5.54942786399991,50.20351797100015],[-5.510975714999915,50.219468492000075],[-5.489125128999888,50.21979401200017],[-5.458119269999941,50.200751044000086],[-5.437977667999917,50.19432200699999],[-5.417388475999871,50.20246002800009],[-5.40294348899991,50.21735260600015],[-5.395863410999937,50.227240302000055],[-5.39289303299995,50.236558335000026],[-5.387562628999888,50.24030182500003],[-5.351918097999913,50.24030182500003],[-5.314849412999905,50.25360748900006],[-5.200306769999912,50.33075592700002],[-5.163563605999911,50.347235419000086],[-5.149891730999882,50.35016510600012],[-5.146473761999886,50.355292059000035],[-5.145659959999874,50.366888739000146],[-5.147043423999946,50.37938060100005],[-5.153675910999908,50.399481512000094],[-5.142404751999919,50.40448639500014],[-5.127268032999922,50.40521881700009],[-5.119740363999938,50.40477122599999],[-5.05028235599994,50.42869700700014],[-5.048166469999927,50.43439362200003],[-5.038726365999906,50.4479027360001],[-5.029774542999888,50.486761786],[-5.028635219999927,50.507025458000115],[-5.025257941999911,50.52423737200003],[-5.015614386999857,50.53803131700015],[-4.995594855999883,50.54816315300008],[-4.975168423999918,50.54816315300008],[-4.967844204999921,50.551581122000115],[-4.954823370999918,50.561224677000084],[-4.947255011999886,50.56244538],[-4.941477016999897,50.55695221600014],[-4.937123175999915,50.54531484600015],[-4.934437628999945,50.53164297100003],[-4.933583136999857,50.52024974200005],[-4.926869269999883,50.52289459800015],[-4.924305792999888,50.52448151200018],[-4.920521613999966,50.52765534100014],[-4.902414516999954,50.52057526200018],[-4.860951300999942,50.51919179900001],[-4.844838019999884,50.51406484600009],[-4.855824347999941,50.52741120000009],[-4.873280402999882,50.534084377000156],[-4.906239386999857,50.54197825700011],[-4.921864386999857,50.55487702000015],[-4.920236782999921,50.564154364],[-4.915191209999904,50.572495835000055],[-4.920521613999966,50.58295319200015],[-4.920521613999966,50.58917877800009],[-4.895659959999904,50.58592357000005],[-4.821197068999936,50.58917877800009],[-4.792469855999883,50.5952009140001],[-4.776600714999859,50.60984935100011],[-4.765044725999928,50.62799713700012],[-4.749256964999887,50.64443594000004],[-4.755441860999952,50.65936920800005],[-4.751942511999886,50.67007070500007],[-4.74193274599989,50.67487213700015],[-4.728138800999885,50.67230866100006],[-4.657297329999891,50.71112702000009],[-4.645578579999892,50.723537502],[-4.637806769999884,50.74115631700012],[-4.619007941999939,50.75478750200007],[-4.577259894999912,50.77472565300015],[-4.550119594999984,50.809556382000025],[-4.554921027999882,50.89777252800009],[-4.543771938999953,50.939195054000024],[-4.536854620999861,50.947577216000134],[-4.522694464999915,50.97272370000005],[-4.526682094999899,50.980373440000065],[-4.530425584999932,50.99469635600014],[-4.531320766999926,51.00869375200001],[-4.526437954999949,51.01496002800014],[-4.437326626999891,51.01496002800014],[-4.426421678999901,51.012681382],[-4.405751105999883,51.00287506700006],[-4.395741339999915,51.000677802000084],[-4.337717251999919,50.99664948100009],[-4.317290818999879,51.000677802000084],[-4.302316860999923,51.007513739],[-4.234730597999885,51.055324611000046],[-4.229156053999873,51.06110260600009],[-4.224680141999897,51.06708405200003],[-4.218495245999918,51.07245514500006],[-4.207997199999852,51.07636139500006],[-4.2142634759999,51.086004950000024],[-4.226307745999918,51.11322663000011],[-4.228505011999913,51.12042877800015],[-4.231922980999911,51.12669505400011],[-4.24901282499988,51.14288971600014],[-4.255767381999902,51.151516018000066],[-4.222320115999935,51.14972565300017],[-4.214833136999886,51.151516018000066],[-4.20836341099988,51.16229889500006],[-4.209828253999916,51.17283763200014],[-4.217274542999917,51.181382554000045],[-4.228505011999913,51.18622467700013],[-4.228505011999913,51.19245026200009],[-4.152333136999857,51.211615302000055],[-3.969471808999856,51.22239817900005],[-3.931996222999913,51.2313500020001],[-3.913197394999883,51.23338450700011],[-3.8408910799999,51.23338450700011],[-3.818959113999881,51.236070054],[-3.787098761999857,51.24677155200011],[-3.769154425999914,51.24770742400001],[-3.63975989499994,51.226385809000035],[-3.559315558999884,51.22809479400014],[-3.434193488999937,51.20978424700017],[-3.404367641999925,51.19204336100007],[-3.38499915299991,51.18622467700013],[-3.270741339999859,51.189398505],[-3.198882615999878,51.20355866100011],[-3.162749803999958,51.20673248900008],[-3.09675045499992,51.204535223],[-3.057525193999908,51.20815664300015],[-3.029286261999857,51.22040436400012],[-3.021839972999942,51.21356842700003],[-3.035552537999877,51.19928620000012],[-3.021839972999942,51.19245026200009],[-3.004790818999908,51.213120835000105],[-3.001332160999908,51.22040436400012],[-2.999582485999923,51.233221747000144],[-3.001535610999952,51.239691473000065],[-3.004994269999941,51.24506256700012],[-3.008168097999913,51.25454336100002],[-3.007639126999948,51.29197825700005],[-3.010609503999944,51.31098053600006],[-3.021839972999942,51.32282135600012],[-3.00243079299986,51.31907786699998],[-2.992176886999914,51.32192617400012],[-2.992095506999931,51.3220482440001],[-2.988392706999889,51.331122137000094],[-2.987782355999855,51.34666575700002],[-2.979888475999871,51.35586172100007],[-2.965972459999904,51.36493561400008],[-2.959584113999881,51.374253648000106],[-2.974680141999954,51.384222723],[-2.952951626999891,51.39850495000012],[-2.921009894999884,51.39443594000015],[-2.884185350999928,51.41697825700014],[-2.816395636999914,51.4736188820001],[-2.798573370999918,51.48261139500014],[-2.780873175999915,51.489081122000144],[-2.761219855999883,51.492865302000084],[-2.737619594999927,51.494086005],[-2.716420050999943,51.499579169000114],[-2.696156378999916,51.512640692],[-2.607818162999877,51.607367255000085],[-2.599598761999886,51.61139557500003],[-2.58922278599988,51.61424388200008],[-2.580433722999913,51.61863841400015],[-2.576812303999958,51.62750885600012],[-2.57445227799991,51.6357282570001],[-2.568959113999881,51.64496491100006],[-2.562245245999918,51.65338776200012],[-2.556385870999889,51.65924713700014],[-2.499175584999904,51.69676341400016],[-2.464995897999926,51.72589752800003],[-2.447743292999917,51.73187897300015],[-2.404896613999938,51.741156317],[-2.388539191999911,51.75043366100006],[-2.380767381999931,51.76190827],[-2.383371548999918,51.77326080900018],[-2.398060675999915,51.78213125200013],[-2.402414516999897,51.763576565000115],[-2.420399542999859,51.75311920800014],[-2.443430141999925,51.74843984600012],[-2.463286912999934,51.74730052299999],[-2.482085740999878,51.74286530200011],[-2.49583899599989,51.73200104400003],[-2.507964647999898,51.718573309000035],[-2.522124803999901,51.70636627800015],[-2.581695115999906,51.681708075000145],[-2.591135219999927,51.67536041900003],[-2.600209113999938,51.665594794000086],[-2.665322474518433,51.61727832078885],[-2.665353969999956,51.617254950000174],[-2.693755662999877,51.59617747600005],[-2.71312415299991,51.586615302000084],[-2.760487433999856,51.57977936400006],[-2.798085089999859,51.56350332200013],[-2.816395636999914,51.55556875200015],[-2.858713344999899,51.54612864800005],[-2.943348761999914,51.54254791900017],[-2.956288214999915,51.54572174700003],[-2.964100714999915,51.55280182500008],[-2.969471808999884,51.55988190300015],[-2.974680141999954,51.56297435100005],[-2.984038865999906,51.558539130000085],[-3.01024329299986,51.53803131700012],[-3.015695766999897,51.531642971000096],[-3.073719855999854,51.508368231000176],[-3.076486782999921,51.50775788000011],[-3.088937954999921,51.50507233300014],[-3.10562089799987,51.497219143000066],[-3.131703253999944,51.48041413000006],[-3.13508053299995,51.476304429000024],[-3.140939907999893,51.46478913000006],[-3.145375128999888,51.45994700699999],[-3.152414516999926,51.45718008000013],[-3.16665605399993,51.456000067],[-3.172393357999908,51.45327383000013],[-3.172718878999945,51.45311107000008],[-3.160064256999874,51.431830145],[-3.167144334999932,51.410467841000056],[-3.184803839999859,51.397609768],[-3.204009568999908,51.401597397999986],[-3.218861456999946,51.402777411000116],[-3.289418097999942,51.384222723],[-3.539173956999946,51.39850495000012],[-3.557443813999896,51.40509674700017],[-3.575306769999884,51.42043691600013],[-3.604725714999859,51.445705471000096],[-3.66319739499994,51.47622304900004],[-3.676991339999859,51.477036851000136],[-3.695423956999889,51.471502997000115],[-3.717925584999875,51.47858307500017],[-3.737619594999898,51.49087148600013],[-3.748036261999914,51.500921942],[-3.749419725999871,51.50535716400016],[-3.747670050999887,51.507025458],[-3.744536912999905,51.50763580900015],[-3.741851365999935,51.508368231000176],[-3.749338344999899,51.52806224200013],[-3.751901821999895,51.53306712400017],[-3.758941209999875,51.54677969000009],[-3.770130988999881,51.563299872000165],[-3.78221594999988,51.57664622599999],[-3.790272589999915,51.58197663000014],[-3.807728644999884,51.589178778000175],[-3.816965298999946,51.59650299700009],[-3.832671678999901,51.61554596600017],[-3.841623501999948,51.621527411],[-3.854888475999871,51.623846747000144],[-3.886789516999897,51.62140534100003],[-3.962391730999883,51.61562734600015],[-3.976633266999897,51.611883856000034],[-3.989979620999918,51.60651276200015],[-3.998768683999884,51.60028717700011],[-3.999908006999902,51.59088776200018],[-3.992258266999897,51.58112213700003],[-3.981800910999908,51.57160065300015],[-3.974598761999886,51.56297435100005],[-4.016184048999946,51.56297435100005],[-4.016102667999859,51.560370184000064],[-4.020822719999956,51.555853583],[-4.026519334999961,51.55402252800012],[-4.029204881999931,51.559271552],[-4.031971808999884,51.56313711100002],[-4.038563605999883,51.56622955900009],[-4.046457485999922,51.56842682500017],[-4.053130662999905,51.5692406270001],[-4.056304490999878,51.5670433610001],[-4.065581834999904,51.557562567],[-4.070220506999931,51.55556875200015],[-4.076812303999901,51.556952216000056],[-4.087269660999908,51.5619164080001],[-4.112131313999924,51.565619208000115],[-4.121652798999946,51.56598541900014],[-4.132191535999908,51.56297435100005],[-4.14273027299987,51.556952216000056],[-4.156809048999889,51.546291408],[-4.166411912999877,51.54254791900017],[-4.176503058999856,51.544256903000175],[-4.187733527999853,51.548773505000106],[-4.196766730999855,51.54938385600009],[-4.20055091099988,51.538763739000146],[-4.213368292999917,51.539129950000145],[-4.272450324999852,51.554754950000145],[-4.289906378999888,51.55556875200015],[-4.293324347999913,51.559149481000034],[-4.295155402999882,51.56195709800009],[-4.297352667999888,51.5692406270001],[-4.27830969999988,51.578192450000024],[-4.280832485999895,51.58881256700006],[-4.28970292899993,51.601548570000105],[-4.289906378999888,51.617010809000035],[-4.255767381999902,51.623846747000144],[-4.252023891999953,51.627101955000015],[-4.241281704999949,51.63934967700008],[-4.234730597999885,51.64496491100006],[-4.228505011999913,51.637437242000104],[-4.234730597999885,51.637437242000104],[-4.234730597999885,51.63129303600011],[-4.227853969999956,51.62811920800006],[-4.22101803299995,51.623846747000144],[-4.190093553999901,51.63027578300007],[-4.139027472999913,51.63231028900019],[-4.091297980999855,51.63987864800005],[-4.070220506999931,51.66229889500006],[-4.069813605999854,51.66893138200011],[-4.070383266999897,51.67430247599999],[-4.070546027999882,51.67597077],[-4.075428839999944,51.677801825000174],[-4.087269660999908,51.66885000200012],[-4.09544837099989,51.665106512000094],[-4.106841600999871,51.66425202],[-4.146351691999911,51.66705963700015],[-4.20055091099988,51.68585846600011],[-4.214955206999946,51.67967357000013],[-4.293690558999913,51.67226797100015],[-4.315297003999915,51.677476304000045],[-4.342355923999946,51.69086334800015],[-4.366444464999887,51.70848216400015],[-4.379261847999913,51.72687409100011],[-4.33804277299987,51.72333405200014],[-4.319976365999935,51.724839585],[-4.310454881999931,51.73371002800003],[-4.32872473899991,51.73297760600009],[-4.347157355999855,51.73578522300014],[-4.362538214999887,51.74286530200011],[-4.371815558999856,51.754787502000156],[-4.368763800999943,51.75698476800015],[-4.362904425999915,51.76386139500015],[-4.358021613999938,51.773138739],[-4.358225063999896,51.78213125200013],[-4.365101691999911,51.789048570000126],[-4.371490037999904,51.78595612200006],[-4.379261847999913,51.775295315],[-4.384917772999898,51.77187734600001],[-4.392974412999933,51.763739325000174],[-4.399159308999913,51.761623440000065],[-4.409331834999875,51.763169664000095],[-4.417876756999874,51.76788971600002],[-4.426503058999884,51.775295315],[-4.445790167999917,51.77326080900018],[-4.449330206999917,51.766302802],[-4.441395636999857,51.756781317],[-4.426503058999884,51.74730052299999],[-4.460764126999948,51.73578522300014],[-4.498890753999945,51.73484935100007],[-4.574208136999914,51.741156317],[-4.603423631999931,51.73924388200005],[-4.639230923999945,51.733181057000145],[-4.645375128999945,51.732123114],[-4.678212042999945,51.7174339860001],[-4.680287238999938,51.69269440300003],[-4.689442511999857,51.691595770000085],[-4.691639777999938,51.68988678600009],[-4.691639777999938,51.68598053600009],[-4.693959113999881,51.67841217700011],[-4.712310350999928,51.65009186400009],[-4.721424933999856,51.65204498900012],[-4.734934048999918,51.65924713700014],[-4.741851365999906,51.65607330900009],[-4.7591853509999,51.64496491100006],[-4.848296678999872,51.64630768400015],[-4.863514777999853,51.64411041900017],[-4.878977016999954,51.637437242000104],[-4.887806769999941,51.62995026200004],[-4.895741339999887,51.62107982000001],[-4.904774542999917,51.613836981000176],[-4.923695441999911,51.60862864799999],[-4.931996222999913,51.5990257830001],[-4.941029425999914,51.59650299700009],[-4.946034308999856,51.59760163000011],[-4.956450975999928,51.602769273000135],[-5.021595831999973,51.61603424700014],[-5.045765753999888,51.62689850500006],[-5.036610480999883,51.637437242000104],[-5.051177537999934,51.656927802],[-5.100493943999908,51.664699611000096],[-5.119740363999938,51.67841217700011],[-5.113433397999927,51.68528880400014],[-5.036610480999883,51.67841217700011],[-5.038726365999906,51.68183014500012],[-5.041330532999893,51.68939850499999],[-5.043446417999917,51.69269440300003],[-5.028675910999937,51.69293854400017],[-5.002552863999881,51.68740469000015],[-4.988189256999902,51.68585846600011],[-4.974598761999857,51.687933661000116],[-4.941029425999914,51.700140692],[-4.892648891999897,51.70636627800015],[-4.868275519999941,51.71678294500005],[-4.8580623039999,51.718329169000086],[-4.844838019999884,51.71381256700012],[-4.844838019999884,51.72003815300008],[-4.87340247299997,51.737738348],[-4.879017706999946,51.76203034100016],[-4.862538214999887,51.782375393000066],[-4.824330206999917,51.78827545799999],[-4.824330206999917,51.79572174700017],[-4.836008266999926,51.790716864000146],[-4.864979620999918,51.783270575000145],[-4.921294725999871,51.780015367000104],[-4.933583136999857,51.775295315],[-4.917225714999915,51.775336005],[-4.905181443999908,51.77118561400006],[-4.900542772999898,51.76211172100015],[-4.906239386999857,51.74730052299999],[-4.892079230999854,51.739406643],[-4.895659959999904,51.72817617400001],[-4.910552537999877,51.71820709800012],[-4.988189256999902,51.70685455900006],[-5.00991777299987,51.70636627800015],[-5.149240688999924,51.71808502800015],[-5.166900193999936,51.71381256700012],[-5.156971808999856,51.697577216000084],[-5.16860917899993,51.688910223],[-5.182850714999858,51.68927643400012],[-5.180653449999851,51.700140692],[-5.180653449999851,51.70636627800015],[-5.230132615999906,51.73004791900017],[-5.249501105999911,51.73371002800003],[-5.228138800999886,51.73395416900017],[-5.213937954999949,51.73574453300016],[-5.202870245999918,51.74079010600009],[-5.191151495999918,51.751044012000115],[-5.176828579999949,51.759670315000115],[-5.14321855399993,51.76386139500015],[-5.125965949999909,51.76850006700009],[-5.110259568999936,51.77850983300006],[-5.107085740999878,51.78807200700005],[-5.11229407499988,51.81317780200014],[-5.113392706999917,51.82880280200011],[-5.117502407999979,51.843695380000085],[-5.125884568999936,51.856024481000034],[-5.139637824999852,51.86399974199999],[-5.146473761999886,51.857163804000045],[-5.164377407999922,51.86676666900006],[-5.203765428999901,51.87018463700006],[-5.221587693999879,51.877671617000104],[-5.235829230999883,51.87103913000006],[-5.291411912999934,51.86399974199999],[-5.310943162999905,51.86399974199999],[-5.304269985999952,51.867621161000145],[-5.29735266799986,51.87018463700006],[-5.29735266799986,51.877671617000104],[-5.300689256999874,51.88202545800003],[-5.302561001999948,51.88523997600008],[-5.300160285999908,51.88833242400015],[-5.290516730999855,51.8919945330001],[-5.290516730999855,51.89813873900009],[-5.298329230999911,51.910956122000115],[-5.288929816999911,51.91693756700012],[-5.252837693999936,51.91864655200014],[-5.234201626999948,51.923041083000115],[-5.204172329999921,51.942287502000156],[-5.191151495999918,51.94660065300015],[-5.160389777999853,51.949448960000026],[-5.119536912999905,51.958929755000106],[-5.088042772999898,51.97601959800015],[-5.085031704999892,52.001857815000065],[-5.070790167999888,52.001857815000065],[-5.070790167999888,52.00804271000014],[-5.082753058999913,52.014471747000144],[-5.081206834999875,52.021185614],[-5.070220506999902,52.02635325700011],[-5.053700324999852,52.02850983300003],[-5.026600714999915,52.02741120000014],[-5.0150447259999,52.025336005000135],[-4.961740688999924,52.00751373900006],[-4.942534959999875,52.00747304900007],[-4.913685675999943,52.014837958000086],[-4.920521613999966,52.02850983300003],[-4.901600714999858,52.02643463700018],[-4.863189256999931,52.016994533000066],[-4.841420050999972,52.014837958000086],[-4.832264777999882,52.018988348],[-4.833851691999911,52.02875397300015],[-4.838286912999905,52.04010651200012],[-4.838002081999946,52.049017645000056],[-4.830393032999921,52.052923895000056],[-4.796986456999946,52.056463934000035],[-4.777577277999853,52.064886786],[-4.763172980999883,52.075873114000146],[-4.738677537999934,52.10081614800008],[-4.720285610999895,52.113348700000174],[-4.706532355999883,52.11347077000015],[-4.673451300999943,52.09739817900008],[-4.67568925699993,52.126939195000126],[-4.637521938999953,52.13849518400015],[-4.51382402299987,52.135687567],[-4.50226803299995,52.13837311400009],[-4.495757615999878,52.143500067],[-4.490956183999884,52.1503766950001],[-4.484283006999902,52.15631745000003],[-4.454701300999943,52.162054755],[-4.434803839999859,52.17035553600009],[-4.415394660999965,52.18154531500009],[-4.385568813999953,52.20343659100003],[-4.371245897999869,52.20929596600017],[-4.354725714999887,52.21210358300011],[-4.334339972999913,52.21283600500006],[-4.3158259759999,52.21629466400004],[-4.197132941999882,52.27928294500008],[-4.139068162999905,52.33022695500007],[-4.10960852799991,52.36530182500014],[-4.096262173999918,52.38788483300014],[-4.087391730999883,52.43012116100006],[-4.078968878999916,52.453029690000065],[-4.067941860999952,52.47361888199999],[-4.056548631999902,52.487860419000114],[-4.061838344999984,52.49705638200008],[-4.064035610999952,52.50918203300007],[-4.062570766999897,52.520982164000046],[-4.056548631999902,52.529445705000064],[-4.048491990999878,52.53046295800014],[-4.026600714999944,52.523382880000085],[-4.016184048999946,52.52195872600011],[-3.998768683999884,52.52594635600009],[-3.947336391999982,52.549261786],[-3.947336391999982,52.556708075000174],[-3.97447669199991,52.556545315],[-4.025868292999917,52.545355536],[-4.053130662999905,52.542425848000065],[-4.068470831999946,52.55011627800008],[-4.114125128999888,52.58860911699999],[-4.12547766799986,52.60390859600015],[-4.122222459999904,52.628729559000085],[-4.105946417999888,52.65350983300006],[-4.084828253999945,52.67267487200003],[-4.067128058999856,52.680243231000176],[-4.063547329999892,52.68309153900013],[-4.058827277999882,52.69660065300009],[-4.056548631999902,52.700669664000046],[-4.052723761999886,52.70221588700009],[-4.04198157499988,52.70465729400003],[-4.001088019999941,52.724107164000124],[-3.988270636999914,52.73427969000006],[-4.014719204999892,52.73232656500012],[-4.031971808999884,52.72394440300015],[-4.048817511999886,52.72158437700001],[-4.125152147999927,52.778306382],[-4.144357876999891,52.80280182500012],[-4.14903723899991,52.81207916900017],[-4.146229620999861,52.82021719000009],[-4.128895636999857,52.8236351580001],[-4.117339647999927,52.83075592700005],[-4.119781053999873,52.84625885600014],[-4.127756313999924,52.861721096000096],[-4.132191535999908,52.86831289300015],[-4.131988084999932,52.88247304900006],[-4.129872199999852,52.88922760600012],[-4.123605923999889,52.893255927],[-4.064035610999952,52.91917552299999],[-4.071400519999884,52.92108795800014],[-4.074574347999942,52.92279694200014],[-4.077626105999911,52.926662502000156],[-4.089100714999887,52.918850002000156],[-4.100493943999936,52.914129950000145],[-4.110585089999887,52.9156761740001],[-4.118560350999871,52.926662502000156],[-4.144398566999882,52.9147809920001],[-4.171620245999889,52.913478908000016],[-4.228505011999913,52.91917552299999],[-4.300689256999902,52.90558502800003],[-4.317290818999879,52.89935944200006],[-4.337310350999928,52.89203522300006],[-4.406605597999885,52.89252350500006],[-4.427235480999911,52.88597239800008],[-4.446197068999936,52.875921942],[-4.481678839999915,52.85089752800009],[-4.4779353509999,52.848334052000084],[-4.475493943999936,52.84414297100015],[-4.491363084999875,52.83820221600003],[-4.500965949999852,52.82680898600016],[-4.50133216099988,52.81391022300015],[-4.489125128999888,52.80316803600011],[-4.501942511999914,52.79498932500003],[-4.509185350999871,52.791449286000145],[-4.516468878999973,52.789496161],[-4.528553839999887,52.790472723000065],[-4.542469855999855,52.80068594],[-4.563954230999882,52.80524323100015],[-4.583078579999949,52.81464264500009],[-4.594634568999879,52.81679922100007],[-4.606516079999921,52.815090236000074],[-4.61351477799991,52.81110260600009],[-4.619211391999897,52.80654531500015],[-4.626332160999937,52.80316803600011],[-4.648589647999898,52.799627997000144],[-4.704497850999871,52.80316803600011],[-4.719309048999917,52.79751211100013],[-4.733225063999896,52.78750234600015],[-4.747425910999907,52.783433335],[-4.762847459999932,52.789496161],[-4.752512173999946,52.79877350500006],[-4.751454230999883,52.80320872600011],[-4.755441860999952,52.809312242000104],[-4.749256964999887,52.81427643400015],[-4.734934048999918,52.83047109600001],[-4.596058722999942,52.92841217700005],[-4.580962693999936,52.933498440000065],[-4.562082485999923,52.93451569200012],[-4.543527798999918,52.93793366100014],[-4.523996548999918,52.9442406270001],[-4.443430141999953,52.9821638040001],[-4.423695441999938,53.002630927000084],[-4.358225063999896,53.02846914300009],[-4.349964972999913,53.04148997599999],[-4.345692511999886,53.05947500200001],[-4.343861456999917,53.10106028900002],[-4.340891079999892,53.112738348000086],[-4.334339972999913,53.116766669000135],[-4.327626105999882,53.114691473000114],[-4.32469641799986,53.10789622600011],[-4.320668097999885,53.10150788],[-4.312245245999918,53.10944245000014],[-4.304758266999954,53.12099844000009],[-4.303618943999936,53.125311591000084],[-4.263539191999911,53.15452708500011],[-4.252349412999905,53.159409897999986],[-4.234527147999927,53.16400788000011],[-4.221302863999881,53.17503489800007],[-4.20055091099988,53.20099518400015],[-4.17796790299991,53.21759674700003],[-4.151519334999931,53.228094794000086],[-4.122222459999904,53.23346588700015],[-4.090687628999916,53.235174872000144],[-4.082346157999922,53.23354726800012],[-4.074330206999889,53.23065827],[-4.066883917999917,53.22907135600015],[-4.054107225999871,53.23436107000005],[-4.032297329999921,53.24070872600008],[-4.008900519999941,53.24445221600011],[-3.974598761999886,53.26178620000009],[-3.865305141999954,53.289129950000174],[-3.831288214999944,53.289129950000174],[-3.841420050999886,53.30744049700003],[-3.870757615999906,53.32562897300012],[-3.87840735599994,53.33759186400006],[-3.85997473899991,53.33633047100015],[-3.840565558999884,53.332831122000144],[-3.822987433999856,53.32656484600001],[-3.810129360999923,53.317084052],[-3.790516730999883,53.323431708000115],[-3.768869594999984,53.31915924700003],[-3.74819902299987,53.30780670800014],[-3.73192298099994,53.29287344],[-3.716297980999854,53.28693268400018],[-3.602202928999958,53.288885809000035],[-3.562326626999891,53.29441966400004],[-3.372059699999909,53.350897528000175],[-3.330311652999882,53.35179271000008],[-3.292388475999957,53.340521552000084],[-3.271311001999919,53.33055247599999],[-3.26207434799997,53.32050202],[-3.250803188999953,53.312567450000145],[-3.122222459999932,53.262274481000176],[-3.107533331999917,53.251898505],[-3.0951228509999,53.239325262000094],[-3.087757941999911,53.23468659100017],[-3.084543423999946,53.23859284100017],[-3.084543423999946,53.25857168200004],[-3.084543423999946,53.258577179000056],[-3.084543423999946,53.27545807500003],[-3.09593665299991,53.28713613500004],[-3.111195441999882,53.30280182500012],[-3.135406053999873,53.33380768400003],[-3.171538865999906,53.36225006700015],[-3.185210740999934,53.37726471600017],[-3.186350063999896,53.39276764500009],[-3.17552649599989,53.40273672100007],[-3.157297329999921,53.40875885600017],[-3.114654100999871,53.412665106000176],[-3.094227667999917,53.417385158000094],[-3.058257615999934,53.43475983300005],[-3.035552537999877,53.433742580000015],[-3.012196417999888,53.41669342700005],[-2.952951626999891,53.32391998900012],[-2.935129360999923,53.30947500200015],[-2.910552537999905,53.296332098],[-2.88149980399993,53.28839752800003],[-2.850575324999909,53.289129950000174],[-2.849598761999914,53.291205145000085],[-2.848378058999913,53.295558986000074],[-2.844960089999887,53.30011627800003],[-2.837554490999906,53.30280182500012],[-2.828602667999888,53.302435614],[-2.813384568999908,53.29775625200006],[-2.806141730999883,53.296576239000146],[-2.789784308999856,53.29743073100015],[-2.775502081999974,53.29987213700018],[-2.748117641999897,53.30963776200012],[-2.753651495999918,53.32245514500006],[-2.750884568999879,53.33161041900006],[-2.743153449999852,53.33852773600013],[-2.734486456999946,53.344427802000084],[-2.726144985999895,53.34198639500012],[-2.717437303999901,53.34271881700006],[-2.708607550999943,53.34613678600009],[-2.699777798999889,53.35179271000008],[-2.714100714999887,53.35236237200002],[-2.764393683999856,53.345160223],[-2.775380011999885,53.34100983300005],[-2.782378709999875,53.32636139500015],[-2.799794074999852,53.32103099199999],[-2.810332811999899,53.32172272300012],[-2.843658006999902,53.32391998900012],[-2.88646399599989,53.333563544000086],[-2.924956834999875,53.35000234600009],[-2.956939256999874,53.37055084800012],[-2.980824347999942,53.39276764500009],[-3.096587693999879,53.544338283000016],[-3.101918097999913,53.55805084800012],[-3.099476691999882,53.57200755400011],[-3.087635870999918,53.58771393400015],[-3.021839972999942,53.6528181010001],[-2.968658006999874,53.69403717700005],[-2.9603572259999,53.697577216000134],[-2.951730923999889,53.70807526200012],[-2.911447719999899,53.725043036],[-2.899037238999881,53.73541901200017],[-2.984852667999917,53.73607005400014],[-3.021473761999857,53.74579498900009],[-3.049183722999942,53.76951732000002],[-3.056385870999861,53.803045966000056],[-3.044911261999914,53.87848541900017],[-3.056630011999914,53.90615469000006],[-3.040679490999906,53.92352936400006],[-3.017567511999857,53.93195221600011],[-2.925689256999902,53.95270416900011],[-2.909250454999921,53.95384349200004],[-2.896107550999943,53.947739976000044],[-2.888539191999911,53.94603099200005],[-2.885365363999938,53.95050690300011],[-2.881988084999932,53.9565290390001],[-2.874175584999932,53.96165599200013],[-2.865142381999931,53.96548086100013],[-2.857980923999889,53.967596747000144],[-2.869252081999889,53.97882721600014],[-2.834462042999916,53.99982330900009],[-2.830067511999857,54.01601797100015],[-2.847523566999911,54.00836823100012],[-2.864857550999886,54.00429922100007],[-2.895497199999909,54.00234609600001],[-2.900298631999902,54.004950262000115],[-2.916086391999926,54.026556708000115],[-2.918202277999853,54.034328518],[-2.911284959999932,54.039984442],[-2.900786912999877,54.04490794500008],[-2.892079230999883,54.05011627800015],[-2.872670050999886,54.07160065300009],[-2.858876105999883,54.081000067000026],[-2.826771613999909,54.088812567],[-2.815174933999884,54.098781643],[-2.795969204999921,54.125189520000085],[-2.812814907999922,54.13987864799999],[-2.836415167999888,54.16758860900008],[-2.850941535999908,54.18463776200004],[-2.854237433999856,54.19407786700005],[-2.832875128999888,54.19904205900009],[-2.810292120999918,54.21190013200011],[-2.795236782999893,54.22947825700005],[-2.795969204999921,54.248724677],[-2.802805141999954,54.248724677],[-2.806630011999857,54.23371002800017],[-2.820871548999975,54.22174713700004],[-2.850575324999909,54.20774974199999],[-2.886382615999906,54.19627513200013],[-2.904652472999885,54.18764883000013],[-2.912668423999918,54.17698802300002],[-2.920399542999945,54.16205475500006],[-2.939198370999889,54.155096747000144],[-2.984201626999976,54.153143622000115],[-2.997710740999935,54.15957265800012],[-3.011341925999886,54.17413971600014],[-3.017323370999918,54.19009023600016],[-3.008168097999913,54.20034414300009],[-3.015370245999861,54.21190013200011],[-3.024484829999949,54.22158437700006],[-3.035755988999938,54.22597890800015],[-3.049183722999942,54.22207265800015],[-3.04466712099989,54.20831940300015],[-3.047840949999852,54.194322007],[-3.053537563999924,54.18130117400001],[-3.056630011999914,54.17023346600014],[-3.061024542999888,54.16193268400018],[-3.090728318999908,54.13947174700017],[-3.10765540299991,54.118557033000016],[-3.117909308999912,54.108832098000065],[-3.145253058999913,54.100043036],[-3.14745032499988,54.08869049700003],[-3.14439856699991,54.075140692000055],[-3.145375128999888,54.06378815300008],[-3.180531378999945,54.09284088700014],[-3.189768032999893,54.09788646000002],[-3.205718553999901,54.098537502000156],[-3.219553188999896,54.100775458000136],[-3.23110917899993,54.105129299000126],[-3.240956183999856,54.112127997000115],[-3.238107876999919,54.12759023600013],[-3.232533331999889,54.14468008000007],[-3.233143683999856,54.1591657570001],[-3.248402472999913,54.166815497000144],[-3.248402472999913,54.17365143400015],[-3.215199347999913,54.17983633000013],[-3.206776495999861,54.20892975500003],[-3.209055141999926,54.24274323100017],[-3.207386847999913,54.26300690300009],[-3.223133917999888,54.25763580900003],[-3.231353318999879,54.247219143000144],[-3.240956183999856,54.22207265800015],[-3.232167120999889,54.202541408000066],[-3.247141079999921,54.197943427000055],[-3.27013098899991,54.199123440000065],[-3.286000128999916,54.19721100500011],[-3.306792772999927,54.191880601000044],[-3.328521287999877,54.20473867400007],[-3.364491339999858,54.24249909100005],[-3.394195115999878,54.26439036700007],[-3.407378709999932,54.27773672100009],[-3.412912563999953,54.29376862200017],[-3.410389777999853,54.30145905199999],[-3.405995245999861,54.309637762000094],[-3.404123501999891,54.31854889500012],[-3.411447719999899,54.33274974200005],[-3.413441535999937,54.342962958],[-3.41633053299995,54.34491608300014],[-3.440174933999856,54.35175202000014],[-3.474273240999963,54.393500067],[-3.497710740999934,54.40582916900005],[-3.591867641999926,54.483099677000055],[-3.608143683999884,54.48826732000008],[-3.613189256999902,54.49164459800009],[-3.623687303999873,54.50608958500014],[-3.634185350999956,54.51288483300005],[-3.626820441999939,54.52041250200004],[-3.616200324999909,54.52757396000005],[-3.611561652999882,54.52993398600002],[-3.590321417999888,54.56464264500009],[-3.563832160999937,54.642767645],[-3.530140753999916,54.688055731000034],[-3.516021287999905,54.71287669499999],[-3.509185350999871,54.72166575700005],[-3.500721808999856,54.72597890800013],[-3.478871222999885,54.73090241100003],[-3.46812903599988,54.735296942],[-3.455433722999913,54.74502187700013],[-3.439564581999889,54.76146067900014],[-3.430978969999956,54.780462958000136],[-3.440174933999856,54.79743073100012],[-3.407541469999898,54.85602448100014],[-3.387928839999859,54.883368231000034],[-3.364491339999858,54.899807033000016],[-3.344960089999887,54.90253327000009],[-3.333363410999879,54.897284247000115],[-3.322743292999917,54.889878648000106],[-3.306467251999891,54.886175848000065],[-3.295725063999981,54.88690827],[-3.254628058999884,54.899807033000016],[-3.267323370999861,54.9055036480001],[-3.317290818999879,54.92031484600007],[-3.29149329299986,54.936672268000095],[-3.276519334999932,54.94342682500003],[-3.213612433999884,54.954413153000175],[-3.201039191999882,54.95221588700009],[-3.193674282999893,54.948635158000016],[-3.187977667999917,54.94448476800009],[-3.180165167999917,54.94082265800013],[-3.142811652999882,54.93353913000011],[-3.12279212099989,54.932684637000115],[-3.03954016799986,54.947170315000065],[-3.021839972999942,54.954413153000175],[-3.090728318999908,54.954413153000175],[-3.090728318999908,54.961249091000106],[-3.071522589999858,54.96312083500008],[-3.056223110999895,54.968817450000145],[-3.040923631999931,54.972479559000085],[-3.021839972999942,54.96808502800012],[-3.021839972999942,54.975531317],[-3.046294725999899,54.98212311400006],[-3.050282355999883,54.98151276200012],[-3.050291125459182,54.98151137867244],[-3.135406053999873,54.96808502800012],[-3.453846808999884,54.98175690300015],[-3.470692511999886,54.98444245000003],[-3.486236131999902,54.98948802300008],[-3.501047329999948,54.99249909100017],[-3.515288865999878,54.98920319200012],[-3.51235917899993,54.987127997000115],[-3.511463995999861,54.98688385600015],[-3.510894334999875,54.98598867400007],[-3.509185350999871,54.98175690300015],[-3.526031053999872,54.977118231000034],[-3.541859503999916,54.98065827],[-3.570546027999882,54.99542877800009],[-3.583607550999943,54.96808502800012],[-3.575672980999883,54.95734284100011],[-3.57062740799995,54.937567450000174],[-3.568755662999905,54.91600169500008],[-3.570546027999882,54.899807033000016],[-3.581695115999907,54.88361237200017],[-3.598378058999856,54.87799713700015],[-3.691761847999913,54.88320547100006],[-3.717640753999944,54.880845445000105],[-3.739247199999852,54.85980866100009],[-3.810129360999923,54.86627838700018],[-3.807850714999859,54.861070054],[-3.806792772999898,54.86090729400002],[-3.80333411399991,54.85887278900002],[-3.81236731699991,54.85516998900014],[-3.819813605999884,54.85590241100009],[-3.82607988199993,54.85993073100015],[-3.831288214999944,54.86627838700018],[-3.819976365999935,54.878566799000126],[-3.815052863999881,54.87714264500006],[-3.810129360999923,54.872503973000114],[-3.811634894999883,54.880031643],[-3.813221808999912,54.883124091000084],[-3.816965298999946,54.886175848000065],[-3.828846808999913,54.87498607000008],[-3.844309048999918,54.86627838700018],[-3.839751756999874,54.85590241100009],[-3.837473110999895,54.85199616100009],[-3.844105597999885,54.850978908000016],[-3.857899542999888,54.844549872000115],[-3.823841925999943,54.8246931010001],[-3.833607550999886,54.82005442900008],[-3.885731574999852,54.80646393400012],[-3.964182094999984,54.771918036000116],[-4.011708136999886,54.768215236000074],[-4.042876756999874,54.769476630000085],[-4.042876756999874,54.77692291900014],[-4.046783006999874,54.77802155200002],[-4.050200975999871,54.77855052299999],[-4.053334113999938,54.779974677000055],[-4.055775519999884,54.78253815300014],[-4.052967902999853,54.785467841000084],[-4.050160285999879,54.78900788000006],[-4.049712693999879,54.78998444200011],[-4.051747199999909,54.800034898000106],[-4.047718878999945,54.813055731000084],[-4.049956834999931,54.82322825700014],[-4.063588019999884,54.82684967700003],[-4.064035610999952,54.83152903900013],[-4.078602667999888,54.82412344000012],[-4.090077277999853,54.80975983300006],[-4.093495245999861,54.79266998900011],[-4.083851691999882,54.77692291900014],[-4.122954881999931,54.77301666900014],[-4.173939581999946,54.79230377800009],[-4.209136522999898,54.826239325000145],[-4.20055091099988,54.86627838700018],[-4.215402798999946,54.861029364],[-4.239735480999911,54.84300364800007],[-4.255767381999902,54.838324286000145],[-4.270741339999944,54.83942291900008],[-4.345285610999895,54.86017487200009],[-4.356922980999883,54.86554596600014],[-4.365630662999877,54.872503973000114],[-4.37515214799987,54.88690827],[-4.37987219999988,54.89789459800006],[-4.386789516999983,54.90477122600008],[-4.402902798999946,54.90729401200017],[-4.409006313999924,54.90302155200008],[-4.416818813999924,54.89280833500014],[-4.423573370999861,54.88035716400013],[-4.426503058999884,54.869452216000134],[-4.417225714999944,54.845933335],[-4.409413214999859,54.831244208],[-4.402902798999946,54.8246931010001],[-4.386708136999886,54.824164130000106],[-4.372425910999908,54.82184479400014],[-4.359608527999882,54.816636460000076],[-4.347645636999857,54.80731842700011],[-4.344471808999884,54.794501044000086],[-4.353179490999963,54.783107815000115],[-4.358143683999913,54.77098216400013],[-4.343861456999917,54.75641510600009],[-4.356516079999892,54.74188873900006],[-4.353260870999947,54.72089264500012],[-4.348133917999917,54.70197174700011],[-4.354725714999887,54.693793036],[-4.360340949999909,54.69159577],[-4.365305141999954,54.68695709800009],[-4.371896938999924,54.68227773600016],[-4.382394985999895,54.68008047100007],[-4.405262824999909,54.68207428600003],[-4.426503058999884,54.687567450000024],[-4.45181230399993,54.69879791900006],[-4.461171027999882,54.701239325000174],[-4.49673417899993,54.700628973000036],[-4.50560462099989,54.704657294000086],[-4.563628709999961,54.75641510600009],[-4.596669074999909,54.77529531500012],[-4.714466925999942,54.81785716399999],[-4.75959225199989,54.825344143000144],[-4.781076626999918,54.83307526200015],[-4.799631313999924,54.861273505000135],[-4.821034308999884,54.866644598],[-4.859120245999861,54.86627838700018],[-4.883046027999853,54.860093492000104],[-4.905873175999942,54.849798895],[-4.925770636999857,54.837388414000074],[-4.941029425999914,54.8246931010001],[-4.949615037999934,54.81582265800016],[-4.953684048999889,54.810003973],[-4.954823370999918,54.80475495000012],[-4.954701300999943,54.79743073100012],[-4.95287024599989,54.788967190000065],[-4.94790605399993,54.77732982000008],[-4.940256313999896,54.76703522300015],[-4.930165167999917,54.76264069200006],[-4.923247850999928,54.751857815000065],[-4.911936001999948,54.72821686400012],[-4.895985480999855,54.704535223],[-4.867258266999897,54.69013092700014],[-4.866932745999861,54.68146393400015],[-4.872141079999949,54.66331614800005],[-4.872425910999879,54.65403880399999],[-4.87205969999988,54.649237372000115],[-4.859120245999861,54.632961330000064],[-4.88060462099989,54.63621653900013],[-4.923491990999878,54.64972565300008],[-4.944081183999913,54.652777411],[-4.953684048999889,54.65973541900017],[-4.959868943999936,54.67552317900011],[-4.958973761999857,54.69196198100011],[-4.947255011999886,54.701239325000174],[-4.954823370999918,54.707464911000116],[-4.958892381999874,54.71405670800003],[-4.959055141999926,54.720933335000105],[-4.954701300999943,54.72850169500008],[-4.973378058999912,54.729722397999986],[-4.981556769999941,54.73163483300014],[-4.988189256999902,54.735296942],[-4.99266516799986,54.744330145],[-4.997059699999852,54.75836823100014],[-5.003285285999908,54.77130768400014],[-5.013010219999956,54.77692291900014],[-5.033192511999886,54.78241608299999],[-5.128244594999899,54.84894440300009],[-5.157134568999908,54.879095770000035],[-5.175526495999861,54.91461823100009],[-5.180653449999851,54.954413153000175],[-5.177601691999882,54.99054596600003],[-5.170806443999936,55.00869375200004],[-5.156727667999888,55.016546942],[-5.135609503999888,55.015855210000055],[-5.124582485999923,55.01679108300014],[-5.119740363999938,55.01992422100012],[-5.11514238199993,55.03156159100002],[-5.105213995999918,55.02619049700017],[-5.095529751999948,55.01508209800015],[-5.091867641999897,55.009711005],[-5.076893683999884,54.995550848000065],[-5.069488084999875,54.98602936400006],[-5.064564581999917,54.975531317],[-5.063791469999899,54.96458567900013],[-5.065256313999953,54.94033437700012],[-5.060861782999893,54.931138414000074],[-5.047515428999873,54.92031484600007],[-5.03099524599989,54.91132233300006],[-5.013091600999928,54.90961334800015],[-4.995594855999883,54.92031484600007],[-4.992298956999946,54.92426178600005],[-4.988189256999902,54.92772044500007],[-4.988189256999902,54.93455638200008],[-5.024077928999901,54.976385809000085],[-5.029774542999888,54.985500393000095],[-5.03250077999985,54.99371979400008],[-5.033029751999919,54.99526601800012],[-5.047027147999898,55.01508209800015],[-5.05028235599994,55.026800848000114],[-5.049672003999888,55.0489769550001],[-5.047596808999856,55.05573151200004],[-5.043446417999917,55.06427643400015],[-5.025786912999905,55.088690497000115],[-5.018950975999871,55.102240302000084],[-5.016184048999918,55.122626044000135],[-5.007801886999857,55.14118073100015],[-4.988270636999886,55.15265534100011],[-4.947255011999886,55.167914130000085],[-4.882394985999895,55.21857330900015],[-4.87755286399991,55.220892645000035],[-4.867258266999897,55.22247955900006],[-4.865305141999926,55.22565338700012],[-4.865589972999885,55.23631419500005],[-4.864816860999952,55.24135976800006],[-4.841949022999927,55.27509186400006],[-4.838002081999946,55.284002997000115],[-4.837228969999927,55.29385000200013],[-4.839751756999959,55.315578518],[-4.838002081999946,55.325018622000115],[-4.832508917999917,55.331122137000094],[-4.799224412999934,55.35472239800005],[-4.781076626999918,55.36351146000011],[-4.773101365999878,55.369370835000055],[-4.767160610999952,55.379055080000015],[-4.75877844999988,55.40228913000014],[-4.749256964999887,55.41376373900009],[-4.717030402999853,55.430487372000115],[-4.650502081999946,55.44847239800004],[-4.626332160999937,55.468410549000126],[-4.61778723899991,55.495591539000046],[-4.626779751999948,55.51972077000006],[-4.650786912999877,55.537054755000135],[-4.687163865999878,55.54413483300003],[-4.66624915299991,55.56220123900012],[-4.66649329299986,55.56329987200017],[-4.671131964999887,55.58441803600009],[-4.692738410999879,55.60521067900008],[-4.721994594999898,55.61920807500003],[-4.776519334999875,55.632879950000174],[-4.808745897999927,55.63361237200009],[-4.818104620999861,55.63719310100008],[-4.810617641999897,55.64655182500012],[-4.810617641999897,55.65399811400009],[-4.8685603509999,55.67560455900018],[-4.900990363999881,55.69232819200003],[-4.920521613999966,55.708563544000135],[-4.87633216099988,55.73525625200007],[-4.861073370999918,55.756740627],[-4.865305141999926,55.790472723],[-4.871734178999958,55.80243561400011],[-4.877797003999945,55.81102122600005],[-4.882720506999902,55.82135651200015],[-4.888661261999943,55.864528713000155],[-4.888824022999898,55.865301825000174],[-4.892648891999897,55.892889716000084],[-4.886463995999861,55.919663804000024],[-4.872141079999949,55.93720123900014],[-4.849354620999918,55.948228257],[-4.818104620999861,55.955633856000176],[-4.799387173999889,55.957912502000156],[-4.78579667899993,55.95697663000006],[-4.722320115999935,55.940090236000074],[-4.705433722999942,55.938462632000046],[-4.693959113999881,55.941351630000085],[-4.672515428999873,55.93378327000012],[-4.505970831999889,55.91909414300012],[-4.481678839999915,55.92829010600009],[-4.590606248999904,55.94151439000014],[-4.630034959999875,55.94627513200014],[-4.673451300999943,55.96185944200011],[-4.724517381999931,55.99835846600008],[-4.765044725999928,56.00706614800008],[-4.783436652999882,56.017645575000024],[-4.799224412999934,56.03095123900014],[-4.810617641999897,56.04376862200017],[-4.823719855999855,56.07367584800006],[-4.824330206999917,56.078517971000124],[-4.839182094999899,56.08063385600015],[-4.844309048999889,56.072984117000104],[-4.843739386999914,56.06297435100013],[-4.837554490999878,56.050604559000085],[-4.790150519999941,56.010199286000145],[-4.778920050999915,55.99209219000012],[-4.78530839799987,55.98403554900001],[-4.803618943999908,55.982082424000154],[-4.828033006999874,55.982326565],[-4.851551886999914,55.98802317899999],[-4.862294074999852,56.00214264500003],[-4.865386522999927,56.02020905200014],[-4.866851365999878,56.05833567900011],[-4.865386522999927,56.06671784100017],[-4.82632402299987,56.12421295800006],[-4.755441860999952,56.18838125200001],[-4.750884568999908,56.202704169000086],[-4.755523240999935,56.2065290390001],[-4.766265428999873,56.20209381700015],[-4.779937303999901,56.19147370000009],[-4.837269660999937,56.124416408000016],[-4.851673956999889,56.11261627800014],[-4.873117641999925,56.112005927],[-4.88060462099989,56.11985911700007],[-4.878977016999954,56.15053945500007],[-4.883168097999913,56.16400788000006],[-4.893544074999909,56.17426178600009],[-4.907093878999973,56.17706940300003],[-4.920521613999966,56.16791413000006],[-4.909087693999908,56.149969794000114],[-4.895253058999913,56.11473216400007],[-4.886219855999911,56.08038971600011],[-4.889149542999917,56.06484609600001],[-4.901926235999952,56.06191640800007],[-4.904367641999897,56.054348049000126],[-4.900054490999906,56.03412506700003],[-4.900054490999906,56.01459381700012],[-4.898019985999952,56.00116608300014],[-4.892648891999897,55.98973216399999],[-4.906402147999927,55.985744533],[-4.921457485999952,55.988674221000124],[-4.937489386999942,55.99384186400012],[-4.954701300999943,55.9965681010001],[-4.954701300999943,55.98973216399999],[-4.942005988999881,55.986314194999984],[-4.928863084999931,55.981146552000084],[-4.91844641799986,55.973334052000084],[-4.913685675999943,55.96185944200011],[-4.9173884759999,55.94745514500006],[-4.927235480999911,55.93768952000012],[-4.938710089999859,55.92963288],[-4.947255011999886,55.92084381700012],[-4.952137824999852,55.90912506700015],[-4.954986131999873,55.899359442],[-4.95921790299991,55.89012278900004],[-4.968983527999853,55.87986888200011],[-4.983143683999884,55.87103913000006],[-4.994740363999881,55.86981842700013],[-5.02635657499988,55.87372467700013],[-5.042469855999855,55.88475169499999],[-5.056752081999917,55.91030508000007],[-5.066802537999905,55.938788153000175],[-5.070790167999888,55.95868561400006],[-5.110829230999911,55.988959052000055],[-5.116037563999924,56.0016950540001],[-5.123605923999945,56.009914455],[-5.139637824999852,56.002752997000165],[-5.123768683999913,55.986314194999984],[-5.085682745999947,55.93187083500008],[-5.078236456999946,55.910956122000115],[-5.086537238999938,55.90127187700015],[-5.105620897999927,55.90497467699999],[-5.171538865999878,55.93553294500013],[-5.180653449999851,55.948431708000136],[-5.180653449999851,55.96930573100012],[-5.1908259759999,55.96173737200014],[-5.199615037999877,55.94855377800011],[-5.205718553999873,55.93451569200006],[-5.207915818999936,55.924627997000144],[-5.212635870999861,55.917141018000095],[-5.242054816999939,55.892889716000084],[-5.21812903599988,55.864691473000114],[-5.208159959999904,55.8492699240001],[-5.201079881999931,55.831488348],[-5.219390428999901,55.831447658],[-5.263172980999855,55.84577057500009],[-5.296701626999891,55.852687893],[-5.307118292999888,55.86041901200012],[-5.313384568999936,55.88544342700011],[-5.31932532499988,55.88910553600008],[-5.327219204999949,55.891546942],[-5.334828253999888,55.89667389500012],[-5.338286912999877,55.90375397300009],[-5.339100714999886,55.91303131700012],[-5.338286912999877,55.931382554],[-5.336089647999898,55.939195054],[-5.326161261999886,55.95026276200012],[-5.32396399599989,55.95868561400006],[-5.325754360999895,55.967230536],[-5.338286912999877,55.9965681010001],[-5.313628709999875,56.012355861000124],[-5.204497850999928,56.11945221600017],[-5.146473761999886,56.133124091000106],[-5.10460364499994,56.15151601800015],[-5.094960089999887,56.157375393000095],[-5.059437628999916,56.203111070000105],[-5.043446417999917,56.216294664000046],[-5.013295050999886,56.22760651200004],[-4.974964972999942,56.237005927000055],[-4.94009355399993,56.25141022300012],[-4.920521613999966,56.277777411000116],[-4.938099738999881,56.270982164000095],[-4.975087042999917,56.24799225500011],[-4.991932745999918,56.24298737200017],[-5.032704230999911,56.241156317],[-5.049549933999913,56.23704661700005],[-5.064564581999917,56.22931549700006],[-5.075428839999915,56.216986395],[-5.099436001999948,56.18195221600011],[-5.108876105999883,56.17470937700007],[-5.228138800999886,56.12921784100011],[-5.310943162999905,56.058050848000065],[-5.319935675999915,56.05491771],[-5.338042772999927,56.0541039080001],[-5.345692511999857,56.05121491100006],[-5.345285610999952,56.046128648000135],[-5.35020911399991,56.03192780200011],[-5.356353318999907,56.01976146000014],[-5.359364386999914,56.020738023000106],[-5.368641730999855,56.00942617400012],[-5.390288865999935,56.00568268400009],[-5.415028449999908,56.00690338700012],[-5.433827277999882,56.010199286000145],[-5.434559699999909,56.01496002800014],[-5.434722459999875,56.02362702000015],[-5.437123175999914,56.03001536700007],[-5.444406704999921,56.02757396000011],[-5.447906053999901,56.022284247000144],[-5.448231574999852,56.016058661],[-5.447621222999885,56.00942617400012],[-5.454986131999874,55.955633856000176],[-5.45140540299991,55.953436591000084],[-5.436431443999878,55.94896067900011],[-5.430775519999884,55.948187567],[-5.420806443999879,55.92829010600009],[-5.416737433999913,55.916815497000144],[-5.416005011999886,55.90741608300014],[-5.412505662999905,55.89960358300014],[-5.400380011999913,55.892889716000084],[-5.400380011999913,55.88670482000013],[-5.407215949999936,55.88670482000013],[-5.407215949999936,55.87986888200011],[-5.40294348899991,55.87872955900018],[-5.39289303299995,55.87372467700013],[-5.397694464999915,55.871568101000136],[-5.402495897999927,55.868353583000086],[-5.407215949999936,55.86627838700015],[-5.351796027999853,55.832424221000096],[-5.326771613999938,55.808579820000105],[-5.317779100999928,55.783026434000114],[-5.324574347999942,55.76923248900012],[-5.33853105399993,55.76264069200014],[-5.37242591099988,55.75641510600017],[-5.387562628999888,55.75031159100008],[-5.433461066999939,55.72101471600017],[-5.444569464999887,55.711615302000055],[-5.453968878999916,55.7005882830001],[-5.461171027999853,55.688137111000074],[-5.463612433999884,55.679836330000015],[-5.46617591099988,55.66217682500009],[-5.468617316999911,55.65399811400009],[-5.490101691999939,55.644598700000145],[-5.488270636999886,55.640326239000146],[-5.484283006999902,55.63572825700011],[-5.482289191999938,55.632879950000174],[-5.483876105999883,55.61005280200005],[-5.474761522999898,55.60394928600006],[-5.46263587099989,55.60203685100011],[-5.454986131999874,55.59194570500012],[-5.46108964799987,55.578802802],[-5.476918097999885,55.574896552],[-5.48875891799986,55.569077867000125],[-5.482289191999938,55.55027903899999],[-5.503529425999942,55.526516018000095],[-5.509632941999911,55.51679108300014],[-5.510609503999887,55.51146067900008],[-5.509632941999911,55.492580471000124],[-5.510975714999915,55.48444245000003],[-5.514271613999938,55.48387278900004],[-5.518788214999915,55.485174872000144],[-5.523264126999976,55.48265208500014],[-5.54552161399991,55.44916413],[-5.561512824999908,55.43553294500005],[-5.584624803999873,55.42743561400012],[-5.584624803999873,55.42121002800015],[-5.572132941999968,55.422308661],[-5.562082485999895,55.41986725500006],[-5.553089972999885,55.41453685100002],[-5.543690558999856,55.406927802000055],[-5.527455206999888,55.384344794000086],[-5.526682094999984,55.38027578300013],[-5.514963344999899,55.37368398600015],[-5.525054490999963,55.358628648000135],[-5.557972785999937,55.33185455900003],[-5.574370897999927,55.3220075540001],[-5.594105597999885,55.31313711100015],[-5.616281704999949,55.306586005000085],[-5.639963344999956,55.30390045799999],[-5.649525519999941,55.30516185100011],[-5.669097459999932,55.310858466000084],[-5.680897589999887,55.31134674700017],[-5.691395636999856,55.308579820000105],[-5.714019334999932,55.299139716000106],[-5.725575324999852,55.297064520000085],[-5.75454667899993,55.29734935100011],[-5.772287563999924,55.30125560100011],[-5.782866990999906,55.31354401200015],[-5.794667120999861,55.35639069200006],[-5.79670162699989,55.37909577],[-5.791411912999904,55.39862702000009],[-5.76341712099989,55.412054755000085],[-5.725412563999896,55.437567450000174],[-5.715646938999953,55.44790273600007],[-5.715240037999934,55.468898830000015],[-5.7201228509999,55.491522528000175],[-5.721913214999887,55.513861395000035],[-5.707753058999884,55.543361721000096],[-5.712066209999875,55.550726630000085],[-5.718861456999917,55.557318427000055],[-5.721831834999904,55.56460195500007],[-5.718129035999879,55.57575104400008],[-5.694488084999932,55.60553620000009],[-5.673329230999855,55.64061107],[-5.669422980999854,55.660711981000034],[-5.680897589999887,55.674465236000124],[-5.626535610999952,55.70062897300009],[-5.619455532999922,55.71198151200015],[-5.613189256999874,55.72577545800008],[-5.598296678999901,55.74298737200008],[-5.581206834999875,55.75763580900009],[-5.567860480999855,55.76386139500006],[-5.539173956999889,55.770941473000114],[-5.504628058999883,55.78937409100014],[-5.473500128999888,55.81565989800008],[-5.454986131999874,55.84577057500009],[-5.55174719999988,55.78363678600009],[-5.587473110999923,55.767157294000086],[-5.599436001999948,55.764227606000176],[-5.612619594999899,55.76386139500006],[-5.605783657999979,55.776841539000046],[-5.633208787999934,55.78278229400017],[-5.64671790299991,55.78750234600009],[-5.660389777999853,55.79734935100011],[-5.667958136999886,55.81102122600005],[-5.669016079999948,55.83783600500014],[-5.674061652999882,55.84577057500009],[-5.631988084999904,55.88178131700006],[-5.625599738999881,55.88983795799999],[-5.619374152999939,55.90314362200003],[-5.604359503999916,55.91364166900008],[-5.586293097999885,55.923325914000046],[-5.571034308999913,55.93451569200006],[-5.593495245999918,55.92796458500008],[-5.62759355399993,55.90534088700012],[-5.653797980999855,55.897609768],[-5.671701626999919,55.886908270000085],[-5.680897589999887,55.88670482000013],[-5.68797766799986,55.89337799700009],[-5.694162563999924,55.90497467699999],[-5.696400519999912,55.91596100500006],[-5.586822068999879,56.01203034100003],[-5.578439907999893,56.02448151200004],[-5.58267167899993,56.02895742400001],[-5.576649542999917,56.032538153000175],[-5.571034308999913,56.037543036000116],[-5.583892381999931,56.04071686400009],[-5.596424933999856,56.036810614],[-5.609852667999917,56.03001536700007],[-5.625599738999881,56.02448151200004],[-5.631703253999888,56.00592682500003],[-5.674875454999892,55.97772858300006],[-5.674061652999882,55.955633856000176],[-5.690785285999908,55.93764883000012],[-5.694488084999932,55.93451569200006],[-5.704497850999928,55.93675364800005],[-5.707508917999917,55.942572333],[-5.705881313999896,55.94965241100006],[-5.701975063999924,55.955633856000176],[-5.696441209999903,55.98216380400014],[-5.659901495999861,56.023260809000035],[-5.584624803999873,56.08466217700011],[-5.581532355999883,56.08828359600007],[-5.580067511999914,56.092922268],[-5.577463344999927,56.09699127800015],[-5.571034308999913,56.099025783000094],[-5.564605272999898,56.098089911000024],[-5.556548631999874,56.09589264500012],[-5.550689256999931,56.09349192900007],[-5.550526495999861,56.09218984600007],[-5.54784094999988,56.090033270000056],[-5.539458787999934,56.086859442],[-5.531605597999941,56.086330471000124],[-5.530100063999896,56.09218984600007],[-5.534738735999923,56.09853750200001],[-5.541411912999877,56.102484442],[-5.547515428999872,56.10488515800013],[-5.550526495999861,56.10643138200008],[-5.556955532999979,56.12221914300012],[-5.558705206999974,56.13080475500014],[-5.554676886999914,56.13739655200011],[-5.522531704999948,56.16575755400005],[-5.515736456999917,56.17470937700007],[-5.509632941999911,56.18838125200001],[-5.539906378999916,56.18341705900014],[-5.562489386999886,56.16791413000006],[-5.58267167899993,56.150580145000056],[-5.605783657999979,56.13996002800012],[-5.599354620999861,56.160589911000145],[-5.58641516799986,56.18113841399998],[-5.569406704999892,56.20026276200015],[-5.550526495999861,56.216294664000046],[-5.559437628999888,56.22955963700018],[-5.547230597999913,56.240179755000106],[-5.52562415299991,56.247259833],[-5.506174282999921,56.24982330900009],[-5.494740363999881,56.253119208000115],[-5.492827928999901,56.260402736000124],[-5.499256964999915,56.267645575000174],[-5.512684699999909,56.270941473],[-5.554269985999895,56.26349518400003],[-5.56314042899993,56.26032135600015],[-5.572621222999942,56.25385163000006],[-5.582346157999893,56.24876536700005],[-5.592152472999913,56.24982330900009],[-5.598052537999877,56.258612372000144],[-5.595570441999938,56.269924221000124],[-5.584624803999873,56.29075755400011],[-5.572580532999949,56.32807038],[-5.562733527999853,56.34105052299999],[-5.543690558999856,56.35285065300014],[-5.525217251999919,56.346625067],[-5.498199022999869,56.348334052],[-5.448109503999945,56.35968659100016],[-5.448109503999945,56.36591217700011],[-5.472157355999911,56.36493561400006],[-5.51537024599989,56.35683828300013],[-5.537505662999877,56.35968659100016],[-5.517323370999861,56.392767645000035],[-5.509632941999911,56.40062083499999],[-5.498931443999908,56.404730536000145],[-5.48607337099989,56.40810781500006],[-5.478016730999854,56.412909247000144],[-5.482289191999938,56.42112864800005],[-5.457020636999913,56.44086334800009],[-5.423573370999861,56.450018622000144],[-5.322865363999938,56.45498281500004],[-5.242054816999939,56.44220612200017],[-5.208729620999861,56.446844794000086],[-5.181874152999882,56.45966217700013],[-5.118519660999937,56.50775788],[-5.085682745999947,56.54877350500011],[-5.064564581999917,56.56513092700011],[-5.086537238999938,56.558498440000065],[-5.099598761999914,56.543646552],[-5.110585089999887,56.52586497600011],[-5.125965949999909,56.510484117000075],[-5.166900193999936,56.49005768400009],[-5.190174933999855,56.46865469000015],[-5.201079881999931,56.46210358300006],[-5.243763800999942,56.45921458500013],[-5.350168423999917,56.472967841000134],[-5.378081834999875,56.45897044499999],[-5.394276495999918,56.46548086100007],[-5.410552537999962,56.50364817900005],[-5.424143032999922,56.500067450000174],[-5.435943162999877,56.49115631700015],[-5.454986131999874,56.469549872000144],[-5.468617316999911,56.475734768],[-5.43333899599989,56.52362702000012],[-5.427642381999902,56.53782786700005],[-5.403797980999911,56.524603583],[-5.379261847999885,56.519191799000154],[-5.356678839999915,56.51968008000012],[-5.338286912999877,56.5241559920001],[-5.290516730999855,56.544663804000045],[-5.265044725999928,56.551214911000145],[-5.25255286399991,56.55634186400006],[-5.242054816999939,56.56513092700011],[-5.275624152999882,56.5536156270001],[-5.286773240999906,56.55206940300015],[-5.30679277299987,56.552801825000174],[-5.310943162999905,56.55206940300015],[-5.327707485999923,56.544663804000045],[-5.338693813999896,56.54230377800011],[-5.36034094999988,56.53221263200014],[-5.37242591099988,56.53034088700018],[-5.384348110999923,56.53343333500005],[-5.400502081999889,56.543646552],[-5.413929816999882,56.544663804000045],[-5.410878058999884,56.55206940300015],[-5.407297329999921,56.5553246110001],[-5.402699347999885,56.557440497000115],[-5.396636522999869,56.56171295800011],[-5.392689581999889,56.56647370000012],[-5.389312303999872,56.574896552000055],[-5.386626756999902,56.578802802000055],[-5.36070716099988,56.606268622000115],[-5.351918097999913,56.612941799000154],[-5.310861782999922,56.63361237200017],[-5.304514126999891,56.64016347900015],[-5.298451300999886,56.646429755000106],[-5.317779100999928,56.653876044000086],[-5.317779100999928,56.66132233300006],[-5.30907141799986,56.66425202000009],[-5.286773240999906,56.674994208],[-5.261463995999861,56.67332591399999],[-5.248199022999927,56.67405833500011],[-5.218902147999898,56.68866608300014],[-5.196441209999904,56.68866608300014],[-5.15330969999988,56.68121979400014],[-5.132639126999975,56.684515692],[-5.093373175999943,56.699042059000035],[-5.012806769999912,56.70929596600014],[-4.995594855999883,56.71596914300004],[-5.160552537999904,56.69586823100014],[-5.238270636999914,56.71662018400015],[-5.238514777999882,56.722560940000086],[-5.228423631999902,56.73647695500007],[-5.222075975999871,56.74152252800008],[-5.154652472999885,56.78229401200014],[-5.136382615999906,56.79877350500006],[-5.119740363999938,56.81842682500012],[-5.179066535999937,56.78925202000006],[-5.187489386999886,56.78115469000012],[-5.191761847999885,56.774644273000135],[-5.202259894999941,56.76911041900003],[-5.214670376999891,56.76520416900003],[-5.224964972999913,56.763739325000145],[-5.233469204999921,56.760687567000055],[-5.237049933999913,56.753363348000065],[-5.238921678999873,56.74445221600003],[-5.242054816999939,56.73647695500007],[-5.255238410999908,56.72158437700001],[-5.268462693999936,56.713080145000085],[-5.283355272999898,56.70937734600012],[-5.301014777999909,56.70856354400002],[-5.309803839999887,56.706488348],[-5.319162563999896,56.697495835],[-5.34015865799995,56.69306061400012],[-5.348378058999856,56.68720123900009],[-5.359364386999914,56.674994208],[-5.38805091099988,56.65521881700009],[-5.403879360999895,56.649237372000144],[-5.424224412999905,56.64704010600015],[-5.434396938999924,56.64288971600003],[-5.448719855999911,56.62457916900017],[-5.458119269999941,56.62034739800004],[-5.470773891999925,56.61839427300002],[-5.482574022999898,56.61326732],[-5.493316209999903,56.60639069200009],[-5.53343665299991,56.572902736000046],[-5.599598761999914,56.52903880400008],[-5.667388475999928,56.498480536000145],[-5.674061652999882,56.496893622000115],[-5.6830134759999,56.50063711100013],[-5.694691535999908,56.51386139500009],[-5.705393032999922,56.51666901200003],[-5.721791144999912,56.51850006700012],[-5.74083411399991,56.523260809000114],[-5.758208787999904,56.52997467700005],[-5.770253058999913,56.53782786700005],[-5.755197719999899,56.55402252800009],[-5.751047329999949,56.56199778900004],[-5.749134894999912,56.571966864000146],[-5.756662563999952,56.571966864000146],[-5.793853318999936,56.543280341000084],[-5.854359503999945,56.55048248900011],[-6.003407355999855,56.61871979400002],[-6.009836391999953,56.626532294000114],[-6.008168097999942,56.64227936400006],[-5.998036261999886,56.6498884140001],[-5.98350989499994,56.652818101000136],[-5.933583136999914,56.654730536],[-5.89903723899991,56.650824286],[-5.866851365999962,56.64154694200015],[-5.839182094999956,56.626532294000114],[-5.831695115999906,56.63397858299999],[-5.85562089799987,56.64472077],[-5.865589972999942,56.65143463700015],[-5.865834113999881,56.66132233300006],[-5.759999152999882,56.70075104400006],[-5.735503709999961,56.702337958000086],[-5.672596808999913,56.684149481000176],[-5.647368943999936,56.68121979400014],[-5.594146287999877,56.68333567900008],[-5.564808722999942,56.68764883000007],[-5.543690558999856,56.69546133000016],[-5.636545376999948,56.68866608300014],[-5.658558722999942,56.69074127800014],[-5.708851691999911,56.70856354400002],[-5.749989386999913,56.714544989000146],[-5.859038865999878,56.68121979400014],[-5.896799282999922,56.67511627800017],[-5.907378709999875,56.674994208],[-5.920318162999877,56.67796458500011],[-5.942738410999908,56.68675364799999],[-5.955555792999917,56.68866608300014],[-6.024891730999883,56.68569570500004],[-6.098622199999909,56.69696686400012],[-6.123850063999896,56.69562409100003],[-6.143544074999909,56.68488190300012],[-6.161732550999915,56.67820872600005],[-6.186594204999949,56.68109772300009],[-6.209624803999929,56.688462632],[-6.222767706999889,56.69546133000016],[-6.228179490999935,56.701076565000065],[-6.232533331999917,56.7065290390001],[-6.23534094999988,56.712388414000046],[-6.236398891999925,56.719061591000106],[-6.234486456999889,56.72858307500009],[-6.229562954999921,56.729071356000176],[-6.222767706999889,56.72719961100002],[-6.215321417999917,56.72964101800015],[-6.193470831999973,56.74852122599999],[-6.180531378999945,56.754624742000075],[-6.026966925999915,56.763739325000145],[-6.014881964999887,56.767035223],[-5.979888475999899,56.781561591000056],[-5.965199347999885,56.78485748900009],[-5.948231574999909,56.78253815300011],[-5.937977667999888,56.776922919000114],[-5.928537563999895,56.769964911000116],[-5.913644985999923,56.763739325000145],[-5.860910610999922,56.750799872000144],[-5.85220292899993,56.74697500200013],[-5.853342251999891,56.75787995000012],[-5.858143683999884,56.76845937700007],[-5.868397589999887,56.77586497600005],[-5.886341925999942,56.77741120000009],[-5.886341925999942,56.78485748900009],[-5.874012824999909,56.785711981000176],[-5.861805792999916,56.78510163000011],[-5.850087042999945,56.782456773000135],[-5.839182094999956,56.77741120000009],[-5.824615037999934,56.787583726000044],[-5.802072719999956,56.791815497000144],[-5.776600714999859,56.787990627000156],[-5.756662563999952,56.78485748900009],[-5.831695115999906,56.80536530200011],[-5.850819464999859,56.81801992400001],[-5.851185675999886,56.82892487200017],[-5.837473110999952,56.836615302],[-5.73387610599994,56.844794012000094],[-5.692738410999936,56.854925848000065],[-5.660389777999853,56.872992255000085],[-5.67357337099989,56.87653229400014],[-5.69200598899991,56.875311591000134],[-5.708485480999911,56.87055084800015],[-5.724354620999918,56.85382721600011],[-5.744496222999885,56.85415273600013],[-5.783924933999856,56.85993073100009],[-5.775380011999914,56.86994049700009],[-5.735503709999961,56.894110419000086],[-5.780588344999927,56.89874909100003],[-5.874867316999911,56.887152411],[-5.921131964999887,56.894110419000086],[-5.887562628999945,56.89911530200014],[-5.85220292899993,56.90033600500006],[-5.85220292899993,56.907700914000046],[-5.859852667999888,56.910549221000096],[-5.880116339999886,56.92202383000012],[-5.862538214999859,56.93374258],[-5.851429816999911,56.954250393000066],[-5.842518683999883,56.97744375200001],[-5.831695115999906,56.997137762000065],[-5.814116990999878,57.009507554],[-5.786040818999965,57.02057526200012],[-5.75523841099988,57.02655670800014],[-5.729318813999896,57.02383047100007],[-5.719878709999875,57.0175641950001],[-5.699940558999884,56.99811432500003],[-5.68830318899998,56.98969147300006],[-5.674061652999882,56.983587958000086],[-5.658558722999942,56.97947825700014],[-5.625599738999881,56.97662995000009],[-5.571278449999852,56.98383209800012],[-5.523264126999976,56.997137762000065],[-5.523264126999976,57.003973700000145],[-5.540435350999899,57.001166083000115],[-5.556507941999882,56.99607982],[-5.571278449999852,56.99331289300012],[-5.584624803999873,56.997137762000065],[-5.607085740999878,56.98851146000014],[-5.628814256999931,56.99188873900006],[-5.649891730999883,56.99966054900007],[-5.670318162999934,57.003973700000145],[-5.685536261999914,57.00958893400015],[-5.681711391999897,57.022406317],[-5.680043097999885,57.036200262000094],[-5.701975063999924,57.04490794499999],[-5.710926886999857,57.04417552300008],[-5.731353318999908,57.03900788000006],[-5.74233964799987,57.03807200700008],[-5.75255286399991,57.040594794000086],[-5.769602016999954,57.04975006700006],[-5.780181443999908,57.05174388200011],[-5.791127081999889,57.059271552000084],[-5.776193813999924,57.075832424000126],[-5.734486456999889,57.10541413],[-5.722645636999914,57.116441148000135],[-5.715646938999953,57.120062567],[-5.703277147999898,57.12075429900012],[-5.673695441999939,57.11904531500012],[-5.663482225999927,57.123724677000055],[-5.645863410999908,57.129461981000034],[-5.62083899599989,57.12409088700015],[-5.578439907999893,57.10639069200006],[-5.558257615999878,57.100409247000144],[-5.459828253999945,57.09979889500009],[-5.454986131999874,57.10297272300014],[-5.447417772999927,57.11017487200009],[-5.430775519999884,57.11074453300016],[-5.414296027999882,57.10822174700006],[-5.407215949999936,57.10639069200006],[-5.400380011999913,57.10639069200006],[-5.400380011999913,57.11383698100003],[-5.420033331999946,57.12067291900014],[-5.503895636999857,57.112697658000016],[-5.527414516999897,57.10748932500012],[-5.540638800999943,57.10639069200006],[-5.547718878999916,57.1100934920001],[-5.573312954999892,57.127875067],[-5.584624803999873,57.13369375200013],[-5.668446417999888,57.14765045800011],[-5.680897589999887,57.157904364000146],[-5.673817511999914,57.174994208],[-5.638824022999927,57.20237864800005],[-5.625599738999881,57.216253973000114],[-5.644154425999886,57.233221747000115],[-5.620106574999851,57.25214264500012],[-5.578236456999946,57.266750393000144],[-5.543690558999856,57.270900783000094],[-5.511586066999882,57.25763580900015],[-5.480091925999943,57.23700592700014],[-5.44627844999988,57.22304922100007],[-5.407215949999936,57.229925848000065],[-5.407215949999936,57.23672109600001],[-5.448841925999886,57.24209219000006],[-5.458119269999941,57.246649481000084],[-5.472889777999939,57.261216539000124],[-5.482899542999917,57.26801178600005],[-5.492502407999893,57.270900783000094],[-5.501942511999913,57.27765534100003],[-5.48892167899993,57.292425848],[-5.464833136999886,57.306626695000126],[-5.440663214999886,57.31183502800012],[-5.440663214999886,57.31928131700001],[-5.46499589799987,57.32493724199998],[-5.481760219999956,57.316717841000084],[-5.49429277299987,57.30442942900014],[-5.506174282999921,57.298163153000175],[-5.523426886999942,57.29515208500008],[-5.558461066999911,57.28143952000014],[-5.578439907999893,57.27765534100003],[-5.599436001999948,57.27924225500005],[-5.637440558999856,57.28900788],[-5.656971808999913,57.29132721600017],[-5.700062628999944,57.28359609600015],[-5.72057044199991,57.28449127800014],[-5.729318813999896,57.298163153000175],[-5.72524980399993,57.30158112200009],[-5.701975063999924,57.33234284100016],[-5.693755662999905,57.337103583000086],[-5.671986456999946,57.344427802000084],[-5.663482225999927,57.349676825000145],[-5.654367641999926,57.35394928600008],[-5.647206183999884,57.34992096600011],[-5.641468878999916,57.34320709800007],[-5.636545376999948,57.33978913000006],[-5.613189256999874,57.34198639500014],[-5.501291469999956,57.370998440000115],[-5.456654425999886,57.39354075700011],[-5.448109503999945,57.4216983090001],[-5.465077277999853,57.42389557500009],[-5.492054816999882,57.40875885600009],[-5.537505662999877,57.37392812700015],[-5.56346594999988,57.36310455900014],[-5.586659308999913,57.36505768400009],[-5.610910610999895,57.37140534100003],[-5.639963344999956,57.37392812700015],[-5.615589972999913,57.38247304900007],[-5.607085740999878,57.389105536000145],[-5.609201626999891,57.397772528000026],[-5.617746548999918,57.41010163000008],[-5.619618292999888,57.416693427000055],[-5.624012824999852,57.41640859600004],[-5.639963344999956,57.40802643400014],[-5.707183397999898,57.359767971000124],[-5.732411261999886,57.35276927300005],[-5.7845759759999,57.34857819200012],[-5.807769334999931,57.35492584800015],[-5.824859178999873,57.39435455900013],[-5.822255011999886,57.39350006700012],[-5.817372199999909,57.39520905200011],[-5.812855597999942,57.39809804900015],[-5.81118730399993,57.40119049700005],[-5.813872850999928,57.40452708500008],[-5.823109503999888,57.41233958500005],[-5.824859178999873,57.415472723000114],[-5.825266079999892,57.42890045800012],[-5.821888800999943,57.435532944999984],[-5.81118730399993,57.442206122000144],[-5.821522589999859,57.44546133000009],[-5.85252844999988,57.45038483300006],[-5.859038865999878,57.45270416900002],[-5.861195441999882,57.463446356000034],[-5.8705134759999,57.480780341000035],[-5.872670050999915,57.49371979400003],[-5.869699673999889,57.50088125200008],[-5.856068488999938,57.517808335000055],[-5.85220292899993,57.524115302],[-5.851063605999911,57.53839752800008],[-5.851470506999902,57.55109284100014],[-5.847075975999928,57.55890534100014],[-5.831695115999906,57.55882396000006],[-5.833851691999882,57.563381252],[-5.8370255199999,57.57477448100015],[-5.839182094999956,57.57929108300011],[-5.821400519999884,57.583197333000115],[-5.803618943999879,57.581366278000054],[-5.786366339999887,57.57518138200008],[-5.732574022999927,57.54523346600011],[-5.715646938999953,57.53839752800008],[-5.707020636999857,57.54230377800018],[-5.689768032999922,57.52789948100011],[-5.680897589999887,57.524115302],[-5.65086829299986,57.51264069200014],[-5.639963344999956,57.51105377800011],[-5.645334438999924,57.51666901200012],[-5.648304816999939,57.52187734600001],[-5.650542772999927,57.526800848000065],[-5.653553839999915,57.53156159100017],[-5.581532355999883,57.53839752800008],[-5.540272589999944,57.53449127800009],[-5.516835089999859,57.534857489],[-5.512684699999909,57.54148997600008],[-5.543120897999869,57.555365302000055],[-5.588368292999917,57.56102122600005],[-5.632720506999931,57.55768463700013],[-5.660389777999853,57.54458242400015],[-5.694488084999932,57.56631094000012],[-5.68919837099986,57.56940338700012],[-5.680897589999887,57.57929108300011],[-5.71422278599988,57.58270905200014],[-5.731678839999859,57.59829336100004],[-5.744252081999917,57.61798737200017],[-5.762806769999941,57.63397858300006],[-5.778146938999896,57.63743724200008],[-5.7936091789999,57.638576565000015],[-5.805897589999859,57.642645575000145],[-5.81118730399993,57.65509674700017],[-5.805409308999884,57.66718170800008],[-5.785023566999882,57.67951080900003],[-5.79076087099986,57.68854401200003],[-5.79076087099986,57.69599030200011],[-5.753570115999878,57.707464911000066],[-5.734486456999889,57.70795319200015],[-5.704986131999902,57.690130927000084],[-5.692494269999912,57.69106679900016],[-5.68195553299995,57.69871653899998],[-5.674061652999882,57.709662177000055],[-5.685170050999914,57.71141185100005],[-5.692290818999936,57.71649811400007],[-5.698841925999943,57.723089911000145],[-5.708851691999911,57.72955963700006],[-5.720529751999919,57.73338450700005],[-5.803822394999941,57.74384186400014],[-5.806955532999922,57.75462474200005],[-5.802072719999956,57.780585028000026],[-5.803822394999941,57.79222239800004],[-5.801258917999945,57.800441799000126],[-5.809925910999937,57.82062409100016],[-5.81118730399993,57.83319733300005],[-5.807362433999912,57.843939520000085],[-5.799956834999932,57.85370514500012],[-5.78954016799986,57.86200592699999],[-5.776519334999874,57.86790599200013],[-5.751128709999931,57.87335846600017],[-5.724761522999927,57.87352122600013],[-5.698638475999899,57.86908600500006],[-5.674061652999882,57.86050039300016],[-5.677886522999898,57.846909897999986],[-5.674794074999909,57.8270938170001],[-5.667958136999886,57.806952216000056],[-5.660389777999853,57.79222239800004],[-5.650542772999927,57.78180573100014],[-5.637359178999872,57.77423737200011],[-5.622141079999892,57.77020905200014],[-5.605783657999979,57.77049388200008],[-5.613270636999857,57.775213934000185],[-5.617909308999884,57.78021881700011],[-5.625599738999881,57.79222239800004],[-5.61302649599989,57.79262929900015],[-5.603260870999861,57.79108307500011],[-5.584624803999873,57.78481679900016],[-5.591175910999936,57.80442942900011],[-5.587025519999912,57.81858958500014],[-5.585275844999927,57.83144765800007],[-5.598988410999937,57.84686920799999],[-5.637562628999916,57.866359768000095],[-5.650380011999857,57.877752997000144],[-5.639963344999956,57.88784414300004],[-5.647694464999887,57.888983466000134],[-5.650786912999877,57.89081452000011],[-5.653553839999915,57.89468008000013],[-5.643950975999928,57.90420156500013],[-5.620757615999906,57.920884507000075],[-5.612619594999899,57.92877838700003],[-5.598215298999917,57.9190127620001],[-5.587310350999957,57.915106512000094],[-5.550526495999861,57.915106512000094],[-5.556263800999943,57.88776276200003],[-5.527902798999889,57.86758047100001],[-5.487049933999856,57.85586172100004],[-5.454986131999874,57.85370514500012],[-5.461171027999853,57.86050039300016],[-5.449045376999948,57.86912669500004],[-5.437123175999914,57.89765045800014],[-5.427642381999902,57.90827057500009],[-5.414906378999945,57.90814850500011],[-5.369496222999942,57.89752838700018],[-5.35562089799987,57.891262111000046],[-5.32750403599988,57.873277085],[-5.293853318999879,57.86204661699999],[-5.221587693999879,57.84686920799999],[-5.236317511999886,57.860785223000086],[-5.247547980999883,57.867010809000035],[-5.276763475999928,57.874172268000095],[-5.320668097999942,57.898504950000145],[-5.384917772999898,57.91412995000003],[-5.39289303299995,57.91819896],[-5.394398566999882,57.92389557500017],[-5.396839972999913,57.926214911000145],[-5.397328253999916,57.928900458000115],[-5.39289303299995,57.93561432500014],[-5.386545376999919,57.93642812700006],[-5.378977016999953,57.93183014500012],[-5.37173417899993,57.931057033],[-5.366200324999909,57.943060614000146],[-5.347157355999911,57.93671295800002],[-5.319162563999896,57.914740302],[-5.29735266799986,57.90827057500009],[-5.286000128999887,57.90875885600017],[-5.266957160999879,57.91400788000006],[-5.256255662999877,57.915106512000094],[-5.243641730999883,57.912909247000115],[-5.221018032999922,57.90403880400007],[-5.211293097999885,57.9020856790001],[-5.198801235999952,57.89777252800012],[-5.162261522999926,57.87848541900008],[-5.119984503999888,57.86798737200011],[-5.091135219999955,57.8403181010001],[-5.070790167999888,57.83319733300005],[-5.076486782999949,57.838527736000124],[-5.083404100999871,57.84756094000012],[-5.089344855999883,57.857245184000085],[-5.091867641999897,57.86420319200009],[-5.097157355999883,57.87091705900004],[-5.197255011999914,57.917873440000065],[-5.221587693999879,57.92133209800006],[-5.221587693999879,57.92877838700003],[-5.201893683999856,57.928656317000055],[-5.193959113999881,57.935980536000095],[-5.19554602799991,57.94765859600007],[-5.204497850999928,57.96015045800008],[-5.216704881999902,57.96588776200016],[-5.248890753999973,57.969387111000124],[-5.263172980999855,57.976548569999984],[-5.292632615999935,57.98061758000013],[-5.333892381999902,58.00853099199998],[-5.359364386999914,58.011379299000126],[-5.357167120999918,58.014064846],[-5.356678839999915,58.014878648000106],[-5.351918097999913,58.01752350500003],[-5.366932745999861,58.02887604400017],[-5.386586066999911,58.03253815300003],[-5.427642381999902,58.031195380000135],[-5.424305792999888,58.035549221000124],[-5.422352667999917,58.03896719000016],[-5.419585740999878,58.04205963700003],[-5.413929816999882,58.045477606000034],[-5.413929816999882,58.052313544000135],[-5.447010870999918,58.08437734600012],[-5.428089972999884,58.09796784100008],[-5.3900447259999,58.09218984600012],[-5.366200324999909,58.06598541900008],[-5.344309048999889,58.07550690300008],[-5.322865363999938,58.071722723000065],[-5.300770636999857,58.070135809000035],[-5.276763475999928,58.08641185100008],[-5.283070441999939,58.08641185100008],[-5.278065558999913,58.09625885600017],[-5.278797980999855,58.105373440000065],[-5.283558722999942,58.11347077],[-5.290516730999855,58.12055084800006],[-5.276763475999928,58.12055084800006],[-5.276763475999928,58.12738678600009],[-5.29735266799986,58.134833075000145],[-5.284087693999908,58.14008209800014],[-5.255523240999935,58.14378489799999],[-5.242054816999939,58.14789459800012],[-5.242054816999939,58.155340887000115],[-5.275054490999906,58.154527085],[-5.290842251999948,58.15631745000009],[-5.304798956999917,58.162095445000055],[-5.29735266799986,58.168402411],[-5.304798956999917,58.173325914000046],[-5.313059048999918,58.17731354400003],[-5.321888800999886,58.18024323100015],[-5.331450975999871,58.182033596000124],[-5.329335089999858,58.18671295800006],[-5.326161261999886,58.19843170800014],[-5.32396399599989,58.20311107000004],[-5.336822068999908,58.20319245000003],[-5.346791144999912,58.206854559000085],[-5.39289303299995,58.24469635600003],[-5.39207923099994,58.261379299000076],[-5.375884568999879,58.26422760600011],[-5.352894660999908,58.25893789300012],[-5.310780402999853,58.243394273000135],[-5.293853318999879,58.24091217700011],[-5.276966925999886,58.243394273000135],[-5.237294074999851,58.257635809000035],[-5.216053839999859,58.26141998900005],[-5.194325324999909,58.259995835],[-5.17320716099988,58.250921942],[-5.165638800999943,58.258246161],[-5.152251756999931,58.264837958000086],[-5.138335740999935,58.269598700000174],[-5.129383917999917,58.27138906500015],[-5.111561652999853,58.268255927000084],[-5.081288214999859,58.254095770000056],[-5.067697719999899,58.250921942],[-5.01773027299987,58.25324127800014],[-5.002430792999917,58.250921942],[-4.933583136999857,58.223049221000124],[-4.943430141999954,58.233587958],[-4.954823370999918,58.239813544000135],[-4.982004360999922,58.250921942],[-4.968861456999889,58.25678131700012],[-4.940337693999879,58.25946686400011],[-4.926747199999909,58.26459381700012],[-4.990223761999914,58.271429755000135],[-5.00991777299987,58.27138906500015],[-5.018055792999888,58.26862213700009],[-5.029367641999953,58.25971100500005],[-5.040028449999909,58.25775788000012],[-5.050119594999956,58.259914455000015],[-5.070708787999904,58.26923248900006],[-5.081654425999886,58.27138906500015],[-5.096424933999856,58.27676015800002],[-5.125965949999909,58.3001976580001],[-5.136219855999855,58.30556875200013],[-5.137440558999856,58.309271552],[-5.156361456999889,58.32461172100012],[-5.160145636999914,58.32660553600008],[-5.167795376999919,58.33926015800013],[-5.171009894999884,58.34666575700013],[-5.17320716099988,58.353949286000145],[-5.15330969999988,58.353949286000145],[-5.163400844999956,58.36456940300009],[-5.162912563999953,58.37449778900001],[-5.155913865999877,58.38446686400009],[-5.146473761999886,58.39496491100006],[-5.145497199999909,58.40005117400007],[-5.14671790299991,58.406642971000146],[-5.146839972999885,58.41242096600002],[-5.143055792999859,58.41478099200007],[-5.135487433999913,58.41376373900001],[-5.122222459999875,58.40957265800008],[-5.116037563999924,58.408596096],[-5.057972785999937,58.387274481000034],[-5.016184048999918,58.388128973000114],[-5.043934699999909,58.40009186400005],[-5.053374803999901,58.406642971000146],[-5.05028235599994,58.41478099200007],[-5.057036912999877,58.42218659100015],[-5.066151495999861,58.417141018000116],[-5.076161261999857,58.414496161000145],[-5.086822068999879,58.41388580900017],[-5.098052537999877,58.41478099200007],[-5.098052537999877,58.42218659100015],[-5.088124152999882,58.42194245000012],[-5.085031704999892,58.42218659100015],[-5.085031704999892,58.42902252800017],[-5.091786261999914,58.42975495000012],[-5.09601803299995,58.43146393400012],[-5.105539516999926,58.43650950700014],[-5.050119594999956,58.45380280200014],[-5.02554277299987,58.44769928600006],[-4.995594855999883,58.43650950700014],[-5.105539516999926,58.48737213700014],[-5.105620897999927,58.50556061400006],[-5.103667772999869,58.51422760600015],[-5.095855272999898,58.518866278000175],[-5.042795376999948,58.53546784100014],[-5.027984178999901,58.544094143000144],[-5.016184048999918,58.55939362200011],[-5.022938605999855,58.55939362200011],[-5.015207485999952,58.580064195000105],[-5.011586066999882,58.60057200700008],[-5.004953579999921,58.617743231000084],[-4.988189256999902,58.62832265800016],[-4.859486456999889,58.613226630000135],[-4.835926886999857,58.60504791900005],[-4.818104620999861,58.592922268000144],[-4.817941860999895,58.58759186400009],[-4.812814907999893,58.571966864],[-4.806752081999889,58.558417059000035],[-4.803822394999884,58.55939362200011],[-4.804595506999902,58.54832591400007],[-4.807240363999881,58.539618231000176],[-4.81163489499994,58.53204987200002],[-4.818104620999861,58.52464427300005],[-4.799794074999909,58.53245677300013],[-4.791818813999953,58.54165273600001],[-4.789906378999887,58.55174388200008],[-4.790150519999941,58.56248607],[-4.785755988999938,58.57705312700001],[-4.777088995999861,58.58331940300015],[-4.771595831999917,58.590399481000034],[-4.776519334999875,58.607163804000045],[-4.758859829999977,58.599107164000095],[-4.728016730999911,58.577460028000026],[-4.711333787999876,58.57306549700005],[-4.683257615999878,58.5615095070001],[-4.67039954299986,58.55939362200011],[-4.660023566999938,58.55585358300011],[-4.659291144999912,58.54755280200014],[-4.663238084999904,58.53839752800015],[-4.667307094999956,58.53204987200002],[-4.679025844999956,58.5239118510001],[-4.714466925999942,58.505601304000045],[-4.732411261999886,58.48045482000008],[-4.751535610999952,58.46161530200014],[-4.760975714999887,58.44798411699999],[-4.742421027999882,58.44953034100003],[-4.682972785999937,58.48456452000013],[-4.673451300999943,58.48737213700014],[-4.666859503999945,58.502915757000075],[-4.650502081999946,58.50995514500015],[-4.630441860999895,58.5149600280001],[-4.612131313999924,58.52464427300005],[-4.601063605999883,58.54193756700015],[-4.595122850999871,58.560003973000065],[-4.584950324999909,58.57416413],[-4.560536261999886,58.57990143400014],[-4.517486131999931,58.57550690300017],[-4.475493943999936,58.56561920800006],[-4.426503058999884,58.546372789000095],[-4.426503058999884,58.53888580900015],[-4.42788652299987,58.535305080000064],[-4.42870032499988,58.53473541900011],[-4.426503058999884,58.52464427300005],[-4.449940558999856,58.510199286],[-4.464751756999931,58.49201080900009],[-4.477650519999941,58.471340236000074],[-4.495350714999859,58.44953034100003],[-4.478098110999952,58.453558661],[-4.461171027999882,58.46246979400002],[-4.433908657999979,58.483628648000135],[-4.432728644999941,58.487616278000125],[-4.433990037999962,58.492377020000035],[-4.434234178999901,58.49628327],[-4.43016516799986,58.49799225500011],[-4.425933397999927,58.49909088700015],[-4.38536536399991,58.52240631700006],[-4.382394985999895,58.52464427300005],[-4.343861456999917,58.53888580900015],[-4.317005988999937,58.54572174700017],[-4.306996222999942,58.546372789000095],[-4.287180141999925,58.54291413000011],[-4.257313605999855,58.52798086100007],[-4.234730597999885,58.52464427300005],[-4.248931443999879,58.53204987200002],[-4.238189256999874,58.53644440300011],[-4.232248501999948,58.542425848000114],[-4.227691209999904,58.54816315300008],[-4.22101803299995,58.551947333000115],[-4.209706183999855,58.552923895],[-4.190785285999937,58.54783763200009],[-4.176991339999915,58.546372789000095],[-4.168202277999882,58.54938385600012],[-4.160552537999934,58.562567450000174],[-4.149322068999935,58.56561920800006],[-4.111195441999939,58.56561920800006],[-4.090240037999904,58.56207916900008],[-4.081450975999928,58.56183502800004],[-4.070220506999931,58.56561920800006],[-4.061512824999852,58.572821356000084],[-4.048817511999886,58.58958567900011],[-4.039784308999884,58.592922268000144],[-4.030629035999908,58.59406159100008],[-4.029042120999861,58.595160223000114],[-4.02782141799986,58.592718817],[-4.009266730999855,58.57330963700018],[-4.003773566999911,58.57062409100011],[-3.98143469999988,58.57306549700005],[-3.895741339999915,58.56561920800006],[-3.810129360999923,58.57306549700005],[-3.766957160999908,58.58372630400008],[-3.698353644999912,58.611151434000035],[-3.659901495999889,58.62083567899999],[-3.597564256999931,58.62714264500011],[-3.565500454999949,58.626613674000154],[-3.542591925999943,58.62083567899999],[-3.552479620999861,58.61546458500012],[-3.556263800999886,58.613999742000075],[-3.532053188999896,58.60211823100012],[-3.504017706999889,58.60333893400003],[-3.447010870999861,58.613999742000075],[-3.391468878999916,58.60065338700015],[-3.364084438999952,58.6008161480001],[-3.350819464999915,58.62083567899999],[-3.367746548999918,58.624701239],[-3.386057094999956,58.63174062700015],[-3.402251756999931,58.64203522300009],[-3.412912563999953,58.65558502800006],[-3.390044725999956,58.67177969],[-3.374867316999968,58.67706940300017],[-3.358265753999916,58.67548248900014],[-3.354359503999916,58.67015208500008],[-3.35179602799991,58.66083405200011],[-3.34788977799991,58.65204498900006]]],[[[-2.885365363999938,58.820054429],[-2.913563605999911,58.81049225499999],[-2.919422980999855,58.806463934000035],[-2.921131964999859,58.7975121110001],[-2.915760870999918,58.79067617400006],[-2.91397050699993,58.78485748900012],[-2.926340298999946,58.77912018400015],[-2.915394660999908,58.76215241100009],[-2.911040818999908,58.748683986000096],[-2.917836066999939,58.73834870000009],[-2.939930792999917,58.73069896000006],[-2.987782355999855,58.75739166900008],[-2.987782355999855,58.76483795800005],[-2.974354620999861,58.772040106000084],[-2.984852667999917,58.787095445000105],[-3.015695766999897,58.8126488300001],[-3.003895636999914,58.80817291900003],[-2.991322394999912,58.806626694999984],[-2.978871222999913,58.80817291900003],[-2.967193162999905,58.8126488300001],[-2.967193162999905,58.820054429],[-3.035552537999877,58.820054429],[-3.035552537999877,58.82632070500013],[-2.996978318999907,58.83527252800014],[-2.952951626999891,58.83999258000007],[-2.906971808999856,58.838080145],[-2.883656378999945,58.83218008000007],[-2.885365363999938,58.820054429]]],[[[-3.246083136999857,58.89618561400005],[-3.193186001999919,58.85358307500003],[-3.207386847999913,58.847398179000045],[-3.207386847999913,58.83999258000007],[-3.195546027999853,58.839422919000086],[-3.187245245999889,58.836493231000176],[-3.172718878999945,58.82632070500013],[-3.172718878999945,58.820054429],[-3.191802537999934,58.81867096600011],[-3.21548417899993,58.81427643400013],[-3.236683722999942,58.80573151200009],[-3.248402472999913,58.792181708000115],[-3.218495245999861,58.79328034100016],[-3.160145636999857,58.808010158000066],[-3.131703253999944,58.806463934000035],[-3.156320766999925,58.78676992400009],[-3.205922003999945,58.77903880400008],[-3.299305792999859,58.77912018400015],[-3.304269985999895,58.78384023600016],[-3.323475714999859,58.80951569200012],[-3.327788865999963,58.81830475499999],[-3.33763587099989,58.82391998900008],[-3.349191860999895,58.82843659100014],[-3.358265753999916,58.833156643000144],[-3.378773566999939,58.85358307500003],[-3.379872199999909,58.85927969],[-3.375965949999909,58.86359284100011],[-3.373524542999888,58.86798737200009],[-3.378773566999939,58.87409088700018],[-3.385731574999852,58.87539297100006],[-3.397613084999904,58.86953359600012],[-3.402333136999914,58.87067291900017],[-3.411976691999882,58.87498607000007],[-3.422189907999922,58.874009507],[-3.43016516799986,58.874823309000085],[-3.433338995999918,58.88495514500006],[-3.418446417999888,58.90448639500015],[-3.41633053299995,58.908270575000145],[-3.393218553999901,58.92023346600008],[-3.349354620999861,58.92853424700017],[-3.337147589999887,58.92869700700013],[-3.321848110999923,58.92365143400009],[-3.28758704299986,58.905951239],[-3.26545162699989,58.902044989],[-3.246083136999857,58.89618561400005]]],[[[-3.156158006999874,59.14223867400003],[-3.121571417999888,59.12396881700015],[-3.108306443999936,59.124212958],[-3.09593665299991,59.12734609600007],[-3.084543423999946,59.127997137000115],[-3.074208136999857,59.12376536700002],[-3.058461066999882,59.11176178600009],[-3.049183722999942,59.10809967700011],[-3.063547329999921,59.101996161000116],[-3.070301886999857,59.101263739],[-3.051421678999901,59.09015534100017],[-2.994496222999885,59.07330963700015],[-3.001861131999874,59.07176341400013],[-3.004994269999941,59.07025788000008],[-3.008168097999913,59.06655508000013],[-3.003773566999939,59.06443919500013],[-2.999012824999852,59.061509507000025],[-2.994496222999885,59.05971914300004],[-3.05370032499988,59.04726797100001],[-3.062814907999893,59.049465236000096],[-3.071197068999936,59.03343333499999],[-3.090931769999884,59.01874420799999],[-3.113921678999958,59.00820547100012],[-3.131703253999944,59.00507233300005],[-3.116688605999911,58.99819570500015],[-3.097320115999906,58.99404531500003],[-3.059722459999904,58.99140045800011],[-3.044585740999906,58.99799225499999],[-3.029204881999874,59.01032135600015],[-3.011952277999853,59.017401434000114],[-2.974436001999919,58.999090887000065],[-2.9603572259999,59.00116608300006],[-2.947132941999939,59.007554429],[-2.933094855999911,59.01129791900002],[-2.917307094999955,59.00617096600011],[-2.906564907999922,58.996568101000136],[-2.895375128999916,58.991034247000115],[-2.878407355999855,58.99823639500015],[-2.880523240999878,58.99359772300012],[-2.883452928999901,58.981919664000124],[-2.885365363999938,58.977118231000034],[-2.864735480999911,58.974839585000055],[-2.847645636999886,58.98029205900009],[-2.831166144999884,58.987697658000066],[-2.812977667999888,58.99140045800011],[-2.790150519999883,58.99225495000003],[-2.78062903599988,58.990301825000174],[-2.775380011999885,58.983954169000135],[-2.781890428999901,58.97394440300015],[-2.822499152999881,58.95856354400002],[-2.837554490999906,58.95038483300011],[-2.826242641999926,58.937404690000115],[-2.811919725999928,58.929144598000114],[-2.794789191999911,58.926092841000134],[-2.775380011999885,58.92869700700013],[-2.789418097999941,58.94989655200014],[-2.795969204999921,58.95669179900016],[-2.777577277999882,58.95750560100008],[-2.744048631999931,58.96918366100006],[-2.727650519999941,58.97089264500006],[-2.713612433999884,58.96686432500012],[-2.707630988999881,58.958970445000126],[-2.706206834999903,58.947455145],[-2.70653235599994,58.932440497000165],[-2.714751756999931,58.92548248900009],[-2.733754035999937,58.920152085000105],[-2.771962042999888,58.91571686400014],[-2.785023566999882,58.91071198100009],[-2.808013475999928,58.88800690300015],[-2.823841925999886,58.881537177000055],[-2.839344855999883,58.882635809000085],[-2.91502844999988,58.899115302],[-2.926828579999949,58.90485260600014],[-2.937245245999947,58.91323476800004],[-2.973622199999908,58.95380280200011],[-2.981190558999884,58.96010976800006],[-2.993763800999943,58.95880768400015],[-3.007801886999914,58.949042059000035],[-3.023833787999905,58.940497137000094],[-3.0423884759999,58.943019924000126],[-3.052561001999948,58.93878815300009],[-3.061756964999915,58.93939850500006],[-3.071685350999928,58.941839911],[-3.084543423999946,58.943019924000126],[-3.070301886999857,58.92869700700013],[-3.101226365999878,58.930121161000024],[-3.113189256999931,58.92666250200001],[-3.118031378999887,58.91571686400014],[-3.142648891999897,58.921210028000175],[-3.202788865999878,58.915920315],[-3.22789466099988,58.92869700700013],[-3.23851477799991,58.950913804],[-3.235340949999852,58.972560940000086],[-3.22329667899993,58.99135976800013],[-3.207386847999913,59.00507233300005],[-3.207386847999913,59.01129791900002],[-3.214751756999902,59.017482815000086],[-3.22044837099989,59.024115302000055],[-3.224680141999926,59.03119538000011],[-3.22789466099988,59.0385602890001],[-3.23875891799986,59.035142320000105],[-3.245838995999918,59.030503648],[-3.247222459999903,59.024847723000086],[-3.240956183999856,59.018133856000034],[-3.240956183999856,59.01129791900002],[-3.250396287999876,59.01447174700008],[-3.259185350999928,59.015814520000085],[-3.267486131999902,59.01471588700003],[-3.275786912999905,59.01129791900002],[-3.266590949999908,59.007147528000175],[-3.263050910999937,59.00092194200012],[-3.264068162999905,58.99306875200012],[-3.26207434799997,58.99140045800011],[-3.256988084999932,58.97833893400015],[-3.26537024599989,58.96918366100006],[-3.289418097999942,58.95669179900016],[-3.289418097999942,58.95038483300011],[-3.323231574999908,58.95718008000012],[-3.353260870999861,58.98281484600002],[-3.366688605999854,59.01609935100011],[-3.350819464999915,59.046047268000095],[-3.34398352799991,59.05280182500012],[-3.350209113999881,59.09796784100017],[-3.323801235999895,59.127427476000044],[-3.279286261999885,59.1435407570001],[-3.231068488999937,59.148423569999984],[-3.182728644999912,59.14716217700008],[-3.156158006999874,59.14223867400003]]],[[[-2.614857550999943,59.15216705900012],[-2.617787238999881,59.148423569999984],[-2.590077277999882,59.14887116100008],[-2.57795162699989,59.147202867000075],[-2.569406704999949,59.14223867400003],[-2.58234615799995,59.143988348000036],[-2.59288489499994,59.13857656500006],[-2.595204230999883,59.12954336100015],[-2.583648240999878,59.12055084800012],[-2.571603969999956,59.11884186400012],[-2.558705206999946,59.12083567900008],[-2.535267706999946,59.127997137000115],[-2.534738735999895,59.122870184000085],[-2.53648841099988,59.12156810100011],[-2.539296027999853,59.12173086100015],[-2.541981574999909,59.12055084800012],[-2.548451300999915,59.109035549],[-2.542388475999928,59.102972723],[-2.514759894999912,59.09381745000003],[-2.532622850999871,59.08356354400008],[-2.576039191999939,59.0800641950001],[-2.597320115999906,59.07330963700015],[-2.599476691999911,59.09589264500014],[-2.614369269999941,59.10724518400012],[-2.634429490999906,59.10862864800002],[-2.651844855999883,59.101263739],[-2.649159308999913,59.08551666900014],[-2.670725063999924,59.08152903900007],[-2.686105923999946,59.08917877800009],[-2.665516730999911,59.10809967700011],[-2.650502081999889,59.11176178600009],[-2.634836391999925,59.11273834800014],[-2.622425910999908,59.11644114799999],[-2.617787238999881,59.127997137000115],[-2.624256964999887,59.13385651200015],[-2.655181443999908,59.15127187700013],[-2.665516730999911,59.15521881700012],[-2.625640428999958,59.16242096600014],[-2.61156165299991,59.161444403000175],[-2.61156165299991,59.15521881700012],[-2.614857550999943,59.15216705900012]]],[[[-3.029123501999891,59.18235911700013],[-3.021839972999942,59.18231842700014],[-2.980824347999942,59.18744538000006],[-2.96788489499994,59.18744538000006],[-2.952951626999891,59.183172919000135],[-2.952463344999927,59.178168036],[-2.953846808999884,59.17674388200013],[-2.956776495999918,59.17670319200015],[-2.9603572259999,59.17576732000007],[-2.97716223899991,59.16339752800003],[-2.974029100999928,59.14752838700009],[-2.97524980399993,59.13377513200008],[-3.004790818999908,59.127997137000115],[-3.036447719999984,59.129095770000056],[-3.065581834999932,59.13361237200011],[-3.091786261999886,59.14280833499999],[-3.114654100999871,59.15835195500009],[-3.120432094999927,59.17658112200017],[-3.102406378999916,59.190252997000115],[-3.074208136999857,59.19749583500014],[-3.049183722999942,59.19684479400009],[-3.048085089999887,59.19489166900003],[-3.046294725999899,59.19086334800007],[-3.042551235999952,59.18634674700011],[-3.035552537999877,59.183172919000135],[-3.029123501999891,59.18235911700013]]],[[[-2.768625454999948,59.244614976000136],[-2.768625454999948,59.23786041900008],[-2.755441860999923,59.23940664300013],[-2.743641730999855,59.23810455900003],[-2.734201626999919,59.23334381700011],[-2.727650519999941,59.224188544000135],[-2.734201626999919,59.21552155200005],[-2.756337042999917,59.19806549700009],[-2.761097785999908,59.19310130400005],[-2.761097785999908,59.17731354400012],[-2.758941209999904,59.16421133000012],[-2.751088019999912,59.15607330900013],[-2.734486456999946,59.15521881700012],[-2.734486456999946,59.148423569999984],[-2.764027472999913,59.14264557500004],[-2.781361456999917,59.14142487200011],[-2.789133266999926,59.145331122000115],[-2.792551235999923,59.158636786000116],[-2.801625128999916,59.16815827000011],[-2.814768032999893,59.17389557500009],[-2.830067511999857,59.17576732000007],[-2.830067511999857,59.19684479400009],[-2.817290818999908,59.19122955900018],[-2.80711829299986,59.19179922100015],[-2.797271287999934,59.195013739],[-2.785959438999953,59.19684479400009],[-2.78490149599989,59.20034414300007],[-2.790272589999859,59.21759674700017],[-2.789133266999926,59.224188544000135],[-2.791900193999879,59.236965236000096],[-2.787912563999896,59.247219143000116],[-2.777455206999917,59.2529157570001],[-2.761097785999908,59.25210195500009],[-2.761097785999908,59.244614976000136],[-2.768625454999948,59.244614976000136]]],[[[-2.395497199999909,59.29507070500016],[-2.392486131999902,59.28546784100017],[-2.439808722999942,59.28416575700008],[-2.458973761999914,59.27912018400003],[-2.46694902299987,59.26821523600017],[-2.477853969999955,59.26276276200003],[-2.497385219999927,59.23920319200009],[-2.504505988999881,59.23338450700011],[-2.514759894999912,59.230414130000106],[-2.516265428999873,59.25214264500009],[-2.533111131999874,59.251166083000115],[-2.576812303999958,59.224188544000135],[-2.571766730999911,59.23456452000014],[-2.569406704999949,59.23786041900008],[-2.569406704999949,59.244614976000136],[-2.588612433999912,59.238674221],[-2.596791144999912,59.2391625020001],[-2.60415605399993,59.244614976000136],[-2.641224738999938,59.217962958],[-2.661854620999861,59.20709870000012],[-2.679269985999923,59.20990631700006],[-2.681874152999853,59.196356512000094],[-2.687652147999898,59.19017161700014],[-2.692616339999859,59.19228750200013],[-2.69294186099998,59.20368073100009],[-2.687977667999916,59.217962958],[-2.681019660999937,59.223130601000015],[-2.671538865999935,59.225327867],[-2.658802863999881,59.230414130000106],[-2.649728969999955,59.236965236000096],[-2.633168097999913,59.25226471600014],[-2.624623175999886,59.25828685100008],[-2.612619594999956,59.26154205900012],[-2.602772589999859,59.261419989000146],[-2.595570441999911,59.264837958000136],[-2.591135219999927,59.278753973000114],[-2.596669074999852,59.28180573100011],[-2.61156165299991,59.29303620000003],[-2.587717251999919,59.29315827],[-2.547230597999885,59.30573151200017],[-2.522124803999901,59.306708075000145],[-2.522124803999901,59.29926178600009],[-2.536976691999882,59.294378973],[-2.551828579999921,59.28742096600003],[-2.576812303999958,59.27130768400014],[-2.56932532499988,59.27016836100002],[-2.566273566999882,59.26878489800014],[-2.563221808999884,59.265082098000086],[-2.551625128999887,59.27081940300014],[-2.518788214999887,59.27431875200016],[-2.492421027999882,59.28937409100016],[-2.477202928999901,59.290757554000045],[-2.46117102799991,59.29067617400007],[-2.4464005199999,59.29303620000003],[-2.424956834999904,59.31045156500009],[-2.411040818999907,59.31899648600001],[-2.404896613999938,59.316351630000106],[-2.395497199999909,59.29507070500016]]],[[[-2.946359829999921,59.349554755000135],[-2.947661912999934,59.34853750200008],[-2.950184699999852,59.34861888200005],[-2.952951626999891,59.34772370000014],[-2.963937954999949,59.340236721],[-2.964507615999935,59.33535390800012],[-2.9603572259999,59.32656484600006],[-2.980946417999916,59.32591380400011],[-2.987782355999855,59.32656484600006],[-2.987782355999855,59.31976959800012],[-2.909535285999937,59.307033596000096],[-2.895497199999909,59.30296458500011],[-2.876535610999895,59.276922919000135],[-2.870961066999882,59.27130768400014],[-2.85960852799991,59.26752350500011],[-2.848866339999887,59.26679108299999],[-2.839019334999875,59.265082098000086],[-2.830067511999857,59.25828685100008],[-2.830067511999857,59.25210195500009],[-2.850087042999917,59.25214264500009],[-2.862172003999916,59.247219143000116],[-2.885365363999938,59.230414130000106],[-2.884022589999859,59.239243882000075],[-2.882232225999871,59.24603913],[-2.878407355999855,59.25193919500013],[-2.870961066999882,59.25828685100008],[-2.920318162999962,59.283148505000106],[-2.947417772999898,59.29120514500015],[-2.974680141999954,59.29303620000003],[-2.974680141999954,59.285589911000145],[-2.969797329999892,59.28192780199999],[-2.9603572259999,59.27130768400014],[-2.974680141999954,59.278753973000114],[-2.982411261999886,59.269924221000075],[-2.989654100999899,59.26707591400013],[-2.997792120999918,59.26813385600017],[-3.008168097999913,59.27130768400014],[-3.015126105999911,59.27488841400014],[-3.020253058999913,59.28034088700014],[-3.034657355999883,59.30121491100011],[-3.036691860999923,59.306708075000145],[-3.039947068999879,59.31199778900013],[-3.049183722999942,59.31976959800012],[-3.058705206999917,59.32298411699999],[-3.06700598899991,59.32269928600005],[-3.073353644999941,59.32453034100003],[-3.077056443999879,59.33405182500003],[-3.056263800999886,59.33429596600016],[-3.024322068999879,59.33038971600017],[-3.008168097999913,59.33405182500003],[-2.980336066999882,59.35504791900017],[-2.965199347999885,59.360907294000114],[-2.946685350999871,59.353908596000124],[-2.946359829999921,59.349554755000135]]],[[[-1.608143683999913,59.547349351000086],[-1.610422329999892,59.53949616100009],[-1.596750454999949,59.53949616100009],[-1.596750454999949,59.532049872000115],[-1.613392706999917,59.52659739800007],[-1.631255662999877,59.516994533000094],[-1.64549719999988,59.51410553600006],[-1.651275193999936,59.52895742400012],[-1.643666144999912,59.545640367000075],[-1.625233527999882,59.555812893],[-1.602853969999956,59.56024811400008],[-1.583119269999912,59.55996328300014],[-1.582386847999885,59.555121161000066],[-1.583851691999939,59.55369700699999],[-1.58641516799986,59.55361562700001],[-1.589344855999883,59.55247630399999],[-1.60366777299987,59.550930080000136],[-1.608143683999913,59.547349351000086]]],[[[-1.321766730999911,60.093085028000175],[-1.323353644999941,60.08820221600011],[-1.315093553999929,60.093736070000105],[-1.308257615999935,60.09414297100012],[-1.304798956999917,60.08657461100008],[-1.309803839999859,60.07636139500015],[-1.317738410999937,60.06622955900017],[-1.326771613999938,60.05060455900009],[-1.333566860999952,60.04360586100002],[-1.339019334999904,60.043890692000055],[-1.338002081999946,60.05109284100009],[-1.333851691999911,60.061509507000075],[-1.333119269999884,60.073675848000065],[-1.33462480399993,60.07632070500015],[-1.335804816999939,60.070054429000024],[-1.33836829299986,60.064032294000086],[-1.353871222999885,60.051214911000066],[-1.367909308999913,60.04482656500012],[-1.369862433999884,60.04913971600014],[-1.357004360999952,60.05817291900014],[-1.352040167999888,60.06952545800011],[-1.347564256999931,60.083441473],[-1.338002081999946,60.09345123900009],[-1.340443488999881,60.09967682500014],[-1.346994594999956,60.104559637000115],[-1.345692511999857,60.10895416900008],[-1.327788865999906,60.11139557500003],[-1.321156378999944,60.115668036000145],[-1.315825975999871,60.115464585],[-1.315052863999938,60.106390692],[-1.321766730999911,60.093085028000175]]],[[[-2.048085089999915,60.12921784100011],[-2.06297766799986,60.11798737200011],[-2.086903449999937,60.123277085],[-2.105376756999959,60.13206614800005],[-2.112294074999852,60.138006903000175],[-2.110340949999909,60.14533112200017],[-2.103423631999902,60.150051174000104],[-2.087880011999914,60.15546295800015],[-2.064686652999882,60.157294012000115],[-2.053212042999917,60.15550364800013],[-2.048898891999925,60.14712148600015],[-2.048085089999915,60.12921784100011]]],[[[-1.074940558999913,60.18280670800003],[-1.073150193999936,60.17300039300006],[-1.069935675999886,60.16421133],[-1.062855597999913,60.16404857000005],[-1.050526495999861,60.16962311400005],[-1.050445115999878,60.16278717700014],[-1.052723761999857,60.14842357000008],[-1.059478318999908,60.137640692000055],[-1.066761847999913,60.12921784100011],[-1.073801235999895,60.10773346600008],[-1.083892381999931,60.10516998900009],[-1.112945115999935,60.11627838700009],[-1.122222459999875,60.123114325000024],[-1.119252081999946,60.155585028000125],[-1.135650193999879,60.16795482000005],[-1.134917772999927,60.17869700700005],[-1.115793423999946,60.18016185100011],[-1.097523566999882,60.17572663000014],[-1.089588995999918,60.17816803600009],[-1.08641516799986,60.186468817000055],[-1.07945716099988,60.18829987200003],[-1.074940558999913,60.18280670800003]]],[[[-0.975982225999928,60.34031810100005],[-1.015207485999952,60.3341332050001],[-1.034087693999879,60.34015534100008],[-1.028920050999886,60.34564850500011],[-1.023589647999898,60.34943268400007],[-1.021555141999954,60.35447825700008],[-1.016428188999953,60.36200592700014],[-1.006418423999889,60.368963934000035],[-0.995228644999884,60.371649481000084],[-0.983631964999858,60.37230052300005],[-0.974476691999883,60.37592194200012],[-0.967600063999953,60.38104889500011],[-0.932281053999929,60.382757880000135],[-0.921783006999874,60.384588934000114],[-0.918771938999953,60.38617584800015],[-0.912668423999889,60.38678620000008],[-0.911203579999921,60.38231028900004],[-0.917713995999918,60.37665436400014],[-0.931385870999861,60.36847565300003],[-0.948597785999965,60.355861721000146],[-0.975982225999928,60.34031810100005]]],[[[-0.80907141799986,60.60830312700012],[-0.800282355999883,60.60797760600011],[-0.793527798999946,60.61050039300012],[-0.788319464999859,60.61359284100012],[-0.784575975999928,60.61513906500015],[-0.769154425999886,60.61318594],[-0.758371548999889,60.607570705],[-0.754790818999908,60.59894440300008],[-0.760731574999852,60.587836005000085],[-0.785227016999954,60.57632070500012],[-0.813140428999901,60.58047109600007],[-0.842152472999885,60.58832428600005],[-0.870472785999937,60.587836005000085],[-0.870472785999937,60.58038971600008],[-0.864898240999935,60.57721588700004],[-0.86192786399991,60.574204820000126],[-0.859608527999853,60.57103099200008],[-0.856190558999856,60.56732819200011],[-0.883534308999913,60.57054271000008],[-0.905344204999949,60.58685944200001],[-0.938832160999908,60.62132396000011],[-0.938832160999908,60.62872955900012],[-0.822132941999911,60.62872955900012],[-0.81151282499988,60.62588125200007],[-0.810047980999911,60.61933014500009],[-0.811268683999856,60.61229075700011],[-0.80907141799986,60.60830312700012]]],[[[-1.292103644999969,60.599595445000055],[-1.293527798999918,60.59324778900013],[-1.299143032999922,60.58926015800013],[-1.308705206999917,60.587836005000085],[-1.301421678999901,60.56484609600009],[-1.309437628999945,60.554103908000066],[-1.32396399599989,60.54645416900014],[-1.336089647999898,60.5331891950001],[-1.315541144999941,60.5331891950001],[-1.320301886999857,60.52826569200006],[-1.324818488999881,60.52655670800005],[-1.336089647999898,60.525783596000124],[-1.33055579299986,60.52387116100009],[-1.327300584999904,60.521673895000085],[-1.323353644999941,60.51984284100012],[-1.315541144999941,60.518947658000016],[-1.336089647999898,60.48541901200017],[-1.326527472999885,60.486395575000145],[-1.317494269999884,60.48891836100015],[-1.309152798999918,60.49290599200004],[-1.301421678999901,60.49843984600006],[-1.295033331999889,60.49225495000009],[-1.309152798999918,60.4770368510001],[-1.311919725999871,60.47089264500012],[-1.308705206999917,60.464911200000024],[-1.308705206999917,60.457464911000145],[-1.327951626999948,60.45319245000003],[-1.351796027999853,60.418361721000096],[-1.370228644999884,60.4096540390001],[-1.370228644999884,60.40216705900003],[-1.357492641999926,60.40143463700012],[-1.345041469999899,60.402329820000105],[-1.333363410999908,60.40501536699998],[-1.322987433999913,60.4096540390001],[-1.324330206999917,60.427720445000126],[-1.296986456999917,60.437974351000044],[-1.233631964999887,60.443793036000024],[-1.280995245999918,60.46185944200012],[-1.295033331999889,60.47113678600009],[-1.284738735999951,60.47870514500012],[-1.271962042999917,60.484279690000115],[-1.261952277999853,60.48159414300006],[-1.26036536399991,60.464911200000024],[-1.251210089999915,60.47085195500013],[-1.23078365799995,60.48871491100011],[-1.22687740799995,60.495306708],[-1.217518683999913,60.49799225500006],[-1.199289516999926,60.49237702000006],[-1.186268683999856,60.48224518400013],[-1.192616339999887,60.47113678600009],[-1.18016516799986,60.468207098000065],[-1.169911261999857,60.46312083500014],[-1.162342902999882,60.45526764500014],[-1.157866990999935,60.443793036000024],[-1.163075324999909,60.43927643400015],[-1.16470292899993,60.436957098000086],[-1.151722785999937,60.430812893],[-1.163970506999902,60.425482489000146],[-1.185902472999942,60.43158600500014],[-1.196034308999884,60.427069403000175],[-1.204335089999887,60.420152085000076],[-1.214019334999932,60.41498444200009],[-1.224191860999895,60.41144440300008],[-1.220773891999954,60.40912506700012],[-1.208648240999878,60.410711981000155],[-1.185170050999915,60.416489976000136],[-1.189116990999906,60.41400788],[-1.19945227799991,60.4096540390001],[-1.19945227799991,60.40216705900003],[-1.165435350999871,60.41205475500006],[-1.153675910999908,60.40790436400012],[-1.151722785999937,60.38857656500009],[-1.14427649599989,60.38857656500009],[-1.140288865999906,60.398871161],[-1.136952277999882,60.39948151200015],[-1.132150844999984,60.39801666900011],[-1.123768683999913,60.40216705900003],[-1.119740363999938,60.40814850500005],[-1.116688605999855,60.41567617400001],[-1.112049933999941,60.42365143400015],[-1.103423631999931,60.430812893],[-1.099964972999913,60.427476304],[-1.098378058999884,60.424221096000124],[-1.097035285999908,60.416489976000136],[-1.088002081999889,60.433010158000016],[-1.072743292999917,60.444525458000136],[-1.053944464999887,60.45050690300014],[-1.034413214999887,60.450628973000114],[-1.048695441999882,60.43333567900013],[-1.119252081999946,60.391302802000055],[-1.125070766999926,60.383734442],[-1.123768683999913,60.37555573100009],[-1.117543097999942,60.37392812700006],[-1.110015428999901,60.37872955900015],[-1.100209113999881,60.38857656500009],[-1.094471808999913,60.39150625200001],[-1.0814509759999,60.39622630400011],[-1.068267381999874,60.396307684000085],[-1.062326626999948,60.385443427000105],[-1.062896287999905,60.37986888200002],[-1.065419074999909,60.36957428600009],[-1.070423956999946,60.35952383],[-1.079172329999949,60.355047919000135],[-1.15721594999988,60.350775458000136],[-1.172230597999913,60.347601630000085],[-1.151600714999887,60.33730703300016],[-1.101226365999935,60.33112213700017],[-1.0753067699999,60.320949611000124],[-1.123117641999954,60.296332098000114],[-1.134348110999952,60.2929548200001],[-1.137928839999859,60.29071686400012],[-1.138579881999902,60.28558991100011],[-1.137115037999934,60.27977122600007],[-1.134348110999952,60.27558014500012],[-1.129505988999881,60.27399323100009],[-1.122222459999875,60.279242255],[-1.117014126999891,60.278713283000016],[-1.109364386999857,60.27619049700009],[-1.09585527299987,60.27509186400014],[-1.089751756999902,60.27252838700003],[-1.129709438999953,60.25283437700001],[-1.147857225999928,60.24884674700003],[-1.16470292899993,60.25141022300012],[-1.174672003999944,60.264634507000075],[-1.182932094999927,60.27191803600009],[-1.192616339999887,60.27252838700003],[-1.199126756999874,60.26691315300006],[-1.198109503999916,60.260565497000115],[-1.192534959999904,60.25495026200012],[-1.185170050999915,60.25141022300012],[-1.185170050999915,60.24518463700015],[-1.194935675999943,60.245347398000135],[-1.203277147999927,60.24384186400008],[-1.219390428999901,60.238348700000145],[-1.219390428999901,60.232163804],[-1.179025844999927,60.232163804],[-1.185536261999914,60.22540924700014],[-1.190907355999883,60.21845123900006],[-1.19945227799991,60.20425039300015],[-1.18101966099988,60.21784088700009],[-1.171131964999859,60.22256094],[-1.157866990999935,60.22467682500012],[-1.187245245999918,60.19122955900015],[-1.192616339999887,60.17633698100009],[-1.176503058999913,60.18789297100012],[-1.155140753999945,60.19257233300014],[-1.143950975999956,60.18756745000011],[-1.157866990999935,60.17011139500015],[-1.123768683999913,60.155829169000135],[-1.123768683999913,60.149603583],[-1.151722785999937,60.149603583],[-1.151722785999937,60.14215729400011],[-1.14427649599989,60.14215729400011],[-1.14427649599989,60.13532135600009],[-1.160878058999941,60.141180731000034],[-1.170969204999892,60.13621653899999],[-1.181548631999931,60.12929922100009],[-1.19945227799991,60.12909577000012],[-1.185170050999915,60.12164948100015],[-1.189849412999934,60.11334870000017],[-1.195139126999891,60.10871002800014],[-1.2025447259999,60.10691966400007],[-1.213205532999922,60.10736725500005],[-1.213205532999922,60.1012230490001],[-1.205311652999853,60.10016510600003],[-1.185170050999915,60.09438711100007],[-1.202259894999941,60.08307526200017],[-1.19286048099994,60.069810289000074],[-1.17442786399991,60.060288804000045],[-1.16470292899993,60.06024811400007],[-1.170074022999898,60.04596588700018],[-1.185170050999915,60.03827545800005],[-1.20372473899991,60.03652578300015],[-1.219390428999901,60.03974030200011],[-1.215077277999882,60.026190497000144],[-1.192616339999887,59.99750397300009],[-1.201242641999897,59.986395575000145],[-1.215809699999909,59.98688385600015],[-1.247303839999915,59.99750397300009],[-1.242990688999924,59.97687409100018],[-1.245228644999912,59.955755927000055],[-1.253570115999878,59.936957098],[-1.267730272999898,59.92304108300011],[-1.271839972999942,59.927801825000024],[-1.274566209999932,59.92987702000015],[-1.26659094999988,59.91819896000014],[-1.26341712099989,59.907171942],[-1.265939907999922,59.89557526200017],[-1.274566209999932,59.882066148000106],[-1.263742641999926,59.87490469000006],[-1.260975714999858,59.86640045800012],[-1.265004035999937,59.85883209800009],[-1.274566209999932,59.854193427000055],[-1.278431769999912,59.8591169290001],[-1.295033331999889,59.87466054900004],[-1.30288652299987,59.864325262000115],[-1.311105923999946,59.86554596600002],[-1.312855597999942,59.873114325000174],[-1.301421678999901,59.882066148000106],[-1.301421678999901,59.888902085000105],[-1.316477016999926,59.89598216399999],[-1.347889777999853,59.891994533],[-1.364003058999913,59.89630768400012],[-1.375965949999852,59.90863678600006],[-1.35802161399991,59.92157623900005],[-1.364003058999913,59.93732330900012],[-1.355702277999853,59.94546133000013],[-1.345855272999927,59.95038483299999],[-1.334787563999896,59.952134507],[-1.322987433999913,59.95099518400015],[-1.322987433999913,59.95661041900014],[-1.341053839999944,59.967759507000075],[-1.349720831999917,59.970892645000156],[-1.349720831999917,59.97768789300006],[-1.322987433999913,59.97768789300006],[-1.328724738999881,59.99551015800016],[-1.318023240999878,60.01113515800012],[-1.30288652299987,60.02802155200011],[-1.287709113999881,60.075628973000015],[-1.273060675999886,60.09520091399998],[-1.262603318999879,60.11505768400018],[-1.267730272999898,60.14215729400011],[-1.273060675999886,60.14618561400009],[-1.278960740999906,60.14508698100004],[-1.284535285999908,60.14594147300012],[-1.288889126999919,60.155829169000135],[-1.288156704999892,60.159613348000065],[-1.285267706999946,60.16461823100013],[-1.269357876999919,60.185451565],[-1.279530402999882,60.18512604400017],[-1.294056769999912,60.179673570000126],[-1.298166469999955,60.17633698100009],[-1.30919348899991,60.177069403000026],[-1.312408006999874,60.18065013200011],[-1.309315558999884,60.189032294000164],[-1.294667120999861,60.21539948100015],[-1.286773240999906,60.22528717700008],[-1.277699347999885,60.23322174700005],[-1.267730272999898,60.238348700000145],[-1.267730272999898,60.24518463700015],[-1.286936001999947,60.24628327000013],[-1.301584438999953,60.23578522300014],[-1.329253709999875,60.20425039300015],[-1.343006964999887,60.22748444200006],[-1.357655402999882,60.24433014500006],[-1.378570115999935,60.25478750200015],[-1.411122199999909,60.258856512000094],[-1.411122199999909,60.25141022300012],[-1.391835089999887,60.24652741100005],[-1.376088019999912,60.23794179900015],[-1.362456834999875,60.225978908],[-1.349720831999917,60.21108633000016],[-1.356556769999941,60.19676341399998],[-1.376088019999912,60.20709870000008],[-1.385324673999889,60.21059804900006],[-1.398101365999935,60.21108633000016],[-1.397572394999941,60.19269440300012],[-1.404611782999922,60.17951080900014],[-1.413644985999923,60.17698802300005],[-1.418690558999884,60.19061920799999],[-1.430775519999884,60.184881903000026],[-1.434925910999908,60.174465236000124],[-1.437733527999853,60.16339752800008],[-1.445952928999873,60.155829169000135],[-1.45543372299997,60.15619538000006],[-1.49429277299987,60.17011139500015],[-1.496408657999893,60.17218659100016],[-1.517933722999913,60.18451569200003],[-1.520985480999883,60.18374258000009],[-1.527251756999931,60.192938544000135],[-1.52672278599988,60.197577216000084],[-1.520985480999883,60.20425039300015],[-1.509510870999861,60.20994700700011],[-1.479400193999908,60.21401601800009],[-1.466420050999915,60.217230536000145],[-1.479237433999856,60.22223541900008],[-1.503651495999918,60.243353583],[-1.507964647999898,60.23529694200006],[-1.513335740999878,60.2216657570001],[-1.525054490999935,60.212347723000065],[-1.536773240999935,60.21092357000011],[-1.542144334999904,60.22093333499999],[-1.5482478509999,60.22972239800004],[-1.56265214799987,60.22744375200006],[-1.593006964999915,60.217230536000145],[-1.615142381999902,60.21572500200009],[-1.624663865999906,60.217230536000145],[-1.630238410999908,60.220892645],[-1.631174282999893,60.22589752800003],[-1.632801886999914,60.23029205900012],[-1.640858527999853,60.232163804],[-1.661284959999932,60.233872789],[-1.669748501999948,60.239569403000175],[-1.679351365999935,60.26569245000003],[-1.690174933999856,60.285142320000126],[-1.686390753999916,60.290920315000086],[-1.671864386999886,60.29979075700014],[-1.657378709999932,60.30621979400014],[-1.638742641999926,60.31146881700011],[-1.61937415299991,60.314357815000065],[-1.602935350999928,60.31346263200008],[-1.588286912999905,60.307033596000146],[-1.577219204999892,60.298732815000086],[-1.565297003999945,60.29266998900009],[-1.548410610999952,60.2929548200001],[-1.555816209999932,60.30662669500004],[-1.520985480999883,60.29979075700014],[-1.520985480999883,60.30662669500004],[-1.528431769999884,60.30662669500004],[-1.528431769999884,60.31346263200008],[-1.481434699999852,60.316473700000174],[-1.467600063999953,60.308539130000106],[-1.466420050999915,60.278713283000016],[-1.461415167999888,60.279730536000095],[-1.45018469999988,60.28375885600006],[-1.445952928999873,60.28620026200018],[-1.450917120999918,60.291734117000104],[-1.456450975999928,60.302313544000135],[-1.45958411399991,60.30662669500004],[-1.439035610999952,60.30662669500004],[-1.441802537999905,60.310695705],[-1.445952928999873,60.320949611000124],[-1.422759568999936,60.32611725500014],[-1.396351691999939,60.32184479400003],[-1.374256964999859,60.30841705900004],[-1.364003058999913,60.28620026200018],[-1.350005662999877,60.29775625200001],[-1.336089647999898,60.30662669500004],[-1.364003058999913,60.320949611000124],[-1.343495245999861,60.347601630000085],[-1.336577928999873,60.34345123900012],[-1.33031165299991,60.342027085000055],[-1.315541144999941,60.341376044000114],[-1.328114386999914,60.35268789300009],[-1.310170050999886,60.355861721000146],[-1.26036536399991,60.355047919000135],[-1.284291144999884,60.36351146],[-1.313832160999937,60.366848049],[-1.337554490999935,60.37445709800015],[-1.343495245999861,60.39598216399998],[-1.362538214999858,60.384711005000085],[-1.373402472999942,60.38108958500011],[-1.384429490999906,60.38239166900003],[-1.39500891799986,60.38996002800014],[-1.398589647999927,60.39960358300014],[-1.395253058999884,60.4091657570001],[-1.384429490999906,60.416489976000136],[-1.384429490999906,60.42332591400004],[-1.415638800999886,60.42316315300017],[-1.429107225999871,60.425238348],[-1.439035610999952,60.430812893],[-1.436268683999913,60.44318268400014],[-1.438099738999881,60.46051666900006],[-1.445952928999873,60.49225495000009],[-1.459380662999934,60.4728050800001],[-1.469838019999941,60.46222565300006],[-1.480091925999943,60.457464911000145],[-1.495594855999883,60.46088288000006],[-1.499094204999949,60.46906159100014],[-1.493072068999936,60.47846100499999],[-1.480091925999943,60.48541901200017],[-1.50023352799991,60.48517487200003],[-1.516753709999875,60.48261139500011],[-1.532093878999916,60.48309967700011],[-1.548410610999952,60.49225495000009],[-1.557484503999945,60.48065827000009],[-1.57201087099989,60.476752020000085],[-1.606678839999859,60.477972723000015],[-1.609364386999857,60.48334381700006],[-1.60415605399993,60.49502187700015],[-1.595122850999928,60.50678131700012],[-1.58617102799991,60.512111721],[-1.561512824999909,60.510687567000126],[-1.555816209999932,60.512111721],[-1.550689256999931,60.5190290390001],[-1.550200975999928,60.52635325700002],[-1.550689256999931,60.53339264500006],[-1.548410610999952,60.539374091000084],[-1.538726365999878,60.54897695500007],[-1.526966925999915,60.55683014500015],[-1.513986782999922,60.55780670800011],[-1.500559048999918,60.54682038000006],[-1.488189256999874,60.52582428600012],[-1.455067511999857,60.50885651200015],[-1.417469855999855,60.50218333499999],[-1.384429490999906,60.512111721],[-1.395741339999887,60.51666901200004],[-1.410715298999918,60.51862213700009],[-1.435943162999877,60.518947658000016],[-1.443186001999891,60.52252838700018],[-1.451975063999953,60.530178127],[-1.463856574999909,60.53742096600014],[-1.480091925999943,60.539374091000084],[-1.471587693999936,60.54645416900014],[-1.45799719999988,60.563869533000016],[-1.452788865999878,60.56732819200011],[-1.441639777999853,60.56879303600008],[-1.411122199999909,60.58038971600008],[-1.421457485999923,60.58616771000005],[-1.425363735999923,60.587836005000085],[-1.416493292999888,60.59503815300012],[-1.414051886999857,60.59992096600016],[-1.415638800999886,60.60382721600017],[-1.418690558999884,60.60830312700012],[-1.394154425999943,60.61432526200003],[-1.366851365999878,60.61225006700011],[-1.339751756999931,60.604641018000095],[-1.315541144999941,60.594061591000035],[-1.312489386999857,60.59829336100016],[-1.308705206999917,60.60146719000012],[-1.326161261999886,60.61115143400018],[-1.32396399599989,60.62132396000011],[-1.301421678999901,60.64305247599999],[-1.291411912999934,60.62311432500011],[-1.290679490999906,60.61513906500015],[-1.295033331999889,60.60830312700012],[-1.292103644999969,60.599595445000055]]],[[[-1.079904751999976,60.73554108299999],[-1.069162563999953,60.718166408000016],[-1.057606574999852,60.72972239800013],[-1.036976691999911,60.73314036700004],[-0.993478969999956,60.73114655200011],[-0.993153449999852,60.71771881700012],[-0.994740363999881,60.71360911700007],[-1.000884568999965,60.71137116100009],[-1.000884568999965,60.703924872000115],[-0.995961066999911,60.70246002800015],[-0.9916072259999,60.69953034100003],[-0.987172003999916,60.697699286000145],[-0.997954881999931,60.685614325000145],[-0.997059699999852,60.67609284100014],[-0.979725714999858,60.656683661000145],[-0.98570716099988,60.64590078300012],[-0.993478969999956,60.63564687700002],[-1.025868292999888,60.65448639500014],[-1.042591925999915,60.661566473],[-1.062326626999948,60.66290924700009],[-1.050526495999861,60.65558502800009],[-1.036773240999935,60.64288971600002],[-1.013905402999853,60.61513906500015],[-1.02708899599989,60.61009349200014],[-1.041005011999886,60.60797760600011],[-1.055287238999881,60.60944245000017],[-1.069162563999953,60.61513906500015],[-1.064279751999891,60.60407135600012],[-1.052072719999899,60.597642320000105],[-1.036366339999859,60.594712632],[-1.020741339999859,60.594061591000035],[-1.022694464999915,60.590725002],[-1.022938605999855,60.589829820000105],[-1.028187628999944,60.587836005000085],[-1.011057094999899,60.577704169000036],[-1.01073157499988,60.56549713700003],[-1.022531704999949,60.5556501320001],[-1.041859503999888,60.55304596600003],[-1.026966925999915,60.53583405200011],[-1.02245032499988,60.52724844],[-1.020741339999859,60.51552969],[-1.023793097999942,60.502997137000094],[-1.031727667999917,60.50067780200014],[-1.055490688999924,60.50584544500005],[-1.080067511999943,60.50519440300008],[-1.092030402999882,60.50771719000003],[-1.097035285999908,60.51552969],[-1.10069739499994,60.515041408],[-1.106556769999912,60.51105377800006],[-1.107736782999922,60.50507233300011],[-1.097035285999908,60.49843984600006],[-1.097035285999908,60.49225495000009],[-1.130523240999963,60.496039130000106],[-1.153879360999951,60.50836823100015],[-1.167795376999919,60.53046295800006],[-1.180043097999885,60.62466054900016],[-1.171376105999911,60.6459821640001],[-1.138050910999908,60.649237372000144],[-1.138050910999908,60.64305247599999],[-1.141021287999934,60.63117096600014],[-1.130116339999859,60.61933014500009],[-1.114491339999858,60.612453518000066],[-1.103423631999931,60.61513906500015],[-1.106556769999912,60.619777736000074],[-1.120594855999855,60.64618561400006],[-1.123768683999913,60.659816799],[-1.120961066999882,60.666408596000096],[-1.11148027299987,60.68113841399999],[-1.113921678999901,60.684027411000116],[-1.119536912999905,60.68789297100004],[-1.120432094999899,60.696926174000126],[-1.118031378999945,60.70722077000015],[-1.113921678999901,60.71474844],[-1.103993292999888,60.725775458000065],[-1.09211178299995,60.73533763200014],[-1.079904751999976,60.73554108299999]]],[[[-0.775786912999934,60.791571356000034],[-0.795765753999916,60.78563060100002],[-0.808461066999882,60.77863190300011],[-0.801665818999879,60.76654694200011],[-0.801665818999879,60.759100653000026],[-0.821400519999884,60.75853099200007],[-0.814564581999889,60.75714752800009],[-0.8080134759999,60.75511302300008],[-0.801665818999879,60.752346096],[-0.801665818999879,60.74481842700014],[-0.842762824999852,60.72402578300016],[-0.850005662999877,60.718166408000016],[-0.843006964999887,60.70600006700011],[-0.828846808999884,60.694891669000086],[-0.821888800999886,60.685003973000086],[-0.836415167999917,60.67658112200003],[-0.84618079299986,60.6759707700001],[-0.854481574999852,60.678290106000034],[-0.862212693999936,60.681586005000085],[-0.870472785999937,60.684027411000116],[-0.890126105999883,60.6849632830001],[-0.904693162999905,60.684027411000116],[-0.934803839999859,60.68211497600005],[-0.950306769999969,60.684312242000054],[-0.96617591099988,60.69017161699999],[-0.961333787999905,60.70001862200011],[-0.959950324999852,60.70941803600014],[-0.961822068999908,60.717922268000066],[-0.96617591099988,60.725002346000124],[-0.948597785999965,60.71796295800006],[-0.943226691999911,60.726019598000015],[-0.945790167999917,60.74030182500009],[-0.952463344999956,60.752346096],[-0.935699022999927,60.75600820500016],[-0.926136847999942,60.76959870000011],[-0.926177537999934,60.78465403900013],[-0.938832160999908,60.79266998900005],[-0.938832160999908,60.80011627800014],[-0.923085089999858,60.80410390800004],[-0.904164191999939,60.813950914000046],[-0.890533006999902,60.82558828300016],[-0.891021287999877,60.83486562700001],[-0.881499803999901,60.84503815300014],[-0.870106574999909,60.8452009140001],[-0.86034094999988,60.8375511740001],[-0.856190558999856,60.82396067900013],[-0.86034094999988,60.81293366100009],[-0.870187954999892,60.806382554],[-0.881662563999953,60.800848700000174],[-0.891021287999877,60.79266998900005],[-0.888335740999906,60.78974030200005],[-0.876128709999932,60.79266998900005],[-0.861968553999901,60.79824453300007],[-0.853138800999943,60.803534247000144],[-0.83177649599989,60.84027741100006],[-0.822132941999911,60.84788646],[-0.815581834999932,60.84308502800009],[-0.809722459999904,60.84170156500012],[-0.795480923999889,60.84100983300008],[-0.782785610999923,60.83820221600003],[-0.77183997299997,60.83340078300012],[-0.76390540299991,60.825425522999986],[-0.760731574999852,60.81313711100013],[-0.768788214999887,60.81268952000012],[-0.787993943999936,60.80695221600017],[-0.768544074999937,60.80097077000015],[-0.760731574999852,60.80011627800014],[-0.775786912999934,60.791571356000034]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"Guernsey","adm0_a3":"GGY","geou_dif":0,"geounit":"Guernsey","gu_a3":"GGY","su_dif":0,"subunit":"Guernsey","su_a3":"GGY","brk_diff":0,"name":"Guernsey","name_long":"Guernsey","brk_a3":"GGY","brk_name":"Guernsey","brk_group":"Channel Islands","abbrev":"Guern.","postal":"GG","formal_en":"Bailiwick of Guernsey","formal_fr":null,"note_adm0":"U.K. crown dependency","note_brk":null,"name_sort":"Guernsey","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":68633,"gdp_md_est":2742,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"GK","iso_a2":"GG","iso_a3":"GGY","iso_n3":"831","un_a3":"831","wb_a2":"JG","wb_a3":"CHI","woe_id":23424827,"woe_id_eh":23424827,"woe_note":"Exact WOE match as country","adm0_a3_is":"GGY","adm0_a3_us":"GGY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":6,"tiny":-99,"homepart":-99,"filename":"GGY.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-2.364654100999957,49.417873440000065],[-2.373524542999888,49.41156647300012],[-2.378081834999932,49.41274648600016],[-2.374826626999891,49.41917552300008],[-2.373117641999897,49.424261786],[-2.375884568999936,49.430405992000075],[-2.37547766799986,49.435451565],[-2.372629360999895,49.43805573100009],[-2.369862433999856,49.442084052000055],[-2.366118943999907,49.44574616100011],[-2.363758917999859,49.446844794000135],[-2.356353318999879,49.44037506700006],[-2.354400193999908,49.427801825000174],[-2.364654100999957,49.417873440000065]]],[[[-2.445220506999902,49.47459544500005],[-2.45335852799991,49.462144273000106],[-2.454497850999871,49.46613190300008],[-2.455067511999914,49.475043036000145],[-2.453684048999946,49.481878973000065],[-2.447824673999889,49.48395416900017],[-2.445220506999902,49.47459544500005]]],[[[-2.541981574999909,49.43089427300004],[-2.552072719999956,49.42670319200011],[-2.558705206999946,49.427191473],[-2.564849412999905,49.42951080900018],[-2.573109503999916,49.43089427300004],[-2.669341600999928,49.43089427300004],[-2.673451300999886,49.43349844000015],[-2.670765753999916,49.43878815300003],[-2.662953253999916,49.44379303600006],[-2.651844855999883,49.44521719000012],[-2.656564907999893,49.45941803600006],[-2.650257941999939,49.463690497000144],[-2.637928839999915,49.46385325700011],[-2.624623175999886,49.4657250020001],[-2.58023027299987,49.49359772300015],[-2.559559699999852,49.49933502800012],[-2.538197394999884,49.50983307500009],[-2.518218553999901,49.515529690000065],[-2.501698370999918,49.50665924700003],[-2.505767381999902,49.49799225500011],[-2.522124803999901,49.4799665390001],[-2.526722785999937,49.45848216400015],[-2.53294837099989,49.44285716400019],[-2.532785610999923,49.438910223],[-2.534087693999936,49.43622467700011],[-2.541981574999909,49.43089427300004]]],[[[-2.200835740999878,49.70571523600016],[-2.216867641999954,49.703029690000065],[-2.226226365999878,49.707831122000144],[-2.21849524599989,49.71869538000006],[-2.204701300999972,49.7241071640001],[-2.194813605999854,49.72479889500012],[-2.178618943999908,49.730902411000116],[-2.174468553999873,49.731390692000026],[-2.170318162999934,49.72874583500011],[-2.170318162999934,49.72321198100009],[-2.187896287999962,49.71063873900012],[-2.200835740999878,49.70571523600016]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Gibraltar","adm0_a3":"GIB","geou_dif":0,"geounit":"Gibraltar","gu_a3":"GIB","su_dif":0,"subunit":"Gibraltar","su_a3":"GIB","brk_diff":1,"name":"Gibraltar","name_long":"Gibraltar","brk_a3":"B55","brk_name":"Gibraltar","brk_group":null,"abbrev":"Gib.","postal":"GI","formal_en":null,"formal_fr":null,"note_adm0":"U.K.","note_brk":"Admin. By U.K.; Claimed by Spain","name_sort":"Gibraltar","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":28034,"gdp_md_est":1066,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"GI","iso_a2":"GI","iso_a3":"GIB","iso_n3":"292","un_a3":"292","wb_a2":"-99","wb_a3":"-99","woe_id":23424825,"woe_id_eh":23424825,"woe_note":"Exact WOE match as country","adm0_a3_is":"GIB","adm0_a3_us":"GIB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":4,"tiny":5,"homepart":-99,"filename":"GIB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-5.358386758763487,36.1411094470883],[-5.338773483119979,36.14111967201225],[-5.339914516999897,36.129828192000076],[-5.339060024999895,36.12384674700007],[-5.34203040299991,36.11050039300005],[-5.350249803999901,36.11928945500003],[-5.358386758763487,36.1411094470883]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Greece","sov_a3":"GRC","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Greece","adm0_a3":"GRC","geou_dif":0,"geounit":"Greece","gu_a3":"GRC","su_dif":0,"subunit":"Greece","su_a3":"GRC","brk_diff":0,"name":"Greece","name_long":"Greece","brk_a3":"GRC","brk_name":"Greece","brk_group":null,"abbrev":"Greece","postal":"GR","formal_en":"Hellenic Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Greece","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":10737428,"gdp_md_est":343000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"GR","iso_a2":"GR","iso_a3":"GRC","iso_n3":"300","un_a3":"300","wb_a2":"GR","wb_a3":"GRC","woe_id":23424833,"woe_id_eh":23424833,"woe_note":"Exact WOE match as country","adm0_a3_is":"GRC","adm0_a3_us":"GRC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"GRC.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[24.135264519000145,34.821763414000074],[24.135264519000145,34.81500885600012],[24.108571811000104,34.81655508000016],[24.08611087300011,34.826320705000015],[24.046397332000108,34.84906647300012],[24.046397332000108,34.85529205900009],[24.057871941000144,34.855414130000085],[24.066905144000142,34.85846588700015],[24.074392123000024,34.863430080000015],[24.08057701900009,34.868963934000035],[24.093109571000095,34.86953359600001],[24.105153842000107,34.86806875200013],[24.12842858200011,34.862738348000065],[24.12842858200011,34.85529205900009],[24.122325066000116,34.84650299700003],[24.121429884000033,34.83612702000012],[24.12574303500014,34.82689036700016],[24.135264519000145,34.821763414000074]]],[[[26.99968509200005,35.424505927000084],[27.007090691000116,35.40399811400012],[27.007090691000116,35.39777252800015],[26.992360873000052,35.39720286700019],[26.967946811000076,35.39337799700017],[26.95875084700012,35.39032623900009],[26.94605553500014,35.38353099200004],[26.93702233200014,35.37693919499999],[26.927744988000086,35.371893622000144],[26.9147241550001,35.369859117000104],[26.905772332000083,35.366644598000065],[26.888356967000107,35.352687893000095],[26.87671959700009,35.34935130400005],[26.86426842500009,35.353583075000174],[26.85377037900011,35.362982489],[26.84839928500014,35.37238190300003],[26.851898634000037,35.37669505400013],[26.861664259000094,35.380926825000145],[26.87940514400009,35.39972565300008],[26.88656660200013,35.40399811400012],[26.89014733200008,35.40717194200009],[26.896739129000082,35.421332098],[26.90023847700007,35.424505927000084],[26.908539259000122,35.42324453300016],[26.919769727000126,35.41828034100011],[26.924571160000113,35.417669989000146],[26.960703972000147,35.42959219000009],[26.976084832000108,35.43134186400009],[27.00245201900009,35.43695709800009],[27.01197350400011,35.43768952000011],[27.013356967000078,35.43134186400009],[27.007090691000116,35.427435614],[26.99968509200005,35.424505927000084]]],[[[23.901377800000148,35.52716705900012],[23.92904707100007,35.52069733300003],[23.944183790000068,35.52496979400002],[24.000498894000113,35.519924221000096],[24.025401238000057,35.52069733300003],[24.035817905000044,35.52342357],[24.04468834700009,35.527655341000084],[24.050954623000052,35.53436920800014],[24.053233269000117,35.54462311400006],[24.05762780000009,35.55292389500015],[24.068369988000114,35.555487372000144],[24.094086134000065,35.554185289000074],[24.08179772200012,35.58991120000009],[24.115244988000086,35.60130442900005],[24.16041100400011,35.59707265800013],[24.182953321000095,35.5855980490001],[24.20329837300008,35.54181549700003],[24.200531446000127,35.53436920800014],[24.195811394000117,35.531561591000084],[24.187754754000082,35.51805247600011],[24.182953321000095,35.51325104400003],[24.17359459700006,35.50958893400018],[24.16374759200005,35.50775788],[24.142588738000143,35.507025458000086],[24.103526238000082,35.51398346600014],[24.081228061000044,35.514960028000026],[24.066905144000142,35.507025458000086],[24.071950717000078,35.49835846600017],[24.089040561000047,35.489203192],[24.107758009000094,35.48200104400014],[24.137217644000085,35.47483958500011],[24.170176629000053,35.45604075700008],[24.186696811000047,35.45180898600013],[24.204356316000144,35.45441315300015],[24.222504102000045,35.46116771],[24.239105665000096,35.47003815300003],[24.252452019000117,35.479071356000034],[24.264008009000037,35.43317291900014],[24.2654728520001,35.41425202000014],[24.26343834700009,35.37848541900003],[24.2654728520001,35.369859117000104],[24.27312259200005,35.36489492400007],[24.293467644000113,35.363755601000136],[24.30298912900011,35.35932038000006],[24.34009850400014,35.348334052],[24.428070509000065,35.36969635600015],[24.464121941000116,35.36245351800012],[24.48536217500012,35.37213776200018],[24.56666100400011,35.3841820330001],[24.593597852000073,35.391180731000176],[24.65593509200005,35.417669989000146],[24.676931186000076,35.42348867400001],[24.698496941000087,35.42682526200004],[24.72095787900008,35.427232164000046],[24.82016035200013,35.41303131700012],[24.840830925000144,35.40399811400012],[24.85035241000014,35.40973541900008],[24.86719811300014,35.4164899760001],[24.89551842500009,35.424505927000084],[24.957530144000145,35.40399811400012],[24.96338951900009,35.410223700000174],[24.967133009000122,35.412543036000145],[24.969574415000068,35.415757554],[24.971202019000085,35.424505927000084],[25.018728061000076,35.41502513200005],[25.029633009000065,35.40326569200009],[25.047373894000145,35.40550364800008],[25.05323326900009,35.40399811400012],[25.0545353520001,35.39740631700015],[25.05225670700011,35.3919945330001],[25.048675977000045,35.38666413000011],[25.04704837300002,35.38043854400017],[25.0553491550001,35.35521067900011],[25.076996290000093,35.34446849200019],[25.106781446000095,35.34247467700005],[25.153168165000068,35.34471263200014],[25.181651238000086,35.35008372599999],[25.1971134770001,35.34935130400005],[25.2005314460001,35.346909898000135],[25.20533287900011,35.34227122600002],[25.212087436000047,35.33779531500012],[25.2213647800001,35.33567942900011],[25.251800977000126,35.33567942900011],[25.306976759000065,35.3431664080001],[25.33171634200005,35.33685944200015],[25.346364780000073,35.33608633000012],[25.361664259000122,35.3431664080001],[25.368500196000127,35.33567942900011],[25.37598717500009,35.3431664080001],[25.394216342000075,35.32880280200011],[25.408050977000073,35.31268952000015],[25.425303582000083,35.29954661700019],[25.453623894000145,35.29413483300014],[25.481944207000083,35.297430731000176],[25.63884524800008,35.34589264500006],[25.65992272200009,35.34935130400005],[25.67139733200014,35.34723541900014],[25.692556186000047,35.33783600500011],[25.707774285000113,35.33567942900011],[25.766368035000053,35.33567942900011],[25.759125196000124,35.32208893400015],[25.747731967000078,35.31061432500003],[25.72478274800008,35.29413483300014],[25.73218834700006,35.28790924700017],[25.726084832000083,35.278753973],[25.725108269000117,35.27081940300003],[25.72925866000014,35.26455312700009],[25.739024285000085,35.25999583500014],[25.73780358200008,35.27741120000012],[25.7428491550001,35.28534577000006],[25.75098717500012,35.28412506700006],[25.758962436000076,35.27431875200013],[25.75367272200009,35.267482815],[25.75367272200009,35.264105536],[25.758962436000076,35.25999583500014],[25.7532658210001,35.25259023600016],[25.748220248000052,35.25608958500014],[25.74463951900009,35.25714752800009],[25.740000847000143,35.254380601000136],[25.73218834700006,35.246323960000026],[25.735118035000085,35.23749420800014],[25.72681725400011,35.226263739000146],[25.71949303500011,35.211371161],[25.72478274800008,35.19110748900009],[25.712738477000073,35.18284739799999],[25.714121941000144,35.17397695500012],[25.720713738000114,35.16429271],[25.72478274800008,35.15355052300008],[25.728526238000114,35.133368231000055],[25.738780144000145,35.1310082050001],[25.753184441000112,35.133124091000106],[25.769786004000082,35.12653229400003],[25.78288821700005,35.11798737200011],[25.795258009000065,35.115139065000065],[25.817637566000087,35.11595286700016],[25.830332879000053,35.12238190300009],[25.847666863000143,35.150580145000056],[25.85914147200009,35.15696849200016],[25.867523634000065,35.157416083000086],[25.87330162900011,35.15867747599999],[25.88306725400014,35.16445547100015],[25.895518425000063,35.18211497600008],[25.89665774800011,35.18488190300003],[25.908539259000065,35.18740469000012],[25.941172722000115,35.18915436400012],[25.978526238000057,35.19546133000007],[25.98536217500009,35.197943427],[26.016612175000148,35.21454498900006],[26.02588951900009,35.22190989800005],[26.033213738000114,35.22581614800005],[26.04273522200009,35.22776927300002],[26.049489780000044,35.22675202000012],[26.055023634000065,35.22711823100015],[26.060557488000086,35.23330312700001],[26.06739342500009,35.23330312700001],[26.08139082100007,35.22357819200006],[26.119639519000113,35.21531810099999],[26.10824629000004,35.20538971600017],[26.129730665000068,35.195868231000176],[26.155121290000093,35.197943427],[26.179453972000147,35.20718008000016],[26.197764519000117,35.219061591000106],[26.192637566000116,35.22093333500008],[26.192637566000116,35.222072658000016],[26.19092858200011,35.22581614800005],[26.21843509200005,35.24713776200012],[26.23780358200005,35.268784898000106],[26.259532097000115,35.284491278000175],[26.293955925000148,35.28790924700017],[26.2864689460001,35.30097077000006],[26.297211134000122,35.300604559000035],[26.300791863000086,35.30097077000006],[26.29859459700009,35.30438873900006],[26.296071811000076,35.311712958000086],[26.293955925000148,35.315252997000144],[26.321136915000068,35.315252997000144],[26.312347852000098,35.29694245000009],[26.297862175000148,35.28489817900008],[26.281016472000143,35.27431875200013],[26.265961134000037,35.25999583500014],[26.2838647800001,35.208238023000106],[26.29948978000007,35.18553294500007],[26.321136915000068,35.197943427],[26.31177819100014,35.182359117000104],[26.295420769000117,35.16632721600003],[26.28500410200013,35.15070221600003],[26.293955925000148,35.13646067900014],[26.28687584700009,35.118231512000065],[26.27751712300008,35.10004303600006],[26.26685631600014,35.083889065],[26.25611412900011,35.07160065300003],[26.25098717500012,35.06305573100012],[26.240977410000113,35.03904857000008],[26.23536217500012,35.03408437700004],[26.223806186000104,35.03237539300004],[26.21387780000009,35.02822500200007],[26.205088738000114,35.023504950000174],[26.14722741000011,35.002264716000084],[26.13298587300011,34.99933502800015],[26.105235222000147,34.99933502800015],[26.103688998000106,35.002142645000035],[26.08912194100006,35.01552969000004],[26.081716342000078,35.01976146000014],[26.05795332100007,35.022894598],[26.038096550000088,35.02081940300009],[26.020274285000113,35.020941473000065],[26.00220787900008,35.030666408000016],[25.99317467500006,35.03705475500014],[25.984873894000085,35.039129950000145],[25.97673587300008,35.03693268400015],[25.968028191000087,35.030666408000016],[25.96029707100007,35.02895742400001],[25.924082879000053,35.03408437700004],[25.8815210300001,35.02708567900014],[25.80811608200011,35.005764065000065],[25.601247592000078,35.013576565000065],[25.53809655000009,34.997015692],[25.522715691000144,34.989406643000066],[25.506195509000065,34.98456452000009],[25.415212436000047,34.99371979400014],[25.347666863000143,34.99152252800017],[25.328461134000094,34.987250067000055],[25.303965691000084,34.984767971000124],[25.2947697270001,34.98094310100011],[25.27979576900006,34.97260163000006],[25.22315514400009,34.95416901200012],[25.207692905000044,34.951483466000056],[25.150889519000085,34.95571523600016],[25.128916863000086,34.951483466000056],[25.122731967000103,34.948187567],[25.114512566000116,34.94017161700005],[25.107758009000094,34.93789297100009],[25.09742272200006,34.93789297100009],[25.090993686000072,34.940375067],[25.085297071000067,34.94330475500011],[25.077403191000112,34.9447289080001],[25.059743686000104,34.943589585000055],[25.044932488000114,34.94074127800003],[25.01905358200011,34.93162669500013],[25.003184441000087,34.936957098],[24.98373457100007,34.93870677299999],[24.738536004000107,34.93162669500013],[24.738536004000107,34.93789297100009],[24.75171959700009,34.946478583],[24.75521894600007,34.957912502000156],[24.752126498000077,34.99591705900015],[24.753916863000057,35.00804271000005],[24.75993899800008,35.02732982],[24.758962436000104,35.04148997600011],[24.75586998800011,35.051459052],[24.750173373000052,35.06513092700014],[24.742849155000044,35.07721588700003],[24.735118035000113,35.082464911000116],[24.729746941000144,35.08466217700011],[24.72478274800011,35.08930084800015],[24.71810957100007,35.093980210000055],[24.70753014400009,35.09613678600006],[24.6189884770001,35.09739817900008],[24.594737175000088,35.10150788000011],[24.580251498000052,35.109198309000035],[24.57398522200012,35.109198309000035],[24.56462649800008,35.10614655200014],[24.553396030000073,35.11456940300009],[24.532399936000047,35.13646067900014],[24.519053582000108,35.14443594000009],[24.500743035000138,35.15241120000003],[24.48121178500008,35.155910549000126],[24.464121941000116,35.15013255400008],[24.403819207000083,35.175034898000106],[24.40211022200009,35.18488190300003],[24.40211022200009,35.19110748900009],[24.293223504000082,35.182277736000046],[24.217784050000148,35.19110748900009],[24.213389519000145,35.193833726000044],[24.208506707000083,35.198797919000114],[24.2049259770001,35.20343659100002],[24.20394941500004,35.20538971600017],[24.197276238000086,35.20514557500003],[24.191905144000117,35.20246002800015],[24.187510613000143,35.19940827000006],[24.182953321000095,35.197943427],[24.111338738000086,35.197943427],[24.094004754000082,35.20465729400014],[24.084646030000044,35.204535223000065],[24.08057701900009,35.194525458],[24.07642662900014,35.19546133000007],[24.04981530000012,35.19110748900009],[24.031423373000077,35.19769928600006],[24.003265821000095,35.22671133000013],[23.9876408210001,35.23330312700001],[23.90186608200014,35.231187242000104],[23.860199415000096,35.236314195000105],[23.826670769000145,35.25259023600016],[23.818369988000086,35.24730052299999],[23.81226647200009,35.24477773600016],[23.80648847700013,35.24457428600003],[23.79948978000004,35.246323960000026],[23.782074415000068,35.234686591000084],[23.711680535000056,35.236721096000124],[23.68336022200012,35.22581614800005],[23.6691186860001,35.237290757],[23.610524936000076,35.234930731000034],[23.587168816000087,35.239488022999986],[23.58228600400011,35.24518463700015],[23.58448326900009,35.25429922100015],[23.580332879000053,35.25999583500014],[23.57300866000014,35.26341380400005],[23.559418165000096,35.26459381700009],[23.552989129000082,35.26683177300005],[23.544932488000143,35.27383047100012],[23.53858483200011,35.281439520000085],[23.531016472000086,35.28847890800013],[23.518239780000044,35.29413483300014],[23.52564537900011,35.30097077000006],[23.521657748000052,35.30170319200008],[23.51929772200009,35.30174388200008],[23.518321160000113,35.303168036000145],[23.518239780000044,35.307766018000095],[23.53288821700005,35.31403229400003],[23.538910352000045,35.31517161700016],[23.546153191000084,35.315252997000144],[23.54737389400009,35.31818268400018],[23.547211134000122,35.32025788],[23.5481876960001,35.321478583000115],[23.552989129000082,35.321478583000115],[23.54672285200013,35.328762111000046],[23.541840040000068,35.33637116100005],[23.54078209700012,35.34516022300012],[23.546153191000084,35.35618724200016],[23.53858483200011,35.37409088700004],[23.549327019000145,35.39691803600006],[23.565196160000056,35.41909414300012],[23.573496941000144,35.434759833],[23.571462436000104,35.44110748900012],[23.566661004000107,35.44745514500006],[23.56202233200011,35.45172760600015],[23.559825066000116,35.45180898600013],[23.560883009000065,35.458400783000044],[23.570974155000044,35.48371002800015],[23.577647332000083,35.49290599200005],[23.57846113400009,35.50055573100015],[23.56609134200005,35.507025458000086],[23.56609134200005,35.51325104400003],[23.571055535000113,35.51813385600009],[23.572601759000065,35.52045319200006],[23.571055535000113,35.52269114800005],[23.56609134200005,35.52749258000013],[23.581228061000047,35.55267975500003],[23.58448326900009,35.564520575000145],[23.580332879000053,35.57591380400014],[23.600433790000096,35.60309479400006],[23.604746941000116,35.61261627800003],[23.60767662900014,35.592474677],[23.608164910000113,35.55170319200012],[23.614431186000076,35.53436920800014],[23.619883660000113,35.524074611000046],[23.623708530000044,35.52147044500013],[23.631683790000068,35.52069733300003],[23.639496290000068,35.518988348],[23.640391472000143,35.515082098],[23.639496290000068,35.510565497000144],[23.641774936000047,35.507025458000086],[23.65040123800014,35.50356679900007],[23.659434441000144,35.5012067730001],[23.68336022200012,35.49957916900008],[23.702972852000073,35.50287506700012],[23.718435092000107,35.51284414300012],[23.727875196000127,35.52985260600009],[23.730479363000114,35.554185289000074],[23.724864129000107,35.57363515800016],[23.716075066000144,35.591945705000015],[23.71273847700013,35.60700104400003],[23.72364342500009,35.616888739000146],[23.713877800000144,35.63483307500009],[23.711192254000082,35.648871161000145],[23.715830925000088,35.661525783],[23.727061394000113,35.674953518],[23.74154707100007,35.68695709800012],[23.750010613000086,35.68659088700012],[23.759776238000143,35.67942942900008],[23.778981967000078,35.67153554900001],[23.778981967000078,35.66404857000013],[23.767832879000082,35.65387604400008],[23.768077019000117,35.64105866100006],[23.778981967000078,35.609442450000174],[23.777679884000094,35.58372630400011],[23.778981967000078,35.57591380400014],[23.79948978000004,35.54462311400006],[23.81714928500014,35.534816799000126],[23.901377800000148,35.52716705900012]]],[[[27.22885175900009,35.808986721000096],[27.21501712300011,35.79002513200008],[27.21192467500012,35.777329820000105],[27.21192467500012,35.753404039000046],[27.213226759000122,35.74477773600013],[27.21851647200009,35.734686591000084],[27.218760613000143,35.72614166900014],[27.212901238000082,35.71873607],[27.20134524800008,35.709418036000116],[27.189789259000065,35.697414455000015],[27.184580925000144,35.68178945500013],[27.18034915500004,35.67291901200018],[27.170664910000085,35.663560289000046],[27.160980665000125,35.65131256700009],[27.156748894000085,35.633978583],[27.15650475400014,35.61880117400001],[27.158539259000094,35.61204661700016],[27.184580925000144,35.59577057500003],[27.208750847000147,35.5600446640001],[27.215342644000117,35.554185289000074],[27.220876498000052,35.55101146],[27.216481967000078,35.54401276200012],[27.208994988000114,35.537095445000105],[27.205088738000114,35.53436920800014],[27.204356316000087,35.527655341000084],[27.2037866550001,35.52716705900012],[27.20541425900012,35.52684153900018],[27.21192467500012,35.52069733300003],[27.233164910000113,35.50409577000014],[27.237315300000148,35.493394273000135],[27.232432488000086,35.47223541900003],[27.20679772200012,35.47752513199999],[27.180918816000087,35.46893952000009],[27.16163170700005,35.45010000200013],[27.156748894000085,35.424505927000084],[27.158946160000085,35.427435614],[27.160817905000044,35.43036530200011],[27.16423587300005,35.432074286000116],[27.171071811000076,35.43134186400009],[27.165863477000073,35.423325914000046],[27.1580509770001,35.41559479400003],[27.148122592000078,35.408880927],[27.13624108200014,35.40399811400012],[27.143077019000145,35.4203962260001],[27.135264519000057,35.42621491100009],[27.12110436300014,35.42767975500014],[27.108897332000083,35.43134186400009],[27.09978274800008,35.44049713700015],[27.093028191000144,35.45184967700013],[27.094248894000145,35.4615746110001],[27.108897332000083,35.46605052300005],[27.108897332000083,35.47223541900003],[27.102061394000145,35.47223541900003],[27.102061394000145,35.479071356000034],[27.118825717000078,35.48265208500011],[27.119802280000044,35.493109442],[27.108897332000083,35.52069733300003],[27.10962975400011,35.53489817900011],[27.112640821000095,35.54360586100002],[27.113780144000145,35.55097077],[27.108897332000083,35.56167226800012],[27.100840691000116,35.56708405200008],[27.074880405000044,35.58022695500012],[27.06788170700005,35.58893463700012],[27.06934655000012,35.60224030200014],[27.076670769000117,35.61579010600009],[27.08570397200012,35.626288153000175],[27.091807488000114,35.63056061400009],[27.115407748000052,35.64223867400006],[27.123708530000044,35.66779205900015],[27.127940300000148,35.69334544500005],[27.1541447270001,35.71796295800006],[27.16179446700002,35.746893622000144],[27.16244550900006,35.77728913000011],[27.156748894000085,35.794378973000065],[27.156748894000085,35.801214911],[27.171071811000076,35.808661200000145],[27.177744988000143,35.808661200000145],[27.177744988000143,35.801214911],[27.184580925000144,35.801214911],[27.190114780000073,35.80707428600011],[27.205088738000114,35.82233307500008],[27.213715040000096,35.82802969000009],[27.22095787900014,35.829250393],[27.226898634000065,35.827093817],[27.232432488000086,35.82233307500008],[27.22885175900009,35.808986721000096]]],[[[23.333262566000144,35.82916901200012],[23.32642662900011,35.82916901200012],[23.32056725400008,35.83852773600016],[23.29566491000014,35.85956452000009],[23.287364129000053,35.87055084800015],[23.28093509200005,35.8824730490001],[23.271739129000082,35.90424225500014],[23.276052280000073,35.904689846000124],[23.2771916020001,35.90326569200006],[23.2771916020001,35.900620835],[23.278005405000044,35.89744700700011],[23.29590905000009,35.88597239800008],[23.3157658210001,35.87954336100016],[23.330739780000044,35.864935614000146],[23.333262566000144,35.82916901200012]]],[[[27.614431186000072,36.21967194200015],[27.610118035000085,36.21649811400009],[27.602386915000064,36.216945705000064],[27.582855665000096,36.2125511740001],[27.568532748000106,36.215155341000084],[27.550547722000147,36.21588776200012],[27.531504754000082,36.21173737200009],[27.518890821000095,36.21686432500009],[27.51742597700013,36.230902411000145],[27.5265405610001,36.240057684000035],[27.533702019000142,36.241888739],[27.5486759770001,36.244086005],[27.565684441000144,36.24494049700008],[27.616465691000116,36.242621161000145],[27.618988477000126,36.23794179900004],[27.618662957000083,36.228094794000086],[27.614431186000072,36.21967194200015]]],[[[23.054453972000143,36.20335521000011],[23.052012566000116,36.14484284100017],[23.046885613000114,36.14321523600013],[23.03223717500009,36.14447663000006],[23.01441491000011,36.14834219000015],[23.00245201900009,36.14663320500016],[22.990733269000117,36.13703034100017],[22.987559441000144,36.151556708000115],[22.977224155000044,36.15794505400014],[22.949554884000122,36.164984442],[22.9484155610001,36.16803620000009],[22.949554884000122,36.17234935100002],[22.950043165000125,36.17625560099999],[22.946136915000125,36.177964585],[22.932302280000044,36.17723216400016],[22.92920983200014,36.177964585],[22.924001498000052,36.184393622000115],[22.914561394000142,36.200506903000175],[22.90870201900009,36.20595937700004],[22.9173283210001,36.262152411000116],[22.916188998000052,36.28510163000003],[22.90870201900009,36.308294989000146],[22.9030054050001,36.319322007],[22.899668816000087,36.32819245000003],[22.901621941000116,36.338324286],[22.932627800000148,36.38125234600015],[22.944590691000087,36.38939036700015],[22.95639082100007,36.38344961100013],[22.99626712300002,36.32416413000006],[23.011729363000143,36.308294989000146],[23.076914910000056,36.270738023000135],[23.0944116550001,36.254339911000116],[23.10385175900012,36.2372093770001],[23.09782962300011,36.23297760600015],[23.082855665000096,36.232489325000174],[23.066254102000126,36.22638580900009],[23.05844160200013,36.2164574240001],[23.054453972000143,36.20335521000011]]],[[[25.855153842000107,36.36359284100014],[25.846853061000047,36.35028717700011],[25.83806399800008,36.35179271000008],[25.828461134000094,36.35919830900015],[25.817637566000087,36.36359284100014],[25.801768425000063,36.36123281500009],[25.78980553500014,36.356594143000066],[25.77686608200014,36.35382721600011],[25.75098717500012,36.35822174700009],[25.746429884000065,36.357977606000034],[25.7433374360001,36.35883209800015],[25.736827019000085,36.36615631700015],[25.732432488000114,36.37303294500005],[25.73023522200012,36.380113023000106],[25.735606316000087,36.38344961100013],[25.749522332000055,36.38768138200008],[25.758962436000076,36.395982164000046],[25.76783287900011,36.40159739800005],[25.80298912900008,36.38959381700012],[25.835459832000083,36.36615631700015],[25.855153842000107,36.36359284100014]]],[[[28.23975670700005,36.43252187700009],[28.225840691000087,36.41795482000008],[28.236338738000143,36.37303294500005],[28.21583092500009,36.36359284100014],[28.21119225400008,36.35765208500011],[28.205088738000082,36.32265859600001],[28.197438998000052,36.31195709800009],[28.17546634200005,36.290432033000066],[28.17090905000009,36.27798086100016],[28.168467644000142,36.24982330900015],[28.163422071000127,36.23769765800007],[28.154551629000082,36.23261139500015],[28.148448113000086,36.22606028900016],[28.135915561000104,36.19521719],[28.13054446700005,36.185451565000065],[28.127696160000085,36.18646881700012],[28.110036655000073,36.186590887000094],[28.103282097000143,36.185451565000065],[28.1009220710001,36.18138255400011],[28.09913170700011,36.17446523600002],[28.09522545700011,36.16787344000012],[28.0857853520001,36.164984442],[28.061696811000076,36.11652252800012],[28.070811394000145,36.111029364],[28.078786655000098,36.10740794500013],[28.08668053500008,36.105129299000154],[28.096446160000113,36.10350169500013],[28.093760613000143,36.09528229400003],[28.08985436300014,36.08828359600015],[28.083750847000143,36.08193594000012],[28.07593834700006,36.0755882830001],[28.080088738000114,36.07135651200015],[28.08961022200012,36.05512116100011],[28.037608269000145,36.068426825000145],[28.016937696000127,36.06899648600001],[27.99341881600006,36.06195709800015],[27.948415561000076,36.03900788000006],[27.9323022800001,36.02533600500011],[27.892344597000147,35.97190989799999],[27.86353600400011,35.94098541900014],[27.827403191000084,35.913763739000146],[27.780446811000047,35.89004140800013],[27.73926842500009,35.91315338700018],[27.73267662900011,35.91510651200003],[27.730316602000073,35.92177969000009],[27.712250196000127,35.95270416900002],[27.72535241000011,35.96718984600007],[27.754079623000052,36.037176825000174],[27.76002037900008,36.06195709800015],[27.75709069100014,36.084377346000146],[27.746836785000138,36.096177476000136],[27.733164910000085,36.104641018000066],[27.708832227000126,36.127101955000064],[27.707286004000082,36.132025458000115],[27.713552280000044,36.13979726800012],[27.712250196000127,36.14447663000006],[27.702891472000086,36.150458075000145],[27.696543816000087,36.14956289300006],[27.690928582000083,36.149481512000094],[27.684255405000016,36.158148505],[27.70069420700011,36.16339752800017],[27.739512566000116,36.185451565000065],[27.763356967000107,36.192206122000115],[27.771983269000117,36.19782135600009],[27.767425977000073,36.20595937700004],[27.776052280000073,36.21161530200011],[27.778086785000113,36.21710846600014],[27.778168165000093,36.22370026200012],[27.780446811000047,36.23261139500015],[27.787119988000114,36.24518463700004],[27.7941186860001,36.254339911000116],[27.80323326900009,36.27020905200005],[27.807871941000116,36.27423737200002],[27.837412957000083,36.280991929000045],[27.84197024800011,36.284735419000086],[27.849457227000073,36.29352448100015],[27.882823113000057,36.321478583],[27.89031009200005,36.33258698100012],[27.89966881600006,36.34015534100017],[27.959239129000082,36.35675690300003],[28.070811394000145,36.40534088700018],[28.0857853520001,36.41478099200019],[28.11841881600014,36.42767975500011],[28.183929884000094,36.42446523600016],[28.213877800000063,36.45547109600007],[28.222422722000058,36.45600006700006],[28.231130405000073,36.44977448100009],[28.23975670700005,36.43866608300005],[28.23975670700005,36.43252187700009]]],[[[25.48926842500009,36.37783437700013],[25.47999108200014,36.35785553600006],[25.46509850400008,36.34243398600013],[25.446625196000067,36.33633047100015],[25.426442905000044,36.33795807500017],[25.37989342500009,36.348944403000026],[25.361664259000122,36.35675690300003],[25.373383009000094,36.361639716000084],[25.396983269000142,36.36131419500008],[25.40943444100006,36.36359284100014],[25.419200066000116,36.37006256700015],[25.428721550000088,36.38544342699999],[25.43677819100014,36.390936591000106],[25.430023634000094,36.417141018000144],[25.425303582000083,36.42715078300013],[25.41627037900008,36.43252187700009],[25.41627037900008,36.43866608300005],[25.421885613000086,36.451117255],[25.407074415000096,36.457993882],[25.368500196000127,36.466620184000085],[25.368500196000127,36.473456122000115],[25.373057488000086,36.47528717699999],[25.377777540000096,36.47801341400015],[25.382090691000087,36.479641018000095],[25.417979363000086,36.47040436400012],[25.452403191000116,36.45026276200018],[25.479177280000044,36.424383856000176],[25.491384311000104,36.39769114800005],[25.48926842500009,36.37783437700013]]],[[[27.3685001960001,36.47239817900005],[27.381683790000125,36.44415924700009],[27.396820509000122,36.43866608300005],[27.38746178500011,36.420843817],[27.399587436000104,36.41014232000008],[27.420664910000113,36.408636786000116],[27.43848717500009,36.418158270000035],[27.44190514400009,36.41510651200012],[27.443369988000057,36.41205475500011],[27.44467207100007,36.404527085000076],[27.43873131600014,36.39447663],[27.428233269000057,36.385199286000145],[27.415863477000126,36.380316473000065],[27.404307488000114,36.38344961100013],[27.399261915000064,36.378729559000035],[27.390147332000083,36.38344961100013],[27.37794030000009,36.382025458000086],[27.36475670700014,36.393377997000144],[27.357432488000143,36.410223700000145],[27.36280358200011,36.424994208000115],[27.349619988000143,36.431219794000086],[27.33814537900011,36.42841217700014],[27.328868035000056,36.42055898600016],[27.32178795700011,36.411363022999986],[27.314952019000085,36.411363022999986],[27.309336785000085,36.420152085000055],[27.296885613000057,36.42755768400003],[27.294444207000108,36.43553294499999],[27.295176629000053,36.455633856000034],[27.297048373000024,36.465155341000056],[27.3006291020001,36.473456122000115],[27.310231967000075,36.457709052000055],[27.32504316500004,36.461900132],[27.341563347000115,36.473456122000115],[27.355804884000122,36.479641018000095],[27.3685001960001,36.47239817900005]]],[[[27.174571160000085,36.56053294500008],[27.161387566000116,36.560370184000085],[27.14014733200014,36.56321849200005],[27.129730665000036,36.56952545800008],[27.126149936000076,36.58006419500005],[27.137217644000117,36.60008372600011],[27.166758660000085,36.615057684000064],[27.185801629000082,36.615668036],[27.194672071000127,36.60691966400013],[27.20606530000009,36.587103583000115],[27.19800866000014,36.56830475500006],[27.174571160000085,36.56053294500008]]],[[[26.459483269000145,36.596665757000025],[26.465993686000044,36.58270905200014],[26.459971550000148,36.57770416900008],[26.4549259770001,36.576849677],[26.45004316500004,36.580552476000136],[26.4446720710001,36.589504299000154],[26.429698113000143,36.57859935099999],[26.415863477000045,36.57489655200014],[26.386729363000086,36.57587311400012],[26.37330162900011,36.572414455000015],[26.36304772200009,36.56366608300014],[26.34864342500012,36.54108307500014],[26.347666863000143,36.528021552],[26.34945722700013,36.51561107000007],[26.34164472700013,36.509344794000114],[26.31771894600007,36.50755442900011],[26.300954623000052,36.513251044000114],[26.28223717500009,36.539862372000144],[26.265961134000037,36.54791901200018],[26.268321160000085,36.55499909100014],[26.269786004000053,36.557766018],[26.273448113000114,36.56159088700012],[26.264333530000016,36.573309637000094],[26.26148522200009,36.587632554],[26.26644941500012,36.59593333500008],[26.28028405000012,36.589504299000154],[26.294769727000073,36.59658437700004],[26.31177819100014,36.58808014500009],[26.32846113400009,36.57526276200015],[26.34164472700013,36.569037177],[26.350840691000087,36.572739976000136],[26.36060631600014,36.58649323100015],[26.365977410000085,36.589504299000154],[26.377289259000094,36.58820221600014],[26.385915561000076,36.58608633000016],[26.393890821000127,36.58567942900005],[26.40381920700014,36.589504299000154],[26.390310092000078,36.595445054],[26.38493899800011,36.60480377800012],[26.38892662900008,36.61334870000006],[26.389414910000085,36.616197007],[26.378672722000147,36.61920807500009],[26.369965040000068,36.624416408000066],[26.362152540000096,36.63051992400007],[26.362152540000096,36.63788483300006],[26.393321160000085,36.63654205900018],[26.430511915000064,36.618719794000086],[26.459483269000145,36.596665757000025]]],[[[27.822276238000082,36.62376536700013],[27.815277540000096,36.61001211100002],[27.824473504000082,36.612941799000126],[27.828623894000113,36.61298248900012],[27.83570397200006,36.602525132000046],[27.86988366000014,36.624253648000106],[27.872080925000063,36.620550848000065],[27.87281334700009,36.61961497599999],[27.87378991000014,36.61908600500011],[27.87671959700009,36.616848049000126],[27.871348504000107,36.61334870000006],[27.867930535000113,36.60944245000014],[27.865489129000082,36.605536200000145],[27.863047722000147,36.602525132000046],[27.86988366000014,36.60667552299999],[27.87322024800008,36.60545482000007],[27.872894727000073,36.59959544500013],[27.86988366000014,36.589504299000154],[27.870616082000083,36.57778554900007],[27.87256920700014,36.56924062700015],[27.87671959700009,36.56159088700012],[27.867523634000094,36.55683014500012],[27.863047722000147,36.555365302000055],[27.868011915000093,36.55320872600005],[27.872080925000063,36.55036041900003],[27.8748478520001,36.54645416900003],[27.87671959700009,36.54108307500014],[27.854502800000034,36.530503648000106],[27.843028191000087,36.52789948100011],[27.82829837300008,36.528021552],[27.82829837300008,36.534247137000065],[27.834157748000024,36.536525783000016],[27.842621290000068,36.543605861000074],[27.84937584700009,36.54791901200018],[27.805918816000144,36.56012604400014],[27.792491082000083,36.566961981000176],[27.807871941000116,36.57587311400012],[27.76002037900008,36.57587311400012],[27.766856316000087,36.58519114800005],[27.777842644000145,36.59560781500015],[27.786957227000045,36.60626862200017],[27.78785241000014,36.616848049000126],[27.792491082000083,36.61717357000005],[27.795258009000122,36.618719794000086],[27.801524285000085,36.624253648000106],[27.801524285000085,36.616848049000126],[27.81812584700012,36.63401927300004],[27.84197024800011,36.64472077000009],[27.861013217000107,36.64671458500011],[27.863047722000147,36.63788483300006],[27.835215691000087,36.63108958500014],[27.822276238000082,36.62376536700013]]],[[[24.963715040000125,36.602525132000046],[24.963715040000125,36.596340236000074],[24.93799889400006,36.597723700000145],[24.922862175000063,36.602280992000104],[24.89551842500009,36.624253648000106],[24.879405144000113,36.63279857000005],[24.863454623000106,36.63816966400019],[24.84978274800008,36.64691803600009],[24.840830925000144,36.66522858300014],[24.86166425900012,36.66596100500006],[24.86817467500012,36.66522858300014],[24.94792728000007,36.62433502800009],[24.963715040000125,36.602525132000046]]],[[[25.12956790500004,36.660345770000056],[25.09310957100007,36.63662344000015],[25.067393425000116,36.63788483300006],[25.104665561000104,36.69936758000013],[25.11646569100006,36.70258209800009],[25.13640384200005,36.71670156500012],[25.14625084700006,36.719875393000095],[25.18580162900011,36.71914297100015],[25.18311608200014,36.716376044000086],[25.182465040000096,36.71190013200013],[25.183441602000073,36.70620351800015],[25.12956790500004,36.660345770000056]]],[[[21.778005405000073,36.72036367400007],[21.77784264400009,36.69936758000013],[21.771657748000052,36.70555247600011],[21.768077019000145,36.70807526200012],[21.765961134000065,36.71133047100007],[21.764170769000145,36.719875393000095],[21.750498894000117,36.71238841400013],[21.75611412900014,36.74111562700007],[21.759532097000147,36.751898505000085],[21.764170769000145,36.75397370000009],[21.780039910000085,36.747503973],[21.781586134000122,36.736395575000145],[21.778005405000073,36.72036367400007]]],[[[24.450450066000087,36.75340403900013],[24.474375847000143,36.74713776200018],[24.51270592500009,36.763983466000084],[24.53337649800011,36.768011786000145],[24.546071811000076,36.75397370000009],[24.54322350400011,36.74310944200003],[24.546071811000076,36.688788153000175],[24.537608269000117,36.681382554],[24.518402540000068,36.67365143400018],[24.484629754000082,36.66522858300014],[24.364593946000067,36.66303131700015],[24.326996290000068,36.650946356000034],[24.3229272800001,36.66535065300012],[24.33130944100006,36.687160549000154],[24.326996290000068,36.69936758000013],[24.33130944100006,36.702134507],[24.33578535200013,36.70807526200012],[24.340668165000096,36.71238841400013],[24.331390821000042,36.718166408000066],[24.326996290000068,36.719875393000095],[24.336680535000113,36.72776927300008],[24.344737175000144,36.74567291900003],[24.35425866000014,36.75397370000009],[24.359060092000046,36.74848053600006],[24.365489129000053,36.74298737200005],[24.37305748800011,36.73794179900001],[24.381602410000113,36.73354726800012],[24.39535566500004,36.73590729400017],[24.40723717500009,36.70726146000011],[24.42652428500014,36.69936758000013],[24.46070397200012,36.69936758000013],[24.47144616000014,36.704250393],[24.46851647200012,36.715155341000084],[24.459157748000077,36.726711330000015],[24.45053144600007,36.73354726800012],[24.436859571000127,36.72748444200012],[24.4270939460001,36.73383209800006],[24.41871178500014,36.74510325700005],[24.408864780000012,36.75397370000009],[24.408864780000012,36.76080963700012],[24.420258009000094,36.77106354400014],[24.433278842000078,36.76504140800013],[24.450450066000087,36.75340403900013]]],[[[24.659353061000047,36.75055573100009],[24.64478600400011,36.74725983300006],[24.629730665000096,36.75755442900008],[24.608164910000085,36.781317450000174],[24.62183678500014,36.79498932500012],[24.638682488000143,36.794623114],[24.643809441000144,36.79295482],[24.642263217000107,36.788763739000146],[24.656260613000057,36.782904364],[24.665782097000147,36.774644273000106],[24.66773522200012,36.763983466000084],[24.659353061000047,36.75055573100009]]],[[[25.39942467500009,36.727972723000036],[25.40943444100006,36.71238841400013],[25.396983269000142,36.710516669000135],[25.39014733200011,36.703680731000034],[25.389496290000068,36.69424062700004],[25.395192905000073,36.68512604400003],[25.395192905000073,36.678900458000086],[25.373220248000052,36.6537132830001],[25.337901238000114,36.66828034100003],[25.27295983200014,36.719875393000095],[25.275238477000126,36.721909898000106],[25.276377800000148,36.722560940000065],[25.277598504000082,36.72353750200013],[25.27979576900006,36.726711330000015],[25.271169467000078,36.725816148000106],[25.251800977000126,36.726711330000015],[25.257090691000112,36.73590729400017],[25.262380405000098,36.74970123900009],[25.264984571000095,36.762152411],[25.26270592500012,36.76764557500003],[25.306976759000065,36.79498932500012],[25.319509311000072,36.78192780200011],[25.33619225400011,36.75771719000012],[25.347992384000094,36.74713776200018],[25.365896030000044,36.73956940300003],[25.383799675000088,36.73509349200016],[25.39942467500009,36.727972723000036]]],[[[21.71843509200005,36.796576239000146],[21.722829623000052,36.794623114],[21.729340040000125,36.79498932500012],[21.729340040000125,36.788763739000146],[21.724945509000037,36.78676992400001],[21.720388217000103,36.78351471600014],[21.71631920700014,36.781317450000174],[21.71656334700009,36.770941473000065],[21.710459832000083,36.76166413000011],[21.702321811000076,36.75193919500008],[21.69581139400009,36.74038320500013],[21.696950717000103,36.77582428600014],[21.700856967000107,36.79108307500011],[21.709483269000117,36.80174388200013],[21.71452884200005,36.799383856000084],[21.71843509200005,36.796576239000146]]],[[[23.889008009000122,36.83429596600011],[23.88428795700011,36.83234284100014],[23.87696373800011,36.83649323100009],[23.87671959700006,36.84369538000014],[23.88428795700011,36.84357330900015],[23.887461785000085,36.838609117000104],[23.889008009000122,36.83429596600011]]],[[[24.580088738000086,36.838609117000104],[24.585948113000143,36.83649323100009],[24.592458530000044,36.83746979400017],[24.600759311000104,36.84275950700005],[24.60254967500009,36.83982982000013],[24.60230553500014,36.83808014500012],[24.603037957000083,36.83690013200011],[24.608164910000085,36.83592357000013],[24.608164910000085,36.82908763200011],[24.600433790000093,36.822088934000035],[24.57276451900009,36.78192780200011],[24.55640709700009,36.780340887000094],[24.539805535000113,36.78449127800003],[24.532399936000047,36.79189687700004],[24.529551629000082,36.803656317],[24.524099155000044,36.810492255000106],[24.52116946700005,36.81736888200011],[24.52613366000008,36.82908763200011],[24.53419030000012,36.83612702000009],[24.54721113400009,36.84247467700011],[24.561778191000116,36.845648505000085],[24.57398522200012,36.84275950700005],[24.580088738000086,36.838609117000104]]],[[[25.457855665000064,36.8248558610001],[25.434418165000093,36.82265859600001],[25.423106316000087,36.83250560100011],[25.430349155000044,36.84406159100014],[25.446950717000078,36.85740794500008],[25.47095787900011,36.870672919000086],[25.478363477000098,36.870672919000086],[25.47095787900011,36.86322663000011],[25.476410352000073,36.86269765800013],[25.478526238000082,36.86001211100016],[25.477793816000144,36.835150458000115],[25.457855665000064,36.8248558610001]]],[[[27.190765821000127,36.81232330900009],[27.12989342500012,36.76080963700012],[27.109060092000046,36.75828685100002],[27.08318118600002,36.76121653900013],[27.060069207000083,36.76740143400009],[27.047536655000073,36.77509186400003],[26.9920353520001,36.75360748900009],[26.975759311000076,36.74079010600015],[26.986013217000107,36.719875393000095],[26.97169030000012,36.71625397300012],[26.96566816500012,36.70555247600011],[26.96656334700012,36.69171784100011],[26.97291100400014,36.678900458000086],[26.95533287900011,36.681708075000024],[26.937266472000086,36.69277578300016],[26.92335045700011,36.70620351800015],[26.91773522200012,36.71613190300015],[26.920258009000122,36.75116608300014],[26.926280144000117,36.765611070000105],[26.937673373000077,36.76080963700012],[26.942393425000088,36.76626211100016],[26.95386803500014,36.77594635600011],[26.95875084700012,36.781317450000174],[26.964040561000104,36.77802155200014],[26.986013217000107,36.76764557500003],[26.99952233200008,36.778509833000115],[27.00749759200005,36.78782786700016],[27.02076256600006,36.80857982000008],[27.05518639400009,36.832668361000074],[27.0612085300001,36.839341539000046],[27.16423587300005,36.891180731000055],[27.265635613000086,36.90403880400008],[27.28093509200005,36.90790436400009],[27.291514519000113,36.89183177299999],[27.340993686000047,36.88190338700009],[27.355804884000122,36.86322663000011],[27.32341556100002,36.84870026200018],[27.2142033210001,36.82387929900004],[27.190765821000127,36.81232330900009]]],[[[25.674001498000052,36.87946198100015],[25.654633009000122,36.87889232],[25.63160241000014,36.88263580900012],[25.608653191000144,36.88373444200006],[25.6145939460001,36.89374420800006],[25.6248478520001,36.898749091000084],[25.637461785000085,36.90322500200015],[25.64966881600006,36.9116071640001],[25.659434441000116,36.907456772999986],[25.684418165000125,36.891180731000055],[25.674001498000052,36.87946198100015]]],[[[23.467295769000117,36.90639883000004],[23.46387780000012,36.90399811400009],[23.457774285000113,36.90643952000003],[23.454925977000073,36.913275458000115],[23.454600457000055,36.915187893000095],[23.452484571000042,36.916449286],[23.453135613000086,36.921372789000074],[23.44971764400009,36.929144598000065],[23.45606530000012,36.927801825000174],[23.459646030000098,36.921372789000074],[23.464203321000127,36.91705963700015],[23.467295769000117,36.90639883000004]]],[[[26.074229363000114,36.89801666900014],[26.074717644000085,36.89329661700004],[26.073090040000068,36.892075914000046],[26.07048587300008,36.892075914000046],[26.06739342500009,36.891180731000055],[26.0501408210001,36.89695872600011],[26.031993035000085,36.893947658000016],[26.015961134000094,36.88947174700006],[26.005869988000143,36.891180731000055],[25.99097741000008,36.87909577000015],[25.9485783210001,36.85423411700019],[25.9342554050001,36.849554755000085],[25.921397332000083,36.84105052300005],[25.89356530000012,36.80345286700004],[25.87964928500014,36.79498932500012],[25.798675977000073,36.77277252800014],[25.755544467000075,36.769964911],[25.739024285000085,36.79498932500012],[25.7532658210001,36.788763739000146],[25.760752800000148,36.799058335000055],[25.774099155000073,36.80711497600002],[25.78891035200013,36.80923086100002],[25.800547722000147,36.80174388200013],[25.807383660000085,36.80174388200013],[25.814138217000107,36.80683014500006],[25.82300866000014,36.80874258000004],[25.845469597000147,36.80857982000008],[25.849375847000143,36.81220123900012],[25.86312910200007,36.83592357000013],[25.851573113000143,36.83112213700004],[25.845469597000147,36.836615302000084],[25.843760613000143,36.845119533000016],[25.845469597000147,36.849554755000085],[25.856618686000072,36.85106028900013],[25.971853061000104,36.89801666900014],[25.971853061000104,36.90420156500012],[25.966075066000144,36.90664297100007],[25.962657097000115,36.90875885600017],[25.958669467000046,36.91054922100007],[25.95069420700011,36.9116071640001],[25.95069420700011,36.918443101000136],[25.9783634770001,36.92495351800012],[25.990244988000143,36.930731512000094],[25.998383009000065,36.938910223],[26.005869988000143,36.938910223],[26.019053582000083,36.92511627800009],[26.03541100400011,36.9129906270001],[26.05420983200014,36.903550522999986],[26.074229363000114,36.89801666900014]]],[[[25.071950717000078,36.96385325700011],[25.081065300000148,36.95262278900013],[25.066661004000082,36.95514557500006],[25.04704837300002,36.96922435099999],[25.03052819100014,36.988959052000105],[25.025889519000117,37.00787995000003],[25.035492384000094,37.021918036],[25.05323326900009,37.03436920800003],[25.07276451900009,37.042181708],[25.087901238000086,37.04197825700005],[25.069590691000116,36.989569403000175],[25.05990644600007,36.973089911],[25.066254102000073,36.96869538000003],[25.071950717000078,36.96385325700011]]],[[[24.65593509200005,37.04881419500008],[24.679698113000143,37.032863674000154],[24.689300977000126,37.029201565],[24.69752037900011,37.03514232000013],[24.704356316000144,37.03514232000013],[24.7161564460001,37.02008698100012],[24.751638217000107,36.98578522300015],[24.76465905000009,36.956610419000114],[24.76579837300011,36.949204820000105],[24.76270592500012,36.94537995000009],[24.748545769000117,36.939357815],[24.745290561000076,36.93553294499999],[24.710622592000078,36.90420156500012],[24.695811394000113,36.923244533000044],[24.678884311000047,36.951483466000084],[24.669200066000087,36.97846100500014],[24.676524285000085,36.99359772300015],[24.676524285000085,37.00043366100006],[24.665863477000126,37.007473049000126],[24.65406334700009,37.02431875200013],[24.642263217000107,37.027736721000124],[24.642832879000082,37.032660223],[24.644053582000083,37.03563060100011],[24.649668816000084,37.04197825700005],[24.645681186000104,37.042873440000115],[24.64340254000004,37.042873440000115],[24.64258873800011,37.044175523000135],[24.642263217000107,37.04881419500008],[24.65593509200005,37.04881419500008]]],[[[26.97291100400014,37.04197825700005],[26.982188347000086,37.028753973],[26.995290561000076,37.022894598000065],[27.005869988000114,37.01618073100012],[27.007090691000116,37.00043366100006],[27.01539147200012,37.00873444200014],[27.023936394000117,37.01268138200011],[27.032481316000144,37.012355861000096],[27.041270379000107,37.00787995000003],[27.044281446000124,36.99624258000013],[27.03687584700012,36.97846100500014],[27.041270379000107,36.96686432500003],[27.036306186000076,36.960150458000086],[27.03492272200009,36.957180080000064],[27.033864780000044,36.95262278900013],[27.041270379000107,36.95262278900013],[27.041270379000107,36.95941803600006],[27.047536655000073,36.95941803600006],[27.040375196000127,36.94505442900008],[27.02361087300011,36.94501373900009],[26.993418816000084,36.95262278900013],[26.988291863000082,36.9466820330001],[26.986175977000073,36.93768952000009],[26.983409050000116,36.92951080900018],[26.976084832000108,36.925930080000015],[26.966319207000055,36.927801825000174],[26.95875084700012,36.93097565300003],[26.951914910000085,36.93162669499999],[26.94507897200009,36.925930080000015],[26.937754754000082,36.93504466400019],[26.92986087300011,36.942775783000016],[26.921153191000116,36.94708893400009],[26.91163170700011,36.94578685100011],[26.920258009000122,36.95880768400009],[26.924978061000047,36.963080145],[26.931407097000143,36.96686432500003],[26.92530358200014,36.981675523000106],[26.92986087300011,36.99396393400015],[26.938649936000072,37.00454336100002],[26.94507897200009,37.014105536],[26.947276238000086,37.01618073100012],[26.951182488000057,37.02118561400006],[26.95386803500014,37.02789948100009],[26.951914910000085,37.03514232000013],[26.94361412900011,37.040716864000146],[26.93506920700008,37.03961823100009],[26.928396030000044,37.03636302300004],[26.924571160000113,37.03514232000013],[26.917165561000044,37.04165273600002],[26.91244550900012,37.04694245000009],[26.903493686000104,37.062486070000105],[26.89600670700014,37.06891510600012],[26.888926629000082,37.07099030200014],[26.88559004000004,37.07558828300007],[26.889821811000076,37.089789130000085],[26.90162194100014,37.07729726800006],[26.986013217000107,37.04881419500008],[26.986013217000107,37.04197825700005],[26.97291100400014,37.04197825700005]]],[[[25.82837975400011,37.12396881700006],[25.837168816000087,37.11367422100015],[25.842051629000135,37.11029694200012],[25.836761915000068,37.10236237200017],[25.829112175000148,37.097316799000126],[25.81910241000014,37.096909898000135],[25.807383660000085,37.10342031500012],[25.805430535000113,37.099188544000114],[25.805023634000122,37.09829336100002],[25.804209832000108,37.09804922100007],[25.800547722000147,37.095933335000055],[25.780528191000087,37.12396881700006],[25.79737389400009,37.12323639500015],[25.809825066000116,37.126898505],[25.834646030000073,37.13760000200001],[25.832041863000057,37.13019440300003],[25.82837975400011,37.12396881700006]]],[[[25.27979576900006,37.12396881700006],[25.26295006600006,37.08982982000008],[25.262868686000076,37.07558828300007],[25.27979576900006,37.06928131700012],[25.27979576900006,37.062486070000105],[25.266123894000117,37.062486070000105],[25.266123894000117,37.05499909100003],[25.27979576900006,37.05499909100003],[25.27979576900006,37.04881419500008],[25.268809441000116,37.04612864799999],[25.263031446000042,37.03994375200001],[25.258636915000064,37.03131745000012],[25.251800977000126,37.02147044499999],[25.244802280000073,37.01459381700009],[25.23218834700009,37.00511302299999],[25.2044376960001,36.988959052000105],[25.18848717500009,36.98529694200006],[25.152842644000145,36.986761786000116],[25.14332116000014,36.99005768400015],[25.121918165000093,37.004584052],[25.111501498000106,37.00787995000003],[25.1033634770001,37.012884833000086],[25.103037957000083,37.02431875200013],[25.112966342000078,37.06273021000014],[25.125336134000122,37.07453034100011],[25.156260613000143,37.089789130000085],[25.149261915000068,37.0934919290001],[25.14242597700007,37.094916083],[25.135752800000088,37.093817450000145],[25.150075717000078,37.110541083000086],[25.178558790000096,37.12946198100009],[25.209808790000064,37.14402903900013],[25.238780144000142,37.15184153900013],[25.2239689460001,37.13434479400017],[25.23194420700014,37.12750885600015],[25.25928795700011,37.12396881700006],[25.27295983200014,37.13760000200001],[25.27027428500008,37.141546942],[25.266123894000117,37.15184153900013],[25.27979576900006,37.15273672100001],[25.293304884000033,37.15184153900013],[25.29135175900009,37.14423248900008],[25.288096550000148,37.13654205900015],[25.284190300000148,37.12946198100009],[25.27979576900006,37.12396881700006]]],[[[26.817230665000068,37.19481028900016],[26.823090040000096,37.19330475500011],[26.826833530000044,37.19424062700001],[26.830902540000093,37.19281647300012],[26.834727410000113,37.191066799000126],[26.841075066000144,37.18915436400009],[26.84978274800005,37.187323309000114],[26.852875196000127,37.18178945500009],[26.846202019000145,37.17121002800003],[26.844086134000065,37.16201406500006],[26.854258660000085,37.15851471600017],[26.86426842500009,37.153306382],[26.8698022800001,37.141017971000124],[26.871836785000113,37.13410065300003],[26.87794030000012,37.12897370000011],[26.886892123000052,37.11660390800007],[26.886892123000052,37.10569896],[26.879730665000093,37.10382721600003],[26.87549889400009,37.10370514500006],[26.875173373000052,37.10008372600002],[26.86988366000008,37.09804922100007],[26.86158287900011,37.097316799000126],[26.849945509000094,37.098456122000165],[26.837575717000046,37.104722398000135],[26.837575717000046,37.112127997000115],[26.848643425000088,37.117865302],[26.85230553500014,37.12457916900002],[26.843028191000087,37.1251488300001],[26.829763217000078,37.118719794000086],[26.817230665000068,37.11985911700013],[26.81039472700004,37.12938060100011],[26.814219597000147,37.138128973],[26.816905144000142,37.146551825000145],[26.80640709700006,37.15167877800015],[26.79509524800008,37.15546295800008],[26.78834069100014,37.16205475500006],[26.776215040000068,37.169663804],[26.77271569100006,37.18268463700018],[26.78419030000012,37.191473700000145],[26.798024936000104,37.19057851800015],[26.80103600400011,37.192572333],[26.800303582000083,37.19928620000006],[26.80827884200005,37.20026276200012],[26.817230665000068,37.19481028900016]]],[[[25.5950626960001,37.09967682500009],[25.59278405000012,37.080877997000144],[25.58301842500009,37.03978099200005],[25.580821160000113,37.01776764500014],[25.552500847000147,36.96893952000015],[25.547373894000145,36.96531810099999],[25.54037519600007,36.96409739800008],[25.52613366000014,36.95941803600006],[25.491384311000104,36.93211497600007],[25.47999108200014,36.92841217700011],[25.46111087300011,36.92450592700014],[25.4498804050001,36.918443101000136],[25.44760175900012,36.92475006700009],[25.443695509000122,36.92609284100017],[25.43677819100014,36.93211497600007],[25.43238366000014,36.939276434000114],[25.426442905000044,36.95937734600007],[25.423106316000087,36.96686432500003],[25.416677280000098,36.97313060099999],[25.38892662900011,36.986761786000116],[25.393321160000085,36.99217357000008],[25.39405358200011,36.99811432500009],[25.391286655000073,37.00438060100005],[25.385508660000113,37.0109723980001],[25.3807072270001,37.018744208000115],[25.379730665000125,37.026841539000046],[25.381032748000052,37.033148505],[25.382090691000087,37.03514232000013],[25.36695397200009,37.05955638200008],[25.355479363000143,37.071356512000065],[25.34180748800011,37.07672760600009],[25.34180748800011,37.082953192000055],[25.3475041020001,37.087388414000046],[25.352386915000068,37.08909739800005],[25.35670006600006,37.08771393400015],[25.361664259000122,37.082953192000055],[25.371836785000056,37.08905670800005],[25.40943444100006,37.12396881700006],[25.474619988000086,37.16181061400012],[25.48023522200009,37.16791413],[25.495127800000116,37.1891136740001],[25.502289259000065,37.191717841000084],[25.522146030000073,37.19318268400015],[25.52613366000014,37.19623444200015],[25.533702019000113,37.20066966400013],[25.5501408210001,37.193793036000116],[25.574554884000065,37.178534247000144],[25.586273634000033,37.16063060099999],[25.5924585300001,37.142523505000085],[25.5950626960001,37.09967682500009]]],[[[24.485606316000144,37.20612213700015],[24.49830162900011,37.19965241100006],[24.505137566000144,37.19965241100006],[24.509776238000054,37.204901434000035],[24.514903191000084,37.20600006700009],[24.52051842500009,37.20392487200017],[24.52613366000008,37.19965241100006],[24.532074415000096,37.18561432500012],[24.53467858200011,37.16766998900005],[24.534515821000127,37.14834219000012],[24.532399936000047,37.13011302300004],[24.52613366000008,37.14443594000012],[24.518809441000087,37.14443594000012],[24.51889082100007,37.132066148000014],[24.515310092000075,37.122870184000035],[24.508148634000037,37.11591217700014],[24.49830162900011,37.11029694200012],[24.495941602000073,37.11310455900018],[24.495371941000087,37.114406643000095],[24.494395379000107,37.11542389500015],[24.491465691000112,37.11774323100011],[24.490977410000113,37.12225983300006],[24.492849155000073,37.12319570500016],[24.49545332100007,37.122870184000035],[24.49830162900011,37.12396881700006],[24.48975670700011,37.128119208000115],[24.480967644000117,37.129706122000144],[24.4725041020001,37.12836334800015],[24.464121941000116,37.12396881700006],[24.462087436000104,37.133490302000084],[24.459483269000117,37.13719310100011],[24.455821160000138,37.135891018],[24.45053144600007,37.13011302300004],[24.442067905000044,37.134466864000146],[24.434418165000096,37.134182033000016],[24.428070509000065,37.130316473],[24.422536655000073,37.12396881700006],[24.419118686000044,37.13564687700006],[24.421885613000114,37.13816966400019],[24.430511915000096,37.14443594000012],[24.42351321700005,37.14984772300009],[24.423024936000047,37.15473053600006],[24.427744988000143,37.15961334800012],[24.4362085300001,37.164862372000115],[24.432790561000076,37.172267971000096],[24.434743686000047,37.175482489000146],[24.443695509000065,37.178534247000144],[24.4362085300001,37.18537018400014],[24.468272332000083,37.202093817],[24.485606316000144,37.20612213700015]]],[[[23.16236412900008,37.244208075000145],[23.152028842000078,37.23997630400011],[23.13103274800005,37.24371979400014],[23.11898847700013,37.252834377000156],[23.10914147200012,37.264146226000136],[23.0944116550001,37.274725653000175],[23.1014103520001,37.280951239000146],[23.10954837300011,37.28534577000011],[23.118500196000127,37.287787177000055],[23.12842858200014,37.28839752800012],[23.134287957000083,37.284572658000016],[23.1510522800001,37.276800848],[23.158457879000082,37.27138906500015],[23.162445509000065,37.264349677],[23.164724155000044,37.25381094000012],[23.16236412900008,37.244208075000145]]],[[[23.547699415000125,37.349839585],[23.523285352000073,37.34662506700014],[23.50513756600006,37.349839585],[23.50879967500012,37.32990143400012],[23.496836785000085,37.320013739],[23.476084832000083,37.31671784100017],[23.45362389400009,37.31635163000006],[23.396494988000114,37.30320872599999],[23.374278191000144,37.30267975500011],[23.374278191000144,37.30951569200012],[23.463633660000085,37.357326565000065],[23.4876408210001,37.36351146000014],[23.532562696000127,37.36391836100013],[23.552989129000082,37.370917059000114],[23.587168816000087,37.370917059000114],[23.571136915000096,37.35834381700012],[23.547699415000125,37.349839585]]],[[[26.56861412900011,37.374416408000016],[26.580577019000117,37.37010325700011],[26.590342644000085,37.364447333000115],[26.59669030000009,37.359198309000035],[26.5988061860001,37.35541413000011],[26.60368899800008,37.34943268400009],[26.606130405000016,37.33954498900009],[26.600840691000144,37.33734772300009],[26.595469597000086,37.34162018400009],[26.588715040000064,37.34479401200015],[26.58497155000012,37.34560781500009],[26.58130944100006,37.34674713700012],[26.57243899800011,37.34715403900013],[26.563731316000112,37.34170156500009],[26.559743686000044,37.33437734600007],[26.558441602000073,37.32973867400015],[26.554698113000114,37.32713450700005],[26.548838738000086,37.326564846000096],[26.5538843110001,37.31989166900003],[26.565196160000085,37.30841705900018],[26.5677189460001,37.274644273000106],[26.557302280000016,37.271226304],[26.546397332000137,37.277167059000114],[26.547373894000113,37.283636786000116],[26.54476972700013,37.28839752800012],[26.53272545700011,37.29173411700005],[26.52857506600006,37.30072663000006],[26.533864780000044,37.32514069200012],[26.53736412900014,37.33148834800015],[26.53882897200009,37.33812083500011],[26.5358179050001,37.34707265800012],[26.53370201900009,37.36066315300009],[26.536387566000144,37.37270742400001],[26.545095248000052,37.37311432500012],[26.55640709700012,37.37205638200005],[26.56861412900011,37.374416408000016]]],[[[24.4694116550001,37.42747630400014],[24.48267662900014,37.41242096600003],[24.47779381600006,37.39081452000012],[24.46338951900009,37.394476630000085],[24.45281009200005,37.38344961100002],[24.446136915000096,37.36579010600011],[24.443695509000065,37.349839585],[24.429698113000086,37.33881256700015],[24.41179446700005,37.32396067899999],[24.38900800900012,37.313910223000036],[24.36793053500008,37.30951569200012],[24.376719597000147,37.344956773000135],[24.385590040000096,37.36115143400018],[24.40211022200009,37.370917059000114],[24.40211022200009,37.377142645000085],[24.397634311000015,37.379299221000096],[24.393321160000113,37.382757880000085],[24.388438347000147,37.38458893400015],[24.388438347000147,37.39081452000012],[24.396820509000094,37.40151601800012],[24.394786004000082,37.41176992400007],[24.384532097000143,37.41681549700008],[24.36793053500008,37.411932684000035],[24.374847852000098,37.438462632],[24.395681186000076,37.456854559000035],[24.41960696700005,37.47158437700013],[24.4362085300001,37.487005927000055],[24.443695509000065,37.487005927000055],[24.443695509000065,37.472723700000145],[24.441172722000147,37.464911200000174],[24.43433678500011,37.45075104400014],[24.430511915000096,37.44603099200005],[24.4694116550001,37.42747630400014]]],[[[25.347992384000094,37.50812409100017],[25.377289259000094,37.46743398600007],[25.382090691000087,37.46967194200006],[25.385590040000096,37.48993561400009],[25.395355665000125,37.493963934000064],[25.426768425000144,37.487005927000055],[25.430837436000104,37.48480866100006],[25.43628991000014,37.479885158000016],[25.44361412900014,37.47504303600011],[25.462901238000086,37.470038153000175],[25.465586785000085,37.463364976000136],[25.46314537900014,37.454738674000126],[25.457286004000082,37.44603099200005],[25.442556186000104,37.44090403900013],[25.423594597000086,37.44110748900009],[25.407725457000055,37.43683502800015],[25.40259850400014,37.41815827000009],[25.395192905000073,37.41815827000009],[25.38257897200009,37.41974518400012],[25.306976759000065,37.411932684000035],[25.30925540500004,37.41974518400012],[25.30884850400014,37.422674872000144],[25.307790561000076,37.42446523600013],[25.306976759000065,37.42865631700006],[25.30925540500004,37.43618398600002],[25.31397545700014,37.438421942],[25.318858269000117,37.438421942],[25.321299675000148,37.43919505400011],[25.32642662900008,37.46287669500004],[25.32243899800011,37.471014716000134],[25.306976759000065,37.472723700000145],[25.312673373000052,37.48822663000008],[25.324392123000052,37.495103257],[25.337738477000073,37.49957916900014],[25.347992384000094,37.50812409100017]]],[[[24.964040561000047,37.40176015800007],[24.956553582000083,37.397040106000176],[24.89625084700012,37.37164948100015],[24.881846550000148,37.36351146000014],[24.881358269000085,37.37323639500009],[24.882172071000095,37.380357164000046],[24.88461347700013,37.38593170800014],[24.888682488000086,37.39081452000012],[24.888682488000086,37.39826080900009],[24.88200931100002,37.39769114800013],[24.861338738000114,37.39826080900009],[24.86402428500008,37.407294012000094],[24.86817467500012,37.4146996110001],[24.874034050000063,37.42072174700008],[24.881846550000148,37.42560455900015],[24.877777540000096,37.426906643000066],[24.86817467500012,37.43178945500012],[24.886729363000114,37.43528880400011],[24.898122592000103,37.448675848000114],[24.902679884000037,37.46576569200006],[24.902354363000114,37.480169989000146],[24.89625084700012,37.5019391950001],[24.89535566500012,37.51044342700014],[24.9049585300001,37.510809637000065],[24.929698113000086,37.50812409100017],[24.93881269600007,37.49974192900011],[24.948090040000125,37.48558177299999],[24.955088738000114,37.47064850500014],[24.957530144000145,37.45970286700016],[24.954925977000045,37.4526227890001],[24.945323113000086,37.44334544500008],[24.943369988000114,37.435492255000085],[24.946055535000113,37.43301015800016],[24.952321811000047,37.42967357000013],[24.95915774800008,37.42487213700003],[24.963715040000125,37.41815827000009],[24.966156446000042,37.407782294000086],[24.964040561000047,37.40176015800007]]],[[[23.506358269000085,37.512844143000066],[23.481211785000113,37.50958893400003],[23.455902540000068,37.512518622000144],[23.436289910000085,37.52179596600011],[23.436289910000085,37.528021552000055],[23.464610222000147,37.533758856000034],[23.47543379000012,37.54083893400009],[23.477305535000113,37.555894273000106],[23.48178144600007,37.55646393400018],[23.48316491000014,37.55499909100003],[23.48316491000014,37.55231354400014],[23.484141472000115,37.549058335],[23.4920353520001,37.53912995000009],[23.500824415000064,37.5326195330001],[23.511566602000073,37.52903880400014],[23.52564537900011,37.528021552000055],[23.52564537900011,37.52179596600011],[23.506358269000085,37.512844143000066]]],[[[24.74122155000009,37.5956891950001],[24.71810957100007,37.59357330900009],[24.672373894000142,37.6004906270001],[24.659678582000083,37.606878973000036],[24.677907748000052,37.60944245000003],[24.694021030000044,37.615179755],[24.703868035000138,37.624701239],[24.716075066000112,37.63104889500012],[24.732920769000117,37.63206614799999],[24.741058790000036,37.625921942],[24.73943118600002,37.61383698100009],[24.737803582000083,37.607855536],[24.74122155000009,37.5956891950001]]],[[[25.083262566000144,37.65037669500005],[25.087901238000086,37.64468008000007],[25.10377037900011,37.65375397300006],[25.122731967000103,37.65167877800015],[25.139821811000076,37.642726955000015],[25.14942467500012,37.63104889500012],[25.164805535000085,37.64581940300009],[25.192637566000144,37.641302802000055],[25.22299238400012,37.629828192],[25.245616082000083,37.624212958],[25.238780144000142,37.61737702000009],[25.247325066000087,37.614894924000154],[25.25277754000012,37.60871002800009],[25.25660241000014,37.60008372599999],[25.25928795700011,37.590033270000035],[25.234711134000094,37.562892971000096],[25.227305535000113,37.537420966000084],[25.215993686000047,37.53290436400012],[25.169932488000086,37.538641669000114],[25.14210045700014,37.55272044500004],[25.125498894000085,37.555894273000106],[25.115570509000065,37.56012604400003],[25.10328209700012,37.578436591000084],[25.091319207000083,37.582586981000034],[25.08057701900006,37.58685944200015],[25.04704837300002,37.61737702000009],[25.008636915000125,37.63178131700015],[24.9978947270001,37.63788483300014],[24.990977410000113,37.64598216400016],[24.984385613000114,37.65802643400017],[24.98145592500012,37.67023346600014],[24.984873894000117,37.678859768000144],[24.9978947270001,37.681870835000055],[25.05323326900009,37.678859768000144],[25.057790561000047,37.677313544000114],[25.067393425000116,37.672593492000104],[25.067393425000116,37.66518789300012],[25.05990644600007,37.66518789300012],[25.05990644600007,37.658351955],[25.07007897200009,37.65778229400003],[25.0774845710001,37.6549339860001],[25.083262566000144,37.65037669500005]]],[[[24.37476647200012,37.68626536700005],[24.40251712300008,37.6557477890001],[24.395762566000144,37.62466054900001],[24.370127800000088,37.59511953300013],[24.340668165000096,37.56956614800005],[24.312998894000113,37.538234768],[24.293467644000113,37.52570221600011],[24.275401238000114,37.531683661000116],[24.275157097000147,37.545599677],[24.279958530000044,37.59577057500009],[24.278575066000087,37.604315497000115],[24.27808678500008,37.62287018400012],[24.28931725400008,37.645331122000115],[24.30567467500009,37.660834052000105],[24.32064863400012,37.658351955],[24.327891472000147,37.66498444200006],[24.333832227000073,37.672593492000104],[24.32357832100007,37.67206452000012],[24.32064863400012,37.672593492000104],[24.32064863400012,37.678859768000144],[24.330414259000065,37.68398672100007],[24.33969160200013,37.68626536700005],[24.347992384000094,37.68488190300015],[24.35425866000014,37.678859768000144],[24.36109459700009,37.678859768000144],[24.361664259000037,37.68504466400013],[24.364593946000067,37.686102606000176],[24.369151238000114,37.68537018400014],[24.37476647200012,37.68626536700005]]],[[[26.31910241000014,37.63426341400016],[26.23064212300011,37.57135651200004],[26.21387780000009,37.565130927000084],[26.127940300000088,37.55581289300012],[26.10824629000004,37.549058335],[26.09791100400014,37.542792059000064],[26.07829837300008,37.52757396000008],[26.06739342500009,37.52179596600011],[26.057871941000087,37.519232489],[26.050791863000143,37.51947663000014],[26.04273522200009,37.520941473],[26.029795769000085,37.52179596600011],[25.990733269000145,37.5131696640001],[25.97632897200006,37.516017971000124],[25.971853061000104,37.53546784100014],[25.979746941000084,37.548651434000085],[26.012380405000044,37.57501862200008],[26.019704623000052,37.58633047100007],[26.02637780000009,37.6008161480001],[26.04200280000006,37.61701080900014],[26.06031334700012,37.63068268400009],[26.074229363000114,37.63788483300014],[26.098968946000095,37.63906484600007],[26.15642337300008,37.632798570000105],[26.177256707000083,37.63788483300014],[26.19743899800011,37.632269598000114],[26.2272241550001,37.63959381700015],[26.254242384000065,37.65200429900007],[26.28077233200011,37.675441799000154],[26.313649936000104,37.68317291900014],[26.362152540000096,37.68626536700005],[26.344574415000068,37.65949127800003],[26.31910241000014,37.63426341400016]]],[[[23.49463951900009,37.68349844000009],[23.484141472000115,37.678859768000144],[23.476573113000086,37.68496328300012],[23.471364780000073,37.688177802],[23.457367384000122,37.69245026200012],[23.457367384000122,37.699286200000024],[23.46900475400011,37.705023505],[23.468272332000083,37.71450429900001],[23.459320509000065,37.723334052000055],[23.446543816000116,37.727240302000055],[23.434418165000125,37.733587958],[23.427093946000127,37.74774811400012],[23.424489780000044,37.761786200000145],[23.425629102000073,37.768215236000074],[23.546153191000084,37.774400132000046],[23.563161655000044,37.768255927000084],[23.556813998000106,37.75763580900003],[23.544932488000143,37.74506256700012],[23.546153191000084,37.73346588700012],[23.532074415000125,37.725327867000104],[23.52955162900011,37.71450429900001],[23.530121290000096,37.70294830900018],[23.52564537900011,37.69245026200012],[23.517344597000147,37.68829987200017],[23.49463951900009,37.68349844000009]]],[[[26.95533287900011,37.756903387000094],[26.966075066000116,37.74774811400012],[26.969899936000047,37.75877513200005],[26.96420332100007,37.76752350500014],[26.954356316000116,37.77655670800014],[26.94507897200009,37.788723049000126],[26.961599155000073,37.784409898000135],[26.973643425000063,37.78449127800011],[26.983571811000072,37.78856028900016],[26.993418816000084,37.796128648000106],[26.993988477000073,37.78400299700002],[27.021006707000108,37.77716705900009],[27.06788170700005,37.774400132000046],[27.03931725400008,37.764064846000124],[27.033864780000044,37.761379299000154],[27.03223717500012,37.75315989800008],[27.03614342500009,37.74603913000011],[27.042246941000087,37.73798248900009],[27.047536655000073,37.727240302000055],[27.05876712300008,37.73379140800013],[27.065277540000068,37.729071356000034],[27.066579623000052,37.71832916900003],[27.0612085300001,37.706732489],[27.0369572270001,37.71287669499999],[27.000824415000068,37.70661041900002],[26.9100041020001,37.67804596600014],[26.900726759000037,37.67340729400003],[26.889821811000076,37.66518789300012],[26.883799675000148,37.65814850500006],[26.88184655000012,37.65302155200014],[26.87875410200013,37.648871161],[26.869313998000106,37.64468008000007],[26.860850457000083,37.64337799700017],[26.797373894000145,37.64468008000007],[26.787445509000065,37.64720286700016],[26.78337649800011,37.65338776200015],[26.78109785200013,37.661322333000115],[26.777110222000147,37.668890692000055],[26.760915561000104,37.68968333500005],[26.75098717500009,37.69668203300013],[26.727305535000085,37.70156484600001],[26.716481967000078,37.711371161000116],[26.708262566000087,37.71356842700011],[26.699392123000052,37.71246979400017],[26.683604363000086,37.70783112200014],[26.65723717500009,37.704901434000035],[26.640879754000082,37.69944896],[26.628428582000055,37.690659898000135],[26.62289472700013,37.678859768000144],[26.61548912900014,37.678859768000144],[26.61548912900014,37.68626536700005],[26.6092228520001,37.68626536700005],[26.59839928500011,37.67719147300015],[26.589528842000075,37.68707916900014],[26.58350670700014,37.704169012000094],[26.58130944100006,37.716701565],[26.58025149800011,37.740790106000034],[26.583994988000143,37.75226471600017],[26.594981316000087,37.761379299000154],[26.61207116000014,37.76561107],[26.62989342500012,37.76764557500012],[26.64389082100007,37.772406317],[26.649587436000076,37.78522370000006],[26.6580509770001,37.79279205900009],[26.771820509000065,37.814113674000154],[26.80640709700006,37.814520575000145],[26.84205162900011,37.80914948100009],[26.855723504000053,37.802679755],[26.88184655000012,37.785386460000026],[26.916677280000044,37.77781810100005],[26.95533287900011,37.756903387000094]]],[[[20.75245201900009,37.854885158000016],[20.777191602000073,37.84332916900008],[20.80884850400014,37.84955475500005],[20.85010826900009,37.83641185099999],[20.885996941000084,37.81395091400019],[20.90137780000012,37.792425848000065],[20.917979363000086,37.765285549000154],[20.986827019000145,37.72988515800013],[20.996348504000135,37.699286200000024],[20.98308353000004,37.712307033000016],[20.954356316000084,37.72386302300005],[20.920909050000116,37.73167552300013],[20.893890821000067,37.73346588700012],[20.879161004000082,37.72821686400011],[20.869883660000113,37.719142971000124],[20.863291863000143,37.71059804900001],[20.85645592500012,37.706732489],[20.84351647200012,37.70156484600001],[20.843760613000086,37.68992747599999],[20.84937584700006,37.67829010600009],[20.85303795700011,37.672593492000104],[20.85132897200012,37.65940989800005],[20.846853061000047,37.65330638200008],[20.835948113000082,37.651516018000095],[20.8151147800001,37.651516018000095],[20.807871941000087,37.656073309000035],[20.777191602000073,37.68626536700005],[20.727793816000116,37.718491929],[20.704356316000112,37.73834870000008],[20.702159050000148,37.754543361000124],[20.680430535000085,37.76996491100009],[20.642425977000073,37.81110260600015],[20.619476759000065,37.822821356000034],[20.62647545700014,37.83441803600006],[20.622080925000063,37.85130442900005],[20.62769616000008,37.85761139500009],[20.619476759000065,37.86440664300004],[20.6600041020001,37.910549221000124],[20.685720248000052,37.92959219000012],[20.708994988000143,37.92523834800012],[20.709727410000085,37.922064520000056],[20.709808790000068,37.919623114000146],[20.71436608200011,37.91526927300005],[20.713633660000085,37.91315338700004],[20.734141472000143,37.88190338700015],[20.74195397200012,37.86229075700011],[20.75245201900009,37.854885158000016]]],[[[24.848399285000113,37.91486237200005],[24.875010613000143,37.90599192899999],[24.95386803500008,37.90599192899999],[24.963715040000125,37.89679596600003],[24.95915774800008,37.87636953300013],[24.943369988000114,37.84332916900008],[24.984873894000117,37.81598541900003],[24.97836347700013,37.81146881700006],[24.975596550000144,37.81012604400017],[24.971202019000085,37.80914948100009],[24.972015821000095,37.79637278900016],[24.965586785000085,37.78782786700005],[24.95834394600007,37.78123607000008],[24.957530144000145,37.774400132000046],[24.964366082000055,37.76874420800005],[24.98047936300014,37.77399323100003],[24.991709832000137,37.768215236000074],[24.99439537900011,37.75409577000015],[24.985524936000076,37.735988674000126],[24.971202019000085,37.71865469000015],[24.957530144000145,37.706732489],[24.959646030000073,37.702582098000065],[24.963715040000125,37.68626536700005],[24.957530144000145,37.68626536700005],[24.949717644000145,37.696112372000144],[24.926931186000047,37.71010976800012],[24.916026238000143,37.71979401200018],[24.897471550000148,37.761786200000145],[24.892100457000083,37.768215236000074],[24.876719597000147,37.76951732],[24.865244988000114,37.77383047100007],[24.854991082000083,37.78139883000013],[24.844248894000145,37.792425848000065],[24.828135613000086,37.81728750200004],[24.81657962300008,37.8238792990001],[24.799978061000104,37.81598541900003],[24.794200066000144,37.843817450000174],[24.775726759000122,37.86225006700012],[24.753916863000057,37.876410223000114],[24.738536004000107,37.891750393000095],[24.731700066000116,37.891750393000095],[24.724619988000143,37.88190338700015],[24.7161564460001,37.87909577000012],[24.712168816000116,37.88434479400011],[24.718028191000084,37.898586330000015],[24.709320509000094,37.90656159100014],[24.69548587300008,37.92462799700017],[24.683848504000082,37.93268463700012],[24.695648634000065,37.93553294500005],[24.696543816000144,37.940252997000144],[24.69263756600014,37.94708893400018],[24.690114780000044,37.95628489800005],[24.693614129000107,37.96576569200006],[24.701914910000113,37.97264232000008],[24.757009311000044,37.996568101000136],[24.779063347000147,38.00023021],[24.793711785000138,37.99408600500003],[24.792328321000067,37.983343817],[24.794688347000115,37.977118231000034],[24.80054772200009,37.97431061400009],[24.810557488000143,37.97361888200013],[24.82081139400009,37.9703636740001],[24.830088738000143,37.963080145000085],[24.83464603000007,37.95579661700016],[24.830739780000098,37.952541408000016],[24.830414259000065,37.947739976000136],[24.837575717000107,37.92548248900009],[24.840830925000144,37.91901276200018],[24.848399285000113,37.91486237200005]]],[[[23.531911655000073,37.98045482000008],[23.532725457000083,37.97508372600011],[23.534922722000058,37.968207098],[23.540863477000098,37.96234772300015],[23.54712975400014,37.95888906500015],[23.5455835300001,37.95758698100015],[23.546153191000084,37.952541408000016],[23.573496941000144,37.952541408000016],[23.53931725400014,37.93952057500003],[23.54346764400009,37.928859768],[23.521739129000107,37.91396719000015],[23.518239780000044,37.898586330000015],[23.511973504000082,37.898586330000015],[23.501312696000042,37.90607330900017],[23.4920353520001,37.90009186400006],[23.481455925000148,37.88971588700015],[23.467051629000082,37.88422272300012],[23.45240319100006,37.88540273600016],[23.42139733200014,37.89297109600001],[23.408376498000052,37.898586330000015],[23.40211022200012,37.90599192899999],[23.40211022200012,37.912176825000145],[23.408946160000113,37.92194245000009],[23.422862175000088,37.93301015800012],[23.439463738000057,37.939601955000015],[23.468516472000147,37.93203359600007],[23.481700066000087,37.94171784100003],[23.4920353520001,37.95628489800005],[23.497731967000078,37.96686432500012],[23.485606316000087,37.96625397300015],[23.476817254000107,37.96112702000011],[23.46924889400006,37.95530833500008],[23.460459832000108,37.952541408000016],[23.4518335300001,37.95416901200004],[23.43311608200014,37.96015045800006],[23.422048373000077,37.96002838700018],[23.457367384000122,37.97361888200013],[23.444183790000068,37.97915273600015],[23.42945397200009,37.987941799000126],[23.440765821000067,37.98883698100012],[23.451508009000065,37.98826732000005],[23.46159915500004,37.98566315300015],[23.47046959700009,37.98045482000008],[23.472666863000082,37.98786041900014],[23.474864129000082,37.989406643000095],[23.474864129000082,37.98993561400006],[23.47046959700009,37.99408600500003],[23.478200717000103,37.998846747000115],[23.486338738000114,38.00120677300005],[23.495290561000047,38.001857815],[23.518239780000044,37.999090887000065],[23.530528191000087,37.994574286],[23.53687584700012,37.98802317900011],[23.531911655000073,37.98045482000008]]],[[[20.57178795700011,38.47394440300015],[20.625824415000096,38.35175202000012],[20.62769616000008,38.34357330900003],[20.626149936000047,38.32843659100003],[20.62012780000012,38.32021719000012],[20.6106876960001,38.31338125200001],[20.59913170700008,38.302639065],[20.60718834700012,38.29352448100012],[20.630544467000107,38.25796133000013],[20.642914259000065,38.25340403900019],[20.656993035000085,38.26251862200009],[20.67066491000011,38.27529531500012],[20.681651238000086,38.28213125200012],[20.67945397200009,38.27871328300013],[20.67676842500012,38.271714585000055],[20.674815300000148,38.267808335000055],[20.693532748000052,38.264634507],[20.699554884000037,38.25433991100009],[20.701996290000068,38.24062734600015],[20.708994988000143,38.22695547100001],[20.75131269600007,38.1967634140001],[20.762217644000145,38.1703962260001],[20.797699415000125,38.13129303600006],[20.80502363400012,38.115790106000034],[20.8077905610001,38.099554755],[20.804698113000114,38.08295319200015],[20.79468834700012,38.066107489000146],[20.789317254000082,38.065008856000084],[20.763682488000114,38.06989166900014],[20.754405144000145,38.068793036000116],[20.743418816000087,38.063625393],[20.733571811000076,38.06240469],[20.718435092000078,38.06631094000009],[20.705577019000142,38.07562897300012],[20.681651238000086,38.097805080000015],[20.6530054050001,38.111151434000114],[20.6145939460001,38.11981842700011],[20.580739780000044,38.11546458500011],[20.56495201900009,38.090318101000136],[20.546397332000083,38.1020368510001],[20.509776238000143,38.110785223],[20.49610436300011,38.124457098000114],[20.493011915000125,38.133368231000176],[20.491058790000096,38.15192291900017],[20.48926842500012,38.15924713700017],[20.472911004000082,38.182074286],[20.468760613000143,38.192775783000044],[20.481211785000085,38.19013092700014],[20.497894727000098,38.176906643],[20.509776238000143,38.17226797100007],[20.509776238000143,38.17967357000005],[20.49382571700005,38.19171784100016],[20.483897332000137,38.20685455900015],[20.457041863000057,38.26121653900019],[20.445323113000086,38.27619049700002],[20.43506920700014,38.2787946640001],[20.42790774800011,38.261664130000085],[20.428233269000117,38.245550848],[20.436045769000117,38.21246979400017],[20.434743686000047,38.192775783000044],[20.42530358200011,38.17527903900016],[20.412364129000107,38.16811758000013],[20.398448113000114,38.163031317],[20.38624108200014,38.151800848],[20.380056186000072,38.151800848],[20.37403405000009,38.16901276200012],[20.345388217000103,38.18211497599999],[20.339040561000076,38.20018138200011],[20.34302819100014,38.208441473],[20.350840691000144,38.21845123900009],[20.35694420700014,38.22858307500003],[20.355479363000086,38.23749420800008],[20.351573113000086,38.245917059000035],[20.353770379000082,38.25324127800003],[20.359385613000057,38.25877513200005],[20.36573326900009,38.261664130000085],[20.37964928500008,38.273993231000034],[20.392100457000083,38.300116278000175],[20.398203972000086,38.33270905200014],[20.399912957000083,38.36408112200017],[20.405446811000104,38.34983958500008],[20.406748894000117,38.34357330900003],[20.41358483200011,38.34357330900003],[20.42725670700014,38.363348700000145],[20.43506920700014,38.3561872420001],[20.442556186000104,38.33771393400017],[20.455088738000114,38.32306549700017],[20.463226759000122,38.33148834800012],[20.46697024800008,38.32566966400015],[20.470469597000147,38.315130927000105],[20.47901451900009,38.30947500200001],[20.489024285000056,38.312730210000055],[20.506521030000098,38.32721588700012],[20.529795769000117,38.33746979400005],[20.53874759200005,38.35407135600009],[20.53956139400006,38.37421295800014],[20.530935092000078,38.392035223],[20.551280144000145,38.38515859600001],[20.53923587300005,38.418646552000055],[20.537771030000073,38.42609284100003],[20.539724155000044,38.43927643400018],[20.542979363000082,38.45001862200009],[20.543630405000044,38.45917389500006],[20.537771030000073,38.467718817],[20.537771030000073,38.47394440300015],[20.57178795700011,38.47394440300015]]],[[[20.67408287900014,38.4850121110001],[20.66814212300011,38.47064850500011],[20.66114342500012,38.460882880000085],[20.67823326900009,38.46185944200015],[20.689219597000115,38.45799388200005],[20.698090040000096,38.45209381700003],[20.708994988000143,38.446600653000175],[20.70289147200006,38.426011460000055],[20.695160352000073,38.40867747600005],[20.674815300000148,38.37767161700013],[20.682383660000113,38.37392812700001],[20.69239342500009,38.371323960000026],[20.70386803500014,38.3705101580001],[20.71583092500009,38.37152741100006],[20.71583092500009,38.37767161700013],[20.702159050000148,38.38515859600001],[20.722504102000126,38.38515859600001],[20.71583092500009,38.392035223],[20.72803795700014,38.38922760600015],[20.738780144000145,38.3842634140001],[20.75749759200005,38.37152741100006],[20.75269616000014,38.37205638200014],[20.737559441000144,38.37152741100006],[20.74366295700014,38.34438711100013],[20.750010613000057,38.33470286700016],[20.763682488000114,38.330511786000145],[20.763682488000114,38.32306549700017],[20.736094597000086,38.32005442900008],[20.719411655000044,38.315619208],[20.705821160000085,38.31826406500009],[20.687836134000065,38.336737372000115],[20.695323113000114,38.34357330900003],[20.680430535000085,38.35639069200006],[20.667328321000095,38.37152741100006],[20.647634311000076,38.40566640800016],[20.645762566000087,38.413275458],[20.643077019000117,38.436021226000136],[20.640147332000083,38.446600653000175],[20.632578972000147,38.45237864800005],[20.62134850400014,38.45840078300016],[20.614512566000112,38.467108466000056],[20.619476759000065,38.48139069200012],[20.635508660000056,38.472967841000084],[20.64421634200005,38.47866445500016],[20.65447024800008,38.501857815],[20.671885613000143,38.49754466400019],[20.67408287900014,38.4850121110001]]],[[[20.9075626960001,38.549017645000085],[20.893890821000067,38.549017645000085],[20.893890821000067,38.55646393400015],[20.932139519000117,38.60301341400019],[20.94109134200005,38.6042341170001],[20.9192814460001,38.57908763200011],[20.909353061000104,38.56293366100006],[20.9075626960001,38.549017645000085]]],[[[26.06625410200007,38.583197333000086],[26.10824629000004,38.542792059000114],[26.11085045700014,38.54718659100011],[26.11231530000009,38.55170319200006],[26.11540774800008,38.555161851000044],[26.121918165000068,38.55646393400015],[26.12256920700011,38.56085846600014],[26.12134850400011,38.562323309000085],[26.11890709700009,38.562567450000145],[26.115733269000113,38.56329987200017],[26.130707227000126,38.56720612200017],[26.143565300000063,38.56439850500011],[26.15455162900011,38.555975653000175],[26.163584832000137,38.542792059000114],[26.15088951900009,38.530422268000095],[26.14918053500008,38.51048411700019],[26.144379102000073,38.49290599200016],[26.121918165000068,38.487534898000106],[26.129730665000068,38.478461005000106],[26.133962436000104,38.47589752800009],[26.14242597700013,38.47394440300015],[26.13640384200002,38.467718817],[26.154063347000147,38.467271226000015],[26.15455162900011,38.460882880000085],[26.14242597700013,38.446600653000175],[26.139414910000113,38.43146393400018],[26.139333530000044,38.418890692],[26.14991295700011,38.34357330900003],[26.163584832000137,38.302639065],[26.137054884000065,38.29962799700009],[26.113536004000107,38.28424713700015],[26.102224155000044,38.26170482000008],[26.11207116000014,38.23749420800008],[26.11207116000014,38.22260163000011],[26.088145379000082,38.212591864000146],[26.04004967500012,38.20018138200011],[26.032074415000068,38.18968333500014],[26.02588951900009,38.16714101800015],[26.019704623000052,38.15924713700017],[26.009776238000114,38.15672435100008],[25.989105665000125,38.16380442900014],[25.97486412900011,38.166001695000105],[25.964610222000086,38.17186107000008],[25.94239342500012,38.19497304900001],[25.938243035000085,38.19647858300005],[25.934092644000142,38.19550202],[25.924489780000073,38.20311107000013],[25.914886915000096,38.21503327000006],[25.910411004000107,38.22695547100001],[25.90577233200011,38.22504303600006],[25.89437910200013,38.22247955900015],[25.889821811000104,38.220648505000085],[25.890310092000075,38.22744375200001],[25.8893335300001,38.241278387000094],[25.889821811000104,38.24799225500014],[25.87330162900011,38.239732164000074],[25.866058790000093,38.24567291900008],[25.867523634000065,38.25971100500014],[25.876231316000144,38.27529531500012],[25.885915561000104,38.2818871110001],[25.89893639400009,38.28571198100011],[25.917246941000144,38.288967190000065],[25.92261803500011,38.292181708000115],[25.9342554050001,38.302639065],[25.958750847000147,38.301214911000116],[25.96436608200014,38.302639065],[25.97087649800005,38.31435781500009],[25.971446160000113,38.32664622600005],[25.975596550000148,38.33722565300009],[25.992198113000086,38.34357330900003],[25.9869897800001,38.354803778000026],[25.989024285000138,38.37929922100015],[25.98536217500009,38.392035223],[25.983571811000104,38.38800690300006],[25.98340905000012,38.38703034100017],[25.9822697270001,38.386867580000015],[25.978037957000083,38.38515859600001],[25.97348066500012,38.39272695500016],[25.967458530000044,38.39850495000012],[25.959808790000096,38.402736721000124],[25.95069420700011,38.40566640800016],[25.956309441000112,38.4145368510001],[25.95557701900009,38.428208726000136],[25.950531446000127,38.442572333000115],[25.94385826900009,38.45343659100011],[25.931895379000135,38.463202216000134],[25.920664910000138,38.4664574240001],[25.907481316000112,38.468329169000135],[25.889821811000104,38.47394440300015],[25.875254754000053,38.48354726800012],[25.843272332000055,38.51532623900009],[25.834646030000073,38.528550523000106],[25.83277428500008,38.54409414300012],[25.83814537900014,38.555161851000044],[25.84522545700011,38.56590403900016],[25.84888756600006,38.58038971600003],[25.99537194100006,38.6042341170001],[26.01587975400011,38.60203685100011],[26.063975457000083,38.59003327000009],[26.06625410200007,38.583197333000086]]],[[[25.58887780000012,38.61172109600007],[25.595225457000083,38.60394928600005],[25.622325066000087,38.583807684000035],[25.62281334700009,38.57908763200011],[25.621348504000107,38.577785549000126],[25.61850019600007,38.577785549000126],[25.614919467000107,38.576971747000115],[25.607106967000107,38.541449286000116],[25.60499108200011,38.53534577000015],[25.5911564460001,38.537339585],[25.580821160000113,38.54059479400002],[25.57154381600014,38.54124583500008],[25.56080162900014,38.53534577000015],[25.557383660000113,38.544623114],[25.5592554050001,38.55125560100008],[25.5618595710001,38.556870835000055],[25.56080162900014,38.56329987200017],[25.556813998000052,38.56781647300012],[25.545258009000122,38.576971747000115],[25.54037519600007,38.583807684000035],[25.528168165000096,38.591742255],[25.52320397200012,38.597398179],[25.52613366000014,38.6042341170001],[25.53296959700009,38.60687897300009],[25.539235873000024,38.604641018],[25.54395592500012,38.60049062700007],[25.54664147200012,38.597398179],[25.55258222700013,38.60439687700007],[25.56006920700011,38.60932038000011],[25.567881707000083,38.61001211100016],[25.574554884000065,38.6042341170001],[25.580821160000113,38.6042341170001],[25.580821160000113,38.61172109600007],[25.58887780000012,38.61172109600007]]],[[[20.87867272200009,38.584418036],[20.87061608200014,38.582505601000136],[20.86736087300011,38.59223053600009],[20.870127800000148,38.60350169500008],[20.888356967000046,38.628973700000174],[20.903819207000083,38.642767645000085],[20.92139733200011,38.648098049000154],[20.9451603520001,38.65249258000013],[20.95167076900009,38.64923737200009],[20.95289147200012,38.638861395000085],[20.94166100400011,38.627386786000145],[20.929047071000127,38.619330145],[20.91456139400009,38.61261627800015],[20.90609785200013,38.60976797100012],[20.898122592000078,38.60602448100009],[20.88697350400008,38.59634023600013],[20.87867272200009,38.584418036]]],[[[20.78842207100007,38.67084381700009],[20.79273522200009,38.668646552],[20.79761803500014,38.66998932500009],[20.799815300000148,38.66876862200017],[20.798838738000057,38.66571686400009],[20.80095462300008,38.665269272999986],[20.80502363400012,38.6656761740001],[20.805349155000073,38.66193268400015],[20.801931186000047,38.65668366100006],[20.79664147200009,38.651068427000055],[20.78858483200014,38.64472077000012],[20.7628686860001,38.639105536000116],[20.75961347700013,38.627386786000145],[20.773285352000073,38.61847565300011],[20.781586134000065,38.611883856000034],[20.783213738000086,38.6093610700001],[20.79070071700005,38.60521067900008],[20.800059441000087,38.59544505400014],[20.787119988000086,38.59979889500012],[20.75171959700006,38.62604401200015],[20.736989780000073,38.65216705900012],[20.746429884000094,38.6634789080001],[20.76197350400011,38.66608307500009],[20.78305097700013,38.674994208000115],[20.78842207100007,38.67084381700009]]],[[[20.69874108200014,38.682806708000115],[20.70606530000012,38.68040599200016],[20.71078535200013,38.68805573100009],[20.715505405000044,38.69912344000015],[20.722504102000126,38.707261460000055],[20.723887566000116,38.69245026200018],[20.72071373800014,38.638413804],[20.715993686000047,38.62702057500003],[20.709483269000145,38.62567780200014],[20.702159050000148,38.638413804],[20.695323113000114,38.638413804],[20.69743899800005,38.63373444200008],[20.702159050000148,38.61790599200005],[20.698252800000148,38.62034739800008],[20.687836134000065,38.624741929000045],[20.687185092000107,38.61725495000009],[20.685313347000147,38.613267320000105],[20.68311608200014,38.61001211100016],[20.681651238000086,38.6042341170001],[20.664805535000085,38.61090729400014],[20.648936394000145,38.608587958],[20.64087975400011,38.60057200700005],[20.647634311000076,38.59003327000009],[20.647634311000076,38.583807684000035],[20.636973504000107,38.58466217700014],[20.63086998800014,38.58832428600009],[20.629242384000122,38.594875393000066],[20.63331139400009,38.6042341170001],[20.613617384000122,38.60700104400014],[20.602305535000138,38.62677643400018],[20.58545983200014,38.61790599200005],[20.576182488000086,38.60797760600003],[20.56544030000009,38.59369538000014],[20.551280144000145,38.56952545800014],[20.544606967000107,38.56952545800014],[20.544932488000114,38.59471263200011],[20.5623478520001,38.69122955900015],[20.581228061000047,38.72435130400011],[20.58545983200014,38.744574286000116],[20.60254967500009,38.781724351000136],[20.612152540000068,38.785834052000084],[20.620290561000076,38.79559967700011],[20.63331139400009,38.81655508000007],[20.645274285000113,38.828192450000174],[20.6639103520001,38.84100983300003],[20.686289910000113,38.85008372600011],[20.688649936000076,38.84650299700003],[20.690196160000113,38.84137604400003],[20.702159050000148,38.83698151200004],[20.717784050000116,38.822699286000145],[20.721934441000144,38.80735911700019],[20.72291100400014,38.79315827000009],[20.729340040000068,38.781724351000136],[20.723887566000116,38.769964911000145],[20.72445722700007,38.76040273600016],[20.727549675000148,38.75214264500006],[20.729340040000068,38.744574286000116],[20.729746941000144,38.73582591400004],[20.728851759000065,38.73061758000016],[20.725108269000117,38.72467682500003],[20.701508009000094,38.697984117000104],[20.69695071700005,38.689846096000096],[20.69874108200014,38.682806708000115]]],[[[24.57398522200012,38.88544342700011],[24.578623894000117,38.87555573100011],[24.584157748000052,38.87091705900018],[24.600759311000104,38.864325262000115],[24.64258873800011,38.84170156500015],[24.663259311000044,38.826646226000136],[24.676524285000085,38.80975983300014],[24.678558790000096,38.80678945500013],[24.681000196000127,38.80442942900008],[24.6829533210001,38.80048248900009],[24.683848504000082,38.792669989],[24.682871941000116,38.78424713700004],[24.679942254000082,38.783270575000174],[24.675629102000073,38.78416575700005],[24.670258009000122,38.781724351000136],[24.66407311300014,38.77505117400007],[24.657481316000087,38.76923248900012],[24.650238477000073,38.76821523600016],[24.642263217000107,38.77558014500014],[24.6354272800001,38.77558014500014],[24.625254754000135,38.76923248900012],[24.61378014400009,38.77309804900012],[24.604502800000148,38.782538153000026],[24.600759311000104,38.792669989],[24.594737175000088,38.79157135600015],[24.581879102000073,38.78729889500012],[24.56999759200005,38.778143622000144],[24.56666100400011,38.76251862200017],[24.532399936000047,38.796087958],[24.57398522200012,38.80975983300014],[24.56381269600007,38.83856842700008],[24.556976759000037,38.84568919500013],[24.546071811000076,38.83698151200004],[24.5403751960001,38.83698151200004],[24.536957227000073,38.848211981000034],[24.52833092500006,38.85154857000008],[24.516856316000116,38.84955475500011],[24.505137566000144,38.844468492000104],[24.505218946000127,38.85504791900014],[24.48259524800005,38.86277903900016],[24.47779381600006,38.877997137000065],[24.474131707000108,38.876166083000086],[24.47095787900014,38.871161200000024],[24.46338951900009,38.880275783000016],[24.45460045700014,38.88483307500014],[24.445485873000052,38.88426341400018],[24.4362085300001,38.877997137000065],[24.434825066000116,38.888128973],[24.4388126960001,38.89712148600002],[24.44581139400006,38.90346914300015],[24.453949415000096,38.90595123900009],[24.462168816000087,38.91095612200003],[24.46241295700011,38.92218659100003],[24.45728600400011,38.940090236000074],[24.457692905000016,38.95482005400008],[24.46111087300002,38.9676781270001],[24.47120201900009,38.97687409100017],[24.491465691000112,38.98102448100009],[24.56072024800008,38.94415924700003],[24.57398522200012,38.93260325700011],[24.575938347000147,38.92291901200015],[24.57252037900014,38.89850495000009],[24.57398522200012,38.88544342700011]]],[[[23.442230665000125,38.89834219000012],[23.44996178500014,38.88544342700011],[23.450694207000055,38.87457916900006],[23.462250196000095,38.85586172100007],[23.480479363000086,38.83808014500009],[23.524668816000144,38.82318756700012],[23.56788170700014,38.79385000200004],[23.59400475400011,38.78925202000009],[23.59400475400011,38.781724351000136],[23.59131920700011,38.77415599200016],[23.59400475400011,38.770209052],[23.60010826900009,38.77049388200011],[23.607595248000052,38.77558014500014],[23.619965040000096,38.765529690000065],[23.648448113000086,38.76117584800009],[23.66228274800011,38.755072333],[23.672699415000096,38.760443427000055],[23.68336022200012,38.755072333],[23.70264733200014,38.76508209800009],[23.722666863000114,38.761948960000026],[23.738454623000077,38.749416408],[23.7448022800001,38.73118724200013],[23.753591342000078,38.719183661],[23.77369225400011,38.70815664300015],[23.812998894000117,38.69367096600011],[23.85759524800011,38.6825218770001],[23.905935092000103,38.679388739000025],[23.9275822270001,38.67548248900012],[23.947764519000117,38.6694196640001],[23.96656334700009,38.67011139500006],[23.9842228520001,38.68622467700011],[24.00570722700013,38.67804596600003],[24.028819207000083,38.67792389500015],[24.051768425000144,38.680161851000136],[24.073090040000125,38.679388739000025],[24.136485222000143,38.66181061400009],[24.155609571000127,38.652655341000084],[24.145355665000096,38.64996979400003],[24.13493899800011,38.64386627800003],[24.126231316000116,38.635199286000145],[24.12159264400009,38.624741929000045],[24.121104363000114,38.60809967700011],[24.126475457000083,38.59857819200003],[24.21607506600014,38.53953685100008],[24.23145592500009,38.522365627000156],[24.20655358200014,38.50682200700005],[24.1881616550001,38.4741071640001],[24.184336785000085,38.439642645],[24.20394941500004,38.41868724200005],[24.20394941500004,38.41250234600007],[24.18506920700011,38.407619533],[24.1881616550001,38.398830471000124],[24.210785352000073,38.37767161700013],[24.212901238000086,38.365790106000176],[24.21314537900011,38.350043036000116],[24.21485436300011,38.33641185099999],[24.238291863000082,38.313177802000055],[24.24040774800011,38.30329010600015],[24.245371941000144,38.298000393000066],[24.25025475400011,38.29507070500016],[24.252452019000117,38.292385158000066],[24.251800977000073,38.27464427299999],[24.252614780000073,38.265570380000085],[24.257823113000086,38.258978583],[24.247731967000107,38.245917059000035],[24.24512780000012,38.24115631700012],[24.252452019000117,38.22797272300009],[24.26531009200005,38.21629466400016],[24.292246941000116,38.20018138200011],[24.326996290000068,38.185939846],[24.33025149800011,38.179999091000084],[24.333262566000112,38.17096588700015],[24.337575717000107,38.16282786700005],[24.344411655000044,38.15924713700017],[24.37859134200002,38.16445547100007],[24.392588738000086,38.16400788000008],[24.420664910000085,38.14736562700013],[24.46062259200005,38.1440290390001],[24.47779381600006,38.13873932500003],[24.49691816500004,38.14630768400018],[24.587657097000143,38.15924713700017],[24.578949415000064,38.10932038000014],[24.57992597700013,38.084214585000055],[24.594493035000053,38.06240469],[24.58619225400008,38.048325914000046],[24.575531446000042,38.00446198100009],[24.56666100400011,37.987941799000126],[24.55209394600007,37.9781761740001],[24.53174889400009,37.96918366100006],[24.509287957000083,37.96255117400001],[24.48804772200009,37.96002838700018],[24.476898634000065,37.96246979400003],[24.47291100400011,37.968410549000154],[24.47095787900014,37.98045482000008],[24.447764519000113,38.01056549700009],[24.443695509000065,38.01154205900015],[24.429698113000086,38.02118561400012],[24.40308678500014,38.01190827000009],[24.386403842000107,37.996527411000145],[24.40211022200009,37.987941799000126],[24.40211022200009,37.98045482000008],[24.38689212300011,37.9703636740001],[24.3717554050001,37.971909898000135],[24.35718834700009,37.98045482000008],[24.338633660000085,37.9967308610001],[24.333832227000073,38.00299713700004],[24.326996290000068,38.01528554900001],[24.32048587300008,38.02317942900008],[24.313812696000127,38.029242255000085],[24.313975457000083,38.03510163000011],[24.326996290000068,38.042547919000086],[24.314789259000094,38.064886786000116],[24.30567467500009,38.07176341400013],[24.292246941000116,38.06989166900014],[24.286306186000076,38.08624909100017],[24.26929772200012,38.09540436400006],[24.24870853000007,38.096869208000115],[24.23145592500009,38.090318101000136],[24.217784050000148,38.096869208000115],[24.21257571700005,38.09589264500014],[24.20394941500004,38.090318101000136],[24.20411217500009,38.094875393000095],[24.20476321700005,38.09682851800012],[24.206716342000107,38.097357489],[24.210785352000073,38.097805080000015],[24.210785352000073,38.124457098000114],[24.202810092000107,38.13007233300014],[24.18604576900009,38.12738678600006],[24.182953321000095,38.134995835],[24.18718509200002,38.14215729400006],[24.205902540000096,38.15688711100013],[24.210785352000073,38.166001695000105],[24.208750847000115,38.17861562700001],[24.194021030000044,38.19212474200016],[24.185313347000147,38.21796295799999],[24.172699415000068,38.226548570000105],[24.156993035000113,38.22955963700012],[24.142588738000143,38.22695547100001],[24.148773634000122,38.213202216000084],[24.126231316000116,38.21747467700011],[24.131114129000107,38.23582591400015],[24.148610873000052,38.256577867000075],[24.16309655000009,38.267808335000055],[24.15349368600002,38.281317450000024],[24.145518425000148,38.280910549000126],[24.137868686000047,38.27387116100006],[24.12842858200011,38.267808335000055],[24.12671959700012,38.26508209800009],[24.12712649800011,38.260443427000055],[24.12574303500014,38.25608958500008],[24.11817467500009,38.25421784100011],[24.109385613000114,38.256293036000116],[24.10889733200014,38.260728257],[24.112315300000148,38.26544830900009],[24.11475670700008,38.267808335000055],[24.11475670700008,38.27529531500012],[24.1009220710001,38.27529531500012],[24.12159264400009,38.30947500200001],[24.10108483200014,38.31875234600006],[24.07943769600007,38.32538483300014],[24.05486087300005,38.32929108300011],[24.025401238000057,38.330511786000145],[24.049652540000068,38.33649323100015],[24.059743686000104,38.341253973000065],[24.066905144000142,38.351019598],[24.05909264400006,38.36005280200011],[24.057139519000117,38.36896393400015],[24.058116082000083,38.375555731000034],[24.059418165000093,38.37767161700013],[24.049082879000082,38.39451732000013],[24.042246941000055,38.40151601800004],[24.03891035200013,38.39541250200013],[23.980804884000094,38.39887116100011],[23.91236412900011,38.392035223],[23.892344597000147,38.39411041900003],[23.858083530000073,38.40350983300006],[23.843760613000086,38.40566640800016],[23.824473504000053,38.40412018400012],[23.79395592500012,38.39850495000012],[23.778981967000078,38.39887116100011],[23.709971550000148,38.41250234600007],[23.6951603520001,38.41120026200018],[23.663340691000144,38.404201565],[23.649180535000113,38.40566640800016],[23.6385197270001,38.41551341400015],[23.614431186000076,38.460882880000085],[23.611013217000078,38.45693594000009],[23.607432488000082,38.45380280200011],[23.60230553500008,38.45237864800005],[23.59400475400011,38.45343659100011],[23.60401451900009,38.468410549000126],[23.62281334700012,38.484808661000145],[23.63575280000012,38.50092194200003],[23.628103061000104,38.51487864799999],[23.628103061000104,38.522365627000156],[23.635508660000085,38.522365627000156],[23.635508660000085,38.528550523000106],[23.614105665000036,38.55792877800012],[23.59994550900012,38.57135651200012],[23.58375084700006,38.576971747000115],[23.54004967500009,38.58226146],[23.518809441000087,38.58869049700008],[23.50513756600006,38.597398179],[23.501719597000147,38.605047919000114],[23.500743035000085,38.62262604400014],[23.497731967000078,38.631008205000015],[23.47437584700009,38.64569733300003],[23.47046959700009,38.648993231000055],[23.467295769000117,38.652289130000085],[23.460215691000144,38.65375397300015],[23.453135613000086,38.65802643400015],[23.44996178500014,38.6694196640001],[23.445974155000073,38.67674388200011],[23.436696811000104,38.68325429900001],[23.406504754000082,38.69806549700009],[23.38160241000014,38.707261460000055],[23.3533634770001,38.73139069200009],[23.343760613000114,38.73456452000015],[23.33765709700012,38.73895905200011],[23.327972852000073,38.75820547100007],[23.323008660000113,38.76251862200017],[23.300059441000116,38.77216217700014],[23.202321811000047,38.82990143400017],[23.168142123000052,38.844468492000104],[23.143565300000148,38.85065338700018],[23.1307072270001,38.851507880000085],[23.114105665000064,38.85065338700018],[23.08350670700014,38.84564850500014],[23.069102410000085,38.84658437700001],[23.055837436000047,38.854437567],[23.036387566000144,38.874457098000065],[23.028656446000127,38.877386786],[23.01514733200014,38.877997137000065],[22.99878991000014,38.880804755],[22.983571811000076,38.885972398000106],[22.969411655000044,38.88910553600009],[22.95639082100007,38.88544342700011],[22.95639082100007,38.877997137000065],[22.970469597000086,38.87767161700013],[22.983897332000083,38.87352122599999],[22.99195397200012,38.86469147300012],[22.990733269000117,38.85065338700018],[22.98178144600007,38.84503815300017],[22.96550540500004,38.84096914300004],[22.85580488400012,38.83295319200006],[22.83301842500012,38.82273997600013],[22.832286004000082,38.83388906500015],[22.833750847000147,38.845404364],[22.837412957000083,38.854478257],[22.84351647200009,38.85814036700005],[22.851410352000045,38.86127350500011],[22.87484785200013,38.874904690000065],[22.88453209700009,38.877997137000065],[22.907481316000087,38.882310289000046],[22.952810092000078,38.90159739799999],[22.982920769000113,38.90766022300009],[23.011729363000143,38.91962311400012],[23.035655144000117,38.926418361000124],[23.039317254000082,38.92938873900006],[23.04371178500014,38.943060614],[23.045909050000148,38.946844794000114],[23.057465040000068,38.94993724200019],[23.07797285200013,38.95050690300015],[23.086761915000096,38.95433177299999],[23.093760613000057,38.96259186400006],[23.097341342000046,38.972072658000066],[23.09742272200012,38.98094310100011],[23.0944116550001,38.98786041900003],[23.10906009200002,38.99176666900003],[23.12745201900006,39.005804755000085],[23.138031446000127,39.00897858300014],[23.199717644000145,39.00897858300014],[23.220713738000086,39.014715887000094],[23.272959832000083,39.038763739000146],[23.29908287900014,39.04246653900018],[23.3092554050001,39.038234768000066],[23.32398522200009,39.02480703300007],[23.32984459700012,39.021958726000136],[23.342946811000104,39.020697333000115],[23.357758009000065,39.01675039300012],[23.371592644000057,39.010321356000034],[23.38160241000014,39.00153229400014],[23.374359571000127,38.982489325000145],[23.38461347700007,38.96751536700013],[23.40455162900014,38.95783112200017],[23.425629102000073,38.95433177299999],[23.425629102000073,38.944281317],[23.442230665000125,38.89834219000012]]],[[[23.512868686000072,39.17853424700008],[23.50513756600006,39.15912506700009],[23.48902428500008,39.168768622000144],[23.475108269000117,39.157782294000086],[23.460459832000108,39.13182200700011],[23.452891472000147,39.13344961100013],[23.444590691000087,39.14203522300015],[23.436289910000085,39.1461449240001],[23.42530358200014,39.148667710000105],[23.414561394000113,39.14980703300013],[23.404307488000082,39.14911530200003],[23.395274285000085,39.1461449240001],[23.39869225400011,39.16364166900014],[23.410655144000117,39.170355536],[23.42351321700005,39.17243073100012],[23.42945397200009,39.176214911000116],[23.433848504000053,39.18695709800014],[23.44467207100007,39.19847239799999],[23.458181186000047,39.20831940300009],[23.47046959700009,39.21381256700012],[23.48682701900009,39.20612213700012],[23.503754102000073,39.19428131700014],[23.512868686000072,39.17853424700008]]],[[[23.6022241550001,39.208644924000126],[23.60499108200014,39.20750560099999],[23.60914147200009,39.20807526200015],[23.614431186000076,39.207586981000176],[23.637950066000116,39.18756745000012],[23.66553795700014,39.16966380400005],[23.696625196000042,39.15534088700015],[23.730479363000114,39.1461449240001],[23.72673587300008,39.13149648600007],[23.745860222000147,39.12881094],[23.772715691000144,39.12933991100009],[23.79265384200002,39.124416408000016],[23.79265384200002,39.11815013200008],[23.760264519000117,39.09064362200003],[23.74122155000012,39.08026764500012],[23.716807488000086,39.07721588700004],[23.707041863000143,39.07982005400014],[23.6925561860001,39.08893463700003],[23.666026238000114,39.09275950700005],[23.658050977000073,39.09772370000009],[23.65845787900008,39.104315497000165],[23.66968834700009,39.11139557500003],[23.66968834700009,39.11815013200008],[23.65919030000012,39.12299225500006],[23.627777540000096,39.14728424700003],[23.62126712300008,39.15574778900016],[23.617442254000082,39.169134833000086],[23.587168816000087,39.207586981000176],[23.601328972000086,39.21381256700012],[23.6022241550001,39.208644924000126]]],[[[20.190114780000044,39.20262278900013],[20.201914910000113,39.17963288000014],[20.181488477000126,39.1801618510001],[20.168711785000085,39.18280670800003],[20.158702019000117,39.18915436400014],[20.13843834700009,39.20929596600016],[20.128103061000104,39.22313060100008],[20.125336134000122,39.236029364],[20.140391472000147,39.24168528900016],[20.155609571000127,39.22850169500013],[20.17335045700011,39.217230536000145],[20.190114780000044,39.20262278900013]]],[[[23.895843946000042,39.16176992400007],[23.864512566000087,39.143988348000086],[23.833506707000083,39.1461449240001],[23.84717858200011,39.160305080000015],[23.861013217000103,39.16917552300008],[23.873057488000114,39.1801618510001],[23.88933353000004,39.217474677],[23.93978925900006,39.27977122600008],[23.957041863000086,39.289496161000116],[23.95573978000007,39.285793361000074],[23.955088738000143,39.28217194200003],[23.953868035000113,39.278753973],[23.950205925000148,39.27521393400012],[23.972178582000083,39.27191803600009],[23.96697024800008,39.251166083],[23.949961785000113,39.22898997600011],[23.93653405000012,39.22125885600012],[23.92164147200009,39.19041575700005],[23.895843946000042,39.16176992400007]]],[[[24.06910241000014,39.353338934000035],[24.06983483200008,39.345689195000105],[24.07398522200012,39.34894440300015],[24.081309441000116,39.352362372000165],[24.090586785000085,39.34902578300012],[24.09473717500012,39.34552643400015],[24.094004754000082,39.33002350500014],[24.081879102000098,39.30475495000009],[24.063161655000044,39.29702383000007],[24.053721550000116,39.305243231000176],[24.054698113000086,39.31220123900006],[24.059418165000093,39.31443919500005],[24.05600019600007,39.31891510600012],[24.045746290000068,39.323309637000094],[24.041514519000117,39.330511786000116],[24.044932488000143,39.34149811400009],[24.050791863000086,39.35199616100005],[24.058604363000082,39.36127350500002],[24.067149285000113,39.363023179000024],[24.06910241000014,39.353338934000035]]],[[[26.411387566000087,39.32094961100013],[26.37964928500014,39.282660223],[26.382172071000042,39.277085679],[26.424164259000122,39.24510325699999],[26.458343946000124,39.23427969],[26.466319207000083,39.22923411700015],[26.470713738000143,39.22516510600009],[26.504730665000096,39.185003973],[26.517914259000122,39.17597077000009],[26.5397241550001,39.16596100500003],[26.526621941000116,39.15912506700009],[26.53077233200005,39.150620835000055],[26.537771030000044,39.14305247600011],[26.54712975400008,39.13532135600009],[26.54769941500004,39.12531159100011],[26.550547722000086,39.119208075000024],[26.55681399800005,39.11688873900006],[26.567637566000116,39.11815013200008],[26.566254102000045,39.09796784100014],[26.5794376960001,39.075344143000066],[26.59791100400011,39.056870835000055],[26.61231530000009,39.049261786000116],[26.61231530000009,39.040228583],[26.610036655000016,39.0229352890001],[26.597422722000115,39.011948960000055],[26.567637566000116,39.021958726000136],[26.551442905000073,39.01504140800012],[26.539398634000065,39.01935455900003],[26.52955162900014,39.028550523000106],[26.51929772200012,39.03628164300004],[26.526621941000116,39.04246653900018],[26.517588738000114,39.04751211100002],[26.516123894000145,39.052639065000115],[26.51807701900009,39.05780670800014],[26.51929772200012,39.062933661000145],[26.520355665000064,39.066310940000065],[26.52605228000004,39.07721588700004],[26.526621941000116,39.083441473],[26.515147332000083,39.09100983300006],[26.51303144600007,39.09430573100009],[26.505869988000114,39.10919830900003],[26.489268425000148,39.113674221],[26.4549259770001,39.11139557500003],[26.43702233200014,39.10350169500007],[26.452972852000073,39.08641185100011],[26.491953972000147,39.062933661000145],[26.52881920700011,39.02106354400006],[26.54712975400008,39.00897858300014],[26.54712975400008,39.00153229400014],[26.544606967000046,38.99721914300015],[26.543711785000056,38.99738190300012],[26.544688347000147,38.99624258000007],[26.54712975400008,38.98786041900003],[26.521169467000075,38.97894928600009],[26.489268425000148,38.972560940000065],[26.424164259000122,38.96735260600015],[26.407074415000093,38.96946849200016],[26.375173373000077,38.978908596000096],[26.33936608200014,38.98285553600009],[26.325531446000067,38.98769765800015],[26.300791863000086,39.00153229400014],[26.27637780000012,39.010646877000156],[26.217133009000033,39.020697333000115],[26.16570071700005,39.02240631700012],[26.155284050000148,39.02496979400003],[26.14633222700013,39.03213125200007],[26.115570509000065,39.06671784100017],[26.104258660000053,39.074652411000145],[26.087901238000143,39.07721588700004],[26.087901238000143,39.083441473],[26.093760613000086,39.085272528000175],[26.10206139400009,39.09088776200018],[26.109222852000098,39.09267812700007],[26.113536004000107,39.092108466000084],[26.117198113000086,39.09100983300006],[26.121918165000068,39.09088776200018],[26.160166863000114,39.09772370000009],[26.164561394000113,39.10065338700012],[26.18067467500009,39.12128327000015],[26.191416863000086,39.127590236000074],[26.20240319100014,39.12909577000012],[26.213715040000125,39.12933991100009],[26.22559655000009,39.13182200700011],[26.252289259000094,39.15232982000008],[26.28223717500009,39.169867255],[26.283376498000106,39.17279694200012],[26.29346764400009,39.177150783],[26.290212436000044,39.18675364799999],[26.280039910000085,39.19643789300015],[26.269786004000053,39.20075104400014],[26.2376408210001,39.206854559000035],[26.22559655000009,39.207586981000176],[26.204356316000084,39.20579661700018],[26.18734785200013,39.202053127000156],[26.173350457000083,39.19501373900009],[26.160166863000114,39.183335679],[26.145274285000085,39.1556664080001],[26.14242597700013,39.15574778900016],[26.097422722000143,39.10565827000006],[26.08277428500014,39.09516022300009],[26.063975457000083,39.09088776200018],[26.042979363000143,39.09320709800014],[25.958343946000127,39.11766185099999],[25.94385826900009,39.124416408000016],[25.92937259200005,39.13324616100009],[25.919932488000114,39.137111721000096],[25.906993035000113,39.13865794500013],[25.888926629000107,39.14472077000012],[25.854340040000096,39.17206452],[25.834646030000073,39.17963288000014],[25.834646030000073,39.18707916900003],[25.84595787900014,39.19037506700006],[25.849945509000122,39.19940827000006],[25.851573113000143,39.21088288000011],[25.855153842000107,39.22125885600012],[25.850922071000095,39.22231679900007],[25.848317905000098,39.22394440300009],[25.845876498000052,39.22589752800003],[25.842051629000135,39.228013414000046],[25.849782748000052,39.232163804],[25.853526238000086,39.23639557500012],[25.85499108200014,39.242499091000084],[25.855153842000107,39.25226471600003],[25.858653191000116,39.25922272300012],[25.86670983200014,39.26325104400008],[25.876231316000144,39.26601797100015],[25.88306725400014,39.268988348000065],[25.91065514400006,39.28961823100009],[25.917246941000144,39.29694245000009],[25.924082879000053,39.29694245000009],[25.936371290000125,39.276556708000115],[25.968923373000077,39.278631903000026],[26.006195509000065,39.28632233300006],[26.033213738000114,39.282660223],[26.037282748000077,39.288234768],[26.041188998000052,39.29238515800013],[26.044606967000078,39.296861070000105],[26.046885613000143,39.30316803600006],[26.052500847000143,39.29401276200015],[26.053721550000148,39.289496161000116],[26.060557488000086,39.289496161000116],[26.073090040000068,39.30320872600005],[26.09400475400014,39.31049225500006],[26.13640384200002,39.316229559000035],[26.162771030000044,39.323635158000016],[26.172536655000073,39.335394598],[26.170909050000144,39.35321686400005],[26.163584832000137,39.378851630000135],[26.343028191000116,39.383002020000085],[26.362152540000096,39.378851630000135],[26.354746941000087,39.356512762000094],[26.37338300900009,39.346909898000135],[26.400238477000073,39.34125397300012],[26.417491082000083,39.330471096000124],[26.411387566000087,39.32094961100013]]],[[[24.991709832000137,39.46698639500015],[24.984873894000117,39.46698639500015],[24.97364342500012,39.51463450700011],[24.976573113000143,39.537665106000176],[24.9978947270001,39.55019765800007],[24.994476759000094,39.55817291900006],[24.996755405000073,39.561957098000065],[25.003184441000087,39.56321849200016],[25.01221764400009,39.563869533000016],[25.047373894000145,39.545355536],[25.040375196000067,39.52057526200003],[24.991709832000137,39.46698639500015]]],[[[19.928965691000087,39.79205963700012],[19.93433678500014,39.78294505400011],[19.941172722000147,39.78294505400011],[19.941172722000147,39.79035065300011],[19.948008660000085,39.79035065300011],[19.946299675000148,39.759222723],[19.93376712300008,39.741156317],[19.912933790000093,39.73045482000008],[19.851573113000086,39.710516669000086],[19.84156334700009,39.70416901200015],[19.835948113000114,39.69245026200014],[19.83912194100006,39.679877020000056],[19.847666863000086,39.669989325000145],[19.858653191000144,39.66624583500011],[19.858653191000144,39.65884023600013],[19.844981316000116,39.65884023600013],[19.844981316000116,39.65265534100017],[19.903819207000083,39.62905508000013],[19.92750084700012,39.62531159100011],[19.92351321700005,39.60350169500005],[19.917165561000104,39.598863023000106],[19.900157097000143,39.604193427],[19.91187584700012,39.5834007830001],[19.932465040000068,39.47870514500012],[19.93653405000012,39.47296784100014],[19.948008660000085,39.46698639500015],[19.961436394000145,39.462958075000174],[19.989431186000076,39.45840078300013],[20.002696160000113,39.45400625200012],[20.02369225400014,39.441351630000085],[20.032725457000055,39.43927643400014],[20.05046634200005,39.44033437700001],[20.065114780000073,39.44452545800014],[20.0740666020001,39.44896067900011],[20.0818791020001,39.44733307500009],[20.09205162900014,39.433539130000085],[20.09685306100002,39.42279694200006],[20.105723504000082,39.392523505000085],[20.11768639400009,39.37799713700004],[20.11793053500014,39.37099844000015],[20.105723504000082,39.364650783000044],[20.09685306100002,39.370550848000065],[20.072032097000147,39.37628815300003],[20.048838738000143,39.38959381700015],[20.032399936000047,39.39500560100002],[20.014903191000087,39.39826080900006],[19.999278191000116,39.399359442],[19.990407748000052,39.40326569200008],[19.964854363000086,39.420965887000094],[19.95484459700009,39.42609284100011],[19.937754754000135,39.4278832050001],[19.923838738000143,39.42772044500013],[19.91179446700005,39.430324611000046],[19.907481316000144,39.43500397300014],[19.914886915000125,39.43390534100008],[19.921722852000045,39.43781159100008],[19.92750084700012,39.44717031500012],[19.892751498000052,39.45595937700009],[19.879730665000068,39.46076080900018],[19.879242384000094,39.45831940300015],[19.8787541020001,39.454575914000095],[19.878916863000143,39.453192450000024],[19.865570509000065,39.46857330900018],[19.854828321000124,39.488959052000055],[19.847666863000086,39.509670315000065],[19.84083092500006,39.55198802300008],[19.82886803500014,39.572333075000145],[19.809825066000144,39.589056708],[19.78419030000009,39.604193427],[19.760996941000144,39.61298248900006],[19.748545769000117,39.62002187700013],[19.721690300000148,39.66620514500012],[19.71892337300008,39.67308177300005],[19.70142662900014,39.672837632000025],[19.689707879000135,39.67413971600011],[19.681325717000078,39.67999909100014],[19.674327019000117,39.693548895],[19.677012566000087,39.71670156500015],[19.6717228520001,39.72406647300015],[19.653168165000096,39.714667059000114],[19.653575066000116,39.730414130000085],[19.65015709700009,39.74176666900014],[19.64161217500009,39.74795156500012],[19.626475457000083,39.74823639500015],[19.636403842000078,39.75641510600015],[19.66228274800008,39.78449127800015],[19.667491082000083,39.793524481000176],[19.676931186000104,39.795152085],[19.769704623000052,39.798081773000106],[19.79908287900014,39.80280182500003],[19.82496178500014,39.81146881700012],[19.85181725400014,39.824530341000084],[19.865570509000065,39.821030992000104],[19.8748478520001,39.81533437700013],[19.882985873000106,39.80890534100011],[19.892832879000135,39.803412177],[19.918793165000125,39.79682038000011],[19.928965691000087,39.79205963700012]]],[[[25.43677819100014,40.02252838700018],[25.43677819100014,40.01630280200011],[25.44166100400011,40.016750393],[25.44271894600007,40.015041408000016],[25.442556186000104,40.012111721000096],[25.445811394000145,40.00315989800005],[25.447276238000114,39.99323151200015],[25.4498804050001,39.98843008000007],[25.42652428500011,39.97821686400012],[25.401621941000087,39.96377187700007],[25.385590040000096,39.94440338700014],[25.38892662900011,39.91950104400003],[25.37517337300008,39.91974518400015],[25.364105665000068,39.91722239800005],[25.355479363000143,39.91258372600011],[25.347992384000094,39.90643952000015],[25.361664259000122,39.899888414000074],[25.368500196000127,39.89899323100015],[25.353200717000078,39.89264557500003],[25.341644727000045,39.88385651200015],[25.340342644000145,39.874212958],[25.355479363000143,39.86554596600011],[25.34278405000009,39.85464101800012],[25.348399285000085,39.84373607000005],[25.360687696000042,39.833563544000114],[25.368500196000127,39.824530341000084],[25.369883660000113,39.817124742000104],[25.36866295700011,39.81631094],[25.364024285000085,39.81598541900017],[25.355479363000143,39.810248114],[25.35368899800008,39.803168036000145],[25.352793816000087,39.79328034100003],[25.34896894600007,39.787665106000034],[25.338389519000117,39.793524481000176],[25.332204623000052,39.796087958000086],[25.303558790000064,39.803412177],[25.295258009000094,39.80768463700009],[25.293630405000073,39.81708405200011],[25.293630405000073,39.82648346600014],[25.290293816000144,39.830755927000055],[25.273122592000107,39.83567942900011],[25.25660241000014,39.855902411000145],[25.238780144000142,39.85805898600013],[25.261729363000143,39.870428778000175],[25.27426191500004,39.880072333000136],[25.27979576900006,39.88910553600006],[25.275157097000147,39.90363190300009],[25.264008009000122,39.91327545800006],[25.2506616550001,39.91852448100006],[25.238780144000142,39.91950104400003],[25.1971134770001,39.892808335],[25.20639082100007,39.89288971600017],[25.21387780000012,39.891791083000115],[25.219981316000116,39.88930898600002],[25.225108269000117,39.88540273600002],[25.20728600400014,39.883124091000056],[25.194183790000068,39.873602606000034],[25.18458092500009,39.859808661000116],[25.177256707000083,39.84503815300015],[25.185557488000082,39.848049221000146],[25.18767337300008,39.84906647300012],[25.19092858200014,39.85187409100017],[25.202159050000116,39.84100983300008],[25.214528842000075,39.82469310100005],[25.221039259000065,39.80996328300007],[25.214528842000075,39.803412177],[25.192718946000127,39.80438873900006],[25.175059441000116,39.80703359600015],[25.143239780000073,39.81708405200011],[25.165782097000147,39.844916083000086],[25.169932488000086,39.848456122000144],[25.164886915000064,39.859076239],[25.15381920700011,39.85578034100017],[25.142263217000107,39.84609609600001],[25.135752800000088,39.83759186400009],[25.128916863000086,39.83759186400009],[25.12842858200008,39.84540436400006],[25.12671959700009,39.849676825000174],[25.124359571000127,39.852972723000036],[25.122080925000148,39.85805898600013],[25.064138217000078,39.84414297100015],[25.05323326900009,39.83759186400009],[25.04704837300002,39.83759186400009],[25.05046634200005,39.84393952],[25.053965691000112,39.8491071640001],[25.059092644000145,39.85366445500016],[25.067393425000116,39.85805898600013],[25.061778191000116,39.85993073100009],[25.0545353520001,39.863959052000084],[25.04704837300002,39.86554596600011],[25.048513217000078,39.874212958],[25.04704837300002,39.87856679900009],[25.05323326900009,39.882717190000115],[25.05990644600007,39.88540273600002],[25.05990644600007,39.892808335],[25.05323326900009,39.892808335],[25.05323326900009,39.89899323100015],[25.057790561000047,39.90021393400018],[25.060557488000114,39.90167877800006],[25.067393425000116,39.90643952000015],[25.05990644600007,39.90643952000015],[25.06820722700013,39.92080312700001],[25.06397545700011,39.92951080900009],[25.0545353520001,39.93695709800009],[25.04704837300002,39.94745514500014],[25.046071811000047,39.961615302000084],[25.047618035000085,39.974920966000084],[25.045420769000117,39.98468659100003],[25.03337649800008,39.98843008000007],[25.03337649800008,39.995266018000095],[25.06861412900014,39.996893622000115],[25.132334832000083,40.00885651200004],[25.14234459700009,40.00678131700012],[25.148773634000094,40.002183335],[25.1530054050001,39.99750397300006],[25.156260613000143,39.995266018000095],[25.171885613000143,39.9969750020001],[25.225108269000117,40.00885651200004],[25.247325066000087,40.002427476000136],[25.260996941000116,39.99091217699999],[25.272308790000096,39.97638580900015],[25.287119988000086,39.9610863300001],[25.285166863000114,39.95335521],[25.306976759000065,39.96002838700004],[25.334239129000082,39.97235748900009],[25.347992384000094,39.98159414300015],[25.347992384000094,39.99030182500003],[25.369313998000052,40.01422760600009],[25.382090691000087,40.02252838700018],[25.385996941000087,40.021877346000124],[25.412852410000085,40.02252838700018],[25.42156009200005,40.024318752000156],[25.4498804050001,40.036200262000115],[25.44117272200012,40.026068427000055],[25.43677819100014,40.02252838700018]]],[[[25.671885613000114,40.487494208000086],[25.688649936000047,40.47500234600007],[25.697520379000082,40.46100495000009],[25.690684441000087,40.44769928600009],[25.695323113000114,40.43268463700015],[25.682627800000148,40.423081772999986],[25.589121941000087,40.398138739000146],[25.567149285000056,40.399888414000046],[25.53256269600007,40.41502513200014],[25.466319207000108,40.45575592700011],[25.451996290000125,40.46869538000011],[25.44353274800008,40.481878973000065],[25.461680535000085,40.48159414300012],[25.520355665000096,40.50771719000009],[25.54664147200012,40.51532623900012],[25.575856967000046,40.51471588700015],[25.656504754000082,40.496161200000145],[25.671885613000114,40.487494208000086]]],[[[24.782399936000076,40.62018463700014],[24.780121290000093,40.61220937700001],[24.773203972000086,40.61147695500007],[24.755707227000045,40.61994049700002],[24.752126498000077,40.61562734600004],[24.744476759000065,40.60846588700018],[24.72681725400014,40.603176174],[24.69385826900006,40.598578192000055],[24.681813998000052,40.5949567730001],[24.657481316000087,40.57737864800008],[24.642263217000107,40.57062409100003],[24.637543165000096,40.57982005400011],[24.63062584700009,40.58706289300012],[24.61500084700012,40.598578192000055],[24.611827019000145,40.599107164000046],[24.603526238000086,40.59780508000013],[24.600759311000104,40.598578192000055],[24.600271030000044,40.601223049000154],[24.60132897200009,40.60980866100005],[24.600759311000104,40.61220937700001],[24.586761915000068,40.62201569200015],[24.580251498000052,40.62518952],[24.552582227000073,40.6303571640001],[24.53077233200011,40.630926825000174],[24.516774936000047,40.63910553600009],[24.511973504000053,40.66681549700017],[24.518321160000085,40.69269440300017],[24.53337649800011,40.718207098000086],[24.56666100400011,40.75556061400012],[24.642263217000107,40.803941148000135],[24.674571160000113,40.791693427000084],[24.71534264400009,40.78803131700012],[24.731700066000116,40.78351471600016],[24.7356876960001,40.77728913000003],[24.738454623000052,40.76788971600008],[24.743825717000107,40.75934479400014],[24.755544467000078,40.75556061400012],[24.765961134000094,40.75364817900008],[24.775401238000086,40.748765367000104],[24.782562696000127,40.74213288000014],[24.786387566000144,40.735052802000084],[24.7654728520001,40.73432038000006],[24.75928795700011,40.72337474200016],[24.76661217500012,40.711493231000034],[24.786387566000144,40.70783112200017],[24.786387566000144,40.68793366100009],[24.769297722000115,40.68341705900003],[24.76579837300011,40.66966380400011],[24.772634311000047,40.63947174700009],[24.77955162900014,40.62799713700015],[24.782399936000076,40.62018463700014]]],[[[26.273930705000083,41.71489674900006],[26.29491133600007,41.71032338500014],[26.333358602000114,41.71303639700007],[26.35961023000004,41.71489674900006],[26.377386923000074,41.71063344300002],[26.404362020000093,41.691823222000025],[26.442809286000056,41.6844593310001],[26.460379272000125,41.678774923000056],[26.476192260000115,41.67572601300013],[26.473195028000106,41.66112742100016],[26.46441003400011,41.648518372000055],[26.521150757000044,41.61642730800013],[26.566522664000075,41.598753967000036],[26.576444540000068,41.5910025030001],[26.59546146600013,41.612448222000054],[26.595254760000074,41.6049551390001],[26.596288289000142,41.59753957100018],[26.598562052000062,41.59084747300007],[26.60228275500009,41.58516306600002],[26.597838582000065,41.573277487],[26.60166263900001,41.547335917000126],[26.59546146600013,41.53741404300014],[26.60610681100013,41.52304799400004],[26.610964396000043,41.50573638900015],[26.615925333000092,41.468529358000026],[26.632151734000104,41.419746805999985],[26.636389201000043,41.3995929980001],[26.6365959070001,41.37845733700006],[26.631738321000086,41.35752838200007],[26.62264327000011,41.34037180600002],[26.609724162000102,41.33070831300007],[26.591120646000064,41.32931305],[26.56962325000012,41.33360219400008],[26.550606323000125,41.3417670700001],[26.540167684000096,41.35179229800012],[26.489318074000096,41.310864563000095],[26.478776083000124,41.30962432900007],[26.474435262000043,41.30636871400016],[26.471954793000062,41.301924540000144],[26.466373738000073,41.29717030900015],[26.438468465000085,41.28357940700009],[26.412113484000116,41.26569936100013],[26.395060262000072,41.2589814250001],[26.331704956000067,41.25412384100018],[26.320542846000134,41.24621734700012],[26.33604577600005,41.22890574200012],[26.325503785000077,41.20699493500017],[26.321059611000067,41.18761627200011],[26.32416019700011,41.169891256000184],[26.33604577600005,41.152579651000096],[26.317338908000067,41.130462138000084],[26.317338908000067,41.122297262000146],[26.33232507300005,41.119041647000174],[26.33945642100008,41.11449412100013],[26.32240319800013,41.088552552000074],[26.325090373000076,41.07408315100015],[26.33904301000007,41.051552226000055],[26.3476212970001,41.040958558000156],[26.37418298300011,41.031140035000085],[26.37500980700014,41.01946116200012],[26.368085164000064,41.00773061200012],[26.35961023000004,41.00240793900018],[26.34462406400007,41.00106435200003],[26.33594242300012,40.99713694300006],[26.333151896000057,40.99072906500011],[26.33604577600005,40.98189239500003],[26.346484416000095,40.971712138000136],[26.356199585000127,40.968146465000174],[26.35909346500011,40.96468414300013],[26.349068237000097,40.954555563000085],[26.335012247000066,40.946235657000116],[26.30648685700001,40.93600372300013],[26.294394572000044,40.92665028900011],[26.297288452000117,40.922412821000066],[26.303282918000036,40.91548818000016],[26.304006389000048,40.90902862600002],[26.290673869000102,40.90613474500013],[26.28219893400012,40.907219951000016],[26.275170939000105,40.910268860000045],[26.270003295000095,40.914816386],[26.266489299000057,40.92044911800012],[26.260391480000095,40.92044911800012],[26.25222660300008,40.9005536910001],[26.246335490000064,40.891458639000135],[26.239204142000116,40.885670878000056],[26.232382853000075,40.885670878000056],[26.231142619000135,40.889804993],[26.2261816810001,40.899313457000076],[26.226285034000114,40.88882314000004],[26.22525150500013,40.88360382100011],[26.220910685000064,40.881330058000074],[26.211918986000114,40.87946970600008],[26.211195516000117,40.87471547500009],[26.212539103000097,40.87311350500014],[26.215122925000088,40.87285512300018],[26.218636922000144,40.87197662300004],[26.208715047000055,40.86841095000006],[26.205821167000064,40.865000305000066],[26.20509769700007,40.858385722000044],[26.212022338000054,40.84743031900017],[26.158278849000055,40.812186991000104],[26.142982625000084,40.79379018200011],[26.134507690000078,40.76712514300006],[26.11228682500004,40.74697133400017],[26.08159102400012,40.73555084200008],[26.04395592550017,40.738470770000085],[26.046885613000143,40.742499091000134],[26.035980665000068,40.757757880000106],[26.03353925900012,40.77826569200009],[26.027354363000057,40.79612864800005],[26.005869988000143,40.803941148000135],[26.005869988000143,40.810777085000055],[26.019704623000052,40.810532945000105],[26.03785241000014,40.81256745000006],[26.053721550000148,40.816229559000085],[26.060557488000086,40.820746161000145],[26.053965691000116,40.8309593770001],[26.0389103520001,40.832505601000136],[26.022634311000047,40.829169012000094],[26.01221764400006,40.82444896],[26.008311394000057,40.83120351800012],[26.005869988000143,40.83877187700007],[25.998383009000065,40.83877187700007],[25.998383009000065,40.831284898000106],[26.002777540000064,40.82607656500004],[26.005869988000143,40.81704336100002],[25.998383009000065,40.81704336100002],[25.982920769000142,40.830877997000115],[25.95167076900009,40.84552643400012],[25.91863040500004,40.85297272300009],[25.89665774800011,40.84491608300006],[25.879893425000088,40.848334052000055],[25.825694207000137,40.849676825000145],[25.81421959700009,40.85516998900009],[25.803233269000113,40.85651276200015],[25.73218834700006,40.851752020000056],[25.691172722000143,40.85814036700002],[25.64714603000004,40.87002187700012],[25.60450280000012,40.876166083000115],[25.567149285000056,40.865423895],[25.558848504000082,40.86709219000012],[25.537771030000073,40.87042877800014],[25.516856316000116,40.87909577000015],[25.502207879000082,40.88963450700011],[25.486827019000142,40.897121486000074],[25.43677819100014,40.90542226800015],[25.41968834700009,40.90639883000013],[25.382985873000077,40.919012762000094],[25.340830925000148,40.94171784100014],[25.299652540000068,40.95184967700011],[25.266123894000117,40.926906643000095],[25.25928795700011,40.926906643000095],[25.25879967500012,40.93195221600011],[25.180674675000088,40.94269440300003],[25.159678582000055,40.95172760600003],[25.14698326900009,40.95897044500008],[25.13803144600007,40.960109768],[25.134043816000087,40.96287669500005],[25.135752800000088,40.975287177],[25.140147332000083,40.98358795800006],[25.14820397200012,40.99005768400015],[25.15845787900014,40.9942894550001],[25.169932488000086,40.995794989000146],[25.15137780000009,41.00531647300012],[25.13843834700009,41.01007721600003],[25.057302280000073,41.00946686400009],[25.039073113000086,41.006048895000056],[25.039561394000145,40.989569403000175],[25.01880944100006,40.975083726000136],[25.0065210300001,40.96971263200008],[24.991709832000137,40.96845123900006],[24.999034050000144,40.94993724200005],[24.989756707000083,40.942124742000075],[24.97217858200014,40.94074127800017],[24.95386803500008,40.941148179],[24.94068444100014,40.937933661000116],[24.9080509770001,40.923895575000174],[24.892100457000083,40.920640367000125],[24.86353600400011,40.905218817],[24.833994988000143,40.87474192900005],[24.80201256600014,40.853461005000085],[24.76579837300011,40.865423895],[24.728363477000073,40.85272858300014],[24.70875084700012,40.851752020000056],[24.690114780000044,40.858587958],[24.69483483200014,40.86123281500009],[24.695323113000114,40.862127997000165],[24.69752037900011,40.865423895],[24.662771030000073,40.879706122000115],[24.641368035000113,40.86456940300012],[24.6354272800001,40.858587958],[24.628672722000147,40.858587958],[24.619639519000145,40.87466054900007],[24.609060092000078,40.88849518400015],[24.59620201900006,40.90119049700003],[24.600759311000104,40.91380442900011],[24.586273634000065,40.919094143000095],[24.575531446000042,40.92670319200012],[24.56885826900009,40.93740469000015],[24.56666100400011,40.95172760600003],[24.51775149800011,40.95815664300015],[24.505137566000144,40.961615302000055],[24.495616082000137,40.95587799700017],[24.484060092000107,40.95457591400016],[24.47291100400011,40.95172760600003],[24.464121941000116,40.941148179],[24.44312584700009,40.94806549700009],[24.415537957000083,40.94554271000008],[24.391774936000072,40.936468817000055],[24.372243686000104,40.91412995000003],[24.32764733200011,40.88621653900019],[24.31267337300008,40.879706122000115],[24.32471764400009,40.87205638200008],[24.332367384000122,40.862860419000114],[24.33130944100006,40.855047919000114],[24.30982506600014,40.85053131700006],[24.306000196000127,40.84707265800016],[24.30567467500009,40.841742255],[24.30958092500009,40.83502838700004],[24.315277540000068,40.83222077],[24.33187910200013,40.83319733300006],[24.340668165000096,40.831284898000106],[24.211192254000082,40.77317942900005],[24.11011803500014,40.72785065300015],[24.073090040000125,40.72142161700013],[24.03003991000008,40.723334052],[23.986338738000114,40.73216380400005],[23.874034050000088,40.77765534100003],[23.854340040000068,40.78115469],[23.84205162900008,40.783351955000015],[23.809255405000073,40.780422268000095],[23.754079623000052,40.76300690300012],[23.731700066000116,40.75185781500009],[23.710703972000086,40.73761627800009],[23.697032097000147,40.72142161700013],[23.69174238400009,40.695379950000145],[23.70020592500012,40.67365143400009],[23.718028191000087,40.65867747600005],[23.740977410000085,40.65314362200003],[23.755625847000086,40.645656643000066],[23.77247155000009,40.62763092700014],[23.78663170700011,40.60614655200011],[23.79265384200002,40.58795807500003],[23.799001498000052,40.58661530200014],[23.833506707000083,40.56378815300012],[23.84669030000012,40.56028880400011],[23.862478061000076,40.55914948100009],[23.877614780000073,40.56024811400012],[23.88884524800008,40.56378815300012],[23.89527428500008,40.55304596600011],[23.914886915000125,40.53888580900018],[23.915537957000083,40.52960846600003],[23.90723717500012,40.5253766950001],[23.838226759000094,40.51874420800014],[23.823008660000113,40.506984768000066],[23.819021030000044,40.487738348000036],[23.826670769000145,40.461371161000116],[23.868174675000148,40.41351959800009],[23.87794030000009,40.40615469],[23.909678582000137,40.39423248900006],[23.915537957000083,40.389349677],[23.953623894000085,40.382635809000035],[23.963877800000088,40.379461981000176],[23.97535241000014,40.38336823100014],[24.00245201900009,40.38637929900007],[24.01172936300011,40.392482815000065],[24.011566602000073,40.40184153900019],[24.00554446700005,40.414618231000034],[23.991221550000063,40.434068101000136],[23.998708530000044,40.440863348000065],[23.991221550000063,40.44769928600009],[24.011403842000107,40.44916413000014],[24.028819207000083,40.432074286],[24.053233269000117,40.392482815000065],[24.06519616000014,40.381008205000015],[24.0857853520001,40.366034247000165],[24.10889733200014,40.35740794499999],[24.12842858200011,40.365179755000085],[24.138926629000082,40.360663153000026],[24.169200066000087,40.35285065300003],[24.17986087300011,40.35150788000014],[24.1868595710001,40.34662506700006],[24.198008660000113,40.324164130000085],[24.20394941500004,40.31736888200013],[24.233409050000116,40.31688060100005],[24.266286655000016,40.28904857000002],[24.32064863400012,40.22797272300012],[24.383311394000113,40.17914459800012],[24.393809441000116,40.1524925800001],[24.36109459700009,40.13239166900014],[24.31861412900011,40.12470123900012],[24.29997806100002,40.12807851800015],[24.292246941000116,40.142645575000174],[24.28614342500012,40.160549221000124],[24.27173912900014,40.17096588700012],[24.253916863000086,40.178290106000034],[24.238291863000082,40.1869977890001],[24.211924675000088,40.217474677000055],[24.192718946000127,40.24896881700006],[24.168955925000148,40.27529531500009],[24.12842858200011,40.29002513200008],[24.047862175000148,40.30117422100009],[24.019216342000103,40.31049225500014],[23.993825717000078,40.32391998900012],[23.957367384000094,40.35260651200018],[23.93653405000012,40.365179755000085],[23.92261803500014,40.36933014500012],[23.88502037900014,40.365179755000085],[23.848317905000044,40.37270742400012],[23.833506707000083,40.372015692],[23.782237175000116,40.352687893000066],[23.759613477000073,40.34918854400017],[23.730479363000114,40.35895416900003],[23.72754967500009,40.353461005],[23.720713738000082,40.344794012000094],[23.716807488000086,40.34528229400008],[23.699717644000117,40.32636139500006],[23.69361412900014,40.309230861000046],[23.695648634000065,40.29291413],[23.711436394000117,40.26113515800016],[23.716319207000083,40.255316473],[23.72364342500009,40.24909088700004],[23.75766035200013,40.23167552300008],[23.764333530000073,40.215399481000034],[23.778575066000087,40.202704169000164],[23.7928166020001,40.19599030200014],[23.79948978000004,40.19757721600016],[23.867686394000145,40.17275625200001],[23.88021894600007,40.17633698100017],[23.89673912900014,40.17133209800012],[23.913340691000087,40.16136302300005],[23.926036004000053,40.149807033000016],[23.94068444100006,40.14154694200012],[23.980235222000115,40.130682684000064],[23.991221550000063,40.118719794000114],[23.990000847000147,40.11001211100013],[23.977386915000068,40.10049062700013],[23.97754967500012,40.09080638200008],[23.983246290000125,40.08490631700015],[24.001149936000076,40.07493724200005],[24.00489342500012,40.06720612200003],[24.001719597000143,40.058783270000085],[23.99463951900009,40.05731842700011],[23.987559441000116,40.05744049700009],[23.9842228520001,40.05361562700007],[23.98682701900009,40.042181708000115],[23.99341881600006,40.037543036],[24.00220787900014,40.038519598000065],[24.01172936300011,40.043646552],[24.01148522200009,40.03343333500005],[24.012217644000117,40.02655670800014],[24.014414910000113,40.02130768400015],[24.019216342000103,40.01630280200011],[23.992523634000065,39.998846747000144],[23.98804772200012,39.98997630400011],[23.998708530000044,39.98159414300015],[23.998708530000044,39.97475820500013],[23.979340040000125,39.97431061400012],[23.969899936000104,39.968085028000175],[23.972829623000024,39.96185944200011],[23.991221550000063,39.9610863300001],[23.991221550000063,39.953599351000136],[23.939952019000145,39.95246002800009],[23.91968834700012,39.95636627800009],[23.92286217500009,39.967922268],[23.92286217500009,39.97475820500013],[23.915537957000083,39.97475820500013],[23.907725457000083,39.96979401200018],[23.90064537900014,39.971177476000044],[23.897634311000044,39.9779320330001],[23.90251712300011,39.98843008000007],[23.8670353520001,40.00409577000015],[23.86085045700014,40.00580475500014],[23.856211785000113,40.016750393],[23.844899936000047,40.02411530200011],[23.831228061000104,40.02651601800015],[23.824066602000073,40.021918036000116],[23.823090040000096,40.017279364],[23.826670769000145,40.00885651200004],[23.789886915000068,40.05597565300003],[23.78516686300014,40.06720612200003],[23.79151451900009,40.08380768400009],[23.793304884000065,40.093817450000174],[23.78882897200012,40.098293361000124],[23.778330925000148,40.10162995000017],[23.77247155000009,40.10956452000012],[23.768728061000076,40.11884186400009],[23.76449629000004,40.126166083],[23.67546634200005,40.21792226800015],[23.641774936000047,40.23541901200009],[23.62273196700005,40.23965078300013],[23.540293816000116,40.24477773600013],[23.484141472000115,40.26959870000009],[23.43848717500009,40.279201565000065],[23.3982853520001,40.27773672100001],[23.36500084700009,40.26170482000013],[23.340098504000135,40.22797272300012],[23.33765709700012,40.20844147300015],[23.345388217000046,40.19155508000016],[23.355479363000086,40.175034897999986],[23.360606316000116,40.156642971000124],[23.363617384000122,40.150458075000174],[23.37134850400011,40.14740631700008],[23.39161217500012,40.146063544000086],[23.40064537900014,40.143988348000065],[23.406504754000082,40.13890208500013],[23.415782097000143,40.126166083],[23.46924889400006,40.067084052000055],[23.498871290000125,40.04230377800009],[23.602712436000072,39.998480536000145],[23.67025800900006,39.98607005400011],[23.672862175000148,39.97996653900013],[23.672862175000148,39.971258856000034],[23.675954623000052,39.9610863300001],[23.685394727000045,39.94904205900018],[23.697276238000082,39.94049713700014],[23.713063998000052,39.93545156500012],[23.73389733200011,39.933783270000035],[23.747894727000073,39.93048737200017],[23.74024498800014,39.92328522300015],[23.721690300000148,39.91596100500014],[23.703135613000143,39.912665106000084],[23.616465691000087,39.92332591400013],[23.470957879000082,39.97162506700006],[23.446543816000116,39.97475820500013],[23.372080925000148,39.96515534100014],[23.360606316000116,39.9610863300001],[23.365977410000085,39.97215403900013],[23.3787541020001,39.99111562700013],[23.38160241000014,40.00267161700016],[23.378428582000083,40.01097239800005],[23.363942905000044,40.026597398000135],[23.360606316000116,40.032782294000114],[23.352712436000047,40.05707428600009],[23.335134311000104,40.074448960000055],[23.31657962300011,40.08885325700011],[23.30591881600006,40.10447825700011],[23.319590691000112,40.13678620000003],[23.324554884000065,40.174953518],[23.318614129000135,40.21051666900017],[23.29908287900014,40.23541901200009],[23.258636915000096,40.253119208000115],[23.236664259000094,40.25958893400012],[23.199554884000094,40.266262111000074],[23.18238366000014,40.27431875200001],[23.16618899800011,40.279852606000034],[23.14893639400009,40.27643463700012],[23.096934441000116,40.30609772300015],[23.086761915000096,40.307074286000116],[23.076182488000143,40.314439195000105],[23.052744988000143,40.31867096600014],[23.02914472700013,40.325751044000114],[23.010915561000047,40.35122304900001],[22.96387780000012,40.379461981000176],[22.94483483200014,40.386297919000086],[22.927500847000147,40.38849518400018],[22.88819420700014,40.386297919000086],[22.897715691000144,40.402044989000146],[22.88965905000009,40.41836172100007],[22.860199415000125,40.44769928600009],[22.86329186300011,40.448553778000175],[22.865977410000085,40.448472398000106],[22.867442254000135,40.44944896000008],[22.867198113000086,40.45392487200006],[22.830902540000096,40.485785223000065],[22.821625196000127,40.50214264500009],[22.84351647200009,40.50918203300016],[22.907399936000104,40.512030341000084],[22.94157962300008,40.517157294000114],[22.95639082100007,40.5262718770001],[22.962901238000143,40.53514232000005],[22.975108269000117,40.542425848000065],[22.98316491000014,40.552679755],[22.976898634000122,40.57062409100003],[22.95248457100007,40.58242422100001],[22.946136915000125,40.58429596600017],[22.941742384000065,40.58734772300006],[22.94361412900011,40.59418366100009],[22.949554884000122,40.605414130000085],[22.93376712300008,40.630926825000174],[22.910492384000094,40.64459870000011],[22.88306725400011,40.64728424700009],[22.854014519000145,40.63947174700009],[22.86109459700012,40.62055084800009],[22.858653191000087,40.60529205900012],[22.850596550000148,40.59341054900015],[22.840342644000117,40.58429596600017],[22.82447350400008,40.578070380000106],[22.815114780000044,40.572943427],[22.815928582000055,40.57062409100003],[22.79566491000014,40.57078685099999],[22.787119988000114,40.572943427],[22.778330925000148,40.578070380000106],[22.75855553500014,40.5677757830001],[22.745941602000073,40.55524323100009],[22.742523634000065,40.540350653000026],[22.750336134000037,40.52277252800012],[22.744151238000086,40.52277252800012],[22.736664259000094,40.52960846600003],[22.736664259000094,40.51532623900012],[22.730479363000143,40.51532623900012],[22.730479363000143,40.52277252800012],[22.723155144000117,40.52277252800012],[22.719004754000082,40.510972398000135],[22.710948113000143,40.51162344000009],[22.7003686860001,40.517808335000055],[22.68897545700014,40.52277252800012],[22.688487175000148,40.527492580000015],[22.673513217000107,40.52684153900016],[22.657725457000083,40.51666901200012],[22.656260613000114,40.504543361000046],[22.67530358200011,40.496161200000145],[22.666026238000143,40.49534739800005],[22.65967858200011,40.492905992000104],[22.656016472000058,40.48761627800006],[22.6549585300001,40.478094794000135],[22.650726759000094,40.472805080000064],[22.64161217500009,40.47467682500003],[22.62680097700013,40.481878973000065],[22.60287519600007,40.48126862200011],[22.590505405000044,40.4774437520001],[22.579112175000148,40.468207098000114],[22.59343509200005,40.45819733300006],[22.60377037900005,40.44399648600013],[22.6087345710001,40.428168036],[22.606455925000148,40.41356028900016],[22.61850019600007,40.40509674700006],[22.628265821000095,40.39362213700009],[22.63998457100007,40.3836937520001],[22.65837649800011,40.379461981000176],[22.66114342500009,40.36904531500009],[22.647634311000104,40.34589264500015],[22.620616082000055,40.31049225500014],[22.59034264400006,40.241644598000065],[22.590830925000148,40.23016998900011],[22.55250084700012,40.166571356000034],[22.549652540000093,40.14386627800009],[22.557302280000098,40.127183335000055],[22.5677189460001,40.11050039300004],[22.5729272800001,40.08771393400009],[22.568858269000145,40.064846096000096],[22.57129967500009,40.05426666900002],[22.583181186000047,40.049872137000065],[22.58765709700009,40.04490794500002],[22.600271030000073,40.01630280200011],[22.65251712300008,39.982082424000126],[22.661631707000083,39.97821686400012],[22.667165561000104,39.97435130400011],[22.690928582000083,39.96816640800016],[22.696462436000104,39.964544989],[22.698578321000127,39.96088288000014],[22.707855665000068,39.961371161000116],[22.710134311000047,39.95734284100014],[22.708994988000114,39.93903229400008],[22.709808790000125,39.93504466400013],[22.710134311000047,39.933783270000035],[22.72299238400006,39.89777252800015],[22.730479363000143,39.88540273600002],[22.74089603000004,39.87470123900009],[22.7786564460001,39.84983958500014],[22.801117384000094,39.84031810100005],[22.815277540000125,39.82904694200015],[22.840342644000117,39.803412177],[22.850271030000098,39.79051341400016],[22.858653191000087,39.77326080900015],[22.864756707000055,39.753159898000106],[22.867198113000086,39.73175690300015],[22.871755405000044,39.715806382000046],[22.901866082000083,39.65884023600013],[22.9251408210001,39.599514065000065],[22.939463738000086,39.580633856000034],[22.952891472000147,39.570013739],[23.00489342500012,39.54340241100006],[23.055918816000116,39.52724844],[23.094493035000085,39.50409577000015],[23.09742272200012,39.50177643400009],[23.10181725400011,39.49738190300012],[23.114105665000064,39.46698639500015],[23.125661655000073,39.45441315300014],[23.210948113000143,39.379339911000116],[23.223806186000076,39.358587958000115],[23.27133222700007,39.322943427000084],[23.292246941000116,39.268988348000065],[23.342295769000142,39.192613023000135],[23.343760613000114,39.17963288000014],[23.333262566000144,39.17438385600015],[23.301280144000145,39.15135325699999],[23.281748894000145,39.1461449240001],[23.243662957000083,39.14166901200004],[23.224619988000082,39.137111721000096],[23.209727410000113,39.13182200700011],[23.215098504000082,39.12946198100015],[23.219248894000117,39.1271019550001],[23.22348066500004,39.12518952000015],[23.23023522200009,39.124416408000016],[23.23023522200009,39.11815013200008],[23.221527540000096,39.116034247000144],[23.214203321000095,39.11261627800014],[23.208262566000055,39.10871002800015],[23.203623894000145,39.10455963700012],[23.191416863000057,39.10781484600007],[23.169200066000116,39.10659414300015],[23.146250847000115,39.10175202000006],[23.131602410000113,39.09430573100009],[23.115489129000135,39.088283596000096],[23.092133009000037,39.089341539000046],[23.052012566000116,39.09772370000009],[23.061371290000068,39.111761786000145],[23.073090040000068,39.124416408000016],[23.0677189460001,39.138006903000175],[23.08106530000009,39.14720286700004],[23.114105665000064,39.15912506700009],[23.1139429050001,39.14630768400015],[23.10059655000009,39.10455963700012],[23.17172285200013,39.134955145000085],[23.18238366000014,39.1461449240001],[23.175547722000147,39.15546295800014],[23.181325717000107,39.15867747599999],[23.19092858200008,39.15810781500012],[23.19605553500008,39.15574778900016],[23.19922936300014,39.15143463700015],[23.206309441000112,39.15704987200017],[23.21355228000004,39.16811758],[23.21713300900012,39.17963288000014],[23.212250196000124,39.19049713700004],[23.186371290000125,39.22443268400018],[23.175547722000147,39.23427969],[23.179860873000052,39.25079987200017],[23.169118686000047,39.26854075700008],[23.151377800000116,39.284857489],[23.134613477000098,39.29694245000009],[23.115489129000135,39.30744049700014],[23.098155144000145,39.31220123900006],[23.02051842500012,39.31753164300012],[23.019786004000082,39.32099030200011],[23.02100670700011,39.32558828300015],[23.018565300000148,39.330471096000124],[23.013682488000086,39.33637116100006],[23.003428582000083,39.352443752000156],[22.99805748800011,39.35712311400006],[22.990733269000117,39.35809967700014],[22.96387780000012,39.35712311400006],[22.94117272200009,39.361761786],[22.935883009000094,39.36058177300007],[22.94288170700008,39.350978908000094],[22.94288170700008,39.34414297100007],[22.932790561000104,39.336004950000145],[22.9290470710001,39.32420482],[22.93213951900006,39.31220123900006],[22.94288170700008,39.30316803600006],[22.919281446000124,39.29865143400009],[22.879893425000144,39.29555898600002],[22.842539910000113,39.28847890800016],[22.826182488000086,39.27216217700011],[22.824229363000143,39.23346588700018],[22.826182488000086,39.22125885600012],[22.854014519000145,39.15912506700009],[22.860199415000125,39.15912506700009],[22.868011915000093,39.169745184000035],[22.880869988000143,39.17963288000014],[22.876963738000143,39.19037506700006],[22.882090691000144,39.190985419000114],[22.890147332000083,39.184271552000084],[22.895030144000142,39.17279694200012],[22.901866082000083,39.17963288000014],[22.910899285000085,39.163316148000106],[22.914561394000142,39.143784898000135],[22.92058353000004,39.12514883000016],[22.936045769000145,39.11139557500003],[22.935883009000094,39.11611562700012],[22.937185092000103,39.117254950000174],[22.939463738000086,39.11713288000002],[22.94288170700008,39.11815013200008],[22.938731316000144,39.12494538],[22.936045769000145,39.13182200700011],[22.96111087300008,39.119045315000065],[22.973317905000044,39.10195547100004],[22.982432488000114,39.08441803600009],[22.99805748800011,39.069769598000065],[22.99195397200012,39.057318427000055],[22.993418816000087,39.054632880000085],[22.99805748800011,39.049261786000116],[22.966481967000107,39.03465403900019],[22.9588322270001,39.025132554],[22.96387780000012,39.00897858300014],[23.015310092000107,39.03318919500013],[23.04249108200014,39.04010651200004],[23.073090040000068,39.04246653900018],[23.073090040000068,39.03628164300004],[23.064707879000082,39.028753973000065],[23.03223717500009,39.0151227890001],[23.02328535200007,39.00844961100016],[23.01905358200014,39.00128815300012],[23.011729363000143,38.98102448100009],[23.0071720710001,38.97394440300006],[23.00025475400011,38.96645742400007],[22.99667402400013,38.963405666000185],[22.992198113000086,38.95962148600016],[22.984548373000052,38.95433177299999],[22.97868899800011,38.95327383000013],[22.96412194100006,38.95526764500006],[22.95639082100007,38.95433177299999],[22.94971764400009,38.94961172100007],[22.944346550000148,38.94733307500009],[22.936045769000145,38.946844794000114],[22.940603061000104,38.93646881700012],[22.94288170700008,38.93260325700011],[22.928558790000096,38.93158600500014],[22.90845787900014,38.921942450000174],[22.898448113000057,38.91962311400012],[22.88640384200005,38.921698309000035],[22.873301629000082,38.92593008000016],[22.85987389400009,38.928534247000144],[22.846527540000096,38.926418361000124],[22.841807488000082,38.919175523000106],[22.83668053500014,38.89647044500008],[22.829600457000108,38.89166901200018],[22.804698113000143,38.891017971000124],[22.79656009200005,38.887111721000124],[22.792002800000088,38.877997137000065],[22.777679884000122,38.87848541900002],[22.754567905000073,38.87396881700009],[22.732676629000135,38.87238190300015],[22.723155144000117,38.88174062700007],[22.71827233200005,38.88979726800004],[22.707774285000085,38.887396552000084],[22.68897545700014,38.877997137000065],[22.680430535000113,38.88051992400007],[22.66358483200011,38.88959381700006],[22.65837649800011,38.89166901200018],[22.656423373000077,38.89435455900015],[22.621592644000142,38.914496161],[22.61329186300014,38.91307200700014],[22.594981316000087,38.90281810100011],[22.588877800000116,38.89801666900011],[22.580821160000085,38.89362213700004],[22.56983483200011,38.89166901200018],[22.559906446000095,38.89109935100011],[22.552093946000127,38.88922760600015],[22.545258009000094,38.88507721600011],[22.538828972000086,38.877997137000065],[22.53492272200009,38.880682684000035],[22.525075717000078,38.88544342700011],[22.525075717000078,38.85814036700005],[22.5729272800001,38.864325262000115],[22.5729272800001,38.85814036700005],[22.553884311000104,38.84808991100006],[22.563324415000125,38.83624909100011],[22.582774285000113,38.83197663],[22.59343509200005,38.844468492000104],[22.600271030000073,38.844468492000104],[22.59343509200005,38.830226955],[22.608164910000138,38.830755927000084],[22.621429884000065,38.83388906500015],[22.632660352000073,38.83515045800006],[22.641123894000117,38.830226955],[22.690277540000125,38.850002346000124],[22.702647332000083,38.85065338700018],[22.726817254000082,38.81964752800015],[22.748057488000086,38.79922109600007],[22.758962436000047,38.794094143000066],[22.769541863000086,38.78481679900001],[22.778330925000148,38.781724351000136],[22.786387566000087,38.78241608300005],[22.805837436000104,38.78790924700009],[22.815928582000055,38.78925202000009],[22.829274936000076,38.78607819200012],[22.8455509770001,38.778021552],[22.85987389400009,38.76703522300012],[22.867198113000086,38.755072333],[22.887543165000093,38.77114492400007],[22.898203972000115,38.77529531500004],[22.914886915000068,38.77558014500014],[22.925629102000073,38.77171458500014],[22.945323113000114,38.75812409100008],[22.960215691000084,38.755072333],[23.0162866550001,38.754461981000034],[23.042002800000148,38.746730861000046],[23.059418165000125,38.727728583000115],[23.090505405000016,38.64911530200011],[23.10450280000009,38.638413804],[23.12354576900009,38.63690827000015],[23.133311394000117,38.63971588700009],[23.14519290500007,38.648993231000055],[23.15642337300008,38.653469143],[23.168955925000148,38.652289130000085],[23.182465040000125,38.65375397300015],[23.19605553500008,38.66632721600003],[23.176768425000148,38.676581122000144],[23.168142123000052,38.679388739000025],[23.186778191000144,38.68598053600009],[23.20492597700013,38.682684637000065],[23.237640821000067,38.66632721600003],[23.25375410200013,38.66181061400009],[23.286957227000073,38.658148505000106],[23.30591881600006,38.652655341000084],[23.320974155000073,38.643255927000084],[23.3312280610001,38.630275783000066],[23.33570397200009,38.616400458],[23.333262566000144,38.6042341170001],[23.321136915000036,38.594427802000084],[23.30648847700013,38.58885325700005],[23.293304884000094,38.57908763200011],[23.28541100400011,38.55646393400015],[23.29542076900009,38.56810130400008],[23.30738366000011,38.56854889500006],[23.319590691000112,38.56199778900016],[23.32984459700012,38.55272044500013],[23.34058678500014,38.54555898600007],[23.36744225400014,38.540472723000065],[23.38160241000014,38.53534577000015],[23.38160241000014,38.528550523000106],[23.372813347000086,38.52594635600012],[23.34986412900011,38.525580145],[23.340098504000135,38.522365627000156],[23.33179772200009,38.51487864799999],[23.329274936000076,38.50836823100009],[23.334971550000148,38.503607489],[23.35059655000012,38.501857815],[23.418467644000117,38.504339911000116],[23.51937910200007,38.49066803600008],[23.531911655000073,38.498114325000145],[23.542979363000114,38.511704820000105],[23.567230665000096,38.501125393000066],[23.601328972000086,38.47394440300015],[23.58082116000014,38.463568427000055],[23.573496941000144,38.460882880000085],[23.573496941000144,38.45343659100011],[23.585948113000054,38.45115794500013],[23.596202019000085,38.446763414000046],[23.60010826900009,38.44061920800005],[23.59400475400011,38.43292877800015],[23.59400475400011,38.42609284100003],[23.625010613000114,38.414007880000106],[23.672862175000148,38.35643138200005],[23.709971550000148,38.336737372000115],[23.724864129000107,38.33612702000015],[23.78199303500008,38.34357330900003],[23.80502363400006,38.33250560099999],[23.81617272200009,38.330511786000145],[23.912445509000094,38.298244533000016],[23.932871941000087,38.29580312700007],[23.951019727000073,38.290920315],[23.96697024800008,38.279282945000105],[23.991221550000063,38.25421784100011],[24.03858483200011,38.22394440300012],[24.046397332000108,38.21694570500013],[24.05062910200013,38.210679429],[24.06902103000007,38.204738674000154],[24.073090040000125,38.19647858300005],[24.070974155000012,38.18842194200012],[24.068044467000107,38.18089427300008],[24.069509311000047,38.17352936400009],[24.08057701900009,38.166001695000105],[24.06999759200005,38.162787177000055],[24.064138217000103,38.155096747000144],[24.061045769000117,38.14419179900006],[24.059418165000093,38.13129303600006],[24.053233269000117,38.14524974200013],[24.0377710300001,38.143744208000086],[23.989024285000085,38.12262604400014],[23.990000847000147,38.10211823100009],[24.00489342500012,38.05927155200011],[24.009125196000127,38.040594794000135],[24.018565300000148,38.02667877800015],[24.028168165000125,38.01618073100009],[24.032725457000083,38.00775788000014],[24.03003991000008,37.99843984600001],[24.01661217500009,37.97695547100007],[24.01172936300011,37.96686432500012],[24.01189212300008,37.958319403000175],[24.014496290000093,37.94847239800008],[24.015879754000082,37.93744538000011],[24.01172936300011,37.92523834800012],[24.02279707100007,37.92572663000011],[24.034434441000087,37.92291901200018],[24.043304884000122,37.91644928600009],[24.046397332000108,37.90599192899999],[24.042246941000055,37.90070221600003],[24.01172936300011,37.891750393000095],[24.01889082100007,37.88515859600001],[24.02784264400009,37.880316473000114],[24.03891035200013,37.877875067],[24.053233269000117,37.87807851800015],[24.046397332000108,37.87059153900018],[24.05193118600002,37.86969635600009],[24.066905144000142,37.86440664300004],[24.060801629000082,37.85561758000016],[24.059336785000113,37.8485375020001],[24.06177819100014,37.84251536700016],[24.066905144000142,37.83710358300014],[24.06177819100014,37.83470286700019],[24.05762780000009,37.83218008000007],[24.05494225400011,37.828517971000124],[24.053233269000117,37.822821356000034],[24.076996290000125,37.81110260600015],[24.084646030000044,37.80174388200011],[24.08741295700011,37.78522370000006],[24.086192254000082,37.76373932500012],[24.081879102000098,37.75250885600012],[24.059418165000093,37.73346588700012],[24.073090040000125,37.727240302000055],[24.073090040000125,37.71979401200018],[24.059418165000093,37.71979401200018],[24.059418165000093,37.71356842700011],[24.065765821000127,37.712795315],[24.066742384000094,37.709702867000104],[24.065765821000127,37.705023505],[24.066905144000142,37.699286200000024],[24.065684441000144,37.70189036700013],[24.065277540000125,37.704820054000045],[24.06397545700014,37.705023505],[24.059418165000093,37.699286200000024],[24.072113477000045,37.68952057500009],[24.063731316000084,37.67845286700005],[24.046397332000108,37.66583893400015],[24.032725457000083,37.651516018000095],[24.0213322270001,37.65778229400003],[23.983083530000073,37.670314846000124],[23.967295769000117,37.672593492000104],[23.94971764400009,37.67743561400009],[23.94304446700002,37.68992747599999],[23.94336998800014,37.727240302000055],[23.93653405000012,37.727240302000055],[23.92269941500012,37.72117747600008],[23.913340691000087,37.73969147300009],[23.90251712300011,37.78188711100002],[23.898692254000082,37.779282945000105],[23.88884524800008,37.774400132000046],[23.88160241000014,37.79108307500009],[23.865570509000065,37.80768463700004],[23.84750410200013,37.81810130400014],[23.833506707000083,37.81598541900003],[23.829112175000088,37.81940338700004],[23.825368686000047,37.82135651200017],[23.8221134770001,37.824164130000106],[23.819183790000096,37.82965729400014],[23.812998894000117,37.82965729400014],[23.807302280000044,37.80857982000013],[23.797211134000065,37.80849844000015],[23.78663170700011,37.81216054900001],[23.778981967000078,37.802313544000086],[23.777354363000057,37.80906810100011],[23.776621941000144,37.81427643400012],[23.773610873000052,37.81688060100011],[23.76449629000004,37.81598541900003],[23.77084394600007,37.82831452000006],[23.766449415000093,37.83893463700012],[23.7448022800001,37.85761139500009],[23.74219811300011,37.87665436400009],[23.700531446000042,37.92519765800013],[23.697032097000147,37.93952057500003],[23.680186394000142,37.94586823100014],[23.663340691000144,37.94293854400014],[23.646006707000055,37.936672268000095],[23.628103061000104,37.93268463700012],[23.627696160000113,37.93764883000007],[23.628103061000104,37.93952057500003],[23.63770592500009,37.94293854400014],[23.64079837300008,37.94578685099999],[23.641774936000047,37.952541408000016],[23.62663821700005,37.947495835],[23.61801191500004,37.95327383000016],[23.61036217500012,37.962144273000014],[23.597666863000143,37.96686432500012],[23.58334394600007,37.967108466000134],[23.571055535000113,37.968695380000085],[23.560801629000082,37.97280508000013],[23.552989129000082,37.98045482000008],[23.58887780000009,38.00633372600008],[23.597911004000082,38.021144924000126],[23.590586785000085,38.038804429000045],[23.581309441000144,38.04629140800004],[23.574554884000094,38.04677969],[23.568207227000073,38.04425690300009],[23.559825066000116,38.042547919000086],[23.521820509000094,38.042547919000086],[23.51148522200009,38.04043203300007],[23.50489342500012,38.035711981000176],[23.4998478520001,38.03099192900008],[23.49463951900009,38.02887604400014],[23.47087649800008,38.02777741100003],[23.460459832000108,38.025458075000145],[23.44996178500014,38.021429755000085],[23.411875847000147,37.99437083500014],[23.395274285000085,37.987941799000126],[23.42945397200009,37.98045482000008],[23.408946160000113,37.97431061400009],[23.32984459700012,37.98045482000008],[23.226817254000082,37.97361888200013],[23.18921959700009,37.95880768400015],[23.15943444100006,37.9405378280001],[23.14234459700012,37.93008047100004],[23.094086134000094,37.91103750200013],[23.052012566000116,37.92523834800012],[23.04273522200009,37.92194245000009],[23.034841342000107,37.922308661000116],[23.026133660000113,37.92413971600008],[23.01514733200014,37.92523834800012],[23.011485222000115,37.919989325000145],[23.011729363000143,37.90851471600011],[23.010264519000085,37.89695872599999],[23.00147545700011,37.891750393000095],[22.995127800000088,37.88214752800012],[22.999522332000083,37.862697658000016],[23.012543165000068,37.84756094000004],[23.03223717500009,37.850775458000086],[23.049652540000064,37.843573309000035],[23.073496941000144,37.84113190300009],[23.097178582000083,37.843573309000035],[23.114105665000064,37.850775458000086],[23.146250847000115,37.825832424000126],[23.163828972000147,37.81525299700009],[23.18238366000014,37.80914948100009],[23.177989129000082,37.79930247599999],[23.176442905000044,37.78998444200015],[23.177989129000082,37.781561591000084],[23.18238366000014,37.774400132000046],[23.168711785000113,37.77236562700001],[23.150401238000143,37.763373114],[23.128184441000087,37.76048411700016],[23.125010613000143,37.757269598],[23.124034050000148,37.750962632000075],[23.120941602000073,37.740912177],[23.145843946000095,37.72581614799999],[23.159353061000076,37.720770575000145],[23.175547722000147,37.71979401200018],[23.166270379000082,37.69700755400005],[23.163828972000147,37.68158600500011],[23.167246941000144,37.666449286000116],[23.175547722000147,37.64468008000007],[23.16187584700009,37.64468008000007],[23.16456139400009,37.62303294499999],[23.16863040500004,37.61416250200013],[23.19011478000007,37.607326565],[23.23023522200009,37.582586981000034],[23.237640821000067,37.590033270000035],[23.274668816000084,37.561224677000084],[23.27906334700009,37.55996328300007],[23.28419030000009,37.55923086100013],[23.292246941000116,37.555894273000106],[23.312347852000073,37.542547919000114],[23.323008660000113,37.537420966000084],[23.33668053500014,37.53546784100014],[23.360362175000148,37.547674872000115],[23.359141472000147,37.574286200000145],[23.34058678500014,37.60028717700014],[23.312185092000107,37.61054108300005],[23.312185092000107,37.61737702000009],[23.32911217500009,37.628241278000175],[23.34782962300008,37.634426174000126],[23.39869225400011,37.63788483300014],[23.409027540000093,37.625921942],[23.404307488000082,37.59926992400007],[23.390798373000024,37.57135651200004],[23.374278191000144,37.555894273000106],[23.38428795700014,37.547430731000176],[23.395030144000145,37.54140859600007],[23.407399936000076,37.53750234600007],[23.422048373000077,37.53546784100014],[23.422048373000077,37.528021552000055],[23.402679884000065,37.52252838700004],[23.395274285000085,37.52179596600011],[23.395274285000085,37.51496002800009],[23.40211022200012,37.51496002800009],[23.410655144000117,37.51190827],[23.436289910000085,37.50812409100017],[23.458832227000073,37.49616120000003],[23.479177280000073,37.49066803600003],[23.52564537900011,37.45970286700016],[23.52051842500009,37.45506419500005],[23.51889082100007,37.45302969000012],[23.520681186000076,37.45087311400012],[23.52564537900011,37.44603099200005],[23.52564537900011,37.43919505400011],[23.505381707000108,37.43048737200003],[23.446543816000116,37.41461823100012],[23.441823764000105,37.41441478100016],[23.323252800000148,37.40973541900006],[23.30591881600006,37.411932684000035],[23.30738366000011,37.40839264500015],[23.30811608200014,37.40525950700008],[23.309418165000068,37.40204498900012],[23.312185092000107,37.39826080900009],[23.276052280000073,37.402248440000065],[23.262705925000144,37.40102773600016],[23.26441491000008,37.39081452000012],[23.23023522200009,37.38458893400015],[23.22999108200014,37.37494538],[23.237071160000113,37.37030670800006],[23.2474064460001,37.36945221600014],[23.257578972000143,37.370917059000114],[23.2513126960001,37.36351146000014],[23.2513126960001,37.357326565000065],[23.258962436000047,37.35639069200009],[23.278005405000044,37.349839585],[23.262380405000044,37.343980210000055],[23.2439884770001,37.34243398600002],[23.20671634200002,37.34369538000011],[23.186045769000113,37.34064362200003],[23.185394727000073,37.3321800800001],[23.194509311000047,37.31924062700007],[23.203623894000145,37.30267975500011],[23.18287194100014,37.299261786],[23.16863040500004,37.299505927000055],[23.15626061300011,37.30312734600001],[23.141449415000125,37.30951569200012],[23.141449415000125,37.31635163000006],[23.16187584700009,37.31635163000006],[23.16187584700009,37.32314687700007],[23.15015709700012,37.32575104400017],[23.13624108200014,37.323716539000046],[23.123383009000122,37.32477448100009],[23.114105665000064,37.336167710000055],[23.134613477000098,37.32933177300005],[23.129730665000125,37.338771877000156],[23.122406446000124,37.34568919500007],[23.10059655000009,37.357326565000065],[23.09278405000009,37.350775458000086],[23.08277428500011,37.35053131700014],[23.073090040000068,37.35521067900005],[23.073090040000068,37.357326565000065],[23.070078972000147,37.388902085000055],[23.072601759000065,37.40110911700013],[23.08375084700009,37.39451732000008],[23.094981316000084,37.38955312700001],[23.10523522200012,37.396918036],[23.112559441000116,37.41087474200016],[23.114105665000064,37.42560455900015],[23.135996941000087,37.415472723],[23.141449415000125,37.411932684000035],[23.141449415000125,37.41815827000009],[23.13656660200007,37.42731354400017],[23.135101759000094,37.43349844000012],[23.134613477000098,37.442613023000135],[23.132009311000104,37.44863515800013],[23.125498894000117,37.45111725500006],[23.117930535000085,37.45282623900006],[23.111338738000082,37.456610419000086],[23.097178582000083,37.46222565300009],[23.06202233200011,37.454982815000065],[23.045909050000148,37.45970286700016],[23.059418165000125,37.466538804],[23.045909050000148,37.487005927000055],[23.02100670700011,37.475287177000084],[23.01124108200005,37.46906159100011],[23.00489342500012,37.45970286700016],[22.990896030000073,37.495754299000126],[22.980723504000107,37.50877513200011],[22.96387780000012,37.52179596600011],[22.959239129000107,37.522772528000175],[22.94760175900009,37.52130768400012],[22.94288170700008,37.52179596600011],[22.939138217000046,37.52496979400017],[22.937347852000073,37.52944570500013],[22.936696811000104,37.533514716000084],[22.936045769000145,37.53546784100014],[22.921560092000107,37.54035065300011],[22.91285241000014,37.54181549700017],[22.901866082000083,37.54165273600002],[22.914317254000082,37.53880442900008],[22.918467644000113,37.535589911000116],[22.922373894000117,37.528021552000055],[22.902354363000143,37.53485748900009],[22.885020379000082,37.533148505000085],[22.86939537900008,37.52562083500011],[22.854014519000145,37.51496002800009],[22.84717858200014,37.52098216400019],[22.819346550000063,37.53546784100014],[22.82154381600014,37.53912995000009],[22.826182488000086,37.549058335],[22.813487175000116,37.553412177],[22.802012566000084,37.56085846600017],[22.79590905000009,37.569159247000144],[22.798838738000114,37.576402085000076],[22.788340691000144,37.588771877],[22.778330925000148,37.596869208000115],[22.7565210300001,37.58966705900009],[22.73845462300008,37.58087799700003],[22.726410352000073,37.56635163],[22.723155144000117,37.54165273600002],[22.725352410000113,37.53656647300009],[22.73462975400008,37.524562893000066],[22.736664259000094,37.51837799700009],[22.735524936000076,37.51190827],[22.730723504000082,37.50023021],[22.730479363000143,37.49445221600003],[22.734711134000065,37.483343817],[22.73991946700005,37.47748444200006],[22.745371941000087,37.47313060100008],[22.750336134000037,37.466538804],[22.751475457000083,37.46161530200013],[22.750336134000037,37.442613023000135],[22.752696160000085,37.43968333500011],[22.764821811000104,37.43178945500012],[22.764170769000145,37.42153554900001],[22.75733483200011,37.408270575000174],[22.75798587300008,37.39826080900009],[22.81039472700013,37.34837474200005],[22.819346550000063,37.34369538000011],[22.812510613000143,37.32933177300005],[22.826182488000086,37.32933177300005],[22.826182488000086,37.32314687700007],[22.819346550000063,37.32314687700007],[22.819346550000063,37.31635163000006],[22.829844597000143,37.30829498900012],[22.85377037900011,37.27387116100009],[22.860850457000083,37.25568268400009],[22.895030144000142,37.206488348000065],[22.898448113000057,37.203680731000034],[22.906586134000094,37.193915106000176],[22.91163170700011,37.18341705900012],[22.905284050000088,37.178534247000144],[22.900401238000114,37.17291901200003],[22.89722741000014,37.15985748900006],[22.895030144000142,37.13385651200018],[22.903168165000068,37.12128327],[22.92204837300011,37.117987372000144],[22.942718946000124,37.12010325700008],[22.95639082100007,37.12396881700006],[22.957041863000114,37.11933014500015],[22.9588322270001,37.11652252800009],[22.96119225400014,37.11399974200016],[22.96387780000012,37.11029694200012],[22.956797722000147,37.10675690300015],[22.95801842500009,37.105780341000084],[22.96387780000012,37.10342031500012],[22.95639082100007,37.095933335000055],[22.973480665000096,37.090969143],[22.981700066000084,37.08270905200011],[22.979177280000073,37.077826239000146],[22.96387780000012,37.082953192000055],[22.97291100400014,37.065130927],[22.999847852000098,37.033270575000145],[22.99805748800011,37.02147044499999],[23.00611412900014,37.004584052],[23.011729363000143,36.986761786000116],[23.006521030000073,36.98720937700004],[22.99586022200012,36.9864769550001],[22.990733269000117,36.986761786000116],[22.993174675000144,36.98183828300015],[23.000824415000068,36.97117747600013],[23.00489342500012,36.96686432500003],[23.00684655000009,36.970160223000065],[23.00757897200012,36.970851955000015],[23.008474155000098,36.97109609600015],[23.011729363000143,36.973089911],[23.0149845710001,36.96385325700011],[23.01636803500008,36.955267645000035],[23.015310092000107,36.94708893400009],[23.011729363000143,36.938910223],[23.02173912900014,36.92572663000005],[23.041677280000016,36.885443427000084],[23.04900149800011,36.87689850500006],[23.045909050000148,36.86908600500006],[23.059255405000044,36.85150788000011],[23.086761915000096,36.82908763200011],[23.093272332000083,36.81826406500012],[23.095550977000045,36.80703359600004],[23.091807488000114,36.79832591400013],[23.080577019000117,36.79498932500012],[23.080577019000117,36.788763739000146],[23.091075066000087,36.78827545800006],[23.098806186000104,36.78693268400015],[23.114105665000064,36.781317450000174],[23.109873894000145,36.77366771000014],[23.098399285000085,36.76666901200014],[23.0944116550001,36.76080963700012],[23.092946811000047,36.75519440300012],[23.093028191000144,36.752020575000145],[23.093760613000057,36.74892812700007],[23.0944116550001,36.74371979400017],[23.08863366000014,36.73289622600008],[23.075856967000107,36.73383209800006],[23.061696811000076,36.74054596600011],[23.052012566000116,36.74713776200018],[23.043467644000117,36.736029364000146],[23.030935092000107,36.72557200700008],[23.025645379000135,36.71564362200017],[23.039073113000114,36.70620351800015],[23.0369572270001,36.70286692900011],[23.034190300000148,36.69586823100006],[23.03223717500009,36.69257233300003],[23.059418165000125,36.69257233300003],[23.034434441000087,36.674872137000094],[23.035655144000117,36.649074611000074],[23.050466342000075,36.62246328300013],[23.07016035200013,36.596991278000026],[23.080577019000117,36.579291083000115],[23.084808790000125,36.57615794500005],[23.104665561000047,36.56932200700014],[23.115977410000113,36.56224192900008],[23.134613477000098,36.555365302000055],[23.138845248000052,36.550523179],[23.141286655000073,36.54559967700011],[23.145355665000125,36.54193756700006],[23.155039910000085,36.54108307500014],[23.145762566000116,36.535630601000136],[23.141449415000125,36.534247137000065],[23.141449415000125,36.528021552],[23.14747155000012,36.52236562700009],[23.148203972000147,36.517157294000114],[23.14389082100007,36.51227448100003],[23.134613477000098,36.50755442900011],[23.15186608200011,36.4872907570001],[23.18181399800008,36.47231679900007],[23.203623894000145,36.45612213700004],[23.19605553500008,36.43252187700009],[23.16187584700009,36.44619375200013],[23.15186608200011,36.435614325000174],[23.139333530000016,36.434068101000136],[23.094737175000148,36.443182684000114],[23.08570397200012,36.45359935100011],[23.07837975400011,36.46527741100003],[23.066254102000126,36.473456122000115],[23.066254102000126,36.479641018000095],[23.072113477000073,36.49310944200006],[23.0651147800001,36.50910065300015],[23.05103600400014,36.52244700700008],[23.035655144000117,36.528021552],[22.992686394000145,36.52033112200017],[22.972422722000147,36.520209052],[22.96387780000012,36.531154690000065],[22.959239129000107,36.54743073100009],[22.936778191000084,36.58616771000014],[22.92920983200014,36.596340236000074],[22.917816602000073,36.60516998900012],[22.874685092000078,36.63051992400007],[22.888926629000082,36.642482815],[22.88428795700014,36.65424225500008],[22.842539910000113,36.685003973000065],[22.837168816000144,36.68650950700011],[22.833181186000076,36.678900458000086],[22.819346550000063,36.66522858300014],[22.81495201900009,36.6705589860001],[22.813731316000087,36.67938873900006],[22.819346550000063,36.702785549000126],[22.817149285000085,36.717962958000115],[22.807871941000116,36.73956940300003],[22.800791863000057,36.77578359600015],[22.786875847000086,36.79344310100008],[22.76514733200011,36.80418528900016],[22.736664259000094,36.80857982000008],[22.685557488000143,36.809475002000156],[22.62256920700011,36.80345286700004],[22.577403191000144,36.78302643400018],[22.579112175000148,36.74038320500013],[22.546153191000087,36.72142161700013],[22.53345787900014,36.70722077000012],[22.525075717000078,36.68512604400003],[22.540293816000144,36.68520742400001],[22.549815300000148,36.67829010600012],[22.553721550000148,36.666205145],[22.55250084700012,36.650946356000034],[22.545664910000113,36.650946356000034],[22.543793165000125,36.65802643400009],[22.54004967500012,36.665269273000135],[22.533864780000044,36.6705589860001],[22.525075717000078,36.67145416900008],[22.516774936000104,36.666164455000015],[22.511403842000046,36.65688711100016],[22.51002037900014,36.64801666900003],[22.514496290000125,36.64411041900003],[22.53101647200009,36.63279857000005],[22.526052280000044,36.61237213700015],[22.51270592500012,36.60276927299999],[22.504649285000113,36.624253648000106],[22.49000084700009,36.61701080900009],[22.484060092000078,36.606634833],[22.483571811000076,36.54791901200018],[22.48658287900008,36.52509186400006],[22.492686394000057,36.506293036000116],[22.51148522200012,36.466620184000085],[22.507334832000083,36.461086330000064],[22.51148522200012,36.452337958],[22.498301629000082,36.44525788000014],[22.493907097000086,36.434759833000086],[22.496755405000044,36.422756252000156],[22.504649285000113,36.411363022999986],[22.504649285000113,36.404527085000076],[22.495453321000127,36.40534088700018],[22.493011915000096,36.40249258000013],[22.49284915500004,36.397284247000144],[22.490977410000056,36.390936591000106],[22.479746941000144,36.402044989000146],[22.476328972000147,36.41925690300015],[22.475108269000145,36.43756745000003],[22.469899936000047,36.452337958],[22.45533287900011,36.46222565300012],[22.42042076900009,36.4735375020001],[22.408376498000077,36.487127997000144],[22.401621941000144,36.487127997000144],[22.391368035000113,36.47850169500005],[22.381358269000117,36.48045482000002],[22.371918165000125,36.48822663],[22.36402428500014,36.497015692000055],[22.354502800000148,36.51190827000012],[22.355316602000073,36.52293528900016],[22.361501498000024,36.53375885600015],[22.36744225400014,36.54791901200018],[22.38355553500011,36.54417552300004],[22.38819420700014,36.5560570330001],[22.384043816000116,36.572495835],[22.3737085300001,36.58270905200014],[22.378672722000143,36.587591864],[22.387950066000116,36.602525132000046],[22.36744225400014,36.602525132000046],[22.36931399800011,36.61538320500007],[22.36793053500014,36.63084544499999],[22.371348504000135,36.64272695500013],[22.387950066000116,36.64411041900003],[22.387950066000116,36.650946356000034],[22.368418816000116,36.656480210000055],[22.37061608200011,36.67357005400011],[22.387950066000116,36.70620351800015],[22.358571811000104,36.702093817],[22.33936608200014,36.726467190000065],[22.323741082000083,36.75787995000009],[22.305430535000113,36.77509186400003],[22.306976759000065,36.79458242400001],[22.2916772800001,36.82013580900018],[22.221527540000125,36.89752838700017],[22.200205925000148,36.90639883000004],[22.175059441000087,36.891180731000055],[22.14869225400008,36.90717194200015],[22.137868686000072,36.91714101800012],[22.1334741550001,36.93211497600007],[22.135752800000063,36.93162669499999],[22.14063561300014,36.93716054900001],[22.145355665000064,36.94611237200002],[22.147715691000116,36.95604075700014],[22.148773634000065,36.9674339860001],[22.153575066000144,36.98688385600009],[22.155121290000096,37.014105536],[22.153168165000125,37.02118561400006],[22.085622592000078,37.03339264500012],[22.048106316000144,37.03514232000013],[22.03003991000014,37.030951239],[21.992198113000086,37.01211172100015],[21.954600457000083,37.00364817900011],[21.943125847000147,36.993312893],[21.9373478520001,36.97996653900019],[21.927256707000108,36.884466864],[21.922211134000094,36.872300523000106],[21.9217228520001,36.86322663000011],[21.92595462300011,36.85171133000007],[21.93213951900009,36.84300364799999],[21.93490644600007,36.83421458500011],[21.928558790000125,36.82225169500002],[21.945648634000065,36.80902741100006],[21.9562280610001,36.80345286700004],[21.970225457000083,36.80174388200013],[21.970225457000083,36.79498932500012],[21.95679772200009,36.794134833],[21.94507897200009,36.78994375200007],[21.938812696000042,36.78318919500013],[21.942230665000064,36.77509186400003],[21.935883009000122,36.766017971],[21.894297722000147,36.735052802000084],[21.888682488000143,36.72992584800006],[21.882578972000143,36.72654857000005],[21.874034050000148,36.726711330000015],[21.856781446000127,36.75507233300014],[21.853526238000086,36.757391669000114],[21.822764519000117,36.80857982000008],[21.804860873000052,36.80760325699999],[21.789724155000044,36.804754950000145],[21.764170769000145,36.79498932500012],[21.75228925900012,36.804999091000084],[21.72877037900014,36.812648830000015],[21.7225041020001,36.82225169500002],[21.71631920700014,36.82225169500002],[21.70736738400012,36.81801992400007],[21.701914910000085,36.82562897300003],[21.6966251960001,36.83844635600015],[21.688487175000088,36.849554755000085],[21.69239342500009,36.85903554900009],[21.69166100400014,36.867254950000174],[21.68921959700012,36.87702057500003],[21.688487175000088,36.891180731000055],[21.69157962300008,36.90029531500012],[21.704763217000107,36.91714101800012],[21.709483269000117,36.925930080000015],[21.709971550000116,36.94269440300003],[21.702647332000108,36.957261460000055],[21.688161655000073,36.96454498900006],[21.66797936300011,36.95941803600006],[21.677419467000046,36.96328359600015],[21.68043053500014,36.966457424000126],[21.681651238000143,36.973089911],[21.672699415000125,36.97357819200009],[21.66773522200009,36.97093333499999],[21.66179446700005,36.95941803600006],[21.654795769000085,36.99469635600009],[21.629242384000094,37.020900783000044],[21.599294467000107,37.04572174700017],[21.578623894000117,37.07672760600009],[21.569672071000067,37.11619700700008],[21.567556186000076,37.15631745000009],[21.574392123000077,37.19236888200014],[21.592133009000094,37.220160223],[21.654958530000044,37.26072825700011],[21.6823022800001,37.28392161700005],[21.69581139400009,37.31635163000006],[21.69141686300011,37.356634833000115],[21.681976759000094,37.378973700000145],[21.674815300000148,37.39598216400013],[21.607106967000103,37.49949778900016],[21.56902103000004,37.54535553600006],[21.549978061000047,37.56146881700012],[21.463633660000113,37.61025625200013],[21.443044467000078,37.618597723],[21.43181399800008,37.62763092700011],[21.412364129000082,37.648016669000086],[21.40219160200013,37.655422268000095],[21.34327233200008,37.66933828300016],[21.323741082000083,37.66494375200007],[21.31853274800011,37.63788483300014],[21.312266472000147,37.63788483300014],[21.310231967000107,37.64740631700012],[21.31039472700007,37.657416083000115],[21.308278842000078,37.666245835000076],[21.2986759770001,37.672593492000104],[21.311045769000117,37.69310130400005],[21.31470787900008,37.70954010600015],[21.311859571000127,37.72630442900008],[21.295258009000094,37.77167389500009],[21.28492272200009,37.785101630000085],[21.271006707000083,37.793402411000145],[21.227305535000113,37.81191640800016],[21.122080925000144,37.83738841400016],[21.113047722000147,37.84332916900008],[21.10759524800011,37.85545482],[21.111582879000082,37.87042877800003],[21.10621178500014,37.87807851800015],[21.133555535000113,37.94635651200015],[21.140391472000115,37.94635651200015],[21.164398634000065,37.92963288000011],[21.207774285000113,37.94603099200013],[21.251638217000078,37.976223049000126],[21.27751712300008,38.00096263200011],[21.291514519000142,37.997219143000095],[21.30347741000008,38.00332265800007],[21.31462649800011,38.013373114000146],[21.32593834700009,38.021429755000085],[21.32593834700009,38.02887604400014],[21.322276238000114,38.03091054900009],[21.321136915000096,38.031683661],[21.320648634000094,38.03266022300009],[21.31853274800011,38.03510163000011],[21.30884850400014,38.03172435099999],[21.29908287900011,38.026516018],[21.290537957000083,38.02065664300015],[21.284353061000104,38.01528554900001],[21.329356316000087,38.06989166900014],[21.331309441000144,38.076402085000055],[21.367035352000073,38.121079820000105],[21.37142988400006,38.13149648600002],[21.373708530000044,38.14447663],[21.37574303500014,38.20429108300006],[21.374278191000087,38.220648505000085],[21.384938998000024,38.211127020000085],[21.398285352000126,38.192938544000086],[21.408539259000065,38.185939846],[21.407725457000137,38.19794342700011],[21.40528405000012,38.207464911000116],[21.400889519000145,38.21478913000011],[21.40609785200013,38.208400783000016],[21.42066491000014,38.202337958000115],[21.43824303500008,38.20038483300006],[21.45972741000011,38.20018138200011],[21.473968946000127,38.19603099200016],[21.523936394000145,38.166001695000105],[21.60303795700014,38.151800848],[21.622325066000087,38.15477122600011],[21.642344597000147,38.16209544500013],[21.674815300000148,38.17967357000005],[21.70134524800011,38.20526764500012],[21.7415470710001,38.26972077000012],[21.764170769000145,38.29580312700007],[21.8405054050001,38.333644924000126],[21.849457227000126,38.341294664000046],[21.91553795700014,38.330511786000145],[21.937022332000055,38.33063385600012],[21.946543816000144,38.33234284100003],[21.955902540000096,38.336737372000115],[21.965505405000073,38.32990143400009],[21.978037957000083,38.32355377800015],[21.992523634000122,38.31875234600006],[22.007823113000082,38.31688060100011],[22.020355665000068,38.31321849200004],[22.026621941000116,38.30434804900001],[22.030772332000083,38.29295482000004],[22.037852410000113,38.28213125200012],[22.048838738000086,38.27480703300013],[22.07862389400009,38.26341380400007],[22.08936608200011,38.261664130000085],[22.097341342000078,38.26276276200004],[22.108653191000144,38.26740143400014],[22.11361738400009,38.267808335000055],[22.12208092500012,38.26080963700018],[22.128916863000143,38.256293036000116],[22.137217644000117,38.25421784100011],[22.143321160000113,38.249090887000094],[22.154063347000115,38.22345612200003],[22.161387566000144,38.213202216000084],[22.16968834700012,38.209702867000104],[22.206065300000088,38.20018138200011],[22.20915774800008,38.19794342700011],[22.212901238000114,38.19306061400006],[22.21851647200012,38.188177802],[22.226573113000143,38.185939846],[22.25757897200009,38.185939846],[22.300791863000082,38.17747630400008],[22.312836134000094,38.17226797100007],[22.331228061000047,38.17890045800014],[22.346853061000104,38.17080312700001],[22.363454623000077,38.15827057500012],[22.39421634200005,38.14842357],[22.404307488000114,38.14191315300009],[22.414805535000085,38.137884833000115],[22.425547722000115,38.141831773000106],[22.432790561000044,38.14325592699999],[22.51148522200012,38.12929922100001],[22.620616082000055,38.0834821640001],[22.680430535000113,38.06659577000012],[22.68897545700014,38.05927155200011],[22.698496941000144,38.05670807500012],[22.778330925000148,38.00096263200011],[22.796397332000083,37.976792710000105],[22.80225670700011,37.97361888200013],[22.82129967500012,37.96918366100006],[22.852386915000125,37.947495835],[22.867198113000086,37.93952057500003],[22.88266035200013,37.93756745000009],[22.898203972000115,37.93976471600017],[22.922373894000117,37.94635651200015],[22.930023634000065,37.94660065300009],[22.938324415000125,37.94594961100013],[22.94629967500009,37.94623444200009],[22.952972852000126,37.94940827000015],[22.97315514400009,37.97361888200013],[22.975352410000085,37.97898997600002],[22.96550540500004,37.99070872599999],[22.95093834700012,38.00242747600008],[22.939463738000086,38.00775788000014],[22.923838738000086,38.01178620000012],[22.899180535000085,38.02777741100003],[22.880869988000143,38.02887604400014],[22.88412519600007,38.032212632],[22.887461785000113,38.03363678600006],[22.854014519000145,38.03510163000011],[22.87549889400009,38.049302476000136],[22.885427280000073,38.05426666900017],[22.898448113000057,38.05621979400003],[22.91163170700011,38.06012604400003],[22.93376712300008,38.07827383000004],[22.94288170700008,38.0834821640001],[22.969737175000144,38.08197663000006],[23.01905358200014,38.06525299700003],[23.039073113000114,38.06989166900014],[23.068614129000082,38.058905341000106],[23.100922071000095,38.06240469],[23.172862175000144,38.07949453300013],[23.18970787900005,38.094387111000096],[23.20671634200002,38.097805080000015],[23.21664472700013,38.10333893400012],[23.2102970710001,38.11538320500013],[23.194183790000125,38.12693919500008],[23.175547722000147,38.13129303600006],[23.175303582000083,38.136297919000086],[23.175547722000147,38.144964911],[23.188243035000113,38.14606354400003],[23.21070397200009,38.15058014500009],[23.223399285000056,38.151800848],[23.223399285000056,38.15924713700017],[23.213389519000085,38.16026439000013],[23.144053582000108,38.16742584800009],[23.12842858200014,38.17226797100007],[23.14893639400009,38.185939846],[23.122731967000078,38.20807526200018],[23.109629754000082,38.210109768],[23.077484571000124,38.18577708500014],[23.06666100400014,38.18317291900014],[23.03223717500009,38.185939846],[23.03223717500009,38.192775783000044],[23.052012566000116,38.192775783000044],[23.03882897200009,38.20831940300003],[23.025075717000078,38.21662018400009],[23.01042728000004,38.22003815300012],[22.951914910000085,38.225287177],[22.93376712300008,38.22207265800013],[22.922373894000117,38.20701732000013],[22.935883009000094,38.21059804900001],[22.9505314460001,38.20978424700009],[22.96306399800011,38.20404694200011],[22.96949303500011,38.192775783000044],[22.952321811000104,38.19310130400005],[22.9225366550001,38.19745514500015],[22.90870201900009,38.192775783000044],[22.895030144000142,38.24115631700012],[22.88819420700014,38.24115631700012],[22.880869988000143,38.22695547100001],[22.879567905000044,38.231675523000106],[22.87647545700014,38.23631419500005],[22.874685092000078,38.24115631700012],[22.85645592500009,38.23639557500003],[22.819997592000107,38.23297760600012],[22.80567467500012,38.22695547100001],[22.764821811000104,38.24799225500014],[22.773203972000147,38.25828685100007],[22.791270379000082,38.27045319200014],[22.798838738000114,38.28213125200012],[22.78028405000012,38.288560289000074],[22.74236087300008,38.29706452000009],[22.7194116550001,38.31028880400014],[22.70289147200012,38.314032294000135],[22.696462436000104,38.31688060100011],[22.691416863000086,38.32217031500009],[22.67530358200011,38.34357330900003],[22.684418165000093,38.36107005400008],[22.67017662900008,38.38153717700013],[22.646494988000086,38.38996002800009],[22.62680097700013,38.37152741100006],[22.644867384000065,38.36961497600002],[22.646169467000046,38.36180247600011],[22.63672936300014,38.35626862200009],[22.623789910000113,38.3609886740001],[22.612315300000088,38.363836981000034],[22.600922071000127,38.35565827000012],[22.59180748800011,38.34418366100009],[22.587168816000116,38.336737372000115],[22.587168816000116,38.330511786000145],[22.592295769000117,38.32819245000009],[22.59522545700014,38.32623932500003],[22.59913170700014,38.32461172100001],[22.606455925000148,38.32306549700017],[22.606455925000148,38.31688060100011],[22.59913170700014,38.31281159100014],[22.598155144000145,38.31073639500012],[22.59978274800008,38.30817291900003],[22.600271030000073,38.302639065],[22.588633660000053,38.29303620000003],[22.576426629000082,38.29018789300009],[22.562510613000114,38.29352448100012],[22.545664910000113,38.302639065],[22.545258009000094,38.305568752000035],[22.533946160000113,38.32265859600007],[22.531993035000085,38.32306549700017],[22.528981967000078,38.32880280200014],[22.526215040000096,38.33173248900006],[22.52833092500012,38.33392975500006],[22.538828972000086,38.336737372000115],[22.525157097000147,38.358832098],[22.477305535000113,38.40566640800016],[22.468435092000078,38.42112864799999],[22.46306399800011,38.42609284100003],[22.458832227000098,38.427923895],[22.448252800000148,38.430487372000115],[22.401621941000144,38.45343659100011],[22.402842644000145,38.443060614],[22.4073999360001,38.42511627800015],[22.408376498000077,38.41559479400014],[22.381114129000082,38.398830471000124],[22.3737085300001,38.392035223],[22.38103274800011,38.383978583000086],[22.385996941000144,38.38019440300015],[22.389984571000127,38.38051992400007],[22.394786004000107,38.38515859600001],[22.398610873000052,38.37592194200015],[22.39625084700009,38.368353583],[22.389821811000076,38.362250067],[22.381114129000082,38.357855536000116],[22.387950066000116,38.351019598],[22.38233483200011,38.34267812700013],[22.367523634000122,38.34186432500003],[22.34839928500014,38.347357489000146],[22.32252037900014,38.351019598],[22.284922722000147,38.347316799000154],[22.279307488000143,38.35309479400003],[22.266449415000125,38.358547268000066],[22.252614780000044,38.3609886740001],[22.243337436000076,38.357855536000116],[22.237071160000113,38.357855536000116],[22.22486412900014,38.36005280200011],[22.209320509000065,38.35293203300016],[22.195974155000044,38.33954498900005],[22.18921959700009,38.32306549700017],[22.180918816000116,38.32998281500006],[22.175303582000108,38.343329169000086],[22.168793165000125,38.351019598],[22.15951582100007,38.353949286000116],[22.150726759000094,38.35276927300002],[22.14576256600014,38.35398997600011],[22.147715691000116,38.36408112200017],[22.132578972000115,38.37274811400009],[22.100759311000076,38.38031647300012],[22.04908287900014,38.39850495000012],[22.02955162900014,38.399237372000144],[22.011241082000083,38.392035223],[21.987640821000042,38.410589911000116],[21.957855665000125,38.41168854400014],[21.928965691000116,38.402899481000084],[21.8885197270001,38.37978750200013],[21.879242384000122,38.37799713700015],[21.864105665000125,38.37767161700013],[21.856130405000073,38.380926825000174],[21.851247592000107,38.38800690300006],[21.84620201900009,38.395331122000144],[21.8405054050001,38.39887116100011],[21.831228061000047,38.39667389500012],[21.78223717500009,38.36367422100007],[21.774587436000047,38.35260651200004],[21.771657748000052,38.333644924000126],[21.762543165000125,38.328355210000055],[21.743011915000068,38.33783600500006],[21.71631920700014,38.357855536000116],[21.657969597000143,38.357855536000116],[21.641612175000116,38.35443756700003],[21.62712649800008,38.34813060100007],[21.61353600400011,38.3449567730001],[21.59961998800014,38.351019598],[21.53541100400011,38.31395091400016],[21.523936394000145,38.29580312700007],[21.51775149800008,38.29580312700007],[21.508474155000044,38.30223216400018],[21.494395379000107,38.30463288000014],[21.481618686000047,38.305121161000116],[21.476084832000137,38.306057033000016],[21.469248894000117,38.312933661000116],[21.428396030000073,38.330511786000145],[21.445323113000143,38.33405182500003],[21.461192254000082,38.32697174700017],[21.476084832000137,38.31635163000011],[21.489756707000083,38.30947500200001],[21.489756707000083,38.31688060100011],[21.48511803500014,38.321234442],[21.48267662900011,38.32461172100001],[21.48373457100007,38.32904694200009],[21.489756707000083,38.336737372000115],[21.480235222000086,38.342230536000145],[21.476084832000137,38.34357330900003],[21.476084832000137,38.351019598],[21.47999108200014,38.35248444200006],[21.489756707000083,38.357855536000116],[21.46998131600014,38.357855536000116],[21.476084832000137,38.37152741100006],[21.466970248000052,38.36786530200002],[21.45850670700011,38.36635976800015],[21.450450066000055,38.36741771000011],[21.442637566000087,38.37152741100006],[21.4368595710001,38.36766185100005],[21.43262780000009,38.366197007],[21.42212975400011,38.36408112200017],[21.42847741000014,38.38373444200012],[21.416270379000082,38.39411041900003],[21.3958439460001,38.398138739],[21.377452019000145,38.39887116100011],[21.36988366000011,38.40818919500008],[21.360118035000085,38.467718817],[21.339040561000047,38.487534898000106],[21.327484571000127,38.49457428600009],[21.322520379000082,38.49628327000009],[21.318207227000073,38.495306708000115],[21.308604363000082,38.49437083500011],[21.31202233200011,38.48655833500014],[21.353282097000147,38.43292877800015],[21.339040561000047,38.43292877800015],[21.34115644600007,38.42926666900008],[21.342133009000122,38.428534247000144],[21.34343509200005,38.4283714860001],[21.346446160000138,38.42609284100003],[21.34278405000009,38.41575755400011],[21.340342644000145,38.40460846600011],[21.3365991550001,38.39569733300006],[21.329356316000087,38.392035223],[21.319102410000056,38.39020416900003],[21.29786217500009,38.38141510600015],[21.29118899800011,38.37767161700013],[21.293630405000073,38.37368398600016],[21.29468834700012,38.37343984600001],[21.2986759770001,38.37152741100006],[21.29118899800011,38.36408112200017],[21.277679884000065,38.37091705900009],[21.269541863000143,38.36786530200002],[21.266368035000085,38.36139557500009],[21.267588738000086,38.357855536000116],[21.272227410000113,38.35443756700003],[21.264903191000116,38.34690989800005],[21.25025475400011,38.336737372000115],[21.239268425000148,38.331122137000094],[21.232432488000114,38.32941315300008],[21.21265709700009,38.330511786000145],[21.204600457000055,38.334173895],[21.197113477000098,38.34015534100003],[21.189626498000024,38.34137604400003],[21.181325717000046,38.330511786000145],[21.186371290000096,38.32660553600006],[21.192556186000047,38.32412344000012],[21.19996178500014,38.32306549700017],[21.195078972000147,38.32196686400012],[21.182871941000087,38.31915924700017],[21.175059441000087,38.31329987200003],[21.174489780000044,38.302639065],[21.1556095710001,38.30390045800003],[21.14861087300011,38.314032294000135],[21.14584394600007,38.32705312700015],[21.140391472000115,38.336737372000115],[21.128428582000083,38.34015534100003],[21.09791100400014,38.3407250020001],[21.085215691000087,38.34357330900003],[21.096934441000087,38.34788646000011],[21.10572350400014,38.35297272300014],[21.109385613000086,38.36041901200004],[21.10621178500014,38.37152741100006],[21.096446160000085,38.36692942900011],[21.092539910000085,38.36408112200017],[21.101328972000147,38.379706122000144],[21.10621178500014,38.38515859600001],[21.10328209700012,38.378159898000106],[21.11353600400014,38.37392812700001],[21.125010613000086,38.379950262000094],[21.133636915000096,38.38865794499999],[21.140391472000115,38.39887116100011],[21.1224064460001,38.41034577000006],[21.114756707000137,38.40961334800015],[21.10621178500014,38.39887116100011],[21.09473717500009,38.402980861000074],[21.086761915000125,38.41046784100014],[21.08179772200009,38.42072174700017],[21.078949415000125,38.43292877800015],[21.08204186300011,38.43496328300007],[21.08301842500009,38.435044664000074],[21.08366946700005,38.435980536000145],[21.085215691000087,38.44037506700012],[21.09522545700008,38.43024323100015],[21.1067814460001,38.42544179900007],[21.11622155000012,38.42804596600017],[21.119883660000085,38.44037506700012],[21.10621178500014,38.43292877800015],[21.11085045700014,38.44611237200009],[21.10141035200013,38.464748440000086],[21.10621178500014,38.47394440300015],[21.10621178500014,38.48139069200012],[21.09669030000012,38.48143138200011],[21.090179884000037,38.48314036700013],[21.078949415000125,38.487534898000106],[21.088145379000107,38.49201080900017],[21.092621290000068,38.493597723],[21.09937584700012,38.49437083500011],[21.09538821700005,38.496486721000124],[21.089691602000073,38.500433661000116],[21.085215691000087,38.501857815],[21.09473717500009,38.517889716000084],[21.097422722000147,38.52594635600012],[21.09595787900011,38.53192780200014],[21.08668053500014,38.53644440300009],[21.07886803500014,38.532416083000115],[21.071055535000085,38.525824286000145],[21.061778191000116,38.522365627000156],[21.058116082000055,38.51850006700014],[21.047211134000094,38.5113792990001],[21.035817905000044,38.50690338700003],[21.030528191000144,38.51141998900009],[21.028330925000148,38.52057526200014],[21.01905358200011,38.534979559000035],[21.016856316000116,38.54588450700011],[21.02458743600002,38.586737372000144],[21.024668816000116,38.60846588700012],[21.003672722000143,38.62645091400016],[20.988129102000073,38.66400788000008],[20.97901451900006,38.672552802],[20.940114780000073,38.672919012000094],[20.926605665000093,38.67674388200011],[20.914398634000122,38.68622467700011],[20.907399936000047,38.698553778000175],[20.883148634000065,38.779364325000174],[20.87338300900012,38.795314846000096],[20.859873894000145,38.80353424700017],[20.845225457000137,38.79962799700009],[20.830577019000117,38.78778717700011],[20.81853274800011,38.77350495000003],[20.811371290000068,38.76251862200017],[20.804047071000067,38.77338288000005],[20.798106316000144,38.77155182500017],[20.791840040000093,38.76654694200014],[20.784027540000096,38.768133856000176],[20.773285352000073,38.76093170800014],[20.76929772200009,38.765041408000094],[20.767425977000126,38.774115302],[20.763682488000114,38.781724351000136],[20.729340040000068,38.80353424700017],[20.729340040000068,38.80975983300014],[20.736989780000073,38.82257721600017],[20.741465691000144,38.84088776200003],[20.749359571000127,38.85724518400014],[20.767344597000147,38.864325262000115],[20.78882897200009,38.86371491100006],[20.800303582000108,38.86456940300015],[20.80518639400009,38.86774323100012],[20.801931186000047,38.87409088700015],[20.794200066000144,38.87978750200013],[20.785980665000125,38.88385651200009],[20.764496290000125,38.89179108300006],[20.75603274800008,38.90688711100016],[20.75407962300011,38.924953518000095],[20.75749759200005,38.940090236000074],[20.769786004000082,38.958970445000105],[20.775157097000147,38.951605536000116],[20.781586134000065,38.93500397300014],[20.797699415000125,38.926418361000124],[20.817067905000044,38.9213727890001],[20.835948113000082,38.92890045800006],[20.84978274800008,38.94367096600014],[20.859873894000145,38.96051666900014],[20.866709832000137,38.96051666900014],[20.869965040000096,38.95258209800009],[20.871104363000143,38.9472516950001],[20.870127800000148,38.94342682500012],[20.866709832000137,38.940090236000074],[20.868500196000124,38.93838125200007],[20.871592644000117,38.936346747000144],[20.872243686000076,38.93280670800006],[20.866709832000137,38.926418361000124],[20.88697350400008,38.92617422100001],[20.903819207000083,38.92804596600017],[20.91578209700009,38.93610260600009],[20.92066491000008,38.95433177299999],[20.92750084700009,38.95433177299999],[20.93718509200005,38.944037177000055],[20.94727623800011,38.94358958500008],[20.95948326900009,38.94672272300015],[20.975352410000113,38.946844794000114],[20.988780144000117,38.94281647300015],[20.998301629000107,38.93805573100014],[21.00945071700002,38.93423086100013],[21.027354363000086,38.93260325700011],[21.029958530000073,38.926214911],[21.026703321000124,38.91217682500003],[21.02556399800011,38.89801666900011],[21.03394616000014,38.89166901200018],[21.047536655000098,38.88898346600011],[21.06080162900014,38.882228908000066],[21.085215691000087,38.864325262000115],[21.086436394000117,38.87335846600002],[21.088877800000148,38.87848541900002],[21.09310957100007,38.88174062700007],[21.09937584700012,38.88544342700011],[21.09937584700012,38.89166901200018],[21.0916447270001,38.904527085000105],[21.10230553500014,38.910834052000055],[21.120860222000147,38.91022370000008],[21.13697350400011,38.90253327000006],[21.160411004000082,38.880682684000035],[21.1608179050001,38.877997137000065],[21.167002800000144,38.87518952],[21.172618035000056,38.87352122599999],[21.17741946700005,38.876044012000094],[21.181325717000046,38.88544342700011],[21.173106316000144,38.89118073100009],[21.169688347000147,38.89581940300003],[21.166840040000096,38.91087474200005],[21.163340691000116,38.91181061400012],[21.158864780000044,38.910834052000055],[21.154551629000135,38.91339752800015],[21.141856316000087,38.93081289300012],[21.14014733200008,38.94131094],[21.14722741000014,38.95433177299999],[21.141937696000067,38.9623884140001],[21.145030144000145,38.97138092700013],[21.15259850400011,38.976711330000015],[21.1608179050001,38.974188544000086],[21.15992272200009,38.99774811400012],[21.135590040000125,39.02338288],[21.085215691000087,39.062933661000145],[21.078135613000114,39.05654531500012],[21.07439212300011,39.050034898000135],[21.074473504000082,39.04336172100007],[21.078949415000125,39.03628164300004],[21.065277540000096,39.040513414000046],[21.060313347000147,39.03904857],[21.055186394000145,39.03750234600012],[21.037364129000082,39.021958726000136],[21.05836022200012,39.00897858300014],[21.003184441000087,39.0151227890001],[21.003184441000087,39.021958726000136],[20.990896030000016,39.024237372000115],[20.979177280000044,39.030707098],[20.969981316000144,39.03717682500012],[20.965668165000068,39.03937409100011],[20.9537866550001,39.03416575700011],[20.944183790000125,39.03856028900019],[20.937510613000086,39.04767487200017],[20.934825066000087,39.05670807500009],[20.936778191000144,39.05670807500009],[20.939789259000065,39.06102122599999],[20.948496941000116,39.062933661000145],[20.948496941000116,39.069769598000065],[20.94109134200005,39.069769598000065],[20.93140709700009,39.06476471600003],[20.920176629000082,39.064520575000174],[20.909434441000084,39.06867096600003],[20.90137780000012,39.07721588700004],[20.893890821000067,39.07721588700004],[20.888194207000083,39.067206122000144],[20.870371941000116,39.05931224200019],[20.866709832000137,39.053045966000056],[20.870941602000073,39.04311758000013],[20.882009311000104,39.04120514500009],[20.88648522200009,39.036444403000175],[20.844899936000104,39.03693268400014],[20.859873894000145,39.04246653900018],[20.85816491000014,39.049261786000116],[20.857758009000122,39.058905341000084],[20.854991082000083,39.06549713700015],[20.846202019000117,39.062933661000145],[20.84644616000014,39.06679922100015],[20.84546959700009,39.069159247000115],[20.844899936000104,39.07086823100012],[20.846527540000125,39.072088934000035],[20.846202019000117,39.07721588700004],[20.83765709700009,39.07831452000009],[20.832367384000094,39.076890367000104],[20.829112175000144,39.07371653900004],[20.82569420700014,39.069769598000065],[20.83806399800008,39.09174225500008],[20.83415774800008,39.108465887000115],[20.82243899800011,39.114488023000106],[20.811371290000068,39.10455963700012],[20.80518639400009,39.11139557500003],[20.801280144000085,39.104193427],[20.795420769000145,39.098618882],[20.78736412900011,39.094387111000074],[20.777191602000073,39.09088776200018],[20.777191602000073,39.083441473],[20.791840040000093,39.080796617000104],[20.787933790000096,39.07245514500015],[20.787608269000145,39.06102122599999],[20.784027540000096,39.049261786000116],[20.7767033210001,39.041937567],[20.768728061000047,39.037746486000074],[20.7615666020001,39.032416083000115],[20.75749759200005,39.021958726000136],[20.743174675000148,39.02948639500009],[20.74390709700009,39.01927317900005],[20.745371941000144,39.014715887000094],[20.749359571000127,39.01398346600017],[20.75749759200005,39.0151227890001],[20.803884311000104,38.98529694200012],[20.823496941000144,38.97785065300003],[20.82960045700014,38.970770575000174],[20.831797722000147,38.963690497000115],[20.828786655000044,38.96051666900014],[20.820078972000147,38.96222565300015],[20.802093946000095,38.97064850500003],[20.772715691000112,38.97825755400005],[20.766368035000085,38.97760651200009],[20.75749759200005,38.974188544000086],[20.757009311000047,38.969794012000094],[20.746918165000093,38.95795319200015],[20.735118035000113,38.950100002000156],[20.729340040000068,38.95746491100006],[20.726328972000147,38.966782945000105],[20.719086134000122,38.97357819200011],[20.712168816000116,38.97907135600015],[20.708994988000143,38.98444245000012],[20.707855665000125,38.99038320500013],[20.705577019000142,38.99363841400019],[20.70329837300008,38.99579498900009],[20.702159050000148,38.998358466000084],[20.704356316000112,39.00495026200015],[20.70923912900011,39.00897858300014],[20.71387780000012,39.01190827000006],[20.71583092500009,39.0151227890001],[20.7057397800001,39.04857005400008],[20.686534050000148,39.07245514500015],[20.6600041020001,39.0899925800001],[20.62769616000008,39.10455963700012],[20.595876498000052,39.123846747000144],[20.51783287900011,39.20075104400014],[20.488291863000143,39.21662018400018],[20.478851759000122,39.22516510600009],[20.482432488000086,39.23427969],[20.477386915000064,39.24339427299999],[20.47510826900009,39.25507233300008],[20.47641035200007,39.26658763200011],[20.482432488000086,39.27521393400012],[20.482432488000086,39.282660223],[20.470388217000078,39.278469143000066],[20.460215691000116,39.27728913000014],[20.45281009200005,39.28046295800002],[20.448252800000088,39.289496161000116],[20.43344160200013,39.282863674000154],[20.419200066000116,39.28335195500013],[20.40577233200014,39.28880442900008],[20.393565300000148,39.29694245000009],[20.365570509000122,39.287665106000034],[20.324880405000044,39.30377838700012],[20.292816602000073,39.33344147300015],[20.290700717000078,39.364650783000044],[20.2771916020001,39.374701239],[20.26970462300011,39.387355861000074],[20.258962436000104,39.39728424700017],[20.236013217000107,39.399359442],[20.236013217000107,39.406195380000106],[20.242849155000044,39.406195380000106],[20.242849155000044,39.41242096600017],[20.234711134000122,39.420355536000116],[20.223643425000088,39.43585846600014],[20.21558678500014,39.44033437700001],[20.232758009000065,39.44464752800012],[20.25359134200005,39.44415924700003],[20.267344597000147,39.44692617400009],[20.26392662900014,39.46076080900018],[20.254242384000094,39.46881745000012],[20.21558678500014,39.488714911000116],[20.21558678500014,39.49494049700017],[20.232920769000117,39.49420807500006],[20.245371941000144,39.49164459800012],[20.255056186000104,39.49237702000006],[20.26392662900014,39.50177643400009],[20.26392662900014,39.508612372000115],[20.25359134200005,39.51422760600012],[20.236013217000107,39.52081940300017],[20.22201582100007,39.52130768400015],[20.222422722000147,39.508612372000115],[20.213633660000085,39.51496002800003],[20.202159050000148,39.52041250200007],[20.190684441000116,39.52167389500009],[20.201914910000113,39.529730536000116],[20.18311608200014,39.53327057500009],[20.16578209700006,39.53473541900014],[20.149587436000104,39.533636786000116],[20.133555535000113,39.529730536000116],[20.141286655000044,39.53782786700005],[20.145518425000148,39.54706452],[20.14714603000007,39.557806708000115],[20.14665774800011,39.570705471000124],[20.15406334700009,39.563910223],[20.160899285000113,39.564357815],[20.167653842000046,39.56952545800011],[20.174571160000138,39.576849677000105],[20.174978061000047,39.58026764500012],[20.17416425900012,39.59320709800012],[20.174571160000138,39.59796784100003],[20.17652428500008,39.598618882000075],[20.18604576900009,39.60382721600017],[20.188243035000085,39.604193427],[20.181813998000052,39.624457098],[20.165212436000104,39.63361237200017],[20.148203972000143,39.63751862200017],[20.140391472000147,39.642401434000064],[20.137054884000122,39.64655182500009],[20.12134850400014,39.65680573100012],[20.116221550000148,39.65884023600013],[20.104828321000067,39.66107819200012],[20.096527540000096,39.665961005],[20.088877800000148,39.67308177300005],[20.044606967000107,39.680894273000135],[20.02165774800011,39.68768952000006],[20.01002037900011,39.693548895],[20.004405144000117,39.6927757830001],[19.999909785591484,39.69349825129133],[20.01606978400008,39.70140208],[20.049556111000072,39.69272043800013],[20.08934696400007,39.68279856400012],[20.13523563600006,39.66419504800008],[20.163761027000106,39.64429962200008],[20.18412154100011,39.637013245],[20.19993453000012,39.64006215400003],[20.203448527000088,39.64533315100006],[20.203035116000077,39.652619527000056],[20.20417199700009,39.66031931600012],[20.212026815000115,39.667037252000156],[20.220088338000096,39.66915598600003],[20.228563273000105,39.66915598600003],[20.237244914000144,39.667037252000156],[20.24602990700006,39.66290313700013],[20.249027140000067,39.684813944],[20.264116658000148,39.69607940700014],[20.282720174000104,39.70439931200009],[20.296466105000064,39.71737009700002],[20.299463339000056,39.72822214800008],[20.296466105000064,39.73349314400012],[20.2910917560001,39.73793731700012],[20.287267700000143,39.7466706340001],[20.285510701000078,39.74966786800011],[20.27817264800009,39.75674753800003],[20.275692179000117,39.76005483000013],[20.276829061000115,39.763155416000174],[20.283133586000133,39.775144348000126],[20.284683878000067,39.78031199200005],[20.281376587000064,39.788166809000145],[20.27548547400005,39.79240427700002],[20.273005005000073,39.79648671500003],[20.2800329990001,39.80397979700016],[20.288404581000066,39.806615296000174],[20.298326457000144,39.80542673700016],[20.29957652900012,39.80505640700015],[20.33687707600012,39.79400624600005],[20.35455041500012,39.785789693000126],[20.371603637000074,39.7842910770001],[20.388966919000097,39.79814036100008],[20.397028442000078,39.818087463],[20.392997680000093,39.83545074500002],[20.346902303000064,39.8942585250001],[20.323131144000087,39.91239695200012],[20.317963501000094,39.918391419000145],[20.302977335000037,39.97911122700005],[20.297913045000143,39.98691436800006],[20.310005330000138,39.98985992500015],[20.35992476400008,39.991048482000096],[20.376461222000074,39.993735657],[20.380698690000145,40.01166737900009],[20.38907027200011,40.02944407200012],[20.40043908700011,40.04525706000011],[20.41377160600012,40.057194316000064],[20.432788533000092,40.06380889900005],[20.4659648030001,40.060811666000134],[20.481674439000074,40.06778798500012],[20.499864543000115,40.071457011000135],[20.552884562000116,40.065410869000104],[20.577792602000102,40.06727122000011],[20.615361181000083,40.08101733900007],[20.640217733000043,40.090112203],[20.647555786000055,40.094039612000174],[20.651793254000097,40.10101593100016],[20.66677941900008,40.1335204060001],[20.66822635900007,40.13806793300013],[20.663472127000148,40.15661977200006],[20.663162068000076,40.161684062000134],[20.659854777000078,40.17274281800014],[20.66037154100013,40.17889231400012],[20.665022420000096,40.18437001600002],[20.6798018800001,40.187832337000074],[20.685279582000103,40.191191305000174],[20.696441691000132,40.21506581700005],[20.696648397000075,40.23558136000004],[20.694581339000106,40.255580139000145],[20.699128866000137,40.278369446000156],[20.70698368400008,40.288084616],[20.717835734000033,40.29392405200018],[20.728791138000105,40.298264873000065],[20.736645955000142,40.303639221000125],[20.739552404000108,40.30916637200012],[20.75504276500004,40.33862416600011],[20.765998168000124,40.3542821250001],[20.770442342000138,40.36255035400005],[20.77385298700005,40.37490102200009],[20.773336223000115,40.38533966100012],[20.768995402000144,40.41257314000002],[20.770649048000077,40.42197825100008],[20.7795373940001,40.429006246000185],[20.80031132000005,40.43277862600011],[20.80919966600007,40.43660268200016],[20.81736454300008,40.44683461500013],[20.82129195100015,40.45639475600002],[20.8266663010001,40.464818014000016],[20.83999882000012,40.471639303000174],[20.8667672120001,40.472052714000185],[20.889608195000108,40.46373280900011],[20.911932413000073,40.45954701800018],[20.93684045400005,40.4725178020001],[20.946452270000066,40.48290476500013],[20.949759562000054,40.48786570200018],[20.95265344200004,40.49365346300006],[20.951929973000063,40.50605580700012],[20.957924439000067,40.514944153000144],[20.968569783000078,40.52057688400007],[20.981488891000083,40.523264058],[20.988310181000116,40.53349599300016],[20.99750858500005,40.53918039900013],[21.00670699000011,40.543211162000105],[21.013528280000088,40.548895570000134],[21.01879927600001,40.558972473],[21.020349568000142,40.56677561400012],[21.020762980000143,40.57509552099999],[21.022519979000037,40.586619365000026],[21.033165324000038,40.62139760400005],[21.036679321000065,40.639742737000134],[21.035335734000114,40.65937978100008],[21.028824503000124,40.67684641600012],[21.018592570000067,40.690902405000045],[20.992030884000144,40.715500387000034],[20.9635054930001,40.73606760700003],[20.959164673000117,40.74356068900014],[20.95720096800008,40.75162221300006],[20.95348026500008,40.7591669720001],[20.943661743000092,40.76526479100014],[20.96092167100008,40.780767721000146],[20.96701949000004,40.80200673400013],[20.965262492000075,40.849394023000016],[21.112126912000065,40.85394154900014],[21.183026977000054,40.870167948000145],[21.209071899,40.86908274400015],[21.245824293000084,40.86322578800003],[21.260955037000112,40.8608145140001],[21.295371541000065,40.86086619100003],[21.329271281000075,40.866292217000094],[21.34487756400011,40.873061829000115],[21.381257772000083,40.900502014],[21.404925577000114,40.90861521400011],[21.429420207000074,40.90897694900009],[21.505730550000067,40.900902822000134],[21.50951867700013,40.900502014],[21.553650350000055,40.87042633100013],[21.581555623000014,40.866292217000094],[21.590340617000095,40.8706847130001],[21.613698364000044,40.888306376000074],[21.62372359200009,40.89440419500012],[21.629511353000055,40.89507598900012],[21.643877400000065,40.89445587200005],[21.648838339000093,40.895799459000116],[21.652662394000032,40.90138051300012],[21.654832805000126,40.914299622000144],[21.656899861000085,40.9182270300001],[21.685115194000048,40.92799387700016],[21.73699833200007,40.91915720600015],[21.757090880000106,40.92250596400011],[21.765523722000097,40.92391143800016],[21.77813277200005,40.93372996000012],[21.781750122000116,40.945098776000016],[21.781853475000048,40.95589915000015],[21.783713826000053,40.9641673790001],[21.79363570200013,40.97357249000005],[21.831256144000065,40.993519592000084],[21.83135949700008,40.9936229450001],[21.83135949700008,40.993674622000114],[21.831462850000037,40.99372629800003],[21.845002075000107,41.012381490000095],[21.8806588140001,41.03842641200008],[21.894301391000084,41.05382598900014],[21.896161743000107,41.06142242500012],[21.896332709000117,41.064704965000104],[21.897195272000086,41.081266175],[21.901226034000075,41.090774638000184],[21.90908085100011,41.097492574000015],[21.9255452350001,41.106753790000155],[21.934712362000084,41.11191029900014],[21.96509810400005,41.124364319000115],[22.029073527,41.13857533800008],[22.033827759000104,41.1412625120001],[22.044059692000072,41.14994415300008],[22.048193807000104,41.15185618200009],[22.055531860000087,41.14989247700005],[22.058632446000047,41.14508656800014],[22.060286092000098,41.140022278000075],[22.062766561000075,41.137180074000106],[22.09594283000007,41.123640849000125],[22.103384237000114,41.12152211500013],[22.1243648680001,41.127206523],[22.160331665000083,41.1519078570001],[22.183172648000095,41.15991770400007],[22.205806926000037,41.16141632100009],[22.213636841000035,41.16068357500002],[22.225133912000075,41.159607646],[22.262961060000066,41.15046091800012],[22.29345015400014,41.14751536100003],[22.302648560000137,41.14549998000017],[22.305232381000053,41.1416242470001],[22.306679321000047,41.12844675800012],[22.308746379000095,41.12498443599999],[22.3150509030001,41.12441599500012],[22.32342248500009,41.12849843400015],[22.342336060000036,41.12896352200006],[22.367657512000108,41.13237416600002],[22.380163208000113,41.13170237300001],[22.389258260000076,41.1283434050001],[22.41044559700012,41.11790476500006],[22.421814413000103,41.11464915000008],[22.451476684000085,41.11366729700001],[22.467496379000124,41.115010885000075],[22.481449015000123,41.11774973600002],[22.500672648000148,41.122142232000115],[22.51658898900007,41.12224558600006],[22.54924849400004,41.11852488200012],[22.57126265500011,41.11950673500009],[22.586634010000097,41.12408454300005],[22.590176229000065,41.12513946600005],[22.607332804000123,41.13599151600009],[22.62448938000008,41.152631328],[22.62676314300012,41.16079620300012],[22.62593632000008,41.169787903000056],[22.62934696500011,41.17707428000013],[22.644539835000046,41.1802265430001],[22.656115356000072,41.178056132],[22.657185370000064,41.17698611900012],[22.661903117000065,41.17226837200003],[22.666347290000147,41.16451690700005],[22.67409875500007,41.15661041300008],[22.691875448000104,41.14456980400011],[22.704897908000135,41.13966054300009],[22.715749959000078,41.14560333300009],[22.72722212700009,41.16580881800017],[22.736730591000082,41.204411113000056],[22.740864705,41.28357940700009],[22.742003480000108,41.28702955600009],[22.751303345000053,41.31520538400015],[22.762293452000048,41.32250021100005],[22.780965616000117,41.33489410400004],[22.796817682000036,41.33703922300005],[22.82602746600014,41.34099192300009],[22.916977986000063,41.335772604000155],[23.115208781000035,41.31267323800007],[23.15717004300012,41.316342265000074],[23.179700968000134,41.32135487900014],[23.19065637200003,41.32605743500012],[23.19954471900013,41.33298207600011],[23.204815714000063,41.34269724500013],[23.206366007000096,41.360939026],[23.209776652000098,41.36858713800008],[23.22424605300006,41.3790257780001],[23.2465702720001,41.389722799000126],[23.269928019000076,41.397267558000166],[23.287704712000078,41.39819773400002],[23.306204875000105,41.388379212000146],[23.315609985000062,41.37685536700003],[23.32604862500011,41.36931060800008],[23.34723596200007,41.37122263600018],[23.36511600700004,41.378560690000185],[23.39550175000008,41.39525217700013],[23.414518677000046,41.399903056000184],[23.513013957000112,41.39773264600011],[23.578953084000116,41.371997783000026],[23.61243941200013,41.371015931000144],[23.624846740000063,41.37709384500015],[23.627735637000086,41.37850901400016],[23.6528503830001,41.39762929300015],[23.672177368000064,41.402951965000014],[23.705353638000076,41.403158671000156],[23.73821984800008,41.3974742640001],[23.754446248000107,41.400678202],[23.77708052600005,41.4290485640001],[23.792066691000116,41.43447458900009],[23.809740031000047,41.43380279500009],[23.83092736800009,41.43561147000018],[23.851597941000108,41.439590556000084],[23.867720988000087,41.445481669000074],[23.894799438000035,41.46434356700008],[23.90286096200012,41.46351674500006],[23.949886515000117,41.43757517500002],[23.964665975000116,41.43835032200003],[23.981305786000064,41.45085601900002],[23.986886841000057,41.453698222000114],[23.992364542000132,41.45462839800014],[23.997118774000057,41.4570055140001],[24.000736125000117,41.46413686100014],[24.022853637000136,41.45307810500013],[24.034739217000066,41.451321106000144],[24.04590132700011,41.45545522100018],[24.05199914600007,41.46299998000005],[24.052515910000093,41.471474915000115],[24.04982873600008,41.493644104000154],[24.047348267000103,41.52573516900016],[24.076597127000127,41.53601877900017],[24.116491333000084,41.53338328000014],[24.146256958000066,41.52676869700015],[24.15400842300008,41.52211781800018],[24.158452596000075,41.51633005800012],[24.162793416000053,41.51204091400014],[24.170234823000072,41.511575826000026],[24.173128703000145,41.51529652900014],[24.177469523000124,41.53100616500011],[24.18160363800007,41.53736236600004],[24.196279744000066,41.54702585900016],[24.197697918000074,41.54771063500006],[24.214366496000082,41.55575917600013],[24.23328007,41.56180531800008],[24.250746704000047,41.56345896400002],[24.26686975100003,41.549764710000105],[24.28640344200005,41.540359599000155],[24.2873336180001,41.53162628200009],[24.28505985500007,41.523151347000166],[24.28681685400005,41.517621969000075],[24.29611861200007,41.51524485300003],[24.303043254000073,41.516950174999984],[24.309554484000046,41.51979237900015],[24.318236124000094,41.52077423100003],[24.345004517000064,41.518397115000184],[24.353892863000084,41.519120586000085],[24.387482544000108,41.526665345000126],[24.40288212100009,41.527853902000125],[24.42396610500012,41.525218405000125],[24.438848917000144,41.52769887300012],[24.459209432000108,41.549506328000135],[24.481326945000088,41.553227031000134],[24.510162395000123,41.56165028900013],[24.530936320000077,41.54754262300009],[24.543338664000146,41.521342672000074],[24.54654260300012,41.493644104000154],[24.549436483000104,41.48542755200013],[24.553570598000135,41.480776673000044],[24.55873824100013,41.47684926400008],[24.5641125890001,41.471061504000104],[24.567729939000085,41.468115947],[24.57723840300008,41.46356842100008],[24.581062459000094,41.460209453000076],[24.58219934100012,41.45524851500012],[24.579718872000058,41.44418975900011],[24.58044234200014,41.44052073200011],[24.59584191900012,41.429772034],[24.60948449700004,41.427239888000095],[24.644314413000103,41.42765330000013],[24.63821659400014,41.417679749000015],[24.661264282000104,41.417679749000015],[24.68090132600014,41.41550933800012],[24.69919478300011,41.40894643200014],[24.71872847500012,41.395717265000044],[24.75262821500013,41.362747701],[24.774435669000127,41.34807159500009],[24.79427941900013,41.34739980100012],[24.802857706000083,41.36192087800007],[24.80017053200004,41.37933583600001],[24.803271118000083,41.39266835500002],[24.842131795000057,41.39473541299999],[24.863009074000104,41.4003164680001],[24.872930949000107,41.401866761000015],[24.88636682200007,41.400626526000096],[24.91695926900007,41.38636383100011],[25.080360148000068,41.33406728200002],[25.09679325400012,41.33670277900002],[25.101857544000097,41.3366511030001],[25.104854777000128,41.33406728200002],[25.11260624200011,41.32414540600011],[25.116533650000093,41.32073476200016],[25.153847445000054,41.307535008],[25.15787479700012,41.3061103320001],[25.177098430000058,41.29386301700008],[25.219679810000116,41.2497313440001],[25.239110148000094,41.240894674000074],[25.26226119000009,41.238104147000044],[25.285722290000077,41.23939605700018],[25.453463989000056,41.28042714400011],[25.479095500000113,41.28378611200004],[25.489482462000126,41.28306264300012],[25.497337280000067,41.28120229100012],[25.50508874500008,41.28058217400014],[25.514907267000126,41.28347605400013],[25.52369226100012,41.29169260700009],[25.530203491000094,41.30275136400009],[25.537954956000107,41.31220815000016],[25.551494182000084,41.31567047100019],[25.639757528000075,41.31107126900006],[25.64957605000012,41.30848744700013],[25.670453328000093,41.299185689000026],[25.679961792000086,41.29717030900015],[25.691227255000058,41.298410543000024],[25.698048543000084,41.301924540000144],[25.70517989100003,41.30729888900011],[25.71747888200008,41.31412017800006],[25.72874434400012,41.317065735000156],[25.763470906000066,41.31902944000002],[25.800781290000117,41.33804636600017],[25.811013224000078,41.3410436],[25.83333744300006,41.334635722000044],[25.862689657000118,41.310089417000185],[25.88201664200008,41.304043274000136],[25.896279338000053,41.30626536100014],[25.921187378000127,41.316032206],[25.935140015000115,41.315928854000056],[25.94857588700006,41.31396515000013],[25.959634643000072,41.31499867800004],[25.982268921000127,41.32326690700016],[26.008933960000064,41.33680613200015],[26.021853068000066,41.341663717000145],[26.107325887000087,41.356598206000015],[26.11466394100009,41.35520294200013],[26.12086511200007,41.35778676400004],[26.132440633000044,41.371532695000084],[26.147840210000112,41.39690582300007],[26.159002319000138,41.42181386300014],[26.164273316000077,41.427860006000074],[26.170577840000078,41.42956532800004],[26.175642130000142,41.43189076700015],[26.177399129000037,41.43995229100007],[26.174298543000102,41.44599843400003],[26.16044926000012,41.45586863199999],[26.156211792000075,41.460416158000115],[26.145876506000064,41.4780378220001],[26.147633504000055,41.484755758000134],[26.15931237800004,41.4937991340001],[26.16292972800011,41.506459860000135],[26.164480021000113,41.517725322],[26.16313643400008,41.52914581300011],[26.1580721440001,41.54232330300008],[26.15249108900008,41.54702585900016],[26.13678145300011,41.54919626900015],[26.13120039800009,41.55265859000009],[26.1294434000001,41.55937652700011],[26.13099369300005,41.575137838],[26.13027022300014,41.582682597000044],[26.12107181800013,41.60821075500009],[26.115284057000054,41.61663401300008],[26.106705770000133,41.62428212500005],[26.09523360200012,41.62839040100006],[26.08117761200009,41.63045745900003],[26.066914917000105,41.635495911000085],[26.059489585000108,41.643776770000116],[26.05502933700009,41.648750916],[26.0502751060001,41.66045562699999],[26.047484578000137,41.67461497000012],[26.04810469500012,41.68908437100004],[26.053685750000113,41.701512553000136],[26.06050704000009,41.70730031400002],[26.0672249750001,41.70885060600013],[26.074046265000046,41.70913482700011],[26.081487671000072,41.71151194300013],[26.10835941500008,41.727893372000025],[26.13512780800005,41.733396912],[26.189904826000145,41.734688823000155],[26.2118156330001,41.75047597300012],[26.2261816810001,41.7496749880001],[26.234449910000137,41.74582509400007],[26.261011597000046,41.7230616260001],[26.273930705000083,41.71489674900006]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Croatia","sov_a3":"HRV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Croatia","adm0_a3":"HRV","geou_dif":0,"geounit":"Croatia","gu_a3":"HRV","su_dif":0,"subunit":"Croatia","su_a3":"HRV","brk_diff":0,"name":"Croatia","name_long":"Croatia","brk_a3":"HRV","brk_name":"Croatia","brk_group":null,"abbrev":"Cro.","postal":"HR","formal_en":"Republic of Croatia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Croatia","name_alt":null,"mapcolor7":5,"mapcolor8":4,"mapcolor9":5,"mapcolor13":1,"pop_est":4489409,"gdp_md_est":82390,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"HR","iso_a2":"HR","iso_a3":"HRV","iso_n3":"191","un_a3":"191","wb_a2":"HR","wb_a3":"HRV","woe_id":23424843,"woe_id_eh":23424843,"woe_note":"Exact WOE match as country","adm0_a3_is":"HRV","adm0_a3_us":"HRV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"HRV.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.933929884000094,42.77094147300012],[16.93637129000012,42.75551992400001],[16.92465254000004,42.74140045800006],[16.905446811000104,42.73175690300009],[16.884938998000052,42.72939687700013],[16.882172071000067,42.73639557500003],[16.874034050000148,42.73761627800003],[16.85816491000014,42.74298737200009],[16.847666863000143,42.733587958000086],[16.834320509000065,42.73094310099999],[16.82081139400009,42.736070054],[16.809825066000116,42.74982330900012],[16.822276238000143,42.75511302299999],[16.82406660200013,42.76406484600004],[16.818858269000117,42.76935455900009],[16.809825066000116,42.76349518400015],[16.80298912900011,42.76349518400015],[16.810231967000018,42.77533600500011],[16.828135613000086,42.780951239000025],[16.85816491000014,42.784002997000115],[16.921071811000076,42.77716705900009],[16.933929884000094,42.77094147300012]]],[[[17.3820093110001,42.797837632000025],[17.371592644000113,42.790838934000035],[17.382660352000045,42.79165273600013],[17.393321160000085,42.79116445500012],[17.403493686000047,42.788763739],[17.412445509000065,42.784002997000115],[17.419932488000114,42.790838934000035],[17.4368595710001,42.782619533000044],[17.486013217000046,42.78217194200012],[17.52369225400011,42.76483795800014],[17.574473504000053,42.75751373900011],[17.59750410200013,42.74982330900012],[17.594411655000044,42.747748114],[17.593516472000147,42.74721914300004],[17.59066816500012,42.74298737200009],[17.64820397200009,42.73851146000014],[17.658946160000113,42.74298737200009],[17.679372592000078,42.72988515800013],[17.730479363000143,42.713446356000034],[17.748871290000096,42.6945661480001],[17.385915561000104,42.77094147300012],[17.373789910000113,42.759995835000055],[17.35377037900014,42.76666901200012],[17.33448326900009,42.78034088700014],[17.323741082000083,42.790838934000035],[17.341563347000147,42.793402411000116],[17.373789910000113,42.802639065],[17.39234459700012,42.801703192],[17.387380405000073,42.80023834800015],[17.3820093110001,42.797837632000025]]],[[[16.768565300000148,42.97223541900014],[16.82406660200013,42.962103583],[16.87867272200009,42.962103583],[16.892588738000054,42.96531810100005],[16.91553795700014,42.97451406500004],[17.032074415000096,42.98261139500015],[17.11109459700009,42.96430084800009],[17.13184655000009,42.969549872000144],[17.14869225400011,42.952582098],[17.164317254000082,42.941473700000145],[17.20020592500009,42.92177969000012],[17.193369988000143,42.914292710000055],[17.174327019000145,42.92202383000007],[17.153086785000085,42.92112864800008],[17.107432488000143,42.914292710000055],[17.015310092000078,42.92861562700013],[16.972911004000082,42.92670319200009],[16.89869225400014,42.905829169000114],[16.8514103520001,42.900702216000084],[16.73975670700014,42.917181708],[16.691416863000114,42.928208726000136],[16.67286217500012,42.92674388200008],[16.672618035000085,42.92177969000012],[16.655446811000047,42.92625560099999],[16.63843834700009,42.934759833000115],[16.706797722000147,42.962103583],[16.706797722000147,42.969549872000144],[16.687754754000082,42.97394440300015],[16.6482853520001,42.97776927300008],[16.63168379000004,42.98261139500015],[16.652679884000094,42.992377020000085],[16.674815300000148,42.992905992000075],[16.69752037900011,42.99017975499999],[16.72046959700009,42.99005768400012],[16.741384311000076,42.980617580000015],[16.768565300000148,42.97223541900014]]],[[[17.05567467500012,43.02895742400001],[17.073252800000148,43.02415599200013],[17.15870201900009,43.03099192900005],[17.240244988000114,43.02277252800015],[17.39047285200013,42.977728583000086],[17.425791863000086,42.960882880000085],[17.45411217500012,42.94228750200007],[17.455739780000044,42.93842194200006],[17.455902540000096,42.93292877800003],[17.45679772200009,42.926988023000106],[17.460215691000116,42.92177969000012],[17.464854363000114,42.920721747000144],[17.47657311300011,42.92243073100015],[17.48145592500009,42.92177969000012],[17.499278191000144,42.91185130400011],[17.50766035200013,42.909084377000156],[17.518890821000127,42.908148505000085],[17.522634311000076,42.91022370000009],[17.522146030000073,42.91962311400012],[17.52613366000014,42.92177969000012],[17.532074415000068,42.92059967699999],[17.54151451900009,42.91547272300009],[17.546560092000107,42.914292710000055],[17.558929884000065,42.91282786699999],[17.56812584700012,42.909084377000156],[17.58375084700012,42.900702216000084],[17.622894727000073,42.891302802000084],[17.64161217500012,42.88446686400006],[17.65267988400006,42.87335846600003],[17.658946160000113,42.87335846600003],[17.6736759770001,42.87506745000003],[17.715993686000104,42.84418366100008],[17.741465691000116,42.839260158000016],[17.710948113000086,42.856634833],[17.701914910000085,42.86847565300015],[17.71363366000014,42.880804755],[17.707367384000094,42.88703034100014],[17.67872155000012,42.879380601000136],[17.653349062064137,42.89092833614079],[17.6659289960001,42.90516001400008],[17.679468221000093,42.91567616800013],[17.701585734000105,42.91950022500008],[17.723599894000074,42.916244609],[17.76545780400005,42.90412648600001],[17.78674849500004,42.90138763500015],[17.794706665000092,42.90459157300002],[17.802664836000076,42.909630026000094],[17.811759887000047,42.909862570000044],[17.823335408000077,42.89836456300013],[17.82622928800006,42.88864939400018],[17.825092408000074,42.86454233900003],[17.82715946400012,42.853121847000054],[17.85847538200005,42.81697418200012],[17.869430786000095,42.8118065390001],[17.904467407000112,42.804546],[17.928858684000147,42.790800069000014],[17.971853475000046,42.754962464000144],[17.995314575000123,42.740441387000104],[18.049368124000097,42.714758200000134],[18.2241378170001,42.62807098500009],[18.25710738100014,42.614893494000015],[18.31157434100004,42.6012250780001],[18.3386527910001,42.602516989000044],[18.349608195000087,42.59628997900013],[18.369782537000077,42.574392828000086],[18.36979059300012,42.57438408400007],[18.370485474000134,42.5736298630001],[18.385264933000144,42.56652435300007],[18.42102502500009,42.56363047300009],[18.43735477700011,42.55921213800017],[18.442005656000074,42.543011577000165],[18.436424602000073,42.510765483000014],[18.437148071000053,42.4934022020001],[18.44427941900011,42.4779251100001],[18.454924764000083,42.4647217820001],[18.46774051900007,42.45337880500004],[18.475491984000087,42.449813131000056],[18.492855265000085,42.442371724000125],[18.497816202000138,42.43115793900007],[18.496429884000094,42.416327216000084],[18.474457227000073,42.44135163],[18.460948113000114,42.447943427000084],[18.42758222700013,42.45526764500009],[18.41309655000009,42.46185944200006],[18.411875847000143,42.476019598000086],[18.2389429050001,42.55906810100005],[18.220550977000126,42.57916901200009],[18.22087649800008,42.588324286],[18.223155144000145,42.60211823100009],[18.223480665000068,42.61469147300009],[18.21753991000014,42.62010325700014],[18.166026238000143,42.62693919500005],[18.1248478520001,42.644598700000145],[18.108653191000144,42.64740631700011],[18.091644727000073,42.64826080900012],[18.0760197270001,42.65131256700003],[18.063975457000083,42.65761953300016],[18.05738366000011,42.667914130000085],[18.077321811000104,42.667914130000085],[18.055918816000144,42.68301015800007],[18.04786217500012,42.690619208000115],[18.043223504000082,42.70205312700007],[18.02833092500012,42.691310940000065],[18.003265821000127,42.70066966400019],[17.961192254000082,42.72939687700013],[17.901621941000144,42.75189850500014],[17.8807072270001,42.76874420800014],[17.892832879000082,42.790838934000035],[17.8650822270001,42.78994375200012],[17.834971550000088,42.807196356000034],[17.806651238000114,42.81191640800013],[17.800059441000144,42.81098053600006],[17.792328321000127,42.80853913000011],[17.78565514400009,42.80516185100011],[17.780121290000068,42.79694245000012],[17.773773634000122,42.79857005400014],[17.767751498000052,42.80231354400017],[17.76539147200009,42.804429429],[17.75879967500009,42.80760325700005],[17.735118035000085,42.82196686400011],[17.720957879000053,42.82623932500003],[17.73959394600004,42.813055731000176],[17.748708530000044,42.80341217700011],[17.76189212300008,42.77871328300012],[17.76189212300008,42.77431875200013],[17.755137566000144,42.77094147300012],[17.748708530000044,42.77204010600017],[17.748708530000044,42.778143622000144],[17.750254754000082,42.78571198100012],[17.748871290000096,42.790838934000035],[17.728770379000135,42.80076732000013],[17.678558790000068,42.816229559000064],[17.6334741550001,42.822943427],[17.580088738000143,42.84125397300006],[17.525238477000073,42.84861888200005],[17.44044030000009,42.87335846600003],[17.44271894600007,42.898627020000085],[17.417246941000144,42.91120026200015],[17.3509220710001,42.92177969000012],[17.2713322270001,42.96336497599999],[17.237478061000047,42.97138092700014],[17.221527540000125,42.97980377800009],[17.21387780000012,42.98261139500015],[17.20191491000008,42.98432038000006],[17.09538821700005,42.98444245000003],[17.062510613000143,42.99005768400012],[17.046153191000116,42.99506256700006],[17.027517123000052,43.0035667990001],[17.017914259000065,43.013820705000015],[17.028168165000093,43.02415599200013],[17.028168165000093,43.03099192900005],[17.018809441000144,43.03408437700012],[17.012950066000116,43.03921133000012],[17.008067254000135,43.045314846000124],[17.00163821700005,43.051499742000104],[17.02312259200005,43.04865143400014],[17.05567467500012,43.02895742400001]]],[[[16.19467207100007,43.07440827],[16.192881707000083,43.07196686400006],[16.21583092500009,43.07916901200009],[16.228200717000107,43.07868073100012],[16.24122155000012,43.07196686400006],[16.245453321000127,43.07636139500015],[16.2498478520001,43.07941315300003],[16.253428582000083,43.077866929],[16.254893425000144,43.06854889500006],[16.25212649800008,43.062404690000065],[16.245453321000127,43.05776601800015],[16.233734571000127,43.051499742000104],[16.221934441000087,43.04026927300002],[16.21029707100007,43.03327057500003],[16.12134850400014,43.01337311400012],[16.087168816000144,43.01146067900008],[16.0631616550001,43.01740143400009],[16.08448326900009,43.02594635600012],[16.087087436000076,43.041408596000124],[16.07911217500012,43.05329010600009],[16.06934655000009,43.051499742000104],[16.0631616550001,43.051499742000104],[16.048838738000114,43.06517161700005],[16.052989129000082,43.06830475500011],[16.057302280000073,43.070217190000065],[16.06226647200012,43.07127513200011],[16.06934655000009,43.07196686400006],[16.092539910000113,43.082749742000075],[16.1302189460001,43.08844635600015],[16.17017662900014,43.08771393400012],[16.199717644000117,43.07941315300003],[16.19467207100007,43.07440827]]],[[[16.56275475400011,43.22898997600011],[16.583262566000144,43.21596914300012],[16.587087436000076,43.216253973000065],[16.596934441000087,43.221747137000094],[16.603770379000107,43.223456122000115],[16.616384311000076,43.2235375020001],[16.64600670700014,43.219916083000115],[16.6595158210001,43.21596914300012],[16.66627037900014,43.21084219000012],[16.6725366550001,43.20302969000012],[16.68067467500012,43.19476959800014],[16.69312584700012,43.18866608300006],[16.693614129000107,43.184027411000116],[16.692230665000125,43.182806708000115],[16.689463738000082,43.182806708000115],[16.686289910000113,43.18183014500012],[16.70582116000008,43.1708031270001],[16.72771243600002,43.164618231000034],[16.751231316000087,43.161932684000035],[16.848155144000145,43.162339585000055],[16.864431186000076,43.16885000200013],[16.878428582000137,43.15884023600016],[16.896739129000107,43.154771226000015],[16.958750847000147,43.152411200000145],[17.01856530000012,43.14085521000011],[17.10987389400009,43.14378489800004],[17.155284050000063,43.140326239000146],[17.193369988000143,43.12726471600016],[16.943247917500084,43.12726471600016],[16.69312584700012,43.12726471600016],[16.670176629000135,43.12547435099999],[16.559825066000087,43.142971096000124],[16.475352410000113,43.16648997599999],[16.4451603520001,43.1708031270001],[16.427256707000137,43.17987702],[16.41602623800014,43.18183014500012],[16.371592644000145,43.195502020000056],[16.375824415000068,43.19993724200005],[16.38038170700011,43.20197174700017],[16.391449415000125,43.202337958],[16.403981967000046,43.19717031500009],[16.415293816000116,43.19847239799999],[16.439789259000065,43.20978424700017],[16.446055535000113,43.202337958],[16.4490666020001,43.20648834800012],[16.4602970710001,43.21596914300012],[16.4602970710001,43.20978424700017],[16.496429884000065,43.21808502800014],[16.527028842000078,43.20429108300014],[16.55494225400011,43.187933661000116],[16.583262566000144,43.18866608300006],[16.555918816000087,43.20978424700017],[16.529307488000143,43.22162506700012],[16.520518425000063,43.22898997600011],[16.53500410200013,43.227728583000115],[16.56275475400011,43.22898997600011]]],[[[16.80681399800011,43.342474677000055],[16.81625410200013,43.34023672100007],[16.824229363000082,43.341009833],[16.83033287900008,43.346380927000055],[16.839366082000083,43.34088776200004],[16.85816491000014,43.32518138200005],[16.86898847700013,43.32257721600017],[16.877696160000113,43.32343170800006],[16.88510175900009,43.321966864],[16.89234459700012,43.31220123900006],[16.87956790500007,43.293931382],[16.872325066000144,43.28799062700007],[16.864431186000076,43.29169342700011],[16.84620201900009,43.27338288000006],[16.81316165500004,43.26776764500015],[16.628265821000127,43.26373932500008],[16.563975457000108,43.27008698100012],[16.500743035000138,43.28424713700003],[16.421885613000086,43.317572333000115],[16.405772332000108,43.33270905200011],[16.413828972000147,43.328843492000104],[16.419444207000055,43.32518138200005],[16.42628014400009,43.32518138200005],[16.426768425000148,43.331488348],[16.429698113000086,43.33246491100009],[16.43433678500011,43.331732489000146],[16.439789259000065,43.33270905200011],[16.434255405000044,43.339911200000145],[16.4349064460001,43.34642161700005],[16.44166100400011,43.351223049000126],[16.453461134000094,43.3531761740001],[16.439707879000082,43.37091705900018],[16.42628014400009,43.394110419000114],[16.44703209700009,43.39484284100014],[16.453461134000094,43.394110419000114],[16.49390709700012,43.382310289000046],[16.68767337300008,43.377020575000145],[16.809825066000116,43.3531761740001],[16.809825066000116,43.346380927000055],[16.796153191000087,43.346380927000055],[16.80681399800011,43.342474677000055]]],[[[16.298187696000127,43.40363190300012],[16.302744988000086,43.38727448100009],[16.32984459700009,43.38971588700004],[16.348643425000148,43.37832265800007],[16.366709832000083,43.361151434000035],[16.391449415000125,43.346380927000055],[16.37598717500012,43.33344147300015],[16.348643425000148,43.33869049700003],[16.281748894000117,43.36937083500014],[16.232269727000073,43.38446686400014],[16.207041863000114,43.38727448100009],[16.206390821000067,43.39179108300006],[16.207774285000138,43.393133856000034],[16.21029707100007,43.39321523600002],[16.213226759000094,43.394110419000114],[16.203379754000082,43.39996979400014],[16.200450066000144,43.40704987200003],[16.205577019000145,43.41290924700014],[16.2200626960001,43.415228583000115],[16.277028842000107,43.411932684000085],[16.298187696000127,43.40363190300012]]],[[[16.33415774800011,43.50153229400014],[16.375254754000082,43.490179755000085],[16.37077884200002,43.484320380000135],[16.3333439460001,43.48139069200003],[16.281993035000085,43.48794179900001],[16.267344597000147,43.486883856000034],[16.258799675000148,43.483547268],[16.246429884000094,43.48143138200002],[16.230642123000052,43.48322174700009],[16.21827233200011,43.48631419499999],[16.21143639400009,43.49005768400009],[16.211761915000125,43.49555084800012],[16.21892337300008,43.49774811400011],[16.223317905000044,43.49738190300012],[16.22999108200011,43.49616120000009],[16.24350019600007,43.49494049700017],[16.252207879000082,43.49994538000011],[16.248057488000114,43.50828685099999],[16.26441491000014,43.51288483300011],[16.31031334700012,43.507757880000106],[16.33415774800011,43.50153229400014]]],[[[15.678884311000045,43.64801666900014],[15.740407748000107,43.62750885600009],[15.681325717000076,43.64032623900012],[15.672048373000022,43.637437242000104],[15.663096550000091,43.645697333],[15.619639519000144,43.66893138200011],[15.603770379000139,43.67470937700007],[15.611338738000084,43.68211497600005],[15.615489129000109,43.67698802300005],[15.619639519000144,43.67544179900001],[15.650157097000088,43.67304108300006],[15.661631707000138,43.665472723],[15.669688347000088,43.65574778900016],[15.678884311000045,43.64801666900014]]],[[[15.367360873000052,43.79010651200015],[15.395681186000076,43.77240631700006],[15.386973504000109,43.776841539000046],[15.327972852000073,43.79633209800012],[15.308929884000063,43.80560944200009],[15.288422071000097,43.825506903000175],[15.26124108200011,43.839789130000085],[15.2478947270001,43.84902578300013],[15.233409050000148,43.86220937700007],[15.227793816000142,43.87445709800014],[15.240733269000145,43.88076406500009],[15.26124108200011,43.86709219000015],[15.266368035000111,43.85700104400008],[15.342458530000103,43.811835028000026],[15.354340040000068,43.800360419000086],[15.367360873000052,43.79010651200015]]],[[[15.442718946000097,43.89907461100013],[15.446055535000111,43.88751862200002],[15.438731316000116,43.89069245000009],[15.431407097000118,43.892767645],[15.423675977000103,43.893988348000114],[15.415049675000091,43.894435940000115],[15.407074415000066,43.896144924000126],[15.403575066000146,43.90021393400009],[15.401540561000045,43.904771226000136],[15.397715691000116,43.908107815000065],[15.372080925000148,43.913885809000035],[15.358653191000146,43.91937897300015],[15.349945509000065,43.929144598],[15.354340040000068,43.93146393400015],[15.356781446000099,43.93537018400015],[15.343516472000147,43.939642645000056],[15.325450066000144,43.948431708000115],[15.309580925000118,43.958441473],[15.302744988000086,43.966376044000164],[15.297129754000084,43.97809479400014],[15.270192905000044,44.00031159100003],[15.26124108200011,44.01105377800003],[15.280284050000091,44.010809637000094],[15.296397332000055,44.005601304],[15.349945509000065,43.976304429],[15.37859134200005,43.971665757000046],[15.384043816000089,43.970160223],[15.3865666020001,43.96442291900003],[15.389414910000141,43.94765859600001],[15.39161217500012,43.94220612200017],[15.397634311000047,43.93720123900012],[15.41114342500012,43.93292877800012],[15.418793165000125,43.929144598],[15.42676842500009,43.92206452000012],[15.435394727000102,43.91128164300012],[15.442718946000097,43.89907461100013]]],[[[15.225759311000102,44.06622955900015],[15.24708092500009,44.04669830900009],[15.25440514400009,44.01788971600014],[15.241872592000078,44.02777741100006],[15.232269727000102,44.041449286],[15.223317905000073,44.050279039000074],[15.21273847700013,44.04523346600003],[15.20655358200014,44.04523346600003],[15.205332879000137,44.04975006700009],[15.203379754000082,44.05247630400005],[15.201426629000139,44.05499909100016],[15.199066602000103,44.05882396],[15.189138217000076,44.04779694200012],[15.169688347000088,44.05866120000003],[15.14877363400012,44.07636139500012],[15.121836785000141,44.09223053600006],[15.087087436000102,44.123724677000055],[15.068695509000065,44.133978583],[15.07081139400006,44.13764069200015],[15.071136915000094,44.138495184000035],[15.07203209700009,44.13882070500007],[15.07553144600007,44.14081452],[15.071462436000104,44.14638906500004],[15.062510613000086,44.16193268400012],[15.225759311000102,44.06622955900015]]],[[[14.83545983200014,44.15102773600013],[14.842784050000148,44.14826080900018],[14.850433790000066,44.152248440000065],[14.857269727000102,44.152044989],[14.863780144000089,44.14813873900003],[14.869151238000143,44.140529690000065],[14.856130405000043,44.136867580000015],[14.835215691000087,44.141669012000094],[14.81983483200014,44.153021552],[14.822438998000052,44.16868724200005],[14.827403191000085,44.15790436400006],[14.83545983200014,44.15102773600013]]],[[[14.985118035000113,44.09096914300012],[14.993825717000078,44.08783600500006],[15.007334832000138,44.09300364800008],[15.002777540000123,44.08315664300015],[15.000498894000145,44.07941315300012],[15.014414910000111,44.07794830900015],[15.022715691000087,44.07221100499999],[15.02670332100007,44.06232330900014],[15.027842644000119,44.048651434000035],[15.031911655000071,44.03636302299999],[15.041351759000092,44.02643463700018],[15.088226759000122,43.9896507830001],[15.09913170700011,43.98509349200005],[15.113780144000117,43.98379140800013],[15.11695397200009,43.978827216000084],[15.144541863000114,43.949652411000145],[15.216807488000086,43.912787177000084],[15.220225457000081,43.901190497000144],[15.195485873000107,43.895209052000055],[15.145518425000091,43.92389557500012],[15.133311394000117,43.92121002800003],[15.13770592500009,43.91787344],[15.140310092000076,43.91303131700012],[15.144541863000114,43.908107815000065],[15.169688347000088,43.894964911],[15.175547722000116,43.89093659100003],[15.1834416020001,43.88694896000005],[15.191091342000048,43.88751862200002],[15.196787957000112,43.88637929900009],[15.199066602000103,43.87763092700011],[15.194509311000047,43.87262604400017],[15.184580925000148,43.87710195500012],[15.175140821000127,43.88426341400016],[15.172373894000145,43.88751862200002],[15.136485222000061,43.90302155200013],[15.12134850400008,43.91258372600011],[15.106618686000077,43.925441799000154],[15.066905144000089,43.96954987200006],[15.042816602000128,43.990423895],[15.003103061000045,44.052313544000086],[14.983083530000075,44.06631094000015],[14.955088738000141,44.075588283000016],[14.87012780000012,44.14081452],[14.867849155000044,44.152044989],[14.862966342000078,44.16103750200013],[14.849619988000143,44.17560455900015],[14.855235222000145,44.17649974200004],[14.859629754000139,44.176011460000055],[14.863291863000084,44.17560455900015],[14.882823113000088,44.15916575700005],[14.939138217000048,44.12714264500006],[14.944183790000068,44.120266018000066],[14.94874108200011,44.11115143400015],[14.954437696000099,44.103216864],[14.96265709700009,44.099839585],[14.976328972000118,44.09666575700011],[14.985118035000113,44.09096914300012]]],[[[14.76596113400012,44.26504140800015],[14.75993899800011,44.259833075000145],[14.748545769000145,44.26166413000014],[14.738129102000073,44.27212148600001],[14.739593946000126,44.280178127000156],[14.749685092000078,44.28021881700015],[14.753184441000089,44.28351471600008],[14.753184441000089,44.29100169500005],[14.759776238000143,44.292059637000094],[14.773448113000084,44.2851423200001],[14.791677280000073,44.27252838700003],[14.789724155000014,44.26691315300003],[14.775401238000141,44.26658763199999],[14.76596113400012,44.26504140800015]]],[[[14.661387566000117,44.308661200000145],[14.657399936000049,44.30524323100014],[14.64079837300008,44.31183502800003],[14.598887566000085,44.339056708000115],[14.59506269600007,44.34711334800006],[14.613454623000107,44.34080638200011],[14.643565300000148,44.325751044000114],[14.661387566000117,44.308661200000145]]],[[[14.811208530000043,44.350043036],[14.801036004000109,44.34308502800009],[14.785166863000086,44.34686920800011],[14.774180535000113,44.35248444200012],[14.756195509000094,44.36399974200005],[14.757823113000114,44.37225983300014],[14.768239780000101,44.384222723000065],[14.763438347000092,44.415350653000175],[14.76710045700014,44.416652736000074],[14.771657748000107,44.417873440000086],[14.782888217000105,44.41893138200005],[14.794769727000045,44.41449616100006],[14.80323326900009,44.40550364800004],[14.805023634000094,44.395738023000106],[14.799652540000123,44.38764069200009],[14.7967228520001,44.38129303600006],[14.797862175000118,44.37767161699998],[14.80567467500012,44.367824611000074],[14.811208530000043,44.350043036]]],[[[14.27116946700002,44.61253489800005],[14.264008009000092,44.611558335000055],[14.25220787900011,44.616848049000126],[14.239756707000081,44.61985911700005],[14.23259524800005,44.62604401200012],[14.233571811000047,44.634833075000174],[14.235606316000144,44.64223867400007],[14.244151238000086,44.66144440300003],[14.265798373000079,44.679510809000035],[14.280446811000074,44.67755768400009],[14.280039910000085,44.66779205900015],[14.274180535000113,44.66168854400014],[14.260915561000104,44.659491278000175],[14.25945071700005,44.65818919499999],[14.257334832000112,44.65672435100011],[14.256846550000148,44.653062242000075],[14.258474155000071,44.647853908000066],[14.256358269000144,44.642401434000035],[14.256683790000068,44.63703034100016],[14.259043816000116,44.63410065300014],[14.265798373000079,44.62539297100007],[14.27116946700002,44.61253489800005]]],[[[14.845225457000083,44.60053131700012],[14.883799675000146,44.579657294000135],[14.880137566000087,44.60919830900012],[14.904063347000145,44.61001211100001],[14.938243035000141,44.59414297100001],[14.966319207000138,44.57343170799999],[14.989105665000068,44.546616929],[15.003916863000143,44.53607819200012],[15.041188998000107,44.527492580000015],[15.051768425000091,44.516180731000034],[15.061696811000077,44.500718492000104],[15.07553144600007,44.48407623900006],[15.055918816000116,44.486232815000065],[15.028168165000123,44.50315989800005],[15.007334832000138,44.50454336100013],[15.011729363000143,44.51487864800005],[15.014170769000087,44.51874420800014],[14.97291100400011,44.5361188820001],[14.952891472000147,44.54148997599999],[14.942067905000071,44.54743073100009],[14.928558790000096,44.552313544000164],[14.91114342500012,44.552313544000164],[14.91114342500012,44.54547760600015],[14.965993686000047,44.52387116100006],[15.048024936000045,44.43943919500002],[15.096690300000091,44.415187893],[15.08082116000014,44.42454661700004],[15.064952019000117,44.437933661000145],[15.051036004000137,44.45526764500012],[15.041514519000145,44.47662995000009],[15.083262566000087,44.461859442],[15.176605665000096,44.39130280200014],[15.199066602000103,44.381048895],[15.213226759000124,44.369208075000145],[15.241384311000102,44.35106028900004],[15.25440514400009,44.34003327],[15.235118035000141,44.336249091000084],[15.211761915000066,44.346136786],[15.187347852000102,44.359808661000116],[15.165049675000148,44.367377020000056],[15.165049675000148,44.36054108300006],[15.182871941000142,44.35785553600009],[15.200450066000059,44.349514065],[15.21583092500012,44.338120835000055],[15.227061394000117,44.32636139500006],[15.20655358200014,44.32636139500006],[15.208262566000142,44.32074616100006],[15.210948113000143,44.31732819200006],[15.215017123000111,44.31492747600011],[15.220225457000081,44.31273021000011],[15.198903842000021,44.31704336100002],[15.154551629000082,44.331000067],[15.130869988000088,44.332586981000034],[15.130869988000088,44.32636139500006],[15.172373894000145,44.30532461100013],[15.172373894000145,44.29913971600016],[15.149261915000125,44.303168036000116],[15.128754102000073,44.31199778900019],[15.111175977000128,44.32461172100007],[15.096690300000091,44.34003327],[15.096690300000091,44.34625885600015],[15.110362175000118,44.34625885600015],[15.110362175000118,44.35370514500012],[15.102305535000085,44.35716380400014],[15.097178582000083,44.361314194999984],[15.089203321000099,44.374212958],[15.09978274800008,44.373602606000034],[15.106944207000112,44.37518952000006],[15.112152540000098,44.37958405200005],[15.117198113000143,44.38719310099999],[15.091644727000128,44.39935944200006],[15.083018425000146,44.401516018000066],[15.073578321000127,44.40045807500003],[15.057790561000076,44.39419179900007],[15.04900149800011,44.39468008000016],[15.038340691000087,44.40326569200006],[15.020762566000146,44.429999091000084],[14.958832227000071,44.46670156500009],[14.949717644000089,44.46808502800015],[14.897471550000091,44.490912177],[14.897471550000091,44.49705638200005],[14.903168165000068,44.498480536000116],[14.912852410000113,44.502752997000144],[14.9186304050001,44.50454336100013],[14.906260613000141,44.52090078300013],[14.877614780000071,44.55133698100009],[14.876963738000114,44.55975983300006],[14.865896030000101,44.56635163000011],[14.761485222000145,44.65863678600006],[14.743662957000081,44.680487372000115],[14.733653191000085,44.703192450000145],[14.738129102000073,44.70311107],[14.741221550000148,44.701605536000116],[14.779958530000075,44.669501044000135],[14.845225457000083,44.60053131700012]]],[[[14.410004102000103,44.600978908000016],[14.44556725400008,44.565985419000114],[14.526621941000117,44.50372955900012],[14.534353061000104,44.48407623900006],[14.511973504000109,44.48224518400009],[14.485036655000044,44.50063711100013],[14.451914910000083,44.53188711100002],[14.438161655000073,44.53864166900005],[14.438161655000073,44.54547760600015],[14.45923912900011,44.54116445500016],[14.466075066000114,44.53864166900005],[14.437998894000117,44.56464264500011],[14.422618035000085,44.5738792990001],[14.404063347000063,44.579657294000135],[14.396983269000115,44.56915924700017],[14.386566602000132,44.565619208],[14.374685092000076,44.567572333000136],[14.363047722000145,44.57343170799999],[14.363047722000145,44.579657294000135],[14.369883660000085,44.579657294000135],[14.369883660000085,44.57982005400011],[14.368662957000055,44.582017320000105],[14.364756707000083,44.58722565300009],[14.382578972000145,44.60325755399999],[14.375987175000148,44.6230329450001],[14.349375847000118,44.65534088700004],[14.344574415000126,44.668524481000176],[14.337087436000076,44.69965241100009],[14.335785352000073,44.7167829450001],[14.355723504000137,44.707098700000145],[14.38111412900008,44.698635158],[14.397471550000091,44.68561432500003],[14.390391472000118,44.662176825000145],[14.395192905000044,44.65338776200018],[14.399587436000104,44.637518622000144],[14.404063347000063,44.61033763200005],[14.410004102000103,44.600978908000016]]],[[[14.75326582100007,44.84585195500013],[14.756114129000109,44.835679429],[14.740489129000109,44.82664622599999],[14.740489129000109,44.82050202],[14.748057488000141,44.81679922100007],[14.78736412900008,44.78925202000014],[14.811534050000063,44.77920156500006],[14.822438998000052,44.77142975500006],[14.851247592000076,44.73729075700008],[14.859060092000078,44.717352606000176],[14.849619988000143,44.703192450000145],[14.821462436000074,44.72064850500011],[14.772959832000112,44.760321356000034],[14.740489129000109,44.77826569200009],[14.740489129000109,44.770493882],[14.74293053500014,44.76577383000007],[14.75407962300008,44.75775788000011],[14.740896030000014,44.76439036700002],[14.72494550900012,44.76764557500006],[14.709971550000091,44.767889716000084],[14.69947350400011,44.765204169000114],[14.65788821700005,44.79877350500014],[14.670420769000115,44.799505927000084],[14.682871941000146,44.79877350500014],[14.694834832000081,44.79645416900017],[14.705739780000073,44.792547919000086],[14.705739780000073,44.79877350500014],[14.702321811000049,44.80215078300016],[14.701426629000139,44.804348049000154],[14.701345248000079,44.80731842700005],[14.69947350400011,44.813055731000034],[14.71583092500012,44.803168036000116],[14.719981316000144,44.79877350500014],[14.726817254000082,44.79877350500014],[14.714121941000114,44.81842682500009],[14.705821160000141,44.82684967700013],[14.692067905000016,44.8334821640001],[14.689789259000065,44.836737372000144],[14.685801629000082,44.84715403900004],[14.706797722000118,44.84495677300005],[14.726817254000082,44.840277411000116],[14.724131707000112,44.844427802000084],[14.719981316000144,44.854641018],[14.739024285000141,44.853420315],[14.75326582100007,44.84585195500013]]],[[[14.471039259000065,44.95392487200003],[14.46257571700005,44.935980536],[14.451914910000083,44.92230866100006],[14.45923912900011,44.91543203300013],[14.44996178500014,44.89801666900017],[14.448496941000087,44.88373444200009],[14.451914910000083,44.850897528000175],[14.464854363000114,44.821437893],[14.466563347000118,44.80483633000013],[14.451914910000083,44.79877350500014],[14.457041863000113,44.787746486000096],[14.469248894000087,44.77309804900006],[14.472911004000139,44.765204169000114],[14.473887566000116,44.754543361000074],[14.467621290000066,44.74213288000006],[14.466075066000114,44.72980377800009],[14.47217858200011,44.70795319200006],[14.485606316000085,44.692084052000105],[14.50131269600007,44.67816803600006],[14.513926629000137,44.662176825000145],[14.508067254000109,44.65330638200002],[14.508555535000085,44.645331122000144],[14.514984571000097,44.642157294000086],[14.52751712300011,44.647894598000065],[14.534353061000104,44.6342634140001],[14.527354363000141,44.62714264500006],[14.520355665000068,44.62152741100005],[14.513356967000076,44.61884186400009],[14.502289259000122,44.620266018000144],[14.47299238400012,44.620266018000144],[14.427907748000054,44.65656159100014],[14.394541863000084,44.707586981000034],[14.397227410000141,44.751613674000154],[14.39275149800008,44.75250885600006],[14.389903191000146,44.7540550800001],[14.387380405000044,44.755804755],[14.383555535000111,44.75775788000011],[14.374522332000112,44.75385163000014],[14.36817467500009,44.76105377800015],[14.36426842500009,44.774400132],[14.363047722000145,44.80654531500012],[14.36158287900011,44.81598541900014],[14.356618686000047,44.819769598000086],[14.346039259000094,44.82050202],[14.329844597000147,44.833929755],[14.314138217000078,44.89378489800005],[14.294200066000087,44.908636786000116],[14.295176629000082,44.913072007],[14.296234571000127,44.91592031500012],[14.301524285000113,44.92230866100006],[14.292491082000083,44.94033437700007],[14.301524285000113,44.943426825000145],[14.32520592500012,44.93650950700005],[14.33228600400008,44.93219635600015],[14.350271030000016,44.91290924700003],[14.359629754000139,44.908636786000116],[14.37712649800011,44.90814850500011],[14.387380405000044,44.90900299700003],[14.393239780000073,44.91478099199999],[14.397227410000141,44.92910390800007],[14.39356530000009,44.93475983300006],[14.389008009000063,44.950344143000066],[14.39031009200005,44.96039459800012],[14.404063347000063,44.94953034100014],[14.411387566000087,44.95636627800015],[14.391449415000094,44.96942780200005],[14.37671959700009,44.98688385600009],[14.346690300000148,45.047552802000055],[14.34083092500009,45.055609442],[14.287445509000063,45.10106028900016],[14.278493686000047,45.11334870000003],[14.277679884000122,45.127997137000065],[14.288584832000083,45.148830471000124],[14.299571160000141,45.162339585],[14.313649936000104,45.17243073100015],[14.331879102000073,45.175848700000174],[14.356211785000141,45.16925690300009],[14.364105665000125,45.1576195330001],[14.360524936000047,45.11762116100005],[14.363047722000145,45.09357330900012],[14.369639519000145,45.07550690300009],[14.387705925000146,45.03904857000013],[14.412282748000079,45.00364817900011],[14.417653842000021,44.99799225500014],[14.430837436000074,44.99030182500012],[14.45386803500014,44.98798248900006],[14.466075066000114,44.983710028000026],[14.473480665000096,44.97142161699999],[14.471039259000065,44.95392487200003]]],[[[14.563324415000125,45.24974192900008],[14.59587649800008,45.23753489800002],[14.585459832000081,45.23786041900002],[14.582204623000052,45.23753489800002],[14.583994988000114,45.230169989],[14.587168816000087,45.22435130400005],[14.59131920700014,45.219875393000095],[14.59587649800008,45.21649811400005],[14.610687696000069,45.19806549700003],[14.623789910000113,45.17548248900006],[14.597422722000118,45.16644928600006],[14.612559441000116,45.15924713700012],[14.643728061000104,45.156805731000176],[14.665293816000114,45.16181061400012],[14.67090905000012,45.14345937700007],[14.658946160000083,45.108343817],[14.665293816000114,45.087347723000065],[14.678070509000063,45.07746002800006],[14.6959741550001,45.073431708000086],[14.740489129000109,45.073065497000144],[14.740000847000116,45.044338283000016],[14.799815300000091,45.00519440300015],[14.814952019000089,44.97748444200009],[14.808767123000111,44.97748444200009],[14.797211134000094,44.97134023600002],[14.784678582000081,44.969305731000176],[14.772227410000083,44.97134023600002],[14.760915561000076,44.97748444200009],[14.747243686000049,44.97003815300009],[14.747243686000049,44.96381256700014],[14.76075280000012,44.955145575000145],[14.75684655000012,44.948716539000046],[14.742035352000073,44.94472890800016],[14.723399285000083,44.94334544499999],[14.706390821000099,44.946722723],[14.65788821700005,44.97003815300009],[14.628916863000143,44.97817617400004],[14.624522332000138,44.985500393000116],[14.623789910000113,45.00141022300015],[14.626312696000126,45.03725820500013],[14.62086022200009,45.04559967700011],[14.603282097000145,45.03896719000015],[14.603282097000145,45.03217194200012],[14.61695397200009,45.02464427300008],[14.590668165000096,45.02326080900009],[14.510508660000141,45.03217194200012],[14.485362175000148,45.038031317000055],[14.460134311000104,45.052394924000126],[14.438731316000142,45.07050202000006],[14.425059441000116,45.087347723000065],[14.43311608200014,45.0958519550001],[14.44157962300008,45.09979889500006],[14.451182488000057,45.101019598],[14.462657097000118,45.101019598],[14.46648196700002,45.10529205900009],[14.465830925000091,45.11469147300012],[14.46705162900008,45.12409088700014],[14.476328972000147,45.128363348000065],[14.514008009000124,45.129055080000015],[14.530121290000094,45.134833075000145],[14.521250847000145,45.148830471000124],[14.534190300000148,45.16217682500003],[14.539561394000115,45.170396226000136],[14.541758660000111,45.17890045800006],[14.539398634000067,45.18683502800003],[14.535899285000141,45.19415924700003],[14.53687584700012,45.20172760600009],[14.548024936000045,45.21027252800012],[14.549815300000148,45.22142161700013],[14.548838738000056,45.230169989],[14.543793165000125,45.235744533000016],[14.534353061000104,45.23753489800002],[14.548838738000056,45.24872467700011],[14.563324415000125,45.24974192900008]]],[[[16.36947066200014,46.54057118800013],[16.382183065000106,46.539382630000105],[16.394895467000083,46.54010610000002],[16.406264282000052,46.539485982000045],[16.415152628000072,46.53555857400009],[16.431999145000134,46.52320790600011],[16.44037072700013,46.519022115],[16.449052368000082,46.51835032200002],[16.470756469000094,46.520262350000124],[16.481298462000037,46.519022115],[16.491116984000115,46.51514638300012],[16.515301554000075,46.50171051000008],[16.521089315000065,46.49853241000004],[16.564290812000078,46.47992889400016],[16.577623332000115,46.470652975000135],[16.583721151000077,46.470652975000135],[16.58806197100006,46.47956715900007],[16.59426314300012,46.482977804000186],[16.602117960000072,46.482047628000046],[16.611109660000125,46.47806854200014],[16.637671346000047,46.47447703100009],[16.659272095000087,46.464193421000076],[16.677462199000047,46.44869049099999],[16.69358524600011,46.429621888],[16.712395467000135,46.41267201800009],[16.742884562000114,46.39962371800014],[16.755080200000123,46.381872864000016],[16.76190148900008,46.381872864000016],[16.769342895000108,46.39610972100009],[16.776474243000052,46.392879944000114],[16.80344934100009,46.38869415300017],[16.807893514000085,46.387350566000016],[16.812337687000078,46.38502512700008],[16.816575154000134,46.38197621700006],[16.820915975000105,46.378100485000104],[16.82753055800012,46.374018046000074],[16.830217732000047,46.377351176],[16.832388143000028,46.38192454100012],[16.837659139000067,46.381872864000016],[16.850474894000058,46.37306203200002],[16.859410685000082,46.36475790900012],[16.865461060000115,46.359135234000135],[16.875072876000047,46.34285715800003],[16.871765584000027,46.32719919900016],[16.879311877000134,46.31206196100011],[16.889232218000075,46.292162578000145],[16.89605350700012,46.28627146400005],[16.903288208000106,46.28193064400007],[16.940701945000058,46.25149322599999],[16.965299926000057,46.2194538370001],[16.974808390000135,46.21056549100008],[17.028035116000094,46.18048980800002],[17.036303344000146,46.17299672500015],[17.0412642820001,46.16219635100013],[17.052943156000055,46.15346303300005],[17.101208943000074,46.12819325800008],[17.116195109000042,46.12312896700003],[17.19732710800008,46.12116526300018],[17.20859257000006,46.11656606000004],[17.248590128000018,46.08023752900006],[17.25406783000011,46.07083241800002],[17.266573527000105,46.03879303000009],[17.268950643000068,46.02871612600016],[17.27587528500004,46.01202463800003],[17.29148156700009,46.007942200000016],[17.3078113200001,46.00639190700009],[17.316803019000048,45.99765859000003],[17.309361613000135,45.996625061000046],[17.29695927000006,45.99264597600016],[17.29013798000011,45.991457418000046],[17.29013798000011,45.984636129000094],[17.304814087000093,45.98101877800009],[17.306613213000105,45.9799140520001],[17.316596314000094,45.97378407800012],[17.32713830600008,45.972027080000075],[17.337887003000077,45.984636129000094],[17.34367476400007,45.96753123000003],[17.34212447100012,45.95864288300011],[17.345328410000093,45.955697327000124],[17.365275512000036,45.956730855],[17.389150024000116,45.96308705700012],[17.399692017000092,45.95993479400009],[17.406203247000064,45.943656718000156],[17.411577596000114,45.946602275000046],[17.415401652000128,45.9497028600001],[17.4181921790001,45.953010152],[17.42666711400011,45.956730855],[17.51193322800009,45.95394032800006],[17.55430790200009,45.94779083200008],[17.5911015210001,45.93621531200013],[17.638437134000124,45.90133372000015],[17.64577518700014,45.891825256000075],[17.646912069000052,45.88371205700015],[17.652079712000045,45.86882924400011],[17.653216593000053,45.8573570760001],[17.654669375000108,45.85211344100013],[17.65652388500007,45.845419820000146],[17.664688761000093,45.84164744100003],[17.687323038000045,45.840613913000155],[17.80917606600013,45.81441396100006],[17.83821822100012,45.79963450100002],[17.85795861800008,45.77586334200008],[17.85806197100004,45.771729228000034],[17.870050903000077,45.77348622600012],[17.875735311000113,45.78066925100008],[17.880489542000102,45.788524068000115],[17.889791300000127,45.792141418000185],[17.906234389000133,45.792141418000185],[17.9753674720001,45.792141418000185],[18.08047733500007,45.771729228000034],[18.092052856000095,45.771729228000034],[18.10290490700004,45.77462310800003],[18.12016483500014,45.783408102000024],[18.128949829000106,45.78537180600013],[18.211218709000065,45.78537180600013],[18.229822225000134,45.78123769200012],[18.260518026000085,45.76511464400015],[18.283255655000062,45.76490793900008],[18.30051558400004,45.75183380200003],[18.317672160000082,45.747286275000086],[18.3349320880001,45.75198883100008],[18.351158488000095,45.758396709000024],[18.367178182000146,45.75819000300005],[18.383817993000065,45.74320383700008],[18.38412805200005,45.74310048400015],[18.390742635000066,45.74180857400001],[18.39756392400011,45.741343486000076],[18.40438521300007,45.74180857400001],[18.41172326700007,45.74320383700008],[18.430740194000123,45.75364247700013],[18.46546675600007,45.78371816000002],[18.481796509000105,45.791417949],[18.504224081000075,45.78402821900009],[18.530269002000068,45.790849508000136],[18.57347049900011,45.81668772400015],[18.58545943200005,45.826919658000136],[18.60737023900012,45.85668528200004],[18.62214969900012,45.8684158330001],[18.62359663900011,45.86867421500007],[18.626283813000043,45.87482371100005],[18.629281046000074,45.886864319000104],[18.633001750000087,45.89192861000002],[18.655636027000128,45.90758656800015],[18.6743428960001,45.91037709600003],[18.723848918000073,45.89843984000008],[18.763329712000086,45.88397043900012],[18.775525350000095,45.88283355700003],[18.785963989000038,45.88691599600004],[18.790408162000062,45.89389231400004],[18.794852336000133,45.90303904200012],[18.804877563000076,45.913632711],[18.817796672000096,45.90546783500018],[18.82245067200006,45.905581904000094],[18.828338664000057,45.905726217000144],[18.84539188700009,45.91394277000007],[18.86544234200005,45.918076884000115],[18.876604452000066,45.922417705],[18.88652632700007,45.930427552000154],[18.90130578600008,45.93120269800006],[18.906990194000112,45.91569976800015],[18.889833619000058,45.907896627000056],[18.881978800000127,45.902625631000106],[18.87288374800005,45.89523590100002],[18.893450969000128,45.88386708600002],[18.903992960000092,45.87570221],[18.906990194000112,45.867950745000186],[18.899755493000068,45.861387838],[18.887146443000116,45.85947581000009],[18.855313761000076,45.8573570760001],[18.85241988100009,45.830071920000094],[18.850352824000137,45.82423248300002],[18.84673547400004,45.81999501600013],[18.84497847500006,45.815705872000095],[18.84869917800009,45.80955637600011],[18.863995402000054,45.79854929700004],[18.871126750000087,45.78997100900001],[18.90016890400008,45.76490793900008],[18.90481978400004,45.74976674400007],[18.90895389800005,45.719432679000036],[18.917325480000045,45.70656524700003],[18.931071411000058,45.69891713500006],[18.948124634000095,45.69204417000018],[18.962697388000066,45.683052470000135],[18.968485148000127,45.66873809800016],[18.962904093000105,45.660108134000104],[18.935412231000043,45.63339141900015],[18.924456828000075,45.62770701100011],[18.91236454200009,45.61923207600002],[18.908230428000138,45.60042185499999],[18.906990194000112,45.58166331000011],[18.90357954900008,45.57308502200006],[18.912054484000095,45.568227438000136],[18.932001586000126,45.54554148400008],[18.94171675700005,45.538926899999986],[18.960216919000086,45.53913360700012],[18.973136027000095,45.54626495399999],[18.983161255000113,45.554739888000185],[19.00062788900007,45.561199443000035],[19.00920617700009,45.565488586000114],[19.018094523000116,45.56740061400002],[19.02718957500008,45.56259470700003],[19.033390747000055,45.55463653600004],[19.0364913330001,45.54946889300005],[19.04093550600001,45.54502471900004],[19.050960734000057,45.538926899999986],[19.06780725100012,45.53339752200018],[19.082276652000132,45.53117543600008],[19.09509240700004,45.52605946900009],[19.106254517000053,45.51164174500017],[19.07721236200007,45.49164296500014],[19.01792614700011,45.49780728000009],[19.009619588000106,45.49867095900005],[18.996390422000104,45.47381459600008],[19.0030050040001,45.45536611000007],[19.01225762800007,45.448468396000024],[19.031633748000075,45.43402374300008],[19.03742150900007,45.4222931930001],[19.028636516000063,45.41216461200004],[18.97592655400007,45.39495636000007],[18.988742310000134,45.3792467250001],[19.003625122000074,45.366120911000124],[19.020988403000104,45.35723256500002],[19.040832153000082,45.35402862600013],[19.082069946000104,45.35402862600013],[19.09199182100008,45.34999786400006],[19.09540246600011,45.34048940100017],[19.09622928900012,45.32912058500006],[19.098813110000037,45.31987050400006],[19.12475467900009,45.298114726000065],[19.162065063000114,45.285040588000115],[19.363086385000145,45.24824696900011],[19.378072550000127,45.229591777000124],[19.397296183000037,45.22328725300004],[19.40783817500011,45.20313344400012],[19.40535770700012,45.17967234300006],[19.393929400000104,45.171624240000035],[19.39068160000005,45.16933705700016],[19.304278605000064,45.16654653000001],[19.29942102000004,45.168975322000065],[19.291359497000144,45.17770863900013],[19.28670861800009,45.17951731400005],[19.27947391800012,45.17724355100002],[19.275753215000123,45.172851054000105],[19.2727559810001,45.16835520500011],[19.267795044000138,45.16582305900003],[19.225937133000087,45.16194732700016],[19.204543091000062,45.16287750300002],[19.185319458000038,45.16804514600001],[19.17457076000011,45.17579661100002],[19.155760539000113,45.19496856700011],[19.143874959000073,45.19951609300007],[19.121860799000103,45.19579539000016],[19.128785441000076,45.18106760700005],[19.14170454900008,45.16215403200012],[19.137673787000097,45.14603098600004],[19.116073039000124,45.14287872400008],[19.060055786000106,45.146857809000046],[19.044862915000095,45.137245993000064],[19.04620650200013,45.12835764600014],[19.054164673000116,45.12060618100012],[19.06408654800009,45.11357818600011],[19.071527954000118,45.107066956000054],[19.079176066000116,45.094612936000075],[19.082276652000132,45.08494944300004],[19.085997355000075,45.06091990200009],[19.094265584000112,45.03141265900008],[19.09540246600011,45.02092234300012],[19.093232055000044,45.01151723300008],[19.08847782400005,44.99947662300012],[19.085170533000053,44.9872809860001],[19.087237589000097,44.97710072800014],[19.098089640000126,44.97002105700001],[19.118553507000115,44.97555043600003],[19.12764856000007,44.96841908800017],[19.131679321000064,44.953174540000035],[19.124547973000116,44.945939840000065],[19.113075806000012,44.942425842000105],[19.103567342000133,44.93824005099999],[19.08785770700007,44.919326477000034],[19.078659302000062,44.91085154200012],[19.06667036900009,44.905683899000124],[19.052097615000065,44.90697581000008],[19.03194380700006,44.92263376900003],[19.0184045820001,44.92568267800006],[18.991429484000065,44.91493398000013],[18.994323364000138,44.89483184800018],[19.015820760000082,44.86563466400004],[19.00496870900014,44.863309225000116],[18.97491591404824,44.862757179978516],[18.889626912000097,44.86119049100013],[18.858724406000107,44.868528545000125],[18.842144042000115,44.8762325520001],[18.842129476000082,44.87623932000006],[18.817796672000096,44.887545472],[18.783380167000132,44.91374542300012],[18.772631469000117,44.942477519000036],[18.779866170000076,44.95224436400018],[18.801570271000084,44.963974915000065],[18.80456750500008,44.97384511300005],[18.80301721200007,44.9773074350001],[18.7979529210001,44.98221669500013],[18.795782512000102,44.985058899000094],[18.795162394000045,44.988004456],[18.795162394000045,44.993327129000036],[18.794645630000105,44.99544586200003],[18.7917517490001,45.001543681000086],[18.78896122200007,45.00572947200011],[18.784930461000073,45.00846832300006],[18.778005819000068,45.010328674000064],[18.750100546000084,45.01224070300016],[18.738318319000086,45.015909729000086],[18.726329386000117,45.026141663000075],[18.689019002000094,45.080246888000076],[18.684058065000045,45.084794414],[18.678166951000065,45.08737823500009],[18.671345662000107,45.086861470000066],[18.66607466600007,45.08298573900011],[18.663284139000098,45.07714630100013],[18.661217082000036,45.07110015900015],[18.658116495000087,45.06629425000007],[18.648711385000123,45.0626769],[18.640546509000046,45.06536407500012],[18.633621867000045,45.071978658000106],[18.627937459000094,45.08004018200002],[18.62111617000005,45.09311431900006],[18.61667199700014,45.097661845000104],[18.609127238000095,45.10009063700015],[18.60251265400009,45.09926381500013],[18.588560018000095,45.09321767199999],[18.581842082000065,45.09135732099999],[18.57378055800009,45.09156402600003],[18.557657511000116,45.09440623000002],[18.549595988000107,45.094767965000116],[18.53491988100012,45.090427145000135],[18.534802705000118,45.08841171800016],[18.534403117000092,45.081538799000114],[18.539260702000092,45.06934316000009],[18.541121053000097,45.05528717100016],[18.517039835000077,45.05585561200003],[18.49078820800014,45.06278025300009],[18.481708184000066,45.06692135200007],[18.46608687300011,45.07404571600007],[18.451841622000074,45.08494973600007],[18.45182985200009,45.084958745],[18.42929325400013,45.10220937200005],[18.41203332500004,45.11244130500002],[18.392913045000057,45.118642476],[18.322323039000054,45.12287994400005],[18.307440227000114,45.1275308230001],[18.26196496600008,45.150681865000095],[18.237883748000115,45.15745147700012],[18.213285766000123,45.15378245000012],[18.202330363000073,45.144067281],[18.20005659900005,45.131613262000094],[18.199333130000127,45.119004212],[18.192511841000083,45.10851389600004],[18.17494185400011,45.100762431000035],[18.153651164000053,45.097558493000165],[18.143704328000098,45.09769991600014],[18.143698040000118,45.09770000500004],[18.131843709000094,45.09786855100004],[18.112413371000116,45.10060740199999],[18.090295857000115,45.107997131],[18.035002075000108,45.14334381200011],[18.019085734000072,45.14944163100016],[18.003479451000118,45.14933827800003],[17.988493286000047,45.143808900000025],[17.927721802000065,45.09202911400014],[17.911185343000053,45.081073711],[17.902607056000107,45.0777664190001],[17.87521854600007,45.07399403900014],[17.845659628000135,45.065260723000094],[17.835737752000057,45.064433899000065],[17.815583944000082,45.07016998300013],[17.797497193000055,45.081952210000125],[17.741376587000104,45.133266907000156],[17.71450484200011,45.15202545200016],[17.68473921700013,45.16396270800002],[17.651562948000105,45.16535797100009],[17.629962199000147,45.15734812500001],[17.593065226000107,45.12959788000008],[17.57239465300009,45.12039947600006],[17.56143925000012,45.11936594700008],[17.53952844300008,45.12096791600011],[17.48929895000012,45.116265361000146],[17.481857544000093,45.114405009000116],[17.487025187000114,45.120864564],[17.49622359200009,45.141690165000156],[17.472349080000125,45.132750142000035],[17.460360148000063,45.13125152600012],[17.44775109900013,45.13430043600014],[17.4549857990001,45.14060496000015],[17.45808638500006,45.146134339000135],[17.456949503000118,45.15181874600002],[17.451161743000057,45.158485006000106],[17.443306925000115,45.16205068000009],[17.438759399000105,45.15812327100012],[17.4361755780001,45.15192209900012],[17.434108520000024,45.14856313100002],[17.400828898000096,45.141018372000175],[17.382432088000087,45.13962310900008],[17.368582804000113,45.14510081000016],[17.359384399000135,45.150681865000095],[17.326518188000108,45.16592641200005],[17.3078113200001,45.17140411500012],[17.268950643000068,45.189542542000154],[17.24972701000013,45.159880269],[17.245489543000076,45.155384420000175],[17.197843872000135,45.1529556280001],[17.18709517400012,45.14856313100002],[17.124628433000083,45.169057755000054],[17.09841841600013,45.17765696200002],[17.055733683000113,45.20044626900004],[17.036303344000146,45.23047027600008],[17.0302055250001,45.226956279000106],[17.014392537000074,45.21977325500007],[17.008294718000116,45.21615590500009],[17.012532186000072,45.22447581000013],[17.013565715000055,45.230573629],[17.012015421000058,45.23646474200011],[17.008294718000116,45.244164531000095],[16.99868290200004,45.23140045200013],[16.988140909000066,45.23651641900004],[16.975945271000057,45.24716176400001],[16.961165812000047,45.25093414300012],[16.965299926000057,45.24421620700012],[16.96798710100009,45.237291566000025],[16.947316529000148,45.235689596],[16.941528768000097,45.241218974],[16.94214888500005,45.24984893900013],[16.940701945000058,45.2577554330001],[16.932640421000087,45.2787877410001],[16.924372193000124,45.28452382500016],[16.896983683000087,45.2681423960001],[16.893986450000085,45.26354319200006],[16.885821574000147,45.2552232870001],[16.875382935000115,45.24695505800015],[16.86732141100012,45.2433893850001],[16.861740357000116,45.23222727400015],[16.851921834000052,45.22742136700004],[16.84075972500011,45.22401072200001],[16.830734497000094,45.216982727000115],[16.825050089000058,45.205045472000066],[16.82577356000013,45.19636383100011],[16.8242232660001,45.189077454000035],[16.811717570000038,45.18122263700008],[16.7862927650001,45.17884552100004],[16.587028443000065,45.22085846000006],[16.528944133000095,45.222253724000055],[16.48191857900011,45.19951609300007],[16.449155721000096,45.148098043000104],[16.435513143000094,45.13285349600015],[16.42476444500008,45.12727244100013],[16.398512817000068,45.12143300400005],[16.389211060000036,45.116833801],[16.381769654000095,45.10758372],[16.38197635900005,45.10195098900006],[16.38404341600011,45.095439759],[16.38197635900005,45.08370920800009],[16.37732548000008,45.07559600899999],[16.356964966000078,45.04862091100007],[16.346023380000073,45.02002043500011],[16.346019392000102,45.02001001200016],[16.34063521300004,45.00593617800017],[16.316243937000106,45.00123362300009],[16.279346965000087,45.0071764120001],[16.24120975700012,45.01895863900001],[16.212994426000133,45.03146433500011],[16.121527140000097,45.096163229000084],[16.104060506000053,45.11254465800011],[16.082769816000052,45.15161204100015],[16.067473592000113,45.16959543900005],[16.054967896000107,45.176416728],[16.033057088000135,45.17972402],[16.024375447000097,45.184323222000145],[16.024995565000065,45.188922425],[16.028716268000068,45.19626047800007],[16.029233032000036,45.205045472000066],[16.020448039000115,45.213933818],[16.00845910600006,45.21817128500014],[15.997503703000094,45.21853302100014],[15.974559367000067,45.21538075799999],[15.878854614000147,45.217241109],[15.824801066000077,45.210988261000075],[15.802568519000147,45.19647338200012],[15.792348267000136,45.189800924000124],[15.780979451000062,45.16799347000001],[15.780049276000113,45.16029368100011],[15.78376997900011,45.100917460000076],[15.779429158000143,45.08536285500004],[15.755968059000082,45.042213033000124],[15.755554647000054,45.02355784100014],[15.767440226000076,44.99322377600011],[15.763616170000148,44.97555043600003],[15.7388114820001,44.94485463500017],[15.734108149000066,44.934440112000075],[15.730853312000136,44.927232972000084],[15.734263957000081,44.902118226000155],[15.748009888000096,44.882016094],[15.764029581000074,44.864032695000034],[15.773434692000109,44.84501576800015],[15.76868046000004,44.82734242800014],[15.75121382700007,44.82155466700008],[15.730646607000097,44.81700714200004],[15.716073852000136,44.80320953400009],[15.717314087000146,44.78646637000004],[15.728476196000088,44.769103088000016],[15.75369429500006,44.73928578700013],[15.75927535000008,44.73416982000013],[15.782839803000059,44.72259430000018],[15.790487915000142,44.71339589500009],[15.796999146000102,44.70326731400003],[15.805680786000066,44.69665273000013],[15.820356893000053,44.69825470000008],[15.829968709000068,44.70052846300008],[15.847848755000113,44.701510315000135],[15.856427043000052,44.70357737200011],[15.863868449000078,44.70998525000006],[15.86924279800013,44.718563537000094],[15.87627079200007,44.724816386],[15.888776489000064,44.72424794500013],[15.89559777800011,44.718563537000094],[15.89931848100011,44.709210103000046],[15.902005656000142,44.69882314100012],[15.905416301000086,44.69014150000008],[15.913064412000068,44.68450876900012],[15.921539347000133,44.68611073900017],[15.929807577000107,44.68946970700007],[15.937352336000059,44.68895294200014],[15.948101034000075,44.678100891],[15.955645792000041,44.65319285100013],[15.968978312000049,44.63924021400014],[15.979106893000107,44.63438263000002],[15.991612589000084,44.6314370730001],[16.016003865000126,44.628956604000116],[16.028302856000067,44.6247191370001],[16.036157674000094,44.615314026000036],[16.041118612000048,44.60280833000003],[16.044735962000118,44.58937245700018],[16.04318566900011,44.58844228200003],[16.034917440000072,44.58539337200001],[16.030473266000058,44.57221588200004],[16.013936809000143,44.557023011000084],[16.00608199000004,44.54100331600012],[16.026649210000098,44.525190328000136],[16.04731978300012,44.52332997700013],[16.083699991000113,44.53490549700008],[16.104887329000064,44.5323733530001],[16.11646285000012,44.52146962500013],[16.123077433000105,44.50389963800016],[16.12834842900014,44.48431427100006],[16.15294641100013,44.435066630000065],[16.159664347000046,44.41610138000003],[16.159871053000103,44.40070180300001],[16.15387658700007,44.39357045500019],[16.14540165200009,44.38959137000002],[16.138787069000074,44.385405579000164],[16.13827030500005,44.37760243800015],[16.141991008000048,44.38075470000011],[16.153153117000073,44.38044464200011],[16.171343221000114,44.3770856730001],[16.192117146000072,44.367422181000094],[16.202865844000087,44.35977406800011],[16.20564364200007,44.35053070800002],[16.205863078000107,44.349800517000105],[16.203175903000073,44.33305735300014],[16.19966190600013,44.32468577100014],[16.18953332500007,44.30851104800017],[16.186639445000083,44.29760732000001],[16.18756962000012,44.28241445],[16.19707808400011,44.25115020800008],[16.21578495300011,44.20815541600011],[16.232114705000125,44.19099884000006],[16.27552290800014,44.15735748300001],[16.28999230900007,44.13911570200004],[16.312213175000096,44.099996644000115],[16.326889282000078,44.082374980000125],[16.346112915000106,44.068474019000135],[16.35737837700009,44.06216949500005],[16.367196899000135,44.05813873300006],[16.377945597000064,44.057363587000125],[16.403990519000043,44.05875885000002],[16.414015747000064,44.0558132930001],[16.42693485500007,44.04051707000015],[16.43148238100011,44.02578928700013],[16.439647258000036,44.014007060000054],[16.483468872000117,44.00253489200004],[16.501038859000115,43.99271637000008],[16.51654178800004,43.97953888000007],[16.5274466730001,43.96785917400014],[16.5558158770001,43.93747426400016],[16.604805135000106,43.90106821700006],[16.637361288000136,43.86840871200009],[16.678599081000044,43.84068430600014],[16.686143839000096,43.82613739000011],[16.689761190000098,43.809316712000125],[16.698236125000076,43.788077698000066],[16.71260217300008,43.77151540100006],[16.823809855000093,43.70730743400013],[16.98193973800008,43.589691875000156],[17.030515585000074,43.54847991900005],[17.06231406800012,43.52774706500004],[17.08456913200007,43.513236593],[17.142756795000082,43.48933624300009],[17.23949507700004,43.478406677000024],[17.270500936000076,43.463213807],[17.286417277000112,43.43737559000009],[17.2676070550001,43.353323873000036],[17.28993127500007,43.30343027800008],[17.328688599000085,43.26035797100009],[17.36940962800014,43.23255605100003],[17.389666788000056,43.223099264000055],[17.400208781000117,43.21604543100012],[17.406823365000037,43.20542592400007],[17.41519494700009,43.18496205700011],[17.42677046700004,43.165712585000065],[17.442066691000093,43.15243174300014],[17.45091327000011,43.14815159700013],[17.58738081800007,43.082125957000144],[17.59802550000009,43.07290235300012],[17.62841190500012,43.046572571000084],[17.659004354000047,42.993655905000125],[17.659107707000146,42.99363006600011],[17.659211060000104,42.993449198000164],[17.65931441200013,42.99339752200014],[17.662725057000046,42.965698955000114],[17.634509724000083,42.95040273100006],[17.580678729091773,42.94207540221559],[17.58065839900013,42.94208405200011],[17.580088738000143,42.942328192000055],[17.549652540000096,42.955308335000055],[17.534515821000095,42.95062897300014],[17.515635613000086,42.95888906500012],[17.498545769000117,42.97215403900016],[17.488291863000114,42.98261139500015],[17.474619988000086,43.00116608300006],[17.470876498000052,43.01341380400011],[17.4791772800001,43.02240631700012],[17.501963738000143,43.03099192900005],[17.487966342000078,43.034979559000035],[17.471690300000144,43.03046295800006],[17.453379754000082,43.02277252800015],[17.433604363000143,43.01740143400009],[17.440684441000116,43.019964911],[17.460215691000116,43.03099192900005],[17.450450066000144,43.03115469],[17.440684441000116,43.03229401200003],[17.432302280000073,43.03620026200003],[17.42611738400009,43.044623114],[17.433604363000143,43.051499742000104],[17.427419467000107,43.06085846600003],[17.42611738400009,43.06517161700005],[17.404551629000082,43.051499742000104],[17.37086022200009,43.07387929900004],[17.31625410200013,43.12726471600016],[17.172373894000117,43.18183014500012],[17.13803144600007,43.202337958],[17.12134850400011,43.20880768400009],[17.113942905000044,43.213202216000084],[17.107758009000065,43.226385809000035],[17.1002710300001,43.231675523000106],[17.090179884000122,43.23517487200009],[17.080088738000086,43.236517645000085],[17.073496941000087,43.23895905200011],[17.066661004000082,43.24485911700005],[17.056325717000075,43.25698476800015],[17.05445397200012,43.26121653900015],[17.051117384000094,43.274237372000144],[17.049489780000073,43.27802155200008],[17.04509524800008,43.27977122600008],[17.032399936000104,43.282375393000066],[17.028168165000093,43.28424713700003],[16.933929884000094,43.37360260600015],[16.906016472000147,43.38727448100009],[16.895762566000112,43.39459870000009],[16.8885197270001,43.40119049700017],[16.88062584700012,43.40595123900006],[16.75245201900009,43.41950104400003],[16.693858269000145,43.43829987200008],[16.625824415000096,43.44904205900009],[16.53484134200005,43.49713776200015],[16.533457879000082,43.49970123900008],[16.5325626960001,43.504339911],[16.530039910000085,43.50877513200008],[16.524668816000116,43.510809637000094],[16.51856530000012,43.50971100500006],[16.50953209700012,43.505072333000115],[16.50440514400009,43.50397370000009],[16.466563347000147,43.510809637000094],[16.391449415000125,43.510809637000094],[16.391449415000125,43.51764557500003],[16.411387566000116,43.517808335],[16.434255405000044,43.521877346000124],[16.455902540000125,43.52895742400001],[16.473399285000085,43.53815338700018],[16.45679772200012,43.545884507],[16.43384850400014,43.549750067],[16.336761915000096,43.55117422100007],[16.324961785000113,43.54852936400009],[16.30632571700005,43.53994375200007],[16.299327019000145,43.53815338700018],[16.281097852000073,43.53603750200007],[16.2395939460001,43.52655670800006],[16.11768639400009,43.52448151200004],[16.11768639400009,43.51764557500003],[16.150726759000065,43.51137929900007],[16.164886915000068,43.50409577000006],[16.172373894000145,43.489691473],[16.110850457000083,43.489691473],[16.113129102000045,43.47890859600009],[16.098480665000125,43.48004791900002],[16.06617272200012,43.489691473],[16.03956139400009,43.490790106000034],[16.02833092500009,43.49494049700017],[16.014008009000094,43.50397370000009],[16.007823113000114,43.50397370000009],[16.007823113000114,43.49713776200015],[15.995778842000105,43.50336334800012],[15.973480665000066,43.503119208],[15.966319207000112,43.510809637000094],[15.965505405000101,43.50910065300009],[15.965586785000083,43.506170966000084],[15.964366082000081,43.503892320000105],[15.959483269000115,43.50397370000009],[15.961273634000092,43.515041408000044],[15.96656334700006,43.51691315300009],[15.974375847000147,43.51675039300012],[15.983653191000116,43.52106354400003],[15.986989780000044,43.52728913],[15.984222852000073,43.53204987200009],[15.98226972700013,43.53729889500006],[15.987315300000146,43.5449079450001],[15.970957879000137,43.54352448100003],[15.96509850400011,43.541937567],[15.959483269000115,43.53815338700018],[15.956228061000076,43.547919012000115],[15.948090040000041,43.55288320500007],[15.925303582000112,43.55857982000005],[15.941905144000089,43.560003973000114],[15.944183790000068,43.56671784100017],[15.935394727000073,43.57294342700011],[15.917979363000114,43.57290273600013],[15.917979363000114,43.579087632000025],[15.922618035000141,43.58112213700004],[15.9275822270001,43.584295966000084],[15.932139519000144,43.586574611000074],[15.922129754000139,43.59198639500012],[15.917979363000114,43.593329169000114],[15.925303582000112,43.59955475500006],[15.917979363000114,43.60639069200009],[15.925303582000112,43.61383698100015],[15.91895592500009,43.62872955900012],[15.92953535200013,43.63422272300015],[15.966319207000112,43.63373444200006],[15.966319207000112,43.641180731000034],[15.921397332000112,43.64813873900012],[15.904795769000147,43.64801666900014],[15.916758660000083,43.65363190300015],[15.926605665000123,43.653021552],[15.934825066000116,43.649847723000114],[15.942393425000146,43.64801666900014],[15.952972852000102,43.65086497599999],[15.95142662900008,43.657416083000086],[15.942637566000116,43.66429271],[15.932139519000144,43.66844310100011],[15.945974155000044,43.67230866100011],[15.952403191000142,43.67975495000012],[15.950450066000085,43.68854401200015],[15.938975457000138,43.696437893000144],[15.939707879000082,43.677639065],[15.931162957000055,43.676499742000075],[15.906748894000119,43.69147370000008],[15.89291425900012,43.70050690300009],[15.885996941000114,43.70034414300012],[15.876800977000128,43.70164622600005],[15.87077884200005,43.70319245000009],[15.864512566000085,43.70815664300012],[15.850759311000074,43.723944403000175],[15.844004754000137,43.729925848],[15.803477410000111,43.746405341000084],[15.792165561000045,43.75446198100012],[15.771006707000112,43.75995514500015],[15.706309441000085,43.76341380400005],[15.692637566000144,43.77460358300006],[15.68213951900009,43.79718659100003],[15.65845787900008,43.80508047100001],[15.63298587300008,43.810451565000065],[15.61744225400008,43.825506903000175],[15.647308790000068,43.815863348],[15.663096550000091,43.81297435099999],[15.678884311000045,43.811835028000026],[15.678884311000045,43.81928131700011],[15.673024936000102,43.82123444200006],[15.668955925000146,43.82099030200011],[15.66675866000014,43.819973049000154],[15.665782097000088,43.81928131700011],[15.63884524800011,43.83612702000012],[15.574066602000102,43.85952383],[15.546885613000086,43.87657298400016],[15.545176629000084,43.87763092700011],[15.524912957000083,43.90045807500003],[15.512217644000117,43.91107819200006],[15.497731967000078,43.915513414000046],[15.482432488000114,43.917141018000066],[15.473643425000148,43.91913483300003],[15.466075066000087,43.92169830900012],[15.455088738000143,43.92804596600014],[15.449717644000089,43.93439362200017],[15.44564863400012,43.94135163000006],[15.438731316000116,43.949652411000145],[15.384043816000089,43.99738190300009],[15.358083530000101,44.02570221600014],[15.339610222000147,44.039374091000084],[15.319509311000104,44.04523346600003],[15.277598504000109,44.082342841000056],[15.278330925000148,44.0855980490001],[15.233246290000066,44.12091705900012],[15.222015821000069,44.12563711100002],[15.212901238000086,44.13104889500006],[15.20883222700013,44.1381696640001],[15.21273847700013,44.14826080900018],[15.196950717000078,44.15648021],[15.144541863000114,44.19546133000016],[15.160411004000137,44.21320221600014],[15.152191602000132,44.23529694200015],[15.131521030000016,44.254624742000075],[15.110362175000118,44.264349677000105],[15.122243686000076,44.2748070330001],[15.140635613000114,44.282456773000135],[15.157562696000099,44.28034088700012],[15.165049675000148,44.26121653900004],[15.176605665000096,44.24994538000006],[15.197927280000044,44.25731028900004],[15.207774285000085,44.27277252800015],[15.185394727000043,44.285386460000055],[15.193044467000078,44.28685130400011],[15.194183790000125,44.28864166900008],[15.194590691000116,44.28880442900005],[15.199066602000103,44.285386460000055],[15.20655358200014,44.285386460000055],[15.201182488000084,44.29751211100013],[15.198090040000125,44.30166250200007],[15.247569207000055,44.27798086100016],[15.268402540000126,44.258449611000074],[15.279551629000052,44.251776434000035],[15.295258009000122,44.25067780199999],[15.281748894000144,44.285386460000055],[15.290537957000112,44.287420966000084],[15.294932488000113,44.290228583000115],[15.29786217500012,44.29401276200014],[15.302744988000086,44.29913971600016],[15.28931725400011,44.302191473000065],[15.278168165000094,44.30980052300002],[15.268890821000127,44.32046133000013],[15.26124108200011,44.332586981000034],[15.280528191000144,44.3275414080001],[15.308604363000144,44.30927155200011],[15.33692467500009,44.30166250200007],[15.408539259000122,44.27228424700008],[15.424489780000016,44.26797109600006],[15.503591342000105,44.259222723],[15.525238477000102,44.26068756700006],[15.528656446000097,44.271795966000084],[15.514821811000102,44.27850983300014],[15.449229363000084,44.285386460000055],[15.444183790000068,44.28847890800012],[15.414073113000114,44.31655508000013],[15.40601647200009,44.320624091000084],[15.307953321000097,44.35439687700007],[15.29379316500007,44.36481354400017],[15.155039910000083,44.46670156500009],[15.108083530000044,44.51386139500006],[15.080088738000114,44.53607819200012],[15.052012566000114,44.54547760600015],[15.047862175000091,44.55036041900003],[15.015310092000107,44.56907786700002],[15.007334832000138,44.56972890800013],[15.00131269600007,44.57851797100001],[14.901377800000091,44.69017161699999],[14.883799675000146,44.72361888200014],[14.8951929050001,44.736151434000035],[14.893890821000099,44.750962632000025],[14.887461785000113,44.76837799700017],[14.883799675000146,44.78876373900005],[14.881358269000117,44.844061591000134],[14.883799675000146,44.86147695500013],[14.90528405000009,44.92462799700011],[14.914886915000066,44.93992747600008],[14.921641472000092,44.95880768400009],[14.914317254000084,44.98143138200008],[14.856455925000091,45.07648346600017],[14.852793816000116,45.09365469],[14.842539910000085,45.105536200000145],[14.827403191000085,45.113959052],[14.76596113400012,45.137355861000074],[14.65788821700005,45.19660065300017],[14.606700066000087,45.24437083500011],[14.59278405000009,45.24982330900015],[14.576019727000071,45.262274481000176],[14.568614129000082,45.27594635600012],[14.582204623000052,45.28534577000012],[14.570811394000089,45.29364655200011],[14.534353061000104,45.31268952],[14.552256707000083,45.29767487200009],[14.555430535000141,45.295884507],[14.551931186000045,45.288072007000025],[14.543304884000063,45.283840236000074],[14.53305097700013,45.28388092700008],[14.524424675000118,45.288763739000146],[14.510508660000141,45.299750067],[14.402354363000057,45.338609117000104],[14.36361738400012,45.34463125200001],[14.34587649800005,45.35162995000009],[14.329763217000076,45.35398997600005],[14.311534050000091,45.343980210000055],[14.29078209700009,45.32050202],[14.271983269000145,45.29010651200003],[14.258474155000071,45.25576406500009],[14.24773196700005,45.18646881700012],[14.234711134000065,45.15456777600009],[14.234060092000107,45.15306224200005],[14.23259524800005,45.149359442],[14.209239129000137,45.126369533000044],[14.179372592000078,45.13450755400005],[14.195323113000086,45.12059153900016],[14.19312584700009,45.10561758000013],[14.180430535000113,45.09145742400001],[14.164398634000122,45.07990143400018],[14.158213738000057,45.087347723000065],[14.154307488000086,45.07892487200011],[14.154063347000118,45.07196686400012],[14.158213738000057,45.05320872600005],[14.154307488000086,45.05499909100014],[14.147471550000148,45.05727773600002],[14.14389082100007,45.05939362200002],[14.14389082100007,45.05320872600005],[14.159434441000087,45.04035065300003],[14.16618899800011,45.01894765800007],[14.163747592000078,44.995754299000154],[14.151377800000148,44.97748444200009],[14.139903191000114,44.97134023600002],[14.131846550000148,44.97207265800013],[14.124196811000045,44.975409247000144],[14.113291863000143,44.97748444200009],[14.101328972000118,44.974269924000126],[14.089691602000128,44.96649811400012],[14.080414259000065,44.957261460000055],[14.075694207000055,44.94953034100014],[14.068858269000145,44.94953034100014],[14.071625196000099,44.96906159100003],[14.07960045700014,44.97793203300007],[14.083832227000073,44.98639557500003],[14.075694207000055,45.00482819200006],[14.054535352000073,45.01845937700001],[14.051524285000141,45.02602773600013],[14.053070509000094,45.033148505],[14.051931186000076,45.038031317000055],[14.040293816000144,45.03896719000015],[14.044118686000074,45.02716705900017],[14.039886915000066,45.0094261740001],[14.044281446000127,45.00141022300015],[14.054698113000113,44.99652741100009],[14.06413821700005,44.995754299000154],[14.071543816000114,44.99335358300003],[14.075694207000055,44.983710028000026],[14.064789259000094,44.976141669000086],[14.050791863000114,44.95648834800012],[14.044444207000083,44.95140208500011],[14.040293816000144,44.95636627800015],[14.03467858200014,44.95636627800015],[14.038747592000107,44.94940827000009],[14.040212436000076,44.94106679900001],[14.039073113000143,44.93183014500015],[14.03467858200014,44.92230866100006],[14.026621941000114,44.924058335000055],[14.022471550000091,44.92348867400007],[14.022634311000045,44.920599677000055],[14.027842644000145,44.91543203300013],[14.027842644000145,44.908636786000116],[14.022715691000116,44.90827057500009],[14.021494988000113,44.907375393],[14.021739129000139,44.90509674700002],[14.020518425000118,44.90110911700005],[14.010590040000125,44.905259507],[13.988454623000052,44.90078359600012],[13.972666863000114,44.90110911700005],[13.980723504000139,44.89655182500012],[13.98585045700014,44.892075914000046],[13.993011915000094,44.881293036000145],[13.986175977000073,44.881293036000145],[13.986175977000073,44.87506745000009],[13.993011915000094,44.87506745000009],[13.993011915000094,44.867621161],[13.98585045700014,44.864162502],[13.981293165000094,44.859808661000116],[13.972666863000114,44.84715403900004],[13.974619988000141,44.83966705900018],[13.976328972000147,44.837469794000086],[13.976247592000078,44.83490631700008],[13.972666863000114,44.82664622599999],[13.983246290000066,44.8270531270001],[13.989431186000045,44.82510000200013],[13.993988477000073,44.82050202],[14.000010613000084,44.813055731000034],[13.963877800000148,44.81183502800012],[13.94629967500012,44.81378815300015],[13.931651238000086,44.82050202],[13.929698113000141,44.816351630000085],[13.929535352000102,44.81525299700002],[13.924815300000091,44.813055731000034],[13.918711785000085,44.82904694200012],[13.909678582000083,44.8309593770001],[13.899587436000104,44.82904694200012],[13.890147332000112,44.8334821640001],[13.883148634000122,44.82664622599999],[13.893890821000127,44.823391018000116],[13.904307488000114,44.817287502000156],[13.909353061000076,44.80898672100007],[13.904470248000079,44.79877350500014],[13.913422071000127,44.782416083000115],[13.917979363000143,44.77826569200009],[13.903168165000094,44.77240631700015],[13.899424675000148,44.78196849200013],[13.89975019600007,44.79828522300014],[13.896983269000115,44.813055731000034],[13.88965905000012,44.817084052],[13.860036655000073,44.8256696640001],[13.849131707000083,44.82664622599999],[13.851247592000107,44.83002350500003],[13.853851759000094,44.837062893000066],[13.855967644000117,44.840277411000116],[13.852793816000144,44.84076569200012],[13.84555097700013,44.840155341000134],[13.842295769000087,44.840277411000116],[13.849131707000083,44.84715403900004],[13.842295769000087,44.854641018],[13.831390821000099,44.85272858300006],[13.815684441000144,44.856594143000066],[13.799327019000117,44.86456940300012],[13.787119988000143,44.87506745000009],[13.794606967000107,44.881293036000145],[13.80486087300005,44.8705915390001],[13.819590691000116,44.86766185099999],[13.833750847000145,44.873358466000084],[13.842295769000087,44.888128973000065],[13.815277540000125,44.88353099200013],[13.80486087300005,44.8854027360001],[13.794606967000107,44.89496491100009],[13.794606967000107,44.90110911700005],[13.798675977000071,44.90395742400001],[13.803477410000141,44.910630601000044],[13.808116082000083,44.91543203300013],[13.796722852000128,44.92487213700015],[13.774099155000071,44.96381256700014],[13.73275800900012,44.99494049700006],[13.68132571700005,45.046372789000046],[13.673350457000083,45.05109284100014],[13.660817905000071,45.061224677],[13.643809441000114,45.07050202000006],[13.623220248000079,45.073065497000144],[13.627696160000141,45.07941315300009],[13.63306725400011,45.08942291900017],[13.63689212300011,45.09357330900012],[13.612559441000144,45.117865302],[13.638519727000128,45.130031643000066],[13.72624759200005,45.13450755400005],[13.70671634200005,45.14109935100011],[13.683604363000113,45.14337799700009],[13.63689212300011,45.142035223],[13.611989780000073,45.13678620000012],[13.60059655000012,45.13727448100009],[13.595957879000082,45.14541250200001],[13.597911004000139,45.15595123900009],[13.60059655000012,45.164618231000176],[13.599375847000088,45.17129140800013],[13.589121941000059,45.17548248900006],[13.593760613000086,45.182277736000074],[13.594411655000043,45.18732330900012],[13.590586785000113,45.191799221000096],[13.582286004000139,45.19660065300017],[13.582286004000139,45.20282623900012],[13.590505405000044,45.20648834800009],[13.594493035000113,45.21263255400005],[13.594248894000087,45.220770575000174],[13.589121941000059,45.23069896],[13.595713738000143,45.24054596600011],[13.59522545700014,45.25079987200003],[13.588226759000065,45.259588934000085],[13.575450066000114,45.26487864800008],[13.578786655000073,45.270982164000074],[13.58423912900011,45.276068427],[13.59205162900008,45.27912018400017],[13.602712436000019,45.27912018400017],[13.602712436000019,45.28534577000012],[13.592539910000085,45.28880442900014],[13.584646030000101,45.29319896000011],[13.578949415000125,45.29901764500006],[13.575450066000114,45.306463934000064],[13.585703972000145,45.30780670800014],[13.594493035000113,45.311102606000176],[13.609548373000052,45.32013580900018],[13.597911004000139,45.324367580000015],[13.571055535000141,45.32501862200014],[13.561778191000087,45.32636139500015],[13.550629102000071,45.33429596600011],[13.541270379000139,45.34613678600006],[13.540537957000112,45.35675690300012],[13.554942254000082,45.3610700540001],[13.554942254000082,45.36733633000016],[13.543142123000107,45.376166083000115],[13.513356967000107,45.436224677000105],[13.515391472000118,45.438137111000074],[13.518565300000091,45.44033437700007],[13.520762566000085,45.443019924000126],[13.515961134000094,45.44745514500012],[13.515635613000084,45.44814687700015],[13.517832879000082,45.44977448100017],[13.520762566000085,45.457261460000055],[13.504567905000043,45.48387278900019],[13.50147545700014,45.498602606000176],[13.507090691000142,45.51190827],[13.513356967000107,45.51190827],[13.52312259200005,45.50625234600001],[13.568614129000109,45.49079010600009],[13.589528842000078,45.488836981000034],[13.629017781000073,45.45898346000017],[13.659969793000073,45.45997795100011],[13.759294068000145,45.46316925100011],[13.806526327000086,45.44213694299999],[13.819858846000102,45.43262848000002],[13.835568481000081,45.42911448200005],[13.889001912000111,45.42363678000005],[13.899647257000083,45.42921783500016],[13.908432251000079,45.438881327],[13.923005004000032,45.44895823200012],[13.969823852000076,45.46296254500005],[13.982639608000056,45.47531321200001],[13.961452270000079,45.493141581000046],[13.961452270000079,45.50389027900014],[13.964966268000124,45.510969951],[13.971890910000125,45.514225566000064],[13.987476490000118,45.511908790000135],[14.01395552600013,45.50797271700016],[14.028321574000046,45.50265004500012],[14.041550741000064,45.49319325800015],[14.041550741000064,45.493141581000046],[14.066665487000078,45.48027415000014],[14.092917114000102,45.473917948000015],[14.116747016000119,45.472997875000104],[14.117320712000094,45.47297572500004],[14.119685506000081,45.47288442000014],[14.14552372200009,45.47624338800016],[14.193066040000105,45.491901347000024],[14.218697551000075,45.49717234400004],[14.240608358000115,45.493348288],[14.280399211000143,45.48110097300015],[14.326804646000141,45.474899801],[14.372796671000058,45.477845358000096],[14.411243937000108,45.49319325800015],[14.429744100000107,45.50538889600006],[14.468914835000078,45.52559438100015],[14.48214400200007,45.54244089800012],[14.487414999000094,45.556600240000094],[14.4915018290001,45.57916476400013],[14.4922725830001,45.58342030900017],[14.498577108000122,45.596184388000054],[14.507878866000055,45.60584788000006],[14.533096964000093,45.62569163100006],[14.54363895600008,45.636440329],[14.556144654000063,45.6566974900001],[14.563896118000088,45.66269195500002],[14.569094979000084,45.664251613000104],[14.580949341000093,45.66780792200011],[14.59190474400009,45.6633637500001],[14.594075155000068,45.64801584900012],[14.59293827300007,45.629670716000035],[14.593868449000126,45.61618316700016],[14.603066853000117,45.60357411700015],[14.61598596200011,45.59406565400015],[14.65029911300013,45.57484202100015],[14.657327107000071,45.57277496400009],[14.663674874000092,45.57018702800009],[14.664045044000089,45.57003611300006],[14.669832804000064,45.564558411000135],[14.671693156000062,45.55680694600015],[14.6681791580001,45.53913360700012],[14.668489217000088,45.53396596300006],[14.688332967000092,45.5220287070001],[14.781143839000093,45.493348288],[14.781247192000137,45.493348288],[14.781350545000064,45.49319325800015],[14.78145389800008,45.493141581000046],[14.797163533000058,45.46518463200006],[14.838814738000082,45.45898346000017],[14.881602823000092,45.46978383400001],[14.900826456000118,45.493141581000046],[14.90444380700009,45.51443227200003],[14.922633911000048,45.514949036000175],[14.945371541000043,45.50451039700012],[14.962631470000105,45.493141581000046],[14.977340822000086,45.491728455],[14.986299275000135,45.49086781800004],[14.997461385000063,45.48719879200003],[15.007383260000069,45.48084259100001],[15.056165812000131,45.47991241500016],[15.066128234000105,45.47393372300009],[15.139261515000099,45.430044658],[15.184220011000034,45.42560048500009],[15.22584915200008,45.436449693000085],[15.281578410000066,45.45097361199999],[15.314031209000094,45.45050852500016],[15.325193318000117,45.45283396399999],[15.33387496000009,45.45851837200006],[15.351755004000038,45.47614003600005],[15.361366821000045,45.482031149000036],[15.31103397700008,45.50590566000001],[15.29666792800006,45.52295888300013],[15.288606405000081,45.54455963200003],[15.282611938000057,45.57060455300008],[15.282178582000085,45.57149407400005],[15.27672082500007,45.58269683900009],[15.269589477000123,45.59344553700002],[15.268555948000142,45.60166208900013],[15.281061646000124,45.60615793900014],[15.287882934000093,45.61034373000008],[15.291603637000094,45.618250224000136],[15.297391398000059,45.62569163100006],[15.326743612000143,45.632254538000055],[15.339145955000108,45.63690541700011],[15.353098592000094,45.640316060000046],[15.373769165000112,45.6402127080001],[15.368291463000048,45.6490493780001],[15.351961711000088,45.66806630500015],[15.350034463000071,45.669619116000135],[15.33387496000009,45.682639059000124],[15.330774373000054,45.68455108700005],[15.32705367000011,45.68315582300006],[15.314961385000059,45.68088206000006],[15.310413859000109,45.67819488500011],[15.309070272000042,45.67416412400003],[15.304936158000116,45.67214874299999],[15.291913696000078,45.675559388000025],[15.283025350000058,45.680106913000046],[15.277754354000137,45.68501617500009],[15.267832479000049,45.69845204700011],[15.258220663000117,45.705118307000035],[15.250882609000115,45.707650452000124],[15.248918904000105,45.711836243000064],[15.249912989000107,45.71373174300005],[15.255016723000068,45.72346344000012],[15.26349165800005,45.73038808300011],[15.30379927600012,45.746149394],[15.33103128300007,45.75248555400004],[15.429062947000148,45.77529490200011],[15.429754502000065,45.77569135400013],[15.4410518790001,45.78216786800009],[15.439501587000079,45.79167633000016],[15.43557417800011,45.80211497],[15.44032841000009,45.81146840400014],[15.451283813000089,45.81513743100013],[15.462549275000129,45.814207255],[15.473918091000115,45.811571757000145],[15.485390259000042,45.81017649400009],[15.49531213300014,45.812656963000066],[15.513915649000097,45.823405661],[15.523527466000104,45.826816305000094],[15.549748079000068,45.823692780000115],[15.58729618300012,45.819219870000055],[15.626053508000068,45.82020172100003],[15.645587199000088,45.82412913000017],[15.666051066000135,45.83167389000012],[15.676076294000067,45.84169911700015],[15.675456177000084,45.855961813000036],[15.663673950000087,45.8760639450001],[15.659436483000038,45.88882802400015],[15.663363892000092,45.9008169560001],[15.670391887000108,45.912650859000124],[15.675559530000015,45.92515655600012],[15.677109822000148,45.94179636600013],[15.675380807000067,45.97248639400005],[15.67421594300015,45.99316274000002],[15.674319295000087,45.99331777000005],[15.68196740700006,46.01352325500012],[15.693646281000042,46.02577057000015],[15.697987101000107,46.03620920800002],[15.692879847000142,46.04163566600012],[15.683931112000094,46.05114369700006],[15.671735474000087,46.05739654600016],[15.643726847000067,46.06550974600016],[15.631531209000057,46.07057403600014],[15.623604838000063,46.0764152980001],[15.603832641000023,46.09098622700019],[15.589880005000055,46.11351715100001],[15.589983358000069,46.138683574000034],[15.604349406000068,46.16700225800004],[15.622849568000106,46.19170359400005],[15.626571312000094,46.195209748000146],[15.639799438000095,46.20767161],[15.66129683400004,46.215319723000064],[15.67797529200007,46.2144624190001],[15.749766886000089,46.21077219700014],[15.768887166000068,46.219350484000145],[15.789144328000075,46.24306996700001],[15.799526193000133,46.24860696100002],[15.803096965000066,46.25051137300012],[15.818289835000087,46.2555239870001],[15.834206176000121,46.258366191000064],[15.87932332400004,46.25930809400002],[15.88089465900009,46.259340899000065],[15.883712199000087,46.25939972000005],[15.918903311000093,46.27282717100012],[15.94872115000004,46.284204407000075],[15.982000773000093,46.28833852200002],[15.993668240000089,46.29061331100003],[15.998433879000059,46.29154246000017],[16.0192078040001,46.29882883700007],[16.038948201000068,46.30844065400008],[16.04992239800009,46.3167346150001],[16.0523840730001,46.31859507300011],[16.059618774000086,46.33231516600015],[16.0597221270001,46.34531178800007],[16.057448365000084,46.35965199800007],[16.05796512800012,46.377532044000034],[16.088654305000144,46.373085600000124],[16.094345337000107,46.372261047],[16.10602421100009,46.373733826000105],[16.115532674000065,46.37928904200011],[16.123180786000148,46.38688547800008],[16.131552368000115,46.39306081100007],[16.143851359000053,46.394714458000024],[16.15356652800008,46.39143300400012],[16.17754439300012,46.3755941780001],[16.191807088000076,46.369780579000135],[16.20865360500008,46.367093404000016],[16.217128540000147,46.367351787000175],[16.252785279000136,46.373423767000034],[16.275626262000056,46.373165385000064],[16.280277140000123,46.37621429400018],[16.279936481000078,46.37866136200013],[16.278726847000115,46.387350566000016],[16.274075968000147,46.392104798],[16.257022746000104,46.399907939000016],[16.250924927000142,46.40499806800001],[16.248237752000108,46.413343811000075],[16.250098103000113,46.42944102000014],[16.24937463400005,46.43752838200005],[16.237489054000093,46.46507192000003],[16.23366499900007,46.47874033600014],[16.234187647000056,46.48489233600004],[16.23490523300009,46.493338928000114],[16.260931084000106,46.51357611200014],[16.263947388000076,46.515921530000135],[16.29536665900011,46.524448141000065],[16.310662883000077,46.53098520900012],[16.32998986800004,46.535455221000134],[16.340276431000092,46.54382713200006],[16.34414921000007,46.54697906500009],[16.351254482000083,46.539922460000106],[16.351693970000042,46.539485982000045],[16.357895142000103,46.54697906500009],[16.36947066200014,46.54057118800013]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Hungary","sov_a3":"HUN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Hungary","adm0_a3":"HUN","geou_dif":0,"geounit":"Hungary","gu_a3":"HUN","su_dif":0,"subunit":"Hungary","su_a3":"HUN","brk_diff":0,"name":"Hungary","name_long":"Hungary","brk_a3":"HUN","brk_name":"Hungary","brk_group":null,"abbrev":"Hun.","postal":"HU","formal_en":"Republic of Hungary","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Hungary","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":1,"mapcolor13":5,"pop_est":9905596,"gdp_md_est":196600,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"HU","iso_a2":"HU","iso_a3":"HUN","iso_n3":"348","un_a3":"348","wb_a2":"HU","wb_a3":"HUN","woe_id":23424844,"woe_id_eh":23424844,"woe_note":"Exact WOE match as country","adm0_a3_is":"HUN","adm0_a3_us":"HUN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"HUN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.981488891000083,48.51685882600006],[21.006500285000072,48.51815073700001],[21.035955851000068,48.51463673900005],[21.06386112400014,48.50623931900005],[21.08401493300005,48.493010153000085],[21.10933638500012,48.489108582000114],[21.186747680000053,48.513706564000096],[21.219923950000066,48.518719177000065],[21.23801070200008,48.51344818200005],[21.25041304500013,48.50649770100006],[21.261781861000117,48.50319041000005],[21.276561320000038,48.508719788000036],[21.288240194000107,48.51993357400008],[21.29392460100007,48.53057891800009],[21.302296183000124,48.53990651500001],[21.32182987400006,48.54758046500009],[21.338573038000106,48.54985422800013],[21.37267948400006,48.55034515400007],[21.424562622000053,48.561274720000114],[21.43913537600011,48.558329163000025],[21.472725057000048,48.544996644],[21.490811809000064,48.54026825000011],[21.4993900960001,48.53507476900008],[21.506004679000085,48.52649648000007],[21.515099732000067,48.507117819000115],[21.52181766700008,48.5000898240001],[21.53773400800011,48.495232239000075],[21.57463098100004,48.49556813600006],[21.591684204000074,48.493010153000085],[21.600365844000123,48.4816413370001],[21.613388305000058,48.44035186800007],[21.62155318200007,48.42965484600006],[21.677570434000103,48.37234568300008],[21.70123824000012,48.353948873000085],[21.72769657400002,48.340900574000045],[21.759012492000124,48.33376922600009],[21.78939823400009,48.33552622500008],[21.841178019000065,48.35317372700007],[21.884276164000056,48.35746287100005],[21.91476525900015,48.369090068000105],[21.929338012000102,48.37291412400006],[21.9815312100001,48.37472279900004],[21.999928019000095,48.37896026700008],[22.01801477100011,48.379735413000105],[22.07785607900007,48.375808004000135],[22.09645959500011,48.379425354000034],[22.113926229000068,48.388649598000114],[22.132839803000106,48.404798483],[22.15650760900013,48.40205963100007],[22.15826320500008,48.40222218700009],[22.15831518200011,48.402227],[22.159298136000103,48.40231801400003],[22.16922001100008,48.40952687600008],[22.20198286900009,48.418156840000044],[22.236089315000072,48.41528879800006],[22.271849406000086,48.40345489500004],[22.256966593000126,48.37322418200003],[22.25675988800006,48.35728200300011],[22.28435510300008,48.3583930470001],[22.29127974400006,48.35756622400006],[22.29872115100008,48.34914296500008],[22.29872115100008,48.339324443000116],[22.296447388000047,48.327800598000096],[22.29737756300011,48.314002991000045],[22.30812626100004,48.29369415300002],[22.357115519000047,48.243102926000056],[22.3636267490001,48.238710429000086],[22.370861450000064,48.23739268000011],[22.378612915000076,48.23886545900012],[22.386467732000114,48.243051250000065],[22.390498495000113,48.24434316000011],[22.39452925600011,48.244756572000114],[22.39876672400007,48.24434316000011],[22.418403768000104,48.23896881100006],[22.434216756000097,48.236746725000046],[22.449719686000094,48.2376769000001],[22.469046672000047,48.244136454000056],[22.4732841390001,48.24449819000005],[22.47741825400004,48.243929749000095],[22.481449015000123,48.24258616200004],[22.555759725000115,48.17716379900005],[22.568885539000092,48.15651906300005],[22.58304488100012,48.124815573000035],[22.60009810300005,48.10112192800008],[22.605472453000118,48.0970394900001],[22.608056274000116,48.09683278400012],[22.621182088000097,48.10176788400008],[22.693219035000055,48.10176788400008],[22.71161584500007,48.10582448400007],[22.72856571400007,48.11313669900005],[22.745722290000117,48.11628896100012],[22.762052043000065,48.10926096600011],[22.765566040000124,48.104532573000114],[22.801429484000064,48.09096750900005],[22.830988403000102,48.07244150800011],[22.84432092300011,48.061046855000114],[22.85475956200014,48.04730092400007],[22.8615808510001,48.02838735000003],[22.857963501000114,48.018026226000096],[22.851348918000042,48.00880198200011],[22.84948856600002,47.99314402300007],[22.8324353430001,47.97893300400008],[22.840806925000063,47.96678904300009],[22.877600546000053,47.94673858700014],[22.861167440000088,47.93381947800003],[22.836052693000084,47.9024518840001],[22.81972294100012,47.89232330400006],[22.779622029000052,47.88229807500005],[22.763602335000087,47.87475331700008],[22.75285363700007,47.861239930000124],[22.75326705000009,47.8526874800001],[22.75833134000007,47.84622792600003],[22.760295044000088,47.838915711000055],[22.751820109000075,47.82767608600011],[22.745825643000046,47.824988912000066],[22.724224894000088,47.823490295000056],[22.70386438000014,47.81718577100014],[22.691668741000058,47.81070037900008],[22.66696740700013,47.78878957100005],[22.637718547000073,47.771555481000064],[22.601234985000076,47.76093597500007],[22.56299442600007,47.75721527200005],[22.528474569000107,47.761039327000105],[22.454370565000147,47.787394308000046],[22.42367476400011,47.78256256200004],[22.40734501200009,47.743081767000035],[22.395872843000063,47.735692037],[22.382643677000086,47.73202301100011],[22.368277628000072,47.73117034900008],[22.322078898000115,47.735872905000065],[22.30936649500006,47.735046082000025],[22.291589803000136,47.730705261000054],[22.27308964000011,47.72375478200007],[22.26172082500011,47.7158482880001],[22.23981001800007,47.69347239200005],[22.2321619060001,47.68825307300011],[22.215212036000082,47.67993316600006],[22.20787398200008,47.67373199500008],[22.20415327900008,47.66629058900014],[22.20074263500007,47.64794545500007],[22.19764204900011,47.63931549100001],[22.172837361000063,47.615389303000114],[22.16984012900005,47.60877472000004],[22.169116658000064,47.601384990000014],[22.167608011000112,47.594862307000085],[22.16735966000007,47.59378855400004],[22.162088663000134,47.58624379500009],[22.154177334000053,47.58221264000008],[22.14854943800006,47.57934499100011],[22.099560180000054,47.57094757200014],[22.03744510900009,47.53932159400006],[22.007886189000146,47.5174107870001],[21.988869263000083,47.49294199700006],[21.991453084000085,47.46180694600008],[22.000238078000077,47.427183736000075],[22.00158166500003,47.3938265990001],[21.9815312100001,47.36610219400009],[21.936986125000086,47.357162171000056],[21.919002726000087,47.34966908800004],[21.90081262200007,47.335742289000045],[21.862158651000072,47.297424215000035],[21.85606083100009,47.28574534100005],[21.844588664000067,47.2499335730001],[21.839317668000064,47.24083852200005],[21.827742147000095,47.22600738600002],[21.823608033000085,47.214922791000106],[21.82329797300011,47.20332143200005],[21.82567508900013,47.19427805600008],[21.825985148000115,47.18505381300008],[21.819887329000064,47.17272898400005],[21.8115157470001,47.16469329800006],[21.78939823400009,47.15030141300005],[21.779889770000096,47.14074127200007],[21.77544559800009,47.13167205800008],[21.770484659000147,47.11402455700011],[21.76376672400002,47.1052137260001],[21.743509562000014,47.09159698500011],[21.694210246000125,47.06916941300011],[21.671886027000138,47.054725851000086],[21.632818644000054,47.02268646300007],[21.634269538000098,47.01942195100005],[21.636642700000095,47.01408233700005],[21.64522098800012,47.01124013300006],[21.654832805000126,47.00994822200002],[21.66175744600011,47.006072490000065],[21.67074914600005,46.99439361600008],[21.671369262000013,46.99336008700001],[21.667545207000074,46.99237823500005],[21.648528279000118,46.942975566000115],[21.64005334400011,46.935689189000044],[21.594371378000087,46.910006002000074],[21.589927206000084,46.90886912000005],[21.58868697100004,46.90618194600012],[21.587136678000036,46.894399719000035],[21.58806685400009,46.882204081000104],[21.591477498000103,46.871532899000016],[21.59178755700009,46.86070668600007],[21.583415975000037,46.84794260700011],[21.573080689000108,46.84176727300013],[21.536597128000096,46.8350234990001],[21.515719848000117,46.82158762700004],[21.502904094000144,46.80530955100002],[21.481510051000043,46.764976095000065],[21.47706587700011,46.760221863000055],[21.47365523200008,46.75487335300011],[21.47138146900008,46.74903391500004],[21.470451294000043,46.743013611000094],[21.47262170400012,46.74019724600004],[21.47520552600011,46.73784596800007],[21.478202759000023,46.73593394000008],[21.50517785600007,46.7232473760001],[21.501767212000033,46.70350697900005],[21.483577108000105,46.68485178600008],[21.46352665200004,46.67704864500007],[21.436241495000047,46.67374135300008],[21.425492797000118,46.662010803000065],[21.423538914000087,46.65823096900007],[21.41681115700007,46.64521596300011],[21.396037231,46.62635406600009],[21.374436483000125,46.61844757100005],[21.33764286300004,46.620411275000066],[21.316248820000027,46.61663889600007],[21.300952596000087,46.603926494000085],[21.295268188000136,46.58503875800008],[21.291340779000052,46.54672068300004],[21.27893843600009,46.52840138800008],[21.261678508000102,46.51333770700009],[21.24762251800007,46.49747304300007],[21.245142049,46.47687998500007],[21.27439091000005,46.43835520500011],[21.28069543400008,46.416392721000136],[21.257544393000074,46.40417124500004],[21.215169718000055,46.40290517200008],[21.19563602700015,46.398099264000074],[21.178789510000083,46.38445668600008],[21.168660929000026,46.36275258500007],[21.164526815000098,46.31825917600008],[21.155948527000078,46.29893219000012],[21.144476359000066,46.28373932000011],[21.13486454200006,46.27852],[21.105615682000092,46.27867502900003],[21.09920780400006,46.27634958900009],[21.051458781000093,46.236093649000054],[21.03347538200009,46.23133941700007],[21.0139416910001,46.243069967000054],[21.007017049000098,46.248857727000114],[20.99916223200009,46.25159657800006],[20.990583944000036,46.25159657800006],[20.981488891000083,46.248857727000114],[20.96174849500011,46.24834096300009],[20.924438110000068,46.25955474800011],[20.906558065000098,46.26219024700006],[20.899736775000065,46.260691630000046],[20.88506066900007,46.25500722300009],[20.875138794000065,46.254387105000035],[20.866973917000053,46.257125957000085],[20.848990519000065,46.26777130200006],[20.839688762000034,46.27107859400007],[20.819638306000083,46.27169871000012],[20.7986576750001,46.267616272000026],[20.7873693330001,46.26339038000006],[20.778503866000108,46.26007151300007],[20.739333130000087,46.23748891300005],[20.73499231000011,46.23190785800011],[20.73550907400005,46.22250274700008],[20.74481083200007,46.2002818810001],[20.744707479000056,46.19227203400004],[20.736645955000142,46.18669097900005],[20.727137492000054,46.187724508000116],[20.717835734000033,46.189998271000036],[20.710290975000078,46.188086243000015],[20.705330037000124,46.1806448370001],[20.70436755600008,46.16852631600005],[20.704193156000112,46.1663304650001],[20.698818807000066,46.156460266000124],[20.683522583000098,46.144678040000116],[20.663988892000102,46.13775339800014],[20.607558227000084,46.12948516900008],[20.600116821000142,46.12964019800003],[20.588024536000148,46.13284413700009],[20.57810266100006,46.137546692000086],[20.54895715300006,46.15615020800004],[20.509373006000086,46.16767405200008],[20.468548625000096,46.17413360600003],[20.44415734900008,46.14690012600002],[20.283236938000044,46.14379954000009],[20.24282596900008,46.10809112600009],[20.18846236100009,46.14038889600005],[20.17047896400001,46.14550486200005],[20.145364217000093,46.13708160400006],[20.13802616400011,46.136461487000076],[20.130378051000037,46.13935536800008],[20.120146118000036,46.14922556600007],[20.114771769000072,46.152222799000064],[20.09844201700014,46.154961650000104],[20.088623495000064,46.15413482700009],[20.06340539600012,46.1452981570001],[20.034983357000097,46.14297271800006],[19.993125447000125,46.159405823000014],[19.929150024000133,46.16353993800004],[19.888945760000123,46.157390442000064],[19.873648872000103,46.152992386000044],[19.79045048000006,46.129071758000066],[19.772983846000102,46.131552226000046],[19.71188867800006,46.158709866000095],[19.690094848000086,46.16839752200008],[19.669320923000043,46.17310007700004],[19.6478235270001,46.17387522400014],[19.589739217000044,46.16596873000009],[19.568448527000044,46.166433818000115],[19.5499483640001,46.16416005500011],[19.5252470290001,46.1564085900001],[19.50199263500008,46.14560821500007],[19.487523234000065,46.13423940100009],[19.489280233000045,46.12602284800005],[19.496721639000043,46.11687612000005],[19.499305461000063,46.108607890000116],[19.472950480000094,46.098686016000016],[19.46592248500008,46.09196807900008],[19.4608581950001,46.08447499600007],[19.45372684700007,46.077550355000085],[19.436880330000093,46.067990214000076],[19.428302043000144,46.06550974600011],[19.417243286000144,46.06432118800009],[19.404737590000053,46.060238750000075],[19.396572713000126,46.05155710800011],[19.389131307000127,46.04153188100008],[19.378899373000138,46.033677064000074],[19.36215620900009,46.02964630100007],[19.325155884000136,46.029491273000104],[19.30696577900008,46.02664906900014],[19.298314567000062,46.022122790000076],[19.286915324000063,46.0161587530001],[19.27947391800012,46.00380808600004],[19.27482303900007,45.991612448000126],[19.263454223000082,45.98143219000008],[19.23565230300011,45.97771148700005],[19.148009074000097,45.98406768800007],[19.125788208000074,45.99311106400003],[19.125788208000074,45.993266093000074],[19.111008748000046,46.012954814000125],[19.088477824000023,46.018845927000115],[19.06543013500007,46.01202463800007],[19.04972050000009,45.99311106400003],[19.04858361800009,45.96344879200006],[19.030910279000096,45.96003814700006],[19.005588827000107,45.962570293000056],[18.981817668000133,45.95078806600014],[18.978717081000095,45.947170716000045],[18.977683553000134,45.94350168900007],[18.978820434000028,45.939780986000045],[18.9864685470001,45.93125437500003],[18.988742310000134,45.92701690700008],[18.987502076000084,45.923812969],[18.981817668000133,45.92184926400009],[18.962697388000066,45.92794708300005],[18.90130578600008,45.93120269800002],[18.88652632700007,45.93042755200011],[18.876604452000066,45.92241770500004],[18.865442342000023,45.918076884000044],[18.84539188700009,45.91394277000012],[18.828338664000057,45.90572621700008],[18.82245067200003,45.905581904000144],[18.81779667200007,45.90546783500011],[18.804877563000076,45.91363271100005],[18.794852336000133,45.903039042000074],[18.790408162000034,45.893892314000084],[18.785963989000038,45.88691599600008],[18.775525350000095,45.88283355700008],[18.763329712000086,45.88397043900008],[18.723848918000073,45.89843984],[18.6743428960001,45.91037709600005],[18.655636027000128,45.907586568000085],[18.63300175000006,45.89192861000003],[18.629281046000074,45.88686431900007],[18.626283813000043,45.874823711],[18.62359663900011,45.86867421500003],[18.62214969900012,45.86841583300005],[18.60737023900012,45.85668528200006],[18.58545943200005,45.826919658000094],[18.57347049900011,45.8166877240001],[18.530269002000068,45.79084950800009],[18.504224081000075,45.78402821900002],[18.481796509000077,45.79141794900005],[18.46546675600007,45.783718160000035],[18.430740194000123,45.753642477000085],[18.411723267000042,45.74320383700004],[18.40438521300007,45.74180857400006],[18.39756392400011,45.741343486000034],[18.390742635000066,45.74180857400006],[18.38412805200005,45.74310048400011],[18.383817993000065,45.74320383700004],[18.367178182000146,45.75819000300001],[18.351158488000095,45.75839670900006],[18.334932088000073,45.75198883100011],[18.317672160000082,45.747286275000135],[18.30051558400004,45.75183380200008],[18.283255655000062,45.764907939000125],[18.260518026000057,45.76511464400008],[18.229822225000134,45.78123769200007],[18.211218709000065,45.785371806000086],[18.128949829000106,45.785371806000086],[18.12016483500014,45.78340810200007],[18.10290490700004,45.77462310800007],[18.092052856000095,45.77172922800008],[18.08047733500004,45.77172922800008],[17.9753674720001,45.792141418000114],[17.906234389000133,45.792141418000114],[17.889791300000127,45.792141418000114],[17.880489542000102,45.788524068000044],[17.875735311000113,45.78066925100011],[17.870050903000077,45.773486226000074],[17.858061971000012,45.77172922800008],[17.85795861800008,45.775863342],[17.83821822100012,45.79963450100007],[17.80917606600013,45.81441396100007],[17.687323038000045,45.84061391300011],[17.664688761000065,45.84164744100008],[17.65652388500007,45.8454198200001],[17.654669375000083,45.85211344100005],[17.653216593000053,45.85735707600014],[17.652079712000045,45.86882924400007],[17.646912069000052,45.8837120570001],[17.64577518700014,45.89182525600012],[17.638437134000124,45.90133372000011],[17.59110152100007,45.93621531200009],[17.55430790200009,45.94779083200012],[17.51193322800006,45.9539403280001],[17.42666711400011,45.956730855000046],[17.4181921790001,45.95301015200004],[17.415401652000128,45.94970286000006],[17.411577596000114,45.94660227500009],[17.406203247000036,45.943656718000085],[17.399692017000064,45.95993479400002],[17.389150024000116,45.96308705700008],[17.365275512000036,45.956730855000046],[17.345328410000093,45.95569732700008],[17.34212447100012,45.95864288300007],[17.34367476400007,45.96753123000008],[17.337887003000077,45.98463612900014],[17.32713830600005,45.97202708],[17.316596314000094,45.97378407800008],[17.306613213000105,45.97991405200013],[17.304814087000093,45.98101877800005],[17.29013798000011,45.98463612900014],[17.29013798000011,45.991457418000095],[17.29695927000006,45.99264597600012],[17.309361613000135,45.99662506100008],[17.316803019000048,45.99765859000007],[17.3078113200001,46.006391907000136],[17.291481567000062,46.00794220000006],[17.27587528500004,46.01202463800007],[17.268950643000068,46.02871612600011],[17.266573527000105,46.03879303000004],[17.25406783000011,46.070832418000066],[17.248590128000018,46.080237529000016],[17.20859257000006,46.11656606000008],[17.19732710800008,46.12116526300013],[17.116195109000042,46.12312896700006],[17.101208943000074,46.12819325800004],[17.052943156000055,46.153463033],[17.0412642820001,46.16219635100009],[17.036303344000146,46.172996725000104],[17.028035116000094,46.18048980800006],[16.974808390000135,46.210565491000125],[16.965299926000057,46.21945383700003],[16.940701945000058,46.251493226000036],[16.903288208000106,46.28193064400011],[16.89605350700012,46.28627146400009],[16.889232218000075,46.2921625780001],[16.879311877000134,46.31206196100006],[16.871765584000027,46.32719919900012],[16.875072876000047,46.34285715800007],[16.865461060000115,46.359135234000085],[16.859410685000082,46.364757909000076],[16.850474894000058,46.373062032000064],[16.837659139000067,46.38187286400006],[16.832388143000028,46.381924541000075],[16.830217732000047,46.37735117600005],[16.82753055800012,46.374018046000025],[16.820915975000105,46.37810048500003],[16.816575154000134,46.3819762170001],[16.812337687000078,46.38502512700011],[16.807893514000085,46.387350566000066],[16.80344934100006,46.388694153000095],[16.776474243000052,46.392879944000065],[16.769342895000108,46.39610972100013],[16.76190148900008,46.38187286400006],[16.755080200000123,46.38187286400006],[16.742884562000114,46.3996237180001],[16.712395467000135,46.41267201800014],[16.69358524600011,46.429621888000035],[16.677462199000047,46.448690491000036],[16.659272095000087,46.46419342100003],[16.637671346000047,46.47447703100002],[16.611109660000096,46.4780685420001],[16.602117960000072,46.48204762800009],[16.59426314300012,46.48297780400014],[16.58806197100006,46.47956715900011],[16.583721151000077,46.47065297500009],[16.577623332000115,46.47065297500009],[16.564290812000078,46.479928894000096],[16.521089315000065,46.49853241000005],[16.515301554000075,46.50171051000012],[16.500832153000147,46.544808655000054],[16.46713911900008,46.56470408200005],[16.430242147000058,46.60439158200011],[16.394585408000065,46.61901601200008],[16.37639530400014,46.62909291600005],[16.372245692000064,46.63634126300008],[16.36843713300007,46.64299387600002],[16.377635539000067,46.65286407500008],[16.39665246600015,46.6591427620001],[16.40260705700007,46.663108786000066],[16.410501749000105,46.66836700500011],[16.40502404800011,46.68725474100003],[16.39003788200006,46.69415354500012],[16.37143436700009,46.694928691000115],[16.3662163730001,46.69646683100012],[16.365383073000057,46.696712468000094],[16.357585082000128,46.69901112900004],[16.357275024000046,46.715831808000104],[16.34342574100009,46.71417816200005],[16.33412398300007,46.721748759],[16.32554569500013,46.73327260400003],[16.31417687900003,46.74332367000008],[16.300430949000088,46.772081605000096],[16.29815718600008,46.775802308000095],[16.29948988400014,46.77950994200009],[16.302187948000068,46.78701609300006],[16.311097363000044,46.79751906200008],[16.31490035000013,46.80200225900012],[16.321824992000103,46.81326772100007],[16.327509400000054,46.82546335900008],[16.32978316200007,46.83440338200012],[16.325338989000073,46.8394418340001],[16.310662883000077,46.840010275000054],[16.30187788900008,46.843214213000124],[16.297392209000122,46.84703294300007],[16.282240845000047,46.85993153900006],[16.272008911000086,46.86396230100004],[16.179486395000108,46.85846833900004],[16.135376424000043,46.85584910100005],[16.130245696000088,46.856708498000096],[16.09403527800012,46.86277374300005],[16.110054972000086,46.86791554800004],[16.122870728000066,46.87636464500011],[16.159147583000106,46.91031606100006],[16.170723104000047,46.918532613000075],[16.196147909000075,46.931296692000046],[16.217025187000047,46.937394511],[16.223949829000105,46.941063538],[16.230667765000135,46.94834991500008],[16.231184530000093,46.954421895000024],[16.230357707000053,46.95997711200005],[16.232941528000055,46.966074931000094],[16.243070109000115,46.972017721000014],[16.252991984000115,46.9735163380001],[16.2610535070001,46.97808970200006],[16.265394328000067,46.993256735000074],[16.274902791000073,47.004315491000085],[16.288545369000076,47.00558156400012],[16.3258557530001,47.00043975800014],[16.366576782000067,47.00382456500006],[16.387764120000043,47.00204172800007],[16.40502404800011,46.99315338200006],[16.41039839600009,46.99041453100011],[16.415566040000073,46.98943267900006],[16.420423625000097,46.99025950100008],[16.42476444500008,46.992998352000114],[16.42476444500008,46.99310170500004],[16.441404256000112,46.99522043900003],[16.467449178000066,46.995427145000065],[16.486362752000105,46.99855356900011],[16.48191857900011,47.009379781000064],[16.46755253100011,47.018423157000115],[16.453289836000124,47.021678773000104],[16.424661092000065,47.02408172600005],[16.437166788000038,47.03178151500006],[16.48191857900011,47.044209697000035],[16.49318404100006,47.04914479600006],[16.497214803000077,47.05462249800007],[16.493700805000117,47.059815979000064],[16.48191857900011,47.063898417000075],[16.46176477100005,47.06849762000013],[16.454323364000118,47.081700949],[16.460834595000076,47.09629954000007],[16.48191857900011,47.10523956300011],[16.504759563000107,47.125832621000114],[16.50951379300011,47.137537334000086],[16.49731815600009,47.14968129500008],[16.480885051000115,47.15076650100008],[16.447088664000148,47.13970774300009],[16.43365279200009,47.14575388600011],[16.433962850000086,47.151283265000096],[16.4421277270001,47.16833648700006],[16.44181766700012,47.17712148000004],[16.435099732000083,47.1835810340001],[16.426728149000013,47.18412363700014],[16.418769979000047,47.183658550000104],[16.41277551200011,47.187172546000085],[16.409261515000082,47.20368316600005],[16.424661092000065,47.2255939740001],[16.42135380000005,47.243034770000065],[16.42135380000005,47.243060608000064],[16.42135380000005,47.24313812300007],[16.452463012000095,47.25458445300009],[16.46662235500014,47.263421123000086],[16.473236938000042,47.27680531900012],[16.469206177000046,47.293238424000094],[16.43882043500011,47.33656911300005],[16.436133260000073,47.3385586550001],[16.431689087000052,47.339721375000124],[16.42714156100004,47.34137502000007],[16.42435103400007,47.3451990770001],[16.42497115000012,47.35111602800003],[16.429311971000118,47.35380320200005],[16.434272908000054,47.35556020100012],[16.436443319000148,47.35850575800003],[16.433962850000086,47.39684967100004],[16.444091430000128,47.409510397000076],[16.456597128000027,47.41183583600011],[16.469929647000043,47.4055313120001],[16.48191857900011,47.39230214500011],[16.589405558000124,47.42563344400005],[16.626973417000045,47.44554893500003],[16.64087528400009,47.45291860000009],[16.636844523000093,47.49320037800004],[16.64821333900008,47.50154612200009],[16.677358846000118,47.50986602800006],[16.688004191000086,47.522630107000104],[16.689141072000012,47.538029684],[16.681389608000103,47.550561219000116],[16.667540324000125,47.56009552100011],[16.650590454000053,47.566555074000064],[16.656171509000046,47.58593373700011],[16.647696574000065,47.606139221],[16.630229940000106,47.6220038860001],[16.60842248600008,47.62877349900006],[16.575452921000107,47.62494944300002],[16.509617147000142,47.64313954700006],[16.48191857900011,47.638953756000035],[16.425901326000087,47.65427581800009],[16.40781457500009,47.6613296510001],[16.416599568000066,47.66882273400003],[16.431792440000095,47.685462545000064],[16.43913049300008,47.69047515900013],[16.444918254000072,47.68554006000008],[16.449879191000093,47.682413635000046],[16.45453007000006,47.681767680000064],[16.461144653000076,47.684532370000106],[16.4730302320001,47.691767070000076],[16.51292443800014,47.70600392700004],[16.521399373000122,47.711533305000046],[16.52687707500013,47.72013743100007],[16.52512007600006,47.73331492100007],[16.53111454200007,47.742978415000096],[16.56780481000004,47.754192200000034],[16.60976607300006,47.75062652600007],[16.689864543000112,47.729568380000046],[16.702473592000047,47.72359975200004],[16.707847941000097,47.71460805300009],[16.711568644000096,47.70406606100002],[16.719216756000094,47.6937307740001],[16.730378866000105,47.68590179500009],[16.741127564000124,47.68145762200007],[16.79745487400004,47.675463156000035],[16.80623986800012,47.67688425700004],[16.81729862500012,47.68424814900004],[16.83693566900007,47.70535797100007],[16.850164836000147,47.71292856900004],[16.86473758900013,47.686728617000114],[16.902668091000123,47.68202606200003],[16.98193973800008,47.695436096000066],[17.054803508000077,47.70202484200007],[17.075370728000053,47.7084843960001],[17.064001912000062,47.71329030400002],[17.055526977000056,47.72091257800008],[17.05056604000012,47.73098948200004],[17.048705689000116,47.763648987000096],[17.041987752000097,47.7839061490001],[17.040644165000117,47.801114400000074],[17.0556303300001,47.81235402500004],[17.04911910000004,47.81868438800006],[17.03950728300012,47.83736541800005],[17.03165246600008,47.84134450400012],[17.010671834000078,47.84788157200009],[17.004367310000077,47.852377421000114],[17.00405725100009,47.86328114800008],[17.016562948000086,47.86769948300008],[17.051186157000075,47.87289296500009],[17.067619262000047,47.88162628200007],[17.07754113800013,47.891729025000096],[17.083328898000104,47.904829],[17.087463013000043,47.922631531],[17.08539595500008,47.924621074000044],[17.080124959000045,47.925757955000044],[17.07516402200011,47.92777333600008],[17.074130493000013,47.932114157000086],[17.076817668000043,47.93495636000006],[17.086119426000067,47.939219666000014],[17.088083130000115,47.940899150000064],[17.09087365700006,47.94947743800009],[17.09573124200008,47.95573028600009],[17.096144653000092,47.961931458000066],[17.085602661000053,47.9701480110001],[17.148337850000072,48.005443014],[17.184821411000087,48.020274150000034],[17.220891560000094,48.01505483000011],[17.262316384000112,48.00728250800006],[17.272671346000063,48.00533966100008],[17.337887003000077,47.998725077000074],[17.36940962800014,47.98120676700012],[17.472039022000047,47.88880930700011],[17.481857544000093,47.88271148800007],[17.492192830000107,47.879817607000064],[17.51730757600012,47.876251933000106],[17.526609334000057,47.87211781800008],[17.560405721000052,47.83798553500009],[17.572601359000146,47.8295364380001],[17.582936646000064,47.829794821000064],[17.592961873000093,47.83310211200006],[17.604227335000132,47.83423899300007],[17.61911014800009,47.82922638000011],[17.639884074000122,47.81920115200009],[17.658384236000074,47.80731557300007],[17.6662390540001,47.79703196300008],[17.676677693000045,47.78917714500005],[17.719244921000097,47.77366906900005],[17.741996704000087,47.76538014800007],[17.82571252400004,47.750006409000086],[17.883531848000132,47.75252142500008],[18.11262007600007,47.7624862670001],[18.235920044000096,47.75388214100005],[18.27302372200006,47.756259257000096],[18.347851196000104,47.77677480100007],[18.552593221000024,47.792846172000054],[18.597448364000115,47.79064992300004],[18.633828572000084,47.77982371100009],[18.66369755000011,47.77589630100004],[18.69284305800005,47.7779633590001],[18.717234334000068,47.78811777800004],[18.750307251000034,47.81362009700007],[18.767670532000068,47.82230173800013],[18.790304810000123,47.826332499000046],[18.814916380000057,47.832193555000025],[18.81645308500012,47.832559509000134],[18.778005819000068,47.85144724500006],[18.748756958000115,47.8707225550001],[18.742245727000068,47.88945526200009],[18.744726196000045,47.910513408000014],[18.754751424000062,47.951802877000034],[18.751444133000064,47.96335256000006],[18.74451949000007,47.96735748300005],[18.743175903000093,47.97105234800005],[18.756198364000056,47.98182688500009],[18.765293416000105,47.98539255800005],[18.784723754000083,47.987614645000065],[18.794232218000076,47.99314402300007],[18.821000610000056,48.03045440700009],[18.8384672440001,48.040014547000084],[18.933595170000075,48.054348892000036],[18.981817668000133,48.06161529600007],[18.996493774000044,48.06621449800011],[19.019016511000103,48.06549686200006],[19.03866174300009,48.06487091100004],[19.09850305200007,48.07073618600003],[19.222526489000046,48.06058176700009],[19.233481893000118,48.0620803840001],[19.293219849000053,48.08776357100007],[19.428198690000045,48.08585154300005],[19.48173547300007,48.111328023000084],[19.483285767000098,48.11649566600008],[19.483802531000034,48.121766663000095],[19.483285767000098,48.127192688000086],[19.48173547300007,48.13267039000007],[19.4814254150001,48.13334218300005],[19.48121870900013,48.133962301000025],[19.4814254150001,48.13442738900005],[19.48173547300007,48.13489247700008],[19.493621053000112,48.150705465000065],[19.50302616400006,48.18941111200007],[19.51398156700014,48.20395802900003],[19.53124149500013,48.210650127000065],[19.623225545000107,48.22700571700011],[19.6338708910001,48.22677317300014],[19.643896118000043,48.224809469],[19.655264933000126,48.218349915000054],[19.67696903400011,48.20039235400006],[19.686994263000145,48.196904195000116],[19.733089640000085,48.202898662000045],[19.756550740000137,48.200314840000054],[19.77432743300008,48.185897116000035],[19.774844197000107,48.17607859300006],[19.76915979000009,48.167448629000035],[19.76667932100011,48.15899953200002],[19.77608443200006,48.14951690700005],[19.785592895000036,48.14869008400012],[19.821663045000037,48.15791432700013],[19.84626102700011,48.152669169],[19.884294881000073,48.12962148000014],[19.905068806000088,48.124298808000106],[19.92863326000011,48.13008656800008],[19.97390181500009,48.15837941500007],[19.996949504000067,48.16791371700006],[20.034983357000097,48.175871887000106],[20.038302702000124,48.17723305700011],[20.078081502000117,48.19354522800012],[20.096995077000145,48.19842865100014],[20.105263305000108,48.20279530900012],[20.11260135900008,48.211735332000046],[20.11807906100009,48.22971873000003],[20.12200646900004,48.236746725000046],[20.13451216700014,48.246668600000135],[20.143090454000088,48.24780548100006],[20.15332238700006,48.24527333600005],[20.17089237500002,48.244033102000024],[20.18763553900007,48.24899403900008],[20.21781457500009,48.26759755500012],[20.22908003700013,48.270904847000025],[20.249027140000067,48.26418691],[20.260292602000106,48.25589284300014],[20.27238488800009,48.25245636000011],[20.2952258710001,48.260414531000066],[20.324268026000112,48.279948223000076],[20.34927941900008,48.30547638000013],[20.370156697000084,48.33433766700006],[20.409017374000115,48.413712667000105],[20.42059289500008,48.429241435000044],[20.435579060000038,48.44239308700011],[20.46596804300009,48.463790392000135],[20.46823856600011,48.46538909900008],[20.481674439000074,48.47874745700011],[20.482501261000095,48.482261455000064],[20.482914673000096,48.48582712800004],[20.48281132000008,48.489366964000084],[20.4821912030001,48.492880962000044],[20.48022749800009,48.51021840400006],[20.480537557000076,48.51853831000011],[20.481674439000074,48.526083069000066],[20.510509888000115,48.53378285800005],[20.572521606000066,48.53657338500011],[20.784084920000055,48.56905202300004],[20.80031132000005,48.56923289000008],[20.81581425000007,48.5638068640001],[20.84547652100011,48.54582346600003],[20.859945922000065,48.54331716000004],[20.891365193000098,48.54109507200013],[20.945832154000072,48.518977560000025],[20.981488891000083,48.51685882600006]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"Isle of Man","adm0_a3":"IMN","geou_dif":0,"geounit":"Isle of Man","gu_a3":"IMN","su_dif":0,"subunit":"Isle of Man","su_a3":"IMN","brk_diff":0,"name":"Isle of Man","name_long":"Isle of Man","brk_a3":"IMN","brk_name":"Isle of Man","brk_group":null,"abbrev":"IoMan","postal":"IM","formal_en":null,"formal_fr":null,"note_adm0":"U.K. crown dependency","note_brk":null,"name_sort":"Isle of Man","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":76512,"gdp_md_est":2719,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"IM","iso_a2":"IM","iso_a3":"IMN","iso_n3":"833","un_a3":"833","wb_a2":"IM","wb_a3":"IMY","woe_id":23424847,"woe_id_eh":23424847,"woe_note":"Exact WOE match as country","adm0_a3_is":"IMN","adm0_a3_us":"IMN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":-99,"filename":"IMN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-4.612131313999924,54.05695221600013],[-4.620757615999935,54.06964752800007],[-4.631255662999904,54.07062409100007],[-4.64321855399993,54.06659577000007],[-4.656402147999898,54.06378815300005],[-4.671009894999912,54.06704336100009],[-4.689686652999882,54.08152903900003],[-4.704497850999871,54.084865627000056],[-4.7259822259999,54.07900625200003],[-4.745594855999854,54.06736888200001],[-4.766224738999881,54.05923086100009],[-4.790150519999941,54.06378815300005],[-4.790150519999941,54.07123444200002],[-4.784820115999878,54.0730654970001],[-4.781320766999983,54.074774481000105],[-4.777088995999861,54.076239325000074],[-4.76968339799987,54.07746002800007],[-4.770863410999908,54.09682851800008],[-4.737172003999888,54.12490469000011],[-4.728138800999885,54.142564195],[-4.727650519999912,54.17259349200006],[-4.723784959999904,54.18545156500008],[-4.714466925999942,54.20034414300005],[-4.711089647999927,54.20990631700002],[-4.712269660999965,54.21662018400007],[-4.710275844999927,54.22064850500004],[-4.688140428999929,54.223781643000024],[-4.663970506999931,54.233547268000045],[-4.643055792999888,54.24941640800009],[-4.612456834999961,54.26544830900008],[-4.598378058999913,54.27659739800009],[-4.554595506999931,54.339178778000104],[-4.530995245999917,54.36611562700008],[-4.495350714999859,54.38589101800011],[-4.44200598899991,54.40436432500013],[-4.404449022999898,54.409654039],[-4.385731574999937,54.4157168640001],[-4.367787238999881,54.41901276200013],[-4.35130774599989,54.41380442900004],[-4.357085740999962,54.39940013200007],[-4.37755286399991,54.36188385600005],[-4.375599738999881,54.3483340520001],[-4.370228644999912,54.34088776200011],[-4.363758917999917,54.324286200000046],[-4.358225063999896,54.317613023],[-4.350493943999879,54.31476471600007],[-4.332183397999927,54.31342194200007],[-4.32469641799986,54.31020742400011],[-4.319406704999977,54.30459219000002],[-4.313221808999913,54.2955996770001],[-4.3119197259999,54.287176825000046],[-4.32095292899993,54.2835147160001],[-4.326730923999889,54.28034088700011],[-4.340809699999909,54.26300690300013],[-4.34825598899991,54.25950755400004],[-4.354359503999888,54.2515322940001],[-4.359771287999934,54.242254950000046],[-4.365630662999877,54.23505280200001],[-4.371815558999856,54.23126862200007],[-4.399159308999913,54.222072658000116],[-4.39077714799987,54.19472890800003],[-4.412587042999917,54.18008047100002],[-4.446888800999885,54.16913483300007],[-4.475493943999936,54.153143622000066],[-4.474598761999857,54.14081452000002],[-4.529286261999914,54.11908600500004],[-4.543771938999953,54.1084658870001],[-4.549794074999851,54.10065338700011],[-4.563832160999908,54.09682851800008],[-4.579579230999883,54.09442780200004],[-4.590931769999941,54.091050523000035],[-4.598947719999983,54.08388906500008],[-4.612131313999924,54.05695221600013]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ireland","sov_a3":"IRL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ireland","adm0_a3":"IRL","geou_dif":0,"geounit":"Ireland","gu_a3":"IRL","su_dif":0,"subunit":"Ireland","su_a3":"IRL","brk_diff":0,"name":"Ireland","name_long":"Ireland","brk_a3":"IRL","brk_name":"Ireland","brk_group":null,"abbrev":"Ire.","postal":"IRL","formal_en":"Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ireland","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":2,"mapcolor13":2,"pop_est":4203200,"gdp_md_est":188400,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"EI","iso_a2":"IE","iso_a3":"IRL","iso_n3":"372","un_a3":"372","wb_a2":"IE","wb_a3":"IRL","woe_id":23424803,"woe_id_eh":23424803,"woe_note":"Exact WOE match as country","adm0_a3_is":"IRL","adm0_a3_us":"IRL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"IRL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-9.82408606699994,51.638902085000076],[-9.816965298999918,51.63886139500009],[-9.807199673999946,51.64028554900015],[-9.799305792999888,51.636786200000145],[-9.807362433999913,51.62970612200009],[-9.813547329999892,51.627630927000084],[-9.892160610999895,51.61127350500006],[-9.90269934799997,51.61432526200015],[-9.91787675699996,51.61937083499999],[-9.915516730999911,51.62905508000015],[-9.900990363999966,51.63666413],[-9.881662563999924,51.64105866100009],[-9.858265753999945,51.64240143400015],[-9.82408606699994,51.638902085000076]]],[[[-10.326039191999882,51.92963288],[-10.318267381999902,51.924953518000066],[-10.312652147999898,51.92552317900014],[-10.301625128999945,51.92479075700011],[-10.297678188999953,51.918402411],[-10.304554816999882,51.91071198100015],[-10.322661912999877,51.903265692],[-10.361561652999882,51.89203522300009],[-10.396229620999861,51.889837958],[-10.405832485999923,51.88410065300003],[-10.426014777999853,51.88226959800015],[-10.429025844999954,51.889837958],[-10.412017381999902,51.90412018400009],[-10.360910610999923,51.92572663],[-10.351673956999946,51.931138414000046],[-10.33311926999994,51.93060944200006],[-10.326039191999882,51.92963288]]],[[[-9.75218665299991,53.13540273600013],[-9.74006100199989,53.135199286],[-9.715687628999945,53.138251044000086],[-9.696685350999928,53.13654205900018],[-9.671050584999875,53.13051992400006],[-9.663441535999937,53.123195705000064],[-9.672230597999912,53.115912177000055],[-9.671538865999876,53.10919830900012],[-9.64834550699993,53.10171133000013],[-9.64509029899989,53.10260651200004],[-9.64093990799995,53.10154857],[-9.642445441999882,53.093817450000174],[-9.660511847999912,53.090643622000115],[-9.778716600999871,53.123480536],[-9.811431443999878,53.13760000200013],[-9.801177537999875,53.146470444999984],[-9.777495897999927,53.14679596600011],[-9.75218665299991,53.13540273600013]]],[[[-9.658314581999917,53.23265208500014],[-9.692372199999852,53.22638580900009],[-9.710357225999871,53.23859284100017],[-9.713612433999913,53.253119208],[-9.718983527999882,53.26044342700011],[-9.720082160999937,53.26605866100003],[-9.710357225999871,53.27545807500003],[-9.698882615999935,53.28066640800013],[-9.684722459999904,53.282416083000115],[-9.671457485999895,53.2807477890001],[-9.662668423999918,53.27545807500003],[-9.638335740999935,53.25104401200018],[-9.658314581999917,53.23265208500014]]],[[[-9.95685787699992,54.01601797100015],[-9.936350063999981,53.98924388200005],[-9.95685787699992,53.98924388200005],[-9.954253709999932,53.981105861000124],[-9.954660610999923,53.97333405200011],[-9.957834438999896,53.96649811400003],[-9.963612433999883,53.961371161],[-9.963612433999883,53.95384349200004],[-9.951812303999901,53.95783112200011],[-9.940541144999912,53.95994700700011],[-9.930653449999909,53.95905182500003],[-9.922678188999924,53.95384349200004],[-9.922678188999924,53.94708893400009],[-9.930734829999892,53.93927643400012],[-9.93736731699994,53.92352936400006],[-9.940174933999884,53.90595123900012],[-9.936350063999981,53.89248281500012],[-9.95799719999988,53.880601304],[-9.97679602799991,53.88686758000013],[-9.995838995999918,53.90102773600016],[-10.018299933999911,53.912909247000115],[-10.031320766999897,53.91364166900014],[-10.044829881999874,53.9120954450001],[-10.055531378999886,53.91372304900012],[-10.059803839999915,53.92348867400007],[-10.05768795499989,53.93817780200005],[-10.054595506999902,53.949530341000056],[-10.055816209999932,53.958807684000085],[-10.06663977799991,53.967596747000144],[-10.087228969999956,53.971380927000084],[-10.162831183999856,53.961371161],[-10.190174933999854,53.9635277360001],[-10.239491339999915,53.97467682500012],[-10.265939907999892,53.975002346000124],[-10.265939907999892,53.98183828300016],[-10.240142381999874,53.98236725500014],[-10.21849524599989,53.986029364],[-10.201486782999922,53.996161200000145],[-10.189564581999889,54.01601797100015],[-10.181874152999853,54.010158596],[-10.17357337099989,54.00836823100012],[-10.164906378999888,54.01032135600015],[-10.15607662699992,54.01601797100015],[-10.134429490999935,54.00031159100008],[-10.108876105999855,54.004584052],[-10.083729620999861,54.016099351000136],[-10.063221808999911,54.02277252800009],[-9.975900844999927,54.02114492400007],[-9.95685787699992,54.01601797100015]]],[[[-8.483957485999895,54.975531317],[-8.527414516999926,54.96751536700004],[-8.549305792999888,54.968410549000126],[-8.565825975999957,54.975531317],[-8.565825975999957,54.98175690300015],[-8.563384568999908,54.986151434000035],[-8.562733527999882,54.986395575000174],[-8.563588019999882,54.98773834800006],[-8.565825975999957,54.99542877800009],[-8.550933397999898,55.00153229400017],[-8.545399542999888,55.002875067000055],[-8.547434048999916,55.00535716400002],[-8.55052649599989,55.00800202000009],[-8.552235480999883,55.009711005],[-8.543527798999918,55.01532623900009],[-8.536366339999859,55.016587632],[-8.53038489499994,55.01434967700011],[-8.524891730999911,55.009711005],[-8.509022589999885,55.005560614000146],[-8.496571417999888,55.00067780200008],[-8.488189256999902,54.99176666900005],[-8.483957485999895,54.975531317]]],[[[-7.12905839799987,55.285834052],[-7.079335089999859,55.272650458000136],[-7.041900193999908,55.26886627800012],[-6.996490037999933,55.25771719000009],[-6.97569739499994,55.248683986000074],[-6.953521287999876,55.25433991100009],[-6.939564581999917,55.239081122000115],[-6.942779100999871,55.21857330900015],[-6.972564256999873,55.20831940300003],[-7.000640428999872,55.20514557500014],[-7.034087693999935,55.19684479400017],[-7.065744594999898,55.18496328300013],[-7.099761522999927,55.16547272300012],[-7.132313605999911,55.15546295800006],[-7.159494594999899,55.150783596000124],[-7.172840949999909,55.14350006700012],[-7.21662350199989,55.10834381700006],[-7.232289191999968,55.09186432500017],[-7.244984503999916,55.07343170800014],[-7.247097142933142,55.0693283139659],[-7.266502644999889,55.06516713500004],[-7.275287638999885,55.05886261000002],[-7.28298742699988,55.05183461600002],[-7.291152302999904,55.04661529600018],[-7.355024372999935,55.04093088800015],[-7.366961629999907,55.03555654000009],[-7.376986856999906,55.02889027900006],[-7.405253865999896,55.00356882699999],[-7.401119750999952,54.99483551100003],[-7.403755248999886,54.993130189000155],[-7.409077921999938,54.992044983000156],[-7.413108682999848,54.98496531200014],[-7.407424275999886,54.959437155],[-7.408664510999927,54.95111724800013],[-7.415755225999874,54.944372422000114],[-7.417139444999918,54.94305572600014],[-7.436983194999924,54.93830149400016],[-7.445251423999878,54.932151998000094],[-7.448972126999877,54.920318095000155],[-7.444734659999909,54.89489329100017],[-7.444734659999909,54.88445465100012],[-7.455069945999923,54.863008932000106],[-7.470831258999908,54.845283916000184],[-7.543384968999931,54.79309071900011],[-7.549741170999936,54.77960317000004],[-7.551704874999899,54.75469513000017],[-7.5483975839999,54.747202047000044],[-7.543023233999917,54.74379140300012],[-7.543074910999848,54.74167266900004],[-7.556149047999894,54.73836537800004],[-7.566639363999855,54.738675436000115],[-7.585397907999948,54.74472157800007],[-7.615370238999986,54.7393472290001],[-7.649683390999911,54.7448766080001],[-7.667511759999853,54.738778789000044],[-7.702289997999912,54.71888336200014],[-7.736603149999921,54.70746287100006],[-7.770502888999942,54.70601593100007],[-7.803575805999913,54.71614451100002],[-7.832152872999899,54.73061391200003],[-7.845898803999915,54.73102732300005],[-7.880108601999922,54.711028544000115],[-7.929666300999884,54.69671417300013],[-7.913233194999918,54.688652649000126],[-7.907135375999871,54.686688945000085],[-7.914835164999943,54.671651103000116],[-7.906618611999932,54.66131581600011],[-7.890082153999913,54.65506296800011],[-7.87277054899991,54.65222076500014],[-7.864347290999944,54.64906850199999],[-7.854270385999911,54.63640777600012],[-7.846415567999968,54.631446838],[-7.838043985999888,54.631240133000134],[-7.822541055999892,54.63811309800009],[-7.814996296999936,54.63945668600014],[-7.801198689999892,54.634805807000085],[-7.769159301999877,54.61801096600014],[-7.753553019999941,54.61449696900008],[-7.736758178999878,54.61925120000008],[-7.721203572999855,54.625865784000084],[-7.710558227999854,54.624263815000134],[-7.707951474999902,54.60476330300013],[-7.707944064999907,54.604707869000045],[-7.707871052999906,54.60416168300016],[-7.749263875999874,54.596151836],[-7.848844360999919,54.54090972900009],[-7.887136596999937,54.532124736000114],[-7.926410685999911,54.53305491200014],[-8.002194172999879,54.543441875000084],[-8.023278157999925,54.52969594400003],[-8.043561156999912,54.51222930900009],[-8.05586014799988,54.49755320300001],[-8.06097611499996,54.49331573500014],[-8.072448282999886,54.48706288700005],[-8.09704626499996,54.478587952000154],[-8.150169636999891,54.46938954700006],[-8.168466710999894,54.46347695500005],[-8.173837442999911,54.46174143500017],[-8.161176717999894,54.45481679300009],[-8.15812780799996,54.44711700500001],[-8.156034911999882,54.439055481000125],[-8.146345580999963,54.43073557600014],[-8.12241939299986,54.41523264600015],[-8.079941364999911,54.38019602500013],[-8.056480265999935,54.365881654000034],[-8.031339680999906,54.358026835000096],[-8.002194172999879,54.35792348300008],[-7.981032673999948,54.32655588900015],[-7.968010213999889,54.31218984000004],[-7.950801961999928,54.30087270200006],[-7.942074756999915,54.29887328100001],[-7.934110472999891,54.29704864600005],[-7.894965576999936,54.293586324],[-7.880263631999867,54.287023417000015],[-7.873649047999948,54.27105540000015],[-7.869669961999875,54.22687205000006],[-7.856440796999891,54.211420797000144],[-7.836958780999907,54.20434112600004],[-7.782078409999883,54.20000030500015],[-7.722598836999907,54.202325745000095],[-7.704770466999889,54.20036204100016],[-7.632681843999904,54.168529358000015],[-7.625705525999905,54.162173157],[-7.624051879999855,54.15333648700009],[-7.620796264999853,54.144964905],[-7.60901403799994,54.139900615000116],[-7.502302204999864,54.125121155000116],[-7.480753132999921,54.127653300000084],[-7.439618692999944,54.146928610000046],[-7.414658976999958,54.1456883760001],[-7.425769408999884,54.13695505800003],[-7.422255411999913,54.13545644200003],[-7.412230183999895,54.13643829300018],[-7.403961954999943,54.13504303000012],[-7.39662390099994,54.126258036000124],[-7.394660197999911,54.121917217000046],[-7.390216023999898,54.121193746000145],[-7.375488240999913,54.12331248000011],[-7.326964069999917,54.11359731000009],[-7.316489273999905,54.114280450000116],[-7.310324259999901,54.11468251600017],[-7.333165242999911,54.1427428190001],[-7.333165242999911,54.14940907900002],[-7.325982218999854,54.154576722000016],[-7.295544799999988,54.16511871400009],[-7.292134155999861,54.1626382450001],[-7.295028035999848,54.155403545000134],[-7.2964233,54.14651519800013],[-7.296319946999886,54.13499135400009],[-7.29735347499988,54.12589630200013],[-7.293787800999922,54.122020569000156],[-7.280041870999866,54.126154683],[-7.27074011299993,54.13225250200007],[-7.263505411999886,54.140985820000125],[-7.260869913999954,54.15116607700018],[-7.265365762999891,54.161139629],[-7.245780395999873,54.16697906500009],[-7.247020629999895,54.17225006200012],[-7.256322387999916,54.176900940000095],[-7.261128295999923,54.18088002500015],[-7.255495564999904,54.190853577000084],[-7.249087686999872,54.19741648400016],[-7.24087113499985,54.202325745000095],[-7.229502319999939,54.207545064000115],[-7.174725300999852,54.21607167600003],[-7.153331257999951,54.22423655300004],[-7.159739135999899,54.24066965700011],[-7.145889851999925,54.252090149000125],[-7.1814949139999,54.26976348900003],[-7.175500446999878,54.283664449000085],[-7.209038452999891,54.29343129600015],[-7.211467244999938,54.304179993000055],[-7.206661336999928,54.304903463000144],[-7.199168253999916,54.30345652300014],[-7.193690551999907,54.30753896099999],[-7.192398640999954,54.30738393200012],[-7.184647175999943,54.316634013000154],[-7.185008910999954,54.31725413100013],[-7.187644408999887,54.31880442300006],[-7.1914684649999,54.323868713000124],[-7.193948933999878,54.32996653200017],[-7.192450316999981,54.33472076400006],[-7.189469552999896,54.33569177100012],[-7.185629028999927,54.336942851000074],[-7.168059040999935,54.33503082400016],[-7.15989416499994,54.33518585200009],[-7.127027953999914,54.34975860600015],[-7.078503783999905,54.39471710300016],[-7.049254923999882,54.41151194300012],[-7.01783565299985,54.41316558800018],[-6.984090942999955,54.40308868500013],[-6.922027547999903,54.37270294200009],[-6.915051228999913,54.36593332900004],[-6.905956176999921,54.34903513700006],[-6.897894652999952,54.3461929330001],[-6.885957397999902,54.34562449200003],[-6.879704548999911,54.34159373000013],[-6.870014701999906,54.32600060300002],[-6.858413858999909,54.30733225600012],[-6.856656860999948,54.29281117800018],[-6.864666707999902,54.28273427300006],[-6.882185017999888,54.277256572000155],[-6.846683308999928,54.266456197000124],[-6.837743285999892,54.26051340800011],[-6.833195759999881,54.252090149000125],[-6.829733438999909,54.24237498000017],[-6.823945678999848,54.23234975200013],[-6.807357543999927,54.216330058],[-6.78782385299985,54.20299753900018],[-6.766481486999851,54.19235219400018],[-6.744777384999849,54.184187317000166],[-6.732840128999896,54.1835672000001],[-6.724778605999916,54.18863149100015],[-6.717233845999941,54.19514272100004],[-6.706536824999944,54.19891510100017],[-6.694651244999932,54.197984925000114],[-6.683954223999904,54.19436757500012],[-6.663025268999916,54.18382558200007],[-6.648448442999893,54.17366497000013],[-6.640339314999949,54.16801259400007],[-6.634551554999888,54.150132548000116],[-6.643956664999848,54.13183909100005],[-6.666435913999861,54.114785869],[-6.655790567999872,54.1033137000001],[-6.657082478999911,54.09194488600009],[-6.672533732999908,54.06843210900011],[-6.657289184999883,54.06114573200013],[-6.630624144999928,54.04181874600009],[-6.616464803999889,54.03727122100004],[-6.610987100999893,54.03923492400018],[-6.605217158999976,54.04447525800004],[-6.600290079999894,54.04895009400011],[-6.59507076,54.05241241500006],[-6.587164265999916,54.05334259],[-6.571868041999948,54.04951853400017],[-6.564013224999911,54.04895009400011],[-6.478540405999894,54.06770863900012],[-6.450893513999887,54.06843210900011],[-6.450221719999917,54.06667511100012],[-6.446242635999936,54.06243764300008],[-6.440299844999913,54.05799346900006],[-6.433891967999955,54.05530629500005],[-6.426760619999925,54.05540964800018],[-6.401025756999928,54.06088735000016],[-6.377512980999938,54.06326446600012],[-6.371156778999932,54.066778463000055],[-6.366919310999975,54.075098369000116],[-6.367642781999876,54.083418274000095],[-6.369348103999925,54.09111806200018],[-6.368107869999903,54.09731923400006],[-6.354827025999896,54.110651754000074],[-6.346662149999872,54.10987660700009],[-6.338962361999961,54.10295196599999],[-6.327128458999964,54.09788767500011],[-6.313795938999931,54.09969635000003],[-6.299584920999877,54.10403717100009],[-6.284650430999932,54.105225728],[-6.269886847999885,54.09792715100009],[-6.269886847999885,54.09788646000002],[-6.207020636999943,54.06171295800008],[-6.191395636999857,54.05695221600017],[-6.184315558999884,54.05377838700012],[-6.169911261999914,54.039618231000084],[-6.163807745999918,54.03644440300003],[-6.142486131999874,54.03522370000011],[-6.133859829999949,54.03335195500013],[-6.126535610999952,54.03021881700006],[-6.107289191999911,54.01361725500002],[-6.110991990999963,54.00128815300015],[-6.143544074999909,53.97842031500015],[-6.160755988999938,53.97443268400017],[-6.185536261999914,53.97972239800005],[-6.209095831999946,53.988592841000084],[-6.222767706999889,53.99542877800012],[-6.237049933999883,53.99384186400009],[-6.307036912999877,54.011867580000015],[-6.359852667999859,54.01601797100015],[-6.359852667999859,54.008490302],[-6.34780839799987,54.00360748900012],[-6.353871222999942,53.99420807500009],[-6.366281704999892,53.98102448100015],[-6.372954881999931,53.964422919000086],[-6.378285285999908,53.93488190300003],[-6.378977016999926,53.9168968770001],[-6.372954881999931,53.89931875200015],[-6.350819464999859,53.881415106000084],[-6.317290818999908,53.87107982],[-6.243234829999948,53.865139065000065],[-6.243234829999948,53.857652085],[-6.254017706999946,53.83991120000012],[-6.254994269999941,53.822211005],[-6.244984503999945,53.806870835000055],[-6.222767706999889,53.7962914080001],[-6.243275519999941,53.782538153000175],[-6.248443162999934,53.75576406500009],[-6.24579830599987,53.72964101800012],[-6.241322394999884,53.68561432500012],[-6.236439581999917,53.67084381700012],[-6.229888475999928,53.65656159100005],[-6.222767706999889,53.64606354400017],[-6.213042772999927,53.64057038000014],[-6.197987433999913,53.634466864000146],[-6.187082485999952,53.63007233300006],[-6.169789191999938,53.60565827000011],[-6.142486131999874,53.5944684920001],[-6.112456834999904,53.58576080900012],[-6.092396613999966,53.57713450700011],[-6.084462042999888,53.568019924000126],[-6.077300584999961,53.554632880000106],[-6.074940558999913,53.539740302000084],[-6.081532355999883,53.52594635600014],[-6.098500128999945,53.50971100500011],[-6.103138800999885,53.503159898000135],[-6.105458136999857,53.49518463700018],[-6.112782355999855,53.486721096000124],[-6.124419725999957,53.468573309000035],[-6.133371548999889,53.461086330000064],[-6.140858527999853,53.471136786000145],[-6.158355272999898,53.47284577000015],[-6.178618943999907,53.46865469000012],[-6.194813605999855,53.461086330000064],[-6.130604620999918,53.44261302300004],[-6.125803188999924,53.431586005],[-6.122222459999875,53.41986725500011],[-6.112904425999914,53.412665106000176],[-6.116444464999887,53.40949127800012],[-6.122954881999902,53.40216705900012],[-6.126535610999952,53.39899323100006],[-6.110259568999935,53.39402903900002],[-6.069081183999855,53.39252350500014],[-6.050852016999954,53.3854027360001],[-6.062001105999883,53.36737702000006],[-6.074615037999876,53.36688873900008],[-6.088205532999922,53.37396881700011],[-6.102365688999953,53.378485419000086],[-6.106434699999909,53.38080475500006],[-6.118885870999918,53.39057038],[-6.122792120999918,53.39276764500009],[-6.132313605999911,53.39158763200005],[-6.14976966099988,53.386542059000035],[-6.156971808999913,53.3854027360001],[-6.215321417999917,53.35805898600002],[-6.218169725999871,53.347154039000046],[-6.211333787999934,53.33869049700009],[-6.18797766799986,53.32391998900012],[-6.168365037999877,53.30634186400008],[-6.155181443999935,53.299383856000084],[-6.127105272999927,53.29539622600011],[-6.116607225999871,53.290269273000106],[-6.10912024599989,53.289129950000174],[-6.096994594999898,53.28554922100001],[-6.096994594999898,53.27757396000013],[-6.10216223899991,53.269354559000064],[-6.105458136999857,53.265204169000114],[-6.106556769999884,53.24315013200011],[-6.104888475999871,53.22943756700009],[-6.099232550999886,53.214667059000085],[-6.088937954999949,53.20408763200005],[-6.088693813999924,53.20380280200011],[-6.076975063999924,53.19521719],[-6.071034308999913,53.18427155200014],[-6.078114386999857,53.16620514500012],[-6.064686652999882,53.154364325000145],[-6.030384894999911,53.11102936400009],[-6.032093878999916,53.10724518400015],[-6.032704230999883,53.106634833],[-6.033680792999859,53.10667552299999],[-6.037098761999857,53.10480377800003],[-6.032460089999915,53.08844635600012],[-6.03380286399991,53.06415436400012],[-6.039418097999913,53.04035065300006],[-6.047434048999945,53.02533600500011],[-6.051625128999887,53.009263414000046],[-6.038482225999928,52.99380117400001],[-5.996571417999945,52.96491120000009],[-5.993519660999937,52.957424221000124],[-6.006459113999938,52.95400625200013],[-6.011830206999917,52.949652411000116],[-6.021839972999885,52.93089427300008],[-6.026966925999915,52.926662502000156],[-6.037953253999944,52.91966380400008],[-6.071929490999906,52.872015692],[-6.064442511999914,52.86456940300003],[-6.107289191999911,52.83978913000005],[-6.119048631999902,52.83047109600001],[-6.130116339999915,52.81598541900017],[-6.153879360999922,52.76837799700009],[-6.147857225999927,52.74616120000003],[-6.151031053999901,52.74156321800008],[-6.168446417999859,52.716782945000126],[-6.215321417999917,52.665961005],[-6.220570441999911,52.647284247000115],[-6.219471808999856,52.63231028899999],[-6.209095831999946,52.60390859600015],[-6.206450975999871,52.58852773600002],[-6.209095831999946,52.54584381700008],[-6.222238735999923,52.52838776200012],[-6.282948370999861,52.46710846600011],[-6.301014777999882,52.45368073100012],[-6.317738410999908,52.44794342700013],[-6.333241339999915,52.43463776200012],[-6.356190558999913,52.409002997000144],[-6.36554928299995,52.39350006700015],[-6.366200324999909,52.37523021000008],[-6.364369269999912,52.35781484600001],[-6.366118943999908,52.344427802],[-6.373036261999914,52.35199616100014],[-6.380970831999889,52.35675690300006],[-6.390044725999871,52.358832098000065],[-6.448068813999953,52.355902411000145],[-6.468861456999946,52.3600121110001],[-6.462961391999897,52.37799713700004],[-6.472035285999907,52.375921942],[-6.48070227799991,52.37299225499999],[-6.488758917999917,52.36912669499999],[-6.496490037999934,52.36432526200009],[-6.496490037999934,52.35809967700013],[-6.481434699999937,52.354641018000116],[-6.467518683999856,52.346869208000115],[-6.456125454999892,52.33584219000009],[-6.448638475999928,52.322699286000116],[-6.454986131999931,52.31224192900005],[-6.423736131999874,52.307928778000054],[-6.414540167999917,52.29975006700012],[-6.409169074999851,52.28925202000006],[-6.396880662999905,52.298081773000106],[-6.372954881999931,52.322699286000116],[-6.372954881999931,52.316473700000145],[-6.389759894999941,52.29559967699999],[-6.369781053999872,52.27260976800004],[-6.318348761999886,52.240790106000176],[-6.347035285999937,52.19725169500004],[-6.359852667999859,52.18618398600002],[-6.369862433999856,52.17999909100014],[-6.377064581999889,52.17820872600008],[-6.386586066999882,52.17934804900001],[-6.399484829999892,52.185492255000085],[-6.397328253999888,52.19065989799999],[-6.39000403599988,52.195298570000105],[-6.380970831999889,52.20758698100015],[-6.382313605999883,52.211981512000065],[-6.394032355999855,52.21283600500006],[-6.400054490999878,52.21092357],[-6.408762173999945,52.203192450000174],[-6.420887824999851,52.19672272300009],[-6.422678188999924,52.19476959800012],[-6.425607876999948,52.19379303600006],[-6.469105597999885,52.193589585000026],[-6.469105597999885,52.199774481000176],[-6.448638475999928,52.199774481000176],[-6.462310350999871,52.20718008000016],[-6.472564256999874,52.20697663000003],[-6.489654100999928,52.199774481000176],[-6.537464972999942,52.193589585000026],[-6.579741990999878,52.17820872600008],[-6.597157355999855,52.17959219000015],[-6.623117641999926,52.19672272300009],[-6.641428188999896,52.20278554900006],[-6.715565558999856,52.21662018400017],[-6.786284959999875,52.210028387000094],[-6.805572068999908,52.21283600500006],[-6.805572068999908,52.22036367400001],[-6.790435350999927,52.22443268400015],[-6.775990363999966,52.23322174700003],[-6.765858527999909,52.24575429900012],[-6.764027472999913,52.26129791900003],[-6.775990363999966,52.25088125200012],[-6.792958136999943,52.24042389500006],[-6.81265214799987,52.23529694200015],[-6.832264777999853,52.240790106000176],[-6.839100714999858,52.23456452000012],[-6.838002081999917,52.226548569999984],[-6.836537238999938,52.223334052000105],[-6.836415167999888,52.220200914000046],[-6.839100714999858,52.21283600500006],[-6.82827714799987,52.217596747000144],[-6.824777798999975,52.22036367400001],[-6.81859290299991,52.22036367400001],[-6.821848110999952,52.2057152360001],[-6.82494055899994,52.19993724200013],[-6.832264777999853,52.193589585000026],[-6.825428839999915,52.19318268400009],[-6.81859290299991,52.193589585000026],[-6.81859290299991,52.18618398600002],[-6.821929490999935,52.18577708500011],[-6.828928188999896,52.186265367000104],[-6.832264777999853,52.18618398600002],[-6.824777798999975,52.17934804900001],[-6.897084113999937,52.15204498900012],[-6.90721594999988,52.14557526200012],[-6.918568488999881,52.13300202000012],[-6.932118292999916,52.124660549000154],[-6.948963995999918,52.13092682500012],[-6.93976803299995,52.14321523600016],[-6.927886522999898,52.14980703300012],[-6.915191209999932,52.15485260600015],[-6.903920050999943,52.16229889500014],[-6.903716600999899,52.17218659100014],[-6.921009894999912,52.21283600500006],[-6.92674719999988,52.21971263200005],[-6.936675584999875,52.22907135600009],[-6.948312954999892,52.237250067],[-6.958851691999938,52.240790106000176],[-6.970122850999927,52.24738190300015],[-6.984730597999942,52.27863190300003],[-6.997385219999927,52.289211330000064],[-6.994496222999884,52.277533270000085],[-6.991851365999906,52.26679108300006],[-6.990589972999885,52.26166413000006],[-6.989898240999963,52.25165436400006],[-6.986805792999888,52.246893622000165],[-6.972889777999882,52.23021067900014],[-6.969471808999883,52.22036367400001],[-6.98228919199991,52.19562409100002],[-6.979969855999855,52.18593984600007],[-6.955148891999897,52.18618398600002],[-6.955148891999897,52.17934804900001],[-6.971018032999921,52.17129140800016],[-6.999867316999939,52.146714585000055],[-7.017201300999943,52.13837311400009],[-7.039458787999877,52.135199286000116],[-7.084584113999938,52.134344794000114],[-7.106027798999889,52.13092682500012],[-7.10008704299986,52.142157294000114],[-7.071848110999895,52.16571686400006],[-7.093902147999898,52.17177969000015],[-7.106353318999908,52.173000393000066],[-7.120228644999884,52.17194245000012],[-7.120228644999884,52.16571686400006],[-7.114491339999915,52.16278717700014],[-7.111683722999885,52.15973541900006],[-7.109527147999869,52.15631745000003],[-7.106027798999889,52.15204498900012],[-7.116444464999887,52.153143622000144],[-7.129302537999905,52.157782294000086],[-7.137318488999938,52.15888092700014],[-7.149647589999887,52.15631745000003],[-7.156361456999917,52.15045807500009],[-7.161000128999945,52.14362213700015],[-7.167469855999854,52.13837311400009],[-7.187367316999939,52.132757880000085],[-7.205962693999935,52.132757880000085],[-7.243763800999914,52.13837311400009],[-7.43545488199993,52.12567780200011],[-7.504302537999904,52.102687893000116],[-7.541411912999934,52.09739817900008],[-7.5462133449999,52.094916083000136],[-7.549956834999932,52.08974844000012],[-7.55528723899991,52.08490631700006],[-7.565297003999887,52.08372630400014],[-7.572255011999886,52.08759186400012],[-7.576486782999893,52.09463125200001],[-7.579416469999926,52.10126373900006],[-7.582630988999881,52.10423411699999],[-7.599964972999884,52.101019598000114],[-7.619007941999882,52.09223053600006],[-7.631092902999882,52.07904694200003],[-7.627349412999933,52.06268952],[-7.617583787999904,52.07021719000015],[-7.602162238999881,52.071682033000016],[-7.583892381999902,52.06858958500014],[-7.5541072259999,52.06024811400006],[-7.546783006999874,52.059271552],[-7.545155402999852,52.05499909100017],[-7.551014777999911,52.042792059000085],[-7.582630988999881,52.02850983300003],[-7.586415167999917,51.99811432500006],[-7.589914516999896,51.99115631700015],[-7.59825598899988,51.98908112200003],[-7.608265753999944,51.9879417990001],[-7.616525844999926,51.98383209800014],[-7.635406053999872,51.97675202000009],[-7.68846594999988,51.98037344000015],[-7.70929928299995,51.97386302300005],[-7.717640753999945,51.95990631700008],[-7.71739661399991,51.94961172100007],[-7.723296678999929,51.944566148000135],[-7.829335089999887,51.953436591000084],[-7.832427537999876,51.95758698100012],[-7.834055141999897,51.96674225499999],[-7.838490363999881,51.975897528000175],[-7.849842902999852,51.98012929900001],[-7.851796027999882,51.97711823100009],[-7.853016730999911,51.97516510600015],[-7.85415605399993,51.95136139500006],[-7.856678839999858,51.94285716400013],[-7.869862433999912,51.929510809000114],[-7.884266730999884,51.91909414300012],[-7.901193813999953,51.91266510600012],[-7.922230597999885,51.91181061400012],[-7.892648891999925,51.89484284100014],[-7.880604620999918,51.8919945330001],[-7.891468878999915,51.88190338700004],[-7.914173956999946,51.875799872000144],[-7.95571855399993,51.87018463700006],[-8.008168097999913,51.855780341000084],[-8.023060675999943,51.84357330900009],[-8.004139777999853,51.82990143400015],[-8.02057857999992,51.82391998900006],[-8.09609941299996,51.814113674000126],[-8.134185350999926,51.80475495000008],[-8.197173631999874,51.80093008000007],[-8.22476152299987,51.80255768400009],[-8.23619544199994,51.80206940300012],[-8.246205206999917,51.80272044500008],[-8.250559048999918,51.806301174000126],[-8.247954881999902,51.81342194200009],[-8.24120032499988,51.818548895],[-8.232411261999912,51.822007554],[-8.223255988999938,51.823675848],[-8.225493943999908,51.827297268000066],[-8.230091925999943,51.83673737200009],[-8.215646938999896,51.83844635600009],[-8.201649542999917,51.84198639500006],[-8.188221808999856,51.847967841000084],[-8.175404425999915,51.857163804000045],[-8.181630011999857,51.85932038000006],[-8.186838344999954,51.861761786],[-8.193104620999918,51.86367422100015],[-8.202788865999878,51.86399974199999],[-8.195301886999886,51.877020575000145],[-8.19050045499992,51.881089585000105],[-8.18224036399991,51.88450755400014],[-8.187082485999895,51.893133856000034],[-8.193755662999962,51.895412502],[-8.201527472999942,51.89215729400014],[-8.210194464999859,51.88450755400014],[-8.223255988999938,51.89008209800015],[-8.243560350999928,51.892889716000084],[-8.284657355999911,51.8919945330001],[-8.284657355999911,51.89813873900009],[-8.293202277999853,51.903306382],[-8.310373501999948,51.90082428600005],[-8.328846808999884,51.895412502],[-8.34740149599989,51.8919945330001],[-8.38849850199989,51.89345937700015],[-8.408843553999873,51.89179108300014],[-8.429351365999933,51.88450755400014],[-8.396066860999923,51.87677643400012],[-8.35415605399993,51.87299225499999],[-8.329253709999904,51.861314195000105],[-8.34740149599989,51.82990143400015],[-8.309885219999982,51.832098700000145],[-8.298329230999855,51.82990143400015],[-8.298329230999855,51.823675848],[-8.305165167999888,51.823675848],[-8.305165167999888,51.81622955900003],[-8.296294725999928,51.811590887000094],[-8.292103644999884,51.81000397300006],[-8.306507941999966,51.80784739800008],[-8.313059048999946,51.805609442],[-8.319488084999875,51.80255768400009],[-8.284657355999911,51.80255768400009],[-8.301991339999915,51.785874742000075],[-8.305165167999888,51.78213125200013],[-8.303781704999892,51.776597398000106],[-8.299631313999953,51.77171458500013],[-8.297352667999888,51.76601797100015],[-8.30174719999988,51.75820547100007],[-8.334787563999924,51.73525625200007],[-8.345692511999884,51.72467682500003],[-8.372547980999883,51.71552155200014],[-8.41002356699991,51.70978424700017],[-8.422434048999918,51.704046942],[-8.435536261999914,51.69269440300003],[-8.44176184799994,51.70392487200003],[-8.455799933999913,51.71230703300007],[-8.471913214999887,51.71625397300006],[-8.483957485999895,51.71381256700012],[-8.469227667999917,51.706610419000114],[-8.464182094999956,51.69501373900009],[-8.468983527999853,51.68406810100011],[-8.483957485999895,51.67841217700011],[-8.491118943999936,51.69867584800012],[-8.512440558999913,51.70604075700014],[-8.558420376999948,51.70636627800015],[-8.558420376999948,51.700140692],[-8.54832923099991,51.69635651200018],[-8.527984178999901,51.69501373900009],[-8.51748613199993,51.69269440300003],[-8.508168097999885,51.699204820000105],[-8.502105272999897,51.70034414300015],[-8.497547980999855,51.69269440300003],[-8.499623175999886,51.68695709800015],[-8.506499803999873,51.68244049700009],[-8.514881964999859,51.67951080900018],[-8.521148240999878,51.67841217700011],[-8.536488410999937,51.654730536000024],[-8.539173956999917,51.648382880000085],[-8.538197394999939,51.637396552000105],[-8.533558722999912,51.622300523000106],[-8.53172766799986,51.61078522300009],[-8.544422980999911,51.61790599200013],[-8.558705206999889,51.638006903000175],[-8.572661912999877,51.64496491100006],[-8.589100714999857,51.64590078300016],[-8.638172980999911,51.637437242000104],[-8.757639126999948,51.64496491100006],[-8.743275519999884,51.635199286000116],[-8.726551886999857,51.63133372600011],[-8.690012173999918,51.63129303600011],[-8.690012173999918,51.623846747000144],[-8.696603969999897,51.62099844000004],[-8.70295162699992,51.617010809000035],[-8.682525193999934,51.61078522300009],[-8.693470831999917,51.60468170799999],[-8.699777798999946,51.597235419000114],[-8.700795050999915,51.58812083500011],[-8.696156378999888,51.57664622599999],[-8.733998175999915,51.57977936400006],[-8.74278723899991,51.575628973000036],[-8.750070766999897,51.57941315300003],[-8.757069464999885,51.58600495000012],[-8.765126105999911,51.590277411000116],[-8.801991339999885,51.590277411000116],[-8.812570766999952,51.59194570500013],[-8.820220506999874,51.59463125200001],[-8.826649542999888,51.595160223],[-8.833363410999937,51.590277411000116],[-8.853871222999885,51.59593333500011],[-8.868031378999916,51.58445872600008],[-8.878529425999885,51.567206122000144],[-8.888010219999897,51.55556875200015],[-8.923329230999911,51.548163153000175],[-8.928944464999915,51.54596588700017],[-8.933176235999923,51.53534577000011],[-8.942046678999871,51.537746486000074],[-8.950550910999908,51.5450707050001],[-8.953195766999897,51.54938385600009],[-8.959950324999852,51.55141836100001],[-8.979888475999928,51.56069570500007],[-8.991118943999936,51.56297435100005],[-9.002797003999916,51.562160549000126],[-9.017689581999889,51.556830145000056],[-9.07286536399991,51.54938385600009],[-9.085682745999861,51.55219147300012],[-9.108143683999854,51.56085846600003],[-9.120757615999935,51.56297435100005],[-9.120757615999935,51.55556875200015],[-9.11632239499994,51.5541039080001],[-9.107736782999922,51.54938385600009],[-9.115712042999888,51.537909247000144],[-9.128163214999915,51.52928294500004],[-9.143299933999913,51.523871161],[-9.158599412999877,51.52204010600011],[-9.18455969999985,51.52619049700014],[-9.192534959999904,51.524603583000115],[-9.189605272999897,51.51459381700015],[-9.189605272999897,51.508368231000176],[-9.203968878999973,51.50800202000006],[-9.210845506999874,51.50169505400011],[-9.215728318999936,51.493475653000026],[-9.223784959999875,51.48729075700005],[-9.234730597999942,51.48647695500013],[-9.243763800999943,51.48932526200018],[-9.253041144999912,51.49115631700006],[-9.264759894999912,51.48729075700005],[-9.265370245999861,51.49412669499999],[-9.267486131999874,51.49884674700009],[-9.270090298999946,51.502997137000115],[-9.272124803999901,51.508368231000176],[-9.299468553999873,51.497503973],[-9.301747199999852,51.488714911000116],[-9.307443813999924,51.48729075700005],[-9.315297003999916,51.48761627800017],[-9.323719855999855,51.483832098000065],[-9.33531653599988,51.476996161000145],[-9.349232550999943,51.47402578300012],[-9.38141842399989,51.4736188820001],[-9.369943813999953,51.47858307500017],[-9.360707160999908,51.483832098000065],[-9.353138800999943,51.49087148600013],[-9.346669074999852,51.500921942],[-9.36115475199989,51.49457428600009],[-9.372914191999882,51.49127838700004],[-9.376861131999874,51.49461497600008],[-9.367787238999938,51.508368231000176],[-9.357085740999935,51.517157294000135],[-9.33238684799994,51.52765534100003],[-9.319935675999915,51.53506094],[-9.32290605399993,51.53733958500008],[-9.324126756999874,51.53803131700012],[-9.325062628999945,51.539129950000145],[-9.327463344999897,51.54254791900017],[-9.33580481699994,51.5372582050001],[-9.367787238999938,51.52509186400003],[-9.371693488999938,51.519354559000035],[-9.381092902999882,51.512396552000055],[-9.401844855999883,51.500921942],[-9.41388912699989,51.51113515800013],[-9.412587042999888,51.520697333000115],[-9.405873175999943,51.53172435100008],[-9.401844855999883,51.54596588700017],[-9.408843553999873,51.55219147300012],[-9.425038214999915,51.557562567],[-9.443267381999902,51.55951569200015],[-9.456532355999911,51.55556875200015],[-9.447987433999884,51.543646552000105],[-9.476551886999886,51.53506094],[-9.547474738999881,51.525295315000065],[-9.551380988999881,51.52122630400011],[-9.552805141999926,51.51146067900008],[-9.556304490999933,51.508124091000056],[-9.573882615999878,51.508978583000136],[-9.580718553999873,51.508368231000176],[-9.599964972999913,51.49689362200003],[-9.611317511999886,51.49384186400014],[-9.628407355999855,51.494086005],[-9.629628058999856,51.50405508000007],[-9.641835089999944,51.515204169000086],[-9.655913865999878,51.52016836100013],[-9.662668423999918,51.51146067900008],[-9.717193162999905,51.48041413000006],[-9.710804816999882,51.47597890800007],[-9.70807857999989,51.47455475500003],[-9.703521287999877,51.4736188820001],[-9.77183997299994,51.45311107000008],[-9.768950975999928,51.46430084800009],[-9.777943488999938,51.46222565300015],[-9.806630011999886,51.445705471000096],[-9.813384568999936,51.45311107000008],[-9.82022050699996,51.445705471000096],[-9.818918423999946,51.45848216400013],[-9.81700598899991,51.463120835000055],[-9.813384568999936,51.46743398600016],[-9.813384568999936,51.4736188820001],[-9.822173631999902,51.475409247000115],[-9.826324022999927,51.477728583000086],[-9.833892381999902,51.48729075700005],[-9.812001105999855,51.49152252800017],[-9.793812628999945,51.4996605490001],[-9.758168097999913,51.52204010600011],[-9.74006100199989,51.52977122600013],[-9.70498613199993,51.53571198100015],[-9.683094855999883,51.54254791900017],[-9.665394660999878,51.55158112200017],[-9.621652798999918,51.582831122000144],[-9.602772589999887,51.59198639500012],[-9.566761847999913,51.60228099200005],[-9.545887824999852,51.61078522300009],[-9.592030402999853,51.613714911],[-9.78502356699991,51.55247630400008],[-9.84752356699994,51.54938385600009],[-9.80528723899991,51.56671784100017],[-9.796050584999932,51.5692406270001],[-9.786366339999887,51.5734723980001],[-9.779286261999914,51.582831122000144],[-9.770334438999896,51.59223053600009],[-9.731190558999856,51.60089752800014],[-9.607980923999975,51.64240143400015],[-9.594553188999981,51.655503648000135],[-9.561879035999937,51.65814850500011],[-9.524728969999927,51.67031484600001],[-9.487904425999943,51.67572663000006],[-9.458607550999943,51.68398672100012],[-9.456532355999911,51.700140692],[-9.45177161399991,51.70498281500009],[-9.447417772999925,51.710882880000106],[-9.442941860999952,51.71381256700012],[-9.442941860999952,51.72003815300008],[-9.457264777999853,51.72459544500005],[-9.472808397999868,51.718817450000174],[-9.489816860999923,51.71454498900006],[-9.512806769999884,51.72589752800003],[-9.521473761999886,51.72553131700012],[-9.525461391999954,51.72687409100011],[-9.526437954999949,51.73078034100011],[-9.524525519999884,51.74339427299999],[-9.525461391999954,51.74730052299999],[-9.531727667999917,51.751532294000114],[-9.540272589999859,51.75592682500009],[-9.550119594999954,51.75950755400005],[-9.560210740999935,51.761623440000065],[-9.555897589999914,51.74868398600016],[-9.557281053999901,51.739447333],[-9.556630011999857,51.73090241100009],[-9.545887824999852,51.72003815300008],[-9.566070115999878,51.71670156500006],[-9.579660610999923,51.71059804900006],[-9.60732988199993,51.69269440300003],[-9.62682044199991,51.68504466400018],[-9.648060675999886,51.680812893000066],[-9.713490363999938,51.676459052000084],[-9.747954881999874,51.667425848000065],[-9.874134894999884,51.656195380000085],[-9.915353969999927,51.644598700000145],[-9.930083787999934,51.637437242000104],[-9.93187415299991,51.63471100500014],[-9.93211829299986,51.63104889500009],[-9.932932094999954,51.62726471600017],[-9.936350063999981,51.623846747000144],[-9.941883917999888,51.62132396000014],[-10.004750128999945,51.608547268],[-10.028797980999883,51.59650299700009],[-10.040272589999914,51.597642320000105],[-10.05992591099988,51.602769273000135],[-10.070057745999918,51.60394928600006],[-10.116118943999878,51.60028717700011],[-10.138661261999856,51.5938988300001],[-10.15607662699992,51.582831122000144],[-10.162831183999856,51.590277411000116],[-10.155262824999909,51.59381745000011],[-10.15322831899988,51.59931061400012],[-10.152699347999913,51.60541413000011],[-10.149240688999896,51.61078522300009],[-10.143299933999883,51.61359284100002],[-10.075062628999888,51.62539297100001],[-10.059803839999915,51.63129303600011],[-10.059803839999915,51.63568756700012],[-10.061024542999917,51.63666413],[-10.06346594999985,51.63646067900014],[-10.06663977799991,51.637437242000104],[-10.062652147999955,51.64984772300012],[-10.070668097999885,51.657049872000165],[-10.085316535999908,51.65989817900011],[-10.100819464999915,51.65924713700014],[-10.088124152999853,51.671616929000024],[-10.066395636999886,51.67438385600014],[-10.025746222999885,51.67226797100015],[-10.003773566999882,51.67804596600011],[-9.95685787699992,51.70636627800015],[-9.95685787699992,51.71381256700012],[-9.997792120999861,51.71381256700012],[-9.98070227799991,51.73187897300015],[-9.94937089799987,51.74701569200014],[-9.914906378999945,51.75755442900011],[-9.88853919199994,51.761623440000065],[-9.89167232999992,51.757025458000136],[-9.89704342399989,51.74673086100002],[-9.902251756999874,51.741156317],[-9.88451087099989,51.74339427299999],[-9.867909308999913,51.748602606000176],[-9.856516079999949,51.75861237200017],[-9.854400193999934,51.775295315],[-9.841297980999883,51.76972077],[-9.823801235999923,51.76780833500013],[-9.785511847999883,51.76850006700009],[-9.785511847999883,51.775295315],[-9.793365037999877,51.77619049700009],[-9.813384568999936,51.78213125200013],[-9.813384568999936,51.78827545799999],[-9.799875454999949,51.79376862200003],[-9.77432206899988,51.81220123900006],[-9.754505988999966,51.81907786699998],[-9.742909308999856,51.83246491100009],[-9.737660285999965,51.83673737200009],[-9.72984778599988,51.8380394550001],[-9.703521287999877,51.83673737200009],[-9.671050584999875,51.843003648000135],[-9.612538214999915,51.86351146],[-9.580718553999873,51.87018463700006],[-9.580718553999873,51.877671617000104],[-9.653146938999924,51.871771552000084],[-9.758046027999853,51.84699127800011],[-9.77717037699992,51.83974844000009],[-9.785511847999883,51.833319403000175],[-9.791737433999856,51.826808986000074],[-9.824696417999917,51.826849677000084],[-9.840077277999853,51.823675848],[-9.833892381999902,51.81622955900003],[-9.863840298999946,51.804266669000114],[-9.87486731699991,51.80255768400009],[-9.872710740999905,51.807318427],[-9.869943813999953,51.81867096600017],[-9.868031378999888,51.823675848],[-9.882191535999908,51.823675848],[-9.890492316999882,51.81956614800007],[-9.896107550999886,51.814113674000126],[-9.902251756999874,51.81000397300006],[-9.914214647999898,51.807318427],[-9.938303188999924,51.80499909100003],[-9.94994055899994,51.80255768400009],[-9.993641730999911,51.780951239],[-10.016753709999875,51.77464427300004],[-10.03937740799992,51.78213125200013],[-10.059437628999888,51.768703518000116],[-10.08454342399989,51.75592682500009],[-10.11119544199991,51.746039130000085],[-10.135609503999945,51.741156317],[-10.129750128999916,51.75433991100006],[-10.224354620999918,51.78213125200013],[-10.186146613999881,51.789618231000084],[-10.177072719999956,51.813666083000115],[-10.194203253999916,51.83909739800005],[-10.234608527999853,51.851019598000086],[-10.246083136999886,51.84560781500012],[-10.27122962099989,51.82168203300007],[-10.282622850999928,51.81622955900003],[-10.29474850199992,51.81240469000012],[-10.325754360999952,51.79417552300013],[-10.341053839999915,51.78827545799999],[-10.346587693999936,51.801092841000056],[-10.334706183999884,51.83026764500009],[-10.341053839999915,51.84357330900009],[-10.355702277999939,51.84560781500012],[-10.375884568999965,51.84442780200011],[-10.388905402999853,51.84617747600011],[-10.38194739499994,51.857163804000045],[-10.382476365999935,51.86196523600013],[-10.384836391999897,51.86334870000003],[-10.387359178999901,51.863430080000015],[-10.388783331999889,51.86399974199999],[-10.386708136999856,51.86774323100012],[-10.38463294199994,51.87018463700006],[-10.382801886999857,51.872870184000035],[-10.38194739499994,51.877671617000104],[-10.385365363999881,51.87799713700004],[-10.392241990999876,51.87750885600015],[-10.395619269999884,51.877671617000104],[-10.395619269999884,51.88450755400014],[-10.362660285999906,51.88719310100011],[-10.279611782999922,51.90558502800015],[-10.262196417999858,51.90558502800015],[-10.254139777999853,51.908677476000136],[-10.250884568999878,51.91551341400007],[-10.251576300999913,51.92234935100008],[-10.255034959999932,51.92548248900014],[-10.269195115999935,51.93081289300004],[-10.27782141799986,51.941961981000034],[-10.287993943999908,51.951849677000055],[-10.306874152999939,51.953436591000084],[-10.306874152999939,51.95962148600013],[-10.295318162999905,51.96426015800007],[-10.270578579999919,51.9697126320001],[-10.25845292899993,51.97386302300005],[-10.266224738999938,51.988470770000056],[-10.245432094999956,51.99506256700014],[-10.217355923999946,51.998928127000156],[-10.191802537999877,52.009833075000024],[-10.128163214999887,52.02850983300003],[-10.033273891999954,52.04108307500009],[-9.99266516799986,52.05589427300008],[-9.971058722999942,52.08991120000009],[-9.963612433999883,52.08991120000009],[-9.963734503999945,52.071966864000146],[-9.954335089999915,52.06415436400005],[-9.940337693999936,52.06232330900017],[-9.926380988999881,52.06268952],[-9.92959550699993,52.07192617400015],[-9.908436652999853,52.13092682500012],[-9.87751217399989,52.119533596000124],[-9.84618079299986,52.11855703300007],[-9.77183997299994,52.124701239000146],[-9.778920050999915,52.128566799000154],[-9.787505662999932,52.135402736000074],[-9.792958136999857,52.13837311400009],[-9.758168097999913,52.15204498900012],[-9.95685787699992,52.145209052],[-9.943755662999877,52.124701239000146],[-9.950062628999916,52.11322663],[-9.954660610999923,52.10879140800013],[-9.960601365999878,52.12494538],[-9.970326300999913,52.13165924700003],[-9.983509894999969,52.13589101800015],[-9.997792120999861,52.13837311400009],[-10.028065558999856,52.139634507],[-10.16242428299995,52.11871979400003],[-10.186268683999856,52.109442450000174],[-10.19713294199991,52.115423895],[-10.207020636999856,52.125067450000145],[-10.217518683999913,52.13092682500012],[-10.227894660999908,52.12840403899999],[-10.234608527999853,52.122381903000175],[-10.24205481699994,52.119777736000074],[-10.267730272999898,52.13580963700017],[-10.278920050999886,52.136379299000126],[-10.306874152999939,52.13092682500012],[-10.306874152999939,52.124701239000146],[-10.296986456999917,52.12474192900013],[-10.288563605999883,52.123236395000085],[-10.272084113999881,52.117905992000104],[-10.272084113999881,52.11172109600015],[-10.297434048999918,52.11440664300012],[-10.344878709999932,52.124660549000154],[-10.368316209999904,52.124701239000146],[-10.36742102799991,52.11798737200009],[-10.364369269999912,52.11489492400001],[-10.354074673999918,52.11172109600015],[-10.375721808999884,52.11127350500006],[-10.415272589999857,52.099676825000024],[-10.43659420499992,52.09739817900008],[-10.46076412699992,52.10301341400007],[-10.467518683999856,52.115139065000065],[-10.469309048999946,52.13202545800006],[-10.478179490999878,52.15204498900012],[-10.469471808999911,52.155096747000115],[-10.45091712099989,52.16571686400006],[-10.45091712099989,52.17194245000012],[-10.461293097999883,52.17999909100014],[-10.449696417999888,52.188910223000086],[-10.42821204299986,52.19635651200015],[-10.409291144999912,52.199774481000176],[-10.41665605399993,52.18618398600002],[-10.394602016999926,52.174790757000046],[-10.382069464999915,52.17194245000012],[-10.372059699999852,52.17560455900014],[-10.369252081999889,52.18366120000009],[-10.372670050999915,52.19061920799999],[-10.373158331999889,52.197821356000034],[-10.361480272999897,52.20669179900006],[-10.37157141799986,52.21157461100013],[-10.375803188999981,52.21283600500006],[-10.366566535999908,52.228216864],[-10.354725714999859,52.23224518400015],[-10.33975175699993,52.23187897300014],[-10.320546027999882,52.23456452000012],[-10.308990037999934,52.24188873900012],[-10.28697669199994,52.263617255],[-10.275786912999934,52.26813385600015],[-10.171864386999884,52.28681061400011],[-10.15607662699992,52.27863190300003],[-10.16820227799991,52.240668036000024],[-10.166249152999882,52.23456452000012],[-10.100819464999915,52.240790106000176],[-10.071441209999904,52.25128815300014],[-10.044911261999857,52.269273179],[-10.036040818999906,52.29035065300012],[-10.059803839999915,52.309637762000065],[-10.024769660999908,52.31012604400003],[-10.01353919199991,52.30634186400003],[-10.018299933999911,52.296047268000095],[-10.013579881999902,52.281480210000055],[-10.012806769999884,52.26585521000008],[-10.008778449999909,52.253363348000065],[-9.994374152999853,52.24823639500006],[-9.978138800999915,52.246405341000084],[-9.94749915299991,52.23761627800012],[-9.913685675999913,52.233058986000074],[-9.872222459999904,52.232652085000055],[-9.858062303999901,52.2376976580001],[-9.837228969999927,52.25429922100015],[-9.825591600999898,52.25824616100014],[-9.813384568999936,52.255072333000086],[-9.82022050699996,52.251939195000105],[-9.826486782999892,52.24823639500006],[-9.810047980999911,52.242132880000085],[-9.737660285999965,52.24823639500006],[-9.753407355999911,52.258286851000136],[-9.767648891999926,52.260972398000106],[-9.799183722999913,52.26129791900003],[-9.83177649599989,52.27265045800003],[-9.84679114499991,52.27496979400017],[-9.861887173999918,52.26813385600015],[-9.869374152999882,52.273138739],[-9.874908006999902,52.279242255000085],[-9.87877356699991,52.28681061400011],[-9.881092902999882,52.296047268000095],[-9.868967251999974,52.28876373900008],[-9.859608527999853,52.28473541900011],[-9.849232550999943,52.28473541900011],[-9.833892381999902,52.289211330000064],[-9.84679114499991,52.293890692],[-9.85334225199989,52.29539622600005],[-9.861887173999918,52.296047268000095],[-9.861887173999918,52.30345286699999],[-9.851918097999912,52.30365631700012],[-9.826486782999892,52.309637762000065],[-9.837635870999918,52.32640208500008],[-9.83446204299986,52.37523021000008],[-9.850982225999928,52.38544342700003],[-9.903716600999926,52.391546942],[-9.931752081999946,52.39984772300006],[-9.94994055899994,52.41209544500013],[-9.9349666009999,52.421535549000154],[-9.91588294199991,52.425604559000114],[-9.848378058999856,52.42841217700005],[-9.748931443999936,52.456732489],[-9.735585089999859,52.463609117000104],[-9.720611131999902,52.477240302000055],[-9.703521287999877,52.483547268],[-9.677398240999906,52.48314036700002],[-9.651356574999852,52.47894928600006],[-9.63463294199991,52.473578192],[-9.638783331999946,52.487127997000165],[-9.650502081999917,52.49384186400012],[-9.666371222999942,52.49579498900005],[-9.683094855999883,52.494614976000136],[-9.677316860999923,52.49970123900006],[-9.6752009759999,52.50482819200009],[-9.67711341099988,52.51007721600014],[-9.683094855999883,52.51512278900002],[-9.683094855999883,52.52195872600011],[-9.674916144999884,52.52802155200011],[-9.67320716099988,52.533880927000055],[-9.67564856699991,52.54584381700008],[-9.671945766999954,52.55292389500015],[-9.64830481699994,52.57037995000012],[-9.64281165299991,52.567328192000026],[-9.63646399599989,52.57013580900015],[-9.628529425999915,52.57477448100009],[-9.617909308999884,52.57721588700012],[-9.576975063999953,52.57037995000012],[-9.497466600999926,52.57037995000012],[-9.48961341099988,52.56818268400012],[-9.48033606699991,52.56378815300003],[-9.470326300999915,52.561835028000175],[-9.460275844999954,52.566636460000076],[-9.452951626999946,52.57318756700006],[-9.446522589999944,52.576239325000145],[-9.438384568999906,52.57713450700014],[-9.362538214999887,52.575425523000135],[-9.358713344999954,52.575344143000144],[-9.350412563999981,52.573797919000114],[-9.33584550699993,52.57802969000012],[-9.272124803999901,52.57721588700012],[-9.236480272999927,52.581610419000114],[-9.220285610999895,52.58559804900009],[-9.206695115999933,52.59430573100014],[-9.192372199999852,52.60049062700013],[-9.070627407999922,52.62417226800015],[-9.052398240999935,52.63182200699999],[-9.044178839999859,52.62083567900013],[-9.025949673999946,52.61835358299999],[-9.00560462099989,52.62083567900013],[-8.991118943999936,52.62498607000008],[-8.98525956899988,52.63068268400015],[-8.978993292999917,52.639878648000106],[-8.971018032999893,52.64850495000003],[-8.959950324999852,52.65228913000006],[-8.78498287699992,52.665961005],[-8.751169399999867,52.67295970300016],[-8.769357876999948,52.67316315300012],[-8.834462042999888,52.68915436400011],[-8.86750240799992,52.69330475500006],[-8.932687954999949,52.687079169000086],[-8.949696417999917,52.688910223000065],[-8.96084550699993,52.69367096600017],[-8.962066209999932,52.70001862200011],[-8.949370897999898,52.70693594],[-8.949370897999898,52.713771877000035],[-8.953521287999932,52.72239817900011],[-8.95205644399988,52.73432038000006],[-8.9544978509999,52.74469635600015],[-8.969878709999932,52.748480536],[-8.961415167999888,52.75653717700011],[-8.950306769999884,52.769517320000105],[-8.942616339999859,52.77521393400009],[-8.96890214799987,52.77081940300011],[-9.00023352799991,52.76044342700011],[-9.023589647999898,52.747137762000094],[-9.025786912999905,52.73427969000006],[-9.058216925999885,52.696763414000074],[-9.146799282999893,52.62376536700004],[-9.165760870999918,52.617580471000096],[-9.254790818999908,52.61139557500011],[-9.259917772999927,52.60858795800006],[-9.275786912999934,52.59520091400007],[-9.28579667899993,52.59080638200008],[-9.298085089999885,52.58974844000012],[-9.31069902299987,52.590643622000115],[-9.322743292999888,52.59345123900006],[-9.333078579999892,52.597723700000174],[-9.317128058999884,52.606431382000046],[-9.29523678299995,52.61530182500011],[-9.27867591099988,52.625718492000104],[-9.278960740999906,52.63930898600016],[-9.310617641999897,52.62726471600014],[-9.383656378999888,52.61310455900012],[-9.434478318999908,52.612005927000084],[-9.456166144999912,52.61444733300003],[-9.475453253999945,52.61957428600011],[-9.4837947259999,52.62840403899999],[-9.490712042999917,52.63410065300015],[-9.524891730999911,52.637030341000084],[-9.53844153599988,52.64545319200012],[-9.533273891999954,52.660956122000144],[-9.544178839999944,52.666652736000046],[-9.580718553999873,52.665961005],[-9.580718553999873,52.659125067000055],[-9.571359829999949,52.65713125200012],[-9.563384568999878,52.653062242000075],[-9.556996222999885,52.64704010600015],[-9.552805141999926,52.63930898600016],[-9.628407355999855,52.617580471000096],[-9.672718878999888,52.61163971600014],[-9.694406704999947,52.60561758000016],[-9.703521287999877,52.59430573100014],[-9.70685787699989,52.58022695500013],[-9.714507615999905,52.57859935100011],[-9.723622199999909,52.582261460000055],[-9.730824347999942,52.58405182500006],[-9.757476365999878,52.571966864000146],[-9.936350063999981,52.556708075000174],[-9.936350063999981,52.562933661000116],[-9.918202277999882,52.56810130400014],[-9.87564042899993,52.58681875200001],[-9.82408606699994,52.595160223000065],[-9.621652798999918,52.713771877000035],[-9.624256964999915,52.717474677000055],[-9.628407355999855,52.72744375200015],[-9.617543097999942,52.73061758000004],[-9.603179490999876,52.73773834800006],[-9.593658006999874,52.741034247000115],[-9.580718553999873,52.743353583000086],[-9.549387173999918,52.741034247000115],[-9.538197394999912,52.74225495000003],[-9.519520636999856,52.74730052300007],[-9.508371548999918,52.748480536],[-9.498646613999881,52.75250885600014],[-9.494618292999917,52.76203034100014],[-9.491322394999884,52.773342190000115],[-9.4837947259999,52.78266022300009],[-9.48916581899988,52.78681061400011],[-9.48932857999992,52.787339585],[-9.486683722999942,52.78876373900006],[-9.4837947259999,52.795721747000144],[-9.491281704999892,52.80316803600011],[-9.480620897999925,52.80683014500009],[-9.469797329999947,52.813177802000105],[-9.45946204299986,52.82135651200012],[-9.450347459999932,52.83047109600001],[-9.444488084999904,52.83934153900007],[-9.441395636999914,52.847154039000046],[-9.437489386999912,52.853461005],[-9.429188605999855,52.85773346600011],[-9.429188605999855,52.86456940300003],[-9.427479620999861,52.87775299700017],[-9.365305141999926,52.914129950000145],[-9.354074673999918,52.933498440000065],[-9.37287350199989,52.937160549000126],[-9.45140540299991,52.934637762000094],[-9.47765051999994,52.9403343770001],[-9.449452277999853,52.95750560100011],[-9.437570766999897,52.966742255000085],[-9.407948370999861,52.997015692000055],[-9.398548956999946,53.00409577000012],[-9.38760331899988,53.00861237200009],[-9.395090298999946,53.01544830900009],[-9.341623501999917,53.076971747000165],[-9.319935675999915,53.09113190300009],[-9.303334113999881,53.10789622600011],[-9.289662238999938,53.12921784100017],[-9.272206183999884,53.14667389500012],[-9.251088019999969,53.15192291900003],[-9.227447068999936,53.14354075700005],[-9.180531378999888,53.116766669000135],[-9.158599412999877,53.11102936400009],[-9.13955644399988,53.11542389500006],[-9.118967251999948,53.12335846600002],[-9.096669074999909,53.12702057500009],[-9.07286536399991,53.11847565300015],[-9.070057745999861,53.13446686400006],[-9.08433997299994,53.14345937700007],[-9.128163214999915,53.15192291900003],[-9.128163214999915,53.159409897999986],[-9.069569464999887,53.16620514500012],[-9.053944464999887,53.16242096600008],[-9.023426886999856,53.147162177000105],[-9.004058397999927,53.14573802300005],[-9.004058397999927,53.15192291900003],[-9.045643683999913,53.16620514500012],[-9.045643683999913,53.173732815000065],[-9.022572394999939,53.16742584800012],[-9.00963294199994,53.166083075000145],[-8.998117641999897,53.17389557500003],[-8.986683722999942,53.1769880230001],[-8.978871222999942,53.175767320000105],[-8.98420162699992,53.16620514500012],[-8.974232550999943,53.15794505400014],[-8.96349036399991,53.15180084800015],[-8.951079881999902,53.147772528000175],[-8.936390753999888,53.14573802300005],[-8.94522050699993,53.16616445500013],[-8.950103318999908,53.173732815000065],[-8.956857876999946,53.17987702000015],[-8.94399980399993,53.195013739000146],[-8.928212042999888,53.20587799700003],[-8.894846157999893,53.220892645000056],[-8.905384894999884,53.220689195000105],[-8.924143032999922,53.21588776200012],[-8.932687954999949,53.214667059000085],[-9.031483527999882,53.21662018400015],[-9.045643683999913,53.220892645000056],[-9.028065558999883,53.22752513200011],[-8.982655402999882,53.23444245000003],[-8.96312415299991,53.235174872000144],[-8.96312415299991,53.241929429],[-8.991118943999936,53.241929429],[-8.991118943999936,53.24819570500012],[-8.981760219999899,53.253241278000175],[-8.955881313999896,53.25787995000009],[-8.942616339999859,53.26178620000009],[-8.942616339999859,53.26862213700012],[-9.022084113999966,53.27545807500003],[-9.042225714999887,53.273342190000115],[-9.077056443999936,53.263983466000084],[-9.401437954999947,53.247992255],[-9.432932094999984,53.23859284100017],[-9.44786536399991,53.23187897300012],[-9.47008216099988,53.22825755400005],[-9.511708136999857,53.228338934000035],[-9.532948370999918,53.23444245000003],[-9.544422980999883,53.243557033],[-9.553130662999875,53.25336334800015],[-9.566395636999886,53.26178620000009],[-9.547271287999905,53.27912018400018],[-9.55455481699994,53.290716864],[-9.571359829999949,53.290472723000065],[-9.580718553999873,53.272040106000034],[-9.585194464999859,53.250433661000116],[-9.596831834999932,53.23769765800007],[-9.61229407499988,53.23615143400003],[-9.628407355999855,53.24819570500012],[-9.628407355999855,53.25560130400014],[-9.609120245999918,53.27631256700012],[-9.617298956999917,53.321478583000086],[-9.597401495999918,53.33006419500002],[-9.594105597999883,53.329169012000094],[-9.584217902999882,53.324896552],[-9.576975063999953,53.32391998900012],[-9.572987433999884,53.32607656500012],[-9.566517706999946,53.335394598000065],[-9.563384568999878,53.33759186400006],[-9.560780402999882,53.341213283000016],[-9.601144985999952,53.364894924000126],[-9.590199347999885,53.37238190300009],[-9.552805141999926,53.3854027360001],[-9.588856574999909,53.38641998900006],[-9.606556769999912,53.38471100500006],[-9.621652798999918,53.378485419000086],[-9.608509894999939,53.36660390800013],[-9.606597459999904,53.34935130400014],[-9.615467902999853,53.33466217700014],[-9.63463294199991,53.33006419500002],[-9.652495897999868,53.341253973],[-9.647938605999911,53.359930731000176],[-9.637766079999892,53.37750885600012],[-9.638417120999918,53.3854027360001],[-9.644154425999885,53.38739655200011],[-9.64834550699993,53.39105866100008],[-9.652658657999922,53.392808335000076],[-9.658843553999901,53.389064846000124],[-9.67251542899993,53.378485419000086],[-9.684722459999904,53.37523021000013],[-9.692779100999928,53.367621161],[-9.703521287999877,53.35179271000008],[-9.727528449999909,53.32607656500012],[-9.743072068999906,53.31439850500011],[-9.790394660999937,53.30158112200009],[-9.806711391999983,53.30158112200009],[-9.823353644999912,53.31329987200017],[-9.842925584999904,53.32330963700015],[-9.886586066999882,53.31720612200017],[-9.902251756999874,53.32391998900012],[-9.8978572259999,53.32786692900011],[-9.892811652999853,53.34056224200007],[-9.890736456999917,53.35187409100014],[-9.88719641799986,53.35919830900015],[-9.880279100999871,53.36310455900015],[-9.871490037999877,53.36456940300011],[-9.858062303999901,53.364894924000126],[-9.841297980999883,53.36790599200004],[-9.800526495999918,53.38442617400001],[-9.785511847999883,53.39276764500009],[-9.785511847999883,53.39899323100006],[-9.82022050699996,53.39899323100006],[-9.82022050699996,53.40643952000012],[-9.799183722999913,53.412665106000176],[-9.799183722999913,53.41950104400008],[-9.814076300999885,53.41950104400008],[-9.825184699999909,53.41669342700005],[-9.84752356699994,53.40643952000012],[-9.846913214999887,53.399359442000055],[-9.860178188999896,53.394232489000146],[-9.875396287999877,53.395209052000105],[-9.881092902999882,53.40643952000012],[-9.875721808999913,53.41543203300012],[-9.856068488999938,53.42377350500011],[-9.84752356699994,53.433742580000015],[-9.86034094999988,53.4325218770001],[-9.868072068999878,53.42747630400005],[-9.874908006999902,53.42206452],[-9.884755011999914,53.41950104400008],[-9.893950975999898,53.42157623900012],[-9.902333136999856,53.425238348000065],[-9.911447719999927,53.42597077],[-9.922678188999924,53.41950104400008],[-9.92564856699994,53.40973541900014],[-9.922759568999906,53.398423569999984],[-9.922352667999917,53.389227606000084],[-9.933216925999915,53.3854027360001],[-9.944488084999904,53.38426341400004],[-9.961415167999888,53.37958405200014],[-10.001088019999884,53.37921784100003],[-10.014149542999888,53.38125234600015],[-10.025746222999885,53.3854027360001],[-10.035959438999924,53.39374420800006],[-10.041981574999852,53.402655341000084],[-10.049305792999945,53.409816799000126],[-10.063221808999911,53.412665106000176],[-10.103505011999884,53.408433335000055],[-10.127552863999938,53.40985748900012],[-10.141753709999932,53.41950104400008],[-10.149973110999923,53.414943752000156],[-10.15802975199989,53.41282786700005],[-10.176503058999911,53.412665106000176],[-10.167591925999943,53.42877838700015],[-10.156971808999913,53.43964264500012],[-10.142241990999933,53.445705471000124],[-10.121327277999882,53.44741445500013],[-10.083159959999904,53.44261302300004],[-10.067982550999915,53.44383372600008],[-10.052967902999882,53.45359935100011],[-10.052967902999882,53.461086330000064],[-10.064564581999917,53.46198151200015],[-10.074208136999886,53.465765692],[-10.081654425999941,53.47235748900006],[-10.087147589999887,53.481512762000065],[-10.065337693999936,53.479193427],[-10.040760870999918,53.47256094000012],[-10.020578579999892,53.47044505400011],[-10.012074347999942,53.481512762000065],[-10.031849738999881,53.480292059000035],[-10.06940670499989,53.484767971000096],[-10.10728919199991,53.49445221600014],[-10.128163214999887,53.508856512000115],[-10.129139777999853,53.51520416900014],[-10.134755011999857,53.52708567900002],[-10.143137173999918,53.53851959800015],[-10.152658657999922,53.543605861000074],[-10.181752081999889,53.53864166900003],[-10.193470831999889,53.53803131700006],[-10.203236456999917,53.543605861000074],[-10.18028723899991,53.55548737200003],[-10.156971808999913,53.55516185100011],[-10.132801886999914,53.55068594000012],[-10.107655402999853,53.54979075700005],[-10.10973059799994,53.554266669000114],[-10.11302649599989,53.56574127800015],[-10.11510169199991,53.5702985700001],[-10.070668097999885,53.57001373900006],[-10.025746222999885,53.56289297100001],[-10.020008917999917,53.55898672100003],[-10.005238410999937,53.543605861000074],[-9.995716925999943,53.546210028000175],[-9.981678839999887,53.558783270000056],[-9.971058722999942,53.56289297100001],[-10.031890428999873,53.587144273000106],[-10.04678300699993,53.59926992400009],[-10.008656378999945,53.604437567],[-9.930734829999892,53.59979889500006],[-9.902251756999874,53.604437567],[-9.867909308999913,53.61737702],[-9.854400193999934,53.61810944200011],[-9.843902147999868,53.615464585000055],[-9.822865363999938,53.60643138200014],[-9.775054490999906,53.60130442900011],[-9.696766730999911,53.59821198100003],[-9.696766730999911,53.604437567],[-9.714100714999915,53.609849351000044],[-9.78376217399989,53.60626862200017],[-9.827259894999912,53.61619700700008],[-9.908436652999853,53.64606354400017],[-9.922678188999924,53.69074127800003],[-9.916737433999911,53.712103583000086],[-9.90566972599987,53.72850169499999],[-9.899525519999912,53.743841864000146],[-9.908436652999853,53.762111721],[-9.89891516799986,53.766058661],[-9.860991990999905,53.77016836100013],[-9.833892381999902,53.77635325700011],[-9.810210740999878,53.778062242000104],[-9.799468553999873,53.78025950700011],[-9.789214647999927,53.786607164000046],[-9.783436652999882,53.78709544500013],[-9.763172980999855,53.779242255000135],[-9.752023891999926,53.77635325700011],[-9.566395636999886,53.7962914080001],[-9.566395636999886,53.803656317],[-9.581532355999883,53.80532461100001],[-9.621652798999918,53.81732819200012],[-9.616281704999947,53.81940338700015],[-9.612131313999896,53.82160065300006],[-9.607533331999889,53.82339101800012],[-9.601144985999952,53.82416413000006],[-9.601144985999952,53.831000067000055],[-9.605458136999857,53.839178778000175],[-9.594838019999912,53.848211981000176],[-9.560210740999935,53.865139065000065],[-9.568348761999857,53.86554596600017],[-9.586903449999852,53.8719750020001],[-9.578928188999896,53.87612539300012],[-9.572824673999916,53.882228908000016],[-9.568592902999882,53.890082098],[-9.566395636999886,53.89931875200015],[-9.573109503999945,53.898504950000145],[-9.577381964999859,53.89752838700015],[-9.5814509759999,53.895738022999986],[-9.586903449999852,53.89248281500012],[-9.615467902999853,53.89883047100007],[-9.758168097999913,53.89931875200015],[-9.856597459999932,53.866278387000094],[-9.91075598899991,53.85871002800014],[-9.943755662999877,53.87938060100008],[-9.931385870999918,53.885158596000124],[-9.92516028599988,53.91303131700009],[-9.908436652999853,53.920355536],[-9.911284959999875,53.92959219000015],[-9.91161048099991,53.93398672100012],[-9.908436652999853,53.94086334800015],[-9.908436652999853,53.94708893400009],[-9.91588294199991,53.94708893400009],[-9.91588294199991,53.95384349200004],[-9.868031378999888,53.961371161],[-9.85924231699991,53.95868561400011],[-9.837066209999959,53.94916413000011],[-9.823353644999912,53.94708893400009],[-9.811634894999939,53.94171784100014],[-9.80760657499988,53.91828034100017],[-9.796050584999932,53.912909247000115],[-9.787505662999932,53.91608307500017],[-9.787831183999856,53.92426178600009],[-9.78954016799986,53.93524811400014],[-9.785511847999883,53.94708893400009],[-9.794911261999914,53.95307038000011],[-9.803089972999913,53.960516669000086],[-9.812652147999898,53.966294664000074],[-9.826486782999892,53.967596747000144],[-9.826486782999892,53.961371161],[-9.82022050699996,53.95384349200004],[-9.831695115999906,53.95628489800008],[-9.838531053999901,53.96356842699999],[-9.85020911399991,53.98847077000012],[-9.849517381999874,53.993312893],[-9.849598761999857,53.99750397300012],[-9.854400193999934,54.00234609600001],[-9.860829230999855,54.00311920800014],[-9.877674933999856,54.00189850500011],[-9.881092902999882,54.0053571640001],[-9.884388800999915,54.01166413000005],[-9.89167232999992,54.017075914000095],[-9.89891516799986,54.025336005],[-9.902251756999874,54.04018789300015],[-9.897694464999915,54.055121161],[-9.886708136999857,54.05971914300012],[-9.873443162999934,54.06220123900006],[-9.861887173999918,54.07123444200006],[-9.87588456899988,54.074855861000124],[-9.876088019999912,54.08063385600009],[-9.867339647999955,54.08673737200009],[-9.854400193999934,54.09105052299999],[-9.861887173999918,54.09788646000002],[-9.833892381999902,54.112127997000115],[-9.843495245999861,54.11701080900018],[-9.855091925999886,54.11737702],[-9.881092902999882,54.112127997000115],[-9.878570115999935,54.103949286],[-9.879709438999896,54.10024648600016],[-9.884999152999853,54.09894440300014],[-9.895375128999945,54.09788646000002],[-9.895375128999945,54.09105052299999],[-9.88853919199994,54.09105052299999],[-9.91738847599987,54.069728908],[-9.945546027999853,54.066229559000035],[-9.970692511999914,54.07855866100009],[-9.990956183999856,54.104681708000115],[-9.971547003999916,54.10423411700013],[-9.926380988999881,54.112127997000115],[-9.908436652999853,54.11835358300006],[-9.938872850999898,54.13165924700009],[-9.951079881999874,54.14126211100015],[-9.95685787699992,54.153143622000115],[-9.950347459999932,54.15070221600008],[-9.93663489499991,54.14789459800012],[-9.930083787999934,54.14569733300014],[-9.942738410999908,54.157456773000106],[-9.977284308999913,54.18048737200009],[-9.963775193999936,54.174953518000066],[-9.952015753999945,54.174627997000144],[-9.942534959999932,54.17890045800006],[-9.936350063999981,54.18732330900009],[-9.988189256999874,54.21312083500014],[-10.010894334999932,54.21832916900003],[-10.025746222999885,54.20774974199999],[-10.01146399599989,54.197088934000064],[-10.016997850999898,54.188666083],[-10.03380286399991,54.184719143],[-10.052967902999882,54.18732330900009],[-10.04405676999994,54.17698802300002],[-10.03937740799992,54.17365143400015],[-10.03937740799992,54.166815497000144],[-10.053537563999953,54.16803620000017],[-10.065785285999908,54.16640859600015],[-10.087147589999887,54.159328518000095],[-10.087147589999887,54.153143622000115],[-10.074126756999902,54.15021393400009],[-10.069162563999924,54.14427317900008],[-10.06663977799991,54.125189520000085],[-10.075184699999852,54.12494538000014],[-10.094593878999945,54.11835358300006],[-10.0814509759999,54.11298248900003],[-10.069081183999856,54.10366445500007],[-10.06688391799986,54.094916083],[-10.083973761999914,54.09105052299999],[-10.10260982999989,54.0917829450001],[-10.117421027999882,54.09589264500006],[-10.126576300999941,54.10602448100011],[-10.128163214999887,54.125189520000085],[-10.122222459999875,54.13703034100014],[-10.099598761999886,54.165472723000065],[-10.094593878999945,54.17698802300002],[-10.091216600999928,54.194973049000126],[-10.082753058999884,54.203273830000015],[-10.071441209999904,54.20970286700013],[-10.059803839999915,54.22207265800015],[-10.091135219999954,54.22247955900015],[-10.103830532999922,54.22622304900001],[-10.11510169199991,54.235052802000055],[-10.096058722999913,54.23517487200003],[-10.087025519999912,54.24433014500003],[-10.081532355999883,54.25747304900007],[-10.073475714999859,54.269191799000154],[-10.062489386999886,54.27505117400001],[-10.018299933999911,54.29026927299999],[-10.014230923999946,54.29450104400011],[-10.011830206999917,54.29962799700011],[-10.007639126999889,54.303534247000115],[-9.997792120999861,54.303941148000106],[-9.991932745999918,54.300685940000065],[-9.989735480999911,54.29474518400006],[-9.988352016999926,54.288316148000135],[-9.984730597999885,54.283514716000134],[-9.971791144999882,54.27724844],[-9.954497850999871,54.27195872600011],[-9.936838344999956,54.270697333000115],[-9.922678188999924,54.27659739800004],[-9.915353969999927,54.26874420800005],[-9.907215949999909,54.264471747000144],[-9.898304816999882,54.264471747000144],[-9.88853919199994,54.269191799000154],[-9.886870897999925,54.26605866100009],[-9.887033657999893,54.264471747000144],[-9.885975714999944,54.263739325000024],[-9.881092902999882,54.26300690300009],[-9.903309699999909,54.2379417990001],[-9.927154100999898,54.22675202000009],[-9.952015753999945,54.228501694999984],[-9.977284308999913,54.24249909100005],[-9.983631964999944,54.222967841000134],[-9.968129035999906,54.21702708500014],[-9.944447394999912,54.21605052300004],[-9.926380988999881,54.21112702],[-9.90990149599989,54.20441315300015],[-9.896107550999886,54.21161530199999],[-9.882883266999952,54.22288646000008],[-9.868031378999888,54.228216864000146],[-9.881662563999924,54.24038320500012],[-9.875152147999925,54.256496486000096],[-9.858998175999885,54.27057526200004],[-9.843861456999889,54.27659739800004],[-9.82213294199991,54.27293528900002],[-9.787098761999912,54.25775788000002],[-9.765004035999937,54.25556061400012],[-9.77086341099988,54.264146226000136],[-9.77867591099988,54.269598700000145],[-9.799183722999913,54.27659739800004],[-9.799183722999913,54.283514716000134],[-9.789418097999885,54.28583405200011],[-9.780018683999856,54.286281643],[-9.758168097999913,54.283514716000134],[-9.776844855999883,54.28998444200015],[-9.829213019999884,54.29686107000004],[-9.840077277999853,54.307074286],[-9.846018032999893,54.321437893000066],[-9.843983527999853,54.328762111000074],[-9.785511847999883,54.33808014500012],[-9.764312303999901,54.33490631700015],[-9.72630774599989,54.32078685100011],[-9.706939256999874,54.31761302300005],[-9.535389777999882,54.31020742400007],[-9.524281378999945,54.311346747000115],[-9.505523240999878,54.316392320000126],[-9.494374152999853,54.31761302300005],[-9.48570716099988,54.31586334800006],[-9.471913214999859,54.307074286],[-9.463978644999884,54.303941148000106],[-9.38451087099989,54.297186591000084],[-9.374826626999917,54.29873281500012],[-9.362619594999956,54.302720445000105],[-9.351144985999895,54.30817291900006],[-9.34361731699994,54.313910223],[-9.33421790299991,54.318304755],[-9.322010870999861,54.31708405200008],[-9.277251756999902,54.304592190000065],[-9.268422003999945,54.303941148000106],[-9.260975714999887,54.2997093770001],[-9.252837693999965,54.280951239000146],[-9.247670050999941,54.27659739800004],[-9.22988847599987,54.278469143],[-9.219634568999936,54.28058502800003],[-9.217600063999924,54.283514716000134],[-9.211008266999926,54.27562083500008],[-9.209462042999888,54.26756419500013],[-9.211984829999919,54.260443427],[-9.217600063999924,54.25556061400012],[-9.217600063999924,54.248724677],[-9.195871548999946,54.24249909100005],[-9.195871548999946,54.235052802000055],[-9.21507727799991,54.227118231000084],[-9.2103572259999,54.21784088700004],[-9.161976691999882,54.19204336100002],[-9.149322068999908,54.18060944200006],[-9.141224738999881,54.16535065300009],[-9.141224738999881,54.14569733300014],[-9.134999152999939,54.14569733300014],[-9.134185350999928,54.16376373900005],[-9.130360480999911,54.179103908000016],[-9.128895636999857,54.19306061400009],[-9.134999152999939,54.20774974199999],[-9.112538214999915,54.213324286],[-9.090199347999885,54.22662995000012],[-9.072987433999883,54.246771552000055],[-9.066070115999878,54.272894598],[-9.051258917999917,54.28949616100006],[-9.01748613199993,54.29189687700001],[-8.956857876999946,54.283514716000134],[-8.949859178999873,54.28485748900012],[-8.94440670499992,54.28823476800015],[-8.939035610999895,54.28998444200015],[-8.92756100199992,54.284125067],[-8.910227016999954,54.27789948100006],[-8.894195115999963,54.27448151200004],[-8.871815558999854,54.265122789000095],[-8.856597459999875,54.26300690300009],[-8.807362433999856,54.26300690300009],[-8.785633917999888,54.266831773000106],[-8.765126105999911,54.27659739800004],[-8.737456834999932,54.26410553600014],[-8.676421678999873,54.27130768400014],[-8.64834550699996,54.26300690300009],[-8.642486131999902,54.25360748900005],[-8.639556443999878,54.24209219000012],[-8.633290167999945,54.23236725500008],[-8.605051235999952,54.22565338700004],[-8.593495245999861,54.219061591000134],[-8.572661912999877,54.20034414300009],[-8.559315558999856,54.20661041900014],[-8.543853318999936,54.20864492400006],[-8.511219855999883,54.20774974199999],[-8.511219855999883,54.214544989],[-8.52554277299987,54.2188988300001],[-8.543609178999901,54.22215403900004],[-8.559234178999873,54.22772858300006],[-8.565825975999957,54.23883698100017],[-8.572132941999882,54.246527411],[-8.58731035099987,54.252346096000146],[-8.605620897999927,54.25556061400012],[-8.621001756999874,54.25556061400012],[-8.621001756999874,54.26300690300009],[-8.614247199999852,54.26780833500008],[-8.602650519999912,54.279689846000124],[-8.593739386999884,54.283514716000134],[-8.5716853509999,54.27716705900012],[-8.558216925999915,54.27521393400014],[-8.552235480999883,54.28009674700002],[-8.540760870999861,54.284369208000136],[-8.470285610999952,54.27659739800004],[-8.485951300999943,54.288641669000135],[-8.50413977799991,54.297186591000084],[-8.523345506999874,54.3022321640001],[-8.542307094999899,54.303941148000106],[-8.562652147999898,54.30304596600003],[-8.569813605999911,54.30573151200009],[-8.572661912999877,54.313910223],[-8.567209438999924,54.32416413000014],[-8.554798956999889,54.32147858300006],[-8.53172766799986,54.31020742400007],[-8.511708136999886,54.3173688820001],[-8.519154425999943,54.32672760600006],[-8.540516730999911,54.33466217700011],[-8.562123175999915,54.33808014500012],[-8.661366339999859,54.33803945500013],[-8.666818813999981,54.341213283000094],[-8.668283657999922,54.35175202000014],[-8.663889126999946,54.35927969],[-8.653797980999883,54.36587148600007],[-8.641753709999875,54.37042877800003],[-8.612863735999952,54.37547435100008],[-8.496571417999888,54.423488674000154],[-8.480132615999878,54.42682526200018],[-8.474110480999883,54.42999909100014],[-8.471262173999918,54.43789297100004],[-8.470285610999952,54.45783112200011],[-8.466704881999902,54.475002346000124],[-8.45921790299991,54.47186920800006],[-8.451893683999911,54.461004950000174],[-8.449126756999874,54.45477936400003],[-8.44513912699989,54.45392487200011],[-8.443755662999905,54.45343659100002],[-8.443023240999876,54.44733307500003],[-8.41392981699991,54.45954010600012],[-8.3841853509999,54.46824778900001],[-8.381662563999953,54.46857330900012],[-8.300119594999927,54.47797272300015],[-8.28734290299991,54.479437567],[-8.242095506999874,54.49774811400005],[-8.210194464999859,54.50193919500002],[-8.210194464999859,54.50942617400007],[-8.243275519999884,54.51019928600009],[-8.257964647999898,54.51422760600014],[-8.270985480999883,54.52366771000008],[-8.216379360999923,54.550360419000086],[-8.218861456999946,54.569769598],[-8.172515428999873,54.59446849199999],[-8.175404425999915,54.61928945500013],[-8.164662238999881,54.61530182500014],[-8.157622850999928,54.6108259140001],[-8.150054490999876,54.60712311400006],[-8.137562628999945,54.605617580000015],[-8.126088019999912,54.63788483300014],[-8.120838995999918,54.64655182500003],[-8.123890753999916,54.64862702000015],[-8.124908006999902,54.64891185099999],[-8.125599738999938,54.649603583000115],[-8.127674933999856,54.652777411],[-8.146799282999922,54.642075914000074],[-8.16665605399993,54.63613515800013],[-8.234934048999918,54.62938060100011],[-8.271311001999917,54.61200592700011],[-8.292103644999884,54.605617580000015],[-8.292103644999884,54.61180247600008],[-8.281727667999888,54.62055084800015],[-8.28034420499992,54.62962474200004],[-8.287261522999927,54.63678620000009],[-8.30174719999988,54.639797268000095],[-8.316761847999885,54.635443427],[-8.342355923999946,54.61615631700006],[-8.367827928999873,54.608628648000106],[-8.41454016799986,54.57835521000011],[-8.427967902999853,54.57172272300015],[-8.442046678999901,54.56671784100011],[-8.456613735999923,54.56464264500009],[-8.456613735999923,54.57078685100008],[-8.432281053999873,54.58779531500012],[-8.417103644999882,54.59516022300012],[-8.398182745999861,54.598130601000136],[-8.384755011999857,54.60565827],[-8.38768469999988,54.619859117000104],[-8.400054490999906,54.6285667990001],[-8.415028449999852,54.61928945500013],[-8.421864386999857,54.61928945500013],[-8.418690558999911,54.64130280200014],[-8.431630011999914,54.64130280200014],[-8.448312954999949,54.62763092700011],[-8.456613735999923,54.60871002800009],[-8.461537238999881,54.60285065300006],[-8.472075975999926,54.60785553600009],[-8.481760219999899,54.615952867000104],[-8.486195441999882,54.622951565000086],[-8.485218878999916,54.62738678600006],[-8.486154751999889,54.63129303600006],[-8.494130011999856,54.632961330000064],[-8.500803188999896,54.63202545799999],[-8.511301235999952,54.62775299700017],[-8.51748613199993,54.62612539300015],[-8.541737433999913,54.625230210000055],[-8.553456183999911,54.62262604400017],[-8.564035610999952,54.608832098000065],[-8.57677161399991,54.61090729400017],[-8.596913214999859,54.61928945500013],[-8.672596808999856,54.61945221600011],[-8.690012173999918,54.62612539300015],[-8.681955532999979,54.63580963700012],[-8.691395636999886,54.64130280200014],[-8.774159308999856,54.659857489000146],[-8.791818813999953,54.659613348],[-8.788441535999937,54.66339752800003],[-8.786366339999915,54.666978257000025],[-8.783436652999882,54.67039622600011],[-8.778146938999924,54.67389557500009],[-8.778146938999924,54.68008047100007],[-8.791086391999926,54.68488190300014],[-8.797759568999878,54.69196198100011],[-8.795521613999881,54.698431708000115],[-8.781564907999922,54.701239325000174],[-8.766957160999908,54.702215887000065],[-8.755197719999927,54.70575592700011],[-8.747425910999908,54.71308014500011],[-8.744618292999888,54.72508372600005],[-8.733265753999888,54.73261139500003],[-8.662098761999884,54.76264069200006],[-8.636586066999882,54.76845937700001],[-8.53620357999989,54.766913153000175],[-8.483713344999956,54.75678131700012],[-8.456613735999923,54.75641510600009],[-8.456613735999923,54.76264069200006],[-8.526600714999915,54.77277252800012],[-8.545399542999888,54.783758856000176],[-8.529896613999881,54.78807200700008],[-8.484934048999975,54.78937409100017],[-8.473378058999856,54.78681061400006],[-8.46080481699994,54.77484772300012],[-8.44469153599988,54.76312897300015],[-8.426665818999936,54.757228908000016],[-8.408192511999914,54.76264069200006],[-8.461293097999942,54.79352448100012],[-8.498890753999945,54.801214911000145],[-8.53498287699989,54.81647370000012],[-8.558420376999948,54.81785716399999],[-8.554351365999905,54.82754140800013],[-8.546986456999917,54.82990143400009],[-8.537098761999884,54.82977936400012],[-8.524891730999911,54.83152903900013],[-8.515126105999883,54.83600495000009],[-8.50186113199996,54.846502997000144],[-8.490712042999917,54.85199616100009],[-8.471018032999893,54.84052155200014],[-8.449086066999882,54.83942291900008],[-8.401966925999886,54.844549872000115],[-8.346262173999946,54.8316917990001],[-8.325672980999911,54.83152903900013],[-8.325672980999911,54.838324286000145],[-8.343251105999855,54.83991120000017],[-8.365386522999925,54.84540436400003],[-8.38133704299986,54.85594310100008],[-8.380848761999856,54.872503973000114],[-8.366688605999855,54.881089585000055],[-8.327381964999914,54.87702057500009],[-8.312652147999927,54.87933991100006],[-8.325835740999878,54.88580963700015],[-8.3370255199999,54.90363190300003],[-8.350453253999888,54.90729401200017],[-8.368804490999935,54.908189194999984],[-8.374012824999852,54.90729401200017],[-8.378163214999887,54.902777411000116],[-8.379790818999908,54.89573802300008],[-8.380116339999915,54.88922760600015],[-8.380848761999856,54.886175848000065],[-8.409291144999884,54.88703034100017],[-8.43260657499988,54.901556708000115],[-8.450795050999886,54.92206452000006],[-8.463449673999946,54.94082265800013],[-8.450428839999859,54.94627513200008],[-8.440907355999855,54.94342682500003],[-8.431507941999937,54.93768952000014],[-8.41844641799986,54.93455638200008],[-8.40461178299995,54.935695705000015],[-8.391346808999913,54.938666083000115],[-8.36656653599988,54.94818756700011],[-8.396148240999905,54.955267645000085],[-8.41860917899993,54.96808502800012],[-8.456613735999923,54.99542877800009],[-8.456613735999923,55.002875067000055],[-8.448109503999888,55.00763580900015],[-8.437733527999882,55.009833075000145],[-8.426421678999901,55.00861237200006],[-8.415028449999852,55.002875067000055],[-8.404693162999934,55.01288483300006],[-8.401966925999886,55.016546942],[-8.408192511999914,55.016546942],[-8.403187628999888,55.03066640800013],[-8.395253058999913,55.03314850500006],[-8.385324673999918,55.032416083000115],[-8.374012824999852,55.036363023000106],[-8.354481574999852,55.060532945000126],[-8.34740149599989,55.06427643400015],[-8.337880011999914,55.05841705900012],[-8.335072394999939,55.03506094000012],[-8.325672980999911,55.03021881700015],[-8.319976365999935,55.03432851800009],[-8.313588019999912,55.05267975500014],[-8.305165167999888,55.058050848],[-8.316517706999946,55.08746979400008],[-8.320423956999946,55.10492584800015],[-8.316029425999943,55.11273834800015],[-8.304351365999878,55.119208075000145],[-8.288400844999954,55.15013255399999],[-8.278472459999932,55.16054922100007],[-8.263010219999927,55.161078192000055],[-8.206532355999911,55.146877346000124],[-8.188384568999908,55.14899323100015],[-8.157622850999928,55.15839264500009],[-8.141265428999901,55.16054922100007],[-8.147531704999949,55.151760158],[-8.154286261999884,55.145249742000104],[-8.15957597599987,55.13873932500003],[-8.161732550999972,55.129461981000176],[-8.156483527999882,55.12449778900013],[-8.144683397999898,55.13019440300009],[-8.114857550999915,55.154730536000116],[-8.054269985999923,55.176947333000086],[-8.034820115999933,55.18097565300014],[-8.020985480999855,55.18878815300006],[-8.011789516999954,55.20506419499999],[-7.999582485999895,55.21963125200001],[-7.976796027999882,55.22190989799999],[-7.950184699999909,55.210272528000175],[-7.958648240999877,55.19920482000013],[-8.004139777999853,55.18097565300014],[-8.004139777999853,55.17413971600003],[-7.961984829999891,55.18720123900003],[-7.95571855399993,55.184719143000095],[-7.94904537699989,55.179836330000015],[-7.933990037999876,55.18065013200011],[-7.918039516999954,55.18451569200012],[-7.908558722999942,55.18842194200012],[-7.894886847999913,55.17413971600003],[-7.894886847999913,55.167914130000085],[-7.898793097999913,55.15639883000013],[-7.890451626999948,55.15827057500012],[-7.875559048999889,55.16494375200015],[-7.860096808999883,55.167914130000085],[-7.865061001999918,55.15814850500014],[-7.872873501999919,55.15159739800005],[-7.882964647999871,55.1479352890001],[-7.894886847999913,55.146877346000124],[-7.894886847999913,55.140082098000036],[-7.876535610999952,55.14052969],[-7.865223761999886,55.13849518400018],[-7.856434699999909,55.13898346600017],[-7.846506313999924,55.146877346000124],[-7.834706183999857,55.16498444200015],[-7.837554490999877,55.17584870000003],[-7.860096808999883,55.19464752800009],[-7.866118943999879,55.21491120000009],[-7.850249803999958,55.22719961100016],[-7.823963995999918,55.23859284100003],[-7.798695441999882,55.25608958500008],[-7.796050584999904,55.25104401200003],[-7.795033331999917,55.25088125200007],[-7.791249152999909,55.248683986000074],[-7.81419837099989,55.20184967700011],[-7.815744594999928,55.19464752800009],[-7.813710089999915,55.1928571640001],[-7.810454881999873,55.18870677300008],[-7.805572068999878,55.18414948100012],[-7.798695441999882,55.18097565300014],[-7.789784308999855,55.180853583000086],[-7.779937303999929,55.18744538000005],[-7.770741339999859,55.18842194200012],[-7.757313605999855,55.184759833000086],[-7.73664303299995,55.176662502000156],[-7.717600063999952,55.16657135600017],[-7.70929928299995,55.15713125200007],[-7.707386847999913,55.15346914300003],[-7.698557094999956,55.14036692900005],[-7.695627407999921,55.13320547100001],[-7.695952928999873,55.12604401200015],[-7.701079881999874,55.108140367000104],[-7.702504035999936,55.099066473],[-7.694732225999927,55.108058986000046],[-7.678822394999912,55.13446686400012],[-7.671701626999975,55.140082098000036],[-7.668202277999881,55.147202867000075],[-7.674712693999879,55.163031317],[-7.684071417999917,55.178534247000115],[-7.688832160999908,55.184719143000095],[-7.690337693999964,55.194525458000115],[-7.695057745999861,55.207464911000116],[-7.703602667999887,55.21845123900008],[-7.716053839999915,55.22190989799999],[-7.723947719999983,55.21458567900008],[-7.721994594999927,55.20026276200018],[-7.715402798999945,55.18488190300014],[-7.70929928299995,55.17413971600003],[-7.72313391799986,55.17572663000006],[-7.732818162999934,55.18146393400003],[-7.741037563999924,55.18862539300009],[-7.75023352799991,55.19464752800009],[-7.779652472999884,55.199652411000116],[-7.791737433999883,55.20600006700006],[-7.788156704999921,55.21857330900015],[-7.76085364499994,55.25043366100009],[-7.76085364499994,55.25608958500008],[-7.725087042999916,55.252671617000075],[-7.70929928299995,55.25608958500008],[-7.673491990999962,55.27387116100006],[-7.660878058999884,55.276556708000115],[-7.6439509759999,55.27277252800011],[-7.63329016799986,55.26308828300012],[-7.625314907999893,55.25315989800005],[-7.616525844999926,55.248683986000074],[-7.611398891999925,55.24140045800006],[-7.613189256999902,55.225775458000086],[-7.617502407999921,55.2105980490001],[-7.619943813999953,55.20490143400012],[-7.614491339999915,55.195990302000084],[-7.601470506999931,55.189276434000035],[-7.572743292999888,55.18097565300014],[-7.572255011999886,55.16917552299999],[-7.564116990999877,55.15574778899999],[-7.55247962099986,55.14468008000015],[-7.541411912999934,55.140082098000036],[-7.52782141799986,55.13255442900005],[-7.525786912999933,55.11615631700015],[-7.531605597999886,55.099676825000145],[-7.541411912999934,55.092230536],[-7.556385870999861,55.089748440000065],[-7.56822669199991,55.08368561400005],[-7.586415167999917,55.07111237200017],[-7.641021287999876,55.05068594],[-7.641021287999876,55.0438500020001],[-7.581166144999913,55.050441799000154],[-7.561838344999898,55.04450104400002],[-7.572743292999888,55.02338288000011],[-7.584584113999937,55.016058661000116],[-7.634185350999871,54.99542877800009],[-7.667551235999922,54.968207098000086],[-7.681385870999918,54.961249091000106],[-7.681385870999918,54.954413153000175],[-7.661488410999937,54.95795319200006],[-7.643381313999924,54.96527741100006],[-7.548451300999885,55.018459377000156],[-7.537993943999908,55.01992422100012],[-7.529367641999897,55.030707098000114],[-7.509266730999855,55.035956122000115],[-7.486317511999886,55.03925202000015],[-7.469105597999942,55.0438500020001],[-7.456166144999941,55.05613841400004],[-7.450021938999953,55.07233307500008],[-7.454416469999955,55.08624909100017],[-7.472767706999917,55.092230536],[-7.477528449999909,55.09638092700011],[-7.473378058999883,55.10545482000013],[-7.462880011999886,55.11953359600007],[-7.462880011999886,55.14345937700013],[-7.470041469999926,55.14516836100013],[-7.510080532999979,55.18097565300014],[-7.533680792999916,55.19236888200011],[-7.541411912999934,55.19806549700009],[-7.545643683999855,55.204779364000146],[-7.549549933999856,55.215399481000176],[-7.549387173999889,55.225165106000034],[-7.527088995999946,55.236761786000145],[-7.516224738999937,55.25413646000011],[-7.513579881999874,55.27435944200015],[-7.524322068999878,55.29026927300004],[-7.507394985999895,55.28912995000003],[-7.492746548999889,55.28534577],[-7.478586391999954,55.28392161700013],[-7.462880011999886,55.29026927300004],[-7.465565558999883,55.29360586100007],[-7.466420050999886,55.29584381700006],[-7.467030402999852,55.29865143400012],[-7.469105597999942,55.30390045799999],[-7.449208136999856,55.29401276200009],[-7.427967902999882,55.286566473000036],[-7.405913865999879,55.286932684000035],[-7.36778723899991,55.310614325000145],[-7.347523566999882,55.314276434000085],[-7.327504035999937,55.30849844000012],[-7.312082485999895,55.29026927300004],[-7.333159959999904,55.28961823100012],[-7.339955206999947,55.29026927300004],[-7.320871548999945,55.28217194200012],[-7.298817511999858,55.27627187700009],[-7.276600714999915,55.275824286],[-7.256743943999908,55.284002997000115],[-7.320668097999913,55.31329987200003],[-7.350697394999941,55.33519114800007],[-7.353016730999912,55.35854726800015],[-7.379546678999873,55.367661851000044],[-7.391590949999908,55.37372467700013],[-7.400217251999891,55.38027578300013],[-7.384429490999934,55.38637929900001],[-7.36632239499994,55.383978583000086],[-7.332508917999859,55.372788804000045],[-7.263579881999932,55.35854726800015],[-7.247303839999886,55.35716380400008],[-7.208851691999882,55.34511953300016],[-7.195423956999889,55.338609117000075],[-7.144154425999943,55.293646552000084],[-7.12905839799987,55.285834052]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Iceland","sov_a3":"ISL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iceland","adm0_a3":"ISL","geou_dif":0,"geounit":"Iceland","gu_a3":"ISL","su_dif":0,"subunit":"Iceland","su_a3":"ISL","brk_diff":0,"name":"Iceland","name_long":"Iceland","brk_a3":"ISL","brk_name":"Iceland","brk_group":null,"abbrev":"Iceland","postal":"IS","formal_en":"Republic of Iceland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iceland","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":4,"mapcolor13":9,"pop_est":306694,"gdp_md_est":12710,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"IC","iso_a2":"IS","iso_a3":"ISL","iso_n3":"352","un_a3":"352","wb_a2":"IS","wb_a3":"ISL","woe_id":23424845,"woe_id_eh":23424845,"woe_note":"Exact WOE match as country","adm0_a3_is":"ISL","adm0_a3_us":"ISL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"ISL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-20.269642706999917,63.40912506700006],[-20.279530402999907,63.40273672100012],[-20.286773240999935,63.406480210000076],[-20.29161536399991,63.41535065300012],[-20.298085089999915,63.42308177300013],[-20.305572068999904,63.434759833000115],[-20.302601691999882,63.44594961100013],[-20.2826228509999,63.45058828300016],[-20.258859829999892,63.45136139500009],[-20.25694739499994,63.44965241100009],[-20.2618708979999,63.444647528000026],[-20.257923956999917,63.440985419000086],[-20.252552863999966,63.42951080900003],[-20.260161912999905,63.41864655200006],[-20.269642706999917,63.40912506700006]]],[[[-17.74315344999991,63.70319245000011],[-17.749256964999887,63.69196198100009],[-17.764963344999956,63.681952216000035],[-17.771107550999915,63.68073151200009],[-17.764068162999962,63.68488190300006],[-17.759022589999915,63.6901716170001],[-17.760609503999945,63.69599030200008],[-17.76895097599993,63.698919989],[-17.779693162999934,63.698228257000046],[-17.82331295499995,63.69139232000013],[-17.820708787999934,63.69965241100012],[-17.790150519999912,63.713202216000084],[-17.773101365999878,63.71808502800014],[-17.765695766999983,63.719142971],[-17.751291469999927,63.71784088700012],[-17.743763800999943,63.711615302000055],[-17.74315344999991,63.70319245000011]]],[[[-18.3567602199999,65.9816348330001],[-18.369943813999953,65.97801341400007],[-18.381825324999905,65.97968170800009],[-18.390492316999882,65.9834658870001],[-18.39659583199989,65.9894880230001],[-18.39879309799997,65.997259833],[-18.404611782999922,66.00946686400009],[-18.414418097999942,66.02366771],[-18.408558722999913,66.02741120000002],[-18.38931230399987,66.018540757],[-18.380238410999965,66.01211172100007],[-18.37132727799991,66.00653717700006],[-18.3567602199999,65.99323151200004],[-18.3567602199999,65.9816348330001]]],[[[-16.022938605999883,66.53660716399999],[-15.938710089999887,66.50267161700005],[-15.891224738999881,66.49494049700003],[-15.904693162999875,66.48578522300015],[-15.920318162999934,66.48167552300002],[-15.933338995999918,66.47549062700013],[-15.93960527299987,66.46015045800009],[-15.929351365999933,66.4604352890001],[-15.925933397999925,66.46015045800009],[-15.925933397999925,66.45392487200003],[-15.946400519999914,66.44647858300014],[-15.941029425999941,66.44367096600008],[-15.93106035099987,66.43573639500012],[-15.925933397999925,66.43280670800002],[-15.937652147999927,66.42381419499999],[-15.924061652999882,66.42234935100014],[-15.888091600999898,66.42601146],[-15.847971157999895,66.42230866100014],[-15.830393032999948,66.42601146],[-15.83226477799991,66.42145416900003],[-15.834868943999908,66.41030508000001],[-15.836537238999938,66.40550364800013],[-15.741037563999924,66.40550364800013],[-15.722971157999922,66.40281810100005],[-15.706695115999876,66.39590078300013],[-15.697417772999925,66.38686758000013],[-15.699452277999853,66.37763092700008],[-15.699452277999853,66.37140534100003],[-15.679554816999968,66.34406159100014],[-15.72130286399991,66.31240469000006],[-15.744862433999854,66.29954661700005],[-15.775135870999861,66.28945547100008],[-15.761463995999916,66.27521393400018],[-15.749501105999883,66.28066640800002],[-15.737294074999909,66.27757396000014],[-15.723459438999894,66.27163320500001],[-15.690541144999912,66.26577383000007],[-15.687001105999855,66.25869375200001],[-15.691395636999914,66.24787018400009],[-15.699452277999853,66.23419830900015],[-15.68390865799995,66.22874583500014],[-15.610666469999899,66.22736237200014],[-15.575428839999857,66.23395416900003],[-15.563588019999914,66.23261139500012],[-15.558583136999857,66.22809479400009],[-15.54857337099989,66.221177476],[-15.544260219999956,66.22125885600015],[-15.538319464999859,66.22304922100015],[-15.52871660099987,66.22736237200014],[-15.526478644999882,66.21649811400006],[-15.520130988999938,66.207709052],[-15.510121222999883,66.20164622600011],[-15.481922980999913,66.19635651200004],[-15.452015753999914,66.1826846370001],[-15.419667120999916,66.172308661],[-15.400135870999916,66.15851471600008],[-15.380360480999911,66.14996979400014],[-15.356760219999956,66.15851471600008],[-15.364816860999893,66.16010163000011],[-15.368031378999945,66.16205475500006],[-15.371083136999857,66.16596100500006],[-15.353505011999914,66.17121002800015],[-15.340443488999938,66.18219635600009],[-15.33234615799992,66.19794342700004],[-15.329457160999878,66.21747467700013],[-15.333485480999853,66.23761627800017],[-15.33788001199994,66.25177643400009],[-15.331288214999859,66.26146067900005],[-15.302154100999898,66.26837799700014],[-15.179025844999899,66.26837799700014],[-15.108754035999965,66.27838776200004],[-15.103260870999916,66.28611888200005],[-15.102284308999856,66.29535553600012],[-15.096750454999922,66.30312734600004],[-15.025949673999916,66.32184479400009],[-15.014800584999904,66.33380768400012],[-15.007801886999914,66.34910716399997],[-14.991118943999878,66.36131419500005],[-14.952137824999909,66.37763092700008],[-14.925445115999878,66.38532135600009],[-14.8397517569999,66.39183177299999],[-14.816151495999888,66.38910553600012],[-14.777699347999885,66.37579987200009],[-14.75413977799991,66.37140534100003],[-14.563628709999904,66.384507554],[-14.6107478509999,66.36322663000011],[-14.78819739499994,66.33038971600011],[-14.867176886999856,66.305853583],[-14.959136522999897,66.29645416900014],[-14.990589972999912,66.28583405200011],[-15.014800584999904,66.26837799700014],[-14.990305141999954,66.26459381700012],[-14.97826087099986,66.25950755400011],[-14.973215298999918,66.25161367400013],[-14.968129035999906,66.2496605490001],[-14.94640051999994,66.23183828300002],[-14.942209438999894,66.22736237200014],[-14.935210740999906,66.2219098980001],[-14.93976803299995,66.21010976800015],[-14.952137824999909,66.19330475500014],[-14.960357225999898,66.18577708500008],[-15.056019660999878,66.148138739],[-15.072865363999881,66.14484284100014],[-15.13463294199988,66.14325592700011],[-15.161000128999973,66.13361237200014],[-15.179351365999906,66.1113141950001],[-15.148589647999927,66.1014671900001],[-15.13345292899993,66.09870026200004],[-15.074126756999874,66.097113348],[-15.061390753999914,66.08934153900002],[-15.055775519999912,66.07037995000009],[-15.06627356699988,66.067328192],[-15.08462480399993,66.059556382],[-15.096750454999922,66.0560977230001],[-15.075998501999946,66.04962799700009],[-14.96320553299995,66.04804108300006],[-14.898060675999917,66.03558991100012],[-14.852691209999904,66.03717682500013],[-14.770415818999965,66.06785716400007],[-14.719349738999881,66.07037995000009],[-14.697010870999861,66.06549713700012],[-14.677316860999895,66.05621979400014],[-14.663238084999874,66.04116445500013],[-14.657866990999906,66.01850006699999],[-14.651478644999884,66.006740627],[-14.63744055899994,66.00275299700003],[-14.623402472999887,66.00141022300014],[-14.61693274599989,65.997748114],[-14.614613410999908,65.98627350500006],[-14.604725714999914,65.96393463700012],[-14.603342251999917,65.95302969000012],[-14.606353318999934,65.94891998899999],[-14.619130011999884,65.94354889500012],[-14.623768683999884,65.939398505],[-14.624379035999938,65.93480052300005],[-14.622873501999889,65.92389557500009],[-14.623768683999884,65.91958242400007],[-14.64683997299994,65.89496491100009],[-14.650461391999924,65.88816966400005],[-14.66201738199993,65.88393789300012],[-14.726796027999853,65.85065338700004],[-14.80052649599989,65.82794830900009],[-14.822987433999884,65.8158633480001],[-14.821156378999914,65.79840729400003],[-14.84080969999988,65.78412506700012],[-14.891265428999901,65.76121653900013],[-14.861439581999889,65.76203034100014],[-14.834868943999934,65.7709007830001],[-14.78819739499994,65.79604726800007],[-14.80361894399988,65.775580145],[-14.832346157999924,65.75315989799998],[-14.844105597999913,65.73517487200014],[-14.808705206999889,65.72772858300009],[-14.772816535999908,65.73200104400009],[-14.694406704999947,65.75079987200004],[-14.479725714999915,65.77488841400007],[-14.402455206999917,65.792425848],[-14.361561652999882,65.79677969],[-14.329497850999898,65.78237539300011],[-14.372873501999946,65.74038320500016],[-14.397613084999932,65.73004791900014],[-14.39513098899991,65.72150299700003],[-14.387806769999912,65.71312083500005],[-14.383615688999953,65.70970286700005],[-14.378977016999952,65.70718008000013],[-14.356271938999894,65.69985586100013],[-14.292958136999857,65.68219635600012],[-14.274322068999878,65.67251211100016],[-14.328684048999888,65.66559479400014],[-14.357818162999934,65.65607330900015],[-14.3822322259999,65.63027578300013],[-14.43390865799992,65.60480377800003],[-14.45421301999994,65.58344147300006],[-14.530181443999936,65.54547760600015],[-14.545399542999917,65.53290436400006],[-14.557036912999934,65.51788971600014],[-14.56236731699991,65.50116608300011],[-14.549631313999951,65.50901927299999],[-14.528309699999882,65.53082916900014],[-14.517648891999954,65.53534577],[-14.506174282999922,65.53803131700009],[-14.472645636999886,65.55231354400017],[-14.462310350999873,65.55890534100014],[-14.444081183999884,65.575140692],[-14.320220506999929,65.65241120000012],[-14.298491990999878,65.658840236],[-14.271717902999882,65.655951239],[-14.192372199999852,65.63153717700014],[-14.208078579999892,65.64105866100014],[-14.236480272999925,65.65395742400014],[-14.247629360999952,65.665025132],[-14.02790279899989,65.61041901200004],[-13.999908006999874,65.60858795800006],[-13.8900447259999,65.62018463700015],[-13.87140865799992,65.61904531500011],[-13.85968990799992,65.61416250200007],[-13.852284308999854,65.60219961100013],[-13.850941535999937,65.591986395],[-13.856516079999949,65.5850283870001],[-13.869618292999917,65.58315664300012],[-13.869618292999917,65.57689036699999],[-13.838205532999892,65.57737864799999],[-13.824370897999898,65.57538483300014],[-13.815012173999946,65.56940338700012],[-13.813954230999911,65.56244538000011],[-13.816477016999926,65.55329010600015],[-13.821278449999909,65.541489976],[-13.814442511999886,65.53416575700008],[-13.805775519999912,65.52863190300015],[-13.78766842399989,65.52167389500006],[-13.74111894399988,65.55036041900003],[-13.71544348899991,65.558294989],[-13.68529212099989,65.55516185100011],[-13.680083787999877,65.55097077000008],[-13.678863084999875,65.54458242400007],[-13.679066535999908,65.53856028900007],[-13.677845831999917,65.53534577],[-13.671620245999861,65.53457265800007],[-13.657215949999879,65.53644440300015],[-13.651193813999953,65.53534577],[-13.615956183999913,65.51886627800012],[-13.60960852799991,65.51422760600009],[-13.607980923999888,65.49213288],[-13.622222459999875,65.47825755400011],[-13.640614386999912,65.46869538000011],[-13.651193813999953,65.45962148600003],[-13.648671027999853,65.45380280200008],[-13.637196417999917,65.43475983300009],[-13.636830206999889,65.42609284100008],[-13.643462693999878,65.42218659100007],[-13.677845831999917,65.411810614],[-13.667632615999878,65.405707098],[-13.66783606699991,65.39809804900007],[-13.671376105999911,65.388861395],[-13.670969204999892,65.377630927],[-13.704741990999876,65.36733633000007],[-13.795806443999908,65.37311432500015],[-13.835519985999923,65.36399974200005],[-13.810861782999922,65.35504791900003],[-13.73306230399993,65.34349192900002],[-13.72984778599988,65.327093817],[-13.752674933999884,65.315863348],[-13.784535285999908,65.30980052300002],[-13.834339972999885,65.30963776200004],[-13.855458136999912,65.30683014500009],[-13.897531704999947,65.29572174700014],[-13.981027798999946,65.28912995000009],[-14.00674394399988,65.28204987200003],[-13.991118943999906,65.27269114799999],[-13.832508917999917,65.29759349200013],[-13.784250454999892,65.29572174700014],[-13.687652147999927,65.306382554],[-13.657378709999932,65.30255768400018],[-13.607818162999905,65.28864166900009],[-13.58226477799991,65.27692291900011],[-13.572987433999884,65.266546942],[-13.567982550999915,65.26097239800002],[-13.591786261999914,65.25307851800012],[-13.632435675999913,65.22589752800012],[-13.654204881999874,65.21995677299999],[-13.780873175999943,65.20636627800003],[-13.914621548999918,65.20636627800003],[-13.972645636999886,65.20014069200009],[-14.03408769399988,65.20014069200009],[-14.003325975999871,65.18976471600008],[-13.88695227799991,65.20014069200009],[-13.73306230399993,65.19269440300009],[-13.664173956999974,65.20014069200009],[-13.626616990999876,65.20014069200009],[-13.616607225999871,65.19676341400006],[-13.621327277999882,65.18943919500005],[-13.636830206999889,65.17841217700003],[-13.639475063999896,65.17210521000005],[-13.638579881999902,65.16754791900003],[-13.638579881999902,65.16364166900003],[-13.64366614499991,65.15916575700005],[-13.68154863199993,65.15176015800007],[-13.715240037999934,65.15033600499999],[-13.746693488999881,65.14492422100015],[-13.746693488999881,65.13743724199999],[-13.66930091099988,65.14435455900009],[-13.651193813999953,65.13743724199999],[-13.651193813999953,65.13129303600003],[-13.660755988999966,65.13019440300015],[-13.669545050999915,65.1273867860001],[-13.677723761999943,65.12299225500011],[-13.68529212099989,65.11701080900012],[-13.654204881999874,65.11701080900012],[-13.64439856699994,65.114935614],[-13.63662675699993,65.11041901200004],[-13.630848761999884,65.105943101],[-13.626616990999876,65.10394928600014],[-13.616607225999871,65.10700104400003],[-13.600575324999879,65.12067291900017],[-13.592193162999934,65.12376536700005],[-13.590158657999892,65.12767161700005],[-13.561105923999918,65.15176015800007],[-13.520171678999901,65.17218659100014],[-13.51740475199992,65.15753815300003],[-13.517811652999853,65.13629791900014],[-13.521066860999895,65.11591217700008],[-13.526966925999915,65.10394928600014],[-13.526966925999915,65.09650299700014],[-13.508371548999918,65.090765692],[-13.50291907499988,65.08128489799999],[-13.509592251999946,65.06915924700009],[-13.526966925999915,65.05548737200014],[-13.54723059799994,65.04759349199999],[-13.589588995999918,65.04230377800009],[-13.60960852799991,65.0350609400001],[-13.591786261999914,65.02142975500014],[-13.582671678999928,65.01203034100011],[-13.585316535999906,65.00771719],[-13.600900844999899,65.00446198100015],[-13.632150844999984,64.98993561400012],[-13.647368943999965,64.98663971600008],[-13.719471808999884,64.99408600500006],[-13.781605597999885,64.98932526200015],[-13.801991339999887,64.99408600500006],[-13.81151282499988,65.0034040390001],[-13.819813605999855,65.01723867400001],[-13.83031165299991,65.02960846600014],[-13.846058722999885,65.0350609400001],[-13.862294074999909,65.03729889500006],[-13.895415818999936,65.04706452],[-13.94786536399991,65.05451080900018],[-14.003325975999871,65.07762278900013],[-14.03408769399988,65.08283112200003],[-14.027740037999934,65.07184479400017],[-14.017323370999861,65.06378815300003],[-14.005116339999859,65.05841705900018],[-13.993763800999885,65.05548737200014],[-14.02977454299986,65.0383975280001],[-14.23338782499985,65.0350609400001],[-14.23338782499985,65.02757396000011],[-13.918039516999924,65.01459381700012],[-13.907826300999886,65.01068756700012],[-13.893950975999898,65.0030785180001],[-13.881703253999916,64.9933942730001],[-13.876454230999855,64.983547268],[-13.867909308999913,64.97821686400012],[-13.821278449999909,64.95994700700005],[-13.718169725999871,64.93960195500007],[-13.698312954999949,64.92519765800002],[-13.739898240999935,64.91120026200004],[-13.78892981699991,64.91437409100011],[-13.876454230999855,64.932603257],[-13.976063605999883,64.92519765800002],[-14.037464972999885,64.936468817],[-14.054595506999902,64.932603257],[-13.995513475999898,64.91449616100009],[-13.852284308999854,64.90029531500006],[-13.78766842399989,64.87738678600006],[-13.779693162999934,64.87152741100012],[-13.77017167899993,64.86237213700004],[-13.766916469999897,64.85382721600003],[-13.777699347999885,64.850083726],[-13.79401607999992,64.84686920800011],[-13.818918423999946,64.8327497420001],[-13.832102016999897,64.82957591400013],[-13.93659420499992,64.84707265800007],[-13.966420050999915,64.8358421900001],[-13.85802161399991,64.81683991100009],[-13.839833136999914,64.80931224200012],[-13.839222785999965,64.79857005400011],[-13.867787238999938,64.79474518400008],[-13.981922980999855,64.79677969000012],[-14.013661261999884,64.80231354400014],[-14.01988684799994,64.79755280200013],[-14.028146938999924,64.79409414300015],[-14.048451300999941,64.78864166900011],[-14.048451300999941,64.78119538000011],[-14.017689581999946,64.76483795800011],[-14.001454230999911,64.75381094000006],[-13.986317511999914,64.7402204450001],[-14.002593553999958,64.73761627800012],[-14.048451300999941,64.71971263200005],[-14.270619269999912,64.69928620000009],[-14.306385870999861,64.70416901200015],[-14.326242641999956,64.7096214860001],[-14.339466925999885,64.71629466400005],[-14.36807206899988,64.75531647300012],[-14.393625454999949,64.76654694200012],[-14.420562303999928,64.78961823100018],[-14.43537350199989,64.79486725500006],[-14.513905402999908,64.80231354400014],[-14.504017706999916,64.79657623900006],[-14.493275519999884,64.79458242400013],[-14.469553188999896,64.79486725500006],[-14.455799933999883,64.79022858300014],[-14.457142706999944,64.77985260600003],[-14.463775193999908,64.76854075700005],[-14.466135219999957,64.76129791900003],[-14.450672980999853,64.75287506700009],[-14.400135870999861,64.74103424700003],[-14.383615688999953,64.7402204450001],[-14.383615688999953,64.733384507],[-14.385243292999887,64.7208519550001],[-14.371449347999885,64.70498281500006],[-14.352650519999939,64.69135163000011],[-14.339466925999885,64.68561432500013],[-14.288685675999943,64.6781273460001],[-14.270171678999928,64.66950104400017],[-14.281158006999874,64.65827057500017],[-14.274322068999878,64.65143463700015],[-14.441965298999975,64.67572663000014],[-14.493478969999954,64.65827057500017],[-14.477162238999908,64.64972565300015],[-14.437082485999893,64.64077383000013],[-14.41771399599989,64.6310082050001],[-14.40807044199991,64.61977773600006],[-14.409250454999949,64.6102562520001],[-14.419829881999902,64.60248444200009],[-14.438832160999908,64.596869208],[-14.57217363199993,64.596869208],[-14.584380662999905,64.59031810100011],[-14.57209225199995,64.57697174700007],[-14.552235480999855,64.56574127800009],[-14.541818813999953,64.56586334800006],[-14.531605597999915,64.5556094420001],[-14.509999152999908,64.54901764500006],[-14.490467902999852,64.5484072940001],[-14.486561652999853,64.55585358300009],[-14.44538326699998,64.56069570500014],[-14.383615688999953,64.6007347680001],[-14.352528449999879,64.61050039300011],[-14.346180792999945,64.60561758000016],[-14.361561652999882,64.59446849200005],[-14.453236456999946,64.5463320980001],[-14.466135219999957,64.53473541900017],[-14.469593878999888,64.52545807500012],[-14.4725642569999,64.50482819200009],[-14.476673956999946,64.49689362200003],[-14.50934811099998,64.4719098980001],[-14.513905402999908,64.46279531500004],[-14.512806769999882,64.45661041900014],[-14.51166744699992,64.45311107000005],[-14.509388800999972,64.44611237200017],[-14.510487433999913,64.44232819200013],[-14.51549231699994,64.43919505400008],[-14.52106686099995,64.43744538000009],[-14.52562415299991,64.43451569200006],[-14.527577277999853,64.42829010600009],[-14.529855923999916,64.4239769550001],[-14.540882941999882,64.408433335],[-14.544911261999857,64.40509674700017],[-14.648752407999922,64.40009186400012],[-14.720692511999857,64.3889020850001],[-14.746693488999936,64.38397858300006],[-14.703358527999882,64.39887116100003],[-14.613921678999873,64.41006094000012],[-14.5685115229999,64.41811758000016],[-14.59406490799995,64.42560455900012],[-14.705230272999925,64.43329498900013],[-14.713124152999908,64.43170807500012],[-14.714426235999923,64.427476304],[-14.712513800999943,64.41412995000017],[-14.716297980999883,64.41128164300012],[-14.72362219999988,64.40912506700012],[-14.744984503999943,64.39972565300012],[-14.757191535999908,64.397650458],[-14.761789516999952,64.39496491100012],[-14.782053188999953,64.37775299700009],[-14.793609178999901,64.3725446640001],[-14.848947719999899,64.35712311400006],[-14.871652798999918,64.34674713700014],[-14.892079230999911,64.33466217700008],[-14.904896613999936,64.322455145],[-14.89948482999989,64.33392975500014],[-14.896107550999886,64.338771877],[-14.891265428999901,64.34296295800014],[-14.891265428999901,64.34979889500006],[-14.898060675999917,64.34979889500006],[-14.904896613999936,64.33982982000008],[-14.920318162999877,64.33112213700018],[-14.937245245999861,64.32489655200011],[-14.94904537699992,64.322455145],[-14.952748175999943,64.31924062700013],[-14.949818488999936,64.31195709800012],[-14.942209438999894,64.3046735700001],[-14.931955532999979,64.30141836100016],[-14.910308397999897,64.30247630400011],[-14.900746222999883,64.3046328800001],[-14.891265428999901,64.30882396000005],[-14.886382615999906,64.29474518400009],[-14.877593553999871,64.28148021000008],[-14.89997311099998,64.28164297100012],[-14.92943274599986,64.26483795800011],[-14.94904537699992,64.26044342700014],[-14.995472785999878,64.26260000200011],[-15.015858527999852,64.2667503930001],[-15.035267706999946,64.27411530200008],[-15.06688391799986,64.29083893400012],[-15.086048956999917,64.2982852230001],[-15.106678839999859,64.30141836100016],[-15.115630662999875,64.29857005400011],[-15.134388800999915,64.28546784100014],[-15.143950975999898,64.28148021000008],[-15.156117316999909,64.28261953300002],[-15.167551235999952,64.28652578300002],[-15.179269985999921,64.28790924700009],[-15.192290818999934,64.28148021000008],[-15.179351365999906,64.27411530200008],[-15.190052863999938,64.26919179900004],[-15.201568162999877,64.26748281500004],[-15.226470506999902,64.26788971600003],[-15.206613735999923,64.29523346600008],[-15.206613735999923,64.30141836100016],[-15.238840298999946,64.29751211100015],[-15.254505988999938,64.29804108300014],[-15.261219855999881,64.305121161],[-15.265777147999929,64.32054271000014],[-15.276844855999855,64.33087799700014],[-15.290272589999859,64.33437734600012],[-15.302154100999898,64.3293317730001],[-15.302154100999898,64.322455145],[-15.293934699999907,64.3176130230001],[-15.28819739499994,64.31256745000017],[-15.28416907499988,64.305609442],[-15.281117316999882,64.29523346600008],[-15.294667120999918,64.29926178600006],[-15.323150193999938,64.303900458],[-15.336293097999913,64.30882396000005],[-15.336293097999913,64.31500885600012],[-15.326568162999934,64.32900625200007],[-15.341297980999855,64.35004303600003],[-15.366444464999914,64.36933014500015],[-15.387847459999875,64.37775299700009],[-15.40843665299991,64.387640692],[-15.447987433999854,64.39447663000011],[-15.473500128999943,64.397650458],[-15.456450975999898,64.391546942],[-15.422108527999853,64.38519928600007],[-15.401478644999912,64.38080475499999],[-15.390777147999898,64.36969635600015],[-15.372466600999928,64.34520091400013],[-15.363636847999885,64.33681875200007],[-15.37214107999989,64.33136627800003],[-15.38068600199992,64.329779364],[-15.389271613999938,64.33173248900015],[-15.397816535999878,64.33681875200007],[-15.397816535999878,64.3293317730001],[-15.377552863999936,64.32127513200007],[-15.37401282499988,64.30589427300012],[-15.382313605999855,64.28839752800017],[-15.397816535999878,64.27411530200008],[-15.422271287999905,64.26850006700009],[-15.478016730999911,64.27513255400005],[-15.500884568999908,64.26788971600003],[-15.486805792999858,64.26251862200014],[-15.471547003999886,64.26044342700014],[-15.438710089999885,64.26044342700014],[-15.464019334999932,64.25128815300015],[-15.528065558999913,64.241156317],[-15.585519985999921,64.23875560100008],[-15.645904100999957,64.22882721600014],[-15.672108527999882,64.21942780200014],[-15.676869269999884,64.22443268400018],[-15.683216925999915,64.2289492860001],[-15.685699022999927,64.23379140800002],[-15.713612433999886,64.21662018400018],[-15.802398240999935,64.1853701840001],[-15.719105597999913,64.19769928600006],[-15.699452277999853,64.1915550800001],[-15.733021613999881,64.17926666900003],[-15.992054816999937,64.14447663000009],[-16.028309699999852,64.13007233300011],[-15.981190558999856,64.13007233300011],[-15.981190558999856,64.12392812700013],[-16.04478919199994,64.09979889500012],[-16.066273566999882,64.09658437700007],[-16.07599850199992,64.09393952000009],[-16.11034094999988,64.076117255],[-16.134022589999887,64.06842682500017],[-16.14362545499995,64.06354401200012],[-16.151275193999908,64.05499909100008],[-16.161732550999886,64.06464264500005],[-16.171701626999948,64.06635163000006],[-16.181792772999927,64.06232330900009],[-16.192860480999883,64.05499909100008],[-16.192860480999883,64.04816315300017],[-16.179269985999923,64.04816315300017],[-16.179269985999923,64.04193756700003],[-16.23932857999992,64.02350495000017],[-16.26113847599987,64.02081940300009],[-16.25487219999991,64.03510163],[-16.308908657999922,64.01707591400006],[-16.334787563999924,64.00324127800015],[-16.35049394399988,63.98672109600009],[-16.33409583199989,63.98631419499999],[-16.321034308999913,63.99164459800016],[-16.311024542999917,63.99725983300006],[-16.336903449999852,63.974066473000114],[-16.35049394399988,63.96556224199999],[-16.42235266799986,63.938137111000124],[-16.470204230999883,63.90477122600005],[-16.50133216099988,63.89736562700006],[-16.48888098899988,63.90037669500008],[-16.47630774599989,63.90521881700015],[-16.465972459999875,63.912909247000165],[-16.46035722599987,63.924627997000144],[-16.61119544199994,63.86937083500005],[-16.745350714999915,63.852118231000034],[-16.76537024599989,63.854722398000135],[-16.7825414699999,63.86318594000009],[-16.774891730999883,63.85712311400009],[-16.76659094999991,63.85285065300017],[-16.757639126999948,63.850287177000055],[-16.74779212099986,63.84955475500015],[-16.766346808999856,63.84454987200009],[-16.7825414699999,63.84271881700012],[-16.779204881999874,63.83218008000015],[-16.77977454299986,63.81830475500005],[-16.78506425699993,63.80646393400009],[-16.796213344999927,63.801703192],[-16.801096157999922,63.80487702000006],[-16.80296790299988,63.811712958],[-16.80296790299988,63.82538483300011],[-16.805531378999888,63.828558661],[-16.823475714999915,63.83588288],[-16.861073370999915,63.8587914080001],[-16.871327277999853,63.86318594000009],[-16.88735917899993,63.865668036],[-16.895497199999877,63.86277903899999],[-16.898264126999916,63.85407135600009],[-16.898548956999946,63.839300848000015],[-16.895253058999913,63.820746161],[-16.8958227199999,63.807766018],[-16.901966925999968,63.801703192],[-16.915353969999956,63.805161851000115],[-16.917469855999883,63.81403229400014],[-16.91222083199989,63.839300848000015],[-16.91551673099994,63.848334052000105],[-16.922759568999936,63.86001211100001],[-16.930043097999885,63.866400458000136],[-16.933338995999918,63.85980866100006],[-16.93297278599988,63.833075262000065],[-16.934681769999884,63.82062409100003],[-16.939564581999946,63.809149481000176],[-16.926136847999885,63.80003489799999],[-16.930897589999887,63.79319896000008],[-16.946848110999895,63.78888580900018],[-16.966908331999946,63.787502346000096],[-16.955637173999946,63.810126044000135],[-16.95490475199992,63.82001373900006],[-16.96068274599989,63.82843659100003],[-16.956532355999855,63.8371442730001],[-16.953846808999856,63.841050523000106],[-16.95042883999986,63.84271881700012],[-16.941273566999882,63.84552643400015],[-16.9407445949999,63.85126373900014],[-16.944162563999896,63.856187242000104],[-16.94701087099986,63.85639069200015],[-16.941395636999857,63.88320547100015],[-16.940297003999888,63.89777252800018],[-16.943267381999902,63.90420156500009],[-16.94668535099993,63.90818919500008],[-16.957508917999917,63.91583893400009],[-16.96898352799985,63.92031484600015],[-16.974354620999915,63.91474030200006],[-16.97704016799989,63.88882070500013],[-16.975331183999884,63.8782412780001],[-16.966908331999946,63.86937083500005],[-16.98322506399995,63.86286041900015],[-17.001942511999914,63.863470770000035],[-17.01854407499988,63.86200592700005],[-17.028920050999886,63.84955475500015],[-17.016713019999912,63.839300848000015],[-17.011463995999918,63.82778554900006],[-17.004750128999888,63.817084052000055],[-16.987945115999878,63.809149481000176],[-17.006214972999942,63.797837632000025],[-17.04328365799995,63.79401276200018],[-17.114857550999886,63.79490794499999],[-17.13011633999986,63.79718659100014],[-17.166127081999917,63.809149481000176],[-17.179676886999886,63.80487702000006],[-17.193226691999968,63.79804108300006],[-17.203439907999893,63.798285223],[-17.207102016999954,63.81537506700015],[-17.330555792999885,63.78123607000004],[-17.467762824999937,63.76072825699999],[-17.560943162999877,63.75079987200009],[-17.54991614499991,63.75800202000012],[-17.54356848899988,63.766791083],[-17.544016079999892,63.777492580000015],[-17.549672003999888,63.787502346000096],[-17.557118292999856,63.77326080900009],[-17.569081183999884,63.76357656500013],[-17.58336341099988,63.76072825699999],[-17.598052537999877,63.7675641950001],[-17.595692511999914,63.76203034100008],[-17.59557044199994,63.75946686400008],[-17.594960089999887,63.75755442900011],[-17.590646938999896,63.753973700000145],[-17.590646938999896,63.74652741100009],[-17.721018032999922,63.70551178600006],[-17.711171027999907,63.72736237200011],[-17.68529212099989,63.73969147300006],[-17.653228318999908,63.745266018000066],[-17.62482662699989,63.74652741100009],[-17.62482662699989,63.753973700000145],[-17.69098873599995,63.7692731790001],[-17.714751756999874,63.78123607000004],[-17.719878709999875,63.76772695500007],[-17.71898352799988,63.76227448100003],[-17.714751756999874,63.753973700000145],[-17.74046790299991,63.745998440000015],[-17.765004035999937,63.74823639500009],[-17.790028449999852,63.75340403899999],[-17.81720943899995,63.753973700000145],[-17.79674231699991,63.74652741100009],[-17.79674231699991,63.74030182500012],[-17.821929490999878,63.740545966000134],[-17.833322719999927,63.73851146000014],[-17.84386145699989,63.732855536000145],[-17.860259568999908,63.737005927000084],[-17.87840735599991,63.73102448100015],[-17.893055792999913,63.719956773000135],[-17.899159308999884,63.708929755000085],[-17.904530402999853,63.69122955900017],[-17.918080206999917,63.67902252800008],[-17.935902472999885,63.67576732000004],[-17.9544164699999,63.6850446640001],[-17.967355923999918,63.67649974199999],[-17.97207597599993,63.66766998900012],[-17.9669490229999,63.660589911000066],[-17.950672980999883,63.65770091400013],[-17.937977667999913,63.65985748900012],[-17.918080206999917,63.66925690300015],[-17.90282141799986,63.671372789000074],[-17.823882615999903,63.667425848000086],[-17.79674231699991,63.671372789000074],[-17.83975175699993,63.63410065300009],[-17.86583411399991,63.62384674700017],[-17.89232337099989,63.630438544000135],[-17.88898678299995,63.632269598000114],[-17.887847459999904,63.632269598000114],[-17.887318488999938,63.63279857000002],[-17.885487433999856,63.63666413],[-17.9264216789999,63.63666413],[-17.92495683499993,63.62734609600015],[-17.953114386999914,63.62860748900006],[-17.96861731699991,63.62299225500005],[-17.9557185539999,63.623683986000025],[-17.946888800999943,63.62079498900009],[-17.94359290299991,63.61391836100016],[-17.946929490999935,63.602484442000026],[-17.87246660099987,63.60439687700007],[-17.858225063999953,63.60993073100009],[-17.88304602799991,63.576117255000106],[-17.919056769999884,63.54515208500008],[-17.964955206999974,63.52252838700012],[-18.067372199999877,63.50153229400018],[-18.132923956999885,63.47931549700011],[-18.195383266999926,63.472805080000036],[-18.228138800999943,63.49323151200009],[-18.2154841789999,63.500555731000084],[-18.18736731699991,63.505194403000026],[-18.176584438999896,63.51064687700007],[-18.163197394999884,63.521429755000085],[-18.15062415299991,63.52631256700014],[-18.11888587099986,63.52741120000009],[-18.11888587099986,63.534247137000094],[-18.147287563999953,63.53449127800015],[-18.20091712099986,63.52704498900006],[-18.228138800999943,63.52741120000009],[-18.296376105999883,63.54645416900017],[-18.316802537999934,63.548529364],[-18.310658331999942,63.54100169500004],[-18.318104620999947,63.539455471],[-18.321197068999933,63.53766510600012],[-18.32433020699989,63.534247137000094],[-18.31468665299994,63.528143622000115],[-18.293283657999893,63.51105377800017],[-18.286447719999956,63.507513739],[-18.2767634759999,63.50116608300006],[-18.271962042999917,63.48704661700013],[-18.26915442599997,63.47296784100009],[-18.265695766999954,63.46653880400008],[-18.22386633999986,63.465318101000044],[-18.200306769999912,63.465318101000044],[-18.18366451699995,63.463853257],[-18.397694464999915,63.449204819999984],[-18.521595831999946,63.42251211100015],[-18.732045050999943,63.39671458500014],[-18.783029751999948,63.39765045800011],[-18.97476152299987,63.424383856000034],[-19.055653449999852,63.414374091000134],[-19.084624803999954,63.41815827000006],[-19.073597785999908,63.41876862200004],[-19.069081183999856,63.42031484600007],[-19.064116990999906,63.424383856000034],[-19.09984290299994,63.42796458499999],[-19.117665167999917,63.432440497000144],[-19.132435675999886,63.43866608300011],[-19.152658657999893,63.42572663000011],[-19.28726152299987,63.43866608300011],[-19.2999568349999,63.441229559000035],[-19.352162238999938,63.45913320500009],[-19.434152798999946,63.46653880400008],[-19.550933397999923,63.50202057500014],[-19.711577928999873,63.52155182500006],[-19.743234829999917,63.534247137000094],[-19.72972571499986,63.53538646000014],[-19.722035285999937,63.53925202000015],[-19.723052537999905,63.5441755230001],[-19.73574785099987,63.548529364],[-19.74795488199993,63.54889557500011],[-19.76475989499994,63.542792059000035],[-19.77708899599989,63.54100169500004],[-19.87291419199991,63.548529364],[-19.869984503999888,63.54352448100015],[-19.76988684799997,63.534247137000094],[-20.03380286399988,63.542385158],[-20.05101477799991,63.55475495000014],[-20.055409308999884,63.55377838700018],[-20.057972785999905,63.55231354400002],[-20.06041419199994,63.55048248900014],[-20.064076300999886,63.548529364],[-20.068959113999938,63.55288320500009],[-20.071888800999886,63.55385976800006],[-20.078358527999878,63.55475495000014],[-20.07152258999986,63.54100169500004],[-20.148304816999882,63.54035065300009],[-20.185699022999927,63.544419664000046],[-20.337717251999948,63.6017113300001],[-20.352691209999904,63.60993073100009],[-20.338612433999852,63.60419342700011],[-20.32249915299988,63.6017520200001],[-20.3059789699999,63.603461005],[-20.290638800999943,63.60993073100009],[-20.303456183999884,63.61102936400012],[-20.326242641999894,63.61566803600005],[-20.339100714999944,63.61676666900012],[-20.33429928299995,63.632269598000114],[-20.33226477799991,63.63666413],[-20.35057532499988,63.624660549000076],[-20.36709550699996,63.619818427],[-20.38499915299991,63.62189362200002],[-20.40733801999994,63.630438544000135],[-20.40733801999994,63.63666413],[-20.373158331999946,63.630438544000135],[-20.386545376999948,63.64569733300011],[-20.404774542999945,63.654608466000134],[-20.424468553999873,63.661688544000114],[-20.442128058999884,63.671372789000074],[-20.45824133999986,63.688218492000075],[-20.466949022999955,63.70026276200017],[-20.478667772999927,63.70636627800017],[-20.503529425999886,63.70551178600006],[-20.503529425999886,63.69928620000012],[-20.46865800699996,63.67715078300013],[-20.448475714999915,63.66071198100004],[-20.43464107999992,63.644110419000164],[-20.501088019999937,63.67112864800013],[-20.53160559799988,63.688910223],[-20.550689256999874,63.712347723000086],[-20.546864386999854,63.714016018],[-20.537098761999914,63.71979401200014],[-20.544504360999895,63.72451406500007],[-20.558216925999915,63.74030182500012],[-20.530181443999908,63.75470612200008],[-20.498524542999945,63.763006903000154],[-20.431263800999915,63.7675641950001],[-20.399647589999915,63.76105377800012],[-20.344146287999873,63.73476797100001],[-20.311146613999906,63.732855536000145],[-20.327788865999935,63.742499091000106],[-20.3522029289999,63.761135158000094],[-20.365793423999946,63.7675641950001],[-20.442128058999884,63.787502346000096],[-20.412017381999874,63.81256745000009],[-20.40733801999994,63.82221100500006],[-20.411122199999877,63.836249091000106],[-20.422271287999877,63.839911200000145],[-20.43114173099994,63.83637116100008],[-20.42784583199989,63.82843659100003],[-20.42784583199989,63.82221100500006],[-20.439768032999922,63.81256745000009],[-20.483021613999938,63.787502346000096],[-20.511097785999937,63.77317942900011],[-20.530181443999908,63.764349677000055],[-20.55451412699989,63.76072825699999],[-20.56240800699996,63.756822007],[-20.56346594999991,63.747300523000014],[-20.5626521479999,63.73590729400003],[-20.565052863999938,63.726019598000114],[-20.572661912999877,63.71625397300009],[-20.577504035999965,63.71417877800015],[-20.62246660099987,63.72577545800008],[-20.666574673999946,63.742905992000104],[-20.70030676999994,63.74970123900015],[-20.770415818999908,63.77440013200011],[-20.7052302729999,63.77440013200011],[-20.693470831999917,63.77179596600003],[-20.66942298099988,63.7614606790001],[-20.654367641999954,63.76072825699999],[-20.652333136999857,63.76654694200014],[-20.63914954299989,63.76837799700002],[-20.60594641799989,63.7675641950001],[-20.60594641799989,63.77440013200011],[-20.63385982999992,63.77440013200011],[-20.63385982999992,63.78123607000004],[-20.63036048099994,63.78143952],[-20.62315833199989,63.780991929000024],[-20.619618292999913,63.78123607000004],[-20.619618292999913,63.787502346000096],[-20.690663214999887,63.77944570500015],[-20.715809699999852,63.78123607000004],[-20.715809699999852,63.787502346000096],[-20.681792772999927,63.807318427000105],[-20.67178300699993,63.83763255399999],[-20.685617641999922,63.86343008000004],[-20.723255988999938,63.86937083500005],[-20.723255988999938,63.86318594000009],[-20.695139126999948,63.857977606000176],[-20.698312954999892,63.84418366100008],[-20.717193162999934,63.82802969000003],[-20.75450598899991,63.80565013199999],[-20.778391079999977,63.79743073100009],[-20.805287238999934,63.79474518400012],[-20.83250891799986,63.801703192],[-20.82176673099994,63.785305080000015],[-20.81822669199994,63.78123607000004],[-20.858631964999915,63.80044179900001],[-20.948841925999915,63.82721588700009],[-21.076730923999918,63.84845612200008],[-21.12010657499988,63.86249420800014],[-21.144276495999886,63.867499091000084],[-21.168324347999942,63.87555573100011],[-21.188791469999895,63.89109935100011],[-21.18301347599993,63.898871161000116],[-21.184478318999904,63.90875885600004],[-21.194935675999886,63.932074286000145],[-21.11701412699992,63.92987702000014],[-21.074126756999927,63.934271552000105],[-21.04478919199991,63.94574616100009],[-21.119943813999924,63.94574616100009],[-21.167591925999915,63.95770905200002],[-21.185047980999855,63.959418036000024],[-21.236439581999974,63.95335521000011],[-21.24705969999991,63.949164130000085],[-21.25609290299991,63.943019924],[-21.28742428299995,63.92816803600014],[-21.298695441999968,63.924627997000144],[-21.298695441999968,63.918402411],[-21.247792120999947,63.90839264500012],[-21.222035285999908,63.898871161000116],[-21.209299282999947,63.88369375200012],[-21.230132615999935,63.88873932500014],[-21.275380011999857,63.89179108300006],[-21.32168535099993,63.88934967700011],[-21.349761522999927,63.884182033000016],[-21.36583411399991,63.87376536700013],[-21.352650519999884,63.85639069200015],[-21.357411261999886,63.85610586100002],[-21.360422329999974,63.85423411700004],[-21.363107876999948,63.85179271000011],[-21.36693274599986,63.84955475500015],[-21.65990149599986,63.83185455900003],[-21.695301886999882,63.84271881700012],[-21.728911912999905,63.85854726800015],[-21.75999915299991,63.86839427300008],[-21.79320227799991,63.870550848000065],[-21.95946204299986,63.843736069999984],[-22.00031490799989,63.842800197000095],[-22.01439368399994,63.843207098],[-22.065785285999937,63.83588288],[-22.336415167999917,63.86318594000009],[-22.357492641999926,63.856634833],[-22.37588456899988,63.8441429710001],[-22.394398566999882,63.835923569999984],[-22.41588294199991,63.84271881700012],[-22.401600714999915,63.84955475500015],[-22.425160285999876,63.84951406500015],[-22.462757941999882,63.838690497000144],[-22.494781053999873,63.834173895],[-22.51390540299994,63.82562897300006],[-22.525135870999918,63.82221100500006],[-22.535878058999856,63.8211937520001],[-22.63267981699994,63.82611725500006],[-22.654855923999918,63.82221100500006],[-22.65965735599991,63.81940338700012],[-22.664906378999888,63.815008856000034],[-22.671254035999905,63.81098053600006],[-22.679066535999908,63.809149481000176],[-22.691232876999887,63.81220123900008],[-22.70645097599987,63.82538483300011],[-22.717518683999913,63.82843659100003],[-22.71125240799995,63.838690497000144],[-22.703480597999942,63.84511953300016],[-22.69741777299987,63.851874091000084],[-22.695871548999918,63.86318594000009],[-22.70018469999991,63.874172268000116],[-22.70848548099991,63.879055080000015],[-22.719227667999917,63.88304271],[-22.730580206999885,63.89109935100011],[-22.715077277999878,63.90127187700007],[-22.694976365999935,63.93773021000011],[-22.685902472999913,63.94574616100009],[-22.641835089999912,63.94586823100006],[-22.63499915299991,63.949164130000085],[-22.639230923999914,63.959540106000176],[-22.64940344999988,63.959540106000176],[-22.67251542899993,63.952582098000086],[-22.691721157999893,63.95477936400009],[-22.712880011999886,63.961981512000115],[-22.72996985599994,63.974676825000174],[-22.73680579299986,63.99347565300004],[-22.721424933999913,64.012681382],[-22.717518683999913,64.02081940300009],[-22.716460740999963,64.03229401200004],[-22.718088344999984,64.05320872600011],[-22.717518683999913,64.06244538000006],[-22.718739386999914,64.07050202],[-22.71275794199991,64.07892487200014],[-22.70213782499988,64.08592357000013],[-22.68960527299987,64.08974844000015],[-22.675160285999908,64.08738841400002],[-22.644764777999853,64.07225169500002],[-22.609974738999906,64.06159088700015],[-22.582915818999965,64.04364655200011],[-22.55846106699991,64.01943594000011],[-22.544911261999857,63.99347565300004],[-22.55923417899993,63.99347565300004],[-22.542795376999948,63.982733466000106],[-22.518462693999876,63.97943756700009],[-22.420887824999852,63.97724030199999],[-22.396839972999913,63.97980377800008],[-22.381174282999947,63.98672109600009],[-22.39232337099986,63.99408600499999],[-22.386382615999935,64.00210195500013],[-22.37279212099989,64.0092227230001],[-22.36070716099988,64.01406484600007],[-22.346058722999885,64.01727936400012],[-22.29857337099986,64.02081940300009],[-22.262074347999913,64.0333519550001],[-22.250884568999908,64.03510163],[-22.23839270699989,64.03290436399999],[-22.212473110999895,64.02309804900007],[-22.199208136999857,64.02081940300009],[-22.17275956899988,64.02509186400003],[-22.124175584999932,64.04389069200006],[-22.040679490999935,64.05109284100008],[-22.01357988199993,64.059271552],[-21.99010169199994,64.076117255],[-21.981678839999915,64.07037995000003],[-21.975168423999918,64.06928131700009],[-21.969349738999938,64.07147858300009],[-21.963368292999945,64.076117255],[-21.963368292999945,64.08226146000007],[-21.980620897999952,64.09023672100012],[-22.004750128999945,64.09772370000009],[-22.028635219999927,64.10101959800012],[-22.045318162999877,64.09658437700007],[-22.03490149599989,64.11273834800011],[-22.010121222999913,64.1205915390001],[-21.982492641999926,64.12164948100015],[-21.963368292999945,64.11709219000012],[-21.971262173999918,64.11603424700014],[-21.99010169199994,64.10956452000006],[-21.971994594999927,64.10537344000012],[-21.95177161399991,64.10423411700002],[-21.931996222999913,64.10590241100003],[-21.915028449999937,64.10956452000006],[-21.915028449999937,64.11709219000012],[-21.935454881999902,64.11709219000012],[-21.92125403599988,64.12262604400006],[-21.915028449999937,64.12392812700013],[-21.977162238999934,64.1491559920001],[-22.010853644999937,64.15704987200017],[-22.045318162999877,64.15802643400006],[-22.015126105999855,64.16828034100017],[-21.864857550999943,64.15631745000006],[-21.857533331999917,64.15228913000007],[-21.852447068999908,64.14769114800013],[-21.846669074999852,64.14435455900012],[-21.815581834999932,64.13662344],[-21.799672003999913,64.13727448100015],[-21.78465735599991,64.14435455900012],[-21.796050584999875,64.14345937700001],[-21.806752081999885,64.143988348],[-21.816802537999962,64.1464704450001],[-21.826242641999954,64.15119049700003],[-21.81432044199994,64.15892161700005],[-21.806874152999853,64.16217682500009],[-21.798247850999957,64.16486237200014],[-21.818755662999905,64.17169830900018],[-21.79283606699991,64.17597077],[-21.757476365999878,64.17108795800011],[-21.744048631999902,64.17125071800007],[-21.723784959999875,64.17145416900006],[-21.70274817599994,64.1915550800001],[-21.73741614499994,64.1828473980001],[-21.75609290299991,64.18178945500013],[-21.76414954299986,64.18842194200003],[-21.75723222599993,64.20034414300015],[-21.74120032499985,64.20628489799999],[-21.709584113999878,64.21320221600017],[-21.729725714999915,64.21881745000017],[-21.75999915299991,64.22040436400003],[-21.79076087099989,64.21841054900007],[-21.812652147999927,64.21320221600017],[-21.806467251999948,64.23021067900014],[-21.817860480999908,64.23798248900015],[-21.83771725199992,64.24005768400015],[-21.865712042999945,64.23956940300016],[-21.875111456999946,64.23810455900012],[-21.883941209999932,64.23517487200007],[-21.89110266799986,64.23037344],[-21.92861894399988,64.23379140800002],[-21.899281378999973,64.24494049700003],[-21.889556443999908,64.25311920800014],[-21.894520636999886,64.26788971600003],[-21.83324133999986,64.28681061400015],[-21.803212042999917,64.30174388199998],[-21.781239386999886,64.31879303600014],[-21.764027472999885,64.339300848],[-21.754505988999878,64.34520091400013],[-21.73741614499994,64.34979889500006],[-21.715687628999945,64.35203685100005],[-21.671213344999956,64.34918854400011],[-21.65257727799988,64.34918854400011],[-21.672474738999966,64.35293203300013],[-21.681141730999855,64.35663483300009],[-21.689076300999915,64.35663483300009],[-21.648548956999885,64.37148672100015],[-21.62677975199992,64.37604401200008],[-21.603098110999923,64.37775299700009],[-21.46540279899989,64.361802476],[-21.44200598899991,64.36408112200014],[-21.4251195949999,64.37612539300007],[-21.414133266999954,64.38397858300006],[-21.459095831999946,64.37287018400004],[-21.483021613999906,64.37775299700009],[-21.483021613999906,64.38397858300006],[-21.473459438999924,64.38377513200003],[-21.46532141799989,64.38532135600005],[-21.44945227799988,64.39077383000007],[-21.448882615999906,64.39533112200003],[-21.45030676999988,64.39655182500015],[-21.452951626999948,64.39655182500015],[-21.45571855399993,64.397650458],[-21.44945227799988,64.397650458],[-21.631174282999922,64.40265534100003],[-21.71654212099986,64.39386627800015],[-21.792103644999884,64.36408112200014],[-21.796009894999884,64.35993073100012],[-21.799183722999942,64.354437567],[-21.803944464999944,64.34845612200016],[-21.812652147999927,64.34296295800014],[-21.82115637899994,64.34007396000011],[-21.840565558999856,64.337103583],[-21.85008704299986,64.33681875200007],[-21.865834113999906,64.33417389500009],[-21.911122199999937,64.31972890800004],[-21.925282355999855,64.31195709800012],[-21.962635870999918,64.2973086610001],[-22.009999152999853,64.30011627800015],[-22.099964972999913,64.31500885600012],[-22.099964972999913,64.322455145],[-22.057972785999937,64.33331940300016],[-22.018055792999885,64.34979889500006],[-21.984771287999877,64.37026601800012],[-21.963368292999945,64.37612539300007],[-21.94172115799995,64.37030670800011],[-21.92324785099993,64.37889232000013],[-21.879017706999946,64.3850772160001],[-21.85973059799991,64.39077383000007],[-21.948882615999903,64.39496491100012],[-21.97642981699991,64.39077383000007],[-21.99571692599994,64.38499583500011],[-22.011341925999943,64.38275788000014],[-22.026600714999915,64.388128973],[-22.045318162999877,64.40509674700017],[-22.031890428999873,64.41445547100001],[-22.029611782999922,64.42645905200011],[-22.029204881999902,64.44057851800015],[-22.021473761999886,64.45600006700009],[-22.014800584999932,64.45722077],[-22.006703253999916,64.45429108300009],[-21.999867316999882,64.45392487200017],[-21.99469967399989,64.47125885600015],[-21.98924719999985,64.47931549700009],[-21.97642981699991,64.493150132],[-21.975087042999917,64.50372955900004],[-21.94981848899988,64.513902085],[-21.837269660999905,64.53900788000009],[-21.77782141799989,64.54157135600018],[-21.78258216099988,64.55048248900012],[-21.792062954999892,64.55548737200014],[-21.804595506999874,64.557074286],[-21.818755662999905,64.55585358300009],[-21.818755662999905,64.56207916900006],[-21.800526495999918,64.5695661480001],[-21.762277798999886,64.59210846600008],[-21.728749152999853,64.59857819199999],[-21.712513800999886,64.60716380400011],[-21.70274817599994,64.61050039300011],[-21.68936113199996,64.61180247600014],[-21.647450324999852,64.61050039300011],[-21.65143795499992,64.59251536700002],[-21.631255662999905,64.58958567900008],[-21.605580206999946,64.58934153900013],[-21.592884894999884,64.57916901200018],[-21.57990475199989,64.57184479400017],[-21.496652798999946,64.56952545800011],[-21.51309160099993,64.57518138200011],[-21.548003709999875,64.57363515800016],[-21.565541144999912,64.57575104400017],[-21.57994544199988,64.58258698100009],[-21.601958787999877,64.59804922100001],[-21.62018795499995,64.60301341400007],[-21.57921301999994,64.61050039300011],[-21.57921301999994,64.616644598],[-21.68224036399991,64.616644598],[-21.68224036399991,64.62417226800007],[-21.624989386999857,64.63930898600015],[-21.60651607999992,64.64769114800013],[-21.589955206999946,64.64960358300007],[-21.51089433499996,64.6439883480001],[-21.51089433499996,64.65143463700015],[-21.588734503999945,64.658636786],[-21.613352016999926,64.65827057500017],[-21.677316860999923,64.63251373900015],[-21.70274817599994,64.6310082050001],[-21.70274817599994,64.637844143],[-21.676584438999896,64.64858633000001],[-21.666981574999937,64.65595123900012],[-21.66112219999988,64.66571686400006],[-21.70103919199994,64.646918036],[-21.71263587099986,64.6439883480001],[-21.721831834999932,64.63882070500007],[-21.7284236319999,64.61570872600014],[-21.740589972999885,64.61050039300011],[-21.750477667999917,64.60773346600017],[-21.792103644999884,64.59003327000006],[-21.844105597999942,64.58148834800014],[-21.85973059799991,64.57575104400017],[-21.853505011999854,64.56207916900006],[-21.883168097999913,64.56659577],[-21.91120357999992,64.56321849199999],[-21.969593878999888,64.54157135600018],[-21.993275519999912,64.52924225500014],[-22.009022589999887,64.525091864],[-22.02489173099991,64.52798086100013],[-22.035633917999917,64.53766510600009],[-22.03416907499985,64.547552802],[-22.018055792999885,64.56952545800011],[-22.03880774599989,64.56659577],[-22.04865475199989,64.55540599199999],[-22.051503058999852,64.54010651200012],[-22.051584438999924,64.52456289300011],[-22.055409308999856,64.51976146000014],[-22.07945716099988,64.50063711100016],[-22.083648240999903,64.49160390800013],[-22.083648240999903,64.48456452000009],[-22.085031704999892,64.47866445500013],[-22.093088344999927,64.47272370000012],[-22.1290583979999,64.47288646000008],[-22.134755011999886,64.46930573100012],[-22.138335740999935,64.46564362200014],[-22.146799282999893,64.46259186400006],[-22.15672766799989,64.46043528900007],[-22.164784308999913,64.45966217700014],[-22.18101966099988,64.46295807500017],[-22.19904537699989,64.47186920800011],[-22.21458899599989,64.48493073100009],[-22.223500128999945,64.50063711100016],[-22.232085740999935,64.49469635600003],[-22.239857550999943,64.49087148600002],[-22.24787350199989,64.48847077000006],[-22.257639126999948,64.48700592700011],[-22.243397589999944,64.49970123900009],[-22.231109178999873,64.51528554900007],[-22.227040167999917,64.53034088700018],[-22.237172003999888,64.54157135600018],[-22.23289954299986,64.54311758000013],[-22.223500128999945,64.5484072940001],[-22.231190558999852,64.55231354400009],[-22.23924719999991,64.55483633000001],[-22.248036261999857,64.55605703300013],[-22.257639126999948,64.55585358300009],[-22.25340735599991,64.55914948100012],[-22.243397589999944,64.56952545800011],[-22.243397589999944,64.57575104400017],[-22.289377407999893,64.56085846600003],[-22.317738410999937,64.55499909100017],[-22.339507615999906,64.55585358300009],[-22.357533331999917,64.56801992400007],[-22.36481686099992,64.58441803600006],[-22.361195441999882,64.60024648600002],[-22.346994594999956,64.61050039300011],[-22.346994594999956,64.616644598],[-22.36432857999995,64.61810944200006],[-22.377023891999894,64.62555573100015],[-22.38573157499991,64.63385651200004],[-22.391021287999877,64.637844143],[-22.403879360999895,64.64069245000015],[-22.418324347999942,64.6478945980001],[-22.43211829299986,64.65696849199999],[-22.442534959999932,64.66571686400006],[-22.417591925999915,64.66095612200014],[-22.391509568999965,64.64960358300007],[-22.365101691999882,64.64264557500009],[-22.339507615999906,64.65143463700015],[-22.36070716099988,64.65143463700015],[-22.354603644999912,64.66278717700014],[-22.3450414699999,64.6703148460001],[-22.333078579999892,64.67523834800014],[-22.3196508449999,64.67877838700004],[-22.329253709999875,64.68423086100007],[-22.333363410999905,64.68561432500013],[-22.333363410999905,64.69245026200015],[-22.217518683999913,64.71743398600007],[-22.188710089999887,64.733384507],[-22.188710089999887,64.7402204450001],[-22.250721808999856,64.71710846600013],[-22.28376217399989,64.70954010600012],[-22.31590735599985,64.70673248900006],[-22.34316972599993,64.6992048200001],[-22.373890753999945,64.6850039730001],[-22.402088995999918,64.67633698100009],[-22.422108527999878,64.68561432500013],[-22.409047003999888,64.68964264500012],[-22.381174282999947,64.70673248900006],[-22.36082923099985,64.71580638200005],[-22.349232550999943,64.72308991100009],[-22.339507615999906,64.733384507],[-22.346994594999956,64.7402204450001],[-22.338002081999946,64.74201080900009],[-22.332427537999934,64.74485911700005],[-22.3196508449999,64.75385163000006],[-22.34203040299991,64.76512278900005],[-22.37214107999995,64.76874420800011],[-22.436390753999973,64.767523505],[-22.422108527999878,64.78119538000011],[-22.442534959999932,64.78119538000011],[-22.435536261999882,64.79132721600008],[-22.417103644999937,64.81098053600014],[-22.408436652999853,64.82273997600011],[-22.418771938999953,64.82151927300002],[-22.427886522999927,64.81757233300011],[-22.43578040299991,64.81102122600014],[-22.442534959999932,64.80231354400014],[-22.448841925999886,64.8115908870001],[-22.457020636999886,64.81533437700013],[-22.466420050999915,64.81419505399998],[-22.476714647999927,64.80914948100015],[-22.476714647999927,64.80231354400014],[-22.531890428999873,64.80914948100015],[-22.547474738999966,64.80581289300012],[-22.577015753999916,64.79157135600003],[-22.593413865999935,64.78864166900011],[-22.593413865999935,64.78119538000011],[-22.585560675999943,64.78021881700006],[-22.566070115999963,64.77435944200003],[-22.658192511999857,64.7666690120001],[-22.682118292999917,64.77435944200003],[-22.658558722999942,64.77293528900005],[-22.646555141999922,64.77374909100014],[-22.638050910999908,64.77777741100012],[-22.640939907999922,64.78339264500012],[-22.651234503999945,64.79157135600003],[-22.66368567599997,64.799017645],[-22.67251542899993,64.80231354400014],[-22.77839107999992,64.80231354400014],[-22.76276607999995,64.79498932500003],[-22.710072394999937,64.78119538000011],[-22.710072394999937,64.77435944200003],[-22.736887173999918,64.77480703300002],[-22.783924933999856,64.79271067900008],[-22.812570766999926,64.79486725500006],[-22.805734829999892,64.79486725500006],[-22.931141730999883,64.79979075700011],[-23.050363735999895,64.79979075700011],[-23.18809973899991,64.80414459800012],[-23.24624589799987,64.83047109600012],[-23.301665818999933,64.83222077000012],[-23.398426886999943,64.82273997600011],[-23.399037238999878,64.81989166900017],[-23.416493292999856,64.80638255400002],[-23.423329230999883,64.80231354400014],[-23.433908657999922,64.79804108300011],[-23.445057745999858,64.79490794500005],[-23.457142706999946,64.79364655200006],[-23.573475714999915,64.80914948100015],[-23.56273352799991,64.81338125200006],[-23.550933397999927,64.8159040390001],[-23.538441535999937,64.8167992210001],[-23.555246548999946,64.81981028900002],[-23.59349524599989,64.81098053600014],[-23.62352454299986,64.79425690300012],[-23.628081834999872,64.77435944200003],[-23.64659583199989,64.75088125200013],[-23.67393958199989,64.741115627],[-23.747873501999944,64.7402204450001],[-23.769520636999854,64.73761627800012],[-23.81330318899992,64.72711823100005],[-23.833566860999923,64.72589752800003],[-23.905873175999886,64.74396393400006],[-23.92129472599993,64.75360748900012],[-23.935617641999926,64.75604889500015],[-23.946115688999896,64.76089101800012],[-23.95026607999992,64.77777741100012],[-23.955881313999924,64.78668854400014],[-23.998646613999938,64.8159040390001],[-24.01695716099988,64.83173248900012],[-24.032460089999915,64.84853750200013],[-24.06004798099991,64.891058661],[-24.05329342399989,64.89850495000009],[-24.03311113199996,64.88963450700014],[-24.01427161399991,64.89337799700017],[-23.97752844999991,64.91217682500003],[-23.95840410099993,64.91730377800003],[-23.8497615229999,64.93056875200007],[-23.828521287999905,64.92951080900009],[-23.748117641999897,64.90692780200014],[-23.6380102199999,64.89850495000009],[-23.628529425999886,64.90110911699999],[-23.610259568999908,64.91380442900005],[-23.600819464999887,64.9183617210001],[-23.559437628999884,64.91738515800002],[-23.549305792999913,64.92177969],[-23.512847459999957,64.9463565120001],[-23.47175045499995,64.9523786480001],[-23.381092902999853,64.94562409100008],[-23.381092902999853,64.95311107000003],[-23.386830206999917,64.95600006700009],[-23.38975989499994,64.958889065],[-23.391835089999855,64.96230703300002],[-23.395334438999953,64.96678294499999],[-23.35342363199993,64.96800364800002],[-23.339751756999902,64.96263255400005],[-23.346913214999855,64.94562409100008],[-23.333729620999918,64.94139232000005],[-23.325103318999904,64.94672272300012],[-23.31720943899992,64.95343659100017],[-23.306019660999908,64.95311107000003],[-23.302398240999963,64.94350820500007],[-23.302235480999883,64.92951080900009],[-23.2970271479999,64.9222679710001],[-23.278675910999933,64.932603257],[-23.26309160099987,64.92625560100005],[-23.245025193999936,64.93012116100006],[-23.23021399599986,64.93952057500009],[-23.2240291009999,64.94940827],[-23.227772589999912,64.95962148600013],[-23.23534094999988,64.97260163000014],[-23.240589972999942,64.98688385600003],[-23.237660285999937,65.00092194200009],[-23.210194464999883,65.01691315300017],[-23.168568488999938,65.02008698100006],[-23.086822068999936,65.01459381700012],[-23.09434973899991,65.00315989800006],[-23.106800910999908,64.99542877800015],[-23.135324673999914,64.98663971600008],[-23.132435675999886,64.98273346600008],[-23.12779700399994,64.97296784100014],[-23.139515753999945,64.97186920799999],[-23.147938605999908,64.96808502800017],[-23.154937303999873,64.96173737200014],[-23.162587042999917,64.95311107000003],[-23.10728919199991,64.9183617210001],[-23.11327063699991,64.93353913000009],[-23.114003058999856,64.94611237200014],[-23.1095271479999,64.95685455900018],[-23.09984290299994,64.96678294499999],[-23.093413865999906,64.96898021000008],[-23.074452277999907,64.97052643400012],[-23.066395636999886,64.97296784100014],[-23.05992591099988,64.97858307500015],[-23.053578253999945,64.991400458],[-23.0489802729999,64.99750397300005],[-23.021392381999902,65.01300690300009],[-22.992787238999906,65.01422760600009],[-22.965646938999896,65.004299221],[-22.942860480999855,64.98663971600008],[-22.926991339999944,64.99701569200009],[-22.906076626999976,65.00348541900009],[-22.844715949999877,65.00991445500001],[-22.785227016999926,65.02757396000011],[-22.801136847999942,65.03192780200003],[-22.873890753999916,65.02757396000011],[-22.873890753999916,65.0350609400001],[-22.831857876999948,65.03912995000003],[-22.75706946499986,65.07192617400014],[-22.717518683999913,65.07599518400009],[-22.723255988999878,65.07196686400015],[-22.730580206999885,65.06915924700009],[-22.71275794199991,65.06712474200008],[-22.695871548999918,65.06232330900015],[-22.69741777299987,65.05463288000006],[-22.69798743399994,65.05329010600015],[-22.697499152999853,65.053208726],[-22.695871548999918,65.049302476],[-22.70986894399988,65.04059479400009],[-22.74006100199989,65.03343333500005],[-22.75108801999994,65.02757396000011],[-22.737863735999895,65.02602773600007],[-22.72118079299986,65.02655670800006],[-22.704009568999936,65.02948639500006],[-22.68960527299987,65.0350609400001],[-22.682932094999927,65.01569245000015],[-22.67442786399988,65.00755442900005],[-22.641184048999886,65.00092194200009],[-22.59650631399992,64.98334381700015],[-22.579741990999903,64.9804141300001],[-22.579741990999903,64.98663971600008],[-22.592193162999905,64.98981354400014],[-22.603423631999902,64.9960798200001],[-22.628163214999887,65.01459381700012],[-22.601063605999855,65.02997467700006],[-22.58617102799991,65.03485748900012],[-22.566070115999963,65.0350609400001],[-22.564116990999906,65.0483259140001],[-22.54539954299986,65.05219147300004],[-22.461903449999877,65.05048248900003],[-22.379994269999912,65.05878327],[-22.24474036399991,65.04726797100015],[-22.155181443999933,65.02757396000011],[-22.145008917999917,65.030218817],[-22.129709438999953,65.03921133000001],[-22.1204320949999,65.04189687700001],[-22.045318162999877,65.04189687700001],[-22.025054490999878,65.03790924700003],[-22.003570115999935,65.03082916900014],[-21.982533331999917,65.0275332700001],[-21.980620897999952,65.02830638200005],[-21.963368292999945,65.0350609400001],[-21.937163865999906,65.0275332700001],[-21.826242641999954,65.0350609400001],[-21.799672003999913,65.04462311400006],[-21.798654751999948,65.05703359600001],[-21.816477016999926,65.06696198100008],[-21.846669074999852,65.06915924700009],[-21.836577928999873,65.08242422100004],[-21.824696417999917,65.08681875200001],[-21.810170050999886,65.08926015800013],[-21.792103644999884,65.09650299700014],[-21.779286261999857,65.10805898600007],[-21.73741614499994,65.15916575700005],[-21.73412024599989,65.19379303600013],[-21.76610266799989,65.20795319200006],[-21.809478318999936,65.20612213700008],[-21.840484178999873,65.19269440300009],[-21.840484178999873,65.18585846600008],[-21.833078579999892,65.18585846600008],[-21.833078579999892,65.17841217700003],[-21.983876105999883,65.12376536700005],[-22.03384355399993,65.114935614],[-22.318959113999938,65.13841380400005],[-22.390736456999942,65.16327545800003],[-22.401600714999915,65.16535065300003],[-22.40648352799988,65.16474030200008],[-22.420725063999896,65.16022370000012],[-22.5118708979999,65.154201565],[-22.538726365999878,65.15916575700005],[-22.557687954999892,65.168931382],[-22.542347785999937,65.17316315300002],[-22.51309160099993,65.17706940300012],[-22.49034583199989,65.18585846600008],[-22.48273678299995,65.180650132],[-22.475249803999873,65.17853424700016],[-22.45685787699992,65.17841217700003],[-22.45685787699992,65.18585846600008],[-22.478993292999917,65.19277578300007],[-22.50430253799996,65.19383372600014],[-22.552479620999918,65.18585846600008],[-22.542225714999887,65.20066966400005],[-22.52403723899988,65.21499258000013],[-22.49034583199989,65.23362864800013],[-22.44383704299986,65.24298737200014],[-22.426177537999934,65.2514509140001],[-22.428863084999904,65.26776764500012],[-22.414173956999914,65.270453192],[-22.378041144999884,65.26776764500012],[-22.369130011999943,65.27167389500012],[-22.339507615999906,65.29572174700014],[-22.312855597999942,65.30434804900007],[-22.20128333199989,65.31769440300017],[-22.107004360999895,65.348334052],[-22.070871548999946,65.36737702000006],[-22.00682532499988,65.38125234600007],[-21.983876105999883,65.39191315300008],[-21.986154751999948,65.39301178600014],[-21.988636847999885,65.392767645],[-21.9903865229999,65.3936221370001],[-21.99010169199994,65.39813873900006],[-21.975087042999917,65.39740631700012],[-21.950550910999905,65.3858910180001],[-21.935454881999902,65.38507721600008],[-21.94440670499992,65.400539455],[-21.94908606699994,65.40558502800003],[-21.887074347999885,65.42072174700003],[-21.75723222599993,65.43789297100015],[-21.71934973899991,65.44737376500015],[-21.695301886999882,65.45335521000008],[-21.79133053299995,65.44013092700014],[-21.826242641999954,65.43976471600003],[-21.897572394999965,65.44651927300005],[-21.95689856699994,65.43911367400007],[-21.97642981699991,65.43976471600003],[-21.956776495999858,65.4552676450001],[-21.935454881999902,65.46702708500011],[-21.971547003999945,65.48187897300006],[-21.985096808999913,65.49274323100015],[-21.99010169199994,65.50800202000012],[-22.003163214999915,65.50389231999998],[-22.016957160999933,65.50141022300006],[-22.03115800699996,65.50043366100009],[-22.045318162999877,65.50116608300011],[-22.03966223899988,65.48712799700014],[-22.048573370999918,65.482611395],[-22.062814907999922,65.48403554900007],[-22.07323157499991,65.48749420800007],[-22.082427537999877,65.49648672100001],[-22.101185675999943,65.52045319200013],[-22.11424719999991,65.528509833],[-22.109038865999935,65.51162344],[-22.111398891999983,65.49746328300007],[-22.120269334999932,65.48509349200012],[-22.134755011999886,65.47386302300013],[-22.152414516999894,65.464585679],[-22.162587042999945,65.46100495000012],[-22.17162024599986,65.45962148600003],[-22.17528235599991,65.45530833500011],[-22.18150794199994,65.4459496110001],[-22.189605272999895,65.43659088700015],[-22.199208136999857,65.43231842700006],[-22.236927863999938,65.430812893],[-22.25381425699993,65.43366120000003],[-22.2806697259999,65.45132070500013],[-22.339507615999906,65.47386302300013],[-22.381581183999856,65.48285553600006],[-22.38719641799986,65.4916852890001],[-22.367502407999922,65.50800202000012],[-22.345814581999914,65.51471588700018],[-22.235096808999856,65.52480703300013],[-22.188710089999887,65.53839752800009],[-22.164784308999913,65.541489976],[-22.1537166009999,65.54588450700005],[-22.150746222999885,65.55613841399999],[-22.150624152999907,65.56793854400014],[-22.14834550699993,65.57689036699999],[-22.13971920499992,65.58392975500006],[-22.12865149599989,65.58930084800004],[-22.106800910999933,65.5967471370001],[-22.136382615999906,65.59332916900009],[-22.209828253999916,65.54897695500013],[-22.243885870999918,65.53709544500002],[-22.276437954999892,65.53070709800006],[-22.346994594999956,65.528509833],[-22.346994594999956,65.53534577],[-22.304676886999854,65.54804108300006],[-22.291737433999856,65.55516185100011],[-22.291737433999856,65.56264883000007],[-22.312489386999857,65.56199778900005],[-22.327381964999887,65.556097723],[-22.353260870999918,65.541489976],[-22.373931443999936,65.53815338700015],[-22.38658606699991,65.5422223980001],[-22.398182745999918,65.5477969420001],[-22.41588294199991,65.54897695500013],[-22.41588294199991,65.541489976],[-22.40371660099993,65.53384023600013],[-22.40884355399993,65.52484772300012],[-22.42341061099998,65.51732005400008],[-22.47862708199989,65.50800202000012],[-22.493397589999887,65.511175848],[-22.504017706999914,65.528509833],[-22.505034959999875,65.54490794499999],[-22.501210089999887,65.55719635600005],[-22.50145423099991,65.56964752800015],[-22.51455644399988,65.58657461100013],[-22.533924933999913,65.621771552],[-22.545887824999937,65.63401927300008],[-22.558379686999928,65.62474192900011],[-22.557687954999892,65.61937083500005],[-22.55842037699992,65.60854726800007],[-22.55695553299995,65.59788646000011],[-22.541005011999857,65.57660553600006],[-22.540882941999882,65.56842682500015],[-22.546538865999878,65.56073639500012],[-22.565744594999927,65.54311758000001],[-22.576649542999917,65.53628164300008],[-22.5891820949999,65.53558991100013],[-22.603993292999885,65.54523346600003],[-22.622954881999902,65.5641543640001],[-22.631459113999934,65.56582265800013],[-22.63776607999995,65.53978099199999],[-22.645334438999924,65.53188711100002],[-22.656158006999902,65.52806224199999],[-22.669097459999904,65.528509833],[-22.67682857999992,65.53278229400009],[-22.684803839999887,65.54083893400004],[-22.70763098899991,65.57221100500007],[-22.711984829999892,65.5885277360001],[-22.704741990999878,65.6052920590001],[-22.682118292999917,65.62409088700015],[-22.691232876999887,65.629584052],[-22.696278449999937,65.6281598980001],[-22.701242641999983,65.62474192900011],[-22.710072394999937,65.62409088700015],[-22.73680579299986,65.63153717700014],[-22.75365149599986,65.63153717700014],[-22.759388800999915,65.62982819200012],[-22.764027472999942,65.62409088700015],[-22.76341712099989,65.618353583],[-22.754465298999946,65.5967471370001],[-22.744862433999884,65.58437734600014],[-22.717518683999913,65.50800202000012],[-22.731516079999977,65.50177643400015],[-22.748605923999918,65.50332265800002],[-22.76707923099985,65.50722890800002],[-22.785227016999926,65.50800202000012],[-22.785227016999926,65.51422760600009],[-22.779530402999853,65.52252838700015],[-22.784413214999915,65.5292829450001],[-22.795725063999924,65.533677476],[-22.809152798999918,65.53534577],[-22.842274542999945,65.53082916900014],[-22.85326087099989,65.53204987200014],[-22.85411536399991,65.541489976],[-22.86229407499991,65.54071686400006],[-22.887603318999936,65.541489976],[-22.887603318999936,65.54897695500013],[-22.863392706999942,65.55906810100011],[-22.818714972999885,65.58454010600012],[-22.79198157499988,65.58999258000016],[-22.80199133999986,65.60097890800002],[-22.81883704299986,65.60858795800006],[-22.85411536399991,65.61790599200002],[-22.85960852799994,65.59560781500006],[-22.87995357999992,65.57648346600007],[-22.90526282499988,65.56688060100011],[-22.925770636999914,65.57318756700015],[-22.93224036399991,65.584173895],[-22.936756964999883,65.59638092700008],[-22.94273841099988,65.60635000200007],[-22.953439907999922,65.61041901200004],[-22.956044074999905,65.6036644550001],[-22.96100826699995,65.57208893400009],[-22.963978644999884,65.56264883000007],[-22.985218878999945,65.55121491100012],[-23.04531816299993,65.54507070500016],[-23.073475714999944,65.53839752800009],[-23.128651495999858,65.54975006700006],[-23.15811113199993,65.562201239],[-23.155140753999945,65.57689036699999],[-23.155140753999945,65.58315664300012],[-23.183013475999896,65.576361395],[-23.200021938999953,65.556586005],[-23.201324022999955,65.53473541900014],[-23.18244381399992,65.52167389500006],[-23.18244381399992,65.51422760600009],[-23.195383266999926,65.50861237200009],[-23.218088344999956,65.49310944200009],[-23.23143469999988,65.48749420800007],[-23.24742591099988,65.48541901200015],[-23.31403561099995,65.488714911],[-23.341420050999915,65.493841864],[-23.357492641999897,65.49494049700014],[-23.373036261999914,65.49819570500001],[-23.384917772999867,65.505601304],[-23.39590410099993,65.51447174700003],[-23.4015193349999,65.51422760600009],[-23.408273891999954,65.51373932500009],[-23.413075324999852,65.51235586100002],[-23.423329230999883,65.50800202000012],[-23.418812628999916,65.50665924700006],[-23.415882941999882,65.50531647300014],[-23.409006313999893,65.50116608300011],[-23.43773352799985,65.49616120000016],[-23.490345831999946,65.4779320330001],[-23.625396287999905,65.46645742400013],[-23.65607662699992,65.47386302300013],[-23.656971808999913,65.46185944199999],[-23.661284959999904,65.45799388200003],[-23.668039516999926,65.45697663000013],[-23.676503058999884,65.45335521000008],[-23.714100714999887,65.42609284100008],[-23.89753170499992,65.40460846600014],[-23.943837042999917,65.4069278020001],[-23.984364386999943,65.41864655200011],[-23.984364386999943,65.42609284100008],[-23.97874915299985,65.43402741100006],[-23.982980923999946,65.44131094000006],[-23.993031378999916,65.44782135600013],[-24.00487219999988,65.45335521000008],[-23.98664303299989,65.45282623899999],[-23.978911912999905,65.45075104400009],[-23.970692511999882,65.44651927300005],[-23.96776282499988,65.46491120000009],[-23.98619544199991,65.47418854400014],[-24.009022589999915,65.47284577000006],[-24.019154425999886,65.45962148600003],[-24.043080206999946,65.47455475500009],[-24.196685350999896,65.50116608300011],[-24.481760219999927,65.48847077000015],[-24.518299933999884,65.4913597680001],[-24.539906378999973,65.50800202000012],[-24.49600175699993,65.5189883480001],[-24.473784959999875,65.52822500200016],[-24.4641820949999,65.53839752800009],[-24.451568162999905,65.54523346600003],[-24.393137173999918,65.56073639500012],[-24.37539628799993,65.56940338700012],[-24.37132727799988,65.5849470070001],[-24.371490037999934,65.60297272300015],[-24.365793423999946,65.61790599200002],[-24.335031704999892,65.62636953300013],[-24.317534959999932,65.63613515800007],[-24.3033748039999,65.63837311400006],[-24.277943488999878,65.63641998900003],[-24.18065344999991,65.61237213700018],[-24.15257727799991,65.61041901200004],[-24.135406053999873,65.60614655200011],[-24.08055579299989,65.57689036699999],[-24.0411677729999,65.56647370000009],[-23.971302863999938,65.55866120000012],[-23.954701300999886,65.54913971600011],[-23.940174933999856,65.53790924700012],[-23.92296301999994,65.528509833],[-23.89281165299991,65.52216217700004],[-23.863636847999885,65.52301666900014],[-23.806792772999927,65.53534577],[-23.85244706899988,65.53461334800006],[-23.876088019999884,65.53729889500015],[-23.895008917999917,65.541489976],[-23.911366339999915,65.550482489],[-23.925404425999886,65.562241929],[-23.940785285999908,65.57249583500003],[-23.960804816999882,65.57689036699999],[-24.00999915299991,65.59943268400015],[-24.03734290299988,65.61920807500009],[-24.06924394399988,65.63703034100017],[-24.086781378999916,65.65135325700005],[-23.935943162999934,65.63837311400006],[-23.838002081999917,65.614447333],[-23.806792772999927,65.61041901200004],[-23.825917120999886,65.62592194200015],[-23.852650519999912,65.63898346600003],[-23.881214972999913,65.64809804900001],[-23.924672003999945,65.65473053600009],[-23.976551886999857,65.66913483300014],[-24.02285722599993,65.67617422100001],[-24.044911261999914,65.68500397300006],[-24.08055579299989,65.706000067],[-24.12157141799989,65.74079010600015],[-24.124867316999907,65.75348541900003],[-24.1236873039999,65.76557038000011],[-24.12482662699992,65.7773298200001],[-24.135161912999934,65.78912995000017],[-24.092844204999917,65.80475495000015],[-24.049875454999977,65.80353424700003],[-23.628081834999872,65.706000067],[-23.6185603509999,65.70107656500015],[-23.600819464999887,65.6861839860001],[-23.573597785999905,65.67743561400012],[-23.56663977799991,65.67251211100016],[-23.556385870999886,65.6546898460001],[-23.56086178299995,65.64337799700009],[-23.571441209999904,65.63300202],[-23.579701300999883,65.61790599200002],[-23.561756964999944,65.61367422100007],[-23.53880774599986,65.62128327000003],[-23.497792120999947,65.64520905200008],[-23.493804490999878,65.64020416900003],[-23.477894660999937,65.63153717700014],[-23.467030402999853,65.64093659100017],[-23.412668423999946,65.635239976],[-23.38853919199991,65.63837311400006],[-23.38853919199991,65.64520905200008],[-23.397328253999888,65.6472028670001],[-23.40143795499992,65.6494815120001],[-23.409006313999893,65.658840236],[-23.39159094999991,65.659369208],[-23.346913214999855,65.67251211100016],[-23.3307185539999,65.67332591399997],[-23.31468665299991,65.672349351],[-23.299427863999938,65.67316315300012],[-23.28547115799998,65.67934804900007],[-23.40412350199992,65.67519765800012],[-23.458241339999883,65.68244049700014],[-23.497792120999947,65.69301992400001],[-23.51162675699993,65.69969310100008],[-23.529408331999917,65.71149323100003],[-23.539173956999942,65.72272370000003],[-23.529164191999882,65.72772858300009],[-23.46690833199989,65.739691473],[-23.45335852799991,65.73737213700007],[-23.437814907999922,65.73163483300009],[-23.35619055899991,65.736232815],[-23.330189581999917,65.74599844000015],[-23.309681769999884,65.74823639500012],[-23.26593990799989,65.74127838700004],[-23.244536912999934,65.74038320500016],[-23.2240291009999,65.74823639500012],[-23.236643032999975,65.75348541900003],[-23.24290930899991,65.75519440300002],[-23.25133216099988,65.75507233300004],[-23.25133216099988,65.76121653900013],[-23.204213019999884,65.77484772300006],[-23.189849412999905,65.78237539300011],[-23.244699673999918,65.77912018400009],[-23.276275193999908,65.77313873900006],[-23.319243943999965,65.757025458],[-23.58877519399988,65.75975169500008],[-23.64171301999994,65.768703518],[-23.676503058999884,65.78237539300011],[-23.729156053999898,65.774359442],[-23.741078253999945,65.77863190300009],[-23.754953579999917,65.78900788],[-23.81309973899988,65.8158633480001],[-23.845204230999855,65.84296295800011],[-23.8666072259999,65.87555573100013],[-23.863148566999882,65.90582916900014],[-23.82054602799985,65.92572663000006],[-23.800852016999897,65.92621491100014],[-23.74413001199991,65.9120954450001],[-23.669667120999858,65.905218817],[-23.65094967399989,65.90021393400015],[-23.619211391999926,65.8840192730001],[-23.600819464999887,65.87791575700011],[-23.581898566999882,65.87693919500003],[-23.518869594999956,65.88475169500003],[-23.395334438999953,65.86432526200015],[-23.354359503999913,65.86432526200015],[-23.283111131999927,65.84267812700007],[-23.244536912999934,65.83612702],[-23.209787563999896,65.84320709800006],[-23.292469855999855,65.85423411700009],[-23.31883704299986,65.86786530200006],[-23.4015193349999,65.8710798200001],[-23.427357550999943,65.87738678600014],[-23.474273240999878,65.89484284100011],[-23.577870245999915,65.90501536700005],[-23.600819464999887,65.9120954450001],[-23.65510006399992,65.94257233300006],[-23.68252519399988,65.948960679],[-23.69591223899988,65.95831940300012],[-23.71751868399988,65.96206289300015],[-23.763295050999886,65.97992584800004],[-23.80418860599994,66.00324127800002],[-23.81309973899988,66.01137929900013],[-23.813221808999856,66.042222398],[-23.807484503999973,66.05841705900015],[-23.792591925999915,66.07037995000009],[-23.75137285099987,66.07656484600015],[-23.699574347999942,66.07172272300006],[-23.518299933999884,66.02667877800009],[-23.465199347999885,66.0209821640001],[-23.42943274599986,66.02944570500016],[-23.424794074999852,66.01373932500009],[-23.412505662999877,66.00031159100008],[-23.39513098899991,65.99103424700014],[-23.374867316999882,65.9877790390001],[-23.374867316999882,65.99404531500015],[-23.391835089999855,66.00470612200009],[-23.422515428999873,66.03587474200006],[-23.443104620999886,66.04242584800015],[-23.465972459999904,66.04458242400015],[-23.511952277999853,66.05394114799999],[-23.53587805899991,66.0560977230001],[-23.547027147999927,66.059515692],[-23.577504035999876,66.07660553600014],[-23.636057094999927,66.09821198100002],[-23.669667120999858,66.11749909100008],[-23.637318488999938,66.12848541900001],[-23.550160285999905,66.13198476800012],[-23.48412024599989,66.12759023600013],[-23.395334438999953,66.09764232],[-23.419097459999932,66.106634833],[-23.45840410099987,66.13304270999998],[-23.481027798999918,66.138617255],[-23.577056443999908,66.13768138200011],[-23.600819464999887,66.14484284100014],[-23.600819464999887,66.1522891300001],[-23.590972459999875,66.15985748900009],[-23.576405402999853,66.16889069200009],[-23.559559699999852,66.17645905200014],[-23.549916144999884,66.17829010600012],[-23.54271399599986,66.17963288],[-23.501291469999927,66.18048737200009],[-23.48558508999986,66.18622467700008],[-23.48412024599989,66.19944896000011],[-23.461415167999856,66.20416901200012],[-23.304351365999906,66.18577708500008],[-23.20250403599988,66.15509674700017],[-23.172474738999906,66.1522891300001],[-23.152699347999913,66.14581940300003],[-23.12743079299986,66.13056061400006],[-23.110218878999916,66.11253489800013],[-23.114165818999908,66.09764232],[-23.10728919199991,66.07591380400002],[-23.057972785999908,66.10761139500006],[-23.038441535999937,66.1113141950001],[-23.027699347999913,66.10871002800012],[-23.01821855399993,66.10260651200004],[-23.004302537999934,66.0902367210001],[-22.98607337099986,66.07953522300006],[-22.98403886599993,66.07412344000004],[-22.983754035999908,66.059515692],[-22.97838294199994,66.04336172100012],[-22.976877407999893,66.033677476],[-22.98350989499994,66.02631256700009],[-23.000355597999942,66.01337311400009],[-23.004302537999934,66.01137929900013],[-23.04914303299995,65.97650788000003],[-23.058949347999885,65.96670156500006],[-23.052723761999943,65.96670156500006],[-23.031239386999914,65.980943101],[-22.976551886999857,66.00844961100002],[-22.95653235599991,66.021918036],[-22.95091712099989,66.03001536700013],[-22.94640051999994,66.0391299500001],[-22.94005286399991,66.04645416900003],[-22.92918860599991,66.04926178600006],[-22.917225714999883,66.04612864799999],[-22.909657355999855,66.03864166900003],[-22.895090298999918,66.0150820980001],[-22.899769660999937,66.01064687700001],[-22.90184485599985,66.00763580900009],[-22.887440558999884,66.01341380400008],[-22.87157141799986,66.02301666900014],[-22.855539516999954,66.02850983300009],[-22.840443488999966,66.021918036],[-22.857492641999926,65.99868398600007],[-22.88097083199989,65.975287177],[-22.909779425999915,65.95636627800015],[-22.942860480999855,65.94684479400017],[-22.902699347999942,65.94790273600005],[-22.884429490999878,65.95180898600002],[-22.867746548999946,65.96051666900011],[-22.84862219999988,65.98615143400016],[-22.834095831999917,66.00141022300014],[-22.823109503999888,66.00458405200011],[-22.809152798999918,65.97760651200015],[-22.815541144999912,65.94977448100009],[-22.824696417999917,65.92625560100014],[-22.819325324999852,65.9120954450001],[-22.785227016999926,65.96051666900011],[-22.787098761999914,65.98285553600014],[-22.78294837099986,66.00861237200016],[-22.774566209999904,66.03253815300003],[-22.764027472999942,66.04926178600006],[-22.755970831999917,66.05683014500012],[-22.75047766799989,66.05841705900015],[-22.68272864499997,66.05585358300014],[-22.675933397999927,66.05267975500009],[-22.67357337099989,66.0391299500001],[-22.66722571499986,66.03091054900001],[-22.65851803299995,66.025864976],[-22.620269334999904,66.00922272300012],[-22.58413652299987,65.98118724200012],[-22.578277147999927,65.97760651200015],[-22.577381964999855,65.973089911],[-22.581939256999902,65.95140208500011],[-22.58617102799991,65.94037506700006],[-22.59227454299989,65.93065013200011],[-22.600209113999966,65.92572663000006],[-22.597645636999854,65.92206452],[-22.593413865999935,65.91958242400007],[-22.644886847999913,65.86058177300013],[-22.655425584999875,65.8421898460001],[-22.64818274599986,65.83368561400005],[-22.635161912999877,65.83527252800009],[-22.611683722999913,65.87384674700014],[-22.545318162999877,65.94696686400013],[-22.538726365999878,65.96670156500006],[-22.538726365999878,65.97418854400014],[-22.517323370999943,65.97577545800009],[-22.50373287699989,65.96629466399999],[-22.492176886999857,65.95209381700006],[-22.476714647999927,65.939398505],[-22.469471808999913,65.93866608300006],[-22.463693813999953,65.941107489],[-22.45750891799989,65.94106679900001],[-22.44937089799987,65.93256256700009],[-22.44994055899994,65.92450592700014],[-22.45531165299988,65.91673411700005],[-22.456166144999884,65.90997955900009],[-22.442534959999932,65.905218817],[-22.440785285999937,65.91030508000013],[-22.436105923999943,65.920355536],[-22.429432745999886,65.92796458500014],[-22.422108527999878,65.92572663000006],[-22.4220271479999,65.91889069200015],[-22.428863084999904,65.88475169500003],[-22.437163865999906,65.87352122600005],[-22.460275844999927,65.85431549700009],[-22.469878709999932,65.84320709800006],[-22.469878709999932,65.8369815120001],[-22.431630011999886,65.84589264500012],[-22.392648891999897,65.90167877800003],[-22.36070716099988,65.9120954450001],[-22.36070716099988,65.91958242400007],[-22.381255662999934,65.92877838700014],[-22.392648891999897,65.94806549700009],[-22.39989173099991,65.97016022300006],[-22.408436652999853,65.9877790390001],[-22.423003709999875,66.00202057500009],[-22.442046678999873,66.01544830900009],[-22.46320553299995,66.02545807500017],[-22.48420162699992,66.02944570500016],[-22.473866339999887,66.04242584800015],[-22.469471808999913,66.05463288000011],[-22.463734503999945,66.06586334800012],[-22.44937089799987,66.07591380400002],[-22.430287238999878,66.07990143400016],[-22.4103083979999,66.08038971600017],[-22.392811652999853,66.08405182500003],[-22.381174282999947,66.09764232],[-22.401722785999905,66.09731679900015],[-22.45107988199987,66.08714427300009],[-22.469878709999932,66.07965729400003],[-22.488392706999946,66.07672760600012],[-22.57217363199993,66.09369538],[-22.628163214999887,66.11749909100008],[-22.865956183999856,66.15949127800015],[-22.935861782999893,66.18976471600014],[-22.97760982999992,66.23419830900015],[-22.930897589999915,66.24640534100014],[-22.782460089999887,66.26276276200014],[-22.75108801999994,66.262152411],[-22.644886847999913,66.24848053600006],[-22.617298956999914,66.24848053600006],[-22.606556769999884,66.24677155200006],[-22.601185675999943,66.24266185100011],[-22.59788977799991,66.23794179900001],[-22.593413865999935,66.23419830900015],[-22.566517706999946,66.22284577],[-22.552357550999943,66.22138092700014],[-22.538726365999878,66.22736237200014],[-22.545480923999918,66.23078034100013],[-22.550363735999895,66.23529694200012],[-22.55923417899993,66.24848053600006],[-22.50983639199995,66.24835846600008],[-22.484486456999946,66.25116608300014],[-22.44054114499991,66.26544830900004],[-22.390614386999857,66.26752350500004],[-22.367502407999922,66.27521393400018],[-22.503407355999855,66.26642487200012],[-22.544911261999857,66.27521393400018],[-22.564564581999917,66.28363678600012],[-22.560414191999882,66.28497955900012],[-22.544300910999908,66.28571198100015],[-22.528187628999916,66.29262929900015],[-22.517567511999886,66.30011627800012],[-22.50291907499988,66.30609772300012],[-22.486317511999914,66.30951569200015],[-22.469878709999932,66.30931224199999],[-22.469878709999932,66.31679922100015],[-22.492095506999874,66.32196686400006],[-22.50536048099991,66.32005442900002],[-22.544911261999857,66.30312734600004],[-22.595692511999914,66.29173411700005],[-22.654855923999918,66.28945547100008],[-22.70164954299989,66.29340241100006],[-22.710072394999937,66.29564036700005],[-22.711415167999917,66.30646393400006],[-22.702748175999915,66.31370677300008],[-22.682118292999917,66.32363515800007],[-22.678456183999856,66.3307559270001],[-22.673085089999887,66.35081614799999],[-22.669097459999904,66.35712311400012],[-22.655425584999875,66.36318594000011],[-22.607655402999853,66.37140534100003],[-22.651112433999884,66.36774323100015],[-22.683949347999885,66.35830312700016],[-22.763050910999876,66.32367584800005],[-22.781646287999877,66.31952545800011],[-22.823109503999888,66.31679922100015],[-22.83535722599993,66.32265859600001],[-22.828602667999913,66.33576080900015],[-22.813140428999873,66.3495140650001],[-22.79946855399993,66.35712311400012],[-22.79946855399993,66.36456940300009],[-22.833729620999915,66.35883209800012],[-22.850697394999884,66.35293203300009],[-22.867746548999946,66.34406159100014],[-22.90762285099993,66.31513092700014],[-22.91559811099995,66.31305573100003],[-22.939686652999907,66.30145905200003],[-23.098052537999934,66.31830475500003],[-23.1393123039999,66.32778554900001],[-23.166493292999913,66.34227122600005],[-23.182850714999912,66.34878164300015],[-23.18968665299985,66.35529205900006],[-23.17625891799986,66.36456940300009],[-23.137847459999932,66.36566803600013],[-23.089507615999935,66.358099677],[-23.04674231699991,66.36066315300009],[-23.0248103509999,66.39183177299999],[-23.05304928299995,66.393540757],[-23.084624803999958,66.40326569200015],[-23.11388098899988,66.41746653900007],[-23.135324673999914,66.43280670800002],[-23.104725714999915,66.442816473],[-23.073312954999974,66.43695709800015],[-23.041900193999936,66.42560455900018],[-23.011708136999914,66.41917552300008],[-23.01911373599992,66.43040599200008],[-23.024159308999856,66.43524811400013],[-23.032297329999945,66.44025299700009],[-22.922718878999916,66.44765859600007],[-22.91559811099995,66.44647858300014],[-22.909494594999984,66.44245026200018],[-22.901112433999913,66.43024323100009],[-22.895090298999918,66.42601146],[-22.873524542999913,66.423773505],[-22.864491339999887,66.43138255400014],[-22.86815344999985,66.4413923200001],[-22.88451087099986,66.44647858300014],[-22.90086829299989,66.44904205900015],[-22.95030676999994,66.466986395],[-22.850331183999884,66.466986395],[-22.83263098899988,66.4638125670001],[-22.79727128799996,66.44969310100002],[-22.75218665299988,66.44269440300003],[-22.716135219999927,66.42487213700002],[-22.695871548999918,66.41917552300008],[-22.67023678299995,66.42096588700007],[-22.631174282999893,66.43960195500013],[-22.607655402999853,66.44647858300014],[-22.609852667999917,66.450140692],[-22.61388098899991,66.46015045800009],[-22.574533657999893,66.46588776200015],[-22.542225714999887,66.45538971600008],[-22.51073157499988,66.44041575700005],[-22.441721157999922,66.42666250200011],[-22.426625128999916,66.42792389500012],[-22.422108527999878,66.44025299700009],[-22.429351365999906,66.450140692],[-22.455555792999945,66.457464911],[-22.46312415299988,66.466986395],[-22.431019660999908,66.46474844000004],[-22.40013587099986,66.45221588700012],[-22.37669837099989,66.43256256700006],[-22.367502407999922,66.40892161700005],[-22.350005662999873,66.39419179900013],[-22.26862545499989,66.37592194200006],[-22.243397589999944,66.35712311400012],[-22.257639126999948,66.34715403900013],[-22.24474036399991,66.34113190300003],[-22.202300584999932,66.33722565300003],[-22.202300584999932,66.33038971600011],[-22.220611131999902,66.33283112200014],[-22.228260870999947,66.32855866100012],[-22.229725714999887,66.31997304900003],[-22.2296443349999,66.30931224199999],[-22.224680141999954,66.3041445980001],[-22.215891079999892,66.29718659100008],[-22.214100714999912,66.28969961100003],[-22.2296443349999,66.28261953300007],[-22.2296443349999,66.27521393400018],[-22.21666419199991,66.26837799700014],[-22.20303300699987,66.27448151200007],[-22.187123175999943,66.279486395],[-22.1705623039999,66.28253815300009],[-22.155181443999933,66.28261953300007],[-22.145985480999883,66.27814362200009],[-22.13792883999986,66.27130768400018],[-22.12828528599988,66.26829661699999],[-22.1204320949999,66.27521393400018],[-22.105620897999927,66.28782786700008],[-22.089588995999915,66.28986237200009],[-22.08039303299995,66.28286367400001],[-22.08629309799988,66.26837799700014],[-22.015044725999868,66.27142975500006],[-21.996937628999973,66.26837799700014],[-21.988189256999902,66.2746442730001],[-21.979318813999953,66.27496979400003],[-21.970936652999878,66.27195872600014],[-21.963368292999945,66.26837799700014],[-21.957712368999864,66.26463450700011],[-21.921783006999874,66.24103424700009],[-21.93126380099997,66.23395416900003],[-21.99010169199994,66.21377187700001],[-21.97679602799994,66.21010976800015],[-21.963978644999912,66.2128766950001],[-21.950550910999905,66.21808502800009],[-21.935454881999902,66.221177476],[-21.920725063999893,66.21967194200012],[-21.874012824999905,66.20380280200003],[-21.861439581999917,66.19611237200009],[-21.853505011999854,66.19330475500014],[-21.84361731699994,66.193060614],[-21.82335364499994,66.19830963700018],[-21.812652147999927,66.19944896000011],[-21.74986731699994,66.18577708500008],[-21.752837693999965,66.18219635600009],[-21.75731360599991,66.1727562520001],[-21.74006100199992,66.16819896000005],[-21.73009192599991,66.1562360700001],[-21.730336066999882,66.14411041900003],[-21.743641730999883,66.138617255],[-21.73989824099996,66.13239166900003],[-21.731800910999937,66.12250397300012],[-21.730051235999923,66.11749909100008],[-21.729725714999915,66.117865302],[-21.728098110999895,66.1014671900001],[-21.72301184799997,66.08222077000015],[-21.716379360999895,66.07550690300008],[-21.70274817599994,66.07037995000009],[-21.68854732999995,66.07127513200008],[-21.671009894999912,66.07575104400006],[-21.65396074099993,66.07758209800002],[-21.641224738999878,66.07037995000009],[-21.639271613999934,66.0565453150001],[-21.648060675999915,66.04401276200018],[-21.66002356699994,66.03253815300003],[-21.66795813699991,66.021918036],[-21.65518144399996,66.02338288000006],[-21.63931230399993,66.028021552],[-21.625884568999936,66.03384023600013],[-21.62018795499995,66.03900788000013],[-21.619699673999975,66.05573151200015],[-21.620716925999943,66.06346263199998],[-21.641224738999878,66.08344147300006],[-21.628814256999874,66.08901601800007],[-21.59325110599988,66.09638092700006],[-21.548817511999886,66.09764232],[-21.541330532999922,66.09422435100008],[-21.535878058999884,66.08681875200007],[-21.531605597999942,66.0793317730001],[-21.52765865799998,66.07591380400002],[-21.509185350999957,66.07233307500003],[-21.52122962099986,66.06452057500003],[-21.542551235999923,66.05744049700017],[-21.551869269999884,66.0560977230001],[-21.55846106699994,66.04653554900001],[-21.554025844999956,66.03925202000009],[-21.534779425999915,66.02570221600003],[-21.509388800999915,66.0170759140001],[-21.401031053999873,66.02944570500016],[-21.372303839999915,66.02631256700009],[-21.348703579999892,66.02069733300009],[-21.33063717399997,66.00901927299999],[-21.31851152299987,65.9877790390001],[-21.459299282999893,65.98232656500005],[-21.48607337099989,65.97321198100015],[-21.591623501999976,65.96039459800011],[-21.60651607999992,65.96051666900011],[-21.588124152999878,65.94635651200018],[-21.56012936099995,65.94794342700011],[-21.50377356699991,65.96051666900011],[-21.41002356699991,65.967474677],[-21.380604620999918,65.96051666900011],[-21.392689581999917,65.95205312700007],[-21.435780402999853,65.939398505],[-21.435780402999853,65.93256256700009],[-21.328114386999857,65.94525788000014],[-21.301747199999852,65.935980536],[-21.287180141999926,65.91583893400006],[-21.284047003999945,65.89862702000012],[-21.29588782499991,65.88556549700014],[-21.325917120999858,65.87791575700011],[-21.278187628999916,65.86432526200015],[-21.278187628999916,65.856878973],[-21.327788865999935,65.80902741100006],[-21.345814581999946,65.79604726800007],[-21.375314907999922,65.78489817900004],[-21.47679602799985,65.768703518],[-21.47679602799985,65.76121653900013],[-21.455148891999954,65.76056549700009],[-21.417876756999874,65.76349518400009],[-21.401031053999873,65.76121653900013],[-21.34788977799988,65.7471377620001],[-21.332142706999914,65.74079010600015],[-21.414133266999954,65.69985586100013],[-21.443511522999955,65.6904971370001],[-21.57921301999994,65.69301992400001],[-21.58885657499991,65.69765859600011],[-21.60533606699991,65.71067942900011],[-21.609934048999918,65.71344635600009],[-21.62922115799995,65.71938711100002],[-21.647206183999913,65.73261139500015],[-21.659331834999904,65.74656810100011],[-21.66112219999988,65.75507233300004],[-21.685943162999934,65.76943594000012],[-21.71670488199993,65.7764346370001],[-21.748890753999888,65.776068427],[-21.77782141799989,65.768703518],[-21.75841223899988,65.76740143400009],[-21.711333787999877,65.75462474200005],[-21.695301886999882,65.74823639500012],[-21.69322669199994,65.74551015800007],[-21.672230597999913,65.72919342700014],[-21.66795813699991,65.72772858300009],[-21.665394660999908,65.71564362200017],[-21.66852779899997,65.70766836100002],[-21.676584438999896,65.70099518400015],[-21.689076300999915,65.69301992400001],[-21.672963019999937,65.6861839860001],[-21.664662238999878,65.68113841400007],[-21.66112219999988,65.67593008000007],[-21.655873175999915,65.66266510600003],[-21.644398566999936,65.65509674700007],[-21.632883266999922,65.65102773600012],[-21.627674933999913,65.64826080900015],[-21.609934048999918,65.64154694200012],[-21.44298255099997,65.64337799700009],[-21.41429602799991,65.63715241100014],[-21.401031053999873,65.62409088700015],[-21.411203579999917,65.61269765800002],[-21.462880011999857,65.57851797100001],[-21.483021613999906,65.56940338700012],[-21.483021613999906,65.56264883000007],[-21.43455969999991,65.57379791900011],[-21.373361782999893,65.59690989800005],[-21.32091223899991,65.60187409100011],[-21.298695441999968,65.55890534100014],[-21.319813605999883,65.52236562700001],[-21.369862433999884,65.48712799700014],[-21.42882239499994,65.46149323100009],[-21.47679602799985,65.45335521000008],[-21.47679602799985,65.44651927300005],[-21.375884568999908,65.46287669499999],[-21.33714758999986,65.47736237200003],[-21.31541907499988,65.48069896000005],[-21.292958136999886,65.478745835],[-21.27843176999994,65.47329336100016],[-21.250233527999878,65.45335521000008],[-21.212147589999887,65.438177802],[-21.201893683999856,65.42841217700004],[-21.209299282999947,65.411810614],[-21.195179816999907,65.40810781500015],[-21.193023240999906,65.400580145],[-21.195423956999942,65.39020416900009],[-21.194935675999886,65.377630927],[-21.18895423099985,65.35553620000012],[-21.188791469999895,65.34007396],[-21.193348761999857,65.32001373900012],[-21.192860480999855,65.31012604400003],[-21.15396074099996,65.257554429],[-21.14037024599989,65.24730052300008],[-21.144398566999882,65.24551015800007],[-21.14537512899994,65.24485911700012],[-21.145619269999884,65.24396393400004],[-21.14781653599988,65.24115631700009],[-21.127837693999908,65.23216380400008],[-21.10765540299988,65.21552155200011],[-21.09707597599993,65.19599030200014],[-21.106190558999913,65.17841217700003],[-21.106190558999913,65.17218659100014],[-21.08991451699998,65.16616445500013],[-21.08356686099995,65.16840241100012],[-21.07331295499992,65.17206452000006],[-21.06541907499985,65.185777085],[-21.079986131999874,65.21015045800006],[-21.082875128999916,65.22630442900011],[-21.08568274599986,65.23362864800013],[-21.094471808999913,65.24384186400006],[-21.112049933999856,65.25893789300007],[-21.119943813999924,65.26776764500012],[-21.105213995999947,65.27895742400011],[-21.099436001999976,65.28204987200003],[-21.103016730999855,65.2907168640001],[-21.096587693999936,65.29706452000015],[-21.086496548999975,65.30263906500006],[-21.078968878999913,65.30878327000012],[-21.073557094999952,65.32416413000007],[-21.07408606699994,65.33803945500007],[-21.09483801999994,65.41376373900015],[-21.098866339999915,65.44546133000001],[-21.086048956999974,65.45962148600003],[-21.05524654899989,65.45233795800011],[-21.033802863999966,65.43447500200011],[-21.003244594999927,65.39191315300008],[-20.9740291009999,65.36749909100014],[-20.96971594999991,65.36058177300005],[-20.962961391999954,65.35333893400004],[-20.928822394999937,65.3487002620001],[-20.915109829999917,65.34349192900002],[-20.90762285099987,65.35101959800006],[-20.933705206999917,65.37400950700014],[-20.957264777999878,65.40473053600012],[-20.975005662999873,65.43756745000002],[-20.983306443999936,65.46702708500011],[-20.9869685539999,65.49054596600017],[-20.987294074999937,65.50678131700003],[-20.983306443999936,65.52167389500006],[-20.978871222999885,65.52716705900009],[-20.96666419199991,65.53668854400009],[-20.962228969999924,65.541489976],[-20.951771613999938,65.57037995000007],[-20.94859778599988,65.57689036699999],[-20.918080206999946,65.60138580900012],[-20.805246548999946,65.63837311400006],[-20.74372311099989,65.67251211100016],[-20.72520911399988,65.676743882],[-20.70604407499991,65.67902252800015],[-20.691965298999975,65.68317291900009],[-20.688547329999945,65.69301992400001],[-20.67536373599992,65.69391510600009],[-20.665760870999947,65.690863348],[-20.64696204299989,65.67934804900007],[-20.642648891999894,65.67902252800015],[-20.629790818999965,65.68024323100015],[-20.626372850999957,65.67934804900007],[-20.623443162999934,65.67072174700017],[-20.626372850999957,65.6679548200001],[-20.631255662999934,65.66738515800013],[-20.63385982999992,65.665025132],[-20.640858527999907,65.62498607000005],[-20.641713019999912,65.60480377800003],[-20.63385982999992,65.58999258000016],[-20.645863410999937,65.57306549700017],[-20.646473761999914,65.55565013200003],[-20.635731574999877,65.54515208500014],[-20.613392706999946,65.54897695500013],[-20.62364661399988,65.56728750200001],[-20.621896938999896,65.58344147300006],[-20.60895748599989,65.59096914300012],[-20.58551998599989,65.58315664300012],[-20.576771613999938,65.57664622600005],[-20.575795050999943,65.57265859600007],[-20.576283331999946,65.56683991100012],[-20.572417772999927,65.55516185100011],[-20.57652747299988,65.54755280200008],[-20.57872473899988,65.54083893400004],[-20.57868404899989,65.53534577],[-20.57518469999991,65.5357119810001],[-20.55650794199991,65.53107330900009],[-20.550689256999874,65.528509833],[-20.543690558999884,65.52016836100002],[-20.540028449999852,65.513413804],[-20.535023566999882,65.50739166900017],[-20.523996548999946,65.50116608300011],[-20.512847459999932,65.49738190300009],[-20.500884568999908,65.49494049700014],[-20.488352016999897,65.49404531500006],[-20.47565670499992,65.49494049700014],[-20.472320115999906,65.49591705900004],[-20.45343990799998,65.50145091400005],[-20.444691535999908,65.51211172100007],[-20.43956458199989,65.52757396],[-20.42784583199989,65.54897695500013],[-20.43932044199994,65.55316803600009],[-20.454660610999895,65.56659577000006],[-20.465972459999875,65.56940338700012],[-20.5003962879999,65.56818268400009],[-20.51699785099987,65.57013580900015],[-20.53087317599994,65.57689036699999],[-20.497547980999883,65.58226146000005],[-20.465972459999875,65.58315664300012],[-20.45270748599995,65.58527252800015],[-20.425160285999908,65.59467194200005],[-20.410715298999946,65.5967471370001],[-20.398019985999895,65.58734772300006],[-20.402007615999878,65.54287344000006],[-20.38752193899992,65.528509833],[-20.39118404899989,65.54462311400006],[-20.381947394999912,65.556586005],[-20.37555904899989,65.56810130400011],[-20.38752193899992,65.58315664300012],[-20.376128709999875,65.59642161700008],[-20.34398352799991,65.61591217700004],[-20.328521287999877,65.62783437700001],[-20.324777798999946,65.63515859600001],[-20.323597785999908,65.65143463700004],[-20.31859290299988,65.658840236],[-20.309193488999934,65.66266510600003],[-20.290760870999918,65.66254303600006],[-20.27013098899991,65.665025132],[-20.292347785999937,65.66693756700015],[-20.30601966099988,65.67926666900009],[-20.30785071499986,65.69318268400018],[-20.294300910999908,65.69985586100013],[-20.281320766999894,65.70376211100005],[-20.271595831999942,65.71401601800015],[-20.265492316999882,65.72825755400005],[-20.263295050999886,65.7445335960001],[-20.271229620999947,65.77016836100016],[-20.290679490999935,65.79364655200011],[-20.31541907499991,65.81216054900013],[-20.339100714999944,65.822699286],[-20.339100714999944,65.83014557500017],[-20.312489386999886,65.84039948100009],[-20.32258053299995,65.86945221600008],[-20.348459438999953,65.90192291900017],[-20.386382615999906,65.937201239],[-20.393422003999945,65.94651927300005],[-20.39989173099988,65.980943101],[-20.406158006999902,65.99750397300015],[-20.41698157499991,66.01040273600016],[-20.43150794199994,66.02069733300009],[-20.448882615999935,66.02944570500016],[-20.433583136999886,66.0392113300001],[-20.419504360999923,66.05438873900007],[-20.414865688999896,66.07062409100003],[-20.42784583199989,66.08344147300006],[-20.407704230999855,66.09076569200005],[-20.383697068999908,66.09247467700008],[-20.342152472999913,66.0902367210001],[-20.332142706999946,66.09198639500009],[-20.314076300999915,66.100531317],[-20.304351365999874,66.10390859600012],[-20.29124915299991,66.10561758000013],[-20.25593014199998,66.10390859600012],[-20.236683722999942,66.108384507],[-20.200672980999883,66.12702057500017],[-20.18480383999986,66.13117096600003],[-20.135812954999892,66.1238467470001],[-20.124908006999902,66.12335846600003],[-20.11343339799987,66.12287018400004],[-20.09203040299991,66.13117096600003],[-20.08690344999991,66.10980866100006],[-20.07363847599987,66.09735748900015],[-20.054351365999935,66.08978913],[-20.030588344999927,66.08344147300006],[-20.037424282999947,66.07591380400002],[-20.02700761599996,66.07192617400013],[-20.019642706999946,66.06439850500006],[-20.01012122299997,66.04926178600006],[-19.996937628999913,66.0344098980001],[-19.95482337099986,66.00145091400005],[-19.94871985599988,65.99262116100009],[-19.945301886999886,65.984808661],[-19.94005286399988,65.97842031500006],[-19.928130662999934,65.97418854400014],[-19.93163001199994,65.97109609600007],[-19.93773352799991,65.963568427],[-19.941232876999916,65.96051666900011],[-19.921783006999902,65.947170315],[-19.896107550999943,65.93622467700011],[-19.87759355399993,65.92357005400005],[-19.879790818999936,65.905218817],[-19.861724412999905,65.89813873900015],[-19.807850714999887,65.89447662999999],[-19.767811652999853,65.88349030200014],[-19.75576738199993,65.88373444200008],[-19.744781053999873,65.88279857],[-19.73232988199996,65.8744977890001],[-19.726551886999886,65.87177155200006],[-19.713734503999945,65.8727481140001],[-19.7084041009999,65.8710798200001],[-19.702137824999852,65.86383698100018],[-19.69945227799988,65.85675690300003],[-19.697865363999938,65.84979889500012],[-19.694813605999855,65.84320709800006],[-19.672759568999936,65.823228257],[-19.666859503999916,65.8158633480001],[-19.662505662999905,65.80345286700005],[-19.656971808999884,65.7764346370001],[-19.650380011999914,65.76496002800015],[-19.62877356699991,65.75275299700009],[-19.577748175999915,65.74640534100014],[-19.55760657499988,65.73395416900006],[-19.551380988999938,65.75527578300002],[-19.54430091099988,65.76284414300014],[-19.513539191999882,65.76121653900013],[-19.509673631999874,65.75946686400012],[-19.495920376999948,65.75104401200018],[-19.488677537999934,65.74823639500012],[-19.47740637899994,65.74689362200014],[-19.44908606699991,65.747503973],[-19.457915818999965,65.74530670800011],[-19.465240037999873,65.741888739],[-19.468251105999883,65.73737213700007],[-19.46467037699989,65.72923411700013],[-19.45616614499997,65.728949286],[-19.437855597999913,65.73395416900006],[-19.427235480999855,65.73993561400005],[-19.418039516999897,65.75385163000014],[-19.40680904899989,65.78237539300011],[-19.3998103509999,65.811509507],[-19.399240688999924,65.836615302],[-19.405832485999923,65.86017487200003],[-19.42039954299986,65.88475169500003],[-19.448841925999943,65.9194196640001],[-19.451527472999942,65.92572663000006],[-19.5104060539999,65.95302969000012],[-19.51085364499991,65.960150458],[-19.506459113999938,65.96954987200003],[-19.49791419199991,65.97752513200008],[-19.48558508999986,65.980943101],[-19.46739661399988,65.982652085],[-19.447499152999878,65.9877790390001],[-19.428578253999945,65.99616120000015],[-19.413644985999895,66.00763580900009],[-19.424631313999953,66.01337311400009],[-19.43431555899991,66.02142975500011],[-19.442209438999893,66.03131745000003],[-19.45177161399988,66.05255768400009],[-19.451893683999856,66.05597565300012],[-19.44758053299995,66.05866120000009],[-19.437855597999913,66.06663646000005],[-19.419829881999874,66.07583242400004],[-19.3627009759999,66.0883649760001],[-19.229318813999953,66.09764232],[-19.182484503999916,66.08295319200005],[-19.157582160999876,66.0811221370001],[-19.15973873599995,66.09764232],[-19.15192623599998,66.10162995000015],[-19.14395097599993,66.10407135600009],[-19.135243292999945,66.1049258480001],[-19.12559973899988,66.10390859600012],[-19.12840735599991,66.10004303600012],[-19.132435675999886,66.0902367210001],[-19.11237545499992,66.08698151200004],[-19.078439907999893,66.072495835],[-19.057932094999927,66.07037995000009],[-19.07054602799991,66.07526276200015],[-19.079660610999895,66.08100006700012],[-19.08625240799998,66.08828359600012],[-19.091460740999878,66.09764232],[-19.084624803999954,66.09764232],[-19.084624803999954,66.10390859600012],[-19.090199347999942,66.10553620000013],[-19.099680141999954,66.10968659100008],[-19.105132615999906,66.1113141950001],[-19.105132615999906,66.11749909100008],[-19.095773891999954,66.12445709800006],[-19.08503170499995,66.14793528900005],[-19.078439907999893,66.15851471600008],[-19.068674282999947,66.16461823100016],[-19.034047003999945,66.17719147300006],[-18.944691535999937,66.19065989800005],[-18.912912563999896,66.18439362200009],[-18.92015540299991,66.1522891300001],[-18.90103105399993,66.155462958],[-18.887684699999937,66.16425202000006],[-18.864898240999906,66.18577708500008],[-18.86937415299988,66.19562409100008],[-18.872425910999965,66.19944896000011],[-18.85411536399991,66.20538971600006],[-18.827015753999973,66.20343659100008],[-18.77684485599988,66.19330475500014],[-18.784657355999883,66.1783714860001],[-18.801503058999884,66.15664297100002],[-18.80467688699994,66.14175039300007],[-18.79356848899991,66.14207591399999],[-18.721547003999888,66.1727562520001],[-18.692250128999945,66.16998932500003],[-18.668120897999927,66.15794505400011],[-18.647572394999884,66.14484284100014],[-18.629058397999867,66.138617255],[-18.61961829299986,66.13149648600013],[-18.631214972999885,66.11562734600001],[-18.659535285999933,66.0902367210001],[-18.646880662999962,66.08978913],[-18.63255774599986,66.09137604400003],[-18.61896725199992,66.09503815300016],[-18.608876105999855,66.10077545800006],[-18.59715735599985,66.10455963700015],[-18.584095831999885,66.10032786700005],[-18.57135982999992,66.09369538],[-18.560170050999915,66.0902367210001],[-18.544545050999943,66.0827497420001],[-18.534820115999878,66.06525299700017],[-18.526844855999936,66.04498932500013],[-18.516102667999917,66.02944570500016],[-18.53457597599993,65.99949778899999],[-18.54246985599991,65.98191966400005],[-18.540028449999877,65.97418854400014],[-18.46833248599998,65.96670156500006],[-18.422230597999942,65.95465729400014],[-18.348011847999913,65.950181382],[-18.338002081999946,65.94684479400017],[-18.327259894999912,65.93903229400009],[-18.310454881999902,65.92267487200014],[-18.287342902999853,65.91510651200012],[-18.279611782999947,65.90485260600009],[-18.274403449999852,65.89325592700008],[-18.265533006999902,65.88007233300011],[-18.263661261999857,65.87567780200013],[-18.260324673999918,65.87238190300009],[-18.25230872299997,65.8710798200001],[-18.23399817599991,65.87221914300012],[-18.224964972999885,65.87140534100001],[-18.21816972599987,65.86774323100018],[-18.208159959999875,65.85529205900015],[-18.205474412999905,65.84707265800016],[-18.20763098899991,65.819281317],[-18.203684048999918,65.80792877800003],[-18.18529212099989,65.79002513200005],[-18.179676886999886,65.78237539300011],[-18.179839647999927,65.74042389500015],[-18.176584438999896,65.73395416900006],[-18.167958136999886,65.73114655199998],[-18.13874264199995,65.71344635600009],[-18.09154212099989,65.69301992400001],[-18.096913214999915,65.67963288000011],[-18.09194902299987,65.66181061400012],[-18.079904751999948,65.64760976800012],[-18.06358801999994,65.64520905200008],[-18.05101477799985,65.657660223],[-18.05186926999994,65.67597077000006],[-18.06037350199989,65.69407786700006],[-18.070423956999946,65.706000067],[-18.078480597999885,65.70978424700003],[-18.099232550999886,65.71637604400011],[-18.105132615999935,65.7202822940001],[-18.109486456999914,65.7315941430001],[-18.106556769999912,65.73802317899998],[-18.101185675999943,65.74262116100012],[-18.097767706999917,65.74823639500012],[-18.098378058999884,65.75763580900015],[-18.10069739499994,65.76455312700016],[-18.101633266999926,65.771714585],[-18.097767706999917,65.78237539300011],[-18.092518683999856,65.78628164300012],[-18.075347459999932,65.79279205900004],[-18.070423956999946,65.79604726800007],[-18.064564581999914,65.81460195500007],[-18.067616339999912,65.830552476],[-18.097767706999917,65.87791575700011],[-18.098500128999945,65.881048895],[-18.097767706999917,65.89496491100009],[-18.100331183999856,65.89874909100011],[-18.106434699999937,65.89858633000013],[-18.11351477799988,65.89744700700003],[-18.11888587099986,65.89838288],[-18.138579881999902,65.91616445500007],[-18.146148240999935,65.91958242400007],[-18.147206183999884,65.92059967700006],[-18.148671027999853,65.92279694200012],[-18.1515193349999,65.92479075700008],[-18.15672766799989,65.92572663000006],[-18.161691860999923,65.92357005400005],[-18.169911261999943,65.91400788000009],[-18.173451300999915,65.9120954450001],[-18.187001105999883,65.91583893400006],[-18.21792558499993,65.932074286],[-18.228138800999943,65.939398505],[-18.21873938699994,65.95355866100012],[-18.222523566999968,65.966986395],[-18.235218878999916,65.976996161],[-18.264068162999934,65.98484935099998],[-18.284250454999977,66.0055199240001],[-18.296986456999917,66.0150820980001],[-18.296986456999917,66.021918036],[-18.28954016799986,66.021918036],[-18.28954016799986,66.02944570500016],[-18.31672115799995,66.057359117],[-18.329213019999884,66.10394928600012],[-18.323841925999915,66.15078359600007],[-18.296986456999917,66.17963288],[-18.283680792999917,66.18203359600012],[-18.193959113999878,66.17963288],[-18.18032792899993,66.17633698100015],[-18.156239386999914,66.16771067900005],[-18.142445441999882,66.16596100500006],[-18.09972083199989,66.16771067900005],[-18.0841365229999,66.16596100500006],[-18.08617102799991,66.162298895],[-18.08617102799991,66.16095612200003],[-18.08682206899988,66.16030508000007],[-18.09154212099989,66.15851471600008],[-18.054066535999937,66.14956289300007],[-17.955433722999885,66.1601423200001],[-17.912749803999954,66.1522891300001],[-17.904530402999853,66.14459870000012],[-17.894154425999943,66.12490469000006],[-17.885487433999856,66.11749909100008],[-17.87441972599993,66.1152204450001],[-17.833973761999886,66.11749909100008],[-17.816477016999926,66.11326732000005],[-17.78441321499986,66.09446849200009],[-17.765736456999974,66.0902367210001],[-17.752349412999873,66.085394598],[-17.71312415299985,66.06028880400011],[-17.700510219999956,66.04926178600006],[-17.684396938999893,66.02045319200012],[-17.67296301999994,66.00706614800013],[-17.64085852799988,65.997219143],[-17.623768683999913,65.98720937700013],[-17.598052537999877,65.96670156500006],[-17.564076300999943,65.92511627800009],[-17.549672003999888,65.9120954450001],[-17.545643683999913,65.93113841400009],[-17.554025844999956,65.94603099200008],[-17.56712805899994,65.95945872600005],[-17.57762610599991,65.97418854400014],[-17.558176235999895,65.97370026200015],[-17.535267706999917,65.97626373900006],[-17.512928839999887,65.98118724200012],[-17.49510657499991,65.9877790390001],[-17.586903449999852,65.98578522300006],[-17.611154751999948,65.99404531500015],[-17.452015753999884,65.99518463700016],[-17.44033769399988,65.9903832050001],[-17.433664516999926,65.97898997600014],[-17.41934160099993,65.96051666900011],[-17.413197394999937,65.96051666900011],[-17.407826300999915,65.96759674700017],[-17.406646287999877,65.97500234600015],[-17.41038977799991,65.98187897300005],[-17.41934160099993,65.9877790390001],[-17.41934160099993,65.99404531500015],[-17.40648352799991,65.99860260600009],[-17.395130988999938,66.00608958500005],[-17.38898678299995,66.01634349199998],[-17.39199785099987,66.02944570500016],[-17.37608801999994,66.03681061400006],[-17.369699673999918,66.0417341170001],[-17.3646541009999,66.04926178600006],[-17.364003058999852,66.05499909100014],[-17.366322394999912,66.07050202000006],[-17.3646541009999,66.08344147300006],[-17.35216223899988,66.097113348],[-17.326771613999938,66.11033763200014],[-17.297230597999885,66.12042877800009],[-17.272287563999953,66.12433502800009],[-17.26146399599986,66.12970612200013],[-17.25572669199991,66.14142487200006],[-17.254790818999908,66.15314362200003],[-17.25890051999997,66.15851471600008],[-17.269886847999913,66.1615257830001],[-17.264963344999956,66.16864655200014],[-17.24461829299986,66.1826846370001],[-17.21735592399989,66.19424062700001],[-17.15611731699994,66.20368073100003],[-17.14561926999988,66.221177476],[-17.119252081999885,66.21112702],[-17.01866614499994,66.2069359400001],[-16.99242102799985,66.19953034100008],[-16.991525844999927,66.19875722900015],[-16.972035285999937,66.18146393400018],[-16.933338995999918,66.138617255],[-16.934396938999953,66.13320547100012],[-16.934437628999945,66.13108958500013],[-16.93394934799997,66.12913646],[-16.933338995999918,66.12433502800009],[-16.94701087099986,66.12433502800009],[-16.94701087099986,66.11749909100008],[-16.93529212099986,66.11322663000004],[-16.922759568999936,66.11102936400009],[-16.910267706999946,66.11200592700004],[-16.898548956999946,66.11749909100008],[-16.905181443999908,66.11831289300008],[-16.919748501999948,66.12433502800009],[-16.884103969999895,66.13532135600015],[-16.75812740799995,66.14960358300006],[-16.721058722999942,66.14484284100014],[-16.737172003999916,66.14508698100008],[-16.75304114499994,66.14288971600011],[-16.76821855399993,66.13837311400015],[-16.7825414699999,66.13117096600003],[-16.769764777999853,66.12763092700014],[-16.75182044199991,66.11318594000006],[-16.744699673999946,66.114447333],[-16.724436001999948,66.13442617400007],[-16.712513800999915,66.142482815],[-16.700550910999876,66.14484284100014],[-16.672352667999917,66.13369375200013],[-16.6516820949999,66.11595286700005],[-16.6295466789999,66.10081614800005],[-16.59691321499986,66.09764232],[-16.59691321499986,66.10390859600012],[-16.628895636999857,66.11334870000002],[-16.64484615799995,66.12051015800007],[-16.655629035999876,66.12775299700012],[-16.66344153599988,66.14085521000008],[-16.663726365999906,66.15070221600008],[-16.66771399599989,66.15851471600008],[-16.68626868399988,66.16596100500006],[-16.640736456999917,66.17934804900007],[-16.57249915299991,66.18854401200004],[-16.531361456999914,66.19916413000009],[-16.508168097999913,66.19944896000011],[-16.59666907499991,66.17829010600012],[-16.62425696499994,66.16596100500006],[-16.53652910099993,66.180121161],[-16.51569576699995,66.17963288],[-16.491363084999904,66.170599677],[-16.4524633449999,66.146429755],[-16.42625891799986,66.14484284100014],[-16.42625891799986,66.1522891300001],[-16.46153723899988,66.16718170800009],[-16.47935950399997,66.178412177],[-16.487049933999884,66.18952057500012],[-16.48314368399988,66.20477936400009],[-16.47276770699989,66.2176781270001],[-16.4576716789999,66.2276065120001],[-16.43993079299989,66.23419830900015],[-16.43936113199993,66.23891836100007],[-16.440907355999883,66.240139065],[-16.437489386999857,66.24494049700007],[-16.42870032499988,66.25275299700017],[-16.421986456999946,66.26239655200006],[-16.419422980999855,66.27179596600016],[-16.421945766999954,66.28709544500013],[-16.428618943999908,66.29547760600009],[-16.438303188999953,66.3023135440001],[-16.454213019999884,66.3174502620001],[-16.459095831999946,66.32074616100014],[-16.46475175699993,66.32290273600013],[-16.470936652999907,66.32363515800007],[-16.47618567599991,66.32733795800011],[-16.47801673099988,66.33576080900015],[-16.478830532999893,66.34479401200018],[-16.480824347999913,66.35028717700003],[-16.508534308999913,66.35932038000011],[-16.515370245999918,66.36733633000016],[-16.508168097999913,66.38507721600013],[-16.511463995999947,66.38544342700008],[-16.521839972999942,66.38507721600013],[-16.518299933999856,66.388373114],[-16.511830206999946,66.39598216400013],[-16.508168097999913,66.39931875200016],[-16.515248175999943,66.40216705900008],[-16.520130988999938,66.40643952],[-16.529286261999914,66.41917552300008],[-16.508168097999913,66.41917552300008],[-16.508168097999913,66.42601146],[-16.52550208199989,66.43573639500012],[-16.54466712099986,66.46759674700014],[-16.572987433999913,66.48102448100015],[-16.563954230999883,66.49481842700006],[-16.54332434799997,66.50698476800012],[-16.521839972999942,66.50853099199999],[-16.515980597999885,66.50263092700006],[-16.51520748599995,66.49502187700001],[-16.51260331899988,66.48883698100003],[-16.50133216099988,66.48749420800006],[-16.498605923999918,66.49201080900009],[-16.49449622299997,66.5016136740001],[-16.487049933999884,66.51105377800009],[-16.473988410999905,66.51536692900002],[-16.44591223899991,66.520209052],[-16.429676886999857,66.51984284100016],[-16.429351365999935,66.51194896],[-16.43443762899994,66.50092194200015],[-16.431019660999937,66.49160390800002],[-16.422434048999946,66.48468659100011],[-16.411976691999968,66.48126862200009],[-16.41392981699991,66.48672109600012],[-16.414662238999938,66.49111562700001],[-16.415882941999936,66.4955508480001],[-16.419422980999855,66.501125393],[-16.4036352199999,66.50360748900012],[-16.374134894999912,66.51373932500016],[-16.36473548099988,66.51536692900002],[-16.350005662999905,66.510199286],[-16.339019334999932,66.50250885600018],[-16.327015753999916,66.49616120000015],[-16.309559699999877,66.49494049700003],[-16.323597785999908,66.48883698100003],[-16.330067511999914,66.48749420800006],[-16.312855597999913,66.48126862200009],[-16.2942602199999,66.48273346600014],[-16.274728969999927,66.48655833500007],[-16.26862545499992,66.48749420800006],[-16.26862545499992,66.49494049700003],[-16.25755774599989,66.50202057500009],[-16.247303839999887,66.51162344000006],[-16.235585089999887,66.51788971600003],[-16.2337947259999,66.51536692900002],[-16.22679602799991,66.50389232000005],[-16.215199347999913,66.50218333500005],[-16.20445716099988,66.50796133000001],[-16.196278449999877,66.52684153900005],[-16.18765214799987,66.53143952000009],[-16.16551673099991,66.53587474200005],[-16.137806769999912,66.53587474200005],[-16.080799933999913,66.52594635600013],[-16.06940670499995,66.52846914300007],[-16.022938605999883,66.53660716399999]]],[[[-17.980458136999886,66.5390485700001],[-17.99982662699989,66.53339264500012],[-18.017201300999886,66.54498932500015],[-18.019520636999857,66.56134674700014],[-18.008941209999904,66.56415436400003],[-17.983998175999943,66.55060455900006],[-17.976307745999947,66.5482852230001],[-17.980458136999886,66.5390485700001]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Italy","sov_a3":"ITA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Italy","adm0_a3":"ITA","geou_dif":0,"geounit":"Italy","gu_a3":"ITA","su_dif":0,"subunit":"Italy","su_a3":"ITA","brk_diff":0,"name":"Italy","name_long":"Italy","brk_a3":"ITA","brk_name":"Italy","brk_group":null,"abbrev":"Italy","postal":"I","formal_en":"Italian Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Italy","name_alt":null,"mapcolor7":6,"mapcolor8":7,"mapcolor9":8,"mapcolor13":7,"pop_est":58126212,"gdp_md_est":1823000,"pop_year":-99,"lastcensus":2012,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"IT","iso_a2":"IT","iso_a3":"ITA","iso_n3":"380","un_a3":"380","wb_a2":"IT","wb_a3":"ITA","woe_id":23424853,"woe_id_eh":23424853,"woe_note":"Exact WOE match as country","adm0_a3_is":"ITA","adm0_a3_us":"ITA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ITA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.62126712300005,35.49233633000007],[12.611094597000118,35.489243882],[12.603037957000083,35.491400458],[12.598317905000073,35.494330145],[12.59392337300008,35.49445221600008],[12.55567467500012,35.50804271000014],[12.536143425000148,35.51260000200007],[12.526133660000085,35.51666901200004],[12.533864780000071,35.5216332050001],[12.55567467500012,35.521226304],[12.566905144000115,35.51902903900019],[12.612803582000112,35.515326239000146],[12.62126712300005,35.513373114],[12.6237085300001,35.51190827000015],[12.621755405000044,35.50975169500005],[12.62126712300005,35.508246161],[12.623871290000068,35.50161367400012],[12.62126712300005,35.49233633000007]]],[[[12.872569207000083,35.85228099200016],[12.856944207000112,35.85228099200016],[12.850922071000099,35.855902411000116],[12.845876498000079,35.86269765800016],[12.847015821000099,35.868312893000066],[12.853526238000114,35.87124258000007],[12.859873894000115,35.87221914300015],[12.867035352000073,35.87225983300014],[12.874034050000148,35.86644114799999],[12.876719597000116,35.855861721000124],[12.872569207000083,35.85228099200016]]],[[[11.98064212300011,36.82709381700009],[11.987315300000148,36.82416413000006],[11.992930535000056,36.825384833000086],[11.99952233200014,36.83592357000013],[12.037608269000115,36.806626695000105],[12.051524285000113,36.790350653000175],[12.053477410000141,36.76764557500003],[12.030609571000127,36.74135976800004],[11.996104363000114,36.74494049700009],[11.96119225400011,36.765204169000086],[11.937347852000128,36.788763739000146],[11.932953321000127,36.79564036700005],[11.924978061000104,36.81195709800009],[11.922211134000122,36.82835521],[11.934336785000113,36.83592357000013],[11.938812696000099,36.837062893000066],[11.946136915000096,36.841701565],[11.95134524800008,36.84275950700005],[11.957692905000016,36.840562242000075],[11.967295769000089,36.83120351800012],[11.971446160000141,36.82908763200011],[11.98064212300011,36.82709381700009]]],[[[12.321299675000061,37.940497137000094],[12.336761915000094,37.93305084800012],[12.354665561000045,37.926988023000135],[12.368825717000078,37.92523834800012],[12.357676629000139,37.91404857000013],[12.342133009000065,37.91323476800004],[12.326182488000143,37.918361721000124],[12.314219597000118,37.92523834800012],[12.299652540000096,37.91925690300003],[12.287771030000043,37.9215355490001],[12.278656446000127,37.92918528900013],[12.27320397200009,37.93952057500003],[12.286957227000128,37.93854401200014],[12.29704837300008,37.94131094000012],[12.305430535000141,37.94497304900007],[12.314219597000118,37.94635651200015],[12.321299675000061,37.940497137000094]]],[[[12.077891472000088,37.960109768000066],[12.079274936000076,37.950262762000065],[12.06478925900012,37.95083242400001],[12.047618035000113,37.96076080900012],[12.037119988000141,37.97370026200012],[12.030446811000076,37.98436107000005],[12.035980665000096,37.991034247000115],[12.053558790000123,37.99241771],[12.064463738000114,37.98623281500012],[12.072276238000113,37.967922268000066],[12.077891472000088,37.960109768000066]]],[[[15.642425977000073,38.262274481000034],[15.63445071700005,38.26093170800005],[15.624278191000087,38.261664130000085],[15.583750847000147,38.240423895],[15.569672071000127,38.22695547100001],[15.562998894000145,38.21430084800015],[15.559906446000069,38.19977448100009],[15.575938347000063,38.20018138200011],[15.527028842000076,38.136786200000174],[15.500336134000065,38.08494700700008],[15.392588738000114,37.976141669000135],[15.302744988000086,37.86440664300004],[15.283457879000139,37.832953192],[15.266286655000044,37.81191640800016],[15.241221550000118,37.79555898600013],[15.213063998000052,37.76146067900014],[15.20655358200014,37.74774811400012],[15.208262566000142,37.73704661700019],[15.218597852000073,37.718085028000175],[15.220225457000081,37.706732489],[15.216075066000144,37.696722723000114],[15.202159050000061,37.68537018400014],[15.199066602000103,37.675726630000085],[15.196787957000112,37.655096747000144],[15.184580925000148,37.62579987200002],[15.178558790000126,37.604315497000115],[15.163828972000147,37.567694403000175],[15.115896030000044,37.52228424700009],[15.096690300000091,37.49445221600003],[15.091563347000147,37.47748444200006],[15.08952884200005,37.459458726000136],[15.092051629000137,37.360541083000115],[15.096690300000091,37.34369538000011],[15.103526238000086,37.329779364000146],[15.110687696000127,37.32184479400017],[15.180023634000094,37.29075755400008],[15.217458530000043,37.28497955900012],[15.236664259000095,37.274725653000175],[15.251963738000143,37.25771719000012],[15.26124108200011,37.23383209800015],[15.244883660000083,37.24616120000009],[15.235606316000116,37.24192942900008],[15.228851759000094,37.23029205900015],[15.220225457000081,37.220160223],[15.221690300000146,37.237453518],[15.21583092500012,37.244696356000034],[15.205414259000122,37.244696356000034],[15.19288170700011,37.23997630400011],[15.199066602000103,37.22760651200018],[15.1834416020001,37.207464911000145],[15.194672071000097,37.17633698100015],[15.216481967000048,37.15521881700015],[15.233246290000066,37.164862372000115],[15.247569207000055,37.158677476000136],[15.247569207000055,37.15184153900013],[15.229177280000016,37.14964427300013],[15.231781446000127,37.13491445500013],[15.246592644000089,37.118231512000094],[15.264659050000118,37.11029694200012],[15.288828972000116,37.10838450700008],[15.303233269000087,37.101223049000126],[15.307871941000116,37.086655992000104],[15.302744988000086,37.062486070000105],[15.287933790000125,37.0689964860001],[15.281993035000085,37.06085846600017],[15.283702019000087,37.048407294000135],[15.291840040000123,37.04197825700005],[15.312266472000088,37.04401276200018],[15.321055535000141,37.04022858300006],[15.329437696000126,37.027736721000124],[15.33236738400012,37.011623440000065],[15.324717644000115,37.008490302],[15.314219597000147,37.01243724200016],[15.308929884000063,37.01776764500014],[15.303396030000043,37.01618073100012],[15.268077019000117,37.00043366100006],[15.27491295700014,36.99359772300015],[15.26612389400006,36.989406643],[15.263845248000107,36.98712799700006],[15.268077019000117,36.980536200000145],[15.268077019000117,36.973089911],[15.244476759000092,36.972072658000044],[15.22673587300008,36.96478913000011],[15.211680535000085,36.956488348000114],[15.196055535000083,36.95262278900013],[15.174652540000125,36.944077867000104],[15.15837649800011,36.924221096],[15.107676629000139,36.82013580900018],[15.106618686000077,36.80857982000008],[15.094004754000109,36.79954661700005],[15.098887566000085,36.779445705000015],[15.117198113000143,36.74713776200018],[15.134938998000022,36.68768952000012],[15.134287957000083,36.67519765800013],[15.114512566000142,36.65989817900008],[15.09392337300011,36.65493398600001],[15.073578321000127,36.65912506700015],[15.055186394000087,36.67145416900008],[15.04070071700005,36.68768952000012],[15.033050977000102,36.69391510600009],[15.021006707000083,36.69936758000013],[15.007172071000099,36.702785549000126],[14.997813347000147,36.70221588700018],[14.99366295700011,36.695949611000046],[14.982432488000114,36.68886953300016],[14.957286004000137,36.69782135600009],[14.9186304050001,36.719875393000095],[14.882172071000127,36.73065827],[14.846853061000104,36.72626373900003],[14.780772332000083,36.69936758000013],[14.776133660000054,36.70770905200003],[14.773448113000084,36.71002838700015],[14.760915561000076,36.70620351800015],[14.744313998000024,36.71914297100015],[14.684580925000148,36.726019598000065],[14.671641472000145,36.74371979400017],[14.658946160000083,36.75381094000012],[14.60010826900009,36.7721214860001],[14.582204623000052,36.781317450000174],[14.565928582000112,36.77830638200008],[14.487315300000091,36.793361721000096],[14.475759311000077,36.804917710000105],[14.394541863000084,36.94501373900009],[14.369883660000085,36.973089911],[14.27881920700014,37.04401276200018],[14.208506707000112,37.08112213700018],[14.126312696000042,37.11225006700009],[14.088633660000085,37.11774323100011],[13.976328972000147,37.11029694200012],[13.967295769000145,37.108221747000115],[13.948578321000069,37.098822333],[13.93848717500012,37.095933335000055],[13.89437910200013,37.100816148000135],[13.832692905000101,37.13955312700007],[13.794606967000107,37.15184153900013],[13.75163821700005,37.159002997000144],[13.715830925000148,37.1713727890001],[13.683441602000128,37.18935781500012],[13.598806186000047,37.25674062700013],[13.569183790000096,37.273504950000145],[13.534434441000116,37.28217194200006],[13.488617384000122,37.2884789080001],[13.45264733200014,37.298814195000105],[13.42156009200005,37.31439850499999],[13.372243686000076,37.34613678600006],[13.329600457000112,37.366278387000094],[13.311289910000056,37.38084544500013],[13.302012566000116,37.385728257],[13.28923587300008,37.38914622600011],[13.278005405000071,37.39370351800015],[13.253265821000099,37.43178945500012],[13.247325066000059,37.43593984600007],[13.225352410000141,37.44603099200005],[13.214040561000076,37.45807526200015],[13.20606530000012,37.46393463700009],[13.194590691000085,37.466538804],[13.189219597000118,37.46971263200005],[13.179372592000107,37.48383209800009],[13.174082879000109,37.487005927000055],[13.051524285000085,37.500677802],[13.036794467000078,37.49485911700005],[13.026377800000091,37.49323151200012],[13.016856316000116,37.4975446640001],[13.010427280000101,37.50690338700014],[13.004161004000139,37.527085679],[13.000010613000114,37.53546784100014],[12.974131707000083,37.557440497000144],[12.942637566000087,37.5685082050001],[12.862152540000096,37.576402085000076],[12.780935092000107,37.57420482],[12.697764519000145,37.56273021000014],[12.659353061000045,37.565130927000084],[12.636241082000083,37.58222077000012],[12.594737175000091,37.63788483300014],[12.577810092000107,37.65200429900007],[12.56348717500012,37.65778229400003],[12.523610873000052,37.658351955],[12.506195509000092,37.665513414000046],[12.489024285000141,37.68268463700015],[12.474375847000147,37.70294830900018],[12.46501712300011,37.71979401200018],[12.460459832000083,37.734605210000055],[12.45915774800008,37.74774811400012],[12.456309441000116,37.75975169500013],[12.448008660000141,37.77130768400014],[12.436289910000141,37.78314850500011],[12.427012566000114,37.797023830000015],[12.427419467000107,37.809271552000084],[12.444590691000144,37.81598541900003],[12.446055535000113,37.811835028000175],[12.460459832000083,37.819037177000105],[12.46501712300011,37.822821356000034],[12.463063998000079,37.82575104400014],[12.470225457000112,37.853420315000065],[12.472422722000088,37.854193427000084],[12.477712436000074,37.87254466400013],[12.478688998000052,37.881170966000056],[12.47673587300011,37.88593170800014],[12.467784050000061,37.89712148600013],[12.46501712300011,37.90599192899999],[12.464121941000116,37.91290924700008],[12.464528842000021,37.91412995000012],[12.467051629000139,37.91616445500013],[12.49048912900011,37.95400625200007],[12.496592644000117,37.98061758000004],[12.50294030000012,37.9970563820001],[12.504161004000139,38.011216539000046],[12.492930535000141,38.021429755000085],[12.523448113000086,38.03143952000006],[12.549652540000123,38.05483633000013],[12.57634524800005,38.07172272300012],[12.60840905000012,38.06240469],[12.638682488000114,38.07949453300013],[12.651621941000114,38.09149811400005],[12.6569116550001,38.107367255],[12.66244550900012,38.11627838700004],[12.676036004000082,38.11587148600002],[12.691905144000115,38.11212799700009],[12.704600457000083,38.11082591400019],[12.725352410000056,38.125921942],[12.723968946000099,38.15033600500014],[12.719899936000047,38.17548248900012],[12.73178144600007,38.192775783000044],[12.737803582000083,38.18097565300015],[12.749359571000099,38.182074286],[12.760915561000045,38.18097565300015],[12.766123894000117,38.16266510600009],[12.790782097000118,38.11709219000012],[12.818369988000143,38.07794830900009],[12.828786655000043,38.06989166900014],[12.856944207000112,38.05857982],[12.868907097000147,38.05133698100015],[12.869639519000089,38.042547919000086],[12.901133660000085,38.02806224200005],[12.944183790000123,38.032863674000126],[13.027354363000086,38.06240469],[13.061371290000096,38.0834821640001],[13.069672071000069,38.09113190300015],[13.071299675000091,38.09552643400003],[13.069590691000085,38.10146719000014],[13.06820722700013,38.113959052000055],[13.06617272200009,38.12303294500008],[13.056813998000052,38.13271719000012],[13.054698113000143,38.141831773000106],[13.089366082000112,38.166001695000105],[13.083750847000118,38.174709377],[13.089610222000145,38.18333567900011],[13.100922071000042,38.19009023600013],[13.112478061000076,38.192775783000044],[13.12240644600007,38.19098541900006],[13.156993035000085,38.17967357000005],[13.179372592000107,38.17621491100005],[13.20720462300005,38.17609284100008],[13.230316602000102,38.184637762000094],[13.239024285000085,38.20701732000013],[13.254405144000115,38.20254140800016],[13.265961134000065,38.20526764500012],[13.277028842000107,38.210435289000046],[13.296641472000147,38.214422919000114],[13.310231967000107,38.21954987200003],[13.318125847000088,38.220648505000085],[13.32325280000009,38.21796295799999],[13.325043165000096,38.21165599200005],[13.326019727000071,38.204779364000146],[13.32837975400011,38.20018138200011],[13.366221550000148,38.17967357000005],[13.371918165000123,38.17279694200015],[13.37330162900011,38.140692450000174],[13.376719597000118,38.13129303600006],[13.391368035000141,38.103176174000154],[13.513519727000073,38.11054108300006],[13.541270379000139,38.09406159100017],[13.539317254000082,38.076849677000055],[13.54086347700013,38.067531643],[13.547373894000115,38.05621979400003],[13.557465040000096,38.04913971600017],[13.587087436000047,38.039129950000174],[13.62240644600007,38.01520416900003],[13.651133660000113,38.00096263200011],[13.697764519000117,37.99359772300012],[13.711924675000148,37.987941799000126],[13.707774285000113,37.98509349200019],[13.70728600400011,37.984035549000126],[13.705088738000114,37.98045482000008],[13.72673587300011,37.98090241100006],[13.790782097000088,37.97361888200013],[13.812673373000052,37.97793203300013],[13.857188347000116,37.9967308610001],[13.898285352000128,38.00446198100009],[13.91228274800008,38.01264069200003],[13.924815300000091,38.02195872600005],[13.93848717500012,38.02887604400014],[14.007172071000127,38.038275458000086],[14.020518425000118,38.04938385600012],[14.062510613000114,38.03021881700015],[14.083262566000114,38.02383047100012],[14.106293165000094,38.021429755000085],[14.120941602000102,38.022609768],[14.151377800000148,38.02887604400014],[14.273203972000145,38.015122789000046],[14.331228061000047,38.01801178600005],[14.384613477000073,38.02952708500002],[14.431895379000139,38.04938385600012],[14.464121941000085,38.037176825000024],[14.511729363000143,38.044378973000065],[14.634613477000102,38.08148834800009],[14.667735222000147,38.099188544000086],[14.6959741550001,38.12103913000011],[14.73373457100007,38.15761953300016],[14.744802280000101,38.16136302299999],[14.777598504000112,38.15924713700017],[14.798106316000089,38.16034577000012],[14.87403405000012,38.17568594000009],[14.88803144600007,38.18260325700008],[14.897471550000091,38.185939846],[14.907074415000068,38.18768952],[14.935313347000118,38.185939846],[14.944997592000078,38.18178945500007],[14.96306399800011,38.16339752800003],[14.969737175000146,38.15924713700017],[14.98178144600007,38.15827057500012],[15.007334832000138,38.151800848],[15.039073113000116,38.15330638200005],[15.04900149800011,38.151800848],[15.053070509000065,38.14838288],[15.063243035000111,38.13568756700012],[15.068695509000065,38.13129303600006],[15.087901238000113,38.12824127800015],[15.105316602000073,38.13349030200013],[15.122569207000081,38.141058661],[15.177419467000107,38.156317450000145],[15.20329837300011,38.18329498900012],[15.240733269000145,38.24115631700012],[15.237640821000069,38.248846747000144],[15.236094597000116,38.25104401200004],[15.2369897800001,38.25348541900017],[15.240733269000145,38.261664130000085],[15.237152540000068,38.264797268000144],[15.24317467500009,38.264797268000144],[15.246348504000139,38.25433991100009],[15.240733269000145,38.230292059000035],[15.245371941000087,38.21723053600006],[15.257578972000145,38.21019114799999],[15.274180535000113,38.20750560100011],[15.291840040000123,38.20701732000013],[15.321055535000141,38.210882880000135],[15.399668816000144,38.232570705000015],[15.421885613000114,38.244574286000145],[15.43376712300008,38.25315989800005],[15.47291100400011,38.267808335000055],[15.512868686000074,38.29759349200016],[15.528656446000097,38.302639065],[15.559255405000044,38.300116278000175],[15.615977410000113,38.28021881700009],[15.651621941000146,38.27529531500012],[15.648285352000132,38.266750393],[15.642425977000073,38.262274481000034]]],[[[14.998545769000089,38.371039130000085],[14.986827019000115,38.36408112200017],[14.9635522800001,38.381659247000115],[14.948252800000118,38.39642975499999],[14.945323113000114,38.41225820500013],[14.958832227000071,38.43292877800015],[14.966319207000138,38.43292877800015],[14.966319207000138,38.41868724200005],[14.982432488000114,38.412420966000084],[14.99366295700011,38.403021552000084],[15.001719597000147,38.3912621110001],[15.007334832000138,38.37767161700013],[14.998545769000089,38.371039130000085]]],[[[14.966319207000138,38.45343659100011],[14.94874108200011,38.450913804],[14.93458092500009,38.45864492400009],[14.921560092000107,38.46881745000006],[14.907725457000112,38.47394440300015],[14.89942467500012,38.48167552300008],[14.900645379000139,38.498683986000124],[14.90967858200014,38.51532623900009],[14.924815300000146,38.522365627000156],[14.957855665000094,38.522040106000034],[14.966075066000116,38.51626211100016],[14.958832227000071,38.501857815],[14.965505405000043,38.49754466400019],[14.97413170700014,38.490057684000035],[14.979340040000123,38.487534898000106],[14.979340040000123,38.48139069200012],[14.952647332000112,38.48139069200012],[14.957855665000094,38.46954987200017],[14.961192254000137,38.46499258000013],[14.966319207000138,38.460882880000085],[14.966319207000138,38.45343659100011]]],[[[14.360850457000081,38.53904857],[14.346446160000113,38.53514232],[14.342784050000146,38.547267971000096],[14.357188347000116,38.55121491100009],[14.360850457000081,38.53904857]]],[[[14.863291863000084,38.549017645000085],[14.861664259000063,38.53929271000013],[14.82398522200009,38.55182526200004],[14.793793165000068,38.57160065300015],[14.814952019000089,38.583807684000035],[14.85141035200013,38.58490631700009],[14.866953972000147,38.58112213700015],[14.876963738000114,38.56952545800014],[14.871918165000094,38.56525299700003],[14.86890709700009,38.56049225500011],[14.863291863000084,38.549017645000085]]],[[[14.585459832000081,38.55744049700003],[14.573578321000127,38.556545315000115],[14.551605665000123,38.56159088700015],[14.54371178500014,38.57453034100017],[14.54249108200014,38.58685944200012],[14.54623457100007,38.58795807500017],[14.563975457000053,38.58454010600015],[14.576019727000071,38.57664622599999],[14.579600457000138,38.56614817900011],[14.585215691000144,38.560980536000116],[14.585459832000081,38.55744049700003]]],[[[13.176768425000091,38.693019924000154],[13.165212436000074,38.69106679900001],[13.153493686000074,38.69476959800015],[13.153086785000085,38.702297268],[13.157888217000078,38.709865627000156],[13.169281446000127,38.71727122600005],[13.18572024800011,38.71751536700019],[13.195974155000044,38.711493231000176],[13.19743899800011,38.70831940300012],[13.176768425000091,38.693019924000154]]],[[[15.224619988000084,38.776800848000065],[15.217458530000043,38.77301666900014],[15.206065300000148,38.775213934000035],[15.187022332000083,38.78900788000014],[15.187022332000083,38.792710679],[15.19410241000014,38.79808177300004],[15.203623894000117,38.80158112200003],[15.208750847000147,38.805894273000135],[15.212087436000076,38.81045156500009],[15.218597852000073,38.81195709800012],[15.227793816000142,38.81028880400011],[15.234629754000137,38.80780670799999],[15.239268425000091,38.80402252800015],[15.237478061000104,38.79596588700004],[15.232432488000057,38.78929271000008],[15.229665561000104,38.783026434000035],[15.224619988000084,38.776800848000065]]],[[[8.36036217500012,39.11815013200008],[8.385915561000104,39.105047919000114],[8.417653842000078,39.10659414300015],[8.444590691000144,39.10272858300014],[8.455902540000125,39.07355377800008],[8.45801842500012,39.06806061400006],[8.463145379000139,39.065252997000115],[8.469899936000076,39.065659898000106],[8.476410352000073,39.069769598000065],[8.477305535000056,39.07070547100015],[8.479177280000043,39.07221100499999],[8.48389733200014,39.069769598000065],[8.464040561000047,39.05654531500012],[8.45932050900012,39.049790757],[8.463389519000089,39.04246653900018],[8.453949415000068,39.02814362200009],[8.446543816000087,38.99433014500012],[8.437022332000083,38.96718984600001],[8.432465040000125,38.96283600500011],[8.421885613000086,38.96051666900014],[8.409841342000078,38.961818752000156],[8.406016472000147,38.96694570500016],[8.405039910000085,38.97402578300004],[8.40137780000012,38.98102448100009],[8.364919467000078,39.02948639500009],[8.349294467000078,39.062160549000126],[8.353526238000113,39.083441473],[8.353526238000113,39.09088776200018],[8.346039259000037,39.09088776200018],[8.346039259000037,39.09772370000009],[8.36036217500012,39.11815013200008]]],[[[8.305837436000047,39.10455963700012],[8.290049675000091,39.09882233300014],[8.269379102000073,39.100165106000034],[8.254730665000068,39.10712311400012],[8.257334832000083,39.11815013200008],[8.257334832000083,39.124416408000016],[8.232676629000082,39.144110419000135],[8.224619988000143,39.15704987200017],[8.229991082000112,39.17279694200012],[8.245290561000076,39.18097565300003],[8.290293816000142,39.188421942],[8.305837436000047,39.193304755000085],[8.30632571700005,39.1607933610001],[8.312022332000112,39.120306708000086],[8.305837436000047,39.10455963700012]]],[[[13.95866946700005,40.711818752000156],[13.944672071000099,40.701605536000116],[13.934825066000142,40.70563385600009],[13.919769727000128,40.70449453300016],[13.903493686000104,40.70001862200009],[13.890147332000112,40.694159247000144],[13.882009311000076,40.69953034100011],[13.859711134000063,40.70774974200019],[13.849131707000083,40.71527741100006],[13.856130405000073,40.73484935100013],[13.86150149800005,40.744045315],[13.87012780000012,40.748724677000105],[13.867198113000114,40.752630927000105],[13.86280358200014,40.762396552000055],[13.883148634000122,40.762396552000055],[13.94629967500012,40.74518463700004],[13.965830925000091,40.735052802000084],[13.962657097000118,40.728949286],[13.962412957000083,40.723130601000136],[13.965830925000091,40.71527741100006],[13.95866946700005,40.711818752000156]]],[[[13.426931186000104,40.79083893400014],[13.414724155000043,40.785874742000104],[13.418955925000148,40.795599677000084],[13.424164259000037,40.800238348],[13.431976759000122,40.80145905200011],[13.426931186000104,40.79083893400014]]],[[[8.332367384000094,41.105658270000035],[8.34197024800008,41.09784577000012],[8.344737175000148,41.08624909100011],[8.34131920700014,41.07412344],[8.332367384000094,41.064642645],[8.274750196000127,41.05727773600002],[8.251149936000104,41.04376862200003],[8.250987175000148,41.016099351000136],[8.246429884000092,40.99363841400004],[8.209646030000101,40.995794989000146],[8.217621290000068,41.005031643],[8.22169030000012,41.014390367000125],[8.223155144000089,41.02399323100012],[8.223155144000089,41.03363678600009],[8.228851759000065,41.041734117000104],[8.241384311000076,41.05206940300011],[8.260752800000091,41.064642645],[8.275645379000139,41.06976959800012],[8.277842644000117,41.081732489000146],[8.275645379000139,41.09540436400009],[8.277842644000117,41.105658270000035],[8.284353061000104,41.10687897300012],[8.302093946000099,41.10504791900014],[8.305837436000047,41.10907623900012],[8.30795332100007,41.11383698100012],[8.313324415000125,41.11859772300012],[8.326182488000143,41.126125393000066],[8.32593834700009,41.118353583000086],[8.32797285200013,41.112494208000115],[8.332367384000094,41.105658270000035]]],[[[9.471039259000094,41.1896019550001],[9.474375847000118,41.18427155200011],[9.47486412900011,41.17926666900017],[9.47038821700005,41.17210521000014],[9.46436608200014,41.172674872000115],[9.45639082100007,41.18065013200005],[9.44874108200014,41.18553294500013],[9.441661004000082,41.183050848],[9.437022332000055,41.185939846000124],[9.447764519000089,41.205064195000105],[9.44353274800005,41.21149323100012],[9.446462436000076,41.22040436400006],[9.453868035000056,41.23395416900003],[9.459971550000148,41.24237702000006],[9.468028191000087,41.24111562700007],[9.474782748000107,41.23607005400013],[9.478363477000102,41.228461005],[9.47950280000012,41.224188544000086],[9.479258660000085,41.21694570500016],[9.471039259000094,41.1896019550001]]],[[[9.435313347000147,41.21702708500014],[9.395274285000113,41.210598049000126],[9.376963738000143,41.213324286],[9.373057488000057,41.221909898000106],[9.373057488000057,41.22988515800016],[9.3776147800001,41.23383209800015],[9.384938998000107,41.23651764500012],[9.391856316000116,41.24070872600005],[9.396250847000088,41.24774811400012],[9.397959832000112,41.256048895],[9.402191602000128,41.25751373900006],[9.40796959700009,41.25812409100003],[9.414235873000052,41.262437242000125],[9.421885613000057,41.260891018000095],[9.427419467000078,41.254095770000056],[9.430511915000066,41.24628327000006],[9.430430535000085,41.23777903900004],[9.429047071000099,41.22939687700007],[9.430918816000085,41.22479889500015],[9.4342554050001,41.220607815],[9.435313347000147,41.21702708500014]]],[[[9.238291863000143,41.24884674700017],[9.246918165000068,41.24774811400012],[9.257823113000143,41.2496605490001],[9.268077019000145,41.236639716000106],[9.267425977000102,41.20197174700003],[9.278330925000091,41.19501373900012],[9.274668816000144,41.199530341000084],[9.273610873000079,41.20514557500009],[9.274912957000083,41.212388414000095],[9.278330925000091,41.221747137000065],[9.285329623000079,41.221747137000065],[9.289317254000139,41.20872630400005],[9.288340691000087,41.20575592700005],[9.285329623000079,41.20123932500009],[9.285329623000079,41.19501373900012],[9.299571160000085,41.196478583],[9.305430535000113,41.197943427000055],[9.312510613000084,41.20123932500009],[9.316579623000052,41.196478583],[9.33301842500012,41.187567450000145],[9.335215691000116,41.21165599199999],[9.352061394000117,41.20726146],[9.388194207000055,41.18073151200004],[9.388194207000055,41.187567450000145],[9.396657748000107,41.18390534100011],[9.40406334700009,41.18170807500012],[9.41228274800008,41.18073151200004],[9.422373894000145,41.18073151200004],[9.422373894000145,41.174505927000084],[9.417002800000091,41.171454169000086],[9.41431725400011,41.16819896000014],[9.412119988000114,41.16453685099999],[9.408702019000117,41.16030508000007],[9.420176629000053,41.15643952000006],[9.426605665000068,41.14923737200003],[9.432790561000047,41.1407738300001],[9.442881707000112,41.1329613300001],[9.437022332000055,41.12543366100014],[9.436778191000116,41.11538320500016],[9.442881707000112,41.09198639500009],[9.45411217500012,41.11196523600016],[9.46045983200014,41.12051015800007],[9.470062696000127,41.126125393000066],[9.466807488000086,41.130682684000114],[9.465098504000082,41.134426174000154],[9.462412957000083,41.13760000200004],[9.45655358200014,41.140366929],[9.469086134000037,41.14618561400012],[9.481455925000091,41.14557526200018],[9.494395379000082,41.14232005400014],[9.50806725400011,41.140366929],[9.513926629000082,41.14350006700006],[9.518402540000125,41.148667710000055],[9.523936394000145,41.14972565300012],[9.53223717500012,41.140366929],[9.52475019600007,41.1329613300001],[9.534353061000047,41.128119208000115],[9.540782097000147,41.122870184000035],[9.546153191000116,41.12091705900018],[9.552744988000086,41.126125393000066],[9.559580925000091,41.126125393000066],[9.561208530000043,41.12181224199999],[9.561778191000087,41.12107982000005],[9.562998894000117,41.121242580000015],[9.566416863000114,41.11933014500014],[9.565114780000016,41.10712311400009],[9.56226647200009,41.09711334800009],[9.556407097000118,41.08783600500014],[9.545909050000148,41.077704169000086],[9.543793165000068,41.08250560100008],[9.540782097000147,41.08734772300015],[9.539073113000143,41.09198639500009],[9.52125084700006,41.031683661000116],[9.51189212300005,41.0162621110001],[9.53223717500012,41.0162621110001],[9.52475019600007,41.030503648000106],[9.543142123000107,41.03693268400012],[9.55420983200014,41.03461334800014],[9.557627800000148,41.02505117400007],[9.552744988000086,41.00946686400009],[9.557790561000104,41.0094261740001],[9.558604363000114,41.01105377800012],[9.558278842000107,41.01361725500011],[9.559580925000091,41.0162621110001],[9.565684441000085,41.01093170800014],[9.56861412900011,41.00950755400008],[9.57325280000012,41.00946686400009],[9.588145379000082,41.020697333000086],[9.615733269000117,41.01959870000003],[9.64429772200009,41.01166413000006],[9.662608269000145,41.002630927000055],[9.651215040000096,40.991115627000035],[9.635996941000116,40.99237702000012],[9.619639519000089,40.99876536700005],[9.604258660000141,41.002630927000055],[9.587575717000107,40.995794989000146],[9.582530144000087,40.979925848],[9.578868035000141,40.96198151200015],[9.566416863000114,40.94863515800016],[9.571136915000125,40.93488190300003],[9.557465040000096,40.93121979400008],[9.51189212300005,40.934312242000075],[9.511241082000083,40.929388739],[9.512543165000096,40.92796458500014],[9.504242384000094,40.926906643000095],[9.51197350400011,40.915187893000095],[9.520030144000145,40.91502513200014],[9.528981967000078,40.91925690300015],[9.539073113000143,40.920640367000125],[9.549327019000089,40.917222398000106],[9.567230665000125,40.90839264500006],[9.57325280000012,40.90639883000013],[9.59278405000012,40.90989817900011],[9.607676629000082,40.917873440000065],[9.622569207000112,40.92377350500003],[9.642100457000112,40.920640367000125],[9.637217644000115,40.91156647300012],[9.631521030000044,40.904852606000176],[9.623871290000125,40.900702216000134],[9.614105665000096,40.89960358299999],[9.614105665000096,40.89337799700006],[9.65007571700005,40.87946198100014],[9.65577233200014,40.87604401200015],[9.657725457000083,40.86395905200005],[9.663259311000104,40.85822174700017],[9.671722852000128,40.85871002800015],[9.683116082000112,40.865423895],[9.689789259000065,40.855861721000124],[9.699392123000052,40.85004303600006],[9.710948113000086,40.846869208],[9.72396894600007,40.84491608300006],[9.691091342000078,40.83624909100014],[9.681000196000099,40.82977936400006],[9.689789259000065,40.81704336100002],[9.689789259000065,40.810777085000055],[9.674489780000101,40.81391022300012],[9.66179446700005,40.80902741100006],[9.65788821700005,40.79987213700018],[9.668793165000125,40.790350653000175],[9.669769727000102,40.80145905200011],[9.675791863000114,40.788641669000164],[9.703949415000096,40.759426174000126],[9.710297071000127,40.74559153900004],[9.714203321000127,40.727240302],[9.74447675900012,40.680487372000115],[9.748301629000109,40.667222397999986],[9.753184441000087,40.60529205900012],[9.756521030000044,40.59516022300015],[9.761566602000073,40.58734772300006],[9.768077019000145,40.58429596600017],[9.781911655000044,40.58197663000003],[9.785817905000043,40.57587311400012],[9.78687584700009,40.56712474200004],[9.792246941000144,40.556952216000084],[9.82056725400011,40.53636302300008],[9.826426629000139,40.52960846600003],[9.826670769000089,40.51959870000006],[9.815196160000141,40.50250885600009],[9.81218509200005,40.49237702000015],[9.808767123000052,40.47077057500006],[9.800303582000083,40.45551178600009],[9.77808678500014,40.4272321640001],[9.761729363000113,40.390692450000174],[9.74935957100007,40.377264716000084],[9.727386915000068,40.372015692],[9.71241295700014,40.366400458],[9.700856967000107,40.352972723],[9.683116082000112,40.32420482000008],[9.67017662900011,40.31268952000012],[9.64551842500012,40.29608795800006],[9.63461347700013,40.28261953300007],[9.626149936000104,40.263088283000016],[9.624847852000102,40.24774811400006],[9.62907962300011,40.20555247600011],[9.631114129000139,40.19619375200009],[9.654633009000092,40.14459870000003],[9.665049675000091,40.13157786700005],[9.679698113000114,40.126166083],[9.68783613400012,40.12067291900014],[9.710215691000142,40.0963402360001],[9.73226972700013,40.08392975500006],[9.7303166020001,40.06854889500012],[9.693369988000141,39.99290599200013],[9.687266472000147,39.96116771000008],[9.696625196000099,39.933783270000035],[9.702484571000127,39.93720123900012],[9.709727410000141,39.9403343770001],[9.715668165000068,39.94013092700014],[9.717784050000091,39.933783270000035],[9.71452884200005,39.924505927000055],[9.708181186000104,39.922186591000084],[9.701426629000082,39.92206452000012],[9.696625196000099,39.91950104400003],[9.689463738000143,39.906561591000106],[9.684336785000113,39.89423248900006],[9.683848504000139,39.88251373900009],[9.689789259000065,39.871730861000074],[9.683116082000112,39.871730861000074],[9.683116082000112,39.86554596600011],[9.687754754000139,39.86351146000008],[9.691905144000089,39.860052802000084],[9.696625196000099,39.85805898600013],[9.696625196000099,39.85187409100017],[9.684255405000043,39.83991120000003],[9.675547722000147,39.81891510600009],[9.670258009000094,39.793768622000115],[9.668793165000125,39.769273179],[9.669932488000143,39.75657786700013],[9.675059441000087,39.7320824240001],[9.676280144000089,39.71808502800003],[9.67408287900011,39.70799388200008],[9.664805535000141,39.6913923200001],[9.662608269000145,39.67682526200018],[9.660411004000082,39.67072174700008],[9.65577233200014,39.66290924700009],[9.651133660000113,39.652492580000015],[9.648936394000115,39.638983466000056],[9.65577233200014,39.59454987200003],[9.653005405000073,39.566839911000116],[9.628428582000083,39.50177643400009],[9.644867384000063,39.48395416900011],[9.639008009000122,39.45246002800009],[9.614105665000096,39.399359442],[9.60206139400006,39.35565827],[9.600433790000038,39.341009833],[9.603526238000114,39.32623932500012],[9.611582879000082,39.31655508000016],[9.63461347700013,39.30316803600006],[9.63461347700013,39.29694245000009],[9.607269727000071,39.28900788000011],[9.581879102000128,39.266302802],[9.567556186000047,39.23810455900012],[9.57325280000012,39.21381256700012],[9.565603061000104,39.20506419500005],[9.568858269000145,39.19928620000009],[9.576019727000102,39.19391510600003],[9.579925977000102,39.18707916900003],[9.577891472000147,39.179388739],[9.568532748000024,39.15936920800011],[9.566416863000114,39.14923737200017],[9.557790561000104,39.13971588700018],[9.539561394000117,39.134019273000014],[9.522715691000116,39.12490469],[9.518565300000091,39.10455963700012],[9.510752800000091,39.107977606000034],[9.507090691000142,39.11139557500003],[9.507578972000118,39.116359768000095],[9.51189212300005,39.124416408000016],[9.496348504000139,39.13361237200009],[9.480723504000139,39.13556549700006],[9.465342644000117,39.13190338700018],[9.450368686000076,39.124416408000016],[9.442881707000112,39.124416408000016],[9.437998894000145,39.13336823100015],[9.428965691000114,39.13861725500014],[9.408702019000117,39.1461449240001],[9.383474155000073,39.16925690300006],[9.377696160000085,39.17279694200012],[9.367930535000141,39.177150783],[9.345062696000127,39.19643789300015],[9.336680535000085,39.20075104400014],[9.326182488000114,39.20278554900009],[9.312266472000118,39.20791250200009],[9.299571160000085,39.21450429900007],[9.292165561000076,39.22125885600012],[9.285329623000079,39.21381256700012],[9.271250847000118,39.22052643400018],[9.252452019000089,39.22516510600009],[9.21631920700014,39.228013414000046],[9.19743899800011,39.221136786000145],[9.180918816000114,39.20718008000007],[9.169688347000118,39.19334544500007],[9.166026238000084,39.18707916900003],[9.136892123000107,39.19432200700014],[9.11353600400011,39.21149323100014],[9.073008660000113,39.24852122600002],[9.063731316000144,39.243068752000156],[9.055511915000068,39.24754466400013],[9.047536655000101,39.25600820500007],[9.03874759200005,39.262193101000136],[9.024424675000148,39.264837958000115],[9.013926629000082,39.26390208500014],[9.012543165000096,39.260565497000115],[9.025726759000063,39.25600820500007],[9.025726759000063,39.24852122600002],[9.02100670700014,39.24042389500006],[9.026866082000083,39.23574453300015],[9.035166863000143,39.232163804],[9.037852410000141,39.22711823100015],[9.03874759200005,39.228013414000046],[9.050059441000116,39.22565338700009],[9.074961785000141,39.229885158000016],[9.079844597000118,39.22459544500013],[9.079844597000118,39.21653880400002],[9.078949415000125,39.212347723000065],[9.038584832000083,39.17902252800017],[9.026215040000125,39.16522858300008],[9.018321160000141,39.1461449240001],[9.015961134000094,39.123846747000144],[9.018728061000076,39.10394928600005],[9.024587436000104,39.08612702000009],[9.031993035000085,39.069769598000065],[9.037771030000073,39.063666083000086],[9.043793165000068,39.058417059000085],[9.044932488000114,39.051255601000044],[9.029307488000113,39.03025950700011],[9.018321160000141,38.995306708],[9.025726759000063,38.995306708],[9.015147332000083,38.989650783000016],[9.01205488400012,38.99066803600009],[9.004649285000113,38.995306708],[8.996348504000139,38.982814846000096],[8.89470462300008,38.90228913000011],[8.887950066000114,38.89984772300009],[8.877452019000145,38.899074611000074],[8.872406446000127,38.89606354400017],[8.861338738000086,38.882066148000106],[8.853282097000147,38.877997137000065],[8.841481967000078,38.88056061400006],[8.827891472000118,38.88882070500013],[8.805430535000113,38.90595123900009],[8.805430535000113,38.88544342700011],[8.791026238000143,38.90444570500013],[8.76661217500012,38.920396226000136],[8.739512566000087,38.93065013200005],[8.71656334700009,38.93260325700011],[8.694590691000087,38.925238348000036],[8.668793165000068,38.910589911],[8.651621941000114,38.89154694200003],[8.655121290000125,38.871161200000024],[8.640961134000092,38.864325262000115],[8.634776238000114,38.871161200000024],[8.642832879000139,38.889960028000175],[8.633148634000094,38.89557526200018],[8.615570509000065,38.895941473],[8.59986412900011,38.899074611000074],[8.59986412900011,38.90595123900009],[8.61500084700009,38.92300039300012],[8.615489129000082,38.94757721600014],[8.603282097000118,38.96491120000003],[8.580088738000084,38.96051666900014],[8.572276238000086,39.01361725500006],[8.55958092500012,39.05670807500009],[8.55209394600007,39.05670807500009],[8.54428144600007,39.051255601000044],[8.520843946000099,39.06085846600003],[8.504405144000089,39.062933661000145],[8.509043816000116,39.067938544000086],[8.518077019000117,39.083441473],[8.504405144000089,39.09088776200018],[8.482758009000094,39.08038971600011],[8.48210696700005,39.08417389500012],[8.47754967500012,39.090480861000074],[8.473317905000101,39.10736725500006],[8.465098504000082,39.11945221600016],[8.454274936000104,39.12490469],[8.442230665000096,39.11815013200008],[8.437998894000145,39.12848541900017],[8.438649936000104,39.15314362200017],[8.435394727000071,39.16596100500003],[8.428396030000073,39.17316315300003],[8.418793165000096,39.17731354400017],[8.412608269000145,39.17572663000014],[8.415700717000107,39.16596100500003],[8.40951582100007,39.169338283000044],[8.405039910000085,39.17438385600015],[8.402354363000114,39.181341864000146],[8.40137780000012,39.1901716170001],[8.398692254000139,39.20115794500008],[8.392588738000086,39.204046942],[8.385508660000113,39.20441315300011],[8.380137566000142,39.207586981000176],[8.372813347000147,39.222072658000016],[8.371755405000101,39.23061758000013],[8.376719597000147,39.23786041900017],[8.426442905000044,39.283270575000145],[8.432139519000117,39.30182526200015],[8.415700717000107,39.323675848],[8.417246941000144,39.33901601800015],[8.382090691000087,39.35968659100017],[8.374034050000148,39.378851630000135],[8.378184441000116,39.387925523000135],[8.395681186000047,39.40424225500006],[8.40137780000012,39.41242096600017],[8.405039910000085,39.42719147300015],[8.403819207000083,39.43585846600014],[8.389496290000096,39.462347723000036],[8.385996941000087,39.465521552000084],[8.38689212300008,39.46979401200009],[8.394541863000114,39.48135000200001],[8.421885613000086,39.508612372000115],[8.43531334700009,39.52521393400015],[8.451670769000089,39.55829498900003],[8.463389519000089,39.576849677000105],[8.455902540000125,39.58437734600007],[8.463877800000063,39.597886460000055],[8.462168816000059,39.61713288],[8.449717644000145,39.65884023600013],[8.446787957000112,39.70408763200008],[8.442230665000096,39.714667059000114],[8.442230665000096,39.72150299700006],[8.446462436000104,39.73086172100007],[8.444021030000071,39.757025458000115],[8.446055535000085,39.762518622000144],[8.45972741000014,39.760484117000104],[8.468597852000073,39.754950262000094],[8.499766472000147,39.71621328300016],[8.516937696000099,39.70213450700011],[8.538259311000076,39.69603099200013],[8.565765821000099,39.701076565000065],[8.514496290000068,39.71369049700014],[8.504405144000089,39.72150299700006],[8.50684655000012,39.738470770000035],[8.519867384000122,39.75543854400008],[8.535492384000094,39.77081940300003],[8.545258009000122,39.78294505400011],[8.538584832000083,39.78294505400011],[8.535166863000084,39.77606842700011],[8.530528191000144,39.77041250200004],[8.52491295700014,39.76581452000009],[8.518077019000117,39.762518622000144],[8.529795769000117,39.77252838700004],[8.54078209700009,39.78925202000006],[8.548838738000114,39.80719635600012],[8.55209394600007,39.82078685100008],[8.555186394000145,39.852687893000095],[8.553558790000125,39.863959052000084],[8.545258009000122,39.87856679900009],[8.523448113000086,39.898871161],[8.494151238000057,39.91242096600014],[8.463063998000052,39.914129950000145],[8.435394727000071,39.89899323100015],[8.442230665000096,39.892808335],[8.44556725400011,39.89809804900007],[8.449961785000085,39.89911530200014],[8.455821160000141,39.898504950000174],[8.463389519000089,39.89899323100015],[8.451833530000073,39.89288971600017],[8.444672071000127,39.88361237200003],[8.435394727000071,39.85805898600013],[8.42872155000012,39.86554596600011],[8.437510613000086,39.87677643400009],[8.43100019600007,39.88519928600006],[8.418304884000122,39.89227936400011],[8.403575066000114,39.90289948100015],[8.400726759000094,39.90350983300011],[8.398285352000045,39.905340887000094],[8.394541863000114,39.912665106000084],[8.393565300000148,39.92047760600009],[8.396332227000102,39.926947333],[8.399912957000083,39.93317291900014],[8.40137780000012,39.940008856000176],[8.393565300000148,39.976874091000134],[8.394541863000114,39.98843008000007],[8.406504754000139,40.00983307500012],[8.407074415000125,40.02220286700005],[8.394541863000114,40.036200262000115],[8.380137566000142,40.03009674700003],[8.377207879000139,40.033758856000176],[8.384532097000118,40.04193756700009],[8.40137780000012,40.049872137000065],[8.404470248000107,40.04950592700013],[8.434825066000087,40.05101146],[8.452403191000116,40.056097723],[8.45972741000014,40.05731842700011],[8.468597852000073,40.06216054900001],[8.479014519000058,40.07416413000011],[8.487315300000148,40.08954498900006],[8.490000847000118,40.10447825700011],[8.485118035000141,40.11810944200006],[8.467295769000089,40.14472077],[8.463389519000089,40.16315338700004],[8.459646030000044,40.216009833],[8.476410352000073,40.262152411000116],[8.47608483200014,40.292141018000095],[8.462901238000086,40.31452057500009],[8.441254102000102,40.33144765800007],[8.415700717000107,40.34528229400008],[8.408213738000141,40.33783600500003],[8.385996941000087,40.35179271000008],[8.383555535000141,40.37177155200005],[8.394541863000114,40.423814195000105],[8.390472852000071,40.44232819200012],[8.37989342500012,40.46869538000011],[8.365570509000122,40.49213288],[8.349864129000139,40.502346096000124],[8.33171634200005,40.510687567],[8.323903842000078,40.53082916900014],[8.319590691000144,40.555609442],[8.312022332000112,40.578070380000106],[8.291514519000145,40.59536367400001],[8.267344597000147,40.59406159100011],[8.216319207000055,40.57062409100003],[8.195974155000071,40.578070380000106],[8.20533287900011,40.59780508000013],[8.216319207000055,40.61220937700001],[8.193369988000086,40.617499091000084],[8.176605665000068,40.606594143],[8.16618899800008,40.58641185099999],[8.161794467000078,40.56378815300012],[8.153086785000085,40.57778554900006],[8.147308790000125,40.593207098],[8.140635613000084,40.61904531500012],[8.140635613000084,40.62518952],[8.157725457000112,40.632269598000065],[8.173838738000086,40.64158763200011],[8.185313347000147,40.65656159100014],[8.188487175000091,40.680487372000115],[8.191091342000107,40.68040599200013],[8.195567254000082,40.685288804],[8.197438998000052,40.69122955900012],[8.192149285000141,40.694159247000144],[8.178965691000114,40.694769598],[8.173838738000086,40.696966864],[8.167979363000143,40.701605536000116],[8.153330925000148,40.71971263200013],[8.14584394600007,40.726019598000065],[8.133799675000148,40.72890859600001],[8.209646030000101,40.865423895],[8.215342644000089,40.88141510600011],[8.216319207000055,40.89960358299999],[8.209727410000085,40.91445547100007],[8.192149285000141,40.920640367000125],[8.178884311000047,40.928168036],[8.182302280000044,40.94529857000013],[8.19304446700005,40.963771877000156],[8.202159050000148,40.975287177],[8.209646030000101,40.975287177],[8.21257571700005,40.963446356000034],[8.219981316000116,40.9623070330001],[8.229014519000115,40.962551174000126],[8.236175977000073,40.95477936400012],[8.235524936000104,40.94647858300005],[8.231618686000017,40.93451569200012],[8.229258660000085,40.92157623900012],[8.233164910000056,40.910101630000085],[8.277842644000117,40.865423895],[8.31023196700005,40.85065338700003],[8.421885613000086,40.83877187700007],[8.477875196000127,40.82615794500002],[8.500987175000091,40.82444896],[8.520518425000148,40.826971747000115],[8.598399285000141,40.85297272300009],[8.618337436000047,40.86615631700014],[8.63428795700014,40.88157786700007],[8.640961134000092,40.89647044500013],[8.709157748000107,40.920640367000125],[8.733897332000083,40.92129140800007],[8.751231316000087,40.91913483300008],[8.764414910000113,40.91380442900011],[8.822520379000082,40.947333075000145],[8.839610222000118,40.961615302000055],[8.875336134000065,41.008124091000084],[8.887950066000114,41.0162621110001],[8.885915561000104,41.02008698100012],[8.885915561000104,41.02122630400005],[8.885264519000145,41.02179596600003],[8.88111412900011,41.02366771],[8.91309655000012,41.032660223],[8.922699415000096,41.036769924000154],[8.929453972000118,41.043646552000055],[8.940114780000071,41.06118398600002],[8.94629967500012,41.064642645],[8.958750847000147,41.07001373900006],[8.975759311000104,41.08266836100013],[8.990733269000145,41.09735748900012],[9.005544467000107,41.121893622000144],[9.02475019600007,41.12885163000014],[9.093028191000085,41.13519928600009],[9.107758009000065,41.13947174700009],[9.135590040000125,41.16030508000007],[9.141856316000087,41.15277741100003],[9.157562696000127,41.16889069200009],[9.16342207100007,41.18414948100015],[9.162852410000113,41.22540924700009],[9.171071811000104,41.24290599200004],[9.189952019000145,41.25112539300015],[9.21241295700014,41.25580475500006],[9.23064212300011,41.26264069200009],[9.232676629000139,41.2535667990001],[9.238291863000143,41.24884674700017]]],[[[10.315928582000055,42.34076569200009],[10.313243035000085,42.32391998900009],[10.29444420700014,42.32802969000012],[10.297048373000052,42.34487539300012],[10.306407097000147,42.35154857],[10.315928582000055,42.34076569200009]]],[[[10.939764452000077,42.33065971000003],[10.923330955000068,42.318728032000095],[10.908946160000113,42.32526276200015],[10.871701651000109,42.354052112000105],[10.861827019000117,42.36627838700018],[10.876368251000144,42.374439364000025],[10.875824415000096,42.386786200000024],[10.882985873000052,42.392157294000086],[10.89584394600007,42.38670482000005],[10.913460071000117,42.37524135100013],[10.927307420000119,42.35330133300006],[10.929557895000073,42.34056013100003],[10.939764452000077,42.33065971000003]]],[[[10.095388217000107,42.57697174700003],[10.08578535200013,42.57245514500006],[10.071787957000055,42.57273997599999],[10.058604363000114,42.575995184000035],[10.05030358200014,42.581935940000065],[10.052582227000102,42.58901601800012],[10.062754754000139,42.59202708500014],[10.072601759000065,42.60040924700008],[10.079437696000099,42.613918361000074],[10.084320509000063,42.61469147300009],[10.08765709700009,42.60398997600008],[10.091644727000071,42.595770575000145],[10.096039259000063,42.59072500200013],[10.09791100400011,42.587958075000174],[10.09791100400011,42.58388906500004],[10.095388217000107,42.57697174700003]]],[[[10.43067467500012,42.81614817900008],[10.436696811000104,42.804429429],[10.430023634000065,42.78758372599999],[10.42025800900012,42.77643463700015],[10.406911655000101,42.76898834800009],[10.388845248000079,42.76349518400015],[10.407969597000147,42.757269598],[10.425140821000099,42.74079010600009],[10.43067467500012,42.722113348000114],[10.415537957000112,42.70888906500009],[10.410980665000066,42.717962958],[10.40333092500012,42.71889883000007],[10.393239780000071,42.71820709800012],[10.381358269000115,42.722560940000115],[10.377289259000063,42.727972723000065],[10.367198113000086,42.74599844],[10.364268425000091,42.74982330900012],[10.351247592000078,42.75568268400015],[10.337901238000084,42.76483795800014],[10.325043165000068,42.76483795800014],[10.313731316000087,42.74298737200009],[10.3045353520001,42.759751695000105],[10.265391472000147,42.744574286000116],[10.245371941000087,42.757269598],[10.240000847000116,42.74188873900006],[10.23519941500004,42.73590729400002],[10.229665561000047,42.735419012000065],[10.147227410000113,42.73729075700011],[10.124847852000073,42.74310944200006],[10.10678144600007,42.75739166900014],[10.1014103520001,42.784002997000115],[10.111664259000122,42.80125560100011],[10.13298587300011,42.81191640800013],[10.158213738000143,42.81728750200001],[10.179535352000128,42.81875234600007],[10.189952019000115,42.81688060099999],[10.212168816000087,42.80784739799999],[10.224375847000147,42.804429429],[10.242198113000114,42.80316803600006],[10.265879754000139,42.804429429],[10.264903191000085,42.80939362200002],[10.264333530000101,42.81045156500009],[10.262705925000091,42.81024811400012],[10.259043816000116,42.81191640800013],[10.272146030000101,42.81875234600007],[10.272146030000101,42.82623932500003],[10.272146030000101,42.827337958000086],[10.28931725400011,42.825628973000065],[10.326833530000043,42.82623932500003],[10.32211347700013,42.811712958],[10.332774285000056,42.80597565300003],[10.347341342000107,42.80585358300006],[10.354665561000104,42.808172919000114],[10.3580835300001,42.81753164300015],[10.365977410000085,42.822943427],[10.374766472000147,42.82709381700011],[10.381358269000115,42.83242422100001],[10.39210045700014,42.85797760600009],[10.399912957000112,42.86884186400005],[10.412364129000139,42.87335846600003],[10.422048373000107,42.87083567900011],[10.431000196000127,42.864447333],[10.438487175000091,42.85545482000008],[10.443369988000086,42.84544505399999],[10.436045769000144,42.838120835],[10.431162957000083,42.82786692900005],[10.43067467500012,42.81614817900008]]],[[[9.822953622000114,43.00845909000004],[9.801498481000095,43.007805218000115],[9.784594848000097,43.02844183399999],[9.806944043000101,43.06640771800009],[9.825776759000092,43.07462970800013],[9.840098504000082,43.06517161700005],[9.841807488000086,43.06342194200015],[9.84392337300011,43.06069570500007],[9.847504102000073,43.05857982000008],[9.854810932000134,43.04427469700012],[9.842127292000072,43.024955918000146],[9.822953622000114,43.00845909000004]]],[[[12.407481316000116,45.43065013200011],[12.430918816000116,45.41567617400007],[12.418223504000139,45.420355536],[12.404795769000145,45.42226797100015],[12.376231316000144,45.42255280199999],[12.321462436000045,45.34800853100013],[12.319997592000078,45.35415273600001],[12.327891472000147,45.372259833000115],[12.352061394000144,45.405462958000136],[12.371836785000085,45.42487213700004],[12.389170769000145,45.43353913000014],[12.407481316000116,45.43065013200011]]],[[[12.3522241550001,45.433986721000124],[12.33725019600007,45.42739492400007],[12.320648634000122,45.4298363300001],[12.316579623000079,45.44306061400012],[12.32984459700009,45.45880768400009],[12.347178582000083,45.45880768400009],[12.363780144000144,45.44965241100003],[12.362071160000141,45.438137111000074],[12.3522241550001,45.433986721000124]]],[[[12.122133015000117,46.97165598600015],[12.128230835000096,46.94858245900009],[12.134742065000069,46.93744618800015],[12.141666708000031,46.927989400000016],[12.141563355000102,46.91884267200011],[12.126887247000127,46.90886912000012],[12.137429240000074,46.905923564000105],[12.16099369300008,46.90302968400012],[12.172155802000105,46.89917978900017],[12.183524617000103,46.89122161900011],[12.18900231900011,46.884942932000016],[12.195100138000072,46.880085348000094],[12.208742716000073,46.87662302700014],[12.250807332000079,46.87561533700007],[12.2666203200001,46.86814809200014],[12.275818726000097,46.8462889610001],[12.276128784000065,46.83398997000016],[12.27333825700012,46.826755270000014],[12.269617554000092,46.819830628000105],[12.266930380000074,46.80825510700008],[12.266723673000115,46.79533599900016],[12.269100789000076,46.78856638700002],[12.274785197000114,46.78463897700006],[12.284397013000103,46.77998809899999],[12.305274292000092,46.77445872],[12.32604821800004,46.772495016000065],[12.34268802900007,46.765131124000064],[12.35147302300004,46.743246155000016],[12.370386596000088,46.71115509],[12.405009806000095,46.690122783000064],[12.445627482000134,46.67870229200015],[12.469632190000139,46.675798865],[12.499887736000062,46.67213938499999],[12.53079024200008,46.657669984000066],[12.547326701000145,46.65219228100007],[12.562002807000056,46.65121042900002],[12.620190471000058,46.65648142500014],[12.669593139000083,46.6530191050001],[12.671367650000093,46.65246576300014],[12.679204956000092,46.650021870999986],[12.697395061000122,46.64053924600002],[12.70659346500014,46.63774871900013],[12.71599857600009,46.637955424],[12.73201827000014,46.64227040700016],[12.739873088000081,46.64299387600006],[12.74849950400008,46.64099604100006],[12.773566122000119,46.63519073500005],[12.830410197000077,46.60963674000003],[13.064504435000089,46.598035380000155],[13.146463257000049,46.58496124300011],[13.210025269000113,46.55801198300015],[13.231109253000056,46.5521725470001],[13.27141687000011,46.550777283000016],[13.373322794000075,46.565789286],[13.417041056000071,46.56049245200013],[13.478019246000114,46.563567200000094],[13.484943889000107,46.561732686000184],[13.499103230000058,46.550622254000174],[13.506751343000133,46.546927389000146],[13.549229370000091,46.54584218400008],[13.670255574000066,46.51871205700009],[13.685345093000079,46.517626851],[13.7009513750001,46.51974558600007],[13.701054728000114,46.51189076800012],[13.699194376000037,46.50483693500003],[13.695473673000038,46.49863576200015],[13.68989261900009,46.493338928000114],[13.688445678000107,46.46775909500015],[13.685852877000059,46.464047231000066],[13.677490275000139,46.45207529700009],[13.658783407000044,46.44512481700009],[13.634082072000126,46.445719097000065],[13.600182332000117,46.44264434900013],[13.575687703000085,46.42667633100008],[13.554397013000084,46.40595408100016],[13.530005737000065,46.38833241800007],[13.483703654000065,46.371150004000114],[13.459725790000078,46.35903188100012],[13.44732344500008,46.35484609000017],[13.434094279000107,46.3538642380001],[13.423242229000067,46.34484670000016],[13.409806355000086,46.323607687],[13.395637648000076,46.306727928000115],[13.391306193000077,46.301567688000105],[13.365261271000094,46.29030222600012],[13.373012736000106,46.280276998000105],[13.37859379000011,46.26839141900008],[13.384691610000088,46.24332834900018],[13.384794963000102,46.24322499600005],[13.384898316000118,46.24312164400011],[13.39812748200012,46.2305125940001],[13.401641480000078,46.21666331000013],[13.41011641500009,46.20798167000008],[13.437401570000105,46.21092722600015],[13.422828816000049,46.22860056600008],[13.43833174600013,46.22487986300017],[13.468304077000084,46.223432923000175],[13.482256713000083,46.21790354500017],[13.510161988000078,46.21397613599999],[13.528972208000084,46.204829407000105],[13.559047892000137,46.18410715800009],[13.584472697000137,46.18131663100003],[13.613928264000064,46.18353871700013],[13.627366324000036,46.18173316300012],[13.637389363000125,46.180386455000175],[13.641071451000128,46.171405145],[13.645037475,46.16173126300011],[13.616408732000137,46.125040995000134],[13.522585297000091,46.075298023000116],[13.50509769700008,46.06602651000009],[13.482256713000083,46.04483917300014],[13.490318237000082,46.03894805900013],[13.492798706000144,46.032488505000096],[13.490008179000085,46.025563863000016],[13.482256713000083,46.01843251500016],[13.47708907000009,46.01605540000013],[13.461792846000037,46.00639190700009],[13.474815307000142,45.99574656200009],[13.47946618600011,45.993111064000104],[13.480396362000079,45.992284241000064],[13.481223186000108,45.99135406500001],[13.481843302000073,45.99037221300013],[13.482256713000083,45.98923533200003],[13.509438517000149,45.9674278770001],[13.539410848000102,45.96902984700013],[13.57165694200009,45.979830221],[13.60073487200009,45.98457405300011],[13.605866740000067,45.985411276000015],[13.622816610000086,45.96639434900013],[13.615325176000084,45.9459124480001],[13.608243856000113,45.926551819],[13.599306242000095,45.912327499000114],[13.569279826000125,45.86454010100006],[13.565972534000139,45.83033030300005],[13.574172202000085,45.81902805700015],[13.581268758000078,45.809246318000035],[13.609174032000084,45.798600973000035],[13.643590535000016,45.795655416000145],[13.660333699000148,45.792038066000075],[13.699908416000142,45.77052373600004],[13.70947798600011,45.765321351000104],[13.778724406000036,45.743410543000046],[13.85840946500008,45.6493594360001],[13.869158163000094,45.641142884000075],[13.884144327000085,45.63514841700014],[13.89313602700011,45.634683329000026],[13.893640530000111,45.63375840600004],[13.894686320000062,45.63184112500012],[13.887038208000147,45.618766988000075],[13.867925706000108,45.60216928900009],[13.847764119000088,45.58466054300011],[13.800531860000149,45.5812498990001],[13.76105106600005,45.59623606400005],[13.711761915000094,45.59320709800009],[13.718760613000057,45.60065338700015],[13.73015384200005,45.61310455900017],[13.757009311000104,45.613674221000146],[13.78687584700009,45.611151434000035],[13.808116082000083,45.614325262000094],[13.7955835300001,45.61701080900017],[13.786468946000099,45.62433502800009],[13.777110222000145,45.63544342700011],[13.73926842500012,45.649115302000055],[13.757660352000073,45.654974677],[13.75367272200009,45.67230866100009],[13.739105665000068,45.69159577000012],[13.72624759200005,45.70376211100002],[13.647308790000096,45.76203034100003],[13.628916863000143,45.77260976800006],[13.574229363000114,45.789618231000034],[13.551280144000117,45.79242584800009],[13.534434441000116,45.78204987200008],[13.524180535000085,45.76007721600017],[13.52833092500012,45.740545966000084],[13.554942254000082,45.73720937700007],[13.518402540000123,45.72483958500011],[13.513356967000107,45.720770575000145],[13.507823113000086,45.71442291900003],[13.480235222000147,45.710679429000024],[13.469248894000115,45.70685455900009],[13.451670769000089,45.69379303600003],[13.427989129000139,45.68113841400004],[13.401703321000127,45.675441799000154],[13.376719597000118,45.68317291900017],[13.390961134000122,45.685777085000055],[13.40919030000012,45.69131094000009],[13.424815300000091,45.69855377800012],[13.431407097000147,45.70685455900009],[13.422618035000113,45.724066473],[13.381683790000068,45.73004791900002],[13.36939537900011,45.744614976000044],[13.351817254000082,45.74030182500014],[13.25489342500012,45.756048895],[13.245860222000118,45.75893789300012],[13.221853061000076,45.77606842700008],[13.215505405000044,45.778794664000046],[13.204925977000073,45.777736721000096],[13.169444207000081,45.76874420800006],[13.157725457000112,45.75458405200013],[13.149668816000059,45.751532294000135],[13.139821811000047,45.75486888200008],[13.131358269000115,45.76886627800003],[13.11931399800008,45.77195872600011],[13.11085045700014,45.76764557500003],[13.108164910000085,45.75820547100001],[13.111827019000117,45.74884674700017],[13.122894727000071,45.744614976000044],[13.122894727000071,45.73720937700007],[13.10059655000012,45.73623281500009],[13.080577019000145,45.72760651200018],[13.069590691000085,45.713690497000115],[13.075043165000125,45.696844794000114],[13.09148196700005,45.68919505400008],[13.111664259000065,45.69135163000008],[13.149668816000059,45.70376211100002],[13.13803144600007,45.689398505000106],[13.10303795700014,45.66901276200004],[13.095632358000074,45.652329820000105],[13.095550977000102,45.652167059000035],[13.084971550000148,45.64191315300012],[13.060557488000086,45.63666413000011],[12.981700066000144,45.634833075000145],[12.943858269000089,45.628566799],[12.78077233200014,45.553534247000165],[12.611664259000065,45.496161200000145],[12.512705925000091,45.470445054],[12.495941602000073,45.46039459800012],[12.48780358200014,45.45673248900006],[12.451426629000137,45.450425523000135],[12.423675977000073,45.43805573100009],[12.41032962300008,45.436224677000105],[12.418223504000139,45.451117255000085],[12.429209832000112,45.464016018000095],[12.435801629000082,45.47492096600014],[12.430918816000116,45.484035549000154],[12.440603061000076,45.48297760600009],[12.447276238000114,45.48432038],[12.451019727000045,45.488999742000104],[12.451426629000137,45.49823639500006],[12.458181186000104,45.49823639500006],[12.462901238000114,45.489732164000046],[12.466970248000052,45.48558177299999],[12.471934441000114,45.48590729400002],[12.478688998000052,45.49079010600009],[12.46501712300011,45.504461981000034],[12.47632897200009,45.503566799000126],[12.487152540000096,45.50409577],[12.497325066000144,45.50674062700001],[12.499196811000104,45.504461981000034],[12.499847852000045,45.505845445000105],[12.503184441000087,45.502875067],[12.506195509000092,45.49909088700015],[12.506602410000085,45.49823639500006],[12.503184441000087,45.49787018400015],[12.492930535000141,45.49823639500006],[12.492930535000141,45.49079010600009],[12.515147332000112,45.492743231000034],[12.520518425000148,45.505031643],[12.521494988000141,45.51898834800006],[12.530446811000076,45.52558014500012],[12.548106316000087,45.52700429900001],[12.562510613000143,45.531642971000124],[12.573578321000099,45.540025132],[12.581716342000107,45.552883205000015],[12.569672071000099,45.54938385600003],[12.544200066000087,45.536566473],[12.53728274800008,45.535834052000055],[12.518321160000085,45.549953518],[12.510508660000085,45.55906810099999],[12.506602410000085,45.573309637000094],[12.485199415000125,45.56500885600011],[12.458506707000112,45.54832591400016],[12.441905144000144,45.53034088700004],[12.451426629000137,45.51813385600015],[12.451426629000137,45.51190827],[12.43490644600007,45.5123558610001],[12.417735222000147,45.52358633],[12.41032962300008,45.51813385600015],[12.403575066000114,45.51813385600015],[12.396739129000109,45.539252020000056],[12.384125196000127,45.52301666900003],[12.39039147200009,45.51398346600003],[12.42400149800011,45.504461981000034],[12.42400149800011,45.49823639500006],[12.411631707000083,45.493312893],[12.393402540000096,45.491644598],[12.380544467000078,45.494777736000074],[12.383067254000082,45.504461981000034],[12.350433790000125,45.50486888200014],[12.309580925000091,45.48891836100002],[12.272715691000116,45.46360911699998],[12.252696160000141,45.436224677000105],[12.252696160000141,45.429999091000134],[12.258962436000104,45.429999091000134],[12.250010613000086,45.42072174700011],[12.246104363000086,45.411322333000086],[12.248545769000117,45.402533270000035],[12.258962436000104,45.39520905200011],[12.249196811000076,45.38548411700007],[12.24740644600007,45.37824127800003],[12.248057488000114,45.37099844],[12.245290561000076,45.3610700540001],[12.237803582000083,45.357733466000084],[12.22828209700009,45.35748932500003],[12.223806186000047,45.35394928600006],[12.23218834700009,45.34056224200005],[12.22087649800011,45.32705312700007],[12.216319207000083,45.31622955900009],[12.208750847000118,45.30906810100005],[12.187510613000143,45.306463934000064],[12.174327019000087,45.310532945000105],[12.162933790000125,45.31622955900009],[12.15447024800008,45.31346263200011],[12.149099155000044,45.29218170800005],[12.15984134200005,45.28310781500015],[12.168793165000066,45.262152411],[12.18067467500012,45.258042710000055],[12.191661004000082,45.262884833000115],[12.19939212300008,45.274603583000115],[12.201914910000111,45.28831614800005],[12.197438998000052,45.29962799700003],[12.217295769000145,45.29385000200007],[12.221446160000085,45.28327057500012],[12.2205509770001,45.26878489800008],[12.224864129000082,45.25116608300014],[12.21387780000012,45.248114325000145],[12.21111087300008,45.24298737200002],[12.215179884000122,45.23680247600008],[12.224864129000082,45.23069896],[12.221364780000101,45.21625397300012],[12.230479363000086,45.204250393],[12.247325066000085,45.19692617400001],[12.266368035000085,45.19660065300017],[12.263519727000128,45.200344143],[12.262543165000068,45.200751044000114],[12.258962436000104,45.20282623900012],[12.27369225400008,45.210842190000065],[12.296071811000102,45.226629950000024],[12.3073022800001,45.23069896],[12.298024936000076,45.215399481000034],[12.303965691000085,45.200751044000114],[12.315114780000101,45.18646881700012],[12.321055535000113,45.17234935099999],[12.321950717000107,45.138739325000145],[12.328461134000122,45.101019598],[12.318369988000141,45.103461005000106],[12.3073022800001,45.10785553600003],[12.308441602000128,45.114447333],[12.3073022800001,45.12417226800012],[12.3073022800001,45.128363348000065],[12.297373894000115,45.10635000200015],[12.296722852000073,45.088568427000084],[12.306651238000143,45.078558661],[12.328461134000122,45.07990143400018],[12.325205925000148,45.083685614],[12.323578321000127,45.08673737200009],[12.321055535000113,45.09357330900012],[12.340830925000148,45.081447658000016],[12.353037957000112,45.066961981000176],[12.363291863000141,45.052191473],[12.376231316000144,45.03896719000015],[12.376231316000144,45.03217194200012],[12.368337436000076,45.031154690000065],[12.364105665000068,45.029364325000174],[12.360850457000112,45.027085679000024],[12.35515384200005,45.02464427300008],[12.368825717000078,45.01097239800013],[12.383555535000056,45.02643463700015],[12.386566602000073,45.038763739],[12.380625847000147,45.05093008000007],[12.368825717000078,45.065619208],[12.383311394000117,45.05634186400012],[12.401377800000148,45.04987213700004],[12.41342207100007,45.04287344000014],[12.41032962300008,45.03217194200012],[12.426280144000089,45.02000560100005],[12.434092644000058,45.015529690000065],[12.444590691000144,45.01097239800013],[12.464691602000102,44.99201080900012],[12.486175977000102,44.97650788000002],[12.499196811000104,44.983710028000026],[12.49586022200009,44.983954169000086],[12.489105665000125,44.98330312700013],[12.486094597000118,44.983710028000026],[12.486094597000118,44.99115631700011],[12.502614780000101,44.99144114800004],[12.516774936000047,44.98761627800003],[12.527598504000139,44.98016998900006],[12.533864780000071,44.97003815300009],[12.53296959700009,44.96084219000012],[12.523122592000078,44.95001862200003],[12.527028842000078,44.94334544499999],[12.518809441000144,44.93378327],[12.515391472000147,44.92837148600013],[12.512705925000091,44.92230866100006],[12.506602410000085,44.92230866100006],[12.499034050000148,44.92145416900014],[12.494883660000111,44.910467841000084],[12.492930535000141,44.87815989800007],[12.487315300000148,44.86225006700015],[12.474131707000112,44.845770575000145],[12.444590691000144,44.82050202],[12.44312584700009,44.825018622000144],[12.438731316000085,44.83490631700008],[12.432139519000115,44.846014716000106],[12.42400149800011,44.854641018],[12.439219597000088,44.877590236000096],[12.443044467000107,44.890082098],[12.438324415000094,44.90110911700005],[12.426931186000047,44.904974677000055],[12.415537957000053,44.89984772300015],[12.406911655000073,44.89130280200011],[12.403575066000114,44.88471100500005],[12.392100457000083,44.868394273000135],[12.391612175000091,44.85883209800012],[12.416514519000145,44.85114166900003],[12.415863477000102,44.84357330900015],[12.408213738000141,44.83624909100017],[12.396739129000109,44.8334821640001],[12.396739129000109,44.82664622599999],[12.403819207000083,44.82542552300008],[12.416270379000082,44.821437893],[12.42400149800011,44.82050202],[12.416188998000107,44.80329010600009],[12.39795983200014,44.79376862200009],[12.3756616550001,44.79222239800005],[12.357432488000114,44.804144598],[12.346853061000076,44.81533437700001],[12.321055535000113,44.8334821640001],[12.30298912900011,44.84292226800012],[12.29232832100007,44.84324778900004],[12.266368035000085,44.82664622599999],[12.266368035000085,44.82050202],[12.280039910000113,44.82050202],[12.25359134200005,44.75128815300003],[12.246592644000145,44.71161530200011],[12.252696160000141,44.66840241100003],[12.26587975400011,44.636175848000065],[12.274912957000112,44.6205101580001],[12.283457879000139,44.61375560100005],[12.285817905000071,44.60268789300003],[12.280039910000113,44.53188711100002],[12.283702019000089,44.48761627800015],[12.314219597000118,44.38719310099999],[12.318207227000102,44.36115143400012],[12.321055535000113,44.35370514500012],[12.325450066000114,44.347805080000015],[12.339203321000127,44.33429596600003],[12.342133009000065,44.32949453300013],[12.344248894000145,44.30829498900014],[12.350271030000073,44.288153387000094],[12.368825717000078,44.25067780199999],[12.38998457100007,44.222723700000145],[12.417165561000076,44.19546133000016],[12.45801842500012,44.166408596000096],[12.478770379000139,44.139349677000055],[12.510915561000104,44.11456940300017],[12.547373894000145,44.09345123900006],[12.574229363000143,44.0855980490001],[12.631358269000117,44.03009674700003],[12.660899285000085,44.00828685099999],[12.69157962300008,43.99062734600007],[12.71029707100004,43.982896226000044],[12.753835483000072,43.972398179],[12.756114129000139,43.971869208],[12.803965691000087,43.966864325000145],[12.823008660000056,43.958563544000086],[12.862152540000096,43.93537018400015],[12.928884311000076,43.91583893400015],[12.938649936000104,43.90460846600017],[12.947276238000114,43.897609768000095],[13.253265821000099,43.70319245000009],[13.370127800000148,43.65045807500009],[13.389821811000104,43.64459870000006],[13.399668816000116,43.63564687700001],[13.446625196000127,43.623724677000084],[13.473399285000141,43.612005927],[13.483164910000085,43.616278387000094],[13.490733269000144,43.62360260600009],[13.496267123000052,43.62750885600009],[13.49903405000012,43.628485419000164],[13.501231316000116,43.630601304],[13.504405144000087,43.63275788],[13.510264519000117,43.63373444200006],[13.516123894000145,43.63174062700001],[13.519053582000083,43.62718333500008],[13.52100670700014,43.622707424],[13.524180535000085,43.620672919000086],[13.543223504000082,43.61322663],[13.557790561000102,43.59674713700012],[13.569183790000096,43.58030833500011],[13.578868035000141,43.57290273600013],[13.597911004000139,43.569525458000115],[13.615570509000065,43.56049225500003],[13.624522332000083,43.547186591000084],[13.616953972000118,43.531317450000145],[13.760264519000144,43.26373932500008],[13.776052280000101,43.24359772300015],[13.78028405000012,43.236517645000085],[13.78663170700014,43.2005882830001],[13.790782097000088,43.192084052000055],[13.802744988000114,43.17820872599999],[13.834808790000094,43.12726471600016],[13.84864342500012,43.091742255],[13.865407748000024,43.00731028900013],[13.905528191000144,42.901556708],[13.944672071000099,42.798285223],[13.980479363000086,42.73037344000004],[14.001231316000087,42.69843170800003],[14.063243035000141,42.62482330900003],[14.068858269000145,42.609564520000056],[14.075368686000047,42.59882233300006],[14.22055097700013,42.47016022300012],[14.28419030000012,42.428290106000034],[14.356211785000141,42.39297109600001],[14.387380405000044,42.37295156500012],[14.429047071000097,42.321722723000086],[14.560231967000048,42.22565338700012],[14.59587649800008,42.208563544000164],[14.653493686000047,42.191066799000126],[14.693695509000037,42.185370184000035],[14.709239129000137,42.17548248900012],[14.717051629000139,42.16006094],[14.722829623000107,42.118801174000154],[14.729502800000148,42.0991071640001],[14.740733269000144,42.08462148600016],[14.757497592000076,42.07884349200001],[14.763356967000107,42.077948309000085],[14.780121290000123,42.07526276200004],[14.799815300000091,42.06635163],[14.83545983200014,42.044134833000115],[14.871104363000086,42.031805731000176],[14.951996290000068,42.02106354400017],[14.99366295700011,42.01064687700007],[15.007334832000138,42.001369533000044],[15.034515821000069,41.974595445000105],[15.04517662900011,41.96898021000011],[15.063161655000044,41.964300848],[15.104340040000096,41.94188060099999],[15.123383009000094,41.934271552000055],[15.14356530000012,41.93117910400015],[15.165375196000099,41.927801825000145],[15.281748894000144,41.928045966000084],[15.40056399800005,41.907782294000086],[15.446055535000111,41.90692780199999],[15.611338738000084,41.928045966000084],[15.77442467500012,41.921210028000175],[16.027110222000147,41.94407786699998],[16.110850457000083,41.928045966000084],[16.1119897800001,41.92633698100009],[16.14047285200013,41.91990794499999],[16.160899285000085,41.89264557500009],[16.179209832000137,41.89329661700005],[16.176036004000082,41.877386786000116],[16.183604363000143,41.858465887000094],[16.19223066500004,41.82135651200018],[16.19304446700005,41.80841705900018],[16.192881707000083,41.79092031500012],[16.184336785000085,41.77960846600014],[16.166677280000073,41.76341380399999],[16.145762566000087,41.748846747000144],[16.1276147800001,41.74249909100003],[16.10718834700012,41.73761627800015],[16.089691602000073,41.72601959800015],[16.0631616550001,41.70148346600003],[16.02751712300008,41.67991771000011],[15.925303582000112,41.64004140800013],[15.90007571700005,41.614650783000016],[15.891368035000085,41.576849677000084],[15.896332227000132,41.53644440300012],[15.911794467000048,41.50287506700009],[15.933604363000086,41.47943756700003],[15.961110873000054,41.459458726000136],[16.02165774800011,41.427801825000145],[16.085134311000047,41.41266510600015],[16.100352410000113,41.40355052300008],[16.114105665000125,41.392889716000134],[16.301442905000073,41.327866929],[16.4602970710001,41.26264069200009],[16.520681186000047,41.25014883000007],[16.538584832000083,41.239406643000066],[16.55437259200005,41.22748444200011],[16.59392337300008,41.20697663000005],[16.830577019000117,41.14630768400009],[16.8514103520001,41.1329613300001],[16.85816491000014,41.1329613300001],[16.85816491000014,41.140366929],[16.864431186000076,41.140366929],[16.885264519000145,41.12396881700009],[17.05713951900009,41.08185455900012],[17.203135613000086,41.0209821640001],[17.276377800000148,40.98021067900005],[17.31006920700014,40.95477936400012],[17.347911004000082,40.912095445000105],[17.36117597700013,40.90639883000013],[17.377696160000113,40.902289130000085],[17.413584832000083,40.881089585],[17.47608483200014,40.830145575000174],[17.491953972000147,40.82444896],[17.512217644000057,40.82029857000004],[17.54835045700011,40.801947333],[17.634532097000147,40.784979559000035],[17.645274285000085,40.779771226000136],[17.748383009000122,40.74762604400017],[17.84392337300011,40.694159247000144],[17.921885613000143,40.683010158000044],[17.955821160000113,40.670477606000034],[17.9549259770001,40.64691803600009],[17.966319207000083,40.64679596600011],[17.991953972000147,40.65314362200003],[18.007009311000076,40.650702216000106],[18.011078321000127,40.64419179900001],[18.01148522200012,40.63523997599999],[18.01579837300002,40.62518952],[18.03923587300011,40.60822174700003],[18.043223504000082,40.60199616100009],[18.037445509000122,40.556952216000084],[18.119965040000125,40.504584052000105],[18.211680535000085,40.46474844000012],[18.23145592500012,40.461371161000116],[18.238291863000143,40.457668361000074],[18.25879967500009,40.4306501320001],[18.270192905000073,40.42121002800012],[18.303233269000117,40.399888414000046],[18.329112175000116,40.36668528900013],[18.343760613000114,40.35162995000012],[18.36150149800011,40.34528229400008],[18.370453321000067,40.338690497000115],[18.437266472000086,40.26788971600008],[18.500010613000086,40.1524925800001],[18.504242384000094,40.146429755],[18.509450717000078,40.14183177300008],[18.516123894000145,40.13922760600015],[18.5110783210001,40.12759023600016],[18.51368248800011,40.12055084800009],[18.51742597700013,40.11416250200007],[18.516123894000145,40.10447825700011],[18.50806725400011,40.094549872000115],[18.49187259200005,40.084662177],[18.483571811000076,40.05516185100011],[18.47038821700002,40.043443101000136],[18.434092644000117,40.02252838700018],[18.411387566000087,39.978827216000084],[18.407888217000075,39.968491929],[18.40406334700009,39.94749583500014],[18.39478600400011,39.92560455900009],[18.392588738000114,39.91608307500012],[18.399668816000087,39.89032623900006],[18.400075717000107,39.87856679900009],[18.386485222000147,39.825344143],[18.389170769000117,39.81708405200011],[18.383962436000047,39.81391022300015],[18.3737085300001,39.79979075700011],[18.368337436000047,39.796616929000045],[18.346527540000096,39.798041083000115],[18.33838951900009,39.80011627800015],[18.330414259000122,39.803412177],[18.282074415000096,39.833197333],[18.26563561300011,39.83759186400009],[18.224375847000147,39.83759186400009],[18.211273634000094,39.83934153900016],[18.18653405000012,39.85187409100017],[18.16187584700012,39.86054108300005],[18.130625847000147,39.883490302000055],[18.094248894000085,39.90273672100001],[18.080902540000068,39.90643952000015],[18.071543816000116,39.91152578300015],[18.00733483200008,39.98607005400011],[17.995371941000144,39.995266018000095],[17.995371941000144,40.00267161700016],[18.011078321000127,40.003363348],[18.020274285000085,40.010199286000116],[18.022146030000073,40.02167389500006],[18.01579837300002,40.036200262000115],[18.005137566000087,40.04486725500003],[17.9783634770001,40.05166250200013],[17.9674585300001,40.05731842700011],[18.00294030000009,40.074448960000055],[18.010996941000144,40.09601471600017],[17.99724368600002,40.12042877800012],[17.9674585300001,40.146063544000086],[17.940684441000116,40.16303131700006],[17.92603600400011,40.17625560100002],[17.919606967000078,40.19074127800015],[17.919200066000087,40.20994700700002],[17.91700280000009,40.226874091000084],[17.911143425000148,40.240301825000174],[17.899668816000116,40.24909088700004],[17.912771030000073,40.24909088700004],[17.912771030000073,40.255316473],[17.863129102000073,40.28563060099999],[17.847666863000143,40.29002513200008],[17.512054884000094,40.30369700700011],[17.49390709700012,40.30744049700006],[17.44044030000009,40.33100006700009],[17.430430535000085,40.33161041900014],[17.409515821000127,40.330023505000106],[17.399424675000063,40.33100006700009],[17.392100457000083,40.33502838700015],[17.374685092000107,40.34857819200012],[17.36817467500009,40.35150788000014],[17.351247592000107,40.35480377800017],[17.29639733200011,40.379461981000176],[17.240000847000143,40.39533112200009],[17.212901238000143,40.40619538],[17.20020592500009,40.42039622600002],[17.223480665000096,40.42841217700014],[17.243011915000068,40.44139232000005],[17.24789472700013,40.45734284100014],[17.227549675000148,40.47443268400009],[17.24740644600007,40.480292059000035],[17.295746290000068,40.473211981000176],[17.31625410200013,40.481878973000065],[17.32325280000009,40.49848053600011],[17.304047071000127,40.499457098],[17.261729363000143,40.488714911],[17.26351972700013,40.491034247000144],[17.268565300000144,40.496161200000145],[17.24740644600007,40.50283437700004],[17.229014519000117,40.49689362200009],[17.210703972000147,40.48700592699999],[17.189952019000142,40.481878973000065],[17.181813998000052,40.48529694200008],[17.176442905000073,40.49315013200005],[17.171722852000073,40.50226471600014],[17.166188998000052,40.50918203300016],[17.15601647200009,40.51239655200011],[17.133474155000016,40.51264069200015],[17.124522332000083,40.51532623900012],[17.04957116000014,40.51911041900014],[16.97608483200014,40.49262116100009],[16.912119988000143,40.44521719000014],[16.863291863000143,40.39093659100003],[16.782725457000083,40.30158112200009],[16.76140384200002,40.26959870000009],[16.737559441000144,40.211004950000145],[16.73072350400011,40.200669664000046],[16.715993686000047,40.193589585],[16.679453972000086,40.146063544000086],[16.640065951000107,40.118760484000106],[16.62452233200011,40.10797760600009],[16.604746941000087,40.08445872600005],[16.596934441000087,40.046779690000065],[16.59937584700012,40.034125067],[16.613617384000122,39.99664948100015],[16.631602410000056,39.966213283000016],[16.621755405000044,39.95355866100014],[16.605479363000114,39.942938544000086],[16.589203321000067,39.91982656500015],[16.542246941000144,39.88540273600002],[16.508148634000122,39.83759186400009],[16.49170983200014,39.80548737200011],[16.489756707000083,39.77521393400012],[16.502126498000024,39.74705638200011],[16.528575066000116,39.72150299700006],[16.528575066000116,39.714667059000114],[16.515635613000114,39.68960195500004],[16.54590905000009,39.66087474200015],[16.59148196700005,39.636786200000145],[16.62484785200013,39.62531159100011],[16.74976647200012,39.62002187700013],[16.782481316000144,39.61163971600016],[16.798106316000116,39.60346100500006],[16.816091342000078,39.591050523000135],[16.830902540000125,39.57615794499999],[16.837168816000087,39.560451565],[16.84620201900009,39.55267975500011],[16.906016472000147,39.529730536000116],[16.9529728520001,39.49921295800008],[16.970876498000052,39.49494049700017],[16.995371941000087,39.492743231000176],[17.011485222000147,39.486151434000085],[17.023448113000086,39.47540924700009],[17.035817905000016,39.46076080900018],[17.05713951900009,39.44163646000011],[17.0885522800001,39.422593492000104],[17.124196811000076,39.409002997000144],[17.15870201900009,39.406195380000106],[17.122243686000104,39.338324286000116],[17.114919467000107,39.28278229400017],[17.114512566000116,39.26935455900018],[17.11768639400009,39.25600820500007],[17.12476647200012,39.24461497600011],[17.14210045700011,39.22231679900007],[17.145681186000104,39.210679429000045],[17.14039147200012,39.178900458000115],[17.122243686000104,39.12103913],[17.124522332000083,39.09088776200018],[17.147959832000083,39.05418528900016],[17.15186608200005,39.045884507],[17.15845787900014,39.04047272300015],[17.192556186000047,39.03107330900012],[17.206390821000127,39.02948639500009],[17.18685957100007,39.0190290390001],[17.176605665000125,39.01211172100001],[17.172373894000117,39.00519440300012],[17.171560092000107,38.966009833000086],[17.172373894000117,38.96051666900014],[17.13884524800008,38.93671295800005],[17.135020379000053,38.93260325700011],[17.12769616000014,38.928778387000094],[17.11890709700009,38.91966380400011],[17.104014519000145,38.899074611000074],[17.094981316000116,38.919134833000115],[17.070567254000082,38.92279694200009],[17.042246941000116,38.916245835],[17.021983269000117,38.90595123900009],[16.99634850400014,38.92951080900003],[16.981293165000125,38.937201239000146],[16.957286004000082,38.940090236000074],[16.93506920700014,38.93870677300002],[16.838552280000073,38.91819896000014],[16.727793816000116,38.87885163000006],[16.687754754000082,38.85586172100007],[16.679453972000086,38.84756094000009],[16.670746290000096,38.84064362200008],[16.610606316000116,38.81655508000007],[16.585622592000107,38.797837632],[16.57439212300011,38.78506094000015],[16.563731316000087,38.75674062700001],[16.55095462300002,38.74140045800006],[16.53882897200012,38.72333405200013],[16.53484134200005,38.699896552000055],[16.546885613000086,38.69318268400012],[16.549082879000053,38.68992747600007],[16.548513217000107,38.67206452],[16.558848504000107,38.59601471600011],[16.576996290000096,38.528550523000106],[16.577159050000148,38.502875067000055],[16.569590691000116,38.429510809000035],[16.561371290000125,38.416327216000084],[16.521983269000117,38.387152411000145],[16.508148634000122,38.37152741100006],[16.49756920700008,38.36928945500007],[16.467051629000135,38.34870026200003],[16.43506920700014,38.33999258000016],[16.339854363000086,38.30084870000011],[16.30632571700005,38.27708567900011],[16.16944420700011,38.1432152360001],[16.151866082000083,38.11082591400019],[16.12549889400009,38.00482819200012],[16.110850457000083,37.97361888200013],[16.10132897200009,37.96051666900017],[16.09001712300011,37.94920482],[16.077159050000088,37.939886786000145],[16.0631616550001,37.93268463700012],[16.015879754000135,37.924709377000156],[16.00098717500009,37.91901276200018],[15.942149285000111,37.93309153900013],[15.761485222000116,37.92523834800012],[15.734873894000087,37.93097565300012],[15.708262566000144,37.940985419000086],[15.684418165000066,37.953517971000096],[15.665782097000088,37.96686432500012],[15.645518425000146,37.98834870000003],[15.635101759000094,38.00910065300003],[15.63835696700002,38.02773672100004],[15.65845787900008,38.042547919000086],[15.632660352000128,38.07420482000008],[15.624034050000146,38.09210846600003],[15.627452019000145,38.107367255],[15.641612175000063,38.125921942],[15.647797071000127,38.14313385600012],[15.646494988000144,38.16209544500013],[15.637950066000114,38.185939846],[15.632823113000113,38.220282294000135],[15.650563998000107,38.241034247000144],[15.6842554050001,38.25311920800006],[15.78646894600004,38.278021552],[15.795664910000113,38.28554922100015],[15.79867597700013,38.29071686400006],[15.812836134000065,38.30060455900015],[15.81617272200009,38.306057033000016],[15.82976321700005,38.351019598],[15.904795769000147,38.47394440300015],[15.917816602000045,38.51679108300014],[15.916026238000057,38.55036041900017],[15.90007571700005,38.578273830000015],[15.87077884200005,38.6042341170001],[15.863536004000109,38.608221747000165],[15.849945509000063,38.61334870000009],[15.844004754000137,38.61790599200005],[15.835459832000112,38.62824127800015],[15.833669467000021,38.63377513200008],[15.835215691000059,38.63922760600009],[15.836599155000044,38.648993231000055],[15.844493035000113,38.66038646000011],[15.863129102000102,38.66828034100008],[15.904795769000147,38.679388739000025],[15.968028191000116,38.71259186400012],[16.002614780000044,38.72540924700014],[16.048838738000114,38.727728583000115],[16.120860222000147,38.720933335],[16.135996941000144,38.723822333000115],[16.152598504000107,38.730902411],[16.179209832000137,38.748277085000076],[16.20093834700012,38.77643463700015],[16.21509850400014,38.81415436400012],[16.22169030000012,38.856594143],[16.2200626960001,38.899074611000074],[16.214691602000126,38.91901276200015],[16.20460045700008,38.93406810100007],[16.189626498000052,38.94354889500009],[16.16895592500012,38.946844794000114],[16.154307488000114,38.95502350500011],[16.13965905000012,38.973781643000095],[16.08301842500012,39.075262762000094],[16.04200280000012,39.31061432500003],[16.03402716100004,39.34524176800012],[15.995396030000052,39.438768236000115],[15.958075525000083,39.477563612],[15.93311608200011,39.51365794500005],[15.904795769000147,39.53595612200017],[15.876231316000087,39.551459052],[15.867523634000095,39.563910223],[15.859716355000074,39.588764460000064],[15.850271030000073,39.614732164000046],[15.836599155000044,39.65265534100017],[15.815684441000085,39.678900458],[15.806407097000116,39.69550202000006],[15.788747592000107,39.796616929000045],[15.788747592000107,39.79035065300011],[15.78394616000014,39.810003973000065],[15.77881920700011,39.82013580900012],[15.771332227000043,39.824530341000084],[15.769704623000024,39.83014557500009],[15.781911655000101,39.868597723],[15.77442467500012,39.89109935099999],[15.741547071000127,39.92959219000009],[15.734141472000145,39.943752346],[15.728037957000083,39.964178778000175],[15.71314537900011,39.981024481000176],[15.678884311000045,40.00885651200004],[15.651621941000146,40.043646552],[15.630381707000083,40.05768463700004],[15.624685092000078,40.06488678600009],[15.624278191000087,40.0777855490001],[15.610199415000123,40.07318756700015],[15.534922722000145,40.0777855490001],[15.513127170000132,40.067680206000105],[15.495311871000126,40.04671893700011],[15.459808790000038,40.02936432500009],[15.429601880000064,39.99979266000015],[15.410099591000062,39.99396986000012],[15.360943483000115,39.99889057500003],[15.343159872000056,40.004148652000154],[15.314300977000128,40.033758856000176],[15.302744988000086,40.036200262000115],[15.293304884000094,40.032416083],[15.283050977000045,40.029852606000176],[15.272227410000141,40.02875397300012],[15.26124108200011,40.02936432500009],[15.26124108200011,40.036200262000115],[15.279144727000073,40.047674872000144],[15.263438347000088,40.07371653900013],[15.23389733200011,40.10000234600015],[15.209646030000046,40.11188385600009],[15.189952019000087,40.1191266950001],[15.12720787900011,40.16962311400012],[15.11280358200014,40.17479075700014],[15.09587649800008,40.173081773000135],[15.065684441000146,40.166571356000034],[15.047211134000122,40.16893138199999],[15.034922722000088,40.175360419000114],[15.022803824000107,40.19562686700009],[15.003122129000104,40.21025857000002],[14.975904024000045,40.219313312000125],[14.966319207000138,40.22455475500011],[14.957087508000143,40.231549930000156],[14.93813785900005,40.227839322000094],[14.92212975400008,40.23802317900011],[14.91114342500012,40.241644598000065],[14.906911655000101,40.25861237200005],[14.93189537900011,40.285549221],[14.939138217000048,40.307074286000116],[14.932383660000113,40.32428620000006],[14.932383660000113,40.33372630400005],[14.942149285000141,40.33783600500003],[14.953949415000123,40.33991120000003],[14.96436608200011,40.345160223],[14.97291100400011,40.351996161000116],[14.994489870000052,40.35843381300005],[15.000432928000095,40.36882818300016],[14.998266587000073,40.39755866100002],[14.975922071000127,40.431463934000035],[14.88884524800008,40.57306549700017],[14.861501498000107,40.60716380400007],[14.83545983200014,40.63263580900018],[14.809743686000076,40.652980861000074],[14.781993035000113,40.66986725500006],[14.75220787900011,40.67670319200009],[14.719981316000144,40.66681549700017],[14.690440300000091,40.649115302000084],[14.678070509000063,40.64663320500013],[14.625743035000085,40.649074611000074],[14.613291863000141,40.645900783000016],[14.571299675000146,40.617743231000034],[14.544200066000144,40.613592841000084],[14.516368035000085,40.61985911700005],[14.48658287900008,40.63263580900018],[14.4713647800001,40.624660549000126],[14.42204837300011,40.615545966000056],[14.401540561000047,40.60211823100006],[14.355804884000124,40.58364492400004],[14.342621290000096,40.57062409100003],[14.329844597000147,40.584458726000136],[14.327972852000071,40.605414130000085],[14.33773847700013,40.62441640800007],[14.359629754000139,40.63263580900018],[14.379730665000096,40.633856512000094],[14.387380405000044,40.63694896],[14.398213357000087,40.64384157400018],[14.404798645000085,40.65603259200016],[14.44421081100009,40.68598713600015],[14.476369627000052,40.695102127000084],[14.479746941000146,40.711493231000034],[14.47413170700014,40.729681708000115],[14.460622592000078,40.744208075000145],[14.442637566000142,40.75507233300014],[14.421290079000073,40.75093008100008],[14.405402903000068,40.75688689499999],[14.39443265300011,40.761566239],[14.382554016000114,40.772265565000126],[14.366608709000102,40.78017824600014],[14.348887566000142,40.79686107],[14.312347852000102,40.82811107000005],[14.294200066000087,40.83877187700007],[14.275726759000065,40.84003327000009],[14.248383009000094,40.83771393400012],[14.22364342500012,40.83136627800008],[14.212738477000128,40.820746161000145],[14.203461134000094,40.80121491100006],[14.182202959000051,40.80091803100011],[14.165596632000131,40.81575233700011],[14.135233189000076,40.81855425300016],[14.11150149800008,40.829535223000036],[14.095957879000082,40.833807684000035],[14.082530144000089,40.831284898000106],[14.076182488000141,40.822211005000106],[14.077403191000059,40.81037018400015],[14.081228061000076,40.79710521000011],[14.082530144000089,40.78351471600016],[14.075281919000048,40.786277590000154],[14.04769740100005,40.78958927300006],[14.041151478000046,40.79648412900015],[14.052256707000083,40.837591864000146],[14.044464903000119,40.87420513200014],[14.021343774000115,40.92182893600015],[13.965342644000087,40.996405341000084],[13.930186394000144,41.01414622599999],[13.917979363000143,41.02366771],[13.914561394000145,41.033148505],[13.912771030000073,41.05442942900008],[13.910655144000145,41.064642645],[13.884318292000073,41.10479984200004],[13.85172525100009,41.14731569400011],[13.790490880000078,41.20586402900004],[13.721853061000047,41.25238678600006],[13.70850670700014,41.256415106000034],[13.67872155000012,41.250555731000176],[13.663340691000087,41.250677802000055],[13.656586134000063,41.25958893400009],[13.594411655000043,41.253119208],[13.563649936000076,41.237982489],[13.575450066000114,41.208075262000115],[13.54395592500012,41.20661041900014],[13.534434441000116,41.208075262000115],[13.525238477000045,41.21539948100011],[13.519541863000086,41.22516510600015],[13.514414910000141,41.229681708000115],[13.507090691000142,41.221747137000065],[13.499685092000078,41.221747137000065],[13.480235222000147,41.23916250200001],[13.324392123000052,41.29482656500012],[13.285817905000073,41.29572174700002],[13.204844597000088,41.28375885600009],[13.187022332000112,41.27802155200011],[13.151215040000096,41.260199286000145],[13.114512566000114,41.25088125200001],[13.090505405000073,41.22654857000013],[13.06820722700013,41.221747137000065],[13.044606967000078,41.22752513200011],[13.036794467000078,41.24042389500012],[13.033457879000053,41.25690338700012],[13.02369225400011,41.27358633000016],[13.011973504000139,41.28652578300016],[12.992686394000089,41.315619208000115],[12.979502800000148,41.33100006700006],[12.923838738000114,41.37978750200007],[12.89356530000012,41.399318752000156],[12.862152540000096,41.413519598000065],[12.841563347000061,41.418402411000145],[12.762950066000142,41.42137278900004],[12.748545769000087,41.423732815],[12.678558790000096,41.45795319200009],[12.653981967000078,41.465643622000115],[12.642425977000073,41.458197333000115],[12.635264519000115,41.447495835000026],[12.619395379000082,41.459133205000015],[12.545583530000071,41.54413483300014],[12.448008660000141,41.630764065],[12.342784050000091,41.70229726800012],[12.32715905000012,41.71137116100014],[12.300629102000071,41.71743398600013],[12.285004102000073,41.72719961100007],[12.276621941000116,41.72943756700006],[12.246918165000096,41.73371002800015],[12.239024285000113,41.736273505000085],[12.223480665000094,41.75067780200014],[12.215179884000122,41.76813385600009],[12.211761915000125,41.787543036000024],[12.211192254000139,41.80792877800009],[12.206228061000104,41.82733795799999],[12.194590691000087,41.84735748900006],[12.170176629000139,41.87958405200011],[12.147471550000091,41.903469143000095],[12.049978061000076,41.96015045800005],[12.038828972000147,41.96515534100011],[12.029795769000117,41.97284577000011],[12.026133660000085,41.98578522300012],[12.020355665000125,41.99306875200013],[11.992035352000073,41.99628327],[11.982188347000147,41.999741929000024],[11.96900475400011,42.011419989],[11.952647332000083,42.02228424700009],[11.934580925000148,42.031480210000055],[11.916840040000068,42.03790924700017],[11.83969160200013,42.03644440300012],[11.82748457100007,42.03416575700014],[11.822113477000102,42.04677969000004],[11.809418165000125,42.06635163],[11.793630405000101,42.08445872599999],[11.779795769000087,42.092515367000125],[11.771983269000089,42.106268622000144],[11.750173373000052,42.12791575700014],[11.745616082000112,42.136623440000115],[11.742930535000113,42.15228913],[11.736175977000073,42.16889069200006],[11.682139519000089,42.252142645],[11.658213738000114,42.27936432500009],[11.539073113000086,42.348863023000106],[11.48926842500012,42.35936107],[11.420664910000113,42.386623440000065],[11.396169467000078,42.39297109600001],[11.396169467000078,42.40037669499999],[11.38689212300011,42.40428294499999],[11.376638217000078,42.406887111000074],[11.365733269000117,42.407904364000146],[11.354665561000076,42.407212632000025],[11.362071160000141,42.40037669499999],[11.333018425000091,42.40058014500011],[11.259043816000116,42.42084381700015],[11.245616082000112,42.42230866100003],[11.227386915000125,42.422186591000056],[11.211273634000063,42.418890692],[11.204356316000144,42.41095612200003],[11.200938347000147,42.39545319200011],[11.18628991000014,42.37929922100007],[11.18384850400011,42.36627838700018],[11.174652540000123,42.36933014500006],[11.164724155000044,42.36933014500006],[11.157399936000047,42.367743231000034],[11.155935092000078,42.36627838700018],[11.147797071000042,42.371405341000084],[11.134532097000118,42.38418203300013],[11.106618686000076,42.3912621110001],[11.094493035000085,42.402736721000124],[11.086761915000066,42.418361721000124],[11.08694107100007,42.429456508],[11.099131707000112,42.442857164000046],[11.113021206000042,42.4463580780001],[11.14181552700012,42.43879721600013],[11.164190816000142,42.43982808100016],[11.17969176900007,42.45649774900006],[11.18844752800004,42.480267455],[11.188975457000112,42.50470612200006],[11.186859571000099,42.52081940300012],[11.166026238000114,42.546210028000026],[11.15845787900008,42.564032294000114],[11.148610873000052,42.56317780200011],[11.137217644000087,42.558905341000084],[11.12867272200009,42.558050848],[11.115977410000113,42.57196686400009],[11.10726972700013,42.59076569200012],[11.097422722000118,42.606878973],[11.080902540000125,42.61269765800013],[11.07781009200005,42.63222890800013],[11.053477410000085,42.64704010600009],[11.00570722700013,42.667914130000085],[11.00025475400008,42.67987702],[10.995616082000083,42.696030992000075],[10.990000847000147,42.71027252800015],[10.981211785000113,42.71629466400016],[10.97234134200005,42.72003815300011],[10.94361412900011,42.74298737200009],[10.89087975400011,42.763902085000055],[10.731293165000125,42.804429429],[10.755381707000055,42.81915924700017],[10.764903191000144,42.83527252800003],[10.766368035000113,42.854193427000055],[10.765635613000086,42.87710195500016],[10.768728061000076,42.883937893000066],[10.774587436000102,42.888251044000086],[10.777679884000094,42.89472077000009],[10.772959832000083,42.908148505000085],[10.763519727000073,42.91828034100003],[10.750743035000141,42.9252790390001],[10.68140709700009,42.94904205900012],[10.632497592000107,42.95848216400013],[10.583262566000087,42.95970286700005],[10.539073113000114,42.94912344],[10.543467644000117,42.93878815300009],[10.546560092000078,42.934759833000115],[10.518565300000148,42.9252790390001],[10.499522332000083,42.940497137000094],[10.477549675000148,42.99005768400012],[10.502696160000141,43.00556061400011],[10.517100457000112,43.02391185099999],[10.539073113000114,43.07941315300003],[10.535655144000117,43.09137604400017],[10.535655144000117,43.11261627800015],[10.539317254000082,43.13418203300007],[10.546560092000078,43.14712148600007],[10.538340691000087,43.16425202],[10.534434441000085,43.18528880400014],[10.53288821700005,43.22622304900007],[10.52816816500004,43.24677155200011],[10.516937696000127,43.26679108300008],[10.43702233200014,43.388576565],[10.373383009000065,43.45319245000003],[10.359141472000147,43.465277411000145],[10.326345248000052,43.47687409100014],[10.317230665000068,43.49262116100011],[10.294769727000071,43.56854889500015],[10.264008009000092,43.809393622000115],[10.25163821700005,43.846625067],[10.210134311000047,43.920233466000134],[10.180674675000148,43.95526764500014],[10.13648522200009,43.97870514500011],[10.105804884000092,44.01675039300003],[10.090586785000113,44.025376695000105],[10.072032097000118,44.029527085000055],[10.03532962300011,44.04783763200011],[10.014821811000047,44.05206940300006],[9.998545769000117,44.058050848000065],[9.988536004000139,44.05975983300006],[9.984141472000147,44.055487372000144],[9.980723504000139,44.04987213700015],[9.972666863000114,44.045721747000115],[9.962738477000102,44.04466380400005],[9.953623894000117,44.048651434000035],[9.937836134000063,44.060370184000035],[9.904307488000114,44.07990143400009],[9.887950066000116,44.09300364800008],[9.8768009770001,44.08783600500006],[9.84473717500012,44.10862864800005],[9.826426629000139,44.10724518400017],[9.833262566000142,44.099839585],[9.828623894000145,44.09813060099999],[9.823985222000118,44.09511953300007],[9.819590691000116,44.09300364800008],[9.82447350400011,44.08490631700015],[9.830577019000087,44.07884349200005],[9.838145379000139,44.07477448100009],[9.847504102000073,44.07249583500011],[9.847504102000073,44.06631094000015],[9.841644727000128,44.06338125200013],[9.838877800000148,44.060370184000035],[9.833262566000142,44.05206940300006],[9.846364780000044,44.04629140800007],[9.842539910000113,44.04116445500007],[9.832286004000082,44.04230377800009],[9.826426629000139,44.055487372000144],[9.819834832000083,44.06338125200013],[9.771820509000094,44.07941315300012],[9.72087649800008,44.11347077000012],[9.709727410000141,44.11774323100006],[9.68262780000012,44.13654205900009],[9.672536655000071,44.14081452],[9.643239780000044,44.14232005400005],[9.63103274800008,44.144598700000024],[9.621104363000143,44.14826080900018],[9.586192254000139,44.17772044500008],[9.579925977000102,44.17894114799999],[9.573008660000085,44.19159577000006],[9.556488477000102,44.20014069200009],[9.511241082000083,44.215236721000096],[9.49903405000012,44.221828518000066],[9.48975670700014,44.23090241100006],[9.484385613000114,44.24384186400006],[9.472504102000045,44.239813544000086],[9.453868035000056,44.23769765800007],[9.436778191000116,44.23948802300008],[9.429209832000083,44.247259833000086],[9.422373894000145,44.25678131700006],[9.374522332000112,44.271795966000084],[9.367686394000117,44.294419664000074],[9.262705925000091,44.33641185100005],[9.23064212300011,44.35370514500012],[9.221039259000065,44.34406159100017],[9.213715040000123,44.33344147300012],[9.20980879000004,44.320868231000034],[9.210703972000147,44.30532461100013],[9.165049675000091,44.31830475500011],[9.146657748000052,44.32855866100006],[9.148610873000107,44.34003327],[9.130056186000104,44.36334870000012],[9.102061394000089,44.37396881700015],[9.001231316000114,44.38727448100015],[8.95289147200009,44.399807033000066],[8.923675977000073,44.41156647300015],[8.914561394000089,44.408921617000075],[8.868418816000144,44.40973541900017],[8.845388217000078,44.413478908000016],[8.837738477000045,44.41718170800006],[8.826996290000125,44.42845286700005],[8.762380405000101,44.43211497599999],[8.737152540000125,44.42877838700015],[8.72478274800008,44.42397695500007],[8.695811394000089,44.40672435100008],[8.685313347000118,44.39809804900007],[8.678558790000096,44.39468008000016],[8.670909050000148,44.39472077000015],[8.662771030000044,44.395575262000065],[8.655121290000125,44.39468008000016],[8.593760613000114,44.36273834800015],[8.57667076900006,44.36054108300006],[8.564789259000122,44.35716380400014],[8.540293816000085,44.34003327],[8.466075066000144,44.304266669000086],[8.444509311000045,44.283880927],[8.449717644000145,44.264349677000105],[8.439463738000114,44.253159898000106],[8.436534050000091,44.2475446640001],[8.435394727000071,44.24042389500006],[8.432383660000141,44.23802317900011],[8.417246941000144,44.230658270000035],[8.411875847000118,44.22703685100005],[8.406504754000139,44.21503327000012],[8.408539259000094,44.20408763200005],[8.408213738000141,44.193508205],[8.394541863000114,44.18235911699999],[8.369395379000139,44.17352936400011],[8.313487175000091,44.16046784100014],[8.28467858200014,44.14826080900018],[8.269541863000143,44.13873932500009],[8.256521030000073,44.12836334800009],[8.233164910000056,44.10358307500003],[8.229991082000112,44.0963402360001],[8.231211785000113,44.08030833500011],[8.229991082000112,44.07249583500011],[8.223806186000047,44.05719635600014],[8.216319207000055,44.04523346600003],[8.169118686000076,44.006659247000144],[8.152679884000094,43.98322174700017],[8.167979363000143,43.96263255400005],[8.167979363000143,43.956488348000065],[8.144704623000052,43.952582098000065],[8.115244988000141,43.92767975500011],[8.08920332100007,43.91986725500014],[8.08155358200014,43.91522858300011],[8.075450066000142,43.9096540390001],[8.073008660000113,43.90460846600017],[8.06771894600007,43.896673895],[8.055674675000148,43.89207591400016],[8.031423373000052,43.88751862200002],[7.959727410000141,43.85285065300015],[7.785817905000101,43.821966864],[7.736582879000082,43.79824453300007],[7.694997592000107,43.791205145000035],[7.572032097000147,43.791327216000084],[7.544118686000046,43.78449127800015],[7.531097852000129,43.78449127800015],[7.523203972000146,43.7890485700001],[7.512868686000076,43.792141018],[7.502289259000094,43.79222239799999],[7.482726278000086,43.84021921900013],[7.477868693000062,43.8655148320001],[7.4934749760001,43.88623708100015],[7.536779826000072,43.920782776000024],[7.556933634000131,43.94408884700006],[7.608610066000067,43.97561147100011],[7.630934285000138,43.993543193],[7.63868575000015,44.005067037000046],[7.646953979000101,44.02749460900013],[7.653361857000049,44.03969024700005],[7.664317261000121,44.04857859300013],[7.67878666200005,44.05658844100013],[7.689948771000076,44.067337138000035],[7.691912475000095,44.08464874300012],[7.687942587000093,44.09079945700013],[7.676202840000143,44.10898834300015],[7.654085327000131,44.12495636],[7.641889689000037,44.143559876000054],[7.655635620000055,44.176064352000175],[7.624733114000064,44.18009511300009],[7.583598674000086,44.16071645100011],[7.554763224000054,44.159062806000165],[7.380820353000074,44.12294098000014],[7.34061608900015,44.12366444900006],[7.331004272000143,44.125266419000084],[7.321599161000079,44.13188100200007],[7.316224813000133,44.140200908000125],[7.309300171000132,44.14748728400003],[7.296174357000097,44.15115631100012],[7.270129435000115,44.15430857400015],[7.251319214000091,44.16004465700003],[7.144969116000112,44.20722524000014],[7.104868205000116,44.21776723300003],[7.046060425000121,44.24029815700013],[7.033451375000112,44.24293365500015],[7.020015503000138,44.24210683200011],[7.008026570000084,44.23921295200013],[6.996140991000061,44.23781768800016],[6.982808471000055,44.24174509800004],[6.973403361000095,44.249444885000045],[6.968855835000056,44.2581782020001],[6.965548543000067,44.26753163600013],[6.959244019000039,44.27735015900011],[6.950045613000043,44.285101624000035],[6.930201864000138,44.29538523400011],[6.921210164000115,44.302154846000136],[6.915629110000083,44.309699605],[6.903846883000084,44.330008444000114],[6.895992065000143,44.33982696599998],[6.873977905000061,44.35837880500013],[6.869843791000051,44.362926331000054],[6.866123088000052,44.37212473600006],[6.866329793000091,44.377189026000124],[6.868810262000068,44.38318349200007],[6.877181844000035,44.41439605700005],[6.88420983900005,44.42302602199999],[6.917799519000084,44.43630686400009],[6.891651245000077,44.451964824000136],[6.861265503000111,44.47490916],[6.838837931000113,44.50291778600008],[6.835737345000069,44.53402699800013],[6.84638269000007,44.547462871],[6.897335652000038,44.5754198210001],[6.931648804000133,44.61794952500004],[6.945601441000121,44.62544260700018],[6.934335978000149,44.64668162000005],[6.941467326000094,44.66699045899999],[6.959864135000116,44.683165182000074],[6.982808471000055,44.692156881000116],[7.001205282000058,44.69226023400013],[7.037275432000058,44.684612122000075],[7.055155476000095,44.68487050400013],[7.049367717000109,44.697892965000065],[7.018981974000069,44.73887237600012],[7.015157918000114,44.747398987000125],[7.009783569000149,44.77210032200004],[6.998414754000095,44.79375274700011],[6.999138224000092,44.795044658000066],[7.004099162000045,44.81080596900016],[7.00595951400004,44.811529440000136],[7.005856160000093,44.816335348000145],[7.006786336000062,44.81902252200008],[7.007096395000133,44.8220714320001],[7.004925985000057,44.82796254500003],[7.000791870000114,44.83297515900007],[6.982808471000055,44.846979472000086],[6.932682332000127,44.86165557900007],[6.915319051000097,44.862689108000055],[6.866019735000093,44.855661113000124],[6.847106161000085,44.859071758000155],[6.778169800000057,44.88764882500011],[6.745406941000056,44.90780263300012],[6.727940307000097,44.928731588000105],[6.729904012000134,44.98469716400011],[6.723496134000072,45.01337758400008],[6.697244507000049,45.02691681000006],[6.662207885000043,45.029242249],[6.651665894000075,45.035650126000135],[6.639676961000106,45.05037791000014],[6.63698978700009,45.059421285],[6.638126669000087,45.06743113200018],[6.636576375000061,45.07445912700008],[6.620298299000126,45.0844326790001],[6.602728312000067,45.103449606000154],[6.614613892000108,45.114766745000125],[6.629385185000046,45.123545113000105],[6.632700643000106,45.125515442000065],[6.66737552900014,45.13962310900008],[6.676263875000131,45.14075999],[6.694350626000073,45.140294902000065],[6.702205445000089,45.14122507800012],[6.710887085000138,45.14473907500008],[6.728870483000037,45.15460927300016],[6.736415242000106,45.15734812500001],[6.77145186300001,45.15316233400007],[6.808142131000096,45.13910634400007],[6.84410892700015,45.130114645],[6.876665079000104,45.14122507800012],[6.878628784000028,45.14742625000012],[6.872841023000149,45.15202545200016],[6.868190144000096,45.15745147700012],[6.873461141000121,45.16592641200005],[6.881315958000072,45.16840688100002],[6.904673706000096,45.168613587000074],[6.913768758000089,45.17016388000009],[6.928444865000074,45.179568990000135],[6.945808146000076,45.20106638599999],[6.958727254000109,45.20979970300006],[6.99448734500001,45.221323548],[7.029730672000084,45.22819651300016],[7.037688843000068,45.22576772100011],[7.05019453900013,45.21501902300018],[7.055465536000071,45.213675436000116],[7.062183471000111,45.21853302100014],[7.081200399000068,45.24307932500001],[7.108382202000143,45.259202373000086],[7.108382202000143,45.27491200800016],[7.097633504000044,45.29496246400002],[7.092569213000075,45.323952942000076],[7.097736857000058,45.329844056000084],[7.130086304000145,45.35707753500015],[7.150756877000076,45.38322581000007],[7.159645223000098,45.398470358000125],[7.160678752000081,45.41092437800002],[7.152927286000079,45.41511016900013],[7.110139201000038,45.428287659000134],[7.096806681000118,45.435419007000164],[7.088745158000108,45.446632793],[7.08182051500006,45.4590868130001],[7.075368543000081,45.466285856000056],[7.072001993000072,45.47004221700017],[7.028490437000045,45.493141581000046],[6.982808471000055,45.51112498000013],[6.975263712000099,45.52564605800008],[6.96978601100011,45.56698720300001],[6.965858601000122,45.57442860900012],[6.954903198000067,45.586210836000035],[6.952939494000134,45.59427236000012],[6.95562666800015,45.6025922650001],[6.967098836000076,45.620162252000156],[6.969475952000039,45.625846659],[6.963378133000077,45.64072947200005],[6.951079142000111,45.646775615000095],[6.918626343000113,45.65256337500007],[6.905293823000079,45.6596947230001],[6.882556193000112,45.675507711000094],[6.869223673000079,45.67902170800015],[6.843075398000082,45.68274241200005],[6.816100301000063,45.69685007700009],[6.795946492000069,45.718140768000076],[6.784681030000115,45.759585266000144],[6.781993856000071,45.7774653120001],[6.782717325000078,45.79529368100005],[6.788091675000118,45.81172678700001],[6.800804077000095,45.826454570000024],[6.816203654000077,45.83291412400017],[6.84335555219468,45.838642859960785],[6.851996927951859,45.836223274748775],[6.85856437352723,45.83345803450648],[6.864440509042112,45.82689058893102],[6.870662299587281,45.82827320905217],[6.871699264678142,45.832766724445904],[6.872736229769003,45.83967982505165],[6.873461141000121,45.844799704000096],[6.880385782000103,45.8455231730001],[6.905087117000107,45.84536814400015],[6.926377808000098,45.849760641000145],[6.949012085000049,45.85782216400004],[6.969165893000138,45.86975942],[6.982808471000055,45.88577911400013],[6.989112997000062,45.899266663],[6.997174519000055,45.91130727200005],[7.007716512000115,45.920505677000065],[7.022082560000115,45.92525990900005],[7.066937703000093,45.89022328800003],[7.090192097000113,45.880508118000094],[7.120887899000138,45.87611562100001],[7.153547404000051,45.87652903300001],[7.183726440000044,45.880456442000174],[7.245428100000083,45.89812978200008],[7.273540079000043,45.910273743000076],[7.286665893000104,45.913426005000034],[7.361803426000108,45.90784495100003],[7.393842814000037,45.91569976800015],[7.452960652000086,45.94587880500016],[7.482726278000086,45.95487050399999],[7.503706909000073,45.956730855],[7.514662312000041,45.96670440700002],[7.524377482000091,45.978073223000095],[7.541120646000137,45.98411936500004],[7.64302657100012,45.96634267200003],[7.6587362060001,45.960038147000105],[7.673722371000082,45.95032297800016],[7.692532593000068,45.93120269800006],[7.693979533000061,45.92867055300009],[7.706278523,45.92572499700016],[7.714650105000088,45.92712026000005],[7.72219486500012,45.92960072800004],[7.732013387000108,45.93037587500005],[7.780072469000061,45.91812856100002],[7.807564331000037,45.91849029600003],[7.825444376000093,45.914666239000084],[7.831232137000142,45.91445953400002],[7.843737833000147,45.91921376600011],[7.84611494900011,45.92257273300011],[7.845288127000089,45.92779205300006],[7.848388712000116,45.93807566300013],[7.849620116000039,45.939712062000076],[7.870201292731367,45.940369630770256],[7.872917431422024,45.95938260160507],[7.8837819861848,45.97386867462201],[7.898204794000065,45.981948954000146],[7.969104858000036,45.993111064000104],[7.978716674000054,45.99517812100005],[7.985848022000084,45.99931223599999],[7.998353719000079,46.010629375000136],[7.999077189000076,46.01279978400005],[8.008792358000107,46.02768259700018],[8.010652710000102,46.02969797800012],[8.015923706000137,46.05817169200016],[8.016027059000066,46.06938547800002],[8.018197469000143,46.08085764600004],[8.025328817000087,46.09114125600003],[8.035354044000115,46.09651560499999],[8.056024617000048,46.098065898000115],[8.066876668000077,46.100598043],[8.110594930000076,46.126953023000155],[8.132299032000077,46.15935414700005],[8.129508504000114,46.19604441300014],[8.099949585000076,46.2356285610001],[8.076591837000137,46.24973622600011],[8.073077840000082,46.25361195900016],[8.07731530700002,46.262035218000065],[8.087340535000067,46.27180206300001],[8.106874227000047,46.28554799500012],[8.128474975000131,46.29247263600003],[8.171883178000115,46.29919057300005],[8.192553752000038,46.30916412400016],[8.241749715000111,46.35412262000007],[8.270068400000099,46.36404449500016],[8.28154056800011,46.37011647500013],[8.291462443000114,46.378358866000056],[8.297456909000033,46.38750559600005],[8.297043497000116,46.39763417600001],[8.290428914000131,46.40112233500006],[8.286604859000079,46.40535980300011],[8.294976441000074,46.418046366000155],[8.316267130000142,46.43365264900008],[8.343448934000037,46.44388458300007],[8.385906925000114,46.450206018000145],[8.399156128000072,46.45217865000002],[8.427888224000071,46.44869049099999],[8.441634155000115,46.43494456000003],[8.445768270000144,46.41236195900011],[8.446285034000084,46.382182923000116],[8.442874389000053,46.35337331200016],[8.426647990000049,46.301567688000105],[8.423237345000103,46.275832825000016],[8.427164754000074,46.25144154900009],[8.43812015800006,46.2353701780001],[8.456516968000074,46.22482818700014],[8.482665242000053,46.21754180900017],[8.510260457000072,46.20787831700015],[8.538682495000074,46.187621155000144],[8.601831095000135,46.12281890900012],[8.611546264000083,46.11935658800009],[8.630873250000121,46.114705709000035],[8.677485392000108,46.09579213500008],[8.695055379000081,46.09517201800013],[8.702186727000111,46.09796254500015],[8.717689656000118,46.10752268500009],[8.723890828000094,46.10953806600013],[8.728983368000115,46.108233103000074],[8.732159057000047,46.107419332000134],[8.739497111000048,46.098065898000115],[8.747145223000132,46.094448548000045],[8.763164917000067,46.092898255000094],[8.793860717000115,46.09341501900006],[8.8089502360001,46.089745993000136],[8.834375041000044,46.06638824499999],[8.819595581000101,46.042927145000036],[8.790966838000116,46.018690898000145],[8.773396850000069,45.9905789190001],[8.769572794000112,45.9857730100001],[8.767919149000079,45.98308583600006],[8.785075724000137,45.98231069000015],[8.800371948000077,45.97853831000013],[8.857732788000078,45.957092591],[8.864450724000108,45.953423564],[8.87096195400008,45.94706736300016],[8.880780476000039,45.931099345000135],[8.89814375800006,45.90955027299999],[8.906515340000112,45.89647613500013],[8.91209639400006,45.88340199800008],[8.9137500410001,45.86609039299999],[8.909719279000086,45.853688050000116],[8.903724812000064,45.841802470000076],[8.900004109000065,45.82640289300009],[8.93958825700011,45.834826152000076],[8.972351115,45.82464589500002],[9.002426798000073,45.82071848600004],[9.034362834000149,45.848106995000094],[9.059270874000049,45.88195505800009],[9.063094930000148,45.898956604000105],[9.051726115000093,45.915544739000104],[9.042321004000115,45.91973053000005],[9.0205135490001,45.92277944000007],[9.010798380000068,45.92665517200013],[9.001703329000094,45.93606028300009],[8.993435099000124,45.95425038700013],[8.982686401000109,45.961846822],[8.980515991000116,45.96437896800008],[8.979792521000121,45.96691111300008],[8.980515991000116,45.96949493400008],[8.982686401000109,45.97197540300006],[9.015552612000135,45.993111064000104],[8.997775919000105,46.027940979000064],[9.002116740000105,46.039309795000136],[9.027748250000059,46.05310740200009],[9.049659057000014,46.0579133100001],[9.059167521000091,46.06178904300005],[9.067125692000076,46.071142477000095],[9.070329631000048,46.08344146700013],[9.06815922000004,46.10597239200013],[9.072086629000095,46.118891500000146],[9.090586792000124,46.138166809000026],[9.163243856000094,46.172273255000064],[9.163788025000088,46.17298926700006],[9.171098673000103,46.18260854099999],[9.17574955200007,46.19413238500003],[9.181330607000092,46.20405426000009],[9.19218265800015,46.20963531500003],[9.2041715900001,46.21356272399999],[9.215747111000042,46.22105580700012],[9.224842163000117,46.231184387000084],[9.239724975000058,46.266996155000115],[9.2689738360001,46.309370830000105],[9.275175008000105,46.33138499000002],[9.273831420000135,46.34425242100009],[9.260395548000076,46.37972829200014],[9.260292195000147,46.39401682600011],[9.262876017000051,46.40662587500004],[9.26091231300012,46.416651103000056],[9.247579794000103,46.4230331420001],[9.237967977000096,46.43654653000008],[9.245822794000105,46.46104115800013],[9.263186076000123,46.485122376000064],[9.282306355000115,46.49736969100008],[9.330985555000069,46.50150380500013],[9.350829305000046,46.49786061600004],[9.35155277500013,46.485484111000076],[9.377080933000087,46.4686892700001],[9.384625691000025,46.46641550800008],[9.395477742000082,46.46941274000001],[9.400335327000107,46.47540720700012],[9.403849324000134,46.48251271600015],[9.41067061400011,46.488894756000015],[9.426793660000099,46.49711130800013],[9.434648478000042,46.49832570400015],[9.437852417000101,46.492047018000065],[9.443846883000106,46.396135559000086],[9.442399943000112,46.380891012000134],[9.444363648000149,46.37528411900003],[9.451598348000118,46.370374858],[9.47371586100013,46.36187408500008],[9.482604207000065,46.356809794000114],[9.502551310000086,46.32073964500002],[9.51526371300011,46.30859568300012],[9.536451050000096,46.298622132],[9.559705444000087,46.29273101799999],[9.674323771000047,46.29180084200006],[9.693133992000071,46.29707183900008],[9.708430217000114,46.31174794600015],[9.708843628000125,46.3196286010001],[9.707293335000088,46.330971579],[9.709257039000136,46.34239207000008],[9.72010909000008,46.35089284300001],[9.730857788000092,46.35071197500015],[9.755249064000026,46.34053171800009],[9.768064819000102,46.33861969000015],[9.78883874500005,46.34329640800006],[9.85539799000014,46.36696421300017],[9.899012899000098,46.37215769500007],[9.918443237000076,46.371150004000114],[9.939010457000052,46.36745514000002],[9.964021851000068,46.356086325000106],[9.970636434000141,46.339808249],[9.971049846000057,46.320016175000106],[9.977561076000143,46.29810536700016],[9.99223718200011,46.28435943600011],[10.031717977000142,46.26007151300003],[10.041846557000099,46.24306996700001],[10.04267338000011,46.220487366000086],[10.075746297000109,46.220022278000144],[10.11791426600007,46.23113271100006],[10.145819539000057,46.24332834900018],[10.15894535300012,46.26244862900007],[10.146129598000128,46.280276998000105],[10.104891805000136,46.309370830000105],[10.095796753000059,46.320532939000046],[10.091765991000074,46.32895619800014],[10.092386108000142,46.33810292600013],[10.097450398000118,46.351642151000085],[10.104995158000065,46.36135732100014],[10.125975789000051,46.37437978200008],[10.133210490000124,46.381097717000024],[10.14075524900008,46.40290517200005],[10.133417195000078,46.41401560500004],[10.11615726700009,46.41882151400016],[10.071405477000042,46.424815980000076],[10.04205326300007,46.43272247400012],[10.026343627000102,46.44626169900012],[10.04401696800008,46.466983948000134],[10.03533532700004,46.471066386000146],[10.03047774300012,46.47667327900008],[10.028100627000072,46.48393381800007],[10.026860392000117,46.49318390000015],[10.031201212000099,46.50382924500015],[10.03140791900006,46.525791728000044],[10.032751506000125,46.53297475200016],[10.041329793000074,46.54186309800009],[10.062930542000117,46.556745911000135],[10.071198771000068,46.564394023000105],[10.083497762000121,46.59700185100017],[10.087838582000103,46.604391582000076],[10.097450398000118,46.608034770000174],[10.192121623000048,46.62681915400016],[10.21785648600013,46.626974182000126],[10.23377282700005,46.61798248400008],[10.235736531000072,46.60669118300011],[10.23025883000008,46.58614980100013],[10.234703003000106,46.575297750000075],[10.27594079500011,46.56553090500002],[10.283795614000041,46.5607249960001],[10.289066609000088,46.55568654400004],[10.295371135000096,46.5510873410001],[10.306636597000136,46.54749582900003],[10.319452351000022,46.546048889000026],[10.354282267000087,46.54832265300014],[10.425905803000148,46.53532603000012],[10.443992554000147,46.53772898400017],[10.45183267900012,46.54670157200003],[10.457945190000146,46.553697001],[10.46590336100013,46.57847585100013],[10.466626831000013,46.60428822900015],[10.459082072000058,46.623563538],[10.438204793000097,46.63565582299999],[10.395623413000123,46.63880808500012],[10.377536662000097,46.65327748600008],[10.369165080000128,46.672397766000145],[10.373919312000112,46.68190623000005],[10.384771363000084,46.68901173900015],[10.394383179000101,46.70081980400009],[10.396553588000074,46.71500498400003],[10.395623413000123,46.726399639000036],[10.399654175000109,46.73554636700011],[10.41660404400011,46.74301361100005],[10.42869633,46.75564849900017],[10.426215861000031,46.769420268000104],[10.419084513000085,46.78396718300017],[10.417224162000082,46.79884999700012],[10.439031616000108,46.816885071000016],[10.444922730000116,46.82324127200006],[10.4485400800001,46.83223297100009],[10.453811076000136,46.86442738900003],[10.486263875000134,46.84636647500004],[10.527708374000099,46.84321421300016],[10.629407593000053,46.86241200799999],[10.647080932000051,46.86375559600005],[10.662480509000119,46.860965068],[10.738961629000102,46.82954579700005],[10.748676798000133,46.819443055000114],[10.743819213000052,46.812518413000035],[10.7215983480001,46.80014190700017],[10.716947469000047,46.79520680800011],[10.72294193500005,46.78644765200015],[10.733690633000094,46.78618927100008],[10.754774618000111,46.790762634000096],[10.766350138000064,46.788101299000104],[10.795082235000052,46.77688751300015],[10.804900757000041,46.776629130000074],[10.823917684000094,46.7803498330001],[10.834149617000065,46.780246480000145],[10.843141317000118,46.7770425420001],[10.860194539000133,46.76699147600006],[10.870426473000123,46.76407175700017],[10.880348348000041,46.76458852200001],[10.913731323000093,46.77233998600012],[10.93088789900014,46.77399363300015],[10.96571781400013,46.77164235400012],[10.98266768400012,46.76774078400017],[10.996930379000103,46.769110210000136],[11.010883016000093,46.77921295200018],[11.033310588000091,46.805567932000045],[11.037444702000101,46.80825510700008],[11.048503458000113,46.81169159000011],[11.052844279000082,46.814921367000075],[11.054601277000074,46.819933980000044],[11.053464396000066,46.830320943000075],[11.054291219000078,46.834144999],[11.07310144100009,46.86496999200007],[11.083643432000144,46.90013580400012],[11.091911662000113,46.91243479500018],[11.1566105550001,46.956514791000146],[11.174490601000059,46.96385284500015],[11.243737020000054,46.97925242200013],[11.31381026200009,46.987262268],[11.349467001000077,46.981939596000146],[11.38057621200005,46.971552633000144],[11.411168661000145,46.97049326600013],[11.445171753000096,46.99299835200016],[11.44527510600011,46.993101705000086],[11.452923217000091,47.000879009000116],[11.4618115640001,47.00550404900015],[11.471836792000145,47.007080181],[11.489406779000118,47.00421213800003],[11.495918009000093,47.001602478],[11.501705770000058,46.9978559370001],[11.506976766000093,46.99299835200016],[11.515348348000146,46.989484355000016],[11.524443400000052,46.988347473000104],[11.533848511000087,46.98953603200012],[11.543253621000131,46.99299835200016],[11.543356974000062,46.99299835200016],[11.54356368000012,46.993101705000086],[11.543667033000048,46.993101705000086],[11.572709188000147,46.99891530399999],[11.596480347000096,47.000439758000184],[11.64795007300009,46.993256735000145],[11.648466838000047,46.993256735000145],[11.64970707200007,46.99299835200016],[11.65725183100011,46.99253326400004],[11.664796590000066,46.993256735000145],[11.683813517000118,46.991913147000055],[11.716162964000118,46.975480042000115],[11.7348698320001,46.970622457],[11.74644535300007,46.97245697099999],[11.766082397000076,46.98343821300006],[11.777141154000105,46.98829579699999],[11.822513061000109,46.993256735000145],[11.85703291900009,47.01201527900004],[11.899510946000134,47.02772491500009],[11.943642618000126,47.03816355500014],[12.014956096000105,47.04048899400008],[12.116241903000114,47.07655914300007],[12.1331463140001,47.078831606000065],[12.180630737000113,47.08521494500003],[12.204195191000109,47.07968556700003],[12.203896989000043,47.06701198800009],[12.203575073000138,47.053330588000065],[12.18228438300008,47.033616028000026],[12.121719604000106,47.01051666300013],[12.111177612000063,46.99299835200016],[12.117792196000067,46.98307647700007],[12.122133015000117,46.97165598600015]],[[12.399581381000104,43.903217625000096],[12.4294503590001,43.89205551500008],[12.460456219000035,43.89525945400013],[12.478286774000082,43.91703788500014],[12.477493853000112,43.920050984000156],[12.478026206000095,43.92321640400003],[12.47957649900013,43.92580022500014],[12.482160321000038,43.927918959000024],[12.483094474000069,43.929204898000094],[12.490325196000128,43.939158583000065],[12.492392254000094,43.95641851100005],[12.48918831500012,43.97310999900018],[12.482160321000038,43.98256678600016],[12.453324871000092,43.97905278900011],[12.42138883600012,43.967218885000094],[12.411048669000138,43.959661012000126],[12.395653973000037,43.94840866400007],[12.385628745000105,43.924534153000096],[12.399581381000104,43.903217625000096]],[[12.452714082000085,41.9030162130001],[12.45313691700008,41.90275194100015],[12.454035442000075,41.90275194100015],[12.453982588000143,41.90386188400008],[12.45303120800014,41.9039147380001],[12.452766936000103,41.903439049000085],[12.452714082000085,41.9030162130001]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"Jersey","adm0_a3":"JEY","geou_dif":0,"geounit":"Jersey","gu_a3":"JEY","su_dif":0,"subunit":"Jersey","su_a3":"JEY","brk_diff":0,"name":"Jersey","name_long":"Jersey","brk_a3":"JEY","brk_name":"Jersey","brk_group":"Channel Islands","abbrev":"Jey.","postal":"JE","formal_en":"Bailiwick of Jersey","formal_fr":null,"note_adm0":"U.K. crown dependency","note_brk":null,"name_sort":"Jersey","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":91626,"gdp_md_est":5100,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"JE","iso_a2":"JE","iso_a3":"JEY","iso_n3":"832","un_a3":"832","wb_a2":"JG","wb_a3":"CHI","woe_id":23424857,"woe_id_eh":23424857,"woe_note":"Exact WOE match as country","adm0_a3_is":"JEY","adm0_a3_us":"JEY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"JEY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-2.082671678999901,49.260239976],[-2.067860480999855,49.25067780200001],[-2.020659959999875,49.235256252000084],[-2.02196204299986,49.22549062700002],[-2.017323370999918,49.2213809270001],[-2.011870897999898,49.2152774110001],[-2.008290167999917,49.21246979400004],[-2.0169978509999,49.20722077000008],[-2.020985480999883,49.20075104400007],[-2.022043423999946,49.19245026200008],[-2.02196204299986,49.18138255400004],[-2.024525519999969,49.17133209800008],[-2.031158006999931,49.171454169000036],[-2.04002844999988,49.175726630000035],[-2.049224412999934,49.17829010600005],[-2.07998613199993,49.17869700700007],[-2.096994594999899,49.1836612000001],[-2.120228644999912,49.19916413000004],[-2.128895636999914,49.20307038000004],[-2.137928839999915,49.205633856000134],[-2.144846157999922,49.205633856000134],[-2.152943488999938,49.19993724200006],[-2.16063391799986,49.190741278000075],[-2.168690558999912,49.17829010600005],[-2.177154100999928,49.18016185100003],[-2.189686652999853,49.189113674000055],[-2.200103318999936,49.191961981000105],[-2.202951626999976,49.19041575700007],[-2.223378058999856,49.18471914300007],[-2.233631964999887,49.18451569200002],[-2.22647050699993,49.20600006700005],[-2.233225063999953,49.228501695000034],[-2.242014126999919,49.24795156500005],[-2.241118943999936,49.260239976],[-2.229359503999945,49.26300690300005],[-2.215199347999942,49.260239976],[-2.196278449999909,49.25340403900009],[-2.182728644999941,49.25405508000003],[-2.172352667999859,49.256252346000025],[-2.162709113999881,49.26040273600005],[-2.151682094999927,49.26703522300002],[-2.143788214999859,49.26186758000003],[-2.121978318999908,49.25828685100004],[-2.110666469999927,49.25340403900009],[-2.103871222999913,49.25820547100005],[-2.097564256999874,49.25967031500002],[-2.082671678999901,49.260239976]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kosovo","sov_a3":"KOS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kosovo","adm0_a3":"KOS","geou_dif":0,"geounit":"Kosovo","gu_a3":"KOS","su_dif":0,"subunit":"Kosovo","su_a3":"KOS","brk_diff":1,"name":"Kosovo","name_long":"Kosovo","brk_a3":"B57","brk_name":"Kosovo","brk_group":null,"abbrev":"Kos.","postal":"KO","formal_en":"Republic of Kosovo","formal_fr":null,"note_adm0":null,"note_brk":"Self admin.; Claimed by Serbia","name_sort":"Kosovo","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":11,"pop_est":1804838,"gdp_md_est":5352,"pop_year":-99,"lastcensus":1981,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"KV","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"KV","wb_a3":"KSV","woe_id":-90,"woe_id_eh":29389201,"woe_note":"Subunit of Serbia in WOE still; should include 29389201, 29389207, 29389218, 29389209 and 29389214.","adm0_a3_is":"SRB","adm0_a3_us":"KOS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KOS.geojson"},"geometry":{"type":"Polygon","coordinates":[[[20.864700154000047,43.217337342000036],[20.861599569000106,43.217518209000076],[20.85147098800013,43.21981781100001],[20.83999882000012,43.21209218400011],[20.8406189370001,43.206976217000026],[20.839068644000065,43.19245514000008],[20.836071411000148,43.17943267800004],[20.832040649000078,43.178605855000114],[20.83855188000012,43.170466817],[20.91249413300011,43.138805129000076],[20.993431297000086,43.104148257000126],[21.005156698000093,43.099127502000016],[21.02582727100011,43.09336558000007],[21.092593221000072,43.09067840600002],[21.10850956200008,43.081557516000146],[21.124012491000087,43.05827728300002],[21.139308716000045,43.005825704000074],[21.14788700300008,42.99262237600007],[21.165353638000028,42.98510345500006],[21.17940962700004,42.990581157000115],[21.19305220600006,42.99789337200011],[21.20979536900009,42.99587799100007],[21.225298299000116,42.97355377200009],[21.226745240000096,42.942522075000085],[21.23242964700006,42.91089609800007],[21.2605416260001,42.88655649900007],[21.271600383000106,42.884282735000056],[21.294958130000055,42.88438608800006],[21.306326945000134,42.88244822200005],[21.316972290000106,42.87761647600013],[21.336402628000116,42.86547251400011],[21.34673791500012,42.86084747300009],[21.378777303000106,42.85529225700006],[21.398931111000078,42.85456878700006],[21.408439575000074,42.84699819000011],[21.40841888600005,42.84174320800008],[21.40833622200006,42.820746562000096],[21.404098755000092,42.80397755900012],[21.390559529000114,42.77041371700011],[21.3871488850001,42.7549624640001],[21.383944946000042,42.74997568800006],[21.379190714000117,42.747004293000145],[21.37867395100008,42.74413625100007],[21.38869917800011,42.739046123000094],[21.405545695000082,42.73529958100007],[21.41780040600011,42.735570162000066],[21.44182255000004,42.73610056600009],[21.542488240000097,42.7258169560001],[21.56522587000009,42.720184225000054],[21.58052209500005,42.71021067300006],[21.61266483600008,42.68039337200014],[21.629407999000108,42.67220265700013],[21.64408410700011,42.67230601000006],[21.68738895700008,42.686827088000086],[21.708886352,42.6871888230001],[21.738651977000103,42.682150370000045],[21.744249788000076,42.679424528000084],[21.7643868400001,42.66961883600003],[21.772758422000067,42.647501323000114],[21.767074016000038,42.63871632900003],[21.756532023000148,42.63362620000004],[21.74454309100011,42.62964711600006],[21.734724569000036,42.6242469280001],[21.735551392000048,42.62127553400009],[21.73007369000007,42.601018372000084],[21.728833455000114,42.59830535900005],[21.72697310300012,42.59639333100003],[21.720151815000065,42.59388702400013],[21.71829146300007,42.591018982000065],[21.719738403000065,42.586678162000084],[21.72676639800008,42.57794484500002],[21.72769657400002,42.57414662700008],[21.717671346000085,42.55115061500004],[21.667855265000068,42.49009491000003],[21.6278577060001,42.460380961000084],[21.61896936000008,42.44924469100005],[21.616902303000103,42.43392262800009],[21.621863240000064,42.402167460000044],[21.61741906800006,42.38663869200013],[21.596645141000124,42.372091777000094],[21.5373205970001,42.35863006600002],[21.5160299070001,42.3419385790001],[21.514893026000095,42.31783152300005],[21.553857056000084,42.27398407000003],[21.564065710000108,42.246289302000065],[21.56181522600013,42.247164002000034],[21.51985396300006,42.23902496400012],[21.499286743000056,42.23866322800012],[21.481510051000043,42.2477841190001],[21.471973165000094,42.23913027900005],[21.467557413000037,42.235123393000066],[21.457222127000136,42.23703542100008],[21.447920369000116,42.24414093100011],[21.436344848000147,42.246879782000065],[21.419911743000085,42.24005849200012],[21.421462036000037,42.23135101300005],[21.42869673700008,42.222566020000045],[21.429833618000085,42.21584808400013],[21.419084920000074,42.21502126100009],[21.38425500500011,42.224943136],[21.36678837100007,42.223857930000094],[21.36060206500005,42.22011423300006],[21.35376591000002,42.21597727500006],[21.294958130000055,42.14897878100007],[21.2937178950001,42.14016794900007],[21.295784953000066,42.13479360000011],[21.298782186000096,42.12941925100006],[21.300332479000105,42.12089263900003],[21.30126265400014,42.1006096400001],[21.30079636100004,42.09842542700005],[21.299298950000036,42.09141123500012],[21.288860311000093,42.089705912000056],[21.245727456000054,42.09616710900008],[21.23780399600011,42.09735402400014],[21.229298016000115,42.10382211300009],[21.225401652000127,42.10678497300009],[21.21620324700004,42.121151022000106],[21.199873494000116,42.14114980100004],[21.164423462000087,42.16703969400007],[21.126389607000135,42.18892466200003],[21.112953735000104,42.1944023640001],[21.106235799000075,42.19579762800009],[21.098484334000144,42.195952657000106],[21.074403117000116,42.184454651000095],[21.04093997800007,42.15996989400006],[21.02923791500004,42.151407573000114],[21.00391646300008,42.14195078600005],[20.9751451810001,42.134658012000074],[20.904170441000076,42.116667755000066],[20.81054325300002,42.09293569000005],[20.784911743000063,42.08203196200006],[20.765378052000045,42.06433278500006],[20.755352824000024,42.042783712000094],[20.74305383300009,41.99348439500011],[20.741813598000135,41.97077260300006],[20.751439128000126,41.94033778400012],[20.754422648000087,41.93090423600012],[20.751052494000106,41.910217695000114],[20.750495240000106,41.90679718000007],[20.739953247000127,41.88803863500007],[20.723313436000126,41.86661875500004],[20.71439819800011,41.85916299100009],[20.702952921000104,41.84959137000001],[20.681455525000047,41.84401031600009],[20.671843709000143,41.84930715000013],[20.65282678300008,41.869280091000064],[20.643421672000017,41.873646749000045],[20.63701379300008,41.87036529500005],[20.626161743000125,41.85519826300003],[20.6187203370001,41.85052154600007],[20.602390584000062,41.849875591000085],[20.590298299000093,41.854733175],[20.56714725800009,41.873181662000036],[20.56776737500007,41.88051971500002],[20.562703084000077,41.89284454400006],[20.562496379000038,41.90010508200004],[20.567250611000105,41.91217153000011],[20.573348430000067,41.91767507000011],[20.580583130000036,41.92173166900011],[20.58874800600006,41.929586488000034],[20.59928999800013,41.94787994400011],[20.59928999800013,41.960566509000074],[20.59432906100008,41.97371816000003],[20.589678182000114,41.993639425000055],[20.55825891100008,42.05510854100007],[20.552161092000116,42.07378957200012],[20.551954386000148,42.105803122000026],[20.54937056500006,42.123476461000024],[20.53862186700013,42.150115662000076],[20.500794719000055,42.211223043000075],[20.481674439000074,42.23070505800006],[20.473664576000086,42.23712300200006],[20.45697310400007,42.250497132000135],[20.333363078000076,42.31788320000007],[20.317963501000094,42.31982106500007],[20.249647257000017,42.31860666900005],[20.237761678000084,42.319924419000095],[20.22959680200009,42.326719869000044],[20.220915161000107,42.34310129800011],[20.219468221000113,42.35020680800005],[20.221225220000093,42.36372019500001],[20.218848104000074,42.37144582200011],[20.21306034300008,42.37751780200005],[20.19745406100014,42.387439677000145],[20.192803182000088,42.39369252600005],[20.19404341600011,42.400100403000096],[20.204378703000117,42.41183095300008],[20.20468876100011,42.42009918200003],[20.199727824000064,42.4277989710001],[20.18629195200012,42.43743662500012],[20.180814249000036,42.44309519500007],[20.152702271000095,42.49340220200014],[20.152702271000095,42.49342804000013],[20.152598918000052,42.493608907000095],[20.152598918000052,42.493712260000024],[20.15239221200011,42.493712260000024],[20.135545695000133,42.50962860100014],[20.085626261000073,42.53001495400008],[20.064955688000055,42.54675811800004],[20.07704797300005,42.55990977000002],[20.07818485500013,42.57290639300004],[20.075394328000073,42.58696238200005],[20.07570438600007,42.603085430000135],[20.079218384000114,42.611250305000056],[20.090587199000108,42.627347514000036],[20.103919718000043,42.653108216000135],[20.10195601400011,42.65667389],[20.094204549000093,42.666983337],[20.037006251000065,42.70736309700007],[20.0361202390001,42.707988587000045],[20.024751424000016,42.72341400200014],[20.026508423000106,42.74320607500002],[20.034673299000104,42.75142262800006],[20.05563844800008,42.76386622900006],[20.06505904100007,42.76945770300005],[20.076324503000137,42.77343678900013],[20.112084595000056,42.76653798500006],[20.149498331000103,42.749872335000134],[20.18339807100011,42.74250844300013],[20.208409464000113,42.76328236900008],[20.209959757000036,42.7729717010001],[20.208409464000113,42.782092591000094],[20.209236288000053,42.79170440700008],[20.21760787000011,42.802737325000095],[20.226082805000118,42.80676808700008],[20.26442671700005,42.81725840300004],[20.345352010000028,42.8274386600001],[20.4280343020001,42.8406419880001],[20.47630008900012,42.85552480100002],[20.49883101400013,42.877874858],[20.494366526000135,42.88746653100014],[20.488909139000043,42.8991913860001],[20.466688273000102,42.90950083400008],[20.45097863700005,42.9220323690001],[20.459453572000115,42.950015158000014],[20.476403442000045,42.966370748000145],[20.493456665000082,42.9701948040001],[20.51113000500007,42.9701948040001],[20.53045699000012,42.97515574200014],[20.538415161000074,42.980659281000044],[20.543892863000078,42.987248027000106],[20.55340132600014,43.002595927000094],[20.56239302600011,43.00949473100007],[20.572831665000134,43.009339702000034],[20.584303833000064,43.006910909000055],[20.596396118000143,43.00709177700011],[20.617273397000105,43.02212961900011],[20.643835083000027,43.05225697900008],[20.664919068000074,43.0854074100001],[20.6691565350001,43.10979868600003],[20.66181848100012,43.115948182000096],[20.651689901000054,43.11630991600009],[20.64094120300004,43.115276388],[20.632052856000115,43.11726593000014],[20.626058390000107,43.12372548500011],[20.62058068900012,43.13333730100001],[20.612105754000112,43.154938050000084],[20.600116821000142,43.17382578600012],[20.597533,43.184962057000035],[20.604044230000113,43.19795867900007],[20.612312459000066,43.20227366200004],[20.644868612,43.20330719000012],[20.66698612400012,43.20966339200007],[20.745327596000095,43.25286488800009],[20.769512166000084,43.26084889800006],[20.794420207000144,43.26307098400008],[20.809717238000076,43.25961018900005],[20.819431600000144,43.25741241500003],[20.83844852700011,43.24586273200009],[20.848473755000043,43.23813710600009],[20.855088338000115,43.231445008000065],[20.864700154000047,43.217337342000036]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Liechtenstein","sov_a3":"LIE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Liechtenstein","adm0_a3":"LIE","geou_dif":0,"geounit":"Liechtenstein","gu_a3":"LIE","su_dif":0,"subunit":"Liechtenstein","su_a3":"LIE","brk_diff":0,"name":"Liechtenstein","name_long":"Liechtenstein","brk_a3":"LIE","brk_name":"Liechtenstein","brk_group":null,"abbrev":"Liech.","postal":"FL","formal_en":"Principality of Liechtenstein","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Liechtenstein","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":2,"mapcolor13":9,"pop_est":34761,"gdp_md_est":4160,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"LS","iso_a2":"LI","iso_a3":"LIE","iso_n3":"438","un_a3":"438","wb_a2":"LI","wb_a3":"LIE","woe_id":23424879,"woe_id_eh":23424879,"woe_note":"Exact WOE match as country","adm0_a3_is":"LIE","adm0_a3_us":"LIE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":13,"long_len":13,"abbrev_len":6,"tiny":6,"homepart":1,"filename":"LIE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[9.58120284000003,47.05687042300007],[9.560635620000141,47.052400412000054],[9.499554077000141,47.05935089100004],[9.477023153000118,47.063898417000075],[9.475886271000121,47.073226014000106],[9.487565145000104,47.083948874000036],[9.50286136800014,47.09469757200014],[9.512369832000047,47.108030091000074],[9.511853068000107,47.12937245700007],[9.503481486000112,47.145392151000124],[9.492629435000083,47.159809876000054],[9.484981323000085,47.17634633400013],[9.487358439000047,47.210013529000065],[9.504618368000138,47.243732402000035],[9.52115482500011,47.262801005000114],[9.530249878000092,47.25365427700004],[9.547096395000068,47.243034770000065],[9.540378458000134,47.229107972000065],[9.544822632000148,47.22032297800007],[9.554331095000123,47.21161549900012],[9.562909383000061,47.19774037700006],[9.561875854000078,47.190609029000115],[9.551953979000103,47.17557118800001],[9.552057332000118,47.16688954700007],[9.5818229570001,47.15490061500009],[9.605594116000077,47.13226633700006],[9.615722697000109,47.10676401800003],[9.608798055000136,47.08077077300007],[9.58120284000003,47.05687042300007]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Lithuania","sov_a3":"LTU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lithuania","adm0_a3":"LTU","geou_dif":0,"geounit":"Lithuania","gu_a3":"LTU","su_dif":0,"subunit":"Lithuania","su_a3":"LTU","brk_diff":0,"name":"Lithuania","name_long":"Lithuania","brk_a3":"LTU","brk_name":"Lithuania","brk_group":null,"abbrev":"Lith.","postal":"LT","formal_en":"Republic of Lithuania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lithuania","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":3,"mapcolor13":9,"pop_est":3555179,"gdp_md_est":63330,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"LH","iso_a2":"LT","iso_a3":"LTU","iso_n3":"440","un_a3":"440","wb_a2":"LT","wb_a3":"LTU","woe_id":23424875,"woe_id_eh":23424875,"woe_note":"Exact WOE match as country","adm0_a3_is":"LTU","adm0_a3_us":"LTU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"LTU.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[20.988942905000073,55.29132721600011],[20.989430696577955,55.27311631266308],[20.92456870056236,55.2826577786315],[20.924571160000085,55.28266022300012],[20.92481530000012,55.28290436400006],[20.99952233200011,55.357001044000114],[21.041514519000117,55.41608307500006],[21.082367384000065,55.49762604400017],[21.09310957100007,55.58169179900001],[21.09937584700012,55.59870026200018],[21.09392337300008,55.603461005000085],[21.09937584700012,55.61298248900009],[21.090668165000125,55.63312409100011],[21.09351647200006,55.69554271000008],[21.085215691000087,55.72284577000015],[21.11744225400014,55.69977448100009],[21.131521030000073,55.65558502800012],[21.133555535000113,55.568304755000106],[21.131358269000117,55.55573151200012],[21.122080925000144,55.53900788],[21.119883660000085,55.52704498900006],[21.119883660000085,55.48944733300006],[21.10840905000012,55.473089911000145],[21.092621290000068,55.45661041900014],[21.087168816000144,55.441066799000154],[21.10621178500014,55.42743561400012],[21.10621178500014,55.42121002800015],[21.091807488000057,55.41071198100017],[21.073496941000116,55.39179108300006],[21.057627800000088,55.36945221600002],[21.05095462300011,55.34886302300002],[21.03785241000014,55.32859935099999],[20.988942905000073,55.29132721600011]]],[[[24.910137980000115,56.42195770299999],[24.936286255000113,56.379918925000155],[24.96212447100004,56.319276632000175],[24.973183228000035,56.30075063100004],[24.983208456000085,56.29049285900005],[25.016488077000105,56.269899801000165],[25.02620324700007,56.26018463200005],[25.04397994000007,56.22799021400008],[25.07312544700011,56.19781117800009],[25.109195597000106,56.18308339500008],[25.349085703000128,56.15987632300006],[25.45480757700011,56.1496487430001],[25.522762085000068,56.15657338500007],[25.57288822400008,56.143034159000095],[25.590044800000044,56.14112213099999],[25.64967940300005,56.1438093070001],[25.66187504100006,56.1408120730001],[25.66921309400007,56.132027080000015],[25.68781661000011,56.09833404600015],[25.69660160300009,56.0878954060001],[25.708797241000127,56.081048279000136],[25.766261434000114,56.05864654600008],[25.79549603400005,56.04013034000014],[25.871267944000067,55.99213897700009],[25.961251118000064,55.958458834000126],[26.017615600000113,55.937361959000114],[26.07942061300011,55.898139547000156],[26.178639364000077,55.84958953900015],[26.20375411000009,55.82744618700015],[26.226905152000086,55.79693125400014],[26.27971846600013,55.74323944100016],[26.342350301000067,55.71634185800015],[26.481049846000133,55.678308005000034],[26.53748050900009,55.66952301000005],[26.594531291000067,55.66699086600015],[26.603833048000098,55.64327138300011],[26.60765710500004,55.61645131500002],[26.605176635000078,55.59009633400016],[26.59556481900006,55.568030498000056],[26.576134480000093,55.550563864000125],[26.551639852000108,55.534492493000144],[26.532106161000115,55.516250712],[26.5276619870001,55.49216949500005],[26.54647220900011,55.47124054000007],[26.543268270000056,55.45961334200011],[26.507818238000112,55.439149475000065],[26.499239950000085,55.42809071900014],[26.486010783000093,55.390832012000104],[26.479086141000096,55.38137522400014],[26.455211629000132,55.356105449],[26.445496460000072,55.33750193300013],[26.450043986000107,55.32706329400018],[26.46575362200008,55.320862122],[26.525388224000093,55.30809804400003],[26.542338094000087,55.307581279000104],[26.602696167000087,55.31688303700012],[26.768629191000088,55.300243225000095],[26.79157352700011,55.29016632100017],[26.800720256000087,55.273319804],[26.78966149900009,55.25719675800012],[26.76558028100007,55.24670644200016],[26.739901281000073,55.24277640300015],[26.701088094000113,55.236836243000155],[26.685688517000127,55.23161692300006],[26.656956421000128,55.215338847000126],[26.641143432000035,55.202833151000114],[26.633908732000066,55.19218780600015],[26.627500854000118,55.164437561],[26.616338745000093,55.135395406000114],[26.60093916800011,55.12082265200014],[26.578925008000056,55.11854888900014],[26.47340173300006,55.1456790160001],[26.459139038000103,55.14474884100015],[26.45066410300009,55.13983958000004],[26.444772989000086,55.13394846600012],[26.4385718180001,55.13002105800014],[26.42875329600014,55.12821238200014],[26.420278361000044,55.12810903000003],[26.309484090000122,55.14464548700011],[26.26442224100009,55.14009796200018],[26.233002971000133,55.111624248000155],[26.230315796000127,55.10025543200008],[26.231245971000078,55.075450745000026],[26.229385620000073,55.063410136000144],[26.224631388000063,55.054883525000136],[26.187837768000065,55.008736471000084],[26.170324564000083,54.99326030100017],[26.153627970000084,54.978505758],[26.138641805000105,54.96894561800009],[26.10257165600009,54.95700836200013],[25.9811320390001,54.94269399000014],[25.96252852400005,54.94290069600011],[25.926148315000063,54.94775828100013],[25.907854858000093,54.9480683390001],[25.870234416000073,54.9388182580001],[25.858452189000076,54.93297882100002],[25.85483483900009,54.92548573800017],[25.85307784000011,54.916442363000115],[25.846669962000078,54.906210429000126],[25.825792684000106,54.89199941],[25.802538290000086,54.881612447000165],[25.78269453900009,54.869675192000116],[25.77225590000006,54.8508649700001],[25.773702840000055,54.84192494700007],[25.78228112800008,54.821977845000056],[25.782901245000062,54.813709615],[25.778457072000037,54.80528635700004],[25.77339278200006,54.80337432900011],[25.76657149200011,54.80327097600018],[25.756752970000065,54.80037709599999],[25.73494551600004,54.78905995700002],[25.72430017100004,54.78011993400018],[25.72119958500008,54.76673573900013],[25.724610229000117,54.71567942300008],[25.7230599370001,54.70534413700007],[25.719132528000042,54.694750468000095],[25.713861531000106,54.685552063999985],[25.70952071200011,54.6756301890001],[25.708383830000116,54.66302113900015],[25.715101766000117,54.643229065000085],[25.739906454000078,54.60772735600012],[25.74559086100001,54.58840037],[25.740423217000114,54.56850494399999],[25.726470581000115,54.552950338000144],[25.70735030100013,54.541529847000064],[25.64616540500009,54.520394186000104],[25.630869181000037,54.50835357700005],[25.61991377700008,54.488096416000026],[25.615572958000087,54.46189646400001],[25.616296427000094,54.441070863000064],[25.612575724000067,54.42179555300011],[25.594695678000104,54.40009145100014],[25.54880700600006,54.36774200500004],[25.52999678600014,54.346141256000166],[25.528653198000086,54.32097483400004],[25.54229577600009,54.30805572500013],[25.56399987800009,54.30314646500009],[25.607408081000074,54.30485178700014],[25.667352743000066,54.32330027300016],[25.682338908000133,54.32562571300009],[25.69598148600005,54.32097483400004],[25.70176924600011,54.312758281000086],[25.704766480000018,54.30299143500004],[25.715411825000103,54.285214742000036],[25.719235881000145,54.2815457160001],[25.723266642000056,54.28097727500007],[25.734738811000057,54.283199361000165],[25.739286336000102,54.28257924500009],[25.748898152,54.276326396000094],[25.757786499000133,54.268988343],[25.765641316000142,54.25999664300015],[25.77225590000006,54.24893788700014],[25.776286662000047,54.24563059500015],[25.78176436400014,54.24444203700013],[25.786621949000075,54.242323304000145],[25.78920577000008,54.236225485000105],[25.786828654000118,54.23178131100009],[25.775046427000117,54.22247955300015],[25.771945841000075,54.21788035100012],[25.77101566600004,54.172146708000085],[25.763057495000055,54.15643707300002],[25.740009806000103,54.14625681600016],[25.72812422700008,54.14522328800008],[25.690607137000086,54.148220520000095],[25.679755086000114,54.14532664000011],[25.663942098000117,54.132355855000085],[25.6535034580001,54.1287385050001],[25.63159265100003,54.12832509400009],[25.543019247000075,54.13695505800003],[25.516044149000038,54.14475820000013],[25.493306518000082,54.157522278000116],[25.485761759000127,54.17540232400007],[25.493203165000125,54.18243031900009],[25.52172855600008,54.18821807900015],[25.52896325700007,54.19565948500018],[25.52338220200005,54.204237773000116],[25.499300984000087,54.21183420800015],[25.50167810000005,54.22175608400006],[25.522141967000096,54.22862904900013],[25.545499715000062,54.22749216800004],[25.553974650000043,54.23126454800014],[25.483487996000093,54.287695211000184],[25.478682088000085,54.29332794200012],[25.472067505000098,54.297151999000064],[25.459355103000036,54.298908997000055],[25.43413700400009,54.2918293260001],[25.394036092000107,54.25715443899998],[25.369748169000104,54.247904358000156],[25.287582641000082,54.24521718400014],[25.224123983000112,54.258549703000156],[25.206243937000067,54.25679270500008],[25.193531535000115,54.24366689100013],[25.17306766700005,54.19658966100003],[25.15653121000005,54.17571238200016],[25.115603475000054,54.14878896100005],[25.0719885660001,54.13220082700003],[25.027133423000095,54.12786000600006],[24.948275187000093,54.14589508100006],[24.902283163000074,54.1497708130001],[24.855981079000088,54.146721903000085],[24.85098389500007,54.14495112900012],[24.82156457500014,54.13452626600015],[24.817533813000068,54.12822174100016],[24.81743046000011,54.12062530500002],[24.818670695000066,54.11395904600008],[24.81815393100004,54.110134990000134],[24.799447062000127,54.103210348000154],[24.790558716000135,54.096595765000146],[24.784254191000116,54.09623402900017],[24.78249719200005,54.09287506200014],[24.787148071000104,54.07763051400011],[24.799033651000116,54.05602976500013],[24.81246952300009,54.038924866000094],[24.821357870000096,54.01990793900005],[24.819394165000062,53.99257110600011],[24.819290812000133,53.99251943000008],[24.819187459000087,53.99241607700016],[24.819084107000066,53.992312724000115],[24.806371704000128,53.9753111780001],[24.78869836500013,53.96967844699999],[24.723896118000113,53.963425599000075],[24.705602661000057,53.964200745000184],[24.690823201000114,53.972830709000114],[24.677904094,53.992312724000115],[24.67428674300004,53.99370798800011],[24.67056604000004,53.994276429000145],[24.666845336000108,53.99386301700015],[24.642970825000134,53.98301096700003],[24.579098755000075,53.975621237],[24.528662557000075,53.9583613080001],[24.414044230000115,53.89769317600003],[24.377870728000087,53.88684112600007],[24.341903931000015,53.88704783200005],[24.310174601000114,53.892680563000155],[24.276378215000108,53.89180206300004],[24.25705122900007,53.894024150000014],[24.24640588400007,53.90363596700005],[24.229145955000092,53.93236806300014],[24.20113732900009,53.952470195],[24.1696147050001,53.958929749000056],[24.13674849500009,53.95541575200009],[24.074943482000094,53.935727031000155],[24.045384562000066,53.930869446000045],[23.981305786000064,53.930404358000104],[23.96487268000007,53.93272979700005],[23.93541711400007,53.94394358300009],[23.919810832000053,53.94776763900005],[23.90472131300004,53.946062317000056],[23.8283435460001,53.920069071000015],[23.820592082000076,53.91929392499999],[23.812117147000066,53.92084421900002],[23.794133749000082,53.927097066000115],[23.78720910600012,53.927923890000145],[23.77180952900011,53.92430653900006],[23.754446248000107,53.916761780000016],[23.691917765000113,53.91149078400015],[23.64261844900011,53.898985087000156],[23.627115519000114,53.89820994100016],[23.60995894400014,53.901827291000146],[23.520145305000142,53.93397003200009],[23.485625448000064,53.93929270400012],[23.4897595620001,53.945132142000105],[23.490379679000057,53.950609843],[23.48748579900007,53.95562245700016],[23.48159468600008,53.96011830700009],[23.47094934100008,53.96528595000008],[23.46288781700008,53.97252065000005],[23.458650350000138,53.98161570300011],[23.459270467000096,53.992312724000115],[23.464128052000035,53.99675689700013],[23.469502401000085,54.00068430600011],[23.48159468600008,54.006627096000116],[23.496477498000104,54.021974996],[23.496167440000132,54.04455759700012],[23.48159468600008,54.091221415000106],[23.47394657400008,54.112563782],[23.462991170000123,54.13493967800017],[23.449038534000124,54.15493845700003],[23.432502075000116,54.16930450500003],[23.423303670000053,54.17250844300018],[23.40180627400008,54.175970765000116],[23.391470988000094,54.18010487900015],[23.382272583000088,54.18785634400017],[23.364082479000047,54.208268535000016],[23.35447066200004,54.2170535280001],[23.335990126000123,54.226293796],[23.316023397000095,54.2362771610001],[23.235408162000084,54.254157207000084],[23.197270956000125,54.267851461000085],[23.135259236000078,54.29828888000016],[23.11706913200004,54.30345652300014],[23.096915324000065,54.30082102500016],[23.073040812000073,54.29487823500013],[23.050096476000135,54.29482655900013],[23.032113078000037,54.30955434200003],[23.03221643100008,54.320148010000096],[23.03800419100014,54.331465149000095],[23.04162154200011,54.340973613000145],[23.035317016000107,54.34650299100015],[23.001003866000104,54.34888010700011],[22.989738404000036,54.353375956000136],[22.98343387800011,54.35978383500016],[22.978989706000107,54.36758697599999],[22.97330529800007,54.37539011700004],[22.96265995300007,54.38169464200003],[22.95242801900008,54.38308990500012],[22.929690389000115,54.380299378000146],[22.918838338000057,54.38112620100015],[22.858893677000083,54.39921295200018],[22.837602986000093,54.40091827500005],[22.812694946000136,54.394096985000104],[22.811343908000083,54.392633361000044],[22.786029907000085,54.36520986000015],[22.76721968600006,54.35626983700003],[22.7069649660001,54.41874664300009],[22.680403279000075,54.45321482400006],[22.6746155190001,54.492282206000155],[22.681746867000125,54.56990020800008],[22.70365767400011,54.617545878000115],[22.70810184700011,54.635632629000106],[22.7069649660001,54.646484680000164],[22.700763794000125,54.669325663000095],[22.700867147000054,54.679557597000056],[22.705104615000096,54.68653391600007],[22.727015422000136,54.70534413700007],[22.727532186000076,54.709323222000066],[22.72484501100007,54.71376739500006],[22.722777954000094,54.718573304000145],[22.72484501100007,54.72337921200006],[22.728255656000073,54.72508453400003],[22.736730591000082,54.72632476800008],[22.74727258300007,54.73159576400008],[22.76484257000004,54.737125143000114],[22.773007446000037,54.74249949200008],[22.786650024000068,54.755987041000125],[22.817759237000104,54.769164531000015],[22.8328487550001,54.77867299399999],[22.845767863000106,54.79613962800011],[22.848351684000107,54.813812968000136],[22.84432092300011,54.83226145500005],[22.829334758000126,54.872724101000145],[22.821273234000074,54.8854881800001],[22.808870891000083,54.89375640900006],[22.749236287000084,54.90987945600013],[22.740968058000135,54.91763092100014],[22.752130168000065,54.931118469000104],[22.73879764800006,54.93411570300013],[22.72918583200004,54.94036855100002],[22.722054484000097,54.94718984000017],[22.715543253000135,54.95137563100012],[22.70613814200007,54.953132630000184],[22.649914185000085,54.95287424800004],[22.63348107900012,54.9579385380001],[22.621698852000122,54.970030823000066],[22.608366333000106,54.992406718000055],[22.59162316800007,55.03762359600013],[22.580667765000072,55.057622376],[22.57116534000008,55.06398964700004],[22.565474894000143,55.067802633000056],[22.54108361900012,55.0757608040001],[22.436283814000063,55.05777740500012],[22.269883746000062,55.06953696300012],[22.251282186000083,55.07085154200017],[22.142658325000067,55.054625143000166],[22.12984257000008,55.046977030000086],[22.11847375500011,55.03777862599999],[22.09987024000014,55.02992380800005],[22.076822551000078,55.02858022100018],[22.049950805000094,55.03354115800015],[22.027729940000143,55.04439320900009],[22.018634887000076,55.060929667],[22.018634887000076,55.07731109600003],[22.01543094900009,55.08842153000013],[22.00344201700005,55.093485820000026],[21.977500447000097,55.09198720300012],[21.9513521720001,55.08046335900009],[21.942773885000065,55.078292948000104],[21.932955363000104,55.08046335900009],[21.90856408700006,55.08986847000013],[21.873217407000055,55.09493276000001],[21.85389042200012,55.10221913700009],[21.819887329000064,55.119324036000066],[21.750640910000072,55.127954],[21.733380982000085,55.136325582000076],[21.716224405000105,55.14945139600003],[21.645841105000073,55.18102569600002],[21.605120076000105,55.192497864000025],[21.503937622000137,55.19440989200013],[21.46766076600008,55.2111530560001],[21.405545695000082,55.27238962800014],[21.374849894000132,55.28995961500011],[21.34983850100005,55.28778920500012],[21.267602287364923,55.24867008630527],[21.267588738000086,55.248683986000074],[21.26905358200014,55.253566799000154],[21.264496290000096,55.276556708000115],[21.264414910000113,55.284002997000115],[21.270843946000127,55.28803131700008],[21.278086785000138,55.286566473000036],[21.28532962300008,55.287054755],[21.29118899800011,55.297064520000085],[21.28923587300008,55.305243231000084],[21.282481316000144,55.31683991100003],[21.27418053500014,55.327337958000086],[21.267588738000086,55.33185455900003],[21.259450717000078,55.33624909100003],[21.25635826900009,55.34674713700018],[21.257090691000116,55.369370835000055],[21.246592644000142,55.37018463700015],[21.188812696000127,55.338609117000075],[21.18336022200009,55.3461774760001],[21.183278842000107,55.3483747420001],[21.186045769000145,55.34918854400003],[21.224294467000103,55.39931875200004],[21.232758009000065,55.406927802000055],[21.24830162900014,55.41787344000012],[21.248383009000122,55.44232819200006],[21.236582879000053,55.48265208500014],[21.224294467000103,55.51239655200005],[21.222911004000107,55.52020905200014],[21.218516472000147,55.52362702000014],[21.208994988000143,55.52960846600017],[21.19939212300008,55.53766510600009],[21.195078972000147,55.547186591000106],[21.19605553500014,55.55939362200017],[21.197764519000145,55.56732819200015],[21.198090040000068,55.57477448100012],[21.195078972000147,55.58510976800012],[21.157562696000042,55.64175039300004],[21.150157097000147,55.659328518000144],[21.14722741000014,55.678168036],[21.140798373000024,55.688137111000074],[21.09937584700012,55.72907135600012],[21.089528842000103,55.73525625200007],[21.080739780000044,55.73859284100011],[21.07439212300011,55.74494049700003],[21.069834832000137,55.76972077],[21.060557488000082,55.789252020000085],[21.04468834700006,55.87372467700013],[21.04468834700006,55.91771067900005],[21.046885613000143,55.92865631700012],[21.05616295700011,55.942531643],[21.05836022200012,55.951849677000055],[21.05836022200012,56.037543036000116],[21.053398015984072,56.07260387399778],[21.091352986000118,56.0778960170001],[21.150160767000102,56.078180237000154],[21.190365031000113,56.08445892400009],[21.205351196000095,56.103424174000125],[21.212585897000082,56.13099355100003],[21.229639119000097,56.16318796800009],[21.25485721800007,56.185202128000135],[21.29041060300011,56.20693206800014],[21.327617635000106,56.2243728640001],[21.358313436000056,56.233235373000106],[21.40368534300009,56.23447560700005],[21.41929162600013,56.23739532500004],[21.558921346000147,56.29728831000001],[21.59602502500013,56.3078819790001],[21.684495076000076,56.31010406600008],[21.965321874000068,56.383676718000046],[21.98317307100004,56.388353479],[22.094082479000065,56.417410177000065],[22.139144328000015,56.41570485400008],[22.158161255000095,56.410252991],[22.195264933000146,56.394853414000025],[22.214901977000096,56.390383403],[22.511731404000045,56.39596445800011],[22.575810180000076,56.38772206700018],[22.57822170300011,56.38700291600018],[22.604748982000046,56.37909210200003],[22.649087361000085,56.35309885700018],[22.666347290000147,56.34909393400009],[22.681436808000058,56.35030833000012],[22.822926880000093,56.38286448200016],[22.859602846000143,56.397069962],[22.888969360000146,56.408444316000114],[22.924522746,56.41211334300003],[22.95697554500012,56.401984762000055],[22.981366822000066,56.373175151000126],[23.01671350100014,56.323849996000135],[23.06229211400006,56.30416127600007],[23.11272831200006,56.310879212000096],[23.162854451000072,56.341006572000175],[23.15417281100011,56.35139353400011],[23.172569620000104,56.3579564410001],[23.288428182000075,56.373045960000084],[23.31064904800013,56.370591329000135],[23.37803970300007,56.354629849],[23.48159468600008,56.33010284500013],[23.517561482000133,56.32865590400003],[23.577712850000093,56.348603007000136],[23.60985559100004,56.35382232700005],[23.679412069000108,56.35185862200014],[23.706697225000138,56.354442444000036],[23.715068807000108,56.35273712200008],[23.723543742000114,56.345812480000106],[23.724783976000136,56.33839691200008],[23.723647094000057,56.33211822600007],[23.72499068200011,56.32881093400009],[23.756099894000073,56.325968730000014],[23.8250362550001,56.334908753000136],[23.85810917200007,56.334391989],[23.871106925000106,56.33207213000016],[23.981305786000064,56.31240366600012],[24.075150187000133,56.27119171200012],[24.108636516000047,56.26070139600007],[24.138918905000082,56.25744578000008],[24.14042161800006,56.25760022600015],[24.16682417800007,56.260313823000054],[24.28764367700009,56.29553131100012],[24.31854618400007,56.298580221000165],[24.35079227700004,56.29155222600015],[24.4143542890001,56.26550730400008],[24.44722049900014,56.26052052800013],[24.481326945000088,56.268840435000165],[24.538997843000086,56.287624817000086],[24.5579114170001,56.298580221000165],[24.639146770000078,56.35997182200005],[24.678627563000106,56.37728342700014],[24.71503953100006,56.386252988000116],[24.80554488100009,56.40854766900004],[24.815570109000102,56.40880605100001],[24.837687622000118,56.40394846599999],[24.845852498000056,56.404930319000144],[24.852157023000075,56.413663635000134],[24.853397257000097,56.42472239300004],[24.857117960000096,56.435367737000135],[24.870967245000084,56.442602437000104],[24.89225793400007,56.43872670600014],[24.910137980000115,56.42195770299999]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Luxembourg","sov_a3":"LUX","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Luxembourg","adm0_a3":"LUX","geou_dif":0,"geounit":"Luxembourg","gu_a3":"LUX","su_dif":0,"subunit":"Luxembourg","su_a3":"LUX","brk_diff":0,"name":"Luxembourg","name_long":"Luxembourg","brk_a3":"LUX","brk_name":"Luxembourg","brk_group":null,"abbrev":"Lux.","postal":"L","formal_en":"Grand Duchy of Luxembourg","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Luxembourg","name_alt":null,"mapcolor7":1,"mapcolor8":7,"mapcolor9":3,"mapcolor13":7,"pop_est":491775,"gdp_md_est":39370,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"LU","iso_a2":"LU","iso_a3":"LUX","iso_n3":"442","un_a3":"442","wb_a2":"LU","wb_a3":"LUX","woe_id":23424881,"woe_id_eh":23424881,"woe_note":"Exact WOE match as country","adm0_a3_is":"LUX","adm0_a3_us":"LUX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"LUX.geojson"},"geometry":{"type":"Polygon","coordinates":[[[6.038628377000094,50.14841298500005],[6.061366008000078,50.150738424000075],[6.070047648000127,50.15420074500013],[6.076455525000085,50.15864491800005],[6.084206991000086,50.159316712000106],[6.097126098000103,50.15130686500003],[6.101466919000075,50.142108460000145],[6.100330037000077,50.13265167300008],[6.102603800000082,50.12474517900003],[6.117486613000039,50.120456035000075],[6.110561971000037,50.10598663400003],[6.105704386000127,50.09224070200008],[6.099399861000109,50.06412872300007],[6.101156861000078,50.06340525400006],[6.107151327000111,50.063766988000054],[6.10942509000003,50.06356028300009],[6.105704386000127,50.06030466800013],[6.096402629000096,50.048625794000145],[6.10725467900005,50.044595032000046],[6.113765910000012,50.03637848000002],[6.119967081000084,50.015501200000045],[6.117176554000139,50.00439076800012],[6.12151737500011,49.99627756800004],[6.138777303000097,49.979327698000105],[6.153970174000051,49.95121571900009],[6.161928345000092,49.9424824020001],[6.172677043000107,49.95622833300004],[6.18983361800008,49.938296611000084],[6.222699829000106,49.88713694300006],[6.238306111000043,49.8769050090001],[6.27220585200007,49.86713816400004],[6.286778605000109,49.86104034500008],[6.291532837000119,49.8555626430001],[6.295567892000093,49.84861569200012],[6.301558065000052,49.83830271400009],[6.30259159400012,49.834943747000096],[6.310653116000111,49.83447865900007],[6.325639282000083,49.84036977200006],[6.33442427500006,49.840214742000114],[6.351374145000078,49.833290100000056],[6.380106242000067,49.81556508400012],[6.397056111000097,49.80858876600013],[6.414522746000046,49.805488180000076],[6.462478475000069,49.805488180000076],[6.493277629000119,49.799597066000075],[6.4972050370001,49.799442038000045],[6.502579387000139,49.795669658000115],[6.502269327000078,49.795876363000076],[6.500098918000077,49.7944811000001],[6.499995564000044,49.786057841000115],[6.498548624000051,49.785386048000106],[6.493794392000069,49.76363026900003],[6.493691040000044,49.756550598000075],[6.496378214000059,49.75210642500008],[6.495964803000049,49.74823069300004],[6.486249634000018,49.74270131500003],[6.485526163000117,49.73376129200008],[6.487799926000122,49.72559641600009],[6.492554158000132,49.71841339100013],[6.499685506000076,49.71221221900004],[6.49100386500001,49.714434306000044],[6.486352986000043,49.71293569000005],[6.482942342000115,49.70807810500011],[6.489763631000073,49.70296213800003],[6.49172733600011,49.70079172800004],[6.418243449000045,49.669889222000045],[6.402740519000133,49.655781555],[6.404497518000113,49.652474264],[6.410905396000145,49.649632060000044],[6.417003215000108,49.64575632700007],[6.417933390000144,49.639141745000074],[6.415246216000128,49.63464589400007],[6.407701457000087,49.6274111940001],[6.397572876000112,49.61387196900011],[6.371527954000044,49.59299469000003],[6.356438435000142,49.57759511300006],[6.350754028000097,49.56658803400006],[6.350754028000097,49.53491038100005],[6.348808550000058,49.52528975500013],[6.342279094000105,49.49300079400007],[6.345379679000132,49.46271840400004],[6.345307071000092,49.45534865200011],[6.325329224000085,49.45672393800004],[6.298767538000078,49.46623240200012],[6.251116525000042,49.48945977800011],[6.249364868000072,49.49031361900006],[6.221976359000109,49.49744496700009],[6.193554321000079,49.49940867200012],[6.136090129000081,49.49527455600008],[6.142601359000139,49.486076152000095],[6.11438602700008,49.484370830000046],[6.10725467900005,49.482510478000016],[6.1019836830001,49.47641265900006],[6.102087036000056,49.47000478100003],[6.099813273000109,49.464630432000064],[6.087720988000029,49.461633199000055],[6.078005819000083,49.452021383000044],[6.063329711000108,49.448455710000076],[5.978063599000052,49.44509674100007],[5.960700317000118,49.441324362000046],[5.946954386000101,49.469953105000116],[5.928144165000077,49.48230377200008],[5.864685506000029,49.49217397100006],[5.8395707600001,49.49987376000004],[5.822104126000055,49.51051910500004],[5.790684855000023,49.53775258500013],[5.814456014000086,49.545142314000145],[5.837400350000109,49.561110332000084],[5.846908813000113,49.576716614000134],[5.829958944000083,49.58276275600007],[5.841224406000066,49.58968739800005],[5.849182577000107,49.59971262600007],[5.861998331000109,49.62276031600004],[5.869956502000149,49.62885813500009],[5.879878377000068,49.634852601000034],[5.88545943200009,49.64353424100008],[5.879878377000068,49.65774526000004],[5.872643676000081,49.66172434500004],[5.852593221000063,49.663222962000134],[5.845771932000104,49.666581930000035],[5.842257934000145,49.67391998300013],[5.843704874000139,49.677485657],[5.846702108000045,49.680689596000065],[5.847218872000099,49.68720082700013],[5.848769165000107,49.69273020500006],[5.853626749000028,49.69629587800011],[5.857347453000045,49.70042999300005],[5.856402764000052,49.70580745000009],[5.856003865000076,49.70807810500011],[5.850216105000101,49.71402089400004],[5.843704874000139,49.71433095400002],[5.837296997000095,49.71293569000005],[5.831715942000073,49.71360748300003],[5.82572147600004,49.71577789400001],[5.81176884000007,49.71851674500004],[5.805360961000105,49.72187571300006],[5.805774373000133,49.724201152],[5.803603963000029,49.73815378900008],[5.802053670000105,49.742856344000074],[5.778489217000099,49.77303538000007],[5.771874634000113,49.7793915820001],[5.759162231000062,49.78445587200008],[5.748413533000132,49.7856444300001],[5.73828495300009,49.78884836800005],[5.727742960000114,49.80021718400004],[5.721645142000057,49.81277455700007],[5.720198202000063,49.82471181300011],[5.724642374000069,49.83427195300001],[5.73652795400011,49.839439596],[5.726916137000103,49.84522735700008],[5.728673136000083,49.84884470700007],[5.730533488000077,49.8511701460001],[5.73198042800007,49.85416738],[5.731877075000056,49.85995513900008],[5.758128702000078,49.858198141000116],[5.748826945000047,49.86729319300008],[5.726709432000035,49.87819692000004],[5.714927205000038,49.881865946000026],[5.718957967000051,49.89137441000011],[5.75358117600004,49.93018341100006],[5.757611939000128,49.936539612000104],[5.759989054000073,49.94160390200008],[5.7637097570001,49.94682322200009],[5.771564575000127,49.95354115800012],[5.778592570000058,49.956590067000036],[5.793372029000068,49.95881215500006],[5.801640258000106,49.96382476800011],[5.812595662000091,49.97757070000005],[5.808564901000096,49.983100078000035],[5.801536906000081,49.98868113300006],[5.802673787000089,50.0024787400001],[5.808874959000065,50.00780141200005],[5.829132121000071,50.01358917300013],[5.836366821000126,50.018550110000064],[5.838847290000102,50.02645660400003],[5.838847290000102,50.03586171500007],[5.837710408000105,50.04743723600012],[5.843704874000139,50.05363840800001],[5.858277628000081,50.06180328400012],[5.864375447000043,50.06748769100008],[5.866855916000105,50.07430898100003],[5.868819621000057,50.09053538100005],[5.872436971000127,50.09689158100005],[5.888973429000116,50.1066067510001],[5.926180461000058,50.11833730100008],[5.941063273000083,50.128310852000084],[5.949021444000067,50.14267690000011],[5.953155558000077,50.156371155],[5.961630493000087,50.16562123600005],[5.982921183000144,50.16706817700003],[5.998320760000041,50.174974671000086],[6.004728638000074,50.170478821000046],[6.008035929000073,50.160918681000055],[6.014133749000051,50.15358062800007],[6.022966606000097,50.150820360000125],[6.027362915000139,50.14944651300004],[6.038628377000094,50.14841298500005]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Latvia","sov_a3":"LVA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Latvia","adm0_a3":"LVA","geou_dif":0,"geounit":"Latvia","gu_a3":"LVA","su_dif":0,"subunit":"Latvia","su_a3":"LVA","brk_diff":0,"name":"Latvia","name_long":"Latvia","brk_a3":"LVA","brk_name":"Latvia","brk_group":null,"abbrev":"Lat.","postal":"LV","formal_en":"Republic of Latvia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Latvia","name_alt":null,"mapcolor7":4,"mapcolor8":7,"mapcolor9":6,"mapcolor13":13,"pop_est":2231503,"gdp_md_est":38860,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"LG","iso_a2":"LV","iso_a3":"LVA","iso_n3":"428","un_a3":"428","wb_a2":"LV","wb_a3":"LVA","woe_id":23424874,"woe_id_eh":23424874,"woe_note":"Exact WOE match as country","adm0_a3_is":"LVA","adm0_a3_us":"LVA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"LVA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[25.333678019000104,58.03180776000005],[25.33987919100008,58.032582906000044],[25.346390421000137,58.03444325800007],[25.356519002000084,58.03475331700014],[25.396619914000098,58.023177796000084],[25.457184692000055,57.984058736000065],[25.496613810000067,57.97059702600009],[25.531960489000056,57.966437073000066],[25.541675659000106,57.96281972300009],[25.550253947000044,57.95532664000007],[25.551815984000143,57.94985951000007],[25.55211429800005,57.948815410000094],[25.552941122000078,57.94217498800009],[25.558315470000107,57.93424265600004],[25.579399455000072,57.919463196],[25.601516968000055,57.912202658000126],[25.62508142100006,57.91029063000011],[25.65009281400006,57.91142751100003],[25.703799772000053,57.92132652400009],[25.714998413000103,57.923390605000066],[25.73029463700007,57.92313222300001],[25.745384155000067,57.90917958600011],[25.75468591300009,57.8888965860001],[25.76750166800008,57.86892364600007],[25.792616415000083,57.85597869900007],[26.00273278800009,57.84597931000013],[26.014515015000086,57.84282704700009],[26.021956421000112,57.83794362400007],[26.025263713000097,57.82840932200008],[26.021749715000055,57.82241485600013],[26.016065308000094,57.81647206700012],[26.013068074000074,57.80729950000003],[26.016065308000094,57.78668060300003],[26.024746948000143,57.774355774000064],[26.135231161000092,57.7247722380001],[26.168510783000016,57.704049988000094],[26.26318200700004,57.62082509400008],[26.297185099000075,57.59914683000008],[26.33862959800004,57.58315297500013],[26.351325150000033,57.580203001000115],[26.430678413000066,57.56176425200001],[26.430923706000012,57.561707255000094],[26.44756351700005,57.55292226200003],[26.481049846000133,57.52713572200011],[26.499550008000057,57.51581858300005],[26.515052938000082,57.51726552400003],[26.528695516000084,57.52388010700011],[26.54223474100007,57.528169251000094],[26.551743205000065,57.52682566400002],[26.570243367000074,57.51959096300007],[26.579855183000088,57.51783396500007],[26.59008711800007,57.52036610900007],[26.594841349000063,57.526489767000044],[26.59835534700011,57.533853659000044],[26.604763224000067,57.540313213000104],[26.634322144000095,57.554420879000126],[26.666981649000064,57.56485951800008],[26.70046797600014,57.570750631000074],[26.778085978000064,57.56847686800006],[26.795759318000137,57.57131907100011],[26.816326538000055,57.581189270000095],[26.82831547100008,57.595038555000066],[26.83854740400008,57.609869690000096],[26.854153687000117,57.62255625400014],[26.872653849000127,57.6271812950001],[26.884952840000096,57.6220911660001],[26.896114950000108,57.61498565700009],[26.911617880000023,57.613435364000054],[26.929187866000092,57.61555409800013],[26.946551148000108,57.61534739200007],[26.981071004000086,57.60899119100014],[27.00463545800011,57.5989142860001],[27.041325724000075,57.568451030000034],[27.061531209000066,57.55566111300007],[27.085354045000116,57.54943410300007],[27.165659220000066,57.54669525200012],[27.319965047000068,57.51612864200012],[27.352934611000137,57.52760081000014],[27.528169393000038,57.52847930900008],[27.522795044000073,57.49202158700007],[27.525637248000066,57.468379619000046],[27.514836873000036,57.44788991300006],[27.51132287600006,57.43039744100011],[27.536282593000067,57.415695496000126],[27.64082401500005,57.38900461800008],[27.694408720000066,57.35637528700002],[27.707951701000095,57.34812856100006],[27.809134155000095,57.31394460100009],[27.827737671000136,57.30495290200014],[27.840295044000072,57.290638529000056],[27.846134481000032,57.26730662100002],[27.84117354300008,57.211211853000066],[27.83393884200012,57.18049021500013],[27.824327027000038,57.159070333000095],[27.7940446370001,57.14338653600004],[27.7009753830001,57.11878855500006],[27.6822168380001,57.103699036000044],[27.696066121000058,57.0854572560001],[27.722059367000043,57.07799001100008],[27.745468791000093,57.06799062100006],[27.75073978600011,57.04235911100008],[27.74577884900009,57.03145538300003],[27.729552450000057,57.00985463500007],[27.72335127800008,56.99879587800007],[27.72076745600009,56.9886672980001],[27.718545369000083,56.96872019500009],[27.715134724000052,56.95740305600003],[27.648730510000092,56.87926829100007],[27.62836999500007,56.84415415500004],[27.644379266000072,56.841771673000096],[27.6611845300001,56.83927073200002],[27.744073527000097,56.86479889000006],[27.7863965250001,56.8712584430001],[27.830838257000096,56.8642821250001],[27.85223230000011,56.85430857300011],[27.891506388000067,56.82971059200011],[27.913520548000065,56.820150452000114],[27.91889489700011,56.80588775700004],[27.90008467600009,56.78304677400013],[27.87610681100008,56.759430644000105],[27.865461467000102,56.742687480000086],[27.882618042000047,56.7254792280001],[27.981009969000098,56.68700612400005],[27.991345255000084,56.66997874000003],[27.99217207900011,56.6249944060001],[27.997443074000046,56.60383290600004],[28.01098229900012,56.58755483],[28.028655640000125,56.57675445600009],[28.108650757000074,56.55517954600003],[28.126117391000033,56.5477639770001],[28.132215210000084,56.535981751000094],[28.125238892000084,56.5271450810001],[28.099245647000117,56.513399150000076],[28.093251180000095,56.501591086000076],[28.09645511900007,56.49195343100004],[28.104516642000135,56.48306508400003],[28.156503133000086,56.44621978800012],[28.16425459800007,56.43795155900008],[28.167871948000055,56.42712534600014],[28.16425459800007,56.392812195],[28.16714847800006,56.36986785900007],[28.17443485500013,56.34963653600008],[28.214794148000095,56.28137196900013],[28.217274617000072,56.27072662400013],[28.21531091300005,56.255998841000036],[28.209419800000063,56.248144023000094],[28.201358276000065,56.24168446900006],[28.193141724000043,56.23103912400006],[28.184408406000042,56.20752634700005],[28.17862064600007,56.18391021800005],[28.169112182000106,56.161741028000016],[28.148906697000115,56.14241404300008],[28.11097619600011,56.156805929000086],[28.068239787000095,56.14758168600008],[28.0511000380001,56.14066599700004],[28.023798055000015,56.129649964000095],[27.981009969000098,56.11802276700004],[27.939668823000147,56.11306182900009],[27.92705977400004,56.10936696400009],[27.911453491000085,56.100246074],[27.901531617000103,56.08934234600005],[27.892746622000118,56.077095032000045],[27.880654337000124,56.06386586600013],[27.812544800000126,56.034513651000054],[27.781228882000107,56.01637522400003],[27.776991414000065,55.99239736],[27.74443526200011,55.95973785400013],[27.645009806000104,55.9228408810001],[27.617156209000115,55.878554179000076],[27.61012821400001,55.830960185000066],[27.601498251000063,55.80961781900006],[27.592713256000078,55.794244080000084],[27.564601278000055,55.792228699000134],[27.43882084200007,55.7987399290001],[27.405851277000124,55.80434682300012],[27.374587036000037,55.81483713800006],[27.34962731900003,55.831218567000114],[27.32916345200007,55.81757599000011],[27.282447957000073,55.79186696400012],[27.263017619000095,55.78721608500007],[27.23552575700003,55.79584605000011],[27.173203980000096,55.82574086500002],[27.151448201000075,55.83245880200005],[27.11077884900004,55.83628285800009],[26.981071004000086,55.82687774700014],[26.979425815000127,55.826290963000076],[26.957816610000094,55.818583680000074],[26.900145711000107,55.77871531200006],[26.84278487200004,55.71933909200004],[26.822837769000103,55.706109925000135],[26.74304935700013,55.68285553000001],[26.72010502100008,55.68187367800004],[26.66687829600005,55.69396596300004],[26.64010990400007,55.695567933000056],[26.615615275000096,55.68797149700009],[26.594531291000067,55.666990866000106],[26.537480509000062,55.66952301000009],[26.481049846000133,55.67830800500007],[26.342350301000067,55.716341858000106],[26.27971846600013,55.7432394410001],[26.226905152000086,55.7969312540001],[26.20375411000009,55.827446187000106],[26.178639364000077,55.84958953900011],[26.07942061300011,55.89813954700011],[26.017615600000113,55.937361959000064],[25.961251118000064,55.95845883400008],[25.871267944000067,55.99213897700014],[25.79549603400005,56.040130340000104],[25.766261434000114,56.058646546000034],[25.7087972410001,56.0810482790001],[25.69660160300009,56.08789540600006],[25.68781661000011,56.098334046000105],[25.66921309400007,56.13202708000005],[25.66187504100006,56.14081207300003],[25.64967940300005,56.14380930700014],[25.590044800000044,56.14112213100003],[25.57288822400008,56.14303415900014],[25.522762085000068,56.15657338500011],[25.45480757700011,56.14964874300005],[25.349085703000128,56.159876323000105],[25.109195597000106,56.18308339500004],[25.07312544700011,56.19781117800002],[25.04397994000007,56.227990214000044],[25.026203247000037,56.260184632000055],[25.016488077000105,56.26989980100012],[24.983208456000053,56.29049285900001],[24.973183228000035,56.30075063100008],[24.96212447100004,56.31927663200011],[24.936286255000113,56.37991892500011],[24.910137980000115,56.421957703000025],[24.89225793400007,56.4387267060001],[24.87096724500006,56.44260243700003],[24.857117960000096,56.435367737000064],[24.853397257000097,56.42472239300008],[24.852157023000075,56.413663635000056],[24.845852498000056,56.404930319000094],[24.837687622000118,56.403948466000024],[24.815570109000102,56.408806051000056],[24.80554488100009,56.408547669000086],[24.71503953100006,56.38625298800008],[24.678627563000106,56.377283427000094],[24.639146770000078,56.359971822000084],[24.5579114170001,56.298580221000094],[24.538997843000057,56.287624817000015],[24.481326945000088,56.26884043500013],[24.44722049900014,56.26052052800005],[24.4143542890001,56.26550730400004],[24.35079227700004,56.2915522260001],[24.31854618400007,56.298580221000094],[24.28764367700009,56.29553131100007],[24.16682417800004,56.260313823000104],[24.14042161800006,56.25760022600011],[24.138918905000082,56.257445780000126],[24.108636516000047,56.260701396000115],[24.075150187000133,56.27119171200007],[23.981305786000036,56.31240366600005],[23.871106925000106,56.332072130000114],[23.85810917200007,56.33439198900004],[23.82503625500007,56.33490875300006],[23.756099894000045,56.325968730000056],[23.72499068200011,56.32881093400002],[23.72364709400003,56.332118226000034],[23.724783976000136,56.338396912000114],[23.723543742000114,56.345812480000035],[23.715068807000108,56.352737122000114],[23.706697225000113,56.354442444000085],[23.679412069000108,56.351858622000094],[23.609855591000013,56.35382232700002],[23.577712850000093,56.348603007000094],[23.517561482000133,56.328655904000065],[23.48159468600008,56.330102845000084],[23.37803970300007,56.35462984900005],[23.31064904800013,56.370591329000064],[23.288428182000075,56.37304596000012],[23.172569620000104,56.35795644100005],[23.15417281100011,56.35139353400007],[23.162854451000072,56.34100657200014],[23.11272831200006,56.31087921200006],[23.06229211400006,56.30416127600011],[23.01671350100014,56.32384999600006],[22.981366822000066,56.373175151000076],[22.95697554500012,56.40198476200009],[22.924522746,56.412113343000044],[22.888969360000146,56.40844431600007],[22.859602846000143,56.397069962000046],[22.822926880000093,56.382864482000116],[22.681436808000058,56.350308330000075],[22.666347290000147,56.349093934000024],[22.649087361000085,56.353098857000106],[22.604748982000018,56.37909210200007],[22.57822170300011,56.38700291600011],[22.575810180000076,56.38772206700011],[22.511731404000045,56.395964458000066],[22.214901977000096,56.39038340300004],[22.195264933000146,56.39485341400007],[22.158161255000095,56.41025299100005],[22.139144328000015,56.415704854000126],[22.094082479000065,56.41741017700008],[21.98317307100004,56.388353479000045],[21.965321874000068,56.38367671800006],[21.684495076000076,56.31010406600003],[21.59602502500013,56.30788197900003],[21.558921346000147,56.297288310000056],[21.41929162600013,56.23739532500008],[21.40368534300009,56.23447560700009],[21.358313436000056,56.23323537300004],[21.327617635000106,56.22437286400005],[21.29041060300011,56.2069320680001],[21.25485721800004,56.1852021280001],[21.229639119000097,56.16318796800002],[21.212585897000054,56.13099355100007],[21.205351196000095,56.103424174000075],[21.190365031000113,56.08445892400004],[21.150160767000102,56.078180237000105],[21.091352986000118,56.07789601700006],[21.053398015984044,56.07260387399782],[21.053396030000044,56.07261790600006],[21.053396030000044,56.07294342700007],[21.05258222700013,56.077541408000116],[21.04273522200012,56.11456940300005],[21.02881920700014,56.14740631700005],[20.984060092000107,56.21043528900005],[20.973399285000056,56.23200104400007],[20.969086134000065,56.2534854190001],[20.971039259000122,56.259670315000044],[20.98023522200009,56.279282945000034],[20.98267662900011,56.290757554000066],[20.98267662900011,56.3014590520001],[20.98145592500009,56.3104922550001],[20.97095787900014,56.3498395850001],[20.968597852000073,56.36981842700007],[20.970550977000126,56.38898346600004],[20.97901451900006,56.404364325000074],[20.992523634000037,56.41791413000004],[20.998383009000094,56.42568594000005],[21.003184441000087,56.434800523000035],[21.00538170700005,56.44586823100008],[21.00554446700002,56.46552155200004],[21.010590040000068,56.47573476800005],[21.00326582100007,56.492580471000046],[21.00049889400009,56.510646877000084],[21.006358269000145,56.51996491100002],[21.024261915000096,56.51048411700003],[21.030528191000144,56.500148830000114],[21.035817905000016,56.473944403000075],[21.04468834700006,56.462103583],[21.030528191000144,56.44843170800007],[21.037445509000037,56.44464752800004],[21.04468834700006,56.4422061220001],[21.04468834700006,56.42796458500001],[21.04468834700006,56.421128648],[21.030528191000144,56.40810781500011],[21.053396030000044,56.3899600280001],[21.061778191000116,56.3870303410001],[21.070160352000073,56.389349677000034],[21.077159050000144,56.3952090520001],[21.07976321700005,56.40306224200009],[21.06861412900014,56.42405833500001],[21.06666100400008,56.4418399110001],[21.068125847000147,56.45880768400008],[21.07211347700013,56.469549872000094],[21.067637566000144,56.47638580900011],[21.063243035000085,56.493963934000135],[21.05836022200009,56.50364817900001],[21.05290774800008,56.51105377800007],[21.048106316000087,56.515611070000034],[21.030528191000144,56.52415599200006],[21.019541863000086,56.52708567900006],[21.01050866000008,56.52777741100002],[21.003103061000104,56.530015367],[20.996348504000135,56.53782786700008],[20.99219811300011,56.548895575000124],[20.99512780000012,56.55337148600009],[21.000336134000122,56.55768463700008],[21.01050866000008,56.59870026200011],[21.046153191000116,56.65619538000009],[21.05836022200009,56.688666083000065],[21.065196160000113,56.774318752000056],[21.061208530000044,56.79413483300007],[21.054209832000055,56.81195709800005],[21.052744988000114,56.82892487200013],[21.065196160000113,56.84634023600009],[21.14722741000014,56.87641022300005],[21.156748894000117,56.8855654970001],[21.222911004000107,56.907700914],[21.24097741000014,56.91828034100004],[21.277598504000082,56.94912344000011],[21.2877710300001,56.955511786000045],[21.30014082100004,56.9595401060001],[21.32821699300007,56.97361888200004],[21.360118035000085,56.98969147300002],[21.382497592000075,57.008937893000045],[21.40162194100006,57.03750234600005],[21.413584832000083,57.073187567000105],[21.41480553500011,57.11383698100008],[21.411875847000086,57.124457098000015],[21.4010522800001,57.15131256700002],[21.403168165000093,57.16205475500004],[21.412608269000117,57.176214911000045],[21.41480553500011,57.18488190300004],[21.412608269000117,57.25006745000007],[21.41480553500011,57.27090078300003],[21.421397332000083,57.288723049000104],[21.433604363000057,57.3064639340001],[21.449473504000082,57.32001373900007],[21.46656334700012,57.325506903000104],[21.48023522200006,57.333644924000026],[21.51775149800008,57.38760000200003],[21.589121941000087,57.438788153000075],[21.699229363000086,57.55532461100012],[21.729665561000047,57.573797919000036],[21.771657748000024,57.58612702000007],[21.955902540000096,57.592962958000015],[21.999278191000144,57.600327867],[22.194509311000076,57.657619533000066],[22.483734571000127,57.7424990910001],[22.526133660000113,57.749660549000055],[22.54908287900011,57.75063711100012],[22.560313347000115,57.75275299700013],[22.572601759000065,57.75682200700009],[22.58578535200013,57.75971100500002],[22.600271030000073,57.75804271],[22.610362175000116,57.754624742],[22.61011803500008,57.75348541900007],[22.60499108200008,57.75104401200011],[22.600271030000073,57.743841864000075],[22.590830925000148,57.70612213700011],[22.587168816000087,57.66498444200004],[22.590993686000104,57.64476146],[22.600759311000047,57.630113023],[22.656097852000045,57.58576080900008],[22.878916863000086,57.48126862200005],[22.950368686000047,57.43280670800007],[23.03142337300008,57.39447663000004],[23.08334394600007,57.378241278000104],[23.117523634000065,57.373928127000084],[23.130218946000127,57.37079498900002],[23.133148634000065,57.362982489000046],[23.13355553500014,57.3530947940001],[23.138031446000127,57.34316640800011],[23.160166863000086,57.31858958500001],[23.16456139400009,57.31366608300004],[23.174571160000053,57.29734935100003],[23.18238366000014,57.27765534100006],[23.19019616000014,57.2424990910001],[23.198741082000083,57.22418854400004],[23.21355228000004,57.21625397300008],[23.22242272200009,57.207017320000034],[23.25049889400009,57.11444733300004],[23.260915561000076,57.09894440300013],[23.27491295700014,57.092718817000076],[23.29265384200005,57.088934637000044],[23.340098504000135,57.058579820000055],[23.422862175000088,57.040228583000015],[23.508555535000085,57.03123607],[23.520843946000127,57.02558014500001],[23.569672071000127,56.986273505000014],[23.578623894000145,56.98208242400008],[23.585134311000044,56.97907135600008],[23.632009311000104,56.97093333500007],[23.695160352000073,56.967271226],[23.866058790000125,56.990179755000014],[23.926931186000047,57.006333726000065],[23.952891472000147,57.013251044000064],[23.991221550000063,57.03123607],[24.009287957000083,57.04559967700007],[24.021983269000142,57.05902741100007],[24.03565514400009,57.06899648600006],[24.07455488400009,57.07493724200009],[24.11304772200009,57.08873118700009],[24.210785352000073,57.1237246770001],[24.21924889400009,57.1380069030001],[24.238617384000122,57.149562893000024],[24.261241082000083,57.15745677300009],[24.27857506600006,57.16103750200005],[24.27881920700011,57.17177969000008],[24.288747592000103,57.17890045800004],[24.31267337300008,57.188299872000044],[24.379161004000082,57.230210679000066],[24.400645379000107,57.2581240910001],[24.408864780000012,57.29816315300013],[24.405528191000087,57.34446849200003],[24.381602410000113,57.46942780200009],[24.37989342500012,57.50653717700001],[24.37517337300011,57.528550523],[24.364512566000087,57.53839752800013],[24.358571811000047,57.55036041900007],[24.36296634200005,57.5766055360001],[24.37476647200012,57.61347077000004],[24.363047722000115,57.67226797100005],[24.357676629000053,57.685492255000106],[24.313731316000116,57.72504303600004],[24.29957116000011,57.743841864000075],[24.29957116000011,57.761908270000106],[24.28882897200009,57.80890534100013],[24.285980665000064,57.83258698100004],[24.28882897200009,57.8452822940001],[24.296153191000087,57.857367255000014],[24.306158734217973,57.86818625586187],[24.349655395000127,57.85864003600008],[24.378180786000087,57.859441020000105],[24.40153853300012,57.866469014000096],[24.41270064300005,57.87657175700004],[24.42913374800011,57.900342916000106],[24.441639445000106,57.908094381000126],[24.481326945000088,57.91930816700008],[24.533830200000068,57.94506886800007],[24.553880656000103,57.9474201460001],[24.624057251000096,57.94395782500006],[24.68482873500008,57.94757517500006],[24.70043501800012,57.95418975800004],[24.718831828000134,57.98183665000005],[24.73350793500012,57.992197774000054],[24.76472050000009,57.987908631],[24.79076542100009,57.97899444600008],[24.816810344000146,57.97666900700006],[24.827417479000076,57.9818769360001],[24.84833296700012,57.992146098000056],[24.87251753700008,58.000440165000015],[24.949308716000047,58.006434631000054],[24.974836873000097,58.015839742000075],[25.034856819000083,58.04857408500004],[25.048837524000106,58.05619903600007],[25.070644978000132,58.06361460400006],[25.094209432000127,58.0673094690001],[25.141028280000057,58.06800710100006],[25.166969848000093,58.05873118100004],[25.180715780000128,58.03816396100007],[25.189914184000116,58.01351430300008],[25.20210982200004,57.99196523000012],[25.21678593000013,57.98537648600012],[25.232495565000104,57.98537648600012],[25.264534953000094,57.99418731800011],[25.2843787030001,58.00813995400011],[25.277557414000057,58.02410797200014],[25.24954878800014,58.051186422000086],[25.250685669000035,58.068498027],[25.26350142400011,58.075138449000086],[25.281691528000067,58.07340728800005],[25.29957157400011,58.065604147000016],[25.306392863000067,58.05873118100004],[25.31827844300011,58.040618592000044],[25.32458296700011,58.03475331700014],[25.333678019000104,58.03180776000005]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Monaco","sov_a3":"MCO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Monaco","adm0_a3":"MCO","geou_dif":0,"geounit":"Monaco","gu_a3":"MCO","su_dif":0,"subunit":"Monaco","su_a3":"MCO","brk_diff":0,"name":"Monaco","name_long":"Monaco","brk_a3":"MCO","brk_name":"Monaco","brk_group":null,"abbrev":"Mco.","postal":"MC","formal_en":"Principality of Monaco","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Monaco","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":12,"pop_est":32965,"gdp_md_est":976.3,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"MN","iso_a2":"MC","iso_a3":"MCO","iso_n3":"492","un_a3":"492","wb_a2":"MC","wb_a3":"MCO","woe_id":23424892,"woe_id_eh":23424892,"woe_note":"Exact WOE match as country","adm0_a3_is":"MCO","adm0_a3_us":"MCO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"MCO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[7.437454032063101,43.743360540917394],[7.432845087000061,43.73985254800007],[7.417956880000105,43.73090382500004],[7.404319061000052,43.71796907700007],[7.380722515000058,43.71927314100006],[7.365750207000076,43.722730283000026],[7.367262599000071,43.734124533000085],[7.372655477000051,43.745832215000036],[7.387538289000105,43.757898662000116],[7.406968628000072,43.763505554000034],[7.426246111000125,43.75546422900004],[7.437454032063101,43.743360540917394]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Moldova","sov_a3":"MDA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Moldova","adm0_a3":"MDA","geou_dif":0,"geounit":"Moldova","gu_a3":"MDA","su_dif":0,"subunit":"Moldova","su_a3":"MDA","brk_diff":0,"name":"Moldova","name_long":"Moldova","brk_a3":"MDA","brk_name":"Moldova","brk_group":null,"abbrev":"Mda.","postal":"MD","formal_en":"Republic of Moldova","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Moldova","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":4,"mapcolor13":12,"pop_est":4320748,"gdp_md_est":10670,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"MD","iso_a2":"MD","iso_a3":"MDA","iso_n3":"498","un_a3":"498","wb_a2":"MD","wb_a3":"MDA","woe_id":23424885,"woe_id_eh":23424885,"woe_note":"Exact WOE match as country","adm0_a3_is":"MDA","adm0_a3_us":"MDA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MDA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[27.60687259900004,48.457818502000165],[27.627026408000116,48.451255595000084],[27.75177331500009,48.45197906599999],[27.785259643000103,48.44156626400014],[27.849855184000063,48.40963022900017],[27.864841349000127,48.39890736900015],[27.885371499000144,48.378443876000134],[27.896674032000078,48.36717804000013],[27.904528849000116,48.36247548400014],[27.92643965600007,48.3394277950001],[27.96705733200011,48.32888580400014],[28.003176857000113,48.325882843],[28.055940796000044,48.32149607400014],[28.07640466300012,48.31493316700014],[28.092837768000066,48.30206573500005],[28.098315471000063,48.28410817500015],[28.078678426000124,48.24491160100003],[28.093251180000095,48.237444357000086],[28.115575399000136,48.236746725],[28.131078329000076,48.23958892899999],[28.162084188000076,48.25718475400005],[28.17851729300014,48.258864238000015],[28.18575199400004,48.24237945600013],[28.189369344000113,48.223052470000184],[28.19991133600007,48.211735332],[28.216964559000104,48.208143820000124],[28.240322307000042,48.21163197900007],[28.261716349000064,48.21995188400014],[28.277529337000146,48.22912445100003],[28.294479207000077,48.23648834300003],[28.3405745850001,48.2401056930001],[28.35773116100006,48.238607076],[28.368169800000086,48.23062306800012],[28.370030151000094,48.21163197900007],[28.36336389200008,48.191013082000076],[28.352253458000064,48.18186635400009],[28.337887410000064,48.17548431500016],[28.322177775000082,48.16321116100012],[28.3155631920001,48.14928436300011],[28.317423543000103,48.135357565000064],[28.328585653000115,48.12701182000008],[28.349566284000048,48.129724833000026],[28.364965861000112,48.14150706000011],[28.3755595290001,48.156648255000114],[28.388633667000136,48.168585511000074],[28.411578003000074,48.17070424400005],[28.427287639000042,48.16336619100015],[28.43689945500006,48.14985280399999],[28.435659221000037,48.13468577100015],[28.4190194090001,48.122231751000086],[28.44744144700013,48.08275095700015],[28.459378703000084,48.0744568890001],[28.479584188000075,48.064922588000016],[28.490022827000104,48.06549102800007],[28.493743531000092,48.074818624],[28.494156942000103,48.09184600900012],[28.499790098000087,48.10891363000012],[28.501081584000104,48.11282664000014],[28.501113053000125,48.11288926600015],[28.51932336400006,48.1491293340001],[28.54159590600011,48.15595062300007],[28.573635295000113,48.154968771000185],[28.665619344000106,48.129337260000014],[28.735072469000073,48.12869130500006],[28.771245972000113,48.12445383699999],[28.799254598000115,48.11179311100015],[28.80592085800004,48.103809103000074],[28.808349650000082,48.096574402000115],[28.809176473,48.089778952000174],[28.811553589000138,48.08290598600011],[28.827573283000103,48.057016094000076],[28.83077722100009,48.03086781900008],[28.83253422100006,48.024821676000116],[28.839252156000068,48.018284607000126],[28.855685262000065,48.00792348300002],[28.862085148000062,48.00050207700015],[28.882557007000056,47.97676259400008],[28.914803101000103,47.95314646400005],[28.936086736000046,47.94216435599999],[28.95035648600006,47.934801331000145],[28.980845581000064,47.92637807199999],[29.017225790000055,47.931080628000146],[29.061047404000135,47.96976043800005],[29.092725057000052,47.98017323800009],[29.11003666200014,47.97965647400006],[29.12398929800014,47.97598744700015],[29.136288290000092,47.96818430600002],[29.147967163000146,47.95536855100015],[29.15582198100009,47.93986562100004],[29.164606974000094,47.905604147000034],[29.17256514500013,47.89100555400016],[29.186621134000063,47.883641663000056],[29.225998576000077,47.87558014000017],[29.23602380300011,47.87072255500006],[29.23276818800011,47.85707997600004],[29.217420288000227,47.842894796000095],[29.19892012500011,47.82948476200014],[29.186724487000102,47.81821930000008],[29.177732788000043,47.80070098900001],[29.177836141000085,47.78971974700015],[29.187447957000103,47.78320851700006],[29.22196781400018,47.77481109600008],[29.234731893000145,47.76680125000003],[29.23860762500007,47.756000875],[29.22667036900023,47.74323679600012],[29.196956421000063,47.71750193300012],[29.191478719000084,47.686263529000044],[29.192408895000145,47.650916850000115],[29.182073609000042,47.61321889300008],[29.156183716000097,47.582781474000015],[29.130500529000102,47.55963043300012],[29.117426391000066,47.53332712800007],[29.130397176000088,47.49320037800008],[29.130500529000102,47.49309702600005],[29.130603882000056,47.493045350000116],[29.130655558000058,47.49294199700002],[29.137188792000074,47.48400843200007],[29.14000899300009,47.48015208000014],[29.15561527500006,47.44999888100012],[29.1638835040001,47.439379374000154],[29.182073609000042,47.42987091100015],[29.192408895000145,47.435813701000185],[29.201865682000207,47.446588237000114],[29.218350464000107,47.45160085],[29.232613159000064,47.44632985500014],[29.250699910000066,47.42537506100013],[29.28139571100021,47.41147410100017],[29.288217001000163,47.40077708000017],[29.292712850000186,47.38886566200013],[29.3008260500001,47.37819447900013],[29.314675333000164,47.37271677700012],[29.330384969000217,47.37049469000014],[29.345836222000145,47.36584381100006],[29.358910360000063,47.35271799800002],[29.364078002000184,47.336879171000085],[29.36449141500012,47.32243560799999],[29.367592,47.30822459000002],[29.37088151900016,47.304433933],[29.380821167000104,47.29298004100018],[29.39446374500002,47.28471181300013],[29.409553263000166,47.27975087599999],[29.425572957000075,47.27866567000008],[29.441696004000075,47.28212799100011],[29.459162638000212,47.29349680600002],[29.466087280000096,47.307449442000014],[29.470634806000103,47.32274566700006],[29.480866740000096,47.33827443500008],[29.501072225000115,47.33982472800001],[29.52096765200011,47.338920390000155],[29.539881225000073,47.334217835000075],[29.55657271400017,47.324037578],[29.570060262000226,47.306777649000125],[29.579258667000232,47.28360076900013],[29.580188843000112,47.260449727000136],[29.568716675000104,47.24313812300012],[29.544015340000072,47.23424977700002],[29.540397990000116,47.212545675000015],[29.55062992300006,47.16017161100008],[29.54484216300008,47.13557362900009],[29.5303727620001,47.12368805000007],[29.508668660000154,47.119398906000114],[29.480866740000096,47.11748687800009],[29.4785929760001,47.114644674000104],[29.477869507000122,47.11154408800017],[29.478696330000016,47.10846934100014],[29.480866740000096,47.10523956300007],[29.511459188000146,47.06601715100011],[29.5201408290001,47.05991933200015],[29.530992879000138,47.06601715100011],[29.53972619700019,47.078884582000015],[29.55135339400007,47.090201721000156],[29.5701636150001,47.09144195600011],[29.58339278100018,47.08521494500003],[29.594864950000076,47.074595439000134],[29.602099650000152,47.06100453800006],[29.603029826000096,47.045759989000096],[29.595433390000064,47.03214325],[29.58339278100018,47.02278981600007],[29.57248905500009,47.01175689700007],[29.564995972000162,46.974498190000034],[29.560625743000088,46.96125639500014],[29.559828329000055,46.95884023000009],[29.558691447000086,46.94574025500013],[29.567476440000032,46.9346556600001],[29.57316084800018,46.93372548500015],[29.59848230000009,46.935379130000015],[29.607577352000163,46.9320201630001],[29.623286987000114,46.91954030400002],[29.631865275000138,46.914398499000114],[29.648091675000078,46.91041941400012],[29.680854533000144,46.90855906200012],[29.696150757000197,46.90468332900015],[29.712480509000073,46.89344370600013],[29.735838257000097,46.86719207800009],[29.754131714000067,46.85801951100008],[29.785757690000167,46.85466054300018],[29.815213257000067,46.85662424800002],[29.843635294000165,46.85414377900004],[29.872212361000066,46.837710673000075],[29.876914917000107,46.8307860310001],[29.884873087000102,46.812673442000076],[29.889627319000084,46.80716990200007],[29.89851566600012,46.80665313800013],[29.90771407000008,46.810942282],[29.91742924000002,46.81396535300003],[29.928177938000232,46.809753723000156],[29.930658406000102,46.80308746400006],[29.930451701000177,46.78164174400014],[29.931795288000128,46.77244333900013],[29.935671021000104,46.76515696300005],[29.94667810100006,46.75073923800014],[29.951122273000095,46.74311696400015],[29.952620890000187,46.72469431600017],[29.94440433800017,46.66247589100006],[29.940270223000226,46.6507970170001],[29.93541263800014,46.64185699500014],[29.931898641000174,46.63237436900009],[29.93127852400019,46.61917104100009],[29.9349475500002,46.608835755000186],[29.947401570000096,46.588346049000116],[29.949675334000204,46.57886342400006],[29.93809981200016,46.55734019],[29.916085652000078,46.55436879500009],[29.898825724000147,46.55312856100015],[29.901926310000107,46.53083018000008],[29.916085652000078,46.51881541000013],[29.960217326000162,46.50594797800012],[29.962077677000167,46.50344167100015],[29.96703861400013,46.49385569300013],[29.97055261200009,46.49173696000015],[29.977063843000135,46.49318390000015],[29.989259481000232,46.49868743900005],[29.994943889000098,46.49853241000004],[30.002850383000148,46.494217428000134],[30.009413290000143,46.48806793199999],[30.021712280000173,46.470652975000135],[30.01406416800009,46.46202301000001],[30.060004516000078,46.43680491100004],[30.077006063000194,46.42282643700004],[30.08692793800017,46.42887258000009],[30.102017456000084,46.430732931000094],[30.118243856000188,46.428691712000145],[30.131576375000094,46.42282643700004],[30.10718510000018,46.39189809200006],[30.081140177000204,46.37419891400005],[30.03726688600008,46.36892791800001],[29.91866947400015,46.373656311],[29.90254642700009,46.37117584300002],[29.88466638200012,46.36419952400003],[29.84776941000021,46.341461894000034],[29.828132365000073,46.339394837000086],[29.808185262000084,46.35469106100014],[29.806169882000205,46.36156402600001],[29.806738322000143,46.380891012000134],[29.80508467600012,46.38998606400013],[29.80033044400014,46.39835764600009],[29.77955651900018,46.42109527600017],[29.72694991000017,46.455796],[29.714134155000096,46.471169739000075],[29.713824097000124,46.443057760000144],[29.702868693000113,46.42832997600014],[29.68271488500008,46.42292978900018],[29.654396199000043,46.422697245],[29.647988322000202,46.41639272100009],[29.652949259000163,46.39189809200006],[29.64550785300017,46.3755941780001],[29.63207198100011,46.366059876000016],[29.615638875000144,46.36182240900017],[29.598585653000125,46.3630626430001],[29.582979370000174,46.369651388000094],[29.569440145000186,46.38228627600013],[29.55564253800011,46.404197083],[29.5414315190001,46.413033752999986],[29.52747888200011,46.416651103000056],[29.49605961100022,46.420811056],[29.480866740000096,46.425151877000175],[29.47507898000006,46.43225738600002],[29.473321981000165,46.43980214500006],[29.4752856850001,46.44755360900017],[29.480866740000096,46.45551178000012],[29.486241089000178,46.462488098000115],[29.488204793000104,46.4693610640001],[29.486447795000146,46.47587229500006],[29.480866740000096,46.482047628000046],[29.45761234500011,46.484708965000046],[29.45672369000013,46.484366324000135],[29.43683842000004,46.4766991180001],[29.418234904000116,46.462488098000115],[29.374723348000064,46.41618601500015],[29.36211429900007,46.415927633000145],[29.34423425300011,46.434169414000124],[29.32077315300009,46.46874094700003],[29.306717163000116,46.471996562000115],[29.289147176000224,46.45163604700018],[29.285943238000044,46.43949208600016],[29.290697469000037,46.41926076300008],[29.290077352000168,46.410243225000116],[29.283256062000223,46.39742747000004],[29.278191772000156,46.395877178000134],[29.271370484000183,46.39742747000004],[29.2591748450001,46.39435272300001],[29.222897990000117,46.36647328800013],[29.200677124000062,46.3571198530001],[29.183727254000072,46.36717091900012],[29.183417196000107,46.377609558000145],[29.19034183700009,46.38719553600008],[29.1992818600001,46.3964972940001],[29.205638061000144,46.406109111000106],[29.207601766000177,46.41789133800002],[29.206774943000113,46.50251149500009],[29.20021203600007,46.52398305300012],[29.18424401800013,46.53803904300007],[29.18305928500007,46.5380418910001],[29.16274662200007,46.53809071900015],[29.074948364000107,46.50367421500012],[29.055914596000097,46.49874020099999],[29.020326375000078,46.48951487200016],[28.945808960000132,46.45478831000004],[28.925448446000104,46.43277415000015],[28.919247274000014,46.404662171000105],[28.92730879700011,46.368023580000155],[28.944878784000082,46.32073964500002],[28.945808960000132,46.30497833300002],[28.939917847000117,46.28699493500012],[28.93288985200013,46.272628886000135],[28.933509969000085,46.25898630800013],[28.95061486800006,46.24312164400011],[28.95076989800009,46.24306996700001],[28.984112143000065,46.221221024000116],[29.009836059000126,46.20436431899999],[29.015365438000114,46.18260854099999],[29.003479858000105,46.15894073600005],[28.980845581000064,46.13212066700005],[28.94642907700009,46.10509389300001],[28.93878096500003,46.089280905000024],[28.94115808100008,46.064682922000046],[28.958934773000095,46.02101633800008],[28.956867717000133,46.001379293000056],[28.931959676000076,45.99316274000002],[28.757603393000096,45.96117502900002],[28.74024011200009,45.95321685800015],[28.729181356000083,45.938644104],[28.72840620900007,45.92195261700005],[28.74230717000006,45.88732940700005],[28.74644128400007,45.870586243],[28.745046021000093,45.85048411100005],[28.738276407000058,45.83756500300002],[28.725564006000095,45.82878000900014],[28.70639205000009,45.82113189700006],[28.67729821800009,45.81658437100013],[28.66975345900005,45.812036845000094],[28.669391724000036,45.80630076100011],[28.671923868000107,45.797257386000084],[28.673267456000076,45.78687042300005],[28.66975345900005,45.77731028300015],[28.64360518400011,45.76650990800012],[28.57668420400006,45.76191070600007],[28.560612834000068,45.74320383700008],[28.563525429000094,45.735494026000154],[28.56764082800009,45.72460032200003],[28.561439657000108,45.716590475000075],[28.532500855000137,45.71007924399999],[28.515240926000047,45.702017721000104],[28.504182169000046,45.693697815000135],[28.48092777500011,45.66946156900015],[28.47400313300005,45.657937725000025],[28.482891480000063,45.650754700000064],[28.49849776200008,45.64429514600012],[28.511313517000076,45.635045065],[28.516894572000098,45.62098907500008],[28.518754923000103,45.607036438000094],[28.523095744000074,45.59323883100013],[28.536893351000113,45.579802959000105],[28.510435018000123,45.57101796500011],[28.504595581000046,45.567245586000084],[28.50374338900008,45.566102402000084],[28.498239380000115,45.55871897400006],[28.49798099800006,45.55644521100005],[28.500048055000036,45.55458486000005],[28.50645593200005,45.52058176700011],[28.502011760000045,45.508747864],[28.48092777500011,45.50197825100004],[28.41684899900011,45.503786926000046],[28.341918172000135,45.517636211000095],[28.270501343000063,45.521511943000135],[28.27042337800009,45.521470690000015],[28.2172746170001,45.493348288],[28.217171264000058,45.49319325800015],[28.217171264000058,45.493141581000046],[28.20848962400009,45.481411031000064],[28.201564982000036,45.46885365800013],[28.19949792500006,45.46177398700003],[28.172936239000133,45.484356588000146],[28.165908244000036,45.49458852200006],[28.16539147900008,45.528281556000096],[28.164047892000042,45.53060699500013],[28.161567423000065,45.532725729],[28.15774336700011,45.538926899999986],[28.140948527000063,45.56021759100015],[28.118004191000125,45.57272328700016],[28.06214196800005,45.59360056600003],[28.074751017000068,45.60486602800002],[28.091184123000115,45.61597646100002],[28.10772058100011,45.62439971900001],[28.120846394000097,45.62770701100011],[28.153712606000113,45.62750030600016],[28.167975302000087,45.632461243000094],[28.161774129000094,45.645432027000126],[28.16373783400013,45.66150339799999],[28.154952840000135,45.76180735300015],[28.146477906000143,45.771160787],[28.128907918000067,45.79503529900007],[28.113301636000127,45.82536936400011],[28.110511109000072,45.85430816600008],[28.114955282000096,45.85973419200015],[28.128184449000088,45.866400452000065],[28.131078329000076,45.87136139000002],[28.129114624000124,45.87513376900013],[28.120226278000104,45.887846172000096],[28.117435751000073,45.89523590100002],[28.11877933800011,45.903142395000046],[28.122810099000105,45.91079050800012],[28.124980510000114,45.91838694300018],[28.120846394000097,45.92629343700004],[28.114851928000064,45.93321807900013],[28.112371460000077,45.939212545000046],[28.110511109000072,45.95042633100009],[28.08611983300005,46.000552471000034],[28.08270918800011,46.01471181200016],[28.0844661860001,46.024582011000135],[28.09686853100007,46.05967030900008],[28.096558471000094,46.06504465800005],[28.090460652000047,46.06799021400003],[28.090150594000136,46.0733645640001],[28.092837768000066,46.078377177000064],[28.100795939000136,46.081994527000134],[28.10782281200005,46.096102956000045],[28.110506470000132,46.10149115700001],[28.127357625000055,46.13532460500012],[28.133248739000067,46.159974264000034],[28.14472090600009,46.183228659000136],[28.141516968000104,46.19196197500012],[28.135625855000114,46.198834941000186],[28.129321329000078,46.204674378000064],[28.11097619600011,46.22560333300005],[28.108960816000064,46.23412994400017],[28.120846394000097,46.23785064700009],[28.13211185700004,46.23991770400015],[28.13448897300009,46.24534373000004],[28.131078329000076,46.262396952000145],[28.135212443000086,46.269321595000136],[28.144927612000117,46.272938945000035],[28.156296428000104,46.27536773800007],[28.16575321400009,46.27883005800011],[28.177793824000076,46.287046611000065],[28.191333049000036,46.30776886000008],[28.19288334100014,46.31123118100011],[28.191953165000115,46.32350433400016],[28.18792240400012,46.34378733300015],[28.190351197000066,46.35107371100007],[28.202391805000047,46.353915914000126],[28.207146037000143,46.35815338100018],[28.212933797000115,46.38869415300017],[28.219548380000102,46.393345032000056],[28.226796348000107,46.395548249000065],[28.228643433000087,46.39610972100009],[28.233294312000055,46.40176829000002],[28.226059611000068,46.41535919200011],[28.240218953000124,46.420268454000144],[28.246058390000112,46.427864889000105],[28.247246948000022,46.436184794000084],[28.247143595000097,46.467190654000106],[28.245800008000028,46.47551055900005],[28.242337687000088,46.47651825000004],[28.238100220000064,46.475588074000186],[28.234121134000077,46.47806854200014],[28.22109867400013,46.495767721000064],[28.21903161600008,46.503725891000116],[28.22109867400013,46.541191305000105],[28.22476770000011,46.54873606400015],[28.234121134000077,46.55312856000013],[28.225439494000113,46.56956166600012],[28.230503784000092,46.5839018760001],[28.24052901200011,46.596381735000094],[28.247143595000097,46.60715627000003],[28.24735030100007,46.62082468700005],[28.24508530900007,46.631451272],[28.244249715000105,46.63537160300011],[28.234121134000077,46.66242421500006],[28.17810388200013,46.73983551100017],[28.178155558000068,46.758645732],[28.137796264000084,46.806239726000044],[28.121518188000064,46.83430002900015],[28.122615287000087,46.84226951900017],[28.1242570390001,46.85419545500015],[28.1242570390001,46.86163686100018],[28.11309493000007,46.87142954600013],[28.11433516400012,46.88339264000008],[28.1135600180001,46.89476145400009],[28.09686853100007,46.902616273000106],[28.1054468180001,46.91767995300002],[28.104994100000113,46.92018474300015],[28.10229455600006,46.935120748000045],[28.08270918800011,46.971526795000116],[28.069066609000117,46.988502503000134],[28.038146337000057,47.01548293500014],[28.03702722200012,47.01645945300005],[28.028035522000067,47.03297007300012],[28.008295125000103,47.026303813000126],[27.98659102400012,47.0332284550001],[27.963129924000043,47.04338287400007],[27.938738647000093,47.046638489000046],[27.938428589000125,47.061056214000146],[27.925922892000127,47.06875600200006],[27.89760420700011,47.08141672800009],[27.867011759000036,47.10464528500001],[27.8577100010001,47.10932200100008],[27.848201538000097,47.111414897000046],[27.843757365000098,47.114386291000145],[27.849855184000063,47.12172434500006],[27.849855184000063,47.128519795999985],[27.80655033400009,47.14461700500006],[27.794664754000053,47.1558307910001],[27.805878540000094,47.15823374400016],[27.8076872150001,47.16247121200003],[27.80479333500011,47.168491517000135],[27.80210616000008,47.17634633400009],[27.800349162000114,47.17696645200006],[27.788308553000036,47.20427744600006],[27.763038778000066,47.22631744400014],[27.752393433000066,47.23892649400009],[27.753633667000116,47.251432190000074],[27.73327315300008,47.27561676100005],[27.722834513000034,47.28331654900013],[27.697823120000066,47.287502340000074],[27.689864950000096,47.290887146],[27.682320191000144,47.29525380500009],[27.671726521000068,47.29985300800014],[27.644699748000104,47.30398712200015],[27.636948283000095,47.306674296],[27.6240291740001,47.321427918000026],[27.59994795700007,47.360727844000095],[27.588723990000062,47.36738939800016],[27.58640873200008,47.36876353000015],[27.572352743000064,47.37519724500011],[27.58031091300012,47.40599640000009],[27.56253422000009,47.416538391000145],[27.565531454000105,47.428268942000116],[27.569355509000047,47.43855255200013],[27.574781535000113,47.446252340000015],[27.582998087000135,47.450670675000126],[27.5758667390001,47.46041168200016],[27.56315433800006,47.46834401500003],[27.54816817200009,47.47426096600013],[27.534525594000087,47.477981670000034],[27.53297530100005,47.47741322899999],[27.507240438000082,47.477981670000034],[27.501452678000106,47.47994537400008],[27.497525268000114,47.48242584300006],[27.492564331000068,47.48454457600003],[27.483675985000076,47.48542307600014],[27.4731339920001,47.491779276999985],[27.466726115000142,47.506352031000134],[27.459491414000098,47.53322377500013],[27.456907593000093,47.53389556900014],[27.446055542000124,47.53487742200009],[27.442128134000086,47.536634420000084],[27.440061076000116,47.54102691700017],[27.440267782000063,47.550096131000046],[27.438975870000036,47.553713481000116],[27.435823608000074,47.55994049100012],[27.43134229800009,47.57263753500002],[27.429403890000117,47.578129692000076],[27.428382202000137,47.58102447500012],[27.397066284000115,47.589085999000034],[27.369161011000127,47.60830963200005],[27.304048706000057,47.66654897100006],[27.281104370000037,47.69300730400006],[27.272009318000045,47.71496978800003],[27.29505700700011,47.718173727000085],[27.29505700700011,47.72442657500001],[27.28957930500013,47.73168711400008],[27.291129598000055,47.7424099740001],[27.288114459000067,47.75068006700011],[27.28751224700008,47.75233184900018],[27.2824479570001,47.7556908160001],[27.26467126400007,47.76455332500011],[27.260847208000115,47.769075013000034],[27.256196329000147,47.77754994800013],[27.24487919100008,47.79258778900011],[27.231081584000037,47.80708302900013],[27.21919600400011,47.81377512600007],[27.25340580200009,47.82808949800007],[27.245809367000046,47.83659027200017],[27.23490564000008,47.84020762200005],[27.222813355000085,47.84266225200003],[27.212374715000067,47.84793324800016],[27.213201538000078,47.85413442000005],[27.211547892000112,47.88501108800013],[27.212374715000067,47.88950693800014],[27.19418461100011,47.90405385400011],[27.171550333000138,47.91263214200013],[27.1606982830001,47.92172719300011],[27.178268270000075,47.9379277550001],[27.178268270000075,47.94209566700009],[27.178268270000075,47.94412892700011],[27.171963746000074,47.94642852800003],[27.15098311300008,47.9577973430001],[27.16286869300009,47.96500620600007],[27.169793335000094,47.97379119900016],[27.16875980600011,47.98306711900007],[27.15718428500014,47.991955465],[27.14374841300011,47.986839498],[27.13460168500012,48.00045623800009],[27.121475871000143,48.01319447800016],[27.095792684000084,48.00559804300009],[27.093363892000095,48.008440247000166],[27.091451864000106,48.011850891],[27.090004924000112,48.01562327100011],[27.088971395000016,48.01980906200004],[27.109331910000066,48.026087748000165],[27.109331910000066,48.03350331700006],[27.08318363500004,48.04365773600013],[27.05920577000012,48.05804962100014],[27.04173913600007,48.077273253999984],[27.03429772900006,48.10176788400003],[27.03688155100008,48.107348938000044],[27.047423543000036,48.11649566600011],[27.047954757000124,48.121409387000156],[27.048043661000094,48.122231751000086],[27.042772664000065,48.12729604100015],[27.033677612000105,48.132386170000146],[27.02509932500007,48.13504750600008],[27.0126969800001,48.12812286399999],[26.993990112000116,48.132412008000145],[26.966601603000072,48.14336741200013],[26.966601603000072,48.14959442200002],[26.986238647000107,48.15042124400004],[26.997607463000094,48.1579401660001],[26.997607463000094,48.166570129000135],[26.9630876060001,48.17538096200003],[26.955646199000086,48.18600046900012],[26.950581909000103,48.197524313000045],[26.938127889000043,48.204810689000126],[26.929084513000074,48.19904876700015],[26.917715699000098,48.18796417300013],[26.90800052900005,48.18452769000011],[26.90396976700006,48.201451722000016],[26.89766524200013,48.208970642000146],[26.855497274000072,48.2378319300001],[26.84474857600014,48.233310242000165],[26.82190759300005,48.252533875],[26.804906047000145,48.258269959000145],[26.763719930000065,48.252740580000065],[26.7440312090001,48.255582784000026],[26.733127482000043,48.27074981700004],[26.722378784000114,48.25976857500014],[26.711475057000143,48.26131886800009],[26.68853072100012,48.27483225600007],[26.665741415000124,48.274212138000095],[26.617889038000044,48.25896759100014],[26.618612508000126,48.26718414300008],[26.625123739000088,48.28289377800006],[26.636079142000057,48.294882711000085],[26.669100382000124,48.308809509000085],[26.67400964400008,48.32170277900009],[26.679797404000052,48.330177714000094],[26.69943444900008,48.325113424],[26.712973674000068,48.31490732800013],[26.72361901900007,48.302582499],[26.73591801000009,48.29183380100007],[26.754573202000074,48.28614939400001],[26.774365275000036,48.287182923],[26.78573409000012,48.2941075640001],[26.790074911000115,48.307052511],[26.789351440000104,48.32594024700013],[26.784080444000065,48.34516388000016],[26.77818933100008,48.357204488000136],[26.777517538000097,48.36617035000007],[26.78805953000005,48.37596303300005],[26.79358890800006,48.37627309200012],[26.810073690000138,48.37188059500012],[26.816946655000095,48.37172556600007],[26.825628296000072,48.377771708000026],[26.82841882400004,48.38513560000003],[26.831932821000095,48.391362610000115],[26.84278487200004,48.39373972600005],[26.87596114100006,48.383998719000104],[26.90872399900013,48.36524017400002],[26.943243856000038,48.35126169900011],[26.981071004000114,48.355680034000116],[26.990579468000078,48.36237213100004],[26.997814168000048,48.36154530900002],[27.00463545800011,48.358754781000144],[27.015590861000078,48.35940073700011],[27.02768314600007,48.35774709100018],[27.033057495000037,48.36020172200013],[27.031817260000082,48.36524017400002],[27.02850996900008,48.370795390000026],[27.027786499000086,48.3747744760001],[27.028199910000097,48.381389059000114],[27.025409383000067,48.389863994],[27.026339559000093,48.39709869400015],[27.037398315000104,48.399682516000084],[27.048043661000094,48.39766713500002],[27.068817586000137,48.38888214200013],[27.175787801000098,48.36180369099999],[27.20855065900011,48.36061513300014],[27.246481160000116,48.37374094700011],[27.25193001700012,48.37831004100015],[27.306012411000097,48.4236603800001],[27.342185913000034,48.43611440100007],[27.36140954600006,48.43280710900008],[27.38983158300007,48.415004578000136],[27.403474161000076,48.41149058100008],[27.42021732500012,48.417149150000014],[27.480885458000103,48.45141062500012],[27.503829794000126,48.47236541800011],[27.503896381000057,48.47236541800011],[27.545170939000087,48.47236541800011],[27.5570565190001,48.47435496100014],[27.582998087000135,48.48603383400005],[27.604805542000065,48.48412180600012],[27.60687259900004,48.457818502000165]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Macedonia","sov_a3":"MKD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Macedonia","adm0_a3":"MKD","geou_dif":0,"geounit":"Macedonia","gu_a3":"MKD","su_dif":0,"subunit":"Macedonia","su_a3":"MKD","brk_diff":0,"name":"Macedonia","name_long":"Macedonia","brk_a3":"MKD","brk_name":"Macedonia","brk_group":null,"abbrev":"Mkd.","postal":"MK","formal_en":"Former Yugoslav Republic of Macedonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Macedonia, FYR","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":2066718,"gdp_md_est":18780,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"MK","iso_a2":"MK","iso_a3":"MKD","iso_n3":"807","un_a3":"807","wb_a2":"MK","wb_a3":"MKD","woe_id":23424890,"woe_id_eh":23424890,"woe_note":"Exact WOE match as country","adm0_a3_is":"MKD","adm0_a3_us":"MKD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MKD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.345023234000053,42.31343902600014],[22.443621867000047,42.21442698200013],[22.481449015000123,42.193317160000106],[22.494678182000115,42.16455922500009],[22.50693853400014,42.14892727600005],[22.510181112000026,42.14479299000004],[22.531058390000112,42.12910919300006],[22.617771443000066,42.08270375600006],[22.627176665000036,42.07912659200011],[22.675855753000036,42.060612081000045],[22.705724731000146,42.05593536400008],[22.71027225800009,42.05298980800009],[22.713992961000116,42.048623149000086],[22.718437134000112,42.044463196000066],[22.7250517170001,42.04247365400002],[22.770630330000103,42.04399810800004],[22.780862264000064,42.0431712860001],[22.785306437000088,42.0391405230001],[22.787683553000136,42.03257761600014],[22.791094198000053,42.025808004000076],[22.79894901500009,42.021234640000046],[22.805977010000106,42.02138966900009],[22.821273234000046,42.02536875400008],[22.82695764200011,42.02508453400009],[22.838223104000065,42.01947764100006],[22.843700806000044,42.014465027000114],[22.84562115900013,42.00740772900008],[22.845767863000106,42.006868592000046],[22.846594686000028,41.993639425000055],[22.846904744000113,41.99348439500011],[22.85475956200014,41.98263234500007],[22.857136678000103,41.97188364700014],[22.858893677000083,41.94787994400011],[22.866335083000106,41.924883932000085],[22.877083781000124,41.90204294900008],[22.878634073000057,41.895014954000146],[22.878220662000047,41.88026133300005],[22.88080448400012,41.87269073500008],[22.88208830500011,41.87161827500009],[22.88504195200008,41.86915089900003],[22.896720825000045,41.86444834400007],[22.901371704000013,41.86041758200005],[22.907676229000113,41.84858367900006],[22.918321573000128,41.81434804300005],[22.939715617000047,41.776701762000094],[22.94591678800012,41.7693378700001],[22.956872192000105,41.76566884400012],[22.98053999800004,41.764738668000064],[22.991185344000115,41.76099212700004],[23.008858683000113,41.73993398000002],[23.00958215300011,41.716369528000115],[22.998626750000142,41.693115133000106],[22.9854345280001,41.67719775700007],[22.97661259000006,41.66655344600007],[22.970101359000097,41.65203236900003],[22.967000773000052,41.647045594000076],[22.96152307100007,41.64448761100007],[22.945813436000094,41.64107696600007],[22.940852498000137,41.63764048300004],[22.936098266000045,41.626168315000115],[22.9329976810001,41.612344869000054],[22.93206750500005,41.59795298300014],[22.9337211510001,41.5845946250001],[22.936925090000074,41.57891021800006],[22.946433553000073,41.567748108000046],[22.948707316000082,41.560978495000086],[22.94788049300007,41.55513905900011],[22.943022909000035,41.5385509240001],[22.943599338000126,41.52320117600007],[22.94622684800009,41.45323313500012],[22.947570435000074,41.448375549000104],[22.953358195000135,41.438195293000035],[22.95459842900007,41.43240753200007],[22.95211796000009,41.427704976000086],[22.94054244000006,41.416904602000045],[22.937338501000085,41.410755107000085],[22.939405558000146,41.38941274000007],[22.944469849000114,41.368432109000075],[22.940852498000137,41.34982859300004],[22.916977986000063,41.33577260400011],[22.82602746600014,41.34099192300002],[22.796817682000036,41.337039223],[22.78096561600009,41.33489410400006],[22.762293452000048,41.32250021100008],[22.751303345000053,41.31520538400011],[22.74200348000008,41.28702955600005],[22.740864705,41.28357940700002],[22.736730591000082,41.20441111300002],[22.72722212700009,41.16580881800013],[22.715749959000078,41.145603333000054],[22.704897908000135,41.13966054300002],[22.691875448000104,41.14456980400007],[22.67409875500007,41.156610413000124],[22.666347290000147,41.16451690700006],[22.661903117000065,41.172268372000076],[22.657185370000064,41.17698611900008],[22.656115356000072,41.17805613200005],[22.644539835000046,41.18022654300006],[22.62934696500011,41.177074280000085],[22.62593632000008,41.169787903],[22.62676314300009,41.16079620300007],[22.62448938000008,41.15263132800004],[22.607332804000123,41.13599151600002],[22.590176229000065,41.125139466000064],[22.58663401000007,41.124084543],[22.57126265500011,41.119506735000044],[22.54924849400004,41.11852488200009],[22.51658898900007,41.122245586000076],[22.500672648000148,41.12214223200007],[22.481449015000123,41.11774973600006],[22.467496379000124,41.11501088500011],[22.451476684000085,41.11366729700006],[22.421814413000103,41.11464915000002],[22.41044559700012,41.117904765000105],[22.389258260000076,41.12834340500004],[22.380163208000113,41.13170237300005],[22.367657512000108,41.132374166000034],[22.342336060000036,41.128963522000014],[22.32342248500009,41.12849843400008],[22.3150509030001,41.12441599500007],[22.308746379000095,41.12498443600003],[22.306679321000047,41.12844675800008],[22.305232381000053,41.14162424700007],[22.302648560000137,41.14549998000009],[22.29345015400014,41.147515361000046],[22.262961060000066,41.15046091800005],[22.225133912000075,41.15960764600004],[22.213636841000035,41.16068357500006],[22.205806926000037,41.16141632100005],[22.183172648000067,41.15991770400012],[22.160331665000083,41.15190785700014],[22.1243648680001,41.12720652300004],[22.103384237000085,41.12152211500009],[22.09594283000007,41.123640849000076],[22.062766561000075,41.13718007400004],[22.060286092000098,41.14002227800012],[22.058632446000047,41.145086568000096],[22.055531860000087,41.149892477],[22.048193807000104,41.15185618200013],[22.044059692000072,41.149944153000035],[22.033827759000104,41.141262512000054],[22.029073527,41.13857533800012],[21.96509810400002,41.12436431900008],[21.934712362000084,41.11191029900007],[21.925545235000072,41.10675379000011],[21.90908085100011,41.09749257400006],[21.901226034000075,41.09077463800014],[21.897195272000086,41.08126617500005],[21.896332709000117,41.06470496500014],[21.896161743000107,41.061422425000075],[21.894301391000084,41.0538259890001],[21.88065881400007,41.03842641200003],[21.845002075000078,41.01238149000005],[21.831462850000037,40.99372629800007],[21.83135949700008,40.99367462200007],[21.83135949700008,40.99362294500014],[21.831256144000065,40.99351959200001],[21.79363570200013,40.97357249000009],[21.783713826000053,40.96416737900003],[21.781853475000048,40.95589915000008],[21.781750122000116,40.945098776000066],[21.77813277200002,40.93372996000008],[21.765523722000097,40.92391143800009],[21.757090880000106,40.92250596400007],[21.73699833200004,40.91915720600011],[21.685115194000048,40.92799387700011],[21.656899861000085,40.918227030000054],[21.654832805000126,40.9142996220001],[21.652662394000032,40.90138051300008],[21.648838339000093,40.895799459000074],[21.643877400000065,40.894455872000094],[21.629511353000055,40.89507598900008],[21.62372359200006,40.89440419500008],[21.613698364000044,40.88830637600003],[21.590340617000095,40.87068471300003],[21.581555623000014,40.86629221700014],[21.553650350000026,40.87042633100006],[21.50951867700013,40.90050201400004],[21.505730550000067,40.90090282200009],[21.429420207000074,40.908976949000134],[21.404925577000114,40.90861521400004],[21.381257772000083,40.90050201400004],[21.34487756400011,40.87306182900008],[21.329271281000075,40.86629221700014],[21.295371541000065,40.86086619100007],[21.260955037000112,40.860814514000054],[21.245824293000055,40.86322578800008],[21.209071899,40.86908274400011],[21.183026977000026,40.8701679480001],[21.112126912000065,40.8539415490001],[20.965262492000075,40.84939402300006],[20.964849080000135,40.87595570900007],[20.956684204000027,40.89476593100008],[20.939941040000093,40.907064921000114],[20.89022831200009,40.91827870700007],[20.837414999000117,40.924066468000035],[20.83654426400011,40.923903755000076],[20.81695113100008,40.92024241100009],[20.78367150900004,40.899055074000046],[20.766101522000042,40.8937324020001],[20.7408834230001,40.897969870000054],[20.730572639000087,40.904611095000035],[20.717215617000075,40.91321441700009],[20.702746216000033,40.93631378200007],[20.683419230000084,40.9938296520001],[20.66409224400013,41.05914866200004],[20.65386031000014,41.07527170800003],[20.6430082600001,41.081576233000135],[20.634128612000094,41.0825761940001],[20.63153609200009,41.08286814400009],[20.618927042000053,41.08240305600006],[20.60528446400005,41.08348826100007],[20.597419353000074,41.08627262500005],[20.57696578000005,41.09351348900009],[20.569937785000064,41.107104390000075],[20.570557902000104,41.12482940700007],[20.565493611000136,41.14741200800003],[20.549680623000143,41.170614726000025],[20.512680297000088,41.21014719700008],[20.50007124800007,41.23552032500007],[20.483121379000067,41.28947052000012],[20.477747029000113,41.3195978810001],[20.47810834000006,41.32158509000004],[20.481674439000074,41.341198629000075],[20.496040487000073,41.33778798500006],[20.510406534000083,41.34440256800005],[20.523428995000103,41.356804912000115],[20.532937459000095,41.37044749000003],[20.53996545400011,41.38713897700006],[20.540172160000054,41.40067820200005],[20.539048843000018,41.40294387500009],[20.534074341000093,41.41297719400009],[20.52218876100008,41.42568959600003],[20.514644002000125,41.429461976000056],[20.498004191000092,41.4314773560001],[20.49087284300006,41.436024883000044],[20.488909139000043,41.441450908000036],[20.486842082000063,41.457780660000054],[20.48353479000008,41.46548044900004],[20.48159697500006,41.46826901200012],[20.470822388000016,41.483773905000106],[20.463174275000142,41.48976837200004],[20.452012166000117,41.49359242700009],[20.4449841710001,41.50847524100004],[20.447878052000075,41.53545033800006],[20.44415734900008,41.54966135600011],[20.492939901000028,41.55767120400009],[20.50740930200007,41.56227040600004],[20.5208451740001,41.568368225000114],[20.52932010900011,41.574879456000076],[20.534694458000075,41.58526641900011],[20.534670174000013,41.587324468000105],[20.53459110500006,41.594025574000085],[20.513403768000103,41.64040517200007],[20.50833947800001,41.66174753900009],[20.500381307000055,41.73409454400013],[20.503275187000042,41.74463653600008],[20.511336710000137,41.75794321700002],[20.521155232000098,41.76765838700007],[20.54440962800001,41.7847632860001],[20.550920858000094,41.79352244100008],[20.550136327000104,41.80006020100012],[20.54844038900012,41.8141930130001],[20.540482218000136,41.83943695100007],[20.54078621900007,41.84486463200008],[20.54172245200007,41.86158030200008],[20.56714725800009,41.873181662000036],[20.590298299000093,41.854733175],[20.602390584000062,41.849875591000085],[20.6187203370001,41.85052154600007],[20.626161743000125,41.85519826300003],[20.63701379300008,41.87036529500005],[20.643421672000017,41.873646749000045],[20.65282678300008,41.869280091000064],[20.671843709000143,41.84930715000013],[20.681455525000047,41.84401031600009],[20.702952921000104,41.84959137000001],[20.71439819800011,41.85916299100009],[20.723313436000126,41.86661875500004],[20.739953247000127,41.88803863500007],[20.750495240000106,41.90679718000007],[20.751052494000106,41.910217695000114],[20.754422648000087,41.93090423600012],[20.751439128000126,41.94033778400012],[20.741813598000135,41.97077260300006],[20.74305383300009,41.99348439500011],[20.755352824000024,42.042783712000094],[20.765378052000045,42.06433278500006],[20.784911743000063,42.08203196200006],[20.81054325300002,42.09293569000005],[20.904170441000076,42.116667755000066],[20.9751451810001,42.134658012000074],[21.00391646300008,42.14195078600005],[21.02923791500004,42.151407573000114],[21.04093997800007,42.15996989400006],[21.074403117000116,42.184454651000095],[21.098484334000144,42.195952657000106],[21.106235799000075,42.19579762800009],[21.112953735000104,42.1944023640001],[21.126389607000135,42.18892466200003],[21.164423462000087,42.16703969400007],[21.199873494000116,42.14114980100004],[21.21620324700004,42.121151022000106],[21.225401652000127,42.10678497300009],[21.229298016000115,42.10382211300009],[21.23780399600011,42.09735402400014],[21.245727456000054,42.09616710900008],[21.288860311000093,42.089705912000056],[21.299298950000036,42.09141123500012],[21.30079636100004,42.09842542700005],[21.30126265400014,42.1006096400001],[21.300332479000105,42.12089263900003],[21.298782186000096,42.12941925100006],[21.295784953000066,42.13479360000011],[21.2937178950001,42.14016794900007],[21.294958130000055,42.14897878100007],[21.35376591000002,42.21597727500006],[21.36060206500005,42.22011423300006],[21.36678837100007,42.223857930000094],[21.38425500500011,42.224943136],[21.419084920000074,42.21502126100009],[21.429833618000085,42.21584808400013],[21.42869673700008,42.222566020000045],[21.421462036000037,42.23135101300005],[21.419911743000085,42.24005849200012],[21.436344848000147,42.246879782000065],[21.447920369000116,42.24414093100011],[21.457222127000136,42.23703542100008],[21.467557413000037,42.235123393000066],[21.471973165000094,42.23913027900005],[21.481510051000043,42.2477841190001],[21.499286743000056,42.23866322800012],[21.51985396300006,42.23902496400012],[21.56181522600013,42.247164002000034],[21.564065710000108,42.246289302000065],[21.575044392000052,42.24202219700004],[21.624653768000115,42.242771505000036],[21.659690389000048,42.235562643000094],[21.676886452000076,42.23494482000012],[21.67695031700012,42.234942525000115],[21.69203983500003,42.24202219700004],[21.706509236000073,42.25507049600008],[21.71952070000009,42.26095663500012],[21.817200154000147,42.3051449590001],[21.837353963000112,42.30855560300011],[21.877351522000083,42.30821970600004],[21.8843795170001,42.30951161800007],[21.91827925600009,42.33134491000001],[21.92902795400002,42.33511728900004],[21.94153365000011,42.33310190900008],[21.99496708200013,42.31261220300013],[22.027626587000015,42.30395640100008],[22.045407482000144,42.30242404100002],[22.06090620900005,42.30108835900009],[22.09552941900006,42.305816752000084],[22.233402140000123,42.34888905800008],[22.259757120000074,42.36909454400006],[22.26885217300014,42.3703347790001],[22.27329634600008,42.36547719400008],[22.274019816000074,42.34847564700007],[22.276913696000065,42.3412409470001],[22.291589803000136,42.328399354000105],[22.3076094970001,42.31933014000006],[22.32528283700009,42.31431752500009],[22.345023234000053,42.31343902600014]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Malta","sov_a3":"MLT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malta","adm0_a3":"MLT","geou_dif":0,"geounit":"Malta","gu_a3":"MLT","su_dif":0,"subunit":"Malta","su_a3":"MLT","brk_diff":0,"name":"Malta","name_long":"Malta","brk_a3":"MLT","brk_name":"Malta","brk_group":null,"abbrev":"Malta","postal":"M","formal_en":"Republic of Malta","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malta","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":405165,"gdp_md_est":9962,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"MT","iso_a2":"MT","iso_a3":"MLT","iso_n3":"470","un_a3":"470","wb_a2":"MT","wb_a3":"MLT","woe_id":23424897,"woe_id_eh":23424897,"woe_note":"Exact WOE match as country","adm0_a3_is":"MLT","adm0_a3_us":"MLT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"MLT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.567149285000111,35.84560781500004],[14.561778191000087,35.82982005400007],[14.548024936000045,35.83600495000003],[14.532481316000142,35.82196686400009],[14.52751712300011,35.81354401200004],[14.52751712300011,35.801214911],[14.511485222000118,35.80646393400018],[14.507090691000114,35.808661200000145],[14.472666863000086,35.81142812700013],[14.424489780000043,35.82367584800009],[14.3815210300001,35.842962958000115],[14.363047722000145,35.866685289000046],[14.359873894000087,35.869696356000034],[14.345713738000084,35.875921942],[14.342621290000096,35.880682684000085],[14.342621290000096,35.91168854400003],[14.338226759000092,35.94696686400006],[14.332530144000115,35.96283600499999],[14.322032097000147,35.97313060100011],[14.334727410000113,35.98236725500006],[14.347504102000071,35.988714911],[14.361501498000107,35.99241771000014],[14.377289259000065,35.993638414000074],[14.377289259000065,35.98623281500006],[14.36817467500009,35.98484935099999],[14.362315300000118,35.98240794500005],[14.349375847000118,35.97313060100011],[14.428477410000111,35.96572500200001],[14.44507897200009,35.96035390800016],[14.478688998000107,35.936957098000065],[14.507823113000143,35.92853424700003],[14.512868686000104,35.920803127],[14.514008009000124,35.91083405200011],[14.513926629000137,35.900824286000145],[14.519297722000088,35.89996979400003],[14.548024936000045,35.89004140800013],[14.563161655000043,35.87002187700006],[14.567149285000111,35.84560781500004]]],[[[14.277598504000139,36.01666901200004],[14.26002037900011,36.01349518400014],[14.241465691000085,36.014634507],[14.220876498000079,36.019191799000126],[14.201182488000113,36.026068427000055],[14.184906446000099,36.034613348000065],[14.187998894000089,36.04539622599999],[14.184336785000113,36.056301174000154],[14.183604363000086,36.064764716000084],[14.195485873000052,36.06810130400011],[14.256602410000085,36.0755882830001],[14.282562696000099,36.06785716400016],[14.314789259000122,36.051092841000134],[14.334239129000139,36.034369208000115],[14.322032097000147,36.02716705900009],[14.304453972000118,36.026597398000135],[14.277598504000139,36.01666901200004]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Montenegro","sov_a3":"MNE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Montenegro","adm0_a3":"MNE","geou_dif":0,"geounit":"Montenegro","gu_a3":"MNE","su_dif":0,"subunit":"Montenegro","su_a3":"MNE","brk_diff":0,"name":"Montenegro","name_long":"Montenegro","brk_a3":"MNE","brk_name":"Montenegro","brk_group":null,"abbrev":"Mont.","postal":"ME","formal_en":"Montenegro","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Montenegro","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":5,"pop_est":672180,"gdp_md_est":6816,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"MJ","iso_a2":"ME","iso_a3":"MNE","iso_n3":"499","un_a3":"499","wb_a2":"ME","wb_a3":"MNE","woe_id":20069817,"woe_id_eh":20069817,"woe_note":"Exact WOE match as country","adm0_a3_is":"MNE","adm0_a3_us":"MNE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"MNE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.054991495000138,43.506699524000055],[19.07638553800004,43.50724212700001],[19.096022583000092,43.512900696000145],[19.122790975000044,43.53594838500001],[19.147699015000114,43.53814463300011],[19.195344686000055,43.532796122000065],[19.17519087700009,43.50961924300014],[19.175914347000088,43.480887146000036],[19.19224410000004,43.454532165000074],[19.21839237500012,43.438202413000056],[19.355644979000118,43.39306304900009],[19.372284790000037,43.38422637900009],[19.414039347000084,43.33838938400003],[19.473053833000108,43.29327585900006],[19.485146118000102,43.280098369000086],[19.502302693000075,43.25193471300014],[19.512431274000107,43.24064341300007],[19.54784473600006,43.21881486600008],[19.5499483640001,43.217518209000076],[19.58085087100011,43.18780426100011],[19.598110799000093,43.17620290200006],[19.6186780190001,43.1682447310001],[19.663016398000135,43.15850372300005],[19.684617147000097,43.15672088700006],[19.69732954900007,43.160209046000034],[19.70549442500007,43.16617767300004],[19.713555949000067,43.16560923300008],[19.74280481000011,43.12651601200005],[19.761201619000104,43.10873931900005],[19.781768839000108,43.096466166000084],[19.80512658700013,43.08995493600011],[19.83830285600007,43.088352967000105],[19.87220259600008,43.09036834800014],[19.883778117000105,43.09569102000009],[19.907135864000054,43.11326100700006],[19.91664432800013,43.1170592250001],[19.929150024000133,43.113906963000034],[19.936591431000068,43.10589711600005],[19.942275838000114,43.095639343000066],[19.949820598000144,43.08592417400013],[19.959742472000073,43.078560282000126],[20.019893840000094,43.047347718000054],[20.05438842400011,43.02222067300008],[20.056344255000113,43.02079597800005],[20.116942179000063,42.97665435800004],[20.129464296000094,42.97360479100007],[20.140920044000097,42.970814922000066],[20.19456018100007,42.96683583600008],[20.223188924000056,42.95766326900008],[20.275588827000064,42.929887187000126],[20.337083781000075,42.90696868900011],[20.353620239000065,42.890974834000076],[20.355170532000102,42.86617014600002],[20.345352010000028,42.8274386600001],[20.26442671700005,42.81725840300004],[20.226082805000118,42.80676808700008],[20.21760787000011,42.802737325000095],[20.209236288000053,42.79170440700008],[20.208409464000113,42.782092591000094],[20.209959757000036,42.7729717010001],[20.208409464000113,42.76328236900008],[20.18339807100011,42.74250844300013],[20.149498331000103,42.749872335000134],[20.112084595000056,42.76653798500006],[20.076324503000137,42.77343678900013],[20.06505904100007,42.76945770300005],[20.05563844800008,42.76386622900006],[20.034673299000104,42.75142262800006],[20.026508423000106,42.74320607500002],[20.024751424000016,42.72341400200014],[20.0361202390001,42.707988587000045],[20.037006251000065,42.70736309700007],[20.094204549000093,42.666983337],[20.10195601400011,42.65667389],[20.103919718000043,42.653108216000135],[20.090587199000108,42.627347514000036],[20.079218384000114,42.611250305000056],[20.07570438600007,42.603085430000135],[20.075394328000073,42.58696238200005],[20.07818485500013,42.57290639300004],[20.07704797300005,42.55990977000002],[20.064955688000055,42.54675811800004],[20.039220825000143,42.55776519900013],[20.017723429000114,42.54624135300008],[19.981756632000042,42.51076548300005],[19.956331828000117,42.50531362000007],[19.907549276000083,42.50639882400009],[19.882744588000037,42.493608907000095],[19.882744588000037,42.493557231000096],[19.882537883000083,42.49340220200014],[19.873339477000087,42.48683929500007],[19.835512329000093,42.470251160000146],[19.82906279900007,42.46872253700005],[19.81959598800009,42.466478780000045],[19.801405884000133,42.46813242600007],[19.784456014000025,42.47456614300012],[19.751589803000087,42.49340220200014],[19.7343298750001,42.52438222300006],[19.730919230000097,42.53365814300008],[19.730299113000115,42.540427755000024],[19.73215946400012,42.555543111000134],[19.73391646400009,42.56259694500005],[19.741357870000115,42.574405009000145],[19.746008749000083,42.579934387000065],[19.747765747000074,42.57890085900007],[19.74688465400007,42.58892977200014],[19.746008749000083,42.59889963900011],[19.737533814000074,42.62440195700012],[19.72213423700009,42.646080221000034],[19.699293254000082,42.6548135380001],[19.67603885900007,42.646674500000074],[19.65803716600007,42.63461270400003],[19.64792688000003,42.62783844100008],[19.621778605000117,42.60499745700005],[19.60503544100007,42.58484364900008],[19.599247681000094,42.571046041000045],[19.5936666260001,42.54482025200011],[19.588085572000068,42.53285715800007],[19.5756832270001,42.52234100400011],[19.5613171790001,42.516243185000064],[19.549328247000062,42.50859507200008],[19.543747192000126,42.493557231000096],[19.543747192000126,42.49340220200014],[19.531654907000128,42.47477284800007],[19.517805623000072,42.45802968400002],[19.50147587100014,42.44412872400005],[19.48173547300007,42.434491069000046],[19.468402954000055,42.4181096400001],[19.417243286000144,42.37410715800013],[19.412075643000065,42.368396912000065],[19.402670532000087,42.35201548300003],[19.400706828000068,42.344754944000044],[19.40132694500005,42.33106069000013],[19.400396769000082,42.325893047000136],[19.30458866300006,42.21509877600002],[19.27492639200008,42.19127594100004],[19.272032511000106,42.18068227100007],[19.281955677000013,42.16472336600009],[19.282057739000038,42.16455922500009],[19.29776737500009,42.15166595500008],[19.35502486100006,42.1200399790001],[19.36999787700009,42.106506676000066],[19.372491496000094,42.104252828000114],[19.374868612000057,42.094666850000095],[19.356575155000087,42.0647978720001],[19.351717570000062,42.047615458000024],[19.35058068900014,42.02782338500003],[19.35419803900004,42.00870310500005],[19.363396443000113,41.993639425000055],[19.363706503000117,41.99348439500011],[19.3710445560001,41.98655975400004],[19.365773559000075,41.969713237000065],[19.359779093000043,41.96599253400004],[19.351614217000133,41.96516571100011],[19.346446574000108,41.96154836100004],[19.352854452000145,41.93850067200006],[19.35047733600001,41.93136932400003],[19.346653279000062,41.92617584300012],[19.34541304500004,41.92118906700006],[19.345929810000086,41.91447113000004],[19.345309692000114,41.91033701600011],[19.34768680800005,41.90635793100003],[19.356988566000098,41.89963999400001],[19.36494673700014,41.888994650000114],[19.364223267000057,41.86284637500011],[19.36512209956595,41.85237191031314],[19.365082227000073,41.852362372000044],[19.34693444100006,41.86395905200007],[19.310231967000075,41.89451732],[19.29322350400011,41.90078359600005],[19.220225457000083,41.918850002000056],[19.202972852000073,41.92706940300007],[19.17847741000014,41.93390534100007],[19.170258009000065,41.93797435100004],[19.16228274800011,41.94794342700004],[19.161957227000073,41.95343659100006],[19.163259311000072,41.958970445000084],[19.160329623000052,41.96898021000007],[19.155609571000042,41.97064850500007],[19.14527428500014,41.97760651200008],[19.137950066000116,41.985296942000076],[19.142914259000094,41.98883698100008],[19.14356530000012,41.99306875200008],[19.139170769000145,42.04242584800008],[19.082530144000145,42.08120351800008],[19.07471764400006,42.09564850500004],[19.083832227000073,42.110093492],[19.076426629000082,42.11595286700006],[19.063975457000137,42.12018463700008],[19.0486759770001,42.140204169000036],[19.010590040000096,42.139553127000084],[19.00212649800008,42.15021393400011],[18.9998478520001,42.16107819200002],[18.994802280000073,42.1636416690001],[18.98804772200012,42.163723049000076],[18.9816186860001,42.1670596370001],[18.96802819100014,42.188706773000035],[18.953461134000122,42.19985586100003],[18.913340691000116,42.22223541900007],[18.9017033210001,42.237494208000044],[18.89470462300002,42.27049388200009],[18.885996941000144,42.284369208000065],[18.87159264400009,42.29047272300008],[18.854014519000145,42.29047272300008],[18.838877800000148,42.28571198100008],[18.83139082100007,42.27753327000005],[18.826508009000094,42.28221263200007],[18.82048587300011,42.28668854400004],[18.817637566000144,42.291164455000114],[18.80152428500008,42.284369208000065],[18.793955925000148,42.28034088700011],[18.78874759200005,42.27602773600011],[18.786387566000087,42.27411530200004],[18.778575066000087,42.27147044500006],[18.771983269000117,42.2769229190001],[18.762461785000113,42.291164455000114],[18.729502800000148,42.31159088700008],[18.71452884200002,42.32526276200011],[18.714121941000116,42.33893463700005],[18.708343946000067,42.34247467700004],[18.699717644000145,42.34983958500004],[18.693614129000053,42.353216864000046],[18.693614129000053,42.3594424500001],[18.695811394000145,42.373765367],[18.678477410000056,42.385972398000064],[18.658539259000094,42.38662344000002],[18.653168165000125,42.36627838700011],[18.646494988000057,42.36627838700011],[18.63843834700012,42.3703067080001],[18.61670983200005,42.36806875200011],[18.61231530000009,42.36994049700007],[18.607106967000078,42.37641022300008],[18.594899936000104,42.383734442000076],[18.58090254000004,42.38983795800007],[18.570648634000122,42.39297109600005],[18.573008660000085,42.396429755000035],[18.573090040000068,42.39752838700008],[18.57406660200013,42.39826080900011],[18.578135613000086,42.400376695000034],[18.55298912900011,42.41364166900007],[18.54517662900011,42.423570054000066],[18.550140821000067,42.4351260440001],[18.562836134000122,42.43854401200011],[18.64494876400002,42.41836172100008],[18.65650475400014,42.41551341400012],[18.685557488000114,42.403998114000096],[18.700450066000084,42.39297109600005],[18.708181186000104,42.40851471600004],[18.70655358200008,42.42104726800005],[18.68384850400011,42.45880768400011],[18.68327884200005,42.468085028000075],[18.6873478520001,42.48289622600004],[18.6541447270001,42.45180898600003],[18.608653191000112,42.4453799500001],[18.502452019000085,42.45563385600005],[18.502452019000085,42.448187567000076],[18.521250847000147,42.43797435100004],[18.512950066000087,42.409002997000044],[18.52979576900009,42.400376695000034],[18.51026451900009,42.405259507],[18.496429884000094,42.41632721600004],[18.497816202000138,42.43115793900003],[18.492855265000085,42.44237172400008],[18.475491984000087,42.44981313100009],[18.46774051900007,42.45337880500006],[18.454924764000083,42.46472178200014],[18.444279419000082,42.47792511000002],[18.437148071000053,42.49340220200014],[18.436424602000073,42.51076548300005],[18.442005656000074,42.54301157700013],[18.43735477700011,42.559212138000106],[18.447690064000113,42.56621429500012],[18.45895552500008,42.56972829200009],[18.47053104700012,42.569056499000084],[18.481796509000077,42.563682149000044],[18.49213179500009,42.56476735500013],[18.49585249800012,42.57086517400009],[18.493682088000128,42.57983103400002],[18.486654093000112,42.58983042400004],[18.506797873000068,42.59849020800007],[18.517246542000123,42.602982077000036],[18.53843387800009,42.61830413900009],[18.542832323000113,42.62642904400007],[18.549595988000107,42.63892303500009],[18.550009400000107,42.66806854300009],[18.539674113000103,42.69545705200005],[18.522517537000056,42.71189015700011],[18.50215702300011,42.72744476300005],[18.467430460000088,42.76919932100009],[18.453891235000096,42.79315134700008],[18.44458947700008,42.817077536000085],[18.44365930200013,42.834466655000114],[18.45347782400009,42.845654603000035],[18.465983520000094,42.852811788000075],[18.473321574000096,42.86255279500005],[18.467637166000145,42.88169891400014],[18.44396936000001,42.916864726000085],[18.43404748600011,42.936889344000036],[18.433530721000068,42.95420094900004],[18.452754354000092,42.993397522000095],[18.483036743000127,43.01463653600007],[18.538950643000106,43.02388661700007],[18.598378540000056,43.02445505800003],[18.638996215000105,43.02024342900009],[18.62111617000005,43.096440328000085],[18.62059940600011,43.122562765000076],[18.621127821000126,43.12457815200014],[18.62907434100009,43.15488637300007],[18.645300741000113,43.180181986000036],[18.68839888500011,43.224468690000066],[18.66431766700009,43.23317616800006],[18.67951053900012,43.249480082000076],[18.80715132600008,43.31802887],[18.83350630700005,43.32415252700005],[18.830302368000076,43.32815745000005],[18.824617960000126,43.33740753200007],[18.821207316000113,43.34138661700004],[18.839604126000097,43.3478203330001],[18.899135376000086,43.35190277100011],[18.923423299000092,43.346838481000134],[18.950295044000086,43.33306671200009],[18.957323038000084,43.325857850000034],[18.957943156000056,43.31898488400005],[18.957116333000045,43.311827698000116],[18.959493449000092,43.303456116000035],[18.968588501000056,43.29221649200008],[18.988949015000085,43.27294118300006],[18.98950569700014,43.27201610900007],[18.992463013000133,43.267101746000066],[19.002901652000077,43.27394887300002],[19.010859823000146,43.282320455000104],[19.01716434700006,43.29115712500009],[19.02253515300009,43.29654632500004],[19.0247091060001,43.29872772300007],[19.036284627000043,43.3033269250001],[19.062536255000083,43.30438629200009],[19.06966760300011,43.30883046500008],[19.039591919000145,43.35071421300009],[19.009929647000092,43.410994772000066],[18.975306437000086,43.444274394000104],[18.96827844300006,43.448098450000145],[18.9462642820001,43.443938497],[18.94636763500011,43.4490803030001],[18.950708455000097,43.45729685500004],[18.951225219000037,43.46380808500001],[18.937892700000106,43.47894928000002],[18.93065799900006,43.48228241000003],[18.91525842300007,43.485382996000084],[18.90564660700005,43.490628154000085],[18.90512984200012,43.499051413000075],[18.911020955000108,43.50726796500001],[18.920529419000104,43.512203064000055],[18.93892622900009,43.51894683900007],[18.962697388000066,43.53829966200004],[18.977476847000073,43.54623199500011],[19.000214477000043,43.54788564100005],[19.014270467000074,43.5377828980001],[19.02501916500009,43.523029277],[19.038144979000066,43.511014507000134],[19.054991495000138,43.506699524000055]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Netherlands","adm0_a3":"NLD","geou_dif":0,"geounit":"Netherlands","gu_a3":"NLD","su_dif":0,"subunit":"Netherlands","su_a3":"NLD","brk_diff":0,"name":"Netherlands","name_long":"Netherlands","brk_a3":"NLD","brk_name":"Netherlands","brk_group":null,"abbrev":"Neth.","postal":"NL","formal_en":"Kingdom of the Netherlands","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Netherlands","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":16715999,"gdp_md_est":672000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"NL","iso_a2":"NL","iso_a3":"NLD","iso_n3":"528","un_a3":"528","wb_a2":"NL","wb_a3":"NLD","woe_id":-90,"woe_id_eh":23424909,"woe_note":"Doesn't include new former units of Netherlands Antilles (24549811, 24549808, and 24549809)","adm0_a3_is":"NLD","adm0_a3_us":"NLD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"NLD.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.23729407499985,12.02680084800015],[-68.24254309799994,12.022040106000148],[-68.25422115799992,12.023627020000092],[-68.25967363199987,12.02806224200016],[-68.2806290359999,12.072211005000142],[-68.28538977799991,12.09007396000011],[-68.2872615229999,12.108303127000099],[-68.28282630099991,12.139593817000147],[-68.28221594999985,12.159898179000052],[-68.2872615229999,12.180324611000117],[-68.30256100199995,12.202948309000178],[-68.32127844999991,12.213853257000068],[-68.3697810539999,12.221258856000148],[-68.39183508999989,12.227769273000133],[-68.41071529899992,12.240301825000143],[-68.41738847599987,12.257025458000072],[-68.40330969999992,12.276516018000152],[-68.41075598899991,12.28270091400013],[-68.4064835279999,12.294623114000075],[-68.40005449099988,12.304388739000117],[-68.39045162699992,12.310207424000154],[-68.3766169909999,12.310044664000186],[-68.3614802729999,12.302191473000121],[-68.34044348899988,12.274969794000114],[-68.33189856699993,12.269029039000188],[-68.3148494129999,12.264837958000072],[-68.25251217399992,12.235541083000143],[-68.2205297519999,12.23114655200007],[-68.21153723899991,12.228094794000157],[-68.2046606109999,12.223211981000105],[-68.19420325399992,12.213934637000136],[-68.19001217399989,12.204820054000066],[-68.20156816299989,12.200832424000083],[-68.21084550699986,12.190090236000158],[-68.20360266799993,12.137762762000165],[-68.20531165299984,12.118231512000179],[-68.21393795499995,12.111802476000078],[-68.23216712099995,12.11074453300013],[-68.23884029899989,12.10455963700015],[-68.2383520169999,12.095770575000088],[-68.2283422519999,12.069973049000152],[-68.22581946499992,12.060248114000117],[-68.22752844999991,12.050726630000112],[-68.2318416009999,12.037990627000156],[-68.23729407499985,12.02680084800015]]],[[[-62.94890357099987,17.47237460300012],[-62.95872313799992,17.46457117400017],[-62.98108552199994,17.46772373100005],[-62.99469967399992,17.492132880000142],[-62.99714107999995,17.525620835],[-62.983796982999934,17.517682944000043],[-62.97725385399991,17.504136838000093],[-62.96525672899988,17.49891596300013],[-62.945064509999916,17.48538443100007],[-62.94890357099987,17.47237460300012]]],[[[-63.22948157499988,17.618231512000147],[-63.23839270699991,17.614691473000093],[-63.2513321609999,17.62376536700016],[-63.24893144399988,17.640366929000137],[-63.2384333979999,17.646918036000116],[-63.23029537699989,17.642320054],[-63.22370357999991,17.629217841000028],[-63.22948157499988,17.618231512000147]]],[[[3.73422285200013,51.355780341000084],[3.755544467000078,51.35008372600011],[3.795909050000148,51.35008372600011],[3.833994988000143,51.34324778900019],[3.858164910000141,51.345445054],[3.955821160000141,51.37177155199999],[3.969248894000117,51.381659247000115],[3.974619988000085,51.401597397999986],[3.984141472000089,51.410467841000056],[4.005707227000102,51.4098167990001],[4.029063347000089,51.40420156500009],[4.043467644000144,51.39850495000012],[4.050059441000116,51.39223867400015],[4.061289910000141,51.37665436400006],[4.070160352000073,51.370550848000065],[4.081309441000086,51.36815013200014],[4.105479363000114,51.36611562700001],[4.115489129000082,51.3609886740001],[4.121918165000096,51.35936107000008],[4.15650475400011,51.357570705000064],[4.17367597700013,51.37372467700014],[4.180023634000065,51.37742747599999],[4.199554884000122,51.376044012000094],[4.221491455026921,51.3680006030731],[4.220961547000115,51.36381683400005],[4.213520141000089,51.34053660100012],[4.207939087000084,51.33058888800012],[4.168561645000096,51.29687001600014],[4.118952271000096,51.272401225000024],[3.995032186000032,51.233230489000064],[3.949453572000067,51.21077708000017],[3.927026001000058,51.20625539200013],[3.8086869710001,51.20532521600008],[3.796284627000119,51.20876169800012],[3.781401815000095,51.21987213200005],[3.779748169000129,51.23031077100008],[3.781401815000095,51.241421204000105],[3.776234172000102,51.254521180000054],[3.757320597000046,51.262324321000065],[3.635054159000049,51.28782664],[3.609526001000091,51.290436300000025],[3.584824666000088,51.28953196300007],[3.54503381300006,51.28392506900006],[3.529014120000113,51.28333079100018],[3.514338012000024,51.281031189000075],[3.503382609000141,51.27395151800011],[3.501522258000136,51.262401836],[3.504106079000053,51.24974111000016],[3.501212199000065,51.240284323000175],[3.45387658700011,51.23563344400012],[3.421940552000109,51.237984721000075],[3.398798477000071,51.24469829300007],[3.391658163000102,51.246769715000035],[3.367370240000099,51.263487040000186],[3.353210897000054,51.28860178700002],[3.353934366000146,51.311907858000055],[3.358068481000061,51.3367125460001],[3.349414674022739,51.375223117889796],[3.349457227000073,51.37523021],[3.510915561000104,51.40794505400011],[3.525726759000065,51.41559479400014],[3.541351759000065,51.41673411699999],[3.604665561000103,51.391058661000116],[3.702159050000148,51.37360260600015],[3.73422285200013,51.355780341000084]]],[[[4.015391472000147,51.701727606000034],[4.020274285000113,51.69647858300014],[4.026621941000144,51.691107489],[4.03663170700014,51.68585846600011],[4.078379754000081,51.67861562700007],[4.097341342000078,51.67023346600003],[4.099375847000118,51.65412018400014],[4.089040561000104,51.64402903900019],[4.072601759000122,51.63690827000012],[4.054860873000109,51.63263580900012],[3.978037957000112,51.62327708499999],[3.960297071000098,51.623846747000144],[3.923106316000115,51.632473049000154],[3.901540561000104,51.64199453300016],[3.891937696000127,51.655503648000135],[3.885590040000096,51.66836172100015],[3.869802280000044,51.67609284100017],[3.830577019000117,51.68585846600011],[3.823903842000078,51.68988678600009],[3.817637566000116,51.69525788000011],[3.809255405000073,51.69953034100014],[3.795909050000148,51.700140692],[3.771250847000147,51.68183014500012],[3.765391472000118,51.67841217700011],[3.720550977000102,51.676825262000094],[3.700043165000124,51.68060944200011],[3.686696811000019,51.69269440300003],[3.689463738000086,51.725043036000145],[3.725840691000059,51.739732164000046],[3.810069207000083,51.74730052299999],[3.814219597000118,51.74823639500006],[3.830577019000117,51.74730052299999],[3.843760613000086,51.74282461100002],[3.939626498000081,51.741156317],[3.961761915000067,51.73810455900012],[3.978037957000112,51.73029205900012],[4.015391472000147,51.701727606000034]]],[[[4.892588738000143,53.11102936400009],[4.892588738000143,53.10480377800003],[4.91309655000009,53.10480377800003],[4.90609785200013,53.091701565000065],[4.893077019000145,53.07611725500006],[4.865244988000085,53.05019765800015],[4.818125847000089,53.0267601580001],[4.795664910000085,53.00031159100011],[4.761973504000082,52.994330145],[4.72681725400011,53.003078518000066],[4.707692905000044,53.02846914300009],[4.71387780000012,53.05463288000014],[4.733653191000116,53.084214585],[4.758474155000101,53.10846588700018],[4.805674675000148,53.13300202],[4.829274936000104,53.162990627000156],[4.854340040000096,53.18773021000013],[4.88575280000012,53.186712958000086],[4.889821811000104,53.180853583000115],[4.892100457000055,53.17572663000011],[4.891368035000141,53.170965887000115],[4.88575280000012,53.16620514500012],[4.89991295700014,53.15232982000013],[4.910166863000085,53.134588934000035],[4.909922722000147,53.11884186400008],[4.892588738000143,53.11102936400009]]],[[[4.935720248000081,53.22597890800007],[4.910166863000085,53.21246979400011],[4.878916863000114,53.220892645000056],[4.921234571000126,53.25372955900014],[4.986501498000109,53.28998444200006],[5.054453972000089,53.31378815300015],[5.104828321000127,53.30963776200012],[5.104828321000127,53.30280182500012],[5.078135613000114,53.30280182500012],[5.065603061000104,53.29848867400001],[5.03646894600007,53.291815497000144],[4.957530144000116,53.24555084800014],[4.935720248000081,53.22597890800007]]],[[[5.427012566000087,53.40643952000012],[5.382497592000078,53.39468008000013],[5.346934441000115,53.389227606000084],[5.20834394600007,53.352687893000066],[5.179860873000081,53.35309479400017],[5.167653842000107,53.36823151200015],[5.178884311000104,53.385443427000084],[5.232432488000114,53.396714585000076],[5.250173373000109,53.40643952000012],[5.272959832000112,53.40607330900009],[5.407237175000148,53.422552802],[5.423594597000146,53.430365302],[5.43702233200014,53.43646881700006],[5.585297071000127,53.45359935100011],[5.562022332000112,53.43431224200007],[5.533702019000088,53.42837148600013],[5.475433790000068,53.426947333000086],[5.477386915000125,53.42352936400006],[5.479746941000058,53.41620514500006],[5.481700066000116,53.412665106000176],[5.468597852000045,53.40851471600014],[5.427012566000087,53.40643952000012]]],[[[6.86687259200005,53.434271552000084],[6.900563998000051,53.35179271000008],[6.90577233200014,53.35049062700007],[6.930023634000037,53.34007396000008],[6.93189537900011,53.33759186400006],[6.936696811000104,53.335394598000065],[6.941661004000139,53.330715236000124],[6.948578321000041,53.32607656500012],[6.980153842000049,53.31976959800009],[7.020030144000116,53.30613841400013],[7.037771030000101,53.30963776200012],[7.046234571000042,53.30385976800006],[7.058278842000077,53.30194733299999],[7.070078972000117,53.30394114800005],[7.078623894000145,53.30963776200012],[7.085459832000083,53.30963776200012],[7.085459832000083,53.30280182500012],[7.077484571000127,53.29865143400015],[7.073496941000144,53.295640367000075],[7.073741082000083,53.291327216000134],[7.078623894000145,53.282945054000024],[7.080739780000073,53.266791083000136],[7.111094597000147,53.25633372600005],[7.183360222000118,53.24510325700005],[7.194590691000116,53.24502187700007],[7.19747237100006,53.21662363700007],[7.198505900000043,53.200578105000105],[7.195405314000112,53.18499766100008],[7.188584025000067,53.167789408000104],[7.174424682000108,53.145775249000124],[7.17194421400012,53.13771372500004],[7.172667684000118,53.12575063100017],[7.176491740000074,53.11939443000015],[7.181349324000081,53.11417511100014],[7.185070027000108,53.10544179300017],[7.194371786000119,53.03384409600001],[7.19282149300011,52.99800649000015],[7.183623088000104,52.96612213100012],[7.161918986000103,52.9326358040001],[7.079856812000116,52.85442352300005],[7.072150759000124,52.841316552000066],[7.061976766000043,52.82401194200009],[7.053295125000091,52.790577291000105],[7.043993367000069,52.68262522400009],[7.036655314000085,52.64738189700001],[7.018465210000045,52.62598785400009],[6.982808471000055,52.632783305000046],[6.967718953000144,52.6366590380001],[6.918419637000056,52.632189026000084],[6.865399617000037,52.64195587200014],[6.77052168700007,52.641025696000085],[6.737035360000078,52.634695333000145],[6.719083149000085,52.62675898200003],[6.7017920320001,52.619114889000045],[6.710163615000056,52.60865041199998],[6.708199911000121,52.599684550000134],[6.703652384000094,52.5913904830001],[6.70396244300008,52.58307057700012],[6.710990438000096,52.576636862000086],[6.743753296000079,52.55971283000018],[6.688252807000111,52.542582093000036],[6.671716349000121,52.54167775500017],[6.684015340000144,52.52599395800003],[6.687529337000115,52.50813975100009],[6.688976278000098,52.4905180870001],[6.695074097000145,52.47560943700013],[6.714814494000109,52.4615534470001],[6.741169474000088,52.45367279100015],[6.820337769000105,52.44682566300009],[6.872014200000137,52.434733378000125],[6.9002295330001,52.431917013000074],[6.926481161000139,52.43297638000014],[6.951492553000036,52.43747222900008],[6.960794311000143,52.44284657800013],[6.966995483000062,52.44956451500015],[6.973300008000137,52.451373190000034],[7.034174845000109,52.39078257300018],[7.048230835000112,52.3650735470001],[7.039755900000102,52.328615825],[7.019705444000067,52.30003875800012],[7.012470744000098,52.28494923900003],[7.011850626000125,52.26662994400006],[7.02073897300005,52.24526173900013],[7.02660015200007,52.23862268700007],[7.029110555000017,52.23577911400015],[7.026320027000053,52.23063730900016],[6.981878296000076,52.21399749800007],[6.971129598000061,52.20627187100014],[6.94766849700008,52.182810771000085],[6.927721395000076,52.17190704400012],[6.884829956000118,52.16033152300015],[6.865399617000037,52.14779998800016],[6.843282105000128,52.11999806700011],[6.830673055000091,52.11289255800007],[6.77157568400014,52.10879250200013],[6.765870808000102,52.108396709000075],[6.749851115000125,52.10286733000005],[6.73290124500005,52.09198944100011],[6.7276302490001,52.08630503300007],[6.719465373000077,52.07356679300009],[6.711403849000106,52.067288107000174],[6.699414917000126,52.06356740400018],[6.688872925000083,52.06310231600007],[6.679881225000115,52.06046681800013],[6.672956583000143,52.050054016],[6.675023641000108,52.03480946900008],[6.690939982000145,52.02785898800009],[6.712850789000099,52.02385406500017],[6.778169800000057,52.00127146500016],[6.804008016000068,51.98437327100005],[6.809175659000061,51.97954152500013],[6.811656127000049,51.9727977510001],[6.810725952000098,51.960576274000104],[6.805661661000101,51.95752736500007],[6.798013550000121,51.956700542000036],[6.789848673000108,51.95114532500004],[6.767007690000099,51.92551381500006],[6.743753296000079,51.908331401],[6.716674846000046,51.89926218700013],[6.628153117000067,51.89750518900014],[6.528624308000133,51.876421204000124],[6.47942834400007,51.85301178000016],[6.462891887000068,51.848360901000106],[6.442531372000133,51.848360901000106],[6.378452596000044,51.86011728900009],[6.386617472000069,51.837560527000065],[6.382483358000115,51.82758697500015],[6.344966268000121,51.8211015830001],[6.341969034000015,51.83668202800014],[6.325742635000097,51.842547303000046],[6.28739872200009,51.84616465300011],[6.282851196000137,51.84960113500013],[6.271792439000137,51.861900127000084],[6.264661092000011,51.86618927100015],[6.256392862000069,51.86680938700012],[6.225180298000083,51.862546082000065],[6.191383911000116,51.87115020800009],[6.159241170000087,51.88729909300018],[6.1269950760001,51.89673004100013],[6.092991984000149,51.885309550000144],[6.105394327000056,51.87947011300015],[6.142704712000067,51.855182190000065],[6.156140584000127,51.84205637600009],[6.140017537000062,51.844536845000064],[6.116453084000057,51.848283387],[6.084000284000126,51.85365773500014],[6.043279256000062,51.846862285],[6.028913208000063,51.84210805300002],[6.008242635000045,51.83257375100011],[5.988915650000081,51.82745778400012],[5.948091268000098,51.822961935000095],[5.931451457000094,51.815649720000025],[5.928040812000063,51.806735535000186],[5.950778442000114,51.795909322000156],[5.964110962000063,51.77655649899999],[5.962353963000083,51.75635101300009],[5.946056400000145,51.746288216],[5.940133097000057,51.74263092100007],[5.939306274000103,51.73188222300014],[5.949228150000095,51.72937591600008],[5.978270304000091,51.72978932700009],[5.989742472000102,51.726378682000146],[6.012066691000086,51.71586252800002],[6.02198856600009,51.70950632799999],[6.008552694000115,51.68118764300009],[6.031497030000054,51.66299753900013],[6.099193156000069,51.64447153800002],[6.087514282000086,51.62209564200013],[6.08213993300012,51.607807109000056],[6.086480754000092,51.59553395600001],[6.153039998000082,51.538431499000076],[6.19334761500005,51.509337667000075],[6.20047896300008,51.47657480900009],[6.205336548000104,51.45843638200016],[6.201719197000102,51.43864430800009],[6.194071086000122,51.417379456],[6.192727499000085,51.39895680800002],[6.207817016000149,51.38766550800012],[6.202029256000087,51.37888051300014],[6.198928670000072,51.356969706000186],[6.193554321000106,51.344515686000086],[6.183632446000104,51.3357048540001],[6.158207641000104,51.32459442200009],[6.147769002000047,51.31816070600014],[6.09650598100012,51.25881032400012],[6.075421997000092,51.24266143900003],[6.065190063000102,51.23162852000003],[6.056611776000096,51.21170725500012],[6.05371789500009,51.189383037000155],[6.06084924300012,51.17090871200004],[6.084310344000102,51.162692159000116],[6.134126424000044,51.18421539400004],[6.157070760000096,51.179254456000095],[6.149112589000111,51.17633473700003],[6.12627160700012,51.164578349000024],[6.147252238000107,51.15225352000006],[6.132369426000082,51.13982533799999],[6.075421997000092,51.12036916100003],[5.982921183000144,51.074687195000095],[5.969485311000113,51.06492035000004],[5.950261678000088,51.03946970700012],[5.937962687000066,51.030943095],[5.919565877000138,51.029702860000086],[5.906233358000122,51.03740264900016],[5.894347778000082,51.047143657],[5.88049849500004,51.05205291800014],[5.852489868000106,51.042751160000115],[5.858174275000067,51.01934173600016],[5.87357385200005,50.99058380100014],[5.874607381000117,50.96536570299999],[5.888249959000035,50.967122701000065],[5.914191529000078,50.975235901000175],[5.927730754000065,50.977664694000126],[5.941580037000051,50.97647613500011],[5.967831665000062,50.97099843400012],[6.00369510900012,50.97373728400007],[6.005762167000085,50.96851796500014],[5.999664348000124,50.96009470600016],[5.995840291000064,50.9517748010001],[5.997287232000076,50.937357076000076],[5.999871053000078,50.92939890600012],[6.007519165000132,50.924076233000065],[6.031083618000138,50.914722799000124],[6.06374312400004,50.90753977499999],[6.061779419000088,50.90350901300017],[6.056508423000139,50.89808298800001],[6.054648071000145,50.89146840400012],[6.063123006000069,50.87090118400012],[6.062812948000071,50.86294301400007],[6.056715129000111,50.85265940400016],[6.045553019000096,50.84418446900015],[6.023022095000073,50.845424704000024],[6.009276164000113,50.84046376500005],[6.000491170000146,50.830438538000024],[6.001421346000085,50.82180857400009],[6.003591756000077,50.81261016899999],[5.998320760000041,50.800724589000154],[5.983954712000127,50.79219797800015],[5.968761841000116,50.79462677000002],[5.972999308000084,50.781811015000116],[5.980647420000139,50.773439433000036],[5.990569295000057,50.76904693600015],[5.997080525000115,50.762949117000105],[5.994910116000113,50.74992665600014],[5.974756307000064,50.747549540000094],[5.902202596000024,50.74904815700002],[5.89132117000014,50.75123955600016],[5.891287548000122,50.751246327],[5.879878377000068,50.75354400600004],[5.793165324000114,50.75214874300015],[5.782933390000039,50.75669627000009],[5.762469523000078,50.77101064099998],[5.752444296000135,50.773439433000036],[5.743555949000039,50.769098613000054],[5.732776968000081,50.758851489000065],[5.727846313000072,50.75416412400001],[5.717407674000128,50.75282053700014],[5.706555623000071,50.75421580000004],[5.688365519000115,50.7608303840001],[5.698700806000119,50.783774720000146],[5.700457804000109,50.79555694600004],[5.68485152100007,50.79850250300014],[5.663250773000101,50.805065410000125],[5.657432381000092,50.807640982000166],[5.640719849000078,50.81503896100004],[5.624493448000067,50.83028350900018],[5.622323039000094,50.85265940400016],[5.694463338000077,50.903664042000045],[5.706038859000046,50.906609599000134],[5.717614380000071,50.909245097000124],[5.722368612000082,50.9116738900001],[5.73528771900007,50.923972881000125],[5.752547648000075,50.94722727500006],[5.764019816000086,50.959422913000154],[5.75430464700014,50.96309194000015],[5.744692830000133,50.963246969000025],[5.722368612000082,50.959422913000154],[5.761746053000081,50.999162090000155],[5.777559041000075,51.023553366],[5.764019816000086,51.035180563000054],[5.766396932000133,51.04843556800016],[5.771461222000113,51.058124899000106],[5.779626098000023,51.06130299900015],[5.79130497200009,51.05499847500015],[5.798849731000132,51.06148386600001],[5.804327434000128,51.06858937600013],[5.81176884000007,51.082309469000066],[5.808978312000106,51.08634023000015],[5.807428019000071,51.08938914],[5.804947550000094,51.096623840000134],[5.81590295400008,51.09587453200005],[5.826651652000095,51.09690806100003],[5.836780232000137,51.09949188300014],[5.845978638000048,51.103393454000084],[5.823241007000064,51.11874135400016],[5.826444946000038,51.130161845000075],[5.840500936000069,51.138921],[5.838020467000092,51.14372690900014],[5.829132121000071,51.15646514900011],[5.812078898000038,51.15731781000015],[5.781383098000106,51.15240854900009],[5.768050577000082,51.15946238300004],[5.74717329900011,51.17760081000015],[5.730843547000063,51.183750306000135],[5.718027791000083,51.18460296700006],[5.676169881000106,51.17917694099999],[5.659013306000048,51.17907358800015],[5.648161255000105,51.183957011000174],[5.638549438000098,51.190907491000175],[5.62501021300011,51.196901957000094],[5.568372843000134,51.207650655000016],[5.551406597000096,51.21676713400008],[5.54553186000004,51.21992380800005],[5.542327921000066,51.24266143900003],[5.535196573000121,51.26204010000002],[5.516696411000083,51.27723297200013],[5.493235311000119,51.28653472900005],[5.471634562000133,51.28808502300008],[5.451894165000084,51.28211639400014],[5.409932901000076,51.26353871700011],[5.389055623000104,51.258706971],[5.270716593000145,51.261833395000124],[5.239455934000091,51.25693018200017],[5.232992798000112,51.25591644300012],[5.215422811000025,51.258732808],[5.214906047000085,51.294337870000064],[5.197336059000122,51.30834218299999],[5.178835897000083,51.309504903000104],[5.140181926000082,51.30738617000013],[5.122921997000105,51.31338063600005],[5.118064412000081,51.31991770500012],[5.107832479000081,51.34198354100012],[5.102561483000073,51.35066518200007],[5.068144979000095,51.37453969400015],[5.061737101000062,51.38425486300009],[5.065251099000108,51.40590728799999],[5.076413208000048,51.421901144000124],[5.079927205000104,51.438540955000136],[5.060290161000069,51.46197621700012],[5.030317831000048,51.4744302370001],[5.027527303000085,51.47680735300007],[5.012127727000092,51.47432688400009],[5.00613326000007,51.468306580000146],[5.002722616000142,51.45900482200001],[4.995797973000066,51.44670583100015],[4.980191691000101,51.43053110800018],[4.957144002000064,51.410997416000086],[4.931925903000092,51.395623678],[4.910325154000134,51.39190297500009],[4.871671183000046,51.403039246],[4.853274373000119,51.406139832000136],[4.783304484000013,51.40763844800016],[4.762117146000151,51.413374532000105],[4.767801554000101,51.42538930300016],[4.779067016000056,51.42642283200014],[4.822681925000011,51.413684591],[4.815447224000138,51.431073711000025],[4.819891398000067,51.44621490500005],[4.826092570000128,51.46055511500013],[4.823922159000062,51.47564463300013],[4.813586873000133,51.48411956900004],[4.796843709000086,51.49101837200011],[4.778653605000045,51.49535919200009],[4.764184204000117,51.49623769100013],[4.731214641000064,51.485618185000064],[4.653906697000053,51.42621612600003],[4.643571411000067,51.42141021700009],[4.630135539000094,51.418206279000124],[4.614632609000097,51.417560323000046],[4.582696573000106,51.42259877600013],[4.553861125000083,51.41929148400011],[4.540631958000091,51.42006663000013],[4.521511678000081,51.42864491800007],[4.523372029000086,51.43841176400012],[4.531846964000096,51.4508657840001],[4.533190551000075,51.467583110000064],[4.525232381000109,51.47592885400012],[4.512623331000071,51.47737579400011],[4.483064412000147,51.47432688400009],[4.429424275000059,51.46197621700012],[4.37712772600014,51.44288177500012],[4.389220011000134,51.434587708],[4.387152954000071,51.42745636000013],[4.3806417240001,51.419653219000125],[4.379918253000113,51.409524638000065],[4.387669719000115,51.40053293900002],[4.410097290000124,51.38378977500018],[4.416195109000085,51.37397125300011],[4.411234171000018,51.35673716200013],[4.392217244000051,51.35040679900011],[4.345605103000081,51.35229299000012],[4.326278117000129,51.35642710400005],[4.290104614000114,51.3687519330001],[4.28112422200013,51.368946510000015],[4.261067579111284,51.36937927502028],[4.257090691000116,51.37250397300012],[4.249034050000091,51.384222723],[4.24634850400011,51.396429755],[4.246836785000085,51.40672435100011],[4.244883660000141,51.414496161],[4.234711134000094,51.41901276200015],[4.222992384000122,51.40949127800015],[4.201019727000102,51.40534088700012],[4.111094597000118,51.40696849200005],[4.090342644000116,51.41128164300015],[4.070160352000073,51.41901276200015],[4.015147332000112,51.448919989000146],[3.998789910000084,51.45311107000008],[3.957041863000143,51.45579661700004],[3.94312584700009,51.45038483299999],[3.91342207100007,51.415269273000135],[3.902110222000061,51.40493398600002],[3.886729363000114,51.399807033000016],[3.850759311000047,51.39736562700007],[3.837901238000114,51.39223867400015],[3.82715905000012,51.391058661000116],[3.816416863000114,51.39411041900003],[3.789073113000114,51.41217682500006],[3.728770379000081,51.430812893000116],[3.68970787900011,51.454291083],[3.674001498000052,51.45538971600014],[3.632578972000146,51.445705471000096],[3.610036655000073,51.44505442900013],[3.553396030000073,51.45311107000008],[3.535411004000139,51.459214585000055],[3.520192905000073,51.47337474199999],[3.506846550000148,51.48932526200018],[3.494802280000044,51.500921942],[3.461924675000148,51.51898834800012],[3.451019727000073,51.529730536000145],[3.447032097000089,51.54596588700017],[3.457530144000145,51.55508047100007],[3.560394727000045,51.59463125200001],[3.828868035000113,51.61273834800012],[3.851084832000083,51.61078522300009],[3.866058790000125,51.60541413000011],[3.882172071000098,51.59609609600007],[3.896494988000085,51.58380768400012],[3.905772332000112,51.5692406270001],[3.895274285000141,51.56659577],[3.878265821000099,51.55939362200017],[3.871592644000116,51.55556875200015],[3.871592644000116,51.54938385600009],[3.967295769000089,51.54311758000013],[4.015879754000139,51.530829169000086],[4.057139519000089,51.508368231000176],[4.070323113000143,51.49274323100009],[4.090017123000081,51.45823802299999],[4.10482832100007,51.445705471000096],[4.12875410200013,51.44135163],[4.180837436000076,51.44586823100006],[4.200450066000116,51.43952057500011],[4.22022545700014,51.443548895000085],[4.252777540000125,51.44253164300004],[4.263845248000051,51.44440338700018],[4.283213738000086,51.44769928600011],[4.296722852000045,51.470526434000035],[4.288584832000139,51.49213288000014],[4.267751498000052,51.50828685100002],[4.23975670700014,51.51850006700012],[4.230479363000086,51.51955801000018],[4.19467207100007,51.52358633000016],[4.15333092500012,51.53506094],[4.137950066000087,51.535874742000104],[4.106293165000125,51.533514716000134],[4.091319207000083,51.53506094],[4.067230665000068,51.54401276200004],[3.988129102000073,51.590277411000116],[4.041188998000081,51.606024481000176],[4.067718946000042,51.61066315300012],[4.15723717500012,51.60789622600005],[4.18336022200009,51.6029320330001],[4.20687910200013,51.590521552000084],[4.207286004000139,51.590277411000116],[4.202647332000112,51.60911692900008],[4.189952019000144,51.6166852890001],[4.186127149000129,51.61680735900008],[4.146657748000081,51.61786530200014],[4.135996941000144,51.62042877800015],[4.125987175000148,51.62470123900006],[4.118011915000096,51.63068268400017],[4.112966342000078,51.639390367000075],[4.109873894000089,51.65086497600011],[4.109629754000139,51.66229889500006],[4.112640821000042,51.67080312700009],[4.125661655000044,51.67963288000014],[4.142914259000037,51.68414948100009],[4.176931186000076,51.68585846600011],[4.166351759000122,51.69269440300003],[4.141123894000145,51.70392487200003],[4.071543816000144,51.71718984600015],[4.057139519000089,51.73029205900012],[4.050791863000057,51.763495184000035],[4.033946160000056,51.78424713700004],[4.009776238000143,51.79791901200015],[3.98145592500012,51.81000397300006],[3.962575717000078,51.80121491100003],[3.93718509200005,51.79633209800012],[3.911387566000115,51.79637278900013],[3.891856316000144,51.792954820000105],[3.888194207000083,51.78888580900015],[3.881114129000139,51.78807200700005],[3.871592644000116,51.78827545799999],[3.862315300000091,51.81606679900007],[3.891368035000141,51.82827383000012],[3.954112175000119,51.840155341000084],[3.962657097000147,51.84735748900012],[3.982188347000146,51.84829336100002],[4.015635613000086,51.84357330900009],[4.043467644000144,51.83421458500008],[4.047618035000085,51.833685614],[4.055023634000094,51.83421458500008],[4.065440300000063,51.837103583],[4.07764733200014,51.84357330900009],[4.07007897200009,51.85272858299999],[4.044606967000107,51.87449778900004],[4.037852410000141,51.87791575700005],[4.032074415000096,51.88202545800003],[4.029795769000117,51.88825104400017],[4.031993035000113,51.89606354400014],[4.03663170700014,51.901556708],[4.041270379000082,51.90550364800008],[4.043467644000144,51.908677476000136],[4.040212436000104,51.92405833500008],[4.021169467000107,51.963324286],[4.01002037900011,51.98012929900001],[4.015635613000086,51.98769765800016],[4.02247155000012,51.99437083500011],[4.069021030000044,51.9879417990001],[4.10767662900011,51.99188873900009],[4.141856316000087,52.00560130400011],[4.28467858200014,52.11294179900006],[4.406911655000044,52.22345612200008],[4.508148634000122,52.33637116100006],[4.56861412900011,52.44525788000006],[4.577321811000104,52.473578192],[4.577321811000104,52.4809431010001],[4.596934441000087,52.50657786700007],[4.639333530000073,52.700669664000046],[4.657074415000068,52.75018952],[4.659841342000107,52.76528554900001],[4.669444207000083,52.79657623900006],[4.711680535000112,52.86310455900015],[4.721364780000073,52.89594147300006],[4.722422722000118,52.91449616100005],[4.726410352000102,52.938299872000144],[4.733897332000083,52.958889065],[4.745453321000099,52.96759674700017],[4.806976759000065,52.96181875200001],[4.81690514400006,52.96759674700017],[4.824392123000052,52.96015045799999],[4.809418165000096,52.929592190000065],[4.832774285000085,52.911322333],[4.873789910000113,52.90395742400001],[4.91309655000009,52.90558502800003],[4.935801629000139,52.913397528000026],[4.978282097000118,52.93569570500016],[4.99903405000012,52.9403343770001],[5.038910352000102,52.94350820500016],[5.078135613000114,52.95400625200013],[5.279470248000109,53.062933661000116],[5.294200066000116,53.073431708],[5.31275475400011,53.082831122000115],[5.358897332000139,53.089341539000095],[5.379242384000122,53.09735748900014],[5.39975019600007,53.12205638200013],[5.42709394600007,53.19033437700013],[5.447438998000052,53.220892645000056],[5.482595248000109,53.24555084800014],[5.504242384000094,53.257025458],[5.541026238000085,53.266587632],[5.557871941000087,53.27802155200013],[5.573496941000087,53.291652736000074],[5.59156334700009,53.30280182500012],[5.611827019000089,53.30711497600011],[5.659678582000111,53.31195709800009],[5.694590691000144,53.33006419500002],[5.854746941000087,53.368801174000126],[5.890798373000052,53.38426341400004],[5.91374759200005,53.3854027360001],[5.980804884000122,53.40607330900009],[6.077321811000076,53.40892161700005],[6.186045769000116,53.410996812000164],[6.273936394000089,53.412665106000176],[6.284353061000076,53.41054922100007],[6.301931186000104,53.40110911700005],[6.311534050000091,53.39899323100006],[6.32007897200009,53.40070221600014],[6.345550977000102,53.412665106000176],[6.494395379000139,53.43870677300005],[6.73023522200009,53.46063873900008],[6.82911217500009,53.450588283000016],[6.849782748000109,53.44489166900002],[6.86687259200005,53.434271552000084]]],[[[5.913828972000118,53.473863023000106],[5.954600457000083,53.461086330000064],[5.855642123000081,53.44741445500013],[5.752777540000095,53.44741445500013],[5.727061394000117,53.44334544499999],[5.678965691000059,53.43012116100014],[5.653575066000144,53.433742580000015],[5.636078321000099,53.44867584800015],[5.641937696000127,53.46336497600005],[5.658864780000016,53.47186920800008],[5.674001498000109,53.467922268000095],[5.913828972000118,53.473863023000106]]],[[[6.153168165000125,53.46881745000008],[6.133311394000117,53.45359935100011],[6.127452019000089,53.45990631700015],[6.127126498000052,53.463080145000035],[6.133311394000117,53.467922268000095],[6.122813347000147,53.481634833000115],[6.147959832000139,53.494859117000075],[6.185394727000072,53.50486888200014],[6.211761915000068,53.508856512000115],[6.310801629000139,53.51414622599999],[6.338715040000095,53.508856512000115],[6.338715040000095,53.50202057500009],[6.325043165000068,53.50202057500009],[6.153168165000125,53.46881745000008]]],[[[6.455088738000143,53.558091539000124],[6.510101759000122,53.543605861000074],[6.505625847000146,53.54376862200006],[6.501963738000114,53.54254791900003],[6.498871290000125,53.53998444200012],[6.496429884000094,53.53620026200009],[6.460703972000146,53.543361721000124],[6.44304446700005,53.54999420799999],[6.44117272200009,53.55662669500008],[6.455088738000143,53.558091539000124]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Norway","sov_a3":"NOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Norway","adm0_a3":"NOR","geou_dif":0,"geounit":"Norway","gu_a3":"NOR","su_dif":0,"subunit":"Norway","su_a3":"NOR","brk_diff":0,"name":"Norway","name_long":"Norway","brk_a3":"NOR","brk_name":"Norway","brk_group":null,"abbrev":"Nor.","postal":"N","formal_en":"Kingdom of Norway","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Norway","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":8,"mapcolor13":12,"pop_est":4676305,"gdp_md_est":276400,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-99","wb_a2":"-99","wb_a3":"-99","woe_id":-90,"woe_id_eh":23424910,"woe_note":"Does not include Svalbard, Jan Mayen, or Bouvet Islands (28289410).","adm0_a3_is":"NOR","adm0_a3_us":"NOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NOR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[3.382578972000089,-54.44931405999998],[3.364512566000087,-54.46249765399993],[3.361175977000073,-54.45842864399988],[3.357920769000117,-54.457207940999865],[3.354502800000091,-54.45680103999986],[3.350840691000144,-54.455661717],[3.345550977000073,-54.418552341999906],[3.377207879000139,-54.39137135199981],[3.422129754000139,-54.38014088299989],[3.45728600400011,-54.39006926899999],[3.477793816000059,-54.39674244599995],[3.486664259000122,-54.40203215899984],[3.484629754000082,-54.41090260199988],[3.479340040000096,-54.41871510199987],[3.471934441000116,-54.43580494599991],[3.467539910000141,-54.44133879999984],[3.442230665000096,-54.44801197699998],[3.382578972000089,-54.44931405999998]]],[[[11.03980553500014,59.07440827000013],[11.047618035000141,59.07318756700001],[11.070485873000052,59.07489655200002],[11.069590691000144,59.07762278899998],[11.070323113000084,59.079331772999986],[11.07569420700014,59.08047109600001],[11.083018425000148,59.07729726800015],[11.082367384000094,59.067857164000124],[11.07553144600007,59.05853913],[11.064789259000063,59.051499742000104],[11.051605665000094,59.04612864800008],[11.050466342000078,59.04230377800015],[11.05486087300005,59.03587474200014],[11.046397332000112,59.02680084800012],[11.030528191000085,59.02081940300012],[11.018239780000044,59.01935455900015],[11.013519727000128,59.02163320500013],[11.011566602000073,59.02537669500008],[11.008962436000076,59.02920156500009],[11.000824415000068,59.029608466000084],[10.991465691000116,59.03359609600007],[10.991547071000099,59.04686107],[10.993418816000087,59.06232330900013],[10.99317467500012,59.07664622600002],[11.003265821000099,59.08649323100011],[11.020762566000144,59.091253973000114],[11.034353061000104,59.08893463700015],[11.040212436000047,59.081040757],[11.03980553500014,59.07440827000013]]],[[[10.855723504000139,59.102362372000144],[10.857269727000073,59.099066473],[10.871918165000094,59.10651276200018],[10.897634311000047,59.115627346000075],[10.910492384000065,59.11644114799999],[10.91382897200009,59.11155833500012],[10.914398634000065,59.100734768000116],[10.907074415000066,59.09056224199999],[10.883799675000148,59.07217031500012],[10.877452019000115,59.07123444200014],[10.874766472000118,59.075669664000124],[10.869802280000073,59.077093817],[10.855723504000139,59.074164130000085],[10.845713738000143,59.075751044000114],[10.841807488000143,59.08022695500007],[10.838389519000145,59.08641185100013],[10.829112175000091,59.09943268400003],[10.832530144000117,59.10443756700006],[10.842621290000068,59.11001211100007],[10.855479363000086,59.11538320500013],[10.865244988000141,59.11660390800016],[10.867930535000113,59.113267320000126],[10.86500084700009,59.10895416900003],[10.859141472000147,59.1060244810001],[10.855723504000139,59.102362372000144]]],[[[5.607920769000117,59.134426174000126],[5.624278191000116,59.131048895],[5.634776238000086,59.13149648600001],[5.646820509000093,59.130682684000085],[5.67750084700009,59.12250397300009],[5.697927280000073,59.120184637000115],[5.720957879000138,59.125677802000055],[5.739105665000039,59.12441640800013],[5.764008009000094,59.117865302000055],[5.775889519000117,59.11273834800014],[5.778493686000047,59.10138580900018],[5.774750196000099,59.08055247599999],[5.750743035000141,59.07233307500009],[5.66700280000012,59.10040924700008],[5.601573113000086,59.11522044500007],[5.575205925000091,59.12400950700013],[5.585134311000076,59.127183335000026],[5.59359785200013,59.13251373900006],[5.607920769000117,59.134426174000126]]],[[[5.451182488000085,59.163478908],[5.44320722700013,59.15892161700007],[5.434418165000068,59.161078192000055],[5.43067467500012,59.16474030200011],[5.432627800000062,59.167222398000135],[5.431976759000122,59.170599677000055],[5.427419467000078,59.17454661700005],[5.421722852000102,59.17780182500009],[5.39600670700014,59.18793366100014],[5.384776238000143,59.19529857000004],[5.376800977000102,59.20722077000009],[5.375336134000122,59.21881745000009],[5.378428582000112,59.22675202000006],[5.385101759000065,59.23411692900005],[5.393890821000127,59.240423895],[5.40381920700014,59.24209219],[5.413828972000117,59.24079010600013],[5.425547722000118,59.23639557500004],[5.432302280000044,59.23273346600018],[5.439219597000147,59.22992584800012],[5.451996290000096,59.22211334800012],[5.462087436000047,59.210882880000135],[5.466319207000083,59.204535223],[5.46810957100007,59.196722723],[5.464610222000061,59.18309153900007],[5.451182488000085,59.163478908]]],[[[6.004405144000144,59.23078034100002],[5.958181186000047,59.22785065300012],[5.929860873000109,59.24347565300009],[5.932465040000095,59.26898834800009],[5.95248457100007,59.28392161700014],[5.987559441000144,59.29083893400004],[6.016368035000085,59.29218170800011],[6.072601759000065,59.28506094000007],[6.099864129000053,59.27655670800014],[6.091807488000113,59.261419989000146],[6.056325717000049,59.24070872600013],[6.004405144000144,59.23078034100002]]],[[[5.278981967000049,59.29254791900002],[5.295099389000086,59.28285371900013],[5.314098375000071,59.27359874600007],[5.31792926600005,59.2565397630001],[5.317382707000149,59.228853028000074],[5.302363396000089,59.20549853600014],[5.297090544000071,59.16888439800005],[5.263194207000083,59.1518415390001],[5.235929479000077,59.14105820900014],[5.208550995000081,59.14288559800017],[5.188430242000067,59.15724584600007],[5.178666760000027,59.17049469400016],[5.166168649000041,59.195682414000096],[5.164431019000062,59.21805485500006],[5.172691646000089,59.24102472600007],[5.172129468000122,59.25827843800009],[5.173124861000076,59.26871043000009],[5.165278478000118,59.27342763000005],[5.17872155000012,59.292222398000106],[5.228282097000147,59.285589911000145],[5.182790561000104,59.32001373900008],[5.173838738000057,59.33405182500003],[5.174489780000101,59.349269924],[5.185231967000021,59.355861721000096],[5.198741082000112,59.361883856000084],[5.20850670700014,59.37494538000006],[5.188487175000063,59.383978583000086],[5.180023634000122,59.40058014500012],[5.185883009000064,59.41474030200005],[5.20850670700014,59.415961005000085],[5.244883660000113,59.369208075000095],[5.253916863000114,59.34796784100012],[5.262543165000125,59.341050523000106],[5.272634311000104,59.33563873900006],[5.28028405000012,59.330267645],[5.286468946000099,59.32037995000009],[5.284027540000068,59.31537506700015],[5.278819207000083,59.31012604400018],[5.276866082000112,59.29926178600009],[5.278981967000049,59.29254791900002]]],[[[5.213389519000117,59.82965729400003],[5.220225457000112,59.826605536000145],[5.222829623000023,59.81659577000006],[5.227224155000101,59.80731842700003],[5.237640821000099,59.80548737200002],[5.249847852000072,59.80573151200015],[5.259776238000086,59.802679755000085],[5.27955162900011,59.7779808610001],[5.293223504000139,59.76447174700002],[5.307139519000116,59.75861237200017],[5.317637566000087,59.75226471600014],[5.334239129000139,59.721421617],[5.344981316000144,59.71015045799999],[5.309743686000104,59.69013092700011],[5.290782097000089,59.68353913000006],[5.270030144000089,59.682847398000106],[5.270030144000089,59.68968333500011],[5.281016472000147,59.691351630000135],[5.31031334700009,59.70331452000006],[5.302419467000107,59.71845123900007],[5.297862175000148,59.73627350500014],[5.289317254000139,59.74982330900012],[5.270030144000089,59.75177643400014],[5.273448113000114,59.73501211100013],[5.260590040000096,59.7338727890001],[5.241221550000062,59.74249909100011],[5.225596550000091,59.75519440300015],[5.220469597000061,59.755438544000114],[5.210785352000102,59.753241278000125],[5.20069420700014,59.749457098],[5.194183790000068,59.74494049700005],[5.189952019000117,59.73639557500012],[5.19044030000012,59.72992584800003],[5.19288170700014,59.72321198100014],[5.194183790000068,59.71385325700013],[5.187998894000089,59.70262278900013],[5.160166863000114,59.68244049700011],[5.15398196700005,59.66982656500012],[5.160166863000114,59.655218817],[5.17481530000012,59.66193268400015],[5.19288170700014,59.67584870000003],[5.20850670700014,59.682847398000106],[5.191661004000139,59.663478908000094],[5.187998894000089,59.655503648000135],[5.19044030000012,59.64728424700006],[5.197520379000082,59.64081452000012],[5.201508009000065,59.63312409100002],[5.194183790000068,59.62140534100003],[5.201670769000117,59.61456940300011],[5.193858269000117,59.60724518400009],[5.185801629000082,59.60162995000012],[5.177093946000099,59.59747955900014],[5.155121290000095,59.591701565],[5.152842644000117,59.591620184000114],[5.152598504000082,59.59463125200013],[5.146494988000085,59.60089752800017],[5.135590040000125,59.60944245000009],[5.124278191000116,59.62140534100003],[5.115407748000081,59.63605377800003],[5.111664259000065,59.652411200000145],[5.116709832000083,59.685695705000164],[5.131358269000089,59.71198151200015],[5.155446811000019,59.735093492000104],[5.187998894000089,59.75861237200017],[5.144867384000065,59.7575544290001],[5.124847852000102,59.76186758000005],[5.118418816000087,59.779038804000045],[5.105235222000147,59.767564195000105],[5.089528842000078,59.762274481000034],[5.076182488000057,59.766302802],[5.070648634000037,59.782782294000086],[5.076182488000057,59.79462311400014],[5.087412957000054,59.800930080000064],[5.097422722000147,59.80931224200004],[5.098643425000148,59.82746002800006],[5.10303795700014,59.82534414300012],[5.114105665000096,59.82200755400011],[5.118418816000087,59.82001373900005],[5.122243686000104,59.828192450000174],[5.128428582000083,59.831610419000086],[5.136566602000102,59.83100006700012],[5.146494988000085,59.82746002800006],[5.138926629000139,59.840806382000046],[5.104828321000127,59.86847565300014],[5.116221550000091,59.87323639500014],[5.128184441000116,59.87498607000005],[5.15398196700005,59.87466054900004],[5.15967858200014,59.85993073100003],[5.168304884000037,59.850002346000124],[5.194183790000068,59.83368561400001],[5.204112175000148,59.83047109600015],[5.213389519000117,59.82965729400003]]],[[[5.49781334700009,59.803412177000105],[5.481700066000116,59.787909247000094],[5.421885613000143,59.758978583],[5.38965905000012,59.75861237200017],[5.363291863000114,59.76406484600001],[5.358164910000113,59.77220286700013],[5.370371941000087,59.77464427300007],[5.385915561000075,59.77204010600015],[5.399587436000019,59.771226304000045],[5.406504754000109,59.779038804000045],[5.401866082000082,59.78729889500012],[5.390147332000112,59.79205963700004],[5.37794030000012,59.792914130000135],[5.372406446000099,59.789618231000084],[5.366384311000104,59.78046295800011],[5.352305535000056,59.77765534100016],[5.336273634000065,59.779038804000045],[5.324554884000094,59.782782294000086],[5.314300977000073,59.789455471000124],[5.310394727000073,59.794989325000145],[5.304047071000126,59.813177802000055],[5.284841342000078,59.848211981000034],[5.273122592000078,59.86163971600003],[5.25635826900006,59.87466054900004],[5.261566602000073,59.885158596000096],[5.261973504000082,59.89508698100009],[5.257985873000081,59.90338776200015],[5.250173373000109,59.909409897999986],[5.287608269000117,59.93781159100012],[5.297536655000044,59.95099518400015],[5.28028405000012,59.95661041900014],[5.275401238000143,59.95966217700005],[5.282888217000021,59.966620184000035],[5.294932488000143,59.973822333000086],[5.304047071000126,59.97768789300006],[5.313975457000139,59.97821686400006],[5.326182488000114,59.97650788000006],[5.337657097000147,59.97199127800009],[5.344981316000144,59.964056708000115],[5.38819420700014,59.95774974199998],[5.420664910000141,59.93838125200006],[5.446055535000056,59.91132233300014],[5.468028191000087,59.882066148000106],[5.489105665000096,59.86102936400008],[5.490896030000101,59.85195547100007],[5.492523634000122,59.82371653900011],[5.49781334700009,59.803412177000105]]],[[[5.660411004000053,60.06647370000004],[5.660411004000053,60.01691315300009],[5.652842644000117,60.000921942],[5.605235222000117,59.96222565300014],[5.606130405000016,59.95050690300015],[5.62208092500012,59.93854401200003],[5.639903191000115,59.91559479400014],[5.62240644600007,59.91120026200015],[5.59156334700009,59.9227969420001],[5.571543816000116,59.92304108300011],[5.528086785000085,59.90176015800012],[5.508067254000109,59.899115302000055],[5.489105665000096,59.91559479400014],[5.481700066000116,59.95380280200002],[5.476817254000139,59.96295807500009],[5.46648196700005,59.96084219000007],[5.456879102000073,59.954535223000114],[5.454274936000076,59.95099518400015],[5.432790561000046,59.95233795800014],[5.410166863000086,59.95766836100002],[5.388926629000082,59.966294664000095],[5.372406446000099,59.97768789300006],[5.361827019000144,59.995347397999986],[5.375254754000139,60.002508856000034],[5.449392123000081,60.005031643000144],[5.453623894000116,60.00958893400009],[5.444346550000148,60.02240631700011],[5.439707879000139,60.032416083000115],[5.444102410000112,60.04100169500013],[5.45289147200009,60.048000393],[5.461680535000141,60.05280182500008],[5.468272332000112,60.05243561400009],[5.475840691000087,60.048814195000105],[5.484141472000147,60.04637278899999],[5.492523634000122,60.04970937700001],[5.49659264400006,60.05247630400009],[5.508799675000148,60.05898672100007],[5.512950066000087,60.06024811400007],[5.577891472000147,60.06647370000004],[5.583343946000099,60.06500885600015],[5.588715040000068,60.06171295800011],[5.594574415000095,60.05996328300013],[5.602061394000145,60.06329987200014],[5.606455925000148,60.06854889500015],[5.607920769000117,60.07172272300003],[5.610606316000087,60.073431708000115],[5.619151238000114,60.073919989],[5.64698326900006,60.080145575000145],[5.656748894000116,60.078843492000075],[5.660411004000053,60.06647370000004]]],[[[5.259532097000118,60.075588283000016],[5.262461785000141,60.07538483300005],[5.265879754000053,60.082668361000074],[5.272715691000087,60.08372630400014],[5.279307488000142,60.081244208000115],[5.289724155000044,60.074286200000024],[5.29835045700014,60.05971914300009],[5.300059441000144,60.05076732000008],[5.299082879000082,60.04633209800009],[5.29859459700009,60.03782786700007],[5.297048373000052,60.02753327000014],[5.279307488000142,60.012518622000115],[5.277598504000139,60.00360748900009],[5.268809441000087,59.9948591170001],[5.25367272200009,59.993109442],[5.246104363000143,59.99843984600007],[5.245453321000099,60.00429922100003],[5.24008222700013,60.00649648600002],[5.230967644000145,60.00617096600008],[5.218272332000083,60.008490302000055],[5.204274936000019,60.016058661],[5.199392123000052,60.023830471],[5.20069420700014,60.02936432500012],[5.197927280000101,60.033880927000084],[5.173838738000057,60.04612864800013],[5.171722852000045,60.04946523600016],[5.172536655000073,60.0541039080001],[5.179860873000081,60.06818268400003],[5.197113477000073,60.08197663000014],[5.20362389400006,60.08828359600009],[5.206797722000118,60.08673737200005],[5.20728600400011,60.079535223],[5.211110873000052,60.07123444200011],[5.216970248000081,60.0614281270001],[5.219574415000068,60.051011460000105],[5.223887566000087,60.04230377800003],[5.231700066000087,60.04051341400004],[5.239756707000112,60.043931382000046],[5.242442254000082,60.046698309000085],[5.240407748000052,60.04946523600016],[5.24195397200009,60.051336981000034],[5.246592644000117,60.05145905200003],[5.241384311000046,60.055365302],[5.228770379000139,60.06732819200012],[5.222992384000094,60.07880280200008],[5.221202019000089,60.08551666900003],[5.218272332000083,60.087958075000145],[5.215342644000144,60.08881256700006],[5.204925977000072,60.107082424000126],[5.205332879000081,60.11737702000015],[5.217539910000141,60.11847565300009],[5.222015821000099,60.11713288000002],[5.229828321000099,60.11220937700012],[5.247813347000147,60.09853750200001],[5.25367272200009,60.08978913000014],[5.24976647200009,60.08942291900002],[5.25220787900011,60.08502838700003],[5.259532097000118,60.075588283000016]]],[[[5.093760613000086,60.32021719],[5.097666863000086,60.29816315300011],[5.082855665000125,60.285549221000124],[5.05030358200014,60.28620026200018],[5.058441602000073,60.275213934000114],[5.086192254000139,60.26154205900017],[5.098643425000148,60.25141022300012],[5.104258660000056,60.24168528899998],[5.108246290000039,60.22939687700013],[5.11068769600007,60.21531810099999],[5.111664259000065,60.20050690300012],[5.103200717000107,60.19074127800017],[5.084320509000094,60.18895091399998],[5.065603061000104,60.19122955900015],[5.05713951900006,60.19367096600008],[5.054372592000107,60.20848216400007],[5.04664147200009,60.22451406500015],[5.035817905000101,60.23794179900015],[5.022959832000083,60.24518463700015],[5.017425977000073,60.22077057500003],[4.993011915000096,60.22528717700008],[4.964610222000089,60.24323151200013],[4.947927280000044,60.258856512000094],[4.93848717500012,60.275051174000154],[4.935801629000139,60.285549221000124],[4.941416863000143,60.291245835000105],[4.992442254000139,60.297023830000064],[5.007578972000147,60.29559967700002],[5.022959832000083,60.28620026200018],[5.036631707000112,60.31346263200008],[5.020192905000016,60.307684637000094],[5.006683790000039,60.31321849200013],[4.993662957000055,60.32233307500011],[4.978282097000118,60.32709381700012],[4.97095787900011,60.33283112200008],[4.965098504000082,60.35944245000003],[4.960785352000073,60.36810944200012],[4.971934441000087,60.383978583000065],[4.96851647200009,60.39215729400014],[4.959646030000044,60.39777252800015],[4.954600457000111,60.40595123900006],[4.944590691000116,60.43024323100006],[4.948903842000107,60.43915436400009],[4.96827233200014,60.443793036000024],[4.976817254000053,60.4412295590001],[4.981944207000083,60.43659088700018],[5.002207879000081,60.39996979400014],[5.070648634000037,60.347601630000085],[5.093760613000086,60.32021719]]],[[[5.026377800000091,60.522894598],[5.150157097000147,60.50136953300007],[5.194183790000068,60.47113678600009],[5.204763217000107,60.44916413000005],[5.204356316000087,60.43183014500009],[5.192393425000063,60.41876862200008],[5.139903191000116,60.4018415390001],[5.125010613000057,60.40241120000008],[5.118418816000087,60.41307200700011],[5.115733269000116,60.42804596600014],[5.119313998000081,60.43537018400014],[5.132823113000142,60.443793036000024],[5.078949415000125,60.45555247599999],[5.064463738000086,60.464911200000024],[5.070648634000037,60.469183661000116],[5.073496941000087,60.47040436400014],[5.078135613000114,60.47113678600009],[5.078135613000114,60.477972723000015],[5.063324415000124,60.47679271000008],[5.059092644000116,60.482489325000145],[5.05811608200014,60.49201080900015],[5.053721550000148,60.502142645],[5.04395592500012,60.50641510600011],[5.031586134000094,60.50458405200015],[5.018402540000124,60.50063711100016],[5.005869988000143,60.49843984600006],[4.990570509000065,60.50617096600016],[4.977793816000116,60.52431875200007],[4.960785352000073,60.559881903000054],[4.970876498000052,60.554103908000066],[4.975759311000104,60.55394114800011],[4.981944207000083,60.55304596600003],[5.026377800000091,60.522894598]]],[[[4.827321811000047,60.63141510600009],[4.82943769600007,60.62970612200009],[4.837901238000114,60.6305199240001],[4.845876498000052,60.62811920800006],[4.851573113000143,60.62107982],[4.851817254000082,60.614203192000055],[4.84473717500012,60.611395575000024],[4.84083092500012,60.60675690300009],[4.843923373000109,60.58974844000013],[4.836761915000068,60.58673737200002],[4.820974155000044,60.58441803600006],[4.801768425000062,60.58710358300014],[4.78288821700005,60.59275950700014],[4.779470248000024,60.5985375020001],[4.78891035200013,60.59747955900003],[4.790782097000118,60.600287177],[4.785980665000125,60.61180247600013],[4.785411004000138,60.61579010600009],[4.788747592000078,60.61395905200011],[4.79200280000012,60.61456940300009],[4.794932488000143,60.615423895000085],[4.793630405000044,60.61786530200012],[4.791026238000143,60.6305199240001],[4.78842207100007,60.638128973000114],[4.787608269000144,60.64423248900011],[4.786143425000091,60.64842357000004],[4.786143425000091,60.65607330900017],[4.79127037900011,60.666083075000145],[4.801442905000044,60.66718170800011],[4.81006920700014,60.66128164300006],[4.820567254000109,60.65643952000001],[4.823985222000118,60.65151601800012],[4.82390384200005,60.64655182500009],[4.825368686000104,60.64362213700016],[4.830332879000053,60.64004140800011],[4.830902540000125,60.63556549700002],[4.827321811000047,60.63141510600009]]],[[[5.675954623000052,60.472886460000076],[5.662933790000068,60.47003815300003],[5.63648522200009,60.47113678600009],[5.624522332000055,60.46686432500018],[5.616709832000083,60.457464911000145],[5.611827019000089,60.44806549700002],[5.608897332000083,60.443793036000024],[5.529063347000147,60.435044664000124],[5.50212649800008,60.436957098000086],[5.486013217000107,60.444281317],[5.459157748000052,60.46645742400006],[5.444346550000148,60.47113678600009],[5.435557488000086,60.476507880000135],[5.392832879000082,60.512111721],[5.323985222000118,60.54682038000006],[5.338715040000096,60.55206940300014],[5.385996941000059,60.55304596600003],[5.409027540000125,60.55801015800007],[5.414805535000085,60.56199778900004],[5.423594597000146,60.570746161000116],[5.434336785000084,60.57782623900001],[5.475433790000068,60.594061591000035],[5.521983269000089,60.60614655200013],[5.543223504000081,60.61741771000011],[5.56967207100007,60.625067450000145],[5.581553582000112,60.6322289080001],[5.587738477000072,60.642523505000106],[5.588715040000068,60.665472723],[5.59156334700009,60.67658112200003],[5.608409050000091,60.688421942],[5.636078321000099,60.692613023000135],[5.66570071700005,60.68878815300012],[5.687673373000052,60.67658112200003],[5.687673373000052,60.61172109600015],[5.685801629000082,60.59593333499999],[5.674001498000109,60.54682038000006],[5.674164259000065,60.52920156500015],[5.68140709700009,60.48167552300005],[5.675954623000052,60.472886460000076]]],[[[4.824880405000016,60.93008047100007],[4.826345248000081,60.92902252800012],[4.855642123000109,60.932521877],[4.870778842000106,60.93292877800011],[4.882823113000114,60.92999909100008],[4.884125196000099,60.925604559000085],[4.87663821700005,60.92593008000012],[4.87086022200009,60.923773505000106],[4.874034050000148,60.91766998900014],[4.885264519000145,60.91372304900015],[4.897227410000085,60.90741608300011],[4.922536655000015,60.878119208],[4.924164259000037,60.87116120000011],[4.920095248000081,60.86835358300005],[4.922373894000144,60.867499091000134],[4.928396030000073,60.86424388200012],[4.92937259200005,60.86115143400012],[4.928965691000116,60.8586286480001],[4.925140821000127,60.85553620000003],[4.91822350400011,60.855373440000065],[4.897959832000112,60.85846588700004],[4.878754102000045,60.865139065],[4.872406446000127,60.875067450000095],[4.872243686000076,60.88401927300013],[4.86817467500009,60.88776276200015],[4.865407748000052,60.88568756700015],[4.86101321700005,60.88467031500009],[4.845388217000078,60.89008209800012],[4.834727410000141,60.89520905200013],[4.830902540000125,60.90241120000017],[4.833181186000104,60.90839264500009],[4.831228061000047,60.91449616100009],[4.825205925000147,60.92047760600009],[4.821055535000113,60.918524481000055],[4.81690514400006,60.911688544000036],[4.809580925000148,60.91185130399999],[4.800303582000112,60.916937567000026],[4.791351759000094,60.91840241100008],[4.783864780000101,60.916937567000026],[4.781586134000036,60.917629299000154],[4.784027540000068,60.92023346600014],[4.781993035000141,60.924017645000056],[4.77686608200014,60.92999909100008],[4.781586134000036,60.93528880400008],[4.795095248000109,60.93886953300013],[4.836761915000068,60.943182684000035],[4.843272332000055,60.93886953300013],[4.836599155000101,60.93317291900014],[4.824880405000016,60.93008047100007]]],[[[4.73959394600007,61.027655341000084],[4.739024285000085,61.01373932500012],[4.731130405000015,60.99994538],[4.71843509200005,60.99091217699999],[4.70687910200013,60.98851146000005],[4.701914910000084,60.99371979400014],[4.701345248000109,61.001613674],[4.705414259000065,61.01044342700008],[4.708669467000107,61.01972077000012],[4.705414259000065,61.01874420800006],[4.697438998000109,61.00771719],[4.691742384000122,61.00250885600011],[4.688487175000091,60.999457098000036],[4.680349155000073,60.99713776200015],[4.672373894000117,61.003322658],[4.668793165000039,61.014105536000116],[4.664886915000039,61.018703518000066],[4.656260613000143,61.01951732000008],[4.648692254000082,61.02643463700014],[4.646006707000112,61.03628164300009],[4.64478600400011,61.04584381700009],[4.648122592000021,61.05231354400008],[4.648773634000065,61.054673570000126],[4.643809441000116,61.05760325700005],[4.644704623000109,61.060248114000146],[4.659353061000047,61.06606679900001],[4.664073113000143,61.06745026200017],[4.668467644000117,61.068304755000085],[4.674571160000113,61.073391018],[4.679698113000114,61.079657294000135],[4.688975457000083,61.08234284100003],[4.700043165000096,61.08222077000006],[4.705577019000117,61.07623932500015],[4.709157748000109,61.06728750200001],[4.714610222000147,61.06012604400017],[4.712168816000116,61.05516185100011],[4.711436394000088,61.04828522300003],[4.721446160000141,61.04022858300009],[4.732676629000053,61.035060940000065],[4.73959394600007,61.027655341000084]]],[[[4.890391472000147,61.14520905199999],[4.895274285000113,61.1373558610001],[4.903168165000096,61.13959381700009],[4.90609785200013,61.14642975499999],[4.905772332000112,61.155015367000104],[4.903330925000148,61.16351959800015],[4.900075717000107,61.16998932500014],[4.910329623000052,61.16937897300009],[4.918630405000044,61.170599677000105],[4.92603600400011,61.1732852230001],[4.934255405000101,61.17743561400012],[4.929698113000057,61.18048737200003],[4.924815300000091,61.18642812700013],[4.919932488000113,61.19110748900006],[4.932383660000141,61.19228750200009],[4.943532748000052,61.19017161699998],[4.952891472000089,61.185126044000135],[4.960785352000073,61.17743561400012],[4.98731530000012,61.11969635600009],[4.985362175000091,61.104885158],[4.967946811000103,61.092271226000136],[4.926524285000085,61.07587311400012],[4.909678582000083,61.063869533],[4.893809441000058,61.056097723],[4.884776238000142,61.06976959800015],[4.875498894000117,61.08978913000011],[4.858409050000148,61.10114166900008],[4.855642123000109,61.096502997000144],[4.82593834700009,61.07941315300012],[4.820567254000109,61.07754140800013],[4.815196160000056,61.06899648600002],[4.814138217000106,61.061468817000055],[4.811859571000127,61.05414459800006],[4.803233269000117,61.04653554900004],[4.797048373000052,61.062811591000134],[4.795258009000065,61.08291250200001],[4.796397332000112,61.118475653000175],[4.795583530000101,61.12604401200012],[4.791188998000109,61.13690827],[4.790212436000046,61.14614492400007],[4.794606967000021,61.153753973],[4.818369988000113,61.15542226800013],[4.830577019000089,61.16323476800002],[4.851328972000089,61.12929922100007],[4.863291863000113,61.12173086100002],[4.872080925000091,61.1364606790001],[4.869965040000096,61.15013255400005],[4.84473717500012,61.19733307500003],[4.862478061000019,61.203436591000106],[4.872813347000117,61.19464752800006],[4.88575280000012,61.16323476800002],[4.890391472000147,61.14520905199999]]],[[[4.903493686000047,61.676174221],[4.904795769000117,61.66022370000008],[4.902842644000088,61.6524925800001],[4.902354363000086,61.654608466000084],[4.899099155000044,61.65936920799999],[4.892100457000055,61.66278717700003],[4.883555535000141,61.66429271000005],[4.865407748000052,61.65936920799999],[4.857188347000147,61.66160716399998],[4.853282097000147,61.663316147999986],[4.848155144000117,61.66498444200001],[4.84083092500012,61.66962311400012],[4.836273634000094,61.67454661699999],[4.831879102000102,61.68146393400017],[4.830251498000081,61.69000885600009],[4.832855665000068,61.69578685100008],[4.838715040000125,61.699611721000096],[4.848317905000101,61.701605536000116],[4.858246290000096,61.702215887000186],[4.863047722000089,61.708197333],[4.870290561000104,61.714667059000085],[4.879893425000091,61.711981512000115],[4.877452019000144,61.70099518400014],[4.884287957000083,61.69570547100009],[4.889496290000068,61.688462632000046],[4.895762566000116,61.6845156920001],[4.903493686000047,61.676174221]]],[[[4.952972852000073,61.8969587260001],[5.222829623000023,61.84845612200003],[5.205414259000065,61.833929755],[5.176605665000125,61.82566966400011],[5.118418816000087,61.821112372000144],[5.131846550000091,61.82782623900003],[5.138682488000086,61.837347723],[5.137461785000085,61.847357489],[5.12598717500012,61.85586172100012],[5.090586785000113,61.82811107000004],[5.053396030000044,61.80878327000011],[5.012950066000087,61.795803127000035],[4.916270379000082,61.78095123900006],[4.88965905000012,61.78510163],[4.872080925000091,61.80060455900012],[4.870778842000106,61.81338125200015],[4.880707227000102,61.81435781500012],[4.900075717000107,61.80744049700002],[4.907481316000115,61.811224677000055],[4.914073113000086,61.81610748900011],[4.926768425000147,61.82794830900017],[4.898122592000078,61.827053127000106],[4.82943769600007,61.83421458500014],[4.803233269000117,61.841620184000114],[4.821950717000107,61.85342031500009],[4.846446160000113,61.862494208],[4.86491946700005,61.87303294500004],[4.865244988000085,61.889390367000075],[4.909515821000127,61.89817942900014],[4.952972852000073,61.8969587260001]]],[[[5.067637566000144,62.00885651200012],[5.07976321700005,62.00641510600017],[5.08578535200013,62.01040273600016],[5.089040561000076,62.01581452],[5.101817254000139,62.021307684000035],[5.120290561000047,62.025783596],[5.133555535000085,62.01984284100016],[5.15211022200009,61.997951565000115],[5.148692254000081,61.988592841000106],[5.138926629000139,61.97972239800005],[5.12989342500012,61.96369049700017],[5.127940300000091,61.95856354400014],[5.123220248000081,61.94879791900012],[5.112559441000144,61.93691640800016],[5.09522545700014,61.92743561400006],[5.075368686000047,61.92719147300003],[5.041026238000086,61.934637762000094],[5.033864780000073,61.935044664000095],[5.021494988000113,61.938869533000016],[5.015472852000102,61.943426825000145],[5.016123894000145,61.95246002800015],[5.02475019600007,61.96019114799999],[5.036631707000112,61.961493231000176],[5.044200066000059,61.95697663000011],[5.048350457000112,61.95282623900009],[5.055837436000076,61.95897044500008],[5.054372592000107,61.97235748900006],[4.998545769000117,61.99624258000012],[4.986175977000102,62.00527578300012],[4.98422285200013,62.00946686400009],[4.984141472000146,62.01862213700014],[4.985850457000083,62.02741120000003],[4.985118035000141,62.03388092700011],[4.992930535000113,62.03506094000015],[5.009613477000073,62.03066640800007],[5.067637566000144,62.00885651200012]]],[[[5.70484459700009,62.297512111000025],[5.711680535000085,62.29096100500011],[5.718597852000102,62.28546784100011],[5.726573113000143,62.28180573100014],[5.736094597000147,62.28046295800005],[5.781260613000086,62.28119538],[5.801117384000094,62.277411200000145],[5.804453972000118,62.26679108300011],[5.795746290000124,62.26398346600017],[5.789317254000109,62.25885651200014],[5.785329623000052,62.25169505400011],[5.783864780000101,62.24258047100013],[5.785817905000044,62.238470770000085],[5.790293816000087,62.233872789000046],[5.794932488000114,62.230943101000115],[5.797536655000044,62.23200104400017],[5.791677280000073,62.21906159100017],[5.790700717000107,62.214992580000015],[5.778330925000063,62.20742422100007],[5.701426629000082,62.191066799000154],[5.546885613000114,62.19269440300017],[5.537771030000044,62.19489166900015],[5.530039910000113,62.197821356000176],[5.522471550000091,62.20477936400008],[5.518809441000116,62.21271393400003],[5.513926629000053,62.2202009140001],[5.50212649800008,62.225816148000106],[5.583262566000116,62.21841054900004],[5.60572350400011,62.225816148000106],[5.5885522800001,62.23200104400017],[5.568369988000143,62.236273505],[5.530039910000113,62.23944733300005],[5.518077019000089,62.243150132],[5.523773634000094,62.25104401200014],[5.539398634000065,62.258246161],[5.557302280000016,62.259955145],[5.55420983200014,62.263373114000125],[5.552012566000144,62.26666901200014],[5.54908287900011,62.26984284100002],[5.543711785000056,62.27301666900008],[5.563243035000141,62.29140859600012],[5.598480665000096,62.29702383000013],[5.670583530000101,62.294094143],[5.679209832000112,62.29621002800012],[5.687836134000122,62.29995351800015],[5.696462436000104,62.30166250200015],[5.70484459700009,62.297512111000025]]],[[[5.72006269600007,62.363104559000035],[5.721527540000125,62.360093492000125],[5.729665561000047,62.36163971600016],[5.741465691000087,62.36066315300009],[5.742360873000081,62.34975820500004],[5.734629754000081,62.33787669500008],[5.733734571000098,62.33307526200017],[5.739024285000056,62.332424221000124],[5.728526238000086,62.32664622600007],[5.698985222000118,62.32135651200009],[5.674571160000085,62.32273997600008],[5.668955925000091,62.32758209800015],[5.667246941000087,62.32990143400013],[5.65951582100007,62.32802969000015],[5.654063347000118,62.324408270000085],[5.649750196000127,62.31976959800006],[5.635996941000116,62.31928131700009],[5.613942905000101,62.3246931010001],[5.60303795700014,62.328762111000074],[5.609711134000094,62.33380768400012],[5.630137566000059,62.34178294500007],[5.654307488000086,62.3451195330001],[5.673106316000116,62.34381745000008],[5.679860873000052,62.346502997000165],[5.678884311000075,62.35541413000011],[5.685313347000089,62.36204661699998],[5.696950717000107,62.36465078300007],[5.71583092500012,62.36517975500005],[5.72006269600007,62.363104559000035]]],[[[5.576914910000085,62.335272528000175],[5.54249108200014,62.331732489],[5.52133222700013,62.33486562700007],[5.515635613000057,62.3403181010001],[5.514903191000116,62.345526434000085],[5.516856316000087,62.34943268400009],[5.509938998000081,62.36399974200013],[5.523610873000109,62.36969635600011],[5.547373894000117,62.36786530200013],[5.564789259000094,62.36107005400011],[5.581716342000077,62.358832098000114],[5.596364780000072,62.35447825700014],[5.597666863000085,62.34479401200014],[5.593923373000052,62.33978913000011],[5.576914910000085,62.335272528000175]]],[[[6.06625410200013,62.34821198100017],[6.078786655000044,62.34186432500014],[6.068044467000021,62.34210846600008],[6.057383660000085,62.34088776200017],[6.037119988000085,62.33502838700003],[5.87403405000012,62.25543854400014],[5.811289910000141,62.24567291900011],[5.818044467000078,62.25665924700017],[5.840993686000076,62.26976146000014],[5.851573113000114,62.28046295800005],[5.846446160000113,62.281683661000095],[5.837087436000075,62.28558991100009],[5.831716342000107,62.286607164000046],[5.841075066000144,62.31305573100012],[5.828786655000101,62.329494533],[5.811208530000073,62.34345123900009],[5.804453972000118,62.362372137000094],[5.815603061000046,62.38572825699999],[5.836599155000073,62.40322500200015],[5.861989780000101,62.415594794000086],[5.886241082000082,62.423814194999984],[5.917002800000091,62.4298770200001],[5.943858269000145,62.42804596600011],[5.967458530000101,62.41730377800009],[5.988617384000094,62.396470445000105],[5.992686394000144,62.386297919000164],[5.994476759000065,62.37518952000011],[5.999522332000083,62.36611562700013],[6.012950066000087,62.362372137000094],[6.026703321000098,62.36017487200012],[6.06625410200013,62.34821198100017]]],[[[6.216563347000147,62.44135163000011],[6.263031446000099,62.423814194999984],[6.303233269000089,62.42519765800016],[6.32129967500012,62.42283763200011],[6.332530144000116,62.410793361000096],[6.32764733200014,62.41071198100012],[6.324717644000117,62.409084377000106],[6.322032097000147,62.40656159100017],[6.318369988000085,62.40395742400007],[6.165049675000091,62.39655182500008],[6.090668165000095,62.40241120000003],[6.023448113000143,62.437445380000106],[6.201670769000089,62.44489166900012],[6.216563347000147,62.44135163000011]]],[[[6.904470248000052,62.73261139500011],[6.919444207000083,62.717189846000096],[6.914073113000143,62.69818756700009],[6.749196811000104,62.676459052000105],[6.682953321000127,62.65753815300009],[6.67237389400006,62.65599192900005],[6.667735222000147,62.660589911],[6.666514519000117,62.669907945000126],[6.662771030000101,62.675116278000026],[6.656260613000085,62.677435614],[6.646657748000109,62.678290106000084],[6.646657748000109,62.68451569200015],[6.656260613000085,62.68569570500008],[6.665293816000115,62.688299872000165],[6.67359459700009,62.692531643],[6.68140709700009,62.69818756700009],[6.674815300000091,62.717189846000096],[6.684743686000104,62.73016998900009],[6.703135613000143,62.735785223000086],[6.722422722000089,62.73289622600005],[6.715586785000085,62.72549062700006],[6.743988477000102,62.722886460000076],[6.852793816000116,62.74591705900003],[6.878916863000086,62.74274323100017],[6.904470248000052,62.73261139500011]]],[[[6.80567467500012,62.85439687700013],[6.832286004000053,62.84153880400011],[6.859873894000089,62.84503815300009],[6.893728061000047,62.853908596000146],[6.924327019000145,62.856594143000116],[6.942149285000141,62.84153880400011],[6.942149285000141,62.82591380400013],[6.89633222700013,62.81981028900004],[6.880056186000104,62.80801015800007],[6.889170769000089,62.80540599199999],[6.898610873000109,62.79913971600002],[6.903819207000112,62.79035065300015],[6.900563998000051,62.78009674700003],[6.886729363000143,62.775091864],[6.868825717000107,62.77977122600011],[6.83969160200013,62.794378973000114],[6.784434441000144,62.80801015800007],[6.770355665000096,62.816961981000084],[6.772227410000141,62.822170315000015],[6.785004102000102,62.823879299],[6.80420983200014,62.82225169499999],[6.785004102000102,62.832220770000056],[6.777517123000052,62.839829820000105],[6.77759850400011,62.84894440300008],[6.79004967500012,62.857652085],[6.80567467500012,62.85439687700013]]],[[[7.914724155000072,63.08173248900011],[7.899912957000083,63.06268952000012],[7.873383009000121,63.045111395],[7.843028191000144,63.032171942],[7.805837436000076,63.02582428600005],[7.787933790000096,63.02065664300006],[7.778168165000068,63.02024974200005],[7.770355665000068,63.02289459800014],[7.757497592000049,63.03143952000006],[7.753672722000118,63.03335195500004],[7.735118035000113,63.036037502],[7.681325717000078,63.05508047100009],[7.681325717000078,63.061265367000075],[7.699066602000073,63.061957098],[7.70639082100007,63.07172272300015],[7.708832227000102,63.083156643],[7.712738477000101,63.08856842700014],[7.720469597000118,63.09039948100012],[7.726410352000129,63.093817450000024],[7.733246290000068,63.09552643400003],[7.778168165000068,63.08173248900011],[7.848643425000148,63.09804922100015],[7.886729363000143,63.09975820500016],[7.914724155000072,63.08173248900011]]],[[[7.681325717000078,63.02024974200005],[7.697601759000093,63.009466864000146],[7.706309441000086,63.00665924700009],[7.681651238000085,62.9967308610001],[7.664398634000093,62.99306875200013],[7.62403405000012,62.98965078300012],[7.609629754000081,62.982733466000056],[7.598887566000144,62.975083726000115],[7.526540561000104,62.94603099200013],[7.50879967500009,62.942857164000074],[7.490244988000085,62.94521719000012],[7.48926842500012,62.94725169500005],[7.472992384000094,62.96222565300017],[7.465342644000145,62.96548086100014],[7.392914259000122,62.97964101800015],[7.374522332000083,62.98704661700005],[7.366547071000126,62.9967308610001],[7.375743035000085,63.00604889500014],[7.396739129000139,63.01264069200012],[7.435557488000143,63.02024974200005],[7.423024936000047,63.02765534100014],[7.41732832100007,63.036037502],[7.420746290000068,63.04319896000013],[7.435557488000143,63.04755280200014],[7.41895592500009,63.053452867000075],[7.410899285000142,63.05491771000014],[7.401377800000148,63.05508047100009],[7.401377800000148,63.061265367000075],[7.423594597000117,63.060980536000116],[7.490244988000085,63.068060614],[7.476410352000101,63.05508047100009],[7.504893425000091,63.05438873900007],[7.527028842000078,63.046616929000045],[7.565196160000141,63.02024974200005],[7.571462436000104,63.027289130000106],[7.575368686000103,63.036322333000136],[7.575043165000068,63.04425690300009],[7.563161655000016,63.050604559000035],[7.574066602000102,63.056952216000134],[7.589121941000116,63.06293366100009],[7.59555097700013,63.06464264500009],[7.606130405000073,63.07843659100008],[7.605479363000114,63.08991120000003],[7.585134311000047,63.11652252800017],[7.620616082000112,63.11762116100012],[7.637054884000121,63.11579010600006],[7.647797071000126,63.10968659100015],[7.648203972000146,63.09247467700014],[7.650401238000114,63.08047109600004],[7.649587436000104,63.06940338700017],[7.640391472000147,63.05508047100009],[7.65202884200005,63.051988023000106],[7.662608269000117,63.04254791900008],[7.681325717000078,63.02024974200005]]],[[[8.30681399800011,63.16718170800006],[8.231293165000096,63.159572658],[8.209808790000068,63.16136302300002],[8.195811394000117,63.16718170800006],[8.19076582100007,63.17499420800015],[8.181895379000139,63.20136139500014],[8.173675977000128,63.209051825000145],[8.165293816000087,63.213446356000055],[8.170664910000113,63.22016022300009],[8.188161655000073,63.22532786700001],[8.210459832000112,63.22736237200002],[8.235118035000113,63.22223541900011],[8.278005405000101,63.20038483300006],[8.288910352000071,63.19660065300006],[8.306407097000118,63.18821849199999],[8.314789259000065,63.18134186400009],[8.31812584700009,63.17780182500009],[8.325368686000047,63.17137278899999],[8.30681399800011,63.16718170800006]]],[[[8.188487175000091,63.157456773000106],[8.020192905000044,63.137925523000106],[7.976817254000082,63.1432152360001],[7.928396030000101,63.17792389500006],[7.937754754000139,63.18610260600017],[7.990489129000109,63.198431708000115],[8.04712975400011,63.230617580000064],[8.077810092000107,63.24115631700012],[8.113291863000114,63.239406643000116],[8.132823113000086,63.229193427],[8.155609571000099,63.21088288000014],[8.170746290000096,63.191392320000055],[8.167979363000143,63.17792389500006],[8.182302280000044,63.16718170800006],[8.188487175000091,63.16494375200007],[8.188487175000091,63.157456773000106]]],[[[8.48389733200014,63.24681224200013],[8.548024936000104,63.21889883000007],[8.574717644000117,63.19961172100015],[8.565765821000099,63.17792389500006],[8.423187696000099,63.16107819200006],[8.374034050000148,63.16494375200007],[8.344899936000104,63.17645905200003],[8.292816602000073,63.21613190300003],[8.264170769000087,63.232611395],[8.270274285000085,63.24323151200014],[8.27295983200014,63.267523505000106],[8.277842644000117,63.27480703300013],[8.28842207100007,63.27716705900009],[8.298594597000118,63.27513255400007],[8.307871941000087,63.27020905200011],[8.315684441000059,63.26390208500008],[8.32593834700009,63.25958893400014],[8.335703972000118,63.262274481000055],[8.344981316000087,63.26658763200005],[8.353526238000113,63.26727936400009],[8.367849155000101,63.25486888200006],[8.382090691000087,63.23672109600015],[8.396006707000083,63.22687409100006],[8.408213738000141,63.239406643000116],[8.400726759000094,63.25641510600009],[8.40137780000012,63.27204010600017],[8.410492384000122,63.28339264500006],[8.42872155000012,63.28778717700014],[8.445974155000101,63.28367747599999],[8.459239129000139,63.273382880000085],[8.48389733200014,63.24681224200013]]],[[[8.099782748000052,63.34247467699999],[8.094737175000091,63.33917877800015],[8.09148196700005,63.331203518000095],[8.086680535000056,63.328802802000055],[8.038259311000076,63.328802802000055],[8.02247155000012,63.326117255000085],[7.993988477000102,63.315619208],[7.976817254000082,63.31513092700011],[7.973806186000076,63.3259138040001],[7.933116082000112,63.334784247000144],[7.914724155000072,63.34247467699999],[7.932953321000127,63.34613678600014],[7.997325066000143,63.34247467699999],[7.963877800000091,63.353176174],[7.80632571700005,63.37128327000012],[7.786794467000079,63.38275788000005],[7.791188998000051,63.40387604400017],[7.787445509000122,63.405585028000175],[7.778168165000068,63.41132233300005],[7.809418165000125,63.42291901200014],[7.837738477000074,63.42877838700012],[7.897634311000104,63.43121979400014],[7.923838738000142,63.43732330900003],[7.975433790000095,63.465155341000084],[8.00407962300008,63.472805080000036],[8.070567254000082,63.47329336100002],[8.100759311000104,63.464056708000136],[8.124359571000127,63.42597077000006],[8.17204837300011,63.40607330900015],[8.181651238000086,63.390204169000064],[8.150889519000117,63.35980866100009],[8.13843834700009,63.350897528000026],[8.127452019000115,63.34756094],[8.099782748000052,63.34247467699999]]],[[[8.965179884000065,63.65623607000008],[8.977305535000141,63.644110419000164],[8.972992384000065,63.644354559000114],[8.965993686000076,63.640041408000016],[8.959646030000044,63.63434479400006],[8.956879102000073,63.630438544000135],[8.960622592000107,63.624660549000076],[8.974375847000118,63.620266018],[8.988291863000114,63.59275950700005],[9.015147332000083,63.597235419000036],[9.04867597700013,63.60797760600003],[9.080088738000057,63.60618724200004],[9.12134850400011,63.581976630000064],[9.12468509200005,63.577134507000075],[9.124278191000142,63.57257721600003],[9.12671959700009,63.56907786700005],[9.138682488000114,63.56777578300013],[9.176036004000052,63.56777578300013],[9.176036004000052,63.56220123900011],[9.141856316000087,63.55475495000014],[9.106781446000099,63.53327057500003],[8.858571811000047,63.48700592700013],[8.718028191000142,63.484035549000126],[8.662282748000052,63.468329169000135],[8.573252800000148,63.45913320500009],[8.503591342000078,63.434230861000124],[8.477061394000117,63.43121979400014],[8.40845787900011,63.43121979400014],[8.390310092000107,63.43382396000014],[8.346039259000037,63.45233795800005],[8.344493035000113,63.453558661000095],[8.342946811000076,63.45587799700005],[8.339610222000118,63.458156643],[8.333018425000148,63.45913320500009],[8.324880405000044,63.456854559000114],[8.321299675000148,63.45197174700014],[8.31853274800011,63.44708893400018],[8.31267337300008,63.44489166900008],[8.299327019000145,63.44550202000015],[8.288259311000104,63.44855377800003],[8.282399936000076,63.45506419500013],[8.28467858200014,63.46653880400008],[8.277842644000117,63.46653880400008],[8.28842207100007,63.48672109600001],[8.30095462300008,63.501410223],[8.317230665000096,63.51316966399999],[8.413340691000059,63.55780670800006],[8.435394727000071,63.56220123900011],[8.618011915000096,63.57074616100006],[8.691091342000078,63.56342194200015],[8.709483269000117,63.563625393],[8.723480665000096,63.56777578300013],[8.681813998000052,63.578802802],[8.584646030000044,63.58710358300008],[8.545258009000122,63.602484442000026],[8.564707879000139,63.611883856000034],[8.582530144000117,63.613592841000134],[8.621104363000086,63.60993073100009],[8.788259311000104,63.640041408000016],[8.827647332000083,63.63959381700011],[8.83334394600007,63.61676666900012],[8.846446160000141,63.61591217700002],[8.854746941000114,63.619818427],[8.859385613000141,63.62815989800008],[8.860687696000127,63.64032623900006],[8.86817467500012,63.646185614],[8.885264519000145,63.64931875200006],[8.918711785000113,63.650864976000115],[8.951670769000087,63.657416083],[8.965179884000065,63.65623607000008]]],[[[9.11890709700009,63.651760158000016],[9.123301629000082,63.64984772300016],[9.144541863000143,63.652411200000145],[9.15023847700013,63.65094635600009],[9.156586134000065,63.648423569999984],[9.160004102000073,63.647772528000026],[9.167002800000148,63.64720286700007],[9.170909050000148,63.64142487200009],[9.162119988000086,63.63385651200014],[9.132334832000083,63.628648179000045],[9.110524936000017,63.62116120000009],[9.076345248000052,63.61298248900009],[9.030121290000125,63.61725495000008],[9.014008009000063,63.62669505400011],[9.026866082000083,63.630316473000065],[9.030528191000144,63.63300202000015],[9.031260613000057,63.63808828300007],[9.038259311000047,63.64423248900014],[9.040537957000112,63.64923737200009],[9.041514519000087,63.654608466000134],[9.048187696000042,63.65916575699999],[9.057871941000114,63.66107819200015],[9.084727410000085,63.66181061400009],[9.10759524800011,63.659816799000126],[9.11850019600007,63.65534088700018],[9.11890709700009,63.651760158000016]]],[[[8.796885613000114,63.80499909100014],[8.791758660000085,63.801703192],[8.791758660000085,63.79490794499999],[8.805349155000044,63.79096100499999],[8.810720248000107,63.78164297100015],[8.812836134000122,63.76072825699999],[8.817393425000148,63.75018952000011],[8.822113477000073,63.74274323100015],[8.82553144600007,63.73407623900006],[8.825856967000107,63.71979401200014],[8.79200280000012,63.69806549700009],[8.743418816000085,63.68793366100014],[8.545258009000122,63.67763906500013],[8.475840691000116,63.66429271000011],[8.455902540000125,63.671372789000074],[8.52556399800011,63.691839911000116],[8.470469597000147,63.68447500200013],[8.455902540000125,63.67763906500013],[8.44166100400011,63.6850446640001],[8.414317254000139,63.6828473980001],[8.36036217500012,63.671372789000074],[8.335215691000142,63.668158270000035],[8.313487175000091,63.668158270000035],[8.293142123000079,63.67328522300012],[8.271739129000139,63.6850446640001],[8.331553582000083,63.701808986000046],[8.518077019000117,63.71979401200014],[8.743418816000085,63.77440013200011],[8.727305535000113,63.780015367000125],[8.70850670700014,63.77924225500002],[8.690196160000085,63.774237372000144],[8.675059441000087,63.7675641950001],[8.682302280000043,63.78009674700012],[8.737152540000125,63.809149481000176],[8.752452019000089,63.80194733300005],[8.76929772200009,63.80548737200003],[8.78736412900011,63.81244538000011],[8.805430535000113,63.81537506700015],[8.802093946000099,63.81159088700012],[8.79981530000012,63.808172919000114],[8.796885613000114,63.80499909100014]]],[[[9.930837436000074,64.02753327000015],[9.939952019000089,64.0221214860001],[9.943858269000058,64.01146067900008],[9.928477410000113,64.00315989799999],[9.908213738000113,63.997503973],[9.892263217000107,63.997015692],[9.880869988000143,64.00263092700011],[9.86752363400012,64.00649648600002],[9.853851759000094,64.00893789300015],[9.855967644000117,64.01300690300012],[9.873789910000085,64.01654694200009],[9.881114129000082,64.019964911],[9.875498894000087,64.02269114800008],[9.86736087300008,64.02358633000016],[9.856781446000127,64.02338288000003],[9.84742272200009,64.02631256700012],[9.843760613000143,64.03318919500013],[9.85108483200014,64.03823476800007],[9.875254754000139,64.03831614800004],[9.879730665000094,64.04352448100006],[9.888519727000073,64.04905833500005],[9.903575066000085,64.04547760600009],[9.917491082000083,64.0371768250001],[9.920176629000139,64.03156159100011],[9.919688347000147,64.02850983300011],[9.930837436000074,64.02753327000015]]],[[[11.366465691000142,64.6344261740001],[11.391449415000066,64.61102936400003],[11.38884524800008,64.62026601800007],[11.393077019000089,64.62592194200006],[11.402679884000063,64.62274811399999],[11.444021030000101,64.59540436400012],[11.454356316000116,64.59316640800013],[11.465505405000043,64.58783600500009],[11.47291100400011,64.56948476800012],[11.481700066000085,64.56342194200012],[11.480235222000118,64.55605703300013],[11.465668165000096,64.55117422100007],[11.437836134000122,64.54987213700015],[11.43392988400012,64.54734935100005],[11.43734785200013,64.54364655200003],[11.432871941000087,64.54242584800008],[11.414398634000063,64.54596588700015],[11.385996941000116,64.55280182500007],[11.351328972000147,64.564398505],[11.344493035000113,64.57367584800015],[11.347911004000139,64.58258698100009],[11.354258660000085,64.5873477230001],[11.368825717000105,64.59100983300014],[11.36850019600007,64.60358307500003],[11.361338738000114,64.62775299700006],[11.366465691000142,64.6344261740001]]],[[[11.229258660000085,64.61127350500006],[11.269379102000102,64.59223053600005],[11.286306186000104,64.55898672100015],[11.312185092000107,64.54010651200012],[11.425629102000045,64.53974030200011],[11.45142662900008,64.51496002800006],[11.438975457000055,64.5069033870001],[11.430674675000091,64.49677155200006],[11.416758660000113,64.47272370000012],[11.391449415000066,64.48273346600011],[11.31576582100007,64.48798248900009],[11.299978061000047,64.49689362200003],[11.283864780000071,64.51325104400006],[11.246918165000096,64.51528554900007],[11.180186394000144,64.50747304900007],[11.12867272200009,64.55585358300009],[11.141612175000091,64.57127513200011],[11.169932488000114,64.57404205900015],[11.22486412900011,64.56952545800011],[11.191742384000094,64.5956078150001],[11.083994988000114,64.58828359600007],[11.042979363000114,64.59992096600008],[11.03736412900011,64.61444733300011],[11.042653842000078,64.63035716400005],[11.053965691000144,64.6439476580001],[11.06657962300005,64.65143463700015],[11.085785352000102,64.65204498900012],[11.105967644000117,64.64630768400006],[11.142344597000118,64.6310082050001],[11.229258660000085,64.61127350500006]]],[[[11.350759311000074,64.65155670800011],[11.343760613000086,64.63898346600014],[11.341481967000021,64.62864817900014],[11.342133009000065,64.62323639500009],[11.340098504000139,64.62042877800003],[11.33423912900011,64.616644598],[11.328868035000141,64.61383698100015],[11.326019727000102,64.60952383000016],[11.321136915000123,64.60333893400009],[11.31226647200009,64.59967682500003],[11.29786217500012,64.60346100500006],[11.279795769000089,64.61176178600013],[11.265391472000116,64.62250397300015],[11.255056186000047,64.63369375200006],[11.245453321000042,64.63939036700005],[11.23658287900011,64.63910553600012],[11.231293165000125,64.63646067900011],[11.229258660000085,64.63422272300015],[11.220469597000116,64.63344961100002],[11.173106316000087,64.63735586100002],[11.169932488000114,64.64459870000006],[11.18181399800008,64.65350983300009],[11.181651238000113,64.65753815300015],[11.167979363000086,64.65973541900006],[11.171234571000127,64.66372304900001],[11.17400149800008,64.66885000200013],[11.185557488000114,64.67381419499999],[11.303965691000116,64.69208405200004],[11.316661004000082,64.68976471600008],[11.316416863000114,64.68081289300007],[11.342621290000068,64.677679755],[11.355723504000139,64.66730377800009],[11.350759311000074,64.65155670800011]]],[[[11.206879102000073,64.90912506700012],[11.265798373000052,64.89850495000009],[11.266368035000113,64.893703518],[11.265147332000083,64.89215729400014],[11.262380405000043,64.8919945330001],[11.259043816000116,64.891058661],[11.217133009000094,64.86579010600015],[11.176280144000145,64.84861888200011],[11.13217207100007,64.838853257],[11.080902540000125,64.8358421900001],[11.084971550000091,64.84609609600001],[11.08773847700013,64.850083726],[11.077891472000118,64.853949286],[11.067556186000102,64.8547223980001],[11.056651238000141,64.85321686400006],[11.046071811000104,64.850083726],[11.046071811000104,64.85757070500016],[11.062510613000086,64.86269765800007],[11.08025149800008,64.8750674500001],[11.092051629000139,64.88963450700014],[11.091075066000087,64.90159739800008],[11.081309441000144,64.89834219000012],[11.00570722700013,64.89850495000009],[10.940277540000066,64.87482330900015],[10.906911655000101,64.85740794499999],[10.87916100400011,64.85162995000003],[10.850108269000145,64.84931061400006],[10.826914910000113,64.850083726],[10.826914910000113,64.85757070500016],[11.089040561000047,64.95042552300008],[11.10132897200009,64.95311107000003],[11.116384311000104,64.95107656500004],[11.14096113400012,64.94159577],[11.167165561000076,64.93732330900009],[11.180837436000104,64.93178945500007],[11.192637566000087,64.92397695500009],[11.19760175900012,64.91522858300011],[11.206879102000073,64.90912506700012]]],[[[10.816905144000117,64.86855703300002],[10.738129102000073,64.850083726],[10.742198113000113,64.85984935100014],[10.74512780000012,64.86371491100012],[10.710948113000143,64.86371491100012],[10.730479363000114,64.87221914300007],[10.741221550000148,64.88711172100004],[10.750498894000089,64.90395742400004],[10.765635613000086,64.9183617210001],[10.783864780000073,64.92401764500009],[10.85141035200013,64.92519765800002],[10.871755405000044,64.92767975500011],[10.924489780000043,64.94179922100007],[10.963389519000117,64.95746491100014],[11.032481316000144,64.97296784100014],[11.03345787900011,64.98822663000011],[11.059336785000113,64.990423895],[11.092458530000071,64.98387278900013],[11.115000847000147,64.97296784100014],[11.111827019000089,64.96954987200006],[11.108653191000114,64.96820709800015],[11.10523522200009,64.96767812700006],[10.96501712300005,64.9186872420001],[10.898936394000145,64.90827057500003],[10.841156446000099,64.87738678600006],[10.816905144000117,64.86855703300002]]],[[[11.777191602000102,65.11005280200011],[11.76531009200005,65.10211823100015],[11.745453321000127,65.09511953300007],[11.709646030000044,65.08161041900011],[11.688812696000127,65.07713450700005],[11.673594597000147,65.071722723],[11.673513217000078,65.06850820500013],[11.6881616550001,65.06854889500012],[11.70085696700005,65.06476471600011],[11.698496941000116,65.05744049700009],[11.684418165000066,65.05060455900018],[11.669444207000112,65.0449079450001],[11.657237175000148,65.04242584800006],[11.651866082000083,65.0457217470001],[11.653575066000087,65.051459052],[11.652679884000094,65.05756256700006],[11.65219160200013,65.060003973],[11.65796959700009,65.0646833350001],[11.64991295700014,65.06509023600013],[11.626963738000143,65.05805084800005],[11.603526238000086,65.04816315300015],[11.579844597000147,65.04254791900013],[11.558604363000086,65.04205963700015],[11.518809441000087,65.05459219000006],[11.519216342000107,65.05878327],[11.526621941000085,65.06195709800006],[11.528168165000125,65.06378815300003],[11.52507571700005,65.06541575700005],[11.528819207000083,65.07542552300005],[11.531016472000147,65.08519114799999],[11.540863477000073,65.09170156500006],[11.554698113000084,65.09625885600012],[11.565684441000144,65.10390859600015],[11.580332879000139,65.10968659100011],[11.661794467000105,65.118353583],[11.688975457000112,65.11798737200009],[11.707286004000082,65.11391836100013],[11.718760613000114,65.10838450700011],[11.725759311000104,65.10663483300011],[11.731130405000044,65.10871002800003],[11.732920769000145,65.11188385600009],[11.742930535000113,65.1153832050001],[11.761729363000086,65.11937083500008],[11.776866082000083,65.11847565300017],[11.777191602000102,65.11005280200011]]],[[[12.258555535000085,65.14789459800006],[12.224864129000082,65.12376536700005],[12.249196811000076,65.11920807500012],[12.284515821000099,65.11652252800003],[12.309092644000087,65.1105817730001],[12.300466342000107,65.09650299700014],[12.270274285000085,65.08071523600002],[12.231211785000113,65.06850820500013],[12.15650475400011,65.05548737200014],[12.132823113000086,65.05646393400004],[12.09148196700005,65.06659577000009],[12.070811394000145,65.06915924700009],[12.047699415000096,65.069484768],[11.999847852000073,65.07510000200001],[11.979014519000089,65.08283112200003],[11.993662957000083,65.08673737200003],[12.033376498000107,65.08283112200003],[12.04835045700014,65.08539459800012],[12.048106316000087,65.09174225500006],[12.043142123000052,65.09967682500003],[12.04346764400006,65.10700104400003],[12.060557488000113,65.11762116100009],[12.099782748000052,65.12343984600012],[12.122325066000114,65.13129303600003],[12.107595248000024,65.12897370000015],[12.098399285000141,65.13031647300012],[12.092784050000148,65.13556549700003],[12.088145379000139,65.14492422100015],[12.091075066000144,65.14850495000003],[12.094574415000125,65.16168854400017],[12.096690300000148,65.174953518],[12.095062696000127,65.17841217700003],[12.113942905000073,65.19257233300011],[12.139821811000076,65.20380280200011],[12.167246941000114,65.21112702000012],[12.19092858200014,65.21381256700003],[12.208018425000091,65.20726146000011],[12.240977410000141,65.17869700700014],[12.271657748000052,65.16461823100009],[12.258555535000085,65.14789459800006]]],[[[12.397308790000096,65.50755442900014],[12.444590691000144,65.46702708500011],[12.446462436000104,65.45848216399999],[12.446543816000087,65.43842194200012],[12.451426629000137,65.42609284100008],[12.461680535000085,65.41282786700005],[12.474945509000122,65.40289948100015],[12.49048912900011,65.39760976800007],[12.506602410000085,65.39813873900006],[12.491872592000107,65.3875186220001],[12.458750847000145,65.38226959800012],[12.444590691000144,65.37083567900008],[12.392425977000102,65.36017487200006],[12.379649285000085,65.35407135600013],[12.366709832000055,65.34393952],[12.352549675000148,65.33633047100007],[12.33643639400006,65.33152903899997],[12.239024285000113,65.32245514500005],[12.21111087300008,65.32465241100006],[12.204274936000047,65.31932200699998],[12.211192254000139,65.30255768400018],[12.218597852000128,65.30101146000014],[12.236338738000143,65.29132721600017],[12.247731967000105,65.280462958],[12.235606316000114,65.27521393400009],[12.221039259000065,65.27090078300002],[12.193858269000144,65.25165436400005],[12.18384850400008,65.24730052300008],[12.080577019000089,65.2150332700001],[12.053477410000141,65.21995677299999],[12.077321811000047,65.23362864800013],[12.09473717500009,65.255804755],[12.122325066000114,65.30255768400018],[12.111175977000102,65.30170319200006],[12.100352410000113,65.30215078300007],[12.090098504000082,65.30434804900007],[12.080739780000044,65.30878327000012],[12.097341342000107,65.325344143],[12.109060092000078,65.34296295800011],[12.122243686000047,65.357326565],[12.142832879000082,65.36399974200005],[12.155121290000123,65.362453518],[12.171234571000099,65.35317617400007],[12.18067467500012,65.35101959800006],[12.187754754000082,65.35455963700004],[12.20248457100007,65.37177155200006],[12.211192254000139,65.377630927],[12.211192254000139,65.38507721600008],[12.18376712300011,65.38349030200006],[12.177012566000142,65.38507721600008],[12.174001498000052,65.38629791900009],[12.16586347700013,65.39081452000015],[12.1608179050001,65.39581940300009],[12.174815300000061,65.40200429900007],[12.211192254000139,65.42609284100008],[12.26775149800008,65.44940827],[12.328461134000122,65.46702708500011],[12.321543816000116,65.47431061400012],[12.317149285000141,65.48078034100003],[12.314789259000092,65.4873721370001],[12.314219597000118,65.49494049700014],[12.258555535000085,65.47296784100006],[12.229014519000115,65.46849192900008],[12.197438998000052,65.47386302300013],[12.23218834700009,65.48749420800007],[12.204356316000144,65.48749420800007],[12.230235222000147,65.51227448100003],[12.24040774800008,65.52606842700006],[12.245290561000076,65.541489976],[12.238536004000109,65.54262929900001],[12.229828321000127,65.54710521],[12.224864129000082,65.54897695500013],[12.244395379000082,65.55882396000008],[12.258636915000066,65.57461172100001],[12.274261915000068,65.58173248900006],[12.297373894000115,65.5660667990001],[12.315928582000112,65.54108307500017],[12.324717644000089,65.531927802],[12.335297071000127,65.52728913000006],[12.38648522200009,65.51422760600009],[12.397308790000096,65.50755442900014]]],[[[11.95443769600007,65.69643789300011],[11.965017123000107,65.69623444200006],[11.982106967000078,65.6999372420001],[11.997894727000102,65.70014069200006],[12.005137566000144,65.68960195500001],[11.99976647200009,65.67804596600008],[11.986827019000089,65.67194245000009],[11.957855665000096,65.665025132],[11.972992384000094,65.64956289300005],[11.976084832000053,65.64158763200011],[11.971446160000141,65.63153717700014],[11.958262566000087,65.6227074240001],[11.926605665000125,65.59634023600007],[11.916840040000068,65.58999258000016],[11.907074415000123,65.590318101],[11.902679884000065,65.595404364],[11.898692254000082,65.60130442900014],[11.889903191000116,65.60419342700008],[11.877940300000091,65.60224030200011],[11.86850019600007,65.59906647300006],[11.859385613000084,65.59837474200009],[11.848643425000148,65.60419342700008],[11.869151238000113,65.61041901200004],[11.847422722000147,65.61416250200007],[11.779795769000087,65.60700104400001],[11.75928795700014,65.61790599200002],[11.765147332000083,65.63499583500013],[11.785004102000073,65.66030508000007],[11.808278842000105,65.68305084800012],[11.824473504000139,65.69301992400001],[11.890961134000065,65.70620351800007],[11.926117384000122,65.708726304],[11.95443769600007,65.69643789300011]]],[[[12.73406009200005,65.97557200700011],[12.674815300000148,65.95221588700004],[12.623383009000065,65.94212474200006],[12.492686394000117,65.8797875020001],[12.46583092500012,65.873277085],[12.430918816000116,65.8710798200001],[12.444183790000125,65.87872955900004],[12.458262566000087,65.88251373900006],[12.470713738000086,65.88751862200009],[12.478688998000052,65.89838288],[12.368825717000078,65.89158763200005],[12.383555535000056,65.90648021000011],[12.430918816000116,65.93256256700009],[12.443858269000115,65.94403717700011],[12.461436394000145,65.97003815300009],[12.472422722000088,65.980943101],[12.491221550000148,65.99062734600012],[12.601328972000147,66.02167389500006],[12.627207879000082,66.02301666900014],[12.650075717000078,66.0150820980001],[12.620290561000076,65.99306875200007],[12.608571811000104,65.97992584800004],[12.615244988000143,65.97418854400014],[12.635996941000144,65.9760602890001],[12.658213738000113,65.98126862200012],[12.679535352000073,65.98875560100008],[12.698008660000085,65.997748114],[12.740896030000073,66.01357656500012],[12.800303582000112,66.02480703300013],[12.8600366550001,66.02680084800006],[12.903819207000055,66.0150820980001],[12.890147332000112,66.00145091400005],[12.857676629000139,66.00047435100005],[12.73406009200005,65.97557200700011]]],[[[12.604258660000085,66.18113841400005],[12.612071160000085,66.16937897300005],[12.611827019000145,66.15680573100018],[12.590505405000071,66.147609768],[12.547048373000024,66.138617255],[12.547048373000024,66.13117096600003],[12.621918165000096,66.13117096600003],[12.605723504000139,66.12274811400006],[12.587901238000086,66.11749909100008],[12.587901238000086,66.1113141950001],[12.628428582000081,66.11489492400007],[12.64665774800008,66.11318594000006],[12.6569116550001,66.10390859600012],[12.649587436000104,66.09418366100009],[12.640391472000116,66.09027741100009],[12.6002710300001,66.08869049700014],[12.590098504000082,66.08494700700011],[12.574229363000143,66.07591380400002],[12.53337649800008,66.06069570500004],[12.294200066000144,66.0150820980001],[12.334727410000056,66.04242584800015],[12.350596550000091,66.04804108300006],[12.365733269000087,66.05158112200003],[12.380056186000076,66.05658600500009],[12.393321160000113,66.06663646000005],[12.420420769000115,66.07990143400016],[12.429698113000086,66.08710358300011],[12.417165561000076,66.0902367210001],[12.39795983200014,66.087632554],[12.361664259000122,66.07709381700012],[12.342133009000065,66.07591380400002],[12.342133009000065,66.08344147300006],[12.35726972700013,66.08734772300006],[12.385996941000087,66.10089752800003],[12.400157097000118,66.10390859600012],[12.45671634200005,66.10724518400015],[12.472422722000088,66.1113141950001],[12.477712436000074,66.11774323100003],[12.48023522200009,66.126898505],[12.487478061000102,66.13507721600011],[12.522959832000112,66.14069245000012],[12.574229363000143,66.15851471600008],[12.542165561000076,66.170599677],[12.50424238400012,66.17584870000017],[12.465586785000085,66.17430247600014],[12.430918816000116,66.16596100500006],[12.430918816000116,66.1727562520001],[12.522715691000144,66.19814687700001],[12.533864780000071,66.19891998900012],[12.542979363000086,66.20197174700003],[12.551442905000101,66.22036367400007],[12.561696811000047,66.221136786],[12.581716342000107,66.21377187700001],[12.595225457000083,66.20502350500011],[12.600759311000104,66.19367096600014],[12.604258660000085,66.18113841400005]]],[[[12.806976759000065,66.30377838700015],[12.812185092000078,66.29669830900009],[12.82439212300005,66.29901764500006],[12.829274936000104,66.295843817],[12.83562259200005,66.29364655200011],[12.839366082000083,66.29311758000013],[12.859711134000065,66.29266998900015],[12.867198113000143,66.29169342700004],[12.872894727000128,66.28823476800007],[12.875336134000065,66.28563060100008],[12.88233483200014,66.276800848],[12.88689212300008,66.25690338700012],[12.879242384000063,66.24339427300005],[12.868337436000076,66.23944733300006],[12.857188347000147,66.23403554900001],[12.846039259000122,66.226263739],[12.824961785000113,66.2158877620001],[12.810231967000107,66.2235781920001],[12.787282748000052,66.217271226],[12.760752800000061,66.2219098980001],[12.750824415000068,66.23309967700011],[12.740977410000141,66.24164459800015],[12.719574415000094,66.243109442],[12.705088738000143,66.24127838700004],[12.700205925000091,66.24323151200016],[12.705088738000143,66.25079987200003],[12.714691602000128,66.25910065300012],[12.737559441000144,66.27057526200015],[12.757172071000099,66.27749258000016],[12.792816602000045,66.29498932500009],[12.794200066000116,66.30036041900013],[12.795258009000094,66.30512116100006],[12.793793165000125,66.31122467700006],[12.799978061000104,66.31195709800006],[12.806976759000065,66.30377838700015]]],[[[12.95411217500012,66.43309153900005],[12.94890384200005,66.409084377],[12.938487175000148,66.3944359400001],[12.93100019600007,66.38934967700006],[12.916026238000141,66.39459870000015],[12.907399936000045,66.39891185100005],[12.902354363000114,66.40485260600018],[12.899668816000114,66.41608307500017],[12.891286655000073,66.40932851800012],[12.885996941000087,66.40167877800012],[12.881358269000144,66.39057037999999],[12.884287957000083,66.37645091400005],[12.895192905000071,66.36041901200015],[12.898936394000089,66.35504791900011],[12.87720787900011,66.35903554900007],[12.867930535000085,66.36347077000006],[12.85954837300011,66.36640045800009],[12.848399285000085,66.37173086100013],[12.837901238000113,66.37079498900006],[12.831797722000116,66.373236395],[12.827403191000144,66.37677643400018],[12.816661004000139,66.38108958500008],[12.800791863000114,66.38471100500014],[12.810557488000143,66.38934967700006],[12.843109571000099,66.39842357000008],[12.850271030000071,66.40961334800005],[12.835459832000083,66.42389557500017],[12.82642662900008,66.43622467700011],[12.818614129000082,66.43744538000014],[12.817230665000096,66.44257233300006],[12.82943769600007,66.44733307500013],[12.886729363000114,66.4565290390001],[12.89673912900011,66.456203518],[12.901621941000085,66.4531110700001],[12.902354363000114,66.44643789300015],[12.906993035000113,66.44261302300005],[12.910817905000044,66.43716054900001],[12.912445509000063,66.43138255400014],[12.91944420700014,66.431586005],[12.928233269000115,66.44204336100007],[12.929209832000083,66.45246002800015],[12.928884311000076,66.45783112200003],[12.940765821000099,66.46019114800008],[12.96070397200009,66.45945872600005],[12.966481967000078,66.4531110700001],[12.95411217500012,66.43309153900005]]],[[[14.239593946000127,67.11546458500011],[14.217621290000123,67.09808991100014],[14.192393425000148,67.08392975500011],[14.212738477000128,67.04922109600015],[14.21509850400011,67.03241608300014],[14.198496941000144,67.02252838700004],[14.201182488000113,67.01886627800016],[14.204356316000087,67.01178620000003],[14.205902540000123,67.0088565120001],[14.192230665000096,67.00356679900004],[14.174082879000082,66.99990469000005],[14.158213738000057,67.00141022300012],[14.151377800000148,67.01190827],[14.150401238000086,67.02692291900001],[14.146983269000145,67.03270091399999],[14.140472852000073,67.03595612200002],[14.100108269000115,67.06167226800007],[14.067556186000045,67.06956614800005],[13.993011915000094,67.07770416900014],[13.993011915000094,67.08392975500011],[14.013356967000078,67.08991120000003],[14.03077233200014,67.09804922100014],[14.062022332000112,67.11871979400017],[14.057302280000016,67.13304271000005],[14.066905144000087,67.13495514500003],[14.13379967500012,67.11009349200008],[14.152191602000073,67.10712311400006],[14.171885613000114,67.111273505],[14.194102410000141,67.12946198100009],[14.219574415000066,67.15595123900006],[14.246836785000141,67.17373281500012],[14.273692254000139,67.16583893400015],[14.258555535000141,67.137640692],[14.239593946000127,67.11546458500011]]],[[[14.398773634000094,67.42377350500009],[14.399180535000113,67.42182038000011],[14.408457879000139,67.4257673200001],[14.412119988000113,67.42527903900012],[14.419200066000057,67.42340729400014],[14.412852410000141,67.41307200700005],[14.39210045700014,67.39850495000003],[14.366465691000087,67.39093659100017],[14.28419030000012,67.37954336100002],[14.274750196000099,67.37677643400015],[14.256114129000109,67.37384674700003],[14.238942905000073,67.373968817],[14.22673587300011,67.37734609600004],[14.229014519000089,67.38418203300013],[14.248545769000145,67.38890208500005],[14.245290561000102,67.39264557500017],[14.248871290000096,67.39533112200014],[14.259125196000099,67.39549388200011],[14.269297722000147,67.40021393400004],[14.27955162900008,67.40863678600009],[14.309418165000066,67.42308177300013],[14.371755405000044,67.44110748900006],[14.389903191000146,67.44122955900002],[14.400645379000052,67.4365908870001],[14.403493686000104,67.43016185099998],[14.398773634000094,67.42377350500009]]],[[[15.10889733200014,67.97622304900013],[15.139903191000085,67.95844147300012],[15.162445509000065,67.95404694200006],[15.2115991550001,67.95123932500012],[15.227875196000127,67.94769928600012],[15.231293165000123,67.94188060100008],[15.246592644000089,67.94171784100011],[15.257090691000144,67.9404971370001],[15.262705925000146,67.93256256700012],[15.279307488000114,67.93976471600014],[15.280284050000091,67.94281647300006],[15.295664910000141,67.94525788],[15.303965691000116,67.94505442900014],[15.304860873000111,67.93768952000015],[15.289235873000107,67.92584870000009],[15.253672722000147,67.91657135600003],[15.246348504000139,67.91787344000012],[15.24252363400012,67.91974518400009],[15.16309655000012,67.91071198100009],[15.147634311000104,67.91063060100011],[15.119313998000052,67.91583893400009],[15.022634311000102,67.918890692],[14.980235222000118,67.91461823100018],[14.972178582000081,67.91648997600005],[14.96908613400012,67.92523834800012],[14.961192254000137,67.94159577000012],[14.965098504000139,67.952582098],[14.976898634000094,67.95913320500007],[14.977061394000145,67.96377187700001],[14.972015821000127,67.97003815300015],[14.978200717000107,67.97186920800011],[15.018809441000116,67.97052643400004],[15.038340691000087,67.96743398600016],[15.052093946000099,67.96824778899999],[15.061778191000144,67.97443268400004],[15.069102410000054,67.98053620000003],[15.095957879000137,67.99384186400015],[15.105723504000082,68.00071849200005],[15.110687696000127,68.00018952000009],[15.113617384000065,67.9948591170001],[15.111094597000147,67.98700592700011],[15.106618686000077,67.98086172100015],[15.10889733200014,67.97622304900013]]],[[[15.91871178500014,68.01422760600002],[15.93018639400009,68.00824616100012],[15.932953321000042,68.00405508000007],[15.933604363000086,67.99701569200003],[15.924815300000118,67.99286530200008],[15.883962436000076,67.984116929],[15.841156446000099,67.98371002800008],[15.786143425000118,67.99315013200011],[15.728770379000109,68.01194896000005],[15.706228061000104,68.01235586100016],[15.67937259200005,67.993597723],[15.661306186000104,67.98859284100014],[15.652110222000147,67.98720937700006],[15.61736087300008,67.98525625200013],[15.523448113000114,67.98997630400005],[15.510264519000058,67.99282461100007],[15.50367272200009,67.99530670800003],[15.495778842000107,67.99738190300003],[15.482432488000114,68.00263092700011],[15.483164910000141,68.00604889500012],[15.495371941000117,68.00560130400011],[15.508474155000071,68.00800202000005],[15.521657748000052,68.01569245000009],[15.53589928500014,68.02081940300009],[15.574066602000102,68.025580145],[15.859711134000094,68.02749258000016],[15.891774936000076,68.01862213700012],[15.91871178500014,68.01422760600002]]],[[[15.268239780000073,67.96698639500006],[15.184825066000085,67.9667829450001],[15.17335045700014,67.97467682500009],[15.16618899800011,67.986761786],[15.160492384000122,67.9926211610001],[15.159678582000112,67.99567291900003],[15.163340691000142,68.00055573100009],[15.171153191000144,68.00527578300002],[15.176524285000111,68.01154205900015],[15.189463738000114,68.01898834800012],[15.211436394000115,68.02553945500001],[15.22095787900011,68.03143952000015],[15.222015821000069,68.03725820500001],[15.230316602000071,68.03668854400003],[15.240407748000107,68.02899811400003],[15.258067254000139,68.00975169500008],[15.275075717000105,67.99542877800017],[15.28663170700011,67.97699616100014],[15.268239780000073,67.96698639500006]]],[[[13.095550977000102,68.05719635600009],[13.095550977000102,68.05036041900017],[13.136566602000102,68.05036041900017],[13.120616082000083,68.03823476800007],[13.101573113000086,68.03652578300007],[13.081228061000104,68.03742096600014],[13.061371290000096,68.03327057500003],[13.050303582000055,68.02456289300012],[13.050303582000055,68.016546942],[13.059336785000085,68.01113515800013],[13.075043165000125,68.00942617400013],[13.086273634000122,68.01544830900006],[13.09978274800011,68.02537669500005],[13.11085045700014,68.02826569200009],[13.11736087300005,68.00405508000007],[13.125987175000148,67.98696523600013],[13.130869988000113,67.963853257],[13.130869988000113,67.952582098],[13.123871290000123,67.94399648600007],[13.105804884000122,67.9404971370001],[13.056407097000147,67.93878815300009],[13.04037519600007,67.9404971370001],[12.995371941000087,67.96478913000009],[12.976817254000082,67.96946849199999],[12.985687696000126,67.94794342700008],[12.97087649800005,67.94953034100011],[12.96111087300011,67.94668203300016],[12.960215691000116,67.94098541900009],[12.97201582100007,67.93427155200014],[12.989268425000091,67.93097565300009],[13.024099155000044,67.92865631700012],[13.041270379000139,67.92340729400014],[13.046641472000118,67.9154727230001],[13.042328321000099,67.90525950700005],[13.033050977000071,67.89647044499999],[13.017914259000065,67.89085521],[13.015961134000122,67.88666413000006],[13.015310092000076,67.88202545800011],[13.013682488000143,67.87909577],[12.992686394000089,67.872219143],[12.897308790000068,67.85590241100006],[12.883311394000115,67.841498114],[12.87086022200009,67.825140692],[12.84197024800008,67.815619208],[12.787119988000086,67.81012604400014],[12.794444207000083,67.82062409100003],[12.831065300000091,67.84552643400015],[12.845713738000114,67.85276927299999],[12.848480665000068,67.85480377800003],[12.847015821000099,67.8609886740001],[12.841563347000061,67.87433502800009],[12.841644727000045,67.87909577],[12.849619988000113,67.88983795800011],[12.858409050000063,67.89907461100007],[12.879649285000141,67.91689687700016],[12.889170769000145,67.92865631700012],[12.893077019000144,67.94839101800007],[12.900157097000118,67.95783112200009],[12.906911655000043,67.96076080900009],[12.921234571000127,67.96116771000011],[12.927744988000114,67.96466705900009],[12.930349155000043,67.97064850500011],[12.929453972000118,67.9835879580001],[12.93116295700014,67.98895905200008],[12.979177280000044,68.03652578300007],[12.990082227000102,68.04474518400015],[13.013682488000143,68.05719635600009],[13.04712975400011,68.06468333500005],[13.06226647200009,68.07086823100003],[13.075043165000125,68.08510976800012],[13.068532748000052,68.08844635600015],[13.059743686000076,68.09528229400017],[13.054698113000143,68.0981306010001],[13.054698113000143,68.10496653900013],[13.079600457000083,68.10419342700011],[13.156993035000085,68.08510976800012],[13.156993035000085,68.07762278900007],[13.143402540000125,68.07762278900007],[13.133311394000145,68.06818268400004],[13.121592644000145,68.06232330900008],[13.109060092000078,68.05898672100007],[13.095550977000102,68.05719635600009]]],[[[13.395843946000099,68.06024811400009],[13.379893425000091,68.05036041900017],[13.380137566000116,68.04547760600009],[13.371592644000117,68.021714585],[13.366221550000148,68.01276276200015],[13.356700066000144,68.01064687700016],[13.333262566000087,68.0264346370001],[13.321543816000087,68.02985260600012],[13.26905358200014,67.99778880400014],[13.238617384000092,67.98554108300006],[13.225352410000141,67.99884674700007],[13.22437584700009,68.02142975500006],[13.221364780000071,68.0321312520001],[13.215505405000044,68.03668854400003],[13.197032097000118,68.033433335],[13.19361412900011,68.02582428600014],[13.193369988000143,68.01679108300014],[13.184336785000141,68.00942617400013],[13.172699415000125,68.00901927300013],[13.16627037900011,68.01536692900007],[13.163747592000107,68.025580145],[13.16382897200009,68.03668854400003],[13.168467644000117,68.049750067],[13.17798912900011,68.05947500200016],[13.23926842500012,68.09210846600011],[13.258311394000117,68.095607815],[13.27686608200014,68.08820221600011],[13.298106316000116,68.06549713700015],[13.31218509200005,68.05829498900012],[13.32837975400011,68.06342194200015],[13.33863366000014,68.08600495000003],[13.320160352000102,68.10415273600002],[13.293955925000091,68.11835358300011],[13.280528191000087,68.12913646000014],[13.295664910000085,68.15228913000009],[13.330577019000089,68.15574778899999],[13.400401238000141,68.14594147300015],[13.409027540000038,68.14321523600007],[13.42807050900012,68.13027578300007],[13.43767337300011,68.12604401200015],[13.41374759200005,68.0829938820001],[13.395843946000099,68.06024811400009]]],[[[14.897146030000071,68.24355703300016],[14.872406446000099,68.22272370000017],[14.843760613000113,68.22662995000017],[14.813812696000127,68.23183828300007],[14.795583530000073,68.24616120000015],[14.817718946000127,68.26829661700013],[14.886729363000084,68.30084870000009],[14.9401147800001,68.3021507830001],[14.953135613000113,68.27741120000002],[14.897146030000071,68.24355703300016]]],[[[14.240896030000044,68.31386953300006],[14.2682397800001,68.28261953300002],[14.242198113000114,68.25657786700005],[14.20053144600007,68.24876536700005],[14.162771030000101,68.26308828300013],[14.143239780000044,68.27350495000003],[14.138031446000127,68.28522370000012],[14.145843946000127,68.2956403670001],[14.10678144600007,68.2956403670001],[14.058604363000114,68.29694245000009],[14.040375196000127,68.31256745000009],[14.079437696000099,68.31517161699999],[14.066416863000113,68.33209870000015],[14.117198113000143,68.33730703300016],[14.147146030000043,68.33470286700008],[14.169281446000099,68.32168203300007],[14.199229363000086,68.31517161699999],[14.240896030000044,68.31386953300006]]],[[[13.967458530000101,68.26959870000003],[13.993500196000099,68.25787995000005],[14.027842644000145,68.26264069200015],[14.087250196000099,68.28261953300002],[14.125010613000143,68.27480703300004],[14.158864780000101,68.25527578300013],[14.11068769600007,68.20709870000009],[14.062022332000112,68.20115794500006],[14.051117384000063,68.1898460960001],[14.043467644000115,68.18349844000006],[14.034027540000096,68.1807315120001],[13.94776451900006,68.177679755],[13.936778191000114,68.17487213700015],[13.924815300000091,68.17015208500005],[13.91041100400011,68.16766998900012],[13.89991295700014,68.17243073100012],[13.88965905000012,68.17865631700009],[13.876312696000099,68.1807315120001],[13.869639519000145,68.1768252620001],[13.863942905000071,68.16962311400006],[13.855804884000065,68.16274648600016],[13.841970248000052,68.1596133480001],[13.774099155000071,68.1596133480001],[13.784678582000112,68.1469180360001],[13.824717644000145,68.14313385600009],[13.842295769000087,68.132269598],[13.845957879000139,68.12055084800012],[13.83936608200014,68.112005927],[13.825694207000112,68.10675690300012],[13.774099155000071,68.10195547100012],[13.760264519000144,68.10496653900013],[13.754730665000123,68.10980866100002],[13.74952233200014,68.123277085],[13.742686394000117,68.12604401200015],[13.722666863000143,68.12303294500005],[13.713715040000125,68.11566803600006],[13.708262566000087,68.10651276200015],[13.69825280000012,68.0981306010001],[13.70606530000009,68.08592357000005],[13.710785352000102,68.08144765800007],[13.718760613000057,68.07762278900007],[13.698985222000147,68.07025788000006],[13.682139519000144,68.06972890800007],[13.664805535000141,68.07135651200008],[13.643728061000047,68.07086823100003],[13.651133660000113,68.07762278900007],[13.643809441000114,68.07908763200011],[13.630544467000078,68.08368561400005],[13.623220248000079,68.08510976800012],[13.62468509200005,68.10785553600005],[13.594899936000045,68.12055084800012],[13.55884850400008,68.11961497600004],[13.541270379000139,68.1015485700001],[13.542979363000143,68.09613678600009],[13.547373894000115,68.09080638200011],[13.552744988000086,68.08673737200014],[13.55836022200009,68.08510976800012],[13.564789259000092,68.08177317899998],[13.559092644000115,68.07501862200014],[13.55030358200014,68.06972890800007],[13.547373894000115,68.07086823100003],[13.538259311000045,68.0548770200001],[13.5271916020001,68.04340241100009],[13.512868686000102,68.04051341400005],[13.456716342000107,68.070990302],[13.485687696000099,68.10683828300009],[13.589121941000059,68.1596133480001],[13.562998894000117,68.16421133000001],[13.509938998000079,68.13670482],[13.479258660000085,68.132269598],[13.479258660000085,68.13971588700008],[13.490733269000144,68.14061107],[13.500743035000113,68.143988348],[13.508555535000113,68.150091864],[13.513356967000107,68.1596133480001],[13.503265821000127,68.15932851800015],[13.494883660000085,68.16071198100003],[13.479258660000085,68.16705963700015],[13.52759850400011,68.17328522300012],[13.516612175000148,68.17910390800007],[13.479258660000085,68.18691640800007],[13.515635613000084,68.20970286699999],[13.571625196000126,68.21751536699999],[13.615896030000071,68.22662995000017],[13.596853061000076,68.23139069200006],[13.582286004000139,68.23590729400003],[13.565440300000148,68.237738348],[13.500010613000086,68.24225495000015],[13.636729363000141,68.29433828300002],[13.66570071700005,68.2908389340001],[13.677907748000107,68.29059479400017],[13.686371290000068,68.2878278670001],[13.701345248000107,68.2787946640001],[13.71501712300005,68.27464427300008],[13.734385613000143,68.27871328300002],[13.750010613000141,68.28261953300002],[13.770843946000099,68.2800153670001],[13.791188998000107,68.268052476],[13.800791863000086,68.26947663000006],[13.808116082000083,68.27415599199999],[13.819672071000099,68.28774648600013],[13.82837975400011,68.29059479400017],[13.846364780000044,68.3021507830001],[13.8737085300001,68.32558828300007],[13.91928144600007,68.34121328300016],[13.983083530000101,68.33730703300016],[14.007823113000086,68.29433828300002],[13.967458530000101,68.26959870000003]]],[[[15.154633009000063,68.438666083],[15.034190300000148,68.36347077],[15.014170769000087,68.3588320980001],[15.016449415000068,68.36359284100008],[15.018809441000116,68.37042877800009],[15.018809441000116,68.37653229400009],[15.014170769000087,68.37929922100012],[15.003916863000143,68.37763092700011],[15.001719597000147,68.37311432500017],[15.002289259000122,68.36810944200012],[15.000498894000145,68.36505768400002],[14.945323113000114,68.35138580900009],[14.963226759000065,68.345404364],[14.979340040000123,68.33771393400015],[14.936289910000113,68.32786692900005],[14.763194207000138,68.25901927299998],[14.735524936000076,68.25495026200012],[14.719981316000144,68.26264069200015],[14.722911004000082,68.27960846600003],[14.738617384000065,68.29580312700007],[14.774587436000017,68.31785716400007],[14.756602410000085,68.31736888200008],[14.747243686000049,68.32416412999999],[14.741221550000148,68.3327497420001],[14.733653191000085,68.33771393400015],[14.718760613000143,68.337632554],[14.709727410000141,68.33291250200007],[14.692067905000016,68.31037018400008],[14.703135613000141,68.29682038000011],[14.693858269000115,68.2862002620001],[14.67530358200011,68.27936432500017],[14.6510522800001,68.27570221600003],[14.639414910000113,68.27244700700008],[14.628591342000107,68.26788971600003],[14.623789910000113,68.26264069200015],[14.630056186000076,68.25779857000008],[14.671641472000145,68.24957916900014],[14.656504754000139,68.24079010600008],[14.614919467000078,68.22455475500006],[14.57203209700009,68.21987539300011],[14.555511915000123,68.21523672100001],[14.521250847000145,68.20115794500006],[14.498220248000079,68.196722723],[14.418223504000084,68.19432200700005],[14.407074415000068,68.19245026200018],[14.391449415000094,68.183294989],[14.383555535000111,68.1807315120001],[14.368418816000117,68.181057033],[14.33814537900011,68.18671295800011],[14.322032097000147,68.18691640800007],[14.326019727000128,68.17694733300009],[14.32829837300011,68.17328522300012],[14.31218509200005,68.16803620000003],[14.277028842000078,68.16779205900009],[14.24708092500009,68.15839264500006],[14.212901238000113,68.15281810100005],[14.198496941000144,68.15277741100006],[14.20875084700006,68.168646552],[14.212738477000128,68.17328522300012],[14.215993686000104,68.174261786],[14.21843509200005,68.17450592700014],[14.21973717500012,68.17597077],[14.21900475400011,68.1807315120001],[14.211761915000068,68.18451569200012],[14.206065300000091,68.189357815],[14.201833530000071,68.19489166900003],[14.198496941000144,68.20115794500006],[14.234873894000115,68.22003815300009],[14.318044467000078,68.23232656500006],[14.356211785000141,68.24213288],[14.301524285000113,68.23578522300006],[14.274180535000113,68.23700592700008],[14.253184441000085,68.24957916900014],[14.270274285000141,68.25812409100008],[14.288828972000147,68.26190827],[14.32829837300011,68.26264069200015],[14.305918816000087,68.2744815120001],[14.296722852000102,68.29315827000009],[14.303396030000071,68.3119977890001],[14.32829837300011,68.32404205900004],[14.357920769000144,68.32050202000015],[14.395274285000113,68.28733958500011],[14.425059441000116,68.283148505],[14.425059441000116,68.29059479400017],[14.413422071000099,68.29730866100012],[14.419444207000112,68.30109284100013],[14.431651238000086,68.30540599200003],[14.438161655000073,68.31415436400012],[14.442718946000127,68.31842682500003],[14.45346113400012,68.31452057500003],[14.472911004000139,68.30418528900013],[14.495616082000081,68.3060570330001],[14.496429884000092,68.31631094000012],[14.483897332000083,68.33063385600009],[14.466075066000114,68.34454987200009],[14.456228061000102,68.33738841400005],[14.444021030000046,68.33730703300016],[14.43580162900011,68.34430573100003],[14.438161655000073,68.3588320980001],[14.396169467000105,68.36717357000005],[14.383555535000111,68.37250397300004],[14.493418816000087,68.38556549700009],[14.519297722000088,68.38231028900005],[14.562998894000087,68.3682315120001],[14.589610222000116,68.36505768400002],[14.581797722000145,68.38108958500011],[14.552989129000109,68.39402903900005],[14.541758660000111,68.40599192900008],[14.653493686000047,68.42853424700014],[14.671641472000145,68.41689687700013],[14.673187696000097,68.40355052300012],[14.678233269000117,68.39565664300005],[14.695811394000144,68.38247304900001],[14.707530144000145,68.37791575700004],[14.709320509000122,68.38882070500013],[14.705739780000073,68.41347890800013],[14.714121941000114,68.42328522300006],[14.726410352000075,68.42999909100011],[14.742360873000083,68.43353913],[14.760915561000076,68.43390534100011],[14.796397332000083,68.42670319200005],[14.814463738000086,68.4191755230001],[14.822438998000052,68.40973541900009],[14.825531446000127,68.39508698100008],[14.821950717000078,68.389837958],[14.75407962300008,68.3588320980001],[14.75407962300008,68.35138580900009],[14.783539259000065,68.35415273600016],[14.840098504000053,68.37445709800006],[14.87012780000012,68.37929922100012],[14.88038170700014,68.385972398],[14.884450717000107,68.41982656500005],[14.897471550000091,68.43390534100011],[14.929860873000079,68.43732330900012],[15.009776238000086,68.42804596600014],[15.063324415000096,68.44871653899999],[15.101410352000102,68.45368073100003],[15.172373894000145,68.45441315300015],[15.154633009000063,68.438666083]]],[[[16.405284050000148,68.42942942900005],[16.414073113000114,68.418402411],[16.39861087300008,68.41347890800013],[16.23072350400014,68.40957265800013],[16.179209832000137,68.3998070330001],[16.141286655000044,68.38397858300006],[16.123545769000145,68.37921784100014],[16.11768639400009,68.38556549700009],[16.094899936000076,68.39752838700004],[16.11540774800011,68.41034577000005],[16.172373894000145,68.42772044500005],[16.158539259000037,68.42731354400003],[16.144704623000052,68.42853424700014],[16.11768639400009,68.43390534100011],[16.137705925000148,68.46869538000006],[16.16895592500012,68.49909088700012],[16.192149285000056,68.51496002800015],[16.22169030000012,68.52374909100003],[16.3435978520001,68.53701406500015],[16.3587345710001,68.53485748900015],[16.388845248000052,68.52545807500002],[16.402354363000114,68.52334219],[16.412119988000143,68.51947663],[16.4166772800001,68.51048411699999],[16.41895592500009,68.50006745000009],[16.422862175000063,68.49192942899998],[16.432790561000076,68.48525625200003],[16.45557701900009,68.47650788000006],[16.466563347000147,68.46869538000006],[16.44312584700009,68.46263255400004],[16.392100457000083,68.45595937700001],[16.371592644000145,68.44757721600014],[16.386403842000107,68.44106679900015],[16.405284050000148,68.42942942900005]]],[[[14.763031446000097,68.4948591170001],[14.717458530000043,68.4909528670001],[14.70443769600007,68.51308828300007],[14.658864780000101,68.53001536700008],[14.626312696000126,68.54303620000013],[14.604177280000071,68.55866120000003],[14.619802280000044,68.57037995000003],[14.669281446000099,68.58730703300002],[14.713552280000046,68.5768903670001],[14.787771030000071,68.57428620000003],[14.867198113000084,68.56907786700013],[14.932302280000044,68.56126536700013],[15.000010613000141,68.55475495000003],[14.998708530000073,68.53522370000015],[14.998653530000126,68.53518720000007],[14.998586186000068,68.5351427],[14.998493530000133,68.53508170000013],[14.998376498000113,68.53500494999999],[14.998236030000044,68.53491320000013],[14.99807306100007,68.53480720000006],[14.997888530000068,68.53468770000002],[14.997683373000141,68.5345554500001],[14.997458530000102,68.53441120000014],[14.99721493600012,68.53425570000009],[14.99695353000007,68.53408970000011],[14.996675248000145,68.53391395000013],[14.996381030000123,68.53372920000012],[14.996071811000123,68.53353620000014],[14.9957485300001,68.53333570000008],[14.99541212300008,68.53312845000006],[14.995063530000094,68.5329152],[14.994703686000065,68.53269670000005],[14.99433353000009,68.53247370000015],[14.993953998000052,68.53224695000016],[14.993566030000094,68.53201720000006],[14.993170561000056,68.53178520000013],[14.99276853000009,68.53155170000016],[14.992360873000107,68.53131745000015],[14.991948530000114,68.53108320000014],[14.991532436000057,68.5308497],[14.99111353000012,68.53061770000006],[14.990692748000127,68.53038795],[14.990271030000144,68.53016120000014],[14.989849311000055,68.52993820000007],[14.989428530000055,68.52971970000011],[14.989009623000129,68.52950645000006],[14.988593530000058,68.52929920000004],[14.988181186000048,68.52909870000015],[14.987773530000082,68.5289057000001],[14.987371498000128,68.52872095],[14.986976030000077,68.52854520000001],[14.986588061000134,68.52837920000006],[14.986208530000082,68.52822370000014],[14.985838373000092,68.52807945000002],[14.985478530000078,68.52794720000009],[14.985129936000106,68.52782770000005],[14.984793530000076,68.52772170000019],[14.984470248000065,68.52762995000013],[14.984161030000053,68.5275532000001],[14.98386681100004,68.52749220000011],[14.983588530000105,68.52744770000008],[14.983327123000064,68.52742045000004],[14.983083530000075,68.52741120000015],[14.982408196000051,68.5273138670001],[14.981922248000105,68.52719520000015],[14.981343363000063,68.52703253300008],[14.98067597700009,68.52682786700002],[14.979924530000089,68.52658320000013],[14.979093457000147,68.526300533],[14.978187196000137,68.5259818670001],[14.977210186000034,68.52562920000015],[14.976166863000115,68.52524453300013],[14.975061665000082,68.524829867],[14.973899030000068,68.52438720000005],[14.972683394000116,68.5239185330001],[14.971419196000054,68.52342586700011],[14.970110873000067,68.52291120000014],[14.968762863000109,68.52237653300016],[14.96737960200005,68.52182386700015],[14.96596553000009,68.5212552],[14.964525082000108,68.52067253300011],[14.963062696000094,68.52007786700001],[14.961582811000113,68.51947320000009],[14.960089863000034,68.51886053300002],[14.95858829000005,68.51824186700016],[14.957082530000093,68.51761920000017],[14.955577019000145,68.51699453300007],[14.954076196000129,68.516369867],[14.952584498000078,68.51574720000018],[14.951106363000065,68.51512853300015],[14.94964622700013,68.51451586700007],[14.948208530000104,68.51391120000012],[14.946797707000085,68.51331653300002],[14.945418196000077,68.51273386700016],[14.944074436000077,68.51216520000018],[14.942770863000135,68.51161253300002],[14.941511915000149,68.511077867],[14.940302030000055,68.51056320000004],[14.93914564400012,68.51007053300005],[14.938047196000097,68.50960186700009],[14.937011123000076,68.50915920000016],[14.936041863000098,68.50874453300004],[14.935143852000122,68.5083598670001],[14.934321530000119,68.50800720000014],[14.933579332000079,68.50768853300013],[14.93292169600002,68.50740586700012],[14.932353061000072,68.50716120000011],[14.931877863000096,68.50695653300006],[14.93150054000003,68.50679386700001],[14.931225530000118,68.50667520000015],[14.931057269000036,68.50660253299999],[14.931000196000127,68.50657786699999],[14.89193769600007,68.4948591170001],[14.763031446000097,68.4948591170001]]],[[[17.104991082000108,68.75804271],[16.8409936860001,68.72540924700014],[16.81666100400014,68.73558177299999],[16.823578321000127,68.73997630400008],[16.83033287900008,68.74713776200012],[16.835215691000144,68.75625234600001],[16.837168816000087,68.76658763200011],[16.844248894000145,68.77326080900015],[16.877940300000148,68.78750234600007],[16.910980665000096,68.79706452000006],[16.97429446700005,68.84544505400007],[17.000987175000088,68.85858795800011],[17.015635613000086,68.86001211100009],[17.021983269000117,68.84886302299999],[17.02702884200005,68.84699127800012],[17.05290774800008,68.81753164300012],[17.073415561000104,68.81207916900009],[17.131602410000138,68.78339264500012],[17.145681186000104,68.77033112200014],[17.104991082000108,68.75804271]]],[[[17.225922071000127,68.86139557500017],[17.255869988000086,68.85541413000006],[17.28223717500009,68.85846588700015],[17.26482181100002,68.86871979400009],[17.220469597000086,68.88222890800016],[17.206390821000127,68.893255927],[17.205332879000082,68.91327545800006],[17.224945509000065,68.92112864800005],[17.319672071000127,68.91844310100008],[17.36426842500012,68.9093285180001],[17.405528191000144,68.8922793640001],[17.44044030000009,68.86591217700011],[17.348968946000042,68.83515045800006],[17.29981530000012,68.80365631700012],[17.262217644000117,68.79364655200006],[17.223643425000144,68.79303620000009],[17.193369988000143,68.80390045800009],[17.178233269000145,68.81500885600012],[17.172373894000117,68.84796784100008],[17.15870201900009,68.86591217700011],[17.10962975400014,68.88621653900013],[17.087168816000144,68.89850495000009],[17.08350670700008,68.91376373900006],[17.10450280000012,68.92503489800005],[17.131195509000065,68.91543203300007],[17.172373894000117,68.88580963700004],[17.196625196000095,68.87278880400014],[17.225922071000127,68.86139557500017]]],[[[14.958343946000099,68.87531159100014],[14.901215040000125,68.87230052300005],[14.892263217000076,68.87335846600011],[14.85873457100004,68.88336823100009],[14.843597852000043,68.88544342700011],[14.840098504000053,68.89166901200015],[14.855235222000145,68.90717194200009],[14.854014519000144,68.91347890800002],[14.851898634000124,68.91876862200009],[14.857269727000102,68.92304108300003],[14.873383009000065,68.929144598],[14.899668816000087,68.930853583],[14.958669467000105,68.92609284100011],[14.982920769000115,68.91779205900004],[14.996592644000145,68.90159739800008],[14.987559441000144,68.8846703150001],[14.958343946000099,68.87531159100014]]],[[[15.907888217000048,68.95734284100016],[15.909841342000105,68.94977448100003],[15.902842644000117,68.93675364800013],[15.89795983200014,68.917425848],[15.904551629000112,68.90387604400014],[15.917002800000146,68.89573802300013],[15.92408287900011,68.88641998900009],[15.91480553500014,68.86933014500012],[15.878184441000117,68.81753164300012],[15.875824415000068,68.81049225500006],[15.874766472000116,68.79755280200006],[15.87077884200005,68.79022858300014],[15.863291863000086,68.78290436400015],[15.847911004000139,68.77301666900003],[15.84034264400009,68.76658763200011],[15.823985222000145,68.75617096600003],[15.761485222000116,68.73558177299999],[15.805511915000125,68.73847077000012],[15.853526238000113,68.74762604400011],[15.898936394000117,68.763617255],[15.935557488000143,68.78709544500008],[15.955577019000115,68.79165273600002],[15.976898634000094,68.78131745000012],[15.989593946000127,68.76349518400004],[15.983653191000116,68.7455508480001],[15.971202019000089,68.73224518400015],[15.953868035000113,68.70477936400012],[15.942393425000146,68.690619208],[15.93311608200011,68.68414948100009],[15.924489780000101,68.68207428600009],[15.915293816000144,68.68097565300003],[15.904795769000147,68.67755768400012],[15.895192905000101,68.671576239],[15.878672722000118,68.65790436400006],[15.87077884200005,68.653021552],[15.847911004000139,68.6483421900001],[15.793304884000065,68.64297109600012],[15.77442467500012,68.63255442900014],[15.76579837300005,68.61566803600013],[15.76921634200005,68.60321686400012],[15.777110222000116,68.59198639500012],[15.781911655000101,68.57855866100012],[15.777842644000144,68.56216054900013],[15.766612175000148,68.55377838700015],[15.752614780000071,68.54572174700003],[15.740407748000107,68.53009674700014],[15.781016472000116,68.54120514500006],[15.802907748000054,68.55133698100003],[15.81617272200009,68.56427643400004],[15.8190210300001,68.58380768400012],[15.815114780000016,68.59808991100003],[15.816742384000037,68.61082591400007],[15.836599155000044,68.62571849200009],[15.858571811000074,68.63418203300016],[15.932139519000144,68.653021552],[15.978200717000076,68.67153554900001],[16.005137566000144,68.67755768400012],[16.02784264400009,68.67413971600011],[16.045420769000117,68.6430117860001],[16.06128991000014,68.63031647300015],[16.08301842500012,68.63873932500009],[16.09001712300011,68.65619538000006],[16.081065300000063,68.67251211100007],[16.055674675000148,68.69399648600002],[16.0506291020001,68.69599030200004],[16.03891035200013,68.70343659100003],[16.033213738000143,68.711371161],[16.045420769000117,68.71507396000013],[16.068125847000143,68.73126862200009],[16.076182488000114,68.73558177299999],[16.107432488000086,68.74070872600011],[16.213226759000094,68.73558177299999],[16.2010197270001,68.76072825700007],[16.178884311000047,68.77167389500012],[16.123871290000068,68.78400299700009],[16.108571811000104,68.79144928600006],[16.09457441500004,68.80166250200001],[16.088877800000148,68.81488678600014],[16.09717858200014,68.83120351800005],[16.107432488000086,68.83612702000012],[16.191742384000065,68.85716380400005],[16.207041863000114,68.85846588700015],[16.224619988000143,68.85602448100012],[16.25359134200005,68.84296295800014],[16.267914259000122,68.83860911700005],[16.284027540000096,68.84031810100005],[16.29395592500009,68.84735748900012],[16.295258009000094,68.85492584800006],[16.262461785000085,68.86668528900005],[16.24952233200008,68.88418203300002],[16.246836785000113,68.89996979400014],[16.25464928500011,68.9032250020001],[16.31462649800011,68.87010325700005],[16.390961134000065,68.85443756700009],[16.430023634000122,68.85199616100005],[16.43881269600007,68.84955475500011],[16.44044030000009,68.84235260600016],[16.439789259000065,68.82807038],[16.45557701900009,68.81533437700013],[16.530446811000076,68.82599518400015],[16.555918816000087,68.8249372420001],[16.539805535000113,68.81500885600012],[16.50554446700005,68.80316803600006],[16.494476759000094,68.79022858300014],[16.511973504000135,68.79096100500009],[16.530609571000127,68.78900788000011],[16.5467228520001,68.782660223],[16.555918816000087,68.77033112200014],[16.52613366000008,68.7609723980001],[16.52572675900006,68.75263092700006],[16.533702019000117,68.74111562700001],[16.528575066000116,68.72199127800003],[16.576996290000096,68.70766836100013],[16.567149285000085,68.6992048200001],[16.53484134200005,68.68097565300003],[16.560883009000122,68.67169830900016],[16.558929884000094,68.655218817],[16.542328321000124,68.63703034100008],[16.524668816000116,68.62262604400003],[16.513194207000083,68.61676666900009],[16.50098717500009,68.61220937700013],[16.491058790000096,68.60578034100003],[16.487071160000113,68.594671942],[16.492035352000073,68.58234284100014],[16.496104363000114,68.57933177300005],[16.501231316000144,68.57558828300002],[16.50603274800011,68.56818268400004],[16.49756920700008,68.5540225280001],[16.481455925000116,68.54751211100002],[16.459320509000122,68.54905833500005],[16.419444207000055,68.55744049700003],[16.346527540000125,68.5595156920001],[16.22217858200011,68.54743073100003],[16.155528191000144,68.52456289300012],[16.14177493600002,68.52334219],[16.129730665000096,68.52716705900004],[16.117930535000138,68.53424713700018],[16.105967644000117,68.538519598],[16.093516472000086,68.53351471600014],[16.082367384000065,68.51557038000003],[16.069672071000095,68.48895905200006],[16.053396030000073,68.46482982000005],[16.012054884000037,68.44696686400009],[15.994965040000094,68.42942942900005],[15.966319207000112,68.39301178600006],[15.940928582000112,68.380316473],[15.90398196700005,68.36985911700013],[15.876231316000087,68.36908600500003],[15.878184441000117,68.38556549700009],[15.87077884200005,68.40058014500012],[15.873708530000073,68.41461823100015],[15.880625847000147,68.4287783870001],[15.884287957000112,68.44415924700003],[15.881602410000141,68.45636627800012],[15.875498894000145,68.46662018400004],[15.870616082000081,68.47846100499999],[15.87077884200005,68.49542877800015],[15.858571811000074,68.486232815],[15.859629754000109,68.47736237200014],[15.864756707000138,68.46735260600013],[15.864512566000085,68.45441315300015],[15.85718834700009,68.440863348],[15.849294467000107,68.43475983300003],[15.823008660000085,68.424017645],[15.812347852000071,68.42641836100013],[15.796071811000047,68.43390534100011],[15.781016472000116,68.43817780200011],[15.77442467500012,68.43085358300011],[15.780446811000047,68.41868724200012],[15.807383660000111,68.40314362200003],[15.81617272200009,68.39301178600006],[15.79273522200009,68.39362213700004],[15.781016472000116,68.40180084800012],[15.773122592000048,68.41339752800015],[15.761485222000116,68.424017645],[15.747894727000071,68.42536041900007],[15.740407748000107,68.4149437520001],[15.7330835300001,68.40131256700015],[15.719899936000045,68.39301178600006],[15.721853061000102,68.38837311400015],[15.724619988000143,68.37693919499999],[15.72673587300008,68.37250397300004],[15.691416863000144,68.37323639500015],[15.674327019000089,68.37128327],[15.65845787900008,68.36505768400002],[15.66944420700014,68.36139557500009],[15.681162957000112,68.35907623900012],[15.69353274800005,68.35814036700005],[15.706309441000085,68.3588320980001],[15.691254102000073,68.34300364800005],[15.64014733200011,68.31745026200015],[15.637950066000114,68.30418528900013],[15.624359571000069,68.30048248900009],[15.597992384000065,68.30442942900008],[15.582774285000083,68.30418528900013],[15.589610222000118,68.30780670799999],[15.596446160000113,68.31037018400008],[15.596446160000113,68.31785716400007],[15.575368686000104,68.31940338700008],[15.544118686000045,68.33405182500012],[15.527679884000122,68.33771393400015],[15.375987175000146,68.327582098],[15.338389519000145,68.33197663],[15.322601759000094,68.35138580900009],[15.342539910000085,68.34821198100003],[15.358083530000101,68.3549258480001],[15.387868686000104,68.38247304900001],[15.405935092000107,68.39191315300003],[15.47291100400011,68.40599192900008],[15.507172071000097,68.42255280200014],[15.570078972000118,68.46303945500007],[15.611338738000084,68.47492096600003],[15.580577019000089,68.487453518],[15.575938347000063,68.49192942899998],[15.572764519000115,68.50287506700015],[15.564707879000082,68.50910065300009],[15.55372155000012,68.51117584800012],[15.541758660000085,68.50967031500006],[15.552907748000111,68.48777903900005],[15.553965691000144,68.4753278670001],[15.542165561000074,68.46625397300012],[15.439300977000102,68.418402411],[15.411794467000048,68.41347890800013],[15.405039910000113,68.414496161],[15.384043816000089,68.42023346600017],[15.37647545700014,68.41718170800009],[15.370371941000144,68.41254303600006],[15.363617384000094,68.40599192900008],[15.316254102000071,68.395493882],[15.27865644600007,68.37323639500015],[15.211761915000066,68.36595286700013],[15.185394727000043,68.35138580900009],[15.214854363000143,68.35252513200014],[15.22673587300008,68.348822333],[15.233246290000066,68.33771393400015],[15.216563347000145,68.335394598],[15.145030144000087,68.312933661],[15.134043816000146,68.30805084800012],[15.113780144000117,68.28681061400015],[15.085785352000103,68.27122630400005],[15.040863477000103,68.25702545800014],[15.000498894000145,68.2533226580001],[14.986827019000115,68.26947663000006],[14.992686394000145,68.27138906500004],[14.997894727000128,68.2740746110001],[15.002940300000091,68.27789948100012],[15.007334832000138,68.283148505],[14.995371941000116,68.297796942],[15.00928795700011,68.31366608300011],[15.034190300000148,68.32632070500001],[15.055837436000047,68.3315290390001],[15.06812584700009,68.33909739800005],[15.104014519000087,68.37734609600001],[15.123383009000094,68.39301178600006],[15.192556186000104,68.43488190300017],[15.222911004000082,68.44379303600012],[15.252207879000084,68.45734284100008],[15.268077019000117,68.46124909100008],[15.356781446000099,68.46124909100008],[15.330821160000083,68.46466705900009],[15.260101759000065,68.46649811400006],[15.240733269000145,68.47492096600003],[15.248383009000065,68.486232815],[15.278981967000105,68.48989492400015],[15.33692467500009,68.48859284100013],[15.281748894000144,68.49542877800015],[15.27491295700014,68.49852122600005],[15.274587436000104,68.50560130400011],[15.275238477000071,68.51268138200007],[15.271494988000113,68.51585521000014],[15.178558790000126,68.52334219],[15.198741082000053,68.54303620000013],[15.217295769000058,68.55687083500005],[15.238780144000087,68.56427643400004],[15.268077019000117,68.56427643400004],[15.31169681100002,68.55882396],[15.323252800000148,68.56281159100017],[15.308929884000063,68.57855866100012],[15.394704623000111,68.58478424700009],[15.405528191000117,68.58051178600009],[15.434336785000141,68.56183502800009],[15.452321811000074,68.55744049700003],[15.439626498000111,68.57363515800007],[15.39161217500012,68.60521067900005],[15.407562696000127,68.604681708],[15.436045769000144,68.59833405200006],[15.452321811000074,68.59780508000007],[15.443207227000102,68.60903554900007],[15.438731316000116,68.61212799700014],[15.438731316000116,68.61953359600015],[15.548838738000143,68.62571849200009],[15.556651238000144,68.62392812700013],[15.567393425000148,68.61444733300011],[15.574961785000085,68.61029694200009],[15.589121941000114,68.606431382],[15.603200717000078,68.60504791900007],[15.616872592000105,68.60663483300011],[15.63054446700005,68.61212799700014],[15.615977410000113,68.61286041900009],[15.604828321000099,68.61863841400005],[15.594493035000085,68.62628815300009],[15.582774285000083,68.63255442900014],[15.56275475400011,68.63519928600012],[15.51384524800005,68.636175848],[15.497731967000078,68.64248281500012],[15.478282097000061,68.65582916900014],[15.457367384000122,68.66705963700007],[15.442067905000043,68.68219635600006],[15.438731316000116,68.70766836100013],[15.44304446700002,68.72357819200006],[15.449554884000122,68.72915273600007],[15.569102410000141,68.72939687700004],[15.581553582000083,68.73110586100005],[15.593028191000114,68.73427969],[15.604828321000099,68.73574453300014],[15.617849155000071,68.73248932500012],[15.642263217000107,68.72321198100015],[15.662608269000115,68.71918366099999],[15.713633660000111,68.701402085],[15.686696811000047,68.71092357000002],[15.678884311000045,68.71507396000013],[15.67595462300011,68.71918366099999],[15.668711785000111,68.73208242400001],[15.665782097000088,68.73558177299999],[15.63965905000012,68.74323151200012],[15.501231316000142,68.74306875200016],[15.475922071000127,68.74689362200017],[15.459808790000038,68.75604889500006],[15.455577019000119,68.76902903900005],[15.45915774800011,68.79612864799999],[15.452321811000074,68.81126536699999],[15.464121941000144,68.81000397300006],[15.48585045700011,68.80499909100001],[15.49708092500012,68.80390045800009],[15.507660352000073,68.80646393400008],[15.514170769000145,68.81268952000015],[15.519867384000065,68.819769598],[15.528656446000097,68.8249372420001],[15.556325717000107,68.82636139500009],[15.61345462300008,68.81777578300007],[15.637950066000114,68.8249372420001],[15.618418816000144,68.829779364],[15.590179884000065,68.83307526200004],[15.563487175000148,68.83917877800012],[15.54859459700009,68.85228099199999],[15.553233269000115,68.87225983300006],[15.57569420700011,68.88222890800016],[15.624278191000087,68.88580963700004],[15.620371941000087,68.8941104190001],[15.614105665000123,68.90045807500003],[15.606130405000073,68.90473053600014],[15.596446160000113,68.90692780200014],[15.60954837300008,68.91941966400005],[15.63054446700005,68.94481028899999],[15.644786004000139,68.95473867400007],[15.67660566500007,68.96271393400004],[15.778493686000104,68.95473867400007],[15.85759524800008,68.970160223],[15.884287957000112,68.96832916900001],[15.907399936000076,68.959418036],[15.907888217000048,68.95734284100016]]],[[[16.415049675000088,68.97247955900015],[16.466807488000114,68.96214427300005],[16.520518425000063,68.96214427300005],[16.566172722000115,68.96832916900001],[16.584646030000044,68.96185944200012],[16.5994572270001,68.94717031500012],[16.601898634000122,68.93121979400003],[16.583262566000144,68.92112864800005],[16.587168816000144,68.89744700700014],[16.5670679050001,68.88739655200006],[16.476247592000107,68.88580963700004],[16.43474368600002,68.89130280200006],[16.394867384000065,68.90200429900005],[16.3435978520001,68.93374258000011],[16.285166863000143,68.95209381700009],[16.261729363000143,68.96832916900001],[16.30632571700005,68.995306708],[16.359385613000143,68.9901390650001],[16.415049675000088,68.97247955900015]]],[[[15.19288170700011,68.93423086100002],[15.19288170700011,68.92739492400001],[15.206228061000045,68.92755768400015],[15.218516472000088,68.92438385600009],[15.240733269000145,68.91376373900006],[15.20948326900009,68.90326569200008],[15.19556725400011,68.89691803600006],[15.185394727000043,68.88580963700004],[15.214366082000138,68.88165924700009],[15.271494988000113,68.91974518400015],[15.295258009000122,68.90692780200014],[15.281748894000144,68.86591217700011],[15.272797071000127,68.85407135600015],[15.240733269000145,68.8249372420001],[15.302093946000126,68.84300364800013],[15.319509311000104,68.85541413000006],[15.325856967000048,68.85871002800009],[15.333506707000083,68.85871002800009],[15.339691602000128,68.85553620000003],[15.342458530000103,68.84886302299999],[15.347829623000052,68.84690989800013],[15.384043816000089,68.85228099199999],[15.371755405000043,68.83535390800002],[15.362640821000127,68.81732819200006],[15.350759311000076,68.802923895],[15.32976321700005,68.79706452000006],[15.299815300000063,68.80280182500003],[15.284434441000116,68.80353424700014],[15.27491295700014,68.79706452000006],[15.278330925000148,68.79181549700017],[15.302744988000086,68.77655670800002],[15.282399936000104,68.76557038000006],[15.27491295700014,68.76288483300009],[15.31169681100002,68.75263092700006],[15.358409050000118,68.74628327000003],[15.39421634200002,68.73110586100005],[15.397715691000116,68.69399648600002],[15.37525475400011,68.66990794499999],[15.336192254000139,68.65289948100003],[15.06267337300005,68.57851797100012],[14.87322024800011,68.58445872600008],[14.842784050000148,68.59153880400011],[14.848806186000047,68.59454987200003],[14.858246290000068,68.60203685099998],[14.863291863000084,68.60521067900005],[14.808116082000057,68.61469147300006],[14.806407097000145,68.61595286699999],[14.808767123000111,68.61953359600015],[14.81592858200014,68.63776276200004],[14.83366946700005,68.64447663000009],[14.876963738000114,68.64618561400007],[14.94874108200011,68.66412995000003],[14.97291100400011,68.66669342700014],[15.034678582000138,68.66669342700014],[15.043467644000089,68.669378973],[15.050547722000147,68.67536041900003],[15.05689537900008,68.68227773600005],[15.062510613000086,68.687201239],[15.08887780000009,68.69501373900009],[15.140879754000137,68.69501373900009],[15.165049675000148,68.701402085],[15.154307488000141,68.71320221600017],[15.14673912900011,68.72553131700012],[15.145030144000087,68.73956940300015],[15.151377800000118,68.75604889500006],[15.026052280000044,68.77118561400006],[14.99366295700011,68.76288483300009],[15.01351972700013,68.76300690300006],[15.068695509000065,68.74860260600018],[15.05014082100007,68.72980377800003],[15.019541863000141,68.7121442730001],[14.986013217000105,68.70254140800013],[14.958832227000071,68.70766836100013],[14.962901238000143,68.71621328300006],[14.962901238000143,68.71906159100001],[14.961110873000052,68.7216250670001],[14.958832227000071,68.72939687700004],[14.94695071700005,68.71458567900005],[14.92530358200014,68.69501373900009],[14.900889519000087,68.68130117400014],[14.88038170700014,68.68406810100011],[14.861989780000101,68.68988678600005],[14.827810092000105,68.67348867400007],[14.808767123000111,68.68097565300003],[14.820648634000065,68.69407786700002],[14.821543816000142,68.70722077000006],[14.815114780000044,68.71474844],[14.805023634000094,68.711371161],[14.796397332000083,68.70099518400009],[14.78492272200012,68.68317291900003],[14.774587436000017,68.67413971600011],[14.750336134000122,68.66746653900005],[14.721934441000116,68.67304108300006],[14.696055535000085,68.68756745000009],[14.678965691000144,68.70766836100013],[14.67408287900008,68.68695709800014],[14.662119988000141,68.67397695500013],[14.630625847000145,68.653021552],[14.625824415000066,68.64520905200003],[14.622569207000112,68.62885163],[14.61695397200009,68.62571849200009],[14.558278842000076,68.62726471600014],[14.544932488000088,68.62262604400003],[14.520681186000077,68.60903554900007],[14.49195397200012,68.6066755230001],[14.435069207000083,68.61212799700014],[14.417246941000114,68.61953359600015],[14.413259311000045,68.63641998900015],[14.419200066000057,68.65485260600018],[14.431895379000139,68.66669342700014],[14.420909050000063,68.67251211100007],[14.414398634000094,68.668646552],[14.408050977000132,68.66217682500017],[14.397227410000141,68.66046784100017],[14.387950066000087,68.66388580900018],[14.382090691000144,68.669378973],[14.369883660000085,68.687201239],[14.38111412900008,68.69765859600007],[14.394541863000084,68.70160553600006],[14.425059441000116,68.701402085],[14.426280144000115,68.71442291900009],[14.464121941000085,68.72451406500015],[14.541758660000111,68.73558177299999],[14.541758660000111,68.7424177100001],[14.51661217500012,68.74249909100008],[14.438161655000073,68.75604889500006],[14.45533287900011,68.77602773600013],[14.488454623000052,68.79535553600006],[14.523936394000117,68.80707428600014],[14.548024936000045,68.80390045800009],[14.553233269000147,68.7943382830001],[14.555023634000122,68.77041250200011],[14.561778191000087,68.75604889500006],[14.572276238000141,68.74632396000003],[14.587250196000069,68.73908112200009],[14.604991082000081,68.73517487200009],[14.623789910000113,68.73558177299999],[14.616221550000061,68.74070872600011],[14.607920769000087,68.74461497600002],[14.598887566000085,68.74730052299998],[14.589610222000116,68.74860260600018],[14.597829623000024,68.76740143400002],[14.608653191000116,68.77806224200008],[14.623708530000046,68.78449127800017],[14.644216342000105,68.79022858300014],[14.616465691000117,68.799058335],[14.607595248000083,68.8072777360001],[14.613536004000082,68.82123444200006],[14.628428582000138,68.82990143400015],[14.648692254000137,68.83295319200006],[14.669444207000138,68.831040757],[14.685801629000082,68.8249372420001],[14.678965691000144,68.81753164300012],[14.692067905000016,68.81126536699999],[14.679698113000086,68.76732005400005],[14.68653405000009,68.75747304900013],[14.719981316000144,68.76288483300009],[14.801280144000144,68.78937409100014],[14.843597852000043,68.79629140800013],[14.883799675000146,68.79022858300014],[14.872894727000073,68.780462958],[14.872325066000114,68.769232489],[14.880056186000102,68.75995514500015],[14.894053582000083,68.75604889500006],[14.907074415000068,68.760239976],[14.928965691000087,68.77903880400014],[14.945323113000114,68.78400299700009],[14.94157962300008,68.79266998900009],[14.942230665000125,68.80145905200006],[14.946543816000116,68.80988190300009],[14.952647332000112,68.81753164300012],[14.904307488000116,68.84544505400007],[14.941172722000061,68.85980866100014],[14.952647332000112,68.86591217700011],[14.976084832000083,68.84804922100007],[14.991058790000125,68.84202708500005],[14.992686394000145,68.83417389500006],[14.992035352000102,68.82485586100013],[14.99366295700011,68.81753164300012],[14.9998478520001,68.79926178600006],[15.006032748000052,68.79385000200001],[15.017588738000086,68.80048248900006],[15.024261915000123,68.80805084800012],[15.02759850400008,68.81439850500006],[15.026621941000085,68.81997304900007],[15.021006707000083,68.8249372420001],[15.04981530000012,68.85276927300008],[15.085459832000081,68.84520091400012],[15.123301629000109,68.82558828300016],[15.158864780000101,68.81753164300012],[15.145681186000047,68.84251536700005],[15.120290561000104,68.8565127620001],[15.091563347000147,68.86640045800011],[15.068695509000065,68.8789737000001],[15.076670769000115,68.89899323100018],[15.065196160000083,68.9131533870001],[15.027842644000119,68.93423086100002],[15.019379102000075,68.9447695980001],[15.00928795700011,68.963324286],[15.007660352000073,68.98102448100009],[15.084483269000117,69.0112165390001],[15.104340040000096,69.01447174700014],[15.124359571000069,69.01532623900005],[15.13770592500009,69.01308828300007],[15.153981967000107,69.00250885600012],[15.168223504000109,68.9882673200001],[15.17066491000014,68.97378164300007],[15.151377800000118,68.96214427300005],[15.192556186000104,68.94269440300015],[15.20655358200014,68.940375067],[15.197032097000145,68.9352074240001],[15.19288170700011,68.93423086100002]]],[[[17.401133660000085,68.98932526200015],[17.37663821700005,68.98932526200015],[17.351898634000065,68.99575429900005],[17.344086134000094,69.00324127800015],[17.349375847000147,69.00934479400003],[17.350759311000047,69.0163028020001],[17.348806186000076,69.02391185100007],[17.35254967500012,69.03473541900014],[17.364431186000076,69.04710521],[17.386485222000147,69.06354401200008],[17.41968834700009,69.07916901200018],[17.451508009000122,69.08490631700015],[17.547129754000082,69.09210846600007],[17.558360222000086,69.091986395],[17.5721134770001,69.08954498900009],[17.56657962300008,69.0858828800001],[17.551280144000117,69.081244208],[17.545909050000063,69.07461172100012],[17.547211134000065,69.06712474200008],[17.544281446000042,69.060492255],[17.5389103520001,69.0556094420001],[17.52491295700014,69.0479190120001],[17.501231316000116,69.03945547100007],[17.47828209700012,69.0346133480001],[17.457855665000064,69.02716705900012],[17.442230665000068,69.01679108300011],[17.418955925000148,68.99640534100003],[17.401133660000085,68.98932526200015]]],[[[15.81617272200009,69.02362702000012],[15.760427280000073,69.00568268400016],[15.63217207100007,68.98663971600008],[15.596446160000113,68.99567291900009],[15.566742384000094,69.01268138200005],[15.54908287900008,69.01626211100013],[15.528656446000097,69.00934479400003],[15.545664910000085,69.00031159100003],[15.56006920700014,68.9901390650001],[15.569102410000141,68.97772858300006],[15.569672071000127,68.96214427300005],[15.563487175000148,68.95136139500006],[15.528656446000097,68.91376373900006],[15.501475457000112,68.89581940300012],[15.464040561000076,68.88206614799999],[15.4314884770001,68.884222723],[15.418793165000125,68.91376373900006],[15.42798912900011,68.92462799700004],[15.42904707100007,68.93480052299998],[15.426442905000073,68.94668203300013],[15.425059441000087,68.96214427300005],[15.430918816000114,68.977525132],[15.454437696000099,69.00055573100015],[15.459808790000038,69.01308828300007],[15.517588738000084,69.0539411480001],[15.542002800000118,69.08095937700007],[15.569672071000127,69.10553620000016],[15.610687696000127,69.12567780200011],[15.659922722000118,69.13849518400006],[15.75806725400011,69.14712148600013],[15.791351759000122,69.16128164300007],[15.843109571000126,69.22028229400003],[15.87077884200005,69.22907135600009],[15.86866295700011,69.23358795800014],[15.866221550000091,69.24494049700012],[15.864512566000085,69.24949778900007],[15.881602410000141,69.25413646],[15.916026238000057,69.25897858300006],[15.932139519000144,69.263128973],[15.97510826900009,69.28717682500003],[16.10157311300011,69.31525299700006],[16.1315210300001,69.31098053600012],[16.14991295700014,69.29083893400009],[16.146739129000082,69.269232489],[16.131602410000085,69.24872467700014],[16.11426842500009,69.23212311400009],[16.098968946000127,69.21108633000013],[16.0892033210001,69.17145416900003],[16.076182488000114,69.15395742400007],[16.060801629000053,69.14459870000003],[16.014008009000094,69.13279857000008],[15.970388217000078,69.10895416900009],[15.956309441000144,69.10553620000016],[15.946462436000017,69.10187409100003],[15.934418165000096,69.09332916900009],[15.91480553500014,69.075140692],[15.910166863000114,69.0726585960001],[15.893239780000043,69.06590403900005],[15.877126498000079,69.062241929],[15.873871290000125,69.05670807500017],[15.87338300900012,69.04999420800011],[15.87077884200005,69.044094143],[15.857758009000065,69.03384023600006],[15.847911004000139,69.02924225500011],[15.81617272200009,69.02362702000012]]],[[[17.73568769600007,69.5517031920001],[17.75310306100002,69.54059479400009],[17.772227410000085,69.54779694200012],[17.79981530000012,69.57510000200001],[17.81771894600007,69.58710358300011],[17.83741295700011,69.59210846600017],[17.85914147200009,69.58673737200012],[17.873871290000068,69.57314687700016],[17.892832879000082,69.53685130400005],[17.88306725400014,69.52704498900012],[17.861338738000082,69.51630280200011],[17.851328972000086,69.50958893400015],[17.844574415000068,69.50250885600009],[17.84229576900009,69.497748114],[17.84107506600014,69.49213288000003],[17.837657097000147,69.48224518400008],[17.824717644000145,69.465765692],[17.82276451900009,69.45750560100011],[17.830821160000138,69.44814687700008],[17.844981316000144,69.44521719000006],[17.85767662900011,69.45233795800011],[17.87525475400014,69.47235748900009],[17.88298587300008,69.4894880230001],[17.891368035000113,69.498724677],[17.917735222000115,69.50592682500012],[17.93458092500012,69.52008698100003],[17.94410241000011,69.52326080900009],[17.97266686300011,69.52000560100005],[18.05054772200009,69.49591705900004],[18.039073113000143,69.48476797100001],[18.021169467000078,69.48102448100018],[17.9822697270001,69.48224518400008],[17.99390709700009,69.462836005],[17.984385613000086,69.44961172100015],[17.940684441000116,69.42829010600018],[17.9822697270001,69.41315338700018],[18.002289259000065,69.40997955900012],[18.01579837300002,69.420843817],[18.010020379000082,69.4330508480001],[18.024668816000087,69.44086334800006],[18.048594597000147,69.44293854400007],[18.07081139400009,69.43793366100006],[18.07862389400009,69.42499420800014],[18.081065300000116,69.387640692],[18.088145379000082,69.379868882],[18.098643425000148,69.37612539300015],[18.097666863000086,69.36762116100012],[18.090993686000047,69.35834381700005],[18.084727410000085,69.35252513200011],[18.07081139400009,69.34906647300004],[18.01579837300002,69.35252513200011],[17.955332879000107,69.3426781270001],[17.923106316000087,69.33234284100008],[17.90593509200005,69.31842682500012],[17.919118686000104,69.31232330900012],[17.9212345710001,69.30402252800003],[17.921071811000047,69.29413483300011],[17.9264429050001,69.28367747600005],[17.93539472700013,69.27773672100012],[17.958994988000086,69.26780833500011],[17.9674585300001,69.263128973],[17.950694207000083,69.25079987200014],[17.926931186000104,69.24725983300009],[17.878672722000147,69.24949778900007],[17.878672722000147,69.24266185100005],[17.913747592000046,69.2340762390001],[17.932465040000125,69.22724030200011],[17.940684441000116,69.21881745000013],[17.949066602000073,69.20514557500003],[17.96892337300008,69.2022158870001],[17.991547071000127,69.20307038],[18.008962436000104,69.20111725500004],[17.988454623000052,69.18744538000011],[17.958262566000144,69.18048737200003],[17.820648634000094,69.16950104400017],[17.707204623000052,69.17291901200018],[17.61109459700009,69.15395742400007],[17.519053582000083,69.15794505400005],[17.488291863000114,69.15395742400007],[17.49390709700012,69.16889069200003],[17.504079623000052,69.17983633000007],[17.52979576900009,69.20111725500004],[17.4987085300001,69.20282623900006],[17.47217858200014,69.20014069200009],[17.446950717000078,69.19285716400007],[17.419932488000114,69.180609442],[17.37842858200014,69.15395742400007],[17.234629754000107,69.10618724200013],[17.188324415000125,69.08348216399999],[17.15870201900009,69.05027903900007],[17.172373894000117,69.04559967700006],[17.19947350400014,69.04824453300013],[17.21387780000012,69.044094143],[17.185069207000083,69.02440013200005],[17.129405144000145,69.01154205900004],[17.073008660000113,69.00812409100003],[17.04200280000009,69.01679108300011],[17.043467644000145,69.030707098],[17.058278842000107,69.03921133000004],[17.078623894000117,69.04319896],[17.09717858200011,69.044094143],[17.087412957000083,69.04897695500006],[17.08350670700008,69.05027903900007],[17.09156334700012,69.06171295800011],[17.105642123000052,69.06635163000014],[17.122325066000084,69.06830475499999],[17.13803144600007,69.07200755400012],[17.10987389400009,69.08470286700002],[16.82325280000012,69.05442942900001],[16.809825066000116,69.06460195500013],[16.779633009000094,69.07013580900015],[16.773122592000107,69.08820221600008],[16.786468946000127,69.10814036699999],[16.81666100400014,69.11920807500012],[16.872406446000127,69.10439687700013],[16.89625084700012,69.10423411699998],[16.89234459700012,69.126654364],[16.988536004000053,69.139634507],[17.033050977000073,69.13202545800014],[17.056000196000042,69.13287995000013],[17.06983483200014,69.14712148600013],[17.064219597000147,69.15009186400006],[17.061289910000113,69.15326569200012],[17.059336785000085,69.15664297100015],[17.056325717000075,69.16014232000005],[17.144541863000143,69.18406810100002],[17.172373894000117,69.20111725500004],[17.082367384000065,69.18158600500009],[17.049489780000073,69.180609442],[16.97429446700005,69.19489166900007],[16.89861087300008,69.19489166900007],[16.89861087300008,69.20111725500004],[16.908702019000145,69.20319245000017],[16.912364129000082,69.205755927],[16.91431725400014,69.20945872600011],[16.919118686000047,69.21539948100015],[16.89942467500009,69.22093333500008],[16.889170769000145,69.22231679900015],[16.87867272200009,69.22215403899999],[16.944834832000083,69.23651764500006],[17.086761915000125,69.22894928600012],[17.145681186000104,69.256333726],[17.12378991000014,69.25023021],[17.11768639400009,69.24949778900007],[17.10889733200011,69.25177643400004],[17.10694420700014,69.2565778670001],[17.10889733200011,69.261419989],[17.11085045700014,69.263128973],[17.109711134000122,69.26821523600005],[17.100108269000142,69.2812360700001],[17.088877800000144,69.289536851],[17.08350670700008,69.28025950700014],[17.070567254000082,69.26805247600008],[17.040375196000067,69.26825592700011],[16.981130405000073,69.27680084800012],[16.981130405000073,69.28367747600005],[16.990407748000024,69.28534577000006],[16.996104363000114,69.28774648600002],[17.007823113000086,69.29791901200015],[16.925547722000143,69.293443101],[16.906016472000147,69.29791901200015],[16.897634311000104,69.31171295800006],[16.915293816000116,69.31757233299999],[17.13184655000009,69.31098053600012],[17.124196811000076,69.31370677300002],[17.104014519000145,69.32526276200004],[17.11768639400009,69.3314476580001],[17.077403191000084,69.33051178600003],[17.058278842000107,69.33429596600003],[17.04200280000009,69.34511953300012],[17.058441602000073,69.34983958500014],[17.075450066000144,69.35203685100014],[17.11085045700014,69.35252513200011],[17.084646030000012,69.36176178600009],[17.05567467500012,69.36444733300004],[16.971364780000044,69.3565127620001],[16.87867272200009,69.35936107000013],[16.87867272200009,69.36619700700005],[16.893321160000085,69.36579010600006],[16.90723717500009,69.368597723],[16.933929884000094,69.379868882],[16.930918816000087,69.383775132],[16.926524285000113,69.39354075700011],[16.938487175000148,69.39838288],[16.9498804050001,69.39801666900009],[16.979014519000145,69.39227936400012],[16.991058790000068,69.387152411],[16.99822024800011,69.38605377800015],[17.004242384000122,69.38833242400013],[17.014496290000068,69.39809804900005],[17.021739129000082,69.40033600500006],[17.039073113000057,69.39838288],[17.062510613000143,69.38914622600005],[17.076670769000145,69.38605377800015],[17.094981316000116,69.38735586100016],[17.1248478520001,69.39777252800006],[17.14193769600007,69.40033600500006],[17.276052280000044,69.39354075700011],[17.368418816000144,69.366888739],[17.399424675000063,69.36619700700005],[17.389414910000085,69.38043854400014],[17.37061608200014,69.38703034100001],[17.330577019000117,69.39354075700011],[17.29623457100007,69.41136302300002],[17.28223717500009,69.41400788],[17.44662519600004,69.41429271000011],[17.495778842000078,69.42829010600018],[17.325450066000084,69.43943919500009],[17.242930535000085,69.45473867400007],[17.186534050000148,69.50275299700014],[17.225596550000088,69.50096263200005],[17.246429884000094,69.49603912999999],[17.263438347000143,69.47842031500008],[17.281586134000037,69.46991608300006],[17.302012566000116,69.46352773600003],[17.31625410200013,69.46181875200004],[17.307953321000124,69.47711823100018],[17.303233269000117,69.48224518400008],[17.372731967000046,69.47662995000009],[17.392100457000083,69.48224518400008],[17.36817467500009,69.49079010600012],[17.326670769000113,69.51772695500007],[17.303233269000117,69.52326080900009],[17.317149285000113,69.53497955900009],[17.343272332000083,69.537543036],[17.371755405000073,69.53388092700004],[17.404795769000117,69.52265045800014],[17.42090905000009,69.51951732000008],[17.450368686000076,69.51703522300014],[17.461436394000117,69.51373932500012],[17.478037957000083,69.49921295800006],[17.48853600400014,69.49591705900004],[17.51197350400011,69.49437083499998],[17.530935092000046,69.49013906500006],[17.58301842500009,69.467962958],[17.601328972000143,69.46369049700009],[17.645274285000085,69.46181875200004],[17.645274285000085,69.46865469000012],[17.616465691000144,69.47606028900013],[17.602875196000095,69.4821231140001],[17.59066816500012,69.48969147300006],[17.58472741000008,69.49713776200007],[17.571625196000127,69.51874420800004],[17.56641686300011,69.52326080900009],[17.495127800000116,69.54059479400009],[17.474782748000052,69.55296458500011],[17.468516472000086,69.55988190300003],[17.460215691000116,69.5716820330001],[17.469004754000082,69.57925039300015],[17.473643425000088,69.58661530200014],[17.473480665000125,69.59345123900006],[17.467621290000096,69.59955475500006],[17.516856316000087,69.59699127800003],[17.553965691000116,69.57485586100015],[17.617930535000113,69.51703522300014],[17.632090691000116,69.512844143],[17.65788821700005,69.50849030200011],[17.68262780000012,69.50926341400005],[17.693614129000082,69.52016836100002],[17.68921959700012,69.52968984600001],[17.670095248000052,69.53196849199998],[17.66578209700012,69.54059479400009],[17.664724155000073,69.55076732000005],[17.659841342000107,69.56924062700006],[17.658946160000113,69.57786692900008],[17.656993035000056,69.584662177],[17.653656446000127,69.58958567900005],[17.6530054050001,69.59414297100001],[17.658946160000113,69.59955475500006],[17.673838738000057,69.60346100500014],[17.68775475400014,69.59951406500006],[17.699229363000086,69.591986395],[17.707367384000094,69.58535390800013],[17.73568769600007,69.5517031920001]]],[[[18.8416447270001,69.8779971370001],[18.858164910000085,69.86587148600002],[18.849131707000083,69.86147695500013],[18.844493035000138,69.85691966399999],[18.83765709700012,69.84540436400005],[18.859141472000147,69.84438711100007],[18.898448113000143,69.84808991100012],[18.986013217000107,69.83380768400004],[18.99903405000009,69.82859935100005],[19.01970462300011,69.81415436400009],[19.044200066000116,69.80215078300016],[19.060801629000082,69.78705475500006],[19.057383660000085,69.76341380400011],[19.03345787900011,69.74371979400009],[18.969899936000047,69.73346588700015],[18.914561394000117,69.69904205900004],[18.877289259000065,69.69220612200012],[18.838552280000044,69.68939850500006],[18.80347741000014,69.68154531500006],[18.794118686000104,69.67560455900006],[18.78272545700014,69.66567617400013],[18.773203972000143,69.65509674700009],[18.769297722000147,69.64671458500013],[18.777028842000078,69.63544342700014],[18.793304884000094,69.63165924700003],[18.81226647200012,69.62938060100005],[18.827810092000107,69.62287018400015],[18.836436394000113,69.60431549700014],[18.822927280000044,69.5907250020001],[18.769297722000147,69.5716820330001],[18.731944207000083,69.56533437700007],[18.62598717500012,69.57786692900008],[18.614024285000085,69.57477448100018],[18.57960045700014,69.56110260600006],[18.560394727000098,69.55805084800015],[18.485606316000116,69.55857982000013],[18.26197350400014,69.53058502800012],[18.194021030000073,69.5307070980001],[18.168711785000138,69.54043203300013],[18.1282658210001,69.56492747600004],[18.10523522200012,69.5716820330001],[18.04786217500012,69.57200755400011],[18.02084394600007,69.57664622600005],[17.995371941000144,69.59210846600017],[18.005544467000107,69.6006533870001],[18.02613366000014,69.61420319200006],[18.037445509000122,69.61945221600014],[18.034353061000047,69.62323639500006],[18.02947024800008,69.63312409100008],[18.040700717000078,69.63226959800006],[18.05014082100007,69.63051992400007],[18.069590691000087,69.6244570980001],[18.080902540000068,69.62274811400009],[18.090993686000047,69.62494538000009],[18.111989780000073,69.63312409100008],[18.135020379000135,69.63694896],[18.23682701900009,69.62929922100007],[18.26189212300008,69.62164948100002],[18.26905358200011,69.61737702000012],[18.28272545700014,69.60578034100011],[18.27906334700009,69.6045596370001],[18.2760522800001,69.59967682500003],[18.278086785000113,69.59442780200014],[18.29021243600002,69.59210846600017],[18.297373894000145,69.595404364],[18.31348717500012,69.60952383000011],[18.324229363000143,69.61261627800002],[18.322276238000114,69.618353583],[18.34351647200009,69.61884186400009],[18.354665561000104,69.62287018400015],[18.364512566000116,69.62824127800012],[18.389170769000117,69.63458893400004],[18.400075717000107,69.64057038000006],[18.324229363000143,69.63312409100008],[18.3045353520001,69.63426341400009],[18.291026238000143,69.63898346600003],[18.18653405000012,69.70880768400013],[18.214366082000083,69.71417877800003],[18.316905144000142,69.70880768400013],[18.31072024800008,69.70880768400013],[18.35320071700005,69.704820054],[18.478526238000143,69.70880768400013],[18.61085045700011,69.69281647300006],[18.632823113000143,69.70197174700014],[18.593923373000052,69.71092357],[18.389170769000117,69.719916083],[18.351817254000082,69.72992584800006],[18.34473717500009,69.74982330900015],[18.32691491000011,69.76544830900015],[18.334727410000113,69.78095123900006],[18.356781446000127,69.79287344],[18.38233483200011,69.79759349200009],[18.39486738400009,69.79608795800006],[18.403086785000113,69.79197825700011],[18.419932488000114,69.78050364800008],[18.436534050000148,69.77631256700015],[18.46648196700005,69.78001536699998],[18.48194420700014,69.77708567900005],[18.48609459700009,69.76898834800012],[18.48194420700014,69.75885651200016],[18.4830835300001,69.7509626320001],[18.502452019000117,69.74982330900015],[18.51368248800011,69.75409577000009],[18.52100670700011,69.76215241100012],[18.533213738000086,69.78050364800008],[18.55689537900011,69.7963727890001],[18.585134311000076,69.80329010600009],[18.653168165000125,69.80438873900015],[18.641286655000073,69.75560130400014],[18.663259311000104,69.71295807500009],[18.707367384000094,69.68683502800015],[18.76246178500014,69.68773021000014],[18.742198113000114,69.69456614800005],[18.736827019000145,69.70600006700003],[18.740896030000044,69.72028229400011],[18.756683790000068,69.751898505],[18.789805535000113,69.783880927],[18.774424675000148,69.79559967700008],[18.6886499360001,69.83551666900006],[18.674082879000082,69.84715403900005],[18.666840040000068,69.85968659100014],[18.678884311000076,69.88605377800006],[18.717946811000047,69.88165924700014],[18.76384524800011,69.869818427],[18.796641472000115,69.873277085],[18.78296959700009,69.87954336100013],[18.80152428500008,69.88739655200013],[18.822032097000147,69.88605377800006],[18.8416447270001,69.8779971370001]]],[[[20.660899285000085,69.80337148600006],[20.60621178500014,69.79376862200009],[20.553965691000144,69.80048248900015],[20.532481316000116,69.81232330900009],[20.526703321000127,69.82111237200017],[20.522634311000076,69.83942291900003],[20.529307488000143,69.85419342700011],[20.54900149800008,69.87335846600008],[20.555023634000094,69.88174062700011],[20.558116082000083,69.890082098],[20.56275475400011,69.89598216400005],[20.576914910000113,69.90119049700006],[20.598887566000144,69.90460846600014],[20.71314537900011,69.909613348],[20.722015821000127,69.90412018400015],[20.722504102000126,69.8975283870001],[20.71656334700012,69.89423248900006],[20.71314537900011,69.89321523600007],[20.70289147200006,69.88882070500001],[20.698252800000148,69.8840192730001],[20.696625196000127,69.87787506700012],[20.7044376960001,69.86102936400012],[20.72071373800014,69.83710358300009],[20.706716342000075,69.81728750200016],[20.660899285000085,69.80337148600006]]],[[[30.023285352000098,69.83673737200014],[30.02116946700019,69.83234284100017],[30.09986412900011,69.83445872599998],[30.107432488000228,69.82859935100005],[30.08765709700012,69.81708405200003],[30.05713951900006,69.80963776200004],[29.976247592000192,69.80027903900002],[29.928884311000072,69.78192780200014],[29.90503991000017,69.77708567900005],[29.88428795700005,69.78143952000006],[29.86475670700011,69.790716864],[29.846527540000096,69.79657623900006],[29.830088738000228,69.790757554],[29.84603925900015,69.77973053600006],[29.832855665000096,69.76927317900007],[29.795746290000153,69.75600820500013],[29.71322675900015,69.76341380400011],[29.73536217500006,69.79018789300012],[29.801280144000117,69.82070547100007],[29.830088738000228,69.83856842700014],[29.808360222000115,69.86587148600002],[29.815928582000108,69.89105866099999],[29.842458530000073,69.90892161700005],[29.87720787900011,69.91425202000012],[29.97103925900009,69.90204498900015],[29.994476759000094,69.89378489800005],[29.99854576900023,69.88812897300006],[29.996592644000117,69.87433502800015],[30.00074303500011,69.86587148600002],[30.005544467000135,69.86286041900011],[30.02857506600017,69.85285065300003],[30.026621941000116,69.84829336100007],[30.023285352000098,69.83673737200014]]],[[[21.708018425000144,69.93183014500015],[21.69581139400009,69.92792389500006],[21.68588300900009,69.93024323100012],[21.677907748000024,69.93439362200014],[21.67172285200007,69.94041575700005],[21.66797936300011,69.94839101800004],[21.685069207000083,69.95311107000013],[21.701996290000068,69.95477936400015],[21.719086134000094,69.95319245000012],[21.736175977000126,69.94839101800004],[21.729746941000116,69.93846263200011],[21.719899936000104,69.93414948100012],[21.708018425000144,69.93183014500015]]],[[[19.677093946000067,69.855210679],[19.483653191000116,69.838324286],[19.434255405000073,69.840521552],[19.4427189460001,69.85846588700004],[19.509938998000052,69.89374420800006],[19.53296959700012,69.91937897300012],[19.546885613000086,69.92548248900012],[19.595062696000042,69.93439362200014],[19.692637566000055,69.96360911700002],[19.726247592000078,69.979193427],[19.749685092000078,69.99510325700011],[19.774261915000068,70.00482819200006],[19.80030358200014,70.00433991100006],[19.813324415000125,70.00259023600007],[19.83423912900011,69.99481842700008],[19.856455925000148,69.973130601],[19.834727410000085,69.94965241100012],[19.7923283210001,69.92519765800007],[19.75806725400011,69.89179108300011],[19.7205509770001,69.8646914730001],[19.677093946000067,69.855210679]]],[[[19.99586022200009,70.016750393],[19.94996178500011,70.0097110050001],[19.916351759000094,70.01146067900011],[19.908213738000086,70.01361725500011],[19.900157097000143,70.016750393],[19.9197697270001,70.02423737200014],[19.9479272800001,70.02680084800006],[19.976084832000083,70.02435944200012],[19.99586022200009,70.016750393]]],[[[20.93531334700009,70.0094261740001],[20.95883222700013,70.00307851800005],[21.09937584700012,70.01048411700005],[20.980723504000082,69.98163483300011],[20.975352410000113,69.96271393400009],[20.94044030000009,69.94696686400015],[20.891937696000124,69.93797435100014],[20.842621290000125,69.93781159100017],[20.80518639400009,69.94839101800004],[20.775563998000052,69.97211334800011],[20.761729363000143,69.98761627800003],[20.760508660000138,69.99966054900015],[20.78353925900009,70.02423737200014],[20.802012566000116,70.03750234600001],[20.824392123000052,70.04295482000013],[20.859873894000145,70.0440127620001],[20.88624108200014,70.037583726],[20.93531334700009,70.0094261740001]]],[[[21.02003014400009,70.02814362200014],[20.95533287900014,70.024115302],[20.96631920700011,70.03497955900018],[20.991872592000107,70.05145905200006],[21.020518425000148,70.06354401200015],[21.041026238000114,70.06134674700017],[21.04664147200012,70.03912995000002],[21.02003014400009,70.02814362200014]]],[[[19.22339928500014,70.07367584800012],[19.234873894000117,70.065130927],[19.25586998800014,70.067328192],[19.276703321000127,70.07807038000003],[19.29908287900014,70.08584219],[19.324880405000073,70.07880280200014],[19.308441602000073,70.06582265800013],[19.294200066000087,70.04755280200008],[19.292328321000095,70.03119538000004],[19.33969160200013,70.01772695500007],[19.39258873800011,69.99188873900006],[19.420420769000145,69.98940664300012],[19.418630405000073,70.0136579450001],[19.43848717500009,70.03339264500015],[19.468109571000127,70.046616929],[19.53565514400009,70.05731842700011],[19.55689537900008,70.05707428600006],[19.574961785000113,70.04775625200004],[19.582530144000145,70.03384023600013],[19.578135613000057,70.02358633000001],[19.571299675000148,70.01422760600016],[19.571299675000148,70.00307851800005],[19.58228600400011,69.99323151200004],[19.594493035000085,69.99795156500015],[19.607106967000078,70.00873444200005],[19.619151238000082,70.016750393],[19.635264519000145,70.02073802299999],[19.65259850400014,70.02142975500011],[19.66944420700014,70.01732005400007],[19.684825066000087,70.006781317],[19.683116082000083,69.98578522300006],[19.64747155000012,69.96995677300013],[19.540212436000047,69.95160553600009],[19.53288821700005,69.94627513200011],[19.523448113000114,69.93475983300009],[19.521494988000086,69.93048737200014],[19.519379102000073,69.91962311400009],[19.51661217500009,69.91425202000012],[19.508636915000064,69.90778229400003],[19.492198113000143,69.90176015800002],[19.485606316000087,69.89720286700008],[19.473317905000044,69.88666413],[19.43409264400009,69.86957428600006],[19.42286217500009,69.8612328150001],[19.41732832100007,69.85301341399999],[19.413340691000116,69.84544505400005],[19.406748894000117,69.83856842700014],[19.37476647200012,69.82330963700015],[19.333994988000057,69.81264883000013],[19.121592644000117,69.78782786699999],[19.088389519000117,69.80101146000011],[19.05567467500009,69.83136627800008],[19.043630405000073,69.83856842700014],[18.843028191000087,69.90330638200005],[18.7643335300001,69.91494375200016],[18.733409050000144,69.93134186400005],[18.728851759000122,69.94782135600013],[18.769297722000147,69.95526764500012],[18.865244988000143,69.94220612200014],[18.883636915000096,69.94537995000012],[18.914317254000082,69.96206289300015],[18.93376712300008,69.96954987200003],[18.875661655000044,69.973130601],[18.84473717500009,69.98212311400003],[18.83139082100007,69.99966054900015],[18.844899936000047,70.0150414080001],[18.875824415000093,70.02423737200014],[18.93376712300008,70.03034088700015],[18.985606316000087,70.024115302],[18.99830162900014,70.02619049700012],[19.01783287900014,70.03514232000005],[19.030039910000113,70.03717682500017],[19.043467644000085,70.0340843770001],[19.050791863000114,70.02716705900009],[19.05486087300008,70.02016836100002],[19.057383660000085,70.016750393],[19.07390384200005,70.01626211100002],[19.11939537900014,70.03034088700015],[19.102061394000145,70.04157135600013],[19.082530144000145,70.050482489],[19.067556186000047,70.06146881700015],[19.06421959700009,70.07880280200014],[19.085297071000127,70.07225169500005],[19.102061394000145,70.07046133000007],[19.11866295700011,70.07273997600005],[19.208181186000076,70.09857819200006],[19.22673587300008,70.09357330900012],[19.226247592000107,70.084214585],[19.22339928500014,70.07367584800012]]],[[[18.79908287900014,70.06565989799999],[18.806488477000126,70.05931224200005],[18.818369988000086,70.06439850500009],[18.828461134000065,70.07314687700013],[18.889821811000076,70.10614655200011],[18.907399936000104,70.10541413000007],[18.920664910000113,70.09739817900014],[18.969086134000122,70.08429596600017],[18.97559655000012,70.07363515800013],[18.95972741000008,70.0639102230001],[18.937754754000082,70.05341217700011],[18.910492384000065,70.04555898600013],[18.83668053500014,70.03839752800009],[18.76514733200011,70.01919179900013],[18.730316602000073,69.99994538],[18.718760613000143,69.99070872600011],[18.713226759000122,69.98916250200006],[18.707774285000085,69.986558335],[18.70167076900009,69.98468659100003],[18.68783613400009,69.98822663],[18.67009524800011,69.99900950700003],[18.670420769000117,70.01215241100006],[18.687510613000086,70.02216217700006],[18.689952019000117,70.02643463700014],[18.66675866000008,70.02757396],[18.660166863000114,70.033596096],[18.65723717500009,70.04832591399999],[18.67530358200011,70.06427643400009],[18.701996290000125,70.07656484600015],[18.71241295700011,70.08356354400003],[18.708262566000087,70.08649323100015],[18.710215691000116,70.0944278020001],[18.703868035000085,70.1022809920001],[18.702403191000116,70.11139557500009],[18.721364780000044,70.11603424700003],[18.753672722000147,70.11196523600016],[18.781260613000086,70.10199616100006],[18.795746290000125,70.084214585],[18.79908287900014,70.06565989799999]]],[[[20.894216342000107,70.07957591400007],[20.861664259000122,70.06899648600002],[20.825531446000095,70.07306549700013],[20.80811608200011,70.08055247600012],[20.798838738000057,70.09332916900017],[20.792979363000114,70.11904531500012],[20.807465040000068,70.14081452000009],[20.831797722000147,70.15094635600003],[20.85694420700011,70.14492422100012],[20.914805535000113,70.10789622600011],[20.915212436000047,70.09552643400015],[20.894216342000107,70.07957591400007]]],[[[19.55030358200011,70.09491608300003],[19.538747592000078,70.09369538],[19.490570509000122,70.09393952000012],[19.41732832100007,70.10423411700005],[19.358653191000144,70.11310455900009],[19.34310957100007,70.11839427299999],[19.334971550000148,70.12791575700008],[19.340586785000138,70.14008209800006],[19.366547071000127,70.15420156500008],[19.407969597000147,70.16205475500009],[19.4466251960001,70.155422268],[19.5520939460001,70.12091705900009],[19.57325280000009,70.11172109600004],[19.569021030000073,70.10138580900012],[19.55030358200011,70.09491608300003]]],[[[20.77100670700011,70.11554596600003],[20.774180535000085,70.10952383000013],[20.789398634000065,70.09373607],[20.791514519000145,70.09243398600007],[20.795176629000107,70.07664622600014],[20.794200066000144,70.0678164730001],[20.78679446700005,70.06256745000009],[20.77100670700011,70.05760325700005],[20.747325066000087,70.05597565300003],[20.724864129000082,70.06110260600003],[20.7049259770001,70.06793854400014],[20.68848717500009,70.07135651200015],[20.6751408210001,70.06826406500006],[20.660411004000107,70.05459219000012],[20.647227410000138,70.05145905200006],[20.636241082000083,70.05027903900005],[20.614512566000112,70.04515208500011],[20.60254967500009,70.0440127620001],[20.58814537900011,70.04596588700004],[20.588633660000113,70.0509300800001],[20.595225457000083,70.057766018],[20.59913170700008,70.065130927],[20.60254967500009,70.086371161],[20.60108483200014,70.09715403899999],[20.592295769000145,70.10602448100003],[20.576914910000113,70.10956452000012],[20.56470787900014,70.10472239800005],[20.559580925000116,70.09373607],[20.56495201900009,70.07880280200014],[20.51783287900011,70.07880280200014],[20.5208439460001,70.06232330900015],[20.506683790000068,70.05833567900008],[20.468760613000143,70.065130927],[20.45093834700009,70.06476471600008],[20.431651238000143,70.06806061400012],[20.413828972000147,70.07493724200013],[20.399912957000083,70.08559804900007],[20.391286655000073,70.09662506700002],[20.389903191000116,70.102687893],[20.392100457000083,70.10960521000011],[20.393565300000148,70.123480536],[20.399668816000144,70.15037669499999],[20.415700717000046,70.17153554900007],[20.43775475400014,70.18667226800007],[20.462575717000078,70.19546133000013],[20.525401238000143,70.20294830900009],[20.544606967000107,70.20848216400013],[20.545176629000082,70.21149323100003],[20.54590905000009,70.21792226800012],[20.547699415000096,70.22479889500015],[20.551280144000145,70.22955963700007],[20.561371290000125,70.23322174700009],[20.587657097000147,70.23615143400004],[20.73389733200008,70.2367210960001],[20.777191602000073,70.22955963700007],[20.80884850400014,70.22036367400007],[20.824392123000052,70.20986562700001],[20.824229363000086,70.19456614800005],[20.808278842000078,70.17121002800015],[20.789317254000082,70.15314362200003],[20.78077233200014,70.142482815],[20.775563998000052,70.12457916900014],[20.772471550000148,70.120103257],[20.77100670700011,70.11554596600003]]],[[[19.205902540000096,70.25429922100012],[19.211436394000117,70.25055573100008],[19.230479363000114,70.23436107000005],[19.2296655610001,70.22085195500006],[19.227712436000076,70.212062893],[19.24236087300008,70.200873114],[19.2487085300001,70.19375234600012],[19.252207879000082,70.18667226800007],[19.25017337300008,70.17413971600017],[19.2296655610001,70.15985748900007],[19.225433790000096,70.15387604400014],[19.225433790000096,70.14915599200005],[19.226817254000082,70.14443594000015],[19.229502800000144,70.1398786480001],[19.226817254000082,70.13495514500015],[19.174164259000065,70.11513906500012],[19.140635613000114,70.11078522300012],[19.10287519600007,70.11688873900012],[19.03142337300008,70.14081452000009],[19.009450717000078,70.14590078300002],[18.99586022200012,70.152085679],[19.001719597000147,70.15835195500013],[19.045664910000085,70.16913483300011],[19.064463738000143,70.17047760600003],[19.07634524800008,70.166693427],[19.087412957000137,70.15745677300013],[19.09864342500012,70.1579043640001],[19.09791100400011,70.18585846600014],[19.114105665000068,70.19330475500014],[19.137380405000073,70.19721100500014],[19.138031446000127,70.20172760600009],[19.118825717000078,70.20880768400015],[19.11198978000004,70.21625397300012],[19.1139429050001,70.22060781500011],[19.11036217500012,70.22443268400004],[19.096364780000073,70.22992584800006],[19.089203321000124,70.23358795800011],[19.091481967000078,70.23794179900001],[19.10515384200002,70.24115631700006],[19.13502037900011,70.24091217700011],[19.14551842500009,70.23940664300007],[19.152028842000075,70.23745351800012],[19.155121290000068,70.23920319200012],[19.155772332000108,70.24290599200008],[19.159841342000078,70.24835846600008],[19.168304884000122,70.25486888199998],[19.177419467000107,70.25584544500008],[19.18490644600007,70.25340403900013],[19.19157962300011,70.25433991100012],[19.197276238000114,70.257025458],[19.205902540000096,70.25429922100012]]],[[[19.701508009000122,70.25006745000009],[19.715179884000065,70.23875560100011],[19.733246290000068,70.22992584800006],[19.7526147800001,70.22418854400009],[19.770192905000016,70.22211334800006],[19.79053795700011,70.21059804900013],[19.801524285000085,70.18740469],[19.8156030610001,70.16974518400009],[19.844981316000116,70.1749535180001],[19.853037957000137,70.18414948100015],[19.86597741000014,70.21043528899999],[19.872894727000045,70.21588776200012],[19.891368035000085,70.213853257],[19.941172722000147,70.19546133000013],[19.930511915000125,70.17670319200009],[19.938161655000044,70.16376373900009],[19.957530144000145,70.15460846600008],[19.982188347000147,70.14704010600006],[20.11158287900011,70.12018463700014],[20.15406334700009,70.1203473980001],[20.15406334700009,70.11286041900014],[20.054209832000083,70.10150788],[20.02369225400014,70.09243398600007],[20.036387566000116,70.08307526200007],[20.031016472000147,70.07538483300011],[20.016856316000144,70.06928131700015],[19.978200717000078,70.06012604400014],[19.819509311000104,70.06024811400012],[19.77613366000014,70.067328192],[19.749359571000127,70.08559804900007],[19.74756920700014,70.09345123900015],[19.749359571000127,70.123480536],[19.74756920700014,70.13593170800011],[19.74244225400014,70.14069245000012],[19.735036655000073,70.14362213700004],[19.725840691000087,70.15045807500015],[19.701508009000122,70.18121979400003],[19.692149285000085,70.18862539300012],[19.673513217000107,70.19855377800003],[19.664073113000082,70.20538971600014],[19.63306725400014,70.21930573100003],[19.559336785000113,70.23118724199999],[19.537119988000143,70.25006745000009],[19.549327019000117,70.25653717700003],[19.56316165500004,70.25633372600005],[19.59164472700013,70.25006745000009],[19.59164472700013,70.25690338700012],[19.58838951900009,70.26837799700014],[19.615570509000094,70.27924225500004],[19.677744988000114,70.29043203300016],[19.689707879000135,70.28534577000012],[19.69507897200009,70.27362702000015],[19.69776451900009,70.26019928600006],[19.701508009000122,70.25006745000009]]],[[[21.730967644000145,70.264837958],[21.714854363000082,70.25999583500003],[21.703135613000086,70.26178620000009],[21.68962649800011,70.27049388200008],[21.676931186000047,70.28481679900007],[21.678884311000104,70.30735911700005],[21.6888126960001,70.33543528900005],[21.68913821700005,70.35455963700012],[21.68458092500009,70.36383698100018],[21.688161655000073,70.36920807500003],[21.69304446700002,70.37030670800009],[21.698008660000085,70.37107982000002],[21.70337975400014,70.376654364],[21.70362389400009,70.38637929900015],[21.71225019600007,70.38922760600009],[21.72950280000009,70.38271719],[21.738129102000098,70.37824127800003],[21.792735222000143,70.35805898600002],[21.79916425900006,70.34711334800015],[21.793711785000113,70.32343170800011],[21.764659050000148,70.286851304],[21.749034050000148,70.27440013200007],[21.730967644000145,70.264837958]]],[[[22.694509311000076,70.38556549700014],[22.69434655000009,70.36294179900007],[22.696462436000104,70.35309479400014],[22.714366082000083,70.3369815120001],[22.729746941000116,70.34463125200001],[22.737152540000096,70.36505768400009],[22.730479363000143,70.38719310100008],[22.756358269000142,70.39496491100006],[22.780528191000144,70.38621653900002],[22.79859459700009,70.36684804900007],[22.80567467500012,70.34223053600009],[22.827972852000073,70.33372630400005],[22.95639082100007,70.32514069200012],[22.946462436000047,70.32298411700013],[22.937347852000073,70.31879303599999],[22.92920983200014,70.31264883000001],[22.922373894000117,70.30467357000008],[22.94304446700005,70.300238348],[22.965993686000047,70.29783763200005],[22.98853600400011,70.29295482],[23.008311394000145,70.2807477890001],[23.01905358200014,70.26496002800015],[23.0162866550001,70.25429922100012],[23.00147545700011,70.249172268],[22.73170006600014,70.25690338700012],[22.445160352000073,70.29144928600012],[22.381358269000117,70.32575104400009],[22.3737085300001,70.33197663000006],[22.378672722000143,70.34699127800016],[22.397634311000076,70.35781484600007],[22.421071811000047,70.36176178600006],[22.439219597000147,70.35618724200005],[22.453379754000082,70.345648505],[22.469574415000125,70.33730703300002],[22.504649285000113,70.32514069200012],[22.47535241000008,70.34772370000009],[22.469899936000047,70.35309479400014],[22.467946811000104,70.36823151200014],[22.47364342500009,70.38027578300007],[22.485118035000113,70.384466864],[22.52979576900009,70.364203192],[22.575205925000063,70.38202545800004],[22.600271030000073,70.36676666900007],[22.60572350400011,70.38007233300011],[22.618907097000147,70.38703034100011],[22.632985873000106,70.38540273600007],[22.641123894000117,70.37299225500004],[22.648122592000107,70.37299225500004],[22.650889519000145,70.38629791900017],[22.66089928500014,70.39557526200004],[22.674652540000068,70.39887116100006],[22.68897545700014,70.39411041900017],[22.694509311000076,70.38556549700014]]],[[[23.50147545700011,70.61660390800007],[23.518809441000087,70.61054108300009],[23.556651238000143,70.61888255400005],[23.573496941000144,70.61318594000006],[23.559825066000116,70.60635000200016],[23.568207227000073,70.59772370000015],[23.601328972000086,70.57904694200006],[23.594493035000085,70.56574127800015],[23.5865991550001,70.55414459800011],[23.580739780000073,70.54295482000009],[23.580332879000053,70.53123607000013],[23.59164472700013,70.51642487200014],[23.611094597000147,70.51215241100006],[23.634043816000112,70.51044342700006],[23.656016472000147,70.5033226580001],[23.649180535000113,70.50031159100008],[23.635508660000085,70.49241771000011],[23.628103061000104,70.48965078300014],[23.635996941000084,70.4833438170001],[23.653330925000063,70.473130601],[23.66228274800011,70.46979401200015],[23.6341251960001,70.43748607000013],[23.59253991000014,70.41526927300008],[23.408376498000052,70.35309479400014],[23.319021030000044,70.34210846600011],[23.292246941000116,70.33197663000006],[23.313649936000076,70.33274974200008],[23.339040561000104,70.33087799700009],[23.36312910200013,70.32615794499999],[23.38160241000014,70.3183454450001],[23.21631920700011,70.28278229400003],[23.155039910000085,70.27732981999998],[23.104665561000047,70.28327057500003],[23.082041863000086,70.30166250200007],[23.08741295700014,70.32835521],[23.114105665000064,70.35932038000011],[23.126963738000086,70.37079498900006],[23.135427280000044,70.38532135600009],[23.138194207000083,70.40070221600014],[23.134613477000098,70.41453685100005],[23.075043165000096,70.36005280200006],[23.038910352000073,70.34096914300007],[23.008311394000145,70.34943268400009],[22.995371941000144,70.3571638040001],[22.980235222000147,70.35883209800012],[22.964528842000078,70.358099677],[22.949554884000122,70.35932038000011],[22.939138217000046,70.36334870000009],[22.87134850400014,70.40228913000009],[22.854014519000145,70.40770091400013],[22.880869988000143,70.41412995000003],[22.940114780000044,70.40704987200017],[22.96387780000012,70.42137278900007],[22.919688347000143,70.43089427300005],[22.90870201900009,70.435003973],[22.895355665000096,70.44611237200003],[22.89722741000014,70.45099518400009],[22.922373894000117,70.45612213700011],[22.936534050000148,70.46100495000009],[22.943695509000094,70.46238841400007],[22.952972852000126,70.46295807500003],[22.9583439460001,70.46503327000006],[22.96143639400009,70.46967194200009],[22.96387780000012,70.47662995000017],[22.972422722000147,70.47724030200011],[22.99122155000009,70.47597890800002],[22.99805748800011,70.47662995000017],[23.00367272200012,70.48065827000012],[23.01303144600004,70.49315013200005],[23.018565300000148,70.49705638200005],[23.124278191000116,70.5205752620001],[23.141449415000125,70.514146226],[23.1510522800001,70.49835846600014],[23.17359459700009,70.50275299700003],[23.20069420700011,70.51373932500009],[23.223399285000056,70.51764557500017],[23.223399285000056,70.52383047100015],[23.200938347000147,70.52899811400006],[23.18100019600007,70.53851959800015],[23.175547722000147,70.54759349200005],[23.196299675000116,70.55170319199999],[23.21436608200014,70.55044179900008],[23.239593946000127,70.5456403670001],[23.26205488400012,70.53611888200003],[23.271739129000082,70.52069733300009],[23.26734459700009,70.50608958500005],[23.2604272800001,70.49184804900015],[23.260915561000076,70.48090241100009],[23.278575066000087,70.47662995000017],[23.29127037900014,70.483832098],[23.31080162900014,70.51874420800011],[23.32642662900011,70.53123607000013],[23.304698113000143,70.53510163000014],[23.29835045700011,70.54315827000006],[23.307627800000063,70.55044179900008],[23.333262566000144,70.55170319199999],[23.35328209700012,70.54682038000011],[23.386973504000107,70.53290436400015],[23.408376498000052,70.53123607000013],[23.393809441000116,70.54205963700004],[23.387868686000104,70.54486725500009],[23.412608269000085,70.56171295800009],[23.503754102000073,70.54498932500013],[23.53931725400014,70.54486725500009],[23.515472852000073,70.56000397300006],[23.489268425000116,70.57086823100015],[23.436289910000085,70.58527252800003],[23.44166100400014,70.59027741100006],[23.451670769000145,70.60150788000009],[23.457367384000122,70.60635000200016],[23.39820397200012,70.61334870000003],[23.390961134000094,70.61798737200014],[23.464203321000127,70.62494538000006],[23.484548373000024,70.624660549],[23.50147545700011,70.61660390800007]]],[[[23.819183790000096,70.709377346],[23.831879102000045,70.70335521],[23.84359785200013,70.70404694200013],[23.855153842000078,70.70734284100008],[23.867686394000145,70.709377346],[23.963877800000088,70.709377346],[23.977793816000087,70.70693594000006],[24.032725457000083,70.68891022300014],[24.043467644000085,70.68349844],[24.05225670700014,70.67719147300005],[24.059825066000087,70.66974518400018],[24.066905144000142,70.66095612200012],[24.06519616000014,70.6459414730001],[24.083262566000087,70.63597239799999],[24.12842858200011,70.62002187700008],[24.10157311300014,70.58869049700003],[24.012217644000117,70.56777578300007],[23.928965691000084,70.52326080900018],[23.867930535000113,70.512396552],[23.80420983200014,70.51333242400007],[23.750987175000063,70.52383047100015],[23.73780358200011,70.53681061400015],[23.709808790000096,70.55825429900007],[23.697032097000147,70.57160065300009],[23.69499759200002,70.57819245000015],[23.694021030000044,70.587591864],[23.6920679050001,70.59589264500006],[23.686778191000116,70.59951406500012],[23.641774936000047,70.59951406500012],[23.665700717000107,70.61298248900012],[23.680674675000148,70.62494538000006],[23.6795353520001,70.63629791900001],[23.656016472000147,70.64793528900013],[23.676280144000145,70.65424225500006],[23.684336785000085,70.65892161699999],[23.690196160000138,70.66779205900004],[23.64283287900011,70.685207424],[23.635508660000085,70.69204336100002],[23.640147332000108,70.70221588700014],[23.651133660000085,70.70990631700009],[23.675954623000052,70.72304922100012],[23.69776451900009,70.74339427300013],[23.70923912900014,70.74860260600003],[23.815684441000084,70.75116608300014],[23.84034264400009,70.7435570330001],[23.83033287900011,70.73639557500015],[23.828379754000053,70.73029205900015],[23.83423912900011,70.72565338700004],[23.84717858200011,70.72304922100012],[23.840179884000122,70.716701565],[23.83497155000012,70.71279531500004],[23.828786655000073,70.71063873900012],[23.819183790000096,70.709377346]]],[[[23.396494988000114,70.84259674700017],[23.434825066000144,70.82880280200008],[23.44312584700012,70.82884349200008],[23.446299675000088,70.81342194200012],[23.454925977000073,70.80483633000001],[23.467946811000072,70.80072663000004],[23.484141472000115,70.79877350500011],[23.460459832000108,70.79083893400015],[23.41236412900014,70.79189687700001],[23.387868686000104,70.78449127800002],[23.402679884000065,70.77777741100009],[23.42066491000011,70.77387116100009],[23.457367384000122,70.77081940300009],[23.4466251960001,70.76752350500006],[23.42530358200014,70.76654694200009],[23.415782097000143,70.76398346600017],[23.410980665000068,70.75922272300006],[23.406748894000117,70.74730052300012],[23.40211022200012,70.7435570330001],[23.385264519000117,70.74335358300014],[23.348968946000095,70.753119208],[23.333262566000144,70.75039297100001],[23.32683353000004,70.74192942900008],[23.324554884000065,70.7193871110001],[23.319590691000112,70.709377346],[23.314626498000052,70.70868561400006],[23.306813998000052,70.7101911480001],[23.2975366550001,70.71039459800006],[23.281586134000094,70.702093817],[23.2513126960001,70.69513580900009],[23.266368035000113,70.6843122420001],[23.271739129000082,70.68146393400015],[23.18238366000014,70.68891022300014],[23.166677280000098,70.69452545800014],[23.158539259000065,70.69415924700003],[23.15308678500014,70.67816803600012],[23.147797071000067,70.67316315300009],[23.141286655000073,70.66974518400018],[23.134613477000098,70.66779205900004],[23.14283287900011,70.65900299700014],[23.155039910000085,70.65582916900009],[23.18238366000014,70.65412018400008],[23.169688347000086,70.64887116100003],[23.15186608200011,70.63226959800015],[23.141449415000125,70.62620677300005],[23.120371941000116,70.62400950700005],[23.078868035000113,70.62986888200011],[23.059418165000125,70.62620677300005],[23.114105665000064,70.61318594000006],[23.08887780000009,70.5862490910001],[23.055023634000122,70.59137604400003],[23.018321160000113,70.603949286],[22.984548373000052,70.59951406500012],[23.004730665000064,70.59613678600012],[23.008148634000094,70.58515045800006],[22.99781334700006,70.57282135600012],[22.976898634000122,70.56537506700012],[22.95264733200011,70.56647370000017],[22.905772332000083,70.57835521000011],[22.880869988000143,70.57904694200006],[22.880869988000143,70.57160065300009],[22.936045769000145,70.55853913000011],[22.925059441000116,70.54979075700014],[22.91382897200012,70.54376862200003],[22.901621941000116,70.539984442],[22.88819420700014,70.53807200700005],[22.87094160200013,70.53937409100014],[22.843760613000114,70.54930247600005],[22.833262566000144,70.55170319199999],[22.821625196000127,70.54734935100011],[22.79981530000009,70.52814362200014],[22.788584832000083,70.52383047100015],[22.772715691000144,70.52570221600003],[22.76514733200011,70.53107330900015],[22.766856316000116,70.53986237200003],[22.778330925000148,70.55170319199999],[22.689300977000073,70.56366608300011],[22.643809441000084,70.56415436400012],[22.63428795700011,70.55170319199999],[22.62680097700013,70.54486725500009],[22.635427280000044,70.53261953300002],[22.63160241000011,70.52631256700006],[22.621348504000082,70.524115302],[22.609873894000145,70.52383047100015],[22.60287519600007,70.525824286],[22.59546959700009,70.52895742400007],[22.589610222000147,70.52863190300003],[22.584808790000068,70.51471588700015],[22.579112175000148,70.50910065300015],[22.57203209700012,70.50495026200012],[22.566091342000078,70.5033226580001],[22.516774936000104,70.5278181010001],[22.489268425000148,70.53192780200008],[22.477305535000113,70.50702545800014],[22.468435092000078,70.49485911700003],[22.449229363000114,70.49762604400011],[22.430186394000117,70.50604889500005],[22.42212975400011,70.510728257],[22.407237175000144,70.51459381700009],[22.39869225400011,70.51398346600003],[22.3737085300001,70.5033226580001],[22.34229576900009,70.49921295800014],[22.308929884000094,70.5033633480001],[22.29281660200013,70.51447174700012],[22.312836134000094,70.53123607000013],[22.28565514400009,70.54157135600003],[22.268077019000145,70.52899811400006],[22.243337436000076,70.48965078300014],[22.22144616000014,70.48065827000012],[22.18653405000012,70.473130601],[22.154470248000052,70.47231679900007],[22.140879754000082,70.48285553600012],[22.151540561000104,70.49966054900013],[22.16089928500014,70.51137929900013],[22.18555748800014,70.53465403900005],[22.20289147200012,70.54409414300007],[22.245453321000095,70.55670807500003],[22.264414910000085,70.57160065300009],[22.256602410000113,70.57257721600017],[22.237071160000113,70.57904694200006],[22.310557488000114,70.60150788000009],[22.333343946000124,70.61318594000006],[22.099945509000065,70.60635000200016],[22.091644727000073,70.60419342700006],[22.077321811000104,70.59479401200004],[22.06861412900011,70.592718817],[22.040700717000078,70.59357330900008],[22.011241082000083,70.59951406500012],[22.025075717000078,70.61188385600015],[22.057383660000113,70.62449778900005],[22.07203209700012,70.63369375200004],[22.008799675000148,70.63349030200008],[21.97706139400009,70.63751862200002],[21.950368686000076,70.64793528900013],[21.98650149800011,70.66254303600014],[22.044200066000144,70.65985748900006],[22.195323113000086,70.63182200700005],[22.221527540000125,70.63190338700004],[22.243337436000076,70.64052969000012],[22.25033613400006,70.649400132],[22.251149936000072,70.65936920800009],[22.244476759000122,70.66836172100001],[22.229746941000116,70.67462799700014],[22.26587975400014,70.67499420800006],[22.32056725400011,70.66128164300012],[22.415212436000104,70.62620677300005],[22.415212436000104,70.63369375200004],[22.40186608200008,70.64740631700015],[22.383962436000047,70.67324453300007],[22.373871290000068,70.698187567],[22.38453209700009,70.709377346],[22.404958530000073,70.709418036],[22.414561394000145,70.70795319200012],[22.421153191000116,70.70294830900009],[22.432383660000113,70.69204336100002],[22.448578321000067,70.68252187700004],[22.47022545700008,70.67658112200009],[22.492686394000057,70.67572663],[22.51148522200012,70.68146393400015],[22.497894727000073,70.68935781500012],[22.494802280000073,70.69879791900014],[22.50147545700014,70.7080752620001],[22.517588738000114,70.71556224199999],[22.541026238000086,70.71747467700014],[22.567393425000088,70.71287669500002],[22.651540561000104,70.68768952000012],[22.656260613000114,70.68170807500012],[22.641123894000117,70.67121002800003],[22.604828321000124,70.66034577000006],[22.594981316000087,70.65253327000006],[22.606455925000148,70.64052969000012],[22.630869988000086,70.635931708],[22.651621941000087,70.64569733300014],[22.670420769000145,70.65786367400013],[22.68897545700014,70.66095612200012],[22.70289147200012,70.651516018],[22.707041863000143,70.63739655200004],[22.708262566000087,70.62230052300005],[22.71314537900014,70.60976797100007],[22.72486412900014,70.60358307500009],[22.732106967000078,70.61115143400004],[22.735850457000083,70.62490469000006],[22.736664259000094,70.63711172100012],[22.7478947270001,70.64740631700015],[22.77369225400014,70.65021393400009],[22.826182488000086,70.64793528900013],[22.807790561000047,70.6632347680001],[22.785166863000086,70.67462799700014],[22.792491082000083,70.69358958500005],[22.77784264400009,70.704291083],[22.753184441000087,70.71393463700015],[22.730479363000143,70.72988515800016],[22.724375847000147,70.73696523600002],[22.72022545700011,70.7435570330001],[22.72299238400006,70.74848053600006],[22.753916863000114,70.75177643400009],[22.80567467500012,70.76398346600017],[22.796885613000082,70.75364817900005],[22.792002800000088,70.75039297100001],[22.81080162900014,70.74433014500012],[22.851084832000108,70.74188873900007],[22.867198113000086,70.72988515800016],[22.854014519000145,70.72988515800016],[22.854014519000145,70.72304922100012],[22.8724064460001,70.72284577],[22.9056095710001,70.72768789300007],[22.923838738000086,70.72479889500012],[22.931488477000126,70.71662018400004],[22.921722852000073,70.70726146],[22.895030144000142,70.69513580900009],[22.917816602000073,70.68512604400003],[22.94361412900011,70.67035553600014],[22.96908613400012,70.66120026200015],[22.990733269000117,70.66779205900004],[22.976898634000122,70.68146393400015],[22.99756920700011,70.68789297100007],[23.019867384000065,70.69208405200011],[23.03272545700008,70.70136139500006],[23.025401238000086,70.72304922100012],[23.049571160000085,70.72247955900018],[23.09644616000014,70.7101911480001],[23.120941602000073,70.709377346],[23.11060631600006,70.71417877800009],[23.098806186000104,70.72333405200008],[23.093109571000127,70.73212311400015],[23.1014103520001,70.73602936400015],[23.1653751960001,70.73029205900015],[23.18238366000014,70.73602936400015],[23.1731876960001,70.74070872600005],[23.16431725400014,70.74286530200006],[23.144867384000122,70.7435570330001],[23.135427280000044,70.74551015800013],[23.13217207100007,70.74994538000011],[23.13103274800005,70.75478750200001],[23.12842858200014,70.7577985700001],[23.071299675000148,70.767767645],[23.052744988000143,70.77391185100008],[23.029958530000044,70.79083893400015],[23.04859459700012,70.79718659100008],[23.10059655000009,70.79877350500011],[23.090668165000093,70.79954661700005],[23.08179772200012,70.80206940300013],[23.073578321000127,70.80638255400004],[23.066254102000126,70.81244538000006],[23.09253991000014,70.81366608300009],[23.137543165000125,70.79559967700006],[23.16187584700009,70.79132721600014],[23.182139519000117,70.79498932500009],[23.187673373000052,70.80219147300011],[23.180186394000145,70.81061432500017],[23.16187584700009,70.81801992400005],[23.16187584700009,70.82542552300005],[23.19011478000007,70.81574127800009],[23.243174675000088,70.78705475500011],[23.271739129000082,70.77704498900015],[23.28663170700014,70.77594635600009],[23.328949415000125,70.77928294500013],[23.340098504000135,70.78449127800002],[23.34034264400009,70.79848867400008],[23.320974155000073,70.81850820500016],[23.323008660000113,70.82884349200008],[23.322276238000086,70.8381208350001],[23.315277540000093,70.85065338700012],[23.312998894000117,70.86163971600017],[23.32642662900011,70.86640045800006],[23.342539910000085,70.86603424700014],[23.3580835300001,70.86408112200012],[23.372325066000087,70.85895416900009],[23.384776238000114,70.84931061400012],[23.396494988000114,70.84259674700017]]],[[[24.073090040000125,71.01105377800008],[24.109222852000073,71.00214264500005],[24.187673373000106,71.00507233300007],[24.224619988000143,70.996771552],[24.18783613400006,70.98932526200012],[24.10670006600014,70.99388255400008],[24.073090040000125,70.98309967700006],[24.079844597000147,70.98021067900012],[24.082367384000094,70.97711823100006],[24.083994988000114,70.97345612200009],[24.08741295700011,70.96881745000015],[24.073090040000125,70.962591864],[24.210215691000087,70.966986395],[24.24512780000012,70.95579661699999],[24.210785352000073,70.95579661699999],[24.210785352000073,70.94599030200006],[24.199880405000073,70.94159577000005],[24.183848504000082,70.94086334800012],[24.16928144600007,70.94212474200005],[24.17676842500012,70.93528880400011],[24.159922722000115,70.92804596600011],[24.14332116000008,70.93024323100009],[24.126231316000116,70.935003973],[24.10792076900006,70.93528880400011],[24.097341342000107,70.92942942899998],[24.09009850400008,70.92108795800011],[24.07960045700011,70.91461823100012],[24.043142123000052,70.91412995000003],[24.022959832000108,70.91697825700005],[24.00570722700013,70.9228376320001],[23.998708530000044,70.931586005],[23.986501498000077,70.942287502],[23.90935306100002,70.95579661699999],[23.94019616000008,70.96405670800004],[24.008555535000053,70.966498114],[24.03891035200013,70.97626373900015],[24.007090691000087,70.98309967700006],[23.942149285000113,70.97760651200004],[23.90935306100002,70.98309967700006],[23.88575280000009,70.99616120000003],[23.895030144000117,71.00226471600003],[23.950205925000148,71.00421784100017],[23.939626498000106,71.01178620000003],[23.932383660000085,71.015326239],[23.92286217500009,71.01727936400005],[23.960134311000076,71.02863190300003],[24.08741295700011,71.02411530200008],[24.078623894000145,71.01447174700009],[24.073090040000125,71.01105377800008]]],[[[24.779307488000082,71.09365469000006],[24.78825931100002,71.09300364800013],[24.806813998000024,71.09739817900011],[24.81690514400009,71.09882233300007],[24.83659915500004,71.09955475500011],[24.836924675000148,71.094875393],[24.81674238400012,71.08600495000015],[24.81234785200013,71.07998281500012],[24.82601972700007,71.07684967700006],[24.81869550900006,71.07379791900017],[24.78760826900006,71.06781647300006],[24.776621941000116,71.05923086100013],[24.789073113000114,71.05304596600016],[24.789073113000114,71.04706452000006],[24.770030144000145,71.02619049700009],[24.75603274800008,71.025336005],[24.722015821000042,71.026556708],[24.70484459700012,71.03143952000006],[24.68767337300011,71.03815338700012],[24.670746290000125,71.04291413000011],[24.633962436000047,71.04877350500004],[24.61426842500009,71.05662669500005],[24.6189884770001,71.06932200700011],[24.64633222700007,71.08270905200011],[24.67164147200012,71.08808014500006],[24.693369988000086,71.08510976800015],[24.70533287900011,71.07851797100007],[24.701996290000096,71.07233307500012],[24.70484459700012,71.06903717700008],[24.720713738000143,71.06781647300006],[24.732920769000117,71.06858958500008],[24.739105665000093,71.07330963700018],[24.731211785000113,71.08368561400007],[24.709483269000145,71.09772370000003],[24.71257571700005,71.10757070500016],[24.74488366000014,71.10879140800007],[24.764008009000122,71.10468170800011],[24.76775149800008,71.09931061400006],[24.772959832000055,71.09589264500005],[24.779307488000082,71.09365469000006]]],[[[27.715505405000073,71.10423411700012],[27.724619988000086,71.09039948100003],[27.69800866000014,71.06565989800005],[27.721690300000063,71.05971914300011],[27.78785241000014,71.0594750020001],[27.811534050000063,71.05597565300009],[27.85572350400014,71.04100169500006],[27.87671959700009,71.03774648600002],[27.963633660000056,71.04661692900005],[27.98316491000014,71.05573151200015],[27.99903405000006,71.06582265800002],[28.020762566000144,71.07099030200011],[28.04322350400014,71.07099030200011],[28.061696811000076,71.06565989800005],[28.06397545700014,71.0615908870001],[28.063324415000096,71.05585358300011],[28.06397545700014,71.0499535180001],[28.06910241000014,71.045152085],[28.08106530000009,71.04096100500009],[28.087168816000087,71.04157135600002],[28.145192905000044,71.07404205900012],[28.167328321000127,71.08270905200011],[28.191416863000143,71.08612702000012],[28.209727410000113,71.0839704450001],[28.232758009000094,71.07802969],[28.252452019000117,71.0684268250001],[28.260996941000144,71.05573151200015],[28.252289259000065,71.03937409100006],[28.232920769000142,71.03261953300002],[28.21192467500009,71.02777741100012],[28.198903842000107,71.01727936400005],[28.219248894000117,71.01727936400005],[28.208994988000086,71.015326239],[28.19996178500008,71.01117584800005],[28.191905144000113,71.00495026200008],[28.185231967000078,70.996771552],[28.199717644000117,70.998968817],[28.23975670700005,71.01105377800008],[28.234385613000114,71.00071849199999],[28.22632897200006,70.99282461100002],[28.21631920700008,70.98700592700006],[28.205088738000082,70.98309967700006],[28.2330835300001,70.97703685100008],[28.343435092000078,71.00421784100017],[28.491465691000116,70.99982330900009],[28.531016472000143,70.98362864800004],[28.53923587300005,70.98248932500009],[28.546071811000076,70.979925848],[28.548838738000114,70.97260163],[28.546641472000147,70.96694570500001],[28.536875847000086,70.95844147300006],[28.529307488000143,70.9391950540001],[28.5057072270001,70.919867255],[28.500498894000117,70.91111888200011],[28.483164910000113,70.88947174700003],[28.443207227000073,70.883937893],[28.369476759000037,70.8869082700001],[28.383555535000085,70.87498607],[28.40316816500004,70.87250397300006],[28.425059441000087,70.87213776200002],[28.44516035200013,70.86640045800006],[28.42237389400009,70.85317617400013],[28.397471550000063,70.84711334800012],[28.343435092000078,70.84593333500003],[28.343435092000078,70.83974844000012],[28.35271243600002,70.83714427300005],[28.356455925000063,70.83466217700011],[28.358653191000144,70.83112213700004],[28.363291863000082,70.82542552300005],[28.225433790000068,70.83226146000008],[28.243337436000047,70.82489655200008],[28.26197350400011,70.81940338700004],[28.301280144000113,70.81244538000006],[28.26587975400011,70.79498932500009],[28.223887566000116,70.78583405200011],[28.17969811300014,70.78286367400001],[28.137380405000044,70.78449127800002],[28.08073978000007,70.79710521000003],[28.061696811000076,70.79877350500011],[28.023122592000107,70.79291413000009],[28.009532097000147,70.79612864800013],[28.013845248000052,70.81244538000006],[27.998789910000113,70.81574127800009],[27.98585045700011,70.8131371110001],[27.973317905000016,70.80825429900013],[27.959239129000082,70.80499909100008],[27.95069420700014,70.79775625200016],[27.822276238000082,70.79120514500006],[27.808441602000073,70.79507070500007],[27.798513217000078,70.79657623900012],[27.772634311000072,70.79165273600007],[27.76002037900008,70.79132721600014],[27.776377800000088,70.78148021000011],[27.811778191000116,70.77667877800003],[27.82829837300008,70.77081940300009],[27.813243035000056,70.76483795800009],[27.7967228520001,70.76093170800009],[27.782481316000084,70.75519440300008],[27.77369225400011,70.7435570330001],[27.857595248000106,70.76300690300008],[27.89966881600006,70.76821523600009],[27.98682701900009,70.75702545800007],[27.99341881600006,70.75409577000005],[27.99732506600006,70.74579498900009],[28.006683790000093,70.74286530200006],[28.08082116000014,70.74567291900011],[28.107432488000086,70.74384186400012],[28.13054446700005,70.73602936400015],[28.07243899800008,70.70327383],[27.933441602000045,70.68707916900017],[27.86988366000014,70.66779205900004],[27.87403405000009,70.66510651200015],[27.87671959700009,70.66095612200012],[27.793142123000106,70.63678620000012],[27.75294030000003,70.63153717700011],[27.721853061000104,70.6221377620001],[27.676524285000113,70.615668036],[27.65015709700012,70.60635000200016],[27.794688347000147,70.61367422100014],[28.15381920700014,70.67792389500009],[28.253428582000083,70.71637604400009],[28.28337649800008,70.718491929],[28.301280144000113,70.7025820980001],[28.28785241000011,70.6537539730001],[28.233164910000085,70.61517975500003],[28.166514519000113,70.58746979400003],[28.057953321000124,70.55540599200005],[28.033539259000094,70.54120514500012],[27.99439537900014,70.52651601800012],[27.911875847000147,70.51162344000006],[27.87378991000014,70.49860260600008],[27.84937584700009,70.48285553600012],[27.8623153,70.46967194200009],[27.86996504000012,70.45856354400014],[27.88355553500008,70.428208726],[27.8938908210001,70.43919505400014],[27.914561394000117,70.47321198100015],[27.927907748000024,70.48273346600014],[27.944997592000078,70.48916250200007],[27.979746941000116,70.49705638200005],[27.95801842500006,70.48444245000013],[27.938161655000073,70.46979401200015],[28.058604363000086,70.49298737200009],[28.185231967000078,70.5033226580001],[28.080088738000114,70.47711823100015],[28.051768425000063,70.45954010600003],[28.0408634770001,70.44476959800015],[28.05005944100014,70.44253164300007],[28.087657097000147,70.45148346600007],[28.11280358200014,70.46385325700011],[28.13054446700005,70.46979401200015],[28.12948652400007,70.46934642100014],[28.110443556000092,70.46120840100002],[28.104014519000085,70.45433177300013],[28.107595248000052,70.44570547100012],[28.127126498000024,70.44183991100012],[28.13721764400009,70.44668203300002],[28.177744988000114,70.47662995000017],[28.214040561000104,70.49567291900014],[28.2529403,70.51007721600003],[28.2936304050001,70.51797109600001],[28.33529707100004,70.51764557500017],[28.3221134770001,70.49697500200007],[28.30323326900006,70.48663971600014],[28.282481316000087,70.47898997600011],[28.264008009000065,70.46637604400014],[28.246836785000113,70.44822825700004],[28.213226759000094,70.42121002800008],[28.172373894000145,70.39545319200006],[28.16065514400006,70.38279857],[28.158457879000082,70.36810944200009],[28.168142123000052,70.34943268400009],[28.173350457000108,70.33295319200012],[28.169606967000107,70.315375067],[28.15723717500006,70.2842471370001],[28.157888217000107,70.24730052300005],[28.177907748000077,70.1822777360001],[28.177744988000114,70.15387604400014],[28.167246941000144,70.1354841170001],[28.152028842000078,70.12372467700014],[28.135264519000145,70.11416250200016],[28.099782748000052,70.088120835],[28.070811394000145,70.07737864800008],[28.039886915000125,70.071275132],[28.013845248000052,70.07135651200015],[28.0662541020001,70.06317780200006],[28.128103061000104,70.08161041900009],[28.183929884000094,70.11554596600003],[28.219248894000117,70.15387604400014],[28.225433790000068,70.174017645],[28.21973717500009,70.18602122600011],[28.208506707000083,70.19749583500008],[28.198903842000107,70.21588776200012],[28.198903842000107,70.22622304900004],[28.204356316000144,70.245794989],[28.201914910000113,70.25348541900011],[28.19874108200014,70.25995514500002],[28.191416863000143,70.2842471370001],[28.195567254000082,70.30158112200009],[28.2166447270001,70.33006419499999],[28.225433790000068,70.345648505],[28.2291772800001,70.365912177],[28.2291772800001,70.38328685100008],[28.232676629000107,70.39911530200011],[28.24659264400009,70.41453685100005],[28.258148634000094,70.42096588700015],[28.29118899800005,70.43292877800009],[28.32081139400009,70.438910223],[28.325043165000125,70.44830963700004],[28.3255314460001,70.45978424700017],[28.32911217500009,70.46979401200015],[28.353363477000073,70.48379140800002],[28.39039147200009,70.493353583],[28.428965691000087,70.49603913000009],[28.458832227000073,70.48965078300014],[28.456228061000076,70.47199127800006],[28.469248894000145,70.45514557500006],[28.489268425000034,70.44525788000011],[28.507334832000137,70.44871653900013],[28.511729363000114,70.457993882],[28.506846550000063,70.46625397300006],[28.500336134000065,70.47418854400001],[28.500498894000117,70.48285553600012],[28.510752800000063,70.49184804900015],[28.525726759000094,70.49787018400015],[28.555023634000094,70.5033226580001],[28.555023634000094,70.510728257],[28.481700066000055,70.51211172100007],[28.458832227000073,70.51764557500017],[28.406097852000073,70.54498932500013],[28.397471550000063,70.5482852230001],[28.401703321000067,70.55898672100001],[28.47925866000014,70.62620677300005],[28.485036655000098,70.63580963700004],[28.493418816000144,70.65802643400009],[28.500498894000117,70.66779205900004],[28.516856316000116,70.67816803600012],[28.5338647800001,70.68012116100009],[28.57553144600007,70.67462799700014],[28.613536004000053,70.67381419500005],[28.620290561000104,70.67829010600008],[28.610362175000088,70.68891022300014],[28.575938347000143,70.70148346600003],[28.540700717000107,70.70892975500011],[28.526215040000064,70.72174713700004],[28.555023634000094,70.75039297100001],[28.643077019000113,70.78925202000012],[28.69320722700013,70.82982005400014],[28.725596550000034,70.84894440300012],[28.7610783210001,70.86408112200012],[28.794688347000115,70.87323639500009],[29.057465040000125,70.88401927299999],[29.082692905000073,70.88068268400013],[29.10450280000003,70.87303294500013],[29.102224155000076,70.86871979400003],[29.06226647200012,70.86640045800006],[29.06226647200012,70.85960521000014],[29.221364780000183,70.85541413000011],[29.26140384200002,70.83974844000012],[29.263031446000156,70.83502838700004],[29.26197350400011,70.82086823100009],[29.264821811000015,70.81517161700013],[29.272959832000165,70.8097191430001],[29.282399936000072,70.80512116100006],[29.301768425000063,70.79877350500011],[29.38119550900009,70.79291413000009],[29.404795769000227,70.78449127800002],[29.380544467000078,70.76943594],[29.294932488000057,70.7435570330001],[29.322113477000098,70.73493073100009],[29.4178166020001,70.73602936400015],[29.399099155000073,70.72821686400015],[29.372569207000115,70.72386302300005],[29.322276238000224,70.72304922100012],[29.32789147200012,70.71271393400004],[29.33773847700016,70.70844147300012],[29.350271030000076,70.7080752620001],[29.363780144000234,70.709377346],[29.351898634000094,70.69529857000008],[29.32878665500002,70.69000885600009],[29.302500847000115,70.68740469],[29.281423373000194,70.68146393400015],[29.28500410200016,70.67861562700013],[29.287852410000117,70.6769880230001],[29.294932488000057,70.67462799700014],[29.281423373000194,70.66095612200012],[29.30640709700012,70.65289948100018],[29.328868035000113,70.65997955900004],[29.369965040000093,70.68891022300014],[29.39210045700011,70.69733307500009],[29.51775149800019,70.70587799700002],[29.69955488400015,70.74371979400014],[29.745778842000018,70.74274323100009],[29.778981967000078,70.72654857000013],[29.781504754000164,70.68891022300014],[29.761973504000167,70.664496161],[29.70264733200011,70.63959381700006],[29.679209832000225,70.62002187700008],[29.82309004000015,70.63369375200004],[29.839528842000018,70.6393903670001],[29.849375847000175,70.64720286700002],[29.85808353000007,70.65595123900006],[29.870371941000112,70.66437409100003],[29.95915774800008,70.70465729400009],[29.993825717000018,70.71308014500013],[30.069590691000116,70.71556224199999],[30.104746941000172,70.71076080900009],[30.20679772200012,70.68146393400015],[30.18604576900023,70.66469961100013],[30.156504754000167,70.65599192900005],[30.09693444100017,70.64793528900013],[30.130707227000155,70.63882070500013],[30.240896030000073,70.63369375200004],[30.33692467500012,70.606146552],[30.347341342000135,70.59613678600012],[30.32691491000011,70.58490631700003],[30.264659050000063,70.56976959800004],[30.15267988400015,70.55825429900007],[30.124766472000115,70.55170319199999],[30.124766472000115,70.54486725500009],[30.13803144600016,70.54637278900013],[30.1502384770001,70.54584381700006],[30.159841342000192,70.54144928600006],[30.165212436000076,70.53123607000013],[30.124278191000116,70.53168366100012],[30.04135175900015,70.544378973],[30.00074303500011,70.54486725500009],[30.00074303500011,70.53807200700005],[30.16309655000006,70.52460358300006],[30.456309441000112,70.561224677],[30.501638217000192,70.55853913000011],[30.58179772200017,70.542181708],[30.599131707000222,70.52977122600007],[30.562347852000155,70.51764557500017],[30.731944207000108,70.46816640800013],[30.74122155000006,70.44183991100012],[30.78663170700017,70.42064036700012],[30.8123478520001,70.414699611],[30.823741082000055,70.42479075700008],[30.83741295700011,70.43170807500015],[30.92603600400011,70.45612213700011],[30.946950717000078,70.45001862200003],[30.973399285000113,70.42121002800008],[30.987966342000078,70.41453685100005],[31.00562584700017,70.40900299700003],[31.063324415000093,70.36676666900007],[31.047699415000153,70.35626862200003],[31.030528191000116,70.34878164300007],[31.019379102000098,70.33991120000012],[31.021739129000164,70.32514069200012],[31.033946160000113,70.31500885600018],[31.050466342000192,70.30878327000003],[31.06641686300011,70.30048248900012],[31.07699629000015,70.2842471370001],[31.041188998000024,70.28485748900006],[30.933604363000228,70.26373932500003],[30.54883873800011,70.24868398600002],[30.51514733200011,70.23908112200014],[30.514659050000116,70.21588776200012],[30.488942905000073,70.20307038000009],[30.398610873000077,70.19546133000013],[30.374847852000155,70.18585846600014],[30.357758009000094,70.17324453300007],[30.357432488000054,70.16128164300015],[30.38428795700005,70.15387604400014],[30.35523522200017,70.12970612200014],[30.317067905000016,70.11737702],[30.144704623000194,70.09243398600007],[30.11947675900015,70.08490631700012],[30.117930535000113,70.07807038000003],[30.13314863400009,70.0731875670001],[30.15894616000011,70.07135651200015],[29.689707878500172,70.0958519550001],[29.22046959700012,70.1203473980001],[29.226735873000077,70.1203473980001],[28.940196159500115,70.15133291250002],[28.65365644600007,70.182318427],[28.61654707100007,70.17690664300012],[28.596690300000063,70.16132233300014],[28.75367272200012,70.16754791900009],[28.732595248000106,70.14931875200001],[28.690114780000044,70.13410065300002],[28.6435653,70.12392812700008],[28.610362175000088,70.1203473980001],[28.62940514400009,70.10712311400009],[28.66480553500008,70.10000234600012],[28.732676629000082,70.09857819200006],[28.774099155000098,70.11139557500009],[28.786468946000127,70.11115143400013],[28.833994988000143,70.09951406500014],[28.849945509000065,70.09857819200006],[28.849945509000065,70.09243398600007],[28.759043816000087,70.09357330900012],[28.732676629000082,70.08559804900007],[28.92408287900008,70.07387929900005],[28.993337436000076,70.05585358300006],[29.137950066000087,70.05760325700005],[29.129161004000135,70.04755280200008],[29.12427819100014,70.0440127620001],[29.161875847000147,70.04515208500011],[29.18311608200014,70.04340241100012],[29.192556186000072,70.03717682500017],[29.18384850400008,70.03294505400005],[29.130381707000137,70.016750393],[29.158376498000077,70.00922272300012],[29.343435092000078,70.016750393],[29.38941491000011,70.00486888200005],[29.685883009000094,69.96954987200003],[29.663584832000172,69.96596914300015],[29.575531446000156,69.93577708500014],[29.529470248000194,69.92536041900014],[29.486338738000057,69.91071198100003],[29.440114780000076,69.90082428600012],[29.42164147200012,69.89036692900005],[29.41504967500006,69.88361237200012],[29.412282748000194,69.87962474200013],[29.408376498000194,69.87588125200001],[29.398285352000155,69.86957428600006],[29.390310092000192,69.86615631700013],[29.363780144000234,69.85968659100014],[29.41325931100019,69.85691966399999],[29.435801629000164,69.86237213700004],[29.47144616000011,69.88784414300011],[29.51539147200012,69.90932851800005],[29.535166863000054,69.91425202000012],[29.549489780000073,69.91469961100002],[29.56364993600019,69.913031317],[29.577403191000116,69.90936920800006],[29.590342644000117,69.904038804],[29.60434004000015,69.90127187700004],[29.629893425000066,69.90704987200009],[29.667246941000116,69.90135325700003],[29.714366082000108,69.91364166900014],[29.741221550000063,69.90745677299999],[29.731618686000186,69.89443594],[29.7381291020001,69.88572825700011],[29.746267123000138,69.87742747600005],[29.741221550000063,69.86587148600002],[29.775401238000054,69.83856842700014],[29.75538170700011,69.82884349199999],[29.736989780000073,69.80292389500009],[29.69939212300008,69.79328034100003],[29.649261915000153,69.77191803600006],[29.645030144000227,69.76341380400011],[29.645030144000227,69.75600820500013],[29.624847852000098,69.75409577000009],[29.612559441000172,69.74494049700009],[29.602793816000116,69.73297760600015],[29.58969160200016,69.72247955900009],[29.570567254000167,69.71649811400009],[29.528086785000113,69.71295807500009],[29.507985873000077,69.70880768400013],[29.543467644000234,69.70831940300017],[29.533702019000113,69.69525788],[29.506032748000194,69.67706940300012],[29.48731530000006,69.661078192],[29.521494988000228,69.66844310100011],[29.53777103000007,69.674994208],[29.56723066500015,69.69489166900009],[29.680023634000147,69.7354190120001],[29.715586785000117,69.7411156270001],[29.820974155000016,69.74396393400004],[29.901621941000176,69.736314195],[29.908457879000167,69.73745351800012],[29.993011915000096,69.76801178600006],[30.030446811000072,69.77594635600002],[30.062754754000167,69.77024974200005],[30.043467644000227,69.761419989],[30.01905358200011,69.7375348980001],[30.00098717500006,69.725572007],[29.954925977000098,69.71531810100005],[29.936696811000072,69.70575592700008],[29.93930097700016,69.68773021000014],[29.95232181100002,69.70522695500009],[29.977793816000112,69.71417877800003],[30.02857506600017,69.72247955900009],[30.07113691500015,69.73993561400006],[30.080821160000113,69.73867422100015],[30.10173587300008,69.71621328300013],[30.114512566000112,69.70620351800007],[30.175140821000152,69.68634674700014],[30.186289910000173,69.68773021000014],[30.187998894000113,69.69570547100001],[30.18067467500006,69.70197174700014],[30.1619572270001,69.71190013200004],[30.122243686000186,69.74384186400006],[30.110606316000112,69.75600820500013],[30.131846550000063,69.7599958350001],[30.18897545700005,69.76251862200003],[30.20679772200012,69.77024974200005],[30.208994988000228,69.78440989800006],[30.194672071000156,69.79364655200011],[30.174571160000113,69.80141836100013],[30.15894616000011,69.81122467700006],[30.1658634770001,69.8239199890001],[30.167979363000228,69.84662506700005],[30.167165561000132,69.86871979400014],[30.165212436000076,69.87954336100013],[30.240896030000073,69.87954336100013],[30.28923587300008,69.88654205900004],[30.302744988000224,69.883246161],[30.32398522200012,69.86713288000011],[30.318207227000155,69.85927969000012],[30.26880944100017,69.84540436400005],[30.299489780000183,69.83820221600003],[30.37183678500017,69.84760163000014],[30.398610873000077,69.83856842700014],[30.40259850400011,69.8312442080001],[30.4036564460001,69.82241445500007],[30.40381920700023,69.81313711100002],[30.404795769000117,69.80438873900015],[30.410980665000096,69.78196849200013],[30.41228274800019,69.78050364800008],[30.41358483200011,69.73663971600003],[30.409841342000075,69.70229726800007],[30.388194207000055,69.68036530200006],[30.33708743600019,69.67405833500003],[30.360199415000153,69.66746653900013],[30.42937259200002,69.67405833500003],[30.44353274800008,69.678412177],[30.448578321000095,69.68895091400007],[30.4524845710001,69.7150332700001],[30.44743899800008,69.72679271],[30.44743899800008,69.73334381700008],[30.462087436000076,69.73773834800006],[30.46517988400015,69.74164459800006],[30.466563347000115,69.74701569200012],[30.466807488000057,69.75287506700006],[30.462657097000115,69.76422760600003],[30.455251498000024,69.77334219000012],[30.451833530000016,69.781683661],[30.459971550000063,69.790757554],[30.45069420700011,69.810288804],[30.482920769000227,69.81818268400015],[30.69874108200011,69.80853913],[30.720550977000155,69.79759349200009],[30.706716342000078,69.79279205900004],[30.700368686000132,69.783433335],[30.703135613000054,69.774400132],[30.71697024800008,69.77024974200005],[30.732595248000077,69.77220286699999],[30.749685092000192,69.77716705900002],[30.782074415000096,69.790757554],[30.78956139400006,69.790757554],[30.84095389065234,69.80584190251038],[30.843987671000182,69.76623362300002],[30.867862183000085,69.74897369500003],[30.877060587000102,69.73760487900013],[30.88233158400013,69.72008656900007],[30.88129805500014,69.71052642900015],[30.884295288000228,69.70236155200014],[30.901245158000023,69.68897735600002],[30.92770349100013,69.67213083900005],[30.93080407700009,69.59487457300007],[30.92703169700016,69.57838979200007],[30.898247925000224,69.54423167],[30.85297937000021,69.52743682900002],[30.755310913000102,69.52149403900002],[30.511656535000185,69.53632517600015],[30.480702351000073,69.54412831700007],[30.29435713700016,69.62024770100005],[30.23069177200014,69.63730092400009],[30.186146688000147,69.64133168600007],[30.141239868000156,69.63988474600008],[30.119070679000203,69.63456207300014],[30.126718791000116,69.62644887300003],[30.148629598000042,69.61849070300015],[30.2087809650001,69.60867218100009],[30.220149780000185,69.60024892200003],[30.228676392000096,69.58205881800008],[30.231621948000083,69.55833933600003],[30.224697306000134,69.54082102500016],[30.21064131700021,69.52821197500005],[30.192296183000195,69.51916859900007],[30.164029175000138,69.5118305460001],[30.154830770000128,69.50609446200004],[30.145012248000086,69.49105662100006],[30.141084839000115,69.47679392500008],[30.14077478100009,69.46439158200009],[30.137364136000116,69.4529710900001],[30.123411499000127,69.441912334],[30.001765177000067,69.39457672200002],[29.967141968000217,69.37349273699999],[29.948073364000063,69.36558624300015],[29.900686075000092,69.35824819000005],[29.751392863000117,69.35716298500007],[29.728396851000095,69.35153025300004],[29.661837605000102,69.32502024400004],[29.604270061000218,69.31520172200005],[29.434564657000152,69.31184275400014],[29.37679040500015,69.30161082000008],[29.33451908400016,69.27737457299999],[29.326560913000066,69.26264679000008],[29.315863892000177,69.23494822200013],[29.307440633000194,69.22631825800003],[29.305476929000093,69.21810170600018],[29.30537357600022,69.20973012300003],[29.30227299000009,69.200841777],[29.294418172000036,69.19169504800003],[29.27643477400008,69.17593373700011],[29.268786661000178,69.1666836560001],[29.25100996900008,69.13076853400007],[29.240467977000122,69.11505889900009],[29.221037638000126,69.09841908900016],[29.172978556000146,69.06937693300007],[29.12026859500014,69.04684600900005],[29.064768107000045,69.03470204700014],[29.00813073700007,69.03692413400016],[28.973662557000097,69.03423695900011],[28.954077189000085,69.02726064100011],[28.839613892000074,69.08028066000004],[28.827573283000103,69.090770976],[28.82695316600012,69.10684234700015],[28.844109741000096,69.18125640900017],[28.852171265000095,69.20352895200004],[28.864780314000114,69.21660308900007],[29.229254191000134,69.3768517050001],[29.344544311000078,69.46439158200009],[29.203157593000157,69.58598622600014],[29.147140341000124,69.66391428700001],[29.131223999000095,69.67419789700001],[28.806075887000077,69.7299567675001],[28.48092777500011,69.78571563800001],[28.442687215000035,69.79145172200008],[28.404550008000086,69.80225209600009],[28.37974532000004,69.82235422800005],[28.381192260000034,69.85620229100006],[28.18926599100007,69.88604543100017],[28.167355184000115,69.89433949900003],[27.981009969000098,70.00960378100014],[27.927163127000142,70.053270366],[27.89729414900006,70.07068532400005],[27.866908407000096,70.07531036400009],[27.792184286000094,70.05892893600004],[27.665060262000054,70.06828237000018],[27.612557007000074,70.0620553590001],[27.570905802000055,70.04089386000014],[27.5633093670001,70.02358225500014],[27.445228719000113,70.00322174100002],[27.380943237000054,69.97425710100013],[27.364975220000105,69.97175079400016],[27.349110555000095,69.97128570600005],[27.334537801000124,69.96862436900001],[27.32316898600007,69.95968434700008],[27.330507039000054,69.95746226000006],[27.34507979300011,69.95074432400004],[27.352417847000112,69.948703105],[27.311800170000055,69.92947947200015],[27.1003402100001,69.90175506600004],[27.081219930000117,69.90294362400006],[27.00752933700008,69.92245147800016],[26.981071004000114,69.923278301],[26.951098673000075,69.92015187600013],[26.89570153800011,69.93433705700009],[26.86459232600006,69.93808359900011],[26.771884807000077,69.92839426700007],[26.706979207000128,69.93506052700009],[26.533863159000106,69.9252420050001],[26.500686890000082,69.91831736200014],[26.481049846000133,69.89940378900009],[26.445909871000083,69.8817562870001],[26.435884643000065,69.87423736600005],[26.44787357600012,69.85604726200002],[26.418728068000117,69.83563507100017],[26.31682214300011,69.79491404200012],[26.268246297000132,69.75827545200015],[26.222977742000126,69.7319204710001],[26.210988811000075,69.72287709600012],[26.198276408000112,69.71543569],[26.18142989100005,69.71124989800008],[26.031981649000045,69.69667714500011],[26.005109904000022,69.68933909100012],[25.981338745000073,69.67486969],[25.968833049000068,69.66319081600001],[25.961701701000038,69.65254547200011],[25.96438887500005,69.64267527300014],[25.9811320390001,69.63347686800013],[26.005109904000022,69.6108425900001],[26.003973023000125,69.58717478500016],[25.986196330000098,69.56541900600014],[25.960254761000044,69.5486758420001],[25.900206747000112,69.53203603200008],[25.886667521000046,69.52087392200005],[25.890594930000105,69.51482778000008],[25.901446981000078,69.50914337200005],[25.9064079180001,69.50185699500018],[25.89214522300003,69.49090159200001],[25.8857373460001,69.4791193650001],[25.886667521000046,69.4551931760001],[25.877469116000043,69.44702830100009],[25.865790242000084,69.44098215800012],[25.841398966000042,69.41777943900003],[25.872611532000118,69.37907379200011],[25.877365763000114,69.37080556299999],[25.786621949000075,69.31277292900002],[25.774529663000067,69.29882029300002],[25.73721927900004,69.2182050580001],[25.734118693000084,69.19133331400012],[25.749931681000103,69.165185039],[25.755306031000142,69.15955230800007],[25.76832849100009,69.14213735000014],[25.771222372000068,69.13510935500013],[25.769982137000053,69.12740956700004],[25.766364787000068,69.12270701200008],[25.7624373780001,69.11919301400012],[25.76047367400014,69.11516225200002],[25.759026734000145,69.08203765900011],[25.757166382000065,69.07511301700013],[25.749414917000138,69.06555287700002],[25.750241739000074,69.05924835200004],[25.765124553000103,69.04338368700012],[25.7657446690001,69.03919789600018],[25.76460778800009,69.03516713500007],[25.765848022000114,69.03067128600007],[25.773806193000066,69.02540028900002],[25.79292647300008,69.01816558800006],[25.80109135000009,69.0131529750001],[25.804708700000074,69.00612498],[25.795820353000067,68.99330922500008],[25.753859090000077,68.97837473600005],[25.742696981000023,68.96586903900005],[25.737425985000097,68.95253652000004],[25.7263672280001,68.94245961500009],[25.694844605000124,68.9256130980001],[25.678411499000077,68.91253896100007],[25.66621586100004,68.89739776700004],[25.651643107000098,68.88349680600008],[25.627768595000106,68.87414337200012],[25.602447144000106,68.87212799100007],[25.481059204000132,68.8877342730001],[25.43393029800012,68.88385854200006],[25.387214803000035,68.8745567840001],[25.201283,68.81264841800011],[25.16273238100004,68.78458811500008],[25.14960656700009,68.76464101200015],[25.1448523360001,68.7426268520001],[25.1430953360001,68.69596303400012],[25.138754517000052,68.68831492100004],[25.132760051000105,68.68268219000011],[25.132139933000133,68.67658437100015],[25.144232218000127,68.66800608400003],[25.13244999200012,68.64764556900009],[25.117567179000076,68.63767201700007],[25.097826782000112,68.63374460900012],[25.070955038000108,68.63141917000017],[25.006876261000087,68.614572653],[24.981244751000133,68.61508941700004],[24.951789185000052,68.60506418900012],[24.938146606000117,68.58826934800005],[24.927087850000106,68.57038930300008],[24.905177042000076,68.55695343000004],[24.87923547400004,68.55483469700006],[24.860942016000138,68.5634129840001],[24.82962609800003,68.59410878600012],[24.754178508000052,68.63787872400003],[24.663434693000085,68.66609405600009],[24.481326945000088,68.68919342100016],[24.332498820000065,68.70862376000015],[24.186874633000087,68.74453888],[24.16372359200011,68.75482249000011],[24.13116744000007,68.7761648560001],[23.92900923700003,68.81621409100008],[23.852631469000073,68.81667917900002],[23.78720910600012,68.79978098600013],[23.767985474000085,68.75595937100012],[23.734809204000072,68.715445048],[23.641584920000128,68.69498118100013],[23.48159468600008,68.68562774700011],[23.197581014000093,68.61803497300004],[23.175360148000067,68.62165232400012],[23.097948852000115,68.670124817],[23.071490519000037,68.6808735150001],[23.019297322000057,68.686712952],[22.85165897600012,68.67570587200011],[22.596480753000094,68.72464345300001],[22.570125773000115,68.7268138640001],[22.54294397000012,68.7260387170001],[22.42873905400009,68.71007070000014],[22.409205363000098,68.71291290300003],[22.396699666000103,68.73182647800014],[22.371378215000107,68.82262196900002],[22.35680546100005,68.83275055000009],[22.277223755000133,68.8574518840001],[22.2002258710001,68.90845652300005],[22.18865035000007,68.91863678000011],[22.1743876540001,68.94369985000013],[22.160745076000094,68.956102194],[22.02307906100009,69.01201609300008],[21.946100152000042,69.06570253200009],[21.662894328000107,69.26321523100013],[21.638813110000086,69.27138010700016],[21.313561646000096,69.29143056300002],[21.098380981000048,69.23949574900008],[21.079674113000067,69.23014231400005],[21.06303430200012,69.21494944300004],[21.033578735000045,69.18120473300014],[21.15636193800009,69.08761871400013],[21.099001099000105,69.04379709900003],[21.071509237000043,69.03666575199999],[21.03254520700005,69.04100657100015],[20.744397421000144,69.10436187800018],[20.716595499000107,69.09878082300014],[20.623164510000038,69.03635569300009],[20.36271529150011,69.02925018350011],[20.102266073000095,69.02214467400013],[20.34111454300009,68.91005849300008],[20.34876265400007,68.89310862300009],[20.35651412000007,68.80458689400002],[20.3521732990001,68.7856733200001],[20.338840779000062,68.765467835],[20.236624796000083,68.65906606099999],[20.151772095000126,68.606821187],[19.962222941000046,68.54119211900013],[20.245926554000107,68.47737172400012],[20.010282023000087,68.36389027899999],[19.971214640000085,68.35128123000005],[19.931010376000046,68.35019602500007],[19.48173547300007,68.42404164700004],[19.038144979000066,68.50563873300011],[18.70028446400005,68.49561350500007],[18.644577270000127,68.50124623600003],[18.481796509000105,68.5619660440001],[18.43621789500011,68.57385162400014],[18.189291148000052,68.53842468300014],[18.171841268000065,68.53592112300014],[18.16150598200008,68.53018503800016],[18.15623498500014,68.518609518],[18.136804647000048,68.42631541000004],[18.13566776500005,68.39572296200014],[18.188584432000113,68.19873240200012],[18.166673625000072,68.15847646200008],[17.981878703000064,68.016159567],[17.950769491000102,67.9910964970001],[17.921003865000014,67.97285471700003],[17.895372355000063,67.96965077800017],[17.60841312650012,68.03747609500017],[17.32145389800013,68.10530141200002],[17.29995650200007,68.09791168200002],[17.220064738000076,68.04008575500002],[16.8079968670001,67.91063629200012],[16.782882121000085,67.89699371400002],[16.76190148900008,67.87714996400005],[16.608732544000077,67.6472931930001],[16.587235148000048,67.62589915000017],[16.482952107000102,67.55784128900008],[16.428588501000036,67.5340184540001],[16.366990193000078,67.52166778600007],[16.199558553000088,67.50828359000012],[16.180748332000093,67.49639801000008],[16.12710819500012,67.42275909500007],[16.43789025900014,67.20031789200014],[16.443781372000046,67.18261871400013],[16.415566040000073,67.05270416300012],[16.399649698000076,67.03596099900007],[16.3696773690001,67.02428212500011],[16.310559529000045,67.00991607700011],[16.125661255000125,66.93436513300016],[16.03884484800011,66.88754628600005],[15.669461711000052,66.59942433700017],[15.426272420000087,66.49121388800008],[15.429889770000072,66.46356699700006],[15.476076322000097,66.35493714300017],[15.482082967000052,66.34080963200002],[15.489937785000079,66.30848602300001],[15.491798136000085,66.28799631800014],[15.48187626100008,66.27487050399999],[15.053375285000072,66.15327585900013],[14.796956828000104,66.13936197950021],[14.540538371000109,66.12544810000018],[14.644408,65.84290720700002],[14.648852172000145,65.80239288400008],[14.63706994700007,65.78120554700014],[14.570200643000076,65.71671335900014],[14.560692179000114,65.70105540000016],[14.510359335000116,65.46473907500017],[14.511392862000092,65.41706756700002],[14.518317505000084,65.36453847200015],[14.514286743000099,65.31808136000002],[14.48214400200007,65.28867747100004],[14.400495239000064,65.25544952500007],[14.380238078000074,65.24028249200008],[14.36597538300009,65.21576202500002],[14.338483520000123,65.1228994750001],[14.332849860000096,65.11504586000017],[14.332073666000099,65.11396380500014],[14.310681600000066,65.08414215100005],[14.172602172000069,64.991537984],[14.172395467000086,64.99138295600015],[13.907579590000038,64.78770029750017],[13.642763713000107,64.58401763900015],[13.940058228000083,64.49131012],[13.982329549000069,64.48438547900008],[14.060877726000086,64.4766340130001],[14.096947876000087,64.46531687400004],[14.115551391000054,64.44123565700006],[14.161440063000043,64.2054360960001],[14.160509887000075,64.18724599200006],[14.147797485000126,64.16900421200002],[13.982329549000069,64.01950429300008],[13.964242798000043,64.00953074200008],[13.939438110000111,64.00953074200008],[13.586772298000085,64.05020009400012],[13.234106486000144,64.09086944600007],[12.982442261000074,64.05883005800017],[12.755272665000064,63.99139231400015],[12.681892131000039,63.956355693000134],[12.482524454000043,63.80949127300012],[12.293182006000109,63.656994121000174],[12.170295450000111,63.5981346650001],[12.219491414000087,63.49659047500002],[12.219801472000055,63.474266256000035],[12.204918660000118,63.45462921200003],[11.992425171000093,63.28890289300006],[12.059826572000132,63.204772150000075],[12.222695353000063,63.00147857700007],[12.104356323000104,62.92334381100015],[12.093297567000093,62.90742747100004],[12.097018270000092,62.88655019100015],[12.156239461000098,62.73369130500011],[12.154069051000107,62.71051442500012],[12.13866947400004,62.682712505000076],[12.103116089000054,62.63403330500013],[12.090093628000119,62.60633473700004],[12.091230509000127,62.58631012000008],[12.279521921000082,62.344214039000136],[12.286360718000138,62.335421041000124],[12.314265991000127,62.28612172500011],[12.31514930500012,62.271760746],[12.317469929000112,62.234031881000156],[12.239593546000037,61.979435018000075],[12.161717163000077,61.724838155000114],[12.17556644700005,61.7115314740001],[12.291321655000104,61.65112172400008],[12.337830444000133,61.63298329700014],[12.416481975000094,61.58228871700008],[12.444800659000094,61.573503723999984],[12.482524454000043,61.5691370650001],[12.550944051000045,61.566914978000014],[12.58339685000007,61.56110138000012],[12.613782592000119,61.54704539],[12.877125692000076,61.37098378600017],[12.886944214000039,61.36150116],[12.888184448000061,61.349615581000144],[12.85469812000008,61.255306092000055],[12.839815308000112,61.22698740600004],[12.819661499000063,61.20494740800013],[12.74669437600002,61.1514623010001],[12.739149617000066,61.142444763000164],[12.73294844600008,61.129112244000154],[12.713518107000112,61.061157735000094],[12.710825598000099,61.05701155800013],[12.703802938000079,61.046197409],[12.68251224700009,61.04033213400011],[12.569650920000127,61.050641581000136],[12.511773316000102,61.049117127000116],[12.28098636900009,61.01519154900011],[12.253287801000056,61.001704],[12.256078329000017,60.98131764800008],[12.294835653000064,60.93532562299999],[12.313232463000134,60.901865133000015],[12.335039917000074,60.828898010999986],[12.350026082000054,60.79334462600012],[12.377001180000093,60.754096375000145],[12.482524454000043,60.65733225600015],[12.594352254000029,60.51493784600016],[12.608614950000115,60.486489970000044],[12.612645711000113,60.455380758],[12.605307658000099,60.41915557900013],[12.593628784000146,60.395022685000086],[12.577919148000149,60.37590240500001],[12.558592163000128,60.35988271100014],[12.504745321000087,60.32562123600003],[12.491722860000067,60.312288717000015],[12.487278686000138,60.29590728800015],[12.495650268000105,60.262007549000046],[12.521591838000063,60.197618713000146],[12.524692423000117,60.1617035930001],[12.510946492000073,60.11798533200011],[12.483247925000057,60.08124338800003],[12.446764364000046,60.05111602800007],[12.290598185000105,59.95871856700013],[12.143733764000103,59.89841217000016],[12.102702677000138,59.89396799800015],[11.942195678000132,59.90202952100004],[11.890312540000139,59.89277944000012],[11.874627299000053,59.88493681900003],[11.849591512000075,59.87241892500001],[11.842976929000086,59.838415833000155],[11.85486250800011,59.824308167000126],[11.883741546000095,59.8053829980001],[11.889795776000113,59.801415507],[11.902094767000051,59.78513743100008],[11.903541707000043,59.76999623600006],[11.89723718300013,59.73201405900015],[11.89723718300013,59.71397898400015],[11.891656128000108,59.70576243200009],[11.852485392000062,59.67336130800012],[11.828404175000117,59.6597187300001],[11.693735392000121,59.62230499300013],[11.67492517100004,59.60711212200003],[11.67099776200007,59.58055043600009],[11.677405640000103,59.559053040000045],[11.783962443000064,59.36061554000004],[11.806803426000045,59.29359120700003],[11.81166101100007,59.27090525300015],[11.81166101100007,59.24966624000008],[11.811088078000097,59.24871671700014],[11.802462605000073,59.23442169200014],[11.784685913000146,59.218143616000035],[11.775590861000067,59.20253733300008],[11.748512411000121,59.14006052700002],[11.745308472000147,59.092156473999985],[11.734249715000145,59.06554311100016],[11.708928263000073,59.02161814400012],[11.700246623000112,58.99913889600011],[11.693735392000121,58.97350738500016],[11.66438317900014,58.920073955000035],[11.611569865000092,58.89315053300011],[11.547077678000079,58.88472727500011],[11.482585490000076,58.88689768500002],[11.45199304200014,58.89604441400011],[11.453233276000077,58.96048492500002],[11.43814375800008,58.99112904900015],[11.437521686000139,58.99171051300011],[11.437510613337878,58.991720862705634],[11.437510613000114,58.991725979000144],[11.437754754000139,58.99823639500015],[11.403575066000144,59.0385602890001],[11.399587436000076,59.04767487200011],[11.393809441000116,59.07001373900011],[11.389333530000044,59.08075592700005],[11.370453321000127,59.10065338700003],[11.344574415000094,59.111395575000145],[11.313812696000127,59.11517975500009],[11.216563347000118,59.110419012000186],[11.182383660000141,59.11603424700009],[11.170176629000082,59.13475169500004],[11.174652540000123,59.14093659100003],[11.183116082000083,59.14288971600017],[11.200938347000147,59.14223867400003],[11.206716342000107,59.14569733300011],[11.201670769000089,59.15253327000012],[11.193614129000139,59.15753815300017],[11.190114780000073,59.15521881700012],[11.183116082000083,59.16006094],[11.178558790000125,59.16498444200006],[11.176442905000016,59.17230866100006],[11.177989129000053,59.180731512000115],[11.180511915000068,59.184271552],[11.18100019600007,59.18805573100011],[11.176442905000016,59.19684479400009],[11.166677280000073,59.19212474199999],[11.135508660000085,59.183172919000135],[11.15015709700009,59.175197658000094],[11.153086785000113,59.162543036000116],[11.147308790000068,59.14996979400003],[11.135508660000085,59.14223867400003],[11.11882571700005,59.14227936400003],[11.107106967000078,59.15070221600014],[11.08773847700013,59.17576732000007],[11.097341342000021,59.14850495000017],[11.099131707000112,59.134182033000066],[11.091075066000087,59.127997137000115],[11.032481316000144,59.127997137000115],[11.03980553500014,59.143744208000086],[11.02670332100007,59.1518415390001],[11.007823113000143,59.15912506700003],[10.998301629000139,59.17230866100006],[10.989431186000104,59.17568594000009],[10.948496941000087,59.18333567900011],[10.936208530000101,59.183172919000135],[10.944834832000112,59.16486237200009],[10.9440210300001,59.14931875200006],[10.934092644000117,59.14036692900005],[10.91635175900012,59.14223867400003],[10.907888217000078,59.149847723000065],[10.900645379000139,59.16400788000008],[10.897715691000116,59.18089427300008],[10.902110222000118,59.19684479400009],[10.882823113000086,59.18768952],[10.87256920700014,59.18447500200013],[10.861501498000107,59.183172919000135],[10.850271030000101,59.180365302],[10.84839928500014,59.1738141950001],[10.84799238400012,59.16657135600009],[10.841156446000099,59.161444403000175],[10.822927280000043,59.16396719000009],[10.802012566000087,59.18878815300015],[10.779144727000071,59.18939850500003],[10.784190300000091,59.206284898000014],[10.766368035000113,59.23175690300008],[10.772959832000083,59.25210195500009],[10.76189212300005,59.24494049700015],[10.74935957100007,59.22394440300012],[10.738129102000073,59.21670156500009],[10.733164910000113,59.240912177],[10.743662957000083,59.26801178600011],[10.76156660200013,59.29352448100012],[10.779144727000071,59.312933661000116],[10.76343834700009,59.31533437700015],[10.752696160000085,59.32269928600005],[10.744151238000143,59.330471096000146],[10.734711134000065,59.33405182500003],[10.72445722700013,59.32977936400012],[10.708994988000086,59.31098053600006],[10.700694207000112,59.306708075000145],[10.674082879000082,59.31574127800015],[10.665375196000099,59.33641185099999],[10.659841342000078,59.35936107000008],[10.642751498000024,59.37494538000006],[10.65609785200013,59.38971588700006],[10.659678582000112,59.40021393400012],[10.653005405000071,59.40818919500007],[10.635264519000145,59.415961005000085],[10.595957879000139,59.423732815000065],[10.591644727000073,59.43065013200008],[10.601084832000083,59.45010000200006],[10.62745201900006,59.47882721600002],[10.644541863000114,59.4931501320001],[10.65642337300008,59.497870184000114],[10.662933790000068,59.48871491100014],[10.661143425000063,59.47329336100001],[10.648936394000089,59.44383372600011],[10.662445509000065,59.43789297100001],[10.675140821000127,59.440863348],[10.68506920700014,59.45026276200004],[10.690440300000091,59.46312083500005],[10.690277540000125,59.48065827],[10.683441602000102,59.48932526200009],[10.673513217000107,59.495266018000116],[10.66309655000012,59.50470612200003],[10.651133660000085,59.52643463700009],[10.645518425000091,59.549465236000074],[10.646820509000092,59.57257721600003],[10.65642337300008,59.59467194200011],[10.639008009000094,59.615790106000034],[10.62598717500012,59.63727448100015],[10.617686394000115,59.66307200699999],[10.614593946000127,59.697170315],[10.5975041020001,59.68455638200011],[10.575450066000116,59.69961172100012],[10.560231967000021,59.72622304900007],[10.563243035000113,59.74835846600014],[10.57715905000012,59.76642487200017],[10.601735873000107,59.81391022300009],[10.614593946000127,59.83368561400001],[10.655528191000087,59.85667552299999],[10.680349155000044,59.827337958000086],[10.698090040000125,59.77716705900018],[10.717784050000148,59.73810455900013],[10.72820071700005,59.77635325700008],[10.747325066000114,59.81435781500006],[10.758474155000044,59.8501651060001],[10.74512780000012,59.882066148000106],[10.7526147800001,59.888902085000105],[10.740000847000118,59.89516836100007],[10.71111087300011,59.900702216000084],[10.688731316000087,59.911769924000126],[10.680837436000104,59.904974677000034],[10.674327019000115,59.89443594000014],[10.666270379000082,59.888902085000105],[10.621429884000065,59.89630768400012],[10.615570509000122,59.89459870000011],[10.60287519600007,59.88532135600015],[10.594248894000144,59.882066148000106],[10.553233269000145,59.88410065300003],[10.529470248000052,59.882310289000046],[10.508148634000094,59.87152741100014],[10.475433790000068,59.85004303600012],[10.473806186000047,59.84137604400002],[10.498708530000073,59.83368561400001],[10.488617384000092,59.81631094000012],[10.486664259000065,59.803168036000066],[10.484548373000052,59.78864166900002],[10.48568769600007,59.75787995000014],[10.491221550000091,59.73126862200011],[10.502207879000139,59.708726304000116],[10.518890821000099,59.68903229400017],[10.539805535000141,59.675034898000106],[10.563243035000113,59.66982656500012],[10.582692905000044,59.66205475500011],[10.599131707000112,59.643988348],[10.610524936000076,59.62335846600016],[10.614593946000127,59.607733466000084],[10.593109571000127,59.57037995000004],[10.54273522200009,59.53554922100001],[10.483734571000127,59.514471747000165],[10.436696811000104,59.51837799700017],[10.423594597000147,59.5338402360001],[10.422373894000117,59.55402252800004],[10.42920983200014,59.597845770000085],[10.427419467000078,59.607367255000085],[10.415537957000112,59.641913153000175],[10.41146894600007,59.66229889500006],[10.408702019000089,59.67121002800009],[10.4030054050001,59.682847398000106],[10.397634311000047,59.68805573100009],[10.374522332000112,59.70429108300014],[10.371104363000086,59.70673248900008],[10.360524936000045,59.71100495000008],[10.35377037900011,59.71067942900009],[10.352468295000108,59.71063873900009],[10.347341342000107,59.71039459800012],[10.332286004000082,59.711493231000176],[10.296641472000118,59.73200104400003],[10.266856316000116,59.73973216400004],[10.238942905000073,59.73875560100008],[10.224375847000147,59.723822333000115],[10.23804772200009,59.718980210000055],[10.257090691000087,59.701076565000086],[10.268890821000042,59.697170315],[10.284434441000142,59.695705471000124],[10.297211134000092,59.69179922100012],[10.360036655000071,59.67275625200013],[10.379242384000122,59.65835195500007],[10.39087975400011,59.63816966400004],[10.394867384000094,59.611151434000085],[10.39421634200005,59.586371161000145],[10.390147332000083,59.55829498900011],[10.38103274800011,59.53534577000015],[10.364268425000091,59.525824286000145],[10.332774285000056,59.53261953300007],[10.269379102000128,59.55902741100006],[10.237315300000148,59.55996328300014],[10.247813347000118,59.54315827000011],[10.267914259000065,59.525051174000126],[10.291026238000114,59.51056549700017],[10.310313347000147,59.50470612200003],[10.331309441000114,59.495062567000055],[10.36939537900008,59.45526764500009],[10.458994988000141,59.440863348],[10.477549675000148,59.42963288000012],[10.48031660200013,59.41209544500008],[10.472178582000112,59.39386627800008],[10.446787957000083,59.36473216400013],[10.444509311000104,59.348944403000175],[10.461680535000141,59.335760809000035],[10.498708530000073,59.31976959800012],[10.514170769000089,59.30292389500011],[10.504730665000068,59.293402411000145],[10.487071160000141,59.28412506700009],[10.477549675000148,59.26821523600017],[10.469574415000096,59.247788804],[10.451182488000143,59.24896881700012],[10.416188998000052,59.265082098000086],[10.371592644000087,59.273749091000084],[10.360850457000083,59.27130768400014],[10.359141472000147,59.265082098000086],[10.361094597000118,59.245184637000094],[10.360850457000083,59.23786041900008],[10.364756707000053,59.22597890800012],[10.361989780000101,59.21954987200003],[10.334727410000113,59.214789130000106],[10.330251498000052,59.20966217700011],[10.328379754000082,59.20221588700004],[10.317149285000085,59.17959219000006],[10.3131616550001,59.15936920800005],[10.311778191000116,59.13971588700009],[10.313731316000087,59.127997137000115],[10.289805535000113,59.13458893400009],[10.286957227000073,59.114894924000154],[10.295909050000091,59.084702867000125],[10.306895379000139,59.05971914300004],[10.29265384200005,59.070135809000085],[10.28663170700014,59.08429596600003],[10.281993035000113,59.099676825000174],[10.272146030000101,59.11432526200018],[10.268077019000145,59.09467194200012],[10.269541863000086,59.04779694200008],[10.26246178500014,59.0385602890001],[10.260101759000094,59.04999420800006],[10.231130405000101,59.11432526200018],[10.224375847000147,59.11432526200018],[10.222666863000141,59.10089752800009],[10.212738477000128,59.07811107000008],[10.211273634000094,59.06655508000013],[10.216563347000147,59.05890534100011],[10.225922071000099,59.050238348],[10.232188347000147,59.04035065300009],[10.227793816000142,59.028957424000126],[10.207041863000143,59.01642487200003],[10.174978061000076,59.005316473],[10.140798373000079,58.99994538000006],[10.114512566000087,59.00507233300005],[10.125661655000101,59.01455312700006],[10.161875847000118,59.02753327000007],[10.169688347000118,59.03546784100002],[10.16342207100007,59.05231354400002],[10.148773634000065,59.05158112200008],[10.117930535000085,59.0385602890001],[10.103770379000053,59.03538646000005],[10.076508009000065,59.0213076840001],[10.059418165000125,59.018133856000034],[10.053721550000148,59.02285390800013],[10.033457879000139,59.03107330900006],[10.016774936000104,59.033677476000044],[10.033376498000052,58.99347565300015],[10.014821811000047,58.973130601000044],[9.983653191000144,58.96088288],[9.957367384000037,58.95669179900016],[9.84620201900006,58.95563385600009],[9.81218509200005,58.96344635600009],[9.838877800000148,58.971869208000136],[9.845225457000083,58.989325262000094],[9.836761915000068,59.009344794000164],[9.819590691000116,59.02558014500012],[9.781748894000089,59.05117422100009],[9.76596113400012,59.05239492400002],[9.758148634000063,59.03237539300015],[9.748871290000096,59.03790924700014],[9.72396894600007,59.05971914300004],[9.71892337300011,59.061509507000025],[9.712087436000104,59.06232330900013],[9.706065300000091,59.06427643400015],[9.703461134000094,59.06997304900013],[9.704112175000148,59.08429596600003],[9.703461134000094,59.086981512000094],[9.688487175000148,59.090765692000126],[9.685394727000073,59.0800641950001],[9.686289910000085,59.06264883000012],[9.683116082000112,59.046047268000095],[9.668630405000073,59.051459052000105],[9.660980665000125,59.05630117400001],[9.648936394000115,59.07330963700015],[9.645274285000085,59.08368561400005],[9.644867384000063,59.09389883],[9.641368035000085,59.10244375200012],[9.628428582000083,59.10809967700011],[9.640472852000073,59.11758047100012],[9.639821811000047,59.12726471600009],[9.630625847000147,59.131415106000034],[9.600922071000127,59.11566803600005],[9.539073113000143,59.12055084800012],[9.559092644000117,59.102362372000144],[9.62134850400011,59.07526276200012],[9.63461347700013,59.049465236000096],[9.654144727000102,59.037298895],[9.69434655000012,59.02948639500004],[9.72681725400011,59.01520416900003],[9.72396894600007,58.983954169000135],[9.717784050000091,58.983954169000135],[9.714854363000057,58.98859284100017],[9.708669467000107,58.99339427300008],[9.703461134000094,58.99823639500015],[9.695648634000122,58.98737213700015],[9.684743686000047,58.98346588700014],[9.65577233200014,58.983954169000135],[9.65577233200014,58.977118231000034],[9.667491082000112,58.976141669000135],[9.677500847000118,58.972601630000085],[9.68506920700014,58.96625397300015],[9.689789259000065,58.95669179900016],[9.663340691000087,58.95880768400015],[9.594248894000089,58.943019924000126],[9.594248894000089,58.936183986000025],[9.598317905000044,58.934556382],[9.607920769000117,58.92869700700013],[9.575938347000118,58.921454169000114],[9.470062696000127,58.92869700700013],[9.508636915000096,58.910834052000084],[9.523936394000145,58.90005117400006],[9.511485222000118,58.89520905199999],[9.471527540000068,58.900824286],[9.455902540000096,58.897691148000106],[9.450368686000076,58.881537177000055],[9.42807050900012,58.89313385600015],[9.399424675000148,58.89850495000003],[9.373789910000085,58.89541250200013],[9.360199415000123,58.881537177000055],[9.381521030000101,58.88768138200014],[9.394216342000078,58.889878648000106],[9.402028842000078,58.88837311400007],[9.403656446000099,58.88092682500008],[9.398936394000089,58.87421295800014],[9.391286655000043,58.86920807500011],[9.384532097000118,58.86725495000014],[9.339528842000021,58.86261627800003],[9.318532748000079,58.866034247000066],[9.298838738000141,58.881537177000055],[9.294200066000114,58.868353583],[9.270843946000127,58.833156643000144],[9.282725457000083,58.83307526200015],[9.302989129000082,58.82721588700012],[9.312510613000084,58.82632070500013],[9.323090040000125,58.82859935100011],[9.354177280000044,58.83999258000007],[9.379649285000141,58.844183661],[9.403168165000096,58.84406159100003],[9.426117384000094,58.84015534100002],[9.450368686000076,58.833156643000144],[9.436208530000044,58.820298570000126],[9.387950066000116,58.80337148600013],[9.367035352000073,58.792181708000115],[9.388438347000118,58.79437897300012],[9.408702019000117,58.79962799700011],[9.408702019000117,58.792181708000115],[9.39234459700009,58.78733958500005],[9.370941602000071,58.778021552000105],[9.351410352000073,58.76552969],[9.340505405000101,58.75116608300011],[9.306488477000073,58.738714911],[9.249278191000114,58.73358795799999],[9.080088738000057,58.744370835],[9.070974155000073,58.741197007000146],[9.062347852000073,58.73411692900007],[9.058441602000073,58.72703685100011],[9.062998894000115,58.72382233300005],[9.143565300000091,58.709784247000094],[9.169118686000076,58.71645742400015],[9.114268425000148,58.73110586100016],[9.100840691000142,58.737534897999986],[9.214691602000102,58.72162506700006],[9.21631920700014,58.70278554900004],[9.186696811000104,58.69159577],[9.095062696000099,58.69025299700003],[9.059336785000085,58.68292877800011],[9.089121941000087,58.68325429900012],[9.15601647200009,58.68854401200012],[9.182871941000085,58.68634674700002],[9.200531446000099,58.67234935100007],[9.190196160000085,58.66486237200008],[9.15221528300009,58.64327380400006],[9.089180461000126,58.614416705],[9.033836547000135,58.59475403200018],[8.990977410000085,58.60032786700013],[8.985606316000116,58.59723541900014],[8.981781446000127,58.59251536700005],[8.977712436000076,58.588446356000176],[8.971202019000144,58.58673737200017],[8.963877800000148,58.58869049700003],[8.955088738000086,58.59739817900011],[8.94947350400008,58.60032786700013],[8.925303582000083,58.607001044000086],[8.913340691000144,58.606878973000036],[8.918711785000113,58.5966250670001],[8.940603061000047,58.58665599200002],[8.948903842000021,58.579657294000114],[8.94629967500012,58.5693220070001],[8.950094373000127,58.547183856000075],[8.943880357000069,58.525985200000086],[8.928075741000043,58.51348633200012],[8.909419211000056,58.50089176200011],[8.847288620000114,58.46738950100014],[8.823518643000085,58.452817788000075],[8.794256959000023,58.44037859300009],[8.777450565000095,58.43408743500011],[8.754104478000045,58.427586579000106],[8.74017520400011,58.41563656199999],[8.732799730000124,58.40389647400009],[8.714523131000133,58.39180049600016],[8.7072951910001,58.3789107430001],[8.682790561000104,58.370794989000146],[8.668711785000085,58.3679059920001],[8.652842644000145,58.36640045800006],[8.641612175000148,58.36391836100013],[8.634043816000087,58.356919664000074],[8.627452019000117,58.347642320000105],[8.619395379000082,58.33869049700017],[8.607269727000102,58.33283112200003],[8.594981316000114,58.33144765800016],[8.588389519000145,58.33417389500012],[8.587738477000102,58.34153880400011],[8.579356316000144,58.34747955900007],[8.545258009000122,58.312974351000136],[8.51343834700009,58.29336172100006],[8.506358269000145,58.28310781500015],[8.518077019000117,58.27138906500015],[8.501231316000116,58.25722890800012],[8.479258660000113,58.25926341400007],[8.455821160000141,58.26406484600015],[8.435394727000071,58.25775788000012],[8.423513217000107,58.27020905200011],[8.409353061000104,58.27204010600009],[8.40056399800011,58.26581452000014],[8.404795769000145,58.254339911],[8.406260613000114,58.24420807500014],[8.38892662900011,58.24188873900008],[8.353526238000113,58.24469635600003],[8.344981316000087,58.241400458],[8.317230665000096,58.2258161480001],[8.308848504000139,58.219875393000066],[8.295258009000094,58.21271393400004],[8.259287957000112,58.20750560100013],[8.24366295700014,58.20311107000004],[8.25131269600007,58.20246002800011],[8.264903191000116,58.19891998900011],[8.271739129000139,58.19627513200014],[8.257578972000118,58.17865631700012],[8.248871290000125,58.171332098],[8.227224155000044,58.163153387000094],[8.224619988000143,58.15692780200014],[8.22250410200013,58.151678778000154],[8.222422722000147,58.14012278900013],[8.223155144000089,58.134833075000145],[8.201914910000085,58.122992255],[8.186289910000113,58.13287995000011],[8.172699415000068,58.14614492400013],[8.157969597000147,58.144476630000106],[8.136729363000086,58.11497630400005],[8.122894727000073,58.102036851000044],[8.109873894000089,58.10346100500012],[8.098480665000125,58.10838450700008],[8.065765821000099,58.11033763200011],[8.05250084700009,58.11318594000007],[8.04704837300005,58.11688873900003],[8.035492384000122,58.13011302300005],[8.024587436000047,58.141058661000116],[8.053477410000141,58.14817942900008],[8.067556186000104,58.153631903000125],[8.079844597000147,58.162095445000055],[8.060069207000112,58.177394924],[8.045746290000125,58.20400625200015],[8.029551629000082,58.22483958500011],[8.00407962300008,58.223049221000124],[8.022146030000101,58.20282623900012],[8.027598504000139,58.18317291900017],[8.022308790000068,58.16376373900006],[8.007497592000078,58.144476630000106],[7.953623894000145,58.124701239],[7.934092644000089,58.10944245000003],[7.956309441000144,58.09324778899998],[7.915782097000118,58.08185455900012],[7.75521894600007,58.07001373900006],[7.715179884000121,58.06061432500003],[7.695974155000073,58.058539130000106],[7.663910352000102,58.0672875020001],[7.653575066000086,58.06464264500001],[7.660899285000114,58.045477606000034],[7.642751498000109,58.04584381700015],[7.634613477000074,58.047796942],[7.626719597000117,58.052313544000135],[7.629242384000122,58.03123607000013],[7.614756707000082,58.02212148600013],[7.594086134000066,58.026353257000046],[7.578868035000085,58.045477606000034],[7.5748804050001,58.032049872000144],[7.575205925000119,58.02606842700012],[7.578868035000085,58.01752350500003],[7.390635613000143,58.01752350500003],[7.267588738000114,58.035956122000066],[7.253428582000111,58.04364655200005],[7.249847852000129,58.058539130000106],[7.190440300000091,58.04197825700005],[7.174978061000047,58.031195380000135],[7.166351759000064,58.046087958],[7.155528191000144,58.050279039000124],[7.082774285000085,58.03685130400013],[7.078786655000101,58.032660223],[7.078949415000068,58.02806224200007],[7.078623894000145,58.02496979400009],[7.076914910000141,58.019680080000015],[7.077484571000127,58.01264069200011],[7.076019727000073,58.006537177000055],[7.068369988000114,58.00389232000007],[7.060313347000089,58.00324127800012],[7.023122592000106,57.99481842700005],[7.006602410000113,57.993150132000046],[6.997243686000075,57.99713776200012],[7.003591342000107,58.011379299000126],[6.999359571000099,58.03070709800015],[7.022471550000147,58.043361721000124],[7.053884311000075,58.05263906500009],[7.075205925000148,58.06224192900005],[7.08773847700013,58.070624091000035],[7.09742272200009,58.06842682500003],[7.106211785000085,58.062079169000086],[7.116221550000148,58.058539130000106],[7.12452233200014,58.063381252000106],[7.140310092000078,58.08624909100011],[7.14747155000012,58.09324778899998],[7.14747155000012,58.10008372600002],[7.1276147800001,58.09756094000009],[7.064707879000081,58.078111069999984],[7.051442905000044,58.069037177],[7.034922722000146,58.062323309000035],[6.958750847000089,58.04511139500011],[6.935313347000117,58.045477606000034],[6.952484571000127,58.0580915390001],[6.979502800000091,58.08893463700018],[6.996104363000143,58.10008372600002],[6.980316602000102,58.105373440000065],[6.923675977000102,58.065252997000144],[6.900563998000051,58.052313544000135],[6.907399936000075,58.06415436400012],[6.912119988000086,58.07501862200008],[6.912852410000113,58.08641185100008],[6.907969597000147,58.10008372600002],[6.89584394600007,58.09589264500006],[6.879079623000052,58.083726304],[6.866384311000076,58.079575914000046],[6.851328972000147,58.08006419500013],[6.832204623000081,58.08429596600014],[6.814463738000085,58.09125397300015],[6.80420983200014,58.10008372600002],[6.848155144000089,58.11517975500002],[6.87077884200005,58.119208075000174],[6.949961785000113,58.12091705900018],[6.974782748000081,58.126776434000114],[6.98926842500012,58.141058661000116],[6.958994988000143,58.14008209800014],[6.90414472700013,58.13104889500011],[6.873789910000141,58.134833075000145],[6.848968946000099,58.14752838700013],[6.801524285000085,58.179348049000154],[6.77759850400011,58.182033596000124],[6.812836134000065,58.128241278000175],[6.807953321000099,58.12055084800006],[6.757334832000112,58.116359768000116],[6.731455925000091,58.119859117000125],[6.715586785000085,58.134833075000145],[6.727305535000141,58.145209052000055],[6.727305535000141,58.15753815300009],[6.723317905000072,58.17226797100009],[6.722422722000089,58.1894391950001],[6.69947350400011,58.136460679],[6.688243035000085,58.12055084800006],[6.703379754000081,58.12042877800008],[6.710622592000107,58.11546458500013],[6.715342644000116,58.107896226],[6.722422722000089,58.10008372600002],[6.733164910000113,58.09414297100007],[6.753591342000077,58.08657461100004],[6.774261915000096,58.07396067900005],[6.783213738000114,58.069810289000095],[6.78256269600007,58.06533437700013],[6.763926629000082,58.058539130000106],[6.754079623000051,58.0580915390001],[6.733653191000087,58.06427643400017],[6.722666863000113,58.06598541900008],[6.618500196000127,58.06830475500006],[6.595876498000081,58.075873114],[6.542002800000148,58.107652085000055],[6.530528191000087,58.12055084800006],[6.550303582000112,58.122870184000035],[6.56812584700009,58.13178131700006],[6.580902540000125,58.146307684000085],[6.585785352000102,58.1652692730001],[6.597015821000099,58.176499742000104],[6.653005405000044,58.177923895000085],[6.674571160000141,58.182033596000124],[6.660329623000052,58.18813711100002],[6.654063347000118,58.1894391950001],[6.675140821000127,58.20697663000005],[6.725271030000044,58.221625067000055],[6.765879754000139,58.246283270000056],[6.84595787900011,58.27138906500015],[6.828461134000065,58.27472565300017],[6.802989129000139,58.270453192000055],[6.75684655000012,58.254339911],[6.698496941000116,58.224554755],[6.68140709700009,58.223049221000124],[6.668711785000113,58.23151276200018],[6.639333530000101,58.26410553600014],[6.633636915000125,58.27484772300014],[6.640147332000111,58.29376862200017],[6.656260613000085,58.30280182500009],[6.676442905000044,58.302191473000114],[6.695078972000118,58.29189687700002],[6.708750847000147,58.312974351000136],[6.687266472000117,58.32733795800003],[6.664073113000086,58.323716539000046],[6.640879754000139,58.31635163000006],[6.619965040000095,58.31915924700009],[6.619802280000044,58.26463450700011],[6.626231316000144,58.24469635600003],[6.56234785200013,58.24310944200001],[6.499278191000116,58.262884833000115],[6.400627956000051,58.27222924400003],[6.347515413000109,58.285851239000024],[6.291758660000141,58.30866120000003],[6.280772332000082,58.312974351000136],[6.265961134000122,58.31427643400003],[6.248220248000023,58.317816473],[6.231211785000056,58.32314687700007],[6.219004754000081,58.329779364000146],[6.20337975400011,58.335516669000114],[6.140310092000107,58.33966705900014],[6.08497155000012,58.360174872000115],[6.061696811000104,58.37470123900014],[6.050629102000073,58.379461981000055],[6.021169467000077,58.38214752800004],[6.010101759000122,58.38491445500007],[6.001475457000139,58.39012278899999],[5.983897332000112,58.406398830000015],[5.97803795700014,58.414496161000145],[5.973399285000113,58.42401764500011],[5.96892337300008,58.43650950700014],[5.966970248000109,58.448391018000095],[5.96705162900011,58.45868561400003],[5.964366082000112,58.468166408000016],[5.954600457000083,58.477484442000055],[5.928477410000113,58.48358795800014],[5.837321585000097,58.48131890300005],[5.796652672000079,58.48924595700013],[5.77839094400005,58.52089927200016],[5.741953415000125,58.527004491000035],[5.704170682000097,58.52076740799999],[5.646250847000118,58.548651434000085],[5.652354561000038,58.562733296000104],[5.614598254000072,58.59323478300014],[5.571543816000116,58.62832265800016],[5.547939707000126,58.66696062000007],[5.526375706000096,58.69428704500002],[5.518161617000089,58.714221598000066],[5.50692261800009,58.7298975610001],[5.477951160000089,58.75474722700012],[5.495205047000098,58.765956515000155],[5.526723268000069,58.784113904000044],[5.53535778100013,58.798901009000176],[5.539672727000095,58.815478558],[5.539662634000052,58.83384715400017],[5.536875847000147,58.85358307500003],[5.530528191000116,58.86871979400003],[5.539235873000108,58.87498607000007],[5.553721550000148,58.877630927000055],[5.56413821700005,58.881537177000055],[5.57252037900011,58.894029039000074],[5.570648634000122,58.90005117400006],[5.562185092000078,58.90525950700005],[5.550547722000089,58.91571686400014],[5.54932701900006,58.920843817000055],[5.543223504000081,58.93475983300014],[5.535655144000117,58.94599030200013],[5.537119988000086,58.956122137000094],[5.54639733200014,58.95473867400001],[5.556976759000094,58.94733307500003],[5.567881707000083,58.943019924000126],[5.597666863000085,58.915594794000164],[5.617360873000109,58.907294012000094],[5.626231316000058,58.92560455900015],[5.616384311000047,58.935614325000024],[5.59359785200013,58.949937242000125],[5.550547722000089,58.97089264500006],[5.560394727000102,58.977972723000114],[5.570648634000122,58.9820824240001],[5.58106530000012,58.982245184000064],[5.59156334700009,58.977118231000034],[5.578868035000113,58.989081122000144],[5.541026238000085,58.98456452],[5.523203972000118,58.99140045800011],[5.535655144000117,58.99860260600014],[5.54249108200014,59.009588934000114],[5.550547722000089,59.0385602890001],[5.715586785000085,58.977118231000034],[5.706309441000143,58.95221588700009],[5.701019727000073,58.91913483300005],[5.702972852000102,58.88760000200015],[5.715586785000085,58.86725495000014],[5.735524936000075,58.92869700700013],[5.754079623000081,58.93390534100002],[5.800791863000086,58.93183014500003],[5.818125847000146,58.936183986000025],[5.819509311000047,58.942206122000115],[5.81739342500012,58.95978424700014],[5.821787957000112,58.96344635600009],[5.853526238000057,58.96503327000012],[5.865896030000101,58.96344635600009],[5.882497592000078,58.959295966000134],[5.919606967000077,58.94505442900005],[5.934092644000117,58.936183986000025],[5.957367384000122,58.91351959800015],[5.969981316000116,58.90363190300004],[6.092539910000141,58.847235419000086],[6.135101759000094,58.839585679000045],[6.228851759000122,58.83999258000007],[6.206228061000047,58.84902578300007],[6.11898847700013,58.85358307500003],[6.102549675000148,58.859767971000096],[6.082041863000085,58.87079498900014],[6.064789259000094,58.88540273600016],[6.05762780000012,58.902044989],[6.063731316000116,58.91364166900003],[6.077891472000147,58.92829010600003],[6.105316602000102,58.95038483300011],[6.126475457000111,58.96210358300003],[6.194834832000083,58.983954169000135],[6.626231316000144,59.05280182500012],[6.626231316000144,59.05971914300004],[6.352061394000089,59.03302643400009],[6.298675977000044,59.01512278900005],[6.160411004000138,58.99823639500015],[6.12680097700013,58.983710028000125],[6.033864780000044,58.90517812700007],[5.982676629000081,58.95172760600012],[5.975108269000117,58.96344635600009],[5.984060092000078,58.98407623900011],[6.006358269000089,58.991034247000115],[6.031911655000101,58.99290599199998],[6.050791863000114,58.99823639500015],[6.037445509000094,59.00283437700007],[6.020030144000145,59.01996491100011],[6.00912519600007,59.02558014500012],[5.992442254000109,59.02513255400011],[5.953949415000124,59.01642487200003],[5.934092644000117,59.018133856000034],[5.913910352000102,59.02806224200005],[5.891856316000087,59.045355536000145],[5.875498894000089,59.06622955900012],[5.872731967000021,59.086981512000094],[5.890635613000085,59.10390859600009],[5.923024936000076,59.11347077000009],[6.021820509000122,59.12612539300016],[6.050791863000114,59.13475169500004],[6.108409050000091,59.142523505000064],[6.126475457000111,59.148423569999984],[6.089366082000082,59.15289948100014],[6.039317254000081,59.14744700700011],[6.00879967500012,59.14935944200006],[6.030446811000047,59.17576732000007],[6.064300977000102,59.20722077000009],[6.078786655000044,59.21670156500009],[6.125173373000108,59.23383209800012],[6.171397332000112,59.261419989000146],[6.252126498000109,59.277248440000065],[6.323903842000106,59.31500885600003],[6.369313998000109,59.32135651200015],[6.461680535000113,59.31976959800012],[6.461680535000113,59.32656484600006],[6.339121941000087,59.32656484600006],[6.313812696000042,59.32294342699999],[6.202403191000116,59.27704498900011],[6.154144727000102,59.26776764500006],[6.112315300000091,59.274562893],[6.08497155000012,59.306708075000145],[6.236338738000086,59.312933661000116],[6.236338738000086,59.31976959800012],[6.226573113000143,59.330145575000024],[6.212087436000104,59.33978913],[6.199229363000057,59.351548569999984],[6.200694207000111,59.34414297100009],[6.197601759000037,59.33470286699998],[6.188649936000104,59.32656484600006],[6.172129754000139,59.32123444200001],[6.164561394000089,59.32746002800015],[6.15845787900011,59.33661530200014],[6.146983269000145,59.340236721],[6.143809441000087,59.33771393400017],[6.12989342500012,59.32314687700015],[6.122813347000147,59.31976959800012],[6.112152540000125,59.318426825000145],[6.101247592000049,59.318670966000084],[6.092458530000073,59.31976959800012],[6.078379754000139,59.32453034100003],[6.069183790000067,59.33177317900005],[6.062998894000089,59.341538804],[6.05762780000012,59.353908596000124],[6.05404707100007,59.3346214860001],[6.037445509000094,59.32746002800015],[6.015391472000118,59.328558661],[5.995453321000127,59.33405182500003],[5.995453321000127,59.340236721],[6.007578972000118,59.346136786000116],[6.015472852000102,59.35504791900017],[6.022227410000113,59.36530182500009],[6.030446811000047,59.37494538000006],[6.041514519000145,59.38369375200013],[6.053396030000101,59.39081452],[6.078786655000044,59.40228913000014],[6.129242384000065,59.41730377800014],[6.153819207000083,59.42739492400012],[6.174327019000117,59.44383372600011],[6.17750084700009,59.44000885600012],[6.18531334700009,59.43329498900005],[6.188649936000104,59.42963288000012],[6.193044467000107,59.43821849200014],[6.198090040000125,59.44562409100011],[6.211761915000068,59.46002838700017],[6.216156446000041,59.46808502800011],[6.217946811000047,59.48851146],[6.222666863000143,59.497870184000114],[6.242686394000116,59.51056549700017],[6.427500847000147,59.55097077000011],[6.544200066000116,59.55996328300014],[6.50521894600007,59.57127513200014],[6.33611087300008,59.55361562700001],[6.272146030000101,59.52814362200011],[6.236338738000086,59.525824286000145],[6.249278191000087,59.54083893400018],[6.264984571000042,59.555812893],[6.278575066000116,59.57200755400005],[6.284190300000091,59.59100983300006],[6.285004102000101,59.610296942],[6.28874759200005,59.62913646000013],[6.297048373000024,59.64496491100008],[6.311534050000091,59.655503648000135],[6.28646894600007,59.64923737200008],[6.266856316000116,59.62563711100013],[6.254079623000081,59.59552643400012],[6.24935957100007,59.56989166900014],[6.24586022200009,59.561957098000086],[6.237315300000148,59.54979075700002],[6.219004754000081,59.52895742400012],[6.198252800000091,59.51105377800014],[6.162852410000085,59.4684919290001],[6.153005405000073,59.459418036000116],[6.140310092000107,59.45010000200006],[6.09913170700014,59.4326846370001],[6.078135613000086,59.4193382830001],[6.041514519000145,59.40497467700011],[6.027028842000107,59.40228913000014],[6.009532097000146,59.407619533000016],[5.998301629000082,59.428412177],[5.982595248000109,59.42963288000012],[5.988617384000094,59.415961005000085],[5.983246290000068,59.41412995000009],[5.97437584700009,59.4098167990001],[5.96892337300008,59.40851471600008],[5.96892337300008,59.40228913000014],[5.978363477000073,59.40013255400014],[5.98609459700009,59.395900783],[5.991953972000118,59.38947174700011],[5.995453321000127,59.38117096600003],[5.94857832100007,59.36025625200007],[5.924164259000122,59.355780341000106],[5.91374759200005,59.37156810100005],[5.910004102000102,59.382025458000115],[5.901703321000126,59.389105536],[5.892751498000081,59.395168361000074],[5.886241082000082,59.40228913000014],[5.882497592000078,59.41522858300014],[5.882823113000086,59.42511627800014],[5.885020379000082,59.434719143000116],[5.886241082000082,59.446966864],[5.924082879000139,59.44611237200009],[6.153168165000125,59.47744375200013],[6.133555535000056,59.490057684000035],[6.104340040000125,59.49290599200007],[6.073741082000112,59.48895905200008],[6.024668816000144,59.47431061400006],[5.901866082000083,59.47907135600015],[5.887461785000113,59.482245184000035],[5.872731967000021,59.487982489],[5.863536004000139,59.49428945500013],[5.849375847000118,59.508734442],[5.84229576900006,59.51154205900014],[5.834483269000089,59.5156110700001],[5.823008660000113,59.53424713700009],[5.818125847000146,59.53949616100009],[5.807383660000141,59.53937409100011],[5.78891035200013,59.52863190300009],[5.777110222000147,59.525824286000145],[5.803477410000141,59.49477773600013],[5.807871941000116,59.48029205900018],[5.797536655000044,59.46312083500005],[5.77637780000012,59.45091380399999],[5.748383009000093,59.44578685100008],[5.722829623000109,59.45115794500013],[5.708262566000087,59.47060781500012],[5.713715040000125,59.446682033000165],[5.696462436000104,59.429429429000045],[5.64616946700005,59.40851471600008],[5.664398634000122,59.40648021000008],[5.735524936000075,59.42963288000012],[5.763031446000099,59.43235911699999],[5.78419030000012,59.429266669000086],[5.80250084700009,59.42011139500003],[5.852549675000091,59.38499583500014],[5.858164910000085,59.37457916900014],[5.859629754000139,59.35077545800006],[5.846364780000044,59.34690989800005],[5.783539259000064,59.343207098],[5.763438347000118,59.34772370000014],[5.752696160000113,59.33624909100002],[5.738454623000109,59.334784247000144],[5.70484459700009,59.340236721],[5.697927280000073,59.338039455000015],[5.697601759000065,59.33266836100013],[5.698578321000126,59.32587311400012],[5.695160352000102,59.31976959800012],[5.682383660000084,59.312933661000116],[5.677744988000143,59.30980052300005],[5.666514519000144,59.30467357000013],[5.624196811000046,59.29218170800011],[5.611989780000073,59.29303620000003],[5.609629754000109,59.305568752000035],[5.618662957000112,59.31688060100011],[5.632985873000109,59.324774481000176],[5.64616946700005,59.32656484600006],[5.64616946700005,59.33405182500003],[5.623383009000122,59.35455963700018],[5.607269727000073,59.39028554900001],[5.586599155000044,59.41648997600005],[5.560720248000023,59.409328518],[5.570078972000146,59.40741608300005],[5.578135613000086,59.40277741100011],[5.585297071000127,59.39545319200011],[5.577810092000078,59.37592194200015],[5.576345248000109,59.332993882000075],[5.567881707000083,59.316351630000106],[5.54932701900006,59.29970937700007],[5.529307488000086,59.2857933610001],[5.505381707000139,59.27773672100006],[5.475433790000068,59.278753973000114],[5.456065300000148,59.288519598000065],[5.435801629000139,59.30768463700003],[5.423838738000114,59.330471096000146],[5.430430535000085,59.35077545800006],[5.440603061000047,59.36981842700005],[5.441742384000065,59.39223867400007],[5.433116082000055,59.40509674700009],[5.413340691000143,59.39545319200011],[5.404307488000113,59.378973700000024],[5.40284264400006,59.35903554900016],[5.406504754000109,59.316351630000106],[5.404633009000065,59.30426666900003],[5.399424675000148,59.29669830900017],[5.390879754000139,59.29462311400006],[5.379242384000122,59.29926178600009],[5.37273196700005,59.30719635600006],[5.369476759000094,59.31834544500008],[5.365570509000094,59.340236721],[5.353851759000093,59.35529205900012],[5.349945509000094,59.366441148000135],[5.358246290000095,59.38719310100013],[5.357595248000052,59.39988841400001],[5.35377037900011,59.411078192],[5.348399285000056,59.415961005000085],[5.336273634000065,59.41510651200015],[5.332692905000101,59.4115257830001],[5.330414259000122,59.358099677000055],[5.331390821000099,59.353908596000124],[5.297211134000122,59.34467194200006],[5.231211785000085,59.42426178600005],[5.201670769000117,59.42963288000012],[5.196055535000113,59.44428131700012],[5.191905144000089,59.46303945500007],[5.187998894000089,59.497870184000114],[5.185883009000064,59.502875067000055],[5.182790561000104,59.50674062700007],[5.182302280000101,59.511216539000124],[5.187998894000089,59.51837799700017],[5.199717644000089,59.52460358300012],[5.213389519000117,59.52667877800014],[5.242686394000117,59.525824286000145],[5.242686394000117,59.532049872000115],[5.201670769000117,59.53949616100009],[5.201670769000117,59.546291408000016],[5.222504102000102,59.55170319200006],[5.237803582000055,59.55963776200012],[5.290375196000099,59.60089752800017],[5.304047071000126,59.62824127800014],[5.32129967500012,59.63825104400003],[5.344248894000117,59.64765045800005],[5.367523634000036,59.652655341000084],[5.385996941000059,59.649359442000055],[5.39356530000012,59.63800690300009],[5.401621941000144,59.60553620000008],[5.413340691000143,59.59467194200011],[5.415782097000061,59.61127350500009],[5.428070509000122,59.624986070000105],[5.427012566000087,59.63568756700011],[5.417816602000102,59.649359442000055],[5.401621941000144,59.66079336100001],[5.399668816000086,59.66982656500012],[5.41163170700014,59.689195054000145],[5.437185092000107,59.708197333000136],[5.489105665000096,59.73810455900013],[5.484141472000147,59.72772858300011],[5.481700066000116,59.723822333000115],[5.493011915000095,59.71832916900009],[5.498708530000073,59.71442291900011],[5.50212649800008,59.71015045799999],[5.505544467000107,59.69269440300003],[5.504567905000044,59.67182038000005],[5.498057488000114,59.65058014500009],[5.485362175000063,59.63198476800009],[5.480479363000086,59.621323960000055],[5.482758009000065,59.61005280200005],[5.48731530000012,59.598578192000026],[5.489105665000096,59.587307033000016],[5.487803582000112,59.57501862200014],[5.485524936000047,59.56976959800009],[5.461680535000141,59.55996328300014],[5.457855665000124,59.55670807500008],[5.453135613000114,59.54804108300003],[5.45085696700005,59.546291408000016],[5.432790561000046,59.54718659100011],[5.42367597700013,59.54637278900001],[5.416758660000141,59.54291413],[5.411794467000106,59.5346540390001],[5.40772545700014,59.521795966000084],[5.407888217000107,59.51622142100017],[5.408050977000073,59.50991445500013],[5.416758660000141,59.50470612200003],[5.422536655000101,59.50649648600001],[5.434336785000084,59.515204169000114],[5.441254102000072,59.51837799700017],[5.505625847000089,59.53335195500002],[5.516368035000085,59.53949616100009],[5.526866082000054,59.553859768000066],[5.528737826000025,59.55792877800012],[5.537364129000139,59.57684967700014],[5.54004967500012,59.59829336100007],[5.526621941000116,59.607733466000084],[5.523610873000109,59.61790599200005],[5.534027540000096,59.64057038],[5.55030358200014,59.664007880000085],[5.56413821700005,59.67666250200012],[5.580577019000117,59.67902252800009],[5.608571811000047,59.672023830000015],[5.626231316000058,59.66982656500012],[5.694590691000144,59.66982656500012],[5.721934441000116,59.663478908000094],[5.730967644000117,59.64765045800005],[5.727061394000117,59.627386786000145],[5.715586785000085,59.607733466000084],[5.743011915000039,59.60785553600006],[5.754405144000117,59.60984935100011],[5.763438347000118,59.61456940300011],[5.765310092000078,59.62042877800014],[5.764170769000145,59.63849518400017],[5.766856316000116,59.64557526200004],[5.789073113000085,59.65643952000013],[5.820160352000102,59.65884023600015],[5.879405144000089,59.655503648000135],[5.879405144000089,59.67666250200012],[5.788584832000083,59.66014232000008],[5.763438347000118,59.66233958500005],[5.746104363000114,59.67552317900011],[5.755625847000118,59.68829987200014],[5.797536655000044,59.71015045799999],[5.803477410000141,59.71674225500006],[5.807465040000124,59.72361888200008],[5.814219597000147,59.72907135600012],[5.874766472000147,59.735296942000055],[5.886241082000082,59.73810455900013],[5.893077019000116,59.745672919000164],[5.893077019000116,59.754461981000034],[5.894053582000083,59.76178620000005],[5.903086785000085,59.764797268000144],[5.912608269000089,59.762193101000044],[5.920746290000096,59.75617096600015],[5.92758222700013,59.74949778899999],[5.934092644000117,59.74494049700005],[5.98585045700014,59.73574453300007],[6.038096550000148,59.74518463700018],[6.162282748000109,59.796861070000126],[6.17090905000012,59.802679755000085],[6.177419467000106,59.805609442],[6.191742384000094,59.80597565300012],[6.198252800000091,59.80947500200001],[6.210948113000143,59.82444896000014],[6.215179884000065,59.82746002800006],[6.291758660000141,59.84031810100008],[6.311534050000091,59.854193427000055],[6.244313998000052,59.84357330900012],[6.121918165000068,59.80475495000008],[6.037119988000085,59.764797268000144],[6.02051842500012,59.76015859600004],[6.002289259000037,59.75861237200017],[5.96387780000012,59.759955145000056],[5.945323113000113,59.76593659100008],[5.934092644000117,59.779038804000045],[5.934418165000067,59.79462311400014],[5.944102410000113,59.80133698100009],[5.955821160000085,59.80634186400011],[5.961436394000089,59.81659577000006],[5.957530144000089,59.84125397300014],[5.959157748000109,59.850531317],[5.96892337300008,59.86102936400008],[5.946787957000083,59.855536200000145],[5.934255405000101,59.841498114],[5.928558790000096,59.82257721600018],[5.927256707000112,59.802679755000085],[5.914398634000094,59.79144928600008],[5.885020379000082,59.781317450000024],[5.852875196000127,59.77423737200014],[5.831716342000107,59.77220286700013],[5.809092644000145,59.77822500200012],[5.79037519600007,59.78925202000009],[5.759613477000102,59.81659577000006],[5.735524936000075,59.82880280200015],[5.71509850400011,59.83173248900006],[5.707530144000145,59.838120835000076],[5.721853061000047,59.86102936400008],[5.70443769600007,59.85114166900015],[5.68140709700009,59.841498114],[5.659841342000078,59.83999258000012],[5.64616946700005,59.854193427000055],[5.670420769000145,59.85590241100006],[5.696543816000087,59.862250067],[5.742930535000056,59.882066148000106],[5.740244988000086,59.90989817900008],[5.772227410000085,59.93073151200003],[5.818858269000089,59.94448476800007],[5.859629754000139,59.95099518400015],[5.965098504000139,59.95661041900014],[5.971527540000068,59.959540106000176],[5.977224155000044,59.966538804000045],[5.981130405000044,59.97475820500015],[5.982595248000109,59.98110586100007],[5.97803795700014,59.98480866100011],[5.947764519000144,59.99750397300009],[6.010020379000139,60.05744049700003],[6.097992384000094,60.09186432500014],[6.291026238000114,60.12164948100015],[6.291026238000114,60.12909577000012],[6.266449415000096,60.127630927000084],[6.261729363000114,60.13776276200003],[6.262950066000116,60.15192291900014],[6.25684655000012,60.162665106000155],[6.247406446000127,60.161322333000086],[6.233409050000148,60.154730536],[6.220713738000086,60.1461449240001],[6.215179884000065,60.13873932500012],[6.20053144600007,60.12543366100008],[6.166840040000068,60.11505768400018],[6.12989342500012,60.10871002800014],[6.105316602000102,60.10736725500005],[6.107758009000122,60.13410065300018],[6.084320509000065,60.168605861000096],[6.074961785000113,60.198391018],[6.142344597000118,60.21548086100013],[6.155772332000112,60.226711330000136],[6.166514519000145,60.24213288000008],[6.18116295700014,60.258856512000094],[6.209157748000081,60.27680084800014],[6.213389519000089,60.28628164300006],[6.201670769000089,60.29979075700014],[6.258474155000073,60.3080915390001],[6.277354363000086,60.31346263200008],[6.287852410000141,60.32021719],[6.309418165000068,60.33783600500011],[6.321625196000127,60.341376044000114],[6.333343946000127,60.34259674700003],[6.335785352000073,60.3456891950001],[6.33545983200014,60.35008372599999],[6.338715040000095,60.355047919000135],[6.33814537900011,60.35541413000005],[6.340993686000076,60.35895416900014],[6.34595787900011,60.36375560100013],[6.351817254000138,60.36810944200012],[6.383555535000113,60.377020575000145],[6.417653842000107,60.38239166900003],[6.441661004000053,60.38886139500011],[6.478688998000081,60.42011139500009],[6.502696160000141,60.430812893],[6.537933790000096,60.43414948100003],[6.574229363000086,60.43195221600015],[6.640391472000061,60.416489976000136],[6.591970248000081,60.36367422100015],[6.57178795700014,60.330755927000084],[6.578379754000109,60.30662669500004],[6.567637566000116,60.293890692],[6.536957227000102,60.27228424700008],[6.530528191000087,60.26227448100012],[6.521739129000139,60.18585846600012],[6.51270592500012,60.15289948100003],[6.510101759000122,60.13532135600009],[6.510101759000122,60.11009349200013],[6.516937696000127,60.08075592700011],[6.523773634000065,60.08075592700011],[6.524180535000056,60.135199286000116],[6.529144727000102,60.16388580900018],[6.548187696000099,60.18276601800004],[6.578379754000109,60.22467682500012],[6.581797722000118,60.238226630000085],[6.58106530000009,60.248480536000024],[6.571543816000116,60.27252838700003],[6.596364780000073,60.29486725500008],[6.630381707000082,60.357489325000174],[6.654063347000118,60.38239166900003],[6.671397332000083,60.390529690000115],[6.701426629000138,60.39940013199999],[6.715586785000085,60.4096540390001],[6.74830162900011,60.446356512000115],[6.763926629000082,60.457464911000145],[6.783376498000081,60.46686432500018],[6.80258222700013,60.4728050800001],[6.942149285000141,60.49225495000009],[7.032481316000115,60.47785065300004],[7.078786655000101,60.47939687700007],[7.105967644000117,60.50584544500005],[6.900563998000051,60.50584544500005],[6.900563998000051,60.512111721],[6.908213738000086,60.5126000020001],[6.91749108200014,60.51459381700012],[6.92514082100007,60.51788971600015],[6.928477410000113,60.52236562700012],[6.932465040000068,60.5331891950001],[6.942149285000141,60.53660716400013],[6.953379754000139,60.53717682500009],[6.96265709700009,60.539374091000084],[7.01726321700005,60.587836005000085],[6.988047722000118,60.58954498900009],[6.950205925000063,60.57489655200008],[6.913422071000099,60.55296458500013],[6.887461785000085,60.5331891950001],[6.855967644000089,60.50324127800014],[6.83969160200013,60.496079820000105],[6.772308790000125,60.48533763199999],[6.736094597000118,60.47113678600009],[6.674571160000141,60.436957098000086],[6.65609785200013,60.433010158000016],[6.630056186000076,60.43105703300016],[6.605642123000109,60.43374258000013],[6.592051629000139,60.443793036000024],[6.602305535000085,60.46523672100015],[6.67359459700009,60.50055573100017],[6.695078972000118,60.518947658000016],[6.647715691000087,60.51300690300009],[6.561859571000127,60.462958075000174],[6.51351972700013,60.450628973000114],[6.482920769000117,60.44749583500005],[6.427500847000147,60.43390534100008],[6.397227410000141,60.430812893],[6.370860222000147,60.42462799700014],[6.319672071000098,60.39647044500008],[6.297211134000094,60.38857656500009],[6.270762566000116,60.38963450700013],[6.246348504000053,60.398098049000104],[6.225271030000044,60.412298895],[6.20834394600007,60.430812893],[6.195323113000086,60.46430084800006],[6.188649936000104,60.47113678600009],[6.17750084700009,60.47101471600011],[6.17562910200013,60.46161530199999],[6.179209832000112,60.449286200000024],[6.184825066000087,60.440375067],[6.192149285000113,60.432562567],[6.211761915000068,60.40595123900006],[6.232269727000129,60.39516836100015],[6.240977410000113,60.38788483300014],[6.239431186000076,60.37897370000012],[6.225433790000095,60.37396881700006],[6.192149285000113,60.38344961100007],[6.165293816000116,60.37360260600014],[6.133067254000082,60.37327708500011],[6.11898847700013,60.36810944200012],[6.134287957000082,60.36188385600015],[6.188649936000104,60.355047919000135],[6.179698113000086,60.33991120000014],[6.151052280000101,60.32103099200011],[6.140310092000107,60.30662669500004],[6.148448113000113,60.296128647999986],[6.153575066000115,60.290961005000085],[6.160655144000089,60.28620026200018],[6.15170332100007,60.26764557500017],[6.139903191000087,60.25433991100005],[6.124766472000089,60.24673086100002],[6.105316602000102,60.24518463700015],[6.083832227000072,60.250677802],[6.037119988000085,60.269598700000024],[6.01661217500012,60.27252838700003],[5.996429884000093,60.26496002800009],[5.985606316000116,60.250555731000034],[5.978363477000073,60.23330312700004],[5.96892337300008,60.217230536000145],[5.934092644000117,60.19061920799999],[5.914724155000101,60.16885000200013],[5.906748894000145,60.162665106000155],[5.889984571000126,60.159816799000126],[5.873871290000068,60.16323476800013],[5.860524936000046,60.163072007000075],[5.851573113000114,60.149603583],[5.852793816000143,60.13711172100009],[5.872731967000021,60.087551174000154],[5.873383009000064,60.05093008000013],[5.855967644000089,60.02374909100003],[5.824554884000065,60.007798570000105],[5.783864780000101,60.00495026200015],[5.78663170700014,60.01190827000006],[5.790700717000107,60.019273179000045],[5.771657748000109,60.023504950000174],[5.756032748000024,59.99066803600009],[5.739268425000119,59.994452216000084],[5.706065300000091,60.00885651200014],[5.701426629000082,60.015529690000115],[5.699473504000109,60.02362702000015],[5.694834832000082,60.030666408000016],[5.688324415000096,60.03620026200004],[5.68140709700009,60.03974030200011],[5.688649936000019,60.06085846600002],[5.699473504000109,60.06663646],[5.735524936000075,60.06024811400007],[5.756521030000015,60.06037018400004],[5.775726759000065,60.06549713700015],[5.79053795700014,60.07660553600009],[5.797536655000044,60.09438711100007],[5.756602410000085,60.09438711100007],[5.750661655000073,60.09223053600005],[5.747243686000076,60.087551174000154],[5.742442254000082,60.08283112200015],[5.732432488000085,60.08075592700011],[5.721202019000089,60.083889065],[5.714610222000118,60.090969143000066],[5.709971550000091,60.098049221000124],[5.700205925000148,60.10390859600007],[5.708262566000087,60.109767971],[5.725596550000062,60.11823151200014],[5.729177280000044,60.13239166900017],[5.705577019000117,60.160305080000015],[5.708262566000087,60.17633698100009],[5.724782748000052,60.18659088700003],[5.790700717000107,60.20425039300015],[5.790700717000107,60.21108633000016],[5.758067254000053,60.21002838700009],[5.718760613000142,60.20246002800014],[5.68116295700014,60.19061920799999],[5.653575066000144,60.17633698100009],[5.651621941000087,60.17145416900003],[5.650726759000094,60.15619538000006],[5.64616946700005,60.149603583],[5.637461785000084,60.14765045800014],[5.617035352000102,60.14996979400011],[5.593028191000144,60.13857656500015],[5.572764519000145,60.14130280200011],[5.55404707100007,60.150539455000064],[5.543711785000056,60.162665106000155],[5.560069207000083,60.16693756700009],[5.57406660200013,60.1767438820001],[5.578135613000086,60.18797435100011],[5.56413821700005,60.19676341399998],[5.56413821700005,60.20425039300015],[5.600271030000073,60.20600006700014],[5.67017662900011,60.22699616100008],[5.708262566000087,60.232163804],[5.708262566000087,60.238348700000145],[5.624522332000055,60.236965236000074],[5.598399285000113,60.232163804],[5.627289259000122,60.25263092700005],[5.638194207000112,60.264105536],[5.633067254000081,60.27252838700003],[5.614756707000112,60.272162177000105],[5.600759311000076,60.26089101800012],[5.587575717000107,60.24689362200017],[5.571543816000116,60.238348700000145],[5.574961785000141,60.25592682500008],[5.586924675000148,60.264634507000075],[5.599782748000081,60.26947663000005],[5.60572350400011,60.27558014500012],[5.611175977000044,60.28440989799999],[5.637461785000084,60.313666083000115],[5.64616946700005,60.320949611000124],[5.647471550000148,60.326483466000134],[5.653005405000073,60.336900132000046],[5.660329623000081,60.34788646000002],[5.667246941000087,60.355047919000135],[5.683767123000051,60.36220937700009],[5.71900475400011,60.37042877800008],[5.732432488000085,60.37897370000012],[5.736582879000139,60.392035223000086],[5.718109571000099,60.38934967700011],[5.69581139400006,60.38060130400013],[5.688243035000113,60.37555573100009],[5.673187696000099,60.372992255],[5.660492384000036,60.366441148000106],[5.649587436000076,60.357489325000174],[5.639903191000115,60.347601630000085],[5.63851972700013,60.353338934000035],[5.634287957000112,60.36245351800012],[5.633067254000081,60.36810944200012],[5.617035352000102,60.354315497000115],[5.598887566000087,60.33344147300015],[5.584157748000109,60.31028880400011],[5.577891472000147,60.289536851000115],[5.568207227000102,60.28188711100007],[5.530039910000113,60.22972239800004],[5.526621941000116,60.217230536000145],[5.516449415000068,60.21328359600016],[5.47486412900011,60.187201239],[5.43848717500012,60.17210521],[5.427012566000087,60.162665106000155],[5.421885613000143,60.15204498900012],[5.417246941000116,60.13873932500012],[5.40984134200005,60.13133372600011],[5.386729363000086,60.14472077000012],[5.351817254000081,60.155829169000135],[5.365896030000016,60.16144440300014],[5.372406446000099,60.162665106000155],[5.372406446000099,60.17011139500015],[5.320160352000102,60.18195221600011],[5.304047071000126,60.19061920799999],[5.312998894000145,60.19961172100004],[5.324880405000101,60.205267645],[5.351817254000081,60.21108633000016],[5.351817254000081,60.217230536000145],[5.320811394000145,60.221747137000094],[5.250824415000039,60.207464911],[5.222829623000023,60.21108633000016],[5.297129754000139,60.24921295800015],[5.31031334700009,60.26569245000003],[5.276540561000104,60.26496002800009],[5.170664910000085,60.278713283000016],[5.16236412900011,60.28363678600009],[5.161631707000083,60.29498932500014],[5.165537957000083,60.30792877800015],[5.170664910000085,60.317206122000115],[5.18132571700005,60.32208893400017],[5.197520379000082,60.32282135600009],[5.228282097000147,60.320949611000124],[5.211761915000095,60.33299388200005],[5.198741082000112,60.3383649760001],[5.158376498000052,60.34170156500013],[5.147227410000113,60.34373607000008],[5.140961134000064,60.35138580900009],[5.146494988000085,60.36810944200012],[5.177744988000142,60.38857656500009],[5.265635613000114,60.387030341000134],[5.297862175000148,60.39598216399998],[5.283213738000143,60.40102773600002],[5.250173373000109,60.430812893],[5.258799675000091,60.44672272300012],[5.263194207000083,60.450628973000114],[5.237071160000113,60.47378164300006],[5.238291863000143,60.489203192],[5.28028405000012,60.52236562700012],[5.305837436000103,60.52826569200006],[5.336273634000065,60.5143089860001],[5.365244988000057,60.49510325700014],[5.385996941000059,60.48541901200017],[5.397308790000039,60.48151276200018],[5.44874108200014,60.44627513200014],[5.476247592000078,60.435044664000124],[5.527842644000145,60.42059967700008],[5.57325280000012,60.41494375200009],[5.617686394000145,60.41718170800005],[5.653575066000144,60.430812893],[5.649668816000144,60.447821356000176],[5.666514519000144,60.45636627800008],[5.690603061000075,60.46222565300006],[5.708262566000087,60.47113678600009],[5.714040561000046,60.484279690000115],[5.714121941000116,60.49900950700014],[5.708262566000087,60.5331891950001],[5.707204623000023,60.56281159100017],[5.71062259200005,60.603094794000135],[5.721527540000125,60.63939036700004],[5.742930535000056,60.656683661000145],[5.723155144000144,60.667629299],[5.725840691000116,60.686021226000044],[5.738617384000064,60.705145575000024],[5.74976647200009,60.718166408000016],[5.728200717000077,60.706447658000044],[5.708506707000112,60.70258209800012],[5.663828972000061,60.703924872000115],[5.661794467000049,60.71108633000015],[5.671397332000112,60.727118231000034],[5.685231967000107,60.74359772300013],[5.695160352000102,60.752346096],[5.67562910200013,60.75775788000005],[5.661306186000047,60.74481842700014],[5.647634311000104,60.727118231000034],[5.629649285000085,60.718166408000016],[5.619883660000141,60.71539948100014],[5.600922071000127,60.702215887000094],[5.59156334700009,60.697699286000145],[5.577810092000078,60.695868231000176],[5.533457879000139,60.697699286000145],[5.523203972000118,60.68691640800012],[5.535899285000084,60.63955312700001],[5.526621941000116,60.62872955900012],[5.504567905000044,60.62710195500009],[5.443125847000147,60.614691473000065],[5.372406446000099,60.58038971600008],[5.300059441000144,60.56077708500013],[5.274750196000099,60.5592308610001],[5.250498894000116,60.56342194200012],[5.222829623000023,60.57416413000014],[5.188975457000054,60.59393952000006],[5.160166863000114,60.61513906500015],[5.097666863000086,60.64911530199999],[5.08497155000012,60.66290924700009],[5.123220248000081,60.66022370000003],[5.156911655000073,60.64899323100011],[5.222829623000023,60.61513906500015],[5.228282097000147,60.62132396000011],[5.16179446700005,60.669989325000145],[5.08497155000012,60.71137116100009],[5.10141035200013,60.71149323100015],[5.146494988000085,60.703924872000115],[5.125824415000068,60.72443268400015],[5.094981316000116,60.72923411700005],[5.061371290000096,60.73090241100006],[5.032969597000147,60.741685289000074],[4.985118035000141,60.779852606000034],[4.957774285000056,60.79393138200008],[4.926768425000147,60.80011627800014],[4.951670769000089,60.80874258000016],[4.981455925000091,60.808783270000156],[5.010427280000073,60.80182526200015],[5.056407097000147,60.77899811400012],[5.109141472000117,60.773749091000134],[5.148936394000117,60.750637111000096],[5.176768425000091,60.74164459800009],[5.280121290000067,60.72182851800006],[5.304209832000083,60.71198151200004],[5.304047071000126,60.697699286000145],[5.31031334700009,60.676011460000076],[5.326182488000114,60.655462958000115],[5.347992384000065,60.64044830900009],[5.372406446000099,60.63564687700002],[5.363454623000081,60.63963450699999],[5.356944207000083,60.645453192000154],[5.353037957000083,60.65306224199998],[5.351817254000081,60.66290924700009],[5.37330162900011,60.65436432500017],[5.412282748000081,60.63312409100009],[5.433848504000082,60.62872955900012],[5.418142123000024,60.643133856000176],[5.39047285200013,60.65961334800006],[5.370860222000061,60.67438385600006],[5.379242384000122,60.684027411000116],[5.393890821000127,60.68073151200018],[5.426280144000145,60.6628278670001],[5.433848504000082,60.66290924700009],[5.430918816000059,60.673773505],[5.419688347000061,60.68048737200002],[5.41041100400011,60.68866608300014],[5.413340691000143,60.703924872000115],[5.381521030000101,60.712876695000126],[5.372406446000099,60.718166408000016],[5.367686394000089,60.72532786700004],[5.36548912900011,60.73419830900009],[5.362559441000087,60.74164459800009],[5.35499108200014,60.74481842700014],[5.309825066000087,60.744696356000176],[5.28419030000012,60.74774811400006],[5.256602410000113,60.76032135600014],[5.246755405000101,60.76080963700003],[5.238942905000101,60.76386139500012],[5.235850457000112,60.77619049700009],[5.23926842500012,60.77973053600006],[5.263194207000083,60.79266998900005],[5.284353061000075,60.799546617],[5.32943769600007,60.80605703300007],[5.351817254000081,60.81313711100013],[5.338145379000139,60.83982982000005],[5.356455925000091,60.85285065300006],[5.430837436000075,60.86933014500011],[5.448008660000113,60.86762116100011],[5.464854363000114,60.86359284100014],[5.481700066000116,60.86155833500011],[5.496918165000096,60.862941799],[5.510752800000091,60.86627838700004],[5.536875847000147,60.87579987200002],[5.506846550000091,60.87718333500011],[5.479665561000076,60.884588934000085],[5.470876498000109,60.896144924000126],[5.495860222000147,60.90997955900013],[5.47169030000012,60.907456773000106],[5.399668816000086,60.88202545799999],[5.348399285000056,60.877834377000156],[5.326670769000089,60.86815013200002],[5.31771894600007,60.844427802],[5.293223504000139,60.82273997600011],[5.239756707000112,60.81712474200011],[5.187836134000122,60.82770416900014],[5.167653842000107,60.854681708000115],[5.164398634000065,60.83087799700003],[5.149261915000068,60.81492747600011],[5.131032748000081,60.81207916900017],[5.118418816000087,60.827378648000135],[5.132823113000142,60.83486562700001],[5.113536004000109,60.83779531500013],[5.066661004000082,60.83454010600017],[5.047129754000081,60.844427802],[5.04004967500012,60.85614655200008],[5.028575066000087,60.885931708],[5.019541863000086,60.89907461100013],[5.013519727000073,60.90517812700013],[5.010508660000056,60.909816799000154],[5.009450717000107,60.916001695000126],[5.00928795700014,60.92670319200014],[5.005137566000116,60.9313011740001],[4.986501498000109,60.94375234600001],[4.981944207000083,60.95087311400006],[4.990570509000065,60.96246979400017],[5.011973504000109,60.965033270000085],[5.037119988000114,60.962347723],[5.05713951900006,60.957709052000084],[5.077403191000087,60.94965241100014],[5.082774285000141,60.940904039000074],[5.078135613000114,60.90619538],[5.082367384000122,60.888820705000015],[5.09156334700009,60.87787506700015],[5.100759311000076,60.87775299700017],[5.104828321000127,60.89256419500005],[5.096202019000117,60.938910223000114],[5.098643425000148,60.95087311400006],[5.114105665000096,60.96185944200011],[5.131358269000089,60.965521552000084],[5.142832879000139,60.97215403900013],[5.140310092000021,60.99188873900005],[5.134043816000087,60.98883698100017],[5.131358269000089,60.98676178600006],[5.132823113000142,60.98566315300012],[5.120941602000102,60.98379140800013],[5.093272332000112,60.97378164300016],[5.077891472000061,60.97138092700011],[5.023610873000024,60.97821686400011],[5.012705925000148,60.98191966399999],[5.004730665000096,60.99754466400007],[5.003916863000086,61.01605866100009],[5.00806725400011,61.033636786],[5.016123894000145,61.04653554900004],[5.068614129000109,61.07355377800015],[5.135101759000122,61.07672760600003],[5.20215905000012,61.064764716000106],[5.281423373000081,61.03847890800007],[5.312266472000117,61.03217194200015],[5.375824415000125,61.026597398000135],[5.421071811000046,61.02912018400015],[5.433848504000082,61.026597398000135],[5.439463738000085,61.01788971600014],[5.442637566000144,61.004543361000124],[5.448415561000019,60.99542877800015],[5.461680535000141,60.99933502800006],[5.46705162900011,61.00739166900017],[5.463633660000085,61.01593659100012],[5.457530144000117,61.02545807500008],[5.454274936000076,61.03656647300012],[5.460215691000087,61.049994208000115],[5.473643425000091,61.05589427300005],[5.488536004000139,61.059027411000116],[5.527110222000118,61.075425523000135],[5.566742384000121,61.07151927300013],[5.607920769000117,61.062811591000134],[5.639903191000115,61.06012604400017],[5.639903191000115,61.06757233300005],[5.610606316000087,61.078558661000024],[5.597666863000085,61.085150458000086],[5.602061394000145,61.088080145],[5.638682488000086,61.09345123900005],[5.656260613000114,61.094142971],[5.674001498000109,61.088080145],[5.696462436000104,61.09878164300012],[5.736094597000147,61.10993073100014],[5.773936394000089,61.11444733299999],[5.790700717000107,61.104885158],[5.781016472000147,61.07713450700014],[5.780935092000078,61.064357815],[5.794118686000104,61.07070547100013],[5.804698113000057,61.07916901200014],[5.817637566000087,61.086737372000115],[5.83155358200014,61.092230536000145],[5.84538821700005,61.09430573100014],[5.835297071000098,61.10541413],[5.831716342000107,61.10858795800005],[5.863617384000122,61.11786530200011],[5.892751498000081,61.121771552000105],[5.976573113000086,61.12079498900012],[6.010996941000116,61.114976304],[6.030446811000047,61.114732164000046],[6.098480665000096,61.122219143],[6.131846550000148,61.11863841400013],[6.195078972000118,61.104315497000144],[6.229502800000148,61.10114166900008],[6.258067254000139,61.093817450000174],[6.270762566000116,61.07709381700015],[6.266286655000044,61.0587425800001],[6.242523634000065,61.04653554900004],[6.274750196000098,61.04791901200009],[6.287445509000065,61.05304596600011],[6.300954623000109,61.063869533],[6.312022332000055,61.06850820500013],[6.329356316000144,61.07046133000007],[6.347178582000111,61.07005442900007],[6.35922285200013,61.06757233300005],[6.370290561000076,61.056301174000154],[6.362803582000112,61.044419664000095],[6.348317905000073,61.030422268000144],[6.338715040000095,61.012355861000124],[6.355967644000089,61.01093170800006],[6.372894727000073,61.012355861000124],[6.369965040000068,61.026597398000135],[6.374522332000111,61.03742096600002],[6.383474155000044,61.04604726800012],[6.413259311000046,61.06818268400012],[6.437673373000081,61.081244208],[6.465098504000139,61.090643622000115],[6.521820509000122,61.096502997000144],[6.545664910000085,61.10407135600009],[6.566416863000085,61.11888255400007],[6.585785352000102,61.14272695500016],[6.59400475400011,61.16665273600001],[6.600596550000091,61.17523834800012],[6.61280358200014,61.1737328150001],[6.63624108200014,61.161810614000146],[6.648448113000114,61.15745677300005],[6.786794467000078,61.150336005],[6.836680535000141,61.13934967700014],[6.847911004000138,61.13483307500009],[6.856211785000113,61.128119208000136],[6.859548373000052,61.118475653000175],[6.859711134000122,61.10614655200011],[6.861827019000116,61.096502997000144],[6.868174675000148,61.09027741100001],[6.88062584700009,61.088080145],[6.938975457000083,61.09137604400015],[6.955821160000084,61.088080145],[6.965017123000052,61.08026764500003],[6.983083530000073,61.04653554900004],[6.999685092000107,61.02899811400009],[7.006846550000148,61.019354559000114],[7.009776238000086,61.008937893000116],[7.003184441000116,61.00031159100003],[6.98796634200005,60.990179755000064],[6.970957879000082,60.981675523000135],[6.939300977000102,60.97321198100009],[6.873789910000141,60.9372419290001],[6.965017123000052,60.965521552000084],[7.010996941000116,60.97113678600006],[7.051442905000044,60.964544989],[7.114593946000127,60.939357815000115],[7.130137566000116,60.92670319200014],[7.131602410000085,60.91217682500012],[7.105967644000117,60.86155833500011],[7.131602410000085,60.875311591000134],[7.157481316000116,60.8974470070001],[7.171560092000049,60.924017645000056],[7.161306186000104,60.95087311400006],[7.152598504000139,60.95343659100017],[7.100596550000148,60.95945872600008],[7.093516472000118,60.96381256700006],[7.082041863000142,60.97479889500012],[7.043955925000091,61.026597398000135],[7.03419030000012,61.03538646],[7.023122592000106,61.04303620000003],[7.013845248000052,61.0517438820001],[7.00570722700013,61.079087632],[6.99952233200014,61.087144273000106],[7.000336134000064,61.092922268000095],[7.01726321700005,61.10114166900008],[7.059743686000019,61.10700104400002],[7.166270379000082,61.11005280200011],[7.195323113000143,61.129095770000035],[7.20923912900011,61.13882070500015],[7.222666863000114,61.14036692900011],[7.30445397200009,61.13027578300013],[7.315440300000147,61.125637111000025],[7.338389519000144,61.112005927000084],[7.369151238000114,61.10468170800006],[7.435557488000143,61.10114166900008],[7.435557488000143,61.10858795800005],[7.41732832100007,61.10944245000014],[7.403656446000127,61.11196523600007],[7.392263217000079,61.11627838700018],[7.356455925000148,61.13800690300015],[7.346202019000117,61.14272695500016],[7.359711134000093,61.15216705900017],[7.405284050000147,61.16742584800014],[7.415049675000091,61.1737328150001],[7.427012566000115,61.18585846600017],[7.454356316000087,61.19277578300007],[7.606211785000141,61.198309637000094],[7.65528405000009,61.206854559000114],[7.694997592000107,61.23208242400007],[7.660329623000052,61.22988515800011],[7.633555535000113,61.224595445000105],[7.600352410000113,61.21234772300015],[7.449229363000086,61.19733307500003],[7.388438347000146,61.19818756700012],[7.358897332000083,61.20563385600009],[7.346202019000117,61.22150299700003],[7.345062696000098,61.232855536],[7.340505405000045,61.25238678600008],[7.339366082000112,61.26251862200002],[7.335703972000147,61.274359442],[7.327403191000087,61.27899811400011],[7.318207227000101,61.281642971],[7.31202233200014,61.287298895],[7.313812696000127,61.308417059000114],[7.355804884000094,61.32623932500008],[7.366547071000126,61.34471263200011],[7.370290561000047,61.367092190000115],[7.38070722700013,61.37832265800013],[7.42123457100007,61.39594147300006],[7.43677819100006,61.40851471600014],[7.451508009000064,61.42462799700002],[7.467539910000142,61.43846263200011],[7.486827019000088,61.44432200700005],[7.510752800000148,61.44769928600009],[7.535655144000089,61.456529039000046],[7.557383660000142,61.46963125200001],[7.572032097000147,61.48533763200008],[7.488617384000065,61.46043528900013],[7.346202019000117,61.389105536000145],[7.323741082000112,61.38605377800015],[7.285329623000109,61.39451732],[7.263682488000113,61.39594147300006],[7.281586134000094,61.38336823100014],[7.299001498000052,61.37409088700012],[7.308848504000082,61.363836981000084],[7.305186394000116,61.3481306010001],[7.244965040000067,61.308050848],[7.239756707000055,61.297267971000096],[7.259613477000073,61.28327057500003],[7.281016472000118,61.27374909100005],[7.298187696000126,61.26056549700009],[7.309906446000126,61.21759674700002],[7.32252037900011,61.20538971600014],[7.340098504000139,61.197170315000065],[7.359711134000093,61.19110748900006],[7.319346550000148,61.16738515800016],[7.305186394000116,61.16323476800002],[7.292246941000116,61.16242096600011],[7.280528191000115,61.163763739],[7.257334832000083,61.16998932500014],[7.250254754000139,61.17304108300015],[7.235362175000091,61.18146393400009],[7.22950280000012,61.18366120000009],[7.213715040000096,61.18366120000009],[7.175140821000126,61.17584870000009],[7.161306186000104,61.16998932500014],[7.158702019000117,61.16648997600005],[7.156748894000088,61.160834052000084],[7.153493686000047,61.15460846600011],[7.14747155000012,61.14956289300006],[7.137217644000089,61.145697333000086],[7.009776238000086,61.129095770000035],[6.973480665000096,61.115790106000084],[6.953135613000086,61.11163971600014],[6.935313347000117,61.114732164000046],[6.917246941000087,61.13629791900014],[6.941661004000139,61.15232982000013],[6.979991082000083,61.16681549700009],[7.003591342000107,61.18366120000009],[6.950531446000098,61.167222397999986],[6.922211134000065,61.162014065],[6.894297722000118,61.16323476800002],[6.810069207000112,61.18162669500005],[6.664724155000044,61.19513580900003],[6.557871941000059,61.224595445000105],[6.569997592000078,61.24079010600015],[6.606781446000042,61.257473049],[6.623057488000085,61.26935455900015],[6.660329623000052,61.320868231000034],[6.668223504000139,61.32697174700003],[6.690440300000091,61.340521552],[6.695078972000118,61.34471263200011],[6.69629967500012,61.35211823100009],[6.702403191000116,61.37152741100003],[6.705332879000139,61.375474351],[6.71045983200014,61.38031647300007],[6.715586785000085,61.39069245000018],[6.71461022200009,61.40029531500016],[6.701914910000141,61.40277741100009],[6.697438998000081,61.39935944200006],[6.636892123000081,61.309556382000046],[6.60336347700013,61.27875397300009],[6.564707879000082,61.265611070000105],[6.55298912900011,61.26894765800012],[6.537445509000093,61.28388092699999],[6.52711022200009,61.287298895],[6.519297722000089,61.284002997000144],[6.509125196000041,61.276434637000115],[6.501149936000104,61.268133856000034],[6.499522332000083,61.26251862200002],[6.513438347000147,61.247463283000016],[6.523773634000065,61.23208242400007],[6.524261915000039,61.22675202000003],[6.523448113000143,61.219956772999986],[6.526215040000096,61.21234772300015],[6.53736412900011,61.20416901200003],[6.470957879000082,61.211249091000106],[6.465098504000139,61.20758698100015],[6.475759311000076,61.20160553600012],[6.488047722000118,61.19794342700008],[6.498301629000138,61.19232819200009],[6.502696160000141,61.180568752],[6.504649285000084,61.16693756700006],[6.507497592000021,61.15643952000009],[6.506195509000122,61.14695872599999],[6.496429884000094,61.1364606790001],[6.484711134000094,61.13076406500012],[6.434336785000141,61.114732164000046],[6.372325066000115,61.11408112200009],[6.28272545700014,61.12543366100005],[6.203949415000068,61.14866771],[6.174327019000117,61.18366120000009],[6.130137566000144,61.15932851800003],[6.073496941000144,61.14801666900002],[6.014008009000122,61.14948151200009],[5.961436394000089,61.16323476800002],[6.006602410000141,61.17804596600008],[6.027842644000117,61.18813711100013],[6.037119988000085,61.20416901200003],[5.94092858200014,61.16998932500014],[5.874522332000112,61.15835195500012],[5.804453972000118,61.155747789000046],[5.783457879000082,61.164984442],[5.781748894000088,61.183172919000086],[5.78296959700009,61.19660065300009],[5.770274285000141,61.19110748900006],[5.763194207000083,61.181870835],[5.758799675000091,61.163804429],[5.74976647200009,61.155747789000046],[5.736664259000122,61.15477122600007],[5.718435092000049,61.156561591000134],[5.70215905000009,61.155503648000106],[5.695160352000102,61.14614492400007],[5.675954623000052,61.14227936400006],[5.557302280000016,61.1364606790001],[5.536875847000147,61.131293036],[5.475433790000068,61.09430573100014],[5.42367597700013,61.079657294000135],[5.37663821700005,61.08047109600006],[5.334483269000089,61.09686920800008],[5.297862175000148,61.129095770000035],[5.281016472000147,61.11611562700001],[5.259938998000052,61.10984935100007],[5.204925977000072,61.10736725500014],[5.199392123000052,61.105047919000164],[5.193858269000117,61.105292059000114],[5.184336785000141,61.11163971600014],[5.174652540000068,61.122219143],[5.169444207000083,61.126166083],[5.160166863000114,61.129095770000035],[5.169932488000057,61.13996002800008],[5.188324415000096,61.14061107000005],[5.209646030000073,61.13890208500014],[5.228282097000147,61.14272695500016],[5.205332879000081,61.14695872599999],[5.182871941000087,61.15395742400015],[5.161875847000118,61.15619538000014],[5.143321160000113,61.14614492400007],[5.125173373000024,61.14508698100011],[5.059255405000073,61.15790436400015],[5.044118686000076,61.16323476800002],[5.059336785000056,61.18797435099999],[5.118174675000147,61.185980536000145],[5.222829623000023,61.16323476800002],[5.220550977000045,61.16766998900008],[5.216807488000114,61.17902252800014],[5.214691602000101,61.18366120000009],[5.250173373000109,61.18366120000009],[5.197276238000143,61.21088288],[5.167816602000073,61.22077057500009],[5.139659050000062,61.224595445000105],[5.020762566000087,61.21649811400009],[4.988780144000089,61.224595445000105],[5.008148634000094,61.229437567],[5.03150475400011,61.23045482000004],[5.052256707000112,61.23379140800007],[5.064463738000086,61.24575429900001],[5.031016472000118,61.237941799000126],[5.012950066000087,61.23663971600003],[4.99903405000012,61.24233633],[4.989512566000116,61.2523460960001],[4.982758009000094,61.25698476800004],[4.973155144000117,61.25682200700005],[4.954600457000111,61.252590236000124],[4.964121941000087,61.26569245000008],[4.979991082000112,61.275336005000085],[5.016123894000145,61.287298895],[5.039724155000101,61.29189687700012],[5.063975457000083,61.29352448100015],[5.073985222000061,61.29572174700014],[5.090179884000122,61.305080471000096],[5.09522545700014,61.30719635600009],[5.139414910000113,61.30630117400001],[5.159353061000103,61.311102606000084],[5.177744988000142,61.33942291900006],[5.201508009000065,61.3427188170001],[5.229014519000089,61.33942291900006],[5.250173373000109,61.33445872599999],[5.266286655000073,61.328680731000034],[5.279307488000142,61.32135651200013],[5.289561394000089,61.31224192900013],[5.297862175000148,61.30097077000012],[5.310231967000106,61.26691315300011],[5.320648634000094,61.252264716000106],[5.334483269000089,61.25600820500013],[5.337412957000112,61.268744208],[5.334157748000051,61.287339585],[5.327484571000099,61.30573151200004],[5.320811394000145,61.31745026200012],[5.305511915000096,61.328436591000084],[5.271820509000094,61.338690497000115],[5.25635826900006,61.3481306010001],[5.440603061000047,61.367417710000055],[5.633067254000081,61.361802476000044],[5.599619988000114,61.375921942],[5.554535352000073,61.37832265800013],[5.164317254000082,61.356105861000074],[5.150157097000147,61.351548570000126],[5.127940300000091,61.33978913000005],[5.093272332000112,61.328802802],[5.058441602000073,61.323472398000135],[5.036631707000112,61.32831452],[5.025726759000037,61.33954498900003],[5.006358269000117,61.34747955900017],[4.995616082000112,61.361802476000044],[4.998789910000085,61.37689850500006],[5.011485222000118,61.39154694200008],[5.02833092500012,61.401556708000065],[5.044118686000076,61.40277741100009],[5.054698113000143,61.39288971600017],[5.057871941000087,61.380682684000085],[5.062673373000081,61.37457916900011],[5.078135613000114,61.38296133000016],[5.079437696000099,61.38808828300007],[5.07715905000012,61.404689846000124],[5.078135613000114,61.410223700000145],[5.085459832000112,61.41351959800009],[5.118418816000087,61.416408596000124],[5.117523634000094,61.42108795800015],[5.116547071000127,61.42401764500006],[5.11475670700014,61.42682526200012],[5.111664259000065,61.430731512000094],[5.092458530000101,61.42023346600005],[5.071462436000047,61.41705963700015],[5.029144727000045,61.416408596000124],[4.989105665000125,61.41111888200005],[4.947927280000044,61.410223700000145],[4.947927280000044,61.416408596000124],[5.05713951900006,61.44432200700005],[5.16342207100007,61.450832424000154],[5.187998894000089,61.4648298200001],[5.180511915000125,61.47231679900009],[5.218109571000127,61.46784088700012],[5.266286655000073,61.45530833500012],[5.310801629000082,61.44940827000009],[5.337575717000078,61.4648298200001],[5.483897332000112,61.43170807500017],[5.518890821000099,61.43012116100014],[5.543711785000056,61.43695709800006],[5.536875847000147,61.44432200700005],[5.556651238000086,61.4497744810001],[5.59937584700009,61.45258209800015],[5.619395379000138,61.457993882],[5.628591342000021,61.46474844000012],[5.63851972700013,61.47382233300014],[5.650889519000145,61.48187897300006],[5.667246941000087,61.48533763200008],[5.712657097000061,61.487127997000144],[5.736013217000078,61.48460521000013],[5.752777540000095,61.475734768000095],[5.770355665000125,61.455145575000145],[5.782562696000099,61.450588283000016],[5.804453972000118,61.45115794499999],[5.804453972000118,61.457993882],[5.781748894000088,61.46564362200002],[5.746755405000073,61.49298737200009],[5.722422722000118,61.49896881700012],[5.665049675000091,61.498358466000134],[5.637868686000076,61.49437083500008],[5.611989780000073,61.48533763200008],[5.58350670700014,61.46743398600001],[5.574717644000089,61.4648298200001],[5.523610873000109,61.46466705900015],[5.491953972000147,61.454006252000035],[5.460948113000113,61.452826239],[5.437998894000117,61.46043528900013],[5.441254102000072,61.47915273600011],[5.397797071000127,61.48688385600012],[5.290293816000116,61.47964101800009],[5.253184441000086,61.495266018000066],[5.178233269000145,61.5097516950001],[5.138926629000139,61.524115302],[5.146494988000085,61.53998444200012],[5.140798373000109,61.546820380000135],[5.140310092000021,61.546820380000135],[5.140310092000021,61.55418528900004],[5.156586134000065,61.55451080900014],[5.201670769000117,61.546820380000135],[5.214040561000076,61.547674872000144],[5.246429884000065,61.55418528900004],[5.358164910000113,61.55418528900004],[5.358164910000113,61.56102122600005],[5.331390821000099,61.56126536700011],[5.172048373000081,61.585516669000086],[5.146494988000085,61.59520091400004],[5.337575717000078,61.59520091400004],[5.318125847000061,61.58982982],[5.31031334700009,61.588934637000094],[5.31031334700009,61.58218008000015],[5.40259850400011,61.58030833499999],[5.427012566000087,61.588934637000094],[5.350433790000096,61.60651276200003],[5.270030144000089,61.615668036000024],[5.320160352000102,61.62872955900018],[5.340668165000068,61.64313385600015],[5.283702019000145,61.64232005400014],[5.241872592000107,61.630682684000035],[5.229258660000141,61.62872955900018],[4.992686394000089,61.630438544000086],[4.96827233200014,61.63613515800007],[4.962412957000082,61.641750393000066],[4.944102410000113,61.667181708],[4.939626498000081,61.6783714860001],[4.946055535000085,61.687486069999984],[4.957692905000073,61.694077867000075],[4.96827233200014,61.697658596000124],[4.96045983200014,61.706691799000126],[4.962738477000102,61.71710846600003],[4.972911004000053,61.72479889500015],[4.988780144000089,61.72553131700008],[4.985362175000091,61.72955963700016],[4.98340905000012,61.73273346600003],[4.980642123000081,61.73558177300004],[4.974457227000102,61.738592841000134],[4.98812910200013,61.74689362200005],[5.003428582000112,61.751125393000066],[5.036631707000112,61.752183335000105],[5.053965691000115,61.750392971000124],[5.070648634000037,61.74603913000014],[5.075531446000099,61.742865302000084],[5.076833530000101,61.738674221000124],[5.076833530000101,61.73468659100017],[5.078135613000114,61.732367255],[5.084646030000101,61.731756903000054],[5.098887566000116,61.733587958000115],[5.104828321000127,61.732367255],[5.121918165000068,61.72028229400009],[5.12598717500012,61.71808502800011],[5.137380405000101,61.716945705000064],[5.146169467000078,61.71759674700003],[5.167653842000107,61.72553131700008],[5.135508660000141,61.74380117400015],[5.12598717500012,61.752183335000105],[5.148285352000072,61.75926341399999],[5.190196160000085,61.76894765800013],[5.064463738000086,61.759711005000085],[5.078949415000125,61.77374909100002],[5.103851759000065,61.78538646000013],[5.131602410000141,61.79441966400004],[5.244476759000122,61.817287502000156],[5.270030144000089,61.82794830900017],[5.26539147200009,61.829250393000095],[5.262705925000091,61.83075592700014],[5.25635826900006,61.835394598000065],[5.295746290000068,61.84088776200018],[5.337575717000078,61.841620184000114],[5.320485873000024,61.84772370000011],[5.303233269000117,61.84886302300004],[5.291514519000117,61.85150788000011],[5.290375196000099,61.86212799700017],[5.296885613000086,61.86835358300012],[5.362559441000087,61.905462958000136],[5.394786004000139,61.91107819200014],[5.487803582000112,61.9078636740001],[5.522308790000125,61.898871161000066],[5.540293816000144,61.896877346000124],[5.580739780000101,61.89980703300015],[5.600271030000073,61.899115302000105],[5.63648522200009,61.888861395000085],[5.675791863000086,61.88694896000011],[5.691416863000086,61.8797875020001],[5.716075066000087,61.86163971600008],[5.742930535000056,61.84845612200003],[5.712657097000061,61.840562242000075],[5.675303582000112,61.839829820000126],[5.640798373000108,61.83510976800012],[5.619395379000138,61.81492747599999],[5.647146030000044,61.81525299700003],[5.735524936000075,61.835394598000065],[5.922618035000085,61.85028717700011],[5.94092858200014,61.845038153000026],[5.946299675000091,61.837347723],[5.943207227000102,61.82684967700013],[5.93726647200009,61.81525299700003],[5.927093946000127,61.78241608300012],[5.90015709700009,61.750637111000074],[5.899261915000095,61.738592841000134],[5.916351759000122,61.75169505400014],[5.930023634000064,61.759426174000126],[5.942230665000124,61.768703518000095],[5.954600457000083,61.78701406500015],[5.964366082000112,61.8200544290001],[5.972911004000139,61.831122137000065],[5.992035352000101,61.835394598000065],[6.010264519000089,61.83120351800013],[6.058929884000122,61.80829498900011],[6.098643425000147,61.77887604400005],[6.123383009000122,61.769924221],[6.18116295700014,61.766546942],[6.17090905000012,61.780462958000086],[6.155039910000085,61.78579336100013],[6.137705925000091,61.789129950000145],[6.122813347000147,61.79686107],[6.109385613000143,61.8080101580001],[6.092621290000125,61.8178571640001],[6.074880405000044,61.82493724199998],[6.05762780000012,61.82794830900017],[6.05762780000012,61.835394598000065],[6.290700717000106,61.835394598000065],[6.313243035000084,61.831040757000075],[6.35922285200013,61.81183502800011],[6.383799675000148,61.80744049700002],[6.473806186000019,61.804632880000085],[6.502696160000141,61.80744049700002],[6.52133222700013,61.81419505400007],[6.533213738000085,61.82453034100018],[6.550466342000078,61.84845612200003],[6.56812584700009,61.86237213700012],[6.589610222000118,61.87083567900005],[6.613780144000117,61.87518952000014],[6.640147332000111,61.87641022300007],[6.667328321000127,61.873195705000015],[6.72095787900011,61.85907623900009],[6.746348504000138,61.85586172100012],[6.755625847000089,61.85244375200001],[6.766449415000095,61.845648505],[6.777679884000094,61.841253973],[6.787445509000122,61.845038153000026],[6.802012566000059,61.85976797100004],[6.809743686000076,61.865423895],[6.81861412900011,61.869574286000145],[6.81861412900011,61.87641022300007],[6.802093946000041,61.87604401200015],[6.77100670700014,61.87030670800009],[6.75684655000012,61.87299225500006],[6.742523634000122,61.877386786000145],[6.695078972000118,61.88320547100009],[6.690196160000141,61.886175848],[6.683767123000052,61.89496491100008],[6.677989129000082,61.896877346000124],[6.671722852000129,61.895697333],[6.662282748000109,61.89057038],[6.657237175000063,61.889390367000075],[6.555511915000125,61.878322658000044],[6.53842207100007,61.866278387000115],[6.52588951900006,61.850734768],[6.510101759000122,61.835394598000065],[6.47624759200005,61.825344143000095],[6.258555535000141,61.85626862200003],[6.09546959700009,61.84845612200003],[6.08187910200013,61.85122304900009],[6.037119988000085,61.869574286000145],[6.018402540000125,61.87103913000011],[5.961436394000089,61.869574286000145],[5.906993035000085,61.881537177000084],[5.886241082000082,61.88320547100009],[5.871836785000113,61.881048895],[5.84310957100007,61.87164948100014],[5.828623894000117,61.869574286000145],[5.822520379000139,61.86741771000005],[5.810313347000061,61.858221747000165],[5.804453972000118,61.85586172100012],[5.796397332000082,61.85736725500008],[5.729258660000113,61.889390367000075],[5.729258660000113,61.896877346000124],[5.933278842000107,61.90302155200011],[5.961436394000089,61.90985748900011],[5.961436394000089,61.91669342700014],[5.645355665000039,61.924790757000075],[5.51661217500012,61.938137111000074],[5.450205925000091,61.92519765800008],[5.443614129000139,61.92918528900004],[5.437266472000089,61.934963283],[5.427012566000087,61.93781159100015],[5.348968946000127,61.927313544000086],[5.301931186000019,61.91339752800012],[5.276866082000112,61.90985748900011],[5.221527540000124,61.91437409100008],[5.193695509000065,61.91233958500005],[5.170664910000085,61.899969794000114],[5.15577233200014,61.89606354400003],[5.135264519000089,61.901312567],[5.098643425000148,61.91669342700014],[5.113780144000145,61.930080471000146],[5.12598717500012,61.94403717700011],[5.14039147200009,61.967962958000086],[5.140310092000021,61.9713402360001],[5.155528191000087,61.976019598000036],[5.161468946000127,61.971380927],[5.165049675000091,61.96352773600001],[5.173838738000057,61.95831940300011],[5.183929884000122,61.959540106000034],[5.190196160000085,61.964422919000086],[5.19516035200013,61.969549872000115],[5.201670769000117,61.9713402360001],[5.210215691000144,61.96865469000012],[5.22364342500012,61.95990631700014],[5.228282097000147,61.95831940300011],[5.238617384000065,61.96063873900009],[5.240244988000086,61.96491120000009],[5.241221550000062,61.97101471600017],[5.250173373000109,61.978745835],[5.28891035200013,61.99274323100006],[5.301524285000113,62.002875067],[5.31031334700009,62.026556708000115],[5.339040561000047,62.01923248900012],[5.376719597000118,62.016058661000145],[5.40015709700009,62.020005601000136],[5.385996941000059,62.03400299700008],[5.371918165000125,62.03681061400014],[5.340993686000075,62.03685130400014],[5.327647332000083,62.043931382],[5.313324415000096,62.05711497600005],[5.297862175000148,62.06818268400017],[5.20850670700014,62.10228099200002],[5.109141472000117,62.1091169290001],[5.091807488000143,62.12274811400006],[5.101573113000085,62.12299225499999],[5.109711134000094,62.12445709800007],[5.12598717500012,62.129584052000084],[5.111094597000089,62.139797268],[5.080251498000109,62.152492580000064],[5.070648634000037,62.16376373900005],[5.07642662900011,62.1649437520001],[5.086436394000089,62.169134833000115],[5.091807488000143,62.17059967699999],[5.088145379000082,62.17365143400018],[5.081797722000147,62.18109772300015],[5.078135613000114,62.184230861000124],[5.082367384000122,62.183661200000145],[5.084157748000109,62.18480052300003],[5.08497155000012,62.191066799000154],[5.096202019000117,62.19354889500006],[5.12598717500012,62.191066799000154],[5.130869988000114,62.19163646000011],[5.141449415000068,62.19049713700018],[5.146494988000085,62.191066799000154],[5.146739129000139,62.19330475500011],[5.146006707000112,62.20237864800014],[5.146494988000085,62.2047386740001],[5.169688347000118,62.21450429900012],[5.181813998000109,62.21271393400003],[5.210215691000144,62.19424062700001],[5.241221550000062,62.183050848],[5.253184441000086,62.17426178600014],[5.26107832100007,62.169826565000065],[5.268809441000087,62.170314846000146],[5.274587436000046,62.16941966400007],[5.276866082000112,62.16063060099999],[5.275238477000102,62.154282945000084],[5.269704623000081,62.141017971000124],[5.270030144000089,62.13580963700004],[5.317881707000112,62.106512762000115],[5.390961134000122,62.08836497600011],[5.451426629000109,62.061712958000086],[5.461680535000141,62.00674062700001],[5.468028191000087,62.009059963000155],[5.481211785000113,62.01386139500006],[5.49594160200013,62.02757396],[5.52833092500012,62.06891510600011],[5.530935092000021,62.07489655200013],[5.536387566000144,62.079046942000055],[5.550547722000089,62.08124420800006],[5.560883009000094,62.07953522300006],[5.580332879000082,62.07050202000015],[5.59156334700009,62.06818268400017],[5.56470787900011,62.089667059000114],[5.420176629000139,62.1091169290001],[5.400401238000114,62.115871486000124],[5.390961134000122,62.12323639500014],[5.391774936000047,62.13287995000012],[5.413910352000102,62.16209544500004],[5.420583530000073,62.17593008000016],[5.431162957000112,62.186183986000074],[5.454274936000076,62.191066799000154],[5.478851759000064,62.18854401200003],[5.524099155000101,62.174017645],[5.62208092500012,62.164862372000115],[5.639903191000115,62.15753815300012],[5.64820397200009,62.14647044500008],[5.653493686000076,62.13296133000009],[5.661468946000099,62.12140534100016],[5.69312584700009,62.11298248900012],[5.74976647200009,62.088609117000075],[5.730153842000107,62.10496653899998],[5.696055535000113,62.12246328300004],[5.668304884000122,62.14350006700006],[5.667246941000087,62.17059967699999],[5.684743686000047,62.179022528000026],[5.714691602000102,62.18073151200003],[5.770274285000141,62.17804596600014],[5.786143425000148,62.18048737200008],[5.838552280000044,62.20123932500009],[5.857432488000057,62.204250393],[5.882090691000144,62.20018138200014],[5.905528191000115,62.19090403899998],[5.920583530000044,62.17804596600014],[5.925466342000107,62.16364166900008],[5.924815300000063,62.149888414],[5.920583530000044,62.11969635600014],[5.907074415000068,62.09357330900012],[5.852549675000091,62.051214911000116],[5.84538821700005,62.01972077],[5.909434441000116,62.06118398600002],[5.936696811000019,62.08734772300015],[5.954600457000083,62.139960028000175],[5.970957879000081,62.13898346600011],[6.044281446000127,62.09926992400009],[6.055186394000089,62.08608633000013],[6.050791863000114,62.06818268400017],[6.088633660000141,62.077582098],[6.125254754000082,62.082668361000124],[6.20834394600007,62.08124420800006],[6.366709832000112,62.06134674700017],[6.366709832000112,62.06818268400017],[6.088633660000141,62.1091169290001],[6.076182488000143,62.114447333000086],[6.048594597000118,62.13788483300006],[6.040293816000144,62.14325592700011],[6.02711022200009,62.148749091000134],[5.982595248000109,62.184230861000124],[5.928721550000148,62.19891998900012],[5.920583530000044,62.20815664300009],[5.926036004000081,62.22549062700007],[5.93970787900011,62.22939687700006],[5.957530144000089,62.22524648600013],[5.996592644000145,62.21112702],[6.017263217000078,62.20697663000006],[6.064463738000143,62.2047386740001],[6.050059441000087,62.210394598000065],[6.029795769000088,62.214667059000185],[5.992035352000101,62.21841054900004],[5.982595248000109,62.223456122000144],[5.975271030000101,62.23432038000014],[5.965179884000122,62.24408600500008],[5.947764519000144,62.24567291900011],[5.978363477000073,62.27973053600012],[6.027679884000065,62.30573151200012],[6.083343946000098,62.32241445500016],[6.133311394000117,62.3282738300001],[6.247325066000143,62.36107005400011],[6.310801629000139,62.372056382000046],[6.338715040000095,62.352443752],[6.34310957100007,62.345526434000085],[6.372894727000073,62.31460195500016],[6.393402540000124,62.28046295800005],[6.413340691000116,62.26654694200009],[6.45997155000012,62.247992255000085],[6.48218834700009,62.23200104400017],[6.550466342000078,62.17059967699999],[6.560801629000082,62.15208567900008],[6.556895379000081,62.13841380400014],[6.530528191000087,62.1091169290001],[6.592051629000139,62.13580963700004],[6.580902540000125,62.16034577000006],[6.494883660000141,62.253119208],[6.417653842000107,62.31118398600013],[6.397797071000099,62.33665599200005],[6.389984571000127,62.364691473000065],[6.40023847700013,62.387193101000044],[6.434336785000141,62.396470445000105],[6.479746941000144,62.400539455000064],[6.50025475400011,62.399318752000156],[6.523773634000065,62.39032623900011],[6.533946160000113,62.38349030200011],[6.564707879000082,62.35553620000009],[6.562022332000112,62.37164948100015],[6.562510613000086,62.386786200000145],[6.558929884000122,62.39838288000008],[6.544200066000116,62.40395742400007],[6.544200066000116,62.410793361000096],[6.563649936000047,62.417669989],[6.649099155000072,62.434881903000026],[6.688975457000112,62.44985586100015],[6.708750847000147,62.45172760600003],[6.723399285000141,62.44745514500003],[6.74830162900011,62.43414948100009],[6.87916100400011,62.41791413000005],[6.881114129000053,62.40241120000003],[6.873301629000081,62.380560614],[6.873789910000141,62.35553620000009],[6.886241082000083,62.34113190300012],[6.979014519000117,62.283636786000116],[6.98926842500012,62.27301666900008],[6.996348504000081,62.26166413000011],[6.999359571000099,62.25348541900011],[7.007497592000107,62.20888906500012],[7.005218946000127,62.194281317],[6.996104363000143,62.182440497000144],[6.942718946000099,62.13735586100007],[6.938731316000116,62.12181224199999],[6.955821160000084,62.10228099200002],[6.98796634200005,62.089300848],[7.021250847000118,62.09076569200006],[7.099945509000122,62.10455963700014],[7.124847852000073,62.114325262000094],[7.13998457100007,62.11660390800007],[7.152679884000122,62.11489492400007],[7.187836134000093,62.10228099200002],[7.149668816000116,62.13080475499999],[7.029958530000101,62.10040924700002],[6.979340040000124,62.11286041900014],[6.973399285000113,62.12938060100011],[6.986501498000081,62.14264557500014],[7.02711022200009,62.16718170800008],[7.037119988000142,62.18382396000011],[7.037933790000067,62.20302969000009],[7.026052280000016,62.26015859600015],[7.028086785000141,62.266017971],[7.037771030000101,62.27301666900008],[7.051442905000044,62.27602773600007],[7.11280358200014,62.28046295800005],[7.20923912900011,62.250881252],[7.232920769000145,62.25625234600007],[7.253265821000126,62.27106354400002],[7.281260613000144,62.28082916900017],[7.310720248000052,62.28156159100012],[7.335948113000114,62.26992422100001],[7.352061394000088,62.25751373900005],[7.373383009000122,62.244696356000034],[7.395843946000127,62.234930731000084],[7.415049675000091,62.23200104400017],[7.415049675000091,62.23944733300005],[7.373545769000088,62.27301666900008],[7.331797722000146,62.285223700000145],[7.322276238000057,62.290350653000175],[7.293467644000116,62.29791901200012],[7.161306186000104,62.286607164000046],[7.021332227000102,62.30377838700015],[6.957041863000086,62.325344143000066],[6.914073113000143,62.36981842700008],[6.946299675000091,62.369859117000075],[6.961436394000089,62.3718122420001],[6.97559655000009,62.376654364],[6.851573113000086,62.454494533000066],[6.83969160200013,62.459173895],[6.818695509000093,62.46149323100014],[6.776540561000076,62.45978424700014],[6.756521030000101,62.46478913],[6.773936394000145,62.470404364],[6.790700717000078,62.47842031500016],[6.690196160000141,62.47752513200005],[6.483653191000143,62.43073151200018],[6.397715691000116,62.4250348980001],[6.35922285200013,62.431219794000164],[6.34310957100007,62.438421942],[6.319102410000113,62.45441315300009],[6.304698113000142,62.459173895],[6.284515821000126,62.45799388200008],[6.263845248000109,62.45307038000011],[6.242930535000141,62.45111725500005],[6.222666863000143,62.459173895],[6.249685092000078,62.46796295800005],[6.338715040000095,62.472235419000164],[6.415212436000076,62.48956940300015],[6.430918816000144,62.49616120000006],[6.453623894000089,62.502386786],[6.532725457000083,62.501125393000095],[6.571136915000096,62.49237702000012],[6.674571160000141,62.492743231000034],[6.674571160000141,62.499579169000135],[6.651866082000112,62.503322658000066],[6.613780144000117,62.520168361000074],[6.567149285000113,62.51032135600015],[6.476084832000083,62.5131696640001],[6.476084832000083,62.5200056010001],[6.543223504000138,62.52830638200002],[6.564707879000082,62.52749258000009],[6.532969597000118,62.5368513040001],[6.263031446000099,62.52749258000009],[6.267425977000073,62.53522370000009],[6.267832879000082,62.53701406500009],[6.265879754000139,62.53742096600008],[6.263031446000099,62.541083075000145],[6.270518425000148,62.55491771000013],[6.264414910000085,62.56244538],[6.254161004000139,62.567613023000106],[6.24935957100007,62.57465241100009],[6.254893425000091,62.584947007],[6.266123894000088,62.59296295800015],[6.291026238000114,62.602606512000094],[6.319590691000116,62.608547268000116],[6.53736412900011,62.615627346000096],[6.559580925000062,62.611151434000035],[6.583262566000086,62.59931061400005],[6.601084832000083,62.58185455900012],[6.605723504000082,62.560980536000145],[6.612559441000116,62.560980536000145],[6.622243686000076,62.58881256700001],[6.62208092500012,62.60122304900012],[6.612559441000116,62.60944245000003],[6.621592644000117,62.61957428600009],[6.63217207100007,62.62287018400012],[6.641368035000141,62.61945221600011],[6.646657748000109,62.60944245000003],[6.686696811000047,62.633734442],[6.72982832100007,62.65094635600011],[6.756114129000082,62.65460846600017],[6.777110222000117,62.65033600500006],[6.881846550000091,62.60154857000005],[6.900563998000051,62.588324286000116],[6.901703321000099,62.58258698100003],[6.898203972000118,62.57831452000011],[6.900157097000146,62.57558828300015],[6.917816602000072,62.57465241100009],[6.92351321700005,62.57859935100008],[6.920664910000112,62.587551174000104],[6.914073113000143,62.59699127800012],[6.907969597000147,62.602606512000094],[6.915212436000076,62.60700104400008],[6.928477410000113,62.62303294499999],[6.916270379000109,62.624172268000045],[6.905528191000116,62.628078518],[6.896006707000112,62.63458893400009],[6.887461785000085,62.64354075700014],[6.931651238000057,62.65546295800008],[7.092295769000089,62.65094635600011],[7.084320509000122,62.63886139500011],[7.070323113000086,62.63043854400017],[7.053558790000068,62.62531159100014],[7.037771030000101,62.62303294499999],[7.052012566000116,62.60960521],[7.096527540000096,62.61220937700009],[7.105967644000117,62.59918854400008],[7.109711134000065,62.58344147300015],[7.125336134000036,62.55353424700014],[7.127126498000023,62.533677476000044],[7.133148634000121,62.533677476000044],[7.137380405000073,62.54315827000006],[7.150889519000117,62.56679922100009],[7.15381920700014,62.57465241100009],[7.150401238000143,62.58185455900012],[7.136485222000146,62.59418366100006],[7.133148634000121,62.59918854400008],[7.157481316000116,62.629217841000134],[7.172211134000094,62.62759023600004],[7.208994988000085,62.615627346000096],[7.315440300000147,62.60496653900007],[7.36500084700009,62.59284088700014],[7.430430535000141,62.548041083000136],[7.488780144000117,62.54913971600009],[7.517425977000102,62.541083075000145],[7.527598504000138,62.52716705900015],[7.533457879000082,62.51089101800012],[7.542491082000112,62.50360748900012],[7.561778191000144,62.51658763200011],[7.56666100400011,62.52753327000009],[7.567881707000111,62.539943752],[7.572927280000073,62.549994208000086],[7.588552280000044,62.554144598000114],[7.778168165000068,62.57465241100009],[7.745371941000144,62.586004950000145],[7.505218946000127,62.56635163],[7.462738477000073,62.57465241100009],[7.441661004000139,62.58405182500008],[7.422699415000124,62.59796784100008],[7.412771030000044,62.6147321640001],[7.418223504000053,62.63300202000006],[7.444509311000076,62.644720770000056],[7.477305535000085,62.63959381700015],[7.500254754000082,62.61994049700009],[7.497080925000119,62.588324286000116],[7.520192905000072,62.584662177000055],[7.532481316000116,62.59511953300012],[7.532969597000118,62.613348700000024],[7.51002037900011,62.64948151200015],[7.510590040000096,62.66400788],[7.523203972000146,62.67438385600009],[7.571136915000067,62.68219635600009],[7.616872592000078,62.70014069200011],[7.835948113000087,62.73212311400011],[7.94825280000009,62.73090241100011],[7.995616082000139,62.735541083000136],[8.018809441000087,62.733587958],[8.041758660000141,62.72785065300003],[8.12671959700009,62.693793036],[8.147471550000091,62.69196198100003],[8.129405144000089,62.71841054900001],[8.065114780000073,62.739203192],[8.045095248000079,62.75958893400017],[8.05437259200005,62.761786200000174],[8.062266472000118,62.76605866100008],[8.068695509000122,62.77216217700008],[8.073008660000113,62.78009674700003],[8.048675977000073,62.779242255000106],[8.001149936000076,62.77008698100014],[7.908864780000101,62.76325104400003],[7.864512566000086,62.749579169000086],[7.646006707000139,62.72866445500013],[7.524912957000082,62.69196198100003],[7.48926842500012,62.68683502800011],[7.385020379000139,62.687567450000145],[7.359711134000093,62.69818756700009],[7.392588738000086,62.704657294000086],[7.403575066000144,62.71190013200012],[7.39429772200009,62.72101471600011],[7.366547071000126,62.73289622600005],[7.403005405000073,62.73859284100005],[7.471527540000125,62.76723867400001],[7.681325717000078,62.794378973000114],[7.656993035000113,62.793036200000024],[7.60954837300008,62.796087958000115],[7.450450066000116,62.771429755000135],[7.415049675000091,62.75958893400017],[7.395274285000084,62.756537177],[7.351573113000087,62.755357164000074],[7.312510613000114,62.744045315000065],[6.970388217000107,62.72557200700005],[6.948985222000147,62.73289622600005],[6.960622592000078,62.73240794500008],[6.971527540000125,62.735581773000135],[6.979746941000143,62.74249909100003],[6.983083530000073,62.75336334800013],[6.978770379000053,62.759222723000065],[6.95997155000012,62.765041408],[6.955821160000084,62.770453192000055],[6.961924675000148,62.784165757],[6.976735873000052,62.797023830000015],[7.009776238000086,62.81484609600009],[7.059580925000148,62.82632070500012],[7.21583092500009,62.81484609600009],[7.192149285000084,62.821966864000146],[7.154795769000116,62.84316640800012],[7.133148634000121,62.84894440300008],[7.016612175000091,62.84153880400011],[7.004161004000082,62.84829336100013],[6.955821160000084,62.88686758000004],[6.948008660000085,62.905462958000115],[6.928965691000087,62.912095444999984],[6.880056186000104,62.91107819200011],[6.891123894000145,62.92169830900015],[6.910166863000143,62.92938873900008],[7.000173373000109,62.95123932500003],[7.076019727000073,62.98285553600003],[7.108246290000096,62.990668036],[7.17212975400011,62.99803294500002],[7.23764082100007,63.01471588700004],[7.271169467000106,63.01410553600008],[7.297618035000085,63.00429922100015],[7.343435092000078,62.97842031500012],[7.369965040000125,62.97308991100005],[7.42123457100007,62.951402085],[7.426442905000073,62.94497304900007],[7.441742384000122,62.91787344000015],[7.501149936000076,62.91083405200008],[7.559825066000086,62.931301174000126],[7.615977410000085,62.960394598],[7.668304884000094,62.97931549700002],[7.689952019000088,62.98114655200002],[7.775726759000122,62.97752513200014],[7.780446811000046,62.97260163000009],[7.776133660000141,62.96499258000013],[7.767588738000113,62.955145575000024],[7.748301629000082,62.94208405200015],[7.668304884000094,62.91787344000015],[7.694346550000148,62.912095444999984],[7.832041863000086,62.94940827000015],[7.846446160000141,62.951402085],[7.881195509000122,62.95254140800004],[7.899424675000091,62.955755927000084],[7.939300977000074,62.977118231000034],[7.973887566000059,62.97695547100007],[8.075531446000127,62.950873114000025],[8.086680535000056,62.94521719000012],[8.093028191000087,62.93724192900008],[8.09595787900011,62.92914459800012],[8.10108483200014,62.92218659100014],[8.113291863000114,62.91787344000015],[8.113942905000073,62.89911530199999],[8.124196811000076,62.86774323100015],[8.139333530000071,62.83567942900008],[8.154307488000114,62.81484609600009],[8.18970787900011,62.797919012000094],[8.278493686000076,62.78705475500011],[8.319102410000085,62.77700429900015],[8.415212436000047,62.725775458],[8.449066602000102,62.71930573100009],[8.480723504000082,62.71678294499999],[8.51319420700014,62.70742422100015],[8.537771030000073,62.68846263200014],[8.545258009000122,62.65717194200008],[8.567230665000068,62.682277736000074],[8.564789259000122,62.70355866100014],[8.543955925000148,62.72064850499999],[8.45525149800008,62.75625234600015],[8.376719597000147,62.77716705900012],[8.33106530000012,62.80068594000007],[8.246267123000052,62.816148179],[8.184092644000117,62.847723700000174],[8.17204837300011,62.85838450700011],[8.167979363000143,62.87689850500012],[8.171153191000116,62.891791083000086],[8.17920983200014,62.90216705900018],[8.192067905000073,62.90835195500015],[8.209646030000101,62.91107819200011],[8.197927280000016,62.9150251320001],[8.186045769000058,62.917303778000175],[8.175059441000116,62.92072174700009],[8.164886915000068,62.92812734600006],[8.159922722000118,62.93471914300015],[8.153819207000112,62.94537995000017],[8.147471550000091,62.951402085],[8.129079623000052,62.959662177000084],[8.08692467500012,62.967230536000116],[8.000743035000141,63.00665924700009],[7.997243686000076,63.00950755400014],[7.988047722000089,63.02293528900013],[7.983083530000044,63.02708567900007],[7.97234134200002,63.02895742400012],[7.961273634000094,63.02814362200003],[7.951182488000113,63.02509186400012],[7.942637566000088,63.02024974200005],[7.953949415000095,63.02073802300004],[7.960703972000118,63.018703518],[7.96509850400011,63.01406484600009],[7.969981316000087,63.00665924700009],[7.948008660000141,63.00324127800008],[7.914073113000113,63.00193919499999],[7.885020379000139,63.00397370000003],[7.877207879000138,63.01040273600013],[7.893321160000113,63.022650458],[7.93116295700014,63.03782786699998],[7.948903842000049,63.04755280200014],[7.981293165000068,63.08136627800012],[7.997325066000143,63.09227122599999],[8.016856316000116,63.10097890800007],[8.040049675000148,63.10765208500011],[8.064138217000078,63.11098867400015],[8.086680535000056,63.10968659100015],[8.102224155000073,63.104437567000055],[8.121104363000086,63.09406159100017],[8.133962436000019,63.080267645000056],[8.128428582000112,63.05023834800004],[8.141612175000148,63.03701406500006],[8.16041100400011,63.02643463700012],[8.175466342000107,63.02024974200005],[8.246755405000016,63.00796133000009],[8.267832879000139,62.9967308610001],[8.285899285000141,62.9820824240001],[8.295420769000145,62.97980377800012],[8.31267337300008,62.97931549700002],[8.32203209700009,62.97772858299999],[8.330088738000141,62.973374742000104],[8.33619225400011,62.9669457050001],[8.339854363000086,62.958807684000185],[8.309336785000141,62.94456614800008],[8.318858269000115,62.930121161000116],[8.336436394000145,62.912095444999984],[8.329356316000116,62.88686758000004],[8.329274936000019,62.88068268400014],[8.344493035000113,62.88239166900014],[8.374034050000148,62.88996002800011],[8.389414910000113,62.889878648000135],[8.403005405000073,62.88690827000004],[8.48804772200009,62.852972723000065],[8.522959832000112,62.84430573100017],[8.538584832000083,62.852362372000115],[8.524180535000113,62.87128327000011],[8.454356316000087,62.88349030200003],[8.42872155000012,62.89679596600003],[8.450694207000112,62.895656643000095],[8.57398522200009,62.87543366100006],[8.593760613000114,62.869452216000134],[8.60580488400012,62.862697658000016],[8.624196811000076,62.84796784100003],[8.634776238000114,62.84153880400011],[8.650889519000089,62.83588288000011],[8.685720248000052,62.828355210000055],[8.702972852000128,62.82225169499999],[8.619883660000085,62.877915757],[8.596364780000101,62.88519928600003],[8.520843946000099,62.89215729400009],[8.498871290000068,62.89826080900017],[8.479746941000087,62.90717194200012],[8.423024936000047,62.94757721600017],[8.415700717000107,62.958807684000185],[8.64421634200005,62.96735260600009],[8.668793165000068,62.97931549700002],[8.639984571000127,62.98875560100005],[8.575368686000076,62.97992584800009],[8.545258009000122,62.97931549700002],[8.521739129000082,62.989203192000154],[8.533457879000082,63.00031159100017],[8.586273634000063,63.02024974200005],[8.553721550000091,63.022650458],[8.48804772200009,62.99404531500012],[8.393565300000148,62.97280508000013],[8.374034050000148,62.97308991100005],[8.36947675900012,62.975775458000136],[8.358734571000099,62.985825914000124],[8.353282097000147,62.989813544000086],[8.34506269600007,62.9931501320001],[8.319509311000076,62.99982330900017],[8.355235222000118,63.0082868510001],[8.435394727000071,63.009833075000145],[8.470225457000112,63.02024974200005],[8.43531334700009,63.03143952000006],[8.305186394000089,63.02024974200005],[8.262217644000145,63.02163320500012],[8.23853600400011,63.02545807500014],[8.223155144000089,63.03335195500004],[8.221853061000076,63.03851959800012],[8.222422722000147,63.04629140800013],[8.22437584700009,63.0536970070001],[8.228851759000065,63.06305573100015],[8.224945509000065,63.06598541900017],[8.219248894000087,63.06850820500011],[8.216319207000055,63.071844794000114],[8.20289147200006,63.09267812700009],[8.178233269000089,63.104966539000046],[8.165537957000112,63.115301825000145],[8.188487175000091,63.130113023000135],[8.219737175000063,63.13446686400011],[8.241953972000118,63.123521226000044],[8.263194207000112,63.107367255],[8.291514519000145,63.09601471600003],[8.289724155000073,63.091376044000086],[8.28679446700005,63.08014557500008],[8.28467858200014,63.07550690300014],[8.307139519000145,63.078599351000044],[8.318614129000082,63.08242422100006],[8.326182488000143,63.08856842700014],[8.325043165000096,63.093898830000015],[8.318369988000141,63.09764232000005],[8.313812696000099,63.10211823100012],[8.319509311000076,63.10968659100015],[8.304372592000078,63.12514883000007],[8.28305097700013,63.13312409100002],[8.236175977000073,63.1432152360001],[8.236175977000073,63.15070221600017],[8.5436304050001,63.132391669000114],[8.640961134000092,63.10968659100015],[8.624522332000083,63.128119208],[8.575938347000147,63.14423248900006],[8.565765821000099,63.16120026200004],[8.578786655000071,63.17454661700005],[8.608734571000042,63.18109772300013],[8.849945509000122,63.20343659100015],[8.943125847000147,63.21206289300007],[8.86898847700013,63.21047597900004],[8.648448113000143,63.20587799700008],[8.623708530000071,63.20148346600011],[8.612152540000068,63.203802802000084],[8.60320071700005,63.22426992400012],[8.59310957100007,63.23554108300011],[8.573252800000148,63.25307851800006],[8.52702884200005,63.27899811400009],[8.501963738000143,63.28856028900007],[8.476410352000073,63.294012762000094],[8.51465905000012,63.30589427300005],[8.701996290000068,63.32396067900008],[8.737559441000144,63.33466217699999],[8.764414910000113,63.34926992400001],[8.728200717000107,63.349188544000036],[8.711110873000052,63.35122304900015],[8.695567254000139,63.35667552300003],[8.688812696000127,63.36298248900014],[8.682139519000145,63.371893622000165],[8.674571160000113,63.37986888200014],[8.638926629000053,63.3920759140001],[8.646820509000122,63.40916575700005],[8.672373894000117,63.42121002800015],[8.718272332000112,63.408148505],[8.740896030000073,63.41412995000008],[8.765798373000107,63.424505927],[8.786387566000144,63.42983633000008],[8.791758660000085,63.43121979400014],[8.823415561000076,63.42938873900005],[8.842621290000125,63.42035553600005],[8.85889733200014,63.408351955000136],[8.88111412900011,63.39765045800011],[8.891368035000141,63.42133209800012],[8.926117384000094,63.42389557500005],[8.967539910000113,63.41852448100017],[8.997243686000047,63.41815827000006],[8.997243686000047,63.424383856000034],[8.973399285000141,63.424383856000034],[8.967458530000044,63.433417059000035],[8.97486412900011,63.44660065300009],[9.000824415000094,63.46613190300015],[9.006358269000115,63.46723053600011],[9.018321160000141,63.46653880400008],[9.052989129000139,63.45233795800005],[9.114512566000087,63.41815827000006],[9.123057488000114,63.40729401200018],[9.12859134200005,63.39545319200012],[9.135508660000141,63.38442617400006],[9.148610873000107,63.37592194200015],[9.126231316000085,63.362250067],[9.102875196000099,63.343207098000036],[9.088715040000068,63.32001373900009],[9.093435092000078,63.294012762000094],[9.12525475400011,63.320624091000134],[9.143077019000087,63.330877997000165],[9.19157962300008,63.33844635600012],[9.264659050000148,63.362941799000154],[9.43458092500012,63.380438544000086],[9.476898634000122,63.40387604400017],[9.449961785000085,63.40094635600015],[9.393890821000127,63.38666413000006],[9.26026451900006,63.38125234600001],[9.229991082000083,63.37287018400015],[9.218028191000144,63.37201569200014],[9.204356316000114,63.37653229400011],[9.191661004000139,63.38361237200014],[9.16773522200009,63.40200429900001],[9.169118686000076,63.42121002800015],[9.18295332100007,63.43451569200009],[9.481944207000083,63.473211981000034],[9.483897332000112,63.47606028900007],[9.484385613000114,63.48265208500014],[9.480723504000139,63.48704661700013],[9.472178582000112,63.48554108300008],[9.45655358200014,63.47955963700015],[9.364268425000091,63.46625397300012],[9.33301842500012,63.46653880400008],[9.300629102000128,63.47776927300007],[9.285329623000079,63.47955963700015],[9.279958530000101,63.482367255000106],[9.268077019000145,63.495550848000065],[9.257823113000143,63.50006745000012],[9.262054884000063,63.48517487200014],[9.268077019000145,63.47345612200017],[9.277598504000139,63.464789130000085],[9.292165561000076,63.45913320500009],[9.210215691000144,63.45941803600011],[9.16732832100007,63.466864325000095],[9.148610873000107,63.4858259140001],[9.16195722700013,63.507147528000175],[9.192556186000047,63.513617255000085],[9.244313998000052,63.51373932500014],[9.237152540000125,63.53449127800015],[9.255869988000086,63.53530508000016],[9.283376498000107,63.529689846000146],[9.30225670700014,63.53082916900008],[9.319021030000073,63.54328034100011],[9.342784050000063,63.55560944200006],[9.368011915000125,63.56329987200017],[9.388194207000055,63.56220123900011],[9.377696160000085,63.55385976800006],[9.374522332000112,63.54230377800003],[9.37826582100007,63.530462958000086],[9.388194207000055,63.52118561400012],[9.403330925000148,63.518459377000156],[9.416677280000073,63.524888414000074],[9.460134311000104,63.56167226800015],[9.476817254000139,63.57176341400013],[9.495371941000142,63.576890367000125],[9.518565300000091,63.57518138200014],[9.536387566000059,63.56728750200015],[9.559906446000127,63.54584381700011],[9.57325280000012,63.54100169500004],[9.560557488000084,63.565863348000086],[9.545909050000148,63.58055247599999],[9.524180535000085,63.58763255400006],[9.490570509000065,63.58942291900003],[9.516774936000104,63.60370514500012],[9.546071811000047,63.610296942],[9.607920769000117,63.61676666900012],[9.667653842000078,63.637762762000065],[9.69906660200013,63.64447663],[9.72396894600007,63.63666413],[9.720225457000112,63.62075429900009],[9.739593946000127,63.60260651200018],[9.785492384000122,63.57518138200014],[9.799978061000076,63.56313711100001],[9.81072024800008,63.548570054],[9.81381269600007,63.53204987200012],[9.805918816000087,63.51373932500014],[9.89869225400011,63.47736237200017],[9.947438998000052,63.44953034100011],[9.960622592000078,63.42772044500004],[9.941416863000141,63.39447663000006],[9.928477410000113,63.377183335000055],[9.833262566000142,63.328802802000055],[9.856700066000142,63.325425523000135],[9.89421634200005,63.331203518000095],[9.931325717000078,63.34178294500005],[9.979177280000101,63.36347077000012],[10.013438347000147,63.36188385600009],[10.04704837300008,63.352280992000104],[10.099294467000107,63.324896552000055],[10.13892662900011,63.322333075000145],[10.211273634000094,63.328802802000055],[10.242198113000114,63.326320705000036],[10.254405144000089,63.31443919500007],[10.259043816000116,63.26727936400009],[10.26856530000012,63.27301666900015],[10.272227410000085,63.28168366100005],[10.272146030000101,63.30487702000009],[10.27328535200013,63.30780670800002],[10.275726759000065,63.309475002000035],[10.278330925000148,63.312201239],[10.279551629000082,63.318264065000086],[10.277354363000086,63.32379791900011],[10.272715691000142,63.32684967699999],[10.268077019000145,63.32892487200003],[10.265879754000139,63.33193594000012],[10.244883660000113,63.34406159100003],[10.083994988000143,63.361273505000135],[10.068695509000094,63.365545966000134],[10.056407097000118,63.37287018400015],[10.04908287900011,63.38190338700015],[10.042246941000087,63.39476146],[10.04086347700013,63.4063988300001],[10.049571160000113,63.41132233300005],[10.060069207000083,63.414984442],[10.083669467000107,63.43256256700012],[10.09400475400011,63.43866608300011],[10.156016472000061,63.45233795800005],[10.30046634200005,63.46653880400008],[10.317230665000068,63.46369049700003],[10.354665561000104,63.44489166900008],[10.373057488000143,63.44171784100002],[10.386892123000052,63.44306061400001],[10.415537957000112,63.45233795800005],[10.447276238000057,63.45677317900014],[10.48194420700014,63.45465729400003],[10.515961134000065,63.44708893400018],[10.546153191000085,63.43488190300009],[10.576914910000056,63.43073151200014],[10.690440300000091,63.45233795800005],[10.6959741550001,63.44733307500011],[10.758799675000063,63.43866608300011],[10.783702019000117,63.42304108300015],[10.79786217500012,63.41738515800012],[10.810231967000078,63.42121002800015],[10.82976321700005,63.44057851800009],[10.840993686000047,63.443996486000096],[10.87590579500008,63.44590892100014],[10.875987175000148,63.44594961100013],[10.893077019000089,63.44953034100011],[10.90805097700013,63.45624420800006],[10.91635175900012,63.46653880400008],[10.82252037900011,63.47589752800012],[10.777679884000094,63.487494208000115],[10.758799675000063,63.5174828150001],[10.780772332000083,63.53900788],[10.831065300000148,63.550360419000164],[10.922618035000141,63.55475495000014],[10.922618035000141,63.56220123900011],[10.877289259000065,63.56439850500011],[10.85694420700014,63.569322007],[10.861501498000107,63.57859935100013],[10.87916100400011,63.583319403000154],[10.896983269000089,63.584377346],[10.912364129000139,63.588527736000124],[10.922618035000141,63.602484442000026],[10.851328972000147,63.598089911000116],[10.817556186000076,63.59076569200012],[10.785980665000096,63.57859935100013],[10.768321160000085,63.57404205900009],[10.730153842000107,63.57176341400013],[10.71436608200014,63.5649274760001],[10.702159050000091,63.55744049700003],[10.687510613000084,63.55194733300003],[10.671641472000147,63.548773505000135],[10.65642337300008,63.548529364],[10.65642337300008,63.55475495000014],[10.672618035000113,63.558172919000164],[10.680023634000092,63.56761302299999],[10.686045769000117,63.57746002800008],[10.697276238000113,63.581976630000064],[10.705088738000114,63.58368561400005],[10.708506707000112,63.587836005],[10.710622592000107,63.59332916900003],[10.71436608200014,63.599066473],[10.71973717500012,63.603501694999984],[10.729340040000096,63.60883209800015],[10.734711134000065,63.61334870000009],[10.7557072270001,63.62506745000009],[10.787771030000071,63.63483307500003],[10.844574415000125,63.644110419000164],[10.864268425000148,63.651516018000066],[10.905446811000047,63.68447500200013],[11.03345787900011,63.719183661],[11.05689537900008,63.71605052300013],[11.083018425000148,63.70457591399998],[11.119639519000145,63.704494533000016],[11.156748894000089,63.71112702000006],[11.18384850400011,63.71979401200014],[11.205821160000113,63.733710028000054],[11.242198113000114,63.7650820980001],[11.265798373000052,63.77440013200011],[11.337250196000099,63.78416575700008],[11.443044467000107,63.78607819200011],[11.457692905000044,63.78998444200012],[11.463877800000091,63.801703192],[11.459727410000141,63.81244538000011],[11.44939212300005,63.818915106000034],[11.436371290000066,63.82184479400014],[11.42408287900011,63.82221100500006],[11.427582227000102,63.82526276200016],[11.434255405000073,63.83266836100013],[11.437754754000139,63.83588288],[11.415212436000076,63.85008372600011],[11.354746941000142,63.84813060100007],[11.327321811000104,63.85297272300014],[11.301931186000076,63.862941799000126],[11.277110222000118,63.86737702],[11.251800977000073,63.867173570000055],[11.111582879000139,63.84955475500015],[11.10173587300011,63.851874091000084],[11.096527540000125,63.858099677000055],[11.094574415000068,63.86688873900012],[11.094493035000085,63.87685781500004],[11.09644616000014,63.88963450700005],[11.101898634000065,63.89350006700007],[11.112315300000148,63.89411041900002],[11.176605665000096,63.90924713700012],[11.200368686000076,63.919745184000085],[11.210622592000107,63.935207424],[11.223317905000073,63.94546133000012],[11.299978061000047,63.96556224199999],[11.43685957100007,63.983140367000104],[11.463145379000082,63.99323151200017],[11.486827019000087,64.00665924700016],[11.497894727000128,64.02081940300009],[11.454437696000099,64.01740143400009],[11.441742384000122,64.02570221600017],[11.426280144000089,64.02879466400005],[11.366547071000127,64.02728913],[11.262054884000094,64.03611888200005],[11.25424238400012,64.03790924700014],[11.241953972000147,64.05158112200017],[11.24048912900011,64.061021226],[11.252452019000117,64.06806061400006],[11.280039910000141,64.076117255],[11.345062696000099,64.10488515800013],[11.362071160000141,64.11709219000012],[11.328379754000139,64.11440664300011],[11.299978061000047,64.10716380400011],[11.225352410000113,64.07196686400006],[11.203461134000065,64.02741120000017],[11.19760175900012,64.02081940300009],[11.175140821000127,64.007025458],[10.962738477000073,63.94794342700005],[10.936289910000085,63.936346747000144],[10.910980665000068,63.921698309000035],[10.892263217000078,63.90753815300011],[10.87134850400011,63.897202867000104],[10.838063998000024,63.887274481000084],[10.720062696000127,63.86981842700014],[10.688649936000104,63.86029694200014],[10.64616946700005,63.833238023000106],[10.595388217000078,63.82025788000011],[10.573741082000112,63.809149481000176],[10.593760613000057,63.80878327000007],[10.613129102000073,63.81146881700015],[10.631602410000113,63.81631094000012],[10.689138217000107,63.84015534100011],[10.700694207000112,63.84271881700012],[10.770030144000089,63.850287177000055],[10.900238477000128,63.89472077000009],[10.934906446000127,63.898138739],[11.0006616550001,63.87742747599999],[11.030284050000148,63.87197500200013],[11.056000196000099,63.86127350500011],[11.073985222000116,63.83588288],[11.053477410000085,63.831488348000036],[11.029795769000145,63.823431708000086],[11.007497592000107,63.81313711100016],[10.991465691000116,63.801703192],[10.987152540000125,63.794378973],[10.982269727000071,63.77578359600001],[10.97787519600007,63.7675641950001],[10.971690300000091,63.763169664000124],[10.95460045700014,63.75592682500008],[10.947032097000118,63.75018952000011],[10.910004102000073,63.73102448100015],[10.811045769000087,63.720160223000086],[10.740733269000144,63.69037506700006],[10.67172285200013,63.68683502800008],[10.642751498000024,63.67763906500013],[10.633555535000141,63.66962311400009],[10.611582879000139,63.64032623900006],[10.602305535000085,63.635931708000086],[10.566661004000139,63.62518952000006],[10.529633009000094,63.619452216000084],[10.415782097000147,63.57941315300015],[10.401621941000116,63.576361395000056],[10.366709832000112,63.573187567],[10.33545983200014,63.56415436400008],[10.320160352000073,63.56220123900011],[10.241384311000104,63.56220123900011],[10.22836347700013,63.558823960000105],[10.204844597000061,63.54433828300007],[10.193614129000082,63.54100169500004],[10.166351759000094,63.53693268400017],[10.080332879000082,63.507513739],[10.041026238000086,63.50165436400015],[9.998383009000065,63.50006745000012],[9.991547071000127,63.498277085000105],[9.985687696000099,63.49502187700006],[9.980153842000078,63.49335358300006],[9.973887566000116,63.49664948100009],[9.969248894000089,63.50018952000009],[9.962738477000102,63.50372955900015],[9.955902540000096,63.506496486000046],[9.91822350400011,63.51471588700012],[9.90837649800008,63.532416083000115],[9.903981967000105,63.55459219],[9.887950066000116,63.57518138200014],[9.898448113000084,63.58637116100015],[9.902110222000118,63.58942291900003],[9.885590040000068,63.59503815300003],[9.84986412900011,63.59735748900001],[9.833262566000142,63.602484442000026],[9.818207227000128,63.61408112200002],[9.810801629000053,63.627142645],[9.814463738000114,63.63825104400002],[9.833262566000142,63.644110419000164],[9.826426629000139,63.65350983299999],[9.817149285000085,63.65884023600007],[9.792246941000144,63.66453685100005],[9.795583530000071,63.66852448100003],[9.797373894000058,63.67177969000006],[9.800059441000142,63.674709377000106],[9.805918816000087,63.67763906500013],[9.803396030000073,63.68158600500003],[9.799082879000082,63.691839911000116],[9.843435092000107,63.69623444200012],[9.924082879000139,63.71548086100015],[9.9998478520001,63.7238630230001],[10.036306186000076,63.73460521000013],[10.070974155000044,63.74994538],[10.1014103520001,63.7675641950001],[10.07593834700009,63.76581452000003],[10.030284050000148,63.74799225500014],[10.00521894600007,63.74652741100009],[10.009613477000045,63.757635809000085],[10.017588738000114,63.765936591000084],[10.028005405000101,63.771389065000115],[10.039317254000082,63.77440013200011],[10.029551629000139,63.78351471600002],[10.01197350400011,63.78009674700012],[9.99187259200005,63.772040106000176],[9.973887566000116,63.7675641950001],[9.955821160000113,63.766302802],[9.906586134000094,63.75726959800009],[9.857595248000052,63.73163483300011],[9.779551629000082,63.723211981000176],[9.728851759000122,63.702093817000055],[9.648936394000115,63.69928620000012],[9.645681186000076,63.69635651200018],[9.643809441000114,63.69163646000008],[9.642832879000139,63.687201239],[9.642100457000112,63.6850446640001],[9.637054884000065,63.68431224199999],[9.625824415000068,63.68585846600003],[9.621104363000143,63.6850446640001],[9.586761915000094,63.671372789000074],[9.544118686000076,63.66559479400011],[9.551280144000117,63.68309153900007],[9.567881707000083,63.70677317900008],[9.552744988000086,63.71979401200014],[9.552744988000086,63.726019598000114],[9.719493035000085,63.762884833],[9.77808678500014,63.7675641950001],[9.77808678500014,63.77440013200011],[9.581309441000087,63.75910065300015],[9.545909050000148,63.77440013200011],[9.662771030000016,63.81879303600006],[9.831228061000047,63.861639716000056],[9.874278191000087,63.86318594000009],[9.874278191000087,63.86937083500005],[9.830739780000043,63.87059153900007],[9.811208530000073,63.87474192900011],[9.792246941000144,63.88369375200012],[9.89210045700014,63.902533270000056],[9.912364129000139,63.90078359600007],[9.914561394000145,63.89150625200013],[9.90772545700014,63.886419989],[9.906748894000144,63.88410065300003],[9.925791863000143,63.88369375200012],[9.936859571000099,63.88629791900002],[9.970469597000118,63.90420156500009],[10.06804446700005,63.91766998900005],[10.11597741000014,63.941107489000146],[10.173675977000073,63.93406810100007],[10.19703209700009,63.93829987200009],[10.172373894000089,63.95722077000011],[10.158864780000101,63.96369049700002],[10.141774936000076,63.96556224199999],[10.126149936000076,63.962062893],[10.095713738000114,63.948675848],[10.063975457000083,63.943589585000076],[10.031260613000141,63.934271552000105],[9.99390709700009,63.92938873900006],[9.961924675000091,63.9188500020001],[9.943125847000147,63.918402411],[9.972666863000114,63.94183991100009],[10.087250196000099,63.96649811400005],[10.128103061000047,63.98672109600009],[10.113047722000118,63.987005927000105],[10.102224155000016,63.98212311400006],[10.092133009000065,63.976060289000074],[10.080332879000082,63.97304922100015],[10.069590691000087,63.976304429000024],[10.064463738000143,63.982814846000096],[10.058604363000114,63.986802476000086],[9.993011915000096,63.96454498900011],[9.96306399800011,63.959662177000055],[9.936289910000113,63.959418036000024],[9.94483483200014,63.97162506700009],[9.972341342000078,63.983832098000065],[9.984141472000147,63.99347565300004],[9.989268425000148,64.00950755400011],[9.99122155000012,64.02570221600017],[9.998057488000114,64.03628164300012],[10.018239780000073,64.03510163],[10.013926629000139,64.04425690300017],[10.014414910000141,64.04922109600012],[10.025645379000139,64.06244538000006],[10.014821811000047,64.07050202],[10.003184441000142,64.08197663000014],[9.99577884200005,64.09544505400014],[9.99781334700009,64.10956452000006],[10.013682488000114,64.11880117400013],[10.035817905000101,64.115464585],[10.084320509000063,64.10126373900009],[10.098399285000113,64.09186432500015],[10.107920769000089,64.08974844000015],[10.192067905000043,64.10146719000012],[10.20883222700013,64.10976797100001],[10.21753991000014,64.12392812700013],[10.191416863000084,64.11737702000015],[10.107676629000139,64.11709219000012],[10.117360873000107,64.13043854400003],[10.13379967500012,64.13849518400015],[10.152598504000053,64.14077383000013],[10.169688347000118,64.13690827000012],[10.160980665000125,64.14765045800014],[10.156016472000061,64.15119049700003],[10.156016472000061,64.15802643400006],[10.19703209700009,64.15802643400006],[10.185231967000107,64.16087474199999],[10.17790774800011,64.16669342700014],[10.176768425000148,64.17495351800012],[10.183360222000147,64.1853701840001],[10.177582227000073,64.18903229400017],[10.174489780000101,64.19257233300006],[10.172373894000089,64.19594961100007],[10.169688347000118,64.19896067900008],[10.187754754000109,64.19790273600002],[10.20541425900012,64.19403717700011],[10.22217858200014,64.19261302300004],[10.237315300000148,64.19896067900008],[10.234385613000141,64.20107656500008],[10.233409050000148,64.20140208500011],[10.231130405000101,64.20579661699999],[10.254649285000141,64.20551178600006],[10.29712975400011,64.20994700700014],[10.319997592000107,64.20579661699999],[10.365082227000102,64.18504466400002],[10.374522332000112,64.1853701840001],[10.365407748000107,64.20718008000006],[10.323496941000116,64.22223541900009],[10.245371941000087,64.23379140800002],[10.258799675000091,64.24559153899999],[10.283702019000117,64.25250885600018],[10.333506707000083,64.26044342700014],[10.330821160000113,64.264105536],[10.326833530000043,64.27411530200008],[10.351573113000114,64.27496979400009],[10.397308790000125,64.26439036700013],[10.391856316000087,64.27777741100012],[10.391368035000113,64.28778717700011],[10.407481316000087,64.28929271000008],[10.436289910000113,64.28497955900015],[10.44939212300008,64.29043203300002],[10.462575717000021,64.29413483300014],[10.476328972000147,64.29584381700015],[10.491221550000091,64.29523346600008],[10.491221550000091,64.30141836100016],[10.457692905000073,64.30101146000005],[10.449554884000122,64.31281159100003],[10.45215905000012,64.33100006700012],[10.450205925000091,64.34979889500006],[10.47095787900008,64.35040924700002],[10.477549675000148,64.34979889500006],[10.470713738000141,64.35663483300009],[10.49390709700009,64.35643138200014],[10.517344597000147,64.35004303600003],[10.559418165000125,64.3293317730001],[10.553558790000068,64.34345123900012],[10.539317254000082,64.35325755400008],[10.504730665000068,64.36408112200014],[10.504730665000068,64.37030670800011],[10.547536655000073,64.36888255400005],[10.567393425000148,64.3639183610001],[10.598317905000101,64.34577057500009],[10.614593946000127,64.34642161700005],[10.648936394000089,64.35663483300009],[10.648936394000089,64.36408112200014],[10.62086022200009,64.36294179900013],[10.607106967000078,64.36554596600001],[10.601084832000083,64.37396881700006],[10.598399285000085,64.38300202000009],[10.59131920700014,64.38800690300003],[10.581390821000127,64.3902855490001],[10.570323113000086,64.39077383000007],[10.566905144000089,64.39301178600006],[10.56421959700009,64.39789459800012],[10.560231967000021,64.402777411],[10.55298912900011,64.40509674700017],[10.46387780000012,64.40509674700017],[10.471039259000065,64.41571686400002],[10.483083530000071,64.42373281500015],[10.497325066000087,64.42910390800002],[10.511566602000102,64.43170807500012],[10.544118686000047,64.4261742210001],[10.599131707000112,64.40208567900008],[10.62826582100007,64.397650458],[10.623220248000052,64.41034577000015],[10.613129102000073,64.42080312700013],[10.602224155000101,64.42649974200009],[10.594248894000144,64.4248721370001],[10.591970248000079,64.43012116100009],[10.58765709700009,64.43276601800007],[10.585459832000083,64.43431224200009],[10.593272332000083,64.44139232000008],[10.599294467000078,64.44879791900014],[10.604746941000116,64.45221588700015],[10.615244988000086,64.45010000200016],[10.63111412900011,64.44074127800012],[10.63892662900011,64.43854401200004],[10.646250847000118,64.43537018400015],[10.658864780000101,64.42129140800002],[10.666270379000082,64.41811758000016],[10.721202019000087,64.41811758000016],[10.731944207000083,64.41575755400002],[10.736664259000092,64.41010163000011],[10.739756707000083,64.40338776200015],[10.74512780000012,64.397650458],[10.753754102000128,64.39305247600005],[10.815114780000044,64.37026601800012],[10.834971550000148,64.36912669499999],[10.854991082000112,64.37775299700009],[10.799327019000087,64.40078359600007],[10.78663170700014,64.41128164300012],[10.805186394000145,64.42080312700013],[10.796641472000118,64.43231842700008],[10.774587436000102,64.44188060100005],[10.7526147800001,64.44599030200003],[10.67994225400011,64.43903229400011],[10.65642337300008,64.44599030200003],[10.65642337300008,64.45221588700015],[10.670420769000117,64.45429108300009],[10.692149285000085,64.46792226800012],[10.70411217500012,64.47272370000012],[10.715098504000082,64.47247955900018],[10.740000847000118,64.466701565],[10.7526147800001,64.4658877620001],[10.752777540000068,64.46816640800007],[10.754405144000087,64.47304922100012],[10.757334832000112,64.47793203300002],[10.762217644000089,64.480169989],[10.792816602000102,64.480169989],[10.805837436000076,64.47650788000014],[10.827321811000104,64.467271226],[10.841156446000099,64.4658877620001],[10.836924675000091,64.48289622600008],[10.82748457100007,64.49188873900009],[10.814707879000139,64.49819570500004],[10.800303582000083,64.50747304900007],[10.824717644000117,64.51137929900007],[10.84839928500014,64.50486888200008],[10.86931399800011,64.49201080900015],[10.885427280000073,64.47646719000015],[10.892263217000078,64.47467682500015],[10.900238477000128,64.48041413000014],[10.908457879000139,64.48834870000009],[10.91635175900012,64.493150132],[10.927256707000083,64.4921735700001],[10.936208530000101,64.487453518],[10.94548587300008,64.48403554900001],[10.956716342000078,64.48700592700011],[10.926280144000117,64.50202057500003],[10.922618035000141,64.50747304900007],[10.927907748000052,64.51337311400003],[10.938812696000099,64.5129255230001],[10.964121941000144,64.50747304900007],[10.964121941000144,64.51496002800006],[10.949880405000044,64.52049388200005],[10.948741082000112,64.52871328300016],[10.953623894000089,64.53921133000013],[10.956716342000078,64.55219147300012],[10.951670769000145,64.55878327],[10.939952019000145,64.566107489],[10.926442905000073,64.57241445500013],[10.91635175900012,64.57575104400017],[10.91635175900012,64.58258698100009],[10.926768425000091,64.58197663000014],[10.934825066000144,64.58356354400017],[10.950450066000114,64.59003327000006],[10.953461134000122,64.59275950700014],[10.9557397800001,64.59723541900011],[10.957041863000086,64.60130442900005],[10.956716342000078,64.60301341400007],[10.971202019000117,64.60260651200015],[10.995371941000114,64.59259674700017],[11.051931186000047,64.57982005400014],[11.06031334700009,64.57575104400017],[11.063487175000148,64.56614817899998],[11.059743686000047,64.54743073100003],[11.063487175000148,64.53815338700018],[11.076182488000114,64.52362702000012],[11.08432050900012,64.52147044500013],[11.10132897200009,64.52114492400001],[11.167246941000144,64.48916250200001],[11.178070509000037,64.47866445500013],[11.176117384000092,64.4654808610001],[11.162771030000073,64.44599030200003],[11.185069207000112,64.44159577000012],[11.245371941000059,64.45221588700015],[11.269786004000109,64.4525820980001],[11.29395592500012,64.44916413000009],[11.317718946000127,64.4421247420001],[11.341563347000118,64.43170807500012],[11.331797722000145,64.41209544500005],[11.320323113000114,64.39866771000005],[11.268728061000076,64.36664459800006],[11.22486412900011,64.322455145],[11.247406446000099,64.32558828300007],[11.26734459700009,64.33950429900015],[11.299978061000047,64.37030670800011],[11.377614780000073,64.39716217700003],[11.389333530000044,64.40509674700017],[11.369965040000125,64.41071198100015],[11.362071160000141,64.41128164300012],[11.369639519000117,64.420152085],[11.397227410000113,64.44574616100006],[11.409841342000107,64.45221588700015],[11.416758660000113,64.45062897300012],[11.434580925000091,64.44090403899999],[11.443369988000143,64.43854401200004],[11.453868035000113,64.43992747600011],[11.477386915000068,64.45221588700015],[11.520274285000141,64.46246979400009],[11.61264082100007,64.46954987200014],[11.656260613000084,64.480169989],[11.437754754000139,64.4658877620001],[11.447764519000117,64.4769961610001],[11.451670769000115,64.49628327000006],[11.460703972000118,64.51117584800012],[11.475271030000071,64.517238674],[11.5213322270001,64.5182152360001],[11.539561394000089,64.52114492400001],[11.539561394000089,64.52798086100013],[11.528086785000141,64.52936432500012],[11.518077019000144,64.53314850500013],[11.510427280000043,64.53937409100008],[11.50603274800005,64.5484072940001],[11.573741082000083,64.55585358300009],[11.554453972000147,64.54450104400011],[11.547048373000052,64.54157135600018],[11.570078972000118,64.53725820500007],[11.656260613000084,64.56952545800011],[11.75049889400006,64.58567942900007],[11.779795769000087,64.596869208],[11.659515821000127,64.59430573100018],[11.63575280000012,64.58258698100009],[11.624522332000112,64.59259674700017],[11.62794030000012,64.60260651200015],[11.633555535000141,64.61298248900006],[11.628916863000114,64.62417226800007],[11.6111759770001,64.62860748900015],[11.589121941000116,64.62295156500015],[11.56788170700014,64.61253489800008],[11.553233269000115,64.60301341400007],[11.56267337300005,64.59853750200001],[11.572764519000089,64.596380927],[11.583506707000112,64.59601471600008],[11.59473717500012,64.596869208],[11.577159050000091,64.57501862200014],[11.547618035000113,64.56818268400004],[11.516774936000076,64.57294342700011],[11.494883660000113,64.58633047100012],[11.485524936000104,64.59528229400014],[11.463877800000091,64.61127350500006],[11.454437696000099,64.62042877800003],[11.443369988000143,64.62714264500008],[11.429535352000128,64.63157786700005],[11.420664910000113,64.63637929900013],[11.42408287900011,64.6439883480001],[11.42408287900011,64.65143463700015],[11.412608269000145,64.65599192900011],[11.402028842000107,64.66315338700007],[11.395681186000074,64.67283763200011],[11.396169467000078,64.68561432500013],[11.402028842000107,64.68829987200003],[11.411387566000142,64.68610260600002],[11.42017662900011,64.68610260600002],[11.42408287900011,64.69586823100018],[11.420664910000113,64.69940827000006],[11.412608269000145,64.70294830900004],[11.40333092500012,64.70563385600012],[11.396169467000078,64.70673248900006],[11.421071811000104,64.71381256700012],[11.479828321000099,64.71954987200009],[11.531748894000087,64.744574286],[11.560394727000073,64.74233633000004],[11.588552280000043,64.73639557500009],[11.615896030000016,64.7402204450001],[11.610036655000071,64.74152252800012],[11.59473717500012,64.74770742400007],[11.595225457000112,64.758490302],[11.584157748000079,64.76203034100017],[11.56771894600007,64.76333242400007],[11.553233269000115,64.767523505],[11.790375196000127,64.78363678600006],[11.82325280000012,64.79376862200003],[11.841807488000143,64.79486725500006],[11.841807488000143,64.80231354400014],[11.738780144000089,64.80231354400014],[11.745616082000112,64.80914948100015],[11.716563347000118,64.81122467700008],[11.670909050000091,64.82062409100011],[11.6432397800001,64.82273997600011],[11.67709394600007,64.83209870000015],[11.78728274800005,64.8358421900001],[11.786794467000078,64.84072500200016],[11.785492384000065,64.84381745000003],[11.779795769000087,64.850083726],[11.78728274800005,64.85757070500016],[11.718923373000079,64.84125397300012],[11.683604363000143,64.837062893],[11.649424675000148,64.8432070980001],[11.708506707000083,64.8583031270001],[11.726084832000112,64.87661367400015],[11.745453321000127,64.8841820330001],[11.766449415000068,64.88922760600003],[11.814463738000057,64.89508698100018],[11.916840040000068,64.92519765800002],[11.99195397200009,64.93024323100003],[12.008799675000091,64.93602122600002],[12.019297722000145,64.94318268400004],[12.050954623000052,64.95734284100017],[12.063731316000087,64.95994700700005],[12.224864129000082,64.9394391950001],[12.186289910000113,64.95954010600015],[12.143890821000127,64.96942780200008],[12.053477410000141,64.97296784100014],[12.033457879000082,64.96991608300006],[11.998057488000086,64.95620351800012],[11.982188347000147,64.95311107000003],[11.911631707000083,64.94940827],[11.738780144000089,64.891058661],[11.617035352000073,64.86961497600008],[11.608409050000148,64.86196523600013],[11.622080925000091,64.850083726],[11.622080925000091,64.8432070980001],[11.547618035000113,64.81964752800003],[11.522471550000148,64.8159040390001],[11.494965040000096,64.81488678600012],[11.478282097000145,64.81061432500003],[11.464854363000084,64.801214911],[11.447438998000107,64.78489817900008],[11.426768425000091,64.77024974200006],[11.40333092500012,64.759711005],[11.37859134200005,64.752427476],[11.260996941000144,64.73436107000008],[11.238536004000139,64.7402204450001],[11.250987175000148,64.74534739800013],[11.310069207000083,64.75600820500016],[11.337901238000141,64.765366929],[11.351410352000128,64.767523505],[11.360524936000102,64.77122630400014],[11.42139733200014,64.80829498900006],[11.429698113000113,64.8159040390001],[11.346364780000101,64.80499909100003],[11.302419467000078,64.821966864],[11.255056186000047,64.81659577000012],[11.231700066000114,64.82273997600011],[11.252696160000085,64.83783600500011],[11.281993035000085,64.84454987200016],[11.52377363400012,64.8625348980001],[11.664886915000096,64.89325592699998],[11.69711347700013,64.91217682500003],[11.672536655000101,64.912298895],[11.601573113000143,64.891058661],[11.245371941000059,64.85757070500016],[11.267263217000107,64.86981842700011],[11.401377800000148,64.9222679710001],[11.423187696000127,64.92519765800002],[11.450205925000148,64.92230866100009],[11.512217644000117,64.89850495000009],[11.53337649800011,64.89590078300007],[11.554209832000083,64.89907461100013],[11.57447350400011,64.90692780200014],[11.59473717500012,64.9183617210001],[11.59473717500012,64.92519765800002],[11.577891472000118,64.92255280200011],[11.549327019000117,64.90794505399998],[11.533946160000085,64.90473053600014],[11.521983269000145,64.90814850500006],[11.477386915000068,64.932603257],[11.495371941000116,64.9408633480001],[11.56006920700014,64.95311107000003],[11.580088738000114,64.95282623900003],[11.621104363000113,64.94440338700015],[11.63575280000012,64.94562409100008],[11.630707227000102,64.9489199890001],[11.622406446000099,64.95644765800007],[11.615896030000016,64.95994700700005],[11.629079623000079,64.9658877620001],[11.639821811000076,64.962795315],[11.650157097000088,64.95648834800006],[11.663096550000091,64.95311107000003],[11.710622592000107,64.95726146],[11.766774936000104,64.97089264500012],[11.776377800000091,64.97671133000006],[11.82016035200013,64.98118724200005],[11.83497155000012,64.98663971600008],[11.817718946000099,64.991400458],[11.804535352000071,64.99860260600012],[11.801524285000141,65.00763580900004],[11.814219597000118,65.01801178600012],[11.872569207000112,65.04189687700001],[11.907562696000127,65.04913971600003],[11.943125847000088,65.06244538000014],[11.978526238000086,65.06883372600008],[12.012461785000141,65.05548737200014],[12.009287957000083,65.04608795800011],[12.010101759000092,65.03595612200017],[12.015472852000128,65.02960846600014],[12.026133660000085,65.03131745000015],[12.031423373000052,65.03636302299999],[12.038747592000078,65.05158112200014],[12.04346764400006,65.05898672100012],[12.054453972000116,65.06557851800004],[12.060394727000045,65.0600446640001],[12.063161655000101,65.05068594000006],[12.063731316000087,65.04559967700013],[12.075938347000147,65.03945547100007],[12.090017123000107,65.04144928599999],[12.10368899800005,65.04653554900013],[12.115570509000094,65.049302476],[12.137054884000122,65.04669830900009],[12.153168165000096,65.03945547100007],[12.16586347700013,65.028469143],[12.177012566000142,65.01459381700012],[12.1763615240001,65.0112165390001],[12.176036004000082,65.00975169500005],[12.172618035000085,65.00360748900005],[12.173187696000042,64.99778880400011],[12.184336785000085,64.99408600500006],[12.194021030000044,64.99485911699999],[12.201508009000092,64.9991722680001],[12.201670769000145,64.99925364800008],[12.207286004000139,65.006048895],[12.211192254000139,65.01459381700012],[12.201833530000016,65.01951732],[12.193125847000118,65.02594635600009],[12.186859571000099,65.03449127800012],[12.184336785000085,65.04559967700013],[12.193125847000118,65.05048248900003],[12.280935092000107,65.06012604400009],[12.339040561000076,65.08246491100003],[12.368825717000078,65.090277411],[12.437998894000145,65.08462148600002],[12.471527540000094,65.08930084800012],[12.486094597000118,65.11351146000011],[12.507497592000078,65.12124258000013],[12.606455925000091,65.12596263200005],[12.636241082000083,65.13129303600003],[12.620371941000144,65.13686758000001],[12.6119897800001,65.13825104400009],[12.602224155000071,65.13743724199999],[12.617360873000052,65.14984772300004],[12.637217644000145,65.15350983300006],[12.65837649800008,65.15448639500015],[12.677256707000083,65.15916575700005],[12.715586785000113,65.18463776200014],[12.774587436000076,65.21157461100013],[12.790537957000083,65.21381256700003],[12.79623457100007,65.21898021000011],[12.801036004000137,65.23053620000005],[12.807383660000085,65.24209219000006],[12.81788170700014,65.24730052300008],[12.83806399800008,65.253607489],[12.93100019600007,65.31240469],[12.939952019000087,65.32782623900012],[12.93181399800008,65.333197333],[12.896250847000118,65.31199778899999],[12.856618686000076,65.29572174700014],[12.84555097700013,65.28945547100001],[12.825368686000102,65.27460358300014],[12.66822350400008,65.19594961100013],[12.568695509000122,65.16669342700011],[12.553721550000091,65.16535065300003],[12.541026238000114,65.16225820500013],[12.514903191000059,65.14809804900003],[12.502777540000068,65.14492422100015],[12.429047071000127,65.13922760600018],[12.39014733200014,65.1425235050001],[12.368825717000078,65.15176015800007],[12.381683790000094,65.17723216399997],[12.47055097700013,65.18260325700014],[12.499196811000104,65.20014069200009],[12.48764082100007,65.2000186220001],[12.461273634000092,65.20282623900006],[12.451426629000137,65.20636627800003],[12.438324415000094,65.21381256700003],[12.437836134000092,65.21613190300017],[12.438731316000085,65.22467682500009],[12.438324415000094,65.22687409100008],[12.41700280000012,65.23021067900011],[12.377940300000148,65.22138092700006],[12.35515384200005,65.21995677299999],[12.35515384200005,65.22687409100008],[12.38998457100007,65.24266185100014],[12.408213738000141,65.24689362200014],[12.430918816000116,65.24730052300008],[12.47999108200014,65.24030182500009],[12.508067254000137,65.240668036],[12.520192905000044,65.25071849199999],[12.677012566000144,65.24921295800011],[12.712087436000047,65.25413646],[12.68067467500009,65.26268138200003],[12.588145379000109,65.26097239800002],[12.516449415000094,65.26776764500012],[12.502696160000085,65.265366929],[12.47478274800005,65.25535716400009],[12.458181186000104,65.25413646],[12.462657097000147,65.26410553600009],[12.46501712300011,65.26776764500012],[12.43572024800008,65.27334219000012],[12.34546959700009,65.26776764500012],[12.320567254000139,65.26019928600009],[12.299489780000016,65.24469635600015],[12.276215040000096,65.23224518400006],[12.245290561000076,65.23362864800013],[12.257172071000099,65.24510325700007],[12.300466342000107,65.26776764500012],[12.312022332000112,65.27631256700015],[12.330577019000115,65.295111395],[12.342133009000065,65.30255768400018],[12.378103061000047,65.30939362200009],[12.416270379000082,65.30878327000012],[12.451426629000137,65.31354401200004],[12.478688998000052,65.33665599199999],[12.459971550000091,65.33681875200013],[12.41032962300008,65.32245514500005],[12.418630405000044,65.33515045800011],[12.432953321000127,65.34454987200014],[12.492035352000071,65.36912669500008],[12.499196811000104,65.37083567900008],[12.506358269000145,65.36880117400013],[12.510264519000144,65.36408112200003],[12.512950066000116,65.35932038000014],[12.516449415000094,65.35716380400014],[12.600840691000087,65.35468170800011],[12.625743035000113,65.34723541900003],[12.639659050000091,65.33527252800009],[12.65650475400011,65.32575104400011],[12.674489780000044,65.32257721600014],[12.69157962300008,65.32982005400007],[12.662771030000044,65.35468170800011],[12.624359571000127,65.35757070500013],[12.583343946000127,65.35846588700004],[12.547048373000024,65.36399974200005],[12.538096550000091,65.37250397300008],[12.533946160000141,65.39191315300008],[12.527028842000078,65.40558502800003],[12.514821811000076,65.416937567],[12.488780144000115,65.43231842700006],[12.478688998000052,65.44651927300005],[12.528005405000044,65.44867584800006],[12.548594597000061,65.44700755400005],[12.56739342500012,65.43976471600003],[12.569997592000107,65.43524811400006],[12.569021030000043,65.42934804900013],[12.569021030000043,65.4234886740001],[12.574229363000143,65.41864655200011],[12.583343946000127,65.41791413000009],[12.5916447270001,65.42987702],[12.602224155000071,65.43231842700006],[12.629242384000094,65.42121002800012],[12.68067467500009,65.37995026200015],[12.712087436000047,65.37083567900008],[12.640798373000052,65.41640859600012],[12.62940514400006,65.43231842700006],[12.64975019600007,65.4502627620001],[12.780284050000148,65.45962148600003],[12.740977410000141,65.46775950700005],[12.60840905000012,65.45962148600003],[12.60840905000012,65.46702708500011],[12.620778842000078,65.469671942],[12.643890821000127,65.47809479400014],[12.6569116550001,65.48069896000005],[12.633799675000148,65.48798248900006],[12.596527540000066,65.48859284100003],[12.577972852000073,65.49803294500005],[12.564626498000052,65.51365794500009],[12.573252800000148,65.51927317900011],[12.59351647200009,65.52191803600003],[12.615733269000117,65.528509833],[12.594248894000117,65.53400299700012],[12.579437696000127,65.54950592700011],[12.57260175900012,65.56989166900011],[12.574229363000143,65.58999258000016],[12.551931186000104,65.56801992400013],[12.537119988000114,65.53481679900013],[12.513682488000143,65.51215241100006],[12.46501712300011,65.52167389500006],[12.486338738000086,65.53803131700009],[12.508148634000122,65.54913971600011],[12.525726759000065,65.56183502800017],[12.533864780000071,65.58315664300012],[12.51002037900011,65.57371653900013],[12.466563347000147,65.53685130400004],[12.438324415000094,65.528509833],[12.404307488000143,65.53497955900009],[12.396494988000086,65.55190664300007],[12.404307488000143,65.57412344000012],[12.417165561000076,65.5967471370001],[12.397308790000096,65.59625885600009],[12.381683790000094,65.59243398600009],[12.368418816000059,65.59267812700013],[12.35515384200005,65.60419342700008],[12.357106967000078,65.60773346600014],[12.359141472000118,65.61758047100007],[12.357676629000139,65.62929922100007],[12.348887566000085,65.63837311400006],[12.364105665000068,65.6524925800001],[12.39820397200009,65.67121002800015],[12.413747592000078,65.6827660180001],[12.430430535000113,65.70042552300002],[12.438324415000094,65.706000067],[12.448008660000141,65.71043528899999],[12.466807488000086,65.71674225500011],[12.475596550000148,65.72402578300013],[12.495371941000085,65.73334381700009],[12.525075717000107,65.73436107000005],[12.554535352000102,65.7293968770001],[12.574229363000143,65.7202822940001],[12.581309441000087,65.71308014500006],[12.58545983200014,65.70661041900017],[12.587412957000083,65.69936758000013],[12.587901238000086,65.68960195500001],[12.594248894000117,65.68634674700014],[12.636241082000083,65.6861839860001],[12.62647545700014,65.68109772300006],[12.615733269000117,65.6732852230001],[12.608246290000066,65.66315338700002],[12.60840905000012,65.65135325700005],[12.61500084700009,65.6524925800001],[12.6569116550001,65.63837311400006],[12.693125847000118,65.644273179],[12.71241295700014,65.64411041900003],[12.740896030000073,65.62970612200014],[12.757823113000141,65.63019440300015],[12.774912957000081,65.6339378930001],[12.787119988000086,65.63837311400006],[12.77686608200014,65.64907461100007],[12.758148634000065,65.65525950700005],[12.737071160000141,65.658148505],[12.696625196000099,65.65912506700006],[12.683604363000114,65.66144440300003],[12.674327019000089,65.66746653900013],[12.66358483200014,65.67934804900007],[12.658457879000139,65.6900902360001],[12.65593509200005,65.70115794500013],[12.650157097000145,65.70990631699999],[12.62330162900008,65.71564362200017],[12.586436394000117,65.72772858300009],[12.574229363000143,65.73395416900006],[12.557790561000045,65.75372955900015],[12.567149285000085,65.766546942],[12.615733269000117,65.78912995000017],[12.63428795700014,65.80272044500013],[12.645355665000068,65.80768463700016],[12.66032962300011,65.809719143],[12.673106316000142,65.805853583],[12.685069207000083,65.79779694200006],[12.698741082000112,65.79059479400003],[12.717539910000085,65.78912995000017],[12.704600457000083,65.80223216400005],[12.711192254000139,65.82713450700007],[12.693695509000094,65.83551666900003],[12.66618899800005,65.83421458500014],[12.626312696000099,65.8273786480001],[12.615733269000117,65.82794830900009],[12.611664259000065,65.83466217700014],[12.615733269000117,65.85065338700004],[12.619802280000101,65.85529205900015],[12.631358269000117,65.85976797100011],[12.636241082000083,65.86432526200015],[12.638926629000082,65.87116120000009],[12.640391472000116,65.88564687700013],[12.642425977000073,65.89158763200005],[12.660411004000082,65.91181061400009],[12.682302280000043,65.92666250200013],[12.789073113000114,65.96499258000007],[12.817393425000148,65.9687360700001],[12.848480665000068,65.96670156500006],[12.917491082000112,65.95302969000012],[12.929698113000084,65.94627513200003],[12.951670769000087,65.9307315120001],[12.96583092500012,65.92572663000006],[12.985362175000091,65.92527903900007],[13.022797071000127,65.92975495000003],[13.04037519600007,65.92572663000006],[13.048594597000147,65.91962311400006],[13.059336785000085,65.90497467700006],[13.06820722700013,65.89838288],[13.077321811000104,65.89541250200007],[13.094004754000137,65.89370351800007],[13.102549675000063,65.89158763200005],[13.1080835300001,65.8913434920001],[13.114919467000107,65.892320054],[13.120453321000127,65.89215729400003],[13.122894727000071,65.88816966400005],[13.122731967000107,65.87954336100013],[13.122894727000071,65.87791575700011],[13.156993035000085,65.85065338700004],[13.176036004000082,65.85578034100014],[13.167002800000148,65.87164948100018],[13.151052280000044,65.89248281500015],[13.149668816000059,65.9120954450001],[13.133555535000085,65.924261786],[13.125987175000148,65.933335679],[13.122894727000071,65.94310130400014],[13.112559441000142,65.94684479400017],[13.048513217000078,65.94684479400017],[12.978363477000102,65.95990631700015],[12.94239342500012,65.9738630230001],[12.924327019000117,65.99404531500015],[12.94556725400011,65.99982330900012],[12.963145379000139,66.01019928600003],[12.968028191000114,66.02285390800007],[12.951508009000122,66.03558991100012],[12.97055097700013,66.05280182500015],[13.023610873000052,66.06728750200001],[13.04037519600007,66.08344147300006],[13.002207879000082,66.08266836100013],[12.92725670700014,66.06146881700015],[12.712087436000047,66.04242584800015],[12.715505405000043,66.0469424500001],[12.717133009000065,66.05011627800017],[12.719574415000094,66.05288320500013],[12.72559655000012,66.0560977230001],[12.712901238000141,66.06146881700015],[12.699392123000079,66.06338125200001],[12.670420769000087,66.06289297100001],[12.687185092000105,66.07461172100001],[12.751719597000145,66.10512929900013],[12.77320397200009,66.1113141950001],[12.805918816000116,66.11562734600001],[12.86898847700013,66.13434479400009],[13.047536655000101,66.1522891300001],[13.075368686000076,66.14606354400017],[13.089528842000078,66.14614492400015],[13.095550977000102,66.155422268],[13.103688998000107,66.1615664730001],[13.156748894000117,66.16937897300005],[13.17351321700005,66.17536041900009],[13.225352410000141,66.18577708500008],[13.306000196000099,66.21792226800012],[13.5271916020001,66.240139065],[13.561778191000087,66.23419830900015],[13.576508009000092,66.21893952],[13.557383660000113,66.20514557500009],[13.523203972000118,66.19570547100007],[13.492849155000043,66.19330475500014],[13.492849155000043,66.18577708500008],[13.582286004000139,66.18577708500008],[13.571625196000126,66.17243073100015],[13.544606967000078,66.1520042990001],[13.534434441000116,66.138617255],[13.530121290000123,66.12026601800012],[13.535899285000085,66.110541083],[13.547699415000068,66.10797760600018],[13.561778191000087,66.1113141950001],[13.57357832100007,66.11920807500009],[13.600922071000127,66.1432966170001],[13.616953972000118,66.1522891300001],[13.639659050000061,66.15729401200015],[13.711924675000148,66.15851471600008],[13.746592644000117,66.166245835],[13.760264519000144,66.16596100500006],[13.771006707000083,66.163234768],[13.789805535000113,66.15525950700014],[13.82162519600007,66.14704010600003],[13.830414259000122,66.14874909100014],[13.834808790000094,66.15851471600008],[13.831797722000118,66.16852448100015],[13.82243899800008,66.17182038000003],[13.776621941000087,66.176174221],[13.705088738000114,66.1727562520001],[13.609548373000052,66.18577708500008],[13.641123894000117,66.22060781500004],[13.696462436000045,66.23871491100012],[13.757823113000114,66.24241771000008],[13.808116082000083,66.23419830900015],[13.799164259000065,66.2237816430001],[13.772959832000112,66.2102725280001],[13.760264519000144,66.19944896000011],[13.788422071000127,66.2008324240001],[13.836680535000085,66.22207265800007],[13.972911004000137,66.23794179900001],[13.986175977000073,66.24103424700009],[13.996348504000109,66.24974192900008],[14.002289259000065,66.26105377800015],[14.009776238000113,66.27094147300006],[14.035980665000068,66.27749258000016],[14.051605665000125,66.2872582050001],[14.086761915000096,66.29291413],[14.112803582000083,66.3023135440001],[14.134613477000128,66.31639232000005],[14.14389082100007,66.33380768400012],[14.130544467000078,66.34308502800016],[14.100108269000115,66.33685944200003],[14.048350457000081,66.31679922100015],[13.964040561000102,66.30475495000006],[13.93848717500012,66.29564036700005],[13.91537519600007,66.27195872600014],[13.907481316000087,66.26837799700014],[13.803477410000141,66.277777411],[13.78028405000012,66.28261953300007],[13.764333530000016,66.29344310100005],[13.753754102000071,66.295843817],[13.73926842500012,66.28945547100008],[13.740407748000052,66.27753327000015],[13.72364342500012,66.26410553600006],[13.69906660200013,66.253078518],[13.619802280000073,66.24091217700011],[13.591644727000073,66.24384186400015],[13.575450066000114,66.262152411],[13.623220248000079,66.27521393400018],[13.613047722000118,66.28095123900006],[13.600922071000127,66.2858747420001],[13.588145379000082,66.28904857],[13.575450066000114,66.28945547100008],[13.563487175000091,66.28611888200005],[13.503184441000144,66.25901927300013],[13.467539910000113,66.25543854400014],[13.41374759200005,66.24315013199998],[13.327321811000047,66.245794989],[13.28736412900011,66.24103424700009],[13.204763217000107,66.20465729400011],[13.069346550000148,66.174058335],[13.04037519600007,66.17963288],[13.031586134000094,66.198228257],[13.055186394000117,66.21088288000006],[13.089366082000112,66.220689195],[13.112478061000076,66.23078034100013],[13.134450717000078,66.247056382],[13.163096550000148,66.25910065300012],[13.321299675000148,66.30027903899999],[13.49431399800011,66.29999420800014],[13.534434441000116,66.30931224199999],[13.50562584700009,66.31858958500014],[13.403493686000045,66.31679922100015],[13.411306186000102,66.32733795800011],[13.42335045700014,66.33246491100012],[13.451914910000113,66.33722565300003],[13.432871941000116,66.34324778900005],[13.41553795700014,66.34259674700009],[13.379893425000091,66.33722565300003],[13.364756707000083,66.33832428600009],[13.357920769000087,66.341742255],[13.352386915000066,66.34788646000005],[13.342051629000137,66.35712311400012],[13.323496941000144,66.369370835],[13.310883009000065,66.3744977890001],[13.306976759000063,66.36912669500005],[13.314707879000082,66.35028717700003],[13.330821160000141,66.33710358300006],[13.337657097000145,66.327826239],[13.331797722000118,66.32363515800007],[13.317393425000148,66.32184479400009],[13.226573113000086,66.29734935100004],[13.212087436000017,66.29564036700005],[13.155284050000148,66.303697007],[13.136566602000102,66.30312734600004],[13.14682050900012,66.30902741100006],[13.157725457000112,66.31826406500004],[13.161631707000112,66.32672760600015],[13.15023847700013,66.33038971600011],[13.133799675000148,66.32880280200008],[13.095550977000102,66.31679922100015],[13.064138217000078,66.31435781500012],[13.037282748000079,66.31997304900003],[13.015635613000086,66.33413320500013],[13.000010613000114,66.35712311400012],[13.140961134000094,66.38613515800002],[13.170664910000113,66.41233958500005],[13.16570071700005,66.41640859600001],[13.161306186000076,66.42206452],[13.158213738000086,66.4289411480001],[13.156993035000085,66.43659088700004],[13.149668816000059,66.44354889500012],[13.102549675000063,66.45392487200003],[13.11622155000012,66.459214585],[13.131683790000125,66.4609235700001],[13.16382897200009,66.46015045800009],[13.16382897200009,66.466986395],[13.148773634000065,66.47040436399999],[13.11703535200013,66.471380927],[13.102549675000063,66.47443268400018],[13.09278405000012,66.48167552300002],[13.087901238000143,66.49046458500005],[13.08179772200009,66.49799225500011],[13.06820722700013,66.501125393],[13.040537957000112,66.50202057500009],[13.01710045700014,66.50527578300012],[12.995371941000087,66.51178620000003],[12.97201582100007,66.52220286700009],[13.102549675000063,66.54271067900008],[13.113454623000052,66.540472723],[13.133311394000145,66.53066640800016],[13.185883009000094,66.52155182500017],[13.208994988000141,66.514105536],[13.219086134000094,66.50482819200015],[13.222422722000118,66.49079010600009],[13.228526238000114,66.47846100500014],[13.231455925000148,66.46808502800006],[13.225352410000141,66.46015045800009],[13.225352410000141,66.45392487200003],[13.362071160000113,66.45551178600006],[13.397227410000085,66.466986395],[13.287852410000085,66.46010976800008],[13.266856316000144,66.466986395],[13.270518425000091,66.483832098],[13.284434441000085,66.49848053600003],[13.2877710300001,66.50950755400005],[13.259532097000147,66.51536692900002],[13.259532097000147,66.52220286700009],[13.284922722000147,66.52411530200008],[13.330332879000137,66.53900788000011],[13.355967644000115,66.54271067900008],[13.441416863000143,66.53994375200001],[13.465830925000091,66.54645416900011],[13.489431186000047,66.55011627800015],[13.517588738000114,66.54462311400012],[13.568614129000109,66.52846914300007],[13.619151238000114,66.51902903900005],[13.671071811000102,66.51536692900002],[13.648936394000115,66.53058502800017],[13.623383009000122,66.53876373899999],[13.479991082000112,66.55499909100001],[13.458750847000147,66.56378815300008],[13.507090691000142,66.58429596600014],[13.601328972000147,66.60724518400004],[13.72624759200005,66.60480377800009],[13.687510613000086,66.61579010600015],[13.502777540000068,66.6065127620001],[13.47242272200009,66.59735748900012],[13.42335045700014,66.56281159100003],[13.396332227000073,66.557318427],[13.335215691000116,66.5563418640001],[13.270355665000123,66.54791901200015],[13.239024285000085,66.54840729400013],[13.204844597000088,66.5563418640001],[13.209727410000085,66.573675848],[13.218109571000127,66.58307526200004],[13.245860222000118,66.59796784100008],[13.23926842500012,66.60089752800012],[13.232758009000122,66.60480377800009],[13.250010613000143,66.6138369810001],[13.288259311000104,66.61640045800011],[13.33220462300011,66.62628815300003],[13.381602410000085,66.619086005],[13.403493686000045,66.62523021000008],[13.37330162900011,66.63328685100011],[13.250743035000085,66.63312409100013],[13.170664910000113,66.65192291900009],[13.191172722000145,66.66657135600012],[13.21387780000012,66.66254303600014],[13.237315300000091,66.65399811400012],[13.26010175900012,66.6553408870001],[13.283946160000085,66.66071198100015],[13.306976759000063,66.65692780200014],[13.328868035000085,66.6498477230001],[13.348887566000142,66.64573802300013],[13.375336134000037,66.6480980490001],[13.425140821000126,66.65916575700011],[13.451914910000113,66.65875885600012],[13.521332227000073,66.6406110700001],[13.547373894000115,66.63825104400014],[13.522634311000047,66.66107819200009],[13.480153842000078,66.67527903900002],[13.266856316000144,66.701646226],[13.225352410000141,66.71401601800012],[13.256032748000052,66.724066473],[13.493174675000061,66.71401601800012],[13.500254754000139,66.71084219000006],[13.516612175000148,66.69672272300012],[13.52759850400011,66.69354889500006],[13.69312584700009,66.6913109400001],[13.718760613000057,66.700384833],[13.69825280000012,66.70722077],[13.69825280000012,66.71401601800012],[13.79900149800011,66.71149323100012],[13.851247592000107,66.71710846600003],[13.890147332000112,66.73509349200005],[13.711924675000148,66.73509349200005],[13.676931186000047,66.73078034100014],[13.61068769600007,66.71417877800009],[13.575450066000114,66.71401601800012],[13.54712975400008,66.72431061400015],[13.543223504000082,66.739203192],[13.55876712300008,66.75348541900009],[13.589121941000059,66.76178620000016],[13.718028191000144,66.75055573100018],[13.752940300000148,66.76178620000016],[13.72103925900012,66.76951732],[13.563649936000076,66.7771670590001],[13.551280144000117,66.77236562700013],[13.543304884000065,66.77147044500013],[13.507090691000142,66.78229401200004],[13.541840040000094,66.803208726],[13.612152540000125,66.80980052300008],[13.687266472000145,66.80703359600001],[13.768321160000085,66.79262929900013],[13.993011915000094,66.78974030200001],[13.948008660000113,66.80019765800006],[13.801442905000044,66.80955638200011],[13.785411004000139,66.81366608300006],[13.758474155000073,66.83234284100014],[13.73926842500012,66.83755117400013],[13.702891472000147,66.83222077000006],[13.688324415000094,66.83502838700002],[13.677907748000107,66.85114166900009],[13.684255405000043,66.85211823100015],[13.693369988000141,66.85639069200009],[13.69825280000012,66.85797760600012],[13.68523196700002,66.86127350500006],[13.657074415000125,66.863714911],[13.643890821000099,66.86798737200009],[13.63770592500012,66.87470123900015],[13.636241082000055,66.89166901200012],[13.630625847000145,66.89960358300009],[13.60572350400011,66.9068871110001],[13.5475366550001,66.89960358300009],[13.520762566000085,66.90574778900007],[13.543630405000101,66.92186107000013],[13.564952019000145,66.93235911700009],[13.58969160200013,66.93817780200006],[13.74447675900012,66.93695709800012],[13.78028405000012,66.94611237200003],[13.772959832000112,66.95087311400012],[13.768321160000085,66.9561221370001],[13.760264519000144,66.96784088700008],[13.839040561000047,66.96409739800004],[13.86280358200014,66.96784088700008],[13.869151238000143,66.97150299700006],[13.88217207100004,66.98346588700015],[13.890147332000112,66.98834870000006],[13.901621941000142,66.99213288000006],[13.913259311000047,66.99396393400004],[13.93848717500012,66.994574286],[13.972666863000114,66.994574286],[13.957774285000141,66.97402578300014],[13.936289910000113,66.96600983300011],[13.912445509000037,66.96198151200004],[13.890147332000112,66.953558661],[13.917491082000083,66.928900458],[13.93458092500012,66.92218659100014],[13.958994988000086,66.92694733300004],[13.951914910000113,66.92792389500012],[13.931651238000086,66.93309153900013],[13.979991082000112,66.953558661],[13.982269727000073,66.95673248900006],[13.983164910000085,66.96161530200011],[13.985687696000099,66.96596914300012],[13.993011915000094,66.96784088700008],[14.020518425000118,66.96637604400001],[14.027842644000145,66.96784088700008],[14.04379316500004,66.98094310100005],[14.04273522200009,66.995062567],[14.030935092000107,67.009222723],[14.014333530000073,67.02252838700004],[14.023203972000118,67.0300153670001],[14.032888217000078,67.04865143400009],[14.040293816000144,67.05597565300009],[14.059906446000127,67.06085846600013],[14.071543816000114,67.053412177],[14.078868035000113,67.04242584800012],[14.085622592000078,67.03681061400012],[14.085297071000127,67.030422268],[14.099294467000107,67.00307851800012],[14.109385613000057,66.990668036],[14.151540561000104,66.97162506700003],[14.164561394000089,66.97907135600009],[14.177093946000099,66.97955963700016],[14.190684441000144,66.97654857],[14.200856967000107,66.97760651200004],[14.210703972000118,66.98016998900012],[14.22282962300011,66.98151276200004],[14.22673587300011,66.98358795800014],[14.226247592000107,66.99258047100007],[14.229665561000047,66.994574286],[14.251719597000116,67.00385163000006],[14.269053582000112,67.02399323100009],[14.270762566000116,67.04315827000006],[14.24634850400008,67.04979075700011],[14.272146030000101,67.06000397300006],[14.418223504000084,67.06342194200006],[14.437347852000071,67.060248114],[14.47413170700014,67.04612864800008],[14.493418816000087,67.0429548200001],[14.529551629000137,67.04848867400013],[14.544281446000127,67.04535553600006],[14.555430535000141,67.02928294500006],[14.552500847000118,67.01850006700006],[14.568207227000073,67.01813385600015],[14.587738477000073,67.02676015800016],[14.59587649800008,67.0429548200001],[14.581309441000144,67.05841705900004],[14.551768425000091,67.06411367400001],[14.496836785000111,67.06342194200006],[14.37671959700009,67.07770416900014],[14.290049675000148,67.07583242400001],[14.267425977000102,67.08392975500011],[14.287445509000063,67.08982982000005],[14.30372155000009,67.10089752800009],[14.319021030000044,67.11383698100009],[14.335785352000073,67.12490469000012],[14.321787957000112,67.13641998900009],[14.328135613000143,67.14704010600012],[14.345225457000083,67.15521881700012],[14.363047722000145,67.1596540390001],[14.451914910000083,67.16583893400015],[14.442149285000141,67.1592471370001],[14.427989129000139,67.14508698100015],[14.415700717000078,67.12938060100011],[14.411387566000087,67.11871979400017],[14.42286217500012,67.10944245000003],[14.44076582100007,67.115179755],[14.459320509000094,67.12775299700009],[14.472911004000139,67.13922760600003],[14.4674585300001,67.14252350500006],[14.464610222000147,67.14565664300012],[14.46257571700005,67.14899323100015],[14.45923912900011,67.152818101],[14.676931186000019,67.15957265800002],[14.709239129000137,67.15082428600014],[14.733653191000085,67.12490469000012],[14.743337436000047,67.11831289300007],[14.750336134000122,67.12392812700007],[14.750743035000141,67.13515859600007],[14.747243686000049,67.1454125020001],[14.736664259000094,67.15582916900009],[14.723155144000117,67.16120026200004],[14.65137780000012,67.17670319200006],[14.513926629000137,67.18012116100006],[14.536468946000126,67.19009023600016],[14.569997592000078,67.20001862200014],[14.603770379000137,67.20425039300007],[14.627207879000139,67.19721100500003],[14.651621941000087,67.18524811400009],[14.678721550000118,67.18781159100008],[14.705821160000141,67.1959496110001],[14.742523634000037,67.20278554900001],[14.767344597000088,67.21214427300004],[14.781423373000052,67.21430084800015],[14.88298587300005,67.20620351800012],[14.979340040000123,67.21430084800015],[14.979340040000123,67.20685455900018],[14.93767337300008,67.204535223],[14.924815300000146,67.20062897300004],[14.932627800000148,67.18048737200016],[14.919688347000145,67.17194245000015],[14.90072675900012,67.165757554],[14.890635613000056,67.152818101],[14.8990991550001,67.14158763199998],[14.941172722000061,67.12368398600002],[14.97291100400011,67.10382721600003],[14.993907097000145,67.09906647300012],[15.00798587300011,67.1021996110001],[15.003916863000143,67.11493561400015],[14.986338738000114,67.12824127800015],[14.949229363000116,67.14191315300009],[14.931651238000084,67.152818101],[14.944183790000068,67.15766022300006],[15.005381707000112,67.19741445500016],[15.019541863000141,67.20408763200011],[15.073985222000118,67.21336497600008],[15.094574415000066,67.21336497600008],[15.12989342500009,67.19578685100014],[15.150889519000145,67.19310130400005],[15.218597852000073,67.19228750200013],[15.239431186000047,67.18789297100007],[15.281748894000144,67.17328522300014],[15.300629102000073,67.16901276200002],[15.356781446000099,67.16583893400015],[15.383311394000145,67.15672435099998],[15.394704623000111,67.14203522300006],[15.39193769600007,67.12213776200018],[15.376719597000088,67.09760163000006],[15.404063347000147,67.08441803600003],[15.435557488000143,67.07575104400003],[15.46900475400011,67.07119375200007],[15.501475457000112,67.07025788],[15.49122155000009,67.08051178600012],[15.45484459700009,67.09007396],[15.438731316000116,67.09760163000006],[15.442393425000091,67.10805898600013],[15.438731316000116,67.11871979400017],[15.470469597000088,67.142767645],[15.480316602000102,67.152818101],[15.47291100400011,67.152818101],[15.455414259000065,67.17177969],[15.40072675900012,67.18789297100007],[15.376719597000088,67.20062897300004],[15.410492384000065,67.21312083500011],[15.455088738000143,67.21356842700011],[15.716319207000081,67.17328522300014],[15.740407748000107,67.17328522300014],[15.733164910000085,67.18756745000003],[15.72038821700005,67.19330475500011],[15.705577019000062,67.19745514500015],[15.692637566000144,67.20685455900018],[15.706309441000085,67.21430084800015],[15.606211785000054,67.202826239],[15.550466342000076,67.21954987200003],[15.407969597000147,67.2357445330001],[15.383555535000085,67.23468659100003],[15.356781446000099,67.2279727230001],[15.31169681100002,67.208889065],[15.28744550900012,67.20563385600015],[15.26124108200011,67.21430084800015],[15.283213738000114,67.220607815],[15.307627800000146,67.22190989799999],[15.329112175000091,67.22630442900008],[15.342458530000103,67.24160390800013],[15.282969597000063,67.24701569200009],[15.268077019000117,67.24469635600012],[15.255381707000138,67.24030182500003],[15.240977410000083,67.23712799700017],[15.21273847700013,67.23476797100001],[15.062510613000086,67.24774811400003],[15.077810092000048,67.26044342700008],[15.097911004000109,67.26365794500013],[15.11898847700013,67.26439036700008],[15.13770592500009,67.26951732],[15.14747155000012,67.27773672100007],[15.165049675000148,67.310492255],[15.137950066000114,67.31102122600008],[15.055186394000087,67.29621002800009],[15.027842644000119,67.29425690300015],[15.01351972700013,67.29165273600013],[15.007334832000138,67.286281643],[15.004730665000066,67.27871328300013],[14.998301629000139,67.27350495000015],[14.989512566000087,67.27049388200005],[14.979991082000083,67.26951732],[14.909353061000045,67.27472565300015],[14.774587436000017,67.26951732],[14.789235873000054,67.26365794500013],[14.820648634000065,67.261175848],[14.83545983200014,67.25527578300007],[14.811208530000043,67.24469635600012],[14.673838738000143,67.216701565],[14.61695397200009,67.21430084800015],[14.672862175000148,67.23371002800015],[14.694590691000144,67.24843984600015],[14.692067905000016,67.26951732],[14.69947350400011,67.27570221600014],[14.681813998000079,67.27826569200015],[14.662445509000065,67.27472565300015],[14.623789910000113,67.2621117210001],[14.57569420700014,67.25189850500006],[14.410899285000083,67.24774811400003],[14.390635613000084,67.244330145],[14.370290561000074,67.23798248900006],[14.349375847000118,67.23505280200006],[14.32829837300011,67.24160390800013],[14.391612175000148,67.25983307500012],[14.411387566000087,67.26951732],[14.406911655000101,67.27806224200002],[14.4178166020001,67.28449127800012],[14.451914910000083,67.29621002800009],[14.492198113000086,67.32290273600002],[14.60173587300011,67.37734609600004],[14.611582879000139,67.38788483300009],[14.605235222000116,67.3937848980001],[14.57593834700009,67.39240143400004],[14.57593834700009,67.39862702],[14.586680535000111,67.39862702],[14.597015821000127,67.40009186400006],[14.61695397200009,67.40607330900015],[14.623057488000086,67.4206403670001],[14.652517123000083,67.42633698100018],[14.742442254000052,67.42007070500013],[14.771983269000117,67.4232852230001],[14.799978061000045,67.42182038000011],[14.822438998000052,67.40607330900015],[14.814300977000132,67.4027774110001],[14.807871941000116,67.39801666900003],[14.795095248000079,67.38556549700003],[14.824717644000119,67.3783226580001],[14.854014519000144,67.38898346600003],[14.88298587300005,67.40477122600008],[14.911468946000127,67.41290924700009],[14.944672071000069,67.415961005],[14.982758009000065,67.42381419500008],[15.04900149800011,67.447007554],[14.939138217000048,67.44086334800012],[14.822438998000052,67.447007554],[14.827810092000105,67.45010000200007],[14.842784050000148,67.46133047100008],[14.822520379000137,67.466009833],[14.784190300000091,67.46246979400001],[14.767751498000107,67.46747467700006],[14.780772332000083,67.47500234600004],[14.768565300000118,67.48078034100008],[14.755218946000099,67.48525625200013],[14.741221550000148,67.48786041900014],[14.726817254000082,67.48867422100015],[14.740082227000102,67.5009626320001],[14.765798373000054,67.51434967700011],[14.794118686000102,67.52521393400009],[14.990407748000083,67.57062409100008],[15.058848504000139,67.57733795800014],[15.08350670700014,67.5736758480001],[15.115407748000052,67.56395091400005],[15.14389082100007,67.55060455900004],[15.158864780000101,67.53579336100013],[15.146169467000048,67.53237539300012],[15.133311394000117,67.53050364799999],[15.106944207000112,67.52960846600008],[15.097341342000048,67.531724351],[15.080414259000067,67.54116445500001],[15.051524285000141,67.54926178600012],[15.030039910000113,67.559759833],[15.008311394000115,67.56366608299999],[14.986827019000115,67.54950592700008],[15.006032748000052,67.54083893400018],[15.036387566000144,67.51854075700005],[15.055186394000087,67.51593659100014],[15.010427280000043,67.48700592700014],[14.885020379000082,67.48639557500007],[14.829274936000076,67.47500234600004],[14.853851759000095,67.47016022300012],[14.987152540000125,67.465969143],[15.016774936000074,67.46873607000008],[15.038096550000146,67.47801341400013],[15.055918816000116,67.48871491100014],[15.079356316000087,67.49628327],[15.103688998000052,67.50079987200014],[15.124034050000148,67.50226471600011],[15.141774936000047,67.50690338700004],[15.158946160000085,67.51577383000007],[15.175791863000088,67.52130768400009],[15.19288170700011,67.51593659100014],[15.1881616550001,67.50869375200004],[15.191416863000143,67.50165436400005],[15.200368686000074,67.49648672100015],[15.21273847700013,67.49481842700014],[15.21273847700013,67.48867422100015],[15.197927280000044,67.48403554900013],[15.182871941000142,67.48183828300013],[15.151377800000118,67.481146552],[15.151377800000118,67.47500234600004],[15.157074415000098,67.47370026200012],[15.172373894000145,67.46747467700006],[15.164398634000122,67.45502350500014],[15.153575066000116,67.44647858300011],[15.143321160000085,67.43671295800009],[15.13770592500009,67.42035553600006],[15.155609571000127,67.42438385600003],[15.189219597000145,67.44285716400007],[15.209646030000046,67.447007554],[15.217133009000092,67.44953034100003],[15.222666863000113,67.45571523600007],[15.225840691000089,67.46356842700004],[15.227061394000117,67.47125885600008],[15.231130405000075,67.47606028899999],[15.240977410000083,67.47919342700006],[15.371267123000052,67.48773834800006],[15.42904707100007,67.48297760600018],[15.47291100400011,67.46133047100008],[15.479340040000123,67.45278554900007],[15.492198113000141,67.43146393400009],[15.541758660000085,67.37938060100005],[15.543955925000061,67.37352122600011],[15.545583530000103,67.3584658870001],[15.54859459700009,67.35146719],[15.551524285000113,67.350287177],[15.575938347000063,67.33100006700015],[15.60914147200009,67.31509023600005],[15.644786004000139,67.30304596600003],[15.644786004000139,67.29621002800009],[15.604828321000099,67.29092031500012],[15.603526238000086,67.28034088700014],[15.626149936000049,67.27260976800007],[15.65845787900008,67.27570221600014],[15.700043165000066,67.30304596600003],[15.692230665000068,67.3126488300001],[15.637950066000114,67.3241641300001],[15.621429884000037,67.33368561400012],[15.618662957000081,67.33954498900006],[15.620371941000087,67.34613678600014],[15.61744225400008,67.35765208500008],[15.599294467000078,67.37685781500012],[15.596446160000113,67.38251373900012],[15.585459832000083,67.39557526200008],[15.560313347000088,67.40961334800015],[15.514414910000111,67.42649974200005],[15.5299585300001,67.43886953300007],[15.566416863000084,67.45132070500001],[15.582774285000083,67.46133047100008],[15.55420983200011,67.46076080900012],[15.540782097000118,67.46246979400001],[15.528656446000097,67.46747467700006],[15.558441602000132,67.49335358300009],[15.59791100400008,67.50991445500013],[15.786306186000074,67.55060455900004],[15.89795983200014,67.55687083500008],[15.868174675000148,67.573228257],[15.668142123000054,67.55194733300011],[15.555918816000116,67.51593659100014],[15.498708530000044,67.5104841170001],[15.267344597000088,67.524359442],[15.239268425000091,67.52924225500006],[15.227061394000117,67.539496161],[15.2283634770001,67.5587832700001],[15.233409050000148,67.56671784100008],[15.26124108200011,67.57733795800014],[15.255707227000073,67.57868073100003],[15.240733269000145,67.58421458500005],[15.27564537900008,67.59357330900018],[15.307871941000116,67.59414297100014],[15.376719597000088,67.58421458500005],[15.410899285000056,67.58344147300012],[15.425629102000075,67.57916901200012],[15.436371290000066,67.55980052299999],[15.446625196000099,67.56171295800006],[15.458181186000019,67.56891510600009],[15.466075066000087,67.57733795800014],[15.418793165000125,67.60468170800002],[15.424327019000145,67.60586172100012],[15.438731316000116,67.61212799700009],[15.423838738000088,67.62384674700017],[15.406586134000065,67.63129303600006],[15.388194207000112,67.63239166900009],[15.370453321000126,67.62518952000006],[15.380381707000112,67.61517975500009],[15.384043816000089,67.61212799700009],[15.359141472000147,67.605210679],[15.330821160000083,67.611273505],[15.30176842500012,67.62099844000012],[15.27491295700014,67.62518952000006],[15.222911004000082,67.61188385600002],[15.194346550000091,67.60871002800017],[15.178558790000126,67.61835358300014],[15.196462436000102,67.64459870000017],[15.33692467500009,67.68720123900003],[15.30494225400008,67.68659088700015],[15.289398634000092,67.68842194200012],[15.27491295700014,67.69403717700011],[15.291514519000089,67.71491120000009],[15.301117384000065,67.72020091399999],[15.31576582100007,67.72199127800015],[15.33033287900011,67.72036367400013],[15.368662957000138,67.71027252800017],[15.412282748000052,67.68891022300004],[15.541758660000085,67.67357005400007],[15.521739129000109,67.68964264500015],[15.514414910000111,67.69403717700011],[15.65845787900008,67.68040599199999],[15.58725019600007,67.70433177300005],[15.548106316000114,67.71124909100014],[15.486582879000139,67.698919989],[15.457286004000137,67.70783112200003],[15.404551629000139,67.73505280200014],[15.404551629000139,67.74188873900006],[15.596934441000116,67.74884674700014],[15.65845787900008,67.73505280200014],[15.799652540000096,67.67902252800009],[15.822032097000116,67.67780182500009],[15.836599155000044,67.69403717700011],[15.821055535000141,67.69358958500014],[15.80681399800005,67.69574616100012],[15.793793165000066,67.70042552300005],[15.781911655000101,67.70770905200006],[15.785329623000107,67.71430084800011],[15.785492384000063,67.721869208],[15.788747592000107,67.7282168640001],[15.669200066000087,67.76178620000015],[15.63054446700005,67.76235586100002],[15.640635613000086,67.77533600500011],[15.657481316000085,67.78245677300008],[15.676280144000145,67.78807200700008],[15.692637566000144,67.79645416900001],[15.675140821000099,67.79669830900015],[15.659841342000048,67.79376862200014],[15.611094597000118,67.776312567],[15.594981316000144,67.77387116100006],[15.411387566000142,67.79645416900001],[15.421560092000107,67.81313711100007],[15.446136915000096,67.83218008000016],[15.446055535000111,67.84491608300011],[15.432790561000104,67.86074453300013],[15.420909050000146,67.85683828300016],[15.41114342500012,67.84186432500003],[15.404551629000139,67.82440827000006],[15.383555535000085,67.85529205900012],[15.369476759000065,67.86517975500011],[15.356781446000099,67.85114166900017],[15.360118035000113,67.84345123900005],[15.378916863000057,67.81492747600005],[15.384043816000089,67.803900458],[15.308929884000063,67.77602773600016],[15.262217644000087,67.75226471600014],[15.223806186000074,67.74335358300011],[15.19369550900012,67.71991608300014],[15.181976759000037,67.71454498900009],[15.162445509000065,67.71246979400014],[15.04070071700005,67.67755768400004],[14.952403191000087,67.66364166900014],[14.935313347000118,67.65619538],[14.91814212300011,67.65151601800007],[14.836110873000079,67.64252350500006],[14.808441602000102,67.64834219],[14.752696160000085,67.64801666900009],[14.726817254000082,67.65936920800006],[14.876963738000114,67.7002627620001],[14.876963738000114,67.70770905200006],[14.780772332000083,67.71454498900009],[14.792979363000057,67.72882721600008],[14.814138217000078,67.72890859600005],[14.837412957000081,67.72443268400009],[14.856455925000091,67.72508372600005],[14.875498894000058,67.73114655200014],[15.117198113000143,67.74188873900006],[15.087575717000078,67.74848053600012],[15.049978061000104,67.74494049700014],[15.015310092000107,67.74664948100015],[14.99366295700011,67.76923248900012],[15.01514733200014,67.774603583],[15.034678582000138,67.78286367400007],[14.876963738000114,67.77326080900009],[14.829274936000076,67.76235586100002],[14.839610222000088,67.76581452000012],[14.843028191000089,67.76923248900012],[14.839610222000088,67.77260976800015],[14.829274936000076,67.77602773600016],[14.831228061000104,67.79181549700009],[14.819346550000148,67.79743073100009],[14.802256707000112,67.7940127620001],[14.788340691000144,67.78286367400007],[14.778575066000085,67.78489817900002],[14.769541863000086,67.789740302],[14.76124108200011,67.79645416900001],[14.75407962300008,67.803900458],[14.772959832000112,67.8159854190001],[14.789398634000092,67.82282135600003],[14.806976759000124,67.82534414300012],[14.87322024800011,67.822943427],[14.959320509000065,67.83722565300009],[15.063243035000111,67.83877187700013],[15.10287519600004,67.85114166900017],[15.075856967000105,67.86151764500006],[14.849619988000143,67.84491608300011],[14.849619988000143,67.85114166900017],[14.859222852000132,67.85057200700003],[14.867442254000137,67.85187409100011],[14.883799675000146,67.85854726800007],[14.89942467500012,67.87299225500011],[14.945323113000114,67.88678620000003],[14.998708530000073,67.89545319200012],[15.036306186000047,67.89447663000014],[15.08497155000009,67.88727448100012],[15.1920679050001,67.88605377800009],[15.233246290000066,67.872219143],[15.216319207000081,67.86823151200012],[15.201182488000084,67.85980866100005],[15.193369988000114,67.84735748900015],[15.199066602000103,67.83124420800007],[15.302093946000126,67.890366929],[15.33692467500009,67.89956289300007],[15.33806399800011,67.89183177300005],[15.359873894000089,67.89166901200008],[15.483164910000141,67.91766998900009],[15.53549238400012,67.91986725500006],[15.543467644000089,67.91697825700014],[15.517588738000084,67.88930898600013],[15.51002037900011,67.88336823100012],[15.504649285000085,67.88011302300008],[15.503184441000114,67.87543366100006],[15.507578972000088,67.86542389500006],[15.514903191000087,67.85635000200007],[15.523448113000114,67.85179271000011],[15.532562696000097,67.85236237200009],[15.541758660000085,67.85854726800007],[15.524261915000123,67.86676666900014],[15.524424675000091,67.87799713700015],[15.534922722000145,67.88979726800012],[15.54859459700009,67.89956289300007],[15.565928582000083,67.90615469000012],[15.583994988000113,67.9101423200001],[15.597992384000065,67.916693427],[15.603770379000139,67.9305687520001],[15.752289259000065,67.952093817],[15.788747592000107,67.95136139500009],[15.820811394000087,67.93764883000016],[15.832204623000079,67.92739492400013],[15.836599155000044,67.91010163000011],[15.840993686000047,67.90106842700011],[15.850596550000118,67.89834219000015],[15.860118035000113,67.89964427300005],[15.864512566000085,67.90289948100009],[15.87077884200005,67.92682526200015],[15.885508660000113,67.93886953300007],[15.932139519000144,67.95783112200009],[15.944997592000078,67.96556224199999],[15.952810092000048,67.97394440300015],[15.966319207000112,67.99510325700005],[15.953298373000052,67.99510325700005],[15.968760613000141,68.00861237200003],[16.000661655000073,68.01227448100016],[16.0631616550001,68.00942617400013],[16.0631616550001,68.01618073100018],[15.90088951900006,68.02358633000007],[15.850271030000073,68.03668854400003],[15.850271030000073,68.04291413],[15.888031446000126,68.0579287780001],[15.898285352000073,68.06683991100006],[15.877452019000089,68.07086823100003],[15.86500084700009,68.06781647300012],[15.824717644000087,68.05267975500011],[15.81617272200009,68.04661692900014],[15.78923587300011,68.03432851800007],[15.602386915000068,68.03827545800004],[15.593028191000114,68.04311758000013],[15.587412957000112,68.05145905200011],[15.575938347000063,68.06342194200015],[15.55876712300005,68.07355377800009],[15.545420769000119,68.07469310100014],[15.533539259000092,68.07021719000006],[15.520681186000074,68.06342194200015],[15.384043816000089,68.02301666900007],[15.392832879000137,68.01129791900011],[15.407074415000066,68.00958893400009],[15.42351321700005,68.01117584800012],[15.438731316000116,68.00942617400013],[15.398203972000088,67.99494049700009],[15.356781446000099,67.99591705900015],[15.317067905000073,68.01048411700002],[15.281748894000144,68.03668854400003],[15.29428144600007,68.04718659100011],[15.309580925000118,68.05133698100003],[15.326182488000086,68.05337148600007],[15.342458530000103,68.05719635600009],[15.354502800000118,68.079982815],[15.403575066000146,68.10455963700004],[15.463389519000115,68.12421295800009],[15.507578972000088,68.132269598],[15.501963738000086,68.11798737200003],[15.50407962300011,68.10516998900009],[15.512950066000144,68.095648505],[15.528656446000097,68.09129466400002],[15.533539259000092,68.09430573100009],[15.534922722000145,68.108547268],[15.538340691000087,68.11180247600005],[15.583018425000118,68.11180247600005],[15.593109571000099,68.11554596600008],[15.62989342500009,68.13458893400018],[15.637950066000114,68.14280833500008],[15.636241082000112,68.1655134140001],[15.643728061000076,68.16893138200011],[15.665782097000088,68.16705963700015],[15.662771030000071,68.163072007],[15.661143425000148,68.15965403899999],[15.660166863000086,68.15631745000015],[15.65845787900008,68.15277741100006],[15.677419467000078,68.14891185100005],[15.71648196700005,68.14557526200004],[15.734141472000145,68.13971588700008],[15.718109571000069,68.131537177],[15.700043165000066,68.12604401200015],[15.713552280000043,68.12128327000006],[15.728363477000102,68.11310455900006],[15.737478061000077,68.10276927300005],[15.734141472000145,68.09129466400002],[15.710134311000104,68.08462148600013],[15.644297722000145,68.09662506700006],[15.61744225400008,68.09129466400002],[15.626963738000141,68.08462148600013],[15.628591342000078,68.07640208500014],[15.624685092000078,68.06712474199999],[15.61744225400008,68.05719635600009],[15.628428582000112,68.05304596600013],[15.640310092000076,68.05060455900012],[15.652842644000089,68.04970937700001],[15.665782097000088,68.05036041900017],[15.657399936000104,68.06671784100008],[15.66944420700014,68.07233307500009],[15.734629754000139,68.07233307500009],[15.761485222000116,68.07762278900007],[15.764170769000117,68.08087799700012],[15.763845248000079,68.08539459800005],[15.766449415000094,68.089544989],[15.778493686000104,68.09129466400002],[15.824229363000114,68.09227122600008],[15.844493035000113,68.09625885600006],[15.864512566000085,68.10496653900013],[15.891774936000076,68.125433661],[15.906748894000119,68.13247304900007],[15.925303582000112,68.132269598],[15.889414910000113,68.15420156500012],[15.872325066000087,68.16966380400005],[15.87077884200005,68.18691640800007],[15.888682488000086,68.19245026200018],[15.916514519000145,68.18699778900005],[15.942067905000044,68.1859398460001],[15.953298373000052,68.20457591399999],[15.95093834700009,68.21332428600006],[15.94703209700009,68.22235748900006],[15.945078972000147,68.23114655200011],[15.949554884000094,68.2389997420001],[15.964040561000049,68.247219143],[15.979665561000047,68.25006745000015],[16.014659050000148,68.24957916900014],[16.037852410000085,68.24298737200009],[16.045420769000117,68.22801341400005],[16.04981530000009,68.21173737200003],[16.0631616550001,68.20115794500006],[16.05616295700014,68.19253164300007],[16.047699415000096,68.18577708500011],[16.038259311000076,68.18170807500016],[16.02784264400009,68.1807315120001],[16.04249108200011,68.16229889500005],[16.062022332000083,68.16396719000006],[16.08179772200009,68.17206452],[16.09717858200014,68.17328522300012],[16.104014519000145,68.16022370000006],[16.099945509000094,68.14191315300017],[16.090342644000117,68.12567780200014],[16.069672071000095,68.112494208],[16.074554884000094,68.098578192],[16.089854363000143,68.07420482000005],[16.083669467000078,68.05735911700003],[16.06934655000009,68.04828522300015],[16.053396030000073,68.04108307500012],[16.04200280000012,68.02985260600012],[16.15796959700009,67.999701239],[16.192881707000083,67.9815127620001],[16.210622592000078,67.95880768400015],[16.21387780000012,67.93463776200007],[16.213226759000094,67.91160716399999],[16.2200626960001,67.89272695500013],[16.236827019000117,67.88361237200013],[16.281993035000085,67.87718333500005],[16.299327019000145,67.8688011740001],[16.31023196700005,67.86127350500011],[16.43734785200013,67.80756256700006],[16.484711134000065,67.7977969420001],[16.51498457100007,67.803900458],[16.48926842500009,67.80878327000006],[16.4602970710001,67.81769440300012],[16.44353274800008,67.8315290390001],[16.453461134000094,67.85114166900017],[16.311045769000142,67.87396881699999],[16.26856530000009,67.88930898600013],[16.254567905000016,67.900336005],[16.2576603520001,67.9089216170001],[16.267914259000122,67.917181708],[16.275401238000086,67.92682526200015],[16.275726759000122,67.94082265800002],[16.271250847000143,67.96491120000006],[16.275401238000086,67.97528717700014],[16.26050866000014,67.98688385600015],[16.243337436000104,67.99433014500012],[16.207041863000114,68.002590236],[16.244802280000073,68.00942617400013],[16.274261915000068,68.00568268400009],[16.301117384000065,67.993597723],[16.405935092000078,67.91950104400014],[16.412608269000145,67.90631745000009],[16.45264733200008,67.89899323100008],[16.466563347000147,67.89956289300007],[16.462575717000078,67.90753815300003],[16.4581811860001,67.91429271000005],[16.446055535000113,67.92682526200015],[16.451182488000114,67.92983633000016],[16.46119225400011,67.93773021000014],[16.466563347000147,67.9404971370001],[16.451996290000125,67.94647858300002],[16.405772332000108,67.954779364],[16.39616946700005,67.95892975500011],[16.371592644000145,67.97528717700014],[16.334808790000068,67.99445221600011],[16.33350670700014,68.00242747600005],[16.357432488000114,68.00942617400013],[16.38038170700011,68.00893789300015],[16.397227410000113,68.00088125200001],[16.42628014400009,67.97528717700014],[16.451508009000037,67.96279531500011],[16.481781446000127,67.95718008000013],[16.51335696700005,67.95697663000009],[16.542246941000144,67.96100495000013],[16.52393639400009,67.96743398600016],[16.4811304050001,67.96954987200017],[16.46338951900009,67.97833893400004],[16.46338951900009,67.98769765800007],[16.474619988000086,67.99803294499999],[16.500743035000138,68.01618073100018],[16.36475670700011,68.02985260600012],[16.373708530000044,68.046332098],[16.38917076900006,68.05927155200003],[16.40772545700008,68.06781647300012],[16.42628014400009,68.07086823100003],[16.442637566000087,68.07611725500003],[16.45191491000014,68.08661530200007],[16.46363366000014,68.09430573100009],[16.487071160000113,68.09129466400002],[16.550140821000127,68.06622955900009],[16.662771030000044,68.05068594],[16.686289910000113,68.05719635600009],[16.68067467500012,68.05809153899999],[16.665212436000076,68.06342194200015],[16.676931186000076,68.06842682500007],[16.688975457000083,68.07103099199999],[16.576996290000096,68.08510976800012],[16.55494225400011,68.09271881700005],[16.52125084700009,68.11196523600002],[16.500743035000138,68.11859772300006],[16.44507897200012,68.11554596600008],[16.34644616000014,68.08218008000001],[16.289073113000143,68.09129466400002],[16.293793165000125,68.09638092700011],[16.302744988000086,68.11180247600005],[16.269541863000143,68.1166852890001],[16.25367272200012,68.12164948100015],[16.24122155000012,68.132269598],[16.293467644000117,68.12563711100013],[16.319997592000078,68.12579987200012],[16.360118035000085,68.14411041900017],[16.40211022200009,68.13703034100011],[16.412608269000145,68.14594147300015],[16.405528191000087,68.14874909100008],[16.398936394000117,68.15277741100006],[16.41627037900011,68.15875885600018],[16.434825066000116,68.157416083],[16.454112175000148,68.15363190300015],[16.473399285000085,68.15277741100006],[16.464366082000083,68.16571686400006],[16.44800866000014,68.17348867400007],[16.412608269000145,68.1807315120001],[16.412608269000145,68.18691640800007],[16.545176629000082,68.16502513200014],[16.590098504000082,68.16705963700015],[16.572601759000122,68.17365143400004],[16.53296959700009,68.178168036],[16.47632897200009,68.19912344000012],[16.466807488000114,68.20115794500006],[16.459971550000088,68.20547109600007],[16.460459832000083,68.22418854400006],[16.453135613000057,68.22846100500006],[16.441254102000098,68.225287177],[16.41781660200013,68.21116771000005],[16.405772332000108,68.207993882],[16.17204837300011,68.20368073100009],[16.162119988000114,68.21112702000006],[16.18336022200009,68.22113678600014],[16.213715040000068,68.22626373900006],[16.34734134200005,68.22846100500006],[16.3561304050001,68.23183828300007],[16.355642123000024,68.2389997420001],[16.34913170700014,68.24628327000012],[16.340179884000094,68.24957916900014],[16.19092858200014,68.25844961100002],[16.1198022800001,68.27383047100015],[16.103363477000098,68.283148505],[16.12134850400014,68.28998444200003],[16.149668816000087,68.31305573100018],[16.172373894000145,68.31785716400007],[16.19239342500012,68.31586334800012],[16.227305535000113,68.30695221600008],[16.247569207000137,68.30418528900013],[16.26050866000014,68.30491771000005],[16.271006707000108,68.30683014500003],[16.281748894000117,68.30744049700017],[16.295909050000148,68.30418528900013],[16.302907748000052,68.29962799700009],[16.310883009000094,68.28733958500011],[16.31690514400009,68.283148505],[16.339203321000124,68.27985260600013],[16.388438347000147,68.28412506700006],[16.398936394000117,68.27692291900003],[16.50831139400009,68.25543854400011],[16.559825066000087,68.23281484600012],[16.56275475400011,68.19432200700005],[16.739512566000087,68.13890208500008],[16.77173912900014,68.13263580900004],[16.80298912900011,68.132269598],[16.749278191000116,68.15802643400015],[16.741547071000127,68.17015208500005],[16.731293165000096,68.17670319200012],[16.643728061000076,68.20172760600002],[16.612152540000068,68.21906159100003],[16.592621290000096,68.23948802300002],[16.603770379000107,68.2558047550001],[16.56739342500012,68.27631256700009],[16.522797071000127,68.28888580900013],[16.41187584700012,68.29877350500009],[16.357758009000122,68.31183502800015],[16.340179884000094,68.32099030200014],[16.317718946000095,68.32941315300009],[16.264333530000073,68.32428620000017],[16.24122155000012,68.3315290390001],[16.281586134000065,68.34454987200009],[16.265879754000107,68.34699127800002],[16.235199415000096,68.34511953300016],[16.2200626960001,68.35138580900009],[16.263926629000135,68.36220937700001],[16.3561304050001,68.37091705900018],[16.422862175000063,68.38934967700011],[16.694590691000087,68.405462958],[16.722015821000124,68.40143463700012],[16.80298912900011,68.37929922100012],[16.84896894600007,68.37848541900001],[16.869883660000113,68.3725446640001],[16.87867272200009,68.35512929900013],[16.87126712300011,68.35028717700006],[16.835948113000086,68.3324242210001],[16.82406660200013,68.32404205900004],[16.8475041020001,68.32343170800009],[16.9948022800001,68.34454987200009],[17.029551629000082,68.35822174700003],[17.04688561300014,68.36261627800009],[17.127289259000065,68.37287018400004],[17.145030144000142,68.36871979400009],[17.175466342000107,68.34170156500015],[17.18311608200014,68.33771393400015],[17.19312584700012,68.30784739799999],[17.19678795700008,68.30048248900009],[17.2238061860001,68.28424713700004],[17.330577019000117,68.2558047550001],[17.31234785200013,68.23663971600014],[17.31006920700014,68.23224518400018],[17.313161655000044,68.22308991099999],[17.31999759200005,68.21759674700014],[17.32691491000014,68.21332428600006],[17.330577019000117,68.207993882],[17.32715905000009,68.19147370000012],[17.319834832000083,68.17853424700012],[17.318614129000082,68.17007070500007],[17.333994988000114,68.16705963700015],[17.35499108200014,68.17186107000005],[17.364024285000056,68.18353913000004],[17.36304772200009,68.19806549700009],[17.354340040000096,68.21112702000006],[17.352061394000117,68.2255313170001],[17.374034050000148,68.23289622600011],[17.419932488000114,68.23590729400003],[17.38998457100007,68.26683177300008],[17.3522241550001,68.28473541900003],[17.268565300000144,68.31037018400008],[17.25147545700011,68.318589585],[17.236013217000075,68.328558661],[17.22299238400009,68.33958567900014],[17.21387780000012,68.35138580900009],[17.20606530000012,68.372992255],[17.21656334700009,68.37787506700006],[17.236175977000045,68.37986888200011],[17.255544467000078,68.39301178600006],[17.252777540000096,68.39663320500013],[17.24789472700013,68.40599192900008],[17.3279728520001,68.408392645],[17.495778842000078,68.36505768400002],[17.576914910000085,68.3588320980001],[17.545583530000044,68.37677643400004],[17.364593946000127,68.41347890800013],[17.39527428500014,68.42304108300011],[17.539886915000068,68.42837148600007],[17.709483269000117,68.41181061400012],[17.81666100400011,68.38475169499999],[17.87183678500014,68.39301178600006],[17.815684441000144,68.39728424700009],[17.612152540000125,68.45087311400009],[17.467621290000096,68.44757721600014],[17.544118686000076,68.51854075700011],[17.546560092000107,68.53009674700014],[17.52475019600007,68.529038804],[17.48096764400009,68.52033112200012],[17.43848717500012,68.50649648600002],[17.364593946000127,68.50287506700015],[17.327647332000083,68.49115631700006],[17.260101759000122,68.45522695500007],[17.04664147200012,68.43414948100015],[17.00163821700005,68.44757721600014],[17.023203972000147,68.45237864800013],[17.081309441000087,68.45823802299999],[17.09717858200011,68.46869538000006],[17.09197024800011,68.48078034100013],[17.071543816000144,68.48908112200003],[17.04688561300014,68.49384186400012],[17.028981967000107,68.49542877800015],[17.01905358200011,68.49762604400014],[16.999034050000116,68.50739166900009],[16.987966342000103,68.50967031500006],[16.977386915000125,68.50820547100001],[16.90064537900011,68.474066473],[16.8885197270001,68.46499258000001],[16.84864342500012,68.44871653899999],[16.739105665000096,68.45237864800013],[16.668793165000064,68.43838125200007],[16.53484134200005,68.43829987200009],[16.510996941000087,68.44131094],[16.500743035000138,68.45099518400015],[16.500254754000053,68.46531810100014],[16.498057488000086,68.47321198100012],[16.487071160000113,68.48859284100013],[16.476817254000082,68.4979515650001],[16.46753991000014,68.50336334800012],[16.46461022200012,68.509995835],[16.473399285000085,68.52334219],[16.484873894000117,68.528957424],[16.54200280000009,68.54376862200009],[16.580821160000113,68.53449127800002],[16.604340040000068,68.52887604400003],[16.621104363000082,68.53351471600014],[16.632090691000144,68.5462914080001],[16.628265821000127,68.55084870000006],[16.614756707000055,68.55280182500009],[16.596934441000087,68.55744049700003],[16.583343946000127,68.56317780199998],[16.573252800000148,68.5692406270001],[16.566416863000143,68.577826239],[16.56275475400011,68.59153880400011],[16.57178795700011,68.61212799700014],[16.59701582100007,68.62954336100013],[16.629242384000122,68.64166901200004],[16.696950717000046,68.65053945500007],[16.809825066000116,68.68097565300003],[16.925059441000144,68.6932640650001],[16.96070397200009,68.70453522300006],[16.99293053500014,68.70795319200009],[17.019867384000122,68.69383372600005],[17.045258009000122,68.67572663000014],[17.080902540000096,68.66400788000006],[17.082367384000065,68.65778229400009],[17.08179772200009,68.650864976],[17.08350670700008,68.64618561400007],[17.09001712300008,68.64337799700003],[17.129649285000113,68.63377513200005],[17.14869225400011,68.63231028899999],[17.16773522200009,68.63401927299999],[17.186534050000148,68.63873932500009],[17.17986087300008,68.64760976800015],[17.169932488000086,68.6518008480001],[17.145030144000142,68.653021552],[17.13257897200012,68.655218817],[17.11833743600002,68.66453685100014],[17.107432488000143,68.66669342700014],[17.100433790000068,68.66950104400009],[17.09717858200011,68.67617422100012],[17.097341342000078,68.68414948100009],[17.10059655000012,68.690619208],[17.108571811000076,68.69692617400013],[17.115082227000073,68.69904205900006],[17.205414259000065,68.711371161],[17.25017337300011,68.72394440300009],[17.270843946000127,68.72016022300006],[17.31006920700014,68.70766836100013],[17.33106530000009,68.70892975500006],[17.351084832000137,68.71246979400006],[17.370371941000084,68.71112702000015],[17.4036564460001,68.684556382],[17.42156009200005,68.67572663000014],[17.440684441000116,68.66998932500017],[17.460215691000116,68.66669342700014],[17.4900822270001,68.66571686400006],[17.576670769000145,68.67413971600011],[17.6556095710001,68.6572940120001],[17.679372592000078,68.66046784100017],[17.620616082000083,68.68134186400015],[17.49447675900006,68.69033437700007],[17.447276238000086,68.71507396000013],[17.42986087300002,68.72988515800002],[17.403330925000144,68.74445221600006],[17.373871290000096,68.75031159100008],[17.347666863000143,68.7389997420001],[17.323578321000127,68.731594143],[17.290293816000116,68.73655833500005],[17.234385613000057,68.75604889500006],[17.262950066000144,68.76821523600013],[17.333262566000087,68.78709544500008],[17.39551842500009,68.79645416900011],[17.427744988000114,68.80825429900007],[17.460948113000143,68.8153750670001],[17.564789259000094,68.78876373900009],[17.721690300000088,68.77846914300007],[17.782969597000115,68.74860260600018],[17.78288821700005,68.77814362200006],[17.73926842500012,68.79132721600008],[17.645274285000085,68.79706452000006],[17.467621290000096,68.83120351800005],[17.545664910000113,68.84715403899997],[17.60922285200013,68.87148672100011],[17.630137566000087,68.876898505],[17.66480553500014,68.88149648600002],[17.694183790000068,68.89175039300015],[17.707367384000094,68.893255927],[17.718272332000083,68.89081452000006],[17.741465691000116,68.8789737000001],[17.768728061000104,68.87181224200008],[17.796071811000076,68.86815013200011],[17.8235783210001,68.86831289300007],[17.851328972000086,68.87274811400013],[17.825938347000143,68.893744208],[17.707367384000094,68.91376373900006],[17.711680535000113,68.91876862200009],[17.720957879000053,68.93423086100002],[17.52149498800011,68.91673411700008],[17.457774285000085,68.89980703300007],[17.42611738400009,68.89948151200015],[17.436371290000125,68.91339752800003],[17.479746941000087,68.94782135600018],[17.495127800000116,68.95473867400007],[17.523936394000145,68.95502350500001],[17.53370201900009,68.96084219000006],[17.535980665000068,68.97516510600006],[17.530446811000047,68.98688385600003],[17.51921634200005,68.99046458500003],[17.488291863000114,68.98883698100018],[17.488291863000114,68.99567291900009],[17.55941816500004,69.03172435100005],[17.603200717000107,69.06061432500017],[17.656993035000056,69.0781110700001],[17.679372592000078,69.09186432500003],[17.667816602000073,69.09601471600008],[17.643809441000116,69.10077545800009],[17.63160241000014,69.10553620000016],[17.658864780000044,69.11688873900015],[17.8689884770001,69.12132396000011],[17.9588322270001,69.14850495000003],[18.024180535000085,69.15566640800007],[18.15235436300011,69.15395742400007],[18.08130944100006,69.16913483300006],[18.07105553500014,69.17755768400009],[18.07325280000012,69.19741445500001],[18.079600457000055,69.20701732],[18.09034264400009,69.21478913],[18.10523522200012,69.22907135600009],[18.07715905000012,69.23712799700003],[18.0162866550001,69.22919342700006],[17.98853600400014,69.23525625200016],[18.004079623000052,69.25014883000001],[18.003103061000076,69.28571198100018],[18.01579837300002,69.304144598],[18.04542076900009,69.31745026200004],[18.112559441000144,69.33348216400012],[18.138682488000086,69.35252513200011],[18.130544467000078,69.36933014500012],[18.14405358200014,69.382025458],[18.165375196000095,69.39374420800009],[18.180349155000044,69.40778229400003],[18.17530358200011,69.41217682500012],[18.17066491000008,69.41828034100008],[18.166026238000143,69.420843817],[18.1710718110001,69.43366120000003],[18.16480553500014,69.43886953300012],[18.15577233200014,69.44196198100012],[18.15235436300011,69.44814687700008],[18.155039910000113,69.45758698100009],[18.158457879000107,69.45962148600013],[18.16553795700008,69.46015045800003],[18.19353274800011,69.46942780200006],[18.24170983200014,69.47606028900013],[18.24952233200014,69.47968170799999],[18.255625847000115,69.48419830900004],[18.26335696700005,69.48810455900004],[18.275889519000145,69.48969147300006],[18.300954623000052,69.48676178600006],[18.32252037900014,69.47894928600006],[18.341481967000046,69.46767812700007],[18.38233483200011,69.43134186400009],[18.387380405000044,69.42218659100008],[18.383474155000044,69.41469961100005],[18.3763126960001,69.40766022300006],[18.368337436000047,69.393255927],[18.364756707000083,69.3915062520001],[18.36817467500009,69.39232005400011],[18.44752037900011,69.39354075700011],[18.467133009000094,69.39032623900006],[18.48715254000004,69.382025458],[18.50294030000009,69.37006256700006],[18.50928795700011,69.3559431010001],[18.507090691000116,69.33783600500011],[18.49781334700009,69.30695221600014],[18.495616082000083,69.29047272300006],[18.509532097000147,69.28294505400011],[18.5162866550001,69.27610911700009],[18.51270592500012,69.26654694200002],[18.504242384000094,69.25873444200012],[18.498545769000113,69.25202057500017],[18.497243686000104,69.24469635600015],[18.502452019000117,69.23525625200016],[18.524912957000108,69.26203034100014],[18.533213738000086,69.27789948100009],[18.536631707000083,69.29425690300009],[18.536306186000076,69.32900625200016],[18.538340691000087,69.34796784100017],[18.54395592500009,69.35936107000013],[18.564789259000094,69.36465078300002],[18.579763217000107,69.352932033],[18.588715040000125,69.33323802299999],[18.591807488000114,69.31468333500008],[18.602061394000145,69.30023834800004],[18.625336134000065,69.29315827000006],[18.65170332100007,69.288234768],[18.670258009000065,69.28025950700014],[18.67920983200011,69.27204010600003],[18.69166100400011,69.26349518400012],[18.7029728520001,69.26251862200014],[18.707774285000085,69.27680084800012],[18.703135613000143,69.28766510600003],[18.692637566000087,69.29254791900009],[18.6810001960001,69.29645416900009],[18.67367597700007,69.304144598],[18.689707879000082,69.31785716400005],[18.735036655000073,69.32416413000009],[18.823903842000107,69.32526276200004],[18.863454623000052,69.319322007],[18.929698113000114,69.29580312700013],[19.00538170700011,69.28554922100001],[19.01295006600014,69.28705475500004],[19.016368035000085,69.29393138200008],[19.01351972700013,69.29930247600014],[19.007009311000044,69.30288320500001],[18.99903405000009,69.304144598],[18.98853600400011,69.30711497600011],[18.95460045700008,69.32831452000012],[18.93376712300008,69.33405182500007],[18.664805535000138,69.36933014500012],[18.631521030000044,69.38296133000007],[18.61573326900009,69.38605377800015],[18.606618686000104,69.39044830900004],[18.600840691000144,69.40053945500001],[18.59669030000009,69.41217682500012],[18.591807488000114,69.420843817],[18.577810092000078,69.43134186400009],[18.56267337300008,69.43695709800005],[18.52979576900009,69.44135163000006],[18.490082227000073,69.44171784100017],[18.4666447270001,69.44521719000006],[18.454600457000083,69.45433177300005],[18.456879102000045,69.46539948100009],[18.4661564460001,69.47382233300014],[18.478200717000107,69.47955963700012],[18.48878014400006,69.48224518400008],[18.468516472000147,69.50405508000013],[18.474294467000103,69.51642487200009],[18.49756920700014,69.52195872600011],[18.564707879000107,69.52655670800014],[18.630625847000147,69.54100169500002],[18.852712436000047,69.55231354400009],[18.861582879000082,69.54669830900018],[18.865489129000082,69.5307070980001],[18.864268425000063,69.52191803600012],[18.860036655000044,69.51447174700003],[18.85328209700012,69.50824616100009],[18.844493035000138,69.50275299700014],[18.86011803500014,69.5034040390001],[18.877207879000082,69.50193919500005],[18.893728061000047,69.49762604400003],[18.90650475400011,69.48969147300006],[18.91138756600006,69.4818382830001],[18.912933790000096,69.46556224200005],[18.916758660000113,69.4580752620001],[18.93531334700012,69.44627513200011],[19.009532097000147,69.42829010600018],[19.003184441000116,69.407904364],[19.014414910000113,69.39704010600012],[19.057383660000085,69.38605377800015],[19.122325066000144,69.35879140800007],[19.146006707000083,69.35252513200011],[19.347422722000147,69.34418366100014],[19.379405144000145,69.32184479400003],[19.371104363000082,69.30011627800006],[19.35059655000012,69.29047272300006],[19.28492272200012,69.27553945500011],[19.22925866000011,69.28367747600005],[19.215342644000117,69.28156159100004],[19.18921959700006,69.27216217700011],[19.16700280000012,69.267035223],[19.168793165000093,69.26044342700011],[19.17750084700009,69.25348541900003],[19.18775475400011,69.24949778900007],[19.19662519600007,69.25128815300005],[19.2244572270001,69.26211172100012],[19.23210696700005,69.26654694200002],[19.25098717500009,69.27423737200003],[19.26856530000012,69.26618073100009],[19.272308790000125,69.252386786],[19.24903405000012,69.24266185100005],[19.26319420700014,69.23529694200015],[19.30079186300014,69.22402578300016],[19.317718946000127,69.22215403899999],[19.336599155000073,69.22492096600013],[19.36500084700009,69.23798248900012],[19.379405144000145,69.24266185100005],[19.413096550000148,69.2401797550001],[19.477224155000016,69.2207705750001],[19.50928795700011,69.22907135600009],[19.4876408210001,69.24127838700015],[19.465993686000104,69.24896881700009],[19.448578321000042,69.26032135600015],[19.44092858200011,69.28367747600005],[19.443614129000107,69.29238515800013],[19.44947350400014,69.29865143400018],[19.45460045700014,69.30609772300006],[19.45460045700014,69.31842682500012],[19.44947350400014,69.32485586100002],[19.429535352000073,69.34174225500011],[19.350108269000145,69.37909577000006],[19.324880405000073,69.38401927300013],[19.29835045700011,69.38580963700012],[19.156260613000086,69.37714264500012],[19.11939537900014,69.38605377800015],[19.109629754000082,69.39203522300006],[19.085215691000144,69.41400788],[19.083262566000084,69.41828034100008],[19.083262566000084,69.42352936400009],[19.082367384000094,69.42918528899999],[19.07789147200012,69.43451569200015],[19.070078972000147,69.43756745000003],[19.043630405000073,69.44135163000006],[19.02173912900014,69.4502627620001],[19.001312696000067,69.46434153900005],[18.992686394000142,69.48314036699999],[19.00570722700013,69.50617096600014],[19.031911655000073,69.5211449240001],[19.069102410000085,69.53327057500009],[19.176931186000104,69.55072663000006],[19.194834832000083,69.550482489],[19.22201582100007,69.53375885600018],[19.235606316000144,69.52826569200015],[19.25017337300008,69.52464427299999],[19.262705925000148,69.52326080900009],[19.25375410200013,69.53530508000001],[19.242849155000073,69.54376862200014],[19.233246290000096,69.55316803600009],[19.22925866000011,69.56793854400013],[19.147634311000104,69.56488678600006],[19.103200717000078,69.55597565300003],[19.0533960300001,69.55215078300002],[19.03345787900011,69.54059479400009],[19.016368035000085,69.53436920800011],[18.994476759000122,69.53961823100012],[18.973155144000085,69.550482489],[18.95801842500009,69.56110260600006],[18.944346550000148,69.61530182500009],[19.08497155000009,69.69342682500003],[19.0983179050001,69.73615143400004],[19.1178491550001,69.74335358300006],[19.139496290000068,69.747503973],[19.18433678500011,69.74982330900015],[19.20142662900014,69.75332265800014],[19.232920769000145,69.77057526200015],[19.24903405000012,69.77708567900005],[19.295746290000125,69.78290436400012],[19.44434655000012,69.77708567900005],[19.483083530000073,69.78139883000007],[19.558767123000052,69.80019765800002],[19.737152540000068,69.81305573100003],[19.78419030000009,69.80438873900015],[19.776866082000083,69.79157135600012],[19.7693791020001,69.7842471370001],[19.73145592500009,69.75682200700005],[19.734141472000147,69.753607489],[19.736338738000143,69.73956940300006],[19.72868899800011,69.72288646000003],[19.71029707100007,69.70538971600014],[19.689707879000135,69.69033437700013],[19.674327019000117,69.68154531500006],[19.693369988000086,69.66372304900001],[19.71558678500014,69.65493398600013],[19.727386915000125,69.64215729400009],[19.715179884000065,69.61261627800002],[19.6998804050001,69.59369538],[19.643321160000085,69.54059479400009],[19.6359155610001,69.53156159100008],[19.62989342500009,69.52045319200006],[19.626475457000083,69.50824616100009],[19.626475457000083,69.49591705900004],[19.63266035200013,69.48566315300009],[19.643728061000076,69.47174713700004],[19.65015709700009,69.45962148600013],[19.643321160000085,69.45433177300005],[19.614105665000125,69.44969310100014],[19.581716342000046,69.43744538000006],[19.551931186000047,69.42011139500006],[19.530284050000148,69.40033600500006],[19.68848717500012,69.44472890800007],[19.698090040000096,69.46600983300006],[19.715993686000076,69.49217357000002],[19.72486412900011,69.51605866100006],[19.708343946000127,69.5307070980001],[19.75684655000012,69.59955475500006],[19.750987175000148,69.60268789300012],[19.748301629000082,69.60541413],[19.746429884000122,69.60854726800007],[19.743174675000063,69.61261627800002],[19.76384524800008,69.61147695500009],[19.803396030000044,69.61416250200007],[19.928558790000068,69.60516998900015],[19.99439537900014,69.58905670800009],[20.060231967000107,69.57908763199998],[20.112559441000087,69.58535390800013],[20.074961785000085,69.58429596600008],[20.031586134000122,69.58832428600014],[19.98926842500012,69.59686920800006],[19.95484459700009,69.60919830900012],[19.924978061000104,69.61570872600011],[19.888519727000126,69.61871979400011],[19.857758009000065,69.62726471600003],[19.844981316000116,69.65045807500015],[19.8424585300001,69.65973541900003],[19.8294376960001,69.67352936400012],[19.824473504000135,69.68154531500006],[19.822764519000145,69.68870677300009],[19.824473504000135,69.71190013200004],[19.83643639400009,69.72394440300013],[19.860199415000096,69.732896226],[19.878184441000116,69.74433014500015],[19.872325066000084,69.76341380400011],[19.889496290000096,69.77488841399999],[19.927744988000143,69.78412506700012],[19.944590691000144,69.7941755230001],[19.97787519600007,69.830511786],[19.989024285000085,69.83856842700014],[20.006114129000107,69.84284088700004],[20.009043816000144,69.8348656270001],[20.002696160000113,69.82111237200017],[19.98316491000014,69.79669830900004],[19.968516472000115,69.76341380400011],[20.007009311000104,69.76850006700015],[20.033946160000085,69.79035065300009],[20.07837975400011,69.84540436400005],[20.114756707000083,69.8784040390001],[20.14356530000012,69.92218659100008],[20.154551629000082,69.93488190300006],[20.16773522200012,69.94220612200014],[20.170420769000085,69.9307315120001],[20.17017662900014,69.92698802300008],[20.16773522200012,69.92047760600018],[20.168304884000094,69.896226304],[20.17066491000014,69.88043854400014],[20.17798912900014,69.873277085],[20.193044467000078,69.86774323100018],[20.202403191000087,69.85895416900003],[20.207286004000082,69.85895416900003],[20.20875084700012,69.87954336100013],[20.201914910000113,69.92422109600001],[20.207692905000073,69.93183014500015],[20.236013217000107,69.94574616100012],[20.270355665000068,69.96784088700012],[20.292653842000107,69.97101471600008],[20.314952019000145,69.96381256700015],[20.417246941000087,69.89036692900005],[20.42530358200011,69.877183335],[20.420258009000094,69.86713288000011],[20.409353061000104,69.85748932500015],[20.399912957000083,69.84540436400005],[20.396820509000094,69.83405182500017],[20.39616946700005,69.81317780200011],[20.393565300000148,69.80438873900015],[20.38624108200014,69.79718659100011],[20.37452233200005,69.78864166900009],[20.363617384000094,69.7785505230001],[20.358897332000083,69.76683177300013],[20.356293165000096,69.75706614799999],[20.35027103000007,69.74506256700006],[20.34262129000004,69.73358795800011],[20.335703972000147,69.725572007],[20.321787957000083,69.68610260600012],[20.31861412900011,69.68154531500006],[20.323008660000085,69.66917552300012],[20.330414259000065,69.663275458],[20.375254754000082,69.64215729400009],[20.383067254000082,69.63467031500012],[20.38624108200014,69.62287018400015],[20.385508660000113,69.611029364],[20.38257897200009,69.59878164300012],[20.37647545700011,69.58917877800015],[20.36597741000014,69.58535390800013],[20.33025149800011,69.58222077000005],[20.29127037900014,69.57355377800015],[20.274180535000085,69.56061432500013],[20.304372592000107,69.54433828300004],[20.289073113000143,69.53790924700012],[20.277598504000082,69.5289574240001],[20.26954186300014,69.517279364],[20.26392662900014,69.50275299700014],[20.278493686000076,69.48517487200003],[20.266856316000087,69.46808502800017],[20.24170983200011,69.45978424700009],[20.21558678500014,69.46865469000012],[20.206716342000107,69.43984609600001],[20.19157962300011,69.41323476800005],[20.168793165000068,69.39370351800008],[20.116058790000068,69.38287995000009],[20.057871941000144,69.35936107000013],[20.000254754000082,69.34837474199999],[19.982188347000147,69.33893463700015],[19.987152540000096,69.33588288000006],[19.997243686000072,69.32819245000015],[20.002696160000113,69.32526276200004],[19.937266472000147,69.28839752800013],[19.916840040000096,69.269273179],[19.948008660000085,69.263128973],[19.97169030000009,69.27016836100007],[20.000254754000082,69.28571198100018],[20.027679884000122,69.30463288],[20.047211134000122,69.32184479400003],[20.07048587300011,69.33600495000003],[20.225352410000085,69.38434479400014],[20.26693769600007,69.387640692],[20.27702884200002,69.39227936400012],[20.354258660000138,69.46808502800017],[20.37322024800008,69.48224518400008],[20.42286217500009,69.5069033870001],[20.44109134200005,69.52277252800012],[20.448252800000088,69.54779694200012],[20.45215905000009,69.55585358300006],[20.461599155000098,69.5651716170001],[20.47282962300011,69.57343170799999],[20.482432488000086,69.57786692900008],[20.497325066000144,69.57762278900013],[20.51156660200013,69.5721703150001],[20.52491295700014,69.56452057500015],[20.570811394000142,69.544826565],[20.646983269000117,69.52118561400009],[20.791514519000145,69.50958893400015],[20.808360222000147,69.50267161700008],[20.823008660000085,69.494330145],[20.837168816000087,69.49022044500005],[20.85303795700011,69.49591705900004],[20.812185092000078,69.51044342700008],[20.718435092000078,69.52838776200012],[20.684825066000144,69.54779694200012],[20.65870201900009,69.57664622600005],[20.647634311000076,69.58535390800013],[20.626800977000073,69.59442780200014],[20.540293816000087,69.61033763200005],[20.492360873000077,69.62726471600003],[20.482432488000086,69.63686758000001],[20.488291863000143,69.64838288000006],[20.527110222000147,69.67780182500003],[20.54175866000014,69.70538971600014],[20.535166863000086,69.73045482000005],[20.51335696700005,69.7487653670001],[20.482432488000086,69.75600820500013],[20.482432488000086,69.76341380400011],[20.51197350400014,69.76947663000011],[20.642914259000065,69.772650458],[20.785166863000114,69.80174388200005],[20.803884311000104,69.811957098],[20.822276238000143,69.82859935100005],[20.824961785000113,69.84153880400005],[20.81421959700012,69.85394928600009],[20.799815300000148,69.866359768],[20.791514519000145,69.87954336100013],[20.82927493600002,69.88304271000014],[21.05176842500012,69.94472890800007],[21.092539910000085,69.94839101800004],[21.092539910000085,69.94220612200014],[20.982432488000086,69.904038804],[20.918955925000144,69.8668480490001],[20.893890821000067,69.85968659100014],[20.893890821000067,69.85285065300003],[20.91456139400009,69.8487002620001],[20.936045769000117,69.84894440300003],[20.955088738000114,69.8460960960001],[20.969086134000065,69.83234284100017],[20.958994988000114,69.83185455900009],[20.95167076900009,69.82977936400006],[20.946055535000085,69.82550690300015],[20.94109134200005,69.81867096600006],[20.994639519000145,69.793402411],[21.020518425000148,69.7881533870001],[21.05095462300011,69.79759349200009],[21.035655144000145,69.80524323100006],[21.00489342500009,69.81395091400013],[20.996348504000135,69.824896552],[21.018402540000064,69.82648346600003],[21.04900149800008,69.83201732000005],[21.06861412900014,69.84267812700007],[21.05836022200012,69.85968659100014],[21.085134311000104,69.86611562700016],[21.17042076900009,69.87563711100016],[21.188812696000127,69.86957428600006],[21.180511915000125,69.85455963700002],[21.14087975400011,69.82501862200017],[21.12671959700009,69.81122467700006],[21.14991295700011,69.81256745000015],[21.17920983200014,69.81948476800015],[21.206553582000108,69.83079661700013],[21.222911004000107,69.84540436400005],[21.223887566000084,69.85740794499999],[21.209239129000082,69.90745677299999],[21.32593834700009,69.90745677299999],[21.3020939460001,69.920355536],[21.27051842500012,69.92975495000003],[21.237559441000144,69.93475983300009],[21.209239129000082,69.93475983300009],[21.225271030000073,69.97467682500003],[21.253103061000047,70.00299713700018],[21.289886915000125,70.02106354400009],[21.332774285000113,70.03034088700015],[21.392588738000143,70.02899811400006],[21.55811608200014,69.98940664300012],[21.556325717000078,69.97516510600003],[21.569672071000067,69.96539948100018],[21.606455925000148,69.95526764500012],[21.578623894000117,69.92792389500006],[21.60889733200011,69.91193268400015],[21.64600670700011,69.89891185100008],[21.684336785000138,69.8901227890001],[21.757660352000073,69.88287995000017],[21.904551629000082,69.82542552299999],[21.930918816000087,69.80841705900012],[21.942230665000064,69.787339585],[21.957286004000082,69.777818101],[22.051524285000056,69.74982330900015],[22.03419030000009,69.74306875200013],[22.0154728520001,69.743597723],[21.97706139400009,69.74982330900015],[22.000173373000052,69.74038320500016],[22.03003991000014,69.73432038000006],[22.061045769000142,69.73338450700008],[22.086273634000122,69.73956940300006],[22.09815514400009,69.74982330900015],[22.092051629000082,69.75763580900015],[22.058929884000065,69.77024974200005],[22.056162957000083,69.79360586100013],[22.010020379000082,69.81240469000008],[21.91553795700014,69.83856842700014],[21.937022332000055,69.84259674700009],[21.99984785200013,69.83515045800011],[22.018077019000117,69.84540436400005],[22.011973504000107,69.85952383000007],[21.989024285000113,69.86798737200003],[21.94288170700011,69.873277085],[21.930023634000094,69.879339911],[21.928233269000085,69.89362213700008],[21.92937259200005,69.91046784100008],[21.9251408210001,69.92422109600001],[21.914398634000094,69.93781159100017],[21.913584832000083,69.94525788000014],[21.928558790000125,69.96271393400009],[21.92798912900014,69.967474677],[21.92335045700011,69.971869208],[21.921397332000083,69.97675202000006],[21.928558790000125,69.98314036699999],[21.940114780000044,69.98574453300007],[21.98389733200011,69.98314036699999],[22.010020379000082,69.98615143400018],[22.0240991550001,69.98550039300012],[22.03484134200002,69.9794375670001],[22.03484134200002,69.97382233300011],[22.02475019600007,69.95526764500012],[22.052256707000083,69.93842194200012],[22.061371290000096,69.95669179900001],[22.058929884000065,69.98965078300007],[22.051524285000056,70.016750393],[22.067230665000125,70.01813385600018],[22.097504102000126,70.0244815120001],[22.11361738400009,70.024115302],[22.11361738400009,70.03034088700015],[21.950856967000078,70.01227448100003],[21.865896030000044,70.01190827000012],[21.79835045700014,70.03717682500017],[21.83887780000009,70.05512116100012],[21.98389733200011,70.05760325700005],[22.005137566000087,70.06134674700017],[22.020681186000104,70.0678164730001],[22.051524285000056,70.08559804900007],[22.08277428500014,70.09650299700004],[22.094411655000044,70.10480377800003],[22.09937584700009,70.1203473980001],[22.01978600400011,70.103257554],[22.007823113000082,70.10236237200009],[21.98601321700002,70.08905670800006],[21.958262566000144,70.08454010600012],[21.839203321000095,70.09243398600007],[21.829844597000147,70.08909739800005],[21.817149285000113,70.07461172100001],[21.805023634000122,70.07135651200015],[21.719493035000113,70.06061432500015],[21.688487175000088,70.065130927],[21.63103274800008,70.09430573100015],[21.613291863000086,70.09857819200006],[21.513356967000107,70.09170156500015],[21.4822697270001,70.09857819200006],[21.468760613000114,70.10643138200005],[21.43897545700011,70.13715241100012],[21.43653405000009,70.14960358300006],[21.455251498000052,70.15892161700002],[21.480235222000086,70.166693427],[21.49659264400009,70.1749535180001],[21.358164910000113,70.1640485700001],[21.312266472000147,70.16754791900009],[21.294932488000143,70.1713727890001],[21.28199303500014,70.17625560099998],[21.271494988000086,70.18292877800003],[21.260752800000148,70.19208405200011],[21.246836785000085,70.19940827000012],[21.214854363000086,70.2064476580001],[21.209239129000082,70.20848216400013],[21.233897332000083,70.22426992400007],[21.23568769600007,70.2254906270001],[21.270355665000036,70.23859284100014],[21.306976759000065,70.247015692],[21.33961022200012,70.25006745000009],[21.407074415000096,70.26732005400011],[21.43930097700013,70.26947663000011],[21.435231967000078,70.25006745000009],[21.44507897200012,70.23786041900003],[21.489756707000083,70.20848216400013],[21.49293053500014,70.21718984600001],[21.492523634000122,70.22109609600001],[21.490977410000085,70.22479889500015],[21.489756707000083,70.23297760600015],[21.49268639400009,70.24017975499999],[21.506114129000082,70.25067780200006],[21.510264519000117,70.25690338700012],[21.511485222000147,70.27000560099998],[21.510915561000076,70.28204987200007],[21.511729363000082,70.29340241100009],[21.51775149800008,70.30467357000008],[21.53394616000014,70.31683991100006],[21.55298912900014,70.32103099199999],[21.571462436000076,70.31891510600015],[21.585948113000114,70.31216054900013],[21.587412957000083,70.30776601800015],[21.58692467500009,70.29295482],[21.589121941000087,70.28729889500009],[21.613291863000086,70.26992422100001],[21.636078321000095,70.26146067900008],[21.6853947270001,70.25568268400009],[21.709483269000117,70.25006745000009],[21.796885613000086,70.20628489800013],[21.804372592000078,70.19798411700005],[21.808929884000094,70.18842194200005],[21.81934655000009,70.1749535180001],[21.82960045700011,70.16815827000006],[21.874034050000148,70.14704010600006],[21.87964928500014,70.16058991100003],[21.87671959700012,70.16974518400009],[21.870941602000073,70.177923895],[21.867849155000073,70.18866608300011],[21.865733269000145,70.19061920800006],[21.86158287900011,70.19131094],[21.858897332000137,70.19403717700008],[21.86036217500009,70.20229726800007],[21.866221550000144,70.20742422100007],[21.875824415000125,70.20954010600018],[21.886485222000147,70.20954010600018],[21.894541863000082,70.20848216400013],[21.873057488000054,70.21605052299999],[21.827321811000047,70.22662995000003],[21.808848504000107,70.24017975499999],[21.805674675000148,70.25722890800013],[21.82178795700014,70.2686221370001],[21.986827019000145,70.32343170800011],[22.010101759000065,70.32461172100015],[22.031586134000094,70.3183454450001],[22.018728061000047,70.30902741100006],[21.991465691000144,70.29572174700003],[21.98389733200011,70.2842471370001],[22.00912519600007,70.28652578300007],[22.07203209700012,70.30467357000008],[22.09522545700014,70.30780670800013],[22.104828321000127,70.3041445980001],[22.10678144600007,70.29393138200004],[22.10759524800008,70.245306708],[22.117198113000057,70.23346588700004],[22.140879754000082,70.23647695500013],[22.152842644000117,70.24652741100012],[22.153168165000125,70.25934479400014],[22.140879754000082,70.2842471370001],[22.2674259770001,70.29511139500009],[22.305837436000104,70.28729889500009],[22.315114780000073,70.27269114800008],[22.300303582000083,70.25511302300013],[22.276133660000085,70.23920319200012],[22.25757897200009,70.22955963700007],[22.272308790000068,70.21792226800012],[22.277679884000122,70.20246002800002],[22.281504754000135,70.18520742400001],[22.291758660000085,70.16754791900009],[22.27808678500014,70.15818919500008],[22.249034050000144,70.1505801450001],[22.237071160000113,70.14020416900001],[22.274668816000116,70.1354841170001],[22.404958530000073,70.14704010600006],[22.524750196000042,70.123521226],[22.55933678500014,70.12661367400007],[22.536387566000144,70.13947174700009],[22.507334832000083,70.14671458500011],[22.325938347000147,70.16754791900009],[22.332367384000065,70.180121161],[22.360606316000144,70.21588776200012],[22.374766472000147,70.24632396000008],[22.3737085300001,70.25006745000009],[22.400645379000082,70.25828685100002],[22.433929884000065,70.260931708],[22.46810957100007,70.25991445500004],[22.512950066000087,70.25372955900015],[22.553965691000084,70.2383487000001],[22.565277540000068,70.23761627800009],[22.575856967000103,70.24066803600009],[22.58708743600002,70.24209219000015],[22.600271030000073,70.23647695500013],[22.59400475400011,70.22207265800007],[22.60368899800008,70.21849192900011],[22.67530358200011,70.22313060100014],[22.967051629000082,70.20746491100006],[22.976898634000122,70.19887929900015],[22.970550977000073,70.18935781500015],[22.860199415000125,70.12620677300006],[22.83668053500014,70.1203473980001],[22.803965691000116,70.11692942900011],[22.736094597000147,70.10199616100006],[22.55250084700012,70.08559804900007],[22.476247592000078,70.09088776200004],[22.43458092500012,70.0889346370001],[22.39234459700009,70.0678164730001],[22.284922722000147,70.0440127620001],[22.304209832000083,70.03912995000002],[22.33179772200009,70.04043203300002],[22.359060092000107,70.04608795800003],[22.39503014400006,70.06110260600003],[22.647634311000104,70.07566966400007],[22.713715040000125,70.09528229400003],[22.867198113000086,70.10602448100003],[22.978526238000143,70.14541250200004],[23.018565300000148,70.14704010600006],[23.00269616000014,70.114406643],[22.999196811000044,70.10097890800002],[22.99805748800011,70.08218008000016],[23.001149936000104,70.06586334800011],[23.009043816000087,70.050482489],[23.020030144000117,70.03807200700005],[23.03223717500009,70.03034088700015],[23.052419467000046,70.0323753930001],[23.084971550000088,70.03961823100009],[23.11508222700013,70.04303620000012],[23.12842858200014,70.03375885600015],[23.12452233200014,70.012884833],[23.119802280000044,69.99896881700003],[23.124359571000095,69.98794179900005],[23.14893639400009,69.97573476800008],[23.135915561000104,69.96674225500009],[23.12330162900014,69.96088288000011],[23.109873894000145,69.95726146000005],[23.0944116550001,69.95526764500012],[23.125498894000117,69.94440338700004],[23.15919030000012,69.951076565],[23.283457879000082,69.9933942730001],[23.29908287900014,69.99624258000013],[23.314138217000078,69.99652741100007],[23.31617272200009,69.99363841400005],[23.323008660000113,69.98627350500006],[23.334808790000096,69.98118724200013],[23.339040561000104,69.97772858300011],[23.33668053500014,69.97260163000011],[23.309580925000116,69.954087632],[23.309580925000116,69.94977448100009],[23.32984459700012,69.94839101800004],[23.420583530000044,69.97809479400013],[23.467295769000117,69.98578522300006],[23.477305535000113,69.99282461100013],[23.48462975400011,70.00633372600011],[23.50220787900014,70.01141998900012],[23.522715691000084,70.01496002800012],[23.53931725400014,70.024115302],[23.48853600400011,70.03416575700008],[23.296885613000143,70.03978099200006],[23.27271569100014,70.046576239],[23.175547722000147,70.09243398600007],[23.1920679050001,70.09756094],[23.22779381600014,70.09764231999998],[23.244476759000094,70.10236237200009],[23.25953209700009,70.10846588700015],[23.27564537900008,70.11163971600004],[23.357758009000065,70.11530182500009],[23.379242384000094,70.12323639500006],[23.40211022200012,70.14020416900001],[23.37916100400011,70.14964427300005],[23.32357832100007,70.15924713700012],[23.29908287900014,70.16754791900009],[23.32764733200014,70.17536041900009],[23.403086785000085,70.18081289300012],[23.422048373000077,70.19546133000013],[23.328623894000117,70.193060614],[23.28077233200008,70.19847239800005],[23.24390709700012,70.21588776200012],[23.275726759000065,70.22504303599999],[23.387868686000104,70.22955963700007],[23.417816602000073,70.23436107000005],[23.4876408210001,70.23554108300006],[23.503428582000055,70.2375348980001],[23.50513756600006,70.24384186400015],[23.531911655000073,70.24384186400015],[23.502940300000063,70.25336334800012],[23.47046959700009,70.25600820500013],[23.292246941000116,70.24384186400015],[23.312836134000065,70.256984768],[23.399424675000116,70.27863190300009],[23.57081139400006,70.29067617400001],[23.614431186000076,70.30467357000008],[23.511973504000082,70.29783763200005],[23.518728061000015,70.305853583],[23.546153191000084,70.32514069200012],[23.52442467500009,70.32396067900002],[23.482758009000037,70.31549713700015],[23.463633660000085,70.3183454450001],[23.482269727000073,70.33026764500015],[23.51319420700011,70.36554596600008],[23.535492384000033,70.37299225500004],[23.56202233200011,70.37693919500005],[23.590586785000085,70.38670482],[23.642344597000115,70.41111888200014],[23.750987175000063,70.44871653900013],[23.815684441000084,70.48700592700008],[23.84034264400009,70.49705638200005],[23.917979363000114,70.50942617400005],[24.18628991000011,70.49396393400015],[24.298024936000076,70.474839585],[24.311045769000142,70.47040436400003],[24.333832227000073,70.45954010600003],[24.350271030000073,70.456244208],[24.357432488000114,70.46279531500006],[24.3553166020001,70.47199127800006],[24.344411655000044,70.47662995000017],[24.315196160000085,70.48309967700008],[24.258799675000148,70.51373932500009],[24.23145592500009,70.52383047100015],[24.11475670700008,70.53807200700005],[24.102712436000076,70.54140859600007],[24.112315300000148,70.54889557500015],[24.210785352000073,70.58527252800003],[24.238291863000082,70.59951406500012],[24.247325066000116,70.60211823100003],[24.256032748000077,70.60342031500012],[24.264333530000073,70.60626862200017],[24.272308790000125,70.61318594000006],[24.27564537900014,70.62278880400005],[24.27637780000009,70.64712148600002],[24.28223717500012,70.65753815300009],[24.29395592500012,70.66640859600015],[24.333832227000073,70.685207424],[24.352386915000093,70.69098541900014],[24.3704533210001,70.68984609600012],[24.408864780000012,70.68146393400015],[24.477712436000076,70.68329498900015],[24.49830162900011,70.67804596600014],[24.61500084700012,70.62620677300005],[24.646983269000117,70.61798737200014],[24.687998894000117,70.6143252620001],[24.723480665000096,70.62103913000004],[24.738536004000107,70.64423248900009],[24.724864129000082,70.66522858300011],[24.66163170700011,70.68817780200011],[24.642263217000107,70.7025820980001],[24.646739129000082,70.70384349199998],[24.65593509200005,70.709377346],[24.58814537900014,70.7219098980001],[24.56666100400011,70.72988515800016],[24.543955925000148,70.74628327000006],[24.532399936000047,70.75039297100001],[24.515961134000122,70.752142645],[24.464121941000116,70.75039297100001],[24.347422722000147,70.76398346600017],[24.2923283210001,70.76410553600014],[24.265879754000107,70.769924221],[24.24512780000012,70.78449127800002],[24.26807701900009,70.8002383480001],[24.267588738000114,70.82070547100012],[24.2693791020001,70.83844635600003],[24.363617384000094,70.86286041900007],[24.395762566000144,70.86688873900006],[24.41627037900011,70.8527692730001],[24.408864780000012,70.84593333500003],[24.451182488000114,70.84113190300012],[24.46583092500012,70.83445872600005],[24.464121941000116,70.81801992400005],[24.52027428500014,70.81159088700015],[24.57398522200012,70.79877350500011],[24.616058790000068,70.77973053600012],[24.6354272800001,70.77977122600011],[24.649668816000084,70.79877350500011],[24.640635613000086,70.80857982000005],[24.629079623000052,70.81557851800012],[24.600759311000104,70.82542552300005],[24.610606316000116,70.840765692],[24.611094597000115,70.85146719000012],[24.613291863000114,70.85936107000002],[24.628672722000147,70.86640045800006],[24.653330925000148,70.86579010600012],[24.683604363000143,70.85993073100015],[24.71029707100007,70.85903554900007],[24.724864129000082,70.87323639500009],[24.637543165000096,70.8939476580001],[24.608164910000085,70.89435455900009],[24.62134850400014,70.9050967470001],[24.628672722000147,70.90802643400004],[24.594737175000088,70.91811758000001],[24.58228600400008,70.9245059270001],[24.57398522200012,70.93528880400011],[24.590993686000076,70.94245026200015],[24.61304772200006,70.947495835],[24.635996941000144,70.95001862200003],[24.65593509200005,70.94961172100001],[24.639414910000053,70.95506419500005],[24.603526238000086,70.9561221370001],[24.587657097000143,70.962591864],[24.608653191000087,70.97052643400015],[24.636892123000052,70.97565338700018],[24.66602623800011,70.977687893],[24.77418053500008,70.968207098],[24.782888217000078,70.96596914300011],[24.788910352000073,70.96108633000016],[24.796885613000114,70.95270416900009],[24.807139519000142,70.94721100500006],[24.835297071000124,70.94245026200015],[24.84742272200012,70.93870677300013],[24.860199415000068,70.92837148600005],[24.853770379000053,70.92182038000014],[24.83741295700014,70.91608307500017],[24.82048587300005,70.90802643400004],[24.984873894000117,70.91425202],[24.9681095710001,70.9298363300001],[24.97803795700011,70.94578685099998],[24.987966342000103,70.95815664300012],[24.971202019000085,70.962591864],[24.993500196000124,70.97207265800002],[25.03345787900008,70.97134023600007],[25.062836134000065,70.95758698100015],[25.05323326900009,70.92788320500013],[25.025889519000117,70.90839264500015],[24.988942905000073,70.89130280200003],[24.949717644000145,70.87885163],[24.916026238000143,70.87323639500009],[24.932953321000127,70.867621161],[24.97136478000004,70.87616608300003],[24.988291863000114,70.86981842700008],[25.00473066500012,70.86163971600017],[25.04835045700011,70.85797760600012],[25.067393425000116,70.8527692730001],[25.06714928500008,70.87303294500013],[25.07601972700013,70.88434479400001],[25.111501498000106,70.90932851800012],[25.13453209700009,70.91966380400005],[25.142588738000114,70.92169830900015],[25.153575066000087,70.91950104400009],[25.159678582000055,70.91486237200014],[25.1634220710001,70.91014232000005],[25.16651451900009,70.90802643400004],[25.179942254000082,70.90375397300012],[25.23194420700014,70.87323639500009],[25.24187259200005,70.8623721370001],[25.266123894000117,70.82542552300005],[25.245616082000083,70.79132721600014],[25.25749759200002,70.79083893400015],[25.266856316000144,70.79425690300015],[25.27507571700005,70.80048248900012],[25.283457879000107,70.80874258000001],[25.2947697270001,70.81342194200012],[25.311289910000085,70.81419505400005],[25.34156334700006,70.81244538000006],[25.34978274800008,70.81867096600003],[25.39226321700005,70.88442617400001],[25.39665774800011,70.90070221600001],[25.385508660000113,70.90802643400004],[25.375254754000082,70.91315338700005],[25.36060631600006,70.92560455900015],[25.34742272200012,70.94041575700014],[25.34180748800011,70.95270416900009],[25.365000847000147,70.97614166900017],[25.41822350400014,70.96454498900006],[25.535980665000068,70.9229190120001],[25.53728274800008,70.9112816430001],[25.52702884200005,70.89765045800014],[25.512461785000113,70.8869082700001],[25.49317467500009,70.87791575700001],[25.443858269000085,70.86261627800006],[25.423106316000087,70.85960521000014],[25.44166100400011,70.84149811400012],[25.465668165000068,70.84406159100006],[25.512461785000113,70.86981842700008],[25.520762566000087,70.86912669500005],[25.53882897200012,70.85439687700013],[25.553396030000044,70.8527692730001],[25.560313347000147,70.85700104400014],[25.58887780000012,70.88068268400013],[25.616709832000083,70.88857656500012],[25.66260826900009,70.89533112200017],[25.7057397800001,70.89557526200012],[25.72478274800008,70.88377513200004],[25.728200717000107,70.87738678600012],[25.73658287900014,70.86933014499999],[25.746836785000085,70.8624535180001],[25.75611412900014,70.85960521000014],[25.768402540000096,70.86286041900007],[25.77808678500014,70.87010325700011],[25.78541100400014,70.87738678600012],[25.790537957000083,70.88068268400013],[25.823090040000125,70.88568756699999],[25.85303795700011,70.89402903899999],[25.881602410000085,70.895697333],[25.910411004000107,70.88068268400013],[25.918711785000113,70.87287018400015],[25.925791863000057,70.863674221],[25.925140821000127,70.855902411],[25.895762566000116,70.84955475500006],[25.868662957000083,70.83543528900005],[25.825205925000148,70.82746002800017],[25.80030358200011,70.81541575700008],[25.7532658210001,70.78449127800002],[25.726084832000083,70.77545807500012],[25.62916100400011,70.76398346600017],[25.634450717000078,70.75503164300012],[25.64039147200012,70.74848053600006],[25.656504754000082,70.73602936400015],[25.641123894000142,70.72288646],[25.62012780000009,70.71230703300013],[25.597341342000075,70.70514557500009],[25.559906446000127,70.69904205900009],[25.512461785000113,70.67121002800003],[25.44678795700011,70.66193268400008],[25.427989129000082,70.64240143400009],[25.35377037900014,70.60716380400005],[25.306976759000065,70.59931061400009],[25.287119988000086,70.592718817],[25.254649285000085,70.57225169500003],[25.239268425000148,70.56476471600017],[25.10108483200011,70.52309804900001],[25.0735783210001,70.5033226580001],[25.2459416020001,70.52789948100009],[25.287119988000086,70.510728257],[25.242523634000094,70.48663971600014],[25.05990644600007,70.48965078300014],[25.09750410200004,70.4713402360001],[25.243337436000104,70.47842031500006],[25.287119988000086,70.45612213700011],[25.26742597700013,70.45600006700013],[25.251800977000126,70.44806549700009],[25.2459416020001,70.4346377620001],[25.264008009000122,70.40534088700015],[25.264659050000063,70.39301178600012],[25.25660241000014,70.38637929900015],[25.197764519000145,70.4003766950001],[25.15658613400009,70.39394765800002],[25.081065300000148,70.35932038000011],[25.094248894000117,70.35472239799998],[25.107758009000094,70.3529727230001],[25.135752800000088,70.35309479400014],[25.117930535000113,70.34699127800016],[25.105479363000114,70.33624909100013],[25.104746941000087,70.3253441430001],[25.122080925000148,70.3183454450001],[25.14039147200012,70.32282135600015],[25.16382897200009,70.3330752620001],[25.186778191000087,70.33934153900005],[25.203949415000125,70.33197663000006],[25.20875084700012,70.31671784100008],[25.201345248000106,70.30707428600003],[25.0579533210001,70.25446198100009],[25.02637780000012,70.24852122600005],[25.014333530000098,70.24457428600007],[25.00294030000012,70.23908112200014],[24.994802280000012,70.23297760600015],[24.989919467000046,70.23045482000003],[24.9798283210001,70.22943756700008],[24.97803795700011,70.2258161480001],[24.97803795700011,70.21849192900011],[24.977061394000117,70.21548086100002],[24.970062696000042,70.20628489800013],[24.966156446000042,70.19891998900013],[24.9646916020001,70.19135163],[24.970225457000108,70.17682526200015],[24.964366082000055,70.16998932500003],[24.946787957000137,70.1576195330001],[24.94507897200012,70.1485863300001],[24.943369988000114,70.10236237200009],[24.96338951900009,70.08038971600017],[25.004242384000122,70.06403229400013],[25.037119988000114,70.0643578150001],[25.03337649800008,70.09243398600007],[25.02328535200013,70.10089752800003],[25.01197350400014,70.10862864800013],[25.00603274800011,70.11859772300012],[25.01221764400009,70.13397858300004],[25.027517123000052,70.14280833500011],[25.09473717500009,70.15387604400014],[25.087657097000115,70.147609768],[25.0735783210001,70.12661367400007],[25.090993686000072,70.12710195500016],[25.1072697270001,70.13068268400004],[25.122243686000047,70.13226959800006],[25.135752800000088,70.12661367400007],[25.104014519000145,70.12128327],[25.090342644000117,70.11660390800009],[25.081065300000148,70.10602448100003],[25.09327233200014,70.10028717700006],[25.10181725400014,70.09100983300011],[25.11378014400009,70.082464911],[25.136078321000127,70.07880280200014],[25.159434441000116,70.08087799700014],[25.20525149800011,70.09027741100007],[25.22852623800011,70.09243398600007],[25.25269616000014,70.10130442900014],[25.273936394000117,70.12270742400007],[25.310394727000073,70.17121002800015],[25.324392123000052,70.18244049700014],[25.341644727000045,70.18988678600012],[25.361338738000086,70.19415924700006],[25.382497592000107,70.19546133000013],[25.394786004000135,70.19969310100005],[25.41309655000012,70.20990631699999],[25.4295353520001,70.22223541900014],[25.43677819100014,70.23297760600015],[25.45053144600007,70.24949778900005],[25.51710045700014,70.27789948100015],[25.54037519600007,70.29783763200005],[25.517263217000107,70.31134674700003],[25.423106316000087,70.32514069200012],[25.441091342000046,70.34223053600009],[25.65642337300011,70.440619208],[25.869151238000086,70.56419505400011],[25.89665774800011,70.57160065300009],[25.927419467000078,70.576402085],[25.960459832000137,70.58893463700016],[25.99057050900006,70.60651276200012],[26.01221764400006,70.62620677300005],[26.053477410000113,70.69269440300015],[26.070811394000113,70.71246979400009],[26.08253014400009,70.71637604400009],[26.119151238000114,70.71735260600013],[26.13640384200002,70.72304922100012],[26.145274285000085,70.73135000200004],[26.156993035000056,70.75018952000006],[26.163584832000137,70.7577985700001],[26.19166100400014,70.77374909100011],[26.25538170700008,70.79743073100003],[26.30827884200005,70.83331940300003],[26.374278191000087,70.86847565300009],[26.613617384000094,70.94912344000012],[26.691172722000147,70.95579661699999],[26.687266472000147,70.95270416900009],[26.67750084700009,70.94212474200005],[26.725352410000113,70.92788320500013],[26.719248894000145,70.91616445500014],[26.722666863000143,70.91095612200014],[26.72917728000004,70.90668366100014],[26.73275800900012,70.8977725280001],[26.730153842000107,70.887884833],[26.723399285000085,70.88080475500014],[26.708262566000087,70.86981842700008],[26.696136915000093,70.86440664300012],[26.681488477000073,70.86286041900007],[26.669118686000044,70.85960521000014],[26.66382897200006,70.84931061400012],[26.6658634770001,70.83803945500013],[26.67139733200011,70.83063385600006],[26.67994225400014,70.82664622600008],[26.690928582000083,70.82542552300005],[26.704600457000137,70.82900625200003],[26.720957879000135,70.83539459800015],[26.736013217000078,70.8386091170001],[26.745778842000103,70.83226146000008],[26.744313998000052,70.8234723980001],[26.735606316000144,70.8153343770001],[26.719086134000094,70.80499909100008],[26.704600457000137,70.79002513200004],[26.69157962300005,70.7729352890001],[26.685313347000086,70.75458405200006],[26.691172722000147,70.73602936400015],[26.640472852000073,70.70661041900014],[26.34164472700013,70.64793528900013],[26.375336134000122,70.63837311400015],[26.499359571000127,70.66095612200012],[26.537445509000122,70.66185130400011],[26.623057488000114,70.65192291900011],[26.65699303500014,70.64052969000012],[26.60181725400011,70.55853913000011],[26.606293165000093,70.544378973],[26.593109571000124,70.53587474200006],[26.573903842000078,70.52846914300007],[26.56080162900011,70.51764557500017],[26.558441602000073,70.50413646000003],[26.563975457000083,70.4968122420001],[26.573090040000068,70.48965078300014],[26.58130944100006,70.47662995000017],[26.541026238000086,70.46157461100016],[26.52133222700013,70.448391018],[26.51303144600007,70.431586005],[26.51531009200005,70.42365143400004],[26.52523847700013,70.41339752800009],[26.526621941000116,70.40770091400013],[26.523936394000142,70.40058014500006],[26.515147332000083,70.38670482],[26.51303144600007,70.37978750200007],[26.510427280000073,70.37775299700014],[26.50603274800008,70.37055084800012],[26.505869988000114,70.36286041900009],[26.516123894000145,70.35932038000011],[26.5538843110001,70.35309479400014],[26.567637566000116,70.35618724200005],[26.57520592500009,70.36196523600002],[26.57837975400014,70.36823151200014],[26.583262566000116,70.37433502800006],[26.594981316000087,70.37978750200007],[26.608897332000083,70.38080475500006],[26.635264519000085,70.376654364],[26.649587436000076,70.37978750200007],[26.631032748000052,70.40110911700003],[26.629161004000082,70.40770091400013],[26.634450717000075,70.413031317],[26.655935092000103,70.42475006700009],[26.662282748000024,70.4264183610001],[26.69271894600007,70.42023346600003],[26.723399285000085,70.42088450700008],[26.753103061000104,70.42731354400007],[26.780528191000144,70.43842194200002],[26.799327019000117,70.45465729400014],[26.803965691000144,70.46954987200012],[26.81226647200012,70.479925848],[26.94507897200009,70.48285553600012],[26.93148847700013,70.46645742400013],[26.948252800000148,70.46246979400014],[27.05128014400009,70.4760602890001],[27.076670769000117,70.474351304],[27.102061394000145,70.46979401200015],[27.090586785000113,70.47451406500006],[27.054372592000078,70.48285553600012],[27.044688347000115,70.487738348],[27.027028842000107,70.5033226580001],[26.976084832000108,70.52741120000003],[26.966075066000116,70.53807200700005],[26.990896030000073,70.54376862200003],[27.000336134000094,70.54905833500011],[27.007090691000116,70.55853913000011],[26.9817814460001,70.564642645],[26.97291100400014,70.56537506700012],[26.991709832000083,70.58283112200009],[27.021494988000086,70.59894440300015],[27.053884311000104,70.61017487200014],[27.08090254000004,70.61318594000006],[27.08855228000007,70.61090729400009],[27.10726972700013,70.60244375200016],[27.116384311000047,70.59951406500012],[27.129649285000056,70.59833405200003],[27.171071811000076,70.59951406500012],[27.242035352000073,70.58543528899999],[27.266612175000063,70.58527252800003],[27.23511803500014,70.60171133000004],[27.12989342500012,70.62620677300005],[27.099864129000053,70.64109935100011],[27.1053166020001,70.6557477890001],[27.156748894000085,70.68146393400015],[27.13900800900009,70.689195054],[27.099294467000078,70.69672272300012],[27.08090254000004,70.7025820980001],[27.110606316000087,70.72870514500012],[27.1398218110001,70.74062734600007],[27.286957227000073,70.7435570330001],[27.316661004000082,70.73895905200006],[27.329437696000127,70.74331289300015],[27.342295769000145,70.7577985700001],[27.318532748000052,70.75934479400014],[27.293711785000085,70.763902085],[27.280446811000072,70.77472565300009],[27.29078209700009,70.79507070500007],[27.310883009000122,70.81818268400004],[27.32398522200009,70.82363515800007],[27.3489689460001,70.82542552300005],[27.62964928500014,70.80499909100008],[27.48015384200005,70.82542552300005],[27.48015384200005,70.83226146000008],[27.495371941000116,70.831732489],[27.508067254000082,70.83600495000009],[27.520518425,70.84178294500008],[27.534027540000093,70.84593333500003],[27.522308790000096,70.85150788000011],[27.50961347700013,70.86180247600014],[27.500010613000143,70.86640045800006],[27.490489129000053,70.86725495000016],[27.47046959700009,70.86595286699999],[27.4622501960001,70.86981842700008],[27.45801842500006,70.87531159100011],[27.45639082100004,70.87807851800007],[27.45346113400012,70.87933991100009],[27.44467207100007,70.88068268400013],[27.40967858200005,70.87645091400005],[27.391286655000016,70.87636953300016],[27.383311394000145,70.88377513200004],[27.386892123000052,70.89166901200012],[27.404307488000114,70.90619538000006],[27.41049238400006,70.91425202],[27.394053582000083,70.90973541900006],[27.369639519000117,70.89321523600016],[27.355804884000122,70.8869082700001],[27.335134311000104,70.88401927299999],[27.190928582000083,70.89496491100006],[27.153981967000046,70.90570709800006],[27.12256920700011,70.92169830900015],[27.13379967500009,70.95001862200003],[27.148692254000053,70.96385325700011],[27.17115319100014,70.96686432500003],[27.3489689460001,70.94212474200005],[27.341970248000024,70.95270416900009],[27.331309441000084,70.96076080900004],[27.307871941000112,70.97260163],[27.289561394000142,70.97919342700004],[27.24830162900011,70.98908112200017],[27.232432488000086,70.996771552],[27.221690300000148,71.01894765800007],[27.253184441000087,71.02631256700005],[27.4764103520001,71.00665924700012],[27.500010613000143,70.99363841400013],[27.508555535000085,70.96857330900004],[27.529307488000082,70.95547109600015],[27.55420983200011,70.955267645],[27.57553144600007,70.96881745000015],[27.566579623000052,70.981634833],[27.564300977000073,70.99445221600001],[27.569509311000072,71.00653717700014],[27.582530144000142,71.01727936400005],[27.546641472000147,71.02269114800002],[27.5330509770001,71.028753973],[27.527842644000117,71.04144928600006],[27.526052280000044,71.05707428600014],[27.523285352000073,71.06647370000013],[27.524587436000072,71.0744082700001],[27.534027540000093,71.08612702000012],[27.56869550900006,71.09723541900014],[27.610118035000085,71.09292226800015],[27.64234459700012,71.09544505400005],[27.65015709700012,71.12710195500013],[27.715505405000073,71.10423411700012]]],[[[25.677012566000144,71.160589911],[25.68409264400009,71.14472077000006],[25.807383660000085,71.15444570500001],[25.801768425000063,71.141587632],[25.783946160000085,71.11220937700007],[25.783702019000145,71.10293203300013],[25.805674675000148,71.09585195500007],[25.85914147200009,71.11334870000003],[25.88306725400014,71.11347077],[25.87964928500014,71.09682851800012],[25.897227410000085,71.09857819200012],[25.921234571000127,71.10675690300006],[25.937022332000083,71.10968659100017],[25.960459832000137,71.10748932500016],[26.006358269000113,71.12518952000009],[26.029795769000085,71.11652252800009],[26.03370201900009,71.08722565300015],[25.99097741000008,71.06704336100013],[25.932871941000112,71.05540599200013],[25.889821811000104,71.0519880230001],[25.90650475400014,71.04450104400014],[25.925140821000127,71.03969961100016],[25.94483483200005,71.03754303600006],[25.96436608200014,71.03774648600002],[25.96436608200014,71.01727936400005],[25.93962649800008,71.01080963700007],[25.930186394000145,71.01105377800008],[25.9563908210001,71.00202057500007],[25.991221550000116,70.99892812700001],[26.026215040000125,71.00014883000001],[26.053721550000148,71.00421784100017],[26.074554884000037,71.01227448100012],[26.115733269000113,71.03343333500011],[26.135996941000112,71.03774648600002],[26.185231967000018,71.0498721370001],[26.208506707000137,71.04962799700014],[26.218109571000127,71.03156159100014],[26.206553582000083,71.01325104400009],[26.179942254000135,71.00267161700013],[26.113536004000107,70.99534739800012],[26.10572350400011,70.99164459800008],[26.088145379000082,70.97968170800006],[26.072601759000094,70.97516510600009],[25.968597852000073,70.977728583],[25.94825280000006,70.97492096600014],[25.923675977000073,70.96576569200006],[25.900238477000073,70.96133047100001],[25.800547722000147,70.962591864],[25.752940300000063,70.97650788],[25.731130405000016,70.97540924700006],[25.718516472000115,70.95579661699999],[25.744151238000114,70.950181382],[25.7532658210001,70.94961172100001],[25.7532658210001,70.94212474200005],[25.66814212300008,70.94537995000009],[25.600271030000098,70.93207428600006],[25.553396030000044,70.92788320500013],[25.533539259000037,70.93183014500012],[25.518565300000116,70.94025299700017],[25.49195397200006,70.959173895],[25.45671634200002,70.97272370000013],[25.41627037900008,70.98309967700006],[25.53809655000009,71.00336334800006],[25.56080162900014,71.01727936400005],[25.490570509000094,71.02195872600008],[25.471527540000096,71.02777741100012],[25.45435631600006,71.02997467700011],[25.32553144600007,71.00739166900006],[25.306976759000065,71.01105377800008],[25.294200066000116,71.02033112200014],[25.29249108200011,71.02814362200003],[25.294444207000083,71.036037502],[25.293304884000033,71.045152085],[25.347992384000094,71.06565989800005],[25.3138126960001,71.07245514500009],[25.332041863000086,71.07933177299999],[25.35515384200002,71.08348216400013],[25.39918053500014,71.08612702000012],[25.4192814460001,71.08234284100008],[25.43921959700006,71.07550690300017],[25.45883222700013,71.072007554],[25.478363477000098,71.07868073100003],[25.472911004000082,71.08209870000015],[25.4642033210001,71.08954498900012],[25.457286004000082,71.09296295800014],[25.471690300000144,71.1026065120001],[25.48902428500014,71.10175202],[25.52613366000014,71.09296295800014],[25.553884311000047,71.09259674700003],[25.560313347000147,71.09003327000003],[25.57398522200009,71.08246491100006],[25.59205162900011,71.07811107],[25.63477623800011,71.08038971600013],[25.708669467000103,71.06207916900009],[25.718516472000115,71.0519880230001],[25.713226759000065,71.0707054710001],[25.70093834700009,71.08392975500011],[25.68344160200004,71.0932070980001],[25.553396030000044,71.14077383000007],[25.565277540000096,71.15216705900004],[25.607106967000107,71.145005601],[25.625743035000113,71.1510277360001],[25.63843834700006,71.15973541900009],[25.653493686000072,71.16474030200011],[25.66732832100007,71.1652692730001],[25.677012566000144,71.160589911]]],[[[-7.962554490999878,71.17487213700018],[-7.938465949999852,71.15656159100003],[-7.939320441999938,71.13641998900009],[-7.957875128999944,71.12010325700005],[-7.986805792999859,71.11347077],[-8.008900519999939,71.10521067900002],[-8.003000454999892,71.08576080900009],[-7.98818925699993,71.06313711100013],[-7.98302161399991,71.045152085],[-8.005970831999917,71.03253815300002],[-8.401356574999909,70.962591864],[-8.424956834999932,70.96515534100003],[-8.471994594999956,70.97553131700003],[-8.497547980999855,70.97626373900015],[-8.619740363999881,70.95807526200015],[-8.658111131999902,70.94489166900011],[-8.697417772999898,70.93813711100007],[-8.86034094999988,70.86298248900005],[-8.876942511999856,70.85773346600017],[-8.912180141999897,70.85211823100016],[-8.928944464999915,70.84593333500003],[-8.937570766999926,70.8397891300001],[-8.954253709999875,70.8243675800001],[-8.96312415299991,70.81801992400005],[-8.986561652999882,70.81077708500013],[-9.02013098899991,70.80670807500009],[-9.054351365999906,70.80703359600001],[-9.079741990999906,70.81244538000006],[-9.07530676999994,70.818793036],[-9.070301886999914,70.8282738300001],[-9.066070115999878,70.83226146000008],[-9.109730597999883,70.86107005400002],[-9.11742102799991,70.87490469],[-9.08657792899993,70.88068268400013],[-9.05846106699994,70.88080475500014],[-9.04662024599989,70.88251373900013],[-9.031971808999884,70.8869082700001],[-8.995716925999943,70.90521881700008],[-8.964670376999948,70.91046784100017],[-8.953521287999932,70.91620514500015],[-8.944813605999855,70.9228376320001],[-8.936390753999888,70.92788320500013],[-8.916330532999922,70.932806708],[-8.832997199999909,70.93732330900015],[-8.79043535099987,70.94562409100003],[-8.744618292999888,70.962591864],[-8.73859615799995,70.96637604400003],[-8.734852667999917,70.97052643400015],[-8.732736782999922,70.974310614],[-8.730946417999945,70.97626373900015],[-8.69273841099988,70.9859886740001],[-8.572661912999877,70.996771552],[-8.566232876999948,71.00039297100007],[-8.56224524599989,71.00511302300008],[-8.557606574999852,71.00922272300004],[-8.548817511999884,71.01105377800008],[-8.526966925999943,71.01166413000006],[-8.516835089999887,71.01447174700009],[-8.507435675999943,71.02069733300006],[-8.47642981699994,71.0519880230001],[-8.468006964999887,71.05784739800008],[-8.451405402999939,71.06655508000013],[-8.443023240999876,71.07245514500009],[-8.397775844999927,71.11371491100012],[-8.37515214799987,71.12726471600007],[-8.325672980999911,71.14760976800008],[-8.18736731699994,71.15424225500006],[-8.175404425999915,71.15753815300009],[-8.153920050999886,71.17186107],[-8.14745032499988,71.17487213700018],[-8.123117641999897,71.17792389500006],[-8.04564368399994,71.17487213700018],[-8.003651495999861,71.1803653020001],[-7.983550584999903,71.18016185100005],[-7.962554490999878,71.17487213700018]]],[[[19.160329623000052,74.52602773600013],[19.250824415000125,74.4894880230001],[19.286387566000084,74.48436107],[19.297373894000145,74.48110586100013],[19.29444420700011,74.47361888200008],[19.279958530000073,74.46084219000012],[19.278330925000148,74.45595937700014],[19.284515821000127,74.448431708],[19.28337649800008,74.44403717700011],[19.276540561000072,74.43927643400012],[19.262461785000113,74.43475983300006],[19.236827019000145,74.418646552],[19.235036655000073,74.41351959800008],[19.234873894000117,74.39907461100003],[19.18775475400011,74.37579987200012],[19.19507897200012,74.36896393400009],[19.167735222000147,74.36090729400014],[19.073741082000083,74.347357489],[19.04704837300008,74.351263739],[19.03467858200014,74.36627838700012],[19.026621941000087,74.37299225500006],[19.016368035000085,74.37579987200012],[19.002614780000073,74.377142645],[18.96306399800011,74.38613515800002],[18.95093834700012,74.392279364],[18.93189537900011,74.405259507],[18.865489129000082,74.43036530199998],[18.813324415000068,74.46841054900007],[18.789805535000113,74.47821686400003],[18.82048587300011,74.50405508000013],[18.87484785200013,74.51618073100003],[18.9816186860001,74.51976146],[19.026621941000087,74.512844143],[19.11475670700011,74.52728913000006],[19.160329623000052,74.52602773600013]]],[[[25.002289259000094,76.43716054900005],[24.979258660000113,76.43646881700012],[24.95679772200012,76.43878815300009],[24.943369988000114,76.44513580900012],[24.947276238000114,76.46019114800013],[24.967784050000063,76.47821686400006],[24.993418816000144,76.49339427300005],[25.032237175000148,76.50511302300013],[25.09473717500009,76.54413483300003],[25.35450280000009,76.63690827000012],[25.423106316000087,76.68414948100009],[25.41627037900008,76.69159577000009],[25.431488477000073,76.69432200700005],[25.462087436000076,76.70722077000005],[25.478363477000098,76.71206289300014],[25.504567905000044,76.71430084800012],[25.580821160000113,76.71206289300014],[25.580821160000113,76.698431708],[25.56080162900014,76.69599030200006],[25.391286655000073,76.62030670800009],[25.289724155000073,76.59406159100014],[25.241384311000047,76.57428620000002],[25.217621290000068,76.56806061400005],[25.21941165500004,76.56452057500009],[25.220388217000107,76.56167226800015],[25.22169030000012,76.55874258000013],[25.225108269000117,76.55499909100008],[25.181162957000083,76.53375885600012],[25.047211134000094,76.49803294499999],[25.01905358200011,76.46873607000005],[25.023448113000086,76.45795319200015],[25.030772332000083,76.45156484600012],[25.031911655000044,76.44647858300003],[25.017588738000143,76.43964264500008],[25.002289259000094,76.43716054900005]]],[[[23.327810092000107,78.20014069200006],[23.42066491000011,78.16836172100012],[23.47046959700009,78.15827057500015],[23.47046959700009,78.15143463700002],[23.396494988000114,78.13934967700014],[23.374278191000144,78.13092682500009],[23.37525475400011,78.11286041900017],[23.350108269000145,78.104925848],[23.14161217500009,78.09686920800006],[23.105479363000143,78.088120835],[23.071299675000148,78.06622955900013],[23.055023634000122,78.03729889500015],[23.073090040000068,78.00747304900015],[23.1204533210001,77.98590729400014],[23.36890709700009,77.95636627800017],[23.395030144000145,77.94912344000005],[23.47046959700009,77.91803620000013],[23.56609134200005,77.8976097680001],[23.61247806100002,77.87372467700011],[23.62826582100007,77.870306708],[23.94166100400014,77.85211823100012],[23.99561608200014,77.85944245000012],[24.03589928500014,77.88019440300012],[24.073415561000047,77.89411041900007],[24.238291863000082,77.8976097680001],[24.259450717000107,77.9018415390001],[24.28248131600006,77.90936920800004],[24.304942254000082,77.911851304],[24.323903842000078,77.90131256700012],[24.335215691000055,77.89069245000016],[24.34880618600002,77.88239166900011],[24.381602410000113,77.870306708],[24.406504754000082,77.865179755],[24.4247646850001,77.82593585100012],[24.335789720000037,77.798578579],[24.24686617100005,77.75791328200002],[24.228369960000094,77.71685052100013],[24.152842094000107,77.68409245300016],[24.094086134000065,77.65037669500002],[24.076833530000073,77.64061107000005],[24.063731316000084,77.63068268400015],[24.045420769000113,77.620550848],[24.026621941000087,77.612738348],[23.994965040000093,77.60529205900004],[23.98292076900009,77.59487539300011],[23.963877800000088,77.56858958500011],[23.918142123000077,77.52448151200004],[23.89283287900014,77.50836823100015],[23.73487389400009,77.45538971600003],[23.540293816000116,77.42438385600009],[23.39087975400011,77.38011302300005],[23.354340040000068,77.376857815],[23.268472086000116,77.32659352799999],[23.289058295000075,77.2908507820001],[23.234540608000145,77.26368345100013],[22.9222243830001,77.25628812500004],[22.70394650500012,77.23728022200011],[22.610062809000055,77.24832127400008],[22.475108269000145,77.26215241100014],[22.449473504000082,77.26072825700008],[22.429698113000143,77.26373932500017],[22.42042076900009,77.26886627800009],[22.413584832000083,77.27582428600007],[22.401621941000144,77.28400299700009],[22.39087975400014,77.30394114800008],[22.426280144000145,77.31928131700012],[22.504649285000113,77.33588288000009],[22.49244225400011,77.3643252620001],[22.490977410000056,77.3734398460001],[22.484141472000147,77.382025458],[22.4510197270001,77.39447663000011],[22.4256291020001,77.40961334800004],[22.414073113000143,77.41449616100009],[22.410899285000085,77.42031484600012],[22.42212975400011,77.43146393400015],[22.438812696000127,77.43891022300012],[22.566579623000077,77.46662018400012],[22.602793816000087,77.48639557500015],[22.67530358200011,77.4934756530001],[22.733083530000044,77.51805247600011],[22.761403842000078,77.53620026200012],[22.778330925000148,77.55491771],[22.66781660200013,77.551459052],[22.60914147200012,77.53937409100008],[22.579112175000148,77.51337311399999],[22.553721550000148,77.51862213700018],[22.559418165000125,77.53001536700005],[22.581797722000143,77.54181549700003],[22.606455925000148,77.54816315300015],[22.56592858200011,77.56732819200012],[22.507334832000083,77.57705312700007],[22.446625196000124,77.57782623900009],[22.291758660000085,77.55491771],[22.282237175000063,77.55036041900014],[22.243337436000076,77.52020905200011],[22.191742384000122,77.50413646000014],[21.778737826500134,77.48741282749997],[21.36573326900009,77.47068919499998],[21.316905144000085,77.45791250200013],[21.092539910000085,77.43915436400007],[21.038259311000076,77.44440338700015],[20.92172285200013,77.44236888200014],[20.893890821000067,77.44574616100006],[20.86548912900014,77.45620351800012],[20.863291863000143,77.46686432500015],[20.87842858200014,77.47711823100009],[20.929860873000052,77.50161367400013],[20.919118686000047,77.50897858300011],[20.889008009000094,77.51552969],[20.859873894000145,77.52765534100008],[20.880869988000082,77.53449127800012],[20.86963951900009,77.53945547100007],[20.85759524800008,77.54116445500007],[20.831797722000147,77.54071686400009],[20.845225457000137,77.5460879580001],[20.858653191000116,77.54816315300015],[20.887054884000065,77.54816315300015],[20.87842858200014,77.56342194200012],[20.87354576900009,77.56858958500011],[21.189626498000024,77.60171133000016],[21.216075066000116,77.60956452000015],[21.236501498000077,77.62303294500012],[21.236989780000073,77.63328685100005],[21.2303166020001,77.64378489800009],[21.22917728000007,77.65802643400004],[21.233246290000125,77.66242096600011],[21.2467554050001,77.66742584800015],[21.25025475400011,77.671616929],[21.250336134000094,77.67926666900011],[21.24789472700013,77.68244049700017],[21.24488366000014,77.68439362200003],[21.243418816000087,77.688421942],[21.24512780000009,77.69977448100015],[21.2493595710001,77.71458567900014],[21.25489342500012,77.72752513200014],[21.260752800000148,77.73309967700006],[21.328868035000113,77.75731028900005],[21.362803582000137,77.77553945500013],[21.4127710300001,77.78485748900009],[21.435231967000078,77.795152085],[21.43775475400011,77.82037995000015],[21.478851759000094,77.83685944200015],[21.55811608200014,77.85663483300006],[21.566254102000073,77.87213776200018],[21.556488477000126,77.879828192],[21.542491082000083,77.88617584800012],[21.53760826900009,77.8976097680001],[21.556325717000078,77.90704987200009],[21.66179446700005,77.91803620000013],[21.651377800000148,77.92885976800015],[21.637543165000068,77.93866608300009],[21.622325066000087,77.9445661480001],[21.607920769000117,77.94403717700014],[21.582286004000135,77.93976471600003],[21.36817467500012,77.96503327000009],[21.31625410200013,77.98305898600002],[21.24350019600007,77.99213288000003],[20.880137566000144,78.08539459800012],[20.876963738000086,78.09857819200006],[20.90056399800011,78.11115143400015],[20.99219811300011,78.13861725500003],[21.344493035000085,78.17485179249998],[21.69678795700014,78.21108633000013],[22.046519402000115,78.20547109550007],[22.39625084700009,78.19985586100013],[22.492198113000086,78.21605052299998],[22.534190300000148,78.23021067900011],[22.966075066000116,78.25629303600009],[23.060801629000082,78.235052802],[23.133148634000065,78.23183828300012],[23.327810092000107,78.20014069200006]]],[[[21.476084832000137,78.58657461100013],[21.499359571000042,78.56806061400012],[21.55225670700011,78.57269928600014],[21.646820509000122,78.597113348],[21.674327019000145,78.60053131699999],[21.793142123000052,78.598781643],[21.805674675000148,78.597113348],[21.811045769000113,78.59284088700018],[21.813731316000087,78.58600495000017],[21.817393425000148,78.57949453300007],[21.82618248800011,78.57599518400018],[21.846853061000044,78.57868073100013],[21.862640821000067,78.58478424700013],[21.87842858200011,78.58567942900005],[21.916514519000117,78.56244538000011],[21.939300977000126,78.56069570500013],[21.98389733200011,78.56915924700017],[22.044606967000078,78.59381745000013],[22.064789259000094,78.597113348],[22.084727410000085,78.59495677300002],[22.091970248000106,78.58926015800002],[22.094086134000122,78.58038971600016],[22.09937584700009,78.56915924700017],[22.132578972000115,78.52724844000006],[22.155609571000067,78.51264069200015],[22.20679772200012,78.50482819200006],[22.223887566000087,78.49835846600014],[22.23536217500012,78.48786041900009],[22.237071160000113,78.47357819200009],[22.23064212300011,78.46417877800015],[22.206390821000127,78.44867584800015],[22.19556725400014,78.43886953300002],[22.204356316000087,78.42845286700013],[22.215668165000064,78.42153554900013],[22.225433790000125,78.41388580900009],[22.229746941000116,78.40155670800006],[22.22632897200012,78.38092682500003],[22.229746941000116,78.37457916900009],[22.243907097000143,78.3668480490001],[22.241384311000047,78.35565827000008],[22.23194420700011,78.33295319200012],[22.228282097000147,78.307562567],[22.243337436000076,78.28864166900009],[22.237071160000113,78.28180573100015],[22.27125084700012,78.26752350500009],[21.86790340800013,78.24513038433334],[21.464555969000028,78.22273726366667],[21.061208530000044,78.20034414300012],[21.010590040000068,78.20673248900015],[21.015635613000082,78.20986562700001],[21.024261915000096,78.21914297100007],[20.797699415000125,78.22650788000006],[20.76710045700011,78.221584377],[20.737559441000144,78.2128766950001],[20.731455925000148,78.20929596600014],[20.72706139400009,78.20490143400015],[20.722504102000126,78.19920482],[20.699554884000037,78.19293854400003],[20.673024936000072,78.19033437700013],[20.647227410000138,78.19403717700008],[20.62769616000008,78.20673248900015],[20.67408287900014,78.2142601580001],[20.687836134000065,78.21914297100007],[20.667328321000095,78.21914297100007],[20.667328321000095,78.22650788000006],[20.71583092500009,78.23334381700009],[20.71314537900011,78.25336334800015],[20.736338738000114,78.26068756700006],[20.768239780000044,78.26455312700016],[20.791514519000145,78.274359442],[20.780609571000095,78.28017812700013],[20.762950066000087,78.29230377800003],[20.74740644600007,78.29881419500012],[20.7252710300001,78.30438873900015],[20.468760613000143,78.315334377],[20.483083530000044,78.32770416900014],[20.507823113000114,78.33637116100014],[20.53541100400014,78.34149811400006],[20.557871941000116,78.34320709800006],[20.648448113000086,78.34015534100017],[20.674571160000113,78.34662506700006],[20.685069207000083,78.35797760600003],[20.681895379000135,78.37124258000007],[20.67164147200009,78.383246161],[20.66114342500012,78.39105866100009],[20.636973504000107,78.3991559920001],[20.583018425000116,78.40448639500009],[20.455577019000117,78.44025299700009],[20.153575066000087,78.47540924700014],[20.162119988000114,78.48163483300011],[20.171153191000116,78.49066803600012],[20.18311608200014,78.49534739800005],[20.527272983000103,78.52598704650002],[20.871429884000065,78.55662669500008],[20.953135613000143,78.54572174700007],[21.020355665000096,78.54474518400012],[21.08423912900011,78.55573151200018],[21.12671959700009,78.58344147300006],[21.12183678500011,78.58490631700012],[21.112559441000144,78.58885325700011],[21.10621178500014,78.58958567900014],[21.10621178500014,78.597113348],[21.178233269000145,78.62323639500015],[21.30396569100006,78.62775299700012],[21.423106316000087,78.614406643],[21.476084832000137,78.58657461100013]]],[[[26.745778842000103,78.63434479400009],[26.737559441000116,78.6264509140001],[26.719248894000145,78.63060130400005],[26.691172722000147,78.644232489],[26.69418379000004,78.64614492400015],[26.69711347700007,78.65265534100014],[26.698741082000083,78.66034577000006],[26.69800866000014,78.6653506530001],[26.686859571000127,78.66966380400011],[26.636241082000137,78.67157623900006],[26.465993686000044,78.70945872600002],[26.45866946700005,78.73248932500017],[26.44092858200014,78.74860260600002],[26.396332227000073,78.77521393400018],[26.441905144000117,78.80735911700005],[26.49724368600002,78.81557851800012],[26.61548912900014,78.80878327000003],[26.634043816000144,78.79279205900012],[26.650401238000082,78.78237539300012],[26.745778842000103,78.74725983300006],[26.77369225400014,78.72679271],[26.833994988000086,78.71124909100008],[27.02076256600006,78.69891998900015],[26.967946811000076,78.68911367400001],[26.947276238000086,78.67829010600012],[26.951914910000085,78.65790436400012],[26.90984134200005,78.65021393400012],[26.774668816000116,78.64069245000012],[26.745778842000103,78.63434479400009]]],[[[11.28744550900012,78.55194733300006],[11.259043816000116,78.52822500200013],[11.35531660200013,78.54608795800003],[11.447113477000073,78.54804108300006],[11.463877800000091,78.54246653900003],[11.471202019000117,78.53522370000003],[11.482920769000089,78.51528554900013],[11.49170983200014,78.50706614800013],[11.507090691000087,78.50242747600011],[11.541758660000085,78.49884674700006],[11.56853274800008,78.4835472680001],[11.75928795700014,78.44562409100013],[11.872243686000104,78.44794342700011],[11.900157097000118,78.43573639500015],[11.900645379000109,78.42918528900007],[11.880625847000147,78.41852448100003],[11.87598717500012,78.4108747420001],[11.880137566000059,78.40232982],[11.889170769000089,78.39508698100015],[12.050303582000083,78.31037018400015],[12.10132897200009,78.29539622600011],[12.096934441000087,78.27358633000007],[12.112478061000104,78.26178620000009],[12.13266035200013,78.25226471600011],[12.142832879000082,78.23704661700013],[12.147797071000127,78.22744375200016],[12.157399936000104,78.21881745000015],[12.162852410000141,78.21088288000009],[12.156097852000102,78.20294830900012],[12.140472852000128,78.19920482],[12.119639519000145,78.19940827000012],[12.098968946000127,78.20307038],[12.051931186000104,78.22247955900009],[11.923675977000102,78.22650788000006],[11.892263217000078,78.23358795800011],[11.865244988000114,78.24506256700006],[11.813812696000127,78.274359442],[11.849864129000082,78.29311758000016],[11.855479363000086,78.29881419500012],[11.848399285000113,78.30776601800007],[11.832041863000086,78.31216054900013],[11.80095462300008,78.315334377],[11.623545769000145,78.36603424700017],[11.600108269000087,78.38263580900004],[11.587575717000078,78.38930898600009],[11.574229363000143,78.39427317900014],[11.455821160000056,78.41583893400015],[11.410166863000114,78.43414948100012],[11.343760613000086,78.44912344000015],[11.3053491550001,78.45221588700004],[11.16391035200013,78.43622467700014],[11.121836785000141,78.43886953300002],[11.085215691000114,78.454494533],[11.039317254000139,78.484808661],[11.00367272200009,78.51959870000003],[10.998301629000139,78.548732815],[10.968516472000147,78.55532461100007],[10.950450066000114,78.57037995000009],[10.935883009000094,78.58991120000015],[10.91635175900012,78.61017487200017],[10.885996941000144,78.62978750200013],[10.854258660000085,78.64411041900003],[10.78663170700014,78.6653506530001],[10.80095462300011,78.681341864],[10.807139519000089,78.68585846600014],[10.78150475400011,78.6887067730001],[10.651540561000104,78.72980377800009],[10.635264519000145,78.74046458500011],[10.576833530000073,78.75828685100002],[10.548594597000118,78.7711856140001],[10.525401238000086,78.78827545800006],[10.545258009000092,78.80390045800014],[10.56397545700014,78.81093984600001],[10.573578321000127,78.82046133000001],[10.566905144000089,78.843491929],[10.55241946700005,78.86041901200015],[10.531260613000114,78.873724677],[10.484385613000084,78.89069245000015],[10.516123894000115,78.90648021000003],[10.560231967000021,78.90912506699999],[10.843760613000113,78.87889232],[10.999847852000102,78.83417389500012],[11.002289259000122,78.82172272300012],[10.991465691000116,78.79572174700003],[11.031423373000079,78.78310781500015],[11.099131707000112,78.77879466400005],[11.115000847000147,78.77521393400018],[11.132823113000114,78.76679108300011],[11.18384850400011,78.7336286480001],[11.06031334700009,78.69269440300017],[11.122406446000127,78.67560455900004],[11.15381920700014,78.66258372600005],[11.159353061000076,78.64801666900003],[11.162771030000073,78.63202545800011],[11.243825717000021,78.62018463700015],[11.272634311000076,78.61017487200017],[11.257009311000076,78.59955475500014],[11.256358269000117,78.58592357],[11.26734459700009,78.57416413000011],[11.286875847000147,78.56915924700017],[11.298024936000076,78.56395091399997],[11.28744550900012,78.55194733300006]]],[[[29.034841342000046,78.91181061400005],[29.064789259000122,78.90420156500012],[29.438975457000225,78.90497467700006],[29.583994988000057,78.92059967700014],[29.66553795700011,78.92059967700014],[29.70704186300011,78.89813873900012],[29.32911217500006,78.86334870000007],[29.33301842500006,78.85394928600006],[29.3352970710001,78.8503278670001],[29.236501498000198,78.85321686400012],[28.927093946000095,78.89598216400012],[28.888845248000052,78.90912506699999],[28.86963951900009,78.91181061400005],[28.619558139000077,78.89472077050009],[28.369476759000037,78.87763092700008],[28.103282097000143,78.82245514500013],[28.08725019600007,78.82196686400006],[27.84197024800011,78.843491929],[27.860606316000116,78.85008372600005],[28.03060957100007,78.87392812700013],[28.069672071000127,78.88760000200007],[28.105642123000106,78.89500560100005],[28.135996941000087,78.91425202],[28.151133660000085,78.9186058610001],[28.364024285000113,78.92121002800009],[28.40267988400006,78.92951080900018],[28.42872155000003,78.944525458],[28.41863040500007,78.966986395],[28.78891035200007,78.96417877800015],[28.99390709700012,78.93162669499999],[29.034841342000046,78.91181061400005]]],[[[30.220469597000175,78.97321198100015],[30.18425540500007,78.96674225500006],[30.13624108200005,78.96893952000015],[30.092458530000187,78.98200104400003],[30.069590691000116,79.00800202],[30.309255405000016,79.00800202],[30.316416863000057,79.00580475500011],[30.323903842000018,79.00238678600003],[30.33708743600019,78.99433014500006],[30.31137129000015,78.98566315300016],[30.274587436000072,78.98090241100009],[30.20679772200012,78.98004791900017],[30.220469597000175,78.97321198100015]]],[[[20.209483269000145,79.12287018400004],[20.195078972000086,79.11786530199998],[20.46778405000009,79.12579987200014],[20.49610436300011,79.11786530199998],[20.51547285200013,79.11733633000001],[20.57178795700011,79.10358307500009],[20.764008009000122,79.08588288],[20.805918816000116,79.07412344],[20.831797722000147,79.05516185099998],[20.701019727000098,79.02594635600015],[20.498545769000145,79.01788971600001],[20.405935092000107,78.99591705900009],[20.358246290000125,78.99469635600009],[20.3116968110001,79.00214264500006],[20.270762566000087,79.01788971600001],[20.243988477000073,79.02505117400007],[20.12281334700012,79.023138739],[20.067393425000148,79.03351471600011],[20.044200066000116,79.04148997600005],[20.10377037900011,79.05133698100018],[20.135020379000082,79.060695705],[20.13331139400009,79.07318756700012],[20.110362175000088,79.08832428600012],[20.114756707000083,79.09560781500012],[20.130137566000116,79.10272858299999],[20.140391472000147,79.11786530199998],[20.129730665000125,79.11758047100015],[20.119151238000143,79.11847565300006],[20.10889733200014,79.12067291900003],[20.098887566000144,79.12409088700004],[20.188731316000144,79.13165924700009],[20.21558678500014,79.12409088700004],[20.209483269000145,79.12287018400004]]],[[[20.155121290000125,79.36440664300012],[20.17798912900014,79.35342031500006],[20.172699415000068,79.34259674700017],[20.143890821000127,79.33624909100014],[20.109873894000117,79.335150458],[20.088877800000148,79.34003327000006],[20.064626498000077,79.35342031500006],[20.034922722000143,79.35618724200013],[19.701508009000122,79.33698151200018],[19.672536655000016,79.34072500200001],[19.659922722000147,79.34747955900006],[19.66309655000009,79.35907623900006],[19.68116295700011,79.37726471600014],[19.64087975400014,79.39032623900012],[19.626475457000083,79.39158763200014],[19.66773522200012,79.40424225500011],[19.713552280000044,79.40778229400009],[19.804535352000073,79.40521881700009],[19.86622155000009,79.39150625200014],[20.057871941000144,79.37726471600014],[20.155121290000125,79.36440664300012]]],[[[11.016774936000076,79.69025299700003],[11.00570722700013,79.68642812700001],[11.046071811000104,79.68667226800015],[11.064138217000107,79.68089427299999],[11.073985222000116,79.66596100500014],[11.002452019000087,79.6722679710001],[10.98462975400011,79.66937897300015],[10.965668165000096,79.66132233300011],[10.94548587300008,79.65570709800004],[10.92408287900011,79.65241120000016],[10.821543816000144,79.650539455],[10.77947024800008,79.65619538],[10.7526147800001,79.67279694200006],[10.738129102000073,79.68642812700001],[10.84799238400012,79.69326406500012],[10.814952019000089,79.70213450700008],[10.739756707000083,79.70575592700014],[10.710948113000143,79.72117747600008],[10.871755405000044,79.72736237200003],[10.993418816000087,79.70795319200012],[11.032481316000144,79.70693594000006],[11.02295983200014,79.69448476800012],[11.016774936000076,79.69025299700003]]],[[[11.01197350400008,79.74164459800012],[10.984222852000102,79.731390692],[10.717458530000044,79.74164459800012],[10.68376712300005,79.74396393400009],[10.65398196700005,79.75055573100013],[10.645762566000114,79.76113515800002],[10.676768425000148,79.77521393400015],[10.712901238000086,79.78245677299999],[10.86866295700014,79.77944570500007],[11.01197350400008,79.74164459800012]]],[[[16.820078972000147,79.87579987200017],[16.85401451900009,79.870062567],[16.88648522200009,79.87360260600008],[16.912852410000085,79.89252350500011],[16.90219160200013,79.89618561400005],[16.871348504000082,79.91181061400015],[16.864431186000076,79.91913483300006],[16.870127800000148,79.93333567900008],[16.885996941000087,79.94110748900006],[16.964691602000073,79.962591864],[17.269541863000114,79.94554271000013],[17.40015709700009,79.91429271000008],[17.562510613000114,79.89785390800007],[17.593435092000078,79.88076406500012],[17.635996941000116,79.86692942900012],[17.691742384000122,79.85984935100008],[17.899668816000116,79.79564036700012],[17.942149285000085,79.77155182500012],[17.993418816000116,79.76455312700013],[18.030528191000116,79.75486888200008],[18.098399285000113,79.72736237200003],[18.06853274800011,79.69464752800009],[18.016774936000104,79.67837148600007],[17.912771030000073,79.66596100500014],[17.87045332100007,79.65619538],[17.85108483200014,79.64777252800015],[17.815684441000144,79.62323639500012],[17.748871290000096,79.60382721600003],[17.768809441000087,79.59699127800009],[17.73617597700013,79.56696198100015],[17.688975457000055,79.560248114],[17.637054884000094,79.55975983300011],[17.59066816500012,79.54857005400011],[17.673106316000144,79.54242584800012],[17.73145592500012,79.54999420800007],[17.748871290000096,79.54857005400011],[17.765879754000082,79.53896719000012],[17.76929772200009,79.51040273600013],[17.782969597000115,79.49404531500012],[17.764659050000144,79.47736237200007],[17.757660352000073,79.4678408870001],[17.755137566000144,79.45644765800013],[17.758962436000076,79.44904205900004],[17.766937696000127,79.44342682500006],[17.77418053500014,79.43659088700012],[17.775645379000107,79.42572663000013],[17.75367272200009,79.40932851800012],[17.63160241000014,79.39158763200014],[17.653168165000068,79.36937083500008],[17.69353274800011,79.37103913],[17.768809441000087,79.39158763200014],[17.842621290000096,79.395209052],[17.88103274800011,79.40131256700009],[17.93604576900009,79.42987702000009],[17.971527540000068,79.44041575700012],[18.002614780000073,79.45579661699999],[18.01579837300002,79.48403554900013],[18.01921634200005,79.49396393400006],[18.027028842000046,79.50702545800011],[18.043223504000082,79.528753973],[18.06421959700012,79.54857005400011],[18.077321811000104,79.56907786700008],[18.106130405000044,79.58832428600003],[18.1399845710001,79.603989976],[18.176931186000047,79.61603424700009],[18.24195397200009,79.62824127800017],[18.346934441000087,79.62995026200016],[18.400075717000107,79.61131419499999],[18.451426629000107,79.59951406500012],[18.55909264400009,79.58690013200014],[18.727305535000085,79.54352448100018],[18.75562584700012,79.52191803600009],[18.761403842000078,79.51089101800011],[18.770518425000148,79.48468659100007],[18.776133660000085,79.47724030200011],[18.796153191000144,79.46922435100008],[18.837901238000086,79.4599470070001],[18.858164910000085,79.45302969000012],[18.88184655000009,79.44110748900007],[18.876963738000143,79.4391543640001],[18.86109459700012,79.43659088700012],[18.851898634000122,79.42259349200006],[18.859141472000147,79.40924713700014],[18.8763126960001,79.4037946640001],[18.89673912900014,79.40009186400005],[18.913340691000116,79.39158763200014],[18.892751498000077,79.38898346600014],[18.868988477000073,79.38263580900012],[18.848480665000125,79.37221914300012],[18.83765709700012,79.35683828300006],[18.838877800000148,79.34052155200006],[18.84937584700012,79.3304710960001],[18.87916100400011,79.31586334800006],[18.783457879000082,79.27912018400015],[18.62720787900014,79.27228424700014],[18.591807488000114,79.2612165390001],[18.652028842000078,79.24876536699998],[18.844574415000125,79.254380601],[18.932139519000145,79.22772858300006],[18.947520379000107,79.22028229400007],[18.94312584700012,79.20673248900012],[18.915212436000076,79.18121979400001],[18.916758660000113,79.168443101],[18.94507897200006,79.15696849200013],[19.057465040000068,79.15688711100016],[19.09156334700006,79.15094635600002],[19.197927280000073,79.15131256700015],[19.22608483200014,79.15521881700013],[19.246755405000073,79.164496161],[19.26587975400014,79.17576732],[19.289561394000145,79.18549225500013],[19.32252037900011,79.1894391950001],[19.40723717500012,79.18488190300017],[19.420176629000107,79.1837832700001],[19.611989780000044,79.153306382],[19.667165561000076,79.15058014500003],[19.786306186000104,79.16510651200015],[19.838145379000082,79.15131256700015],[19.829763217000046,79.14423248900009],[19.821787957000083,79.14081452000006],[19.813324415000125,79.13849518400012],[19.803721550000148,79.13458893400012],[19.795664910000113,79.12811920800011],[19.79835045700011,79.12396881700006],[19.80567467500012,79.12103913000006],[19.81080162900011,79.11786530199998],[19.81812584700012,79.10639069200015],[19.828949415000125,79.09511953300013],[19.84278405000012,79.08649323100006],[19.92400149800011,79.06411367400013],[19.93433678500014,79.05890534100003],[19.930349155000073,79.04580312700016],[19.91187584700012,79.02728913000014],[19.906423373000077,79.01422760600013],[19.986013217000075,79.01398346600003],[20.010996941000087,79.01972077],[20.03109785200013,79.0209821640001],[20.07691491000014,79.00910065300015],[20.19874108200014,79.00141022300012],[20.450368686000104,78.94635651200016],[20.920624220000093,78.906866766],[21.39087975400014,78.86737702000015],[21.440603061000047,78.85541413000011],[21.46404056100002,78.85301341399999],[21.52214603000007,78.85370514500012],[21.541026238000114,78.84690989799999],[21.545420769000085,78.83405182500015],[21.53532962300011,78.82465241100014],[21.520192905000044,78.81683991100014],[21.510264519000117,78.80878327000003],[21.508474155000044,78.79401276200004],[21.517914259000065,78.78705475500014],[21.53419030000009,78.78261953300007],[21.551931186000072,78.77521393400018],[21.531993035000085,78.760443427],[21.50831139400009,78.747015692],[21.48316491000008,78.73737213700004],[21.43604576900009,78.73041413000004],[21.40609785200013,78.72215403900007],[21.378103061000104,78.71100495000005],[21.360118035000085,78.69891998900015],[21.369151238000086,78.69428131700003],[21.390310092000078,78.67694733300011],[21.394216342000078,78.67157623900006],[21.383311394000113,78.65859609600007],[21.361501498000052,78.655462958],[21.3365991550001,78.65835195500013],[21.268239780000044,78.67426178600013],[21.12671959700009,78.6653506530001],[21.125824415000096,78.64520905200008],[21.098806186000047,78.63979726800012],[21.037364129000082,78.644232489],[21.03785241000014,78.64874909100014],[20.988942905000073,78.65851471600008],[20.940196160000138,78.65790436400012],[20.93018639400006,78.65957265800012],[20.917979363000086,78.66364166900011],[20.906260613000114,78.66913483300011],[20.88697350400008,78.68256256700012],[20.879649285000056,78.68341705900004],[20.871592644000117,78.68085358300011],[20.859873894000145,78.678412177],[20.691416863000114,78.69358958500008],[20.640147332000083,78.67157623900006],[20.625824415000096,78.65558502800015],[20.617523634000122,78.642523505],[20.60523522200006,78.6338565120001],[20.57829837300011,78.63060130400005],[20.50342858200014,78.63060130400005],[20.45948326900009,78.642523505],[20.444834832000083,78.644232489],[20.219574415000125,78.64618561400015],[20.20875084700012,78.63808828300002],[20.18067467500012,78.63092682500017],[20.12598717500009,78.63788483300006],[20.098887566000144,78.63808828300002],[20.051524285000113,78.629584052],[20.031911655000044,78.61981842700014],[20.030528191000087,78.60394928600012],[19.76303144600007,78.6242129580001],[19.674327019000117,78.61017487200017],[19.582774285000085,78.58148834800004],[19.57943769600007,78.57501862200012],[19.584808790000125,78.561712958],[19.602386915000068,78.5470238300001],[19.65837649800011,78.52700429900013],[19.68116295700011,78.51455312700001],[19.337087436000132,78.4907697610001],[18.993011915000068,78.46698639500003],[18.961761915000096,78.45246002800017],[19.0084741550001,78.42877838700015],[19.03126061300011,78.411322333],[19.066416863000086,78.37787506700012],[19.062266472000147,78.36395905200006],[19.050547722000147,78.34320709800006],[19.033213738000082,78.33567942900001],[18.993988477000045,78.32819245000002],[18.9816186860001,78.315334377],[18.99586022200012,78.315334377],[18.985118035000113,78.307603257],[18.96924889400009,78.30206940300016],[18.956390821000067,78.29474518400016],[18.954356316000116,78.28180573100015],[18.965993686000047,78.27407461100015],[19.030039910000113,78.25385163000013],[19.062510613000086,78.24896881700006],[19.078461134000094,78.24258047100015],[19.085215691000144,78.22992584800006],[19.077972852000098,78.22011953300013],[19.061371290000068,78.21010976800007],[19.042816602000045,78.20233795800006],[19.030039910000113,78.19920482],[18.949554884000122,78.19578685100008],[18.926931186000076,78.18903229400006],[18.920583530000044,78.17853424700017],[18.93376712300008,78.16864655200006],[18.99390709700006,78.13959381700009],[19.069183790000068,78.12592194200015],[19.0983179050001,78.10301341400005],[19.06275475400014,78.08685944200009],[18.811208530000044,78.028469143],[18.582855665000093,78.05512116100012],[18.492849155000044,78.04808177300005],[18.406260613000057,78.0211449240001],[18.4264429050001,78.00568268400013],[18.502452019000117,77.98016998900009],[18.476573113000086,77.960638739],[18.441579623000077,77.95213450700005],[18.404144727000073,77.94721100499999],[18.37208092500009,77.9385440120001],[18.37517337300005,77.92462799700002],[18.364512566000116,77.91425202000012],[18.34717858200014,77.90766022300014],[18.330414259000122,77.90497467700008],[18.366465691000087,77.87759023600002],[18.378916863000082,77.870306708],[18.397797071000127,77.86538320500013],[18.41814212300011,77.86269765800014],[18.43620853000004,77.85675690300003],[18.447764519000145,77.84235260600013],[18.43702233200014,77.8241234400001],[18.452972852000073,77.79242584800012],[18.454600457000083,77.77407461100007],[18.445160352000073,77.7562523460001],[18.3533634770001,77.68227773600002],[18.347422722000086,77.66620514500012],[18.36150149800011,77.64061107000005],[18.35328209700012,77.630072333],[18.28272545700014,77.58226146000004],[18.31072024800008,77.55491771],[18.29981530000009,77.52020905200011],[18.24008222700013,77.49510325700014],[18.194102410000053,77.49017975500009],[18.09652754000004,77.50039297100001],[18.03248131600006,77.492580471],[18.012217644000145,77.492621161],[17.99268639400009,77.49599844000012],[17.96029707100007,77.51333242400001],[17.94011478000004,77.51349518400018],[17.813324415000096,77.4934756530001],[17.747325066000144,77.49933502800013],[17.727793816000087,77.4934756530001],[17.73568769600007,77.46686432500015],[17.70484459700009,77.45258209800005],[17.624766472000115,77.44574616100006],[17.6287541020001,77.43549225500011],[17.6365666020001,77.428697007],[17.64698326900009,77.42544179900015],[17.658946160000113,77.425238348],[17.65211022200009,77.41535065300009],[17.64210045700011,77.40949127800006],[17.63038170700011,77.404527085],[17.617930535000113,77.39728424700017],[17.594086134000122,77.36660390800007],[17.57007897200009,77.35293203300013],[17.511485222000143,77.33771393400015],[17.488291863000114,77.32160065300017],[17.495778842000078,77.31537506700012],[17.483246290000068,77.30609772300006],[17.4869897800001,77.296047268],[17.496429884000122,77.28440989799999],[17.501963738000143,77.27069733300006],[17.50049889400009,77.25531647300012],[17.4948022800001,77.248480536],[17.460215691000116,77.233384507],[17.43384850400011,77.21426015800004],[17.423838738000114,77.19428131700015],[17.428558790000125,77.17324453300002],[17.447276238000086,77.150864976],[17.430430535000085,77.13654205900012],[17.39014733200011,77.12474192900014],[17.371592644000113,77.11615631700012],[17.36654707100007,77.11107005400011],[17.364593946000127,77.10553620000009],[17.364593946000127,77.09223053600006],[17.338552280000073,77.0807966170001],[17.330577019000117,77.07514069200012],[17.34205162900014,77.07099030200008],[17.34734134200002,77.06443919500002],[17.346039259000122,77.05634186400005],[17.33741295700011,77.04726797100007],[17.321950717000107,77.04352448100003],[17.09717858200011,77.05467357000005],[17.11345462300005,77.03864166900017],[17.207041863000082,77.01707591400007],[17.26514733200014,76.99412669500006],[17.323741082000083,76.97894928600009],[17.287445509000094,76.95294830900009],[17.088715040000068,76.87417226800012],[17.055918816000055,76.85382721600006],[17.062510613000143,76.83559804900015],[16.97982832100007,76.82526276200007],[16.93572024800008,76.81476471600017],[16.919118686000047,76.793931382],[16.942393425000148,76.78025950700005],[17.082041863000114,76.76536692900011],[17.136078321000127,76.751166083],[17.159027540000096,76.73720937700013],[17.19190514400009,76.724798895],[17.20020592500009,76.71889883000016],[17.192067905000073,76.69684479400017],[17.160166863000143,76.68447500200013],[17.09034264400009,76.67108795800011],[17.098887566000116,76.65546295800013],[17.104014519000145,76.65062083500004],[17.0760197270001,76.64158763200005],[17.01124108200011,76.634466864],[16.9948022800001,76.61644114800008],[17.00342858200011,76.60635000200001],[16.992198113000114,76.60004303600006],[16.90788821700002,76.59027741100012],[16.863536004000082,76.576646226],[16.80958092500009,76.56683991100006],[16.590668165000125,76.57802969000006],[16.564789259000122,76.58331940300002],[16.559336785000085,76.59227122600008],[16.563731316000087,76.60667552300012],[16.546397332000083,76.6107852230001],[16.500743035000138,76.60960521000005],[16.453868035000085,76.62042877800015],[16.430918816000116,76.62238190300008],[16.405772332000108,76.61644114800008],[16.40251712300008,76.61204661699999],[16.401052280000016,76.60516998900009],[16.398448113000114,76.59882233300006],[16.392100457000083,76.59601471600011],[16.382497592000107,76.59520091399999],[16.37484785200007,76.59267812700006],[16.368907097000147,76.58828359600008],[16.36475670700011,76.581732489],[16.36353600400011,76.57371653900006],[16.343760613000086,76.57241445500016],[16.31714928500014,76.57929108300009],[16.295909050000148,76.59601471600011],[16.305837436000047,76.602484442],[16.336761915000096,76.61644114800008],[16.325856967000107,76.62433502800015],[16.32439212300005,76.634466864],[16.329112175000148,76.64590078300016],[16.336761915000096,76.657416083],[16.323985222000147,76.65794505400008],[16.31153405000012,76.66111888200014],[16.289073113000143,76.67108795800011],[16.300059441000087,76.69061920800003],[16.297536655000073,76.701808986],[16.284027540000096,76.707912502],[16.177419467000075,76.72321198100015],[16.12094160200013,76.73859284100011],[16.000824415000125,76.74848053600012],[15.94157962300005,76.760687567],[15.881114129000137,76.79401276200018],[15.68148847700013,76.85154857000008],[15.501475457000112,76.87653229400007],[15.52751712300008,76.90631745000009],[15.578461134000092,76.91958242400004],[15.726817254000137,76.93024323100015],[15.740977410000083,76.93520742400001],[15.77442467500012,76.95229726800015],[15.803965691000087,76.95453522300012],[15.861989780000075,76.94855377800012],[15.891774936000076,76.95229726800015],[15.94174238400012,76.96430084800005],[16.048675977000073,76.97744375200013],[16.187754754000082,76.974514065],[16.214854363000114,76.96771881700009],[16.230153842000078,76.96124909100017],[16.238047722000147,76.95408763200014],[16.235606316000116,76.94651927299999],[16.2200626960001,76.938625393],[16.24105879000004,76.93260325700011],[16.32992597700007,76.94481028899999],[16.317556186000047,76.97093333500014],[16.328868035000113,76.98285553600009],[16.3561304050001,76.98602936400015],[16.467621290000125,76.98240794499999],[16.507578972000147,76.98602936400015],[16.528575066000116,77.00006745000009],[16.482188347000147,77.00722890800013],[16.316172722000143,77.00413646000005],[16.27955162900014,76.99469635600003],[16.2576603520001,76.99262116100012],[16.243337436000104,76.99510325700014],[16.199717644000117,77.01365794500003],[16.16187584700006,77.01935455900004],[16.125010613000114,77.02098216400003],[16.091481967000078,77.02728913],[16.0631616550001,77.04726797100007],[16.06218509200005,77.05182526200012],[16.06421959700006,77.06443919500002],[16.0631616550001,77.06899648600013],[16.058604363000086,77.07249583500014],[16.049571160000138,77.07587311400013],[16.045420769000117,77.07892487200013],[16.02898196700002,77.085150458],[16.003265821000067,77.085150458],[15.977305535000085,77.08112213700004],[15.959483269000115,77.07514069200012],[15.958181186000104,77.06167226800012],[15.883636915000066,77.06989166900003],[15.857676629000082,77.06899648600013],[15.85206139400006,77.05341217700006],[15.86866295700011,77.040228583],[15.911794467000048,77.02057526200005],[15.886566602000073,77.01557038000003],[15.809336785000141,77.01365794500003],[15.740896030000101,77.00104401200015],[15.71973717500009,77.00169505400011],[15.689952019000087,77.006537177],[15.345713738000143,77.00853099200013],[15.299001498000052,77.01829661699999],[15.238536004000139,77.02374909100011],[15.194509311000047,77.03302643400015],[15.15267988400012,77.04824453300013],[15.123383009000094,77.06899648600013],[15.138031446000099,77.07196686400006],[15.143321160000085,77.07880280200008],[15.138682488000143,77.08576080900015],[15.124034050000148,77.08881256700006],[15.085459832000081,77.08759186400015],[15.066172722000147,77.08934153900013],[15.04900149800011,77.09564850500009],[15.061208530000101,77.10834381700012],[15.067718946000099,77.11286041900009],[15.07553144600007,77.11615631700012],[15.040212436000049,77.13475169500013],[14.610118035000083,77.185003973],[14.47299238400012,77.17816803600009],[14.447764519000144,77.18138255400012],[14.398285352000102,77.19550202000006],[14.373708530000103,77.19867584800012],[14.322032097000147,77.2389997420001],[14.315277540000125,77.24323151200012],[14.310883009000122,77.2438011740001],[14.308604363000143,77.24640534100008],[14.307790561000047,77.25702545800011],[14.309743686000104,77.26162344000006],[14.322032097000147,77.28058502800017],[14.157969597000118,77.29425690300012],[14.138845248000052,77.30170319200009],[14.138438347000147,77.31858958500008],[14.149587436000076,77.337062893],[14.164398634000122,77.34886302300008],[13.998383009000065,77.39911530200014],[13.973806186000047,77.40985748900006],[13.958994988000086,77.425238348],[13.964854363000113,77.4278832050001],[13.979991082000112,77.43829987200017],[13.974457227000102,77.44090403899999],[13.970713738000143,77.4433047550001],[13.966156446000099,77.44505442900011],[13.958994988000086,77.44574616100006],[13.958994988000086,77.45254140800007],[14.032725457000112,77.44721100500011],[14.054535352000073,77.45254140800007],[14.023203972000118,77.47370026200018],[13.95248457100007,77.48822663000011],[13.917979363000143,77.49970123900006],[13.92212975400011,77.50885651200007],[13.921234571000099,77.5177269550001],[13.916840040000125,77.52619049700003],[13.910655144000145,77.53449127800012],[13.952403191000087,77.53856028899999],[14.075694207000055,77.56858958500011],[14.439952019000147,77.58608633000007],[14.521494988000086,77.57314687700007],[14.59587649800008,77.53449127800012],[14.582774285000113,77.52309804900015],[14.564789259000063,77.51439036700008],[14.545258009000092,77.50897858300011],[14.52751712300011,77.50714752800006],[14.547618035000141,77.49249909100003],[14.583181186000104,77.491400458],[14.6510522800001,77.49970123900006],[14.71111087300011,77.49445221600008],[14.738942905000071,77.49762604400014],[14.760915561000076,77.51337311399999],[14.760915561000076,77.53758372600002],[14.764903191000144,77.54584381700009],[14.774180535000113,77.54877350500011],[14.904307488000116,77.54816315300015],[14.996755405000101,77.56427643400012],[15.04232832100007,77.56671784100014],[15.141856316000114,77.54547760600018],[15.497569206500145,77.53851959850012],[15.853282097000088,77.53156159100008],[15.877452019000089,77.52387116100007],[15.894297722000088,77.51654694200006],[15.941254102000132,77.50234609600015],[15.999278191000085,77.49461497600004],[16.03687584700009,77.48191966399999],[16.104014519000145,77.44912344000006],[16.12484785200013,77.44269440300015],[16.199880405000073,77.43829987200017],[16.2213647800001,77.4408633480001],[16.220957879000107,77.44745514500006],[16.192881707000083,77.46621328300002],[16.21949303500014,77.47426992400015],[16.30958092500009,77.46621328300002],[16.270762566000087,77.487453518],[16.09717858200014,77.49970123900006],[16.0286564460001,77.51439036700008],[15.989268425000118,77.53123607000008],[15.951019727000071,77.54165273600016],[15.935557488000143,77.55158112200014],[15.898936394000117,77.56964752800017],[15.845876498000111,77.57880280200006],[15.405975782000096,77.60101959850006],[14.966075066000116,77.62323639500009],[14.910817905000101,77.61546458500008],[14.883799675000146,77.61701080900012],[14.866384311000074,77.62303294500012],[14.83423912900011,77.63873932500009],[14.814952019000089,77.64435455900009],[14.773448113000084,77.64887116100014],[14.753103061000104,77.65399811400006],[14.740489129000109,77.6642113300001],[14.858571811000077,77.68280670799999],[15.032969597000116,77.684515692],[15.115407748000052,77.70319245000017],[15.490353494666778,77.72630442900011],[15.865299241333416,77.74941640800007],[16.240244988000143,77.77252838700004],[16.3333439460001,77.79759349200013],[16.601654493000098,77.80447011950001],[16.869965040000096,77.81134674700014],[16.95337975400011,77.79352448100015],[17.012705925000148,77.7959658870001],[17.035166863000086,77.79144928600014],[17.0545353520001,77.78343333500003],[17.080577019000145,77.77692291900011],[17.10613040500004,77.77521393400009],[17.124522332000083,77.78148021000005],[17.079437696000127,77.79743073100015],[17.024668816000087,77.80776601800007],[16.91968834700009,77.81500885600009],[16.881683790000096,77.82196686400009],[16.847992384000094,77.83869049700012],[16.789317254000082,77.87714264500012],[16.814300977000073,77.889349677],[16.842458530000073,77.88593170800009],[16.87126712300011,77.878119208],[16.89861087300008,77.87714264500012],[16.968760613000143,77.89996979400003],[16.9948022800001,77.90497467700008],[16.98389733200014,77.90814850500014],[16.974375847000147,77.9122582050001],[16.966563347000147,77.91766998900015],[16.96070397200009,77.92487213700015],[16.972992384000065,77.92552317900011],[16.98511803500014,77.92816803600003],[16.996836785000138,77.932562567],[17.007823113000086,77.9385440120001],[16.761241082000055,77.91201406500015],[16.728200717000107,77.90330638200005],[16.714854363000086,77.87714264500012],[16.682871941000087,77.86603424700009],[16.23410078200007,77.85069407750008],[15.785329623000107,77.8353539080001],[15.595469597000145,77.87734609600007],[15.55453535200013,77.88011302300013],[15.308929884000063,77.85663483300006],[15.090342644000145,77.79096100500006],[14.768890821000127,77.7809105490001],[14.718435092000107,77.76947663000014],[14.670258009000065,77.76902903900005],[14.568614129000082,77.793443101],[14.521250847000145,77.78148021000005],[14.630625847000145,77.76788971600011],[14.599131707000112,77.759711005],[14.457774285000141,77.75804271000008],[14.356618686000047,77.76788971600011],[14.292165561000074,77.75999583500011],[14.26107832100007,77.75983307500015],[14.210297071000099,77.78229401200015],[14.175547722000147,77.78424713700012],[14.109873894000144,77.77407461100007],[14.0115666020001,77.73407623900012],[13.957041863000114,77.719916083],[13.91431725400011,77.72996653899999],[13.885508660000085,77.74453359600001],[13.857432488000086,77.74404531500012],[13.797618035000113,77.73309967700006],[13.77116946700005,77.73436107000008],[13.752940300000148,77.73944733300009],[13.737315300000063,77.74994538000006],[13.718760613000057,77.76788971600011],[13.774424675000091,77.77533600500009],[13.801605665000094,77.7851423200001],[13.82178795700011,77.80141836100013],[13.785655144000087,77.827134507],[13.741547071000099,77.83673737200017],[13.694997592000078,77.84076569200012],[13.651133660000113,77.84979889500015],[13.66570071700005,77.8603376320001],[13.672211134000122,77.87653229400014],[13.670664910000085,77.89398834800012],[13.660817905000071,77.90814850500014],[13.651703321000099,77.91840241100006],[13.633148634000092,77.94989655200008],[13.630625847000145,77.95966217700011],[13.645192905000101,77.98114655200006],[13.662608269000145,77.98761627800013],[13.670664910000085,77.99380117400004],[13.656586134000063,78.01422760600009],[13.640635613000143,78.02777741100006],[13.60694420700014,78.04344310100014],[13.589121941000059,78.05585358300006],[13.613536004000109,78.06362539300007],[13.69825280000012,78.06207916900003],[13.784678582000112,78.08026764499999],[13.82911217500012,78.08478424700014],[13.852386915000125,78.09454987200012],[13.866221550000148,78.09686920800006],[13.957692905000073,78.09568919500005],[14.00953209700009,78.088120835],[14.074880405000044,78.07013580900015],[14.240000847000147,78.00397370000013],[14.256602410000085,78.00063711100013],[14.262868686000047,77.9951846370001],[14.2682397800001,77.98322174700016],[14.275645379000082,77.97125885600003],[14.287445509000063,77.96588776200018],[14.330088738000086,77.96442291900003],[14.347911004000082,77.96845123900009],[14.359629754000139,77.98061758000007],[14.353688998000024,77.98883698100015],[14.348399285000141,78.005560614],[14.346039259000094,78.01996491100006],[14.32439212300011,78.0388044290001],[14.25220787900011,78.06244538000014],[14.22282962300011,78.07916901200015],[14.232758009000122,78.09345123900006],[14.633718295500074,78.10504791850003],[15.034678582000138,78.1166445980001],[15.024912957000083,78.12348053600003],[14.99366295700011,78.13715241100014],[15.020030144000117,78.14728424700009],[15.084483269000117,78.16217682500015],[15.11304772200009,78.16449616100012],[15.139414910000085,78.16990794500008],[15.190196160000141,78.19379303600014],[15.239756707000081,78.2035179710001],[15.295176629000137,78.22223541900014],[15.417328321000069,78.23859284100016],[15.557383660000054,78.23969147300004],[15.614593946000127,78.22288646000003],[15.69353274800005,78.21482982000008],[15.719899936000045,78.21914297100007],[15.729665561000104,78.23395416900014],[15.709727410000113,78.2448591170001],[15.634287957000083,78.25722890800016],[15.61736087300008,78.26569245000009],[15.590179884000065,78.28864166900009],[15.610199415000123,78.30263906500014],[15.641286655000043,78.31342194200015],[15.795095248000052,78.34292226800012],[15.828379754000139,78.34210846600011],[15.864756707000138,78.33714427300008],[15.901215040000094,78.33612702],[16.064463738000114,78.3519961610001],[16.089854363000143,78.36107005400011],[16.103363477000098,78.36371491100012],[16.140798373000052,78.36351146000005],[16.293793165000125,78.34031810100014],[16.615163607500108,78.3462995465001],[16.93653405000009,78.35228099200008],[17.097422722000147,78.38841380399998],[17.14665774800008,78.39411041900017],[17.198415561000104,78.40778229400011],[17.272308790000096,78.41388580900009],[17.29371178500014,78.420396226],[17.29639733200011,78.43260325700008],[17.260101759000122,78.44428131700006],[17.197601759000094,78.44208405200008],[16.850840691000116,78.384914455],[16.627696160000085,78.40582916900017],[16.604746941000087,78.41083405200011],[16.58668053500014,78.42169830900009],[16.583994988000086,78.42560455900009],[16.578135613000143,78.43793366100014],[16.576996290000096,78.44220612200014],[16.57007897200009,78.44537995000012],[16.5260522800001,78.44562409100013],[16.410980665000125,78.43260325700008],[16.390879754000082,78.43618398600013],[16.35181725400011,78.450628973],[16.32992597700007,78.45246002800017],[16.32992597700007,78.45929596600008],[16.34734134200005,78.45929596600008],[16.36573326900009,78.461859442],[16.400563998000052,78.47162506700015],[16.427989129000082,78.48330312700013],[16.436289910000053,78.49017975500014],[16.446055535000113,78.50092194200006],[16.459320509000122,78.520209052],[16.467621290000125,78.52985260600015],[16.48023522200009,78.538763739],[16.495290561000104,78.54535553600009],[16.647146030000073,78.59100983300011],[16.676036004000082,78.60700104400011],[16.688975457000083,78.61741771],[16.70337975400014,78.6264509140001],[16.71859785200013,78.63353099200008],[16.73414147200012,78.63808828300002],[16.80958092500009,78.63979726800012],[16.82715905000012,78.64801666900003],[16.828949415000096,78.67332591400007],[16.78923587300008,78.67910390800004],[16.62875410200013,78.67161692900005],[16.61744225400014,78.67499420800009],[16.6158960300001,78.6887067730001],[16.61085045700008,78.69594961100005],[16.602386915000125,78.70042552299999],[16.554209832000083,78.71930573100012],[16.522797071000127,78.71784088700015],[16.494313998000052,78.70551178600012],[16.455088738000114,78.67845286699999],[16.414073113000114,78.66339752800013],[16.38038170700011,78.65737539300015],[16.365896030000073,78.651556708],[16.357432488000114,78.63808828300002],[16.37484785200007,78.632554429],[16.372731967000078,78.62079498900012],[16.359060092000046,78.60781484600012],[16.342051629000082,78.59886302299999],[16.338145379000082,78.59491608300003],[16.33106530000012,78.5793317730001],[16.326508009000065,78.57257721600017],[16.317718946000095,78.56777578300009],[16.04200280000012,78.52073802300008],[16.047862175000148,78.49461497600011],[16.001963738000086,78.48273346600017],[15.720713738000056,78.47056712450014],[15.439463738000143,78.4584007830001],[15.342458530000103,78.48427969],[15.26124108200011,78.54246653900003],[15.25611412900008,78.56464264500003],[15.241953972000145,78.57807038000001],[15.222015821000069,78.5854352890001],[15.19288170700011,78.58958567900014],[15.203786655000101,78.59658437700004],[15.215586785000056,78.6014671900001],[15.227875196000127,78.60407135600009],[15.233246290000066,78.61017487200017],[15.401540561000045,78.61692942900011],[15.42261803500014,78.62225983300009],[15.446055535000111,78.63589101800012],[15.46509850400011,78.65460846600007],[15.480153842000048,78.68964264500008],[15.493337436000074,78.70917389500005],[15.498789910000113,78.72630442900002],[15.475108269000117,78.73761627800016],[15.47291100400011,78.74677155200004],[15.471446160000141,78.757025458],[15.46631920700014,78.76439036699999],[15.44174238400012,78.77383047100001],[15.432139519000144,78.779038804],[15.425059441000087,78.78827545800006],[15.440765821000069,78.79051341400003],[15.457041863000086,78.79564036700005],[15.486582879000139,78.80878327000003],[15.465993686000102,78.82062409100017],[15.421071811000102,78.83405182500015],[15.401133660000111,78.84690989799999],[15.381521030000073,78.85138580900015],[15.352224155000043,78.84564850500009],[15.302093946000126,78.826117255],[15.23389733200011,78.78485748900015],[15.222911004000082,78.77269114800008],[15.219981316000144,78.75796133000007],[15.215342644000115,78.74555084800015],[15.199066602000103,78.74046458500011],[15.20264733200014,78.731878973],[15.208750847000147,78.7254906270001],[15.21705162900011,78.72142161700013],[15.227061394000117,78.72003815300015],[15.20655358200014,78.70636627800012],[15.219248894000117,78.70416901200012],[15.225352410000113,78.698187567],[15.225433790000094,78.68927643400015],[15.220225457000081,78.678412177],[15.231700066000142,78.67910390800004],[15.242442254000139,78.67706940300009],[15.252289259000065,78.67251211100013],[15.26124108200011,78.6653506530001],[15.209320509000122,78.65619538000011],[15.057871941000144,78.64736562700007],[15.021006707000083,78.61692942900011],[15.027191602000071,78.615708726],[15.041514519000145,78.61017487200017],[14.98267662900008,78.59739817900014],[14.919932488000086,78.60765208500005],[14.801280144000144,78.644232489],[14.814952019000089,78.65412018400009],[14.831228061000104,78.66132233300014],[14.844574415000123,78.67035553600014],[14.849619988000143,78.68585846600014],[14.842133009000094,78.70014069200006],[14.815196160000111,78.721136786],[14.814952019000089,78.7336286480001],[14.727875196000127,78.73554108300006],[14.679698113000086,78.73041413000004],[14.62916100400008,78.71735260600018],[14.575368686000045,78.69000885600009],[14.488129102000102,78.68659088700008],[14.44556725400008,78.678412177],[14.44556725400008,78.67157623900006],[14.525726759000122,78.66429271000005],[14.541758660000111,78.65790436400012],[14.545909050000146,78.64716217700011],[14.542816602000073,78.63959381700005],[14.537364129000109,78.63178131700009],[14.534353061000104,78.6203473980001],[14.536468946000126,78.61725495000003],[14.541188998000054,78.61554596600003],[14.545746290000096,78.61286041900014],[14.548024936000045,78.60700104400011],[14.547048373000079,78.60211823100003],[14.542735222000088,78.59247467700008],[14.541758660000111,78.58657461100013],[14.547618035000141,78.57501862200012],[14.561371290000068,78.56818268400009],[14.577321811000076,78.56281159100004],[14.589610222000116,78.55548737200003],[14.56234785200013,78.5439313820001],[14.502207879000139,78.54608795800003],[14.472911004000139,78.54246653900003],[14.383555535000111,78.50092194200006],[14.419688347000147,78.47553131700012],[14.481455925000148,78.46332428600006],[14.599864129000137,78.45929596600008],[14.640635613000113,78.45343659100014],[14.676280144000087,78.43793366100014],[14.707041863000141,78.41596100500011],[14.733653191000085,78.39105866100009],[14.66309655000012,78.381089585],[14.451914910000083,78.38422272300005],[14.45923912900011,78.37738678600014],[14.432871941000116,78.36884186400012],[14.402354363000057,78.37384674700017],[14.342621290000096,78.39105866100009],[14.310231967000078,78.39199453300007],[14.285980665000094,78.38743724200013],[14.266123894000089,78.37791575700011],[14.24634850400008,78.36371491100012],[14.258555535000141,78.35431549700009],[14.287608269000117,78.34381745000012],[14.301524285000113,78.33637116100014],[14.306651238000114,78.33112213700015],[14.322032097000147,78.3084984400001],[14.281911655000043,78.3050804710001],[14.126231316000059,78.26337311400012],[14.101573113000084,78.25063711100007],[14.075856967000021,78.24290599200006],[14.040293816000144,78.24701569200012],[14.04851321700005,78.26117584800015],[14.063649936000047,78.270453192],[14.081228061000076,78.27846914300012],[14.096690300000091,78.28864166900009],[14.02084394600007,78.28180573100015],[14.006032748000079,78.28351471600017],[13.993825717000107,78.28632233300011],[13.981455925000063,78.28693268400018],[13.965830925000091,78.28180573100015],[13.950938347000118,78.27179596600008],[13.944997592000107,78.26072825700005],[13.944672071000099,78.22650788000006],[13.924082879000139,78.23818594000006],[13.898610873000052,78.24778880400014],[13.798024936000017,78.270453192],[13.771983269000144,78.27106354400014],[13.746104363000143,78.26752350500009],[13.772715691000087,78.25120677300005],[13.83936608200014,78.23354726800012],[13.855967644000117,78.2128766950001],[13.502289258500099,78.22052643450009],[13.148610873000107,78.22817617400007],[13.081879102000073,78.21914297100007],[13.032481316000087,78.20404694200006],[13.009613477000073,78.2038434920001],[12.960948113000141,78.22016022300012],[12.92725670700014,78.23578522300012],[12.911306186000047,78.24701569200012],[12.947032097000147,78.26105377800017],[12.958343946000127,78.26752350500009],[12.9529728520001,78.27220286699999],[12.943858269000089,78.2838402360001],[12.938649936000104,78.28864166900009],[12.951508009000122,78.29539622600011],[12.856618686000076,78.322739976],[12.903819207000055,78.322739976],[12.88648522200009,78.3477237000001],[12.858083530000044,78.35968659100013],[12.65756269600007,78.37734609600015],[12.568369988000086,78.40485260600009],[12.506521030000101,78.43537018400004],[12.475922071000099,78.44212474200008],[12.430918816000116,78.46613190300012],[12.377126498000052,78.47736237200012],[12.362559441000116,78.48725006700012],[12.531260613000086,78.50706614800013],[13.001963738000143,78.50824616100006],[13.198008660000085,78.54246653900003],[13.146006707000112,78.55512116100012],[13.085703972000061,78.55231354400017],[12.97201582100007,78.53506094000006],[12.700856967000135,78.53961823150014],[12.429698113000086,78.54417552300005],[12.389821811000104,78.55133698100009],[12.368825717000078,78.57599518400018],[12.376231316000144,78.58344147300006],[12.347178582000083,78.59568919500013],[12.020518425000091,78.614447333],[11.941905144000089,78.63373444200012],[11.903575066000144,78.63808828300002],[11.882090691000116,78.64386627800016],[11.859711134000094,78.6576602230001],[11.850759311000076,78.67352936400012],[11.869151238000113,78.68585846600014],[11.843028191000144,78.70270416900013],[11.805918816000142,78.71043528899999],[11.735606316000116,78.71259186400009],[11.711680535000141,78.71605052300008],[11.68148847700013,78.72483958500014],[11.65528405000009,78.73615143400012],[11.6432397800001,78.74725983300006],[11.665293816000087,78.76019928600006],[11.732188347000118,78.81244538000006],[11.780772332000055,78.82558828300004],[11.887461785000085,78.817084052],[11.937347852000128,78.82245514500013],[11.90170332100007,78.84430573100009],[11.856618686000104,78.85561758000007],[11.564463738000114,78.88715241100009],[11.50603274800005,78.90497467700006],[11.441661004000139,78.91559479400009],[11.370371941000144,78.94122955900015],[11.345957879000082,78.95416901200015],[11.334157748000107,78.97321198100015],[11.567067905000016,78.98493073100015],[11.907928907500093,78.94324371950012],[12.248789910000141,78.90155670800014],[12.474131707000112,78.90228913000009],[12.506602410000085,78.91181061400005],[12.499847852000045,78.91950104400009],[12.478688998000052,78.93911367400015],[12.460703972000118,78.95213450700014],[12.458181186000104,78.95648834800012],[12.457692905000101,78.96942780200014],[12.455577019000087,78.97455475500006],[12.451426629000137,78.98004791900017],[12.424327019000117,78.99664948100002],[12.39079837300008,79.00214264500006],[12.06478925900012,78.97426992400001],[11.979014519000089,78.98688385600009],[12.008148634000037,78.99502187700001],[12.04281660200013,78.99982330900009],[12.10873457100007,79.00055573100003],[12.084808790000096,79.01093170800011],[12.058360222000118,79.01463450700008],[12.002289259000094,79.01422760600013],[11.770192905000101,79.05849844000012],[11.71111087300008,79.06183502800015],[11.683604363000143,79.0694033870001],[11.736582879000082,79.07843659100011],[11.761241082000083,79.08588288],[11.80795332100007,79.11493561400006],[11.85694420700014,79.12197500200013],[11.882823113000143,79.13084544499998],[11.875743035000085,79.13784414300007],[11.867686394000144,79.14252350500009],[11.858571811000076,79.14500560100011],[11.848643425000148,79.14516836100016],[11.894216342000107,79.16022370000017],[11.906748894000117,79.168443101],[11.925303582000112,79.18768952000012],[11.935231967000107,79.19415924700003],[11.951019727000071,79.19985586100002],[11.996429884000065,79.20644765800007],[12.090505405000073,79.20587799700012],[12.135996941000144,79.21344635600015],[12.12094160200013,79.22589752800016],[12.074880405000101,79.22801341400002],[12.060313347000061,79.24070872600005],[12.100108269000145,79.25873444200009],[12.115000847000118,79.2612165390001],[12.108083530000101,79.26740143400018],[12.102875196000127,79.27440013200005],[12.095062696000127,79.2885195980001],[12.101735873000079,79.29148997600011],[12.115000847000118,79.30219147300012],[12.081228061000047,79.30329010600016],[11.985199415000068,79.2885195980001],[11.83497155000012,79.29596588700015],[11.905935092000107,79.25067780200004],[11.916840040000068,79.24070872600005],[11.896657748000052,79.22553131700006],[11.85287519600007,79.22601959800015],[11.807139519000145,79.23554108300004],[11.779795769000087,79.24754466399999],[11.78728274800005,79.254380601],[11.772146030000073,79.25812409100001],[11.72478274800011,79.27830638200005],[11.716807488000057,79.28558991100006],[11.712087436000076,79.29498932500009],[11.705251498000052,79.30369700700008],[11.691091342000107,79.3096377620001],[11.691091342000107,79.322211005],[11.59473717500012,79.3096377620001],[11.601573113000143,79.30219147300012],[11.591319207000112,79.29401276200012],[11.578949415000068,79.28876373900012],[11.553233269000115,79.28172435100008],[11.592784050000148,79.27277252800003],[11.690440300000148,79.21686432500017],[11.722666863000113,79.18756745000015],[11.700450066000144,79.16803620000017],[11.279307488000114,79.09955475500011],[11.228282097000118,79.10065338700015],[11.18384850400011,79.12409088700004],[11.205088738000086,79.12946198100008],[11.200368686000076,79.13800690300003],[11.176442905000016,79.15131256700015],[11.174082879000082,79.15875885600012],[11.170176629000082,79.18891022300015],[11.16187584700009,79.21600983300007],[11.14096113400012,79.23663971600007],[11.11304772200009,79.24982330900006],[11.066742384000094,79.25739166900009],[11.051768425000063,79.26496002800006],[11.039317254000139,79.27488841400005],[11.010590040000096,79.30483633000001],[11.001231316000059,79.3100446640001],[10.98462975400011,79.31586334800006],[10.912445509000122,79.329535223],[10.841156446000099,79.37103913],[10.898773634000094,79.37807851800005],[10.91635175900012,79.3847516950001],[10.87077884200005,79.395209052],[10.861827019000117,79.39899323100002],[10.855235222000147,79.410834052],[10.860606316000114,79.41498444200012],[10.87134850400011,79.41632721600011],[10.882172071000127,79.41950104400016],[10.906423373000107,79.43056875200001],[10.916270379000139,79.43939850500009],[10.912608269000087,79.44989655200013],[10.908457879000139,79.45604075700011],[10.904958530000044,79.46381256700012],[10.900075717000078,79.47064850500014],[10.892263217000078,79.47353750200007],[10.880869988000114,79.47622304900014],[10.841156446000099,79.49404531500012],[10.787364129000052,79.50649648600013],[10.740733269000144,79.50824616100014],[10.715179884000065,79.51211172100015],[10.693614129000139,79.52240631700006],[10.676768425000148,79.54242584800012],[10.70801842500012,79.56142812700013],[11.18384850400011,79.56293366100009],[11.145681186000047,79.57391998900013],[10.854991082000112,79.59699127800009],[10.867360873000052,79.60932038000006],[10.889659050000091,79.61847565300003],[11.013682488000086,79.64996979400014],[11.433278842000078,79.62750885600003],[11.457692905000044,79.63178131700015],[11.455577019000117,79.64545319200009],[11.429372592000078,79.65350983300011],[11.352549675000148,79.661851304],[11.233083530000101,79.69863515800006],[11.213877800000148,79.7080752620001],[11.19760175900012,79.72117747600008],[11.20264733200014,79.722398179],[11.21257571700005,79.72626373900009],[11.218028191000087,79.72736237200003],[11.216156446000127,79.73086172100012],[11.213715040000096,79.73773834800012],[11.210622592000107,79.74164459800012],[11.217784050000148,79.74575429900007],[11.238536004000139,79.76093170800006],[11.190114780000073,79.77521393400015],[11.227305535000141,79.788031317],[11.283457879000139,79.78929271],[11.476328972000118,79.767279364],[11.52377363400012,79.76707591400005],[11.56006920700014,79.78880442900011],[11.525889519000145,79.80927155200008],[11.550303582000112,79.81366608300006],[11.605153842000107,79.8057315120001],[11.625498894000089,79.81268952000009],[11.638682488000143,79.82355377800017],[11.653493686000102,79.831244208],[11.669606967000078,79.83576080900006],[11.777354363000141,79.84686920800009],[11.822276238000141,79.84503815300009],[11.858571811000076,79.82664622600005],[11.873871290000125,79.81561920800003],[11.923675977000102,79.8018252620001],[11.94288170700014,79.79096100500011],[11.944509311000076,79.78416575699998],[11.93897545700014,79.77952708500005],[11.937347852000128,79.77521393400015],[11.960703972000118,79.76203034100011],[12.028005405000043,79.73456452000006],[12.032969597000088,79.72117747600008],[12.049327019000115,79.71491120000012],[12.057302280000073,79.71336497600008],[12.067149285000085,79.71369049700009],[12.061696811000045,79.70917389500015],[12.046641472000118,79.69326406500012],[12.108409050000148,79.67698802299999],[12.142832879000082,79.67377350500013],[12.170176629000139,79.67894114800013],[12.161957227000128,79.68317291900014],[12.155284050000091,79.68846263200012],[12.142832879000082,79.70062897300012],[12.170664910000141,79.70917389500015],[12.199229363000114,79.70416901200008],[12.281748894000117,79.66738515800002],[12.29704837300008,79.66498444200006],[12.330902540000068,79.66840241100009],[12.336599155000044,79.66998932500012],[12.34546959700009,79.68268463700015],[12.349619988000114,79.7174746770001],[12.303558790000066,79.73688385600003],[12.204356316000144,79.75462474200013],[12.218028191000087,79.76251862200009],[12.197438998000052,79.76829661700008],[12.204356316000144,79.77521393400015],[12.188649936000076,79.77724844000008],[12.173513217000078,79.78310781500012],[12.163584832000083,79.79344310100014],[12.163340691000116,79.80927155200008],[12.172618035000085,79.8168806010001],[12.204356316000144,79.8372256530001],[12.391123894000117,79.83417389500003],[12.451426629000137,79.82355377800017],[12.488780144000115,79.80971914300007],[12.495941602000073,79.80556875200013],[12.505625847000118,79.79824453300012],[12.52637780000012,79.79266998900012],[12.533864780000071,79.78880442900011],[12.541758660000141,79.77431875200006],[12.532888217000107,79.76569245000013],[12.492930535000141,79.75462474200013],[12.53663170700014,79.74628327000013],[12.684092644000117,79.77521393400015],[12.767588738000086,79.77326080900012],[12.91578209700009,79.79824453300012],[12.959971550000148,79.81110260600015],[13.060069207000112,79.82859935100011],[13.250010613000143,79.83681875200001],[13.3561304050001,79.85846588700008],[13.583181186000045,79.85748932500012],[13.797048373000052,79.88190338700015],[13.842133009000122,79.877875067],[13.885590040000068,79.86652252800003],[13.950205925000091,79.8373477230001],[13.954437696000127,79.83030833500011],[13.958994988000086,79.816107489],[13.959808790000094,79.80414459800005],[13.958506707000083,79.79437897300012],[13.960785352000073,79.78522370000006],[13.972666863000114,79.77521393400015],[13.897146030000071,79.73773834800012],[13.738291863000141,79.70644765800007],[13.262380405000073,79.69367096600001],[13.239024285000085,79.70062897300012],[13.191172722000145,79.69301992400007],[13.013682488000143,79.69326406500012],[13.027354363000086,79.67894114800013],[13.010508660000085,79.67291901200004],[12.646250847000061,79.594427802],[12.563975457000112,79.59076569200015],[12.49935957100007,79.59516022300011],[12.469248894000117,79.58954498900012],[12.451426629000137,79.56907786700008],[12.482432488000086,79.5667992210001],[12.545176629000052,79.55206940300009],[12.57764733200014,79.54857005400011],[12.610036655000044,79.55117422100001],[12.704600457000083,79.56907786700008],[12.901621941000085,79.57221100500014],[13.033457879000053,79.59735748900012],[13.181976759000092,79.59149811400009],[13.287852410000085,79.60236237200013],[13.396494988000143,79.59076569200015],[13.451670769000089,79.59243398600016],[13.477224155000073,79.58649323100003],[13.492849155000043,79.56907786700008],[13.430430535000085,79.53400299700017],[13.410492384000094,79.528753973],[13.393402540000068,79.52667877800017],[13.359222852000071,79.5170759140001],[13.342051629000137,79.51447174700009],[13.322927280000071,79.51544830900018],[13.285817905000073,79.52155182500015],[13.266856316000144,79.52191803600009],[13.277679884000037,79.50901927300008],[13.28736412900011,79.49404531500012],[13.27686608200014,79.493353583],[13.268565300000148,79.48965078300012],[13.26270592500012,79.48297760600009],[13.259532097000147,79.47353750200007],[13.300547722000147,79.47142161700008],[13.45720462300011,79.43960195500013],[13.47868899800011,79.44110748900007],[13.48658287900011,79.45302969000012],[13.479502800000118,79.4599470070001],[13.43767337300011,79.48094310100005],[13.475271030000101,79.49140045800014],[13.527110222000118,79.49433014500006],[13.579112175000091,79.49054596600006],[13.616953972000118,79.48094310100005],[13.621592644000145,79.47646719],[13.625498894000144,79.464300848],[13.630625847000145,79.45986562700013],[13.644379102000073,79.45636627800015],[13.676280144000089,79.4542910830001],[13.759287957000083,79.44025299700017],[13.78028405000012,79.43256256700006],[13.785004102000128,79.42023346600011],[13.807383660000141,79.4112002620001],[13.873383009000094,79.39337799700003],[13.87826582100007,79.38996002800012],[13.898448113000084,79.36786530200011],[13.906260613000086,79.36440664300012],[13.917979363000143,79.36424388200008],[13.907074415000096,79.34048086100016],[13.905528191000144,79.32843659100014],[13.910655144000145,79.31586334800006],[13.891123894000089,79.30605703300013],[13.898610873000052,79.29364655200003],[13.920746290000125,79.28424713700018],[13.945567254000082,79.28351471600013],[13.97673587300008,79.28725820500006],[13.998383009000065,79.28261953300014],[14.041677280000044,79.26581452000015],[14.073090040000066,79.26951732],[14.104746941000142,79.28912995000015],[14.158213738000057,79.34316640800013],[14.141856316000144,79.348130601],[14.10287519600007,79.37726471600014],[14.08106530000012,79.38686758000013],[14.035411004000082,79.39736562700001],[14.014333530000073,79.40521881700009],[14.021739129000139,79.412583726],[14.029795769000089,79.41836172100011],[14.03858483200014,79.42267487200013],[14.048350457000081,79.42572663000013],[14.03150475400008,79.43561432500015],[14.021820509000122,79.44953034100003],[14.00993899800008,79.46190013200007],[13.96697024800011,79.47256094],[13.94507897200009,79.48407623900012],[13.935313347000147,79.49579498900012],[13.952159050000148,79.5014509140001],[13.899261915000096,79.52993398600002],[13.883148634000122,79.54242584800012],[13.900401238000114,79.54897695500001],[13.952159050000148,79.57656484600012],[14.074961785000141,79.60639069200012],[14.252614780000016,79.60984935100012],[14.280528191000144,79.61749909100013],[14.246429884000065,79.61884186400015],[14.177582227000073,79.6315371770001],[14.14389082100007,79.63178131700015],[14.175547722000147,79.6514346370001],[14.26856530000012,79.66339752800002],[14.307790561000047,79.67279694200006],[14.275645379000082,79.67182038],[14.260101759000094,79.673529364],[14.24634850400008,79.67894114800013],[14.276540561000076,79.69367096600001],[14.403493686000104,79.73891836100016],[14.491709832000081,79.78668854400011],[14.514414910000143,79.80353424700012],[14.52751712300011,79.80927155200008],[14.548594597000118,79.81146881700005],[14.857920769000145,79.77366771000011],[14.924571160000111,79.75128815300009],[15.09066816500007,79.661810614],[15.124034050000148,79.65009186400012],[15.172373894000145,79.64215729400014],[15.208262566000142,79.62763092700011],[15.262380405000043,79.61884186400015],[15.280284050000091,79.61229075700005],[15.295258009000122,79.60382721600003],[15.272797071000127,79.58808014500006],[15.274587436000104,79.58234284100008],[15.281748894000144,79.56907786700008],[15.289805535000083,79.56085846600017],[15.299082879000137,79.55548737200012],[15.303070509000124,79.54840729400014],[15.295258009000122,79.53558991100012],[15.310394727000132,79.52265045800003],[15.330088738000057,79.51308828300002],[15.370453321000126,79.5014509140001],[15.36085045700014,79.48309967700006],[15.365570509000065,79.47215403900002],[15.397715691000116,79.45302969000012],[15.410004102000071,79.44110748900007],[15.43067467500009,79.41571686400006],[15.446055535000111,79.40521881700009],[15.438731316000116,79.38760000200016],[15.451914910000085,79.37409088700016],[15.470713738000113,79.361558335],[15.480316602000102,79.34658437700016],[15.497325066000142,79.330023505],[15.536387566000116,79.32050202000009],[15.605723504000082,79.31126536700013],[15.627940300000118,79.30052317900011],[15.661143425000148,79.27228424700014],[15.685801629000137,79.2612165390001],[15.745371941000142,79.25234609600007],[15.772715691000114,79.24217357000009],[15.788747592000107,79.22028229400007],[15.779307488000114,79.220607815],[15.77523847700013,79.21967194200012],[15.745371941000142,79.20010000200016],[15.677256707000112,79.1705589860001],[15.65845787900008,79.15131256700015],[15.660492384000094,79.12531159100014],[15.68213951900009,79.1122093770001],[15.711599155000071,79.11273834800006],[15.805186394000117,79.16583893400018],[15.881602410000141,79.1610375020001],[15.956553582000081,79.13255442899998],[16.021006707000083,79.10016510600018],[16.04118899800011,79.09267812700001],[16.103363477000098,79.07684967700008],[16.1189884770001,79.06769440300009],[16.1263126960001,79.05829498900005],[16.1315210300001,79.0353050800001],[16.131683790000068,79.02130768400004],[16.130544467000103,79.01146067900011],[16.13493899800011,79.00234609600004],[16.151866082000083,78.99066803600012],[16.17204837300011,78.98232656500015],[16.21420332100007,78.97109609600014],[16.234141472000147,78.96332428600014],[16.248708530000073,78.95937734600005],[16.2819116550001,78.95758698100018],[16.295909050000148,78.95335521000005],[16.30054772200009,78.94847239799999],[16.3073022800001,78.93512604400017],[16.30958092500009,78.93162669499999],[16.329274936000047,78.92169830900018],[16.34791100400011,78.91624583500014],[16.435231967000107,78.91144440300013],[16.476573113000143,78.91730377800009],[16.490896030000044,78.9307315120001],[16.453461134000094,78.95335521000005],[16.4563908210001,78.95722077000005],[16.45777428500008,78.96035390800013],[16.458669467000078,78.96344635600012],[16.4602970710001,78.966986395],[16.405039910000085,78.973089911],[16.38135826900009,78.98362864800005],[16.36548912900014,79.02147044499999],[16.35059655000009,79.03046295800011],[16.333669467000103,79.03660716399999],[16.320078972000147,79.04523346600008],[16.285166863000143,79.09170156500012],[16.267914259000122,79.10358307500009],[16.209971550000144,79.12628815300003],[16.192881707000083,79.13833242400015],[16.181813998000052,79.15086497600005],[16.165293816000087,79.17670319200006],[16.15528405000009,79.18891022300015],[16.151866082000083,79.2011579450001],[16.152354363000086,79.21849192899998],[16.150726759000065,79.23403554900001],[16.14136803500011,79.24070872600005],[16.12484785200013,79.24579498900009],[16.00945071700005,79.29637278899999],[15.959483269000115,79.3096377620001],[15.96900475400011,79.339056708],[15.952891472000118,79.37352122600011],[15.929698113000114,79.40949127800009],[15.913910352000073,79.459173895],[15.904470248000052,79.478257554],[15.881195509000122,79.51105377800009],[15.869802280000071,79.51874420800011],[15.858653191000142,79.52285390800016],[15.85303795700014,79.52899811400015],[15.857676629000082,79.54242584800012],[15.867686394000144,79.54852936400012],[15.917979363000114,79.56293366100009],[15.89665774800005,79.56842682500012],[15.852224155000044,79.569769598],[15.833181186000045,79.57998281500012],[15.826833530000101,79.58856842700006],[15.821136915000125,79.603949286],[15.812998894000117,79.61444733300006],[15.79314212300011,79.6276716170001],[15.740489129000082,79.65399811400003],[15.72673587300008,79.66596100500014],[15.745371941000142,79.67324453300016],[15.732269727000102,79.68309153899999],[15.685801629000137,79.70062897300012],[15.690277540000096,79.70416901200008],[15.703868035000056,79.71698639500012],[15.706309441000085,79.72117747600008],[15.70264733200014,79.72772858300014],[15.699066602000071,79.72992584800012],[15.695648634000063,79.73102448100016],[15.692637566000144,79.73419830900013],[15.683848504000109,79.74534739800008],[15.671397332000081,79.75592682500002],[15.65772545700014,79.76414622600011],[15.644786004000139,79.76829661700008],[15.664561394000144,79.78473541900014],[15.672048373000022,79.78880442900011],[15.654307488000141,79.80048248900003],[15.643402540000068,79.81500885600015],[15.641856316000116,79.83185455900015],[15.651621941000146,79.850287177],[15.6795353520001,79.86912669500013],[15.71583092500009,79.87714264500006],[16.102875196000127,79.85984935100008],[16.137705925000148,79.87075429900015],[16.102224155000073,79.89435455900016],[16.008636915000125,79.90981679900001],[15.969981316000089,79.92975495000009],[15.95972741000014,79.93911367400013],[15.955739780000071,79.94529857000002],[15.95972741000014,79.95302969],[15.973806186000104,79.96698639500009],[15.991058790000098,79.977728583],[16.055674675000148,79.99485911700013],[16.04468834700009,79.99681224199999],[16.03467858200011,80.00092194200012],[16.026703321000067,80.00702545800011],[16.02165774800011,80.015366929],[16.04118899800011,80.01748281500008],[16.079437696000042,80.02684153900013],[16.14112389400009,80.03213125200001],[16.25464928500011,80.06183502800003],[16.29468834700012,80.06736888200005],[16.329763217000107,80.06443919500013],[16.36793053500008,80.05646393400015],[16.541514519000117,80.04751211100013],[16.555918816000087,80.04266998900006],[16.561778191000116,80.03611888200008],[16.568369988000086,80.01911041900011],[16.573252800000148,80.01194896000008],[16.592784050000144,79.99762604400009],[16.61646569100006,79.985052802],[16.665212436000076,79.96698639500009],[16.695811394000113,79.960394598],[16.712168816000116,79.95457591400003],[16.72046959700009,79.94647858300011],[16.717133009000065,79.93915436400012],[16.697764519000145,79.92999909100006],[16.69312584700012,79.92255280200006],[16.70639082100007,79.91181061400015],[16.820078972000147,79.87579987200017]]],[[[33.64039147200011,80.22077057500015],[33.59620201900023,80.2031924500001],[33.54346764400023,80.195054429],[33.2876896495002,80.18307119350011],[33.03191165500007,80.17108795800013],[32.83106530000012,80.133246161],[32.424408399000214,80.11306386933332],[32.017751498000024,80.0928815776668],[31.611094597000175,80.07269928600012],[31.495290561000076,80.09731679900001],[31.47706139400006,80.10394928600009],[31.48064212300002,80.11058177300004],[31.496348504000107,80.11570872600005],[31.977441168666783,80.14588722000012],[32.4585338333334,80.17606571400016],[32.939626498000194,80.20624420800003],[32.995616082000225,80.21889883000007],[33.02125084700012,80.22150299700017],[33.07422936300023,80.2201602230001],[33.09864342500012,80.22768789300014],[33.29859459700011,80.24811432500012],[33.64039147200011,80.22077057500015]]],[[[18.687673373000052,80.31220123900009],[18.700450066000084,80.309556382],[18.715668165000068,80.31037018400012],[18.728851759000122,80.31313711100007],[18.74170983200014,80.31232330900015],[18.75562584700012,80.30272044499998],[18.699717644000145,80.29132721600003],[18.680511915000096,80.28974030199998],[18.66431725400014,80.28538646],[18.639008009000094,80.26609935100004],[18.62598717500012,80.26178620000013],[18.491384311000076,80.23883698100015],[18.44939212300008,80.24310944200009],[18.296397332000083,80.27606842700006],[18.158702019000145,80.27863190300015],[18.118825717000078,80.28974030199998],[18.138682488000086,80.309556382],[18.15560957100007,80.3178164730001],[18.190765821000127,80.32184479400014],[18.207692905000016,80.32660553600006],[18.2389429050001,80.34373607],[18.301442905000044,80.36249420800014],[18.316905144000142,80.36420319200015],[18.586761915000096,80.34174225500006],[18.67009524800011,80.31976959800012],[18.687673373000052,80.31220123900009]]],[[[24.381602410000113,80.39154694200012],[24.167165561000047,80.38336823100012],[24.12842858200011,80.40517812700007],[24.144867384000122,80.40875885600002],[24.15365644600007,80.41986725500009],[24.1600041020001,80.43378327000015],[24.16928144600007,80.44611237200009],[24.192637566000144,80.45758698100003],[24.217784050000148,80.45905182500009],[24.242849155000044,80.45404694200006],[24.2654728520001,80.44611237200009],[24.292165561000047,80.43097565300009],[24.36231530000009,80.40802643400012],[24.381602410000113,80.39154694200012]]],[[[24.17481530000009,80.51162344000012],[24.234385613000086,80.50381094000015],[24.292246941000116,80.48834870000003],[24.25977623800011,80.47304922100007],[24.216970248000024,80.46954987200017],[24.010508660000113,80.48338450700008],[23.97754967500012,80.49457428600009],[23.994313998000052,80.50161367400015],[24.016449415000125,80.50649648600002],[24.039724155000044,80.50873444199999],[24.059418165000093,80.50824616100012],[24.114431186000076,80.51235586100016],[24.17481530000009,80.51162344000012]]],[[[23.1424259770001,80.38117096600003],[23.167246941000144,80.37763092700014],[23.21713300900012,80.37848541900014],[23.213715040000096,80.36985911700005],[23.207774285000085,80.36359284100008],[23.19947350400011,80.35960521000011],[23.18921959700009,80.35797760600009],[23.209646030000044,80.358343817],[23.271739129000082,80.35053131700012],[23.315196160000113,80.35171133000013],[23.336192254000053,80.3483747420001],[23.353770379000082,80.33755117400004],[23.295176629000135,80.32778554900007],[23.294118686000104,80.32225169500006],[23.298106316000084,80.315578518],[23.29908287900014,80.309556382],[23.298513217000075,80.30434804900001],[23.305511915000068,80.29511139500015],[23.30591881600006,80.28974030199998],[23.29590905000009,80.28099192900011],[23.279795769000117,80.27728913000006],[23.26319420700014,80.27545807500009],[23.226247592000107,80.26447174700003],[23.08432050900006,80.25551992400001],[23.055023634000122,80.24835846600014],[23.025401238000086,80.1928571640001],[23.005544467000075,80.16840241100005],[23.006683790000125,80.16209544500013],[23.018565300000148,80.15192291900017],[23.06128991000008,80.13165924700017],[23.122325066000144,80.11758047100012],[23.184418165000096,80.11395905200006],[23.23023522200009,80.12523021000005],[23.192393425000148,80.13251373900006],[23.17261803500011,80.13959381700012],[23.143239780000098,80.15619538],[23.10368899800008,80.16258372600011],[23.086761915000096,80.17243073100003],[23.24390709700012,80.16620514500006],[23.23145592500009,80.1752383480001],[23.225759311000104,80.17755768400006],[23.21713300900012,80.17987702],[23.225433790000093,80.19114817900001],[23.24048912900011,80.19464752800009],[23.27491295700014,80.1928571640001],[23.296397332000083,80.1941592470001],[23.30738366000011,80.19342682500017],[23.31592858200014,80.18976471600001],[23.31820722700013,80.18549225500011],[23.318369988000086,80.17560455900009],[23.319590691000112,80.17243073100003],[23.34424889400009,80.15485260600009],[23.370453321000124,80.14305247600014],[23.39869225400011,80.14252350500006],[23.42945397200009,80.15875885600009],[23.39332116000014,80.18268463700015],[23.387868686000104,80.18976471600001],[23.39869225400011,80.20416901200018],[23.423838738000086,80.2110863300001],[23.47046959700009,80.21336497600005],[23.457367384000122,80.2071800800001],[23.467458530000073,80.20819733300006],[23.480642123000052,80.20697663000014],[23.49219811300014,80.20221588700004],[23.497731967000078,80.1928571640001],[23.49439537900014,80.18366120000002],[23.485036655000012,80.17845286700005],[23.463633660000085,80.17243073100003],[23.471446160000056,80.16982656500012],[23.491465691000116,80.15875885600009],[23.502614780000044,80.15680573100015],[23.53931725400014,80.15875885600009],[23.537119988000057,80.15424225500014],[23.53394616000008,80.142808335],[23.531911655000073,80.13825104400014],[23.567637566000084,80.13349030200014],[23.600596550000063,80.14256419500005],[23.66228274800011,80.17243073100003],[23.804860873000106,80.18455638200011],[23.833506707000083,80.20034414300007],[23.771820509000065,80.2071800800001],[23.75928795700014,80.21019114799999],[23.75025475400014,80.21759674700017],[23.74154707100007,80.22675202000006],[23.730479363000114,80.23509349200013],[23.746348504000135,80.23920319200009],[23.77759850400011,80.242621161],[23.79265384200002,80.24811432500012],[23.735118035000138,80.255560614],[23.716807488000086,80.26178620000013],[23.72592207100007,80.26850006699999],[23.73601321700005,80.27358633000003],[23.74659264400009,80.27619049700003],[23.75766035200013,80.27606842700006],[23.749685092000075,80.28742096600003],[23.74537194100006,80.29165273600013],[23.737315300000116,80.2953148460001],[23.76531009200005,80.30906810100011],[23.799815300000063,80.30361562700007],[23.867686394000145,80.2822940120001],[23.95850670700014,80.2822940120001],[23.977224155000098,80.27912018400004],[23.995941602000073,80.27338288000009],[24.014496290000093,80.27057526200012],[24.032725457000083,80.27606842700006],[23.927989129000107,80.29816315300003],[23.895030144000117,80.309556382],[24.077159050000088,80.30272044499998],[24.18995201900009,80.27533600500011],[24.224619988000143,80.2822940120001],[24.209971550000144,80.29254791900003],[24.20394941500004,80.2953148460001],[24.335622592000075,80.2862816430001],[24.37476647200012,80.2953148460001],[24.359873894000142,80.30182526200018],[24.342539910000085,80.30719635600006],[24.32406660200013,80.31020742400015],[24.30640709700012,80.309556382],[24.30640709700012,80.31704336100016],[24.38135826900009,80.31635163000011],[24.40211022200009,80.32318756700015],[24.37598717500012,80.33234284100003],[24.210785352000073,80.3350283870001],[24.148773634000122,80.35053131700012],[24.187022332000055,80.371771552],[24.25977623800011,80.37579987200017],[24.48121178500008,80.35537344],[24.510508660000085,80.34878164300011],[24.600759311000104,80.31704336100016],[24.57056725400011,80.31761302300013],[24.53419030000012,80.31362539300014],[24.498545769000057,80.30581289300007],[24.47095787900014,80.2953148460001],[24.4764103520001,80.29254791900003],[24.486338738000082,80.28510163000006],[24.491465691000112,80.2822940120001],[24.48438561300014,80.27936432500009],[24.471039259000122,80.27142975500011],[24.464121941000116,80.26862213700015],[24.487966342000107,80.26137929900015],[24.5213322270001,80.25568268400013],[24.55437259200005,80.255560614],[24.57715905000006,80.26520416900014],[24.601573113000114,80.279730536],[24.725433790000068,80.29389069200012],[24.737803582000083,80.298285223],[24.748708530000073,80.30613841399999],[24.751638217000107,80.31268952000006],[24.75269616000014,80.32054271000005],[24.755137566000087,80.3272972680001],[24.784190300000148,80.33698151200015],[24.806813998000024,80.3496768250001],[24.829925977000073,80.35590241100009],[24.871836785000085,80.334662177],[24.888682488000086,80.32318756700015],[24.877777540000096,80.31500885600003],[24.866465691000116,80.30857982000013],[24.854177280000073,80.30434804900001],[24.840830925000144,80.30272044499998],[24.848806186000104,80.28603750200013],[24.831309441000144,80.27130768400015],[24.780121290000093,80.24811432500012],[24.81657962300008,80.25519440300017],[24.892425977000098,80.26129791900017],[25.045909050000088,80.25291575700011],[25.11524498800014,80.26862213700015],[25.355479363000143,80.2822940120001],[25.324473504000107,80.26797109600012],[25.225108269000117,80.25433991100009],[25.269704623000106,80.2334658870001],[25.31812584700009,80.22614166900011],[25.45281009200002,80.23078034100003],[25.513926629000082,80.24237702000013],[25.54664147200012,80.2412783870001],[25.566661004000082,80.23688385600012],[25.58757571700005,80.22907135600002],[25.60499108200011,80.21718984600005],[25.614919467000107,80.20034414300007],[25.69874108200011,80.22296784100006],[25.743907097000147,80.22553131700015],[25.780528191000087,80.21336497600005],[25.76392662900011,80.19953034100013],[25.704356316000116,80.17243073100003],[25.84742272200009,80.17259349200002],[25.93970787900014,80.18545156500011],[26.373423699000085,80.17985667550005],[26.80713951900009,80.17426178600003],[26.903493686000104,80.15192291900017],[27.003916863000057,80.11517975500009],[27.040375196000127,80.11098867400015],[27.191905144000145,80.10960521000008],[27.23910566500012,80.09731679900001],[27.171071811000076,80.07343170800014],[27.1627710300001,80.06671784100007],[27.14795983200011,80.04913971600017],[27.13624108200014,80.04266998900006],[27.14429772200009,80.03693268400008],[27.152679884000122,80.03270091400007],[27.1614689460001,80.03009674700017],[27.171071811000076,80.0289981140001],[27.158213738000143,80.01093170800003],[27.120290561000044,79.98871491100014],[27.102061394000145,79.97443268400015],[27.1346134770001,79.9552269550001],[27.224945509000122,79.92487213700011],[27.23910566500012,79.9055036480001],[27.20736738400009,79.87368398600007],[27.149668816000112,79.8549665390001],[26.919606967000078,79.84251536699999],[26.856944207000083,79.83148834800012],[26.790049675000148,79.79547760600015],[26.757660352000045,79.79083893400004],[26.649912957000083,79.78685130400008],[26.63070722700013,79.78107330900008],[26.635915561000047,79.76829661700008],[26.612803582000083,79.75967031500015],[26.586273634000122,79.75568268400018],[26.53345787900014,79.75462474200013],[26.52751712300011,79.73505280200006],[26.49512780000012,79.72333405200006],[26.296885613000086,79.69692617400005],[26.22234134200005,79.66950104400001],[25.826019727000073,79.62604401200018],[25.810801629000082,79.62091705900015],[25.80892988400012,79.60952383000001],[25.82325280000009,79.60187409100017],[25.852061394000117,79.59393952],[25.864024285000056,79.58734772300012],[25.894053582000108,79.581000067],[25.906993035000113,79.57282135600009],[25.914724155000044,79.56488678600012],[25.965098504000082,79.52619049700009],[25.968760613000114,79.51544830900018],[25.9563908210001,79.50657786700013],[25.9290470710001,79.49591705900009],[25.853200717000078,79.47785065300017],[25.823090040000125,79.46503327000015],[25.842051629000135,79.45302969000012],[25.829112175000148,79.44220612200003],[25.807383660000085,79.436672268],[25.783376498000024,79.4332542990001],[25.645681186000104,79.39769114800013],[25.41065514400009,79.37409088700016],[25.36670983200014,79.36001211100013],[25.183278842000107,79.33624909100014],[24.97494550900012,79.33445872600005],[24.963715040000125,79.33698151200018],[24.959320509000122,79.34149811400012],[24.954844597000058,79.35199616099999],[24.950043165000068,79.35683828300006],[24.946787957000137,79.36147695500001],[24.947276238000114,79.36611562700013],[24.945323113000086,79.37079498900015],[24.93490644600007,79.3756778020001],[24.920664910000085,79.37824127800003],[24.771494988000086,79.37083567900012],[24.562510613000057,79.32404205900015],[24.288096550000063,79.30988190300015],[24.258636915000096,79.2885195980001],[24.260020379000082,79.28009674700006],[24.271820509000122,79.26373932500003],[24.272308790000125,79.254380601],[24.25977623800011,79.24079010600003],[24.23853600400014,79.23110586100007],[24.05307050900006,79.18886953300014],[23.677256706666697,79.20019494533342],[23.30144290433344,79.21152035766671],[22.925629102000073,79.22284577000009],[22.736664259000094,79.26740143400018],[22.682139519000117,79.2885195980001],[22.65186608200014,79.30678945500014],[22.64470462300008,79.3096377620001],[22.642100457000083,79.317816473],[22.6549585300001,79.36424388200008],[22.895030144000142,79.41950104400016],[22.513356967000078,79.39362213700015],[22.416677280000073,79.40973541900006],[22.064219597500085,79.39075348550007],[21.711761915000096,79.37177155200011],[21.500743035000113,79.39728424700003],[21.158824089500115,79.38768138249999],[20.81690514400009,79.37807851800005],[20.791514519000145,79.39158763200014],[20.80738366000008,79.39337799700003],[20.83725019600007,79.40265534100017],[20.85303795700011,79.40521881700009],[20.763682488000114,79.43341705900015],[20.750010613000057,79.44989655200013],[20.729746941000144,79.45856354400006],[20.463267449000114,79.46369049700014],[20.196787957000083,79.46881745000015],[20.07667076900009,79.49046458500004],[20.016856316000144,79.51219310100014],[19.685313347000147,79.55390045800009],[19.66309655000009,79.56793854400003],[19.645762566000116,79.58795807500009],[19.63331139400009,79.61131419499999],[19.816579623000077,79.63568756700015],[20.208343946000127,79.64545319200009],[20.22706139400009,79.64232005400011],[20.277598504000082,79.61749909100013],[20.412608269000142,79.59186432500009],[20.783579949000085,79.58047109600011],[21.154551629000135,79.56907786700008],[21.127777540000125,79.58771393400015],[20.649424675000144,79.62653229400017],[20.495371941000087,79.67316315300017],[20.475596550000063,79.68642812700001],[20.933848503333447,79.69326406466679],[21.392100456666753,79.70010000233346],[21.850352410000113,79.70693594000006],[21.8663843110001,79.71076080900018],[21.864431186000076,79.71942780200007],[21.85303795700011,79.72866445500011],[21.8405054050001,79.73419830900013],[21.893728061000076,79.75234609600015],[22.28174889400009,79.77411530200011],[22.346934441000087,79.78880442900011],[22.287445509000065,79.8057315120001],[22.215668165000064,79.80670807500016],[21.79835045700014,79.76829661700008],[21.79835045700014,79.77521393400015],[21.807383660000056,79.77582428600012],[21.832367384000094,79.78266022300012],[21.736175977000126,79.78266022300012],[21.768809441000087,79.80463288000006],[21.853200717000078,79.80707428600007],[21.88770592500009,79.82355377800017],[21.45879153700014,79.81397125850005],[21.0298771490001,79.804388739],[20.600962761000062,79.79480621950006],[20.17204837300011,79.78522370000006],[19.996918165000068,79.74884674700014],[19.811045769000145,79.74941640800013],[19.732432488000143,79.72601959800015],[19.485606316000087,79.71796295800003],[19.41195722700013,79.73843008000007],[19.394053582000083,79.74079010600002],[19.310557488000086,79.73997630400011],[19.2435001960001,79.7279320330001],[18.952810092000078,79.7362328150001],[18.783864780000073,79.72308991100012],[18.74203535200007,79.72736237200003],[18.74781334700012,79.73065827000006],[18.76246178500014,79.74164459800012],[18.741384311000104,79.74298737200012],[18.7194116550001,79.74713776200015],[18.708669467000078,79.7551130230001],[18.721527540000096,79.76829661700008],[18.68246504000004,79.78774648600015],[18.63607832100007,79.79417552300008],[18.480153842000078,79.78595612200017],[18.46078535200013,79.78880442900011],[18.44996178500014,79.79547760600015],[18.419932488000114,79.82355377800017],[18.396332227000073,79.83075592700003],[18.322276238000114,79.84223053600014],[18.308116082000083,79.84857819200009],[18.26905358200011,79.87449778899999],[18.232106967000078,79.89061107000005],[18.194346550000116,79.90009186400006],[18.111989780000073,79.9055036480001],[18.14673912900011,79.91644928600009],[18.295258009000065,79.94513580900004],[18.41309655000009,79.94647858300011],[18.52051842500012,79.96332428600012],[18.584483269000117,79.95453522300006],[18.62354576900009,79.95673248900015],[18.659922722000143,79.96527741100009],[18.680511915000096,79.98061758000004],[18.556976759000094,79.98061758000004],[18.577810092000078,79.98305898600016],[18.61597741000014,79.99762604400009],[18.668711785000113,80.01015859600008],[18.686696811000076,80.00950755400014],[18.680511915000096,79.99485911700013],[18.708181186000104,79.99164459800006],[18.764414910000085,79.97443268400015],[18.789805535000113,79.97443268400015],[18.80616295700011,79.98261139500006],[18.80990644600007,79.992865302],[18.8019311860001,80.00238678600009],[18.78296959700009,80.00853099200008],[18.822927280000044,80.01947663000011],[18.861582879000082,80.02448151200015],[18.89861087300011,80.03343333499998],[18.93376712300008,80.056341864],[18.83668053500014,80.0312360700001],[18.37549889400009,80.03900788000011],[18.307953321000127,80.05874258000013],[18.234873894000117,80.04889557500003],[18.213552280000073,80.05320872600011],[18.17400149800011,80.07245514500006],[18.15235436300011,80.07684967700006],[18.15235436300011,80.08364492400007],[18.20069420700014,80.07196686400009],[18.25953209700012,80.06598541900017],[18.31788170700011,80.06891510600009],[18.3645939460001,80.08364492400007],[18.148936394000117,80.09731679900001],[18.11207116000014,80.10830312700006],[18.06617272200006,80.12836334800012],[18.02320397200012,80.13800690300008],[17.995371941000144,80.11782461100007],[17.985118035000113,80.12079498900009],[17.959727410000113,80.12710195500004],[17.93336022200012,80.13043854400014],[17.801605665000096,80.12872955900006],[17.782969597000115,80.13825104400014],[17.81812584700009,80.14057038000003],[17.885264519000145,80.16111888200005],[17.950938347000147,80.170884507],[18.007823113000086,80.19037506700009],[18.037445509000122,80.1928571640001],[18.061289910000113,80.18235911700013],[18.07105553500014,80.17987702],[18.088389519000117,80.17959219000006],[18.138682488000086,80.18671295800011],[18.34066816500004,80.17987702],[18.39478600400011,80.17202383000013],[18.41146894600007,80.17430247600002],[18.442637566000144,80.18256256700009],[18.570323113000086,80.18475983300009],[18.646494988000086,80.16620514500006],[18.68140709700009,80.161851304],[18.710459832000083,80.165187893],[18.769297722000147,80.18671295800011],[18.700450066000084,80.2071800800001],[18.854340040000068,80.19757721600011],[18.907969597000143,80.18829987200014],[18.959483269000145,80.16254303600012],[19.182302280000073,80.11969635600003],[19.24293053500014,80.0904808610001],[19.271250847000086,80.08527252800009],[19.301524285000085,80.08567942900011],[19.331309441000084,80.09100983300009],[19.391856316000087,80.11375560100011],[19.404307488000086,80.12262604400013],[19.39942467500012,80.13141510600003],[19.39942467500012,80.13825104400014],[19.493337436000104,80.13947174700014],[19.584808790000125,80.15192291900017],[19.54460696700002,80.17202383000013],[19.48568769600007,80.17719147300011],[19.375743035000113,80.17243073100003],[19.2771916020001,80.18374258000001],[19.22429446700005,80.19769928600009],[19.19239342500012,80.22553131700015],[19.1502384770001,80.23851146000014],[19.136485222000086,80.24469635600012],[19.12867272200009,80.25043366100009],[19.113617384000065,80.25458405200011],[19.10515384200002,80.25804271000011],[19.09896894600007,80.26373932500009],[19.09896894600007,80.26951732000008],[19.100271030000073,80.27558014500006],[19.0983179050001,80.2822940120001],[19.09205162900014,80.29340241100014],[19.088715040000125,80.30158112200014],[19.08171634200005,80.30890534100014],[19.06421959700009,80.31704336100016],[18.99952233200008,80.33169179900007],[18.9816186860001,80.34369538],[18.9954533210001,80.34589264500009],[19.019867384000065,80.35569896000011],[19.03345787900011,80.35797760600009],[19.282481316000087,80.33930084800004],[19.337168816000116,80.32746002800015],[19.612966342000107,80.22768789300014],[19.6717228520001,80.21747467700011],[19.85181725400014,80.22077057500015],[19.822113477000098,80.23285553600014],[19.738942905000044,80.23550039300012],[19.715179884000065,80.24811432500012],[19.730235222000147,80.2576358090001],[19.838145379000082,80.28974030199998],[19.828786655000073,80.2922223980001],[19.804535352000073,80.30272044499998],[19.815114780000044,80.30223216400002],[19.823090040000068,80.30341217700011],[19.838145379000082,80.309556382],[19.821787957000083,80.31533437700014],[19.770518425000144,80.32318756700015],[19.792979363000143,80.32705312700016],[19.819346550000148,80.32819245000009],[19.84327233200011,80.33197663000011],[19.858653191000144,80.34369538],[19.791840040000096,80.34511953300007],[19.770518425000144,80.35053131700012],[19.807790561000104,80.35285065300017],[19.878184441000116,80.37372467700006],[19.91382897200009,80.37848541900014],[19.91382897200009,80.385239976],[19.528819207000083,80.38837311400006],[19.48707116000014,80.39313385600015],[19.468760613000086,80.40888092700011],[19.463552280000073,80.43634674700014],[19.46265709700009,80.45343659100011],[19.468109571000127,80.46409739800012],[19.500498894000117,80.47223541900014],[19.542979363000114,80.47247955900009],[19.619151238000082,80.4603945980001],[19.660166863000086,80.43988678600014],[19.674327019000117,80.43988678600014],[19.68848717500012,80.44847239800005],[19.68238366000014,80.45465729400003],[19.65381920700014,80.46409739800012],[19.63550866000008,80.481146552],[19.63835696700005,80.49591705900015],[19.65674889400009,80.50503164300007],[19.80225670700011,80.49298737200014],[19.838145379000082,80.4815127620001],[19.83187910200013,80.47406647300012],[20.014008009000094,80.47223541900014],[20.036794467000107,80.46784088700015],[20.022715691000087,80.45115794500013],[20.016286655000073,80.44611237200009],[20.04639733200011,80.43768952000015],[20.07837975400011,80.43305084800011],[20.07398522200012,80.42316315300012],[20.071543816000087,80.41941966399999],[20.091075066000144,80.41315338700012],[20.098887566000144,80.41258372600005],[20.087657097000147,80.40021393400012],[20.081228061000047,80.38930898600012],[20.084971550000063,80.38141510600015],[20.105479363000114,80.37848541900014],[20.12794030000012,80.38043854400009],[20.141449415000096,80.38580963700015],[20.160329623000052,80.40517812700007],[20.191416863000143,80.42137278900013],[20.234060092000075,80.42739492400013],[20.38982181100002,80.42348867400013],[20.42351321700002,80.41315338700012],[20.42790774800011,80.39154694200012],[20.48454837300011,80.37128327000003],[20.544606967000107,80.35797760600009],[20.536143425000144,80.34332916900009],[20.530772332000108,80.336371161],[20.523448113000086,80.33002350500004],[20.558116082000083,80.31321849200005],[20.591807488000086,80.30272044499998],[20.627452019000117,80.29913971600011],[20.798024936000047,80.31622955900015],[20.839203321000127,80.309556382],[20.821055535000113,80.30292389500012],[20.773773634000065,80.29120514500015],[20.75749759200005,80.2822940120001],[20.74903405000009,80.26862213700015],[20.755056186000104,80.26080963700018],[20.784027540000096,80.24811432500012],[20.81324303500014,80.22675202000006],[20.82569420700014,80.22077057500015],[20.85287519600007,80.21393463700004],[20.88257897200009,80.21124909100014],[21.19312584700012,80.23358795800009],[21.280935092000107,80.25836823100006],[21.32593834700009,80.26178620000013],[21.316742384000122,80.25771719],[21.309580925000148,80.25275299700013],[21.303558790000068,80.24721914300011],[21.2986759770001,80.2412783870001],[21.309580925000148,80.23847077000015],[21.317393425000148,80.23432038000011],[21.332774285000113,80.22077057500015],[21.31853274800011,80.22077057500015],[21.31853274800011,80.21336497600005],[21.345469597000147,80.21442291900011],[21.36963951900006,80.21800364799998],[21.392100457000083,80.22475820500004],[21.41480553500011,80.23509349200013],[21.41781660200013,80.24030182500003],[21.417491082000083,80.24664948100013],[21.420176629000082,80.25210195500009],[21.43238366000014,80.25433991100009],[21.443125847000147,80.25507233300002],[21.454844597000143,80.25739166900016],[21.466156446000127,80.26080963700018],[21.476084832000137,80.26520416900014],[21.53150475400011,80.27350495000006],[21.648122592000107,80.23761627800015],[21.702647332000108,80.2412783870001],[21.666758660000113,80.25291575700011],[21.654307488000086,80.25433991100009],[21.677419467000046,80.27484772300012],[21.723399285000113,80.28042226800011],[21.846690300000148,80.27212148600016],[21.8663843110001,80.26121653899999],[21.89795983200011,80.22426992400013],[21.897634311000076,80.21344635600003],[21.87916100400014,80.20648834800015],[21.8405054050001,80.20034414300007],[21.775563998000024,80.182074286],[21.71697024800008,80.1738141950001],[21.59961998800014,80.12523021000005],[21.621836785000113,80.11517975500009],[21.64991295700011,80.11627838700004],[21.76343834700012,80.14691803600014],[21.82699629000012,80.15192291900017],[21.854502800000148,80.14769114800005],[21.905528191000144,80.12946198100018],[22.065196160000113,80.11098867400015],[22.058929884000065,80.103461005],[22.0799259770001,80.0947940120001],[22.120616082000083,80.08344147300012],[22.156016472000086,80.06126536700008],[22.195323113000086,80.05097077000015],[22.216644727000045,80.04266998900006],[22.207041863000086,80.03497955900004],[22.175059441000087,80.02155182500015],[22.223480665000068,80.00853099200008],[22.20281009200005,79.99233633000001],[22.19556725400014,79.98802317900011],[22.23536217500012,79.98187897300012],[22.283213738000143,79.98305898600016],[22.330088738000086,79.99176666900014],[22.36744225400014,80.00853099200008],[22.344411655000073,80.02456289300015],[22.31910241000014,80.03583405200014],[22.365733269000145,80.04498932500003],[22.4381616550001,80.01089101800004],[22.477305535000113,80.015366929],[22.43726647200009,80.0385602890001],[22.42367597700013,80.04433828300007],[22.37875410200013,80.05003489800005],[22.357758009000094,80.05609772300015],[22.346934441000087,80.07001373900012],[22.448985222000086,80.06549713700018],[22.46306399800011,80.07001373900012],[22.448903842000107,80.08173248900012],[22.3737085300001,80.11098867400015],[22.390798373000052,80.12518952000006],[22.408376498000077,80.14508698100015],[22.408864780000073,80.15058014500009],[22.40105228000007,80.1605492210001],[22.401621941000144,80.16620514500006],[22.4073999360001,80.17080312700001],[22.43580162900014,80.18671295800011],[22.456879102000073,80.20490143400012],[22.465993686000047,80.22162506700015],[22.463226759000094,80.23965078300007],[22.449473504000082,80.26178620000013],[22.47852623800014,80.275864976],[22.549978061000104,80.28465403900007],[22.576019727000073,80.29901764500012],[22.56421959700012,80.31085846600008],[22.381114129000082,80.33755117400004],[22.37273196700005,80.34052155200014],[22.34164472700013,80.35569896000011],[22.333343946000124,80.36420319200015],[22.33773847700013,80.3838565120001],[22.35710696700005,80.402085679],[22.381358269000117,80.41522858300014],[22.387950066000116,80.42690664300011],[22.457367384000037,80.440863348],[22.682139519000117,80.42690664300011],[22.682139519000117,80.41941966399999],[22.668793165000125,80.40399811400015],[22.633636915000068,80.371771552],[22.61329186300014,80.35797760600009],[22.635508660000113,80.34137604400003],[22.674164259000065,80.33315664300012],[22.750336134000037,80.33002350500004],[22.735118035000056,80.33698151200015],[22.719574415000068,80.34174225500006],[22.70606530000009,80.34760163],[22.696462436000104,80.35797760600009],[22.715993686000104,80.35976797100007],[22.773122592000078,80.37669505400005],[22.792246941000144,80.37909577],[22.801605665000064,80.38190338700015],[22.80567467500012,80.38837311400006],[22.807953321000095,80.39728424700009],[22.814219597000147,80.404242255],[22.823008660000113,80.409369208],[22.83301842500012,80.41258372600005],[22.827159050000148,80.41571686400012],[22.812510613000143,80.42690664300011],[22.828461134000065,80.43414948100013],[22.81006920700011,80.44424062700013],[22.79135175900006,80.45921458500005],[22.80567467500012,80.4815127620001],[22.792491082000083,80.4833031270001],[22.774099155000044,80.488023179],[22.757578972000147,80.4953473980001],[22.750336134000037,80.504828192],[22.759776238000143,80.51398346600008],[22.781586134000122,80.51727936400012],[22.826182488000086,80.51504140800013],[22.976898634000122,80.47406647300012],[23.267425977000073,80.45380280200011],[23.360606316000116,80.43305084800011],[23.34449303500014,80.42694733300011],[23.324554884000065,80.42255280200004],[23.28541100400011,80.41941966399999],[23.301931186000104,80.41425202000006],[23.309906446000127,80.41303131700013],[23.319590691000112,80.41258372600005],[23.294932488000114,80.40509674700009],[23.189463738000114,80.40302155200008],[23.14389082100007,80.39354075700005],[23.120941602000073,80.39154694200012],[23.1424259770001,80.38117096600003]]],[[[19.987315300000063,80.48940664300007],[19.90699303500014,80.48834870000003],[19.881521030000073,80.49030182500016],[19.8592228520001,80.49603913000014],[19.852224155000044,80.50503164300007],[19.871348504000107,80.51691315300012],[19.95875084700009,80.5402692730001],[20.02556399800011,80.5424665390001],[20.063487175000144,80.53754303600014],[20.100352410000113,80.52838776200015],[20.133555535000113,80.51504140800013],[20.105153842000107,80.50714752800017],[20.044769727000073,80.5023460960001],[19.987315300000063,80.48940664300007]]],[[[20.776133660000113,80.6413028020001],[20.763682488000114,80.63833242400001],[20.750010613000057,80.63914622600011],[20.752777540000125,80.63519928600014],[20.75749759200005,80.62490469000012],[20.72478274800011,80.6280785180001],[20.66651451900009,80.64215729400003],[20.529633009000065,80.65936920800014],[20.49610436300011,80.6596133480001],[20.51783287900011,80.66583893400006],[20.791514519000145,80.6596133480001],[20.78589928500014,80.64838288],[20.776133660000113,80.6413028020001]]],[[[21.337168816000084,80.6975772160001],[21.34791100400011,80.69330475499999],[21.357758009000122,80.68744538000014],[21.366953972000086,80.68012116100014],[21.174489780000044,80.6596133480001],[21.13803144600007,80.65619538000009],[21.089528842000103,80.65717194200015],[21.045746290000125,80.66791413000006],[21.024261915000096,80.69379303600009],[21.061208530000044,80.69334544499999],[21.214610222000147,80.71124909100006],[21.332774285000113,80.70742422100012],[21.33334394600007,80.70246002800017],[21.33179772200012,80.70111725500009],[21.329112175000148,80.70099518400012],[21.32593834700009,80.70001862200003],[21.337168816000084,80.6975772160001]]],[[[21.003184441000087,80.71426015800013],[20.994476759000094,80.70294830900015],[20.977875196000127,80.69708893400012],[20.897308790000068,80.69379303600009],[20.887868686000076,80.69183991100012],[20.873871290000096,80.68301015800006],[20.866709832000137,80.68012116100014],[20.821543816000116,80.68012116100014],[20.81185957100007,80.68170807500017],[20.808929884000122,80.68569570500016],[20.808360222000147,80.69025299700009],[20.80518639400009,80.69379303600009],[20.8033960300001,80.69725169499999],[20.805430535000138,80.70184967700011],[20.805511915000125,80.70575592700011],[20.798350457000083,80.70742422100012],[20.776377800000148,80.70815664300015],[20.755381707000108,80.71246979400014],[20.73796634200005,80.71312083500003],[20.69483483200014,80.70526764500012],[20.674815300000148,80.70742422100012],[20.663747592000046,80.71344635600003],[20.64665774800008,80.72793203300007],[20.63331139400009,80.7347679710001],[20.56128991000014,80.739935614],[20.527679884000122,80.74738190300017],[20.51783287900011,80.76947663000006],[20.622080925000063,80.7700869810001],[20.65447024800008,80.76203034100008],[20.69410241000011,80.74477773600007],[20.71827233200011,80.737697658],[20.838226759000065,80.72321198100015],[20.970469597000147,80.7218285180001],[21.003184441000087,80.71426015800013]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Poland","sov_a3":"POL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Poland","adm0_a3":"POL","geou_dif":0,"geounit":"Poland","gu_a3":"POL","su_dif":0,"subunit":"Poland","su_a3":"POL","brk_diff":0,"name":"Poland","name_long":"Poland","brk_a3":"POL","brk_name":"Poland","brk_group":null,"abbrev":"Pol.","postal":"PL","formal_en":"Republic of Poland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Poland","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":1,"mapcolor13":2,"pop_est":38482919,"gdp_md_est":667900,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"PL","iso_a2":"PL","iso_a3":"POL","iso_n3":"616","un_a3":"616","wb_a2":"PL","wb_a3":"POL","woe_id":23424923,"woe_id_eh":23424923,"woe_note":"Exact WOE match as country","adm0_a3_is":"POL","adm0_a3_us":"POL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"POL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.00212649800008,54.344916083000065],[19.377207879000053,54.377630927],[19.45997155000012,54.40102773600009],[19.499278191000116,54.40639883000006],[19.53101647200006,54.414943752000084],[19.592539910000113,54.452378648],[19.60954837300008,54.4567324890001],[19.630770304000066,54.446651917000025],[19.680276326000122,54.436678365000034],[19.75825597400009,54.43425566900004],[19.964703410000112,54.42784169600011],[20.352069946000142,54.41574941100003],[20.64083784950006,54.406783549500034],[20.92960575300009,54.39781768800006],[21.2874133710001,54.38675893200005],[21.720771932000048,54.37327138300009],[21.998946167000042,54.36466725750009],[22.277120402000094,54.35606313200003],[22.510387817000094,54.34877675400011],[22.698386678000073,54.342937318000054],[22.76721968600006,54.35626983700007],[22.786029907000085,54.36520986000011],[22.811343908000055,54.392633361000094],[22.812694946000104,54.394096985000054],[22.837602986000093,54.400918275000095],[22.858893677000083,54.39921295200014],[22.918838338000057,54.381126201000114],[22.929690389000115,54.3802993780001],[22.95242801900008,54.38308990500005],[22.96265995300007,54.38169464200007],[22.97330529800007,54.375390117000045],[22.978989706000107,54.36758697600004],[22.98343387800011,54.359783835000115],[22.989738404000036,54.35337595600009],[23.001003866000076,54.34888010700007],[23.035317016000107,54.3465029910001],[23.04162154200011,54.3409736130001],[23.03800419100014,54.331465149000024],[23.03221643100008,54.32014801000014],[23.032113078000037,54.30955434200007],[23.050096476000135,54.294826559000086],[23.073040812000073,54.29487823500008],[23.096915324000065,54.30082102500009],[23.11706913200004,54.30345652300011],[23.135259236000078,54.29828888000011],[23.197270956000125,54.267851461000134],[23.235408162000084,54.25415720700002],[23.316023397000095,54.23627716100006],[23.335990126000123,54.22629379600005],[23.35447066200004,54.21705352800004],[23.364082479000047,54.20826853500005],[23.382272583000088,54.187856344000096],[23.391470988000094,54.18010487900011],[23.40180627400008,54.17597076500007],[23.423303670000024,54.17250844300014],[23.432502075000116,54.16930450500006],[23.449038534000124,54.15493845700007],[23.462991170000123,54.13493967800014],[23.47394657400008,54.11256378200005],[23.48159468600008,54.09122141500006],[23.496167440000132,54.04455759700008],[23.496477498000104,54.02197499600004],[23.48159468600008,54.00662709600007],[23.469502401000085,54.00068430600007],[23.464128052000035,53.9967568970001],[23.459270467000096,53.99231272400007],[23.458650350000138,53.981615703000074],[23.46288781700008,53.97252065000009],[23.47094934100008,53.96528595000012],[23.48159468600008,53.96011830700013],[23.48748579900007,53.95562245700012],[23.490379679000057,53.95060984300005],[23.48975956200007,53.945132142000055],[23.485625448000064,53.93929270400008],[23.486865682000087,53.909992168000116],[23.497200968000097,53.885549215000076],[23.51043013500009,53.86250152700009],[23.52066206900008,53.837335103000065],[23.52986047400009,53.784160055000115],[23.540402466000046,53.76359283500002],[23.56469038900013,53.742457174000094],[23.56469038900013,53.74240549800007],[23.564793742000063,53.74240549800007],[23.56706750400008,53.68101389600008],[23.59094201600007,53.61125071200013],[23.675794719000123,53.45570465100007],[23.72292362500013,53.39710357700005],[23.742974080000096,53.36547760000008],[23.782971639000063,53.270935568000084],[23.80064497900014,53.24246185400005],[23.81862837700004,53.22796661400011],[23.828446899000113,53.21383311000005],[23.83619836500011,53.1992861950001],[23.84808394300006,53.1838091030001],[23.865963989000104,53.172001038000104],[23.88312056500007,53.16399119100004],[23.89366255700011,53.15195058200004],[23.891388794000108,53.127714336000054],[23.88239709500007,53.11329661100004],[23.87030481000008,53.10125600200007],[23.86069299300007,53.087484233000026],[23.859349406,53.06797638000012],[23.86792769400003,53.05102651000004],[23.898210083000066,53.027539571000034],[23.909682251000078,53.01273427400011],[23.911335897000125,53.00506032400003],[23.90895878100008,52.99304555300006],[23.909062134000123,52.98666351400004],[23.9175370690001,52.95880991700008],[23.917950480000115,52.9508000700001],[23.91495324700011,52.944624735000104],[23.9038944910001,52.93113718700005],[23.901103963000136,52.92325653200001],[23.902034139000108,52.91253367100009],[23.90544478300012,52.90653920500006],[23.909475545000134,52.90150075300011],[23.91205936700004,52.8938526410001],[23.92042563900011,52.772624530000115],[23.92249800600007,52.74259572400012],[23.908752075000024,52.69985931500011],[23.868961222000106,52.67004201300011],[23.736152792000038,52.61490325900012],[23.569031209000116,52.58588694300005],[23.480457805000068,52.554415995000085],[23.392297810000116,52.509638367000036],[23.270548137000016,52.3951233940001],[23.230447225000116,52.36507354700004],[23.212050415000135,52.34750356100008],[23.165644979000035,52.289393413000084],[23.16874556500008,52.28892832500014],[23.176099382000128,52.28513571000013],[23.18352502400009,52.28130605100009],[23.194480428000045,52.2714616900001],[23.197684367000136,52.25831003900004],[23.189726196000066,52.24053334600009],[23.21225712100008,52.23167083700011],[23.284190715000136,52.21973358200006],[23.29959029200012,52.22342844600007],[23.312716105000078,52.21528940800005],[23.374831177000146,52.200949199000064],[23.395811808000076,52.19957977300007],[23.395811808000076,52.19337860100009],[23.388473755000064,52.184154358000086],[23.39136763500005,52.18250071200003],[23.405733684000065,52.18591135700006],[23.418239380000045,52.18250071200003],[23.42723107900011,52.17679046700007],[23.43673954200008,52.175679424000094],[23.450485474000118,52.18591135700006],[23.454412882000067,52.18146718400007],[23.464334757000074,52.176351217000075],[23.47094934100008,52.17162282400008],[23.48769250500004,52.18162221300011],[23.49151656100005,52.17410329200007],[23.48872603300009,52.162140199000106],[23.484695272000096,52.158626201000054],[23.51249719200007,52.124442241000054],[23.531927531000036,52.120644023000125],[23.57936649600012,52.121548361000066],[23.598176717000058,52.11452036600008],[23.604791301000148,52.106768901000066],[23.609855591000013,52.09862986200005],[23.615850057000042,52.09229950000013],[23.62525516800011,52.08971567800012],[23.637450806000118,52.0844705210001],[23.641481567000113,52.07292083800007],[23.642515096000096,52.061396994000035],[23.650783325000134,52.04894297300007],[23.664942668000094,52.011167501000074],[23.676414835000088,51.99408844000004],[23.660705200000052,51.9868795780001],[23.647579386000075,51.9740896610001],[23.628665812000122,51.94633941700007],[23.622154582000064,51.92794260700006],[23.621431111000078,51.89556732200009],[23.614919881000105,51.88425018400011],[23.618847290000076,51.88326833200003],[23.62060428900014,51.88321665500012],[23.62132775800012,51.8820280970001],[23.621844523000078,51.87742889400005],[23.609855591000013,51.87326894200004],[23.6057214760001,51.85159067800003],[23.59455936700007,51.84329661100008],[23.610269002000024,51.82518402100007],[23.628665812000122,51.80975860600006],[23.617503703000096,51.78650421200004],[23.598280070000072,51.774670309000044],[23.577299439000083,51.76668630000005],[23.560349569000067,51.75454233800005],[23.556318806000064,51.74735931400011],[23.55228804500007,51.736636455000074],[23.546603637000118,51.71358876600004],[23.550220988000035,51.70842112200012],[23.556938924000036,51.7013931270001],[23.55921268700007,51.695166118000024],[23.55001428200006,51.692427267000085],[23.546086873000093,51.689636739000036],[23.549290812000066,51.68320302300009],[23.555388631000113,51.6763042200001],[23.560349569000067,51.67196340000004],[23.547533813000086,51.662067363000034],[23.54143599400004,51.6597419230001],[23.53244429500009,51.6589667770001],[23.53244429500009,51.65149953300008],[23.543813110000087,51.64379974400006],[23.54515669700004,51.634110413000144],[23.539885702000106,51.6071094780001],[23.543399699000076,51.59274342900011],[23.55208133900004,51.57881663100011],[23.57399214700007,51.555303854000044],[23.56717085700012,51.554890442000016],[23.560349569000067,51.555303854000044],[23.57275191200003,51.53967173300009],[23.588668253000066,51.53589935300004],[23.602310832000057,51.53078338700007],[23.60623824100014,51.51739919100003],[23.608098592000147,51.51122385700006],[23.614816528000063,51.49721954400013],[23.63052616400003,51.49042409300009],[23.648612915000054,51.48621246400006],[23.662772258000103,51.480192159000126],[23.647165975000064,51.46019338000008],[23.648716268000072,51.4539663700001],[23.68943729700004,51.41642344200008],[23.69760217300006,51.404434509000026],[23.686026652000123,51.4010497030001],[23.678895304000065,51.39407338500013],[23.677655070000128,51.38378977500011],[23.68385624200002,51.370276388000065],[23.66556278500005,51.36580637600014],[23.647786092000015,51.353998312000044],[23.634040161000087,51.33929636700012],[23.628665812000122,51.3259638480001],[23.635177043000084,51.30469899600012],[23.650886678000063,51.299608867000046],[23.6702136640001,51.299376323000075],[23.687266886000145,51.292400005000104],[23.7426640220001,51.216254781],[23.765194946000122,51.19902069200003],[23.816044556000037,51.17878936800011],[23.863586873000145,51.148274434000115],[23.874748983000103,51.13613047300004],[23.858212524000095,51.13073028600007],[23.854491821000092,51.12153188100007],[23.869271281000096,51.10173980700009],[23.895522909000135,51.076108297000125],[23.9042045490001,51.0627241010001],[23.915986776000096,51.02086619100001],[23.915986776000096,51.01466501900012],[23.911749308000136,51.00681020100009],[23.919087361000038,51.002727763000074],[23.931799764000086,50.99947214800011],[23.9439954020001,50.994201151000084],[23.95505415800011,50.98355580700007],[23.957844685000083,50.97533925400006],[23.958878214000066,50.96634755500011],[23.96435591600004,50.95322174100005],[23.979342081000112,50.93751210600007],[24.046934855000075,50.89803131100004],[24.1302372640001,50.86893748000002],[24.143156372000107,50.85643178300003],[24.13085738100008,50.839068502000025],[24.10047163900012,50.834986064000105],[24.067295369000107,50.834831034000075],[24.046934855000075,50.829094951000116],[24.02047652100009,50.838551737000074],[23.992881307000086,50.83622629800004],[23.969936971000067,50.825167542000145],[23.9576379800001,50.80801096700009],[23.959498332000123,50.78889068700008],[23.974277791000134,50.77617828400014],[23.997945598000058,50.76920196600013],[24.025850871000046,50.767031555000045],[24.025850871000046,50.76083038400006],[24.01282841000011,50.743312073000105],[24.026884400000114,50.728015849000144],[24.054169555000044,50.71716379800009],[24.081041301000138,50.71297800700006],[24.074943482000094,50.69018870100007],[24.082798299000018,50.66915639300006],[24.10816542300006,50.63028741100004],[24.108429809000086,50.62988230400009],[24.08527876800008,50.604405823000064],[24.09540734900014,50.55686350500014],[24.102538696000092,50.543634338000054],[24.107706340000078,50.54084381100008],[24.106466105000067,50.5386217250001],[24.093960408000044,50.52714955700006],[24.07504683500011,50.51428212500008],[24.010657999000017,50.49278472900004],[24.007867472000072,50.480744121000065],[24.00941776500008,50.46146881100012],[24.007764120000047,50.448498027000085],[24.003216593000104,50.437697652000054],[23.981305786000036,50.404779765000114],[23.928699178000045,50.39082712800012],[23.747521606000106,50.38938018800013],[23.713001749000057,50.38240387000013],[23.69574182100007,50.376771138],[23.68220259600008,50.368244528000105],[23.671247193000085,50.353568421],[23.658677406000038,50.327004927000104],[23.658018026000093,50.325611471000116],[23.644168741000044,50.31269236300008],[23.565310506000117,50.25781199200008],[23.536371704000143,50.242825826000114],[23.536268351000018,50.242825826000114],[23.536164999000107,50.24277415000009],[23.536061646000064,50.24277415000009],[23.48159468600008,50.21595408200011],[23.436429484000087,50.193474834000114],[23.207916301000097,50.033949687000074],[23.177840617000125,50.003977356000114],[23.141253702000085,49.98547719400008],[23.101462850000075,49.95710683200007],[22.993045695000117,49.85442576100007],[22.95118778500006,49.82662384100012],[22.94591678800012,49.81835561100007],[22.937751913000113,49.798201803],[22.933101034000032,49.79107045600006],[22.92441939200009,49.78543772500004],[22.90674605300009,49.78120025700008],[22.897961060000085,49.777427877000065],[22.888245890000064,49.76972808800008],[22.826647583000124,49.69738108300001],[22.80980106600012,49.68632232700011],[22.798845662000073,49.683273417000066],[22.77734826600002,49.68048289000012],[22.766186157000078,49.67423004200003],[22.75895145600012,49.66560007800007],[22.741691528000047,49.633664042000106],[22.665830526000033,49.567363180000086],[22.640922485000146,49.52876088500008],[22.660146118000085,49.49300079400007],[22.666864054000087,49.47837636400001],[22.67306522600009,49.43584666000007],[22.67678592900009,49.42447784500006],[22.679576456000063,49.418948467000064],[22.69259891700008,49.4055125940001],[22.71419966600007,49.39062978100006],[22.71978072100009,49.38298167000008],[22.724224894000088,49.36706532900007],[22.737764120000065,49.27539133800005],[22.73394006300012,49.260870260000104],[22.717093547000047,49.23043284100004],[22.702934204000087,49.19503448500012],[22.687121216000094,49.173382060000044],[22.681746867000125,49.16123809800004],[22.68784468600009,49.15591542600009],[22.69249556500006,49.157930807000035],[22.705724731000146,49.1688345340001],[22.721434367000114,49.16159983300013],[22.720194132000103,49.16118642200013],[22.716370077000136,49.160566305000145],[22.748822876000073,49.14558014000008],[22.77807173700012,49.120310364000034],[22.796468546000114,49.1113703420001],[22.84132369000011,49.094885559],[22.853415975000075,49.08475697900005],[22.853519328000118,49.07628204400007],[22.84442427600004,49.05669667600002],[22.843184041000114,49.04310577400013],[22.847524862000085,49.033700664000094],[22.86375126100009,49.0153555300001],[22.865014020000046,49.01323735400007],[22.866955200000064,49.00998118100006],[22.855276326000077,48.99401316400011],[22.83501916500009,48.99974924800006],[22.81290165200008,49.012875062000035],[22.79502160600012,49.019024556],[22.783962850000105,49.02134999600011],[22.76546268700008,49.03840321900006],[22.755334106000134,49.04470774300009],[22.744482055000077,49.04553456700009],[22.721951132000072,49.04103871700007],[22.685777629000142,49.04279571600006],[22.664383586000042,49.04145212800009],[22.642886190000098,49.04315745100007],[22.618288208000106,49.05421620700005],[22.580771118000115,49.08144968700006],[22.56072066300007,49.08553212500007],[22.539636678000136,49.07219960600013],[22.50501346900012,49.08341339200009],[22.42677535000007,49.085635478000086],[22.390085083000084,49.093025208000114],[22.33944217900003,49.1264598600001],[22.31815148900006,49.1319892380001],[22.262857707000137,49.13059397400011],[22.21593550600008,49.139999085000056],[22.208494100000053,49.14418487600011],[22.206220337000047,49.15048940000011],[22.209010864000106,49.15694895400008],[22.208907511000064,49.163976949000066],[22.197952108000095,49.171986796000056],[22.18968387800004,49.17302032500003],[22.165706014000136,49.17110829700002],[22.15568078600012,49.17152170800003],[22.144105265000064,49.17488067700006],[22.11154911300011,49.18862660800008],[22.040752401000077,49.19746327800007],[22.01243371600009,49.211054180000076],[22.005819133000102,49.24288686100002],[21.99321008300006,49.27818186500011],[21.96447798600005,49.30856760700007],[21.928407836000048,49.33078847200011],[21.87456099500011,49.348358460000064],[21.837870727000052,49.37042429700008],[21.81957727000008,49.37724558600013],[21.799423461000117,49.374816793000065],[21.782163533000126,49.36448150600006],[21.768004191000074,49.353474427000066],[21.75756555200013,49.34892690100014],[21.742165975000148,49.35709177700005],[21.708576294000125,49.39088816400004],[21.69172977700015,49.40215362600008],[21.68180790200006,49.40406565400011],[21.666304972000148,49.401791890000084],[21.65876021300008,49.40246368400008],[21.648631632000047,49.40706288700002],[21.63002811700008,49.41889679000005],[21.619899536000048,49.423340963000044],[21.601192668000067,49.4264932260001],[21.52956913300008,49.42122222900008],[21.514421954000113,49.41721268200007],[21.496186157000125,49.412385560000075],[21.481510051000043,49.41522776400006],[21.44440637200006,49.4099050910001],[21.427869913000052,49.409801738000084],[21.330408163000072,49.42778513600007],[21.27439091000005,49.44726715100006],[21.2605416260001,49.44943756100014],[21.242454875000078,49.44127268500003],[21.211242310000102,49.41109364900012],[21.194085734000055,49.40060333300007],[21.172588338000082,49.398277893000056],[21.157292114000143,49.405150859000116],[21.14302941900007,49.41553782200003],[21.12494266700014,49.42365102200002],[21.10943973800005,49.424581198000084],[21.068822062000095,49.419206848000044],[21.05352583800004,49.41445261600003],[21.033268677000137,49.399673157000024],[21.04546431500006,49.390578105000145],[21.06851200300011,49.38143137600008],[21.080707641000117,49.366341858000055],[21.07254276600011,49.357195130000086],[21.054042602000095,49.354766337000115],[21.032958618000063,49.354611308000074],[21.017248983000087,49.35244089800008],[20.99668176300011,49.339366761000036],[20.964022258000114,49.308102519000045],[20.94242150900007,49.29585520500012],[20.91896040800009,49.29032582600009],[20.900563599000094,49.29259958900013],[20.88433719900007,49.30029937800003],[20.868007446000036,49.31140981100003],[20.849300578000054,49.32050486200012],[20.833590943000075,49.32205515600003],[20.816537719000053,49.32138336200006],[20.794110148000073,49.32365712600006],[20.77829716000008,49.33120188400002],[20.68951704900013,49.40049998000006],[20.67391076600009,49.40230865500004],[20.63608361800004,49.398329570000065],[20.614482870000046,49.40044830300013],[20.60528446400005,49.400034892000114],[20.59505253100008,49.396262512000106],[20.579136189000053,49.38339508100009],[20.567664022000116,49.3763670860001],[20.543996215000107,49.370837708000096],[20.522085408000066,49.37435170500004],[20.437542765000074,49.4025153610001],[20.421936483000138,49.40018992200007],[20.422143188000092,49.38298167000008],[20.37046675600007,49.38168975800004],[20.32953902100013,49.391766663000084],[20.317653443000097,49.39161163300013],[20.307421509000022,49.38659902000006],[20.30370080600011,49.38039784800009],[20.301633748000143,49.37119944300008],[20.296466105000064,49.356936747000105],[20.28933475700012,49.343087464000064],[20.28437382000007,49.33864329100004],[20.20716923000009,49.33419911700014],[20.19197635900005,49.32861806300011],[20.170168904000036,49.31161651600009],[20.160350382000075,49.30562205000007],[20.138336222000078,49.307327373000135],[20.13585575400012,49.30887766500007],[20.130171346000054,49.303916728000104],[20.111051066000073,49.27585642500008],[20.10536665900011,49.263970846000056],[20.09844201700014,49.252860413000036],[20.086039673000073,49.243041891000075],[20.080355265000037,49.20810862300007],[20.070019979000108,49.183097229000076],[20.050486287000098,49.17322703100009],[20.017310018000103,49.18387237600009],[19.965736939000095,49.21565338200011],[19.937935018000132,49.2251101680001],[19.905895630000117,49.22278472900007],[19.8878088780001,49.213999736000055],[19.86829182300005,49.20078819100012],[19.854219197000077,49.19126210600009],[19.83199833200004,49.18588775600003],[19.785902954000022,49.18816152000005],[19.76068485500008,49.1942076630001],[19.747765747000074,49.205886536000065],[19.747786945000144,49.205955836000044],[19.75179650800007,49.21906402600004],[19.78962365700005,49.25947499600002],[19.79406783000013,49.26185211200007],[19.80047570800008,49.26304067000009],[19.806263469000072,49.2652627570001],[19.80864058500009,49.270895488000036],[19.806780233000094,49.27523630800002],[19.806415196000103,49.27548756700011],[19.798822062000028,49.28071401000011],[19.798563188000116,49.28108074800008],[19.796961711000023,49.2833495080001],[19.796859623000017,49.283399017000136],[19.783215779000102,49.290015768000046],[19.779701783000036,49.293374735000036],[19.779713206000107,49.29345279200001],[19.780321899000114,49.297612203000085],[19.787970011000084,49.30510528600013],[19.78952030500011,49.30918772500013],[19.783629191000102,49.35755686500008],[19.77856490100004,49.37419667600011],[19.769263143000103,49.393110250000035],[19.76905606000011,49.39321262800007],[19.760064738000096,49.397657776000074],[19.726578409000098,49.388872783000096],[19.706321249000098,49.38752919600011],[19.684513794000082,49.38907948900004],[19.627043767000117,49.401867588000044],[19.627097479000042,49.40216544800009],[19.629220012000047,49.413935852000094],[19.628599894000075,49.429593811000046],[19.630150187000112,49.43501983600004],[19.63480106600008,49.441324362000046],[19.59480350700011,49.44158274300011],[19.573926229000023,49.44525177000011],[19.556769654000078,49.45388173500007],[19.551602010000067,49.46101308200007],[19.535478963000088,49.49284576500014],[19.517288859000132,49.54328196300014],[19.505196574000138,49.56338409500009],[19.48173547300007,49.573512675000046],[19.474190714000116,49.578731995000076],[19.457344197000054,49.59805898100012],[19.448889797000078,49.60031348800004],[19.443391561000055,49.60177968400003],[19.437603801000076,49.6001260380001],[19.433779745000063,49.595165101000134],[19.347066691000094,49.53299835300004],[19.339521931000036,49.52876088500008],[19.325362590000083,49.52504018200008],[19.31502730300008,49.5239549770001],[19.284228150000104,49.524161683000045],[19.26500451700008,49.521474508],[19.24867476400007,49.516255189000105],[19.2341020100001,49.50721181300014],[19.220459432000098,49.49300079400007],[19.204439738000133,49.46054799500007],[19.206196737000113,49.45941111300004],[19.209400676000087,49.45641388000004],[19.211364380000106,49.45165964800014],[19.208987264000086,49.44499338800003],[19.204543091000062,49.44282297800004],[19.19224410000004,49.442616272000095],[19.189350220000048,49.442202861000084],[19.18232222500012,49.42272084600009],[19.17973840300004,49.41026682500009],[19.172503703000075,49.40225697800011],[19.14170454900008,49.394195456000034],[19.116589803000068,49.390939840000044],[19.106254517000053,49.39140492800007],[19.09664270000013,49.394608867000045],[19.076798951000058,49.40406565400011],[19.06760054500006,49.40613271100008],[19.04579309100012,49.40277374300006],[19.00713912000012,49.388097637000065],[18.981817668000133,49.386805726000034],[18.96228397700014,49.389182841000064],[18.95670292200012,49.40044830300013],[18.960837036000044,49.43331451500006],[18.958253214000134,49.4481456500001],[18.953395630000045,49.46168487600008],[18.95236210100006,49.47594757100006],[18.96114709500003,49.49279408800004],[18.93220829300006,49.50431793200005],[18.833196249000082,49.51026072200008],[18.837433716000106,49.5269522100001],[18.83453983600012,49.5476227820001],[18.82017378800012,49.59025583900009],[18.815729614000105,49.59929921500006],[18.803947387000107,49.6167658490001],[18.799296508000054,49.626377666000025],[18.792578573000128,49.66079416900007],[18.7884444580001,49.6685973110001],[18.773458293000118,49.67583201100007],[18.757852010000107,49.67407501300008],[18.742245727000068,49.66968251600008],[18.727672974000086,49.66890736900007],[18.715063924000077,49.67381663],[18.695426880000127,49.68885447200009],[18.68240441800009,49.69577911400009],[18.668141724000122,49.698569641000034],[18.637342570000044,49.7003266400001],[18.624010050000038,49.70637278300006],[18.617705526000123,49.71386586600008],[18.607680298000105,49.74295969700009],[18.5841158450001,49.77437896700013],[18.56675256400007,49.804764710000086],[18.566339152000065,49.831584778000064],[18.593831014000042,49.852203675000084],[18.567269328000123,49.86145375600009],[18.562928507000034,49.87370107100011],[18.5654089760001,49.88904897100008],[18.55920780400004,49.9071873980001],[18.544428345000114,49.9129751590001],[18.505050903000097,49.89669708300007],[18.481796509000077,49.896645407000044],[18.407485800000103,49.92315541600007],[18.368831827000093,49.93204376300008],[18.328524211000058,49.92883982400011],[18.330694621000134,49.92883982400011],[18.33245161900001,49.92827138300004],[18.333795206000072,49.92713450100004],[18.334932088000073,49.925429179000076],[18.30692346200007,49.9096678680001],[18.292454061000058,49.90780751600008],[18.27261031100005,49.91829783100013],[18.26702925600003,49.925067444000064],[18.260104614000056,49.94057037400009],[18.25586714700009,49.94604807600007],[18.243981567000073,49.95173248300011],[18.220520467000085,49.95488474600009],[18.208738241000106,49.9582953900001],[18.17721561700003,49.97581370000006],[18.1620227460001,49.981239726000034],[18.098150675000056,49.98904286700005],[18.08512821400012,49.99875803600008],[18.091639445000084,50.017206523000105],[18.0332450760001,50.0418045050001],[18.019073899000148,50.044087110000135],[18.00244592300004,50.04676544200004],[18.006890096000063,50.024131165000085],[18.0121610920001,50.022684225],[18.020119262000065,50.02428619500003],[18.028697550000086,50.024131165000085],[18.035725545000076,50.017206523000105],[18.037482544000053,50.00723297100009],[18.03241825300009,50.00284047500011],[17.999862101000133,49.99658762700011],[17.959761190000048,49.9958124800001],[17.941571085000106,49.99276357000008],[17.91211551900011,49.97581370000006],[17.875735311000113,49.96868235300013],[17.839355102000127,49.97364329100009],[17.774552857000117,50.01519114200007],[17.76328739400006,50.02521637000009],[17.755432577000136,50.03715362600013],[17.749851522000114,50.04950429400008],[17.743030232000052,50.0605630500001],[17.73197147600007,50.069089661000106],[17.72256636500009,50.07513580400004],[17.719465780000064,50.080871888000104],[17.722669719000123,50.08634959000008],[17.73197147600007,50.09146555600009],[17.73238488800007,50.092189026000085],[17.73259159400004,50.0929641730001],[17.73238488800007,50.09389434900004],[17.73197147600007,50.094876201000034],[17.71791548700014,50.09678822800004],[17.690733683000047,50.1054698690001],[17.677607869000095,50.10774363200011],[17.666962524000095,50.10614166300007],[17.65848758900009,50.102989400000126],[17.648359009000046,50.10180084300009],[17.632752726000092,50.10634836900004],[17.584176880000083,50.145880839000085],[17.582109823000053,50.153167216000035],[17.589447876000122,50.16324412000008],[17.60040327900012,50.16680979500006],[17.648669067000128,50.16799835200007],[17.675334106000065,50.174716289000116],[17.71791548700014,50.19109771800006],[17.738172648000045,50.2023631800001],[17.74757775900011,50.21750437400004],[17.73197147600007,50.23600453800006],[17.721429484000083,50.242722473000065],[17.719155721000075,50.252799378000105],[17.721119425000097,50.26194610600001],[17.73197147600007,50.280652975000095],[17.734245239000074,50.28380523700014],[17.73496870900007,50.286802470000055],[17.734451945000046,50.28948964500009],[17.73197147600007,50.2917634070001],[17.713574666000056,50.307679749000044],[17.707993611000035,50.31103871700014],[17.691043741000044,50.315069478000055],[17.68453251100007,50.31238230400001],[17.68194869000007,50.30556101500005],[17.676367635000133,50.29739613900006],[17.64670536300008,50.2710928350001],[17.629548787000118,50.26210113600004],[17.60639774600014,50.2582254030001],[17.51699751800004,50.26835398400004],[17.469351847000098,50.26556345600008],[17.439999634000117,50.242722473000065],[17.434831991000124,50.24050038700008],[17.429560994000095,50.239776917000086],[17.424186645000134,50.240552063000074],[17.41912235500007,50.242722473000065],[17.409820597000135,50.261325989000056],[17.38801314300011,50.272643128000105],[17.365895630000097,50.27155792300002],[17.35504357900004,50.25326446600005],[17.341711060000108,50.25972402000011],[17.334786418000135,50.270007630000094],[17.3328227130001,50.282668356000045],[17.334062947000035,50.295690817000064],[17.3295154220001,50.29822296200007],[17.32538130700007,50.301116842000056],[17.321867309000112,50.30447581000007],[17.319076782000078,50.308248190000086],[17.337473592000066,50.31300242200007],[17.316803019000048,50.318635153000116],[17.269880819000093,50.31775665300006],[17.24610965900004,50.32214915000006],[17.21086633300007,50.33641184500004],[17.20104781100011,50.34323313400009],[17.195053345000076,50.35191477500007],[17.1888521730001,50.364833883000074],[17.18544152800007,50.37568593400002],[17.187611939000135,50.378476461000076],[17.175933065000066,50.380750224000074],[17.145443970000088,50.37671946300008],[17.13169803800005,50.37682281500011],[17.11888228400008,50.38116363600011],[17.09562788900007,50.39366933200009],[17.084672485000084,50.39795847600007],[16.98193973800008,50.416355286000055],[16.958788696000084,50.414598287000075],[16.94400462900012,50.420266697000045],[16.91579390400008,50.43108306900007],[16.892952921000102,50.432943421000054],[16.865771118000108,50.422401429000104],[16.86587447100004,50.408448792000115],[16.897913859000138,50.378218079000106],[16.909282674000025,50.35992462200005],[16.91672408000005,50.33863393200005],[16.926542602000012,50.31925527000006],[16.945249471000096,50.30690460200012],[16.969640747000113,50.29775787400004],[16.98783085100007,50.28494211900005],[16.99837284300014,50.267010396000074],[16.999819783000135,50.242722473000065],[17.01284224400007,50.23166371700008],[17.014805949000106,50.218486227000085],[17.008398071000073,50.20995961500009],[16.996305786000075,50.21290517200009],[16.985660441000075,50.22313710600005],[16.981009563000015,50.22918324800011],[16.975015096000075,50.231818747000034],[16.960338989000093,50.23197377500006],[16.957548462000148,50.22923492500013],[16.9577551670001,50.217142640000134],[16.955274699000114,50.21347361300013],[16.946283,50.21306020200012],[16.927782837000052,50.21729766900009],[16.918997843000056,50.21709096300003],[16.907008911000105,50.211768290000066],[16.8903691000001,50.19693715400003],[16.880963990000023,50.19156280600009],[16.86976208200008,50.189728865000035],[16.857606242000088,50.18773875000005],[16.837555786000053,50.18861724900009],[16.817712036000046,50.186756897000066],[16.795284464000048,50.17440623000001],[16.777301066000064,50.15693959600008],[16.76644901600011,50.1434003710001],[16.75425337700011,50.13228993800007],[16.732032511000057,50.121954652000085],[16.701233357000092,50.094927877000025],[16.66061568200007,50.093015850000114],[16.618654419000052,50.1070201630001],[16.584237915000102,50.127432353000074],[16.56666792800013,50.142211812000085],[16.55726281700009,50.15471751000006],[16.545894003000086,50.18882395500003],[16.535041952000142,50.20773752900007],[16.504759563000107,50.22799469100008],[16.492047160000055,50.242722473000065],[16.47757775900004,50.25533152300011],[16.45215295400004,50.28499379500008],[16.437786906000014,50.2979645800001],[16.415566040000073,50.3079381310001],[16.37102095600008,50.31837677000004],[16.353244263000136,50.333517965000055],[16.35066044100006,50.34225128200012],[16.35148726400007,50.35134633400011],[16.35076379400007,50.360648092000126],[16.343735799000054,50.36994985000007],[16.334227335000094,50.37186187800008],[16.28864872200009,50.37186187800008],[16.276969849000125,50.36943308500011],[16.26983850100009,50.365454001000046],[16.262500448000083,50.364420472000056],[16.249684692000102,50.37103505500004],[16.24493046000012,50.37682281500011],[16.232011352000114,50.40260935500003],[16.199558553000088,50.40627838100002],[16.190153443000042,50.424158427000094],[16.19800826000008,50.440023092000104],[16.2179553630001,50.4371292110001],[16.21609501100008,50.440178122000134],[16.21123742700007,50.45128855400014],[16.21733524600012,50.451650289000064],[16.226533651000125,50.45537099200007],[16.232011352000114,50.45676625600004],[16.247410929000097,50.46498280900008],[16.264980917000056,50.47164906800009],[16.27996708200004,50.479865621000016],[16.287718547000054,50.49278472900004],[16.30342818200012,50.4960403440001],[16.335467570000105,50.49035593700006],[16.352624145000078,50.49278472900004],[16.36202925600014,50.501207988000026],[16.382596476000117,50.51417877200004],[16.391174764000137,50.52182688400012],[16.388384237000082,50.52125844300008],[16.388280884000068,50.52714955700006],[16.389624471000047,50.534849345000055],[16.391174764000137,50.53991363500003],[16.395515584000123,50.54570139600011],[16.398306111000096,50.54849192300006],[16.398306111000096,50.551799215000074],[16.394482056000044,50.559343974000114],[16.425901326000087,50.56756052700004],[16.416806275000113,50.58662913000011],[16.331643514000092,50.64404164700002],[16.300947714000127,50.65510040300003],[16.268288208000058,50.660423076000086],[16.232011352000114,50.660888164000106],[16.2190922450001,50.65913116500013],[16.211754191000097,50.649105937000115],[16.20451949100004,50.63634185800004],[16.19232385200013,50.62657501300009],[16.17547733500004,50.624094544000116],[16.160284465000103,50.62864207000004],[16.128658488000042,50.64404164700002],[16.08649051900008,50.64678049800008],[16.02447880000011,50.60859161400009],[15.982000773000065,50.603630677000034],[15.9799337150001,50.606627910000064],[15.979210246000036,50.609780172000114],[15.980037068000057,50.61298411100009],[15.982000773000065,50.61623972600009],[15.996366821000095,50.62368113200009],[15.9986405840001,50.63556671200013],[15.99316288200012,50.649364319000085],[15.984481242000044,50.662903544000045],[15.97145878100011,50.67861318000012],[15.958022908000146,50.68688140900008],[15.94148645000007,50.68838002600009],[15.882265258000075,50.674220683000044],[15.854566691000059,50.673703919000076],[15.848158813000111,50.67515085900006],[15.797619263000085,50.72977284800004],[15.794415323000093,50.735870667000086],[15.792244914000037,50.742691956000044],[15.767440226000076,50.744190572000036],[15.684344523000105,50.73142649400006],[15.673802530000046,50.733545227000064],[15.666464477000147,50.738092753000075],[15.65323531000004,50.75096018500008],[15.641866496000148,50.75576609400008],[15.441775350000086,50.80020782500006],[15.40012414500009,50.79798573800005],[15.39082238800006,50.79064768500007],[15.381313924000068,50.78000234000007],[15.370255168000057,50.77261261000007],[15.368578785000096,50.7729491100001],[15.356095825000125,50.77545481400003],[15.34968794800008,50.783723043000094],[15.350514770000103,50.79323150600007],[15.353305298000064,50.803256735000076],[15.352995239000082,50.81297190400002],[15.34100630600011,50.83173044900013],[15.325813436000088,50.8396886190001],[15.30772668500006,50.84475291000007],[15.287779581000052,50.85488149000011],[15.277134236000052,50.86573354100005],[15.26535201000007,50.88227],[15.256050252000136,50.89989166300006],[15.253053019000106,50.914102682000106],[15.260081014000036,50.932499491000094],[15.268762655000073,50.94298980700006],[15.269796183000066,50.952653300000094],[15.253776489000105,50.96903472900004],[15.22711145000008,50.977406311],[15.170164022000106,50.97797475200005],[15.160758911000128,50.992650859000065],[15.156108032000075,51.007843730000076],[15.144429158000094,51.011564433000075],[15.131510051000106,51.00582834900012],[15.122518351000053,50.99275421200008],[15.122518351000053,50.992650859000065],[15.119211059000067,50.98247060200009],[15.10794559700008,50.98102366200009],[15.093889607000078,50.98541615800008],[15.082107381000071,50.99275421200008],[15.073632446000062,51.00262441000007],[15.022989543000108,51.00965240500008],[15.003972616000055,51.020685323000066],[15.001182088000093,51.01244293200003],[14.996531209000125,51.007843730000076],[14.982061808000083,51.001177470000066],[14.976377401000036,51.00040232400005],[14.970692993000084,50.99869700200008],[14.96562870300002,50.99606150300008],[14.961081176000077,50.992650859000065],[14.960977824000054,50.992650859000065],[14.965215291000106,50.981333720000066],[14.981441691000015,50.97322052000007],[14.996634562000052,50.959216207000054],[14.99777144400005,50.93017405200007],[14.9946708570001,50.92510976200009],[14.98485233500014,50.918081767000075],[14.982061808000083,50.91467112300006],[14.981131632000142,50.90909006800004],[14.981751749000097,50.90526601200011],[14.982888631,50.90242380800004],[14.98412886500006,50.86769724600009],[14.982061808000083,50.85906728200007],[14.867856893000065,50.864389954000096],[14.831683390000137,50.85798207600007],[14.810392700000136,50.8584471640001],[14.810496053000065,50.87705068000013],[14.824655395000036,50.891830139000064],[14.860208781000066,50.91684153300014],[14.910644979000095,50.992650859000065],[14.955293417000123,51.06404185000014],[14.958290649000046,51.075514018000064],[14.958497355000075,51.09473765100009],[14.960254354000055,51.10458201100007],[14.96562870300002,51.11150665300005],[14.973380168000121,51.116131694000096],[14.97999475100002,51.122797954000106],[14.982061808000083,51.135639547000096],[14.983198690000107,51.160909323000055],[14.991363566000103,51.18896962500008],[15.004902792000081,51.21560882600002],[15.022059367000054,51.236770325000066],[15.017925252000024,51.23956085200012],[15.01430790100005,51.242661439000074],[15.019475545000148,51.27167775500007],[15.004902792000081,51.29128896100008],[14.982268514000054,51.308006287000126],[14.963768352000017,51.32839263900007],[14.960977824000054,51.335291443000045],[14.95663700400007,51.35322316500012],[14.95663700400007,51.35415334100008],[14.950647846000036,51.39653937700004],[14.946921835000126,51.422908834000054],[14.95539676900006,51.43541453000006],[14.945061483000133,51.44918630000009],[14.926561320000102,51.461330261000086],[14.910955038000083,51.468978373000084],[14.888320760000113,51.475747987],[14.841398559000082,51.48442962700008],[14.818557576000075,51.492594504000095],[14.818557576000075,51.49269785600012],[14.79747359200013,51.50210296600008],[14.732154582000078,51.5158230590001],[14.710037068000075,51.530240784000114],[14.706769960000116,51.540828064000095],[14.704559367000085,51.54799163800004],[14.71272424300011,51.56742197700004],[14.732154582000078,51.586619772000034],[14.743936808000086,51.60664439000007],[14.74228316200012,51.63297353200002],[14.732464640000074,51.658346659000124],[14.719545532000069,51.67563242600002],[14.670969686000149,51.70077301100014],[14.648438761000138,51.71720611600011],[14.638103475000035,51.742630921000114],[14.634176066000066,51.76901173900009],[14.620326782000092,51.78053558400012],[14.602240031000093,51.788312887000124],[14.585806925000043,51.80389333200006],[14.582809693000115,51.82508066800003],[14.595935507000066,51.84241811200013],[14.653296346000076,51.87861745300006],[14.671693156000062,51.893887838000126],[14.687092733000041,51.91189707400011],[14.695567667000148,51.93145660400012],[14.699081665000108,51.99251230900012],[14.704456014000073,52.002227478000066],[14.726056762000042,52.026437887000036],[14.730294230000082,52.0358946740001],[14.732154582000078,52.045067241000076],[14.735358520000146,52.054033102000034],[14.74300663300005,52.06253387500004],[14.761403443000118,52.076667379000064],[14.696394491000063,52.106691386000136],[14.686369263000133,52.12103159600014],[14.692467082000093,52.14697316500008],[14.703215780000022,52.16516327000002],[14.707039836000147,52.17945180300012],[14.69257043500005,52.19337860100009],[14.69257043500005,52.19957977300007],[14.712104126000042,52.21544443800008],[14.712414184000124,52.235908305000066],[14.696911255000117,52.253478293000114],[14.668902628000096,52.26099721300008],[14.640480590000067,52.265053813000065],[14.606580851000073,52.27575083500008],[14.584153280000066,52.29122792600009],[14.5901477460001,52.30941803000013],[14.569167114000095,52.338511861000114],[14.54539595600005,52.3821526080001],[14.539814901000113,52.42186594700007],[14.591594686000093,52.449797059000076],[14.615779256000081,52.47328399700004],[14.632315715000061,52.496745098000105],[14.627664836000092,52.507416280000115],[14.609061320000139,52.51780324300006],[14.616812785000063,52.54103180000006],[14.644821411000066,52.57692108200009],[14.613712199000105,52.59252736400006],[14.60796482800009,52.59646296300008],[14.549943481000069,52.63619395000012],[14.490102173000109,52.65063751200003],[14.461370076,52.674563701000125],[14.442353149000041,52.679963888],[14.431914510000098,52.68608754600007],[14.397704712000118,52.72711863300003],[14.382201782000095,52.738151551],[14.27595503700013,52.78571970600004],[14.248669882000115,52.79458221500004],[14.216010375000053,52.8179916390001],[14.195959920000092,52.823365987000074],[14.173739054000064,52.82434783900003],[14.152758423000051,52.82832692500011],[14.13539514200005,52.836595154000065],[14.123922973000019,52.85065114400006],[14.150484660000131,52.864629619000084],[14.16081994600006,52.87674774200007],[14.164954061000088,52.8956613170001],[14.162680298000055,52.90816701300011],[14.150484660000131,52.94364288400004],[14.14449019300011,52.95369395000009],[14.14449019300011,52.95992096000006],[14.192859334000048,52.98165090000006],[14.253734172000094,53.00087453300008],[14.312645305000103,53.029219055000084],[14.343341105000036,53.04862355500006],[14.356776977000093,53.06668446900007],[14.359567505000141,53.07505605100005],[14.38953983500011,53.13166758300014],[14.387472779000118,53.146136984000066],[14.381478312000096,53.160296326],[14.377860962000112,53.17654856400011],[14.380651489000085,53.18985524500005],[14.387782837000117,53.20207672200007],[14.397704712000118,53.21099090600009],[14.408246704000078,53.214401551],[14.41558475700006,53.22099029600011],[14.44162968000006,53.251841126000066],[14.428607219000098,53.25907582700005],[14.424679810000043,53.264656881000064],[14.409383586000075,53.272434184000076],[14.403285767000026,53.278790385],[14.400185180000081,53.28860890800007],[14.399565064000114,53.3067473350001],[14.398014770000088,53.3152222700001],[14.391260511000096,53.33401700300006],[14.370316202000083,53.392297669000044],[14.359877564000042,53.44407745400011],[14.338896932000123,53.46521311500007],[14.328458293000097,53.486090394000115],[14.304170370000092,53.508517965000124],[14.296935669000048,53.529136862000115],[14.296212199000138,53.55130605100007],[14.298899373000069,53.58789296500009],[14.297039022000149,53.59776316400007],[14.276058390000058,53.63662384100013],[14.260968872000149,53.65620920900005],[14.265102986000073,53.67176381500008],[14.263862752000136,53.699875794000036],[14.263900720266179,53.69997615955262],[14.26392662900011,53.69997793200014],[14.273692254000139,53.70062897300008],[14.291677280000071,53.70526764500002],[14.304860873000024,53.712551174000026],[14.30616295700011,53.72068919500003],[14.288584832000083,53.72797272300005],[14.29835045700014,53.73143138200007],[14.301605665000068,53.734849351000065],[14.29835045700014,53.73826732000006],[14.288584832000083,53.74164459800008],[14.294200066000087,53.74909088700008],[14.304047071000099,53.743882554000066],[14.318044467000078,53.739732164000024],[14.330414259000122,53.73419830900011],[14.34205162900011,53.714911200000074],[14.356211785000141,53.70844147300008],[14.383555535000111,53.70062897300008],[14.403575066000087,53.68781159100004],[14.414561394000145,53.68235911700003],[14.45866946700005,53.67788320500006],[14.5123804050001,53.6664492860001],[14.53101647200009,53.6577822940001],[14.54623457100007,53.64476146000001],[14.579112175000148,53.6072451840001],[14.590586785000111,53.59837474200006],[14.59587649800008,53.60130442900006],[14.597015821000099,53.61733633000006],[14.601573113000143,53.626654364000096],[14.610036655000101,53.63275788000009],[14.623789910000113,53.639227606000105],[14.623057488000086,53.64301178600002],[14.622813347000147,53.646958726],[14.623789910000113,53.652818101000065],[14.613047722000088,53.65468984600002],[14.58741295700014,53.65607330900011],[14.57593834700009,53.65965403900006],[14.544932488000057,53.7040469420001],[14.551442905000073,53.72614166900007],[14.57593834700009,53.769517320000034],[14.58741295700014,53.76349518400013],[14.59734134200005,53.765204169000036],[14.608246290000125,53.76902903900006],[14.623789910000113,53.769517320000034],[14.61670983200014,53.79474518400011],[14.620371941000114,53.814846096000046],[14.627289259000094,53.83270905200001],[14.630625847000116,53.85150788000007],[14.623789910000113,53.85150788000007],[14.621348504000084,53.83954498900004],[14.613536004000082,53.831610419000064],[14.589610222000116,53.81732819200007],[14.59587649800008,53.81049225500007],[14.587087436000102,53.81264883000006],[14.580088738000114,53.815334377000056],[14.574473504000137,53.81907786700006],[14.569102410000083,53.8241641300001],[14.574229363000084,53.82709381700002],[14.583262566000087,53.83421458500006],[14.589610222000116,53.83783600500004],[14.575856967000105,53.854803778000104],[14.552093946000099,53.86277903900006],[14.44117272200009,53.86961497600006],[14.425547722000092,53.87982819200002],[14.438161655000073,53.89931875200011],[14.434906446000127,53.90131256700005],[14.434092644000117,53.901597398000064],[14.433767123000079,53.902411200000074],[14.43189537900011,53.90615469000002],[14.42204837300011,53.896144924000055],[14.41423587300011,53.89472077000008],[14.405772332000081,53.89740631700005],[14.393809441000142,53.89931875200011],[14.385101759000063,53.89728424700007],[14.378265821000126,53.89232005400004],[14.371592644000089,53.88589101800011],[14.363047722000145,53.87938060100004],[14.392914259000065,53.875962632],[14.40919030000009,53.87156810100003],[14.417653842000021,53.86513906500002],[14.415700717000078,53.85301341400003],[14.405284050000091,53.84418366100007],[14.392588738000113,53.840725002000056],[14.383555535000111,53.84467194200004],[14.356211785000141,53.834458726],[14.342621290000096,53.83185455900011],[14.32829837300011,53.83100006700002],[14.32829837300011,53.8241641300001],[14.34205162900011,53.82099030200004],[14.341319207000081,53.818915106000105],[14.32829837300011,53.81732819200007],[14.318858269000089,53.81818268400008],[14.303070509000037,53.823065497000044],[14.291351759000065,53.8241641300001],[14.274668816000114,53.83079661700006],[14.226573113000143,53.87197500200003],[14.203135613000057,53.87832265800005],[14.200856967000107,53.878159898],[14.200818737011842,53.878157292828625],[14.192755981000118,53.893765768000094],[14.175289348000092,53.90647817000007],[14.184797811000067,53.908131816],[14.193066040000105,53.91149078400011],[14.210075518000421,53.93845656800141],[14.226573113000143,53.93402741100007],[14.237478061000017,53.92865631700001],[14.268077019000144,53.9218203800001],[14.367035352000128,53.91697825700001],[14.406748894000145,53.9218203800001],[14.445567254000052,53.93402741100007],[14.517344597000145,53.96523672100005],[14.781911655000046,54.03461334800008],[15.010101759000124,54.06981028900006],[15.288340691000116,54.13886139500007],[15.468516472000116,54.16714101800002],[15.665782097000088,54.19843170800007],[15.859711134000094,54.24998607000006],[16.0208439460001,54.2617862000001],[16.1315210300001,54.2835147160001],[16.11890709700012,54.27602773600003],[16.06934655000009,54.26300690300013],[16.091075066000144,54.25397370000013],[16.179209832000137,54.26300690300013],[16.179209832000137,54.269191799000104],[16.172373894000145,54.269191799000104],[16.172373894000145,54.27659739800009],[16.2200626960001,54.27659739800009],[16.219574415000125,54.28148021000007],[16.218516472000147,54.28237539300005],[16.2166447270001,54.28204987200012],[16.213226759000094,54.2835147160001],[16.215179884000122,54.29962799700007],[16.192149285000056,54.300279039000024],[16.137705925000148,54.29026927300003],[16.172129754000082,54.30023834800002],[16.2135522800001,54.316107489000046],[16.275401238000086,54.358587958000015],[16.262868686000104,54.34369538000007],[16.240489129000082,54.33002350500004],[16.2317814460001,54.32257721600004],[16.240896030000073,54.32453034100009],[16.259043816000087,54.32672760600007],[16.27491295700011,54.33047109600002],[16.28882897200009,54.34023672100005],[16.323903842000078,54.34992096600013],[16.336761915000096,54.358587958000015],[16.324880405000044,54.373114325000046],[16.305023634000037,54.37348053600007],[16.296234571000067,54.3672549500001],[16.281586134000065,54.358587958000015],[16.323985222000147,54.40131256700004],[16.439789259000065,54.48826732],[16.439789259000065,54.482123114000046],[16.434418165000096,54.472357489000075],[16.444509311000076,54.46987539300005],[16.46062259200005,54.47345612200013],[16.473399285000085,54.482123114000046],[16.479746941000116,54.49555084800002],[16.473887566000144,54.49966054900008],[16.46094811300014,54.49648672100011],[16.446055535000113,54.48826732],[16.466563347000147,54.51215241100007],[16.5013126960001,54.5324160830001],[16.569590691000116,54.55719635600005],[16.778493686000076,54.575140692000105],[16.859629754000082,54.59393952000005],[16.90219160200013,54.59813060100009],[16.93995201900009,54.60602448100005],[17.035817905000016,54.66705963700013],[17.33741295700011,54.74900950700007],[17.715668165000096,54.79043203300009],[17.8854272800001,54.82412344000008],[18.15235436300011,54.8383242860001],[18.316905144000142,54.8383242860001],[18.339528842000103,54.83348216400003],[18.375824415000096,54.81513092700007],[18.389170769000117,54.811102606000105],[18.410166863000143,54.808294989000046],[18.751719597000115,54.69009023600008],[18.81397545700011,54.64321523600006],[18.824066602000073,54.63222890800009],[18.834320509000094,54.61668528900008],[18.83529707100007,54.60309479400013],[18.817637566000144,54.59813060100009],[18.813243035000085,54.601548570000084],[18.80836022200012,54.6088320980001],[18.80225670700011,54.616034247000044],[18.784027540000125,54.623521226],[18.771820509000065,54.64227936400007],[18.755381707000083,54.65448639500004],[18.707774285000085,54.7012393250001],[18.698496941000112,54.70380280200004],[18.66342207100004,54.70799388200007],[18.654551629000107,54.71015045800007],[18.645030144000117,54.71954987200007],[18.61670983200005,54.72524648600006],[18.556976759000094,54.74900950700007],[18.49822024800008,54.765366929000066],[18.48878014400006,54.77317942900006],[18.456309441000087,54.787665106000105],[18.447764519000145,54.789984442000076],[18.435557488000086,54.78681061400001],[18.42920983200014,54.7816836610001],[18.41504967500012,54.753119208000015],[18.41309655000009,54.746527411000045],[18.41309655000009,54.731919664000024],[18.418467644000145,54.728216864000075],[18.442393425000088,54.7219912780001],[18.447764519000145,54.71824778900009],[18.459808790000068,54.70604075700001],[18.474457227000073,54.687567450000074],[18.473887566000116,54.67991771000007],[18.4700626960001,54.67328522300008],[18.47038821700002,54.666734117],[18.48194420700014,54.65961334800004],[18.475922071000127,54.64008209800007],[18.487315300000088,54.631781317000105],[18.50635826900009,54.63410065300005],[18.522959832000137,54.646551825000074],[18.51710045700011,54.6299502620001],[18.525157097000143,54.61668528900008],[18.53760826900006,54.60545482000009],[18.562836134000122,54.56000397300011],[18.570648634000122,54.55036041900004],[18.566742384000122,54.527411200000046],[18.567556186000047,54.48786041900009],[18.57406660200013,54.45038483300007],[18.58806399800008,54.43366120000004],[18.60377037900014,54.43060944200004],[18.634287957000083,54.41693756700002],[18.649912957000083,54.41380442900004],[18.66334069100006,54.41299062700002],[18.680023634000094,54.40997955900011],[18.69434655000009,54.4045270850001],[18.700450066000084,54.395819403000104],[18.71729576900009,54.38202545800009],[18.885915561000076,54.35016510600008],[18.923187696000127,54.348537502000056],[18.954356316000116,54.358587958000015],[18.96290123800014,54.353501695],[18.974619988000114,54.34975820500006],[19.00212649800008,54.344916083000065]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Portugal","sov_a3":"PRT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Portugal","adm0_a3":"PRT","geou_dif":0,"geounit":"Portugal","gu_a3":"PRT","su_dif":1,"subunit":"Portugal","su_a3":"PR1","brk_diff":0,"name":"Portugal","name_long":"Portugal","brk_a3":"PR1","brk_name":"Portugal","brk_group":null,"abbrev":"Port.","postal":"P","formal_en":"Portuguese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Portugal","name_alt":null,"mapcolor7":1,"mapcolor8":7,"mapcolor9":1,"mapcolor13":4,"pop_est":10707924,"gdp_md_est":208627,"pop_year":-99,"lastcensus":2011,"gdp_year":0,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"PO","iso_a2":"PT","iso_a3":"PRT","iso_n3":"620","un_a3":"620","wb_a2":"PT","wb_a3":"PRT","woe_id":23424925,"woe_id_eh":23424925,"woe_note":"Exact WOE match as country","adm0_a3_is":"PRT","adm0_a3_us":"PRT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"PRT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-16.023101365999963,30.03229401200015],[-16.02301998599998,30.029242255000057],[-16.0272517569999,30.02960846600017],[-16.02798417899993,30.033596096000153],[-16.023101365999963,30.03229401200015]]],[[[-15.854969855999883,30.13959381700012],[-15.85977128799996,30.13328685099999],[-15.863270636999856,30.13467031500006],[-15.87022864499994,30.136175848000033],[-15.874745245999888,30.137925523000103],[-15.874094204999949,30.139715887000094],[-15.87413489499994,30.141669012000033],[-15.873443162999905,30.143540757000107],[-15.864409959999875,30.15253327000012],[-15.855458136999859,30.146918036000116],[-15.854969855999883,30.13959381700012]]],[[[-16.49205481699994,32.517157294000086],[-16.487049933999884,32.49168528900019],[-16.521839972999942,32.53949616100011],[-16.530425584999932,32.548529364000146],[-16.536773240999878,32.55801015800013],[-16.54076087099986,32.568508205],[-16.54234778599988,32.580511786000145],[-16.52525794199994,32.567206122000115],[-16.506662563999953,32.54417552300005],[-16.49205481699994,32.517157294000086]]],[[[-17.067982550999943,32.81415436400006],[-17.04116777299987,32.81220123900012],[-17.014312303999873,32.8170433610001],[-16.9947810539999,32.82754140800007],[-16.97996985599991,32.83323802300005],[-16.957875128999916,32.837795315],[-16.919748501999948,32.841213283000016],[-16.903065558999913,32.836330471000124],[-16.87287350199989,32.817450262000094],[-16.8607478509999,32.81321849200016],[-16.808705206999946,32.78001536700016],[-16.797474738999938,32.77456289300012],[-16.78563391799989,32.77228424700014],[-16.74746660099993,32.77081940300009],[-16.730132615999935,32.766791083000115],[-16.713612433999856,32.75861237200003],[-16.703684048999946,32.76463450700011],[-16.693023240999906,32.76666901200015],[-16.68248450399994,32.76463450700011],[-16.672678188999924,32.75861237200003],[-16.68976803299998,32.754868882],[-16.72508704299989,32.74115631700006],[-16.73786373599995,32.73810455900015],[-16.749989386999857,32.7306175800001],[-16.782215949999877,32.69611237200009],[-16.788685675999886,32.686672268000066],[-16.80638587099989,32.656805731000176],[-16.8478083979999,32.644029039000046],[-16.89590410099987,32.641587632000025],[-16.976796027999853,32.647202867000104],[-17.142974412999905,32.70555247600002],[-17.18065344999988,32.72597890800007],[-17.214466925999943,32.75063711100016],[-17.241200324999852,32.77912018400018],[-17.24990800699993,32.796535549000126],[-17.252105272999927,32.814520575000174],[-17.246449347999942,32.82859935100011],[-17.23127193899995,32.834377346000096],[-17.224964972999913,32.83930084800015],[-17.20026607999992,32.86847565300009],[-17.191395636999886,32.872748114],[-17.1848852199999,32.874172268000066],[-17.17756100199989,32.872748114],[-17.166127081999917,32.86847565300009],[-17.15575110599985,32.861232815000065],[-17.13194739499994,32.839056708],[-17.12169348899991,32.834377346000096],[-17.115549282999922,32.833441473],[-17.093902147999955,32.82770416900003],[-17.067982550999943,32.81415436400006]]],[[[-16.317128058999913,33.11078522300012],[-16.295887824999937,33.10126373900012],[-16.289133266999897,33.10871002800009],[-16.289784308999856,33.079413153000175],[-16.286000128999916,33.06753164300012],[-16.275380011999886,33.06024811400012],[-16.31078040299988,33.06606679900007],[-16.325672980999855,33.065822658000044],[-16.339955206999917,33.05719635600012],[-16.352691209999875,33.04376862200003],[-16.364328579999892,33.03436920799999],[-16.378285285999965,33.03204987200006],[-16.398345506999902,33.03978099200004],[-16.398345506999902,33.04661692900008],[-16.388010219999895,33.04734935100002],[-16.37987219999988,33.051336981000176],[-16.374134894999912,33.058172919000086],[-16.361683722999913,33.09031810100005],[-16.341297980999908,33.105943101000136],[-16.317128058999913,33.11078522300012]]],[[[-7.860096808999883,36.980536200000145],[-7.878488735999923,36.970851955000015],[-7.903879360999922,36.96588776200015],[-7.931385870999891,36.96649811400012],[-7.95571855399993,36.973089911],[-7.95571855399993,36.980536200000145],[-7.903960740999906,36.974839585],[-7.884022589999944,36.980861721000096],[-7.860096808999883,37.00043366100006],[-7.857818162999905,36.99746328300013],[-7.856068488999909,36.99420807500008],[-7.853260870999861,36.986761786000116],[-7.85912024599989,36.9833845070001],[-7.860096808999883,36.980536200000145]]],[[[-25.016916469999952,36.970445054000024],[-25.01219641799986,36.949204820000105],[-25.027088995999918,36.93431224200016],[-25.060658331999946,36.937241929],[-25.11900794199994,36.95262278900013],[-25.151722785999876,36.94586823100009],[-25.169097459999875,36.94599030200005],[-25.176665818999904,36.95604075700014],[-25.183216925999886,36.96889883000016],[-25.195301886999886,36.980169989000146],[-25.201649542999917,36.99042389500009],[-25.190988735999895,37.00043366100006],[-25.170318162999877,37.015529690000065],[-25.133615688999953,37.02301666900003],[-25.094471808999913,37.024481512000094],[-25.066802537999934,37.02147044499999],[-25.046742316999882,37.01072825700008],[-25.02920488199993,36.99237702000012],[-25.016916469999952,36.970445054000024]]],[[[-25.68073482999995,37.84332916900008],[-25.55378170499992,37.82965729400014],[-25.53888912699989,37.832953192],[-25.512562628999888,37.84747955900003],[-25.498890753999945,37.850775458000086],[-25.489857550999915,37.848049221],[-25.46886145699989,37.834662177],[-25.458485480999883,37.82965729400014],[-25.442046678999898,37.8373070330001],[-25.339751756999874,37.86180247600011],[-25.197824673999918,37.86440664300004],[-25.159169074999852,37.85203685099999],[-25.135161912999905,37.822333075000145],[-25.13231360599988,37.78620026200012],[-25.156849738999878,37.754543361000124],[-25.19473222599993,37.74070872600005],[-25.327544725999896,37.727240302000055],[-25.372425910999908,37.71743398600013],[-25.420318162999905,37.71356842700011],[-25.46544348899988,37.71539948100009],[-25.488270636999886,37.71369049700009],[-25.505686001999944,37.706732489],[-25.53270423099991,37.720119533000016],[-25.559071417999917,37.729071356000034],[-25.615549282999922,37.740912177],[-25.704253709999904,37.74404531500006],[-25.825062628999945,37.81541575700005],[-25.85948645699989,37.85390859600015],[-25.84146074099996,37.90599192899999],[-25.764556443999936,37.911566473],[-25.739084438999953,37.90599192899999],[-25.704213019999912,37.88263580900009],[-25.698109503999913,37.87433502800012],[-25.69717363199993,37.86253489800005],[-25.694203253999945,37.85268789300012],[-25.68883216099988,37.845851955000015],[-25.68073482999995,37.84332916900008]]],[[[-28.04710852799991,38.43256256700012],[-28.040598110999923,38.40908437700007],[-28.054188605999883,38.39850495000012],[-28.084868943999876,38.398179429],[-28.162709113999966,38.407171942],[-28.18521074099996,38.405951239],[-28.20531165299991,38.400336005],[-28.241851365999935,38.37759023600016],[-28.253651495999918,38.38255442900011],[-28.262928839999887,38.394842841000134],[-28.274566209999875,38.40566640800016],[-28.29678300699993,38.41132233300014],[-28.439442511999914,38.41351959800012],[-28.459543423999975,38.40566640800016],[-28.525380011999943,38.45392487200009],[-28.54889889199998,38.48444245000003],[-28.54889889199998,38.528550523000106],[-28.518666144999884,38.55011627800003],[-28.485259568999908,38.55780670800014],[-28.41454016799989,38.55646393400015],[-28.374501105999855,38.550482489000146],[-28.274566209999875,38.501857815],[-28.239125128999973,38.489650783000016],[-28.23668372299994,38.487534898000106],[-28.226226365999963,38.48444245000003],[-28.206288214999887,38.470851955000064],[-28.195790167999917,38.467718817],[-28.17446855399993,38.464789130000085],[-28.109486456999974,38.446600653000175],[-28.063832160999937,38.44277578300007],[-28.04710852799991,38.43256256700012]]],[[[-28.623402472999942,38.522365627000156],[-28.636219855999883,38.51552969000012],[-28.647816535999905,38.51581452000006],[-28.67178300699996,38.522365627000156],[-28.68394934799994,38.52142975500006],[-28.714344855999908,38.51532623900009],[-28.727040167999856,38.51487864799999],[-28.74958248599995,38.52350495000009],[-28.775380011999886,38.554388739000146],[-28.795318162999962,38.56952545800014],[-28.841135219999956,38.59113190300003],[-28.842396613999963,38.59943268400012],[-28.808949347999913,38.6042341170001],[-28.779896613999934,38.60488515800016],[-28.766346808999884,38.60675690300012],[-28.753773566999882,38.61172109600007],[-28.745106574999877,38.619208075000024],[-28.728586391999897,38.63898346600014],[-28.719593878999884,38.64520905200011],[-28.63263912699992,38.61399974200005],[-28.609730597999913,38.597398179],[-28.596058722999967,38.55272044500013],[-28.60301673099988,38.551499742000104],[-28.63499915299988,38.54059479400002],[-28.6439509759999,38.53534577000015],[-28.63780676999991,38.529445705000015],[-28.63536536399988,38.52578359600015],[-28.632069464999944,38.52362702000006],[-28.623402472999942,38.522365627000156]]],[[[-28.232533331999917,38.72557200700011],[-28.034331834999875,38.66632721600003],[-27.890980597999942,38.6042341170001],[-27.816639777999853,38.582831122000144],[-27.778920050999886,38.567084052],[-27.760609503999916,38.549017645000085],[-27.777455206999914,38.544134833000115],[-27.79645748599992,38.54157135600009],[-27.83576412699992,38.542792059000114],[-27.852202928999926,38.547267971000096],[-27.884917772999952,38.560532945000105],[-27.915150519999937,38.56517161700005],[-27.931996222999942,38.57029857000005],[-27.948597785999905,38.57782623900012],[-27.96239173099991,38.58685944200012],[-27.97687740799995,38.59308502800017],[-28.00377356699994,38.58942291900003],[-28.020741339999915,38.597398179],[-28.034535285999933,38.590073960000076],[-28.044178839999887,38.59393952000009],[-28.06163489499994,38.61172109600007],[-28.0743708979999,38.617621161],[-28.177886522999952,38.64508698100015],[-28.195790167999917,38.65574778900016],[-28.21556555899994,38.68211497599999],[-28.223052537999905,38.68622467700011],[-28.23110917899993,38.6850446640001],[-28.234730597999885,38.68325429900001],[-28.23863684799988,38.6828473980001],[-28.2472224599999,38.68622467700011],[-28.249623175999943,38.68992747600007],[-28.248524542999917,38.69440338700004],[-28.249256964999944,38.69818756700006],[-28.257191535999908,38.699896552000055],[-28.265492316999882,38.70319245000009],[-28.312123175999883,38.73525625200006],[-28.315785285999937,38.74209219],[-28.315541144999884,38.755072333],[-28.29747473899988,38.74925364800005],[-28.264475063999924,38.73151276200006],[-28.250355597999885,38.727728583000115],[-28.232533331999917,38.72557200700011]]],[[[-27.05174719999988,38.654282945000105],[-27.054351365999963,38.64520905200011],[-27.06029212099989,38.64142487200009],[-27.089100714999915,38.631008205000015],[-27.114165818999904,38.63898346600014],[-27.181711391999983,38.639349677000084],[-27.20449785099993,38.652655341000084],[-27.217152472999885,38.64130280200011],[-27.228382941999882,38.64109935100008],[-27.25291907499991,38.652655341000084],[-27.27879798099991,38.657416083],[-27.304758266999926,38.658880927000055],[-27.32762610599991,38.66632721600003],[-27.352691209999932,38.684393622000144],[-27.373402472999913,38.70697663000011],[-27.383290167999945,38.727728583000115],[-27.391713019999884,38.75885651200012],[-27.368763800999915,38.782660223],[-27.33177649599986,38.79804108300006],[-27.298207160999937,38.80353424700017],[-27.14427649599986,38.796087958],[-27.115549282999893,38.78607819200012],[-27.075062628999973,38.76699453300012],[-27.042551235999895,38.74445221600014],[-27.037505662999962,38.72435130400011],[-27.040882941999882,38.714422919000114],[-27.032826300999943,38.70856354400014],[-27.022816535999965,38.70282623900009],[-27.02013098899988,38.69367096600011],[-27.025746222999885,38.69000885600014],[-27.047759568999876,38.68292877800009],[-27.054351365999963,38.679388739000025],[-27.056141730999855,38.67133209800006],[-27.05174719999988,38.654282945000105]]],[[[-9.05455481699994,38.83299388200005],[-9.073150193999936,38.81818268400009],[-9.079660610999923,38.820135809000035],[-9.07140051999994,38.837591864],[-9.061390753999945,38.85224030200011],[-9.050119594999956,38.861721096],[-9.043934699999909,38.865790106000176],[-9.041127081999946,38.867621161000145],[-9.035267706999917,38.870550848000065],[-9.034575975999871,38.86420319200015],[-9.041411912999877,38.849188544000114],[-9.05455481699994,38.83299388200005]]],[[[-28.023833787999905,39.10321686400012],[-28.013824022999927,39.09772370000009],[-28.007069464999883,39.10455963700012],[-27.991281704999917,39.087795315],[-27.95807857999992,39.06647370000003],[-27.942209438999896,39.053045966000056],[-27.935902472999942,39.03595612200009],[-27.947173631999927,39.024237372000115],[-27.96621660099993,39.01732005400011],[-27.98346920499995,39.0151227890001],[-28.00389563699991,39.01593659100003],[-28.025217251999976,39.019110419000086],[-28.04515540299988,39.025580145],[-28.06163489499994,39.03628164300004],[-28.072987433999913,39.052964585000055],[-28.07152258999986,39.06761302300008],[-28.054839647999927,39.09772370000009],[-28.04482988199993,39.10321686400012],[-28.034331834999875,39.105047919000114],[-28.023833787999905,39.10321686400012]]],[[[-31.186268683999938,39.496649481000176],[-31.17271887899997,39.495347397999986],[-31.159535285999937,39.50177643400009],[-31.140736456999978,39.482733466000084],[-31.132679816999936,39.465521552000084],[-31.131581183999884,39.42300039300012],[-31.13902747299997,39.400295315000065],[-31.1566462879999,39.372626044000164],[-31.177235480999943,39.355617580000015],[-31.19367428299992,39.364650783000044],[-31.21251380099997,39.35773346600003],[-31.234445766999983,39.35569896],[-31.254750128999888,39.35809967700014],[-31.26878821499994,39.364650783000044],[-31.278146938999985,39.378404039000046],[-31.284657355999883,39.39789459800012],[-31.284901495999915,39.416164455],[-31.27562415299985,39.42609284100011],[-31.280913865999935,39.44310130400008],[-31.27562415299985,39.457098700000024],[-31.267079230999943,39.47207265800016],[-31.262562628999888,39.49188873900009],[-31.25576738199996,39.50747304900007],[-31.23932857999995,39.51756419500013],[-31.218983527999885,39.52240631700012],[-31.200510219999927,39.52220286700016],[-31.207915818999933,39.508612372000115],[-31.1985570949999,39.502183335],[-31.186268683999938,39.496649481000176]]],[[[-31.099964972999913,39.66400788000014],[-31.131581183999884,39.65884023600013],[-31.133046027999853,39.66535065300003],[-31.148915167999885,39.69635651200014],[-31.152699347999913,39.701076565000065],[-31.149647589999915,39.71149323100015],[-31.141102667999885,39.720892645000085],[-31.129383917999917,39.727118231000034],[-31.11729895699989,39.72833893400015],[-31.0826716789999,39.722723700000145],[-31.08023027299987,39.69330475500006],[-31.099964972999913,39.66400788000014]]],[[[-8.204016479999922,42.06955210400004],[-8.19130407699987,42.06208485900011],[-8.17616288299996,42.065262960000084],[-8.15838618999993,42.071386617000044],[-8.137612263999898,42.07291107200014],[-8.118440307999975,42.06686492900009],[-8.103195760999938,42.05580617300011],[-8.095082559999922,42.04092336100014],[-8.097356322999929,42.02348256500004],[-8.10802750699986,42.010899353000084],[-8.12391800899988,42.000899964],[-8.152960163999865,41.98681813600014],[-8.182131509999891,41.96542409300004],[-8.220707966999953,41.92271352100011],[-8.23021643099986,41.90467844700014],[-8.231715047999955,41.88604909300007],[-8.220397908999871,41.868194886000126],[-8.184586140999954,41.85773040800008],[-8.177041381999885,41.84984975200014],[-8.175387735999948,41.83659474700012],[-8.17926510099994,41.81261252500012],[-8.179573526999889,41.810704854],[-8.093480590999889,41.80672576900012],[-8.050445716999889,41.81598643800011],[-8.048573770999894,41.816389262000044],[-8.01570756099994,41.841891581000155],[-8.005889037999905,41.85395802900014],[-7.993641723999872,41.863673198000086],[-7.979430704999913,41.86860829700014],[-7.963359334999921,41.866618755],[-7.94475581899988,41.866954652000075],[-7.93535070799993,41.879951274000014],[-7.930493122999906,41.89666860000007],[-7.92579056799994,41.90816660600008],[-7.906101846999888,41.913851014000116],[-7.903362995999941,41.88682424000008],[-7.896593383999885,41.85793711300012],[-7.864812377999953,41.85788543700012],[-7.85788773599998,41.86377655100004],[-7.854425414999922,41.87026194300007],[-7.849722859999872,41.87576548300008],[-7.839232543999913,41.878375143000184],[-7.812154092999947,41.877134909000134],[-7.750142374999911,41.888374532000014],[-7.722030395999865,41.899252421000156],[-7.706372436999913,41.896255188000154],[-7.678673868999879,41.881346537000084],[-7.661155557999932,41.874912822000155],[-7.607360391999919,41.87318166199999],[-7.622811644999899,41.84173655200014],[-7.622191528999848,41.83233144200007],[-7.606068480999851,41.82553599100014],[-7.588395141999854,41.82421824200016],[-7.567104451999882,41.826595358000034],[-7.546692260999919,41.832047221000025],[-7.531551066999923,41.84016042100002],[-7.526331746999888,41.84736928300007],[-7.525246540999887,41.854164734],[-7.523282836999954,41.860159201000144],[-7.515841430999927,41.86499094700015],[-7.508141642999959,41.86493927000005],[-7.493000447999946,41.85690358600006],[-7.483285278999887,41.856205954000146],[-7.469384318999913,41.852536926000155],[-7.456568562999848,41.83923024500014],[-7.446956746999916,41.82184112600014],[-7.442719278999959,41.805950623000015],[-7.4295417889999,41.81450307300004],[-7.405408894999937,41.83519948400006],[-7.391921345999974,41.842046611000015],[-7.376831827999865,41.84403615300006],[-7.340503295999895,41.84320933100004],[-7.322468220999894,41.845405579000115],[-7.251464802999919,41.86369903600011],[-7.21865026899991,41.87904693700006],[-7.209316117999947,41.88916087300005],[-7.19792801899996,41.90150034599999],[-7.195654255999955,41.917365011000086],[-7.20211381099989,41.94974029500018],[-7.1999434,41.963718771000075],[-7.192605346999926,41.96960988400017],[-7.177309122999873,41.97836903900015],[-7.159739135999899,41.98573293100016],[-7.1453730879999,41.98748992900012],[-7.113178670999929,41.97242625000014],[-7.082741251999948,41.95278920500003],[-7.051270303999928,41.94201466900007],[-7.015768594999884,41.95366770500006],[-6.992359170999918,41.96638010700009],[-6.983456182999929,41.96299616600005],[-6.96951818799991,41.95769846600013],[-6.945126911999893,41.94335825700013],[-6.917118285999948,41.93909495000018],[-6.854951537999881,41.94294484500013],[-6.831232055999919,41.95395192500003],[-6.824927530999928,41.98376922600012],[-6.794386759999924,41.97971262600011],[-6.757903197999894,41.93757049599999],[-6.727982543999872,41.930852559000144],[-6.656772419999925,41.93307464700014],[-6.622821003999917,41.94095530200009],[-6.609488484999872,41.96232350700011],[-6.585148885999956,41.95464955700011],[-6.571661335999892,41.942608948000135],[-6.567630574999896,41.92607249000006],[-6.575795450999919,41.88289683100011],[-6.567888956999894,41.875868836],[-6.550060587999923,41.87387929300017],[-6.524222371999911,41.86741974000002],[-6.53574621599995,41.8485836790001],[-6.560137491999881,41.7668832400001],[-6.564374958999935,41.75750396800005],[-6.571506306999964,41.7492099],[-6.577397419999954,41.73972727500002],[-6.574348510999926,41.73104563400007],[-6.567682250999923,41.72244150800013],[-6.563083048999885,41.71303639700007],[-6.560499226999866,41.69445872100012],[-6.555279906999942,41.67489919100011],[-6.541533976999915,41.65890533500006],[-6.513421996999881,41.6509213260001],[-6.503035033999964,41.65309173700008],[-6.488048868999897,41.65880198200012],[-6.474354614999868,41.66593333000016],[-6.467740030999948,41.67205698700003],[-6.46081538999988,41.676552836000056],[-6.447069457999959,41.67624277800017],[-6.365937459999913,41.66360789000013],[-6.317103230999948,41.65014618],[-6.272248087999856,41.62823537200002],[-6.230080118999894,41.594904073000166],[-6.216127481999905,41.58009877500013],[-6.205947224999932,41.57028025300017],[-6.253644571999899,41.51751861600006],[-6.279534463999937,41.49700307200008],[-6.285890665999943,41.48687449200012],[-6.285167194999872,41.47896799800016],[-6.282480020999941,41.472301738000155],[-6.282945108999854,41.46563547800004],[-6.321030639999917,41.41959177700012],[-6.321133991999942,41.4110134890001],[-6.352346557999908,41.409256491000015],[-6.366247517999881,41.40517405300004],[-6.379166625999915,41.39731923400007],[-6.376169392999884,41.39685414600014],[-6.37554927599993,41.390808004000014],[-6.376737832999936,41.38300486300009],[-6.379166625999915,41.377475485],[-6.3831973879999,41.37654530900012],[-6.395496377999932,41.37840566000012],[-6.399578816999849,41.377475485],[-6.430998086999892,41.33902821900013],[-6.463140828999911,41.31412017800006],[-6.495852010999897,41.29494822200017],[-6.55445308399993,41.27562123700004],[-6.563496459999897,41.270711975],[-6.628918823999868,41.26993682900017],[-6.646643839999882,41.26761139000014],[-6.658219359999919,41.25784454400018],[-6.693772745999894,41.217381897000095],[-6.701265828999908,41.20244740800005],[-6.706950235999955,41.19433420900013],[-6.742245238999941,41.17144154900002],[-6.755216023999878,41.15883250000008],[-6.758988403999894,41.151752828000056],[-6.756507934999917,41.127051494000156],[-6.764776163999954,41.108861390000115],[-6.804360310999925,41.064419658000034],[-6.818002888999927,41.054136048000046],[-6.845288044999933,41.05191396100004],[-6.90683467599996,41.05609975200015],[-6.927447856999947,41.04809758400002],[-6.927866983999877,41.047934876000156],[-6.931794392999961,41.02912465400014],[-6.942491414999949,41.01599884000008],[-6.940424356999898,41.003389791000146],[-6.930605834999938,40.99207265200009],[-6.899238240999921,40.96675120100009],[-6.885182251999879,40.94892283200015],[-6.863633178999919,40.90830515600011],[-6.855261596999866,40.88722117200008],[-6.847045043999913,40.87890126600003],[-6.832058877999941,40.87590403300011],[-6.821155151999903,40.870064596000034],[-6.816194213999949,40.85683542900013],[-6.82032832799996,40.84422638000011],[-6.836658080999911,40.84024729400012],[-6.838053343999888,40.81492584200005],[-6.836813109999952,40.808311260000046],[-6.833505818999953,40.79782094300002],[-6.834539347999936,40.79223988900016],[-6.837278197999865,40.78676218700009],[-6.839138549999888,40.776891989000106],[-6.839138549999888,40.75751332600005],[-6.836968139999897,40.743302308000075],[-6.824307413999861,40.71069447800012],[-6.816245889999948,40.677156474000114],[-6.814230508999913,40.65932810500005],[-6.814282185999928,40.64718414300016],[-6.821310180999943,40.63018259700014],[-6.844461222999911,40.59778147400014],[-6.850455688999944,40.58222686800011],[-6.848388630999892,40.56476023400007],[-6.839758666999955,40.55457997600011],[-6.828544881999902,40.54553660100005],[-6.818054564999954,40.531894023000135],[-6.812525186999949,40.51463409500015],[-6.815315714999911,40.50254181000015],[-6.838673461999861,40.47722035800008],[-6.857121948999861,40.442132060000134],[-6.851282510999879,40.40952423099999],[-6.828079793999961,40.38058542900005],[-6.794438435999921,40.356400859000146],[-6.811956745999908,40.332319641000126],[-6.820793415999901,40.325343323000126],[-6.863943236999916,40.30095204700008],[-6.870196085999907,40.29552602200012],[-6.873865112999908,40.287774556000116],[-6.874509091999897,40.27918816700013],[-6.875105346999959,40.27123809900002],[-6.878050903999849,40.26524363200009],[-6.896447712999958,40.255476786000045],[-6.915826374999909,40.254443258000045],[-6.935411742999945,40.25583852200013],[-6.942100807999878,40.25497773100015],[-6.954687052999873,40.253358053000156],[-6.997785196999899,40.23170562700007],[-7.015768594999884,40.225504456000074],[-7.024760294999908,40.216202698000146],[-7.034578816999981,40.19305165600018],[-7.043105428999894,40.1813727830001],[-7.034837198999866,40.16674835200003],[-7.027654174999896,40.132641907000064],[-7.015768594999884,40.11905100500017],[-7.003676309999888,40.11631215400003],[-6.977166300999983,40.11341827400004],[-6.966417602999854,40.11031768800011],[-6.955720581999856,40.1029279590001],[-6.942129679999965,40.086339823000074],[-6.919908812999921,40.06489410400014],[-6.879704548999911,40.00918691000011],[-6.89691280099987,39.98712107400003],[-6.901615355999866,39.97647572800004],[-6.899755004999861,39.96562367800008],[-6.903682413999917,39.956683655000134],[-6.909521850999909,39.931982321000035],[-6.912570759999937,39.92810658800009],[-6.922285928999883,39.92242218000014],[-6.925231485999887,39.91792633100012],[-6.92512813299993,39.91224192400007],[-6.921562459999961,39.902165019000115],[-6.921769164999915,39.897152405000085],[-6.923474487999897,39.888315735000084],[-6.924249633999892,39.87157257100013],[-6.927660278999923,39.86190907800001],[-6.952826700999879,39.8328669240001],[-6.962335164999956,39.82852610300013],[-6.985227824999867,39.821136373000044],[-6.993030964999888,39.81607208300015],[-7.000265664999858,39.802532858000156],[-6.998870401999881,39.79178416000015],[-6.994581258999915,39.78258575500014],[-6.993030964999888,39.77421417300017],[-6.996803344999904,39.7647057090001],[-7.008740600999942,39.748324280000034],[-7.013339802999923,39.73891917000019],[-7.013649861999908,39.72961741200005],[-7.010704304999904,39.722796122000105],[-7.009619099999895,39.71545806900012],[-7.021142944999923,39.69401235],[-7.035767373999903,39.68925811800009],[-7.182890177999894,39.67509877500005],[-7.214051065999854,39.67618398100013],[-7.235755167999855,39.68651926700015],[-7.252860066999886,39.68233347600001],[-7.292754272999928,39.68331532900008],[-7.311409464999911,39.680318095000146],[-7.327842569999859,39.67478871700013],[-7.341433470999958,39.67184316000005],[-7.557285929999892,39.67980133100012],[-7.555871748999947,39.67720731800007],[-7.548242553999954,39.66321319700002],[-7.515841430999927,39.59376007100006],[-7.497858032999943,39.581047668000096],[-7.468092406999886,39.55024851500012],[-7.451349242999924,39.53784617200015],[-7.417552856999947,39.52420359300005],[-7.408922891999907,39.51557362900009],[-7.399414428999903,39.493662821000136],[-7.384169880999877,39.48399932900013],[-7.362930866999903,39.47609283500016],[-7.320917927999886,39.46741119400012],[-7.313528197999887,39.457437643],[-7.3136315509999,39.43609527600002],[-7.318850870999909,39.413254293000094],[-7.326705688999936,39.39883656799999],[-7.331925008999889,39.384728902000134],[-7.33140824399993,39.36261139000014],[-7.326654011999949,39.34132069900015],[-7.319264282999938,39.329538473000135],[-7.300454060999925,39.317911275000185],[-7.250844685999937,39.27062734000005],[-7.264332233999909,39.25233388300008],[-7.265779174999892,39.231353252000176],[-7.258079386999895,39.21130279500012],[-7.244126749999906,39.19564483700016],[-7.21932206299988,39.18484446200013],[-7.191571817999944,39.17916005500008],[-7.168059040999935,39.170633443000085],[-7.155811726999929,39.151513163000075],[-7.157930460999893,39.14138458300012],[-7.168885864999878,39.12185089200012],[-7.167490600999883,39.11347931000013],[-7.157206990999896,39.10544362400016],[-7.14253088399991,39.09952667300014],[-7.127286336999873,39.097485453],[-7.115194050999889,39.10110280400009],[-7.091267862999899,39.11244578100014],[-7.064912882999919,39.114771220000094],[-7.038816283999921,39.10913848900016],[-7.015768594999884,39.09681366000002],[-6.99969722599991,39.084695536000126],[-6.985692911999904,39.06676381500016],[-6.979388386999887,39.047178447000036],[-6.986313028999859,39.030073547000185],[-6.974892537999949,39.02301971500016],[-6.973290567999925,39.01395050100011],[-6.97881994599993,39.003821920000135],[-6.988638467999891,38.99377085400012],[-7.022124796999889,38.942869568],[-7.044500691999872,38.918633321000115],[-7.066049764999916,38.904603170000186],[-7.052200479999954,38.884991964000065],[-7.057264769999932,38.86943735700014],[-7.056076212999926,38.85514882400015],[-7.064292764999948,38.85111806300016],[-7.076540079999887,38.84323740600003],[-7.088684040999879,38.83336720900006],[-7.104858764999959,38.827191874000064],[-7.15100581899992,38.81928538000001],[-7.160617634999937,38.81290334099999],[-7.166198689999931,38.803420715000115],[-7.179737914999919,38.79088918000009],[-7.196429402999853,38.77998545400014],[-7.211518920999964,38.77536041300009],[-7.22587838499993,38.76613382800015],[-7.270430053999859,38.7375074270001],[-7.272187052999925,38.73373504700008],[-7.28071366399996,38.72042836600015],[-7.284072631999977,38.7132453410001],[-7.290945596999933,38.679087219000124],[-7.292960977999882,38.65627207400003],[-7.2924958899999,38.64611765600016],[-7.290945596999933,38.63815948500009],[-7.286036335999909,38.631906637],[-7.279421752999895,38.62890940400008],[-7.273530639999905,38.62539540600012],[-7.270430053999859,38.617695618000035],[-7.275856079999925,38.603820496000154],[-7.317713988999913,38.55625234000014],[-7.335800740999929,38.50586781900016],[-7.34561926299989,38.49413726800016],[-7.334095417999947,38.481011455],[-7.33518062399986,38.46943593400006],[-7.344844115999877,38.45832550100015],[-7.359210163999876,38.446362407],[-7.34551591,38.440962220000024],[-7.317145547999871,38.42458079100008],[-7.211363891999923,38.31753306100008],[-7.207126424999956,38.31169362399999],[-7.200666870999896,38.29838694300018],[-7.196326049999925,38.29215993300009],[-7.189453084999854,38.28652720200016],[-7.172399861999935,38.27652781200013],[-7.167180541999898,38.27208363900003],[-7.126872924999872,38.19089996400008],[-7.117068156999977,38.18363315600011],[-7.103515176999905,38.17358835900008],[-7.088322306999885,38.173381653000106],[-7.063052530999926,38.17754160600004],[-7.038712930999907,38.18622324600001],[-7.026413939999968,38.199633281000146],[-7.021039591999909,38.198238017000065],[-7.018145710999902,38.19803131100012],[-6.992100789999938,38.204284160000114],[-6.964195516999951,38.20614451100012],[-6.950575759999879,38.198385888000146],[-6.947504027999911,38.19663604700004],[-6.957632609999877,38.16816233300001],[-6.965487426999914,38.15333119700007],[-6.97897497599996,38.119948222000104],[-6.997630167999944,38.08961415600005],[-7.006363484999923,38.05933176700013],[-7.015768594999884,38.046826071000126],[-7.023985148999913,38.02256398500005],[-7.049358275999907,38.0202127080001],[-7.105943969999885,38.03866119400011],[-7.12325557399987,38.04000478100009],[-7.131988891999953,38.032382507000094],[-7.141910765999852,38.01158274300015],[-7.152246052999942,38.00065317800009],[-7.159739135999899,37.99680328400014],[-7.172864949999848,37.99383188900013],[-7.185267293999913,37.98869008400014],[-7.197617960999877,37.98993031900007],[-7.210330362999939,37.99303090400012],[-7.223301146999859,37.99383188900013],[-7.234049844999958,37.988069967000065],[-7.265830850999919,37.98295400100007],[-7.272703816999893,37.97701121000016],[-7.272135375999937,37.968949687000176],[-7.26908646599989,37.959441224],[-7.268621378999881,37.94923512800001],[-7.273892374999918,37.93153595000011],[-7.295803181999872,37.88487213100002],[-7.306861937999968,37.85076568600006],[-7.334405476999847,37.81193084700011],[-7.426337849999924,37.75061676100013],[-7.444011189999913,37.73015289300018],[-7.4575504149999,37.70007721000012],[-7.466335407999908,37.65196645200014],[-7.471606404999931,37.636902771000145],[-7.478479369999889,37.62886708600017],[-7.504886026999968,37.60638783800006],[-7.514342813999947,37.60140106200011],[-7.511758992999944,37.59527740500015],[-7.512534138999854,37.590368144000095],[-7.514652872999932,37.58587229400008],[-7.515841430999927,37.580937195000146],[-7.526486775999928,37.571196188],[-7.529690714999902,37.5671654260001],[-7.529122273999859,37.55670094800014],[-7.527597819999926,37.55551239100013],[-7.52367040999988,37.55566741900016],[-7.518425252999862,37.54194732700016],[-7.51754675299992,37.5351777150001],[-7.515428018999926,37.529338277000036],[-7.514613427999932,37.52833392300006],[-7.506332967999867,37.518124492000176],[-7.498633178999881,37.51166493800012],[-7.481476603999909,37.500373638000056],[-7.475947224999913,37.494249980000106],[-7.46886755399987,37.475568950000124],[-7.462924763999865,37.45112599700017],[-7.460030883999877,37.429137675],[-7.462252970999883,37.41787221300014],[-7.444993041999907,37.38676300100009],[-7.437448282999952,37.30733632400002],[-7.427578083999946,37.274521790000094],[-7.434244343999864,37.259328919000055],[-7.429386758999953,37.23674631800013],[-7.414418097999913,37.19281647300012],[-7.411488410999879,37.18793366100005],[-7.409413214999887,37.18374258000012],[-7.40640214799987,37.18048737200009],[-7.400217251999891,37.178534247000144],[-7.400217251999891,37.17234935100008],[-7.4076228509999,37.164862372000115],[-7.424305792999917,37.17503489800005],[-7.445708787999878,37.17963288],[-7.468658006999874,37.18032461100013],[-7.490142381999902,37.178534247000144],[-7.511789516999983,37.17177969],[-7.552235480999911,37.14923737200003],[-7.56899980399993,37.14443594000012],[-7.627349412999933,37.113959052],[-7.635161912999933,37.10541413000005],[-7.786610480999882,37.022691148000106],[-7.819569464999859,36.998724677000055],[-7.834055141999897,36.99892812700001],[-7.849598761999913,37.00438060100005],[-7.870716925999915,37.00787995000003],[-7.932443813999924,37.00853099200019],[-7.949533657999979,37.014105536],[-7.958119269999883,37.002630927000055],[-7.968820766999897,37.00372955900009],[-7.98159746,37.01007721600003],[-7.991200324999851,37.014105536],[-7.981353318999908,37.00169505400007],[-7.978098110999952,36.995347398000135],[-7.976796027999882,36.986761786000116],[-7.999256964999859,37.013251044000086],[-8.035267706999917,37.037502346000096],[-8.10655676999994,37.06928131700012],[-8.147475007999958,37.076531029000094],[-8.179151775999884,37.088099083000046],[-8.212896014999927,37.086910323],[-8.293202277999853,37.07770416900017],[-8.327381964999914,37.087388414000046],[-8.365383983999891,37.097998535000144],[-8.395214820999854,37.08713944100005],[-8.438834223999919,37.08273401100014],[-8.482256767999957,37.09575439600009],[-8.484251971999925,37.09416437300017],[-8.537464972999913,37.1178246110001],[-8.580148891999926,37.12396881700006],[-8.626779751999948,37.12116120000003],[-8.641590949999909,37.11774323100011],[-8.654652472999885,37.11029694200012],[-8.686268683999884,37.082953192000055],[-8.747670050999972,37.082953192000055],[-8.759673631999902,37.08026764500009],[-8.785552537999903,37.067206122000115],[-8.79857337099989,37.062486070000105],[-8.813710089999887,37.06159088700009],[-8.83721519199986,37.05658783100013],[-8.859157616999937,37.04079760300006],[-8.878919101999884,37.047208779000115],[-8.896962042999917,37.03278229400017],[-8.905100063999924,37.027736721000124],[-8.915598110999895,37.02460358300005],[-8.935617641999954,37.0109723980001],[-8.946034308999856,37.00787995000003],[-8.961171027999853,37.012396552],[-8.972075975999928,37.02118561400006],[-8.982899542999917,37.026597398000106],[-8.997873501999948,37.02147044499999],[-8.991037563999953,37.04950592700003],[-8.985585089999915,37.0633812520001],[-8.980783657999922,37.06928131700012],[-8.941793216999883,37.1187060700001],[-8.926909959999875,37.146144924000126],[-8.913563605999883,37.16990794500005],[-8.922718878999945,37.19965241100006],[-8.90465247299994,37.21320221600003],[-8.88136486399992,37.23248011],[-8.867089959999902,37.276724649000116],[-8.874918765999922,37.29411948100007],[-8.882767549999897,37.309931281000146],[-8.866676224999878,37.33515438800008],[-8.83865693999988,37.360318145000136],[-8.833363410999937,37.38458893400015],[-8.815988735999952,37.41791413000014],[-8.804064151999881,37.4627871900001],[-8.797861434999959,37.48960005900003],[-8.795496837999877,37.53536243600003],[-8.801305057999855,37.55906461800004],[-8.811143592999883,37.57489650400011],[-8.824370897999927,37.5875511740001],[-8.826527472999912,37.60057200700008],[-8.812855597999885,37.64468008000007],[-8.808257615999935,37.67202383000013],[-8.799305792999917,37.69757721600003],[-8.786206346999903,37.70261488500002],[-8.757639126999948,37.706732489],[-8.75218665299991,37.73078034100014],[-8.75218665299991,37.73456452000006],[-8.761830206999889,37.727769273000135],[-8.784056434999911,37.723129471],[-8.808705206999946,37.72288646000008],[-8.81700598899991,37.74030182500003],[-8.809582468999878,37.79123117000007],[-8.79718174099986,37.844872863000106],[-8.798955973999938,37.87809298600011],[-8.804814876999925,37.90187254600014],[-8.820668952999938,37.927266814000106],[-8.853871222999885,37.93227773600002],[-8.894846157999893,37.952541408000016],[-8.890044725999928,37.96092357],[-8.883168097999912,37.964504299000154],[-8.875396287999905,37.96735260600009],[-8.86750240799992,37.97361888200013],[-8.815683439999901,38.062115348000034],[-8.796993236999896,38.13324640800012],[-8.774395582999944,38.18694927000014],[-8.777952340999889,38.2406910830001],[-8.78546598899993,38.303908239000044],[-8.79507065899989,38.3592272690001],[-8.820940922999881,38.39882054400012],[-8.846791144999912,38.42007070500004],[-8.878285285999937,38.44916413],[-8.91466223899991,38.47284577],[-8.942616339999859,38.48139069200012],[-8.927316860999895,38.493801174000154],[-8.904530402999882,38.486395575000174],[-8.86750240799992,38.460882880000085],[-8.821848110999895,38.44855377800003],[-8.800160285999908,38.439113674],[-8.79857337099989,38.42609284100003],[-8.756988084999904,38.42731354400014],[-8.656890428999873,38.405951239],[-8.60680091099988,38.41868724200005],[-8.636830206999917,38.420152085000026],[-8.66274980399993,38.424505927],[-8.73615475199992,38.451849677000084],[-8.74502519399988,38.46027252800012],[-8.750803188999924,38.47394440300015],[-8.752512173999946,38.487982489],[-8.750884568999906,38.500637111000074],[-8.745757615999905,38.51007721600008],[-8.737172003999886,38.51487864799999],[-8.737172003999886,38.522365627000156],[-8.751454230999883,38.526434637000094],[-8.761219855999938,38.53807200700011],[-8.764230923999918,38.552069403000175],[-8.757639126999948,38.56329987200017],[-8.77334550699993,38.56533437700001],[-8.792958136999886,38.53359609600015],[-8.812855597999885,38.528550523000106],[-8.812855597999885,38.522365627000156],[-8.790638800999915,38.51992422100001],[-8.780262824999909,38.50543854400017],[-8.780018683999883,38.489081122000144],[-8.788400844999927,38.48139069200012],[-8.81232662699989,38.482855536],[-8.832264777999882,38.487046617000125],[-8.86750240799992,38.501857815],[-8.905832485999952,38.512396552000055],[-8.954890212999942,38.50514373300011],[-8.99976531999991,38.46425312000004],[-8.991864489999983,38.45947786000009],[-9.048595104999947,38.44067055200004],[-9.145657471999924,38.43138298500004],[-9.165908652999889,38.42508941600015],[-9.182141078999848,38.41562365600005],[-9.200356960999898,38.41248093300008],[-9.226185675999913,38.41840241100003],[-9.230620897999898,38.41868724200005],[-9.233998175999915,38.42422109600007],[-9.23375403599988,38.43146393400018],[-9.23106848899991,38.43768952000014],[-9.227202928999901,38.44037506700012],[-9.219960089999857,38.449042059000114],[-9.190026551999921,38.47253170800015],[-9.183867601999879,38.50412810500008],[-9.183792864999928,38.55153697300007],[-9.208070232999944,38.59741731800007],[-9.238463896999917,38.63541159800012],[-9.252674913999897,38.665483907000166],[-9.234395243999899,38.673360749000054],[-9.187681016999932,38.678009735000145],[-9.14504168199997,38.68106793700004],[-9.124134894999939,38.67096588700015],[-9.113921678999901,38.658880927000055],[-9.107736782999922,38.658880927000055],[-9.113921678999901,38.679388739000025],[-9.098866339999887,38.685614325000174],[-9.067290818999908,38.69232819200012],[-9.052398240999935,38.69367096600011],[-9.052398240999935,38.699896552000055],[-9.03743372999989,38.71394052600006],[-9.02116753999988,38.72653026500007],[-8.992709282999982,38.74381367700006],[-8.956857876999946,38.768133856000176],[-8.952951626999948,38.77024974200016],[-8.94713294199991,38.774237372000144],[-8.942616339999859,38.77558014500014],[-8.942616339999859,38.781724351000136],[-8.952626105999855,38.79490794499999],[-8.964263475999928,38.81484609600006],[-8.970285610999952,38.83543528900019],[-8.96312415299991,38.85065338700018],[-8.986317511999857,38.84943268400015],[-8.996815558999913,38.86554596600003],[-9.002593553999873,38.88983795800003],[-9.01154537699989,38.91339752800015],[-8.969105597999913,38.98395416900003],[-8.94322669199991,39.01520416900008],[-8.908436652999853,39.03628164300004],[-8.88841712099989,39.04010651200004],[-8.845529751999917,39.042914130000085],[-8.826527472999912,39.049261786000116],[-8.790353969999899,39.07062409100017],[-8.774647589999915,39.083441473],[-8.765126105999911,39.09772370000009],[-8.791737433999883,39.082424221000124],[-8.836415167999917,39.05670807500009],[-8.922718878999945,39.049261786000116],[-8.935861782999922,39.040716864],[-8.955067511999884,39.01219310099999],[-9.003529425999943,38.95774974200018],[-9.05890865799992,38.87140534100016],[-9.08967037699992,38.84357330900012],[-9.100249803999873,38.830226955],[-9.106556769999912,38.81378815300012],[-9.104217233999861,38.79481578000009],[-9.102257423999902,38.76159338000018],[-9.098247540999864,38.73785767600013],[-9.11250330999988,38.714182291],[-9.163287066999942,38.70167186300013],[-9.220170787999905,38.69389544000002],[-9.28520930399992,38.698757565000065],[-9.303485298999874,38.687704903000125],[-9.321777364999887,38.6703245130001],[-9.360585089999915,38.689520575000145],[-9.404774542999888,38.704087632],[-9.429188605999855,38.707261460000055],[-9.471669074999909,38.702460028000175],[-9.491688605999883,38.707586981000176],[-9.491281704999892,38.727728583000115],[-9.484730597999885,38.74469635600009],[-9.497466600999926,38.78823476800012],[-9.497466600999926,38.80975983300014],[-9.491932745999918,38.81924062700013],[-9.4798884759999,38.830755927000084],[-9.455495665999932,38.850468694000156],[-9.4227249139999,38.93140379100008],[-9.425363735999923,38.99164459800015],[-9.436634894999912,39.02948639500009],[-9.426646807999871,39.051723994],[-9.422548877999901,39.07862519400014],[-9.383696135999884,39.13403176900006],[-9.37141790699988,39.160919652000146],[-9.350859757999928,39.19730924500011],[-9.34678102199996,39.235225896000046],[-9.340590389999875,39.266829599000154],[-9.354074673999918,39.316229559000035],[-9.36583411399991,39.336004950000145],[-9.4017634759999,39.36522044499999],[-9.40929114499994,39.37518952000009],[-9.397816535999908,39.37799713700004],[-9.352921539999898,39.367934014000085],[-9.279244908999885,39.40582171900009],[-9.260803351999925,39.418442396000025],[-9.240314902999954,39.41999709100004],[-9.227894660999937,39.408433335],[-9.217600063999924,39.406195380000106],[-9.205922003999916,39.41547272300006],[-9.213531053999873,39.42861562700004],[-9.22988847599987,39.44074127800012],[-9.213649287999885,39.46103549900006],[-9.191085031999933,39.48153602000006],[-9.182873267999867,39.49258381800003],[-9.164413231999958,39.50202368500011],[-9.135694137999877,39.51618029900011],[-9.12130004099987,39.535104663000155],[-9.111008998999864,39.55087924400008],[-9.090434486999897,39.57927490600004],[-9.088341062999886,39.59666162200013],[-9.090343131999902,39.61564103700012],[-9.077946754999886,39.64247909000009],[-9.071692364999933,39.68043688600012],[-8.993031378999888,39.84316640800007],[-8.86815344999988,40.12482330900009],[-8.853260870999918,40.13922760600015],[-8.84162350199992,40.12596263200014],[-8.825062628999945,40.120062567],[-8.78498287699992,40.118719794000114],[-8.78498287699992,40.126166083],[-8.801096157999892,40.13792552300008],[-8.816151495999918,40.146551825000174],[-8.833607550999885,40.15167877800009],[-8.879383917999888,40.15623607000013],[-8.896473761999912,40.164740302000055],[-8.906605597999883,40.17938873900009],[-8.908436652999853,40.200669664000046],[-8.895741339999887,40.228745835000055],[-8.865386522999927,40.27545807500006],[-8.79857337099989,40.47443268400009],[-8.784855297999854,40.53681779200003],[-8.765788097999888,40.58254100400008],[-8.75300045499992,40.64081452000009],[-8.750355597999942,40.64394765800016],[-8.744618292999888,40.64691803600009],[-8.743967251999917,40.625799872000144],[-8.744618292999888,40.61904531500012],[-8.724680141999897,40.64451732000013],[-8.710275844999927,40.653469143000066],[-8.696156378999888,40.64691803600009],[-8.690012173999918,40.64691803600009],[-8.690012173999918,40.65314362200003],[-8.69237219999988,40.65570709800015],[-8.696400519999939,40.66132233300014],[-8.69880123599998,40.667954820000105],[-8.696156378999888,40.67365143400009],[-8.686390753999945,40.677923895],[-8.68077551999994,40.67499420800008],[-8.67686926999994,40.66966380400011],[-8.671986456999889,40.66681549700017],[-8.662098761999884,40.66986725500006],[-8.653635219999927,40.67719147300006],[-8.641590949999909,40.694159247000144],[-8.657460089999859,40.70140208500008],[-8.666330532999893,40.713202216000056],[-8.663644985999923,40.72406647300012],[-8.644927537999934,40.72890859600001],[-8.621815558999884,40.73065827],[-8.603871222999942,40.735785223],[-8.588368292999917,40.744208075000145],[-8.572661912999877,40.75556061400012],[-8.589507615999876,40.75470612200003],[-8.614735480999938,40.74494049700009],[-8.635975714999915,40.74160390800016],[-8.639881964999915,40.74005768400012],[-8.645375128999945,40.73973216400019],[-8.668446417999888,40.747463283000016],[-8.67568925699993,40.75556061400012],[-8.683705206999974,40.783107815000065],[-8.645578579999892,40.823675848000065],[-8.655262824999852,40.84491608300006],[-8.656971808999856,40.828558661000145],[-8.663197394999912,40.81492747599999],[-8.67052161399991,40.81118398600016],[-8.67568925699993,40.82444896],[-8.68980872299994,40.8041039080001],[-8.70055091099988,40.777980861000124],[-8.707386847999885,40.75031159100014],[-8.709828253999916,40.72516510600015],[-8.7142634759999,40.70905182500009],[-8.725087042999888,40.685980536000145],[-8.738433397999897,40.66449616100003],[-8.750803188999924,40.65314362200003],[-8.655100063999896,40.99380117400001],[-8.655262824999852,41.030503648000106],[-8.667103644999912,41.09756094000009],[-8.666127081999946,41.13275788000014],[-8.64834550699996,41.14663320500013],[-8.64834550699996,41.15277741100003],[-8.685780402999882,41.15949127800015],[-8.705189581999889,41.186916408000016],[-8.718373175999943,41.221502997000115],[-8.737172003999886,41.2496605490001],[-8.73228919199991,41.262925523000106],[-8.734608527999882,41.274074611000124],[-8.74006100199992,41.28497955900012],[-8.744618292999888,41.297430731000034],[-8.744455532999922,41.32811107000013],[-8.749134894999912,41.33779531500009],[-8.756132205999961,41.34054],[-8.760324673999945,41.35089752800015],[-8.764027472999885,41.36131419500005],[-8.778146938999924,41.37933991100009],[-8.78380286399991,41.39386627800011],[-8.783773362999852,41.40610855100009],[-8.785563586999928,41.43487822300007],[-8.774849231999895,41.46833848600015],[-8.786469626999917,41.491067096000094],[-8.788260342999934,41.51179843100006],[-8.792733322999936,41.525838223000065],[-8.79542022399994,41.54255277400016],[-8.808338995999918,41.572943427000084],[-8.812855597999885,41.59540436400009],[-8.819488084999932,41.61188385600015],[-8.820449,41.63009682600013],[-8.828603353999908,41.648157496000024],[-8.830511327999943,41.67158556400001],[-8.827056443999908,41.68280670800006],[-8.804676886999886,41.68927643400015],[-8.743275519999884,41.69696686400005],[-8.725941535999908,41.70311107000005],[-8.710031704999892,41.71185944200012],[-8.696156378999888,41.721991278000175],[-8.806874152999882,41.69696686400005],[-8.829986131999902,41.69464752800012],[-8.842884894999939,41.69578685100005],[-8.861112562999978,41.70436810700015],[-8.880306243999911,41.73686160300015],[-8.880317002999902,41.76553269200018],[-8.872038936999928,41.81056866200011],[-8.878895636999886,41.839016018],[-8.874745245999861,41.84955475500006],[-8.86750240799992,41.85911692900005],[-8.796620245999947,41.90330638200011],[-8.762766079999977,41.931952216000084],[-8.750803188999924,41.96898021000011],[-8.739591023999933,41.975113424000156],[-8.717008422999896,41.98376922600012],[-8.69127355899991,41.989608664],[-8.670809691999864,41.999814758000085],[-8.663213256999882,42.00989166300003],[-8.65256791199991,42.03144073599999],[-8.643886271999946,42.04149180200001],[-8.626884724999911,42.05102610300009],[-8.60941809099998,42.05366160100011],[-8.572805337999938,42.054410909000026],[-8.554434366999942,42.06006947800016],[-8.520017862999879,42.07771698000006],[-8.501207641999883,42.083091330000016],[-8.346746785999898,42.10169484500007],[-8.329951944999948,42.1084386190001],[-8.304268757999864,42.125827739000115],[-8.295380411999957,42.130091045000185],[-8.287835652999888,42.13143463200005],[-8.270679076999926,42.1320030720001],[-8.252333943999956,42.13758412800003],[-8.222361612999919,42.15362966],[-8.213395751999883,42.14401784300016],[-8.204326537999918,42.12879913300004],[-8.207375447999937,42.08577850400006],[-8.204016479999922,42.06955210400004]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Romania","sov_a3":"ROU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Romania","adm0_a3":"ROU","geou_dif":0,"geounit":"Romania","gu_a3":"ROU","su_dif":0,"subunit":"Romania","su_a3":"ROU","brk_diff":0,"name":"Romania","name_long":"Romania","brk_a3":"ROU","brk_name":"Romania","brk_group":null,"abbrev":"Rom.","postal":"RO","formal_en":"Romania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Romania","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":3,"mapcolor13":13,"pop_est":22215421,"gdp_md_est":271400,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"RO","iso_a2":"RO","iso_a3":"ROU","iso_n3":"642","un_a3":"642","wb_a2":"RO","wb_a3":"ROM","woe_id":23424933,"woe_id_eh":23424933,"woe_note":"Exact WOE match as country","adm0_a3_is":"ROU","adm0_a3_us":"ROU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ROU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[26.722378784000114,48.259768575000095],[26.733127482000043,48.27074981700008],[26.7440312090001,48.25558278400007],[26.763719930000036,48.25274058000008],[26.804906047000117,48.258269959000096],[26.82190759300005,48.25253387500004],[26.84474857600014,48.2333102420001],[26.855497274000072,48.23783193000014],[26.89766524200013,48.20897064200011],[26.90396976700006,48.20145172200006],[26.90800052900005,48.18452769000007],[26.917715699000098,48.1879641730001],[26.929084513000074,48.19904876700011],[26.938127889000043,48.204810689000084],[26.950581909000103,48.19752431300008],[26.955646199000086,48.18600046900005],[26.9630876060001,48.17538096200008],[26.997607463000094,48.16657012900009],[26.997607463000094,48.15794016600003],[26.986238647000107,48.15042124400008],[26.966601603000072,48.14959442200006],[26.966601603000072,48.14336741200009],[26.993990112000116,48.132412008000095],[27.0126969800001,48.128122864000034],[27.02509932500007,48.135047506000035],[27.033677612000105,48.1323861700001],[27.042772664000065,48.12729604100011],[27.048043661000094,48.12223175100012],[27.0479547570001,48.121409387000114],[27.047423543000036,48.11649566600008],[27.03688155100008,48.10734893800009],[27.03429772900006,48.10176788400008],[27.04173913600007,48.07727325400003],[27.05920577000012,48.058049621000094],[27.08318363500004,48.043657736000085],[27.109331910000066,48.033503317000026],[27.109331910000066,48.02608774800009],[27.088971395000016,48.019809062],[27.090004924000084,48.01562327100007],[27.091451864000078,48.01185089100005],[27.093363892000095,48.008440247000124],[27.09579268400006,48.005598043000134],[27.121475871000143,48.01319447800011],[27.13460168500012,48.00045623800014],[27.14374841300011,47.98683949800005],[27.15718428500014,47.991955465000046],[27.168759806000082,47.983067119000026],[27.169793335000065,47.97379119900009],[27.16286869300009,47.96500620600011],[27.15098311300008,47.95779734300007],[27.171963746000074,47.94642852800006],[27.178268270000075,47.94412892700004],[27.178268270000075,47.94209566700004],[27.178268270000075,47.937927755000054],[27.1606982830001,47.921727193000066],[27.171550333000138,47.91263214200009],[27.19418461100011,47.90405385400006],[27.21237471500004,47.889506938000096],[27.211547892000112,47.885011088000084],[27.213201538000078,47.85413442000009],[27.21237471500004,47.84793324800009],[27.222813355000085,47.84266225200008],[27.23490564000008,47.840207622],[27.245809367000046,47.83659027200011],[27.25340580200009,47.82808949800011],[27.21919600400011,47.813775126000024],[27.231081584000037,47.8070830290001],[27.24487919100008,47.792587789000066],[27.256196329000147,47.777549948000086],[27.260847208000115,47.76907501300007],[27.26467126400007,47.764553325000065],[27.282447957000073,47.75569081600014],[27.287512247000052,47.752331849000115],[27.288114459000067,47.75068006700005],[27.291129598000055,47.742409974000026],[27.28957930500013,47.731687114000124],[27.29505700700011,47.72442657500005],[27.29505700700011,47.71817372700005],[27.272009318000045,47.714969788000076],[27.281104370000037,47.6930073040001],[27.304048706000057,47.666548971000026],[27.369161011000127,47.6083096320001],[27.397066284000115,47.589085999000076],[27.428382202000137,47.58102447500008],[27.429403890000117,47.57812969200012],[27.43134229800009,47.57263753500007],[27.435823608000046,47.55994049100005],[27.438975870000036,47.553713481000074],[27.440267782000063,47.55009613100009],[27.440061076000116,47.541026917000124],[27.442128134000086,47.53663442000004],[27.446055542000124,47.534877422000136],[27.456907593000093,47.533895569000066],[27.459491414000098,47.533223775000096],[27.466726115000142,47.50635203100009],[27.4731339920001,47.491779277000035],[27.483675985000076,47.4854230760001],[27.492564331000068,47.484544576000076],[27.497525268000114,47.4824258430001],[27.501452678000074,47.479945374000124],[27.507240438000053,47.47798167000008],[27.53297530100005,47.47741322900003],[27.534525594000087,47.47798167000008],[27.54816817200009,47.47426096600008],[27.56315433800006,47.46834401500007],[27.5758667390001,47.46041168200011],[27.582998087000135,47.450670675000055],[27.574781535000113,47.44625234000006],[27.569355509000047,47.43855255200006],[27.565531454000105,47.428268942000074],[27.56253422000009,47.4165383910001],[27.58031091300012,47.40599640000002],[27.572352743000064,47.37519724500007],[27.58640873200008,47.36876353000011],[27.588723990000062,47.367389398000086],[27.59994795700007,47.360727844000024],[27.6240291740001,47.32142791800004],[27.636948283000095,47.30667429600004],[27.644699748000104,47.30398712200011],[27.671726521000068,47.29985300800009],[27.682320191000116,47.29525380500013],[27.689864950000068,47.290887146000046],[27.697823120000038,47.28750234000003],[27.722834513000034,47.28331654900009],[27.73327315300008,47.275616761],[27.753633667000116,47.25143219000003],[27.752393433000066,47.238926494000026],[27.763038778000066,47.2263174440001],[27.788308553000036,47.20427744600002],[27.800349162000085,47.1769664520001],[27.80210616000008,47.17634633400013],[27.80479333500011,47.16849151700009],[27.8076872150001,47.16247121200007],[27.805878540000094,47.158233744000114],[27.794664754000053,47.15583079100006],[27.80655033400009,47.144617005],[27.849855184000063,47.128519796000035],[27.849855184000063,47.121724345000075],[27.843757365000098,47.114386291000095],[27.848201538000097,47.11141489700008],[27.8577100010001,47.109322001000116],[27.867011759000036,47.10464528500006],[27.89760420700011,47.08141672800013],[27.925922892000127,47.06875600200009],[27.938428589000125,47.061056214000104],[27.938738647000093,47.04663848900009],[27.963129924000043,47.04338287400009],[27.98659102400009,47.03322845500014],[28.008295125000103,47.026303813000055],[28.028035522000067,47.03297007300009],[28.03702722200012,47.016459453000095],[28.038146337000057,47.01548293500011],[28.069066609000117,46.98850250300009],[28.08270918800011,46.971526795000074],[28.10229455600006,46.93512074800009],[28.104994100000113,46.92018474300008],[28.1054468180001,46.91767995300006],[28.09686853100007,46.902616273000056],[28.1135600180001,46.89476145400001],[28.11433516400012,46.883392640000125],[28.11309493000007,46.87142954600009],[28.1242570390001,46.86163686100011],[28.1242570390001,46.85419545500011],[28.12261528700006,46.8422695190001],[28.121518188000064,46.834300029000104],[28.137796264000084,46.80623972600006],[28.178155558000068,46.75864573200005],[28.17810388200013,46.73983551100011],[28.234121134000077,46.6624242150001],[28.244249715000105,46.63537160300004],[28.245085309000043,46.63145127200004],[28.24735030100007,46.620824687000095],[28.247143595000097,46.607156270000075],[28.24052901200011,46.59638173500005],[28.230503784000092,46.583901876000056],[28.225439494000113,46.569561666000055],[28.234121134000077,46.55312856000009],[28.22476770000011,46.54873606400011],[28.22109867400013,46.54119130500007],[28.219031616000052,46.50372589100007],[28.22109867400013,46.49576772100011],[28.234121134000077,46.4780685420001],[28.238100220000035,46.475588074000115],[28.242337687000088,46.476518250000076],[28.245800008000028,46.475510559000014],[28.247143595000097,46.46719065400006],[28.247246948000022,46.43618479400004],[28.246058390000112,46.42786488900006],[28.240218953000124,46.42026845400011],[28.226059611000068,46.41535919200006],[28.233294312000055,46.401768290000064],[28.228643433000087,46.39610972100013],[28.226796348000107,46.39554824900003],[28.219548380000102,46.39334503200007],[28.21293379700009,46.388694153000095],[28.207146037000115,46.35815338100011],[28.202391805000047,46.353915914000076],[28.190351197000066,46.351073711000076],[28.18792240400012,46.34378733300011],[28.191953165000115,46.323504334000084],[28.19288334100014,46.31123118100007],[28.191333049000036,46.307768860000124],[28.177793824000048,46.2870466110001],[28.16575321400009,46.27883005800007],[28.156296428000104,46.27536773800003],[28.144927612000117,46.27293894500008],[28.135212443000086,46.269321595000086],[28.131078329000076,46.2623969520001],[28.13448897300009,46.24534373000006],[28.13211185700004,46.239917704000106],[28.120846394000097,46.23785064700013],[28.108960816000064,46.23412994400013],[28.11097619600011,46.225603333],[28.129321329000078,46.204674378000014],[28.135625855000086,46.198834941000115],[28.141516968000104,46.191961975000055],[28.14472090600006,46.18322865900009],[28.133248739000067,46.159974264000084],[28.127357625000055,46.13532460500008],[28.110506470000132,46.101491157000055],[28.10782281200005,46.096102956000095],[28.100795939000136,46.081994527000084],[28.092837768000066,46.07837717700011],[28.090150594000136,46.073364564000144],[28.090460652000047,46.067990214000076],[28.096558471000094,46.06504465800009],[28.09686853100007,46.05967030900012],[28.0844661860001,46.02458201100009],[28.08270918800011,46.01471181200011],[28.08611983300005,46.00055247100004],[28.110511109000072,45.95042633100012],[28.112371460000077,45.93921254500009],[28.114851928000064,45.933218079000056],[28.120846394000097,45.92629343700008],[28.124980510000114,45.918386943000115],[28.122810099000105,45.91079050800007],[28.11877933800011,45.90314239500009],[28.117435751000073,45.895235901000035],[28.120226278000104,45.88784617200014],[28.129114624000124,45.87513376900009],[28.131078329000076,45.87136139000006],[28.128184449000088,45.86640045200011],[28.114955282000096,45.859734192000104],[28.110511109000072,45.85430816600012],[28.113301636000127,45.82536936400007],[28.128907918000067,45.79503529900012],[28.146477906000143,45.77116078700004],[28.154952840000135,45.76180735300007],[28.16373783400013,45.661503398000036],[28.161774129000094,45.64543202700008],[28.167975302000087,45.63246124300013],[28.153712606000113,45.62750030600009],[28.120846394000097,45.62770701100007],[28.10772058100011,45.62439971900005],[28.091184123000115,45.61597646100006],[28.074751017000068,45.60486602800006],[28.06214196800005,45.59360056600008],[28.118004191000097,45.572723287000116],[28.140948527000063,45.56021759100011],[28.15774336700011,45.538926900000035],[28.161567423000065,45.53272572900005],[28.164047892000042,45.53060699500008],[28.16539147900008,45.52828155600014],[28.165908244000036,45.49458852200007],[28.172936239000133,45.48435658800011],[28.19949792500006,45.46177398700007],[28.21293379700009,45.45019846600013],[28.215146087000104,45.45036508200005],[28.237635132000037,45.452058818000125],[28.266883993000075,45.44048329700007],[28.286417684000067,45.421724752000074],[28.281198364000147,45.40182932600007],[28.310808960000088,45.34782745400011],[28.330239298000066,45.322919413000136],[28.353286987000043,45.31242909800008],[28.370236857000037,45.30922515900002],[28.40517012500004,45.29506581700008],[28.494156942000103,45.27889109400007],[28.577045939000126,45.24809193900011],[28.710061076000073,45.22695627900006],[28.74737146000012,45.23047027600012],[28.778687378000114,45.23109039400009],[28.79139978100008,45.234966126000046],[28.802665243000032,45.24416453100014],[28.774294881000113,45.253362936000144],[28.767266886000126,45.25775543300003],[28.76256433100013,45.26514516200004],[28.759670451000144,45.274188538],[28.76153080300006,45.28183665000009],[28.790159545000048,45.29206858300005],[28.788609253000114,45.307106425000136],[28.78974613400004,45.321420797000115],[28.816307820000134,45.32607167600008],[28.831810750000074,45.32229929700008],[28.858114054000108,45.309070130000066],[28.880851684000074,45.30617624900009],[28.89361576300004,45.29982004900006],[28.910048869000036,45.28736602800009],[28.929892618000107,45.27909779900003],[28.952836954000134,45.28509226500006],[28.95738448100008,45.29201690700006],[28.960433390000105,45.31129221600008],[28.966479533000037,45.31987050400011],[28.973662557000097,45.323694560000064],[28.982447550000074,45.32550323500004],[29.004616740000102,45.32607167600008],[29.01815596600008,45.33087758400009],[29.06952233900006,45.360798238000115],[29.110295043000125,45.369066468000085],[29.127503296000103,45.374544170000064],[29.141869344000096,45.38508616100003],[29.15013757300005,45.38787668900008],[29.17432214300004,45.38896189400009],[29.179386434000094,45.39185577400008],[29.183107137,45.39898712200011],[29.191582072000106,45.40617014600005],[29.2066715900001,45.415420227000084],[29.228168986000068,45.42374013300014],[29.2446020910001,45.42420522100005],[29.26082849100004,45.42203481000007],[29.281809122000144,45.422293193000144],[29.290490763000093,45.42461863300008],[29.29927575700009,45.428907777000035],[29.307027222000098,45.434127095000065],[29.312814982000134,45.439346415000074],[29.32211674000007,45.44384226500008],[29.33296879100004,45.44213694300004],[29.343924195000113,45.43810618100014],[29.3537427170001,45.43593577100006],[29.430637248000092,45.43040639200003],[29.569698527000067,45.39495636],[29.616362346000134,45.36534576500006],[29.628144572000053,45.360798238000115],[29.65026208500012,45.34612213200006],[29.66710860200004,45.31186065700004],[29.67227624500003,45.27294830300008],[29.659253784000096,45.24416453100014],[29.664989869000124,45.237860006000034],[29.666488484000066,45.230625306000064],[29.66421472100012,45.22318389900005],[29.6590787560001,45.21588671900005],[29.659074653004097,45.21588069502601],[29.65902754000012,45.21588776200005],[29.650157097000147,45.21723053600004],[29.623871290000064,45.21649811400002],[29.623871290000064,45.21027252800005],[29.63884524800005,45.19562409100004],[29.64975019600007,45.177801825000074],[29.66700280000009,45.164211330000114],[29.69955488400012,45.161810614000075],[29.67652428500014,45.14459870000004],[29.66439863400006,45.116929429000066],[29.656260613000143,45.02895742400002],[29.650726759000122,45.012111721000025],[29.63754316500007,44.983710028000075],[29.634938998000106,44.96954987200007],[29.633636915000068,44.95335521000001],[29.630869988000143,44.938666083000015],[29.623871290000064,44.92910390800003],[29.630381707000137,44.90766022300008],[29.60515384200005,44.88003164300008],[29.617849155000044,44.861476955000086],[29.611175977000077,44.849310614000075],[29.603200717000046,44.8454043640001],[29.593760613000082,44.84430573100005],[29.58350670700008,44.84027741100007],[29.56934655000009,44.824896552000034],[29.561778191000087,44.820257880000014],[29.542002800000088,44.827826239000075],[29.53109785200013,44.826239325000124],[29.520518425000088,44.8224958350001],[29.510996941000087,44.82050202000005],[29.315928582000083,44.79877350500007],[29.192067905000076,44.792873440000044],[29.1560978520001,44.784409898],[29.055837436000104,44.7351748720001],[29.026377800000034,44.71466705900005],[29.00074303500014,44.68891022300002],[28.99390709700012,44.69635651200008],[28.994883660000113,44.71112702000008],[28.98129316500004,44.72943756700005],[28.974945509000122,44.744940497000044],[28.997325066000144,44.75161367400008],[29.021494988000146,44.75470612200007],[29.05827884200005,44.768296617000026],[29.09815514400009,44.775376695],[29.12061608200011,44.78656647300002],[29.13868248800011,44.804022528000075],[29.14470462300002,44.82664622600004],[29.13884524800008,44.83917877800013],[29.125987175000063,44.85248444200005],[29.096364780000012,44.87506745000013],[29.10181725400005,44.85911692900004],[29.103363477000098,44.85130442900004],[29.10377037900011,44.84027741100007],[29.087901238000086,44.84271881700002],[29.073496941000116,44.83543528900009],[29.060313347000147,44.8323428410001],[29.04859459700006,44.84715403900009],[29.044118686000104,44.86554596600004],[29.041758660000138,44.92568594000002],[29.052093946000067,44.94464752800013],[29.098806186000047,44.95697663000007],[29.110606316000116,44.97003815300004],[29.101735873000077,44.98029205900008],[29.05827884200005,45.000962632000096],[29.04517662900005,45.0048281920001],[29.014414910000085,45.0048281920001],[28.983246290000096,45.01227448100008],[28.972829623000113,45.010972398000064],[28.969248894000113,45.00584544500006],[28.96607506600006,44.996568101],[28.96021569100012,44.98769765800006],[28.949229363000054,44.983710028000075],[28.927012566000116,44.98261139500005],[28.916840040000068,44.979681708000015],[28.880056186000072,44.95477936400007],[28.869395379000142,44.943345445000034],[28.86353600400011,44.922308661000095],[28.86508222700013,44.916571356000105],[28.8743595710001,44.91156647300008],[28.876638217000078,44.90485260600013],[28.874685092000025,44.89911530200007],[28.870127800000063,44.896429755000064],[28.86548912900014,44.894680080000086],[28.86353600400011,44.89154694200001],[28.866465691000116,44.88263580900008],[28.87354576900009,44.87498607000006],[28.88152103000004,44.86969635600008],[28.90406334700012,44.86273834800008],[28.952403191000116,44.82664622600004],[28.939707879000082,44.816880601],[28.934092644000057,44.81419505400001],[28.924978061000076,44.81305573100008],[28.9344181650001,44.807521877000056],[28.938731316000087,44.80621979400007],[28.938731316000087,44.79877350500007],[28.92628014400009,44.792954820000034],[28.925466342000075,44.783677476000065],[28.932953321000124,44.77350495000013],[28.946136915000093,44.76520416900004],[28.93637129000004,44.75995514500007],[28.923838738000143,44.75779857000006],[28.879405144000113,44.75657786700006],[28.868825717000078,44.753566799000055],[28.80844160200004,44.72687409100013],[28.798350457000083,44.72020091400006],[28.788828972000093,44.7062442080001],[28.787119988000086,44.69330475500009],[28.793711785000056,44.687892971000046],[28.80836022200006,44.69635651200008],[28.80420983200011,44.68423086100009],[28.785411004000082,44.67967357000006],[28.78101647200009,44.66526927300009],[28.784027540000093,44.6492373720001],[28.792491082000137,44.64472077000005],[28.845550977000077,44.65155670800004],[28.86947675900012,44.661810614000075],[28.891368035000056,44.67719147300002],[28.911957227000105,44.69635651200008],[28.897715691000084,44.71678294500006],[28.967458530000048,44.70099518400011],[28.98340905000006,44.692613023000064],[28.987559441000084,44.67527903900005],[28.979340040000096,44.65534088700008],[28.962087436000104,44.63939036700006],[28.938731316000087,44.63426341400006],[28.956390821000095,44.65110911700006],[28.972666863000143,44.67023346600004],[28.97535241000011,44.686835028000075],[28.952403191000116,44.69635651200008],[28.952403191000116,44.68891022300002],[28.959971550000088,44.68195221600013],[28.957774285000085,44.67877838700005],[28.938731316000087,44.67523834800007],[28.924164259000065,44.6820742860001],[28.91822350400014,44.68268463700005],[28.913828972000147,44.6799177100001],[28.909434441000084,44.67519765800009],[28.904551629000107,44.668402411000045],[28.88542728000004,44.65810781500005],[28.854177280000076,44.63434479400004],[28.836273634000094,44.62742747600004],[28.787852410000113,44.60960521000007],[28.774180535000085,44.600775458000015],[28.79151451900006,44.62384674700007],[28.794688347000115,44.63426341400006],[28.77979576900009,44.63580963700011],[28.766937696000074,44.633734442000076],[28.757823113000054,44.62677643400008],[28.75367272200012,44.613755601],[28.766774936000104,44.613755601],[28.76059004000012,44.60370514500002],[28.76441491000014,44.59589264500005],[28.774424675000034,44.59015534100007],[28.787852410000113,44.5864932310001],[28.748057488000114,44.577785549000026],[28.732676629000082,44.56785716400012],[28.732676629000082,44.55231354400013],[28.737152540000043,44.55707428600002],[28.74390709700009,44.56199778900008],[28.746918165000096,44.56598541900007],[28.7610783210001,44.56020742400008],[28.774180535000085,44.55231354400013],[28.765635613000143,44.538885809000135],[28.75342858200008,44.51349518400011],[28.74561608200008,44.486151434000135],[28.750254754000107,44.46670156500005],[28.758474155000012,44.46527741100007],[28.766368035000085,44.47260163000007],[28.77198326900009,44.483710028000104],[28.778330925000034,44.5073916690001],[28.788096550000063,44.515366929000066],[28.80836022200006,44.525051174000026],[28.83814537900008,44.55402252800013],[28.855642123000024,44.567694403000075],[28.87354576900009,44.573431708000044],[28.8924259770001,44.577053127000084],[28.906260613000114,44.587713934000135],[28.91488691500012,44.60138580900008],[28.924978061000076,44.62055084800002],[28.91846764400009,44.60101959800005],[28.909678582000108,44.58421458500004],[28.844004754000107,44.49371979400007],[28.796722852000073,44.46792226800005],[28.70655358200011,44.38104889500004],[28.696299675,44.35834381700002],[28.69312584700012,44.346136786000045],[28.680186394000117,44.35333893400008],[28.664398634000094,44.34837474200003],[28.651215040000125,44.34003327000005],[28.640879754000107,44.32855866100002],[28.635101759000065,44.316392320000034],[28.63233483200011,44.30243561400004],[28.63103274800011,44.26434967700007],[28.635264519000117,44.2520205750001],[28.651215040000125,44.230780341000035],[28.6652124360001,44.1992862000001],[28.668142123000106,44.18431224200009],[28.664886915000068,44.17560455900011],[28.671722852000098,44.168687242],[28.658376498000084,44.17446523600006],[28.645843946000067,44.17202383000003],[28.63624108200011,44.16429271000001],[28.63086998800014,44.15448639500008],[28.637461785000113,44.13589101800008],[28.654144727000073,44.05491771000003],[28.6712345710001,44.00332265800006],[28.671722852000098,43.99738190300005],[28.6691186860001,43.989162502000056],[28.6600041020001,43.979803778000104],[28.654958530000073,43.96137116100007],[28.640879754000107,43.932196356000134],[28.637705925000063,43.91864655200007],[28.61378014400009,43.88418203300006],[28.60938561300011,43.87449778900009],[28.59351647200009,43.819525458],[28.587657097000147,43.810248114000046],[28.58448326900009,43.80084870000013],[28.5892033210001,43.79132721600004],[28.584808790000096,43.7824160830001],[28.582530144000117,43.77236562700002],[28.581879102000073,43.76170482000009],[28.583018425000034,43.75104401200005],[28.578379754000082,43.7412783870001],[28.434574015000123,43.735212707000045],[28.22125370300006,43.76198110000012],[28.014806355000076,43.83003896100009],[27.981009969000098,43.84934010900005],[27.935844767000106,43.96439768500002],[27.91207360800007,43.993233134000064],[27.91207360800007,43.99333648700007],[27.856469767000135,43.98863393200011],[27.78732670100007,43.96041860000013],[27.72169763100004,43.94873972600007],[27.68251497600008,43.98725601000004],[27.676119019000055,43.99354319300005],[27.65627526800006,44.02387725900007],[27.633434285000135,44.02976837200009],[27.57452315200004,44.01628082300002],[27.38383711700004,44.015092265000106],[27.372881714000073,44.020724996000126],[27.35355472800009,44.04527130200009],[27.34166914900007,44.0530744430001],[27.285341838000075,44.07245310500008],[27.264309530000048,44.089764710000075],[27.269012085000043,44.11239898700003],[27.252662458000145,44.121518866000116],[27.251132039000083,44.12237253900014],[27.226740763000063,44.12071889300009],[27.20555342600008,44.12924550400001],[27.100236857000084,44.144490052000066],[27.027476441000115,44.177046204000106],[27.001534871000075,44.16510894900006],[26.88412601700014,44.156530660000044],[26.78945479300003,44.115964661000106],[26.753694702000104,44.10810984300008],[26.708684530000085,44.10810984300008],[26.697212361000084,44.106094463000034],[26.67731693500008,44.09705108700007],[26.667808471000082,44.095087382000116],[26.647758016000125,44.09338206000007],[26.614168335000098,44.08485544800004],[26.41579067300006,44.06378879400003],[26.332335498000102,44.05492629800003],[26.31051761900011,44.0526093550001],[26.23145267800004,44.02749460900005],[26.150734091000086,44.01240509000007],[26.116214233000107,43.998865865000084],[26.079317260000092,43.969048564000076],[26.061643921000098,43.94977325400006],[26.054305868000085,43.93432200100005],[25.93400313300009,43.87032074000007],[25.924494670000115,43.858616028000085],[25.916433146000113,43.8443791710001],[25.869304240000133,43.8008934530001],[25.839331909000094,43.78843943300012],[25.806258993000085,43.763660584000085],[25.80439864100009,43.75991404200008],[25.781144246000082,43.73200876900009],[25.739596395000092,43.71893463100011],[25.73294793700012,43.71878101100003],[25.67138350400006,43.7173585000001],[25.6535034580001,43.7081342570001],[25.637897176000138,43.69728220700006],[25.616503134000137,43.68774790400005],[25.593868856000086,43.68066823400002],[25.575058634000072,43.677386780000035],[25.556558472000063,43.67035878500013],[25.53382084100008,43.66867930100008],[25.48875899300012,43.67053965300008],[25.482450035000113,43.66971475300005],[25.467416626000045,43.667749125000114],[25.426075480000094,43.65439076700008],[25.40313114400007,43.65004994800012],[25.35961958800004,43.654287415000056],[25.323032674000103,43.669712830000066],[25.288719523000083,43.68896230100009],[25.285404775000075,43.69039131500011],[25.252339315000086,43.70464609800004],[25.21130822700013,43.71188079900011],[25.08160038200009,43.71893463100011],[24.963674764000075,43.749604594000054],[24.7526282150001,43.738804220000134],[24.705602661000057,43.74376515800008],[24.661763224000083,43.75565671600006],[24.500137166000115,43.79949819000012],[24.46634077900012,43.80241790800011],[24.431200806000078,43.79417551700007],[24.375493612000042,43.763867290000036],[24.35823368400014,43.76001739500009],[24.336705387000052,43.75925092500009],[24.159382772000125,43.75293772400008],[24.149605832000134,43.7547199490001],[23.799921509000058,43.81846344000007],[23.742870727000053,43.84269968700005],[23.72075321500006,43.84582611100009],[23.63610721900005,43.83215769500009],[23.620853516000068,43.83400993000003],[23.59269901600007,43.83742869100013],[23.484695272000096,43.880604350000056],[23.325150732000054,43.88659228100008],[23.23447798700002,43.87729705900005],[23.196960896000117,43.86275014300011],[23.161924275000104,43.85732411700013],[23.13184859200004,43.847944845000086],[23.052551215000108,43.84281985600006],[22.919561808000054,43.83422475200007],[22.88876265500008,43.83952158700009],[22.863441203,43.85541208900011],[22.85103885900014,43.87435150200005],[22.850522095000088,43.896985779],[22.874706665000076,43.972045797000106],[22.8858687740001,43.9945250450001],[22.905815877000123,44.00398183200007],[22.92648645000014,44.00615224300006],[22.96627730300014,44.015557353000105],[22.98808475700008,44.0176760870001],[23.02301802500008,44.0316287230001],[23.040071248000086,44.06232452400013],[23.03097619600004,44.09307200200007],[23.008306709000095,44.10044641300007],[22.98808475700008,44.10702463800006],[22.94260949700003,44.111468811000094],[22.906435995000095,44.12288930300007],[22.691640373000098,44.228434539],[22.69073856600008,44.228877665000084],[22.68536421700011,44.243657125000084],[22.68949833200014,44.291716208000054],[22.681540161000097,44.30530710900004],[22.66252323400002,44.31166331000008],[22.621182088000097,44.31590077800013],[22.582838175000063,44.32840647400013],[22.549351847000082,44.34897369400011],[22.522686808000113,44.37507029200009],[22.50511682100006,44.40406077100007],[22.503979940000132,44.411708883000074],[22.5063570560001,44.42752187100007],[22.50542688000013,44.435014954000074],[22.500982706000116,44.44193959600008],[22.48000207500013,44.45578888000003],[22.477004842000014,44.46395375600005],[22.47721154800007,44.47697621700009],[22.479795370000062,44.49041209000003],[22.48413618900014,44.49976552400008],[22.49106083200013,44.50420969700008],[22.500362590000066,44.50638010700007],[22.535502563000108,44.50751698800008],[22.548421672000103,44.51170277900013],[22.556689900000066,44.521469625000094],[22.559790487000097,44.5387812300001],[22.565578247000076,44.5554210410001],[22.58046105900013,44.56549794600004],[22.600304810000125,44.56978709],[22.621182088000097,44.56921864900005],[22.642162719000083,44.56312083000009],[22.67854292800007,44.54555084300003],[22.70014367600004,44.54183014000011],[22.719367309000063,44.544362285],[22.741691528000047,44.551855367000144],[22.759261515000105,44.56467112300004],[22.765152628000095,44.58280955000006],[22.714716431000113,44.62306549100009],[22.70014367600004,44.630610251000036],[22.621182088000097,44.63743153900009],[22.58748905400003,44.64936879500004],[22.553279256000053,44.66916086900011],[22.483722778000125,44.72398956300012],[22.468943319000118,44.730190736000075],[22.450546508000116,44.732981263000056],[22.42605188000007,44.73365305600004],[22.4155098870001,44.72781362000006],[22.380679973000042,44.70052846300012],[22.36114628100003,44.692053528000116],[22.319701782000067,44.685335592000115],[22.30492232300014,44.677377422000035],[22.29903120900005,44.661667786000066],[22.185136352000114,44.51511342400004],[22.172113892000084,44.505346579000104],[22.148239380000092,44.50090240500009],[22.126638631000105,44.50265940300008],[22.10431441200006,44.50963572200007],[22.08695113100012,44.521779683000055],[22.076305786000148,44.55071848600002],[22.06710738100014,44.5572297170001],[22.05573856600006,44.56213897700013],[22.0451965740001,44.56921864900005],[22.039822225000133,44.57686676100013],[22.036173617000117,44.589488970000076],[22.03424290400008,44.596168195000104],[22.03217411300005,44.60332509400012],[22.004268839000076,44.65153920500011],[21.994346964000073,44.65856720000004],[21.96241093000009,44.66228790300005],[21.87197717300012,44.69598093700009],[21.855440715000043,44.698461405000074],[21.83828413900008,44.695205790000074],[21.801697225000026,44.683888652000114],[21.756842081000055,44.677274069000106],[21.705165649000094,44.67706736300005],[21.65627974500012,44.687661032000044],[21.619692830000076,44.71391265900007],[21.610287720000116,44.73194773400007],[21.604293254000083,44.74998280900007],[21.595611612000138,44.76595082600011],[21.578041626000072,44.77768137700011],[21.558404582000037,44.78166046100009],[21.497219686000108,44.7780431110001],[21.4121602780001,44.784812724000034],[21.39593387900007,44.79023874900011],[21.378570597000078,44.816645407000095],[21.360587199000065,44.82641225200004],[21.35984122700009,44.826644284000054],[21.359799635000115,44.82665722100006],[21.34281050600015,44.831941631000035],[21.346427857000034,44.845635885000064],[21.355522908000097,44.85659128800003],[21.36854536900003,44.86485951700006],[21.395313761000093,44.871629130000116],[21.453398072000084,44.869562073000054],[21.481510051000043,44.872610983000094],[21.522127727000083,44.88077585900001],[21.536287068000032,44.88930247000013],[21.539077596000084,44.908474426000026],[21.531016073000075,44.92464915000002],[21.51633996600009,44.933899232000044],[21.481510051000043,44.94356272400005],[21.456498657000054,44.952347717000066],[21.408439575000074,44.95834218300007],[21.385185181000054,44.96950429300011],[21.384565063000082,44.974930319000094],[21.387045532000055,44.98154490200008],[21.383944946000042,44.986660869000076],[21.366995077000126,44.987280986000144],[21.35345585200014,44.989813131000034],[21.351388794000087,44.99823638900003],[21.35614302600007,45.008571676000116],[21.36337772600012,45.0165298470001],[21.373299601000042,45.02009552000007],[21.398827758000067,45.02138743100011],[21.409266398000113,45.0239712530001],[21.421875447000048,45.03141265900004],[21.425079386000107,45.03621856700005],[21.425596150000047,45.043246562000064],[21.429523560000092,45.05730255200007],[21.43252079200002,45.06148834300009],[21.440995727000114,45.06872304300006],[21.443786255000077,45.07290883400011],[21.44440637200006,45.07786977200007],[21.44440637200006,45.08525950200007],[21.443786255000077,45.09146067400005],[21.44244266700011,45.092907613000136],[21.44998742700008,45.10102081300004],[21.458565715000105,45.10732533800007],[21.469004353000027,45.11104604100006],[21.481510051000043,45.11156280600011],[21.494119100000148,45.1193142700001],[21.497839803000062,45.131871643000125],[21.493292277000137,45.145100810000116],[21.48438838900006,45.15270169000009],[21.459392537000042,45.17403961200009],[21.43376102700006,45.1888190710001],[21.405545695000082,45.19967112200006],[21.299298950000036,45.22318389900005],[21.257130982000064,45.2241140750001],[21.2392509360001,45.2293850710001],[21.20607466600009,45.245921529000015],[21.189744914000073,45.25956410800012],[21.15563846900008,45.295169170000094],[21.139412069000084,45.303695781000016],[21.129180135000095,45.30188710500001],[21.11305708800012,45.28932973200011],[21.103341919000087,45.28607411700003],[21.09155969200009,45.28808949800009],[21.08277469900008,45.293670553000084],[21.074299764000102,45.30054351800007],[21.063964478000088,45.306279602000096],[21.016668402000107,45.32148191200011],[20.981488891000083,45.33278961200003],[20.966192667000115,45.34157460500012],[20.927642050000145,45.37748972600008],[20.863046509000096,45.418727519000065],[20.830387004000016,45.45252390600007],[20.816020955000113,45.46285919200005],[20.799484497000037,45.4685436],[20.781604451000078,45.47257436100011],[20.767135050000036,45.479343974000045],[20.760727173000078,45.49334828800005],[20.783154745000076,45.50606069000011],[20.797624146000118,45.516499329000055],[20.800207967000116,45.53050364200004],[20.787392212000043,45.55365468400004],[20.758039998000072,45.58925974600001],[20.754422648000087,45.60558949900005],[20.76217411300007,45.63060089100014],[20.773232869000083,45.64889434900002],[20.777263631000096,45.65752431200005],[20.7799508060001,45.67168365500001],[20.779123982000097,45.723670146000124],[20.781604451000078,45.73395375600012],[20.785531861000038,45.743410543000095],[20.785738566000077,45.75255727200007],[20.777470337000125,45.76232411700005],[20.765171346000102,45.766768291000034],[20.75411259000009,45.76356435200006],[20.745327596000095,45.75498606400003],[20.739436482000116,45.743410543000095],[20.726827433000068,45.73617584200011],[20.713391561000034,45.73333363900005],[20.700059041000117,45.73540069600011],[20.688070109000137,45.74310048400011],[20.678561646000077,45.75663970900009],[20.65561731000014,45.777310283000105],[20.64590214000009,45.788730775],[20.64348956000015,45.795141345000104],[20.642284790000105,45.79834259000012],[20.64011438000011,45.818703105000054],[20.63670373500008,45.82702301100011],[20.629675740000092,45.833275858],[20.612312459000066,45.841492412000036],[20.60528446400005,45.846143291],[20.572108195000055,45.88769114200008],[20.556708618000073,45.89843984],[20.538001749000074,45.903710836000045],[20.499864543000115,45.90665639200005],[20.481674439000074,45.91270253500008],[20.429067830000065,45.94670562800013],[20.41025760900007,45.95559397400003],[20.370983521000085,45.96778961200005],[20.35393029800005,45.976677959000085],[20.338634074000108,45.99280100500005],[20.317653443000097,46.03858632400008],[20.30566451000004,46.05357249000008],[20.24282596900008,46.10809112600009],[20.283236938000044,46.14379954000009],[20.44415734900008,46.14690012600002],[20.468548625000096,46.17413360600003],[20.509373006000086,46.16767405200008],[20.54895715300006,46.15615020800004],[20.57810266100006,46.137546692000086],[20.588024536000148,46.13284413700009],[20.600116821000142,46.12964019800003],[20.607558227000084,46.12948516900008],[20.663988892000102,46.13775339800014],[20.683522583000098,46.144678040000116],[20.698818807000066,46.156460266000124],[20.704193156000112,46.1663304650001],[20.70436755600008,46.16852631600005],[20.705330037000124,46.1806448370001],[20.710290975000078,46.188086243000015],[20.717835734000033,46.189998271000036],[20.727137492000054,46.187724508000116],[20.736645955000142,46.18669097900005],[20.744707479000056,46.19227203400004],[20.74481083200007,46.2002818810001],[20.73550907400005,46.22250274700008],[20.73499231000011,46.23190785800011],[20.739333130000087,46.23748891300005],[20.778503866000108,46.26007151300007],[20.7873693330001,46.26339038000006],[20.7986576750001,46.267616272000026],[20.819638306000083,46.27169871000012],[20.839688762000034,46.27107859400007],[20.848990519000065,46.26777130200006],[20.866973917000053,46.257125957000085],[20.875138794000065,46.254387105000035],[20.88506066900007,46.25500722300009],[20.899736775000065,46.260691630000046],[20.906558065000098,46.26219024700006],[20.924438110000068,46.25955474800011],[20.96174849500011,46.24834096300009],[20.981488891000083,46.248857727000114],[20.990583944000036,46.25159657800006],[20.99916223200009,46.25159657800006],[21.007017049000098,46.248857727000114],[21.0139416910001,46.243069967000054],[21.03347538200009,46.23133941700007],[21.051458781000093,46.236093649000054],[21.09920780400006,46.27634958900009],[21.105615682000092,46.27867502900003],[21.13486454200006,46.27852],[21.144476359000066,46.28373932000011],[21.155948527000078,46.29893219000012],[21.164526815000098,46.31825917600008],[21.168660929000026,46.36275258500007],[21.178789510000083,46.38445668600008],[21.19563602700015,46.398099264000074],[21.215169718000055,46.40290517200008],[21.257544393000074,46.40417124500004],[21.28069543400008,46.416392721000136],[21.27439091000005,46.43835520500011],[21.245142049,46.47687998500007],[21.24762251800007,46.49747304300007],[21.261678508000102,46.51333770700009],[21.27893843600009,46.52840138800008],[21.291340779000052,46.54672068300004],[21.295268188000136,46.58503875800008],[21.300952596000087,46.603926494000085],[21.316248820000027,46.61663889600007],[21.33764286300004,46.620411275000066],[21.374436483000125,46.61844757100005],[21.396037231,46.62635406600009],[21.41681115700007,46.64521596300011],[21.423538914000087,46.65823096900007],[21.425492797000118,46.662010803000065],[21.436241495000047,46.67374135300008],[21.46352665200004,46.67704864500007],[21.483577108000105,46.68485178600008],[21.501767212000033,46.70350697900005],[21.50517785600007,46.7232473760001],[21.478202759000023,46.73593394000008],[21.47520552600011,46.73784596800007],[21.47262170400012,46.74019724600004],[21.470451294000043,46.743013611000094],[21.47138146900008,46.74903391500004],[21.47365523200008,46.75487335300011],[21.47706587700011,46.760221863000055],[21.481510051000043,46.764976095000065],[21.502904094000144,46.80530955100002],[21.515719848000117,46.82158762700004],[21.536597128000096,46.8350234990001],[21.573080689000108,46.84176727300013],[21.583415975000037,46.84794260700011],[21.59178755700009,46.86070668600007],[21.591477498000103,46.871532899000016],[21.58806685400009,46.882204081000104],[21.587136678000036,46.894399719000035],[21.58868697100004,46.90618194600012],[21.589927206000084,46.90886912000005],[21.594371378000087,46.910006002000074],[21.64005334400011,46.935689189000044],[21.648528279000118,46.942975566000115],[21.667545207000074,46.99237823500005],[21.671369262000013,46.99336008700001],[21.67074914600005,46.99439361600008],[21.66175744600011,47.006072490000065],[21.654832805000126,47.00994822200002],[21.64522098800012,47.01124013300006],[21.636642700000095,47.01408233700005],[21.634269538000098,47.01942195100005],[21.632818644000054,47.02268646300007],[21.671886027000138,47.054725851000086],[21.694210246000125,47.06916941300011],[21.743509562000014,47.09159698500011],[21.76376672400002,47.1052137260001],[21.770484659000147,47.11402455700011],[21.77544559800009,47.13167205800008],[21.779889770000096,47.14074127200007],[21.78939823400009,47.15030141300005],[21.8115157470001,47.16469329800006],[21.819887329000064,47.17272898400005],[21.825985148000115,47.18505381300008],[21.82567508900013,47.19427805600008],[21.82329797300011,47.20332143200005],[21.823608033000085,47.214922791000106],[21.827742147000095,47.22600738600002],[21.839317668000064,47.24083852200005],[21.844588664000067,47.2499335730001],[21.85606083100009,47.28574534100005],[21.862158651000072,47.297424215000035],[21.90081262200007,47.335742289000045],[21.919002726000087,47.34966908800004],[21.936986125000086,47.357162171000056],[21.9815312100001,47.36610219400009],[22.00158166500003,47.3938265990001],[22.000238078000077,47.427183736000075],[21.991453084000085,47.46180694600008],[21.988869263000083,47.49294199700006],[22.007886189000146,47.5174107870001],[22.03744510900009,47.53932159400006],[22.099560180000054,47.57094757200014],[22.14854943800006,47.57934499100011],[22.154177334000053,47.58221264000008],[22.162088663000134,47.58624379500009],[22.16735966000007,47.59378855400004],[22.167608011000112,47.594862307000085],[22.169116658000064,47.601384990000014],[22.16984012900005,47.60877472000004],[22.172837361000063,47.615389303000114],[22.19764204900011,47.63931549100001],[22.20074263500007,47.64794545500007],[22.20415327900008,47.66629058900014],[22.20787398200008,47.67373199500008],[22.215212036000082,47.67993316600006],[22.2321619060001,47.68825307300011],[22.23981001800007,47.69347239200005],[22.26172082500011,47.7158482880001],[22.27308964000011,47.72375478200007],[22.291589803000136,47.730705261000054],[22.30936649500006,47.735046082000025],[22.322078898000115,47.735872905000065],[22.368277628000072,47.73117034900008],[22.382643677000086,47.73202301100011],[22.395872843000063,47.735692037],[22.40734501200009,47.743081767000035],[22.42367476400011,47.78256256200004],[22.454370565000147,47.787394308000046],[22.528474569000107,47.761039327000105],[22.56299442600007,47.75721527200005],[22.601234985000076,47.76093597500007],[22.637718547000073,47.771555481000064],[22.66696740700013,47.78878957100005],[22.691668741000058,47.81070037900008],[22.70386438000014,47.81718577100014],[22.724224894000088,47.823490295000056],[22.745825643000046,47.824988912000066],[22.751820109000075,47.82767608600011],[22.760295044000088,47.838915711000055],[22.75833134000007,47.84622792600003],[22.75326705000009,47.8526874800001],[22.75285363700007,47.861239930000124],[22.763602335000087,47.87475331700008],[22.779622029000052,47.88229807500005],[22.81972294100012,47.89232330400006],[22.836052693000084,47.9024518840001],[22.861167440000088,47.93381947800003],[22.877600546000053,47.94673858700014],[22.89785770600005,47.9509760550001],[22.91584110500014,47.959192607000034],[22.924212687000107,47.97273183200011],[22.91573775200004,47.992988994000115],[22.924109334000093,48.004822896000036],[22.939302206000036,48.005649720000065],[22.957078898000045,48.00012034100007],[22.97247847500003,47.9928856410001],[22.988188110000095,47.986374411],[23.004414510000117,47.983067119000026],[23.02033085100004,47.98472076400006],[23.06311893700007,48.00745839500004],[23.07655481000012,48.02451161700009],[23.0989823810001,48.07122711200009],[23.118619426000038,48.09153595000009],[23.13908329200009,48.09812469500008],[23.161717570000064,48.09590260900009],[23.23137740100009,48.079727886000086],[23.248637329000076,48.07122711200009],[23.28977176900014,48.038205872000106],[23.337520793000124,48.010869039000085],[23.360051717000147,47.99314402300007],[23.367286418000106,47.991206157000136],[23.374727824000047,47.99056020200007],[23.382169230000045,47.991128642],[23.39012740100011,47.99306650800014],[23.39157434100011,47.993454082000135],[23.393021281000102,47.99358327300007],[23.394468221000096,47.993454082000135],[23.396018514000104,47.99306650800014],[23.46082076000002,47.97133656900013],[23.48159468600008,47.97216339100006],[23.4854755610001,47.97423415700007],[23.48851932800005,47.975858257000056],[23.494307088000113,47.98053497300003],[23.49937137800009,47.98621938100007],[23.50371219900009,47.9928856410001],[23.514460897000102,47.99898346000006],[23.525623006000046,48.00117970900004],[23.56324344900014,48.00575307200009],[23.581743612000082,48.001567281000064],[23.64613244600008,47.9966063440001],[23.687266886000145,47.98725291000005],[23.71052128100007,47.98508250000006],[23.78007775900008,47.98751129100003],[23.79651086400014,47.98198191300011],[23.848394002000134,47.94965830500004],[23.855215291000093,47.93423289000006],[23.876609334000104,47.93443959600012],[23.97727502500004,47.96229319300007],[24.008797648000012,47.96120798800007],[24.02523075300007,47.9532498180001],[24.074943482000094,47.94418060400005],[24.094787231000083,47.937927755000054],[24.13116744000007,47.91454416900009],[24.148737427000125,47.91211537700013],[24.150184367000122,47.91291636200006],[24.209302205000085,47.89759430000009],[24.231006307000087,47.89702585900005],[24.297875610000062,47.919789328000036],[24.34717492600006,47.920874532000106],[24.386242310000057,47.943689677000116],[24.40918664600011,47.95206125900009],[24.42851363100004,47.952526347000116],[24.485564412000144,47.9431987510001],[24.542098429000106,47.94381886800005],[24.561632121000116,47.94053741500008],[24.569808453000093,47.937288541000015],[24.608450968000056,47.921933900000106],[24.633669067000085,47.908291321],[24.64927535000004,47.89521718400004],[24.65599328600007,47.879300843000124],[24.656923462000123,47.86620086700006],[24.661470988000133,47.85387603800012],[24.67914432800006,47.84013010700008],[24.7128373620001,47.82591908800003],[24.793659302000066,47.80447336900011],[24.808232056000122,47.795740052000035],[24.820737752000127,47.78408701600006],[24.85443078600008,47.74313344300003],[24.877788533000114,47.718742167000094],[24.896598755000127,47.71006052700005],[24.928857956000115,47.71393770200012],[24.942380238000112,47.71556292100013],[25.01741825300007,47.72458160400009],[25.079946737000057,47.74292673800008],[25.080050089000082,47.743081767000035],[25.08025679500014,47.74313344300003],[25.121908,47.77031524700001],[25.218956339000016,47.87847402000011],[25.261744426000064,47.89857615200006],[25.752515503000094,47.93459462600006],[25.818351278000076,47.95257802400005],[25.87095788600007,47.95702219700004],[25.901240275000106,47.965962219000055],[25.918086792000082,47.96815846800007],[25.96573246200012,47.96490285200008],[26.029294474000093,47.977796122000086],[26.102530449000056,47.978267094000074],[26.1257226970001,47.97841624000006],[26.17305830900005,47.99314402300007],[26.182670125000072,48.003272604000095],[26.204787638000084,48.037379049000066],[26.21708663000004,48.048024394000066],[26.243234904000133,48.0629072070001],[26.2553271890001,48.07233815500007],[26.27072676600008,48.09360300700007],[26.2869531660001,48.124712220000106],[26.29749515800006,48.156338196],[26.29615157000009,48.17899831200006],[26.303489624000093,48.21204539000013],[26.31175785300013,48.20971995100009],[26.330258015000084,48.20850555500007],[26.347311239000106,48.21209706700006],[26.380487508000016,48.22320749900007],[26.397437378000117,48.22620473300008],[26.44466963700006,48.22772918700011],[26.461309448000062,48.230390524000114],[26.587399943000033,48.249355774000065],[26.617889038000015,48.258967591000065],[26.665741415000124,48.27421213800002],[26.68853072100012,48.274832256000074],[26.711475057000143,48.26131886800002],[26.722378784000114,48.259768575000095]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"San Marino","sov_a3":"SMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"San Marino","adm0_a3":"SMR","geou_dif":0,"geounit":"San Marino","gu_a3":"SMR","su_dif":0,"subunit":"San Marino","su_a3":"SMR","brk_diff":0,"name":"San Marino","name_long":"San Marino","brk_a3":"SMR","brk_name":"San Marino","brk_group":null,"abbrev":"S.M.","postal":"RSM","formal_en":"Republic of San Marino","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"San Marino","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":1,"mapcolor13":6,"pop_est":30324,"gdp_md_est":1662,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"SM","iso_a2":"SM","iso_a3":"SMR","iso_n3":"674","un_a3":"674","wb_a2":"SM","wb_a3":"SMR","woe_id":23424947,"woe_id_eh":23424947,"woe_note":"Exact WOE match as country","adm0_a3_is":"SMR","adm0_a3_us":"SMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"SMR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[12.4294503590001,43.89205551500001],[12.399581381000075,43.90321762500014],[12.385628745000105,43.92453415300014],[12.395653973000037,43.94840866400003],[12.411048669000138,43.959661012000055],[12.42138883600012,43.967218885000136],[12.453324871000092,43.979052789000065],[12.482160321000038,43.98256678600009],[12.48918831500012,43.973109999000144],[12.492392254000094,43.95641851100001],[12.490325196000128,43.93915858300011],[12.48309447400004,43.929204898000044],[12.482160321000038,43.92791895900006],[12.47957649900013,43.925800225000074],[12.478026206000095,43.92321640400007],[12.477493853000112,43.920050984000085],[12.478286774000082,43.9170378850001],[12.460456219000035,43.8952594540001],[12.4294503590001,43.89205551500001]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Republic of Serbia","sov_a3":"SRB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Republic of Serbia","adm0_a3":"SRB","geou_dif":0,"geounit":"Republic of Serbia","gu_a3":"SRB","su_dif":0,"subunit":"Republic of Serbia","su_a3":"SRB","brk_diff":0,"name":"Serbia","name_long":"Serbia","brk_a3":"SRB","brk_name":"Serbia","brk_group":null,"abbrev":"Serb.","postal":"RS","formal_en":"Republic of Serbia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Serbia","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":2,"mapcolor13":10,"pop_est":7379339,"gdp_md_est":80340,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"RI","iso_a2":"RS","iso_a3":"SRB","iso_n3":"688","un_a3":"688","wb_a2":"YF","wb_a3":"SRB","woe_id":-90,"woe_id_eh":20069818,"woe_note":"Expired WOE also contains Kosovo.","adm0_a3_is":"SRB","adm0_a3_us":"SRB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SRB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.690094848000086,46.16839752200012],[19.71188867800006,46.15870986600005],[19.772983846000102,46.13155222600001],[19.79045048000006,46.12907175800005],[19.873648872000103,46.15299238600004],[19.888945760000123,46.15739044200002],[19.929150024000133,46.163539938],[19.993125447000125,46.15940582300008],[20.034983357000097,46.142972718000024],[20.06340539600012,46.14529815700014],[20.088623495000093,46.154134827000135],[20.09844201700014,46.154961650000146],[20.114771769000072,46.15222279900003],[20.120146118000036,46.14922556600011],[20.130378051000037,46.139355368000125],[20.13802616400011,46.136461487000034],[20.145364217000093,46.13708160400002],[20.17047896400004,46.145504862],[20.18846236100009,46.140388896],[20.24282596900008,46.10809112600013],[20.30566451000004,46.053572490000114],[20.317653443000097,46.03858632400015],[20.338634074000108,45.992801005],[20.35393029800008,45.97667795900013],[20.370983521000085,45.96778961200003],[20.41025760900007,45.95559397400011],[20.429067830000093,45.94670562800009],[20.481674439000074,45.91270253500015],[20.499864543000115,45.906656392000016],[20.538001749000074,45.90371083600009],[20.556708618000073,45.89843984000008],[20.572108195000055,45.88769114200014],[20.60528446400005,45.846143291000075],[20.612312459000066,45.84149241199999],[20.629675740000092,45.83327585800007],[20.63670373500008,45.827023011000065],[20.64011438000011,45.818703105],[20.642284790000105,45.798342590000075],[20.64348956000015,45.79514134500006],[20.64590214000009,45.788730775000076],[20.65561731000014,45.77731028300015],[20.678561646000077,45.75663970900014],[20.688070109000137,45.74310048400015],[20.700059041000117,45.73540069600006],[20.713391561000034,45.733333639000094],[20.726827433000096,45.73617584200018],[20.739436482000116,45.743410543000046],[20.745327596000095,45.75498606399999],[20.75411259000009,45.76356435200002],[20.765171346000102,45.766768291000105],[20.777470337000125,45.76232411700009],[20.785738566000077,45.75255727200012],[20.785531861000038,45.743410543000046],[20.781604451000078,45.733953756000076],[20.779123982000097,45.72367014600009],[20.7799508060001,45.67168365500005],[20.777263631000096,45.65752431200011],[20.773232869000083,45.64889434900006],[20.7621741130001,45.6306008910001],[20.754422648000087,45.60558949900009],[20.758039998000072,45.58925974600005],[20.787392212000043,45.55365468399999],[20.800207967000116,45.530503642],[20.797624146000118,45.51649932900009],[20.783154745000076,45.50606069000015],[20.760727173000106,45.493348288],[20.767135050000036,45.47934397400008],[20.781604451000078,45.472574361000156],[20.799484497000037,45.468543600000075],[20.816020955000113,45.46285919200003],[20.830387004000016,45.452523906000025],[20.863046509000096,45.41872751900003],[20.927642050000145,45.37748972600003],[20.966192667000115,45.341574605000154],[20.981488891000083,45.33278961200007],[21.016668402000107,45.32148191200018],[21.063964478000088,45.306279602000174],[21.074299764000102,45.30054351800011],[21.08277469900008,45.29367055300004],[21.09155969200009,45.28808949800013],[21.103341919000087,45.2860741170001],[21.11305708800012,45.28932973200007],[21.129180135000095,45.30188710500009],[21.139412069000084,45.30369578100009],[21.15563846900008,45.295169170000136],[21.189744914000073,45.25956410800008],[21.20607466600009,45.245921529000086],[21.2392509360001,45.22938507100018],[21.257130982000064,45.22411407500006],[21.299298950000036,45.223183899],[21.405545695000082,45.19967112200011],[21.43376102700006,45.18881907100014],[21.459392537000042,45.17403961200012],[21.484388389000088,45.15270169000014],[21.493292277000137,45.14510081000016],[21.497839803000062,45.13187164300008],[21.494119100000148,45.119314270000174],[21.481510051000043,45.11156280600006],[21.469004353000027,45.11104604100002],[21.458565715000105,45.107325338000024],[21.44998742700008,45.101020813],[21.44244266700011,45.092907613000094],[21.443786255000077,45.09146067400011],[21.44440637200006,45.085259502000106],[21.44440637200006,45.07786977200011],[21.443786255000077,45.07290883400016],[21.440995727000114,45.06872304300013],[21.43252079200002,45.061488343000164],[21.42952356000012,45.05730255200002],[21.425596150000047,45.04324656200011],[21.425079386000107,45.036218567],[21.421875447000048,45.03141265900008],[21.409266398000113,45.02397125300017],[21.398827758000067,45.021387431000065],[21.373299601000042,45.02009552000011],[21.36337772600012,45.01652984700014],[21.35614302600007,45.00857167600019],[21.351388794000087,44.99823638900007],[21.35345585200014,44.989813131000076],[21.366995077000126,44.9872809860001],[21.383944946000042,44.98666086900011],[21.387045532000055,44.981544902000124],[21.384565063000082,44.97493031900014],[21.385185181000054,44.96950429300007],[21.408439575000074,44.95834218300005],[21.456498657000054,44.95234771700002],[21.481510051000043,44.94356272400002],[21.51633996600009,44.933899232],[21.531016073000075,44.92464915000009],[21.539077596000084,44.9084744260001],[21.536287068000032,44.889302470000175],[21.522127727000083,44.880775859000046],[21.481510051000043,44.87261098300014],[21.453398072000084,44.86956207300001],[21.395313761000125,44.87162913000015],[21.36854536900006,44.864859517000056],[21.355522908000097,44.856591288000104],[21.346427857000034,44.84563588500011],[21.34281050600015,44.831941631000106],[21.359799635000115,44.82665722100002],[21.35984122700009,44.82664428400001],[21.360587199000094,44.82641225200008],[21.378570597000078,44.81664540700014],[21.395933879000097,44.79023874900015],[21.4121602780001,44.78481272400007],[21.497219686000108,44.77804311100006],[21.558404582000037,44.78166046100013],[21.578041626000072,44.77768137700015],[21.595611612000138,44.765950826000065],[21.604293254000083,44.749982809000024],[21.610287720000116,44.73194773400002],[21.619692830000076,44.71391265900003],[21.65627974500012,44.687661032],[21.705165649000094,44.677067363000035],[21.756842081000055,44.67727406900015],[21.801697225000026,44.683888652000164],[21.83828413900008,44.695205790000145],[21.855440715000043,44.69846140500011],[21.87197717300012,44.69598093700016],[21.96241093000009,44.662287903],[21.994346964000073,44.65856720000009],[22.004268839000076,44.65153920500008],[22.03217411300005,44.603325094000084],[22.03424290400008,44.596168195000146],[22.03617361700014,44.58948897000015],[22.039822225000133,44.57686676100008],[22.0451965740001,44.569218649],[22.05573856600006,44.56213897700009],[22.06710738100014,44.557229717000055],[22.076305786000148,44.55071848600009],[22.08695113100012,44.521779683000105],[22.10431441200006,44.50963572200011],[22.126638631000105,44.502659403000116],[22.148239380000092,44.50090240500005],[22.172113892000084,44.505346579000054],[22.185136352000114,44.515113424],[22.299031209000077,44.661667786000024],[22.30492232300014,44.677377422000106],[22.319701782000067,44.68533559200016],[22.36114628100003,44.69205352800018],[22.380679973000042,44.70052846300008],[22.4155098870001,44.727813620000106],[22.42605188000007,44.73365305599999],[22.450546508000116,44.73298126300001],[22.468943319000118,44.730190736000154],[22.483722778000125,44.72398956300016],[22.553279256000053,44.669160869000066],[22.58748905400003,44.64936879499999],[22.621182088000097,44.63743153900005],[22.70014367600004,44.63061025100008],[22.714716431000113,44.62306549100004],[22.765152628000095,44.58280955000011],[22.759261515000105,44.56467112300008],[22.741691528000047,44.55185536700018],[22.719367309000063,44.54436228500005],[22.70014367600004,44.54183014000007],[22.67854292800007,44.545550843000065],[22.642162719000083,44.56312083000016],[22.621182088000097,44.569218649],[22.600304810000125,44.56978709000008],[22.58046105900013,44.565497946],[22.565578247000076,44.55542104100005],[22.559790487000097,44.53878123000014],[22.556689900000066,44.52146962500013],[22.54842167200013,44.51170277900009],[22.535502563000108,44.50751698800006],[22.500362590000066,44.50638010700014],[22.49106083200013,44.504209697000064],[22.48413618900014,44.499765524000125],[22.47979537000009,44.490412090000106],[22.47721154800007,44.47697621700014],[22.477004842000014,44.463953756000095],[22.48000207500013,44.45578888000009],[22.500982706000116,44.44193959600012],[22.50542688000013,44.43501495400015],[22.5063570560001,44.427521871000025],[22.503979940000132,44.41170888300012],[22.50511682100006,44.40406077100012],[22.522686808000113,44.37507029200007],[22.549351847000082,44.348973694000065],[22.582838175000063,44.328406474000175],[22.621182088000097,44.315900778000085],[22.66252323400002,44.31166331000004],[22.681540161000097,44.30530710900011],[22.68949833200014,44.291716208000096],[22.68536421700011,44.24365712500007],[22.69073856600008,44.22887766500004],[22.691640373000098,44.22843453900005],[22.648777303000088,44.21399485300018],[22.63999231000011,44.20732859300007],[22.624799438000082,44.1893968720001],[22.608573039000078,44.17585764600012],[22.606195923000115,44.17456573500009],[22.604852335000142,44.168467916000125],[22.605989217000054,44.16314524400018],[22.607952921000106,44.15999298100003],[22.6093998610001,44.15994130500012],[22.599064575000085,44.13033070900015],[22.597100871000066,44.11906524700002],[22.598134399000116,44.109298401000146],[22.604645630000107,44.0881627400001],[22.604748982000046,44.07937774700012],[22.592966757000113,44.063926494000114],[22.575190064000083,44.061394348000036],[22.554622844000107,44.06242787700002],[22.53415897600013,44.057156881000175],[22.522583455000103,44.04470286100009],[22.51493534300002,44.03028513600016],[22.503669882000054,44.01989817300016],[22.481449015000123,44.01943308500013],[22.46588525700014,44.017624140000024],[22.43432010900011,44.013955384000134],[22.4117891840001,44.006927389000126],[22.39959354600009,43.993336487000036],[22.397319783000057,43.98093414400007],[22.396803019000117,43.951943665],[22.39452925600011,43.93633738200005],[22.39194543500011,43.93186737100014],[22.382023560000107,43.91856069000012],[22.379026326000087,43.91349639900015],[22.377062622000068,43.883524068],[22.367554159000093,43.85275075300014],[22.354738403000084,43.82970306500009],[22.349467407000077,43.80792144800016],[22.362593221000026,43.7808429980001],[22.38853479000008,43.75828623500017],[22.389568319000148,43.75050893200016],[22.38584761600006,43.733817444000024],[22.386054321000103,43.72549753800017],[22.390498495000113,43.712449240000026],[22.396906372000043,43.69940094000016],[22.404864543000116,43.68717946400015],[22.41395959500008,43.67666331],[22.42646529100008,43.66821421300001],[22.4559208580001,43.65640614900009],[22.466256144000084,43.64911977200002],[22.47287072800009,43.635942282000045],[22.47380090300004,43.61299794600011],[22.481449015000123,43.600647278000125],[22.48175907400011,43.59997548500014],[22.48196578000008,43.59945872000013],[22.48175907400011,43.59894195599998],[22.481449015000123,43.59852854500015],[22.478141723000135,43.59491119400009],[22.47710819400004,43.591293844000106],[22.478141723000135,43.58757314100008],[22.481449015000123,43.58413665800005],[22.482689250000078,43.581733704],[22.483102661000085,43.57927907300014],[22.482689250000078,43.576695252000135],[22.481449015000123,43.57411143000003],[22.47865848800006,43.569176331],[22.47762495900008,43.56416371700011],[22.478451783000107,43.55922861700019],[22.49064742000013,43.540883485],[22.50935428800011,43.49334116600009],[22.5188627520001,43.474246725000015],[22.53260868400011,43.464841614000036],[22.565784953000048,43.453343608000026],[22.572709595000106,43.44815012700012],[22.586765584000144,43.43443003300008],[22.59627404800011,43.429159038000066],[22.606919393000112,43.42740203800015],[22.628520141000077,43.428254700000096],[22.63782190000012,43.42636851100009],[22.645366658000057,43.42029652900014],[22.6565287680001,43.4031916310001],[22.658926066000106,43.40129503400011],[22.66469364400012,43.39673207700004],[22.674202108000088,43.39414825500013],[22.693219035000055,43.39487172500004],[22.702934204000115,43.39404490200012],[22.719367309000063,43.38867055300015],[22.724343132000115,43.38606013100015],[22.733009888000083,43.381513367000096],[22.804530070000112,43.32898427400012],[22.817139119000046,43.31549672400017],[22.820756469000113,43.30753855400008],[22.823857056000065,43.28929677300014],[22.82695764200011,43.281390279],[22.833158814000083,43.27464650500015],[22.857343384000075,43.25694732700005],[22.88380171700004,43.2305923470001],[22.89775435300004,43.220334574],[22.915531046000066,43.212247213000026],[22.964727010000043,43.20441823400007],[22.981366822000066,43.198992208],[22.98290193500014,43.187317919000165],[22.98457076000011,43.17462677100009],[22.974028768000068,43.141192118],[22.955631958000055,43.10827423200005],[22.93527144300012,43.0855624390001],[22.927106568000113,43.08114410500009],[22.910156698000094,43.075278829000084],[22.901681763000113,43.069749451000106],[22.896720825000074,43.06272145700008],[22.889486124000086,43.044376323],[22.88421512800005,43.036650696000024],[22.842253865000142,43.007505188],[22.82902469900006,42.993655905000125],[22.82902469900006,42.993500875000066],[22.82892134600013,42.993449198000164],[22.828817993000115,42.993449198000164],[22.815795532000067,42.98970265700014],[22.788096964000147,42.984896749000036],[22.776418091000068,42.979729106000136],[22.769390096000052,42.971280009000125],[22.763188924000076,42.95864512100012],[22.74551558400009,42.91006927500011],[22.73957861800011,42.89885754300015],[22.73879764800006,42.89738271100008],[22.727015422000136,42.88689239500012],[22.696629680000086,42.87740977000014],[22.666243937000043,42.87193206800005],[22.590899699000147,42.88689239500012],[22.563614542000067,42.88428273500001],[22.549971965000054,42.87735809300004],[22.544785162000068,42.87170643800012],[22.544494262000057,42.871389466],[22.537569621000074,42.86834055600014],[22.51979292800013,42.870355937000014],[22.506046997000112,42.87012339300007],[22.497055298000078,42.864413147],[22.481449015000123,42.846739807000105],[22.470907023000052,42.84012522400009],[22.445482218000052,42.830177511],[22.43680057800009,42.8242863980001],[22.430446174000053,42.81707659300015],[22.427395467000053,42.813615214000016],[22.425845174000102,42.80984283500008],[22.429359172000062,42.806122131000066],[22.453130331000125,42.76359242800011],[22.46656620300007,42.74852874800003],[22.481449015000123,42.73982126900013],[22.482585897000035,42.736824036000044],[22.482895955000117,42.73377512600011],[22.482585897000035,42.73067454100005],[22.481449015000123,42.72767730700015],[22.468116496000107,42.7183238730001],[22.442071573000135,42.68168528200006],[22.44920292100008,42.66796519000003],[22.444552042000108,42.64328969400013],[22.44131821900004,42.63289146300015],[22.428842407000044,42.592775981],[22.425328410000077,42.57285471600009],[22.429669230000055,42.5714077760001],[22.481449015000123,42.53562184600015],[22.512144816000074,42.519188742000026],[22.524857218000108,42.507664897000076],[22.532505330000106,42.49355723100014],[22.532505330000106,42.4934022020001],[22.536536092000087,42.478390198000014],[22.533125448000078,42.45759043400007],[22.519482870000076,42.42092600500011],[22.508837525000075,42.40493215000005],[22.4975720620001,42.39919606500011],[22.485066365000108,42.39715484600005],[22.46977014100014,42.391702983000144],[22.454370565000147,42.3767684940001],[22.438454223000036,42.34005238800013],[22.423984822000108,42.32589304700018],[22.405794718000067,42.321552226],[22.364143514000148,42.32098378500013],[22.345023234000053,42.3134390260001],[22.32528283700009,42.31431752500005],[22.3076094970001,42.319330140000105],[22.291589803000136,42.32839935400007],[22.276913696000065,42.341240947000145],[22.274019816000074,42.348475647000114],[22.27329634600008,42.36547719400012],[22.26885217300014,42.370334779000146],[22.259757120000103,42.36909454400002],[22.233402140000123,42.348889058000125],[22.09552941900006,42.305816752000126],[22.06090620900005,42.301088359000126],[22.045407482000144,42.302424041000066],[22.027626587000015,42.30395640100012],[21.99496708200013,42.31261220300017],[21.94153365000011,42.33310190900015],[21.92902795400005,42.335117289],[21.91827925600012,42.331344910000055],[21.8843795170001,42.30951161800011],[21.877351522000083,42.30821970600009],[21.837353963000112,42.30855560300007],[21.817200154000147,42.305144959000145],[21.71952070000009,42.260956635000085],[21.706509236000073,42.255070496000044],[21.69203983500003,42.242022197],[21.67695031700012,42.23494252500008],[21.676886452000076,42.23494482000008],[21.659690389000048,42.235562643000044],[21.624653768000115,42.24277150500011],[21.575044392000052,42.242022197],[21.564065710000108,42.24628930200011],[21.553857056000084,42.27398407],[21.514893026000095,42.317831523],[21.5160299070001,42.34193857900014],[21.5373205970001,42.35863006600009],[21.596645141000124,42.372091777000136],[21.61741906800006,42.38663869200009],[21.621863240000064,42.40216746000003],[21.61690230300013,42.43392262800013],[21.61896936000008,42.449244691],[21.6278577060001,42.460380961000126],[21.667855265000068,42.49009491],[21.717671346000085,42.551150615],[21.72769657400002,42.57414662700013],[21.72676639800008,42.57794484500006],[21.719738403000065,42.586678162000126],[21.71829146300007,42.5910189820001],[21.720151815000065,42.5938870240001],[21.72697310300012,42.59639333100007],[21.728833455000142,42.598305359],[21.73007369000007,42.60101837200013],[21.735551392000076,42.621275534000134],[21.734724569000036,42.62424692800015],[21.74454309100011,42.629647116000015],[21.756532023000148,42.6336262],[21.767074016000038,42.63871632899999],[21.772758422000067,42.64750132300016],[21.7643868400001,42.66961883600008],[21.744249788000076,42.67942452800004],[21.738651977000103,42.68215037000009],[21.708886352000036,42.68718882300006],[21.68738895700008,42.686827088000044],[21.64408410700011,42.672306010000014],[21.629407999000108,42.67220265700008],[21.61266483600008,42.6803933720001],[21.58052209500005,42.71021067300001],[21.56522587000009,42.720184225000125],[21.542488240000097,42.725816956000145],[21.44182255000007,42.73610056600013],[21.41780040600011,42.735570162000116],[21.405545695000082,42.73529958100012],[21.38869917800011,42.73904612300005],[21.37867395100008,42.744136251000114],[21.379190714000117,42.7470042930001],[21.383944946000042,42.74997568800002],[21.3871488850001,42.754962464000144],[21.390559529000114,42.77041371700007],[21.404098755000092,42.80397755900015],[21.40833622200006,42.82074656200014],[21.40841888600005,42.84174320800004],[21.408439575000074,42.84699819000015],[21.39893111100011,42.85456878700005],[21.378777303000106,42.85529225700013],[21.34673791500012,42.860847473000135],[21.336402628000116,42.86547251400019],[21.316972290000137,42.877616476000085],[21.306326945000134,42.882448222],[21.294958130000055,42.88438608800011],[21.271600383000106,42.88428273500001],[21.2605416260001,42.88655649900012],[21.23242964700006,42.91089609800004],[21.226745240000096,42.94252207500013],[21.225298299000116,42.97355377200016],[21.20979536900012,42.995877991000114],[21.19305220600006,42.99789337200015],[21.17940962700007,42.99058115700008],[21.165353638000028,42.98510345500009],[21.14788700300008,42.99262237600014],[21.139308716000073,43.00582570400003],[21.124012491000087,43.058277283000066],[21.10850956200008,43.081557516000096],[21.092593221000072,43.090678406000094],[21.02582727100011,43.093365580000025],[21.005156698000093,43.09912750200009],[20.993431297000086,43.10414825700009],[20.91249413300011,43.13880512900015],[20.83855188000012,43.17046681700007],[20.832040649000078,43.178605855000065],[20.836071411000148,43.17943267800008],[20.839068644000093,43.19245514000011],[20.8406189370001,43.20697621699999],[20.83999882000012,43.212092184000156],[20.85147098800013,43.219817811000084],[20.861599569000106,43.21751820900015],[20.864700154000047,43.21733734200011],[20.855088338000115,43.23144500800014],[20.848473755000043,43.23813710600014],[20.83844852700011,43.24586273200005],[20.819431600000144,43.25741241499999],[20.809717238000076,43.25961018900004],[20.794420207000144,43.263070984000116],[20.769512166000084,43.26084889800002],[20.745327596000095,43.25286488800005],[20.66698612400012,43.20966339200011],[20.644868612,43.20330719000016],[20.612312459000066,43.20227366200002],[20.604044230000113,43.19795867900002],[20.597533,43.18496205700011],[20.600116821000142,43.17382578600008],[20.612105754000112,43.154938050000126],[20.62058068900012,43.13333730100008],[20.626058390000107,43.12372548500015],[20.632052856000115,43.1172659300001],[20.64094120300004,43.115276388000055],[20.651689901000083,43.11630991600005],[20.66181848100012,43.11594818200014],[20.6691565350001,43.10979868599999],[20.664919068000074,43.085407410000144],[20.643835083000027,43.05225697900015],[20.617273397000105,43.02212961900015],[20.596396118000143,43.007091777000156],[20.584303833000064,43.00691090900004],[20.572831665000134,43.009339701999984],[20.56239302600011,43.00949473100003],[20.55340132600014,43.002595927000144],[20.543892863000078,42.98724802700018],[20.538415161000103,42.980659281],[20.53045699000012,42.9751557420001],[20.51113000500007,42.970194804000144],[20.493456665000082,42.970194804000144],[20.476403442000045,42.9663707480001],[20.459453572000143,42.950015158000056],[20.45097863700005,42.92203236900015],[20.466688273000102,42.90950083400007],[20.488909139000043,42.899191386000055],[20.494366526000135,42.8874665310001],[20.49883101400013,42.877874858000055],[20.47630008900012,42.8555248010001],[20.4280343020001,42.84064198800014],[20.345352010000028,42.827438660000055],[20.355170532000102,42.86617014600007],[20.353620239000094,42.89097483400003],[20.337083781000075,42.90696868900006],[20.275588827000092,42.92988718700009],[20.223188924000056,42.95766326900004],[20.19456018100007,42.966835836000044],[20.140920044000097,42.970814922000116],[20.129464296000094,42.973604791000106],[20.116942179000063,42.97665435800009],[20.056344255000113,43.020795978000116],[20.054388424000138,43.02222067300012],[20.019893840000094,43.0473477180001],[19.959742472000073,43.07856028200008],[19.949820598000144,43.085924174000084],[19.942275838000114,43.09563934300003],[19.936591431000068,43.10589711600004],[19.929150024000133,43.11390696299999],[19.91664432800013,43.11705922500015],[19.907135864000082,43.11326100700002],[19.883778117000105,43.09569102000013],[19.87220259600008,43.0903683480001],[19.83830285600007,43.08835296700014],[19.80512658700013,43.089954936000176],[19.781768839000108,43.09646616600007],[19.761201619000104,43.108739319000094],[19.74280481000011,43.126516012000124],[19.713555949000067,43.165609233000126],[19.70549442500007,43.166177673],[19.69732954900007,43.16020904599999],[19.684617147000097,43.15672088700002],[19.663016398000135,43.158503723000095],[19.6186780190001,43.168244731000144],[19.598110799000093,43.176202902000014],[19.58085087100011,43.18780426100006],[19.5499483640001,43.21751820900015],[19.54784473600006,43.21881486600013],[19.512431274000107,43.240643413000114],[19.502302693000075,43.25193471300009],[19.485146118000102,43.280098369000044],[19.473053833000108,43.29327585900005],[19.414039347000084,43.338389384],[19.372284790000037,43.38422637900014],[19.355644979000118,43.39306304900005],[19.21839237500012,43.43820241300001],[19.19224410000004,43.454532165000145],[19.175914347000088,43.480887146],[19.17519087700009,43.5096192430001],[19.195344686000084,43.53279612200011],[19.217462199000067,43.53279612200011],[19.229451131000133,43.54974599200001],[19.238856242000082,43.57212188699999],[19.252705525000067,43.58863250700007],[19.26366093000013,43.590957947],[19.289189087000064,43.58793487500019],[19.300867960000033,43.58829661099998],[19.312650187000145,43.59315419500011],[19.335801228000033,43.60651255300002],[19.346549926000137,43.60883799200015],[19.363396443000113,43.601577454],[19.38044966600006,43.585583598000035],[19.394609009000106,43.56646331800006],[19.402877238000144,43.54964263900008],[19.410732056000086,43.54075429300015],[19.41931034400011,43.54925506700008],[19.43181604000011,43.57114003500011],[19.44390832500011,43.57186350600004],[19.48173547300007,43.560830587000126],[19.489590291000127,43.56444793700011],[19.491760702000107,43.56860789000014],[19.488970174000144,43.57318125500008],[19.48173547300007,43.578116353000105],[19.476877889000065,43.588684184],[19.47563765400011,43.60255930600005],[19.477498006000133,43.616977030000086],[19.48173547300007,43.62891428700011],[19.507366984000043,43.64718190500018],[19.505713338000106,43.67364023900008],[19.48173547300007,43.72921824200007],[19.46168501800014,43.76213612900004],[19.35946903500007,43.842208761000066],[19.305932251000115,43.90473724400006],[19.27544315600005,43.93326263400003],[19.241026652000073,43.952357077],[19.22934777800012,43.95767974800004],[19.240716594000105,43.96574127200012],[19.242887003000078,43.97282094400008],[19.238132771000096,43.98537831599999],[19.23802941900007,43.992509664000025],[19.24350712100005,44.0020181280001],[19.252085409000074,44.00749583],[19.2727559810001,44.01240509000003],[19.287328735000074,44.013025208],[19.300557902000065,44.00951121000004],[19.32587935400005,43.99659210200004],[19.351717570000062,43.97912546800008],[19.364636678000068,43.973286031],[19.37910607900011,43.97385447200004],[19.393988892000035,43.9770584110001],[19.447112264000083,43.979797262000076],[19.504059692000055,43.97566314700005],[19.528554321000115,43.97721344100016],[19.55222212700005,43.983414612000146],[19.593356567000114,44.00558380200006],[19.610409790000062,44.01927805700007],[19.618884725000044,44.03571116100015],[19.611443319000045,44.05452138300016],[19.598937622000022,44.06258290600006],[19.589945923000073,44.060309144000044],[19.583848104000108,44.0543146780001],[19.580230753000137,44.05152415000005],[19.570928995000116,44.05689849900001],[19.55459924300007,44.07126454700001],[19.52204309100003,44.08501047800014],[19.516189487000133,44.09119350600004],[19.498168579000065,44.110228577],[19.482665649000126,44.12066721700013],[19.476361125000036,44.12702341700016],[19.474190714000116,44.14490346300011],[19.46571577900005,44.15280995700006],[19.459721313000102,44.15270660400013],[19.44845585100003,44.144438375],[19.442564738000044,44.14319814000005],[19.435536743000114,44.14609202100014],[19.424891398000057,44.153791810000044],[19.381173136000143,44.17709788000015],[19.362362915000062,44.19120554700002],[19.356058390000044,44.20402130100008],[19.353991333000067,44.224330140000106],[19.341588989000115,44.245827535000146],[19.3243290610001,44.26396596299999],[19.30737919100011,44.27419789600005],[19.295907023000098,44.2757998660001],[19.26366093000013,44.270167135000136],[19.249501587000083,44.270735576],[19.240716594000105,44.272699280000055],[19.22004602000007,44.280244039000095],[19.177154582000128,44.286961976000114],[19.15700077300005,44.2935765590001],[19.13891402200005,44.309337871000096],[19.11669315600011,44.34370269800002],[19.108941691000098,44.36364980100013],[19.107184693000107,44.38271840400013],[19.115762980000056,44.403595683],[19.129612264000116,44.41615305600011],[19.141394490000092,44.43082916300001],[19.143358195000133,44.45821767200005],[19.127338500000093,44.502556051],[19.1299223230001,44.518317363000094],[19.165269002000088,44.52668894500006],[19.17312382000011,44.53144317700004],[19.179635051000105,44.53826446500001],[19.185319458000038,44.54622263600005],[19.187283162000085,44.55330230700018],[19.186249633000102,44.56932200200005],[19.188316691000068,44.57603993700015],[19.193277628000118,44.58058746400009],[19.20412967900006,44.585134990000036],[19.208677205000097,44.58839060500013],[19.25570275900006,44.64564809200009],[19.270068807000087,44.67562042200002],[19.277613566000127,44.68487050400013],[19.2882589110001,44.69303538000006],[19.308412720000092,44.705127665000035],[19.31802453600011,44.71546295200015],[19.328359822000095,44.73396311500006],[19.363706503000117,44.85462758400014],[19.367840617000127,44.859278463000024],[19.373111613000077,44.860260315000076],[19.376625610000133,44.86299916600005],[19.37569543400008,44.873127747000076],[19.37280155400009,44.88144765300014],[19.368667440000053,44.8871320600001],[19.362776327000063,44.89111114500015],[19.356992726000072,44.89586862300017],[19.3569823040001,44.895877196000136],[19.353164510000056,44.89901763900012],[19.352957805000102,44.89808746300015],[19.35027062900008,44.89700225899999],[19.34014204900012,44.89622711200015],[19.330220174000118,44.89870758100012],[19.310169718000083,44.91235015900004],[19.301281372000062,44.91235015900004],[19.293013143000106,44.90940460200012],[19.283814738000103,44.90837107300014],[19.239476359000065,44.91514068700008],[19.22955448400006,44.91374542300012],[19.21188114400007,44.90837107300014],[19.201855916000056,44.90837107300014],[19.196894979000092,44.91317698200008],[19.19317427600009,44.92154856400005],[19.186869751000074,44.92754303000008],[19.174260701000037,44.925424297000106],[19.08455041500008,44.87896718399999],[19.068427368000073,44.87483306900005],[19.047756795000083,44.87271433600007],[19.015820760000082,44.86563466400004],[18.994323364000138,44.89483184800018],[18.991429484000065,44.91493398000013],[19.0184045820001,44.92568267800006],[19.03194380700006,44.92263376900003],[19.052097615000065,44.90697581000008],[19.06667036900009,44.905683899000124],[19.078659302000062,44.91085154200012],[19.08785770700007,44.919326477000034],[19.103567342000133,44.93824005099999],[19.113075806000012,44.942425842000105],[19.124547973000116,44.945939840000065],[19.131679321000064,44.953174540000035],[19.12764856000007,44.96841908800017],[19.118553507000115,44.97555043600003],[19.098089640000126,44.97002105700001],[19.087237589000097,44.97710072800014],[19.085170533000053,44.9872809860001],[19.08847782400005,44.99947662300012],[19.093232055000044,45.01151723300008],[19.09540246600011,45.02092234300012],[19.094265584000112,45.03141265900008],[19.085997355000075,45.06091990200009],[19.082276652000132,45.08494944300004],[19.079176066000116,45.094612936000075],[19.071527954000118,45.107066956000054],[19.06408654800009,45.11357818600011],[19.054164673000116,45.12060618100012],[19.04620650200013,45.12835764600014],[19.044862915000095,45.137245993000064],[19.060055786000106,45.146857809000046],[19.116073039000124,45.14287872400008],[19.137673787000097,45.14603098600004],[19.14170454900008,45.16215403200012],[19.128785441000076,45.18106760700005],[19.121860799000103,45.19579539000016],[19.143874959000073,45.19951609300007],[19.155760539000113,45.19496856700011],[19.17457076000011,45.17579661100002],[19.185319458000038,45.16804514600001],[19.204543091000062,45.16287750300002],[19.225937133000087,45.16194732700016],[19.267795044000138,45.16582305900003],[19.2727559810001,45.16835520500011],[19.275753215000123,45.172851054000105],[19.27947391800012,45.17724355100002],[19.28670861800009,45.17951731400005],[19.291359497000144,45.17770863900013],[19.29942102000004,45.168975322000065],[19.304278605000064,45.16654653000001],[19.39068160000005,45.16933705700016],[19.393929400000104,45.171624240000035],[19.40535770700012,45.17967234300006],[19.40783817500011,45.20313344400012],[19.397296183000037,45.22328725300004],[19.378072550000127,45.229591777000124],[19.363086385000145,45.24824696900011],[19.162065063000114,45.285040588000115],[19.12475467900009,45.298114726000065],[19.098813110000037,45.31987050400006],[19.09622928900012,45.32912058500006],[19.09540246600011,45.34048940100017],[19.09199182100008,45.34999786400006],[19.082069946000104,45.35402862600013],[19.040832153000082,45.35402862600013],[19.020988403000104,45.35723256500002],[19.003625122000074,45.366120911000124],[18.988742310000134,45.3792467250001],[18.97592655400007,45.39495636000007],[19.028636516000063,45.41216461200004],[19.03742150900007,45.4222931930001],[19.031633748000075,45.43402374300008],[19.01225762800007,45.448468396000024],[19.0030050040001,45.45536611000007],[18.996390422000104,45.47381459600008],[19.009619588000106,45.49867095900005],[19.01792614700011,45.49780728000009],[19.07721236200007,45.49164296500014],[19.106254517000053,45.51164174500017],[19.09509240700004,45.52605946900009],[19.082276652000132,45.53117543600008],[19.06780725100012,45.53339752200018],[19.050960734000057,45.538926899999986],[19.04093550600001,45.54502471900004],[19.0364913330001,45.54946889300005],[19.033390747000055,45.55463653600004],[19.02718957500008,45.56259470700003],[19.018094523000116,45.56740061400002],[19.00920617700009,45.565488586000114],[19.00062788900007,45.561199443000035],[18.983161255000113,45.554739888000185],[18.973136027000095,45.54626495399999],[18.960216919000086,45.53913360700012],[18.94171675700005,45.538926899999986],[18.932001586000126,45.54554148400008],[18.912054484000095,45.568227438000136],[18.90357954900008,45.57308502200006],[18.906990194000112,45.58166331000011],[18.908230428000138,45.60042185499999],[18.91236454200009,45.61923207600002],[18.924456828000075,45.62770701100011],[18.935412231000043,45.63339141900015],[18.962904093000105,45.660108134000104],[18.968485148000127,45.66873809800016],[18.962697388000066,45.683052470000135],[18.948124634000095,45.69204417000018],[18.931071411000058,45.69891713500006],[18.917325480000045,45.70656524700003],[18.90895389800005,45.719432679000036],[18.90481978400004,45.74976674400007],[18.90016890400008,45.76490793900008],[18.871126750000087,45.78997100900001],[18.863995402000054,45.79854929700004],[18.84869917800009,45.80955637600011],[18.84497847500006,45.815705872000095],[18.84673547400004,45.81999501600013],[18.850352824000137,45.82423248300002],[18.85241988100009,45.830071920000094],[18.855313761000076,45.8573570760001],[18.887146443000116,45.85947581000009],[18.899755493000068,45.861387838],[18.906990194000112,45.867950745000186],[18.903992960000092,45.87570221],[18.893450969000128,45.88386708600002],[18.87288374800005,45.89523590100002],[18.881978800000127,45.902625631000106],[18.889833619000058,45.907896627000056],[18.906990194000112,45.91569976800015],[18.90130578600008,45.93120269800006],[18.962697388000066,45.92794708300009],[18.981817668000133,45.92184926400013],[18.987502076000084,45.92381296900005],[18.988742310000134,45.92701690700012],[18.9864685470001,45.93125437499999],[18.978820434000056,45.93978098600009],[18.977683553000134,45.943501689000115],[18.978717081000095,45.947170716000116],[18.981817668000133,45.950788066000186],[19.005588827000107,45.9625702930001],[19.030910279000096,45.960038147000105],[19.04858361800009,45.96344879200005],[19.04972050000009,45.993111064000104],[19.06543013500007,46.01202463800003],[19.08847782400005,46.01884592700018],[19.111008748000046,46.01295481400008],[19.125788208000074,45.993266093000116],[19.125788208000074,45.993111064000104],[19.148009074000097,45.98406768800014],[19.23565230300011,45.97771148700009],[19.263454223000082,45.98143219000012],[19.27482303900007,45.99161244800008],[19.27947391800012,46.003808086],[19.286915324000063,46.01615875300014],[19.298314567000062,46.02212279000004],[19.30696577900011,46.0266490690001],[19.325155884000136,46.029491273000176],[19.36215620900009,46.02964630100002],[19.378899373000138,46.03367706400011],[19.389131307000127,46.04153188100004],[19.396572713000126,46.05155710800006],[19.404737590000053,46.060238750000124],[19.417243286000144,46.064321188000136],[19.428302043000144,46.06550974600016],[19.436880330000093,46.06799021400003],[19.45372684700007,46.07755035500004],[19.4608581950001,46.08447499600011],[19.46592248500008,46.09196807900007],[19.472950480000094,46.09868601600008],[19.499305461000063,46.10860789000015],[19.49672163900007,46.11687612000013],[19.489280233000045,46.126022848],[19.487523234000065,46.13423940100013],[19.50199263500008,46.14560821500011],[19.5252470290001,46.15640859000014],[19.5499483640001,46.16416005500015],[19.568448527000044,46.16643381800018],[19.589739217000044,46.165968730000074],[19.6478235270001,46.17387522400009],[19.669320923000043,46.17310007700008],[19.690094848000086,46.16839752200012]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Russia","sov_a3":"RUS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Russia","adm0_a3":"RUS","geou_dif":0,"geounit":"Russia","gu_a3":"RUS","su_dif":0,"subunit":"Russia","su_a3":"RUS","brk_diff":0,"name":"Russia","name_long":"Russian Federation","brk_a3":"RUS","brk_name":"Russia","brk_group":null,"abbrev":"Rus.","postal":"RUS","formal_en":"Russian Federation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Russian Federation","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":7,"mapcolor13":7,"pop_est":140041247,"gdp_md_est":2266000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"RS","iso_a2":"RU","iso_a3":"RUS","iso_n3":"643","un_a3":"643","wb_a2":"RU","wb_a3":"RUS","woe_id":23424936,"woe_id_eh":23424936,"woe_note":"Exact WOE match as country","adm0_a3_is":"RUS","adm0_a3_us":"RUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":18,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"RUS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[132.44898522200018,42.845404364],[132.44988040500007,42.82811107000001],[132.4674585300002,42.81093984600007],[132.47771243600013,42.803900458],[132.47559655000012,42.80023834800015],[132.46713300900015,42.79682038000014],[132.458262566,42.798285223],[132.45337975400005,42.80097077000009],[132.44727623800017,42.80731842700011],[132.43946373800006,42.81753164300015],[132.4298608730002,42.82648346600017],[132.41749108200023,42.83002350500006],[132.4064233730002,42.82876211100013],[132.40154056100005,42.83197663],[132.4000757170002,42.84170156500015],[132.39966881600017,42.852118231000034],[132.40463300900004,42.8591169290001],[132.41325931100002,42.864447333],[132.41846764400023,42.87986888200011],[132.42750084700006,42.895900783000016],[132.439219597,42.892035223],[132.44727623800017,42.876776434000035],[132.45362389400012,42.860907294000114],[132.44898522200018,42.845404364]]],[[[131.87574303500003,43.05101146000011],[131.8922632170002,43.03583405200011],[131.92090905000006,43.02415599200013],[131.92009524800008,43.019517320000105],[131.9225366550002,43.00893789300015],[131.92400149800008,43.00584544500008],[131.92090905000006,42.99628327000009],[131.91504967500023,42.984279690000065],[131.88331139400006,42.96076080900009],[131.83725019600004,42.961127020000035],[131.79053795700023,42.97455475500003],[131.7570093110002,42.99005768400012],[131.7911889980002,42.99628327000009],[131.77458743600002,43.00531647300009],[131.76937910200004,43.01536692900005],[131.77344811300011,43.02118561400012],[131.78435306100008,43.01740143400009],[131.7911889980002,43.01740143400009],[131.78736412900017,43.03436920800006],[131.78386478000016,43.04010651200004],[131.77751712300008,43.044623114],[131.79883873800023,43.05263906500012],[131.81967207099999,43.049261786000116],[131.84009850400014,43.041693427000084],[131.85938561300011,43.0372582050001],[131.85938561300011,43.044623114],[131.82650800900004,43.06517161700005],[131.85499108200023,43.06134674700003],[131.87574303500003,43.05101146000011]]],[[[146.15748131600017,43.54633209800009],[146.17505944100006,43.53815338700018],[146.2046004570001,43.5388044290001],[146.22071373800014,43.53701406500012],[146.2295028000001,43.531317450000145],[146.22673587300008,43.52081940300009],[146.21461022200015,43.51219310099999],[146.20492597700004,43.50116608300014],[146.20915774800002,43.48346588700004],[146.1518660820001,43.46279531500004],[146.134043816,43.46303945500016],[146.12916100400005,43.468654690000065],[146.12647545700005,43.486029364000146],[146.12338300899998,43.489691473],[146.11345462300008,43.49290599200005],[146.10043378999998,43.500677802000055],[146.07935631600017,43.51764557500003],[146.13168379000012,43.54083893400014],[146.15748131600017,43.54633209800009]]],[[[146.87452233200023,43.86709219000015],[146.88168378999998,43.85919830900017],[146.89584394600004,43.85089752800008],[146.91016686300011,43.84463125200015],[146.92514082100004,43.842474677000055],[146.942149285,43.846625067],[146.93539472700016,43.830064195000105],[146.92660566499998,43.81439850500006],[146.91456139400003,43.80272044500005],[146.89828535200016,43.79824453300007],[146.87794030000023,43.79677969000012],[146.86540774800008,43.79271067900008],[146.84034264400017,43.778306382],[146.83350670700023,43.778265692],[146.8266707690002,43.78131745000008],[146.8190210300002,43.781927802000055],[146.80933678500003,43.77460358300006],[146.80241946700002,43.76723867400007],[146.7931421230002,43.75946686400006],[146.78345787900005,43.75348541900014],[146.7745874360002,43.75104401200009],[146.75749759200002,43.74835846600003],[146.74268639400017,43.743312893],[146.72754967500018,43.74017975500011],[146.70948326900023,43.74359772300012],[146.71631920700005,43.729925848],[146.693695509,43.716294664000046],[146.68189537900005,43.711371161],[146.66846764400023,43.709418036000145],[146.65064537900017,43.712591864],[146.62501061300011,43.72675202000012],[146.60971113400012,43.729925848],[146.60222415500007,43.73607005400008],[146.60385175899998,43.75043366100006],[146.61312910200016,43.778306382],[146.60954837300008,43.789496161000024],[146.603282097,43.800360419000086],[146.6046655610002,43.80857982],[146.6479598320001,43.81476471600014],[146.67432701900006,43.821966864],[146.76872806100002,43.8608259140001],[146.79558353000002,43.86701080900015],[146.81934655000012,43.86029694200012],[146.83204186300006,43.87201569200003],[146.84620201900012,43.87832265800016],[146.8605249360002,43.87718333500011],[146.87452233200023,43.86709219000015]]],[[[47.851084832000225,43.999212958000086],[47.862071160000106,43.994330145],[47.86695397200006,43.99144114799999],[47.86687259200008,43.98379140800013],[47.762950066000116,43.928412177000055],[47.74626712300019,43.926947333],[47.70980879000009,43.935777085000055],[47.69418379000015,43.936753648000135],[47.68409264400006,43.93952057500008],[47.68018639400005,43.95140208500014],[47.673594597,43.95107656500004],[47.655772332000225,43.943182684000035],[47.64283287900011,43.94440338700015],[47.632985873000194,43.95254140800007],[47.628184441000116,43.96259186400006],[47.63738040500019,43.98135000200001],[47.66570071700002,43.99628327000006],[47.780609571000156,43.99453359600007],[47.813324415000096,43.99925364800008],[47.83855228,44.00063711100013],[47.851084832000225,43.999212958000086]]],[[[146.3338322270001,44.42853424700003],[146.36345462300014,44.42202383000013],[146.46924889400023,44.42877838700015],[146.5519311860002,44.451117255],[146.57211347700004,44.44989655200008],[146.55486087300002,44.40802643400015],[146.5483504570002,44.39809804900007],[146.54395592500023,44.392767645],[146.53882897200006,44.38296133000007],[146.5346785820001,44.377630927],[146.52930748800023,44.37335846600008],[146.5190535820001,44.36835358300005],[146.513926629,44.363959052000055],[146.50318444100017,44.36212799700008],[146.47234134200002,44.376898505000085],[146.45923912900017,44.381048895],[146.44800866000017,44.378729559000064],[146.41431725400017,44.367865302000055],[146.40707441500004,44.363959052000055],[146.4020288420002,44.36237213700003],[146.37370853000007,44.32636139500006],[146.36426842500023,44.31793854400003],[146.32585696700002,44.29222239800007],[146.30372155000023,44.282131252],[146.27344811300023,44.273423570000105],[146.24366295700023,44.27049388199999],[146.22339928500006,44.27798086100016],[146.20199628999998,44.26959870000009],[146.13941491000017,44.26569245000012],[146.11654707100016,44.25438060100011],[146.11117597700004,44.24884674700011],[146.10401451900017,44.24315013200011],[146.09636478000002,44.23875560100005],[146.08936608200017,44.237005927000055],[146.085215691,44.23407623900012],[146.07935631600017,44.21930573100003],[146.07593834700018,44.21344635600009],[146.06478925900015,44.20148346600017],[146.05640709700018,44.1943220070001],[146.04664147200006,44.18895091400016],[146.03101647200006,44.18235911699999],[145.931407097,44.12091705900012],[145.92302493600008,44.11371491100009],[145.89340254000004,44.079982815000086],[145.8869735040001,44.06940338700004],[145.88754316500015,44.03904857000005],[145.88379967500023,44.02659739800005],[145.87330162900017,44.01788971600014],[145.85377037900017,44.02472565300017],[145.83155358200023,44.01996491100009],[145.81324303500017,44.006537177],[145.80567467500012,43.987209377000156],[145.80160566500015,43.96747467700011],[145.79167728000007,43.94855377800009],[145.7781681650001,43.932562567],[145.76400800900015,43.92169830900012],[145.74594160200004,43.91303131700012],[145.72681725400017,43.90656159100003],[145.66211998800023,43.898179429000045],[145.6476343110002,43.89032623900009],[145.62012780000023,43.86709219000015],[145.58871504000004,43.847560940000065],[145.58106530000006,43.83368561400009],[145.57227623800023,43.729925848],[145.55795332100004,43.65790436400006],[145.5561629570002,43.652655341000084],[145.55176842500018,43.65786367400007],[145.54712975400005,43.66718170800011],[145.54428144599999,43.67470937700007],[145.54395592500006,43.68724192900008],[145.54859459700012,43.70302969000012],[145.54428144599999,43.709418036000145],[145.55176842500018,43.716253973000065],[145.51417076900006,43.73574453300013],[145.47486412900017,43.72557200700002],[145.443125847,43.72451406500015],[145.427582227,43.770900783],[145.4296981130001,43.797308661],[145.427582227,43.80560944200009],[145.42261803500006,43.81240469],[145.41529381600006,43.82029857],[145.40992272200018,43.82855866100006],[145.41089928500017,43.836004950000145],[145.42058353000002,43.84349192900011],[145.44214928500003,43.85028717700014],[145.4518335300002,43.856512762000094],[145.4738061860002,43.885809637000115],[145.48226972700016,43.894435940000115],[145.54184004000015,43.91864655200011],[145.55176842500018,43.925441799000154],[145.56080162900017,43.93789297100007],[145.66163170700023,43.99062734600007],[145.68018639400023,44.02045319200006],[145.68531334700018,44.025376695000105],[145.70777428500014,44.03058502800012],[145.728770379,44.043768622000144],[145.74594160200004,44.061265367000104],[145.757172071,44.07941315300012],[145.76400800900015,44.117254950000145],[145.76832116000006,44.12531159100008],[145.78711998800011,44.140692450000024],[145.79127037900005,44.15135325700008],[145.80103600400017,44.16006094000015],[145.84595787900017,44.18032461100015],[145.85962975400003,44.18927643400009],[145.86264082100004,44.1979027360001],[145.86508222700016,44.218817450000145],[145.86963951900012,44.22703685100005],[145.89722741000006,44.25438060100011],[145.91431725400017,44.2657738300001],[145.9547632170002,44.277329820000105],[145.9694930350001,44.285386460000055],[145.97486412900017,44.29230377800015],[145.97917728000007,44.30076732],[145.98218834700006,44.30927155200011],[145.98316491000006,44.31614817900014],[145.98747806100002,44.32371653900016],[146.00562584700006,44.33633047100006],[146.00977623800006,44.34316640800007],[146.01246178500006,44.36611562700007],[146.01978600400017,44.38263580900003],[146.0307723320001,44.39581940300009],[146.04468834700018,44.408921617000075],[146.0909936860002,44.47821686400012],[146.11931399800014,44.50604889500009],[146.16138756600014,44.511379299000154],[146.18311608200017,44.51080963700018],[146.19434655000023,44.506537177000084],[146.24756920700023,44.46698639500012],[146.25416100400005,44.46356842700011],[146.27930748800011,44.45701732000013],[146.3338322270001,44.42853424700003]]],[[[148.8166610040001,45.33348216400018],[148.78223717500023,45.31940338700015],[148.7583113940001,45.31268952],[148.72877037900005,45.311102606000176],[148.64503014400012,45.32013580900018],[148.58432050900012,45.31549713700015],[148.55616295700005,45.307033596],[148.46876061300011,45.25946686400011],[148.43824303500017,45.248521226000044],[148.34351647200018,45.23891836100007],[148.277679884,45.222560940000065],[148.21583092500023,45.19574616100006],[148.12728925900004,45.13108958500014],[148.06787452099996,45.07959012400009],[148.02388849600018,45.038667377000124],[147.99030926000015,45.00579799400002],[147.9635113630002,44.99892833300014],[147.91302404500007,44.96300168400002],[147.86489772400003,44.96383532000006],[147.83204186300017,44.96531810099999],[147.80925540500002,44.96381256700014],[147.79664147200003,44.96063873900009],[147.77833092500006,44.94651927300005],[147.76832116,44.94334544499999],[147.7387389100002,44.96818608500017],[147.72579493300006,44.99219538700011],[147.70077651500006,45.00798625700004],[147.6538007470002,44.9948510550001],[147.62598717500023,44.96942780200005],[147.62091809400013,44.95068584600009],[147.626777055,44.93156173600014],[147.64879602000005,44.92110857000015],[147.64544915500008,44.9080957],[147.62745201900012,44.90110911700005],[147.61719811300006,44.89150625200007],[147.58643639400012,44.867621161],[147.57837975400014,44.85691966400016],[147.56446373800003,44.833563544000086],[147.55543053500014,44.82355377800009],[147.48536217500006,44.77838776200015],[147.38837682200017,44.736658734000095],[147.33033287900014,44.688218492000125],[147.28891035200016,44.660589911000116],[147.27173912900005,44.641750393000066],[147.22602680200006,44.58100204600011],[147.15326665700005,44.55911948900011],[147.11325692500023,44.57038670800004],[147.05469895800005,44.53716981500013],[147.01856530000012,44.502630927000084],[146.99366295700005,44.480373440000115],[146.97779381600006,44.457424221000124],[146.97038821700008,44.43740469000006],[146.95834394600016,44.42104726800015],[146.93818284400018,44.42278787100009],[146.9123683160001,44.432737549000095],[146.8760385290001,44.43414403200001],[146.86179580400005,44.445337234000036],[146.85832294500005,44.46198135500008],[146.86347514800005,44.47531852200002],[146.87338300900004,44.48989492400004],[146.89242597700004,44.504299221000096],[146.90739993600008,44.522162177000055],[146.938314761,44.536138336000036],[146.949854703,44.548943313],[146.93709480900023,44.5682878140001],[146.93130800200004,44.586009174000154],[146.9292098320001,44.606919664000046],[146.93702654900008,44.62482239700002],[146.9516394760001,44.62226033800012],[146.9599842810001,44.60202264800013],[146.9619372330001,44.58393584200003],[146.98423020700014,44.57221345900011],[147.00074303500006,44.565985419000114],[147.02158031600018,44.58168272000013],[147.03782467200008,44.59901226400011],[147.0273445400001,44.62048577400013],[147.01042728000016,44.6342634140001],[146.99862314400016,44.66261245700004],[147.03110058600018,44.66895315500001],[147.0676636680001,44.64603342300008],[147.091427334,44.63735817400011],[147.12915970800012,44.64710995700007],[147.15284264400023,44.673976955000015],[147.1965800010001,44.71368175500011],[147.20093860100022,44.731091691000174],[147.20393140100023,44.75543542700007],[147.16086706500008,44.7705661080001],[147.12188569900016,44.77630120400009],[147.0965275400001,44.79580312700012],[147.10919889900012,44.82714813000013],[147.15157755800007,44.83447719300001],[147.19060170300003,44.80896466600002],[147.21654031600016,44.799007136000014],[147.24987793099996,44.82087587900004],[147.24057050900015,44.850897528000175],[147.26441491000003,44.867621161],[147.3605249360002,44.90110911700005],[147.40837649800017,44.93650950700005],[147.4537866550002,44.95856354400014],[147.46656334700006,44.966945705000015],[147.48438561300011,44.985337632000046],[147.49488366000014,45.00495026200004],[147.50074303500006,45.02704498900003],[147.50391686300011,45.05320872600005],[147.5031030610002,45.06647370000009],[147.50074303500006,45.073431708000086],[147.5018009770001,45.07880280200013],[147.51140384200008,45.087347723000065],[147.52637780000012,45.09393952000012],[147.54167728000007,45.09284088700018],[147.5561629570001,45.086330471000096],[147.56902103,45.07648346600017],[147.59302819100017,45.06439850500005],[147.61963951900012,45.065334377000156],[147.6460067070001,45.07611725500006],[147.66895592500012,45.09357330900012],[147.73389733200003,45.165594794000135],[147.75700931100002,45.18573639500009],[147.78126061300011,45.197699286000116],[147.8862410820001,45.21873607000005],[147.89486738400004,45.22394440300006],[147.89429772200006,45.23753489800002],[147.884532097,45.24787018400009],[147.87305748800006,45.25726959800012],[147.86752363400015,45.26829661699999],[147.87435957100016,45.30955638200014],[147.87208092500012,45.32050202],[147.86207116,45.342108466000084],[147.86068769600004,45.35423411699999],[147.87159264400012,45.380357164000046],[147.8927514980002,45.39671458500005],[147.91773522200003,45.40985748900012],[147.93995201900006,45.42625560100011],[147.95093834700006,45.431341864000146],[147.95826256600006,45.423407294000086],[147.9624129570001,45.40997955900009],[147.96509850400017,45.38385651200004],[147.96924889400012,45.374416408],[147.99756920700023,45.33462148600013],[148.00147545700023,45.32591380400005],[148.00473066499998,45.31268952],[148.00505618600013,45.29873281500012],[148.00318444100006,45.28974030200011],[148.004649285,45.28119538],[148.01490319100006,45.26829661699999],[148.03956139400023,45.25462474200004],[148.06959069100014,45.25116608300014],[148.31185957100004,45.27529531500006],[148.36101321700002,45.29962799700003],[148.39966881600012,45.339178778000175],[148.42383873800011,45.3588727890001],[148.44727623800006,45.36733633000016],[148.44947350400017,45.37262604400003],[148.46843509200016,45.39765045800014],[148.47730553500006,45.405462958000136],[148.50603274800008,45.419378973000036],[148.5323999360002,45.436224677000105],[148.55128014400012,45.457261460000055],[148.560313347,45.46344635600012],[148.56967207100016,45.46613190300009],[148.5914819670002,45.46800364800007],[148.60075931100008,45.470892645],[148.60694420700023,45.47699616100009],[148.61768639400023,45.49396393400015],[148.6211043630002,45.49823639500006],[148.62924238400015,45.50096263200013],[148.64673912900005,45.50267161700004],[148.72657311300023,45.525213934000035],[148.763926629,45.52789948100009],[148.79916425900015,45.51813385600015],[148.85132897200018,45.48151276200004],[148.85621178500006,45.4643415390001],[148.82715905000018,45.443019924000126],[148.8014429050001,45.435003973],[148.79672285200004,45.429388739],[148.79916425900015,45.41567617400007],[148.80648847700016,45.40448639500006],[148.84400475400014,45.37103913],[148.84343509200016,45.35175202000006],[148.8166610040001,45.33348216400018]]],[[[47.99903405000011,45.45132070500004],[47.99683678500011,45.44790273600001],[47.99073326900012,45.448716539000124],[47.98406009200008,45.45302969000012],[47.98072350400011,45.45547109600007],[47.959808790000096,45.47577545800005],[47.943858269000174,45.499579169000135],[47.92798912900011,45.53400299700008],[47.917735222,45.570054429000045],[47.91651451900012,45.57929108300003],[47.916026238000114,45.5953636740001],[47.91675866000011,45.60919830900009],[47.91456139400023,45.623032944999984],[47.917491082000055,45.63275788000014],[47.92790774800008,45.63544342700011],[47.93751061300023,45.636216539000046],[47.94629967500012,45.64492422100004],[47.95704186300011,45.650458075000024],[47.962087436000076,45.639797268],[47.95972741000011,45.62409088700003],[47.9661564460001,45.60614655199999],[47.97803795700017,45.58344147300015],[47.98226972700015,45.56427643400018],[47.98267662900017,45.55011627800015],[47.988617384000094,45.535793361000074],[47.99708092500006,45.52049388200011],[47.99708092500006,45.467840887000094],[47.99878991000017,45.45384349200005],[47.99903405000011,45.45132070500004]]],[[[150.56934954700014,46.23175790200009],[150.51542835500018,46.189838453],[150.47348066500015,46.16046784100011],[150.44410241000017,46.14191315300009],[150.39332116,46.100409247000115],[150.36329186300006,46.08152903900016],[150.32227623800017,46.06924062700004],[150.28618225000005,46.04552959900015],[150.24536862600013,46.037032137000054],[150.2286889980002,46.00849030199999],[150.18997444400006,45.98382861100008],[150.17961172300002,45.94870304600006],[150.19760175900004,45.92963288000011],[150.19092858200017,45.926703192],[150.15696537200014,45.921620947000164],[150.14579817900014,45.911863938000025],[150.14234459700012,45.89801666900014],[150.11361738400015,45.87929922100007],[150.08627363400007,45.87067291900017],[150.03819057700017,45.843093668000066],[150.02295059600024,45.82379688600004],[149.99577630400006,45.81854274300015],[149.97287111400007,45.81968806200014],[149.94763534000018,45.82236743300017],[149.92287366900004,45.81071206200009],[149.92139733200023,45.79376862200017],[149.8706160820001,45.77826569200006],[149.8421330090001,45.760199286000145],[149.75464928500006,45.684149481000034],[149.70191491000006,45.64789459800012],[149.63776591100006,45.6109460790001],[149.60374538800002,45.60536483500006],[149.58326256600014,45.63226959800014],[149.57715905000012,45.63727448100009],[149.57447350400005,45.62490469000015],[149.5737410820001,45.60846588700015],[149.57016035200004,45.60321686400006],[149.56275475400005,45.60008372599999],[149.5499780610002,45.590399481000034],[149.52906334700006,45.58356354400003],[149.4366968110002,45.58698151200004],[149.44459069100017,45.59438711100002],[149.45297285200004,45.59979889500006],[149.46582254600017,45.62430633400011],[149.48230892200004,45.669377366],[149.51221764400023,45.674017645000085],[149.529551629,45.69379303600003],[149.53541100400017,45.698187567],[149.54786217500006,45.70563385600015],[149.5533960300002,45.70990631700009],[149.56706790500002,45.73163483300006],[149.59498131600017,45.7651227890001],[149.59644616000006,45.77057526200004],[149.59555097700004,45.78327057500008],[149.5979923840001,45.789007880000085],[149.60450280000018,45.79246653900016],[149.61915123800006,45.7927106790001],[149.62574303500006,45.796128648000135],[149.65284264400003,45.823716539000046],[149.66732832100004,45.85321686400012],[149.69361412900005,45.861029364],[149.75196373800023,45.86074453300007],[149.81104576900006,45.87982819200006],[149.8507593110002,45.91705963700004],[149.8839624360002,45.960394598],[149.92335045700005,45.99795156500012],[150.02016890700023,46.07302358000014],[150.09457441500015,46.09471263200011],[150.10840905000023,46.09540436400006],[150.1351017590001,46.09292226800012],[150.14975019599996,46.09471263200011],[150.1806746750002,46.10541413000006],[150.194590691,46.11359284100014],[150.20785566500015,46.12482330900015],[150.21143639400012,46.13475169500007],[150.18190532700015,46.15973271500003],[150.2110563910002,46.179220178000136],[150.24507598300002,46.190836052000044],[150.28848684700014,46.196227621],[150.3342391290001,46.21084219000015],[150.39740614300015,46.23110152700015],[150.47822867900018,46.209981369000054],[150.56934954700014,46.23175790200009]]],[[[150.84645675900006,46.44204983300015],[150.83285566499998,46.44086334800012],[150.80909264400012,46.445746161],[150.78007698300007,46.45715948600003],[150.78395490200015,46.46270887499999],[150.7908596110002,46.46618615900003],[150.79958494600007,46.48009903500012],[150.80848058100017,46.486437534000096],[150.81856076300014,46.47811514300009],[150.82590990700024,46.465210694000135],[150.83918878400019,46.45507877900009],[150.84333108000024,46.44822446600007],[150.84645675900006,46.44204983300015]]],[[[152.200450066,47.142320054],[152.1987410820001,47.12881094],[152.2055770190001,47.12881094],[152.230235222,47.138169664000046],[152.2553817070001,47.15485260600009],[152.27784264400012,47.16185130400008],[152.29493248800023,47.14248281500014],[152.18441816500004,47.071478583000086],[152.17351321700002,47.0566266950001],[152.15707441500015,47.01894765800013],[152.13941491000003,47.003119208],[152.08643639400012,46.97675202],[152.07520592500003,46.968003648000135],[152.072113477,46.955755927000055],[152.06478925900004,46.94855377800003],[152.05567467500012,46.94330475500014],[152.04721113400015,46.9369977890001],[152.02003014400023,46.90289948100009],[151.99927819100017,46.889878648000106],[151.98462968400023,46.878556208000035],[151.95178559700014,46.85983660600006],[151.92025800900012,46.855536200000145],[151.90805142900004,46.83550125700004],[151.8889125320001,46.81676595400002],[151.85060091100016,46.79047320600016],[151.80141489300004,46.76603202100007],[151.76368248800006,46.77997467700014],[151.75131269600016,46.78266022300012],[151.73560631600017,46.789455471000146],[151.72120201900012,46.79816315300003],[151.712168816,46.80662669499999],[151.71111087300008,46.815497137000115],[151.71387780000012,46.825181382],[151.71412194100006,46.83608633000016],[151.70533287900017,46.84829336100013],[151.74545332099999,46.861761786000116],[151.83765709700018,46.85626862200009],[151.873301629,46.87181224199999],[151.92221113399998,46.927923895],[151.9502059250001,46.952093817],[152.04965254000004,47.01496002800015],[152.15894616,47.13385651200003],[152.22543379000004,47.17658112200014],[152.22543379000004,47.169745184000035],[152.21371504,47.163316148000135],[152.2055770190001,47.15399811400009],[152.200450066,47.142320054]]],[[[152.54029381600006,47.32514069200009],[152.5244439090002,47.29864593399999],[152.48168840000002,47.301350650000145],[152.429731045,47.319190817],[152.41315419400004,47.340670538],[152.41337271000012,47.367127861000185],[152.42628014400023,47.383490302000084],[152.45020592500012,47.38703034100014],[152.5034285820001,47.383246161000116],[152.52133222700016,47.37250397300003],[152.5366317070001,47.34882233299999],[152.54029381600006,47.32514069200009]]],[[[153.0471117430001,47.70702349300008],[153.0280054050002,47.69733307500006],[153.01099694100006,47.697821356000034],[152.99263039100006,47.69711128900017],[152.97825383500017,47.68433281800016],[152.96610798800006,47.695287693000104],[152.9668049540002,47.71677805500009],[152.97095433800004,47.73481251900013],[152.97018919600006,47.75157035600013],[152.98267872300008,47.769682188],[153.00191459100003,47.78578321100004],[153.02127099400005,47.79959657900004],[153.04928631200008,47.80789084400011],[153.0616055400001,47.79355592500012],[153.06386339000014,47.78016088400007],[153.06636651600004,47.76116963700009],[153.06881879400024,47.74329649700017],[153.05977248000013,47.721842574000085],[153.0471117430001,47.70702349300008]]],[[[153.29363040500013,48.04218170800014],[153.27547273600004,48.03273889500015],[153.2517203000002,48.040147964000155],[153.23330094499997,48.0398089640001],[153.20093778400022,48.052645710000135],[153.18482506600012,48.06924062700007],[153.15906880900005,48.09218029900008],[153.1645557740001,48.12141547200003],[153.2147265240002,48.12572469800007],[153.24037801000017,48.113875093],[153.25922627500017,48.104137832],[153.28842207100004,48.077460028000175],[153.29078209700018,48.06500885600014],[153.29704837300014,48.05467357000005],[153.29363040500013,48.04218170800014]]],[[[154.0602319670002,48.74872467700011],[154.05640709700018,48.737779039000074],[154.03882897200006,48.733221747000115],[154.00855553500017,48.732814846],[153.9972436860002,48.73444245000003],[153.980723504,48.73948802300008],[153.97331790500002,48.73948802300008],[153.97608483200005,48.76243724200005],[153.9936629570001,48.77936432500003],[154.0659285820001,48.80784739800005],[154.07813561300017,48.816717841000084],[154.10035241000006,48.83881256700009],[154.10450280000023,48.851263739],[154.10035241000006,48.86359284100014],[154.10035241000006,48.87299225500006],[154.1173608730002,48.87665436400012],[154.11947675899998,48.89960358300002],[154.14698326900023,48.91498444200015],[154.18360436300023,48.92137278900016],[154.21290123800006,48.91766998900012],[154.230804884,48.897162177000084],[154.22136478000013,48.87287018400009],[154.19922936300023,48.85053131700006],[154.17872155000006,48.83567942900002],[154.0874129570001,48.79425690300009],[154.06267337300002,48.77423737200003],[154.05909264400006,48.762152411000116],[154.0602319670002,48.74872467700011]]],[[[154.00098717500012,48.93439362200014],[153.98357181100008,48.92938873900011],[153.96070397200006,48.92670319200012],[153.93913821700002,48.92706940300015],[153.92554772200018,48.93130117400007],[153.91871178500014,48.93130117400007],[153.9069116550002,48.943670966000106],[153.90211022200012,48.95648834800015],[153.90479576900003,48.96946849200005],[153.91504967500012,48.98248932500003],[153.92709394600004,48.98175690300009],[153.98698978000007,48.96539948100017],[154.00074303500017,48.95978424700008],[154.01205488400015,48.95294830900015],[154.01433353000002,48.94452545800011],[154.00098717500012,48.93439362200014]]],[[[154.53150475400003,49.08624909100002],[154.51172936300011,49.080226955000015],[154.48780358200017,49.088324286000116],[154.47234134200002,49.104437567],[154.4544376960001,49.14158763200011],[154.43946373800023,49.157171942],[154.44385826900023,49.16518789300015],[154.44947350400005,49.16974518400009],[154.45704186300006,49.171454169000086],[154.49195397200018,49.17031484600007],[154.53760826900023,49.15985748900009],[154.56299889400023,49.157171942],[154.58383222700004,49.14866771000008],[154.59961998800006,49.129950262000094],[154.60132897200018,49.11107005400008],[154.58008873800011,49.10260651200004],[154.55250084700018,49.09686920800006],[154.53150475400003,49.08624909100002]]],[[[154.8681746750002,49.63239166900003],[154.8834741550002,49.62482330900017],[154.9050399100001,49.630804755],[154.90186608200023,49.61225006700008],[154.88819420700008,49.577541408000016],[154.88502037900005,49.55849844000012],[154.8759871750001,49.54352448100009],[154.83204186300011,49.5170759140001],[154.8156030610002,49.49982330900009],[154.82300866000017,49.49359772300015],[154.80274498800006,49.478664455000015],[154.79712975400014,49.456976630000106],[154.80128014400012,49.43301015800007],[154.81006920700005,49.41107819200015],[154.814707879,49.40501536700005],[154.82740319100014,49.39337799700003],[154.82984459700012,49.38686758000013],[154.82813561300011,49.381048895],[154.82471764400006,49.37677643400017],[154.82309004000012,49.37246328300007],[154.8346460300002,49.35272858300014],[154.83187910200004,49.34373607000013],[154.8156030610002,49.329169012000094],[154.81364993600008,49.32217031500004],[154.8151147800002,49.315863348000065],[154.8151147800002,49.3102074240001],[154.80884850400017,49.30491771000011],[154.78435306100002,49.29458242400001],[154.77865644600016,49.29096100500014],[154.77035566500015,49.287095445000126],[154.75049889400017,49.28856028900019],[154.74105879000015,49.28754303600011],[154.73511803500006,49.283392645],[154.72193444100017,49.26984284100002],[154.71998131600006,49.267035223000065],[154.69947350400017,49.265366929000045],[154.67920983200017,49.26870351800009],[154.61255944100017,49.28937409100011],[154.60596764400012,49.292669989000146],[154.6030379570001,49.29775625200007],[154.60279381600006,49.303412177000055],[154.60596764400012,49.31513092700005],[154.60718834700006,49.32615794499999],[154.60385175900004,49.35927969000012],[154.60824628999998,49.37498607],[154.6274520190002,49.393215236000074],[154.6383569670002,49.424261786],[154.65381920700023,49.43732330900015],[154.68653405000018,49.458889065000065],[154.6967879570001,49.471380927],[154.70362389400012,49.483465887000094],[154.7137150400001,49.50665924700003],[154.723887566,49.519029039000074],[154.75440514400023,49.54852936400012],[154.76099694100006,49.55849844000012],[154.75879967500023,49.56663646000014],[154.7495223320001,49.57855866100009],[154.74732506600012,49.58551666900017],[154.75098717500023,49.59564850500011],[154.76002037900017,49.600287177000055],[154.77027428500017,49.60276927299999],[154.77865644600016,49.606594143],[154.82309004000012,49.645209052000055],[154.83668053499997,49.650051174000126],[154.85425866000006,49.64398834800012],[154.8681746750002,49.63239166900003]]],[[[154.4608475160002,49.74432009900009],[154.44792843399998,49.72951019800003],[154.41191697800016,49.733095574000124],[154.39124051100012,49.74918673400005],[154.378956,49.765348032000084],[154.3739044170002,49.77846724800004],[154.38089199100014,49.78936346300009],[154.39499155500002,49.80418583300012],[154.4223718110002,49.81601564000006],[154.44755767000007,49.81698425000009],[154.48006287400008,49.81103513900008],[154.4913379650002,49.7832523950001],[154.4725185020002,49.76221271300001],[154.4608475160002,49.74432009900009]]],[[[156.11947675900015,50.49799225500002],[156.11158287900017,50.49355703300013],[156.10474694100006,50.492865302],[156.09050540500007,50.49408600500011],[156.083669467,50.49355703300013],[156.06788170700008,50.49005768400003],[156.05689537900005,50.48627350500011],[156.04932701900006,50.47931549700003],[156.042735222,50.46625397300015],[156.039317254,50.45343659100003],[156.0397241550002,50.44391510600012],[156.04151451900012,50.434515692],[156.042735222,50.42218659100014],[156.0376082690001,50.409898179],[156.02556399800008,50.402044989000025],[156.01075280000012,50.3954938820001],[155.99756920700014,50.387396552],[155.98829186300011,50.37840403900016],[155.941254102,50.318019924000154],[155.89722741000017,50.27521393400015],[155.89185631600006,50.26422760600009],[155.88493899800014,50.253729559000035],[155.86850019600004,50.24860260600012],[155.83692467500023,50.24347565300009],[155.82154381600012,50.235052802000055],[155.81283613400004,50.226752020000056],[155.78199303500006,50.18964264500006],[155.77320397200018,50.18659088700015],[155.62281334700018,50.17938873900012],[155.56153405000018,50.16657135600009],[155.50147545700005,50.13727448100017],[155.48031660200016,50.11908600499999],[155.42286217500023,50.03546784100014],[155.4124455090001,50.01105377800009],[155.39576256600006,49.99579498900012],[155.36426842500012,50.000067450000024],[155.3789168630002,50.02301666900003],[155.38453209700003,50.03750234600006],[155.37671959700006,50.046861070000105],[155.35059655000003,50.054754950000174],[155.29460696700002,50.06452057500003],[155.26514733200017,50.06386953300007],[155.24146569100006,50.054754950000174],[155.227793816,50.054754950000174],[155.21656334700012,50.06708405200011],[155.2130639980002,50.081203518000066],[155.21509850400005,50.09589264500006],[155.2208764980002,50.10993073100012],[155.22934004000015,50.120428778000175],[155.24073326900012,50.13060130400011],[155.2507430350001,50.141587632],[155.2550561860002,50.15468984600015],[155.25228925900015,50.167059637000094],[155.24301191499998,50.19399648600015],[155.24488366000006,50.20246002800009],[155.249847852,50.21576569200012],[155.24000084700015,50.22662995000008],[155.1928817070001,50.253485419000086],[155.18734785200016,50.261542059000035],[155.18677819100012,50.27448151200004],[155.2019149100001,50.293524481000034],[155.23340905000012,50.30463288000006],[155.26783287900005,50.30670807500017],[155.32016035200004,50.28888580900009],[155.34669030000006,50.30219147300003],[155.38477623800006,50.34271881700015],[155.41016686300011,50.36017487200009],[155.44174238399998,50.370550848],[155.47657311300023,50.375555731000034],[155.54029381600017,50.375677802000105],[155.54916425900004,50.376898505000106],[155.55494225400008,50.38076406500012],[155.56446373800011,50.39362213700015],[155.57032311300023,50.3973656270001],[155.58814537899997,50.397894598000065],[155.61646569100006,50.38715241100006],[155.63184655000012,50.38369375200015],[155.65894616000006,50.388861395000056],[155.68962649800014,50.403713283000044],[155.71778405000012,50.42308177300004],[155.7671004570001,50.46841054900015],[155.77572675900004,50.47931549700003],[155.78003991,50.488959052],[155.78549238400015,50.51068756700006],[155.7895613940001,50.52024974200005],[155.81967207100004,50.564113674],[155.85425866000006,50.600043036],[155.86207116,50.61456940300003],[155.8707788420002,50.659735419000164],[155.87818444100017,50.67853424700003],[155.88949629000015,50.690863348000065],[155.97779381600006,50.74738190300009],[156.0092879570002,50.75633372600011],[156.04118899800008,50.77277252800011],[156.07325280000023,50.781561591000084],[156.10474694100006,50.76727936400009],[156.11719811300006,50.749090887000094],[156.12322024800008,50.728176174000126],[156.125254754,50.68195221600002],[156.12370853000007,50.67055898600007],[156.12094160200004,50.66071198100014],[156.12037194100006,50.65033600500005],[156.125254754,50.637518622000115],[156.13607832100004,50.62445709800012],[156.15552819099997,50.608872789000046],[156.15943444100012,50.59662506700009],[156.15748131600006,50.58856842700014],[156.14795983200017,50.563950914000046],[156.14576256600017,50.551581122000115],[156.15259850400017,50.53034088700012],[156.1525171230002,50.519029039000046],[156.13493899800008,50.511216539000046],[156.11947675900015,50.49799225500002]]],[[[156.4057723320001,50.65420156500014],[156.4057723320001,50.630113023000135],[156.38526451900023,50.630113023000135],[156.35401451900006,50.636297919000086],[156.3210555350001,50.637518622000115],[156.303850473,50.63563966700018],[156.27244270300017,50.633406049000094],[156.2582277070002,50.650964567000116],[156.23707116000006,50.66128164300004],[156.20606530000012,50.6712914080001],[156.18002363400015,50.68842194200011],[156.16627037900003,50.71332428600009],[156.16846764400012,50.73663971600017],[156.18067467500003,50.761175848],[156.19939212300008,50.78050364800013],[156.22103925900015,50.78839752800009],[156.25440514400012,50.79319896],[156.28077233200023,50.80597565300003],[156.33130944100006,50.84365469],[156.35743248800003,50.856187242000104],[156.39551842500015,50.86847565300015],[156.43376712300017,50.87592194200015],[156.46045983200023,50.873724677000055],[156.4835718110002,50.856919664000046],[156.49187259200008,50.838080145],[156.49768182600022,50.813362736],[156.49987510300016,50.79671095000005],[156.50206344200004,50.78088733300016],[156.51099024299998,50.76584855100002],[156.5000119470001,50.74932711600009],[156.48240859900014,50.73203740900014],[156.46885966600016,50.71886611100005],[156.45663254000007,50.70236339400019],[156.4322375300002,50.671848817000026],[156.4057723320001,50.65420156500014]]],[[[155.66994119900016,50.811953876000146],[155.6453744930002,50.806855960000135],[155.5997827480002,50.809271552000084],[155.56348717500012,50.80825429900001],[155.52328535200004,50.813421942],[155.49219811300011,50.82843659100003],[155.46762129000004,50.85248444200006],[155.44678795700023,50.884588934000035],[155.4741317070001,50.92182038000011],[155.54379066400023,50.92981981800013],[155.6312646,50.91228352200009],[155.67286217500012,50.87030670800014],[155.66994119900016,50.811953876000146]]],[[[142.58806399800002,54.30390045800011],[142.54070071700016,54.29779694200015],[142.54965254000004,54.3022321640001],[142.56763756600017,54.30975983300008],[142.58716881600006,54.313299872000144],[142.60417728000013,54.31020742400007],[142.58806399800002,54.30390045800011]]],[[[142.84278405000006,54.280707098],[142.89584394600004,54.24559153900013],[142.95785566500012,54.17023346600014],[143.00391686300011,54.135484117000104],[143.012950066,54.119086005],[143.00879967500003,54.09105052299999],[142.99984785200004,54.067572333000115],[142.98845462300008,54.047186591000056],[142.97339928500017,54.02814362200014],[142.93751061300006,53.990912177000055],[142.9270939460001,53.975327867000075],[142.90593509200008,53.91185130400005],[142.90040123800017,53.901597398000135],[142.89226321700002,53.89248281500012],[142.88851972699996,53.892971096000124],[142.88160241,53.894842841000084],[142.87330162900003,53.89557526200012],[142.86548912900005,53.89248281500012],[142.86133873800011,53.88812897300015],[142.85743248800011,53.88300202000012],[142.85181725399997,53.8719750020001],[142.8966577480001,53.87661367400001],[142.91651451900023,53.87409088700009],[142.93376712300002,53.857652085],[142.93555748800011,53.84918854400014],[142.94044030000006,53.82355377800009],[142.94792728000007,53.80988190300015],[142.97535241,53.755275783000094],[142.99626712300008,53.716782945000105],[143.0021264980002,53.700628973000114],[142.95655358200005,53.78131745000014],[142.9267684250002,53.829779364000146],[142.8981225920002,53.823228257000075],[142.89014733200023,53.8131371110001],[142.90056399800014,53.79043203300016],[142.90650475400005,53.766791083000115],[142.91334069100017,53.762111721],[142.93970787900017,53.74974192900007],[142.96436608200017,53.699530341000084],[142.98845462300008,53.694484768000066],[142.96778405000018,53.666489976000136],[143.00391686300011,53.666164455],[143.01791425900015,53.66034577000006],[143.02930748800023,53.64606354400017],[143.02051842500023,53.642645575000145],[143.01172936300011,53.63788483300006],[143.0034285820001,53.63214752800008],[142.99586022200018,53.62555573100012],[143.01490319100003,53.61774323100011],[143.05274498800011,53.60724518400015],[143.07081139400012,53.59821198100003],[143.05827884200014,53.58978913],[143.04468834700018,53.585109768000066],[143.03044681100008,53.585109768000066],[143.01636803499997,53.59076569200006],[143.01254316500004,53.58218008000016],[143.00652103000016,53.57575104400005],[142.99830162899997,53.57172272300006],[142.98845462300008,53.5702985700001],[142.98845462300008,53.56289297100001],[143.0031030610002,53.55768463700012],[143.0302840500001,53.53998444200012],[143.042735222,53.53620026200009],[143.05689537900005,53.538763739],[143.09066816500004,53.55975983300014],[143.09913170700005,53.553859768],[143.11085045700017,53.53709544499999],[143.12110436300006,53.51805247599999],[143.12549889400017,53.505438544000114],[143.12745201900012,53.495794989000146],[143.13086998800011,53.48688385600009],[143.13160241000006,53.47785065300008],[143.12549889400017,53.467922268000095],[143.11426842500018,53.46674225500006],[143.098887566,53.47211334800012],[143.08318118600008,53.47357819200009],[143.07081139400012,53.461086330000064],[143.0699975920002,53.448553778000175],[143.0778100920002,53.44261302300004],[143.0887150400001,53.43903229400017],[143.09766686300011,53.433742580000015],[143.1038517590001,53.42796458500014],[143.10816491000017,53.42511627800009],[143.110606316,53.41974518400003],[143.11133873800023,53.40643952000012],[143.1072697270001,53.39984772300015],[143.09913170700005,53.39411041900017],[143.09278405000023,53.38841380399999],[143.09408613400004,53.381903387000094],[143.10084069100017,53.37836334800012],[143.10938561300011,53.377752997000144],[143.11793053499997,53.37913646000014],[143.15577233200017,53.395168361000124],[143.16920006600006,53.39809804900015],[143.18287194100017,53.39899323100006],[143.19662519599999,53.38812897300006],[143.21062259200008,53.36322663000011],[143.24683678500017,53.25665924700009],[143.25440514400023,53.21552155200003],[143.28012128999998,53.17291901200014],[143.29004967500006,53.15192291900003],[143.29224694100017,53.08368561400012],[143.30014082100016,53.06696198100017],[143.31226647200006,53.049139716000106],[143.31657962300002,53.027899481000034],[143.31788170700023,52.98187897300006],[143.32699629000004,52.936346747000115],[143.33594811300017,52.913519598],[143.3479923840001,52.89594147300006],[143.36052493600008,52.87140534100014],[143.35287519600016,52.849554755],[143.32488040500002,52.809312242000104],[143.33326256600017,52.784735419000086],[143.3370874360002,52.759426174000154],[143.33790123800011,52.70380280200011],[143.32683353000007,52.62250397300015],[143.33106530000006,52.60390859600015],[143.32471764400017,52.58771393400009],[143.30469811300011,52.471380927000105],[143.29688561300011,52.45368073100012],[143.27605228,52.42039622600011],[143.25196373800011,52.38963450700014],[143.22445722700016,52.36176178600009],[143.19369550899998,52.336981512000115],[143.20582116000017,52.38214752800015],[143.20736738400004,52.395331122000115],[143.20427493600002,52.40631745000017],[143.19898522200006,52.415676174],[143.19776451900023,52.425848700000145],[143.20736738400004,52.43939850500011],[143.2238875660001,52.44794342700013],[143.24024498800011,52.44839101800012],[143.25489342500012,52.44700755400005],[143.26587975400017,52.45026276200009],[143.27230878999998,52.46332428600008],[143.26295006600003,52.471625067000055],[143.2353621750002,52.4809431010001],[143.24447675900004,52.48875560099999],[143.28646894600004,52.56533437700007],[143.29004967500006,52.57721588700012],[143.29175866000017,52.58641185099999],[143.29346764400012,52.591864325000024],[143.29021243600005,52.59503815300009],[143.27637780000023,52.597723700000174],[143.26832116,52.59837474200013],[143.2614038420002,52.59760163000003],[143.2550561860002,52.59520091400007],[143.24903405000006,52.59080638200008],[143.2503361340001,52.58787669500005],[143.24903405000006,52.562933661000116],[143.24634850399997,52.55980052300005],[143.241953972,52.55817291900003],[143.23755944100006,52.557359117000104],[143.2353621750002,52.556708075000174],[143.2353621750002,52.552150783000044],[143.23796634200002,52.54808177300008],[143.24057050900004,52.544745184000035],[143.241547071,52.542425848000065],[143.22950280000012,52.51947663],[143.19369550899998,52.47386302300005],[143.1788843110002,52.446844794000086],[143.1655379570001,52.403794664000074],[143.15967858200017,52.39166901200015],[143.12696373800023,52.358832098000065],[143.11866295700023,52.33779531500012],[143.12940514400017,52.32664622600011],[143.1464949880001,52.32786692900014],[143.15967858200017,52.344427802],[143.16651451900006,52.344427802],[143.16822350400017,52.33295319200014],[143.17750084700006,52.31378815300009],[143.17603600400017,52.30658600500006],[143.16928144600004,52.29462311400012],[143.16960696700008,52.28465403900013],[143.1725366550002,52.27606842700011],[143.1733504570001,52.26813385600015],[143.15577233200017,52.20368073100015],[143.15137780000006,52.12006256700012],[143.14779707099999,52.119574286000116],[143.12533613400004,52.1461449240001],[143.11557050900015,52.153021552],[143.11133873800023,52.14862702],[143.11052493600002,52.13572825699999],[143.10816491000017,52.124457098],[143.10401451900023,52.11420319200008],[143.09766686300011,52.10423411699999],[143.1391707690001,52.08991120000009],[143.13347415500002,52.07982005400014],[143.1337996750002,52.06850820500016],[143.1391707690001,52.049017645000056],[143.13892662900014,52.037502346000124],[143.136973504,52.03034088700018],[143.13851972700016,52.023138739000146],[143.14918053500017,52.01141998900006],[143.15935306100002,51.995672919000114],[143.15992272200012,51.97907135600015],[143.1490991550002,51.967596747000115],[143.12549889400017,51.96702708500014],[143.13111412900017,51.95571523600015],[143.14210045700023,51.924953518000066],[143.14918053500017,51.91864655200014],[143.16480553500017,51.913641669000086],[143.16480553500017,51.90167877800015],[143.16049238400015,51.886948960000076],[143.16309655000015,51.87396881700006],[143.1748153000002,51.86660390800007],[143.19459069100014,51.85846588700015],[143.2130639980002,51.85480377800011],[143.22120201900012,51.86058177300008],[143.22429446700016,51.87445709800006],[143.23145592500023,51.88703034100014],[143.23845462300014,51.891546942],[143.2550561860002,51.837103583],[143.31039472700016,51.75433991100006],[143.31788170700023,51.70636627800015],[143.29656009200008,51.713080145],[143.27621503999998,51.70050690300012],[143.26107832099999,51.67820872600008],[143.25220787900005,51.641546942000055],[143.238536004,51.62246328300007],[143.2353621750002,51.61391836100015],[143.23666425900015,51.60219961100016],[143.24146569100006,51.581244208000115],[143.241547071,51.5692406270001],[143.23780358200005,51.55829498900012],[143.22413170700023,51.537787177000084],[143.22120201900012,51.531642971000096],[143.22413170700023,51.522162177],[143.23170006600017,51.512640692],[143.24170983200005,51.50763580900015],[143.27320397200015,51.520738023000106],[143.2960718110002,51.51666901200015],[143.31836998800023,51.50922272300009],[143.33790123800011,51.508368231000176],[143.34717858200005,51.52338288000003],[143.344004754,51.54865143400015],[143.33521569100006,51.57233307500017],[143.327891472,51.582831122000144],[143.32520592500023,51.59284088700004],[143.332286004,51.614488023000106],[143.34652754000004,51.63593170800006],[143.36508222700004,51.64496491100006],[143.37322024800002,51.63654205900012],[143.37964928500006,51.617621161],[143.3855900400001,51.57977936400006],[143.39421634200005,51.56464264500006],[143.44776451900006,51.508368231000176],[143.46176191500015,51.469549872000144],[143.47494550899998,51.34324778900019],[143.44239342500012,51.36725495000003],[143.42709394600016,51.370550848000065],[143.41675866000017,51.368068752000156],[143.37940514400012,51.35008372600011],[143.38795006600006,51.34345123900014],[143.40349368600002,51.336004950000174],[143.413422071,51.32965729400006],[143.4344181650001,51.32103099200013],[143.43392988399998,51.316961981000176],[143.43279056100008,51.31240469000012],[143.43392988399998,51.30914948100017],[143.44581139400023,51.304185289000124],[143.45639082099999,51.30097077000009],[143.46607506600006,51.296861070000126],[143.47494550899998,51.289252020000085],[143.47787519600004,51.28143952],[143.47820071700002,51.26341380400008],[143.48308353000013,51.25454336100002],[143.4793400400001,51.25079987200009],[143.47754967500006,51.24799225500014],[143.47494550899998,51.240871486000074],[143.48080488400015,51.23940664300012],[143.48959394599999,51.235012111000124],[143.49545332100016,51.23338450700011],[143.49097741000014,51.22833893400017],[143.48308353000013,51.21356842700003],[143.51710045700023,51.2201195330001],[143.52125084700015,51.24677155200011],[143.50928795700023,51.28066640800007],[143.49545332100016,51.30914948100017],[143.52165774800008,51.28510163000006],[143.53793379000004,51.239732164000046],[143.58668053500006,51.01072825700005],[143.67896569100017,50.736517645],[143.70150800900015,50.60537344000015],[143.790293816,50.309230861000074],[143.81006920700023,50.27265045800006],[143.91098066499995,50.150864976000136],[144.00269616000017,50.012844143000066],[144.04420006600006,49.89765045800014],[144.07984459699998,49.837307033000016],[144.09066816499998,49.80451080900009],[144.11744225399997,49.767808335],[144.1261499360002,49.74689362200002],[144.13233483200014,49.66087474200013],[144.13721764400023,49.639593817000055],[144.1494246750001,49.62238190300003],[144.16504967500006,49.60651276200012],[144.22217858200005,49.532619533000016],[144.22852623800011,49.517157294000086],[144.21973717500023,49.461859442],[144.22169030000006,49.438381252000035],[144.28272545700017,49.25018952000006],[144.38502037900017,49.07269928600006],[144.410411004,49.03925202],[144.44141686300023,49.01386139500006],[144.66684004000015,48.88963450700011],[144.68474368600013,48.873236395],[144.6909285820001,48.86408112200003],[144.69320722700016,48.85541413000014],[144.69459069100006,48.83567942900002],[144.69752037900017,48.82558828300013],[144.706797722,48.80304596600014],[144.70826256600014,48.794134833000115],[144.70411217500023,48.78196849200013],[144.69068444100003,48.76801178600006],[144.68783613400004,48.75653717700011],[144.69459069100006,48.715562242000104],[144.702891472,48.688666083000115],[144.72201582099999,48.67206452000006],[144.74293053500006,48.65912506700006],[144.75660241000017,48.64325592700014],[144.7314559250001,48.63792552300008],[144.69947350399997,48.64272695500016],[144.67725670700023,48.65643952000009],[144.68165123800023,48.678045966000084],[144.66334069100017,48.70066966400004],[144.65756269600004,48.72386302299999],[144.6551212900001,48.74982330900014],[144.6474715500002,48.780462958000086],[144.63257897200018,48.808294989000146],[144.503672722,48.94871653900004],[144.47901451900023,48.959214585000105],[144.470469597,48.96474844000012],[144.4454858730002,48.99115631700012],[144.43384850400017,49.00018952000012],[144.41700280000006,49.00604889500006],[144.3818465500001,49.013902085000055],[144.36573326900023,49.020697333],[144.32781009200014,49.05475495000008],[144.31568444100006,49.05683014500012],[144.30258222700016,49.0621605490001],[144.290293816,49.06964752800015],[144.28003991000017,49.07843659100003],[144.27295983200008,49.088568427000084],[144.26303144600004,49.11237213700015],[144.25586998800006,49.123032945000105],[144.24594160200016,49.1317406270001],[144.1010848320001,49.231268622000144],[144.05787194100017,49.25340403900013],[144.0060327480002,49.269354559000035],[143.70215905000012,49.30609772300012],[143.6897078790001,49.312404690000065],[143.68726647200006,49.32233307500017],[143.72828209700018,49.335353908000066],[143.49903405000012,49.34918854400014],[143.47974694100017,49.353094794000135],[143.46265709700006,49.36273834800012],[143.44434655000003,49.380072333000115],[143.42628014400023,49.393215236000074],[143.40349368600002,49.40045807500009],[143.302012566,49.40517812700001],[143.27670332100016,49.40216705900009],[143.25863691500015,49.39337799700003],[143.24976647199998,49.373277085],[143.26392662900005,49.36017487200003],[143.31039472700016,49.34275950700005],[143.31910241000017,49.340969143000066],[143.32569420700023,49.34218984600009],[143.32960045700023,49.34113190300003],[143.33106530000006,49.33222077],[143.32829837300002,49.32904694200012],[143.32276451900012,49.326971747000115],[143.31910241000017,49.324123440000065],[143.3212996750002,49.31858958500005],[143.33130944100006,49.31391022300012],[143.34302819099997,49.31582265800007],[143.35515384200014,49.32001373900012],[143.36605878999998,49.32233307500017],[143.61939537900017,49.32404205900018],[143.66675866,49.314886786],[143.63917076900003,49.30560944200015],[143.37110436300023,49.299221096000124],[143.17416425900004,49.24599844000015],[143.14535566500015,49.23289622599999],[143.07032311300023,49.18488190300009],[143.03785241000003,49.15656159100014],[143.00879967500003,49.123032945000105],[142.98454837300008,49.08295319200009],[142.97461998800006,49.04588450700005],[142.97657311300023,49.00653717700005],[142.98845462300008,48.959214585000105],[142.98845462300008,48.91669342700005],[142.96924889400012,48.878485419000086],[142.9200952480002,48.80780670800005],[142.88656660200016,48.73655833500014],[142.79273522200018,48.56256745000012],[142.72315514400003,48.408636786000116],[142.65853925900004,48.26959870000012],[142.61402428500006,48.19017161699999],[142.54957116000006,48.02008698100015],[142.54566491000006,48.01398346600014],[142.54127037900014,48.01219310099999],[142.53744550900015,48.01007721600017],[142.535899285,48.00238678600014],[142.53809655000012,47.999212958000086],[142.54273522200006,47.99738190300009],[142.54737389400023,47.99457428600006],[142.54957116000006,47.98871491100003],[142.54957116000006,47.947821356000176],[142.53882897200006,47.92080312700013],[142.535899285,47.910223700000174],[142.53451582100004,47.88996002800015],[142.54525800900012,47.76666901200009],[142.59213300899995,47.64207591400013],[142.63209069100006,47.58124420800003],[142.74805748800011,47.444769598],[142.73975670700023,47.445542710000105],[142.7140405610002,47.444769598],[142.7140405610002,47.43724192900013],[142.72299238400004,47.43060944200006],[142.735118035,47.42365143400018],[142.75953209700003,47.43121979400003],[142.78711998800006,47.42820872600011],[142.8143009770001,47.41950104400006],[142.8785913420002,47.38934967700011],[142.91089928500006,47.365220445000105],[143.01636803499997,47.25360748900012],[143.02320397200003,47.23525625200007],[143.02564537900017,47.21165599200005],[143.04297936300017,47.14923737200009],[143.04151451900012,47.128119208000086],[143.03126061300006,47.08319733300006],[143.03248131600014,47.07074616100006],[143.06950931100002,47.019476630000106],[143.10206139400006,46.94757721600014],[143.10515384200008,46.92706940300009],[143.11085045700017,46.90643952000006],[143.11996504000015,46.88711172100015],[143.11963951900012,46.87490469000006],[143.09766686300011,46.87555573100003],[143.10645592500006,46.86587148600016],[143.12281334700018,46.85736725500011],[143.13843834700018,46.85541413],[143.15137780000006,46.87384674700003],[143.16382897200018,46.872259833],[143.17408287900005,46.86273834800009],[143.1733504570001,46.84829336100013],[143.15121504000004,46.83958567900005],[143.11793053499997,46.84186432500003],[143.09001712300008,46.83856842699999],[143.083832227,46.813462632],[143.09148196700002,46.80341217700011],[143.10613040500007,46.792425848000065],[143.1224064460001,46.783636786],[143.13550866000006,46.77997467700014],[143.1374617850001,46.77350495000003],[143.15967858200017,46.73899974200013],[143.16651451900006,46.71662018400009],[143.17286217500012,46.70783112200003],[143.1862899100001,46.70429108300006],[143.20281009200008,46.70636627800017],[143.22689863399998,46.715521552000055],[143.241547071,46.71727122600005],[143.25473066500015,46.715033270000056],[143.28199303500006,46.706244208],[143.29688561300011,46.70429108300006],[143.3086043630001,46.701076565],[143.33106530000006,46.686957098000065],[143.34131920700008,46.68378327],[143.36500084700006,46.686753648000106],[143.3820093110002,46.69505442899999],[143.38965905000023,46.70807526200018],[143.3855900400001,46.724758205000015],[143.37134850400017,46.73843008000016],[143.34896894600016,46.74921295800006],[143.3237410820001,46.756293036000116],[143.286794467,46.76170482000008],[143.25611412900005,46.77545807500008],[143.241547071,46.77997467700014],[143.22982832100004,46.78021881700009],[143.20492597700007,46.778143622000144],[143.19369550899998,46.77997467700014],[143.17953535200016,46.79303620000003],[143.17302493600008,46.81354401200014],[143.17774498800006,46.832464911],[143.19711347699996,46.84080638200005],[143.22022545700023,46.83563873900006],[143.29688561300011,46.800482489],[143.32097415500002,46.79572174700008],[143.39649498800023,46.79364655200008],[143.418711785,46.79970937700007],[143.42807050900015,46.81427643400009],[143.43628991000006,46.83226146000013],[143.4546004570001,46.84829336100013],[143.47820071700002,46.82843659100002],[143.4978947270001,46.80072663000014],[143.51148522200006,46.770209052],[143.51661217500023,46.74213288],[143.51612389400017,46.67975495000003],[143.52084394600016,46.64940013200005],[143.53695722700004,46.617132880000106],[143.53589928500017,46.607326565],[143.5319930350001,46.597967841000134],[143.52670332100004,46.590969143000095],[143.52588951900012,46.585516669000135],[143.52930748800011,46.57855866100006],[143.53695722700004,46.566473700000145],[143.55079186300023,46.50629303600009],[143.57650800899998,46.447495835],[143.579925977,46.418198960000055],[143.55762780000023,46.396429755],[143.57398522200018,46.389471747000115],[143.60962975400005,46.38422272300012],[143.6257430350001,46.37470123900012],[143.59148196700002,46.35342031500006],[143.58179772200018,46.34454987200011],[143.5773218110002,46.33502838700012],[143.57447350400017,46.310126044000164],[143.57056725400017,46.29954661700013],[143.56348717500012,46.29498932500017],[143.55209394600004,46.290187893000095],[143.54167728000007,46.28400299700003],[143.53695722700004,46.27570221600014],[143.53541100399997,46.26609935100008],[143.523285352,46.238104559000035],[143.5104272800002,46.22256094000012],[143.47584069100017,46.190008856000176],[143.46876061300023,46.17328522300015],[143.47852623800006,46.107326565],[143.47494550899998,46.08730703300013],[143.46802819100012,46.080389716000134],[143.45883222700004,46.076605536000116],[143.45118248800011,46.07050202000012],[143.44629967500012,46.047105210000055],[143.44271894600016,46.0368513040001],[143.437266472,46.02863190300003],[143.4305119150001,46.02521393400012],[143.42090905000012,46.03571198100017],[143.41529381600012,46.05955638200005],[143.41309655000012,46.0853539080001],[143.413422071,46.10154857000005],[143.42497806100008,46.11640045800003],[143.42896569100006,46.12742747600005],[143.41920006600012,46.148260809000035],[143.42090905000012,46.15912506700011],[143.42497806100008,46.170233466000134],[143.42709394600016,46.18008047100007],[143.425547722,46.20404694200012],[143.4213973320001,46.22313060100011],[143.38266035200016,46.31671784100014],[143.37940514400012,46.33738841400016],[143.33790123800011,46.40940989800002],[143.350840691,46.43268463700012],[143.34685306100002,46.45270416900008],[143.3366805350001,46.47077057500009],[143.33106530000006,46.48822663000006],[143.33570397199998,46.497463283000016],[143.347422722,46.49603913000006],[143.36133873800006,46.49168528900007],[143.37322024800002,46.49201080900018],[143.37989342500006,46.499457098000065],[143.39307701900023,46.5329450540001],[143.3686629570001,46.55548737200009],[143.34278405000006,46.562811591000084],[143.27637780000023,46.560248114],[143.31039472700016,46.52545807500006],[143.30323326900023,46.514390367000104],[143.290782097,46.517157294000135],[143.25863691500015,46.54222239800008],[143.2353621750002,46.566473700000145],[143.22242272200006,46.57355377800011],[143.19507897200003,46.58344147300012],[143.18287194100017,46.590969143000095],[143.15951582099996,46.598293361000074],[143.06714928500017,46.58759186400006],[142.997731967,46.59414297100015],[142.96387780000018,46.602606512000094],[142.93376712300002,46.614894924000126],[142.9057723320001,46.60529205900015],[142.82781009200008,46.592962958000115],[142.79664147200018,46.5943871110001],[142.77222741,46.609767971000124],[142.75489342500023,46.63825104400006],[142.735118035,46.69741445500013],[142.73031660200004,46.72939687700012],[142.72461998800023,46.74079010600011],[142.71094811300011,46.745184637000094],[142.70045006600006,46.74209219],[142.6909285820002,46.72793203300007],[142.6836043630002,46.724758205000015],[142.652598504,46.724758205000015],[142.618418816,46.71857330900014],[142.52906334700015,46.68378327],[142.45720462300014,46.63080475500006],[142.40650475400017,46.55365631700012],[142.32422936300011,46.38898346600003],[142.2819116550002,46.32746002800014],[142.27572675900004,46.30951569200012],[142.27418053500017,46.30011627800009],[142.26221764400023,46.26605866100008],[142.24903405000012,46.19204336100001],[142.2485457690001,46.18008047100007],[142.24634850400005,46.168361721000096],[142.23707116000017,46.14899323100014],[142.23487389400006,46.138820705000015],[142.22803795700017,46.11798737200005],[142.21436608200023,46.09861888200011],[142.20386803500006,46.079657294000114],[142.20687910200016,46.060003973000065],[142.20297285200016,46.051947333000115],[142.20167076900017,46.03066640800013],[142.19695071700008,46.02179596600011],[142.18946373800006,46.01878489800002],[142.13306725400005,46.00617096600003],[142.11996504000015,45.99217357000005],[142.11133873800006,45.95075104400014],[142.09424889400012,45.90277741100014],[142.08529707099999,45.900824286],[142.07325280000006,45.909857489],[142.05323326900012,45.915961005],[142.039805535,45.92430247600008],[142.0014754570001,45.978013414000046],[141.94206790500002,46.024359442],[141.93262780000012,46.03579336100016],[141.93604576900023,46.09955475500003],[141.8990991550002,46.27912018400015],[141.88477623800011,46.31875234600007],[141.83757571700014,46.41559479400017],[141.82740319100017,46.45034414300012],[141.814219597,46.53839752800015],[141.81714928500006,46.580755927000055],[141.82227623800017,46.602280992000075],[141.82667076900023,46.60993073100009],[141.84009850400005,46.6263695330001],[141.84864342500023,46.64476146000014],[141.86589603000007,46.670477606000176],[141.88542728000004,46.73159414300012],[142.05665123800011,47.053697007],[142.0597436860002,47.08063385600015],[142.06381269600016,47.109320380000106],[142.06283613399998,47.13922760600009],[142.05665123800011,47.169745184000035],[142.04428144599999,47.20453522300009],[142.028575066,47.232489325000024],[141.98438561300023,47.283026434000035],[141.9751082690001,47.29759349200005],[141.97608483200005,47.310736395],[141.98780358200017,47.34174225500014],[141.99073326900006,47.35716380400008],[141.99122155000018,47.369574286],[141.98715254000004,47.380804755],[141.9775496750001,47.39288971600008],[141.96371504000004,47.415676174000126],[141.9552514980002,47.44696686400008],[141.95167076900012,47.481146552000084],[141.96045983200005,47.59178294500008],[141.96583092500023,47.61249420800008],[142.0014754570001,47.66380442900002],[142.00367272200018,47.675482489],[142.00375410200016,47.68671295799999],[142.0053817070001,47.69741445500004],[142.01172936300011,47.70758698100015],[142.02613366000017,47.723049221000096],[142.0333764980002,47.733099677000055],[142.03614342500018,47.74266185100005],[142.039805535,47.749904690000065],[142.06283613399998,47.779933986000046],[142.093028191,47.855617580000015],[142.10572350400017,47.87482330900015],[142.137950066,47.891058661000024],[142.17741946700008,47.930405992000104],[142.18702233200023,47.94440338700015],[142.1910913420002,47.966742255],[142.17237389400023,48.09833405200013],[142.16586347700016,48.11570872600011],[142.17400149800008,48.15131256700009],[142.13868248800023,48.318060614],[142.13314863400004,48.33368561400009],[142.0970158210001,48.39687734600015],[141.919606967,48.60911692900013],[141.87305748800011,48.68854401200015],[141.85670006600012,48.73533763200011],[141.85743248800023,48.77423737200003],[141.92302493600008,48.83567942900002],[141.93116295700005,48.839300848000065],[141.96013431100008,48.856594143000066],[141.96729576900012,48.86237213700004],[141.96876061300017,48.873358466000084],[141.96583092500023,48.885199286000145],[141.96176191499995,48.89606354400003],[141.96045983200005,48.903998114],[141.96558678500008,48.915228583],[141.97364342500023,48.92283763200013],[141.99154707099999,48.93439362200014],[141.99642988400015,48.942938544000086],[142.00025475400017,48.96649811400012],[142.00879967500012,48.98407623900006],[142.01514733200023,49.020697333],[142.02442467500006,49.041734117000104],[142.03614342500018,49.061672268],[142.02393639400012,49.099310614],[142.03736412900017,49.1342634140001],[142.06039472700016,49.16705963700012],[142.07715905000006,49.198187567],[142.07992597700002,49.215969143],[142.0786238940002,49.232001044000086],[142.06283613399998,49.314886786],[142.08765709700006,49.37702057500003],[142.09620201900006,49.410834052],[142.11963951900023,49.44765859600007],[142.12501061300011,49.46230703300007],[142.12818444100017,49.50039297100007],[142.1422632170002,49.568060614000025],[142.14771569100006,49.62303294499999],[142.15748131600017,49.65961334800012],[142.15967858200005,49.67796458500008],[142.15235436300006,49.73383209800014],[142.15447024800008,49.79026927299999],[142.15186608200008,49.825506903000026],[142.14242597700016,49.860785223000065],[142.12501061300011,49.89765045800014],[142.13184655000012,49.89765045800014],[142.1344507170001,49.90444570500007],[142.14356530000012,49.915472723],[142.14551842500023,49.921576239],[142.14437910200004,49.92747630400014],[142.1396590500001,49.93683502800014],[142.13868248800023,49.94179922100004],[142.141856316,49.95368073100015],[142.156504754,49.968817450000145],[142.15967858200005,49.97650788],[142.15748131600017,50.014390367000104],[142.15886478000004,50.02838776200018],[142.16586347700016,50.04852936400012],[142.17383873800011,50.08641185100005],[142.15552819100006,50.239650783000094],[142.13526451900023,50.291205145000056],[142.14673912900014,50.30878327],[142.15088951900012,50.32721588700004],[142.1500757170002,50.34568919500005],[142.14551842500023,50.36383698100015],[142.13900800900015,50.37929922100006],[142.11736087300008,50.41762929900001],[142.09929446700008,50.433742580000064],[142.04517662900014,50.528265692],[142.04135175900015,50.55097077000015],[142.05323326900012,50.57233307500009],[142.05713951900012,50.58148834800009],[142.05787194100006,50.59467194200012],[142.05665123800011,50.61709219000015],[142.06283613399998,50.65802643400015],[142.09278405000023,50.71409739799999],[142.10450280000023,50.78095123900011],[142.10271243600008,50.78961823100012],[142.09880618600008,50.799505927000105],[142.09595787900005,50.81037018400012],[142.0970158210001,50.821926174000126],[142.10271243600008,50.83051178600006],[142.122813347,50.85224030200011],[142.1284285820001,50.85663483300003],[142.12916100400003,50.86127350500014],[142.12525475400005,50.88450755400005],[142.1284285820001,50.89451732000005],[142.2006942070001,50.959662177000055],[142.2255965500001,50.991278387000065],[142.24984785200004,51.030829169000086],[142.26685631600017,51.07428620000003],[142.269216342,51.11241282800002],[142.26636803500017,51.13564687700013],[142.25513756600017,51.159125067],[142.1730249360002,51.25849030200011],[142.16586347700016,51.27838776200009],[142.16822350399997,51.285589911000145],[142.17798912900005,51.297512111000074],[142.18018639400023,51.30573151200018],[142.17855879000004,51.31415436400012],[142.174978061,51.31757233300014],[142.17025800900004,51.31928131700014],[142.16586347700016,51.32282135600012],[142.15886478000004,51.33197663],[142.11459394600004,51.372626044000086],[142.07715905000006,51.41901276200015],[142.09782962300017,51.44330475500014],[142.07894941500015,51.47138092700014],[141.94271894599999,51.559271552],[141.93262780000012,51.57025788000006],[141.93327884200008,51.574652411000145],[141.93775475400005,51.57904694200012],[141.93995201900023,51.59780508000007],[141.94174238400004,51.60521067900008],[141.93921959700012,51.611883856000034],[141.92628014400012,51.617010809000035],[141.88795006600017,51.61082591400016],[141.86670983200005,51.61245351800009],[141.85206139400003,51.63654205900012],[141.81714928500006,51.67226797100015],[141.70346113400015,51.72402578300007],[141.686778191,51.74730052299999],[141.75171959700018,51.728949286000116],[141.78711998800011,51.724839585],[141.79802493600008,51.721502997000144],[141.80811608200023,51.720851955],[141.81714928500006,51.72687409100011],[141.822520379,51.73615143400015],[141.8230086600001,51.74420807500009],[141.81885826900023,51.75043366100006],[141.80974368600008,51.754787502000156],[141.80958092500012,51.80621979400014],[141.76099694100006,51.83588288],[141.69410241000006,51.85748932500009],[141.6390080090001,51.88450755400014],[141.675547722,51.91242096600017],[141.67611738399998,51.952622789000074],[141.65211022200006,52.03192780200011],[141.649668816,52.052313544000086],[141.64584394599996,52.06867096600011],[141.64503014400006,52.08478424700009],[141.65211022200006,52.10423411699999],[141.6578882170002,52.11115143400018],[141.6769311860002,52.127671617000075],[141.68311608200005,52.13092682500012],[141.6877547540001,52.135402736000074],[141.6998804050002,52.16571686400006],[141.65894616000017,52.21662018400017],[141.67188561300006,52.259833075000174],[141.67310631600017,52.27558014500011],[141.66456139400017,52.292181708],[141.6508895190001,52.30536530200014],[141.641856316,52.31818268400015],[141.65211022200006,52.34048086100002],[141.65284264400006,52.349595445000105],[141.65211022200006,52.36774323100009],[141.65479576900012,52.375555731000084],[141.66098066499998,52.3824730490001],[141.75749759200008,52.44501373900011],[141.78296959700003,52.46735260600015],[141.79175866000006,52.48257070500012],[141.8048608730002,52.51943594],[141.81332441500004,52.53278229400011],[141.81666100400017,52.54071686400006],[141.81714928500006,52.55072663000006],[141.81910241000008,52.55927155200008],[141.82699629000015,52.562933661000116],[141.8305770190002,52.56647370000012],[141.84376061300011,52.59080638200008],[141.83472741000017,52.59162018400009],[141.80974368600008,52.597723700000174],[141.80974368600008,52.60390859600015],[141.83448326900023,52.63410065300015],[141.84302819100006,52.66876862200003],[141.84376061300011,52.741034247000115],[141.84945722700013,52.76251862200006],[141.8679305350001,52.79474518400018],[141.8718367850001,52.81679922100007],[141.87077884200002,52.823187567],[141.86622155000006,52.84023672100015],[141.86500084700018,52.85089752800009],[141.86573326900012,52.86025625200004],[141.87061608200005,52.878851630000106],[141.8718367850001,52.888820705000015],[141.87501061300017,52.89516836100013],[141.88949629000004,52.91201406500014],[141.89283287900005,52.922919012000115],[141.89177493600008,52.944403387000065],[141.89242597700002,52.955389716000106],[141.8960067070001,52.96393463700004],[141.92009524800014,52.99803294500013],[141.92839603000016,53.020656643],[141.92302493600008,53.03929271],[141.91944420700005,53.046128648000106],[141.916270379,53.056708075000145],[141.91334069100017,53.073431708],[141.90894616,53.079535223000065],[141.88982181100002,53.09829336100013],[141.87891686300023,53.11977773600015],[141.84782962300002,53.14752838700004],[141.83757571700014,53.159409897999986],[141.833750847,53.16913483300014],[141.8342391290001,53.17715078300007],[141.83627363400004,53.185736395],[141.83757571700014,53.19725169500013],[141.83668053500006,53.20978424700003],[141.833669467,53.21775950699999],[141.80339603000002,53.271389065000065],[141.80372155000023,53.28571198100015],[141.81714928500006,53.30280182500012],[141.80779056100013,53.313055731000034],[141.80738366,53.32265859600001],[141.80990644600004,53.3309593770001],[141.80974368600008,53.33759186400006],[141.80079186300023,53.34747955900014],[141.76880944100006,53.371649481000176],[141.79607181100002,53.387030341000106],[141.88542728000004,53.412665106000176],[141.94271894599999,53.45050690300003],[141.95704186300006,53.45628489799999],[142.00831139400012,53.461086330000064],[142.09400475400017,53.4942894550001],[142.24105879000015,53.529364325000174],[142.22974694100017,53.52081940300014],[142.235606316,53.51105377800012],[142.2477319670002,53.50018952000012],[142.2553817070002,53.488348700000145],[142.25212649800008,53.47443268400018],[142.24447675900015,53.46393463700012],[142.24236087300002,53.45355866100011],[142.2553817070002,53.43992747600008],[142.24105879000015,53.43211497599999],[142.23707116000017,53.41998932500009],[142.24048912900017,53.40615469000009],[142.2485457690001,53.39276764500009],[142.26392662900005,53.38007233300011],[142.2848413420002,53.37140534100002],[142.3073836600001,53.36640045799999],[142.32740319100017,53.364894924000126],[142.34693444100003,53.36640045799999],[142.39242597700004,53.378485419000086],[142.43433678499997,53.37815989800008],[142.45533287900014,53.38027578300007],[142.52116946700014,53.420355536],[142.53394616000014,53.44647858300006],[142.56381269600016,53.488348700000145],[142.57667076900006,53.500067450000145],[142.62525475400003,53.52594635600014],[142.64258873800011,53.52708567900002],[142.65967858200005,53.520941473000114],[142.67530358200023,53.51821523600016],[142.68726647200018,53.529364325000174],[142.66627037900005,53.55263906500009],[142.62891686300003,53.56907786699999],[142.58619225400017,53.57583242400004],[142.54957116000006,53.5702985700001],[142.52637780000012,53.55023834800015],[142.51400800899998,53.54559967700011],[142.50855553500006,53.55975983300014],[142.50814863400004,53.56403229400014],[142.50879967500006,53.59125397300015],[142.51197350400005,53.5944684920001],[142.49805748800006,53.61562734600001],[142.49268639400012,53.638088283000016],[142.49773196700002,53.65827057500006],[142.51539147200006,53.67275625200009],[142.53337649800017,53.676214911],[142.550547722,53.67365143400018],[142.56804446700008,53.66901276200014],[142.58708743600008,53.666489976000136],[142.60352623800017,53.670355536000145],[142.62281334700012,53.677639065000065],[142.641368035,53.68178945500009],[142.656016472,53.67645905200014],[142.67945397200018,53.65106842700011],[142.6980086600001,53.63816966400001],[142.71851647200006,53.64020416900003],[142.80005944100014,53.697577216000134],[142.80445397200006,53.706976630000085],[142.80274498800017,53.71771881700008],[142.79883873800014,53.72870514500015],[142.79664147200018,53.738511460000076],[142.79175866,53.78351471600014],[142.7853296230002,53.805812893],[142.77613366,53.82416413000006],[142.73910566499998,53.84568919500007],[142.7131453790001,53.809149481000034],[142.69271894600004,53.75263092700003],[142.67310631600006,53.714300848000065],[142.65967858200005,53.70856354400011],[142.61402428500006,53.696030992000104],[142.60417728000013,53.697577216000134],[142.60743248800017,53.70905182500009],[142.62208092500018,53.728461005],[142.63249759200008,53.75568268400009],[142.67994225400017,53.81732819200012],[142.70606530000023,53.86432526200015],[142.71851647200006,53.90729401200012],[142.708262566,53.94822825700013],[142.66627037900005,53.98924388200005],[142.58863366,54.04511139500012],[142.54420006600017,54.089097398000135],[142.46753991000006,54.14569733300014],[142.45134524800008,54.16640859600015],[142.42562910200004,54.21124909100017],[142.40951582100016,54.23163483300006],[142.38282311300023,54.252752997000144],[142.34896894600016,54.271918036000116],[142.28256269600004,54.297186591000084],[142.28256269600004,54.303941148000106],[142.30494225400017,54.301947333000086],[142.34498131600012,54.28168366100006],[142.36524498800011,54.27659739800004],[142.44336998800023,54.269191799000154],[142.4655054050002,54.27236562700013],[142.52906334700015,54.297186591000084],[142.53695722700016,54.296535549000126],[142.52906334700015,54.29376862200017],[142.52019290500007,54.285630601000044],[142.52116946700014,54.27659739800004],[142.52613366000017,54.26577383000016],[142.52906334700015,54.252142645],[142.54322350399997,54.23720937700015],[142.57032311300023,54.234767971000124],[142.58692467500012,54.247056382],[142.57007897200012,54.27659739800004],[142.58863366,54.28050364800004],[142.60906009200008,54.27521393400014],[142.626231316,54.268011786000116],[142.63510175900015,54.26605866100009],[142.64909915500013,54.28339264500006],[142.64584394600016,54.29026927299999],[142.63477623800023,54.29608795800014],[142.62525475400003,54.31020742400007],[142.62549889400006,54.327297268],[142.63640384200008,54.33397044500008],[142.65267988399995,54.33832428600005],[142.66968834700006,54.34833405200014],[142.67994225400017,54.358791408000044],[142.68677819100012,54.36912669500013],[142.68604576900017,54.38007233299999],[142.67310631600006,54.392075914000124],[142.67603600400017,54.40485260600015],[142.68148847700004,54.415961005],[142.69068444100017,54.423895575000145],[142.70411217500006,54.42682526200018],[142.72315514400003,54.42560455900014],[142.73357181100005,54.42145416900003],[142.75180097700016,54.4029808610001],[142.758067254,54.39386627800012],[142.76644941500015,54.37132396000011],[142.772715691,54.362005927000084],[142.79444420700005,54.348089911],[142.80543053500006,54.33893463700012],[142.81967207100004,54.301906643000095],[142.84278405000006,54.280707098]]],[[[137.83570397200006,54.399115302],[137.81967207100016,54.38495514500006],[137.79859459700003,54.375637111000046],[137.73218834700012,54.36440664300012],[137.71509850400017,54.36717357],[137.71876061300011,54.38589101800015],[137.71648196700002,54.392157294000114],[137.72038821700002,54.39370351800015],[137.73926842500018,54.392075914000124],[137.74830162900017,54.39459870000003],[137.80347741,54.432440497000165],[137.8164168630001,54.44432200700013],[137.82178795700005,54.45783112200011],[137.83228600400005,54.49103424700003],[137.85808353000007,54.50189850500003],[137.8896590500002,54.503648179000024],[137.91797936300011,54.50942617400007],[137.92505944100014,54.48871491100006],[137.92750084700012,54.47451406500015],[137.92172285200004,54.46409739800004],[137.90430748800006,54.45477936400003],[137.863536004,54.446519273000106],[137.84831790500002,54.43773021000005],[137.83570397200006,54.399115302]]],[[[137.6344507170001,54.41132233300006],[137.64112389400006,54.400458075000174],[137.61345462300008,54.40778229400008],[137.58961022200012,54.40058014500015],[137.56812584700015,54.39663320500007],[137.54672285200004,54.413804429],[137.56885826900012,54.42633698100009],[137.57203209700018,54.44863515800013],[137.56104576900012,54.495754299000126],[137.5581160820001,54.500799872000144],[137.55274498800023,54.504706122000144],[137.54786217500023,54.509222723],[137.54672285200004,54.516262111000074],[137.55103600400005,54.52204010600006],[137.57471764400023,54.536688544000135],[137.59644616,54.557684637000094],[137.60808353000002,54.56574127800003],[137.62256920700005,54.57078685100008],[137.626800977,54.55434804900006],[137.62940514400012,54.536688544000135],[137.63559004000015,54.52081940300003],[137.65040123800023,54.50942617400007],[137.64503014400006,54.5014509140001],[137.64332116000017,54.49555084800006],[137.64503014400006,54.489813544000114],[137.65040123800023,54.48212311400009],[137.63721764400006,54.47565338700017],[137.62322024800014,54.46678294500013],[137.6124780610002,54.45538971600017],[137.60889733200023,54.44110748900009],[137.61402428500006,54.42829010600003],[137.6344507170001,54.41132233300006]]],[[[139.26213822300022,54.591993530000124],[139.24359328000006,54.58103164400013],[139.219454,54.580717640999985],[139.21372548300022,54.585579271000185],[139.2254560780001,54.589357775000096],[139.23960610499998,54.589260164000095],[139.26146162600017,54.599233545000075],[139.27002580600012,54.61026470100002],[139.27675007400003,54.61310968300013],[139.27579200600005,54.60732904800012],[139.26213822300022,54.591993530000124]]],[[[138.21014439100023,54.70112979900007],[138.19594380500016,54.701110441000154],[138.1825361020001,54.70784653400009],[138.1808227910001,54.715082893],[138.1900133720001,54.71557892000011],[138.22678255500003,54.715626317000115],[138.2409950780001,54.71371165900016],[138.2309990700002,54.706945409000056],[138.21014439100023,54.70112979900007]]],[[[168.11036217500006,54.50348541900006],[168.09929446700002,54.501044012000094],[168.08375084700006,54.50446198100012],[168.04249108200005,54.521551825000145],[167.9858504570001,54.555405992000125],[167.93734785200002,54.594183661000145],[167.82007897200006,54.64736562700013],[167.80518639400012,54.6513532570001],[167.77051842500012,54.65403880399999],[167.75220787900017,54.65786367400001],[167.73487389400003,54.66339752800003],[167.72315514400006,54.67047760600009],[167.69898522200018,54.689683335000055],[167.50114993600008,54.78510163000006],[167.44890384200005,54.82046133000007],[167.4391382170002,54.86627838700018],[167.4729923840001,54.866848049000154],[167.51978600400005,54.85610586100013],[167.55779056100005,54.83917877800015],[167.56511478000004,54.821275132],[167.56267337300014,54.80731842700011],[167.577403191,54.79755280199999],[167.59913170700005,54.79181549700011],[167.64039147200006,54.788519598000065],[167.65772545700023,54.78432851800015],[167.69239342500012,54.769476630000085],[167.73406009200008,54.76264069200006],[167.7407332690001,54.755519924],[167.75375410199996,54.72850169500008],[167.76856530000006,54.712551174000154],[167.78402753999995,54.70172760600015],[167.80193118600008,54.69570547100015],[167.82300866000017,54.693793036],[167.84522545700023,54.68732330900009],[167.87501061300023,54.65916575700011],[167.89161217500012,54.652777411],[167.90984134200005,54.65070221600017],[167.92432701900012,54.64447663000011],[167.93734785200002,54.63401927300013],[167.95240319100006,54.61928945500013],[167.97877037900005,54.59886302300008],[168.03614342500023,54.56655508000013],[168.0592554050002,54.54661692900005],[168.07032311300023,54.539211330000064],[168.10189863400004,54.52496979400017],[168.11068769599996,54.516262111000074],[168.11036217500006,54.50348541900006]]],[[[137.18067467500023,55.093207098000065],[137.11361738400012,55.02537669500008],[137.09498131600014,55.01398346600008],[137.071055535,55.009711005],[137.0651147800002,55.000230210000076],[137.0717879570002,54.97992584800009],[137.082286004,54.960638739000146],[137.08814537900005,54.954413153000175],[137.074961785,54.933172919000086],[137.04859459700012,54.92328522300009],[137.01791425900004,54.92035553600005],[136.94304446700002,54.922837632],[136.92986087300008,54.92772044500007],[136.92741946700008,54.93366120000009],[136.92855878999998,54.94212474200013],[136.92872155000023,54.95099518400018],[136.9233504570001,54.95783112200009],[136.89584394600013,54.96015045800006],[136.84131920700005,54.93781159100003],[136.82471764400012,54.93768952000014],[136.81275475400017,54.94301992400004],[136.80298912900005,54.93886953300007],[136.79371178500014,54.93158600500005],[136.78337649800008,54.92772044500007],[136.759043816,54.93260325700014],[136.74887129000015,54.93109772300009],[136.73861738400012,54.92031484600007],[136.74537194100014,54.91364166900003],[136.75977623800023,54.893011786],[136.73812910200016,54.88507721600003],[136.71534264400023,54.89179108300008],[136.69239342500023,54.902736721000124],[136.67042076900012,54.90729401200017],[136.67042076900012,54.91351959800014],[136.68572024800008,54.92121002800015],[136.6883244150001,54.931138414000074],[136.687266472,54.942572333000115],[136.69076582100004,54.954413153000175],[136.70093834700006,54.964789130000085],[136.71119225400017,54.96938711100002],[136.73861738400012,54.975531317],[136.75473066500004,54.98232656500012],[136.79379316500015,55.009711005],[136.8092554050002,55.01805247600005],[136.82341556100013,55.02313873900009],[136.85596764400003,55.03021881700015],[136.97901451900012,55.08685944200012],[137.04607181100016,55.10643138200002],[137.08814537900005,55.085394598000065],[137.10157311300023,55.10700104400017],[137.12208092500012,55.12128327000006],[137.1463322270001,55.12616608300014],[137.17123457100004,55.11953359600007],[137.18531334700018,55.10626862200006],[137.18067467500023,55.093207098000065]]],[[[137.78638756600017,55.1376000020001],[137.85596764400023,55.13320547100001],[137.87940514400023,55.138169664000074],[137.90430748800006,55.147528387000094],[137.92904707100016,55.15314362200008],[137.95215905000012,55.146877346000124],[137.96143639400023,55.13450755400011],[137.9659936860002,55.119696356000034],[137.97201582099999,55.10643138200002],[137.98617597700004,55.099066473],[137.96615644600016,55.07196686400009],[137.8981225920002,55.02545807500006],[137.88314863400015,55.002875067000055],[138.02491295700017,55.05573151200004],[138.04672285200004,55.058050848],[138.13721764400006,55.063177802000105],[138.18360436300023,55.057603257000025],[138.21216881600006,55.036363023000106],[138.18824303500017,55.02106354400014],[138.13282311300011,55.01557038000011],[138.11280358200023,55.00629303600009],[138.04769941499998,54.94082265800013],[138.03443444100006,54.93720123900006],[138.02100670700005,54.93724192900005],[138.0109155610002,54.93325429900007],[138.0034285820002,54.90509674700008],[137.99642988400015,54.895656643000095],[137.98951256600006,54.888251044000086],[137.98617597700004,54.88275788000006],[137.9923608730002,54.858791408000016],[138.00269616,54.83881256700012],[138.004730665,54.819525458],[137.98617597700004,54.79743073100012],[137.8790796230002,54.75971100500014],[137.86280358200003,54.738714911],[137.85694420700023,54.725775458],[137.84310957100004,54.71507396000008],[137.78858483200023,54.68585846600003],[137.7664494150001,54.66705963700018],[137.76026451900012,54.66453685100007],[137.74268639400006,54.660223700000145],[137.73926842500018,54.65619538],[137.73943118600002,54.64557526200015],[137.73853600400005,54.640570380000106],[137.73585045700017,54.6363792990001],[137.71892337300008,54.624335028000175],[137.70606530000023,54.624986070000105],[137.67774498800011,54.6432152360001],[137.653086785,54.655096747000144],[137.64625084700018,54.661322333000115],[137.585215691,54.751044012000065],[137.57439212300014,54.75958893400015],[137.56381269600016,54.76593659100011],[137.55274498800023,54.77484772300012],[137.54411868600002,54.784735419000135],[137.53443444100017,54.81366608300006],[137.51954186300011,54.839056708000086],[137.5014754570001,54.86318594],[137.48536217500012,54.87933991100006],[137.43067467500003,54.86570872600011],[137.3947046230002,54.851385809000035],[137.29273522200012,54.79584381700008],[137.26091556100005,54.78367747599999],[137.22592207100016,54.777818101000044],[137.24268639400006,54.798651434000035],[137.2491968110002,54.809149481000084],[137.25375410200004,54.8246931010001],[137.25611412900017,54.86078522300015],[137.25953209700015,54.872503973000114],[137.27491295700023,54.89826080900017],[137.29664147200012,54.923081773000135],[137.32056725400017,54.944037177],[137.356211785,54.96889883000013],[137.37647545700023,54.995794989],[137.39014733200017,55.00629303600009],[137.40845787900005,55.01137929900001],[137.44459069100017,55.01618073100009],[137.46143639400017,55.026800848000114],[137.47657311300017,55.045355536000145],[137.49089603000007,55.07050202000012],[137.49805748800011,55.096909898000106],[137.49219811300023,55.11953359600007],[137.51710045700005,55.13515859600015],[137.54395592500018,55.1786156270001],[137.5678817070002,55.19464752800009],[137.6061304050002,55.20010000200013],[137.6388452480002,55.192531643000066],[137.70492597700004,55.167914130000085],[137.70215905000023,55.15127187700013],[137.72071373800017,55.14638906500015],[137.74691816499998,55.14614492400001],[137.76710045700023,55.14345937700013],[137.78638756600017,55.1376000020001]]],[[[21.46766076600008,55.2111530560001],[21.503937622000137,55.19440989200013],[21.605120076000105,55.192497864000025],[21.645841105000073,55.18102569600002],[21.716224405000105,55.14945139600003],[21.733380982000085,55.136325582000076],[21.750640910000072,55.127954],[21.819887329000064,55.119324036000066],[21.85389042200012,55.10221913700009],[21.873217407000055,55.09493276000001],[21.90856408700006,55.08986847000013],[21.932955363000104,55.08046335900009],[21.942773885000065,55.078292948000104],[21.9513521720001,55.08046335900009],[21.977500447000097,55.09198720300012],[22.00344201700005,55.093485820000026],[22.01543094900009,55.08842153000013],[22.018634887000076,55.07731109600003],[22.018634887000076,55.060929667],[22.027729940000143,55.04439320900009],[22.049950805000094,55.03354115800015],[22.076822551000078,55.02858022100018],[22.09987024000014,55.02992380800005],[22.11847375500011,55.03777862599999],[22.12984257000008,55.046977030000086],[22.142658325000067,55.054625143000166],[22.251282186000083,55.07085154200017],[22.269883746000062,55.06953696300012],[22.436283814000063,55.05777740500012],[22.54108361900012,55.0757608040001],[22.565474894000143,55.067802633000056],[22.57116534000008,55.06398964700004],[22.580667765000072,55.057622376],[22.59162316800007,55.03762359600013],[22.608366333000106,54.992406718000055],[22.621698852000122,54.970030823000066],[22.63348107900012,54.9579385380001],[22.649914185000085,54.95287424800004],[22.70613814200007,54.953132630000184],[22.715543253000135,54.95137563100012],[22.722054484000097,54.94718984000017],[22.72918583200004,54.94036855100002],[22.73879764800006,54.93411570300013],[22.752130168000065,54.931118469000104],[22.740968058000135,54.91763092100014],[22.749236287000084,54.90987945600013],[22.808870891000083,54.89375640900006],[22.821273234000074,54.8854881800001],[22.829334758000126,54.872724101000145],[22.84432092300011,54.83226145500005],[22.848351684000107,54.813812968000136],[22.845767863000106,54.79613962800011],[22.8328487550001,54.77867299399999],[22.817759237000104,54.769164531000015],[22.786650024000068,54.755987041000125],[22.773007446000037,54.74249949200008],[22.76484257000004,54.737125143000114],[22.74727258300007,54.73159576400008],[22.736730591000082,54.72632476800008],[22.728255656000073,54.72508453400003],[22.72484501100007,54.72337921200006],[22.722777954000094,54.718573304000145],[22.72484501100007,54.71376739500006],[22.727532186000076,54.709323222000066],[22.727015422000136,54.70534413700007],[22.705104615000096,54.68653391600007],[22.700867147000054,54.679557597000056],[22.700763794000125,54.669325663000095],[22.7069649660001,54.646484680000164],[22.70810184700011,54.635632629000106],[22.70365767400011,54.617545878000115],[22.681746867000125,54.56990020800008],[22.6746155190001,54.492282206000155],[22.680403279000075,54.45321482400006],[22.7069649660001,54.41874664300009],[22.76721968600006,54.35626983700003],[22.698386678000073,54.342937318],[22.510387817000094,54.348776754000184],[22.277120402000094,54.356063132000074],[21.998946167000042,54.36466725750016],[21.720771932000048,54.373271383000045],[21.2874133710001,54.386758932000085],[20.92960575300009,54.3978176880001],[20.64083784950006,54.406783549500105],[20.352069946000142,54.41574941099999],[19.964703410000112,54.42784169600016],[19.75825597400009,54.43425566900007],[19.680276326000122,54.43667836500008],[19.630770304000066,54.44665191700007],[19.60954837300011,54.45673248900006],[19.609629754000082,54.45673248900006],[19.626475457000083,54.461004950000174],[19.626475457000083,54.468451239000146],[19.734060092000078,54.525702216000084],[19.83187910200013,54.598130601000136],[19.883148634000094,54.65619538],[19.888682488000082,54.660223700000145],[19.892832879000135,54.66103750200007],[19.89633222700013,54.66217682500012],[19.900157097000143,54.66705963700018],[19.90105228000004,54.67169830900012],[19.899261915000068,54.6830101580001],[19.900157097000143,54.687567450000024],[19.90560957100007,54.69481028900007],[19.915212436000076,54.702541408000066],[19.93018639400009,54.719427802000055],[19.956309441000144,54.756903387000094],[19.961680535000113,54.77317942900011],[19.95883222700007,54.79682038000006],[19.952321811000072,54.81631094000015],[19.925791863000114,54.867132880000085],[19.922211134000122,54.8766136740001],[19.920664910000085,54.88959381700008],[19.93433678500014,54.91693756700006],[19.940765821000127,54.934393622000115],[19.95671634200005,54.951849677000084],[19.97673587300011,54.96458567900013],[19.99586022200009,54.96808502800012],[20.02165774800011,54.95123932500012],[20.033702019000145,54.94818756700011],[20.074961785000085,54.954413153000175],[20.14356530000012,54.95180898600007],[20.205821160000113,54.95844147300015],[20.365570509000122,54.9461937520001],[20.40699303500014,54.951605536000116],[20.482432488000086,54.975531317],[20.634043816000116,55.04877350500014],[20.80844160200013,55.17625560100005],[20.822276238000143,55.18097565300014],[20.92456870056236,55.2826577786315],[20.989430696577955,55.27311631266308],[20.989431186000072,55.27309804900012],[20.989512566000144,55.270412502000156],[20.95191491000014,55.25470612200009],[20.94109134200005,55.248683986000074],[20.94312584700009,55.24530670800006],[20.943369988000114,55.244533596000124],[20.93702233200008,55.23773834800003],[20.91309655000012,55.233221747000144],[20.90333092500009,55.22581614800008],[20.905528191000087,55.21857330900015],[20.895274285000138,55.216253973000086],[20.890635613000114,55.21259186400012],[20.88843834700012,55.20600006700006],[20.884043816000144,55.19806549700009],[20.876963738000086,55.19183991100014],[20.86068769600007,55.18134186400006],[20.85303795700011,55.17413971600003],[20.834808790000125,55.152044989000146],[20.823741082000108,55.14313385600012],[20.77361087300011,55.114488023000135],[20.687836134000065,55.05068594],[20.558116082000083,54.98175690300015],[20.548675977000073,54.97797272300012],[20.539886915000096,54.97662995000006],[20.53337649800011,54.97357819200015],[20.530935092000078,54.96466705900012],[20.533946160000085,54.959662177000084],[20.541351759000065,54.95205312700013],[20.550466342000046,54.944769598000036],[20.558116082000083,54.94082265800013],[20.576914910000113,54.938910223000065],[20.763682488000114,54.947699286000145],[20.80518639400009,54.94082265800013],[20.86036217500012,54.91132233300006],[20.969086134000065,54.899807033000016],[21.03931725400011,54.903998114000146],[21.05095462300011,54.910386460000076],[21.055918816000087,54.914455471000124],[21.06617272200009,54.91010163000014],[21.07601972700013,54.903387762000094],[21.078949415000125,54.899807033000016],[21.090668165000125,54.901556708000115],[21.096934441000087,54.905462958000115],[21.100840691000087,54.90997955900015],[21.10621178500014,54.91351959800014],[21.190277540000068,54.92690664300015],[21.23015384200005,54.938910223000065],[21.243418816000087,54.961249091000106],[21.236338738000114,54.980780341000084],[21.219411655000044,55.013251044000164],[21.195078972000147,55.1354027360001],[21.19190514400009,55.14345937700013],[21.191579623000077,55.147162177000084],[21.183441602000073,55.16864655200003],[21.181325717000046,55.17108795800014],[21.181325717000046,55.19334544499999],[21.183441602000073,55.20172760600015],[21.188812696000127,55.20831940300003],[21.201670769000142,55.21442291900011],[21.210297071000127,55.211493231000084],[21.216644727000073,55.20526764500011],[21.222911004000107,55.20148346600011],[21.236827019000117,55.200628973],[21.248871290000125,55.20148346600011],[21.259043816000144,55.204982815],[21.267588738000086,55.21173737200003],[21.27133222700013,55.22028229400014],[21.273285352000073,55.232652085],[21.272308790000096,55.243841864],[21.267602287364923,55.24867008630527],[21.34983850100005,55.28778920500012],[21.374849894000132,55.28995961500011],[21.405545695000082,55.27238962800014],[21.46766076600008,55.2111530560001]]],[[[165.95557701900023,55.36424388200014],[166.179942254,55.31940338700012],[166.240000847,55.33185455900003],[166.25367272200006,55.33185455900003],[166.25831139400006,55.321275132],[166.26612389400006,55.313421942],[166.27621504,55.30780670799999],[166.28777103000007,55.30390045799999],[166.24122155000023,55.26996491100006],[166.22632897200018,55.250067450000145],[166.2409774100001,55.214992580000064],[166.240000847,55.17413971600003],[166.24431399800014,55.162339585000055],[166.25025475400003,55.15228913],[166.26734459700018,55.13320547100001],[166.27995853000007,55.122707424000126],[166.30640709700006,55.10553620000012],[166.31853274800002,55.095648505],[166.35328209700012,55.054388739000146],[166.36475670700023,55.045721747000144],[166.3769637380001,55.03925202000015],[166.38672936300017,55.03172435099999],[166.39535566500012,55.006252346000096],[166.4060164720001,54.99892812700007],[166.41846764400012,54.99274323100012],[166.44809004000015,54.96112702000011],[166.47901451900012,54.943548895],[166.5410262380002,54.92031484600007],[166.57325280000012,54.91242096600011],[166.58497155000006,54.90477122600008],[166.58952884200002,54.88959381700008],[166.64975019599999,54.844549872000115],[166.64820397200006,54.83392975500006],[166.64087975400005,54.82294342700011],[166.6372176440001,54.81110260600015],[166.64136803500006,54.796087958000115],[166.65796959700018,54.770697333],[166.66439863400004,54.75641510600009],[166.66521243600013,54.73379140800013],[166.65845787900017,54.71796295799999],[166.65479576900012,54.702337958000115],[166.66439863400004,54.68008047100007],[166.65211022200006,54.68732330900009],[166.6245223320002,54.71002838700004],[166.61304772200018,54.71482982000013],[166.59229576900006,54.71771881700006],[166.5792749360002,54.72524648600002],[166.55453535200004,54.74900950700011],[166.50196373800011,54.780462958000136],[166.48585045700023,54.80133698100012],[166.50001061300023,54.8246931010001],[166.47478274800005,54.83234284100003],[166.44507897200003,54.83392975500006],[166.397634311,54.83152903900013],[166.37435957100004,54.83331940300012],[166.35645592500018,54.83954498900005],[166.29835045700008,54.88385651200012],[166.29078209700015,54.89203522300012],[166.28777103000007,54.90355052300005],[166.28191165500002,54.908270575000145],[166.25326582100016,54.91844310100011],[166.23170006600006,54.931545315000065],[166.20639082099999,54.936590887000094],[166.19532311300014,54.944525458000086],[166.18930097700016,54.95368073100015],[166.18246504000004,54.972479559000085],[166.1779077480002,54.98175690300015],[166.16260826900023,54.999701239],[166.08285566499995,55.06061432500012],[166.0800887380002,55.069322007],[166.08480879000004,55.079901434000035],[166.08855228000007,55.102199611000074],[166.0805770190001,55.12042877800014],[166.0236108730002,55.17755768400003],[165.981211785,55.193426825000174],[165.96957441499998,55.20551178600009],[165.9929305350001,55.22190989799999],[165.96176191500004,55.23061758000015],[165.89844811300017,55.257269598],[165.800547722,55.271918036],[165.7648218110002,55.2827009140001],[165.74642988400015,55.297064520000085],[165.82032311300023,55.30125560100011],[165.85840905000012,55.30878327000006],[165.89031009200002,55.321275132],[165.90170332100004,55.330511786000145],[165.91667728000007,55.351019598],[165.92408287900005,55.35854726800015],[165.94044030000023,55.36497630400008],[165.95557701900023,55.36424388200014]]],[[[150.61069988700012,59.00571978800018],[150.5556255490001,58.99955706300007],[150.48138836700005,58.999689647000125],[150.47207555900016,59.004152947000115],[150.48683983700008,59.02574819799998],[150.5075847190001,59.03910526400007],[150.54828142400012,59.061895914],[150.59833480900014,59.080198041000166],[150.62789453200017,59.086452847000075],[150.66309301900006,59.09501802300015],[150.6839166560002,59.10833700200011],[150.69009118200015,59.12511428600006],[150.69853044100003,59.140446044000115],[150.70997155000023,59.13963450700011],[150.7252710300002,59.127997137000115],[150.779158582,59.10951608400016],[150.78280026300015,59.090863816000144],[150.74989498099998,59.080895999000106],[150.72259076100002,59.073226157000086],[150.7084797230002,59.055567577000076],[150.65393939200013,59.02833590100012],[150.61069988700012,59.00571978800018]]],[[[149.13629865800007,59.19758499400014],[149.11913582800014,59.189962893000185],[149.09837030600002,59.17538719700015],[149.1034811090001,59.16152900800016],[149.07883838700016,59.16144174200003],[149.034362674,59.1694739820001],[149.0329228220002,59.18334660500012],[149.03278925800024,59.192177739000115],[149.04002865500004,59.20292969500004],[149.05113164100024,59.202971744000145],[149.07094624300024,59.197366989000116],[149.09182670900012,59.203747625000126],[149.11765400200002,59.209509511000086],[149.1411077070002,59.207690353000125],[149.13629865800007,59.19758499400014]]],[[[164.5808211600001,59.183172919000135],[164.587657097,59.18170807500009],[164.60954837300002,59.18480052300007],[164.61622155000012,59.183172919000135],[164.617442254,59.17853424700003],[164.61557050900012,59.1664899760001],[164.61622155000012,59.161444403000175],[164.62924238399998,59.111232815],[164.63721764400023,59.09935130400005],[164.6746525400001,59.084173895000056],[164.68767337300005,59.077093817],[164.70541425900015,59.048773505000064],[164.7340717230002,59.02325303300013],[164.7095407310001,59.006175284],[164.70690048800012,58.97682818700012],[164.69087841700005,58.955145304],[164.68964827000005,58.94047178200004],[164.681407097,58.92584870000009],[164.68555748800023,58.915025132000025],[164.68083743600008,58.90517812700007],[164.63187354300007,58.865365928000166],[164.56585947400012,58.862456170000094],[164.46047697600014,58.867754473],[164.40772545700023,58.86489492400001],[164.34929446700008,58.84528229400014],[164.3035793230001,58.82700427600009],[164.2908303950002,58.80817281700003],[164.2560097850002,58.79860358700007],[164.23145592500023,58.8126488300001],[164.22152754000015,58.81354401200018],[164.21078535200004,58.815985419000036],[164.19068444100017,58.82318756700006],[164.1796981130001,58.82566966399999],[164.17017662900005,58.82428620000009],[164.16081790500016,58.82160065300003],[164.13407154399997,58.802492955],[164.12124654100003,58.78071756800015],[164.08617008600015,58.765236251000076],[164.03973011100007,58.74848578000005],[163.98742924400005,58.728916189000174],[163.95484887500007,58.70752698900013],[163.91470619599994,58.70096272900009],[163.88233483200023,58.70278554900004],[163.84603488200003,58.690514681000096],[163.78993958200013,58.642870594],[163.66912539300017,58.59625996600008],[163.5854624140001,58.557890269000055],[163.55268108900017,58.521647465000065],[163.51499972900015,58.497146755000145],[163.49001893200003,58.44450321800012],[163.47115797299995,58.46097754300003],[163.44564863399998,58.475572007000025],[163.44518303900023,58.50549532600017],[163.41285435400007,58.53536894400012],[163.41634448099998,58.55002608000013],[163.44499633700005,58.56139059600004],[163.55528729100016,58.57302892900013],[163.61054268600012,58.60746314200005],[163.63818438900003,58.65110863900004],[163.6543780580001,58.69050542200013],[163.67547332600014,58.71512989500008],[163.72528792400024,58.74962809100005],[163.7466648970001,58.77714402700015],[163.77955161300022,58.81040226200009],[163.7725946090002,58.83540616600011],[163.76632706600006,58.872124457],[163.78175768000003,58.89387347500015],[163.820532606,58.92549675100009],[163.85984948900008,58.96147207400016],[163.91319136000004,58.99429127000003],[163.8935653000002,59.01007721600011],[163.87867272200018,59.00950755400014],[163.84815514400023,59.00507233300005],[163.83423912900017,59.007025458000115],[163.8042098320001,59.016058661000116],[163.78980553500006,59.018133856000034],[163.75713882300002,59.00711314300018],[163.73084180900005,58.99580205600007],[163.69638634099996,58.991944791000144],[163.7172018570001,59.00627132500015],[163.74928256200022,59.018959858000095],[163.8041848710001,59.03127791600009],[163.96669837400012,59.02856146600005],[164.283050977,59.11371491100011],[164.31739342500023,59.131415106000034],[164.34066816500015,59.15131256700012],[164.39519290500007,59.18390534100017],[164.45337975400017,59.208644924000154],[164.55811608200023,59.23969147300006],[164.5808211600001,59.23407623900006],[164.57878665500004,59.19245026200009],[164.5808211600001,59.183172919000135]]],[[[155.60014964500007,59.33514669600011],[155.60004935200007,59.31942877699999],[155.5696722370001,59.320868839000056],[155.5341903000001,59.318182684000085],[155.50903580900015,59.32014779600017],[155.50771059200022,59.328127136000106],[155.53368599400017,59.33783518200009],[155.56693249700018,59.34042360900009],[155.60014964500007,59.33514669600011]]],[[[29.792491082000225,59.97866445500016],[29.786875847000115,59.97508372599999],[29.733653191000112,59.99628327000006],[29.72885175900015,60.00153229400014],[29.716807488000224,60.00617096600008],[29.699229363000118,60.010321356000034],[29.65739993600019,60.02545807500003],[29.668711785000173,60.02789948100015],[29.713552280000183,60.021877346000146],[29.78744550900009,59.99677155200005],[29.79135175900009,59.9948591170001],[29.798513217000025,59.99005768400012],[29.80054772200018,59.98554108300006],[29.796641472000175,59.983343817000055],[29.792491082000225,59.97866445500016]]],[[[27.873871290000125,59.99481842700011],[27.82048587300008,59.98273346600011],[27.80486087300011,59.98948802300005],[27.80258222700013,59.999335028000154],[27.807871941000116,60.009914455],[27.809743686000076,60.02020905200014],[27.82007897200009,60.03082916900017],[27.841075066000116,60.026434637000094],[27.86931399800008,60.013739325000024],[27.88502037900014,60.01105377800015],[27.89161217500003,60.00360748900009],[27.892344597000147,59.99502187700007],[27.873871290000125,59.99481842700011]]],[[[27.020681186000076,60.01756419500004],[27.008311394000145,60.013861395],[26.995778842000046,60.01422760600012],[26.984711134000094,60.017726955],[26.97681725400014,60.02570221600016],[26.967539910000085,60.043687242000104],[26.96436608200011,60.04706452000011],[26.962168816000116,60.05951569200015],[26.944509311000104,60.09137604400017],[26.950043165000125,60.099554755000085],[26.964121941000087,60.0994326840001],[26.976573113000086,60.088446356000055],[26.986827019000117,60.07599518400003],[26.997080925000148,60.066310940000065],[27.00782311300014,60.057847398000135],[27.01783287900014,60.04791901200012],[27.022227410000113,60.04218170800006],[27.025401238000086,60.03729889500009],[27.027354363000143,60.026760158],[27.020681186000076,60.01756419500004]]],[[[28.58033287900014,60.34894440300014],[28.58692467500003,60.34003327000011],[28.59392337300011,60.33860911700005],[28.602793816000144,60.340969143],[28.61231530000003,60.33730703300016],[28.621429884000122,60.33014557500012],[28.682953321000095,60.29950592699999],[28.711761915000125,60.29498932500014],[28.71534264400009,60.29246653900014],[28.7213647800001,60.28754303600005],[28.715830925000088,60.28436920799999],[28.703135613000114,60.280015367000104],[28.697927280000048,60.27228424700008],[28.698903842000107,60.26430898600013],[28.694590691000087,60.26113515800007],[28.672211134000094,60.26447174700012],[28.65853925900004,60.2645531270001],[28.646983269000117,60.26561107000004],[28.624196811000104,60.270209052000084],[28.56934655000009,60.29230377800015],[28.551036004000107,60.30272044500005],[28.544118686000015,60.31574127800006],[28.54346764400009,60.32656484600013],[28.546885613000086,60.334214585000076],[28.545420769000117,60.34149811400009],[28.541351759000065,60.347357489000125],[28.545258009000065,60.34861888200013],[28.556488477000073,60.34446849200002],[28.568695509000122,60.34332916900014],[28.575856967000078,60.34935130400007],[28.58033287900014,60.34894440300014]]],[[[28.518321160000085,60.312933661],[28.50367272200009,60.31102122600013],[28.483083530000044,60.32099030200011],[28.47120201900009,60.32998281500014],[28.46778405000009,60.33437734600012],[28.461110873000052,60.33779531500012],[28.451426629000082,60.339789130000085],[28.442393425000063,60.344305731000034],[28.425547722000147,60.36078522300012],[28.42798912900011,60.36591217700013],[28.45460045700014,60.366848049],[28.46509850400011,60.36591217700013],[28.484873894000113,60.36188385600015],[28.503103061000104,60.35407135600017],[28.512543165000125,60.346665757],[28.513682488000057,60.34170156500013],[28.516856316000116,60.33771393400015],[28.521820509000094,60.333685614],[28.52426191500012,60.331366278000026],[28.52328535200013,60.32477448100014],[28.518321160000085,60.312933661]]],[[[28.63461347700007,60.601385809000035],[28.5994572270001,60.57664622600008],[28.57553144600007,60.58038971600008],[28.561696811000047,60.59446849200005],[28.556651238000114,60.612005927000084],[28.561045769000117,60.62946198100003],[28.57553144600007,60.64305247599999],[28.588715040000093,60.646307684000035],[28.604502800000063,60.64500560100005],[28.617849155000073,60.63922760600017],[28.623383009000094,60.62848541900017],[28.63103274800011,60.61762116100009],[28.63461347700007,60.601385809000035]]],[[[36.00570722700016,64.33331940300016],[35.97510826900011,64.33258698100015],[35.953135613000114,64.33982982000008],[35.89861087300014,64.37445709800006],[35.86939537900017,64.38060130400014],[35.8567814460001,64.38735586100007],[35.856293165000096,64.40338776200015],[35.883148634000094,64.41266510600012],[35.91846764400023,64.41372304900007],[35.94312584700012,64.40509674700017],[35.96550540500007,64.39398834800012],[36.03126061300023,64.37311432500017],[36.04493248800017,64.36033763200011],[36.03321373800006,64.34251536700005],[36.00570722700016,64.33331940300016]]],[[[-172.67882239499988,64.64594147300012],[-172.65595455599987,64.64118073100003],[-172.4752904939999,64.64183177299999],[-172.4654027989999,64.63719310100005],[-172.45335852799988,64.62352122600011],[-172.45848548099988,64.61102936400003],[-172.51939856699988,64.59300364799999],[-172.54320227799988,64.59218984600007],[-172.5655004549999,64.59552643400009],[-172.67039954299995,64.60114166900009],[-172.67784583199992,64.60358307500003],[-172.68248450399994,64.60895416900009],[-172.68553626199994,64.61591217700008],[-172.69420325399994,64.61969635600009],[-172.70763098899994,64.62002187700013],[-172.7250463529999,64.62645091400005],[-172.7202856109999,64.64435455900009],[-172.6960343089999,64.65253327],[-172.67882239499988,64.64594147300012]]],[[[40.04322350400017,64.7008731140001],[40.08073978000019,64.69993724200013],[40.15064537900011,64.70941803600014],[40.18848717500006,64.7082380230001],[40.228363477000094,64.69989655200014],[40.25359134200008,64.6888695330001],[40.26335696700019,64.67869700700005],[40.26807701900012,64.65623607000005],[40.30225670700011,64.63548411700003],[40.35132897200006,64.6201846370001],[40.397308790000096,64.61863841400005],[40.431407097,64.61269765800004],[40.447438998000194,64.60016510600003],[40.450043165000096,64.59039948100018],[40.454925977000094,64.58185455900015],[40.458262566000116,64.57802969000015],[40.4611922540001,64.57387929900001],[40.45777428500011,64.568264065],[40.43555748800017,64.56415436400006],[40.335948113000114,64.57416413000014],[40.194834832000055,64.57416413000014],[40.14698326900023,64.59174225500009],[40.13086998800006,64.61399974200013],[40.11101321700008,64.63035716400005],[40.06959069100017,64.64801666900014],[40.054698113000114,64.65253327],[40.021820509000094,64.658677476],[39.938324415000146,64.66278717700014],[39.92017662900011,64.66718170800011],[39.8713485040001,64.68402741100012],[39.85450280000012,64.68349844000012],[39.84034264400012,64.68158600500009],[39.82422936300023,64.67975495000012],[39.83269290500019,64.68976471600008],[39.85531660200016,64.69916413000011],[39.905528191000116,64.71039459800004],[39.9842228520001,64.71922435100008],[40.00049889400023,64.71800364800005],[40.01677493600019,64.71027252800006],[40.04322350400017,64.7008731140001]]],[[[39.98047936300005,64.729437567],[39.943695509000094,64.72797272300015],[39.94971764400012,64.74192942900011],[39.98658287900016,64.74347565300015],[40.00196373800011,64.73737213700015],[39.98047936300005,64.729437567]]],[[[40.39600670700011,64.62913646000011],[40.36939537900017,64.62811920800006],[40.32569420700011,64.63764069200015],[40.30534915500019,64.65045807500009],[40.285492384000094,64.67332591400002],[40.25220787900011,64.69891998900006],[40.20183353000007,64.7199567730001],[40.175547722000054,64.72809479400003],[40.145192905000066,64.7342796900001],[40.0755314460001,64.75702545800011],[40.03484134200019,64.76056549700012],[40.050140821000156,64.769273179],[40.110687696000156,64.78119538000011],[40.222422722000175,64.7839216170001],[40.33350670700005,64.77240631700006],[40.36353600400011,64.75820547100015],[40.38786868600019,64.73574453300013],[40.40056399800008,64.71124909100003],[40.402517123000194,64.66250234600001],[40.40528405000006,64.65180084800006],[40.40674889400023,64.64248281500012],[40.39600670700011,64.62913646000011]]],[[[-172.27872694299995,64.71351763000014],[-172.38472471399993,64.69848106200008],[-172.50089733299995,64.70428798900004],[-172.54680392899988,64.68538553700012],[-172.63319292999986,64.68443931500009],[-172.60875010999993,64.73083326200013],[-172.5774488399999,64.75949953800001],[-172.5234842989999,64.78797481300008],[-172.48456608999984,64.81494769000001],[-172.4613440789999,64.82759459800015],[-172.4005204849999,64.83669621900005],[-172.3290757839999,64.83122512500007],[-172.24309600699988,64.81594233400007],[-172.11256257699992,64.79049780000013],[-172.0433560109999,64.75118299700014],[-172.17960962399994,64.73821910700018],[-172.27872694299995,64.71351763000014]]],[[[35.95655358200011,65.02558014500006],[35.920583530000016,65.021185614],[35.90601647200012,65.02179596600014],[35.899912957000225,65.02655670800006],[35.897715691000116,65.03286367400008],[35.89185631600017,65.04071686400006],[35.899750196000156,65.04718659100017],[35.92741946700008,65.05410390800007],[35.955414259000094,65.054388739],[35.96322675900015,65.05548737200014],[35.974131707000225,65.05605703300002],[35.99577884200002,65.05512116100014],[36.006602410000106,65.05365631700008],[36.012950066000165,65.0517031920001],[36.02393639400012,65.0457217470001],[36.02564537900011,65.03656647300011],[36.01726321700008,65.02903880400008],[36.00513756600017,65.02651601800007],[35.95655358200011,65.02558014500006]]],[[[35.815306962000165,65.15421069400016],[35.830544705000165,65.12440167200013],[35.8635360040001,65.07977936400012],[35.86687259200008,65.07599518400009],[35.85572350400017,65.06411367400015],[35.84310957100015,65.068304755],[35.81902103000007,65.090277411],[35.81690514400023,65.09568919500005],[35.80738366000011,65.10830312700013],[35.79664147200012,65.11440664300004],[35.79175866000017,65.1002464860001],[35.78736412900017,65.07990143400009],[35.78126061300006,65.07273997600005],[35.78394616000017,65.06903717700011],[35.80567467500011,65.05898672100012],[35.8416447270001,65.05158112200014],[35.85922285200016,65.0449079450001],[35.86687259200008,65.03131745000015],[35.864512566000116,65.01251862200009],[35.85816491000017,65.00446198100015],[35.84864342500006,64.99957916900009],[35.83668053500017,64.99038320500001],[35.823741082000225,64.98379140800013],[35.80201256600017,64.97801341399999],[35.764184677000145,64.9637078520001],[35.74465999000009,64.96155085700018],[35.730181523000084,64.97284604900001],[35.7298283210001,64.98550039300015],[35.72339928500017,65.00092194200009],[35.722341342000185,65.0138207050001],[35.72331790500018,65.026353257],[35.71202690400017,65.028078393],[35.68910602200012,65.03391408200004],[35.651817253000075,65.03431997000014],[35.60331064100015,65.03800797700002],[35.56326054900014,65.05213822600014],[35.52744038200015,65.07398978200008],[35.5051624430001,65.09555240800002],[35.506113249000094,65.12128825600008],[35.52409915500019,65.14447663000006],[35.55889404500007,65.14959330000003],[35.60173587300014,65.15436432500017],[35.64999559300006,65.15398639900015],[35.66335387100011,65.16793019300002],[35.686039756000156,65.17133130900008],[35.73308825200015,65.17286538100008],[35.78644956600007,65.165105515],[35.815306962000165,65.15421069400016]]],[[[35.99244225400011,65.18927643400009],[35.99008222700015,65.18353913000011],[35.997406446000156,65.184515692],[36.009125196000156,65.18378327000006],[36.02361087300019,65.17767975500009],[36.036631707000055,65.16998932500015],[36.04948978000019,65.16571686400015],[36.055511915000096,65.162054755],[36.05884850400011,65.15867747600008],[36.06918379000015,65.1572940120001],[36.191742384000094,65.15525950700005],[36.21143639400023,65.15827057500015],[36.24976647200017,65.15932851800012],[36.260996941000165,65.15452708500014],[36.2361759770001,65.14590078300013],[36.20191491000011,65.13886139500006],[36.13689212300008,65.13764069200015],[36.097992384000094,65.13056061400007],[36.075694207000225,65.13117096600006],[36.07398522200011,65.1273867860001],[36.06609134200008,65.12514883000013],[36.046885613000114,65.12689850500011],[36.030772332000225,65.13068268400015],[36.024668816000116,65.13279857000008],[35.95199629000015,65.14638906500004],[35.942230665000096,65.15460846600003],[35.943369988000164,65.1681175800001],[35.94988040500007,65.18097565300012],[35.966563347000175,65.18838125200001],[35.99040774800008,65.19122955900004],[35.99244225400011,65.18927643400009]]],[[[-169.05138098899988,65.75787995000009],[-169.07652747299994,65.75507233300004],[-169.09369869699984,65.76194896000005],[-169.09809322799993,65.77887604400014],[-169.09337317599994,65.79905833500008],[-169.08336341099988,65.8158633480001],[-169.0632218089999,65.82819245000003],[-169.0413305329999,65.82733795800011],[-168.99461829299992,65.8158633480001],[-169.00776119699995,65.79572174700014],[-169.0275365879999,65.773911851],[-169.05138098899988,65.75787995000009]]],[[[42.66802874200002,66.66669125900007],[42.64370678700007,66.666063528],[42.58263240300002,66.67851162700013],[42.483421517000096,66.70732598600001],[42.441731824000186,66.7295380760001],[42.42649975100014,66.75200894200005],[42.454868,66.773662087],[42.504490695000044,66.77790578300012],[42.53770879600009,66.77488543500006],[42.58475686400006,66.77029366600003],[42.630229330000105,66.7556172210001],[42.64583765200004,66.74234467000015],[42.664934935000105,66.72323437300018],[42.6682206290001,66.70189172800015],[42.68097318300008,66.68188634200011],[42.66802874200002,66.66669125900007]]],[[[69.27979576900012,66.79450104400011],[69.30274498800011,66.79413483299999],[69.42546634200019,66.80670807500017],[69.4729923840001,66.79767487200017],[69.50025475400011,66.752142645],[69.51677493600008,66.73895905200006],[69.57439212300002,66.70892975500003],[69.60450280000006,66.69953034100008],[69.63550866000011,66.69383372600002],[69.66456139400006,66.69354889500006],[69.64576256600006,66.705511786],[69.57520592500006,66.731390692],[69.56080162900017,66.73993561400012],[69.544688347,66.75238678600006],[69.5403751960001,66.76365794500005],[69.56153405000012,66.7686221370001],[69.6713973320001,66.76178620000016],[69.72738691500015,66.76557038],[69.75562584700012,66.762152411],[69.78126061300006,66.74811432500003],[69.76189212300008,66.74201080900015],[69.75391686300011,66.74192942900008],[69.77466881600017,66.73525625200001],[69.85499108200011,66.72768789300007],[69.87964928500011,66.72919342700011],[69.89112389400006,66.72768789300007],[69.90007571700008,66.72333405200008],[69.91602623800006,66.71100495000003],[69.92530358200023,66.70722077],[69.96436608200011,66.70644765800007],[70.00757897200018,66.71067942900001],[70.04981530000012,66.70892975500003],[70.08570397199999,66.69013092700006],[70.08570397199999,66.68211497600011],[70.07545006600017,66.65192291900009],[70.07634524800008,66.64915599200005],[70.07886803500011,66.64484284100006],[70.07984459700018,66.63910553600006],[70.07545006600017,66.63206614799999],[70.06544030000012,66.63007233300006],[70.0506291020001,66.63182200700005],[70.03614342500006,66.632025458],[70.02711022200018,66.62523021000008],[70.03923587300008,66.607896226],[70.11150149800002,66.56997304900007],[70.130625847,66.5563418640001],[70.10694420700011,66.55744049700013],[70.08366946700019,66.56195709800012],[70.0615340500001,66.56207916900009],[70.04127037900011,66.55011627800015],[70.06592858200011,66.55190664300015],[70.08668053500017,66.5485293640001],[70.09669030000006,66.53896719000012],[70.089121941,66.52220286700009],[70.08497155000006,66.52073802300005],[70.05469811300011,66.50482819200015],[70.04363040500007,66.50128815300015],[69.95191491000017,66.50088125200016],[69.8977970710001,66.49494049700003],[69.890391472,66.489935614],[69.88510175900015,66.48236725500014],[69.87964928500011,66.4769554710001],[69.87061608200011,66.47785065300008],[69.85914147200005,66.48175690300017],[69.83529707100016,66.48883698100003],[69.82349694100016,66.49371979400011],[69.74708092500006,66.52846914300007],[69.54542076900006,66.591009833],[69.53760826900006,66.60138580900009],[69.54517662900011,66.604437567],[69.55437259200006,66.60382721600003],[69.56446373800023,66.60439687700001],[69.57520592500006,66.61098867400007],[69.57341556100008,66.63133372600008],[69.57520592500006,66.63825104400014],[69.54566491000017,66.6592471370001],[69.50310306100002,66.70864492400007],[69.4245711600001,66.76837799700014],[69.40447024800008,66.77606842700008],[69.37403405000012,66.77814362200009],[69.28101647200006,66.76178620000016],[69.29086347700016,66.7512067730001],[69.29460696700019,66.74811432500003],[69.25709069100017,66.74628327000006],[69.20118248800011,66.75702545800009],[69.15088951900006,66.77537669500013],[69.1307072270001,66.7965762390001],[69.146250847,66.80975983300009],[69.17758222700016,66.8114281270001],[69.27979576900012,66.79450104400011]]],[[[32.407074415000146,67.10712311400006],[32.39372806100002,67.10032786700013],[32.36719811300006,67.11139557500015],[32.355479363000114,67.11334870000012],[32.34424889400006,67.11684804900001],[32.33765709700012,67.12490469000012],[32.34148196700002,67.13605377800015],[32.356130405000016,67.13906484600005],[32.37354576900012,67.13686758000007],[32.385996941000116,67.13231028900013],[32.407562696000156,67.12042877800017],[32.407074415000146,67.10712311400006]]],[[[54.301442905000066,68.31631094000012],[54.296560092000185,68.31391022300006],[54.30860436300011,68.31403229400014],[54.3186141290001,68.31232330900004],[54.32976321700019,68.31146881700015],[54.340505405000016,68.30670807500006],[54.34376061300006,68.29279205900015],[54.33855228000019,68.27643463700007],[54.325450066000116,68.2636579450001],[54.31690514400012,68.25910065300015],[54.22095787900011,68.24518463700016],[54.204844597,68.249009507],[54.19947350400017,68.25649648600016],[54.19727623800006,68.26227448100002],[54.19955488400015,68.26532623900012],[54.20118248800005,68.27045319200012],[54.20093834700006,68.27850983300004],[54.2127384770001,68.29108307500015],[54.239431186000125,68.30377838700012],[54.302907748000024,68.32737864800005],[54.32976321700019,68.33124420800006],[54.33887780000012,68.32705312700013],[54.325043165000096,68.32168203300007],[54.301442905000066,68.31631094000012]]],[[[53.957692905000016,68.29336172100012],[53.919688347,68.28754303600009],[53.88738040500018,68.29677969000012],[53.86573326900012,68.30695221600008],[53.8587345710001,68.31818268400008],[53.85621178500011,68.3293317730001],[53.85320071700019,68.33714427300002],[53.85792076900012,68.34552643400015],[53.873057488000114,68.35199616100006],[53.882090691000116,68.35358307500009],[53.912282748000024,68.36196523600016],[53.966807488000114,68.35809967700006],[53.991465691000116,68.34585195500007],[53.98519941500015,68.32420482],[53.957692905000016,68.29336172100012]]],[[[51.17237389400012,68.45709870000002],[51.09742272200006,68.425238348],[50.99878991000017,68.42536041900007],[50.937266472,68.39647044500008],[50.89112389400012,68.39459870000009],[50.86915123800005,68.39101797100012],[50.85010826900006,68.38495514500012],[50.83204186300006,68.38149648600013],[50.792491082000225,68.37929922100012],[50.80144290500007,68.38955312700006],[50.81128991000017,68.39813873900007],[50.82227623800023,68.40534088700012],[50.87183678500017,68.42829010600009],[51.17172285200016,68.50145091399999],[51.29957116000017,68.49542877800015],[51.49830162900017,68.48859284100013],[51.459808790000096,68.47394440300003],[51.17237389400012,68.45709870000002]]],[[[49.12427819100017,68.667669989],[49.12037194100017,68.6629906270001],[48.76587975400011,68.69037506700006],[48.765961134000094,68.69660065300012],[48.81234785200015,68.69651927300013],[49.0490828790001,68.67841217700011],[49.07300866000016,68.67597077000009],[49.12427819100017,68.667669989]]],[[[49.55046634200008,68.79511139500003],[49.49919681100002,68.78558991100012],[49.49195397200012,68.79242584800012],[49.55307050900015,68.81098053600014],[49.57032311300017,68.81708405200011],[49.57927493600019,68.81928131700012],[49.59473717500012,68.82037995000015],[49.59848066500015,68.81476471600017],[49.59107506600017,68.80866120000017],[49.55046634200008,68.79511139500003]]],[[[67.33781985800013,68.80894603100002],[67.3811955090001,68.79226308800015],[67.40739993600002,68.7757835960001],[67.40674889400006,68.76809316600016],[67.40121504000015,68.76125722900007],[67.39307701900006,68.75731028900007],[67.35002688900013,68.76618073100012],[67.33611087300001,68.76443105700012],[67.33318118600019,68.76080963700015],[67.33871504000014,68.7593041040001],[67.33326256600017,68.758490302],[67.20720462300008,68.80154043200004],[67.19353274800002,68.801703192],[67.1582137380001,68.78754303600006],[67.13795006600016,68.78888580900015],[67.122325066,68.79344310100002],[67.11581464900021,68.79836660400015],[67.12061608200011,68.8042259790001],[67.23560631600017,68.82037995000015],[67.33781985800013,68.80894603100002]]],[[[54.39535566500015,68.78253815300002],[54.38672936300023,68.77838776200018],[54.22820071700013,68.79621002800015],[54.210297071000156,68.80149974200003],[54.19532311300023,68.80805084800012],[54.1927189460001,68.8137067730001],[54.204356316000116,68.81850820500001],[54.21648196700002,68.82094961100013],[54.22169030000011,68.8210309920001],[54.26677493600019,68.816839911],[54.3748478520001,68.79096100500009],[54.39535566500015,68.78253815300002]]],[[[49.76685631600017,68.87763092700011],[49.75171959700017,68.87742747600008],[49.753103061000076,68.880316473],[49.78809655000006,68.88947174700017],[49.8143009770001,68.89948151200015],[49.82390384200008,68.90257396000005],[49.84180748800023,68.90623607],[49.83952884200007,68.900580145],[49.78223717500011,68.88068268400012],[49.76685631600017,68.87763092700011]]],[[[55.01954186300006,68.91543203300007],[54.98829186300011,68.91193268400018],[54.94971764400006,68.9174665390001],[54.923350457000225,68.92413971600014],[54.91187584700012,68.93097565300017],[54.914235873000074,68.93756745000015],[54.92798912900017,68.94017161700005],[54.97429446700008,68.93988678600002],[55.012950066000116,68.93585846600014],[55.02222741000016,68.9282087260001],[55.01954186300006,68.91543203300007]]],[[[55.480235222000175,68.93032461100002],[55.50660241000017,68.91376373900006],[55.366709832000225,68.92739492400001],[55.259125196000156,68.91290924700014],[55.22543379000015,68.91376373900006],[55.23975670700022,68.92739492400001],[55.24659264400005,68.92739492400001],[55.33855228000007,68.94635651200012],[55.369476759000094,68.94790273600016],[55.44239342500012,68.940375067],[55.480235222000175,68.93032461100002]]],[[[50.069834832000055,68.94306061400009],[50.00424238400015,68.93073151200002],[50.00074303500016,68.93231842700006],[50.050059441000116,68.94550202],[50.072438998000074,68.95473867400007],[50.08285566500015,68.96092357000005],[50.093516472000175,68.96405670800011],[50.10767662900011,68.96352773600013],[50.097829623000074,68.95343659100017],[50.069834832000055,68.94306061400009]]],[[[-179.7127172519999,68.91791413],[-179.57990475199992,68.90863678600014],[-179.54161536399988,68.91022370000017],[-179.51402747299986,68.92112864800005],[-179.5346166659999,68.93227773600007],[-179.54344641799995,68.93927643400013],[-179.5475561189999,68.94790273600016],[-179.54096432199992,68.96328359600001],[-179.5227758449999,68.964544989],[-179.50153561099995,68.95831940300006],[-179.4857885409999,68.95132070500007],[-179.47101803299992,68.93992747600002],[-179.44965572799995,68.91290924700014],[-179.43797766799983,68.9032250020001],[-179.41816158799992,68.89638906500006],[-179.38260783799984,68.87904137500011],[-179.35450007699987,68.8708455970001],[-179.33377862299994,68.85844102800003],[-179.34877119499993,68.857516268],[-179.36342940499992,68.85510089500018],[-179.3541360209999,68.84437604200018],[-179.35533371899987,68.83735043600008],[-179.35736701299984,68.82781128200004],[-179.3277958129999,68.82468178100011],[-179.31953039299992,68.81195171400009],[-179.2611396779999,68.80311975200006],[-179.20327486299988,68.80970738500004],[-179.17269427499983,68.80854632100007],[-179.16661332099986,68.79923840500008],[-179.1283031649999,68.78730892900016],[-179.07361154599988,68.78926880500013],[-178.9357397129999,68.77171458500011],[-178.84481257699983,68.752360953],[-178.6773643269999,68.679336085],[-178.59850012899992,68.64337799700003],[-178.5171268109999,68.60296151500013],[-178.48493404899992,68.59153880400011],[-178.51423092399995,68.58637116100012],[-178.54645748599987,68.59210846600008],[-178.6369023399999,68.637982337],[-178.65179426699987,68.64459621400012],[-178.6875984579999,68.6606592180001],[-178.72461812099988,68.67568568900013],[-178.7361581759999,68.67039605700016],[-178.7258878369999,68.65967212600005],[-178.71916881299987,68.64587364900002],[-178.72082576899987,68.63287036700017],[-178.7119604829999,68.62212023300009],[-178.7188810709999,68.60799459500011],[-178.71382855599992,68.5956593780001],[-178.7196637589999,68.58305756300005],[-178.71144884999995,68.56831296400016],[-178.70151316699986,68.55161925000012],[-178.69992799199986,68.54318931600001],[-178.67052161399988,68.53701406500015],[-178.61864173099988,68.525091864],[-178.4582413399999,68.50967031500006],[-178.4267065089999,68.50189850500009],[-178.3686417309999,68.47955963700004],[-178.3381241529999,68.47492096600003],[-178.27623450399992,68.478420315],[-178.24840247299986,68.47601959800006],[-178.19086666599986,68.45416901200011],[-178.04181881399995,68.42767975500006],[-178.0213516919999,68.41596100500006],[-178.0067032539999,68.37083567900002],[-177.99071204299986,68.35285065300015],[-177.97028561099992,68.34003327000012],[-177.9505102199999,68.33771393400015],[-177.9661352199999,68.33022695500001],[-177.99897213399987,68.30418528900013],[-178.0603735019999,68.27692291900003],[-178.07420813699986,68.26557038000006],[-178.0736791659999,68.25926341400013],[-178.06090247299994,68.25641510600018],[-177.9970596999999,68.25653717700006],[-177.98021399599992,68.26044342700006],[-177.9647924469999,68.26947663000006],[-177.96760006399995,68.27033112200014],[-177.96894283799992,68.27631256700009],[-177.96808834499993,68.28416575700005],[-177.9647924469999,68.29059479400017],[-177.95579993399988,68.29547760600003],[-177.90709387899994,68.30426666900011],[-177.8907364569999,68.30329010600003],[-177.8743790359999,68.30483633000006],[-177.85863196499986,68.31415436400012],[-177.82237708199995,68.32770416900009],[-177.73237057199987,68.32611725500006],[-177.7047013009999,68.34454987200009],[-177.95641028549989,68.42210521049999],[-178.20811926999988,68.4996605490001],[-178.24583899599992,68.50519440300012],[-178.29564368399988,68.51874420800009],[-178.31965084499987,68.53107330900012],[-178.34516354099983,68.53440989800005],[-178.35582434799989,68.53701406500015],[-178.36200924399986,68.5462914080001],[-178.36750240799986,68.55288320500006],[-178.37507076699995,68.55744049700003],[-178.0429784819999,68.4601911480001],[-177.71088619699995,68.36294179900013],[-177.6658422519999,68.335394598],[-177.4963272779999,68.29295482000013],[-177.49225826699993,68.2917341170001],[-177.6017960279999,68.30805084800012],[-177.63646399599986,68.30418528900013],[-177.63365637899992,68.29889557500015],[-177.63084876199989,68.28778717700011],[-177.6290177069999,68.283148505],[-177.7655736969999,68.26264069200015],[-177.74840247299989,68.2533633480001],[-177.7107641269999,68.24835846600014],[-177.67707271999987,68.22980377800003],[-177.63914954299995,68.22549062700013],[-177.62218176999988,68.21426015800013],[-177.63609778599988,68.20506419500008],[-177.6398412749999,68.19879791900001],[-177.63471432199987,68.19529857000013],[-177.62218176999988,68.19432200700005],[-177.60846920499992,68.19676341399997],[-177.46153723899982,68.24628327000012],[-177.39403235599988,68.24957916900014],[-177.33808346299992,68.24457428600012],[-177.20331783799992,68.20490143400009],[-177.1735326809999,68.19867584800015],[-177.19090735599985,68.19745514500012],[-177.23810787699986,68.20742422100004],[-177.25910396999987,68.21112702000006],[-177.26451575399994,68.20184967700011],[-177.2535294259999,68.191107489],[-177.22492428299992,68.17328522300012],[-177.23851477799988,68.16795482000005],[-177.24482174399992,68.16705963700015],[-177.21873938699994,68.13955312700013],[-177.1662491529999,68.13739655200011],[-177.0672501289999,68.15277741100006],[-177.0987442699999,68.16185130400008],[-177.10822506399992,68.16705963700015],[-177.07542883999992,68.16425202],[-176.93665232399982,68.12072486600012],[-176.82005774599992,68.08657461100007],[-176.61821824899985,68.0267041040001],[-176.56453810699986,68.0103156150001],[-176.59323209899992,68.00605911300006],[-176.72504454799991,68.03785176100008],[-176.71798576499995,68.02626621500012],[-176.7530559729999,68.01530878100006],[-176.7791418059999,68.00190168300016],[-176.77437762699986,67.9927989590001],[-176.78933581599995,67.97861818800006],[-176.78230052599994,67.96786894899998],[-176.70210777399987,67.94917598500008],[-176.66190246599987,67.93442091700014],[-176.5732031959999,67.92234190300009],[-176.55538414699993,67.91660325900001],[-176.5393713659999,67.89509672100012],[-176.49952020699988,67.88860473800004],[-176.40708440899988,67.89469917700008],[-176.3828072409999,67.89310780900003],[-176.23961006899992,67.8975740960001],[-176.20879499199987,67.90177004200008],[-176.28847289699985,67.9223601830001],[-176.35725332999988,67.94293721600009],[-176.4262119959999,67.96597603500014],[-176.48844160299993,67.9790556010001],[-176.53078489299992,67.99052682800011],[-176.53331889499987,68.00296202500006],[-176.3997110889999,67.967710175],[-176.2742813789999,67.92853424700014],[-176.08558948399988,67.88398576000004],[-175.98310299399986,67.86082591400013],[-175.9207250639999,67.851019598],[-175.92774850699993,67.84671454200004],[-176.0050918059999,67.85399773000013],[-176.0485823419999,67.85215067000017],[-176.08470693599995,67.83207718900017],[-176.11590997299987,67.80653715300004],[-176.13738019999988,67.77735890800007],[-176.1011279849999,67.7600863760001],[-176.06495841299994,67.74827255300006],[-176.04806013999993,67.73552887699998],[-176.06965934499988,67.72731413300012],[-176.0937157319999,67.73002736600006],[-176.17787405099983,67.72992993100011],[-176.23313193899995,67.72528679600008],[-176.30046321099994,67.7242441140001],[-176.3266831819999,67.70960524400003],[-176.34087321699994,67.695902431],[-176.28315699899994,67.69238845900004],[-176.2684232859999,67.66872766000016],[-176.20579216899992,67.64515193000001],[-176.1217918159999,67.62704630900014],[-176.02126873399993,67.6307696330001],[-175.97339810099993,67.63898505300001],[-175.9255015339999,67.63898670100015],[-175.88242260299987,67.62895416200017],[-175.88485793499984,67.61255623699999],[-175.91118412999992,67.60345307400014],[-175.91359610199993,67.58796550100008],[-175.8682052979999,67.58430677700012],[-175.77028193499982,67.57967793200011],[-175.73920548199985,67.58237574100004],[-175.72499080999995,67.56960240200011],[-175.71295426899982,67.579606889],[-175.6817892169999,67.58957938200003],[-175.66966028399992,67.605047632],[-175.6718941029999,67.6187181000001],[-175.71012157299987,67.62424492700015],[-175.72672983199985,67.63975511600016],[-175.7673511699999,67.6516471830001],[-175.83204528299987,67.6517030910001],[-175.87280040699986,67.644437998],[-175.89674228699988,67.64991331300017],[-175.88712104299984,67.665398156],[-175.8726833869999,67.68270264200014],[-175.8486017439999,67.70455590600012],[-175.8869893319999,67.7191513960001],[-175.94946725099987,67.72553924099999],[-176.0071461439999,67.72279431900007],[-176.01196591099986,67.72734776500006],[-175.92060183199987,67.74740350000008],[-175.85315587499986,67.76833473],[-175.83384414799994,67.77834492400002],[-175.82169814699995,67.79746950500011],[-175.8240291509999,67.81296012700007],[-175.51520391899987,67.72280957700009],[-175.38145911399994,67.68720123900003],[-175.28650039599992,67.66710570000008],[-175.26552873099988,67.65855507900001],[-175.26098866599992,67.64595824700002],[-175.29612077399995,67.64419627299999],[-175.31236223199994,67.63465150900011],[-175.29951963399986,67.62054628800011],[-175.29077365799992,67.605616571],[-175.25498436499984,67.58605975300004],[-175.2401580219999,67.57429932900006],[-175.24795837999986,67.55928950800006],[-175.22484569999992,67.54520543700006],[-175.12677003499988,67.49988984300008],[-175.1432532069999,67.50061706200002],[-175.21833137199988,67.53419921100014],[-175.22652991499993,67.53258846500009],[-175.2137983199999,67.52003516300006],[-175.20512923099992,67.50510128200015],[-175.19041724199988,67.49413191600009],[-175.1962227309999,67.480716154],[-175.18776361999988,67.47208405800015],[-175.1893926329999,67.456320733],[-175.18907309099995,67.44450396400008],[-175.17239762999992,67.43511393100012],[-175.1846070399999,67.43112722500003],[-175.21123982299994,67.42944552800007],[-175.2337410529999,67.42698907400005],[-175.24164843699992,67.41671337300006],[-175.2413272609999,67.40568423300012],[-175.2492244289999,67.39540795900001],[-175.35045325399992,67.38251373900012],[-175.36688316699988,67.3577886290001],[-175.31117001699988,67.34467997900013],[-175.29068294099986,67.34399385600001],[-175.25996898099993,67.34335384000008],[-175.2271586239999,67.34034441900003],[-175.18827976099985,67.33972307200015],[-175.1595889749999,67.3374767910001],[-175.13108097499986,67.34231379200008],[-175.1046452579999,67.34871328200016],[-175.07413986099988,67.35669642000013],[-175.04977204999994,67.36543809500002],[-175.02333764599987,67.37418178000006],[-175.01538194899985,67.38601977300014],[-175.01143897099993,67.39390876400016],[-174.9911516829999,67.40499440900005],[-174.99341076299987,67.41601663100006],[-174.9689480729999,67.4247484050001],[-174.98564441499988,67.43967225900015],[-175.0208238979999,67.4529663690001],[-175.0561010409999,67.46015045800006],[-175.07982337099995,67.481146552],[-174.96393795499995,67.44525788],[-174.92902584499993,67.42649974200005],[-174.9133615759999,67.41337642300003],[-174.92135093999985,67.39913907],[-174.91491959899994,67.380995527],[-174.8801394429999,67.3858229770001],[-174.8471166659999,67.38556549700003],[-174.80610902099994,67.36467088600013],[-174.7770987279999,67.32843719800009],[-174.7564355799999,67.30323678100008],[-174.79771887899992,67.29804108300009],[-174.81763285899984,67.29524986300005],[-174.84206871299995,67.28968370300011],[-174.83789005399987,67.28181022000014],[-174.8602545989999,67.27545843700013],[-174.86010034399993,67.26363598100009],[-174.8559502899999,67.25812865000013],[-174.85384024699994,67.25261696000007],[-174.87614934599992,67.24468886500001],[-174.86379896899987,67.23525978200001],[-174.88001415399992,67.22970816700014],[-174.88192801299994,67.22103626000002],[-174.88993201399995,67.211563136],[-174.87749565999988,67.19504446300009],[-174.88542539999992,67.18084519000011],[-174.8850645429999,67.15563452900015],[-174.88682111299985,67.13672166400009],[-174.8906465999999,67.12095512200001],[-174.90458227899995,67.10437807300003],[-174.91242705799993,67.08781287600006],[-174.9040331879999,67.06813023299999],[-174.89775462599988,67.05395728900008],[-174.90760809399993,67.03738496100011],[-174.88723975599987,67.0256077270001],[-174.86080989299992,67.01225544100014],[-174.87072593499988,66.99962328700015],[-174.85228945899988,66.9783639890001],[-174.8098240569999,66.96660326699998],[-174.79039466099994,66.93968333500003],[-174.70002115099987,66.91652040700002],[-174.72609094199984,66.91308603900008],[-174.75863715999986,66.90877783900014],[-174.76285577299987,66.89940429200011],[-174.7540284319999,66.88835083200011],[-174.7343537889999,66.87646374300012],[-174.72986516299994,66.86285053700006],[-174.72313468199985,66.84243184700001],[-174.7077952119999,66.82202716300007],[-174.70758345199994,66.799044795],[-174.6987686389999,66.77947883600008],[-174.68603495199994,66.76227928100012],[-174.68782013799995,66.7324168790001],[-174.70710259099985,66.71791400800005],[-174.71175160499993,66.74604338000002],[-174.76369773099992,66.75365557200014],[-174.77439297999985,66.74596834200013],[-174.79804126099995,66.73995695800012],[-174.81300299099985,66.73140004599999],[-174.8215063149999,66.72371103799999],[-174.83421579599988,66.70835089399999],[-174.8556129329999,66.69893119800015],[-174.89008000499985,66.69630317200013],[-174.90714160399986,66.68518974400014],[-174.9420059889999,66.68671295800006],[-174.97411048099988,66.68211497600011],[-174.97133461099992,66.66541324800012],[-174.92584896599985,66.65275323100015],[-174.9019855789999,66.643438174],[-174.87366419599988,66.62815513700015],[-174.8605894969999,66.62220766600011],[-174.86028017199988,66.6094195640001],[-174.8064438069999,66.59251683700008],[-174.6993024919999,66.60035328800002],[-174.60693686799988,66.574910194],[-174.52760305899992,66.54600843700008],[-174.46771444799987,66.54005900700007],[-174.43566316299987,66.53154498900001],[-174.42930295999986,66.502614135],[-174.3952415209999,66.47452336100012],[-174.41656654899984,66.47538324200004],[-174.46131422599984,66.45923143400007],[-174.46134765299988,66.4464662380001],[-174.45927359999982,66.419230461],[-174.46567888599995,66.40135683800013],[-174.4560440749999,66.37140534100003],[-174.43451900899984,66.35635000200001],[-174.3914332139999,66.3553838270001],[-174.3893764579999,66.33751094000012],[-174.41476446399992,66.34775098200005],[-174.43807872799985,66.34351564100008],[-174.4571227489999,66.32398071400014],[-174.43810489799992,66.31119989200012],[-174.46349997599987,66.27974813800007],[-174.41286713299985,66.27114853600014],[-174.35367570399993,66.27701985200012],[-174.30482728299992,66.30252528800004],[-174.29617778299988,66.32635429700018],[-174.29605750599987,66.3425275560001],[-174.36819079899993,66.33748571700006],[-174.2959643759999,66.35444836800015],[-174.27247771199993,66.37144852800004],[-174.2362183599999,66.38842011100017],[-174.16597401599992,66.39937549400004],[-174.16364444899992,66.41554283300015],[-174.15281699499985,66.43082973700014],[-174.1632513099999,66.44701260900008],[-174.22288954499993,66.4445653800001],[-174.2249405499999,66.4522255720001],[-174.20555642499994,66.47260996400017],[-174.16523422799992,66.45892259300008],[-174.13329599899993,66.45800820400002],[-174.07990825299984,66.4672420990001],[-174.01590711799986,66.4721713150001],[-173.9713134789999,66.46352324100017],[-173.9525101329999,66.44559444700018],[-173.9721017669999,66.42524929400017],[-173.97887070999988,66.40570543300011],[-173.96421556099995,66.39373512200011],[-173.9516620849999,66.38347126000006],[-173.93289144199989,66.3663727530001],[-173.93316034499992,66.35360342200012],[-173.92918743099992,66.34081798100009],[-173.95256778599986,66.33834554400006],[-173.9760765079999,66.32905886400012],[-174.00382626399985,66.31893552800007],[-174.0189067399999,66.30536535400002],[-174.02984651499995,66.28494979300014],[-174.02166482299987,66.26873526300012],[-174.0325199259999,66.25258222100017],[-174.03068697599994,66.23638934399999],[-174.01618828599987,66.22015586400003],[-173.99931266499988,66.219249533],[-173.97168256099985,66.22853035700014],[-173.95652202399992,66.247222734],[-173.92870362799994,66.263309388],[-173.88386418499994,66.28274816200015],[-173.81592920699987,66.2944471600001],[-173.79653885599993,66.30799286200009],[-173.8470466569999,66.31838359700005],[-173.88728773599982,66.31766776600007],[-173.89535990199994,66.33644210100012],[-173.85910342199986,66.34481086100004],[-173.82098078299987,66.34381905200014],[-173.7722214379999,66.34533370500004],[-173.73885289399982,66.35346203800007],[-173.70525593699995,66.37052394700011],[-173.71894985299994,66.39851951100009],[-173.71393400199986,66.41121268300007],[-173.69302656299988,66.42449088300012],[-173.6911298159999,66.43909886799999],[-173.71328170099991,66.44361874500014],[-173.72891480099995,66.45701271000017],[-173.81140337699986,66.47059658400012],[-173.80792809099992,66.48838502600013],[-173.8331413439999,66.506251196],[-173.87607256299987,66.51525136400011],[-173.91432740499985,66.51787573200004],[-173.9494205509999,66.51857576300013],[-173.97803862199987,66.52942968800015],[-174.02753327299985,66.52822865300006],[-174.06104876499984,66.52953817800005],[-174.10092982599988,66.53720471000005],[-174.1264524769999,66.54612499700015],[-174.15844066099984,66.53279017900012],[-174.21435928799988,66.56142552200002],[-174.2639499779999,66.56587565500014],[-174.19676200399988,66.58940798600015],[-174.08138635399987,66.61415007300018],[-174.02680427999994,66.62679684500002],[-173.96964417599986,66.64816866800005],[-173.9305513979999,66.66762694600006],[-173.92369562099992,66.68678088600008],[-173.9340432549999,66.70554346600014],[-173.9357791119999,66.72512776400008],[-173.93545605899988,66.740448368],[-173.92875817999993,66.75149039300005],[-173.9349066239999,66.765975052],[-173.9345919939999,66.78043832000007],[-173.94730333999985,66.79154174700012],[-173.94474764499986,66.81025048600016],[-173.95732543899987,66.82815741400005],[-173.9655932259999,66.84605082300006],[-173.98033795499995,66.86566701200003],[-174.00596391699992,66.884462784],[-174.02299944899988,66.90067897400014],[-174.01842081199987,66.91343035300004],[-174.01594335699988,66.92959230800015],[-174.0177758379999,66.94746965100016],[-174.0262143619999,66.96111089800006],[-174.06075396799991,66.97567211700012],[-174.10860252699982,66.97663974200007],[-174.1607612079999,66.9810023920001],[-174.1912436569999,66.9793559430001],[-174.2391915929999,66.97178522600005],[-174.25003073899993,66.97606007200007],[-174.2041562449999,66.99214217300012],[-174.18435832099988,67.0091175950001],[-174.19069056,67.02702024200009],[-174.2342171869999,67.03474622200012],[-174.28212658899992,67.046761142],[-174.4087958489999,67.02731910900003],[-174.4742347449999,67.01882714700004],[-174.49605294999992,67.0213868820001],[-174.3563086119999,67.0613579210001],[-174.39782148099994,67.06224936700012],[-174.5572114439999,67.03501562800001],[-174.61620982099993,67.04095538300005],[-174.6120003889999,67.0614140290001],[-174.57493098399988,67.07677291800012],[-174.1966357149999,67.08071685700011],[-173.90587370099988,67.08085336100012],[-173.7508386549999,67.07343162900004],[-173.65404574499993,67.08835062300007],[-173.6464688849999,67.11561485300003],[-173.60737669799988,67.10603986700015],[-173.5470781699999,67.09067684000014],[-173.4793547569999,67.07912609500012],[-173.44659383499987,67.07460627600007],[-173.4555565109999,67.06954738700001],[-173.48191264099987,67.06887992200002],[-173.4952850599999,67.06299543500013],[-173.4937402159999,67.04420250300012],[-173.4635815879999,67.02948733],[-173.4305856859999,67.03352311],[-173.42788199699993,67.04715640000002],[-173.43168436899992,67.06254986100014],[-173.41146152499994,67.07520815300013],[-173.38939558999994,67.0784592940001],[-173.28680579799993,67.0674241930001],[-173.1430186969999,67.05256301900009],[-173.07125959799993,67.04423252400012],[-173.0803097729999,67.03833588300002],[-173.10009690999993,67.03595383700012],[-173.15048373599993,67.03384663300001],[-173.20710582399988,67.03946612200008],[-173.2372323849999,67.049951605],[-173.2458640999999,67.05258342600008],[-173.27215908099984,67.05195053300012],[-173.27461897099994,67.04599053900002],[-173.26402708099994,67.03822706100009],[-173.26219709399984,67.03052576900014],[-173.2578832669999,67.0218773460001],[-173.22786683899994,67.01660869700008],[-173.19514134699992,67.01461666400009],[-173.1452686529999,67.00563474900015],[-173.14337041599995,66.99964548900012],[-173.14620632699985,66.98602411100008],[-173.1703745569999,66.982829467],[-173.2007046719999,66.98821399000008],[-173.2378348759999,66.98853318300003],[-173.26842250999988,66.98878958200011],[-173.2949550529999,66.98132764100008],[-173.30432573399992,66.96691053000002],[-173.30947076099991,66.9507687670001],[-173.29927254299992,66.93621084800009],[-173.2908523979999,66.93018410800009],[-173.297871,66.92001679700003],[-173.30907156799995,66.91328756000014],[-173.3073415099999,66.90390520400011],[-173.29048259499984,66.89270512100013],[-173.26729255199993,66.87804859200016],[-173.29584851499993,66.87145298400004],[-173.32017067299992,66.86226538100006],[-173.31883914999986,66.84436933500011],[-173.3194375369999,66.83159802900013],[-173.30254162499995,66.82210510500012],[-173.24154217099985,66.828454304],[-173.18318444199994,66.82543376100001],[-173.14204683999986,66.82424096400008],[-173.10228274499994,66.83752123800015],[-173.08657591099993,66.84674686800018],[-173.09924023199991,66.85281669700014],[-173.12497286399991,66.85814781699999],[-173.16153670099987,66.86441903899998],[-173.1763708669999,66.87135477800008],[-173.17567755599993,66.88411905900007],[-173.1729477089999,66.89431147400008],[-173.17470568499988,66.9019878810001],[-173.2138225569999,66.90316790500013],[-173.22647860299992,66.91093506300008],[-173.20647955799996,66.9184312600001],[-173.16090650399988,66.91548892400012],[-173.15334333499993,66.93414812800016],[-173.16116455699992,66.9503877070001],[-173.16273541499987,66.96146547700006],[-173.1535440039999,66.96989421400015],[-173.12072795499995,66.973022363],[-173.08322311699987,66.98292904900016],[-173.07396264699992,66.99307322900006],[-173.06322712099993,66.99042516499999],[-173.06833175399987,66.97683839899997],[-173.07754606699984,66.96754857800005],[-173.06537012799993,66.95211504800001],[-173.0511850869999,66.93410909900003],[-172.9957218469999,66.91743223300016],[-172.8858495799999,66.9035936880001],[-172.78232897099988,66.89400418600015],[-172.66583008999984,66.88504259400013],[-172.61549480099995,66.891268315],[-172.60559837199992,66.90732777400012],[-172.61534314599993,66.92191705300014],[-172.56985159699985,66.92052630400009],[-172.5512652019999,66.90838146300011],[-172.5038443659999,66.90439096900015],[-172.41168553499992,66.91681819800006],[-172.36248657099986,66.93321336000018],[-172.4978480379999,66.97841619400005],[-172.65746008999992,66.99144114800013],[-172.8485116489999,67.00967974500018],[-172.9284764819999,67.02157012000008],[-172.95703850899986,67.01844539300006],[-172.9945890699999,67.010270071],[-173.02487918899993,67.0139491610001],[-173.03523508299986,67.023414619],[-173.0258493319999,67.03527228700004],[-172.98634417699992,67.03917524300003],[-172.78810445899992,67.03204967300012],[-172.7363006839999,67.0238131320001],[-172.64109302999992,67.01336202800003],[-172.4078831479999,66.98664801900009],[-172.1947029649999,66.96073422800005],[-172.05637464199987,66.95021111000013],[-171.98138236699992,66.95930203500005],[-171.9284096809999,66.96613384900014],[-171.94287795399993,66.97319273300013],[-171.93354215199994,66.97901301200015],[-171.89519425099985,66.97072856099999],[-171.88968532199985,66.96126004600013],[-171.82106272099995,66.95077416600009],[-171.78594241499994,66.95275628500006],[-171.71851680999993,66.950777496],[-171.6402153069999,66.92981461300015],[-171.62966867599988,66.908306231],[-171.66814111499988,66.89702942500016],[-171.69416894399995,66.87957169800016],[-171.6711881159999,66.85047324700004],[-171.63003331099995,66.83005821200011],[-171.5625339299999,66.80889981400007],[-171.42626952999984,66.77485204900016],[-171.39129083799992,66.77937648200003],[-171.3534006729999,66.77185259800005],[-171.33090093599984,66.74498193500013],[-171.37495186299992,66.73544908700008],[-171.3880787509999,66.71518316100016],[-171.3633593289999,66.67482907200018],[-171.2731302619999,66.64064262800015],[-171.0782364569999,66.56720612200012],[-170.98421668999987,66.54162656500007],[-170.90872503999987,66.5160709880001],[-170.87592525899993,66.51536692900002],[-170.85973059799986,66.51105377800009],[-170.82868404899995,66.49184804900013],[-170.7938940089999,66.48314036700008],[-170.7598770819999,66.46442291900009],[-170.7421361969999,66.46015045800009],[-170.72838294199988,66.45477936400012],[-170.70543372299989,66.43138255400014],[-170.66576087099986,66.41803620000003],[-170.6324356759999,66.39931875200016],[-170.5807999339999,66.36082591400006],[-170.5652563139999,66.35358307500006],[-170.49482174399992,66.34406159100014],[-170.38519288399988,66.31653175600003],[-170.40322472399987,66.30706744900006],[-170.4327319979999,66.30286687100005],[-170.48351195199993,66.29424272700005],[-170.51403204699986,66.28343582600012],[-170.52022227699987,66.27035273500003],[-170.5225764979999,66.25551780800005],[-170.5382318539999,66.23440452199998],[-170.59114237799992,66.23735904500002],[-170.6530655589999,66.24848053600006],[-170.62568111899992,66.23480866100012],[-170.5952805649999,66.22444112000004],[-170.51093647399992,66.22543399500002],[-170.48761041399993,66.24303782500014],[-170.46042208299994,66.25888752300015],[-170.42936846899988,66.27298048100012],[-170.39035292099987,66.28520683699998],[-170.35211603499994,66.29247933699999],[-170.31495989199988,66.29314880100004],[-170.27425708799987,66.29040386700005],[-170.2150506249999,66.27555494900004],[-170.18399564499984,66.26476951100001],[-170.15385774599991,66.249023907],[-170.14186471799985,66.22383824000015],[-170.10620437999995,66.19304745300015],[-170.1289772529999,66.18043096000004],[-170.16223079599987,66.17803508600014],[-170.20383252599993,66.174230111],[-170.2347305979999,66.18577708500008],[-170.2603086129999,66.17909999400014],[-170.28883596399993,66.17987956700007],[-170.33836829299992,66.18577708500008],[-170.22358150899987,66.148138739],[-170.13626735799994,66.13924380800016],[-170.11413611399985,66.14855759400011],[-170.0858318699999,66.16928963400015],[-170.04470673399985,66.16978729000003],[-169.97492428299995,66.14569733300006],[-169.94737708199992,66.14484284100014],[-169.9226781889999,66.1502953150001],[-169.91645260299984,66.1640485700001],[-169.93256588399993,66.17153554900007],[-169.97105872299994,66.180161851],[-170.0145157539999,66.18891022300015],[-170.04356848899985,66.19330475500014],[-169.99091549399992,66.19013092700008],[-169.95209713399993,66.18378327000012],[-169.9067276679999,66.16962311400012],[-169.81159420499995,66.157171942],[-169.7184952459999,66.13279857000003],[-169.70746822799993,66.13117096600003],[-169.70091712099995,66.128648179],[-169.6998184889999,66.12262604400009],[-169.6998998689999,66.11497630400005],[-169.68016676999991,66.10101249000003],[-169.65450108399995,66.08530484300015],[-169.6413841899999,66.06832743700006],[-169.6561160689999,66.05553525400008],[-169.67989490299988,66.0380562460001],[-169.69520857199996,66.0219705010001],[-169.7186102839999,66.00613326900013],[-169.7757197559999,66.006239258],[-169.82500733299986,66.00443151000009],[-169.8666213399999,66.0222442800001],[-169.89144713699991,66.04285290500003],[-169.98151607999992,66.03900788000013],[-170.05447121999993,66.02115182400003],[-170.14303148699986,66.00382917399999],[-170.23656457499987,65.9551718580001],[-170.34112398899993,65.93653924000013],[-170.3752978199999,65.92589097200005],[-170.4269052179999,65.9074301890001],[-170.50974791399986,65.8699431930001],[-170.60631262899992,65.86131419500008],[-170.6258031889999,65.85065338700004],[-170.6016739569999,65.84731679900001],[-170.5657852859999,65.85321686400013],[-170.53241939999992,65.85272858300006],[-170.51593990799992,65.83014557500017],[-170.52277584499993,65.81683991100006],[-170.57115637899994,65.76121653900013],[-170.53697669199988,65.73175690300015],[-170.53022213399993,65.7202822940001],[-170.54088294199988,65.70473867400001],[-170.54320227799988,65.69985586100013],[-170.54096432199992,65.69537995000015],[-170.53547115799992,65.69106679900007],[-170.53050696499986,65.68598053600014],[-170.53022213399993,65.67934804900007],[-170.48877325299995,65.67075769100002],[-170.5202322029999,65.64217302200014],[-170.5352767369999,65.61814693500004],[-170.5881657239999,65.60456584500015],[-170.66735612799988,65.59954598500003],[-170.87543697799993,65.62335846600001],[-170.89256751199989,65.62946198100003],[-170.89948482999986,65.64826080900015],[-171.05170650899993,65.68573639499999],[-171.14731026099992,65.69499983000007],[-171.16898094099992,65.71367721500009],[-171.2083771839999,65.75094263400014],[-171.26608366399995,65.77201435200011],[-171.3851202389999,65.817570167],[-171.4632654699999,65.83258962800005],[-171.46082373399992,65.81933757300014],[-171.43567077699993,65.795652529],[-171.41811209799994,65.775430018],[-171.40029690699993,65.75687802500006],[-171.38914954299995,65.74607982000013],[-171.31786048099994,65.73395416900006],[-171.33014889199987,65.728949286],[-171.34357662699986,65.727240302],[-171.37181555899986,65.72772858300009],[-171.36030025899993,65.70966217700006],[-171.34333248599995,65.70001862200009],[-171.30353756399995,65.6861839860001],[-171.26386471299995,65.65558502800017],[-171.2455541659999,65.65135325700005],[-171.16681881399987,65.64744700700005],[-171.14594479099992,65.64179108300006],[-171.08283849999992,65.63412664400006],[-171.04496814799992,65.62220487700006],[-171.03266354099995,65.59853750200007],[-171.02363033799995,65.58315664300012],[-170.9818123269999,65.59205382800018],[-170.9707600779999,65.55146178700012],[-170.9753256219999,65.511143614],[-171.00896779899992,65.48909622000012],[-171.0386539159999,65.46698723200011],[-171.1599828769999,65.47939687700016],[-171.19114717499988,65.4968688230001],[-171.25089279199992,65.5219910250001],[-171.40295199699995,65.52092742100001],[-171.55566310999993,65.51008013100012],[-171.90374235699989,65.4607710250001],[-172.03420330199987,65.47443813600002],[-171.80839717399988,65.48932711600013],[-171.74361916599992,65.49966127400005],[-171.7777022349999,65.51216961799999],[-171.8611395199999,65.51845009500015],[-171.95762051399993,65.51654791200004],[-171.99060674199993,65.53772388100005],[-172.02548587299984,65.54820613600005],[-172.06464596299992,65.55756256700006],[-172.07197018099993,65.56264883000007],[-172.0933324859999,65.56801992400013],[-172.11340763099992,65.54632115900013],[-172.14617076999986,65.53693198100017],[-172.17093371899992,65.527410885],[-172.19792426899988,65.53773118600013],[-172.2600805329999,65.54523346600003],[-172.26402616799987,65.55687991500015],[-172.23511199499987,65.56800365600013],[-172.20602880399989,65.58076598200013],[-172.22863449199986,65.59595892600008],[-172.2673800549999,65.60973780500017],[-172.32235176799992,65.62211315500004],[-172.2972114379999,65.63493641200002],[-172.27205142799988,65.64775043800005],[-172.2904819789999,65.66617407000003],[-172.33967551099983,65.6537164090001],[-172.35191809799994,65.67251211100016],[-172.36510169199988,65.67584870000009],[-172.40156178199993,65.68101703100014],[-172.42973469899994,65.67976195500013],[-172.46666419199985,65.68650950700011],[-172.68382727799994,65.704250393],[-172.75556393099993,65.68984609600015],[-172.7907201809999,65.68768952000015],[-172.82551021999996,65.69110748900006],[-172.85960852799985,65.69985586100013],[-172.82457434799986,65.6715355490001],[-172.76923580599995,65.66486237200003],[-172.66100012899992,65.67251211100016],[-172.66962643099993,65.66307200700005],[-172.68378658799995,65.65322500200004],[-172.67441767699992,65.6235180930001],[-172.64279053799987,65.61817797700003],[-172.57920206599994,65.61242450700014],[-172.48370358199992,65.60622178300004],[-172.38972210399984,65.581816507],[-172.37923567599987,65.56350791300012],[-172.3888194739999,65.54382837900012],[-172.39811735399994,65.52745335800007],[-172.34760494699992,65.501613674],[-172.32518469999994,65.48749420800007],[-172.31968738199993,65.46525450600008],[-172.3847697259999,65.4792750650001],[-172.41622407999992,65.47618219700009],[-172.42802695199993,65.47045908600005],[-172.42575971799994,65.463364341],[-172.39791986699984,65.45709013200012],[-172.39047998699985,65.44403541499999],[-172.38860854499993,65.432236488],[-172.35534660299993,65.42352074400016],[-172.26410446599988,65.41821282600002],[-172.16924567199985,65.4447678690001],[-172.1213764899999,65.48397874300018],[-172.09340311799986,65.48357052100006],[-172.16248650599988,65.42069229300007],[-172.18976158299986,65.35178478100015],[-172.20294967899994,65.324536826],[-172.1852113609999,65.29867673100013],[-172.17955393199995,65.26484725600007],[-172.18853877999987,65.2424498410001],[-172.21557172899986,65.23948609600008],[-172.24950110599994,65.23362864800013],[-172.2769262359999,65.25470612200014],[-172.30793209499993,65.26732005400014],[-172.34150143099995,65.27358633000007],[-172.37677975199986,65.27521393400009],[-172.40025794199983,65.27301666900011],[-172.44603430899986,65.26325104400016],[-172.51146399599992,65.26056549700009],[-172.53123938699994,65.25763580900015],[-172.5508520169999,65.25071849199999],[-172.57746334499996,65.24770742400007],[-172.63630123599992,65.26911041900003],[-172.66816158799995,65.27521393400009],[-172.68150794199988,65.27350495000009],[-172.6922094389999,65.26837799700009],[-172.69941158799992,65.25975169499999],[-172.70197506399992,65.24762604400009],[-172.6965225899999,65.23602936400006],[-172.68329830599995,65.23041413000007],[-172.66734778599994,65.22821686400009],[-172.55064299799994,65.20602686700012],[-172.4570206369999,65.21938711100002],[-172.36547073499986,65.20841635900003],[-172.31090247299994,65.21995677299999],[-172.28071041599992,65.21063873900015],[-172.2015312899999,65.21687429900014],[-172.1655178539999,65.17797398699999],[-172.1708637299999,65.15232895700017],[-172.2037247389999,65.1322289080001],[-172.22704016799995,65.1322289080001],[-172.25629635299987,65.13743724199999],[-172.25373287699986,65.13515859600001],[-172.24315344999988,65.12319570500007],[-172.22675533799992,65.09975820500001],[-172.21532141799995,65.090277411],[-172.1951798169999,65.08372630400011],[-172.18248450399994,65.08930084800012],[-172.17084713399987,65.09878164300012],[-172.1539200509999,65.10394928600014],[-172.08661440599994,65.09363786300007],[-172.0800929619999,65.07590477000016],[-172.09309144599993,65.05035869199999],[-172.17496044099994,65.01750784000008],[-172.2186310869999,64.9842471670001],[-172.3230041069999,64.94834493600014],[-172.4721163049999,64.92078427600016],[-172.4963272779999,64.91738515800002],[-172.53632564999987,64.92633698100002],[-172.55797278599988,64.92519765800002],[-172.60676021999996,64.9032250020001],[-172.62629146999996,64.89850495000009],[-172.6588252219999,64.89014449300005],[-172.7009042369999,64.87759791400013],[-172.72041285299994,64.86167537200014],[-172.76284560699986,64.83786813500002],[-172.8077805559999,64.84779051600007],[-172.90160980299987,64.85803853800003],[-173.00013329199984,64.85526782700012],[-173.05721064199994,64.83788292700008],[-173.0616605439999,64.81062191000002],[-173.08116666999993,64.7818336510001],[-173.1641163899999,64.76460266],[-173.1604705989999,64.759772034],[-173.05892267399992,64.76888659000018],[-173.0056137709999,64.7958830780001],[-172.97476539599995,64.81345359300012],[-172.92165943999984,64.82123425000005],[-172.86644446499986,64.8159040390001],[-172.80573482999992,64.8033714860001],[-172.78010006399995,64.79254791900011],[-172.75046719699992,64.7623655520001],[-172.7553090939999,64.73346798300015],[-172.81191479299991,64.72585181400015],[-172.83128599499992,64.70987818300001],[-172.85796864399987,64.69877816500015],[-172.89191156499993,64.69415829399999],[-172.94840877299995,64.68805122400006],[-173.0087385349999,64.6755521810001],[-173.04287160799987,64.65968467800012],[-173.0394822819999,64.64680873300004],[-172.97565164099993,64.65445562000016],[-172.89284824899988,64.66522957000016],[-172.8629058109999,64.66343986600013],[-172.84463320399988,64.64886999800014],[-172.87156575199995,64.62812338600004],[-172.9100826749999,64.59458320300003],[-172.96685838899987,64.57239732500014],[-172.96719284299988,64.56113681800014],[-172.89982426099994,64.56396847200013],[-172.86569586499994,64.57825742300015],[-172.84645550299985,64.59422793800003],[-172.8159056289999,64.61173484800004],[-172.78243200899988,64.6050996520001],[-172.74767005099986,64.6024437520001],[-172.7224828769999,64.596869208],[-172.67084713399993,64.59389883000007],[-172.65355383999994,64.59003327000006],[-172.6221410799999,64.57754140800016],[-172.46507727799985,64.55841705900018],[-172.45567786399994,64.54832591400013],[-172.45112057199987,64.5333519550001],[-172.44127356699985,64.51496002800006],[-172.41063391799995,64.48916250200001],[-172.22024405999994,64.40733818600008],[-172.32427258099986,64.40996155500005],[-172.38765789499988,64.40736443800002],[-172.44009455499992,64.39980399200003],[-172.4852820779999,64.387282015],[-172.5452264799999,64.37650450900018],[-172.5900725819999,64.37042419200007],[-172.64020748599992,64.39077383000007],[-172.65404212099992,64.39301178600006],[-172.6814672519999,64.402777411],[-172.71153944399992,64.40034959100012],[-172.71456510699988,64.41816172800016],[-172.71359929499988,64.44390385500004],[-172.73570972099986,64.45045864800007],[-172.7685440749999,64.4584821640001],[-172.7634171209999,64.46930573100012],[-172.76972408799995,64.48094310100011],[-172.7846573559999,64.48908112200003],[-172.8018692699999,64.49603913000011],[-172.81525631399992,64.50405508000007],[-172.84220263599985,64.49769803300016],[-172.88334560599992,64.49471075100017],[-172.9321876379999,64.48370596000011],[-173.01305091099994,64.4615746110001],[-172.9782297779999,64.43888648500003],[-172.91459388899995,64.449807337],[-172.83620521199995,64.45420716300008],[-172.78832359799992,64.43786076300007],[-172.7890637439999,64.41692831100006],[-172.8157972059999,64.39770916300016],[-172.81701677499987,64.36226240900014],[-172.8177947409999,64.33969219000015],[-172.8221713789999,64.32036164200015],[-172.84867654899995,64.30438618300002],[-172.87473544999995,64.30130812599998],[-172.8858045079999,64.3029850220001],[-172.9180530889999,64.33866376600004],[-172.95145533299996,64.33884318500007],[-172.95229559199993,64.31141060300011],[-172.93070122099985,64.2903085940001],[-172.92410386399987,64.26442928800007],[-173.00943787199995,64.25999012400003],[-173.1062645759999,64.2409802800001],[-173.22223873599992,64.26959870000003],[-173.27057857999995,64.28839752800017],[-173.36825284199992,64.28547821500003],[-173.37903722899986,64.31442511900003],[-173.36381003199992,64.34174738800003],[-173.3633761269999,64.36595284700003],[-173.30707775699992,64.39006035700011],[-173.27448482999995,64.43109772300015],[-173.26366126199994,64.44599030200003],[-173.2757462229999,64.45123932500009],[-173.30028235599988,64.4508324240001],[-173.31212317599991,64.45221588700015],[-173.30431067599994,64.468491929],[-173.30341549399995,64.48493073100009],[-173.29987545499986,64.502183335],[-173.2841690749999,64.52114492400001],[-173.29999752499992,64.53827545800014],[-173.3091934889999,64.54547760600018],[-173.31891842399995,64.5484072940001],[-173.33490963399987,64.55109284100008],[-173.34015865799995,64.55776601800012],[-173.34154212099992,64.56659577],[-173.35216223899988,64.58494700700005],[-173.3541153639999,64.59149811400012],[-173.3598526679999,64.59552643400009],[-173.38853919199994,64.59882233300014],[-173.39806067599994,64.60394928600013],[-173.41454016799992,64.616644598],[-173.41698157499985,64.59634023600002],[-173.39635169199994,64.56476471600003],[-173.36945553299995,64.53367747600011],[-173.35309811099995,64.50747304900007],[-173.35676021999987,64.48021067899998],[-173.37694251199989,64.46035390800007],[-173.36599356999994,64.42247487300007],[-173.3851778149999,64.39504074400016],[-173.4563959429999,64.36448377700007],[-173.50507923299992,64.34353097200007],[-173.5982451029999,64.33062777500014],[-173.6354337499999,64.33223063900006],[-173.68407141799992,64.34886302299999],[-173.83348548099988,64.38080475499999],[-173.86994381399992,64.39447663000011],[-173.9893295529999,64.41234776500015],[-174.02322068199987,64.4428460730001],[-174.02700222499988,64.4702781910001],[-174.03836820599992,64.49603735000015],[-174.04229298099992,64.52825823400015],[-174.07244961299995,64.54910946800011],[-174.14582271999987,64.56989166900003],[-174.17731686099987,64.58466217700011],[-174.2416886059999,64.59503815300012],[-174.28477942599994,64.60797760600012],[-174.3245743479999,64.62543366100009],[-174.34679114499988,64.6439883480001],[-174.3009740879999,64.65180084800006],[-174.28473873599992,64.65143463700015],[-174.30589758999994,64.66616445500016],[-174.3485001289999,64.66962311400015],[-174.42841549399986,64.66571686400006],[-174.46662350199995,64.67047760600015],[-174.6522924469999,64.72532786700008],[-174.65867059999985,64.7407065100001],[-174.65187225499994,64.75476036900001],[-174.63831320399993,64.78442774400004],[-174.5919743159999,64.81740485700011],[-174.60793304099988,64.85775375800002],[-174.65322308099988,64.89790099300002],[-174.68262550799992,64.90081730700008],[-174.7035124279999,64.87113266700005],[-174.6912393729999,64.83543548900009],[-174.72308215299984,64.80720989700008],[-174.79597387899986,64.80358698800006],[-174.84701429499995,64.80164988600002],[-174.89798275099992,64.79813808000007],[-174.91400518999995,64.83068821500014],[-174.91874824899992,64.85554260600013],[-174.95193456199985,64.8614966980001],[-174.96958502899992,64.84734734100007],[-174.9686014599999,64.82556586100016],[-174.9676128859999,64.80378754900006],[-174.9776411359999,64.78346752800009],[-174.9877989799999,64.76625591500003],[-175.05677625999994,64.75941447000018],[-175.16288728499995,64.76620055600016],[-175.30200191599988,64.77409276800007],[-175.36487879299992,64.78739365900005],[-175.4114520289999,64.77126366200012],[-175.45684098499993,64.79721539300012],[-175.4136198319999,64.80704966600013],[-175.35252561599987,64.82645911800007],[-175.36835533099992,64.84650781800015],[-175.4010492539999,64.84144762600006],[-175.43719189699988,64.83322988400012],[-175.48179384299988,64.84358610599999],[-175.48294427299993,64.86226047600006],[-175.4947982939999,64.87613030000001],[-175.54023189999987,64.87612539300007],[-175.54596920499984,64.8842227230001],[-175.56171627499992,64.89223867400013],[-175.58103676999986,64.90462704900001],[-175.62279212099986,64.9147809920001],[-175.63129635299993,64.92059967700008],[-175.70045289999987,64.93107211600015],[-175.77479279299988,64.93936498300009],[-175.7725215429999,64.95807276600006],[-175.78833099599984,64.97185668100003],[-175.8506973949999,64.99038320500001],[-175.86473548099988,64.99921295800009],[-175.8469638819999,65.01460272100014],[-175.76746113999988,65.03750375900013],[-175.77320353399992,65.06387502400013],[-175.81224524599995,65.07599518400009],[-175.81049557199995,65.08722565300012],[-175.78004624799988,65.10423617100015],[-175.74067728099988,65.1234352790001],[-175.7350412699999,65.14684510600001],[-175.74811007599988,65.17156649200008],[-175.79670162699995,65.18292877800015],[-175.88155353899992,65.25845450000004],[-175.87255737499984,65.28504277200011],[-175.86250984399985,65.29918862700009],[-175.88802541799993,65.3362085780001],[-175.89139619199995,65.3751233620001],[-175.90883931199986,65.40295276000002],[-175.95738684799994,65.42291901200012],[-175.97704016799992,65.43496328300013],[-176.04405676999988,65.45209381700006],[-176.0875908139999,65.45601814100013],[-176.18277317299987,65.46343680300004],[-176.3492325509999,65.50018952000012],[-176.6262748799999,65.54241380800015],[-176.97655188699989,65.60805898600007],[-177.07076418799986,65.59035527000005],[-177.16439206199988,65.56803002],[-177.24599441499984,65.53886308500007],[-177.3086284859999,65.48903656700016],[-177.41592547299987,65.44074849100014],[-177.7516920559999,65.441619249],[-178.02027135599985,65.440841278],[-178.28398664899987,65.44434628200003],[-178.46110056099985,65.47274127600004],[-178.5049433899999,65.49464660800008],[-178.52879798099985,65.511175848],[-178.5322795039999,65.52298646600003],[-178.51960440099992,65.53659040700013],[-178.51189115199983,65.54402956300005],[-178.49388159999992,65.5613846760001],[-178.50202189099988,65.57810123899999],[-178.49398759399992,65.60367767400011],[-178.45824674199991,65.62024010800003],[-178.4612868399999,65.6419190140001],[-178.4436865689999,65.66287751000011],[-178.41108860399984,65.68176542500008],[-178.42423489199984,65.71287875000012],[-178.47191321499992,65.74823639500012],[-178.51353919199988,65.762640692],[-178.58869769799986,65.73047183700014],[-178.62821694199988,65.7294998260001],[-178.65046139199987,65.76972077000006],[-178.6357315749999,65.77488841400007],[-178.6466772129999,65.78066640800013],[-178.65815182199992,65.78270091400007],[-178.68382727799988,65.78237539300011],[-178.6923721999999,65.78449127800006],[-178.69884192599991,65.78961823100015],[-178.70470130099986,65.79612864800005],[-178.75190182199992,65.8369815120001],[-178.7667130199999,65.84686920800003],[-178.8725072909999,65.89394765800002],[-178.9032690089999,65.91958242400007],[-178.86884518099987,65.93817780200008],[-178.89513098899988,65.97724030200014],[-178.9783829419999,66.04926178600006],[-178.95673580599993,66.048285223],[-178.93586178299992,66.04116445500013],[-178.8964330719999,66.021918036],[-178.8338110019999,66.00556061400009],[-178.81480872299989,65.997748114],[-178.79889889199995,65.99408600500014],[-178.72533417499986,65.99192556700008],[-178.68425611399994,66.01257187500012],[-178.66941898099995,66.04728953400006],[-178.69871985599994,66.076402085],[-178.6824438139999,66.10187409100008],[-178.61624370999988,66.10675337400012],[-178.5592881809999,66.103073113],[-178.52713422299988,66.11907701000017],[-178.49567545499985,66.14012730100016],[-178.5136679279999,66.15619158000008],[-178.52837789699993,66.17106140400001],[-178.5060500209999,66.19062416000011],[-178.49328659699992,66.21121980300013],[-178.5040144279999,66.21983192000012],[-178.5293676419999,66.22467682500017],[-178.5221654939999,66.2460798200001],[-178.54015051999994,66.26837799700014],[-178.53001868399988,66.273871161],[-178.52061926999986,66.28148021000011],[-178.50291907499985,66.29938385600008],[-178.4982804029999,66.30890534100008],[-178.50243079299986,66.31683991100014],[-178.50926673099988,66.32461172100015],[-178.51288814999992,66.33380768400012],[-178.46230194699987,66.36789054000009],[-178.47712404399988,66.38276195900006],[-178.5022218399999,66.38091537000004],[-178.5200681099999,66.37289154400015],[-178.5404711959999,66.36099876000014],[-178.53916759699987,66.35215304300011],[-178.5647560609999,66.35408102100003],[-178.60371913999992,66.36075604500014],[-178.60478771199988,66.34677966500006],[-178.60604460099995,66.33406669600005],[-178.61082847899988,66.32380490000018],[-178.6120177129999,66.31109262100013],[-178.6223980289999,66.29577707300008],[-178.6655335829999,66.25868036500005],[-178.72290249499991,66.20974704300006],[-178.7524061799999,66.19099284100015],[-178.7851345609999,66.16724307800008],[-178.8957814429999,66.14971082000012],[-178.9824393229999,66.15894745300001],[-179.04723059799989,66.19944896000011],[-179.06379146999987,66.21246979400009],[-179.1176651679999,66.24266185100011],[-179.12922115799992,66.25161367400013],[-179.1218155589999,66.27045319200009],[-179.08942623599992,66.29214101800007],[-179.08202063699994,66.30621979400011],[-179.09496008999994,66.3456078150001],[-179.12616939999992,66.38906484600012],[-179.16429602799988,66.41437409100017],[-179.1981095039999,66.39931875200016],[-179.1807348299999,66.373236395],[-179.1772354809999,66.34438711100007],[-179.17756100199992,66.31557851800012],[-179.17145748599995,66.28945547100008],[-179.24677486899992,66.29205963700018],[-179.28929602799988,66.29970937700001],[-179.32359778599994,66.32465241100014],[-179.4240209629999,66.34406159100014],[-179.39049231699994,66.29564036700005],[-179.37498938699994,66.28937409100011],[-179.33604895699995,66.28302643400015],[-179.32530676999994,66.27545807500002],[-179.31017005099994,66.25104401200015],[-179.2896215489999,66.230169989],[-179.2179477669999,66.18219585500007],[-179.25195469699995,66.14517039100015],[-179.30930190299986,66.12553168600007],[-179.42179104499982,66.11906090999999],[-179.57458280799995,66.11129726600005],[-179.6611221999999,66.12750885600015],[-179.68077551999988,66.13458893400004],[-179.69135494699992,66.14166901200018],[-179.68134518099993,66.14484284100014],[-179.5911759109999,66.14443594000015],[-179.5803930329999,66.14858633000006],[-179.58165442599991,66.15851471600008],[-179.6301163399999,66.16937897300005],[-179.68232174399992,66.18773021000011],[-179.69298255099994,66.18390534100011],[-179.70893307199995,66.16225820500001],[-179.76825924399992,66.10293203300012],[-179.78026282499994,66.07591380400002],[-179.78779049399992,66.03253815300003],[-179.7921036449999,66.02130768400002],[-179.80170650899987,66.01129791900014],[-179.81126868399988,66.00324127800002],[-179.81566321499994,65.997748114],[-179.81749426999994,65.98411692900005],[-179.82872473899994,65.94684479400017],[-179.82689368399986,65.93431224199999],[-179.7666723299999,65.81981028899999],[-179.74986731699988,65.79913971600014],[-179.72325598899994,65.78148021000014],[-179.45726477799988,65.674505927],[-179.39049231699994,65.658840236],[-179.27704439299993,65.63025620200001],[-179.30720639799995,65.6072369],[-179.3031205159999,65.58322320000003],[-179.32126554899986,65.5745246200001],[-179.26051041099987,65.53217898500002],[-179.2988856359999,65.50083704700016],[-179.36147566099993,65.46857951300005],[-179.4021192599999,65.45118924200001],[-179.41450421599993,65.43870864900005],[-179.46400200499988,65.41699067300006],[-179.4990030319999,65.39571123800012],[-179.48895077599988,65.36577431200008],[-179.48615937599993,65.34972299400006],[-179.5214175679999,65.33042975700006],[-179.51276435399987,65.30850700400002],[-179.52192906199994,65.27789720200015],[-179.52420989699993,65.23536073200007],[-179.58781558099986,65.20197056800005],[-179.62495108899992,65.16862840200015],[-179.66308983899992,65.14126325699999],[-179.69201728399992,65.14232486800002],[-179.74000332299985,65.14276027200007],[-179.77550217299995,65.12749156600007],[-179.80546671599987,65.10838618700016],[-179.83101257299995,65.0914323520001],[-179.87668259499995,65.07981268900012],[-179.89931567999992,65.07299781500008],[-179.93619984399993,65.06568208800014],[-179.9999865719999,65.06622953500005],[-179.9999999999999,65.06622947500016],[-179.9999999999999,65.06925207800005],[-179.9999999999999,65.567867036],[-179.9999999999999,66.06648199400014],[-179.9999999999999,66.56509695300012],[-179.9999999999999,67.063711911],[-179.9999999999999,67.56232687000015],[-179.9999999999999,68.0609418280001],[-179.9999999999999,68.55955678700015],[-179.9999999999999,68.98236981000012],[-179.99998817099987,68.98236698200004],[-179.7127172519999,68.91791413]]],[[[54.640147332000105,68.95648834800006],[54.602549675000056,68.9545759140001],[54.58025149800002,68.95746491100013],[54.57081139400011,68.96405670800011],[54.58863366000011,68.97516510600006],[54.595469597,68.97516510600006],[54.61670983200011,68.99725983300011],[54.62891686300005,69.00584544500005],[54.64332116000017,69.00934479400003],[54.660329623000194,69.00873444200009],[54.67994225400017,69.00551992400004],[54.694834832000225,68.99725983300011],[54.69792728000013,68.98200104400014],[54.685720248000024,68.96869538000014],[54.66382897200012,68.960638739],[54.640147332000105,68.95648834800006]]],[[[59.241384311000076,69.15289948100012],[59.24463951900012,69.14569733300009],[59.23047936300005,69.15424225499999],[59.214040561000076,69.16095612200014],[59.19752037900011,69.16543203300002],[59.173106316000116,69.16913483300006],[59.1619572270001,69.1745466170001],[59.140472852000094,69.18976471600008],[59.124847852000094,69.19647858300011],[59.08366946700007,69.22907135600009],[59.06023196700008,69.24262116100006],[58.78223717500012,69.32648346600014],[58.7620548840001,69.33893463700015],[58.78598066500015,69.34345123900012],[58.81544030000012,69.34076569200012],[59.15072675900014,69.25462474199999],[59.20036868600002,69.22907135600009],[59.19532311300012,69.22606028899999],[59.18555748800006,69.21824778899999],[59.179942254000174,69.21539948100015],[59.19532311300012,69.20449453300007],[59.234141472,69.19000885600003],[59.241953972,69.17755768400009],[59.24073326900012,69.15973541900003],[59.241384311000076,69.15289948100012]]],[[[34.406911655000016,69.35252513200011],[34.3807072270001,69.34145742400007],[34.026621941000116,69.35390859600001],[33.98438561300011,69.362982489],[33.97559655000006,69.36961497600005],[33.9822697270001,69.38141510600003],[33.99805748800023,69.38800690300009],[34.03012129000015,69.39354075700011],[34.121592644000174,69.40566640800002],[34.21583092500006,69.40778229400003],[34.406911655000016,69.35252513200011]]],[[[67.156016472,69.42059967700006],[67.16529381600017,69.41982656500012],[67.21729576900012,69.42055898600007],[67.28687584700006,69.43805573100003],[67.30827884200008,69.43768952],[67.3064884770001,69.42792389500005],[67.24822024800008,69.40485260600009],[67.18425540500019,69.38861725500006],[67.15992272199999,69.37628815300012],[67.14942467500006,69.36774323100009],[67.1321720710001,69.36391836100007],[67.0959578790001,69.36579010600006],[67.07691491000011,69.37164948100009],[66.99537194100017,69.38886139499999],[66.95435631600017,69.41205475500014],[66.93864993600013,69.43939850500011],[66.95337975400011,69.45661041900003],[66.96843509200014,69.45941803600009],[66.97299238400015,69.45425039300007],[66.9785262380001,69.4502627620001],[66.98519941500015,69.44741445500016],[66.99594160200016,69.44139232000005],[67.01319420700005,69.43634674700003],[67.16382897200012,69.420843817],[67.156016472,69.42059967700006]]],[[[50.27588951900006,69.19196198100018],[50.32300866000017,69.15053945500016],[50.31169681100019,69.109808661],[50.24789472700016,69.056586005],[50.169281446000156,69.01162344],[50.11345462300008,68.99567291900009],[50.12061608200011,69.00722890800004],[50.125336134000094,69.012152411],[50.13396243600002,69.01679108300011],[50.123220248000194,69.0389671900001],[50.13933353000019,69.06338125200013],[50.18921959700006,69.10553620000016],[50.2200626960001,69.14423248900012],[50.22331790500007,69.15395742400007],[50.2083439460001,69.15717194200012],[50.18018639400012,69.1533877620001],[50.132985873000024,69.14158763200012],[50.023448113000114,69.09137604400014],[49.983409050000056,69.08502838700012],[49.95492597700016,69.07469310100011],[49.87191816500015,69.02558014500009],[49.85401451900012,69.00934479400003],[49.89503014400012,69.01288483300011],[49.911387566000116,69.009995835],[49.908539259000094,68.99567291900009],[49.892344597000054,68.983547268],[49.82618248800022,68.96527741100012],[49.71973717500006,68.88996002800015],[49.6853947270001,68.8789737000001],[49.642100457000225,68.87490469000015],[49.600271030000016,68.86591217700011],[49.538910352000094,68.835394598],[49.421397332000225,68.81126536699999],[49.33155358200011,68.8159040390001],[49.30534915500019,68.81126536699999],[49.31275475400017,68.80390045800009],[49.24854576900023,68.77997467700011],[48.79761803500017,68.72939687700004],[48.77955162900017,68.73187897300015],[48.7688908210001,68.7367617860001],[48.76075280000012,68.74274323100003],[48.75049889400006,68.74860260600018],[48.734385613000114,68.754584052],[48.72022545700011,68.75702545800011],[48.70818118600019,68.75364817900011],[48.698985222,68.74213288000009],[48.68572024800008,68.73444245000015],[48.59205162900016,68.7308617210001],[48.562673373000074,68.74371979400011],[48.51026451900005,68.77655670800002],[48.41529381600017,68.812974351],[48.38672936300006,68.81753164300012],[48.37468509200008,68.82184479400003],[48.35173587300008,68.84113190300015],[48.33887780000006,68.84544505400007],[48.32715905000006,68.84788646],[48.290537957000225,68.86591217700011],[48.32243899800008,68.87970612200003],[48.33204186300023,68.88580963700004],[48.31706790500019,68.88646067900008],[48.293793165000096,68.89691803600006],[48.28370201900011,68.89948151200015],[48.26954186300011,68.89614492400013],[48.244313998000024,68.88324616100012],[48.23585045700011,68.88239166900001],[48.21941165500019,68.89565664300015],[48.21876061300022,68.90924713700008],[48.22494550900009,68.92487213700018],[48.22901451900006,68.94415924700003],[48.23878014400012,68.96377187700007],[48.25668379000015,68.97443268400012],[48.26587975400011,68.98285553600006],[48.249685092000185,68.99567291900009],[48.24293053500016,68.99518463700012],[48.234548373000194,68.99188873900009],[48.225271030000016,68.99054596600008],[48.21599368600019,68.99567291900009],[48.21168053500017,69.00165436400012],[48.21216881600017,69.00438060099998],[48.214610222,69.00714752800006],[48.21599368600019,69.01308828300007],[48.22136478000007,69.0202497420001],[48.25635826900023,69.044094143],[48.22136478000007,69.05048248900012],[48.21599368600019,69.0539411480001],[48.21697024800008,69.06443919499999],[48.2181095710001,69.06899648600013],[48.21998131600017,69.0729841170001],[48.23910566500015,69.09788646000005],[48.262380405000066,69.11969635600009],[48.27003014400006,69.13279857000008],[48.26880944100017,69.13873932500009],[48.266449415000096,69.17088450700005],[48.26693769600009,69.17755768400009],[48.26319420700005,69.197455145],[48.27230879000015,69.22662995000015],[48.28809655000012,69.25617096600003],[48.304209832000055,69.27680084800012],[48.334320509000094,69.2998721370001],[48.401540561000076,69.33942291900014],[48.4310001960001,69.36277903900005],[48.44695071700002,69.37189362200003],[48.51026451900005,69.3897972680001],[48.565684441000165,69.41998932500009],[48.80632571700008,69.49323151200015],[48.90626061300023,69.50796133000013],[49.0852970710001,69.51703522300014],[49.27173912900016,69.50796133000013],[49.69450931100002,69.39789459800004],[50.02409915500007,69.29975006700012],[50.164398634000094,69.26089101800012],[50.22193444100017,69.229478257],[50.27588951900006,69.19196198100018]]],[[[161.3745223320001,69.54588450700008],[161.38795006600012,69.50747304900015],[161.38990319100006,69.49648672100001],[161.38168379000015,69.47874583500003],[161.38510175900015,69.47304922100012],[161.3893335300002,69.46775950700005],[161.38868248800023,69.46181875200004],[161.38184655000012,69.45612213700004],[161.31430097700004,69.43724192900011],[161.297129754,69.42829010600018],[161.2924910820001,69.41400788],[161.30534915500013,69.40070221600017],[161.35084069100017,69.38043854400014],[161.36068769600004,69.36277903900005],[161.35792076900023,69.350083726],[161.35303795700005,69.34076569200012],[161.35108483200023,69.33209870000006],[161.37435957100016,69.2960472680001],[161.36736087300005,69.27899811400012],[161.31910241000006,69.24266185100005],[161.33472741,69.2245954450001],[161.37435957100016,69.20376211100013],[161.38868248800023,69.18805573100018],[161.38111412900017,69.180609442],[161.387461785,69.1625023460001],[161.38550866000014,69.11904531500015],[161.3917749360002,69.10211823100015],[161.413910352,69.08136627800015],[161.48707116000017,69.02667877800003],[161.51758873800011,68.97988515800016],[161.51498457099999,68.93463776200004],[161.4821069670002,68.90216705900004],[161.42221113400015,68.893255927],[161.40919030000006,68.893255927],[161.42310631600014,68.91474030200011],[161.46192467500006,68.95302969000006],[161.47738691499998,68.97516510600006],[161.45557701900023,69.00096263200008],[161.42188561300023,69.02155182500012],[161.383555535,69.03778717700004],[161.3055119150001,69.06024811400006],[161.14144941500015,69.0873477230001],[161.13477623800011,69.09186432500003],[161.13445071700008,69.09788646000005],[161.13689212300017,69.10431549700014],[161.13990319100012,69.109767971],[161.14161217500012,69.11440664300012],[161.14096113400015,69.13279857000008],[161.13868248800006,69.13768138200014],[161.12728925900004,69.15395742400007],[161.12191816500015,69.167669989],[161.12159264400023,69.17479075700005],[161.13160241000006,69.21698639500009],[161.13119550900004,69.22626373900012],[161.12728925900004,69.23525625200016],[161.1295679050002,69.23822663000006],[161.13184655000018,69.2402204450001],[161.13404381600006,69.24241771],[161.14039147200018,69.26919179900001],[161.16439863400004,69.3054059920001],[161.16895592500006,69.32526276200004],[161.15137780000023,69.35464101800012],[161.0815535820001,69.39297109600015],[161.0659285820002,69.417425848],[161.07325280000012,69.44501373900002],[161.0924585300002,69.46478913000014],[161.11890709700006,69.47846100500009],[161.2539168630001,69.52362702000012],[161.26099694100017,69.52753327000003],[161.2682397800002,69.53375885600018],[161.27849368600002,69.53815338700015],[161.30640709700018,69.53729889500006],[161.31861412900005,69.53888580900009],[161.33741295700008,69.54564036700013],[161.35792076900023,69.55011627800009],[161.3745223320001,69.54588450700008]]],[[[67.22934004000015,69.43353913000006],[67.21436608200011,69.43292877800012],[67.05892988400008,69.45050690300003],[67.04127037900017,69.45758698100009],[67.02182050900015,69.47695547100004],[67.03793379000015,69.49795156500005],[67.15455162900017,69.56012604400017],[67.18824303500017,69.57099030200006],[67.29965254000015,69.58445872600005],[67.31820722700016,69.58307526200015],[67.3279728520001,69.57269928600006],[67.33594811300006,69.55988190300003],[67.34506269600016,69.54865143400004],[67.34498131600017,69.52212148600007],[67.31723066500008,69.48794179900007],[67.28956139400012,69.46600983300006],[67.27906334700006,69.4502627620001],[67.25896243600019,69.4386253930001],[67.22934004000015,69.43353913000006]]],[[[161.41016686300023,69.41551341400005],[161.3750106130001,69.40778229400003],[161.3750106130001,69.41400788],[161.36068769600004,69.41400788],[161.37305748800023,69.42715078300013],[161.40886478000007,69.44147370000003],[161.42221113400015,69.45433177300005],[161.42562910200016,69.4649925800001],[161.42847741,69.51276276200002],[161.42758222700004,69.52130768400015],[161.41537519600016,69.54433828300004],[161.40235436300017,69.58079661699999],[161.394786004,69.59210846600017],[161.45427493600008,69.60236237200009],[161.4631453790001,69.60919830900012],[161.46412194100014,69.62116120000013],[161.46762129000015,69.63117096600003],[161.47510826900023,69.63800690300015],[161.48731530000012,69.64057038000006],[161.52466881600006,69.63873932500017],[161.55909264400012,69.63202545800011],[161.590098504,69.61839427299999],[161.61736087300017,69.595892645],[161.63209069100012,69.57973867400013],[161.63550866,69.5702985700001],[161.63111412900005,69.56110260600006],[161.62403405000023,69.55341217700011],[161.61573326900006,69.53998444200012],[161.6105249360002,69.53375885600018],[161.60767662900005,69.51703522300014],[161.61988366000006,69.4994977890001],[161.62671959700006,69.48285553600006],[161.60718834700006,69.46865469000012],[161.61573326900006,69.45038483300004],[161.58855228000007,69.43618398600016],[161.54835045700003,69.42621491100006],[161.41016686300023,69.41551341400005]]],[[[161.825532572,69.55034623600001],[161.7794394570002,69.54852676300011],[161.7515639000002,69.55323541400016],[161.73496690900018,69.56444713800002],[161.71096944100023,69.5869110310001],[161.6756479530001,69.6020522030001],[161.66561653400018,69.62054810900004],[161.66724363500023,69.636682631],[161.70424884200017,69.63848392400008],[161.7551542650002,69.64034235700002],[161.81711706700017,69.65755330600014],[161.89376693300005,69.65383772300011],[161.90787918600014,69.64744246400012],[161.9037299280001,69.63210869199999],[161.88562390900006,69.61914024200009],[161.8910301010002,69.59497130700008],[161.8986365870002,69.57404028700007],[161.8669360480001,69.55455380299999],[161.825532572,69.55034623600001]]],[[[170.27527685700014,69.77337143300015],[170.27127868300002,69.76379826100005],[170.247539416,69.76380804800006],[170.22375441700015,69.73919563200003],[170.16056431700022,69.70911008500003],[170.10148466500002,69.68721106100016],[170.06596854700004,69.69403181500009],[170.06982560700024,69.70907357300003],[170.0303372130002,69.71451529400015],[169.97896014000017,69.71993461100011],[169.95521037500006,69.72674171800004],[169.97479033300013,69.74180631500003],[170.053700734,69.763763601],[170.1248707040002,69.77337787400013],[170.27527685700014,69.77337143300015]]],[[[169.41228274800008,69.77024974200005],[169.41228274800008,69.76341380400011],[169.30591881600017,69.77024974200005],[169.28565514400006,69.76707591399999],[169.27759850400005,69.75950755400014],[169.28256269599999,69.75043366100012],[169.30250084700015,69.74298737200014],[169.27849368600002,69.71995677299999],[169.28386478000016,69.70392487200009],[169.30046634200008,69.68773021000014],[169.30990644600016,69.66445547100012],[169.30054772200003,69.64533112200013],[169.27898196700002,69.624009507],[169.2347111340001,69.59210846600017],[169.18946373800023,69.575181382],[169.14014733200017,69.57196686400012],[169.0393172540001,69.57786692900008],[168.87452233200023,69.56785716399999],[168.5235294935002,69.63153717700006],[168.1725366550002,69.69521719],[168.13363691499998,69.71320221600014],[168.099864129,69.73956940300006],[168.05990644600016,69.76365794500008],[167.96908613400015,69.775580145],[167.88233483200023,69.79824453300007],[167.79086347700004,69.80833567900012],[167.75375410199996,69.83234284100017],[167.78565514400012,69.85830312700007],[167.82252037900017,69.88100820500001],[167.99105878999995,69.95709870000009],[168.1941024100001,70.008978583],[168.223399285,70.01048411700005],[168.234141472,70.01264069200015],[168.253184441,70.02204010600016],[168.26465905000018,70.024115302],[168.6378686860002,69.98602936399999],[168.68360436300011,69.97085195500001],[168.76807701900017,69.96271393400009],[168.82984459700018,69.939886786],[169.2277124360002,69.90729401200004],[169.27670332100016,69.89557526200004],[169.37232506600006,69.88475169500005],[169.4238387380001,69.87299225500006],[169.44646243600008,69.84910716400002],[169.44898522200018,69.83405182500017],[169.45264733200023,69.82623932500009],[169.45142662900005,69.81867096600006],[169.43962649800008,69.80438873900015],[169.42774498800011,69.79710521000011],[169.41537519600016,69.79218170800004],[169.40845787900017,69.78481679900007],[169.41228274800008,69.77024974200005]]],[[[59.35181725400011,70.35309479400014],[59.43995201900012,70.28705475500014],[59.46794681100013,70.27732981999998],[59.51050866000017,70.27220286699999],[59.533213738000114,70.26487864799999],[59.54297936300023,70.25348541900011],[59.53516686300017,70.21747467700006],[59.535492384000094,70.20848216400013],[59.55396569100011,70.19961172100007],[59.63917076900011,70.20229726800007],[59.70630944100017,70.17812734600014],[59.73129316500015,70.1749535180001],[59.75228925900009,70.17462799700014],[59.76628665500007,70.1713727890001],[59.77393639400012,70.16209544500008],[59.77637780000006,70.14362213700004],[59.78288821700002,70.13149648600013],[59.799001498000194,70.12799713700015],[59.83773847700015,70.12661367400007],[59.92725670700022,70.09857819200006],[59.95573978,70.09829336100005],[60.01026451900012,70.10407135600009],[60.036468946000156,70.09857819200006],[60.05689537900012,70.07880280200014],[60.06788170700005,70.07347239800008],[60.0979110040001,70.065130927],[60.32447350400011,69.96954987200003],[60.328461134000094,69.95726146000005],[60.413828972,69.96271393400009],[60.42986087300019,69.955023505],[60.475922071000156,69.92047760600018],[60.46216881600012,69.911322333],[60.4544376960001,69.89704010600009],[60.45386803500016,69.88076406500006],[60.46159915500007,69.86587148600002],[60.47242272200006,69.85927969000012],[60.50220787900017,69.851304429],[60.51563561300023,69.84540436400005],[60.52003014400006,69.83942291900003],[60.524668816000165,69.830511786],[60.530935092000185,69.8222516950001],[60.53980553500016,69.81867096600006],[60.54769941500016,69.815375067],[60.54590905000007,69.80817291900017],[60.53834069100011,69.80093008000013],[60.52930748800011,69.79759349200009],[60.513845248000074,69.79608795800006],[60.49822024800019,69.79230377800002],[60.46859785200016,69.78050364800008],[60.448496941000165,69.76593659100014],[60.443695509000094,69.75043366100012],[60.45337975400016,69.7354190120001],[60.475922071000156,69.72247955900009],[60.373708530000194,69.73090241100006],[60.35173587300019,69.72247955900009],[60.358571811000196,69.7150332700001],[60.254079623000194,69.68943919500005],[60.20101972700016,69.68512604400014],[60.09489993600001,69.71552155200011],[60.03272545700011,69.72247955900009],[60.00245201900012,69.719875393],[59.97461998800017,69.71246979400001],[59.92042076900012,69.68773021000014],[59.925059441000116,69.68280670800009],[59.93409264400005,69.66787344000012],[59.91309655000012,69.66962311400012],[59.90072675900015,69.67731354400014],[59.89144941500009,69.68683502800015],[59.87940514400011,69.69452545800006],[59.85401451900006,69.698675848],[59.769541863000114,69.69452545800006],[59.56348717500011,69.7150332700001],[59.58008873800017,69.73078034100008],[59.568125847000054,69.74201080900018],[59.546885613000235,69.7509626320001],[59.535492384000094,69.759711005],[59.546885613000235,69.77899811400012],[59.57325280000006,69.78314850500004],[59.602305535000106,69.78245677300009],[59.62208092500007,69.787339585],[59.62370853000007,69.80434804900015],[59.602549675000056,69.8179385440001],[59.47754967500012,69.86347077000006],[59.43148847700016,69.88947174700014],[59.39893639400006,69.89520905200011],[59.365407748000024,69.89459870000013],[59.30486087300008,69.88434479400006],[59.27027428500017,69.88849518400018],[59.23650149800008,69.89838287999999],[59.20720462300008,69.9108747420001],[59.17847741000011,69.91901276200012],[59.08366946700007,69.92047760600018],[58.93970787900016,69.94220612200014],[58.95313561300022,69.93130117400007],[58.97820071700008,69.9199079450001],[59.005381707000055,69.91107819200006],[59.05298912900017,69.9030622420001],[59.132090691000116,69.873277085],[59.10914147200006,69.85976797100012],[59.077403191000116,69.856350002],[59.01596113400009,69.85968659100014],[59.02222741000017,69.873277085],[59.00196373800023,69.87445709800012],[58.97852623800006,69.87905508000007],[58.95720462300019,69.88800690300009],[58.953949415000146,69.89378489800005],[58.94019616000016,69.90595123900015],[58.89877363400015,69.92865631700009],[58.69556725400017,70.00283437700001],[58.570485873000194,70.07880280200014],[58.60450280000006,70.11286041900014],[58.590098504000174,70.11928945500007],[58.55958092500012,70.12457916900014],[58.54916425900015,70.13397858300004],[58.565114780000066,70.13361237200013],[58.61133873800022,70.14020416900001],[58.603851759000094,70.14622630400014],[58.59546959700006,70.1505801450001],[58.58619225400017,70.15322500200001],[58.57667076900007,70.15387604400014],[58.580088738000114,70.15961334800012],[58.58716881600011,70.17544179900007],[58.59083092500011,70.18121979400003],[58.57398522200012,70.18520742400001],[58.55738366000011,70.18252187700013],[58.540293816000116,70.17763906500006],[58.52198326900005,70.1749535180001],[58.515635613000114,70.17682526200015],[58.514903191000165,70.18622467700008],[58.509938998000145,70.19037506700012],[58.4957788420002,70.1938337260001],[58.4529728520001,70.19546133000013],[58.46306399800008,70.20652903899999],[58.49040774800002,70.21898021],[58.50147545700005,70.22955963700007],[58.47966556100001,70.23379140800007],[58.449880405,70.23395416900001],[58.423513217000135,70.23956940300003],[58.412119988000164,70.26032135600003],[58.428965691000165,70.2707380230001],[58.467621290000096,70.27114492400013],[58.82422936300011,70.21588776200012],[58.816742384000094,70.22662995000003],[58.7942814460001,70.24355703300002],[58.78939863400014,70.25348541900011],[58.77719160200015,70.25824616100003],[58.697032097,70.279486395],[58.67335045700011,70.294134833],[58.659922722,70.29946523600006],[58.52230879000015,70.33112213700004],[58.49463951900006,70.33197663000006],[58.519704623000074,70.34760163000011],[58.56039472700016,70.34589264500012],[58.63868248800022,70.33197663000006],[58.63184655000011,70.345648505],[58.64966881600017,70.35309479400014],[58.6751408210001,70.35993073100018],[58.72120201900012,70.36676666900007],[58.72917728000018,70.36904531500006],[58.739024285000106,70.37433502800006],[58.755218946000156,70.38690827000012],[58.761403842000014,70.39687734600012],[58.75554446700019,70.39964427299999],[58.745860222,70.401312567],[58.74097741000017,70.40770091400013],[58.737559441000116,70.41571686400006],[58.73170006600011,70.41665273600013],[58.73064212300002,70.41819895999998],[58.74097741000017,70.428208726],[58.748871290000096,70.43089427300005],[58.776866082000225,70.43451569200012],[58.87281334700006,70.43455638200011],[58.90040123800018,70.44013092700011],[58.9798283210001,70.47060781500006],[59.023610873000024,70.47980377800003],[59.042735222,70.46637604400014],[59.04753665500018,70.45425039300015],[59.05982506600017,70.44428131700006],[59.077403191000116,70.43748607000013],[59.1213485040001,70.43170807500015],[59.31511478000019,70.37164948100015],[59.35181725400011,70.35309479400014]]],[[[66.86443118600019,70.38312409100011],[66.8675236340001,70.38080475500006],[66.84986412900017,70.38312409100011],[66.76368248800011,70.40314362200017],[66.6072697270001,70.46181875200001],[66.59034264400012,70.47304922100001],[66.59644616000011,70.489406643],[66.64014733200011,70.52631256700006],[66.66846764400006,70.538275458],[66.67554772200012,70.53546784100014],[66.66675866000011,70.5206566430001],[66.67115319099999,70.50755442900011],[66.67945397200012,70.49994538000009],[66.68913821700006,70.49380117400001],[66.70085696700008,70.49005768400015],[66.70297285200016,70.48493073100015],[66.69971764400012,70.47748444200006],[66.70753014400012,70.47150299700014],[66.72242272200006,70.46796295800009],[66.73243248800023,70.46328359600007],[66.7356876960001,70.45612213700011],[66.7395125660001,70.45038483300014],[66.7456160820001,70.44692617400013],[66.74903405000012,70.44350820500013],[66.74927819100006,70.43988678600009],[66.75269616000017,70.4362246770001],[66.75912519600014,70.43305084800006],[66.80738366000011,70.40082428600012],[66.8185327480002,70.3964704450001],[66.83708743600012,70.39191315300017],[66.86443118600019,70.38312409100011]]],[[[57.02719160200016,70.57135651200005],[57.055349155000066,70.55853913000011],[57.07211347700016,70.55491771000005],[57.11736087300019,70.55853913000011],[57.19304446700019,70.54144928600006],[57.22169030000006,70.52606842700011],[57.20606530000006,70.510728257],[57.18930097700016,70.51121653900007],[57.101328972,70.53408437700007],[57.05665123800023,70.53851959800015],[57.03541100400017,70.54486725500009],[57.05884850400011,70.52985260600015],[57.12134850400017,70.51605866100014],[57.138438347,70.49705638200005],[57.06364993600002,70.50242747600002],[56.9290470710001,70.53217194200012],[56.898203972,70.55853913000011],[56.91439863400015,70.564683335],[56.92269941500015,70.5659040390001],[56.93238366000011,70.56537506700012],[56.91407311300023,70.57880280200011],[56.859711134000094,70.58527252800003],[56.84302819100017,70.60635000200016],[56.952403191000165,70.58283112200009],[57.01091556100002,70.57680898600007],[57.02719160200016,70.57135651200005]]],[[[162.43458092500006,70.67283763200005],[162.484141472,70.65412018400008],[162.45093834700018,70.65363190300012],[162.3507593110002,70.64052969000012],[162.23780358200023,70.65412018400008],[162.23780358200023,70.66095612200012],[162.2636824880002,70.66181061400012],[162.27182050900012,70.66095612200012],[162.27930748800011,70.66095612200012],[162.29249108200003,70.66575755400002],[162.29851321700008,70.66559479400006],[162.3061629570001,70.66095612200012],[162.3455509770001,70.66205475500006],[162.3628035820001,70.66600169500005],[162.36963951900012,70.66998932500003],[162.3761499360002,70.67894114800005],[162.38168379000004,70.68146393400015],[162.405528191,70.68024323100015],[162.43458092500006,70.67283763200005]]],[[[66.58253014400012,70.50165436400007],[66.56666100400011,70.49876536700005],[66.52833092500006,70.506781317],[66.47820071700008,70.53506094000014],[66.4388126960001,70.56826406500006],[66.41472415500007,70.59682851800015],[66.3973087900001,70.630316473],[66.38892662900011,70.66762929900007],[66.38672936300023,70.69497304900013],[66.38835696700008,70.71063873900012],[66.39673912900011,70.735337632],[66.3997501960001,70.750921942],[66.40552819100017,70.76923248900005],[66.41480553500011,70.786810614],[66.42798912900011,70.79950592700004],[66.44117272200006,70.79791901200011],[66.4612736340001,70.77802155200011],[66.47055097700016,70.77179596600014],[66.4798283210001,70.763861395],[66.48218834700006,70.75324127800015],[66.47575931100002,70.74266185100011],[66.46745853000007,70.73297760600006],[66.460703972,70.72028229400009],[66.45557701900012,70.70453522300012],[66.45435631600017,70.68402741100009],[66.47144616000011,70.66575755400002],[66.49024498800011,70.65591054900007],[66.49675540500019,70.64691803600006],[66.50123131600006,70.638617255],[66.50342858200023,70.6315778670001],[66.50945071700002,70.62494538000006],[66.52540123800021,70.61530182500017],[66.53980553500011,70.608343817],[66.5462345710001,70.60333893400006],[66.55225670700023,70.58612702000012],[66.55925540500013,70.54425690300003],[66.5735783210001,70.51577383],[66.58253014400012,70.50165436400007]]],[[[83.19442277300006,70.37889519700015],[83.0913803450002,70.36111167400018],[83.06527091900008,70.36532894700015],[83.09892616400006,70.39305110700009],[83.1322316870002,70.43380736600012],[83.11773234300009,70.48016611700008],[83.12500619300008,70.523699008],[83.13671576600021,70.56579151000011],[83.13091736200008,70.60925978700011],[83.1470591010001,70.64990855900005],[83.20724549000008,70.68635389600011],[83.22360496700011,70.72699657700015],[83.23118613800014,70.76906195100014],[83.25672166800003,70.801032681],[83.30510887300008,70.80551475300003],[83.37163680800003,70.78827661800015],[83.4694081320001,70.73773494400002],[83.44388361200018,70.6913056640001],[83.37434012600008,70.66362047400013],[83.30476002900011,70.64460434500002],[83.30134887900013,70.605460651],[83.25919110200019,70.54880653600004],[83.26451660800008,70.51112655900009],[83.30869606100006,70.48080660800015],[83.30957222200018,70.44310013300013],[83.25818547300011,70.41973802700007],[83.19442277300006,70.37889519700015]]],[[[161.586680535,70.81801992400005],[161.6105249360002,70.81586334800006],[161.63412519600004,70.81663646],[161.65626061300011,70.81338125200013],[161.67603600400005,70.79877350500011],[161.6622827480002,70.79132721600014],[161.67017662900017,70.77997467700008],[161.68873131600017,70.76068756700012],[161.69459069100003,70.750433661],[161.66521243600002,70.75238678600006],[161.63868248800006,70.7577985700001],[161.57056725400005,70.78766510600009],[161.5551863940001,70.79071686400009],[161.52149498800011,70.79132721600014],[161.50668379000004,70.79364655200001],[161.4786889980002,70.80341217700006],[161.4631453790001,70.80499909100008],[161.47706139400006,70.8097191430001],[161.4869897800002,70.81736888200011],[161.49000084700018,70.82758209800015],[161.48365319100006,70.83974844000012],[161.53052819100012,70.84162018400008],[161.545176629,70.83974844000012],[161.55567467500006,70.83535390800016],[161.57618248800023,70.82245514500012],[161.586680535,70.81801992400005]]],[[[160.69377230400013,70.896297534],[160.6974775240001,70.8868640510001],[160.70610545500003,70.87670869500006],[160.72348066500015,70.83844635600003],[160.74382571700008,70.82542552300005],[160.76397367800007,70.80404488699999],[160.68252988500004,70.80210578000003],[160.597249645,70.7929692100001],[160.50406569100008,70.80501215600002],[160.5095616350002,70.83354572000012],[160.545552119,70.851473687],[160.5528105030002,70.88478811400002],[160.50367272200006,70.89061107000008],[160.48138919400017,70.87739600700009],[160.45074597900012,70.87218586000002],[160.40796959700018,70.91425202],[160.42481530000006,70.92792389500012],[160.45655358200023,70.93475983300006],[160.51783287900017,70.93528880400011],[160.54184004000004,70.93048737200003],[160.67438511800006,70.91421070000014],[160.69377230400013,70.896297534]]],[[[66.47461998800011,70.81928131700006],[66.44727623800023,70.81891510600015],[66.43392988400008,70.82713450700005],[66.44288170700023,70.84662506700015],[66.48796634200019,70.897447007],[66.51905358200023,70.92670319200003],[66.51807701900006,70.93036530200006],[66.51758873800017,70.93512604400014],[66.521250847,70.94025299700017],[66.52344811300011,70.94269440300012],[66.59961998800006,71.00438060100012],[66.60572350400017,71.00324127800008],[66.61426842500006,70.9955508480001],[66.61304772200018,70.98285553600012],[66.60368899800002,70.97182851800007],[66.59245853000002,70.96360911699999],[66.58448326900006,70.95498281500006],[66.5838322270001,70.94684479400014],[66.58969160200014,70.9427757830001],[66.5931095710001,70.93768952000006],[66.5916447270001,70.92999909100014],[66.59424889400012,70.92182038000014],[66.6004337900001,70.913763739],[66.5965275400001,70.90766022300012],[66.58472741000011,70.901312567],[66.573496941,70.89329661700005],[66.56055748800011,70.88597239800005],[66.5511173840001,70.87864817900014],[66.54037519600008,70.85683828300007],[66.53060957100016,70.84137604400014],[66.50847415500007,70.82794830900015],[66.47461998800011,70.81928131700006]]],[[[53.21550540500018,71.35814036700008],[53.239919467000014,71.35443756700012],[53.36980228000007,71.29173411700005],[53.379649285000106,71.28465403899997],[53.39535566500015,71.28050364800013],[53.39185631600017,71.27871328300013],[53.37208092500006,71.27814362200009],[53.35474694100017,71.27973053600012],[53.242198113000114,71.30947500200013],[53.23121178500011,71.31635163000013],[53.21176191500015,71.33380768400009],[53.19971764400006,71.34088776200015],[53.169200066000116,71.34918854400006],[53.1614689460001,71.354885158],[53.16993248800023,71.357652085],[53.185557488000114,71.35578034100003],[53.20093834700006,71.35537344],[53.21550540500018,71.35814036700008]]],[[[52.741058790000096,71.40582916900001],[52.883636915000096,71.37763092700006],[52.90967858200017,71.36733633000013],[52.92383873800006,71.35700104400003],[52.94336998800017,71.33222077000006],[52.95818118600002,71.31891510600006],[52.97486412900017,71.31199778900005],[52.99512780000006,71.30646393400004],[53.01238040500019,71.29779694200012],[53.01954186300023,71.28131745000015],[53.00464928500017,71.27924225500011],[52.91651451900006,71.30898672100011],[52.90349368600019,71.31924062700007],[52.88086998800023,71.34341054900007],[52.86198978000019,71.353664455],[52.80307050900015,71.372259833],[52.7697860040001,71.37775299700003],[52.74463951900005,71.37417226800007],[52.77475019600009,71.370550848],[52.84791100400017,71.34711334800012],[52.87549889400006,71.33319733300014],[52.85271243600001,71.32404205900015],[52.829274936000076,71.32290273600002],[52.77930748800023,71.32575104400014],[52.77930748800023,71.31891510600006],[53.06104576900011,71.23818594000012],[53.11296634200019,71.23309967700003],[53.15674889400006,71.24380117400013],[53.13917076900006,71.25006745000017],[53.12012780000006,71.25185781500006],[53.081716342000014,71.25063711100013],[53.081716342000014,71.25747304900007],[53.097178582000055,71.25967031500005],[53.126475457000105,71.26813385600009],[53.1424259770001,71.27045319200006],[53.160899285000106,71.268988348],[53.19369550900015,71.25983307500003],[53.21127363400015,71.25747304900007],[53.19922936300023,71.24176666900009],[53.19605553500017,71.22646719000012],[53.20582116000011,71.21621328300002],[53.2317814460001,71.2158877620001],[53.208343946000156,71.19717031500012],[53.20460045700011,71.19196198100003],[53.206716342000185,71.18561432500009],[53.2181095710001,71.16803620000015],[53.20460045700011,71.15167877800015],[53.164886915000096,71.13849518400009],[53.14991295700017,71.12710195500013],[53.1497501960001,71.1198591170001],[53.161631707000225,71.10879140800007],[53.1600041020001,71.10293203300013],[53.15105228000019,71.09552643400004],[53.14258873800023,71.09088776200012],[53.13331139400012,71.08808014500006],[53.12191816500015,71.08612702000012],[53.09945722700016,71.08698151200012],[53.07960045700022,71.090521552],[53.062022332000105,71.08836497600002],[53.04688561300011,71.07245514500009],[53.04135175900009,71.034328518],[53.06861412900017,71.01679108300006],[53.10816491000011,71.00739166900006],[53.13933353000019,70.99363841400013],[53.1204533210001,70.97711823100006],[53.06153405000012,70.96621328300007],[53.009776238000114,70.968207098],[53.011892123000194,70.99030182500009],[53.01514733200022,71.00438060100012],[52.97201582100009,71.02912018400012],[52.971853061000076,71.045152085],[52.95630944100017,71.05707428600014],[52.93384850400017,71.06443919500005],[52.79981530000006,71.09296295800014],[52.80347741000011,71.10586172100015],[52.79810631600017,71.1143252620001],[52.77588951900012,71.13051992400011],[52.77540123800023,71.135891018],[52.77605228000019,71.15786367400001],[52.77247155000012,71.16803620000015],[52.75635826900006,71.17670319200006],[52.68433678500011,71.18854401200012],[52.6717228520001,71.1963565120001],[52.65845787900011,71.21246979400009],[52.64283287900011,71.22333405200006],[52.604665561000076,71.23895905200006],[52.55836022200006,71.24900950700011],[52.511485222,71.250474351],[52.450043165000096,71.2357852230001],[52.35181725400017,71.24579498900006],[52.25489342500006,71.27326080900012],[52.228526238000114,71.288031317],[52.21176191500015,71.30809153900005],[52.21705162900011,71.33319733300014],[52.23267662900011,71.34259674700014],[52.257823113000114,71.34894440300009],[52.37029056100018,71.36383698100015],[52.38892662900017,71.37075429900015],[52.412852410000106,71.37636953300013],[52.461761915000096,71.37262604400003],[52.48471113400009,71.37726471600014],[52.506846550000056,71.3847516950001],[52.52955162900011,71.387844143],[52.64665774800014,71.38051992400008],[52.670095248000194,71.37417226800007],[52.70329837300019,71.35537344],[52.72087649800008,71.34931061400003],[52.73845462300008,71.353664455],[52.70329837300019,71.37132396000011],[52.687673373000024,71.38410065300013],[52.68718509200008,71.3976911480001],[52.70866946700008,71.40721263200011],[52.741058790000096,71.40582916900001]]],[[[-175.7981664699999,71.41205475499999],[-175.61729895699995,71.38104889500006],[-175.59894771999987,71.38108958500004],[-175.58568274599986,71.37986888200014],[-175.57929439999995,71.3783226580001],[-175.5743302069999,71.37352122600011],[-175.57477779899986,71.36416250200007],[-175.59007727799985,71.35809967700008],[-175.6087540359999,71.35394928600014],[-175.6286514959999,71.35175202000015],[-175.65025794199994,71.35700104400003],[-175.66637122299989,71.366644598],[-175.6785782539999,71.37563711100002],[-175.6954239569999,71.38080475500011],[-175.73810787699986,71.38369375200016],[-175.75987708199986,71.38971588700015],[-175.81078040299988,71.41168854400017],[-175.7981664699999,71.41205475499999]]],[[[180.00000000000017,71.53641963400008],[180.00000000000017,71.05263157900008],[180.00000000000017,70.992422908],[179.87486895400016,70.96034587100017],[179.86624067800014,70.94238589200008],[179.80698045100016,70.91309659900016],[179.66699336100027,70.87477850900014],[179.4525471610002,70.873491044],[179.30626276299998,70.87922004400009],[179.2171330090001,70.880601304],[179.1310327480001,70.87872955900012],[178.83204186299997,70.80853913000006],[178.79330488400007,70.80499909100008],[178.78956139400012,70.81293366100014],[178.7880965500003,70.83441803600006],[178.78345787900022,70.84284088700012],[178.74586022200023,70.88198476800007],[178.7387801440003,70.89435455900009],[178.7137150400001,70.92865631700006],[178.70191491000023,70.94245026200015],[178.69320722700016,70.95579661699999],[178.68165123800028,70.96832916900009],[178.66895592500015,70.97894928600012],[178.65691165500013,70.98680247600011],[178.62273196700025,71.03774648600002],[178.62224368600022,71.05101146000005],[178.62647545700017,71.06093984600015],[178.63404381600012,71.06948476800007],[178.6676538420001,71.09902578300013],[178.69695071700025,71.11542389500012],[178.8212996750003,71.16852448100015],[178.84766686300017,71.18378327000012],[178.86915123800028,71.20966217700011],[178.86394290500024,71.21393463700004],[178.85954837300025,71.21450429900001],[178.8558048840002,71.21308014500012],[178.8546655610002,71.21255117400007],[178.84864342500018,71.20966217700011],[178.8489689460002,71.20994700700005],[178.8546655610002,71.21263255400005],[178.9054468110002,71.237005927],[179.1829533210002,71.30353424700012],[179.3912866550002,71.38328685100005],[179.44027754000012,71.39227936400006],[179.49976647200018,71.43219635600003],[179.5634871750001,71.45148346600017],[179.70004316500015,71.45856354400003],[179.7666121750003,71.46971263200005],[179.7584741550002,71.48029205900009],[179.75294030000018,71.48403554900013],[179.7718205089999,71.49013906500012],[179.79273522200018,71.49164459800006],[179.83464603000007,71.49017975500011],[179.8528751960001,71.49262116100014],[179.86540774799997,71.49884674700012],[179.8660587900002,71.507554429],[179.84864342500012,71.517523505],[180.00000000000017,71.53641963400008]]],[[[137.87012780000006,71.57953522300012],[137.90503991,71.56126536700008],[137.91423587300005,71.55849844],[137.923106316,71.55215078300007],[137.9658309250002,71.51068756700006],[137.94239342500023,71.49445221600003],[137.76742597700016,71.43073151200015],[137.71876061300011,71.42133209800015],[137.69336998800011,71.419378973],[137.5861922540001,71.43740469000012],[137.52198326900023,71.47540924700002],[137.48218834700006,71.48403554900013],[137.39503014400023,71.481146552],[137.34571373800023,71.49518463700015],[137.31812584700003,71.49917226800012],[137.29078209700006,71.49787018400004],[137.26685631600014,71.49017975500011],[137.30144290500016,71.48029205900009],[137.37680097700016,71.46718984600012],[137.41089928500014,71.45604075700011],[137.39454186300023,71.45001862200012],[137.386566602,71.44863515800004],[137.37671959700018,71.44863515800004],[137.38982181100002,71.43561432500003],[137.344086134,71.42755768400009],[137.04314212300008,71.51105377800017],[136.99187259200002,71.517523505],[137.02320397200018,71.53412506700013],[137.12826582100016,71.54726797100001],[137.21827233200023,71.57623932500009],[137.472504102,71.58673737200014],[137.58008873800011,71.57684967700006],[137.6095483730002,71.5796572940001],[137.67090905000006,71.59324778900007],[137.70606530000023,71.59642161700013],[137.85377037900014,71.58364492400007],[137.87012780000006,71.57953522300012]]],[[[-178.7347102529999,71.57037995000015],[-178.39484615799986,71.54071686400012],[-178.32319088399987,71.51837799700009],[-178.25963294199985,71.51068756700006],[-178.3048803379999,71.513128973],[-178.32347571499986,71.51512278900005],[-178.3415421209999,71.517523505],[-178.32245846299992,71.50543854400009],[-178.21532141799992,71.47801341400013],[-178.19347083199986,71.47662995000013],[-178.14777584499984,71.48517487200017],[-178.12446041599992,71.48187897300012],[-178.00572669199988,71.44863515800004],[-178.01720130099986,71.44139232000009],[-178.0541886059999,71.42877838700012],[-178.04706783799992,71.42572663000011],[-178.0334366529999,71.41779205900015],[-178.0262345039999,71.41510651200018],[-178.0301000639999,71.41347890800014],[-178.03990637899992,71.407660223],[-177.9708959629999,71.39642975500003],[-177.7798559239999,71.33319733300014],[-177.71837317599991,71.30524323100012],[-177.70641028599988,71.30390045800011],[-177.6821182929999,71.30487702],[-177.67027747299994,71.3018252620001],[-177.65538489499988,71.29315827],[-177.58759518099987,71.28595612200016],[-177.54857337099992,71.29486725500011],[-177.53111731699985,71.29633209800006],[-177.5141088529999,71.29340241100006],[-177.49864661399988,71.28473541900014],[-177.5062149729999,71.26862213700018],[-177.48700924399995,71.25873444200006],[-177.45970618399988,71.24990469000004],[-177.44343014199995,71.237005927],[-177.44591223899988,71.22264232000013],[-177.4577530589999,71.20937734600001],[-177.50780188699994,71.17377350500014],[-177.58116614499986,71.14760976800008],[-177.6376440089999,71.11701080900015],[-177.68415279899995,71.11098867400007],[-177.75190182199992,71.09296295800014],[-177.81928463399987,71.08466217700006],[-177.87767493399994,71.05255768400009],[-177.9304906889999,71.04144928600006],[-178.20661373599992,71.03839752800015],[-178.31012936099987,71.013617255],[-178.5930273099999,70.99732086800016],[-178.87592525899993,70.98102448100003],[-178.9802953769999,70.95066966400007],[-179.34211178299995,70.90802643400004],[-179.3362524079999,70.9110781920001],[-179.32225501199994,70.92169830900015],[-179.36449133999986,70.93024323100009],[-179.45750891799995,70.9155134140001],[-179.50121008999992,70.91966380400005],[-179.66600501199989,70.96548086100013],[-179.8533829419999,70.97943756699999],[-179.88878333199995,70.99359772300012],[-179.9075414699999,70.996771552],[-179.9999886079999,70.99201084900001],[-179.9999999999999,70.99201035500006],[-179.9999999999999,71.05263157900008],[-179.9999999999999,71.53668798799998],[-179.99998656599993,71.53668858400006],[-179.8628637359999,71.53864166900007],[-179.91222083199992,71.55585358300011],[-179.90074622299986,71.55849844],[-179.79881751199994,71.56907786700005],[-179.75743567599994,71.583197333],[-179.7359513009999,71.58641185100005],[-179.7154434889999,71.58323802299999],[-179.6974991529999,71.57733795800014],[-179.67870032499985,71.57367584800008],[-179.61082923099985,71.5851911480001],[-179.3720596999999,71.56907786700005],[-179.32677161399988,71.55548737200009],[-179.3068334629999,71.55756256700012],[-179.28718014199995,71.56293366100009],[-179.24286861899992,71.56907786700005],[-179.20466061099995,71.583197333],[-179.07457434799986,71.600043036],[-178.7347102529999,71.57037995000015]]],[[[77.770762566,72.30499909100014],[77.58643639400006,72.28530508000001],[77.20093834700018,72.28994375200013],[77.12712649800008,72.27789948100012],[76.91797936300006,72.29303620000012],[76.86988366000011,72.30744049700017],[76.85271243600008,72.33307526200004],[76.85474694100012,72.33649323100015],[76.8841251960001,72.35932038000009],[76.91260826900012,72.3721377620001],[77.22852623800011,72.46015045800014],[77.24878991000011,72.4693871110001],[77.25749759200019,72.48053620000003],[77.2773543630001,72.51805247600014],[77.31299889400006,72.54523346600014],[77.35580488400015,72.559719143],[77.44402103000002,72.577866929],[77.56812584700012,72.62815989800005],[77.61019941500015,72.63471100500014],[77.79468834700018,72.62860748900006],[78.0236108730002,72.58966705900015],[78.13135826900006,72.58539459800015],[78.23080488400015,72.56915924700012],[78.27906334700018,72.55219147300012],[78.36695397200006,72.51203034100003],[78.39454186300006,72.491400458],[78.35572350400011,72.47280508000001],[78.26661217500006,72.454250393],[78.18018639400006,72.42177969000004],[78.07715905000012,72.39850495000009],[77.98389733200011,72.38910553600009],[77.93783613400015,72.3739281270001],[77.8113712900001,72.31509023600002],[77.770762566,72.30499909100014]]],[[[128.91016686300023,72.640082098],[128.94597415500007,72.62091705900004],[128.97445722700016,72.59381745000009],[128.8722436860002,72.59186432500015],[128.84449303500006,72.58319733300006],[128.81674238400012,72.55902741100006],[128.80518639400023,72.55658600500011],[128.78126061300017,72.55621979400011],[128.7690535820001,72.55219147300012],[128.77320397200003,72.55084870000015],[128.78272545700023,72.54535553600012],[128.65333092500018,72.52749258000016],[128.61060631600006,72.53237539300012],[128.56478925900015,72.54360586100002],[128.4760848320001,72.55394114800013],[128.38314863399998,72.55304596600006],[128.33936608200023,72.561021226],[128.11109459700006,72.63471100500014],[128.10368899800008,72.63471100500014],[128.13453209700006,72.643500067],[128.39352461000007,72.65963369350011],[128.65251712300008,72.67576732000005],[128.83106530000023,72.655218817],[128.87045332100004,72.65151601800015],[128.91016686300023,72.640082098]]],[[[129.3340608790002,72.773703319],[129.20704275200004,72.76189459800004],[128.98885477899998,72.77140547300003],[128.65300203200005,72.79186439100012],[128.31714928500017,72.81232330900004],[128.32154381600006,72.82855866100009],[128.419006702,72.86926187199998],[128.51803866600017,72.877653196],[128.73566124900006,72.88414824600005],[128.84379364200018,72.90982067500012],[128.9940826220002,72.93247107700007],[129.2196598350001,72.926406027],[129.39861254600024,72.86602262700002],[129.41713899900006,72.81259570200002],[129.3340608790002,72.773703319]]],[[[79.54135175900015,72.92552317900014],[79.55958092500012,72.908433335],[79.54127037900017,72.90973541900009],[79.52361087300008,72.91388580900004],[79.50684655000006,72.91543203300006],[79.49073326900006,72.908433335],[79.50766035200016,72.89777252800013],[79.52068118600002,72.883734442],[79.52564537900017,72.86664459800006],[79.51921634200006,72.84699127800012],[79.52898196700018,72.84137604400011],[79.5363875660001,72.83405182500012],[79.54184004000015,72.82453034100011],[79.54590905000012,72.81232330900004],[79.54395592500006,72.8085798200001],[79.53858483200011,72.80414459800012],[79.53353925900015,72.79877350500009],[79.53223717500006,72.79242584800012],[79.53695722700016,72.78416575700005],[79.54468834700018,72.77887604400017],[79.55396569100006,72.77423737200014],[79.56299889400006,72.76825592700014],[79.57203209700006,72.74054596600013],[79.53687584700018,72.72646719],[79.39527428500017,72.704046942],[79.00123131600004,72.74457428600012],[78.90992272200016,72.74127838700018],[78.88282311300006,72.74656810100004],[78.79249108200017,72.778753973],[78.71021569100012,72.78974030200006],[78.67156009200002,72.80353424700017],[78.65512129000014,72.83026764500008],[78.65023847700014,72.84511953300013],[78.63868248800006,72.84943268400006],[78.62525475400017,72.84658437700001],[78.61426842500012,72.84023672100007],[78.61231530000006,72.82990143400015],[78.61231530000006,72.81476471600016],[78.60914147200018,72.80634186400012],[78.596934441,72.81598541900009],[78.58464603000007,72.84186432500009],[78.59229576900005,72.86212799700012],[78.61280358200023,72.87824127800016],[78.63990319100017,72.89166901200014],[78.66195722700016,72.89545319199999],[78.90117434950017,72.99542877799996],[79.14039147200005,73.09540436400012],[79.17310631600016,73.10138580900004],[79.20533287900011,73.0976016300001],[79.23617597700016,73.08710358300014],[79.32056725400017,73.0462914080001],[79.36850019600016,73.03473541900014],[79.38209069099999,73.02578359600012],[79.38892662900011,73.01845937700013],[79.39307701900006,73.01190827000015],[79.39519290500019,73.00454336100013],[79.39576256600006,72.99477773600002],[79.40211022200018,72.98818594000012],[79.4435327480002,72.96369049700012],[79.54135175900015,72.92552317900014]]],[[[74.84522545700023,73.09369538000011],[74.96159915500012,73.066107489],[74.96159915500012,73.05996328300004],[74.87281334700006,73.07977936400015],[74.79363040500019,73.08657461100007],[74.76823978000006,73.09178294500008],[74.7342228520001,73.092474677],[74.70264733200023,73.07876211100007],[74.68539472700009,73.05499909100016],[74.69459069099999,73.02578359600012],[74.6466577480002,72.974554755],[74.63941491000017,72.96027252800009],[74.64649498800004,72.93675364800005],[74.6639103520001,72.92157623900006],[74.70826256600006,72.90167877800015],[74.69890384200019,72.89256419500008],[74.68702233200017,72.87091705900018],[74.68034915500019,72.86408112200014],[74.65626061300006,72.8586286480001],[74.58472741000011,72.87498607000013],[74.58961022200012,72.88007233300004],[74.59839928500017,72.89545319199999],[74.46501712300002,72.89960358300013],[74.3440861340001,72.92767975500014],[74.33594811300011,72.9338239600001],[74.33204186300011,72.94122955900009],[74.32471764400012,72.94745514500006],[74.23406009200018,72.95661041900014],[74.20053144600014,72.96613190300003],[74.12077884200019,72.99884674700017],[74.09848066500015,73.01203034100003],[74.09327233200005,73.02777741100009],[74.15870201900012,73.08856842700003],[74.18458092500006,73.10700104400006],[74.21168053500017,73.11456940300009],[74.47461998800011,73.1344261740001],[74.72535241000017,73.10712311400003],[74.84522545700023,73.09369538000011]]],[[[119.80225670700013,73.03949616100006],[119.74740644600004,73.03278229400003],[119.7207137380001,73.03384023600007],[119.70264733200005,73.0462914080001],[119.76465905000013,73.07294342700011],[119.73878014400012,73.09369538000011],[119.65853925899998,73.10858795800009],[119.63445071700008,73.12815989800005],[119.67172285200004,73.13080475500011],[119.79200280000006,73.16233958500013],[120.02198326900006,73.1681175800001],[120.24805748800021,73.11859772300006],[120.27857506600016,73.10089752800015],[120.26246178499999,73.08698151200015],[120.22584069100017,73.06622955900018],[120.20972741,73.05247630400005],[120.22437584700005,73.041937567],[120.23023522200019,73.03949616100006],[119.80225670700013,73.03949616100006]]],[[[76.18458092500006,73.21698639500009],[76.52751712300014,73.18964264500003],[76.65577233200023,73.1970075540001],[76.69507897200006,73.18622467700003],[76.72046959700016,73.17438385600006],[76.73218834700006,73.165920315],[76.73658287900011,73.1555036480001],[76.72885175900014,73.1439883480001],[76.71208743600017,73.14105866100006],[76.69239342500006,73.14142487200017],[76.632578972,73.13125234600011],[76.31836998800011,73.14809804900013],[76.17090905000006,73.18162669500008],[76.1438908210001,73.19725169500005],[76.13331139400006,73.20831940300009],[76.14503014400005,73.21482982],[76.18458092500006,73.21698639500009]]],[[[71.34253991000017,73.33136627800012],[71.33155358200011,73.32705312700001],[71.31657962300008,73.32721588700018],[71.29664147200016,73.32477448100003],[71.26417076900006,73.31492747600011],[71.25180097700016,73.30792877800002],[71.23707116000017,73.29580312700013],[71.21412194100017,73.28506094000012],[71.18864993600008,73.28583405200006],[71.16236412900017,73.29083893400009],[71.13746178500011,73.29266998900005],[71.14869225400011,73.30097077000015],[71.14991295700023,73.31232330900004],[71.14429772200006,73.340521552],[71.14380944100006,73.34731679900013],[71.16537519600016,73.36416250200013],[71.21680748800023,73.3867048200001],[71.2268172540001,73.39883047100001],[71.24952233200004,73.41787344],[71.29802493600008,73.41600169500013],[71.34253991000017,73.40228913],[71.35336347700014,73.38519928600005],[71.33318118600013,73.37287018400012],[71.32984459700018,73.36782461100007],[71.33277428500011,73.36090729400007],[71.34717858200005,73.35228099199999],[71.3496199880001,73.34731679900013],[71.34253991000017,73.33136627800012]]],[[[55.30420983200011,73.33934153899999],[55.489756707000055,73.32062409100011],[55.75806725400017,73.32794830900009],[55.80836022200006,73.31317780200011],[55.80909264400006,73.30955638200005],[55.80746504000015,73.29633209800012],[55.80836022200006,73.29266998900005],[55.81804446700019,73.29035065300012],[56.12663821700007,73.26023997600016],[56.43523196700007,73.23012929900013],[56.453298373000074,73.223822333],[56.46452884200007,73.21718984600012],[56.478688998000194,73.20368073100015],[56.48731530000012,73.19708893400009],[56.55990644600009,73.16620514500012],[56.5794376960001,73.15180084800006],[56.58204186300006,73.12958405200011],[56.548350457000055,73.12156810100007],[56.17835533950009,73.09383779500008],[55.80836022200006,73.066107489],[55.843923373000194,73.05678945500016],[56.115489128500116,73.06266917500001],[56.387054884000094,73.06854889500012],[56.46615644600009,73.05247630400005],[56.42953535200015,73.02631256700003],[56.37720787900017,73.00665924700014],[56.32195071700008,72.99673086100015],[56.225433790000096,73.00897858300011],[55.92448978000007,72.98891836100007],[55.87663821700002,72.97955963700004],[55.64226321700008,72.9719098980001],[55.616465691000116,72.96369049700012],[55.63851972700015,72.96271393400004],[55.68238366000017,72.95156484600001],[55.70582116000016,72.95010000200016],[55.815114780000066,72.95685455900009],[55.972666863000114,72.94110748900012],[56.11597741000011,72.96954987200014],[56.212412957000225,72.97736237200006],[56.2518009770001,72.972357489],[56.255056186000076,72.95831940300015],[56.21989993600018,72.908433335],[56.23812910200016,72.89801666900011],[56.23796634200019,72.883734442],[56.21989993600018,72.85321686400006],[56.21876061300023,72.84682851800015],[56.21924889400006,72.82965729400003],[56.21989993600018,72.82656484600012],[56.208506707000225,72.82221100500006],[56.17774498800022,72.81712474200013],[56.171397332000105,72.80914948100015],[56.13795006600017,72.78229401200018],[56.06267337300008,72.77777741100012],[55.867360873000074,72.80206940300012],[55.7385360040001,72.78424713700004],[55.67115319100017,72.78558991100012],[55.50359134200008,72.80882396000005],[55.48072350400017,72.80581289300012],[55.431651238000114,72.78558991100012],[55.602793816000116,72.78558991100012],[55.716807488000114,72.75364817900011],[55.810720248000194,72.75836823100003],[55.85954837300019,72.73578522300015],[55.94605553500016,72.66889069200012],[55.7639266290001,72.67572663000006],[55.64877363400015,72.704087632],[55.616465691000116,72.69684479400014],[55.71924889400006,72.65184153899999],[55.723480665000096,72.63833242400001],[55.690765821000156,72.62848541900009],[55.622731967000185,72.62051015800004],[55.63160241000011,72.60708242400013],[55.648610873000194,72.59430573100008],[55.684825066000116,72.57330963700007],[55.6692814460001,72.56248607000005],[55.61817467500006,72.54218170800006],[55.59880618600001,72.53856028899999],[55.55160566500015,72.54266998900013],[55.52800540500013,72.54995351800015],[55.48796634200008,72.57514069200012],[55.45687910200016,72.58222077000008],[55.26710045700011,72.58698151200018],[55.44898522200012,72.56329987200014],[55.46566816500015,72.53856028899999],[55.504730665000096,72.53579336100013],[55.54273522200011,72.5268415390001],[55.553070509000094,72.52020905200014],[55.55225670700011,72.51284414300012],[55.54078209700006,72.49762604400014],[55.5389103520001,72.48712799700009],[55.53931725400011,72.478420315],[55.53614342500012,72.47247955900018],[55.5232853520001,72.47028229400009],[55.434906446000156,72.47028229400009],[55.37769616000011,72.45831940300015],[55.35954837300019,72.46002838700015],[55.339121941000116,72.46417877800009],[55.15211022200012,72.46279531500012],[55.11557050900014,72.450384833],[55.32056725400011,72.44367096600014],[55.3509220710001,72.43793366100009],[55.378916863000114,72.43626536700008],[55.44214928500017,72.44415924700003],[55.46566816500015,72.43618398600007],[55.46753991000011,72.42658112200012],[55.46583092500012,72.41307200700014],[55.46949303500017,72.40086497600005],[55.48682701900006,72.39516836100006],[55.48292076900006,72.38418203300002],[55.47559655000006,72.37055084800006],[55.466970248000024,72.35797760600016],[55.45923912900011,72.35049062700001],[55.38819420700005,72.31329987200002],[55.37696373800005,72.30267975500009],[55.40414472700016,72.28587474200008],[55.51246178500011,72.25934479400011],[55.52027428500011,72.23688385600009],[55.56771894600009,72.2084007830001],[55.57496178500011,72.19965241100012],[55.56495201900006,72.18170807500017],[55.54151451900005,72.17169830900009],[55.49333743600002,72.15867747600011],[55.42628014400005,72.11908600500006],[55.40414472700016,72.11395905200006],[55.38965905000011,72.10773346600008],[55.36312910200016,72.0769717470001],[55.34278405000006,72.06557851800015],[55.42628014400005,72.06460195500007],[55.452647332000225,72.0587832700001],[55.43580162900017,72.04775625200007],[55.39991295700017,72.029486395],[55.383636915000096,72.01776764500003],[55.376231316000116,72.007513739],[55.371267123000194,71.99689362200014],[55.36402428500016,71.986273505],[55.349619988000114,71.97626373900012],[55.36329186300023,71.97256094000006],[55.37525475400016,71.96503327000012],[55.3846134770001,71.95473867400001],[55.39047285200015,71.94269440300009],[55.355235222000175,71.943060614],[55.24659264400005,71.95571523600007],[55.26026451900006,71.94269440300009],[55.23951256600017,71.93691640800004],[55.23145592500006,71.93349844000004],[55.22543379000015,71.92902252800015],[55.39763431100019,71.92226797100001],[55.412282748000194,71.91998932500006],[55.44060306100001,71.9101423200001],[55.495616082000105,71.902085679],[55.50635826900012,71.89801666900003],[55.51148522200006,71.89325592700011],[55.51246178500011,71.88837311400006],[55.5130314460001,71.88328685100014],[55.52800540500013,71.86371491100006],[55.52808678500011,71.85419342700008],[55.5232853520001,71.84536367400001],[55.52027428500011,71.83283112200012],[55.528656446000156,71.78514232000005],[55.55160566500015,71.74762604400003],[55.622731967000185,71.68203359600001],[55.67212975400017,71.61102936400015],[55.753672722000175,71.55719635600009],[55.80836022200006,71.53119538000011],[55.82960045700011,71.51504140800016],[55.88746178500011,71.45233795800006],[55.91602623800011,71.43170807500005],[55.984222852000094,71.40558502800009],[56.01441491000011,71.38715241100006],[56.027110222,71.37075429900015],[56.05103600400016,71.3207461610001],[56.055349155000066,71.3018252620001],[56.07056725400017,71.280218817],[56.1057235040001,71.25897858300011],[56.34306888150016,71.15776194900003],[56.58041425900015,71.05654531500006],[56.648203972000175,71.01288483300006],[56.79004967500006,70.96796295800006],[56.84050540500007,70.95986562700011],[56.86378014400006,70.95270416900009],[56.879242384000094,70.94399648600002],[56.91871178500017,70.91425202],[56.93653405000006,70.90717194200012],[56.9759220710001,70.89765045800014],[57.038747592000185,70.86981842700008],[57.06324303500011,70.8624535180001],[57.12956790500007,70.85700104400014],[57.227712436000076,70.8377953150001],[57.26758873800023,70.821722723],[57.311534050000056,70.80975983300009],[57.46680748800022,70.81801992400005],[57.479746941000116,70.78925202000012],[57.63868248800022,70.72988515800016],[57.5545353520001,70.72724030200008],[57.52759850400016,70.72988515800016],[57.4807235040001,70.74445221600008],[57.45704186300011,70.74848053600006],[57.43262780000006,70.7435570330001],[57.4583439460001,70.7253278670001],[57.505137566000165,70.7159691430001],[57.53931725400017,70.70477936400006],[57.52759850400016,70.68146393400015],[57.487966342000014,70.66779205900004],[57.48707116000011,70.66547272300006],[57.473643425000056,70.64793528900013],[57.4583439460001,70.63743724200005],[57.440114780000194,70.630804755],[57.41960696700008,70.62726471600011],[57.3977970710001,70.62620677300005],[57.3977970710001,70.62002187700008],[57.4123641290001,70.62091705900018],[57.42652428500016,70.61871979400009],[57.440114780000194,70.61383698100012],[57.45248457100015,70.60635000200016],[57.25896243600002,70.62811920800011],[57.06967207100015,70.67283763200005],[57.04558353000019,70.67593008000013],[57.02116946700007,70.67462799700014],[57.01091556100002,70.67182038],[56.986989780000066,70.66095612200012],[56.969574415000096,70.65916575700011],[56.90503991000011,70.66779205900004],[56.82195071700008,70.69920482000006],[56.77637780000012,70.71063873900012],[56.74048912900011,70.7025820980001],[56.751475457000055,70.692531643],[56.765391472000054,70.68549225500014],[56.79517662900016,70.67462799700014],[56.840668165000146,70.65143463700012],[56.85352623800022,70.64793528900013],[57.038828972000175,70.62620677300005],[57.060231967000135,70.62848541900003],[57.11426842500012,70.64052969000012],[57.13982181100019,70.64004140800016],[57.15211022200006,70.63808828300002],[57.16456139400006,70.63369375200004],[57.16570071700019,70.63043854400017],[57.16602623800022,70.62445709800006],[57.167491082000105,70.61798737200014],[57.17188561300006,70.61318594000006],[57.21306399800008,70.60028717700006],[57.30290774800008,70.58612702000012],[57.343272332000105,70.57160065300009],[57.32097415500019,70.5650902360001],[57.295746290000096,70.564683335],[57.00831139400005,70.60262685749997],[56.72087649800008,70.64057038000011],[56.639984571000156,70.66986725500006],[56.59652754000015,70.67462799700014],[56.61182701900012,70.65888092699998],[56.64096113400015,70.64769114799999],[56.698985222,70.63369375200004],[56.65162194100017,70.62982819200012],[56.58529707100009,70.64232005400011],[56.52458743600019,70.66592031500006],[56.493500196000156,70.69513580900009],[56.505218946000156,70.70441315300015],[56.513438347000054,70.72573476800012],[56.520762566000165,70.72988515800016],[56.56251061300011,70.73265208500011],[56.58130944100017,70.73773834800015],[56.57601972700016,70.74697500200001],[56.5520939460001,70.75397370000007],[56.47681725400011,70.75039297100001],[56.45923912900011,70.74579498900009],[56.44947350400017,70.73525625200001],[56.44239342500012,70.72353750200013],[56.431976759000094,70.71556224199999],[56.41163170700022,70.71360911700013],[56.31373131600017,70.72711823100009],[56.26856530000012,70.74066803600006],[56.24708092500012,70.7435570330001],[56.22413170700011,70.74160390800013],[56.21583092500012,70.73651764500012],[56.22103925900015,70.72939687700007],[56.23878014400011,70.72113678599999],[56.26075280000006,70.71735260600013],[56.28492272200006,70.716742255],[56.30697675900015,70.71369049700012],[56.32227623800011,70.7025820980001],[56.19922936300006,70.709377346],[56.21363366000011,70.69586823100003],[56.24317467500012,70.68793366100006],[56.30176842500006,70.68146393400015],[56.28402754000015,70.67072174700014],[56.262950066000116,70.66697825700011],[56.21989993600018,70.66779205900004],[56.23796634200019,70.65314362200003],[56.26856530000012,70.647650458],[56.36182701900006,70.64720286700002],[56.378265821000156,70.65082428600006],[56.383636915000096,70.66095612200012],[56.37574303500011,70.666205145],[56.34156334700006,70.6748721370001],[56.32911217500012,70.68146393400015],[56.43360436300023,70.67621491100009],[56.482595248000194,70.66400788000003],[56.52759850400017,70.64052969000012],[56.484711134000094,70.64227936400012],[56.464854363000114,70.63849518400012],[56.453298373000074,70.62620677300005],[56.582855665000096,70.61318594000006],[56.642100457000105,70.59772370000015],[56.65455162900011,70.58999258000013],[56.65430748800017,70.58136627800003],[56.64478600400017,70.57444896000014],[56.600759311000076,70.5676130230001],[56.54411868600007,70.54975006700013],[56.51400800900014,70.54486725500009],[56.475922071000156,70.54791901200014],[56.40064537900017,70.56386953300006],[56.500987175000056,70.55853913000011],[56.46615644600009,70.57160065300009],[56.46615644600009,70.57904694200006],[56.488942905000016,70.57265859600015],[56.51482181100002,70.56972890800004],[56.5403751960001,70.57147858300011],[56.56251061300011,70.57904694200006],[56.53492272200017,70.59686920800014],[56.49927819100011,70.59979889500005],[56.428558790000096,70.592718817],[56.35425866000011,70.59796784100008],[56.281260613000114,70.61318594000006],[56.1575626960001,70.6574567730001],[56.090017123000074,70.66852448100015],[56.041026238000114,70.64793528900013],[56.15935306100019,70.62913646000008],[56.17823326900005,70.60976797100007],[56.16423587300008,70.59463125200007],[56.131521030000066,70.59589264500006],[56.041351759000094,70.62343984600001],[55.965993686000076,70.66095612200012],[55.92701256600017,70.67153554900007],[55.846690300000056,70.68390534100011],[55.80836022200006,70.69513580900009],[55.85141035200016,70.65094635600003],[55.99382571700019,70.617865302],[56.04786217500011,70.58527252800003],[56.02051842500012,70.57379791900009],[55.9959416020001,70.579779364],[55.972015821000156,70.59218984600012],[55.94605553500016,70.59951406500012],[55.93116295700011,70.59686920800014],[55.90170332100009,70.58535390800002],[55.884043816000116,70.58527252800003],[55.87159264400012,70.58950429900014],[55.86426842500011,70.59516022300012],[55.85816491000011,70.60114166900014],[55.8498641290001,70.60635000200016],[55.81755618600018,70.61334870000003],[55.75196373800006,70.6086286480001],[55.71924889400006,70.61139557500009],[55.62525475400011,70.63373444200003],[55.602793816000116,70.64793528900013],[55.630625847000175,70.63800690300003],[55.6653751960001,70.62811920800011],[55.69874108200011,70.62051015800007],[55.726328972,70.62620677300005],[55.69874108200011,70.64716217700003],[55.743662957000105,70.63694896000008],[55.79151451900012,70.63369375200004],[55.80005944100017,70.6445173200001],[55.78345787900011,70.66876862200012],[55.75766035200015,70.69391510600009],[55.73804772200012,70.70758698100003],[55.67090905000006,70.71637604400009],[55.63013756600017,70.73725006700006],[55.60808353000019,70.73216380400012],[55.599375847000175,70.72142161700009],[55.61589603000007,70.71556224199999],[55.65316816500015,70.71137116100013],[55.69369550900015,70.6986758480001],[55.728037957000225,70.67755768400015],[55.74683678500017,70.64793528900013],[55.71119225400011,70.67365143400016],[55.662852410000106,70.689154364],[55.49529056100019,70.71287669500002],[55.47250410200016,70.72304922100012],[55.444590691000116,70.74359772300008],[55.4290470710001,70.74990469000012],[55.40479576900011,70.75039297100001],[55.40528405000012,70.73639557500015],[55.36378014400012,70.71816640800007],[55.349619988000114,70.7025820980001],[55.384043816000116,70.70282623900012],[55.42066491000017,70.69623444200015],[55.452647332000225,70.68065013200005],[55.47250410200016,70.65412018400008],[55.45394941500015,70.65936920800009],[55.422211134000094,70.68170807500012],[55.40479576900011,70.68891022300014],[55.39380944100017,70.68846263200005],[55.349619988000114,70.68146393400015],[55.2908634770001,70.68891022300014],[55.27409915500007,70.68618398600007],[55.25001061300022,70.67853424700014],[55.23267662900017,70.66657135600012],[55.23633873800011,70.651068427],[55.286875847,70.61985911700013],[55.29558353000019,70.60635000200016],[55.27515709700006,70.61204661700013],[55.271657748000024,70.60594310100005],[55.27279707100015,70.59467194200006],[55.26710045700011,70.58527252800003],[55.22461998800023,70.58466217700008],[55.207367384000094,70.58063385600009],[55.21314537900017,70.56537506700012],[55.16260826900006,70.55312734600007],[55.109385613000114,70.57176341400005],[55.05632571700008,70.59910716400012],[54.99463951900006,70.61603424700012],[54.990000847,70.6225446640001],[54.98845462300008,70.62954336100007],[54.98601321700002,70.63369375200004],[54.967133009000094,70.63788483300006],[54.9299422540001,70.63776276200018],[54.911387566000116,70.64052969000012],[54.90113366000017,70.64476146000005],[54.88135826900006,70.65643952000006],[54.86988366000011,70.66095612200012],[54.80152428500011,70.66779205900004],[54.77995853,70.67304108300011],[54.760590040000096,70.68060944200006],[54.74284915500013,70.69049713700018],[54.72584069100017,70.7025820980001],[54.70728600400017,70.72215403900005],[54.70850670700005,70.73322174700009],[54.71501712300008,70.74282461100007],[54.712168816000116,70.7577985700001],[54.691172722000175,70.76788971600017],[54.59009850400017,70.778998114],[54.550547722,70.80312734600001],[54.53321373800023,70.8130557310001],[54.513438347,70.82542552300005],[54.53199303500011,70.80931224199999],[54.55892988400009,70.79218170800014],[54.56812584700006,70.77704498900015],[54.50635826900005,70.78754303600012],[54.49244225400017,70.78449127800002],[54.491221550000056,70.76487864800008],[54.487803582000225,70.74925364799999],[54.47877037900011,70.73602936400015],[54.650157097000175,70.69513580900009],[54.63510175900015,70.69513580900009],[54.62891686300005,70.69330475500011],[54.62273196700019,70.68891022300014],[54.66016686300023,70.67853424700014],[54.69776451900006,70.67621491100009],[54.734141472000054,70.66986725500006],[54.7674259770001,70.64793528900013],[54.63640384200008,70.66095612200012],[54.57081139400011,70.6747907570001],[54.544444207000225,70.686509507],[54.547699415000096,70.7025820980001],[54.52523847700016,70.71010976800012],[54.476247592000185,70.71287669500002],[54.452972852000094,70.71751536700013],[54.307465040000096,70.77338288],[54.2869572270001,70.77704498900015],[54.26978600400011,70.77244700700011],[54.26954186300023,70.76361725500006],[54.28003991000011,70.753078518],[54.29444420700011,70.7435570330001],[54.260508660000106,70.72988515800016],[54.22510826900006,70.72955963700004],[54.18995201900005,70.73883698100008],[54.157237175000056,70.75409577000005],[54.140961134000094,70.75690338700008],[54.084971550000056,70.7435570330001],[54.045095248000194,70.74787018400008],[54.006521030000016,70.7577985700001],[53.8548283210001,70.82221100499999],[53.840668165000096,70.82314687700007],[53.83448326900005,70.81517161700013],[53.841563347000175,70.80752187700008],[53.88982181100002,70.78449127800002],[53.871429884000094,70.78497955900012],[53.85417728000019,70.788519598],[53.82056725400017,70.801906643],[53.79753665500018,70.80609772300012],[53.744313998000194,70.79865143400006],[53.71900475400017,70.79877350500011],[53.70476321700008,70.80263906500011],[53.66382897200006,70.821722723],[53.6380314460001,70.82965729400017],[53.5852970710001,70.83185455900015],[53.56080162900017,70.83974844000012],[53.56348717500006,70.84345123900009],[53.56763756600017,70.8527692730001],[53.544606967000135,70.85431549700014],[53.53614342500006,70.84430573100018],[53.538422071000156,70.82851797100012],[53.54712975400011,70.81244538000006],[53.539724155000066,70.80499909100008],[53.51856530000006,70.81903717700011],[53.45923912900016,70.82355377800008],[53.40748131600017,70.85032786699999],[53.370371941000116,70.85919830900004],[53.3001408210001,70.86640045800006],[53.4920353520001,70.87348053600012],[53.50928795700011,70.86981842700008],[53.52051842500011,70.86957428600012],[53.53109785200016,70.87466054900015],[53.54216556100018,70.88153717700006],[53.55396569100017,70.8869082700001],[53.57683353000007,70.88873932500009],[53.5955509770001,70.88251373900013],[53.64714603000019,70.848130601],[53.66944420700022,70.837347723],[53.69060306100002,70.83421458500011],[53.70476321700008,70.84593333500003],[53.68433678500017,70.85712311400012],[53.673838738000114,70.872707424],[53.67359459700017,70.89036692900011],[53.683767123000194,70.90802643400004],[53.70801842500012,70.92609284100014],[53.72934004000015,70.93646881700006],[53.7381291020001,70.947943427],[53.72461998800017,70.96881745000015],[53.67261803500011,71.00482819200012],[53.54965254000015,71.04572174700017],[53.491872592000135,71.07245514500009],[53.49642988400015,71.07729726800007],[53.50171959700006,71.09442780199998],[53.53793379000015,71.08551666900014],[53.58334394600015,71.07953522300015],[53.677500847000175,71.07868073100003],[53.66382897200006,71.09296295800014],[53.67994225400011,71.09931061400006],[53.69548587300019,71.09861888200011],[53.72681725400017,71.0878766950001],[53.74480228000019,71.08494700699998],[53.782562696000156,71.087103583],[53.80103600400016,71.08612702000012],[53.90430748800006,71.05463288000003],[53.936859571000156,71.0594750020001],[53.833669467000135,71.10968659100017],[53.80713951900006,71.13397858300014],[53.941416863000114,71.14301178600006],[54.00879967500012,71.14020416900011],[54.06788170700022,71.11969635600013],[53.98023522200012,71.13251373900009],[53.93897545700022,71.130316473],[53.91700280000006,71.10602448100012],[53.93588300900015,71.1013044290001],[53.999034050000056,71.10602448100012],[54.07813561300022,71.09979889500006],[54.23243248800023,71.11969635600013],[54.24398847700015,71.12287018400012],[54.23853600400011,71.129828192],[54.224945509000094,71.13711172100004],[54.21192467500006,71.14077383000007],[54.193532748000024,71.139349677],[54.15837649800008,71.12954336100007],[54.13990319100017,71.12710195500013],[54.063243035000106,71.13617584800012],[54.02173912900011,71.146673895],[53.99219811300022,71.160589911],[54.00717207100015,71.16201406500006],[54.01596113400014,71.16893138200005],[54.02328535200016,71.17788320500007],[54.03345787900017,71.18545156500012],[54.04769941500009,71.18915436400009],[54.09522545700011,71.18854401200012],[54.056651238000114,71.208929755],[54.07976321700008,71.2114118510001],[54.12794030000011,71.207709052],[54.16407311300017,71.20966217700011],[54.1404728520001,71.21230703300002],[54.09058678500017,71.23216380400011],[54.06446373800011,71.237005927],[54.041188998000194,71.23334381700015],[54.025238477000094,71.22418854400017],[53.99219811300022,71.19912344000006],[53.96876061300017,71.18659088700015],[53.94304446700019,71.17641836100002],[53.91700280000006,71.17413971600014],[53.893239780000016,71.18545156500012],[53.872406446000156,71.19940827],[53.85010826900012,71.20652903900005],[53.80103600400016,71.20966217700011],[53.815928582000225,71.19928620000003],[53.82862389400012,71.18512604400011],[53.83228600400011,71.17011139500009],[53.82056725400017,71.15753815300009],[53.79590905000006,71.1553408870001],[53.73308353000018,71.17169830900012],[53.70476321700008,71.17487213700018],[53.71908613400015,71.18545156500012],[53.72461998800017,71.18854401200012],[53.70801842500012,71.19537995000003],[53.66928144600015,71.2002627620001],[53.650157097000175,71.20624420800011],[53.62794030000012,71.20868561400006],[53.57699629000009,71.19928620000003],[53.55738366000017,71.20624420800011],[53.54224694100017,71.2158877620001],[53.50977623800006,71.22459544499999],[53.46168053500011,71.25470612200012],[53.450938347000175,71.26430898600007],[53.57471764400006,71.29433828300013],[53.59489993600019,71.3018252620001],[53.60572350400017,71.32294342700011],[53.653005405000016,71.34845612200012],[53.66382897200006,71.37075429900015],[53.68238366000011,71.39834219000006],[53.72559655000011,71.41132233300006],[53.88868248800011,71.42230866100012],[53.92530358200011,71.43650950700014],[53.95118248800023,71.46222565300017],[53.92115319100017,71.46954987200009],[53.89975019600009,71.47101471600014],[53.88005618600018,71.46474844],[53.83082116000017,71.43569570500001],[53.57634524800008,71.39081452],[53.55372155000012,71.37921784100008],[53.539724155000066,71.36050039300012],[53.54363040500007,71.31683991100012],[53.4876408210001,71.30341217700014],[53.413340691000116,71.3117536480001],[53.36158287900017,71.33319733300014],[53.35824629000015,71.33917877800015],[53.3514103520001,71.35993073100015],[53.3479110040001,71.36733633000013],[53.313731316000116,71.39398834800006],[53.25171959700012,71.45604075700011],[53.26783287900017,71.45758698100015],[53.30600019600015,71.46723053600012],[53.32056725400017,71.47313060100005],[53.329763217000014,71.47955963700015],[53.33073978000012,71.48468659100008],[53.33025149800014,71.48997630400004],[53.33423912900011,71.49701569200012],[53.35816491000016,71.51487864799999],[53.44410241000016,71.54547760600012],[53.36524498800023,71.56903717700006],[53.34782962300008,71.567531643],[53.20573978000007,71.50983307500015],[53.17286217500006,71.48883698100003],[53.1424259770001,71.46222565300017],[53.15007571700013,71.44037506700012],[53.1346134770001,71.42617422100012],[53.113047722000175,71.42243073100008],[53.10206139400006,71.43219635600003],[53.097178582000055,71.45278554900007],[53.08423912900017,71.46450429900015],[53.04688561300011,71.48403554900013],[53.05713951900011,71.49823639500015],[53.048106316000116,71.50226471600003],[53.029633009000094,71.49957916900003],[53.01270592500012,71.49359772300012],[53.00700931100001,71.48346588700015],[53.01954186300023,71.47313060100005],[53.03736412900011,71.46360911700008],[53.04688561300011,71.45604075700011],[53.03874759200019,71.44277578300007],[53.01539147200017,71.4422875020001],[52.98894290500012,71.44521719000004],[52.971853061000076,71.44236888200008],[52.9685978520001,71.42877838700012],[52.971853061000076,71.41400788000014],[52.96810957100015,71.40521881700006],[52.945323113000114,71.40961334800006],[52.92823326900005,71.409898179],[52.90308678500017,71.39272695500006],[52.882334832000105,71.39398834800006],[52.868418816000116,71.40224844000006],[52.86036217500006,71.41388580900015],[52.85889733200011,71.42682526200015],[52.865000847000175,71.43903229400014],[52.855479363000114,71.45697663],[52.82129967500012,71.469916083],[52.79769941500015,71.46478913],[52.82032311300022,71.42877838700012],[52.76238040500007,71.4332542990001],[52.73991946700002,71.44212474200013],[52.73096764400012,71.466009833],[52.7181095710001,71.4897321640001],[52.688812696000156,71.48590729400009],[52.635427280000016,71.46222565300017],[52.60987389400006,71.46869538],[52.6170353520001,71.48663971600003],[52.63697350400017,71.50800202000009],[52.64966881600011,71.52496979400014],[52.64380944100017,71.54608795800009],[52.62354576900006,71.55874258000013],[52.57390384200008,71.57587311400009],[52.56128991000017,71.59235260600015],[52.56137129000015,71.62799713700011],[52.54721113400015,71.63483307500003],[52.52068118600019,71.62815989799999],[52.513682488000114,71.61139557500015],[52.51140384200002,71.58905670800011],[52.49878991000011,71.56590403899999],[52.46900475400011,71.55621979400003],[52.38559004000015,71.54954661699999],[52.368418816000116,71.53489817900005],[52.37476647200006,71.51333242400014],[52.38917076900012,71.5006371110001],[52.40503991000011,71.49046458500005],[52.41627037900011,71.47654857000008],[52.37891686300005,71.48090241100006],[52.326914910000106,71.49384186400006],[52.28044681100007,71.51373932500015],[52.258555535000106,71.53864166900007],[52.271169467000135,71.57273997600011],[52.26880944100017,71.58795807500009],[52.244313998000024,71.58299388200014],[52.19581139400006,71.5567894550001],[52.17212975400011,71.548529364],[52.141856316000116,71.54547760600012],[52.16325931100019,71.51837799700009],[52.20191491000011,71.502386786],[52.24488366000011,71.49079010600015],[52.279063347000175,71.47654857000008],[52.139496290000096,71.48501211100002],[52.05307050900009,71.47654857000008],[51.962087436000076,71.47964101800015],[51.91586347700016,71.46576569200006],[51.86198978000013,71.45624420800006],[51.84034264400012,71.45604075700011],[51.82195071700008,71.46088288],[51.809336785000106,71.46914297100007],[51.79867597700016,71.47858307500009],[51.78589928500011,71.48712799700003],[51.70980879000015,71.517523505],[51.68262780000012,71.52509186400012],[51.600840691000116,71.53668854400014],[51.54981530000006,71.56024811399999],[51.53239993600018,71.56590403899999],[51.53638756600017,71.57599518400015],[51.54981530000006,71.59495677300008],[51.552907748000024,71.603461005],[51.549652540000096,71.61351146000008],[51.53565514400006,71.62360260600002],[51.53239993600018,71.631048895],[51.523773634000094,71.64663320500001],[51.467539910000106,71.6925316430001],[51.46338951900006,71.70233795800011],[51.46949303500011,71.70604075700005],[51.47185306100019,71.71059804900001],[51.456716342000185,71.72296784100006],[51.44190514400006,71.73004791900009],[51.43197675900015,71.73224518400009],[51.42448978000007,71.73676178600014],[51.41627037900017,71.75092194200006],[51.41089928500011,71.76483795800006],[51.40642337300002,71.78156159100008],[51.4095158210001,71.80613841399997],[51.40137780000012,71.87051015800009],[51.43962649800008,71.94220612200007],[51.5002547540001,72.00568268400012],[51.560313347000054,72.04511139500009],[51.552907748000024,72.05255768400013],[51.610036655000016,72.091701565],[51.74781334700006,72.12250397300006],[51.8431095710001,72.15794505400008],[51.86573326900006,72.15867747600011],[51.95606530000006,72.11505768400009],[51.97282962300008,72.10944245000009],[51.98991946700019,72.10712311400012],[52.05307050900009,72.10781484600007],[52.0486759770001,72.08466217700014],[52.06674238400015,72.07428620000003],[52.090017123000024,72.07607656500012],[52.11670983200005,72.10765208500011],[52.15088951900006,72.12173086100016],[52.18775475400011,72.12921784100003],[52.2107853520001,72.127630927],[52.19743899800008,72.11147695500013],[52.1912541020001,72.1017113300001],[52.18970787900017,72.09349192899998],[52.20036868600019,72.08274974199999],[52.2181095710001,72.085679429],[52.23894290500019,72.09149811400006],[52.25814863400015,72.08978913000006],[52.297048373000024,72.07453034100008],[52.33228600400017,72.07062409100008],[52.368418816000116,72.0753441430001],[52.409434441000116,72.08608633000001],[52.38941491000017,72.09284088700004],[52.38257897200006,72.105210679],[52.38917076900012,72.11847565300012],[52.409434441000116,72.127630927],[52.3982853520001,72.135443427],[52.3841251960001,72.14301178600012],[52.3724064460001,72.15159739800005],[52.368418816000116,72.16242096600006],[52.383148634000094,72.17169830900009],[52.41325931100002,72.16803620000003],[52.46461022200006,72.15497467700006],[52.484141472000054,72.15753815300015],[52.49008222700015,72.16421133000003],[52.48324629000015,72.17413971600003],[52.40202884200002,72.22321198100013],[52.425059441000116,72.23143138200008],[52.444834832000225,72.22858307500003],[52.48454837300002,72.20962148600002],[52.47925866000017,72.21417877800015],[52.46461022200006,72.23065827000015],[52.47169030000012,72.23338450700011],[52.48462975400011,72.24140045800006],[52.491384311000076,72.24433014500009],[52.47852623800022,72.25482819200006],[52.46371504000015,72.26080963700015],[52.44752037900011,72.26357656500012],[52.43018639400012,72.26422760600018],[52.413584832000055,72.26951732000005],[52.4100041020001,72.28042226800012],[52.41651451900006,72.28929271000008],[52.42994225400017,72.28872304900001],[52.46583092500006,72.27558014500015],[52.54737389400012,72.26496002800012],[52.58757571700019,72.26422760600018],[52.582367384000094,72.26723867400007],[52.57276451900012,72.27472565300015],[52.56706790500007,72.27789948100012],[52.59376061300006,72.290961005],[52.668793165000096,72.30638255400011],[52.68433678500011,72.32257721600017],[52.6692814460001,72.34536367400001],[52.60010826900012,72.35541413000007],[52.58073978000019,72.37409088700015],[52.65040123800017,72.35516998900012],[52.72291100400017,72.34516022300015],[52.86817467500006,72.34674713700018],[52.847829623000074,72.35431549700003],[52.77930748800023,72.35419342700006],[52.71257571700008,72.36652252800009],[52.68995201900012,72.36717357000005],[52.70362389400006,72.38617584800006],[52.69223066500009,72.4002953150001],[52.67335045700022,72.41327545799999],[52.66334069100017,72.4286970070001],[52.68409264400005,72.446926174],[52.78467858200011,72.44619375200007],[52.82032311300022,72.450384833],[52.761078321000156,72.47435130400004],[52.729665561000125,72.47980377800009],[52.67937259200007,72.47150299700012],[52.680023634000094,72.47874583500013],[52.68864993600019,72.48944733300006],[52.69743899800008,72.49762604400014],[52.71241295700011,72.50592682500006],[52.73015384200019,72.510931708],[52.74683678500011,72.51097239799998],[52.75831139400006,72.50438060100002],[52.83350670700011,72.51064687700016],[52.868907097000175,72.51874420800007],[52.86817467500006,72.53856028899999],[52.88184655000012,72.54824453300013],[52.93018639400012,72.55902741100006],[52.924489780000016,72.56232330900009],[52.90967858200017,72.57330963700007],[52.954763217000135,72.57770416900001],[52.99838300900014,72.58698151200018],[53.0774845710001,72.59357330900015],[53.10206139400006,72.60065338700012],[52.914235873000194,72.59699127800015],[52.76490319100017,72.56037018400004],[52.72396894600015,72.55902741100006],[52.735606316000116,72.57713450700005],[52.752126498000194,72.59259674700009],[52.77173912900017,72.60346100500007],[52.806000196000156,72.60927969000012],[52.81177819100011,72.61391836100013],[52.80933678500017,72.61985911699998],[52.798187696000156,72.62604401200002],[52.785492384000094,72.62710195500001],[52.73845462300008,72.62051015800004],[52.754893425000056,72.638373114],[52.77979576900012,72.64769114800013],[52.980235222000054,72.67584870000003],[53.013031446000156,72.67352936400006],[53.11011803500016,72.64980703300013],[53.2181095710001,72.64842357000008],[53.19597415500019,72.65704987200017],[53.08855228000007,72.664740302],[53.005869988000114,72.68317291900003],[52.793711785000106,72.68211497600008],[52.746918165000096,72.67243073100012],[52.575043165000096,72.67064036700013],[52.546641472000175,72.67572663000006],[52.52898196700008,72.68455638200003],[52.50001061300017,72.70343659100003],[52.478282097000175,72.70990631700012],[52.42432701900006,72.71320221600017],[52.397634311000076,72.7179222680001],[52.37525475400011,72.73037344],[52.39405358200005,72.75202057500009],[52.419200066000165,72.75409577],[52.44548587300008,72.75218333500005],[52.46778405000012,72.76170482000005],[52.47234134200008,72.76992422100014],[52.477793816000116,72.78945547100012],[52.48454837300002,72.79857005400011],[52.50017337300014,72.80801015800013],[52.55347741000017,72.82318756700012],[52.59595787900017,72.85244375200016],[52.61670983200017,72.86322663000006],[53.026866082000225,72.92499420800006],[53.30844160200016,72.87763092700011],[53.34815514400006,72.87811920800003],[53.382009311000076,72.88861725500009],[53.33692467500006,72.89508698100018],[53.29330488400009,72.908433335],[53.31723066500015,72.9148623720001],[53.38941491000011,72.908433335],[53.38477623800011,72.91673411699999],[53.38355553500016,72.92023346600013],[53.39568118600019,72.92963288],[53.36011803500011,72.9399274760001],[53.2317814460001,72.93642812700001],[53.17156009200007,72.94871653899999],[53.1419376960001,72.96246979400009],[53.13933353000019,72.98110586100007],[53.14185631600011,72.98920319199999],[53.13892662900011,72.99640534100001],[53.13689212300008,73.00348541900009],[53.1424259770001,73.01154205900004],[53.15284264400006,73.01422760600012],[53.191742384000094,73.01829661700008],[53.382009311000076,73.01154205900004],[53.36231530000011,73.017808335],[53.31853274800002,73.02570221600014],[53.3001408210001,73.03266022300014],[53.288828972,73.041978257],[53.27947024800008,73.05304596600003],[53.26929772200006,73.06232330900018],[53.25570722700015,73.066107489],[53.183604363000164,73.06989166900003],[53.15154056100019,73.08006419499999],[53.12191816500015,73.10089752800015],[53.15381920700017,73.10639069200009],[53.16130618600001,73.112005927],[53.163422071000156,73.12482330900012],[53.1600041020001,73.14142487200017],[53.15479576900011,73.14679596600003],[53.15560957100015,73.15058014500006],[53.17025800900015,73.16233958500013],[53.18970787900016,73.173285223],[53.32252037900011,73.22085195500009],[53.367360873000024,73.22699616100006],[53.41163170700011,73.24111562700001],[53.43384850400017,73.24428945500007],[53.532725457000055,73.22955963700018],[53.56080162900017,73.23468659100008],[53.65503991000017,73.27488841399999],[53.75318444100011,73.29889557500003],[53.86182701900012,73.30215078300007],[54.079600457000105,73.27293528900005],[54.19076582100009,73.2722028670001],[54.32618248800022,73.3076846370001],[54.39698326900006,73.31561920800006],[54.41374759200008,73.322007554],[54.44410241000016,73.340521552],[54.53199303500011,73.376410223],[54.58545983200022,73.38617584800012],[54.69450931100019,73.39142487200002],[54.77019290500019,73.41201406500015],[54.8177189460001,73.41303131700012],[54.86963951900005,73.42413971600013],[54.93482506600017,73.42536041900013],[55.12549889400006,73.39378489800006],[55.30420983200011,73.33934153899999]]],[[[70.94874108200011,73.51748281500015],[71.22917728000019,73.46474844000015],[71.26783287900011,73.44354889500006],[71.23853600400011,73.436509507],[71.14771569100006,73.44969310100014],[71.11150149800014,73.44733307500017],[71.10914147200016,73.439886786],[71.1233830090001,73.42706940300015],[71.13746178500011,73.40875885600009],[71.13648522200006,73.39252350500004],[71.12330162900011,73.38084544500008],[71.10466556100019,73.370306708],[71.08676191500015,73.35757070500016],[71.08171634200019,73.34577057500007],[71.08350670700011,73.33209870000015],[71.08952884200019,73.32005442900014],[71.09644616000011,73.31317780200011],[71.065684441,73.29857005400011],[70.99708092500012,73.28839752800015],[70.9803166020001,73.26536692899998],[71.00123131600006,73.26605866100012],[71.0623478520001,73.27903880400011],[71.08350670700011,73.27928294500008],[71.14429772200006,73.2722028670001],[71.21192467500005,73.27440013199998],[71.23365319100006,73.2722028670001],[71.24822024800008,73.26715729400017],[71.27466881600006,73.25433991100014],[71.28891035200016,73.25169505400005],[71.27686608200023,73.27798086100007],[71.29639733200023,73.29564036699998],[71.33082116000017,73.30670807500002],[71.40235436300011,73.31915924700006],[71.41871178500011,73.327582098],[71.42546634200008,73.34389883000001],[71.4357202480002,73.35297272300004],[71.45915774800008,73.34837474199999],[71.60792076900006,73.275336005],[71.62476647200006,73.26166413000006],[71.63013756600012,73.25153229400009],[71.66911868600008,73.22748444200006],[71.67611738400015,73.21580638200005],[71.67798912900011,73.20457591400007],[71.67774498800006,73.193589585],[71.7075013400001,73.13374842800006],[71.75012580600017,73.04211181700013],[71.7302362880001,73.03440871000014],[71.61774723700015,73.09037564700007],[71.49467709100021,73.1501170740001],[71.37450146400008,73.17893414500004],[71.34099368600017,73.17658112200003],[71.31934655000012,73.16608307500015],[71.30014082100016,73.1515973980001],[71.27930748800006,73.14313385600018],[70.97063235750007,73.12299225450018],[70.66195722700016,73.10285065300009],[70.46192467500006,73.05117422100007],[70.25660241000017,73.03827545800014],[70.20386803500017,73.04657623900012],[70.16114342500006,73.06952545800011],[70.14039147200006,73.09100983300014],[70.12826582100016,73.09796784100003],[70.1095483730002,73.10089752800015],[70.08545983200004,73.09796784100003],[70.01539147200018,73.07123444200012],[69.9993595710001,73.060980536],[70.01384524800002,73.05402252800009],[70.06177819100006,73.0462914080001],[70.08521569100006,73.03754303600012],[70.10124759200014,73.02578359600012],[70.10084069099999,73.01797109600012],[70.0131942070001,73.032416083],[69.98121178500011,73.03314850500011],[69.93425540500007,73.025091864],[69.91098066500015,73.02558014500009],[69.88851972700016,73.02968984600012],[69.8748478520001,73.03827545800014],[69.87794030000012,73.05805084800006],[69.89136803500017,73.08759186400012],[69.90007571700008,73.10138580900004],[69.91163170700011,73.11456940300009],[69.93425540500007,73.131740627],[70.0208439460001,73.182806708],[70.0359806650001,73.19660065300009],[70.05250084700012,73.21572500200007],[70.06495201900012,73.23712799700002],[70.06861412900015,73.25787995000003],[70.05795332100016,73.27924225500007],[70.02125084700006,73.31053294500005],[70.01335696700008,73.32998281500012],[70.00489342500012,73.34332916900014],[69.96794681100008,73.37620677300005],[69.95932050900015,73.39883047100001],[69.98267662900015,73.40810781500006],[70.4695744150001,73.49921295800009],[70.5079858730002,73.49013906500006],[70.52426191500008,73.48004791900011],[70.56324303500011,73.48102448100018],[70.65007571700018,73.50014883000016],[70.94874108200011,73.51748281500015]]],[[[127.6909285820001,73.54287344000006],[127.98129316499997,73.49408600500006],[128.06332441500004,73.49135976800008],[128.03248131600006,73.483587958],[127.77507571700012,73.49258047100001],[127.69743899800018,73.50543854400003],[127.61768639400022,73.50031159100003],[127.53907311300021,73.51561107],[127.40479576900012,73.51862213700018],[127.39234459700018,73.52545807500007],[127.42807050900002,73.53733958500005],[127.52027428500016,73.54564036700013],[127.6909285820001,73.54287344000006]]],[[[76.42481530000012,73.51862213700018],[76.51742597700016,73.51239655200011],[76.73121178500017,73.46979401200018],[76.75660241000011,73.44969310100014],[76.75440514400012,73.42987702000012],[76.72364342500006,73.43577708500005],[76.65479576900006,73.46401601800004],[76.56275475400017,73.48631419500005],[76.27735436300011,73.51862213700018],[76.11687259200008,73.51341380399998],[76.07195071700006,73.52545807500007],[76.16211998800011,73.56256745000012],[76.25074303500017,73.55418528900005],[76.42481530000012,73.51862213700018]]],[[[75.86589603000007,73.50153229400001],[75.8704533210001,73.49290599200013],[75.8929142590001,73.48021067900008],[75.90064537900011,73.47085195500013],[75.8025822270001,73.45384349199999],[75.49642988400015,73.44969310100014],[75.51050866000016,73.45408763200011],[75.5258895190001,73.46100495000012],[75.5350041020001,73.46918366100012],[75.5307723320001,73.47768789300015],[75.53541100400011,73.48281484600007],[75.54428144600016,73.49811432500003],[75.52572675900015,73.49404531500006],[75.47234134200014,73.47418854400014],[75.40056399800002,73.45831940300003],[75.37973066500015,73.44969310100014],[75.36296634200002,73.43524811400009],[75.36451256600017,73.42576732000008],[75.37191816500015,73.41811758000013],[75.37305748800011,73.40875885600009],[75.36003665500019,73.39695872600014],[75.34131920700023,73.39329661699999],[75.3211369150001,73.39736562700011],[75.30420983200023,73.40875885600009],[75.30681399800014,73.41864655200011],[75.30827884200019,73.420843817],[75.31104576900006,73.42304108299999],[75.3138126960001,73.42853424700003],[75.3352970710001,73.45091380400005],[75.35962975400011,73.46906159100014],[75.42090905000012,73.49811432500003],[75.61939537900015,73.55341217700011],[76.03386478000007,73.579046942],[76.07935631600006,73.55955638200011],[76.04224694100004,73.54437897300012],[75.92261803500011,73.5236677100001],[75.88982181100019,73.51605866100009],[75.87305748800006,73.50999583500008],[75.86589603000007,73.50153229400001]]],[[[86.76221764400006,73.603745835],[86.39893639400006,73.59438711100013],[86.465586785,73.61839427299999],[86.48764082100008,73.62164948100003],[86.5096134770001,73.64183177300006],[86.57471764400006,73.65387604400009],[86.69369550900014,73.66266510600015],[86.85108483200011,73.69855377800006],[86.90601647200018,73.70416901200002],[86.89234459700006,73.69672272300005],[86.88119550900015,73.690130927],[86.80990644600016,73.65835195500013],[86.79249108200005,73.645209052],[86.7893986340001,73.63788483300009],[86.79883873800011,73.6257184920001],[86.796153191,73.61481354400003],[86.78394616000004,73.60822174700014],[86.76221764400006,73.603745835]]],[[[142.2737736340001,73.86570872600005],[142.4811304050002,73.84760163000006],[142.58277428500017,73.825344143],[142.88355553500006,73.71059804900015],[142.9269311860001,73.70416901200002],[142.945078972,73.69944896000014],[143.00912519599999,73.66571686400015],[143.0302840500001,73.65888092700011],[143.15333092500012,73.64240143400004],[143.40723717500018,73.54279205900009],[143.43751061300017,73.52204010600009],[143.48373457100016,73.4801292990001],[143.53695722700004,73.44354889500006],[143.46697024800002,73.41290924700014],[143.44092858200005,73.40875885600009],[143.44922936300023,73.39630768400009],[143.45191491000006,73.38397858300014],[143.452403191,73.37213776200018],[143.4546004570001,73.36098867400007],[143.45883222700004,73.35809967700011],[143.4658309250001,73.35724518400004],[143.47217858200023,73.353949286],[143.47494550899998,73.34389883000001],[143.47413170700005,73.33746979400011],[143.47282962300005,73.33274974200002],[143.47266686300011,73.32782623900012],[143.47494550899998,73.32062409100011],[143.51710045700023,73.27838776200018],[143.538340691,73.25177643400004],[143.56511332800017,73.23115028900014],[143.52628679200018,73.20780655700013],[143.40655698999998,73.1883942720001],[143.17494506900002,73.17658021600005],[142.7571806650001,73.22086551000014],[142.53828165300013,73.21383151300006],[142.34392675700005,73.23523862200001],[142.2185031470001,73.24045947500018],[141.84103014,73.27010924100007],[141.51243479500025,73.29935170900002],[141.30864710300003,73.33072879000002],[141.04863392700005,73.37036707100013],[140.78862075100002,73.41000535200011],[140.502654051,73.40544238800005],[140.28870286600002,73.38317323300011],[140.15960833900007,73.34718274000012],[139.96510000300012,73.3265666250001],[139.81669593900008,73.33906922],[139.78649522400022,73.36952378100007],[139.767087831,73.4183447490001],[139.90651849700012,73.47102948499999],[140.0805057300001,73.45866971300008],[140.23487389400012,73.45229726800012],[140.49330243900025,73.48504391600012],[140.62671959700006,73.56195709800015],[140.65992272200006,73.5799828150001],[140.68970787900017,73.6039492860001],[140.7119246750001,73.63206614800013],[140.7319442070001,73.65277741100014],[140.79216556100008,73.70026276200007],[140.80941816500015,73.71727122600011],[140.84009850400017,73.75507233300006],[140.86638431100008,73.77977122600005],[140.89918053500014,73.80145905200011],[140.93474368600008,73.81928131699999],[141.127207879,73.88165924700017],[141.16602623800023,73.8823102890001],[141.16391035200004,73.87848541900011],[141.17025800900015,73.87689850500009],[141.18091881600017,73.87579987200003],[141.20777428500014,73.86933014500012],[141.36801191499998,73.86383698100009],[141.59473717500012,73.90607330900012],[142.04517662900014,73.91657135600009],[142.2737736340001,73.86570872600005]]],[[[124.58594811300016,73.91583893400015],[124.6333113940001,73.91014232],[124.65699303499999,73.90277741100009],[124.66065514400006,73.89199453300007],[124.62956790500006,73.87225983300014],[124.51417076900007,73.84137604400009],[124.50668379000004,73.84137604400009],[124.48658287900015,73.85248444200012],[124.46273847700016,73.85663483300006],[124.43824303500006,73.855169989],[124.41578209700005,73.84955475499999],[124.39047285199999,73.84662506700009],[124.36915123800021,73.85370514500012],[124.349375847,73.86322663000014],[124.3282983730002,73.868068752],[124.31202233200023,73.86896393400009],[124.29615319100004,73.87262604400014],[124.28785241000004,73.88092682500003],[124.29444420700023,73.89541250200008],[124.31251061300024,73.90424225500014],[124.35694420700017,73.90501536700008],[124.37647545700021,73.91583893400015],[124.36255944100004,73.91535065300017],[124.34880618600002,73.91644928600012],[124.33497155000022,73.91913483299999],[124.32178795700011,73.92328522300012],[124.38103274800008,73.93939850500003],[124.57569420700023,73.95001862200014],[124.48601321700019,73.93524811400006],[124.45883222700016,73.92328522300012],[124.58594811300016,73.91583893400015]]],[[[84.35523522200012,74.01886627800012],[84.32813561300006,74.01251862200009],[84.35059655000005,73.997788804],[84.4183048840001,73.97044505400011],[84.37859134200018,73.95604075700005],[84.33423912900017,73.9554710960001],[84.2286889980002,73.96694570500013],[84.17872155000005,73.98476797100001],[83.91211998800006,73.99359772300006],[83.89649498800006,73.99823639500009],[83.88502037900011,74.00653717700008],[83.88453209700006,74.01886627800012],[83.89747155000005,74.02317942900011],[83.96583092500012,74.02570221600003],[83.98015384200019,74.03314850500011],[84.01758873800006,74.03436920800011],[84.15788821700008,74.01886627800012],[84.24496504000008,74.02415599199999],[84.37940514400012,74.04767487200014],[84.40650475400011,74.04800039300007],[84.4183048840001,74.03998444200012],[84.41089928500006,74.02724844000006],[84.39307701900006,74.02098216400012],[84.35523522200012,74.01886627800012]]],[[[83.62012780000012,74.09088776200007],[83.61304772200018,74.08087799700014],[83.58253014400012,74.07343170799999],[83.5275985040001,74.06732819199999],[83.53484134200008,74.082505601],[83.50310306100019,74.08559804900005],[83.39551842500012,74.07453034100001],[83.4036564460001,74.06207916900011],[83.4339298840001,74.05036041900003],[83.46558678500016,74.04682038000014],[83.43336022200006,74.03681061400005],[83.39234459700006,74.03579336100009],[83.081309441,74.08710358300011],[82.8281356130001,74.080308335],[82.8281356130001,74.08779531500006],[82.81446373800006,74.09398021000014],[82.8592228520001,74.11859772300012],[82.91749108200023,74.13092682500017],[83.05909264400006,74.13678620000002],[83.1800236340001,74.15517812700007],[83.513438347,74.12128327000003],[83.53956139400006,74.11961497600002],[83.5696720710001,74.11432526200012],[83.59839928500006,74.104925848],[83.62012780000012,74.09088776200007]]],[[[82.6653751960001,74.06761302300013],[82.61963951900006,74.05499909100014],[82.59213300900015,74.0564639340001],[82.55176842500006,74.07391998900009],[82.3528751960001,74.08087799700014],[82.3343205090001,74.08563873900006],[82.32105553500017,74.10138580900012],[82.31755618600008,74.11684804900013],[82.32203209700005,74.12718333500004],[82.33326256600006,74.13446686400006],[82.34986412900011,74.14061107000005],[82.3986922540001,74.15289948100009],[82.454356316,74.16071198100009],[82.56804446700019,74.16290924700017],[82.740000847,74.10138580900012],[82.71143639400012,74.08588288000003],[82.6653751960001,74.06761302300013]]],[[[135.74512780000023,74.17039622600005],[135.86841881600006,74.13873932500017],[135.91342207100004,74.13328685100014],[135.95728600400017,74.11513906500012],[136.01075280000006,74.10346100500014],[136.02613366000006,74.09772370000015],[136.1147567070001,74.04682038000014],[136.2163192070001,74.01422760600008],[136.26270592500006,73.98899974200013],[136.25896243600005,73.95746491100012],[136.26978600400005,73.9316266950001],[136.248301629,73.91209544500013],[136.21338951900012,73.89972565300009],[136.1740014980002,73.89354075700011],[136.16773522200006,73.88914622600014],[136.16285241000017,73.88373444200009],[136.15609785200016,73.87889232000009],[136.14616946700008,73.87710195500004],[136.13526451900006,73.87921784100003],[136.0807397800002,73.89817942900005],[136.06617272200006,73.90729401200004],[136.060313347,73.9195824240001],[136.04167728000002,73.93805573100012],[135.73267662900005,74.04120514500013],[135.7065535820001,74.05565013200003],[135.68580162900017,74.07453034100001],[135.67725670700005,74.09772370000015],[135.66016686300011,74.11017487200009],[135.55298912900005,74.15102773600013],[135.51417076900012,74.15517812700007],[135.47535241000017,74.15497467700011],[135.43930097700004,74.161118882],[135.40919030000012,74.184027411],[135.39128665500007,74.23456452],[135.380625847,74.24420807500015],[135.35401451900006,74.25910065300012],[135.38550866000017,74.25910065300012],[135.40088951900012,74.257025458],[135.45167076900006,74.24262116100012],[135.58952884200008,74.235052802],[135.74512780000023,74.17039622600005]]],[[[140.54509524800002,73.91583893400015],[140.43775475400017,73.90843333500008],[140.32667076900006,73.9386253930001],[140.19836211700007,74.02558188400002],[140.164716255,74.07063819000014],[140.17277571900004,74.10342368200016],[140.17797489900025,74.15436468500009],[140.19313617500003,74.19069773600008],[140.22188882800017,74.22008231800008],[140.34990002600014,74.25421572500015],[140.62067472050006,74.26536587150012],[140.8914494150001,74.2765160180001],[140.97925866000006,74.26333242400013],[141.05836022200006,74.23444245000003],[141.10401451900006,74.184027411],[141.11011803500017,74.17035553600006],[141.11264082099999,74.16608307500015],[141.0978296230002,74.14923737200014],[141.08627363399998,74.13983795800011],[141.07536868600013,74.13312409100017],[141.07113691499995,74.12506745000003],[141.08008873800011,74.11172109600012],[141.08204186300006,74.10610586100005],[141.07781009200008,74.10244375200007],[141.0719507170002,74.09894440300017],[141.0698348320001,74.09398021000014],[141.07252037900017,74.08974844],[141.08171634200002,74.082505601],[141.08350670700023,74.07721588700012],[141.08106530000012,74.06460195500013],[141.07471764400017,74.060003973],[141.06617272200006,74.0564639340001],[141.0568139980002,74.04682038000014],[141.05396569100017,74.03839752800009],[141.0529891290001,74.0211449240001],[141.048675977,74.01211172100007],[141.03777103000013,74.00385162999999],[140.98796634200002,73.98476797100001],[140.94076582100013,73.97675202000006],[140.84351647200015,73.97650788000011],[140.79615319100006,73.97044505400011],[140.74341881600006,73.95233795800011],[140.72396894600004,73.95001862200014],[140.6740014980002,73.94928620000012],[140.62476647200018,73.94318268400004],[140.56332441500004,73.91937897300012],[140.54509524800002,73.91583893400015]]],[[[116.05298912900015,74.28522370000017],[116.00562584700006,74.28485748900005],[115.95826256599999,74.29022858300011],[115.92009524800002,74.30003489800005],[115.898203972,74.30206940300017],[115.88998457100004,74.303697007],[115.89226321700019,74.3063011740001],[115.88575280000008,74.32363515800007],[115.8987736340001,74.34259674700009],[115.92066491,74.3590355490001],[115.94125410200014,74.36896393400009],[115.980723504,74.37750885600012],[116.02279707100016,74.37836334800012],[116.06332441499998,74.37099844000012],[116.09831790500019,74.354681708],[116.1165470710001,74.33934153900005],[116.12484785200014,74.32322825700008],[116.11817467500012,74.30744049700003],[116.09148196700008,74.29262929900014],[116.05298912900015,74.28522370000017]]],[[[84.93482506600017,74.48200104400003],[84.89812259200008,74.471380927],[84.850840691,74.46800364800008],[84.67359459700006,74.47760651200015],[84.57862389400012,74.46849192900005],[84.5418400400001,74.45709870000009],[84.7678328790001,74.40989817900011],[84.73275800900015,74.39569733300002],[84.43921959700018,74.42552317900011],[84.39779707100016,74.44061920800011],[84.38656660200016,74.45766836100016],[84.4183048840001,74.46808502800015],[84.59180748800006,74.49892812700001],[84.87086022200018,74.50556061400007],[84.9070744150001,74.50165436400009],[84.93311608200005,74.4929059920001],[84.93482506600017,74.48200104400003]]],[[[113.36638431100002,74.35122304900001],[113.32732181100008,74.32721588700015],[113.2412215500001,74.30003489800005],[113.27222741000006,74.287258205],[113.28158613400015,74.27960846600017],[113.22348066500004,74.26390208500011],[113.20704186300011,74.25165436400015],[113.22006269599999,74.24481842700011],[113.15739993600019,74.225002346],[113.028575066,74.212062893],[112.96656334700006,74.19358958500007],[112.94922936300006,74.18235911699999],[112.91830488400004,74.15477122600008],[112.84571373800023,74.108343817],[112.77491295700011,74.088080145],[112.66732832100004,74.10651276200004],[112.577891472,74.10138580900012],[112.47706139400023,74.12262604400011],[112.16285241000016,74.138576565],[112.12077884200019,74.15135325700004],[112.04175866000017,74.18707916900009],[111.93873131600006,74.21710846600004],[111.58130944100006,74.26015859600007],[111.48454837300002,74.2924665390001],[111.45923912900011,74.31370677299999],[111.46851647200006,74.34479401200018],[111.510996941,74.36005280200006],[111.64771569100017,74.37995026200014],[111.70313561300006,74.377142645],[111.8087671230002,74.354681708],[111.8515731130001,74.35053131700006],[111.90267988400014,74.35586172100012],[111.9513452480002,74.37079498900005],[111.98682701900012,74.39569733300002],[111.97242272200006,74.40892161700005],[111.972911004,74.42059967700013],[111.98365319100006,74.43109772300004],[112.00049889400023,74.44061920800011],[112.00416100400017,74.44769928600009],[111.98145592500006,74.46596914300015],[111.97315514400006,74.47821686400003],[112.00733483200023,74.53815338700004],[112.11011803500017,74.55121491100012],[112.41138756600006,74.53339264500015],[112.74976647200006,74.49579498900015],[113.04769941499998,74.49567291900017],[113.31446373800021,74.47980377800006],[113.36646569099999,74.46674225500006],[113.40577233200011,74.44403717700011],[113.41277103000019,74.43520742400007],[113.42204837300008,74.41657135600018],[113.42953535200003,74.40619538000009],[113.42945397200006,74.39419179900015],[113.40870201900023,74.388413804],[113.3647567070001,74.38263580900004],[113.36638431100002,74.35122304900001]]],[[[85.49537194100006,74.49941640800002],[85.50131269600016,74.46454498900009],[85.3118595710001,74.46564362200003],[85.24781334700005,74.47646719000004],[85.20850670700023,74.48981354400003],[85.16675866000011,74.51186758000004],[85.14812259200018,74.53717682500015],[85.17855879000015,74.56073639500003],[85.23747806100002,74.57526276200015],[85.53891035200016,74.57440827000015],[85.56446373800006,74.56956614800008],[85.61557050900015,74.54946523600002],[85.64478600400015,74.54645416900003],[85.6307072270001,74.51129791900013],[85.49537194100006,74.49941640800002]]],[[[85.98926842500006,74.57729726800008],[86.0784611340001,74.55524323100018],[86.16277103000017,74.54458242400015],[86.20215905000006,74.5338809270001],[86.2072046230002,74.51235586100002],[86.14747155000006,74.49310944200006],[86.11304772200012,74.4872500670001],[86.09791100400011,74.49494049700006],[86.07992597700016,74.50869375200016],[86.03907311300011,74.51532623900012],[85.99537194100006,74.51605866100006],[85.96827233200011,74.51235586100002],[85.97437584700018,74.50263092700006],[85.9838973320001,74.49616120000013],[85.99561608200004,74.49262116100009],[86.00855553500017,74.49188873900015],[85.9917098320001,74.47711823100015],[85.9778751960001,74.46942780200014],[85.9173283210001,74.46124909100006],[85.85840905000012,74.44403717700011],[85.80372155000005,74.44232819200012],[85.70769290500013,74.46507396000005],[85.65845787900011,74.471380927],[85.67465254000015,74.4829776060001],[85.72730553500017,74.50177643400015],[85.73462975400017,74.50796133000013],[85.75017337300008,74.52728913000006],[85.79053795700023,74.5676130230001],[85.80298912900017,74.57440827000015],[85.82545006600017,74.57819245000017],[85.87476647200006,74.57689036699999],[85.93913821700008,74.58246491100009],[85.98926842500006,74.57729726800008]]],[[[79.58863366000011,74.58690013200005],[79.54883873800011,74.57001373900006],[79.5212508470001,74.55003489799999],[79.53223717500006,74.52602773600013],[79.49000084700006,74.51691315300015],[79.42904707100016,74.52265045800011],[79.190684441,74.58808014500009],[79.14869225400011,74.60789622600002],[79.16236412900017,74.60789622600002],[79.2010197270001,74.60248444200015],[79.2430119150001,74.58820221600013],[79.28321373800011,74.57949453300007],[79.31690514400012,74.59080638200005],[79.31072024800014,74.60871002800012],[79.26636803500017,74.62042877800009],[79.18279056100002,74.62905508000001],[79.20378665500007,74.65143463700012],[79.2443139980002,74.65863678600006],[79.32056725400017,74.65631745000009],[79.31657962300008,74.64935944199999],[79.31023196700002,74.64354075700005],[79.30201256600006,74.63898346600011],[79.29273522200018,74.63589101800011],[79.33375084700018,74.62531159100017],[79.56332441500015,74.612250067],[79.59717858200023,74.60333893400015],[79.6141056650001,74.60175202000012],[79.58863366000011,74.58690013200005]]],[[[85.5373641290001,74.80267975500011],[85.55982506600006,74.799750067],[85.61036217500006,74.80394114800013],[85.6347762380001,74.80272044500009],[85.65845787900011,74.79352448100003],[85.65064537900011,74.77114492400003],[85.6619572270001,74.75385163000011],[85.68336022200005,74.74087148600003],[85.70622806100008,74.73143138200011],[85.67896569100017,74.72313060100014],[85.65503991000011,74.72565338700007],[85.60377037900017,74.73826732000013],[85.50603274800008,74.71625397300012],[85.48406009200008,74.72150299700012],[85.4617619150001,74.73533763200011],[85.42798912900011,74.74506256700006],[85.36573326900006,74.75250885600003],[85.22706139400006,74.74510325700005],[85.11451256600017,74.74583567900008],[85.09669030000012,74.75560130400011],[85.11329186300006,74.76569245000017],[85.34620201900006,74.77789948100015],[85.40870201900012,74.79002513200005],[85.4666447270001,74.8139509140001],[85.49586022200005,74.81386953300013],[85.5373641290001,74.80267975500011]]],[[[87.12208092500005,74.95164622600005],[87.1388452480002,74.93691640800014],[87.12232506600006,74.93256256700006],[87.07764733200005,74.89964427299999],[87.05355879000015,74.89081452000012],[86.9941512380001,74.88373444200006],[86.94548587300007,74.88410065300017],[86.923594597,74.88873932500012],[86.85523522200005,74.91282786700013],[86.72657311300011,74.91620514500015],[86.69988040500019,74.91010163000006],[86.6868595710001,74.89594147300012],[86.69605553500017,74.88703034100011],[86.74089603000019,74.87132396000014],[86.77979576900012,74.865423895],[86.82618248800006,74.85126373900009],[86.94703209700012,74.84072500200001],[86.91960696700008,74.81981028900006],[86.87159264400005,74.82046133000001],[86.73243248800006,74.8495140650001],[86.57081139400006,74.84072500200001],[86.544688347,74.84247467700011],[86.49390709700018,74.85260651200015],[86.4677840500001,74.85496653900013],[86.36475670700023,74.84813060100011],[86.31983483200023,74.85089752800015],[86.29818769600016,74.85765208499998],[86.28907311300004,74.87201569200009],[86.27906334700018,74.88251373900015],[86.23031660200016,74.89508698100003],[86.21338951900005,74.90338776200011],[86.23259524800002,74.91461823100012],[86.25114993600008,74.91864655199998],[86.27125084700018,74.91583893400004],[86.29590905000006,74.90648021],[86.32007897200018,74.90029531500012],[86.50945071700008,74.89032623900015],[86.56592858200011,74.89691803600012],[86.5975041020001,74.91705963700015],[86.57357832100008,74.91742584800006],[86.50131269600014,74.93065013200011],[86.52930748800006,74.9505882830001],[86.51303144600016,74.9657250020001],[86.49512780000006,74.97846100500014],[86.52393639400012,74.98696523600006],[86.63917076900006,74.97223541900009],[86.62525475400017,74.95551178600006],[86.61866295700011,74.9505882830001],[86.7189233730002,74.95477936400012],[86.91578209700005,74.98932526200004],[87.02898196700002,74.99152252800012],[87.12208092500005,74.95164622600005]]],[[[82.15154056100019,75.1086286480001],[82.15040123800006,75.09516022300012],[82.0568139980002,75.11790599200008],[82.0267033210001,75.12872955900015],[82.05111738400015,75.14618561400012],[82.08253014400006,75.15802643400018],[82.11329186300006,75.15863678600013],[82.13656660200016,75.14232005400011],[82.14600670700005,75.1329613300001],[82.15040123800006,75.12148672100012],[82.15154056100019,75.1086286480001]]],[[[82.13013756600006,75.45722077000015],[82.1342879570001,75.44082265800013],[82.16456139400006,75.43773021000005],[82.13135826900006,75.42430247600008],[82.01303144600016,75.444037177],[82.0529077480002,75.41962311400015],[82.10368899800008,75.41644928600009],[82.15658613400008,75.419826565],[82.20394941500015,75.41494375200013],[82.21778405000006,75.40761953300004],[82.22535241000011,75.39826080900009],[82.23121178500017,75.38751862200017],[82.2395939460001,75.37567780200011],[82.2522892590001,75.36473216400005],[82.28126061300006,75.34564850500006],[82.29428144600016,75.3341738950001],[82.243825717,75.33274974200005],[82.07691491000017,75.34613678600006],[82.04118899800002,75.33783600500009],[82.04200280000006,75.32990143400012],[82.04420006600006,75.32196686400013],[82.05128014400012,75.307114976],[82.0525822270001,75.29816315300015],[82.03777103000002,75.28925202000012],[82.03370201900006,75.28009674700003],[82.04395592500006,75.26410553600014],[82.04542076900006,75.25580475500006],[82.03394616000011,75.252183335],[82.0217391290001,75.25096263200008],[82.010915561,75.24721914300015],[82.00114993600019,75.24103424700017],[81.99268639400006,75.23236725500009],[82.0042423840001,75.22199127800016],[82.01172936300004,75.20962148600013],[82.01286868600019,75.19635651200012],[82.00562584700005,75.18329498900015],[82.01303144600016,75.17715078300014],[81.98454837300002,75.17739492400001],[81.95639082100016,75.18203359600012],[81.93018639400012,75.19196198100003],[81.9065861340001,75.2081566430001],[81.89454186300006,75.22394440300002],[81.894297722,75.23607005400011],[81.89795983200005,75.24884674700017],[81.89698326900012,75.26650625200006],[81.87077884200008,75.31590403900005],[81.84538821700002,75.32168203300002],[81.81763756600017,75.32371653900005],[81.80201256600017,75.316148179],[81.81397545700011,75.29315827000003],[81.7585555350001,75.29319896000003],[81.73121178500017,75.29913971600003],[81.71159915500019,75.31427643400004],[81.7171330090001,75.29816315300015],[81.7205509770001,75.29214101800014],[81.72510826900006,75.28701406500012],[81.68848717500006,75.27704498900015],[81.6407983730002,75.28750234600012],[81.55388431100017,75.32050202000009],[81.57618248800006,75.3414981140001],[81.58171634200008,75.34845612200012],[81.53435306100002,75.34674713700012],[81.5110783210001,75.350287177],[81.49244225400011,75.36204661700008],[81.52491295700011,75.38125234600012],[81.71159915500019,75.45368073100015],[81.7518009770001,75.46328359600012],[81.7933048840001,75.46507396000011],[81.77165774800018,75.44497304900005],[81.74122155000005,75.42426178600009],[81.7319442070001,75.406927802],[81.77295983200011,75.39679596600003],[81.73878014400012,75.38251373900012],[81.76823978000019,75.38076406500012],[81.93962649800002,75.39350006699999],[81.96534264400006,75.403021552],[81.94516035200016,75.41962311400015],[81.92139733200021,75.43301015800013],[81.8952742850001,75.44159577000005],[81.86915123800006,75.444037177],[81.88770592500006,75.455267645],[81.93034915500019,75.459214585],[81.9510197270001,75.46507396000011],[81.9510197270001,75.47874583500004],[81.93677819100017,75.48281484600011],[81.90853925900015,75.48566315300015],[81.89698326900012,75.49237702],[81.9599715500001,75.50975169499999],[82.17074629000014,75.51972077000009],[82.1683048840001,75.51288483300006],[82.16374759200008,75.509670315],[82.15040123800006,75.5067406270001],[82.15040123800006,75.49921295800011],[82.13013756600006,75.45722077000015]]],[[[146.72950280000012,75.48822663000009],[146.70346113400015,75.48480866100006],[146.68197675900004,75.48493073100003],[146.68637128999998,75.47504303600012],[146.688812696,75.47134023600007],[146.64210045700023,75.44769928600014],[146.6342879570002,75.43773021000005],[146.64283287900017,75.42316315300003],[146.6647241550002,75.415961005],[146.70948326900023,75.409857489],[146.7282007170002,75.40241120000002],[146.77076256600017,75.37567780200011],[146.79672285200016,75.36635976800005],[147.15503991000006,75.33637116100012],[147.21656334700015,75.34613678600006],[147.32545006600012,75.349839585],[147.347422722,75.35521067900005],[147.31169681100016,75.37482330900012],[147.2627059250001,75.37506745000015],[147.1681421230002,75.36204661700008],[147.19263756600006,75.38117096600014],[147.23064212300002,75.39630768400002],[147.27165774800002,75.40631745000003],[147.35027103000007,75.409857489],[147.36133873800011,75.40835195500016],[147.36133873800011,75.40460846600003],[147.35816491000006,75.40029531500012],[147.3605249360002,75.39679596600003],[147.37818444100017,75.39264557500009],[147.43620853000007,75.38934967700006],[147.42156009200008,75.40643952],[147.39210045700005,75.41738515800016],[147.3331811860002,75.43036530200006],[147.37387128999998,75.44037506700015],[147.6862085300002,75.44208405200006],[147.83855228000004,75.41909414300007],[148.12313886850004,75.42009105050009],[148.40772545700023,75.42108795800003],[148.54712975400017,75.38556549700003],[148.58008873800023,75.38251373900012],[148.55274498800006,75.34674713700012],[148.54281660200016,75.34153880400011],[148.52507571700008,75.33783600500009],[148.45728600400017,75.31085846600003],[148.4445093110001,75.28729889500005],[148.47982832100016,75.26581452000015],[148.560313347,75.23859284100014],[148.55420983200023,75.22736237200006],[148.55762780000023,75.222357489],[148.61036217500023,75.21552155200008],[148.67286217500006,75.224514065],[148.70362389400023,75.22553131700006],[148.78492272200006,75.21873607000013],[148.89991295700023,75.22272370000012],[148.946625196,75.23822663000011],[149.12680097700004,75.2686221370001],[149.46100236600014,75.25425853033336],[149.79520375500007,75.2398949236668],[150.12940514400012,75.22553131700006],[150.17481530000006,75.21287669499998],[150.19629967500012,75.20221588700015],[150.21469160200016,75.18699778899999],[150.21387780000023,75.17719147300015],[150.19800866,75.169663804],[150.17758222700016,75.1632347680001],[150.16342207100004,75.15664297100001],[150.21306399800002,75.16840241100009],[150.26644941500007,75.165716864],[150.41749108200023,75.13458893400012],[150.56080162900017,75.12872955900015],[150.53891035200004,75.11896393400004],[150.4918725920002,75.10960521],[150.47136478000007,75.10138580900008],[150.50025475400017,75.09446849200002],[150.53541100400005,75.0956891950001],[150.63282311300011,75.11652252800009],[150.64828535200004,75.12335846600011],[150.660411004,75.13239166900003],[150.6652124360002,75.141587632],[150.66488691500015,75.14899323100018],[150.66578209700018,75.15501536699999],[150.67367597700004,75.15997955900004],[150.7096460300001,75.16689687700013],[150.8276473320001,75.16339752800006],[150.86036217500023,75.162298895],[150.92676842500018,75.15208567900005],[150.95801842500023,75.14232005400011],[150.91016686300011,75.13955312700016],[150.85865319100006,75.12567780200007],[150.81226647200018,75.1030134140001],[150.77979576900006,75.0740420590001],[150.78736412900005,75.06728750200008],[150.7700301440002,75.052964585],[150.70476321700002,75.03245677300005],[150.70476321700002,75.02252838700004],[150.70240319100017,75.01813385600015],[150.69654381600006,75.01805247599998],[150.68962649800002,75.019273179],[150.68360436300023,75.01886627800009],[150.65406334700015,75.00787995000003],[150.64649498800023,75.002386786],[150.65137780000012,74.99070872600011],[150.67359459700006,74.97760651200004],[150.6906844410001,74.95978424700014],[150.68051191500015,74.93378327000009],[150.64527428499997,74.90664297100007],[150.60922285200016,74.893500067],[150.20256595100008,74.84931061400012],[149.79590905000006,74.80512116100005],[149.77247155000012,74.7966169290001],[149.72901451900023,74.76959870000017],[149.71753991,74.7655703800001],[149.2937117850001,74.77204010600012],[149.20899498800011,74.75800202000006],[148.86337324333343,74.77317942900005],[148.5177514986667,74.78835683800004],[148.17212975400017,74.80353424700003],[147.85320071700008,74.88800690300017],[147.80160566500004,74.90859609600001],[147.74878991000006,74.91608307500017],[147.72364342500023,74.92381419499999],[147.73047936300017,74.93065013200011],[147.66382897200018,74.95343659100003],[147.51832116000017,74.97117747600014],[147.3151147800002,74.97345612200009],[147.08790123800006,75.00519440300015],[146.95582116000003,75.0541852890001],[146.64844811300003,75.12840403900005],[146.21802819100017,75.17633698100015],[146.11963951900023,75.20502350500011],[146.10230553500017,75.21352773600012],[146.08073978000007,75.22736237200006],[146.07178795700023,75.24030182500013],[146.11060631600006,75.2512067730001],[146.14307701900023,75.27423737200009],[146.15796959700018,75.27952708500007],[146.17286217500023,75.29071686400009],[146.18091881600017,75.316148179],[146.1837671230002,75.34398021000005],[146.18238366000006,75.36204661700008],[146.167816602,75.38605377800012],[146.16863040500013,75.39618561400005],[146.18921959700006,75.39492422100007],[146.212738477,75.38971588700014],[146.23894290500004,75.38776276200012],[146.26392662900017,75.39134349199998],[146.28492272200012,75.403021552],[146.25635826900012,75.41474030200008],[146.250743035,75.42523834800015],[146.26384524800008,75.436672268],[146.29167728000002,75.45148346600017],[146.31959069100017,75.45945872600014],[146.3790796230002,75.46295807500012],[146.40707441500004,75.47134023600007],[146.374278191,75.48460521000011],[146.35043379000015,75.500677802],[146.3414819670002,75.522650458],[146.35303795700023,75.55390045800009],[146.38917076900006,75.58515045800014],[146.4362085300002,75.59674713700015],[146.48633873800011,75.5943871110001],[146.66309655000006,75.55560944200009],[146.6721297540001,75.54954661699999],[146.68392988400015,75.53196849200005],[146.69418378999998,75.52521393400012],[146.77076256600017,75.5067406270001],[146.75391686300017,75.49542877800009],[146.72950280000012,75.48822663000009]]],[[[137.08130944100006,75.56818268400013],[137.05453535200004,75.56801992400001],[137.02515709700006,75.57160065300017],[136.99732506600017,75.57933177299999],[136.97510826900012,75.59174225500011],[136.96998131600012,75.59711334800006],[136.96762129000015,75.60179270999998],[136.96794681100008,75.60594310100014],[136.96981855600015,75.60903554900001],[136.96989993600013,75.6078148460001],[136.96989993600013,75.60578034100017],[136.97022545700023,75.60374583500014],[136.97144616000017,75.60162995000003],[136.992035352,75.58832428599999],[137.0568139980002,75.57831452000012],[137.08130944100006,75.56818268400013]]],[[[136.9812117850001,75.61652252800017],[136.97022545700023,75.60968659100014],[136.98462975399997,75.62164948100009],[137.01270592500012,75.629787502],[137.05990644599999,75.64077383000007],[137.07113691499998,75.643255927],[137.08350670700023,75.643255927],[137.13135826900023,75.65241120000017],[137.13990319100017,75.652818101],[137.11158287900005,75.642808335],[136.9812117850001,75.61652252800017]]],[[[135.84449303500017,75.38263580900009],[135.45004316500015,75.37567780200011],[135.4497176440001,75.39443594000006],[135.45508873800006,75.40766022300004],[135.45883222700002,75.42129140800016],[135.45378665500016,75.43402741100012],[135.45118248800003,75.447455145],[135.46159915500004,75.46206289300012],[135.478363477,75.47386302299999],[135.51579837300002,75.48403554900011],[135.52833092500023,75.496771552],[135.54623457099999,75.52716705900015],[135.59408613400004,75.56818268400013],[135.58838951900023,75.59739817900011],[135.5522567070001,75.64809804900007],[135.53939863400015,75.67796458500005],[135.55274498800006,75.6816266950001],[135.56511478000013,75.68797435100005],[135.58790123800023,75.70465729400007],[135.58366946700014,75.71010976800012],[135.57829837300008,75.72052643400012],[135.57349694100017,75.725775458],[135.58562259200008,75.73029205900013],[135.59400475400003,75.73607005400011],[135.60775800900015,75.75250885600012],[135.6041772800002,75.75885651200004],[135.60271243600013,75.76434967700008],[135.60474694100006,75.76984284100008],[135.61101321700016,75.77521393400015],[135.61687259200002,75.7768008480001],[135.62281334700018,75.77732982000008],[135.65674889400012,75.79287344000005],[135.6710718110002,75.80166250200011],[135.67725670700005,75.81085846600011],[135.67725670700005,75.81997304900008],[135.6779891290001,75.82575104400014],[135.67994225400003,75.83002350500009],[135.68409264400006,75.83441803600006],[135.67823326900023,75.8597679710001],[135.69312584700018,75.86933014500005],[135.70850670700023,75.86481354400003],[135.70394941499998,75.848089911],[135.73601321700008,75.82583242400011],[135.78052819100017,75.80524323100009],[135.81641686300017,75.78058502800012],[135.82129967500023,75.74567291900009],[135.83838951900003,75.74022044500005],[135.84717858200023,75.72606028900013],[135.85401451900023,75.7114118510001],[135.86475670700005,75.70465729400007],[135.88672936300011,75.69936758],[135.93279056100002,75.67593008000013],[135.95753014400012,75.67055898600006],[135.9860132170002,75.66864655200011],[136.05567467500006,75.655707098],[136.10645592500023,75.63898346600008],[136.16016686300011,75.62962474200005],[136.184336785,75.61591217700011],[136.16830488400004,75.60089752800009],[135.99138431100008,75.52716705900015],[135.95932050899998,75.50202057500017],[135.96713300899998,75.479478257],[135.99756920700023,75.4600283870001],[136.03296959700006,75.444037177],[136.0133569670002,75.428900458],[135.98340905000012,75.4171817080001],[135.84449303500017,75.38263580900009]]],[[[81.63705488400015,75.93475983300011],[81.63640384200019,75.930609442],[81.68637129000015,75.93146393400008],[82.1095483730002,75.88898346600003],[82.2280379570001,75.88703034100017],[82.259043816,75.87596263200014],[82.2231551440001,75.86041901200004],[81.76140384200008,75.89386627800009],[81.67888431100008,75.91315338700004],[81.59327233200011,75.917181708],[81.55388431100017,75.930609442],[81.5776473320001,75.93545156500006],[81.60230553500011,75.9374453800001],[81.62761478000007,75.93675364800008],[81.63705488400015,75.93475983300011]]],[[[59.237152540000096,75.94822825700011],[59.19890384200008,75.94379303600014],[59.158946160000106,75.944037177],[59.093272332000225,75.934027411],[59.02125084700017,75.93207428600006],[58.95150800900014,75.91844310100011],[58.878591342000185,75.91474030200004],[58.810313347,75.902085679],[58.724131707000225,75.89704010600015],[58.6932072270001,75.90326569200012],[58.73170006600011,75.91689687700006],[58.99122155000006,75.94798411700008],[59.034353061000076,75.95986562700004],[59.06861412900011,75.9682070980001],[59.140147332000055,75.97565338700015],[59.200205925000056,75.98924388200011],[59.234141472,75.990668036],[59.2600203790001,75.98407623900012],[59.26246178500017,75.96539948100003],[59.237152540000096,75.94822825700011]]],[[[82.97002200650009,75.97646718950011],[83.24447675900015,75.96230703300016],[83.27947024800008,75.95628489800005],[83.29712975400017,75.94310130400002],[83.27605228000007,75.93073151200015],[83.21290123800006,75.91693756700006],[83.17448978000007,75.91669342700011],[83.06153405000012,75.930609442],[83.02466881600006,75.930161851],[82.91765384200019,75.91693756700006],[82.86231530000012,75.917181708],[82.84327233200011,75.92487213700012],[82.856130405,75.94428131700012],[82.82398522200018,75.954779364],[82.70728600400017,75.94428131700012],[82.53394616000011,75.95795319200006],[82.38941491000011,75.94428131700012],[82.31641686300006,75.94717031500005],[82.27784264400006,75.95538971600014],[82.259043816,75.97223541900014],[82.41529381600006,75.96507396000011],[82.46501712300002,75.97223541900014],[82.53614342500006,75.99437083500013],[82.56120853000017,75.99884674700009],[82.65748131599999,75.99884674700009],[82.69556725400011,75.99062734600001],[82.97002200650009,75.97646718950011]]],[[[97.04737389400006,76.00633372600008],[96.74805748800011,75.98102448100003],[96.69857832100016,75.995794989],[96.71314537900011,76.02163320500013],[96.74773196700018,76.03099192900005],[97.1580509770001,76.08828359600001],[97.2933048840001,76.09634023600013],[97.3348087900001,76.10871002800017],[97.3348087900001,76.10252513200011],[97.30486087300007,76.08340078300013],[97.17847741,76.054144598],[97.04737389400006,76.00633372600008]]],[[[152.82504316500015,76.08881256700008],[152.77344811300011,76.08340078300013],[152.70411217500023,76.09398021],[152.5841577480002,76.125921942],[152.5548608730002,76.139349677],[152.56983483200023,76.15241120000015],[152.62045332100004,76.16941966400013],[152.70980879,76.18667226800012],[152.82927493600016,76.19619375200013],[152.84945722700004,76.19578685100011],[152.87769616000017,76.19122955900018],[152.87403405000012,76.18089427300008],[152.86353600400005,76.16632721600014],[152.87525475400005,76.15135325700011],[152.88591556100008,76.1449242210001],[152.89079837300002,76.13446686400012],[152.88428795700023,76.11611562700014],[152.85718834699998,76.101263739],[152.82504316500015,76.08881256700008]]],[[[95.1972762380001,76.16400788000009],[95.15593509200006,76.15371328300016],[95.10157311300006,76.15497467700008],[95.04704837300008,76.16412995000013],[95.00603274800008,76.17767975500011],[95.04883873800006,76.19155508000001],[95.06714928499999,76.20099518400012],[95.08122806100008,76.21857330900013],[95.10157311300006,76.22540924700017],[95.15894616000016,76.20160553600009],[95.18181399800008,76.185532945],[95.17741946700019,76.170843817],[95.19174238400008,76.16502513200014],[95.1972762380001,76.16400788000009]]],[[[139.10962975400005,76.09686920800011],[139.5539656910001,76.01137929900001],[139.62427819100006,75.9858259140001],[139.79493248800023,75.97842031500012],[139.82545006600017,75.97003815300015],[139.88257897200006,75.94550202000015],[139.9116317070002,75.9374453800001],[139.8971460300002,75.92523834800011],[139.8776147800002,75.92658112200003],[139.85596764400012,75.93162669500005],[139.8357853520001,75.930609442],[139.8287866550002,75.9232445330001],[139.8292749360002,75.9142113300001],[139.8287866550002,75.90656159100014],[139.81910241000006,75.90326569200012],[139.797618035,75.90082428600009],[139.79135175900012,75.89447663000006],[139.79859459700018,75.88617584800006],[139.81690514400023,75.877834377],[139.89063561300011,75.86424388200005],[139.90414472700016,75.85936107],[139.93881269600004,75.84186432500003],[139.95606530000023,75.83584219000012],[140.15040123800006,75.800523179],[140.25993899800014,75.83112213700012],[140.300547722,75.82689036700002],[140.3434350920002,75.81679922100011],[140.48072350400005,75.80093008000001],[140.50953209700006,75.79047272300012],[140.53760826900017,75.77431875200016],[140.54590905000023,75.75551992400001],[140.46851647200006,75.70905182500015],[140.45630944100014,75.70465729400007],[140.45337975400017,75.70062897300002],[140.44629967500012,75.6813011740001],[140.44263756600006,75.6742617860001],[140.43490644600004,75.66445547100008],[140.43295332099999,75.65656159100011],[140.43832441500015,75.65021393400018],[140.45248457100016,75.645005601],[140.47584069100006,75.64032623900006],[140.67676842500023,75.62327708500011],[140.76563561300011,75.63129303600006],[140.90186608200005,75.61591217700011],[140.98650149800008,75.62067291900003],[141.03003991,75.63080475500009],[141.06226647200006,75.65009186400003],[141.04151451900023,75.65818919500013],[140.99642988399998,75.66925690300017],[140.9742944670002,75.67796458500005],[140.9897567070002,75.68610260600018],[140.99822024800008,75.68927643400004],[141.0078231130002,75.69106679900013],[140.97494550900015,75.70538971600011],[140.864431186,75.73883698100018],[140.89112389400023,75.76951732000008],[140.90528405000006,75.80890534100014],[140.90495853000007,75.84837474200013],[140.87875410200004,75.896918036],[140.88591556100008,75.91254303600009],[140.898203972,75.92877838700012],[140.90463300900004,75.94798411700008],[140.90544681100002,75.9682070980001],[140.90894616000006,75.98411692900011],[140.917246941,75.99823639500015],[140.93262780000023,76.013128973],[140.96615644599999,76.03497955900004],[141.00098717500012,76.04743073100015],[141.03858483200023,76.0528832050001],[141.2309676440001,76.05707428600012],[141.585215691,76.00751373899999],[141.62468509200016,76.013128973],[141.60710696700005,76.03017812700014],[141.51482181100013,76.054144598],[141.48536217500023,76.07265859600004],[141.4565535820001,76.0991071640001],[141.44898522200006,76.10439687700006],[141.39722741000006,76.12531159100003],[141.39136803500017,76.12921784100003],[141.38868248800011,76.13385651200014],[141.38843834700006,76.138861395],[141.38965905000006,76.14272695500001],[141.39136803500017,76.14350006700012],[141.3727319670002,76.15363190300017],[141.32553144600004,76.17218659100008],[141.3100692070001,76.18447500200013],[141.36695397200006,76.18121979400009],[141.5939233730002,76.12970612200012],[141.70215905000023,76.12099844000012],[141.91309655000023,76.06073639500009],[142.14568118600013,76.01190827000008],[142.42725670700017,75.91388580900015],[142.46973717500012,75.88401927300008],[142.48804772200018,75.87596263200014],[142.54688561300006,75.86298248900015],[142.92872155000012,75.83222077000006],[143.0588485040001,75.80683014500012],[143.27751712300008,75.81598541900003],[143.3855900400001,75.80707428600009],[143.3588973320002,75.83441803600006],[143.38396243600008,75.84625885600012],[143.58480879000015,75.86981842700006],[143.685801629,75.862697658],[143.782888217,75.84186432500003],[143.78809655000012,75.838120835],[143.79371178500006,75.83274974200003],[143.80225670700023,75.82904694199999],[143.81609134200002,75.83026764500003],[143.84799238400015,75.84056224200013],[143.8587345710001,75.84186432500003],[143.94711347700004,75.83478424700017],[144.19141686300006,75.76699453300014],[144.42359459700006,75.73672109600007],[144.609629754,75.6984723980001],[144.70484459700018,75.6984723980001],[144.7241317070001,75.69501373900012],[144.73731530000023,75.68642812700001],[144.762950066,75.66372304900015],[144.80982506600014,75.64423248900005],[145.17416425900015,75.60822174700009],[145.27637780000012,75.58344147300011],[145.36622155000012,75.54022858300014],[145.38453209700018,75.52631256700005],[145.390391472,75.51683177300005],[145.38086998800011,75.51227448100009],[145.26547285200004,75.52033112200006],[145.07195071700016,75.5006371110001],[144.96794681100008,75.47239817900014],[144.78248131600012,75.44692617400013],[144.72934003999998,75.43158600500009],[144.71168053500017,75.42039622600008],[144.69792728000007,75.404771226],[144.69597415500002,75.39923737200014],[144.69947350399997,75.3939883480001],[144.70215905000006,75.37909577000012],[144.69654381600017,75.36774323100015],[144.67237389400006,75.34910716400007],[144.66724694100017,75.34153880400011],[144.6777449880002,75.327826239],[144.69971764400023,75.32147858300006],[144.89380944100006,75.29230377800012],[144.9410913420002,75.27334219],[144.88917076900012,75.25804271000013],[144.76840254000015,75.26117584800004],[144.72136478000007,75.24603913000011],[144.72706139400012,75.22597890800016],[144.72087649800008,75.20050690300015],[144.70655358200005,75.17633698100015],[144.68816165500002,75.15997955900004],[144.66309655000012,75.1515160180001],[144.57699629000015,75.13776276200018],[144.496348504,75.11196523600013],[144.417735222,75.06903717700008],[144.37631269599999,75.05304596600008],[144.33122806100002,75.04677969000012],[144.15284264400012,75.04645416900011],[143.99854576900012,75.02496979400017],[143.970469597,75.02789948100009],[143.94581139400012,75.03461334800015],[143.84489993600008,75.05011627800015],[143.77759850400005,75.07599518400015],[143.75074303500017,75.08177317900014],[143.51587975400003,75.08730703300016],[143.414805535,75.06708405200014],[143.36060631600006,75.07111237200009],[143.25521894600016,75.09516022300012],[143.08253014400012,75.1108259140001],[143.04981530000003,75.12872955900015],[143.035899285,75.12592194200012],[142.98853600400017,75.13613515800016],[142.945160352,75.133734442],[142.8981225920002,75.141546942],[142.88445071700008,75.14679596600008],[142.87224368600008,75.15664297100001],[142.87134850400017,75.16185130400001],[142.87240644600004,75.1686872420001],[142.87273196700005,75.17454661700008],[142.85938561300023,75.18402741100006],[142.843923373,75.2158877620001],[142.8375757170002,75.22553131700006],[142.80892988400004,75.23281484600007],[142.74000084700018,75.23016998899999],[142.70777428500006,75.23859284100014],[142.70980879000012,75.2547875020001],[142.67554772200018,75.267279364],[142.66627037900005,75.28327057500009],[142.65951582099999,75.30878327],[142.64210045700023,75.31997304900001],[142.59050540500007,75.327866929],[142.53500410200004,75.34552643400009],[142.5070093110002,75.359808661],[142.494313998,75.37567780200011],[142.50033613400015,75.3861758480001],[142.52914472700016,75.41144440300002],[142.535899285,75.42723216399999],[142.53003991000017,75.43988678600006],[142.51880944100017,75.44586823100016],[142.51075280000023,75.45189036699998],[142.51539147200006,75.46507396000011],[142.53451582100004,75.47654857000008],[142.61988366000014,75.49046458500005],[142.6245223320001,75.49437083500005],[142.62745201900012,75.50682200700008],[142.63209069100006,75.51288483300006],[142.63738040500002,75.51605866100012],[142.72437584700018,75.55068594000004],[142.84693444100006,75.56134674700014],[143.0135197270001,75.60244375200013],[143.034922722,75.61762116100012],[143.04297936300017,75.646673895],[143.00114993600002,75.70795319200012],[142.904063347,75.72455475500009],[142.71485436300011,75.71149323100009],[142.70297285200016,75.71393463700002],[142.68482506600006,75.72589752800015],[142.67318769600004,75.73086172100004],[142.66016686300023,75.73297760600003],[142.618418816,75.73261139500003],[142.51490319100017,75.71893952000009],[142.33790123800023,75.72565338700012],[142.29004967500012,75.71149323100009],[142.32398522200006,75.71190013200011],[142.366465691,75.70648834800006],[142.40691165500004,75.69525788000006],[142.43409264400003,75.67796458500005],[142.41065514400012,75.66559479400001],[142.38135826900006,75.661810614],[142.06039472700016,75.66819896000011],[142.00831139400012,75.66372304900015],[142.029144727,75.65591054900007],[142.13257897200006,75.64769114800008],[142.18197675900004,75.63776276200014],[142.20687910200016,75.63580963700012],[142.18336022200012,75.62824127800015],[142.00831139400012,75.62274811400015],[142.03581790500007,75.61359284100014],[142.06902103000007,75.60700104400009],[142.13184655000012,75.60162995000003],[142.1396590500001,75.59516022300012],[142.12859134200005,75.58063385600018],[142.087250196,75.54462311400012],[142.08057701900006,75.53473541900011],[142.0831811860002,75.52594635600003],[142.09766686300023,75.51630280200008],[142.18702233200023,75.47134023600007],[142.16277103000007,75.42316315300003],[142.15601647199998,75.39935944200012],[142.16285241000006,75.37909577000012],[142.19988040500007,75.34882233300011],[142.41016686300011,75.26675039300012],[142.42660566500004,75.252183335],[142.42888431100008,75.23834870000009],[142.42546634200008,75.2250023460001],[142.42579186300011,75.21295807500016],[142.43946373800023,75.20311107000005],[142.53744550900015,75.17890045800006],[142.58033287900005,75.15973541900009],[142.611582879,75.122503973],[142.60417728000013,75.11562734600001],[142.62818444100006,75.09699127800012],[142.66871178500017,75.08795807500009],[142.83301842500023,75.07062409100011],[143.012950066,75.065130927],[143.245371941,75.02708567899998],[143.44800866000003,75.00580475500011],[143.55982506600006,75.01561107000005],[143.61451256600012,75.01113515800006],[143.66675866,74.98529694200006],[143.707774285,74.94745514500012],[143.69581139400006,74.93744538000014],[143.66822350400017,74.92999909100013],[143.4645288420002,74.9000511740001],[143.0034285820001,74.88214752800002],[142.92416425900015,74.89411041900014],[142.89714603000013,74.89093659100007],[142.8445744150001,74.87738678600012],[142.82129967500018,74.87641022300006],[142.7809350920002,74.891750393],[142.75863691500015,74.89594147300012],[142.71509850400005,74.89516836100002],[142.67969811300023,74.88987864800005],[142.6504012380001,74.8756778020001],[142.62525475400003,74.84813060100011],[142.69434655000023,74.85333893400008],[142.7140405610002,74.84813060100011],[142.67798912900005,74.83397044499999],[142.51400800899998,74.81736888200011],[142.35564212300002,74.82453034100017],[141.9741317070001,74.93378327000009],[141.9741317070001,74.94537995000007],[142.00928795700005,74.955308335],[142.08057701900006,74.96482982000002],[142.11703535200016,74.96360911699998],[142.19166100400017,74.95282623900009],[142.29542076900017,74.9227969420001],[142.33187910200004,74.92121002800009],[142.36451256600014,74.93065013200011],[142.3471785820001,74.94306061400012],[142.32618248800023,74.95172760600003],[142.24105879000015,74.97540924700014],[142.23731530000012,74.99103424700002],[142.19874108200023,75.00421784100008],[141.84376061300011,74.998968817],[141.67310631600017,74.96482982000002],[141.37110436300006,74.91950104400009],[141.11402428500017,74.91665273600013],[140.63754316500004,74.87543366100009],[140.54916425899998,74.87763092700007],[140.35132897200018,74.84007396000008],[140.06869550899998,74.82794830900018],[140.00782311300006,74.8623721370001],[139.996429884,74.87335846600017],[139.98406009200008,74.89374420800014],[139.97364342500006,74.90338776200011],[139.94906660200016,74.91095612200014],[139.89356530000012,74.91217682500017],[139.8699650400001,74.92381419499999],[139.86329186300011,74.93427155200008],[139.85613040500007,74.95693594000012],[139.84961998800006,74.96482982000002],[139.82349694100006,74.970892645],[139.71941165500013,74.96482982000002],[139.69646243600002,74.96845123900006],[139.6520288420002,74.98078034100011],[139.62427819100006,74.97846100500014],[139.49512780000012,74.94692617400013],[139.4585067070001,74.93065013200011],[139.48316491000017,74.92283763200011],[139.48178144600004,74.90648021],[139.474375847,74.88666413],[139.48023522200018,74.86859772300005],[139.51661217500023,74.855943101],[139.56430097700004,74.85814036699999],[139.61109459700018,74.87075429900007],[139.64478600400017,74.88910553600012],[139.63168379000004,74.87689850500014],[139.61939537900017,74.87091705900004],[139.59009850400005,74.8623721370001],[139.56202233200023,74.84552643400008],[139.5441186860002,74.82444896],[139.52857506600017,74.80166250200016],[139.50318444100006,74.775539455],[139.50049889400006,74.77179596600017],[139.49626712300008,74.76756419500005],[139.34343509200014,74.68740469],[139.23585045700023,74.66242096600008],[139.12720787900017,74.65228913000011],[139.01596113400004,74.65753815300012],[138.81560306100008,74.71405670800011],[138.49065188900008,74.74512360250002],[138.16570071700008,74.77619049700014],[138.11378014400012,74.79035065300017],[138.06324303500017,74.79612864800013],[137.89527428500017,74.84617747600005],[137.87029056100008,74.86050039300012],[137.84734134200008,74.88206614800005],[137.82837975400005,74.90680573100003],[137.81478925899998,74.93065013200011],[137.8116968110002,74.94424062700014],[137.81153405000023,74.95571523600002],[137.80762780000023,74.96580638200008],[137.79379316500015,74.97540924700014],[137.65137780000012,75.02277252800008],[137.4327905610002,75.0504417990001],[137.14909915500007,75.134222723],[137.13412519600004,75.141546942],[137.10173587300017,75.17023346600014],[137.08545983200005,75.180853583],[137.03402754000007,75.20502350500011],[136.94166100400005,75.26349518400018],[136.90992272200018,75.27334219],[136.9220483730002,75.29751211100002],[136.92579186300023,75.3097191430001],[136.92432701900015,75.32050202000009],[136.91244550900004,75.33038971600008],[136.87476647200006,75.34951406500006],[136.86215254000015,75.36204661700008],[136.9816186860002,75.3886579450001],[137.03931725400005,75.38800690300015],[137.11768639400012,75.34320709800012],[137.15170332100016,75.33608633000006],[137.25375410200004,75.33637116100012],[137.37623131600017,75.35040924700013],[137.401540561,75.35724518400018],[137.42237389400012,75.36981842700008],[137.43067467500003,75.38934967700006],[137.42025800899998,75.40713125200013],[137.39730879,75.4171817080001],[137.34880618600002,75.42413971600011],[137.27613366000006,75.425482489],[137.20484459700006,75.41669342700011],[137.16065514400006,75.40574778900007],[137.14332116000017,75.41022370000003],[137.12907962300008,75.43036530200006],[137.14454186300011,75.43650950700014],[137.14551842500006,75.45062897300005],[137.14869225400005,75.46482982],[137.17074629000004,75.47134023600007],[137.30103600400017,75.47134023600007],[137.28711998800011,75.48460521000011],[137.26099694100006,75.50478750200013],[137.24577884200008,75.51288483300006],[137.20492597700002,75.52802155200006],[137.183848504,75.539496161],[137.18067467500023,75.55072663000003],[137.18628991000003,75.55707428600014],[137.18848717500023,75.56093984600012],[137.18930097700004,75.56403229400003],[137.191172722,75.56818268400013],[137.1916610040001,75.57387929900015],[137.18921959700006,75.57660553600012],[137.19109134200002,75.58026764500006],[137.20484459700006,75.58860911700005],[137.22803795700005,75.5930036480001],[137.27955162900017,75.59137604400009],[137.2936304050002,75.60162995000003],[137.26563561300006,75.60797760600015],[137.22388756600003,75.63666413000011],[137.20142662900005,75.643255927],[137.18531334700018,75.64484284100003],[137.15512129000015,75.65167877800006],[137.14014733200008,75.652818101],[137.15202884200008,75.66010163],[137.15951582100004,75.66876862200009],[137.16163170700023,75.67902252800012],[137.156993035,75.69106679900013],[137.13949629000015,75.69928620000003],[137.08033287900017,75.714585679],[137.06763756600012,75.725775458],[137.1505639980002,75.76300690300017],[137.15894616000017,75.76874420800006],[137.17432701900012,75.782416083],[137.18376712300014,75.78725820500007],[137.198496941,75.78961823100012],[137.33301842500006,75.79116445500014],[137.4165145190002,75.7741559920001],[137.58838951900006,75.77358633000013],[137.690684441,75.74567291900009],[137.7179468110002,75.7438418640001],[137.73292076900023,75.74510325700011],[137.74268639400006,75.7490908870001],[137.7443139980002,75.75433991100009],[137.74048912900017,75.7589785830001],[137.73511803500006,75.76390208500008],[137.7324324880002,75.76984284100008],[137.70972741,75.78839752800009],[137.60141035200016,75.80931224200008],[137.56446373800011,75.82510000200001],[137.53402754000015,75.84568919500005],[137.46192467500023,75.86855703300016],[137.43197675899998,75.88727448100012],[137.42318769600004,75.91010163000013],[137.4165145190002,75.93911367400013],[137.41431725400017,75.94086334800012],[137.43295332100016,75.95319245000015],[137.71192467500012,76.013128973],[137.9240828790001,76.0170352230001],[138.02751712300008,76.03192780200014],[138.11597741000017,76.07526276200011],[138.11060631600006,76.0812848980001],[138.10279381600006,76.08490631700009],[138.09278405000023,76.0865746110001],[138.081309441,76.08649323100012],[138.07813561300023,76.0848656270001],[138.01189212300008,76.069322007],[137.97266686300023,76.054144598],[137.97982832099999,76.06281159100007],[137.99488365999997,76.06777578300012],[138.04566491000017,76.08515045800011],[138.06674238399995,76.08763255400005],[138.08920332100007,76.0909691430001],[138.1380314460001,76.11884186400012],[138.37663821700008,76.15717194200006],[138.35027103000007,76.15021393400013],[138.33838951900012,76.14520905200011],[138.32829837300008,76.13605377800015],[138.34522545700023,76.12400950700014],[138.3635360040001,76.11570872600005],[138.378184441,76.10659414300007],[138.39161217500012,76.07387929900011],[138.40992272200006,76.06484609600011],[138.43213951900012,76.06338125200007],[138.4516707690001,76.06777578300012],[138.44613691500007,76.07835521],[138.452972852,76.08974844000006],[138.4663192070001,76.1003278670001],[138.47966556100013,76.10871002800017],[138.47429446700008,76.11172109600005],[138.46436608200017,76.11985911700002],[138.45923912900003,76.12299225500009],[138.49244225400017,76.15973541900017],[138.51026451900023,76.17523834800008],[138.53272545700023,76.18610260600015],[138.79078209750014,76.21259186400012],[139.04883873800011,76.23908112200012],[139.00814863400004,76.22809479400014],[138.92823326900012,76.22166575700014],[138.89730879000015,76.2187360700001],[138.9194442070002,76.21662018400009],[138.96078535200016,76.20693594000014],[138.9663192070001,76.20164622600008],[138.96355228000002,76.19464752800008],[138.95915774800008,76.18646881700009],[138.95948326900006,76.17767975500011],[138.97535241,76.15778229400003],[138.99512780000023,76.14451732],[139.10962975400005,76.09686920800011]]],[[[94.96371504000015,76.2633324240001],[94.88868248800011,76.25141022300015],[94.85523522200006,76.23908112200012],[94.86622155000012,76.22980377800015],[94.89087975400011,76.21991608300014],[94.90357506600016,76.21238841399999],[94.848887566,76.18610260600015],[94.78101647200006,76.18121979400009],[94.61500084700006,76.19476959800005],[94.586680535,76.2018903670001],[94.55762780000012,76.20441315300003],[94.52564537900011,76.19440338700004],[94.50025475400011,76.18964264500015],[94.46729576900005,76.19367096600011],[94.43474368600006,76.20262278900005],[94.41016686300006,76.21238841399999],[94.47185306100008,76.23533763200008],[94.49219811300004,76.23908112200012],[94.7786564460001,76.2109235700001],[94.79997806100002,76.21857330900013],[94.78687584700018,76.23102448100015],[94.77051842500006,76.24266185100008],[94.75359134200006,76.25092194200006],[94.73853600400017,76.253363348],[94.75220787900011,76.25958893400015],[94.74537194100017,76.25958893400015],[94.82243899800002,76.26512278899999],[94.89673912900017,76.28001536700012],[94.90308678500017,76.283636786],[94.90821373800011,76.28888580900018],[94.91407311300006,76.29279205900016],[94.92212975400017,76.29242584800006],[94.94402103000019,76.28001536700012],[94.97038821700019,76.27509186400006],[94.99919681100002,76.27326080900008],[94.96371504000015,76.2633324240001]]],[[[96.28296959700006,76.30927155200006],[96.6155705090001,76.26642487200017],[96.64405358200005,76.26703522300012],[96.64633222700016,76.24787018400015],[96.6297306650001,76.23436107000002],[96.606700066,76.223578192],[96.58936608200005,76.21238841399999],[96.57837975400017,76.19464752800008],[96.58122806100013,76.1846377620001],[96.58969160200016,76.17462799700003],[96.5955509770001,76.15717194200006],[96.56666100400011,76.15839264500009],[96.54948978000007,76.16315338700018],[96.5364689460001,76.17332591400013],[96.5198673840001,76.1906598980001],[96.52735436300004,76.20319245000012],[96.53711998800011,76.21381256700015],[96.56153405000006,76.23163483300011],[96.46705162900011,76.26691315300015],[96.44678795700005,76.27163320500007],[96.42554772200006,76.27362702],[96.40381920700005,76.27326080900008],[96.3631291020001,76.26434967700006],[96.34685306100008,76.25470612200009],[96.3553166020001,76.24249909100011],[96.40772545700005,76.22125885600003],[96.42432701900012,76.21238841399999],[96.38111412900011,76.20600006700006],[96.27849368600008,76.22223541900011],[96.24610436300006,76.204982815],[96.2775171230002,76.20408763200003],[96.37037194099999,76.189886786],[96.39649498800006,76.17767975500011],[96.40056399800002,76.15517812700004],[96.37769616,76.14557526200004],[96.34546959700018,76.14166901200007],[96.32129967500006,76.13605377800015],[96.34441165500002,76.1227888040001],[96.35645592500006,76.11806875200001],[96.36963951900006,76.11562734600007],[96.34473717500006,76.10504791900003],[96.30176842500006,76.11139557500015],[96.18140709700006,76.15468984600012],[95.89136803500017,76.15363190300017],[95.70411217500012,76.17609284100008],[95.66334069100006,76.1906598980001],[95.67017662900015,76.19814687700007],[95.31055748800006,76.20115794499999],[95.26612389400006,76.21857330900013],[95.30836022200018,76.23175690300009],[95.3212996750001,76.23908112200012],[95.3108830090001,76.2481957050001],[95.30933678500017,76.25641510600009],[95.3118595710001,76.2653262390001],[95.31397545700011,76.2765973980001],[95.32488040500007,76.28607819200012],[95.34994550900014,76.288763739],[95.46949303499999,76.285834052],[95.4925236340001,76.28001536700012],[95.54102623800006,76.253363348],[95.53370201900006,76.2459170590001],[95.5701603520001,76.23818594],[95.61361738400015,76.24534739800005],[95.72706139400012,76.29071686400006],[95.76954186300006,76.30060455900015],[95.81226647200016,76.30292389500012],[95.8488875660001,76.29433828300002],[95.87232506600017,76.27952708500014],[96.02198326900006,76.28685130400005],[96.06812584700005,76.28001536700012],[96.073415561,76.26227448100003],[96.06836998800011,76.24677155200011],[96.07227623800011,76.23578522300006],[96.10417728000002,76.23163483300011],[96.1272078790001,76.2352562520001],[96.14429772200005,76.24502187700013],[96.1741642590001,76.2765973980001],[96.21957441500008,76.30121491100012],[96.28296959700006,76.30927155200006]]],[[[96.72461998800004,76.34638092700008],[96.76693769600016,76.33527252800006],[96.75521894600016,76.32843659100003],[96.73145592500006,76.32558828300007],[96.71973717500005,76.32225169500005],[96.71062259200008,76.3143578150001],[96.7049259770001,76.30524323100009],[96.69792728000013,76.29751211100007],[96.68474368600006,76.29433828300002],[96.66187584700006,76.29808177300005],[96.6297306650001,76.31639232000009],[96.610606316,76.32322825700014],[96.43376712300002,76.32111237200003],[96.38331139400012,76.33527252800006],[96.42725670700005,76.34536367400001],[96.57488040500019,76.34149811399999],[96.72461998800004,76.34638092700008]]],[[[96.88526451900006,76.35537344000008],[96.9451603520001,76.33991120000017],[97.005137566,76.343207098],[97.03142337300002,76.34186432500012],[97.03443444100006,76.32843659100003],[97.04314212300012,76.3202985700001],[97.05298912900011,76.31484609600007],[97.07545006600004,76.30801015800016],[97.03052819100006,76.29026927300005],[96.98560631600006,76.28217194200012],[96.89014733200005,76.28001536700012],[96.85954837300018,76.27216217700006],[96.8349715500001,76.25340403899999],[96.81226647200005,76.23114655200014],[96.78736412900011,76.21238841399999],[96.81869550900015,76.21417877800015],[96.84555097700016,76.2257347680001],[96.89665774800014,76.25649648600007],[96.92994225400011,76.26154205900009],[97.04127037900017,76.23908112200012],[97.01026451900012,76.22992584800012],[96.9417423840001,76.22630442900005],[96.90894616000017,76.22040436400012],[96.76091556100002,76.17641836100002],[96.7430119150001,76.17544179900013],[96.72934004000014,76.18109772300012],[96.72543379000015,76.18720123900003],[96.72095787900017,76.20148346600011],[96.71599368600002,76.20868561400015],[96.7169702480002,76.22272370000009],[96.73113040500002,76.23847077000015],[96.74024498800011,76.2520205750001],[96.72584069100006,76.25958893400015],[96.7430119150001,76.27057526200012],[96.78101647200018,76.28070709800005],[96.81576582100016,76.30365631700006],[96.8768009770001,76.32225169500005],[96.8655705090001,76.33006419500005],[96.8283797540001,76.34149811399999],[96.85401451900005,76.35565827000012],[96.88526451900006,76.35537344000008]]],[[[113.26172936300023,76.39671458500011],[113.30567467500005,76.386460679],[113.40870201900023,76.38711172100015],[113.44662519600016,76.36945221600003],[113.41293379000015,76.36033763200014],[113.29249108200023,76.36322663000009],[113.13754316499998,76.36945221600003],[113.11768639400006,76.37689850500011],[113.15503991000004,76.405422268],[113.20826256600004,76.43305084800004],[113.26433353000007,76.44432200700011],[113.30941816500004,76.42348867400013],[113.27222741000006,76.40525950700005],[113.26172936300023,76.39671458500011]]],[[[94.31641686300006,76.58966705900015],[94.3623153000001,76.574896552],[93.86833743600008,76.58856842700011],[93.88640384200008,76.60004303600006],[93.94410241,76.61644114800008],[94.16309655000012,76.59601471600011],[94.31641686300006,76.58966705900015]]],[[[112.51856530000023,76.61579010600003],[112.50847415500006,76.61017487200003],[112.48650149800007,76.60219961100007],[112.50171959700006,76.59544505400014],[112.54851321700019,76.581732489],[112.54135175900015,76.57892487200014],[112.52759850400005,76.57111237200014],[112.52068118600008,76.56806061400005],[112.532481316,76.56378815300015],[112.55713951900012,76.55951569200015],[112.56967207100004,76.55499909100008],[112.55469811300006,76.54901764500009],[112.52344811300011,76.54531484600012],[112.50757897200018,76.540716864],[112.547618035,76.52749258000014],[112.65455162900017,76.53266022300006],[112.70093834700006,76.52871328300007],[112.71412194100017,76.52045319200009],[112.705332879,76.5133731140001],[112.68718509200019,76.50849030200006],[112.67188561300023,76.5065778670001],[112.59848066500015,76.50633372600005],[112.57593834700005,76.499741929],[112.58692467500012,76.49384186400013],[112.6017358730002,76.48305898600013],[112.61410566500003,76.47040436400006],[112.61801191500004,76.45880768400015],[112.60084069100012,76.44464752800003],[112.56788170700023,76.4435082050001],[112.46290123800011,76.45502350500011],[112.42310631600006,76.46572500200016],[112.38803144600016,76.48297760600013],[112.3567814460001,76.5065778670001],[112.31006920700011,76.53400299700014],[112.25700931100008,76.54580312700004],[112.119395379,76.54922109600012],[112.09888756600017,76.55438873900012],[112.08130944100006,76.56395091400013],[112.06568444100006,76.57831452],[112.04566491000017,76.58795807500015],[111.95883222700014,76.60219961100007],[111.973399285,76.60809967700003],[111.98902428500017,76.61009349200005],[112.0210067070001,76.60960521000005],[112.01417076900017,76.61644114800008],[111.99561608200005,76.61566803600006],[111.98462975399998,76.61766185099998],[111.97486412900017,76.62250397300005],[111.96631920700005,76.63007233300011],[112.14584394599999,76.63694896000011],[112.27222741000006,76.61554596600008],[112.30892988400015,76.62270742400013],[112.31544030000023,76.62995026200007],[112.32129967500005,76.64940013200004],[112.32935631600006,76.657416083],[112.34400475400005,76.65949127800012],[112.36719811300006,76.65814850500011],[112.38843834700005,76.65387604400011],[112.41480553500006,76.63641998900015],[112.49781334700006,76.62986888200007],[112.52808678500006,76.62270742400013],[112.51856530000023,76.61579010600003]]],[[[96.46794681100002,76.70758698100018],[96.4720158210001,76.69159577000009],[96.39421634200019,76.67987702],[96.3613387380001,76.66547272300012],[96.36963951900006,76.64321523600007],[96.34595787900015,76.63080475500006],[96.31348717500006,76.62254466400007],[96.25294030000006,76.61644114800008],[96.15430748800011,76.623195705],[96.09205162900011,76.614203192],[95.99634850400017,76.62270742400013],[95.98267662900011,76.62067291900009],[95.95720462300001,76.61163971600008],[95.94418379000015,76.60960521000005],[95.889903191,76.61644114800008],[95.89437910200014,76.62616608300011],[95.89665774800001,76.63564687700013],[95.89527428500017,76.643988348],[95.889903191,76.65062083500004],[95.92562910200016,76.66592031500012],[95.96436608200005,76.676459052],[96.00416100400015,76.67963288000006],[96.08008873800011,76.66815827],[96.19402103000002,76.69476959800015],[96.21778405000012,76.7088890650001],[96.23243248800006,76.71206289300014],[96.29623457100016,76.70563385600003],[96.33375084700016,76.70978424700017],[96.38331139400012,76.70526764500012],[96.46583092500012,76.71206289300014],[96.46794681100002,76.70758698100018]]],[[[95.59546959700006,76.6764183610001],[95.61915123800006,76.670396226],[95.65023847700016,76.67792389500015],[95.67058353000007,76.67987702],[95.71127363400015,76.69476959800015],[95.73365319100016,76.698431708],[95.83472741000016,76.69159577000009],[95.81967207100016,76.67890045800011],[95.79265384200019,76.66933828300013],[95.68441816500015,76.65106842700004],[95.52865644600008,76.64874909100008],[95.47974694100006,76.65424225500011],[95.43734785200016,76.67108795800011],[95.44255618600002,76.68138255400005],[95.43775475400011,76.68952057500015],[95.41700280000006,76.70526764500012],[95.48633873800011,76.71653880400011],[95.52084394600008,76.71678294500005],[95.55404707100008,76.70526764500012],[95.59546959700006,76.6764183610001]]],[[[95.12916100400017,76.70673248900009],[95.13795006600006,76.70604075700014],[95.15064537900011,76.7066917990001],[95.16309655000012,76.70526764500012],[95.19662519600016,76.6867536480001],[95.26612389400006,76.67108795800011],[95.3118595710001,76.66828034100017],[95.32748457100016,76.66425202],[95.28516686300006,76.64252350500014],[95.22779381600004,76.63996002800003],[95.11841881600006,76.65062083500004],[94.84669030000012,76.63784414300012],[94.82146243600008,76.64272695500009],[94.81763756600004,76.65399811400009],[94.83904056100019,76.66791413000006],[94.86784915500002,76.67397695500016],[95.01587975400017,76.6840274110001],[95.04672285200016,76.67959219000006],[95.06592858200011,76.68138255400005],[95.08659915500013,76.6918399110001],[95.12208092500012,76.71889883000016],[95.1289168630001,76.71206289300014],[95.12916100400017,76.70673248900009]]],[[[97.56519615999999,76.58673737200014],[97.52540123800011,76.58222077],[97.48438561300011,76.585638739],[97.4170028000001,76.59894440300003],[97.34310957100008,76.59931061400015],[97.31495201900012,76.60960521000005],[97.37029056100017,76.62421295800007],[97.39136803500006,76.63495514500009],[97.38697350400017,76.65399811400009],[97.37940514400012,76.66421133000001],[97.37720787900011,76.6690127620001],[97.37191816500015,76.67230866100014],[97.35596764400012,76.67792389500015],[97.30534915500002,76.68439362200014],[97.28825931100019,76.69159577000009],[97.32569420700005,76.69586823100009],[97.3841251960001,76.71458567900005],[97.41814212300002,76.71889883000016],[97.44629967500012,76.71474844000012],[97.46753991,76.696722723],[97.47852623800006,76.67259349199999],[97.47632897200018,76.65033600500011],[97.48487389400012,76.63027578300007],[97.52198326900012,76.61737702000006],[97.59620201900012,76.60219961100007],[97.56519615999999,76.58673737200014]]],[[[149.25580062499995,76.63376798500008],[149.20009036800013,76.62680582400013],[149.04525350300017,76.62794706500013],[148.78531959700004,76.629368937],[148.5942483370002,76.62249342899997],[148.4522034550001,76.62333563700004],[148.4317888520002,76.62932582800009],[148.43718162100015,76.64154283800016],[148.46875551200006,76.65693777300014],[148.5598340710001,76.67185546500004],[148.61890910000014,76.68124204800014],[148.72357058800006,76.69766863100001],[148.78830556100016,76.7169616950001],[148.86673546000011,76.73399787000014],[148.98265574100006,76.7396877],[149.40035065200018,76.77020751700013],[149.453496564,76.76877913300008],[149.44397621200002,76.75049546700002],[149.3747131160001,76.73820157300014],[149.31556724700005,76.72439387300007],[149.26321830200018,76.71058331400012],[149.2473997440001,76.69153757800015],[149.238217532,76.6679575460001],[149.26200151700007,76.64519143200009],[149.25580062499995,76.63376798500008]]],[[[97.64600670700011,76.7538109400001],[97.64795983200005,76.74860260600009],[97.63860110800012,76.74131907800006],[97.62305748800011,76.73749420800004],[97.5811466810002,76.75149160400012],[97.5655216810002,76.75230540600013],[97.52084394600016,76.7442894550001],[97.45980879000008,76.71845123900006],[97.45403079500012,76.72129954600011],[97.4493921230002,76.72752513200008],[97.44833418100004,76.73314036700008],[97.45069420700011,76.73680247600011],[97.45167076900006,76.739976304],[97.44752037900011,76.74233633000013],[97.16692142000007,76.74571360900016],[97.1607365240001,76.75360748900012],[97.51010175900015,76.7667503930001],[97.51775149800007,76.7709821640001],[97.63900800900008,76.77309804900003],[97.6426701180001,76.76760488500018],[97.64307701900006,76.76312897300012],[97.64616946700008,76.75901927299999],[97.64568118600008,76.75621165600005],[97.64600670700011,76.7538109400001]]],[[[68.1585392590001,76.96759674700012],[68.29411868600002,76.95913320500007],[68.46290123800006,76.96670156500002],[68.51319420700023,76.95229726800015],[68.48698978000019,76.940415757],[68.47803795700004,76.93170807500012],[68.48829186300011,76.92621491100009],[68.56934655000012,76.92548248900006],[68.5932723320001,76.9209658870001],[68.62566165500019,76.89931875200001],[68.67335045700005,76.88019440300003],[68.69044030000012,76.87653229400007],[68.7513126960001,76.87962474200008],[68.78272545700021,76.87791575700005],[68.80860436300017,76.86908600500003],[68.78296959700018,76.856634833],[68.76238040500007,76.84235260600009],[68.7591251960001,76.82737864800005],[68.7859806650001,76.81281159100003],[68.89795983200011,76.7987328150001],[68.93091881600006,76.78717682500015],[68.89958743600019,76.76093170800014],[68.89356530000012,76.74835846600014],[68.90300540500013,76.73261139500009],[68.93067467500012,76.71938711100012],[69.00261478000007,76.71662018400009],[69.03394616000011,76.71206289300014],[68.8938908210001,76.67914459800006],[68.85515384200019,76.657416083],[68.85035241000011,76.65082428600012],[68.8439233730002,76.63373444200006],[68.83904056100013,76.62641022300006],[68.78760826900012,76.58856842700011],[68.90430748800011,76.578802802],[68.93832441500014,76.56806061400005],[68.902110222,76.55247630400007],[68.74732506600006,76.510484117],[68.62305748800011,76.45335521000011],[68.5496525400001,76.42938873900006],[68.51319420700023,76.42348867400013],[68.43726647200012,76.42348867400013],[68.41700280000006,76.41722239799999],[68.40626061300006,76.407212632],[68.40919030000012,76.40094635600006],[68.42090905000006,76.39765045800002],[68.4373478520001,76.39671458500011],[68.39136803500011,76.36713288000007],[68.34351647200018,76.34992096600013],[68.20704186300006,76.33047109600015],[68.181325717,76.32282135600003],[68.17774498800017,76.31460195500013],[68.21208743600019,76.30801015800016],[68.3016056650001,76.30341217700011],[68.3274845710001,76.29433828300002],[68.28793379000014,76.28131745000003],[67.91236412900017,76.25849030200011],[67.60206139400006,76.19814687700007],[67.54053795700023,76.19977448100009],[67.3660587900001,76.1673037780001],[67.14649498800011,76.10464101800002],[66.98031660200016,76.09536367400005],[66.8060001960001,76.06281159100007],[66.68628991000011,76.060248114],[66.60515384200019,76.0360375020001],[66.52263431100019,76.02374909100006],[66.43018639400006,75.99884674700009],[66.2918400400001,75.99648672100015],[66.22934004000015,75.973822333],[66.1785587900001,75.96198151200002],[65.69760175850016,75.90808746950016],[65.2166447270001,75.85419342700008],[65.124278191,75.81867096600008],[65.07829837300002,75.80744049700009],[65.02955162900011,75.802191473],[64.88917076900012,75.80878327000009],[64.59986412850012,75.7656314145001],[64.31055748800011,75.72247955900013],[64.10377037900017,75.71893952000009],[64.0799259770001,75.714585679],[64.03199303500017,75.69537995000003],[63.85645592500012,75.669134833],[63.76172936300022,75.64158763200008],[63.709646030000194,75.63580963700012],[63.71794681100007,75.64931875200008],[63.72486412900017,75.65827057500012],[63.72592207100009,75.66657135600009],[63.71648196700019,75.67796458500005],[63.699554884000094,75.68134186400009],[63.67579186300011,75.682562567],[63.66211998800005,75.68817780199998],[63.67554772200017,75.70465729400007],[63.64844811300023,75.71954987200003],[63.61646569100006,75.71938711100007],[63.552012566000165,75.71149323100009],[63.59310957100015,75.70709870000012],[63.613291863000065,75.70233795800011],[63.62037194100005,75.69106679900013],[63.61036217500006,75.68109772300012],[63.52133222700016,75.63271719000012],[63.4822697270001,75.62494538000011],[63.441416863000164,75.62148672100012],[63.30437259200008,75.58860911700005],[63.22103925900014,75.58860911700005],[63.170909050000056,75.58038971600013],[63.052256707000225,75.58942291900013],[63.02995853000019,75.58771393400006],[62.734711134000094,75.51886627800017],[62.6213485040001,75.51557038000014],[62.272797071000106,75.44009023600002],[62.22461998800023,75.43598053600006],[62.15430748800022,75.45380280200014],[62.0970158210001,75.44505442900005],[62.071543816000165,75.44594961100016],[62.04818769600009,75.45034414300012],[62.02881920700006,75.44879791900009],[62.01107832100015,75.44114817900008],[61.99317467500011,75.42723216399999],[61.855642123000024,75.38100820500007],[61.84571373800022,75.36204661700008],[61.810069207000105,75.35683828300007],[61.732188347,75.38060130400007],[61.694183790000096,75.37567780200011],[61.71265709700006,75.36078522300006],[61.703379754000174,75.34870026200015],[61.66016686300005,75.327866929],[61.66773522200006,75.32538483300006],[61.68799889400005,75.31427643400004],[61.67400149800008,75.30988190300006],[61.64625084700012,75.30516185100014],[61.63282311300011,75.29999420800011],[61.64161217500006,75.29564036700005],[61.646657748000194,75.29116445500007],[61.65398196700019,75.27952708500007],[61.60466556100002,75.27875397300015],[61.579112175000056,75.27505117400001],[61.55836022200006,75.26650625200006],[61.5481876960001,75.2569847680001],[61.54135175900009,75.24713776200015],[61.53337649800014,75.23798248900009],[61.518809441000116,75.23053620000012],[61.481700066000165,75.22345612200014],[61.44157962300008,75.22479889500012],[61.40512129000009,75.23631419500008],[61.37964928500011,75.25967031500006],[61.384450717000185,75.27045319200006],[61.38746178500011,75.28046295800006],[61.38835696700019,75.29010651200012],[61.38705488400009,75.29999420800011],[61.379567905000016,75.3092308610001],[61.36939537900016,75.31517161700009],[61.36622155000012,75.3220889340001],[61.37964928500011,75.3341738950001],[61.27662194100005,75.327866929],[61.295583530000066,75.30072663000006],[61.29249108200005,75.27973053600012],[61.271657748000194,75.26349518400018],[61.107432488000114,75.19765859600001],[61.0373641290001,75.188625393],[60.968760613000114,75.17023346600014],[60.83253014400012,75.15289948100018],[60.81275475400011,75.14614492400013],[60.79802493600019,75.12083567899998],[60.78305097700016,75.115179755],[60.74968509200019,75.10822174700012],[60.77523847700016,75.09389883000013],[60.79639733200005,75.09125397300012],[60.80372155000006,75.08592357000008],[60.786875847000175,75.06386953300007],[60.76685631599999,75.04450104400014],[60.74740644600009,75.033107815],[60.72478274800008,75.02765534100014],[60.62826582100009,75.02822500200013],[60.59148196700019,75.03416575700005],[60.57016035200016,75.04677969000012],[60.56959069100018,75.0619977890001],[60.5794376960001,75.07786692900014],[60.59522545700022,75.09186432500009],[60.61182701900012,75.10138580900008],[60.594737175000056,75.1142438820001],[60.571055535000106,75.11790599200008],[60.50684655000006,75.1142438820001],[60.493825717000185,75.11025625200013],[60.49024498800023,75.10374583500005],[60.50261478000007,75.09516022300012],[60.44109134200019,75.06728750200008],[60.4446720710001,75.06427643400018],[60.45118248800006,75.05719635600012],[60.454763217000014,75.0541852890001],[60.439463738000065,75.04808177300013],[60.43433678500017,75.04677969000012],[60.46843509200007,75.03245677300005],[60.444834832000225,75.01825592700014],[60.41602623800011,75.01093170800011],[60.26465905000006,74.9916039080001],[60.23503665500018,74.99152252800012],[60.25440514400011,75.00283437700001],[60.262461785000106,75.00580475500011],[60.23340905000006,75.01935455900018],[60.11182701900011,74.99152252800012],[59.92725670700022,75.00580475500011],[59.95622806100013,74.99017975500011],[60.01124108200011,74.97980377800003],[60.31625410250015,74.97410716350002],[60.621267123000194,74.96841054900007],[60.687510613000065,74.92381419499999],[60.661794467000014,74.91339752800009],[60.591319207000225,74.87543366100009],[60.56055748800017,74.8662783870001],[60.32447350400011,74.85496653900013],[60.22348066500015,74.86432526200015],[60.19410241000017,74.85496653900013],[60.207692905000016,74.84398021000005],[60.230153842000135,74.83295319200012],[60.25424238400014,74.82428620000003],[60.272634311000196,74.82078685100014],[60.29737389400006,74.81903717700014],[60.32504316500016,74.81386953300013],[60.351328972000175,74.80524323100002],[60.372325066000116,74.79352448100003],[60.329844597000054,74.76658763200008],[60.27637780000013,74.7496605490001],[59.93376712300019,74.72528717700014],[59.90414472700016,74.72833893400004],[59.84603925900009,74.74201080900015],[59.81755618600018,74.74510325700005],[59.72331790500013,74.74160390800016],[59.6955672540001,74.747015692],[59.63086998800011,74.77586497600014],[59.55974368600007,74.78652578300016],[59.508799675000056,74.799750067],[59.53980553500016,74.786851304],[59.5989689460001,74.75397370000009],[59.62208092500007,74.73484935100011],[59.64193769600015,74.72699616100014],[59.770030144000124,74.7258161480001],[59.77979576900005,74.72150299700012],[59.783539259000094,74.71625397300012],[59.785980665000096,74.71185944200015],[59.789724155000066,74.70791250200016],[59.7967228520001,74.70408763200014],[59.8392033210001,74.69623444200005],[59.85824629000009,74.69061920800006],[59.87256920700005,74.67682526200005],[59.874278191000165,74.66787344000012],[59.872243686000076,74.64777252800017],[59.875987175000056,74.63930898600013],[59.874766472000175,74.62848541900003],[59.853363477000094,74.6225446640001],[59.80909264400006,74.61713288000006],[59.79371178500011,74.61025625200014],[59.770762566000116,74.59438711100005],[59.755218946000156,74.58746979400003],[59.70932050900015,74.58193594],[59.601898634000094,74.59723541900017],[59.516856316000116,74.62156810100014],[59.432627800000056,74.65619538000011],[59.37517337300019,74.66657135600012],[59.317637566000116,74.69049713700018],[59.22771243600018,74.711615302],[59.157481316000165,74.73794179900001],[59.12208092500006,74.74677155200006],[59.09050540500008,74.73826732000013],[59.11402428500011,74.72150299700012],[59.22445722700015,74.68162669500013],[59.26954186300022,74.65818919500008],[59.28980553500011,74.64264557500015],[59.233897332000055,74.64154694200003],[59.20606530000011,74.64618561400013],[59.18336022200017,74.6597354190001],[59.162282748000074,74.66730377800015],[59.13217207100009,74.66551341400007],[59.1028751960001,74.6581078150001],[59.08366946700007,74.64887116100012],[59.193695509000094,74.630804755],[59.22144616000016,74.61542389500006],[59.206309441000165,74.6053734400001],[59.1814884770001,74.57904694200009],[59.1662703790001,74.56696198100018],[59.13331139400006,74.55048248900009],[59.12940514400005,74.54043203300002],[59.14576256600017,74.52602773600013],[59.10718834700012,74.50824616100006],[59.0911564460001,74.49494049700006],[59.09449303500011,74.48126862200012],[59.10962975400011,74.47601959800012],[59.12973066500009,74.47125885600012],[59.14332116000012,74.464016018],[59.13835696700019,74.45087311400015],[59.14576256600017,74.44403717700011],[58.864512566000165,74.45709870000009],[58.744802280000066,74.47821686400003],[58.74138431100008,74.48065827000015],[58.739268425000056,74.49310944200006],[58.73487389400006,74.49803294500013],[58.719981316000116,74.5033226580001],[58.45337975350017,74.542283433],[58.18677819100012,74.58124420800006],[58.18311608200017,74.57648346600017],[58.17709394600015,74.56561920800009],[58.173106316000165,74.56073639500003],[58.27003014400006,74.532660223],[58.41871178500011,74.51434967700006],[58.42628014400006,74.51235586100002],[58.427012566000116,74.50971100500011],[58.4256291020001,74.5007184920001],[58.42628014400006,74.49803294500013],[58.47348066500015,74.47382233300011],[58.63868248800022,74.42357005400005],[58.62370853000019,74.41327545800014],[58.570485873000194,74.38886139500009],[58.63103274800019,74.36127350500009],[58.65658613400009,74.34048086100007],[58.6521916020001,74.31370677299999],[58.671560092000135,74.30963776200012],[58.71111087300008,74.30658600500011],[58.728037957000225,74.30003489800005],[58.70687910200016,74.28644440300009],[58.74097741000017,74.27277252800015],[58.72527103000019,74.26772695500004],[58.6936141290001,74.26121653900013],[58.680349155000194,74.25165436400015],[58.69304446700008,74.25193919499999],[58.70557701900006,74.2500674500001],[58.71745853000019,74.24575429900001],[58.728037957000225,74.23859284100017],[58.53614342500006,74.23859284100017],[58.63111412900016,74.22703685100014],[58.65902754000009,74.21747467700006],[58.50831139400012,74.21747467700006],[58.52735436300011,74.20229726800007],[58.54761803500011,74.19554271000011],[58.56902103000007,74.19147370000017],[58.59083092500011,74.184027411],[58.56039472700016,74.1752790390001],[58.52947024800019,74.17177969000012],[58.49822024800002,74.17251211100016],[58.46680748800011,74.17658112200012],[58.44117272200006,74.18439362200012],[58.3997501960001,74.20294830900012],[58.37794030000006,74.2038434920001],[58.342051629000174,74.19013092700008],[58.33318118600001,74.19293854400003],[58.33008873800022,74.21409739800013],[58.31836998800023,74.22687409100016],[58.292246941000116,74.22162506699999],[58.26433353000007,74.20669179900015],[58.24830162900017,74.19017161700008],[58.30062910200015,74.16063060100011],[58.3772078790001,74.14911530200008],[58.52198326900005,74.14923737200014],[58.483246290000096,74.13190338700014],[58.38502037900011,74.14008209800006],[58.34327233200011,74.12872955900009],[58.341319207000225,74.12274811400009],[58.34009850400011,74.10106028900002],[58.336924675000056,74.09398021000014],[58.32292728000019,74.08795807500003],[58.30795332100016,74.08763255400002],[58.29916425900009,74.09418366100007],[58.30290774800002,74.10830312700001],[58.269704623000194,74.12604401200011],[58.214121941000165,74.14313385600015],[58.162119988000114,74.15037669499999],[58.13900800900014,74.13898346600003],[58.14527428500011,74.12913646],[58.15845787900017,74.12360260600018],[58.170420769000124,74.11635976800015],[58.173106316000165,74.10138580900012],[58.161631707000225,74.08991120000017],[58.09742272200017,74.05988190300003],[58.164073113000164,74.05565013200003],[58.198496941000116,74.0461286480001],[58.21338951900006,74.02944570500007],[58.214366082000225,74.01557038000009],[58.21338951900006,74.00836823100005],[58.2049259770001,74.00568268400015],[58.18336022200012,74.00527578300014],[58.16895592500011,74.00324127800003],[58.12330162900012,73.98672109600015],[58.10840905000006,73.98615143400018],[58.030121290000146,74.00470612200009],[57.931325717000014,74.00828685100008],[57.815765821000156,74.04157135600015],[57.7541610040001,74.04682038000014],[57.739268425000056,74.05093008000009],[57.726573113000114,74.05613841399997],[57.624359571000156,74.12128327000003],[57.559336785000106,74.18024323100015],[57.53174889400012,74.19183991100009],[57.48878014400005,74.19342682500012],[57.41211998800006,74.184027411],[57.481781446000156,74.14533112200013],[57.51270592500011,74.12343984600001],[57.53565514400011,74.09398021000014],[57.47510826900011,74.07367584800012],[57.3269962900001,74.09271881700012],[57.26075280000012,74.080308335],[57.526866082000225,74.06513092700011],[57.54769941500009,74.06077708500011],[57.56983483200011,74.05304596600011],[57.61060631600011,74.02993398600016],[57.87842858200005,73.93431224199999],[57.91187584700006,73.91583893400015],[57.85906009200007,73.91160716400005],[57.83253014400012,73.90631745000013],[57.809418165000146,73.89541250200008],[57.83122806100019,73.88833242400013],[57.88347415500018,73.88483307500003],[57.90503991000011,73.87547435100002],[57.90626061300023,73.866400458],[57.904470248000024,73.85366445500013],[57.90992272200017,73.84320709800006],[57.932871941000165,73.84137604400009],[57.927907748000194,73.83169179900013],[57.92945397200006,73.82257721600014],[57.936208530000194,73.814154364],[57.945974155,73.80658600500014],[57.74870853000019,73.7260195980001],[57.714610222000175,73.72333405200011],[57.68148847700016,73.72931549700003],[57.627696160000106,73.74518463700015],[57.620616082000225,73.75018952],[57.60710696700008,73.76902903900013],[57.59229576900005,73.77895742400013],[57.53500410200016,73.79608795800009],[57.48707116000011,73.82074616100006],[57.39535566500015,73.84552643400004],[56.975515170000136,73.8670514995001],[56.55567467500006,73.88857656500006],[56.634613477000094,73.86334870000012],[56.93165123800006,73.85398997600008],[57.09555097700016,73.83014557500009],[57.17937259200007,73.830552476],[57.21989993600007,73.825344143],[57.34986412900011,73.8275820980001],[57.370616082000105,73.810288804],[57.38306725400011,73.79498932500003],[57.48991946700008,73.75433991100012],[57.497813347000054,73.74787018400004],[57.500824415000146,73.73460521],[57.50814863400014,73.727687893],[57.580332879000174,73.70917389500009],[57.59058678500016,73.7038434920001],[57.58716881600017,73.69367096600017],[57.58643639400006,73.68545156500006],[57.59546959700006,73.67723216399999],[57.60792076900005,73.67108795799999],[57.61752363400014,73.66885000200001],[57.60132897200017,73.6533877620001],[57.59489993600018,73.64500560100014],[57.59034264400005,73.63532135600018],[57.60718834700006,73.63092682500009],[57.60206139400012,73.62254466400013],[57.585785352000094,73.6136742210001],[57.56983483200011,73.60736725500014],[57.32960045700005,73.5738792990001],[57.33578535200016,73.56924062700007],[57.35010826900005,73.55341217700011],[57.02019290500019,73.584214585],[56.788340691000116,73.67625560100011],[56.75196373800017,73.68301015800013],[56.73511803500017,73.68024323100018],[56.71949303500016,73.66885000200001],[56.74642988400015,73.64838288000006],[56.81690514400012,73.62946198100003],[56.85035241000017,73.61481354400003],[56.826996290000096,73.60691966400005],[56.799978061000076,73.60512929900007],[56.74675540500007,73.60736725500014],[56.788340691000116,73.59552643400018],[56.87720787900017,73.60073476800007],[56.92025800900009,73.595933335],[57.080251498000194,73.53656647300012],[57.21127363400014,73.51699453300014],[57.23755944100017,73.50958893400015],[57.24626712300008,73.5034040390001],[57.253916863000114,73.49135976800008],[57.25196373800023,73.48427969000012],[57.24512780000011,73.47719961100007],[57.24268639400012,73.46865469000015],[57.253916863000114,73.45718008000001],[57.229991082000225,73.45750560100011],[57.20020592500012,73.45307038000006],[57.17872155000012,73.442043361],[57.17872155000012,73.42304108299999],[56.95964603000019,73.340521552],[56.90845787900011,73.31468333500008],[56.89087975400011,73.31317780200011],[56.88135826900012,73.31753164300004],[56.86500084700012,73.33405182500009],[56.85661868600001,73.340521552],[56.81413821700008,73.357367255],[56.78711998800023,73.36399974200008],[56.76710045700017,73.3656273460001],[56.74927819100017,73.36151764500012],[56.74048912900011,73.34731679900013],[56.74626712300008,73.33380768400015],[56.761485222000054,73.32672760600009],[56.79517662900016,73.32062409100011],[56.73902428500017,73.293890692],[56.72315514400012,73.28241608300014],[56.72095787900011,73.27285390800016],[56.73267662900011,73.26557038000014],[56.74927819100017,73.25918203300002],[56.76099694100017,73.25169505400005],[56.7298283210001,73.24453359600001],[56.6873478520001,73.24339427299999],[56.64437910200016,73.24689362200013],[56.578786655000016,73.26080963700004],[56.120860222,73.290025132],[56.07781009200008,73.30402252800006],[56.0462345710001,73.33026764500006],[56.03419030000006,73.3712425800001],[56.01579837300014,73.41229889500008],[55.97144616000016,73.43927643400004],[55.917491082000055,73.44839101800012],[55.870371941000165,73.43610260600018],[55.93620853000007,73.41901276200004],[55.97120201900006,73.40298086100013],[55.986501498000194,73.38519928600005],[55.98462975400011,73.37579987200003],[55.97282962300008,73.34731679900013],[55.973887566000116,73.33270905200003],[55.98072350400011,73.33026764500006],[55.98023522200006,73.32965729400011],[55.95972741000011,73.32062409100011],[55.92400149800008,73.3119977890001],[55.89087975400011,73.31736888200005],[55.82195071700019,73.340521552],[55.772308790000096,73.34804922100015],[55.434906446000156,73.33209870000015],[55.02068118600013,73.44354889500006],[54.90007571700002,73.44839101800012],[54.780528191000116,73.43610260600018],[54.65943444100011,73.40680573100015],[54.56812584700006,73.40875885600009],[54.47388756600017,73.39081452000006],[54.294200066000116,73.33413320500006],[54.25001061300006,73.32827383000013],[54.0330509770001,73.37466054900001],[54.06804446700019,73.39785390800013],[54.1302189460001,73.41010163],[54.27735436300023,73.4147809920001],[54.29363040500018,73.41771067900012],[54.300547722000175,73.42645905200011],[54.30160566500015,73.43378327000003],[54.30437259200019,73.43976471600003],[54.30876712300008,73.44489166900014],[54.31495201900006,73.44969310100014],[54.337412957000225,73.46027252800009],[54.41732832100015,73.47768789300015],[54.31495201900006,73.46881745000012],[54.280772332000225,73.47085195500013],[54.18458092500012,73.49135976800008],[54.20362389400012,73.50495026200004],[54.54151451900012,73.61098867400001],[54.61215254000015,73.61652252800003],[54.68091881600011,73.62986888200014],[54.712168816000116,73.64150625200013],[54.784922722000175,73.65932851800012],[54.9407658210001,73.665472723],[55.0467228520001,73.6983096370001],[55.08863366000011,73.70551178600012],[55.349619988000114,73.71723053600012],[55.31804446700019,73.72532786700005],[55.284678582000225,73.72528717700004],[55.25098717500012,73.72117747600011],[54.964528842000185,73.71710846600014],[54.93132571700019,73.710394598],[54.881195509000094,73.68854401200015],[54.85645592500012,73.68353913000011],[54.82829837300002,73.6905785180001],[54.862966342000135,73.71942780200011],[54.86988366000011,73.73151276200011],[54.84880618600019,73.73078034100008],[54.81104576900006,73.719916083],[54.79102623800005,73.71723053600012],[54.724375847000175,73.71686432500012],[54.66407311300022,73.704779364],[54.53003991000016,73.70416901200002],[54.491953972000175,73.69733307500003],[54.46257571700008,73.680650132],[54.43531334700017,73.66014232000013],[54.40357506600011,73.64150625200013],[54.3693953790001,73.63190338700015],[54.29566491000011,73.62372467700006],[54.26026451900012,73.61481354400003],[54.27466881600017,73.60358307500003],[54.280772332000225,73.60053131700012],[54.11963951900006,73.61717357],[54.073985222,73.60871002800003],[54.051442905000016,73.61098867400001],[54.006521030000016,73.62164948100003],[53.96648196700019,73.62665436400009],[53.94695071700019,73.63157786700005],[53.930674675000056,73.64150625200013],[53.938324415000096,73.64272695500016],[53.95801842500006,73.64891185100014],[53.94117272200006,73.65399811400006],[53.90691165500007,73.65827057500013],[53.88982181100002,73.66266510600015],[53.8787541020001,73.66746653900003],[53.85499108200011,73.68309153900013],[53.76002037900017,73.72064850500011],[53.732758009000094,73.72785065300013],[53.667491082000055,73.73501211100002],[53.64332116000017,73.74518463700015],[53.63111412900011,73.75958893400012],[53.63257897200006,73.77008698100009],[53.63933353000018,73.78074778900012],[53.64332116000017,73.79608795800009],[53.653575066000116,73.81248607],[53.677744988000114,73.80817291900016],[53.72461998800017,73.78611888200008],[53.75896243600019,73.77968984600007],[53.79590905000006,73.77676015800013],[53.868662957000225,73.7787132830001],[54.08155358200017,73.83392975500011],[54.06275475400011,73.8486188820001],[54.07813561300022,73.86200592700011],[54.10808353000013,73.87177155200006],[54.16244550900015,73.8803164730001],[54.25277754000015,73.91583893400015],[54.31592858200011,73.93097565300015],[54.450856967000185,73.94794342700011],[54.62777754000015,73.95148346600011],[54.72584069100017,73.9779320330001],[54.78541100400017,73.96621328300009],[54.80152428500011,73.97044505400011],[54.79997806100018,73.98541901200015],[54.76937910200016,73.99628327000015],[54.7049259770001,74.00527578300014],[54.6404728520001,74.00218333500008],[54.6067814460001,74.005601304],[54.58863366000011,74.01886627800012],[54.602793816000116,74.01992422100007],[54.60922285200016,74.02195872600002],[54.6779891290001,74.06818268400009],[54.694834832000225,74.07416413000011],[54.71509850400011,74.07689036699999],[55.018890821000156,74.17300039300015],[55.15455162900011,74.1883812520001],[55.18165123800006,74.18707916900009],[55.20134524800019,74.18195221600017],[55.2518009770001,74.16107819199999],[55.278819207000055,74.15477122600008],[55.39372806100019,74.14069245000003],[55.48682701900006,74.14923737200014],[55.81413821700019,74.10049062700013],[55.84148196700008,74.10024648600007],[55.86443118600007,74.10594310100008],[55.870371941000165,74.12128327000003],[55.856700066000116,74.12933991100014],[55.78142337300008,74.14744700700005],[55.68230228000019,74.15204498899999],[55.63249759200002,74.16290924700017],[55.622731967000185,74.19017161700008],[55.2376408210001,74.24567291900001],[55.14771569100011,74.24209219000015],[55.12989342500006,74.24481842700011],[55.11646569100017,74.24933502800017],[55.09050540500007,74.26121653900013],[55.07585696700008,74.26593659100006],[55.09253991000017,74.271673895],[55.126231316000165,74.2709414730001],[55.14356530000006,74.27277252800015],[55.143809441000116,74.27460358300011],[55.14503014400006,74.27899811400012],[55.14730879000009,74.28363678600014],[55.15040123800011,74.28644440300009],[55.18572024800014,74.29262929900014],[55.20915774800019,74.30206940300017],[55.22836347700016,74.30744049700003],[55.24683678500017,74.30536530200011],[55.26710045700011,74.29262929900014],[55.26343834700006,74.28953685100008],[55.25700931100001,74.28253815300009],[55.25342858200017,74.27960846600017],[55.286143425000056,74.27435944200009],[55.404470248000194,74.28644440300009],[55.528575066000165,74.28204987200012],[55.56666100400017,74.28803131700012],[55.626719597000175,74.30438873900013],[55.65788821700008,74.30499909100008],[55.68287194100017,74.27265045800007],[55.70899498800023,74.27081940300012],[55.73503665500018,74.28001536699998],[55.74683678500017,74.296332098],[55.73170006600017,74.30487702000012],[55.660329623000194,74.32953522300012],[55.63697350400011,74.33421458500013],[55.61963951900012,74.33144765800007],[55.60621178500011,74.32746002800009],[55.59253991000017,74.32538483300009],[55.57496178500011,74.32802969000006],[55.527354363000164,74.3460960960001],[55.44939212300019,74.35443756700005],[55.298106316000116,74.35472239799999],[55.260752800000056,74.3607445330001],[55.23292076900012,74.37579987200012],[55.349619988000114,74.43382396],[55.38835696700002,74.44505442899998],[55.50660241000017,74.44403717700011],[55.618418816000165,74.465765692],[55.663584832000225,74.45929596600008],[55.90333092500006,74.45941803600006],[55.94890384200019,74.46914297100001],[55.97291100400017,74.471380927],[56.03980553500016,74.46539948100018],[56.1048283210001,74.47772858300011],[56.263356967000014,74.4799665390001],[56.28003991000017,74.48476797100008],[56.28736412900017,74.49168528900002],[56.27605228000019,74.49998607000008],[56.25440514400012,74.50495026200012],[56.23365319100011,74.50486888200012],[56.19190514400005,74.49803294500013],[56.01441491000011,74.49188873900015],[56.02881920700011,74.50275299700003],[56.046153191000116,74.5111351580001],[56.06446373800017,74.51679108300009],[56.082041863000114,74.51976146],[55.97689863400015,74.546047268],[55.866547071000156,74.55329010600003],[55.81373131600017,74.54718659100014],[55.70899498800023,74.5223656270001],[55.65691165500019,74.51976146],[55.6994735040001,74.54214101800004],[55.70582116000016,74.54987213700004],[55.699229363000114,74.55512116100012],[55.66749108200022,74.57111237200012],[55.65723717500012,74.57440827000015],[55.499766472000054,74.56696198100018],[55.56104576900006,74.61448802300008],[55.554860873000194,74.6222191430001],[55.54468834700006,74.62441640800007],[55.53239993600019,74.630316473],[55.52247155000011,74.63886139500012],[55.52027428500011,74.64887116100012],[55.52955162900017,74.65485260600003],[55.61231530000012,74.67609284100003],[55.685069207000055,74.67983633000014],[55.75554446700008,74.69171784100011],[55.870371941000165,74.68366120000015],[55.86597741000011,74.67438385600012],[55.86296634200019,74.67059967699998],[55.896006707000225,74.660630601],[56.387054884000094,74.72138092700014],[56.4182235040001,74.72052643400002],[56.418304884000094,74.70408763200014],[56.452647332000225,74.70331452000012],[56.55567467500006,74.68366120000015],[56.986989780000066,74.69049713700018],[56.973317905000016,74.69049713700018],[56.944834832000225,74.70734284100008],[56.89307701900011,74.71271393400002],[56.838715040000096,74.70945872599998],[56.77881920700022,74.6935082050001],[56.75424238400015,74.69232819200006],[56.70582116000011,74.69733307500007],[56.6268009770001,74.69354889500009],[56.60279381600017,74.69733307500007],[56.58619225400011,74.70563385600018],[56.5638126960001,74.72699616100014],[56.54883873800005,74.73826732000013],[56.53126061300023,74.74628327000006],[56.51002037900017,74.75214264500012],[56.48796634200008,74.75409577000006],[56.450938347,74.74799225500009],[56.42969811300022,74.74860260600003],[56.41684004000009,74.753119208],[56.4251408210001,74.762152411],[56.500987175000056,74.79352448100003],[56.46599368600002,74.79926178600012],[56.20187422000018,74.78998444200005],[55.93775475400017,74.780707098],[55.883474155000066,74.78754303600012],[55.83269290500018,74.80003489800013],[55.81690514400006,74.80735911700005],[55.815684441000116,74.81720612200014],[55.835622592000135,74.83104075700005],[55.88493899800019,74.84617747600005],[56.21387780000006,74.8855248065001],[56.54281660200016,74.92487213700004],[56.59449303500011,74.94269440300012],[56.616058790000096,74.94550202000005],[56.66456139400006,74.94432200700014],[56.67847741000017,74.94867584800012],[56.67237389400006,74.95831940300009],[56.65552819100017,74.96796295800009],[56.63746178500017,74.97223541900009],[56.58887780000012,74.96588776200015],[56.540863477000094,74.95246002800015],[56.51433353000007,74.94822825700014],[56.431976759000094,74.95799388200008],[56.410492384000094,74.954006252],[56.36638431100019,74.94009023600002],[56.357106967000014,74.94086334800015],[56.383636915000096,74.96482982000002],[56.29493248800023,74.96482982000002],[56.31788170700011,74.9678408870001],[56.38892662900016,74.99347565300013],[56.44157962300019,75.00438060100005],[56.46648196700002,75.0127627620001],[56.46615644600009,75.02252838700004],[56.44312584700006,75.032660223],[56.42058353000007,75.03725820500013],[56.39747155000012,75.03652578300002],[56.34009850400017,75.02509186400015],[56.18002363400009,75.02081940300003],[56.06544030000006,74.99697500200016],[55.90333092500006,74.99127838700018],[55.86996504000009,74.99701569200015],[55.865000847,75.00360748900012],[55.893890821000156,75.02179596600011],[55.89087975400011,75.03245677300005],[55.94605553500016,75.0740420590001],[55.934825066000165,75.07656484600012],[55.91570071700019,75.08567942900012],[55.90414472700016,75.08771393400015],[55.83619225400011,75.08771393400015],[55.74773196700008,75.07538483300011],[55.726328972,75.081488348],[55.7376408210001,75.08685944200006],[55.74170983200017,75.09422435100005],[55.74301191500015,75.10195547100005],[55.74683678500017,75.10822174700012],[55.75831139400012,75.1143252620001],[55.784027540000146,75.12278880400014],[55.79468834700017,75.12872955900015],[55.79957116000017,75.13568756700006],[55.80307050900015,75.150580145],[55.80836022200006,75.15664297100001],[55.823415561000076,75.16217682500003],[55.854746941000116,75.16185130400001],[55.870371941000165,75.16339752800006],[55.88233483200011,75.16974518400018],[55.90626061300006,75.190375067],[55.9182235040001,75.19757721600003],[56.037933790000096,75.21759674700007],[56.07113691500009,75.21893952000009],[56.10320071700019,75.21124909100017],[56.0979110040001,75.20819733300009],[56.08757571700019,75.20050690300015],[56.082041863000114,75.19757721600003],[56.114105665000096,75.18829987200017],[56.15707441500015,75.18577708500005],[56.20045006600017,75.18915436400007],[56.23357181100002,75.19757721600003],[56.216807488000114,75.1804059920001],[56.16041100400017,75.16795482],[56.13721764400012,75.15664297100001],[56.173594597,75.15021393400009],[56.212901238000114,75.15253327000006],[56.28744550900014,75.17023346600014],[56.33741295700011,75.18964264500006],[56.356293165000096,75.19074127800012],[56.3713485040001,75.18817780200011],[56.37867272200006,75.18414948100003],[56.38331139400006,75.17829010600008],[56.45337975400017,75.11896393400004],[56.47120201900006,75.08783600500011],[56.44581139400012,75.06728750200008],[56.53044681100002,75.07843659100011],[56.612559441000116,75.1069196640001],[56.79135175900015,75.19790273600016],[56.88086998800023,75.22329336100007],[56.896250847000175,75.22996653900005],[56.90707441500015,75.24017975500009],[56.91130618600019,75.25592682500003],[56.892100457000225,75.28046295800006],[56.84782962300008,75.28900788000007],[56.76059004000015,75.28701406500012],[56.73324629000009,75.29657623900012],[56.75798587300008,75.31842682500015],[56.83619225400017,75.35521067900005],[57.046234571000156,75.39813873900012],[57.07447350400011,75.39606354400009],[57.14844811300011,75.37909577000012],[57.425791863000114,75.37567780200011],[57.420664910000106,75.3623721370001],[57.434825066000116,75.35687897300005],[57.472178582000105,75.35346100500006],[57.556162957000225,75.3341738950001],[57.741058790000146,75.327866929],[57.735850457000055,75.33075592700011],[57.719981316000116,75.34153880400011],[57.723480665000096,75.34471263199998],[57.72999108200022,75.35219961100013],[57.73365319100017,75.35521067900005],[57.719899936000076,75.35785553600014],[57.68043053500017,75.37225983300003],[57.672211134000094,75.37909577000012],[57.66846764400005,75.41034577],[57.66667728000007,75.41669342700011],[57.64039147200006,75.43939850500009],[57.60873457100009,75.444037177],[57.5750431650001,75.443589585],[57.54249108200012,75.45148346600017],[57.54371178500012,75.46710846600014],[57.532725457000055,75.47866445500007],[57.500824415000146,75.49921295800011],[57.563649936000125,75.5196800800001],[58.05298912900017,75.57729726800015],[58.14185631600011,75.57436758000013],[58.16472415500013,75.57835521000011],[58.18669681100001,75.58877187700001],[58.19564863400015,75.60321686400006],[58.17994225400011,75.61933014500012],[58.14682050900015,75.62885163000011],[57.95427493600013,75.62409088700004],[57.92554772200017,75.62897370000007],[57.94434655000012,75.6548526060001],[57.97950280000007,75.67194245000015],[58.01929772200017,75.68134186400009],[58.259125196000156,75.6928571640001],[58.30632571700002,75.70246002800009],[58.40072675900009,75.70966217700011],[58.45964603000007,75.727525132],[58.60450280000006,75.73261139500003],[58.593028191000165,75.74213288000011],[58.53614342500006,75.75995514500009],[58.57325280000006,75.77374909100008],[58.60987389400012,75.78213125200014],[58.723399285000106,75.79214101800012],[58.72738691500009,75.80402252800009],[58.72689863400009,75.81903717700011],[58.75001061300017,75.832993882],[58.9310001960001,75.86762116100006],[59.136892123000024,75.86542389500009],[59.22852623800022,75.88666413000006],[59.24887129000009,75.88898346600003],[59.30616295700016,75.8877627620001],[59.333506707000225,75.8916690120001],[59.35808353000007,75.90326569200012],[59.355642123000194,75.90460846600011],[59.354258660000106,75.91054922100011],[59.354746941000116,75.91791413000011],[59.35808353000007,75.92377350500009],[59.36597741000011,75.92816803600006],[59.38982181100018,75.93602122600014],[59.39869225400011,75.9374453800001],[59.748789910000106,75.930609442],[59.775157097,75.93390534100003],[59.82585696700019,75.94843170800006],[59.90235436300006,75.95807526200004],[59.99935957100015,75.98627350500011],[60.048187696000156,75.99266185100014],[60.32227623800011,75.99823639500015],[60.34766686300022,76.00568268400012],[60.345225457000105,76.01691315300012],[60.32601972700015,76.02350495000007],[60.29867597700016,76.02887604400014],[60.08448326900006,76.0363630230001],[60.06218509200019,76.0424665390001],[60.042735222000175,76.054144598],[60.083669467000135,76.06972890800009],[60.26807701900005,76.11009349200005],[60.55323326900006,76.11654287350002],[60.83838951900006,76.12299225500009],[60.818207227000094,76.11066315300003],[60.793630405,76.10639069200003],[60.76783287900011,76.10480377800017],[60.48145592500006,76.02704498900009],[60.46843509200007,76.013128973],[60.53565514400012,76.02069733300014],[60.55713951900006,76.02065664300015],[60.54965254000009,76.013128973],[60.60352623800011,75.9987653670001],[60.6697697270001,75.99607982000003],[60.73471113400015,76.00535716400002],[60.78370201900012,76.02680084800012],[60.78874759200008,76.03270091400007],[60.796641472,76.04730866100009],[60.80420983200005,76.054144598],[60.81836998800011,76.06012604400003],[60.89771569100006,76.06915924700002],[60.96412194100017,76.0658633480001],[61.08545983200011,76.08454010600015],[61.1126408210001,76.09568919499999],[61.14576256600006,76.11611562700014],[61.15414472700011,76.12909577000006],[61.14673912900011,76.14350006700012],[61.119313998000074,76.15119049700014],[60.947601759000094,76.14061107],[60.91993248800011,76.14411041900009],[60.89975019600015,76.15717194200006],[60.92937259200019,76.17495351800015],[60.99512780000006,76.19977448100009],[61.02328535200016,76.21857330900013],[60.993662957000225,76.23078034100003],[60.995778842000014,76.24640534100011],[61.01677493600018,76.26186758000013],[61.043793165000096,76.27326080900008],[61.07691491000017,76.27997467700014],[61.18100019600015,76.28001536700012],[61.48226972700015,76.29433828300002],[61.560069207000225,76.283636786],[61.58497155000006,76.28685130400005],[61.60474694099999,76.29572174700007],[61.62029056100019,76.3048363300001],[61.63697350400017,76.31195709800012],[61.6751408210001,76.31517161700002],[61.70460045700011,76.31460195500013],[61.718516472000175,76.31142812700016],[61.747325066,76.29637278900005],[61.75668379000015,76.29433828300002],[61.90333092500012,76.29315827000009],[61.9275822270001,76.29743073100009],[61.97836347700015,76.26337311400009],[62.09376061300022,76.25340403899999],[62.38249759200013,76.27118561400009],[62.40406334700006,76.2633324240001],[62.406260613000114,76.25116608300003],[62.39486738400015,76.24115631700012],[62.38038170700011,76.23183828300007],[62.37330162900017,76.22199127800015],[62.3889266290001,76.19708893400012],[62.42595462300008,76.18764883000001],[62.469086134000094,76.18431224199999],[62.50367272200017,76.17767975500011],[62.50660241000011,76.18964264500015],[62.51441491000016,76.19725169499999],[62.53785241000017,76.20868561400015],[62.554453972,76.21906159100004],[62.55941816500009,76.21954987200003],[62.57195071700007,76.21857330900013],[62.62566165500007,76.20734284100014],[62.65105228000007,76.20978424700007],[62.64771569100006,76.23163483300011],[62.673187696000156,76.24225495000017],[62.779470248000074,76.270697333],[62.81234785200016,76.26996491100006],[62.8435978520001,76.26194896000011],[62.866872592000135,76.2459170590001],[62.85206139400005,76.23444245000017],[62.84636478000007,76.23163483300011],[62.921397332000105,76.23163483300011],[62.90154056100019,76.21857330900013],[62.956797722,76.20693594000014],[63.17017662900012,76.24347565300009],[63.22038821700019,76.26268138200014],[63.46265709700006,76.28685130400005],[63.48324629000009,76.29181549700009],[63.52955162900017,76.31679922100004],[63.55844160200016,76.32200755400011],[63.62037194100005,76.32391998900006],[63.64795983200017,76.33185455900004],[63.67058353000002,76.34137604400001],[63.69459069100017,76.34723541900017],[63.71924889400006,76.34967682500012],[63.85987389400012,76.34149811399999],[63.93311608200005,76.36229075699998],[63.956065300000056,76.36322663000009],[63.97136478000013,76.35785553600012],[63.98747806100019,76.34808991100009],[64.01441491000016,76.32538483300011],[64.0345158210001,76.31525299700016],[64.06218509200019,76.31199778900013],[64.09083092500006,76.31281159100014],[64.16456139400012,76.32440827000006],[64.26205488400015,76.35480377800003],[64.31299889400006,76.36322663000009],[64.40699303500011,76.35903554900013],[64.4358830090001,76.36322663000009],[64.4502059250001,76.37124258000001],[64.4661564460001,76.39183177300005],[64.47527103000019,76.39866771000008],[64.52369225400011,76.40110911700009],[64.62647545700011,76.37490469000005],[64.67603600400011,76.38312409100017],[64.65406334699999,76.39354075700005],[64.65503991000011,76.40582916900011],[64.6697697270001,76.41860586100016],[64.68970787900017,76.43085358300011],[64.71998131600017,76.44501373900015],[64.74594160200016,76.4499372420001],[64.80640709700018,76.45136139500009],[64.79322350400011,76.46702708500005],[64.78589928500011,76.47186920800011],[64.82593834700006,76.48419830900018],[64.98633873800021,76.50116608300006],[65.03126061300023,76.50104401200018],[65.06804446700012,76.49457428600009],[65.07325280000012,76.47870514500013],[65.10206139400006,76.46954987200016],[65.13542728000002,76.469427802],[65.16895592500006,76.47528717700014],[65.22608483200023,76.4923363300001],[65.33863366000011,76.5131289730001],[65.3536889980002,76.52187734600015],[65.38233483200011,76.54755280200011],[65.40316816500015,76.55853913000009],[65.48487389400006,76.574896552],[65.61068769600016,76.58038971600001],[65.99138431100002,76.53335195500001],[65.99878991000011,76.53335195500001],[66.03288821700002,76.54755280200011],[66.01710045700011,76.55744049700003],[65.99732506600017,76.56622955900009],[65.97657311300017,76.57245514500013],[65.9573673840001,76.574896552],[65.94166100400011,76.5791690120001],[65.93262780000012,76.589585679],[65.9266056650001,76.60211823100009],[65.91968834700006,76.61302317900008],[65.88803144600016,76.63678620000015],[65.85254967500006,76.65228913000009],[65.77173912900017,76.6729190120001],[65.7534285820001,76.6828473980001],[65.76124108200011,76.69342682500015],[65.7820744150001,76.70184967700011],[65.82357832100016,76.70945872600005],[65.88892662900017,76.73940664300004],[65.94434655000012,76.74970123900012],[66.10808353000002,76.75307851800015],[66.15105228000019,76.76276276200012],[66.23503665500007,76.79462311400015],[66.27881920700011,76.80145905200006],[66.32781009200008,76.80097077000005],[66.35157311300006,76.805650132],[66.37183678500017,76.81818268400018],[66.38754316500015,76.83661530200011],[66.39535566500015,76.842718817],[66.40967858200023,76.8491885440001],[66.46192467500006,76.8605003930001],[66.57113691500015,76.86456940300015],[66.62256920700005,76.87653229400007],[66.6297306650001,76.88149648600012],[66.6367293630001,76.89297109600007],[66.64177493600013,76.89704010600003],[66.65406334700018,76.90070221600008],[66.87956790500019,76.9230817730001],[66.9183048840001,76.94464752800012],[66.9435327480002,76.94896067900011],[67.21094811300011,76.95229726800015],[67.34555097700016,76.98554108300004],[67.39918053500011,76.98602936400015],[67.47820071700008,77.00409577000006],[67.58806399800014,77.01337311400012],[68.03443444100006,76.99848053600006],[68.1585392590001,76.96759674700012]]],[[[156.65967858200023,77.08454010600006],[156.65333092500012,77.08417389500012],[156.51579837300002,77.08771393400012],[156.4917098320001,77.09821198100018],[156.50749759200008,77.11163971600017],[156.5288192070001,77.12107982],[156.55030358200023,77.12579987200007],[156.58863366000017,77.12555573100015],[156.63851972700002,77.11566803600014],[156.66098066500004,77.107611395],[156.66537519600004,77.10390859600005],[156.67302493600008,77.0954043640001],[156.67090905000023,77.0877953150001],[156.65967858200023,77.08454010600006]]],[[[88.98926217300018,76.98987672600005],[88.91957126100007,76.97710091],[88.81633380600013,76.98540998400013],[88.69981186600015,77.03972270499999],[88.6638751290001,77.08035050300005],[88.7856488900002,77.12357191300005],[89.047127915,77.14089453200008],[89.13589831700003,77.12711443300007],[89.09857921500006,77.09860134600014],[89.04493849500014,77.07709186900009],[88.96883685300011,77.03943478000015],[89.01868583200022,77.01307845500016],[88.98926217300018,76.98987672600005]]],[[[96.47722415500019,77.08222077000009],[96.43799889400006,77.06899648600013],[96.35962975400011,77.0600446640001],[96.31983483200011,77.0449079450001],[96.2659611340001,77.03424713700018],[96.27279707100008,77.02537669500013],[96.2827254570001,77.01972077000015],[96.29468834700006,77.016099351],[96.30762780000006,77.01365794500003],[96.2775171230002,76.99982330900015],[96.23503665500002,76.99046458500011],[96.19125410200016,76.9884300800001],[96.11980228000017,77.00674062700016],[96.08171634200014,77.00283437700016],[96.00660241,76.985785223],[95.68441816500015,76.95229726800015],[95.69971764400012,76.95636627800012],[95.728282097,76.9698753930001],[95.75953209700018,76.97589752800009],[95.78630618600019,76.98948802300005],[95.79712975400017,76.99262116100012],[95.91700280000006,77.00238678600006],[95.95142662900015,77.01365794500003],[95.9184676440001,77.030707098],[95.86988366000006,77.03046295800006],[95.78003991000006,77.01365794500003],[95.5185653005001,77.00263092650013],[95.25709069100006,76.99160390800016],[95.23194420700005,77.00629303600006],[95.25017337300008,77.010443427],[95.28541100400011,77.02435944200006],[95.36451256600012,77.03717682500012],[95.42066491,77.05548737200017],[95.58082116000006,77.07855866100012],[95.70484459700006,77.07514069200012],[96.00342858150005,77.11788564650008],[96.30201256600006,77.16063060100014],[96.44320722700016,77.20726146000014],[96.46216881600017,77.21027252800015],[96.52735436300004,77.20551178600014],[96.54574629000008,77.19354889500012],[96.56641686300006,77.15619538000004],[96.58936608200005,77.14411041900014],[96.47722415500019,77.08222077000009]]],[[[105.91195722700016,77.27627187700006],[105.86182701900005,77.25486888200011],[105.83277428500016,77.25678131700009],[105.80445397200006,77.26642487200013],[105.78492272200016,77.28058502800017],[105.9026798840001,77.30402252800015],[105.97038821700002,77.305080471],[106.01148522200006,77.28742096600008],[105.98072350400005,77.279201565],[105.91195722700016,77.27627187700006]]],[[[89.74679532600007,77.16442435900014],[89.49279048500009,77.14075702300006],[89.30121631000011,77.14722236400014],[89.18523196700002,77.196234442],[89.13461347700016,77.21771881700012],[89.16293379000008,77.24994538000004],[89.21306399800018,77.27789948100009],[89.26628665500007,77.2982852230001],[89.30437259200006,77.30792877800015],[89.60401451900012,77.31256745000017],[89.65316816500015,77.30243561400012],[89.68921959700018,77.28058502800017],[89.72755137700008,77.24407664100015],[89.81702034700018,77.21058966400008],[89.74679532600007,77.16442435900014]]],[[[106.42896569099999,77.310777085],[106.39039147200006,77.30475495000017],[106.35401451900006,77.30719635600012],[106.33301842500012,77.32160065300017],[106.3611759770001,77.32192617400001],[106.38282311300011,77.32941315300017],[106.40845787900017,77.331000067],[106.43409264400012,77.32794830900012],[106.45655358200004,77.32160065300017],[106.42896569099999,77.310777085]]],[[[107.57740319100006,77.33197663000009],[107.60580488400015,77.32859935100008],[107.63404381600006,77.32933177299999],[107.64893639400005,77.32904694200006],[107.66895592500006,77.33417389500006],[107.70004316500015,77.33808014500006],[107.72974694100017,77.33746979400011],[107.74512780000012,77.32904694200006],[107.74317467500006,77.31305573100015],[107.73023522200018,77.30605703300007],[107.71452884200019,77.30190664300012],[107.70411217500012,77.29425690300012],[107.70899498800011,77.28558991100012],[107.72022545700011,77.27667877800017],[107.72169030000006,77.26972077000008],[107.69743899800007,77.26699453300002],[107.62549889400012,77.2679710960001],[107.3445744150001,77.23285553600012],[107.27222741000017,77.24054596600014],[107.24708092500006,77.23973216400013],[107.22429446700006,77.233384507],[107.20484459700005,77.23432038000009],[107.20728600400011,77.24038320500007],[107.2215275400001,77.24787018400006],[107.23796634200019,77.25332265800007],[107.4231876960001,77.26984284100014],[107.45704186300011,77.28058502800017],[107.41358483200005,77.28986237200003],[107.31983483200004,77.2873395850001],[107.27955162900017,77.30170319200009],[107.35621178500004,77.3456891950001],[107.39535566500014,77.36025625200013],[107.44223066500008,77.35443756700008],[107.469493035,77.34796784100008],[107.52662194100017,77.34341054900013],[107.57740319100006,77.33197663000009]]],[[[106.8304142590001,77.47260163000014],[106.87712649800018,77.46596914300007],[106.92481530000006,77.4670270850001],[106.94312584700006,77.45872630400005],[106.92546634200018,77.4523379580001],[106.88038170700005,77.44550202],[106.8611759770001,77.44574616100006],[106.88249759200006,77.43374258000013],[106.88111412900017,77.42454661700008],[106.86475670700005,77.41901276200004],[106.84009850400017,77.4177920590001],[106.79078209700018,77.42576732],[106.76612389400012,77.42645905200011],[106.7444767590001,77.4177920590001],[106.75196373800006,77.41160716400005],[106.70093834700016,77.38361237200003],[106.64144941500015,77.37909577000009],[106.52475019600014,77.39044830900013],[106.5267033210001,77.40550364800006],[106.56234785200016,77.42153554900015],[106.55958092500006,77.43829987200017],[106.5841577480002,77.44586823100003],[106.63754316500015,77.4433454450001],[106.66228274800014,77.44912344000006],[106.68230228000019,77.45783112200014],[106.73031660200016,77.47044505400014],[106.8304142590001,77.47260163000014]]],[[[92.03272545700023,77.58808014500003],[91.98454837300018,77.5872256530001],[91.91114342500005,77.6002464860001],[91.88086998800011,77.61200592700008],[91.86597741000006,77.62864817900011],[91.89128665500019,77.64179108300009],[91.94361412900017,77.64394765800007],[92.062266472,77.62995026200012],[92.07886803500016,77.6283226580001],[92.11036217500006,77.62164948100006],[92.11011803500006,77.61090729400003],[92.09498131600006,77.60504791900009],[92.03272545700023,77.58808014500003]]],[[[104.32569420700005,77.72996653899999],[104.32447350400017,77.722113348],[104.27466881600017,77.69961172100001],[104.25749759200006,77.68528880400011],[104.28891035200016,77.67304108300006],[104.32398522200006,77.66860586100007],[104.67823326900006,77.70954010600008],[104.75163821700019,77.70620351800007],[104.79118899800002,77.671616929],[104.79118899800002,77.65802643400004],[104.8076278000001,77.63540273600016],[104.86687259200014,77.61298248900015],[104.98218834700006,77.58909739799999],[105.23316491000006,77.56964752800017],[105.33423912900017,77.5410016950001],[105.60397382950006,77.55479564000002],[105.87370853000013,77.56858958500011],[105.86638431100019,77.55975983300006],[105.85645592500012,77.55272044500002],[105.83334394600016,77.54071686400009],[105.84888756600017,77.53514232000008],[105.880625847,77.53156159100008],[105.89478600400005,77.52765534100008],[105.90162194100006,77.52236562700004],[105.91456139400006,77.5064964860001],[105.9226180350001,77.49970123900006],[105.9100041020001,77.47601959800015],[105.92725670700011,77.458929755],[105.98357181100017,77.43829987200017],[105.98080488400015,77.43463776200012],[105.97730553500006,77.425238348],[105.99683678500006,77.42108795800006],[106.07886803500006,77.41543203300006],[106.11784915500013,77.40619538000001],[106.17107181100017,77.40155670800009],[106.25945071700008,77.38353099200005],[106.29200280000012,77.37002187700007],[106.21973717500006,77.35635000200013],[105.79566491000017,77.37352122600008],[105.75814863400015,77.3694522160001],[105.74341881600017,77.35635000200013],[105.72437584700018,77.34149811400009],[105.61426842500005,77.30170319200009],[105.57007897200018,77.29409414300014],[105.47828209700006,77.28847890800013],[105.43539472700016,77.27440013200011],[105.51880944100004,77.27252838700004],[105.5384220710001,77.26699453300002],[105.50049889400006,77.25079987200017],[105.45582116000004,77.24046458500004],[105.31959069100006,77.23053620000015],[105.29867597700009,77.22614166900017],[105.23747806100008,77.20600006700012],[105.19581139400012,77.19867584800012],[105.01148522200006,77.19253164300015],[104.87867272200016,77.16742584800006],[104.78419030000006,77.17397695500013],[104.60767662900011,77.15965403900007],[104.52588951900006,77.13690827000012],[104.48340905000006,77.12978750200007],[104.34571373800004,77.13548411700005],[104.16358483200004,77.10797760600012],[104.11963951900006,77.09564850500009],[104.14193769600008,77.08885325700005],[104.16667728000007,77.08917877800017],[104.21583092500006,77.09564850500009],[104.29769941500015,77.08881256700006],[104.77198326900006,77.12173086100012],[104.77808678500017,77.10993073100015],[104.82374108200011,77.096828518],[104.87256920700011,77.09072500200001],[105.06674238400014,77.08881256700006],[105.08806399800002,77.09247467700011],[105.14747155000006,77.10993073100015],[105.19450931100019,77.11123281500006],[105.3406681650001,77.08881256700006],[105.61280358200011,77.11465078300007],[105.79704837300008,77.11261627800015],[105.83863366000006,77.11701080900004],[105.881114129,77.12978750200007],[105.88640384200008,77.13426341400005],[105.88672936300011,77.13898346600014],[105.888438347,77.1425641950001],[105.89820397200006,77.14411041900014],[105.92847741000006,77.14411041900014],[105.93482506600017,77.14321523600016],[105.93995201900006,77.14069245000015],[105.94304446700008,77.13621653899999],[105.9432072270001,77.12978750200007],[105.93482506600017,77.12604401200004],[105.887950066,77.09564850500009],[105.85108483200005,77.08502838700004],[105.76677493600008,77.07705312700007],[105.73707116000006,77.06146881700009],[105.76254316500014,77.05438873900012],[105.77466881600004,77.04913971600004],[105.78492272200016,77.0410016950001],[105.70980879000015,77.03302643400015],[105.4866642590001,77.034572658],[105.43539472700016,77.00006745000009],[105.45053144600016,76.98358795800003],[105.490489129,76.98456452000009],[105.53679446700019,76.9909528670001],[105.57105553500017,76.99079010600003],[105.61646569100006,76.98114655200008],[105.66138756600006,76.98053620000012],[105.79948978000019,76.99640534100014],[105.8953556650001,76.99506256700015],[105.9432072270001,77.00006745000009],[106.16472415500007,77.05621979400007],[106.20557701900012,77.06195709800006],[106.29200280000012,77.06146881700009],[106.3896590500001,77.041978257],[106.46550540500007,77.03961823100003],[106.49057050900015,77.03424713700018],[106.50001061300006,77.02163320500001],[106.53785240999999,77.01561107],[106.61451256600016,77.01365794500003],[106.63005618600019,77.01154205900004],[106.66480553500006,77.00218333500003],[106.75538170700004,77.00116608300014],[106.778575066,77.00629303600006],[106.75114993600008,77.01654694200009],[106.71631920700011,77.02366771000014],[106.64893639400012,77.02741120000015],[106.64893639400012,77.03424713700018],[106.73308353000002,77.03058502800003],[106.75879967500006,77.03424713700018],[106.8071395190001,77.05247630400008],[106.82984459700006,77.05467357000005],[106.98975670700005,77.032945054],[107.01140384200002,77.02741120000015],[106.9704695970001,77.01365794500003],[107.00294030000006,77.003119208],[107.08228600400005,77.016099351],[107.11841881600016,77.01707591400007],[107.15984134200008,77.01312897300006],[107.285817905,77.02057526200005],[107.27458743600013,77.01447174700014],[107.26270592500006,77.009955145],[107.25049889400012,77.00702545800009],[107.23796634200019,77.00629303600006],[107.2561141290001,76.99310944199999],[107.2845158210001,76.98289622600008],[107.34099368600008,76.97280508000001],[107.32667076900006,76.9658877620001],[107.34620201900006,76.95498281500012],[107.3719181650001,76.94627513200014],[107.47486412900015,76.9320742860001],[107.49976647199999,76.92450592700008],[107.49830162900005,76.91474030200014],[107.4695744150001,76.90643952000006],[107.26587975400005,76.89081452000009],[107.28695722700016,76.8832868510001],[107.33236738400015,76.87543366100014],[107.35466556100019,76.86908600500003],[107.31446373800011,76.86225006700009],[107.22535241,76.857855536],[107.19019616000006,76.84235260600009],[107.26335696700012,76.84235260600009],[107.285817905,76.83559804900015],[107.21452884200014,76.80687083500003],[107.19019616000006,76.80145905200006],[107.16334069100017,76.80288320500011],[107.10621178500017,76.81244538000011],[107.08033287900015,76.80829498900009],[107.06462649800018,76.79877350500009],[107.05909264400012,76.78864166900003],[107.059825066,76.76361725500011],[107.04664147200018,76.75556061400009],[107.01661217500012,76.74750397300015],[106.977305535,76.73940664300004],[106.95362389400012,76.72052643400016],[106.92554772200018,76.71279531500006],[106.84058678500017,76.71405670800009],[106.804453972,76.723089911],[106.78565514400005,76.72508372600014],[106.72413170700011,76.71889883000016],[106.78923587300002,76.685003973],[106.79908287900015,76.67450592700014],[106.789805535,76.66103750200016],[106.73829186300006,76.63007233300011],[106.72738691500015,76.62030670800009],[106.71265709700018,76.61298248900009],[106.68295332100016,76.60219961100007],[106.6810001960001,76.59870026200018],[106.68327884200008,76.59418366100012],[106.6834416020001,76.59023672100012],[106.67595462300008,76.58856842700011],[106.65577233200005,76.5873884140001],[106.64714603000002,76.58441803600009],[106.62476647200012,76.56683991100006],[106.61231530000006,76.55963776200012],[106.59831790500002,76.55605703300012],[106.57960045700005,76.55499909100008],[106.56169681100019,76.55683014500006],[106.54639733200005,76.56268952000003],[106.54102623800006,76.57314687700008],[106.55274498800004,76.58856842700011],[106.51075280000006,76.60028717700011],[106.45167076900005,76.60919830900015],[106.3966577480002,76.60431549700017],[106.36703535200016,76.574896552],[106.3807072270001,76.574896552],[106.3772892590001,76.55438873900012],[106.40015709700018,76.534613348],[106.38892662900017,76.52020905200014],[106.41700280000006,76.50922272300008],[106.44874108200004,76.50397370000009],[106.70533287900017,76.49872467700011],[106.73650149800002,76.49363841400002],[106.7920028000001,76.47199127800009],[106.81983483200005,76.46893952],[106.84750410200016,76.47345612200014],[106.87427819100017,76.48615143400004],[106.87728925900015,76.50348541900011],[106.91285241000006,76.50897858300013],[107.03638756600006,76.507025458],[107.27003014400006,76.534613348],[107.59156334700018,76.50503164300015],[107.84546959700012,76.53481679900007],[107.8821720710001,76.54755280200011],[107.89568118600019,76.55499909100008],[107.97437584700018,76.6132266300001],[107.984629754,76.62270742400013],[107.99097741000006,76.64862702000012],[107.96827233200011,76.6595726580001],[107.90211022200018,76.67108795800011],[107.93677819100017,76.69863515800016],[107.94117272200005,76.71230703300009],[107.91627037900005,76.71889883000016],[107.94605553500004,76.73729075700011],[108.00391686300006,76.74017975500014],[108.11158287900005,76.73261139500009],[108.2249455090001,76.73940664300004],[108.32048587300008,76.72508372600014],[108.30241946700006,76.71678294500005],[108.28630618600019,76.70526764500012],[108.4992781910001,76.72695547100001],[108.68482506600006,76.71645742400013],[109.04883873800011,76.74017975500014],[109.19849694100017,76.73090241100009],[109.33253014400006,76.758490302],[109.39779707100016,76.75999583500005],[109.40349368600002,76.75641510600018],[109.4065861340001,76.7493350280001],[109.4140731130001,76.74396393400015],[109.4231063160001,76.74054596600014],[109.43091881600017,76.73940664300004],[109.60523522200006,76.73940664300004],[109.61695397200005,76.73725006700012],[109.62378991000017,76.73248932500012],[109.6292423840001,76.72711823100015],[109.636485222,76.72345612200012],[109.7522892590001,76.71206289300014],[109.83464603000007,76.71881745000016],[109.85531660200016,76.71548086100016],[109.88111412899998,76.70661041900011],[109.95834394600016,76.70526764500012],[110.0345158210001,76.69196198100008],[110.0613712900001,76.69159577000009],[110.35857181100019,76.75568268400015],[110.56666100400017,76.76422760600018],[110.61850019600016,76.75897858299999],[110.63062584700006,76.73940664300004],[110.66472415500007,76.7295596370001],[110.70484459700016,76.72650788],[110.82081139400006,76.73411692900014],[110.9060978520001,76.73012929900007],[110.94467207100016,76.73940664300004],[110.93230228000002,76.74017975500014],[110.9199324880001,76.74298737200009],[110.90821373800011,76.74738190300017],[110.89698326900012,76.75307851800015],[110.94556725400017,76.76504140800006],[111.01832116000006,76.76825592700014],[111.09034264400006,76.76227448100003],[111.13705488400015,76.7468122420001],[111.11866295700011,76.74494049700002],[111.09831790500013,76.73948802300002],[111.08033287900017,76.73078034100011],[111.06885826900006,76.71889883000016],[111.09083092500006,76.70880768400009],[111.10474694100004,76.692816473],[111.11939537900005,76.68211497600008],[111.14389082100014,76.68789297100012],[111.1779077480002,76.70246002800015],[111.21045983200005,76.7088890650001],[111.55543053500004,76.68414948100009],[111.53785241000011,76.68024323100012],[111.50196373800011,76.67780182500017],[111.48715254000015,76.67108795800011],[111.50171959700006,76.66547272300012],[111.53101647200018,76.66014232000008],[111.54175866000011,76.65062083500004],[111.51872806100002,76.65058014500006],[111.492442254,76.64679596600014],[111.46680748800006,76.63979726800007],[111.44556725400017,76.63007233300011],[111.48878014400005,76.61041901200015],[111.66504967500006,76.62103913000011],[111.826426629,76.59638092700011],[112.15796959700016,76.49046458500011],[112.19906660200016,76.47186920800011],[111.87159264400006,76.36139557500009],[111.8291121750001,76.34149811399999],[111.86117597700016,76.35097890800002],[111.96371504000014,76.37824127800009],[111.99854576900006,76.37864817900011],[112.0157983730002,76.38149648600013],[112.06373131600012,76.40228913000014],[112.17855879000004,76.43085358300011],[112.232106967,76.45058828300016],[112.2568465500001,76.45441315300016],[112.28842207099999,76.45136139500009],[112.67090905000005,76.36310455900009],[112.72022545700005,76.33771393400018],[112.74781334700016,76.33527252800006],[112.74781334700016,76.32843659100003],[112.65837649800007,76.32225169500005],[112.712575717,76.30182526200018],[112.73161868600002,76.28900788000006],[112.7404077480002,76.26703522300012],[112.6889754570001,76.25389232],[112.67269941500014,76.2459170590001],[112.67758222700004,76.2425804710001],[112.686778191,76.23468659100003],[112.69263756600006,76.23163483300011],[112.66879316500015,76.22662995000009],[112.61443118600008,76.22235748900009],[112.59009850400015,76.22540924700017],[112.54786217500022,76.24237702000015],[112.52670332100016,76.24599844],[112.50074303500017,76.23908112200012],[112.54688561300006,76.22601959800012],[112.58936608200023,76.20652903900005],[112.63347415500007,76.19269440300003],[112.73511803500004,76.20172760600015],[112.77963300900004,76.19196198100012],[112.82016035200004,76.17112864800013],[112.85767662900017,76.14350006700012],[112.78687584700006,76.08624909100017],[112.761485222,76.07526276200011],[112.66578209700018,76.054144598],[112.59180748800011,76.05467357],[112.56967207100004,76.04730866100009],[112.60157311300023,76.041205145],[112.96216881600017,76.06509023600006],[113.01734459699999,76.080552476],[113.02865644599997,76.08616771],[113.03516686300004,76.09593333500014],[113.04200280000012,76.11562734600007],[113.02751712300008,76.12299225500009],[112.99903405000023,76.13300202000015],[112.98731530000023,76.14350006700012],[113.05933678500017,76.16376373900012],[113.1474715500001,76.16254303600012],[113.23422285200004,76.14484284100011],[113.30274498800016,76.11562734600007],[113.28598066500015,76.12970612200012],[113.26270592500012,76.1449242210001],[113.25611412900004,76.15924713700018],[113.28907311300021,76.170843817],[113.23511803499999,76.17621491100006],[113.13266035200004,76.19961172100012],[113.02507571700014,76.210150458],[112.97169030000005,76.22370026200015],[112.960622592,76.23021067900005],[112.94459069100006,76.24998607],[112.93213951900022,76.25958893400015],[113.13062584700018,76.253363348],[113.216075066,76.266791083],[113.25928795700011,76.26642487200017],[113.29590905000023,76.2459170590001],[113.2788192070001,76.23834870000017],[113.22689863400002,76.22540924700017],[113.24138431100008,76.21491120000009],[113.24740644600016,76.21238841399999],[113.2412215500001,76.204982815],[113.31853274800018,76.21527741100012],[113.35889733200004,76.21133047100012],[113.45972741000006,76.14838288],[113.46355228000007,76.13263580900002],[113.449473504,76.11615631700015],[113.44263756600017,76.10276927300005],[113.44019616000006,76.0873884140001],[113.43978925900015,76.06468333500005],[113.45281009200002,76.04132721600017],[113.48340905000023,76.033880927],[113.5195418630001,76.0307477890001],[113.54908287900005,76.02065664300015],[113.51221764400006,75.99567291900003],[113.50074303500006,75.9858259140001],[113.51498457100016,75.9858259140001],[113.52914472700016,75.98330312700008],[113.54297936300017,75.97858307500009],[113.55591881600017,75.97223541900014],[113.531993035,75.95404694200005],[113.50196373800023,75.95058828300007],[113.46973717500012,75.95091380399998],[113.43978925900015,75.94428131700012],[113.45980879000003,75.93846263200008],[113.50114993600006,75.93634674700014],[113.52116946700018,75.930609442],[113.53174889400017,75.92218659100013],[113.53907311300006,75.91217682500015],[113.54769941500015,75.90289948100009],[113.56275475400017,75.89647044499999],[113.55372155000005,75.89069245000003],[113.550547722,75.88760000200013],[113.55176842500023,75.88373444200015],[113.55591881600017,75.87596263200014],[113.51978600400005,75.864935614],[113.49984785200016,75.86196523600007],[113.48080488400015,75.86237213700018],[113.48080488400015,75.85553620000015],[113.52035566499998,75.85468170800006],[113.61654707100003,75.86351146000011],[113.652110222,75.87596263200014],[113.63575280000012,75.88287995000003],[113.62696373800023,75.89435455900018],[113.61744225400005,75.92377350500009],[113.6386824880001,75.92332591399999],[113.70337975400005,75.930609442],[113.73951256600016,75.92035553600006],[113.7597762380001,75.91815827000006],[113.78093509200019,75.93927643400018],[113.80860436300011,75.93646881700012],[113.83863366000004,75.924953518],[113.85816491000006,75.91079336100006],[113.828379754,75.89496491100013],[113.89014733200023,75.85398997600011],[113.8715926440001,75.82510000200001],[113.83716881600017,75.79751211100009],[113.83814537900015,75.77826569200015],[113.83716881600017,75.77358633000013],[113.82195071700019,75.75861237200009],[113.76514733200023,75.72235748900009],[113.75879967500012,75.71352773600013],[113.75831139400023,75.70600006700005],[113.75945071700006,75.69977448100012],[113.7579858730002,75.69476959800006],[113.74952233200005,75.68870677300008],[113.727305535,75.67719147300011],[113.72046959700018,75.67055898600006],[113.71802819100006,75.65997955900012],[113.72046959700018,75.61933014500012],[113.69166100400017,75.59349192900011],[113.57211347700004,75.56574127800002],[113.55591881600017,75.54022858300014],[113.42611738400004,75.54022858300014],[113.44629967500022,75.55817291900009],[113.53484134200008,75.5947940120001],[113.58155358200023,75.62140534100014],[113.60108483200011,75.63666413000011],[113.61744225400005,75.65623607],[113.26124108200005,75.69354889500015],[113.06755618600019,75.6834984400001],[113.10181725400015,75.689927476],[113.12891686300011,75.69432200700008],[113.13754316499998,75.71149323100009],[113.12330162900017,75.72064850500009],[112.84119713650013,75.78597646699997],[112.55909264400023,75.85130442900005],[112.36491946700019,75.85643138200005],[112.33692467500006,75.848089911],[112.35547936300006,75.84613678600014],[112.39136803500017,75.83661530200014],[112.42750084699999,75.83307526200015],[112.44385826900022,75.82925039300015],[112.45948326900012,75.82294342700011],[112.47291100399998,75.81452057500015],[112.47982832099999,75.806586005],[112.49187259200019,75.787543036],[112.50074303500017,75.77973053600003],[112.51775149800012,75.77374909100008],[112.59945722700003,75.7663434920001],[112.64291425900015,75.77358633000013],[112.66537519600016,75.77167389500006],[112.76002037900015,75.74677155200013],[112.80323326900022,75.74380117400013],[112.82292728000019,75.73883698100018],[112.83497155000012,75.731390692],[112.8449813160001,75.72272370000009],[112.85580488399997,75.71523672100012],[112.87061608200005,75.71149323100009],[112.85767662900017,75.70465729400007],[112.86101321700019,75.70400625200013],[112.86345462300014,75.70392487200014],[112.86459394600016,75.70270416900003],[112.86451256600017,75.6984723980001],[112.8510848320001,75.69529857000005],[112.82520592500005,75.68622467700006],[112.80974368600006,75.68793366100006],[112.79363040500019,75.69537995000003],[112.76880944100006,75.702826239],[112.74781334700016,75.6984723980001],[112.75879967500023,75.69537995000003],[112.77125084700006,75.69537995000003],[112.788340691,75.69183991100014],[112.8074650400001,75.68455638200014],[112.82292728000019,75.67055898600006],[112.86150149800008,75.657904364],[112.87810306100002,75.646673895],[112.87810306100002,75.62897370000007],[112.85889733200005,75.61542389500012],[112.80339603,75.60447825700008],[112.78882897200018,75.58860911700005],[112.81364993600008,75.55731842700008],[112.882090691,75.5460472680001],[113.00375410200016,75.54767487200012],[113.03549238400004,75.55304596600017],[113.02930748800023,75.56537506700012],[112.99350019600004,75.58860911700005],[112.99301191500015,75.60984935100011],[113.01628665500007,75.618597723],[113.20704186300011,75.65009186400003],[113.26742597700003,75.65110911699999],[113.295176629,75.644964911],[113.29590905000023,75.62897370000007],[113.30307050899998,75.62287018400012],[113.30941816500004,75.61591217700011],[113.291270379,75.61005280200008],[113.28101647200018,75.59926992400005],[113.27116946700008,75.58637116100006],[113.25489342500023,75.57436758000013],[113.29053795700011,75.55052317900005],[113.33676191499998,75.5351016300001],[113.53638756600017,75.50657786700013],[113.58912194100017,75.5070661480001],[113.63843834700016,75.51972077000009],[113.63770592500023,75.52407461100007],[113.66920006600004,75.50641510600015],[113.67945397200018,75.49921295800011],[113.68384850400015,75.49266185100004],[113.68848717500006,75.483343817],[113.69467207100016,75.47492096600014],[113.70337975400005,75.47134023600007],[113.70818118600002,75.46344635600009],[113.719493035,75.42462799700009],[113.72046959700018,75.409857489],[113.68279056100017,75.41933828300002],[113.63428795700023,75.42169830900015],[113.58611087300008,75.41730377800017],[113.54908287900005,75.40643952],[113.53565514400023,75.39012278899997],[113.5704858730002,75.38544342700006],[113.65365644600016,75.38434479400011],[113.67066491,75.36888255399998],[113.66041100400017,75.34943268400008],[113.62110436300006,75.31736888200011],[113.61646569100006,75.30914948100012],[113.61622155000012,75.30023834800006],[113.61459394599999,75.29181549700003],[113.60523522200006,75.28497955900009],[113.55128014400023,75.26935455900012],[113.36304772200012,75.1855329450001],[113.14568118600019,75.11810944200012],[113.11426842500006,75.09829336100002],[113.0852970710001,75.08698151200004],[113.01156660200014,75.0676130230001],[113.01417076900023,75.0541852890001],[112.9931746750001,75.03949616100012],[112.87964928500017,74.9929059920001],[112.51384524800002,74.92153554900001],[112.43921959700012,74.92157623899999],[112.14682050900015,74.878363348],[112.09197024800008,74.85700104400014],[112.09669030000018,74.82762278900005],[112.05648847700016,74.78949616100009],[112.03988691500003,74.7814802100001],[111.98170006600017,74.77704498900006],[111.9534611340001,74.77179596600017],[111.94516035200016,74.758734442],[111.92497806100019,74.75047435100011],[111.91700280000006,74.74506256700006],[111.91114342500012,74.73826732000013],[111.93213951900006,74.73676178600009],[111.9526473320001,74.73143138200011],[111.92896569100017,74.72028229400009],[111.86793053499999,74.70066966400013],[111.81576582100008,74.69196198100005],[111.77230879000015,74.66852448100015],[111.74382571700002,74.66315338700012],[111.46583092500005,74.69733307500007],[111.40284264400006,74.69110748900015],[111.11670983200005,74.60789622600002],[111.0841577480002,74.60407135600018],[111.01775149800008,74.60407135600018],[110.98617597700016,74.59422435100008],[111.03394616,74.58559804900015],[111.0520939460001,74.57916901200007],[111.03980553500017,74.5689151060001],[110.96021569100017,74.54848867400015],[110.81495201900012,74.53900788000014],[110.74512780000006,74.51581452],[110.55713951900005,74.48110586100013],[110.49968509200008,74.47821686400003],[110.38819420700005,74.49542877800003],[110.33155358200004,74.49616120000013],[110.28052819100017,74.47821686400003],[110.35230553500017,74.471380927],[110.35808353000002,74.46832916900009],[110.37859134200008,74.4545352230001],[110.38982181100019,74.45087311400015],[110.36255944100017,74.41828034100008],[110.3133244150001,74.39940013200004],[110.21208743600019,74.37238190300009],[109.99952233200011,74.373724677],[109.96517988400015,74.351263739],[109.95118248800011,74.3369815120001],[109.91944420700005,74.33038971600001],[109.83423912900015,74.3256696640001],[109.82129967500006,74.322699286],[109.80762780000012,74.317084052],[109.79761803500006,74.31439850500011],[109.79371178500004,74.31818268400006],[109.7898869150001,74.32412344000006],[109.78028405000005,74.32802969000006],[109.697032097,74.31903717700006],[109.64323978000007,74.326646226],[109.58985436300011,74.31509023600016],[109.56120853000007,74.31370677299999],[109.64234459700018,74.28921133000016],[109.72771243600019,74.28656647300006],[109.94263756600017,74.30776601800015],[109.96827233200005,74.30483633000011],[109.97950280000006,74.296332098],[109.97706139400012,74.28827545800006],[109.93043053500011,74.22776927300008],[109.91285241000016,74.21161530200011],[109.89014733200011,74.19700755399998],[109.79688561300011,74.16168854400014],[109.598887566,74.11969635600016],[109.48145592500012,74.07721588700012],[109.17953535200016,74.05744049700009],[108.99610436300011,74.01557038000009],[108.95386803500011,73.99754466400005],[108.92066491000016,73.97418854400014],[108.90105228000013,73.96491120000009],[108.82227623800006,73.95551178600009],[108.76482181100008,73.93496328300013],[108.68360436300006,73.89252350500006],[108.62427819100016,73.8725039730001],[108.60670006600004,73.86383698100009],[108.5913192070001,73.851304429],[108.5652775400001,73.82046133000013],[108.55079186300006,73.81183502800003],[108.52588951900006,73.80658600500014],[108.50196373800004,73.80662669500013],[108.43775475400005,73.82025788000009],[108.45630944100006,73.80951569200006],[108.4788517590001,73.78412506700015],[108.49170983200004,73.77252838700012],[108.46013431100008,73.768744208],[108.39795983200004,73.75433991100012],[108.06657962300002,73.63532135600018],[108.07129967500006,73.64362213700015],[108.07764733200005,73.65078359600001],[108.08545983200005,73.65692780200008],[108.09449303500017,73.66266510600015],[108.03679446700002,73.67723216399999],[107.96485436300006,73.67039622600004],[107.77686608200005,73.616644598],[107.74870853000019,73.61204661700008],[107.65984134200008,73.62518952000012],[107.37452233200011,73.63532135600018],[107.35938561300011,73.63320547100007],[107.33301842500012,73.62376536700005],[107.32016035200016,73.62164948100003],[107.17286217500006,73.62164948100003],[107.1468205090001,73.61766185100007],[107.1316837900001,73.607123114],[107.101328972,73.5738792990001],[107.11931399800008,73.573431708],[107.13721764400012,73.56932200700005],[107.15430748800006,73.56240469000015],[107.16968834700018,73.55341217700011],[107.13355553500016,73.53017812700001],[106.93588300900008,73.470607815],[106.91065514400006,73.45482005400005],[106.89079837300002,73.44830963700015],[106.88160241000017,73.44354889500006],[106.87647545700004,73.43829987200017],[106.87126712300008,73.42861562700001],[106.83130944099999,73.374741929],[106.81153405000006,73.35431549700012],[106.78541100400005,73.340521552],[106.64795983200005,73.30670807500002],[106.60043379000014,73.306341864],[106.52442467500012,73.32347239800005],[106.49805748800011,73.32623932500009],[106.39503014400006,73.31317780200011],[106.2324324880001,73.32282135600009],[106.06275475400015,73.27301666900003],[106.04558353000007,73.2548281920001],[106.04664147200018,73.24453359600001],[106.05128014400012,73.22406647300015],[106.05250084700006,73.21385325700011],[106.04810631600004,73.2026227890001],[106.02686608200005,73.18219635600003],[106.00928795700005,73.1550967470001],[105.87370853000013,73.11456940300009],[105.85328209700005,73.09479401200015],[105.850840691,73.07477448100009],[105.85132897200018,73.05410390800007],[105.83961022199999,73.03266022300014],[105.84669030000005,73.01447174700014],[105.83383222700014,73.00226471600008],[105.7514754570001,72.97650788000014],[105.67741946700002,72.9355329450001],[105.65064537900005,72.91107819200009],[105.6279403000001,72.90167877800015],[105.54802493600017,72.88117096600011],[105.52491295700004,72.87124258000001],[105.35417728000007,72.83144765800002],[105.29004967500005,72.80027903900013],[105.06674238400014,72.78558991100012],[105.07300866,72.76508209800005],[105.11784915500006,72.77513255400005],[105.48259524800002,72.76813385600015],[105.51726321700019,72.77627187700007],[105.58521569100017,72.80060455900006],[105.62330162900017,72.80939362200012],[105.66236412900005,72.81232330900004],[105.67628014400012,72.81537506700012],[105.75114993600019,72.85708242400007],[105.7874455090001,72.86994049700009],[105.8250431650001,72.87824127800016],[105.93067467500012,72.8885765650001],[105.94947350400017,72.89545319199999],[105.95818118600006,72.90216705900004],[105.97388756600006,72.92584870000015],[106.00228925900015,72.94696686400009],[106.03636787600013,72.95252154100005],[106.1178712820001,72.94115373500013],[106.13704892100012,72.91085353800007],[106.22998540300014,72.89444713400017],[106.28759517,72.89134885500015],[106.40912786600009,72.87161699500008],[106.55844228600019,72.867111911],[106.61620880000007,72.85547644300006],[106.65713469900007,72.83195296999999],[106.82329401400008,72.82561377700011],[107.00604545000007,72.84449125800002],[107.10326271700013,72.85640581500014],[107.05147643000006,72.87662423200014],[106.97107975700013,72.88328339200008],[106.86218370700007,72.87803858000011],[106.75861300300019,72.88795327700002],[106.62049847900019,72.89602559100003],[106.49854220400017,72.92770339300013],[106.32445121000009,72.95570332800004],[106.2546397670001,72.967199506],[106.22380618600017,72.97736237200006],[106.21656334700018,72.98574453300002],[106.21208743600019,73.00079987200003],[106.19711347700016,73.02106354400003],[106.18930097700009,73.03900788000009],[106.1858830090001,73.05768463700015],[106.1896264980002,73.07294342700011],[106.17676842500006,73.08161041900003],[106.17562910200014,73.09438711100016],[106.1814884770001,73.1084658870001],[106.1896264980002,73.12140534100011],[106.20215905000012,73.13605377800012],[106.21680748800011,73.14411041900014],[106.23552493600019,73.147406317],[106.2605900400001,73.14809804900013],[106.282481316,73.15322500200013],[106.29957116000017,73.16518789300007],[106.31544030000005,73.17902252800017],[106.33301842500012,73.18964264500003],[106.35987389400012,73.19428131700015],[106.7755639980002,73.14101797100007],[106.83326256600006,73.14850495000003],[106.89991295700005,73.14468008000001],[107.03589928500017,73.18219635600003],[107.3274031910001,73.15839264500015],[107.49293053500016,73.17308177300005],[107.72234134200018,73.16852448100009],[107.83432050900008,73.182806708],[107.96607506600017,73.23102448100003],[108.0916447270001,73.24640534100008],[108.12183678500006,73.24428945500007],[108.25228925900015,73.22085195500009],[108.31666100400017,73.22158437700004],[108.3748478520001,73.2324079450001],[108.39616946700006,73.25787995000003],[108.36524498800011,73.2756208350001],[108.23894290500006,73.274359442],[108.19752037900005,73.27903880400011],[108.24122155000012,73.30072663000001],[108.39332116,73.31732819200006],[108.5389103520001,73.31069570500001],[108.68482506600006,73.33982982000005],[108.92302493600002,73.35040924700012],[109.06885826900005,73.37372467700011],[109.22120201900012,73.387111721],[109.25269616000006,73.40253327000015],[109.2548934250001,73.42023346600014],[109.24040774800008,73.42885976800015],[109.219981316,73.43455638200014],[109.2049259770001,73.44354889500006],[109.19939212300008,73.460638739],[109.20923912900011,73.46881745000012],[109.22771243600013,73.46991608300004],[109.34888756600017,73.43610260600018],[109.37810306100013,73.419623114],[109.39616946700002,73.41364166900017],[109.41724694100006,73.41559479400003],[109.43490644600016,73.42670319200006],[109.43913821700019,73.44049713700015],[109.43083743600017,73.45221588700007],[109.41032962300008,73.45718008000001],[109.38851972700009,73.46002838700004],[109.33464603000006,73.48444245000009],[109.28728274800002,73.49848053600014],[109.23829186300004,73.50495026200004],[109.19597415500007,73.50454336100013],[109.18018639400012,73.5101992860001],[109.18433678500017,73.52545807500007],[109.18043053500017,73.52863190300015],[109.17017662900005,73.53969961100002],[109.193614129,73.55166250200011],[109.22120201900012,73.54511139500013],[109.25001061300006,73.532416083],[109.27662194100012,73.52545807500007],[109.30543053500004,73.52277252800003],[109.36459394600014,73.50580475500006],[109.44996178500017,73.47113678600005],[109.5120548840001,73.45750560100011],[109.57634524800002,73.45123932500016],[109.71387780000012,73.45258209800006],[109.85523522200018,73.4714216170001],[110.01042728000017,73.50922272300005],[110.10377037900017,73.51605866100009],[110.1316837900001,73.52594635600009],[110.15699303500017,73.54588450700008],[110.1424259770001,73.55621979400009],[110.12549889400006,73.560003973],[110.08936608200011,73.55955638200011],[110.12427819100006,73.58030833500003],[110.1668400400001,73.58787669500005],[110.2531844410001,73.586859442],[110.42457116000006,73.60736725500014],[110.39722741000017,73.61481354400003],[110.42261803500017,73.63979726800012],[110.4705509770001,73.64935944200012],[110.56316165500007,73.64891185100014],[110.89861087300002,73.68585846600008],[110.92481530000006,73.70416901200002],[110.91871178500017,73.71531810100008],[110.88445071700019,73.7259789080001],[110.87647545700005,73.73460521],[110.88135826900012,73.74555084800006],[110.89283287900017,73.75503164300007],[110.9065861340001,73.76211172100012],[110.91797936300006,73.76561107000012],[110.87777754000014,73.76784902600008],[110.7202254570001,73.77659739799998],[110.692149285,73.78400299700016],[110.66374759200018,73.78725820500001],[110.28687584700012,73.70575592700007],[109.79957116000017,73.70506419500013],[109.7522892590001,73.68309153900013],[109.76238040500017,73.68305084800012],[109.77165774800001,73.680609442],[109.7800399100001,73.67584870000009],[109.78711998800006,73.66885000200001],[109.73747806100006,73.66168854400017],[109.6736759770001,73.67816803600006],[109.61280358200011,73.70807526200004],[109.55551191500015,73.75519440300003],[109.54135175900014,73.76410553600009],[109.5310978520001,73.7752953150001],[109.52702884200008,73.79608795800009],[109.53565514400006,73.82123444200015],[109.55762780000005,73.8339704450001],[109.71949303499999,73.85358307500015],[109.81983483200011,73.87726471600008],[109.84253991000006,73.89191315300009],[109.8577580090001,73.9142520200001],[109.87094160200014,73.93903229400009],[109.88672936300011,73.96088288000014],[109.9217228520001,73.98383209800011],[109.97038821700006,74.00234609600012],[110.0214949880001,74.01447174700003],[110.30005944100004,74.01911041900014],[110.58082116000016,73.99140045800009],[110.71192467500006,73.95746491100012],[110.78931725400005,73.95514557500015],[110.81495201900012,73.95001862200014],[110.90430748800011,73.91583893400015],[110.95899498800006,73.90863678600012],[111.00782311300006,73.91266510600009],[111.05469811300011,73.92682526200012],[111.10303795700011,73.95001862200014],[111.08521569100006,73.964056708],[111.07227623800006,73.97134023600002],[111.067637566,73.97992584800012],[111.07569420700004,73.99843984600012],[111.09620201900012,74.01788971600014],[111.12623131600006,74.0304629580001],[111.15902754000014,74.03733958500014],[111.5364689460001,74.05117422100012],[111.56983483200011,74.04319896],[111.58220462300002,74.02570221600003],[111.56128991000017,74.00885651200004],[111.51905358200005,74.00446198100015],[111.44556725400017,74.00527578300014],[111.38160241000017,73.98822663000003],[111.35010826900006,73.98647695500001],[111.28663170700005,74.001695054],[111.2544051440001,74.00067780200011],[111.22339928500017,73.99258047100001],[111.19849694100004,73.9779320330001],[111.29517662900017,73.86912669500008],[111.43555748800006,73.81256745000013],[111.80372155000006,73.74420807500017],[112.14722741000017,73.70795319200006],[112.3718367850001,73.70530833500007],[112.48462975400011,73.72431061400009],[112.60857181100019,73.71979401200004],[112.71713300899998,73.7397321640001],[112.821462436,73.74681224199999],[112.92017662900011,73.77887604400014],[112.94532311300006,73.79047272300006],[112.95948326900012,73.80658600500014],[112.95801842500023,73.81329987200009],[112.94581139400017,73.84760163000006],[112.94092858200011,73.8530134140001],[112.93441816499997,73.85748932500015],[112.930918816,73.86294179900001],[112.93555748800023,73.87177155200006],[112.93685957100004,73.8768578150001],[112.93458092500023,73.8823102890001],[112.93002363400004,73.8867048200001],[112.91439863400004,73.89256419500005],[112.8842879570001,73.91229889500009],[112.87810306100002,73.9195824240001],[112.87061608200005,73.93378327],[112.85377037900015,73.94257233300009],[112.83513431100006,73.94928620000012],[112.82292728000019,73.95746491100012],[112.81999759200006,73.96588776200018],[112.818125847,73.97846100500006],[112.818614129,73.990912177],[112.82292728000019,73.99843984600012],[112.84693444100006,73.99453359600015],[112.94605553499999,73.94009023600013],[113.11150149800018,73.89215729400006],[113.13135826900012,73.8823102890001],[113.13843834700018,73.87604401200015],[113.1474715500001,73.86603424700009],[113.15544681100008,73.85468170800011],[113.15870201900012,73.84446849199999],[113.16521243600019,73.84617747599998],[113.27670332099997,73.7539737000001],[113.31185957100016,73.74054596600001],[113.39551842500006,73.68577708499998],[113.40577233200011,73.67625560100011],[113.41830488400004,73.657660223],[113.42790774800018,73.633978583],[113.43051191499997,73.60993073100015],[113.42269941499998,73.5906436220001],[113.40235436300011,73.580755927],[113.37086022200018,73.57583242400013],[113.31283613400002,73.5738792990001],[113.29265384200019,73.56976959800015],[113.27458743600008,73.55975983300006],[113.22632897200005,73.52488841400012],[113.1928817070001,73.48444245000009],[113.17847741,73.47553131700006],[113.14503014400022,73.46076080900015],[113.13135826900012,73.44969310100014],[113.14991295700021,73.44212474199999],[113.18783613400015,73.43329498900012],[113.20639082100014,73.42645905200011],[113.21908613400002,73.41893138200005],[113.22657311300011,73.4121768250001],[113.2412215500001,73.39508698100013],[113.27230879000003,73.37518952000006],[113.31006920700005,73.36505768400012],[113.41334069100016,73.35980866100012],[113.45834394600016,73.35162995000003],[113.49463951900023,73.33991120000003],[113.498301629,73.33588288000009],[113.49642988400015,73.32949453300013],[113.49301191500004,73.28978099200005],[113.49447675899998,73.27903880400011],[113.49773196700002,73.27057526200018],[113.50668379000015,73.25291575700008],[113.50806725400005,73.24428945500007],[113.50261478000019,73.22402578300016],[113.49341881600006,73.20840078300007],[113.486582879,73.19208405200006],[113.48707116,73.169826565],[113.494395379,73.15428294500002],[113.51644941500004,73.12295156500015],[113.52116946700018,73.10398997600014],[113.50342858200011,73.06915924700009],[113.47120201900006,73.030218817],[113.45525149800008,72.993109442],[113.48707116,72.96369049700012],[113.31153405000012,72.893703518],[113.26319420700011,72.88434479400016],[113.16358483200004,72.87592194200012],[113.11768639400006,72.86066315300015],[113.09717858200023,72.84080638200005],[113.10450280000022,72.821966864],[113.12875410200004,72.80451080900002],[113.15870201900012,72.78900788000011],[113.17042076900006,72.78034088700002],[113.17400149800008,72.770941473],[113.17237389400023,72.74835846600006],[113.17725670700011,72.73297760600009],[113.18921959700006,72.72190989800005],[113.2636824880001,72.68903229400017],[113.36817467500012,72.66547272300012],[113.44288170700023,72.65900299700003],[113.49724368600008,72.6452497420001],[113.7937931650001,72.6229515645],[114.09034264400012,72.60065338700012],[114.04216556100002,72.62067291900009],[113.71656334750006,72.6506411805001],[113.39096113400014,72.68060944200012],[113.23804772200006,72.73541901200004],[113.22510826900023,72.74457428600012],[113.21583092500006,72.77558014500012],[113.20573978000019,72.7835960960001],[113.19336998800006,72.78912995000009],[113.18262780000023,72.79547760600002],[113.15821373800011,72.82269928600012],[113.15967858200005,72.83795807500009],[113.18043053500016,72.84906647300012],[113.25766035199999,72.87881094000014],[113.35352623800011,72.89126211100006],[113.516856316,72.95294830900009],[113.54224694100004,72.97736237200006],[113.51921634200008,73.01703522300006],[113.53093509200008,73.04840729400009],[113.60059655000022,73.10398997600014],[113.59913170700004,73.127875067],[113.52930748800021,73.18268463700004],[113.53174889400017,73.21385325700011],[113.53630618600017,73.22060781500015],[113.54249108200005,73.23627350500011],[113.54908287900005,73.24428945500007],[113.56234785200009,73.25340403900007],[113.67261803500017,73.29266998900005],[113.69483483200023,73.30951569200006],[113.70818118600002,73.31732819200006],[113.72413170700021,73.32062409100011],[113.85254967500012,73.31411367400001],[113.92676842500023,73.33124420800014],[114.00025475400004,73.33445872600002],[114.03581790500019,73.34731679900013],[113.99024498800021,73.36054108300006],[113.84359785199997,73.34731679900013],[113.79737389400012,73.35089752800009],[113.77507571700008,73.356146552],[113.69516035200014,73.38662344000012],[113.64226321700019,73.39435455900004],[113.60352623800023,73.40753815300009],[113.535411004,73.43984609600001],[113.51596113400004,73.45624420800011],[113.48585045700011,73.4947777360001],[113.46656334700005,73.50495026200004],[113.49366295700005,73.51064687700013],[113.68262780000023,73.52204010600009],[113.91504967500023,73.535834052],[114.10914147200006,73.59955475500006],[114.391897006,73.59607575100016],[114.67465254000015,73.59259674700014],[114.73218834700005,73.60346100500006],[114.85352623800004,73.60887278900002],[115.11158287900005,73.67511627800015],[115.41309655000006,73.710394598],[115.87476647200005,73.68935781500005],[116.17286217500025,73.67572663000011],[116.60287519600004,73.67479075700012],[117.05982506600016,73.61522044500013],[117.4438582690001,73.58877187700013],[117.735118035,73.58209870000009],[117.91358483200011,73.59601471600017],[118.18189537850016,73.59239329650016],[118.4502059250001,73.58877187700013],[118.79053795700017,73.55597565300002],[118.89771569100006,73.53046295800014],[118.99756920700023,73.49135976800008],[118.94776451900005,73.46588776200018],[118.88257897200005,73.45189036700013],[118.81519616000007,73.44953034100017],[118.75896243600006,73.458929755],[118.73796634200012,73.45994700700005],[118.70655358200011,73.44391510600015],[118.68311608200011,73.44513580900009],[118.63917076900006,73.45319245000003],[118.62631269600017,73.45718008000001],[118.61939537900015,73.46210358300004],[118.6067000660001,73.475775458],[118.59937584700018,73.48102448100018],[118.57618248800016,73.48627350500004],[118.48951256599999,73.48444245000009],[118.46713300899997,73.47809479400014],[118.43311608200005,73.44993724199998],[118.41163170700023,73.44354889500006],[118.39429772200006,73.440415757],[118.37183678500004,73.43170807500007],[118.35287519600004,73.41876862200009],[118.34644616000004,73.40253327000015],[118.358571811,73.38857656500006],[118.38298587300008,73.379787502],[118.40967858200011,73.37539297100012],[118.42839603000006,73.37466054900001],[118.41602623800021,73.36139557500015],[118.37305748800004,73.34023672100005],[118.37061608200023,73.32998281500012],[118.37940514400012,73.314154364],[118.37208092500012,73.30438873900006],[118.35971113400014,73.29547760600003],[118.35328209700006,73.28241608300014],[118.35914147200016,73.278265692],[118.39421634200008,73.23802317900011],[118.40552819100006,73.23358795800013],[118.43327884200002,73.22866445500007],[118.4456486340001,73.220404364],[118.45346113400015,73.21385325700011],[118.4624129570001,73.20941803600014],[118.917653842,73.11953359600012],[119.08822675900014,73.10639069200009],[119.25245201900023,73.07318756700006],[119.36670983200011,73.079087632],[119.45997155000022,73.06415436400006],[119.49854576900012,73.062201239],[119.5345158210001,73.05524323100012],[119.56666100400005,73.03266022300014],[119.58326256600012,73.0090192730001],[119.59294681100008,73.00287506700012],[119.61312910199997,72.99848053600006],[119.66016686300011,72.99892812700016],[119.68539472700016,72.99469635600003],[119.69646243600019,72.98110586100007],[119.72250410200017,72.95892975500003],[120.1281030605001,72.91657135649997],[120.53370201900024,72.87421295800011],[120.57349694100006,72.88861725500009],[120.54037519599999,72.90131256700015],[120.1909692715001,72.92908356300002],[119.841563347,72.95685455900009],[119.80713951900005,72.9675153670001],[119.77833092500022,72.98480866100012],[119.76384524800018,73.008286851],[119.7833764980002,73.01801178600012],[120.23121178500006,72.98627350500009],[120.423594597,72.98822663000011],[120.65601647200006,72.97736237200006],[120.82496178500007,72.94745514500006],[121.05469811300004,72.9317894550001],[121.13591556100008,72.94773997599998],[121.25269616000006,72.95111725500011],[121.3881942070001,72.97606028900005],[121.66960696700008,72.97052643400004],[121.73487389400017,72.95831940300015],[121.74870853000006,72.96027252800009],[121.791351759,72.97687409100014],[121.96371504000003,72.96369049700012],[121.9546004570001,72.95197174700003],[121.92888431100006,72.93878815300015],[121.92351321700018,72.92584870000015],[121.933848504,72.92413971600014],[122.04330488399998,72.891546942],[122.42310631600017,72.87498607000013],[122.53419030000005,72.83901601800007],[122.62338300900015,72.82770416900017],[122.73218834700016,72.82656484600012],[122.31324303499999,72.93439362200007],[122.30827884200008,72.94135163000009],[122.32129967500023,72.95010000200016],[122.35987389400023,72.95018138200014],[122.84310957099999,72.872503973],[122.87256920700005,72.872503973],[122.95337975400017,72.891546942],[122.69503828250002,72.93445465700007],[122.43669681100008,72.97736237200006],[122.43588300900015,72.98078034100014],[122.4360457690001,72.983587958],[122.43490644600014,72.98517487200003],[122.43043053500011,72.98480866100012],[122.44857832099999,72.98989492400013],[122.46713300900002,72.99160390800013],[122.505056186,72.99103424700017],[122.47144616,73.00922272300006],[122.46469160200016,73.018988348],[122.61378014400016,73.03095123900015],[122.7592879570001,73.00446198100015],[122.85914147200016,72.99848053600006],[122.86752363400015,72.99323151200015],[122.87061608200023,72.98118724200005],[122.87566165500007,72.96784088700002],[122.88998457100014,72.95868561400005],[123.13795006600017,72.91803620000017],[123.19092858200011,72.92210521000011],[123.21452884200002,72.92755768400015],[123.2345483730002,72.934719143],[123.25228925900002,72.94513580900009],[123.27003014400013,72.96027252800009],[123.28785241000016,72.96869538000006],[123.33814537900007,72.98110586100007],[123.34864342500013,72.98798248900009],[123.34262128999998,72.99909088700012],[123.31812584700019,73.01312897300005],[123.31430097700016,73.02578359600012],[123.32260175900002,73.03457265800002],[123.36963951900022,73.066107489],[123.38306725400005,73.07949453300002],[123.40040123800023,73.09320709800012],[123.42009524800008,73.09955475500006],[123.44125410200016,73.09031810100002],[123.44516035200016,73.08454010600003],[123.44703209700006,73.07892487200003],[123.45045006600004,73.07465241100012],[123.458750847,73.07294342700011],[123.46338951900023,73.07489655200008],[123.46794681100019,73.07957591399999],[123.470469597,73.08539459800011],[123.46656334700002,73.09699127800015],[123.46957441500004,73.10171133000007],[123.46941165500006,73.10626862200012],[123.45687910200016,73.11261627800003],[123.44402103,73.11424388200005],[123.41578209700016,73.112005927],[123.40381920700024,73.11456940300009],[123.39730879000017,73.12164948100015],[123.37582441500003,73.1555036480001],[123.40088951900012,73.17430247600008],[123.45191490999999,73.18634674700017],[123.54712975400017,73.19708893400009],[123.51295006600019,73.17597077000009],[123.54509524800002,73.160834052],[123.58529707100003,73.16034577],[123.66382897200006,73.169826565],[123.60922285199999,73.182806708],[123.62029056100002,73.19379303600006],[123.63648522200018,73.19708893400009],[123.654551629,73.19847239800008],[123.67066491000017,73.20331452000015],[123.65064537900001,73.2152367210001],[123.62525475400015,73.21881745000015],[123.55347741000011,73.21759674700014],[123.53858483200023,73.220404364],[123.52442467500012,73.22687409100008],[123.50611412900017,73.23802317900011],[123.51295006600019,73.23802317900011],[123.50220787900017,73.24042389500006],[123.49268639400017,73.24445221600001],[123.48487389400006,73.25018952],[123.47950280000012,73.25787995000003],[123.50098717500023,73.25787995000003],[123.50945071700019,73.26557038000014],[123.50261478000007,73.27464427300005],[123.413828972,73.28632233300014],[123.39625084700018,73.29266998900005],[123.3789168630001,73.30475495000017],[123.33765709700005,73.341009833],[123.33179772200012,73.35073476800012],[123.39828535200004,73.38011302300013],[123.41334069100006,73.39093659100003],[123.37582441500003,73.39508698100013],[123.29346764400006,73.38971588700011],[123.25033613400015,73.39297109600007],[123.21810957100004,73.40875885600009],[123.2392684250001,73.41681549700006],[123.29590905000012,73.42108795800006],[123.30746504000004,73.42645905200011],[123.30250084700018,73.43732330900009],[123.28980553499999,73.44619375200013],[123.27418053500006,73.45278554900001],[123.25977623800006,73.45718008000001],[123.28191165500006,73.46417877800017],[123.30746504000004,73.46629466399997],[123.33334394600016,73.46385325700005],[123.35596764400013,73.45718008000001],[123.3715926440001,73.44647858300009],[123.38355553500006,73.43577708500005],[123.39722741000017,73.43235911700005],[123.41732832100004,73.44354889500006],[123.39503014400017,73.46613190300003],[123.36109459699999,73.483587958],[123.286387566,73.50495026200004],[123.28825931100008,73.50849030200011],[123.2890731130001,73.51162344],[123.29053795700023,73.51479726800007],[123.29395592500023,73.51862213700018],[123.27076256600006,73.5346133480001],[123.24610436300021,73.54588450700008],[123.26644941500004,73.563910223],[123.30103600400005,73.56688060100011],[123.36963951900022,73.55955638200011],[123.35865319100017,73.57257721600008],[123.32553144600014,73.58266836100016],[123.31430097700016,73.59438711100013],[123.3966577480002,73.581244208],[123.42416425900002,73.58071523600002],[123.4160262380001,73.5968285180001],[123.40365644600016,73.6039492860001],[123.38933353000019,73.60968659100011],[123.37582441500003,73.62164948100003],[123.38648522200008,73.631822007],[123.38770592500022,73.64272695500016],[123.38135826900023,73.65326569200012],[123.36963951900022,73.66266510600015],[123.51254316500015,73.68720123900006],[123.54712975400017,73.710394598],[123.56885826900023,73.71605052299999],[123.59131920700021,73.71698639500009],[123.61207116000006,73.71124909100011],[123.6290796230002,73.69672272300005],[123.58790123800023,73.68366120000009],[123.57447350400005,73.67625560100011],[123.579356316,73.67438385600003],[123.58814537900017,73.66986725500009],[123.59498131600016,73.66885000200001],[123.58790123800023,73.65688711100007],[123.5760197270001,73.64850495000003],[123.56169681100017,73.64337799700012],[123.63013756600006,73.64085521],[123.65699303500006,73.63532135600018],[123.64323978000002,73.62856679900013],[123.6147567070001,73.62051015800002],[123.60181725399998,73.61481354400003],[123.64551842500012,73.60297272300005],[123.69125410200004,73.60419342700008],[123.78052819100004,73.62164948100003],[123.8857528000001,73.62360260600009],[123.88965905000012,73.63532135600018],[123.947032097,73.62636953300013],[123.97380618600002,73.62702057500009],[123.99952233200004,73.64150625200013],[123.97575931100008,73.65403880400004],[123.94629967500005,73.66046784100014],[123.92139733200021,73.66876862200003],[123.91089928500016,73.68683502800015],[123.90902754000004,73.693589585],[123.90528405000005,73.70042552300009],[123.902598504,73.70819733300011],[123.90349368600019,73.71723053600012],[123.9087020190001,73.72516510600018],[123.93140709700006,73.74518463700015],[123.91675866000006,73.74917226800012],[123.90235436300016,73.75527578300002],[123.8888452480002,73.763128973],[123.87671959700016,73.77252838700012],[123.90528405000005,73.77505117400013],[123.9328719410001,73.77456289300015],[123.95972741000017,73.7695173200001],[123.98601321700019,73.75885651200018],[124.01612389400023,73.73639557500009],[124.03353925900004,73.72699616100006],[124.05494225400005,73.72406647300012],[124.04395592500006,73.70929596600014],[124.00586998800011,73.70205312700013],[123.99284915500012,73.6905785180001],[124.05958092500006,73.68480052300013],[124.09449303500011,73.68817780200014],[124.10938561300023,73.70734284100011],[124.12964928500016,73.71898021000011],[124.21900475400017,73.72426992400008],[124.23926842500005,73.73460521],[124.23682701900023,73.74917226800012],[124.23414147200018,73.755764065],[124.23951256600007,73.75958893400012],[124.30640709700006,73.77472565300012],[124.31836998800006,73.78241608300014],[124.32886803500004,73.79975006700012],[124.33619225400017,73.80483633000013],[124.35254967500006,73.80658600500014],[124.383067254,73.806382554],[124.39625084700006,73.80239492400001],[124.40430748800011,73.79238515800013],[124.38672936300017,73.79096100500006],[124.37029056100008,73.78611888200008],[124.42847740999999,73.78652578300007],[124.48633873800011,73.7787132830001],[124.495371941,73.7748070330001],[124.51148522200018,73.76349518400012],[124.52035566500015,73.75885651200018],[124.53199303500004,73.755764065],[124.56869550900015,73.75136953300002],[124.61158287900005,73.73745351800011],[124.63135826900023,73.7363141950001],[124.65845787900015,73.7432315120001],[124.67741946700018,73.74591705900018],[124.69548587300018,73.74213288000006],[124.7032983730002,73.7324079450001],[124.6917423840001,73.71723053600012],[124.72592207100016,73.70840078300016],[124.856211785,73.72406647300012],[124.848887566,73.71271393400015],[124.84424889400005,73.70844147300014],[124.83570397200005,73.70416901200002],[124.8510848320001,73.69769928600014],[124.87037194100006,73.69350820500001],[124.90772545700011,73.6905785180001],[124.91146894600003,73.68732330900004],[124.92269941500004,73.67206452000006],[124.92994225400005,73.667181708],[124.95150800900015,73.66474030200008],[124.96973717500023,73.67035553600006],[124.97974694100004,73.67625560100011],[124.97543379000003,73.6664085960001],[124.98975670700011,73.64411041900014],[124.98658287900005,73.627875067],[125.01465905000023,73.62958405200003],[125.04330488400002,73.64101797100015],[125.05909264400016,73.65965403900005],[125.04802493600002,73.68309153900013],[125.07309004000004,73.68789297100001],[125.10271243600006,73.68610260600003],[125.127207879,73.68817780200014],[125.13746178500006,73.70416901200002],[125.13868248800021,73.69212474200013],[125.14503014400006,73.682806708],[125.1544702480002,73.67527903900013],[125.16529381600017,73.66885000200001],[125.16138756600017,73.665920315],[125.15105228000019,73.65574778900005],[125.16586347700014,73.650864976],[125.18116295700011,73.64891185100014],[125.21241295700007,73.64891185100014],[125.19605553500018,73.63401927299999],[125.1777449880001,73.62164948100003],[125.18921959700005,73.61615631700003],[125.20167076900016,73.61432526200004],[125.21387780000025,73.61615631700003],[125.21094811300011,73.61546458500008],[125.19312584700006,73.60309479400003],[125.17798912900005,73.58885325700011],[125.17156009200002,73.577297268],[125.179372592,73.55853913000014],[125.19752037900004,73.55093008000001],[125.21810957100014,73.55390045800011],[125.23292076900022,73.56704336100006],[125.24626712300002,73.5440127620001],[125.28679446700006,73.53912995000003],[125.33350670700017,73.55198802300005],[125.36491946700018,73.58270905200006],[125.36361738399998,73.57444896000005],[125.36557050900014,73.56879303600006],[125.37191816500014,73.56427643400012],[125.3837996750001,73.55955638200011],[125.39893639400012,73.55560944200012],[125.40992272200016,73.55605703300002],[125.41993248800023,73.56004466400002],[125.43213951900023,73.56704336100006],[125.43604576900023,73.57001373899999],[125.43962649800018,73.5738792990001],[125.46290123800011,73.57103099200005],[125.475840691,73.55947500200013],[125.47396894600016,73.54804108300009],[125.4526473320001,73.54588450700008],[125.47559655000006,73.54083893400002],[125.55502363399998,73.54588450700008],[125.63021894599997,73.5346133480001],[125.65186608200005,73.52545807500007],[125.6435653000001,73.52106354400003],[125.6233016290001,73.50495026200004],[125.64437910200003,73.50495026200004],[125.64437910200003,73.49811432500003],[125.53825931100006,73.4745140650001],[125.52100670700005,73.45718008000001],[125.53199303500006,73.43968333500005],[125.57496178500017,73.423000393],[125.56251061300016,73.40875885600009],[125.59571373800004,73.41038646000011],[125.6232202480002,73.41998932500012],[125.63038170700023,73.434230861],[125.60352623800006,73.44969310100014],[125.63868248800024,73.45819733300006],[125.76107832100004,73.47040436400015],[125.78785241,73.46059804900001],[125.80176842500006,73.45229726800012],[125.83228600400005,73.45335521],[125.87663821700008,73.46059804900001],[125.86939537900004,73.47394440300003],[125.85254967500022,73.47919342700001],[125.83228600400005,73.48281484600007],[125.81576582100014,73.49135976800008],[125.88502037900004,73.51068756700012],[125.90455162899998,73.51862213700018],[125.90699303500006,73.52358633000013],[125.90650475400004,73.5306664080001],[125.90870201900023,73.53693268400004],[125.91846764400006,73.53969961100002],[125.94776451900013,73.5410016950001],[125.96168053500016,73.53912995000003],[125.9728296230002,73.53229401200012],[125.97315514400023,73.52484772300012],[125.96599368600017,73.48444245000009],[125.95679772200002,73.46893952000009],[125.94361412900015,73.456732489],[125.91187584699999,73.43610260600018],[125.94117272200006,73.42829010600009],[125.97486412900005,73.43593984600001],[126.0044051440001,73.45404694200012],[126.02051842500018,73.47768789300015],[126.01685631599999,73.48297760600003],[126.009043816,73.49030182500003],[126.005544467,73.49896881700012],[126.0140080090001,73.50869375200007],[126.03353925900014,73.51471588700016],[126.103770379,73.51862213700018],[126.22657311300006,73.55459219000006],[126.26832116,73.55955638200011],[126.28809655000022,73.55727773600013],[126.30567467500005,73.551459052],[126.35328209700005,73.528509833],[126.40479576900023,73.51239655200011],[126.39136803500006,73.50250885600012],[126.38119550899998,73.49030182500003],[126.3794051440001,73.47703685100011],[126.39112389400012,73.46401601800004],[126.37810306100019,73.45172760600015],[126.362559441,73.44310130400005],[126.32911217500022,73.42987702000012],[126.3164168630001,73.4428571640001],[126.29574629000015,73.45180898600012],[126.27320397200018,73.45465729400007],[126.25456790500019,73.44969310100014],[126.2391056650001,73.44261302300008],[126.20337975400007,73.45477936400005],[126.17074628999998,73.45929596600011],[126.15162194100006,73.43610260600018],[126.17839603000002,73.434759833],[126.20777428500004,73.42926666900014],[126.23487389400022,73.41876862200009],[126.25456790500019,73.40253327000015],[126.23275800900015,73.38987864799999],[126.18140709700005,73.388902085],[126.15845787900004,73.38149648600002],[126.28199303500007,73.385931708],[126.38884524800015,73.411810614],[126.41968834700018,73.40949127800003],[126.45313561300023,73.39508698100013],[126.44434655000006,73.39077383000007],[126.43946373800011,73.38641998900009],[126.43213951900012,73.37466054900001],[126.49415123800024,73.37173086100007],[126.52312259200006,73.36371491100012],[126.5488387380001,73.34731679900013],[126.58969160200016,73.29580312700013],[126.58448326900022,73.28363678600006],[126.56104576900005,73.26943594000015],[126.55567467500012,73.2548281920001],[126.55811608200021,73.24201080900009],[126.56519615999999,73.23346588700014],[126.61207116000017,73.275336005],[126.65007571700006,73.291693427],[126.65870201900006,73.30263906500006],[126.64535566500015,73.31635163],[126.56299889400012,73.38149648600002],[126.61304772200005,73.37933991100012],[126.63990319100004,73.38117096600008],[126.65870201900006,73.388902085],[126.66138756600006,73.39760976800008],[126.65943444099999,73.40810781500006],[126.65870201900006,73.4183617210001],[126.66553795700011,73.42645905200011],[126.69353274800021,73.43720123900012],[126.73015384200002,73.44415924700012],[126.76172936300023,73.43870677299999],[126.78467858200023,73.39142487200002],[126.80591881599999,73.38324616100003],[126.82878665500013,73.38861725500006],[126.843028191,73.40875885600009],[126.83969160199999,73.42039622600011],[126.83253014400022,73.4316266950001],[126.83318118600019,73.44013092700006],[126.85328209700006,73.44354889500006],[126.93238366000006,73.42987702000012],[126.90894616000016,73.45254140800007],[126.90503991000017,73.45718008000001],[126.90658613400002,73.46588776200018],[126.91667728000006,73.479681708],[126.91871178499999,73.48444245000009],[126.91944420700023,73.49371979400013],[126.92107181100008,73.49945709800004],[126.91773522200006,73.50429922100001],[126.903575066,73.51044342700008],[126.88721764400012,73.51471588700016],[126.86719811300023,73.51764557500012],[126.83008873800011,73.51862213700018],[126.85816490999999,73.53339264500005],[126.89665774800018,73.53929271],[127.0504663420002,73.54901764500015],[127.18116295700005,73.53904857000005],[127.45085696700008,73.49070872600004],[127.51107832100004,73.49599844000004],[127.98755944100006,73.47085195500013],[127.9716903000001,73.455023505],[127.94825280000022,73.44757721600003],[127.92237389400023,73.44306061400006],[127.89942467500023,73.43610260600018],[128.05176842500006,73.41632721600013],[128.07691491000017,73.40566640800002],[128.05990644599999,73.39052969000012],[127.98226972700016,73.36334870000012],[127.96021569100017,73.34731679900013],[128.18336022200006,73.36098867400007],[128.206309441,73.35761139500015],[128.24537194100017,73.34650299700012],[128.26734459700018,73.34906647300012],[128.31592858200023,73.36102936400005],[128.34034264400012,73.36102936400005],[128.3649194670002,73.35415273600013],[128.31885826900006,73.32998281500012],[128.30274498800011,73.31590403900002],[128.3097436860002,73.29889557500003],[128.23462975400017,73.26536692899998],[128.32553144600004,73.26756419499999],[128.37159264400006,73.2609723980001],[128.40935306100002,73.241156317],[128.439300977,73.23627350500011],[128.57032311300006,73.26536692899998],[128.6147567070001,73.26605866100012],[128.65943444100006,73.26129791900003],[128.77442467500023,73.22793203300016],[128.81275475400017,73.22138092700008],[128.89258873800011,73.21698639500009],[128.88412519600016,73.20734284100003],[128.87208092500023,73.20062897300005],[128.84473717500006,73.18964264500003],[128.86963951900012,73.18650950700014],[128.935313347,73.19586823100016],[128.96078535200004,73.18964264500003],[128.96924889400023,73.17739492400015],[128.96729576900012,73.16453685100011],[128.95679772200006,73.15387604400009],[128.92896569100017,73.16063060100012],[128.85092207100016,73.1555036480001],[128.86207116000017,73.13641998900012],[128.86524498800023,73.1344261740001],[128.86353600400005,73.12734609600012],[128.86475670700023,73.1214867210001],[128.8642684250002,73.11615631700012],[128.85816491000017,73.11082591400003],[128.84839928500006,73.10732656500005],[128.81674238400012,73.10089752800015],[128.80054772200012,73.09308502800015],[128.78321373800011,73.08136627800017],[128.77735436300006,73.07078685100011],[128.79664147200012,73.066107489],[128.84278405000012,73.07477448100009],[128.93311608200023,73.112738348],[128.97852623800011,73.12140534100011],[129.06617272200006,73.12767161700005],[129.11353600400017,73.12164948100015],[129.22600754700014,73.09774682400014],[129.34997963400022,73.06264771000009],[129.44350849100013,73.02894424900008],[129.47677300899997,72.99652811400007],[129.47893114000013,72.97923984400013],[129.44131494900003,72.94944174500013],[129.35961841800017,72.94001176500014],[129.23854407600018,72.9612236410001],[129.11263087800012,72.97194911100014],[128.92751877400008,72.98015820799999],[128.77125084700018,72.97174713700004],[128.67408287900017,72.9452171900001],[128.29078209700018,72.90863678600014],[128.24024498800006,72.88963450700005],[128.21355228000007,72.86066315300015],[128.24293053500006,72.83661530200011],[128.2280379570001,72.81948476800007],[128.12924238400015,72.786078192],[128.35564212300008,72.793931382],[128.83175703200016,72.75570302950008],[129.30787194100017,72.717474677],[129.35808353000007,72.70302969000012],[129.27173912900017,72.6967227230001],[129.22779381600006,72.68789297100012],[129.19361412900005,72.66889069200012],[129.201345248,72.66815827],[129.2214461600001,72.66205475500011],[129.19841556100002,72.65517812700001],[128.8688257170002,72.67820872600008],[128.79957116000006,72.69196198100009],[128.72803795700005,72.69684479400014],[128.67750084700018,72.70823802300009],[128.66260826900012,72.70990631700012],[128.51978600400017,72.70441315300012],[128.50513756600017,72.70840078300007],[128.50904381600017,72.71670156500006],[128.47917728000007,72.72455475500006],[128.4604598320001,72.71621328300007],[128.44548587300008,72.69965241100003],[128.42701256600006,72.68317291900003],[128.39600670700023,72.67316315300003],[127.96062259200006,72.66205475500011],[127.90544681100008,72.66714101800012],[127.99382571700018,72.62457916900009],[128.10368899800008,72.60065338700012],[128.18832441499998,72.56781647300012],[128.21461022200012,72.56146881699999],[128.26856530000012,72.55609772300012],[128.61133873800011,72.48273346600011],[128.8393660820001,72.46507396],[129.11736087300008,72.4815127620001],[129.25831139400017,72.46393463700014],[129.27418053500017,72.446966864],[129.24195397200006,72.41567617400013],[129.30453535200016,72.410630601],[129.36850019600013,72.39736562700007],[129.48902428500014,72.35419342700006],[129.48210696700008,72.35301341400012],[129.46794681100008,72.34674713700018],[129.47901451900006,72.34454987200009],[129.49203535200016,72.33974844],[129.50074303500017,72.332464911],[129.49887128999995,72.32257721600017],[129.48519941500015,72.31720612200003],[129.36670983200005,72.31492747600005],[129.34009850400005,72.30508047100012],[129.33375084700012,72.28554922100012],[129.34164472700016,72.28424713700002],[129.35808353000007,72.27789948100012],[129.3575952480002,72.262884833],[129.38575280000018,72.25690338700015],[129.46713300900015,72.25047435100004],[129.50391686300023,72.25214264500006],[129.5216577480002,72.24941640800002],[129.5641382170002,72.23065827000015],[129.5450952480002,72.21710846600008],[129.51978600400005,72.215277411],[129.49244225400017,72.21771881700013],[129.46794681100008,72.217027085],[129.35808353000007,72.17544179900013],[129.32789147200006,72.15867747600011],[129.30600019600004,72.15375397300015],[129.28248131600017,72.15143463700018],[129.26010175900015,72.14667389500009],[129.24195397200006,72.134466864],[129.2589624360002,72.13361237200012],[129.29184004000004,72.12734609600015],[129.3087671230002,72.12946198100015],[129.35425866000017,72.14028554900007],[129.45875084700015,72.14158763200004],[129.48902428500014,72.134466864],[129.48902428500014,72.127630927],[129.4585067070002,72.12641022300006],[129.333262566,72.09105052300005],[129.21957441500004,72.08608633000001],[129.201345248,72.08808014500015],[129.145762566,72.1003278670001],[129.12769616000017,72.10053131700006],[129.11491946700008,72.09788646000007],[129.08432050900004,72.08608633000001],[129.04802493600002,72.07684967700013],[128.93409264400012,72.07298411700005],[128.89291425900004,72.08462148600013],[128.81625410200016,72.13589101800007],[128.7749129570002,72.14813873900015],[128.740489129,72.15155670800006],[128.49431399800008,72.20278554900001],[128.49415123800011,72.22016022300006],[128.5171004570001,72.23053620000017],[128.56950931100005,72.24371979400003],[128.5288192070001,72.25934479400011],[128.14975019600004,72.31663646000005],[127.85889733200021,72.429144598],[127.79070071700018,72.43842194200005],[127.665782097,72.43008047100001],[127.715098504,72.41054922100001],[127.73617597700004,72.39716217700011],[127.76905358200011,72.386460679],[127.83887780000023,72.34247467700008],[127.86443118600003,72.332464911],[127.84506269600004,72.32225169500005],[127.81169681100006,72.32099030200014],[127.74708092500012,72.32562897300006],[127.78012129000015,72.30630117400013],[127.91211998800011,72.29148997600007],[128.03158613400015,72.264146226],[128.06397545700017,72.25275299700003],[128.1027124360002,72.23379140800002],[128.13266035200016,72.22858307500003],[128.1921492850001,72.22833893400018],[128.24935957100016,72.2048200540001],[128.2863061860002,72.17617422100015],[128.30982506600017,72.15143463700018],[128.319590691,72.14813873900015],[128.33570397200018,72.14496491100009],[128.3844507170002,72.12079498900005],[128.44166100400017,72.10028717700011],[128.45337975400005,72.09292226800012],[128.45582116000017,72.07550690300015],[128.44825280000023,72.05866120000013],[128.443207227,72.04173411700008],[128.45337975400005,72.02399323100016],[128.46225019599999,72.02244700700014],[128.4760848320001,72.0229352890001],[128.48878014400023,72.02147044500005],[128.49431399800008,72.01434967700003],[128.50114993600016,71.99730052300005],[128.50993899800008,71.98965078300002],[128.51832115999997,71.98403554900004],[128.52808678500006,71.97980377800009],[128.54151451900023,71.97626373900012],[128.60425866000006,71.96938711100002],[128.62354576900017,71.96259186400009],[128.63086998800006,71.95636627800002],[128.64210045700005,71.94159577000015],[128.65137780000012,71.93585846600017],[128.65308678500006,71.92064036699999],[128.66325931100008,71.907212632],[128.66976972700016,71.89350006700006],[128.66163170700023,71.87750885600018],[128.66391035200004,71.86298248900012],[128.6920679050002,71.85114166900017],[128.74756920700017,71.83966705900004],[128.78370201900012,71.82705312700016],[128.856211785,71.77480703300013],[128.92660566500004,71.738755601],[128.94027754000015,71.73725006700012],[128.95337975400005,71.73981354400006],[128.98878014400023,71.75775788],[129.13949629000015,71.78392161700013],[129.1839298840001,71.80927155200004],[129.18930097700004,71.83274974200013],[129.16846764400023,71.85626862200007],[129.11841881600006,71.88808828300004],[129.096934441,71.90790436400015],[129.08692467500012,71.92658112200003],[129.07992597700016,71.94554271000011],[129.06723066499998,71.96662018400013],[129.03012129000015,71.99481842700011],[129.02279707100016,72.00409577000009],[129.02572675899995,72.01797109600007],[129.0411889980002,72.01878489799999],[129.06128991000017,72.01235586100007],[129.07813561300017,72.00409577000009],[129.18051191500015,71.93244049700014],[129.28687584700006,71.883490302],[129.30347741,71.86420319200006],[129.3014429050002,71.85276927300002],[129.29737389400012,71.84235260600012],[129.29476972700004,71.83185455900004],[129.29664147200015,71.81976959800011],[129.30990644600004,71.80418528900005],[129.33008873800023,71.79706452],[129.370778842,71.78994375200011],[129.543711785,71.72296784100006],[129.5182397800002,71.71747467700011],[129.48633873800011,71.71942780200006],[129.30543053500017,71.76089101800007],[129.28825931100002,71.75869375200007],[129.2482202480002,71.74347565300009],[129.17481530000006,71.7334658870001],[129.09498131600017,71.71214427300005],[128.96729576900012,71.71645742400013],[128.9077254570001,71.70815664300007],[128.8645939460001,71.69448476800012],[128.830332879,71.6791445980001],[128.8204858730002,71.65810781500015],[128.84205162900008,71.62197500200001],[128.87525475399997,71.59674713700007],[128.92790774800014,71.59100983300009],[129.11695397200018,71.61505768400012],[129.145762566,71.61310455900015],[129.1635848320001,71.60602448100009],[129.18702233200017,71.58539459800006],[129.2006942070001,71.57587311400009],[129.2330835300002,71.56024811399999],[129.2487085300002,71.5498721370001],[129.25562584700018,71.53864166900007],[129.2521264980002,71.52582428600006],[129.2366642590001,71.50861237200014],[129.23568769599999,71.49701569200012],[129.24789472700016,71.48627350500011],[129.29566491,71.4745954450001],[129.314300977,71.466009833],[129.32211347699996,71.45628489800005],[129.33399498800023,71.434556382],[129.35613040500002,71.405991929],[129.37842858200005,71.36481354400003],[129.3921004570001,71.3468285180001],[129.42335045700005,71.32453034100014],[129.46314537900017,71.30703359600001],[129.5053817070001,71.29385000200011],[129.6268009770001,71.27008698100006],[129.652598504,71.26089101800005],[129.66521243600016,71.25299713700008],[129.68799889400012,71.23407623900009],[129.7006942070001,71.22638580900015],[129.71176191500004,71.21723053600009],[129.71338951900023,71.20685455900018],[129.71306399800014,71.19603099199999],[129.71802819100017,71.18545156500012],[129.71957441500004,71.18048737200007],[129.71810957100016,71.17568594],[129.71859785200004,71.17096588700018],[129.72632897200006,71.1661644550001],[129.74512780000012,71.15790436399999],[129.76270592500023,71.14760976800008],[129.73682701900012,71.12645091399999],[129.70777428500006,71.10968659100017],[129.68726647200018,71.10309479400007],[129.645274285,71.096625067],[129.626231316,71.08612702000012],[129.86573326900012,71.11041901250015],[129.94076582100004,71.09296295800014],[129.93197675900015,71.090521552],[129.92579186300011,71.08478424700003],[129.92212975400005,71.0763207050001],[129.92042076900023,71.06565989800005],[129.9547632170002,71.06867096600014],[130.01693769599999,71.08246491100006],[130.050629102,71.08612702000012],[130.06771894600016,71.08576080900009],[130.08041425900004,71.08344147300012],[130.10531660200013,71.07245514500009],[130.13111412900017,71.05752187700013],[130.144297722,71.05263906500006],[130.1604923840001,71.0519880230001],[130.15235436300017,71.03188711100007],[130.16236412900003,71.02216217700011],[130.20150800899998,71.01105377800008],[130.22169030000012,70.99363841400013],[130.21583092500018,70.97943756699999],[130.1941024100001,70.97052643400015],[130.16732832099999,70.96881745000015],[130.30062910200016,70.94013092700003],[130.46778405000023,70.92670319200003],[130.47771243600005,70.92267487200014],[130.48894290500007,70.91425202],[130.49293053500006,70.90745677300008],[130.494395379,70.89166901200012],[130.49634850400003,70.8869082700001],[130.51921634200008,70.87897370000015],[130.61988366000017,70.86640045800006],[130.64698326900012,70.86835358300011],[130.67505944100017,70.87506745000015],[130.69947350400005,70.887884833],[130.71550540500002,70.90802643400004],[130.71607506600012,70.91864655200008],[130.715017123,70.93427155200006],[130.71566816499998,70.9504255230001],[130.72234134200008,70.962591864],[130.74415123800011,70.97402578300016],[130.7688908210001,70.97752513200005],[130.78907311300011,70.97113678600012],[130.79737389400006,70.95270416900009],[130.8027449880002,70.94358958500003],[130.81446373800023,70.93463776200018],[130.82618248800011,70.92267487200014],[130.83155358200003,70.90460846600003],[130.84262129000004,70.88031647300015],[130.89079837300008,70.84528229400014],[130.89991295700014,70.81801992400005],[130.89584394599999,70.80556875200011],[130.88233483200023,70.78607819200006],[130.87940514400012,70.77391185100008],[130.888438347,70.76276276200015],[130.90919030000012,70.756048895],[131.04200280000003,70.73875560100011],[131.13453209700006,70.73810455900015],[131.226328972,70.75023021000005],[131.39429772200006,70.80731842700014],[131.54615319100012,70.88711172100007],[131.609629754,70.93870677300013],[131.72437584700003,71.06525299700013],[131.770762566,71.09979889500006],[131.75538170700005,71.1212425800001],[131.7614038420002,71.13519928600006],[131.78223717500018,71.14345937700016],[131.812266472,71.14760976800008],[131.84888756600006,71.14581940300009],[131.8658960300002,71.14887116099999],[131.87305748800023,71.160589911],[131.86784915500007,71.1725528020001],[131.85547936300011,71.17951080900009],[131.84017988400015,71.18235911700005],[131.82650800900004,71.18231842700006],[131.85092207100016,71.20819733300006],[131.89828535200004,71.222357489],[131.98951256600012,71.22947825700005],[132.18832441499998,71.2158877620001],[132.17237389400006,71.22557200700005],[132.1559350920002,71.23102448100009],[131.966075066,71.25458405200014],[131.9419051440001,71.26740143400015],[131.9492293630001,71.29295482000005],[131.9669702480002,71.314398505],[132.03077233200023,71.37592194200006],[132.03988691500015,71.38890208500005],[132.04102623800006,71.3976911480001],[132.04004967500012,71.40546295800011],[132.04363040500007,71.41779205900015],[132.04916425899998,71.43024323100018],[132.0695093110002,71.45848216400005],[132.09164472700016,71.49811432500017],[132.10645592500023,71.517523505],[132.19890384200002,71.603461005],[132.24512780000023,71.66278717700006],[132.26417076900023,71.68203359600001],[132.53931725400017,71.88361237200014],[132.63119550899998,71.92617422100001],[132.71778405000023,71.94623444200006],[132.81047479300017,71.95226453400004],[132.91386449900017,71.94757041200002],[132.9939332180002,71.9660390530001],[133.0662744040002,71.97129071500014],[133.17918312200018,71.95812321200002],[133.25759466700018,71.9212456830001],[133.34136079500004,71.88626482800005],[133.35400272700022,71.83395965500011],[133.30271856600018,71.88039217600009],[133.22835235600004,71.90887499400007],[133.15641474800023,71.940170869],[133.10389055800013,71.9556724080001],[133.03134491300008,71.95509862600012],[132.93924771400023,71.93468056400003],[132.93232213000024,71.91121248200001],[132.86814249200003,71.91907314100008],[132.79639493700003,71.91092230599999],[132.7742835820002,71.89010778000006],[132.77530487900006,71.87981472899997],[132.78289610300013,71.86396458700013],[132.8057659360002,71.8454493390001],[132.81312841100006,71.83146995300002],[132.74610436300011,71.82648346600008],[132.7290145190002,71.819525458],[132.71509850400017,71.81069570500013],[132.70915774800008,71.79531484600001],[132.71485436300023,71.7768008480001],[132.7296655610002,71.76923248900012],[132.90406334700006,71.7334658870001],[132.98521604400005,71.71971724200002],[133.01472450500015,71.68620759900016],[133.06910241000006,71.647894598],[133.07992597700016,71.64256419500005],[133.08765709700006,71.63035716399999],[133.0939233730002,71.61664459800015],[133.10010826900003,71.606878973],[133.11353600400017,71.59784577],[133.15162194100006,71.57916901200012],[133.42611738400004,71.48997630400004],[133.6500757170002,71.43650950700014],[133.80551191500004,71.42332591399999],[133.90870201900023,71.39940013200011],[134.16765384200014,71.37079498900013],[134.48910566500004,71.37685781500012],[134.55982506600017,71.40192291900003],[134.58529707100016,71.40582916900001],[134.60938561300011,71.40306224199999],[134.7390242850001,71.36798737200009],[134.74488366000006,71.36123281500015],[134.73755944100006,71.3468285180001],[134.70679772200006,71.32737864799999],[134.67066491,71.3146426450001],[134.65064537900005,71.29730866100014],[134.6686304050002,71.26430898600007],[134.67505944100012,71.28595612200016],[134.69556725400005,71.30866120000003],[134.72152754000012,71.32884349200005],[134.74439537900005,71.34308502800015],[134.77003014400012,71.36692942900014],[134.75245201900006,71.3822695980001],[134.71876061300006,71.39752838700015],[134.69654381600006,71.42133209800015],[134.7587996750001,71.42332591399999],[134.77849368600008,71.42877838700012],[134.77979576900023,71.46076080900012],[134.8102319670002,71.48183828300013],[134.85320071700008,71.49347565300015],[134.89210045700005,71.49701569200012],[134.93531334700018,71.50629303600009],[135.03296959700018,71.53912995000009],[135.07357832100013,71.53489817900005],[135.10434004000015,71.51626211100007],[135.11866295700023,71.5157738300001],[135.14234459700006,71.52496979400014],[135.17115319100014,71.54319896000014],[135.18604576900023,71.54975006700012],[135.207367384,71.55223216400005],[135.23658287900005,71.5498721370001],[135.31967207100004,71.53119538000011],[135.42335045700023,71.53119538000011],[135.41138756600017,71.54800039300011],[135.38843834700012,71.55585358300011],[135.34083092500012,71.56590403899999],[135.37728925899998,71.58258698100003],[135.42188561300017,71.5929629580001],[135.546153191,71.60431549700009],[135.62159264400023,71.62311432500015],[135.98511803499997,71.63483307500003],[136.30347741000006,71.58299388200014],[136.44385826900023,71.57587311400009],[136.51636803500017,71.55849844],[136.51954186300023,71.517523505],[136.51270592500012,71.517523505],[136.541188998,71.514837958],[136.55567467500006,71.509222723],[136.55730228000016,71.49762604400009],[136.54688561300011,71.47654857000008],[136.571462436,71.47736237200017],[136.58725019600013,71.48777903900007],[136.59986412900005,71.50193919499999],[136.61508222700004,71.51410553600009],[136.63705488400015,71.52289459800012],[136.66211998800023,71.5287539730001],[136.68921959700018,71.53164297100001],[136.71827233200023,71.53119538000011],[136.77458743600013,71.5234235700001],[136.80128014400023,71.51561107000012],[136.82813561300023,71.50385163000006],[136.88941491000006,71.46222565300017],[136.91920006600006,71.45416901200002],[136.98178144600013,71.44843170800009],[137.01270592500012,71.43903229400014],[137.04029381600006,71.42731354400014],[137.06609134200005,71.41998932500015],[137.2109481130002,71.40737539300007],[137.26791425900015,71.39252350500011],[137.27466881600017,71.385239976],[137.26343834700018,71.37750885600009],[137.23894290500007,71.36733633000013],[137.28419030000006,71.35956452000012],[137.35564212300002,71.37417226800007],[137.38892662900005,71.35809967700008],[137.40349368600008,71.353664455],[137.44703209700015,71.34760163000003],[137.49219811300023,71.3468285180001],[137.48511803500017,71.33722565300012],[137.47510826900012,71.33148834800012],[137.45142662900017,71.32233307500015],[137.44499759200008,71.31293366100012],[137.45508873800023,71.30483633000001],[137.47185306100008,71.29938385600013],[137.48536217500012,71.29840729400009],[137.465586785,71.288031317],[137.4245711600001,71.291449286],[137.40349368600008,71.28473541900014],[137.43336022200006,71.27464427299999],[137.52686608200023,71.25747304900007],[137.532481316,71.24567291900009],[137.55982506600017,71.24119700700014],[137.59294681100002,71.24233633000007],[137.61573326900023,71.24725983300011],[137.70492597700004,71.28473541900014],[137.69996178500014,71.27387116100006],[137.6920679050002,71.26459381700012],[137.68213951900006,71.2568220070001],[137.67090905000006,71.25063711100013],[137.686778191,71.24428945500001],[137.70346113400015,71.24555084800012],[137.72120201900023,71.24941640800013],[137.73926842500018,71.25063711100013],[137.72022545700005,71.231431382],[137.69239342500012,71.22093333500011],[137.66146894600016,71.216742255],[137.63282311300011,71.2158877620001],[137.61491946700002,71.21820709800015],[137.5787866550002,71.227972723],[137.56104576900012,71.22947825700005],[137.53516686300011,71.2253278670001],[137.52613366000017,71.22028229400017],[137.53370201900023,71.212795315],[137.56397545700023,71.20400625200013],[137.62566165500007,71.19961172100015],[137.74105879000015,71.17064036700008],[137.7664494150001,71.16803620000015],[137.76433353000007,71.14223867400013],[137.78345787900005,71.12661367400015],[137.81299889400012,71.11961497600007],[137.84229576900012,71.11969635600013],[137.85938561300006,71.12303294499999],[137.86719811300017,71.12775299700009],[137.87435957099996,71.13458893400009],[137.88998457099999,71.14419179900007],[137.90951582100016,71.14911530200014],[137.930918816,71.14801666900009],[137.97266686300023,71.14077383000007],[137.9655054050002,71.1381289730001],[137.94467207100004,71.12710195500013],[137.97738691500015,71.11896393400012],[138.00733483200023,71.12323639500012],[138.03825931100008,71.13104889500012],[138.0743921230002,71.13397858300014],[138.06470787900005,71.15045807500003],[138.04672285200004,71.16278717700008],[138.0256453790001,71.17096588700018],[138.0066837900001,71.17487213700018],[138.01978600400005,71.18231842700006],[137.99415123800006,71.19061920800014],[137.96631920700023,71.194322007],[137.91041100400017,71.19537995000003],[137.91797936300011,71.20282623900003],[137.89958743600008,71.2006696640001],[137.84229576900012,71.18231842700006],[137.85523522200006,71.1963565120001],[137.84750410200004,71.20473867400007],[137.82960045700017,71.20868561400006],[137.79175866,71.21088288000004],[137.77393639400023,71.214585679],[137.75668379,71.22085195500013],[137.73926842500018,71.22947825700005],[137.77295983200005,71.2357445330001],[137.80176842500012,71.24664948100015],[137.83139082100016,71.25389232],[137.96949303500017,71.22528717700011],[138.06723066500015,71.22492096600008],[138.08806399800002,71.22947825700005],[138.09180748800006,71.23456452000006],[138.09571373800006,71.24282461100015],[138.10377037899997,71.24876536699999],[138.15105228000007,71.24188873900006],[138.18409264400012,71.24542877800015],[138.21501712300008,71.25763580900004],[138.23951256600012,71.27789948100003],[138.21216881600006,71.28644440300015],[137.99244225400017,71.29218170800011],[137.99610436300023,71.30219147300004],[138.1500757170002,71.33270905200006],[138.1694442070001,71.331244208],[138.21045983200023,71.32078685100011],[138.26685631600017,71.31297435100011],[138.3229272800002,71.31122467700011],[138.36296634200002,71.31891510600006],[138.36296634200002,71.32575104400014],[138.34717858200005,71.32672760600003],[138.31959069100017,71.336859442],[138.30469811300011,71.3393415390001],[138.009532097,71.3393415390001],[137.98829186300023,71.3436953800001],[137.95167076900012,71.36025625200007],[137.930918816,71.36050039300012],[137.9370223320001,71.36692942900014],[137.94532311300006,71.372219143],[137.9658309250002,71.38031647300012],[137.9448348320001,71.385239976],[137.92562910200004,71.37995026200011],[137.90691165500007,71.37164948100003],[137.88656660200016,71.36733633000013],[137.87183678500014,71.370550848],[137.84498131600012,71.38458893400006],[137.82862389400006,71.38715241100006],[137.82862389400006,71.39398834800006],[137.86996504000004,71.39720286700013],[137.90512128999998,71.41176992400015],[137.9658309250002,71.44863515800004],[138.01498457100016,71.47361888200005],[138.0265405610002,71.48403554900013],[138.02955162900017,71.49335358300009],[138.02963300900012,71.51459381700005],[138.03394616000014,71.52496979400014],[138.0385848320001,71.55874258000013],[138.09864342500012,71.5814476580001],[138.21900475400005,71.600043036],[138.50025475400017,71.61310455900015],[138.44792728000004,71.602932033],[138.4213973320001,71.59422435100014],[138.40398196700002,71.57953522300012],[138.40186608200023,71.56708405200011],[138.41089928500003,71.55906810100008],[138.43816165500002,71.53864166900007],[138.57715905000023,71.55194733300011],[138.58887780000023,71.56590403899999],[138.59498131600006,71.583197333],[138.588145379,71.59406159100017],[138.57309003999998,71.60106028900005],[138.55486087300017,71.606878973],[138.67701256600003,71.64386627800006],[138.71517988400004,71.647894598],[138.75603274800008,71.64301178600013],[138.87696373800006,71.600043036],[138.91814212300002,71.592271226],[139.00896243600002,71.58527252800009],[139.04509524800008,71.56903717700006],[139.057871941,71.55182526200004],[139.07740319100017,71.51170482000013],[139.09669030000012,71.49701569200012],[139.08920332100016,71.49017975500011],[139.10531660200004,71.47736237200017],[139.14136803500017,71.4594587260001],[139.15805097700004,71.44863515800004],[139.11646569100006,71.42877838700012],[139.13575280000006,71.42804596600008],[139.19223066500004,71.41510651200018],[139.3029077480002,71.41567617400015],[139.34636478000007,71.42182038000011],[139.3629663420002,71.42877838700012],[139.36882571700008,71.43553294500005],[139.37378991000008,71.45156484600015],[139.37989342500006,71.45917389500009],[139.42188561300006,71.48875560100005],[139.44336998800011,71.49510325700008],[139.58765709700012,71.49510325700008],[139.62224368600016,71.48859284100008],[139.68433678500006,71.464300848],[139.71778405000006,71.45734284100011],[139.763356967,71.47431061400009],[139.8362736340001,71.49225495000003],[139.85670006600003,71.49359772300012],[139.88770592500018,71.48558177299999],[139.95443769600004,71.48525625200016],[139.98845462300008,71.47846100500011],[140.00017337300002,71.47467682500009],[140.01832116000006,71.47085195500007],[140.0332137380001,71.472113348],[140.03516686300023,71.48403554900013],[140.02556399800005,71.4918887390001],[139.97982832100016,71.50385163000006],[139.985606316,71.50861237200014],[139.99537194100006,71.52016836100007],[140.00098717500023,71.52496979400014],[139.8361922540001,71.58954498900012],[139.81568444100003,71.60350169499998],[139.76172936300011,71.65204498900006],[139.74057050900004,71.66494375200006],[139.7345483730002,71.67218659100008],[139.73438561300023,71.69131094000006],[139.718109571,71.7187360700001],[139.71265709700018,71.75604889500009],[139.69939212300002,71.764593817],[139.70801842500023,71.76992422100007],[139.70801842500023,71.77700429900013],[139.7018335300002,71.78461334800006],[139.69190514400006,71.79181549700012],[139.70337975400005,71.80166250200013],[139.72901451900012,71.81793854400014],[139.73414147200012,71.82941315300009],[139.74341881600006,71.84487539300012],[139.76539147200015,71.854925848],[139.79053795700017,71.86005280200011],[139.80925540500002,71.86078522300014],[139.78028405000012,71.87002187700001],[139.71029707100004,71.87091705900009],[139.6816512380002,71.88467031500004],[139.66472415500007,71.899847723],[139.64893639400012,71.90973541900003],[139.6067814460001,71.92560455900004],[139.5739038420002,71.93292877800015],[139.336192254,71.94269440300009],[139.336192254,71.94953034100011],[139.42847741000003,71.96320221600014],[139.583181186,71.94896067900014],[139.63453209700006,71.95453522300014],[139.68213951900023,71.96967194200013],[139.71225019600016,71.997951565],[139.71290123800011,72.0174828150001],[139.70484459700018,72.03766510600012],[139.70150800900015,72.0593122420001],[139.7156681650001,72.0829531920001],[139.83155358200005,72.13764069200006],[139.84961998800006,72.15867747600011],[139.8741968110002,72.178168036],[139.93018639400023,72.1738141950001],[140.0275985040001,72.14874909100011],[140.06739342500006,72.14785390800002],[140.132090691,72.15387604400003],[140.19288170700023,72.16673411700005],[140.21949303500017,72.18634674700009],[140.19711347700016,72.21381256700015],[140.14551842500012,72.22492096600016],[139.8531193365002,72.22846100500006],[139.56072024800002,72.23200104400003],[139.51807701900012,72.219224351],[139.43238366000006,72.1828473980001],[139.45964603000002,72.17243073100003],[139.55591881600006,72.17544179900013],[139.53296959700006,72.16429271000003],[139.38697350400005,72.16217682500009],[139.32878665500013,72.168646552],[139.27719160200016,72.18016185100014],[139.25668378999998,72.17902252800009],[139.26050865999997,72.16242096600006],[139.2804468110002,72.1525332700001],[139.33375084700018,72.147894598],[139.34986412900003,72.134466864],[139.2951766290001,72.13690827000015],[139.24219811300023,72.14569733300003],[139.19157962300008,72.16266510600018],[139.13062584700018,72.19916413000014],[139.0963647800002,72.22654857000002],[139.08920332100016,72.23688385600009],[139.09400475400005,72.24823639500008],[139.11736087300002,72.26561107000005],[139.1227319670002,72.27472565300015],[139.13575280000006,72.30410390800012],[139.16675866,72.32778554900007],[139.23259524800008,72.36041901200012],[139.28679446700002,72.39704010600003],[139.30518639400006,72.4020042990001],[139.31218509200008,72.40477122600004],[139.32276451900012,72.41803620000009],[139.32878665500013,72.42251211100013],[139.34205162900005,72.4249535180001],[139.37012780000023,72.42609284100003],[139.38404381600006,72.4286970070001],[139.49838300900015,72.48725006700006],[139.54175866000006,72.49762604400014],[139.84473717500012,72.50299713700012],[140.07276451900023,72.4792341170001],[140.34473717500012,72.489691473],[140.57650800900015,72.49632396000005],[140.79468834700018,72.5316429710001],[140.87777754000015,72.53774648600007],[140.90463300900004,72.55560944200015],[140.93409264400012,72.56777578300013],[141.07007897200006,72.57807038000006],[141.1108504570001,72.58698151200018],[140.99659264400023,72.58738841399999],[140.95240319100014,72.59357330900015],[140.93262780000023,72.60065338700012],[140.94988040500007,72.60700104400014],[140.96461022200006,72.61566803600014],[140.98796634200002,72.63471100500014],[140.98047936300006,72.64223867400001],[141.010996941,72.66840241100014],[141.01295006600006,72.69082265800016],[140.99154707100004,72.70941803600006],[140.95240319100014,72.72410716400005],[140.90723717500012,72.72931549700014],[140.88591556100008,72.73444245000013],[140.849375847,72.76048411700013],[140.66423587300008,72.809027411],[140.65894616000017,72.81232330900004],[140.65796959699998,72.81639232],[140.65992272200006,72.82965729400003],[140.65894616000017,72.83397044500013],[140.64234459699998,72.84247467700006],[140.59595787900017,72.8585879580001],[140.5831811860001,72.86749909100017],[140.58130944100006,72.884670315],[140.59424889400023,72.89288971600008],[140.72584069099997,72.89862702000006],[140.78052819100006,72.8893903670001],[140.83594811300011,72.89118073100009],[140.890472852,72.88056061400015],[141.0092879570001,72.87905508000009],[141.06568444100006,72.86969635600015],[141.27271569100006,72.86635976800012],[141.389903191,72.84332916900013],[141.41179446700008,72.83397044500013],[141.46192467500023,72.80581289300012],[141.55062910200004,72.77431875200013],[141.65593509200008,72.76609935100014],[141.731700066,72.74762604400011],[141.98170006600017,72.72459544500005],[142.231700066,72.70156484600007],[142.54281660200004,72.7178408870001],[142.70801842500006,72.71185944200009],[143.03638756600017,72.69985586100016],[143.09066816500004,72.689398505],[143.48682701900023,72.70010000200001],[143.602793816,72.68870677300005],[143.70720462300002,72.66665273600013],[144.07227623800017,72.6486270200001],[144.30388431100008,72.64199453300016],[144.5686141290001,72.6088727890001],[144.84017988400015,72.59564850500009],[145.12484785250004,72.57577138900007],[145.40951582099999,72.55589427299999],[145.71412194100012,72.49632396000005],[145.95923912900017,72.4719098980001],[146.12468509200016,72.4698753930001],[146.27035566500015,72.440863348],[146.41049238400015,72.42694733300011],[146.48373457099999,72.40167877800013],[146.80201256600006,72.354478257],[146.85401451900012,72.35419342700006],[146.84408613399995,72.346625067],[146.83285566499998,72.34052155200011],[146.84034264400017,72.34674713700018],[146.79200280000023,72.3307152360001],[146.4503279955001,72.34166087400014],[146.10865319100017,72.35260651200002],[146.0602319670002,72.34381745000015],[145.6876733730002,72.363959052],[145.47022545700023,72.360052802],[145.371755405,72.34593333500007],[145.35287519599999,72.34674713700018],[145.33204186300011,72.35419342700006],[145.31763756600006,72.36367422100007],[145.29118899800008,72.386419989],[145.2768660820001,72.39516836100006],[145.2531030610002,72.40106842700011],[145.20443769600016,72.40208567900008],[145.1813257170002,72.40818919500008],[145.18873131600017,72.41567617400013],[145.17025800900015,72.42059967699998],[145.14779707100016,72.41986725500006],[145.1259871750001,72.41437409100001],[145.1095483730002,72.40509674700017],[145.09229576900012,72.40021393400009],[145.0724389980002,72.407171942],[145.03565514400012,72.42706940300009],[144.99089603000007,72.43622467700008],[144.943207227,72.4381778020001],[144.8955184250002,72.43402741100007],[144.85092207100016,72.42413971600017],[144.70826256600014,72.37409088700015],[144.680430535,72.35748932500009],[144.66684004000015,72.346665757],[144.66114342500006,72.33685944200006],[144.62623131600006,72.31659577000006],[144.54786217500012,72.25739166900014],[144.53760826900006,72.24062734600012],[144.52076256600014,72.22500234600015],[144.48275800900015,72.23663971600014],[144.42090905000006,72.27167389500006],[144.38550866000017,72.28534577],[144.34245853000002,72.29376862200006],[144.29916425900015,72.29629140800016],[144.26319420700005,72.29214101800004],[144.24317467500012,72.2838809270001],[144.22527103000007,72.27399323100012],[144.206797722,72.26748281500012],[144.18555748800023,72.26972077],[144.16724694100017,72.27387116100014],[144.10547936300006,72.27789948100012],[144.17212975400005,72.24787018400015],[144.19434655000012,72.24433014500009],[144.19385826900012,72.22801341400006],[144.210703972,72.2217471370001],[144.23471113400015,72.21906159100003],[144.25652103000002,72.21332428600006],[144.28028405000012,72.20392487200003],[144.4155379570001,72.1750348980001],[144.47754967500018,72.170355536],[144.5991317070002,72.17544179900013],[144.6225692070001,72.18056875200013],[144.67457116000017,72.21332428600006],[144.69841556100008,72.22272370000009],[144.75163821700002,72.233099677],[144.95053144600004,72.24225495000015],[145.06869550900015,72.26434967700006],[145.3960067070001,72.27285390800007],[145.70399010550008,72.28196849150011],[146.01197350400017,72.29108307500015],[146.26384524800008,72.29535553600009],[146.5965275400001,72.30400218299998],[146.9292098320001,72.31264883000007],[146.892832879,72.2714704450001],[146.77572675900004,72.22846100500006],[146.72681725400005,72.19965241100012],[146.67758222700004,72.16274648600016],[146.49537194100012,72.06598541900014],[146.2438257170002,71.98655833500014],[145.972504102,71.85626862200007],[145.9397892590001,71.85724518400015],[145.94166100400005,71.88808828300004],[145.95240319100006,71.90094635600015],[145.980723504,71.91665273600002],[145.99341881600017,71.92560455900004],[145.9990340500002,71.9387067730001],[145.99415123800011,71.95026276200002],[145.98707116000006,71.95966217700006],[145.98658287900003,71.96662018400013],[145.99642988400015,71.97679271],[146.00114993600008,71.98371002800009],[146.00294030000023,71.99152252800009],[146.00367272200018,72.00409577000009],[145.99984785200016,72.01764557500006],[145.99301191500015,72.024359442],[145.99301191500015,72.02973053600014],[146.00977623800006,72.03888580900004],[146.03272545700005,72.04352448100013],[146.081797722,72.03782786699999],[146.10670006600006,72.03888580900004],[146.12989342500006,72.04559967700008],[146.1954858730002,72.07298411700005],[146.239512566,72.08038971600003],[146.26172936300006,72.08844635600015],[146.27125084700018,72.10407135600003],[146.28126061300023,72.11371491100002],[146.34693444100006,72.127630927],[146.32439212300008,72.14130280200011],[146.23707116000017,72.15497467700006],[146.23471113400004,72.17243073100003],[146.20655358200023,72.17576732000005],[146.14771569100006,72.168646552],[146.07894941500015,72.170396226],[146.05836022200006,72.16551341400013],[146.04688561300011,72.15692780200011],[146.04957116000017,72.14988841400005],[146.05681399800017,72.14297109600012],[146.05990644600016,72.12946198100015],[146.06421959700018,72.12612539300012],[146.06560306100008,72.12270742400011],[146.05836022200006,72.11737702000006],[146.00709069100012,72.09788646000007],[145.99512780000018,72.0908877620001],[145.99000084700006,72.0829531920001],[145.98340905000006,72.06850820500006],[145.96802819100006,72.07050202],[145.94971764400006,72.08307526200008],[145.93482506599997,72.1003278670001],[145.9547632170002,72.112453518],[145.96225019600013,72.12677643400009],[145.95753014400017,72.14154694200006],[145.94166100400005,72.15497467700006],[145.91138756600006,72.16083405200003],[145.87696373800011,72.15908437700001],[145.84937584700018,72.16217682500009],[145.83912194100017,72.1828473980001],[145.85385175900015,72.19106679900001],[145.8908797540001,72.19599030200008],[145.90748131600006,72.20335521000005],[145.8800561860002,72.21906159100003],[145.84253991000017,72.23004791900009],[145.6920679050002,72.2572695980001],[145.65202884200008,72.25560130400008],[145.61329186300023,72.24433014500009],[145.70199629000004,72.217027085],[145.71599368600008,72.21832916900009],[145.7296655610002,72.22190989800006],[145.74146569100017,72.22125885600003],[145.75033613400004,72.20962148600002],[145.7485457690002,72.20547109600007],[145.73853600400003,72.19122955900015],[145.72339928500006,72.16217682500009],[145.63379967500006,72.09349192899998],[145.62924238400015,72.09113190300003],[145.62525475400017,72.09243398600013],[145.62191816500004,72.09235260600015],[145.62012780000023,72.08608633000001],[145.62110436300023,72.08026764500015],[145.62501061300011,72.07811107000003],[145.62989342500006,72.076646226],[145.63379967500006,72.07298411700005],[145.64096113400004,72.06073639500006],[145.65072675900015,72.04881419500013],[145.67400149800008,72.03286367400004],[145.69703209700006,72.03148021000014],[145.75033613400004,72.03888580900004],[145.79127037900005,72.02830638200007],[145.8004663420002,72.00731028900005],[145.80152428500017,71.9832217470001],[145.81812584700006,71.96320221600014],[145.81299889400012,71.95331452000012],[145.8095809250001,71.935777085],[145.80567467500012,71.92902252800015],[145.79029381600017,71.92007070500004],[145.76929772200006,71.91380442900008],[145.74756920700017,71.909898179],[145.56674238400004,71.90607330900015],[145.32935631600006,71.8709984400001],[145.30469811300023,71.87783437700001],[145.2561141290001,71.90745677300004],[145.16187584700012,71.934027411],[145.078461134,71.94061920800006],[145.02214603000002,71.95408763200005],[144.99073326900012,71.97455475500011],[144.97095787900017,71.98029205900009],[144.962168816,71.96662018400013],[144.96021569100017,71.95490143400015],[144.95679772200003,71.944769598],[144.9562280610002,71.93451569200009],[144.962168816,71.92226797100001],[144.97437584700015,71.9137230490001],[145.0120548840001,71.89988841400002],[145.02711022200018,71.8911807310001],[145.06332441500004,71.8800316430001],[145.18873131600017,71.85602448100006],[145.21599368600008,71.84332916900009],[145.1964624360002,71.81305573100009],[145.1513778000001,71.80390045800002],[145.101817254,71.80072663000014],[145.02906334700006,71.770656643],[144.92676842500012,71.78253815300015],[144.88640384200008,71.77138906500012],[144.92066491,71.74347565300009],[144.90113366000006,71.73257070500001],[144.90626061300023,71.69887929900001],[144.89323978000007,71.6751976580001],[144.92066491,71.69171784100017],[144.95346113400004,71.70172760600015],[144.98560631600017,71.70018138200011],[145.01059004,71.68203359600001],[145.00310306100002,71.6751976580001],[145.02279707099999,71.67601146000003],[145.05738366000017,71.69212474199999],[145.07813561300006,71.69627513200011],[145.10450280000003,71.6928571640001],[145.15650475400003,71.67804596600003],[145.1813257170002,71.6751976580001],[145.20590254000004,71.67853424700003],[145.2280379570001,71.68402741100006],[145.25074303500006,71.6867129580001],[145.2768660820001,71.68203359600001],[145.2828882170002,71.678168036],[145.29053795700023,71.66779205900009],[145.29883873800011,71.66327545800006],[145.30933678500017,71.66103750200007],[145.32129967500012,71.66030508000013],[145.33326256600006,71.66107819200006],[145.3437606130001,71.66327545800006],[145.56999759200008,71.74095286699999],[145.72999108200023,71.72980377800015],[145.8271590500002,71.74762604400003],[145.92269941500004,71.77643463700015],[145.950450066,71.78119538000006],[146.00904381600006,71.78123607000005],[146.03630618600002,71.78636302300006],[146.10010826900006,71.80906810100011],[146.15650475400005,71.82070547100004],[146.258555535,71.87946198100003],[146.33130944100017,71.89931875200013],[146.35303795700023,71.90167877800017],[146.36540774800008,71.905951239],[146.37208092500023,71.91616445500013],[146.37720787900005,71.92845286699999],[146.38379967500012,71.93927643400016],[146.40064537900005,71.94912344],[146.46924889400023,71.97003815300015],[146.58961022200018,72.04197825700011],[146.6194767590001,72.07485586100002],[146.63062584700018,72.07990143400004],[146.67042076900006,72.08714427300004],[147.1046655610002,72.30556875200001],[147.148692254,72.32054271000005],[147.19556725400017,72.32990143400018],[147.24382571700016,72.33307526200004],[147.3300887380002,72.32355377800015],[147.43392988399998,72.33991120000015],[147.66504967500012,72.32558828300006],[147.7467554050002,72.33881256700012],[148.12403405000006,72.32420482000002],[148.40202884200008,72.31093984600007],[148.6834416025001,72.2811546895],[148.96485436300011,72.25136953300014],[149.36866295700023,72.18520742400007],[149.61133873800011,72.14838288],[149.672618035,72.12653229400014],[149.7085067070001,72.12466054900007],[149.72478274800002,72.12079498900005],[149.7301538420002,72.11676666900011],[149.73959394600004,72.10492584800015],[149.74463951900023,72.1003278670001],[149.9513452480002,71.99994538000014],[150.04330488400004,71.94139232],[150.06690514400023,71.92194245000009],[150.07422936300017,71.894232489],[150.05640709700015,71.8666445980001],[150.02003014400012,71.84857819200006],[149.70948326900006,71.7728945980001],[149.6696069670002,71.77118561400009],[149.6313582690002,71.78143952],[149.55486087300008,71.82225169500008],[149.47787519600016,71.85150788],[149.40796959700006,71.89671458500011],[149.36898847700016,71.90379466399999],[149.32911217500012,71.89704010600015],[149.28646894600016,71.881252346],[149.29615319100006,71.87750885600018],[149.3061629570001,71.87506745000003],[149.31641686300023,71.874009507],[149.32683353000002,71.8744570980001],[149.30372155000006,71.85521067900014],[149.23910566500004,71.83734772300006],[149.21070397200012,71.82599518400008],[149.195078972,71.81268952000006],[149.16553795700017,71.78131745000003],[149.14869225400017,71.77138906500012],[149.10621178500017,71.766791083],[148.9780379570002,71.79181549700012],[148.91700280000006,71.79511139500015],[148.86605879000015,71.81024811400015],[148.8504337900001,71.81256745000009],[148.83399498800006,71.81232330900015],[148.83399498800006,71.80613841399997],[148.891368035,71.77533600500011],[148.91285241000006,71.77138906500012],[149.03939863400012,71.764593817],[149.03939863400012,71.75775788],[149.02418053500017,71.74909088700008],[149.01002037900005,71.73419830900004],[149.00212649800008,71.71747467700011],[149.00521894600016,71.70311107000013],[148.909922722,71.70148346600011],[148.86605879000015,71.69537995000003],[148.82715905000018,71.6751976580001],[149.00310306100008,71.66766998900012],[149.02605228000002,71.67011139500006],[149.04525800899998,71.67743561400009],[149.08350670700023,71.697211005],[149.10157311300017,71.70311107000013],[149.12061608200023,71.70270416900003],[149.18287194100006,71.68878815300015],[149.31299889400023,71.6867129580001],[149.35873457100013,71.67731354400011],[149.77247155000012,71.647894598],[149.84424889400006,71.66559479400003],[149.86801191499998,71.66836172100007],[149.886485222,71.66510651200004],[149.90560957099999,71.65936920800006],[149.924082879,71.65721263200005],[149.95329837300008,71.66986725500011],[149.96509850400003,71.66278717700006],[149.98536217500023,71.641058661],[150.00416100400017,71.63165924700017],[150.06885826900012,71.61505768400012],[150.10206139400012,71.59471263200011],[150.085785352,71.5814883480001],[150.04525800900015,71.57428620000015],[150.00586998800006,71.57217031500011],[150.0079858730002,71.57953522300012],[150.01002037900005,71.5929629580001],[150.01205488400015,71.600043036],[149.98015384200002,71.60057200700005],[149.95167076900023,71.59162018400004],[149.93881269599999,71.57412344000008],[149.9547632170002,71.54889557500003],[149.96802819100006,71.53473541900009],[149.96461022200006,71.52936432500006],[149.93165123800017,71.52301666900011],[149.86801191499998,71.49701569200012],[149.87281334700018,71.48859284100008],[149.87435957100004,71.4798037780001],[149.87281334700018,71.47093333500005],[149.86801191499998,71.46222565300017],[149.89372806100002,71.47113678600012],[150.1171981130001,71.51569245000012],[150.277110222,71.52122630400011],[150.30193118600008,71.51894765800016],[150.32740319100014,71.51068756700006],[150.32195071700002,71.50942617400015],[150.30689537900005,71.50385163000006],[150.3271590500002,71.498521226],[150.3505965500001,71.50023021],[150.41773522200018,71.51764557500015],[150.43628991000017,71.51727936400015],[150.47820071700008,71.51068756700006],[150.57992597700004,71.51854075700005],[150.63502037900017,71.51496002800017],[150.67066491000006,71.49017975500011],[150.67017662900005,71.46637604400001],[150.65162194100006,71.44521719000004],[150.62574303500003,71.428900458],[150.603770379,71.41966380400014],[150.5703231130002,71.41087474200008],[150.55404707100004,71.40265534100017],[150.54712975400003,71.39057038000004],[150.5424910820001,71.37913646000011],[150.52800540500007,71.36566803600012],[150.53345787900017,71.36050039300012],[150.51514733200023,71.34642161699999],[150.49537194100012,71.34210846600008],[150.47461998800011,71.34125397300006],[150.45240319100006,71.33779531500006],[150.3912866550002,71.32086823100009],[150.35482832100004,71.3164737000001],[150.33822675900015,71.31053294499999],[150.30689537900005,71.295355536],[150.28288821700008,71.28823476800015],[150.23454837300008,71.2846133480001],[150.20980878999998,71.27973053600012],[150.0944116550002,71.23541901200015],[150.03663170700005,71.22760651200018],[150.02686608200023,71.22264232000013],[150.02963300899998,71.216253973],[150.04672285200004,71.20966217700011],[150.06861412900014,71.2080752620001],[150.09620201900006,71.21051666900003],[150.14454186300011,71.22138092700011],[150.24333743600002,71.26829661700008],[150.28012129,71.27789948100003],[150.40870201900023,71.28497955900009],[150.55779056100008,71.33917877800015],[150.61801191500004,71.37938060100005],[150.6569930350001,71.39028554900013],[150.73894290500002,71.39398834800006],[150.68140709700006,71.37201569200006],[150.660411004,71.35675690300009],[150.64332116000014,71.33319733300014],[150.62598717500006,71.29840729400009],[150.6132918630001,71.28436920800014],[150.59489993600005,71.27789948100003],[150.630137566,71.28485748900012],[150.6928817070001,71.31806061400015],[150.7594507170002,71.33331940300012],[150.82520592500018,71.36660390800002],[150.85873457100004,71.37417226800007],[151.03305097700016,71.39398834800006],[151.07129967500012,71.38825104400009],[151.14470462300002,71.36554596600014],[151.49244225400017,71.33315664300015],[151.55339603000007,71.316148179],[151.59115644600004,71.31024811400006],[151.60914147200006,71.30524323100012],[151.62256920700023,71.29804108300009],[151.64063561300017,71.28119538000009],[151.65040123800011,71.27423737200009],[151.66716556100013,71.267320054],[151.7014266290001,71.25775787999999],[151.7182723320001,71.25063711100013],[151.75440514400023,71.22793203300002],[151.76734459700006,71.22333405200006],[151.753184441,71.20966217700011],[151.7991642590001,71.18138255400008],[151.9057723320001,71.1420352230001],[151.94857832099999,71.10968659100017],[151.98853600400005,71.08730703300013],[152.10352623800023,71.05011627800013],[152.13672936300023,71.01727936400005],[152.1339624360002,70.99811432500009],[152.114024285,70.98920319200015],[152.06088300900004,70.98309967700006],[151.65748131600017,70.99054596600006],[151.68148847699996,70.97589752800003],[151.96908613400015,70.94481028900013],[152.21094811300006,70.880560614],[152.50489342500023,70.84784577000005],[152.54908287900005,70.82709381700006],[152.54078209700006,70.79132721600014],[152.5768335300002,70.82029857000003],[152.613047722,70.83462148600002],[152.79835045700023,70.83462148600002],[152.99024498800023,70.83462148600002],[153.31088300900004,70.857611395],[153.3274845710001,70.86115143400018],[153.31544030000018,70.87323639500009],[153.34815514400012,70.88251373900013],[153.4593205090001,70.88068268400013],[153.4531356130001,70.87323639500009],[153.6178491550002,70.88324616100006],[153.66374759200008,70.86102936400003],[153.93043053500006,70.89411041900014],[154.17872155000006,70.94212474200005],[154.23878014400006,70.96499258000016],[154.4884139330002,70.98442210500015],[154.73804772200006,71.00385163000006],[155.0294702480002,71.03314850500009],[155.4798283210001,71.0615908870001],[155.50757897200006,71.05735911699999],[155.52198326900012,71.045152085],[155.5190535820001,71.034328518],[155.49903405000023,71.01447174700009],[155.49463951900023,71.00421784100017],[155.50147545700005,70.99258047100007],[155.51563561300011,70.9806582700001],[155.52979576900012,70.97622304900015],[155.5361434250002,70.98680247600011],[155.53744550900015,70.99559153899999],[155.54102623800011,71.00804271],[155.54639733200005,71.019232489],[155.55298912900005,71.02411530200008],[155.565684441,71.02944570500011],[155.59099368600005,71.05565013200008],[155.6045028000001,71.06565989800005],[155.62956790500002,71.0724144550001],[155.93637129000004,71.09935130400005],[156.2873641290001,71.08612702000012],[156.68458092500018,71.092718817],[156.98572838600006,71.0836245790001],[157.28687584700018,71.0745303410001],[157.58578535200004,71.07485586100005],[157.64112389400012,71.06488678600012],[157.69434655000003,71.06745026200004],[157.77344811300006,71.05426666900009],[157.98910566500015,71.04751211100016],[158.18067467500023,71.01040273600013],[158.27955162900014,71.00543854400009],[158.36939537900017,70.98053620000013],[158.52361087300008,70.96881745000015],[158.8807072275001,70.89905426650016],[159.2378035820001,70.82929108300006],[159.68946373800006,70.6709658870001],[159.84310957100004,70.581529039],[160.02491295700023,70.4194196640001],[160.05258222700004,70.37177155200014],[160.08073978000013,70.33331940300003],[160.09424889400012,70.30988190300015],[160.10434004000015,70.28473541900009],[160.10629316500004,70.26373932500003],[160.08814537899997,70.2383487000001],[160.02100670700023,70.21067942900011],[159.99366295700005,70.19208405200011],[159.95866946700008,70.14105866100012],[159.9382430350001,70.12848541900006],[159.90088951900023,70.12661367400007],[159.73755944100006,70.145941473],[159.68864993600008,70.13397858300004],[159.7182723320001,70.13296133000001],[159.74439537900017,70.12620677300006],[159.79664147200018,70.10602448100003],[159.82593834700018,70.10309479400003],[159.88998457100016,70.10765208500005],[159.91456139400006,70.09857819200006],[159.86963951900006,70.07217031500006],[159.851328972,70.05491771000004],[159.84636478000007,70.03034088700015],[159.85230553500017,70.02252838700015],[159.86280358200023,70.01455312700001],[159.86931399800002,70.005031643],[159.86304772200018,69.99282461100013],[159.84864342500023,69.98578522300006],[159.786957227,69.97260163000011],[159.760996941,69.96185944199999],[159.73609459700018,69.94725169499999],[159.69206790500007,69.9108747420001],[159.68897545700005,69.89077383000016],[159.7099715500001,69.871486721],[159.76303144600016,69.83856842700014],[159.72966556100008,69.83856842700014],[159.74463951900012,69.83112213700015],[159.77540123800006,69.82176341400013],[159.79037519600004,69.81492747600011],[159.80111738400004,69.80703359600012],[159.80209394599999,69.80190664300004],[159.79883873800023,69.7963727890001],[159.79664147200018,69.787339585],[159.78842207100016,69.77480703300009],[159.76905358200023,69.76203034100014],[159.83269290500002,69.783880927],[159.86182701900006,69.78986237200012],[159.88697350400017,69.78754303600013],[160.13721764400023,69.7180850280001],[160.1694442070001,69.70327383000011],[160.18897545700005,69.70197174700014],[160.15186608200017,69.72044505400008],[160.14112389400023,69.72866445500007],[160.25586998800011,69.71869538000009],[160.2920028000001,69.70880768400013],[160.31185957100004,69.70001862200009],[160.320567254,69.69009023600009],[160.32154381600017,69.67593008000007],[160.31861412900017,69.654201565],[160.38396243600008,69.67487213700012],[160.44906660200016,69.68545156500006],[160.51596113399998,69.68720123900006],[160.7194930350001,69.66518789300007],[160.84839928500014,69.63507721600001],[160.865489129,69.63397858300009],[160.89722741000017,69.64622630400005],[160.91504967500023,69.64671458500013],[160.925547722,69.6420759140001],[160.93360436300023,69.63491445500007],[160.94076582099999,69.62677643400006],[160.94922936300023,69.61945221600014],[160.99463951900012,69.59316640800004],[161.00635826900012,69.577337958],[160.99024498800023,69.56110260600006],[160.95899498800003,69.54022858300009],[160.94507897200015,69.51703522300014],[160.93653405000015,69.49103424700014],[160.92123457100004,69.46181875200004],[160.93775475400017,69.44013092700014],[160.94125410200016,69.43178945500007],[160.94239342500012,69.417425848],[160.94629967500012,69.40302155200011],[160.95606530000023,69.39484284100001],[160.96941165500004,69.38686758000007],[160.98340905000012,69.37299225500009],[160.98845462300008,69.36176178600009],[160.9931746750002,69.338812567],[161.00049889400017,69.32831452000012],[161.00928795700023,69.31899648600007],[161.01710045700023,69.3076846370001],[161.022715691,69.295599677],[161.0249129570001,69.28367747600005],[161.02173912900005,69.27081940300002],[161.01441491000006,69.26007721600011],[161.00709069100006,69.25177643400004],[161.00391686300006,69.24607982000005],[161.0085555350001,69.23395416900013],[161.03077233200017,69.20913320500001],[161.03858483200023,69.19489166900007],[161.03598066500015,69.16266510600015],[161.0124617850001,69.14618561400006],[160.98324629000015,69.13178131699999],[160.96290123800017,69.10553620000016],[161.0590926440001,69.069566148],[161.2872827480002,69.04389069200015],[161.34034264400012,69.02753327000012],[161.3901473320001,69.00551992400004],[161.41537519600016,68.98200104400014],[161.41089928500014,68.96356842700011],[161.3940535820001,68.94342682500009],[161.3434350920002,68.89948151200015],[161.312347852,68.88239166900001],[161.29932701900012,68.87274811400013],[161.29135175900015,68.86212799700012],[161.28370201900012,68.840480861],[161.2788192070002,68.83120351800005],[161.2679142590001,68.82168203300007],[161.2412215500002,68.80548737200012],[161.22535241000006,68.79287344000012],[161.22185306100002,68.79328034100006],[161.2194116550002,68.792181708],[161.21680748800011,68.78400299700009],[161.21615644600016,68.77887604400016],[161.21713300900004,68.76813385600015],[161.21412194100006,68.7174339860001],[161.20964603000007,68.69208405200006],[161.19906660200002,68.68097565300003],[161.17090905000012,68.67279694200012],[161.14665774800002,68.65273672100005],[161.1069442070002,68.60521067900005],[161.03174889400023,68.56049225500011],[160.94239342500012,68.55390045800014],[160.75806725400017,68.56427643400004],[160.7794702480002,68.53945547100007],[160.82105553500017,68.52741120000015],[160.90821373800011,68.52334219],[161.04688561300023,68.53440989800005],[161.09644616000014,68.553168036],[161.12045332099999,68.55744049700003],[161.13412519600004,68.5614281270001],[161.14991295700008,68.57086823100012],[161.2566024100001,68.66608307500017],[161.27125084700012,68.67413971600011],[161.33082115999997,68.69196198100009],[161.34701582100016,68.701402085],[161.30616295700023,68.733343817],[161.2902938160001,68.75372955900009],[161.30648847700016,68.76642487200014],[161.31478925900004,68.78363678600005],[161.31910241000006,68.79022858300014],[161.32764733200023,68.79706452000006],[161.43230228000002,68.84601471600003],[161.477793816,68.8790550800001],[161.53337649800002,68.894964911],[161.55876712300008,68.90692780200014],[161.57406660200002,68.92112864800005],[161.5758569670002,68.932603257],[161.57081139400006,68.94651927299999],[161.56617272200006,68.96832916900001],[161.56706790500004,69.00169505400011],[161.56568444100017,69.01487864800005],[161.55876712300008,69.02977122600011],[161.54070071700008,69.047552802],[161.49919681100008,69.07192617400015],[161.48365319100006,69.09186432500003],[161.4817814460001,69.10040924700014],[161.48324629000015,69.11595286700006],[161.48047936300003,69.12295156500015],[161.4489038420002,69.15395742400007],[161.466075066,69.16852448100009],[161.46558678500006,69.18195221600008],[161.45346113400015,69.19415924700014],[161.43555748800006,69.204820054],[161.3992619150001,69.22125885600009],[161.4631453790001,69.28705475500004],[161.45720462300008,69.30158112200012],[161.4272567070001,69.31924062700001],[161.41537519600016,69.3314476580001],[161.45557701900023,69.33079661700005],[161.47559655000012,69.33454010600018],[161.48365319100006,69.34511953300012],[161.47738691499998,69.35561758000001],[161.4480086600001,69.370306708],[161.43580162900003,69.379868882],[161.47380618600002,69.39704010600012],[161.60035241000003,69.42829010600018],[161.62794030000023,69.44367096600003],[161.67644290500002,69.48232656500006],[161.70264733200005,69.49591705900004],[161.72632897200018,69.50023021000014],[161.74756920700005,69.5012067730001],[161.76807701900023,69.505601304],[161.804453972,69.529730536],[161.82374108200023,69.53465403900007],[161.84408613400015,69.53534577],[161.90503991000006,69.52521393400015],[161.945648634,69.52798086100002],[162.02556399800002,69.55117422100012],[162.01465905000023,69.57343170799999],[162.03028405000023,69.58397044500005],[162.08643639400023,69.59210846600017],[162.1264754570001,69.61005280200011],[162.13819420700005,69.61261627800002],[162.15308678500006,69.61371491100005],[162.168711785,69.61676666900014],[162.19629967500012,69.62628815300015],[162.17847741000006,69.62811920800014],[162.17221113400004,69.63336823100003],[162.17644290500002,69.64105866100014],[162.18970787900005,69.65045807500015],[162.20972741,69.65591054900001],[162.2304793630001,69.65363190300003],[162.2516382170001,69.64883047100012],[162.27182050900012,69.64671458500013],[162.29851321700008,69.65167877800008],[162.3178817070001,69.66290924700009],[162.32813561300011,69.67987702000006],[162.32715905000023,69.70197174700014],[162.34343509200008,69.70156484600012],[162.38851972700004,69.68154531500006],[162.40796959700006,69.67658112200003],[162.62134850400017,69.68154531500006],[162.6575626960001,69.67723216399999],[162.73023522200006,69.65851471600011],[162.76880944100006,69.654201565],[163.02312259200008,69.68549225500006],[163.089121941,69.70880768400013],[163.1650496750002,69.72089264500006],[163.30404707100016,69.72028229400011],[163.35377037900017,69.7074242210001],[163.39625084700006,69.71043528899999],[163.41635175899998,69.70880768400013],[163.461192254,69.69135163],[163.47787519600004,69.68773021000014],[163.58480878999998,69.684068101],[163.77303039900002,69.69440219400008],[163.89276446400007,69.73888248900006],[163.98226972700004,69.76459381700006],[164.02702884200005,69.77383047100001],[164.07276451900006,69.76850006700015],[164.10824629000015,69.75934479400017],[164.11939537900017,69.75287506700006],[164.12525475400005,69.74555084800005],[164.13038170700023,69.73069896],[164.13607832100004,69.725572007],[164.23707116000006,69.6826032570001],[164.31397545700023,69.66787344000012],[164.43913821700008,69.62075429900013],[164.53793379000004,69.60390859600012],[164.83425805,69.56740402800007],[165.26947092200007,69.5979535720001],[165.6747291390001,69.595977554],[165.73316491,69.58291250200001],[165.78923587300002,69.584662177],[165.94605553500006,69.55780670800003],[166.03199303500006,69.52968984600001],[166.0752059250002,69.52326080900009],[166.35242760500006,69.52846914250011],[166.62964928500006,69.533677476],[166.6925561860002,69.51479726800007],[166.69841556100002,69.50674062700013],[166.6782332690001,69.49591705900004],[166.893809441,69.49591705900004],[166.938731316,69.50210195500001],[167.22413170650012,69.59867991750009],[167.509532097,69.69525788],[167.53500410200004,69.713853257],[167.5869246750001,69.74079010600015],[167.67408287900005,69.77187734600007],[167.716481967,69.77708567900005],[167.80201256600006,69.77521393400009],[167.82960045700023,69.77024974200005],[167.84815514400023,69.76373932500015],[167.89161217500012,69.73956940300006],[167.938243035,69.72223541900014],[167.96257571700008,69.71698639500006],[167.98715253999998,69.7150332700001],[168.03614342500023,69.72052643400015],[168.05909264400023,69.71954987200017],[168.08334394600004,69.70880768400013],[168.0140080090001,69.68976471600017],[167.99097741,69.68773021000014],[167.97787519600004,69.68325429900007],[167.92644290500002,69.654201565],[167.9655054050002,69.63434479400009],[168.103282097,69.60578034100011],[168.21973717500023,69.56785716399999],[168.24097741000006,69.55829498899999],[168.25407962300017,69.54433828300004],[168.25660241000006,69.53168366100006],[168.25310306100002,69.52342357000008],[168.24642988399995,69.51520416900017],[168.24040774800008,69.50275299700014],[168.2394311860002,69.49286530200014],[168.24138431100005,69.47174713700004],[168.24040774800008,69.46181875200004],[168.23218834700018,69.44147370000003],[168.19206790500007,69.379868882],[168.2208764980002,69.35187409100017],[168.23267662900017,69.33637116100006],[168.24040774800008,69.31842682500012],[168.23113040500002,69.29877350500006],[168.24366295700023,69.27594635600003],[168.26661217500012,69.25543854400007],[168.2882593110002,69.24266185100005],[168.32862389400017,69.229478257],[168.37183678500017,69.22113678600012],[168.65805097700004,69.21356842700008],[168.85059655000018,69.18805573100018],[168.96461022200018,69.15192291900006],[169.0395613940002,69.14134349199999],[169.11443118600016,69.11424388200005],[169.15235436300023,69.10553620000016],[169.3042098320001,69.09772370000009],[169.37126712300008,69.07656484600007],[169.41976972700016,69.02362702000012],[169.43311608200017,68.97431061400015],[169.4345809250001,68.8867048200001],[169.45386803500006,68.84544505400007],[169.48414147200006,68.82168203300007],[169.52393639400023,68.80532461100013],[169.62549889400023,68.77724844000015],[169.98829186300006,68.80265941000006],[170.3510848320001,68.82807038],[170.37810306100008,68.82123444200006],[170.39966881600017,68.81232330900004],[170.42286217500012,68.80707428600014],[170.49390709700018,68.80019765800013],[170.55152428500006,68.77195872600008],[170.58472741000006,68.76227448100012],[170.6095483730002,68.75234609600001],[170.6251733730002,68.74860260600018],[170.54932701900023,68.79303620000009],[170.53638756600006,68.81126536699999],[170.54574629000015,68.81232330900004],[170.55176842500003,68.81488678600014],[170.563731316,68.8249372420001],[170.45866946700014,68.83173248900015],[170.44019616000008,68.84544505400007],[170.44922936300011,68.86347077],[170.4760848320001,68.87494538000014],[170.52898196700008,68.88580963700004],[170.59457441500015,68.90900299700014],[170.63306725400017,68.91815827000012],[170.65984134200008,68.91376373900006],[170.66195722700016,68.90717194200009],[170.65308678500006,68.89207591399999],[170.65251712300008,68.88580963700004],[170.66041100400005,68.8776716170001],[170.69402103000004,68.85846588700015],[170.69361412900005,68.84804922100007],[170.6989852220001,68.83698151200002],[170.70875084700006,68.8283552100001],[170.72201582100016,68.8249372420001],[170.72803795700005,68.821966864],[170.7257593110002,68.8397484400001],[170.7145288420002,68.85944245000003],[170.7076929050002,68.87588125200004],[170.70875084700006,68.8854841170001],[170.71338951900006,68.90135325700011],[170.7145288420002,68.91034577000015],[170.70972741,68.917425848],[170.687347852,68.93109772300015],[170.6804305350001,68.940375067],[170.75928795700023,68.953802802],[170.89437910200007,68.99323151200015],[170.91928144600004,69.006089585],[170.94044030000012,69.02362702000012],[170.95533287900014,69.04515208500005],[170.96094811300006,69.05027903900007],[170.97925866000006,69.05585358300009],[170.9920353520001,69.05280182500017],[171.01547285200016,69.03725820500007],[171.0503035820001,69.02773672100007],[171.15943444100006,69.03725820500007],[171.15943444100006,69.044094143],[171.070567254,69.04511139500006],[171.02759850400017,69.05475495000003],[171.0092879570001,69.08161041900011],[171.00570722700004,69.10504791900009],[170.99561608200017,69.12653229400003],[170.980235222,69.14435455900009],[170.96094811300006,69.15704987200014],[170.91944420700008,69.16498444200012],[170.90007571700008,69.17121002800017],[170.8921004570001,69.18439362200003],[170.89665774800008,69.194037177],[170.91846764400012,69.21283600500014],[170.92611738400015,69.22215403899999],[170.92986087300008,69.23403554900013],[170.92945397200018,69.24164459800006],[170.92741946700002,69.24896881700009],[170.92611738400015,69.25975169499998],[170.91309655000023,69.304144598],[170.88941491000003,69.3275820980001],[170.85865319100006,69.34682851800012],[170.7970483730002,69.3764102230001],[170.7630314460001,69.38483307500003],[170.74854576900023,69.39118073100013],[170.74244225400005,69.40412018400018],[170.743988477,69.43292877800012],[170.74244225400005,69.44135163000006],[170.73178144600004,69.45652903900005],[170.7179468110001,69.46222565300003],[170.702403191,69.46613190300003],[170.68718509200002,69.47606028900013],[170.67774498800011,69.488755601],[170.67644290500002,69.49811432500003],[170.67872155000012,69.50731028900002],[170.6804305350001,69.52016836100002],[170.66765384200008,69.54043203300013],[170.63835696700002,69.5668399110001],[170.6061304050002,69.58978913000003],[170.58415774800008,69.59955475500006],[170.51026855400005,69.60208845600009],[170.46698677900022,69.59532485500002],[170.2863467750001,69.57911656099998],[170.18041439800012,69.58463579500012],[170.1607329020002,69.61336663100003],[170.18821850600003,69.6407253630001],[170.23155301700015,69.68858894400013],[170.3026512910001,69.71180541400012],[170.35406850200016,69.72407360200002],[170.43315808500003,69.73765997300016],[170.50043003900012,69.740289094],[170.55997576200005,69.75385352500003],[170.59177555900013,69.76472476100007],[170.57056725400005,69.783880927],[170.56885826900012,69.791245835],[170.56251061300011,69.79507070500001],[170.55494225400005,69.79840729400001],[170.55005944100014,69.80438873900015],[170.54542076900023,69.82070547100007],[170.54623457100016,69.82562897300012],[170.55103600400005,69.83014557500007],[170.5568139980002,69.84540436400005],[170.55616295700014,69.881048895],[170.56031334700018,69.89036692900005],[170.5564884770001,69.89785390800002],[170.52930748800006,69.92511627800008],[170.52271569100012,69.93846263200011],[170.52735436300023,69.96320221600008],[170.53549238400015,69.98541901200007],[170.5387475920002,70.00706614800005],[170.52898196700008,70.03034088700015],[170.54127037899997,70.04043203300002],[170.5529077480002,70.057806708],[170.55933678500006,70.07697174700014],[170.5568139980002,70.09243398600007],[170.52995853000002,70.10553620000015],[170.40674889400023,70.11286041900014],[170.43246503999998,70.13410065300002],[170.4816186860002,70.142035223],[170.53419030000023,70.13963450700004],[170.61085045700008,70.11627838700015],[171.03809655000012,70.080755927],[171.31625410200016,70.0731875670001],[171.54753665500002,70.03856028900005],[171.9464624360002,70.005560614],[171.99447675899998,69.99306875200007],[172.3208113945001,69.98228587450002],[172.64714603000007,69.97150299700017],[172.7013452480002,69.98314036699999],[172.72535241000006,69.98086172100001],[172.76807701900017,69.96629466399999],[172.790782097,69.96271393400009],[172.79851321700014,69.92853424700012],[172.86068769600004,69.903469143],[173.1793725920002,69.845160223],[173.23633873800028,69.81867096600006],[173.22144615999994,69.81635163000009],[173.19947350400005,69.81004466400003],[173.18140709699998,69.80198802300002],[173.17774498800017,69.7941755230001],[173.19800866000017,69.783433335],[173.22087649800022,69.783392645],[173.26710045700025,69.790757554],[173.3684188160001,69.78998444200009],[173.4186304050002,69.79775625200007],[173.4622501960002,69.81867096600006],[173.4757593110002,69.8291690120001],[173.47925866000006,69.83576080900018],[173.47282962300025,69.84227122599998],[173.4412541020001,69.86050039300007],[173.4026798840002,69.87653229400014],[173.34351647200012,69.88865794500003],[173.29908287900005,69.90656159100008],[173.25367272200003,69.91868724199999],[173.20850670700023,69.9108747420001],[173.19597415500007,69.90094635600009],[173.18360436300011,69.88849518400018],[173.17269941500004,69.88117096600016],[173.16407311300023,69.88666413],[173.16089928500017,69.89996979400003],[173.1655379570001,69.90843333500005],[173.17554772200015,69.91449616100006],[173.18864993600002,69.92047760600018],[173.23015384200014,69.934271552],[173.27857506600012,69.94183991100012],[173.46078535200016,69.94855377800017],[173.7019149099999,69.88694896000013],[173.69467207099993,69.88458893400018],[173.68881269600016,69.88182200700011],[173.6826278,69.87982819200009],[173.67457116000006,69.87954336100013],[173.72974694100014,69.85968659100014],[173.73780358200023,69.85199616100012],[173.77759850400022,69.85285065300003],[173.76124108200023,69.86408112200003],[173.74341881599995,69.873277085],[173.78785241000023,69.88446686400003],[173.83570397200018,69.8710798200001],[173.88379967500018,69.85175202000009],[173.9284774100001,69.84540436400005],[173.9476017590002,69.85146719000014],[173.98454837300025,69.87173086100016],[174.00407962300014,69.87954336100013],[174.0261336600001,69.88397858300011],[174.07081139400017,69.88690827000015],[174.25513756600012,69.87824127800013],[174.3291121750003,69.887152411],[174.37403405000018,69.87641022300006],[174.78549238400012,69.854681708],[175.08838415700023,69.84574892800005],[175.1823836600001,69.84845612200014],[175.41691993100017,69.8667399900001],[175.50011468300016,69.873500481],[175.71554179300023,69.881453482],[175.72478883500006,69.87078951200006],[175.62303488000023,69.86305090400005],[175.5297365860002,69.85630401700003],[175.60174310700023,69.8433149780001],[175.69596541000024,69.83537610800015],[175.77065756599998,69.82037818800008],[175.8261680890001,69.79348012900012],[175.86322905400013,69.78889006900012],[175.9262011590001,69.77569230700006],[175.99717651800026,69.76936290100004],[176.0734904550002,69.76892671000009],[176.14348226200013,69.78209028600016],[176.15945327900008,69.80268728400013],[176.1576696370001,69.8214819120001],[176.14579227900023,69.83955204800006],[176.09974449800026,69.85844950600001],[176.00671251299994,69.85884089400015],[175.92014107400027,69.85550001900005],[175.84380156400007,69.86127351800017],[175.7902289200002,69.87308539300012],[175.781566228,69.88528289700004],[175.8669317450003,69.88494795400011],[175.9432323900002,69.88076607600006],[176.03757543600014,69.88575418600014],[176.08361367400013,69.89409223500009],[176.12761478000016,69.89378489800005],[176.14047285200022,69.8876000020001],[176.16374759200016,69.87010325700014],[176.17595462300008,69.86273834800012],[176.2540796230002,69.83030833500005],[176.27214603000013,69.81867096600006],[176.28223717500026,69.8014997420001],[176.2662866550002,69.79930247600011],[176.24301191500015,69.79901764500009],[176.23121178500008,69.787339585],[176.2420353520001,69.774359442],[176.26726321699996,69.77195872600005],[176.31316165500013,69.77708567900005],[176.50391686300017,69.75409577000009],[176.54859459700023,69.7375348980001],[176.62159264400023,69.72247955900009],[176.6391707690003,69.71588776200004],[176.68995201900012,69.68773021000014],[176.7345483730002,69.67475006700015],[176.82764733200017,69.66828034100014],[176.9768986340002,69.63442617400007],[177.1622827480001,69.61635976800007],[177.35792076900017,69.61717357000008],[177.64283287900022,69.57001373900007],[177.68295332100016,69.55117422100012],[177.64112389400026,69.55890534100014],[177.62094160200016,69.55703359600008],[177.60857181100013,69.54433828300004],[177.67855879000004,69.53148021],[177.74935957100016,69.53327057500009],[177.77125084700012,69.53139883],[177.89812259200025,69.49917226800007],[178.15601647200015,69.46181875200004],[178.21216881600017,69.44342682500017],[178.23170006600023,69.44135163000006],[178.24691816500018,69.44391510600015],[178.29997806100013,69.46181875200004],[178.29102623800026,69.47357819199999],[178.27735436300017,69.47992584800012],[178.2998153000003,69.4873721370001],[178.36491946700014,69.48680247600005],[178.77263431099996,69.415228583],[178.81072024800025,69.39370351800008],[178.87208092500012,69.38800690300009],[178.89633222699993,69.38296133000007],[178.92017662900022,69.37449778900013],[178.99268639400012,69.35936107000013],[179.04883873800011,69.33637116100006],[179.06771894600016,69.3314476580001],[179.06771894600016,69.32526276200004],[178.92383873800023,69.31842682500012],[178.89747155000018,69.3210309920001],[178.88705488400015,69.32998281500012],[178.8795679050002,69.34247467700014],[178.8623153000003,69.3559431010001],[178.83790123800017,69.36489492400015],[178.81055748800028,69.37006256700006],[178.75586998800011,69.37299225500009],[178.70045006600014,69.36579010600006],[178.6876733730002,69.36961497600005],[178.68018639400023,69.3768578150001],[178.6733504570001,69.38190338700012],[178.66618899800008,69.383286851],[178.65748131600012,69.379868882],[178.6643172540001,69.37360260600002],[178.66944420700023,69.36566803600009],[178.67107181100025,69.35712311400006],[178.65398196700016,69.31745026200004],[178.67351321700008,69.29779694200009],[178.70948326900017,69.28742096600008],[178.74561608200028,69.28367747600005],[178.86166425900015,69.29791901200015],[178.95785566500007,69.28367747600005],[178.986338738,69.28314850500009],[179.06771894600016,69.29791901200015],[179.26148522200012,69.27216217700011],[179.30591881600023,69.25787995000003],[179.36060631600017,69.22313060100004],[179.65955651150014,69.10940175999998],[179.95850670700028,68.99567291900009],[179.89958743600025,68.99941640800013],[179.8479923840002,69.01015859600015],[179.67628014400012,69.08128489799999],[179.62818444100017,69.09015534100003],[179.57691491000008,69.11090729400003],[179.54810631600017,69.11298248900006],[179.57203209700018,69.09271881700015],[179.62427819100003,69.07705312700007],[179.65056399800025,69.06460195500013],[179.66325931100025,69.05044179900013],[179.67579186300014,69.03204987200009],[179.69214928500017,69.01609935100008],[179.72999108200028,69.006537177],[179.759776238,68.99323151200015],[179.7740991550002,68.98883698100018],[180.00000000000017,68.98105032100001],[180.00000000000017,68.55955678700015],[180.00000000000017,68.0609418280001],[180.00000000000017,67.56232687000015],[180.00000000000017,67.063711911],[180.00000000000017,66.56509695300012],[180.00000000000017,66.06648199400014],[180.00000000000017,65.567867036],[180.00000000000017,65.06925207800005],[180.00000000000017,65.06618951300014],[179.8963322270001,65.05548737200014],[179.8286238940003,65.03119538000009],[179.80502363400015,65.02757396000011],[179.77955162899994,65.01821523600007],[179.71265709700023,64.95311107000003],[179.47868899800025,64.82273997600011],[179.45639082099993,64.818060614],[179.38990319100012,64.82273997600011],[179.29428144600016,64.80914948100015],[179.25001061300028,64.81122467700008],[179.20240319100012,64.79596588700012],[179.17115319100012,64.79266998900009],[179.03825931100008,64.74884674700012],[178.91179446700014,64.71539948100015],[178.75798587300014,64.64093659100008],[178.5615340500003,64.59153880400011],[178.51417076900015,64.59031810100011],[178.48560631600012,64.61050039300011],[178.53972415500024,64.62372467700008],[178.70191491000023,64.6439883480001],[178.71876061300023,64.64813873900012],[178.73316491000014,64.65814850500003],[178.75586998800011,64.68219635600003],[178.75017337300014,64.69171784100006],[178.72120201900023,64.69684479400014],[178.66773522200012,64.69928620000009],[178.64258873800017,64.69651927300013],[178.56804446700014,64.67877838700004],[178.21794681100013,64.65827057500017],[178.23780358200023,64.66327545800011],[178.26002037900014,64.66449616100014],[178.27344811300028,64.66933828300002],[178.25961347700007,64.68561432500013],[178.2405705090001,64.68878815300012],[178.08432050900004,64.6889102230001],[177.97836347700016,64.67194245000012],[177.96794681100016,64.67523834800014],[177.9625757170002,64.68305084800015],[177.9580184250003,64.69212474200005],[177.95118248800017,64.69928620000009],[177.9371850920002,64.70555247600014],[177.92676842500026,64.70734284100001],[177.74415123800028,64.70636627800015],[177.7195744150001,64.70897044500005],[177.6744897800002,64.72174713700018],[177.62501061300017,64.72016022300015],[177.60173587300014,64.72589752800003],[177.61117597700016,64.73314036700005],[177.64258873800017,64.74770742400007],[177.62468509200014,64.75259023600012],[177.5538843110002,64.78156159100014],[177.53516686300011,64.78587474200005],[177.49187259200025,64.78864166900011],[177.50342858200017,64.802964585],[177.5011499360001,64.8137067730001],[177.48845462300014,64.82046133000013],[177.46794681100008,64.82273997600011],[177.42709394600004,64.8210309920001],[177.4104923840001,64.8244489600001],[177.38941491000017,64.8358421900001],[177.4126082690003,64.84463125200016],[177.43824303500017,64.84882233300009],[177.49187259200025,64.850083726],[177.48275800900007,64.86163971600011],[177.46021569100012,64.87958405200006],[177.45085696700025,64.891058661],[177.44955488400004,64.89679596600008],[177.45337975400017,64.90501536699998],[177.45085696700025,64.91217682500003],[177.44548587300008,64.91986725500014],[177.4397892590002,64.92511627800002],[177.4329533210002,64.92902252800003],[177.42351321700016,64.932603257],[177.39991295700023,64.936468817],[177.31983483200028,64.932603257],[177.29810631600012,64.93463776200012],[177.25757897200003,64.94367096600003],[177.23829186300023,64.94562409100008],[177.2194116550002,64.95636627800009],[177.18864993600025,65.00844961100013],[177.16968834700012,65.02757396000011],[177.1511336600001,65.033677476],[176.99268639400017,65.05980052300005],[176.95630944100012,65.07855866100012],[176.9368595710002,65.08283112200003],[176.8549910820002,65.08283112200003],[176.81299889400017,65.07640208500011],[176.73047936300017,65.04828522300012],[176.6084090500003,65.03180573100003],[176.570811394,65.03351471600006],[176.5210067070002,65.05914948100008],[176.4982202480002,65.06452057500015],[176.45753014400023,65.06915924700009],[176.44971764400023,65.07119375200001],[176.44304446700022,65.07587311400012],[176.4365340500003,65.08161041900011],[176.42986087300014,65.08657461100016],[176.41863040500013,65.09023672100001],[176.40626061300014,65.09113190300009],[176.38135826900017,65.090277411],[176.39478600400017,65.064357815],[176.37110436300011,65.05467357000005],[176.30632571700014,65.05548737200014],[176.33570397200023,65.03815338700015],[176.37183678500017,65.03514232000008],[176.4438582690003,65.04189687700001],[176.45492597699993,65.03872304900013],[176.48438561300026,65.01459381700012],[176.49854576900023,65.00800202000013],[176.51343834700018,65.00381094],[176.54615319100023,65.00092194200009],[176.91472415500013,65.049302476],[176.95850670700017,65.04657623900012],[176.97779381600023,65.03131745000015],[176.99187259199996,65.01056549700014],[177.02263431100013,65.00165436400003],[177.05323326900023,64.99746328300007],[177.06723066500018,64.99038320500001],[177.08090254000015,64.9730899110001],[177.16968834700012,64.94562409100008],[177.17790774800014,64.93773021000003],[177.1844181650001,64.92877838700018],[177.1938582690003,64.92137278899999],[177.21062259200014,64.9183617210001],[177.2215275400002,64.91461823100015],[177.2308048840001,64.90546295800009],[177.24537194100017,64.8842227230001],[177.23780358200023,64.87978750200001],[177.23340905000023,64.87531159100014],[177.22429446700025,64.86371491100012],[177.27588951900012,64.850002346],[177.29769941500007,64.83844635600018],[177.30005944099995,64.82273997600011],[177.284678582,64.81488678600012],[177.20378665500024,64.79486725500006],[177.08033287900014,64.78119538000011],[177.05372155000023,64.77464427300005],[177.03980553500017,64.77277252800017],[177.0256453790002,64.77435944200003],[177.01636803500017,64.7792015650001],[177.0008244150002,64.79222239799999],[176.95004316500012,64.8036563170001],[176.88559004000015,64.84210846600003],[176.84815514400023,64.850083726],[176.62614993600016,64.86790599200008],[176.61133873800023,64.86497630400014],[176.59734134200025,64.85382721600003],[176.5673934250003,64.83649323100003],[176.53565514400017,64.82273997600011],[176.51596113400007,64.82062409100011],[176.47584069100012,64.81122467700008],[176.45753014400023,64.80914948100015],[176.43580162900017,64.81093984600015],[176.4318139980002,64.81647370000015],[176.43279056100025,64.82599518400015],[176.42644290500013,64.83954498900012],[176.3971460300002,64.8599307310001],[176.24170983200017,64.901068427],[176.22413170700017,64.90912506700012],[176.2068791020002,64.92177969],[176.18873131600023,64.92796458500005],[176.11109459700012,64.92519765800002],[176.09066816500018,64.93162669500009],[176.06519616000023,64.95864492400005],[176.0456649099999,64.962795315],[176.0286564460001,64.95880768400004],[175.98357181100016,64.93549225500011],[175.95484459700023,64.92495351800007],[175.9462996750002,64.9186872420001],[175.94336998800023,64.91364166900009],[175.9425561860002,64.90289948100015],[175.93946373800028,64.89789459800012],[175.89861087300022,64.86375560100011],[175.86768639400012,64.84503815300015],[175.78809655000018,64.82648346600014],[175.75473066500012,64.80882396000014],[175.71461022200018,64.79364655200006],[175.5627547540001,64.811957098],[175.51246178500023,64.80670807500003],[175.41391035200016,64.78363678600006],[175.28923587300008,64.77537669499999],[175.2407332690003,64.78681061400012],[175.22388756600012,64.78245677300013],[175.2080184250003,64.77496979400017],[175.18620853000024,64.77098216400002],[175.04078209700018,64.77806224200005],[174.9904077480001,64.77098216400002],[174.86394290500013,64.71478912999999],[174.7957462900002,64.70335521000013],[174.7503361339999,64.6889102230001],[174.72689863400015,64.68561432500013],[174.44174238400015,64.69245026200015],[174.47706139400017,64.67597077000009],[174.51905358200023,64.67039622600007],[174.77173912900005,64.680650132],[175.02247155000012,64.754584052],[175.10718834700023,64.76479726800011],[175.27849368600008,64.75055573100012],[175.5905054050002,64.78937409100006],[175.624522332,64.77472565300003],[175.65748131600017,64.76764557500015],[175.7116805349999,64.77472565300003],[175.8409936860001,64.81045156500005],[175.85767662900017,64.81899648600007],[175.8714298840001,64.82965729400011],[175.887054884,64.83877187700001],[175.92465254000015,64.84829336100009],[175.93946373800028,64.85663483300009],[175.98096764400026,64.90094635600012],[176.0046492849999,64.91535065300009],[176.03874759200014,64.92182038],[176.08236738400004,64.91893138200005],[176.12671959700012,64.90827057500003],[176.2101343110002,64.87396881700006],[176.2732853520001,64.82489655200011],[176.28044681100013,64.8167992210001],[176.2926538420002,64.79486725500006],[176.3032332690002,64.78070709800015],[176.3167423840002,64.767482815],[176.33301842500012,64.75763580900018],[176.36459394600016,64.74994538000006],[176.37566165500024,64.74087148600016],[176.3855086600001,64.73045482000008],[176.39568118600013,64.72284577000012],[176.41504967500018,64.71474844],[176.42367597700013,64.7096214860001],[176.42009524800008,64.70351797100001],[176.40251712300025,64.69245026200015],[176.38396243600025,64.6832542990001],[176.326670769,64.66571686400006],[176.1823836600001,64.64716217700006],[176.14527428500017,64.62759023600007],[176.11947675900015,64.59788646000004],[176.1145125660002,64.59003327000006],[176.10499108200023,64.55634186400006],[176.10084069100003,64.5484072940001],[176.11426842500018,64.541937567],[176.1179305350001,64.548000393],[176.11833743600013,64.55955638200011],[176.12134850400022,64.56952545800011],[176.1339624360001,64.57929108300006],[176.2099715500003,64.62006256700012],[176.2462671230002,64.62372467700008],[176.28443444100017,64.62140534100011],[176.326670769,64.62417226800007],[176.36841881600023,64.63426341400013],[176.38917076900017,64.64288971600006],[176.40593509199996,64.65485260600015],[176.42888431099996,64.67894114799999],[176.44223066500007,64.68854401200014],[176.45753014400023,64.69245026200015],[176.5417586599999,64.68431224200005],[176.58228600400017,64.673732815],[176.68995201900012,64.62759023600007],[176.70167076900023,64.61810944200006],[176.7273869150001,64.57916901200018],[176.74293053500008,64.57123444200012],[176.75953209700023,64.57387929900001],[176.79297936300026,64.59003327000006],[176.8193465500003,64.59747955900006],[176.8283797540002,64.60301341400007],[176.8322046230002,64.60932038000003],[176.82992597700016,64.61444733300011],[176.82691490999994,64.61912669500013],[176.8283797540002,64.62417226800007],[176.8546655610002,64.64264557500009],[176.91968834700018,64.67011139500012],[176.98585045700023,64.71112702000015],[177.0335392590002,64.71857330900012],[177.12818444100012,64.71971263200005],[177.16944420700017,64.72654857],[177.2125757170002,64.73867422100007],[177.29281660199993,64.770941473],[177.3383895190003,64.78148021000005],[177.49187259200025,64.767523505],[177.48015384199994,64.73639557500009],[177.45240319100012,64.68549225500009],[177.44947350400005,64.67348867400015],[177.45427493599996,64.662014065],[177.45525149800014,64.65216705900009],[177.44483483200017,64.64301178600003],[177.42017662900017,64.62759023600007],[177.41228274800022,64.61762116100009],[177.39861087300014,64.59406159100006],[177.38941491000017,64.58258698100009],[177.37142988400015,64.57143789300005],[177.3642684250003,64.56321849199999],[177.3615014980002,64.5484072940001],[177.3693953790001,64.52167389500009],[177.3873804050001,64.49188873900009],[177.4266056650001,64.44232819200013],[177.45362389400026,64.42064036700008],[177.5538843110002,64.37775299700009],[177.59473717500018,64.34194570500007],[177.62224368600008,64.33295319200006],[177.66993248800023,64.305121161],[177.68970787900017,64.29734935100011],[177.73210696699996,64.288275458],[177.81332441500015,64.25421784100008],[178.00001061300017,64.21035390800013],[178.1838485040001,64.20579661699999],[178.1838485040001,64.21320221600017],[178.10084069100023,64.23786041900017],[178.0745548840002,64.25421784100008],[178.10254967500023,64.27065664300008],[178.19752037900022,64.29523346600008],[178.2166447270002,64.30353424700017],[178.23438561300028,64.31391022300005],[178.25066165499996,64.32684967700008],[178.26587975399994,64.34296295800014],[178.28256269600007,64.353989976],[178.27865644600013,64.36530182500017],[178.26628665500013,64.37396881700006],[178.24390709700012,64.40009186400012],[178.22779381599995,64.41868724200013],[178.21794681100013,64.42682526200004],[178.2021590500003,64.42255280200011],[178.1838485040001,64.41128164300012],[178.19361412900014,64.42084381700012],[178.20020592500023,64.43113841400005],[178.2000431650001,64.44017161700005],[178.22201582100016,64.42942942900014],[178.39991295700023,64.243353583],[178.40919030000018,64.229925848],[178.4303491550002,64.17853424700009],[178.44076582100013,64.1651878930001],[178.5647078790001,64.06061432500009],[178.58863366000023,64.03510163],[178.5550236340002,64.04515208500008],[178.51880944100012,64.06171295800014],[178.48406009200025,64.07086823100012],[178.45484459700012,64.05874258000004],[178.44434655000023,64.05097077000012],[178.42896569100012,64.0433617210001],[178.41277103000013,64.03742096600014],[178.39991295700023,64.03510163],[178.3825789720001,64.000962632],[178.46827233200028,63.992621161000116],[178.4924422540001,63.98672109600009],[178.46631920700023,63.980169989],[178.3825789720001,63.979234117000125],[178.3825789720001,63.97304922100015],[178.4072371750003,63.967230536],[178.4889429050002,63.97304922100015],[178.5332137380002,63.97036367400007],[178.6160587900001,63.94887929900015],[178.6394149100001,63.94635651200004],[178.65691165500013,63.949164130000085],[178.65984134199996,63.96312083500005],[178.65235436300017,63.97553131700008],[178.64771569100003,63.98651764500012],[178.6364038420002,63.99347565300004],[178.64323978000016,64.000962632],[178.69385826900017,63.91046784100005],[178.69841556100013,63.89736562700006],[178.6980900400001,63.88686758000009],[178.69174238400015,63.86782461100002],[178.69109134200014,63.85639069200015],[178.69467207100018,63.846340236000074],[178.70834394600016,63.82318756700012],[178.71680748800017,63.78725820500016],[178.74024498800017,63.737127997000144],[178.76286868600013,63.642767645000085],[178.75928795700023,63.62299225500005],[178.74195397200018,63.64032623900006],[178.72282962300025,63.650864976000115],[178.7015080090002,63.65623607000008],[178.6772567070002,63.65770091400013],[178.65512129000004,63.662298895000056],[178.63135826900023,63.67104726800015],[178.60857181100013,63.67649974199999],[178.58863366000023,63.671372789000074],[178.6027124360002,63.65790436400008],[178.62525475400017,63.641994533000066],[178.64909915500013,63.62860748900006],[178.6670028000003,63.62299225500005],[178.69703209700023,63.621527411],[178.72461998800014,63.61676666900012],[178.7330835300002,63.608343817000055],[178.7053328789999,63.595648505],[178.66456139400023,63.58828359600001],[178.64144941499993,63.587713934000035],[178.62614993599993,63.592515367000104],[178.62086022200018,63.59967682500015],[178.61622155000023,63.61416250200001],[178.6121525400002,63.61985911699998],[178.5900985040001,63.632717190000044],[178.5610457690003,63.64142487200009],[178.53109785200016,63.643622137000094],[178.50603274800014,63.63666413],[178.53239993600025,63.63165924700014],[178.5268660820001,63.61371491100011],[178.50228925899992,63.5969098980001],[178.47193444099995,63.595648505],[178.46794681100025,63.59967682500015],[178.46558678500023,63.60639069200001],[178.46461022199995,63.61383698100017],[178.46452884199996,63.61985911699998],[178.45997155,63.62299225500005],[178.4303491550002,63.62299225500005],[178.3719181650001,63.63068268400018],[178.3552352220002,63.630438544000135],[178.3411564460001,63.6258812520001],[178.3315535820001,63.61823151200014],[178.32341556100013,63.60968659100014],[178.3142195970002,63.602484442000026],[178.26840254000015,63.58844635600015],[178.25961347700007,63.581976630000064],[178.26880944100017,63.56541575699999],[178.29371178500017,63.54873281500015],[178.34148196700014,63.52741120000009],[178.37232506600012,63.52236562700015],[178.40023847700016,63.526922919000086],[178.426280144,63.538519598000036],[178.48218834700018,63.57184479400011],[178.50953209700023,63.57851797100015],[178.67546634200014,63.563706772999986],[178.6810001960001,63.5649274760001],[178.68848717500023,63.57273997599999],[178.6930444670002,63.57534414300009],[178.69841556100013,63.57518138200014],[178.7112736340001,63.57001373900011],[178.71306399800022,63.5658226580001],[178.71070397200018,63.559719143],[178.71143639400023,63.548529364],[178.71827233200023,63.54059479400003],[178.7267358730002,63.53620026200015],[178.72901451900023,63.53119538000011],[178.71762129000018,63.52118561400012],[178.73511803500023,63.51300690300012],[178.73585045700028,63.50495026200017],[178.7292586600001,63.497219143000066],[178.72510826900017,63.489488023000085],[178.72022545700028,63.47646719000007],[178.7080184250003,63.47109609600003],[178.6779077480002,63.46653880400008],[178.66309655,63.45966217700005],[178.65609785200022,63.45307038],[178.65154056100016,63.446234442000055],[178.64323978000016,63.43866608300011],[178.60320071699996,63.419094143000144],[178.59546959700018,63.41132233300005],[178.66358483200025,63.39036692900002],[178.69898522200012,63.38568756700008],[178.81576582100016,63.4196638040001],[178.83838951900012,63.43488190300009],[178.82447350400003,63.455511786000116],[178.7861434250002,63.49298737200014],[178.7542423839999,63.53827545800009],[178.75928795700023,63.581976630000064],[178.7708439460001,63.59393952000009],[178.77702884200025,63.595160223],[178.77947024800022,63.58710358300008],[178.77963300900012,63.571478583],[178.7819116550002,63.561468817],[178.79118899799997,63.5441755230001],[178.79997806100025,63.51227448100009],[178.8156030610002,63.49115631700009],[179.00554446700025,63.32135651200015],[178.96045983200017,63.33734772300006],[178.90365644600016,63.37571849199999],[178.84815514400015,63.404201565],[178.80713951900017,63.390204169000064],[178.80933678500006,63.35049062700013],[178.91830488400015,63.32518138199999],[178.93116295700028,63.294012762000094],[179.0293074880002,63.28717682500017],[179.05469811300028,63.2809919290001],[179.13200931100016,63.23834870000018],[179.1608992850001,63.232611395],[179.1790470710001,63.234930731000176],[179.19483483200017,63.239447333000115],[179.21168053500017,63.242254950000174],[179.2327580090001,63.239406643000116],[179.2995711600001,63.21458567899999],[179.33480879000015,63.196478583000086],[179.34205162900017,63.188177802],[179.3479110040001,63.175848700000145],[179.36117597700016,63.16974518400015],[179.3759871750003,63.16608307500012],[179.38648522200015,63.16120026200004],[179.40739993599996,63.141343492000125],[179.41334069100012,63.132391669000114],[179.41781660200016,63.11652252800017],[179.41960696700022,63.07721588700015],[179.41781660200016,63.068060614],[179.40365644600018,63.0554059920001],[179.387705925,63.05683014500009],[179.37061608200028,63.06391022300015],[179.35230553500023,63.068060614],[179.33139082100004,63.066107489000146],[179.3112085300002,63.06077708500008],[179.2736108730002,63.044134833000115],[179.24870853000004,63.02582428600005],[179.24195397200023,63.006496486000124],[179.24952233200028,62.98468659100008],[179.2917586600001,62.92747630400011],[179.31617272200006,62.906154690000065],[179.34571373800023,62.89386627800008],[179.47087649800025,62.884711005000106],[179.51172936300026,62.87250397300015],[179.5407007170002,62.84894440300008],[179.54493248800011,62.83665599200004],[179.5467228520001,62.80841705900018],[179.55128014400023,62.79779694200012],[179.56324303500014,62.78587474200002],[179.57032311300017,62.78168366100006],[179.57846113400015,62.78009674700003],[179.58448326900026,62.77716705900012],[179.58716881600017,62.77033112200008],[179.5890405610002,62.762396552000105],[179.5968530610002,62.747870184000085],[179.60743248800023,62.71552155200009],[179.60906009200008,62.70563385600015],[179.6020613940003,62.69330475500011],[179.5901798840001,62.68545156500013],[179.57764733200017,62.67902252800003],[179.56804446700025,62.67084381700012],[179.55860436300023,62.658148505000064],[179.55958092500023,62.65375397300006],[179.56462649799997,62.64386627800015],[179.5672306650001,62.63597239799999],[179.56690514400023,62.62933991100011],[179.56299889400017,62.624741929],[179.55469811300014,62.62303294499999],[179.4651798840002,62.62303294499999],[179.43344160199993,62.61611562700008],[179.42261803499994,62.59821198100003],[179.4192814460002,62.57379791900017],[179.41041100400005,62.547308661],[179.38363691500015,62.520819403000026],[179.34913170700014,62.50649648600013],[179.31104576900017,62.500677802],[179.1901961600002,62.50324127800009],[179.1487736340002,62.496039130000085],[179.11605879000012,62.472235419000164],[179.11264082100007,62.448309637000115],[179.1495874360002,62.41779205900017],[179.1349389980002,62.38027578300015],[179.1398218110002,62.365912177],[179.1471460300002,62.352443752],[179.1504012380002,62.34186432500014],[179.14568118600013,62.33307526200017],[179.13672936300026,62.323675848000065],[179.10328209700023,62.29791901200012],[179.08952884200014,62.28974030200011],[179.0735783210001,62.28717682500012],[179.05469811300028,62.294094143],[179.0451766290001,62.31513092700013],[179.04102623800017,62.32143789300006],[179.03451582100016,62.32615794499999],[178.9772241550002,62.352972723000086],[178.93816165500021,62.36603424700014],[178.81609134200016,62.38133372600011],[178.73796634200025,62.403550523000085],[178.48943118600016,62.436835028000175],[178.37574303500023,62.472235419000164],[178.30209394600016,62.47455475500014],[178.26392662900008,62.488714911000066],[178.18881269600016,62.50299713700015],[178.12867272200012,62.52749258000009],[178.06104576900023,62.541083075000145],[177.89380944099995,62.56037018400018],[177.6803491550001,62.57526276200003],[177.30681399800025,62.582098700000145],[177.31666100400022,62.58515045800014],[177.3265080090002,62.58641185100005],[177.34107506600017,62.588324286000116],[177.3054305350001,62.60569896],[177.26587975400017,62.615627346000096],[177.3076278000003,62.65517812700013],[177.31690514400017,62.675197658000016],[177.32390384200014,62.68036530200011],[177.33106530000023,62.684271552000105],[177.3341577480001,62.68817780200003],[177.33326256600014,62.69692617400007],[177.32447350400017,62.727728583000065],[177.32032311300023,62.731390692],[177.31788170700023,62.73566315300011],[177.31983483200028,62.74591705900003],[177.32374108200017,62.75145091400008],[177.3387150400001,62.764471747000144],[177.34441165500007,62.76703522300014],[177.41797936300023,62.77313873900014],[177.42969811300017,62.770453192000055],[177.42790774800022,62.77887604400012],[177.42481530000018,62.786037502000156],[177.42432701900017,62.79222239800013],[177.4303491550002,62.79779694200012],[177.44613691500012,62.80369700700008],[177.45443769599993,62.80853913000006],[177.45777428500023,62.81484609600009],[177.44434655000023,62.82221100499999],[177.36524498800017,62.81484609600009],[177.33253014400012,62.80678945500015],[177.30054772200012,62.78652578300013],[177.27247155000023,62.759914455000015],[177.25163821700014,62.73289622600005],[177.2566837900001,62.72785065300003],[177.26587975400017,62.71246979400009],[177.1889754570002,62.70966217700013],[177.1554468110002,62.71963125200013],[177.12818444100012,62.74591705900003],[177.1533309250003,62.77757396000011],[177.15601647200018,62.78693268400014],[177.14795983200023,62.79584381700008],[177.10132897200023,62.82225169499999],[177.04851321699996,62.83441803600006],[177.0319116550002,62.84153880400011],[177.02833092500023,62.846096096000146],[177.02784264400023,62.85154857000002],[177.02613366000023,62.85748932500003],[177.0195418630002,62.86322663],[177.00953209700018,62.867254950000145],[176.99927819100014,62.8696149760001],[176.99219811300017,62.869452216000134],[176.9752710300002,62.862005927000084],[176.9792586600001,62.841009833000136],[176.9930119150002,62.81708405200008],[177.00586998800011,62.801214911000145],[176.99830162900017,62.794378973000114],[177.01295006600012,62.78595612200017],[177.0310164720001,62.77798086100002],[177.04224694100023,62.768703518000066],[177.03589928500008,62.756537177],[177.02442467500012,62.748236395],[176.95427493600025,62.71092357000004],[176.93100019600004,62.69440338700014],[176.92790774799997,62.67291901200004],[176.9580184250003,62.64354075700014],[177.01148522200023,62.62348053600008],[177.0195418630002,62.61619700700005],[177.02361087300014,62.599839585000055],[177.03467858200023,62.58966705900009],[177.05005944100014,62.584214585000055],[177.06723066500018,62.582098700000145],[177.09424889400026,62.583319403000175],[177.17595462300025,62.59577057500009],[177.26587975400017,62.588324286000116],[177.239268425,62.569769598],[177.01490319099992,62.55048248900006],[176.86052493599996,62.51935455900017],[176.70899498800023,62.49921295800015],[176.68832441499993,62.50047435100006],[176.6831160820002,62.5131696640001],[176.69092858200023,62.52045319200011],[176.70411217500023,62.523667710000076],[176.7169702480002,62.528631903000026],[176.72396894600016,62.541083075000145],[176.69654381600012,62.539984442],[176.66187584700023,62.53461334800014],[176.63591556100025,62.522162177000105],[176.63526451900017,62.499579169000135],[176.61068769600016,62.496039130000085],[176.59961998800017,62.49237702000012],[176.59424889400017,62.48582591400013],[176.59766686300028,62.473700262000044],[176.6105249360002,62.4721540390001],[176.6421004570002,62.47842031500016],[176.6421004570002,62.472235419000164],[176.5958764980002,62.45404694200008],[176.5595809250003,62.44887929900009],[176.43165123800023,62.40656159100017],[176.4161889980002,62.40395742400007],[176.3934025400001,62.395086981000034],[176.3205672540001,62.33502838700003],[176.27930748800028,62.31708405199999],[175.95639082150015,62.25419749600003],[175.63347415500024,62.1913109400001],[175.5554305350001,62.15949127800015],[175.47486412899994,62.141180731000084],[175.33790123800011,62.08283112200009],[175.30640709700012,62.07493724200013],[175.3266707690002,62.08490631700012],[175.35523522200012,62.094875393],[175.38086998800017,62.106268622000165],[175.3951929050002,62.12274811400006],[175.34359785200022,62.1108259140001],[175.3183699880002,62.11001211100002],[175.29883873800017,62.11660390800007],[175.2736108730001,62.152573960000055],[175.25806725400022,62.16876862200011],[175.2511499360002,62.16063060099999],[175.25619550900012,62.093980210000105],[175.25098717500018,62.06574127800015],[175.2303166020002,62.043931382],[175.17448977999996,62.021918036],[174.8151147800001,61.94700755400013],[174.76514733200025,61.91669342700014],[174.77149498800023,61.92666250200012],[174.7810164720002,61.93268463700003],[174.8048608730002,61.94403717700011],[174.78541100400017,61.957586981000176],[174.75635826900023,61.96124909100002],[174.6993921230002,61.95831940300011],[174.674327019,61.963080145],[174.625498894,61.982855536000116],[174.5999455090002,61.98501211100013],[174.61793053500023,61.960028387000115],[174.64356530000023,61.94647858300005],[174.6705835300002,61.93610260600015],[174.7042749360002,61.91233958500005],[174.7192488940003,61.90448639500006],[174.7296655610002,61.89606354400003],[174.72689863400015,61.88629791900017],[174.70281009200014,61.86786530200014],[174.69011478000024,61.861273505000085],[174.48975670700028,61.814642645000056],[174.45362389400017,61.81480540600002],[174.42847741000017,61.81492747599999],[174.41146894600013,61.818264065000115],[174.39486738400015,61.82440827],[174.38331139400023,61.82550690300015],[174.3598738940003,61.821112372000144],[174.3774520190003,61.82973867400007],[174.38038170700023,61.83991120000012],[174.37134850400022,61.84747955900014],[174.35303795700014,61.84845612200003],[174.3395288420002,61.84406159100014],[174.30518639400012,61.821112372000144],[174.28500410200022,61.81354401200012],[174.26498457100016,61.81142812700001],[174.20427493600005,61.815008856000176],[174.1887313160001,61.81183502800011],[174.1550399100001,61.80060455900012],[174.16724694100017,61.806830145000056],[174.193369988,61.81679922100006],[174.1699324880002,61.83250560100013],[174.1380314460002,61.84463125200004],[174.10450280000018,61.848537502],[174.07300866000006,61.841620184000114],[174.08619225400022,61.82794830900017],[174.03272545700028,61.82632070500016],[174.01351972699993,61.817328192000154],[174.0206811860002,61.79686107],[174.0387475920002,61.783270575000024],[174.06055748800017,61.776068427],[174.08033287900005,61.77826569200008],[174.10661868600008,61.78017812700012],[174.06088300900015,61.769964911],[174.03891035200013,61.761297919000114],[174.0206811860002,61.74909088700004],[174.00953209700023,61.73529694200012],[174.00196373800028,61.72313060100013],[173.9909774100002,61.71454498900011],[173.94263756600023,61.709458726000115],[173.92400149800014,61.70416901200004],[173.88746178500008,61.68329498900005],[173.8247176440003,61.66054922100012],[173.8049422540001,61.649847723],[173.8128361340001,61.67645905200015],[173.80193118600016,61.691799221000096],[173.77865644600013,61.699937242000104],[173.67253665500024,61.720933335000055],[173.59994550900004,61.753892320000105],[173.57309004000012,61.756659247000165],[173.54460696700025,61.74909088700004],[173.53321373800017,61.738674221000124],[173.52214603000013,61.721136786],[173.51392662900017,61.702134507],[173.51075280000015,61.686997789000095],[173.50318444100023,61.67112864800008],[173.47388756600012,61.642808335000105],[173.47291100399994,61.63239166900006],[173.48414147199992,61.61908600500012],[173.49170983200017,61.604925848],[173.49586022200023,61.589178778000026],[173.49708092500023,61.57127513199999],[173.48113040500013,61.55524323100009],[173.44459069100017,61.553290106000055],[173.38005618600025,61.56102122600005],[173.355804884,61.557196356000034],[173.33122806100025,61.547308661000116],[173.3087671230002,61.53388092700014],[173.29102623800023,61.519476630000085],[173.30909264400023,61.491644598],[173.2858992850001,61.46507396000005],[173.12842858200005,61.39695872600011],[173.08399498800023,61.392523505000064],[173.00212649800017,61.415228583],[172.993418816,61.420152085000055],[172.97559655000023,61.43976471600002],[172.96941165500007,61.44432200700005],[172.95557701900006,61.44867584800014],[172.92823326900012,61.448635158000165],[172.914805535,61.45115794499999],[172.9088647800002,61.45477936400014],[172.90455162900017,61.45921458500011],[172.89942467500018,61.46674225500008],[172.90064537900017,61.46918366100003],[172.90072675900015,61.47138092699999],[172.8971460300002,61.47231679900009],[172.82642662900017,61.46881745000009],[172.71558678499997,61.430731512000094],[172.74830162900005,61.41510651200013],[172.82634524800008,61.38764069200009],[172.87964928500006,61.37986888200008],[172.89918053500003,61.37225983300014],[172.91765384200008,61.36200592700012],[172.9313257170002,61.351548570000126],[172.937754754,61.33844635600015],[172.93734785199996,61.326402085000055],[172.9399520190001,61.31757233299999],[172.95508873800011,61.31403229400011],[172.89454186300011,61.27789948100017],[172.8183699880002,61.29238515800004],[172.7389429050002,61.32273997600002],[172.66781660200016,61.33445872599999],[172.73698978000007,61.305324611000124],[172.76880944100012,61.285589911],[172.76677493600005,61.26251862200002],[172.75294030000018,61.25478750200013],[172.73853600399997,61.253485419000036],[172.72364342500023,61.25421784100014],[172.70818118600002,61.252590236000124],[172.69971764400006,61.24799225499999],[172.68384850400017,61.234808661000145],[172.67465253999998,61.23208242400007],[172.66976972700002,61.226792710000026],[172.65650475400017,61.200913804],[172.64673912900005,61.19110748900006],[172.57374108200023,61.18720123900005],[172.38607832100013,61.227443752000156],[172.33822675900015,61.21100495000014],[172.36329186300023,61.19269440300009],[172.38217207100016,61.174627997000165],[172.40300540500007,61.15936920800003],[172.43441816499998,61.14956289300006],[172.43441816499998,61.14272695500016],[172.33676191499998,61.12230052299999],[172.28638756600006,61.12368398600015],[172.24268639400023,61.14272695500016],[172.26303144600016,61.114732164000046],[172.29786217500006,61.103745835000076],[172.40349368600002,61.09788646000014],[172.41407311300011,61.09430573100014],[172.41846764400006,61.089667059000035],[172.4196069670002,61.083156643000144],[172.41968834700018,61.07709381700015],[172.42074629000015,61.07379791900011],[172.437347852,61.07078685100011],[172.48959394600004,61.081244208],[172.4760848320002,61.05573151200009],[172.44825280000006,61.04433828300013],[172.41635175900012,61.036932684000035],[172.37256920700008,61.01288483300003],[172.35482832099999,61.01288483300003],[172.31836998800023,61.019842841000084],[172.26303144600016,61.014960028000026],[172.24268639400023,61.019842841000084],[172.13282311300006,61.06757233300005],[172.00928795700005,61.10114166900008],[172.03126061300006,61.087144273000106],[172.16089928500017,61.02749258000012],[172.18067467500012,61.012355861000124],[172.19434655000023,60.99453359600015],[172.20085696700002,60.97577545799999],[172.19727623800017,60.958441473],[172.18067467500012,60.94472890800007],[172.1652124360002,60.94301992400007],[172.1284285820001,60.94660065300014],[172.1154077480002,60.94098541900014],[172.10580488400004,60.927313544000114],[172.10059655000023,60.92177969000009],[172.09180748800006,60.91681549700005],[172.08415774800002,60.88719310099999],[172.047129754,60.860663153000026],[172.00684655000023,60.855210679],[171.98943118600008,60.88947174700017],[171.9956160820002,60.90460846600017],[172.00473066500004,60.92064036700004],[172.00440514400012,60.936468817],[171.98267662900005,60.95087311400006],[171.95777428500017,60.95311107000005],[171.95630944100006,60.93768952],[171.95753014400023,60.91860586100005],[171.9409285820001,60.90997955900013],[171.94336998800023,60.90253327000014],[171.9448348320001,60.899644273000106],[171.94841556100008,60.895697333000115],[171.94109134200008,60.88153717700003],[171.94800866000006,60.872503973],[171.95834394600016,60.864813544000164],[171.96159915500016,60.854681708000115],[171.94939212300002,60.8482933610001],[171.89861087300008,60.83685944200015],[171.82504316500004,60.83222077000012],[171.80445397200018,60.83486562700001],[171.74594160200004,60.853583075000174],[171.72291100400005,60.846136786],[171.66334069100006,60.816717841000106],[171.62826582100016,60.81688060100008],[171.59888756600006,60.80361562700013],[171.58472741000006,60.80011627800014],[171.57129967500023,60.80239492400003],[171.5597436860002,60.806789455],[171.54859459700018,60.80951569200006],[171.53687584700018,60.80695221600017],[171.56544030000006,60.79315827000006],[171.59555097700004,60.78620026200014],[171.62045332100016,60.77411530200005],[171.63257897200006,60.74481842700014],[171.59986412900005,60.73761627800012],[171.50277753999998,60.73114655200011],[171.47868899800008,60.723374742000104],[171.4362085300002,60.69940827000015],[171.41342207100016,60.69017161699999],[171.438731316,60.70453522300007],[171.45736738399998,60.718166408000016],[171.46794681100008,60.73114655200011],[171.4617619150001,60.74770742400006],[171.44516035200002,60.75775788000005],[171.42807050900007,60.76569245000012],[171.42025800899998,60.77619049700009],[171.41521243600005,60.785060940000115],[171.40503990999997,60.78660716399998],[171.39633222700004,60.7829450540001],[171.39673912900005,60.77619049700009],[171.40113366,60.76911041900003],[171.404470248,60.760158596000096],[171.40650475400017,60.750474351000136],[171.40723717500012,60.71474844],[171.40357506600003,60.70522695500002],[171.39486738400015,60.701646226000136],[171.38559004000004,60.700384833000115],[171.3790796230002,60.697699286000145],[171.3730574880001,60.68292877800014],[171.374847852,60.65497467700013],[171.37240644600016,60.64305247599999],[171.35613040500002,60.62738678600011],[171.31324303500006,60.615423895000085],[171.27100670700023,60.592840887000115],[171.220062696,60.583807684000085],[171.179453972,60.55890534100017],[171.16032962300002,60.55658600500003],[171.118500196,60.559881903000054],[171.0792749360002,60.55951569200011],[171.05567467500023,60.555853583000086],[170.98365319100003,60.527655341000106],[170.95980879000015,60.52130768400014],[170.81072024800002,60.512111721],[170.79118899800008,60.517035223000065],[170.77035566499995,60.52582428600012],[170.75074303500006,60.529486395000085],[170.73503665500007,60.518947658000016],[170.75049889400006,60.501166083000115],[170.76677493600013,60.49445221600008],[170.78614342500023,60.49485911699999],[170.81072024800002,60.49843984600006],[170.78777103000007,60.47638580900015],[170.78337649800008,60.463934637000065],[170.79021243600016,60.450628973000114],[170.7555444670002,60.436509507],[170.71729576900017,60.428168036000116],[170.63941491000017,60.42332591400004],[170.62208092500012,60.42763906500015],[170.60572350400014,60.446356512000115],[170.5875757170002,60.450628973000114],[170.51587975400017,60.450628973000114],[170.52621503999998,60.434759833],[170.54363040500007,60.43480052299999],[170.56348717500023,60.43866608299999],[170.58073978000007,60.43390534100008],[170.61158287900005,60.40037669500004],[170.61841881600006,60.38857656500009],[170.61182701900006,60.3880882830001],[170.60499108200017,60.385443427000105],[170.59888756600017,60.37669505400014],[170.61540774800002,60.37002187700007],[170.65251712300008,60.36127350500003],[170.66293379000012,60.35024648600016],[170.66586347700016,60.34113190300014],[170.66211998800023,60.33201732],[170.65251712300008,60.320949611000124],[170.61890709700006,60.30243561400011],[170.53728274800014,60.290472723000086],[170.50228925900004,60.27252838700003],[170.4739689460001,60.232245184000156],[170.45728600400005,60.18244049700009],[170.44019616000008,60.08075592700011],[170.41635175900004,60.0151227890001],[170.41285241000006,59.994452216000084],[170.40064537900003,59.965643622000144],[170.371267123,59.948472398000135],[170.2651473320001,59.920355536000145],[170.23422285200016,59.92129140800013],[170.206309441,59.93252187700012],[170.17676842500023,59.95380280200002],[170.16098066500004,59.959947007],[170.11890709700006,59.968003648000106],[170.10499108200005,59.97768789300006],[170.10124759200002,59.98944733300005],[170.10466556100008,59.99843984600007],[170.11166425900004,60.00739166900012],[170.1186629570001,60.019273179000045],[170.10254967500023,60.02374909100003],[170.05665123800023,60.04657623900011],[170.03980553500006,60.05036041900014],[169.98804772200006,60.05280182500008],[169.95582116000017,60.05923086100002],[169.93604576900017,60.07575104400008],[169.90577233200005,60.12164948100015],[169.8624780610002,60.16242096600003],[169.84880618600008,60.181626694999984],[169.84376061300023,60.210760809000035],[169.8624780610002,60.219183661],[169.97461998800023,60.232163804],[169.94516035200016,60.24384186400008],[169.9199324880001,60.24998607000008],[169.89454186300006,60.25047435100006],[169.86475670700005,60.24518463700015],[169.83692467500012,60.243353583],[169.81080162900005,60.25014883000004],[169.75521894600004,60.27558014500012],[169.74675540500004,60.283026434000114],[169.74488366,60.29287344000012],[169.74488366,60.303452867],[169.74195397200018,60.31346263200008],[169.73389733200023,60.32192617400001],[169.71387780000006,60.33844635600009],[169.7077742850001,60.347601630000085],[169.70606530000006,60.36619700700008],[169.70899498800011,60.38312409100014],[169.7077742850001,60.39948151200015],[169.69336998800023,60.416489976000136],[169.66570071700002,60.429266669000164],[169.60547936300003,60.44330475500011],[169.568614129,60.468695380000135],[169.55250084700006,60.471380927000105],[169.52182050900004,60.47113678600009],[169.35027103000002,60.5331891950001],[169.29224694100003,60.54205963700015],[169.26417076900023,60.55048248900011],[169.24781334700006,60.56732819200011],[169.34107506600006,60.560736395000156],[169.37134850400005,60.56732819200011],[169.30616295700023,60.61172109600015],[169.285492384,60.62059153900002],[169.23536217500012,60.62116120000014],[169.21436608200005,60.62872955900012],[169.2086694670002,60.62091705900012],[169.2065535820001,60.615057684000185],[169.20826256600017,60.609198309000035],[169.21436608200005,60.60146719000012],[169.19825280000012,60.58881256700015],[169.18881269599996,60.58319733300015],[169.18018639400012,60.58038971600008],[169.1706649100001,60.582220770000056],[169.15162194100012,60.59223053600006],[169.1455184250001,60.594061591000035],[169.132578972,60.58722565300012],[169.1378686860002,60.57843659100014],[169.15211022200018,60.5707868510001],[169.16651451900023,60.56732819200011],[168.9757593110002,60.57416413000014],[168.74830162900005,60.56972890800016],[168.73324629000004,60.56732819200011],[168.703868035,60.55487702],[168.69597415500007,60.55304596600003],[168.65040123800011,60.55267975500011],[168.624766472,60.55560944200012],[168.575938347,60.58242422100012],[168.53150475399997,60.59308502800015],[168.48471113400015,60.59857819200009],[168.28012128999995,60.59642161699999],[168.23780358200005,60.58490631700014],[168.09636478000013,60.57147858300005],[167.83765709700018,60.51056549700015],[167.81657962300005,60.512111721],[167.80111738400015,60.521918036000116],[167.7819116550002,60.54816315300015],[167.76807701900006,60.55304596600003],[167.74968509200002,60.54706452],[167.75017337300002,60.53461334800009],[167.76026451900012,60.52033112200008],[167.77125084700003,60.508978583000115],[167.77198326900006,60.49673086100015],[167.75171959700018,60.49127838700013],[167.713145379,60.488836981000176],[167.6349389980002,60.45526764500014],[167.59229576900017,60.445461330000036],[167.54900149800008,60.443793036000024],[167.53207441499998,60.44855377800012],[167.49138431100013,60.46564362200014],[167.48015384200014,60.46800364800011],[167.47152754000004,60.45990631700008],[167.46900475399997,60.44891998900011],[167.46778405000006,60.43720123900012],[167.46314537900005,60.427069403000175],[167.43360436300011,60.42039622600011],[167.36597741000003,60.46580638200011],[167.33611087300008,60.47113678600009],[167.3639429050001,60.43960195500007],[167.374847852,60.42059967700008],[167.37403405000006,60.40595123900006],[167.35523522199998,60.39874909100003],[167.33008873800023,60.40436432500003],[167.3038843110002,60.413397528000054],[167.2815047540001,60.416489976000136],[167.306407097,60.393011786000066],[167.2783309250001,60.37323639500011],[167.2296655610002,60.35968659100016],[167.19214928500017,60.355047919000135],[167.16081790500002,60.361761786],[167.1163843110002,60.377997137000044],[167.08057701900006,60.399847723000086],[167.07545006600017,60.42332591400004],[167.04175866000017,60.428656317000026],[167.02491295700005,60.427679755000135],[167.02393639400012,60.419907945000126],[167.032969597,60.40997955900003],[167.03980553500006,60.39996979400014],[167.04135175900015,60.39057038000011],[167.03443444100017,60.38239166900003],[167.05274498800023,60.340521552000105],[167.048106316,60.328436591000106],[167.02084394600004,60.320949611000124],[166.98609459700006,60.31610748900005],[166.92562910200016,60.29743073100018],[166.91244550899998,60.29645416900011],[166.89779707099999,60.29979075700014],[166.90707441500015,60.292059637000115],[166.93327884200008,60.27985260600014],[166.93881269599999,60.26911041900002],[166.9318139980002,60.25901927300008],[166.91521243600005,60.2499046900001],[166.85775800900015,60.229925848000015],[166.837657097,60.22020091400004],[166.72632897200015,60.132269598],[166.53288821700002,60.003119208],[166.36117597700016,59.88385651200009],[166.28777103000007,59.84454987200008],[166.24512780000023,59.83063385600011],[166.199066602,59.826076565000065],[166.1095483730002,59.82746002800006],[166.10377037900005,59.83832428600011],[166.101247592,59.86334870000003],[166.10279381600017,59.909409897999986],[166.1131291020001,59.93097565300009],[166.14405358200023,59.96645742400007],[166.150645379,59.98794179900001],[166.14918053500006,60.00063711100015],[166.14389082100016,60.0207380230001],[166.14380944100017,60.03229401200003],[166.14576256600006,60.042141018000066],[166.1753035820001,60.120306708000086],[166.18873131600017,60.13760000200007],[166.21225019600004,60.15273672100007],[166.26677493600002,60.17829010600014],[166.285411004,60.19725169500008],[166.28777103000007,60.22467682500012],[166.26392662900017,60.264105536],[166.25806725400005,60.28595612200002],[166.27076256600012,60.310044664000074],[166.27605228000007,60.33128489800005],[166.26644941499998,60.358832098000065],[166.24968509200005,60.38353099200004],[166.23259524800002,60.39598216399998],[166.27458743600013,60.383734442],[166.3126733730002,60.39272695500013],[166.34343509200008,60.41689687700013],[166.36296634200008,60.450628973000114],[166.35889733200008,60.4520531270001],[166.3498641290001,60.457464911000145],[166.38119550900015,60.47101471600011],[166.39283287900005,60.48041413000014],[166.39087975399997,60.49225495000009],[166.37330162900017,60.49945709800012],[166.3546655610002,60.49127838700013],[166.33668053500006,60.47833893400012],[166.32195071700008,60.47113678600009],[166.30502363400007,60.472967841000134],[166.27149498800023,60.48371002800017],[166.25367272200006,60.48541901200017],[166.05225670700005,60.45384349199999],[166.01343834700006,60.440375067],[165.94605553500006,60.38934967700011],[165.92408287900005,60.38239166900003],[165.94060306100016,60.365627346],[165.97974694100006,60.375718492000075],[166.040782097,60.42332591400004],[166.0805770190001,60.437404690000086],[166.16895592500023,60.45246002800009],[166.21208743600008,60.457464911000145],[166.15902754000015,60.442572333],[166.1069442070001,60.437567450000145],[166.05274498800023,60.42397695500009],[165.96729576900023,60.36505768400003],[165.85613040500007,60.34218984600012],[165.80860436300023,60.320949611000124],[165.76889082100016,60.29409414300015],[165.72144616000003,60.26972077],[165.67090905000012,60.25202057500009],[165.5161238940002,60.218939520000156],[165.46127363400004,60.21946849200013],[165.4449975920002,60.258856512000094],[165.43474368600008,60.24420807500009],[165.43165123800011,60.22785065300017],[165.4350692070001,60.21149323100014],[165.4449975920002,60.19676341399998],[165.40170332100004,60.17015208500015],[165.29859459700015,60.14052969000009],[165.2457788420002,60.10333893400009],[165.22925866000006,60.097235419000114],[165.21192467500023,60.09381745000008],[165.19776451900012,60.09438711100007],[165.18506920700017,60.099025783000094],[165.18165123800023,60.10370514500003],[165.18043053500006,60.10968659100003],[165.17416425899995,60.11823151200014],[165.16000410200013,60.12909577000012],[165.15967858200023,60.133205471000096],[165.16374759200016,60.14215729400011],[165.170176629,60.149562893],[165.18637129000015,60.160305080000015],[165.19166100400005,60.17011139500015],[165.162282748,60.16876862200015],[165.14372806100002,60.15639883],[165.12826582099999,60.13873932500012],[165.109141472,60.12164948100015],[165.08228600400005,60.113104559000035],[165.05372155000023,60.11554596600017],[164.99927819100006,60.13532135600009],[165.00066165500002,60.12425364800005],[165.0034285820001,60.11416250200009],[165.01351972700013,60.09438711100007],[165.00904381600017,60.083400783000016],[165.0240991550002,60.072211005],[165.04395592500012,60.0678571640001],[165.05388431100013,60.07733795800011],[165.06397545700005,60.09100983300005],[165.08708743600002,60.09349192900007],[165.11247806100005,60.08958567899999],[165.12964928500017,60.08417389500013],[165.13550866000006,60.075628973000015],[165.14372806100002,60.044989325000095],[165.15007571700008,60.03229401200003],[165.16374759200016,60.02195872600014],[165.19857832100004,60.00519440300012],[165.2120874360002,59.99135976800002],[165.1818139980002,59.98651764500011],[165.16179446700002,59.97394440300006],[165.12964928500017,59.93732330900012],[165.01351972700013,59.847967841000084],[164.99317467500018,59.83978913],[164.93034915500016,59.83368561400001],[164.9010522800002,59.81997304900007],[164.8702905610002,59.80097077000006],[164.83863366000006,59.78742096600011],[164.80713951900012,59.789618231000084],[164.796234571,59.79832591399999],[164.78598066500004,59.812689520000056],[164.77759850400005,59.82831452000015],[164.77271569100017,59.84113190300017],[164.77458743600008,59.84454987200008],[164.77979576900023,59.84910716400013],[164.78484134200008,59.854681708000136],[164.78638756599997,59.86102936400008],[164.782969597,59.866766669000135],[164.770843946,59.87665436400006],[164.76644941500004,59.882066148000106],[164.75342858200023,59.90892161699998],[164.72331790500013,59.956773179000116],[164.70167076900012,59.98110586100007],[164.68637129000015,59.99335358300006],[164.62354576900012,60.02753327000014],[164.55054772200012,60.08291250200013],[164.5206811860002,60.10008372600005],[164.48853600400003,60.11102936400012],[164.45118248800011,60.114813544000135],[164.41163170700023,60.11029694200008],[164.39112389400012,60.10301341399998],[164.38217207100016,60.090969143000066],[164.376719597,60.07538483300005],[164.36378014400012,60.07640208500015],[164.3413192070001,60.090969143000066],[164.32056725400005,60.0886091170001],[164.31934655000012,60.06370677300008],[164.33611087300014,60.03603750200007],[164.3686629570001,60.02545807500003],[164.33912194100006,59.991522528000175],[164.27686608200023,59.978420315],[164.20769290500007,59.97337474199999],[164.16431725400017,59.96344635600017],[164.14063561300014,59.95099518400015],[164.117930535,59.94139232],[164.106700066,59.924627997000144],[164.10914147200006,59.90253327000006],[164.12574303499997,59.88450755400013],[164.1720483730002,59.867621161000145],[164.19044030000023,59.854193427000055],[164.1650496750001,59.85480377800011],[164.08806399800002,59.87466054900004],[164.0639754570001,59.87498607000005],[164.05201256600017,59.879584052000084],[164.04167728000007,59.907538153000125],[164.04281660199996,59.913275458000086],[164.053965691,59.91559479400014],[164.07886803500006,59.91474030200014],[164.08920332100013,59.916693427],[164.0971785820001,59.92243073100014],[164.10580488400004,59.9348005230001],[164.11329186300011,59.94354889500009],[164.13941491000006,59.95595937700001],[164.1569116550002,59.96963125200013],[164.20484459700012,59.99750397300009],[164.18116295700003,59.99713776200017],[164.13282311300003,59.9887556010001],[164.10914147200006,59.99135976800002],[164.09083092500006,60.000433661000116],[164.05860436300023,60.02448151200006],[164.0402124360002,60.03229401200003],[164.01734459700018,60.03579336100013],[163.91968834700018,60.03900788],[163.855235222,60.02545807500003],[163.86280358200017,60.02850983300011],[163.86890709700003,60.032538153000175],[163.87305748800006,60.03827545800005],[163.87525475400017,60.04657623900011],[163.83383222700013,60.05914948100003],[163.82455488400004,60.05646393400006],[163.81299889400006,60.04824453300013],[163.79688561300011,60.04482656500012],[163.77995853000002,60.045477606000084],[163.76563561300023,60.04970937700001],[163.73910566499995,60.05337148600015],[163.65154056100008,60.05166250200015],[163.62867272200006,60.04657623900011],[163.62338300900012,60.02545807500003],[163.63843834700015,60.004217841000056],[163.66211998800011,59.98602936400015],[163.6831160820002,59.97426992400007],[163.7028100920002,59.96930573100012],[163.72185306100008,59.97174713700015],[163.75912519600016,59.9845238300001],[163.76075280000006,59.98737213700004],[163.7589624360002,59.99176666900003],[163.75879967500012,59.99579498900008],[163.76563561300023,59.99750397300009],[163.77198326900006,59.99689362200004],[163.79379316500004,59.99135976800002],[163.77279707099999,59.97894928600008],[163.7516382170002,59.96255117400006],[163.7143660820001,59.92645905200014],[163.6980086600001,59.9040388040001],[163.68848717500012,59.89834219000012],[163.66968834700006,59.89630768400012],[163.56771894600016,59.90631745000008],[163.53451582100004,59.905422268],[163.50407962300008,59.89789459800015],[163.45134524800008,59.86237213700014],[163.4236759770001,59.848211981000034],[163.36182701900012,59.82746002800006],[163.378184441,59.81435781500006],[163.37631269600016,59.791652736000124],[163.3673608730002,59.76532623900011],[163.36182701900012,59.741522528000026],[163.36353600399997,59.73086172100001],[163.37549889400023,59.697170315],[163.37680097700004,59.67597077],[163.38054446700008,59.665228583],[163.39226321700008,59.652411200000145],[163.39014733200023,59.63153717699999],[163.3600366550001,59.606390692],[163.32129967500006,59.58710358300005],[163.29297936300023,59.583889065],[163.27149498800011,59.589056708000115],[163.2474064460001,59.5873884140001],[163.20215905000023,59.574896552],[163.1834416020001,59.56549713700016],[163.18018639400023,59.558254299000126],[163.19011478,59.55556875200007],[163.21045983200023,59.55996328300014],[163.20378665500007,59.54873281500015],[163.18360436300023,59.53335195500002],[163.17628014400023,59.525824286000145],[163.16871178500017,59.51056549700017],[163.17090905000006,59.505682684000114],[163.18018639400023,59.50299713700003],[163.21762129000015,59.47768789300009],[163.27808678500017,59.450506903000175],[163.30307050899998,59.433050848000114],[163.32146243600002,59.411037502],[163.32837975400005,59.39223867400007],[163.32691491000017,59.372503973000114],[163.31714928500006,59.32990143400009],[163.31251061300011,59.287543036],[163.30665123800006,59.27130768400014],[163.29509524800002,59.259019272999986],[163.27857506600017,59.24787018400018],[163.26050866000006,59.24005768400018],[163.24447675900015,59.23786041900008],[163.22754967500006,59.24225495000017],[163.23015384200008,59.249579169000164],[163.25513756600017,59.26821523600017],[163.27735436300023,59.278021552],[163.28785241,59.286932684000035],[163.28614342500012,59.29926178600009],[163.27230879000004,59.302883205000136],[163.21729576900023,59.285589911000145],[163.20777428500006,59.28778717700013],[163.19190514400012,59.29710521000008],[163.18311608200017,59.29926178600009],[163.17359459700006,59.298285223],[163.15723717500023,59.29401276200009],[163.13347415500007,59.291083075000174],[163.0944116550002,59.27899811400005],[163.08057701900006,59.27130768400014],[163.07292728000007,59.26251862200008],[163.0688582690001,59.25283437700013],[163.0672306650001,59.24310944200009],[163.06690514400023,59.23407623900006],[163.07105553500014,59.223130601000015],[163.07699629,59.21255117400015],[163.07634524800008,59.20506419499999],[163.07471764400023,59.19310130400005],[163.1284285820001,59.183172919000135],[163.14177493600002,59.17755768400007],[163.17188561300023,59.15892161700007],[163.21861594300006,59.15067832900003],[163.23329621500002,59.132679313],[163.25142433300007,59.106712977000036],[163.26186885100006,59.0808303760001],[163.24566522899997,59.06318947400012],[163.22605176200014,59.05549454600008],[163.17823326900006,59.040472723000065],[163.164317254,59.033677476000044],[163.14893639400017,59.0385602890001],[163.14600670700023,59.047064520000156],[163.15544681100008,59.05451080900012],[163.16871178500017,59.062567450000145],[163.17628014400023,59.07330963700015],[163.1650496750002,59.09666575700008],[163.13298587300008,59.109116929],[163.06690514400023,59.12055084800012],[163.06910241000006,59.12518952000006],[163.07227623800011,59.137518622000115],[163.074473504,59.14223867400003],[163.01246178500006,59.161444403000175],[163.00489342500012,59.16120026200003],[162.97828209700006,59.15521881700012],[162.97185306100005,59.156236069999984],[162.95801842500023,59.16193268400014],[162.95036868600013,59.161444403000175],[162.94711347700016,59.15875885600009],[162.94507897200006,59.154282945000126],[162.94312584700018,59.146185614],[162.94385826900012,59.13711172100002],[162.94353274800017,59.13475169500004],[162.93718509200008,59.13377513200008],[162.92269941500004,59.13548411699999],[162.90357506600006,59.133978583000115],[162.89112389400023,59.13532135600011],[162.8826603520001,59.13279857000011],[162.88152103000007,59.12055084800012],[162.88656660200007,59.11351146000009],[162.968516472,59.05231354400002],[162.98682701900003,59.041489976000136],[163.0260522800002,59.02558014500012],[163.03589928500006,59.025864976000044],[163.04273522200006,59.02977122600005],[163.04615319100003,59.02973053600005],[163.0777577780002,59.00759407900007],[163.08066135100015,58.983796787000095],[163.0685493020002,58.96805316900008],[163.033210909,58.94860840400003],[162.99039715399996,58.933194705000126],[162.9209880440001,58.923923979],[162.87818970100003,58.90647732700001],[162.91412110899995,58.94777156100015],[162.91960696700002,58.971625067],[162.90259850400017,58.983954169000135],[162.889903191,58.97874583500006],[162.86996504,58.965318101000086],[162.84366570600005,58.90679557600005],[162.81619549000018,58.88722415500006],[162.73422285200004,58.8912621110001],[162.70020592500012,58.87543366100006],[162.67660566500015,58.87409088700018],[162.68230228000007,58.85602448100015],[162.69629967500012,58.84731679900007],[162.71412194100014,58.84699127800015],[162.73121178500006,58.85358307500003],[162.724375847,58.861029364],[162.74293053500006,58.86513906500015],[162.7573348320001,58.859808661000095],[162.77076256600017,58.85834381700011],[162.78589928500017,58.87409088700018],[162.7905379570001,58.864243882000046],[162.78842207099999,58.85578034100011],[162.7815047540001,58.84784577000014],[162.78768745800008,58.83192124400015],[162.73758112300018,58.820454205000125],[162.51339964100012,58.72119979300013],[162.40529447300005,58.65444486700012],[162.33924405300016,58.57751632100015],[162.239028113,58.47893430000012],[162.16986800299998,58.40591698100003],[162.04692665,58.206202738000066],[162.02387313300014,58.15472950700014],[161.99322816500003,58.08739217500009],[161.99672774900014,58.06159890800014],[162.014862544,58.00598416400014],[162.02556399800002,57.92877838700003],[162.08204186300006,57.882473049000154],[162.14584394599999,57.84715403900013],[162.21461022200018,57.82172272300012],[162.28549238399998,57.805243231000034],[162.37005967000007,57.784828532000134],[162.45553948500006,57.78435082400016],[162.46629757600013,57.76441757300002],[162.43982354400015,57.74080784400009],[162.39503533700022,57.72717802100009],[162.34546959700012,57.69159577000012],[162.35450280000012,57.68854401200003],[162.3683374360002,57.689642645000085],[162.38233483200005,57.69293854400002],[162.39503014400023,57.69843170800006],[162.5217893190002,57.75415576100006],[162.51534461900022,57.799849758000086],[162.494040883,57.847606258000056],[162.49115497500003,57.88732033600003],[162.51022198100011,57.90705181400015],[162.52979576900023,57.93650950700005],[162.559336785,57.949286200000095],[162.58277428500017,57.954331773000135],[162.65552819100006,57.95673248900009],[162.664805535,57.95872630400011],[162.67790774800005,57.96771881700011],[162.68995201900006,57.96971263200008],[162.70191491,57.96906159100003],[162.71159915500007,57.96674225500006],[162.72071373800017,57.962795315000065],[162.73121178500006,57.95673248900009],[162.75513756600012,57.935248114000146],[162.765391472,57.92877838700003],[162.77466881600014,57.92743561400005],[162.79517662900005,57.929348049],[162.81324303500006,57.920355536],[162.83985436300011,57.92182038000006],[162.85092207100004,57.91819896],[162.85824629000004,57.91400788000006],[163.0038703810001,57.83752790300018],[163.09263308400003,57.82078546000009],[163.21894184700002,57.81345838100013],[163.22198258400022,57.79754249900004],[163.2667749360002,57.77753327000014],[163.27857506600017,57.758042710000055],[163.32951011200024,57.70894470100002],[163.2539374420002,57.67814375799999],[163.24246902600012,57.670345073000185],[163.2374858400001,57.640664217000094],[163.24395400300014,57.61878250300005],[163.24288454700005,57.5949920940001],[163.21645205000007,57.581437179000055],[163.19008297700003,57.569848957000104],[163.16390967100003,57.562228541000124],[163.13634911300008,57.53473389200009],[163.12490371900006,57.5111311130001],[163.10797050400018,57.49495750500013],[163.07483384600005,57.461000052000045],[162.9623144510001,57.43643544800007],[162.90851749300018,57.416934283],[162.83311923700015,57.383312181000136],[162.8001957940002,57.346434455000015],[162.7890168390002,57.32652004100014],[162.77638461400002,57.255146700000076],[162.79543951600013,57.183505],[162.78589928500017,57.14545319200012],[162.81739342500003,57.092922268000095],[162.85985084500012,57.051442541000036],[162.8431558110002,57.01722458600009],[162.82056725400014,56.96918366100011],[162.79895526600015,56.94328297700018],[162.78956139400023,56.92186107000008],[162.78589928500017,56.85993073100009],[162.79004967500012,56.821234442000055],[162.78350026600017,56.76302871400016],[162.83462984399998,56.72235241800017],[162.89087975400014,56.71600983300003],[162.91456139400012,56.70945872600011],[162.9366968110002,56.70856354400002],[162.96718691200024,56.70355994600011],[163.01569101800015,56.725811124000174],[163.05651658700017,56.73250272500005],[163.06851721100023,56.741309210000125],[163.12573437600022,56.72740094500007],[163.1861363840002,56.73369828700011],[163.22761580399998,56.742463626000166],[163.238968537,56.73302051100007],[163.22584069100014,56.72093333500008],[163.24333743600013,56.713690497000144],[163.25196373800011,56.69887929900007],[163.28057240200022,56.688011773000184],[163.26388463600003,56.66881167300014],[163.2467238400001,56.64751939700004],[163.23871269600002,56.623415439000055],[163.24097741000017,56.59316640800012],[163.2784711840001,56.5635206830001],[163.26107722800012,56.54872121400013],[163.2469867610001,56.53153689599999],[163.25220787900017,56.51585521000011],[163.26514733200005,56.488592841000056],[163.27250744300002,56.47971036600016],[163.28143646400022,56.472364087000116],[163.27888941000006,56.46217663600007],[163.2604236340002,56.45837939200014],[163.250254754,56.45111725500011],[163.25569271200018,56.43946227300016],[163.2680394850001,56.429630289000144],[163.28032547600006,56.42498928000002],[163.29956211000015,56.399793940000066],[163.3385522800002,56.35529205900018],[163.34083092500023,56.34540436400009],[163.34666079300004,56.333294765000076],[163.35328432300017,56.32197948800017],[163.34871801699998,56.29730709900015],[163.3368950520002,56.27752432200005],[163.34205162900017,56.23354726800006],[163.3496199880001,56.221136786000116],[163.35309291700005,56.19952861400016],[163.366068623,56.1806586630001],[163.30796235099996,56.16807601700013],[163.29363685700017,56.14951423700016],[163.23042386600005,56.14177583499999],[163.17628014400023,56.133124091000106],[163.13103274800017,56.10993073100014],[163.11793053500006,56.10643138200008],[163.111175977,56.10150788000011],[163.10368899800002,56.090033270000056],[163.0973413420002,56.077337958000115],[163.09498131600006,56.068264065],[163.08936608200023,56.06297435100013],[163.06808409100006,56.04421583400013],[163.05317336700014,56.027533923000085],[163.0512084630001,56.00540399300003],[162.9931951360002,56.010625760000075],[162.93078402800006,56.01790373300015],[162.885996941,56.041652736000074],[162.85678144600016,56.049750067],[162.82161808400022,56.05619883800013],[162.77393639400023,56.09365469000012],[162.75425315800013,56.108308045],[162.73826897000006,56.14952244700013],[162.69044030000018,56.17145416900003],[162.63802459300004,56.22079404600011],[162.5835067070001,56.22483958500008],[162.5568139980002,56.228501695000126],[162.58155358200003,56.23358795800006],[162.60938561300023,56.239447333],[162.64461114100004,56.243368057000126],[162.67858567399998,56.25706600000011],[162.706877296,56.27115451200014],[162.7248207130002,56.290222855000096],[162.74165334600005,56.31256178100013],[162.74660633500005,56.333620433000114],[162.75363211100014,56.347036014000146],[162.79440745999997,56.35587036500006],[162.87251276200004,56.35875619000011],[162.93992090300006,56.38168989800015],[162.9439181290002,56.406043954],[163.00018717900016,56.43835446900005],[163.05820178500008,56.44585045700016],[163.08512919900008,56.461001794000126],[163.1160524320001,56.500504295000084],[163.10082490200003,56.517721186000145],[163.04334875300012,56.52092724000012],[163.02013320500012,56.53764086800011],[162.98994852999996,56.533434126000124],[162.95846822600006,56.49931626800009],[162.94260989900013,56.449028274000014],[162.90990177200004,56.425690686000124],[162.83871504000015,56.44891998900012],[162.7401868750002,56.479778757000034],[162.6829438460002,56.483866811000084],[162.65066867400006,56.470098982000096],[162.62811518300012,56.439562049000145],[162.57300866000006,56.42682526200003],[162.5568139980002,56.429144598],[162.5412703790001,56.43716054900012],[162.52507571700002,56.44220612200017],[162.5117293630002,56.44061920800014],[162.4996850920002,56.43545156500012],[162.47803795700023,56.42112864800005],[162.47046959700018,56.41449616100009],[162.46314537900017,56.40619538000003],[162.45443769599999,56.39850495000008],[162.44263756599997,56.39378489799999],[162.42945397200018,56.39402903900013],[162.4140418120002,56.383870265000056],[162.4011894350001,56.36976469500002],[162.48226870900024,56.33519828600011],[162.52646742200002,56.32567415400013],[162.53663170700005,56.30573151200015],[162.55884850400005,56.28888580900015],[162.59254035399996,56.268490028000045],[162.5768382,56.25886721400009],[162.559962667,56.25255465300013],[162.529063347,56.247870184000064],[162.51889082100016,56.24298737200017],[162.495861426,56.242058172000114],[162.489911363,56.23282583800015],[162.48821847300022,56.21686065199999],[162.44271894599999,56.212347723000065],[162.42269941500004,56.204738674000126],[162.36587721300012,56.18676611300005],[162.2744481340002,56.16515394400004],[162.17611738399998,56.136664130000085],[162.16578209700018,56.133124091000106],[162.14210045700005,56.12905508000013],[162.12172843900024,56.108385396000116],[162.09831659300008,56.08860890400008],[162.05675236700006,56.069135218000056],[162.04490241400006,56.05837590600005],[162.04021243600005,56.045477606000176],[162.04851321700002,56.03758372600011],[162.07692906800017,56.0224715560001],[162.05556935800004,56.004353366000075],[162.01807701900006,55.97614166900003],[162.01933367100006,55.93124987600013],[161.96889410400004,55.89518079300002],[161.94884528200012,55.85293756400016],[161.92096476400016,55.825490893],[161.92533821800018,55.794016939000166],[161.89092741900006,55.75142887800017],[161.84063448800006,55.7026397280001],[161.80849974800012,55.65380079],[161.79505736700006,55.62752214000015],[161.7770811150001,55.60832655500003],[161.7641311770002,55.55484554200008],[161.76337882100003,55.511883126000114],[161.74987280100018,55.46522881700004],[161.7476855240001,55.37595448600017],[161.75667640700019,55.351593913],[161.77133575500002,55.32573232200009],[161.77606339000013,55.290327079000136],[161.79280856800008,55.23600297100013],[161.81298058300004,55.179183574000106],[161.8426485240001,55.13070359500013],[161.87476647200006,55.07859935100005],[161.90137780000006,55.061102606000084],[161.9601343110002,55.03461334800012],[161.98707116000006,55.013128973],[162.04689843600002,54.956487902000056],[162.04948744900017,54.92428342400007],[162.074392123,54.904364325000145],[162.12671959700006,54.88117096600002],[162.15170332100016,54.86261627800003],[162.15316816500004,54.84992096600016],[162.13819420700005,54.84056224200013],[162.1186629570001,54.832709052000055],[162.10743248800011,54.8246931010001],[162.10743248800011,54.81281159100014],[162.12029056100013,54.79067617400007],[162.13014722500023,54.77241458800007],[162.12760922600003,54.7604052650001],[162.1093228570002,54.74293565],[162.08301895,54.73352047200011],[162.06586836699998,54.72908638500003],[162.0450952480002,54.725775458],[162.03638756600006,54.71832916900003],[162.00912519600013,54.70229726800012],[162.00310306100002,54.69525788000006],[161.99919681100002,54.68695709800009],[161.99008222700016,54.67389557500009],[161.97657311300003,54.662502346000124],[161.96192467500018,54.65643952000015],[161.9485969930001,54.64725508000005],[161.92195350700013,54.635989115000044],[161.87867272200006,54.61969635600006],[161.864512566,54.60871002800009],[161.85059655000023,54.60089752800009],[161.81690514400023,54.590521552],[161.80258222700004,54.5814476580001],[161.77100670700023,54.53709544500008],[161.75318444100017,54.51976146000008],[161.72380618600008,54.50942617400007],[161.70639082099999,54.50800202],[161.68531334700018,54.50877513200011],[161.66521243600002,54.512518622000144],[161.65162194100017,54.519964911000116],[161.63697350400017,54.525702216000084],[161.57984459700018,54.516262111000074],[161.47022545700014,54.51557038000014],[161.35792076900023,54.49323151200012],[161.31185957100004,54.49013906500012],[161.281911655,54.498846747000115],[161.267425977,54.50820547100015],[161.23755944100012,54.51788971600011],[161.2236434250001,54.52993398600002],[161.2190047540001,54.53969961100015],[161.2150171230002,54.561102606000084],[161.20997155000006,54.57078685100008],[161.15088951900023,54.59731679900012],[161.0664168630001,54.59682851800012],[160.891856316,54.57078685100008],[160.74122155000018,54.53522370000009],[160.73414147200012,54.531642971000124],[160.7233179050002,54.52366771000008],[160.52735436300017,54.43740469000012],[160.4869897800002,54.407049872000144],[160.42042076900012,54.378363348],[160.33773847700004,54.316799221000124],[160.27247155000023,54.27838776200004],[160.2514754570001,54.25800202000014],[160.23731530000006,54.248724677],[160.21892337300002,54.24201080900015],[160.16089928500017,54.235052802000055],[160.1167098320001,54.21572500200013],[160.05298912900005,54.17572663],[160.00074303500003,54.13108958500011],[159.9908960300002,54.09788646000002],[159.95777428500014,54.048488674000126],[159.91797936300006,54.0053571640001],[159.90154056100016,53.98187897300015],[159.84408613399998,53.796942450000145],[159.84253991000006,53.73981354400017],[159.8667098320002,53.694484768000066],[159.85254967500012,53.68744538],[159.84050540500013,53.679266669000086],[159.81820722700016,53.65965403900013],[159.84408613399998,53.65131256700015],[159.87305748800006,53.634222723],[159.89893639400012,53.61261627800011],[159.91456139400006,53.59076569200006],[159.91871178499997,53.61074453300013],[159.9049585300002,53.63011302300004],[159.88550866000008,53.648830471000124],[159.87289472700002,53.666489976000136],[159.90308678500006,53.673041083000115],[159.93067467500023,53.64508698100009],[159.96924889400012,53.5702985700001],[159.95777428500014,53.55451080900015],[159.96045983200023,53.49677155200011],[159.94874108200003,53.474758205000015],[159.92017662900017,53.47557200700011],[159.88005618600008,53.49359772300014],[159.84310957100004,53.517482815000115],[159.82504316499998,53.53620026200009],[159.81609134200008,53.5327009140001],[159.80738366000017,53.528387762000094],[159.79916425899998,53.523016669000135],[159.79102623800017,53.516302802],[159.80762780000012,53.510321356000176],[159.81544030000012,53.501166083],[159.81234785200002,53.49091217700008],[159.79664147200018,53.481512762000065],[159.8146264980002,53.48224518400017],[159.83139082100004,53.484767971000096],[159.84652754000004,53.483832098],[159.8593856130002,53.474758205000015],[159.86019941500012,53.46816640800013],[159.85857181100002,53.44424062700007],[159.8593856130002,53.433742580000015],[159.86280358200023,53.42226797100015],[159.86793053500017,53.41054922100007],[159.87582441500015,53.400132554],[159.88721764400012,53.39276764500009],[159.90113366000017,53.39061107],[159.92066491000017,53.39695872600011],[159.93555748800011,53.39276764500009],[159.92302493600013,53.365423895000035],[159.92107181100008,53.35049062700007],[159.92807050900012,53.33759186400006],[159.94467207100004,53.33413320500016],[159.96363366,53.33588288000005],[159.97535241,53.33161041900006],[159.96924889400012,53.30963776200012],[159.95777428500014,53.301174221000096],[159.93946373800011,53.29352448100015],[159.92237389400017,53.283636786000145],[159.91456139400006,53.26862213700012],[159.92107181100008,53.25356679900001],[159.96924889400012,53.214667059000085],[159.96216881600006,53.24437083500011],[159.98047936300011,53.265611070000105],[160.005137566,53.27407461100016],[160.01758873800023,53.265204169000114],[160.01929772200006,53.241929429],[160.02442467500023,53.220892645000056],[160.02995853000007,53.21010976800015],[160.03638756600014,53.201564846000124],[160.03834069100006,53.192368882000046],[160.03126061300006,53.17987702000015],[160.05030358200017,53.15843333500011],[160.05388431100002,53.13930898600013],[160.05274498800011,53.119818427000055],[160.05860436300023,53.09735748900014],[160.01563561300006,53.11542389500006],[160.00367272200006,53.11473216400013],[159.99537194100017,53.111761786000116],[159.98698978000013,53.11078522300015],[159.96949303500017,53.11102936400009],[159.96306399800008,53.113226630000085],[159.96143639400023,53.11863841400013],[159.96045983200023,53.12547435100005],[159.95557701900006,53.132066148000106],[159.93116295700023,53.145941473],[159.79957116000017,53.19037506700011],[159.77149498800006,53.20359935100008],[159.75684655000006,53.220892645000056],[159.76319420700008,53.242417710000076],[159.78565514400012,53.25771719000012],[159.8107202480002,53.270086981000176],[159.82504316499998,53.282945054000024],[159.78288821700008,53.27411530200014],[159.764008009,53.265611070000105],[159.73015384200008,53.238999742000075],[159.71314537900017,53.23647695500016],[159.6949975920002,53.24066803600009],[159.67497806100013,53.24819570500012],[159.63249759200008,53.257147528000175],[159.59229576900023,53.25421784100014],[159.47771243600008,53.22943756700009],[159.46127363400007,53.222967841000084],[159.44532311300003,53.210882880000085],[159.41089928500006,53.17682526200015],[159.38152103000002,53.161769924000126],[159.35352623800011,53.16461823100017],[159.32422936300011,53.172796942],[159.29078209700006,53.173732815000065],[159.27466881600017,53.1676292990001],[159.24105879000015,53.14960358300006],[159.22242272200006,53.14573802300005],[159.2060653000002,53.14427317899999],[159.163828972,53.13491445500015],[159.00326582100016,53.076849677],[158.870941602,52.99677155200011],[158.73943118600002,52.90330638200005],[158.70866946700008,52.891791083000115],[158.69483483200023,52.90924713700018],[158.68555748800011,52.93402741100014],[158.66830488399998,52.95400625200013],[158.65902754000004,52.972967841000056],[158.67367597700016,52.994940497000144],[158.65943444100006,53.00242747600011],[158.61980228000013,53.042669989],[158.59156334700006,53.0621605490001],[158.57642662900005,53.06785716399999],[158.55795332100004,53.07001373900009],[158.53972415500004,53.06875234600007],[158.53052819100017,53.065008856000034],[158.52320397200018,53.05878327000009],[158.51050866,53.05019765800015],[158.4933374360002,53.04413483300006],[158.45337975400005,53.034613348000065],[158.437836134,53.02533600500011],[158.42945397200015,53.017564195000105],[158.41822350400017,53.00478750200007],[158.41504967500012,52.99274323100015],[158.43100019600004,52.987494208000086],[158.453868035,52.983465887000094],[158.45085696700016,52.973334052000055],[158.43685957100016,52.95994700700005],[158.427419467,52.94651927300004],[158.43555748800023,52.91974518400014],[158.46452884200008,52.90721263200005],[158.50049889400012,52.90412018400015],[158.5304468110002,52.90558502800003],[158.5231225920002,52.916896877],[158.51050866,52.92552317900011],[158.48267662900005,52.9403343770001],[158.50619550900004,52.94745514500015],[158.53199303500006,52.94415924700011],[158.55779056100008,52.93732330900018],[158.581879102,52.933498440000065],[158.60816491,52.93227773600016],[158.62256920700003,52.927313544000114],[158.63298587300008,52.916978257],[158.6471460300002,52.89935944200006],[158.63746178500006,52.891424872000115],[158.62769616000017,52.88544342699999],[158.61744225400017,52.881170966000084],[158.60621178500014,52.87824127800015],[158.62256920700003,52.86542389500011],[158.6284285820001,52.856878973],[158.62476647200018,52.84882233300006],[158.61304772200018,52.83730703300013],[158.59213300900004,52.82330963700015],[158.57789147199998,52.82465241100005],[158.56421959700018,52.832342841000084],[158.54468834700018,52.83730703300013],[158.5636499360002,52.803534247000144],[158.56519616000006,52.795721747000144],[158.5532332690001,52.78790924700014],[158.5131942070001,52.78412506700015],[158.49976647200018,52.778957424000126],[158.49512780000018,52.75873444200012],[158.51563561300011,52.74632396],[158.54615319100006,52.74079010600015],[158.57129967500023,52.741034247000115],[158.5708113940002,52.7337914080001],[158.5909936860002,52.72329336100001],[158.59937584700006,52.713771877000035],[158.60157311300023,52.70148346600017],[158.5978296230002,52.69245026200015],[158.58773847700004,52.687323309000035],[158.57129967500023,52.687079169000086],[158.5758569670002,52.66754791900003],[158.56470787900017,52.6473656270001],[158.54493248800023,52.631537177000055],[158.52361087300008,52.62498607000008],[158.5004394710002,52.62131502900009],[158.46593528400015,52.63591756900003],[158.427419467,52.65228913000006],[158.42115319100017,52.659125067000055],[158.42481530000023,52.64740631700009],[158.43083743600005,52.636623440000065],[158.438731316,52.6266136740001],[158.44849694100006,52.617580471000096],[158.42809166600014,52.601383912000145],[158.42733384300007,52.59376779800006],[158.46080482400012,52.574698656000024],[158.49305280600007,52.57226431100004],[158.52361087300008,52.57037995000012],[158.52556399800014,52.562201239],[158.5231225920002,52.552639065],[158.51677493600005,52.53620026200012],[158.517344597,52.524725653000175],[158.51905358200023,52.51650625200007],[158.51612389400012,52.509466864],[158.50318444100012,52.50153229400006],[158.52320397200018,52.49030182500003],[158.5304468110002,52.487860419000114],[158.51905358200023,52.47687409100014],[158.47803795700023,52.46792226800003],[158.4620874360002,52.46051666900003],[158.46070397200006,52.454901434000035],[158.46322675900015,52.43846263200013],[158.4620874360002,52.432562567],[158.45362389400006,52.426499742000104],[158.43091881600006,52.41889069200006],[158.42115319100017,52.41209544500013],[158.43995201900023,52.407294012000065],[158.46078535200002,52.41461823100014],[158.48243248800011,52.42576732000007],[158.50318444100012,52.432562567],[158.5265405610002,52.43036530200011],[158.54346764400006,52.42072174700006],[158.57129967500023,52.39166901200015],[158.55103600400005,52.38572825700014],[158.52076256600003,52.36220937700007],[158.50318444100012,52.35809967700013],[158.51042728000002,52.34715403900007],[158.52271569100014,52.33828359600004],[158.5373641290001,52.33234284100008],[158.551524285,52.33022695500007],[158.55860436300006,52.324855861000046],[158.55787194100006,52.31305573100015],[158.55298912900014,52.30141836100013],[158.54769941499998,52.296047268000095],[158.53549238400004,52.29205963700012],[158.50464928500014,52.2735863300001],[158.48951256600017,52.26813385600015],[158.427419467,52.26813385600015],[158.43848717500003,52.243312893],[158.41675866,52.23383209800009],[158.39014733200017,52.22622304900015],[158.386485222,52.20669179900006],[158.3990991550002,52.198431708000086],[158.41667728,52.19257233300014],[158.42701256600006,52.18427155200005],[158.41773522200018,52.168768622000144],[158.39551842500012,52.15497467700014],[158.38445071700008,52.14590078300013],[158.37964928500017,52.13467031500012],[158.37208092500023,52.129584052000105],[158.33659915500007,52.137884833],[158.32496178500006,52.13837311400009],[158.31902103000002,52.13031647300015],[158.31674238400015,52.11969635600009],[158.31755618600008,52.09739817900008],[158.31983483200023,52.090277411000116],[158.32911217500006,52.07990143400012],[158.3312280610002,52.073187567000055],[158.3273218110002,52.067124742000075],[158.30079186300023,52.052720445000105],[158.29167728000004,52.04287344000009],[158.28638756600017,52.03424713700018],[158.28394616000006,52.024603583000115],[158.28345787900005,52.01141998900006],[158.28687584700006,51.967515367000125],[158.26785189200012,51.9502315380001],[158.24918901200024,51.942208984000146],[158.21713100400018,51.924871473000124],[158.2067163420002,51.90204498900009],[158.19092858200005,51.89813873900009],[158.1311074280001,51.85145985700011],[158.12192709500007,51.83203970500007],[158.11890709700006,51.81622955900003],[158.1069442070001,51.80898672100001],[158.02711022200018,51.776109117000104],[158.01482181100013,51.76601797100015],[158.00668379000004,51.74030182500012],[157.999278191,51.728013414000046],[157.9894311860002,51.71796295800008],[157.96705162900017,51.70905182500003],[157.95769290500004,51.697577216000084],[157.94141686300011,51.67226797100015],[157.91846764400012,51.660834052],[157.91211998800011,51.65232982000008],[157.92025800900004,51.637437242000104],[157.913340691,51.63129303600011],[157.88542728000007,51.636135158],[157.8536889980002,51.62238190300009],[157.82526756800016,51.596955680000136],[157.8010359350001,51.589107201000026],[157.75919243400008,51.54398302900016],[157.71285241800015,51.55003466000004],[157.678907329,51.53812527700016],[157.60645592500012,51.52606842699999],[157.53687584700006,51.48607005400014],[157.4926863940002,51.44009023600007],[157.4731135360001,51.41111234400007],[157.48804772200006,51.39052969000015],[157.47573820900018,51.36147373800016],[157.44653783200025,51.34789779000009],[157.38850420400004,51.35131795400018],[157.35173587300008,51.32965729400006],[157.30697675900004,51.29523346600011],[157.28565514400017,51.27252838700015],[157.27662194100006,51.251125393],[157.26303144599999,51.237738348],[157.20020592500023,51.20661041900011],[157.14230174800005,51.167323567000054],[157.09589118600016,51.153215831000026],[157.04590905000023,51.123602606000034],[156.96813944000021,51.06919202900017],[156.92010480300004,51.03303217600002],[156.8767314420002,51.018723948000016],[156.85181268700012,50.9974483210001],[156.837245615,50.97770981300012],[156.82073036900007,50.970859728],[156.80343917600004,50.95392506500012],[156.780249527,50.93622017000017],[156.74771295000016,50.91048957000008],[156.7196975090002,50.886453751000076],[156.66998844200003,50.863916909000075],[156.65823524599998,50.88260556800016],[156.69368583300016,50.909203114000135],[156.7619372980001,50.98443058500011],[156.7702696140001,51.01813357600009],[156.75694235100016,51.035917285],[156.76330793700018,51.0623384280001],[156.76154536099997,51.07797390100008],[156.74198021100003,51.09043674600018],[156.70809358000022,51.08770360500007],[156.70533287900014,51.10301341400018],[156.7002059250002,51.11839427300013],[156.71900356000017,51.15707211500016],[156.72187403500018,51.195482086000126],[156.69361412900017,51.20990631700015],[156.65626061300023,51.251125393],[156.6421004570001,51.258368231000034],[156.59083092500018,51.26137929900012],[156.57699629000015,51.265082098000086],[156.56153405000023,51.27118561400006],[156.54688561300023,51.27944570500016],[156.53549238400007,51.289252020000085],[156.5236108730001,51.31150950700014],[156.52019290500013,51.33563873900006],[156.52149498800011,51.41128164300015],[156.51954186300017,51.42291901200015],[156.51563561300006,51.432684637000094],[156.51099694100003,51.43813711100013],[156.4995223320001,51.44733307500012],[156.49512780000012,51.45311107000008],[156.4917098320001,51.45628489800013],[156.48707116000017,51.457342841000084],[156.48316491000017,51.458970445000105],[156.48161868600002,51.46369049700003],[156.4824324880002,51.4662946640001],[156.48780358200008,51.4736188820001],[156.48178144599999,51.49628327000009],[156.48023522200006,51.51654694200009],[156.48161868600002,51.559271552],[156.48340905000012,51.57225169500002],[156.49244225400005,51.593695380000135],[156.49512780000012,51.60394928600006],[156.49463951900023,51.615668036000145],[156.48902428500006,51.635321356000084],[156.48780358200008,51.64496491100006],[156.50123131600012,51.77505117400006],[156.4860132170001,51.9576683610001],[156.43919187900002,52.21603094800018],[156.37277515600024,52.40462384300009],[156.35090152899997,52.427954312],[156.33366946700008,52.44916413000006],[156.3033960300002,52.4809431010001],[156.29672285200004,52.49233633000007],[156.28223717500006,52.529445705000064],[156.29428144599999,52.52948639500006],[156.30201256599997,52.52545807500009],[156.30860436300006,52.51996491100009],[156.31763756600017,52.51512278900002],[156.3374129570001,52.50153229400006],[156.34245853000004,52.50096263200008],[156.346934441,52.502752997000144],[156.35157311300023,52.50385163],[156.35808353000002,52.50153229400006],[156.37086022200018,52.49005768400009],[156.37574303500006,52.47846100500008],[156.37533613400015,52.46466705900015],[156.37232506600006,52.446844794000086],[156.39527428500006,52.45636627800008],[156.41968834700015,52.47174713700004],[156.43881269600016,52.49087148600002],[156.44662519600004,52.51141998900014],[156.43189537900005,52.524603583],[156.35840905000023,52.53074778899999],[156.33130944100006,52.53620026200012],[156.30355879000015,52.555121161000145],[156.29240586600005,52.5733233850001],[156.2657258300002,52.59817127300006],[156.25352067900022,52.62838851700003],[156.23221744200006,52.66451716799999],[156.16479472000003,52.798664935000126],[156.11119584000014,52.93542032800012],[156.09791100400005,53.042669989],[156.05640709700006,53.214667059000085],[156.05152428500017,53.284979559000035],[156.03922422800022,53.37062855600006],[155.98669030600004,53.57687904800012],[155.97437584700006,53.642645575000145],[155.97136478000002,53.66010163000011],[155.96720745700023,53.73180509400011],[155.96127861000005,53.75187553600013],[155.95468269400024,53.78610475000012],[155.9386499360002,53.844712632],[155.93580162900014,53.86517975500006],[155.91236412900017,53.90615469000006],[155.88445071700002,53.98183828300016],[155.88835696700002,53.99876536700005],[155.884613477,54.024074611000074],[155.87134850400017,54.07123444200006],[155.8073022800002,54.20343659100017],[155.72803795700023,54.42682526200018],[155.63851972700013,54.769476630000085],[155.640391472,54.79193756700008],[155.64535566500015,54.81150950700005],[155.64454186300017,54.83152903900013],[155.61622155000012,54.87368398600016],[155.61003665500007,54.89492422100015],[155.55117716700013,55.284204852000116],[155.553932143,55.36460287100009],[155.56642224600014,55.433014761000045],[155.58628674200006,55.520932761000054],[155.60445589400015,55.58157487900003],[155.62281334700018,55.639227606000084],[155.65308678500017,55.921332098000036],[155.66651451900003,55.96185944200011],[155.68433678500006,55.99433014500012],[155.6863712900001,56.006537177],[155.685313347,56.0280622420001],[155.68620853000013,56.03912995000014],[155.68978925899998,56.04751211100002],[155.71013431100016,56.08148834800015],[155.72055097700016,56.09218984600007],[155.73292076900012,56.09796784100005],[155.74545332100004,56.101141669000114],[155.75603274800008,56.1066755230001],[155.76205488400012,56.11945221600017],[155.74219811300014,56.126695054],[155.74284915500016,56.14590078300013],[155.75367272200012,56.16567617400007],[155.76547285200016,56.17470937700007],[155.78003991,56.24750397300012],[155.81055748800023,56.29075755400011],[155.92432701900012,56.584540106000034],[155.93653405000006,56.602362372000115],[155.94654381600017,56.62189362200009],[155.98086486300022,56.670493083000096],[156.00835735200005,56.70883208400015],[156.0476159990001,56.765090664000134],[156.125254754,56.83201732000008],[156.1591903000002,56.84446849199998],[156.17400149800002,56.84585195500016],[156.16993248800006,56.83576080900009],[156.08253014400012,56.76707591399998],[156.06714928500017,56.74738190300015],[156.06373131600006,56.71596914300004],[156.08236738400015,56.737941799000126],[156.12191816499998,56.77496979400014],[156.14576256600017,56.79108307500003],[156.19564863400004,56.814764716000134],[156.207774285,56.8258324240001],[156.21176191499995,56.83808014500006],[156.20801842500023,56.846136786],[156.20582116000017,56.85431549700009],[156.2350224200001,56.866604293000094],[156.2797759600002,56.87568062600011],[156.31370214100016,56.88572450300008],[156.38558248700002,56.91175411200014],[156.42774222500023,56.93016268800012],[156.46127480400014,56.94840631500015],[156.47131837200018,56.962733954000086],[156.50848915700013,56.99518868000017],[156.53036108300014,57.02116264600015],[156.53077354200016,57.05425134199999],[156.5358179050002,57.08844635600012],[156.55209394600004,57.108954169000164],[156.57325280000023,57.11371491100005],[156.59424889400006,57.09300364800007],[156.60515384200008,57.08584219000012],[156.64087975400017,57.08258698100017],[156.65626061300023,57.07591380400011],[156.66814212300008,57.05475495000011],[156.67546634200008,57.04621002800009],[156.68384850400005,57.0483259140001],[156.71802819100003,57.082749742000125],[156.719004754,57.09088776200014],[156.72580391400018,57.10574912200009],[156.72968623100004,57.11524718200012],[156.7484909530002,57.13086745900015],[156.7693688420001,57.14887139500014],[156.83161576600006,57.213450991000016],[156.87917404500016,57.26951845300011],[156.9287926110001,57.33147288100003],[156.97649064200013,57.391016340000036],[157.00128759100002,57.425505311000144],[156.99105879000015,57.45636627800017],[156.97771243600002,57.54608795800004],[156.94703209700006,57.60732656500012],[156.93783613400015,57.647162177000105],[156.93067467500012,57.65843333500011],[156.85499108200023,57.721340236000124],[156.820078972,57.735988674000154],[156.7830509770001,57.73989492400015],[156.74903405000023,57.72955963700006],[156.80103600400005,57.77338288000002],[156.98145592500018,57.85712311400011],[156.99756920700023,57.85614655200005],[157.011973504,57.84284088700003],[157.03638756600006,57.81268952],[157.05103600400017,57.80508047100006],[157.2418725920002,57.77049388200008],[157.3100692070001,57.77122630400011],[157.39185631600017,57.78119538],[157.46989993600002,57.80394114800013],[157.5267033210001,57.84316640800016],[157.55738366000017,57.876410223000065],[157.5646264980002,57.88784414300004],[157.56690514400006,57.89769114800013],[157.56788170700023,57.91925690300014],[157.57007897200006,57.92877838700003],[157.586680535,57.95111725500008],[157.63266035200013,57.983832098],[157.65333092500006,58.00389232000007],[157.64918053500006,58.009263414000095],[157.64389082100016,58.01976146],[157.63965905000023,58.02496979400009],[157.695078972,58.02728913000014],[157.7231551440001,58.02460358300006],[157.76563561300011,58.003078518000144],[157.789317254,57.99652741100005],[157.947032097,57.98309967700008],[158.05689537900014,57.990220445000126],[158.16797936300006,58.02073802300007],[158.22461998800006,58.025458075000174],[158.27662194100006,58.00389232000007],[158.30372155000023,57.970119533000066],[158.32097415500007,57.95441315300011],[158.3382267590001,57.953029690000115],[158.34555097700007,57.96735260600012],[158.32984459699998,57.983221747000144],[158.29078209700006,58.00389232000007],[158.29525800900004,58.024847723],[158.27784264400023,58.03506094000015],[158.25123131599997,58.03839752800018],[158.228770379,58.03864166900003],[158.24675540500007,58.05198802300013],[158.31755618600008,58.079575914000046],[158.33448326900023,58.089178778000026],[158.41781660200013,58.14911530200005],[158.54411868600002,58.19969310100005],[158.6547957690001,58.26943594],[158.78353925900004,58.312974351000136],[158.852305535,58.348822333000136],[158.89283287900005,58.35765208499999],[158.94809004000015,58.388128973000114],[159.02377363400004,58.41478099200007],[159.10938561300011,58.47459544500013],[159.13705488400004,58.483628648000135],[159.14470462300002,58.488348700000145],[159.14722741000006,58.49848053600001],[159.15251712300002,58.507879950000024],[159.167816602,58.510972398000106],[159.1837671230002,58.50608958500014],[159.19214928500017,58.497137762000115],[159.19874108200023,58.48663971600014],[159.20826256600006,58.477484442000055],[159.22331790500007,58.470404364],[159.2369897800002,58.467840887000094],[159.24219811300006,58.47260163],[159.23267662900017,58.48737213700014],[159.219981316,58.49445221600003],[159.20264733200023,58.50018952],[159.18751061300023,58.50804271],[159.18091881600006,58.521551825000145],[159.19369550900004,58.54197825700013],[159.3608504570001,58.6440290390001],[159.38355553500017,58.665513414000046],[159.40162194100017,58.678045966000134],[159.4238387380002,58.684068101000044],[159.49545332100016,58.69183991100006],[159.50367272200018,58.69660065300014],[159.50489342500006,58.70164622599999],[159.5026147800002,58.70868561400007],[159.4991968110002,58.71466705900014],[159.49683678500006,58.71645742400015],[159.51026451900023,58.728583075000145],[159.54029381600014,58.74408600500006],[159.5548608730002,58.75429922100001],[159.58253014400012,58.78204987200017],[159.60914147200006,58.798651434000035],[159.6119897800002,58.80467357000005],[159.61182701900023,58.812160549],[159.6198022800002,58.82632070500013],[159.63461347700016,58.83795807500003],[159.65235436300023,58.84369538000011],[159.671153191,58.84760163000003],[159.68864993600008,58.85358307500003],[159.70736738400004,58.865627346000124],[159.72779381600012,58.883042710000026],[159.74390709700018,58.90387604400008],[159.75074303500017,58.92560455900015],[159.75294030000006,58.95819733300011],[159.75074303500017,58.97089264500006],[159.74561608200005,58.98094310100005],[159.73210696700016,59.00055573100011],[159.72966556100008,59.01129791900002],[159.74268639400023,59.031398830000064],[159.79200280000023,59.06753164300002],[159.79379316500004,59.083889065000115],[159.80347741000017,59.09638092700014],[159.86443118600008,59.14057038000003],[160.16211998800006,59.29376862200014],[160.18751061300011,59.31150950700006],[160.19947350400005,59.32314687700015],[160.21461022200006,59.332464911],[160.23568769600016,59.33759186400003],[160.27800540500007,59.340236721],[160.31031334700018,59.346136786000116],[160.33627363399998,59.36107005400008],[160.4464624360002,59.45526764500009],[160.45582116,59.47402578300012],[160.45834394600004,59.49843984600009],[160.46607506600006,59.52106354400014],[160.4790145190002,59.539862372000094],[160.497325066,59.55247630399999],[160.5200301440002,59.55996328300014],[160.54395592500012,59.56427643400014],[160.5929468110002,59.56679922100006],[160.61231530000012,59.57037995000004],[160.66797936300011,59.59467194200011],[160.80494225400005,59.605373440000115],[160.8468530610001,59.61798737200002],[160.87378991000014,59.63214752800006],[160.9261173840001,59.667181708000136],[160.96517988400015,59.707464911000116],[160.9752710300002,59.715073960000055],[160.9908960300002,59.723822333000115],[161.01742597700016,59.73126862200011],[161.023203972,59.73541901200003],[161.03296959700006,59.747259833],[161.03858483200023,59.75177643400014],[161.05836022200018,59.75751373900012],[161.07846113400004,59.75901927299999],[161.09831790500002,59.76288483299999],[161.191742384,59.83038971600016],[161.283895958,59.8705339430001],[161.33790123800006,59.94529857000007],[161.4177242610002,59.98220434500003],[161.46665528400015,60.032238907000085],[161.53284867300025,60.067615377],[161.56137129000015,60.07245514500014],[161.57984459700018,60.073919989],[161.59310957100004,60.08112213700004],[161.65418614600006,60.089464382000166],[161.710215691,60.12384674700014],[161.74591430800004,60.13011133000005],[161.7803172630001,60.14512658200012],[161.89721450200014,60.20296066200011],[161.93632638800003,60.23647092900001],[161.9480504440002,60.270097503999985],[161.94462539299997,60.29452430600012],[161.93739822700016,60.30355569900017],[161.92237389400012,60.31346263200008],[161.89492886900018,60.29753049200017],[161.89314403800003,60.30310640600011],[161.90696807800023,60.32727101800013],[161.91072207400018,60.34892126400011],[161.92769594500012,60.37289814800012],[161.92580692300012,60.397236737000135],[161.93855511400002,60.41678777200015],[161.994231722,60.43060752000018],[162.1245223320002,60.485012111000074],[162.16521243600013,60.501857815000065],[162.18311608200005,60.52236562700012],[162.206228061,60.538031317],[162.34701582100016,60.54995351800012],[162.3658960300002,60.555161851000136],[162.40251712300017,60.56061432500017],[162.4332788420002,60.58071523600002],[162.46094811300006,60.59446849200005],[162.47461998800011,60.60488515800013],[162.50180097700004,60.620794989000146],[162.536875847,60.626450914000046],[162.574066602,60.62303294500013],[162.60767662900005,60.61172109600015],[162.62549889400012,60.6105817730001],[162.6518660820001,60.61554596600014],[162.67790774800005,60.623724677000084],[162.7124129570001,60.642157294000114],[162.75367272200006,60.645941473000114],[162.76880944100006,60.653021552],[162.81450773300017,60.6863116730001],[162.86913250500007,60.710091594000076],[162.89122549300006,60.73202659499999],[162.88262402000012,60.741198010000076],[162.8889825430001,60.75248384300012],[162.91668833100005,60.76000646100011],[162.96681137800024,60.76757704500006],[163.02139804700002,60.77951130400014],[163.05266504799997,60.76019976600013],[163.099050312,60.7546883130001],[163.1229647500002,60.7655494990001],[163.102306126,60.77712334799999],[163.12179428400006,60.778130904000065],[163.1708503120001,60.781785216000074],[163.18381966400003,60.793390046000134],[163.1936584770002,60.80521051600011],[163.21338654000024,60.806969320000164],[163.24388612800013,60.79625586200002],[163.2698893820002,60.80303922000006],[163.32482050700017,60.80466475900006],[163.34565880100004,60.79929207800016],[163.33351250799998,60.779827307000076],[163.31531905600005,60.7506243690001],[163.29542076900017,60.728461005000106],[163.31478925899998,60.72174713700018],[163.33399498800023,60.725002346000124],[163.34083713700014,60.750393573],[163.35790653000018,60.77029374700005],[163.38441846800006,60.795002059000026],[163.39480637600016,60.81513444199999],[163.414865156,60.821138351],[163.43623420599997,60.831511807000155],[163.4618307540001,60.83564659100015],[163.49176468600015,60.84389559200013],[163.53886298800003,60.85832921700002],[163.58675323000014,60.86528295300009],[163.61540916800004,60.86915711600001],[163.6576790080001,60.86757784500018],[163.69981025400014,60.855588403000084],[163.72817300600002,60.86838172500008],[163.75103960500022,60.88305833300002],[163.75987887400007,60.90173599000018],[163.77426304700023,60.91852002200012],[163.7516382170002,60.93040599200002],[163.73414147200006,60.93854401200012],[163.68588300900004,60.95477936400006],[163.60785308900003,60.964815661000024],[163.53603957800007,60.99077529500014],[163.51598451700002,60.99516767400002],[163.48730334800015,61.001664093000116],[163.53044462299997,61.032756527000096],[163.55920732400014,61.04704422000011],[163.61820501100007,61.05915804300009],[163.63133774400004,61.08197941400008],[163.61573326900023,61.104885158],[163.62504155700017,61.12107286600012],[163.64971057000017,61.13118877900008],[163.66625650700004,61.14485960800011],[163.7625734110001,61.186945116000025],[163.90202884200008,61.226874091000084],[163.918711785,61.22915273600016],[163.93279056100008,61.23529694200011],[163.94410241000003,61.252590236000124],[163.9467879570002,61.265814520000056],[163.9464624360002,61.28978099200013],[163.95085696700005,61.30097077000012],[164.00424238400004,61.32656484600002],[164.02881920700023,61.34662506700006],[164.0229598320001,61.37238190300012],[163.97657311300023,61.41974518400014],[163.952321811,61.434515692000126],[163.87183678500017,61.45209381700006],[163.84782962300014,61.452866929],[163.82781009200008,61.44773997600008],[163.81177819100017,61.439357815],[163.7960661280001,61.421745236000056],[163.77569297800008,61.41320669100004],[163.75978084600004,61.42897665000014],[163.75147545700023,61.443304755],[163.7594941970001,61.479000549000126],[163.80140265000003,61.5198000880001],[163.83008873800023,61.555853583000065],[163.84620201900012,61.57977936400012],[163.84441165500013,61.598334052000105],[163.85457209700022,61.62583538100007],[163.8660565710002,61.64652369600004],[163.90300891100017,61.66075548900012],[163.93123427600008,61.667926849000104],[163.98672916200022,61.65926112800012],[164.01521406299997,61.66716576200009],[164.04481533500007,61.68343317700013],[164.05606347200012,61.722608732000126],[164.06345031900017,61.74513288100011],[164.0678817070001,61.785874742000104],[164.06755618600008,61.80744049700002],[164.06039472700004,61.81867096600003],[164.04948978000007,61.83120351800013],[164.04249108200005,61.84296295800003],[164.0523638340001,61.84985781300009],[164.06255899600012,61.85604307600011],[164.07887877700014,61.870956091000075],[164.08995686000017,61.89470406800016],[164.09488332,61.92433556400005],[164.08295175600009,61.94256394899998],[164.08771782500017,61.96687864800007],[164.07277428400008,61.98107794300013],[164.07270525500016,61.99570264600015],[164.08329025400022,61.998055653000115],[164.10324866900007,62.008988927000146],[164.10640413500008,62.02329382300014],[164.10341055399996,62.03883591600011],[164.099395166,62.05147420400006],[164.0951420800001,62.06328083800004],[164.0927354940002,62.07573239300011],[164.07959892700015,62.09050549300012],[164.08359695099998,62.102520555000105],[164.10028420300014,62.10824758700012],[164.12677625200016,62.128656601999985],[164.11711940500007,62.143942108000125],[164.1075444360001,62.15461934799999],[164.10538335700008,62.167846028000056],[164.1256685710001,62.19404599500008],[164.11820447800002,62.206124394000156],[164.12041809600024,62.227489985000126],[164.11987560000003,62.24060541100011],[164.12290077300023,62.249613294000184],[164.12719441400012,62.26237935100012],[164.14855011400005,62.26695540600003],[164.16007473500005,62.28150289500004],[164.19393686700008,62.295688688000055],[164.21067054400012,62.31242897900013],[164.24357761700017,62.32797695100014],[164.2865276440002,62.332495287000064],[164.33709501900003,62.34289025100013],[164.418061348,62.353483483000055],[164.44250879000018,62.38377397600014],[164.45545397300012,62.404692570000165],[164.50254444400005,62.41268197400014],[164.51234856000005,62.43252454700003],[164.53831287000006,62.451109514000144],[164.59337150300004,62.4495686740001],[164.63977080700002,62.46277170900007],[164.73902960500018,62.46036739300008],[164.8628035820002,62.43378327000009],[164.90279139499998,62.417394910000084],[164.9477039440002,62.409280216000056],[164.98842025900015,62.40304168799999],[165.05447029000015,62.40246970499999],[165.10435295200014,62.40311696800008],[165.179642422,62.378738459000054],[165.22543379000004,62.38287995000014],[165.23731530000018,62.37653229400003],[165.26677493600008,62.33502838700003],[165.28126061300011,62.326564846000096],[165.29688561300006,62.322577216000106],[165.316172722,62.32420482000013],[165.30730228000004,62.33665599200005],[165.30014082100004,62.35268789300015],[165.28728274800017,62.36611562700013],[165.2305582800001,62.39534123500011],[165.18135830300017,62.40541190500006],[165.11087532400003,62.4294155860001],[165.12378205600012,62.45061397299998],[165.17012675200021,62.459196531000096],[165.26671063500024,62.461972564000014],[165.38729848,62.465919733000035],[165.44851184900008,62.45181710600014],[165.59506269600016,62.44350820500013],[165.62761478000002,62.444525458],[165.65088951900023,62.459173895],[165.64340253999998,62.459173895],[165.46875615200008,62.47075855100008],[165.35371724399997,62.48696788900013],[165.11002850300005,62.48532579300014],[164.98115143500004,62.51772518700009],[164.92826166300003,62.536382334000116],[164.83062466100014,62.55133995800004],[164.76565752500008,62.558323291000086],[164.70704186300006,62.58954498900012],[164.66773522200018,62.63182200700005],[164.651621941,62.64069245000009],[164.63404381600017,62.64752838700012],[164.61622155000012,62.65717194200008],[164.59793706600024,62.67306541600009],[164.52602127099993,62.67575213500005],[164.44691868800007,62.68941884900012],[164.3746314670001,62.690866490000175],[164.3082683680001,62.66100804800014],[164.22972542700012,62.66022241300006],[164.10650417700018,62.65114425300006],[164.05512614700004,62.65609581300013],[164.00578752199996,62.633979638000035],[163.96218619400005,62.620349531],[163.94837210300003,62.59565319600015],[163.908405675,62.58437361199999],[163.85936235500017,62.6044990700001],[163.76386912899997,62.602200692],[163.71890760500017,62.5925150290001],[163.66974322999997,62.586949986],[163.62573935099996,62.58870721600008],[163.58239469000003,62.5749844050001],[163.52386306700024,62.55717364700011],[163.47553581900002,62.54506953700011],[163.42969362799997,62.567410732000056],[163.39893368000006,62.575901669000146],[163.38758384000002,62.54844947],[163.34214266300015,62.54072130700014],[163.26705047000002,62.52199464200011],[163.2498231330002,62.507735410000166],[163.26434054200004,62.48428384600008],[163.26880800500007,62.46564178100012],[163.24409892400016,62.447745541000145],[163.21278842800004,62.44152271200006],[163.18505270500017,62.442751257],[163.16773073,62.43205473900015],[163.17653153000006,62.41905873899999],[163.21424943900016,62.421316685000114],[163.2348142830001,62.41759862200014],[163.2294636940001,62.40434943899999],[163.22858948800004,62.38489401700018],[163.27751056700015,62.373973918],[163.30214607700006,62.37529552200011],[163.32283079300012,62.363866289],[163.3516978170001,62.350111615000124],[163.37021225100014,62.34000160900002],[163.3689183510002,62.327669530000016],[163.3398547950002,62.32429414100015],[163.28674854800002,62.32546949500014],[163.25948519700003,62.3195961490001],[163.23152305800014,62.31139896600016],[163.22299238400004,62.304266669000135],[163.2247766050001,62.29352059200007],[163.24133645900008,62.285331038000045],[163.22124337300002,62.273657048000025],[163.203447824,62.27778850900002],[163.17926428900014,62.27347211400012],[163.13560047000013,62.250927262000104],[163.0914865970001,62.22663806200008],[163.08692467500012,62.214992580000015],[163.09009850400017,62.202948309000085],[163.10474694100017,62.16950104400006],[163.10808353000002,62.15379466399999],[163.11361738400015,62.14541250200001],[163.137950066,62.132147528000175],[163.14210045700023,62.12274811400006],[163.15040672600006,62.113302478000136],[163.14760494800012,62.10401327900017],[163.12033563200004,62.097369844000085],[163.10107854300023,62.09207637700013],[163.10502322000005,62.079971173000054],[163.1227440140002,62.06757853100011],[163.17628014400023,62.06818268400017],[163.19312365400006,62.06662319100012],[163.1862832080001,62.05231449100013],[163.1650814640001,62.04480338900014],[163.14778897300008,62.03763795900012],[163.14240443700024,62.01970202300005],[163.13769169800005,62.008198101000076],[163.1259070030002,61.99831037200006],[163.11926050700006,61.98871407299999],[163.094506504,61.9732186640001],[163.06865832200018,61.96662123500009],[163.08017639800005,61.954659390000145],[163.06709701900004,61.93601880300004],[163.04286975400007,61.93051299000014],[163.02624276200007,61.92097114500014],[163.044200066,61.92169830900017],[163.0640545510001,61.917321888000096],[163.05838236100007,61.89819857200011],[163.03099075900016,61.87341118700008],[163.02602847400007,61.856603323000016],[163.0157888940001,61.84309736900003],[163.00030482700006,61.82875201700015],[162.9783975840002,61.809508806],[162.97673416600006,61.79957036900008],[162.9908420610001,61.78800605900007],[163.02711022200006,61.77570221600017],[163.10649958300004,61.756878748000034],[163.12887523600003,61.75654823000003],[163.145171491,61.744244917000096],[163.23878751200007,61.735476895],[163.29948184100007,61.72127979500011],[163.32479740800002,61.710445071],[163.34338702500006,61.70568605300014],[163.32197291200006,61.69338672200017],[163.32180070500024,61.675789776999984],[163.32654908499998,61.6578557540001],[163.29127668799998,61.64891185800012],[163.2425804740001,61.64448882200015],[163.22058286000004,61.64180827300008],[163.20789906100015,61.636769519000076],[163.20798697400008,61.62853446600011],[163.22410712600018,61.62394970200002],[163.23021156500013,61.61111495800008],[163.20512452300002,61.61458037500007],[163.1957960010001,61.625214766000155],[163.16553795700023,61.62995026200009],[163.13612435200005,61.62558898300002],[163.1120967680001,61.61592585600011],[163.08717434000008,61.598717244000014],[163.07593834700006,61.58515045800008],[163.08326256600017,61.57977936400012],[163.10761664800012,61.570855495],[163.10212430700008,61.55644477400013],[163.11206914100003,61.548096686000136],[163.04469992799994,61.51712855900002],[163.01728361200006,61.51658456400007],[162.98170006600017,61.53685130400005],[162.9676361940001,61.571826062000106],[162.95680781800016,61.57727248300007],[162.92741113000014,61.57862330500003],[162.90791725700015,61.579910252],[162.90311896900008,61.58907453200011],[162.9126113980002,61.596114129000014],[162.90882207800016,61.608737003000115],[162.89452626000016,61.6108578520001],[162.87572660800006,61.610334197000114],[162.85979835700002,61.602535571000125],[162.86014456200007,61.616675892],[162.87485193400005,61.62456246800009],[162.8975567080001,61.63427156600006],[162.93999578800012,61.639080959000076],[162.94318783599996,61.650097488000156],[162.930918816,61.66828034100003],[162.93067467500006,61.67548248900005],[162.87737219200008,61.69439046999999],[162.8388172370001,61.707571198000075],[162.80353128800002,61.71099023800018],[162.76557874400018,61.705107117000026],[162.69895441500003,61.686222677999986],[162.62266672100017,61.65906880900012],[162.63149355700014,61.637245578000105],[162.67961303400014,61.62240118600015],[162.74610925900006,61.62410244900003],[162.76425872000019,61.61348256300012],[162.7748399560001,61.593885395000186],[162.672076164,61.60455149700012],[162.60158364600002,61.62375864700003],[162.53866340100004,61.65249688800018],[162.50218913299997,61.6600789640001],[162.44883649900007,61.669838697],[162.41724694100017,61.675848700000174],[162.40723717500012,61.67194245000009],[162.38613609000018,61.658918503],[162.37548693400007,61.628879065000106],[162.35061010200016,61.61504191900017],[162.3140945850001,61.61782693500011],[162.29200280000006,61.61762116100006],[162.3061629570001,61.601385809000114],[162.32782279600005,61.59045485500012],[162.29445209900004,61.57712226600007],[162.27335036100024,61.56307273400007],[162.25195771800006,61.55256437700014],[162.22666757400012,61.55995650200008],[162.21648196700008,61.55784739799999],[162.21371503999998,61.54547760600014],[162.22842195200016,61.52451221500017],[162.215449002,61.51291086900012],[162.17997459400013,61.50501671500003],[162.16824823500022,61.493340574],[162.1501612640001,61.495014088000104],[162.13937334100004,61.49624871800002],[162.1361677020001,61.484060987000035],[162.11565903700014,61.47173047500014],[162.1006303840001,61.456711610000134],[162.10563297000024,61.44756053200013],[162.09531701900008,61.43638256100014],[162.06028536800002,61.43907403200008],[162.040782097,61.43610260600014],[162.06073927200003,61.41720439700005],[162.0269298950001,61.400906081000144],[161.98639023100012,61.37261949700014],[161.9393902630002,61.376556300000075],[161.92416425900004,61.39101797100001],[161.90007571700008,61.42747630400005],[161.88835696700016,61.430731512000094],[161.8805444670002,61.418198960000105],[161.8837996750002,61.40192291900017],[161.88933353000007,61.384588934000185],[161.9130184650002,61.357294326999984],[161.89023062800007,61.33551868500002],[161.86162649800016,61.33896614600009],[161.84707394100005,61.35924375600008],[161.82605518500011,61.37343738300013],[161.80729264200014,61.37220707200011],[161.80345998900012,61.36182049200012],[161.80922602700016,61.34558142000004],[161.79420347300018,61.334627943000065],[161.80210031100015,61.31711176900007],[161.7716156170001,61.298223039000064],[161.69260825300015,61.28623169200007],[161.65646283100014,61.26884458900004],[161.64658059500002,61.26351279100005],[161.63650847400007,61.262307642000096],[161.613248599,61.25712919200007],[161.59562749699998,61.25517756900017],[161.59614238400013,61.23749529700002],[161.603056076,61.22591920600002],[161.59385149800002,61.208170387],[161.58101547199996,61.20064262500013],[161.57997158200013,61.19127367400012],[161.56714538300014,61.18374418500012],[161.54604004300003,61.19258526900004],[161.52474058800024,61.195542408],[161.505813063,61.197782252000145],[161.48747561600024,61.20234205400014],[161.47119519200007,61.19559091700005],[161.46829842200023,61.183963095000095],[161.46033710200018,61.17143331700007],[161.44106083200003,61.16191089799999],[161.41661930400008,61.156210353000134],[161.4119064180002,61.15175986400014],[161.43580162900003,61.14272695500016],[161.45441086600013,61.13640610200012],[161.445836135,61.12096440600011],[161.41711330999996,61.11785711200007],[161.39666264700023,61.10894975700016],[161.29756609600005,61.055961278],[161.26115487000018,61.05088871100004],[161.23376836700004,61.05299907100014],[161.21224225500012,61.05418989600018],[161.20818672600004,61.04732388000015],[161.215070024,61.03569603600015],[161.20454755000011,61.02207962000007],[161.18209242000015,61.014430614],[161.18357358600022,60.99260704199999],[161.13464635500011,60.97095547200017],[161.04145523000014,60.942121781000104],[161.01173700100017,60.93002428500014],[160.97825330300012,60.909440898000135],[160.95087413600007,60.90084015700002],[160.9151492440002,60.89964503200018],[160.911222691,60.8810541180001],[160.9019666840001,60.86036449800012],[160.87187045800025,60.84820927500005],[160.84719452400023,60.81360341200018],[160.8326523210002,60.779760551000045],[160.82848893600024,60.754661305000084],[160.79647536100018,60.746890478000175],[160.7914487020001,60.73419663300014],[160.7916237520001,60.71770026899999],[160.76566008500018,60.72789966700005],[160.73745642600002,60.73109728000013],[160.72001718899998,60.75137898800001],[160.6867570430002,60.76011231400018],[160.66093410599996,60.75261576600004],[160.64170256500003,60.73357611000012],[160.6358789870002,60.7155770260001],[160.61528874799998,60.71483603200006],[160.59961785500005,60.72093495100001],[160.58078763400025,60.72305341800007],[160.58003039000013,60.73782886400003],[160.55906428500006,60.74060699200011],[160.5431945650001,60.73901662800015],[160.52785734600005,60.722711335000035],[160.50071901900017,60.71933925600017],[160.49336827900012,60.706747154000126],[160.47018458900018,60.69904675600016],[160.43852662800012,60.7029415520001],[160.4103193760001,60.706086075000044],[160.4258369570001,60.72946227800009],[160.44293916700005,60.742744527000134],[160.43101627600007,60.7492041220001],[160.41532458100008,60.74291256800011],[160.39797967600023,60.734347173000074],[160.37161748600013,60.722692474000056],[160.38179385900006,60.70160571200015],[160.3575857870001,60.65862019500004],[160.3186468380002,60.649871714000156],[160.28899248900007,60.639493198000125],[160.28764820900008,60.626610860000035],[160.28182299400012,60.60923125300009],[160.24934387700014,60.60252125900011],[160.23840466100015,60.58949710300011],[160.1859329150002,60.57840623400004],[160.15439268300022,60.57633613300008],[160.13607832100004,60.60211823100015],[160.15969337400023,60.64083152199999],[160.14961201700018,60.6507126770001],[160.14699867100003,60.66201063900009],[160.16422036200007,60.66415556400001],[160.19599980200022,60.66091496600002],[160.21962683900009,60.665107945000116],[160.21454235000013,60.67593435700008],[160.20780593600009,60.684482780000124],[160.20186252700003,60.69711010200017],[160.22007816500005,60.7103740270001],[160.24481390100001,60.71392022600004],[160.23376918900013,60.72502246600002],[160.25141024,60.734811683000046],[160.25016597100003,60.74663386100015],[160.242680129,60.75755634000008],[160.25168509100004,60.77241763700012],[160.23143101800022,60.79215764500004],[160.17009524800002,60.82489655200011],[160.1974237220002,60.827819868000134],[160.20540440900007,60.83803416500008],[160.21776347900018,60.845685669000076],[160.23248418400013,60.833795811000144],[160.25371237300007,60.824550286000054],[160.24608631100006,60.85432616100008],[160.24148908300012,60.874577070000115],[160.2681323730002,60.892658221000104],[160.27212288300007,60.90070998700018],[160.2815429150002,60.905555491000186],[160.30429483000003,60.904478628000064],[160.32657443600013,60.90690143300015],[160.34235986500008,60.907334357000096],[160.35752555600007,60.91075495300005],[160.35279381600003,60.923000393],[160.35348490000004,60.94515616400018],[160.37342943100012,60.96592930300015],[160.42487601800022,60.983678032000064],[160.40767537400006,61.00505097700012],[160.4212880280002,61.019099244000024],[160.4442145360001,61.036219521000085],[160.41274786600005,61.03596668100015],[160.3863923490002,61.03722554900012],[160.37182403500017,61.0432098510001],[160.34915780200006,61.03311112300004],[160.31792592500008,61.0351696310001],[160.28063719700006,61.0186964940001],[160.20197314499998,61.03821996600005],[160.17251028200022,61.030174857000084],[160.13054431300006,61.02034369400015],[160.07185874299995,61.005393554000044],[160.0638362550002,60.99518378000011],[160.047296764,60.984785833000096],[160.02535616100013,60.98405102200003],[160.009388221,60.970073667000044],[159.9984592540001,60.96349553000012],[159.98180058,60.96487377400002],[159.966352763,60.96618706000008],[159.95051526800015,60.95922818500018],[159.9573335480002,60.95065971300009],[159.95062849000007,60.94091249900005],[159.91491769300012,60.944203540000146],[159.8853487270002,60.941388810000134],[159.88830055300016,60.93126638900005],[159.9040085220001,60.92469789000013],[159.89866686600007,60.91552652200006],[159.88264119600007,60.913878932000095],[159.86376801800012,60.92293518500004],[159.8443447440001,60.929073468000134],[159.8279750810001,60.932136498000105],[159.7975390830001,60.93110254300007],[159.80701547300006,60.936571662000084],[159.82849943300008,60.94151897300004],[159.83458135500015,60.95477343600002],[159.8384813600001,60.969297389000126],[159.830488099,60.978460435000116],[159.85309303100016,60.98276623900013],[159.87941187300024,60.99987298700016],[159.91506965600004,61.02180632400011],[159.94509683099997,61.04630382900005],[159.9681111020002,61.05877935900012],[159.95218378700005,61.07125520100014],[159.96952272000013,61.07928464700014],[159.9763240890002,61.09603602500007],[160.00014050000016,61.106117512000125],[159.99141087800015,61.12414236600007],[159.97486626600013,61.13959133900014],[159.98214032800016,61.15218694100012],[159.97293821100018,61.16789063900014],[159.96338811300004,61.18185998200009],[159.9520631070002,61.19210676900015],[159.92737267500004,61.20380410400004],[159.9181981520001,61.213638016000125],[159.93544803700004,61.221137292000044],[159.95623273300018,61.227247026000114],[159.94329263100008,61.24377388900002],[159.90772545700017,61.259426174000154],[159.884731459,61.25688368],[159.85549742700002,61.25757233200015],[159.82273114499998,61.23251980700003],[159.80351229800013,61.241003087000095],[159.7756183050001,61.242205661000035],[159.7886778120001,61.25340873900008],[159.78971736400004,61.26571929],[159.8276164600002,61.27878555700012],[159.81852211400007,61.28917825000017],[159.8435731450002,61.292209862],[159.8729075160002,61.29212461200014],[159.90863190100018,61.29351967800001],[159.91215991100015,61.28631311300016],[159.92318665100018,61.27995414000018],[159.96365685300006,61.272809356],[159.99638284900007,61.28432429200011],[160.00399262200008,61.29222784300008],[159.9437479090001,61.29785441400012],[159.91016686300011,61.31391022300014],[159.93230732300006,61.327744731000124],[159.9724721150001,61.33890865600012],[159.97350775100008,61.35708914900008],[159.96522502700017,61.37803625400014],[159.99924440500004,61.38241432600001],[160.03564987700017,61.380213561000076],[160.05254318299995,61.37887610500009],[160.0494171070001,61.387833406000034],[160.05092019299997,61.39541031600008],[160.06857879300006,61.404032679000025],[160.0844459040001,61.40979284900012],[160.1068527570002,61.42996252300016],[160.1061062990001,61.44470298700007],[160.08805743800008,61.453157948000076],[160.07150574900018,61.45036568100006],[160.051499851,61.44890419200011],[160.0335148620001,61.451466114000176],[160.03498934900014,61.459046152000106],[160.05434704200002,61.46348231500017],[160.06683385699998,61.47057954500006],[160.08629762899997,61.47558854600008],[160.10122270600007,61.48256813300015],[160.11493626600006,61.48960161399999],[160.11323013000006,61.499679120000096],[160.1293776030001,61.50155317400008],[160.1710986080001,61.505801013000095],[160.21747640400022,61.511883895000054],[160.22915456200016,61.52669861900016],[160.24633505300002,61.53718741400014],[160.28513998700012,61.55410723500016],[160.26697132900009,61.56535777500012],[160.25122771800014,61.57519510200014],[160.24923102200003,61.58573037100008],[160.2630730670002,61.59359742000008],[160.28482073400008,61.606311385000154],[160.26842984700014,61.620110152000116],[160.25983154600013,61.62507038600002],[160.28851056400018,61.63092900100018],[160.31295129900002,61.644860840000135],[160.31879412900005,61.66676993800003],[160.30707502200016,61.68295728800011],[160.27203434300012,61.68652298500017],[160.259055168,61.690378211],[160.32753939300014,61.714622795000146],[160.37832056600004,61.74620556400004],[160.4139583510001,61.7647812150001],[160.39728440600018,61.77730985100014],[160.39928761100012,61.79353666600018],[160.38547790800013,61.800055527000055],[160.3681746750001,61.80076732000007],[160.36197776800012,61.81354353200008],[160.388821482,61.822749362000145],[160.40025469999998,61.83135352100002],[160.395529643,61.84201325300014],[160.39353251900013,61.852544801000036],[160.37631544800016,61.855962904000066],[160.3740883820001,61.86520423300014],[160.3713358810002,61.87186160200003],[160.38173366000004,61.87529458000013],[160.3912880610001,61.88137730900009],[160.38429972300017,61.88758081600018],[160.3742438190001,61.89914450700004],[160.3663843110002,61.90643952000012],[160.36329186300023,61.91168854400011],[160.35621178500017,61.91449616100005],[160.34595787900005,61.91669342700014],[160.34180748800011,61.93707916900002],[160.34571373800011,61.944728908000165],[160.32883813899997,61.941044695000144],[160.29515857999996,61.9399301690001],[160.26840671400006,61.92481741800005],[160.2408042130002,61.91887829000008],[160.22508170800012,61.9097982090001],[160.22350892100022,61.90204195900004],[160.21845988300004,61.897700387],[160.18162413300004,61.880415633],[160.13241351300007,61.8773583450001],[160.1109356110001,61.866583895000176],[160.07437279700017,61.8570938320001],[160.03901210200016,61.84624622300009],[160.00761016100014,61.813084377],[159.9847774660002,61.78801428900012],[159.98103926600015,61.775798577000145],[159.96672440400008,61.75882770700017],[159.94994338399997,61.75760146800014],[159.94796588900022,61.74726270500012],[159.92712442099997,61.7318756420001],[159.90589629500008,61.72888298800002],[159.89833059600008,61.71813410500008],[159.88074383,61.70520802500011],[159.8429043150002,61.70878545400008],[159.81112800100018,61.715350954000094],[159.80551549800023,61.72210261600015],[159.79254461400004,61.71157988800012],[159.7876443070002,61.700062805000115],[159.73906729500018,61.704705599000114],[159.72620449900015,61.70198508800017],[159.72514954799996,61.711148189000184],[159.7077288300001,61.72099172499998],[159.70302431600024,61.70295626000013],[159.70798735800005,61.685159103000125],[159.6836946410001,61.687474383],[159.65265268300004,61.68289632000004],[159.6248667780001,61.67364031100005],[159.59440581,61.66444975500017],[159.57721252500002,61.65277107000012],[159.54094945800009,61.66466263400012],[159.5194152160001,61.67464796100001],[159.5210360820001,61.68370904900003],[159.5116564250002,61.700354187000144],[159.51260281600014,61.71333563800005],[159.53024559200003,61.719793399000146],[159.53985240100005,61.73503032899999],[159.535262866,61.75539244300016],[159.5292738620001,61.7680004060001],[159.5365109830001,61.785283919000086],[159.54695594000012,61.80503790700011],[159.56558576900014,61.816648016999984],[159.54826959099998,61.81995135200011],[159.53025063900012,61.81937681400008],[159.52451895000016,61.81049709800008],[159.52606659300002,61.79611685100006],[159.48548479800004,61.79253453200011],[159.4863739580001,61.78208486300015],[159.47756870300006,61.76355885300004],[159.4525348020001,61.777571490000106],[159.42759249,61.78441499500003],[159.39921499500016,61.79529353800013],[159.38060527800022,61.81489673400013],[159.3560683430002,61.81650585700013],[159.35090995599998,61.826469383000116],[159.36357310500014,61.827929620000035],[159.39222661800014,61.83396532400011],[159.40248974800014,61.85308508200016],[159.39401809600022,61.87554579600014],[159.35987389400023,61.89301178600011],[159.2878994810001,61.901159296000046],[159.21228868400007,61.91185484800009],[159.1177956770001,61.91666008800006],[159.06519616000006,61.916001695000105],[159.01791425899998,61.915350653000154],[159.00025475400017,61.90643952000012],[158.9858504570001,61.90151601800015],[158.92074629000015,61.90302155200011],[158.89486738400015,61.89435455900012],[158.8649194670002,61.8784040390001],[158.84498131600012,61.85871002800015],[158.85303795700023,61.82632070500016],[158.837168816,61.821112372000144],[158.79786217500012,61.821112372000144],[158.75402892300022,61.82101889400014],[158.7360848970001,61.83257124300006],[158.67427862000002,61.83401042800001],[158.60521643200005,61.83181586299998],[158.54849162100018,61.830418518],[158.54456979300005,61.82212281200001],[158.52059921300008,61.798275372000134],[158.4849883210002,61.78969764700007],[158.46363837900017,61.80402962500008],[158.43615020000007,61.81400440200009],[158.402914602,61.82221944100008],[158.32374108200023,61.82746002800009],[158.26022674100003,61.82593385800011],[158.23077722300016,61.81185621600017],[158.22902435700004,61.79899907200014],[158.1691186860002,61.7673200540001],[158.14005056800002,61.77118606200015],[158.120094976,61.75554858700012],[158.0801635810001,61.73399954400015],[158.06343686600002,61.74228584600008],[158.04874649800016,61.74531533800011],[158.04061210700016,61.735814793000074],[158.01880944100012,61.73419830900017],[157.98900881100016,61.73991696800011],[157.94995631500004,61.74558793400011],[157.94086666500007,61.76013406599999],[157.87975181500016,61.76577279499998],[157.793657292,61.78117655800004],[157.68765952400022,61.780160855000034],[157.53734149300013,61.791945836000174],[157.464508871,61.78210542400007],[157.39329516000012,61.74583040800009],[157.35654043000014,61.7147529430001],[157.36711148400005,61.696993372000165],[157.36464373800007,61.68539352100005],[157.34343355800016,61.680676764000154],[157.30401273600003,61.695989374000035],[157.25660501200005,61.69313491500013],[157.18377312800013,61.67379606000016],[157.10182675400017,61.66353654100011],[157.06284870900012,61.656622487000114],[157.02759850400017,61.65058014500012],[157.0087822430001,61.63736547600008],[156.9993117770001,61.612863479000126],[156.96359974600014,61.5843649670001],[156.923833275,61.55181318400015],[156.84786194500012,61.52668181700009],[156.79785460900004,61.51599851500005],[156.74754986700012,61.52665187000009],[156.72231824300013,61.52709980100003],[156.6794629450001,61.52401706800005],[156.67042344900017,61.516026961000094],[156.69329293700017,61.5120583080001],[156.67115058100015,61.49822382700002],[156.66167499000017,61.482835596000186],[156.65967858200023,61.4648298200001],[156.64893639400012,61.4428571640001],[156.6421004570001,61.43268463700015],[156.63168379000004,61.42389557500009],[156.623793706,61.37059138200012],[156.64619443600006,61.34814202000008],[156.64854300300024,61.32798487600008],[156.63627454000004,61.310038002],[156.63168379000004,61.29352448100015],[156.6198769910002,61.2753276830001],[156.62873796699998,61.26867077000007],[156.63185067400013,61.257582058000146],[156.65145060700002,61.250706561000136],[156.65059558699997,61.224125962000166],[156.662918114,61.2108916590001],[156.6549712580002,61.19676019900005],[156.63568410000008,61.19131018700013],[156.62531339300008,61.19605730000007],[156.62360208800024,61.20714427300011],[156.59976097100014,61.21214053100014],[156.57820493100004,61.212542150000054],[156.54688838400003,61.209225586000095],[156.51906937000012,61.19870515900014],[156.45538797700024,61.177783512000026],[156.37389675500006,61.14876845000008],[156.26433559900013,61.08114622900013],[156.09117289000002,61.001566682000046],[156.045201989,60.973032764],[156.029922423,60.944727065],[156.00763103900007,60.94957173300013],[155.98182049200014,60.92402293000008],[155.96367176100009,60.93338411700014],[155.943059713,60.922629065000116],[155.9726209810002,60.904677304000174],[155.94059955900005,60.88045797200006],[155.9296492770002,60.874769955],[155.91677907000005,60.85937797600012],[155.91989745500004,60.84700793200015],[155.92294603100007,60.83268521100008],[155.91397701800022,60.81593794000007],[155.9053791900001,60.80632225500006],[155.90338983800004,60.795961521000024],[155.91074440700018,60.78611522200005],[155.9099178720002,60.77313648700009],[155.92073903200017,60.754794496],[155.91587705700013,60.74057498500004],[155.91362065400003,60.70358311700006],[155.87584572900013,60.71644882800011],[155.86852964400006,60.727591688000146],[155.82984459700018,60.72898997600011],[155.81812584700018,60.723211981000055],[155.79623457100016,60.703924872000115],[155.77881920700008,60.69448476800009],[155.72482403700022,60.65510037600013],[155.6801246480001,60.65798325300001],[155.66512324900017,60.649730493],[155.63180526000016,60.64239665600009],[155.60842379599995,60.630914471000054],[155.57096201100012,60.625548663000096],[155.55527674400017,60.61376252300012],[155.5406524160002,60.59214889700015],[155.52811629200008,60.592953170999984],[155.50798587300008,60.59056224200005],[155.49207319000016,60.58198155999999],[155.48690667000005,60.576258778000174],[155.4789141470002,60.5632822990001],[155.47472385500024,60.55537701300007],[155.48123708100005,60.549409648000065],[155.48009487400012,60.540932893],[155.47977303300004,60.533923860000144],[155.47301597400005,60.53399948900001],[155.454091555,60.531970088000044],[155.44898522199998,60.52236562700012],[155.44141686300003,60.51996491100009],[155.43151060700018,60.51522206700006],[155.4102569600001,60.527966920000104],[155.39834834900003,60.529571659000034],[155.37509648700012,60.529444714000086],[155.3402805640001,60.52458236100013],[155.30003622500013,60.51061899000014],[155.2753126160002,60.4909658660001],[155.2405988530002,60.484277926000075],[155.18435382500016,60.43737055600012],[155.1375927400002,60.411409895000176],[155.03130691300012,60.38215560900012],[154.95240319100006,60.36741771],[154.88093811900015,60.3205218480001],[154.85948428300006,60.306938911000046],[154.83250694200004,60.29029351200011],[154.81369086800024,60.271658011000156],[154.817511822,60.2845344980001],[154.82445330500016,60.293554719],[154.83325790100017,60.30317278000008],[154.8209949860001,60.30023217100016],[154.80423451900006,60.28885340600014],[154.7995754470002,60.27407237100009],[154.7936069710001,60.25537018000012],[154.78288821700008,60.24909088700014],[154.77523847700002,60.238348700000145],[154.76107832100004,60.22817617400001],[154.69211996200013,60.2013141610001],[154.62086022200018,60.135199286000116],[154.53565514400006,60.05280182500008],[154.5097293480002,60.024955546000015],[154.49040774800008,59.972398179000024],[154.48945860400013,59.96040268300015],[154.48758987500005,59.94630657200015],[154.48053261700002,59.955175796],[154.47915692000007,59.973307418],[154.49897538500002,60.028848483000054],[154.5267231840002,60.05923348900013],[154.5636983620001,60.093704759],[154.54800501300005,60.097458171000156],[154.511571471,60.09430420500014],[154.4733820510002,60.08454470900007],[154.433596801,60.07642916200013],[154.40783527300013,60.0629276670001],[154.4066897890001,60.03617303800008],[154.43681519500004,60.007239654000145],[154.45871587900004,59.98368150900003],[154.46671460200017,59.967587266000024],[154.4617837970002,59.94506569200016],[154.47843502100002,59.92345565500012],[154.478851759,59.906805731000176],[154.48780358200017,59.89630768400012],[154.47348066500015,59.87933991100014],[154.4519687860001,59.878118023000106],[154.39779707099999,59.847967841000084],[154.40308678500017,59.861721096],[154.41138756600006,59.87360260600015],[154.43262780000012,59.89630768400012],[154.39584394600004,59.90204498900008],[154.28071987600018,59.89168275500008],[154.24715702300014,59.88523467099999],[154.22077029800002,59.869620187000166],[154.2284523760001,59.849773546],[154.22326622100016,59.829564571],[154.22174932100003,59.81189975500008],[154.21546486700015,59.78395505600004],[154.224457227,59.75812409100008],[154.228770379,59.73037344],[154.25132002899994,59.69913473899999],[154.28871324800005,59.66256362000002],[154.36117597700016,59.58470286700013],[154.36825131600008,59.5746862700001],[154.34589660000006,59.58369174400003],[154.32352266400005,59.601243824000115],[154.28580926900008,59.62362655700015],[154.2761592480001,59.65007427500014],[154.24180380900017,59.66574055400017],[154.22007361000013,59.663976280000114],[154.19857832099999,59.63568756700011],[154.19581139400023,59.62693919500005],[154.19499759200014,59.60398997600005],[154.1923934250001,59.59467194200011],[154.19660103200007,59.58316679600012],[154.176832408,59.56981993000006],[154.15862162700014,59.56134515100008],[154.16146029200016,59.552537239000166],[154.14928694800003,59.53641953900007],[154.10946315300023,59.53974725799999],[154.09106139600007,59.53056944899999],[154.0750431650001,59.509182033000094],[154.1027951130001,59.487485302],[154.12373591700018,59.47360846000005],[154.13843834699998,59.45697663000009],[154.26378237000014,59.43687767600004],[154.2978772040001,59.442553293000124],[154.32077623400002,59.457022045000095],[154.34187477200012,59.47449062500014],[154.3538811880002,59.489884454000084],[154.34701582100004,59.49998607000013],[154.34693444100006,59.508449611000074],[154.34848066499998,59.51683177300014],[154.35694420700023,59.525824286000145],[154.37427819100003,59.53241608300011],[154.40231052500016,59.53501503500002],[154.41032905500006,59.520756163000115],[154.4099067770002,59.506508329000106],[154.39820397200018,59.48944733300006],[154.385996941,59.47943756700009],[154.37989342500023,59.47003815300015],[154.39096113400015,59.46002838700017],[154.40545704800013,59.4498039380001],[154.419688347,59.43976471600017],[154.41920006600006,59.43317291900008],[154.42685037300012,59.42088157700006],[154.46386536300022,59.41414853800004],[154.51585640500014,59.41038637900005],[154.53677930000012,59.42284058800006],[154.53270929000004,59.43604403100015],[154.49545332099999,59.44822825700011],[154.45248457100004,59.46759674700003],[154.43604576900023,59.48419830900017],[154.43725070399998,59.508451378000025],[154.42652428500006,59.53485748900006],[154.41830488400015,59.546291408000016],[154.42876225700002,59.54703399300008],[154.45730487600005,59.53957231400007],[154.49605826300015,59.52481663900009],[154.55412392800008,59.51339871600011],[154.592432367,59.52294103900006],[154.62989187800022,59.53825736599999],[154.64428707000016,59.543434400000145],[154.73745352500006,59.490263567000014],[154.782953512,59.47128624200003],[154.81203625000003,59.47017412500013],[154.84180748800023,59.4754906270001],[154.8620267490002,59.46860325800018],[154.8775958370001,59.46080965200016],[154.90496440300015,59.466948936000065],[154.91872536700012,59.474300678000056],[154.92302910200013,59.48678282500004],[154.9368032350001,59.494131691000135],[154.95299708499996,59.496264093000015],[154.96290123800011,59.496079820000126],[154.97868899800005,59.49066803600008],[155.00084405600015,59.480408386000114],[155.0149445220002,59.47641341500015],[155.01171765700022,59.45137682500002],[155.02335309900005,59.43665715900006],[155.04753665500002,59.42560455900003],[155.07211347700004,59.408433335000105],[155.0973413420002,59.39545319200011],[155.16675866000003,59.379339911000145],[155.18873131600006,59.364691473000114],[155.20971321400017,59.343879542000145],[155.19557415800003,59.33583594300013],[155.19337181200015,59.32960990600012],[155.21868598200015,59.31379126600011],[155.21575809900014,59.30549306900015],[155.197749927,59.309988089000015],[155.1773219560001,59.30818746200008],[155.15762512600006,59.2963583410001],[155.1604852940002,59.28044391800016],[155.17139733200017,59.26227448100003],[155.19717565900012,59.2372293210001],[155.17902170100004,59.22533503700004],[155.14960807600002,59.2215687390001],[155.15544644800005,59.21393292100008],[155.16557406600006,59.202342722000154],[155.19410241,59.17576732000007],[155.15845787900005,59.17902252800011],[155.09147563600007,59.190535484000016],[155.05567272800025,59.19165253699999],[155.0342672460001,59.18219201800016],[155.0286047170001,59.17344969000005],[154.98181521000018,59.186934018000116],[154.93639312700006,59.19243908600004],[154.9050399100001,59.18939850500003],[154.85735414500013,59.18883027700015],[154.81330107800014,59.194172126000105],[154.7992386000002,59.185452337000086],[154.79303201200005,59.17531899],[154.78514094800002,59.156062462000094],[154.80487908400008,59.132225712000135],[154.7906979220002,59.131347484000045],[154.75053668899997,59.13989631400001],[154.67751600400004,59.1456391440001],[154.66301633100002,59.15617735500011],[154.64145754600017,59.16233189100013],[154.6195220000001,59.171376009000156],[154.60084384400002,59.18224195800012],[154.5829077640001,59.18665563899999],[154.57345538000007,59.20027846100005],[154.5015653570001,59.21788744600015],[154.43802069300003,59.21552050900006],[154.39652581000004,59.19557161700008],[154.36585044400013,59.19534001000001],[154.33272309500015,59.191753115000054],[154.34262746700014,59.1795186120001],[154.34506269599999,59.155707098],[154.35010826900012,59.14223867400003],[154.3577102740002,59.110587450000146],[154.34082187500022,59.11843307100007],[154.32800236199998,59.11311587],[154.3079748260001,59.094158751000016],[154.27894267500014,59.085928388000106],[154.24875680900018,59.091321076000085],[154.1923934250001,59.101263739],[154.16429655200002,59.09067886900014],[154.08529707100004,59.06134674700005],[154.0486759770001,59.05280182500012],[154.02637780000023,59.054388739000146],[154.0092879570001,59.05853913],[153.97331790500002,59.07330963700015],[153.95655358200008,59.0775820980001],[153.9215600920002,59.082098700000024],[153.90503991000006,59.086981512000094],[153.87842858200005,59.1047223980001],[153.829844597,59.15277741100009],[153.80201256600017,59.17230866100006],[153.76832116000017,59.17963288000006],[153.69197477200024,59.18506106000014],[153.694139884,59.19729011800017],[153.70387696000003,59.20429446400008],[153.72164178500023,59.21765654800005],[153.75090457200005,59.21853176899999],[153.76697617700006,59.23124761500016],[153.7685565530002,59.246583379000086],[153.71865152000018,59.227944209000114],[153.69663357400023,59.2257401580001],[153.6693920820001,59.196071151000105],[153.6480239490002,59.190771057000156],[153.603608743,59.1997230050001],[153.58122393699995,59.216248626],[153.546727924,59.22287388600007],[153.49524235900003,59.23371639000014],[153.44420544400012,59.23095198200012],[153.40479576900012,59.23663971600017],[153.3691512380002,59.24127838700009],[153.36446305500007,59.22839760800015],[153.370940428,59.20933775600009],[153.35741715800012,59.17388645400014],[153.34838997500017,59.153625051000134],[153.31544030000018,59.153021552000105],[153.29997806100008,59.15249258000013],[153.28353925900015,59.14899323100015],[153.28423285700015,59.13132405000014],[153.30032124400012,59.12930868799999],[153.3263504380002,59.140531002000145],[153.35022026700008,59.13401983700009],[153.3556800710002,59.11647530100008],[153.34766074000007,59.10464556900015],[153.33727527500014,59.08988693900006],[153.2679699160002,59.08589441200003],[153.2207877980001,59.090294861000174],[153.16585324300004,59.08360139900013],[153.09009992400016,59.08309410500005],[153.03436937100005,59.06784064400009],[153.00670778000008,59.06056500600011],[152.9951131070002,59.046688325],[152.98860733500024,59.029310489000025],[152.97086836100007,59.01974638600016],[152.9433156710002,59.00702059500016],[152.93924065100012,58.982468108000106],[152.93463613500015,58.966488669],[152.91602282900007,58.95388062799999],[152.90772472900008,58.94594359600008],[152.9106050080001,58.93484191700019],[152.90910256299998,58.92406839000012],[152.91604966999998,58.9165547460001],[152.89991295700023,58.90363190300004],[152.88565274800004,58.91569926700011],[152.8532978660002,58.92354752400002],[152.81678943000017,58.92627511400011],[152.77959093200016,58.922026310000106],[152.74055270900024,58.91786590800013],[152.73150242800014,58.90913226600004],[152.712996292,58.91675224400011],[152.70247403300007,58.92142516000011],[152.664812844,58.94042191700002],[152.61730867900002,58.944274349000075],[152.55673952600003,58.94998146100015],[152.52263091600003,58.98256582400001],[152.47069840600014,59.00336677500017],[152.43148847700002,59.00885651200018],[152.40479576900012,59.023423570000105],[152.40479576900012,59.046047268000095],[152.39193769599999,59.04751211100014],[152.36670983200023,59.05727773600007],[152.36329186300011,59.05971914300004],[152.33936608200017,59.05548737200009],[152.34034264400023,59.048976955000015],[152.35124759200016,59.04096100500006],[152.35645592500012,59.03237539300015],[152.34229576900006,59.01968008000007],[152.316661004,59.01585521000008],[152.24923276100017,58.99820533900005],[152.16612897400015,58.98406315300009],[152.1543825470001,58.95842531500015],[152.15665191700006,58.92650277500003],[152.11026224900016,58.89528632600008],[152.02029830500024,58.87503653300017],[151.91762562600002,58.874038200000165],[151.81188889700016,58.87050742000007],[151.76271296200017,58.857940821000064],[151.71728006000015,58.84895640500012],[151.63558816800006,58.848980019000024],[151.54960695600008,58.86387011600014],[151.50314478200008,58.861537601000144],[151.45284065300007,58.86475404900006],[151.4013181340001,58.840143016000084],[151.3536645420002,58.832562286000076],[151.33727697900005,58.838867429000125],[151.35165131100015,58.84589434900006],[151.3590931920002,58.855992784000094],[151.34671884600007,58.86864701400005],[151.30995513200006,58.897347194000176],[151.29723808600014,58.90872425800005],[151.2814233730002,58.92251211100007],[151.25846948700004,58.940210081000075],[151.23806751599997,58.962505971],[151.22964574000005,58.98144990700014],[151.23602798900018,58.998267490000146],[151.18360436300023,59.016750393000066],[151.17156009200016,59.02558014500012],[151.15125459200013,59.04163249800011],[151.14409969800022,59.05520832100011],[151.1324677430001,59.07169157000014],[151.1034052260001,59.09055475900008],[151.08804985500004,59.102020385000095],[151.1020613940001,59.11432526200018],[151.11947675900015,59.11082591399998],[151.15284264400023,59.09642161700013],[151.18111336200013,59.093810981000125],[151.2165276220001,59.0916820530001],[151.25017952499996,59.10413076400009],[151.30149205800015,59.11551624900012],[151.3433743360001,59.11954816900014],[151.3620565530001,59.132850667000135],[151.4002073010001,59.15288397200011],[151.4377313440001,59.17031669300009],[151.4924117430002,59.162941244000116],[151.57049625100015,59.15670038900013],[151.61804889400005,59.16158628400008],[151.65748131600017,59.161444403000175],[151.70679772200006,59.143215236000096],[151.7660411210002,59.13362772700005],[151.80878604900002,59.149327402],[151.83799763200003,59.152702611],[151.876719597,59.148423569999984],[151.92434201200004,59.137779294],[151.95240127300022,59.14649050600011],[151.99314906000006,59.154352128000156],[152.0506291400001,59.14786088500007],[152.10935712500023,59.15579782400006],[152.1801767300001,59.18805331599999],[152.2252285970002,59.20216855800014],[152.2827848330002,59.204836872],[152.32223814000005,59.20740928400015],[152.31182746900006,59.22664875800014],[152.2827186100002,59.23394361200011],[152.25123131600006,59.246771552000105],[152.20935283200006,59.270672094000034],[152.14747155000018,59.29303620000003],[152.13672936300023,59.29621002800009],[152.121348504,59.29218170800011],[152.10865372800018,59.282713770000115],[152.0713275080001,59.27860246400011],[152.02762262100023,59.26962789400007],[151.97901451900023,59.265082098000086],[151.96216881600006,59.26707591400013],[151.94089711100006,59.284619622000044],[151.9179688080001,59.2966707790001],[151.90135301200021,59.30301559400009],[151.82525257500018,59.29873633900003],[151.77930748800006,59.301418361000074],[151.76026451900006,59.29926178600009],[151.73429783499998,59.30726402300014],[151.72759262600007,59.3221962110001],[151.73422503900008,59.32834573800006],[151.74117093500016,59.335789860000055],[151.77027772300008,59.34966422600005],[151.74374169300003,59.36727099000014],[151.7269383620002,59.38288905700007],[151.70524045500005,59.389541760000114],[151.70526572500015,59.40010101600011],[151.7033944360002,59.41342858400015],[151.69477478800005,59.431120081000145],[151.665508991,59.45943976500014],[151.6375760440002,59.482479958],[151.58025280100006,59.50325487600004],[151.53370201900012,59.506170966000084],[151.51587975400005,59.50910065300012],[151.50932524400005,59.51307290700007],[151.49850983100012,59.52037312200003],[151.48979267500013,59.5320680460001],[151.4910085930002,59.54193596900016],[151.47461979600004,59.55095593700004],[151.44206374100023,59.55954794800006],[151.42940816800015,59.56456032400008],[151.4307966390002,59.57034751600012],[151.46057857099999,59.56939232500004],[151.45091113000004,59.57714479500014],[151.42462737399998,59.59771645100012],[151.3960566220002,59.60416294200017],[151.370979677,59.60099250700004],[151.3559946370002,59.58667014100008],[151.34690703400005,59.56786552900008],[151.3220998100002,59.55588838500014],[151.2766325840001,59.559231703000094],[151.22559655000012,59.572984117000125],[151.18873131600006,59.576605536],[151.13211257300011,59.57809944500014],[151.06306856500012,59.57933447400002],[151.0064233520002,59.569211572000185],[150.9371060060001,59.555868427000085],[150.9067425010002,59.559351568000174],[150.89486697600003,59.54648413100008],[150.90438019900014,59.53186635100012],[150.93835658600017,59.51879510100003],[150.91570071700002,59.49396393400012],[150.91016686300011,59.49103424700009],[150.9200952480002,59.49115631700006],[150.92904707100004,59.48883698100013],[150.93718509200008,59.48419830900017],[150.94434655000012,59.47744375200013],[150.94183317000008,59.46122504800014],[150.92583970200013,59.44764209300011],[150.87695996300013,59.449101256000134],[150.84314295400023,59.44837707700007],[150.77991193500011,59.43226300200003],[150.74012039300013,59.439772518],[150.752980502,59.45086625000006],[150.7743964600002,59.46541307000011],[150.76562180500017,59.48432138100004],[150.73947032000015,59.483140031000104],[150.70504877100004,59.49163846900008],[150.6745199490001,59.49469647600015],[150.61856598800014,59.488680418000044],[150.53556198800018,59.47896906600014],[150.50374051399996,59.48866591300008],[150.58117170199998,59.507860057000144],[150.6480265460001,59.51737606200013],[150.7084478340001,59.520572171000154],[150.77155967700006,59.53695781100011],[150.77434801000018,59.56191498200015],[150.71577186000016,59.55600724500012],[150.659814082,59.548397785000034],[150.60130305699997,59.540960483],[150.57119705400018,59.54664182100005],[150.51636803500006,59.557033596000124],[150.51875980100024,59.57224007300012],[150.48878014400023,59.57257721600003],[150.46827233200005,59.580877997000115],[150.46502861300007,59.58972809600006],[150.45680641000004,59.612589691],[150.4111434250001,59.622300523000106],[150.341075066,59.63198476800009],[150.30600019600004,59.646185614],[150.27442467500023,59.65033600500014],[150.167735222,59.65277741100006],[150.09457441500015,59.671535549000126],[150.00449000900002,59.700363329000034],[149.75821479300006,59.740662064000055],[149.59772495600023,59.75820492800004],[149.43800639700012,59.73645046400012],[149.39380944100006,59.75580475500011],[149.38013756600017,59.7538109400001],[149.3725692070002,59.75828685100005],[149.37525475400005,59.77220286700013],[149.35035241000017,59.76691315300014],[149.32683353000002,59.75861237200017],[149.3785930370001,59.72465426200013],[149.34428925900008,59.71585526000005],[149.19237732100024,59.66488155500015],[149.13290698200015,59.64073613500012],[149.08122806100005,59.65322500200006],[149.05876712300008,59.65167877800003],[149.04070071700008,59.642889716000134],[149.03321373800006,59.624823309000035],[149.04224694100017,59.614488023000135],[149.0894817340001,59.60969559800015],[149.10401877500007,59.59234117000009],[149.0922957690001,59.56915924700004],[149.08814537900017,59.564398505000106],[149.08106530000012,59.55996328300014],[149.11882571700008,59.54401276200004],[149.16374759200008,59.53799062700012],[149.20134524800008,59.52488841400007],[149.21697024800008,59.487982489],[149.2120874360002,59.46914297100007],[149.19922936300017,59.46775950699999],[149.16293379000015,59.484808661000145],[149.13721764400012,59.49184804900001],[149.11459394600016,59.49335358300005],[149.08024884600016,59.48346763700011],[149.05459460600017,59.477140651000106],[149.01813899400014,59.46115063200004],[148.9780379570002,59.45351797100009],[148.96843509200008,59.452215887000186],[148.96461022200006,59.45848216400013],[148.96143639400012,59.46653880400008],[148.95386803500006,59.47060781500012],[148.9183048840001,59.463812567],[148.90902754000004,59.46312083500005],[148.8922632170002,59.46678294500011],[148.8691512380002,59.47492096600003],[148.84888756600006,59.48663971600003],[148.84017988400015,59.501288153000026],[148.84457441500004,59.52016836100016],[148.85580488400015,59.53119538000003],[148.88795006600012,59.546291408000016],[148.845957879,59.55272044500013],[148.81519616000006,59.534491278000054],[148.78581790500002,59.51007721600008],[148.7727732770001,59.494415912000036],[148.7434288640001,59.471577992],[148.72704204800002,59.45033230100002],[148.72362382500003,59.43395936800006],[148.72024541699994,59.42086373900009],[148.72306851500016,59.388094109000164],[148.73570520700017,59.368390868000155],[148.7872538930002,59.35876524900005],[148.81400858700005,59.36353530000004],[148.83791899700023,59.38472520700013],[148.8654077480002,59.404852606000055],[148.87501061300011,59.398871161000116],[148.8732202480002,59.38719310100013],[148.86133873800023,59.353908596000124],[148.88168379000015,59.35643138200005],[148.89421634200008,59.369208075000095],[148.90406334700018,59.384833075000174],[148.91586347700004,59.39545319200011],[148.93311608200023,59.39667389500011],[148.9526473320002,59.391302802000084],[148.989905678,59.37537672100014],[148.992491629,59.356102299],[148.93374422600007,59.31727331500018],[148.93033277400016,59.296779905000065],[148.96419014200004,59.273270079000056],[148.9545139740002,59.25009427800016],[148.93452246900006,59.23327292200003],[148.88570502100006,59.25300716100012],[148.84156334700006,59.27655670800014],[148.799034936,59.27131065000013],[148.78793720700017,59.2364843720001],[148.73902157900002,59.23703164300018],[148.72803794000012,59.25954574300014],[148.685716071,59.26568369700014],[148.58978017000015,59.241584333],[148.4708763660001,59.256509545000185],[148.43746589700018,59.26231739700013],[148.4402933370001,59.282708153999984],[148.4149314440001,59.30439780400003],[148.41140981000015,59.31926959500005],[148.419145491,59.333585781000025],[148.40202884200008,59.353908596000124],[148.39372806100008,59.37929922100015],[148.36881138900011,59.3826885130001],[148.33611262600007,59.397023384000086],[148.21943647300023,59.40886989000008],[148.00943681300012,59.385700578000076],[147.91384837700005,59.39047060500015],[147.8454625410001,59.37661532700003],[147.78874759200008,59.34393952000014],[147.83434362300002,59.31649198500009],[147.84656919699998,59.29691936000016],[147.8255007930002,59.26960461100001],[147.77515709699998,59.264634507],[147.738536004,59.26239655200011],[147.70289147200006,59.269110419000135],[147.67514082100016,59.285589911000145],[147.68262780000023,59.29303620000003],[147.65609785200016,59.30194733300006],[147.62330162900017,59.30638255400014],[147.59107506600003,59.30414459800016],[147.56527753999998,59.29303620000003],[147.55250084700006,59.27407461100002],[147.55209394600016,59.25861237200009],[147.54599906600004,59.23754682200017],[147.5175887380002,59.244614976000136],[147.49203535200016,59.246771552000105],[147.4376733730001,59.260891018000066],[147.41578209700018,59.27130768400014],[147.38697350400017,59.295111395000156],[147.37452233200023,59.30296458500011],[147.36068769600016,59.307562567000055],[147.33301842500023,59.310003973],[147.31959069100006,59.312933661000116],[147.28744550899998,59.32709381700014],[147.27149498800006,59.332098700000174],[147.2506616550002,59.33405182500003],[147.23064212300002,59.33177317900005],[147.1989388720002,59.31291908700015],[147.16911868600008,59.31976959800012],[147.13184655000012,59.327215887000115],[147.0558374360002,59.36298248900011],[147.03063674800015,59.36320828900006],[146.97920186200022,59.37046302300011],[146.88656660200016,59.36473216400013],[146.8605249360002,59.3613141950001],[146.71957441500004,59.38190338700015],[146.70264733200023,59.388617255],[146.69727623800006,59.39435455900018],[146.6948348320002,59.40680573100009],[146.68921959700006,59.41225820500012],[146.6934770140001,59.42361584900009],[146.63721764400006,59.44041575700011],[146.618907097,59.44574616100009],[146.56373131600017,59.45237864800004],[146.52507571700014,59.461981512000115],[146.50391686300011,59.46312083500005],[146.43964157400004,59.46040865500002],[146.358961351,59.42993988000002],[146.31914097900008,59.401693611000056],[146.3190210300002,59.36473216400013],[146.32496178500006,59.31940338700013],[146.3237410820001,59.29877350499999],[146.31218509200016,59.278753973000114],[146.32667076900023,59.27098216400013],[146.333262566,59.25934479400002],[146.3310653000001,59.247219143000116],[146.3190210300002,59.23786041900008],[146.34229576900012,59.231431382000075],[146.36310790600012,59.21281146400009],[146.33955883300004,59.206009233000096],[146.32295718200004,59.179951886000175],[146.28116799600005,59.19411187100009],[146.24121168000002,59.19648207400008],[146.20461938400015,59.2046202790001],[146.15772881600006,59.19241602],[146.13578767900017,59.16938917],[146.0991317070001,59.17438385600017],[146.05029199900005,59.13887271900016],[145.97619866300025,59.14331643500013],[145.97479999400016,59.162437233000055],[145.98990599200013,59.17241818300006],[145.96338951900012,59.18939850500003],[145.93213951900023,59.21320221600009],[145.91529381600006,59.221136786000066],[145.85767662900017,59.22785065300012],[145.84229576900023,59.233099677],[145.82496178500006,59.24127838700009],[145.82419910000007,59.25934151500011],[145.83399786400005,59.27530689200001],[145.84390913400014,59.29273602800004],[145.86520786700024,59.308477879000016],[145.88662951300014,59.32568132200005],[145.9109524300002,59.34282293400012],[145.94649591800024,59.35532138400005],[145.95401871900006,59.37867352200008],[145.97579700600008,59.39874877600012],[145.9570055290001,59.416722807000134],[145.88942810100016,59.40196685200011],[145.84742272200003,59.40835195500013],[145.81812584700006,59.415961005000085],[145.81401125000005,59.39756527300007],[145.80889757000014,59.36682825899999],[145.7691021960002,59.37491328900008],[145.736094597,59.39545319200011],[145.69263756600017,59.411688544000135],[145.67530358200005,59.423488674000126],[145.67465254000004,59.43642812700012],[145.65162194100017,59.42194245000009],[145.6225692070001,59.420803127000156],[145.59229576900012,59.423081773000135],[145.54135175899998,59.413234768],[145.4487410820001,59.40851471600008],[145.3536889980002,59.39272695500015],[145.32455488400015,59.39545319200011],[145.31413821700008,59.400783596000096],[145.303884311,59.40875885600003],[145.22871808700003,59.40797620600013],[145.13493167600004,59.39004517400012],[145.00075857700003,59.36958296600004],[144.762950066,59.38117096600003],[144.77637780000012,59.38369375200013],[144.78760826900012,59.38491445500015],[144.79786217500023,59.38637929900004],[144.804453972,59.39545319200011],[144.61329186300023,59.39545319200011],[144.62973066500015,59.38393789300009],[144.6515405610002,59.37929922100015],[144.69459069100006,59.37494538000006],[144.454844597,59.37494538000006],[144.36573326900023,59.38117096600003],[144.40162194100006,59.38239166900014],[144.42383873800011,59.38239166900014],[144.44825280000023,59.38117096600003],[144.44117272200018,59.391343492000075],[144.41968834700006,59.39785390800016],[144.37964928500006,59.40228913000014],[144.357269727,59.40082428600009],[144.29737389400017,59.388617255],[144.28109785200004,59.38764069200011],[144.13003873900007,59.399858832000135],[143.93800957300002,59.405078496],[143.90391134100005,59.422709542000135],[143.8405051400001,59.40247623900016],[143.58228366100002,59.33886449000007],[143.49361686600014,59.318518018000034],[143.40798013800006,59.3243218160001],[143.35944986600012,59.340368096000034],[143.31087109400005,59.36074116600005],[143.22795115600016,59.36227344000017],[143.204356316,59.38373444200012],[143.16480553500017,59.38100820500016],[143.1391707690001,59.3613141950001],[143.14576256600017,59.36005280200012],[143.15967858200017,59.353908596000124],[142.89226321700002,59.30206940300003],[142.5817980410002,59.22610194800011],[142.26238040500013,59.12457916900011],[142.14429772200006,59.05687083500008],[142.08399498800011,59.03237539300015],[142.0558374360002,59.02171458500011],[142.0153100920002,58.997259833000086],[141.9467879570002,58.943019924000126],[141.7819116550002,58.76471588700018],[141.67310631600017,58.68292877800011],[141.58373388900006,58.61774897800014],[141.39242597700004,58.54328034100003],[141.24850920700013,58.476891899000165],[141.18563293900004,58.45635649400013],[141.13635102400005,58.46443766400015],[141.10542480200016,58.45921505200011],[140.98731530000006,58.418524481000084],[140.95492597699996,58.39907461100002],[140.93751061300011,58.391302802000034],[140.91895592500012,58.388128973000114],[140.9043074880001,58.382757880000085],[140.740000847,58.271307684000185],[140.69988040500013,58.23383209800014],[140.66675866000017,58.19110748900011],[140.62281334700006,58.111273505000106],[140.51872806100002,57.93252187700007],[140.51050866000006,57.909125067],[140.49949417400015,57.867579024000165],[140.495727974,57.84477360199999],[140.4585727470002,57.83178691700009],[140.42839300100016,57.82064639200014],[140.40003916800018,57.8003318700001],[140.345776492,57.78683602500016],[140.31147076199997,57.751037800000105],[140.30244593200004,57.74778842100009],[140.28028405000012,57.76260000200001],[140.26099694100017,57.764308986000025],[140.2233179050002,57.760239976000044],[140.20757545600006,57.74766234300012],[140.1671524970001,57.74816389500008],[140.11608203000017,57.73997846700005],[140.071543816,57.725572007000075],[140.05274498800003,57.72044505400005],[140.03484134200014,57.71308014500006],[140.00464928499997,57.69623444200006],[139.98154032400024,57.68773787200014],[139.9348695900002,57.65329794500012],[139.87743500900015,57.59411356100004],[139.81430011600017,57.50736220300002],[139.789677801,57.48273136900018],[139.7120874360002,57.49176666900017],[139.673675977,57.48139069200008],[139.62057154000004,57.46734427300005],[139.56306789700014,57.43005573600005],[139.54161832900016,57.381063305000126],[139.522202362,57.35963694900012],[139.49789472700016,57.339544989],[139.4728478860001,57.33442148900013],[139.4467879570001,57.32074616100005],[139.41845893200005,57.29719375900008],[139.40497151899996,57.306025996000145],[139.38002279700007,57.30816197800015],[139.34245853000007,57.29132721600017],[139.31706801800013,57.27760841600015],[139.30085612499997,57.27900548100011],[139.2684876860002,57.27716250700003],[139.196543816,57.272650458],[139.16228274800002,57.256252346000096],[139.1138111470002,57.23438501800008],[139.068733392,57.20702058500008],[139.03716857500015,57.16684586200002],[139.0294275140001,57.146039704000074],[139.0256240700002,57.140003190000115],[139.00469054900006,57.148823838000126],[138.98989683100004,57.15425542300004],[138.9600353010002,57.14494858100003],[138.93295722600007,57.13502493300014],[138.93024088200002,57.11756847900015],[138.92158283500018,57.10756479200013],[138.93154608100022,57.09564866600006],[138.92247585200008,57.05811634000007],[138.90247253800013,57.03121343900015],[138.88511040300003,57.0191127910001],[138.85913586900008,57.01316220800014],[138.8233290190001,57.021424925000176],[138.80605694699997,57.03161416100009],[138.78885252200004,57.02344134400012],[138.79600216800011,57.01352880899999],[138.78730543600014,57.00615653400011],[138.760166979,57.004833528000155],[138.71807182400013,56.98002866700001],[138.69715510900005,56.984070869000064],[138.66161502700004,56.97794264700017],[138.62305748800023,56.95929596600011],[138.60562841900017,56.945224473000124],[138.58595577300005,56.92167573400008],[138.57757150799998,56.88114052100014],[138.5615202710001,56.826547518000105],[138.5711042840002,56.81107498800013],[138.58173635200015,56.7845091750001],[138.56361006700016,56.777509247000026],[138.5433631550002,56.79385892000012],[138.5460368700001,56.81896261300004],[138.549834936,56.85951753600001],[138.51775728300007,56.849321540000076],[138.48490744500023,56.84953958300018],[138.45444848200017,56.8393366960001],[138.4666092470002,56.81660738800012],[138.44320722700016,56.7924665390001],[138.43873131600017,56.78253815300011],[138.43327884200005,56.77448151200018],[138.41822350400005,56.76788971600011],[138.411387566,56.759711005],[138.40609785200016,56.74945709800006],[138.40398196700002,56.740179755000106],[138.39600670700005,56.73126862200017],[138.37561792100018,56.72048213800004],[138.35244885200004,56.71575891700003],[138.3280966890001,56.711709050000145],[138.29020500300015,56.69213054699999],[138.28785241,56.674994208],[138.27963300900004,56.66657135600015],[138.26187451899995,56.65430521400007],[138.2591844780001,56.64277787200011],[138.26783286500003,56.626625907000125],[138.2605105050002,56.61582066900014],[138.25310652400015,56.6238852840001],[138.2309895230002,56.62448711100007],[138.21632512300013,56.60960711800011],[138.18561314999997,56.6088201700001],[138.14844811300006,56.603583075000024],[138.12964928500006,56.58563873900009],[138.12086022200006,56.56956614800002],[138.11784915500007,56.5553246110001],[138.12077884200008,56.540838934000064],[138.11483830300008,56.52810432900013],[138.12512578300002,56.506933447],[138.14534543500022,56.49287938900006],[138.16006399000017,56.478768263000106],[138.17469793400002,56.47175750600009],[138.20849599500016,56.4689291370001],[138.23402865400013,56.47052315600011],[138.2458815030001,56.469539638000086],[138.257773217,56.46605004900003],[138.24944335000012,56.45534634500007],[138.2284990440002,56.443673245000134],[138.22347709900006,56.42416025300015],[138.19155746500022,56.42910989100007],[138.16308130100006,56.45113569000013],[138.14862326900018,56.441057286000145],[138.1048995040002,56.440915376000035],[138.06942815400006,56.43775473200019],[138.0602319670002,56.426174221000096],[138.058848504,56.41449616100009],[138.05502363399998,56.404486395],[138.05368259200017,56.38785083100008],[138.02301780700012,56.38171024400013],[137.97744057400004,56.372409143000155],[137.936754026,56.3661962260001],[137.91406701200006,56.35952565000018],[137.90153542800013,56.34282471700005],[137.8893491800001,56.32469373500011],[137.87065701700007,56.29281231700004],[137.85377037900014,56.268784898000106],[137.834428394,56.22547623100009],[137.7916704230001,56.22102645200006],[137.77628698300012,56.21127334900008],[137.76164019600017,56.194275508000096],[137.754143825,56.1767759800001],[137.73585045700017,56.16791413000006],[137.72309635800005,56.15894868100007],[137.72037751400015,56.1473430110001],[137.7235973400001,56.13632394700009],[137.69802908600005,56.126202365],[137.61797097699997,56.11841378200005],[137.5719507170002,56.11652252800006],[137.50025475400017,56.06281159100017],[137.48878014400023,56.058050848000065],[137.47201582100004,56.054348049000126],[137.45940828400003,56.050303581000044],[137.44366089300016,56.04851152400012],[137.42599296600022,56.031146331000016],[137.41683783900004,56.004508011000055],[137.41347648500005,55.98736737799999],[137.41682345700022,55.973007024000125],[137.40705256,55.969043659000086],[137.40021314200024,55.96565224700007],[137.39751410600005,55.955097404000114],[137.39083077000012,55.94560743800004],[137.36790783100014,55.952025909000085],[137.354954527,55.96025595200014],[137.33107513200005,55.96890483000006],[137.29563402600016,55.961322457],[137.25431036900014,55.93276622100008],[137.2375328400001,55.91560875400013],[137.20332981100015,55.899635551000024],[137.18293349400005,55.89363446900008],[137.15568258300007,55.887550386],[137.11489129900022,55.86327524900018],[137.04669996900012,55.81909016100003],[137.05690681400003,55.79970712900014],[137.04979655600008,55.793115742],[137.03002558400024,55.787550181000036],[137.0055755230001,55.79494446800008],[136.97942587000014,55.79225539900007],[136.9562280610002,55.78778717700011],[136.90992017900024,55.7712667140001],[136.8878290480002,55.74493661800007],[136.85132897200006,55.73090241100008],[136.83545983200023,55.72284577000015],[136.8248804050002,55.71369049700017],[136.800629102,55.68187083500014],[136.77328535200004,55.66054922100007],[136.747813347,55.657700914000124],[136.7149207440001,55.658732717000056],[136.67096415300014,55.646398069000085],[136.62307164000012,55.616036797],[136.60233979799997,55.6175050480001],[136.57980656900023,55.62342948100008],[136.56551469300004,55.623198698000074],[136.5547893200002,55.61494450000005],[136.55218975400012,55.60322868000004],[136.5463328020002,55.593254858000094],[136.52947690800022,55.580403434000104],[136.48805396200012,55.58330774600016],[136.46284718400003,55.579290921000144],[136.43016060000005,55.56524642800009],[136.417906162,55.556044807000106],[136.37948711000004,55.53291196900001],[136.3506102590002,55.50993594500012],[136.31902103000007,55.48655833500014],[136.31202233200005,55.459540106000176],[136.3076708550001,55.42462431500003],[136.26870780100003,55.41494016000017],[136.23618404200025,55.37384044100013],[136.2197791000001,55.354589154000124],[136.1904618020001,55.343259253000056],[136.17805986300004,55.34311881300008],[136.17534823800003,55.329419175000154],[136.16162658400017,55.31828399000012],[136.14258873800006,55.31443919500008],[136.12663821700008,55.3082542990001],[136.11833181500018,55.299707088000055],[136.08787623300012,55.28548120100011],[136.0543637860001,55.26884096000005],[136.01881853600017,55.25653355800013],[135.9810786510002,55.24481068500016],[135.95407891099998,55.22998530900015],[135.9304127170001,55.213335061000166],[135.91742637400014,55.205909704000035],[135.9141056860001,55.19675083800003],[135.8689425050002,55.17388561600016],[135.84207362500007,55.172638753],[135.81084978100012,55.17136206300007],[135.75544075700006,55.13948486900007],[135.70634835100017,55.115413105000115],[135.67046871400012,55.12130586900015],[135.5923587150002,55.101410142000034],[135.5342550500002,55.08656485500008],[135.46906384600007,55.056664459000146],[135.45542427600006,55.02882688300015],[135.39144055699998,55.00446820800009],[135.3392183860001,54.98071336300013],[135.2651398510002,54.928453946],[135.21957145100012,54.89412084100011],[135.2039481850001,54.869288976000135],[135.18372424599997,54.85915536300003],[135.17335045700005,54.821275132],[135.26514733200023,54.72166575700005],[135.2553817070001,54.72068919500008],[135.24976647200015,54.71771881700006],[135.23780358200005,54.70799388200011],[135.24415123800011,54.701239325000174],[135.26856530000023,54.7110863300001],[135.29249108200008,54.71564362200006],[135.34083092500012,54.71482982000013],[135.65414472700004,54.66596100500014],[135.669688347,54.660874742000104],[135.68018639400006,54.649603583000115],[135.68824303500006,54.61416250200013],[135.69857832100004,54.59902578300013],[135.71192467500023,54.58624909100008],[135.72510826900012,54.57770416900014],[135.75017337300017,54.570949611000046],[135.8807072270001,54.58515045800014],[135.9799910820001,54.58079661700005],[136.12924238400015,54.61225006700006],[136.20671634200002,54.62067291900003],[136.24927819100014,54.620428778000175],[136.26254316500004,54.61554596600011],[136.27654056100008,54.607489325000174],[136.2911889980002,54.60712311400006],[136.32056725400017,54.61180247600008],[136.53492272200018,54.59552643400003],[136.56723066500004,54.602728583000086],[136.59839928500017,54.622707424000154],[136.63843834699998,54.66811758000012],[136.66244550900015,54.68524811400009],[136.67709394600007,54.67389557500009],[136.6744897800002,54.6583519550001],[136.66480553500003,54.64777252800015],[136.65894616000017,54.63743724200005],[136.66700280000012,54.622707424000154],[136.68140709700018,54.614691473],[136.70085696700008,54.61188385600015],[136.72022545700008,54.61444733300006],[136.73519941500004,54.622707424000154],[136.748301629,54.635443427],[136.7612410820001,54.64492422100001],[136.7755639980002,54.650824286000145],[136.79379316500015,54.652777411],[136.81072024800005,54.65159739800008],[136.82349694100012,54.647528387000094],[136.82667076900017,54.63934967699999],[136.81446373800011,54.62612539300015],[136.82846113400015,54.61432526200018],[136.84441165500007,54.60407135600014],[136.86255944100006,54.596136786],[136.88331139400023,54.59137604400008],[136.87224368600013,54.578070380000085],[136.8386336600001,54.551581122000115],[136.83814537899997,54.53400299700017],[136.81470787900005,54.52448151200018],[136.80746504000004,54.516262111000074],[136.81088300900004,54.50800202],[136.841644727,54.48826732000008],[136.82056725400017,54.48525625200015],[136.81804446700008,54.47345612200009],[136.82650800900004,54.45815664300012],[136.8386336600001,54.444240627000156],[136.84083092500006,54.43231842700011],[136.82691491,54.425116278000175],[136.80665123800011,54.42401764500012],[136.77540123800023,54.437486070000105],[136.75863691500004,54.43695709800012],[136.74488366000017,54.42894114799999],[136.73861738400012,54.413804429],[136.74366295700005,54.401190497000115],[136.75407962300008,54.39166901200012],[136.76002037900017,54.381089585000055],[136.7522892590001,54.36542389500009],[136.77230879000015,54.34853750200009],[136.80307050900004,54.332668361000074],[136.82064863400015,54.316107489],[136.800629102,54.297186591000084],[136.78760826900012,54.297186591000084],[136.76986738400004,54.2997093770001],[136.75521894599999,54.297430731000034],[136.7522892590001,54.283514716000134],[136.76205488400004,54.27265045800006],[136.80014082099999,54.25678131700012],[136.81446373800011,54.248724677],[136.800059441,54.23883698100017],[136.77955162900017,54.22817617400015],[136.76343834700015,54.21649811400006],[136.76286868600002,54.20404694200011],[136.7768660820001,54.19245026200012],[136.792816602,54.18357982000007],[136.80648847700004,54.17377350500014],[136.81446373800011,54.159328518000095],[136.80534915500016,54.134833075000145],[136.78353925900015,54.106146552],[136.76880944100003,54.0802269550001],[136.78028405000012,54.06378815300008],[136.72006269600004,54.03278229400017],[136.68913821700016,54.01227448100012],[136.68734785199996,53.99237702000012],[136.69206790500013,53.980169989000146],[136.68458092500023,53.968207098000036],[136.6635848320001,53.94708893400009],[136.65919030000012,53.93504466399999],[136.65919030000012,53.926174221000124],[136.67554772200006,53.84357330900014],[136.67709394600007,53.820746161000145],[136.6847436860002,53.808498440000065],[136.70248457099999,53.80036041900014],[136.73861738400012,53.79002513200005],[136.7643335300002,53.775295315000065],[136.77515709700018,53.77309804900007],[136.79379316500015,53.77635325700011],[136.80836022200012,53.781073309000114],[136.8217879570001,53.78839752800003],[136.8317163420002,53.799058335000055],[136.83545983200023,53.81391022300012],[136.842051629,53.828762111000074],[136.8572697270001,53.834377346000096],[136.87435957100004,53.836574611000074],[136.8986922540001,53.84699127800015],[136.95777428500006,53.857652085],[136.96631920700023,53.8568382830001],[136.99187259200002,53.85150788000011],[137.01254316500015,53.852118231000176],[137.01978600400017,53.85150788000011],[137.04957116000017,53.838527736000046],[137.077891472,53.820054429000024],[137.10792076900006,53.80792877800012],[137.1427514980002,53.81391022300012],[137.1666772800002,53.83022695500013],[137.18572024800005,53.85106028900013],[137.23365319100017,53.942572333000136],[137.24740644599999,53.96173737200011],[137.26319420700023,53.97842031500015],[137.27995853000007,54.02277252800009],[137.28345787900005,54.02985260600015],[137.288340691,54.032619533000016],[137.29086347700002,54.03571198100009],[137.28736412900005,54.043890692],[137.28093509200002,54.04852936400011],[137.27165774800005,54.05023834800012],[137.25375410200004,54.05011627800015],[137.1881616550002,54.03880442900008],[137.156993035,54.04401276200015],[137.14389082100013,54.074286200000145],[137.13819420700005,54.08344147300014],[137.06137129000015,54.14569733300014],[137.09058678500017,54.15428294500005],[137.17750084700018,54.20774974199999],[137.20679772200018,54.21702708500014],[137.23414147200015,54.22028229400017],[137.26050866000017,54.22744375200004],[137.28736412900005,54.248724677],[137.27995853000007,54.25556061400012],[137.30014082099999,54.271918036000116],[137.32520592500006,54.279038804],[137.35181725400005,54.283189195000105],[137.37671959700018,54.29026927299999],[137.385996941,54.297186591000084],[137.38990319099997,54.303534247000115],[137.39478600400017,54.30829498900003],[137.41911868600008,54.311346747000115],[137.43921959700012,54.316392320000126],[137.45142662900017,54.31761302300005],[137.47754967500023,54.31488678600008],[137.54672285200004,54.297186591000084],[137.64332116000017,54.297186591000084],[137.66342207100004,54.30524323100012],[137.686778191,54.320746161000116],[137.71168053500006,54.33047109600007],[137.73585045700017,54.32099030200008],[137.74000084700018,54.30658600500003],[137.72624759200008,54.295477606000176],[137.68458092500012,54.27659739800004],[137.58871504000004,54.20612213700015],[137.58082116000003,54.18732330900009],[137.55079186300006,54.17291901200003],[137.525645379,54.15639883000016],[137.50424238400015,54.13654205900015],[137.48536217500012,54.112127997000115],[137.4843856130002,54.102036851000044],[137.48731530000006,54.09162018400014],[137.48389733200005,54.084662177000055],[137.46485436300006,54.084865627],[137.45020592500023,54.08905670800014],[137.44703209700015,54.09503815300015],[137.44947350400005,54.104315497000115],[137.45118248800023,54.11835358300006],[137.45337975400005,54.120347398000106],[137.457774285,54.12116120000011],[137.46070397200006,54.12417226800012],[137.45801842500023,54.13263580900015],[137.45362389400006,54.13837311400011],[137.44857832100004,54.14175039300015],[137.43685957100016,54.14569733300014],[137.42237389400012,54.148016669000114],[137.40512128999998,54.14667389500003],[137.33692467500006,54.132513739],[137.32007897200015,54.126654364000146],[137.30787194100012,54.11835358300006],[137.30396569099997,54.109035549000126],[137.30420983200023,54.09857819200014],[137.30274498800011,54.0878766950001],[137.2936304050002,54.07746002800003],[137.30518639400012,54.06732819200009],[137.31088300900004,54.05768463700009],[137.32007897200015,54.04946523600002],[137.3419702480002,54.043890692],[137.3990991550002,54.04539622600005],[137.41773522200018,54.043890692],[137.43816165500007,54.037014065000086],[137.54623457100004,53.972072658000016],[137.5711369150001,53.96548086100013],[137.5905054050002,53.95612213700012],[137.60206139400012,53.95384349200004],[137.60922285200016,53.95600006700015],[137.62745201900023,53.96539948100015],[137.63624108200008,53.967596747000144],[137.65691165500002,53.96539948100015],[137.69654381600006,53.95600006700015],[137.73666425900015,53.95087311400012],[137.75391686300006,53.945624091000134],[137.77133222700016,53.94354889500011],[137.81055748800006,53.956610419000086],[137.86280358200003,53.967596747000144],[137.83871504000015,53.950140692],[137.799164259,53.913275458000115],[137.77393639400023,53.89931875200015],[137.678965691,53.87783437700013],[137.65040123800023,53.865139065000065],[137.64503014400006,53.85944245000009],[137.64356530000012,53.85333893400009],[137.64283287900017,53.84715403900013],[137.63965905000012,53.841253973],[137.63314863400004,53.837958075000145],[137.61695397200018,53.83641185100011],[137.60914147200018,53.83441803600009],[137.596934441,53.82416413000006],[137.59498131600006,53.8131371110001],[137.59571373800011,53.8023949240001],[137.59180748800011,53.79315827000012],[137.57064863399995,53.77749258000016],[137.56592858200005,53.770941473000065],[137.56104576900012,53.755275783000094],[137.56128991000006,53.74502187700007],[137.56430097700016,53.736395575000145],[137.56397545700023,53.72687409100017],[137.5542098320001,53.714300848000065],[137.53980553500006,53.709133205000064],[137.51905358200023,53.70526764500006],[137.50025475400017,53.698187567],[137.49219811300023,53.68357982],[137.4879663420001,53.670558986000096],[137.4772241550002,53.66583893400009],[137.38070722700016,53.668402411],[137.34538821700014,53.66474030200014],[137.31470787900005,53.6528181010001],[137.30298912900005,53.64207591399999],[137.29086347700002,53.62824127800008],[137.27767988399998,53.616400458000115],[137.26319420700023,53.61127350500011],[137.24903405000012,53.61066315300014],[137.23194420700005,53.607652085000055],[137.21762128999998,53.600572007],[137.21168053500017,53.58771393400015],[137.22820071700002,53.56679922100001],[137.26596113400004,53.54901764500012],[137.3351343110002,53.529364325000174],[137.37045332100004,53.52753327],[137.43799889400003,53.54002513200011],[137.678070509,53.550116278000175],[137.91822350400005,53.58661530200011],[138.047211134,53.650458075000145],[138.1500757170002,53.67275625200009],[138.1682235040001,53.68036530200011],[138.21900475400005,53.71116771],[138.27051842500012,53.73041413000014],[138.28419030000023,53.738511460000076],[138.29818769600004,53.756170966000084],[138.33887780000012,53.869614976000136],[138.34929446700016,53.88898346600014],[138.36638431100002,53.90949127800009],[138.39568118600008,53.92841217700011],[138.46810957099999,53.949896552000055],[138.5589298840001,53.98956940300017],[138.57211347700004,53.998928127],[138.57862389400012,53.99933502800012],[138.58375084700006,53.99054596600014],[138.58472741,53.977240302000105],[138.56495201900006,53.94208405200005],[138.56812584700003,53.922023830000015],[138.58887780000023,53.87938060100008],[138.57992597700004,53.82831452000009],[138.53663170700023,53.78607819200006],[138.37875410200016,53.68414948100014],[138.35328209700018,53.66010163000011],[138.34253991000006,53.635484117000104],[138.34595787900017,53.61831289300009],[138.34986412900014,53.61127350500011],[138.34506269600016,53.60712311400009],[138.27393639400023,53.58388906500014],[138.25993899800008,53.57713450700011],[138.24610436300006,53.56635163000011],[138.24293053499997,53.55829498900009],[138.246836785,53.532782294000086],[138.24073326900012,53.522894598000065],[138.216563347,53.50043366100005],[138.21558678500006,53.49176666900017],[138.2260848320001,53.492254950000145],[138.26734459700006,53.52252838700015],[138.28443444100012,53.52484772300012],[138.40577233200023,53.51056549700002],[138.43921959700015,53.513657945000105],[138.47315514400023,53.52594635600014],[138.50212649800014,53.543524481000084],[138.52784264400006,53.56415436400012],[138.55030358200005,53.58690013200005],[138.65577233200005,53.73175690300003],[138.69678795700005,53.81867096600003],[138.69857832100016,53.83673737200006],[138.68824303500006,53.85455963700012],[138.68246503999998,53.87543366100009],[138.69564863400015,53.89777252800012],[138.73292076900012,53.934027411000116],[138.76059004000004,53.975246486000074],[138.77182050900004,54.01557038000005],[138.77214603000002,54.05780670800008],[138.7671004570001,54.104681708000115],[138.67579186300023,54.0715192730001],[138.6647241550002,54.07746002800003],[138.6754663420002,54.09780508000004],[138.71314537900017,54.137355861000074],[138.72543379000015,54.159328518000095],[138.72803795700023,54.166815497000144],[138.7321069670002,54.17438385600009],[138.73292076900012,54.18048737200009],[138.73170006600017,54.18622467700005],[138.7260848320001,54.19464752800011],[138.72543379000015,54.20034414300009],[138.72950280000012,54.20962148600013],[138.74350019600013,54.23126862200003],[138.74659264400023,54.24249909100005],[138.73438561300006,54.2663434920001],[138.70508873800023,54.28139883000013],[138.64356530000006,54.297186591000084],[138.70036868600008,54.31460195500016],[138.71924889400006,54.31761302300005],[138.738536004,54.31598541900003],[138.9344181650001,54.253078518000095],[139.09009850400005,54.22357819200012],[139.16187584700006,54.20473867400007],[139.30225670700023,54.190619208000136],[139.37183678500006,54.195868231000034],[139.64478600400017,54.26605866100009],[139.70337975400005,54.29596588700015],[139.73170006600017,54.304144598000065],[139.76758873800006,54.303941148000106],[139.79704837300002,54.297430731000034],[139.80355879000015,54.28681061400009],[139.79908287900017,54.26850006700012],[139.79493248800023,54.23883698100017],[139.80103600400005,54.22630442899999],[139.81592858200005,54.21515534100017],[139.87517337300008,54.18886953300013],[139.88363691500004,54.18732330900009],[139.89112389400006,54.18952057500009],[139.90821373800011,54.19891998900011],[139.91846764400023,54.20034414300009],[139.90845787900017,54.18886953300013],[139.92042076900012,54.17568594],[140.00171959700018,54.12299225499999],[140.01775149800008,54.11835358300006],[140.05307050899998,54.11420319200011],[140.24057050900004,54.05695221600017],[140.24480228000002,54.04437897300009],[140.23926842500012,54.03424713700004],[140.23072350400017,54.02431875200013],[140.22632897200012,54.01227448100012],[140.23568769600004,54.00128815300015],[140.25733483200023,53.98908112200009],[140.28150475400003,53.979071356000084],[140.29835045700023,53.975002346000124],[140.32081139400023,53.97406647300006],[140.33082116,53.97028229400003],[140.33073978000002,53.96173737200011],[140.32252037900005,53.94708893400009],[140.3024194670002,53.930487372000144],[140.27279707100016,53.91144440300015],[140.25196373800006,53.890570380000085],[140.25733483200023,53.868557033000066],[140.35670006600006,53.79002513200005],[140.37354576900023,53.78278229400002],[140.416351759,53.77187734600015],[140.51091556100002,53.73379140800016],[140.52173912900005,53.727036851000136],[140.52857506600006,53.721136786],[140.53443444100012,53.71198151200012],[140.53492272200015,53.70848216400013],[140.53386478000002,53.70620351800015],[140.5366317070001,53.69131094],[140.53695722700004,53.68195221600014],[140.53980553500006,53.67169830900003],[140.549082879,53.65965403900013],[140.58122806100008,53.63930898600013],[140.6511336600001,53.61981842700013],[140.71314537900005,53.581610419000086],[141.02621503999998,53.49213288],[141.08326256600017,53.48216380399999],[141.0978296230002,53.474758205000015],[141.04737389400012,53.47846100500006],[140.99439537900005,53.49518463700018],[140.9742944670002,53.49412669500013],[140.94971764400012,53.488959052000105],[140.93376712300008,53.47650788000003],[140.93946373800006,53.45359935100011],[140.92741946700008,53.44452545800003],[140.93091881600006,53.43634674700009],[140.943125847,53.43260325700008],[140.9562280610002,53.43683502800009],[140.97250410200004,53.448431708],[140.98454837300002,53.45184967700011],[140.99537194100003,53.448431708],[141.0078231130002,53.43992747600008],[141.01832116,53.42885976800012],[141.02572675900004,53.41803620000003],[141.03541100400017,53.40973541900014],[141.089528842,53.403265692000055],[141.1243595710001,53.39276764500009],[141.11768639400012,53.37523021000013],[141.13843834699998,53.36204661700002],[141.16871178499997,53.351263739],[141.18995201900012,53.34100983300005],[141.20899498800011,53.32562897300012],[141.22925865999997,53.31598541900014],[141.251231316,53.310980536000116],[141.37769616000003,53.30963776200012],[141.40748131600006,53.30377838700017],[141.41187584700006,53.29364655200011],[141.40430748800011,53.27798086100013],[141.39812259200014,53.25560130400014],[141.37378991000006,53.24030182500017],[141.36109459700018,53.23004791900014],[141.35775800900015,53.220892645000056],[141.36841881600012,53.21352773600015],[141.38461347700016,53.21556224200001],[141.40113366000006,53.222154039000074],[141.41179446700008,53.228338934000035],[141.42400149800002,53.21784088700015],[141.41968834700006,53.20652903899999],[141.41244550900004,53.194973049000154],[141.4155379570001,53.18329498900006],[141.42400149800002,53.174872137000115],[141.4293725920002,53.16730377800015],[141.43213951900023,53.15916575700005],[141.43295332100016,53.148871161000116],[141.42644290500007,53.144517320000126],[141.38502037900003,53.132066148000106],[141.37549889400023,53.12343984600001],[141.3497827480002,53.09113190300009],[141.36353600400005,53.08685944200009],[141.36866295700023,53.079982815000065],[141.36443118600013,53.073391018],[141.3497827480002,53.07001373900009],[141.33318118600008,53.07273997600005],[141.2988387380001,53.087103583000115],[141.2819930350001,53.09113190300009],[141.25367272200006,53.08783600500005],[141.23113040500007,53.07648346600008],[141.21013431100002,53.06232330900015],[141.18637129000004,53.05019765800015],[141.18637129000004,53.042669989],[141.20362389400023,53.03742096600003],[141.22250410200016,53.03554922100015],[141.26156660200004,53.03587474199999],[141.2518009770001,53.023993231000034],[141.21949303500017,53.00210195500009],[141.18881269600013,52.987494208000086],[141.17042076900012,52.983465887000094],[141.15137780000012,52.9833845070001],[141.13184655000023,52.987494208000086],[140.99830162900005,53.043646552000084],[140.984141472,53.05329010600015],[140.96656334700018,53.06195709800015],[140.94068444100017,53.069484768],[140.894786004,53.076849677],[140.886973504,53.08340078300007],[140.87126712300002,53.111965236000074],[140.86068769599999,53.11847565300015],[140.77702884200005,53.1278343770001],[140.72999108200023,53.126939195000105],[140.70671634200002,53.11102936400009],[140.77344811300006,53.089911200000174],[140.8296004570001,53.0638695330001],[140.86036217500006,53.04515208500014],[140.87623131600012,53.03847890800007],[140.93344160200016,53.03156159100017],[140.94581139400012,53.023342190000086],[140.94695071700002,53.001166083000115],[140.93946373800006,52.994940497000144],[140.94556725400005,52.98468659100003],[140.95492597699996,52.963609117000104],[140.966075066,52.94464752800009],[140.96989993600002,52.940904039000074],[140.97461998800023,52.93781159100017],[140.984141472,52.93008047100007],[140.9938257170002,52.92584870000006],[141.00668379000004,52.92511627800012],[141.03199303500006,52.926662502000156],[141.04493248800017,52.92426178600003],[141.05241946700002,52.91860586100002],[141.05730228000016,52.91156647300014],[141.07097415500002,52.896673895],[141.0756942070002,52.889797268000095],[141.08253014400023,52.88397858300011],[141.0978296230002,52.87824127800015],[141.14869225400005,52.872015692],[141.15796959700012,52.869208075000145],[141.1772567070002,52.8556175800001],[141.18637129000004,52.85089752800009],[141.19776451900006,52.84882233300006],[141.26059004000015,52.852240302000084],[141.25928795700023,52.84662506700009],[141.21208743600008,52.797593492000125],[141.20101972700004,52.77741120000009],[141.21013431100002,52.76837799700009],[141.228770379,52.76325104400017],[141.25074303500003,52.750799872000144],[141.27027428499997,52.735256252000156],[141.2819930350001,52.72125885600009],[141.28907311300017,52.70111725500006],[141.29200280000006,52.684759833000136],[141.29851321700005,52.67112864799999],[141.31625410200016,52.659125067000055],[141.3061629570001,52.649481512000094],[141.300059441,52.641424872000144],[141.28956139400023,52.617580471000096],[141.28598066500007,52.603949286000145],[141.28419030000006,52.59113190300009],[141.28060957100004,52.57876211100016],[141.27214603000007,52.566636460000076],[141.23511803500006,52.526312567],[141.21338951900006,52.507879950000174],[141.13526451900023,52.47052643400012],[141.11768639400012,52.44896067900011],[141.12818444100017,52.42291901200004],[141.16716556100008,52.364894924000154],[141.18637129000004,52.35065338700015],[141.23471113400015,52.33563873900012],[141.25831139400006,52.32371653899999],[141.26840254000015,52.30658600500006],[141.2789819670002,52.29344310099999],[141.3497827480002,52.26813385600015],[141.36085045700023,52.25165436400006],[141.36622155000012,52.24681224199998],[141.390879754,52.23110586100001],[141.40211022200012,52.225531317000026],[141.41431725400017,52.22174713700017],[141.46599368600013,52.213609117000075],[141.480723504,52.21283600500006],[141.52076256600006,52.21987539300012],[141.529144727,52.22036367400001],[141.53239993600008,52.220933335000076],[141.54004967500006,52.22077057500012],[141.54468834700012,52.21771881700012],[141.53565514400012,52.20465729400014],[141.53614342500003,52.199448960000055],[141.53980553500006,52.19525788000011],[141.54590905000012,52.193589585000026],[141.54297936300011,52.18829987200003],[141.5468856130001,52.176906643000066],[141.55274498800023,52.165920315],[141.55583743600002,52.16229889500014],[141.55062910200004,52.14984772300012],[141.53882897200006,52.15424225500011],[141.51482181100013,52.17194245000012],[141.50082441500015,52.17381419499999],[141.49366295700008,52.172308661000116],[141.47388756600014,52.15888092700014],[141.40259850400014,52.14020416900014],[141.39136803500017,52.127834377000035],[141.37859134200002,52.11798737200009],[141.3549910820001,52.105902411],[141.34278405000012,52.09381745000009],[141.364024285,52.08372630400014],[141.32618248800006,52.05402252800008],[141.30892988400015,52.037095445000105],[141.30258222700004,52.02167389500009],[141.31364993600008,52.00409577000006],[141.33594811300011,51.99396393400009],[141.36117597700016,51.98655833500011],[141.38135826900012,51.976996161000116],[141.41781660200016,51.95473867400007],[141.42953535200016,51.941961981000034],[141.42554772200015,51.92548248900014],[141.40772545700008,51.91730377800006],[141.35474694100003,51.90908437700013],[141.34351647200006,51.901922919000114],[141.33179772200018,51.89044830900015],[141.28012129000004,51.880316473],[141.25879967500018,51.85748932500009],[141.20020592500012,51.823675848],[141.19044030000006,51.805609442],[141.17896569100006,51.76821523600013],[141.16911868600013,51.751044012000115],[141.13396243600008,51.721136786000145],[141.12232506600006,51.705023505000085],[141.13184655000023,51.69269440300003],[141.10922285200007,51.67877838700004],[140.98796634200002,51.65924713700014],[140.93262780000023,51.62824127800003],[140.91529381600006,51.623846747000144],[140.90560957099999,51.615423895],[140.905528191,51.59638092700011],[140.91211998800011,51.56297435100005],[140.90137780000006,51.494086005],[140.89551842500023,51.491929429],[140.89307701900012,51.48729075700005],[140.8913680350001,51.48261139500014],[140.88795006600017,51.48041413000006],[140.853770379,51.480902411000145],[140.84449303500006,51.48289622600008],[140.83472740999997,51.48371002800009],[140.82276451900006,51.48041413000006],[140.80307050900004,51.46710846600003],[140.80005944100006,51.45416901200012],[140.804942254,51.43976471600014],[140.808441602,51.42210521000014],[140.81885826900006,51.41673411699999],[140.8425399100001,51.41803620000009],[140.87810306100008,51.432684637000094],[140.89600670700023,51.428778387000094],[140.89389082100004,51.41648997600005],[140.88404381600017,51.40106842700011],[140.87810306100008,51.38764069200012],[140.87378991000014,51.37177155199999],[140.8628035820001,51.359279690000086],[140.84717858200023,51.34983958500008],[140.8296004570001,51.34324778900019],[140.74976647200018,51.34174225500014],[140.70573978000004,51.334784247000144],[140.68628991000006,51.31281159100005],[140.69304446700016,51.28180573100012],[140.70264733200003,51.26727936400009],[140.70972741000006,51.259344794000114],[140.71355228000007,51.26137929900012],[140.70386803500017,51.24530670800005],[140.6671655610002,51.236070054],[140.65894616000017,51.223822333000115],[140.66179446700002,51.21849192900008],[140.67497806100008,51.207709052000055],[140.67945397200006,51.19928620000012],[140.680023634,51.18976471600011],[140.6663517590001,51.14142487200008],[140.66732832100013,51.13141510600012],[140.69304446700016,51.109930731000084],[140.70435631600014,51.09235260600014],[140.7081811860002,51.07355377800012],[140.70671634200002,51.031683661],[140.70118248800011,51.02187734600007],[140.67408287900017,51.01471588700012],[140.66521243600002,51.00812409100014],[140.66456139400006,50.997503973],[140.67595462300002,50.97650788000006],[140.67945397200006,50.96653880400008],[140.67359459700018,50.948309637000094],[140.65674889400012,50.93781159100002],[140.63314863400015,50.93292877800015],[140.60743248800011,50.931789455000015],[140.59986412900017,50.92845286699999],[140.54224694100014,50.877142645000056],[140.52979576900006,50.86237213700018],[140.53028405000023,50.85569896000011],[140.54761803500006,50.83563873900006],[140.54786217500006,50.82615794500007],[140.54460696700002,50.816636460000055],[140.54224694100014,50.805121161000116],[140.53443444100012,50.78912995000003],[140.49586022199998,50.76129791900017],[140.48072350400005,50.74738190300009],[140.47592207100004,50.737005927],[140.47689863400004,50.73151276200015],[140.477305535,50.72626373900009],[140.469981316,50.71670156500009],[140.46583092500006,50.70954010600015],[140.46338951900023,50.698960679],[140.466075066,50.689520575000174],[140.47706139400006,50.685288804000045],[140.48536217500023,50.67617422100007],[140.514903191,50.61709219000015],[140.49577884200002,50.61676666900003],[140.4838973320001,50.60716380400014],[140.466563347,50.57550690300015],[140.4428817070001,50.54437897300006],[140.44214928500006,50.53009674700017],[140.45630944100014,50.51064687700007],[140.50635826900012,50.46067942900014],[140.514903191,50.445746161],[140.51563561300023,50.434556382],[140.5123804050002,50.426988023000135],[140.51107832099999,50.419378973],[140.52263431100002,50.399115302],[140.52711022200018,50.37641022300015],[140.54542076900023,50.34406159100002],[140.53891035200016,50.33014557500014],[140.52466881600003,50.31663646000008],[140.514903191,50.294907945000105],[140.51954186300023,50.279445705000064],[140.52995853000002,50.25849030200011],[140.53695722700004,50.23607005400011],[140.53174889400012,50.21613190300003],[140.52027428500017,50.19554271],[140.51783287900005,50.17328522300015],[140.52295983200014,50.151068427],[140.5348413420002,50.13043854400014],[140.54916425899998,50.114081122000144],[140.58676191499998,50.08124420800006],[140.60059655000006,50.07518138200005],[140.6108504570001,50.07802969],[140.62875410200016,50.091701565000115],[140.63843834700003,50.09634023600016],[140.67457116000017,50.098211981000034],[140.68628991000006,50.10317617400007],[140.69092858200005,50.08026764500006],[140.66065514400006,50.058010158000044],[140.590586785,50.02741120000012],[140.54590905000023,50.00071849199999],[140.52857506600006,49.993312893],[140.49463951900012,49.983547268000066],[140.48226972700013,49.975287177000084],[140.47331790500007,49.959133205000015],[140.48072350400005,49.952337958000086],[140.45289147200018,49.924790757000046],[140.44255618600008,49.90745677300007],[140.44605553500003,49.89085521000011],[140.42554772200012,49.88344961100001],[140.4152124360002,49.87457916900017],[140.41578209700003,49.862697658000044],[140.45850670700005,49.80560944200012],[140.47331790500007,49.79462311400009],[140.49463951900012,49.78880442900011],[140.51726321700008,49.78554922100007],[140.53500410200016,49.777411200000145],[140.54224694100014,49.75678131700012],[140.53809655000023,49.74420807500014],[140.507497592,49.69163646000011],[140.51140384200002,49.687567450000145],[140.51905358200017,49.676743882000046],[140.52116946700008,49.67177969],[140.5314233730002,49.63410065300003],[140.53972415500007,49.61725495000003],[140.55209394600004,49.59979889500006],[140.560801629,49.575384833000115],[140.55062910200016,49.55524323100017],[140.52116946700008,49.52716705900018],[140.5197046230002,49.517157294000086],[140.5198673840001,49.50340403900016],[140.51832116000006,49.49140045800006],[140.51107832099999,49.48615143400015],[140.50123131600017,49.482163804],[140.49146569100006,49.47296784100003],[140.46257571700002,49.438625393000066],[140.45427493600008,49.42084381700009],[140.44402103000002,49.36497630400011],[140.432871941,49.306138414000124],[140.43555748800006,49.29437897300015],[140.35108483200023,49.2950707050001],[140.33594811300023,49.28754303600011],[140.33887780000023,49.27773672100001],[140.35035241,49.27309804900007],[140.36402428500006,49.27309804900007],[140.38453209700018,49.28156159100003],[140.3902287120001,49.27505117400003],[140.38941491000017,49.26528554900007],[140.38062584700018,49.260239976000044],[140.3775333990002,49.257025458],[140.3501896490002,49.23916250200013],[140.34571373800006,49.22919342700014],[140.34376061300023,49.218410549000126],[140.34498131600006,49.20770905200003],[140.3501896490002,49.198187567],[140.35531660200016,49.202582098],[140.3653263680002,49.20807526200012],[140.3706160820001,49.212469794000114],[140.37256920700017,49.20872630400008],[140.37305748800023,49.20791250200015],[140.37403405000012,49.20766836100001],[140.3768009770001,49.20563385600009],[140.36524498800023,49.189764716000134],[140.35922285200016,49.17365143400009],[140.36207116000017,49.15802643400009],[140.3768009770001,49.14354075700005],[140.3653263680002,49.13239166900003],[140.3598738940001,49.11701080900009],[140.35645592500003,49.09577057500011],[140.34498131600006,49.09007396000011],[140.3296818370001,49.088080145],[140.29493248800023,49.088324286000116],[140.29493248800023,49.082098700000174],[140.3360294930002,49.06769440300012],[140.34278405000023,49.061672268],[140.34359785200016,49.04706452000009],[140.33716881600003,49.039780992000075],[140.29175866000014,49.02802155199999],[140.24219811300023,49.021470445000105],[140.21924889400023,49.01386139500006],[140.23519941500015,49.00751373900012],[140.25082441500004,49.01089101800015],[140.26449629000012,49.012274481000034],[140.27442467500006,49.00018952000012],[140.2651473320001,48.994940497000144],[140.25391686300011,48.985419012000065],[140.24838300899995,48.97630442900005],[140.25709069100017,48.97223541900008],[140.26840254000015,48.97443268400009],[140.27808678500006,48.977525132000075],[140.28345787900017,48.97626373900005],[140.2812606130001,48.96539948100017],[140.29127037900017,48.96478913000011],[140.30111738399998,48.96539948100017],[140.29664147200006,48.98041413000003],[140.30526777400019,48.99628327000012],[140.3213810560002,49.00873444200006],[140.34620201900015,49.015855210000026],[140.35254967500006,49.01959870000003],[140.35914147200018,49.021307684000035],[140.36695397200006,49.01727936400008],[140.36874433700004,49.01337311400009],[140.36988366000017,49.00283437700001],[140.3706160820001,49.00018952000012],[140.38062584700018,48.99371979400003],[140.38795006600012,48.991766669000086],[140.39795983200005,48.99274323100014],[140.37867272200006,48.95872630400011],[140.35645592500003,48.93130117400007],[140.35230553500006,48.910223700000145],[140.32471764400023,48.89150625200007],[140.26693769599999,48.86237213700004],[140.25391686300011,48.848049221000124],[140.2496037120002,48.836981512000094],[140.24887128999998,48.826727606000176],[140.24659264400012,48.81460195500007],[140.2397567070001,48.801703192000055],[140.22144616000006,48.78058502800015],[140.2129826180001,48.76740143400009],[140.20191491000006,48.73948802300008],[140.1944279310001,48.70978424700003],[140.18580162900017,48.65009186400006],[140.19532311300006,48.603949286000116],[140.1934513680002,48.58112213700012],[140.1719669930001,48.56818268400009],[140.1758732430001,48.55687083500011],[140.1895451180002,48.53803131700009],[140.19263756600012,48.53034088700015],[140.1904403000001,48.507269598],[140.18580162900017,48.48627350500005],[140.177012566,48.46181875200004],[140.16504967500006,48.44940827],[140.12362714900004,48.43158600500011],[140.08863366000017,48.407456773000106],[140.079356316,48.40371328300007],[140.072113477,48.39862702000014],[140.06299889400012,48.37433502800015],[140.0586857430001,48.365871486000046],[140.05250084700006,48.357001044000086],[140.04346764400012,48.336249091000084],[140.03492272200012,48.32794830900009],[140.02637780000006,48.32542552299999],[139.99325605600004,48.32172272300015],[139.95126386800004,48.30487702000014],[139.77759850400005,48.191351630000106],[139.767344597,48.18768952000006],[139.73389733200017,48.163478908000066],[139.7266544930002,48.155340887000065],[139.7120060560002,48.12995026200003],[139.68409264400006,48.095526434000085],[139.65186608200023,48.068752346000096],[139.56112714900016,48.009263414000046],[139.5166935560002,47.97199127800017],[139.5073348320001,47.96149323100012],[139.4956974620001,47.95441315300015],[139.42481530000003,47.92389557500011],[139.39047285200004,47.90424225500005],[139.26172936300023,47.78790924700008],[139.2463485040001,47.767157294000086],[139.23609459700018,47.73871491100006],[139.21802819100006,47.71474844],[139.21192467500023,47.70416901200015],[139.20997155000012,47.69354889500012],[139.20956464900007,47.67401764500011],[139.2056583990002,47.66380442900002],[139.18897545700005,47.64809804900012],[139.16830488400012,47.636135158000016],[139.15088951900006,47.621771552000105],[139.14356530000006,47.59870026200015],[139.1397404310001,47.59349192900008],[139.11622155000012,47.56761302300008],[139.09644616000017,47.53351471600014],[139.0806583990002,47.51276276200015],[139.06519616,47.49632396000005],[139.05331464900004,47.47870514500012],[139.04859459700006,47.454331772999986],[139.04818769600016,47.43447500200006],[139.04542076900012,47.41742584800012],[139.03736412900017,47.40106842700002],[139.0263778000001,47.389431057000095],[139.02059980600012,47.383246161000116],[138.99984785200004,47.37128327],[138.990489129,47.36322663000006],[138.986582879,47.351629950000145],[138.98471113400015,47.342230536000116],[138.9804793630001,47.33246491100009],[138.97486412900005,47.323675848000036],[138.96949303500017,47.31753164300012],[138.95899498800011,47.313421942],[138.9175724620001,47.31439850500005],[138.90560957100013,47.312079169000086],[138.89730879000015,47.30906810099999],[138.8907169930001,47.30516185100002],[138.66098066500015,47.10480377800015],[138.6167098320001,47.083807684000035],[138.5948185560001,47.06732819200015],[138.5627547540001,47.0299339860001],[138.5347599620001,46.98663971600002],[138.51327558700015,46.940822658000016],[138.50001061300011,46.89545319200012],[138.5035099620002,46.87620677300008],[138.50155683700004,46.866156317],[138.49000084700006,46.86188385600009],[138.48438561300023,46.85797760600009],[138.4097599620001,46.78095123900012],[138.39698326900023,46.75885651200004],[138.36630293100004,46.68781159100017],[138.359629754,46.676336981000034],[138.34913170700023,46.66425202000011],[138.34913170700023,46.637152411],[138.35645592500023,46.5943871110001],[138.34457441499998,46.548732815000065],[138.31283613400004,46.52313873900008],[138.23243248800023,46.48456452],[138.20240319100017,46.4543317730001],[138.11304772200018,46.28949616100005],[138.107188347,46.24485911699999],[138.10035241,46.22797272300009],[138.03402754000015,46.15595123900006],[138.009613477,46.13646067900008],[137.98902428500017,46.12824127800015],[137.97885175900004,46.12616608300005],[137.96558678500017,46.12103913000014],[137.95289147200006,46.11440664300006],[137.9444279310001,46.10781484600001],[137.94117272200006,46.10028717700014],[137.94117272200006,46.082505601000044],[137.938243035,46.073635158000016],[137.9241642590001,46.060980536000116],[137.8843693370001,46.03424713700012],[137.8682560560002,46.00849030199999],[137.78207441500015,45.945990302000055],[137.76661217500023,45.92951080900015],[137.75294030000012,45.89655182500009],[137.7046818370001,45.85447825700011],[137.68580162900005,45.81533437700007],[137.67147871200004,45.79462311400009],[137.63868248800023,45.779038804],[137.52442467500006,45.68935781500012],[137.49496504000004,45.67890045800006],[137.39673912900005,45.62392812700007],[137.33594811300011,45.57062409100002],[137.26620527400016,45.48590729400002],[137.25635826900012,45.47711823100014],[137.23666425899998,45.47260163],[137.21949303500006,45.46100495000009],[137.14454186300011,45.37466054900007],[137.12574303500006,45.36733633000016],[137.10328209700006,45.36375560099999],[137.0827742850001,45.35521067900008],[136.92636152400007,45.25438060100002],[136.82553144600004,45.20408763200014],[136.81080162900005,45.19318268400015],[136.80030358200005,45.1752790390001],[136.78858483200005,45.128119208000115],[136.78003991000006,45.10785553600003],[136.76075280000012,45.08787669500013],[136.71851647200018,45.067368882],[136.70093834700006,45.05634186400012],[136.69800866000006,45.05255768400009],[136.69141686300017,45.04116445500013],[136.69052168100006,45.03896719000015],[136.684336785,45.03790924700008],[136.66944420700023,45.04022858300006],[136.66334069100017,45.03896719000015],[136.65650475400005,45.03339264500015],[136.5776473320001,44.95294830900015],[136.57162519599999,44.95026276200018],[136.56478925900015,44.949652411000116],[136.5581974620001,44.94830963700003],[136.55347741000017,44.94334544499999],[136.55307050899995,44.937892971000124],[136.55518639400012,44.93195221600003],[136.55811608200008,44.92812734600001],[136.56031334700012,44.92910390800007],[136.55811608200008,44.91844310100005],[136.55665123800023,44.902044989000146],[136.55347741000017,44.89496491100009],[136.51587975400017,44.87506745000009],[136.51026451900006,44.869696356000034],[136.49830162900017,44.845770575000145],[136.48829186300006,44.840277411000116],[136.47803795700023,44.839300848000065],[136.46762129000015,44.83661530199999],[136.45801842500006,44.83226146],[136.4502873060001,44.82664622599999],[136.44727623800017,44.81806061400009],[136.443614129,44.78510163],[136.42611738400015,44.772650458],[136.40845787900005,44.77667877800015],[136.38868248800023,44.786810614],[136.36475670700017,44.792547919000086],[136.3545841810002,44.78880442900005],[136.34994550899998,44.77985260600012],[136.34693444100017,44.76850006700015],[136.34107506600006,44.75775788000011],[136.33497155000023,44.75275299700009],[136.32699628999998,44.74884674700009],[136.31763756600017,44.74599844000015],[136.30697675900004,44.744086005],[136.31202233200005,44.733221747000115],[136.32113691500012,44.725002346],[136.32984459700006,44.71865469000009],[136.33375084700006,44.71369049700003],[136.32886803500017,44.70734284100008],[136.31771894600016,44.701808986000074],[136.30543053500017,44.69782135600009],[136.274506056,44.69293854400003],[136.26075280000023,44.68357982000002],[136.23536217500012,44.651678778000175],[136.22730553500017,44.63104889500006],[136.23316490999997,44.58608633000016],[136.2281193370001,44.56972890800013],[136.2190047540001,44.56537506700006],[136.20883222700016,44.56419505400011],[136.20053144600016,44.56053294499999],[136.19516035200004,44.538967190000065],[136.18604576900012,44.5211449240001],[136.18409264400006,44.515082098],[136.165293816,44.496527411],[136.1225692070001,44.47553131700015],[136.04639733200023,44.44989655200008],[136.03402753999995,44.45083242400007],[136.00904381600017,44.45693594000014],[135.99854576900012,44.45612213700003],[135.99317467500023,44.45197174700008],[135.98934980600015,44.44057851800012],[135.98487389400006,44.43561432500008],[135.95093834700003,44.42011139500006],[135.90821373800011,44.409613348],[135.88868248800023,44.401516018000066],[135.88086998800023,44.393744208000086],[135.87208092500006,44.38226959800012],[135.8621525400001,44.37189362200003],[135.83790123800011,44.36269765800016],[135.83570397200018,44.35171133],[135.84083092500012,44.32949453300013],[135.83456464900004,44.311224677000084],[135.8194279310001,44.29059479400014],[135.78622480600004,44.258124091000134],[135.76693769600004,44.250433661000145],[135.7422794930002,44.24494049700011],[135.72095787900005,44.236558335000055],[135.7117619150001,44.22028229400002],[135.70484459700018,44.198391018000095],[135.68848717500018,44.18716054900006],[135.66993248800017,44.17959219000012],[135.6558537120002,44.16868724200005],[135.65088951900017,44.157619533000016],[135.64942467500012,44.145697333000086],[135.65211022200018,44.13410065300015],[135.6592716810002,44.124009507],[135.6596785820002,44.11644114800005],[135.65308678500017,44.10602448100015],[135.63851972700004,44.08930084800012],[135.62850996200004,44.06854889500011],[135.62842858200005,44.052191473000036],[135.62403405000006,44.038478908000094],[135.60132897200006,44.025376695000105],[135.56088300899995,44.014390367000075],[135.54127037900005,44.003973700000174],[135.53296959700006,43.987209377000156],[135.53419030000006,43.96784088700004],[135.53296959700006,43.96263255400005],[135.5298771490001,43.95978424700009],[135.52515709700018,43.957831122000144],[135.51880944100006,43.956488348000065],[135.51197350399997,43.92169830900012],[135.50538170700023,43.93170807500009],[135.49317467500018,43.94391510600017],[135.478282097,43.951971747000115],[135.46363365999997,43.949652411000145],[135.45875084700006,43.93817780199999],[135.46640058700004,43.925482489000146],[135.4726668630001,43.91111888200005],[135.46363365999997,43.894435940000115],[135.47934004000015,43.893988348000114],[135.48462975400005,43.894435940000115],[135.48462975400005,43.88751862200002],[135.480804884,43.87799713700004],[135.49000084700012,43.878648179],[135.51880944100006,43.88751862200002],[135.51880944100006,43.88076406500009],[135.4878849620001,43.83270905200011],[135.47437584699998,43.825506903000175],[135.47250410200016,43.818101304],[135.42929121200004,43.778306382],[135.429535352,43.77130768400012],[135.42579186300017,43.7631696640001],[135.417735222,43.75897858300008],[135.3901473320001,43.75482819200012],[135.3813582690002,43.74746328300013],[135.3750919930001,43.738348700000145],[135.36793053500006,43.729925848],[135.35922285200016,43.722316799000154],[135.35499108200023,43.7194684920001],[135.3396102220001,43.71539948100014],[135.3311466810001,43.716457424],[135.32325280000006,43.716538804],[135.31641686300006,43.71283600500005],[135.30917402400016,43.70677317900005],[135.28541100400005,43.69188060100002],[135.27540123800017,43.68895091400015],[135.25977623800006,43.69375234600007],[135.25635826900003,43.704535223000065],[135.25806725400017,43.716253973000065],[135.25806725400017,43.72370026200004],[135.24935957099999,43.729437567],[135.23560631600017,43.73407623900012],[135.2232365240002,43.73261139500006],[135.21762129000004,43.719956773000106],[135.21021569100006,43.713690497000144],[135.18222089900019,43.71063873900006],[135.18360436300011,43.70319245000009],[135.19605553500006,43.69647858300014],[135.20883222700016,43.69546133000007],[135.22095787900017,43.693019924000126],[135.230723504,43.68211497600005],[135.226817254,43.682196356000034],[135.22486412900017,43.668361721000124],[135.22388756600017,43.64459870000006],[135.21957441499998,43.63495514500006],[135.21021569100006,43.63043854400003],[135.2007755870002,43.62783437700004],[135.196543816,43.624090887000094],[135.17611738400015,43.593329169000114],[135.17212975400017,43.58356354400017],[135.16724694100017,43.566555080000015],[135.16244550900004,43.55857982000005],[135.1539005870001,43.55125560100005],[135.1448673840001,43.546128648000135],[135.13795006600017,43.53949616100005],[135.13526451900012,43.52789948100015],[135.13624108200005,43.52496979400003],[135.1386824880001,43.52309804900007],[135.1408797540001,43.52016836100013],[135.1421004570001,43.51422760600012],[135.139903191,43.50836823100015],[135.13526451900012,43.50560130400011],[135.13062584700018,43.503729559000035],[135.12842858200005,43.500555731000176],[135.1153263680002,43.500677802000055],[135.0561629570001,43.48810455900015],[134.97470136800004,43.45954010600015],[134.9638778000002,43.45246002800012],[134.95639082099999,43.43634674700003],[134.93832441500015,43.426988023000106],[134.89551842500006,43.415228583000115],[134.87354576900017,43.404974677],[134.835703972,43.379706122000144],[134.77027428500017,43.315252997000144],[134.75098717500012,43.305365302000055],[134.7280379570002,43.31256745000009],[134.70289147200006,43.30418528900013],[134.6801863940001,43.288763739],[134.66529381600006,43.27431875200013],[134.65601647200012,43.26723867400007],[134.63363691499998,43.26154205900009],[134.62118574300004,43.25698476800015],[134.61312910200002,43.251125393],[134.5972599620002,43.236029364],[134.58716881600006,43.22898997600011],[134.5600692070001,43.23480866100009],[134.5303654310001,43.22036367400004],[134.47730553500017,43.18183014500012],[134.430430535,43.15790436400009],[134.40943444100017,43.15216705900009],[134.37582441500015,43.13849518400014],[134.35743248800011,43.12555573100015],[134.347911004,43.12156810099999],[134.33790123800023,43.12042877800015],[134.32138105600004,43.127386786000145],[134.3145451180002,43.123480536000145],[134.30591881600006,43.11359284100003],[134.25521894600016,43.09552643400012],[134.24073326900012,43.092474677000105],[134.223887566,43.090806382000025],[134.207855665,43.086330471000124],[134.19369550899998,43.07977936400006],[134.18238366,43.07196686400006],[134.17831464900004,43.06659577],[134.17603600400017,43.05487702000011],[134.17188561300023,43.048041083],[134.16537519600016,43.04433828300016],[134.14795983200005,43.04018789300004],[134.14087975400003,43.0372582050001],[134.129649285,43.024603583000115],[134.12037194100017,43.00897858300014],[134.1084904310002,42.99567291900003],[134.06983483200017,42.985052802000084],[134.04957116000006,42.9732933610001],[133.92676842500018,42.882717190000065],[133.91065514400012,42.87982819200012],[133.89625084700006,42.88491445500016],[133.8713485040001,42.89931875200001],[133.86451256600017,42.90119049700009],[133.85035241000003,42.900702216000084],[133.83961022200006,42.897609768],[133.8184513680002,42.883937893000066],[133.79428144600004,42.87669505400005],[133.7299910820001,42.84544505399999],[133.72396894599999,42.82518138200008],[133.71729576900023,42.816636460000055],[133.70630944100017,42.822455145],[133.67774498800011,42.848822333],[133.671641472,42.85285065300017],[133.64291425900015,42.85382721600014],[133.63363691500004,42.85285065300017],[133.61410566500004,42.84638092700008],[133.60499108200023,42.84625885600009],[133.5933537120002,42.85285065300017],[133.5894474620002,42.842474677000084],[133.58497155000018,42.83563873900006],[133.5791935560002,42.83075592699999],[133.57227623800011,42.82623932500003],[133.5517684250002,42.81875234600007],[133.5455021490001,42.81972890800013],[133.52442467500006,42.82623932500003],[133.51197350400017,42.821722723000065],[133.50766035200016,42.816961981000176],[133.50513756600006,42.811428127000156],[133.49781334700006,42.804429429],[133.48804772200012,42.799953518],[133.46802819100003,42.79319896000008],[133.44434655000012,42.77912018400003],[133.420176629,42.77142975500011],[133.37745201900012,42.76349518400015],[133.31836998800006,42.76581452000003],[133.29859459700003,42.76349518400015],[133.2373966810002,42.74396393400015],[133.22291100400017,42.736232815000065],[133.19369550900004,42.706773179],[133.17774498800011,42.69379303600009],[133.15772545700023,42.68842194200012],[133.0620223320001,42.68842194200012],[133.0376896490002,42.69139232000005],[133.02442467500012,42.6993675800001],[133.01343834700006,42.71035390800012],[132.9963485040001,42.722560940000115],[133.00863691500015,42.72785065300009],[133.02686608200023,42.73965078300007],[133.03842207100013,42.74298737200009],[133.05184980600004,42.74119700700011],[133.06617272200006,42.73737213700009],[133.07667076900012,42.738104559000035],[133.0788680350001,42.74982330900012],[133.06739342500023,42.762844143],[133.04322350400005,42.77960846600003],[132.9963485040001,42.804429429],[133.00660241,42.81549713700012],[133.01050866,42.81875234600007],[132.9897567070001,42.82697174700014],[132.96322675900015,42.826076565000065],[132.9116317070001,42.81875234600007],[132.9004826180001,42.815578518],[132.890391472,42.80849844000012],[132.88746178500017,42.801459052000055],[132.89795983200017,42.798285223],[132.90015709700006,42.79393138200011],[132.88770592500023,42.76349518400015],[132.87533613399998,42.75592682500009],[132.86500084700018,42.74811432500012],[132.85230553500006,42.746486721000096],[132.83301842500006,42.74982330900012],[132.81592858200023,42.75641510600009],[132.80518639400023,42.76581452000003],[132.79151451900012,42.790838934000035],[132.7984318370001,42.80841705900015],[132.7911076180001,42.82050202000006],[132.77540123800023,42.82811107000001],[132.7573348320001,42.83242422100001],[132.766368035,42.85179271000011],[132.77369225400005,42.87506745000003],[132.77442467500023,42.895900783000016],[132.76343834700018,42.908148505000085],[132.73975670700005,42.907171942],[132.7037052740002,42.87872955900018],[132.68165123800011,42.87335846600003],[132.68628991000006,42.86884186400005],[132.691172722,42.86273834800009],[132.69532311300023,42.85968659100008],[132.683197462,42.85569896000011],[132.63721764400012,42.85968659100008],[132.61890709700006,42.85919830900009],[132.60816491000006,42.85683828300013],[132.6001082690001,42.851629950000145],[132.58912194100006,42.842352606000084],[132.57789147200006,42.84039948100015],[132.56470787900017,42.84625885600009],[132.54444420700005,42.85968659100008],[132.51783287900005,42.86595286700005],[132.51050866000006,42.871405341000084],[132.50342858200005,42.88703034100014],[132.50342858200005,42.900091864000146],[132.5058699880001,42.91364166900011],[132.50269616000006,42.92430247600013],[132.48609459700015,42.92861562700013],[132.42831464900016,42.935980536000116],[132.413340691,42.941107489000146],[132.4043888680001,42.94228750200007],[132.3970646490001,42.93935781500015],[132.3952742850001,42.93276601800006],[132.3955998060002,42.92576732000002],[132.39413496200004,42.92177969000012],[132.3663029310002,42.915676174000126],[132.35425866000014,42.910834052000055],[132.34579511800015,42.900702216000084],[132.3501896490002,42.89663320500013],[132.35531660200002,42.887518622000144],[132.36011803500006,42.880804755],[132.35523522200006,42.87506745000003],[132.35352623800023,42.87026601800012],[132.35523522200006,42.865464585000055],[132.36011803500006,42.85968659100008],[132.34839928500006,42.854925848],[132.3256942070001,42.85146719],[132.31836998800011,42.84544505399999],[132.31153405000006,42.84544505399999],[132.289317254,42.882717190000065],[132.2876896490001,42.89044830900014],[132.2945255870002,42.902777411000116],[132.29566491000006,42.917547919000086],[132.2911076180001,42.94912344],[132.29957116000006,42.99713776200018],[132.30128014400023,43.02391185099999],[132.2911076180001,43.044623114],[132.30323326900012,43.053168036000116],[132.304942254,43.064032294000086],[132.29981530000006,43.07550690300006],[132.2911076180001,43.085638739],[132.30746504000004,43.086615302000084],[132.32056725400017,43.094183661000116],[132.3256942070001,43.10626862200003],[132.31836998800011,43.12042877800015],[132.32479902400007,43.122951565000065],[132.33375084700006,43.13019440300009],[132.33961022200018,43.134019273000106],[132.33277428500017,43.13833242400001],[132.32593834700006,43.14085521000011],[132.3274845710001,43.148993231000034],[132.32764733200023,43.17059967700014],[132.3291121750001,43.17499420800011],[132.33936608200023,43.173651434000035],[132.34815514400012,43.17145416900006],[132.356537306,43.17096588700015],[132.36695397200003,43.17499420800011],[132.38168379000015,43.19122955900015],[132.37606855600015,43.204738674000126],[132.3589787120001,43.21552155200014],[132.31714928500017,43.23135000200007],[132.30770918100004,43.23818594],[132.308441602,43.24701569200006],[132.31674238400015,43.25189850500011],[132.34066816500004,43.26154205900009],[132.34579511800015,43.267157294000086],[132.34921308700004,43.279201565],[132.35482832100016,43.28253815300003],[132.35621178500006,43.28595612200006],[132.34579511800015,43.29791901200014],[132.31495201900006,43.31565989800008],[132.30543053500017,43.319037177],[132.28956139400023,43.31256745000009],[132.281993035,43.27850983300006],[132.26050866000017,43.270575262000094],[132.2539982430001,43.26650625200013],[132.24252363400015,43.245510158000016],[132.2359318370001,43.236517645000085],[132.2266544930002,43.22980377800003],[132.1368107430002,43.19163646000008],[132.116465691,43.18866608300006],[132.09595787900017,43.18097565300003],[132.075450066,43.163031317],[132.04420006600006,43.12726471600016],[132.02963300900004,43.11652252800015],[131.9913029310001,43.09585195500013],[131.97201582100016,43.08250560100011],[131.9522404310002,43.07196686400006],[131.92994225400017,43.069566148000106],[131.90723717500023,43.07440827],[131.88648522200003,43.085638739],[131.89625084700018,43.09536367400015],[131.90796959700018,43.10106028900013],[131.917246941,43.10785553600006],[131.92066491000006,43.12042877800015],[131.87094160200004,43.09031810100011],[131.85914147200018,43.085638739],[131.84717858200023,43.08991120000012],[131.849864129,43.10049062700007],[131.87940514400006,43.13739655200011],[131.90015709700018,43.18183014500012],[131.9117130870002,43.19757721600008],[131.92367597700004,43.20783112200003],[131.95858808700004,43.229925848],[131.97803795700023,43.23554108300003],[131.996836785,43.23871491100009],[132.00049889400023,43.244533596000124],[132.00196373800011,43.252183335000055],[132.00660241000006,43.260321356000176],[132.04493248800006,43.28644440300003],[132.05152428500006,43.29791901200014],[132.05201256600006,43.31476471600017],[132.0444442070001,43.32436758000016],[132.03101647200018,43.32514069200006],[132.01400800900004,43.315619208000086],[132.00350996200004,43.29950592700002],[131.99984785199996,43.28408437700007],[131.99203535200004,43.27309804900001],[131.9683537120001,43.270575262000094],[131.9781193370002,43.29205963700004],[131.95679772200018,43.305853583000136],[131.895274285,43.31863027600018],[131.88477623800023,43.317775783000066],[131.85694420700005,43.307318427],[131.84603925900004,43.305365302000055],[131.83204186300023,43.30988190300009],[131.82601972700004,43.31793854400006],[131.82813561300023,43.32640208499999],[131.83863366,43.33270905200011],[131.82667076900006,43.33795807500012],[131.81568444100006,43.33673737200009],[131.80762780000006,43.33095937700013],[131.804535352,43.32208893400018],[131.79932701900012,43.31586334800012],[131.77418053500006,43.30206940300012],[131.7642521490002,43.29169342700011],[131.75635826900023,43.26373932500008],[131.75684655000023,43.242499091000084],[131.75049889400012,43.225287177],[131.72266686300023,43.20978424700017],[131.72266686300023,43.202337958],[131.7417098320002,43.20148346600008],[131.75831139400012,43.19537995000008],[131.763926629,43.18585846600011],[131.74984785200016,43.17499420800011],[131.73072350400017,43.17413971600003],[131.71753991000006,43.18447500200013],[131.70663496200004,43.19684479400014],[131.694672071,43.202337958],[131.68384850400005,43.19928620000009],[131.67953535200004,43.193670966000084],[131.6778263680002,43.18732330900015],[131.6741642590001,43.18183014500012],[131.65113366,43.16962311400006],[131.64698326900017,43.16885000200013],[131.6514591810002,43.15599192900011],[131.66675866000017,43.15688711100002],[131.68409264400006,43.165228583000086],[131.694672071,43.17499420800011],[131.68336022200006,43.148504950000145],[131.66488691500004,43.12518952000014],[131.58676191500004,43.049953518000066],[131.56299889400012,43.03831614800005],[131.56373131600006,43.02383047100001],[131.56763756600006,43.00755442900008],[131.56495201900023,42.99628327000009],[131.54786217500012,42.99310944200003],[131.53296959700006,43.002264716000084],[131.51767011800007,43.00934479400014],[131.4995223320001,42.999986070000105],[131.49195397200006,42.98432038000006],[131.49488366000017,42.970607815000115],[131.49935957100004,42.957098700000145],[131.49610436300006,42.94228750200007],[131.49195397200006,42.94489166900017],[131.47730553500006,42.94196198100015],[131.45508873800006,42.934759833000115],[131.43824303500017,42.93414948100015],[131.4299422540001,42.935044664000046],[131.40552819100006,42.95062897300014],[131.39389082100004,42.945013739000146],[131.387950066,42.930121161],[131.3862410820001,42.914292710000055],[131.40634199300004,42.91006094000012],[131.4107365240002,42.900946356000034],[131.40040123800023,42.87335846600003],[131.45899498800006,42.88442617400007],[131.47193444100017,42.883937893000066],[131.47169030000023,42.87323639500006],[131.4561466810002,42.863836981000034],[131.43637129000004,42.855780341000084],[131.40902754000004,42.8393415390001],[131.37891686300011,42.83112213700009],[131.36573326900023,42.81875234600007],[131.36036217500012,42.80662669500008],[131.35962975400017,42.794256903000026],[131.36361738400015,42.78217194200012],[131.35201726200003,42.77432756700007],[131.30013428500004,42.79327650900011],[131.2731271710002,42.77733134900008],[131.25706912899997,42.75156056500004],[131.246896298,42.73253378000008],[131.23644697300008,42.70664411200006],[131.2496037120002,42.6945661480001],[131.25180097700002,42.69082265800007],[131.26107832100016,42.68805573100012],[131.2632755870001,42.68500397300003],[131.2622990240001,42.68109772300012],[131.25806725400014,42.675238348000065],[131.2570906910001,42.67133209800009],[131.25416100400017,42.668198960000026],[131.24708092500012,42.66730377800012],[131.23267662900005,42.667914130000085],[131.2242130870002,42.66058991100006],[131.21656334700018,42.64419179900007],[131.20901679200009,42.63629456400015],[131.20978388800017,42.62261286900004],[131.20348331800008,42.61906297100001],[131.20118160800004,42.61402459700015],[131.20801004600017,42.60852199400016],[131.22430140500015,42.60492597300005],[131.22873617900007,42.59712517600015],[131.2279702560002,42.59167613500013],[131.23408995100013,42.58885437900006],[131.234047075,42.58726215200015],[131.21804995300025,42.586132080000155],[131.21275056900018,42.58393863500014],[131.22437584700018,42.570624091000084],[131.22155991000014,42.56630424200015],[131.21954721100022,42.554711688000125],[131.21327528599997,42.55139285500014],[131.20375066600016,42.55724372300001],[131.19456024000013,42.55896653100011],[131.185345598,42.55955018400006],[131.17963704800002,42.56400309500019],[131.1709904310002,42.572943427000055],[131.16700280000023,42.57562897300012],[131.16700280000023,42.585394598000065],[131.17115319100017,42.58527252800009],[131.17919650999997,42.59438159300008],[131.18064974500024,42.605205334000075],[131.15849436700003,42.60130537100015],[131.14356530000018,42.61269765800013],[131.12690303800017,42.617256069000106],[131.12741468000002,42.646809776000126],[131.12034658100018,42.66719049100005],[131.10570083600012,42.66834848200013],[131.09288647000008,42.654887733000166],[131.0870270630002,42.64037532800005],[131.07357832100016,42.638861395],[131.03443444100006,42.64520905200011],[130.99488366000017,42.640692450000174],[130.95248044500008,42.62779781400003],[130.93116295700023,42.60691966400019],[130.91431725400005,42.60150788000014],[130.88965905000023,42.59959544499999],[130.8725692070001,42.60394928600009],[130.8325057010001,42.625774662000154],[130.81547842700016,42.634171579],[130.83858708400012,42.64299477900014],[130.86287555900006,42.6408161640001],[130.88948072300005,42.63861172800013],[130.91151298100007,42.61682641200015],[130.93213951900012,42.61835358300014],[130.944590691,42.63117096600016],[130.94971398599998,42.65312261400014],[130.9317811020002,42.65750928300018],[130.89944468500002,42.6546314560001],[130.88152458100015,42.65898795200003],[130.84783268200007,42.661316927000186],[130.8034407350002,42.65115140600001],[130.78698147900016,42.65376356300014],[130.79594714100008,42.66284954500016],[130.83204186300017,42.674058335000055],[130.83700960800016,42.69159188900012],[130.82545691700014,42.699322458],[130.80178597900013,42.696845163000106],[130.78186638600008,42.69028216700012],[130.76929772200018,42.68158600500003],[130.7453489430001,42.68109583000013],[130.73466741000013,42.691689334],[130.72075780200024,42.70002462500009],[130.6935258130001,42.685450345],[130.6566703890002,42.66407951200012],[130.6607889970002,42.64318454300003],[130.68344160200016,42.64354075700011],[130.73292076900012,42.61554596600008],[130.7369083990001,42.60724518400012],[130.7295028000001,42.57916901200009],[130.75464928500014,42.59723541900003],[130.76303144600004,42.59959544499999],[130.77418053500006,42.59682851800012],[130.77808678500006,42.59113190300003],[130.779551629,42.58466217700014],[130.78353925899998,42.57916901200009],[130.84213300900004,42.55853913],[130.85181725400017,42.54779694200006],[130.85499108200023,42.53925202000014],[130.86963951900015,42.53546784100003],[130.87289472700004,42.52765534100003],[130.8702091810002,42.51797109600007],[130.864593946,42.51727936400012],[130.85971113400015,42.52106354400014],[130.85849043100004,42.524562893000144],[130.85059655000018,42.52000560100002],[130.84644616000006,42.52069733300014],[130.843028191,42.519761460000055],[130.83814537900005,42.51023997600005],[130.8383895190001,42.50629303600008],[130.84376061300023,42.493963934000035],[130.84498131600017,42.48631419500001],[130.83871504000004,42.47235748900012],[130.82325280000012,42.46503327000012],[130.8042098320001,42.46234772300015],[130.78663170700005,42.46185944200006],[130.78077233200023,42.45343659100011],[130.76303144600004,42.40037669499999],[130.75275026700015,42.380776589],[130.74319385100003,42.353687070000106],[130.73480510900004,42.337597914000085],[130.70360316000003,42.29524132000012],[130.69996178500006,42.29511139500015],[130.6728813080001,42.31113942500018],[130.66275272600004,42.32057037400013],[130.66027225800013,42.333928732000075],[130.66058231600007,42.359198507000045],[130.6566549070001,42.38325388600008],[130.64580285700012,42.40087554900005],[130.62854292900013,42.41480234800004],[130.6059086510002,42.42061594700011],[130.58740848900007,42.43201060000003],[130.57562626200016,42.445730693000044],[130.55877974500018,42.482705181000185],[130.5547489830001,42.48761444100002],[130.54989139900024,42.49037913100007],[130.54606734300003,42.4952883910001],[130.54451704900012,42.506295472000104],[130.54265669800012,42.510532939000036],[130.5307711190001,42.53048004200014],[130.56756473800024,42.552752584000025],[130.5845146080001,42.568901469000096],[130.58430790200012,42.59889963900015],[130.57190555900016,42.6218181360001],[130.5511316330002,42.64561513300005],[130.5267403560001,42.665768941000024],[130.5038993740001,42.677809551],[130.4743404540002,42.679049785000025],[130.43806359900017,42.675303244000034],[130.40375044800024,42.677551168000136],[130.37966923100012,42.69667144800003],[130.40716109200017,42.73537709600005],[130.49098026600015,42.78082651800009],[130.58647831300019,42.817258403],[130.64911014900022,42.82893727700015],[130.73096561700007,42.82588836700013],[130.73489302600004,42.82449310300014],[130.74801884000019,42.8374897260001],[130.7568038330002,42.853276876000066],[130.76951623600021,42.86580841100009],[130.79432092300019,42.86906402600005],[130.81654178900013,42.86405141200011],[130.85622928900003,42.84976287800011],[130.99244836500012,42.84872935000014],[130.99957971300014,42.85875457800007],[131.0019568290002,42.87330149300011],[131.00877811700016,42.88689239500012],[131.02386763600023,42.89627166800007],[131.03947391800003,42.89800282900005],[131.07399377400017,42.896581726000036],[131.10303592900007,42.910431010000096],[131.09931522600004,42.935442403000096],[131.08277876900016,42.965233867],[131.07430383400006,42.99339752200014],[131.07523400900018,43.019597473000076],[131.07833459500014,43.0318189500001],[131.08546594300017,43.04210256000008],[131.09404423100003,43.04683095300008],[131.11244104000005,43.05186940600014],[131.11988244600005,43.05900075300018],[131.12298303300017,43.06773407000004],[131.12401656100016,43.075356344000014],[131.12660038300024,43.082384339000114],[131.1343518470001,43.089334819000115],[131.1693884680001,43.10780914400014],[131.18396122300024,43.12080576600006],[131.18985233600014,43.13915089900014],[131.1848913980002,43.15633331300002],[131.1749695230001,43.168399761],[131.1672180590002,43.18155141199999],[131.16907841000003,43.201705221000154],[131.1785868740001,43.21738901800002],[131.193056275,43.230799053000155],[131.22550907400014,43.25193471300009],[131.23770471200024,43.26583567400017],[131.24204553300004,43.283767395000055],[131.2424589440002,43.32141367600018],[131.24793664600023,43.34420298200017],[131.2577551680001,43.3557268280001],[131.26964074800006,43.36474436500005],[131.28090621000007,43.38022145600014],[131.28183638600015,43.39314056500017],[131.27780562300015,43.43848663300018],[131.27429162600018,43.45119903600012],[131.26168257700024,43.46383392300008],[131.2528484630001,43.46916859100004],[131.16690800000012,43.521065573000115],[131.16070682800014,43.532770284000016],[131.16566776500017,43.54902252300012],[131.18571822100003,43.57444732700013],[131.19202274600005,43.58863250700007],[131.1907825120002,43.59589304600014],[131.1824109300002,43.61403147400007],[131.18024051900014,43.62302317300011],[131.1814807540001,43.62984446300008],[131.18726851400007,43.64798289000011],[131.1879919850001,43.656664530000064],[131.18540816300006,43.666328024000094],[131.17744999200025,43.68446645100012],[131.17507287600014,43.69376820900005],[131.1749695230001,43.701467998000126],[131.1778634030001,43.72549753800017],[131.17031864400022,43.78110138000006],[131.17279911300002,43.79911061600016],[131.19284956900015,43.86024383500008],[131.21734419800012,43.90848378599999],[131.21837772700007,43.92587290500002],[131.20793908700006,43.959488424000035],[131.20669885300012,43.97478464800009],[131.21290002500018,43.99323313400011],[131.21310673100007,44.006875712000024],[131.21775761000006,44.01607411700003],[131.2353275960002,44.031111959],[131.25155399700012,44.04155059900013],[131.26147587100004,44.04609812400015],[131.2644731040001,44.05421132499999],[131.16515100150008,44.36811981300014],[131.06582889900005,44.68202830100016],[131.02138716700009,44.74688222300007],[131.0075378830002,44.75732086200012],[130.97157108600004,44.7756143190001],[130.93012658700016,44.82496531200009],[130.9334338790001,44.841708476000136],[130.97157108600004,44.85405914400009],[130.99027795500004,44.85416249600003],[131.0082613530001,44.85628123000011],[131.02479781200012,44.862430726000085],[131.03885380100022,44.87457468700008],[131.0420577400001,44.882481181000045],[131.04112756400005,44.89777740500007],[131.0453650320001,44.905425517000154],[131.05156620300025,44.90904286700005],[131.0958012290001,44.91911977100007],[131.11006392400017,44.91953318300009],[131.12360314900016,44.91560577400013],[131.14044966600014,44.906820781000036],[131.15801965400019,44.90170481400004],[131.17651981600014,44.90341013600003],[131.24462935400012,44.92216868100011],[131.2589954030002,44.928163147000035],[131.29992313700015,44.956481832000044],[131.31315230400006,44.96366485599999],[131.3294820560001,44.967643942000066],[131.35035933500015,44.968005677000164],[131.41950240100007,44.95896230100003],[131.43376509700013,44.961287740000145],[131.44296350100004,44.97131296900007],[131.45216190600004,44.98371531200003],[131.4657011310002,44.99322377600011],[131.47148889200017,44.99663442000003],[131.60905155500015,45.08970367400003],[131.61980025300008,45.10365631100002],[131.62238407400017,45.12365509100006],[131.60491744000004,45.14742625000012],[131.6052274990001,45.16463450100009],[131.61514937400003,45.18494334000012],[131.62775842400006,45.19848256500007],[131.64450158700018,45.20644073600015],[131.6669291590001,45.20959299800002],[131.71126753800004,45.208662822000136],[131.72315311800006,45.21532908200005],[131.78526818900005,45.30472930900005],[131.81803104700023,45.33278961200007],[131.85306766800014,45.33759552],[131.87074100800024,45.326330058000124],[131.88045617700018,45.309896952000074],[131.88841434800023,45.29113840700016],[131.9004032800001,45.272896627000094],[131.91456262200015,45.26013254900012],[131.93151249200017,45.248712057000134],[131.94990930200007,45.23972035700008],[131.9688228760002,45.233984274000036],[131.96964969900003,45.233829244],[132.40471358250008,45.1464960735001],[132.83977746600024,45.05916290300003],[132.92121952300025,45.02789866200014],[132.9533622640001,45.02438466400018],[132.96617802000017,45.02888051400011],[132.99263635200015,45.04846588200003],[133.0238489180001,45.05833608000002],[133.0496871340001,45.08174550400015],[133.0733549400002,45.09063385000009],[133.098779745,45.10779042600013],[133.11541955600015,45.12303497300008],[133.1215173750002,45.13125152600012],[133.1252380780002,45.14132843100005],[133.12720178300006,45.155384420000175],[133.12069055200007,45.18344472300002],[133.1065312100002,45.21470896400008],[133.0975395100002,45.243544413000116],[133.10673791500008,45.264628398000134],[133.10188033100016,45.287210999000095],[133.12720178300006,45.385086161000075],[133.12875207500016,45.40275950199999],[133.13319624900018,45.41960601900017],[133.14022424400017,45.435419007000164],[133.17980839100014,45.49381337500013],[133.18921350200017,45.50414866200005],[133.2021326090002,45.511280009000174],[133.2408899330002,45.52326894200003],[133.2716890870001,45.52843658500014],[133.2988708900002,45.542079163000054],[133.33029016200013,45.54926218700008],[133.3625362550001,45.56791737900006],[133.37483524600012,45.57308502200006],[133.4134892180001,45.573343405000124],[133.4251680910002,45.58042307500007],[133.41514286300017,45.60042185499999],[133.42764856000016,45.61525299100013],[133.44201460800016,45.6206273400001],[133.45844771400007,45.62264272100013],[133.47725793500015,45.62770701100011],[133.47178023300015,45.632461243000094],[133.46216841700007,45.64403676400006],[133.45669071500006,45.648790995000056],[133.4828389900001,45.66289866200015],[133.49152063000022,45.67338897800012],[133.4877999270001,45.686669820000034],[133.47663781800017,45.69359446200012],[133.45162642400018,45.69917551700003],[133.44304813700012,45.70966583300016],[133.47085005700004,45.72888946600001],[133.48490604700012,45.768473613000154],[133.51136438100005,45.778550517],[133.50340621000024,45.78764556900016],[133.48376916600003,45.796585592],[133.47725793500015,45.805835673],[133.47725793500015,45.82009836900009],[133.48490604700012,45.82841827400013],[133.49400109900003,45.83332753500018],[133.49834191900018,45.837203268000124],[133.50268273900016,45.86200795500015],[133.51436161300015,45.87926788400016],[133.53162154100013,45.888156230000064],[133.55229211500014,45.888414612000055],[133.5591134030001,45.885210673000174],[133.56407434100007,45.88055979400012],[133.5700688070002,45.87642568000008],[133.5796806230001,45.874772034000145],[133.58588179500018,45.87632232700015],[133.58608850200014,45.87983632500011],[133.58443485500018,45.88412546900018],[133.58650191300015,45.888414612000055],[133.60303837100005,45.898646546000016],[133.6061389570002,45.90510610000008],[133.60696578000002,45.91947214800008],[133.6100663660002,45.9298074340001],[133.6176111250002,45.93626698800013],[133.62773970600014,45.93776560500005],[133.64985721900013,45.92784373000016],[133.6581254480001,45.93450999000008],[133.69481571500015,46.02277333600016],[133.72003381400012,46.06375274700018],[133.7193103440002,46.07930735300003],[133.69636600800015,46.1150157680001],[133.68737430900015,46.141835836],[133.69874312400023,46.14901886000014],[133.72003381400012,46.15020741799999],[133.74101444500005,46.15904408800016],[133.766025839,46.17795766200011],[133.77512089000018,46.186690979],[133.7817354740001,46.19671620700002],[133.78648970600008,46.20668975900013],[133.79351770100018,46.21428619400008],[133.80623010300022,46.21738678000004],[133.81294803900008,46.21418284100015],[133.8212162690002,46.20012685200014],[133.83010461500012,46.19687123700005],[133.83661584500018,46.20043691000002],[133.85284224500012,46.21754180900017],[133.8609037690001,46.22358795200002],[133.8553227140001,46.236558737000124],[133.86958540900005,46.244516907],[133.89004927600004,46.25082143200002],[133.9024516200001,46.25898630800013],[133.90193485600005,46.278054912000115],[133.8940800380001,46.291335754000116],[133.893769979,46.30187774700009],[133.91599084500015,46.31298818],[133.90699914600012,46.32247080500018],[133.89635380100012,46.32719919900016],[133.88519169200018,46.326579082000094],[133.87444299400025,46.31978363100013],[133.86338423700025,46.33929148400016],[133.88085087100004,46.353657532000156],[133.92601607300017,46.37130503400006],[133.93387089100008,46.39076121100014],[133.92146854700016,46.410139872000016],[133.9002812100001,46.426572978000145],[133.88188440000016,46.43711497000014],[133.87041223100005,46.44047393800004],[133.86152388500008,46.44104237900011],[133.8543925380002,46.44465972900017],[133.84777795500023,46.456984558000116],[133.84581425000016,46.470652975000135],[133.84932824800015,46.48029063000014],[133.89190962700005,46.528969828000086],[133.89635380100012,46.538194072000074],[133.8988342700001,46.563257142],[133.9024516200001,46.57364410400011],[133.92033166600007,46.59033559200016],[133.9673572190002,46.611187033000036],[133.98802779200005,46.625165507000034],[133.9984976210001,46.637704225],[134.00528772000018,46.64583608000005],[134.01479618300016,46.665033874000144],[134.0258549400002,46.71081919300009],[134.04177128200004,46.75270294200008],[134.04466516200003,46.772004090000124],[134.03588016800015,46.789599915],[134.0214107670001,46.80613637300008],[134.01665653500012,46.8194688920001],[134.02048059100005,46.83404164600007],[134.06275191300014,46.90685374000016],[134.06698938000002,46.92680084300018],[134.06698938000002,46.967780253000015],[134.0691597900001,46.98124196400006],[134.07412072800005,46.98814076800014],[134.08083866400014,46.99268829400007],[134.08734989400003,46.99881195100015],[134.11422164000012,47.05581105600014],[134.12424686700015,47.07051300100012],[134.14574426300018,47.081184184000115],[134.19711063600013,47.08516326900012],[134.2171610930001,47.09443918900003],[134.2272896730002,47.11774526000006],[134.21623091700022,47.13766652400006],[134.1987642830001,47.15554657000003],[134.18977258300006,47.172935689000056],[134.19556034400003,47.193709616000106],[134.19721398900018,47.20533681300016],[134.19318322800007,47.21047861700005],[134.1864652920002,47.21370839500004],[134.16837854100007,47.230580749000026],[134.16186731000005,47.238435568000156],[134.15411584500023,47.257891744000126],[134.16000695900007,47.27163767500018],[134.1701355390002,47.28680470800001],[134.17550988800014,47.3104208380001],[134.18357141100014,47.327499899000046],[134.20300175000014,47.338429464000036],[134.2450663660001,47.355095113000125],[134.25746870900005,47.36723907500006],[134.27948287000012,47.39780568500005],[134.29281539000024,47.409717103],[134.31286584500018,47.420129904000035],[134.33260624200014,47.42635691400001],[134.35400028500024,47.42935414700004],[134.37818485600022,47.43018097000005],[134.3890369070002,47.43276479100014],[134.40185266100016,47.43736399300009],[134.41497847500014,47.439224345000106],[134.4365792240002,47.42981923500015],[134.4719259030002,47.428630676000026],[134.48463830600016,47.43018097000005],[134.50045129400016,47.43891428700012],[134.53528121000014,47.46557932600017],[134.5568819590001,47.4711862190001],[134.5606026620002,47.481805725000086],[134.6041142180002,47.527720236000064],[134.61496626800025,47.536634420000084],[134.62426802600012,47.549631043000105],[134.66819299400007,47.573996481000115],[134.68266239500016,47.58784576400007],[134.68617639200014,47.608852234],[134.68669315600008,47.63115061500015],[134.69289432900015,47.64890146900008],[134.71397831300018,47.65613617000004],[134.7254504810002,47.66324167900008],[134.7725793870002,47.71073232100017],[134.7651379800001,47.718173727000085],[134.76978885900022,47.741014710000016],[134.69651167900022,47.79506825800008],[134.6764612230002,47.82431711900013],[134.67408410700014,47.840440166000015],[134.66757287700008,47.864676412],[134.6577543540001,47.88669057200009],[134.64576542200015,47.89630238900009],[134.6227177330001,47.90022979800007],[134.59904992700015,47.9106942750001],[134.58768111200007,47.92591298400005],[134.6013236910001,47.94412892700011],[134.56690718600012,47.98549591100014],[134.55936242700005,48.00952545200006],[134.5672172450002,48.04037628200013],[134.58644087700023,48.061150208000086],[134.64793583200003,48.10218129500005],[134.66271529200003,48.107969056000016],[134.68297245300008,48.13551259400001],[134.68741662600016,48.219848531000096],[134.7030229090001,48.252559713],[134.71873254400018,48.26341176400014],[134.70085249900004,48.261525574000025],[134.66116499900014,48.26697743700011],[134.61134891800012,48.28542592400014],[134.56949100800003,48.315527446000104],[134.54261926300003,48.35730784100014],[134.52587609900016,48.348987936000086],[134.50820275900017,48.34258005800014],[134.48980594900016,48.33916941400003],[134.47130578700015,48.33989288300005],[134.4531156830001,48.344182027],[134.40547001200017,48.37033030200008],[134.38634973200024,48.38133738300009],[134.36712609900022,48.37704823900013],[134.2062056890002,48.359659119000085],[134.11608199100013,48.33519032800014],[134.0571708580002,48.32718048200017],[134.04063440000013,48.32247792600002],[134.02482141100018,48.31506235799999],[133.98244673700012,48.28516754200013],[133.96642704300015,48.27865631100009],[133.93697147700007,48.27328196200013],[133.87754357900022,48.27529734400018],[133.86762170400013,48.27431549100011],[133.8495349530002,48.269302877000044],[133.81480839000005,48.255117696000084],[133.79661828600004,48.25059600800007],[133.73791386000008,48.251086935],[133.72127404800008,48.244756572000156],[133.7077348230001,48.23165659600012],[133.68551395700004,48.202071838000094],[133.6702177330001,48.18997955300009],[133.65450809700022,48.18390757300013],[133.62143518100012,48.17726715100004],[133.6055188400002,48.1716344200001],[133.59383996600005,48.16419301399999],[133.58484826700018,48.15535634399999],[133.57782027200008,48.14502105700008],[133.5720325120001,48.132773743000044],[133.5599402270001,48.11329172800005],[133.5440238860002,48.10150950100014],[133.52438684100017,48.095437521000015],[133.46371871000017,48.089520569000015],[133.45079960100017,48.09138092100001],[133.41317915900007,48.10295644100013],[133.39622928900022,48.10592783700015],[133.3794861250001,48.10631541000008],[133.32367557800004,48.100114237000085],[133.30145471300008,48.10127695699999],[133.29070601500015,48.104403381000125],[133.2727226160001,48.115152079000055],[133.26280074100015,48.11944122300004],[133.2237333580001,48.12597829300002],[133.1851827390001,48.124815572999985],[133.09195845600007,48.106780497],[133.07542199700018,48.10091522200009],[133.06095259600013,48.09184600900012],[133.05103072100022,48.078539327000115],[133.0475167240002,48.07164052300014],[133.04400272700005,48.06621449800015],[133.03935184800017,48.061511943000184],[133.03284061700012,48.056757711],[133.0246757410001,48.05244272900001],[132.94075321400018,48.02670786600014],[132.94033980300017,48.02257375100011],[132.86478885900024,47.985650940000156],[132.85362675000013,47.97614247700001],[132.83336958800012,47.95159617100002],[132.82065718600015,47.942371928000014],[132.80587772700014,47.93619659400004],[132.78965132700003,47.932734274],[132.77487186700003,47.93376780199999],[132.76257287700017,47.9393746950001],[132.73818160000022,47.9541283170001],[132.7224719650001,47.958934225000014],[132.70572880100022,47.96038116400002],[132.6890889900001,47.957693990000095],[132.67461958900014,47.95061431900014],[132.66810835800018,47.94513661700007],[132.66314742000023,47.938677063000014],[132.6603568930001,47.931339010000116],[132.66087365700005,47.92301910400006],[132.6640775960001,47.91583608100002],[132.66810835800018,47.909324850000026],[132.6714156500001,47.902503560000085],[132.67234582600022,47.89444203700002],[132.66800500500008,47.881316224000116],[132.65880660100018,47.869818218000106],[132.60744022700013,47.827624410000126],[132.58139530400015,47.80070098900001],[132.5764343670002,47.794241435000075],[132.57385054500014,47.788350322000085],[132.57364384000013,47.78222666400002],[132.58077518800013,47.76483754499999],[132.5823254800001,47.756130066000125],[132.58036177600013,47.747991028000015],[132.57416060400018,47.73959360800002],[132.55669397000023,47.723496399000155],[132.54718550700014,47.716778463000125],[132.5364368090002,47.711068217000054],[132.5246545820001,47.7075283810001],[132.47576867700005,47.70675323500011],[132.4532377530002,47.710525615000115],[132.40063114500012,47.729800924000145],[132.36652469900017,47.73533030200015],[132.3324182540001,47.73651886],[132.2644120690002,47.72884491000009],[132.2507694910001,47.725356751000064],[132.2021936450001,47.700500386],[132.18896447800003,47.69564280200008],[132.16167932100018,47.690010071000145],[132.11703088400017,47.68944163000002],[132.08922896300012,47.69476430300013],[132.02535689300024,47.69786488900008],[131.96654911400014,47.690010071000145],[131.95735070800018,47.686935323000014],[131.93295943300015,47.672233379000104],[131.9244844980002,47.668926087000116],[131.91404585800004,47.66763417600008],[131.90350386600008,47.66809926400001],[131.89430546100007,47.67001129200012],[131.86484989400006,47.68156097400005],[131.85461796100017,47.68406728200013],[131.8359110920001,47.68453237000007],[131.79901412000007,47.679364726000145],[131.7804106040002,47.679106344],[131.7029993090001,47.69615956700012],[131.6835689700001,47.694609274000086],[131.6306523030001,47.66685902900015],[131.62166060500024,47.66381012000012],[131.61246219900025,47.66200144500014],[131.60326379400018,47.66153635700011],[131.59396203700024,47.662311503000026],[131.58476363200023,47.664688619000074],[131.5774255780002,47.66856435200013],[131.53794478400013,47.70321339900012],[131.50776574700004,47.72153269400012],[131.47500288900014,47.734477641000026],[131.44089644400006,47.74116973900006],[131.41836552000015,47.74261667900005],[131.21010949700016,47.70920786500007],[131.1672180590002,47.697141419],[131.12918420400015,47.68122507800017],[131.1038627530002,47.6765483600001],[131.0843290610001,47.67512725900009],[131.04412479700014,47.67722015400007],[131.0233508710002,47.68228444500015],[130.9834566650001,47.70003529899999],[130.96567997300022,47.703936870000135],[130.94180546100014,47.71796702100015],[130.93829146400012,47.751091614000146],[130.94232222500003,47.78982310000008],[130.94170210800021,47.82059641500002],[130.9069755460001,47.88426178000013],[130.85736617100008,47.927773336000044],[130.68238977100017,48.050349834000066],[130.6747416590001,48.063940735000145],[130.67091760300016,48.08657501200009],[130.66481978400012,48.102052104],[130.66337284400018,48.11644399000003],[130.6747416590001,48.135926006000105],[130.70729781100013,48.16336619100015],[130.72951867700024,48.17796478300012],[130.7464685470001,48.18437266100007],[130.7527730720001,48.18961781900002],[130.76362512300014,48.225274556999985],[130.76889611800007,48.236746725],[130.773857056,48.24418813100011],[130.81943566900011,48.28188608800015],[130.82398319500024,48.294159241],[130.82512007700015,48.31777537100011],[130.82212284300013,48.33376922600014],[130.81447473200012,48.33997039900005],[130.80341597500015,48.342735087],[130.79029016100017,48.34821279],[130.7796448160001,48.356377665000096],[130.7737537030001,48.36423248300004],[130.76362512300014,48.38296519000012],[130.74326460800003,48.41159393400001],[130.73830367100007,48.42980987600005],[130.7464685470001,48.447793275000045],[130.75959436100007,48.46792124500003],[130.7589742430001,48.48572377500015],[130.7442981370002,48.497325135000025],[130.71587609900013,48.499056295000074],[130.63929162700006,48.47724884100013],[130.62637251800007,48.48226145500011],[130.6243054610001,48.488359274000075],[130.61572717300024,48.50809967100004],[130.61345341000006,48.51946848600012],[130.61479699800012,48.53016550700012],[130.62079146300013,48.549311626000026],[130.62017134600015,48.56049957300017],[130.6076656500001,48.57672597300008],[130.5863749600001,48.583443909000025],[130.56239709500005,48.58814646399999],[130.54079634600012,48.59835256000015],[130.5297375900001,48.61625844300012],[130.53325158700014,48.63579213500013],[130.6278194580002,48.79604075100015],[130.66668013600008,48.84146433500011],[130.67649865800016,48.85743235300005],[130.67432824800008,48.87081654899999],[130.65066044100016,48.876397604000104],[130.62528640000005,48.87435952800005],[130.62492557800024,48.87433054600013],[130.56487756400023,48.85588206000013],[130.5408996990002,48.853453268000166],[130.51165083900017,48.855520325000114],[130.48663944500018,48.86368520200013],[130.47620080600015,48.87949819000015],[130.4653487560001,48.891332093000145],[130.43971724500014,48.896499736000166],[130.38680057800016,48.89629303000011],[130.33812137900023,48.88533762600003],[130.2935762940001,48.87014475500011],[130.2493412680001,48.86451202400015],[130.20179895100006,48.88259877500009],[130.03746789600015,48.97199900300008],[129.9968502200002,49.002384746000025],[129.97421594300025,49.015148825],[129.92646692000008,49.025690816000164],[129.9134444580002,49.03954010000002],[129.91168745900006,49.05928049700018],[129.92067915900012,49.08186309900013],[129.88316206900012,49.099794821],[129.8624914960001,49.10651275600012],[129.84151086400018,49.10919993100005],[129.84543827300016,49.15405507400014],[129.84151086400018,49.16718088800012],[129.8246643470002,49.17415720600009],[129.7759851490001,49.17756785100012],[129.75562463400016,49.18428578700015],[129.74177535100003,49.19570627800006],[129.73753788300016,49.20547312400011],[129.73505741400018,49.23890777600009],[129.7111829020001,49.27415110300008],[129.66922163900009,49.27916371700003],[129.6191988530002,49.274254456],[129.5717598890001,49.27983551000001],[129.55181278500018,49.29048085600003],[129.5389970300001,49.30371002200009],[129.53207238800022,49.321538391000146],[129.5302120360001,49.36933909100004],[129.52773156800006,49.38484202100015],[129.51967004400015,49.39708933600017],[129.50241011600016,49.41078359],[129.48060266200005,49.42127390600014],[129.45507450400012,49.427268372000164],[129.40339807200016,49.430679017],[129.37869673700007,49.42504628600007],[129.37146203600017,49.41057688500014],[129.37321903500006,49.36985585600017],[129.36205692600012,49.349805400000136],[129.3409729410001,49.341175436000086],[129.31606490100003,49.34412099300009],[129.27234663900006,49.37528188100005],[129.24557824700017,49.38592722600005],[129.21787968000015,49.39078481100016],[129.19390181500015,49.389699605000075],[129.17116418500015,49.38034617100011],[129.13602421100018,49.35414622000012],[129.1153536380002,49.34877187100015],[129.0878617760002,49.352079163000056],[129.06688114500005,49.36163930300013],[129.0505513920002,49.37667714500013],[129.01458459500012,49.431092428000014],[128.99815149000014,49.44127268500007],[128.94709517400017,49.449540914000025],[128.9019299730002,49.47171010400014],[128.87919234200004,49.47971995100012],[128.85356083200014,49.48054677400013],[128.8098425710002,49.46871287000012],[128.78658817600015,49.46545725500006],[128.76012984200017,49.47088328100013],[128.75020796700008,49.48452585800014],[128.75413537600005,49.50245758099999],[128.76932824700015,49.520699361000155],[128.7792501220001,49.52509185900006],[128.79041223200002,49.5271072390001],[128.79950728400016,49.531861471000084],[128.80343469200014,49.54426381500015],[128.8032279870001,49.55516754200012],[128.80167769400018,49.56514109300004],[128.79692346200008,49.572479146000134],[128.78658817600015,49.575321350000095],[128.75950972500019,49.57780181900007],[128.7341882740002,49.584416402999985],[128.68674930900013,49.60322662400007],[128.67186649600006,49.61144317700003],[128.66618208900016,49.60947947199999],[128.6351762290002,49.57816355400017],[128.6286649980002,49.575321350000095],[128.55125370300013,49.58844716400007],[128.38351200400012,49.5793521130001],[128.37203983600014,49.575321350000095],[128.3650118410002,49.56974029600009],[128.3528162040001,49.55449574900013],[128.3447546800002,49.54798451800018],[128.32036340400018,49.54478057900009],[128.2678601480002,49.558784893],[128.24543257700023,49.551395162000105],[128.2250720630001,49.5418350230001],[128.19830367000023,49.538992819000114],[128.09247033800008,49.54157664000003],[128.06714888600018,49.54669260700002],[128.04689172400015,49.558268128000165],[128.01247522000014,49.58741363500009],[127.99159794100015,49.59873077400006],[127.9679301350002,49.60322662400007],[127.95547611600014,49.60301991800013],[127.94793135600011,49.60121124300004],[127.94080000800007,49.5958885700001],[127.93015466400007,49.58519154900007],[127.9206978760001,49.58110911100009],[127.90731368100015,49.58023061200013],[127.85465539500015,49.584881491000104],[127.83088423700009,49.59387318900003],[127.8096452240002,49.60710235600014],[127.78990482600008,49.62307037400008],[127.77000940000006,49.633870748],[127.72200199400011,49.64859853100002],[127.70360518500004,49.66063914100009],[127.689962606,49.68146474200013],[127.6869653730001,49.69887970000018],[127.68629358000011,49.71681142200004],[127.6799890550001,49.73918731800002],[127.64428064000016,49.76714426700012],[127.53865401200021,49.7899335740001],[127.50811324100019,49.8223346970001],[127.50671797700014,49.84429718100007],[127.51162723800016,49.869050192000095],[127.52087732000014,49.891787822000175],[127.53224613500007,49.90765248600009],[127.53400313300014,49.92248362200002],[127.52160079000024,49.94119049100011],[127.49441898600016,49.9731782030001],[127.48666752200009,50.02562978200014],[127.5066146240001,50.06345693000004],[127.57017663600006,50.130222880000176],[127.58061527600002,50.1491364540001],[127.58671309500006,50.16717153000012],[127.58981368000009,50.18639516300014],[127.59064050300013,50.20871938100002],[127.57839318800009,50.22055328400001],[127.40481205300013,50.275950419000154],[127.35463423700011,50.29863637400002],[127.33065637200015,50.32819529200007],[127.3318449300002,50.34018422500013],[127.33752933800022,50.352689921000106],[127.34574589000019,50.36442047200002],[127.35478926600003,50.37346384700008],[127.35871667500011,50.38131866500002],[127.35964685100024,50.39289418600005],[127.35850997000014,50.415115051000086],[127.34915653500009,50.426173808],[127.30466312700011,50.45144358400016],[127.28895349200015,50.46601633700011],[127.30264774600006,50.47759185900016],[127.31029585800016,50.488392233000084],[127.32362837800015,50.51376536100018],[127.33370528200012,50.52503082300014],[127.35685632300019,50.54461619100006],[127.36481449400017,50.55474477200012],[127.36708825800015,50.57779246000008],[127.35871667500011,50.605025940000175],[127.3439888920001,50.62776357000014],[127.32709069800003,50.63727203400005],[127.29494795800015,50.666417542000076],[127.28895349200015,50.67515085900014],[127.28709314000005,50.68202382400001],[127.28383752500017,50.68827667300009],[127.28228723200012,50.69483958000008],[127.28580122900009,50.702487692000076],[127.2898836680001,50.70837880500006],[127.29324263600019,50.715355123000066],[127.29551639900005,50.72279652900009],[127.29644657500009,50.73008290700006],[127.287351522,50.751011862000055],[127.26621586100018,50.7640859990001],[127.24110111500025,50.77467966700008],[127.22074060100013,50.78816721600004],[127.14425948100013,50.90350901300017],[127.11077315300022,50.93151763999999],[127.04710778800015,50.96722605399999],[127.03232832900014,50.97244537400012],[126.98116866100023,51.027687480000125],[126.94644209900017,51.04833221500002],[126.9317659920001,51.063783468000125],[126.92582320200009,51.086004334000066],[126.92298099800021,51.107915142000124],[126.90959680200008,51.14600067200016],[126.9054110110002,51.16426829100014],[126.90380904200012,51.19338796000015],[126.90515262900024,51.208115743000135],[126.90892500900011,51.221629131000114],[126.91631473800012,51.23276540200014],[126.94711389200009,51.258138530000124],[126.96793949500014,51.28154795400009],[126.97775801700018,51.29655995700007],[126.98116866100023,51.30885894800012],[126.97217696100009,51.324000143000134],[126.95460697500019,51.32958119800004],[126.93445316600005,51.328754375000024],[126.91729659100017,51.32472361300013],[126.9082532150002,51.321235453000085],[126.8993648680001,51.31650706],[126.89135502100011,51.31051259400006],[126.88530887900016,51.30289032000009],[126.88484379100024,51.295629781000045],[126.88918461100005,51.2893252570001],[126.89290531400003,51.28201304100012],[126.89068322800014,51.27149688700017],[126.86990930200001,51.251730652],[126.84587976100023,51.251472270000036],[126.82371057200022,51.265554098000145],[126.80898278900021,51.289066875000124],[126.8073291420001,51.30810964000001],[126.81415043200005,51.32493031899999],[126.82701786300005,51.338986308000116],[126.8434509690002,51.34937327100012],[126.86086592700022,51.35392079700016],[126.88029626500011,51.35622039800007],[126.8975045170001,51.36195648200005],[126.90892500900011,51.377020162000136],[126.90944177300004,51.39110199000008],[126.90194869000017,51.40099802700014],[126.8901147870001,51.40701833200007],[126.8768856200002,51.40988637300016],[126.82593265800014,51.41208262200016],[126.80030114800016,51.41895558700004],[126.78929406800009,51.43580210400002],[126.79270471200012,51.45905649800012],[126.80159305800012,51.477220765000155],[126.83037683200016,51.50812327100006],[126.80743249600012,51.53421986900007],[126.77559981300023,51.54576955200018],[126.70056563400018,51.562719422],[126.67689782700015,51.57659454300007],[126.67514082900007,51.58837677000015],[126.70397627800011,51.61359486900004],[126.72371667500025,51.63589325000008],[126.72454349800003,51.6495875050001],[126.7157585040002,51.66317840699999],[126.7073352460002,51.68563181600008],[126.71074589100026,51.686019389000094],[126.71787723900009,51.69092865000012],[126.72485355700009,51.69754323400004],[126.7279541430001,51.70304677400012],[126.72557702700017,51.708731182000164],[126.7157585040002,51.71749033600004],[126.7135880950001,51.723174744000104],[126.66242842600005,51.73343251600009],[126.64790734900018,51.741261496],[126.44605920400012,51.98253875700006],[126.43928959200011,51.99786082000013],[126.44735111500007,52.018789775000116],[126.46709151200005,52.031657207000094],[126.49158614200009,52.038788554000135],[126.51442712500004,52.04253509600006],[126.51442712500004,52.04871042900014],[126.51980147300017,52.061267802000046],[126.55132409700005,52.112970073],[126.55597497600009,52.130643412000026],[126.53117028800015,52.15265757200008],[126.4938082280001,52.16126169800013],[126.45329390500011,52.165628358],[126.35071618700013,52.191699117],[126.33283614100016,52.193378601000134],[126.3167130950001,52.19976064100008],[126.3093233650001,52.21386830700011],[126.31221724500007,52.22795013400004],[126.39205733300017,52.26435618100014],[126.43928959200011,52.275285747],[126.42120284000018,52.287300517000155],[126.34441166300022,52.30262257900013],[126.3157312420001,52.31621348100013],[126.34430830900018,52.35758046500016],[126.35071618700013,52.37690745100012],[126.34368819200019,52.391376852000136],[126.31268233300003,52.41742177300004],[126.2961975510001,52.435198466000045],[126.2889628500002,52.450029603000175],[126.2759920660002,52.463284608],[126.24679488100016,52.46584259100008],[126.2167708750002,52.46475738600019],[126.20033776900007,52.467082825000105],[126.20064782700014,52.4865390020001],[126.2104663490002,52.51142120400006],[126.21232670100012,52.53304779100013],[126.17036543800012,52.54759470700019],[126.08277388500014,52.593354187000116],[126.06861454300015,52.59531789200015],[126.0625167240001,52.58717885400012],[126.05910607900009,52.575499980000174],[126.05078617400012,52.5711849980001],[126.03952071200014,52.569660544],[126.02804854400014,52.56637909000009],[126.00923832300022,52.56839447100005],[125.99084151200023,52.58642954500014],[125.97730228700006,52.61076914500016],[125.97316817300022,52.6315689090001],[125.98277998900008,52.65304046700014],[126.00257206300013,52.66549448700012],[126.02768680800015,52.67117889400007],[126.05264652600013,52.672496644000134],[126.06861454300015,52.679886373000144],[126.06194828300025,52.69662953699999],[126.0351282150002,52.727118633000075],[126.04902917600023,52.73709218300017],[126.06603072100009,52.744171855],[126.10406457600018,52.754455465000014],[126.08804488100023,52.77541025800009],[126.06670251500023,52.783187562000094],[126.0178166100001,52.78238657700008],[126.00748132400017,52.77866587400017],[125.98526045800021,52.76453237000013],[125.97694055200016,52.76499745800005],[125.86743819200004,52.84935923300018],[125.86103031500026,52.85602549200008],[125.85694787700005,52.86431956000014],[125.8575163170001,52.87442230300009],[125.8618571370001,52.881450297000114],[125.86371748900005,52.88858164500014],[125.85694787700005,52.899046123000076],[125.83736250800015,52.90672007300016],[125.7364901120002,52.895790507000086],[125.69173832200023,52.88129526800016],[125.66869063300012,52.87796213800006],[125.64646976800016,52.884886780000144],[125.64708988500016,52.90090647400008],[125.6609391690001,52.919354960000085],[125.67887089100017,52.93323008200015],[125.68858606000012,52.936459860000134],[125.71106530800003,52.941214092000116],[125.71985030200018,52.94630422000004],[125.72429447400012,52.95276377400007],[125.73354455600023,52.98165090000013],[125.67861250800004,53.00568044000006],[125.65019047100017,53.023379619000146],[125.63799483300025,53.04614308700015],[125.62135502200023,53.062136943],[125.58404463700012,53.05890716600011],[125.52130944900009,53.042422384000034],[125.49950199400014,53.050613099000074],[125.4765059820002,53.0835051480001],[125.45640385000003,53.0908948780001],[125.42808516500023,53.09469309500004],[125.12743168100016,53.20654673300014],[125.07368819200022,53.212205303000175],[125.0194279380001,53.21073252400008],[124.91917566000009,53.193937683000016],[124.89767826400012,53.185514425000015],[124.88041833500016,53.17251780200009],[124.87917810100011,53.15386261100012],[124.89178715100005,53.134251404000096],[124.89623132400013,53.11766326999999],[124.8701347250002,53.10799977600006],[124.84812056500007,53.11368418400009],[124.82202396700009,53.14724802700012],[124.80135339400024,53.155154521000085],[124.74729984600017,53.14771311500014],[124.72016971900008,53.14882415800007],[124.69825891200004,53.1626476040001],[124.69557173700011,53.16980478900014],[124.69686364800022,53.17634185900012],[124.69639856000006,53.18375742600013],[124.68828536000002,53.193601787000105],[124.67867354400013,53.19933787000018],[124.65159509300015,53.208768820000145],[124.64022627800007,53.21034495100015],[124.52819177300013,53.21034495100015],[124.50049320500003,53.21367808000015],[124.45393273900007,53.22819915800004],[124.40819909700022,53.23569224100005],[124.38370446800016,53.24613088000008],[124.35993330900013,53.2594633990001],[124.34251835200011,53.272485860000145],[124.3258268640002,53.30599802700005],[124.32138269100012,53.309770406000084],[124.30474288000013,53.32904571600004],[124.29342574100022,53.35129242000006],[124.27539066600005,53.36470245400001],[124.25306644700018,53.37550282800014],[124.23270593300005,53.3816523230001],[124.20877974500016,53.38268585200008],[124.18221805900012,53.37855173800007],[124.15777510600016,53.370025126000044],[124.14025679600005,53.35780365000012],[124.12180830900003,53.352687684000145],[124.10025923700006,53.363358867000144],[124.06889164200005,53.38961049400016],[124.05566247600015,53.39488149],[124.02992761300007,53.399945781000085],[124.01737023900013,53.4070254520001],[124.01008386300022,53.41467356400009],[123.98972334900022,53.441493632000075],[123.97055139200019,53.455187887000086],[123.87655196200008,53.4886742150001],[123.8501969810002,53.49497874000009],[123.73216801000015,53.503763733000184],[123.70178226800019,53.510068258],[123.67775272700023,53.51999013300009],[123.6395638430001,53.551254374000095],[123.61429406800013,53.56334666],[123.59191817300015,53.55786895800018],[123.56091231300005,53.52417592400003],[123.54189538600022,53.5140990200001],[123.51957116700017,53.51999013300009],[123.5325936290002,53.53249583000008],[123.53936324100006,53.53704335600004],[123.54747644100016,53.540505676000166],[123.53528080300022,53.55461334200011],[123.51440352500016,53.56241648400011],[123.49476648000014,53.56009104499999],[123.48608483900009,53.543916321],[123.48551639800021,53.52598460000003],[123.48153731300023,53.51807810500015],[123.47140873300012,53.51900828100004],[123.4316695560001,53.535803122000104],[123.41993900600019,53.53854197300013],[123.38025150600012,53.542831116000016],[123.36774580900013,53.545828349000104],[123.34025394700015,53.56143463200005],[123.30955814700022,53.5674807750001],[123.27731205300009,53.56944447900003],[123.25255904200004,53.567790833000075],[123.23473067300009,53.56034942700016],[123.20325972500014,53.53828359000006],[123.18005700700022,53.530480449000045],[123.16424401900021,53.51637278300002],[123.15359867400004,53.51311716700003],[123.00254846300017,53.50732940700006],[122.85966312700016,53.47394643200009],[122.47121138500016,53.464748027],[122.42516768400006,53.45244903600014],[122.40160323100022,53.45095041900014],[122.37969242400007,53.46164744100004],[122.35809167500011,53.47957916300011],[122.33783451400008,53.49130971300009],[122.31675052900007,53.496012269000076],[122.29370284000012,53.49265330000015],[122.22569665600022,53.47394643200009],[122.16869755100008,53.46914052300017],[122.14776859600023,53.46113067600011],[122.10808109500024,53.43808298800006],[122.08162276200008,53.4295047],[122.02505194200008,53.429823366],[121.88897302300015,53.430589905000105],[121.64102950100006,53.38490793900008],[121.51214847800023,53.329820862000034],[121.45876672400007,53.32044159000016],[121.41327478500013,53.31733482400015],[121.40579838100015,53.31682424000009],[121.35763594600016,53.32405894000006],[121.34099613500014,53.323645529000046],[121.3283354090001,53.319976502000046],[121.29996504700001,53.302535706000114],[121.25355961200007,53.28692942300007],[121.20348514900012,53.276749166000016],[121.15180871600015,53.27450124100001],[121.05486372900012,53.29000417100012],[120.87425459800014,53.28015981100013],[120.84572920700016,53.27344187500002],[120.82598881100002,53.26186635400016],[120.83043298400004,53.244838970000146],[120.82387007700005,53.23522715300011],[120.75126468900012,53.20690846800012],[120.71405765800003,53.18504933700008],[120.65220096800019,53.122830913000186],[120.614787231,53.09707021100009],[120.52760909100006,53.05580658000018],[120.45030114700015,53.00834177700006],[120.3919067790001,52.95676869700016],[120.36203780100006,52.93937957800012],[120.35407963100018,52.93323008200015],[120.34658654800013,52.92346323700012],[120.34240075700019,52.91542755200014],[120.33723311400003,52.90770192500004],[120.32669112200003,52.899046123000076],[120.30235152200025,52.891242982000065],[120.29072432500018,52.88535186800006],[120.2857117110001,52.87488739000012],[120.28018233200011,52.86592153],[120.26721154800006,52.85814422700015],[120.25248376500011,52.85269236300009],[120.21961755400017,52.84491506000007],[120.17739790900018,52.81791412400003],[120.15595218900013,52.80907745400005],[120.06582849200018,52.783213399000104],[120.03296228000012,52.760656637000075],[120.04608809400011,52.733991598000145],[120.04402103800022,52.723527120000185],[120.0515657960001,52.70458770800015],[120.05290938400016,52.693012187000086],[120.03657963100014,52.668129985000135],[120.03260054600005,52.65887990300003],[120.03012007700023,52.63937205000003],[120.03378910300007,52.62536773700013],[120.04267745000018,52.61350799600011],[120.05642338100022,52.60051137400016],[120.07936771700018,52.58996938100002],[120.11285404500013,52.58451751700012],[120.17595096800018,52.5837423710001],[120.19812015800014,52.589116720000064],[120.24209680200023,52.607229309],[120.26111372900013,52.61105336500013],[120.36761885600018,52.61725453700002],[120.38942631100012,52.622163798000045],[120.42994063400006,52.636090597000035],[120.45402185100023,52.639036154000124],[120.46415043200001,52.63603892000013],[120.49184899900006,52.61725453700002],[120.53959802300018,52.603663636000036],[120.60874108900018,52.57400136300008],[120.65447473200011,52.56699920700008],[120.70739139800011,52.550333557000144],[120.7239795330001,52.54216868100012],[120.70811486900017,52.51813914000009],[120.70480757700001,52.50917328000007],[120.7041357830001,52.49783030200017],[120.70196537300004,52.488761088],[120.69256026200017,52.47460174600014],[120.69038985300008,52.470157573000144],[120.69038985300008,52.439125875000016],[120.68139815300005,52.422976990000116],[120.66041752200013,52.39879242000016],[120.65623173100019,52.38142913900005],[120.65220096800019,52.37246327800001],[120.64315759300015,52.36633962000006],[120.63344242399997,52.36174041800008],[120.62837813300021,52.35789052400004],[120.626156047,52.346805929000034],[120.62910160400011,52.340888977000034],[120.63344242399997,52.33546295200016],[120.63576786300021,52.326187032000135],[120.65493982000024,52.29910858200016],[120.73896569900009,52.25660471600012],[120.75808597900007,52.237406922000034],[120.75705245000007,52.22787262000013],[120.75234989400009,52.21185292600016],[120.75126468900012,52.20296457900015],[120.7537451580001,52.19446380700005],[120.76666426600009,52.1795551550001],[120.77178023300009,52.171622824000124],[120.7774129640002,52.164956564000036],[120.78320072500016,52.16198516900011],[120.78407922400011,52.158006083000046],[120.7755526120002,52.14836842900002],[120.77126346900003,52.140978699000115],[120.77126346900003,52.13247792600011],[120.77431237800023,52.12426137400017],[120.77916996300009,52.11759511400005],[120.76666426600009,52.10844838500016],[120.7530733650001,52.08633087200015],[120.74506351800014,52.07666737900006],[120.73198938100009,52.07018198700017],[120.7180367440001,52.06653879800008],[120.70563440000002,52.0610352580001],[120.69731449400015,52.04871042900014],[120.69638431900003,52.03447357200015],[120.70108687400008,52.02287221300013],[120.70754642800013,52.012407735000075],[120.71157718900021,52.00158152300004],[120.71090539600006,51.988326518000136],[120.70578942900025,51.97995493600014],[120.68351688600002,51.959310202000054],[120.66207116700015,51.925048727000146],[120.64760176600024,51.91101857500003],[120.6249674890001,51.90533416800018],[120.57861372900017,51.90768544600003],[120.56631473800016,51.90533416800018],[120.5561344810001,51.898383688000095],[120.54936486800015,51.89047719400004],[120.5411483160001,51.882984111000106],[120.52662723800009,51.877428894],[120.51189945500009,51.87618866000015],[120.50208093300003,51.877248027000135],[120.49314091000005,51.87572357200004],[120.48089359600026,51.86686106400013],[120.4759326580001,51.859135437000035],[120.4714884850001,51.84900685700008],[120.46482222500016,51.84019602500008],[120.45402185100023,51.83644948400017],[120.42756351800008,51.83365895600012],[120.40833988500006,51.826088359000046],[120.37444014600013,51.802317200000104],[120.31930139200013,51.77603973400015],[120.18148034700019,51.68297047900016],[120.1656156820001,51.668552755000135],[120.15378178000016,51.66397939000011],[120.12236250900006,51.66715749100017],[120.1082031660001,51.665193787000035],[120.10045170100008,51.65994862900011],[120.08587894700023,51.644368185000175],[120.06489831600013,51.61488678000016],[120.0567334390001,51.596386617000135],[120.05352950000021,51.57703379400009],[120.05290938400016,51.55220326800004],[120.04216068600026,51.53853485100002],[119.99218957500008,51.503265686000034],[119.97720341099998,51.48701344900003],[119.97415450100006,51.46417246500012],[119.98056237800019,51.452726135000106],[119.9827327890001,51.44215830500003],[119.96728153500005,51.421823629000116],[119.9599951580001,51.412289327000124],[119.95684289600017,51.4045120250001],[119.95286381100019,51.39766489700004],[119.94304528900003,51.39081777000008],[119.89529626500014,51.38397064200002],[119.90015384900008,51.37025055000002],[119.91271122300016,51.34963165300009],[119.91565677900005,51.33074391700016],[119.89188562000012,51.32255320300014],[119.8833073320001,51.318005677000095],[119.86062137900004,51.28901519800002],[119.85064782700013,51.28433848100014],[119.82884037300018,51.27971344100011],[119.8196419680002,51.274726665000124],[119.81623132400013,51.26899058100018],[119.80594771400015,51.244005026000096],[119.80941003500018,51.23261037200011],[119.81478438300016,51.22274017400012],[119.81499109000012,51.21589304600015],[119.80243371600001,51.21328338600016],[119.77230635600021,51.21847686800005],[119.76217777600006,51.215040385000016],[119.75814701300018,51.19902069199999],[119.78543217000016,51.17165802100014],[119.77282312100026,51.162692159000116],[119.76708703600009,51.15972076399999],[119.75814701300018,51.158015442000035],[119.76522668500009,51.14243499800001],[119.76171268800024,51.128172302000124],[119.75463301700019,51.11429718000015],[119.75070560700023,51.09998280900008],[119.7482768150002,51.08339467400007],[119.7408354090001,51.071534932000034],[119.7284330650002,51.06453277600003],[119.71039799000019,51.06246571900009],[119.71019128500014,51.038539531000154],[119.6832161870001,51.01606028300016],[119.60425459800014,50.978181458000066],[119.59402266400016,50.96955149400012],[119.57319706300021,50.945832011000086],[119.51795495600012,50.904800924000035],[119.52999556500016,50.887075908000114],[119.52798018500013,50.86676707000002],[119.5157845460002,50.848111878000125],[119.49749108900008,50.83591624000012],[119.5140792240001,50.813385315000104],[119.5148543710001,50.79193959600015],[119.50493249500009,50.75059845000014],[119.49666426700004,50.73705922500015],[119.45728682500011,50.69628652000007],[119.4428174240002,50.68507273400002],[119.41775435400008,50.67628774100014],[119.4039050700002,50.67323883100012],[119.3916577560001,50.67205027300009],[119.38307946800009,50.66662424700002],[119.37372603400003,50.64274973600014],[119.36437260000015,50.63727203400005],[119.34897302300008,50.63468821300013],[119.34116988100018,50.628073629000035],[119.3353304450001,50.61923696000004],[119.32613204000008,50.60998687700014],[119.31388472600017,50.60461252900016],[119.30308435100012,50.60275217700017],[119.29357588700023,50.59923817900001],[119.2852559820001,50.588902894000014],[119.28654789200002,50.57774078400017],[119.26458540900009,50.52001820900009],[119.26060632400016,50.51407542000008],[119.25440515200003,50.50952789300014],[119.25089115500023,50.50451527899998],[119.25450850500012,50.497022197000135],[119.25915938400018,50.493249817000034],[119.26236332200008,50.49195790600005],[119.26401696800022,50.48958079000012],[119.26458540900009,50.48275950200015],[119.26122644000017,50.47924550400001],[119.2436564540001,50.445500793000136],[119.21616459200011,50.42493357300005],[119.20675948100003,50.415115051000086],[119.19843957600021,50.413099671000126],[119.1676920990002,50.414081523],[119.15487634300015,50.41139434800008],[119.14671146600013,50.40426300100013],[119.13756473800005,50.392532451000065],[119.13348230000021,50.381473694000036],[119.14123376500007,50.376616110000114],[119.17187789000009,50.37568593400006],[119.18050785300014,50.369794820000074],[119.1753402100002,50.35610056600014],[119.18794926000024,50.354705303000074],[119.21358077,50.35656565400008],[119.22370935100015,50.35610056600014],[119.2330111090001,50.35274159800004],[119.2464469810002,50.34416331000001],[119.25078780200013,50.34250966500015],[119.31434981300018,50.35170806900005],[119.33357344600022,50.34989939400007],[119.35290043100017,50.345506897000156],[119.35662113400005,50.34075266600017],[119.3639591890001,50.319461975000095],[119.36550948099998,50.31083201100013],[119.36246057200017,50.30416575200003],[119.35041996300018,50.30147857700011],[119.33853438300017,50.29403717000018],[119.33378015200017,50.276260478000054],[119.33155806500017,50.21734934500013],[119.33414188600008,50.211148174000144],[119.34359867400023,50.202208151000136],[119.34726770000022,50.1950768030001],[119.34830122900021,50.18458648800005],[119.34396040800002,50.142418519],[119.33775923700014,50.1241250610001],[119.32861250800023,50.10805369100014],[119.31621016500011,50.09265411400015],[119.30132735300006,50.079786683000165],[119.2510461830001,50.04826405800009],[119.22329594000014,50.025009664],[119.2085164800002,50.015139466],[119.1895512290001,50.007284648000066],[119.09167606600018,49.986562398000146],[118.99044193600015,49.979327698000176],[118.96253666200019,49.9820148730001],[118.9478088790001,49.98521881100008],[118.93576827000012,49.98961130800016],[118.92377933800017,49.991626689000114],[118.91292728800015,49.98769928000014],[118.90248864800017,49.982118226000026],[118.89137821500016,49.979327698000176],[118.79164270000015,49.966356914000144],[118.74146488400007,49.953076071000126],[118.7129394940001,49.949458721000056],[118.67056482000018,49.96206777],[118.64436486800004,49.95457468700015],[118.5999748130001,49.930958557000125],[118.5706226000001,49.920726624000146],[118.55455122900004,49.909771221000156],[118.521271607,49.8940615850001],[118.49801721200018,49.876749980000014],[118.49078251200004,49.869515280000044],[118.48644169100024,49.860678610000136],[118.48106734300008,49.84243682900008],[118.47703658100018,49.83597727500002],[118.45584924400022,49.82863922100013],[118.39373417100015,49.820009258000184],[118.38091841700016,49.81148264600007],[118.37296024600019,49.78631622400003],[118.35363326000007,49.77644602500005],[118.3287252200001,49.77303538000002],[118.30516076700012,49.767092591],[118.24170210800004,49.72916208900001],[118.22940311700019,49.729213766000115],[118.22340865100009,49.71210886700008],[118.20821578000009,49.69541737900012],[118.18847538300011,49.681258037000084],[118.1686316330001,49.671491191000044],[118.10641320800018,49.651802471000096],[118.08915328000002,49.640123597000105],[118.07127323400002,49.625137432000045],[118.05494348100002,49.614026998000114],[118.01711633300013,49.595785217000135],[117.93071333800005,49.56731150300011],[117.90466841700018,49.55273874900017],[117.89381636600002,49.54664093100011],[117.87376591000017,49.51320627900012],[117.84089969900006,49.50964060500014],[117.83686893800015,49.50902048799999],[117.831908,49.509795634000014],[117.82260624200008,49.510260722000126],[117.81578495300012,49.51196604500008],[117.80358931500022,49.51889068600015],[117.79501102700017,49.51914906800015],[117.77744104000011,49.51284454400003],[117.76886275200015,49.51098419200012],[117.75883752500025,49.512741191000096],[117.47286014900024,49.6142853810001],[117.2529252520001,49.6224502560001],[117.05758833800022,49.67288645400011],[116.72231164600011,49.80166412400011],[116.68427779200019,49.823264873000156],[116.65337528500017,49.863830872],[116.61720178200008,49.89731719999998],[116.5754472250002,49.921760153000136],[116.30052860600021,49.992970277],[116.2176396080001,50.01384755500005],[116.13537072800013,50.014415996000096],[116.053618612,49.99844797800007],[115.75089807200018,49.88496653300005],[115.71627486200016,49.877783509],[115.68340865100006,49.87768015600015],[115.57819543400014,49.89364817300018],[115.50853560400006,49.88677520800003],[115.47298221900014,49.88708526600011],[115.45014123500007,49.891426087000085],[115.38781945900021,49.8910643520001],[115.36869917900006,49.895405172000075],[115.21015588400014,49.971679586],[115.06339481700014,50.077512920000125],[115.04964888500015,50.09084543900017],[115.02804813700018,50.11988759400007],[115.01523238200011,50.13285837799999],[114.99735233600013,50.14433054700011],[114.75374963400021,50.23621124300017],[114.65969852800018,50.251404114000096],[114.47304325400009,50.23404083300009],[114.42498417200014,50.241843974000105],[114.333000123,50.272333069000084],[114.28628462800023,50.27688059500012],[114.20008833900013,50.25621002200002],[114.11823287000007,50.22437734000006],[114.05529097500008,50.18381134000013],[114.0351371670001,50.17693837500015],[113.99327925600014,50.16867014600002],[113.97312544800005,50.16050527],[113.84982548000002,50.080716858000024],[113.8368030190002,50.07694447900009],[113.81582238799999,50.07689280199999],[113.7731376550001,50.08164703400017],[113.75226037600024,50.07859812400015],[113.57966109200007,50.0199453740001],[113.52788130700017,49.99281524700013],[113.51041467300003,49.98103302000014],[113.45853153600004,49.95726186200007],[113.44230513500011,49.946048076000025],[113.41553674400015,49.92238027000009],[113.21244836500009,49.82202463800002],[113.18268274000016,49.80197418199999],[113.15674117000006,49.777376201000024],[113.08749475100004,49.68740753200014],[113.07715946500011,49.66901072200007],[113.07416223200019,49.653352763],[113.07157841000017,49.61774770100011],[113.06082971200024,49.59599192300011],[113.04367313700017,49.5886021940001],[112.99282352700018,49.58715525400011],[112.96977583800006,49.58302113899999],[112.94734826700014,49.57609649700011],[112.92616093000017,49.56653635700012],[112.8680766200001,49.531654766000045],[112.77712609900018,49.50137237500011],[112.73371789600016,49.492794088],[112.70147180200004,49.49129547200006],[112.67139611900015,49.49594635000012],[112.58426965400011,49.52633209300008],[112.47326867800021,49.53413523400012],[112.4322375890001,49.52917429700006],[112.12640515100023,49.43994041000015],[112.03019494700006,49.41186879499998],[111.66101851400006,49.39636586500008],[111.61647343000013,49.38644398999999],[111.50350874800014,49.34706654899999],[111.47911747300012,49.34334584599999],[111.45451949100011,49.34308746400011],[111.42961145100004,49.346394755000105],[111.38506636600007,49.362259420000115],[111.36274214800018,49.36763376900008],[111.33845422400006,49.36473988900009],[111.32098759000021,49.35533477800011],[111.29173872900017,49.33078847200006],[111.27354862500007,49.322830302000014],[111.13856978400004,49.29156606000011],[110.96555708800005,49.20738515200004],[110.84101688700011,49.162426657000125],[110.73135949700006,49.137673646000096],[110.68805464700009,49.13452138300012],[110.64495650200016,49.13674347000013],[110.60361535700022,49.145321757000076],[110.50822066300012,49.184337464000166],[110.45127323500006,49.194569398000155],[110.43328983600006,49.20263092100005],[110.38223352000009,49.240044658],[110.37117476400007,49.241749980000165],[110.36104618400012,49.234618632000135],[110.34543990100009,49.22061431900012],[110.30936975100009,49.19586130800009],[110.26833866400014,49.17705108600008],[110.22503381400004,49.165372213000026],[110.18141890500013,49.161961569000184],[109.91311486800012,49.21368967700015],[109.83218957500006,49.22686716800002],[109.81772017400007,49.22774566700014],[109.78495731600016,49.25136179600018],[109.72852665200017,49.26645131499999],[109.5162398680001,49.255909323000125],[109.49184859200014,49.262782288],[109.47438195800012,49.269138489000014],[109.46983443300005,49.276631572000056],[109.46570031700004,49.294459941000085],[109.46208296700016,49.30045440700003],[109.45071415200006,49.305932109000096],[109.41123335800015,49.30319325800015],[109.39097619600014,49.30929107700002],[109.33630253100007,49.323347066000125],[109.31191125500006,49.33254547200012],[109.28669315600021,49.33853993800007],[109.16060266100007,49.34665313699999],[109.05802494400008,49.32908315100009],[109.03296187300006,49.32789459300007],[108.93048750800014,49.348823548000055],[108.85896732600011,49.34055531800011],[108.75106693500018,49.341175436000086],[108.60843998300012,49.32365712600004],[108.56997265300012,49.32571888400009],[108.53805668100019,49.32742950500015],[108.47366784700009,49.35641998300004],[108.33486495000008,49.43636342400005],[108.27714237500012,49.482510478000094],[108.26727217600015,49.49584299700011],[108.25952071100014,49.50964060500014],[108.25052901200016,49.52240468300012],[108.23636967000013,49.53248158800007],[108.20991133600015,49.540233053000165],[108.12645389900015,49.54715769400014],[108.10619673700015,49.554340719000024],[108.03266117300008,49.5893256630001],[108.01571130400006,49.60224477200002],[108.00527266500015,49.61779937700005],[108.00754642800014,49.63361236600004],[108.0158146570001,49.65572987900005],[108.00279219600004,49.66317128499998],[107.96289799000013,49.66110422800001],[107.93948856700015,49.663222962000084],[107.9274479580001,49.67004425100005],[107.92682784100012,49.68286000600004],[107.94935876500014,49.72063547800009],[107.95483646700015,49.73277943900008],[107.95576664300009,49.74554351800005],[107.95003055800012,49.78249216799999],[107.93235721900011,49.830292868000086],[107.93003177900019,49.85142852800011],[107.93550948100007,49.86662139900015],[107.94439782700007,49.88041900600011],[107.95261438000014,49.89747222900003],[107.95649011200007,49.923362122000164],[107.9465165610001,49.93349070300003],[107.89819909700006,49.93550608400007],[107.85096683800012,49.946048076000025],[107.8391846110002,49.94656484000007],[107.80792036900012,49.94387766600015],[107.78693973800009,49.94821848600013],[107.75050785300013,49.96558176700013],[107.74460414500007,49.967352880000035],[107.72932051600017,49.971937969000166],[107.36407149300013,49.9761237600001],[107.30485030200012,50.01002349900001],[107.28040734900017,50.00759470600015],[107.25487919200006,49.9989130660001],[107.22490686100011,49.997052715000095],[107.1921956790002,50.006044414000044],[107.1644971110002,50.018860169000035],[107.11462935500006,50.0504861460001],[107.10072839300008,50.05679067000004],[107.07029097500018,50.06624745700019],[107.0571134850002,50.07410227500013],[107.04843184400008,50.084644267],[107.03923343900007,50.10826039700011],[107.03360070800012,50.11880238800008],[107.02621097900013,50.12572703100015],[107.00605717000022,50.140196432],[106.99799564600008,50.1498082480001],[106.98269942300007,50.187118632000036],[106.97365604700022,50.19636871300004],[106.93644901600011,50.209132792000034],[106.78829268400008,50.291505026],[106.74617639200014,50.30742136700003],[106.65651778200018,50.327006735000126],[106.54820398000005,50.335791728000046],[106.43978682500008,50.327936910000105],[106.24486332200009,50.290264791000155],[106.22228072100009,50.29238352500012],[106.20119673700006,50.299721578000046],[106.16094079600012,50.319617005000126],[106.13530928600007,50.32711008800008],[106.05593428600011,50.333569642000114],[106.0481828210001,50.338117167000156],[106.0444621180001,50.34602366100002],[106.04327356000007,50.355532125000096],[106.04327356000007,50.3647822060001],[106.03893273900005,50.371396790000105],[105.98487919200008,50.399767151000034],[105.95805912300008,50.40359120700005],[105.90421228000017,50.40379791300002],[105.85470625800022,50.410929260000145],[105.80654382300006,50.42436513299999],[105.7792586680001,50.42891265900012],[105.63937056500012,50.42193634100012],[105.32864017800007,50.47645497700013],[105.27846236200006,50.47257924400019],[105.24073856600009,50.45800649100012],[105.13133955900017,50.398061829000035],[105.10575972600012,50.39005198200009],[105.07821618700015,50.38514272100004],[105.05010420800008,50.3834890750001],[104.9342456470001,50.39325592100015],[104.90158614100002,50.38979360000009],[104.87900354000013,50.38390248600011],[104.81849043800017,50.358322653000144],[104.78955163600018,50.35263824500011],[104.69705082200008,50.35320668600015],[104.67188440000021,50.348297424000016],[104.63245528200011,50.323751119000136],[104.61044112100015,50.31419097900006],[104.57695479300006,50.309488424000094],[104.47411869300016,50.313260803],[104.40580245000015,50.30054840100014],[104.37722538200009,50.28917958600006],[104.34950155100009,50.27186822000009],[104.32136316000017,50.25429799400008],[104.26896325700008,50.22887319000007],[104.2474658610001,50.20660064800002],[104.1981148690002,50.17001373300009],[104.12168542500015,50.148257955000176],[104.03951989800012,50.14117828400005],[103.9739941810001,50.14872304300009],[103.8454232180001,50.18468984],[103.78527185100015,50.186136780000155],[103.6680697030001,50.13120473300013],[103.60140710400016,50.13353017200008],[103.53391768400016,50.15378733400017],[103.47397302300007,50.18200266500004],[103.43872969600008,50.19259633400013],[103.40710371900009,50.197298889000095],[103.30659305800006,50.190425924000024],[103.27677575700008,50.19755727200008],[103.25310795100015,50.214972230000015],[103.24018884300014,50.24437612000018],[103.2016899010001,50.29698272700007],[103.1300146900002,50.309126689],[102.97410689300014,50.29563914000012],[102.92739139800014,50.30297719300002],[102.88713545800012,50.31496612600007],[102.76259525600007,50.374807435000136],[102.61952941500012,50.39900915],[102.61779789300012,50.39930206300009],[102.58658532800014,50.41527008100003],[102.51310144100009,50.50368845700014],[102.4718636480001,50.52492747000012],[102.37269657400012,50.533660788000084],[102.32763472600018,50.545546366000124],[102.30293339000015,50.56389150000011],[102.2824178470001,50.59060821600015],[102.27156579700012,50.62094228100001],[102.27590661600013,50.650191142000054],[102.29683557200022,50.674944153000084],[102.32024499500008,50.69613149000004],[102.32939172400009,50.71881744500011],[102.3075325930001,50.74822133400009],[102.24567590400014,50.7787621050001],[102.21678877800016,50.798864237000046],[102.20304284700015,50.82935333300004],[102.2127580160001,50.856741842000176],[102.23187829600008,50.884750469],[102.23947473100006,50.91229400700016],[102.21523848500006,50.938183899000094],[102.22557377100006,50.950741272000116],[102.23105147300006,50.96490061500007],[102.22965620900007,50.979266663000075],[102.21937259900007,50.9926508590001],[102.19198409100014,51.020581970000094],[102.16537072800011,51.057556458000036],[102.14650883000016,51.09763153100012],[102.14216800900007,51.13483856200004],[102.1487825930001,51.16878997800016],[102.15002282800005,51.18540395100017],[102.14764571200007,51.20263804200006],[102.1396875410002,51.22093149900003],[102.13379642700014,51.23085337400012],[102.13529504400005,51.240284323000175],[102.17927168800006,51.286431376000124],[102.1933793540002,51.30720530300006],[102.18387089000012,51.32389679],[102.09126672400006,51.36464365600007],[102.07467858900004,51.374823914000146],[102.0512174890001,51.38360890800011],[101.97421960500017,51.38722625800001],[101.95561609000012,51.393789165],[101.9206828210001,51.413038635000035],[101.90187260000019,51.41706939800012],[101.82177413000012,51.41358123900007],[101.79531579600014,51.41939483700006],[101.74219242400014,51.44484548000015],[101.72369226100008,51.45058156300003],[101.69661381100009,51.45244191500005],[101.64369714400007,51.450090638000106],[101.5698515220001,51.470089417000125],[101.5263916430001,51.47582550100019],[101.48205326400013,51.47287994400009],[101.38779545100012,51.45055572500003],[101.3501750080002,51.45045237200018],[101.31544844600009,51.463604025000066],[101.27968835500015,51.49259450400013],[101.24155114700007,51.51517710400016],[101.20072676700008,51.52091318800014],[101.15876550300018,51.521223246000105],[101.11701094600008,51.527837830000024],[101.06946862800012,51.553443502000064],[100.63890059500014,51.69203969300004],[100.57110111499999,51.704803772],[100.51089807200017,51.7268954470001],[100.2102962650001,51.72622365400012],[100.09826175900017,51.73865183600019],[100.00596765200007,51.73172719300011],[99.91791101100014,51.74947804800006],[99.84866459100013,51.78934641500017],[99.78396569900016,51.83761220300009],[99.70965498900009,51.88058115600016],[99.67932092300012,51.88866851900015],[99.55684777900015,51.89145904600012],[99.32389042200006,51.934221294000125],[99.2953650310001,51.94354888900007],[99.27469445800008,51.959491069000094],[99.2559875900001,51.977913717000106],[99.23283654800011,51.994243470000136],[99.19873010300014,52.00659413700002],[99.0250972910001,52.04553232900018],[98.9947115480002,52.05829640700013],[98.97445438700012,52.08038808200014],[98.96246545500006,52.112556661],[98.93765156300005,52.12468748800016],[98.92763553900006,52.12958404600012],[98.88639774600007,52.128550517000136],[98.85559859200012,52.106691386000094],[98.84960412600017,52.090129090000104],[98.84888065700008,52.0563068650001],[98.84650354100013,52.039331157],[98.83854537000016,52.025275167000174],[98.80020145700016,51.99274485300013],[98.79172652200006,51.977500306000096],[98.77663700400015,51.93011301700004],[98.71111128700014,51.845105286000106],[98.68268925000021,51.81947377600015],[98.65137333200013,51.79748545299999],[98.61871382700022,51.780664775000034],[98.42503055800009,51.74622243300014],[98.33221968600012,51.718317160000154],[98.27351525900016,51.65483266200011],[98.2633866780001,51.63519561800008],[98.23868534400017,51.60147674600004],[98.22824670400016,51.58341583300002],[98.22431929600005,51.560006409000046],[98.23382775900009,51.51652069100014],[98.22990035000012,51.49287872300012],[98.2203918860001,51.47520538300002],[98.13781294800017,51.48587656700012],[98.11135461500005,51.48471384700009],[98.06670617700016,51.469262594],[98.05089318900016,51.46642039000012],[98.03973108000011,51.45729950000005],[98.02061080000013,51.435181986000046],[97.97451542100012,51.36859690300006],[97.96221643100009,51.355445252000074],[97.93379439300006,51.33177744600014],[97.92283899000009,51.31847076500013],[97.91570764200006,51.300616557000076],[97.9163277590001,51.28588877400007],[97.92810998600012,51.251472270000036],[97.93172733600008,51.230414124],[97.92904016200006,51.215040385000016],[97.90030806500008,51.16842824300006],[97.89472701000012,51.153855489000094],[97.88563195800006,51.12011077900003],[97.87012902900003,51.08680531800008],[97.80636031100013,51.00112579400012],[97.8085307210001,50.97048166899999],[97.83571252400012,50.940716045],[97.87198938000003,50.91709991500006],[97.91942834500006,50.89741119400013],[97.92966027800006,50.88661082],[97.93875533100018,50.87441518200008],[97.95301802600008,50.86283966100005],[97.98464400300006,50.8469233200001],[97.99022505800009,50.83560618100013],[97.94743697100014,50.795970358000076],[97.94402632700022,50.77447296200002],[97.97451542100012,50.72315826400008],[98.02329797400009,50.64202626600003],[98.0384908450001,50.62295766300015],[98.06009159300007,50.60890167300012],[98.13595259600018,50.570971171000124],[98.16334110500011,50.5646666460001],[98.22555953000014,50.55763865200011],[98.25129439300011,50.550558981000094],[98.27537561100016,50.537691549],[98.29346236200016,50.518622946],[98.30069706200007,50.49293975900004],[98.30069706200007,50.492836406000016],[98.30059371000013,50.49278472900009],[98.29821659400008,50.46012522400012],[98.26628055800008,50.40069732700005],[98.26183638600016,50.367469381000134],[98.270104615,50.33594675800008],[98.2722750240001,50.31899688800014],[98.26927779200011,50.29941152000005],[98.26245650200016,50.28380523700009],[98.10556685400009,50.063870341000055],[98.04799930800019,50.02304596000006],[97.90619917800015,49.97307485000008],[97.87457320200015,49.95395457000008],[97.84739139800016,49.930080058],[97.82992476500013,49.92331044600014],[97.8107011320001,49.93116526300018],[97.77752486200009,49.95617665600018],[97.75633752500013,49.96149932900011],[97.73359989500014,49.958347066999984],[97.64223596200006,49.93002838100007],[97.56658166500009,49.91679921500018],[97.56317102000006,49.90894439700004],[97.57174930800008,49.89674875900012],[97.58125777200016,49.87793853800004],[97.57360966000006,49.84750111900014],[97.54270715300018,49.82274810800011],[97.47459761600007,49.78869334000008],[97.3907784420002,49.74947092800012],[97.34333947800022,49.73417470300016],[97.30168827400009,49.725544739000114],[97.26231083200011,49.72611318000015],[97.20505334500015,49.73407135100005],[97.15296350100019,49.75024607400003],[97.12898563600018,49.775825908000066],[97.11989058500008,49.79365427700013],[97.10015018700014,49.80218088800014],[97.0852696430002,49.805838275000056],[97.05725874900011,49.812722880000095],[97.04227258300008,49.823213196000054],[97.00589237500006,49.865277812],[96.96920210800008,49.8866718550001],[96.70193160000022,49.913750305000136],[96.68022749900015,49.909719544000055],[96.62596724500011,49.873391011000095],[96.60436649600014,49.862900696000125],[96.58514286300013,49.85752634699999],[96.56808964000018,49.86176381400004],[96.55300012300009,49.879850566000144],[96.53925419100014,49.90186472600011],[96.52385461400016,49.9157656870001],[96.50328739400007,49.922121887000124],[96.47465865100011,49.92165679900002],[96.44882043500016,49.9139570120001],[96.39910770700007,49.89173614500008],[96.37285607900004,49.88605173700013],[96.34629439300012,49.88858388300012],[96.32335005700004,49.897885641000144],[96.28118208800012,49.92625600200016],[96.23560347500015,49.94920033800018],[96.08636193900011,49.99276357000003],[96.08625858600007,49.99281524700013],[96.0860518800001,49.992866924000154],[96.08594852700017,49.99291860000007],[96.07106571500006,49.99674265600011],[96.05597619600022,49.99880971300017],[96.04099003100005,49.99793121400005],[96.02662398300006,49.99281524700013],[96.01194787600016,49.98521881100008],[95.99830529800008,49.975917053000146],[95.98569624800015,49.96496165000015],[95.97484419800017,49.95245595300015],[95.94631880700015,49.93850331599999],[95.9226510010001,49.94460113600003],[95.90446089700006,49.964806621000136],[95.8921619070002,49.99276357000003],[95.8921619070002,49.99291860000007],[95.86704716000011,50.01498443600015],[95.82787642400014,50.02015207900016],[95.78767216000014,50.011728821000176],[95.75894006400014,49.99307362900011],[95.72142297400013,49.95850209600012],[95.68049523900012,49.945996399000116],[95.5839636640001,49.93669464100019],[95.56318973800015,49.927599589000025],[95.53714481600016,49.90072784500001],[95.52060835800008,49.889617412000106],[95.50066125500015,49.88672353200012],[95.48061079900012,49.89220123300002],[95.47720096200005,49.89408316500011],[95.46169722600004,49.90263987300012],[95.44516076700009,49.91442209900005],[95.39978885900015,49.93886505100009],[95.3547270100001,49.94770172100009],[95.07639774600008,49.945531311000096],[95.02833866400013,49.963411357000055],[95.0216207280001,49.9698192340001],[95.0040507410001,49.99276357000003],[94.98058964100002,50.024751282000025],[94.95371789500015,50.04061594700012],[94.92157515500011,50.045886943000156],[94.7463920490002,50.04035756400005],[94.6509973550001,50.01782664000005],[94.6245390220001,50.01519114200012],[94.60345503800008,50.01973866800016],[94.59229292900014,50.02981557300008],[94.57441288300016,50.058547669000106],[94.56397424300015,50.071001689000084],[94.5208760990001,50.09777008100015],[94.50909387300013,50.10986236600005],[94.50227258300018,50.125055237000154],[94.49855188000018,50.13952463800011],[94.4917305910002,50.152288717000076],[94.47498742700006,50.16226226800008],[94.39178837100016,50.1855683400001],[94.36853397600005,50.20272491499999],[94.35447798700014,50.22360219300005],[94.34434940600008,50.24918202700009],[94.33225712100008,50.301013489000084],[94.3275028890001,50.40436635300015],[94.31975142500019,50.429016012000076],[94.27975386500012,50.492681376000164],[94.27820357300018,50.52921661400008],[94.2733459880001,50.544771220000094],[94.25866988200019,50.557535299000094],[94.23758589700017,50.56523508700017],[93.88696130399998,50.574976095000025],[93.53633671100013,50.58471710300015],[93.42151167900013,50.60936676100006],[93.18834761600007,50.599806620000074],[93.1391516520001,50.59944488600017],[93.10494185400009,50.598824768],[93.04262007600019,50.609883525],[93.02287968000022,50.61629140300015],[93.01140751200009,50.62331939700006],[93.00293257600018,50.6348432410001],[92.99187382000011,50.6547903450001],[92.97337365700017,50.694374492000165],[92.97399377400015,50.74217519200014],[92.96169478300007,50.777883606000145],[92.92107710800016,50.792456360000116],[92.85772180200016,50.795505270000135],[92.7961234950001,50.788012187],[92.76026005000008,50.77075225900002],[92.75343876200012,50.754680888000145],[92.74661747300016,50.72145294200011],[92.73524865800007,50.70522654300011],[92.71736861200012,50.69215240500015],[92.69525109900009,50.68192047200007],[92.67189335100014,50.675615947000054],[92.64977583900004,50.67406565300014],[92.61184533700006,50.68765655500012],[92.5545878500001,50.74300201500007],[92.51645064300013,50.76062367800016],[92.47490279200022,50.770493876000145],[92.44327681500013,50.786306865000036],[92.41898889200016,50.81173167000004],[92.39986861200006,50.850592347000095],[92.38457238800017,50.86557851200017],[92.36090458200006,50.86836904000013],[92.33547977700007,50.86361480800003],[92.31522261600006,50.855863342000035],[92.30168339100007,50.84335764600005],[92.2974459230002,50.82759633400015],[92.29703251200007,50.80987131800005],[92.29444869000011,50.791267803],[92.24277225800007,50.72000600200012],[92.15884973100006,50.68910349500011],[92.06273156800015,50.68631296800008],[91.89995080600013,50.70724192300015],[91.82419315600012,50.70155751600011],[91.74977909300011,50.68409088200014],[91.67960249900014,50.65654734300007],[91.65314416500016,50.64006256100011],[91.60270796700016,50.579601135000175],[91.57573287000011,50.56197947200009],[91.47506717900015,50.53598622700012],[91.45036584500015,50.51908803300013],[91.44003055800013,50.498572490000136],[91.43248579900009,50.478056946],[91.41574263500016,50.461365458000145],[91.38215295400013,50.454957581000095],[91.29750695800013,50.46637807300011],[91.26009322100006,50.466584778000154],[91.16335494000006,50.43278839200018],[91.12976525900015,50.426173808],[91.01204634600006,50.42529530900005],[90.97514937400015,50.413926494000165],[90.94858768800012,50.397493388],[90.8770675050001,50.33935740200009],[90.8399638270001,50.32080556300014],[90.76244917800014,50.30571604400013],[90.7265857350001,50.291866761],[90.71759403500008,50.280756328000066],[90.71738732900009,50.25202423100016],[90.71263309700012,50.23796824100005],[90.69971398900012,50.225152487000074],[90.68390100100012,50.21621246400004],[90.66643436700016,50.210373026000134],[90.64845096900015,50.20665232300006],[90.60493941300015,50.20598053000005],[90.51894982900009,50.21838287400011],[90.47523156700012,50.21461049400001],[90.42500207600007,50.18691192700008],[90.4049516200001,50.182622783000014],[90.36392053300008,50.17978057900014],[90.34387007600012,50.17466461200014],[90.22294722500007,50.114409892000154],[90.18243290200016,50.10247263600003],[90.05122644100018,50.08417917900006],[90.02053064000009,50.07074330700011],[90.00492435800012,50.05074452800007],[89.99872318600013,50.02464792900018],[89.99709068900003,50.00366354600014],[89.99624271700006,49.99276357000003],[89.96942264900005,49.967080384000056],[89.92017500800009,49.95085398400011],[89.86643151900009,49.94274078400004],[89.7207039800002,49.93974355100012],[89.66768396000006,49.92728953100014],[89.63321098500009,49.90793913400002],[89.6238623460001,49.90269154900015],[89.6210718180001,49.89333811500001],[89.61528405800007,49.85452911400007],[89.61533573400007,49.84192006500014],[89.6210718180001,49.83504709900008],[89.63895186400006,49.82481516500009],[89.6435510670001,49.81887237600007],[89.6419490970001,49.80812367800014],[89.62737634300007,49.79680653900008],[89.62644616700018,49.788021546],[89.63895186400006,49.77546417300009],[89.68370365400014,49.76114980099999],[89.70153202400009,49.75313995400001],[89.7126424560001,49.73515655500013],[89.7024105230001,49.719963685000025],[89.68230839100008,49.70833648800014],[89.61631758600005,49.68544382800003],[89.52030277500015,49.66317128499998],[89.47534428000014,49.64343088800011],[89.44159956900015,49.643585917000145],[89.41860355600012,49.62420725599999],[89.39782963100018,49.59898915700013],[89.37193973800007,49.58167755200013],[89.3394352620002,49.58079905199999],[89.3107031660002,49.593149720000056],[89.25220544400011,49.629426575000096],[89.21644535400017,49.63449086600017],[89.18735152200006,49.62198516799999],[89.1782047930001,49.59847239200009],[89.20156254000014,49.57061879500013],[89.21561853000017,49.545452373],[89.1952580160001,49.521526184],[89.16073816000008,49.50271596300017],[89.01408044500008,49.46054799500003],[88.97532312000007,49.45584543900004],[88.96266239500012,49.46214996300016],[88.95470422400015,49.471865133],[88.94757287600012,49.482820537000165],[88.93759932500019,49.49284576500009],[88.92695398000015,49.50741851800014],[88.9190991620001,49.523179831000114],[88.90835046400016,49.535943909000096],[88.88892012500011,49.54167999300016],[88.86819787700009,49.538114319],[88.85874108900012,49.52736562200006],[88.8561572670001,49.511500957000166],[88.85486535600015,49.473880514000044],[88.87532922300008,49.441789450000115],[88.87062666800014,49.43600168900006],[88.71942142800006,49.442926330000134],[88.69565026900008,49.44695709300011],[88.6746696380001,49.45982452400004],[88.64867639100012,49.48359568299999],[88.63353519700009,49.49124379500016],[88.61575850500017,49.49294911700012],[88.61415653500015,49.492794088],[88.59973881000022,49.48891835600013],[88.55782922400013,49.471089986],[88.53876062100008,49.46654246100014],[88.47540531400014,49.463648580000054],[88.4511173910001,49.46514719700014],[88.40192142700008,49.47584421800017],[88.37877038600018,49.47579254200014],[88.1999699300002,49.45434682200011],[88.17475183100005,49.44385650600016],[88.16172937000013,49.43011057600013],[88.14560632400004,49.39719268800009],[88.13578780200007,49.38608225500009],[88.11553064000006,49.35657501200016],[88.12917321800015,49.32593088800006],[88.14839685100017,49.29657867500008],[88.1439526770001,49.27074045900004],[88.10850264500006,49.24743438800011],[88.02974776300007,49.215550029000056],[87.99295414200004,49.19172719400008],[87.97548750900009,49.175810852000055],[87.95678064,49.16888621100015],[87.8551847740001,49.15896433500008],[87.83699467000005,49.15999786400006],[87.81632409700015,49.16583730100014],[87.71638187700009,49.15886098200006],[87.52528243000009,49.119793600000136],[87.51401696800022,49.11963857000008],[87.50605879700007,49.120878805000025],[87.50006433100012,49.11917348200016],[87.49158939600014,49.10320546500013],[87.48714522300011,49.09695261700013],[87.48177087400009,49.09162994399999],[87.47556970200017,49.08759918300008],[87.43836267100008,49.07468007400017],[87.40043217000006,49.071011048000074],[87.3622949630001,49.07509348500018],[87.32379602100009,49.085273743000144],[87.3081897380001,49.113850810000095],[87.287674194,49.184337464000166],[87.2717578530002,49.205111389000116],[87.2179626870001,49.229812724000126],[87.19031579700018,49.237822571000024],[87.16044681800017,49.24200836200004],[87.07600752800013,49.236892395000055],[87.05037601700016,49.23890777600009],[87.03663008600019,49.24273183200013],[87.0245378010002,49.24893300400011],[87.01714807100021,49.25864817400016],[87.01688969000006,49.2727558400001],[87.01254886900009,49.28071401000015],[87.00014652500006,49.28908559200012],[86.93332889800016,49.324277242],[86.91302006100014,49.33869496700011],[86.90506189000004,49.351924134000015],[86.91565555800011,49.369959209000015],[86.93079675300007,49.380552877000085],[86.93307051600019,49.39011301699999],[86.90547530100017,49.40468577100013],[86.85441898600018,49.42127390600014],[86.82899418200012,49.43331451500002],[86.81400801600014,49.45000600200014],[86.8142663980001,49.47295033799999],[86.82289636300007,49.492794088],[86.82434330300012,49.50922719400013],[86.80243249500009,49.522249655000095],[86.73256595900008,49.55067169200011],[86.70951827000013,49.55449574900013],[86.66414636200007,49.54741607700011],[86.64254561400006,49.54746775400003],[86.61856774900009,49.557958069000094],[86.59934411600008,49.57351267500012],[86.59179935700016,49.587206930000136],[86.5959851480001,49.60188303600002],[86.61112634300011,49.62022817000008],[86.64709314000018,49.6536628220001],[86.66771203700009,49.664256491000074],[86.71613285300012,49.66678863500005],[86.73649336800017,49.671904603000044],[86.75561364800015,49.68151641900006],[86.77587080900017,49.69500396800011],[86.75147953300015,49.711695455000054],[86.74052413000005,49.722754212000055],[86.73763024900009,49.73500152600009],[86.74341801000006,49.744716696000026],[86.75256473800013,49.756033834],[86.75959273300006,49.76771270799999],[86.75892094000008,49.77861643500013],[86.74837894700006,49.782957255000106],[86.73080896000013,49.7825438440001],[86.70021651200008,49.777737936],[86.68492028800003,49.77820302400012],[86.64244226100013,49.79386098300007],[86.61019616700015,49.795514628000134],[86.595365031,49.78089019800014],[86.58492639200009,49.760064596000106],[86.56513431800008,49.74270131499999],[86.55820967600012,49.74146108100014],[86.55221521000007,49.74233958000017],[86.54560062700008,49.74264963800006],[86.53743575000007,49.739445699],[86.52441328900014,49.729523824000104],[86.51971073400009,49.72683665000006],[86.47273685700011,49.70833648800014],[86.47966149900016,49.697277730000124],[86.4829687910001,49.68627065100004],[86.48178023300008,49.67691721700011],[86.47547570800006,49.67081939700013],[86.45826745600007,49.66565175400014],[86.3918115640001,49.6249824020001],[86.32948978700009,49.6102546180001],[86.2721289470002,49.58364125600015],[86.24639408400012,49.550051575000126],[86.21425134300009,49.496153057000086],[86.17725101700009,49.463338522000164],[86.13668501800007,49.493000794000054],[86.11151859600014,49.52018259700012],[86.07048750800017,49.526280416000176],[86.02754439300006,49.51563507100009],[85.99597009300005,49.492794088],[85.99581506300008,49.492794088],[85.98005375200013,49.48287221300008],[85.9630005290002,49.47858306900012],[85.94625736500015,49.481373596000154],[85.93142622900021,49.49284576500009],[85.93189131700015,49.51005401700017],[85.94212325000015,49.5510851040001],[85.94057295700011,49.55961171500003],[85.89985192900022,49.56405588800014],[85.88073164900007,49.56328074200003],[85.86078454600012,49.55749298100007],[85.82750492300008,49.54100820000018],[85.8092114670002,49.53651235000014],[85.7944320070001,49.5418350230001],[85.77954919500016,49.55604604100007],[85.76471805900022,49.566846415],[85.74740645400013,49.57299591100015],[85.72575402800013,49.57304758700009],[85.69004561400007,49.56291900700013],[85.67330244900009,49.560438538000156],[85.65619755100013,49.56493438700009],[85.64229659100008,49.57749176099999],[85.62844730600008,49.60648223900007],[85.61485640400011,49.61712758400016],[85.59718306500011,49.61929799400015],[85.58080163600007,49.613355205000126],[85.54927901300019,49.595268453000024],[85.53129561400013,49.58911895800004],[85.51320886300019,49.58534657900013],[85.47569177300008,49.5830728160001],[85.4509904380001,49.58844716400007],[85.40727217600008,49.60963450200002],[85.38401778200009,49.615680644000165],[85.36422570900011,49.61413035100004],[85.34205651900018,49.608187562000026],[85.32035241700007,49.59945424500016],[85.30278243000012,49.59010081100003],[85.26309493000022,49.5815225220001],[85.22361413600012,49.59573354100014],[85.19503706900011,49.625654195],[85.18511519400013,49.705029196000126],[85.16325606300019,49.7339679980001],[85.09814375800013,49.78218210900012],[85.08171065300014,49.80001047800006],[85.07592289200007,49.81391143900014],[85.07075524900009,49.85023997000009],[85.05628584800016,49.87333933600017],[85.03261804200011,49.88496653300005],[84.97577396700015,49.894009908],[84.95458662900009,49.906929017000024],[84.95065922000006,49.93328399700006],[84.95479333600017,49.99048980800002],[84.96218306500006,49.991885071000084],[84.96461185800014,49.99276357000003],[84.96471521000015,49.99276357000003],[85.00936364800012,49.99782786100008],[85.02543501800008,50.004080709],[85.02832889800005,50.020513815000136],[85.0201123460001,50.03307118800008],[84.98672937000006,50.0669709270001],[84.97577396700015,50.075187480000025],[84.91024825100007,50.09508290600003],[84.88797570900013,50.096736553000156],[84.87376468900007,50.09244740900003],[84.8558846440001,50.084850973000144],[84.83867639200011,50.08082021100013],[84.82611901900012,50.08671132400015],[84.80152103700013,50.12376332700002],[84.79066898600014,50.13275502600005],[84.77320235200014,50.13833608099999],[84.73811405400008,50.135390524000066],[84.72028568500016,50.13663075800012],[84.68938317800016,50.151048482000036],[84.66669722500009,50.17001373300009],[84.64199589100005,50.18489654600005],[84.6059774170001,50.18742869100011],[84.56928715000012,50.185516663],[84.5356974690001,50.19094268800008],[84.50458825700011,50.204585267000155],[84.47575280800012,50.227064515000095],[84.4407678630001,50.244634501000164],[84.40526615400003,50.230836894],[84.36878259300013,50.211819967000125],[84.33136885600018,50.21347361300009],[84.32434086100008,50.21962310900007],[84.31214522400015,50.23636627200001],[84.30439375800015,50.243239238000065],[84.29157800400017,50.248045146],[84.26181237800009,50.2536262010001],[84.24997847600017,50.25993072500002],[84.23964318900008,50.27822418200018],[84.23948815900022,50.299308167000035],[84.24186527500015,50.32189076800013],[84.23938480600006,50.344628398000125],[84.21840417500019,50.377701314000106],[84.19184248900015,50.40772532199998],[84.17675297000008,50.43914459300011],[84.1979403080002,50.49314646400007],[84.19561486800008,50.51143992100005],[84.18595137600008,50.527976380000055],[84.15122481300014,50.55257436100013],[84.14502364100021,50.56606191000019],[84.1423364670002,50.58151316300008],[84.1330347090001,50.60078847300004],[84.10171879100008,50.628590394000085],[84.08859727500013,50.634612502],[83.97583500200008,50.68636464500018],[83.94973840400009,50.717887269000144],[83.95056522600012,50.78041575200014],[83.92198815900022,50.800724589000154],[83.88281742400007,50.81199005100002],[83.8696916100001,50.82139516200009],[83.8382723390001,50.85627675400015],[83.82049564600007,50.86800730400013],[83.80044519000009,50.8756554160001],[83.77817264800015,50.87942779600006],[83.73264571100012,50.879634502],[83.71280196200021,50.88221832300009],[83.69058109500017,50.891830139000106],[83.63265181500006,50.92479970300015],[83.60975915500009,50.93203440300012],[83.49834476800005,50.94541860000008],[83.47700240100002,50.95337677100004],[83.46201623500016,50.964332174],[83.43395593300012,50.9926508590001],[83.32378177900009,51.002417705000155],[83.21205733200004,50.9926508590001],[83.19593428600014,50.988775126000135],[83.17960453300006,50.98727651000014],[83.16327478100018,50.98846506800008],[83.13753991700011,50.99466623900006],[83.12741133600016,50.99523468000011],[83.11738610900014,50.99456288700013],[83.10756758700009,50.9926508590001],[83.08607019100012,50.95254994800011],[83.05785485800007,50.91715159100009],[83.02147465000004,50.8917784640001],[82.97589603700007,50.881908265000035],[82.84412113400016,50.891726787],[82.76453942900017,50.90666127600004],[82.72645389800019,50.90071848500013],[82.69999556500014,50.88097808900007],[82.69803186100009,50.81095652300003],[82.67276208500013,50.78976918600007],[82.60423913600019,50.76904693600015],[82.47582320100011,50.71401153599999],[82.43029626500007,50.741141663000164],[82.40828210500015,50.74837636300013],[82.36249678600021,50.74212351500013],[82.3513346760001,50.74553415900006],[82.34120609500022,50.75028839100007],[82.32839034000008,50.75209706600005],[82.31366255700007,50.74775624700005],[82.30115686000006,50.7409349570001],[82.2883927820001,50.73742096000014],[82.27314823400016,50.7430536910001],[82.25573327600009,50.745224101000176],[82.23630293800012,50.73447540300005],[82.21661421700016,50.71943756100016],[82.19878584800014,50.70879221600008],[82.1736711020002,50.70305613200012],[82.14731612100015,50.701609192000134],[82.0955363360001,50.708120423000096],[82.07310876500017,50.715665181000055],[82.01254398700021,50.750133363000096],[81.99032312000011,50.75964182500009],[81.94536462400018,50.76920196600018],[81.89503177900009,50.77421458000005],[81.82242639100016,50.76573964500015],[81.80087732000013,50.76785837900003],[81.76346358300006,50.78434316],[81.74413659700011,50.784911601000076],[81.72573978700021,50.77462799100006],[81.69721439600008,50.74501739600011],[81.67411503100018,50.73602569600017],[81.46022627700009,50.73034128900004],[81.43108077000014,50.74072825200015],[81.41878177900011,50.76248402900016],[81.42611983200018,50.78816721600004],[81.44472334900016,50.813385315000104],[81.46611739100015,50.833745830000126],[81.43950402900006,50.85968739800007],[81.4160946050001,50.88965972900003],[81.4012117930001,50.92299102800017],[81.40079838100021,50.95911285400008],[81.27744673600009,50.962678528000154],[81.15884932500009,50.938235576000025],[81.10438236500008,50.936685282],[81.0779240310001,50.94066436800007],[81.05828698700005,50.94707224500003],[81.05151737500009,50.95570221000015],[81.0540495200001,50.96986155200001],[81.0805078540001,51.030865580000075],[81.14717045100011,51.135949606000125],[81.15595544400011,51.157421164000155],[81.158642619,51.174267681000124],[81.15202803600013,51.186540833],[81.13275272600018,51.19447316500005],[81.11285730000006,51.19594594400006],[81.09833622300002,51.190907491000175],[81.07012089000008,51.17199391700005],[81.04485111500011,51.173518372000146],[81.0221134850001,51.17739410400009],[80.97601810700009,51.19108835900011],[80.93607222500006,51.20568695100009],[80.92423832200015,51.216073914],[80.91628015100017,51.23537506100014],[80.91421309500012,51.27017913800002],[80.9057381600002,51.283563335000146],[80.8824837650001,51.28485524500009],[80.86408695500009,51.275837708000054],[80.85452681500007,51.26462392200001],[80.84253788300006,51.25751841300017],[80.81659631300008,51.26100657200011],[80.68275435400014,51.302011820000146],[80.6645642500001,51.30015146900014],[80.64503055900016,51.289247742],[80.63242150900007,51.27795644100003],[80.62146610500015,51.26454640700008],[80.6141280520001,51.24966359500003],[80.61247440600012,51.233876445000064],[80.59924523900023,51.208554993000156],[80.56131473900021,51.20209543900001],[80.4761519780001,51.20964019800006],[80.45207076000023,51.207934876000095],[80.43439742000007,51.20062266000012],[80.42199507700016,51.18757436200015],[80.41341678900002,51.16842824300006],[80.40762902800006,51.13574290000018],[80.40711226500011,51.117216899000034],[80.41052290800016,51.10484039400008],[80.42406213400014,51.09210215200012],[80.4516573490001,51.07349863700007],[80.46106245900009,51.05895172200012],[80.46447310400012,51.04370717400017],[80.46498986900016,51.0257754520001],[80.46312951700023,51.00784373000012],[80.45940881400006,50.9926508590001],[80.43904829900012,50.95813100300002],[80.40287479700007,50.9337397260001],[80.36019006400008,50.91921864900014],[80.32039921100008,50.91410268200014],[80.2795748290001,50.91715159100009],[80.26727583900006,50.91565297500007],[80.25818078600017,50.91131215500009],[80.24371138500013,50.898651429000054],[80.23482303900013,50.89322540300018],[80.19544559700009,50.88232167600004],[80.18128625500017,50.8756554160001],[80.1681604410002,50.8598424280001],[80.15451786300011,50.82723460000015],[80.14273563600008,50.81710601800002],[80.11917118400018,50.81493560800011],[80.10160119600013,50.82155019200012],[80.06697798700012,50.84661326100003],[80.04930464700013,50.85234934500009],[80.01540490800019,50.839481913],[80.03111454300009,50.80878611300015],[80.08599491400017,50.75214874300015],[80.05498905500016,50.75287221300006],[80.0212960210001,50.766876526000075],[79.99008345600012,50.788115540000135],[79.96651900200011,50.810181376000045],[79.95525354000009,50.82599436400012],[79.92693485500016,50.87849762000008],[79.87360477700017,50.95017283200015],[79.82730269400011,51.01239125600007],[79.73800581900011,51.132435609000176],[79.64850223800013,51.25242828400009],[79.55920536300007,51.372498475000114],[79.46980513500013,51.49259450400013],[79.36304162600007,51.61757395500011],[79.30432255000014,51.686378260000126],[79.2563814700001,51.74255340600014],[79.14972131400006,51.86758453400013],[79.04295780400017,51.99251230900007],[79.04285445100007,51.99251230900007],[79.04275109900011,51.99251230900007],[79.04275109900011,51.9925898230001],[78.90126102700017,52.15392364500003],[78.75956425000018,52.31525746700008],[78.61797082500019,52.47661712700001],[78.47648075400016,52.63792511100002],[78.36827030500015,52.75264679000009],[78.26005985500015,52.867394308000186],[78.15195275900007,52.98216766400016],[78.04384566300021,53.09691518200004],[77.9763562420001,53.168512879],[77.86680220600012,53.272330832000094],[77.78465673900016,53.327440475000074],[77.7338904220002,53.36149851500012],[77.6127608640002,53.44278554400002],[77.47550826000011,53.50825958300011],[77.29009322200014,53.596729635000045],[77.10467818200001,53.68514801100015],[76.91926314300017,53.773618063000114],[76.73384810400009,53.862036439000136],[76.61096154800006,53.920637512000056],[76.52569543500013,53.96130686500011],[76.49520633900013,53.992312724000115],[76.4825972900002,54.03013987300001],[76.47649947100015,54.04202545200003],[76.37438684100019,54.14775543200007],[76.37666060400014,54.15426666300014],[76.39361047400021,54.16175974500008],[76.4126274010001,54.16568715500013],[76.47649947100015,54.164033508],[76.60383020100008,54.13535308900002],[76.66460168500006,54.13406117800003],[76.71627811700009,54.17085479800014],[76.72619999200012,54.180208232],[76.75121138500018,54.19400583900013],[76.76247684700016,54.20263580400008],[76.77022831300016,54.21312611900014],[76.78232059800015,54.24237498000017],[76.80009729000008,54.26066843700014],[76.82087121600014,54.27761830600015],[76.83771773200007,54.296893615999984],[76.84319543500007,54.32231842100002],[76.83420373600015,54.34567616800014],[76.81580692500013,54.35559804400004],[76.76609419800016,54.36458974200018],[76.75296838400018,54.37668202700017],[76.76464725800021,54.39053131200005],[76.78676477000008,54.402830302000076],[76.80474816900002,54.41011667900015],[76.88567346200014,54.42277740499999],[76.9035535080001,54.43259592700014],[76.91047815000016,54.45461008800013],[76.89590539600012,54.46386016900006],[76.87234094200019,54.46468699200006],[76.85239384000008,54.461172995000126],[76.78211389100008,54.439468893000125],[76.75720585200023,54.437091776999985],[76.70129195100006,54.44024403900011],[76.67276656100007,54.43647166],[76.65178592900006,54.42231231700008],[76.64568811,54.40370880200011],[76.64527469900011,54.383813375],[76.64093387800013,54.366501770000106],[76.62305383300006,54.35590810200004],[76.607757609,54.35456451500006],[76.57716516100012,54.35678660100017],[76.56186893800006,54.35626983700003],[76.54006148300013,54.3511021930001],[76.47649947100015,54.323145244000116],[76.43309126800008,54.31658233700013],[76.23424035700012,54.34743316700012],[76.21481001800007,54.342213847000025],[76.19393274000018,54.32562571300009],[76.17708622300019,54.30676381500017],[76.16974817000019,54.29136423800018],[76.17191857900009,54.27467275100007],[76.18380415900006,54.25157338500015],[76.04190067500005,54.211730855000056],[75.86527063000008,54.16206980500006],[75.75199589000007,54.13018544599999],[75.69123357400022,54.113138241000016],[75.64037479600009,54.09886952800018],[75.60316776600003,54.094528707],[75.49981490100016,54.10233184800001],[75.46436486900015,54.100574850000136],[75.4292248940001,54.09008453400009],[75.36070194600009,54.059543763000086],[75.4339791260002,53.98652496400014],[75.27750289000008,53.917691956000155],[75.15771691900014,53.86508534800008],[75.02790572200016,53.807931213000025],[75.00082727100019,53.80648427300004],[74.92393273900021,53.83097890300009],[74.88848270700007,53.83635325200005],[74.80621382700022,53.83769683900012],[74.77200402800023,53.83087554900008],[74.76218550600007,53.822555644000104],[74.75433068900023,53.808499654000094],[74.74337528500016,53.779457499],[74.73490035000006,53.765194804000124],[74.72528853400016,53.75914866200015],[74.67464563000007,53.757081604000014],[74.66296675600019,53.754962871000046],[74.6544918220001,53.74839996400006],[74.64446659400008,53.73460235600011],[74.62679325400009,53.68731842000007],[74.61645796700004,53.68070383800006],[74.45347050000007,53.68499298100012],[74.43848433500008,53.673417460000096],[74.42969934100019,53.65357371099999],[74.42081099500008,53.60308583700008],[74.42659875500007,53.596367900000146],[74.44458215400007,53.585825908000075],[74.45543420400011,53.57740265000011],[74.4568811440001,53.56975453700012],[74.40913212100023,53.477563782000075],[74.38835819500011,53.46221588200011],[74.35890262900008,53.46614329100008],[74.30619266800008,53.4923949180001],[74.30608931500015,53.4923949180001],[74.30598596200011,53.492601624000066],[74.26960575400014,53.51523590200009],[74.26309452300003,53.53022206600018],[74.27032922400022,53.553218079000125],[74.2504854740001,53.556783753],[74.24159712700012,53.567790833000075],[74.2352926020001,53.581898499000104],[74.22330367000015,53.59461090200007],[74.2138985600001,53.59703969400011],[74.14795943200008,53.598021545],[74.13721073400004,53.593939107],[74.11871057200014,53.56954783100014],[74.10765181500014,53.56510365900006],[74.07685266100006,53.56618886400007],[74.06279667200013,53.57321685800015],[74.06145308400008,53.589494935000076],[74.06300337700011,53.6087185680001],[74.05804244000015,53.62458323200012],[74.04357303900011,53.629957581000085],[73.97670373600013,53.635176901000094],[73.93670617700016,53.639517721000075],[73.904150025,53.63915598500007],[73.87273075400016,53.63212799100016],[73.803277629,53.598383281],[73.7877746990001,53.59507598900011],[73.75325484200013,53.60701324500006],[73.73651167900019,53.60975209600018],[73.65982385300006,53.61156077100016],[73.65289921100006,53.609183656000035],[73.6512455650002,53.60277577699999],[73.65103885900007,53.59476593000004],[73.64411421700018,53.57915964800016],[73.64318404100013,53.57021962500015],[73.64070357300014,53.56324330700015],[73.63191857900007,53.56086619100002],[73.60794071500007,53.56334666],[73.60039595600018,53.56288157200005],[73.58251591000013,53.558644105],[73.57600467900008,53.553166402000116],[73.57259403500015,53.54319285100011],[73.56349898300007,53.525467835000185],[73.55523075300013,53.51477081400016],[73.54654911300017,53.50691599500014],[73.52370813000007,53.492498271000116],[73.52370813000007,53.4923949180001],[73.52360477700014,53.4923949180001],[73.45069726800008,53.44855956200011],[73.42407596800008,53.43255360900004],[73.41095015500011,53.43002146500005],[73.34718143800009,53.459373678000034],[73.39120975700004,53.52024851500006],[73.2305994060001,53.57233835900003],[73.2588147380001,53.60628977500015],[73.22491499800017,53.629854228000156],[73.22036747300015,53.64308339500006],[73.22966923000016,53.662410381000186],[73.24475874900017,53.67481272400006],[73.2637756760001,53.68101389600007],[73.30656376200008,53.68566477500012],[73.33116174300002,53.77516835500013],[73.34738814300007,53.787622376000016],[73.4378219000001,53.808499654000094],[73.39120975700004,53.82824005200014],[73.41095015500011,53.85025421200014],[73.43182743300011,53.86544708300006],[73.45590865100021,53.8736636360001],[73.48526086400008,53.8748521930001],[73.63429569500006,53.85743723500018],[73.66168420500011,53.86084788],[73.6828715410002,53.874128724],[73.69713423700009,53.90084543900018],[73.74064579300008,54.05794179300007],[73.68493859900016,54.04843333000018],[73.67491337100014,54.05158559200013],[73.67170943200009,54.072359518000084],[73.67046919800006,54.075925192000156],[73.65434615000007,54.078509013000044],[73.60153283700012,54.07122263600017],[73.58851037600007,54.06615834600011],[73.5919210210001,54.05773508800011],[73.60091272000014,54.04693471300008],[73.60442671700011,54.03468739800014],[73.58685673000011,54.01944285100011],[73.5282556560002,54.01070953400013],[73.5198840740002,53.99241607700016],[73.5198840740002,53.992312724000115],[73.52153772000017,53.96874827100014],[73.51802372200021,53.95603586800017],[73.50593143700021,53.94973134400006],[73.48164351400013,53.945390523000086],[73.46903446500019,53.94730255200001],[73.44598677600007,53.96389068700002],[73.43348107900012,53.970660299000045],[73.42407596800008,53.97262400400008],[73.39276005100007,53.974019267000145],[73.3842851150001,53.970298564000146],[73.38128788300017,53.960221660000016],[73.37932417800013,53.948697815000074],[73.37394982900017,53.94094635100008],[73.36030725100008,53.938414205000086],[73.19070520000015,53.96161692300008],[73.06275435400013,53.97908355700004],[73.04435754400012,53.992312724000115],[73.03526249200016,54.020579732000115],[73.0236869710001,54.03396392900005],[72.97676477100005,54.04770985900007],[72.97356083200006,54.08651886000003],[72.96839318900018,54.104140524],[72.95681766800013,54.117524720000134],[72.94203820800013,54.121762187],[72.88550419100008,54.11731801400002],[72.75734664000007,54.12599965500006],[72.62422814900017,54.13499135400009],[72.57306848200008,54.12868682900007],[72.52738651600005,54.100058085000015],[72.51922163900022,54.088224183000094],[72.50878299900008,54.068742167],[72.50309859300015,54.05086212200014],[72.50940311700018,54.043575745000155],[72.59714969900018,54.05458282500014],[72.6317729080001,54.053911031000084],[72.65616418500022,54.042542216000165],[72.67559452300011,54.021664938000114],[72.69481815600014,53.99257110600011],[72.7001925050001,53.95763783800011],[72.67373417100012,53.950506490000166],[72.5721383060002,53.97644806000012],[72.55684208200014,53.977223206000026],[72.54392297400014,53.97076365200017],[72.51808475800013,53.943220114],[72.47674361200009,53.913402812000086],[72.45555627400014,53.9053412890001],[72.42341353400009,53.903480937],[72.39220096900013,53.90823516900018],[72.3729773360001,53.920069071000015],[72.37277063000013,53.936243795],[72.38310591600006,53.956449281000076],[72.40780725100015,53.992312724000115],[72.40780725100015,53.99251943000008],[72.41865930200012,54.01603220700017],[72.40512007600014,54.03065663700014],[72.3818656820001,54.04300730400011],[72.36357222500007,54.059543763000086],[72.35995487500017,54.068638815000085],[72.35685428800011,54.081764628000045],[72.35840458200002,54.092978414000086],[72.36822310400012,54.0963373820001],[72.3985054930001,54.08967112300009],[72.40791060400008,54.08956777000007],[72.4119413660001,54.09277170900013],[72.4192794190001,54.10532908200004],[72.42320682800008,54.10868805000014],[72.43974328600015,54.108894755],[72.45421268700008,54.10713775700013],[72.46671838400007,54.10992828399999],[72.47674361200009,54.123674215000115],[72.48201460800013,54.12832509400009],[72.48439172400018,54.13245920900003],[72.48294478400007,54.13561147100016],[72.38806685400019,54.157625631000045],[72.2985632730001,54.178399556999985],[72.33297977700013,54.22377146500013],[72.33711389200008,54.2365355430001],[72.3244014900001,54.25348541300009],[72.2787195240002,54.2627354940001],[72.26745406100021,54.27348419200002],[72.25277795400015,54.30345652300014],[72.22187544700014,54.33322214800016],[72.18477177000008,54.35683827800006],[72.15180220500011,54.36825876900018],[72.04317834500009,54.37802561500003],[72.02467818200009,54.3709459440001],[72.02705529800019,54.35533966100017],[72.0384241130001,54.34603790300004],[72.07129032400022,54.33322214800016],[72.09475142400012,54.32076812800007],[72.10301965400006,54.31156972300009],[72.09867883300008,54.30051096600006],[72.07800826000008,54.27389760300004],[72.07211714700023,54.2627354940001],[72.06756962100022,54.251108297000044],[72.0657092690001,54.24097971700009],[72.06539921100014,54.22800893200015],[72.06674279800008,54.222376201000046],[72.0851396080001,54.21312611900014],[72.11149458800017,54.20620147700004],[72.14229374200013,54.20330759700006],[72.16999230900015,54.196848043],[72.18735559100017,54.179433085000156],[72.19045617700013,54.1519929000001],[72.17764042200022,54.135973205000155],[72.1551094970001,54.128376771000106],[72.12885786900009,54.126051331000085],[72.0995056560001,54.131890768000154],[72.07697473100008,54.14832387300011],[72.01868371600014,54.21498647100013],[72.00245731700014,54.22563181600013],[71.98364709500012,54.23157460600014],[71.95801558500013,54.23596710200003],[71.762471965,54.247645976000015],[71.74138798000008,54.24242665700008],[71.72536828700007,54.22909413700015],[71.71544641200015,54.21074900300009],[71.71224247300009,54.19069854700005],[71.71730676300015,54.146463522000104],[71.70872847500013,54.13220082700003],[71.68061649600006,54.119075013000085],[71.64723352100012,54.10858469700012],[71.63235070900006,54.10713775700013],[71.61498742700016,54.10951487300018],[71.60465214100006,54.11370066400012],[71.58418827400007,54.12589630200013],[71.5735429280002,54.12920359300013],[71.54935835800019,54.12698150700011],[71.49912886600006,54.11158193000013],[71.4771147060001,54.10966990200002],[71.4683297120001,54.158400777000146],[71.4624385990002,54.17152659100013],[71.45313684100007,54.18134511300009],[71.44352502500007,54.18511749300002],[71.41298425300008,54.18444570000003],[71.38156498200013,54.18883819600005],[71.34973230000017,54.19767486600013],[71.32058679300016,54.201033834000135],[71.29629886900008,54.18899322500006],[71.24575931800021,54.13576650000003],[71.2180607510002,54.11628448600011],[71.1823006590001,54.10155670200011],[71.16126835100007,54.101970113000114],[71.14369836400007,54.11370066400012],[71.11300256400014,54.150235901000045],[71.09744795700011,54.165067037000156],[71.0823584390001,54.17426544200008],[71.04396285000009,54.18594431600006],[71.05155928500008,54.200310364000146],[71.05636519400016,54.223409729000124],[71.0572436930001,54.24712921200016],[71.05207605000012,54.26320058200003],[71.0387952070001,54.26759307900012],[70.97714522300006,54.270125224000125],[70.97084069800022,54.305006816000095],[70.98003910300022,54.32505727200014],[71.00339685000009,54.333118795000026],[71.039467,54.33208526700006],[71.0598275150002,54.32795115200012],[71.09687951700008,54.315652161000074],[71.11625817900014,54.3117247520001],[71.13444828300007,54.31156972300009],[71.19062056500016,54.31818430700015],[71.19583988500008,54.36081736200005],[71.19568485500022,54.37451161700007],[71.19811364800009,54.39166819300014],[71.19801029500016,54.399523011000085],[71.19346276900009,54.40401886000011],[71.17609948800012,54.40758453400015],[71.16865808200006,54.41094350200008],[71.16591923000013,54.41704132100013],[71.17103519800011,54.45099273700004],[71.16690108200012,54.462723287000145],[71.14685062600003,54.4761591600001],[71.1451969810001,54.480603333000104],[71.1459204510002,54.4861843870001],[71.14824589000014,54.492488913000116],[71.14121789500021,54.5637507120001],[71.14757409700016,54.59144928000002],[71.1790450440001,54.60870920900011],[71.23015303600019,54.617545878000115],[71.2523222250002,54.625349019000126],[71.26487959800014,54.639198304],[71.26467289200016,54.66172922800002],[71.25278731300014,54.68239980100013],[71.21878422000012,54.714180806000066],[71.20069746900016,54.72399932900014],[71.18033695500006,54.727358297000066],[71.13692875200016,54.72704823900007],[71.09724125100016,54.7330427050001],[71.04701176,54.74906239900003],[71.0059806730001,54.77422882100007],[70.99409509300001,54.80750844400002],[70.9971956790001,54.83484527600013],[70.98996097800013,54.848642884000114],[70.95327071100014,54.873499247000055],[70.94593265800009,54.88791697300017],[70.94748295100007,54.90605540000011],[70.95513106300004,54.923263652000074],[70.96644820100002,54.93494252600006],[70.97445804800012,54.946931458],[70.95699141500009,54.97349314400012],[70.9633992920001,54.992251689000035],[70.96923872900018,55.00506744400009],[70.97332116800013,55.01845164000004],[70.97714522300006,55.046098531000055],[70.97745528200014,55.04790720600015],[70.97745528200014,55.05157623300015],[70.97714522300006,55.05338490900011],[70.97786869300015,55.06573557600008],[70.97714522300006,55.077982890000115],[70.9600920010001,55.10557810500001],[70.861906779,55.18056060800008],[70.79317712400004,55.233167216000176],[70.78211836800003,55.24846344000004],[70.78893965700009,55.26546498700007],[70.80454594000011,55.28153635700012],[70.82035892800016,55.294145406000055],[70.7775708410002,55.30701283800015],[70.72124353000011,55.313110657000024],[70.66574304200005,55.30918324800005],[70.62543542500006,55.29249176100011],[70.60652185000006,55.28050282900012],[70.5844043380001,55.27316477500015],[70.56125329600016,55.26959910100008],[70.53887740100005,55.26923736600018],[70.46858559900008,55.28546209800014],[70.46007084200006,55.28742747100004],[70.44115726700008,55.28334503300012],[70.400022827,55.24593129500015],[70.38808557200011,55.230273336],[70.38576013200004,55.222418518000055],[70.38529504400006,55.21394358300016],[70.38245284100006,55.206243796000145],[70.37263431800008,55.20055938800011],[70.28462935400009,55.183196106000096],[70.26401045700018,55.17342926100006],[70.2313509520001,55.141493225000076],[70.2136776130001,55.13198476100008],[70.1970378010001,55.133483378],[70.0586483160001,55.18702016300013],[70.01999434400008,55.1953400680001],[69.94030928600014,55.200249329000044],[69.91168054200014,55.21161814400013],[69.83044519100005,55.27657541900008],[69.8022815350001,55.29207834900008],[69.67386560100013,55.334039612000176],[69.47728845200012,55.34943918900016],[69.33455814700002,55.38514760400007],[69.31027022300006,55.38147857700007],[69.2262443450002,55.33357452400015],[69.18614343200014,55.32577138300006],[69.16454268400011,55.34742380800012],[69.14779952000018,55.378222962000095],[69.12258142100015,55.39786000600013],[68.94316084800019,55.43455027300008],[68.92729618300008,55.43372345000007],[68.91112146000009,55.42736724800015],[68.90243981900014,55.41951243100011],[68.90243981900014,55.412484436],[68.90657393400014,55.40504303000007],[68.91783939600012,55.3709365850001],[68.93230879700016,55.36080800400008],[68.9523592530002,55.355898743000026],[68.97726729300004,55.34670033800005],[68.9832617590001,55.308563131000156],[68.98088464400016,55.291458232000124],[68.97060103400023,55.27864247700013],[68.94564131700017,55.27037424700008],[68.92280033400007,55.276368714000014],[68.9031632900002,55.29083811500006],[68.86678308200013,55.3256680300001],[68.84600915500019,55.33677846300012],[68.82259973100022,55.34354807600006],[68.73423368500019,55.3517140660001],[68.72250248200012,55.352798157000095],[68.70059167500008,55.36049794600008],[68.6889128010001,55.3432896930001],[68.68234989400011,55.32716664700003],[68.68085127700012,55.309803365],[68.68369348100012,55.28861602800005],[68.6764071050002,55.27321645100007],[68.62989831500008,55.254871318000156],[68.61367191600007,55.24308909200009],[68.61284509300006,55.23471751000001],[68.61821944100019,55.21544220000005],[68.61584232600015,55.20546864800015],[68.60530033400019,55.19559845000007],[68.5936214600001,55.19358307000011],[68.5671631270002,55.197562154000096],[68.54411543800009,55.196890361000115],[68.47734948800021,55.182834372000016],[68.40117842600014,55.19471995100004],[68.37678715000018,55.19508168500012],[68.32573083500013,55.18195587200015],[68.3057837320001,55.18138743100012],[68.28986739100017,55.18526316300016],[68.2770516350001,55.190844218000095],[68.26237552900014,55.194048157000154],[68.24087813300017,55.191154277000166],[68.17710941600015,55.17053538000006],[68.18475752800012,55.16727976500008],[68.20697839300007,55.15415395100011],[68.19054528800021,55.125370179000086],[68.22811405400007,55.10159901900012],[68.30816084800009,55.072815247],[68.30423343900011,55.05260976200013],[68.28159916200016,55.04713206000004],[68.25374556500017,55.045891826000094],[68.23478031400012,55.03850209500008],[68.22599532100011,55.02088043200011],[68.22180953000012,55.007754618000135],[68.213076212,54.998452861000104],[68.1909070240001,54.992561748000114],[68.1836206460001,54.967136943000085],[68.16605065900015,54.956129863],[68.00967777500014,54.94300404900004],[67.91314620000011,54.96915232400015],[67.88224369300022,54.9704442350001],[67.84679366100008,54.963933004000026],[67.81733809400012,54.952150777000114],[67.79754602000011,54.93716461200016],[67.75791019700014,54.897838847000074],[67.69848230000011,54.86791819200015],[67.6227246500001,54.85386220300002],[67.44299401900017,54.85701446600008],[67.37793339000021,54.849056295000125],[67.31132247000019,54.85990834600006],[67.28393396000016,54.85329376300017],[67.26005944800008,54.836912334000104],[67.23954390500009,54.81293446900009],[67.21334395300019,54.7971731570001],[67.17396651200008,54.79138539700013],[67.09851892100019,54.79200551400011],[67.0669962970002,54.78750966400018],[67.00818851700014,54.76792429600006],[66.97733768700007,54.76368682900012],[66.78179406800021,54.758209127000114],[66.76045170100022,54.750922750000036],[66.72241784700012,54.72720326800011],[66.7003003340001,54.719245097000126],[66.63766849800018,54.71366404200005],[66.50992435700007,54.71671295200015],[66.44651737500013,54.710925191000065],[66.09777630500011,54.63715821400014],[65.9774503990001,54.61170644200003],[65.96065555800013,54.62798451800013],[65.95187056500006,54.69366526300008],[65.93280196100008,54.70255360900002],[65.8594214280001,54.685758769000145],[65.8269686280001,54.672684632000184],[65.7983398850001,54.648138327000126],[65.77033125900013,54.617390849000074],[65.74397627800008,54.600854391000084],[65.71297041800014,54.59718536400008],[65.57458093200015,54.625452372000055],[65.47737756300009,54.63268707300013],[65.44978234800013,54.62746775400011],[65.4448730880001,54.6141869100001],[65.45619022700006,54.57785837800013],[65.4490072020001,54.556619364000156],[65.42750980600007,54.5527953090001],[65.37035567200022,54.56245880200005],[65.34157190000022,54.56147694900006],[65.21429284700011,54.527887269000146],[65.19816980000016,54.51615671800006],[65.19806644700012,54.492282206000155],[65.1994617110001,54.487786357000154],[65.20225223800017,54.47254180900001],[65.18132328300007,54.449132385000055],[65.21294925900017,54.34304067000012],[65.18421716400005,54.31043284100014],[65.17377852400014,54.310174459],[65.14370284000003,54.317615866000104],[65.13646814000018,54.316375631000184],[65.12447920700006,54.308934224000055],[65.11745121300012,54.30640208000007],[65.10019128400015,54.305471904000015],[65.0854118250002,54.308572490000145],[65.0714591880002,54.31487701500008],[65.05709314000009,54.323868713000124],[64.97771813900007,54.386603902000054],[64.91064213100006,54.402726950000144],[64.84723514900011,54.38391672800013],[64.78455163600007,54.353220928],[64.72016280100016,54.333842265000115],[64.68429935700011,54.33611602800015],[64.65267338100014,54.34712310900012],[64.59148848500008,54.37854237900016],[64.5785177010001,54.38557037300007],[64.5365047600001,54.36862050399999],[64.51139001500016,54.36510650700002],[64.50007287600008,54.366191712000116],[64.47898889200016,54.370894267],[64.4670516360002,54.37197947200009],[64.46178063900018,54.36877553300012],[64.454287557,54.36169586200002],[64.44457238800007,54.35466786799999],[64.43253177900013,54.35151560500013],[64.3338297930002,54.344642640000146],[64.30856001800007,54.35182566400011],[64.29403894000009,54.353375956000136],[64.28230839000011,54.3480532840001],[64.27621057100006,54.344384258],[64.25585005700012,54.33864817400003],[64.22530928500012,54.33461741100013],[64.17663008600019,54.3205097460001],[64.15203210500013,54.317357483000066],[64.10810713700008,54.32474721400014],[64.09374108900008,54.3241787730001],[64.0843359780001,54.32019968700003],[64.06800622600011,54.30769399000003],[64.05953129100007,54.30371490600014],[64.04805912300017,54.302681377000155],[64.03514001500017,54.30397328700012],[64.02325443600014,54.30759063700001],[64.004495891,54.319734599000085],[63.99596927900021,54.31549713100004],[63.98821781500013,54.30784902000006],[63.98036299600008,54.30371490600014],[63.97896773300007,54.29648020500018],[63.99369551600009,54.28040883400011],[64.0254248460001,54.255242411000076],[64.0078548590002,54.22868072500016],[63.97664229300008,54.21886220300008],[63.94036543800009,54.21529653000012],[63.90801599100021,54.207493388],[63.89747399900014,54.19416086900016],[63.883624715000074,54.19741648400016],[63.856029500000055,54.20186065700007],[63.77350223800007,54.239687806000134],[63.743994995000065,54.24873118100002],[63.70864831600013,54.250436504000064],[63.54493737800008,54.20645986000004],[63.47755131000022,54.20397939100006],[63.4496977140001,54.19612457300012],[63.396781047000076,54.17059641500008],[63.36830733300004,54.16284495100016],[63.33161706500019,54.16268992100011],[63.3285919570001,54.16311007500015],[63.21627526900008,54.17870961500007],[63.15674401900018,54.18005320300012],[63.12377445500013,54.17411041300012],[63.11002852300007,54.15798736600014],[63.11602299,54.13969390900017],[63.12532474800016,54.124862773000146],[63.127443481000135,54.11044504800012],[63.11219893400019,54.09370188400008],[63.0846553960001,54.085640361000095],[62.98548832200006,54.09287506200014],[62.902392619000096,54.07845733700004],[62.87521081600019,54.07954254200003],[62.831337525000066,54.09272003200011],[62.812062215000225,54.09499379500012],[62.757181844000144,54.08109283500015],[62.67026208500008,54.077733867000134],[62.629127645,54.071170960000146],[62.58096521000007,54.05360097300009],[62.55057946700017,54.026832581000015],[62.56318851700021,53.99251943000008],[62.569389689000076,53.9878168740001],[62.58654626400008,53.969833476000034],[62.54365482600011,53.94301340700004],[62.53176924700008,53.930352681],[62.53176924700008,53.92249786400008],[62.53662683100018,53.914953105],[62.5451017660001,53.8836888630001],[62.54122603300007,53.87666086800003],[62.5252580160002,53.87185496100001],[62.51161543800018,53.87263010700012],[62.498903036000144,53.87779775000003],[62.48737919200018,53.885962626000136],[62.47771569800008,53.89516103200013],[62.45668339000005,53.909217021000146],[62.408159220000094,53.92471995000007],[62.38996911600006,53.941566467000044],[62.38661014800002,53.96130686500011],[62.39958093300007,53.97448435500009],[62.443815959000084,53.992312724000115],[62.444022664000016,53.992312724000115],[62.4461413980001,54.014533590000084],[62.433480672000066,54.02466217100012],[62.41270674600011,54.02662587500005],[62.002602580000115,54.017375794000046],[62.00239587400014,53.99830719000006],[62.0033260500002,53.992312724000115],[62.0036361090001,53.93200632800012],[61.891653280000156,53.936243795],[61.85640995300016,53.94270334900015],[61.83615279100015,53.95112660800013],[61.82995161900006,53.96037668900006],[61.828091268000065,53.97324412100015],[61.82054650900014,53.99257110600011],[61.80638716700016,53.99753204400007],[61.79129764800009,54.00078765900004],[61.77703495300008,53.99990916000008],[61.75502079300022,53.98326934800017],[61.74210168400011,53.981564026000015],[61.72856245900002,53.98528473000012],[61.71533329200022,53.99257110600011],[61.619938599000214,53.99257110600011],[61.6164246010001,53.974174297],[61.61105025300011,53.95954986600013],[61.600508260000225,53.950248108000025],[61.581801392000074,53.94766428600009],[61.56392134600011,53.95174672500011],[61.5561698810001,53.96094513000009],[61.55275923600008,53.99251943000008],[61.4785518800002,54.00290639300003],[61.46191206900019,54.01112294600013],[61.43317997200008,54.0474514780001],[61.41767704200017,54.05597808900005],[61.337681925000226,54.063161112999985],[61.31153365000014,54.05985382100009],[61.2933435460001,54.04605621400013],[61.274843384000036,54.02853790300016],[61.24983199000005,54.020734762000146],[61.19350468000007,54.01825429300008],[61.20125614400015,53.99835886700008],[61.204770142000115,53.99257110600011],[61.22513065600006,53.960221660000016],[61.2305050050002,53.94306508400014],[61.22730106700012,53.92590850900008],[61.21076460800006,53.90766672800014],[61.1928845620001,53.90709828700007],[61.176244751000155,53.91650339800013],[61.16301558400008,53.92849233],[61.15557417800007,53.938414205000086],[61.151853475000024,53.9454422000001],[61.14523889100022,53.95014475500006],[61.096352987000074,53.956242574000115],[61.063796834000215,53.955312398999986],[61.017391398000115,53.94895619800015],[60.99610070800023,53.9414114390001],[60.978013957000115,53.926683655000105],[60.97181278500014,53.915831604000125],[60.969435669000084,53.90425608300011],[60.971399373000196,53.89299062100004],[60.978013957000115,53.88260365900011],[60.999614706000074,53.87939971900015],[61.06524377400009,53.878469543],[61.08498417200005,53.87531728100005],[61.09521610500016,53.87014963800014],[61.11495650200013,53.85232126900008],[61.1424483640001,53.84188263000006],[61.177174927000095,53.83283925400009],[61.20197961500016,53.819610087000015],[61.19908573400008,53.797130839000104],[61.17872522000008,53.780852763000084],[61.15175012200021,53.765246481000034],[61.12746219900012,53.74715972900013],[61.11567997200021,53.72364695300003],[61.106894979000145,53.712433167000185],[61.06793094900015,53.708919169000026],[61.05222131300016,53.70328643800009],[61.04477990700016,53.69140085900007],[61.04395308400009,53.67920522100014],[61.04488326000009,53.66669952400015],[61.042712850000186,53.65424550400017],[61.00757287600006,53.63574534200013],[60.90473677600019,53.657087708000134],[60.880242147000125,53.632799785000046],[60.9073205970001,53.61362782800013],[61.04664025900015,53.60846018500005],[61.096352987000074,53.59921010400002],[61.103380982000054,53.592492167],[61.11454309100011,53.57621409100007],[61.12146773300017,53.56980621400014],[61.14038130700012,53.56272654300001],[61.28073449700017,53.542417704000094],[61.31608117700008,53.54520823200014],[61.3612463790001,53.58257029200011],[61.39028853400012,53.58851308200012],[61.50304650900008,53.58897817000006],[61.516792440000096,53.585722555000146],[61.52836796100015,53.57166656500014],[61.55534305900009,53.50572743800002],[61.51472538300006,53.492498271000116],[61.488473755000115,53.479320780000066],[61.43731408700009,53.44650624700013],[61.41230269400008,53.43575754900011],[61.38160689300016,53.4361192840001],[61.35349491400021,53.44981353800012],[61.32838016700012,53.47074249300012],[61.30708947800022,53.49265330000015],[61.28765913900022,53.50319529200014],[61.26109745300013,53.506657614000076],[61.23525923700012,53.503040264],[61.21820601400006,53.49265330000015],[61.21427860500009,53.46185414700001],[61.20983443200012,53.44981353800012],[61.20094608600019,53.43622263700006],[61.15598758900015,53.39669016500001],[61.13717736800007,53.37312571299999],[61.13366337100009,53.348140158000106],[61.142758423000174,53.323025411000074],[61.16270552600012,53.299150899],[61.20290979000013,53.276439107000115],[61.24952193200008,53.26969533300009],[61.344813273000085,53.270108745000115],[61.3798498940001,53.26186635400016],[61.47803511500015,53.21512502100016],[61.51431197200023,53.20866546700002],[61.54728153500016,53.21145599400016],[61.64308964000011,53.24334035300005],[61.66427697800006,53.23889617900012],[61.70510135900017,53.20349782300009],[61.76421919800011,53.16946889200015],[61.83511926300011,53.15112376000017],[62.05066166200007,53.12476877900012],[62.083217814000115,53.11329661100011],[62.10802250100002,53.08856943799999],[62.116032349000214,53.06459157300016],[62.11365523300017,53.041879780999984],[62.09417321800018,52.99265798000012],[62.09417321800018,52.99247711200017],[62.07267582200014,52.96958445300005],[62.034848674000074,52.95271209800016],[61.95924605400009,52.934935405000125],[61.92255578600006,52.938165182000105],[61.8565133050001,52.97015289400009],[61.81982303900022,52.9782402550001],[61.71781376100009,52.96994618700013],[61.67533573400007,52.97361521400013],[61.65590539600012,52.9708763630001],[61.63647505700012,52.96010182800008],[61.60557255,52.94831960100008],[61.5742566320001,52.9558385210001],[61.5146220300002,52.992554626000086],[61.47803511500015,53.01234670000015],[61.448269491000154,53.021415914000116],[61.424291626000155,53.01735931400013],[61.37664595500021,52.99265798000012],[61.349360799000095,52.984906515000105],[61.31845829300019,52.982503560000154],[61.287349080000155,52.985164897000075],[61.25872033700008,52.99265798000012],[61.22492395100019,53.00640391100013],[61.190300741000065,53.01314768499999],[61.1557808840001,53.009685364000134],[61.12270796700014,52.99265798000012],[61.122604615000085,52.992632142000026],[61.122397909000114,52.99247711200017],[61.12229455500019,52.99247711200017],[61.088601522000054,52.97805938800015],[61.052428020000114,52.97185821600006],[60.975430135000096,52.971548157000186],[60.97460331200008,52.971238098000086],[60.975430135000096,52.97046295200009],[61.05842248500007,52.92217132600017],[60.88489302600013,52.82525217700014],[60.86690962799999,52.812255554],[60.84303511600015,52.784040222000144],[60.829082479000164,52.771637879000146],[60.787431275000095,52.75791778600013],[60.73864872200008,52.750941468000136],[60.69617069500013,52.734921774],[60.67353641700017,52.69386484800013],[60.672192830000114,52.68262522400009],[60.672606242000114,52.67216074700003],[60.67684370900005,52.66358245900001],[60.686662231000156,52.658053081],[60.69968469200008,52.65275624600015],[60.704128866000104,52.64717519200014],[60.706092570000095,52.64056060800006],[60.71167362500014,52.63224070299999],[60.72448938000011,52.62622039800006],[60.7416459560001,52.62536773700013],[60.79311568200009,52.62880422000016],[60.80314091000011,52.627744853000145],[60.808411906000195,52.62118194599999],[60.81347619600009,52.60549814900013],[60.81440637200014,52.58586110500009],[60.80996219900006,52.538422140000094],[60.814923137000186,52.52191152000002],[60.831356242000176,52.51315236400013],[60.923960409000216,52.493747864000156],[60.9364661050001,52.48858022100016],[60.94463098100002,52.47907175700008],[60.95145227100008,52.46108835900018],[60.955896443000114,52.41982472800008],[60.96137414600017,52.40197052000003],[60.978013957000115,52.38760447200012],[61.03992232300001,52.33499786400013],[61.00850305200018,52.31499908500008],[60.96581831900019,52.2995736700001],[60.94742150800018,52.28972931000011],[60.8966752520001,52.25469268900009],[60.876728150000105,52.24590769500013],[60.78123010300013,52.22061208100014],[60.76293664500005,52.210199280000104],[60.72283573400009,52.16958160500017],[60.672192830000114,52.144337667000045],[60.6181392820001,52.142942403000134],[60.56243208800018,52.150332133000134],[60.50651818900011,52.151649882000115],[60.42579960100008,52.12958404600012],[60.347664836000064,52.08961232500014],[60.20276412000007,51.99274485300013],[60.029775857000146,51.99261047500012],[60.00318973800014,51.9925898230001],[60.00318973800014,51.99251230900007],[59.987273397000216,51.96884450400013],[59.985723104000186,51.95228220700012],[59.99461145000013,51.93628835100019],[60.040086711000036,51.871201884000115],[60.06075728400017,51.85867034900009],[60.092279907000055,51.854768779000054],[60.11780806400006,51.86355377200011],[60.12648970600011,51.87910837800014],[60.138065226000066,51.88887522400002],[60.171964966000104,51.880374451000094],[60.27449100700008,51.8328321340001],[60.4520512290002,51.80546946300013],[60.47974979700021,51.784256287000076],[60.47551232900017,51.77619476400009],[60.46579716000022,51.76919260699999],[60.445850057000115,51.76004587900011],[60.44016565000018,51.75394806000007],[60.44119917800006,51.73622304300012],[60.43737512200019,51.72839406400011],[60.41835819500014,51.71935068800015],[60.371539348000134,51.7051655070001],[60.356036418,51.69227223700009],[60.355106242000055,51.671420797000124],[60.375880167000076,51.66253245100002],[60.484710734000174,51.65103444500009],[60.49535608000004,51.646254374000094],[60.498456665000184,51.63715932300012],[60.49990360500012,51.62710825699998],[60.5057947180002,51.61977020300018],[60.51509647600013,51.617909850999986],[60.92106652900023,51.611476136000036],[60.937396281000154,51.61116607700016],[60.93346887200019,51.598427836],[60.93439904800007,51.56582000800013],[60.937396281000154,51.556879985000094],[60.94463098100002,51.5443742880001],[60.95899703000006,51.524866435000106],[60.97098596200007,51.51561635400018],[61.00395552600017,51.500681865000146],[61.01067346200008,51.49623769100013],[61.01522098800009,51.492077739000095],[61.01894169100015,51.488667094000064],[61.02328251100018,51.485514832000106],[61.029380330000066,51.482672628000145],[61.03806197100013,51.48019215900016],[61.04850061000016,51.47890024900012],[61.081470175000135,51.48019215900016],[61.10183068800003,51.478150940000106],[61.14151818800022,51.46918508000009],[61.16404911300006,51.467143861000025],[61.23298547400007,51.47055450500015],[61.25717004400016,51.467143861000025],[61.2914831950001,51.45502573700004],[61.304919068000146,51.452881165000136],[61.31835494000009,51.453449606],[61.342126099000126,51.45843638200016],[61.35618208800016,51.45965077800018],[61.393699179000144,51.44983225600011],[61.437624146000104,51.43223643000014],[61.47379764800021,51.42580271399999],[61.47803511500015,51.421151836000135],[61.49839563000009,51.40053293900002],[61.53870324700003,51.323173320000095],[61.56299117000005,51.295526429000105],[61.593170207000156,51.277827250000186],[61.6462585310002,51.263192932],[61.6636568600002,51.258396912000094],[61.61105025300011,51.24925018300003],[61.567331991000145,51.233876445000064],[61.53415572100013,51.206074524000186],[61.51317509000009,51.159514059000124],[61.46542606600022,50.9926508590001],[61.45674442600009,50.96500396800009],[61.441758260000114,50.87498362200012],[61.426875448000175,50.83307403600004],[61.40403446500007,50.80258494100015],[61.372098430000186,50.78248280800001],[61.09521610550009,50.722693176000135],[60.81833378100012,50.662903544000116],[60.718494914000104,50.65267161100003],[60.30043257700013,50.68465932300002],[60.24544885200006,50.70197092800011],[60.2094820550001,50.71974762000015],[60.1767191970001,50.74217519200014],[60.15480839000023,50.77090728800006],[60.15212121600021,50.80770090700007],[60.13620487500006,50.844494528000055],[60.083288208000084,50.85715525400009],[60.021276489000144,50.854054667000135],[59.97807499200021,50.84377105700007],[59.96908329300019,50.837363180000104],[59.96215865100006,50.82950836200017],[59.920197388000105,50.76305247000012],[59.91461633300016,50.74589589500006],[59.913892863000086,50.72600046800015],[59.91957727100012,50.69091217000012],[59.915133097000215,50.673807272000076],[59.90397098800011,50.660268047],[59.87203495300011,50.635980123000095],[59.85921919800015,50.622544251000036],[59.81570764200009,50.56290964800006],[59.77467655500007,50.53371246400011],[59.725480591000085,50.52766632200014],[59.67308068900016,50.52952667300015],[59.6222310790001,50.52410064700008],[59.58771122300006,50.506168926000115],[59.555051717000055,50.4843614710001],[59.5228056230002,50.47464630200015],[59.466271606000156,50.50735748300006],[59.45076867700007,50.522291972000104],[59.45169885300019,50.53727813799999],[59.47815718600006,50.552419333],[59.53531132000009,50.54657989500011],[59.56042606600013,50.553814596000066],[59.56342330000004,50.57985951800004],[59.5510209550001,50.58600901300012],[59.4981042890001,50.59970326700012],[59.47815718600006,50.614379374000016],[59.4376428630001,50.63112253800007],[59.38648319500007,50.630347392000076],[59.29077844300016,50.61546458000011],[59.273311808000095,50.61598134400007],[59.259049113000025,50.62037384000014],[59.24695682800009,50.629623922000164],[59.235691366000104,50.644610087000146],[59.21936161300007,50.65835601800008],[59.197450806000084,50.66274851600015],[58.925942830000025,50.67814809200014],[58.88677209500011,50.6889484660001],[58.81153120900015,50.72548370400001],[58.79396122300008,50.737679342000135],[58.7850728760001,50.74971995100019],[58.76843306500015,50.78268951500014],[58.747762492000135,50.795091858000134],[58.71954716000008,50.7934898890001],[58.689781535000094,50.7883739220001],[58.664356730000094,50.78992421500011],[58.64668339000016,50.80129303000011],[58.643892863000104,50.81467722600014],[58.65123091600011,50.85327952100012],[58.64099898300006,50.863408101000076],[58.590459432000074,50.86108266200016],[58.571442505000135,50.86351145500011],[58.559970337000124,50.87519032800018],[58.55015181500002,50.8932770790001],[58.546534464000075,50.91193227100017],[58.55438928200007,50.92541982100012],[58.57082238700016,50.9359618130001],[58.58529178800009,50.947795716000094],[58.596350546000195,50.96247182200001],[58.60265507000011,50.981230367000094],[58.59500695900012,51.02337249800014],[58.56348433400015,51.04926239000018],[58.52048954300008,51.06194895400013],[58.39801639800012,51.063705954000014],[58.37796594300008,51.0706564330001],[58.3708345950001,51.081921895000065],[58.36928430200013,51.09507354800003],[58.365977011000176,51.10892283200008],[58.35357466600013,51.121996969000136],[58.323395630000135,51.14194407100017],[58.30840946500004,51.150031434000155],[58.2681018470001,51.13455434200016],[58.24526086500011,51.13073028600003],[58.22376346900015,51.12313385100005],[58.21146447700013,51.10494374600002],[58.20236942600015,51.08344635000015],[58.19058719900013,51.065540466000115],[58.16764286300011,51.05517934200019],[58.14056441300008,51.056652120000095],[58.11369266700016,51.065178732],[58.09095503800009,51.076108297000175],[58.08961145000009,51.079622295000135],[58.08971480400013,51.085616761000054],[58.08878462800006,51.09192128500016],[58.084133749000124,51.096623840000134],[58.07731245900006,51.09794159000001],[58.0016581620001,51.089776713],[57.988428996000124,51.08742543600006],[57.96021366400006,51.07747772300014],[57.95008508300011,51.0792088830001],[57.93406538900016,51.09396250400012],[57.92507369000012,51.09964691200015],[57.91225793400023,51.103393454000084],[57.8576876220001,51.103393454000084],[57.841771281000064,51.105796407000135],[57.79619266800009,51.12326304200008],[57.76880415800022,51.11967153000001],[57.75288781700012,51.09747650200008],[57.73438765500013,51.07388621100007],[57.7281864830002,51.03709259099999],[57.73790165200015,50.97089508099999],[57.73728153500011,50.938235576000025],[57.72239872300023,50.90872833300001],[57.689222453000205,50.89673940100015],[57.596204875000154,50.9157046510001],[57.5558972580001,50.91875356100003],[57.53284956900015,50.90996856800014],[57.51993046100021,50.89658437100009],[57.50887170400019,50.88128814700006],[57.491405070000184,50.86687042300003],[57.46763391200014,50.85849884100007],[57.44303592900022,50.85777537000014],[57.41812788900008,50.86237457300011],[57.35270552600011,50.88599070300002],[57.33430871600009,50.89741119400013],[57.318909139000105,50.91322418300002],[57.310124146000106,50.92934722900009],[57.29761844900022,50.96495229100015],[57.288523397000034,50.981230367000094],[57.272917114000194,50.99745676700011],[57.25627730300019,51.00603505500014],[57.237157023000094,51.009497376000084],[57.21359257000009,51.010117493000145],[57.19746952400013,51.017352194000026],[57.18992476400015,51.034844666000154],[57.1812431230002,51.07349863700007],[57.16822066200004,51.09378163700008],[57.15447473200001,51.09995697100005],[57.13793827300006,51.09587453200005],[57.07241255700015,51.069726257000134],[57.025180298000095,51.062672425000024],[56.941051066000135,51.06833099400016],[56.91583296700017,51.06417104100013],[56.891234986000114,51.056574606000154],[56.86508671100009,51.05176869700007],[56.838628377000106,51.05140696200006],[56.81361698400022,51.05703969400009],[56.776306600000076,51.07597910600005],[56.76008020000009,51.0802424110001],[56.73558557200013,51.07758107600007],[56.71605188000009,51.07246510800008],[56.694554484000065,51.063499247000046],[56.68029178900011,51.049779155000024],[56.682462199000184,51.030529684],[56.70271936000009,50.99818023700002],[56.70964400200014,50.98159210200002],[56.707473592000184,50.97042999300008],[56.68835331200008,50.9691380820001],[56.61662642400009,50.9783364870001],[56.59657596800011,50.984020895000135],[56.508002564000066,51.0662639370001],[56.47834029100014,51.07303354900013],[56.44650760900018,51.056574606000154],[56.43069462100007,51.04543833400005],[56.42118615800009,51.03352691700012],[56.42035933400003,51.018644104000074],[56.43193485600008,50.98980865500012],[56.43203820800013,50.97621775400013],[56.41581180800014,50.962678528000154],[56.36496219900019,50.95787262000006],[56.35049279800008,50.94800242100017],[56.343878215000096,50.91141550800013],[56.33571333800015,50.895860901],[56.31545617700007,50.88382029300014],[56.28858443200007,50.88030629500018],[56.258198690000114,50.88449208600012],[56.17489628100017,50.908676656000075],[56.1583598230001,50.905524394000125],[56.14750777200001,50.89229522700013],[56.13737919100018,50.86878245100014],[56.100068807000206,50.74785959899999],[56.078881470000084,50.7247602340001],[55.93232710800006,50.64652211500005],[55.76489546800005,50.58683583600005],[55.69430546100008,50.53877675400018],[55.65999231000014,50.53004343700011],[55.616790813000215,50.549938864000026],[55.586198364000126,50.578412578000055],[55.570385376000125,50.588334453000144],[55.524289998000114,50.60068512000011],[55.51374800600009,50.614017640000114],[55.50568648300006,50.63024403900012],[55.49111372900009,50.64585032200007],[55.467755981000124,50.65696075500009],[55.44233117700011,50.661663310000066],[55.41597619600006,50.661404927000106],[55.3660567630001,50.65246490600008],[55.34776330600002,50.65137970000007],[55.329366496000056,50.65515208],[55.30538863100011,50.66497060200008],[55.08400679500008,50.7969005340001],[55.06137251800013,50.822687073000125],[55.06323287000012,50.86216786700005],[55.04772994000021,50.88423370400015],[54.89425093600019,50.91239735900011],[54.86128137200015,50.93389475500014],[54.8312056880001,50.959319560000054],[54.81167199700005,50.9723936970001],[54.74624963400018,50.992960917000076],[54.70687219200008,51.01629282700013],[54.68578820800005,51.023553366],[54.662223755000156,51.02789418499999],[54.63824589000015,51.027687480000125],[54.5526697180002,51.010169169000065],[54.53375614500006,51.00324452700009],[54.525281209000156,50.99110056600007],[54.54595178300005,50.95327341800011],[54.534686320000134,50.94360992499999],[54.51587609900011,50.93725372300007],[54.502956991000104,50.928262024],[54.52600467900007,50.916428121000095],[54.58367557800014,50.905679424000155],[54.63824589000015,50.88573232000005],[54.65178511500014,50.846251526000046],[54.64599735600003,50.837724915000095],[54.6298743080001,50.82030995700008],[54.62687707600017,50.81157664000001],[54.63018436700017,50.80367014600015],[54.64537723800018,50.79266306600006],[54.65023482300009,50.786306865000036],[54.650958293000116,50.76563629100012],[54.63865930100004,50.7280158490001],[54.639072713000154,50.7069835410001],[54.67359257000007,50.63432647700012],[54.67627974500007,50.60254547100011],[54.647547648000085,50.57324493400013],[54.59142704200022,50.542342428000055],[54.55070601400004,50.531335348000155],[54.54551683900016,50.53051930800014],[54.499442993000144,50.52327382400007],[54.47856571500009,50.525960999000105],[54.45572473200016,50.535521139000096],[54.435777628000125,50.54751007100004],[54.399500773000085,50.57867095900012],[54.38358443200016,50.599909973000095],[54.379760376,50.619443665000105],[54.38534143000007,50.639442444000125],[54.407148886000044,50.684814351000156],[54.41241988100009,50.70403798400017],[54.41438358600013,50.74847971600015],[54.421928345000055,50.768685201000054],[54.47856571500009,50.81571075400002],[54.485283651000174,50.82542592400007],[54.48786747200008,50.83555450500002],[54.48590376800004,50.845114644000105],[54.47856571500009,50.85348622700009],[54.46430301900008,50.85803375300012],[54.41965458200016,50.86449330699999],[54.40993941300022,50.86873077400004],[54.391645956000076,50.88051300100012],[54.381000611000076,50.88542226200015],[54.30007531800007,50.894724019000094],[54.275787395000094,50.90428416000002],[54.26028446500007,50.917409974000165],[54.247675415000145,50.931000876000056],[54.233516073000175,50.943093161000135],[54.194035279000076,50.95818267800006],[54.17656864400012,50.96789784800008],[54.14535607900021,50.9926508590001],[54.14907678200015,51.009652405000125],[54.14566613800011,51.01965179400004],[54.1383280850001,51.02864349400009],[54.12995650300016,51.04233774900011],[54.12013798000007,51.081172587000154],[54.11155969200016,51.09600372400008],[54.09192264800012,51.10522796600018],[54.03983280500009,51.110369772000084],[54.017611938000215,51.11907725100015],[53.99404748600014,51.15339040100018],[53.974720500000075,51.16649037700013],[53.93585982300013,51.18561065700014],[53.90898807800007,51.19044240300006],[53.85772505700018,51.18460296700006],[53.67386031100014,51.21987213200005],[53.64936568200008,51.23733876600009],[53.64254439300012,51.255425517],[53.62797163900003,51.26777618400014],[53.59407189900011,51.28942861000006],[53.58859419800015,51.30534495100006],[53.593141723000166,51.322604879000046],[53.59324507700009,51.33911549900013],[53.57443485500019,51.35322316500016],[53.6093681240001,51.36410105400013],[53.617946411000126,51.372136739000105],[53.61029830000015,51.38841481500013],[53.59748254400009,51.3971739710001],[53.55541792800014,51.41551910400001],[53.4534086510001,51.441899923000065],[53.439662720000086,51.45115000400007],[53.41919885200011,51.474895325000126],[53.407313273000085,51.48417124500007],[53.36948612500012,51.49388641400018],[53.36690230300022,51.49360219400002],[53.34633508300013,51.50303314200009],[53.32235721900011,51.49533335400018],[53.30737105300014,51.49383473799999],[53.23223352000011,51.500681865000146],[53.226032349000064,51.49949330700012],[53.22055464600007,51.496470235000096],[53.21414676900011,51.49476491300014],[53.204948365000206,51.49721954400009],[53.19864383900019,51.50243886300002],[53.195129842000114,51.50804575700015],[53.190478964000164,51.512489930000136],[53.181073853000015,51.514298605000036],[53.165777629000075,51.514556987],[53.15327193200008,51.5126707970001],[53.1486210530002,51.50476430300012],[53.1571993410001,51.48701344900003],[53.037103312000085,51.489726461000075],[52.99886275300011,51.48019215900016],[52.98584029200018,51.47269907700003],[52.97323124200014,51.463604025000066],[52.959795369000204,51.45585256000005],[52.94429244000011,51.452881165000136],[52.9292029220002,51.45536163400011],[52.90336470500008,51.46499928900015],[52.88279748500011,51.467143861000025],[52.89654341700012,51.485282288000136],[52.87628625500011,51.49008819600005],[52.82068241400012,51.48701344900003],[52.810967245000164,51.49073415200003],[52.78967655400018,51.50476430300012],[52.779754680000075,51.50812327100006],[52.76466516100018,51.50525522900007],[52.757327108000105,51.497943014],[52.75257287600018,51.49047576900007],[52.745544882000075,51.48701344900003],[52.72146366400014,51.48515309700012],[52.70947473200007,51.48207835000009],[52.700896443000055,51.47675567700004],[52.69231815600014,51.46843577100015],[52.679812459000146,51.45900482200001],[52.66854699700016,51.45512909000014],[52.66368941300007,51.46344899500012],[52.57506433100016,51.467143861000025],[52.55367028800006,51.45797129400013],[52.545815470000115,51.45952158600014],[52.524989869000166,51.467531433000126],[52.50581791200014,51.47887441000002],[52.49021162900012,51.49259450400013],[52.4788428140001,51.50486765600009],[52.47243493700009,51.51502207500012],[52.44452966300011,51.58018605600013],[52.37766036000002,51.66010365900014],[52.36458622300008,51.690282695000136],[52.35213220200009,51.730202739],[52.334872273000116,51.76371490500009],[52.30779382300014,51.77454111700014],[52.29223921800022,51.765626933000036],[52.279578492000184,51.735344544],[52.25818444800009,51.72420827300009],[52.230175822000064,51.72245127399999],[52.174106893000015,51.72524180100005],[52.148010294000215,51.71606923500015],[52.13333418800008,51.702039083000145],[52.11100996900009,51.670309753000126],[52.09178633600007,51.658708395000176],[52.065948120000115,51.65343739900013],[52.03525231900019,51.65240387000015],[52.00455651900003,51.65485850000012],[51.97861495000021,51.66036204000012],[51.952518351000116,51.67095570900001],[51.92476810700006,51.67826792400008],[51.89675948100009,51.679740703000085],[51.86916426600007,51.673074443000175],[51.8508708090001,51.661653951000076],[51.82017500900016,51.63297353200009],[51.764726196000105,51.59331187000011],[51.76777510600012,51.56297780400017],[51.78296797700014,51.529827372000156],[51.782296184000046,51.492852885000026],[51.744314006000224,51.47344838500014],[51.69330936700007,51.45409556100015],[51.647369018000205,51.451227519],[51.624424682000175,51.48101898200009],[51.622977743000064,51.504247538000115],[51.6204972740002,51.51869110200012],[51.60995528100014,51.52773447700018],[51.5843237710001,51.53491750100012],[51.55982914300014,51.53458160400005],[51.54473962400013,51.52411712700011],[51.532078898000094,51.50840749200013],[51.51497399900015,51.49269785600016],[51.461850626000086,51.475282899000135],[51.37947839400013,51.46709218400012],[51.30423750800016,51.47163971000005],[51.273024943000074,51.49259450400013],[51.273024943000074,51.49287872300012],[51.263826538000075,51.50489349400008],[51.24780684400011,51.521094055000084],[51.23654138200018,51.535899353],[51.241657348000075,51.54370249400013],[51.33917077700008,51.5550196330001],[51.358962850000154,51.561479187000074],[51.37317386900011,51.5716077680001],[51.38113203900016,51.58705902100011],[51.381958862000175,51.6097966520001],[51.37193363500009,51.62958872500015],[51.352503296000094,51.636229147000066],[51.308474975000216,51.637055970000105],[51.28842452000018,51.64286956800008],[51.276228881000094,51.651602885000145],[51.251837606000066,51.678526307000155],[51.233854207000064,51.68547678600005],[51.21256351800016,51.68175608300014],[51.19023929800019,51.67410797200015],[51.16977543100015,51.669482931000104],[50.92544926000008,51.67968902600008],[50.90074792500016,51.687130433],[50.88431481900008,51.705553081000104],[50.873669475000185,51.72188283300012],[50.857753133000045,51.73529286800009],[50.83925297000022,51.74552480100006],[50.82085616100002,51.75255279599998],[50.767009318000106,51.75939992300011],[50.74416833500018,51.7423725390001],[50.747372274000064,51.70904124000005],[50.79450118000008,51.62597137500007],[50.790677124000155,51.59729095500007],[50.76432214400009,51.57866160100003],[50.71998376500014,51.56742197700008],[50.69652266500006,51.56558746399999],[50.67089115400009,51.567525330000095],[50.65869551600005,51.57618113200006],[50.67502526900009,51.59439707500009],[50.69419722500001,51.61116607700016],[50.68577396700002,51.61563608800016],[50.63926517700011,51.61617869100003],[50.599836060000165,51.63473053000014],[50.58169763200007,51.635298971],[50.57761519400006,51.61336232500015],[50.57570316600001,51.588428447000084],[50.56185388200006,51.58065114400007],[50.54283695500007,51.57736969100007],[50.52537032100017,51.56558746399999],[50.522166382000165,51.55075632800004],[50.53136478700017,51.49269785600016],[50.52723067200017,51.470089417000125],[50.51834232600007,51.45975413000012],[50.502684366000175,51.456136780000136],[50.478964884000135,51.453733826000175],[50.471058390000195,51.436112162000185],[50.457467488000106,51.426887920000084],[50.439225708000066,51.42301218700014],[50.37964278200016,51.421151836000135],[50.36744714400007,51.41895558700004],[50.359592326000126,51.41332285600011],[50.36444991000022,51.406914978000074],[50.37292484500014,51.40104970300017],[50.37623213700013,51.39701894200009],[50.36186608900002,51.38738128700005],[50.34672489400011,51.38120595300008],[50.33757816600021,51.37203338700009],[50.3404203700002,51.35286143100008],[50.34744836500013,51.33523976700009],[50.348946980000136,51.322604879000046],[50.34228072100021,51.31273468100006],[50.32538252800012,51.30345876100015],[50.20745690900017,51.265941671000164],[50.028759806,51.24299733600013],[49.98685022000014,51.22981984500014],[49.84282800300011,51.15067738900014],[49.79590580300007,51.109568787000065],[49.77905928600009,51.10217905700016],[49.53974572800015,51.10078379400009],[49.46011234500011,51.11615753200005],[49.43654789200011,51.11233347600002],[49.42311202000005,51.10199819000012],[49.41060632300017,51.08553924600012],[49.40104618300009,51.06709076000011],[49.39272627700021,51.034198711],[49.38332116700016,51.01939341300005],[49.35913659700006,50.9926508590001],[49.34735437000009,50.964280497000104],[49.37153894100007,50.93942413400005],[49.40549035700005,50.91353424100011],[49.423732137000144,50.88206329300006],[49.40843591400008,50.84826690700008],[49.36942020700005,50.826769512000126],[49.283689006000166,50.80372182300006],[49.144059285000104,50.78170766200019],[49.10240808100011,50.75798818000014],[49.01269779400016,50.68341908800009],[48.830435018000145,50.59603424100014],[48.78625166900022,50.59060821600015],[48.739587850000156,50.597532858000065],[48.60879480000019,50.647917379000134],[48.58399011300017,50.649622702],[48.568280477000116,50.63654856400014],[48.57293135600017,50.6168598440001],[48.597425985000115,50.608023174],[48.6484823000001,50.60156361900014],[48.67339034000017,50.579549460000166],[48.67866133600008,50.54854360000003],[48.67442386900015,50.478470358],[48.701295614000145,50.33460317000011],[48.72889082900022,50.265408428000015],[48.77095544500017,50.21104482000014],[48.789042196000054,50.173010966],[48.7809806720002,50.13756093400015],[48.78284102400019,50.111464335000065],[48.851829061000124,50.0972533160001],[48.86552331500016,50.086194560000095],[48.874101603000064,50.06981313100006],[48.8858838300001,50.03043568900015],[48.88567712400007,50.019893697],[48.878184041000196,50.01002349900001],[48.86200931800008,49.99291860000007],[48.7845980220001,49.93338735],[48.683518921000115,49.89545684799999],[48.47908695500004,49.84316029899999],[48.46585778800008,49.83582224600018],[48.442810100000116,49.81499664300013],[48.42989099100012,49.809673971000066],[48.417592001000145,49.81168935100011],[48.359507691000054,49.83396189400015],[48.31217207800009,49.863572489000106],[48.30287032100008,49.866724752],[48.27403487200016,49.863055726000184],[48.23930830900011,49.86476104800015],[48.22711267100007,49.87948883100013],[48.219877971000216,49.90150299100013],[48.20044763200016,49.92501576800011],[48.16086348500019,49.946461487000036],[48.14928796400008,49.95493642200013],[48.14236332200008,49.96377309200015],[48.132234741000126,49.98372019400007],[48.12531009900013,49.992970277],[48.11249434400017,50.02196075500014],[48.105983113000065,50.05064117400015],[48.09637129700016,50.078546448000125],[48.07456384300016,50.10526316300008],[48.024747762000196,50.13125640900016],[48.012242066000134,50.1421084600001],[48.00505904100006,50.15600941999998],[48.00035648600007,50.169703674000104],[47.99322513900003,50.18179596],[47.953640991000185,50.20489532500006],[47.91343672700006,50.24385935500005],[47.874059286000175,50.266441956000094],[47.85452559400008,50.28504547200005],[47.80822351000008,50.31992706300012],[47.795976197000044,50.32478464800011],[47.77649418100006,50.329797262],[47.76693404200009,50.337186992],[47.76026778200017,50.34716054300013],[47.749105672,50.360234681000165],[47.7349463300001,50.370053203000126],[47.68998783300006,50.38633127900006],[47.62466882300012,50.44079823800014],[47.5992956950001,50.45268381800018],[47.55692102100008,50.452580465000054],[47.511497436000155,50.4369225060001],[47.46979455500011,50.411756084000054],[47.43889205000002,50.3831790170001],[47.43446043500009,50.37652808400012],[47.40628422000006,50.334241435000095],[47.39222823000014,50.323234355000025],[47.32287845900012,50.30447581000011],[47.30567020700002,50.29486399400009],[47.29476648000016,50.27543365500013],[47.30318973800016,50.26349639900009],[47.316987345000115,50.25290273000011],[47.322310018000074,50.237399801],[47.31264652500013,50.22241363600004],[47.276266317000164,50.199882711],[47.265104207,50.18634348600004],[47.273062378000105,50.15843821300014],[47.327632691000105,50.10929392600009],[47.328562867000045,50.07296539300002],[47.30871911600016,50.044801738000054],[47.24557051600013,49.992350159000026],[47.17735762500009,49.94718495800005],[46.95855961100014,49.88413970900002],[46.92259281400007,49.86135040300003],[46.899906861000055,49.82031931600007],[46.83750756900022,49.576432394],[46.7751082770001,49.33254547200012],[46.83071211800009,49.31833445299999],[46.97923018400016,49.244282125000055],[47.02863285300006,49.201494039000025],[47.04000166800003,49.15033437100011],[47.02088138800016,49.096849264000085],[46.97923018400016,49.04729156500004],[46.93003422000018,49.00403839100009],[46.91101729300012,48.99282460500005],[46.88807295700005,48.98052561499999],[46.81293542500006,48.953757223000125],[46.77800215700008,48.936032207000025],[46.75381758600011,48.914069723000054],[46.62019191000016,48.66959661800014],[46.47931237800012,48.41185231600017],[46.478588908000084,48.411154684000095],[46.47827884900002,48.41056040500003],[46.478588908000084,48.41022450800013],[46.47931237800012,48.41022450800013],[46.7292712810001,48.352088522000045],[46.97923018400016,48.293952536000134],[47.07829390500015,48.27534902000009],[47.09891280100007,48.26537546800007],[47.11183190900007,48.250983582000075],[47.11212053500017,48.24220453800013],[47.11214196800003,48.2415526330001],[47.09860274300009,48.22258738200007],[47.09198815900018,48.21731638700011],[47.081549520000145,48.21183868400014],[47.075244996,48.20512074800011],[47.08030928600012,48.19597401900002],[47.10263350400007,48.18029022200007],[47.10883467600016,48.17398569800007],[47.11648278800012,48.153857727000066],[47.111573527000104,48.1362360640001],[47.10408044400017,48.11923451800008],[47.10356368000012,48.10119944300008],[47.11948002100016,48.08828033500008],[47.17394698000006,48.08419789700015],[47.19203373200016,48.071795553000086],[47.17818444800011,48.05179677400007],[47.13705000800021,48.02725046799999],[47.058398479000026,47.99448761000018],[47.04423913600013,47.986219381000026],[47.05116377800019,47.974643860000086],[47.12165043100006,47.91544850700011],[47.15534346500007,47.87744049100017],[47.158650757000174,47.87154937800007],[47.15673872900018,47.86317779500011],[47.151726115000116,47.8590953570001],[47.14521488500022,47.855788066000095],[47.13829024300017,47.8495868940001],[47.125164429000186,47.83209442100015],[47.11948002100016,47.819769592000014],[47.12382084200013,47.80803904200003],[47.140564006000055,47.79266530400004],[47.17446374500011,47.77052195300002],[47.3596720780001,47.68334381100014],[47.374244833000176,47.68582428000012],[47.38292647300014,47.705357971000026],[47.38943770300008,47.751556702000165],[47.38881758700015,47.81191477500006],[47.394191935000066,47.826797587000115],[47.412175334000175,47.83586680100008],[47.43532637500007,47.83439402300009],[47.64973189300022,47.76558685400009],[48.04448815900017,47.76969512900011],[48.11249434400017,47.748507793000144],[48.17435103400006,47.712851054000154],[48.36059289600004,47.49309702600005],[48.36095463100017,47.49294199700002],[48.4110807700001,47.445761414000074],[48.43753910300009,47.42919911700009],[48.47319584200008,47.420414124],[48.51029952000013,47.41744272900008],[48.525078980000075,47.41023386600013],[48.535827678000175,47.39349070200008],[48.546162964000104,47.369435323000125],[48.69726485200013,47.10097625800002],[49.00628991700008,46.769110210000136],[48.94810225500012,46.71994008400016],[48.916889689000215,46.702576803000156],[48.764030802000065,46.68283640599999],[48.73953617400011,46.690562033],[48.71266442800001,46.72877675400018],[48.69726485200013,46.745080668000114],[48.67659427900011,46.75802561500002],[48.61819991000007,46.77042795800009],[48.55670495600006,46.761746318000135],[48.50575199400012,46.732600810000015],[48.47908695500004,46.683456523000146],[48.455109090000036,46.66079640700009],[48.474022665000085,46.659220276000084],[48.493453003000155,46.65348419300004],[48.53003991700021,46.63818796800017],[48.5392383220001,46.62795603400018],[48.541925497000214,46.6132540900001],[48.546886434000186,46.59927561500008],[48.56300948100008,46.59131744500003],[48.53939335100003,46.56795969700009],[48.57324141500007,46.55827036600006],[48.665225464000144,46.55718516100013],[48.70501631700003,46.55044138600011],[48.73292159000002,46.53403411900017],[48.7585531010001,46.51313100200018],[48.819634643000114,46.47925710100015],[48.84412927300016,46.478533630000086],[48.86872725400021,46.48235768600004],[48.89704593900009,46.48217681900017],[48.91797489400019,46.47432200200013],[48.9598844810001,46.445254009000124],[49.03316166200008,46.40489471500008],[49.22713051933729,46.327879184043084],[49.2271427740001,46.32786692900008],[49.263845248000194,46.293361721000146],[49.29590905000006,46.27472565300015],[49.3060001960001,46.26312897300015],[49.29851321700008,46.25177643400018],[49.28199303500016,46.24990469],[49.26539147200006,46.25751373900006],[49.249196811000076,46.26732005399999],[49.23324629000015,46.27228424700003],[49.19776451900006,46.277899481000034],[49.15967858200011,46.29193756700009],[49.142100457000055,46.309963283000016],[49.16822350400011,46.32754140800013],[49.15015709700012,46.335760809000035],[49.138194207000055,46.32965729400014],[49.119802280000016,46.305731512000094],[49.08814537900016,46.29450104400008],[49.076182488000114,46.28620026200012],[49.07935631600017,46.27228424700003],[49.07129967500006,46.268255927000055],[49.06641686300006,46.26386139500009],[49.05892988400009,46.25177643400018],[49.08822675900015,46.251166083000115],[49.104746941000116,46.24066803600006],[49.111989780000016,46.22113678600005],[49.11947675900009,46.15875885600009],[49.114512566000116,46.15127187700013],[49.093028191000116,46.16242096600014],[49.083994988000114,46.17177969],[49.06902103000007,46.191961981000034],[49.05892988400009,46.19717031500003],[49.04224694100017,46.19623444200012],[49.03321373800017,46.18891022300012],[49.02751712300008,46.18060944200015],[49.020762566000116,46.17666250200007],[48.99390709700006,46.171942450000145],[48.95582116000017,46.14948151200015],[48.934825066000116,46.14191315300009],[48.934825066000116,46.13568756700014],[48.95264733200011,46.11261627800009],[48.95533287900016,46.10781484600001],[48.94996178500011,46.0982933610001],[48.94060306100018,46.0892601580001],[48.931813998000024,46.08527252800012],[48.92798912900011,46.091009833],[48.924327019000174,46.11147695500013],[48.91439863400014,46.131984768],[48.89926191500015,46.14838288000002],[48.88013756600017,46.15619538],[48.88168379000009,46.142889716000084],[48.887054884000094,46.12225983300006],[48.8869735040001,46.10781484600001],[48.87403405000012,46.117621161000116],[48.85328209700011,46.141017971],[48.839203321000156,46.14935944200009],[48.831797722000175,46.14191315300009],[48.85084069100017,46.12531159100014],[48.868011915000096,46.09979889500015],[48.874196811000076,46.07819245000014],[48.85962975400011,46.073635158000016],[48.84294681100019,46.08730703300013],[48.83236738400015,46.10765208500014],[48.818532748000024,46.124701239],[48.79135175900015,46.12824127800015],[48.81983483200022,46.10346100499999],[48.827647332000225,46.087713934000064],[48.8255314460001,46.06679922100009],[48.81788170700011,46.05621979400003],[48.8084416020001,46.05662669500005],[48.800954623000194,46.06468333500008],[48.79761803500017,46.07705312700001],[48.78174889400023,46.09666575700008],[48.74724368600001,46.11880117400015],[48.714121941000116,46.129584052000055],[48.70199629000009,46.11522044499999],[48.69581139400023,46.11522044499999],[48.685557488000114,46.12238190300003],[48.67855879000015,46.120306708],[48.6678166020001,46.10781484600001],[48.6653751960001,46.102362372000144],[48.66602623800023,46.09560781500012],[48.66423587300008,46.08978913000006],[48.65455162900011,46.08730703300013],[48.62696373800006,46.08730703300013],[48.64185631600011,46.080755927000055],[48.67367597700016,46.07282135600009],[48.68848717500006,46.06679922100009],[48.71957441500015,46.03115469000012],[48.72624759200019,46.02521393400012],[48.72901451900017,46.01996491100011],[48.721853061000125,46.00849030199999],[48.70997155000006,45.99697500200013],[48.698985222,45.99168528900016],[48.686371290000096,45.98956940300014],[48.6717228520001,45.98411692900011],[48.64730879000015,45.97060781500014],[48.64958743600002,45.963324286000116],[48.65137780000012,45.960516669000086],[48.65479576900023,45.95693594],[48.67798912900017,45.96906159100011],[48.6990666020001,45.97260163],[48.740244988000164,45.97060781500014],[48.75220787900011,45.965562242000104],[48.75489342500006,45.95416901200015],[48.7518009770001,45.941595770000056],[48.741058790000096,45.923000393000066],[48.74244225400017,45.91412995000003],[48.74878991000017,45.906927802],[48.757172071000156,45.90228913000006],[48.75660241000017,45.88792552299999],[48.78239993600018,45.85838450700011],[48.79135175900015,45.84088776200015],[48.773773634000094,45.85057200700011],[48.7654728520001,45.85219961100013],[48.743662957000055,45.84088776200015],[48.721446160000106,45.83832428600006],[48.71469160200016,45.83169179900001],[48.716319207000105,45.813544012000094],[48.6951603520001,45.82802969000015],[48.686696811000076,45.848578192],[48.69141686300017,45.86880117400001],[48.71013431100002,45.881822007],[48.69263756600017,45.88076406500012],[48.67945397200006,45.88532135600009],[48.65479576900023,45.90228913000006],[48.64942467500006,45.905096747000115],[48.64332116000011,45.90753815300006],[48.63672936300011,45.90912506700009],[48.63038170700011,45.90973541900002],[48.62663821700008,45.91242096600003],[48.622325066000116,45.92503489799999],[48.62012780000006,45.92963288000011],[48.59376061300017,45.958197333000115],[48.573415561000076,45.971136786000116],[48.55494225400011,45.967474677000084],[48.52222741000011,45.95359935099999],[48.51710045700011,45.94733307500003],[48.50953209700006,45.940619208],[48.49268639400023,45.93988678600006],[48.47510826900012,45.94110748900009],[48.46558678500011,45.94017161699999],[48.45720462300008,45.932318427000105],[48.434743686000076,45.9155134140001],[48.401133660000106,45.87921784100008],[48.39356530000006,45.86815013200005],[48.37940514400006,45.87641022300014],[48.36491946700013,45.876206772999986],[48.35694420700005,45.869370835000076],[48.36280358200011,45.857611395],[48.37427819100017,45.854641018000095],[48.40723717500012,45.85187409100003],[48.41407311300023,45.84393952000006],[48.39942467500006,45.835394598000114],[48.30486087300014,45.84088776200015],[48.28874759200008,45.837347723000086],[48.284678582000105,45.828070380000135],[48.28541100400011,45.81500885600014],[48.28370201900011,45.79987213700014],[48.277191602000094,45.78620026200003],[48.26978600400011,45.77948639500009],[48.249685092000185,45.77195872600011],[48.233653191000116,45.76813385600009],[48.22429446700008,45.768377997000144],[48.220876498000074,45.765204169000086],[48.222829623000194,45.751532294000135],[48.227875196000156,45.74225495000009],[48.2356876960001,45.73444245000009],[48.24203535200016,45.72475820500012],[48.24284915500007,45.70990631700009],[48.21599368600019,45.72475820500012],[48.179860873000024,45.73969147300009],[48.14779707100015,45.743353583000136],[48.13355553500017,45.724188544000164],[48.09164472700016,45.74900950700013],[48.07886803500011,45.751532294000135],[48.0638126960001,45.745998440000115],[48.044688347000054,45.727972723],[48.02588951900006,45.72260163000014],[48.01921634200002,45.718451239],[48.013031446000156,45.712836005],[48.00749759200002,45.70050690300015],[48.00025475400011,45.70498281500012],[47.989512566000116,45.71735260600015],[47.986501498000194,45.71967194200012],[47.982188347000175,45.723944403000026],[47.976328972000054,45.728461005],[47.96900475400011,45.73163483300006],[47.96143639400012,45.73163483300006],[47.955821160000106,45.72894928600009],[47.95069420700005,45.72573476800004],[47.93043053500016,45.72174713700004],[47.91968834700006,45.71507396],[47.89698326900012,45.69379303600003],[47.891856316000116,45.697251695000105],[47.88575280000012,45.7101911480001],[47.875824415000096,45.72260163000014],[47.859141472000175,45.724188544000164],[47.848887566000116,45.717230536],[47.8450626960001,45.70677317900011],[47.84546959700006,45.67983633000013],[47.83472741000011,45.65985748900006],[47.83529707100009,45.649603583000136],[47.85230553500017,45.64227936400012],[47.84644616000011,45.63153717700011],[47.83855228,45.62201569200012],[47.82911217500012,45.614081122000144],[47.81820722700016,45.60809967700014],[47.77711022200006,45.652329820000105],[47.770355665000096,45.66583893400018],[47.76490319100017,45.682196356000084],[47.75171959700006,45.69086334800009],[47.72136478000007,45.696844794000114],[47.71705162900017,45.69944896],[47.710134311000076,45.708075262000094],[47.70492597700015,45.70990631700009],[47.70020592500006,45.70856354400008],[47.69646243600013,45.705877997000115],[47.69255618600002,45.70359935100005],[47.68726647200006,45.70376211100002],[47.67823326900023,45.70538971600003],[47.67156009200007,45.70575592700014],[47.66521243600007,45.707505601000136],[47.657399936000076,45.71360911700013],[47.65267988400014,45.72040436400006],[47.64844811300023,45.734116929],[47.64372806100001,45.74091217700003],[47.63282311300022,45.750677802000055],[47.61947675900015,45.75893789300012],[47.60336347700016,45.765082098],[47.580414259000094,45.77090078300007],[47.560069207000055,45.77155182500012],[47.55128014400012,45.76203034100003],[47.55534915500007,45.743597723000086],[47.56519616000011,45.74119700700014],[47.5783797540001,45.74494049700017],[47.59229576900012,45.744614976000044],[47.591075066000116,45.74103424700017],[47.604746941000116,45.718817450000024],[47.60661868600019,45.71735260600015],[47.612559441000116,45.71417877800009],[47.620860222,45.71308014500014],[47.62614993600019,45.70905182500017],[47.62289472700016,45.69721100500011],[47.62273196700008,45.688218492000104],[47.62574303500017,45.67902252800003],[47.62582441500015,45.67182038],[47.616058790000096,45.66893138200005],[47.608083530000066,45.6674665390001],[47.606293165000096,45.66396719],[47.60873457100009,45.65949127800015],[47.61264082100009,45.65525950700011],[47.60873457100009,45.63882070500013],[47.62370853000007,45.63068268400012],[47.661143425000056,45.62177155200008],[47.64551842500012,45.592189846000124],[47.644297722000175,45.57908763200005],[47.6536564460001,45.55906810099999],[47.62810306100002,45.558986721],[47.615000847000175,45.57021719],[47.599131707000225,45.60809967700014],[47.585948113000114,45.625799872000144],[47.54070071700008,45.66583893400018],[47.52906334700006,45.67047760600009],[47.48243248800023,45.66893138200005],[47.47299238400014,45.67377350500014],[47.456228061000125,45.687730210000105],[47.43262780000006,45.69448476800015],[47.43604576900006,45.70302969000006],[47.446462436000076,45.712062893000095],[47.45508873800006,45.71735260600015],[47.463226759000094,45.71808502800009],[47.50342858200011,45.71735260600015],[47.48080488400009,45.73053620000012],[47.425303582000055,45.734808661000116],[47.41407311300006,45.74811432500003],[47.40870201900012,45.751410223000065],[47.39673912900017,45.75287506700012],[47.38477623800022,45.75018952000006],[47.37940514400012,45.74091217700003],[47.383148634000094,45.73395416900002],[47.410655144000174,45.71360911700013],[47.41309655000011,45.7079938820001],[47.41244550900015,45.695624091000084],[47.41407311300006,45.69065989800013],[47.419932488000114,45.68317291900017],[47.427744988000114,45.67641836100013],[47.43189537900011,45.67527903900019],[47.44353274800008,45.67674388200005],[47.44825280000006,45.67641836100013],[47.45362389400012,45.67210521000011],[47.463226759000094,45.65912506700012],[47.468760613000114,45.65525950700011],[47.515147332000055,45.64948151200015],[47.53484134200013,45.64386627800015],[47.55128014400012,45.62799713700003],[47.5481876960001,45.620794989],[47.55274498800006,45.61033763200011],[47.559743686000076,45.59845612200017],[47.57016035200016,45.5737165390001],[47.572113477000094,45.56696198100014],[47.571787957000055,45.55906810099999],[47.5677189460001,45.553615627000156],[47.554209832000225,45.54555898600002],[47.55128014400012,45.54230377800015],[47.5423283210001,45.537054755],[47.52377363400009,45.54938385600003],[47.50879967500006,45.57111237200009],[47.50961347700016,45.59389883000013],[47.49431399800019,45.58515045800006],[47.49317467500006,45.571966864],[47.496429884000094,45.565252997000144],[47.500173373000024,45.557684637000094],[47.52613366000011,45.524847723],[47.53646894600015,45.507717190000065],[47.53825931100002,45.50649648600015],[47.53443444100011,45.506089585000055],[47.501475457000225,45.48045482],[47.496755405,45.470892645],[47.496267123000024,45.461574611000124],[47.49878991000016,45.438137111000074],[47.496755405,45.429999091000134],[47.477386915000096,45.42243073100012],[47.41911868600019,45.42666250200013],[47.39356530000012,45.42255280199999],[47.38135826900023,45.41103750200013],[47.395355665000096,45.40493398600016],[47.444834832000225,45.40204498900012],[47.45915774800002,45.398749091000084],[47.46013431100019,45.39081452000012],[47.454274936000076,45.38178131700012],[47.44825280000006,45.37474192900005],[47.432465040000096,45.36969635600012],[47.427744988000114,45.36733633000016],[47.424978061000076,45.36391836100013],[47.423187696000156,45.35785553600006],[47.395192905000016,45.32001373900003],[47.384043816000116,45.299465236000074],[47.37940514400012,45.28221263200005],[47.37940514400012,45.20282623900012],[47.370127800000056,45.18561432500012],[47.35645592500012,45.185248114],[47.33814537900011,45.19220612200008],[47.314463738000114,45.19660065300017],[47.29712975400011,45.18744538],[47.2864689460001,45.16596100500006],[47.27564537900011,45.12083567900011],[47.261241082000225,45.08502838700009],[47.25049889400012,45.06525299700017],[47.22787519600015,45.03339264500015],[47.211680535000106,44.99030182500012],[47.20118248800023,44.97003815300009],[47.18067467500006,44.97671133000016],[47.16578209700006,44.966986395],[47.154958530000016,44.94863515800016],[47.14600670700011,44.92910390800007],[47.13965905000006,44.938218492000075],[47.126719597000175,44.95026276200018],[47.111501498000194,44.95848216400016],[47.09880618600002,44.95636627800015],[47.09815514400006,44.94651927300005],[47.11166425900015,44.86957428600005],[47.08448326900023,44.817531643],[47.079112175000056,44.800116278000026],[47.07829837300008,44.78510163],[47.071462436000076,44.78510163],[47.05909264400012,44.80292389500009],[47.023610873000024,44.84296295800011],[47.016286655000016,44.857977606000034],[47.01148522200006,44.90228913],[47.00318444100017,44.92157623900011],[46.98894290500007,44.91543203300013],[46.983897332000225,44.893377997000144],[46.99195397200006,44.87006256700015],[47.003916863000114,44.84808991100011],[47.01002037900017,44.83006419500001],[47.00318444100017,44.81761302299999],[46.97144616000011,44.78375885600012],[46.96159915500019,44.765204169000114],[46.94336998800011,44.77496979400014],[46.923838738000114,44.772040106000034],[46.888194207000055,44.75189850499999],[46.86793053500017,44.74046458500013],[46.85450280000006,44.72540924700002],[46.843516472,44.709662177000055],[46.831309441000116,44.69635651200004],[46.79167728000018,44.706040757],[46.76636803500017,44.68146393400009],[46.746267123000194,44.65403880400014],[46.7220158210001,44.65534088700004],[46.716319207000225,44.63886139500015],[46.70777428500011,44.56972890800013],[46.711599155000016,44.566392320000105],[46.71892337300002,44.55801015800016],[46.72315514400017,44.54946523600013],[46.71827233200011,44.54547760600015],[46.70720462300008,44.54511139500014],[46.694672071000156,44.54303620000003],[46.68458092500006,44.537909247000115],[46.68043053500017,44.528469143],[46.683604363000114,44.50678131700003],[46.69776451900022,44.466457424000126],[46.700938347,44.44619375200013],[46.71127363400009,44.431830145000056],[46.73438561300006,44.414780992000104],[46.75896243600007,44.400580145],[46.773203972000175,44.39468008000016],[46.817637566000116,44.39468008000016],[46.840179884000094,44.397772528000026],[46.851898634000094,44.397609768000066],[47.00261478000019,44.36733633000007],[47.02564537900017,44.359605210000076],[47.04420006600017,44.34625885600015],[47.05543053500017,44.327704169000135],[47.069183790000096,44.284328518],[47.07829837300008,44.264349677000105],[47.08871504000015,44.251532294000086],[47.10499108200011,44.235907294000086],[47.12224368600019,44.222723700000145],[47.1360783210001,44.21710846600014],[47.1463322270001,44.214300848],[47.16675866000011,44.20331452000014],[47.18002363400015,44.20286692900005],[47.19092858200011,44.20856354400003],[47.21045983200011,44.22675202000011],[47.22169030000006,44.230780341000084],[47.2459416020001,44.21198151200004],[47.265391472000175,44.168646552000055],[47.289886915000096,44.09300364800008],[47.316091342000014,44.058050848000065],[47.333994988000114,44.03953685100005],[47.34864342500011,44.03156159100008],[47.357920769000174,44.02057526200004],[47.386892123000074,43.956488348000065],[47.412282748000074,43.92597077000012],[47.423350457000225,43.907945054],[47.427744988000114,43.884182033000094],[47.43262780000006,43.87616608300005],[47.455251498000024,43.87091705900015],[47.46192467500012,43.86029694200012],[47.459483269000174,43.85179271],[47.445485873000194,43.82973867400001],[47.44141686300023,43.81928131700011],[47.45215905000006,43.822984117000075],[47.46827233200022,43.82611725500014],[47.482758009000094,43.82489655200011],[47.48926842500006,43.815578518000066],[47.50277754000015,43.780991929],[47.50342858200011,43.770900783],[47.495453321000156,43.764837958000115],[47.46941165500007,43.76007721600003],[47.45850670700011,43.75446198100012],[47.45020592500012,43.745917059000085],[47.44459069100011,43.73847077000012],[47.43392988400009,43.716253973000065],[47.45508873800006,43.68895091400015],[47.45093834700006,43.681870835000105],[47.44312584700006,43.677394924000154],[47.43458092500011,43.67357005400013],[47.427744988000114,43.66844310100011],[47.40805097700016,43.63686758000013],[47.39356530000012,43.60639069200009],[47.37712649800014,43.61652252800003],[47.37322024800014,43.620672919000086],[47.36573326900023,43.620672919000086],[47.366547071000156,43.60285065300008],[47.37175540500007,43.579738674000154],[47.37989342500006,43.559719143000095],[47.39014733200011,43.55117422100007],[47.40495853000019,43.543768622000165],[47.40381920700022,43.52757396000011],[47.40430748800023,43.51137929900007],[47.42432701900011,43.50397370000009],[47.448496941000116,43.51813385600012],[47.46534264400012,43.55215078300013],[47.4744572270001,43.59345123900009],[47.47584069100017,43.629543361000046],[47.477793816000116,43.643744208000136],[47.4817814460001,43.653143622000144],[47.48878014400006,43.661322333000086],[47.50001061300006,43.671576239],[47.50733483200011,43.68573639500012],[47.50269616000017,43.71503327000015],[47.50660241000017,43.72675202000012],[47.522634311000076,43.74884674700003],[47.53386478000007,43.77594635600006],[47.5408634770001,43.804754950000174],[47.54379316500015,43.832342841000084],[47.541840040000096,43.854722398000106],[47.544444207000105,43.865220444999984],[47.55469811300023,43.87763092700011],[47.58822675900014,43.89813873900006],[47.59571373800023,43.901190497000144],[47.62566165500018,43.90033600500006],[47.65284264400012,43.896673895],[47.67798912900011,43.888617255000085],[47.70150800900015,43.874497789000046],[47.643809441000116,43.82990143400015],[47.60157311300005,43.76569245000003],[47.54379316500015,43.62750885600009],[47.51970462300013,43.52000560099999],[47.49089603000019,43.46283600500002],[47.482188347,43.42177969],[47.483246290000146,43.379706122000144],[47.496755405,43.346380927000055],[47.488617384000094,43.329535223000065],[47.48682701900023,43.310858466000084],[47.493418816000116,43.29633209800012],[47.50961347700016,43.29169342700011],[47.53435306100002,43.32062409100003],[47.554209832000225,43.32550690300009],[47.570323113000114,43.333726304],[47.577403191000165,43.32965729400003],[47.582367384000094,43.32099030200013],[47.58545983200011,43.31220123900006],[47.58570397200006,43.29954661700002],[47.58073978000019,43.292669989],[47.57471764400012,43.28778717700011],[47.56495201900023,43.26805247599999],[47.54900149800002,43.25763580900009],[47.517100457000225,43.243312893],[47.506032748000194,43.23550039300004],[47.48585045700017,43.21283600500005],[47.481211785000106,43.202337958],[47.488291863000114,43.180487372000144],[47.48585045700017,43.17194245000003],[47.478037957000055,43.15989817900011],[47.478851759000094,43.14866771000011],[47.482269727000094,43.138006903000175],[47.48243248800023,43.12726471600016],[47.47641035200016,43.1180687520001],[47.459483269000174,43.10443756700015],[47.45508873800006,43.099920966000084],[47.45281009200019,43.080796617000104],[47.46192467500012,43.02081940300008],[47.53012129000009,42.962103583],[47.589854363000114,42.94269440300017],[47.599131707000225,42.93170807500003],[47.605642123000024,42.91742584800012],[47.62159264400022,42.90509674700009],[47.69809004000015,42.86713288000006],[47.70167076900012,42.86176178600003],[47.707774285000106,42.83783600500006],[47.71168053500011,42.83242422100001],[47.70997155000006,42.822170315000065],[47.71664472700016,42.77358633],[47.7150985040001,42.757269598],[47.72136478000007,42.757269598],[47.71697024800008,42.74721914300004],[47.7150985040001,42.736232815000065],[47.71558678500011,42.696682033000016],[47.72730553500017,42.662787177000055],[47.7518009770001,42.63666413],[47.83765709700006,42.60492584800015],[47.86768639400012,42.58466217700014],[47.93848717500012,42.48110586100002],[47.99293053500011,42.41966380400011],[48.02369225400011,42.39297109600001],[48.078786655000016,42.362738348],[48.09595787900016,42.349798895],[48.222341342000135,42.17511627800012],[48.249685092000185,42.14655182500003],[48.28614342500006,42.120835679],[48.3040470710001,42.10272858300006],[48.31169681100002,42.081976630000085],[48.31560306100001,42.060288804],[48.32496178500017,42.03876373900005],[48.38672936300006,41.93720123900009],[48.416351759000094,41.91502513200011],[48.46241295700017,41.90078359600001],[48.51002037900011,41.893500067],[48.552907748000194,41.87555573100003],[48.578623894000174,41.84552643400009],[48.578949415000096,41.84528229400014],[48.578951939870734,41.845280617371984],[48.53066003500007,41.78737294600016],[48.462210945000066,41.720992372000026],[48.45541914900011,41.714405823000114],[48.41325118000006,41.62761525500015],[48.39304569500009,41.59888315900007],[48.37015303500007,41.580150452000154],[48.28369836400006,41.539532776000115],[48.23135013800007,41.50547800700015],[48.20184289500011,41.493489075000106],[48.086552775000115,41.47664255800014],[48.05353153500002,41.46129465800006],[48.03456628400008,41.43364776700015],[48.001648397000025,41.36207590800011],[47.97916914900022,41.352412415000074],[47.95322758000006,41.355771383],[47.9426855880001,41.34739980100012],[47.937931356,41.331741842000056],[47.92945642100014,41.313551738000044],[47.91478031400007,41.300219218],[47.90144779500011,41.29298451800003],[47.89214603700006,41.28326934800002],[47.88925215700007,41.262443746000045],[47.89379968200014,41.241876526000155],[47.898863973000196,41.22906077100008],[47.89462650600015,41.219293925000116],[47.871113729000086,41.208183492],[47.82873905400007,41.198416647000144],[47.81349103700009,41.197387753],[47.74373132300016,41.19268056200017],[47.72455936700007,41.19572947200011],[47.69488884300014,41.20713402100013],[47.64254886900008,41.22725209600016],[47.6224984130001,41.22906077100008],[47.603171427000085,41.2232730110001],[47.56777307200016,41.20549631800016],[47.547309205000175,41.205651347000114],[47.529170776000086,41.216555074000084],[47.50095544500019,41.24632069900015],[47.47914799000009,41.251953430000086],[47.37558842000012,41.25944651300004],[47.3672917100001,41.26178943800009],[47.34447920800008,41.26823150700001],[47.26841149900011,41.302803040000114],[47.25084151200022,41.316032206],[47.240919637000076,41.33892486600003],[47.24277998800008,41.391273092000134],[47.239059285000025,41.41571604400018],[47.2314628500001,41.42754994800002],[47.20050866700015,41.456850485000146],[47.19513431800013,41.466979065000096],[47.1918270260002,41.47669423500007],[47.187072794000215,41.48563425700017],[47.17924955000009,41.491732376000144],[47.176995890000086,41.493489075000106],[47.15932255100009,41.503514303000046],[47.15224287900017,41.518138733000015],[47.148728881000096,41.53508860300011],[47.14139082800008,41.55240020800012],[47.12557784000009,41.56630116800001],[47.10749108900009,41.56991851800008],[47.08826745600007,41.56697296099999],[47.069147177000076,41.56128855500013],[47.02826236300004,41.55707465900017],[47.02703088400014,41.55694773400016],[47.012613160000086,41.5754995730001],[47.00393151800003,41.605420227000124],[46.97923018400016,41.635495911000085],[46.92951745600013,41.66722524000012],[46.915978230000036,41.68094533300014],[46.91225752700014,41.688619283000136],[46.906883179000175,41.70693857800002],[46.9022323,41.71275217700018],[46.89055342600014,41.71709299700016],[46.864508504000156,41.71967681900015],[46.85189945400006,41.722338155],[46.834794556000105,41.730244650000046],[46.76911381100015,41.77571991000009],[46.75939864100022,41.78729543100006],[46.75402429200008,41.80088633200013],[46.745032593000104,41.8401345830001],[46.74079512500006,41.85124501600002],[46.73242354300007,41.85140004500006],[46.71557702600008,41.83848093700006],[46.70955494600011,41.83506555700008],[46.69749027500009,41.82822316500007],[46.65707930500011,41.82199615500015],[46.636512085000135,41.816518453000086],[46.603955933000094,41.79517608700009],[46.586592651000075,41.786778667000085],[46.56757572500007,41.78667531399999],[46.54985070800009,41.79775990899999],[46.54432133000009,41.81476145400002],[46.54912723800007,41.85537913000006],[46.543546183000075,41.87429270500008],[46.525511109000064,41.882302552000155],[46.47931237800012,41.88700510700012],[46.45233728000008,41.88617828400011],[46.43089156100004,41.89044159000015],[46.40655196100013,41.91503957100015],[46.382057333000176,41.92524566700002],[46.32262943500015,41.929018047000156],[46.29415572100018,41.938629863000145],[46.25048913600003,41.97772308400009],[46.22434086100023,41.99348439500007],[46.21457401500018,41.9954997760001],[46.20615075700019,41.99609405500017],[46.19767582200009,41.9954997760001],[46.189200887000105,41.99376861600014],[46.1888908280001,41.9936394250001],[46.18858077000012,41.993536072],[46.12987634300006,41.98449269700002],[46.09918054200014,41.985061137000066],[46.07499597200015,41.99348439500007],[46.06827803500002,42.015317688],[46.058459513000145,42.020330302000055],[46.04481693500023,42.01772064200004],[46.026730184000115,42.016790467000085],[46.01835860200018,42.02004608200018],[46.00161543800013,42.03097564800005],[45.99515588400006,42.03345611600004],[45.98673262600008,42.031905823],[45.97350345900006,42.024154358000104],[45.96637211100003,42.02206146300013],[45.94756188900013,42.02291412400017],[45.934126017000175,42.02849517900007],[45.92348067200007,42.039631450000016],[45.895161987000186,42.0918763230001],[45.881364380000065,42.10203074200013],[45.811601196000105,42.115492452000026],[45.701788778000065,42.172749939000155],[45.66158451300012,42.186702576000144],[45.631405477000015,42.2011719770001],[45.62138024900011,42.22447804800014],[45.73641198700008,42.447539368000136],[45.7395062850002,42.470646785000056],[45.73961592600014,42.471465556000126],[45.698688192000105,42.507587382000146],[45.620656779000086,42.53037668900005],[45.53683760600015,42.54135793100012],[45.47927006000012,42.542339783],[45.39855147300008,42.5243822230001],[45.355970093000195,42.51996388800002],[45.32269047000014,42.53011830700008],[45.31256189000007,42.54171966500003],[45.30157131900014,42.55984209600016],[45.29364831500007,42.572906393],[45.2826929120001,42.586393941000054],[45.184197632000206,42.67483815600009],[45.15536218200006,42.693260804000104],[45.12296106000011,42.70227834100013],[45.10389245600018,42.70054718000007],[45.07601819100008,42.69141191700005],[45.06699548300017,42.688454895000106],[45.04808190900022,42.6858969120001],[45.029788452000076,42.68876495400017],[45.01211511300008,42.69530202300014],[44.902974487000186,42.75307627400015],[44.859359579000085,42.7595099900001],[44.83367639200017,42.7340851850001],[44.82742354300009,42.71796213800012],[44.798484741,42.67173756900014],[44.78231001700013,42.61665049300008],[44.77347334800001,42.60964833700008],[44.76107100400023,42.619234315000185],[44.736369670000066,42.677551168000136],[44.72448409,42.6910387170001],[44.69502852400009,42.71421559700009],[44.67942224200007,42.72367238400007],[44.642421916000124,42.73927866700011],[44.638758823000074,42.74014876600016],[44.600977417000166,42.74912302700007],[44.558292684000065,42.75310211300014],[44.50811486800009,42.75028574600019],[44.479227743000166,42.744291280000155],[44.401403035000016,42.713517965],[44.360682007000065,42.70375111900013],[44.27200524900016,42.70238169400007],[44.248647501000136,42.68199534200012],[44.230147339000176,42.65380584800009],[44.211350730000134,42.63963427099999],[44.197384481000114,42.629104512000154],[44.18580345900014,42.626508101000084],[44.15082401600014,42.618665874000115],[44.055067586000206,42.61530690500002],[44.011504354000095,42.60032074000004],[43.998016805000105,42.58936533600017],[43.973212118000184,42.56399220800007],[43.95843265800008,42.55440623000008],[43.93972578900011,42.55220998200018],[43.92081221600003,42.55910878600007],[43.908160536000224,42.566282989000065],[43.885362183000126,42.579210918],[43.84500288900002,42.58703989700013],[43.79616866000018,42.589830424000084],[43.75110681200013,42.598744609000114],[43.722581421000115,42.6248670450001],[43.72568200700002,42.654400127000045],[43.75379398600009,42.67465728800015],[43.788727254000065,42.69307993600013],[43.81177494300013,42.71726450700011],[43.80061283400019,42.746461690000054],[43.782525649000064,42.75321298300018],[43.75596439600017,42.76312734],[43.66284346600017,42.77984466600013],[43.64434330200001,42.78857798299999],[43.60300215700007,42.82480316200003],[43.586258992000154,42.83562937400008],[43.51742598500007,42.86045990000004],[43.47959883700017,42.86746205700002],[43.386178313000045,42.88688235600007],[43.194344930000085,42.92676076300013],[43.175228461000216,42.93447107200002],[43.15558760600001,42.94239288400008],[43.04825565600018,43.01696197500014],[42.99885298600023,43.0422059130001],[42.989757935000085,43.05267039000016],[42.992548462000144,43.06881927600013],[43.000196574000114,43.08535573300004],[43.000093221000185,43.09866241500005],[42.914827108000196,43.12194264800017],[42.88578495300012,43.135843608000144],[42.85767297300018,43.155454814000095],[42.82976770000019,43.16876149500008],[42.79132043400014,43.176177063000026],[42.75152958100014,43.176952210000124],[42.70491744000017,43.166436056000165],[42.673601522000155,43.16589345300012],[42.65623824000007,43.159795634000076],[42.629366496000074,43.14126963400003],[42.615207153000114,43.136980490000056],[42.59588016700016,43.140029399000085],[42.53490197800019,43.165066630000084],[42.50606652900015,43.18155141199999],[42.4797115480001,43.20090423600011],[42.42286747300014,43.22899037700016],[42.36256010000008,43.23519446400003],[42.354551229000066,43.23601837200005],[42.18536259000021,43.2254763800001],[42.15983443200017,43.219740296000154],[42.15433396100016,43.217497744000056],[42.075291789000204,43.18527211500015],[42.043355754000146,43.18056956000011],[42.011316365000226,43.18186147100006],[41.979690389000126,43.18865692100009],[41.94827111800012,43.2000774130001],[41.91933231600015,43.205942689],[41.88998010300017,43.20702789300019],[41.82032027200014,43.20124013300004],[41.7889010010002,43.20356557300006],[41.723788696000184,43.21723398900015],[41.68740848800021,43.22020538300007],[41.61413130700012,43.213022360000124],[41.57754439300007,43.215296123000044],[41.55056929500014,43.226277365000115],[41.506127564000074,43.25978953100004],[41.479772583000084,43.27123586100005],[41.42757938600013,43.2831989540001],[41.41310998500009,43.291286317000086],[41.403808228000145,43.30151825000017],[41.38975223800011,43.324875997000035],[41.38065718500016,43.334772034000096],[41.35027144300014,43.34335032200012],[41.27875126100017,43.33319590300009],[41.24392134600012,43.34420298200017],[41.21312219300014,43.36278066],[41.180772746000144,43.37469207800014],[41.14666630000007,43.37985972100016],[41.042486613000186,43.36983449400013],[41.01179081300003,43.37541554800005],[40.87495161900008,43.455643209000144],[40.842705525000184,43.46938913999998],[40.740179484000144,43.4952790330001],[40.68996557600016,43.523129317000084],[40.681061645000085,43.528067729000114],[40.651916138000075,43.538971456000084],[40.61553592900006,43.535845032000125],[40.550837036000104,43.511247051000154],[40.519624471000014,43.50517506900009],[40.47983361800013,43.50874074299999],[40.23313033100007,43.575765076],[40.16429732300016,43.57584259000011],[40.09670454900012,43.56263926200002],[40.07283003800015,43.55106374200006],[40.05918746000012,43.535199077000144],[39.99128462700017,43.40631805500014],[39.985976355423105,43.38898960966709],[39.98552493600019,43.38906484600007],[39.962575717000135,43.39264557500014],[39.933360222000175,43.406683661],[39.910329623000194,43.42641836100013],[39.89568118600019,43.44871653900016],[39.88249759200008,43.47675202000009],[39.86793053500011,43.49567291900011],[39.84693444100017,43.50999583499999],[39.75652103000018,43.54531484600004],[39.73438561300023,43.560614325000174],[39.71827233200016,43.567775783000016],[39.71208743600019,43.57290273600013],[39.706309441000116,43.58250560100011],[39.69792728000007,43.60423411699999],[39.6907658210001,43.61383698100015],[39.67497806100019,43.622788804],[39.63404381600017,43.635199286000116],[39.61890709700006,43.64459870000006],[39.574066602000094,43.68895091400015],[39.45753014400012,43.770900783],[39.39136803500011,43.84536367400006],[39.32935631600017,43.89622630400011],[39.116384311000076,44.023504950000145],[39.08814537900017,44.04523346600003],[39.061208530000016,44.076117255000085],[39.0447697270001,44.088120835],[39.022715691000116,44.09300364800008],[39.0115666020001,44.100287177],[38.98902428500011,44.13556549700002],[38.978282097,44.14826080900018],[38.96013431100019,44.15713125200013],[38.9373478520001,44.16351959800015],[38.89234459700011,44.16868724200005],[38.87370853000013,44.173407294000135],[38.855642123000194,44.184515692],[38.77564537900011,44.26121653900004],[38.75831139400012,44.273627020000056],[38.73975670700011,44.281480210000055],[38.697113477000094,44.29222239800007],[38.5950626960001,44.331935940000065],[38.309825066000116,44.36615631700006],[38.29932701900023,44.377630927],[38.288422071000156,44.38515859600007],[38.21729576900012,44.38719310099999],[38.17774498800006,44.40599192900014],[38.15259850400011,44.43667226800012],[38.13257897200012,44.47003815300012],[38.10808353000019,44.49705638200005],[38.07129967500012,44.51601797100006],[38.06283613400015,44.52423737200017],[38.05616295700011,44.55898672100012],[38.044932488000114,44.56118398600002],[38.011892123000074,44.552313544000164],[38.00025475400017,44.55548737200006],[37.984548373000194,44.56427643400009],[37.944509311000076,44.597113348],[37.92807050900015,44.60594310100008],[37.922618035000106,44.61375560100005],[37.92465254000015,44.617132880000085],[37.930349155000016,44.62189362200017],[37.93555748800023,44.62775299700003],[37.93620853000007,44.6342634140001],[37.93311608200011,44.638739325000174],[37.87484785200016,44.68939850500006],[37.864512566000165,44.69635651200004],[37.844086134000094,44.700873114],[37.79997806100019,44.72260163000005],[37.778493686000076,44.72980377800009],[37.79053795700011,44.70587799700003],[37.80884850400017,44.68642812700013],[37.822438998000194,44.66815827000006],[37.8201603520001,44.647894598000065],[37.80005944100017,44.63523997599999],[37.76929772200012,44.63239166900014],[37.736501498000194,44.63568756700009],[37.710297071000156,44.641750393000066],[37.659678582000055,44.66181061400012],[37.63184655000011,44.66901276200015],[37.601084832000225,44.66840241100003],[37.58366946700008,44.657375393000066],[37.57715905000006,44.65534088700004],[37.56934655000006,44.656439520000085],[37.535817905,44.66571686400012],[37.52173912900011,44.67226797100001],[37.508962436000076,44.6752790390001],[37.498708530000016,44.66840241100003],[37.47828209700012,44.677191473000065],[37.46387780000006,44.689927476000136],[37.45142662900017,44.70400625200007],[37.43653405000012,44.7167829450001],[37.385996941000116,44.736761786],[37.37110436300023,44.74787018400012],[37.35124759200007,44.77863190300008],[37.317881707000055,44.84617747600008],[37.292491082000225,44.867621161],[37.292491082000225,44.87506745000009],[37.31128991000011,44.89085521000011],[37.3060001960001,44.90965403900016],[37.287119988000114,44.928168036],[37.19190514400012,44.99103424700014],[37.16570071700019,44.99799225500014],[37.1521916020001,44.999701239000146],[37.13502037900017,45.00405508000013],[37.12012780000012,45.00946686400008],[37.10572350400017,45.02020905199999],[37.068369988000114,45.030340887000065],[37.03467858200011,45.047756252],[36.94996178500011,45.065619208],[36.84009850400011,45.10936107000008],[36.79908287900011,45.11469147300012],[36.77849368600019,45.11261627800012],[36.741547071000156,45.10321686400008],[36.719981316000116,45.101019598],[36.70167076900005,45.10382721600014],[36.64136803500011,45.128363348000065],[36.5931095710001,45.16478099200004],[36.58619225400011,45.17234935099999],[36.58318118600019,45.18024323100015],[36.57813561300017,45.18707916900017],[36.577321811000076,45.19415924700003],[36.58619225400011,45.20282623900012],[36.59473717500012,45.20482005400007],[36.70671634200019,45.20282623900012],[36.72966556100019,45.206284898000135],[36.764821811000076,45.223822333000086],[36.78541100400011,45.23069896],[36.796153191000116,45.231878973],[36.82984459700012,45.23069896],[36.84083092500006,45.23285553600009],[36.85450280000012,45.24225495000011],[36.87517337300014,45.245794989],[36.935231967000135,45.268011786000145],[36.9529728520001,45.277167059000035],[36.96168053500011,45.282945054],[36.968028191000116,45.29096100500014],[36.97038821700019,45.303045966000056],[36.966156446000156,45.31159088700015],[36.95679772200012,45.31801992400007],[36.94727623800023,45.320217190000065],[36.943125847000175,45.31639232000005],[36.78882897200012,45.29218170800005],[36.77800540500019,45.30060455900009],[36.766449415000096,45.31981028900007],[36.758474155000016,45.340765692],[36.75806725400011,45.35423411699999],[36.77572675900015,45.36481354400014],[36.78695722700016,45.348578192],[36.7947697270001,45.3248558610001],[36.80250084700012,45.31268952],[36.81218509200019,45.31639232000005],[36.812266472000175,45.325628973],[36.809825066000116,45.33698151200018],[36.81218509200019,45.34739817900008],[36.81902103000013,45.35260651200015],[36.82862389400012,45.35675690300012],[36.8475041020001,45.3610700540001],[36.8475041020001,45.36733633000016],[36.81739342500012,45.367621161],[36.805918816000116,45.37075429900007],[36.781586134000094,45.38764069200006],[36.77003014400023,45.387884833],[36.759287957000225,45.38397858300002],[36.747569207000225,45.381537177000084],[36.727793816000116,45.37177155200014],[36.68799889400023,45.331488348000065],[36.668142123000024,45.32636139500015],[36.66651451900012,45.340399481000084],[36.68189537900017,45.3661970070001],[36.70508873800006,45.39101797100007],[36.833262566000116,45.443019924000126],[36.847666863000114,45.43406810100011],[36.862478061000076,45.43183014500012],[36.878103061000076,45.43187083500011],[36.89527428500017,45.429999091000134],[37.06666100400011,45.353827216000084],[37.108734571000156,45.34247467700011],[37.13152103000019,45.34056224200005],[37.13941491000017,45.33551666900003],[37.13152103000019,45.32477448100012],[37.11915123800017,45.314886786],[37.11378014400012,45.31268952],[37.11101321700002,45.303045966000056],[37.10694420700011,45.27655670800006],[37.10694420700011,45.271673895],[37.09766686300023,45.26845937700013],[37.07146243600019,45.265814520000056],[37.06592858200005,45.26146067900005],[37.067149285000106,45.25071849200005],[37.07105553500017,45.243312893000066],[37.0783797540001,45.238959052000084],[37.08985436300022,45.23753489800002],[37.11247806100019,45.23932526200018],[37.16911868600019,45.25116608300014],[37.214854363000114,45.251410223000086],[37.236501498000194,45.25531647300009],[37.245371941000116,45.26829661699999],[37.25440514400022,45.27692291900008],[37.31918379000015,45.271673895],[37.30274498800006,45.28632233300003],[37.274261915000146,45.294134833],[37.21680748800017,45.29962799700003],[37.18775475400017,45.29877350500011],[37.17367597700016,45.30011627800012],[37.16228274800008,45.306463934000064],[37.153005405000016,45.320461330000015],[37.15894616000017,45.326076565],[37.34766686300006,45.32770416900002],[37.3704533210001,45.322211005],[37.38135826900006,45.306463934000064],[37.39380944100011,45.31732819200012],[37.431407097000175,45.322333075000174],[37.446787957000225,45.330023505],[37.460134311000076,45.34056224200005],[37.50473066500009,45.3610700540001],[37.519297722000175,45.369289455],[37.51880944100017,45.36041901200015],[37.50473066500009,45.33380768400012],[37.515798373000074,45.336371161000116],[37.536387566000116,45.34544505400011],[37.54265384200008,45.34739817900008],[37.553965691000116,45.34634023600002],[37.57374108200017,45.341701565],[37.58399498800006,45.34056224200005],[37.5916447270001,45.33803945500013],[37.60084069100017,45.33136627800009],[37.60767662900011,45.32241445500016],[37.60792076900023,45.31268952],[37.60084069100017,45.30687083500005],[37.589121941000116,45.30312734600004],[37.566742384000094,45.29962799700003],[37.591075066000116,45.28937409100011],[37.609548373000074,45.296820380000085],[37.62378991000017,45.314276434000035],[37.63510175900015,45.33380768400012],[37.63786868600013,45.32851797100012],[37.642344597000175,45.321478583000086],[37.64747155000012,45.31533437700009],[37.651621941000116,45.31268952],[37.66179446700008,45.31232330900009],[37.66618899800008,45.311224677000055],[37.67107181100002,45.309271552],[37.71021569100017,45.30027903900016],[37.72046959700012,45.29962799700003],[37.72925866000017,45.301662502000156],[37.73601321700019,45.30613841400013],[37.73829186300006,45.31069570500007],[37.72925866000017,45.31533437700009],[37.71436608200011,45.32851797100012],[37.710297071000156,45.33380768400012],[37.70622806100019,45.337307033000016],[37.70183353000013,45.33746979400017],[37.69988040500007,45.339178778000175],[37.702891472000175,45.34739817900008],[37.706390821000156,45.35126373900008],[37.71534264400005,45.354722397999986],[37.71705162900011,45.35765208499999],[37.72046959700012,45.35700104400014],[37.737559441000116,45.37474192900005],[37.74219811300006,45.38275788],[37.74398847700015,45.389553127],[37.74773196700019,45.393988348],[37.7580672540001,45.39520905200011],[37.7580672540001,45.40204498900012],[37.747406446000156,45.39907461100002],[37.729828321000156,45.39081452000012],[37.71705162900011,45.38898346600014],[37.723480665000096,45.41461823100012],[37.71753991000016,45.42666250200013],[37.70769290500007,45.43691640800015],[37.702891472000175,45.457261460000055],[37.71509850400011,45.4544945330001],[37.73389733200011,45.44619375200001],[37.74439537900017,45.443019924000126],[37.74439537900017,45.450425523000135],[37.72836347700016,45.457464911],[37.69971764400012,45.479315497000144],[37.68604576900017,45.484035549000154],[37.68702233200022,45.49384186400009],[37.702647332000225,45.54315827000006],[37.69971764400012,45.56281159100003],[37.692637566000116,45.56818268400018],[37.681000196000156,45.574042059000035],[37.66863040500019,45.57880280200011],[37.65870201900012,45.580796617000075],[37.64942467500006,45.584947007],[37.642751498000194,45.603501695000105],[37.63510175900015,45.60809967700014],[37.62305748800023,45.60138580900009],[37.62330162900017,45.58588288],[37.63640384200008,45.57099030200011],[37.66244550900015,45.56655508000016],[37.66244550900015,45.55906810099999],[37.64283287900017,45.553778387000115],[37.63510175900015,45.552883205000015],[37.63510175900015,45.54539622600005],[37.63917076900012,45.5407575540001],[37.64340254000015,45.534654039000046],[37.64665774800008,45.52708567899999],[37.64820397200011,45.51813385600015],[37.64918053500011,45.518296617000125],[37.651540561000076,45.51634349199999],[37.65398196700019,45.51276276200009],[37.65503991000011,45.50820547100006],[37.653086785000106,45.50438060100005],[37.64869225400011,45.504217841000084],[37.64421634200008,45.505072333],[37.641937696000156,45.504461981000034],[37.640798373000024,45.455959377000156],[37.62777754000015,45.42816803600009],[37.61915123800023,45.418402411000145],[37.60824629000015,45.415838934000035],[37.59424889400012,45.42255280199999],[37.58627363400015,45.43244049700009],[37.58643639400012,45.44350820500013],[37.59424889400012,45.47711823100014],[37.593923373000194,45.50885651200009],[37.58619225400017,45.567816473000065],[37.58741295700011,45.60065338700015],[37.5950626960001,45.635321356000034],[37.60141035200016,45.652899481000176],[37.60792076900023,45.6627464860001],[37.626475457000225,45.66828034100003],[37.63477623800023,45.66071198100015],[37.63111412900017,45.648993231000176],[37.6145939460001,45.64227936400012],[37.641937696000156,45.63544342700011],[37.65251712300013,45.623968817000055],[37.67090905000006,45.60968659100017],[37.67888431100001,45.61078522300012],[37.682302280000016,45.62799713700003],[37.69825280000006,45.623765367000104],[37.702891472000175,45.62177155200008],[37.700694207000055,45.634670315],[37.69385826900023,45.63914622600005],[37.68482506600011,45.64191315300012],[37.67603600400017,45.649115302000055],[37.666840040000096,45.66376373900006],[37.666840040000096,45.66901276200004],[37.674001498000074,45.67194245000014],[37.763682488000114,45.72475820500012],[37.80062910200016,45.74144114799999],[37.81641686300011,45.744614976000044],[37.8294376960001,45.75315989800008],[37.8431095710001,45.77260976800006],[37.861094597000175,45.80609772300012],[37.87484785200016,45.84100983300014],[37.90202884200019,45.95075104400014],[37.91871178500011,45.991400458000136],[37.94011478000007,46.02033112200006],[37.97185306100002,46.040025132],[38.03785241000017,46.056545315000065],[38.09107506600011,46.060003973000065],[38.09750410200016,46.05780670800005],[38.08790123800006,46.052964585],[38.04704837300014,46.03856028900013],[38.03980553500011,46.03388092700003],[38.03248131600017,46.02521393400012],[38.05486087300019,46.03266022300009],[38.06625410200016,46.03253815300012],[38.073985222000175,46.02521393400012],[38.07227623800006,46.013739325000145],[38.05144290500019,45.99262116100006],[38.046071811000076,45.981431382000046],[38.041840040000096,45.96108633000016],[38.046153191000116,45.95359935099999],[38.06348717500012,45.95075104400014],[38.07797285200016,45.95209381700012],[38.08033287900011,45.94635651200015],[38.080821160000106,45.92963288000011],[38.07300866000011,45.90875885600015],[38.05469811300023,45.889227606000176],[38.01531009200008,45.857611395],[38.00123131600011,45.83258698100009],[38.01449629000015,45.818426825000145],[38.03956139400023,45.81606679900001],[38.06031334700012,45.82660553600009],[38.04688561300017,45.84088776200015],[38.04981530000006,45.85488515800013],[38.073985222000175,45.881822007],[38.09652754000015,45.94025299700017],[38.09750410200016,45.95075104400014],[38.108653191000165,45.95661041900008],[38.12110436300006,45.971340236000074],[38.13119550900015,45.990057684000064],[38.13892662900017,46.03009674700008],[38.14714603000007,46.04047272300009],[38.15626061300023,46.0477562520001],[38.16277103000007,46.060003973000065],[38.162119988000114,46.10195547100015],[38.167491082000225,46.12051015800016],[38.18669681100019,46.12824127800015],[38.2072860040001,46.13178131700015],[38.22754967500006,46.13816966400016],[38.24878991000011,46.141546942],[38.27198326900017,46.13568756700014],[38.319590691000116,46.09345123900011],[38.354502800000056,46.08246491100006],[38.40919030000012,46.04633209800012],[38.42741946700019,46.038275458],[38.44581139400023,46.03424713700012],[38.48178144600009,46.03266022300009],[38.49244225400017,46.03363678600006],[38.513845248000194,46.03790924700017],[38.52588951900012,46.03880442900007],[38.53907311300023,46.03359609600007],[38.54997806100002,46.031195380000106],[38.559906446000156,46.03266022300009],[38.56674238400015,46.04328034100003],[38.57349694100017,46.064195054],[38.5760197270001,46.08734772300012],[38.57081139400011,46.10468170800011],[38.55681399800008,46.115179755],[38.30005944100017,46.21865469000014],[38.285329623000074,46.23212311400012],[38.279470248000024,46.25551992400001],[38.27125084700012,46.274155992000104],[38.25245201900006,46.288275458000115],[38.21729576900012,46.305731512000094],[38.12289472700016,46.37750885600017],[38.08765709700012,46.396429755],[38.06788170700011,46.40143463700004],[37.99073326900023,46.40241120000003],[37.980642123000194,46.400336005],[37.974945509000094,46.394273179000024],[37.977793816000116,46.38214752800012],[38.010101759000094,46.372544664000124],[38.018728061000076,46.36847565300017],[37.99537194100017,46.35443756700012],[37.97095787900011,46.36180247600011],[37.90503991000017,46.41103750200004],[37.862966342000135,46.454779364],[37.85059655000006,46.46405670800005],[37.827321811000076,46.476507880000085],[37.81299889400006,46.50568268400012],[37.8020939460001,46.53880442900005],[37.77654056100002,46.58690013200011],[37.767751498000074,46.617621161000116],[37.75513756600017,46.645941473000065],[37.73072350400011,46.66266510600009],[37.73072350400011,46.67011139500006],[37.73536217500006,46.66962311400009],[37.73658287900017,46.67121002800012],[37.736501498000194,46.67377350500011],[37.737559441000116,46.676336981000034],[37.76823978000007,46.66327545800006],[37.8103947270001,46.63959381700012],[37.85222415500019,46.62250397300009],[37.88160241000011,46.629136460000055],[37.92465254000015,46.615545966000084],[37.9822697270001,46.61749909100014],[38.03679446700019,46.629461981000176],[38.07032311300023,46.645941473000065],[38.103688998000194,46.67597077],[38.12330162900017,46.68646881700009],[38.14576256600017,46.69061920800011],[38.19434655000012,46.69212474199999],[38.21387780000012,46.69619375200013],[38.23096764400023,46.70429108300006],[38.261485222000175,46.72817617400012],[38.2717391290001,46.73236725500005],[38.27995853,46.725775458],[38.28931725400017,46.71108633000007],[38.290049675000056,46.70612213700003],[38.30689537900017,46.68317291900014],[38.31364993600002,46.676336981000034],[38.462250196000156,46.64695872600011],[38.575450066000116,46.653794664000046],[38.5916447270001,46.65924713700018],[38.59815514400006,46.67792389500006],[38.58578535200016,46.695868231000084],[38.56674238400015,46.70994700700005],[38.553070509000094,46.71727122600005],[38.513438347000175,46.732489325000024],[38.470550977000094,46.74347565300009],[38.42798912900017,46.74485911700007],[38.38933353000019,46.73159414300012],[38.38843834700012,46.725775458],[38.38355553500011,46.71381256700006],[38.378184441000165,46.708156643000066],[38.374359571000156,46.729315497000144],[38.36939537900011,46.74408600500006],[38.36817467500012,46.75543854400003],[38.373220248000024,46.76239655200011],[38.39616946700002,46.77472565300015],[38.40300540500007,46.77997467700014],[38.40455162900016,46.789455471000146],[38.40154056100019,46.81134674700009],[38.40300540500007,46.82094961100016],[38.414724155000016,46.83331940300009],[38.43531334700017,46.846747137000094],[38.45769290500019,46.85748932500009],[38.47461998800005,46.86188385600009],[38.553070509000094,46.84829336100013],[38.573090040000096,46.850287177000084],[38.60906009200008,46.859686591000084],[38.69092858200011,46.863836981000034],[38.711436394000174,46.86810944200015],[38.76628665500007,46.88678620000003],[38.80372155000011,46.89354075700005],[38.82032311300006,46.904242255],[38.847422722000175,46.93081289300012],[38.86573326900023,46.94293854400003],[38.88111412900011,46.94627513200005],[38.91960696700019,46.94383372600011],[38.9373478520001,46.94745514500009],[38.95728600400017,46.956488348],[38.99138431100019,46.97797272300012],[39.03630618600019,47.01365794500008],[39.06023196700008,47.02171458499999],[39.06714928500011,47.02757396000014],[39.07520592500006,47.03266022300006],[39.08814537900017,47.03318919500005],[39.097422722000054,47.029038804000024],[39.10499108200011,47.01679108300014],[39.11491946700019,47.01276276200015],[39.12671959700006,47.013820705000036],[39.13770592500012,47.01862213700012],[39.14673912900011,47.023871161],[39.15308678500017,47.02635325700011],[39.26189212300008,47.00861237200003],[39.28003991000017,47.01276276200015],[39.289398634000094,47.02728913000003],[39.296153191000116,47.06899648600016],[39.30355879000015,47.084702867000104],[39.32504316500015,47.098781643000066],[39.36784915500007,47.106146552000055],[39.38868248800023,47.11517975500006],[39.35466556100019,47.131048895],[39.32935631600017,47.128363348000036],[39.306651238000114,47.11225006700015],[39.28003991000017,47.087836005],[39.26490319100017,47.09662506700006],[39.26197350400017,47.10761139500012],[39.273203972000054,47.13564687700012],[39.25456790500007,47.14012278900019],[39.24919681100013,47.14813873900014],[39.252614780000016,47.1803246110001],[39.25603274800002,47.189764716000106],[39.2639266290001,47.19147370000012],[39.272959832000105,47.191799221000124],[39.28003991000017,47.19708893400012],[39.281586134000094,47.20526764500012],[39.28003991000017,47.23525625200007],[39.264008009000094,47.26080963700015],[39.22738691500015,47.26723867400007],[39.18604576900023,47.268744208000115],[39.15650475400017,47.27968984600001],[39.13884524800008,47.27342357000005],[39.119883660000106,47.277044989],[39.10230553500011,47.28351471600011],[39.08814537900017,47.28644440300003],[39.07325280000011,47.28168366100011],[39.04810631600017,47.266750393000095],[39.040375196000156,47.26601797100006],[39.013438347000175,47.254461981000034],[38.97681725400017,47.25690338700015],[38.944590691000116,47.25275299700003],[38.93051191500015,47.22162506700012],[38.933929884000094,47.20107656500009],[38.93775475400011,47.189764716000106],[38.931651238000114,47.185003973],[38.88656660200016,47.181463934000035],[38.87330162900011,47.17544179900004],[38.861664259000094,47.16860586100002],[38.847422722000175,47.16356028900016],[38.82886803500017,47.162014065000115],[38.77222741000011,47.16356028900016],[38.71924889400023,47.15119049700003],[38.68287194100017,47.147162177000055],[38.64527428500017,47.13776276200003],[38.62549889400023,47.13564687700012],[38.553070509000094,47.13564687700012],[38.55681399800008,47.13117096600017],[38.558767123000194,47.1279157570001],[38.56169681100013,47.125067450000174],[38.56804446700008,47.12201569200009],[38.56804446700008,47.11517975500006],[38.54476972700016,47.11481354400014],[38.51742597700016,47.11904531500006],[38.49293053500011,47.128078518000095],[38.478037957000055,47.14248281500014],[38.49439537900011,47.14899323100003],[38.50961347700016,47.17161692900011],[38.52247155000012,47.17658112200014],[38.531016472,47.18231842700011],[38.55079186300023,47.20929596600008],[38.559906446000156,47.21820709800012],[38.59262129000015,47.22968170800005],[38.77564537900011,47.245510158000016],[38.78956139400006,47.25063711100002],[38.80779056100007,47.26264069200015],[38.821136915000096,47.27631256700009],[38.820648634000094,47.28644440300003],[38.81039472700016,47.287827867000104],[38.802012566000116,47.28091054900001],[38.78956139400006,47.262600002000156],[38.78288821700002,47.25910065300015],[38.773448113000114,47.25824616100006],[38.75513756600017,47.25910065300015],[38.594574415000096,47.24127838700018],[38.55339603000007,47.22980377800003],[38.51905358200011,47.210760809000064],[38.50049889400006,47.18158600499999],[38.49488366000017,47.17658112200014],[38.485524936000076,47.17462799700011],[38.47331790500007,47.1694196640001],[38.46265709700012,47.16181061400009],[38.458181186000076,47.152655341000084],[38.44898522200012,47.140285549000154],[38.42790774800008,47.133530992000104],[38.265391472000175,47.118801174000126],[38.224131707000225,47.10834381700015],[38.21665863816153,47.103267004541905],[38.20141971900014,47.130741883],[38.19697554500013,47.16239369800009],[38.20348677600012,47.19231435200011],[38.22250370200018,47.21523284900014],[38.241313924000195,47.223940328000126],[38.26394820200002,47.23153676400007],[38.284722127000094,47.241148580000086],[38.29815800000014,47.25603139200005],[38.3009485270002,47.27603017200006],[38.29185347500001,47.28703725200016],[38.27573042900022,47.29181732200006],[38.25764367700012,47.29274749800011],[38.220333293000095,47.288794251000056],[38.20100630700003,47.290628764000026],[38.18870731600012,47.30098988900015],[38.19056766800011,47.31690623000015],[38.20338342300019,47.334631246000086],[38.23335575300021,47.362407328000025],[38.25795373600013,47.3932323210001],[38.263638142000076,47.421706035000156],[38.26033085100008,47.49294199700002],[38.274386840000176,47.52784942699999],[38.29340376800022,47.56278269500008],[38.31903527800009,47.59130808500013],[38.35293501800001,47.607095236000035],[38.562224569000165,47.62662892700002],[38.58764937300011,47.63430287700011],[38.60635624200009,47.64505157500004],[38.64335656700021,47.67352528900007],[38.66216678900011,47.683292135000116],[38.67787642400012,47.68517832500014],[38.713016398000065,47.675721538000076],[38.734513794000094,47.67714263900014],[38.745159139000094,47.69311065699999],[38.7533240160001,47.7351494350001],[38.770997355000105,47.78083140100013],[38.79621545400008,47.819924622000045],[38.83094201700007,47.84824330600004],[38.87724410000018,47.86123993000008],[39.03618022000015,47.85700264800015],[39.03909468600014,47.8569249480001],[39.09294152800007,47.83209442100015],[39.1135087480001,47.82855458600001],[39.13324914600011,47.82953643800006],[39.17355676300011,47.837055359000104],[39.31969771300007,47.84602122000014],[39.34005822700012,47.84356659000015],[39.37354455600021,47.828296204000125],[39.391631307000154,47.82261179600009],[39.413955525000084,47.823180237000045],[39.45705367000019,47.83129343700012],[39.479894653000116,47.826125794000134],[39.50935022000012,47.82276682600003],[39.570018351000186,47.83093170200014],[39.600610799,47.82948476200014],[39.70075972500015,47.81152720100006],[39.733832642,47.81599721300007],[39.75905074100015,47.83294708300009],[39.77558719900017,47.85801015200009],[39.78292525200007,47.88656138200015],[39.782098430000104,47.89289174500008],[39.777550903000105,47.90658599900008],[39.777034139000165,47.913743185000136],[39.77982466600011,47.922476502],[39.7904700120001,47.93774688800006],[39.79398400900007,47.945705058000115],[39.796154419000146,47.96136301700007],[39.79439742000008,47.97131073100008],[39.78023807800011,47.99314402300002],[39.77010949700016,48.004099427000185],[39.76194462100014,48.009783834000025],[39.75987756300017,48.01495147800013],[39.76814579200007,48.02433075],[39.77879113800023,48.02921417300003],[39.833568156000204,48.03619049100011],[39.84028609200007,48.035001933],[39.84297326600009,48.036397197000056],[39.84431685400014,48.045673116],[39.82902063000009,48.07678232900003],[39.831191040000164,48.09998504700006],[39.843076619000186,48.11975128200011],[39.893719523000044,48.1829773970001],[39.91263309700011,48.197679342000086],[39.96048547400019,48.2220706180001],[39.97764204900008,48.23545481400005],[39.99066451000007,48.25374827100002],[39.993248332000206,48.273230286000015],[39.97888228400021,48.29007680299999],[39.957384888000064,48.29338409500009],[39.90519169100017,48.28064585400013],[39.884831177000166,48.27899220799999],[39.81589481600011,48.3081635540001],[39.88410770600015,48.346352438000096],[39.90147098800017,48.361183574],[39.92410526600011,48.37611806300008],[39.914493449000105,48.38469635100002],[39.90684533700013,48.39833892800003],[39.89619999200013,48.423918763000145],[39.86478072100007,48.469833273000134],[39.85434208200016,48.47544016500013],[39.84473026600003,48.48350168900005],[39.842146444000065,48.499056295000074],[39.846693969000086,48.49983144100018],[39.85599572800012,48.49936635300015],[39.86540083800017,48.50148508800013],[39.86953495300011,48.50990834600013],[39.86850142400012,48.51290557900013],[39.86612430800008,48.51703969300014],[39.863850546000066,48.52274994000011],[39.862713664000154,48.53006215500001],[39.85506555200007,48.55610707699999],[39.8353251550001,48.57347035800008],[39.809176880000194,48.583753968000096],[39.69011437900022,48.59367584199999],[39.67027063000015,48.58840484700015],[39.631720011000056,48.58690623000014],[39.64184859200023,48.611710918000185],[39.702930135000116,48.74658640500003],[39.71140507000021,48.754802959000145],[39.7363131110001,48.7615208940001],[39.744477987000124,48.77051259400004],[39.75119592300021,48.781881409000114],[39.75936079900006,48.79283681200009],[39.7794112550001,48.80771962500013],[39.80121871000014,48.81490264899999],[39.824163046000166,48.81562612],[39.934957317000084,48.78668731700012],[39.975264933000204,48.78968455000013],[40.019603312000044,48.81314565100003],[40.03872359300007,48.829992168],[40.05277958200005,48.84973256500014],[40.05381311000016,48.869214580000126],[40.03427941900023,48.885596009],[40.008854614000114,48.887818095000014],[39.989941040000105,48.8756741340001],[39.97226770000012,48.86032623300004],[39.95035689300008,48.852781474],[39.9376444910001,48.856243795000026],[39.91862756400022,48.872470195000126],[39.908188924000086,48.878412984000065],[39.896510051000206,48.87991160100015],[39.861886841000086,48.876449280000095],[39.78230513500008,48.88843821300016],[39.758740682000195,48.895414531000156],[39.747371867000105,48.90533640600016],[39.739413696000014,48.91897898300006],[39.72597782400007,48.93701405900008],[39.70778772000003,48.948796286000075],[39.68753055800002,48.95758127900014],[39.673991333000146,48.970138652000074],[39.681122681000176,49.020316468000104],[39.69827925600006,49.028377991000085],[39.74892216000009,49.026207581],[39.831501099000064,49.045276184],[39.86199019400013,49.04512115600015],[39.89134240700011,49.04176218700003],[39.907258749000135,49.04258901000007],[39.918730916000044,49.04780833000008],[39.92338179500021,49.05798858700014],[39.92606897000016,49.08651397699999],[39.93092655400008,49.10056996700011],[39.95211389200014,49.12454783200003],[39.97960575400012,49.14185943700012],[40.03841353300018,49.16852447600017],[40.057740519000134,49.182787171000044],[40.09091678900015,49.21725535100002],[40.1102437750001,49.227642314000136],[40.134014934000135,49.23627227900009],[40.14166304500023,49.245780741000075],[40.14269657400021,49.28190256800018],[40.15716597500014,49.315853984000015],[40.15954309100018,49.333579000000114],[40.148070923000176,49.34959869400008],[40.101355429000165,49.3854621380001],[40.06197798700006,49.42582143200018],[40.04089400200016,49.45548370400006],[40.0348995360001,49.48705800400001],[40.05432987500009,49.51976918600012],[40.072003214000205,49.53067291300006],[40.110657186000104,49.54534901900014],[40.12605676300009,49.55909495100009],[40.130707642000026,49.579817201000125],[40.11850409600018,49.588451001000024],[40.115514770000146,49.59056589800004],[40.01774296000016,49.607877503000154],[39.99810591600013,49.60823923800014],[39.97402469900007,49.602554830000095],[39.91470015500008,49.56297068400014],[39.889378703000176,49.55325551300011],[39.85940637200022,49.5455557260001],[39.82871057100007,49.541473288000084],[39.80152876800011,49.54219675700001],[39.78106490100006,49.54839792899999],[39.72918176300007,49.58079905199999],[39.68866744000016,49.593459778000025],[39.65332076000007,49.599815980000145],[39.622935018000106,49.61345855800006],[39.59740686100022,49.64797841500014],[39.58159387200007,49.690714823000135],[39.57043176300013,49.71329742500008],[39.557512655000124,49.723994446000106],[39.49911828600014,49.72812856000003],[39.479894653000116,49.73360626300011],[39.443617798000076,49.74952260300013],[39.40599735500015,49.74425160800011],[39.36724003100019,49.73184926400013],[39.327655884000166,49.726319885000024],[39.28993208900013,49.73205597],[39.260889934,49.74450999000008],[39.23804895100008,49.76512888600017],[39.18275516800011,49.85850819900004],[39.1810055170001,49.85948693100011],[39.15578007000008,49.873597718000056],[39.11712609800023,49.86439931300004],[39.09986617000007,49.851635234000085],[39.06834354700018,49.82109446200017],[39.04911991400016,49.81055247000002],[39.03227339700018,49.80734853200015],[38.93739546700013,49.80347279900009],[38.910523722000136,49.82057769800004],[38.88633915200014,49.845175680000025],[38.85223270700007,49.86579457700013],[38.747846313000224,49.885431621000166],[38.687281535000146,49.91380198200007],[38.680977010000134,49.91829783100009],[38.67560266100011,49.92703114900014],[38.672812134000225,49.942999166],[38.66433719900013,49.96268788700014],[38.66464725700021,49.96516835600012],[38.66216678900011,49.96258453400013],[38.63777551300021,49.957210185000164],[38.62888716600011,49.95333445200011],[38.61948205600007,49.95075063100002],[38.570182740000035,49.956641744000095],[38.497525675000105,49.94816680900003],[38.46114546700013,49.956900127],[38.4377877200001,49.96728709000011],[38.42011438000006,49.97178293900011],[38.37629276500016,49.974935201000086],[38.35603560400008,49.98056793200011],[38.34415002400013,49.99209177700014],[38.31407434100006,50.049504294000045],[38.29991499900021,50.060511373000125],[38.281208130000124,50.06242340100006],[38.25381962000009,50.059064433000124],[38.18984419700021,50.06278513600013],[38.17392785600006,50.06014963800014],[38.16410933400012,50.03038401400015],[38.17134403500009,49.98408193000007],[38.1661763920001,49.940570374000124],[38.11904748600008,49.91917633100003],[38.10840214100008,49.92067494700014],[38.09031538900015,49.92842641300014],[38.0791532790001,49.929925029000124],[38.06654423000012,49.92723785400004],[38.02292379300016,49.90914218900018],[38.00039839700011,49.89979766900016],[37.99585087000011,49.90589548800004],[37.99533410600023,49.92134674100011],[37.98003788200012,49.93958852200008],[37.979004353000136,49.941448873000084],[37.94655155500018,49.978190816000065],[37.91585575400009,50.00330556300018],[37.881749308000195,50.02304596000006],[37.8427852780002,50.039117330000025],[37.76341027900011,50.06257843100009],[37.72765018700013,50.07870147700008],[37.63184208200018,50.17409617100019],[37.59711551900014,50.19693715400011],[37.59029423000018,50.20381012000017],[37.58864058500014,50.21461049400001],[37.59153446400015,50.22530751600003],[37.601559692000166,50.24902699800005],[37.59918257600012,50.290884908000024],[37.56817671700011,50.31253733400011],[37.48001672400002,50.34002919500007],[37.46379032400014,50.366539205],[37.45025109900004,50.398992005000096],[37.43526493300007,50.42493357300005],[37.41521447800002,50.43185821600004],[37.31475549400014,50.4229698700001],[37.28519657400008,50.41527008100003],[37.226698853000215,50.377081198000056],[37.19703658000017,50.362405091000156],[37.05172245200018,50.335326640000105],[36.98009891800021,50.34214792900015],[36.914056437000085,50.33909902000012],[36.8486340740001,50.32369944300014],[36.68264937300009,50.26065419600012],[36.669833618000126,50.25300608300013],[36.66042850800014,50.24385935500005],[36.64440881400011,50.22225860600018],[36.63583052600009,50.21404205400013],[36.61691695200014,50.206393942000076],[36.59438602700013,50.204430237000125],[36.57102828000009,50.206910706000095],[36.54953088400012,50.21218170200014],[36.53464807200007,50.219933167000065],[36.53165083800016,50.228821513000135],[36.53392460100011,50.23869171200015],[36.536095012000175,50.26091257700007],[36.53888553900006,50.26504669200001],[36.536405070000136,50.26752716099998],[36.5211088460002,50.27409006800015],[36.51211714700016,50.27641550700009],[36.480181111000064,50.280859681000024],[36.45268925000019,50.29357208200015],[36.43057173600019,50.29687937400014],[36.410004516000214,50.30457916300004],[36.40018599400011,50.30664622000002],[36.38799035600002,50.30643951500015],[36.38096236200013,50.3040623990001],[36.361428670000095,50.29166005500004],[36.33951786300017,50.28147979700016],[36.31585005700006,50.27486521400009],[36.29197554500015,50.27403839100005],[36.26903120900013,50.28137644500005],[36.169295695000216,50.38369578100004],[36.140770304000085,50.392945862000076],[36.133225546000205,50.41160105400003],[36.10583703600017,50.42110951800011],[35.9318941650001,50.43015289300017],[35.83742964600012,50.423228251000076],[35.81934289500012,50.41904246000014],[35.80539025900012,50.41216949500007],[35.78554650800007,50.394496155000084],[35.77438439900013,50.3868997200001],[35.76539270100008,50.38452260400008],[35.74616906800023,50.38395416300001],[35.73769413300013,50.381577047000164],[35.721261027000054,50.36870961600009],[35.71030562300009,50.355635478000025],[35.69686975100015,50.345145162000065],[35.69221013400008,50.344168474000085],[35.673201945000216,50.34018422500013],[35.65211796100019,50.341114401000155],[35.63155074100009,50.344990133000024],[35.61139693200013,50.35170806900005],[35.59217329900011,50.360493062000145],[35.57015913900014,50.376461080000084],[35.56385461500011,50.391808980000135],[35.562304321000084,50.4096373500001],[35.554656209000115,50.43325348000011],[35.540806925000226,50.45004832000008],[35.52272017400011,50.45950510700014],[35.50194624800011,50.46431101500015],[35.48013879400017,50.466894837000055],[35.4464457600001,50.47604156500013],[35.42525842300003,50.50048451800008],[35.377716105000125,50.62182078100015],[35.37616581200021,50.63458486000012],[35.39156538900008,50.646367087000115],[35.468873332000186,50.668536275000136],[35.44541223100012,50.687501527000094],[35.44375858600008,50.709464010000076],[35.447065878000075,50.73432037300002],[35.438487590000165,50.762380676000035],[35.429392537000155,50.77214752200008],[35.41823042800016,50.77891713500013],[35.393115682000115,50.7883739220001],[35.3790596920002,50.79721059200001],[35.377406047000164,50.8075458790001],[35.37967981000017,50.819586487],[35.377716105000125,50.833745830000126],[35.36903446500017,50.84604482000015],[35.34857059700019,50.86376983700008],[35.34143925000009,50.87648223900014],[35.34040572100011,50.891830139000106],[35.34298954200019,50.90412913000016],[35.34174930800023,50.91585968000014],[35.32914025900001,50.92908884700013],[35.317151327000175,50.934204814000125],[35.29358687300018,50.937615458000046],[35.284801880000174,50.94433339500007],[35.2822180580001,50.95425527000007],[35.2822180580001,50.961107412],[35.2822180580001,50.981540426],[35.27808394400009,50.9926508590001],[35.332550904000044,50.99993723600009],[35.346710245000196,51.00825714100013],[35.35508182700019,51.02559458500015],[35.34640018700022,51.036601664000145],[35.32841678900016,51.04316457100013],[35.30867639200008,51.04732452500015],[35.27425988700023,51.048797302000146],[35.20646040800008,51.03892710400008],[35.17256066900009,51.04063242700015],[35.14362186700012,51.05848663400009],[35.123778117000114,51.0913270060001],[35.09918013500007,51.18318186500006],[35.091325318000116,51.19767710400011],[35.07871626800008,51.207624817000024],[35.059389282000126,51.212327373000086],[35.03871870900011,51.210156962],[35.018771606000115,51.20455007000008],[34.99944462000016,51.20209543900001],[34.98032434100017,51.20953684600011],[34.961824178000114,51.215324605000106],[34.94611454200017,51.21429107700011],[34.899605754000135,51.19646270800008],[34.8175435790001,51.17473276800017],[34.74809045400016,51.164733379000054],[34.67491662600017,51.167678935000154],[34.65744999200015,51.17165802100014],[34.64277388500014,51.18062388100016],[34.633162069000065,51.19561004700013],[34.62851119000007,51.211061300000054],[34.622413371000135,51.22475555500007],[34.608357381000104,51.23400563600008],[34.57817834500011,51.23669281000012],[34.51347945100011,51.229561462000056],[34.480406535000014,51.236977031],[34.40898970600019,51.25312591600009],[34.371782674000116,51.256846619],[34.33695275900007,51.251136374000126],[34.29953902200006,51.23162852000003],[34.281762329000145,51.22643503900012],[34.25788781700007,51.229561462000056],[34.1859542240002,51.24891428600012],[34.24393518100018,51.27408071000015],[34.28362268100008,51.30123667400015],[34.30873742700006,51.33461965000011],[34.30015913900016,51.368390198],[34.28031538900004,51.36125885000014],[34.26439904800023,51.361207174000135],[34.24734582500011,51.363429260000046],[34.230499308000134,51.36766672800009],[34.21571984800019,51.373764547000135],[34.19597945100022,51.38562428800016],[34.18585087100009,51.39415089900008],[34.18192346100014,51.402341614000115],[34.18698775300018,51.40831024200004],[34.20879520700012,51.41146250399999],[34.217063436000075,51.41706939800012],[34.219647258000094,51.42727549199999],[34.217063436000075,51.43606048700018],[34.21323937900015,51.44481964100005],[34.212102498,51.45502573700004],[34.2149963790001,51.46466339200005],[34.223781372000104,51.48236256900016],[34.22595178200018,51.49287872300012],[34.223678019000175,51.51476369200016],[34.215409790000216,51.531997783000136],[34.20238732900006,51.54615712499999],[34.16032271400015,51.57612945600014],[34.15298465900016,51.58398427400009],[34.148850545000215,51.593208516000075],[34.14450972500006,51.613775737000154],[34.14006555200015,51.62119130500018],[34.126009562000064,51.62700490400006],[34.09066288300002,51.63320607600006],[34.079500774000195,51.643102112000136],[34.08911258900011,51.66661488900002],[34.12797326700016,51.68074839300006],[34.29819543500011,51.70614735900007],[34.356899862000176,51.705553081000104],[34.37633020000007,51.708601990000126],[34.414157349000135,51.73645558700009],[34.41271040900014,51.777693380000116],[34.38573531000011,51.81766510100006],[34.37110138200014,51.826811306000096],[34.34728804600016,51.8416946410001],[34.327754353000074,51.8505054730001],[34.29457808400011,51.873889059000035],[34.27669803900008,51.88122711300004],[34.26491581200017,51.881201274000134],[34.246002238000216,51.87546519000007],[34.23422001200006,51.87828155600012],[34.23463342300013,51.88073618600011],[34.231016072000074,51.894533794000054],[34.228432251000044,51.89926218700013],[34.22264449000008,51.9031637580001],[34.209415324000105,51.908796489000125],[34.203420857000054,51.912310487000084],[34.166420533000206,51.9422569790001],[34.1461633710002,51.951610413000154],[34.09624393700002,51.95181711900001],[34.096657349000075,51.960576274000104],[34.10440881300005,51.97530405700009],[34.101101521000174,51.99251230900007],[34.08032759600022,52.013622131000105],[34.06823531100022,52.03101125200014],[34.062550903000066,52.05020904600015],[34.06007043400021,52.08317861000001],[34.05665979000011,52.10038686200009],[34.05665979000011,52.10581288700014],[34.07391971900009,52.12831797300008],[34.07360966000007,52.139557597000035],[34.07102583800011,52.14896270800007],[34.065341431000064,52.15862620100002],[34.055729614000114,52.170330913],[34.03888309700008,52.186479798000065],[34.021933228000165,52.197900289000174],[33.95775109900009,52.22469451900015],[33.9444185790002,52.23577911400015],[33.919510539000015,52.269756369],[33.900700317000116,52.28585357700017],[33.8587390540001,52.30215749100002],[33.839102010000175,52.3139138800001],[33.82339237500011,52.331458029000075],[33.8152274980001,52.345074768000146],[33.80406538900016,52.35460907000005],[33.77895064300011,52.360060934000145],[33.73357873600011,52.360991109000096],[33.68794844500022,52.355823466000075],[33.60020186400007,52.33078623500007],[33.53167891500007,52.288824972000086],[33.510078166000056,52.28753306100013],[33.493024943000165,52.30313934300007],[33.49943282100017,52.34099233000016],[33.48051924600023,52.35776133300011],[33.46532637600009,52.35274871800006],[33.45178715000023,52.34525563600012],[33.43731774900012,52.33915781700016],[33.41933435100023,52.33833099400012],[33.40367639200005,52.342956035],[33.400576080000036,52.34434301700009],[33.3761845290002,52.355255025000034],[33.35897627700009,52.35755462700014],[33.29432906100007,52.357296245],[33.19650557500009,52.36894928000005],[33.182862996000175,52.367295635000104],[33.166636597000064,52.360060934000145],[33.140850057000165,52.34037221300018],[33.12798262500004,52.332724102000114],[33.108862345000176,52.32833160400013],[33.099043823000066,52.32476593100013],[33.087364949000204,52.31076161800014],[33.079613485000124,52.305593975000036],[33.07041508000012,52.30417287200005],[33.05728926600014,52.308642884000065],[33.04824589000012,52.309082134000086],[33.03010746300018,52.30360443100001],[32.92685795100013,52.24691538600008],[32.90897790500017,52.24110178700012],[32.89078780100013,52.24231618300014],[32.86102217700014,52.25719899600009],[32.844175660000154,52.262340800000075],[32.81482344500009,52.262004903],[32.75560225400008,52.252393087000186],[32.72542321800009,52.252083029000104],[32.528432658000064,52.31621348100013],[32.48058028200015,52.30714426700014],[32.39428063900013,52.32680715000011],[32.353559611000065,52.3215878300001],[32.3395036210002,52.287248841000135],[32.34446455900016,52.27652598100003],[32.363274781000115,52.25572621700009],[32.366995484000114,52.24719960600008],[32.36131107600007,52.23590830500011],[32.35014896700014,52.22988800100016],[32.33784997600017,52.22546966600008],[32.32823815900005,52.21916514100014],[32.31883304900012,52.201414287000134],[32.306740763000136,52.14118540500006],[32.27769860900011,52.10266062500001],[32.23330855300017,52.08085317000016],[32.09559086100015,52.04072642100008],[32.077142375000136,52.03995127400007],[32.01693933100009,52.049795634000034],[31.980559122000184,52.04762522500015],[31.927229044000086,52.03108876600005],[31.910382528000156,52.02907338500002],[31.89203739400014,52.036178895000134],[31.887748250000097,52.0515526330001],[31.887489868000127,52.07002695700014],[31.882063843000225,52.08640838600009],[31.858706095000088,52.099870097000135],[31.825839884000086,52.104055888000076],[31.764344930000075,52.10056772900013],[31.76661869300008,52.130074972000145],[31.76258793200006,52.14984120700002],[31.749048706000195,52.16394887400006],[31.69871586100012,52.18544626900008],[31.689517456000118,52.191569926000156],[31.682386108000085,52.20193105100015],[31.6794922280001,52.21585784900007],[31.681921020000143,52.230456441000044],[31.68889733800003,52.243220520000094],[31.69943933100009,52.25146291100013],[31.683419637000068,52.25719899600009],[31.648693074000132,52.260997213000124],[31.631433146000145,52.264769593000054],[31.613656453000118,52.27301198400009],[31.59711999500021,52.284303284000046],[31.56735437000023,52.311381734000015],[31.57960168400004,52.31851308200005],[31.592262410000075,52.328615825],[31.60275272700008,52.34091481600014],[31.60859216300011,52.35442820300001],[31.608075398000064,52.37246327800001],[31.60053063900014,52.38339284300018],[31.590350382000082,52.39184194000008],[31.58285730000014,52.40277150500005],[31.5833223870001,52.428299663000175],[31.589368530000087,52.45803944900014],[31.587921590000207,52.48261159300012],[31.56549401800012,52.49263682100014],[31.552988322000118,52.50224863700008],[31.550559529000083,52.511886292],[31.55815596500022,52.51999949200008],[31.57593265800008,52.524727885000075],[31.56363366700012,52.537052714000126],[31.55929284700002,52.54054087300007],[31.574382364000112,52.54126434400017],[31.61076257400012,52.535993347000144],[31.624301799000104,52.5380604050001],[31.628642618000097,52.54805979500013],[31.615206746000155,52.55857594900009],[31.579033243000108,52.57782541900009],[31.565907430000063,52.59015024800006],[31.536141805000028,52.6304837040001],[31.49170007300009,52.66709645700014],[31.48064131700008,52.682470195000136],[31.48064131700008,52.682521871000134],[31.54792403200022,52.705698751000156],[31.57024825000022,52.72525828100008],[31.569524780000133,52.76750376400004],[31.560843139000067,52.78706329400016],[31.550559529000083,52.794737244000046],[31.53836389100016,52.79985321100004],[31.523946167000215,52.811661276000116],[31.515161173000163,52.828378602000086],[31.512784057000115,52.84103932800012],[31.505135946000138,52.848894145000074],[31.48064131700008,52.85093536400002],[31.450979044000206,52.85721405100013],[31.41811283400008,52.87023651200014],[31.387933797000102,52.88798736700009],[31.366229696000087,52.908554587000154],[31.339151245,52.95806060900013],[31.322614787000102,52.977129212000094],[31.24706384300012,53.014387919000036],[31.26928470800013,53.02841807100013],[31.31920414200013,53.07637380000007],[31.329436076000064,53.07934519500016],[31.354137411000096,53.08210988400013],[31.363697550000065,53.088776144000136],[31.3670565190001,53.09893056200009],[31.364886109000192,53.10973093700012],[31.3615732850001,53.12003750000015],[31.3611654060002,53.12130645800006],[31.35992517100007,53.133837993000085],[31.378528686000124,53.18202626500006],[31.41635583500008,53.19998382600015],[31.464001506000074,53.19998382600015],[31.512060588000192,53.19406687500005],[31.535935100000103,53.19486785900015],[31.573658895000136,53.20708933600018],[31.593605997000083,53.21068084800005],[31.61401818900012,53.20975067200003],[31.67494470200009,53.19522959500016],[31.694478393000082,53.19290415500002],[31.738558390000065,53.19254241900005],[31.756283406000048,53.186573792],[31.769719279000096,53.16926218700011],[31.780467977000143,53.12786936400006],[31.796280966000012,53.11239227300014],[31.80682295700009,53.11001515700009],[31.842634725,53.112185567],[31.85550215700013,53.11024770100006],[31.90717858800005,53.09192840600009],[31.930743042000156,53.08833689400002],[31.954720907000166,53.08999054000016],[31.980559122000184,53.09802622500014],[32.00991133700009,53.099964091000075],[32.08277510600007,53.08195485500009],[32.117294963000035,53.08110219300015],[32.12654504400009,53.08422861800001],[32.15233158400005,53.096346741],[32.188608439000205,53.09924062200018],[32.1973934320001,53.097742005000086],[32.20111413600014,53.09756113800002],[32.20592004400012,53.100351665000076],[32.20700524900022,53.105157572000095],[32.2064884850001,53.10986012800008],[32.206695191000136,53.11239227300014],[32.209072306000195,53.11634552000011],[32.21051924600019,53.1217715450001],[32.21568688900018,53.12551808700011],[32.26798343900012,53.12476877900012],[32.29516524200008,53.140865987],[32.32027998900011,53.16277679500014],[32.352836141000154,53.18045013400014],[32.38911299600008,53.18763315900018],[32.40554610200015,53.19267161100007],[32.4236328530001,53.20440216100014],[32.45567224100009,53.236674093000104],[32.46921146700017,53.255458476000044],[32.4791333420001,53.27491465300001],[32.4559823000001,53.27778269499999],[32.447197306000106,53.28876393700006],[32.454845419000065,53.300442811000046],[32.48058028200015,53.305171204000125],[32.50564335100009,53.297187196000046],[32.53732100400006,53.29506846100018],[32.569153686000135,53.29884084100011],[32.59592207900019,53.30827179000006],[32.59189131600013,53.311837464000135],[32.583468058000136,53.321216736000096],[32.579954061000166,53.32436899800014],[32.64987227300017,53.333670757000064],[32.66671879000015,53.33134531700013],[32.68180830900022,53.326797791],[32.69793135600011,53.32589345400005],[32.7174650470001,53.33493682900003],[32.7044425870001,53.36640777600017],[32.717794068000075,53.43106187400018],[32.71953210400008,53.43947825200003],[32.70123864700011,53.46211252900015],[32.68852624500007,53.46221588200011],[32.65824385500011,53.45565297500011],[32.6467716880002,53.45797841400007],[32.64165572100015,53.46898549400014],[32.647598511000155,53.479320780000066],[32.65028568500006,53.48764068700011],[32.63571293200018,53.49265330000015],[32.61814294400003,53.49425526900011],[32.60057295800007,53.4923949180001],[32.59251143400016,53.486452128000096],[32.58429488200014,53.48423004199999],[32.57680179900021,53.486038717000085],[32.56987715700021,53.4923949180001],[32.56987715700021,53.492601624000066],[32.55427087400008,53.510791728000086],[32.53080977400012,53.52143707300009],[32.48058028200015,53.535648092000045],[32.45293339100007,53.54639679000017],[32.429420614000065,53.5615896610001],[32.41148889100006,53.58236358700004],[32.40110192900008,53.60985544900002],[32.39800134300012,53.62742543600008],[32.3990865480001,53.63538360600013],[32.40611454300014,53.639414368000146],[32.48058028200015,53.662410381000186],[32.48781498200012,53.669645081000155],[32.49019209800005,53.677138163],[32.48781498200012,53.68468292300004],[32.48058028200015,53.69207265200005],[32.461563354000106,53.70680043600005],[32.442133016000206,53.71393178300009],[32.421565796000124,53.715792135000086],[32.3718013910001,53.71439687100012],[32.35738366700011,53.71971954400006],[32.32580936700012,53.74545440700013],[32.2904110100001,53.76085398400015],[32.16483728000017,53.78167958600001],[32.10602950000012,53.80694936100014],[32.08360192900008,53.8096365360001],[31.873175496000012,53.77713206000005],[31.787289266000098,53.79439198800007],[31.74465620900011,53.794857076000184],[31.753802938000177,53.819610087000015],[31.792560262000134,53.85743723500018],[31.810130249000196,53.88260365900011],[31.826460002000232,53.94017120400015],[31.837932170000077,53.96213368700013],[31.839275757000134,53.96978180000011],[31.839689169000135,53.977223206000026],[31.8414461670001,53.98456125900013],[31.84651045700016,53.992312724000115],[31.82356612100014,54.04548777300009],[31.82387618000021,54.05013865200014],[31.822635945000087,54.053445944000046],[31.81385095200019,54.057063294000116],[31.80847660400016,54.05597808900005],[31.783516886000168,54.045797831000144],[31.771269572000023,54.04853668300011],[31.76258793200006,54.060318909000024],[31.755766642000225,54.074943339000086],[31.74811853100007,54.08631215500016],[31.73674971500023,54.09416697200011],[31.7257943110001,54.0974742640001],[31.69783736100007,54.09793935200004],[31.666934855000108,54.10186676000011],[31.583115682000113,54.12951365200011],[31.530870809000216,54.13742014600014],[31.506376180000043,54.14393137600002],[31.48064131700008,54.15664377899999],[31.324681844000082,54.22924916600003],[31.309799032000143,54.24433868500002],[31.299153686000036,54.2726056930001],[31.292022339000113,54.33125844400002],[31.28478763800015,54.347381490000096],[31.274142293000036,54.3566315710001],[31.26173994900009,54.364486390000145],[31.248717488000157,54.3767853800001],[31.22535974100012,54.42804840200004],[31.209029988000083,54.448047181000064],[31.179212687000163,54.45311147100013],[31.17901696700002,54.45335277000011],[31.167895548000185,54.46706410800011],[31.0935848390001,54.47941477500008],[31.06464603700013,54.492282206000155],[31.089554077000088,54.53589711600013],[31.139473511000087,54.582870992],[31.167947225000123,54.621576640000015],[31.12862146000012,54.640386861000124],[31.105160359000166,54.6682921350001],[31.02092777500016,54.67366648400015],[30.999016967000127,54.67134104400013],[30.995502970000157,54.689841207000065],[30.980620158000104,54.70565419600014],[30.827296183000076,54.77102488300001],[30.786058390000132,54.779344788000074],[30.770607137000155,54.786011047999985],[30.762648966000167,54.801979065000026],[30.768126668000175,54.829936015000115],[30.787867065000142,54.847712708000145],[30.810708048000063,54.8615103150001],[30.82610762500022,54.87747833300012],[30.8274512130001,54.90254140200015],[30.81742598500009,54.91763092100014],[30.814842163000066,54.92801788400008],[30.8386133220001,54.939179993000025],[30.89948815900007,54.946363018000156],[30.91736820500014,54.95395945200011],[30.936075073000126,54.97323476200015],[30.93142419400013,54.985172018000085],[30.9169547930002,54.99602406800015],[30.906619507000105,55.01256052700013],[30.9132340900002,55.02460113500011],[30.93349125200021,55.025634664000094],[30.980620158000104,55.018658346],[31.005631551000107,55.02299916700018],[31.00640669800012,55.04242950500007],[30.994211060000083,55.06702748600004],[30.980620158000104,55.08630279600008],[30.973075399000066,55.09395090800013],[30.970284872000125,55.101443991000096],[30.972661987000066,55.108575338000136],[30.980620158000104,55.11534495100007],[30.98547774200014,55.12583526700003],[30.98403080200015,55.130899557000085],[30.979483276000078,55.13425852500011],[30.975039103000114,55.13952952100014],[30.97245528100009,55.140873108],[30.962223348000204,55.14288848900004],[30.958812703000174,55.144438782000165],[30.956848999000073,55.14950307300013],[30.96118981900022,55.1585464490001],[30.95979455500017,55.16257721],[30.947237182000066,55.1713622030001],[30.90072839400008,55.19213612900013],[30.886517375000068,55.20453847300011],[30.86982588700019,55.24153879800015],[30.856803426000084,55.2534760540001],[30.821353394000226,55.26437978100016],[30.804093465000076,55.27295806900018],[30.79427494300009,55.28551544200009],[30.797168823000078,55.304273987],[30.81122481300011,55.323084209],[30.845641317000144,55.351144512000026],[30.905947714,55.376000875],[30.918298380000095,55.387783102000085],[30.918608439000163,55.40762685200018],[30.90527592000015,55.420856018000066],[30.889101197000034,55.43341339199999],[30.88129805500014,55.451448466],[30.88718916900021,55.468088277],[30.9132340900002,55.47971547400006],[30.919435262000064,55.4923245240001],[30.91437097200011,55.49330637600014],[30.89938480700002,55.499145813000055],[30.919745321000075,55.534492493000144],[30.912820679000077,55.57159617200013],[30.9071218870001,55.57776986300014],[30.886155640000226,55.600483297],[30.84765669700019,55.61102528900015],[30.804093465000076,55.60234364899999],[30.770710490000084,55.59154327400016],[30.742185099,55.59438547800012],[30.71303959100013,55.626683248000106],[30.70332442200018,55.64234120700014],[30.69371260600016,55.65215972900002],[30.6799666750002,55.65634552100006],[30.639142293000216,55.654485169000154],[30.616611369000083,55.657430725000054],[30.596354207000076,55.66528554299999],[30.58374515800008,55.679134827000055],[30.58374515800008,55.68853993800012],[30.58839603700002,55.6966014610001],[30.59159997500009,55.70569651300015],[30.587465861000197,55.7183055630001],[30.58012780800018,55.72476511700013],[30.56958581500012,55.72951934900014],[30.480702351000073,55.75396230100007],[30.469281861000095,55.76264394200014],[30.471814005000084,55.77096384700009],[30.477808472000078,55.77912872400013],[30.477395060000187,55.787732850000154],[30.468816773000157,55.79352061000013],[30.270792684000156,55.83065012700003],[30.25151737500019,55.837626445000026],[30.217772664000137,55.855144755000154],[30.20025435300008,55.85798695900014],[30.17725834200021,55.85137237600004],[30.132351522000107,55.8268777470001],[30.10625492400007,55.82191680900014],[29.98822595200008,55.84679901200012],[29.947711629000164,55.84819427600008],[29.907817423000125,55.84320750000013],[29.86947351100011,55.83054677400018],[29.844772176000077,55.812563375000096],[29.80570479400009,55.771454774000134],[29.779866577000146,55.76380666100006],[29.710826864000094,55.77375437400015],[29.68416182500007,55.7706021120001],[29.58535648600011,55.73802012100005],[29.50810021900011,55.68549102800007],[29.480866740000096,55.68109853200018],[29.4610229900002,55.68729970300016],[29.413067261000176,55.72776235000008],[29.363406209000086,55.751481832000096],[29.350745483000164,55.76605458600007],[29.343614135000134,55.786983541000055],[29.348161662000077,55.80284820600015],[29.371932821000115,55.83638621000007],[29.375653524000228,55.84679901200012],[29.380717814000118,55.87124196400005],[29.384128459000205,55.879949443000115],[29.39198327700015,55.88837270100011],[29.399631388000127,55.89188669900015],[29.407796265000083,55.893876242000104],[29.4174080810001,55.89801035600011],[29.425572957000075,55.89999989800007],[29.433737833000094,55.89953481100004],[29.440559123000043,55.900542502000015],[29.444434855000196,55.90692454000005],[29.44107588700021,55.91493438700003],[29.43156742300013,55.92418446900005],[29.413067261000176,55.937982076000175],[29.395600627000164,55.94772308400003],[29.377410523000123,55.954027608000146],[29.224034871000214,55.9781863410001],[29.192925660000075,55.99213897700009],[29.145435018000082,56.01203440400009],[29.088642619000037,56.02322235100014],[29.030765015000014,56.024178366000015],[28.980845581000064,56.01353302000011],[28.922451212000087,55.992242330000025],[28.922296184000057,55.99219065400011],[28.92224450700013,55.99219065400011],[28.922141154000116,55.99213897700009],[28.859716024000136,55.97645518000003],[28.83305098500009,55.960978089000136],[28.830880574000105,55.9376720180001],[28.808969767000065,55.934571432000055],[28.731920207000112,55.94679290800018],[28.70639205000009,55.959841207000025],[28.69548832200013,55.98015004500006],[28.69001062000012,56.0038953650001],[28.680605510000078,56.027382305000074],[28.671923868000107,56.03756256100005],[28.637093954000132,56.06572621700009],[28.620712524000112,56.082986146000096],[28.61146244300008,56.08846384700017],[28.594719279000056,56.09239125600014],[28.537823527000086,56.097713928000175],[28.389770548000058,56.08856720000009],[28.366516154000124,56.07911041300003],[28.333443238000143,56.05024912500009],[28.310912313000127,56.042678528000025],[28.2898283290001,56.046605937],[28.269364462000055,56.05820729600005],[28.238461955000048,56.08262441000009],[28.169112182000106,56.125257467000075],[28.148906697000115,56.14241404300013],[28.169112182000106,56.161741028000094],[28.1786206460001,56.183910218],[28.18440840600007,56.20752634700004],[28.193141724000043,56.23103912400002],[28.201358276000065,56.241684469000106],[28.209419800000063,56.24814402300014],[28.21531091300005,56.25599884100007],[28.2172746170001,56.27072662400009],[28.214794148000124,56.28137196900017],[28.17443485500013,56.34963653600012],[28.16714847800006,56.369867859000024],[28.16425459800007,56.392812195000076],[28.167871948000055,56.427125346000174],[28.16425459800007,56.437951559000126],[28.156503133000086,56.44621978800008],[28.104516642000135,56.48306508399999],[28.09645511900007,56.49195343100011],[28.093251180000095,56.50159108600011],[28.099245647000117,56.513399150000126],[28.125238892000084,56.52714508100014],[28.132215210000084,56.535981751000165],[28.126117391000033,56.54776397700006],[28.108650757000074,56.55517954599999],[28.028655640000125,56.57675445600013],[28.01098229900012,56.58755483000009],[27.997443074000074,56.60383290600002],[27.99217207900011,56.624994406000056],[27.991345255000113,56.66997874000007],[27.981009969000098,56.687006124],[27.882618042000075,56.725479228000054],[27.865461467000102,56.74268748000013],[27.87610681100008,56.75943064400017],[27.90008467600009,56.78304677400008],[27.91889489700011,56.805887757],[27.913520548000065,56.82015045200008],[27.891506388000067,56.829710592000154],[27.85223230000011,56.854308573000154],[27.830838257000096,56.86428212500006],[27.7863965250001,56.87125844300006],[27.744073527000126,56.8647988900001],[27.6611845300001,56.83927073200005],[27.644379266000072,56.84177167300005],[27.62836999500007,56.84415415500008],[27.64873051000012,56.879268291000024],[27.715134724000052,56.957403056000075],[27.718545369000083,56.968720195000124],[27.72076745600009,56.98866729800007],[27.72335127800008,56.998795878000024],[27.729552450000085,57.009854635000025],[27.74577884900009,57.03145538299999],[27.75073978600011,57.04235911100015],[27.745468791000093,57.067990621000106],[27.722059367000043,57.077990011000125],[27.696066121000086,57.085457256000055],[27.6822168380001,57.10369903600012],[27.7009753830001,57.11878855500011],[27.7940446370001,57.143386536000015],[27.824327027000038,57.15907033300006],[27.83393884200012,57.18049021500018],[27.841173543000107,57.21121185300002],[27.84613448100006,57.26730662100006],[27.840295044000072,57.290638529000105],[27.827737671000136,57.30495290200009],[27.809134155000095,57.313944601000124],[27.707951701000095,57.348128561000024],[27.694408720000066,57.356375287000056],[27.640824015000078,57.38900461800013],[27.536282593000067,57.41569549600009],[27.51132287600006,57.43039744100018],[27.514836873000036,57.44788991300014],[27.525637248000066,57.46837961900009],[27.5227950440001,57.49202158700003],[27.52816939300007,57.52847930900013],[27.352934611000137,57.52760081000009],[27.344976440000067,57.53809112600013],[27.335571330000104,57.55390411500004],[27.32854333500012,57.57056976300007],[27.328026571000066,57.5831529750001],[27.336604858000097,57.591731263000106],[27.34890384900004,57.594056702000145],[27.362546428000144,57.594547628000086],[27.374845418000092,57.59785491999999],[27.38208011900005,57.60268666600008],[27.38487064600011,57.606975810000066],[27.386989380000102,57.62764638300016],[27.38512902800008,57.63121205700004],[27.382803589000048,57.63446767200013],[27.38021976700014,57.647722677000125],[27.377946004000137,57.65170176200011],[27.377015829000072,57.656714376000146],[27.379703003000117,57.66645538400004],[27.384663940000053,57.67438771600016],[27.391433553000095,57.68020131400006],[27.407711629000115,57.68898630900004],[27.490393921000077,57.704618429000085],[27.507757202000104,57.714772847000134],[27.508894084000104,57.72745941200019],[27.497835327000104,57.75567474400007],[27.502434530000073,57.772547099000136],[27.512408081000075,57.78130625500005],[27.52615401200009,57.78727488200014],[27.553852580000125,57.79476796500007],[27.53256189000004,57.805077414],[27.52460371900008,57.8072995000001],[27.53762618000013,57.81156280500016],[27.55634348500007,57.81308699600013],[27.700717,57.82484364900015],[27.763452189000077,57.83866709400011],[27.78680993600011,57.84758127900012],[27.799315633000017,57.861068827],[27.790840698000125,57.88086090100008],[27.77440759300006,57.89070526200005],[27.673121785000035,57.912822774000155],[27.664956909000125,57.91840382900007],[27.659375855000093,57.93245981900018],[27.66319991100005,57.94395782500011],[27.6704346110001,57.954964906000114],[27.675188843000086,57.967806499000105],[27.669091024000124,57.99196523000016],[27.650642537000124,58.000078431000155],[27.63157393400013,58.00416086800008],[27.630126993000147,58.032996318000116],[27.63658654800011,58.05919626900013],[27.630437053000037,58.088290100000116],[27.579690796000136,58.12585886700005],[27.540003296000066,58.171799215000036],[27.519585015000047,58.19450982700009],[27.495354859000145,58.221460266000015],[27.482849161000043,58.268640849000136],[27.494114624000105,58.31954213500016],[27.55488610800012,58.39524810900003],[27.498868856000083,58.534567769],[27.44925948000011,58.65853953099999],[27.42884876200011,58.70940260400015],[27.410605509000106,58.754864400000045],[27.446269007000126,58.81886666300012],[27.477784871000065,58.875425517],[27.60532230600012,58.93469838500003],[27.69441247600011,58.975936178000104],[27.69588933300011,58.97718303300017],[27.713326049000074,58.991904196000135],[27.72438480700006,59.014435120000165],[27.767172892000104,59.05593129500014],[27.78432946700013,59.07717030900012],[27.842413778000036,59.16119618800015],[27.873522990000083,59.236488750000106],[27.890782919000088,59.25803782200016],[27.88230798400008,59.27565948500013],[27.903908733000037,59.290387268000146],[27.959719279000097,59.30645863900013],[28.076611369000148,59.3052700810001],[28.09686853100007,59.31942942300004],[28.07320072400006,59.3189643350001],[28.000647014000037,59.33374379600003],[28.032376343000067,59.34196034800006],[28.1135600180001,59.34542266900011],[28.15753666200007,59.36402618500016],[28.181824585000072,59.35606801400009],[28.186475464000125,59.374929911000116],[28.175365031000094,59.38185455400009],[28.149578491000085,59.393171692000074],[28.137796264000084,59.40035471600014],[28.12839115400004,59.409449769],[28.104826701000032,59.439215394000186],[28.083432657000117,59.45089426700015],[28.03857751400005,59.46298655200014],[28.01905358200014,59.48175690300015],[28.055349155000044,59.52789948100014],[28.072601759000037,59.578029690000065],[28.051768425000063,59.624823309000035],[28.015879754000082,59.65965403899998],[28.00017337300011,59.68138255400005],[27.99341881600006,59.70331452000006],[27.995371941000116,59.715521552000055],[28.004893425000034,59.743109442000055],[28.00700931100002,59.75824616100005],[28.058604363000086,59.789618231000084],[28.086924675000034,59.799383856000034],[28.123871290000068,59.79230377800018],[28.15984134200005,59.77610911700013],[28.185231967000078,59.75861237200017],[28.199717644000117,59.73590729400003],[28.209239129000107,59.71108633000007],[28.223887566000116,59.691107489],[28.33578535200013,59.66815827],[28.37525475400011,59.66632721600003],[28.404958530000044,59.682847398000106],[28.41773522200006,59.7084007830001],[28.421153191000087,59.73525625200007],[28.41863040500007,59.789618231000084],[28.42750084700012,59.813421942],[28.44906660200013,59.8350283870001],[28.476084832000083,59.85175202000011],[28.500498894000117,59.86102936400008],[28.51734459700012,59.862250067],[28.535817905000044,59.859564520000035],[28.55290774800008,59.85358307500009],[28.581879102000073,59.83405182500012],[28.619965040000068,59.82904694200009],[28.647959832000083,59.82001373900005],[28.6686304050001,59.81708405200013],[28.678558790000096,59.813177802000055],[28.683929884000065,59.808742580000064],[28.69361412900011,59.79706452000009],[28.69906660200007,59.792669989],[28.718028191000084,59.78681061400014],[28.734060092000078,59.78896719000015],[28.766774936000104,59.799546617000104],[28.78492272200009,59.79926178600006],[28.8143009770001,59.78912995000012],[28.83253014400009,59.786525783000016],[28.84595787900008,59.79022858300005],[28.883799675000034,59.81659577000006],[28.895355665000125,59.818548895],[28.919118686000047,59.813950914000074],[28.93189537900008,59.81659577000006],[28.95875084700006,59.826320705000015],[28.966319207000115,59.82746002800006],[28.976328972000086,59.83128489800005],[29.010996941000087,59.85761139500006],[29.03443444100014,59.88670482000013],[29.03077233200011,59.9011091170001],[28.980235222000086,59.92987702000015],[29.006683790000068,59.92861562700013],[29.014414910000085,59.92987702000015],[29.041270379000082,59.94350820500009],[29.08936608200014,59.979925848000065],[29.120453321000042,59.994452216000084],[29.161387566000087,60.00263092700003],[29.266286655000187,59.99811432500014],[29.49968509200019,59.96841054900013],[29.804209832000108,59.94009023600007],[29.862803582000225,59.9179548200001],[30.115000847000175,59.870550848000065],[30.1619572270001,59.86847565300014],[30.19255618600002,59.880601304000045],[30.216319207000225,59.907212632],[30.224294467000192,59.933254299000154],[30.20679772200012,59.94354889500009],[30.218435092000078,59.958156643],[30.235850457000222,59.96621328300013],[30.246104363000224,59.97492096600002],[30.234629754000107,59.99135976800002],[30.20997155000012,60.00112539300015],[30.000824415000096,60.01194896000005],[29.948252800000063,60.029689846000124],[29.932383660000166,60.06647370000004],[29.923513217000192,60.066839911000145],[29.910411004000107,60.075018622000144],[29.897797071000152,60.08759186400014],[29.890879754000167,60.1012230490001],[29.892832879000107,60.11334870000017],[29.899099155000073,60.12295156500006],[29.899668816000112,60.13361237200009],[29.8846134770001,60.149603583],[29.848968946000156,60.16693756700009],[29.7010197270001,60.20050690300012],[29.525401238000228,60.20087311400011],[29.458343946000156,60.17788320500013],[29.41789798300013,60.16885000200013],[29.4178166020001,60.16885000200013],[29.25635826900012,60.17694733300005],[29.092295769000145,60.177964585000105],[29.05201256600009,60.184271552000084],[29.01514733200011,60.19684479400014],[28.986501498000052,60.217230536000145],[28.946950717000107,60.263739325000174],[28.92237389400009,60.27985260600014],[28.887461785000056,60.28620026200018],[28.860199415000068,60.29535553600006],[28.84343509200005,60.316961981000155],[28.83082116000008,60.341986395000056],[28.815684441000084,60.36127350500003],[28.79948978000004,60.36884186400006],[28.79558353000004,60.36078522300012],[28.7947697270001,60.34808991100005],[28.787852410000113,60.341376044000114],[28.746348504000107,60.34210846600014],[28.72364342500009,60.344916083],[28.709727410000085,60.35130442900011],[28.69361412900011,60.362127997000115],[28.63086998800014,60.37555573100009],[28.61695397200006,60.381984768],[28.606700066000144,60.38947174700017],[28.517588738000057,60.488836981000176],[28.45362389400006,60.539618231000034],[28.438975457000137,60.559881903000054],[28.452972852000098,60.56464264500015],[28.473399285000085,60.56622955900018],[28.493907097000147,60.56464264500015],[28.507334832000137,60.559881903000054],[28.51335696700005,60.55158112200014],[28.5182397800001,60.5319684920001],[28.52442467500009,60.52236562700012],[28.543793165000093,60.510402736000096],[28.61695397200006,60.488836981000176],[28.659027540000125,60.46405670800011],[28.683604363000146,60.455877997000115],[28.702810092000107,60.46116771],[28.70720462300008,60.47846100499999],[28.69906660200007,60.499823309000035],[28.686289910000113,60.5180524760001],[28.661387566000084,60.53461334800009],[28.660655144000145,60.555080471000146],[28.662933790000128,60.57786692899999],[28.658050977000073,60.594061591000035],[28.66382897200012,60.614447333000115],[28.68539472700013,60.61513906500015],[28.67676842500003,60.62913646000011],[28.64918053500011,60.65574778900008],[28.644541863000086,60.669745184000114],[28.654633009000065,60.68187083500011],[28.67481530000009,60.67934804900009],[28.69654381600014,60.67202383000009],[28.7127384770001,60.669745184000114],[28.734548373000052,60.692816473000086],[28.721934441000084,60.72117747600011],[28.690440300000063,60.73847077000003],[28.654633009000065,60.728094794000114],[28.6380314460001,60.71662018400014],[28.603282097000115,60.70018138200008],[28.58611087300011,60.68716054900009],[28.573903842000046,60.68268463700012],[28.521006707000083,60.684027411000116],[28.508311394000113,60.68178945500013],[28.48780358200014,60.67202383000009],[28.47624759200005,60.669745184000114],[28.42408287900011,60.67169830900015],[28.400563998000052,60.66526927300005],[28.390635613000143,60.64618561400006],[28.38298587300011,60.62425364800004],[28.364431186000104,60.62335846600014],[28.341807488000143,60.62763092700005],[28.3216251960001,60.62132396000011],[28.330902540000068,60.615912177000084],[28.33757571700002,60.609808661],[28.341807488000143,60.60260651200015],[28.343435092000078,60.594061591000035],[28.33236738400012,60.59833405200015],[28.31967207100007,60.60146719000012],[28.30689537900011,60.602728583000115],[28.295095248000052,60.60146719000012],[28.28646894600004,60.59833405200015],[28.28305097700013,60.595119533000094],[28.280528191000116,60.59162018400009],[28.260264519000113,60.58006419500007],[28.235606316000116,60.559963283000044],[28.21583092500009,60.54755280199999],[28.21045983200014,60.54686107000004],[28.188324415000064,60.54779694200015],[28.168793165000096,60.55206940300014],[28.158457879000082,60.55304596600003],[28.15219160200013,60.54995351800012],[28.150401238000143,60.54315827000004],[28.147227410000085,60.536322333],[28.137380405000044,60.5331891950001],[28.12663821700005,60.534125067],[28.106618686000076,60.53839752800011],[28.096446160000113,60.539374091000084],[28.079925977000045,60.53742096600014],[28.051442905000044,60.52830638200005],[28.034434441000087,60.525783596000124],[27.900401238000086,60.528469143],[27.8709416020001,60.54047272300012],[27.863047722000147,60.56732819200011],[27.845713738000143,60.55780670800011],[27.83179772200006,60.540594794000114],[27.816416863000114,60.52822500200006],[27.7941186860001,60.5331891950001],[27.799164259000122,60.538031317],[27.807871941000116,60.55304596600003],[27.892953328000146,60.60426055900014],[27.981009969000098,60.649477438000034],[28.003781679000042,60.66422553500003],[28.14813155100009,60.757713725000045],[28.243939657000027,60.79158762600004],[28.33592370600013,60.85938710500007],[28.48092777500011,60.933465271],[28.526403036000087,60.95023427400003],[28.614563029000124,60.961938985000025],[28.65373376400007,60.991678772],[28.65373376400007,60.991756287000115],[28.653837117000105,60.99185964000007],[28.653837117000105,60.99188547800015],[28.670683634000085,61.01247853600016],[28.68897709200004,61.02738718700003],[28.75016198700007,61.061364442000134],[28.781322876000043,61.0869701130001],[28.797600952000067,61.09684031200008],[28.855478557000083,61.11267913900017],[28.926378621000136,61.14794830400017],[28.980845581000064,61.16810211200014],[29.1300871170001,61.21342234300006],[29.203157593000157,61.24590098099999],[29.262275431,61.290523580000105],[29.277058696000182,61.30459883400012],[29.289250529000157,61.316206767],[29.3183960370001,61.338427633000116],[29.463400106000076,61.4138235480001],[29.480866740000096,61.4347783410001],[29.49905684400008,61.459247132000044],[29.51704024200015,61.47506012000004],[29.53972619700019,61.48495615700013],[29.604270061000218,61.499193014000106],[29.635120891000014,61.51110443200004],[29.779143107000067,61.59311493000002],[29.79805668100019,61.6096513880001],[29.8218795170001,61.644584656000106],[29.842240030000113,61.66016510000004],[29.977683960000117,61.72817128600011],[30.14564900500019,61.85046941100007],[30.339574015000064,61.991669414],[30.339729045000094,61.991669414],[30.339935751000127,61.99177276700014],[30.480702351000073,62.067685445000066],[30.607206258000165,62.15127207500008],[30.635008178000106,62.18400909400007],[30.647720581000073,62.19276825000004],[30.665497274000103,62.199822083000164],[30.70384118700011,62.21038991300005],[30.79380985500003,62.25299713200012],[30.907549682000163,62.29289133700015],[30.925636433000165,62.30211558100016],[30.94186283400009,62.31459543900014],[30.967080933000233,62.348185120000075],[30.980620158000104,62.35880462700005],[31.123350463000094,62.434820659000124],[31.14164392100017,62.456524761000125],[31.152961059000145,62.46735097300013],[31.16861901900009,62.476006775000094],[31.22158736100019,62.491587219000124],[31.22194909600009,62.49171641000008],[31.222155802000227,62.49171641000008],[31.24375655100019,62.50334360800004],[31.260086304000225,62.524841004000066],[31.28406416900023,62.57297760000015],[31.302771037000156,62.596025290000014],[31.347006063000066,62.629330750000165],[31.36333581500011,62.65157745400002],[31.4105680750001,62.74653289800001],[31.441263875000086,62.78870086700005],[31.48064131700008,62.82608876600013],[31.569524780000133,62.90592885400012],[31.535831747000174,62.919519756],[31.51929528800005,62.94318756100012],[31.505446004000106,62.96819895500014],[31.48064131700008,62.98633738300007],[31.468032267000154,62.991556702000175],[31.44446781400015,63.00194366500001],[31.38033736200012,63.0479356900001],[31.351553589000073,63.06219838500008],[31.288508341000153,63.08472930900011],[31.26277347800007,63.100593974000034],[31.25083622300022,63.11547678600006],[31.2407593180001,63.13573394800006],[31.234248087000225,63.157231344000095],[31.233059530000073,63.17573150700004],[31.225669800000073,63.19604034500004],[31.20396569800019,63.21268015500005],[31.177817424000093,63.225237529000175],[30.97493575000007,63.289161276000144],[30.820939982000226,63.37566762400014],[30.488660522000114,63.46212229500005],[30.46106530700015,63.47287099300014],[30.441428263000116,63.49157786100015],[30.380450073000166,63.53245391900005],[30.24247399900017,63.58180491200007],[30.001145060000084,63.715336813000036],[29.980784546000134,63.74153676400005],[29.99843285900013,63.74710038100016],[30.051271199000126,63.76375762900001],[30.201546265000015,63.79264475600014],[30.265573365000105,63.830678609000174],[30.328566935000108,63.89599762000013],[30.509331095000075,63.99139231400015],[30.509331095000075,63.991443990000064],[30.509331095000075,63.99149566700008],[30.552325887000023,64.02172637900017],[30.580489543000198,64.05107859400006],[30.586432332000214,64.08466827500008],[30.562144409000126,64.12740468400001],[30.544781128000093,64.14636993500015],[30.53279219600014,64.16254465800016],[30.53248213700007,64.17918446900008],[30.550258830000104,64.19887318900011],[30.558475382000125,64.21969879199999],[30.53620284100023,64.23468495700014],[30.50343998200017,64.24378000900013],[30.44597579000006,64.2507563270001],[30.421584513000113,64.2646572880001],[30.39926029500023,64.2831057740001],[30.370476522000132,64.30083079000003],[30.321125529000113,64.317677307],[30.164442586000032,64.34191355400019],[30.093129110000092,64.36124054000014],[30.052976522000076,64.37808705700012],[30.032460978000103,64.39694895500004],[30.041039266000123,64.42294220000008],[30.062795044000012,64.44841868100004],[30.070391479000108,64.471879781],[30.035768269000098,64.49146514900012],[29.990499715000198,64.50417755100007],[29.993393595000185,64.51074045800006],[29.99153324400018,64.51322092700003],[29.980784546000134,64.51554636700017],[29.978975871000074,64.51833689400003],[29.97820072400023,64.52112742200008],[29.97892419400014,64.52402130200007],[29.980784546000134,64.52676015300001],[29.973601521000116,64.53621693999999],[29.970035848000204,64.545415345],[29.968485555000115,64.56283030300001],[29.965178263000126,64.56443227100013],[29.958873739000094,64.56598256500016],[29.95484297700008,64.56897979800009],[29.95877038600005,64.57487091100008],[29.965798380000166,64.578643291],[30.136433960000236,64.61538523400019],[30.160411825000068,64.6260822550001],[30.180824015000123,64.64277374300003],[30.187800334000116,64.66235911100016],[30.170540405000082,64.68168609600009],[30.13136967000017,64.70121978800002],[30.120517619000143,64.7089195760001],[30.109148803,64.72008168600006],[30.106823364000117,64.72561106400002],[30.109045451000185,64.73165720700008],[30.111112508000165,64.74442128500006],[30.114936564000203,64.75434316000015],[30.120414266000097,64.76157786100009],[30.11886397300017,64.76793406200012],[30.10191410300015,64.775478821],[30.062536662000042,64.78416046200014],[29.877845093000158,64.78483225600003],[29.780279989000093,64.79558095400016],[29.698321167000106,64.8391441860001],[29.633622274000146,64.90715037100007],[29.588147013000164,64.99143463200006],[29.598378947000157,65.03437774700014],[29.627317749000127,65.062231344],[29.667832072000092,65.07794098000006],[29.820484253000103,65.09365061500013],[29.845598999000085,65.10801666300013],[29.850198201000154,65.12150421100002],[29.83805424000016,65.124811503],[29.820329223000073,65.12651682600007],[29.808185262000084,65.13530181900016],[29.80911543800019,65.14522369500007],[29.818003784000126,65.15220001300003],[29.82968265800011,65.15860789],[29.83929447500012,65.16690195800005],[29.833196655000076,65.20501332700009],[29.7668441160001,65.21736399300006],[29.62669763200003,65.21521942100016],[29.580085490000073,65.23539906900004],[29.615122111000087,65.26940216100009],[29.7201286220002,65.32908844000012],[29.73056726000007,65.36536529600006],[29.71816491700011,65.45417124500001],[29.72632979300013,65.49124908500006],[29.72632979300013,65.49150746700003],[29.731532793000124,65.49692139899999],[29.745450073000114,65.51140289300004],[29.82575524900014,65.55196889200006],[29.838571004000215,65.56488800100009],[29.806738322000143,65.5848609420001],[29.73232426000007,65.60870961500008],[29.702868693000113,65.62938018900009],[29.764260294000138,65.6480870570001],[30.00300541100009,65.67813690200013],[30.064707071000075,65.66167795899999],[30.098503459000227,65.65638112400013],[30.11390303500022,65.66550201500003],[30.11628015100004,65.6872061160001],[30.111732625000144,65.71201080400006],[30.08351729300008,65.8046149700001],[30.07514571100009,65.82280507500015],[30.039282267000228,65.86538645500003],[30.009723348000104,65.915693462],[29.997941121000192,65.9315322880001],[29.958460327000097,65.97388112400002],[29.94884851000009,65.99127024400003],[29.920529826000088,66.06862986300014],[29.900169311000155,66.10805898100007],[29.875364624000127,66.13358713800001],[29.792372274000083,66.18087107400005],[29.65088220200019,66.28789296500011],[29.59321130300023,66.3459255990001],[29.569698527000156,66.37817169300014],[29.551663452000042,66.41279490200007],[29.54619429400017,66.43196931900009],[29.534196818000193,66.4740314750001],[29.524481648000087,66.49121388800008],[29.40944991,66.56847015400014],[29.401336711000084,66.57622161900015],[29.396427449000186,66.58663442000001],[29.395393920000203,66.59645294300007],[29.3923966880001,66.60528961200008],[29.363974650000074,66.62459076],[29.36249784200018,66.62655283100018],[29.322220093000194,66.68006541000005],[29.089159383000098,66.83754933700008],[29.051538940000054,66.90780344700006],[29.09990808100011,66.991131694],[29.09990808100011,66.99120920800011],[29.100114787000052,66.99123504700013],[29.100114787000052,66.99126088500005],[29.42939701400022,67.23277069200005],[29.480866740000096,67.25677439400008],[29.49068526200008,67.26297556600014],[29.4969897870001,67.27026194300005],[29.508461955000115,67.28809031200008],[29.519830770000084,67.29816721600012],[29.916240682000108,67.50812856100008],[29.933448934000094,67.52637034100003],[29.959907268000077,67.57158721900011],[29.964661499000073,67.58471303300009],[29.973446493000072,67.64930857400013],[29.977683960000117,67.66222768100015],[29.98786421700018,67.67245961600013],[30.009413290000143,67.68584381200007],[29.713824097000124,67.79250396800013],[29.651192261000087,67.82356150300008],[29.480866740000096,67.96045237200015],[29.44262618000002,67.9910964970001],[29.44262618000002,67.99114817400003],[29.360150594000203,68.05672556600003],[29.33085005700016,68.07269358300006],[29.298655639000092,68.08178863600011],[29.012936645000078,68.127238058],[28.72721765100005,68.17268748000014],[28.690320679000106,68.1831777960001],[28.6637589930001,68.20400339800013],[28.48092777500011,68.46259226500011],[28.46098067300011,68.49106597900014],[28.44744144700013,68.51488881500002],[28.447906535000044,68.52971995000014],[28.45994714400012,68.542432353],[28.7163656000001,68.72795074499999],[28.747268107000078,68.76014516200013],[28.801476684000107,68.83548940000011],[28.728251180000115,68.86504832000007],[28.645672241000085,68.87166290300014],[28.44423750800007,68.86582346600007],[28.426770874000113,68.87057769800005],[28.41312829600011,68.88008616200013],[28.410234415000104,68.89853464800014],[28.456226441000098,68.90013661799999],[28.713265015000047,68.96803945000012],[28.833464396000096,68.9844725550001],[28.954077189000085,69.02726064100011],[28.973662557000097,69.03423695900011],[29.00813073700007,69.03692413400016],[29.064768107000045,69.03470204700014],[29.12026859500014,69.04684600900005],[29.172978556000146,69.06937693300007],[29.221037638000126,69.09841908900016],[29.240467977000122,69.11505889900009],[29.25100996900008,69.13076853400007],[29.268786661000178,69.1666836560001],[29.27643477400008,69.17593373700011],[29.294418172000036,69.19169504800003],[29.30227299000009,69.200841777],[29.30537357600022,69.20973012300003],[29.305476929000093,69.21810170600018],[29.307440633000194,69.22631825800003],[29.315863892000177,69.23494822200013],[29.326560913000066,69.26264679000008],[29.33451908400016,69.27737457299999],[29.37679040500015,69.30161082000008],[29.434564657000152,69.31184275400014],[29.604270061000218,69.31520172200005],[29.661837605000102,69.32502024400004],[29.728396851000095,69.35153025300004],[29.751392863000117,69.35716298500007],[29.900686075000092,69.35824819000005],[29.948073364000063,69.36558624300015],[29.967141968000217,69.37349273699999],[30.001765177000067,69.39457672200002],[30.123411499000127,69.441912334],[30.137364136000116,69.4529710900001],[30.14077478100009,69.46439158200009],[30.141084839000115,69.47679392500008],[30.145012248000086,69.49105662100006],[30.154830770000128,69.50609446200004],[30.164029175000138,69.5118305460001],[30.192296183000195,69.51916859900007],[30.21064131700021,69.52821197500005],[30.224697306000134,69.54082102500016],[30.231621948000083,69.55833933600003],[30.228676392000096,69.58205881800008],[30.220149780000185,69.60024892200003],[30.2087809650001,69.60867218100009],[30.148629598000042,69.61849070300015],[30.126718791000116,69.62644887300003],[30.119070679000203,69.63456207300014],[30.141239868000156,69.63988474600008],[30.186146688000147,69.64133168600007],[30.23069177200014,69.63730092400009],[30.29435713700016,69.62024770100005],[30.480702351000073,69.54412831700007],[30.511656535000185,69.53632517600015],[30.755310913000102,69.52149403900002],[30.85297937000021,69.52743682900002],[30.898247925000224,69.54423167],[30.92703169700016,69.57838979200007],[30.93080407700009,69.59487457300007],[30.92770349100013,69.67213083900005],[30.901245158000023,69.68897735600002],[30.884295288000228,69.70236155200014],[30.88129805500014,69.71052642900015],[30.88233158400013,69.72008656900007],[30.877060587000102,69.73760487900013],[30.867862183000085,69.74897369500003],[30.843987671000182,69.76623362300002],[30.84095389065234,69.80584190251038],[30.840993686000076,69.805853583],[31.032237175000116,69.77708567900005],[31.133311394000227,69.77570221600007],[31.165700717000018,69.77024974200005],[31.199554884000094,69.75763580900015],[31.21412194100012,69.75600820500013],[31.22608483200017,69.75714752800017],[31.24919681100019,69.76227448100009],[31.26156660200016,69.76341380400011],[31.283457879000164,69.76032135600003],[31.307871941000112,69.75238678600009],[31.351328972000175,69.7324079450001],[31.373057488000228,69.72650788000006],[31.39527428500011,69.72370026200012],[31.409027540000093,69.71580638200005],[31.40601647200012,69.69452545800006],[31.401377800000063,69.68768952000015],[31.393890821000095,69.68105703300007],[31.38510175900015,69.67597077000005],[31.37517337300008,69.67405833500003],[31.367930535000113,69.67137278900013],[31.36548912900011,69.664984442],[31.36443118600002,69.65717194200003],[31.36158287900011,69.65045807500015],[31.347178582000225,69.63837311400006],[31.2967228520001,69.61261627800002],[31.325694207000108,69.614935614],[31.353851759000094,69.62689850500011],[31.452159050000063,69.68891022300006],[31.477793816000112,69.69765859600012],[31.520681186000186,69.68866608300011],[31.531260613000228,69.69253164300012],[31.542491082000225,69.6983096370001],[31.556813998000194,69.70197174700014],[31.81055748800011,69.68773021000014],[31.797618035000166,69.70449453300016],[31.772634311000072,69.71360911700005],[31.72120201900006,69.725572007],[31.70085696700019,69.73655833500014],[31.699066602000098,69.74428945500014],[31.728037957000108,69.77024974200005],[31.71656334700012,69.78945547100001],[31.708832227000155,69.80857982],[31.710948113000228,69.8273786480001],[31.728037957000108,69.84540436400005],[31.75367272200017,69.85407135600006],[31.84815514400012,69.85285065300003],[31.867930535000113,69.84853750200013],[31.906748894000227,69.8292503930001],[31.964040561000072,69.81659577000012],[32.02906334700012,69.78196849200013],[32.05697675900015,69.77708567900005],[32.06120853000019,69.779486395],[32.06755618600013,69.7842471370001],[32.076345248000194,69.78876373900006],[32.09888756600017,69.79189687700013],[32.1014103520001,69.79507070500001],[32.099619988000114,69.80044179900015],[32.097992384000094,69.80780670800006],[32.091807488000114,69.81561920800014],[32.05046634200008,69.84198639500015],[31.996104363000224,69.86359284100014],[31.981293165000096,69.873277085],[31.980153842000078,69.87881094000011],[31.98259524800008,69.89520905200011],[31.981293165000096,69.90062083500008],[31.97494550900015,69.90412018400015],[31.91830488400015,69.926459052],[31.913340691000116,69.93618398600012],[31.9231876960001,69.95180898600005],[31.94214928500011,69.96503327000006],[31.962412957000225,69.96991608300014],[31.98454837300002,69.97028229400014],[32.05445397200012,69.96377187700016],[32.24170983200011,69.883246161],[32.26726321700019,69.87628815300009],[32.35808353000019,69.87954336100013],[32.39820397200012,69.87433502800015],[32.48829186300023,69.85089752800016],[32.523203972000175,69.83234284100017],[32.50359134200019,69.82086823100003],[32.506683790000096,69.81098053600012],[32.523203972000175,69.80316803600012],[32.62468509200019,69.78278229400014],[32.72730553500011,69.79189687700013],[32.91960696700002,69.78001536699998],[33.006032748000024,69.75861237200003],[33.04908287900017,69.74005768400004],[33.06430097700016,69.73956940300006],[33.081309441000116,69.74591705900018],[33.10141035200016,69.74872467700011],[33.12029056100018,69.74420807500017],[33.13331139400006,69.72866445500007],[33.12859134200008,69.725572007],[33.11687259200019,69.69163646000014],[33.11597741000017,69.68463776200015],[33.112803582000225,69.67755768400009],[33.114756707000055,69.67080312700016],[33.118011915000096,69.664984442],[33.1189884770001,69.661078192],[33.11361738400015,69.65399811400015],[33.106700066000116,69.64891185100011],[33.07504316500015,69.63165924700003],[33.03581790500007,69.61774323100003],[32.87175540500019,69.582505601],[32.501963738000114,69.63312409100008],[32.437266472000175,69.65009186400006],[32.41863040500007,69.64874909100014],[32.37061608200011,69.64008209800006],[32.2205509770001,69.654201565],[32.18832441500015,69.65306224200008],[32.16968834700017,69.65485260600015],[32.159434441000165,69.661078192],[32.15967858200011,69.66771067900008],[32.16456139400006,69.67230866100003],[32.17058353000019,69.67645905200006],[32.17367597700016,69.68154531500006],[32.17676842500006,69.69525788],[32.18018639400023,69.70498281500015],[32.18043053500011,69.7147484400001],[32.17367597700016,69.72866445500007],[32.16244550900015,69.7414411480001],[32.14747155000012,69.751410223],[32.130137566000116,69.75600820500013],[32.111664259000094,69.75287506700006],[32.107432488000114,69.74603913000006],[32.11052493600007,69.73493073100012],[32.11605879000009,69.721665757],[32.11915123800006,69.70848216400005],[32.10157311300023,69.67397695500004],[32.059825066000116,69.65949127800017],[31.968272332000108,69.654201565],[31.995371941000112,69.6451683610001],[32.02881920700011,69.64215729400009],[32.055918816000116,69.63654205900009],[32.0638126960001,69.61945221600014],[32.05193118600002,69.60431549700014],[32.03207441500015,69.5924339860001],[32.01612389400012,69.58022695500001],[32.01612389400012,69.56419505400014],[32.07471764400017,69.59076569200009],[32.13331139400012,69.59821198100015],[32.19304446700008,69.59210846600017],[32.255625847000175,69.57786692900008],[32.288259311000076,69.57428620000009],[32.385996941000116,69.58535390800013],[32.39909915500019,69.584214585],[32.415212436000076,69.58063385600003],[32.42847741000011,69.57416413000011],[32.43384850400016,69.56419505400014],[32.427744988000164,69.55996328300002],[32.400563998000074,69.54498932500017],[32.39210045700011,69.53685130400005],[32.42090905000006,69.5362002620001],[32.501963738000114,69.51703522300014],[32.485850457000105,69.50348541900007],[32.46461022200011,69.50202057500003],[32.44166100400011,69.50446198100015],[32.42017662900011,69.50275299700014],[32.40691165500019,69.4947777360001],[32.381683790000096,69.4730899110001],[32.36524498800023,69.46865469000012],[32.32276451900023,69.462347723],[32.23845462300008,69.43695709800005],[32.19361412900017,69.43451569200015],[32.23804772200017,69.42230866100006],[32.28939863400009,69.43073151200012],[32.385996941000116,69.46181875200004],[32.39909915500019,69.46295807500015],[32.41000410200016,69.4627139340001],[32.420095248000024,69.464585679],[32.43043053500011,69.47235748900009],[32.44792728000019,69.48895905200014],[32.454600457000225,69.49286530200014],[32.46924889400023,69.4955915390001],[32.49634850400017,69.48993561400012],[32.52173912900011,69.48891836100013],[32.52759850400017,69.48932526200015],[32.53003991000017,69.49286530200014],[32.530609571000156,69.49640534100003],[32.53467858200011,69.50714752800003],[32.53687584700012,69.50958893400015],[32.555918816000116,69.50633372600011],[32.5892033210001,69.48602936400012],[32.60377037900011,69.48419830900004],[32.64389082100015,69.49799225500006],[32.66456139400023,69.50210195500001],[32.68702233200016,69.50275299700014],[32.79004967500012,69.48969147300006],[32.847829623000024,69.49286530200014],[32.87769616000011,69.49111562700013],[32.89926191500015,69.48224518400008],[32.82691491000017,69.45921458500011],[32.792491082000225,69.4425316430001],[32.76954186300017,69.41400788],[32.89307701900006,69.46181875200004],[32.9876408210001,69.47459544500008],[33.08497155000006,69.47606028900013],[32.86182701900012,69.36522044499999],[32.837738477000094,69.3314476580001],[32.819672071000156,69.31915924700003],[32.80372155000006,69.304144598],[32.813324415000146,69.30145905200014],[32.82349694100017,69.30121491099999],[32.834157748000194,69.3033714860001],[32.8548283210001,69.31110260600009],[32.863617384000094,69.31183502800003],[32.87273196700019,69.31098053600012],[32.883148634000094,69.31199778900002],[32.88917076900006,69.31191640800002],[32.89535566500015,69.31492747600011],[32.90674889400012,69.32526276200004],[32.92383873800023,69.34882233300009],[32.95313561300006,69.37750885600003],[32.96949303500017,69.38735586100016],[32.98926842500012,69.39354075700011],[33.29395592500012,69.44342682500017],[33.317637566000116,69.45123932500017],[33.328949415000096,69.45197174700009],[33.348968946000156,69.438177802],[33.36207116000011,69.43451569200015],[33.3782658210001,69.43622467700006],[33.42066491000017,69.44814687700008],[33.44792728000007,69.447211005],[33.49781334700012,69.43211497599998],[33.52369225400011,69.42829010600018],[33.505381707000055,69.4035505230001],[33.47437584700012,69.39386627800015],[33.44060306100007,69.387640692],[33.413828972000175,69.37299225500009],[33.43409264400005,69.37299225500009],[33.49634850400017,69.379868882],[33.46607506600017,69.35785553600009],[33.40447024800014,69.32762278899999],[33.37598717500012,69.30756256700012],[33.344574415000096,69.29694245000017],[33.261241082000055,69.29100169500005],[33.235118035000106,69.2700056010001],[33.25505618600019,69.27016836100007],[33.278656446000156,69.2734235700001],[33.29769941500015,69.27846914300014],[33.30396569100017,69.28367747600005],[33.397959832000225,69.291245835],[33.44776451900012,69.28839752800013],[33.4759220710001,69.2700056010001],[33.386485222000175,69.24949778900007],[33.339040561000076,69.24664948100012],[33.315765821000156,69.24152252800009],[33.29656009200019,69.22907135600009],[33.37183678500017,69.23476797100005],[33.406016472000175,69.22968170800014],[33.40642337300008,69.20856354400003],[33.43995201900012,69.21149323100013],[33.4759220710001,69.22182851800007],[33.51156660200016,69.22549062700001],[33.54420006600017,69.20856354400003],[33.51189212300008,69.18423086100016],[33.393321160000106,69.15053945500016],[33.317637566000116,69.11920807500012],[33.28956139400012,69.11253489800005],[33.23243248800022,69.10814036699999],[33.159678582000055,69.094671942],[33.108734571000156,69.091986395],[33.06055748800011,69.08331940300012],[33.023448113000114,69.05776601800012],[33.01636803500011,69.03872304900013],[33.011241082000225,69.00751373900005],[33.01238040500007,68.97565338700004],[33.023448113000114,68.95473867400007],[33.03980553500011,68.97748444199999],[33.0481876960001,69.03432851800015],[33.06430097700016,69.05776601800012],[33.112640821000156,69.07538483300006],[33.22559655000012,69.076117255],[33.31959069100017,69.09634023600002],[33.376800977000094,69.09764232000009],[33.426605665000096,69.10468170800009],[33.44800866000017,69.12970612200009],[33.45541425900015,69.14105866100006],[33.47291100400017,69.15143463700015],[33.562836134000094,69.18207428600006],[33.56470787900011,69.18805573100018],[33.576182488000114,69.19920482000002],[33.575368686000076,69.21295807500012],[33.56470787900011,69.24266185100005],[33.566742384000094,69.2458356790001],[33.57642662900011,69.25332265800007],[33.57837975400017,69.256333726],[33.57593834700012,69.26129791900003],[33.57146243600019,69.26837799700009],[33.56706790500019,69.27277252800017],[33.56470787900011,69.2700056010001],[33.562836134000094,69.285589911],[33.564219597000175,69.29303620000009],[33.57154381600017,69.304144598],[33.59253991000011,69.31956614800005],[33.620453321000156,69.32770416900014],[33.7239689460001,69.33681875200016],[33.735362175000056,69.3314476580001],[33.740244988000114,69.32273997600011],[33.73902428500011,69.31561920800006],[33.73275800900015,69.30951569200006],[33.72234134200008,69.304144598],[33.740244988000114,69.30678945500001],[33.77906334700012,69.31728750200007],[33.79542076900023,69.31647370000015],[33.8138126960001,69.31134674700014],[33.8357853520001,69.30776601800007],[33.85694420700011,69.30719635600009],[33.873220248000024,69.31098053600012],[33.86589603000007,69.31736888200005],[33.86036217500012,69.3244489600001],[33.85206139400023,69.33893463700015],[34.13632246200004,69.32495758650005],[34.42058353000007,69.31098053600012],[34.41374759200008,69.29266998900006],[34.44703209700012,69.28367747600005],[34.5423283210001,69.26911041900003],[34.58497155000012,69.2722028670001],[34.60621178500011,69.2700056010001],[34.64844811300023,69.25210195500016],[34.66179446700008,69.24949778900007],[34.9822697270001,69.22907135600009],[34.97559655000012,69.22247955900012],[34.96078535200016,69.20425039300011],[34.955577019000174,69.19489166900007],[34.972666863000114,69.19334544500005],[34.99195397200011,69.2022158870001],[35.011892123000024,69.21426015800002],[35.03077233200016,69.22215403899999],[35.087168816000116,69.22597890800002],[35.11801191500015,69.22308991100006],[35.14063561300023,69.21539948100015],[35.14649498800006,69.20831940300009],[35.14535566500015,69.20209381700012],[35.14283287900011,69.1965192730001],[35.144053582000225,69.19147370000009],[35.15650475400017,69.18292877800015],[35.169200066000116,69.1810570330001],[35.18197675900015,69.18353913000011],[35.195811394000174,69.18805573100018],[35.212657097000175,69.195746161],[35.22754967500012,69.20465729400003],[35.2435001960001,69.21206289300011],[35.26417076900023,69.21539948100015],[35.246918165000146,69.23639557500009],[35.175954623000074,69.25771719000006],[35.14747155000006,69.2700056010001],[35.18262780000012,69.27993398600002],[35.27295983200011,69.27147044499999],[35.33033287900011,69.27606842700011],[35.80941816500015,69.19643789300012],[35.87354576900012,69.19489166900007],[35.92351321700008,69.18235911700002],[35.966970248000194,69.17682526200018],[35.995290561000076,69.16681549700009],[36.02116946700007,69.15265534100017],[36.04151451900023,69.13621653899999],[36.05469811300011,69.12807851800007],[36.06755618600002,69.12775299700003],[36.096446160000106,69.13279857000008],[36.249522332000105,69.110988674],[36.273610873000024,69.09845612200012],[36.26465905000012,69.07819245000009],[36.31234785200016,69.05776601800012],[36.517914259000094,69.02977122600011],[36.689219597000175,68.98200104400014],[36.70281009200019,68.98053620000009],[36.716075066000116,68.98114655200006],[36.72877037900011,68.979681708],[36.74073326900023,68.97174713700004],[36.749359571000156,68.961615302],[36.754730665000096,68.95815664300008],[36.76433353000007,68.95473867400007],[36.78956139400023,68.94977448100003],[36.84205162900017,68.94525788000006],[37.01238040500007,68.89447663000011],[37.028819207000055,68.88239166900001],[37.04371178500011,68.87445709800015],[37.0955509770001,68.86078522300004],[37.19125410200016,68.850531317],[37.20997155000006,68.84544505400007],[37.22413170700005,68.833726304],[37.232595248000194,68.82001373900006],[37.24268639400006,68.80857982000002],[37.26148522200012,68.80390045800009],[37.30909264400011,68.79979075700012],[37.35523522200012,68.79022858300014],[37.372406446000156,68.78270091399999],[37.41065514400012,68.76068756700009],[37.43555748800023,68.75397370000003],[37.45386803500011,68.74457428600003],[37.46387780000006,68.7424177100001],[37.5013126960001,68.74054596600014],[37.5247501960001,68.73574453300014],[37.569997592000135,68.73558177299999],[37.57846113400015,68.73346588700018],[37.587168816000116,68.72406647300006],[37.680511915000146,68.71344635600012],[37.69971764400012,68.70453522300006],[37.73023522200012,68.68573639500012],[37.81177819100017,68.66071198100012],[37.94629967500006,68.60081614799999],[37.990407748000024,68.57013580900018],[38.0236922540001,68.55414459800008],[38.039886915000096,68.54376862200009],[38.04737389400023,68.53558991100009],[38.05982506600017,68.5165062520001],[38.066579623000194,68.50967031500006],[38.0911564460001,68.500962632],[38.14942467500011,68.49982330900015],[38.17644290500019,68.49542877800015],[38.200205925000056,68.48403554900001],[38.20679772200012,68.482367255],[38.21045983200011,68.47898997600008],[38.20972741000017,68.47182851800012],[38.21013431100019,68.4645449890001],[38.21705162900017,68.46124909100008],[38.31690514400006,68.44757721600014],[38.329844597000175,68.44220612200009],[38.34766686300022,68.4188500020001],[38.391286655000066,68.39948151200015],[38.38868248800017,68.34316640800002],[38.42351321700019,68.33771393400015],[38.4290470710001,68.3419457050001],[38.43132571700019,68.34906647300012],[38.43458092500006,68.35586172100007],[38.44361412900017,68.3588320980001],[38.45167076900006,68.356634833],[38.46314537900011,68.34682851800007],[38.47095787900011,68.34454987200009],[38.49488366000017,68.34210846600014],[38.71583092500006,68.29157135600006],[38.765391472000175,68.29059479400017],[38.70411217500006,68.31183502800015],[38.60572350400011,68.33197663],[38.53248131600017,68.35529205900009],[38.51010175900015,68.36546458500005],[38.51221764400006,68.37588125200013],[38.536631707000225,68.37791575700004],[38.58863366000017,68.35993073100003],[38.61524498800023,68.36505768400002],[38.59791100400011,68.38198476800012],[38.61158287900017,68.38727448100009],[38.63917076900011,68.38495514500012],[38.662933790000096,68.37929922100012],[38.7591251960001,68.33771393400015],[38.793630405000066,68.32868073100015],[38.90259850400011,68.31785716400007],[38.9256291020001,68.31110260600003],[38.946136915000146,68.29962799700009],[38.951833530000016,68.287054755],[38.93051191500015,68.27692291900003],[38.95386803500016,68.266302802],[39.03492272200012,68.25120677299998],[39.25318444100017,68.17023346600003],[39.35873457100015,68.14964427299999],[39.52076256600017,68.07599518400004],[39.60840905000006,68.06342194200015],[39.68751061300006,68.06134674700003],[39.73910566500015,68.048000393],[39.800629102000094,68.0527204450001],[39.82837975400016,68.04661692900014],[39.838715040000096,68.04315827000012],[39.850433790000096,68.04254791900017],[39.859548373000074,68.04661692900014],[39.86215254000015,68.05719635600009],[39.859385613000114,68.057562567],[39.8416447270001,68.07086823100003],[39.79476972700016,68.11835358300011],[39.782969597000175,68.12742747600014],[39.721364780000066,68.15875885600018],[39.709808790000096,68.16876862200014],[39.721934441000116,68.17328522300012],[39.769704623000074,68.16986725500011],[39.79322350400011,68.164740302],[39.87012780000012,68.12929922100001],[39.91285241000011,68.12287018400009],[39.921153191000116,68.11399974200005],[39.9236759770001,68.10101959800015],[39.929860873000194,68.08510976800012],[39.94459069100017,68.06732819200015],[39.990244988000114,68.02875397300006],[40.00440514400022,68.01984284100003],[40.01978600400017,68.01618073100018],[40.03874759200019,68.01463450700014],[40.05811608200011,68.01007721600008],[40.076345248000194,68.00242747600005],[40.1189884770001,67.971665757],[40.14861087300008,67.95795319200006],[40.29363040500019,67.91376373900009],[40.29835045700011,67.909328518],[40.29957116000011,67.90444570500013],[40.303558790000096,67.90192291900003],[40.32715905000006,67.90692780200006],[40.33969160200015,67.90753815300003],[40.35206139400006,67.90631745000009],[40.362478061000076,67.90289948100009],[40.41065514400022,67.87506745000002],[40.417735222000175,67.86542389500006],[40.40357506600017,67.85293203300016],[40.37387129000015,67.84906647300014],[40.321543816000116,67.85114166900017],[40.321543816000116,67.84491608300011],[40.38510175900015,67.79938385600015],[40.46680748800023,67.761175848],[40.50367272200012,67.7502302100001],[40.53834069100017,67.75470612200009],[40.567881707000225,67.78286367400007],[40.568125847000175,67.78912995000003],[40.56413821700019,67.79458242400007],[40.56088300900015,67.80011627800017],[40.56446373800023,67.80703359600007],[40.5740666020001,67.81102122600004],[40.587250196000156,67.81171295799999],[40.612315300000056,67.81012604400014],[40.65463300900015,67.81460195500013],[40.67074629000015,67.81028880400011],[40.677093946000156,67.79303620000003],[40.68409264400022,67.78119538000004],[40.70036868600019,67.77252838700015],[40.73243248800017,67.76235586100002],[40.80062910200016,67.7282168640001],[40.841970248000194,67.72455475500006],[40.9231876960001,67.73452383000016],[40.96583092500006,67.72508372600005],[41.01661217500012,67.69790273600013],[41.039886915000096,67.67780182500009],[41.053965691000116,67.65314362200009],[41.052256707000225,67.61912669500006],[41.03288821700002,67.59857819200012],[41.00782311300022,67.58295319200012],[40.98943118600019,67.56370677299999],[40.99000084700006,67.55536530200011],[41.007578972000175,67.54401276200007],[41.0135197270001,67.53579336100013],[41.01335696700008,67.52924225500006],[41.01075280000006,67.524400132],[41.00782311300022,67.52033112200003],[41.00611412900011,67.51593659100014],[41.005137566000116,67.49046458500014],[41.003428582000225,67.47894928599999],[40.99927819100011,67.46747467700006],[41.060069207000225,67.46637604400003],[41.087250196000156,67.45990631700003],[41.11597741000011,67.447007554],[41.145355665000096,67.42438385600003],[41.15007571700019,67.42348867400013],[41.14820397200006,67.41160716399999],[41.13933353000019,67.39423248900003],[41.13648522200006,67.38556549700003],[41.1365666020001,67.33567942900005],[41.13298587300008,67.30914948100009],[41.11963951900023,67.286281643],[41.108897332000225,67.25381094],[41.1404728520001,67.23533763199998],[41.242849155000016,67.21344635600015],[41.26441491000011,67.22040436400015],[41.28541100400017,67.23029205900015],[41.30779056100019,67.23476797100001],[41.321136915000096,67.23151276200015],[41.3396916020001,67.22382233300006],[41.356130405000016,67.21385325700005],[41.363047722,67.2037621110001],[41.35816491000017,67.19037506699999],[41.33838951900022,67.17112864800005],[41.33570397200006,67.1596540390001],[41.345469597000175,67.14899323100015],[41.380869988000114,67.13751862200003],[41.39039147200017,67.12490469000012],[41.38453209700006,67.11001211100007],[41.36793053500017,67.10187409100017],[41.35059655000012,67.09577057500009],[41.34253991000017,67.08734772300012],[41.34253991000017,67.0463727890001],[41.347422722000054,67.03099192900008],[41.356293165000096,67.02179596600011],[41.36003665500012,67.013617255],[41.349375847000175,67.00141022300012],[41.32984459700012,66.99823639500005],[41.303558790000096,67.00189850500003],[41.27979576900006,67.00210195500016],[41.267344597000175,66.98834870000006],[41.27466881600017,66.98151276200004],[41.2908634770001,66.97264232],[41.30469811300023,66.96206289300012],[41.30469811300023,66.94989655200014],[41.27051842500012,66.90265534100017],[41.17807050900015,66.80955638200011],[41.14527428500011,66.78888580900009],[41.041188998000194,66.74506256700015],[40.917979363000114,66.67243073100015],[40.8606876960001,66.65228913000011],[40.833181186000076,66.63222890800016],[40.814789259000094,66.6221377620001],[40.79558353000007,66.61420319200012],[40.763194207000225,66.60712311400006],[40.74496504000015,66.59735748900012],[40.72917728000013,66.5841332050001],[40.71876061300023,66.57001373900006],[40.716075066000116,66.55646393400008],[40.71957441500015,66.54913971600008],[40.71924889400012,66.54193756700006],[40.705088738000114,66.52846914300007],[40.66976972700016,66.512396552],[40.6341251960001,66.50665924700003],[40.60206139400023,66.49652741100006],[40.57781009200002,66.46723053600014],[40.56560306100007,66.455755927],[40.50652103000007,66.44025299700009],[40.44434655000012,66.40550364800013],[40.40015709700006,66.39402903899999],[40.30860436300023,66.38198476800007],[40.158376498000194,66.32933177300005],[40.08497155000012,66.28876373900015],[39.84888756600011,66.24518463700002],[39.81185957100009,66.23065827],[39.77149498800022,66.22492096600003],[39.704437696000156,66.2069359400001],[39.46517988400015,66.17959219],[39.38445071700019,66.14533112200003],[39.34359785200015,66.13471100499999],[39.063975457000055,66.10390859600012],[38.972178582000225,66.1113141950001],[38.95045006600017,66.10761139500006],[38.93458092500012,66.10211823100003],[38.55437259200019,66.05499909100014],[38.24073326900012,66.07188548400012],[37.9270939460001,66.08877187700013],[37.82146243600002,66.11220937700001],[37.655528191000116,66.12311432500017],[37.54639733200011,66.14484284100014],[37.43848717500006,66.19285716400005],[37.36011803500011,66.20457591400013],[37.27312259200002,66.23045482000005],[36.88738040500019,66.28522370000013],[36.831390821000156,66.2833519550001],[36.74927819100017,66.29564036700005],[36.632578972000175,66.28778717700008],[36.523448113000114,66.3001976580001],[36.40626061300023,66.29474518400015],[36.27466881600017,66.32086823100012],[36.022471550500114,66.3410098325],[35.77027428500011,66.36115143400009],[35.67107181100019,66.38739655200011],[35.55779056100019,66.3870303410001],[35.380625847000175,66.41787344000006],[35.314219597000175,66.45693594000011],[35.22535241000011,66.46906159100003],[35.181488477000094,66.48126862200009],[34.88770592500006,66.59975820500007],[34.80355879000015,66.61351146],[34.7225041020001,66.59454987200017],[34.64616946700008,66.56427643400018],[34.56470787900011,66.54271067900008],[34.5306095710001,66.53807200700005],[34.48015384200019,66.53758372600005],[34.43433678500017,66.54726797100004],[34.39747155000012,66.59223053600012],[34.36768639400012,66.61151764500015],[34.35596764400023,66.62978750200004],[34.39332116000017,66.64573802300013],[34.42058353000007,66.64642975500009],[34.47510826900023,66.6367048200001],[34.503184441000165,66.63825104400014],[34.525157097000175,66.64817942900008],[34.521657748000074,66.65717194200009],[34.505381707000225,66.66181061400003],[34.489512566000116,66.65875885600012],[34.49634850400011,66.65192291900009],[34.470225457000105,66.64606354400014],[34.284027540000096,66.67243073100015],[34.212412957000225,66.67243073100015],[34.20150800900009,66.67475006700012],[34.18392988400015,66.684719143],[34.17481530000006,66.68671295800006],[34.16879316500015,66.68447500200007],[34.14226321700019,66.67084381700012],[34.12964928500011,66.66852448100015],[34.11744225400011,66.66889069200006],[34.09229576900023,66.67243073100015],[34.13249759200002,66.698187567],[34.15056399800008,66.71527741100014],[34.16114342500012,66.73509349200005],[34.161306186000076,66.74306875200001],[34.159434441000116,66.75372955900004],[34.15650475400017,66.76349518400018],[34.15365644600015,66.7686221370001],[34.14136803500017,66.7738304710001],[34.1360783210001,66.76976146000011],[34.132985873000024,66.759995835],[34.127126498000194,66.74811432500003],[34.109385613000114,66.72825755400012],[34.09034264400012,66.71312083500013],[34.069021030000016,66.70184967700006],[34.04379316500015,66.69354889500006],[34.0384220710001,66.69367096600006],[34.02930748800023,66.69896067900011],[34.02369225400011,66.700384833],[34.01791425900015,66.69839101800015],[34.01514733200011,66.68935781500012],[34.00977623800023,66.68671295800006],[33.947276238000114,66.68488190300017],[33.92872155000012,66.68846263200005],[33.91765384200008,66.69415924700002],[33.895762566000116,66.70966217700014],[33.886241082000225,66.71401601800012],[33.869802280000016,66.71503327],[33.86768639400023,66.70892975500003],[33.86801191500015,66.700384833],[33.85889733200016,66.69354889500006],[33.832692905000016,66.69554271000001],[33.81421959700012,66.711615302],[33.78687584700012,66.7512067730001],[33.76384524800008,66.76654694200005],[33.70899498800023,66.78563060100005],[33.68441816500015,66.79970937700001],[33.66960696700008,66.80548737200013],[33.64177493600019,66.80101146],[33.629567905000016,66.8061384140001],[33.62061608200011,66.81386953300002],[33.59205162900011,66.830715236],[33.58741295700011,66.81952545800011],[33.591075066000116,66.8097191430001],[33.60564212300008,66.78974030200001],[33.56137129000009,66.80467357000005],[33.541188998000194,66.81557851800012],[33.52369225400011,66.830715236],[33.519541863000114,66.80219147300012],[33.551605665000096,66.78034088700018],[33.62614993600002,66.74811432500003],[33.59929446700002,66.7551130230001],[33.548838738000114,66.7755394550001],[33.52369225400011,66.78229401200004],[33.53394616000017,66.771185614],[33.54542076900011,66.76129791900009],[33.55827884200002,66.75336334800012],[33.57154381600017,66.74811432500003],[33.57154381600017,66.74192942900008],[33.55046634200002,66.7435570330001],[33.50977623800023,66.763373114],[33.48894290500019,66.7686221370001],[33.502289259000094,66.75580475500006],[33.540782097000175,66.73940664300015],[33.557871941000116,66.72768789300007],[33.51710045700017,66.72418854400017],[33.483246290000096,66.73041413000014],[33.10059655000006,66.85814036699999],[32.84327233200011,66.97626373900015],[32.82105553500011,66.99144114800013],[32.804860873000194,67.01032135600015],[32.798187696000156,67.030462958],[32.802256707000105,67.049058335],[32.81739342500006,67.06342194200006],[32.85385175900015,67.07453034100008],[32.93279056100019,67.07977936400009],[32.96876061300017,67.09076569200015],[32.9299422540001,67.100002346],[32.807139519000174,67.09076569200015],[32.77222741000011,67.0930036480001],[32.73853600400011,67.09931061400005],[32.63550866000017,67.13287995000009],[32.4544376960001,67.13495514500003],[32.43384850400016,67.13922760600003],[32.39405358200017,67.15704987200009],[32.38257897200012,67.1596540390001],[32.325368686000076,67.15932851800007],[32.29769941500015,67.15582916900009],[32.267751498000194,67.14736562700013],[32.24968509200008,67.14472077000006],[32.19019616000011,67.152818101],[32.0740666020001,67.14158763199998],[32.0408634770001,67.14378489800008],[31.94459069100017,67.165757554],[31.91049238400015,67.16828034100011],[31.87769616000017,67.1647809920001],[31.850922071000156,67.152818101],[31.926605665000153,67.152818101],[31.922129754000167,67.14618561400012],[31.912933790000096,67.12490469000012],[32.092784050000056,67.12034739799999],[32.20484459700012,67.13446686400012],[32.23454837300008,67.13296133000006],[32.26197350400011,67.1249860700001],[32.303965691000116,67.09760163000006],[32.344981316000116,67.08417389500005],[32.35808353000019,67.07025788],[32.34156334700012,67.07599518400015],[32.32455488400015,67.0780296900001],[32.28980553500017,67.07770416900014],[32.31413821700008,67.060248114],[32.34839928500011,67.05662669500003],[32.385590040000096,67.0576846370001],[32.41863040500007,67.05438873900006],[32.5032658210001,67.030462958],[32.53003991000017,67.01504140800007],[32.54981530000012,67.00006745000003],[32.55697675900015,66.98899974199999],[32.55152428500011,66.97650788],[32.53345787900011,66.95697663],[32.506683790000096,66.94891998900006],[32.42457116000011,66.95551178600013],[32.39210045700011,66.953558661],[32.41773522200017,66.94635651200015],[32.47242272200012,66.94513580900002],[32.49586022200012,66.93309153900013],[32.48161868600019,66.92788320500013],[32.47535241000011,66.92694733300004],[32.478282097000175,66.90997955900016],[32.462168816000116,66.90013255400005],[32.42017662900011,66.8921572940001],[32.42017662900011,66.88593170800014],[32.52662194100017,66.88593170800014],[32.54542076900022,66.8830020200001],[32.59148196700008,66.85797760600012],[32.65259850400011,66.84162018400009],[32.67603600400011,66.82835521000007],[32.66651451900012,66.80955638200011],[32.70508873800006,66.79637278899999],[32.89096113400015,66.78156159100008],[32.90674889400012,66.77606842700008],[32.91578209700012,66.76878489800005],[32.926768425000056,66.75165436400012],[32.93474368600002,66.74192942900008],[32.919200066000116,66.73676178600006],[32.812022332000225,66.735744533],[32.76954186300017,66.74192942900008],[32.974619988000114,66.69110748900012],[33.18344160200016,66.69245026200011],[33.30860436300011,66.65517812700013],[33.32447350400011,66.64573802300013],[33.31861412900011,66.62933991100012],[33.28638756600017,66.63117096600011],[33.2248641290001,66.64573802300013],[33.15626061300006,66.65322500200001],[33.12077884200008,66.65021393400008],[33.10531660200016,66.63178131700006],[33.09359785200016,66.61123281500004],[33.06617272200012,66.59772370000006],[33.03484134200008,66.59162018400015],[33.011078321000156,66.59292226800014],[32.97486412900017,66.60081614800013],[32.938161655000066,66.6030134140001],[32.865244988000114,66.59796784100008],[32.901377800000056,66.57477448100015],[33.10531660200016,66.57684967700008],[33.09180748800006,66.58429596600014],[33.10572350400017,66.59442780200003],[33.12208092500006,66.59829336100002],[33.192637566000116,66.5970726580001],[33.20630944100017,66.59886302299999],[33.22144616000017,66.60480377800009],[33.21900475400017,66.60635000200011],[33.21753991000017,66.61102936400006],[33.21973717500006,66.6161156270001],[33.22828209700012,66.61839427300005],[33.25961347700016,66.61839427300005],[33.422862175000056,66.59223053600012],[33.45142662900017,66.57343170800006],[33.462901238000114,66.55988190300009],[33.468923373000194,66.555650132],[33.48218834700011,66.55011627800015],[33.52361087300008,66.54108307500013],[33.536794467000185,66.53587474200005],[33.49919681100019,66.52285390800007],[33.1927189460001,66.5788028020001],[33.15308678500011,66.57001373900006],[33.16309655000006,66.57025787999999],[33.172211134000094,66.56801992400001],[33.18034915500019,66.56329987200012],[33.187266472000175,66.5563418640001],[33.169688347000175,66.55638255400011],[33.16586347700016,66.5559349630001],[33.1189884770001,66.55011627800015],[33.07325280000006,66.556870835],[33.02833092500006,66.54559967700003],[32.96876061300017,66.54043203300002],[32.94092858200011,66.52846914300007],[32.989593946000156,66.51203034100017],[33.04688561300006,66.50604889500006],[33.10425866000011,66.50971100500011],[33.178965691000116,66.53046295800003],[33.20346113400015,66.53375885600006],[33.228688998000194,66.53286367400015],[33.287771030000016,66.52240631700006],[33.29712975400017,66.5187848980001],[33.30274498800006,66.514105536],[33.303558790000096,66.50910065300015],[33.30388431100019,66.50372955900009],[33.307465040000096,66.49799225500011],[33.32764733200011,66.48700592700006],[33.3548283210001,66.48021067900012],[33.508636915000096,66.4638125670001],[33.53736412900016,66.47068919500005],[33.57846113400015,66.49579498900012],[33.60222415500007,66.50165436400009],[33.62305748800023,66.491156317],[33.633636915000096,66.47406647300006],[33.626475457000225,66.46893952000015],[33.60816491000017,66.46718984600015],[33.585215691000116,66.46015045800009],[33.621429884000094,66.45132070500004],[33.70460045700005,66.44383372600005],[33.735362175000056,66.42601146],[33.684743686000076,66.41347890800007],[33.565684441000116,66.419867255],[33.51628665500007,66.40550364800013],[33.552500847000175,66.39337799700003],[33.64323978000007,66.37824127800003],[33.67457116000011,66.35712311400012],[33.629079623000024,66.34430573100009],[33.4759220710001,66.35028717700003],[33.38843834700011,66.34438711100007],[33.34253991000017,66.33510976800004],[33.31080162900011,66.31679922100015],[33.48113040500019,66.31517161700013],[33.59880618600007,66.33038971600011],[33.617523634000094,66.32770416900003],[33.63461347700016,66.32147858300009],[33.63900800900015,66.3144391950001],[33.61988366000017,66.30931224199999],[33.87110436300023,66.26666901200015],[33.88917076900023,66.258246161],[33.88868248800006,66.2513695330001],[33.88249759200019,66.2448184270001],[33.88282311300023,66.23761627800017],[33.89966881600011,66.22890859600001],[33.915782097000175,66.2327334660001],[33.931813998000194,66.24164459800015],[33.94825280000006,66.24848053600006],[33.97234134200019,66.25104401200015],[34.0872501960001,66.24892812700007],[34.102793816000116,66.24689362200003],[34.11963951900012,66.24103424700009],[34.15333092500012,66.22382233300009],[34.1673283210001,66.221177476],[34.16179446700008,66.21308014500006],[34.154307488000114,66.20498281500012],[34.14926191500015,66.197007554],[34.15064537900011,66.18952057500012],[34.16138756600017,66.18549225500014],[34.23121178500011,66.177435614],[34.26238040500019,66.16811758000007],[34.27767988400015,66.16596100500006],[34.32992597700016,66.16461823100016],[34.496836785000106,66.116156317],[34.53728274800008,66.0902367210001],[34.530446811000076,66.10390859600012],[34.55298912900011,66.09369538],[34.57016035200015,66.06806061400012],[34.61036217500006,66.05768463700012],[34.63550866000011,66.03461334800006],[34.65406334700011,66.02944570500016],[34.66675866000011,66.02362702],[34.712250196000156,65.99656810100008],[34.72291100400011,65.9877790390001],[34.71729576900011,65.97508372600012],[34.69939212300008,65.96629466399999],[34.66089928500017,65.95302969000012],[34.672699415000096,65.94428131700006],[34.68669681100019,65.93919505400004],[34.71607506600017,65.93256256700009],[34.70281009200008,65.92841217700014],[34.69499759200008,65.91893138200014],[34.69507897200012,65.90949127800012],[34.70557701900012,65.905218817],[34.72282962300013,65.90753815300015],[34.75814863400015,65.91730377800012],[34.77759850400016,65.91958242400007],[34.78630618600002,65.91730377800012],[34.8020939460001,65.90753815300015],[34.81202233200011,65.905218817],[34.838877800000056,65.90680573100003],[34.84644616000011,65.905218817],[34.85238691500015,65.90033600500014],[34.857758009000094,65.89280833500008],[34.86622155000006,65.87791575700011],[34.854991082000225,65.87197500200001],[34.82536868600019,65.84320709800006],[34.83855228000007,65.82811107000005],[34.85466556100013,65.82514069200012],[34.89356530000012,65.83014557500017],[34.899668816000116,65.82371653900007],[34.89820397200011,65.809719143],[34.89283287900017,65.79559967700008],[34.88672936300011,65.78912995000017],[34.8689884770001,65.78473541900009],[34.870616082000225,65.77448151200015],[34.88209069100017,65.76300690300012],[34.89356530000012,65.75507233300004],[34.92969811300023,65.73948802300005],[34.96859785200016,65.72772858300009],[34.94955488400015,65.7184512390001],[34.93848717500012,65.70791250200007],[34.925303582000055,65.70184967700008],[34.90040123800022,65.706000067],[34.770762566000116,65.77488841400007],[34.704844597000175,65.79730866100009],[34.688731316000116,65.809719143],[34.68230228000019,65.77879466400006],[34.68189537900011,65.768703518],[34.68409264400012,65.76675039300015],[34.69190514400006,65.7311058610001],[34.688731316000116,65.72772858300009],[34.70476321700019,65.72089264500006],[34.74675540500019,65.7203636740001],[34.75700931100013,65.71344635600009],[34.75074303500017,65.70111725500014],[34.732188347000175,65.69318268400018],[34.69499759200008,65.6861839860001],[34.70313561300006,65.67755768400009],[34.72779381600017,65.66901276200015],[34.73991946700008,65.66193268400009],[34.74390709700011,65.65631745000012],[34.75269616000011,65.63886139500015],[34.77222741000011,65.60956452000012],[34.776621941000165,65.59658437700011],[34.76612389400012,65.5889346370001],[34.73658287900011,65.58315664300012],[34.7400822270001,65.54364655199998],[34.706879102000094,65.520697333],[34.66285241000011,65.50507233300003],[34.63347415500019,65.48749420800007],[34.64942467500012,65.4855410830001],[34.66871178500017,65.47939687700016],[34.682465040000146,65.46881745000009],[34.68189537900011,65.45335521000008],[34.66456139400012,65.44513580900018],[34.63542728000007,65.44415924700012],[34.54802493600019,65.45783112200006],[34.510915561000076,65.45551178600009],[34.492198113000114,65.44114817900002],[34.51059004000015,65.411810614],[34.490570509000094,65.40810781500015],[34.468272332000225,65.40949127800003],[34.44654381600017,65.41469961100002],[34.427744988000114,65.42234935100005],[34.41651451900012,65.42255280200003],[34.40170332100015,65.41771067900011],[34.38453209700012,65.41429271000011],[34.36597741000011,65.41864655200011],[34.37110436300023,65.41290924700003],[34.37769616000011,65.40737539300004],[34.39332116000017,65.39813873900006],[34.368988477000094,65.3917910830001],[34.317881707000225,65.3974470070001],[34.29704837300008,65.38507721600008],[34.441742384000094,65.37083567900008],[34.46290123800006,65.36440664300007],[34.478037957000055,65.349066473],[34.479991082000225,65.330959377],[34.46159915500018,65.31622955900012],[34.471039259000094,65.28896719000012],[34.47974694100017,65.28107330900006],[34.49634850400011,65.27521393400009],[34.527191602000094,65.27855052300013],[34.53589928500017,65.27570221600008],[34.52418053500011,65.26097239800002],[34.55290774800008,65.25454336100007],[34.61524498800023,65.25458405200008],[34.640310092000135,65.24115631700009],[34.60621178500011,65.22687409100008],[34.63379967500011,65.22748444200015],[34.64722741000011,65.2242699240001],[34.679453972000175,65.19920482],[34.68189537900011,65.20014069200009],[34.681976759000094,65.18252187700016],[34.667979363000114,65.17812734600007],[34.64714603000007,65.17772044500008],[34.626719597000175,65.17218659100014],[34.636892123000194,65.16412995000012],[34.67457116000011,65.15176015800007],[34.66309655000006,65.12677643400015],[34.6810001960001,65.11444733300003],[34.76587975400017,65.10781484600011],[34.77369225400017,65.1002464860001],[34.76628665500007,65.08649323100018],[34.74675540500019,65.06574127800017],[34.75440514400012,65.05487702],[34.78931725400011,65.05101146],[34.81609134200002,65.04340241100006],[34.798594597000175,65.02142975500014],[34.77361087300008,65.01190827000012],[34.744883660000106,65.006048895],[34.71900475400011,64.99762604400014],[34.70240319100017,64.9804141300001],[34.74439537900011,64.97719961100007],[34.77833092500006,64.96678294499999],[34.807790561000076,64.94863515800007],[34.8357853520001,64.92177969],[34.84131920700011,64.91860586100013],[34.84831790500019,64.91766998900015],[34.862559441000165,64.9183617210001],[34.87281334700012,64.91754791900017],[34.87273196700002,64.91494375200007],[34.86988366000011,64.910630601],[34.87403405000012,64.90119049700014],[34.8768009770001,64.889349677],[34.88005618600002,64.8842227230001],[34.892100457000225,64.87490469000015],[34.90886478000007,64.86566803600009],[34.92652428500017,64.859076239],[34.94206790500019,64.85757070500016],[34.93189537900011,64.84243398600016],[34.91260826900012,64.82623932500012],[34.8724064460001,64.80231354400014],[34.84457441500015,64.79368724200005],[34.78500410200016,64.78412506700015],[34.75700931100013,64.77435944200003],[34.79802493600002,64.756333726],[34.81202233200011,64.75385163000006],[34.813975457000225,64.75877513200011],[34.882302474000106,64.75653344800018],[34.93055620800007,64.76576533900011],[34.94899583300017,64.770577442],[34.97530366300006,64.77050089300015],[35.00903061300008,64.743184417],[34.970354649000086,64.72760642400011],[34.92833933000006,64.72247557000003],[34.88109909400012,64.71808869600007],[34.85484638400006,64.71440216500005],[34.83554586700009,64.70472972200018],[34.83228600400011,64.697943427],[34.91284814300016,64.662429278],[34.93609622200009,64.63663611700015],[34.97340925700004,64.62498614200008],[34.97759177800012,64.61191658300005],[34.929482066000126,64.59149847500008],[34.88674871700019,64.58150070900011],[34.84655792000015,64.55991731400013],[34.81055748800022,64.55898672100015],[34.80543053500011,64.55585358300009],[34.757985873000194,64.56024811400006],[34.74333743600019,64.55585358300009],[34.773203972000175,64.55630117400005],[34.78443444100017,64.5484072940001],[34.801442905000016,64.54637278899999],[34.83269290500019,64.53156159100011],[34.8494572270001,64.52798086100013],[34.911631707000225,64.52814362200009],[34.927744988000114,64.52456289300011],[34.970965943000145,64.50444991100015],[35.00896401600008,64.49390627700005],[34.997386,64.4719087920001],[34.955577019000174,64.45221588700015],[35.01398886100017,64.42332144700013],[35.057094706000186,64.4157316230001],[35.12110436300023,64.40159739799998],[35.13379967500012,64.39077383000007],[35.1614689460001,64.38027578300002],[35.28003991000017,64.37661367400015],[35.30730228000007,64.37221914300007],[35.32154381600017,64.36188385600013],[35.30567467500006,64.34296295800014],[35.33057701900006,64.32868073100015],[35.328536545000105,64.31413214200013],[35.348752117000146,64.29607325700012],[35.41050382700004,64.2867553200001],[35.4661660030001,64.30589433100012],[35.53645073800012,64.32154307600003],[35.5890698420001,64.3223126050001],[35.61815777200016,64.34042868100006],[35.59929446700019,64.37030670800011],[35.58912194100011,64.38100820500013],[35.57300866000017,64.39459870000009],[35.56568444100017,64.40631745000009],[35.58253014400006,64.41128164300012],[35.63864684100017,64.38366394200013],[35.72543379000009,64.35944245000002],[35.81080162900011,64.34202708500005],[35.86011803500011,64.32233307500003],[35.89486738400009,64.29584381700015],[35.88786868600019,64.26788971600003],[35.90072675900015,64.25649648600016],[35.93384850400017,64.24762604400011],[35.94939212300008,64.239935614],[35.95777428500011,64.22980377800003],[35.96729576900023,64.2084007830001],[35.976735873000024,64.19896067900008],[36.006032748000074,64.1932640650001],[36.0264802020001,64.20573821100005],[36.059789657000096,64.2181327710001],[36.088576730000135,64.20731386600012],[36.121569430000164,64.19455885000012],[36.16188042000013,64.17306389700009],[36.186775119000146,64.15398646199999],[36.22721056100008,64.13620551600015],[36.23525015800007,64.12482335300005],[36.22429446700008,64.11420319200009],[36.20997155000006,64.1034203150001],[36.22213885600016,64.07529878200016],[36.25907062900009,64.0644326570001],[36.284434441000116,64.04621002800003],[36.27125084700017,64.03579336100013],[36.26465905000012,64.02423737200012],[36.292165561000076,64.00971100500009],[36.36500084700017,64.00177643400009],[36.420095248000024,63.99567291900003],[36.45997155000011,63.98297760600014],[36.47982832100009,63.97247955900018],[36.50660241000011,63.970648505000106],[36.55827884200008,63.97304922100015],[36.578461134000094,63.96893952],[36.619313998000024,63.955389716000134],[36.63770592500006,63.952582098000086],[36.64869225400011,63.94798411700005],[36.68425540500019,63.92829010600013],[36.70346113400014,63.924627997000144],[36.76832116000016,63.940130927000084],[36.792246941000116,63.93829987200009],[36.80844160200016,63.93121979400003],[36.8377384770001,63.91429271000006],[36.85743248800023,63.91095612200003],[36.878184441000116,63.91429271000006],[36.91675866000011,63.92877838700009],[36.93628991000017,63.932074286000145],[36.954844597000175,63.927232164000074],[36.99187259200019,63.90448639500011],[37.01140384200019,63.89736562700006],[37.16944420700022,63.895086981000084],[37.194183790000096,63.890814520000085],[37.21338951900023,63.880275783000044],[37.24610436300006,63.847357489000146],[37.25440514400022,63.84271881700012],[37.26148522200012,63.840073960000105],[37.272715691000116,63.82713450700011],[37.27898196700008,63.82221100500006],[37.29102623800006,63.818182684000085],[37.437810567000014,63.7922805030001],[37.53436246200013,63.80085792800015],[37.60842307500016,63.81558640100003],[37.61898671700012,63.840945447000124],[37.61052157500015,63.85715462800012],[37.614345513000075,63.88116880200011],[37.65739108200008,63.898636898000106],[37.71940111900008,63.90552319700011],[37.82855741600005,63.901991257000184],[37.8670353520001,63.91640859600007],[37.944102410000106,63.94033437700013],[37.98462975400017,63.94574616100009],[38.0018009770001,63.95551178600011],[38.073741082000225,64.01740143400009],[38.088063998000024,64.03489817900014],[38.08578535200015,64.05902741100006],[38.04566491000011,64.1483421900001],[38.03012129000015,64.16437409100017],[38.00505618600002,64.17853424700009],[37.946136915000096,64.20209381700015],[37.91423587300008,64.22040436400003],[37.90202884200019,64.239935614],[37.92302493600002,64.25775788000006],[38.005381707000055,64.27537669499999],[38.02621504000015,64.29523346600008],[38.020192905000016,64.30853913000011],[38.00294030000012,64.31696198100015],[37.95020592500012,64.32538483300011],[37.92465254000015,64.338853257],[37.90886478000018,64.34296295800014],[37.91724694100017,64.35260651200012],[37.92969811300006,64.35687897300012],[37.94369550900014,64.35952383000001],[37.95671634200002,64.36408112200014],[37.8325252320001,64.35833357100013],[37.79684480700021,64.37717998400002],[37.79908287900011,64.41811758000016],[37.8064884770001,64.4248721370001],[37.7759499470001,64.43402992500002],[37.749026731000214,64.44171393000012],[37.68706083800012,64.43086712600017],[37.65534974600021,64.41181395500003],[37.651621941000116,64.38715241100012],[37.62989342500006,64.37702057500013],[37.601084832000225,64.37775299700009],[37.55681399800008,64.38491445500013],[37.51490319100017,64.38654205900015],[37.47315514400023,64.38182200700005],[37.38493899800008,64.360052802],[37.33943429000007,64.340442001],[37.2862281540001,64.35220606100002],[37.12150062400022,64.39473999100007],[37.055438895000094,64.44394721900007],[36.834633516000025,64.59301707700003],[36.784091085000135,64.63949259700017],[36.7441163780002,64.68104600300008],[36.69526227800006,64.707875905],[36.644103836000085,64.71894324500009],[36.55976094700023,64.71742272300004],[36.540340173000146,64.75252841300009],[36.5164618630001,64.76902649300011],[36.528086785000106,64.79173411699999],[36.52003014400012,64.80231354400014],[36.513845248000024,64.825344143],[36.50424238400015,64.8358421900001],[36.55537218400016,64.82412616300014],[36.57252037900017,64.82957591400013],[36.494858015000055,64.85103248300008],[36.47294135000007,64.86560697300008],[36.45997155000011,64.887640692],[36.43995201900023,64.9170596370001],[36.46603292000006,64.93412790800012],[36.5371902790001,64.92813325100018],[36.568603652000064,64.90245182100007],[36.631017159000095,64.90416255500004],[36.654946111000214,64.92782613000016],[36.69524349700012,64.93933211600013],[36.761596678000124,64.95003332000012],[36.807444256000075,64.9590522970001],[36.81414731700008,64.97571551900002],[36.80274566300013,64.99356925600004],[36.82471764400012,65.02041250200007],[36.82984459700012,65.03131745000015],[36.8626408210001,65.0646833350001],[36.867360873000024,65.07599518400009],[36.86378014400023,65.11310455900012],[36.81792612100011,65.13133727300011],[36.820001697000095,65.14714128399999],[36.90012485400021,65.15090241800006],[36.94971463300007,65.1593679700001],[36.97868040600005,65.16617766700006],[37.0076770580001,65.17297682600015],[37.060953967000074,65.16792080900014],[37.12861798800023,65.1573628550001],[37.217388236000055,65.14022134300014],[37.324478534,65.1136967530001],[37.398549174000124,65.10197670500015],[37.50015027700013,65.06970119700016],[37.565099821000075,65.04801204799999],[37.62120805500015,65.04226738000001],[37.67266027900021,65.03566296800007],[37.705971632000086,65.01738203100012],[37.71539374800014,64.99807572800013],[37.704312133000116,64.977221317],[37.71831669400015,64.95880198000002],[37.794594757000105,64.92061488500009],[38.046434246000125,64.85367156900013],[38.14429799000007,64.84403244300016],[38.257044904000026,64.84646340900004],[38.35790428100003,64.8524110740001],[38.3850214870001,64.84462671200014],[38.373220248000024,64.82416413],[38.36817467500012,64.80914948100015],[38.37427819100017,64.79800039300012],[38.39625084700011,64.78620026200015],[38.40300540500007,64.77435944200003],[38.3650822270001,64.78082916900011],[38.328786655000016,64.79669830900004],[38.294118686000076,64.80394114800008],[38.261485222000175,64.78489817900008],[38.24463951900012,64.78119538000011],[38.16277103000007,64.78864166900011],[38.088226759000094,64.7855899110001],[38.066579623000194,64.78119538000011],[38.03630618600019,64.76190827],[38.04542076900012,64.74371979400011],[38.1170353520001,64.70278554900007],[38.12574303500011,64.69594961100016],[38.12370853000019,64.68903229400014],[38.10808353000019,64.67877838700004],[38.09343509200019,64.67267487200014],[38.039886915000096,64.65827057500017],[38.04810631600017,64.64594147300012],[38.06251061300023,64.64374420800014],[38.07911217500012,64.64801666900014],[38.09408613400015,64.65485260600015],[38.110199415000096,64.65949127800009],[38.149750196000156,64.665472723],[38.16277103000007,64.67194245000012],[38.16944420700011,64.68439362200003],[38.16675866000011,64.7040062520001],[38.17335045700011,64.71629466400005],[38.186371290000096,64.72321198100015],[38.20508873800023,64.72589752800003],[38.24122155000006,64.72589752800003],[38.274668816000116,64.73232656500012],[38.339040561000076,64.75836823100012],[38.37566165500007,64.76129791900003],[38.44044030000006,64.74290599199999],[38.47250410200016,64.74347565300015],[38.49170983200011,64.767523505],[38.482758009000094,64.76911041900003],[38.42554772200012,64.793443101],[38.41602623800022,64.80231354400014],[38.418711785000106,64.81854889500009],[38.4480308710001,64.81787810399999],[38.46400777600016,64.81035796700006],[38.511692183,64.78774888700003],[38.62382352700009,64.76886677600014],[38.737775398000025,64.74792216100018],[38.8168011810001,64.74260900900013],[38.87279423100003,64.74118900100014],[38.922202045000034,64.73274181800012],[39.04171158700015,64.69751739200011],[39.14215951300011,64.6622222860001],[39.248657950000194,64.64534738400009],[39.30307050900015,64.64622630400008],[39.33082116000011,64.63971588700015],[39.34174714300016,64.62254143200015],[39.384229971000224,64.60691286100003],[39.44424357900007,64.58163024700013],[39.5665243170001,64.54526799300005],[39.73609459700006,64.55548737200014],[39.75977623800023,64.56207916900006],[39.74683678500017,64.57615794499999],[39.76677493600002,64.58136627800016],[39.82129967500011,64.58633047100012],[39.84229576900023,64.59414297100004],[39.900401238000114,64.60346100500006],[39.92359459700006,64.60301341400007],[39.90284264400023,64.62441640800002],[39.863291863000114,64.61863841400005],[39.8196720710001,64.60358307500003],[39.786387566000116,64.596869208],[39.79175866000016,64.61505768400018],[39.809906446000156,64.65932851800012],[39.82129967500011,64.67194245000012],[39.85035241000011,64.67597077000009],[39.88933353000007,64.66990794499999],[40.06275475400011,64.62189362200009],[40.11060631600017,64.60114166900009],[40.153168165000096,64.5726585960001],[40.18165123800023,64.55866120000003],[40.2142033210001,64.55556875200013],[40.35906009200008,64.56207916900006],[40.37378991000016,64.55996328300013],[40.40113366000011,64.55052317900011],[40.479991082000055,64.53961823100003],[40.51710045700011,64.54144928600012],[40.53321373800017,64.55898672100015],[40.528493686000076,64.57794830900015],[40.51710045700011,64.59357330900013],[40.50367272200012,64.60822174700014],[40.49219811300023,64.616644598],[40.47242272200006,64.63641998900012],[40.441416863000114,64.69940827000006],[40.4275822270001,64.71287669500003],[40.42017662900011,64.71539948100015],[40.41488691500015,64.72150299700014],[40.41187584700006,64.72931549700003],[40.41089928500017,64.7368024760001],[40.41179446700008,64.74994538000006],[40.41480553500017,64.75511302300006],[40.45142662900011,64.76813385600015],[40.47624759200008,64.769273179],[40.50066165500018,64.76459381700006],[40.52019290500019,64.75385163000006],[40.517344597000054,64.77411530200008],[40.491953972,64.78754303600006],[40.45972741000017,64.79783763200008],[40.436859571000156,64.80914948100015],[40.42269941500015,64.82697174700003],[40.378103061000076,64.92251211100005],[40.36589603000019,64.93878815300015],[40.34880618600002,64.95311107000003],[40.30974368600018,64.97467682500015],[40.29737389400023,64.983547268],[40.290782097000175,64.99188873900006],[40.28174889400023,65.01190827000012],[40.27312259200008,65.02142975500014],[40.24138431100018,65.0367699240001],[40.13591556100019,65.06232330900015],[40.11402428500017,65.07469310100011],[39.87224368600002,65.27692291900011],[39.78093509200008,65.32245514500005],[39.740896030000016,65.3565127620001],[39.720713738000114,65.3803164730001],[39.71208743600019,65.4018415390001],[39.70948326900012,65.447699286],[39.71094811300023,65.469671942],[39.71827233200016,65.49494049700014],[39.73031660200016,65.52435944200015],[39.73853600400016,65.53880442900001],[39.74927819100017,65.55206940300003],[39.82691491000011,65.60700104400001],[39.979746941000116,65.65615469000015],[40.06657962300008,65.66811758000007],[40.27979576900012,65.72996653900007],[40.47169030000011,65.81281159100008],[40.636241082000225,65.93256256700009],[40.71013431100013,65.97231679900007],[40.79590905000006,65.99168528900002],[41.01807701900022,66.00775788000009],[41.10580488400015,66.03058502800009],[41.34253991000017,66.06289297100001],[41.400563998000024,66.0866559920001],[41.417979363000114,66.0902367210001],[41.434825066000116,66.09552643400015],[41.464366082000055,66.11904531500012],[41.479340040000096,66.12433502800009],[41.49634850400016,66.12787506700009],[41.554860873000024,66.1522891300001],[41.623383009000094,66.16510651200015],[41.64356530000011,66.1727562520001],[41.63803144600009,66.18317291900009],[41.642751498000194,66.18891022300015],[41.652679884000094,66.192531643],[41.85759524800008,66.296332098],[42.0208439460001,66.41233958500005],[42.11988366000017,66.50482819200015],[42.15593509200002,66.52635325700005],[42.200938347,66.53217194200003],[42.365244988000114,66.51121653900007],[42.64478600400011,66.45254140800013],[42.661468946000156,66.44334544500008],[42.66000410200016,66.42572663000006],[42.57504316500015,66.40155670800014],[42.54859459700006,66.38507721600013],[42.74919681100002,66.39508698100003],[42.94141686300023,66.4186058610001],[43.12680097700016,66.42348867400007],[43.25220787900011,66.43675364799999],[43.3020939460001,66.42601146],[43.32504316500015,66.40997955900009],[43.35059655000006,66.36713288000003],[43.367198113000114,66.34715403900013],[43.406097852000094,66.3321800800001],[43.51050866000011,66.33014557500015],[43.55534915500007,66.32363515800007],[43.65479576900023,66.28485748900015],[43.68287194100017,66.26528554900007],[43.692637566000116,66.23720937700007],[43.66537519600009,66.2176781270001],[43.508148634000094,66.1843122420001],[43.46705162900011,66.170111395],[43.43580162900011,66.14858633000006],[43.421153191000116,66.13491445500013],[43.40593509200008,66.12482330900018],[43.38941491000017,66.11737702],[43.37086022200017,66.1113141950001],[43.32504316500015,66.10675690300015],[43.30176842500006,66.10187409100008],[43.28834069100017,66.0902367210001],[43.33594811300023,66.06720612200003],[43.34302819100011,66.059515692],[43.352793816000116,66.04148997600008],[43.37549889400012,66.03729889500012],[43.41871178500016,66.04242584800015],[43.45085696700008,66.037054755],[43.47632897200006,66.02240631700009],[43.49724368600013,66.0007184920001],[43.514903191000116,65.97418854400014],[43.52588951900006,66.018540757],[43.52173912900017,66.03611888200011],[43.50098717500006,66.05267975500009],[43.41138756600017,66.06183502800015],[43.38233483200011,66.07192617400013],[43.41138756600017,66.09764232],[43.46412194100017,66.12714264500015],[43.479828321000156,66.13117096600003],[43.52035566500015,66.136419989],[43.56072024800014,66.14679596600008],[43.58399498800023,66.15009186400012],[43.635996941000116,66.15184153900013],[43.655528191000165,66.16225820500001],[43.67156009200008,66.17413971600017],[43.692556186000125,66.18276601800007],[43.714610222,66.18618398600007],[43.75928795700005,66.177435614],[43.83643639400012,66.18577708500008],[43.85222415500007,66.18170807500002],[43.89177493600019,66.15851471600008],[43.946787957000055,66.14008209800015],[43.987559441000116,66.1088320980001],[44.04566491000011,66.0810407570001],[44.0520939460001,66.072495835],[44.04932701900023,66.0560977230001],[44.041351759000094,66.0431175800001],[44.03321373800006,66.03652578300002],[44.02784264400012,66.02944570500016],[44.02816816500015,66.0150820980001],[44.04053795700011,65.99359772300015],[44.08757571700019,65.95905182500015],[44.16716556100018,65.88544342699998],[44.17969811300006,65.86432526200015],[44.1907658210001,65.90493398600007],[44.17367597700016,65.93480052300005],[44.1458439460001,65.96039459800011],[44.124522332000225,65.9877790390001],[44.123220248000074,66.01325104400011],[44.15105228000019,66.05817291900011],[44.158539259000094,66.08681875200007],[44.148203972000175,66.10431549700003],[44.099131707000225,66.14130280200008],[44.083506707000225,66.15851471600008],[44.079356316000116,66.20669179900013],[44.09636478000007,66.26194896000005],[44.123871290000096,66.31513092700014],[44.151703321000156,66.35712311400012],[44.1658634770001,66.37295156500006],[44.210215691000116,66.40241120000005],[44.2181095710001,66.41388580900009],[44.23609459700006,66.44708893400009],[44.24488366000011,66.45392487200003],[44.34815514400012,66.49966054900013],[44.360199415000096,66.50824616100005],[44.370860222000054,66.52220286700009],[44.37769616000017,66.54507070500013],[44.38559004000015,66.602240302],[44.39478600400011,66.62181224200008],[44.43043053500017,66.64386627800015],[44.47494550900014,66.65521881700012],[44.56324303500011,66.666205145],[44.55111738400009,66.67796458500008],[44.53158613400015,66.67694733300003],[44.50904381600017,66.67304108300011],[44.487803582000055,66.6761742210001],[44.464203321000156,66.69057851800015],[44.451508009000094,66.70099518400004],[44.43458092500012,66.73346588700004],[44.38086998800023,66.763902085],[44.36402428500011,66.78229401200004],[44.37663821700019,66.80491771],[44.466075066000116,66.81972890800007],[44.487559441000116,66.84438711100016],[44.48161868600019,66.89362213700015],[44.49048912900016,66.90448639500015],[44.521657748000024,66.91941966400002],[44.499278191000116,66.92145416900003],[44.49089603000007,66.93008047100012],[44.48747806100007,66.94204336100016],[44.48072350400011,66.953558661],[44.432465040000096,66.98236725500011],[44.425547722000175,66.99485911700005],[44.40967858200017,67.01190827],[44.37330162900017,67.03058502800015],[44.302500847000054,67.05597565300009],[44.315114780000066,67.07461172100007],[44.33578535200016,67.08405182500007],[44.35889733200011,67.09162018400004],[44.37769616000017,67.10443756700009],[44.28695722700016,67.08783600500011],[44.264984571000156,67.09418366100006],[44.247325066000116,67.10663483300004],[44.206309441000116,67.124701239],[44.174327743000184,67.13394147399998],[44.151219282000085,67.14307907800013],[44.0955386750002,67.15866249100013],[44.03964585400009,67.16743848900008],[43.98702635100008,67.16305264600001],[43.94965352300002,67.16359701300003],[43.91690928000017,67.16095262700016],[43.86687259200008,67.171332098],[43.81532931200016,67.17745252300016],[43.77540123800023,67.2045759140001],[43.76140384200019,67.22113678600006],[43.76534469100008,67.2382489860001],[43.766698982000065,67.27768850600008],[43.79303558,67.34339405300011],[43.862363954000074,67.42622304900006],[44.00301503800003,67.57602701500012],[44.023763907000074,67.61641517100016],[44.02279445900015,67.62454483300012],[44.02659625900011,67.643182035],[44.02426191500015,67.65607330900012],[44.03321373800006,67.67080312700001],[44.041840040000096,67.68040599199999],[44.049652540000096,67.68341705900009],[44.07520592500006,67.68781159100017],[44.083506707000225,67.68720123900003],[44.08887780000012,67.68268463700014],[44.09376061300006,67.67568594000005],[44.096934441000116,67.66933828300013],[44.09717858200005,67.66673411700005],[44.1096297540001,67.66669342700006],[44.127940300000056,67.67064036700005],[44.144541863000114,67.67942942900011],[44.151703321000156,67.69375234600001],[44.14332116000011,67.70693594000015],[44.122813347000054,67.71051666900003],[44.07667076900012,67.70770905200006],[44.06950931100019,67.71442291900011],[44.081309441000116,67.7296410180001],[44.11085045700011,67.75551992400001],[44.11744225400017,67.76471588700015],[44.12484785200015,67.778021552],[44.13062584700006,67.79218170800011],[44.13184655000006,67.803900458],[44.12501061300023,67.81663646000005],[44.11280358200017,67.82538483300011],[44.098968946000156,67.83283112200012],[44.08692467500006,67.841498114],[44.08480879000015,67.85053131700003],[44.084157748000194,67.86806875200016],[44.087412957000225,67.88507721600003],[44.09717858200005,67.89272695500013],[44.17628014400006,67.88922760600015],[44.20020592500012,67.89272695500013],[44.21794681100001,67.89996979400017],[44.25074303500011,67.91913483300014],[44.26840254000015,67.92682526200015],[44.23471113400015,67.93805573100015],[44.14861087300008,67.92523834800012],[44.124522332000225,67.93427155200014],[44.1380314460001,67.97528717700014],[44.15455162900011,67.9815127620001],[44.195648634000094,67.98309967700014],[44.213877800000056,67.98895905200008],[44.19581139400022,67.99481842700011],[44.15788821700002,67.98993561400006],[44.1380314460001,67.99510325700005],[44.16228274800019,68.01211172100004],[44.33472741000011,68.05711497600011],[44.41179446700008,68.06342194200015],[44.404958530000066,68.06533437700001],[44.359711134000094,68.07046133000001],[44.307871941000116,68.0658633480001],[44.25660241000016,68.05467357000008],[44.21355228000007,68.03974030200011],[44.18083743600013,68.03607819200006],[44.17042076900023,68.05609772300011],[44.17465254000015,68.08600495000003],[44.18653405000012,68.11180247600005],[44.20362389400023,68.13694896000011],[44.20606530000006,68.1466332050001],[44.2063908210001,68.16331614800013],[44.20834394600015,68.17279694200012],[44.23633873800006,68.23208242400001],[44.24439537900011,68.25568268400015],[44.24317467500006,68.27749258000001],[44.22754967500012,68.29677969000012],[44.160166863000114,68.33624909100011],[43.74293053500017,68.47496165600002],[43.32569420700011,68.613674221],[43.29175866000017,68.63568756699999],[43.27367282200006,68.6581762760001],[43.31715436200008,68.6666115720001],[43.37362434400009,68.66804819700003],[43.47729280200022,68.66906564400004],[43.616709832000055,68.64118073100003],[43.63795006600017,68.63873932500009],[43.6908374650001,68.62439635900013],[43.746996170000074,68.61643086000011],[43.7864689460001,68.60626862200003],[43.802256707000225,68.59780508000007],[43.8221134770001,68.59284088700004],[43.865000847,68.58759186400015],[43.984548373000024,68.55133698100003],[44.23902428500017,68.53717682500012],[44.51026451900006,68.5540225280001],[44.96407438300011,68.55245774100004],[45.306372636000134,68.54529116900004],[45.5821371800001,68.5141984630001],[45.88873845700019,68.45594146700013],[45.94385826900012,68.44623444200006],[45.95085696700019,68.424017645],[45.95630944100011,68.41600169500005],[45.96599368600019,68.39704010600003],[45.971527540000096,68.38922760600006],[45.98145592500012,68.3828799500001],[46.00611412900011,68.3725446640001],[46.01579837300008,68.36505768400002],[46.019867384000094,68.3549258480001],[46.02312259200008,68.3327497420001],[46.02930748800023,68.32404205900004],[46.044688347000175,68.31952545800009],[46.08018907900012,68.31069640599999],[46.16480553500017,68.26911041900014],[46.22239147400015,68.23924269100014],[46.27637780000006,68.21426015800013],[46.29639733200022,68.21039459800011],[46.35157311300023,68.21426015800013],[46.36622155000006,68.21043528900013],[46.3958439460001,68.197211005],[46.42188561300006,68.19135163000014],[46.46168053500017,68.17015208500005],[46.534922722,68.13255442900005],[46.519867384000094,68.12128327000006],[46.48943118600007,68.1146914730001],[46.46143639400023,68.11180247600005],[46.52572675900015,68.11359284100003],[46.54021243600019,68.10838450700014],[46.54753665500019,68.09853750200001],[46.54761803500017,68.09316640800016],[46.544688347000175,68.08771393400004],[46.5432235040001,68.07762278900007],[46.54509524800008,68.04401276200004],[46.54908287900017,68.03070709800004],[46.557627800000056,68.01618073100018],[46.576508009000094,67.99746328300002],[46.59685306100018,67.98773834800006],[46.61768639400006,67.98029205900018],[46.63884524800008,67.96841054900013],[46.64519290500019,67.9603539080001],[46.647471550000056,67.95197174700003],[46.65064537900011,67.94407786700006],[46.65967858200016,67.93740469],[46.678627522000085,67.915126032],[46.70264733200011,67.89166901200008],[46.704356316000116,67.88247304900004],[46.7107853520001,67.87376536700005],[46.7220158210001,67.84491608300011],[46.69825280000012,67.81647370000009],[46.66114342500012,67.80744049700009],[46.572499961000204,67.80957276400012],[46.50847415500007,67.81631094000012],[46.490244988000164,67.81891510600003],[46.443723873000096,67.81787450899998],[46.375432570000065,67.81907548599999],[46.21192467500006,67.80223216399999],[46.004116906000064,67.76774604400005],[45.619008062,67.7455658630001],[45.44856250700016,67.72961901500003],[45.35043379000015,67.73041413000011],[45.3099064460001,67.7127953150001],[45.303070509000094,67.69403717700011],[45.32056725400017,67.68626536700013],[45.33570397200006,67.68797435100014],[45.34669030000012,67.68500397300012],[45.3509220710001,67.663031317],[45.34888756600011,67.65005117400001],[45.33985436300011,67.62653229400014],[45.33790123800023,67.61522044500008],[45.314626498000024,67.59210846600003],[45.2610783210001,67.58490631700009],[45.16586347700016,67.58421458500005],[45.09685306100002,67.56317780200011],[45.02816816500009,67.53192780200004],[44.96664472700016,67.49103424700012],[44.91895592500012,67.44086334800012],[44.92725670700005,67.4223493510001],[44.92269941500015,67.40546295800011],[44.91472415500019,67.38906484600001],[44.91211998800006,67.37197500200007],[44.92457116000011,67.35154856999998],[44.95168721600007,67.3207171100001],[45.05504777900015,67.28379749300008],[45.15856183800016,67.25464434800013],[45.22192549500008,67.23366587000005],[45.309349181000094,67.21162446400002],[45.40941530600011,67.19878471400001],[45.50937247500016,67.18588325900005],[45.59389303300006,67.15823975900004],[45.63835696700019,67.107855536],[45.64649498800023,67.08356354400011],[45.66586347700016,67.06264883000013],[45.784678582000225,66.96800364800005],[45.796641472000175,66.94989655200014],[45.80420983200022,66.91860586100007],[45.8244735040001,66.899074611],[45.85320071700019,66.88703034100008],[45.964366082000055,66.86652252800002],[45.98829186300023,66.85797760600012],[46.01303144600009,66.84015534100006],[46.025157097000175,66.83340078300002],[46.04151451900012,66.83091868700008],[46.30103600400017,66.84015534100006],[46.489024285000106,66.87848541900017],[46.54761803500017,66.87860748900015],[46.57846113400015,66.87287018400015],[46.59791100400017,66.85797760600012],[46.598887566000116,66.83771393400009],[46.57911217500011,66.83270905200006],[46.552744988000114,66.83258698100009],[46.53353925900015,66.82697174700007],[46.50017337300008,66.79621002800012],[46.48129316500015,66.78432851800007],[46.39877363400015,66.75177643400009],[46.37940514400012,66.74811432500003],[46.40674889400006,66.74616120000009],[46.44776451900012,66.75507233300011],[46.489024285000106,66.76902903900009],[46.55152428500017,66.80304596600001],[46.5833439460001,66.81549713700004],[46.827891472,66.84495677300013],[46.92693118600019,66.84495677300013],[46.981944207000055,66.86351146000014],[47.024261915000096,66.85956452000015],[47.40984134200008,66.92926666900003],[47.45769290500007,66.92715078300002],[47.55876712300008,66.90497467700014],[47.575938347,66.89150625200016],[47.571787957000055,66.86420319200006],[47.581390821000156,66.86985911700008],[47.59034264400005,66.87661367400001],[47.60661868600019,66.8921572940001],[47.594981316000116,66.90704987200014],[47.590668165000096,66.919378973],[47.59449303500011,66.93158600500009],[47.60661868600019,66.94611237200003],[47.62354576900012,66.95880768400018],[47.67465254000015,66.9837914080001],[47.69434655000012,66.98834870000006],[47.72559655000006,67.00092194200012],[47.74203535200016,67.03070709800012],[47.748220248000024,67.06574127800003],[47.749766472000175,67.12132396000008],[47.74594160200016,67.13178131700015],[47.735606316000165,67.1454125020001],[47.70191491000017,67.17182038],[47.6946720710001,67.18012116100006],[47.68946373800023,67.1964378930001],[47.69507897200006,67.20473867400007],[47.774261915000096,67.24079010600003],[47.78711998800023,67.25153229400003],[47.79127037900017,67.26203034100011],[47.78760826900011,67.27374909100008],[47.77654056100019,67.29621002800009],[47.77613366000017,67.30125560100012],[47.77654056100019,67.31671784100014],[47.77247155000011,67.33649323100016],[47.770355665000096,67.33783600500006],[47.793142123000024,67.36058177300002],[47.907562696000156,67.40232982000005],[47.9368595710001,67.42340729400014],[47.947927280000016,67.44432200700011],[47.94206790500018,67.46588776200004],[47.92066491000011,67.48867422100015],[47.82471764400023,67.560288804],[47.814626498000074,67.58136627800008],[47.84571373800005,67.60089752800009],[48.00831139400023,67.65058014500009],[48.052256707000055,67.65192291900017],[48.099375847000175,67.63947174700014],[48.08838951900012,67.629339911],[48.07992597700016,67.61766185100011],[48.0744735040001,67.60455963700002],[48.07146243600001,67.59039948100012],[48.09294681100007,67.592230536],[48.11166425900015,67.60272858300004],[48.14747155000006,67.6288923200001],[48.204437696000156,67.65192291900017],[48.21941165500019,67.663031317],[48.255707227000094,67.68268463700014],[48.30689537900017,67.69025299700012],[48.35962975400011,67.6885440120001],[48.44361412900011,67.66868724200002],[48.48650149800008,67.6642927100001],[48.52930748800006,67.66791413000007],[48.656260613000114,67.71222565300003],[48.69996178500017,67.71588776200015],[48.743662957000055,67.7002627620001],[48.732188347,67.70123932500015],[48.721690300000056,67.70075104400016],[48.71159915500019,67.6984723980001],[48.70199629000009,67.69403717700011],[48.92497806100019,67.68768952],[48.99683678500017,67.66673411700005],[48.962168816000116,67.65314362200009],[48.99431399800008,67.642767645],[49.03589928500011,67.63410065300009],[49.07667076900012,67.63157786699999],[49.10670006600017,67.63947174700014],[49.076914910000106,67.650132554],[49.06055748800023,67.65302155200011],[49.044688347,67.65314362200009],[49.04786217500006,67.65717194200006],[49.05583743600002,67.66962311400009],[49.05892988400009,67.67357005400007],[48.97120201900012,67.696722723],[48.94190514400012,67.7002627620001],[48.922048373000194,67.70538971600011],[48.88184655000006,67.728705145],[48.85962975400011,67.73505280200014],[48.80372155000006,67.72687409100001],[48.777842644000174,67.72736237200003],[48.7708439460001,67.74188873900006],[48.781423373000024,67.75446198100006],[48.796397332000055,67.76373932500009],[48.80543053500017,67.77399323100002],[48.79761803500017,67.7896996110001],[48.79363040500018,67.83124420800007],[48.58594811300006,67.93427155200014],[48.62330162900011,67.94379303600012],[48.66928144600009,67.935248114],[48.79607181100002,67.87872955900009],[48.84278405000012,67.86505768400015],[48.97071373800023,67.85077545800004],[49.13331139400012,67.86261627800012],[49.177419467000185,67.87620677300008],[49.31950931100019,67.90021393400012],[49.51075280000006,67.95514557500009],[49.65463300900015,67.98102448100012],[49.79460696700008,68.03668854400003],[49.97266686300023,68.087795315],[50.01783287900011,68.09129466400002],[49.98275800900009,68.06142812700001],[49.88152103000007,68.03961823100013],[49.84652754000015,68.01618073100018],[50.001149936000076,68.05805084800008],[50.048594597000175,68.08820221600011],[50.066091342000014,68.10301341399997],[50.098887566000116,68.12445709800011],[50.20053144600009,68.16889069200012],[50.26587975400011,68.17963288000006],[50.35206139400006,68.20783112200002],[50.43474368600013,68.22052643400009],[50.64177493600019,68.30048248900009],[50.692230665000096,68.33295319200006],[50.72527103000019,68.34381745000015],[50.75993899800008,68.37140534100017],[50.77881920700011,68.37929922100012],[50.79558353000019,68.376898505],[50.847178582000055,68.35138580900009],[50.89576256600011,68.34198639500009],[50.95183353000007,68.34072500200007],[51.05884850400017,68.35138580900009],[51.080902540000096,68.35773346600003],[51.12533613400009,68.3756371110001],[51.14844811300022,68.37929922100012],[51.19662519600009,68.38092682500013],[51.336110873000194,68.40143463700012],[51.42310631600017,68.43085358300011],[51.44613691500015,68.43406810100007],[51.49105879000015,68.42194245000017],[51.51050866000016,68.42226797100001],[51.56885826900006,68.43585846600014],[51.586924675000056,68.44757721600014],[51.573090040000096,68.44757721600014],[51.53239993600018,68.45441315300015],[51.56055748800006,68.48305898600013],[51.60767662900017,68.49213288000011],[51.702972852000094,68.48859284100013],[52.060069207000055,68.54376862200009],[52.1770939460001,68.58242422100012],[52.21705162900011,68.58478424700009],[52.204844597000175,68.5595156920001],[52.18181399800019,68.542425848],[52.12818444100011,68.52334219],[52.05958092500006,68.51561107000002],[52.0462345710001,68.50967031500006],[52.046397332000225,68.5014102230001],[52.05176842500012,68.49241771000005],[52.05941816500009,68.48529694200003],[52.06674238400015,68.482367255],[52.10572350400011,68.48700592700011],[52.17652428500011,68.50397370000007],[52.294281446000156,68.49970123900009],[52.33375084700006,68.49335358300006],[52.36101321700002,68.47492096600003],[52.34156334700006,68.47272370000003],[52.319590691000116,68.47516510600015],[52.29957116000011,68.47402578300002],[52.2864689460001,68.46124909100008],[52.28882897200006,68.45335521000003],[52.297048373000024,68.44623444200006],[52.302256707000225,68.43720123900015],[52.296153191000116,68.424017645],[52.25831139400012,68.40802643400009],[52.15886478000012,68.39862702000006],[52.135590040000096,68.37929922100012],[52.15935306100019,68.371771552],[52.24854576900005,68.31769440300009],[52.2693791020001,68.31509023600002],[52.29175866000017,68.32070547100001],[52.320648634000094,68.3315290390001],[52.34083092500012,68.33608633000013],[52.40202884200002,68.33771393400015],[52.4173283210001,68.34243398600007],[52.448985222000175,68.35594310100005],[52.4778751960001,68.36188385600018],[52.57390384200008,68.40973541900009],[52.60726972700016,68.41901276200015],[52.67741946700019,68.42316315300009],[52.71045983200017,68.44082265800002],[52.725840691000116,68.45807526200012],[52.73129316500015,68.47418854400009],[52.72437584700006,68.48899974200005],[52.70362389400006,68.50287506700015],[52.670746290000146,68.51251862200012],[52.599294467000185,68.52366771000014],[52.56706790500007,68.53701406500015],[52.55958092500006,68.54222239800005],[52.55103600400017,68.54970937700001],[52.54395592500012,68.55853913000006],[52.54102623800006,68.56769440300006],[52.534678582000225,68.57587311400006],[52.491384311000076,68.59153880400011],[52.4998478520001,68.604681708],[52.50001061300017,68.60952383000007],[52.49878991000011,68.61953359600015],[52.60670006600017,68.62571849200009],[52.62387129000009,68.62905508000013],[52.64096113400015,68.63727448100003],[52.64771569100017,68.64793528899999],[52.63445071700008,68.65851471600003],[52.61443118600018,68.65985748900012],[52.56218509200008,68.64915599199999],[52.51563561300023,68.64484284100008],[52.4954533210001,68.640082098],[52.4778751960001,68.63076406500015],[52.446787957000055,68.60272858300014],[52.42945397200017,68.59210846600008],[52.41065514400005,68.58649323100009],[52.29932701900012,68.59052155200006],[52.279063347000175,68.59780508000007],[52.28874759200008,68.615423895],[52.32846113400015,68.63344961100003],[52.37614993600002,68.647406317],[52.452891472000175,68.6581485050001],[52.80648847700016,68.768011786],[52.943695509000094,68.79022858300014],[53.07935631600017,68.83234284100008],[53.16431725400011,68.84601471600003],[53.250010613000114,68.87840403900005],[53.340586785000106,68.89142487200003],[53.43702233200011,68.91815827000012],[53.87859134200002,68.97410716399999],[54.10377037900011,69.00067780200014],[54.29786217500012,69.000474351],[54.34766686300006,69.01227448100015],[54.527354363000114,69.009955145],[54.55591881600017,69.00470612200012],[54.56128991000011,68.99970123900006],[54.55689537900017,68.99286530200006],[54.54802493600019,68.98639557500015],[54.540293816000165,68.98200104400014],[54.52898196700019,68.978461005],[54.5197860040001,68.97882721600008],[54.51059004000015,68.98086172100012],[54.498871290000096,68.98200104400014],[54.42603600400011,68.9767113300001],[54.35596764400006,68.95897044499999],[53.98389733150012,68.9362246765],[53.61182701900006,68.91347890800002],[53.59489993600019,68.90692780200014],[53.61573326900006,68.89581940300012],[53.622813347,68.893255927],[53.62810306100018,68.878607489],[53.66553795700022,68.86627838700004],[53.705414259000094,68.86066315300006],[53.73210696700002,68.86591217700011],[53.72282962300008,68.8728701840001],[53.7127384770001,68.87872955900013],[53.70215905000006,68.88312409100014],[53.69117272200012,68.88580963700004],[53.728037957000055,68.89744700700014],[53.957692905000016,68.87661367400015],[54.001149936000076,68.86684804900001],[54.02621504000015,68.84544505400007],[53.950856967000185,68.81541575700011],[53.92383873800022,68.81126536699999],[53.89926191500015,68.81024811400003],[53.88070722700015,68.80621979400013],[53.865000847000175,68.79791901200015],[53.831553582000105,68.76870351800012],[53.828949415000096,68.763617255],[53.834320509000094,68.75836823100012],[53.841319207000225,68.7424177100001],[53.838063998000194,68.71328359600015],[53.8177189460001,68.68915436400012],[53.787119988000114,68.67279694200012],[53.75261478000019,68.66669342700014],[53.720469597,68.65692780199998],[53.728282097,68.63471100500014],[53.755137566000116,68.61041901200015],[53.79444420700011,68.58661530200006],[53.82081139400012,68.56647370000003],[53.87647545700011,68.53363678600012],[53.88982181100002,68.52334219],[53.90447024800002,68.5073102890001],[53.91504967500006,68.489243882],[53.92115319100017,68.46841054900004],[53.9231876960001,68.44415924700003],[53.92693118600001,68.43256256700012],[53.94190514400005,68.41307200700011],[53.94434655000012,68.40599192900008],[53.93189537900011,68.39101797100012],[53.909190300000056,68.38703034100014],[53.863047722,68.38556549700009],[53.84620201900012,68.37531159100017],[53.82129967500006,68.34967682500009],[53.80372155000006,68.34454987200009],[53.78760826900005,68.34813060100005],[53.73894290500007,68.37588125200013],[53.65593509200008,68.40753815300012],[53.608897332000225,68.41347890800013],[53.5744735040001,68.3998070330001],[53.63168379000015,68.38568756700006],[53.64649498800023,68.37588125200013],[53.65650475400011,68.36587148600013],[53.66635175900015,68.358343817],[53.69117272200012,68.34454987200009],[53.661468946000156,68.33218008000013],[53.62403405000006,68.33685944200006],[53.55396569100017,68.3588320980001],[53.44044030000012,68.37250397300004],[53.420583530000016,68.36937083500014],[53.40544681100002,68.36163971600003],[53.37549889400006,68.34113190300017],[53.36378014400006,68.33991120000015],[53.33871504000015,68.34992096600014],[53.32740319100017,68.35138580900009],[53.319102410000106,68.34804922100007],[53.3001408210001,68.3315290390001],[53.2317814460001,68.29677969000012],[53.210703972000175,68.26935455900009],[53.23894290500007,68.25348541900014],[53.32740319100017,68.24213288],[53.376719597000175,68.243353583],[53.47152754000015,68.26032135600016],[53.80844160200016,68.25067780200011],[53.836110873000074,68.24408600500014],[53.87517337300019,68.22406647300006],[53.892588738000114,68.22166575700011],[53.99252363400015,68.221380927],[54.04135175900015,68.22809479400003],[54.08838951900006,68.24583567900014],[54.15023847700015,68.29901764500012],[54.184906446000156,68.32054271000014],[54.21876061300011,68.31785716400007],[54.18238366000011,68.28143952],[54.17310631600017,68.26178620000003],[54.177093946000156,68.23590729400003],[54.20329837300008,68.20954010600003],[54.239756707000225,68.21133047100001],[54.46509850400011,68.30418528900013],[54.50440514400012,68.31220123900006],[54.53630618600013,68.30581289300015],[54.56332441500015,68.28815338700004],[54.650157097000175,68.19432200700005],[54.69109134200019,68.17597077],[54.73829186300006,68.170396226],[54.8318791020001,68.17328522300012],[54.8470158210001,68.17649974199999],[54.86402428500016,68.18512604400009],[54.87769616000011,68.197211005],[54.88355553500017,68.21112702000006],[54.88982181100018,68.22199127800015],[54.917979363000114,68.24030182500012],[54.92448978000019,68.25267161700005],[54.917165561000076,68.282660223],[54.89909915500007,68.29523346600008],[54.87671959700006,68.30438873900009],[54.85613040500019,68.32404205900004],[54.89519290500007,68.32379791900009],[54.9080509770001,68.32949453300007],[54.90398196700002,68.34454987200009],[54.9178166020001,68.37494538000006],[54.92448978000019,68.38556549700009],[54.936696811000076,68.3984235700001],[54.99675540500007,68.439154364],[55.01441491000017,68.44277578300016],[55.0540470710001,68.44082265800002],[55.067556186000076,68.44619375200007],[55.094493035000106,68.47256094000006],[55.109385613000114,68.482367255],[55.189463738000164,68.49103424700009],[55.20915774800019,68.49909088700012],[55.212575717000185,68.50458405200006],[55.21436608200011,68.5147972680001],[55.21924889400006,68.51959870000017],[55.22925866000017,68.52435944200006],[55.39291425900009,68.56427643400004],[55.4935001960001,68.57428620000003],[55.602386915000096,68.56976959800006],[55.699554884000094,68.5765648460001],[55.78663170700016,68.594671942],[55.952647332000225,68.65399811400006],[55.99708092500006,68.66046784100017],[56.04908287900011,68.65412018400004],[56.149587436000076,68.62592194200006],[56.20199629000015,68.61953359600015],[56.50440514400006,68.62783437700013],[56.520843946000156,68.61908600500004],[56.493500196000156,68.58478424700009],[56.51002037900017,68.59577057500015],[56.56934655000012,68.63568756699999],[56.59636478000007,68.64199453300013],[56.62964928500016,68.64203522300012],[56.66309655000012,68.63764069200006],[56.690684441000116,68.63076406500015],[56.84839928500011,68.57160065300003],[57.09245853000007,68.548000393],[57.329844597,68.56476471600003],[57.384287957000225,68.57855866100012],[57.41407311300022,68.59715403900012],[57.448090040000146,68.64447663000009],[57.473643425000056,68.66364166900006],[57.53663170700005,68.68829987200003],[57.556162957000225,68.701402085],[57.58741295700011,68.73387278899999],[57.60401451900006,68.7424177100001],[57.92953535200016,68.75104401200012],[57.98072350400011,68.79364655200006],[57.974619988000114,68.80166250200001],[57.961924675000056,68.80866120000017],[57.949880405000016,68.81757233300011],[57.945974155,68.83120351800005],[57.95671634200008,68.84552643400006],[57.977875196000156,68.85297272300012],[58.171153191000116,68.88934967700003],[58.2205509770001,68.893255927],[58.24512780000012,68.88841380400011],[58.24219811300006,68.87702057500013],[58.21338951900006,68.85228099199999],[58.202891472000175,68.83820221600014],[58.20362389400011,68.83209870000015],[58.2127384770001,68.82746002800003],[58.22771243600002,68.81753164300012],[58.25114993600018,68.79222239799999],[58.26417076900011,68.78119538000014],[58.27833092500012,68.77655670800002],[58.328868035000106,68.77041250200011],[58.37794030000006,68.75604889500006],[58.336924675000056,68.73558177299999],[58.396006707000105,68.73517487200009],[58.42408287900011,68.74274323100003],[58.43930097700016,68.76288483300009],[58.4201766290001,68.767035223],[58.38412519600015,68.77997467700011],[58.36426842500012,68.78400299700009],[58.322032097,68.78424713700004],[58.30290774800002,68.78807200700004],[58.28541100400017,68.80048248900006],[58.28223717500011,68.80646393400008],[58.28370201900005,68.81110260600012],[58.28687584700007,68.81561920800006],[58.288584832000225,68.82123444200006],[58.28687584700007,68.82465241100007],[58.278656446000156,68.82709381700003],[58.27556399800008,68.83120351800005],[58.269297722,68.83510976800007],[58.25945071700019,68.83808014500005],[58.254079623000024,68.84202708500005],[58.261566602000094,68.84886302299999],[58.26783287900017,68.8526065120001],[58.27133222700016,68.85590241100014],[58.27344811300023,68.86001211100009],[58.27556399800008,68.86591217700011],[58.2756453790001,68.87799713700004],[58.27125084700006,68.88629791900011],[58.27051842500012,68.893703518],[58.28199303500016,68.9032250020001],[58.30079186300023,68.90985748900006],[58.58977298250008,68.95648834850012],[58.87875410200016,69.00311920800007],[59.20289147200006,69.00360748900006],[59.223887566000116,68.99970123900006],[59.241953972,68.98883698100018],[59.21753991000017,68.98273346600008],[59.167002800000056,68.98867422100002],[59.14551842500011,68.98541901200015],[59.12517337300003,68.97943756700006],[58.96998131600018,68.96515534100014],[58.92416425900015,68.95368073100012],[58.891856316000116,68.93423086100002],[58.96599368600019,68.930812893],[59.105479363000114,68.90330638200008],[59.41553795700022,68.7666690120001],[59.42302493600018,68.75702545800011],[59.419444207000225,68.71849192900005],[59.39844811300011,68.70111725500006],[59.3509220710001,68.70180898600002],[59.26929772200017,68.71507396000013],[59.23487389400005,68.71295807500003],[59.201508009000094,68.70595937700013],[59.1712345710001,68.6932640650001],[59.14576256600017,68.67413971600011],[59.12769616000016,68.649562893],[59.11841881600011,68.64248281500012],[59.10271243600001,68.63641998900015],[59.07056725400017,68.62811920800006],[59.05640709700007,68.61953359600015],[59.06137129000009,68.61066315300009],[59.06348717500012,68.60187409100003],[59.063812696000156,68.58169179900001],[59.06950931100001,68.56928131700008],[59.082855665000146,68.561021226],[59.09880618600007,68.55361562700001],[59.111582879000174,68.54376862200009],[59.118825717000185,68.53168366100009],[59.115407748000194,68.52533600500004],[59.104746941000165,68.51797109600014],[59.09050540500008,68.50287506700015],[59.07837975400017,68.48167552300005],[59.072113477000094,68.45937734600001],[59.07422936300022,68.43720123900015],[59.087087436000076,68.41689687700013],[59.109548373000074,68.40473053600006],[59.39218183650009,68.37044912300009],[59.67481530000006,68.33616771000011],[59.85743248800005,68.38129303600009],[59.89918053500011,68.40599192900008],[59.96387780000007,68.46600983300009],[59.963633660000106,68.47142161700013],[59.95777428500016,68.47687409100014],[59.94678795700011,68.51764557500003],[59.929047071000106,68.53778717700006],[59.87012780000007,68.58356354400017],[59.82422936300018,68.60871002800015],[59.789724155000066,68.61863841400005],[59.772471550000056,68.62616608300011],[59.76270592500011,68.63873932500009],[59.77361087300008,68.66819896],[59.81120853000019,68.68793366100012],[59.910980665000096,68.72028229400001],[59.93474368600019,68.72077057500003],[60.032074415000146,68.69399648600002],[60.08423912900011,68.687201239],[60.466644727000094,68.72231679900005],[60.55632571700002,68.74469635600018],[60.70150800900015,68.81500885600012],[60.71827233200016,68.82807038],[60.75521894600009,68.86640045800011],[60.76978600400011,68.87588125200004],[60.81885826900006,68.89435455900006],[60.86638431100019,68.90350983300011],[60.968760613000114,68.90692780200014],[60.952403191000165,68.91160716400003],[60.936289910000106,68.91388580900004],[60.920909050000056,68.91779205900004],[60.90723717500011,68.92739492400001],[60.92481530000006,68.94403717700004],[60.938324415000146,68.96328359600001],[60.94654381600006,68.98346588700004],[60.94825280000006,69.00311920800007],[60.94548587300008,69.012152411],[60.935883009000094,69.03046295800006],[60.93392988400015,69.0406761740001],[60.93490644600009,69.06940338700004],[60.93392988400015,69.07819245000009],[60.902679884000094,69.122259833],[60.84376061300011,69.15753815300003],[60.776703321000156,69.177191473],[60.72169030000006,69.174465236],[60.72722415500019,69.16425202000009],[60.72885175900009,69.15355052300008],[60.72722415500019,69.14288971600003],[60.72169030000006,69.13279857000008],[60.72673587300019,69.12970612200009],[60.73633873800005,69.12189362200009],[60.74219811300022,69.11920807500012],[60.71094811300023,69.10626862200012],[60.665782097,69.10643138200008],[60.62110436300022,69.11640045800004],[60.591319207000225,69.13279857000008],[60.58228600400011,69.14964427300008],[60.583262566000116,69.16665273600012],[60.58822675900014,69.18471914300014],[60.593272332000105,69.24103424700003],[60.5896916020001,69.25641510600015],[60.577647332000105,69.27680084800012],[60.56283613400016,69.29523346600017],[60.54249108200022,69.31557851800007],[60.51921634200002,69.33209870000006],[60.48275800900014,69.34198639500005],[60.44564863400015,69.35854726800012],[60.43433678500017,69.36619700700005],[60.4318953790001,69.37299225500009],[60.43067467500013,69.39297109600015],[60.42676842500012,69.40033600500006],[60.41423587300013,69.407904364],[60.32447350400011,69.44660065300006],[60.31137129000009,69.45433177300005],[60.26295006600011,69.49921295800006],[60.22055097700016,69.5250511740001],[60.214610222,69.5307070980001],[60.21452884200002,69.53668854400009],[60.21941165500018,69.54230377800009],[60.2220158210001,69.54808177300005],[60.214854363000164,69.55459219000015],[60.195648634000094,69.5612653670001],[60.157725457000105,69.56964752800015],[60.13884524800009,69.57786692900008],[60.155772332000225,69.60126373900006],[60.15870201900005,69.61367422100007],[60.15259850400016,69.62628815300015],[60.18555748800022,69.65045807500015],[60.232595248000074,69.66478099200003],[60.653575066000116,69.67275625200001],[60.66732832100015,69.67816803600006],[60.66700280000011,69.69452545800006],[60.655284050000056,69.70677317900014],[60.63990319100011,69.71637604400011],[60.63347415500019,69.72492096600003],[60.64795983200022,69.73419830900009],[60.66781660200015,69.73460520999998],[60.689626498000194,69.72980377800009],[60.70883222700016,69.72939687700001],[60.72169030000006,69.74298737200014],[60.70329837300014,69.74896881700006],[60.68995201900012,69.76398346600008],[60.68409264400006,69.783880927],[60.687510613000065,69.80438873900015],[60.70557701900012,69.8236758480001],[60.736013217000085,69.83905670800011],[60.77027428500011,69.84910716400002],[60.92660566500015,69.86749909100006],[60.97022545700022,69.86127350500009],[61.02466881600006,69.84634023600013],[61.043793165000096,69.84540436400005],[61.05836022200007,69.84935130400014],[61.0906681650001,69.86408112200003],[61.105235222,69.86587148600002],[61.115977410000106,69.86131419500008],[61.130056186000076,69.845648505],[61.13941491000011,69.83856842700014],[61.15870201900005,69.83291250200013],[61.30193118600019,69.82542552299999],[61.33676191500009,69.8158633480001],[61.37240644600009,69.80101146000011],[61.40935306100002,69.791245835],[61.77051842500006,69.76203034100014],[62.161143425000056,69.74616120000003],[62.63119550900014,69.74213288000006],[62.922658725000105,69.71259186399999],[63.21412194100017,69.68305084800012],[63.410492384000094,69.67129140800013],[63.57943769600009,69.63865794500002],[63.82325280000011,69.59162018400018],[64.12761478000006,69.55011627800009],[64.37891686300011,69.48432038000011],[64.54802493600008,69.45172760600013],[64.7244572270001,69.383286851],[64.91407311300023,69.33698151200012],[65.00440514400006,69.304144598],[64.98894290500002,69.29010651200015],[64.96241295700004,69.2831078150001],[64.93327884200019,69.28148021000005],[64.90886478000007,69.28367747600005],[64.85580488400015,69.29539622600014],[64.83106530000006,69.29441966400006],[64.83375084700006,69.27680084800012],[64.8128361340001,69.26626211100007],[64.79265384200008,69.252386786],[64.7859806650001,69.23720937700001],[64.80640709700018,69.22215403899999],[64.78467858200011,69.20404694200009],[64.76563561300011,69.18309153900013],[64.76172936300011,69.16299062700007],[64.78589928500011,69.14712148600013],[64.80941816500015,69.14671458500005],[64.83228600400017,69.155951239],[64.87476647200006,69.180609442],[64.91211998800011,69.18988678600006],[64.93181399800002,69.19708893400009],[64.94288170700011,69.20856354400003],[64.94109134200019,69.21995677299999],[64.93165123800006,69.22996653899999],[64.9212345710001,69.23777903899999],[64.91627037900011,69.24266185100005],[64.92318769600016,69.26068756700006],[64.94109134200019,69.2679710960001],[65.02955162900011,69.27187734600007],[65.0682072270001,69.26805247600008],[65.41944420700011,69.17706940300003],[65.81723066500015,69.14264557500009],[65.86491946700019,69.13251373900012],[65.90259850400015,69.11298248900006],[65.88298587300014,69.10578034100003],[65.75367272200005,69.10663483300011],[65.73422285200014,69.11269765800002],[65.74488366000017,69.126654364],[65.72706139400012,69.12653229400003],[65.69385826900012,69.12030670800006],[65.6766056650001,69.11920807500012],[65.66521243600012,69.12238190300017],[65.65552819100017,69.12775299700003],[65.64616946700002,69.13060130400008],[65.63502037900011,69.126654364],[65.67497806100008,69.09284088700012],[65.68970787900017,69.08502838700012],[65.7161564460001,69.0797793640001],[65.77344811300006,69.07819245000009],[65.85059655000012,69.06427643400004],[65.95386803500011,69.05809153900005],[66.03142337300007,69.04376862200017],[66.08716881600017,69.04181549700003],[66.11426842500012,69.03725820500007],[66.17530358200005,69.01422760600009],[66.23373457100016,69.00128815300008],[66.32878665500007,68.96381256700006],[66.37548950332044,68.95474049814776],[66.37549889400006,68.95473867400007],[66.6784774100001,68.8959414730001],[66.99057050900008,68.87628815300003],[67.09009850400017,68.85565827],[67.12907962300002,68.83860911700005],[67.07211347700009,68.82868073100006],[67.04615319100006,68.81830475500006],[67.039724155,68.79706452000006],[67.05551191500015,68.78143952000009],[67.14332116000017,68.75604889500006],[67.16228274800008,68.739447333],[67.17823326900006,68.7216250670001],[67.19629967500006,68.70734284100003],[67.22120201900012,68.701402085],[67.29281660200016,68.70164622600005],[67.33033287900017,68.69676341399999],[67.358653191,68.68406810100011],[67.38103274800002,68.67031484600001],[67.58350670700005,68.60333893400009],[67.80811608200011,68.50287506700015],[67.70508873800023,68.51585521000014],[67.79322350400015,68.47858307500015],[67.81836998800023,68.47186920800011],[67.87712649800002,68.47361888200011],[67.90463300900015,68.47036367400007],[68.06153405000006,68.43183014500009],[68.11255944100004,68.42772044500005],[68.13493899800008,68.42340729400003],[68.15015709700006,68.41299062700013],[68.16285241000011,68.40033600500009],[68.17741946700002,68.38922760600006],[68.24634850400015,68.35512929900013],[68.25863691500015,68.33388906500015],[68.20313561300006,68.29474518400012],[68.20533287900017,68.26947663000006],[68.19800866000017,68.2631696640001],[68.192637566,68.25625234600004],[68.18425540500007,68.24213288],[68.23568769600016,68.24909088700018],[68.26254316500014,68.24909088700018],[68.28044681100019,68.23590729400003],[68.28223717500006,68.22418854400006],[68.2780867850001,68.21344635600003],[68.27003014400012,68.20538971600008],[68.25993899800001,68.20115794500006],[68.28809655000012,68.18829987200014],[68.32056725400011,68.19741445500013],[68.38282311300011,68.22846100500006],[68.4480900400001,68.23798248900015],[68.48064212300008,68.24949778899999],[68.48585045700017,68.26947663000006],[68.5478621750001,68.30418528900013],[68.55795332100016,68.3059756530001],[68.59571373800021,68.31785716400007],[68.609141472,68.3189964860001],[68.65088951900006,68.31785716400007],[68.62305748800011,68.32404205900004],[68.58936608200011,68.33234284100011],[68.5647892590001,68.34979889500005],[68.56104576900006,68.37250397300004],[68.57032311300011,68.3828799500001],[68.61557050900015,68.40599192900008],[68.64014733200023,68.42475006700012],[68.66049238400015,68.44415924700003],[68.69060306100008,68.46702708500013],[68.76002037900011,68.504380601],[68.92351321700008,68.63727448100003],[68.93848717500012,68.65668366100006],[68.94459069100017,68.67755768400012],[68.95215905000006,68.69440338700012],[68.98536217500006,68.72736237200009],[68.99293053500011,68.7455508480001],[69.00977623800011,68.76658763200011],[69.01238040500017,68.77260976800012],[69.01042728000007,68.77680084800015],[69.00733483200005,68.78021881700006],[69.00660241000011,68.78400299700009],[69.01295006600017,68.80646393400008],[69.0197046230002,68.81439850500006],[69.0693465500001,68.82306549700014],[69.08562259200008,68.83738841400012],[69.09473717500006,68.85712311400006],[69.10906009200002,68.8789737000001],[68.99976647199999,68.8789737000001],[68.9617619150001,68.88580963700004],[68.94605553500017,68.893255927],[68.95142662900011,68.9032250020001],[68.99398847700016,68.91535065300008],[69.08757571700019,68.9164492860001],[69.1307072270001,68.92739492400001],[69.06128991000016,68.92739492400001],[69.097422722,68.94106679900013],[69.17994225400011,68.95209381700009],[69.2189233730002,68.96214427300005],[69.01286868600019,68.94790273600016],[69.02711022200018,68.96214427300005],[68.99878991000017,68.96491120000003],[68.91325931100008,68.95404694200012],[68.78842207100016,68.91567617400001],[68.68604576900012,68.91844310100008],[68.48715254000015,68.970160223],[68.45801842500012,68.98456452000006],[68.43775475400017,69.0034040390001],[68.39991295700023,69.04718659100008],[68.37566165500007,69.06769440300003],[68.1253361340001,69.22235748900015],[68.05974368600008,69.27753327000006],[68.0262150400001,69.31940338700018],[68.0197860040001,69.33515045800014],[68.03972415500019,69.35944245000012],[68.07846113400015,69.37824127800015],[68.10499108200011,69.39704010600012],[68.08790123800023,69.420843817],[68.09546959700012,69.42829010600018],[68.0881453790001,69.44179922100014],[68.0906681650001,69.45465729400009],[68.09742272200005,69.467962958],[68.10222415500002,69.48224518400008],[68.10230553500011,69.49603912999999],[68.09685306100019,69.515082098],[68.09546959700012,69.52700429900013],[68.09913170700023,69.53473541900014],[68.10547936300006,69.54262929900004],[68.10661868600013,69.548732815],[68.0950626960001,69.55117422100012],[68.06177819100012,69.55369700700005],[68.04558353000006,69.55109284100014],[68.0306095710001,69.54059479400009],[68.01433353000019,69.52167389500005],[68.01400800900015,69.51422760600009],[68.02442467500006,69.50731028900002],[68.04021243600019,69.48969147300006],[67.96908613400015,69.49127838700008],[67.82439212300002,69.51072825700003],[67.68336022200018,69.56028880400012],[67.62907962300002,69.59076569200009],[67.56023196700008,69.59918854400003],[67.4588322270001,69.62714264500006],[67.31495201900012,69.6303571640001],[67.10181725400017,69.69277578300007],[67.01726321700014,69.70307038],[66.97136478000007,69.68773021000014],[66.98121178500017,69.68561432500003],[66.99244225400017,69.68081289300012],[67.00163821700002,69.67365143400009],[67.00554446700002,69.66445547100012],[66.99968509200019,69.65322500200013],[66.98601321700008,69.648138739],[66.93409264400006,69.64012278900007],[66.86866295700011,69.63983795800011],[66.855235222,69.63686758000001],[66.86817467500012,69.612738348],[66.95769290500019,69.53685130400005],[66.92888431100008,69.52757396000003],[66.8868921230002,69.53725820500007],[66.81373131600006,69.5716820330001],[66.7957462900001,69.58616771000005],[66.78679446700008,69.60285065300009],[66.78435306100002,69.62274811400009],[66.78581790500019,69.64671458500013],[66.7942814460001,69.68813711100012],[66.79517662900011,69.71137116100006],[66.78638756600004,69.725572007],[66.77100670700011,69.740668036],[66.768809441,69.76162344000012],[66.77613366000011,69.78335195500001],[66.7996525400001,69.81574127800012],[66.87419681100002,69.99591705900012],[66.88477623800006,70.012884833],[66.90308678500011,70.03034088700015],[66.92058353000019,70.04242584800006],[66.93816165500002,70.05097077000009],[66.95704186300016,70.05605703300002],[66.97820071700008,70.05760325700005],[66.9871525400001,70.05434804900001],[66.99773196700002,70.03733958500014],[67.00554446700002,70.03034088700015],[66.98121178500017,70.01601797100007],[66.9705509770001,70.00800202000012],[66.96509850400011,69.99624258000013],[66.98503665500017,69.96954987200003],[67.00407962300008,69.96320221600008],[67.0202742850001,69.96458567900008],[67.05396569100006,69.97573476800008],[67.14332116000017,69.98314036699999],[67.197032097,69.99579498900015],[67.25171959700018,70.02122630400005],[67.29835045700005,70.05849844000011],[67.3276473320001,70.10602448100003],[67.30990644600008,70.104925848],[67.29737389400012,70.09926992400001],[67.28785241000011,70.09699127800003],[67.2791447270001,70.10602448100003],[67.27808678500017,70.113959052],[67.28093509200019,70.12164948100003],[67.28467858200023,70.12929922100015],[67.28663170700011,70.13715241100012],[67.28598066500015,70.15387604400014],[67.28207441500015,70.1730817730001],[67.27173912900011,70.18886953300007],[67.2519637380001,70.19546133000013],[67.24740644600016,70.18500397300006],[67.25904381600017,70.163275458],[67.264903191,70.14508698100009],[67.24350019600016,70.14524974200008],[67.16456139400006,70.172308661],[67.12549889400006,70.200384833],[67.10523522200016,70.20937734600004],[67.09424889400012,70.22089264500006],[67.10181725400017,70.24384186400015],[67.11605879000014,70.26032135600003],[67.15056399800008,70.28742096600014],[67.16382897200012,70.30467357000008],[67.1932072270001,70.38157786700006],[67.21924889400006,70.40932851800015],[67.26628665500019,70.41453685100005],[67.25261478000007,70.43406810100011],[67.25505618600019,70.456244208],[67.26978600400017,70.47308991099999],[67.29281660200016,70.47662995000017],[67.27654056100013,70.4811872420001],[67.22494550900015,70.50702545800014],[67.2150985040001,70.52391185100014],[67.22055097700016,70.54751211100006],[67.27662194100012,70.65961334800012],[67.28980553500016,70.67804596600014],[67.32699629000015,70.71694570500016],[67.33643639400006,70.73550039300007],[67.33448326900012,70.7577985700001],[67.31788170700023,70.78408437700001],[67.2900496750001,70.80805084800006],[67.25700931100002,70.82558828300002],[67.13843834700018,70.84178294500008],[67.10922285200016,70.83974844000012],[67.04037519600016,70.81574127800009],[66.79639733200023,70.79132721600014],[66.719981316,70.76959870000017],[66.68873131600006,70.76984284100003],[66.667735222,70.82794830900015],[66.64869225400011,70.84442780200006],[66.626231316,70.85936107000002],[66.6082462900001,70.88068268400013],[66.6252547540001,70.89838288000006],[66.65023847700016,70.91071198100012],[66.75098717500006,70.94721100500006],[66.77133222700016,70.9596214860001],[66.82341556100019,71.00063711100002],[66.83318118600002,71.01308828300002],[66.84107506600012,71.03156159100014],[66.83936608200011,71.03851959800012],[66.8328556650001,71.04140859600007],[66.83057701900012,71.04633209800012],[66.84107506600012,71.0594750020001],[66.85157311300006,71.06565989800005],[66.87745201900006,71.07233307500012],[66.88949629000008,71.07868073100003],[66.87061608200015,71.09125397300012],[66.84506269600016,71.09955475500011],[66.81950931100019,71.10097890800007],[66.80005944100017,71.09296295800014],[66.8055119150001,71.07518138200005],[66.78565514400012,71.0671247420001],[66.75749759200002,71.06171295800006],[66.73796634200008,71.0519880230001],[66.76270592500012,71.02903880400014],[66.7722274100001,71.02411530200008],[66.73991946700019,71.00702545800011],[66.6902775400001,71.00136953300013],[66.6427514980002,71.0088565120001],[66.61573326900006,71.03156159100014],[66.62045332100016,71.05784739800008],[66.64551842500006,71.079779364],[66.81128991000016,71.16120026200004],[66.82740319100017,71.18545156500012],[66.8323673840001,71.20648834800006],[66.84506269600016,71.22614166900001],[66.90040123800006,71.28558991100006],[66.91211998800023,71.29474518400004],[66.927012566,71.29840729400009],[67.03345787900017,71.29840729400009],[67.16960696700008,71.33364492400013],[67.30925540500006,71.35122304900007],[67.49390709699999,71.40326569200012],[67.58838951900006,71.41510651200018],[67.5859481130001,71.43162669500008],[67.60499108200011,71.44196198100015],[67.67945397200018,71.45160553600014],[67.74057050900015,71.46800364800005],[67.84685306100002,71.51093170800003],[67.87574303500017,71.517523505],[67.92676842500005,71.52155182500015],[67.94727623800011,71.52757396000005],[68.01124108200011,71.57160065300013],[68.25505618600008,71.68829987200014],[68.30543053500011,71.69611237200014],[68.34880618600008,71.6751976580001],[68.33513431100002,71.6864281270001],[68.32048587300012,71.69525788000006],[68.30974368600019,71.70441315300003],[68.30779056100008,71.71674225500009],[68.31609134200002,71.7262230490001],[68.44581139400012,71.81659577000006],[68.46851647200018,71.82599518400008],[68.47885175900008,71.83616771000014],[68.5021264980002,71.88495514500013],[68.51319420700023,71.90167877800017],[68.52898196700008,71.91054922100012],[68.54444420700011,71.91571686400012],[68.55632571700008,71.9232852230001],[68.56104576900006,71.93927643400016],[68.56104576900006,71.97626373900012],[68.58073978000019,71.99774811400015],[68.64372806100013,72.03318919500005],[68.65707441500015,72.05565013200004],[68.65577233200023,72.0848656270001],[68.65707441500015,72.09349192899998],[68.66277103000013,72.103461005],[68.66944420700005,72.110296942],[68.67514082100014,72.118109442],[68.67774498800023,72.131089585],[68.68458092500006,72.15184153899999],[68.73292076900006,72.20962148600002],[68.74431399800002,72.249457098],[68.75391686300011,72.26715729400009],[68.7737736340001,72.27789948100012],[68.7679142590001,72.29287344000015],[68.782481316,72.30703359600007],[68.82162519600016,72.32632070500001],[68.816172722,72.33828359600012],[68.81714928500017,72.35065338700016],[68.82203209700006,72.36277903899997],[68.82911217500012,72.37409088700015],[68.82496178500017,72.38825104400016],[68.83082116000011,72.40460846600008],[68.84961998800006,72.43618398600007],[68.85084069100017,72.44367096600014],[68.8494572270001,72.45970286700005],[68.85230553500017,72.46686432500009],[68.86605879000015,72.47577545800011],[68.90088951900012,72.47907135600013],[68.917246941,72.48395416900001],[68.88575280000012,72.50633372600005],[68.8724064460001,72.5187035180001],[68.86939537900011,72.53237539300012],[68.8802189460001,72.54376862200009],[68.8987736340001,72.55345286700005],[68.91635175900015,72.56537506700009],[68.93043053500017,72.59804922100012],[68.958750847,72.622748114],[68.96501712300008,72.63849518400015],[68.97681725400011,72.6557070980001],[69.00391686300017,72.65973541900014],[69.03394616000011,72.65900299700003],[69.05445397200018,72.66205475500011],[69.03272545700011,72.66974518400004],[68.99341881600017,72.67519765800007],[68.97559655000012,72.6862246770001],[68.97575931100019,72.69599030200006],[68.9891056650001,72.70587799700016],[69.18531334700018,72.778753973],[69.2317814460001,72.80451080900002],[69.27662194100006,72.84076569200006],[69.3050236340001,72.883693752],[69.30201256600016,72.92963288],[69.3537703790001,72.95258209800005],[69.40845787900011,72.96735260600013],[69.46534264400005,72.97516510600013],[69.77393639400006,72.97329336100007],[69.79493248800011,72.96369049700012],[69.79810631600016,72.94367096600006],[69.77393639400006,72.93598053600012],[69.57227623800023,72.92007070500001],[69.55665123800023,72.91376373900006],[69.55128014400012,72.903265692],[69.56153405000012,72.88861725500009],[69.58822675900015,72.87848541900003],[69.88754316500014,72.88149648600005],[70.17212975400011,72.90013255400011],[70.65544681100008,72.88934967700011],[71.03296959700018,72.90680573100013],[71.2674259770001,72.895493882],[71.35173587300014,72.90949127800015],[71.4495548840001,72.908433335],[71.52979576900012,72.91681549700014],[71.55583743600019,72.908433335],[71.56324303500017,72.91596100500006],[71.67448978000002,72.88544342700011],[71.9832462900001,72.84808991100006],[72.00831139400006,72.83397044500013],[71.98462975400015,72.83185455900012],[71.9378361340001,72.821966864],[71.91325931100006,72.819769598],[71.8634546230002,72.82168203300006],[71.83855228000007,72.819769598],[71.81657962300002,72.81232330900004],[71.85075931100002,72.81273021000014],[71.86963951900006,72.81000397300006],[71.87794030000006,72.80231354400014],[71.88648522200018,72.79661692900008],[72.13103274800007,72.83161041900017],[72.29737389400006,72.79425690300012],[72.4961043630001,72.78766510600003],[72.6614689460001,72.74013906500012],[72.83692467500012,72.70990631700012],[72.72144616000011,72.70302969000012],[72.7371525400001,72.68048737200014],[72.74195397200016,72.67572663000006],[72.75847415500006,72.67206452],[72.78191165500007,72.66998932500017],[72.80225670700021,72.66567617400005],[72.80958092500006,72.655218817],[72.79200280000012,72.64345937700001],[72.75847415500006,72.63178131700012],[72.73072350400011,72.61737702000015],[72.73145592500012,72.5972354190001],[72.76286868600008,72.55902741100006],[72.78150475400011,72.54401276200004],[72.84498131600006,72.5204125020001],[72.84669030000006,72.51235586100016],[72.82732181100002,72.50128815300012],[72.79932701900012,72.48053620000003],[72.79542076900012,72.465521552],[72.79851321700019,72.41327545799999],[72.80274498800011,72.39516836100006],[72.82984459700006,72.35008372600011],[72.85035241000011,72.32412344000004],[72.86833743600008,72.31264883000007],[72.883962436,72.30719635600003],[72.8831486340001,72.294867255],[72.87427819100017,72.28107330900016],[72.86491946700002,72.27167389500006],[72.8478296230002,72.2616234400001],[72.8076278000001,72.245550848],[72.76441491000011,72.22247955900004],[72.74268639400012,72.20604075700005],[72.72730553500017,72.185492255],[72.72144616000011,72.15867747600011],[72.72413170700011,72.133246161],[72.72055097700016,72.12592194200009],[72.70777428500011,72.11395905200006],[72.69044030000012,72.10252513199998],[72.59636478000017,72.06338125200016],[72.57699629000015,72.04450104400003],[72.56674238400015,72.02317942900005],[72.55974368600008,71.97870514500006],[72.54948978000002,71.95709870000015],[72.53589928500017,71.93768952000015],[72.52222741000011,71.92226797100001],[72.48454837300008,71.89809804900001],[72.39527428500011,71.87889232000005],[72.35084069099999,71.86420319200006],[72.3201603520001,71.82318756700015],[72.33952884200002,71.77741120000003],[72.36304772200018,71.73607005400011],[72.34498131600017,71.70815664300007],[72.26042728000002,71.69476959800006],[72.23389733200005,71.68537018400004],[72.22820071700019,71.67829010600018],[72.2264103520001,71.66738515800002],[72.22730553500011,71.64447663],[72.20932050900015,71.61473216399999],[72.1673283210001,71.59886302300005],[72.02865644600016,71.57217031500011],[72.01498457100008,71.57282135600009],[71.9851994150001,71.57908763200012],[71.97413170700011,71.57953522300012],[71.95899498800011,71.57465241100006],[71.92465254000015,71.55866120000015],[71.83814537900017,71.53241608300014],[71.81324303500011,71.51251862200006],[71.80339603000019,71.48029205900009],[71.8138126960001,71.453558661],[71.83912194100006,71.43121979400014],[71.87077884200019,71.41400788000014],[71.91195722700016,71.39704010600015],[72.10572350400011,71.29035065300015],[72.56999759200019,71.160589911],[72.63648522200012,71.13165924700009],[72.6707462900001,71.10895416900003],[72.67644290500007,71.08954498900012],[72.63355553500017,71.05247630400011],[72.62289472700016,71.0329450540001],[72.632090691,71.01105377800008],[72.64820397200016,70.99957916900014],[72.68653405000012,70.98468659100008],[72.7039494150001,70.97260163],[72.70866946700019,70.96588776200004],[72.70923912900017,70.96067942900005],[72.70915774800008,70.95636627800013],[72.7107853520001,70.95270416900009],[72.71802819100006,70.94757721600007],[72.73178144600016,70.94269440300012],[72.7684025400001,70.919867255],[72.80144290500002,70.90534088700015],[72.827403191,70.88764069200006],[72.83692467500012,70.85960521000014],[72.83228600400011,70.83722565300003],[72.82203209700006,70.81366608300009],[72.808360222,70.79165273600007],[72.79249108200011,70.77391185100008],[72.78126061300011,70.756496486],[72.77955162900011,70.73761627800017],[72.78003991000017,70.717230536],[72.77540123800006,70.69513580900009],[72.75489342500012,70.677476304],[72.68824303500011,70.63442617400015],[72.68327884200008,70.61660390800007],[72.6849064460001,70.61261627800009],[72.68580162900011,70.60716380400005],[72.6878361340001,70.60040924700003],[72.6935327480002,70.592718817],[72.70093834700018,70.58685944200006],[72.7073673840001,70.58417389500009],[72.71404056100008,70.58234284100011],[72.72144616000011,70.57904694200006],[72.75098717500012,70.5619977890001],[72.76587975400017,70.55072663000011],[72.77540123800006,70.53807200700005],[72.77613366000017,70.51422760600015],[72.75847415500006,70.47231679900007],[72.7713322270001,70.42523834800006],[72.73910566500015,70.41181061400006],[72.65398196700008,70.39911530200011],[72.61247806100008,70.38434479400003],[72.45948326900006,70.30442942900011],[72.4355574880001,70.28587474200009],[72.43409264400006,70.26569245000009],[72.46697024800002,70.24017975499999],[72.59913170700023,70.19330475500014],[72.62159264400005,70.16168854400014],[72.61198978000007,70.14476146000008],[72.57740319100017,70.11286041900014],[72.5760197270001,70.10907623900012],[72.57642662900011,70.09992096600014],[72.57374108200023,70.09552643400015],[72.56666100400015,70.09113190300009],[72.54273522200012,70.08218008000016],[72.51384524800008,70.066880601],[72.50171959700018,70.0582542990001],[72.49122155000012,70.04775625200004],[72.49195397200006,70.04120514500012],[72.50025475400011,70.033677476],[72.51880944100006,70.02045319200015],[72.52214603000007,70.01239655200003],[72.52173912900017,69.99396393400015],[72.52523847700014,69.98627350500006],[72.5470483730002,69.96849192900008],[72.61841881600017,69.92792389500006],[72.64877363400014,69.90485260600009],[72.6779077480002,69.87299225500006],[72.69166100400011,69.83685944200012],[72.67644290500007,69.80101146000011],[72.66570071700002,69.78457265800013],[72.65870201900006,69.76618073100009],[72.64958743600008,69.74811432500015],[72.6316837900001,69.7324079450001],[72.58090254000015,69.70587799700006],[72.5595809250001,69.68862539300012],[72.56373131600006,69.67405833500003],[72.55323326900005,69.66388580900015],[72.51832116000011,69.6544863950001],[72.50171959700018,69.64671458500013],[72.53541100400011,69.62921784100008],[72.56185957100016,69.60407135600009],[72.62728925900015,69.51129791900017],[72.632090691,69.49591705900004],[72.63331139400006,69.45429108300006],[72.63835696700008,69.44135163000006],[72.62110436300006,69.43178945500007],[72.6058048840001,69.42576732000008],[72.5898543630001,69.422512111],[72.5051375660001,69.42121002800003],[72.48804772200006,69.41400788],[72.52173912900017,69.39720286699999],[72.56999759200019,69.38068268400009],[72.61329186300006,69.35936107000013],[72.632090691,69.32831452000012],[72.63721764400006,69.30975983300011],[72.64576256600004,69.30048248900006],[72.647715691,69.29222239800008],[72.632090691,69.27680084800012],[72.60857181100008,69.26410553600009],[72.55372155000006,69.24762604400009],[72.52849368600019,69.23525625200016],[72.50652103000019,69.21832916900017],[72.48926842500006,69.19916413000003],[72.4778751960001,69.17694733300006],[72.47380618600008,69.15053945500016],[72.48015384200006,69.12995026200004],[72.52849368600019,69.07200755400012],[72.53516686300006,69.05170319200012],[72.54346764400012,69.00324127800015],[72.55290774800002,68.98541901200015],[72.56120853000002,68.97443268400012],[72.57105553500011,68.9511579450001],[72.57740319100017,68.940375067],[72.58708743600002,68.931382554],[72.69239342500006,68.86351146],[72.85181725400017,68.79775625200001],[73.0745548840001,68.74730052299998],[73.5390731130001,68.58100006700006],[73.61215254000008,68.53701406500015],[73.6346134770001,68.51703522300006],[73.64437910200016,68.50189850500009],[73.64673912900011,68.48444245000012],[73.646250847,68.45783112200017],[73.63941491000011,68.44375234600011],[73.6233830090001,68.43423086100013],[73.60499108200005,68.43219635600009],[73.59099368600019,68.44082265800002],[73.589610222,68.45237864800013],[73.59538821700019,68.46417877800009],[73.60238691500015,68.474554755],[73.60466556100002,68.482367255],[73.57886803500011,68.49335358300006],[73.53370201900006,68.4815127620001],[73.45386803500011,68.44415924700003],[73.43620853000002,68.42568594],[73.41700280000006,68.37579987200014],[73.39771569100006,68.360500393],[73.31788170700011,68.32811107],[73.16651451900006,68.24583567900014],[73.10857181100008,68.22638580900004],[73.09083092500006,68.21426015800013],[73.1272892590001,68.18353913000004],[73.13705488400015,68.16624583500005],[73.1316837900001,68.14594147300015],[73.11793053500017,68.1358096370001],[73.0810653000001,68.11977773600002],[73.071543816,68.10496653900013],[73.07276451900006,68.09039948100009],[73.0810653000001,68.08226146],[73.10499108200004,68.07086823100003],[73.19044030000012,67.99201080900015],[73.20215905000006,67.97516510600015],[73.20443769600016,67.95722077000012],[73.20069420700023,67.91376373900009],[73.20460045700021,67.86587148600016],[73.19548587300001,67.84951406500014],[73.16651451900006,67.838080145],[73.09473717500006,67.83014557500003],[73.071543816,67.815578518],[73.08399498800006,67.78286367400007],[73.11036217500005,67.76337311400009],[73.13795006600006,67.74896881700012],[73.15137780000006,67.73187897300006],[73.13542728000002,67.70400625200004],[73.11426842500012,67.69037506700009],[73.10206139400006,67.6963565120001],[73.0935978520001,67.71059804900001],[73.08399498800006,67.72199127800015],[73.06218509200018,67.728745835],[73.03939863400015,67.72858307500003],[73.01677493600019,67.72329336100016],[72.97820071700014,67.7070987000001],[72.9090275400001,67.69061920800011],[72.89234459700018,67.68455638200011],[72.88575280000012,67.67462799700003],[72.89893639400006,67.65936920800006],[72.85206139400012,67.63532135600012],[72.79086347700014,67.62567780200006],[72.61166425900015,67.62588125200001],[72.58130944100017,67.62018463700012],[72.55632571700006,67.60468170800002],[72.5470483730002,67.59145742400007],[72.54428144600016,67.57982005400005],[72.54428144600016,67.56879303600012],[72.54273522200012,67.55687083500008],[72.55274498800006,67.53717682500003],[72.53288821700008,67.52008698100009],[72.50228925900015,67.50682200700005],[72.40593509200008,67.47996653899999],[72.391856316,67.46747467700006],[72.39478600400011,67.45758698100015],[72.4052840500001,67.447943427],[72.42603600400011,67.434027411],[72.44760175900008,67.413275458],[72.45427493600008,67.40062083500014],[72.45020592500012,67.38898346600003],[72.44385826900006,67.38125234600001],[72.42888431100008,67.35639069200006],[72.42603600400011,67.34772370000017],[72.40259850400011,67.32807038000011],[72.34937584700006,67.31549713700004],[72.2913517590001,67.3096377620001],[72.25464928500017,67.310492255],[72.21241295700021,67.32827383000007],[72.19060306100019,67.33331940300012],[72.16602623800004,67.32758209800012],[72.14478600400011,67.31842682500015],[72.12549889400005,67.31329987200006],[72.06006920700011,67.3087425800001],[72.04835045700011,67.30288320500016],[72.04468834700006,67.29214101800012],[72.05176842500012,67.26752350500014],[72.05616295700011,67.266791083],[72.08008873800006,67.25934479400003],[72.10092207100016,67.255560614],[72.11133873800006,67.25153229400003],[72.14437910200009,67.242621161],[72.18279056100019,67.23725006700015],[72.2142033210001,67.22378164300007],[72.22730553500011,67.19037506699999],[72.2312931650001,67.16917552299999],[72.2259220710001,67.15949127800003],[72.20630944100006,67.152818101],[72.19076582100014,67.15428294500005],[72.17530358200023,67.16156647300006],[72.16382897200018,67.17218659100008],[72.15381920700011,67.19611237200014],[72.14161217500012,67.2045759140001],[72.12794030000006,67.206773179],[72.11817467500005,67.20062897300004],[72.11866295700021,67.19090403900007],[72.1252547540001,67.17812734600012],[72.13851972700016,67.1596540390001],[71.91325931100006,67.13231028900013],[71.93824303500011,67.12457916900003],[71.99244225400017,67.124212958],[72.01498457100008,67.111273505],[71.99439537900011,67.10700104400009],[72.00717207100016,67.07684967700006],[71.99463951900006,67.05597565300009],[71.97999108200023,67.05044179900007],[71.94434655000006,67.043402411],[71.929453972,67.03302643400009],[71.9212345710001,67.025336005],[71.90365644600008,67.01292552300005],[71.89503014400012,67.00507233300009],[71.87281334700006,66.99127838700015],[71.81934655000012,66.98305898600007],[71.7952580090001,66.97406647300015],[71.78150475400017,66.96010976800007],[71.76368248800011,66.928900458],[71.74756920700011,66.91608307500015],[71.7220158210001,66.91526927300005],[71.65447024800008,66.93964264500003],[71.62476647200006,66.94611237200003],[71.59408613400015,66.94139232000009],[71.54712975400011,66.92194245000012],[71.5216577480002,66.91941966400002],[71.49561608200023,66.92682526200018],[71.42546634200008,66.96784088700008],[71.39389082100016,66.97528717700006],[71.36207116000011,66.97418854400003],[71.33106530000012,66.96625397300006],[71.30193118600008,66.953558661],[71.42847741000017,66.92694733300004],[71.45337975400011,66.90574778900007],[71.39136803500017,66.90574778900007],[71.4192814460001,66.89496491100006],[71.51490319100017,66.87848541900017],[71.49935957100016,66.86737702000012],[71.48878014400012,66.85724518400018],[71.48267662900011,66.84495677300013],[71.48072350400017,66.82697174700007],[71.48975670700005,66.81037018400004],[71.51059004000015,66.80060455900009],[71.53370201900012,66.79279205900009],[71.54957116000011,66.78229401200004],[71.51832116000017,66.76308828300007],[71.54517662900017,66.74819570500001],[71.58423912900011,66.73163483300006],[71.58985436300011,66.70722077],[71.5965275400001,66.69721100500011],[71.587657097,66.68984609600011],[71.55583743600019,66.67987702000012],[71.569590691,66.66364166900007],[71.57691491000011,66.65875885600012],[71.53028405000012,66.645453192],[71.45964603000007,66.63873932500015],[71.39087975400017,66.6420352230001],[71.3496199880001,66.65875885600012],[71.36589603000007,66.6748721370001],[71.3751733730002,66.681382554],[71.3851017590001,66.68671295800006],[71.35808353000007,66.67926666900017],[71.31934655000012,66.6459414730001],[71.29542076900005,66.63825104400014],[71.26417076900006,66.63922760600003],[71.19499759200019,66.648871161],[71.16537519600016,66.65875885600012],[71.18132571700008,66.64655182500006],[71.21794681100019,66.63597239799999],[71.23365319100006,66.62523021000008],[71.08350670700011,66.63206614799999],[71.07162519600016,66.63003164300007],[71.05681399800008,66.62518952000009],[71.04493248800023,66.61701080900018],[71.04249108200011,66.60480377800009],[71.05469811300006,66.59808991100006],[71.12378991000017,66.58429596600014],[71.07984459700006,66.569037177],[71.03305097700016,66.570746161],[70.93946373800021,66.58429596600014],[70.9939884770001,66.5563418640001],[70.97999108200017,66.54726797100004],[70.9793400400001,66.543931382],[70.9803166020001,66.53587474200005],[70.68864993600008,66.51536692900002],[70.41325931100019,66.56317780200014],[70.31902103000002,66.59369538000009],[70.2951766290001,66.63825104400014],[70.31275475400017,66.65070221600008],[70.33969160200009,66.65424225500006],[70.39177493600017,66.65192291900009],[70.41081790500007,66.65631745000007],[70.44597415500002,66.67548248900015],[70.46648196700019,66.67987702000012],[70.5727645190001,66.68756745000015],[70.59961998800006,66.69318268400015],[70.60987389400012,66.69696686400009],[70.6155705090001,66.70189036700005],[70.61784915500007,66.71246979400009],[70.62354576900006,66.71743398600013],[70.63591556100019,66.720607815],[70.64747155000012,66.71893952],[70.65902754000015,66.71576569200012],[70.671641472,66.71401601800012],[70.6799422540001,66.71600983300006],[70.73503665500007,66.74843984600007],[70.74105879000015,66.75775788000003],[70.72339928500011,66.76178620000016],[70.62501061300011,66.76520416900009],[70.57545006600017,66.759995835],[70.53467858200011,66.74192942900008],[70.61670983200023,66.74192942900008],[70.46648196700019,66.72085195500013],[70.48357181100002,66.71430084800006],[70.54151451900012,66.70722077],[70.54151451900012,66.700384833],[70.31568444100017,66.67987702000012],[70.28663170700011,66.68195221600014],[70.17253665500002,66.70709870000003],[70.15398196700018,66.71596914300007],[70.1526798840001,66.72728099200008],[70.17847741000011,66.74192942900008],[70.09441165500019,66.752101955],[70.06706790500002,66.75983307500003],[69.9931746750001,66.79970937700001],[69.9690861340001,66.81989166900003],[69.95492597700009,66.84345123900009],[69.93620853000013,66.86302317900004],[69.8977970710001,66.87164948100015],[69.88152103000007,66.86123281500006],[69.88331139400006,66.84992096600008],[69.88404381600016,66.83738841399999],[69.86378014400006,66.82322825700005],[69.83659915500007,66.81631094000006],[69.73959394600008,66.80955638200011],[69.70533287900011,66.81460195500016],[69.6355900400001,66.83576080900015],[69.60254967500012,66.83755117400013],[69.5774845710001,66.82957591399999],[69.58855228000007,66.82050202000009],[69.61540774800007,66.80955638200011],[69.63721764400012,66.7965762390001],[69.5979923840001,66.78904857000008],[69.39771569100006,66.83022695500013],[69.37663821700019,66.830715236],[69.32162519600016,66.81834544499999],[69.30201256600016,66.81708405200008],[69.1307072270001,66.830715236],[68.96501712300008,66.80955638200011],[68.98226972700016,66.79531484600001],[68.99732506600017,66.78705475500011],[69.01433353000007,66.7831891950001],[69.08375084700018,66.77948639500009],[69.10377037900017,66.77130768400015],[69.116465691,66.754339911],[69.11850019600016,66.73322174700009],[69.10629316500015,66.68984609600011],[69.10279381600017,66.66933828300007],[69.10466556100008,66.63703034100014],[69.1126408210001,66.61884186400006],[69.13152103000002,66.60545482000005],[69.20557701900012,66.5694033870001],[69.38648522200006,66.51337311400006],[69.4886173840001,66.49876536700005],[69.62663821700008,66.49774811400009],[69.67505944100006,66.48456452000012],[69.72934004000008,66.48407623900015],[69.81983483200023,66.45514557500002],[69.85596764400006,66.43341705900015],[69.90284264400012,66.41547272300012],[70.26970462300001,66.36212799700014],[70.3626408210001,66.33441803600009],[70.60906009200019,66.33934153900005],[70.85417728000007,66.35895416900009],[71.14551842500006,66.36562734600015],[71.32406660200009,66.35895416900009],[71.32410720198028,66.35895300269617],[71.42888431100008,66.355943101],[71.52523847700014,66.33633047100012],[71.67872155000006,66.32363515800007],[71.71558678500011,66.31159088700015],[71.7420353520001,66.29612864800005],[71.7918400400001,66.25161367400013],[71.83285566500008,66.2345238300001],[71.91920006600012,66.25104401200015],[71.9598087900001,66.24477773600002],[71.9778751960001,66.23517487200014],[71.9900822270001,66.23078034100013],[72.00277754000015,66.23078034100013],[72.02182050900015,66.23419830900015],[72.02458743600019,66.23590729400017],[72.0354923840001,66.24477773600002],[72.042735222,66.24689362200003],[72.0467228520001,66.24494049700007],[72.05054772200012,66.241888739],[72.06413821700008,66.24042389500012],[72.06983483200023,66.23773834800015],[72.07569420700005,66.235825914],[72.083750847,66.23761627800017],[72.09701582100016,66.24848053600006],[72.26148522200018,66.29564036700005],[72.30632571700019,66.288519598],[72.34734134200012,66.30638255400008],[72.37623131600006,66.341253973],[72.391856316,66.38507721600013],[72.39820397200006,66.41347890800007],[72.3986922540001,66.41917552300008],[72.39283287900011,66.42698802300005],[72.37501061300011,66.44147370000009],[72.37134850400017,66.450181382],[72.36980228000002,66.45929596600008],[72.3671981130001,66.46507396000013],[72.36670983200021,66.47117747600012],[72.37134850400017,66.48126862200009],[72.3797306650001,66.48920319200006],[72.40259850400011,66.50023021000003],[72.41236412900015,66.50853099199999],[72.3823348320001,66.51691315300006],[72.35084069099999,66.51398346600003],[72.28882897200005,66.501125393],[72.31755618600019,66.52753327000009],[72.41089928500011,66.54926178600006],[72.45020592500012,66.56688060099998],[72.45826256600004,66.57754140800002],[72.466563347,66.60138580900009],[72.47380618600008,66.61098867400007],[72.49366295700017,66.61880117400007],[72.80494225400011,66.63914622600005],[72.8509220710001,66.64736562700016],[72.8719181650001,66.6553408870001],[72.91675866000011,66.65428294500005],[72.94239342500012,66.656683661],[72.95362389400012,66.66933828300007],[72.9588322270001,66.68203359600012],[72.9710392590001,66.69110748900012],[72.98487389400006,66.69879791900014],[72.9951278000001,66.70722077],[72.99317467500006,66.70917389500015],[72.99000084700016,66.71503327],[72.98764082100016,66.72199127800009],[72.98829186300006,66.72768789300007],[72.99577884200008,66.7360293640001],[73.00310306100008,66.73944733300014],[73.11963951900006,66.75177643400009],[73.17855879000015,66.77773672100008],[73.49236087300002,66.82343170800003],[73.52898196700008,66.83755117400013],[73.54070071700002,66.84833405200004],[73.5560001960001,66.87124258000013],[73.59937584700018,66.90110911700013],[73.62183678500017,66.92324453300002],[73.6570744150001,66.94196198100018],[73.75464928500011,66.9522158870001],[73.79712975400011,66.96409739800004],[73.85377037900011,66.996771552],[73.86915123800006,67.00141022300012],[73.87134850400011,67.006333726],[73.86597741000017,67.03986237200003],[73.87403405000012,67.05304596600017],[73.91016686300006,67.0654157570001],[73.91993248800004,67.07770416900014],[73.91700280000006,67.08734772300012],[73.89210045700023,67.11871979400017],[73.93482506600006,67.18964264500006],[73.95085696700002,67.21059804900001],[73.95289147200006,67.23094310100002],[73.93734785200014,67.25592682500003],[73.89958743600019,67.29621002800009],[74.09831790500019,67.431870835],[74.41431725350012,67.55906810100008],[74.73031660200016,67.68626536700013],[74.74887129000015,67.70652903900005],[74.77654056100002,67.75551992400001],[74.792246941,67.79718659100014],[74.80738366000011,67.88703034100017],[74.82496178500011,67.92682526200015],[74.81755618600008,67.93427155200014],[74.82496178500011,67.9404971370001],[74.7970483730002,68.002590236],[74.75668379000015,68.05719635600009],[74.7443139980002,68.08901601800012],[74.73682701900006,68.12128327000006],[74.72543379000015,68.15241120000015],[74.70142662900011,68.1807315120001],[74.58033287900017,68.26190827],[74.37012780000012,68.35126373900012],[74.33155358200023,68.38556549700009],[74.3437606130001,68.40346914300015],[74.39975019600016,68.44757721600014],[74.45777428500011,68.50629303600006],[74.46827233200005,68.53538646000011],[74.4539494150001,68.56517161700013],[74.43034915500007,68.59381745000009],[74.4134220710001,68.61953359600015],[74.43132571700002,68.63377513200005],[74.43913821700002,68.65159739800012],[74.44434655000012,68.67202383000001],[74.454356316,68.69399648600002],[74.48113040500019,68.72052643400018],[74.5140080090001,68.73598867400001],[74.62794030000012,68.77460358300004],[74.92628014400006,68.81830475500006],[75.1906844410001,68.87482330900015],[75.4949650400001,68.90155670800009],[75.62110436300011,68.8996442730001],[75.81959069100004,68.94415924700003],[76.01970462300002,68.958929755],[76.1131291020001,68.97772858300006],[76.16041100400017,68.98200104400014],[76.37574303500017,68.99396393400008],[76.58236738400015,68.97516510600006],[76.60906009200008,68.96600983300006],[76.62818444100006,68.94440338700015],[76.6438908210001,68.91925690300009],[76.66041100400017,68.89948151200015],[76.69060306100019,68.87327708500011],[76.69629967500006,68.85773346600003],[76.67920983200023,68.84516022300012],[76.6409611340001,68.82807038],[76.61882571700019,68.80536530200014],[76.63233483200005,68.782212632],[76.66260826900006,68.76264069200012],[76.86475670700005,68.70172760600003],[76.91976972700016,68.67226797100012],[77.00668379000015,68.65314362200017],[77.04175866000011,68.62913646000011],[77.06202233200021,68.60293203300009],[77.08570397200006,68.57876211100007],[77.11378014400006,68.56712474199999],[77.14820397200018,68.57855866100012],[77.124766472,68.58820221600008],[77.11231530000006,68.59088776200018],[77.09986412900015,68.59153880400011],[77.12745201900006,68.60586172100001],[77.1741642590001,68.59589264500012],[77.31592858200005,68.53058502800003],[77.32569420700011,68.52334219],[77.3191024100001,68.50897858300011],[77.3006291020001,68.49872467700003],[77.27930748800006,68.49054596600008],[77.26368248800004,68.482367255],[77.24781334700006,68.45693594000006],[77.26197350400015,68.44220612200009],[77.28541100400011,68.42772044500005],[77.2976994150001,68.40289948100018],[77.29737389400006,68.38890208500011],[77.2950952480002,68.38174062700007],[77.25977623800006,68.34845612200009],[77.24577884200019,68.33893463700016],[77.22999108200017,68.33331940300009],[77.19402103000019,68.328558661],[77.17847741000016,68.32046133000016],[77.16651451900006,68.30841705900006],[77.161875847,68.29364655200004],[77.16700280000012,68.28180573100009],[77.17945397200006,68.27309804900004],[77.1951603520001,68.26699453300012],[77.23462975400017,68.2572695980001],[77.33057701900006,68.24664948100003],[77.3478296230002,68.24176666900017],[77.35661868600008,68.23289622600011],[77.34961998800004,68.21796295800009],[77.32545006600016,68.19916413000011],[77.3128361340001,68.18646881700005],[77.31544030000006,68.1807315120001],[77.31666100400011,68.17523834800006],[77.30697675900015,68.16299062700001],[77.29395592500006,68.150091864],[77.28443444100006,68.14280833500008],[77.22681725400011,68.115912177],[77.21656334700016,68.10496653900013],[77.21705162900017,68.091742255],[77.22510826900006,68.08421458500014],[77.23536217500012,68.07855866100014],[77.24317467500012,68.07086823100003],[77.24122155000006,68.04401276200004],[77.22185306100002,68.01752350500006],[77.20020592500006,67.99632396000008],[77.19255618600013,67.98517487200014],[77.22046959700006,67.9603945980001],[77.25001061300011,67.9404971370001],[77.28419030000012,67.9326846370001],[77.2990014980002,67.92544179900007],[77.30518639400006,67.91010163000011],[77.29444420700023,67.889105536],[77.26905358200011,67.86481354400011],[77.23951256600004,67.84345123900005],[77.21656334700016,67.83124420800007],[77.19092858200011,67.828599351],[77.17221113400015,67.83608633000016],[77.15674889400012,67.84609609600012],[77.14112389400012,67.85114166900017],[77.12566165500019,67.8483747420001],[77.1036889980002,67.84174225500006],[77.083262566,67.83307526200015],[77.0724389980002,67.82440827000006],[77.07984459700012,67.79035065300002],[77.12029056100008,67.768540757],[77.43091881600006,67.67914459800006],[77.51775149800008,67.66498444200005],[77.67554772200006,67.61717357000009],[77.70313561300006,67.59788646],[77.69629967500006,67.58893463700015],[77.68970787900015,67.57656484600001],[77.68458092500006,67.56366608299999],[77.6826278000001,67.55316803600012],[77.69304446700019,67.54531484600015],[77.71697024800008,67.54999420800006],[77.76099694100017,67.56370677299999],[77.86011803500011,67.57733795800014],[77.86996504000015,67.57562897300012],[77.87842858200011,67.57123444200015],[77.89454186300006,67.560288804],[77.90357506600017,67.55833567900012],[77.95728600400011,67.56826406500012],[77.96436608200011,67.56732819200006],[77.98210696700019,67.55337148600006],[77.99024498800011,67.55019765800002],[78.02393639400012,67.54783763200004],[78.03541100400017,67.54498932500003],[78.04704837300008,67.54352448100013],[78.05933678500011,67.546332098],[78.07048587300001,67.550238348],[78.09880618600017,67.55605703300016],[78.13428795700005,67.55927155200011],[78.20704186300006,67.58075592700006],[78.23357181100019,67.58466217700014],[78.25749759200008,67.580552476],[78.28077233200004,67.57396067900011],[78.31755618600008,67.56879303600012],[78.35352623800006,67.55687083500008],[78.36646569100006,67.5554059920001],[78.49732506600016,67.55687083500008],[78.51872806100019,67.55963776200004],[78.58106530000006,67.58246491100006],[78.60328209700006,67.58649323100012],[78.67644290500013,67.58421458500005],[78.74073326900006,67.59194570500016],[78.80933678500017,67.58470286700013],[78.90609785200016,67.56232330900012],[78.95997155000012,67.55687083500008],[78.98275800900008,67.55939362200009],[79.02833092500006,67.56948476800015],[79.05250084700018,67.5705427100001],[79.01880944100016,67.59723541900003],[79.00464928500017,67.60468170800002],[78.98047936300006,67.61066315300002],[78.85035241000017,67.61212799700009],[78.82154381600004,67.61579010600003],[78.80600019600008,67.62518952000006],[78.81234785200014,67.63397858300011],[78.85466556100008,67.64459870000017],[78.8680119150001,67.65314362200009],[78.75147545700023,67.65314362200009],[78.72461998800006,67.64862702000012],[78.7063094410001,67.64101797100001],[78.66960696700019,67.61835358300014],[78.62256920700004,67.605129299],[78.56470787900017,67.60407135600013],[78.50766035200016,67.61375560100011],[78.46338951900012,67.63263580900004],[78.48926842500012,67.6401227890001],[78.57325280000012,67.63263580900004],[78.60181725400017,67.63959381700012],[78.61573326900006,67.65037669500013],[78.61036217500012,67.66254303600012],[78.58008873800011,67.67357005400007],[78.55347741000017,67.67413971600003],[78.5079858730002,67.663031317],[78.48389733200005,67.66673411700005],[78.46827233200011,67.67788320500007],[78.45362389400006,67.6924502620001],[78.43848717500006,67.70254140800016],[78.42172285200016,67.7002627620001],[78.42579186300011,67.68927643400002],[78.42042076900005,67.678168036],[78.4123641290001,67.66535065300015],[78.40821373800011,67.64935944200006],[78.40015709700006,67.63739655200013],[78.3816837900001,67.64459870000017],[78.34986412900011,67.67015208500005],[78.32683353000002,67.67975495000003],[78.30144290500017,67.67536041900014],[78.25171959700012,67.65936920800006],[78.22706139400012,67.66107819200006],[78.20582116000011,67.66657135600009],[78.18490644600016,67.66937897300012],[78.16211998800004,67.663031317],[78.1134546230002,67.6569684920001],[78.01221764400012,67.69448476800012],[77.96159915500007,67.69574616100012],[77.94060306100019,67.69147370000003],[77.87427819100006,67.68528880400005],[77.86011803500011,67.69061920800011],[77.87224368600002,67.70457591399999],[77.89958743600019,67.71539948100009],[77.94890384200019,67.7282168640001],[77.92042076900006,67.72662995000009],[77.85157311300011,67.73102448100015],[77.82593834700006,67.73847077000015],[77.80958092500012,67.75112539300004],[77.79297936300006,67.76732005400007],[77.77572675900015,67.7783877620001],[77.75766035200016,67.77602773600016],[77.73804772200016,67.73981354400003],[77.61866295700011,67.73371002800015],[77.49415123800011,67.75128815300017],[77.45948326900006,67.78628164300008],[77.47266686300011,67.80963776200018],[77.47315514400006,67.83364492400004],[77.46924889400006,67.857163804],[77.46973717500006,67.87909577],[77.47388756599999,67.89484284100014],[77.47877037900017,67.90729401200018],[77.48780358200011,67.91746653900013],[77.5037541020001,67.92682526200015],[77.52491295700011,67.9308942730001],[77.55005944100017,67.931830145],[77.57276451900012,67.93553294500005],[77.58643639400006,67.94794342700008],[77.56316165500007,67.94790273600007],[77.54395592500012,67.94501373900015],[77.52515709700006,67.94529857],[77.5037541020001,67.954779364],[77.49341881600017,67.96332428600003],[77.48414147200006,67.97361888200011],[77.46973717500006,67.99510325700005],[77.48308353000019,68.00275299700009],[77.48707116000017,68.00600820500013],[77.5042423840001,68.02789948100015],[77.50619550900015,68.04523346600014],[77.5027775400001,68.06273021000003],[77.5037541020001,68.08510976800012],[77.51563561300006,68.10659414300014],[77.5369572270001,68.12860748900006],[77.58643639400006,68.16331614800013],[77.66553795700015,68.20551178600006],[77.70850670700011,68.22186920800009],[77.7508244150001,68.22846100500006],[77.90259850400011,68.22943756700012],[77.99854576900012,68.24607982],[78.10328209700006,68.24835846600014],[78.153575066,68.25755442900011],[78.17261803500011,68.27435944200012],[78.14861087300008,68.29242584800015],[78.11182701900006,68.31232330900004],[78.09278405000006,68.33466217700007],[78.09278405000006,68.352728583],[78.09009850400011,68.36001211100002],[78.03589928500017,68.37579987200014],[77.99170983200005,68.38117096600011],[77.96998131599999,68.38922760600006],[77.95850670700017,68.39838288000011],[77.95191491000017,68.40867747600005],[77.94263756600006,68.42772044500005],[77.9139103520001,68.45673248900012],[77.9085392590001,68.46869538000006],[77.92359459700006,68.47028229400009],[77.93685957100016,68.47553131700006],[77.94776451900006,68.48403554900001],[77.95630944100017,68.49542877800015],[77.92790774800002,68.5190290390001],[77.8948673840001,68.52887604400003],[77.85962975400011,68.52753327000012],[77.8243921230002,68.517767645],[77.78687584700018,68.51459381700012],[77.77409915500002,68.53424713700018],[77.77247155000012,68.55890534100008],[77.76832116000016,68.57111237200014],[77.74830162900011,68.57880280200008],[77.72754967500012,68.59760163000011],[77.71509850400011,68.62103913],[77.72006269600016,68.64248281500012],[77.73560631600004,68.66095612200014],[77.74415123800006,68.67690664300007],[77.7468367850001,68.69375234600007],[77.7439884770001,68.71507396000013],[77.73764082100016,68.73749420800006],[77.72771243600008,68.76080963700015],[77.7146916020001,68.782660223],[77.69939212300014,68.80048248900006],[77.69223066500008,68.81708405200011],[77.69019616000017,68.86542389500015],[77.6826278000001,68.88580963700004],[77.64698326900006,68.91111888200008],[77.60084069100006,68.92108795800006],[77.40943444100006,68.92601146000011],[77.35865319100017,68.93716054900013],[77.28581790500002,68.9787051450001],[77.23292076900006,68.98993561400012],[76.9290470710001,69.00934479400003],[76.91163170700023,69.0151227890001],[76.89380944100006,69.02431875200007],[76.86296634200019,69.04718659100008],[76.82886803500017,69.08502838700012],[76.81348717500006,69.090277411],[76.75489342500012,69.12470123900015],[76.73121178500017,69.13125234600012],[76.66041100400017,69.139634507],[76.64698326900006,69.1437848980001],[76.63453209700006,69.14964427300008],[76.62159264400006,69.15403880400005],[76.60629316500008,69.15395742400007],[76.5984806650001,69.15033600500003],[76.58106530000012,69.13727448100003],[76.57227623800006,69.13279857000008],[76.54818769600016,69.13011302299999],[76.42758222700016,69.14427317900011],[76.23780358200005,69.18988678600006],[76.16130618600008,69.19896067900005],[76.09302819100017,69.22907135600009],[76.04200280000006,69.23908112200017],[75.80111738400015,69.2338320980001],[75.50855553500011,69.261419989],[75.45337975400011,69.25128815300005],[75.31080162900011,69.19887929900007],[75.17335045700011,69.17259349200005],[75.1292423840001,69.15729401200008],[75.09197024800002,69.13279857000008],[75.13990319100006,69.12494538],[75.15398196700019,69.11920807500012],[75.10710696700002,69.10394928600014],[74.9409285820001,69.10553620000016],[74.7727970710001,69.081244208],[74.71509850400017,69.08502838700012],[74.50896243600008,69.13279857000008],[74.31373131600004,69.14638906500012],[74.24740644600008,69.14191315300015],[74.02979576900006,69.09186432500003],[73.96127363400008,69.08380768400009],[73.89665774800008,69.09320709800012],[73.83521569100016,69.11737702000012],[73.77662194100006,69.15395742400007],[73.75879967500006,69.169378973],[73.7518009770001,69.18353913000011],[73.75660241000016,69.19904205900004],[73.7786564460001,69.22638580900009],[73.7879337900001,69.24510325700008],[73.7933048840001,69.25291575700008],[73.82439212300018,69.28367747600005],[73.84961998800006,69.31513092700008],[73.89958743600019,69.41400788],[73.89958743600019,69.420843817],[73.85857181100019,69.48224518400008],[73.75538170700004,69.56476471600008],[73.63257897200018,69.63312409100008],[73.56324303500011,69.68374258000007],[73.5300399100001,69.71621328300013],[73.5159611340001,69.74640534100013],[73.53500410200014,69.776068427],[73.62745201900006,69.8300641950001],[73.65992272200006,69.85968659100014],[73.65308678500011,69.87518952000006],[73.65626061300011,69.89325592700008],[73.66570071700014,69.91058991100006],[73.70525149800008,69.95530833500011],[73.70826256600017,69.96832916900011],[73.70769290500019,70.00722890800002],[73.71143639400006,70.0189476580001],[73.75261478000019,70.0621605490001],[73.76482181100008,70.07904694200009],[73.76807701900012,70.09564850500014],[73.75554446700002,70.10952383000013],[73.70240319099999,70.12636953300013],[73.6922306650001,70.138128973],[73.70769290500019,70.16132233300014],[73.73454837300008,70.1808942730001],[74.00660241000011,70.30451080900009],[74.03060957100016,70.31928131700009],[74.0503035820001,70.33881256700006],[74.0564884770001,70.35114166900011],[74.059825066,70.36286041900009],[74.06495201900012,70.373724677],[74.07740319100006,70.38349030200011],[74.19654381600017,70.435003973],[74.2668563160001,70.47972239800004],[74.31617272200016,70.52033112200014],[74.32911217500006,70.5375023460001],[74.33659915500007,70.55735911699999],[74.33904056100019,70.58218008000013],[74.337168816,70.59467194200006],[74.32406660200016,70.62620677300005],[74.32081139400012,70.65863678600006],[74.31788170700011,70.66779205900004],[74.29428144600014,70.69623444200015],[74.26075280000012,70.7162946640001],[73.95215905000012,70.83681875200001],[73.92750084700006,70.85537344000012],[73.91309655000006,70.8869082700001],[73.9119572270001,70.90973541900006],[73.913340691,70.930609442],[73.91032962300018,70.95099518400009],[73.89576256600016,70.97260163],[73.86451256599999,70.99310944200015],[73.78435306100008,71.020900783],[73.74870853000019,71.03774648600002],[73.70362389400006,71.07143789300004],[73.68213951900012,71.09235260600018],[73.67302493600002,71.10968659100017],[73.66781660200009,71.13214752800015],[73.65528405000012,71.15346914300012],[73.58277428500011,71.23358795799999],[73.55616295700005,71.2551130230001],[73.53272545700011,71.26430898600007],[73.51124108200005,71.26959870000015],[73.46949303500011,71.29303620000003],[73.42644290500017,71.30223216400009],[73.36353600400011,71.331244208],[73.33936608200023,71.33881256700015],[73.23585045700011,71.357123114],[73.17335045700017,71.38031647300012],[73.07927493600002,71.39227936400006],[73.03337649800008,71.40570709800006],[73.02247155000006,71.42877838700012],[73.03744550900008,71.44098541900009],[73.36475670700005,71.58299388200014],[73.38119550900015,71.59357330900018],[73.40919030000006,71.61652252800017],[73.42652428500017,71.62738678600006],[73.4817814460001,71.65273672100008],[73.4985457690001,71.66494375200006],[73.51823978000007,71.68707916900014],[73.52491295700011,71.70624420800003],[73.5193791020001,71.72443268400009],[73.50228925900015,71.74347565300009],[73.47584069100004,71.76260000200007],[73.47022545700017,71.77342357000008],[73.47771243600002,71.78815338700014],[73.49089603000007,71.800523179],[73.5076603520001,71.81281159100014],[73.52588951900006,71.82221100500009],[73.76726321700019,71.873968817],[73.9393009770001,71.9137230490001],[74.25049889400006,71.96002838700018],[74.33155358200023,71.95571523600007],[74.40739993600008,71.973822333],[74.66789798300007,72.0359764670001],[74.92839603000019,72.09813060100011],[74.96159915500012,72.11395905200006],[74.99488366000011,72.13784414300011],[75.07569420700011,72.210150458],[75.09197024800002,72.24062734600012],[75.111094597,72.34642161700005],[75.10547936300011,72.36717357000005],[75.10873457100016,72.40350983300013],[75.07911217500012,72.4732119810001],[75.06657962300014,72.52488841400005],[75.0588485040001,72.54511139500006],[75.0545353520001,72.56549713700015],[75.06104576900012,72.58319733300006],[75.0588485040001,72.59503815300003],[75.04867597700014,72.61640045800009],[75.02637780000012,72.65184153899999],[74.99952233200023,72.67389557500017],[74.74756920700023,72.80829498900006],[74.74154707100016,72.81439850500006],[74.75114993600013,72.82001373900006],[74.77515709700006,72.8285179710001],[74.98316491000011,72.87677643400012],[75.03663170700023,72.88165924700009],[75.09197024800002,72.87498607000013],[75.11198978000013,72.86798737200014],[75.1668400400001,72.84023672100007],[75.19141686300006,72.833726304],[75.31885826900006,72.81915924700013],[75.45720462300014,72.77326080900018],[75.50212649800014,72.76727936400006],[75.52230879000015,72.75983307500009],[75.5307723320001,72.74115631699999],[75.5198673840001,72.73834870000015],[75.45557701900012,72.70990631700012],[75.4370223320001,72.7140160180001],[75.42212975400011,72.721380927],[75.40748131600006,72.72382233300011],[75.3764754570001,72.70416901200015],[75.3475041020001,72.69228750200001],[75.33822675900015,72.68317291900003],[75.35873457100008,72.685003973],[75.40186608200023,72.696193752],[75.42090905000012,72.69684479400014],[75.4329533210001,72.69179922100012],[75.44304446700019,72.68341705900015],[75.45899498800011,72.66547272300012],[75.48650149800002,72.64508698100003],[75.5185653000001,72.63104889500009],[75.65251712300014,72.59910716399999],[75.68718509200019,72.58539459800015],[75.70818118600002,72.56586334800006],[75.70199629000015,72.54702383000013],[75.66895592500012,72.54441966400005],[75.62745201900012,72.54791901200004],[75.59685306100019,72.54710521000011],[75.561696811,72.52533600500006],[75.55648847700016,72.497503973],[75.57203209700006,72.46674225500011],[75.62281334700018,72.41193268400009],[75.6258244150001,72.40473053600006],[75.6245223320001,72.388617255],[75.626231316,72.38153717700011],[75.66822350400017,72.35390859600012],[75.68287194100012,72.33991120000015],[75.667246941,72.33307526200004],[75.69044030000006,72.31867096600008],[75.75473066500015,72.30638255400011],[75.75294030000006,72.28872304900001],[75.74838300900015,72.28139883000001],[75.74244225400011,72.26552969000006],[75.73552493600019,72.25739166900014],[75.72120201900012,72.24957916900017],[75.6224064460001,72.22654857000002],[75.59408613400015,72.21454498900009],[75.58741295700011,72.21019114799999],[75.51783287900011,72.15322500200006],[75.51010175900008,72.13788483300011],[75.51238040500006,72.12889232000002],[75.52182050900015,72.1146914730001],[75.52458743600002,72.10781484600007],[75.52393639400006,72.09853750200004],[75.51832116000017,72.08331940300006],[75.5169376960001,72.07640208500005],[75.501719597,72.06244538000009],[75.43262780000012,72.0459658870001],[75.41407311300011,72.03143952000015],[75.41716556100019,72.02619049700014],[75.43824303500011,72.00104401200018],[75.44385826900012,71.991929429],[75.43897545700023,71.98533763200011],[75.39063561300011,71.963812567],[75.35385175900015,71.9577497420001],[75.28679446700008,71.959906317],[75.28500410200016,71.960394598],[75.26734459700006,71.95246002800003],[75.253672722,71.94220612200007],[75.25294030000006,71.93244049700014],[75.27100670700011,71.91445547100012],[75.27857506600006,71.90493398600005],[75.2835392590001,71.894232489],[75.26205488400008,71.88312409100016],[75.23755944100004,71.86359284100007],[75.22413170700017,71.84223053600014],[75.23585045700023,71.82599518400008],[75.22022545700005,71.80996328300002],[75.21762129000015,71.79197825700008],[75.22754967500006,71.77741120000003],[75.24952233200005,71.77138906500012],[75.257578972,71.76788971600014],[75.25977623800011,71.75975169500013],[75.2602645190001,71.75043366100007],[75.26319420700011,71.74347565300009],[75.27426191500015,71.73550039300011],[75.2869572270001,71.72894928600006],[75.30062910200016,71.72459544500008],[75.3462020190001,71.71820709800012],[75.49170983200023,71.66608307500009],[75.50635826900006,71.65216705900004],[75.49122155000006,71.63939036699999],[75.4217228520001,71.62799713700011],[75.3924259770001,71.61786530200006],[75.40064537900011,71.603461005],[75.49170983200023,71.57391998900012],[75.5169376960001,71.55849844],[75.52759850400011,71.54913971600016],[75.53288821700019,71.54230377800015],[75.52881920700023,71.53632233300011],[75.51172936300011,71.52952708500003],[75.46949303500017,71.51947663000011],[75.45533287900017,71.51410553600009],[75.43376712300002,71.50165436400006],[75.42554772200006,71.49038320500007],[75.42888431100006,71.47797272300011],[75.44190514400006,71.46222565300017],[75.40593509200018,71.452582098],[75.26661217500012,71.46222565300017],[75.25440514400006,71.45990631700012],[75.2415470710001,71.453558661],[75.23454837300002,71.444037177],[75.24268639400006,71.42340729400013],[75.23829186300006,71.41559479400017],[75.2317814460001,71.40912506700006],[75.2283634770001,71.40452708500014],[75.26303144600016,71.36554596600014],[75.34262129000015,71.33494700700014],[75.73365319100004,71.26487864800005],[76.01734459700018,71.237005927],[76.1084090500001,71.20449453300004],[76.12647545700023,71.20282623900003],[76.11524498800006,71.21173737200014],[76.11963951900012,71.22040436400015],[76.13347415500012,71.22695547100012],[76.15040123800011,71.22947825700005],[76.4689233730002,71.21263255400005],[76.71998131600017,71.20530833500014],[76.88892662900017,71.190415757],[76.91423587300002,71.18231842700006],[76.89234459700018,71.1722679710001],[76.88168379000015,71.15997955900004],[76.88249759200008,71.14508698100018],[76.89429772200006,71.12710195500013],[76.90162194100006,71.12246328300002],[76.91065514400006,71.118597723],[76.9183048840001,71.112982489],[76.921641472,71.10293203300013],[76.91920006600017,71.09438711100002],[76.91431725400011,71.08901601800015],[76.91130618600019,71.08307526200004],[76.91423587300002,71.07245514500009],[76.92847741000011,71.07754140800002],[76.94434655000006,71.087103583],[76.95728600400017,71.09955475500011],[76.96257571700002,71.11347077],[76.95826256600006,71.12482330900015],[76.9290470710001,71.160589911],[77.00513756600017,71.18447500200016],[77.38209069100006,71.15892161699999],[77.55811608200021,71.17365143400015],[77.78272545700023,71.14248281500006],[77.8377384770001,71.12457916900003],[77.8654077480002,71.110052802],[77.88550866000017,71.0892601580001],[77.894297722,71.0594750020001],[77.89527428500011,71.03245677300005],[77.89991295700023,71.01048411700012],[77.91553795700011,70.99217357000008],[77.94890384200019,70.97626373900015],[78.00171959700006,70.96360911699999],[78.27906334700018,70.94212474200005],[78.36036217500006,70.90802643400004],[78.41138756600004,70.89545319200015],[78.4552514980002,70.89468008000004],[78.4983016290001,70.90330638200011],[78.54688561300011,70.91966380400005],[78.59782962300018,70.92804596600011],[78.76880944100006,70.91425202],[78.88135826900012,70.92169830900015],[78.89918053500017,70.92780182500015],[78.91391035200016,70.93964264500012],[78.92945397200006,70.94765859600007],[78.94947350400011,70.94212474200005],[78.94597415500002,70.930609442],[78.96461022199999,70.92869700700005],[79.03956139400006,70.93732330900015],[79.05339603000019,70.94196198100018],[79.05933678500011,70.95270416900009],[79.05437259200008,70.96210358300011],[79.04265384200008,70.96735260600009],[79.029063347,70.96930573100015],[79.01832116000011,70.96881745000015],[79.07154381600017,70.98016998900015],[79.10108483200023,70.99103424700003],[79.11451256600006,71.00421784100017],[79.10279381600006,71.02024974200008],[79.07447350400011,71.02350495000012],[79.04297936300011,71.01801178600009],[78.96778405000006,70.98700592700006],[78.844981316,71.01325104400009],[78.78565514400006,70.99054596600006],[78.81462649800001,70.99152252800012],[78.84449303500011,70.98916250200016],[78.90162194100012,70.97626373900015],[78.75757897200006,70.935003973],[78.70899498800006,70.94037506700015],[78.66293379000015,70.95384349200013],[78.6137801440001,70.962591864],[78.56470787900017,70.96255117400001],[78.51807701900006,70.94961172100001],[78.48210696700019,70.9240583350001],[78.46208743600012,70.91364166900003],[78.44239342500006,70.91425202],[78.43384850400015,70.92186107000013],[78.43148847700009,70.93211497600005],[78.43295332100016,70.942287502],[78.4353947270001,70.94961172100001],[78.47779381600017,70.99152252800012],[78.488047722,71.01166413000006],[78.46338951900012,71.02411530200008],[78.48707116000011,71.03017812700007],[78.53980553500011,71.03632233300014],[78.55974368600013,71.045152085],[78.54656009200008,71.05825429900007],[78.53158613400015,71.0671247420001],[78.49756920700011,71.07868073100003],[78.5096134770001,71.08942291900014],[78.5157983730002,71.09198639500006],[78.52540123800006,71.09296295800014],[78.49732506600016,71.11505768400004],[78.44385826900006,71.11530182500015],[78.34620201900006,71.09979889500006],[78.37598717500006,71.07599518400015],[78.47103925900015,71.06175364800005],[78.49756920700011,71.045152085],[78.43043053500011,71.04474518400009],[78.36394290500002,71.05719635600012],[78.2991642590001,71.079779364],[78.23755944100017,71.10968659100017],[78.23365319100017,71.12287018400012],[78.25066165500007,71.13873932500006],[78.28907311300006,71.16437409100011],[78.29948978000007,71.17841217700006],[78.30665123800011,71.19277578300012],[78.31104576900006,71.208441473],[78.31251061300006,71.22638580900015],[78.27898196700019,71.25893789300012],[78.20142662900011,71.270656643],[78.02198326900006,71.27871328300013],[77.9560653000001,71.25389232],[77.92847741000011,71.25747304900007],[77.92237389400012,71.28131745000015],[77.91846764400012,71.2885195980001],[77.913259311,71.29515208500004],[77.906016472,71.30760325700005],[77.9011336600001,71.31268952000009],[77.92823326900006,71.32973867400013],[77.99048912900017,71.346380927],[78.010996941,71.36733633000013],[77.98829186300006,71.37474192900011],[77.96900475400011,71.37372467700006],[77.92847741000011,71.36050039300012],[77.88184655000012,71.35468170800006],[77.86548912900017,71.34943268400016],[77.87378991000017,71.3393415390001],[77.77735436300004,71.32461172100012],[77.73414147200018,71.31118398600013],[77.7508244150001,71.29218170800011],[77.71192467500012,71.28131745000015],[77.67090905000012,71.28611888200014],[77.59327233200011,71.31268952000009],[77.5154728520001,71.32916901200015],[77.43555748800004,71.33319733300014],[77.45346113400015,71.32151927300005],[77.52491295700011,71.30524323100012],[77.49219811300006,71.3013369810001],[77.23170006600016,71.36225006700012],[77.18067467500006,71.38467031500012],[77.13453209700006,71.41136302300004],[77.10352623800011,71.42397695500013],[77.07325280000012,71.428859768],[76.94971764400012,71.43138255400011],[76.71265709700018,71.46344635600009],[76.68824303500011,71.46971263200005],[76.67123457100016,71.47846100500011],[76.62671959700018,71.51068756700006],[76.58106530000012,71.5287539730001],[76.5281681650001,71.54181549700014],[76.32545006600017,71.55951569200006],[76.27230879000008,71.57290273600007],[76.24935957100008,71.59666575700008],[76.25310306100002,71.60834381700005],[76.26832116000011,71.62958405200004],[76.27051842500012,71.641058661],[76.2635197270001,71.65314362200009],[76.18230228000013,71.71417877800017],[76.16187584700006,71.7351748720001],[76.14633222700016,71.77448151200012],[76.07976321700008,71.86343008000013],[76.0574650400001,71.88287995000003],[76.03044681100008,71.89777252800009],[75.99683678500011,71.90790436400015],[76.02670332100008,71.92381419500003],[76.09400475400017,71.93073151200015],[76.35377037900011,71.99909088700004],[76.61597741000017,72.0245628925001],[76.87818444100017,72.05003489800005],[76.94613691500015,72.04425690300009],[76.96257571700002,72.02460358300011],[77.02686608200005,72.02142975500006],[77.38461347700014,71.90737539300007],[77.44898522200018,71.87103913000009],[77.58464603000019,71.8311221370001],[77.72722415500019,71.826849677],[78.1095483730002,71.88043854400009],[78.15593509200008,71.89435455900018],[78.19711347700014,71.92226797100001],[78.21469160200016,71.94106679900007],[78.22681725400017,71.96185944200006],[78.22575931100019,71.98257070500016],[78.20362389400006,72.00104401200018],[78.03158613400015,72.09467194200012],[77.98560631600017,72.10952383000007],[77.93775475400015,72.118109442],[77.71257571700008,72.11517975500009],[77.56397545700005,72.07062409100008],[77.5105900400001,72.06207916900014],[77.46452884200008,72.067572333],[77.38738040500002,72.09223053600007],[77.37720787900017,72.11017487200003],[77.4143986340001,72.13788483300011],[77.49073326900012,72.17544179900013],[77.48829186300006,72.18829987200014],[77.47413170700017,72.19676341399999],[77.44174238400015,72.20962148600002],[77.47388756599999,72.22235748900006],[77.50709069100006,72.22235748900006],[77.61150149800008,72.19342682500015],[77.65113366000011,72.18976471600011],[77.6682235040001,72.192816473],[77.69727623800011,72.20648834800012],[77.74138431100019,72.2162132830001],[77.87924238400008,72.300482489],[77.94263756600006,72.32632070500001],[78.08757571700019,72.3587914080001],[78.09880618600017,72.36343008],[78.10718834700006,72.36920807500009],[78.12452233200023,72.38458893400004],[78.13624108200023,72.38519928600009],[78.1917423840001,72.36904531500012],[78.23161868600008,72.36383698100003],[78.34620201900006,72.3877627620001],[78.42579186300011,72.39337799700009],[78.46501712300001,72.39069245000012],[78.5027775400001,72.38190338700004],[78.50440514400012,72.38153717700011],[78.50245201900006,72.388128973],[78.5001733730002,72.40180084800011],[78.49756920700011,72.40818919500008],[78.75749759200014,72.39268626499997],[79.0174259770001,72.37718333500014],[79.20948326900006,72.39020416900001],[79.39144941500014,72.38556549700009],[79.5138452480002,72.362209377],[79.78541100400015,72.264634507],[80.0101017590001,72.20774974200005],[80.47396894600008,72.15204498900015],[80.83464603000007,72.08331940300006],[80.85157311300006,72.069281317],[80.84742272200018,72.05955638200005],[80.84457441500014,72.04686107],[80.83757571700008,72.03412506700012],[80.82081139400006,72.02460358300011],[80.80176842500006,72.02480703300007],[80.73210696700019,72.04511139500009],[80.75163821700006,72.05744049700002],[80.79525800900015,72.06777578300013],[80.81397545700023,72.07990143400004],[80.72950280000006,72.08242422100015],[80.6858830090001,72.0787621110001],[80.64942467500012,72.06557851800015],[80.63233483200004,72.04608795800006],[80.6472274100001,72.03412506700012],[80.94849694100012,71.94666168800008],[81.24976647200018,71.85919830900012],[81.2591251960001,71.85419342700008],[81.26587975400015,71.847113348],[81.26758873800004,71.83909739800008],[81.26441491000011,71.83392975500006],[81.26050866000011,71.83022695500001],[81.2596134770001,71.82599518400008],[81.2794702480002,71.79604726800011],[81.30738366000017,71.77619049700003],[81.34229576900006,71.76422760600009],[81.54664147200018,71.74160390800004],[81.73666425900008,71.69989655200008],[82.19434655000005,71.70774974200006],[82.3040470710001,71.73037344000012],[82.41879316500014,71.7368838560001],[82.49854576900006,71.7546247420001],[82.86736087300002,71.78644440300015],[82.92432701900006,71.77138906500012],[82.93327884200008,71.7663434920001],[82.94092858200011,71.76080963700016],[82.95508873800006,71.74713776200004],[82.96355228000006,71.74066803600014],[82.97185306100008,71.73851146000014],[82.9806421230002,71.73773834800012],[83.01921634200019,71.72943756700015],[83.15333092500006,71.73981354400006],[83.20378665500019,71.7368838560001],[83.25171959700018,71.72565338700012],[83.29558353000002,71.70311107000013],[83.31177819100017,71.69188060100014],[83.32048587300008,71.68329498900012],[83.31902103000019,71.6734886740001],[83.30518639400012,71.65839264500008],[83.28988691500015,71.647894598],[83.24024498800006,71.62738678600006],[83.17115319100006,71.58551666900014],[83.13559004000015,71.57184479400011],[83.05014082100016,71.56159088700018],[83.02654056100019,71.5498721370001],[83.01197350400017,71.52895742400013],[83.00001061300006,71.49701569200012],[82.98878014400005,71.47492096600014],[82.98536217500012,71.46283600500014],[82.98951256600017,71.45233795800006],[83.00489342500012,71.44257233300011],[83.02198326900006,71.436672268],[83.03744550900008,71.4293480490001],[83.04786217500006,71.41510651200018],[82.98357181100002,71.40973541900003],[82.93995201900006,71.39801666900006],[82.82007897200018,71.391302802],[82.55831953200006,71.33930084850009],[82.29656009200002,71.28729889500006],[82.27263431100008,71.27879466400013],[82.259043816,71.26430898600007],[82.25928795700017,71.25267161699999],[82.26587975400011,71.24249909100001],[82.27418053500011,71.23285553600006],[82.28003991000017,71.22333405200006],[82.28126061300006,71.21149323100009],[82.27930748800011,71.18805573100003],[82.28345787900015,71.17861562700001],[82.29468834700018,71.16933828300016],[82.31950931100012,71.15460846600017],[82.33155358200021,71.14419179900007],[82.34929446700002,71.11871979400017],[82.352793816,71.09625885600018],[82.34148196700002,71.07648346600014],[82.31421959700006,71.0594750020001],[82.23536217500012,71.03620026200015],[82.20313561300006,71.01626211100007],[82.20834394600016,70.98680247600011],[82.30738366000011,70.90802643400004],[82.30128014400006,70.89618561400009],[82.31413821700008,70.88495514500006],[82.32960045700011,70.8740908870001],[82.33155358200021,70.86298248900005],[82.32398522200018,70.84609609600007],[82.3348087900001,70.83832428600006],[82.3483992850001,70.83161041900003],[82.348887566,70.81801992400005],[82.40837649800008,70.790187893],[82.41724694100012,70.77704498900015],[82.40870201900006,70.76581452000015],[82.36898847700016,70.74262116100012],[82.23536217500012,70.69611237200016],[82.20183353000006,70.67121002800003],[82.19239342500006,70.65704987200003],[82.19483483200005,70.65053945500003],[82.20020592500012,70.64508698100009],[82.19874108200005,70.63369375200004],[82.187266472,70.621771552],[82.16895592500005,70.61298248900012],[82.10010826900012,70.589300848],[82.08594811300006,70.57965729400003],[82.08204186300006,70.56537506700012],[82.09180748800011,70.55508047100001],[82.1434025400001,70.53123607000013],[82.15333092500006,70.51813385600015],[82.1546330090001,70.508978583],[82.15219160200016,70.4997012390001],[82.15040123800006,70.48627350500014],[82.15349368600002,70.47589752800003],[82.16765384200008,70.45693594000012],[82.1751408210001,70.42401764500015],[82.19434655000005,70.38373444200006],[82.202891472,70.34902578300002],[82.21265709700006,70.33893463700004],[82.22388756600006,70.32977936400006],[82.23275800900008,70.3183454450001],[82.23536217500012,70.30805084800008],[82.23536217500012,70.28766510600009],[82.2395939460001,70.27732981999998],[82.25049889400012,70.267726955],[82.29428144600016,70.24384186400015],[82.33423912900011,70.21051666900014],[82.348887566,70.20229726800007],[82.34441165500007,70.22557200700008],[82.32740319100017,70.25023021000005],[82.28687584700018,70.29043203300016],[82.29428144600016,70.29783763200005],[82.2518009770001,70.37592194200009],[82.24024498800006,70.4268252620001],[82.2292586600001,70.45400625200001],[82.22535241000011,70.4795596370001],[82.2395939460001,70.49705638200005],[82.22339928500017,70.51797109600001],[82.17554772200006,70.55060455900015],[82.15723717500006,70.57160065300009],[82.18018639400006,70.58576080900012],[82.20948326900005,70.59088776200004],[82.24000084699999,70.59292226800007],[82.29737389400006,70.603949286],[82.44532311300011,70.60651276200012],[82.46461022200006,70.61318594000006],[82.47242272200006,70.6299502620001],[82.4638778000001,70.6459414730001],[82.44678795700005,70.65648021000005],[82.43392988400014,70.6666527360001],[82.43824303500011,70.68146393400015],[82.43506920700005,70.68512604400003],[82.43295332100016,70.68781159100008],[82.43189537900011,70.69082265800002],[82.43091881600006,70.69513580900009],[82.45142662900011,70.69501373900012],[82.46876061300006,70.69936758000004],[82.48340905000006,70.70758698100003],[82.49634850400011,70.7193057310001],[82.5001733730002,70.73012929900001],[82.49976647200012,70.74282461100007],[82.50212649800008,70.75336334800012],[82.51343834700006,70.7577985700001],[82.53874759200019,70.75861237200012],[82.55420983200011,70.76154205900004],[82.5546981130001,70.76740143400016],[82.53394616000011,70.77704498900015],[82.50131269600016,70.784165757],[82.48878014400006,70.79047272300012],[82.47868899800008,70.80499909100008],[82.50261478000007,70.82143789300007],[82.56861412900017,70.85317617400013],[82.58228600400011,70.86981842700008],[82.57984459700016,70.87970612200009],[82.57553144600016,70.89069245000015],[82.57374108200011,70.90176015800007],[82.57862389400006,70.91111888200011],[82.5940861340001,70.9190127620001],[82.63184655000006,70.929388739],[82.68816165500019,70.96190013200008],[82.73454837300008,70.96552155200011],[82.84302819100016,70.9522158870001],[82.85173587300008,70.94310130400011],[82.85718834700018,70.93085358300006],[82.86597741000004,70.91791413000006],[82.87663821700019,70.91697825700005],[82.88884524800008,70.92597077000009],[82.89665774800008,70.93976471600007],[82.89332116000006,70.95270416900009],[82.87728925900015,70.98688385600008],[82.87582441500008,70.996771552],[82.88795006600017,71.0067406270001],[82.901621941,71.0010440120001],[82.91285240999999,70.98720937700001],[82.91749108200023,70.97260163],[82.93238366000017,70.95404694200009],[82.96664472700016,70.93398672100012],[83.03256269600008,70.90619538000006],[83.10661868600008,70.89618561400009],[83.13379967500006,70.88239166900017],[83.1440535820001,70.84593333500003],[83.1404728520001,70.82733795800003],[83.13428795700017,70.80780670800011],[83.13135826900006,70.786810614],[83.13721764400006,70.76398346600017],[83.11182701900006,70.75055573100018],[83.0857853520001,70.72345612200013],[83.06495201900012,70.692531643],[83.05469811300004,70.66779205900004],[83.05632571700019,70.654974677],[83.0671492850001,70.62514883000001],[83.0683699880001,70.61318594000006],[83.05713951900012,70.5971133480001],[83.0368758470001,70.585394598],[82.99317467500012,70.57160065300009],[83.0057072270001,70.56781647300006],[83.0139266290001,70.56171295800009],[83.01856530000006,70.55304596600008],[83.02198326900006,70.530991929],[83.02784264400012,70.52513255400005],[83.03565514400006,70.5206566430001],[83.04444420700023,70.514146226],[83.05250084700018,70.4999046900001],[83.04542076900012,70.491156317],[83.03345787900011,70.48200104400001],[83.01050866,70.42658112200014],[82.96998131600017,70.40501536700005],[82.87582441500008,70.37299225500004],[82.66407311300006,70.26015859600007],[82.65121504000015,70.247951565],[82.65064537900015,70.22955963700007],[82.66138756600012,70.21279531500012],[82.6726994150001,70.19912344],[82.67139733200011,70.18866608300011],[82.64380944100017,70.18121979400003],[82.67351321700019,70.16559479400014],[82.77564537900017,70.142035223],[82.88306725400011,70.08901601800005],[82.9192814460001,70.0807152360001],[83.00123131600006,70.08299388200008],[83.07162519600016,70.07005442900004],[83.11109459700006,70.069484768],[83.14942467500006,70.07648346600017],[83.17676842500012,70.08307526200007],[83.18572024800008,70.09243398600007],[83.15772545700023,70.09857819200006],[83.18165123800011,70.10952383000013],[83.18873131600017,70.12287018400004],[83.1829533210001,70.13886139500012],[83.1297306650001,70.20856354400011],[83.11304772200018,70.21588776200012],[83.08513431100002,70.22077057500009],[83.06527754000015,70.2331403670001],[83.03419030000012,70.26992422100001],[83.01441491,70.28729889500009],[82.97193444100006,70.31045156500012],[82.95167076900012,70.32514069200012],[83.0130314460001,70.33502838700004],[83.2054142590001,70.31216054900013],[83.33741295700023,70.313177802],[83.48389733200023,70.33502838700004],[83.51889082100016,70.330511786],[83.53443444100004,70.33197663000006],[83.53516686300011,70.33543528900005],[83.53370201900012,70.34926992400013],[83.53443444100004,70.35309479400014],[83.53858483200011,70.35423411700002],[83.54688561300006,70.35407135600003],[83.55128014400006,70.35618724200005],[83.56666100400011,70.36644114800006],[83.61361738400015,70.38959381700003],[83.64584394600016,70.39899323100003],[83.77466881600016,70.47662995000017],[83.74512780000012,70.50299713700015],[83.75098717500005,70.525824286],[83.76441491000004,70.54702383000007],[83.75733483200005,70.56850820500001],[83.69516035200016,70.60976797100007],[83.68458092500012,70.62274811400006],[83.6736759770001,70.64789459800011],[83.66480553500017,70.66095612200012],[83.65088951900012,70.6709658870001],[83.61491946700002,70.68988678600012],[83.60271243600008,70.7025820980001],[83.59864342500012,70.717230536],[83.60157311300011,70.72858307500015],[83.6067814460001,70.73973216399999],[83.60962975400015,70.75409577000005],[83.60157311300011,70.76984284100003],[83.58269290500019,70.78148021000011],[83.56006920700023,70.78880442900011],[83.54102623800006,70.79132721600014],[83.5354923840001,70.797552802],[83.513438347,70.83974844000012],[83.520762566,70.84593333500003],[83.50757897200018,70.86310455900002],[83.48780358200023,70.90053945500007],[83.47608483200017,70.91791413000006],[83.45582116000004,70.93439362200003],[83.40552819100017,70.95897044500005],[83.38306725400017,70.97626373900015],[83.39942467500012,71.00336334800006],[83.38184655000006,71.032660223],[83.34766686300006,71.05609772300006],[83.31568444100017,71.06565989800005],[83.16863040500013,71.08201732000008],[83.15015709700018,71.08808014500006],[83.13355553500006,71.09821198100003],[83.11605879000008,71.11347077],[83.24170983200011,71.11220937700007],[83.25700931100008,71.11652252800009],[83.23829186300011,71.141099351],[83.20972741,71.18927643400006],[83.156993035,71.2318382830001],[83.14763431100008,71.244818427],[83.15748131600017,71.25063711100013],[83.17457116000004,71.25486888200008],[83.21094811300011,71.27366771000011],[83.26628665500013,71.28571198100003],[83.29615319100012,71.30499909100017],[83.34945722700016,71.353664455],[83.37582441500015,71.36981842700006],[83.38493899800008,71.38202545800014],[83.37582441500015,71.40761953300002],[83.37525475400011,71.42047760600003],[83.37671959700006,71.44550202000015],[83.38217207100008,71.46503327000012],[83.39673912900011,71.47406647300012],[83.41749108200021,71.47662995000013],[83.4416610040001,71.47654857000008],[83.49252363400015,71.48261139500006],[83.54127037900015,71.49701569200012],[83.5628361340001,71.50991445500013],[83.61915123800004,71.55658600500014],[83.63062584700018,71.57587311400009],[83.62818444100017,71.61090729400017],[83.618907097,71.63117096600008],[83.59986412900011,71.64520905200014],[83.56861412900017,71.66152578300014],[83.54786217500006,71.66852448100003],[83.54297936300004,71.67340729400011],[83.54127037900015,71.68537018400004],[83.53907311300006,71.69196198100012],[83.53353925900015,71.6979841170001],[83.52670332100016,71.70302969000015],[83.45875084700018,71.74038320500001],[83.41871178500006,71.74754466400005],[83.41089928500006,71.75092194200006],[83.40919030000005,71.75901927299999],[83.41228274800014,71.766750393],[83.41618899800014,71.7733421900001],[83.41773522200016,71.77822500200016],[83.41716556100019,71.79043203300004],[83.41822350400017,71.79913971600011],[83.41553795700005,71.807766018],[83.40357506600006,71.81976959800011],[83.36052493600019,71.84064362200012],[83.258555535,71.85748932500012],[83.16179446700019,71.88434479400009],[83.05095462300002,71.88507721600003],[82.96998131600017,71.89793528900005],[82.78695722700016,71.905462958],[82.76050866000017,71.90167877800017],[82.73902428500011,71.89321523600013],[82.72217858200023,71.883490302],[82.70386803500016,71.87734609600001],[82.67807050900015,71.87946198100003],[82.6653751960001,71.88397858300009],[82.65186608200011,71.89175039300007],[82.64136803500011,71.90224844000015],[82.63697350400017,71.915025132],[82.62378991000011,71.94159577000015],[82.59253991000011,71.96234772300012],[82.47055097700016,72.02081940300012],[82.43034915500007,72.02680084800012],[82.38160241000017,72.04022858300011],[82.3217879570001,72.0663109400001],[82.27605228000019,72.07949453300013],[82.18506920700023,72.09349192899998],[82.22388756600006,72.11505768400009],[82.266856316,72.120306708],[82.29957116000011,72.134466864],[82.30738366000011,72.1828473980001],[82.30372155000006,72.20449453300002],[82.29769941500015,72.22064850500004],[82.28630618600019,72.23334381700012],[82.26636803500011,72.24433014500009],[82.23031660200016,72.2523867860001],[82.21924889400012,72.25739166900014],[82.21216881600017,72.26382070500007],[82.20606530000006,72.27545807500017],[82.1980900400001,72.28156159100017],[82.18213951900012,72.2862002620001],[82.16675866000017,72.284816799],[82.13656660200016,72.27789948100012],[82.1281844410001,72.27749258],[81.94402103000013,72.29303620000012],[81.86182701900006,72.31712474200003],[81.5861922540001,72.35065338700016],[81.20818118600019,72.3549258480001],[81.15503991000011,72.36542389500006],[80.90699303500011,72.45571523600016],[80.85873457100008,72.465521552],[80.83448326900012,72.4737002620001],[80.79151451900006,72.50226471600008],[80.70411217500006,72.54535553600012],[80.71827233200011,72.5579287780001],[80.7791447270001,72.579535223],[80.77857506600006,72.58274974200008],[80.77881920700005,72.5899925800001],[80.782969597,72.5973167990001],[80.79346764400006,72.60065338700012],[80.80445397200006,72.602484442],[80.81519616000017,72.60724518400009],[80.83448326900012,72.62051015800004],[80.79574629000015,72.63597239800005],[80.6858830090001,72.64630768400015],[80.66309655000005,72.66889069200012],[80.65788821700008,72.68353913000014],[80.63412519600016,72.70392487200003],[80.62842858200005,72.71670156500006],[80.63209069100006,72.73379140800002],[80.6429142590001,72.74359772300011],[80.69385826900006,72.76089101800012],[80.75977623800006,72.796087958],[80.77295983200023,72.80609772300006],[80.77361087300008,72.80890534100003],[80.77295983200023,72.82318756700012],[80.77458743600006,72.82721588700008],[80.7781681650001,72.82680898600007],[80.78272545700005,72.82538483300011],[80.78663170700004,72.82656484600012],[80.80518639400006,72.8495954450001],[80.8196720710001,72.872503973],[80.84197024800008,72.92210521000011],[80.82862389400006,72.938625393],[80.81430097700014,72.97426992400015],[80.8003035820001,72.99103424700017],[80.78972415500007,72.996568101],[80.77613366000011,73.00169505400011],[80.76433353000002,73.00755442900005],[80.75928795700011,73.01520416900009],[80.75709069100012,73.03046295800006],[80.75049889400012,73.03774648600007],[80.6893009770001,73.05780670800011],[80.6546330090001,73.06513092700011],[80.50619550900015,73.07835521000008],[80.46876061300011,73.0859235700001],[80.43718509200002,73.10089752800015],[80.46843509200019,73.10993073100015],[80.51392662900017,73.11481354400003],[80.594981316,73.11456940300009],[80.56861412900011,73.14154694200013],[80.52084394600016,73.15582916900006],[80.40137780000012,73.16486237200014],[80.32732181100008,73.182806708],[80.3020939460001,73.18341705900015],[80.25538170700011,73.17609284100013],[80.23113040500002,73.17597077000009],[80.27377363400015,73.19489166900009],[80.3224389980002,73.2026227890001],[80.46705162900011,73.20343659100003],[80.48975670700005,73.20644765800004],[80.53370201900012,73.21849192900014],[80.55152428500017,73.21808502800003],[80.56348717500012,73.22150299700006],[80.56755618600008,73.23802317900011],[80.52833092500006,73.28148021000005],[80.43995201900012,73.29572174700014],[80.34164472700016,73.299017645],[80.27271569100012,73.30975983300011],[80.25489342500012,73.3297386740001],[80.28150475400015,73.34292226800012],[80.32081139400006,73.35488515800007],[80.34099368600019,73.3712425800001],[80.34986412900011,73.38255442900008],[80.37029056100013,73.38613515800013],[80.392344597,73.38397858300014],[80.40650475400011,73.378078518],[80.41846764400006,73.37042877800017],[80.4287215500001,73.37181224200005],[80.48503665500007,73.419134833],[80.49529056100019,73.42304108299999],[80.56568444100012,73.42890045800014],[80.58741295700005,73.43610260600018],[80.60173587300008,73.44261302300008],[80.61003665500002,73.44887929900004],[80.61378014400006,73.45819733300006],[80.61475670700023,73.47418854400014],[80.62281334700018,73.4857445330001],[80.64161217500012,73.49274323100015],[80.6624455090001,73.498236395],[80.67741946700002,73.50495026200004],[80.6337996750001,73.51410553600012],[80.54029381600017,73.48725006700015],[80.50554446700019,73.49811432500003],[80.51148522200006,73.51577383000013],[80.51091556100008,73.55390045800011],[80.51295006600012,73.56704336100006],[80.53581790500019,73.580755927],[80.57447350400017,73.584173895],[80.8322046230002,73.57176341399999],[80.91700280000012,73.586859442],[81.25359134200019,73.60480377800003],[81.31812584700018,73.62360260600009],[81.52979576900006,73.64777252800009],[81.95687910200016,73.66266510600015],[82.30128014400006,73.661566473],[82.57260175900015,73.661566473],[83.06267337300002,73.6537946640001],[83.483653191,73.65546295800011],[83.72803795700023,73.69546133000014],[84.04700768350008,73.70286692900005],[84.36597741,73.71027252800002],[84.5717879570001,73.75299713700004],[84.7932235040001,73.76471588700004],[84.92790774800008,73.73297760600018],[85.00798587300001,73.710394598],[85.02947024800007,73.70941803600012],[85.09742272200006,73.71723053600012],[85.42701256600017,73.71190013200005],[85.47242272200006,73.71979401200004],[85.49447675900015,73.73773834800006],[85.48951256599999,73.744574286],[85.4783634770001,73.75177643400004],[85.47217858200011,73.75975169499999],[85.48064212300008,73.76902903900013],[85.52182050900014,73.78611888200008],[85.57048587300008,73.81293366100009],[85.58545983200011,73.81867096600014],[85.60425866000006,73.8219261740001],[85.868418816,73.82404205900009],[86.01612389400005,73.86652252800017],[86.39966881600017,73.88438548400013],[86.78321373800011,73.90224844],[87.0800887380001,73.87152741100012],[87.09848066500014,73.861232815],[87.10352623800006,73.8448753930001],[87.0952254570001,73.83510976800012],[87.06373131600017,73.82025788000009],[87.051524285,73.80890534100011],[87.03956139400006,73.795111395],[87.02662194100017,73.78359609600007],[87.01075280000005,73.7787132830001],[86.86329186300006,73.76483795799999],[86.82325280000006,73.75067780200008],[86.74773196700014,73.71381256700003],[86.72348066500015,73.70555247600011],[86.67017662900017,73.69717031500005],[86.61939537900011,73.682766018],[86.51978600400017,73.6723086610001],[86.39616946700019,73.62482330900009],[86.27540123800006,73.60053131700012],[86.11622155000006,73.58783600500006],[85.9747827480002,73.533677476],[85.89185631600017,73.51862213700018],[85.83350670700011,73.49494049700013],[85.81666100400011,73.49135976800008],[85.78679446700019,73.48078034100006],[85.78451582100016,73.4557559270001],[85.80298912900017,73.40253327000015],[85.80144290500013,73.38873932500003],[85.79753665500002,73.37689850500009],[85.7972111340001,73.36481354400017],[85.80640709700018,73.35073476800012],[85.81950931100002,73.33974844000006],[85.83318118600008,73.33177317900011],[85.84791100400017,73.32575104400003],[85.9143172540001,73.30744049700014],[86.23373457100016,73.25486888200011],[86.2474064460001,73.23802317900011],[86.25489342500006,73.23126862200009],[86.2474064460001,73.223822333],[86.3286238940001,73.180609442],[86.5227970710001,73.16347890800006],[86.61182701900006,73.13812897300012],[86.62867272200018,73.13125234600011],[86.66334069100006,73.12213776200002],[86.68018639400006,73.11456940300009],[86.69190514400005,73.105902411],[86.71314537900011,73.0836856140001],[86.72046959700006,73.07294342700011],[86.72413170700011,73.0631371110001],[86.72852623800006,73.04291413000009],[86.73414147200018,73.03266022300014],[86.74537194100017,73.02130768400015],[86.75945071700019,73.01166412999999],[86.77442467500006,73.00397370000007],[86.78248131600017,73.00088125200001],[86.78199303500011,73.04604726800015],[86.777110222,73.06549713700004],[86.7654728520001,73.08356354400013],[86.74187259200008,73.1045596370001],[86.6596785820001,73.15180084800006],[86.62273196700008,73.1664085960001],[86.58383222700016,73.17597077000009],[86.51221764400012,73.18032461100007],[86.48975670700023,73.18463776200015],[86.46021569100017,73.19782135600002],[86.4095158210001,73.2303734400001],[86.37777754000015,73.24428945500007],[86.25025475400017,73.2773298200001],[85.93392988400015,73.32391998900015],[85.89380944100006,73.33966705900008],[85.8615014980002,73.36440664300005],[85.85230553500006,73.37518952000006],[85.84961998800006,73.38165924700016],[85.85027103000012,73.40253327000015],[85.85141035200016,73.40566640800002],[85.857188347,73.41693756700003],[85.85840905000012,73.42304108299999],[85.85613040500007,73.42682526200004],[85.84620201900006,73.43455638200014],[85.84400475400017,73.43984609600001],[85.88233483200011,73.49624258000016],[85.9716903000001,73.51923248900015],[86.07422936300011,73.52826569200015],[86.20362389400006,73.5578473980001],[86.48812910250015,73.5708275410001],[86.77263431100008,73.58380768400009],[86.84489993600002,73.60626862200009],[87.1115828790001,73.604925848],[87.164805535,73.61139557500012],[87.20460045700011,73.63157786700005],[87.23633873800006,73.65281810100014],[87.31202233200023,73.68252187700016],[87.34424889400006,73.70416901200002],[87.32349694100017,73.70840078300016],[87.2732853520001,73.68976471600017],[87.24870853000017,73.6905785180001],[87.280528191,73.7299258480001],[87.32715905000012,73.7531598980001],[87.55713951900012,73.80174388200005],[87.61736087300008,73.8235537780001],[87.65333092500006,73.861232815],[87.6458439460001,73.868068752],[87.66407311300006,73.89085521000014],[87.6453556650001,73.90558502800003],[87.6106876960001,73.913519598],[87.58073978000007,73.91583893400015],[87.54493248800006,73.91429271000011],[87.53052819100016,73.90741608300003],[87.528575066,73.89199453300007],[87.52979576900006,73.86465078300002],[87.51710045700005,73.85028717700011],[87.487559441,73.83584219000006],[87.45427493600019,73.82469310100004],[87.43018639400006,73.82025788000009],[87.36280358200005,73.82697174700003],[87.29639733200023,73.84137604400009],[87.2400822270001,73.86082591399999],[87.18718509200014,73.88857656500006],[87.16667728000007,73.89655182500003],[87.15674889400006,73.90281810100008],[87.15251712300002,73.91242096600013],[87.15015709700018,73.92422109600002],[87.14454186300011,73.93060944200015],[87.11744225400017,73.9467634140001],[87.09083092500012,73.95490143400012],[87.08073978000007,73.96088288000014],[87.0432235040001,73.99217357],[86.96306399800018,74.01776764500006],[86.94019616000017,74.03314850500011],[86.99740644600014,74.04979075700005],[87.2573348320001,74.03912995000003],[87.36622155000006,74.010728257],[87.41993248800006,74.01211172100007],[87.36231530000012,74.04775625200011],[87.29078209700006,74.06268952000006],[86.89576256600017,74.07021719000011],[86.85075931100019,74.08779531500006],[86.85515384200008,74.09223053600014],[86.85865319100006,74.09747955900012],[86.86451256600012,74.10830312700001],[86.8450626960001,74.11481354400011],[86.73357181100019,74.12872955900009],[86.72388756600006,74.13214752800009],[86.73023522200018,74.14345937700007],[86.8029891290001,74.184027411],[86.75733483200011,74.2077497420001],[86.71143639400012,74.22435130400005],[86.66334069100006,74.23590729400009],[86.50562584700006,74.25527578300002],[86.02003014400012,74.26251862200003],[85.97437584700018,74.27619049700014],[85.94874108200023,74.29262929900014],[85.94890384200019,74.29950592700008],[85.95826256600006,74.305853583],[85.96013431100019,74.32054271],[85.94874108200023,74.32892487200014],[85.92945397200018,74.33331940300006],[85.91187584700006,74.33978913000014],[85.90552819100006,74.354681708],[85.93669681100013,74.368109442],[86.15853925900008,74.35765208500011],[86.23975670700005,74.33331940300006],[86.28679446700019,74.31293366100006],[86.29712975400011,74.31305573100003],[86.30502363400008,74.31793854400011],[86.30958092500012,74.32802969000006],[86.3084416020001,74.3390567080001],[86.3011173840001,74.34137604400017],[86.29102623800011,74.3419863950001],[86.2815861340001,74.34784577000009],[86.26392662900017,74.38019440300009],[86.25489342500006,74.38886139500009],[86.23226972700009,74.39752838700018],[86.20215905000006,74.40151601800007],[86.0957137380001,74.40399811400009],[86.07178795700023,74.40802643400015],[86.04948978000013,74.41616445500007],[86.06950931100019,74.42352936400006],[86.09245853000007,74.42536041900014],[86.13819420700011,74.42357005400005],[86.20118248800011,74.43134186400006],[86.25391686300011,74.41950104400009],[86.2845158210001,74.426459052],[86.3157658210001,74.43797435100011],[86.47527103000019,74.45819733300014],[86.57276451900012,74.44334544499998],[86.59066816500015,74.43724192899998],[86.6017358730002,74.42918528900007],[86.61060631600006,74.42011139500006],[86.62175540500019,74.41278717700006],[86.63917076900006,74.40989817900011],[86.60759524800008,74.40021393400015],[86.5975041020001,74.39569733300002],[86.62354576900005,74.38751862200009],[86.65162194100017,74.38788483300011],[86.70679772200018,74.39569733300002],[86.72730553500006,74.39476146000011],[86.78248131600017,74.38263580900004],[86.80152428500016,74.38247304900007],[86.85075931100019,74.39569733300002],[86.87696373800011,74.39630768400013],[86.92823326900006,74.38947174700014],[86.953868035,74.38886139500009],[86.92676842500006,74.36505768400009],[86.88624108200005,74.35053131700006],[86.78174889400006,74.32973867400007],[86.7171330090001,74.32514069200012],[86.70053144600016,74.32054271],[86.69898522200012,74.30711497600011],[86.7158309250001,74.30182526200004],[86.73902428500006,74.301947333],[86.78174889400006,74.30707428600012],[86.83301842500006,74.30158112200009],[86.85816491000017,74.3063011740001],[86.90650475400017,74.33527252800009],[86.92652428500006,74.34100983300006],[86.94890384200008,74.34259674700009],[86.95972741000017,74.33885325700005],[86.9876408210001,74.305812893],[86.99105879000008,74.29608795800006],[86.98536217500012,74.28742096600017],[86.96802819100006,74.27960846600017],[86.99293053500017,74.27024974200005],[87.0208439460001,74.27301666900009],[87.0428166020001,74.28583405200014],[87.05005944100004,74.3063011740001],[87.0413517590001,74.32168203300013],[87.00977623800006,74.34568919499999],[87.00220787900011,74.354681708],[87.01596113400015,74.36725495000009],[87.0506291020001,74.36627838700012],[87.11833743600008,74.354681708],[87.26238040500002,74.354681708],[87.23292076900006,74.36375560100002],[87.12549889400012,74.37579987200012],[87.10718834700006,74.37986888200008],[87.0800887380001,74.38996002800003],[87.06031334700018,74.40216705900012],[87.06397545700023,74.413031317],[87.0879012380001,74.42621491100014],[87.09245853000007,74.43598053600007],[87.07911217500012,74.44204336100007],[87.05005944100004,74.44403717700011],[86.79590905000006,74.42357005400005],[86.78695722700016,74.42601146],[86.77662194100004,74.43870677300005],[86.7688908210001,74.44403717700011],[86.7542423840001,74.44647858300006],[86.72095787900011,74.44708893400012],[86.70679772200018,74.45087311400015],[86.702403191,74.45600006700015],[86.69450931100002,74.47186920800009],[86.6868595710001,74.47821686400003],[86.67156009200008,74.48248932500003],[86.64087975400017,74.48257070500001],[86.62549889400012,74.48436107],[86.60132897200012,74.50104401200004],[86.59066816500015,74.50556061400007],[86.54883873800006,74.50714752800012],[86.53549238400015,74.51235586100002],[86.56446373800006,74.52505117400007],[86.75831139400006,74.54718659100014],[86.78248131600017,74.56073639500003],[86.49146569100006,74.56696198100018],[86.481211785,74.5689151060001],[86.45508873800006,74.57827383000016],[86.43995201900006,74.58124420800006],[86.38746178500011,74.5824242210001],[86.37012780000012,74.58584219],[86.32471764400012,74.60333893400015],[86.30884850400011,74.60626862200017],[86.27711022200006,74.60736725500011],[86.19385826900012,74.62197500200013],[85.74040774800002,74.63589101800011],[85.766856316,74.65253327000006],[85.79867597700016,74.66217682500003],[85.864512566,74.67059967699998],[85.83432050900008,74.68691640800002],[85.84245853000002,74.7011579450001],[85.90015709700018,74.7232933610001],[85.93799889400012,74.727972723],[86.01612389400005,74.71478913000006],[86.05632571700002,74.71775950700008],[86.07642662900017,74.72431061400006],[86.10108483200005,74.735785223],[86.12061608200021,74.75193919500008],[86.12525475400017,74.77301666900009],[86.10987389400006,74.78803131700003],[86.02833092500012,74.8139509140001],[86.04322350400017,74.81952545800011],[86.05860436300011,74.8213565120001],[86.090586785,74.82078685100014],[86.10336347700016,74.81867096600001],[86.109141472,74.8139509140001],[86.1134546230002,74.809271552],[86.12183678500017,74.80719635600018],[86.19662519600016,74.81069570500007],[86.22087649800008,74.80719635600018],[86.28028405000012,74.78314850500014],[86.30225670700011,74.77985260600009],[86.34693444100017,74.78082916900017],[86.3670353520001,74.77505117400001],[86.37777754000015,74.758734442],[86.21338951900005,74.7655703800001],[86.2298283210001,74.75511302300013],[86.28223717500006,74.73484935100011],[86.32146243600008,74.70766836100002],[86.33692467500012,74.70408763200014],[86.35450280000012,74.7064476580001],[86.36475670700023,74.7120628930001],[86.37476647200006,74.71898021],[86.39144941500008,74.72528717700014],[86.41114342500012,74.7276065120001],[86.4739689460001,74.72528717700014],[86.63917076900006,74.69733307500007],[86.6336369150001,74.68744538],[86.60759524800008,74.674505927],[86.60499108200017,74.66315338700012],[86.61841881600006,74.65566640800013],[86.64332116000017,74.65399811400012],[86.6868595710001,74.65631745000009],[86.68116295700023,74.6537132830001],[86.66651451900012,74.64264557500015],[86.69166100400011,74.62189362200014],[86.7171330090001,74.61774323100012],[86.77515709700018,74.62905508000001],[86.807871941,74.63153717700011],[86.8421330090001,74.630275783],[86.87623131600017,74.62539297100014],[86.93946373800006,74.60932038000009],[86.95753014400005,74.6088320980001],[86.96802819100006,74.61542389500006],[86.9651798840001,74.62506745000003],[86.95215905000012,74.63051992400007],[86.92652428500006,74.63589101800011],[86.90259850400015,74.65412018400009],[86.90935306100013,74.66327545800009],[86.9314884770001,74.67059967699998],[86.953868035,74.68366120000015],[86.90601647200018,74.69061920800006],[86.79468834700006,74.68504466400003],[86.7620548840001,74.70408763200014],[86.77564537900017,74.70897044500009],[86.8029891290001,74.71356842700014],[86.81666100400015,74.71775950700008],[86.80982506600006,74.72528717700014],[86.85873457100016,74.7460798200001],[86.9142358730002,74.75771719000012],[86.96802819100006,74.75543854400014],[87.01246178500017,74.73484935100011],[87.02279707100014,74.72858307500017],[87.0372827480002,74.72353750200011],[87.052012566,74.72166575700008],[87.06373131600017,74.72528717700014],[87.06560306100008,74.73094310100011],[87.06421959700018,74.74872467700011],[87.06739342500006,74.75560130400011],[87.08171634200002,74.77301666900009],[87.07374108200004,74.78156159100011],[87.05494225400011,74.78807200700003],[87.036387566,74.799750067],[87.06128991000017,74.83966705900015],[87.09717858200023,74.86212799700014],[87.26579837300001,74.91356028900007],[87.31128991,74.91966380400005],[87.36646569100004,74.93520742400015],[87.38575280000006,74.94432200700014],[87.36394290500012,74.957464911],[87.3343205090001,74.9609235700001],[87.27523847700016,74.95799388200008],[87.25025475400011,74.961330471],[87.17286217500005,74.98529694200006],[87.2127384770001,75.00291575699998],[87.26954186300006,75.01162344000006],[87.32748457100016,75.0127627620001],[87.38493899800008,75.0058454450001],[87.4124455090001,75.00678131700009],[87.42628014400012,75.00580475500011],[87.43580162900017,75.00263092700006],[87.45508873800011,74.99347565300013],[87.47999108200017,74.987250067],[87.4715275400001,74.97797272300015],[87.45199629000015,74.96881745000017],[87.43360436300011,74.96482982000002],[87.44548587300001,74.95327383000007],[87.46656334700018,74.94822825700014],[87.50928795700004,74.94432200700014],[87.55225670700023,74.93138255400012],[87.5740666020001,74.92967357000013],[87.59815514400012,74.93691640800014],[87.55665123800011,74.961411851],[87.56373131600016,74.96482982000002],[87.63868248800006,74.97223541900009],[87.66635175900015,74.97809479400003],[87.69507897200016,74.99115631699999],[87.70606530000006,75.00482819200015],[87.68002363400015,75.01264069200012],[87.73617597700016,75.01373932500017],[87.7636824880001,75.01776764500015],[87.78988691500015,75.02627187700007],[87.73218834700018,75.03864166900011],[87.45492597700016,75.03896719000012],[87.42530358200011,75.04498932500015],[87.41211998800006,75.04564036700002],[87.38013756600017,75.03937409100014],[87.36475670700023,75.039943752],[87.35425866000017,75.043890692],[87.32374108200023,75.06037018400018],[87.26783287900017,75.07294342700008],[87.03516686300011,75.09267812700001],[87.00855553500017,75.09015534100008],[86.94076582100016,75.0740420590001],[86.91944420700011,75.07611725500014],[86.8986108730002,75.08771393400015],[86.91871178500006,75.11127350500003],[86.93718509200008,75.12661367400015],[86.98804772199999,75.15322500200008],[87.02458743600008,75.16421133000016],[87.20118248800006,75.1691755230001],[87.53907311300011,75.14109935100011],[87.58790123800011,75.14301178600006],[87.91187584699999,75.10077545800014],[87.95264733200005,75.10004303599999],[87.99252363400015,75.1069196640001],[88.08326256600006,75.14398834800012],[88.11670983200011,75.14598216399999],[88.13941491000006,75.12872955900015],[88.16928144600014,75.15005117400011],[88.20972741000017,75.15859609600015],[88.25310306100008,75.16254303600014],[88.290782097,75.17023346600014],[88.30665123800004,75.17601146000011],[88.31446373800006,75.180853583],[88.31714928500006,75.18992747600011],[88.31771894600008,75.218491929],[88.32007897200006,75.22703685100011],[88.32618248800006,75.23456452000006],[88.33822675900015,75.24225495000009],[88.37134850400017,75.25531647300006],[88.48194420700011,75.27952708500007],[88.51791425900015,75.28266022300014],[88.62598717500006,75.26650625200006],[88.61280358200011,75.282416083],[88.59310957100016,75.295884507],[88.55030358200005,75.31427643400004],[88.61166425900015,75.344224351],[88.75261478000007,75.3507347680001],[88.81836998800011,75.36204661700008],[88.76986738400015,75.37567780200011],[88.84253991000006,75.39862702],[88.92457116000006,75.41225820500016],[89.00847415500002,75.41445547100011],[89.08521569100017,75.403021552],[89.05640709700006,75.42568594000015],[89.00717207100014,75.43353913000011],[88.73585045700023,75.409857489],[88.7571720710001,75.41665273600013],[88.95085696700008,75.44037506700015],[89.016368035,75.45148346600017],[89.13233483200005,75.45282623900006],[89.151621941,75.45673248900005],[89.17017662900011,75.46295807500012],[89.18767337300008,75.47134023600007],[89.22925866000006,75.50267161700013],[89.24577884200018,75.5067406270001],[89.26205488400015,75.5031598980001],[89.31120853000007,75.47874583500004],[89.37305748800006,75.47060781500014],[89.39380944100004,75.46507396000011],[89.39519290500002,75.44896067900005],[89.54053795700011,75.44769928600014],[89.55884850400017,75.4410667990001],[89.61003665500013,75.45014069200009],[89.6316837900001,75.44953034100003],[89.65333092500012,75.444037177],[89.67872155000012,75.44155508000007],[89.70362389400005,75.44350820500001],[89.72266686300006,75.45148346600017],[89.69629967500005,75.46063873900006],[89.6238712900001,75.47748444200006],[89.61280358200005,75.49237702],[89.63575280000006,75.50478750200013],[89.85547936300011,75.515366929],[90.05787194100017,75.51972077000009],[90.03598066500015,75.54328034100003],[89.99512780000012,75.54975006700012],[89.94996178500006,75.55141836100013],[89.91456139400006,75.5606957050001],[89.95411217500006,75.57762278899999],[90.31885826900005,75.60150788000006],[90.59888756600017,75.61188385600015],[90.75562584700012,75.65298086100013],[90.81788170700011,75.65851471600014],[90.86353600400011,75.66828034100011],[90.88672936300006,75.67055898600006],[90.90609785200016,75.667425848],[90.91195722700009,75.65989817900014],[90.91236412900011,75.65094635600012],[90.9150496750001,75.643255927],[90.94410241000017,75.62588125200001],[90.97803795700023,75.62042877800017],[91.01465905000006,75.62449778900013],[91.0516056650001,75.63580963700012],[91.10865319100012,75.661810614],[91.12818444100017,75.66571686399999],[91.19499759200014,75.66372304900015],[91.18620853000007,75.642808335],[91.21729576900005,75.63214752800015],[91.29127037900011,75.62897370000007],[91.45093834700018,75.65009186400003],[91.58025149800008,75.63776276200014],[91.62086022200016,75.643255927],[91.64210045700023,75.65436432500003],[91.6487736340001,75.66864655200011],[91.6414494150001,75.68414948100003],[91.62086022200016,75.6984723980001],[91.65902754000015,75.72378164300015],[91.70020592500012,75.73639557500002],[91.742930535,75.73607005400011],[91.78467858200023,75.72235748900009],[91.81202233200023,75.71662018400012],[91.90121504000008,75.73261139500003],[92.00782311300011,75.725775458],[92.0852156910001,75.7357445330001],[92.22559655000012,75.75372955900004],[92.37134850400017,75.740464585],[92.51628665500007,75.77293528899999],[92.8611759770001,75.79344310100014],[93.1857202480002,75.82656484600007],[93.54981530000006,75.85301341400005],[93.80140221450009,75.88422272350009],[94.05298912900011,75.91543203300002],[94.14307701900005,75.94131094000004],[94.16309655000012,75.94428131700012],[94.14421634200019,75.95514557500012],[94.11353600400011,75.94904205900004],[94.08025149800018,75.93707916900009],[94.05298912900011,75.930609442],[93.7404891290001,75.90021393400004],[93.66431725400017,75.90224844000015],[93.59400475400011,75.91693756700006],[93.60303795700023,75.93891022300006],[93.58057701900006,75.95075104400003],[93.54607181100002,75.95343659100011],[93.51880944100006,75.94798411700008],[93.46143639400012,75.92112864799999],[93.44792728000002,75.9085960960001],[93.474294467,75.90326569200012],[93.49439537900017,75.89533112200014],[93.46387780000006,75.88060130400008],[93.41895592500006,75.87287018400015],[93.39600670700015,75.88593170800011],[93.3849389980002,75.89687734600001],[93.3133244150001,75.930609442],[93.3201603520001,75.9374453800001],[93.30445397200005,75.94204336100013],[93.27312259200019,75.945786851],[93.25814863400015,75.95172760600009],[93.2734481130001,75.95897044500013],[93.3201603520001,75.97223541900014],[93.27735436300011,75.98212311400006],[93.23121178500011,75.97744375200016],[93.14210045700011,75.95795319200006],[93.00586998800006,75.944037177],[92.96404056100013,75.930609442],[93.00025475400011,75.92853424700017],[93.07203209700006,75.91250234600008],[93.10792076900012,75.91079336100006],[93.07146243600008,75.88939036700013],[93.00700931100006,75.88666413000006],[92.88819420700005,75.89647044499999],[92.88819420700005,75.90326569200012],[92.90170332100016,75.91290924700009],[92.88428795700005,75.934027411],[92.8535262380001,75.95526764500009],[92.82683353000007,75.96539948100003],[92.8514103520001,75.97577545800014],[92.92920983200005,75.99266185100014],[92.91814212300002,76.00438060100011],[92.91163170700023,76.01797109600005],[92.91407311300006,76.0290388040001],[92.92920983200005,76.03363678600014],[92.92383873800011,76.05329010600009],[92.9524845710001,76.06683991100006],[92.993418816,76.07420482000008],[93.02491295700023,76.07526276200011],[93.04070071700008,76.071478583],[93.05193118600019,76.06525299700003],[93.09522545700017,76.027777411],[93.10108483200011,76.02374909100006],[93.12598717500005,76.024359442],[93.21070397200005,76.04328034100003],[93.2308048840001,76.054144598],[93.21949303499999,76.07062409100008],[93.14625084700006,76.08567942900011],[93.1209416020001,76.09568919499999],[93.2591251960001,76.09638092700011],[93.31348717500006,76.10626862200006],[93.43034915500019,76.106878973],[93.42945397199999,76.0991071640001],[93.3533634770001,76.08071523600016],[93.33383222700016,76.06777578300012],[93.35222415500019,76.05719635600009],[93.37574303500006,76.05097077000012],[93.42204837300002,76.04730866100009],[93.41586347700016,76.03904857000002],[93.387950066,76.02065664300015],[93.42701256600017,76.01203034100014],[93.4632267590001,76.01947663000011],[93.53191165500019,76.04730866100009],[93.55469811300006,76.05027903900009],[93.628184441,76.04730866100009],[93.684825066,76.059719143],[93.7039494150001,76.06159088700018],[93.72095787900017,76.05874258000011],[93.74822024800002,76.04498932500003],[93.76531009200019,76.04047272300005],[93.7850041020001,76.04144928600014],[93.827403191,76.05158112200009],[93.84791100400015,76.054144598],[93.96070397200018,76.04832591400005],[93.99870853000007,76.054144598],[93.95573978000002,76.07518138200014],[93.93490644600016,76.08047109600001],[93.88160241000017,76.0736758480001],[93.85531660200016,76.07835521],[93.80681399800008,76.0991071640001],[93.7835392590001,76.102972723],[93.68978925900015,76.09568919499999],[93.67432701900006,76.09935130400014],[93.65251712300018,76.11701080900015],[93.63550866000004,76.12299225500009],[93.68580162900011,76.13226959800012],[94.102305535,76.1225039730001],[94.20134524800008,76.10480377800017],[94.25025475400015,76.11054108300006],[94.27515709700012,76.11725495000007],[94.32894941500015,76.12384674700017],[94.37419681100008,76.12079498900009],[94.38965905000012,76.11652252800015],[94.39478600400011,76.10871002800017],[94.38233483200011,76.09568919499999],[94.40406334700018,76.095648505],[94.42839603000002,76.091742255],[94.4519149100001,76.08470286700013],[94.47152754000014,76.07526276200011],[94.4367781910001,76.06159088700018],[94.45948326900005,76.05170319200006],[94.4808048840001,76.05182526200004],[94.52621504000008,76.06159088700018],[94.57300866000017,76.06118398600007],[94.59546959700018,76.06391022300015],[94.61500084700006,76.07526276200011],[94.58716881600016,76.08462148600013],[94.58676191500008,76.09235260600015],[94.6043400400001,76.09955475499999],[94.65691165500007,76.11302317900008],[94.73853600400017,76.11562734600007],[94.7098087900001,76.13947174700014],[94.64991295700005,76.14911530200011],[94.53988691500014,76.14972565300017],[94.57276451900012,76.1599795590001],[94.83472741,76.14972565300017],[94.85474694100017,76.14264557500003],[94.890391472,76.12323639500003],[94.90984134200014,76.11562734600007],[94.93213951900006,76.11176178600006],[95.05543053500004,76.11200592700011],[95.15333092500005,76.13222890800013],[95.25505618600002,76.12319570500004],[95.34131920700005,76.15497467700008],[95.38982181100002,76.16400788000009],[95.87289472700016,76.13812897300006],[95.97510826900006,76.114203192],[96.02670332100016,76.10871002800017],[96.11052493600008,76.11066315300003],[96.1370548840001,76.10712311400015],[96.17725670700011,76.09625885600015],[96.19646243600008,76.08755117400007],[96.19255618600008,76.07977936400006],[96.14340254000015,76.07587311400009],[96.0376082690001,76.08136627800009],[95.99293053500017,76.06159088700018],[96.03923587300002,76.06342194200006],[96.06120853000007,76.05963776200004],[96.07496178500017,76.04730866100009],[96.05095462300001,76.04677969],[95.97868899800007,76.03363678600014],[96.00806725400017,76.00934479400017],[96.01270592500006,76.00263092700011],[96.0048934250001,75.99335358300009],[95.9866642590001,75.99095286700013],[95.95142662900015,75.99266185100014],[95.9184676440001,75.98940664300008],[95.85132897200006,75.97431061400009],[95.71143639400012,75.90704987200013],[95.67847741000006,75.89883047100015],[95.60547936300006,75.89862702],[95.57520592500006,75.88898346600003],[95.67888431100002,75.86212799700004],[95.739512566,75.85643138200005],[95.76636803500011,75.87287018400015],[95.77369225400011,75.88279857000005],[95.79021243600008,75.89647044499999],[95.82097415500007,75.91693756700006],[95.84245853000019,75.92450592700003],[95.88892662900011,75.93341705900004],[95.93726647200006,75.94916413],[95.99187259200019,75.95034414300012],[96.0764266290001,75.96157461100005],[96.10515384200018,75.96088288],[96.13013756599999,75.954779364],[96.17310631600017,75.94989655200011],[96.30925540500007,75.95880768400015],[96.34180748800011,75.97223541900014],[96.3226017590001,75.97361888200014],[96.30201256600006,75.97833893400006],[96.28248131600006,75.9850121110001],[96.2659611340001,75.99266185100014],[96.30111738400015,75.99933502800009],[96.37452233200005,75.9953473980001],[96.40919030000012,76.00088125200013],[96.44044030000012,76.00950755400012],[96.4798283210001,76.0156110700001],[96.5185653000001,76.01577383000007],[96.54786217500005,76.00633372600008],[96.53435306100008,76.00210195500013],[96.52125084700012,75.99640534100017],[96.5096134770001,75.98871491100013],[96.50001061300011,75.97842031500012],[96.59099368600006,75.98729075700008],[96.63868248800011,75.98468659100017],[96.66456139400006,75.96539948100003],[96.63542728000007,75.9616559920001],[96.57390384200019,75.93756745000017],[96.46387780000006,75.880031643],[96.43799889400006,75.87596263200014],[96.46143639400006,75.87189362200017],[96.56625410200009,75.88495514500006],[96.63721764400006,75.90326569200012],[96.6863712900001,75.90672435100011],[96.78516686300011,75.89061107000005],[96.83521569100006,75.88898346600003],[96.83057701900012,75.91543203300002],[96.86296634200012,75.92804596600008],[96.9378361340001,75.93569570500001],[96.95045006600017,75.94082265800013],[96.97950280000006,75.9594587260001],[96.98975670700005,75.96881745000015],[97.00261478000019,75.97524648600016],[97.06177819099999,75.9858259140001],[97.20582116000017,76.03363678600014],[97.25098717500012,76.043402411],[97.3968205090001,76.04730866100009],[97.1992293630001,75.99310944200012],[97.19157962300008,75.98212311400006],[97.19874108200011,75.97581614800013],[97.24675540500019,75.95795319200006],[97.21355228000017,75.94920482],[97.19825280000012,75.94236888200008],[97.185313347,75.930609442],[97.219493035,75.92865631700015],[97.31226647200006,75.93451569200008],[97.34229576900005,75.94428131700012],[97.31348717500006,75.95490143400015],[97.31714928499999,75.96527741100006],[97.36500084700006,75.98387278900006],[97.3943791020001,75.98871491100013],[97.45606530000006,75.98334381700009],[97.51921634200002,75.99176666900006],[97.63795006600017,75.98993561400006],[97.68474368600002,75.97907135600018],[97.70606530000012,75.97842031500012],[97.82390384200002,75.98810455900018],[97.84253991,75.99237702],[97.83619225400011,76.00901927300005],[97.8205672540001,76.01878489799999],[97.70093834700018,76.0514997420001],[97.67139733200004,76.054144598],[97.57960045700005,76.04779694200005],[97.5483504570001,76.054144598],[97.6258244150001,76.08193594000006],[97.71216881600017,76.0960960960001],[97.79859459700018,76.09454987200013],[97.87728925900008,76.07526276200011],[97.86988366000011,76.06777578300012],[97.91285241000004,76.05931224200009],[97.96045983200005,76.06220123900015],[98.09546959700016,76.08783600500003],[98.1438908210001,76.08828359600001],[98.16138756600004,76.09080638200011],[98.19971764400006,76.10122304900001],[98.21998131600017,76.10252513200011],[98.01872806100006,76.10529205900015],[97.917735222,76.12299225500009],[97.97144616000017,76.143988348],[98.02759850400011,76.15717194200006],[98.05176842500012,76.15680573100006],[98.09603925900014,76.14638906500014],[98.11841881600017,76.14809804900015],[98.12859134200012,76.15330638200004],[98.14356530000006,76.16852448100003],[98.15105228000002,76.174261786],[98.1653751960001,76.17829010600018],[98.34310957100008,76.17767975500011],[98.40430748800011,76.18427155199998],[98.57618248800006,76.23163483300011],[98.81641686300006,76.26703522300012],[98.80201256600017,76.25885651200004],[98.79444420700005,76.24921295800006],[98.78931725400011,76.23965078300007],[98.78296959700018,76.23163483300011],[98.76587975400011,76.22239817900008],[98.72868899800001,76.21246979400014],[98.71273847700009,76.204982815],[98.74244225400017,76.19843170800011],[98.8369246750001,76.19814687700007],[98.86280358200011,76.20246002800017],[98.913340691,76.22117747600005],[98.93287194100016,76.22540924700017],[99.1721297540001,76.21238841399999],[99.165293816,76.21857330900013],[99.19369550900015,76.22443268400009],[99.23503665500007,76.223578192],[99.27409915500002,76.21686432500015],[99.29558353000007,76.204982815],[99.24496504000014,76.19867584800015],[99.22046959700006,76.191148179],[99.20004316500015,76.17767975500011],[99.23414147200016,76.16400788000009],[99.0901798840001,76.16400788000009],[99.17286217500006,76.13764069200009],[99.21436608200005,76.12995026200015],[99.26148522200006,76.12921784100003],[99.40113366000004,76.14716217700008],[99.51978600400015,76.14740631700012],[99.56177819100006,76.15704987200009],[99.57422936300006,76.15509674700006],[99.59669030000006,76.1397972680001],[99.59978274800008,76.13056061400012],[99.5822860040001,76.12311432500006],[99.46753991000017,76.10871002800017],[99.48707116000006,76.09511953300002],[99.51710045700011,76.08600495000003],[99.54957116000017,76.08148834800006],[99.57618248800011,76.08148834800006],[99.55567467500006,76.06777578300012],[99.571055535,76.06439850500011],[99.59131920700011,76.06533437700001],[99.61182701900006,76.07001373900012],[99.6276961600001,76.07835521],[99.6428328790001,76.08380768400004],[99.66309655000012,76.08291250200013],[99.68360436300004,76.07807038000004],[99.75489342500005,76.04901764500009],[99.762461785,76.03510163000011],[99.74463951900012,76.00975169499999],[99.7317814460001,75.99998607000013],[99.70281009200019,75.98480866100014],[99.68946373800011,75.97528717700004],[99.68181399800007,75.966009833],[99.68148847700016,75.95905182500012],[99.68425540500019,75.95160553600012],[99.68751061300006,75.93170807500003],[99.69019616000006,75.9223086610001],[99.69166100400011,75.91376373899999],[99.68946373800011,75.90704987200013],[99.67652428500011,75.89248281500004],[99.67481530000006,75.88495514500006],[99.67920983200005,75.87596263200014],[99.61475670700011,75.83722565300009],[99.54517662900011,75.817816473],[99.42400149800002,75.79344310100014],[99.5706486340001,75.77973053600003],[99.6126408210001,75.78929271],[99.64527428500006,75.81207916900003],[99.6761173840001,75.8393415390001],[99.71338951900006,75.86237213700018],[99.85987389400006,75.8994815120001],[99.90235436300006,75.92719147300008],[99.91334069100017,75.95327383000013],[99.8999129570001,75.97573476800015],[99.87452233200005,75.9933128930001],[99.84913170700005,76.00438060100011],[99.82520592500006,76.024359442],[99.84148196700014,76.04621002800003],[99.86890709700018,76.06997304900013],[99.8777775400001,76.09568919499999],[99.86573326900012,76.1076520850001],[99.8250431650001,76.11985911700002],[99.80958092500012,76.12921784100003],[99.80193118600008,76.14345937700011],[99.80274498800004,76.15086497600011],[99.7983504570001,76.15619538],[99.77540123800011,76.16400788000009],[99.68751061300006,76.18048737200013],[99.64307701900005,76.19627513200011],[99.62387129000008,76.22199127800015],[99.61500084700006,76.255072333],[99.59066816500015,76.272406317],[99.55583743600002,76.27899811400006],[99.3948673840001,76.28001536700012],[99.38379967500006,76.28436920800011],[99.37330162900015,76.29474518400012],[99.35401451900012,76.31854889500003],[99.31519616,76.34129466400005],[99.26498457100016,76.35224030200011],[99.06617272200006,76.35309479400003],[99.02019290500019,76.36237213700015],[99.02808678500017,76.3898786480001],[99.02019290500019,76.39948151200018],[99.01107832100008,76.40460846600008],[98.9871525400001,76.41380442900008],[98.94027754000008,76.44281647300015],[98.9240828790001,76.44977448100006],[98.84522545700005,76.467271226],[98.82813561300004,76.473334052],[98.81999759200019,76.47772858300009],[98.81641686300006,76.48240794499999],[98.81788170700011,76.49420807500015],[98.82154381600006,76.49770742400015],[98.82691491,76.499701239],[98.83318118600008,76.50690338700012],[98.84888756600006,76.51727936400012],[98.87476647200006,76.52094147300006],[99.20386803500016,76.49526601800004],[99.50855553500017,76.46873607000005],[99.77979576900012,76.47532786700013],[99.89242597700009,76.48895905200008],[100.22950280000012,76.49225495000012],[100.261485222,76.47256094000006],[100.30445397200018,76.46185944200015],[100.69336998800004,76.5065778670001],[100.7942814460001,76.5321312520001],[100.85108483200005,76.54010651200004],[100.88892662900011,76.53021881700012],[100.92750084700016,76.51056549700017],[101.01929772200006,76.50340403900013],[101.05713951900006,76.48615143400004],[101.04639733200005,76.47711823100012],[101.02491295700004,76.46800364800013],[101.01563561300011,76.45880768400015],[101.26254316500014,76.47186920800011],[101.29908287900011,76.48212311400006],[101.31617272200006,76.48395416900003],[101.41960696700019,76.46442291900014],[101.73829186300006,76.45026276200004],[101.77857506600006,76.43842194200006],[101.79639733200011,76.42035553600006],[101.81568444100006,76.40770091399999],[101.85971113400014,76.40058014500012],[102.24952233200005,76.38312409100017],[102.19629967500006,76.40884023600002],[102.17383873800006,76.41547272300008],[102.15137780000005,76.41852448100018],[102.10466556100008,76.41828034100001],[101.9611108730002,76.43549225500006],[101.92042076900012,76.44692617400001],[101.753103061,76.4702009140001],[101.56364993600008,76.47308991100014],[101.52263431100008,76.48615143400004],[101.54363040500019,76.49152252800017],[101.55054772200012,76.4923363300001],[101.37525475400015,76.51406484600005],[101.03598066500008,76.52020905200014],[100.919200066,76.55292389500005],[100.8782658210001,76.55499909100008],[100.90984134200008,76.56395091400013],[101.00945071700014,76.574896552],[101.03679446700019,76.58161041900001],[101.10482832100016,76.61644114800008],[101.10108483200011,76.61953359600015],[101.09489993600008,76.62693919500005],[101.0911564460001,76.63007233300011],[101.10865319100017,76.63979726800007],[101.114512566,76.65184153899999],[101.1175236340001,76.66502513200014],[101.12598717500006,76.67792389500015],[101.11182701900012,76.68414948100009],[101.12777754000015,76.693304755],[101.13624108200004,76.7049828150001],[101.13599694100006,76.71832916900009],[101.12598717500006,76.73261139500009],[101.15357506600017,76.73273346600014],[101.18799889400012,76.73737213700018],[101.21851647200006,76.74827708500005],[101.2346297540001,76.76727936400006],[101.17188561300004,76.77602773600013],[101.04322350400011,76.777044989],[100.98129316500014,76.78717682500015],[100.91431725400011,76.81232330900004],[100.89576256600006,76.82534414300011],[100.87256920700011,76.83258698100015],[100.86410566500015,76.8380394550001],[100.87142988400015,76.84585195500007],[100.87891686300006,76.85024648600016],[100.88477623800006,76.85541413000009],[100.88900800900008,76.86163971600003],[100.89210045700005,76.86908600500003],[100.85767662900017,76.87323639500015],[100.8720809250001,76.899400132],[100.93360436300006,76.95229726800015],[100.9192814460001,76.97589752800009],[100.95720462300018,76.98712799700009],[101.05030358200004,76.99262116100012],[101.15088951900012,76.98427969000015],[101.20630944100017,76.98602936400015],[101.2346297540001,77.00629303600006],[101.23585045700005,77.01727936400003],[101.24146569100004,77.02057526200005],[101.23210696700019,77.03034088700016],[101.23389733200005,77.038031317],[101.23853600400011,77.04462311400009],[101.23804772199999,77.05097077000002],[101.22388756600012,77.05565013200014],[101.1770939460001,77.0592308610001],[101.1663517590001,77.06146881700009],[101.1746525400001,77.08307526200018],[101.20704186300011,77.09853750200001],[101.43197675900014,77.15900299700012],[101.583669467,77.22231679900015],[101.7880965500001,77.26886627800009],[102.03663170700011,77.36318594000006],[102.04314212300018,77.38060130400014],[102.07569420700005,77.39118073100018],[102.1577254570001,77.40228913000011],[102.19402103000019,77.400620835],[102.20850670700005,77.39728424700017],[102.21412194100006,77.39288971600008],[102.22006269600016,77.38605377800015],[102.22868899800008,77.37958405200006],[102.2410587900001,77.376857815],[102.27076256600006,77.38056061400015],[102.29167728000019,77.38971588700012],[102.30982506600017,77.40110911699998],[102.33130944099999,77.41160716400005],[102.40992272199999,77.43065013200005],[102.47120201900006,77.464544989],[102.56934655000012,77.5012067730001],[102.88900800900015,77.54633209800005],[102.92042076900006,77.55491771],[102.9134220710001,77.56122467700011],[102.8992619150001,77.58226146000004],[102.94906660200016,77.58909739799999],[103.19662519600016,77.65892161700009],[103.25684655000012,77.663763739],[103.29712975400011,77.65058014500013],[103.29395592500012,77.64028554900013],[103.3182072270001,77.630072333],[103.35596764400006,77.61953359600012],[103.59253991000004,77.63157786700005],[103.72868899800014,77.66844310100011],[103.7912703790001,77.67698802300013],[103.85108483200011,77.7004255230001],[104.02328535200016,77.73309967700006],[104.06080162900015,77.735541083],[104.17286217500012,77.72687409100008],[104.29029381600006,77.73753489800013],[104.32569420700005,77.72996653899999]]],[[[107.64258873800006,78.16449616100012],[107.62907962300007,78.15827057500015],[107.64869225400005,78.15257396000008],[107.68628991000006,78.14728424700009],[107.70411217500012,78.13715241100014],[107.70411217500012,78.12348053600003],[107.61963951900006,78.08185455900004],[107.57357832100008,78.06757233300014],[107.4510197270001,78.05316803600009],[107.42904707100016,78.06207916900003],[107.42156009200018,78.07412344000012],[107.42408287900005,78.084662177],[107.43458092500012,78.09080638200008],[107.39063561300004,78.10248444200006],[107.20386803500017,78.082505601],[106.79944908950003,78.10671621300001],[106.39503014400006,78.13092682500009],[106.44939212300018,78.15444570500011],[106.47706139400005,78.16250234600007],[106.902110222,78.17877838700012],[106.9298608730002,78.18329498900006],[106.93816165500019,78.18195221600017],[106.93628991,78.17194245000009],[107.214121941,78.17194245000009],[107.22527103,78.17047760600003],[107.248301629,78.16486237200002],[107.25904381599999,78.16449616100012],[107.27173912900017,78.16746653900013],[107.27800540500002,78.17133209800012],[107.2833764980002,78.176214911],[107.29297936300006,78.18211497600014],[107.3122664720001,78.18764883000016],[107.33790123800006,78.19074127800006],[107.56511478000017,78.18756745000017],[107.6077580090001,78.17902252800015],[107.64258873800006,78.16449616100012]]],[[[93.86839950400022,78.14708968500015],[93.80767323100022,78.14311167200002],[93.76485364600008,78.14626837600014],[93.69800407700015,78.15260332700002],[93.6290796230002,78.15704987200006],[93.59291351000016,78.17239763200008],[93.59956353600009,78.18767964700014],[93.6464726130001,78.19767379400014],[93.69668947300006,78.20328590900006],[93.7499822500001,78.20399179800005],[93.7927233660001,78.20302473900013],[93.82021979400022,78.19326273600014],[93.8606156430001,78.18628737400003],[93.8823817570001,78.17871576099999],[93.91486798600013,78.1689916700001],[93.92087436700015,78.15702430600005],[93.86839950400022,78.14708968500015]]],[[[106.74878991,78.29881419500012],[106.7478947270001,78.27570221600008],[106.73308353000002,78.26585521000005],[106.7133895190001,78.26190827000006],[106.68523196700019,78.25983307500013],[106.65992272200018,78.26365794500008],[106.64893639400012,78.27806224200013],[106.6209416020001,78.2860375020001],[106.45020592500012,78.26129791900011],[106.46892337300008,78.25429922100011],[106.49000084700018,78.25238678600009],[106.53223717500012,78.25385163000013],[106.50033613400008,78.2414411480001],[106.19385826900012,78.193060614],[106.15853925900008,78.19281647300006],[106.09009850400005,78.20795319200006],[106.02271569100004,78.21137116100006],[105.99097741000017,78.21914297100007],[106.01099694100006,78.23183828300012],[106.02564537900017,78.257025458],[106.04029381600016,78.26585521000005],[106.06885826900006,78.27057526200015],[106.2791447270001,78.26080963700004],[106.33790123800011,78.26585521000005],[106.38892662900017,78.28864166900009],[106.3807072270001,78.29539622600011],[106.41724694100006,78.32819245000002],[106.47006269600008,78.34259674700009],[106.605235222,78.34149811400006],[106.65333092500012,78.33368561400006],[106.69825280000012,78.32050202000003],[106.74594160200016,78.31639232000008],[106.76563561300011,78.3084984400001],[106.74878991,78.29881419500012]]],[[[92.6599227220001,79.0917829450001],[92.72437584700016,79.07684967700008],[92.51661217500006,79.08038971600014],[92.24219811300004,79.11522044500002],[92.17562910200016,79.13084544499998],[92.18246504000008,79.13084544499998],[92.21338951900006,79.13955312700007],[92.456797722,79.1104190120001],[92.6599227220001,79.0917829450001]]],[[[102.92994225400017,79.27570221600013],[102.82545006600006,79.22711823100009],[102.8504337900001,79.22077057500017],[102.85962975400017,79.22028229400007],[102.83155358200005,79.20282623900012],[102.76872806100019,79.17869700700011],[102.74293053500006,79.15884023600009],[102.75709069100017,79.15582916900009],[102.7708439460001,79.15110911699999],[102.79761803500011,79.13833242400015],[102.77100670700005,79.11741770999998],[102.70484459700018,79.09324778899999],[102.6740014980002,79.07684967700008],[102.68165123800006,79.06732819200009],[102.692067905,79.05963776200015],[102.7000431650001,79.05182526200015],[102.70142662900015,79.04148997600005],[102.69141686300006,79.0322126320001],[102.6399031910001,79.01422760600013],[102.63892662900011,79.0114199890001],[102.63843834700006,79.00141022300012],[102.63648522200018,78.99746328300013],[102.62989342500012,78.993353583],[102.61500084700006,78.98798248900015],[102.59652754000014,78.97426992400001],[102.55046634200019,78.95648834800012],[102.4402775400001,78.88580963700016],[102.403086785,78.85370514500012],[102.3979598320001,78.84495677300004],[102.39600670700005,78.83624909100014],[102.3914494150001,78.82843659100016],[102.37916100400011,78.82245514500013],[102.41529381600017,78.83148834800006],[102.53003991000006,78.843491929],[102.665782097,78.89240143400015],[102.67042076900005,78.8978945980001],[102.67774498800004,78.91181061400005],[102.6877547540001,78.91844310100014],[102.74073326900006,78.93357982000013],[102.79004967500006,78.95604075700014],[102.83171634200019,78.98688385600009],[102.87501061300011,79.03510163000014],[102.88656660200009,79.04523346600008],[102.92115319099999,79.05841705900004],[102.958262566,79.06321849200013],[103.14429772200018,79.0577660180001],[103.2776798840001,79.08319733300002],[103.30469811300006,79.09674713700015],[103.29712975400011,79.10358307500009],[103.34913170700005,79.11635976800012],[103.46265709700018,79.1139183610001],[103.51685631600004,79.12742747600008],[103.52369225400017,79.13275788000014],[103.52279707100014,79.13711172100012],[103.51872806100013,79.14183177300013],[103.51636803500017,79.14826080900015],[103.52076256600006,79.154486395],[103.53101647200018,79.15936920800009],[103.57349694100006,79.16998932500003],[103.59896894600014,79.17251211100013],[103.62427819100017,79.17121002800003],[103.6466577480002,79.16502513200008],[103.63591556100019,79.15643952000006],[103.6150822270001,79.147609768],[103.60629316500014,79.13833242400015],[103.66016686300006,79.138088283],[103.8079533210001,79.15350983300014],[103.80494225400015,79.14516836100016],[103.98910566500015,79.13084544499998],[104.00131269600014,79.1276716170001],[104.01295006600004,79.119574286],[104.021250847,79.10858795800011],[104.02328535200016,79.09674713700015],[104.01710045700005,79.08462148600006],[104.00473066500015,79.07566966400005],[103.97624759200002,79.06264883000016],[104.04476972700016,79.04559967700011],[104.07374108200005,79.03278229400017],[104.0683699880001,79.01113515800007],[104.07349694100006,79.00482819200015],[104.38314863400014,78.98859284100011],[104.45533287900015,78.96674225500006],[104.50375410200016,78.92544179900001],[104.48340905000006,78.89069245000015],[104.50375410200016,78.88637929900014],[104.52491295700005,78.88507721600014],[104.49919681100019,78.863755601],[104.45435631600017,78.859808661],[104.40544681100019,78.861517645],[104.36670983200005,78.8571231140001],[104.63257897200006,78.84284088700004],[104.645274285,78.83885325700004],[104.65455162900017,78.82990143400004],[104.65870201900012,78.8195661480001],[104.65552819100006,78.81622955900009],[104.65007571700018,78.81366608300009],[104.64722741000006,78.80560944200015],[104.63835696700019,78.79051341400003],[104.61784915500007,78.78310781500015],[104.57886803500017,78.77521393400018],[104.6077580090001,78.771673895],[104.72510826900012,78.79083893400015],[104.73975670700005,78.79767487200009],[104.7519637380001,78.807562567],[104.75709069100004,78.81928131700009],[104.75245201900012,78.82347239800009],[104.73072350400011,78.83698151200018],[104.72291100400011,78.843491929],[104.75904381600017,78.85333893400009],[104.88705488400015,78.8571231140001],[105.0587671230002,78.843491929],[105.17505944100012,78.809271552],[105.18726647200016,78.80292389500005],[105.2430119150001,78.74868398600002],[105.25733483200005,78.74046458500011],[105.23959394600016,78.725002346],[105.24976647199999,78.713324286],[105.27344811300006,78.70246002800012],[105.29493248800004,78.68927643400015],[105.32943769600016,78.65989817900008],[105.34376061300006,78.64232005400014],[105.34302819100006,78.62718333500014],[105.33350670700005,78.6048037780001],[105.35718834700005,78.60065338700018],[105.39210045700005,78.598822333],[105.41553795700005,78.58344147300006],[105.40788821700012,78.56622955900006],[105.36768639400012,78.54319896000008],[105.3802189460001,78.53506094000006],[105.35743248800011,78.50625234600012],[105.30811608200011,78.48956940300009],[105.20948326900006,78.47357819200009],[105.02344811300011,78.40863678600012],[104.78736412900011,78.33637116100014],[104.75709069100004,78.33405182500017],[104.72681725400011,78.33624909100017],[104.65259850400011,78.355169989],[104.63038170700005,78.35675690300003],[104.57862389400012,78.34662506700006],[104.35328209700018,78.34145742400007],[104.29786217500012,78.33250560100014],[104.18824303500017,78.32684967700014],[104.13575280000012,78.31403229400011],[104.08301842500012,78.30914948100003],[103.98194420700011,78.2838402360001],[103.71257571700008,78.25629303600009],[103.31511478000002,78.25307851800004],[103.12110436300006,78.24412669499999],[103.01596113400015,78.25649648600003],[102.9632267590001,78.24982330900015],[102.86573326900006,78.21914297100007],[102.87256920700004,78.21662018400015],[102.88648522200006,78.20917389500009],[102.89307701900012,78.20673248900015],[102.86833743600002,78.19452545800006],[102.83741295700011,78.185736395],[102.66032962300008,78.16449616100012],[102.66822350400011,78.1771507830001],[102.67855879000015,78.18842194200009],[102.68523196700019,78.19985586100013],[102.68148847700016,78.2128766950001],[102.6658634770001,78.21857330900009],[102.60710696700018,78.225531317],[102.23853600400015,78.21979401200012],[102.17115319100017,78.20368073100015],[102.09180748800006,78.19920482],[102.04737389400012,78.1866722680001],[102.02540123800011,78.18528880400011],[102.00245201900012,78.19236888200008],[101.9998478520001,78.20844147300015],[101.97486412900011,78.212062893],[101.61378014400006,78.190130927],[101.20980879000015,78.19350820500001],[101.15430748800011,78.18292877800015],[101.01238040500006,78.1303571640001],[100.58277428500017,78.06146881700006],[100.48316491,78.02997467700006],[100.36622155000006,78.0228539080001],[100.0372827480002,77.96161530200008],[99.87126712300014,77.95221588700004],[99.65870201900012,77.96588776200018],[99.563243035,77.94757721600003],[99.51465905000006,77.94354889500015],[99.47380618600017,77.95966217700011],[99.37134850400011,77.95966217700011],[99.38111412900017,77.96995677300013],[99.41163170700011,77.97768789300014],[99.42603600400017,77.987005927],[99.40870201900006,77.99750397300006],[99.3869735040001,78.00348541900017],[99.34400475400017,78.00747304900015],[99.35027103000019,78.0211449240001],[99.28728274800008,78.03485748900012],[99.26832116000017,78.04157135600015],[99.30445397200012,78.05463288000014],[99.38738040500017,78.06574127800017],[99.42603600400017,78.07566966399999],[99.48308353000007,78.10635000200006],[99.53581790500007,78.14459870000003],[99.52214603000002,78.16526927300013],[99.54314212300008,78.1796735700001],[99.60352623800011,78.19236888200008],[99.59734134200014,78.19920482],[99.75513756600012,78.26455312700016],[99.80225670700011,78.27073802300013],[99.96876061300006,78.334418036],[100.03687584700012,78.33942291900003],[100.04965254000015,78.34320709800006],[100.04297936300011,78.35932038000011],[100.0164494150001,78.37140534100003],[99.99805748800006,78.38483307500003],[100.01563561300011,78.40468984600012],[100.00074303500017,78.41771067900011],[100.03191165500007,78.42841217700014],[100.07504316500015,78.43829987200013],[100.09693444100012,78.44904205900015],[100.11052493600008,78.46308014500012],[100.13599694100017,78.47492096600017],[100.1504012380001,78.48676178600013],[100.1311141290001,78.50092194200006],[100.14234459700018,78.51056549700003],[100.15414472700014,78.51341380400008],[100.16667728000007,78.5150820980001],[100.17945397200012,78.52073802300008],[100.18580162900011,78.52651601800012],[100.1941837900001,78.53717682500017],[100.19996178500017,78.54246653900003],[100.2756453790001,78.57973867400004],[100.28858483200004,78.59267812700013],[100.28142337300018,78.60309479400011],[100.26587975400011,78.61286041900014],[100.254649285,78.62376536700012],[100.25416100400011,78.63450755400005],[100.25896243600019,78.64386627800016],[100.26140384200002,78.65350983300014],[100.254649285,78.6653506530001],[100.33130944100017,78.69358958500008],[100.35450280000012,78.70945872600002],[100.35710696700018,78.71417877800012],[100.36451256600017,78.73704661700009],[100.37077884200002,78.74433014500012],[100.38526451900006,78.75161367400011],[100.40162194100017,78.75751373900009],[100.56690514400005,78.79490794500012],[100.60157311300011,78.79816315300016],[100.63648522200005,78.79694245000015],[100.73389733200011,78.77562083499998],[100.9939884770001,78.76406484600007],[101.00945071700014,78.76097239799999],[101.0193791020001,78.754868882],[101.02458743600013,78.74778880400014],[101.03093509200008,78.74339427300005],[101.07496178500017,78.75023021000005],[101.13941491000006,78.75169505400011],[101.1663517590001,78.76097239799999],[101.12891686300004,78.77798086100013],[101.0822046230002,78.78595612200009],[100.90430748800006,78.78839752800003],[100.85767662900017,78.794134833],[100.8237410820001,78.80878327000003],[100.83277428499999,78.83152903900005],[100.82292728000019,78.84162018400012],[100.80307050900008,78.84894440300012],[100.78223717500012,78.86334870000007],[100.78972415500006,78.87079498900006],[100.78492272200018,78.89508698100003],[100.81234785200014,78.91315338700014],[100.85059655000005,78.92865631700006],[100.8782658210001,78.94594961100007],[100.88404381600006,78.95770905200006],[100.88591556100017,78.9679222680001],[100.89112389400012,78.97687409100011],[100.90723717500006,78.98509349200009],[100.97364342500012,79.00454336100002],[100.98812910200016,79.01422760600013],[101.02711022200006,79.03143952000008],[101.07007897200018,79.03465403900005],[101.33086184950011,79.00582510000011],[101.5916447270001,78.97699616100009],[101.62566165500013,78.98688385600009],[101.583750847,78.98672109600012],[101.37777754000008,79.00787995000003],[101.22673587300001,79.04360586100007],[100.98812910200016,79.06264883000016],[101.00953209700012,79.08104075700011],[101.01872806100008,79.0917829450001],[101.028086785,79.12348053600007],[101.04265384200002,79.13300202000009],[101.06169681100002,79.13735586100007],[101.19564863400015,79.14716217700003],[101.1580509770001,79.15322500200001],[101.12598717500006,79.16502513200008],[101.13559004000015,79.17182038],[101.14584394600016,79.17450592700008],[101.15626061300006,79.17601146000011],[101.1663517590001,79.17926666900017],[101.17457115999999,79.18520742400001],[101.18580162900011,79.19745514500006],[101.19418379000014,79.20286692900011],[101.3099064460001,79.23875560100011],[101.37061608200005,79.24510325700014],[101.49756920700005,79.24022044500008],[101.55738366,79.254380601],[101.54127037900017,79.26459381700012],[101.54102623800011,79.27399323100015],[101.56364993600008,79.29596588700015],[101.54712975400011,79.301459052],[101.5389103520001,79.3027204450001],[101.52947024800007,79.30219147300012],[101.53248131600016,79.31171295800011],[101.53589928500017,79.3187523460001],[101.54167728000006,79.32444896000008],[101.55054772200012,79.33014557500015],[101.54371178500017,79.340765692],[101.57545006600004,79.35162995000009],[101.64673912900011,79.36424388200008],[101.81755618600017,79.37103913],[101.84441165500019,79.36359284100003],[101.88900800900008,79.32721588700004],[101.91146894600016,79.31419505400005],[101.94019616000004,79.30727773600013],[101.95199629000008,79.30231354400009],[101.96461022200018,79.29230377800012],[101.96705162900011,79.284125067],[101.95875084700006,79.26813385600012],[101.96078535200016,79.2612165390001],[101.97730553500006,79.25739166900009],[102.05054772200018,79.2612165390001],[102.2462671230002,79.24164459800012],[102.26319420700005,79.254380601],[102.25294030000005,79.2594668640001],[102.17465254000015,79.28681061400007],[102.16781660200016,79.2923851580001],[102.1601668630001,79.30219147300012],[102.1536564460001,79.316107489],[102.14698326900006,79.34503815300012],[102.13965905000006,79.35683828300006],[102.14730879000008,79.36676666900009],[102.15528405000006,79.36961497600011],[102.16391035200014,79.37116120000015],[102.17432701900005,79.37726471600014],[102.17611738400014,79.38153717700006],[102.17595462300008,79.38727448100003],[102.1766056650001,79.393540757],[102.1805119150001,79.39899323100002],[102.19703209700018,79.40818919500002],[102.2376408210001,79.42145416900001],[102.3029077480002,79.432806708],[102.40154056100008,79.43195221600008],[102.49927819100004,79.41819896000008],[102.60572350400011,79.41718170800011],[102.75220787900011,79.38882070500007],[102.89372806100008,79.38133372600011],[102.9124455090001,79.37409088700016],[102.92750084700005,79.34784577000006],[102.94434655000006,79.3412132830001],[103.13835696700002,79.32514069200012],[103.1531681650001,79.3096377620001],[103.13786868600008,79.299261786],[103.11150149800008,79.29026927299999],[103.06397545700005,79.28172435100008],[102.96827233200011,79.28172435100008],[102.92994225400017,79.27570221600013]]],[[[92.9905705090001,79.41950104400016],[92.94825280000006,79.40350983300009],[92.90430748800006,79.39793528900007],[92.813243035,79.39899323100002],[92.82056725400011,79.39158763200014],[92.79184004000015,79.38324616100006],[92.6689559250001,79.38760000200016],[92.62452233200011,79.40094635600018],[92.60084069100017,79.40521881700009],[92.59351647200018,79.40521881700009],[92.58855228000013,79.41168854400009],[92.58725019600008,79.4151065120001],[92.58725019600008,79.41950104400016],[92.63803144600016,79.42023346600011],[92.7912703790001,79.44000885600003],[92.8924259770001,79.43573639500012],[92.9905705090001,79.41950104400016]]],[[[92.3676863940001,79.42572663000013],[92.29078209700006,79.41290924700012],[92.26514733200017,79.41266510600015],[92.27214603000007,79.40497467700014],[92.2817488940001,79.39980703300013],[92.30543053500006,79.39158763200014],[92.24382571700019,79.38231028899999],[91.78467858200023,79.41950104400016],[91.94971764400006,79.42267487200013],[92.02881920700023,79.4133161480001],[92.07056725400011,79.41388580900018],[92.11158287900011,79.4211286480001],[92.18181399800002,79.44782135600003],[92.223887566,79.45343659100003],[92.30543053500006,79.45302969000012],[92.4705509770001,79.43256256700006],[92.44629967500006,79.42576732000013],[92.3676863940001,79.42572663000013]]],[[[91.37224368600019,79.485541083],[91.53126061300011,79.44928620000009],[91.46314537900017,79.45986562700013],[91.38502037900011,79.46088287999999],[91.360118035,79.46727122600011],[91.36264082100008,79.47113678600012],[91.3636173840001,79.47785065300017],[91.33423912900011,79.48452383000013],[91.19483483200017,79.51508209800006],[90.82007897200018,79.55670807500003],[90.79379316500015,79.56354401200002],[91.14421634200006,79.5373395850001],[91.37224368600019,79.485541083]]],[[[76.27735436300011,79.64545319200009],[76.1731876960001,79.63727448100016],[76.14014733200005,79.63861725500009],[76.19947350400011,79.60858795800011],[76.2688094410001,79.6043154970001],[76.40699303500011,79.61749909100013],[76.42302493600019,79.63703034100006],[76.4822697270001,79.64374420800007],[76.8530922096668,79.60689253699996],[77.22391469233341,79.57004086600007],[77.59473717500006,79.53318919500008],[77.61361738400008,79.52191803600009],[77.61378014400006,79.50897858300009],[77.60124759200002,79.50039297100015],[77.5828556650001,79.4955101580001],[77.1394556000001,79.48655833500005],[76.69605553500011,79.47760651200002],[76.6409611340001,79.48712799700003],[76.65479576900006,79.49559153900007],[76.69483483200011,79.51044342700013],[76.69874108200011,79.51821523600013],[76.68433678500011,79.52777741100012],[76.62061608200004,79.54857005400011],[76.60596764400006,79.54783763200008],[76.59180748800006,79.54539622600005],[76.5638126960001,79.5373395850001],[76.55201256600006,79.53620026200015],[76.17432701900006,79.56907786700008],[76.09205162900011,79.60370514500015],[76.05201256600017,79.62929922100012],[76.05144290500019,79.64850495000017],[76.10303795700017,79.66193268400018],[76.16358483200023,79.66388580900012],[76.22437584700016,79.65737539300012],[76.27735436300011,79.64545319200009]]],[[[100.08326256600017,79.68642812700001],[100.19996178500017,79.67894114800013],[100.25733483200005,79.680812893],[100.28646894600016,79.67731354400011],[100.30982506600006,79.66596100500014],[100.18897545700011,79.65908437700011],[100.0701603520001,79.63861725500009],[99.98601321700008,79.60179271],[99.94410241000017,79.59076569200015],[99.90577233200005,79.60382721600003],[99.91895592500006,79.6133487000001],[99.92823326900006,79.62197500200003],[99.93506920700005,79.63190338700012],[99.9404403000001,79.64545319200009],[99.93970787900017,79.654974677],[99.93604576900006,79.66425202000012],[99.93604576900006,79.67430247600011],[99.9466251960001,79.68642812700001],[99.98292076900006,79.69790273600013],[100.02076256600006,79.70156484600001],[100.09693444100012,79.70062897300012],[100.08326256600017,79.68642812700001]]],[[[58.76482181100002,79.91840241100012],[58.790293816000116,79.91669342700011],[58.814789259000094,79.91669342700011],[58.86117597700016,79.91095612200014],[58.87037194100011,79.90131256700009],[58.81959069100017,79.88654205900009],[58.81039472700011,79.88523997599998],[58.76335696700008,79.88300202000002],[58.65406334700017,79.89276764500015],[58.63672936300006,79.8994815120001],[58.619476759000094,79.91258372600007],[58.584727410000106,79.92645905200004],[58.52947024800019,79.93329498900009],[58.24830162900017,79.93341705900006],[58.25163821700019,79.93919505400011],[58.61394290500007,79.979437567],[58.63005618600002,79.97825755400008],[58.644867384000094,79.97532786700005],[58.64576256600017,79.971625067],[58.636241082000105,79.9655215520001],[58.637380405000016,79.9591332050001],[58.71607506600011,79.928900458],[58.76482181100002,79.91840241100012]]],[[[94.15414472700009,79.983343817],[93.99398847700016,79.96478913],[93.95948326900006,79.96527741100009],[93.9298608730002,79.97443268400015],[93.95435631600006,79.99909088700007],[93.96810957100014,80.00918203300002],[93.98438561300011,80.015366929],[94.12582441500015,80.01886627800017],[94.25025475400015,80.04010651200015],[94.29200280000012,80.03888580900004],[94.32764733200004,80.0289981140001],[94.29314212300002,80.01801178600006],[94.24984785200016,80.01105377800017],[94.16944420700005,80.00853099200008],[94.17188561300011,80.00551992400015],[94.17408287900011,80.00218333500014],[94.17750084700012,79.99860260600013],[94.18295332100016,79.99485911700013],[94.15414472700009,79.983343817]]],[[[90.90211022200012,80.07363515800009],[91.24927819100006,80.05573151250007],[91.59644616,80.03782786699999],[91.78207441500015,80.06378815300016],[92.04029381600012,80.037298895],[92.42432701900012,80.03070709800012],[92.6487736340001,79.9837914080001],[93.1384790375001,79.95860423350017],[93.628184441,79.93341705900006],[93.72388756600017,79.92731354400014],[93.77100670700004,79.91803620000012],[93.81373131600017,79.89866771],[93.7825626960001,79.87417226800015],[93.74683678500016,79.85614655200011],[93.66993248800004,79.83173248900009],[93.46412194100017,79.8018252620001],[93.36182701900006,79.77521393400015],[93.279063347,79.7676455750001],[93.05209394600016,79.71527741100012],[92.62476647200006,79.67279694200006],[92.27332604250009,79.67586904500014],[91.9218856130001,79.67894114800013],[91.93441816500008,79.67975495000013],[91.94695071700019,79.68268463700015],[91.95883222700016,79.68724192900011],[91.97022545700011,79.69326406500012],[91.9296981130001,79.7059593770001],[91.91570071700002,79.70693594000006],[91.94450931100008,79.71588776200016],[92.148122592,79.73419830900013],[92.20508873800006,79.73021067900008],[92.28321373800006,79.71181875200013],[92.30844160200016,79.71450429900001],[92.3328556650001,79.722398179],[92.35328209700018,79.73419830900013],[92.32211347700016,79.75682200700011],[92.28077233200023,79.77106354400003],[92.0994572270001,79.80988190300003],[91.75714494433353,79.82358090466685],[91.41483266166685,79.83727990633339],[91.07252037900017,79.85097890800004],[91.05909264400006,79.86078522300015],[91.06592858200011,79.87689850500011],[91.08277428500017,79.883978583],[91.164805535,79.89765045800011],[91.26238040500002,79.90302155200008],[91.29859459700006,79.91913483300006],[91.23243248800004,79.94179922100001],[91.08716881600017,79.95237864800005],[91.01758873800006,79.96698639500009],[91.0516056650001,79.96710846600014],[91.15381920700023,79.98004791900014],[91.18189537900017,79.99485911700013],[91.17986087300014,80.01117584800015],[91.1614689460001,80.02684153900013],[91.13640384200008,80.04002513200008],[91.11361738400015,80.04889557500003],[91.08497155000006,80.04718659100003],[90.99008222700016,80.056341864],[90.8948673840001,80.05499909100011],[90.86654707100008,80.06256745000015],[90.90211022200012,80.07363515800009]]],[[[51.21762129000015,79.99485911700013],[51.2561141290001,79.982855536],[51.34669030000006,79.97711823100003],[51.388438347,79.96698639500009],[51.366953972000175,79.96173737200009],[51.34685306100002,79.95331452000015],[51.38282311300011,79.95538971600014],[51.47022545700005,79.94432200700011],[51.505137566000116,79.93341705900006],[51.466075066000116,79.92011139500012],[51.420095248000074,79.91644928600009],[50.961816168333456,79.93577708533336],[50.50353708866677,79.9551048846668],[50.04525800900015,79.97443268400015],[50.050059441000116,79.97724030200003],[50.05494225400011,79.97882721600006],[50.23015384200008,79.99485911700013],[50.55250084700006,79.98802317900011],[50.5833439460001,79.99485911700013],[50.62574303500011,80.02960846600008],[50.653819207000105,80.04433828300007],[50.692556186000076,80.05353424700014],[50.854746941000116,80.06720612200009],[50.963552280000016,80.10187409100014],[51.000987175000056,80.10252513200011],[51.028819207000225,80.09023672100015],[51.05469811300023,80.07379791900014],[51.086680535000106,80.06256745000015],[51.26482181100013,80.056341864],[51.24683678500017,80.04962799700014],[51.21355228000019,80.04222239800008],[51.19971764400006,80.03241608300014],[51.196543816000116,80.02204010600003],[51.20118248800023,80.01089101800004],[51.20964603000018,80.00112539300007],[51.21762129000015,79.99485911700013]]],[[[59.737559441000116,79.95986562700013],[59.54297936300023,79.939642645],[59.47632897200018,79.94867584800004],[59.440684441000116,79.94806549700014],[59.433116082000055,79.93341705900006],[59.40267988400009,79.9218610700001],[59.37208092500012,79.91966380400014],[59.20679772200006,79.928900458],[59.1736759770001,79.939642645],[59.18116295700011,79.94253164300012],[59.20036868600002,79.95331452000015],[59.15162194100011,79.95490143400016],[59.001719597,79.98061758000004],[58.792735222000175,80.01105377800017],[58.76872806100001,80.02106354400014],[58.778575066000165,80.03742096600017],[58.796397332000225,80.04364655200014],[59.16277102950019,80.08228180550003],[59.52914472700016,80.12091705900015],[59.590342644000124,80.10858795800003],[59.78630618600001,80.09418366100013],[59.809580925000056,80.08893463700015],[59.831309441000116,80.08022695500007],[59.841563347000054,80.07074616100006],[59.84197024800008,80.06102122600011],[59.8396916020001,80.05239492400001],[59.841156446000156,80.04580312700013],[59.84498131600017,80.037298895],[59.83855228000007,80.03286367400013],[59.836110873000194,80.02728913000011],[59.85141035200016,80.015366929],[59.870860222000175,80.00926341400002],[59.90984134200008,80.00560130400014],[59.92725670700022,79.99485911700013],[59.862478061000196,79.98834870000003],[59.737559441000116,79.95986562700013]]],[[[36.82488040500007,80.14179108300011],[36.78589928500017,80.13983795800007],[36.707204623000194,80.14472077000015],[36.64625084700012,80.14549388200007],[36.617360873000194,80.14972565300009],[36.5935978520001,80.15875885600009],[36.65259850400011,80.17487213700015],[36.853688998000194,80.15192291900017],[36.82488040500007,80.14179108300011]]],[[[97.7742619150001,80.13141510600003],[97.78777103000017,80.13011302300012],[97.81592858200005,80.13239166900009],[97.82943769600016,80.13141510600003],[97.846934441,80.12677643400009],[97.88599694100017,80.11050039300007],[97.90064537900017,80.10040924700009],[97.9436955090001,80.07859935100005],[98.04297936300006,80.07111237200016],[98.08961022200006,80.056341864],[98.05884850400017,80.03180573100018],[98.0071720710001,80.01459381700006],[97.95134524800002,80.00438060100011],[97.86264082100016,79.999741929],[97.8478296230002,79.99652741100014],[97.84180748800011,79.99225495000003],[97.84546959700006,79.98745351800012],[97.8525496750001,79.98236725500011],[97.85621178500006,79.97748444200015],[97.84424889400012,79.9703636740001],[97.76807701900006,79.94647858300011],[97.78199303500006,79.94086334800012],[97.82943769600016,79.93341705900006],[97.81421959700016,79.91632721600011],[97.78484134200008,79.89980703300004],[97.75196373800006,79.8861758480001],[97.61573326900012,79.85687897300006],[97.58253014400012,79.85712311399999],[97.64063561300006,79.84052155200014],[97.65821373800006,79.82977936400012],[97.62427819100006,79.82265859600007],[97.55152428500017,79.82371653900013],[97.52051842500006,79.80927155200008],[97.54639733200005,79.80044179900004],[97.60401451900012,79.79702383000001],[97.63038170700011,79.78880442900011],[97.6087345710001,79.77659739800013],[97.57837975400017,79.76780833500008],[97.49545332100016,79.75787995000017],[97.44385826900005,79.74461497600014],[97.21314537900017,79.72036367400015],[97.19157962300008,79.70693594000006],[97.215586785,79.70062897300012],[97.24683678500017,79.69953034100017],[97.2778426440001,79.70286692900002],[97.327891472,79.71906159100014],[97.70582116000017,79.76316966400005],[97.7195744150001,79.77171458500008],[97.71941165500013,79.79564036700012],[97.72315514400006,79.80536530200007],[97.7332462900001,79.80927155200008],[97.75562584700006,79.81159088700002],[97.85084069100012,79.83698151200014],[97.87452233200011,79.83954498900006],[97.89722741000017,79.84454987200012],[97.917735222,79.85712311399999],[97.88404381599999,79.87718333500005],[97.89283287900017,79.89240143400004],[97.9261173840001,79.90216705900018],[98.08790123800006,79.9055036480001],[98.255625847,79.87287018400015],[98.33985436300006,79.87230052299999],[98.37720787900017,79.877875067],[98.41285241000006,79.88849518400004],[98.45281009200019,79.9055036480001],[98.44532311300011,79.91185130400014],[98.43718509200019,79.91632721600011],[98.4280705090001,79.91876862200003],[98.41863040500019,79.91913483300006],[98.43474368600008,79.92820872600005],[98.47022545700005,79.93414948100018],[98.48682701900012,79.939642645],[98.47315514400006,79.94647858300011],[98.48731530000012,79.95555247600011],[98.56739342500006,79.97064850500011],[98.5823673840001,79.9759789080001],[98.57789147200006,79.98257070500007],[98.46558678500006,79.99990469000006],[98.43913821700008,80.015366929],[98.47681725400011,80.03790924700013],[98.515391472,80.05231354400003],[98.5569767590001,80.05853913],[98.7561955090001,80.037787177],[99.198985222,80.04999420800006],[99.247813347,80.03583405200014],[99.2254337900001,80.027818101],[99.18067467500006,80.02155182500015],[99.15845787900017,80.015366929],[99.1946720710001,80.01068756700006],[99.23072350400017,80.01019928600009],[99.30258222700009,80.0199649110001],[99.33171634200019,80.01976146000004],[99.36280358200011,80.01215241100012],[99.37582441500008,80.00043366100013],[99.35027103000019,79.98802317900011],[99.37582441500008,79.97955963700015],[99.56316165500002,79.96698639500009],[99.54859459700012,79.96051666900017],[99.53321373800006,79.95587799700014],[99.51775149800002,79.95335521000014],[99.50171959700006,79.95331452000015],[99.53581790500007,79.93573639499999],[99.66553795700004,79.93341705900006],[99.73487389400012,79.92316315300012],[99.80339603000002,79.9055036480001],[99.80730228000002,79.90273672100015],[99.81177819100017,79.89793528900007],[99.81544030000005,79.89280833500014],[99.81706790500007,79.88873932500007],[99.81934655000006,79.88564687700001],[99.82488040500007,79.88418203300013],[99.83139082100016,79.88324616100006],[99.837168816,79.88157786700005],[99.86597741000006,79.864935614],[99.88062584700006,79.85927969],[99.92888431100019,79.85398997600014],[99.96257571700019,79.84609609600015],[100.02247155000012,79.82355377800017],[100.00171959700006,79.80548737200014],[100.01807701900006,79.79417552300008],[100.0769962900001,79.78266022300012],[100.05372155000012,79.76748281500015],[100.01392662900011,79.75633372600014],[99.93978925900015,79.74725983300011],[99.84205162900017,79.74876536699999],[99.81706790500007,79.74164459800012],[99.86085045700004,79.72540924700007],[99.88111412900017,79.71141185100011],[99.88599694099999,79.69326406500012],[99.86736087300002,79.67853424700002],[99.79444420700011,79.65717194200009],[99.76791425900015,79.64545319200009],[99.77979576900012,79.63304271000005],[99.77816816500015,79.62494538000014],[99.76172936300006,79.61131419499999],[99.73943118600002,79.58437734600012],[99.72510826900006,79.57453034100011],[99.7072046230002,79.56907786700008],[99.72535241000011,79.55255768400016],[99.7685653000001,79.53510163000011],[99.78907311300006,79.52191803600009],[99.766368035,79.5105654970001],[99.70281009200019,79.48965078300012],[99.68604576900012,79.47353750200007],[99.68881269600016,79.45734284100003],[99.70232181100002,79.44188060100002],[99.73373457100014,79.41950104400016],[99.70899498800004,79.40566640800007],[99.6972762380001,79.39642975500011],[99.69629967500012,79.38816966400013],[99.70679772200018,79.38068268400015],[99.74805748800006,79.36424388200008],[99.7312931650001,79.355902411],[99.68604576900012,79.32269928600009],[99.66667728000007,79.31224192900002],[99.60352623800011,79.29596588700015],[99.59815514400012,79.29189687700001],[99.59058678500017,79.27977122600011],[99.58301842500012,79.27488841400005],[99.57056725400011,79.27216217700008],[99.487966342,79.26894765800002],[99.47006269600016,79.26630280200014],[99.46013431100008,79.254380601],[99.46013431100008,79.24754466399999],[99.41480553500017,79.26463450700011],[99.14698326900005,79.31069570500016],[99.0892033210001,79.30914948100012],[99.03492272200018,79.29596588700015],[99.06226647200005,79.28001536700008],[99.32272382900005,79.22640615450003],[99.58318118600019,79.17279694200006],[99.61085045700011,79.15884023600009],[99.58334394600016,79.14883047100004],[99.55128014400006,79.14500560100011],[99.488047722,79.14516836100016],[99.52702884200018,79.1237653670001],[99.82105553500006,79.10146719000008],[99.84294681100019,79.09210846600014],[99.8545028000001,79.08991120000013],[99.856211785,79.08380768400013],[99.8753361340001,79.05345286699999],[99.88599694099999,79.04148997600005],[99.86304772200006,79.02435944200012],[99.88754316500015,79.00145091400013],[99.9466251960001,78.97011953300007],[99.92554772200016,78.94599030200006],[99.87720787900017,78.9311384140001],[99.68604576900012,78.89813873900012],[99.63038170700004,78.867621161],[99.5584416020001,78.85700104400013],[99.4583439460001,78.82880280200008],[99.4056095710001,78.82245514500013],[99.13306725400017,78.82746002800009],[98.92750084700006,78.80731842700006],[98.60271243600019,78.81586334800006],[98.55518639400012,78.80255768400015],[98.58838951900012,78.79783763200005],[98.60271243600019,78.79254791900017],[98.59831790500013,78.78644440300017],[98.57960045700005,78.78217194200006],[98.327403191,78.78473541900017],[98.2404891290001,78.80878327000003],[98.08961022200006,78.80878327000003],[98.11695397199999,78.81622955900009],[98.08277428500004,78.82420482000005],[97.94556725400015,78.80878327000003],[97.76075280000006,78.80878327000003],[97.75554446700006,78.81696198100012],[97.73853600400011,78.82111237200014],[97.67351321700002,78.82811107000005],[97.44223066500015,78.81720612200014],[97.4044702480002,78.82990143400004],[97.45232181100002,78.83803945500013],[97.55974368600008,78.83051178600009],[97.60303795700004,78.843491929],[97.55787194100012,78.85468170799999],[97.26392662900011,78.85301341399999],[97.219493035,78.86334870000007],[97.22681725400011,78.87079498900006],[97.20167076900006,78.87848541900007],[97.1232202480002,78.88507721600014],[96.918711785,78.94135163000014],[96.86719811300006,78.94009023600003],[96.84205162900015,78.94594961100007],[96.8501082690001,78.95010000200001],[96.86939537900011,78.966986395],[96.79851321700002,78.98920319200006],[96.53939863350014,78.99176666850012],[96.28028405000006,78.99433014500006],[96.30388431100019,78.99921295800013],[96.33057701900012,79.00136953300013],[96.35450280000006,79.006781317],[96.36963951900006,79.02167389500015],[95.93246504000015,78.99290599200009],[95.85523522200006,79.00055573100003],[95.69727623800004,78.99827708500005],[95.67253665500013,79.00096263200014],[95.65349368600013,79.01113515800007],[95.65015709700016,79.01984284100017],[95.65251712300002,79.0287946640001],[95.65259850400011,79.03839752800017],[95.64283287900017,79.04897695500013],[95.66228274800007,79.06537506700012],[95.67017662900015,79.0694033870001],[95.64730879000015,79.07640208500008],[95.59839928500017,79.07827383000011],[95.57520592500006,79.08307526200004],[95.56177819100004,79.0970726580001],[95.55250084700018,79.10175202000003],[95.52377363400015,79.10907623900012],[95.46753991000006,79.11151764500015],[95.42212975400015,79.10626862200017],[95.2892358730002,79.072495835],[95.21973717500012,79.06622955900002],[95.17969811300006,79.0521507830001],[95.06657962300002,79.03815338700004],[95.01823978000002,79.03851959800015],[94.97934004000015,79.05516185099998],[94.99244225400011,79.06264883000016],[94.95728600400011,79.06952545800009],[94.85181725400011,79.06264883000016],[94.82667076900005,79.06663646000014],[94.63233483200005,79.12742747600008],[94.62281334700005,79.137640692],[94.63054446700008,79.15127187700016],[94.64356530000006,79.16596100500004],[94.6497501960001,79.17926666900017],[94.6173608730002,79.20132070500007],[94.364512566,79.23688385600002],[94.33399498800006,79.24860260600003],[94.32081139400006,79.2643089860001],[94.32325280000005,79.28253815300017],[94.33008873800006,79.29389069200015],[94.35482832100016,79.31586334800006],[94.34717858200005,79.32689036700009],[94.33757571700008,79.33543528900013],[94.31332441500015,79.35000234600007],[94.32105553500017,79.36204661699999],[94.32178795700011,79.37303294500013],[94.32007897200012,79.38287995000015],[94.32081139400006,79.39158763200014],[94.32886803500016,79.40403880400005],[94.3520613940001,79.42682526200018],[94.3623153000001,79.44000885600003],[94.312266472,79.47919342700006],[94.22291100400011,79.48663971600014],[94.05323326900006,79.47353750200007],[94.06495201900005,79.45986562700013],[94.08057701900012,79.44684479400013],[94.04127037900011,79.42975495000012],[93.98804772200006,79.42715078300002],[93.73926842500012,79.44773997600005],[93.69695071700019,79.45986562700013],[93.7684025400001,79.47174713700018],[93.92457116000006,79.47052643400015],[93.99122155000012,79.49404531500012],[93.9588322270001,79.50568268400004],[93.827403191,79.51447174700009],[93.7924910820001,79.52090078300002],[93.77654056100019,79.52741120000012],[93.7622176440001,79.53896719000012],[93.7488712900001,79.54385000200001],[93.69019616000017,79.54242584800012],[93.77369225400017,79.55560944200009],[93.80005944100004,79.56293366100009],[93.86085045700005,79.59593333500005],[93.88200931100019,79.60382721600003],[93.76514733200023,79.60382721600003],[93.74610436300006,79.60150788000006],[93.72095787900017,79.59540436400006],[93.70281009200008,79.58673737200017],[93.703868035,79.57656484600012],[93.6853947270001,79.5631778020001],[93.65967858200023,79.5572777360001],[93.58366946700002,79.55426666900007],[93.55827884200019,79.54938385600012],[93.53370201900006,79.54173411699999],[93.51172936300006,79.532171942],[93.47022545700005,79.52244700700005],[93.44947350400017,79.51455312700007],[93.44312584700006,79.5014509140001],[93.45769290500019,79.494614976],[93.53931725400011,79.48712799700003],[93.51384524800008,79.48676178600012],[93.4368595710001,79.47353750200007],[93.38746178500004,79.47296784100011],[93.36378014400012,79.46991608300011],[93.36182701900006,79.45986562700013],[93.30347741000017,79.44525788000011],[93.23585045700011,79.43895091399999],[93.1692814460001,79.44501373900009],[93.1141056650001,79.46727122600011],[93.16309655000006,79.48407623900012],[93.27271569100017,79.48700592700006],[93.3201603520001,79.5014509140001],[93.27881920700005,79.51976146000008],[93.17628014400012,79.528753973],[93.09620201900006,79.51898834800015],[93.05445397200018,79.51854075700005],[93.01856530000012,79.528753973],[93.04175866000006,79.534328518],[92.85417728000007,79.55609772300005],[92.90333092500005,79.57469310100008],[92.97071373800006,79.57225169500013],[93.15707441500015,79.54266998900009],[93.28028405000005,79.5524763040001],[93.55152428500017,79.609116929],[93.61060631600017,79.61351146000008],[93.63526451900006,79.61933014500012],[93.684825066,79.63686758000007],[93.76148522200018,79.65070221600017],[93.78565514400006,79.65851471600016],[93.79444420700023,79.688177802],[93.84791100400015,79.70966217700011],[94.16944420700005,79.77521393400015],[94.42977949350009,79.79566071150016],[94.69011478000006,79.816107489],[94.66773522200006,79.827337958],[94.64079837300008,79.83372630400011],[94.5633244150001,79.840318101],[94.51587975400011,79.85398997600014],[94.40455162900015,79.8597679710001],[94.35987389400012,79.8679059920001],[94.34799238400015,79.88499583500005],[94.32276451900005,79.89398834800006],[94.28834069100006,79.89858633],[94.22461998800011,79.89866771],[94.25294030000006,79.91657135600006],[94.296641472,79.92658112200002],[94.38233483200011,79.93341705900006],[94.37037194100017,79.94668203300006],[94.35482832100016,79.95490143400016],[94.32081139400006,79.96698639500009],[94.35124759200019,79.97699616100006],[94.38526451900012,79.9759789080001],[94.45118248800006,79.96698639500009],[94.74976647200006,80.00747304900001],[94.79997806100002,80.0289981140001],[94.79761803500017,80.03278229400014],[94.79371178500011,80.04266998900006],[94.83904056100019,80.04450104400006],[94.89918053500017,80.05385976800005],[94.93555748800006,80.07127513200014],[94.90984134200014,80.09731679900001],[94.95199629000015,80.10447825700004],[94.99293053500017,80.10187409100014],[95.1077580090001,80.07343170800014],[95.10743248800011,80.05902741100009],[95.1077580090001,80.056341864],[95.12598717500012,80.05011627800003],[95.2063908210001,80.03937409100003],[95.22535241,80.02484772300008],[95.24187259200006,80.02155182500015],[95.33472741000017,80.0289981140001],[95.34929446700014,80.03253815300012],[95.35515384200008,80.04181549700014],[95.35547936300004,80.0697289080001],[95.36304772200006,80.07916901200011],[95.38086998800011,80.08722565300015],[95.40137780000005,80.09345123900003],[95.50212649800002,80.11147695500013],[95.80587812600012,80.11123281450013],[96.10962975400017,80.11098867400015],[96.10767662900011,80.1063906920001],[96.10474694100017,80.09503815300006],[96.10279381600006,80.0904808610001],[96.17408287900011,80.09149811400006],[96.19752037900011,80.09552643400004],[96.25131269600016,80.11517975500009],[96.27003014400006,80.11782461100007],[96.28980553500017,80.1159528670001],[96.34083092500006,80.10187409100014],[96.36003665500019,80.0987002620001],[96.50147545700005,80.10663483300006],[96.52711022200006,80.11440664300005],[96.56641686300006,80.13141510600003],[96.58619225400017,80.13641998900006],[96.60792076900006,80.13825104400014],[96.63640384200008,80.13507721600017],[96.68897545700005,80.12091705900015],[96.71566816500008,80.11782461100007],[96.90154056100019,80.13328685099998],[97.15479576900006,80.1544457050001],[97.5921330090001,80.17487213700015],[97.73926842500012,80.14923737200009],[97.76221764400012,80.13629791900009],[97.7742619150001,80.13141510600003]]],[[[60.20069420700022,80.14252350500006],[60.173024936000076,80.13865794500005],[59.99317467500006,80.14695872600014],[59.90259850400012,80.16766998900012],[59.891286655000066,80.17544179900013],[59.8997501960001,80.18305084800006],[60.05225670700011,80.18768952],[60.10132897200006,80.18366120000002],[60.16724694100018,80.16852448100002],[60.19922936300005,80.15704987200009],[60.210459832000055,80.1491559920001],[60.20069420700022,80.14252350500006]]],[[[50.04127037900017,80.05914948100015],[50.000173373000074,80.056341864],[49.88314863400015,80.06989166900014],[49.78939863400015,80.09601471600001],[49.734385613000114,80.10248444200012],[49.6268009770001,80.13141510600003],[49.57545006600017,80.13629791900009],[49.55079186300006,80.14350006700012],[49.53126061300011,80.15875885600009],[49.56072024800008,80.17291901200011],[49.83912194100017,80.21503327000006],[49.87973066500015,80.22955963700012],[49.898610873000194,80.23395416900009],[50.22852623800022,80.22601959800012],[50.31861412900011,80.19599030200008],[50.33562259200007,80.18158600500011],[50.317637566000116,80.16779205900009],[50.12598717500006,80.14215729400006],[50.07252037900011,80.11098867400015],[50.08676191500015,80.103461005],[50.07732181100001,80.10004303600009],[50.068125847000054,80.09552643400004],[50.05974368600019,80.09003327],[50.05201256600017,80.08364492400007],[50.06324303500017,80.08266836100002],[50.077810092000135,80.07900625200016],[50.08676191500015,80.07379791900014],[50.081309441000116,80.06806061400009],[50.04127037900017,80.05914948100015]]],[[[54.178070509000094,80.18927643400004],[54.15845787900017,80.18903229400009],[54.144053582000105,80.1920433610001],[54.13795006600011,80.19647858300006],[54.1404728520001,80.20087311400015],[54.14779707100009,80.20628489800002],[54.151540561000076,80.21198151200016],[54.15064537900017,80.2162132830001],[54.15552819100011,80.22113678600006],[54.16846764400005,80.22890859600007],[54.16822350400011,80.23688385600012],[54.152110222000054,80.242661851],[54.12208092500006,80.24892812700011],[54.110362175000056,80.25267161700006],[54.10377037900011,80.259507554],[54.10124759200019,80.27289459800008],[54.10922285200016,80.28676992400005],[54.13111412900017,80.29425690300003],[54.193532748000024,80.30711497600007],[54.24252363400009,80.30890534100014],[54.30128014400011,80.30467357000013],[54.39478600400017,80.28961823100012],[54.407725457000055,80.28481679900013],[54.418793165000096,80.2787946640001],[54.427500847000175,80.27187734600004],[54.42383873800022,80.2650414080001],[54.4080509770001,80.26044342700004],[54.399587436000076,80.25885651200004],[54.39763431100018,80.25193919500013],[54.40626061300011,80.237005927],[54.40609785200015,80.22113678600006],[54.38209069100011,80.21035390800016],[54.31544030000012,80.20180898600013],[54.206309441000165,80.20038483300006],[54.19605553500016,80.19745514500015],[54.190277540000096,80.19269440300006],[54.178070509000094,80.18927643400004]]],[[[55.458343946000156,80.26683177299999],[55.42408287900017,80.25958893400015],[55.29932701900006,80.24664948100013],[55.25855553500017,80.23322174700014],[55.23487389400006,80.22793203300009],[55.07569420700011,80.21930573100018],[55.04525800900015,80.22321198100018],[54.99659264400012,80.23761627800015],[54.98210696700008,80.23822663000003],[54.974782748000024,80.23773834800012],[54.95435631600017,80.23859284100003],[54.94206790500013,80.2408714860001],[54.93189537900017,80.24412669500005],[54.93230228000007,80.2464867210001],[54.94190514400006,80.24872467700008],[54.9407658210001,80.25324127800002],[54.93482506600017,80.25629303600012],[54.92969811300006,80.25958893400015],[54.93775475400011,80.26414622600011],[54.96534264400012,80.26349518400015],[54.97974694100017,80.2616234400001],[55.011078321000156,80.26040273600007],[55.02995853000007,80.26215241100006],[55.045746290000096,80.26605866100006],[55.15381920700011,80.27562083500005],[55.15723717500012,80.27936432500009],[55.14096113400009,80.28424713700015],[55.12549889400006,80.28587474199999],[55.08961022200017,80.28632233300007],[55.066579623000194,80.29214101800012],[55.07097415500019,80.30076732000012],[55.29639733200011,80.33218008000016],[55.351735873000194,80.33340078300007],[55.37525475400016,80.33038971600017],[55.38575280000012,80.32709381700013],[55.49878991000017,80.31683991100012],[55.5158797540001,80.31329987200003],[55.52409915500013,80.30634186400015],[55.51539147200006,80.29962799700009],[55.503265821000156,80.29340241100014],[55.505381707000225,80.28534577],[55.49830162900017,80.27716705900008],[55.458343946000156,80.26683177299999]]],[[[57.09766686300022,80.34516022300006],[57.131032748000024,80.30613841399999],[57.12549889400012,80.29637278900003],[57.08659915500013,80.27228424700003],[57.08366946700019,80.25812409100011],[57.08871504000009,80.23843008000016],[57.09888756600017,80.22089264500012],[57.110606316000165,80.21336497600005],[57.132172071000156,80.21190013199998],[57.14893639400012,80.20722077000009],[57.15357506600011,80.198960679],[57.138438347,80.18671295800011],[57.119313998000024,80.17967357000005],[57.05437259200008,80.16779205900009],[57.046885613000114,80.15436432500012],[57.07292728000018,80.137152411],[57.110687696000156,80.1229515650001],[57.138438347,80.11782461100007],[57.11793053500016,80.09601471600001],[57.07748457100009,80.08299388200014],[56.95679772200006,80.0663109400001],[56.620724588333495,80.07035282366671],[56.28465145466683,80.07439470733347],[55.94857832100009,80.07843659100008],[55.7596134770001,80.10431549700009],[55.71208743600019,80.103461005],[56.019053582000055,80.18183014500006],[56.04786217500011,80.20034414300007],[56.00782311300006,80.21222565300003],[55.993907097000175,80.21336497600005],[56.00261478000019,80.22972239800008],[56.00757897200006,80.23509349200013],[55.99439537900017,80.24335358300011],[55.966075066000116,80.251654364],[55.95232181100013,80.26178620000013],[55.977386915000096,80.27952708500005],[55.98796634200008,80.29035065300006],[55.993907097000175,80.30272044499998],[55.99089603000018,80.30707428600009],[55.97584069100017,80.31932200700014],[55.97282962300008,80.32318756700015],[55.97950280000011,80.33307526200014],[55.98926842500006,80.33665599200013],[56.12989342500012,80.35122304900015],[56.38632246150004,80.33787669500005],[56.642751498000024,80.32453034100003],[56.69214928500011,80.34369538],[56.69027754000015,80.3600934920001],[56.712250196000156,80.36835358299999],[57.02198326900006,80.3639997420001],[57.09766686300022,80.34516022300006]]],[[[53.341075066000116,80.39899323100009],[53.322927280000016,80.37872955900009],[53.34880618600001,80.36054108299999],[53.53199303500011,80.309556382],[53.86182701900012,80.27606842700006],[53.86947675900015,80.27094147300011],[53.855804884000094,80.25967031500015],[53.82081139400012,80.2412783870001],[53.763682488000114,80.2226423200001],[53.73340905000012,80.21767812700016],[53.70476321700008,80.22077057500015],[53.68921959700006,80.22846100500006],[53.677256707000225,80.23749420800009],[53.6639103520001,80.24494049700014],[53.64405358200011,80.24811432500012],[53.61793053500017,80.24677155200011],[53.58985436300022,80.24237702000013],[53.562673373000024,80.23403554900007],[53.539724155000066,80.22077057500015],[53.531260613000114,80.21100495000012],[53.521250847,80.18939850500003],[53.512950066000116,80.17987702],[53.48991946700008,80.17182038000009],[53.0674748055001,80.17206452050004],[52.64503014400012,80.17230866100006],[52.622894727000094,80.1832949890001],[52.601328972,80.19940827000009],[52.356618686000076,80.20868561400015],[52.30469811300017,80.22272370000007],[52.18287194100017,80.27606842700006],[52.20557701900011,80.28278229400009],[52.255137566000116,80.28449127800009],[52.305511915000096,80.29291413000006],[52.56885826900011,80.28949616100014],[52.59555097700016,80.2953148460001],[52.589040561000076,80.30898672100012],[52.600433790000096,80.31513092700011],[52.70728600400011,80.31818268400009],[52.73096764400012,80.32318756700015],[52.73096764400012,80.33002350500004],[52.71599368600019,80.3311221370001],[52.698985222,80.33551666900009],[52.68628991000016,80.34414297100008],[52.68433678500011,80.35797760600009],[52.69825280000006,80.36774323100003],[52.771006707000225,80.38027578300013],[52.85954837300008,80.405462958],[52.905935092000135,80.41258372600005],[52.95053144600009,80.41258372600005],[53.02173912900011,80.39996979400017],[53.04688561300011,80.39899323100009],[53.14958743600002,80.41258372600005],[53.29371178500016,80.40863678600005],[53.341075066000116,80.39899323100009]]],[[[55.26734459700006,80.42446523600002],[55.27051842500012,80.41864655200006],[55.27051842500012,80.409369208],[55.2635197270001,80.40314362200004],[55.259776238000114,80.39691803600009],[55.26319420700011,80.39052969000006],[55.22144616000017,80.38068268400004],[55.12989342500006,80.37433502800012],[55.084808790000096,80.37677643400004],[55.08716881600011,80.38125234600001],[55.08448326900006,80.38580963700015],[55.07797285200015,80.38914622599998],[55.07113691500015,80.39109935100014],[54.98747806100019,80.400336005],[54.97461998800006,80.40326569200002],[54.97250410200016,80.40753815300002],[54.981130405000066,80.41242096600008],[54.98747806100019,80.41437409100014],[55.06544030000006,80.42047760600003],[55.091075066000116,80.41998932500006],[55.112478061000076,80.42157623900009],[55.19874108200011,80.4383812520001],[55.24496504000009,80.43846263200008],[55.263031446000156,80.43060944200009],[55.26734459700006,80.42446523600002]]],[[[54.771494988000114,80.39301178600009],[54.52588951900012,80.37490469000006],[54.40007571700002,80.38422272300012],[54.390391472000175,80.38654205900018],[54.393890821000156,80.38873932500017],[54.40935306100019,80.39028554900001],[54.43336022200006,80.39484284100014],[54.45826256600017,80.40253327000009],[54.472829623000194,80.41225820500011],[54.49268639400012,80.43378327000015],[54.513438347,80.44562409100011],[54.576182488000114,80.46271393400015],[54.598399285000106,80.47150299700003],[54.626719597000175,80.477240302],[54.70687910200016,80.47577545800011],[54.724294467000185,80.4720726580001],[54.740000847000175,80.46588776200012],[54.79981530000012,80.44871653900002],[54.81666100400011,80.44049713700008],[54.841807488000114,80.4313418640001],[54.84546959700017,80.42991771000014],[54.851084832000055,80.426174221],[54.85075931100007,80.42157623900009],[54.846446160000106,80.41771067900008],[54.83643639400006,80.41347890800012],[54.80543053500011,80.40619538000014],[54.79493248800017,80.40013255400014],[54.783864780000016,80.39508698100009],[54.771494988000114,80.39301178600009]]],[[[59.26433353,80.343207098],[59.27613366000011,80.33002350500004],[58.933482292500145,80.33378733950003],[58.59083092500011,80.33755117400004],[58.58757571700007,80.32119375200001],[58.557871941000116,80.31525299700017],[58.42505944100017,80.3221703150001],[58.39096113400015,80.32021719000012],[58.322032097,80.30361562700007],[58.19459069100011,80.29132721600003],[58.157562696000156,80.283677476],[58.13843834700017,80.2822940120001],[58.121836785000106,80.27887604400009],[58.09278405000006,80.26434967700006],[58.07691491000011,80.26178620000013],[58.093272332000225,80.24799225500014],[58.12330162900012,80.24213288],[58.42937259200008,80.24188873900006],[58.46062259200002,80.23509349200013],[58.47486412900011,80.22235748900009],[58.46705162900016,80.20945872600008],[58.42628014400006,80.18671295800011],[58.43279056100007,80.18561432500017],[58.44678795700022,80.17987702],[58.40650475400017,80.16559479400011],[58.251312696000156,80.18671295800011],[58.14258873800022,80.18024323100003],[58.08619225400017,80.1832949890001],[58.07520592500011,80.18549225500011],[58.069997592000014,80.18732330900018],[58.06511478000007,80.18988678599999],[58.0520939460001,80.20209381700006],[58.04656009200008,80.20490143400012],[58.04135175900015,80.20575592700011],[57.95671634200008,80.19721100499999],[57.933604363000114,80.19220612200013],[57.91309655000006,80.18406810100014],[57.90503991000011,80.17243073100003],[57.91439863400015,80.16339752800003],[57.956309441000116,80.15424225500014],[57.97046959700018,80.14850495000016],[57.97852623800011,80.13597239800008],[57.98218834700006,80.12543366100003],[57.99097741000011,80.11709219000011],[58.01490319100017,80.11098867400015],[57.97046959700018,80.09894440300002],[57.71306399800002,80.09882233300006],[57.565684441000116,80.12860748900009],[57.52881920700005,80.13141510600003],[57.426280144000124,80.12775299700017],[57.39820397200012,80.13483307500003],[57.37891686300006,80.14337799700014],[57.29021243600019,80.16901276200012],[57.277679884000094,80.17837148600016],[57.2806095710001,80.19041575700008],[57.302256707000105,80.2071800800001],[57.284434441000116,80.21930573100018],[57.2400822270001,80.23187897300005],[57.21973717500011,80.2412783870001],[57.24708092500006,80.25153229400003],[57.265391472000054,80.26886627800012],[57.265961134000094,80.28603750200013],[57.24024498800017,80.2953148460001],[57.25464928500011,80.31574127800015],[57.25896243600002,80.32587311400012],[57.253916863000114,80.33372630400011],[57.20753014400012,80.35394928600012],[57.19239342500012,80.36420319200015],[57.27442467500006,80.39154694200012],[57.24284915500007,80.4115257830001],[57.20655358200016,80.42462799700017],[56.946055535000106,80.4815127620001],[57.322642449000085,80.47815582850005],[57.699229363000235,80.47479889500006],[58.0758162770002,80.47144196150016],[58.452403191000116,80.46808502800012],[58.56470787900017,80.45050690300017],[58.68043053500017,80.4460309920001],[58.77418053500017,80.42816803600013],[58.89869225400017,80.42690664300011],[59.19336998800017,80.37848541900014],[59.21216881600011,80.37274811400007],[59.23943118600019,80.35919830900012],[59.26433353,80.343207098]]],[[[55.02173912900017,80.45823802299999],[54.981944207000105,80.44891998900015],[54.82146243600002,80.46478913000007],[54.63086998800023,80.50210195500013],[54.62240644600009,80.51129791900011],[54.641368035000106,80.51679108300014],[54.70899498800023,80.52578359600015],[54.886241082000225,80.53310781500006],[55.05640709700006,80.50287506700006],[55.06861412900011,80.49872467700011],[55.07162519600009,80.49160390800007],[55.07032311300022,80.48590729400007],[55.073008660000106,80.48407623900003],[55.06609134200019,80.47744375200013],[55.046071811000076,80.46723053600003],[55.02173912900017,80.45823802299999]]],[[[54.269053582000055,80.58869049700009],[54.31495201900006,80.57709381700009],[54.22071373800023,80.57835521],[54.17042076900012,80.57257721600003],[54.136078321000156,80.55597565300017],[54.16521243600019,80.54791901200004],[54.40984134200019,80.54291413],[54.38705488400015,80.52496979400013],[54.40105228000013,80.51487864799999],[54.45826256600017,80.50136953300002],[54.45720462300014,80.49005768400004],[54.458994988000114,80.48647695500016],[54.46509850400011,80.4815127620001],[54.449066602000094,80.47077057500007],[54.42986087300008,80.46442291900014],[54.40902754000015,80.46124909100008],[54.38949629000009,80.4603945980001],[54.3693953790001,80.45636627800003],[54.357188347000175,80.447007554],[54.34717858200011,80.43634674700014],[54.33383222700015,80.42853424700014],[54.28825931100013,80.42035553600006],[54.239024285000106,80.42015208500003],[53.798024936000076,80.47288646],[53.85385175900014,80.48212311400006],[53.837575717000135,80.50511302300005],[53.8475041020001,80.51019928600006],[53.85906009200008,80.51113515800013],[53.8826603520001,80.51007721600008],[53.97291100400011,80.52928294500003],[53.94304446700019,80.53888580900004],[53.8587345710001,80.55442942900014],[53.841319207000225,80.57367584800006],[53.85352623800023,80.60008372600008],[53.88331139400006,80.6107445330001],[54.269053582000055,80.58869049700009]]],[[[56.67920983200011,80.75446198100003],[56.844899936000076,80.72752513200007],[56.946055535000106,80.69379303600009],[56.93555748800006,80.68943919499999],[56.93425540500007,80.68455638200011],[56.93718509200019,80.678168036],[56.939219597,80.66925690300015],[56.92790774800002,80.66299062700001],[56.6285099615001,80.64394765850007],[56.32911217500012,80.62490469000012],[56.34400475400017,80.63593170800006],[56.34961998800006,80.63914622600011],[56.31202233200005,80.65509674700003],[55.837657097000054,80.63178131700012],[55.79493248800023,80.642279364],[55.74830162900011,80.65045807500012],[55.6443791020001,80.64935944200005],[55.602793816000116,80.66583893400006],[55.680918816000116,80.68793366100012],[55.70582116000016,80.70001862200003],[55.49545332100015,80.70026276200018],[55.431651238000114,80.71426015800013],[55.44402103000007,80.71938711100016],[55.499766472000054,80.72728099200012],[55.54802493600018,80.73680247600011],[55.6096297540001,80.74160390800002],[55.72388756600017,80.732611395],[55.76050866000011,80.74160390800002],[55.76172936300023,80.75519440300015],[55.78239993600001,80.7611351580001],[56.15642337350002,80.77411530150015],[56.53044681100002,80.78709544499999],[56.57601972700016,80.77570221600003],[56.55844160200016,80.76341380400008],[56.57032311300011,80.75739166900014],[56.67920983200011,80.75446198100003]]],[[[47.86548912900011,80.81207916900011],[48.038584832000225,80.80719635600003],[48.275157097000175,80.83051178600013],[48.49634850400011,80.79808177300005],[48.65479576900023,80.75519440300015],[48.60661868600018,80.74518463700018],[48.499766472,80.74941640800002],[48.45557701900022,80.72728099200012],[48.61646569100011,80.698431708],[48.63379967500012,80.68012116100014],[48.66635175900014,80.67780182500017],[48.76400800900014,80.6596133480001],[48.75611412900011,80.64874909100011],[48.75440514400006,80.63641998900006],[48.754242384000094,80.62523021000014],[48.75049889400006,80.61741771000005],[48.72681725400017,80.6107445330001],[48.69654381600017,80.61359284100006],[48.640635613000114,80.62490469000012],[48.5071720710001,80.63471100500006],[48.45899498800023,80.64866771000011],[48.43441816500015,80.65277741100006],[48.063731316000116,80.66242096600006],[47.989512566000116,80.68012116100014],[48.007009311000076,80.70123932500015],[48.00001061300006,80.70872630400011],[47.949880405000066,80.70742422100012],[47.92090905000006,80.71124909100006],[47.77995853000018,80.76459381699999],[47.74878991000011,80.77049388200011],[47.71583092500006,80.76837799700012],[47.63705488400015,80.75340403899997],[47.55811608200022,80.74843984600012],[47.57276451900023,80.74323151200002],[47.59880618600013,80.73045481999998],[47.61264082100009,80.72728099200012],[47.52979576900006,80.728705145],[47.49415123800023,80.73432038],[47.47559655000012,80.7347679710001],[47.48975670700016,80.71784088700012],[47.548106316000116,80.69379303600009],[47.571787957000055,80.68012116100014],[47.50652103000007,80.67304108300009],[47.43083743600018,80.68524811400006],[47.358653191000116,80.68817780200008],[47.30420983200011,80.65277741100006],[47.43327884200002,80.61066315300012],[47.44214928500017,80.60065338700004],[47.43067467500012,80.59381745000012],[47.39698326900012,80.59137604400016],[47.200043165000096,80.62555573100015],[47.13917076900006,80.61432526200015],[47.11329186300006,80.60614655200006],[47.061208530000016,80.59568919499999],[47.03679446700008,80.583929755],[47.0310978520001,80.57794830900018],[47.019704623000024,80.56207916900014],[47.01002037900017,80.55597565300017],[46.9924422540001,80.55272044500013],[46.666840040000096,80.56610748900012],[46.632578972,80.55597565300017],[46.687266472000175,80.52928294500003],[46.667735222000175,80.51679108300014],[46.64478600400011,80.51504140800013],[46.59791100400017,80.52244700700014],[46.54509524800008,80.52338288000011],[46.51921634200008,80.51862213700012],[46.495453321000156,80.50824616100012],[46.52295983200011,80.48395416900006],[46.53012129000015,80.47406647300012],[46.48047936300023,80.45970286700003],[46.08399498800006,80.43988678600014],[46.05290774800008,80.44782135600009],[46.030446811000076,80.46507396000011],[46.02125084700012,80.48859284100016],[46.02930748800023,80.51504140800013],[46.04151451900012,80.52472565300009],[46.07748457100009,80.54621002800003],[46.08399498800006,80.55597565300017],[46.07056725400017,80.56728750200016],[46.04371178500011,80.57355377800009],[45.994965040000096,80.57709381700009],[45.83594811300006,80.55125560100008],[45.78296959700006,80.54975006700003],[45.775238477000094,80.55272044500013],[45.76783287900017,80.55792877800012],[45.75993899800008,80.5619570980001],[45.75025475400011,80.561468817],[45.71119225400017,80.55072663],[45.673187696000156,80.5472679710001],[45.622325066000116,80.53440989800008],[45.51531009200019,80.51976146000005],[45.48902428500017,80.52423737200012],[45.472422722,80.53180573100015],[45.44361412900017,80.55060455900012],[45.42872155000011,80.55792877800012],[45.37720787900017,80.57318756700009],[45.27116946700019,80.589504299],[44.89600670700011,80.60488515800016],[44.85743248800023,80.61741771000005],[44.87989342500006,80.62518952000015],[44.90707441500015,80.63003164300012],[45.00538170700011,80.6339785830001],[45.09473717500011,80.6491559920001],[45.56869550833338,80.67314959],[46.042653841666684,80.69714318800008],[46.51661217500006,80.72113678600014],[46.51661217500006,80.72728099200012],[46.488454623000074,80.72679271000014],[46.399261915000096,80.7347679710001],[46.41627037900017,80.74160390800002],[46.44157962300013,80.74534739800005],[46.92074629000015,80.74868398600007],[47.023203972,80.76032135600018],[47.112559441000116,80.78803131700006],[47.18067467500006,80.79832591399999],[47.20118248800023,80.80988190300012],[47.11841881600017,80.82111237200012],[47.09197024800019,80.83095937700011],[47.138194207000105,80.84223053600012],[47.53630618600019,80.85667552299999],[47.86548912900011,80.81207916900011]]],[[[62.25562584700017,80.79230377800017],[62.27523847700016,80.78388092700011],[62.277110222,80.76203034100008],[62.25945071700019,80.74144114800005],[62.23072350400011,80.72785065300008],[62.174082879000174,80.71426015800013],[62.03744550900009,80.66583893400006],[62.091156446000156,80.64935944200005],[62.14730879000016,80.63914622600011],[62.11597741000011,80.62238190300009],[62.072276238000114,80.61416250200001],[61.70622806100002,80.59747955900013],[61.698008660000106,80.59418366100012],[61.6951603520001,80.59072500200013],[61.68864993600019,80.57929108300009],[61.68799889400005,80.57709381700009],[61.609629754000174,80.56720612200016],[61.58765709700017,80.55597565300017],[61.60621178500017,80.52928294500003],[61.3108016290001,80.51072825700014],[61.27662194100005,80.50136953300002],[61.37378991000017,80.49380117400015],[61.38306725400011,80.49079010600015],[61.380218946000156,80.48456452],[61.36524498800022,80.47406647300012],[61.327403191000165,80.45746491100006],[61.282074415000096,80.44696686399999],[61.15430748800022,80.43451569200009],[61.08448326900011,80.41058991100012],[61.044606967000014,80.40517812700007],[60.5608016290001,80.4464785830001],[60.30738366000017,80.49555084800015],[60.18043053500011,80.48834870000003],[60.18726647200006,80.4815127620001],[60.15756269600009,80.46906159100008],[60.12623131600017,80.4628360050001],[60.029144727000165,80.45722077000012],[59.963226759000094,80.443101304],[59.686859571000156,80.42690664300011],[59.63640384200003,80.43121979400013],[59.49594160200015,80.48261139500015],[59.241953972,80.52928294500003],[59.25611412900011,80.53888580900004],[59.27361087300019,80.54291413],[59.31088300900014,80.54315827000012],[59.36215254000009,80.55882396000011],[59.372325066000116,80.57025788000006],[59.33318118600019,80.57196686400005],[59.286143425000056,80.58197663000006],[59.26148522200017,80.59788646000008],[59.28980553500011,80.61741771000005],[59.22925866000017,80.64411041900017],[59.22144616000016,80.65277741100006],[59.234711134000094,80.66111888200014],[59.29151451900006,80.67796458500014],[59.31023196700019,80.68695709800006],[59.30225670700017,80.68903229400017],[59.28223717500011,80.70001862200003],[59.30176842500006,80.70758698100018],[59.34457441500015,80.71385325700014],[59.36548912900011,80.72113678600014],[59.35808353000007,80.72728099200012],[59.40463300900015,80.75031159100007],[59.533864780000066,80.76341380400008],[59.57081139400011,80.78998444200012],[59.508799675000056,80.80365631700015],[59.55591881600017,80.807806708],[59.69385826900005,80.8371442730001],[59.7181095710001,80.83795807500012],[59.7893172540001,80.83095937700011],[59.812185092000085,80.83266836100013],[59.85141035200016,80.84235260600009],[60.17090905000011,80.85394928600012],[60.22437584700006,80.8483747420001],[60.25619550900009,80.83095937700011],[60.03931725400017,80.82391998900006],[59.968109571000156,80.80988190300012],[60.312022332000055,80.81077708500003],[60.35173587300019,80.80365631700015],[60.35425866000011,80.799994208],[60.35092207100015,80.79547760600006],[60.35059655000006,80.79157135600015],[60.36198978000013,80.78998444200012],[60.375336134000094,80.79043203300002],[60.56397545700005,80.82282135600012],[61.05433190200009,80.84393952000012],[61.544688347,80.86505768400004],[61.535817905000066,80.87514883000001],[61.530446811000196,80.87872955900018],[61.56128991000017,80.892482815],[61.60254967500013,80.89565664300007],[62.067718946000156,80.8798688820001],[62.20826256600005,80.82269928600014],[62.22193444100017,80.81321849200005],[62.23267662900011,80.79840729400017],[62.25562584700017,80.79230377800017]]],[[[58.98861738400014,80.80365631700015],[58.93441816500009,80.78074778900005],[58.89551842500006,80.77374909100017],[58.775726759000094,80.78253815300003],[58.69605553500017,80.77887604400009],[58.542735222000054,80.75429922100007],[58.421234571000156,80.74876536700005],[58.13005618600002,80.78074778900005],[58.08985436300022,80.78774648600013],[57.882497592000014,80.78729889500012],[57.84278405000012,80.7955996770001],[57.81568444100017,80.80988190300012],[57.84424889400006,80.824693101],[57.91391035200015,80.82908763200008],[57.94548587300008,80.83698151200004],[58.01587975400016,80.84056224200009],[58.15739993600018,80.87124258000001],[58.451630079000125,80.88698965050013],[58.745860222,80.90273672100012],[58.92888431100007,80.88214752800008],[58.960215691000116,80.87189362200014],[58.97901451900007,80.85887278899999],[59.006032748000194,80.835394598],[59.02906334700017,80.82412344000004],[59.01400800900014,80.82318756700012],[59.004649285000106,80.81806061400012],[58.98861738400014,80.80365631700015]]],[[[55.368988477000094,80.861761786],[55.67774498750012,80.83270905150009],[55.986501498000194,80.80365631700015],[55.93336022200012,80.79124583500011],[55.76587975400017,80.78367747600008],[55.321299675500114,80.75240713100011],[54.87671959700006,80.72113678600014],[54.66382897200012,80.74160390800002],[54.66944420700011,80.7546247420001],[54.68262780000006,80.76170482000008],[54.68995201900005,80.76898834800006],[54.6779891290001,80.78253815300003],[54.65699303500017,80.78803131700006],[54.589203321000156,80.78823476800012],[54.54273522200006,80.78001536700013],[54.27723229250014,80.7881126975001],[54.011729363000114,80.79621002800017],[53.990407748000074,80.80267975500009],[53.9803166020001,80.81622955900004],[53.98462975400017,80.828517971],[54.10084069100017,80.85171133000013],[54.32341556100019,80.86444733300009],[54.40674889400012,80.8514671900001],[54.72242272200006,80.87189362200014],[54.74341881600017,80.8700218770001],[54.76482181100001,80.86444733300009],[54.77247155000006,80.85590241100006],[54.753184441000116,80.84463125200007],[54.82292728000019,80.83592357],[54.85759524800008,80.839300848],[54.890391472000175,80.8514671900001],[54.95142662900016,80.88226959800005],[54.983164910000106,80.89240143400012],[55.02068118600013,80.89862702000005],[55.097015821000156,80.9028181010001],[55.25700931100001,80.89028554900001],[55.368988477000094,80.861761786]]],[[[49.997325066000116,80.86505768400004],[50.02312259200008,80.85822174700003],[50.37370852950019,80.87683746950016],[50.72429446700019,80.895453192],[50.82667076900012,80.91909414300012],[50.85596764400006,80.91852448100015],[50.878428582000225,80.9115664730001],[50.92212975400011,80.88873932500015],[51.04517662900011,80.8514671900001],[51.017751498000194,80.83710358300011],[50.98210696700002,80.83124420800006],[50.79566491000017,80.83173248900006],[50.68970787900011,80.81354401200015],[50.47038821700008,80.80988190300012],[50.47038821700008,80.80365631700015],[50.528819207000225,80.79596588700004],[50.54542076900012,80.78998444200012],[50.510101759000094,80.77635325700008],[50.31267337300008,80.76487864800013],[50.27491295700011,80.75649648600016],[50.25123131600017,80.74160390800002],[50.27833092500011,80.74103424700014],[50.29900149800002,80.7338727890001],[50.31812584700012,80.72426992400013],[50.340179884000094,80.71605052300013],[50.372406446000156,80.71344635600003],[50.65259850400011,80.76581452],[50.679453972000175,80.76398346600003],[50.73438561300006,80.74738190300017],[50.764903191000116,80.74176666900017],[50.79542076900006,80.7429059920001],[50.84595787900016,80.76829661700013],[50.88298587300008,80.77423737200013],[51.00855553500011,80.77773672100015],[51.03923587300013,80.77513255400005],[51.0525822270001,80.76577383000001],[51.067556186000076,80.75104401200004],[51.101573113000114,80.74819570500009],[51.16187584700006,80.75519440300015],[51.144053582000055,80.76752350500011],[51.15650475400017,80.77570221600003],[51.31267337300002,80.78998444200012],[51.30884850400011,80.77968984600001],[51.306407097000175,80.77570221600003],[51.334808790000096,80.76813385600018],[51.39503014400006,80.76093170800013],[51.451345248000024,80.74188873900015],[51.48292076900005,80.73663971600014],[51.6893009770001,80.72728099200012],[51.72087649800008,80.727036851],[51.7342228520001,80.72357819200009],[51.7439884770001,80.71426015800013],[51.740896030000016,80.71019114799999],[51.73170006600017,80.70648834800012],[51.72543379000009,80.70160553600006],[51.73096764400005,80.69379303600009],[51.700938347000175,80.67694733300009],[51.437754753500116,80.64754873250003],[51.17457116000011,80.618150132],[51.12232506600017,80.60248444199999],[50.99480228000019,80.54734935100008],[50.94955488400009,80.53676992400001],[50.5354516940001,80.53192780150009],[50.12134850400011,80.52708567900005],[50.08676191500015,80.51504140800013],[50.046641472000054,80.49860260600015],[49.727793816000116,80.49433014500012],[49.675303582000055,80.4815127620001],[49.708262566000116,80.46995677299999],[49.758636915000096,80.46332428600012],[49.798106316000116,80.45209381700003],[49.7986759770001,80.42690664300011],[49.80860436300011,80.42597077000006],[49.821055535000106,80.422349351],[49.830251498000194,80.41644928600005],[49.82960045700017,80.40888092700011],[49.81617272200017,80.40102773600013],[49.49040774800008,80.36351146000011],[49.16496829500007,80.37567780150015],[48.839528842000185,80.3878441430001],[48.79135175900015,80.36420319200015],[48.79835045700011,80.36163971600013],[48.81812584700006,80.35053131700012],[48.654470248000194,80.31704336100016],[48.62696373800006,80.2953148460001],[48.680349155000016,80.28693268400004],[48.896006707000105,80.2818871110001],[48.942637566000116,80.27301666900014],[49.03785241000017,80.2412783870001],[49.0252384770001,80.23053620000009],[48.99187259200002,80.22113678600006],[48.975759311000076,80.21336497600005],[49.06869550900015,80.1996524110001],[49.10718834700006,80.18952057500017],[49.08562259200002,80.17243073100003],[49.061778191000116,80.16840241100005],[49.00945071700008,80.1686872420001],[48.98943118600019,80.16620514500006],[48.986501498000074,80.16278717700006],[48.98698978000007,80.157945054],[48.983571811000076,80.15375397300015],[48.96908613400009,80.15192291900017],[48.73389733200022,80.15908437700004],[48.583506707000225,80.202826239],[48.52833092500012,80.20913320500013],[48.49659264400023,80.1928571640001],[48.539886915000096,80.16986725500011],[48.55176842500006,80.15875885600009],[48.510590040000096,80.124212958],[48.44385826900023,80.1008161480001],[48.3724064460001,80.09178294500002],[48.31812584700006,80.10040924700009],[48.289561394000174,80.11318594000015],[48.22315514400023,80.13467031500006],[48.191742384000094,80.13825104400014],[48.11605879000009,80.13678620000017],[48.076345248000194,80.13084544500005],[48.044688347000054,80.11782461100007],[48.042735222000175,80.11176178600009],[48.04761803500017,80.10586172100012],[48.04883873800006,80.099554755],[48.03581790500019,80.092271226],[48.01921634200002,80.08905670800011],[47.663584832000225,80.07001373900012],[47.62769616000011,80.07221100500011],[47.60523522200006,80.07859935100005],[47.6053166020001,80.08885325700008],[47.63746178500017,80.1026065120001],[47.633148634000094,80.11782461100007],[47.73650149800008,80.16201406500015],[47.790293816000116,80.17511627800012],[48.046641472000175,80.18903229400009],[48.085134311000076,80.2071800800001],[47.900401238000114,80.2014834660001],[47.84546959700006,80.21336497600005],[47.871429884000094,80.2240257830001],[47.94060306100013,80.22455475500007],[47.96900475400011,80.23509349200013],[47.929372592000135,80.24713776200002],[47.67855879000015,80.247748114],[47.59994550900015,80.2377790390001],[47.451345248000024,80.23981354400004],[47.33838951900005,80.21336497600005],[47.37501061300011,80.19464752800009],[47.386892123000074,80.18671295800011],[47.212087436000125,80.19009023600013],[47.10181725400011,80.17031484600011],[46.894541863000114,80.19179922100015],[46.89283287900011,80.20376211100007],[46.902354363000114,80.217433986],[46.90642337300008,80.22768789300014],[46.890147332000105,80.23663971600017],[46.6595158210001,80.27415599199999],[46.618418816000116,80.2953148460001],[46.649750196000156,80.3138695330001],[47.08855228000019,80.37164948100003],[47.11988366000017,80.36823151200012],[47.16309655000006,80.35854726800007],[47.19019616000017,80.34324778900009],[47.17383873800005,80.32318756700015],[47.22388756600017,80.30898672100012],[47.42798912900017,80.32269928600005],[47.55616295700011,80.30390045800003],[47.63705488400015,80.31647370000007],[48.01685631600017,80.309556382],[47.97095787900011,80.32184479400014],[48.132985873000194,80.32648346600008],[48.18873131600011,80.33755117400004],[48.14779707100015,80.34373607],[48.064789259000094,80.34601471600014],[47.91081790500013,80.36908600500011],[47.68930097700016,80.37295156500012],[47.661143425000056,80.37787506700009],[47.63591556100002,80.38812897300002],[47.61947675900015,80.40517812700007],[47.91089928500011,80.41058991100012],[48.202321811000076,80.41600169500006],[48.23585045700011,80.42690664300011],[48.2024845710001,80.43398672100001],[48.13013756600017,80.43545156500006],[48.099375847000175,80.44611237200009],[48.108653191000116,80.45286692900014],[48.140391472000175,80.46784088700015],[48.10010826900011,80.4763044290001],[47.96900475400011,80.46784088700015],[47.819834832000055,80.47638580900009],[47.423350457000225,80.44293854400003],[47.37940514400012,80.45355866100009],[47.41521243600019,80.46625397300012],[47.714284701500134,80.50641510600003],[48.01335696700007,80.54657623900015],[48.162445509000094,80.533433335],[48.1951603520001,80.53546784100003],[48.29883873800011,80.56118398600016],[48.37549889400006,80.57111237200017],[48.41407311300023,80.57025788000006],[48.525726759000094,80.54450104400003],[48.56544030000012,80.54291413],[48.558116082000105,80.53644440300009],[48.53931725400017,80.52374909100001],[48.530772332000225,80.51504140800013],[48.56902103000019,80.50560130400014],[48.70199629000009,80.51504140800013],[48.78638756600017,80.49896881700006],[48.82740319100017,80.49774811400013],[48.87330162900017,80.50824616100012],[48.916840040000096,80.52553945500001],[48.934825066000116,80.52928294500003],[48.96094811300006,80.5307477890001],[49.13648522200006,80.51691315300012],[49.18824303500016,80.52142975500006],[49.22966556100019,80.53676992400001],[49.18775475400011,80.54816315300017],[49.175059441000116,80.55597565300017],[49.19255618600018,80.56069570500007],[49.227712436000076,80.56460195500007],[49.24529056100019,80.56850820500007],[49.254567905,80.57294342700014],[49.262217644000174,80.57802969000006],[49.27222741000011,80.58222077],[49.35572350400011,80.58722565300002],[49.389496290000096,80.59707265800016],[49.40707441500015,80.61741771000005],[49.37728925900015,80.61660390800013],[49.34197024800019,80.62002187700016],[49.30860436300023,80.62909577000015],[49.284922722,80.64533112200009],[49.42872155000012,80.65460846600014],[49.631032748000194,80.63959381700012],[49.66846764400006,80.65277741100006],[49.659434441000116,80.65501536700005],[49.63428795700017,80.66583893400006],[49.64031009200008,80.66889069200013],[49.65479576900012,80.68012116100014],[49.64503014400006,80.6846377620001],[49.63477623800023,80.68720123899999],[49.62419681100019,80.68797435100011],[49.613291863000114,80.68695709800006],[49.681976759000094,80.72113678600014],[49.62794030000012,80.730902411],[49.202891472000175,80.69379303600009],[49.22535241000011,80.71466705900005],[49.263194207000225,80.72797272300005],[49.30502363400015,80.73444245000017],[49.33952884200007,80.7347679710001],[49.300059441000116,80.74628327000012],[49.24293053500011,80.74477773600007],[49.04590905000012,80.71458567900008],[48.998871290000096,80.71906159100003],[48.95533287900016,80.7347679710001],[48.992035352000094,80.74762604400003],[49.07471764400023,80.75849030200001],[49.11353600400016,80.76947663000006],[49.086761915000146,80.77509186400006],[49.00367272200012,80.77570221600003],[49.3404647145002,80.81460195550007],[49.67725670700011,80.8535016950001],[49.757578972,80.8842634140001],[49.80176842500012,80.89337799700009],[50.237152540000146,80.93349844],[50.3020939460001,80.92304108300011],[50.39698326900006,80.92108795800009],[50.443044467000185,80.91290924700017],[50.443044467000185,80.90607330900013],[50.13135826900011,80.88971588700004],[50.0774845710001,80.87677643400004],[50.02312259200008,80.87250397300012],[49.997325066000116,80.86505768400004]]],[[[80.12191816500008,80.95724111550005],[80.43718509200002,80.94017161700008],[80.41382897200006,80.90053945500011],[80.39991295700017,80.88593170800011],[80.37427819100017,80.87372467700014],[80.32642662900017,80.860541083],[79.92682267933347,80.84259674700006],[79.52721872966671,80.824652411],[79.12761478000019,80.80670807500015],[79.01148522200018,80.82412344000004],[78.97461998800011,80.84259674700006],[78.98658287900011,80.86102936400007],[79.07593834700006,80.90033600500007],[79.12110436300011,80.92991771000013],[79.14307701900012,80.93903229400003],[79.18799889400012,80.95184967700006],[79.21070397200018,80.96133047100005],[79.21697024800014,80.96133047100005],[79.23780358200011,80.95311107000008],[79.7299910820001,80.98012929900001],[79.80665123800006,80.97431061400005],[80.12191816500008,80.95724111550005]]],[[[58.56128991000012,80.95701732000008],[58.366953972,80.94594961100002],[58.25359134200007,80.95514557500009],[57.88282311300023,81.0302188170001],[57.84099368600002,81.04767487200017],[57.84473717500006,81.05951569200015],[57.86402428500011,81.06517161700013],[58.001149936000076,81.08417389500012],[57.99048912900011,81.09760163000011],[58.01238040500008,81.10618724200005],[58.069509311000076,81.111517645],[58.36158287850011,81.0776431335],[58.653656446000156,81.04376862200007],[58.69662519600009,81.02472565300009],[58.606700066000116,80.99485911700009],[58.60450280000006,80.97431061400005],[58.56128991000012,80.95701732000008]]],[[[61.29379316500015,80.97671133],[60.987803582000105,80.92202383000016],[60.66553795700005,80.935288804],[60.343272332000225,80.9485537780001],[60.25440514400011,80.97211334800006],[60.06999759200019,80.97964101800012],[60.02271569100011,80.99542877800017],[60.062266472000175,81.008286851],[60.208262566000165,81.02277252800006],[60.25619550900009,81.036363023],[60.304535352000094,81.05121491100006],[60.50831139400005,81.06903717700014],[60.612803582000055,81.09247467700011],[60.96851647266683,81.09955475500009],[61.32422936333356,81.10663483300014],[61.6799422540001,81.11371491099999],[61.70167076900006,81.10529205900006],[61.677256707000225,81.10370514500003],[61.65137780000011,81.09845612200002],[61.62671959700001,81.089585679],[61.60621178500017,81.0773786480001],[61.62142988400014,81.07387929900001],[61.628916863000114,81.06598541900014],[61.628265821000156,81.05512116100006],[61.61988366000011,81.04262929900015],[61.599782748000074,81.03139883000013],[61.29379316500015,80.97671133]]],[[[56.17123457100015,81.12128327000015],[56.22486412900011,81.10785553600006],[56.702891472,81.11310455900004],[56.777517123000024,81.09735748900009],[56.830821160000106,81.09349192900008],[56.94434655000006,81.07245514500013],[57.17432701900012,81.05687083500005],[57.25635826900011,81.06476471600003],[57.64454186300011,81.02435944200008],[57.65479576900011,81.01984284100001],[57.6678166020001,81.0057640650001],[57.679453972,80.99852122600005],[57.75001061300012,80.97068919500002],[58.01620527450021,80.94859446849996],[58.28239993600019,80.92649974200013],[58.24838300900015,80.91722239800008],[57.96566816500009,80.88833242400014],[57.8709416020001,80.85956452000003],[57.8381453790001,80.85333893400015],[57.53435306100018,80.8626976580001],[57.44068444100017,80.88373444200012],[57.33643639400012,80.89179108300006],[57.231618686000076,80.90704987200003],[57.1985783210001,80.90607330900013],[57.217133009000094,80.918443101],[57.23406009200019,80.93333567900014],[57.2014266290001,80.95392487200017],[57.146250847,80.96165599199999],[57.01417076900006,80.96185944200015],[56.95777428500011,80.96784088700015],[56.93238366000011,80.97431061400005],[56.914235873000194,80.98200104400017],[56.897308790000096,80.99282461100007],[56.89454186300017,81.00287506700013],[56.91871178500017,81.00844961100016],[56.89673912900017,81.016099351],[56.84571373800017,81.01361725500004],[56.82252037900011,81.01902903900009],[56.79932701900011,81.02749258000016],[56.47177168050004,81.05992259300014],[56.144216342000185,81.09235260600002],[56.09555097700015,81.09100983300006],[56.099782748000194,81.10138580900015],[56.10320071700019,81.10529205900006],[56.123871290000096,81.11859772300006],[56.147146030000016,81.12319570500001],[56.17123457100015,81.12128327000015]]],[[[55.52027428500011,81.00844961100016],[55.57691491000011,81.00714752800013],[56.019216342000014,81.04360586100002],[56.321258985500066,81.01268138200015],[56.6233016290001,80.98175690300003],[56.65235436300011,80.94354889500009],[56.995344814333436,80.90129900366674],[57.33833526566676,80.85904911233344],[57.681325717000185,80.81679922100001],[57.70020592500011,80.80988190300012],[57.71607506600011,80.79315827000009],[57.706797722000175,80.782660223],[57.68376712300019,80.77724844000006],[57.634287957000055,80.77252838700015],[57.5623478520001,80.74843984600012],[57.31055748750006,80.72013987850012],[57.05876712300008,80.69183991100012],[57.007497592000135,80.70001862200003],[56.84302819100017,80.76203034100008],[56.71753991000011,80.77912018400004],[56.70582116000011,80.78253815300003],[56.696625196000156,80.78676992400015],[56.694590691000116,80.78912995000012],[56.69385826900012,80.79262929900001],[56.68873131600017,80.799953518],[56.66846764400006,80.80923086100016],[56.23365319100011,80.83183421400004],[55.79883873800023,80.854437567],[55.77393639400012,80.86139557500009],[55.764333530000016,80.87116120000003],[55.76270592500012,80.88104889500015],[55.75733483200022,80.88873932500015],[55.73658287900011,80.89179108300006],[55.54721113400014,80.89769114799999],[55.37696373800005,80.93333567900014],[55.40105228000018,80.9525414080001],[55.40479576900011,80.95758698100003],[55.39763431100019,80.96491120000003],[55.380625847,80.96857330900018],[55.31519616000017,80.97528717700014],[55.20728600400011,80.95384349200002],[54.9983016290001,80.9511579450001],[54.932790561000076,80.9628766950001],[54.88355553500017,80.9780134140001],[54.880707227000094,80.98615143400012],[54.873871290000096,80.99371979400016],[54.86597741000011,80.99941640800013],[54.859548373000194,81.00165436400012],[54.56413821700008,80.99542877800017],[54.449392123000024,80.99774811400012],[54.41732832100015,81.00844961100016],[54.42644290500007,81.0242373720001],[54.43043053500011,81.02895742400001],[54.45492597700016,81.04857005400008],[54.48731530000006,81.05451080900009],[54.52222741000017,81.05634186400009],[54.553965691000116,81.06370677300008],[54.5364689460001,81.07436758000001],[54.544281446000156,81.08380768400012],[54.64722741000011,81.1223005230001],[54.670909050000056,81.12518952000015],[54.720388217000185,81.11957428600014],[54.86304772200012,81.08417389500012],[55.321625196000156,81.05003489800013],[55.52027428500011,81.00844961100016]]],[[[50.78500410200016,81.05345286700005],[50.77442467500011,81.04401276200004],[50.750173373000194,81.0411644550001],[50.57455488400015,81.04637278899999],[50.45150800900015,81.01654694200009],[50.40943444100017,81.01312897300006],[50.37427819100011,81.02277252800006],[50.377777540000096,81.026800848],[50.38200931100013,81.03046295800006],[50.39096113400015,81.03644440300017],[50.41456139400006,81.04043203300016],[50.440928582000055,81.04832591400013],[50.46363366000011,81.05874258000001],[50.47657311300022,81.06997304900004],[50.347422722,81.09100983300006],[50.387868686000076,81.10529205900006],[50.382578972000175,81.10993073100018],[50.37281334700006,81.12075429900007],[50.367360873000194,81.12518952000015],[50.497569207000055,81.12518952000015],[50.51905358200011,81.12897370000015],[50.53858483200005,81.1388207050001],[50.52816816500009,81.14691803600012],[50.490896030000016,81.15924713700015],[50.52963300900015,81.16787344000006],[50.77800540500007,81.17023346600003],[50.81983483200011,81.16616445500016],[50.91211998800023,81.14301178600012],[50.94955488400009,81.12518952000015],[50.97681725400017,81.105902411],[50.968028191000116,81.09568919500008],[50.93799889400006,81.0917015650001],[50.76596113400014,81.08836497600008],[50.74480228000007,81.0773786480001],[50.75220787900011,81.06781647300012],[50.779144727000094,81.06244538000006],[50.78500410200016,81.05345286700005]]],[[[64.70484459700018,81.205267645],[64.78541100400011,81.19098541900011],[64.86793053500011,81.19342682500013],[65.2298283210001,81.13670482],[65.26107832100016,81.12396881700012],[65.37525475400011,81.06028880400005],[65.4168400400001,81.04608795800014],[65.43628991000011,81.03705475500014],[65.4500431650001,81.02277252800006],[65.30616295700011,80.99542877800017],[65.35010826900006,80.993109442],[65.38868248800011,80.98615143400012],[65.42302493600008,80.97247955900016],[65.45386803500011,80.95042552299999],[65.4656681650001,80.93488190300017],[65.46168053500011,80.92548248900006],[65.44581139400012,80.91962311400012],[65.15455162900011,80.84992096600014],[65.07829837300002,80.84137604400001],[65.06137129000015,80.83344147300006],[65.04558353000013,80.8237165390001],[65.02654056100002,80.81488678600006],[64.999766472,80.80882396000005],[64.66895592500006,80.77643463700015],[64.58668053500011,80.75519440300015],[64.50261478000007,80.75531647300012],[64.4256291020001,80.74087148600007],[64.10039309950011,80.7272199565001],[63.775157097,80.713568427],[63.68580162900011,80.72728099200012],[63.40825442800022,80.7051862655001],[63.13070722700016,80.68309153900005],[62.873627149000036,80.74058665599996],[62.61654707100015,80.79808177300005],[62.53077233200011,80.80475495000007],[62.510508660000106,80.81012604400014],[62.50367272200017,80.82412344000004],[62.50863691500009,80.83417389500009],[62.51823978000018,80.84031810100008],[62.52979576900011,80.84381745000013],[62.77051842500012,80.88556549700009],[62.882497592000185,80.89801666900011],[62.938161655000016,80.91022370000009],[63.03646894600015,80.94887929900013],[63.14226321700019,80.97138092700014],[63.58936608150006,80.9791323915001],[64.03646894600016,80.98688385600015],[64.16911868600008,81.01019928600006],[64.18604576900006,81.01902903900009],[64.19288170700023,81.03139883000013],[64.19646243600002,81.0436465520001],[64.20240319100006,81.05316803600003],[64.21680748800011,81.05687083500005],[64.19874108200011,81.07074616100014],[64.177500847,81.076076565],[64.1326603520001,81.08242422100012],[64.12037194100006,81.09357330900013],[64.13257897199999,81.10529205900006],[64.1546330090001,81.11456940300009],[64.19019616000017,81.121527411],[64.20630944100006,81.12970612200009],[64.23731530000006,81.15184153899999],[64.25586998800006,81.16225820500016],[64.2747501960001,81.16913483300009],[64.42286217500012,81.19383372600005],[64.70484459700018,81.205267645]]],[[[59.74268639400006,81.16673411700013],[59.729665561000076,81.16486237200014],[59.37216230550004,81.1789614930001],[59.01465905000012,81.19306061400012],[58.99463951900005,81.19818756700015],[59.001719597,81.2045352230001],[59.097666863000114,81.21312083499998],[59.41740970150008,81.20144277550004],[59.73715254000009,81.18976471600008],[59.75554446700008,81.18488190300003],[59.75855553500017,81.17853424700009],[59.75554446700008,81.16998932500017],[59.74268639400006,81.16673411700013]]],[[[91.33277428500006,81.08075592700011],[91.18620853000007,81.05683014500006],[90.78958852133351,81.07298411633343],[90.39296851266684,81.08913808766685],[89.99634850400011,81.10529205900006],[89.97413170700015,81.11033763200008],[89.93433678500017,81.13076406500015],[89.91456139400006,81.13263580900012],[89.92432701900006,81.14793528899997],[89.92302493600019,81.15802643400004],[89.91211998800011,81.16567617400007],[89.8938908210001,81.17357005400004],[89.93702233200023,81.18016185100011],[90.0227970710001,81.20595937700016],[90.06470787900011,81.20709870000007],[90.071543816,81.21454498900006],[90.53264407633341,81.20723433366679],[90.99374433666677,81.1999236783334],[91.45484459700018,81.19261302300013],[91.5472111340001,81.15379466400013],[91.57113691500014,81.14297109600012],[91.57390384200002,81.13556549700006],[91.559336785,81.13019440300017],[91.370860222,81.10407135600003],[91.34424889400006,81.09625885600003],[91.33277428500006,81.08075592700011]]],[[[57.700450066000165,81.13715241100009],[57.38982181100008,81.12376536700008],[56.99439537900017,81.16616445500016],[57.02800540500019,81.17885976800011],[57.068532748000194,81.18427155200008],[57.24203535200015,81.18943919500008],[57.33619225400017,81.205267645],[57.397308790000096,81.21629466400007],[57.61158287900011,81.22280508000014],[57.67066491000017,81.23187897300015],[57.79542076900005,81.23395416900017],[57.88786868600019,81.2455508480001],[57.95777428500011,81.24420807500009],[58.02654056100019,81.23403554900015],[58.08375084700006,81.21454498900006],[57.85181725400011,81.19013092700011],[57.770762566000165,81.14801666900014],[57.700450066000165,81.13715241100009]]],[[[95.96753991000006,81.20502350500006],[95.98438561300006,81.20091380400011],[96.13526451900012,81.20246002800015],[96.171153191,81.19342682500013],[96.15739993600019,81.1798363300001],[96.1845809250001,81.17145416900003],[96.24586022200006,81.16673411700013],[96.27491295700011,81.16107819200012],[96.27979576900006,81.15721263200014],[96.28785241,81.1439883480001],[96.29395592500012,81.1388207050001],[96.55469811300006,81.0773786480001],[96.53288821700018,81.06464264500015],[96.5307723320001,81.0463320980001],[96.54411868600019,81.02985260600009],[96.56861412900011,81.02277252800006],[96.73275800900015,81.00844961100016],[96.71070397200006,81.00210195500013],[96.6658634770001,80.99648672100012],[96.64405358200005,80.987982489],[96.6624455090001,80.98065827000009],[96.68327884200019,80.97601959800005],[96.7049259770001,80.97394440300006],[96.72584069100006,80.97431061400005],[96.71973717500005,80.96751536700012],[96.76636803500016,80.9499372420001],[96.86329186300006,80.942572333],[96.91089928500004,80.93333567900014],[96.95484459700006,80.910589911],[96.97299238400015,80.90607330900013],[97.42481530000006,80.8514671900001],[97.42025800900014,80.84833405200011],[97.41065514400005,80.8371442730001],[97.56088300900008,80.84202708500008],[97.65267988400015,80.82868073100015],[97.75464928500017,80.82929108300011],[97.78858483200011,80.81663646000005],[97.7561955090001,80.80288320500013],[97.74708092500012,80.79621002800017],[97.78150475400011,80.7955996770001],[97.81641686300006,80.78961823100008],[97.88355553500006,80.76947663000006],[97.85230553500016,80.75543854400011],[97.78077233200011,80.74982330900012],[97.74708092500012,80.74160390800002],[97.80111738400008,80.7338727890001],[97.92652428500017,80.74095286700008],[97.97291100400017,80.72113678600014],[97.94410241,80.700140692],[97.8958439460001,80.69318268400012],[97.80225670700005,80.69379303600009],[97.78028405000012,80.69106679900001],[97.7669376960001,80.68593984600008],[97.74048912900011,80.66925690300015],[97.7190047540001,80.66364166900014],[97.6953231130001,80.66502513200014],[97.65088951900006,80.67267487200014],[97.55534915500019,80.674261786],[97.37322024800002,80.65277741100006],[97.32984459700018,80.65322500200007],[97.28825931100019,80.66583893400006],[97.29420006599999,80.67072174700012],[97.13062584700018,80.66583893400006],[97.14454186300006,80.65668366100005],[97.17554772200018,80.65058014500009],[97.19157962300008,80.64533112200009],[97.16032962300018,80.62254466400007],[97.08187910200016,80.602525132],[97.04737389400006,80.583929755],[97.05941816500015,80.5722516950001],[97.05469811300006,80.567572333],[97.04216556100008,80.56488678600002],[97.03077233200004,80.559719143],[97.01978600400011,80.54804108300003],[97.01758873800006,80.54214101800005],[97.01929772200006,80.53656647300006],[97.0207625660001,80.52586497600014],[97.13721764400006,80.49457428600009],[97.1487736340001,80.48700592700014],[97.14527428500017,80.4703636740001],[97.14698326900006,80.45368073100006],[97.17497806100019,80.44611237200009],[97.18734785200016,80.4444033870001],[97.1992293630001,80.439195054],[97.20850670700005,80.43085358300011],[97.21265709700018,80.41941966399999],[97.20980879000015,80.41046784100014],[97.1956486340001,80.39874909100014],[97.19157962300008,80.39154694200012],[97.19361412900011,80.3705508480001],[97.20582116000017,80.35561758000013],[97.22584069100006,80.34666575700011],[97.25074303500017,80.34369538],[97.3348087900001,80.34369538],[97.42286217500006,80.32697174700016],[97.42286217500006,80.31956614799999],[97.41423587300002,80.31053294500008],[97.4044702480002,80.30272044499998],[97.38998457100014,80.29572174700009],[97.34229576900005,80.28974030199998],[97.24984785200009,80.264593817],[97.219493035,80.26178620000013],[97.22950280000006,80.2512067730001],[97.23308353000007,80.24811432500012],[97.18799889400012,80.23358795800009],[96.75718834720013,80.21452057520003],[96.32637780040007,80.19545319240008],[95.89556725360008,80.17638580960012],[95.46475670680016,80.15731842679997],[95.0339461600001,80.13825104400014],[94.86304772200006,80.15155670800006],[94.80941816500015,80.14329661699999],[94.74398847700009,80.12177155200006],[94.718028191,80.11782461100007],[94.53003991,80.13100820500001],[94.50570722700016,80.12523021000005],[94.48878014400006,80.11546458500011],[94.473806186,80.10394928600009],[94.45777428500006,80.094427802],[94.17253665500007,80.04157135600012],[93.85059655000006,80.02020905200006],[93.74984785200016,79.996771552],[93.69410241000017,79.99811432500017],[93.33924401150013,80.0477155620001],[92.98438561300011,80.09731679900001],[92.9905705090001,80.103461005],[92.9650171230002,80.11102936400015],[92.50489342500006,80.15766022300014],[92.40845787900011,80.15192291900017],[92.0657658210001,80.17243073100003],[92.09099368600006,80.18268463700015],[92.1414494150001,80.18447500200013],[92.16732832100008,80.18829987200014],[92.17400149800008,80.1925316430001],[92.1790470710001,80.19891998899999],[92.18213951900006,80.20477936400015],[92.18246504000008,80.2071800800001],[92.1953231130001,80.20815664300005],[92.20687910200016,80.20620351800004],[92.21827233200011,80.20294830900015],[92.52784264450011,80.18154531450007],[92.83741295700023,80.16014232],[92.88819420700005,80.17243073100003],[92.8572697270001,80.18797435100014],[92.7757267590001,80.18976471600001],[92.69996178500006,80.20368073100009],[92.43897545700023,80.210109768],[92.36207116000006,80.22646719000012],[92.28101647200018,80.23041413000011],[92.24398847700016,80.2412783870001],[92.25212649800008,80.24811432500012],[92.21762129000015,80.26532623900012],[92.129649285,80.275864976],[92.10743248800006,80.28974030199998],[92.39975019650015,80.29444000900008],[92.69206790500007,80.29913971600011],[92.73088626400008,80.29812246300004],[92.79761803500004,80.29503001500017],[92.83611087300014,80.29165273600013],[93.2893986340001,80.26683177299999],[93.3201603520001,80.27606842700006],[93.30469811300006,80.28733958500014],[93.28402754000015,80.29682038000014],[93.2443953790001,80.309556382],[93.19214928500006,80.31647370000007],[92.7964787120001,80.31008535400018],[92.73552493600019,80.3113060570001],[92.33434763566677,80.30411747200012],[91.93317033533347,80.29692888700005],[91.53199303500006,80.28974030199998],[91.559336785,80.296576239],[91.6185001960001,80.304388739],[91.641286655,80.31704336100016],[91.50342858200023,80.30670807500015],[91.42212975400017,80.309556382],[91.472422722,80.35040924700014],[91.54615319100006,80.35976797100007],[91.62468509200008,80.35956452000012],[91.6889754570001,80.37164948100003],[91.68140709700006,80.3744570980001],[91.66236412900017,80.385239976],[91.98878014400012,80.40159739800002],[92.0403751960001,80.39118073100012],[92.0706486340001,80.38837311400006],[92.10010826900006,80.390326239],[92.1209416020001,80.39899323100009],[92.1106876960001,80.40228913000014],[92.10010826900006,80.40436432500015],[92.56226647200012,80.37946198100012],[92.62761478000019,80.39154694200012],[92.36223392050013,80.40521881700006],[92.09685306100019,80.418890692],[92.01295006600006,80.44033437700013],[91.92750084700012,80.44839101800007],[91.88770592500012,80.4603945980001],[91.91846764400012,80.46841054900013],[92.276621941,80.50946686400012],[92.74048912900017,80.5130069030001],[92.76929772200018,80.51675039300015],[92.79265384200019,80.52928294500003],[92.79493248800006,80.53530508000016],[92.79346764400012,80.54140859600012],[92.79322350400017,80.54743073100015],[92.80469811300011,80.55784739800012],[92.81462649800018,80.5756696640001],[92.82056725400011,80.583929755],[92.81169681100008,80.591253973],[92.80176842500005,80.59589264500012],[92.790782097,80.5978050800001],[92.77898196700008,80.59690989800002],[92.78484134200019,80.60394928600006],[92.79265384200019,80.60932038000011],[92.813243035,80.61741771000005],[92.82520592500006,80.65062083500008],[92.88868248800006,80.68048737200013],[93.23959394600016,80.76943594000006],[93.27247155000005,80.78253815300003],[93.27027428500006,80.79710521000007],[92.89844811300011,80.76203034100008],[92.75513756600017,80.77570221600003],[92.73682701900012,80.77252838700015],[92.70142662900011,80.75844961100002],[92.68238366,80.75519440300015],[92.53467858200011,80.75307851800015],[92.50261478000019,80.75861237200017],[92.49724368600008,80.77570221600003],[92.5203556650001,80.79218170800003],[92.55860436300004,80.80267975500009],[92.62818444100004,80.80988190300012],[92.63111412900017,80.81366608300014],[92.67286217500012,80.83405182500012],[92.68580162900011,80.84267812700004],[92.70036868600002,80.84853750200007],[92.71558678499999,80.85138580900009],[92.731211785,80.8514671900001],[92.72339928499999,80.86420319200015],[92.7088322270001,80.87262604400009],[92.69190514400012,80.87734609600001],[92.67652428500017,80.87872955900018],[92.71876061300006,80.88800690300003],[92.80518639400006,80.89179108300006],[92.88884524800014,80.910589911],[93.10694420700023,80.92072174700014],[93.14844811300004,80.93073151200004],[93.16260826900006,80.94696686400009],[93.14242597700016,80.95770905199998],[93.07585696700002,80.97345612200014],[93.07325280000006,80.987982489],[93.057871941,80.99428945500011],[93.05274498800011,80.99542877800017],[93.47136478000012,81.04389069200006],[93.65495853000002,81.03229401200004],[93.66895592500006,81.03440989800004],[93.67481530000012,81.03790924700006],[93.67888431100019,81.04291413000009],[93.6814884770001,81.04767487200017],[93.68336022200006,81.05003489800013],[93.69971764400006,81.05402252800012],[94.05884850400017,81.06903717700014],[94.16163170700005,81.09247467700011],[94.38599694100006,81.11408112200012],[94.55713951900006,81.10398997600004],[94.88965905000006,81.14435455900009],[95.03711998800006,81.18793366100012],[95.10922285200016,81.19635651200015],[95.18702233200005,81.21759674700014],[95.5472111340001,81.22077057500003],[95.51807701900006,81.23029205900012],[95.06055748800006,81.2416445980001],[95.0339461600001,81.24868398600016],[95.1035262380001,81.27130768400004],[95.44007408950007,81.28005605650004],[95.776621941,81.28880442900008],[95.83472741000016,81.27594635600015],[95.89820397200016,81.25169505400008],[95.99732506600004,81.24249909100008],[96.02027428500006,81.23444245000015],[95.96558678500011,81.22280508000014],[95.95875084700018,81.21454498900006],[95.96753991000006,81.20502350500006]]],[[[60.47396894600009,81.24689362200017],[60.432302280000066,81.24437083500005],[60.137176954500056,81.26569245000003],[59.8420516290001,81.2870140650001],[59.84058678500018,81.29157135600003],[59.849945509000094,81.29734935100002],[60.03199303500017,81.31110260600012],[60.51400800900015,81.28953685100011],[60.53484134200019,81.28400299700009],[60.56275475400016,81.27362702000009],[60.56576582100015,81.27195872600008],[60.57146243600002,81.26813385600015],[60.55152428500017,81.26056549700012],[60.47396894600009,81.24689362200017]]],[[[56.78101647200006,81.38519928600006],[56.76099694100017,81.3790550800001],[56.78907311300006,81.36847565300003],[56.82667076900006,81.36912669499999],[56.898203972,81.3790550800001],[57.15345299550009,81.36009349150012],[57.40870201900006,81.34113190300015],[57.42286217500012,81.33649323100003],[57.44752037900012,81.32225169500013],[57.45997155000011,81.31696198100015],[57.498789910000106,81.31232330900004],[57.61752363400014,81.3305524760001],[57.68873131600017,81.33112213700018],[57.90503991000011,81.29710521000005],[57.81080162900011,81.27464427300004],[57.42916914200006,81.26394277549998],[57.047536655000066,81.25324127800012],[56.708343946000156,81.20392487200003],[56.614512566000165,81.17853424700009],[56.43116295700011,81.17446523600013],[56.383636915000096,81.1798363300001],[56.3899845710001,81.20376211100016],[56.34376061300023,81.21857330900004],[56.240407748000024,81.228216864],[55.82439212300014,81.18646881700006],[55.73959394600015,81.20115794500008],[55.646820509000094,81.20026276200015],[55.61036217500006,81.20294830900005],[55.57504316500009,81.21222565300009],[55.56055748800006,81.22308991100009],[55.567067905000066,81.23273346600014],[55.58073978000018,81.23956940300017],[55.58863366000017,81.24188873900012],[55.58326256600011,81.25381094000006],[55.58611087300008,81.26361725500001],[55.595388217000135,81.27114492400007],[55.60906009200007,81.27594635600015],[55.431651238000114,81.27594635600015],[55.431651238000114,81.28343333500011],[55.4588322270001,81.28807200700005],[55.51449629000015,81.28949616100012],[55.54078209700006,81.29710521000005],[55.5232853520001,81.30695221600017],[55.48422285200015,81.31525299700014],[55.46566816500015,81.32440827000012],[55.585459832000105,81.31696198100015],[55.71208743600019,81.3305524760001],[55.70582116000016,81.32440827000012],[55.734141472,81.31704336100013],[55.764333530000016,81.31537506700012],[55.83472741000011,81.32477448100015],[55.86963951900006,81.32440827000012],[55.884450717000135,81.32192617400001],[55.89405358200011,81.31663646000014],[55.89869225400011,81.3115908870001],[55.89771569100017,81.31012604400014],[55.95362389400012,81.30084870000007],[56.07447350400017,81.30194733300014],[56.21599368600019,81.27724844000015],[56.544769727000094,81.25478750200016],[56.60279381600017,81.26170482000005],[56.60279381600017,81.26911041900001],[56.5721134770001,81.26972077],[56.472992384000094,81.28969961100007],[56.41334069100011,81.31834544500005],[56.39112389400006,81.32440827000012],[56.418304884000094,81.33808014500006],[56.40748131600017,81.34430573100003],[56.38331139400006,81.350043036],[56.37378991000016,81.3551699890001],[56.35922285200016,81.37400950700005],[56.35084069100017,81.37946198100008],[56.33594811300022,81.3790550800001],[56.33594811300022,81.38519928600006],[56.726247592000185,81.397162177],[56.78101647200006,81.38519928600006]]],[[[59.30014082100015,81.3642031920001],[59.35694420700011,81.34430573100003],[59.38542728000014,81.3305524760001],[59.34245853000007,81.30426666900009],[59.285166863000114,81.30003489799999],[59.22486412900017,81.30390045800007],[59.054372592000014,81.28705475500009],[58.65463300900014,81.30658600500006],[58.593923373000194,81.32111237200009],[58.56348717500011,81.32440827000012],[58.51050866000017,81.32111237200009],[58.48121178500017,81.32363515800002],[58.464121941000116,81.334947007],[58.46949303500016,81.34747955900009],[58.49252363400014,81.35187409100008],[58.53614342500006,81.35175202],[58.669200066000165,81.3815778670001],[59.01791425900015,81.40338776200015],[59.10971113400009,81.39740631700015],[59.13949629000009,81.39105866100012],[59.15723717500012,81.3867048200001],[59.245941602000094,81.37653229400017],[59.30014082100015,81.3642031920001]]],[[[57.79574629000009,81.53607819200015],[57.813161655000066,81.52924225500013],[57.84815514400005,81.52228424700014],[57.86402428500011,81.51618073100015],[57.85865319100011,81.51129791900009],[57.84896894600009,81.49970123900006],[57.84351647200006,81.49506256700015],[57.888845248000074,81.48558177300013],[58.14437910250015,81.47988515850001],[58.39991295700011,81.47418854400017],[58.544444207000225,81.42999909100011],[58.570485873000194,81.4131533870001],[58.51758873800022,81.402777411],[58.41065514400012,81.39622630400011],[58.30567467500012,81.37689850499999],[58.05164635500009,81.37789541250011],[57.79761803500017,81.37889232000012],[57.659434441000116,81.399359442],[57.60279381600017,81.39516836100016],[57.57667076900012,81.398871161],[57.567393425000056,81.415716864],[57.5623478520001,81.41998932500012],[57.54558353000019,81.42446523600007],[57.438731316000116,81.43773021000011],[57.26612389400006,81.42682526200004],[57.010590040000096,81.43836090700016],[56.755056186000076,81.449896552],[56.74048912900011,81.45351797100015],[56.761485222000054,81.46515534100017],[56.792491082000055,81.47231679900001],[56.935883009000094,81.48281484600005],[56.981781446000156,81.49323151200015],[57.007497592000135,81.50873444200009],[56.99122155000006,81.50983307500002],[56.97543379000015,81.51284414300011],[56.946055535000106,81.52240631700012],[57.013031446000156,81.53681061400007],[57.48226972700016,81.53335195500007],[57.51449629000009,81.54291413000009],[57.505056186000076,81.54767487200017],[57.49488366000011,81.55060455900009],[57.48454837300014,81.5514183610001],[57.51417076900005,81.56000397300002],[57.784027540000096,81.56476471600011],[57.823008660000106,81.55027903900007],[57.80347741000011,81.53876373900012],[57.79574629000009,81.53607819200015]]],[[[62.186289910000106,81.55931224199998],[62.068044467000185,81.54730866100006],[61.82813561300011,81.564398505],[61.71265709700006,81.59707265800013],[61.65398196700019,81.60492584800011],[61.68433678500017,81.61041901200007],[61.903656446000156,81.60492584800011],[62.01099694100017,81.60293203300007],[62.07504316500015,81.58999258000007],[62.14112389400005,81.58608633000007],[62.174082879000174,81.57762278900005],[62.19629967500012,81.5648460960001],[62.186289910000106,81.55931224199998]]],[[[58.66529381600017,81.59613678600006],[58.493011915000146,81.579087632],[58.36947675900015,81.57965729400017],[58.368907097000054,81.57965729400017],[58.29769941500016,81.58478424700016],[58.275726759000094,81.59271881700013],[58.28077233200016,81.599839585],[58.29175866000011,81.6045596370001],[58.364105665000146,81.61066315300009],[58.39486738400015,81.62197500200006],[58.41358483200022,81.62518952000012],[58.58269290500018,81.62954336100002],[58.611664259000094,81.633937893],[58.64682050900016,81.6335309920001],[58.6751408210001,81.62689850500014],[58.68572024800002,81.6231143250001],[58.69646243600007,81.62030670800006],[58.70232181100019,81.61261627800003],[58.68946373800006,81.60325755400011],[58.66529381600017,81.59613678600006]]],[[[62.765961134000094,81.70661041900009],[63.22177168050016,81.70079173400013],[63.6775822270001,81.69497304900007],[63.805918816,81.66014232000005],[63.78028405000006,81.63890208500005],[63.74740644600015,81.62376536700008],[63.71216881600011,81.61473216400005],[63.467458530000016,81.589056708],[63.29664147200017,81.59878164300011],[63.210459832000105,81.59271881700013],[62.950694207000225,81.60344065950001],[62.69092858200022,81.61416250200007],[62.61150149800014,81.63056061400007],[62.53386478000019,81.63792552299998],[62.50367272200017,81.65277741100014],[62.517344597,81.66014232000005],[62.10645592500011,81.67324453300002],[62.10645592500011,81.68008047100012],[62.16944420700022,81.69334544500005],[62.191172722000175,81.69424062700016],[62.22486412900011,81.70184967699998],[62.461273634000094,81.716498114],[62.53834069100006,81.7057152360001],[62.64771569100006,81.72162506700003],[62.80469811300011,81.72162506700003],[62.78614342500012,81.712632554],[62.765961134000094,81.70661041900009]]],[[[59.002235005000124,81.74027469800016],[58.64882788700007,81.72722673800014],[58.29542076900006,81.71417877800003],[57.98943118600019,81.690130927],[57.89128665500018,81.70795319200008],[57.894297722000175,81.7155622420001],[57.89877363400015,81.72272370000015],[57.90463300900009,81.72919342700006],[57.91187584700006,81.73468659100007],[57.928070509000094,81.73358795800014],[57.934580925000056,81.73969147300012],[57.93816165500007,81.74835846600003],[57.945974155,81.75519440300006],[57.96314537900016,81.759711005],[58.14527428500011,81.77684153900013],[58.09424889400012,81.7847354190001],[57.988129102000094,81.78725820500003],[57.939707879000174,81.80361562700013],[57.97779381600018,81.81663646000011],[58.069997592000014,81.81704336100012],[58.1560978520001,81.83026764500006],[58.50896243533336,81.8397484393334],[58.86182701866672,81.84922923366675],[59.2146916020001,81.85871002800009],[59.304535352000094,81.84296295800011],[59.40308678500011,81.83657461100002],[59.43995201900012,81.81781647300015],[59.413828972000054,81.8167992210001],[59.38445071700002,81.810248114],[59.33130944100011,81.78986237200003],[59.362315300000056,81.78058502800015],[59.372325066000116,81.77374909100014],[59.372325066000116,81.76264069200012],[59.355642123000194,81.75332265800007],[59.002235005000124,81.74027469800016]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Slovakia","sov_a3":"SVK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Slovakia","adm0_a3":"SVK","geou_dif":0,"geounit":"Slovakia","gu_a3":"SVK","su_dif":0,"subunit":"Slovakia","su_a3":"SVK","brk_diff":0,"name":"Slovakia","name_long":"Slovakia","brk_a3":"SVK","brk_name":"Slovakia","brk_group":null,"abbrev":"Svk.","postal":"SK","formal_en":"Slovak Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovak Republic","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":4,"mapcolor13":9,"pop_est":5463046,"gdp_md_est":119500,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"LO","iso_a2":"SK","iso_a3":"SVK","iso_n3":"703","un_a3":"703","wb_a2":"SK","wb_a3":"SVK","woe_id":23424877,"woe_id_eh":23424877,"woe_note":"Exact WOE match as country","adm0_a3_is":"SVK","adm0_a3_us":"SVK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SVK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.706321249000098,49.38752919600011],[19.726578409000098,49.388872783000096],[19.760064738000096,49.397657776000074],[19.76905606000011,49.39321262800007],[19.769263143000103,49.393110250000035],[19.77856490100004,49.37419667600011],[19.783629191000102,49.35755686500008],[19.78952030500011,49.30918772500013],[19.787970011000084,49.30510528600013],[19.780321899000114,49.297612203000085],[19.779713206000107,49.29345279200001],[19.779701783000036,49.293374735000036],[19.783215779000102,49.290015768000046],[19.796859623000017,49.283399017000136],[19.796961711000023,49.2833495080001],[19.798563188000116,49.28108074800008],[19.798822062000028,49.28071401000011],[19.806415196000103,49.27548756700011],[19.806780233000094,49.27523630800002],[19.80864058500009,49.270895488000036],[19.806263469000072,49.2652627570001],[19.80047570800008,49.26304067000009],[19.79406783000013,49.26185211200007],[19.78962365700005,49.25947499600002],[19.75179650800007,49.21906402600004],[19.747786945000144,49.205955836000044],[19.747765747000074,49.205886536000065],[19.76068485500008,49.1942076630001],[19.785902954000022,49.18816152000005],[19.83199833200004,49.18588775600003],[19.854219197000077,49.19126210600009],[19.86829182300005,49.20078819100012],[19.8878088780001,49.213999736000055],[19.905895630000117,49.22278472900007],[19.937935018000132,49.2251101680001],[19.965736939000095,49.21565338200011],[20.017310018000103,49.18387237600009],[20.050486287000098,49.17322703100009],[20.070019979000108,49.183097229000076],[20.080355265000037,49.20810862300007],[20.086039673000073,49.243041891000075],[20.09844201700014,49.252860413000036],[20.10536665900011,49.263970846000056],[20.111051066000073,49.27585642500008],[20.130171346000054,49.303916728000104],[20.13585575400012,49.30887766500007],[20.138336222000078,49.307327373000135],[20.160350382000075,49.30562205000007],[20.170168904000036,49.31161651600009],[20.19197635900005,49.32861806300011],[20.20716923000009,49.33419911700014],[20.28437382000007,49.33864329100004],[20.28933475700012,49.343087464000064],[20.296466105000064,49.356936747000105],[20.301633748000143,49.37119944300008],[20.30370080600011,49.38039784800009],[20.307421509000022,49.38659902000006],[20.317653443000097,49.39161163300013],[20.32953902100013,49.391766663000084],[20.37046675600007,49.38168975800004],[20.422143188000092,49.38298167000008],[20.421936483000138,49.40018992200007],[20.437542765000074,49.4025153610001],[20.522085408000066,49.37435170500004],[20.543996215000107,49.370837708000096],[20.567664022000116,49.3763670860001],[20.579136189000053,49.38339508100009],[20.59505253100008,49.396262512000106],[20.60528446400005,49.400034892000114],[20.614482870000046,49.40044830300013],[20.63608361800004,49.398329570000065],[20.67391076600009,49.40230865500004],[20.68951704900013,49.40049998000006],[20.77829716000008,49.33120188400002],[20.794110148000073,49.32365712600006],[20.816537719000053,49.32138336200006],[20.833590943000075,49.32205515600003],[20.849300578000054,49.32050486200012],[20.868007446000036,49.31140981100003],[20.88433719900007,49.30029937800003],[20.900563599000094,49.29259958900013],[20.91896040800009,49.29032582600009],[20.94242150900007,49.29585520500012],[20.964022258000114,49.308102519000045],[20.99668176300011,49.339366761000036],[21.017248983000087,49.35244089800008],[21.032958618000063,49.354611308000074],[21.054042602000095,49.354766337000115],[21.07254276600011,49.357195130000086],[21.080707641000117,49.366341858000055],[21.06851200300011,49.38143137600008],[21.04546431500006,49.390578105000145],[21.033268677000137,49.399673157000024],[21.05352583800004,49.41445261600003],[21.068822062000095,49.419206848000044],[21.10943973800005,49.424581198000084],[21.12494266700014,49.42365102200002],[21.14302941900007,49.41553782200003],[21.157292114000143,49.405150859000116],[21.172588338000082,49.398277893000056],[21.194085734000055,49.40060333300007],[21.211242310000102,49.41109364900012],[21.242454875000078,49.44127268500003],[21.2605416260001,49.44943756100014],[21.27439091000005,49.44726715100006],[21.330408163000072,49.42778513600007],[21.427869913000052,49.409801738000084],[21.44440637200006,49.4099050910001],[21.481510051000043,49.41522776400006],[21.496186157000125,49.412385560000075],[21.514421954000113,49.41721268200007],[21.52956913300008,49.42122222900008],[21.601192668000067,49.4264932260001],[21.619899536000048,49.423340963000044],[21.63002811700008,49.41889679000005],[21.648631632000047,49.40706288700002],[21.65876021300008,49.40246368400008],[21.666304972000148,49.401791890000084],[21.68180790200006,49.40406565400011],[21.69172977700015,49.40215362600008],[21.708576294000125,49.39088816400004],[21.742165975000148,49.35709177700005],[21.75756555200013,49.34892690100014],[21.768004191000074,49.353474427000066],[21.782163533000126,49.36448150600006],[21.799423461000117,49.374816793000065],[21.81957727000008,49.37724558600013],[21.837870727000052,49.37042429700008],[21.87456099500011,49.348358460000064],[21.928407836000048,49.33078847200011],[21.96447798600005,49.30856760700007],[21.99321008300006,49.27818186500011],[22.005819133000102,49.24288686100002],[22.01243371600009,49.211054180000076],[22.040752401000077,49.19746327800007],[22.11154911300011,49.18862660800008],[22.144105265000064,49.17488067700006],[22.15568078600012,49.17152170800003],[22.165706014000136,49.17110829700002],[22.18968387800004,49.17302032500003],[22.197952108000095,49.171986796000056],[22.208907511000064,49.163976949000066],[22.209010864000106,49.15694895400008],[22.206220337000047,49.15048940000011],[22.208494100000053,49.14418487600011],[22.21593550600008,49.139999085000056],[22.262857707000137,49.13059397400011],[22.31815148900006,49.1319892380001],[22.33944217900003,49.1264598600001],[22.390085083000084,49.093025208000114],[22.42677535000007,49.085635478000086],[22.50501346900012,49.08341339200009],[22.539636678000136,49.07219960600013],[22.531988566000052,49.05571482400006],[22.524753865000093,49.032873841000054],[22.52010298600004,49.0098261520001],[22.52051639800004,48.99292795800011],[22.50501346900012,48.98424631800006],[22.46656620300007,48.98052561500003],[22.448996216000097,48.97143056200007],[22.427292114000096,48.92946930000008],[22.41488977100005,48.911692607000134],[22.413649536000094,48.90678334600011],[22.413752889000136,48.89386423800007],[22.4117891840001,48.88776641900003],[22.402384074000054,48.8788263960001],[22.378406210000033,48.865442200000075],[22.370798705000112,48.85824814700009],[22.36889774600013,48.85645050100003],[22.36228316200004,48.8442548620001],[22.36155969300006,48.83645172200008],[22.36352339600009,48.828286845000065],[22.36569380700007,48.794387106000066],[22.363420044000065,48.787617493000106],[22.356495402000064,48.7761453250001],[22.34781376100011,48.767877096000056],[22.338408650000048,48.76296783500004],[22.330760539000067,48.75640492800005],[22.327659953000133,48.743020732000105],[22.328900187000073,48.72157501300009],[22.32249230900004,48.70033599900012],[22.310296671000117,48.681680807000134],[22.294276978000056,48.66762481700002],[22.282184692000072,48.662405497000094],[22.25551965400012,48.656772766000074],[22.243220663000102,48.65119171100005],[22.235675903000125,48.64416371700014],[22.2252372640001,48.62822153800002],[22.219036092000124,48.620935161000034],[22.153717081000078,48.58587270100011],[22.1387309160001,48.56959462500009],[22.136663859000038,48.549337463000086],[22.148342733000106,48.50882314100008],[22.144828735000146,48.4931135060001],[22.13376997900005,48.47683542900009],[22.132839803000106,48.404798483],[22.113926229000068,48.388649598000114],[22.09645959500011,48.379425354000034],[22.07785607900007,48.375808004000135],[22.01801477100011,48.379735413000105],[21.999928019000095,48.37896026700008],[21.9815312100001,48.37472279900004],[21.929338012000102,48.37291412400006],[21.91476525900015,48.369090068000105],[21.884276164000056,48.35746287100005],[21.841178019000065,48.35317372700007],[21.78939823400009,48.33552622500008],[21.759012492000124,48.33376922600009],[21.72769657400002,48.340900574000045],[21.70123824000012,48.353948873000085],[21.677570434000103,48.37234568300008],[21.62155318200007,48.42965484600006],[21.613388305000058,48.44035186800007],[21.600365844000123,48.4816413370001],[21.591684204000074,48.493010153000085],[21.57463098100004,48.49556813600006],[21.53773400800011,48.495232239000075],[21.52181766700008,48.5000898240001],[21.515099732000067,48.507117819000115],[21.506004679000085,48.52649648000007],[21.4993900960001,48.53507476900008],[21.490811809000064,48.54026825000011],[21.472725057000048,48.544996644],[21.43913537600011,48.558329163000025],[21.424562622000053,48.561274720000114],[21.37267948400006,48.55034515400007],[21.338573038000106,48.54985422800013],[21.32182987400006,48.54758046500009],[21.302296183000124,48.53990651500001],[21.29392460100007,48.53057891800009],[21.288240194000107,48.51993357400008],[21.276561320000038,48.508719788000036],[21.261781861000117,48.50319041000005],[21.25041304500013,48.50649770100006],[21.23801070200008,48.51344818200005],[21.219923950000066,48.518719177000065],[21.186747680000053,48.513706564000096],[21.10933638500012,48.489108582000114],[21.08401493300005,48.493010153000085],[21.06386112400014,48.50623931900005],[21.035955851000068,48.51463673900005],[21.006500285000072,48.51815073700001],[20.981488891000083,48.51685882600006],[20.945832154000072,48.518977560000025],[20.891365193000098,48.54109507200013],[20.859945922000065,48.54331716000004],[20.84547652100011,48.54582346600003],[20.81581425000007,48.5638068640001],[20.80031132000005,48.56923289000008],[20.784084920000055,48.56905202300004],[20.572521606000066,48.53657338500011],[20.510509888000115,48.53378285800005],[20.481674439000074,48.526083069000066],[20.480537557000076,48.51853831000011],[20.48022749800009,48.51021840400006],[20.4821912030001,48.492880962000044],[20.48281132000008,48.489366964000084],[20.482914673000096,48.48582712800004],[20.482501261000095,48.482261455000064],[20.481674439000074,48.47874745700011],[20.46823856600011,48.46538909900008],[20.46596804300009,48.463790392000135],[20.435579060000038,48.44239308700011],[20.42059289500008,48.429241435000044],[20.409017374000115,48.413712667000105],[20.370156697000084,48.33433766700006],[20.34927941900008,48.30547638000013],[20.324268026000112,48.279948223000076],[20.2952258710001,48.260414531000066],[20.27238488800009,48.25245636000011],[20.260292602000106,48.25589284300014],[20.249027140000067,48.26418691],[20.22908003700013,48.270904847000025],[20.21781457500009,48.26759755500012],[20.18763553900007,48.24899403900008],[20.17089237500002,48.244033102000024],[20.15332238700006,48.24527333600005],[20.143090454000088,48.24780548100006],[20.13451216700014,48.246668600000135],[20.12200646900004,48.236746725000046],[20.11807906100009,48.22971873000003],[20.11260135900008,48.211735332000046],[20.105263305000108,48.20279530900012],[20.096995077000145,48.19842865100014],[20.078081502000117,48.19354522800012],[20.038302702000124,48.17723305700011],[20.034983357000097,48.175871887000106],[19.996949504000067,48.16791371700006],[19.97390181500009,48.15837941500007],[19.92863326000011,48.13008656800008],[19.905068806000088,48.124298808000106],[19.884294881000073,48.12962148000014],[19.84626102700011,48.152669169],[19.821663045000037,48.15791432700013],[19.785592895000036,48.14869008400012],[19.77608443200006,48.14951690700005],[19.76667932100011,48.15899953200002],[19.76915979000009,48.167448629000035],[19.774844197000107,48.17607859300006],[19.77432743300008,48.185897116000035],[19.756550740000137,48.200314840000054],[19.733089640000085,48.202898662000045],[19.686994263000145,48.196904195000116],[19.67696903400011,48.20039235400006],[19.655264933000126,48.218349915000054],[19.643896118000043,48.224809469],[19.6338708910001,48.22677317300014],[19.623225545000107,48.22700571700011],[19.53124149500013,48.210650127000065],[19.51398156700014,48.20395802900003],[19.50302616400006,48.18941111200007],[19.493621053000112,48.150705465000065],[19.48173547300007,48.13489247700008],[19.4814254150001,48.13442738900005],[19.48121870900013,48.133962301000025],[19.4814254150001,48.13334218300005],[19.48173547300007,48.13267039000007],[19.483285767000098,48.127192688000086],[19.483802531000034,48.121766663000095],[19.483285767000098,48.11649566600008],[19.48173547300007,48.111328023000084],[19.428198690000045,48.08585154300005],[19.293219849000053,48.08776357100007],[19.233481893000118,48.0620803840001],[19.222526489000046,48.06058176700009],[19.09850305200007,48.07073618600003],[19.03866174300009,48.06487091100004],[19.019016511000103,48.06549686200006],[18.996493774000044,48.06621449800011],[18.981817668000133,48.06161529600007],[18.933595170000075,48.054348892000036],[18.8384672440001,48.040014547000084],[18.821000610000056,48.03045440700009],[18.794232218000076,47.99314402300007],[18.784723754000083,47.987614645000065],[18.765293416000105,47.98539255800005],[18.756198364000056,47.98182688500009],[18.743175903000093,47.97105234800005],[18.74451949000007,47.96735748300005],[18.751444133000064,47.96335256000006],[18.754751424000062,47.951802877000034],[18.744726196000045,47.910513408000014],[18.742245727000068,47.88945526200009],[18.748756958000115,47.8707225550001],[18.778005819000068,47.85144724500006],[18.81645308500012,47.832559509000134],[18.814916380000057,47.832193555000025],[18.790304810000123,47.826332499000046],[18.767670532000068,47.82230173800013],[18.750307251000034,47.81362009700007],[18.717234334000068,47.78811777800004],[18.69284305800005,47.7779633590001],[18.66369755000011,47.77589630100004],[18.633828572000084,47.77982371100009],[18.597448364000115,47.79064992300004],[18.552593221000024,47.792846172000054],[18.347851196000104,47.77677480100007],[18.27302372200006,47.756259257000096],[18.235920044000096,47.75388214100005],[18.11262007600007,47.7624862670001],[17.883531848000132,47.75252142500008],[17.82571252400004,47.750006409000086],[17.741996704000087,47.76538014800007],[17.719244921000097,47.77366906900005],[17.676677693000045,47.78917714500005],[17.6662390540001,47.79703196300008],[17.658384236000074,47.80731557300007],[17.639884074000122,47.81920115200009],[17.61911014800009,47.82922638000011],[17.604227335000132,47.83423899300007],[17.592961873000093,47.83310211200006],[17.582936646000064,47.829794821000064],[17.572601359000146,47.8295364380001],[17.560405721000052,47.83798553500009],[17.526609334000057,47.87211781800008],[17.51730757600012,47.876251933000106],[17.492192830000107,47.879817607000064],[17.481857544000093,47.88271148800007],[17.472039022000047,47.88880930700011],[17.36940962800014,47.98120676700012],[17.337887003000077,47.998725077000074],[17.272671346000063,48.00533966100008],[17.262316384000112,48.00728250800006],[17.220891560000094,48.01505483000011],[17.184821411000087,48.020274150000034],[17.148337850000072,48.005443014],[17.12498010300004,48.01952484100013],[17.09263065600004,48.027250468000034],[17.069686320000102,48.035673726000105],[17.075060669000067,48.05208099400008],[17.063071737000115,48.05877309200008],[17.05914432700004,48.06042673700006],[17.064828735000077,48.07903025400009],[17.0699963780001,48.089158834000045],[17.080228312000088,48.097607931000134],[17.067205851000036,48.10693552700007],[17.06245529600008,48.112724488000055],[17.047465454000076,48.13099090600011],[17.036923462000118,48.13551259400003],[17.020903768000068,48.137166240000084],[17.007157837000104,48.14279897100002],[16.98193973800008,48.16129913400004],[16.974808390000135,48.17687957800006],[16.974705037000092,48.19855784200007],[16.96995080500011,48.2166445930001],[16.95434452300006,48.25255971300004],[16.95393111200005,48.25733978400004],[16.955274699000114,48.26878611300006],[16.95434452300006,48.27312693300013],[16.950623820000146,48.27658925400007],[16.944422648000085,48.27801035600007],[16.933363892000074,48.284728292000096],[16.924268839000092,48.28751882000005],[16.91662072700012,48.29080027300003],[16.913313435000106,48.296691386000134],[16.912073201000084,48.30123891200006],[16.908869263000014,48.306974996000115],[16.905458618000097,48.3119876100001],[16.902771444000052,48.314106344000066],[16.89843062300008,48.31617340100013],[16.900290975000072,48.32123769100011],[16.904218384000046,48.32702545200007],[16.90649214700008,48.33146962500009],[16.90194462100004,48.339401958000046],[16.89171268700005,48.347024231],[16.881170695000094,48.352811992000085],[16.875486287000058,48.355034078000074],[16.855332479000083,48.35645518000007],[16.84758101400007,48.35958160400011],[16.844480428000107,48.36560190900005],[16.845100545000093,48.376583151000034],[16.846857544000073,48.38113067600008],[16.849338012000143,48.384102071000086],[16.851921834000052,48.390406596000105],[16.860810181000147,48.44378835100011],[16.864944295000072,48.45807688500008],[16.875072876000047,48.47153859500014],[16.90122115000014,48.49660166500004],[16.90649214700008,48.50990834600006],[16.913933553000078,48.51933929500012],[16.930470012000086,48.52820180300003],[16.946903117000147,48.53972564700006],[16.9490548790001,48.54483608300003],[16.95434452300006,48.557398987000084],[16.945042766000142,48.60416615800008],[16.9475232340001,48.62315724700005],[16.963336222000123,48.6359471640001],[16.974808390000135,48.64987396300008],[17.025347941000064,48.746328024],[17.049945923000053,48.77402659200004],[17.084362426000098,48.793715312000074],[17.098728475000083,48.80575592100004],[17.104619588000105,48.824617818000064],[17.113714641000087,48.83391957600011],[17.167458130000085,48.85975779200004],[17.212209920000134,48.86606231800005],[17.260269002000086,48.85779408800008],[17.374370565000106,48.8196052050001],[17.391733846000108,48.8217756140001],[17.41122471900013,48.83021633400011],[17.429560994000095,48.83815704300005],[17.453332153000133,48.842756247000096],[17.467904907000104,48.83810536700014],[17.49849735500004,48.81676300100013],[17.535084269000066,48.81299062100001],[17.72721724400006,48.86291005400008],[17.74489058400007,48.872573548000105],[17.779410441000035,48.91174428300004],[17.795533488000046,48.92058095300004],[17.820131469000103,48.92337148100011],[17.841215454000036,48.92099436500007],[17.860335734000042,48.92171783500007],[17.87873254400003,48.93355173800006],[17.886897420000135,48.94724599200009],[17.894648885000066,48.97820017600011],[17.900850057000127,48.99303131100004],[17.914079223000044,49.010497946000065],[17.935059855000134,49.01938629200009],[17.95924442600011,49.02186676000008],[18.012884562000096,49.01912791000012],[18.04606083200011,49.02915313800014],[18.075516398000104,49.047188212000066],[18.096290323000062,49.070287578000034],[18.10290490700004,49.09225006200009],[18.101629686000138,49.13692833200011],[18.101457967000044,49.14294464100007],[18.105075318000047,49.16976471000007],[18.11778771900009,49.20257924500007],[18.136494588000062,49.233068339000056],[18.16057580600011,49.25869985000011],[18.190031372000107,49.276941631000085],[18.324596802000087,49.31125478100008],[18.36158636600004,49.330191418000084],[18.385161580000045,49.342260641000024],[18.387642049000107,49.38975128200013],[18.416787557000134,49.385462138000065],[18.43921512900002,49.39507395500007],[18.481796509000077,49.429077047000106],[18.514662719000114,49.44060089100014],[18.522930949000052,49.44607859400011],[18.527995239000035,49.454863587000034],[18.53047570800001,49.473467102000086],[18.535643351000115,49.48168365500001],[18.556210571000094,49.4901585900001],[18.600445598000135,49.48597279900007],[18.628970988000077,49.495791321000034],[18.63589563000005,49.496721497000095],[18.64282027200005,49.495791321000034],[18.67558313000003,49.48504262300011],[18.704521932000088,49.47925486300005],[18.73253055800012,49.48028839100004],[18.773561645000058,49.504886373],[18.792268514000057,49.50953725200009],[18.833196249000082,49.51026072200008],[18.93220829300006,49.50431793200005],[18.96114709500003,49.49279408800004],[18.95236210100006,49.47594757100006],[18.953395630000045,49.46168487600008],[18.958253214000134,49.4481456500001],[18.960837036000044,49.43331451500006],[18.95670292200012,49.40044830300013],[18.96228397700014,49.389182841000064],[18.981817668000133,49.386805726000034],[19.00713912000012,49.388097637000065],[19.04579309100012,49.40277374300006],[19.06760054500006,49.40613271100008],[19.076798951000058,49.40406565400011],[19.09664270000013,49.394608867000045],[19.106254517000053,49.39140492800007],[19.116589803000068,49.390939840000044],[19.14170454900008,49.394195456000034],[19.172503703000075,49.40225697800011],[19.17973840300004,49.41026682500009],[19.18232222500012,49.42272084600009],[19.189350220000048,49.442202861000084],[19.19224410000004,49.442616272000095],[19.204543091000062,49.44282297800004],[19.208987264000086,49.44499338800003],[19.211364380000106,49.45165964800014],[19.209400676000087,49.45641388000004],[19.206196737000113,49.45941111300004],[19.204439738000133,49.46054799500007],[19.220459432000098,49.49300079400007],[19.2341020100001,49.50721181300014],[19.24867476400007,49.516255189000105],[19.26500451700008,49.521474508],[19.284228150000104,49.524161683000045],[19.31502730300008,49.5239549770001],[19.325362590000083,49.52504018200008],[19.339521931000036,49.52876088500008],[19.347066691000094,49.53299835300004],[19.433779745000063,49.595165101000134],[19.437603801000076,49.6001260380001],[19.443391561000055,49.60177968400003],[19.448889797000078,49.60031348800004],[19.457344197000054,49.59805898100012],[19.474190714000116,49.578731995000076],[19.48173547300007,49.573512675000046],[19.505196574000138,49.56338409500009],[19.517288859000132,49.54328196300014],[19.535478963000088,49.49284576500014],[19.551602010000067,49.46101308200007],[19.556769654000078,49.45388173500007],[19.573926229000023,49.44525177000011],[19.59480350700011,49.44158274300011],[19.63480106600008,49.441324362000046],[19.630150187000112,49.43501983600004],[19.628599894000075,49.429593811000046],[19.629220012000047,49.413935852000094],[19.627097479000042,49.40216544800009],[19.627043767000117,49.401867588000044],[19.684513794000082,49.38907948900004],[19.706321249000098,49.38752919600011]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Slovenia","sov_a3":"SVN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Slovenia","adm0_a3":"SVN","geou_dif":0,"geounit":"Slovenia","gu_a3":"SVN","su_dif":0,"subunit":"Slovenia","su_a3":"SVN","brk_diff":0,"name":"Slovenia","name_long":"Slovenia","brk_a3":"SVN","brk_name":"Slovenia","brk_group":null,"abbrev":"Slo.","postal":"SLO","formal_en":"Republic of Slovenia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovenia","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":2,"mapcolor13":12,"pop_est":2005692,"gdp_md_est":59340,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"SI","iso_a2":"SI","iso_a3":"SVN","iso_n3":"705","un_a3":"705","wb_a2":"SI","wb_a3":"SVN","woe_id":23424945,"woe_id_eh":23424945,"woe_note":"Exact WOE match as country","adm0_a3_is":"SVN","adm0_a3_us":"SVN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SVN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[16.34342574100009,46.71417816200005],[16.357275024000046,46.715831808000104],[16.357585082000128,46.69901112900004],[16.365383073000057,46.696712468000094],[16.3662163730001,46.69646683100012],[16.37143436700009,46.694928691000115],[16.39003788200006,46.69415354500012],[16.40502404800011,46.68725474100003],[16.410501749000105,46.66836700500011],[16.40260705700007,46.663108786000066],[16.39665246600015,46.6591427620001],[16.377635539000067,46.65286407500008],[16.36843713300007,46.64299387600002],[16.372245692000064,46.63634126300008],[16.37639530400014,46.62909291600005],[16.394585408000065,46.61901601200008],[16.430242147000058,46.60439158200011],[16.46713911900008,46.56470408200005],[16.500832153000147,46.544808655000054],[16.515301554000075,46.50171051000012],[16.491116984000115,46.515146383000086],[16.481298462000037,46.519022115000034],[16.470756469000065,46.52026235000008],[16.449052368000082,46.51835032200006],[16.44037072700013,46.519022115000034],[16.431999145000134,46.52320790600006],[16.415152628000072,46.53555857400002],[16.406264282000052,46.53948598200009],[16.394895467000055,46.54010610000005],[16.382183065000106,46.53938263000006],[16.36947066200014,46.54057118800009],[16.357895142000103,46.54697906500012],[16.351693970000042,46.53948598200009],[16.351254482000083,46.53992246000004],[16.34414921000007,46.54697906500012],[16.340276431000092,46.543827132000104],[16.32998986800004,46.53545522100009],[16.310662883000077,46.53098520900008],[16.29536665900011,46.5244481410001],[16.263947388000076,46.5159215300001],[16.260931084000106,46.513576112000095],[16.23490523300009,46.49333892800004],[16.234187647000056,46.48489233600009],[16.23366499900007,46.47874033600007],[16.237489054000093,46.46507192000007],[16.24937463400002,46.437528382000096],[16.250098103000113,46.4294410200001],[16.248237752000108,46.41334381100012],[16.250924927000142,46.40499806800005],[16.257022746000104,46.39990793900005],[16.27407596800012,46.39210479800005],[16.278726847000087,46.387350566000066],[16.279936481000078,46.37866136200009],[16.280277140000123,46.376214294000135],[16.275626262000056,46.37316538500011],[16.252785279000136,46.37342376700008],[16.217128540000147,46.3673517870001],[16.208653605000052,46.36709340400006],[16.191807088000076,46.369780579000086],[16.17754439300012,46.37559417800006],[16.15356652800008,46.39143300400008],[16.143851359000053,46.39471445800007],[16.131552368000115,46.39306081100011],[16.12318078600012,46.38688547800012],[16.115532674000065,46.37928904200007],[16.10602421100009,46.37373382600006],[16.094345337000107,46.37226104700005],[16.088654305000144,46.37308560000008],[16.05796512800012,46.37753204400008],[16.057448365000084,46.35965199800003],[16.0597221270001,46.34531178800003],[16.059618774000057,46.332315166000086],[16.0523840730001,46.31859507300007],[16.04992239800009,46.31673461500006],[16.038948201000068,46.308440654],[16.019207804000075,46.29882883700009],[15.998433879000059,46.29154246000013],[15.993668240000089,46.29061331100007],[15.982000773000065,46.28833852200006],[15.94872115000004,46.284204407000026],[15.918903311000093,46.27282717100004],[15.883712199000087,46.25939972000009],[15.88089465900009,46.25934089900011],[15.879323324000012,46.259308094000055],[15.834206176000121,46.25836619100011],[15.818289835000087,46.25552398700003],[15.803096965000066,46.25051137300007],[15.799526193000133,46.248606961000064],[15.789144328000075,46.243069967000054],[15.768887166000068,46.2193504840001],[15.749766886000089,46.21077219700007],[15.67797529200007,46.21446241900014],[15.66129683400004,46.21531972300011],[15.639799438000095,46.207671610000034],[15.626571312000094,46.19520974800011],[15.622849568000106,46.1917035940001],[15.604349406000068,46.16700225800008],[15.589983358000069,46.13868357400008],[15.589880005000055,46.113517151000046],[15.603832641000023,46.090986227000116],[15.623604838000063,46.076415298000136],[15.631531209000057,46.070574036000096],[15.643726847000067,46.06550974600011],[15.671735474000087,46.05739654600009],[15.683931112000094,46.0511436970001],[15.692879847000114,46.041635666000076],[15.697987101000107,46.03620920800005],[15.693646281000042,46.025770570000105],[15.68196740700006,46.01352325500008],[15.674319295000087,45.99331777000009],[15.67421594300015,45.99316274000006],[15.675380807000067,45.9724863940001],[15.677109822000117,45.941796366000084],[15.675559530000015,45.925156556000076],[15.670391887000108,45.912650859000074],[15.663363892000092,45.90081695600006],[15.659436483000038,45.888828024000105],[15.663673950000087,45.87606394500002],[15.675456177000084,45.85596181300007],[15.676076294000067,45.841699117000104],[15.666051066000135,45.831673890000076],[15.64558719900006,45.824129130000124],[15.626053508000068,45.820201721000046],[15.58729618300012,45.8192198700001],[15.549748079000068,45.82369278000007],[15.523527466000104,45.82681630500005],[15.513915649000097,45.82340566100003],[15.49531213300014,45.81265696300011],[15.485390259000042,45.81017649400013],[15.473918091000115,45.81157175700011],[15.462549275000129,45.814207255000035],[15.451283813000089,45.81513743100007],[15.44032841000009,45.81146840400009],[15.43557417800011,45.80211497000005],[15.439501587000079,45.791676330000115],[15.4410518790001,45.782167868000016],[15.429754502000065,45.77569135400009],[15.429062947000148,45.77529490200007],[15.33103128300007,45.75248555400009],[15.303799276000092,45.74614939400004],[15.26349165800005,45.730388083000065],[15.255016723000068,45.72346344000007],[15.249912989000107,45.713731743000096],[15.248918904000105,45.71183624300011],[15.250882609000115,45.70765045200008],[15.258220663000117,45.70511830700008],[15.267832479000049,45.698452047000075],[15.277754354000137,45.685016175000044],[15.283025350000058,45.68010691300009],[15.291913696000078,45.67555938800007],[15.304936158000116,45.67214874300004],[15.309070272000042,45.67416412400007],[15.310413859000109,45.67819488500007],[15.31496138500003,45.6808820600001],[15.32705367000011,45.68315582300002],[15.330774373000054,45.6845510870001],[15.33387496000009,45.682639059000074],[15.350034463000071,45.669619116000064],[15.351961711000088,45.66806630500011],[15.368291463000048,45.64904937800014],[15.373769165000112,45.640212708000064],[15.353098592000094,45.64031606000008],[15.339145955000108,45.636905417000065],[15.326743612000143,45.63225453800009],[15.297391398000059,45.62569163100011],[15.291603637000094,45.61825022400009],[15.287882934000093,45.61034373000003],[15.281061646000124,45.6061579390001],[15.268555948000113,45.60166208900009],[15.269589477000094,45.593445537000036],[15.27672082500004,45.58269683900002],[15.282178582000085,45.5714940740001],[15.282611938000057,45.57060455300003],[15.288606405000081,45.54455963200007],[15.29666792800006,45.522958883000086],[15.31103397700008,45.505905660000046],[15.361366821000045,45.48203114900007],[15.351755004000038,45.476140036000054],[15.33387496000009,45.45851837200007],[15.325193318000117,45.452833964000035],[15.314031209000094,45.45050852500011],[15.281578410000066,45.45097361200004],[15.22584915200008,45.43644969300004],[15.184220011000034,45.42560048500013],[15.139261515000099,45.43004465800004],[15.066128234000105,45.47393372300013],[15.056165812000131,45.479912415000086],[15.007383260000069,45.480842591000055],[14.997461385000063,45.48719879200007],[14.986299275000135,45.490867818000076],[14.977340822000086,45.49172845500004],[14.962631470000105,45.49314158100009],[14.945371541000013,45.50451039700007],[14.922633911000048,45.514949036000104],[14.90444380700009,45.51443227200008],[14.900826456000118,45.49314158100009],[14.881602823000092,45.469783834000054],[14.838814738000082,45.4589834600001],[14.797163533000058,45.4651846320001],[14.78145389800008,45.49314158100009],[14.781350545000064,45.493193258000105],[14.781247192000109,45.49334828800005],[14.781143839000093,45.49334828800005],[14.688332967000092,45.52202870700003],[14.668489217000088,45.53396596300007],[14.6681791580001,45.53913360700008],[14.671693156000062,45.55680694600008],[14.669832804000064,45.56455841100009],[14.664045044000089,45.57003611300007],[14.663674874000092,45.570187028000134],[14.657327107000071,45.57277496400013],[14.65029911300013,45.57484202100008],[14.61598596200011,45.594065654000104],[14.603066853000117,45.60357411700011],[14.593868449000098,45.616183167000116],[14.59293827300007,45.62967071600008],[14.594075155000068,45.648015849000075],[14.59190474400009,45.663363750000144],[14.580949341000093,45.667807922000065],[14.569094979000084,45.66425161300006],[14.56389611800006,45.66269195500007],[14.556144654000063,45.65669749000002],[14.54363895600008,45.63644032900004],[14.533096964000093,45.62569163100011],[14.507878866000055,45.60584788000011],[14.498577108000122,45.5961843880001],[14.4922725830001,45.583420309000104],[14.4915018290001,45.5791647640001],[14.487414999000094,45.55660024000014],[14.48214400200007,45.54244089800008],[14.468914835000078,45.525594381000104],[14.429744100000107,45.50538889600011],[14.41124393700008,45.493193258000105],[14.372796671000058,45.47784535800014],[14.326804646000141,45.47489980100005],[14.280399211000143,45.48110097300011],[14.240608358000115,45.49334828800005],[14.218697551000075,45.49717234400009],[14.193066040000105,45.49190134700006],[14.14552372200009,45.476243388000086],[14.119685506000081,45.4728844200001],[14.117320712000065,45.472975725000076],[14.116747016000119,45.47299787500006],[14.092917114000102,45.473917948000064],[14.066665487000078,45.4802741500001],[14.041550741000037,45.49314158100009],[14.041550741000037,45.493193258000105],[14.028321574000046,45.50265004500008],[14.01395552600013,45.50797271700011],[13.987476490000118,45.51190879000009],[13.971890910000125,45.51422556600002],[13.964966268000124,45.51096995100005],[13.961452270000079,45.5038902790001],[13.961452270000079,45.49314158100009],[13.982639608000056,45.47531321200006],[13.969823852000047,45.46296254500009],[13.923005004000032,45.44895823200008],[13.908432251000079,45.43888132700004],[13.899647257000083,45.42921783500011],[13.889001912000083,45.42363678000001],[13.835568481000081,45.4291144820001],[13.819858846000102,45.43262848000006],[13.806526327000086,45.44213694300004],[13.759294068000145,45.46316925100004],[13.659969793000073,45.45997795100007],[13.629017781000073,45.4589834600001],[13.589528842000078,45.48883698100008],[13.591644727000073,45.493109442000105],[13.589121941000059,45.501613674000026],[13.595957879000082,45.51190827000005],[13.595957879000082,45.518133856000105],[13.586192254000139,45.5194766300001],[13.578623894000089,45.52338288000009],[13.572764519000145,45.52997467700007],[13.568614129000109,45.53925202000002],[13.589610222000147,45.53579336100003],[13.67514082100007,45.54474518400004],[13.752940300000148,45.55288320500006],[13.752940300000148,45.55906810100004],[13.74236087300011,45.56976959800005],[13.727386915000068,45.581203518000024],[13.711761915000094,45.59320709800005],[13.76105106600005,45.59623606400001],[13.800531860000149,45.58124989900003],[13.847764119000088,45.58466054300006],[13.86792570600008,45.60216928900013],[13.887038208000147,45.61876698800012],[13.894686320000034,45.63184112500008],[13.893640530000111,45.633758406000084],[13.89313602700011,45.63468332900003],[13.884144327000085,45.63514841700007],[13.869158163000094,45.641142884],[13.85840946500008,45.64935943600005],[13.778724406000036,45.743410543000095],[13.70947798600011,45.76532135100004],[13.699908416000142,45.77052373600009],[13.660333699000148,45.79203806600009],[13.643590535000016,45.79565541600007],[13.609174032000055,45.79860097300008],[13.581268758000078,45.80924631800008],[13.574172202000085,45.819028057000104],[13.565972534000108,45.83033030300001],[13.569279826000125,45.8645401010001],[13.599306242000095,45.91232749900004],[13.608243856000113,45.92655181900005],[13.615325176000084,45.94591244800003],[13.622816610000086,45.96639434900007],[13.605866740000067,45.985411276000036],[13.60073487200009,45.984574053000046],[13.57165694200006,45.97983022100004],[13.539410848000102,45.96902984700009],[13.509438517000149,45.96742787700006],[13.482256713000083,45.98923533200008],[13.481843302000073,45.990372213000086],[13.481223186000108,45.991354065000046],[13.480396362000079,45.99228424100011],[13.47946618600011,45.99311106400003],[13.474815307000142,45.99574656200005],[13.461792846000037,46.006391907000136],[13.47708907000009,46.01605540000008],[13.482256713000083,46.018432515000114],[13.490008179000085,46.02556386300005],[13.492798706000144,46.03248850500003],[13.490318237000082,46.03894805900009],[13.482256713000083,46.0448391730001],[13.50509769700008,46.06602651000014],[13.522585297000091,46.07529802300007],[13.616408732000137,46.12504099500009],[13.645037475,46.161731263000064],[13.641071451000128,46.17140514500005],[13.637389363000125,46.1803864550001],[13.627366324,46.181733163000075],[13.613928264000064,46.18353871700009],[13.584472697000137,46.18131663100007],[13.559047892000137,46.18410715800013],[13.528972208000084,46.20482940700006],[13.510161988000078,46.21397613600004],[13.482256713000083,46.2179035450001],[13.468304077000084,46.223432923000104],[13.43833174600013,46.2248798630001],[13.422828816000049,46.228600566000125],[13.437401570000105,46.2109272260001],[13.41011641500009,46.20798167000004],[13.401641480000078,46.21666331000009],[13.39812748200012,46.23051259400003],[13.384898316000118,46.24312164400007],[13.384794963000102,46.243224996000095],[13.384691610000061,46.24332834900011],[13.37859379000011,46.26839141900012],[13.373012736000106,46.28027699800006],[13.365261271000094,46.29030222600008],[13.391306193000077,46.30156768800006],[13.395637648000076,46.30672792800007],[13.409806355000086,46.32360768700005],[13.423242229000039,46.34484670000009],[13.434094279000107,46.35386423800005],[13.44732344500008,46.35484609000011],[13.45972579000005,46.35903188100005],[13.483703654000065,46.37115000400004],[13.530005737000065,46.38833241800012],[13.554397013000084,46.40595408100012],[13.575687703000057,46.42667633100004],[13.600182332000117,46.44264434900008],[13.634082072000126,46.44571909700011],[13.658783407000044,46.44512481700005],[13.67749027500011,46.45207529700013],[13.685852877000059,46.46404723100011],[13.688445678000107,46.4677590950001],[13.68989261900009,46.49333892800004],[13.695473673,46.49863576200008],[13.699194376000037,46.504836935000064],[13.701054728000114,46.511890768000086],[13.7009513750001,46.51974558600002],[13.716092570000114,46.518867087000075],[13.782135051000067,46.507782492000075],[13.79577762900007,46.507885845],[13.860683228000113,46.5152497360001],[13.890862264000106,46.511787415000065],[13.982329549000069,46.48191843700005],[13.998762654000103,46.48052317400007],[14.014921609000053,46.482530652000094],[14.032455688000082,46.48470896500001],[14.050025676000132,46.484398905000035],[14.066355428000094,46.481039938],[14.081031535000077,46.47594980900004],[14.137255493000055,46.44243764300012],[14.147933084000044,46.440424654000076],[14.149864543000064,46.44006052700007],[14.242323222000095,46.438237462000046],[14.362151327000051,46.43587473600012],[14.395844361000114,46.440990702000136],[14.406489705000098,46.439337057000074],[14.41124393700008,46.4346345020001],[14.414447876000054,46.42900177000007],[14.420028931000076,46.42435089200009],[14.43714475200005,46.418884133000034],[14.450931437000063,46.414480693000115],[14.467674601000112,46.41267201800014],[14.502194458000107,46.41835642600009],[14.515837036000105,46.40535980300004],[14.527102498000064,46.388229065000104],[14.54033166500008,46.378643087000086],[14.557694946000083,46.383939921000035],[14.562108198000116,46.39173666600004],[14.566996704000102,46.400373027000086],[14.5753682860001,46.41972585100007],[14.5901477460001,46.43442779500006],[14.59986291500013,46.437166646000094],[14.621567017000132,46.43851023400006],[14.631695597000087,46.440577291000125],[14.642030884000093,46.44522817000009],[14.662081339000054,46.459697571000106],[14.66662886500009,46.46052439400003],[14.672545840000081,46.459790506000076],[14.679961385000098,46.458870748000095],[14.687092733000041,46.47122141600005],[14.69877160700011,46.48096242300007],[14.703732544000076,46.48775787400004],[14.70972701000008,46.49251210600002],[14.726366821000113,46.49770558700004],[14.735255167000048,46.49333892800004],[14.760886678000107,46.49628448500005],[14.783004191000089,46.503260804000064],[14.78858524500012,46.50664561000008],[14.796662504000066,46.51940094700012],[14.807188762000065,46.53602366200005],[14.814519309000076,46.551337476000036],[14.822278279000074,46.56754628500002],[14.83364709500006,46.58439280200008],[14.850390259000106,46.60113596700003],[14.862999308000042,46.60483083100004],[14.877055298000073,46.60364227400004],[14.894062722000115,46.605215461000085],[14.897725871000063,46.605554302000144],[14.91950676900012,46.615016752000145],[14.933589315000118,46.62113474600008],[14.94795536200013,46.61927439400006],[14.96717899500004,46.60025746700009],[15.004386027000066,46.63684438100006],[15.061953572000105,46.64955678300009],[15.085722504000048,46.64779516700008],[15.105591442000074,46.64632259600011],[15.172556751000085,46.641359513000054],[15.204890585000042,46.63896311500011],[15.332783734000117,46.6435796750001],[15.388135214000016,46.64557769800012],[15.417590780000124,46.63795542400004],[15.435380874000089,46.627195287000056],[15.440018352000036,46.62439036100005],[15.46265262800006,46.61464935300012],[15.492624959000096,46.61829254200009],[15.51122847500008,46.628369446000136],[15.513939450000121,46.63254522100004],[15.517636353000112,46.63823964500003],[15.520308138000106,46.64772017100008],[15.520840292000086,46.64960846000011],[15.530658814000047,46.66384531700007],[15.54595503700011,46.67188100200007],[15.567349080000014,46.67575673500002],[15.58863977100009,46.67596344000006],[15.603729288000096,46.673017884000075],[15.616648397000118,46.67555002800006],[15.62174527100012,46.67817491800008],[15.626983684000038,46.68087270100011],[15.632978150000042,46.68963185700008],[15.632874796000124,46.70247345000007],[15.635975382000053,46.71756296800007],[15.652098429000148,46.710819193000134],[15.728682902000058,46.702990215000106],[15.755141235000053,46.70402374300011],[15.784609910000057,46.71219950300013],[15.822940714000053,46.7228339640001],[15.850742635000103,46.72448761100006],[15.878544555000074,46.72071523100004],[15.946344034000077,46.69715077700004],[15.986961710000116,46.69218984000008],[15.997917114000101,46.68691884400004],[16.016593059000115,46.67075696900005],[16.016727336000116,46.67064076800003],[16.01672257900006,46.670691342000055],[16.014556925000107,46.69371429500009],[16.003291463000068,46.7091913860001],[15.982000773000065,46.718544820000034],[15.970528606000071,46.743013611000094],[15.96970178200013,46.760531922000034],[15.97098466500006,46.77504987900011],[15.971252075000052,46.77807607000011],[15.978176717000052,46.809133607000064],[15.977349894000012,46.81621327700009],[15.972905721000103,46.818435364000095],[15.971975545000047,46.820631612000085],[15.981690715000099,46.827685446],[15.987581828000087,46.830010885000036],[16.028440945000114,46.83694743300003],[16.03202356000008,46.837555644000076],[16.05293554600007,46.84605985200011],[16.09403527800012,46.86277374300005],[16.130245696000088,46.856708498000096],[16.135376424000043,46.85584910100005],[16.179486395000108,46.85846833900004],[16.272008911000086,46.86396230100004],[16.282240845000047,46.85993153900006],[16.297392209000122,46.84703294300007],[16.30187788900008,46.843214213000124],[16.310662883000077,46.840010275000054],[16.325338989000073,46.8394418340001],[16.32978316200007,46.83440338200012],[16.327509400000054,46.82546335900008],[16.321824992000103,46.81326772100007],[16.31490035000013,46.80200225900012],[16.311097363000044,46.79751906200008],[16.302187948000068,46.78701609300006],[16.29948988400014,46.77950994200009],[16.29815718600008,46.775802308000095],[16.300430949000088,46.772081605000096],[16.31417687900003,46.74332367000008],[16.32554569500013,46.73327260400003],[16.33412398300007,46.721748759],[16.34342574100009,46.71417816200005]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sweden","sov_a3":"SWE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sweden","adm0_a3":"SWE","geou_dif":0,"geounit":"Sweden","gu_a3":"SWE","su_dif":0,"subunit":"Sweden","su_a3":"SWE","brk_diff":0,"name":"Sweden","name_long":"Sweden","brk_a3":"SWE","brk_name":"Sweden","brk_group":null,"abbrev":"Swe.","postal":"S","formal_en":"Kingdom of Sweden","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sweden","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":2,"mapcolor13":4,"pop_est":9059651,"gdp_md_est":344300,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"SW","iso_a2":"SE","iso_a3":"SWE","iso_n3":"752","un_a3":"752","wb_a2":"SE","wb_a3":"SWE","woe_id":23424954,"woe_id_eh":23424954,"woe_note":"Exact WOE match as country","adm0_a3_is":"SWE","adm0_a3_us":"SWE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SWE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.675303582000083,56.12010325700011],[15.683360222000118,56.11749909100002],[15.69353274800005,56.11758047100001],[15.705332879000109,56.116400458000086],[15.717784050000146,56.116603908000044],[15.726898634000122,56.118353583000115],[15.725840691000085,56.11298248900006],[15.71436608200014,56.10700104400014],[15.700856967000078,56.10565827000006],[15.698496941000117,56.10053131700014],[15.70329837300011,56.089422919000114],[15.703623894000119,56.080715236000124],[15.702159050000148,56.07672760600015],[15.696787957000112,56.07428620000012],[15.687673373000111,56.074611721000124],[15.683278842000048,56.07538483300006],[15.651133660000083,56.08999258000007],[15.642344597000092,56.104641018000095],[15.654958530000073,56.11945221600017],[15.669118686000102,56.12392812700013],[15.675303582000083,56.12010325700011]]],[[[17.073496941000087,57.34320709800007],[17.081879102000073,57.341376044000086],[17.091075066000116,57.34446849200007],[17.09717858200011,57.35276927300005],[17.104014519000145,57.35276927300005],[17.104258660000085,57.34829336100007],[17.10613040500004,57.345607815],[17.108571811000076,57.34320709800007],[17.11085045700014,57.33978913000006],[17.115733269000117,57.33535390800007],[17.119802280000073,57.330511786],[17.12281334700009,57.32518138200014],[17.124522332000083,57.31928131700001],[17.09701582100007,57.31736888200014],[17.075531446000127,57.30512116100009],[17.04200280000009,57.270900783000094],[17.064463738000086,57.241888739],[17.066254102000073,57.226711330000015],[17.05046634200005,57.20115794500013],[17.050791863000143,57.19232819200009],[17.049489780000073,57.188299872000115],[17.04566491000014,57.186672268000095],[17.031993035000113,57.18317291900008],[17.028168165000093,57.18146393400009],[17.02328535200013,57.17218659100005],[17.019216342000078,57.15717194200003],[17.015310092000078,57.14793528900004],[16.97348066500004,57.104193427000084],[16.967458530000044,57.08958567900005],[16.960622592000107,57.06321849200004],[16.943207227000045,57.05182526200009],[16.92090905000012,57.046372789000046],[16.89861087300008,57.03807200700008],[16.904795769000145,57.02944570500007],[16.912852410000085,57.02350495000014],[16.922862175000148,57.01972077000012],[16.933929884000094,57.0175641950001],[16.914073113000082,57.00739166900017],[16.89918053500014,56.99640534100003],[16.87126712300011,56.96918366100011],[16.878428582000137,56.956366278000175],[16.88453209700012,56.93561432500009],[16.883067254000082,56.916245835000076],[16.8678491550001,56.907700914000046],[16.85816491000014,56.89679596600017],[16.841807488000114,56.84406159100017],[16.83033287900008,56.8258324240001],[16.82781009200005,56.825669664000124],[16.781586134000065,56.81061432500012],[16.775075717000078,56.80536530200011],[16.768728061000047,56.79677969000004],[16.764414910000113,56.787420966000084],[16.762054884000065,56.77765534100014],[16.76140384200002,56.767523505],[16.756521030000073,56.74746328300012],[16.698496941000087,56.64520905199999],[16.68970787900011,56.62543366100006],[16.686289910000113,56.602362372000115],[16.682790561000104,56.59349192900005],[16.67432701900009,56.58344147300009],[16.66423587300011,56.575344143000066],[16.65593509200005,56.571966864000146],[16.643239780000073,56.568426825000145],[16.63697350400011,56.559719143000066],[16.63168379000004,56.53782786700005],[16.63152103000007,56.53221263200014],[16.637950066000087,56.52920156500012],[16.63843834700009,56.5241559920001],[16.63575280000009,56.519191799000154],[16.62712649800011,56.50853099200013],[16.62484785200013,56.50364817900005],[16.62281334700009,56.48651764500012],[16.619639519000117,56.475327867000104],[16.61402428500014,56.46580638200011],[16.59929446700005,56.44741445500007],[16.58611087300008,56.42666250200007],[16.575856967000078,56.4057477890001],[16.569590691000116,56.387030341000134],[16.568532748000052,56.3790550800001],[16.569590691000116,56.356268622000144],[16.566416863000143,56.346136786],[16.55225670700011,56.332098700000145],[16.549082879000053,56.32217031500015],[16.54118899800008,56.306138414000074],[16.490896030000044,56.23956940300015],[16.472666863000143,56.22724030200011],[16.450205925000148,56.21865469],[16.428477410000085,56.21796295800006],[16.412608269000145,56.22931549700006],[16.410492384000122,56.23826732000008],[16.4127710300001,56.261175848000065],[16.412608269000145,56.270941473],[16.398936394000117,56.2982445330001],[16.40723717500009,56.319973049000154],[16.40837649800011,56.344631252000156],[16.405772332000108,56.387030341000134],[16.414073113000114,56.402777411],[16.407969597000115,56.42059967700008],[16.397227410000113,56.43960195500007],[16.391449415000125,56.45868561400006],[16.398936394000117,56.544663804000045],[16.40211022200009,56.55438873900003],[16.419444207000055,56.58563873900009],[16.442556186000104,56.608710028000026],[16.446055535000113,56.616644598],[16.45281009200005,56.63751862200017],[16.620860222000147,56.872259833000136],[16.6378686860001,56.8824730490001],[16.659027540000125,56.886542059000035],[16.68970787900011,56.887274481000176],[16.716807488000143,56.891831773000106],[16.731293165000096,56.903998114],[16.74830162900014,56.941880601000136],[16.793630405000073,57.00385163],[16.845550977000045,57.05906810100011],[16.88835696700005,57.118231512000115],[16.906016472000147,57.19204336100013],[16.909922722000147,57.20221588700018],[16.9192814460001,57.20722077000011],[16.94044030000009,57.21283600500011],[16.95386803500008,57.222113348000086],[16.95923912900014,57.23069896],[16.962087436000076,57.287339585],[16.966481967000075,57.304592190000015],[16.988536004000053,57.317572333],[17.019216342000078,57.34454987200014],[17.035817905000016,57.35276927300005],[17.05486087300011,57.358221747000094],[17.065277540000096,57.357733466000084],[17.073496941000087,57.34320709800007]]],[[[18.784353061000076,57.839585679],[18.80347741000014,57.82575104400008],[18.81072024800008,57.8512230490001],[18.827403191000116,57.863714911],[18.844086134000037,57.87360260600012],[18.851898634000122,57.891262111000046],[18.84717858200011,57.897365627],[18.83920332100007,57.90534088700014],[18.837412957000083,57.91217682500008],[18.851328972000147,57.915106512000094],[18.913340691000116,57.92133209800006],[18.913340691000116,57.915106512000094],[18.897959832000083,57.89765045800014],[18.917246941000116,57.88812897300015],[18.94157962300008,57.8888207050001],[18.941254102000073,57.9020856790001],[18.95655358200011,57.907782294000114],[18.97641035200013,57.91152578300013],[18.995778842000046,57.912054755000106],[19.009532097000147,57.90827057500009],[19.00212649800008,57.9020856790001],[19.006846550000088,57.89264557500012],[19.014008009000122,57.88129303600011],[19.024668816000144,57.871893622000115],[19.040212436000047,57.86790599200013],[19.05030358200011,57.86220937700015],[19.078786655000044,57.83478424700008],[19.085215691000144,57.82575104400008],[19.0149845710001,57.82200755400006],[18.986582879000082,57.80744049700004],[18.9816186860001,57.77049388200008],[18.97022545700014,57.77960846600017],[18.957774285000138,57.784613348],[18.94874108200011,57.782660223000065],[18.947520379000107,57.77049388200008],[18.93824303500014,57.762640692],[18.932139519000145,57.752264716000084],[18.932139519000145,57.74079010600014],[18.941254102000073,57.72955963700006],[18.901215040000125,57.723944403000154],[18.865244988000143,57.72333405199999],[18.852793816000116,57.7254906270001],[18.83187910200007,57.73484935100011],[18.820811394000117,57.73700592700011],[18.80713951900009,57.73444245000012],[18.805918816000087,57.727850653000054],[18.809418165000068,57.71906159100017],[18.810313347000147,57.709662177000055],[18.796641472000115,57.675523179000045],[18.779144727000073,57.65106842700011],[18.77393639400009,57.64081452000009],[18.769297722000147,57.63483307500017],[18.76465905000012,57.62689850500003],[18.76246178500014,57.61717357000005],[18.768890821000127,57.61448802299999],[18.810313347000147,57.60732656500012],[18.80103600400011,57.59178294500013],[18.79468834700009,57.57807038000002],[18.790863477000073,57.56415436400011],[18.789805535000113,57.548285223],[18.781993035000113,57.53497955900017],[18.767832879000082,57.52073802300008],[18.761403842000078,57.5076358090001],[18.776133660000085,57.49746328300016],[18.768809441000144,57.48183828300007],[18.773203972000143,57.472235419000086],[18.785899285000113,57.46820709800012],[18.80347741000014,57.469427802000055],[18.79835045700011,57.46434153900013],[18.789805535000113,57.44896067899999],[18.828786655000073,57.44000885600014],[18.86890709700009,57.435288804000045],[18.87281334700009,57.43866608300005],[18.874685092000078,57.44513580900015],[18.879730665000096,57.44920482000013],[18.892832879000053,57.445624091000134],[18.90886478000004,57.43915436400006],[18.91382897200009,57.43593984600001],[18.92017662900014,57.428534247000115],[18.926117384000065,57.418198960000026],[18.930023634000065,57.40452708500008],[18.926280144000117,57.39264557500012],[18.909922722000115,57.387600002000106],[18.87916100400011,57.387600002000106],[18.875336134000122,57.388576565000065],[18.864024285000113,57.393377997000144],[18.858164910000085,57.39435455900013],[18.85328209700012,57.392238674],[18.841156446000124,57.382879950000174],[18.834483269000145,57.380764065000065],[18.80152428500008,57.376206773000106],[18.770192905000044,57.364488023000135],[18.74154707100007,57.34788646000008],[18.717946811000047,57.32892487200015],[18.680430535000113,57.31049225500011],[18.66675866000008,57.29677969],[18.67367597700007,57.27765534100003],[18.68140709700009,57.27537669500005],[18.7024845710001,57.27765534100003],[18.710948113000143,57.27431875200001],[18.714121941000116,57.242905992000075],[18.678884311000076,57.23334381700008],[18.680511915000096,57.229925848000065],[18.591481967000107,57.218695380000085],[18.564463738000143,57.209418036000116],[18.564463738000143,57.20197174700014],[18.578135613000086,57.20197174700014],[18.578135613000086,57.19574616100009],[18.55543053500014,57.192450262000065],[18.43116295700011,57.15428294499999],[18.406423373000024,57.143011786],[18.38575280000012,57.12742747599999],[18.454600457000083,57.12742747599999],[18.43116295700011,57.11692942900011],[18.35987389400009,57.096136786000145],[18.34473717500009,57.082749742000125],[18.337901238000086,57.03123607000005],[18.34864342500009,57.018500067],[18.36426842500009,57.011419989000146],[18.400075717000107,57.003973700000145],[18.34473717500009,57.003973700000145],[18.34473717500009,56.997137762000065],[18.358409050000148,56.98969147300006],[18.332367384000065,56.977118231000176],[18.321462436000104,56.969061591000134],[18.31153405000009,56.948065497000115],[18.298513217000107,56.94159577],[18.203949415000096,56.915187893],[18.16968834700012,56.91201406500015],[18.138682488000086,56.92202383000012],[18.203868035000113,56.98627350500006],[18.206390821000127,56.99469635600012],[18.20484459700009,57.004584052000105],[18.200856967000107,57.0175641950001],[18.21387780000009,57.026312567],[18.250824415000125,57.03388092700014],[18.26563561300011,57.04148997599999],[18.27369225400014,57.05410390800016],[18.28199303500011,57.08104075700014],[18.29021243600002,57.09271881700012],[18.26636803500014,57.084377346000146],[18.24463951900006,57.07013580900015],[18.2233179050001,57.06028880400013],[18.200856967000107,57.06537506700006],[18.200856967000107,57.072821356000034],[18.214121941000116,57.0815290390001],[18.22510826900009,57.094916083000115],[18.227305535000085,57.10748932500012],[18.214366082000083,57.11383698100003],[18.21851647200012,57.11904531500012],[18.223806186000104,57.12860748900011],[18.22803795700011,57.13369375200013],[18.18531334700009,57.14484284100017],[18.159841342000103,57.22980377800009],[18.099375847000086,57.25897858300005],[18.101084832000083,57.27802155200014],[18.115570509000122,57.29702383000013],[18.15308678500014,57.31342194200015],[18.1658634770001,57.33161041900014],[18.171153191000087,57.352118231000084],[18.166026238000143,57.36709219000012],[18.17920983200011,57.37954336100014],[18.17660566500012,57.38556549700014],[18.167246941000087,57.38922760600012],[18.159190300000148,57.39435455900013],[18.155935092000107,57.39862702000012],[18.14616946700005,57.40802643400014],[18.144297722000086,57.41339752800012],[18.14535566500004,57.42617422100015],[18.142344597000143,57.43195221600003],[18.131602410000113,57.445298570000126],[18.1209416020001,57.465073960000055],[18.113454623000024,57.48798248900006],[18.111989780000073,57.51105377800011],[18.128184441000116,57.54816315300003],[18.161468946000127,57.57794830900003],[18.325043165000068,57.672593492000125],[18.463063998000106,57.80316803600011],[18.499359571000127,57.826564846],[18.550140821000067,57.83942291900002],[18.56413821700005,57.837795315],[18.5794376960001,57.833441473],[18.594899936000104,57.83136627800009],[18.608653191000112,57.83633047100012],[18.615000847000143,57.84357330900014],[18.620371941000116,57.858099677],[18.62598717500012,57.86790599200013],[18.64079837300008,57.886175848000015],[18.65796959700012,57.90184153899999],[18.677744988000143,57.91388580900009],[18.700450066000084,57.92133209800006],[18.723806186000076,57.92300039300009],[18.742442254000082,57.91791413000005],[18.75717207100007,57.9061546900001],[18.769297722000147,57.88784414300004],[18.769867384000122,57.88275788],[18.767425977000073,57.87889232],[18.764170769000145,57.87523021000013],[18.76246178500014,57.87103913000003],[18.76465905000012,57.86517975500005],[18.769297722000147,57.86225006700014],[18.77393639400009,57.86025625200001],[18.776133660000085,57.85712311400011],[18.778330925000144,57.84739817900008],[18.784353061000076,57.839585679]]],[[[19.22242272200009,57.990220445000126],[19.22673587300008,57.973700262000065],[19.2400822270001,57.970607815000065],[19.272959832000083,57.976548569999984],[19.30567467500012,57.976385809000035],[19.321136915000125,57.972723700000174],[19.3385522800001,57.96356842699999],[19.332286004000053,57.959051825000024],[19.32585696700005,57.95669179900009],[19.318532748000052,57.95604075700014],[19.310557488000086,57.95673248900009],[19.296071811000047,57.94367096600008],[19.2478947270001,57.95246002800014],[19.225840691000087,57.94619375200001],[19.20533287900014,57.93512604400017],[19.161957227000073,57.92597077],[19.139903191000087,57.90827057500009],[19.153168165000125,57.90204498900012],[19.16065514400009,57.896063544000114],[19.16285241000008,57.889227606000084],[19.160329623000052,57.88031647300006],[19.13111412900011,57.85219961100016],[19.12964928500014,57.84686920799999],[19.11345462300011,57.84837474200005],[19.098399285000085,57.852728583000136],[19.084483269000113,57.859361070000105],[19.0716251960001,57.86790599200013],[19.03679446700005,57.905218817],[19.039561394000113,57.91697825700008],[19.04672285200013,57.924261786],[19.06788170700014,57.939357815],[19.074961785000113,57.94904205900015],[19.07992597700007,57.959051825000024],[19.086599155000016,57.96845123900006],[19.0983179050001,57.976548569999984],[19.114593946000127,57.97968170800005],[19.14861087300008,57.97907135600009],[19.163422071000127,57.98712799700006],[19.17212975400011,57.98737213700017],[19.18775475400011,57.98432038],[19.20582116000011,57.98346588700018],[19.22242272200009,57.990220445000126]]],[[[11.738780144000089,58.058539130000106],[11.738454623000052,58.041489976000044],[11.740489129000082,58.03558991100011],[11.745616082000112,58.031195380000135],[11.735606316000116,58.00340403899999],[11.731944207000055,57.9977074240001],[11.719411655000073,57.99217357000008],[11.710215691000087,57.9929059920001],[11.70679772200009,57.99949778899998],[11.711436394000115,58.011379299000126],[11.695078972000088,58.015082098000065],[11.67937259200005,58.006252346],[11.66765384200005,57.9903832050001],[11.659434441000142,57.963283596000146],[11.650645379000082,57.95538971600009],[11.639414910000085,57.95136139500011],[11.618907097000118,57.95425039300016],[11.611094597000118,57.94843170799999],[11.603688998000052,57.94061920799999],[11.59473717500012,57.93561432500014],[11.581065300000091,57.935858466000106],[11.572276238000114,57.940252997000094],[11.56609134200005,57.94586823100009],[11.56006920700014,57.949286200000095],[11.533702019000145,57.95066966399999],[11.527842644000089,57.954291083000136],[11.525889519000145,57.96662018400018],[11.522715691000087,57.97504303600015],[11.516449415000125,57.983832098],[11.512461785000141,57.99262116100006],[11.515635613000114,58.000799872000165],[11.527028842000078,58.005316473000114],[11.554860873000052,58.00238678600003],[11.567556186000104,58.00389232000007],[11.547129754000139,58.00999583500005],[11.524261915000125,58.00995514500006],[11.505625847000147,58.01300690300014],[11.497894727000128,58.02806224200007],[11.505869988000086,58.046047268],[11.524750196000099,58.050726630000106],[11.567556186000104,58.045477606000034],[11.659678582000083,58.045477606000034],[11.68148847700013,58.05023834800012],[11.69898522200009,58.059149481000176],[11.716563347000118,58.06452057500004],[11.738780144000089,58.058539130000106]]],[[[11.789398634000065,58.24640534100005],[11.806976759000092,58.23041413000014],[11.813731316000144,58.21137116100014],[11.815277540000068,58.18927643400015],[11.813812696000127,58.144476630000106],[11.804698113000114,58.125718492000075],[11.782725457000112,58.12030670800011],[11.756683790000125,58.11831289300009],[11.708181186000076,58.09821198100003],[11.654633009000065,58.10797760600018],[11.628916863000114,58.10008372600002],[11.612315300000148,58.118597723000036],[11.585297071000099,58.12311432500018],[11.556488477000071,58.11786530199999],[11.533946160000085,58.106878973000114],[11.523692254000139,58.096665757],[11.519867384000037,58.089544989000146],[11.516286655000073,58.086004950000145],[11.50603274800005,58.08641185100008],[11.49561608200014,58.08991120000014],[11.463877800000091,58.106878973000114],[11.463877800000091,58.072170315000065],[11.457692905000044,58.072170315000065],[11.451182488000141,58.097072658000094],[11.447438998000107,58.10346100500012],[11.416026238000086,58.122503973],[11.406586134000065,58.13108958500011],[11.408864780000043,58.14569733300014],[11.428965691000087,58.160956122000115],[11.527842644000089,58.21279531500004],[11.56267337300005,58.219549872000144],[11.588226759000122,58.23289622600008],[11.601573113000143,58.237250067000055],[11.618418816000144,58.237616278000175],[11.647959832000112,58.23403554900001],[11.663096550000091,58.237250067000055],[11.658539259000065,58.24811432500005],[11.660004102000102,58.25812409100002],[11.666758660000141,58.26630280200014],[11.677419467000078,58.27138906500015],[11.672699415000066,58.28119538],[11.669932488000114,58.28510163000009],[11.686371290000096,58.291205145000056],[11.703461134000065,58.29124583500005],[11.738780144000089,58.28510163000009],[11.74984785200013,58.262884833000115],[11.768565300000091,58.25364817900005],[11.789398634000065,58.24640534100005]]],[[[16.86817467500012,58.27265045800006],[16.855804884000094,58.27187734600012],[16.84742272200012,58.27545807500012],[16.836436394000145,58.290513414000124],[16.832530144000145,58.304185289000074],[16.844899936000104,58.310370184000035],[16.86670983200014,58.304592190000065],[16.877289259000094,58.299709377],[16.88062584700012,58.293280341000084],[16.87907962300008,58.28058502800003],[16.86817467500012,58.27265045800006]]],[[[19.29118899800008,58.35024648600002],[19.25033613400012,58.342840887000115],[19.214121941000116,58.35468170800009],[19.18775475400011,58.39496491100006],[19.22242272200009,58.39496491100006],[19.248789910000085,58.38605377800012],[19.30567467500012,58.37897370000014],[19.331716342000103,58.36762116100009],[19.29118899800008,58.35024648600002]]],[[[16.859711134000065,58.40029531500013],[16.864268425000116,58.397691148000135],[16.86158287900014,58.39199453300013],[16.85124759200005,58.383368231000034],[16.840017123000052,58.38035716400004],[16.828786655000044,58.381537177000055],[16.847178582000083,58.37213776200004],[16.845388217000078,58.36880117400001],[16.833832227000073,58.368882554],[16.827484571000127,58.36359284100003],[16.830577019000117,58.355943101],[16.846039259000122,58.345363674000126],[16.870290561000047,58.33323802300004],[16.89161217500009,58.33372630400014],[16.910492384000122,58.33832428600005],[16.918955925000148,58.33637116100012],[16.915293816000116,58.33502838700004],[16.913259311000076,58.33478424700009],[16.90837649800011,58.329413153000026],[16.9049585300001,58.32632070500012],[16.89503014400009,58.320705471000124],[16.881846550000148,58.317124742000075],[16.865244988000086,58.31671784100016],[16.846039259000122,58.31981028900004],[16.827403191000144,58.32754140800016],[16.814952019000117,58.33917877800014],[16.809418165000125,58.34845612200003],[16.80420983200011,58.35301341400007],[16.80014082100007,58.35830312700012],[16.80152428500014,58.36481354400003],[16.79639733200011,58.371405341000106],[16.785166863000114,58.380072333],[16.79004967500009,58.389064846000124],[16.807790561000104,58.39423248900011],[16.816742384000122,58.39557526200013],[16.829763217000103,58.39948151200012],[16.836599155000044,58.40045807500008],[16.840668165000096,58.39907461100002],[16.85377037900014,58.40200429900012],[16.859711134000065,58.40029531500013]]],[[[18.353851759000094,58.967352606000084],[18.338877800000148,58.95791250200007],[18.317230665000068,58.951361395],[18.309336785000085,58.94765859600016],[18.301524285000113,58.94550202000015],[18.29346764400006,58.94627513200008],[18.289805535000113,58.9413923200001],[18.299327019000117,58.93423086100015],[18.314789259000122,58.93097565300011],[18.316416863000143,58.92694733300014],[18.288340691000144,58.9237328150001],[18.27247155000012,58.91917552300005],[18.237966342000107,58.914129950000124],[18.21631920700011,58.90558502800008],[18.20606530000009,58.90542226800013],[18.19825280000009,58.908148505],[18.193614129000082,58.91132233300005],[18.19556725400011,58.920152085000105],[18.210948113000057,58.93504466400007],[18.2264103520001,58.94472890800013],[18.26189212300008,58.959621486000074],[18.276540561000076,58.96141185100008],[18.2903751960001,58.961249091000106],[18.29948978000007,58.96271393400014],[18.305674675000144,58.96539948100006],[18.321462436000104,58.96914297100006],[18.350840691000087,58.97968170800014],[18.35710696700005,58.97699616100006],[18.353851759000094,58.967352606000084]]],[[[18.216563347000147,59.02448151200014],[18.215668165000068,59.020086981000084],[18.17872155000012,59.011419989],[18.180674675000063,59.009222723],[18.185394727000073,59.01154205900015],[18.192067905000044,59.01203034100015],[18.19825280000009,59.009670315],[18.194590691000144,58.99799225499999],[18.190196160000085,58.99388255400006],[18.18262780000012,58.999253648000106],[18.174652540000068,59.001450914000095],[18.167653842000078,58.99730052300007],[18.159434441000084,58.99770742400007],[18.148122592000107,59.005275783000016],[18.145843946000127,59.0043806010001],[18.14918053500014,58.99437083500014],[18.148692254000082,58.98578522300012],[18.1502384770001,58.976874091000084],[18.14470462300011,58.969061591000084],[18.13111412900014,58.96474844],[18.117523634000094,58.967352606000084],[18.098968946000067,58.978827216000056],[18.094737175000148,58.97801341400013],[18.086924675000148,58.975165106000176],[18.071950717000046,58.965521552000105],[18.056651238000086,58.95941803600011],[18.050629102000073,58.960923569999984],[18.05054772200009,58.967108466000134],[18.0525822270001,58.97064850500011],[18.058604363000114,58.98509349199998],[18.065196160000085,58.991034247000115],[18.075938347000115,58.99310944200012],[18.08155358200011,58.996730861000096],[18.07984459700012,59.002590236000124],[18.082855665000096,59.009222723],[18.09278405000012,59.01776764500012],[18.103526238000114,59.022650458],[18.125336134000094,59.02073802300014],[18.149424675000088,59.02558014500012],[18.17212975400014,59.0273298200001],[18.216563347000147,59.02448151200014]]],[[[17.687510613000114,58.92479075700014],[17.68067467500009,58.921820380000106],[17.68262780000012,58.9142520200001],[17.691172722000143,58.901800848000065],[17.684825066000116,58.900824286],[17.657725457000083,58.92267487200003],[17.65707441500004,58.91779205900015],[17.648122592000107,58.91893138199999],[17.63917076900009,58.93097565300011],[17.640635613000143,58.94765859600016],[17.633962436000104,58.95624420800006],[17.625824415000068,58.95677317900014],[17.624278191000144,58.96393463700017],[17.626800977000045,58.98139069200015],[17.63640384200005,58.99774811400005],[17.646006707000108,59.00946686400014],[17.648122592000107,59.01752350500008],[17.646169467000078,59.023423570000105],[17.646820509000122,59.03384023600002],[17.6438908210001,59.06134674700005],[17.652191602000073,59.071519272999986],[17.663096550000148,59.07196686400008],[17.665700717000046,59.06476471600014],[17.66895592500009,59.05890534100011],[17.673024936000047,59.0576032570001],[17.6775822270001,59.056586005000135],[17.686696811000104,59.05036041900008],[17.694102410000085,59.038967190000115],[17.70093834700009,59.024847723000086],[17.706309441000144,59.00836823100009],[17.70728600400011,58.99335358300008],[17.702484571000127,58.98480866100006],[17.700205925000148,58.97675202000012],[17.70362389400009,58.965318101000086],[17.704112175000148,58.955267645000085],[17.700043165000096,58.945379950000174],[17.697113477000073,58.93549225500005],[17.69434655000012,58.92861562700015],[17.687510613000114,58.92479075700014]]],[[[18.456065300000148,59.05719635600009],[18.435883009000122,59.04975006700012],[18.432871941000116,59.04311758000015],[18.429535352000073,59.03815338700009],[18.42945397200009,59.03180573100018],[18.427500847000147,59.025702216000084],[18.424571160000113,59.02163320500013],[18.419932488000114,59.017035223],[18.41358483200008,59.01166413000014],[18.40528405000009,59.008612372000144],[18.39600670700014,59.01064687700007],[18.390961134000094,59.01068756700006],[18.38624108200011,59.007147528000175],[18.37671959700009,59.00690338700003],[18.36654707100007,59.00910065300003],[18.35547936300011,59.015814520000085],[18.34441165500007,59.025702216000084],[18.341319207000083,59.03343333499999],[18.346039259000094,59.03705475500005],[18.35328209700012,59.036688544000135],[18.361582879000107,59.03921133000016],[18.3580835300001,59.045355536000145],[18.349782748000052,59.05292389500009],[18.35108483200014,59.056830145000085],[18.35710696700005,59.055853583000115],[18.36622155000012,59.057806708000065],[18.3763126960001,59.06378815300017],[18.37875410200013,59.07054271000011],[18.37159264400009,59.07355377800012],[18.374766472000147,59.078355210000026],[18.415375196000067,59.092922268000116],[18.43376712300011,59.10415273600013],[18.45085696700005,59.1120466170001],[18.465993686000044,59.11725495000009],[18.479340040000068,59.11664459800015],[18.485362175000144,59.10561758000009],[18.485362175000144,59.097560940000065],[18.48845462300005,59.09503815300006],[18.490082227000073,59.089422919000135],[18.487315300000116,59.08502838700014],[18.48389733200011,59.08270905199999],[18.456065300000148,59.05719635600009]]],[[[18.737966342000107,59.19773997600008],[18.66846764400009,59.17426178600003],[18.659678582000108,59.176906643],[18.66570071700002,59.18793366100014],[18.67725670700014,59.19928620000012],[18.690928582000083,59.20880768400012],[18.704356316000087,59.21149323100009],[18.71583092500012,59.20880768400012],[18.74382571700005,59.20669179900001],[18.750010613000114,59.205145575000145],[18.737966342000107,59.19773997600008]]],[[[18.778575066000116,59.26007721600015],[18.777679884000122,59.25702545800006],[18.77784264400009,59.25409577000013],[18.77515709700009,59.25218333500008],[18.770518425000148,59.25079987200009],[18.76384524800011,59.25153229400002],[18.75375410200013,59.2560488950001],[18.74293053500014,59.25885651200004],[18.737315300000148,59.258978583],[18.731618686000076,59.25849030200011],[18.722666863000143,59.26239655200011],[18.724619988000086,59.272650458000136],[18.73845462300008,59.285223700000024],[18.75766035200013,59.29458242400006],[18.775889519000117,59.29779694200012],[18.790049675000148,59.296576239],[18.797048373000024,59.294867255],[18.80323326900009,59.29393138200011],[18.810801629000135,59.28925202],[18.80762780000009,59.283148505000106],[18.798675977000045,59.27826569200015],[18.79118899800008,59.27317942900011],[18.778575066000116,59.26007721600015]]],[[[18.523448113000143,59.28864166900006],[18.61231530000009,59.25828685100008],[18.56072024800011,59.257391669000164],[18.539073113000114,59.25995514500009],[18.516123894000145,59.27130768400014],[18.517263217000078,59.24900950700011],[18.532399936000072,59.24188873900006],[18.578135613000086,59.244614976000136],[18.551605665000125,59.22589752800015],[18.520355665000068,59.228664455000015],[18.46827233200011,59.25210195500009],[18.430430535000085,59.25828685100008],[18.427093946000127,59.260891018000066],[18.417979363000143,59.273749091000084],[18.41309655000009,59.278753973000114],[18.39682050900006,59.28611888200011],[18.34473717500009,59.29926178600009],[18.461680535000138,59.298244533000016],[18.523448113000143,59.28864166900006]]],[[[18.698090040000125,59.37360260600018],[18.705902540000125,59.37124258000004],[18.71501712300011,59.36688873900012],[18.73129316500004,59.353908596000124],[18.73804772200009,59.351629950000145],[18.74170983200014,59.35077545800006],[18.744151238000086,59.34491608300012],[18.74708092500009,59.33185455900003],[18.741384311000104,59.32001373900008],[18.726573113000143,59.31199778900013],[18.682790561000076,59.300279039000046],[18.67750084700009,59.299546617000104],[18.673106316000116,59.30390045800003],[18.676768425000148,59.31102122600005],[18.682953321000124,59.313421942],[18.685801629000082,59.31647370000008],[18.683604363000086,59.322455145000035],[18.682139519000117,59.331244208000086],[18.676036004000135,59.340277411],[18.663828972000147,59.346991278000026],[18.653168165000125,59.354885158000016],[18.64844811300011,59.35956452000012],[18.638031446000124,59.367987372000165],[18.647308790000096,59.37181224199999],[18.687998894000145,59.37128327000004],[18.69109134200005,59.373724677000055],[18.698090040000125,59.37360260600018]]],[[[18.249278191000084,59.36668528899998],[18.232758009000122,59.36456940300014],[18.223887566000087,59.365708726000115],[18.203949415000096,59.365912177000055],[18.20972741000014,59.36237213700018],[18.22242272200012,59.35179271000011],[18.212087436000104,59.341498114],[18.1901147800001,59.338364976000136],[18.16553795700008,59.34064362200012],[18.1399845710001,59.348578192000055],[18.122813347000147,59.356756903000175],[18.11695397200012,59.36432526200012],[18.112478061000047,59.37201569200015],[18.1053166020001,59.37763092700014],[18.106700066000087,59.38495514500015],[18.122731967000078,59.389105536],[18.237478061000047,59.37278880400008],[18.249278191000084,59.36668528899998]]],[[[18.865489129000082,59.38971588700006],[18.855723504000135,59.38593170800011],[18.847666863000114,59.38934967700013],[18.846527540000068,59.395900783],[18.854258660000085,59.40253327000009],[18.865082227000073,59.399847723000015],[18.86947675900006,59.39345937700007],[18.865489129000082,59.38971588700006]]],[[[18.94825280000012,59.378729559000085],[18.937673373000077,59.37323639500006],[18.921071811000047,59.379339911000145],[18.90845787900014,59.38837311400006],[18.90381920700011,59.391017971000146],[18.89991295700011,59.39374420800011],[18.89942467500012,59.40070221600011],[18.908213738000114,59.40631745000012],[18.921560092000107,59.40591054900001],[18.93588300900009,59.398830471000124],[18.94239342500009,59.39362213700003],[18.946462436000047,59.38873932500017],[18.94825280000012,59.378729559000085]]],[[[18.909027540000125,59.417914130000106],[18.893890821000127,59.407171942],[18.872325066000116,59.40863678600005],[18.860606316000116,59.424505927],[18.873545769000117,59.43976471600017],[18.89861087300011,59.44570547100009],[18.911794467000078,59.44721100500014],[18.916351759000122,59.44619375200007],[18.924164259000122,59.44135163],[18.925791863000143,59.434027411],[18.909027540000125,59.417914130000106]]],[[[18.684418165000096,59.53510163],[18.68897545700014,59.533392645],[18.693207227000073,59.53351471600017],[18.739105665000125,59.54043203300007],[18.737478061000104,59.53514232],[18.68140709700009,59.52130768400009],[18.656586134000122,59.50674062700007],[18.646494988000086,59.50446198100009],[18.63770592500009,59.49921295800003],[18.63298587300011,59.489650783],[18.62354576900009,59.48826732000005],[18.60840905000009,59.4936384140001],[18.60328209700006,59.49306875200013],[18.604177280000073,59.488023179],[18.599864129000053,59.486232815000015],[18.594411655000044,59.486883856000155],[18.605316602000098,59.46678294500011],[18.60181725400011,59.45612213700018],[18.59115644600007,59.45246002800003],[18.58253014400009,59.45551178600011],[18.578461134000122,59.46393463700015],[18.580902540000068,59.43073151200015],[18.573090040000068,59.431830145],[18.562266472000147,59.42829010600011],[18.55640709700012,59.42230866100001],[18.550629102000073,59.42259349200005],[18.545420769000145,59.428534247000144],[18.541840040000096,59.437241929000045],[18.536306186000076,59.44643789300012],[18.52686608200014,59.45465729400002],[18.519053582000055,59.46405670800014],[18.51775149800008,59.474066473000114],[18.51449629000012,59.478461005000106],[18.51050866000014,59.48314036700013],[18.51441491000014,59.4909528670001],[18.524912957000108,59.495062567000055],[18.538096550000148,59.49555084800015],[18.548838738000086,59.49298737200015],[18.557383660000085,59.482001044000086],[18.55811608200011,59.482855536],[18.556162957000083,59.48749420800011],[18.55958092500009,59.4914411480001],[18.564952019000142,59.49298737200015],[18.571625196000095,59.49339427300005],[18.57764733200011,59.495062567000055],[18.576426629000082,59.496405341000134],[18.569509311000076,59.495347398000106],[18.56348717500009,59.49567291900003],[18.560069207000083,59.498114325000145],[18.55543053500014,59.49945709800014],[18.548106316000144,59.49896881700006],[18.545420769000145,59.50238678600009],[18.551117384000037,59.51007721600008],[18.559825066000116,59.51788971600008],[18.580414259000065,59.530096747000144],[18.59245853000007,59.53876373900007],[18.609711134000094,59.545640367000075],[18.632497592000103,59.54987213700018],[18.654307488000143,59.55003489800005],[18.6744897800001,59.545640367000075],[18.68425540500004,59.53969961100013],[18.684418165000096,59.53510163]]],[[[18.97527103000007,59.62311432500003],[18.96802819100014,59.619370835],[18.955088738000143,59.61786530200005],[18.9366968110001,59.618963934000085],[18.927500847000147,59.622463283000066],[18.91285241000011,59.59210846600011],[18.90528405000009,59.58323802300008],[18.895681186000104,59.58120351800013],[18.885590040000125,59.578599351000136],[18.863454623000052,59.583970444999984],[18.858571811000104,59.59577057500014],[18.868418816000116,59.605617580000064],[18.937754754000082,59.649074611000046],[18.95248457100007,59.65298086100001],[18.964854363000082,59.64765045800005],[18.977712436000104,59.633856512000065],[18.98178144600007,59.632879950000174],[18.98633873800011,59.62856679900006],[18.98462975400011,59.62433502800015],[18.980642123000052,59.62433502800015],[18.97527103000007,59.62311432500003]]],[[[18.783539259000065,59.57436758],[18.770355665000096,59.57200755400005],[18.756846550000116,59.572658596],[18.75660241000008,59.57558828300012],[18.774424675000148,59.58075592700015],[18.796153191000144,59.58930084800006],[18.815603061000047,59.601874091000134],[18.825043165000068,59.6093610700001],[18.86475670700014,59.63247304900007],[18.92432701900009,59.656927802000105],[18.924164259000122,59.64826080900012],[18.90528405000009,59.633612372000115],[18.857920769000142,59.60333893400012],[18.854258660000085,59.60114166900002],[18.830821160000113,59.591620184000114],[18.82764733200014,59.588812567000055],[18.827810092000107,59.58588288000005],[18.823903842000107,59.583889065],[18.816254102000073,59.583319403000054],[18.80876712300011,59.58185455900018],[18.783539259000065,59.57436758]]],[[[18.992523634000094,59.81354401200016],[18.992198113000057,59.807521877000156],[18.994965040000125,59.80853913000011],[18.99634850400011,59.80975983300014],[18.998708530000073,59.80902741100003],[19.00228925900012,59.80573151200015],[19.001963738000114,59.799994208],[18.997813347000143,59.79462311400014],[18.987803582000083,59.78953685100011],[18.972015821000127,59.786607164000095],[18.956390821000067,59.78705475499999],[18.94312584700012,59.79010651200018],[18.935557488000086,59.792669989],[18.932302280000044,59.79010651200018],[18.926280144000117,59.78685130400014],[18.91749108200014,59.78774648600013],[18.891286655000016,59.785589911000116],[18.88575280000009,59.793931382000025],[18.897634311000047,59.809800523000135],[18.941661004000053,59.84808991100006],[18.951670769000145,59.86115143400006],[18.95915774800011,59.86371491100006],[18.96859785200013,59.86180247599999],[18.978282097000086,59.85785553600003],[18.98796634200005,59.850531317],[18.9954533210001,59.839504299000154],[18.99634850400011,59.82640208499999],[18.992523634000094,59.81354401200016]]],[[[18.783864780000073,60.17593008000009],[18.784434441000144,60.17511627800009],[18.790293816000084,60.176174221000124],[18.795583530000073,60.17820872600007],[18.800303582000083,60.176418361000074],[18.80616295700011,60.168036200000024],[18.80689537900014,60.160589911000145],[18.781993035000113,60.15350983299999],[18.760996941000087,60.150051174000104],[18.736338738000086,60.15289948100003],[18.724375847000147,60.15546295800015],[18.720388217000078,60.161200262000094],[18.7142033210001,60.173407294000086],[18.71306399800008,60.18256256700006],[18.71461022200012,60.18773021000008],[18.71827233200014,60.19415924700017],[18.723968946000127,60.19660065300011],[18.72877037900014,60.196722723000086],[18.72877037900014,60.20042552300013],[18.71225019600007,60.212144273000106],[18.71851647200009,60.21645742400004],[18.73829186300011,60.21450429900007],[18.753103061000104,60.209173895],[18.761403842000078,60.20319245000009],[18.765798373000052,60.195990302000055],[18.772634311000076,60.191961981000084],[18.782399936000104,60.18988678600006],[18.788259311000076,60.18414948100009],[18.78809655000009,60.17804596600011],[18.783864780000073,60.17593008000009]]],[[[18.439219597000147,60.45555247599999],[18.466075066000116,60.44269440300014],[18.474457227000073,60.430812893],[18.457855665000125,60.43207428600012],[18.43458092500012,60.44208405200002],[18.419932488000114,60.443793036000024],[18.429698113000143,60.42991771000011],[18.474457227000073,60.38239166900003],[18.48462975400014,60.366400458000115],[18.49431399800008,60.356594143000095],[18.507823113000143,60.35602448100012],[18.52979576900009,60.36810944200012],[18.532399936000072,60.35390859600001],[18.53679446700005,60.34442780200003],[18.550140821000067,60.32709381700012],[18.554698113000114,60.32477448100014],[18.56153405000012,60.323309637000094],[18.567881707000055,60.32127513200005],[18.570648634000122,60.317206122000115],[18.56690514400009,60.307440497000144],[18.55811608200011,60.30719635600011],[18.514333530000073,60.320949611000124],[18.4588322270001,60.35382721600002],[18.402191602000098,60.36981842700012],[18.389170769000117,60.391017971000124],[18.38493899800011,60.41791413],[18.388926629000082,60.467515367000104],[18.3880314460001,60.478908596000096],[18.37517337300005,60.50039297100001],[18.37875410200013,60.50779857000003],[18.39014733200008,60.51007721600017],[18.406260613000057,60.50584544500005],[18.410980665000068,60.50071849200013],[18.422373894000145,60.49091217700003],[18.42676842500012,60.48541901200017],[18.42676842500012,60.48175690300003],[18.424815300000063,60.47679271000008],[18.424001498000052,60.47109609600009],[18.42676842500012,60.464911200000024],[18.439219597000147,60.45555247599999]]],[[[18.09278405000012,62.748195705],[18.103200717000107,62.74518463700012],[18.128103061000044,62.75165436400012],[18.149424675000088,62.749823309000035],[18.159841342000103,62.74713776200014],[18.16114342500009,62.739203192],[18.15723717500009,62.72540924700009],[18.148448113000114,62.71552155200009],[18.14698326900006,62.70954010600014],[18.14307701900009,62.7063662780001],[18.13111412900014,62.707464911000145],[18.119965040000125,62.70648834800007],[18.1170353520001,62.70172760600014],[18.124522332000083,62.6989606790001],[18.130056186000076,62.693508205000064],[18.12468509200005,62.68793366100006],[18.078949415000125,62.679754950000145],[18.027028842000046,62.68451569200015],[18.006114129000082,62.70555247599999],[18.01579837300002,62.72231679900001],[18.02491295700011,62.734605210000055],[18.02833092500012,62.74518463700012],[18.041026238000082,62.75454336100013],[18.064300977000098,62.75787995000017],[18.082041863000086,62.75438060099999],[18.09278405000012,62.748195705]]],[[[20.843028191000144,63.64419179900016],[20.825938347000086,63.643622137000094],[20.82764733200011,63.65314362200008],[20.864593946000042,63.6767438820001],[20.868907097000143,63.67572663000005],[20.87086022200009,63.66937897300012],[20.864593946000042,63.659369208000136],[20.8561304050001,63.65094635600009],[20.843028191000144,63.64419179900016]]],[[[20.9088647800001,63.695298570000126],[20.89405358200014,63.68992747600008],[20.887217644000113,63.69090403900004],[20.87973066500004,63.6906598980001],[20.86475670700011,63.68309153900007],[20.86207116000014,63.69334544499999],[20.880869988000082,63.74237702000011],[20.88892662900011,63.74994538],[20.898122592000078,63.75409577000012],[20.907074415000125,63.756170966000134],[20.919769727000073,63.76414622600002],[20.938243035000113,63.77285390800008],[20.948496941000116,63.77460358300008],[20.94703209700006,63.772691148000106],[20.942230665000096,63.76935455900009],[20.940684441000144,63.76569245000005],[20.944183790000125,63.761135158000094],[20.943044467000107,63.756740627],[20.93620853000007,63.75210195500009],[20.932871941000144,63.745306708000065],[20.935231967000107,63.7372907570001],[20.936696811000076,63.72752513200008],[20.932871941000144,63.71527741100003],[20.923106316000116,63.70319245000011],[20.9088647800001,63.695298570000126]]],[[[20.920420769000117,63.77374909100016],[20.87354576900009,63.753973700000145],[20.880869988000082,63.76072825699999],[20.873220248000052,63.770697333000086],[20.86345462300011,63.77350495000003],[20.85189863400009,63.771673895000056],[20.839203321000127,63.7675641950001],[20.864919467000075,63.796820380000135],[20.904633009000094,63.7935244810001],[20.920420769000117,63.77374909100016]]],[[[22.4178166020001,65.44993724200008],[22.41041100400011,65.44131094000006],[22.387868686000044,65.43366120000003],[22.375661655000044,65.43073151200012],[22.294932488000143,65.428168036],[22.285166863000086,65.4316266950001],[22.286387566000116,65.44257233300009],[22.294769727000073,65.452866929],[22.30640709700009,65.45538971600011],[22.31666100400011,65.45221588700004],[22.32129967500012,65.44692617400007],[22.332530144000113,65.44301992400007],[22.352061394000113,65.44928620000003],[22.370860222000147,65.45945872600008],[22.39087975400014,65.45954010600006],[22.408050977000073,65.4552676450001],[22.4178166020001,65.44993724200008]]],[[[22.233164910000113,65.42389557500009],[22.23170006600006,65.41811758000011],[22.219899936000104,65.41986725500011],[22.21070397200012,65.42316315300015],[22.201426629000082,65.42552317900011],[22.153575066000144,65.430365302],[22.148285352000073,65.4346377620001],[22.142588738000082,65.44578685100014],[22.14405358200014,65.454535223],[22.147227410000113,65.458441473],[22.147308790000096,65.46865469000012],[22.156586134000065,65.47435130400011],[22.17400149800011,65.47431061400012],[22.210215691000144,65.465806382],[22.215342644000142,65.46002838700004],[22.20720462300005,65.45612213700004],[22.206553582000083,65.45018138200011],[22.216807488000114,65.4419619810001],[22.2272241550001,65.43667226800012],[22.23170006600006,65.43154531500012],[22.233164910000113,65.42389557500009]]],[[[22.61426842500012,65.51190827000012],[22.604746941000144,65.51032135600009],[22.588389519000117,65.51211172100007],[22.567556186000044,65.51691315300015],[22.552989129000107,65.53009674700003],[22.558929884000122,65.53827545800011],[22.57715905000012,65.53310781500011],[22.586599155000044,65.52899811400006],[22.594899936000104,65.52826569200015],[22.6105249360001,65.52399323100003],[22.617198113000143,65.51748281500012],[22.61426842500012,65.51190827000012]]],[[[22.303396030000073,65.52301666900014],[22.31128991000014,65.5228539080001],[22.31861412900014,65.52399323100003],[22.326833530000044,65.52057526200011],[22.336273634000065,65.512884833],[22.358734571000067,65.50397370000015],[22.358246290000096,65.49506256700012],[22.344086134000065,65.49038320500001],[22.332692905000098,65.49164459800004],[22.321136915000068,65.50018952000012],[22.307790561000076,65.50674062700004],[22.29322350400014,65.51141998900013],[22.278819207000055,65.51325104400003],[22.27051842500009,65.50983307500012],[22.274261915000125,65.50128815300009],[22.270762566000116,65.5002302100001],[22.27051842500009,65.49689362200009],[22.272715691000087,65.49115631700012],[22.283457879000082,65.48309967699998],[22.285492384000122,65.479193427],[22.280121290000064,65.47821686400012],[22.26579837300008,65.48175690300009],[22.218760613000143,65.50678131700003],[22.193207227000073,65.525783596],[22.186778191000144,65.53782786700013],[22.198008660000056,65.54197825700008],[22.211436394000145,65.54511139500015],[22.2264103520001,65.54393138200011],[22.303396030000073,65.52301666900014]]],[[[22.64144941500012,65.58909739800008],[22.637461785000056,65.57965729400014],[22.621429884000065,65.57611725500006],[22.6139429050001,65.57143789300015],[22.612152540000125,65.56378815300003],[22.606211785000085,65.55752187700006],[22.59742272200012,65.55394114800002],[22.586761915000096,65.5551211610001],[22.575368686000047,65.55817291900003],[22.57203209700012,65.55756256700006],[22.57634524800011,65.55418528900005],[22.569590691000087,65.55499909100013],[22.539317254000082,65.56366608300006],[22.533539259000122,65.5678164730001],[22.52914472700013,65.57623932500003],[22.535899285000085,65.58136627800015],[22.54639733200014,65.58177317900005],[22.56072024800011,65.58079661699999],[22.57797285200013,65.58274974200013],[22.625824415000068,65.59341054900007],[22.64144941500012,65.58909739800008]]],[[[22.60450280000009,65.60028717700008],[22.589121941000144,65.59373607],[22.570160352000126,65.59479401200002],[22.558604363000114,65.60097890800002],[22.55445397200009,65.60537344],[22.56812584700012,65.61253489800004],[22.59506269600007,65.61298248900012],[22.60450280000009,65.60028717700008]]],[[[22.985118035000113,65.70026276200004],[22.98194420700014,65.693589585],[22.97103925900006,65.69550202000012],[22.964040561000076,65.69562409100011],[22.960948113000114,65.690130927],[22.962901238000143,65.68195221600017],[22.971934441000144,65.66705963700012],[22.957286004000135,65.67088450700014],[22.92725670700011,65.68451569200009],[22.8990991550001,65.70140208500008],[22.882172071000127,65.72044505400008],[22.886241082000083,65.73737213700007],[22.90455162900014,65.74274323100008],[22.930023634000065,65.741888739],[22.956228061000104,65.73322174700012],[22.959727410000085,65.72532786700005],[22.94483483200014,65.7245547550001],[22.945974155000073,65.721625067],[22.96265709700012,65.71629466400013],[22.976898634000122,65.70986562700001],[22.985118035000113,65.70026276200004]]],[[[23.802744988000086,65.74371979400009],[23.79948978000004,65.73480866100014],[23.7928166020001,65.72846100500011],[23.786306186000104,65.72467682500007],[23.783213738000114,65.721136786],[23.784678582000083,65.7182070980001],[23.773936394000142,65.71124909100008],[23.738291863000114,65.69672272300006],[23.6998804050001,65.70746491100006],[23.681488477000045,65.72166575699998],[23.681651238000114,65.74306875200013],[23.68962649800008,65.7484398460001],[23.696625196000042,65.73956940300003],[23.704763217000075,65.73598867400007],[23.710703972000086,65.740179755],[23.713552280000044,65.751898505],[23.719248894000117,65.75067780200008],[23.72982832100007,65.74526601800012],[23.74170983200011,65.74225495000003],[23.753672722000143,65.74127838700004],[23.765147332000083,65.74420807500015],[23.77515709700009,65.74957916900003],[23.78150475400011,65.74835846600011],[23.786957227000126,65.7436384140001],[23.79004967500012,65.7471377620001],[23.79265384200002,65.75389232000013],[23.797211134000065,65.75372955900015],[23.800791863000143,65.74982330900015],[23.802744988000086,65.74371979400009]]],[[[22.811371290000125,65.71409739800013],[22.805430535000085,65.7052269550001],[22.760508660000085,65.70848216400005],[22.741058790000096,65.71360911700003],[22.732432488000086,65.71869538000009],[22.725759311000044,65.72402578300013],[22.726247592000107,65.72996653900007],[22.730479363000143,65.73859284100017],[22.73194420700011,65.75145091399999],[22.735524936000076,65.76634349200005],[22.74683678500014,65.77041250200001],[22.79078209700009,65.75031159100014],[22.802419467000075,65.73480866100014],[22.811371290000125,65.71409739800013]]],[[[22.565164836000065,68.43628896100016],[22.60764286300011,68.42492014600008],[22.625832967000065,68.42507517500012],[22.64340295400012,68.42729726200012],[22.662213175000147,68.42740061500014],[22.690221801000064,68.41675527000014],[22.719057251000095,68.39877187200005],[22.7486161700001,68.38549102800006],[22.80825077300011,68.3948961390001],[22.833365519000036,68.38476755800015],[22.875120077000073,68.35107452500002],[22.903748820000146,68.33660512400017],[23.052163533000083,68.29820953400004],[23.06694299300011,68.29025136400016],[23.0735575760001,68.2819314580001],[23.076451457000104,68.273818258],[23.081619100000093,68.2652916470001],[23.094848267000085,68.25552480100005],[23.140013468000063,68.23418243500005],[23.155206340000092,68.217439271],[23.149418579000013,68.19402984700004],[23.15851363100009,68.18669179300004],[23.159753866000127,68.178733622],[23.154482869000105,68.1537739060001],[23.149831990000024,68.14483388300006],[23.149418579000013,68.139407857],[23.151692342000043,68.13026112900012],[23.15458622200012,68.12834910100018],[23.158823690000077,68.12757395500007],[23.165644979000035,68.12204457700007],[23.18724572700009,68.12225128200014],[23.272098429000067,68.14498891300012],[23.306514933000102,68.14560902900008],[23.31984745200012,68.13827097600007],[23.330906210000137,68.12778066000014],[23.371213826000087,68.06845611600004],[23.374831177000146,68.05998118100003],[23.382996053000085,68.05124786400013],[23.457306762000087,68.02432444300003],[23.484695272000124,68.01590118500003],[23.573682088000083,67.97331980400016],[23.64313521300008,67.96319122300011],[23.662152140000046,67.95042714500015],[23.661221964000077,67.93285715700007],[23.63610721900005,67.91347849600011],[23.60334436000005,67.90298818000015],[23.5325476480001,67.89316965799999],[23.498854614000066,67.88216257800009],[23.481284627000093,67.86464426700003],[23.476737102000044,67.84133819600011],[23.479734334000057,67.81699859600009],[23.484695272000124,67.79622467100013],[23.48459191900008,67.737158509],[23.488415975000123,67.72480784200006],[23.499474731000134,67.70899485300005],[23.51074019400008,67.66925567600005],[23.518801717000088,67.65282257200009],[23.54257287600012,67.62667429599999],[23.550324341000135,67.610912984],[23.55352827900012,67.58703847300002],[23.535441528000092,67.577013245],[23.499474731000134,67.56631622400009],[23.47342981000014,67.55499908500008],[23.484695272000124,67.54295847700003],[23.465988404000115,67.52244293200006],[23.443457479000102,67.50471791600013],[23.431261841000094,67.48552012200004],[23.443664184000056,67.46102549199999],[23.477150513000055,67.44381724100002],[23.514254191000134,67.44482493200017],[23.5538383380001,67.45200795500004],[23.59455936700007,67.45360992500015],[23.66266890500006,67.43622080500013],[23.730778442000084,67.43141489700004],[23.752585897000102,67.42730662100011],[23.765194946000122,67.42007192000013],[23.763231242000103,67.39754099600013],[23.751345662000062,67.36953237000002],[23.751449015000105,67.34622629900018],[23.7856588140001,67.33751882000003],[23.763231242000103,67.30648712200018],[23.735429321000137,67.28969228100011],[23.62225793400009,67.26902170900011],[23.602724243000097,67.26026255300003],[23.59455936700007,67.24442372600011],[23.591458781000114,67.22501922600004],[23.596729777000064,67.21796539400012],[23.614919881000105,67.21398630800014],[23.607065064000068,67.20122222999998],[23.597556600000075,67.1902668260001],[23.586497844000064,67.18088755400004],[23.57399214700007,67.17303273600011],[23.581330200000078,67.15313730900012],[23.59890018700014,67.14029571600004],[23.620500936000095,67.12926279700004],[23.647786092000043,67.10856638600002],[23.658018026000093,67.10401886100009],[23.666596313000127,67.09792104100002],[23.67021366400013,67.08706899000008],[23.67062707500014,67.07422739700017],[23.672590780000064,67.06570078600005],[23.676724894000102,67.05849192300008],[23.683856242000047,67.04952606300006],[23.72033980300006,67.0168665580001],[23.743800903000107,67.0010277310001],[23.761680949000063,66.99428395600016],[23.792066691000116,66.9889354460001],[23.816664672000115,66.97549957300005],[23.873612102000095,66.92464996400004],[23.91236942600011,66.90341095000015],[23.933350057000013,66.8887606820001],[23.960841919000075,66.86188893700007],[24.001252889000057,66.81243459100013],[24.004043416000115,66.80519989100016],[23.99918583200011,66.79628570600006],[23.98440637200008,66.79297841400016],[23.961048624000057,66.79354685500012],[23.939241170000116,66.79111806300016],[23.92477176900007,66.77297963500003],[23.8924223220001,66.75091379800013],[23.891698853000094,66.74357574500014],[23.902964315000077,66.70688547800007],[23.903171020000116,66.68631825800016],[23.899036906000106,66.66637115500005],[23.89159550000008,66.64787099300004],[23.881880330000115,66.63179962200014],[23.889115030000085,66.61407460600005],[23.893249146000127,66.59603953100005],[23.89149214600013,66.578882955],[23.881880330000115,66.56353505500012],[23.86120975700001,66.55459503200008],[23.807672974000067,66.53924713200001],[23.806122681000147,66.52813669900009],[23.78586551900014,66.51842153000014],[23.75506636500009,66.51185862300018],[23.731088501000073,66.5031253050001],[23.731088501000073,66.48715728800006],[23.706077108000073,66.48297149700012],[23.676828247000117,66.47400563600009],[23.652436971000096,66.45883860300007],[23.64230839000004,66.4362560020001],[23.646649210000103,66.42406036400003],[23.66587284300004,66.40556020100007],[23.67021366400013,66.39530243000011],[23.671660604000124,66.38178904300003],[23.67703495300009,66.363624776],[23.676414835000116,66.35000803700011],[23.673004191000075,66.33951772100015],[23.66442590300005,66.32639190700009],[23.662772258000103,66.31652170900009],[23.66597619600006,66.3054629520001],[23.680652303000073,66.2829837040001],[23.68943729700004,66.25699045900002],[23.724163859000072,66.20663177500013],[23.75000207500011,66.18965606700012],[23.785555461000055,66.17668528300011],[23.889321737000046,66.16110483900017],[23.911439250000058,66.14862498000018],[23.965596151000085,66.08160064700017],[23.974587850000116,66.07281565400008],[23.985129842000077,66.06635610000005],[24.00941776500008,66.05560740200012],[24.01964969900007,66.048941142],[24.029778279000112,66.03498850500002],[24.05530643700007,65.98517242499999],[24.05696008300009,65.97010874400009],[24.0547896730001,65.94791371700013],[24.07597701000006,65.92801829100013],[24.102331990000035,65.90858795200016],[24.12444950400004,65.86890045200009],[24.163413534000114,65.84078847300005],[24.16309655000009,65.822699286],[24.140310092000078,65.80451080900012],[24.105153842000107,65.80182526200004],[24.032725457000083,65.809719143],[24.039073113000086,65.803656317],[24.040863477000073,65.80052317900014],[24.043793165000096,65.798529364],[24.053233269000117,65.79604726800007],[24.028819207000083,65.79010651200004],[23.98015384200005,65.79486725500014],[23.957041863000086,65.78912995000017],[23.95142662900008,65.78310781500006],[23.943858269000117,65.766546942],[23.93653405000012,65.76121653900013],[23.926442905000073,65.76040273600002],[23.918142123000077,65.76316966399999],[23.91032962300008,65.76691315300012],[23.894541863000143,65.770005601],[23.885427280000073,65.77362702000006],[23.87769616000014,65.77899811400012],[23.874359571000127,65.78579336100013],[23.87183678500011,65.79486725500014],[23.865733269000117,65.79486725500014],[23.854665561000076,65.78912995000017],[23.805674675000116,65.78945547100001],[23.781748894000145,65.79303620000015],[23.771494988000114,65.80597565300017],[23.76197350400011,65.8222516950001],[23.739431186000044,65.82929108300009],[23.690196160000138,65.83014557500017],[23.674978061000076,65.82538483300009],[23.649261915000096,65.80304596600013],[23.635508660000085,65.79604726800007],[23.62330162900011,65.79621002800003],[23.616221550000148,65.80093008000013],[23.611664259000122,65.80646393400015],[23.607595248000052,65.809719143],[23.52800540500007,65.81000397300012],[23.484141472000115,65.8158633480001],[23.490570509000122,65.82977936400006],[23.483571811000047,65.83437734600001],[23.47006269600007,65.83331940300006],[23.457367384000122,65.83014557500017],[23.458181186000047,65.82843659100017],[23.44996178500014,65.8158633480001],[23.44312584700012,65.81268952000012],[23.436208530000016,65.81134674700003],[23.428965691000087,65.80878327000012],[23.422048373000077,65.80223216400005],[23.433278842000103,65.79779694200006],[23.437836134000037,65.79230377800003],[23.43824303500014,65.78497955900004],[23.436289910000085,65.77488841400007],[23.433441602000073,65.76666901200014],[23.428477410000113,65.76532623900009],[23.41879316500004,65.76723867400011],[23.401866082000055,65.768703518],[23.385020379000053,65.77521393400009],[23.374278191000144,65.79043203300006],[23.370453321000124,65.80833567900011],[23.374278191000144,65.822699286],[23.352793816000116,65.82135651200012],[23.338063998000024,65.81305573100003],[23.32585696700005,65.80292389500009],[23.312185092000107,65.79604726800007],[23.2897241550001,65.7958438170001],[23.268809441000144,65.80312734600012],[23.23023522200009,65.822699286],[23.213389519000085,65.8270531270001],[23.1959741550001,65.82697174700012],[23.183767123000052,65.81964752800012],[23.18238366000014,65.80223216400005],[23.190765821000124,65.78986237200009],[23.205739780000044,65.78131745000017],[23.237640821000067,65.768703518],[23.221934441000116,65.76361725500009],[23.158457879000082,65.75023021000007],[23.148203972000147,65.74559153900005],[23.12842858200014,65.73395416900006],[23.129567905000073,65.71503327000012],[23.10303795700011,65.70465729400003],[23.07878665500004,65.70722077000012],[23.086761915000096,65.72772858300009],[23.05811608200011,65.75507233300004],[23.045909050000148,65.76121653900013],[22.98975670700014,65.76430898600002],[22.944021030000012,65.77533600500006],[22.936045769000145,65.77863190300009],[22.914886915000068,65.79604726800007],[22.901052280000073,65.79865143400015],[22.877696160000085,65.79486725500014],[22.860199415000125,65.79604726800007],[22.837168816000144,65.80768463700016],[22.805918816000087,65.84857819200003],[22.785166863000086,65.86432526200015],[22.673024936000047,65.905707098],[22.653005405000073,65.90839264500006],[22.63428795700011,65.905218817],[22.646983269000142,65.89508698100015],[22.67253665500004,65.8817813170001],[22.682139519000117,65.8710798200001],[22.68531334700009,65.862494208],[22.68897545700014,65.8369815120001],[22.693044467000107,65.82391998900012],[22.697520379000082,65.81419505400008],[22.699717644000145,65.80394114800005],[22.696462436000104,65.78912995000017],[22.688731316000084,65.775620835],[22.677582227000073,65.76471588700012],[22.663747592000078,65.757513739],[22.648122592000107,65.75507233300004],[22.653005405000073,65.77806224200013],[22.627940300000148,65.79035065300009],[22.56983483200011,65.79604726800007],[22.556000196000127,65.79214101800007],[22.522715691000116,65.7764346370001],[22.51148522200012,65.77488841400007],[22.505544467000107,65.78359609600015],[22.5115666020001,65.794663804],[22.5227970710001,65.80459219],[22.531993035000085,65.809719143],[22.518402540000125,65.82265859600001],[22.50359134200005,65.83100006700009],[22.469899936000047,65.84320709800006],[22.472422722000147,65.84686920800003],[22.477305535000113,65.856878973],[22.405528191000144,65.86391836100016],[22.37012780000012,65.86172109600007],[22.36744225400014,65.84320709800006],[22.325938347000147,65.8369815120001],[22.36744225400014,65.809719143],[22.364512566000116,65.79779694200006],[22.351247592000103,65.79653554900015],[22.31910241000014,65.80223216400005],[22.33057701900009,65.79291413],[22.345550977000126,65.77130768400009],[22.360606316000144,65.76121653900013],[22.32601972700013,65.7355003930001],[22.285492384000122,65.74339427300005],[22.24463951900009,65.76023997600005],[22.209239129000082,65.76121653900013],[22.23023522200012,65.74530670800011],[22.249847852000073,65.73574453300004],[22.27328535200013,65.73053620000003],[22.339528842000107,65.72418854400009],[22.361827019000145,65.71625397300012],[22.376638217000018,65.70026276200004],[22.387950066000116,65.67251211100016],[22.37525475400014,65.67352936400012],[22.36280358200011,65.67291901200015],[22.350840691000084,65.67023346600007],[22.33961022200009,65.665025132],[22.329437696000042,65.68927643400018],[22.307871941000144,65.70083242400001],[22.281504754000135,65.70148346600014],[22.25757897200009,65.69301992400001],[22.265310092000078,65.68789297100001],[22.268077019000145,65.68121979400014],[22.265472852000045,65.67352936400012],[22.25757897200009,65.665025132],[22.265310092000078,65.65949127800016],[22.27222741000008,65.65102773600012],[22.284922722000147,65.63153717700014],[22.262054884000037,65.62555573100003],[22.18921959700009,65.62409088700015],[22.26270592500009,65.61176178600012],[22.300629102000098,65.61151764500006],[22.31910241000014,65.63153717700014],[22.314138217000078,65.64179108300006],[22.28956139400009,65.65570709800015],[22.284922722000147,65.665025132],[22.293142123000052,65.67365143400009],[22.308604363000086,65.6693789730001],[22.32439212300011,65.65957265800016],[22.333343946000124,65.65135325700005],[22.325938347000147,65.64520905200008],[22.38038170700014,65.63401927300008],[22.38453209700009,65.62783437700001],[22.340098504000082,65.61286041900014],[22.333343946000124,65.60419342700008],[22.343597852000073,65.59564850500006],[22.365977410000085,65.5889346370001],[22.404958530000073,65.58315664300012],[22.411387566000087,65.579006252],[22.4186304050001,65.56915924700017],[22.428965691000116,65.54897695500013],[22.40528405000009,65.54193756700008],[22.38689212300005,65.5500348980001],[22.369883660000085,65.56281159100014],[22.350108269000145,65.56940338700012],[22.32032311300014,65.57196686400012],[22.298513217000107,65.57689036699999],[22.274912957000083,65.58787669500005],[22.263031446000127,65.58958567900005],[22.25074303500014,65.58315664300012],[22.256602410000113,65.56903717700003],[22.228282097000147,65.57208893400009],[22.12647545700011,65.60374583500008],[22.051280144000117,65.61733633000013],[22.021332227000045,65.63495514500015],[22.006195509000065,65.64179108300006],[21.963877800000148,65.64671458500011],[21.92986087300011,65.66339752800015],[21.867849155000073,65.67251211100016],[21.85279381600014,65.67829010600002],[21.84351647200009,65.68382396000014],[21.822764519000117,65.70294830900012],[21.809580925000148,65.71059804900013],[21.778168165000125,65.71946849199999],[21.764170769000145,65.72772858300009],[21.7877710300001,65.68671295800009],[21.847911004000082,65.66095612200003],[21.970225457000083,65.63153717700014],[22.052744988000082,65.59764232],[22.11866295700011,65.58348216400007],[22.132578972000115,65.57819245000009],[22.147715691000116,65.56940338700012],[22.17009524800011,65.55304596600011],[22.183360222000147,65.54857005400005],[22.2029728520001,65.54897695500013],[22.176931186000047,65.53978099199999],[22.12086022200012,65.53949616100014],[22.093109571000127,65.53534577],[22.083994988000143,65.53180573100003],[22.082041863000114,65.52920156500012],[22.081228061000104,65.52533600500011],[22.075694207000083,65.51788971600014],[22.06592858200014,65.51430898600007],[22.056813998000052,65.5189883480001],[22.04761803500008,65.52496979400011],[22.038259311000047,65.52509186400009],[22.011241082000083,65.51748281500012],[21.874685092000078,65.53685130400004],[21.853526238000086,65.53534577],[21.900238477000073,65.50128815300009],[21.92790774800008,65.48944733300011],[21.950368686000076,65.49494049700014],[21.92986087300011,65.50604889500009],[21.9217228520001,65.50800202000012],[21.94711347700013,65.509426174],[22.004567905000044,65.47687409100003],[22.031586134000094,65.46702708500011],[22.0240991550001,65.45319245000012],[22.018890821000124,65.44131094000006],[22.011729363000086,65.432033596],[21.99756920700014,65.42609284100008],[21.98121178500014,65.42682526200012],[21.966075066000144,65.43374258000001],[21.942230665000064,65.45335521000008],[21.932302280000073,65.44135163000006],[21.935883009000122,65.43105703300013],[21.94288170700011,65.42153554900013],[21.942230665000064,65.411810614],[21.927744988000114,65.40412018400015],[21.906993035000113,65.40277741100007],[21.8885197270001,65.40766022300015],[21.880869988000143,65.41864655200011],[21.8509220710001,65.40753815300017],[21.820974155000016,65.40102773600007],[21.790212436000047,65.400091864],[21.705902540000068,65.41449616100006],[21.688324415000125,65.41233958500008],[21.702647332000108,65.39813873900006],[21.656097852000073,65.397162177],[21.63111412900014,65.40005117400001],[21.610036655000044,65.41864655200011],[21.58668053500014,65.41819896000011],[21.544444207000108,65.411810614],[21.544444207000108,65.40558502800003],[21.58545983200011,65.3975283870001],[21.59961998800014,65.39813873900006],[21.59961998800014,65.39191315300008],[21.527517123000052,65.39679596600017],[21.48910566500012,65.39337799700014],[21.46998131600014,65.377630927],[21.476084832000137,65.37645091399999],[21.485036655000073,65.3723819030001],[21.489756707000083,65.37083567900008],[21.44890384200002,65.35716380400014],[21.46973717500009,65.35455963700004],[21.49154707100007,65.3482933610001],[21.511566602000126,65.33860911700013],[21.527354363000086,65.32611725500011],[21.542979363000143,65.31858958500005],[21.565684441000087,65.315863348],[21.583994988000143,65.32094961100002],[21.585948113000114,65.33665599199999],[21.60474694100014,65.33372630400005],[21.622325066000087,65.32648346600006],[21.654307488000086,65.30878327000012],[21.68702233200011,65.29682038],[21.701670769000113,65.28587474200003],[21.699229363000086,65.27155182500015],[21.66814212300008,65.25275299700007],[21.62281334700009,65.24079010600015],[21.576996290000096,65.23810455900009],[21.544444207000108,65.24730052300008],[21.534434441000116,65.257513739],[21.515961134000094,65.28339264499999],[21.50342858200011,65.29572174700014],[21.4895939460001,65.30548737200009],[21.474294467000046,65.31403229400003],[21.456390821000095,65.32013580900009],[21.435557488000114,65.32245514500005],[21.408946160000085,65.333197333],[21.37842858200014,65.35504791900003],[21.34555097700013,65.37278880400011],[21.312266472000147,65.37083567900008],[21.3177189460001,65.36953359600007],[21.327321811000072,65.36554596600008],[21.332774285000113,65.36399974200005],[21.319509311000076,65.35138580900018],[21.277842644000117,65.350043036],[21.264414910000113,65.33665599199999],[21.391368035000138,65.32184479400011],[21.42212975400011,65.30878327000012],[21.4822697270001,65.26097239800002],[21.53760826900009,65.23090241100006],[21.609873894000085,65.168850002],[21.618825717000107,65.14801666900006],[21.599864129000082,65.13906484600001],[21.544444207000108,65.13743724199999],[21.55713951900009,65.13117096600006],[21.562836134000065,65.12250397300015],[21.562185092000103,65.11200592700008],[21.543793165000068,65.08307526200015],[21.54932701900009,65.07762278900013],[21.54932701900009,65.07758209800012],[21.54940839900007,65.07758209800012],[21.565277540000096,65.07558828300002],[21.585948113000114,65.06915924700009],[21.563161655000073,65.0612653670001],[21.479258660000113,65.06232330900015],[21.46705162900011,65.05548737200014],[21.477386915000125,65.0405134140001],[21.494883660000085,65.026312567],[21.50342858200011,65.02142975500014],[21.472341342000103,65.009466864],[21.46314537900014,65.00771719],[21.45289147200009,65.00934479400003],[21.433360222000115,65.01496002800003],[21.42212975400011,65.01459381700012],[21.42212975400011,65.01276276200002],[21.420258009000065,65.00836823100015],[21.417491082000083,65.00364817900005],[21.41480553500011,65.00092194200009],[21.397634311000104,64.994370835],[21.383148634000037,64.98655833500003],[21.379405144000117,64.97736237200003],[21.394216342000078,64.96678294499999],[21.377777540000093,64.96002838700004],[21.25611412900014,64.95673248899999],[21.243418816000087,64.95311107000003],[21.241465691000116,64.94537995000003],[21.247325066000084,64.93952057500009],[21.25220787900014,64.932562567],[21.246836785000085,64.92177969],[21.2389429050001,64.91453685100008],[21.22787519600007,64.90656159100003],[21.215179884000122,64.90033600500006],[21.202403191000084,64.89850495000009],[21.212575717000107,64.87197500200004],[21.192881707000083,64.86115143400004],[21.17269941500004,64.85342031500004],[21.181325717000046,64.8358421900001],[21.165293816000144,64.82982005400008],[21.130869988000114,64.82347239800005],[21.113047722000147,64.82273997600011],[21.097341342000078,64.82754140800002],[21.091481967000046,64.83836497600002],[21.089528842000103,64.850083726],[21.085215691000087,64.85757070500016],[21.069102410000113,64.86074453300002],[21.053558790000125,64.85667552300008],[21.04200280000009,64.84686920800011],[21.037364129000082,64.83270905200011],[21.042328321000127,64.81989166900017],[21.054698113000143,64.81443919500013],[21.085215691000087,64.80914948100015],[21.081065300000148,64.79873281500006],[21.078949415000125,64.79486725500006],[21.09717858200011,64.78530508000007],[21.11500084700009,64.78143952000006],[21.153981967000078,64.78119538000011],[21.217539910000085,64.78925202000006],[21.281260613000114,64.77676015800016],[21.305837436000044,64.76829661700009],[21.312266472000147,64.75385163000006],[21.2994897800001,64.74884674700012],[21.24830162900014,64.75079987200014],[21.22917728000007,64.74770742400007],[21.24626712300011,64.73086172100007],[21.267263217000078,64.71751536700008],[21.312266472000147,64.69928620000009],[21.312266472000147,64.69245026200015],[21.295746290000068,64.69208405200004],[21.288747592000078,64.68683502800015],[21.291351759000094,64.67934804900001],[21.30494225400014,64.67194245000012],[21.30494225400014,64.66571686400006],[21.278656446000127,64.67088450700005],[21.231293165000096,64.69399648600002],[21.205821160000085,64.69928620000009],[21.184825066000144,64.70673248900006],[21.164886915000068,64.72158437700013],[21.1438908210001,64.73297760600009],[21.119883660000085,64.72968170800006],[21.109141472000147,64.71637604400003],[21.111175977000073,64.69936758000007],[21.122731967000107,64.68305084800015],[21.140391472000115,64.67194245000012],[21.168223504000082,64.66787344000015],[21.201670769000142,64.66657135600015],[21.23194420700014,64.66107819200012],[21.25025475400011,64.6439883480001],[21.231700066000087,64.64264557500009],[21.232188347000086,64.63300202000012],[21.24512780000009,64.62201569200006],[21.263845248000052,64.616644598],[21.285411004000053,64.6161563170001],[21.29509524800011,64.61432526200007],[21.30494225400014,64.61050039300011],[21.310231967000107,64.60565827000015],[21.318858269000117,64.59267812700016],[21.322276238000114,64.59003327000006],[21.33025149800008,64.586859442],[21.34392337300011,64.57269928600009],[21.353282097000147,64.56952545800011],[21.362803582000137,64.572211005],[21.365407748000052,64.57762278900005],[21.363536004000082,64.58234284100014],[21.360118035000085,64.58258698100009],[21.366953972000086,64.59479401200014],[21.368337436000076,64.60423411699999],[21.374034050000148,64.60797760600012],[21.394216342000078,64.60301341400007],[21.41480553500011,64.58966705900015],[21.43726647200012,64.57111237200014],[21.45557701900009,64.56248607000005],[21.46729576900006,64.5873477230001],[21.476410352000073,64.58746979400014],[21.485606316000116,64.583441473],[21.489756707000083,64.57916901200018],[21.489756707000083,64.55585358300009],[21.501231316000116,64.54417552299999],[21.515147332000083,64.5370954450001],[21.5319116550001,64.534125067],[21.551931186000072,64.53473541900017],[21.539398634000094,64.52814362200009],[21.52556399800008,64.522894598],[21.510996941000144,64.52094147300006],[21.49659264400009,64.52456289300011],[21.470957879000107,64.54498932500009],[21.46314537900014,64.5484072940001],[21.41456139400009,64.52936432500012],[21.386566602000045,64.52171458500008],[21.374278191000087,64.53139883000013],[21.37142988400006,64.53831614800013],[21.364593946000124,64.54169342700006],[21.356618686000076,64.54157135600018],[21.34986412900014,64.53815338700018],[21.34734134200005,64.5319684920001],[21.353200717000078,64.52952708500008],[21.366953972000086,64.52798086100013],[21.38607832100007,64.51032135600012],[21.39918053500014,64.50519440300009],[21.41163170700014,64.51117584800012],[21.422536655000044,64.51463450700011],[21.463226759000122,64.51699453300007],[21.476084832000137,64.51496002800006],[21.479665561000104,64.51064687700011],[21.487559441000087,64.49408600500009],[21.489756707000083,64.48700592700011],[21.477712436000076,64.47166575700005],[21.479665561000104,64.46084219000006],[21.491953972000147,64.45433177300008],[21.510508660000085,64.45221588700015],[21.519867384000094,64.45538971600003],[21.53101647200012,64.46954987200014],[21.53760826900009,64.47272370000012],[21.558278842000107,64.47040436400006],[21.578623894000117,64.4658877620001],[21.572438998000052,64.480169989],[21.585948113000114,64.480169989],[21.597666863000086,64.47516510600015],[21.60531660200013,64.46564362200014],[21.606455925000148,64.45221588700015],[21.600108269000117,64.44245026200011],[21.588633660000085,64.44110748900012],[21.575205925000088,64.44110748900012],[21.561778191000116,64.43512604400001],[21.55054772200009,64.42841217700008],[21.525726759000065,64.42177969],[21.513926629000082,64.41469961100013],[21.457286004000082,64.37164948100012],[21.416758660000053,64.35309479400011],[21.397634311000104,64.33982982000008],[21.37322024800005,64.33038971600014],[21.351817254000082,64.34007396000011],[21.33350670700014,64.35578034100008],[21.31853274800011,64.36408112200014],[21.322764519000117,64.35516998900012],[21.324229363000086,64.346625067],[21.322764519000117,64.33812083500008],[21.31853274800011,64.3293317730001],[21.32496178500011,64.32623932500012],[21.327647332000083,64.32294342700007],[21.329356316000087,64.31924062700013],[21.332774285000113,64.31500885600012],[21.316416863000086,64.31207916900009],[21.2877710300001,64.30231354400014],[21.270681186000076,64.30141836100016],[21.25635826900009,64.305121161],[21.25025475400011,64.30866120000009],[21.243907097000147,64.30707428600006],[21.11703535200013,64.22113678600014],[21.113047722000147,64.21942780200014],[21.082692905000073,64.22549062700013],[21.078949415000125,64.22687409100011],[21.070323113000143,64.2217471370001],[21.04468834700006,64.1915550800001],[20.966563347000147,64.14940013200014],[20.948496941000116,64.13007233300011],[20.9607853520001,64.11286041900009],[20.954274936000104,64.09479401200018],[20.914805535000113,64.05695221600006],[20.912364129000082,64.05292389500006],[20.9114689460001,64.0475934920001],[20.9075626960001,64.03510163],[20.91000410200013,64.03709544500013],[20.91228274800011,64.03351471600014],[20.913828972000143,64.02789948100015],[20.914398634000122,64.02423737200012],[20.912608269000145,64.02106354400014],[20.908702019000142,64.02045319200009],[20.904307488000143,64.01919179900007],[20.90137780000012,64.01406484600007],[20.899912957000083,63.99396393400012],[20.896983269000145,63.98371002800009],[20.890472852000073,63.979234117000125],[20.878754102000073,63.97711823100011],[20.87086022200009,63.97239817900011],[20.865977410000113,63.96771881700008],[20.863291863000143,63.96556224199999],[20.841481967000103,63.959418036000024],[20.824961785000113,63.944728908],[20.80518639400009,63.91095612200003],[20.786468946000127,63.87860748900003],[20.777191602000073,63.86937083500005],[20.729340040000068,63.84955475500015],[20.684743686000076,63.84845612200008],[20.674815300000148,63.84271881700012],[20.669932488000086,63.82908763200008],[20.677907748000052,63.82257721600016],[20.692881707000083,63.82099030200013],[20.708994988000143,63.82221100500006],[20.687510613000114,63.798732815],[20.674652540000096,63.789252020000085],[20.66431725400011,63.79120514500012],[20.643077019000117,63.81452057500006],[20.6302189460001,63.82086823100017],[20.61264082100007,63.82221100500006],[20.56495201900009,63.79832591399998],[20.561778191000116,63.785223700000024],[20.553558790000125,63.77704498900011],[20.54265384200005,63.77533600500011],[20.530935092000078,63.78123607000004],[20.540863477000073,63.79169342700011],[20.53874759200005,63.800767320000126],[20.529307488000143,63.80878327000007],[20.507660352000045,63.82103099200013],[20.50342858200014,63.8220075540001],[20.45582116000014,63.772202867000125],[20.436859571000127,63.76117584800009],[20.41358483200011,63.7675641950001],[20.419200066000116,63.75934479400011],[20.418467644000085,63.75421784100008],[20.415293816000116,63.74909088700018],[20.41358483200011,63.74030182500012],[20.4205835300001,63.71845123900008],[20.421071811000104,63.712347723000086],[20.41504967500009,63.701117255],[20.40560957100007,63.68984609600009],[20.39429772200009,63.68109772300012],[20.383067254000082,63.67763906500013],[20.364919467000078,63.68073151200009],[20.354746941000144,63.68915436400006],[20.353526238000114,63.70140208500011],[20.36231530000009,63.71605052300013],[20.361664259000122,63.72549062700013],[20.352386915000096,63.73871491100009],[20.33887780000012,63.75014883000012],[20.325450066000116,63.753973700000145],[20.31666100400014,63.74005768400018],[20.31812584700012,63.67902252800008],[20.307953321000067,63.65436432500012],[20.29517662900011,63.65224844],[20.279307488000086,63.65924713700017],[20.267588738000114,63.670599677000055],[20.26693769600007,63.68134186400006],[20.27523847700013,63.692694403000026],[20.282562696000124,63.70669179900009],[20.28663170700011,63.72077057500003],[20.284434441000116,63.732855536000145],[20.264903191000116,63.71971263199999],[20.246104363000086,63.698228257000046],[20.236013217000107,63.67357005400005],[20.242849155000044,63.650864976000115],[20.219411655000073,63.65338776200003],[20.1534936860001,63.650864976000115],[20.1432397800001,63.64850495000014],[20.13160241000008,63.64423248900014],[20.119883660000085,63.64248281500015],[20.10914147200009,63.64744700700011],[20.10230553500014,63.65729401200004],[20.098399285000056,63.66156647300012],[20.09205162900014,63.66453685100005],[20.0735783210001,63.66624583500006],[20.05347741000014,63.66339752800012],[20.034515821000042,63.656805731000034],[20.02003014400009,63.64744700700011],[20.01107832100007,63.63410065300009],[20.013438347000115,63.622870184000085],[20.030528191000087,63.602484442000026],[19.952321811000072,63.619289455000036],[19.937754754000135,63.61985911699998],[19.923106316000116,63.612372137000115],[19.886973504000082,63.603094794000164],[19.879730665000068,63.599066473],[19.864431186000104,63.573187567],[19.828135613000114,63.55556875200006],[19.786306186000104,63.54100169500004],[19.753184441000144,63.524318752],[19.750336134000122,63.51422760600003],[19.766856316000087,63.48761627800009],[19.772471550000088,63.46458567900011],[19.768890821000127,63.46076080900012],[19.7448022800001,63.45726146000011],[19.735606316000112,63.45294830900012],[19.722666863000114,63.44489166900008],[19.699473504000082,63.43374258000016],[19.687347852000098,63.43134186400012],[19.639496290000068,63.44489166900008],[19.636485222000147,63.45913320500009],[19.640310092000078,63.46979401200012],[19.637054884000122,63.478338934000035],[19.612966342000107,63.4858259140001],[19.61540774800005,63.489691473000036],[19.617523634000065,63.4965681010001],[19.619151238000082,63.50006745000012],[19.605723504000082,63.50405508000009],[19.578623894000142,63.52118561400012],[19.526377800000148,63.53050364800007],[19.512950066000144,63.53758372600014],[19.492523634000094,63.55280182500012],[19.470225457000137,63.561468817],[19.44629967500009,63.560858466000134],[19.420420769000145,63.548529364],[19.4314884770001,63.542792059000035],[19.44312584700012,63.53888580900003],[19.468760613000086,63.534247137000094],[19.45460045700014,63.50893789300006],[19.46705162900008,63.50088125200012],[19.49398847700013,63.49738190300004],[19.523448113000114,63.4858259140001],[19.49561608200005,63.476711330000015],[19.481618686000104,63.47382233299999],[19.46509850400011,63.472805080000036],[19.46143639400009,63.46893952000011],[19.47136478000007,63.460394598],[19.511729363000143,63.43333567900006],[19.51539147200009,63.42625560099999],[19.51661217500009,63.414740302000055],[19.50798587300011,63.41185130400014],[19.488291863000143,63.417181708],[19.45460045700014,63.43121979400014],[19.37256920700014,63.47955963700015],[19.346202019000145,63.485907294000086],[19.345225457000083,63.47760651200012],[19.37256920700014,63.44489166900008],[19.35141035200013,63.44000885600011],[19.330739780000016,63.448309637000094],[19.311208530000044,63.46043528899999],[19.29322350400011,63.46653880400008],[19.280772332000083,63.45941803600011],[19.27613366000014,63.44269440300009],[19.276540561000072,63.407619533],[19.275401238000114,63.39801666900002],[19.270681186000104,63.38178131700009],[19.269541863000086,63.37287018400015],[19.269541863000086,63.34247467699999],[19.25928795700014,63.329046942],[19.24545332100007,63.322333075000145],[19.233653191000087,63.32566966399999],[19.22925866000011,63.34247467699999],[19.207530144000117,63.326117255000085],[19.156586134000122,63.319037177000105],[19.133067254000082,63.308294989],[19.139170769000145,63.30560944200011],[19.153493686000047,63.294012762000094],[19.141856316000116,63.28742096600002],[19.12330162900011,63.2641462260001],[19.11198978000004,63.25307851800006],[19.133067254000082,63.25307851800006],[19.11670983200014,63.23663971600017],[19.097178582000083,63.237860419000086],[19.057383660000085,63.260484117000075],[19.039886915000125,63.23895905200013],[19.05640709700012,63.226507880000106],[19.086924675000148,63.22085195500013],[19.11198978000004,63.21954987200002],[19.104177280000044,63.207831122000144],[19.09278405000009,63.20661041900003],[19.080088738000114,63.20750560100011],[19.06788170700014,63.202134507000046],[19.061289910000085,63.1920433610001],[19.058604363000086,63.183905341000084],[19.05274498800014,63.178859768000144],[19.03679446700005,63.17792389500006],[19.032481316000144,63.182033596],[19.004405144000145,63.19961172100015],[18.99903405000009,63.202134507000046],[18.99097741000014,63.208441473],[18.97087649800011,63.218329169000114],[18.961761915000096,63.22577545799999],[18.96656334700009,63.23891836100014],[18.955088738000143,63.24583567900005],[18.937510613000114,63.250555731000155],[18.923838738000086,63.25678131700012],[18.906748894000145,63.267075914000124],[18.885996941000144,63.27252838700015],[18.872894727000073,63.26919179900012],[18.87916100400011,63.25307851800006],[18.866058790000068,63.249904690000015],[18.810313347000147,63.260484117000075],[18.76905358200011,63.26215241100008],[18.751149936000047,63.259466864],[18.735199415000125,63.25307851800006],[18.75562584700012,63.24274323100015],[18.913340691000116,63.21206289300007],[18.8943791020001,63.19782135600014],[18.862640821000042,63.1920433610001],[18.796641472000115,63.19159577],[18.80111738400009,63.18170807500008],[18.80347741000014,63.17792389500006],[18.78728274800008,63.168036200000145],[18.773122592000078,63.16876862200009],[18.7604272800001,63.17755768400015],[18.75562584700012,63.19159577],[18.75294030000012,63.20766836100007],[18.774424675000148,63.21185944200003],[18.823903842000107,63.21206289300007],[18.823903842000107,63.21954987200002],[18.72901451900009,63.23200104400014],[18.700450066000084,63.22577545799999],[18.714121941000116,63.21922435100011],[18.719899936000076,63.21100495000012],[18.722504102000073,63.20148346600011],[18.727793816000144,63.19159577],[18.75017337300008,63.16608307500012],[18.75562584700012,63.157456773000106],[18.611338738000114,63.17890045800014],[18.564463738000143,63.17792389500006],[18.564463738000143,63.171128648000135],[18.58562259200005,63.17072174700004],[18.608653191000112,63.165350653000175],[18.629161004000082,63.156724351000086],[18.643077019000145,63.14691803600014],[18.651540561000104,63.135891018000095],[18.657074415000125,63.12372467700012],[18.654633009000094,63.113714911000116],[18.639659050000148,63.10968659100015],[18.618907097000147,63.11375560100011],[18.598887566000087,63.121242580000064],[18.57862389400009,63.12449778900013],[18.556976759000094,63.11652252800017],[18.549652540000096,63.107082424000154],[18.545420769000145,63.095770575000174],[18.53842207100007,63.08466217700005],[18.522959832000137,63.07550690300014],[18.556976759000094,63.07550690300014],[18.51270592500012,63.05744049700014],[18.49903405000009,63.05508047100009],[18.492930535000113,63.04962799700014],[18.486582879000082,63.02570221600008],[18.478200717000107,63.02024974200005],[18.467946811000104,63.02366771000005],[18.434092644000117,63.04755280200014],[18.41928144600007,63.05312734600016],[18.40381920700014,63.055650132000046],[18.38786868600002,63.054185289000095],[18.37208092500009,63.04755280200014],[18.404795769000117,63.03546784100003],[18.42188561300014,63.02692291900012],[18.434092644000117,63.01410553600008],[18.368337436000047,63.02024974200005],[18.36548912900011,63.02240631700006],[18.356618686000047,63.0330264340001],[18.351573113000114,63.03705475500006],[18.34310957100007,63.03953685099999],[18.34066816500004,63.036078192],[18.340342644000117,63.03058502800015],[18.337901238000086,63.02708567900007],[18.339121941000116,63.02558014500011],[18.324229363000143,63.01410553600008],[18.29981530000009,63.00665924700009],[18.24170983200014,62.99982330900017],[18.26644941500012,62.99030182500009],[18.52442467500012,62.99188873900012],[18.551117384000037,62.985907294000114],[18.570648634000122,62.97308991100005],[18.576670769000117,62.958400783000066],[18.568044467000018,62.95343659100002],[18.55404707100007,62.958400783000066],[18.54395592500009,62.97308991100005],[18.536631707000083,62.97308991100005],[18.528086785000085,62.95380280200014],[18.504893425000148,62.94920482000002],[18.476898634000122,62.953111069999984],[18.41814212300011,62.96930573100006],[18.403330925000148,62.96482982],[18.392588738000114,62.94521719000012],[18.439626498000052,62.92816803600006],[18.454600457000083,62.924750067000055],[18.491058790000125,62.93121979400014],[18.510996941000116,62.93244049700017],[18.522959832000137,62.924750067000055],[18.512543165000068,62.904120184000035],[18.472341342000078,62.90167877800008],[18.400075717000107,62.91107819200011],[18.41504967500012,62.89716217700013],[18.463389519000145,62.887600002000156],[18.474457227000073,62.87689850500012],[18.4713647800001,62.86774323100015],[18.46257571700005,62.86115143400017],[18.451345248000052,62.857123114],[18.426931186000076,62.85407135600012],[18.4178166020001,62.85016510600011],[18.4100041020001,62.84540436400012],[18.400075717000107,62.84153880400011],[18.3776147800001,62.83673737200004],[18.366384311000104,62.836249091000056],[18.34717858200014,62.839667059000064],[18.331065300000148,62.840073960000055],[18.324229363000143,62.84153880400011],[18.3209741550001,62.84467194200008],[18.31885826900009,62.84931061400012],[18.316905144000142,62.85578034100003],[18.284434441000144,62.876288153000175],[18.268321160000085,62.88349030200003],[18.248545769000145,62.88373444200014],[18.25098717500009,62.879787502000156],[18.25538170700008,62.869452216000134],[18.207041863000086,62.869452216000134],[18.207041863000086,62.86322663],[18.218028191000116,62.85932038],[18.22022545700011,62.85228099200013],[18.215668165000068,62.84389883000007],[18.207041863000086,62.83535390800012],[18.229258660000113,62.829535223000086],[18.26221764400009,62.84829336100013],[18.28272545700014,62.84153880400011],[18.25879967500009,62.81061432500018],[18.243662957000083,62.79901764500014],[18.224375847000147,62.794378973000114],[18.21509850400011,62.790106512000115],[18.205577019000113,62.7819684920001],[18.195078972000147,62.77741120000014],[18.183360222000147,62.783514716000134],[18.182871941000144,62.78998444200014],[18.18816165500004,62.79775625200012],[18.19556725400011,62.804429429000024],[18.200856967000107,62.80801015800007],[18.186289910000085,62.811672268000116],[18.176931186000047,62.804103908000066],[18.169118686000047,62.791449286],[18.159190300000148,62.78009674700003],[18.140472852000073,62.771918036000116],[18.120371941000116,62.77057526200003],[18.077321811000104,62.77387116100009],[18.082041863000086,62.78327057500009],[18.084727410000085,62.78693268400014],[18.068369988000143,62.79389069200015],[18.048838738000086,62.7958031270001],[18.008962436000104,62.794378973000114],[18.034027540000096,62.81146881700006],[18.121429884000094,62.80581289300009],[18.14616946700005,62.82225169499999],[18.104177280000073,62.83095937700015],[18.084320509000065,62.83734772300009],[18.07105553500014,62.84894440300008],[18.073496941000087,62.851060289000095],[18.07447350400014,62.852199611000124],[18.07520592500009,62.85333893400017],[18.077321811000104,62.85578034100003],[18.054698113000114,62.85285065300009],[18.020274285000085,62.8412539730001],[17.988617384000122,62.82591380400013],[17.97486412900011,62.81146881700006],[17.967784050000144,62.80780670800011],[17.95167076900006,62.81098053600008],[17.935313347000147,62.817043361000074],[17.9264429050001,62.82225169499999],[17.92432701900009,62.83112213700012],[17.9264429050001,62.866359768000066],[17.924489780000073,62.86933014500009],[17.915049675000148,62.878322658000094],[17.912771030000073,62.88373444200014],[17.914724155000016,62.88873932500009],[17.924164259000122,62.89728424700011],[17.9264429050001,62.90053945500015],[17.921397332000083,62.915716864000146],[17.909353061000076,62.91575755400014],[17.893728061000076,62.91083405200008],[17.878672722000147,62.91107819200011],[17.87208092500009,62.91844310100011],[17.854502800000144,62.955145575000024],[17.845713738000086,62.96360911700007],[17.835459832000055,62.97028229400002],[17.823496941000116,62.97540924700003],[17.8097436860001,62.97931549700002],[17.816905144000145,62.983832098000086],[17.830821160000138,62.99982330900017],[17.808604363000086,62.99835846600003],[17.77719160200013,62.983343817],[17.761973504000082,62.97931549700002],[17.743500196000127,62.983587958000136],[17.726898634000094,62.99241771],[17.7107853520001,62.99823639500014],[17.693614129000082,62.99359772300012],[17.817556186000104,62.94232819200009],[17.847666863000143,62.92129140800016],[17.865896030000016,62.90192291900005],[17.88965905000012,62.87018463700018],[17.901866082000083,62.83930084800013],[17.885508660000085,62.82225169499999],[17.885508660000085,62.81484609600009],[17.9290470710001,62.80052317900011],[17.940684441000116,62.794378973000114],[17.95289147200009,62.78595612200017],[17.95679772200009,62.78253815300015],[17.9549259770001,62.763332424],[17.96241295700008,62.75214264500001],[17.995371941000144,62.727728583000065],[18.00269616000014,62.70897044499999],[18.000173373000052,62.69782135600017],[17.9908960300001,62.680812893],[17.991953972000147,62.67454661700007],[17.997325066000116,62.66486237200009],[17.993418816000116,62.65989817900005],[17.984385613000086,62.65790436400003],[17.97486412900011,62.65717194200008],[17.967784050000144,62.65912506700012],[17.94483483200014,62.668646552000105],[17.933604363000143,62.67084381700012],[17.87183678500014,62.67084381700012],[17.891612175000148,62.65802643400017],[18.043223504000082,62.62616608300006],[18.044118686000076,62.615179755],[18.04769941500004,62.606634833000086],[18.05420983200014,62.60028717700015],[18.06421959700012,62.59577057500009],[18.04249108200014,62.59210846600005],[17.96827233200011,62.56049225500006],[17.962168816000144,62.563625393000116],[17.96070397200009,62.575995184000156],[17.952810092000107,62.60569896],[17.953379754000082,62.611761786],[17.950368686000076,62.61481354400008],[17.937022332000137,62.615627346000096],[17.93067467500012,62.612372137000065],[17.92579186300014,62.6047223980001],[17.914886915000096,62.5732282570001],[17.913340691000144,62.564927476000136],[17.912771030000073,62.55756256700012],[17.909353061000076,62.549383856000034],[17.900645379000082,62.54572174700017],[17.878672722000147,62.541083075000145],[17.892832879000082,62.52749258000009],[17.861664259000094,62.500799872000165],[17.8431095710001,62.48969147300012],[17.823496941000116,62.48582591400013],[17.812510613000086,62.48944733299999],[17.795420769000117,62.502834377000106],[17.78614342500009,62.50576406500013],[17.73462975400011,62.50576406500013],[17.693044467000107,62.49774811400009],[17.671234571000067,62.48944733299999],[17.658946160000113,62.47842031500016],[17.65967858200014,62.461371161],[17.67603600400014,62.455308335],[17.69605553500011,62.450588283000094],[17.707367384000094,62.437445380000106],[17.576345248000024,62.440334377000156],[17.561778191000087,62.44375234600007],[17.549978061000047,62.448309637000115],[17.53150475400011,62.462713934000185],[17.52613366000014,62.46478913],[17.48145592500009,62.50576406500013],[17.437998894000142,62.536769924000126],[17.426768425000144,62.541083075000145],[17.40609785200013,62.53558991100011],[17.39551842500009,62.51129791900006],[17.378672722000086,62.50576406500013],[17.358571811000047,62.50397370000004],[17.341481967000078,62.49811432500008],[17.33082116000014,62.487738348000086],[17.330577019000117,62.472235419000164],[17.375010613000114,62.437445380000106],[17.377452019000145,62.43390534100015],[17.379242384000037,62.42576732000013],[17.379730665000125,62.416815497000115],[17.37842858200014,62.410793361000096],[17.370941602000073,62.40623607000005],[17.359385613000143,62.40395742400007],[17.3470158210001,62.40330638200014],[17.33741295700011,62.40395742400007],[17.348887566000055,62.398016669000135],[17.360524936000072,62.389593817],[17.366465691000087,62.37889232],[17.36117597700013,62.36611562700013],[17.3600366550001,62.35565827000006],[17.368011915000125,62.343085028000154],[17.38062584700012,62.332668361000074],[17.39275149800011,62.3282738300001],[17.42400149800008,62.331732489],[17.437836134000094,62.33026764500011],[17.45411217500012,62.32143789300006],[17.46192467500012,62.312567450000024],[17.468760613000114,62.30194733299999],[17.476817254000053,62.29230377800011],[17.488291863000114,62.286607164000046],[17.488291863000114,62.28046295800005],[17.478851759000094,62.28074778900002],[17.472666863000114,62.27912018400015],[17.460215691000116,62.27301666900008],[17.546560092000107,62.24909088700012],[17.566661004000082,62.2538923200001],[17.59937584700009,62.249579169000114],[17.632090691000116,62.240668036000066],[17.65267988400006,62.23200104400017],[17.569509311000104,62.2047386740001],[17.54444420700011,62.20160553600003],[17.54175866000014,62.20636627800011],[17.569509311000104,62.23200104400017],[17.55298912900014,62.23725006700006],[17.534922722000115,62.235012111000074],[17.519053582000083,62.227932033],[17.508636915000096,62.21841054900004],[17.504161004000135,62.20368073100003],[17.50538170700014,62.18744538],[17.50806725400014,62.173081773000106],[17.508636915000096,62.16376373900005],[17.501638217000107,62.15062083500011],[17.498545769000117,62.14756907800002],[17.481618686000047,62.130438544000164],[17.4744572270001,62.11660390800007],[17.47242272200009,62.09682851800015],[17.473155144000117,62.084662177000084],[17.467621290000096,62.07636139500001],[17.447276238000086,62.06818268400017],[17.469004754000082,62.06216054900007],[17.459239129000135,62.048651434000085],[17.42611738400009,62.026556708000115],[17.437836134000094,62.02155182500017],[17.45264733200014,62.012274481000034],[17.46045983200014,62.0033226580001],[17.45069420700011,61.999253648000135],[17.40284264400009,61.99559153899998],[17.392100457000083,61.992417710000105],[17.386485222000147,61.98208242400001],[17.388682488000143,61.97085195500002],[17.385996941000087,61.96198151200015],[17.364593946000127,61.95831940300011],[17.354746941000116,61.95530833500011],[17.348155144000142,61.94757721600008],[17.344574415000068,61.93667226800012],[17.344248894000145,61.92413971600003],[17.348155144000142,61.91156647300012],[17.36182701900009,61.893947658],[17.364593946000127,61.88629791900017],[17.36150149800005,61.87970612200011],[17.34734134200002,61.874497789000095],[17.344248894000145,61.869574286000145],[17.34351647200012,61.87128327000015],[17.34262129000012,61.86375560099999],[17.34262129000012,61.855658270000056],[17.344248894000145,61.85586172100012],[17.346934441000116,61.8551292990001],[17.351817254000082,61.85252513199999],[17.35377037900014,61.847316799],[17.347666863000143,61.83852773600013],[17.34262129000012,61.833929755],[17.33863366000014,61.82900625200013],[17.33741295700011,61.82367584800006],[17.34083092500012,61.81806061400006],[17.353688998000052,61.814032294000114],[17.405609571000127,61.821112372000144],[17.400726759000065,61.81159088700015],[17.392914259000094,61.805243231000034],[17.38306725400014,61.80170319200006],[17.371592644000113,61.80060455900012],[17.371592644000113,61.79315827000011],[17.38835696700005,61.78831614800004],[17.390635613000114,61.77708567900005],[17.387054884000122,61.762152411000024],[17.385915561000104,61.74603913000014],[17.39112389400009,61.727728583000086],[17.399180535000113,61.72235748900011],[17.448252800000063,61.72850169500001],[17.46558678500014,61.73354726800012],[17.4830835300001,61.73456452],[17.501963738000143,61.72553131700008],[17.514170769000117,61.713812567],[17.520274285000113,61.70237864800004],[17.520030144000145,61.69122955900012],[17.512054884000094,61.68024323100015],[17.50562584700009,61.66705963700012],[17.502452019000117,61.649847723],[17.49634850400014,61.63507721600002],[17.48145592500009,61.62872955900018],[17.461599155000073,61.62962474199999],[17.446136915000068,61.63287995000003],[17.432871941000116,61.639390367000104],[17.419932488000114,61.649847723],[17.38331139400009,61.692694403000175],[17.362315300000148,61.709133205000064],[17.330577019000117,61.71808502800011],[17.33228600400011,61.70502350500012],[17.33741295700011,61.695135809000114],[17.3509220710001,61.67715078300008],[17.313161655000044,61.68195221600017],[17.29981530000012,61.6899274760001],[17.303233269000117,61.7050641950001],[17.26661217500012,61.72162506700009],[17.224294467000107,61.72724030199999],[17.13803144600007,61.72553131700008],[17.150401238000114,61.71430084800009],[17.165700717000078,61.710394598000086],[17.199961785000138,61.711249091000084],[17.268565300000144,61.690822658000016],[17.259776238000086,61.67413971600017],[17.22868899800008,61.66307200700013],[17.19190514400009,61.657416083000136],[17.166188998000052,61.656683661000116],[17.166188998000052,61.649847723],[17.173838738000086,61.648871161000116],[17.193369988000143,61.64232005400014],[17.164805535000085,61.636419989],[17.11890709700009,61.64581940300003],[17.09717858200011,61.63613515800007],[17.225596550000088,61.62201569200015],[17.24789472700013,61.608832098000086],[17.225922071000127,61.60285065300017],[17.20850670700014,61.60455963700017],[17.172373894000117,61.615668036000024],[17.150726759000122,61.61790599199998],[17.08350670700008,61.615668036000024],[17.08350670700008,61.608832098000086],[17.119151238000143,61.609686591000084],[17.13493899800008,61.60594310100005],[17.145681186000104,61.59520091400004],[17.1028751960001,61.58502838700009],[17.056325717000075,61.58218008000015],[17.082367384000065,61.57127513199999],[17.186534050000148,61.56102122600005],[17.186534050000148,61.55418528900004],[17.09034264400009,61.556057033000016],[17.080088738000086,61.550482489],[17.0890405610001,61.54535553600008],[17.111582879000082,61.54144928600009],[17.130137566000087,61.532700914000095],[17.155528191000116,61.52952708500013],[17.166188998000052,61.526922919000135],[17.166188998000052,61.519476630000085],[17.124522332000083,61.519476630000085],[17.124522332000083,61.513251044000114],[17.163747592000107,61.50405508000013],[17.172373894000117,61.49896881700012],[17.177012566000144,61.48688385600012],[17.171560092000107,61.480414130000106],[17.161306186000076,61.47459544500005],[17.15186608200005,61.4648298200001],[17.157481316000144,61.45628489799999],[17.161468946000127,61.4479841170001],[17.169281446000127,61.441107489],[17.179698113000114,61.43695709800006],[17.192556186000047,61.436997789000074],[17.19874108200011,61.442084052000084],[17.20411217500006,61.448228257000046],[17.2135522800001,61.45115794499999],[17.220388217000107,61.4479841170001],[17.221446160000138,61.44098541900002],[17.217051629000082,61.43390534100017],[17.207041863000082,61.430731512000094],[17.19548587300008,61.42987702],[17.18458092500009,61.42731354400008],[17.174815300000148,61.42283763200014],[17.166188998000052,61.416408596000124],[17.15870201900009,61.42413971600003],[17.14722741000014,61.43353913000005],[17.1365666020001,61.43707916900005],[17.127614780000073,61.41828034100008],[17.10840905000012,61.40936920800005],[17.104014519000145,61.39935944200006],[17.109141472000147,61.393622137000094],[17.13803144600007,61.36928945500012],[17.167002800000148,61.35578034100015],[17.20020592500009,61.3481306010001],[17.2018335300001,61.33710358300008],[17.276052280000044,61.31403229400011],[17.246104363000143,61.310288804],[17.213715040000068,61.31342194200006],[17.15186608200005,61.32831452],[17.166270379000135,61.308417059000114],[17.19312584700012,61.299261786000116],[17.22339928500011,61.29437897300006],[17.24789472700013,61.287298895],[17.205088738000143,61.288519598000114],[17.18726647200006,61.291205145],[17.135101759000033,61.31610748900012],[17.118418816000116,61.31964752800012],[17.09717858200011,61.320868231000034],[17.09717858200011,61.31403229400011],[17.12134850400011,61.30817291900017],[17.151540561000047,61.29389069200009],[17.180349155000073,61.27602773600002],[17.20020592500009,61.259426174000154],[17.212738477000073,61.23529694200011],[17.1971134770001,61.22630442900011],[17.170909050000148,61.22003815300014],[17.15186608200005,61.20416901200003],[17.186534050000148,61.19110748900006],[17.181651238000086,61.16596100500008],[17.174327019000145,61.157660223],[17.15870201900009,61.14956289300006],[17.178965691000087,61.135972398000106],[17.182790561000104,61.12323639500006],[17.171397332000137,61.11505768400015],[17.145681186000104,61.114732164000046],[17.156748894000117,61.111761786000116],[17.183848504000053,61.11155833500008],[17.193369988000143,61.10858795800005],[17.198090040000068,61.102687893000116],[17.199880405000044,61.095892645],[17.19752037900011,61.09039948100015],[17.189952019000142,61.088080145],[17.181162957000083,61.08368561400012],[17.173838738000086,61.07290273600001],[17.168711785000056,61.059312242000075],[17.166188998000052,61.04653554900004],[17.169688347000147,61.042466539000074],[17.177256707000083,61.037176825000095],[17.186534050000148,61.0328636740001],[17.16553795700011,61.02228424700002],[17.15870201900009,61.019842841000084],[17.21143639400009,61.02387116100005],[17.23585045700011,61.02228424700002],[17.24789472700013,61.012355861000124],[17.18824303500014,61.00458405200011],[17.16773522200009,60.992173570000105],[17.15870201900009,60.964544989],[17.157481316000144,60.9523786480001],[17.158213738000086,60.948431708000115],[17.179698113000114,60.9372419290001],[17.19743899800011,60.93622467700005],[17.205088738000143,60.933905341000084],[17.20240319100006,60.92153554900015],[17.205088738000143,60.91469961100013],[17.21387780000012,60.90253327000014],[17.216807488000143,60.89935944200009],[17.232920769000117,60.90460846600017],[17.24170983200008,60.90253327000014],[17.24626712300011,60.89801666900008],[17.28223717500009,60.84100983300008],[17.274099155000073,60.83974844000006],[17.26514733200014,60.83698151200012],[17.258067254000082,60.83274974200002],[17.255544467000078,60.827378648000135],[17.25928795700011,60.81565989800005],[17.26661217500012,60.815171617000075],[17.27507571700005,60.81720612200009],[17.28223717500009,60.81313711100013],[17.284841342000078,60.79999420800008],[17.28223717500009,60.78974030200005],[17.2830509770001,60.78115469000012],[17.29639733200011,60.77277252800017],[17.315440300000116,60.769720770000085],[17.33082116000014,60.77033112200005],[17.33570397200012,60.766913153000026],[17.323741082000083,60.752346096],[17.31153405000012,60.74526601800012],[17.2791447270001,60.736273505000106],[17.25220787900014,60.720038153000175],[17.21469160200013,60.70624420800008],[17.191172722000147,60.70172760600011],[17.186289910000085,60.697088934000085],[17.186696811000104,60.692368882],[17.193369988000143,60.69017161699999],[17.20525149800011,60.69135163000011],[17.227549675000148,60.69647858300012],[17.23804772200012,60.697699286000145],[17.25798587300011,60.694403387000115],[17.278005405000073,60.67987702000006],[17.310231967000107,60.67304108300005],[17.364593946000127,60.649237372000144],[17.323741082000083,60.63564687700002],[17.323741082000083,60.62872955900012],[17.33952884200005,60.622992255000135],[17.359873894000117,60.621486721000096],[17.37663821700005,60.62388743700005],[17.380218946000127,60.624416408000016],[17.395762566000116,60.6322289080001],[17.413828972000147,60.637925522999986],[17.547129754000082,60.64915599199999],[17.57496178500014,60.647894598000065],[17.594086134000122,60.639349677000055],[17.608409050000116,60.63043854400011],[17.64551842500012,60.61859772300014],[17.658946160000113,60.60830312700012],[17.64673912900014,60.59955475500006],[17.61109459700009,60.58852773600002],[17.603770379000082,60.58413320500012],[17.60694420700014,60.569525458000115],[17.621429884000094,60.54706452],[17.624766472000115,60.536322333],[17.63819420700011,60.515448309000035],[17.670583530000012,60.50409577000015],[17.741465691000116,60.49843984600006],[17.741465691000116,60.50584544500005],[17.727061394000145,60.534735419000135],[17.762217644000117,60.563299872000144],[17.81609134200005,60.58527252800015],[17.9186304050001,60.60016510600011],[17.94874108200014,60.59918854400014],[17.97486412900011,60.587836005000085],[17.995371941000144,60.55304596600003],[17.9935001960001,60.54092031500012],[17.987640821000127,60.53074778899998],[17.97868899800011,60.52334219],[17.9674585300001,60.518947658000016],[17.9674585300001,60.512111721],[17.993418816000116,60.510931708000086],[18.01832116000014,60.50226471600017],[18.06421959700012,60.477972723000015],[18.098399285000113,60.464911200000024],[18.102549675000144,60.45892975500002],[18.108734571000127,60.442531643],[18.111989780000073,60.436957098000086],[18.143321160000113,60.413560289000095],[18.17872155000012,60.39891185099999],[18.26221764400009,60.38239166900003],[18.245371941000087,60.37689850499999],[18.219899936000104,60.36367422100015],[18.207041863000086,60.355047919000135],[18.207041863000086,60.347601630000085],[18.22120201900009,60.33905670800014],[18.227875196000042,60.33380768400014],[18.234873894000117,60.32709381700012],[18.250661655000073,60.334051825000124],[18.277517123000052,60.34935130400007],[18.296397332000083,60.355047919000135],[18.31348717500012,60.3569196640001],[18.326345248000052,60.355536200000024],[18.358409050000148,60.347601630000085],[18.427989129000135,60.348781643],[18.447764519000145,60.341376044000114],[18.446625196000127,60.3383649760001],[18.445811394000117,60.33022695500009],[18.445974155000073,60.320705471000096],[18.447764519000145,60.31346263200008],[18.451996290000096,60.31024811400011],[18.474457227000073,60.29979075700014],[18.474457227000073,60.2929548200001],[18.462087436000047,60.291245835000105],[18.449880405000073,60.29242584800012],[18.437998894000117,60.292059637000115],[18.42676842500012,60.28620026200018],[18.56544030000012,60.259344794000086],[18.6048283210001,60.238348700000145],[18.563731316000112,60.22760651200004],[18.40056399800008,60.259588934000035],[18.369151238000143,60.278998114000146],[18.316905144000142,60.320949611000124],[18.330902540000096,60.285711981000084],[18.369883660000085,60.258612372000144],[18.41504967500012,60.2350934920001],[18.447764519000145,60.21108633000016],[18.43067467500012,60.21035390800014],[18.417246941000116,60.21576569200009],[18.392588738000114,60.232163804],[18.399668816000087,60.207831122000115],[18.419932488000114,60.19350820500013],[18.46827233200011,60.17633698100009],[18.492930535000113,60.160793361000096],[18.50611412900014,60.155747789000074],[18.522959832000137,60.155829169000135],[18.53492272200009,60.15888092700013],[18.544118686000076,60.16425202],[18.548024936000076,60.17230866100014],[18.54851321700005,60.174139716000106],[18.548106316000144,60.14386627800011],[18.550140821000067,60.12909577000012],[18.554535352000045,60.12140534100002],[18.573415561000076,60.08820221600011],[18.578135613000086,60.073919989],[18.584320509000065,60.073919989],[18.589854363000086,60.088853257000046],[18.590830925000148,60.108303127000156],[18.587168816000084,60.12750885600009],[18.578135613000086,60.14215729400011],[18.59937584700009,60.148260809000085],[18.625743035000085,60.15082428600003],[18.651377800000148,60.148260809000085],[18.68572024800008,60.13080475500014],[18.720713738000086,60.12604401200004],[18.735199415000125,60.114813544000135],[18.74000084700012,60.098618882],[18.73829186300011,60.06411367400006],[18.745127800000148,60.04970937700001],[18.78882897200012,60.01756419500004],[18.796641472000115,60.00495026200015],[18.78150475400011,60.03082916900017],[18.76254316500012,60.05597565300014],[18.753103061000104,60.08218008000009],[18.765879754000135,60.11107005400011],[18.80347741000014,60.12164948100015],[18.816905144000117,60.117580471],[18.82048587300011,60.11367422100001],[18.817637566000144,60.09780508000007],[18.819590691000116,60.08100006700006],[18.824473504000082,60.068304755000035],[18.868174675000144,59.993719794000164],[18.903086785000085,59.94721100500011],[18.922129754000082,59.9343122420001],[18.965830925000148,59.926825262000065],[18.988780144000145,59.91933828300007],[19.005544467000078,59.91181061400012],[19.009532097000147,59.909409897999986],[19.01002037900014,59.906927802000055],[19.008962436000076,59.898749091000134],[19.009532097000147,59.89630768400012],[19.02442467500012,59.88450755400013],[19.032074415000125,59.88149648600013],[19.043630405000073,59.882066148000106],[19.041758660000085,59.8868675800001],[19.03882897200009,59.898016669000114],[19.03679446700005,59.90253327000006],[19.054535352000126,59.900702216000084],[19.0716251960001,59.89630768400012],[19.068207227000073,59.881903387000044],[19.06666100400014,59.84194570500009],[19.06788170700014,59.83368561400001],[19.03467858200014,59.8350283870001],[19.021250847000143,59.84003327000012],[18.94906660200013,59.899969794000135],[18.916758660000113,59.92129140800013],[18.885996941000144,59.92987702000015],[18.896332227000045,59.91705963700009],[18.93067467500009,59.885484117000104],[18.93531334700012,59.86847565300014],[18.924082879000135,59.852280992000104],[18.861582879000082,59.80304596600009],[18.843435092000107,59.79555898600004],[18.820811394000117,59.792669989],[18.777028842000078,59.793850002000035],[18.754567905000073,59.79116445500013],[18.738617384000065,59.782782294000086],[18.73389733200014,59.768784898000106],[18.751963738000143,59.76886627800009],[18.789805535000113,59.779038804000045],[19.042002800000148,59.784979559000185],[19.085215691000144,59.77220286700013],[19.07447350400011,59.749701239000146],[19.057790561000076,59.73615143400018],[19.035980665000125,59.72850169500005],[18.97527103000007,59.71906159100002],[18.956797722000147,59.71922435099999],[18.941254102000073,59.723822333000115],[18.931651238000086,59.73139069200008],[18.920909050000148,59.746405341000106],[18.913340691000116,59.75177643400014],[18.90137780000009,59.73468659100011],[18.879893425000148,59.72158437700013],[18.855479363000114,59.71308014500003],[18.781260613000086,59.70156484600007],[18.757823113000114,59.691066799],[18.75562584700012,59.67666250200012],[18.71998131600014,59.67572663000006],[18.714121941000116,59.67324453300013],[18.712575717000078,59.66437409100008],[18.70850670700011,59.65745677299999],[18.701996290000125,59.65257396000011],[18.693614129000082,59.649359442000055],[18.74203535200007,59.649359442000055],[18.735606316000144,59.64150625200007],[18.723806186000076,59.632269598000036],[18.710459832000083,59.62457916900009],[18.700450066000084,59.62140534100003],[18.69019616000014,59.62425364800008],[18.681976759000065,59.630072333000115],[18.672699415000096,59.635199286000145],[18.66000410200013,59.63568756700011],[18.679698113000086,59.616766669000114],[18.68653405000009,59.60578034100014],[18.6770939460001,59.60089752800017],[18.66431725400014,59.59772370000011],[18.639984571000067,59.58364492400007],[18.59734134200005,59.574042059000085],[18.54070071700005,59.54584381700012],[18.484060092000078,59.53440989800007],[18.457855665000125,59.521958726000044],[18.41309655000009,59.49103424700009],[18.379649285000113,59.47638580900009],[18.344981316000144,59.47308991100006],[18.26905358200011,59.47744375200013],[18.26905358200011,59.47060781500012],[18.303233269000117,59.45697663000009],[18.28931725400014,59.45058828300016],[18.26221764400009,59.45246002800003],[18.248545769000145,59.45010000200006],[18.266774936000047,59.444769598],[18.28272545700014,59.43642812700012],[18.276866082000108,59.42255280200005],[18.293142123000052,59.4140485700001],[18.31788170700011,59.409735419000114],[18.337901238000086,59.40851471600008],[18.307302280000073,59.396795966000106],[18.247569207000083,59.3976911480001],[18.188487175000148,59.40741608300005],[18.159190300000148,59.422186591000035],[18.17066491000008,59.42609284100003],[18.182871941000144,59.42804596600016],[18.195323113000086,59.42715078300008],[18.207041863000086,59.422186591000035],[18.203868035000113,59.43060944200009],[18.19947350400011,59.450873114],[18.194021030000073,59.45697663000009],[18.18140709700009,59.458197333],[18.159190300000148,59.447007554],[18.14551842500012,59.44383372600011],[18.13770592500012,59.4460309920001],[18.126231316000087,59.45526764500009],[18.118825717000078,59.45697663000009],[18.113291863000057,59.45465729400002],[18.10124759200005,59.44578685100008],[18.094981316000116,59.44383372600011],[18.084483269000117,59.438950914000046],[18.084483269000117,59.42780182500003],[18.090586785000113,59.41592031500009],[18.098399285000113,59.40851471600008],[18.065440300000148,59.39716217700011],[18.053965691000087,59.39545319200011],[18.04249108200014,59.39736562700006],[18.020681186000104,59.40607330900015],[18.008962436000104,59.40851471600008],[18.14616946700005,59.340236721],[18.110524936000104,59.33600495000017],[18.0950626960001,59.33840566600012],[18.095144076000082,59.32680898600001],[18.172862175000088,59.32656484600006],[18.19662519600007,59.334173895],[18.207041863000086,59.33266836100013],[18.214366082000083,59.31976959800012],[18.220550977000126,59.31976959800012],[18.254730665000125,59.36277903899999],[18.318125847000147,59.37592194200015],[18.38965905000012,59.369452216000056],[18.447764519000145,59.353908596000124],[18.44214928500014,59.350734768000066],[18.43213951900009,59.343329169000086],[18.42676842500012,59.340236721],[18.45679772200006,59.33535390800012],[18.4700626960001,59.337103583000115],[18.48194420700014,59.34772370000014],[18.4549259770001,59.38157786700013],[18.447764519000145,59.39545319200011],[18.495616082000083,59.39545319200011],[18.455821160000085,59.409654039000124],[18.437510613000143,59.41925690300011],[18.42676842500012,59.43642812700012],[18.48462975400014,59.43423086100013],[18.510752800000088,59.42816803600014],[18.536631707000083,59.415961005000085],[18.538259311000104,59.41250234600006],[18.542165561000104,59.399237372000144],[18.54395592500009,59.39545319200011],[18.61231530000009,59.37494538000006],[18.600840691000144,59.36249420800014],[18.583669467000107,59.362453518000144],[18.56348717500009,59.36688873900012],[18.54395592500009,59.36815013200014],[18.56657962300008,59.3613141950001],[18.601084832000083,59.355780341000106],[18.63257897200009,59.34690989800005],[18.646494988000086,59.330267645],[18.63892662900011,59.31509023600002],[18.619802280000044,59.308294989],[18.567637566000116,59.306708075000145],[18.551605665000125,59.304388739],[18.535655144000117,59.300116278000175],[18.51929772200012,59.298285223],[18.502452019000117,59.30296458500011],[18.49000084700009,59.30784739799999],[18.46119225400014,59.31244538000011],[18.447764519000145,59.312933661000116],[18.364431186000047,59.30658600499999],[18.337901238000086,59.312933661000116],[18.339854363000143,59.31757233300014],[18.342784050000148,59.32949453300007],[18.34473717500009,59.33405182500003],[18.3248804050001,59.33441803600014],[18.30738366000014,59.330226955000015],[18.291270379000082,59.32269928600005],[18.275889519000145,59.312933661000116],[18.288747592000078,59.308294989],[18.300140821000124,59.301336981000084],[18.309580925000148,59.293402411000145],[18.316905144000142,59.285589911000145],[18.316905144000142,59.278753973000114],[18.283050977000073,59.27899811400005],[18.27295983200011,59.274237372000165],[18.279307488000143,59.26170482000007],[18.337657097000147,59.244614976000136],[18.3611759770001,59.24079010600013],[18.388194207000137,59.23029205900003],[18.41228274800008,59.215033270000056],[18.42676842500012,59.19684479400009],[18.33570397200009,59.23590729400014],[18.313731316000087,59.23407623900006],[18.31348717500012,59.22211334800012],[18.329437696000127,59.21466705900015],[18.350596550000144,59.21092357000013],[18.365244988000143,59.20990631700006],[18.372325066000116,59.20351797100012],[18.377696160000085,59.19122955900018],[18.387054884000122,59.18309153900007],[18.406260613000057,59.18939850500003],[18.402842644000145,59.18549225500011],[18.400645379000082,59.18219635600017],[18.397715691000144,59.1791039080001],[18.392588738000114,59.17576732000007],[18.392588738000114,59.16889069200015],[18.418955925000116,59.17511627800012],[18.429698113000143,59.17462799700002],[18.434092644000117,59.165228583],[18.431407097000147,59.15350983300011],[18.424164259000122,59.14394765800004],[18.41431725400011,59.14004140800012],[18.403086785000113,59.145331122000115],[18.3815210300001,59.14777252800003],[18.343760613000114,59.14175039300012],[18.307627800000088,59.13129303600006],[18.29021243600002,59.12055084800012],[18.301442905000044,59.12221914300015],[18.31137129000012,59.12099844000012],[18.31934655000009,59.11644114799999],[18.324229363000143,59.10809967700011],[18.230479363000143,59.08429596600003],[18.200856967000107,59.08075592700005],[18.2142033210001,59.08665599199998],[18.24195397200009,59.095445054000045],[18.25538170700008,59.101263739],[18.24170983200014,59.10809967700011],[18.248383009000094,59.11163971600011],[18.25538170700008,59.11432526200018],[18.25538170700008,59.12055084800012],[18.2389429050001,59.121486721000124],[18.22364342500012,59.11953359600007],[18.20972741000014,59.11408112200002],[18.19743899800008,59.10468170800011],[18.185231967000107,59.09931061400005],[18.15186608200014,59.097357489],[18.138682488000086,59.09381745000003],[18.12989342500012,59.0870628930001],[18.108653191000144,59.063055731000055],[18.096202019000117,59.05833567900014],[18.043223504000082,59.05971914300004],[18.045176629000135,59.054836330000136],[18.048513217000046,59.04319896000014],[18.05054772200009,59.0385602890001],[18.02564537900014,59.045355536000145],[18.013682488000114,59.04490794500005],[18.00269616000014,59.0385602890001],[18.01856530000009,59.022894598000114],[18.003265821000127,59.00600820500013],[17.977386915000125,58.98655833500005],[17.961192254000082,58.96344635600009],[17.962901238000086,58.95172760600012],[17.968597852000045,58.94407786699999],[17.9705509770001,58.93598053600005],[17.961192254000082,58.92251211100007],[17.948252800000148,58.91474030200008],[17.93067467500012,58.91006094000014],[17.912771030000073,58.90985748900001],[17.899668816000116,58.91571686400014],[17.894297722000143,58.903387762000094],[17.89234459700009,58.88979726800012],[17.892832879000082,58.861029364],[17.879893425000088,58.867499091000106],[17.86939537900011,58.87702057500009],[17.865244988000086,58.88882070500007],[17.87183678500014,58.902044989],[17.864512566000144,58.914984442000026],[17.861175977000098,58.919094143000066],[17.851817254000082,58.92479075700014],[17.8444116550001,58.924627997000165],[17.83773847700013,58.922552802000055],[17.830821160000138,58.92251211100007],[17.814707879000082,58.92820872600005],[17.805186394000057,58.93390534100002],[17.78614342500009,58.95355866100008],[17.77361087300008,58.96067942900013],[17.775645379000107,58.94721100500006],[17.787364129000082,58.92552317900008],[17.803477410000056,58.908270575000145],[17.79200280000012,58.89085521],[17.786306186000047,58.884222723000114],[17.779307488000143,58.881537177000055],[17.77442467500009,58.886216539000074],[17.775401238000143,58.896918036],[17.7791447270001,58.90843333500011],[17.782969597000115,58.91571686400014],[17.749278191000116,58.92381419500008],[17.7467554050001,58.9426130230001],[17.751963738000086,58.965073960000105],[17.741465691000116,58.983954169000135],[17.741465691000116,58.99140045800011],[17.75570722700013,59.00633372600007],[17.760752800000148,59.03701406500007],[17.760264519000145,59.06720612200008],[17.75855553500014,59.08075592700005],[17.75611412900011,59.085191148000106],[17.76905358200014,59.10895416900003],[17.768809441000087,59.12055084800012],[17.758148634000065,59.125921942],[17.74463951900009,59.12274811400011],[17.732758009000122,59.11444733300005],[17.727793816000087,59.10468170800011],[17.72632897200012,59.07355377800012],[17.721202019000117,59.058986721000096],[17.710459832000083,59.05280182500012],[17.70134524800011,59.05727773600007],[17.66578209700012,59.08075592700005],[17.66871178500014,59.095445054000045],[17.6888126960001,59.11798737200003],[17.693614129000082,59.131415106000034],[17.689952019000145,59.14280833499999],[17.680918816000116,59.15338776200003],[17.669688347000115,59.1622988950001],[17.658946160000113,59.16889069200015],[17.673106316000144,59.13475169500004],[17.66114342500009,59.119614976000044],[17.647471550000148,59.10805898600013],[17.63111412900014,59.099554755],[17.61109459700009,59.09381745000003],[17.620453321000127,59.07257721600014],[17.61622155000009,59.05117422100009],[17.614512566000087,59.03213125200001],[17.63160241000014,59.018133856000034],[17.621429884000094,59.00238678600008],[17.614268425000148,58.98069896000003],[17.607106967000107,58.965969143],[17.59750410200013,58.97089264500006],[17.58643639400009,58.96499258000013],[17.586273634000122,58.964911200000145],[17.581390821000067,58.96112702000011],[17.576914910000085,58.95669179900016],[17.58472741000008,58.95099518400018],[17.592946811000076,58.94684479400006],[17.601735873000052,58.94424062700013],[17.61109459700009,58.943019924000126],[17.61109459700009,58.936183986000025],[17.601247592000078,58.92780182500014],[17.613780144000145,58.92401764500012],[17.62671959700006,58.91779205900015],[17.617930535000113,58.902044989],[17.5989689460001,58.89411041900014],[17.578135613000114,58.895575262000094],[17.556813998000052,58.900336005],[17.535980665000068,58.902044989],[17.545746290000096,58.889634507000075],[17.55941816500004,58.880357164000124],[17.59066816500012,58.86725495000014],[17.59066816500012,58.861029364],[17.569509311000104,58.861029364],[17.576508009000094,58.85651276200004],[17.58375084700012,58.85358307500003],[17.55567467500012,58.8541527360001],[17.48023522200006,58.88613515800011],[17.447276238000086,58.89520905199999],[17.447276238000086,58.88837311400007],[17.46501712300008,58.88149648600015],[17.469086134000065,58.87042877800003],[17.460215691000116,58.83999258000007],[17.45142662900014,58.823391018],[17.44996178500008,58.81586334800014],[17.45720462300011,58.8126488300001],[17.464366082000137,58.81102122600007],[17.488291863000114,58.79962799700011],[17.459727410000113,58.791449286],[17.33741295700011,58.806463934000035],[17.371592644000113,58.77899811400009],[17.3768009770001,58.76439036700007],[17.357758009000122,58.75116608300011],[17.30518639400009,58.75238678600014],[17.276052280000044,58.74884674700015],[17.276052280000044,58.73069896000006],[17.16236412900014,58.73200104400014],[17.13184655000009,58.737534897999986],[17.12077884200005,58.74408600500006],[17.100840691000087,58.761379299000154],[17.08692467500009,58.76483795800005],[17.075368686000076,58.762681382000046],[17.046153191000116,58.75332265800005],[17.028168165000093,58.75116608300011],[17.041758660000138,58.74701569200009],[17.073415561000104,58.7447777360001],[17.08350670700008,58.737534897999986],[17.08366946700005,58.72870514500012],[17.077403191000084,58.720363674000154],[17.069102410000113,58.71381256700006],[17.062510613000143,58.710191148000106],[17.08301842500009,58.70286692900002],[17.125336134000094,58.70579661700013],[17.145681186000104,58.70278554900004],[17.145681186000104,58.69660065300014],[17.12256920700014,58.68329498900012],[17.107920769000117,58.66966380399999],[17.093028191000087,58.66083405200011],[17.06983483200014,58.66181061400001],[17.010915561000076,58.681830145000056],[16.97494550900009,58.68537018400015],[16.95386803500008,58.66925690300017],[17.00163821700005,58.66787344],[17.019541863000086,58.65985748900006],[17.035817905000016,58.641302802000055],[17.012950066000116,58.64142487200003],[16.924164259000065,58.62543366100011],[16.578949415000064,58.647345282000124],[16.233734571000127,58.66925690300017],[16.233734571000127,58.66181061400001],[16.246429884000094,58.65863678600014],[16.257090691000144,58.65176015800012],[16.26148522200012,58.64305247600005],[16.254893425000144,58.63450755400011],[16.239919467000107,58.63226959800012],[16.197764519000145,58.63739655200006],[16.179209832000137,58.63450755400011],[16.179209832000137,58.62832265800016],[16.191742384000065,58.631903387000115],[16.203949415000125,58.63397858300014],[16.214121941000087,58.631293036000066],[16.2200626960001,58.62083567899999],[16.240244988000143,58.628119208],[16.285411004000082,58.61591217700012],[16.306162957000083,58.62457916900002],[16.320648634000122,58.636175848000114],[16.333994988000143,58.639146226000044],[16.346039259000065,58.63580963700012],[16.367523634000094,58.62173086100007],[16.371592644000145,58.62055084800015],[16.37208092500012,58.61713288000014],[16.371592644000145,58.60374583500013],[16.37647545700011,58.595160223000114],[16.38770592500012,58.591620184000064],[16.4002384770001,58.59235260600017],[16.40919030000012,58.5966250670001],[16.41602623800014,58.609076239],[16.42139733200011,58.62490469000015],[16.4283960300001,58.63939036699999],[16.439789259000065,58.64813873900005],[16.453868035000085,58.645982164000074],[16.504567905000073,58.630926825000145],[16.517832879000082,58.62457916900002],[16.635915561000076,58.62677643400012],[16.657399936000104,58.62230052300004],[16.676036004000082,58.61058177300005],[16.68970787900011,58.60545482000004],[16.730479363000086,58.60228099199999],[16.74830162900014,58.592922268000144],[16.74634850400011,58.59784577],[16.74350019600007,58.609116929],[16.741547071000127,58.613999742000075],[16.77686608200014,58.60765208500014],[16.789317254000082,58.607163804000045],[16.779633009000094,58.58869049700003],[16.785980665000125,58.57273997600011],[16.80420983200011,58.56207916900008],[16.83033287900008,58.55939362200011],[16.821055535000113,58.553534247000144],[16.81666100400014,58.551947333000115],[16.81666100400014,58.546372789000095],[16.84400475400011,58.546372789000095],[16.84400475400011,58.53888580900015],[16.83415774800008,58.529527085000105],[16.84669030000009,58.52435944200003],[16.884938998000052,58.51845937700006],[16.94019616000014,58.49111562700001],[16.91618899800011,58.48346588700017],[16.865896030000044,58.483058986000074],[16.84400475400011,58.477484442000055],[16.85287519600007,58.463080145],[16.83033287900008,58.45209381700012],[16.79639733200011,58.445135809000064],[16.77198326900009,58.44269440300011],[16.765472852000073,58.440659898],[16.75359134200005,58.43146393400012],[16.74830162900014,58.42902252800017],[16.74097741000014,58.42963288000014],[16.727549675000144,58.43488190300011],[16.72046959700009,58.43650950700014],[16.597911004000053,58.44863515800013],[16.539724155000044,58.468166408000016],[16.441416863000082,58.4859886740001],[16.412608269000145,58.477484442000055],[16.44825280000009,58.474798895000085],[16.6595158210001,58.41478099200007],[16.692556186000076,58.412746486000124],[16.705577019000145,58.4077009140001],[16.714854363000086,58.39496491100006],[16.715017123000052,58.385728257],[16.71143639400009,58.37738678600011],[16.7096460300001,58.369126695000126],[16.714854363000086,58.360174872000115],[16.723399285000113,58.36074453300007],[16.738942905000044,58.364935614],[16.752289259000122,58.37006256700011],[16.7545679050001,58.373765367000075],[16.76661217500012,58.36859772300006],[16.771250847000147,58.363104559000035],[16.775075717000078,58.33966705900014],[16.63168379000004,58.353949286000145],[16.64812259200005,58.34324778900013],[16.684743686000072,58.32786692899999],[16.69996178500014,58.31915924700009],[16.69629967500009,58.30857982000005],[16.698496941000087,58.301703192000154],[16.71078535200013,58.29873281500012],[16.721853061000076,58.29987213700016],[16.72706139400009,58.3036156270001],[16.726735873000052,58.31000397300012],[16.72046959700009,58.31915924700009],[16.779307488000082,58.325588283],[16.799164259000094,58.32363515800015],[16.789317254000082,58.30556875200013],[16.783946160000113,58.304144598000065],[16.767344597000143,58.305975653000154],[16.76140384200002,58.30556875200013],[16.76050866000014,58.30243561400006],[16.760020379000135,58.296332098000086],[16.758636915000068,58.289740302000105],[16.7545679050001,58.28510163000009],[16.743011915000096,58.281317450000145],[16.706797722000147,58.27826569200006],[16.706797722000147,58.27138906500015],[16.729502800000116,58.26850006700011],[16.80298912900011,58.24469635600003],[16.793304884000037,58.238836981000084],[16.789317254000082,58.237250067000055],[16.8025822270001,58.231024481000084],[16.813731316000116,58.22040436400005],[16.821299675000148,58.207098700000024],[16.82406660200013,58.19285716400013],[16.822276238000143,58.17963288],[16.817067905000044,58.17719147300015],[16.808360222000147,58.17987702000012],[16.796153191000087,58.182033596000124],[16.788259311000104,58.179266669000164],[16.791514519000145,58.17291901200004],[16.800466342000078,58.166083075000024],[16.809825066000116,58.162095445000055],[16.777191602000073,58.130519924000154],[16.721446160000085,58.14984772300009],[16.661875847000147,58.18553294500013],[16.61744225400014,58.20311107000004],[16.632090691000144,58.185736395000085],[16.671885613000143,58.1652692730001],[16.686289910000113,58.14789459800012],[16.679698113000143,58.14826080900015],[16.666026238000082,58.14740631700014],[16.6595158210001,58.14789459800012],[16.681651238000086,58.128241278000175],[16.716075066000116,58.10415273600015],[16.73609459700009,58.08478424700005],[16.714854363000086,58.079575914000046],[16.717621290000068,58.066799221],[16.7122501960001,58.05951569200009],[16.7010197270001,58.05695221600008],[16.686289910000113,58.058539130000106],[16.707367384000122,58.04987213700012],[16.724864129000082,58.04584381700015],[16.740244988000114,58.03978099200004],[16.7545679050001,58.02496979400009],[16.746429884000094,58.01658763200011],[16.737803582000083,58.01422760600014],[16.72885175900006,58.01727936400006],[16.72046959700009,58.02496979400009],[16.69157962300008,58.014837958000115],[16.686778191000087,58.00873444200014],[16.69996178500014,57.9977074240001],[16.679047071000095,58.00511302299999],[16.657969597000147,58.03534577000009],[16.644704623000052,58.03864166900003],[16.631195509000065,58.027899481000084],[16.637217644000145,58.01447174700011],[16.6595158210001,57.990220445000126],[16.67164147200009,57.991766669000164],[16.686289910000113,57.990220445000126],[16.68685957100007,57.98924388200005],[16.697601759000094,57.970648505000064],[16.70639082100007,57.962103583000115],[16.717621290000068,57.96662018400018],[16.727793816000116,57.97406647300006],[16.735362175000148,57.97190989800007],[16.74000084700009,57.962103583000115],[16.741547071000127,57.94619375200001],[16.747243686000104,57.940415757000046],[16.773936394000117,57.923407294000086],[16.782481316000144,57.915106512000094],[16.76539147200009,57.91522858300008],[16.72730553500011,57.92877838700003],[16.736175977000073,57.91376373900012],[16.76539147200009,57.89883047100006],[16.768809441000116,57.88784414300004],[16.758148634000094,57.87702057500003],[16.741058790000125,57.87718333499999],[16.723399285000113,57.88349030200011],[16.71078535200013,57.891262111000046],[16.69117272200009,57.91620514500014],[16.682871941000087,57.918890692000126],[16.679453972000086,57.89838288000008],[16.670746290000096,57.89142487200009],[16.65056399800008,57.89085521000011],[16.610606316000116,57.89468008000013],[16.61378014400009,57.903509833],[16.61378014400009,57.912095445000105],[16.61036217500009,57.92055898600013],[16.603770379000107,57.92877838700003],[16.61500084700012,57.92959219000015],[16.625661655000044,57.92837148600013],[16.635590040000125,57.925482489],[16.644704623000052,57.92133209800006],[16.515310092000075,57.99884674700003],[16.50586998800014,57.998236395000056],[16.49830162900011,57.99298737200009],[16.494476759000094,57.984035549000154],[16.497243686000076,57.977199611000124],[16.504567905000073,57.970160223000065],[16.532074415000096,57.95026276200015],[16.590098504000082,57.93561432500014],[16.584808790000096,57.932603257000046],[16.5748804050001,57.92438385600015],[16.569590691000116,57.92133209800006],[16.57601972700013,57.911281643000095],[16.576996290000096,57.90192291900014],[16.57252037900014,57.893947658000016],[16.56275475400011,57.88784414300004],[16.544118686000104,57.89891185100005],[16.524587436000047,57.90631745000005],[16.48080488400006,57.915106512000094],[16.494476759000094,57.9020856790001],[16.487071160000113,57.89468008000013],[16.480153842000107,57.898260809000085],[16.4602970710001,57.9020856790001],[16.4602970710001,57.89468008000013],[16.675466342000107,57.76447174700017],[16.706797722000147,57.75063711100007],[16.69996178500014,57.74384186400014],[16.68295332100007,57.74730052300005],[16.635101759000065,57.76569245000009],[16.621104363000082,57.77423737200011],[16.541840040000125,57.83901601800004],[16.419444207000055,57.89468008000013],[16.427582227000073,57.876898505000064],[16.43897545700014,57.86538320500002],[16.473399285000085,57.84686920799999],[16.530039910000085,57.825262762000094],[16.573252800000148,57.79535553600011],[16.580902540000096,57.78693268400015],[16.586761915000125,57.77887604400002],[16.59449303500014,57.772894598000114],[16.60718834700012,57.77049388200008],[16.618174675000063,57.766587632000075],[16.652679884000094,57.74632396000008],[16.665212436000076,57.73700592700011],[16.65211022200012,57.72955963700006],[16.673024936000076,57.7297223980001],[16.69076582100007,57.72565338700014],[16.70484459700012,57.716782945000105],[16.714854363000086,57.70282623900011],[16.69312584700012,57.70282623900011],[16.69312584700012,57.69599030200011],[16.706797722000147,57.69599030200011],[16.706797722000147,57.68854401200003],[16.639170769000117,57.69232819200006],[16.608897332000108,57.69871653899998],[16.576996290000096,57.709662177000055],[16.583994988000086,57.70038483299999],[16.60254967500009,57.68903229400003],[16.610606316000116,57.682359117000075],[16.619965040000068,57.66665273600002],[16.61768639400009,57.658270575000145],[16.60482832100007,57.656805731000176],[16.583262566000144,57.66193268400009],[16.591807488000086,57.65167877800017],[16.60328209700012,57.649115302000055],[16.6150822270001,57.64789459800015],[16.62484785200013,57.641424872000144],[16.630544467000107,57.62909577],[16.626149936000047,57.624579169000135],[16.616547071000042,57.62238190300015],[16.60718834700012,57.61717357000005],[16.59782962300008,57.61029694200015],[16.569997592000107,57.59568919500013],[16.56275475400011,57.59296295800005],[16.55713951900009,57.59686920800006],[16.55494225400011,57.6061872420001],[16.55494225400011,57.61737702],[16.555918816000087,57.627142645000156],[16.54761803500011,57.62221914300009],[16.53882897200012,57.62067291900014],[16.529795769000117,57.62238190300015],[16.520518425000063,57.627142645000156],[16.530528191000144,57.61546458500005],[16.535329623000052,57.611476955000064],[16.542246941000144,57.60732656500012],[16.527354363000086,57.595445054],[16.520518425000063,57.59296295800005],[16.520518425000063,57.58612702000015],[16.542246941000144,57.57929108300011],[16.542246941000144,57.572495835],[16.51498457100007,57.572495835],[16.51498457100007,57.56631094000012],[16.592458530000044,57.56484609600006],[16.62916100400014,57.55687083500011],[16.657562696000067,57.51552969000009],[16.680349155000073,57.48965078300007],[16.688975457000083,57.47174713700013],[16.6595158210001,57.47626373900005],[16.672211134000065,57.459662177000105],[16.666758660000113,57.45526764500011],[16.6521916020001,57.454535223],[16.63843834700009,57.44896067899999],[16.63331139400006,57.43707916900002],[16.639008009000065,57.42670319200012],[16.6530054050001,57.419012762000115],[16.672618035000085,57.415472723000114],[16.656016472000115,57.40924713700018],[16.637217644000145,57.406195380000085],[16.625743035000113,57.39899323100014],[16.63168379000004,57.380764065000065],[16.572601759000122,57.38743724200013],[16.54761803500011,57.38251373900005],[16.53484134200005,57.36025625200001],[16.569590691000116,57.34658437700006],[16.560231967000075,57.3373884140001],[16.54957116000014,57.33315664300009],[16.547373894000145,57.328802802],[16.56275475400011,57.31928131700001],[16.48519941500004,57.294623114],[16.469086134000065,57.27537669500005],[16.494476759000094,57.242905992000075],[16.465993686000104,57.2280134140001],[16.4581811860001,57.20400625200007],[16.46501712300011,57.17731354400014],[16.48080488400006,57.15477122600008],[16.50945071700005,57.12734609600001],[16.520518425000063,57.120062567],[16.531016472000147,57.11692942900011],[16.53728274800008,57.118231512000115],[16.543142123000052,57.11798737200017],[16.55250084700006,57.1100934920001],[16.569590691000116,57.08649323100015],[16.55445397200012,57.080755927],[16.560557488000114,57.06928131700015],[16.574473504000082,57.056097723],[16.583262566000144,57.04490794499999],[16.57048587300011,57.04433828300004],[16.53484134200005,57.05174388200011],[16.53337649800011,57.054429429],[16.53500410200013,57.05906810100011],[16.53484134200005,57.063462632],[16.527679884000122,57.06537506700006],[16.52125084700009,57.064398505000085],[16.517832879000082,57.06207916900003],[16.51612389400009,57.05975983300006],[16.51498457100007,57.05857982000013],[16.51075280000012,57.05597565300003],[16.50855553500014,57.05101146000008],[16.50684655000012,57.04559967700013],[16.50440514400009,57.04148997599999],[16.500336134000037,57.039740302],[16.49683678500014,57.041449286],[16.492686394000117,57.04389069200011],[16.47632897200009,57.04584381700008],[16.452403191000144,57.05141836100007],[16.439789259000065,57.05174388200011],[16.44752037900008,57.044378973000036],[16.45533287900014,57.03839752800009],[16.464040561000047,57.034002997000115],[16.473399285000085,57.03123607000005],[16.473399285000085,57.02383047100007],[16.453135613000057,57.02350495000014],[16.439789259000065,57.014105536000116],[16.4349064460001,56.99787018400017],[16.439789259000065,56.97662995000009],[16.449717644000145,56.96450429900001],[16.461436394000145,56.95661041900002],[16.4681095710001,56.94928620000003],[16.46338951900009,56.93846263200011],[16.43637129000004,56.91111888200005],[16.436289910000053,56.90477122600011],[16.439952019000117,56.877834377000156],[16.439789259000065,56.86684804900001],[16.436289910000053,56.856878973],[16.408946160000085,56.80841705900012],[16.407969597000115,56.79913971600017],[16.41602623800014,56.787990627000156],[16.428558790000068,56.78294505400011],[16.440765821000127,56.78705475500005],[16.452403191000144,56.794134833000115],[16.46338951900009,56.79783763200008],[16.472504102000073,56.794378973000065],[16.47445722700013,56.786322333000136],[16.471690300000063,56.77741120000009],[16.466563347000147,56.77118561400014],[16.45484459700006,56.7682966170001],[16.427582227000073,56.77558014500012],[16.412608269000145,56.77741120000009],[16.396820509000094,56.774807033000094],[16.376231316000144,56.76569245000012],[16.361094597000143,56.763739325000145],[16.356618686000104,56.758449611000074],[16.363047722000115,56.746486721000146],[16.377777540000096,56.72589752800012],[16.380625847000147,56.693793036000145],[16.379161004000082,56.67560455900015],[16.371592644000145,56.66132233300006],[16.358653191000116,56.65444570500015],[16.341563347000086,56.6512718770001],[16.324961785000113,56.65216705900018],[16.301117384000065,56.663275458000115],[16.28825931100002,56.66132233300006],[16.27564537900014,56.65656159100017],[16.264903191000116,56.653876044000086],[16.25521894600007,56.65037669500002],[16.24634850400011,56.642401434000035],[16.22364342500009,56.61420319200006],[16.220957879000107,56.608710028000026],[16.221202019000142,56.603745835],[16.2200626960001,56.59300364800008],[16.215505405000073,56.571722723],[16.213226759000094,56.548407294000086],[16.207041863000114,56.538519598000086],[16.178721550000063,56.53705475500011],[16.172373894000145,56.527289130000085],[16.166026238000114,56.50800202000014],[16.11768639400009,56.45526764500015],[16.095225457000083,56.41937897300015],[16.0662541020001,56.33596426000015],[16.038259311000076,56.255072333000086],[16.03150475400014,56.24982330900009],[16.020355665000125,56.24640534100008],[16.014496290000068,56.23826732000008],[16.010427280000016,56.22825755399999],[16.004405144000117,56.21942780200011],[15.98780358200014,56.20774974200013],[15.948985222000147,56.18744538000011],[15.932139519000144,56.17470937700007],[15.874359571000097,56.10272858300014],[15.85173587300005,56.086371161000116],[15.835134311000074,56.087958075000145],[15.816742384000037,56.09784577000006],[15.788747592000107,56.10643138200008],[15.818695509000094,56.1400414080001],[15.826508009000092,56.159369208000115],[15.806162957000081,56.16791413000006],[15.756683790000125,56.156724351000136],[15.731211785000141,56.15721263200011],[15.713633660000111,56.17470937700007],[15.702484571000099,56.17023346600011],[15.696787957000112,56.17316315300003],[15.691742384000063,56.17861562700007],[15.682383660000141,56.181545315],[15.670176629000053,56.18353913000014],[15.655772332000083,56.19257233300014],[15.648203972000145,56.19456614799999],[15.631521030000101,56.18573639500012],[15.611827019000147,56.16925690300003],[15.592133009000122,56.160549221000146],[15.575938347000063,56.17470937700007],[15.582855665000068,56.180812893000066],[15.59229576900009,56.19245026200014],[15.596202019000087,56.20376211100016],[15.586436394000145,56.208889065000065],[15.572764519000115,56.20628489800008],[15.534922722000145,56.18838125200001],[15.492930535000083,56.17633698100009],[15.486582879000139,56.171332098000065],[15.484873894000144,56.15566640800007],[15.479991082000083,56.151841539000074],[15.459808790000038,56.16107819200012],[15.452321811000074,56.165961005],[15.444021030000101,56.17283763200011],[15.433278842000076,56.17890045800002],[15.41822350400008,56.181545315],[15.403981967000078,56.17975495000012],[15.393402540000125,56.17511627800017],[15.376719597000088,56.16107819200012],[15.370371941000144,56.15143463700015],[15.370127800000091,56.14492422100006],[15.365570509000065,56.14109935100005],[15.320974155000075,56.139634507],[15.307302280000043,56.141750393],[15.295258009000122,56.147406317],[15.31470787900011,56.15338776200012],[15.322601759000094,56.15363190300015],[15.316742384000065,56.163275458000115],[15.295258009000122,56.18838125200001],[15.273773634000094,56.17121002800009],[15.23454837300008,56.15721263200011],[15.19239342500012,56.152899481000034],[15.16187584700009,56.164496161000145],[15.154307488000141,56.16864655200008],[15.146332227000102,56.16693756700009],[15.138682488000143,56.16315338700015],[15.130869988000088,56.16107819200012],[15.093028191000114,56.16107819200012],[15.085215691000144,56.16461823100012],[15.08171634200005,56.18207428600009],[15.07553144600007,56.18838125200001],[15.068695509000065,56.187730210000055],[15.044281446000099,56.182277736000046],[15.034678582000138,56.181545315],[15.038259311000102,56.175441799],[15.045258009000094,56.15961334800006],[15.04900149800011,56.15363190300015],[14.988454623000024,56.16917552300005],[14.953379754000139,56.172919012000094],[14.928233269000145,56.164496161000145],[14.906016472000118,56.161200262000094],[14.87322024800011,56.164740302],[14.84815514400009,56.163967190000065],[14.849619988000143,56.147406317],[14.830251498000052,56.14264557500009],[14.813324415000068,56.15009186400009],[14.795746290000123,56.161281643000095],[14.774587436000017,56.16791413000006],[14.72494550900012,56.16762929900001],[14.701345248000079,56.16136302300008],[14.685801629000082,56.147406317],[14.682953321000127,56.139064846000124],[14.681000196000069,56.12742747600011],[14.682302280000073,56.11713288],[14.68897545700014,56.11261627800014],[14.70337975400011,56.109442450000174],[14.710297071000099,56.10187409100003],[14.714528842000105,56.092678127000156],[14.719981316000144,56.08466217700011],[14.74830162900011,56.06073639500015],[14.75798587300008,56.0484886740001],[14.767751498000107,56.030707098],[14.756358269000144,56.027411200000145],[14.74382571700005,56.02142975500005],[14.732188347000118,56.014105536000145],[14.723399285000083,56.006537177],[14.7155054050001,56.00234609600007],[14.710459832000055,56.00657786699998],[14.705739780000073,56.017035223000065],[14.685801629000082,56.017035223000065],[14.679047071000127,56.009263414000074],[14.673024936000047,56.00531647300009],[14.664724155000044,56.006537177],[14.657399936000049,56.009263414000074],[14.649750196000097,56.01032135600012],[14.621836785000085,56.010158596000146],[14.611501498000079,56.01113515800013],[14.609711134000092,56.01532623900006],[14.623789910000113,56.02448151200004],[14.615244988000084,56.03017812700013],[14.607676629000139,56.03701406500015],[14.60303795700011,56.04596588700015],[14.603282097000145,56.058050848000065],[14.582204623000052,56.04376862200017],[14.571299675000146,56.05084870000006],[14.56674238400012,56.05560944200015],[14.569102410000083,56.058050848000065],[14.556651238000143,56.05536530199999],[14.533457879000109,56.045843817],[14.524424675000118,56.04376862200017],[14.497406446000069,56.04047272300015],[14.478851759000063,56.03168366100009],[14.44556725400008,56.002752997000165],[14.40772545700011,55.97703685100011],[14.38559004000004,55.96625397300012],[14.366465691000087,55.96185944200011],[14.346446160000113,55.953314520000035],[14.333343946000126,55.93451569200006],[14.323252800000063,55.91571686400012],[14.311534050000091,55.907171942],[14.271006707000055,55.89447663000011],[14.234711134000065,55.86269765800007],[14.208506707000112,55.821275132000075],[14.198496941000144,55.77997467700011],[14.194183790000123,55.741888739000146],[14.195811394000145,55.72565338700009],[14.205902540000123,55.708563544000135],[14.222504102000102,55.69684479400017],[14.26107832100007,55.680161851000136],[14.273692254000139,55.667629299000126],[14.275889519000117,55.656805731000034],[14.275075717000107,55.64614492400001],[14.276052280000101,55.63499583500008],[14.284515821000127,55.622951565000065],[14.294769727000071,55.61517975500005],[14.31666100400011,55.60236237200003],[14.358164910000085,55.563666083],[14.367523634000122,55.54539622600011],[14.363047722000145,55.52362702000014],[14.348806186000076,55.510565497000165],[14.29468834700009,55.47553131700008],[14.277110222000147,55.468410549000126],[14.264903191000085,55.461249091000084],[14.21900475400011,55.41376373900009],[14.199717644000144,55.398993231000084],[14.18116295700014,55.390814520000085],[14.158376498000024,55.38719310100013],[14.094086134000092,55.387396552000084],[14.064219597000118,55.3907738300001],[14.035411004000082,55.397121486000124],[13.956228061000104,55.42682526200014],[13.930023634000065,55.432766018000095],[13.897227410000054,55.43488190300009],[13.882334832000112,55.433050848000036],[13.856781446000127,55.42438385600012],[13.842295769000087,55.42121002800015],[13.828135613000141,55.42133209800012],[13.78028405000012,55.42743561400012],[13.647308790000096,55.42121002800015],[13.629567905000101,55.41828034100003],[13.618174675000148,55.41095612200003],[13.608653191000142,55.40180084800015],[13.595957879000082,55.39325592700011],[13.580821160000085,55.38882070500015],[13.537852410000141,55.39325592700011],[13.503428582000112,55.38837311400006],[13.410899285000113,55.3522809920001],[13.381358269000145,55.34601471600014],[13.312510613000084,55.34267812700012],[13.280528191000087,55.345445054],[13.115489129000082,55.38027578300013],[13.061534050000148,55.38125234600001],[13.041758660000141,55.38544342700014],[13.030772332000083,55.386419989],[13.02491295700014,55.388251044000086],[13.008636915000096,55.39691803600008],[13.000010613000114,55.400091864000146],[12.979177280000044,55.403265692],[12.958343946000127,55.400091864000146],[12.947276238000114,55.39622630400014],[12.932627800000091,55.38800690300003],[12.92090905000012,55.386419989],[12.910411004000139,55.387518622000144],[12.897146030000101,55.39215729400017],[12.886729363000114,55.39325592700011],[12.867198113000143,55.38886139500015],[12.847422722000118,55.382025458000115],[12.832774285000113,55.382554429000024],[12.828786655000043,55.400091864000146],[12.859385613000141,55.43488190300009],[12.866221550000148,55.435003973000065],[12.871836785000056,55.434393622000115],[12.877940300000148,55.431382554000024],[12.886729363000114,55.424302476000136],[12.904633009000065,55.4179548200001],[12.929698113000084,55.41876862200003],[12.952891472000118,55.424994208000086],[12.96583092500012,55.43488190300009],[12.959971550000148,55.44790273600007],[12.963226759000122,55.454250393],[12.97291100400008,55.45416901200004],[12.985687696000126,55.44790273600007],[12.975840691000087,55.475043036],[12.928477410000141,55.52000560099999],[12.917491082000112,55.547186591000106],[12.92937259200005,55.578924872000144],[12.958343946000127,55.59813060100011],[13.027354363000086,55.62665436400003],[13.038340691000116,55.635199286000116],[13.049489780000044,55.647121486000074],[13.057953321000099,55.660711981000034],[13.061371290000096,55.674465236000124],[13.05486087300011,55.69403717700011],[13.040537957000112,55.705389716000084],[13.026377800000091,55.712388414000074],[13.011485222000147,55.72842031500006],[12.992930535000141,55.72577545800008],[12.974375847000118,55.72646719],[12.96583092500012,55.746161200000145],[12.941172722000118,55.74534739800005],[12.922618035000113,55.74945709800009],[12.911306186000047,55.76386139500006],[12.923838738000114,55.76528554900012],[12.931895379000082,55.76947663000005],[12.936534050000091,55.77741120000003],[12.938649936000104,55.790472723],[12.926036004000109,55.83405182500012],[12.891286655000073,55.85358307500009],[12.850759311000045,55.865668036],[12.821299675000148,55.88670482000013],[12.810801629000082,55.90224844000012],[12.808360222000147,55.910142320000105],[12.80762780000012,55.924627997000144],[12.804942254000139,55.92926666900017],[12.79851321700005,55.93480052300002],[12.790537957000083,55.93939850500014],[12.783702019000145,55.941351630000085],[12.770762566000144,55.948431708000136],[12.764659050000148,55.96478913000006],[12.760020379000139,55.98322174700009],[12.75228925900012,55.9965681010001],[12.734873894000144,56.00617096600008],[12.719493035000113,56.012152411],[12.708750847000118,56.02130768400018],[12.704600457000083,56.04067617400009],[12.698008660000085,56.05149974199999],[12.609548373000079,56.11652252800006],[12.602224155000071,56.1231957050001],[12.564626498000052,56.17169830900018],[12.553721550000091,56.181545315],[12.544606967000107,56.21320221600017],[12.54078209700009,56.22247955900012],[12.516449415000094,56.252183335000055],[12.504567905000073,56.275336005],[12.464854363000141,56.29169342700003],[12.451426629000137,56.30442942900005],[12.646250847000061,56.257269598000065],[12.65365644600007,56.25397370000003],[12.66618899800005,56.239447333],[12.673838738000086,56.23615143400015],[12.681651238000084,56.23403554900015],[12.696625196000099,56.22459544500013],[12.704844597000118,56.22247955900012],[12.713389519000115,56.22357819200006],[12.727386915000096,56.228216864],[12.735606316000087,56.22931549700006],[12.777598504000082,56.22650788],[12.796885613000114,56.22809479400003],[12.814463738000141,56.23615143400015],[12.827403191000144,56.24994538000006],[12.83350670700014,56.265692450000024],[12.82943769600007,56.27855052300005],[12.78345787900011,56.29340241100003],[12.762950066000142,56.31537506700012],[12.73178144600007,56.35968659100016],[12.643809441000144,56.39606354400014],[12.621592644000089,56.41933828300016],[12.6569116550001,56.45526764500015],[12.713715040000068,56.46735260600015],[12.833262566000085,56.442572333],[12.890147332000112,56.45526764500015],[12.90447024800011,56.46702708500011],[12.920420769000117,56.485296942],[12.933360222000116,56.506537177],[12.938649936000104,56.527289130000085],[12.934418165000096,56.54706452],[12.903819207000055,56.59300364800008],[12.88607832100007,56.63715241100006],[12.871755405000071,56.64948151200009],[12.842051629000139,56.653876044000086],[12.818044467000107,56.65253327],[12.778168165000125,56.64423248900012],[12.762380405000101,56.64329661700013],[12.746836785000085,56.64423248900012],[12.73178144600007,56.64704010600015],[12.67986087300008,56.67959219000012],[12.670420769000087,56.69208405200014],[12.664317254000082,56.714300848],[12.649261915000068,56.725165106000084],[12.631358269000117,56.734035549000126],[12.615733269000117,56.75006745000003],[12.594737175000091,56.787990627000156],[12.600352410000085,56.809881903000175],[12.598317905000073,56.820990302000105],[12.533864780000071,56.846340236000124],[12.529551629000082,56.84967682500017],[12.52881920700014,56.853583075000174],[12.52881920700014,56.857326565],[12.527028842000078,56.85993073100009],[12.520518425000148,56.86200592700011],[12.50424238400012,56.86473216399998],[12.499196811000104,56.86684804900001],[12.47999108200014,56.88637929900007],[12.469574415000068,56.892035223000065],[12.437347852000102,56.89618561400003],[12.411875847000118,56.90558502800003],[12.375010613000141,56.91205475500014],[12.35645592500012,56.923814195000105],[12.34522545700014,56.94135163000005],[12.342133009000065,56.96295807500014],[12.344248894000145,56.967922268],[12.353037957000112,56.97675202000006],[12.35515384200005,56.97972239799999],[12.354258660000141,56.98566315300009],[12.349864129000053,56.995428778000054],[12.348887566000085,57.00055573100015],[12.346853061000076,57.006293036000116],[12.340993686000102,57.014064846000124],[12.333262566000116,57.02090078300012],[12.301768425000091,57.02924225500011],[12.271250847000147,57.042873440000065],[12.24740644600007,57.06073639500012],[12.245290561000076,57.079046942],[12.23796634200005,57.08136627800015],[12.218597852000128,57.09271881700012],[12.237640821000127,57.108058986000074],[12.23340905000012,57.12148672100007],[12.204356316000144,57.14793528900004],[12.201019727000102,57.15570709800015],[12.197927280000043,57.1757673200001],[12.197438998000052,57.18488190300009],[12.191416863000114,57.18528880400011],[12.160980665000068,57.18414948100015],[12.149099155000044,57.188299872000115],[12.180511915000066,57.20416901200004],[12.191254102000073,57.21259186400009],[12.18067467500012,57.216253973000114],[12.157725457000112,57.21686432500009],[12.138356967000107,57.21967194200015],[12.120371941000087,57.22589752800012],[12.10132897200009,57.23672109600001],[12.129242384000122,57.23672109600001],[12.142914259000065,57.238714911000145],[12.15650475400011,57.242905992000075],[12.142425977000071,57.247951565],[12.127289259000065,57.25006745000012],[12.095062696000127,57.250392971000124],[12.095062696000127,57.25714752800017],[12.105479363000113,57.26300690300012],[12.11231530000012,57.26976146000005],[12.119883660000085,57.27533600500005],[12.142588738000114,57.279974677],[12.147227410000141,57.28546784100002],[12.147227410000141,57.29222239800005],[12.142832879000082,57.298163153000175],[12.144053582000083,57.31012604400011],[12.136973504000139,57.31952545800014],[12.125743035000113,57.32680898600017],[12.115000847000118,57.33234284100016],[12.112478061000104,57.3351911480001],[12.109385613000114,57.34003327],[12.10499108200014,57.34454987200014],[12.098155144000117,57.34658437700006],[12.089854363000143,57.345160223],[12.073903842000021,57.33982982000004],[12.067149285000085,57.33978913000006],[12.049815300000091,57.35114166900002],[12.063731316000087,57.36359284100014],[12.089854363000143,57.37787506700011],[12.10873457100007,57.39435455900013],[12.060313347000061,57.39435455900013],[12.0826929050001,57.40228913],[12.092051629000109,57.411363022999986],[12.089854363000143,57.423041083000086],[12.0592554050001,57.45880768400009],[12.053477410000141,57.46263255400011],[12.043630405000044,57.461818752],[12.03663170700014,57.45697663000011],[12.030121290000068,57.45156484600009],[12.022715691000085,57.44896067899999],[12.006602410000113,57.43414948100011],[11.992930535000056,57.36603424700017],[11.979014519000089,57.34658437700006],[11.972178582000083,57.36408112200003],[11.949961785000113,57.36082591399999],[11.933604363000086,57.36082591399999],[11.944834832000083,57.387600002000106],[11.933604363000086,57.38690827000014],[11.922699415000125,57.38739655200013],[11.912608269000144,57.389715887000094],[11.903330925000091,57.39435455900013],[11.915212436000045,57.40338776200004],[11.913747592000078,57.41665273600016],[11.906993035000141,57.43244049700011],[11.903330925000091,57.44896067899999],[11.907074415000123,57.46527741100003],[11.916351759000094,57.47626373900005],[11.929698113000086,57.483832098000036],[11.944834832000083,57.48993561400001],[11.927744988000143,57.49795156500014],[11.910166863000114,57.50360748900014],[11.916758660000085,57.50470612200009],[11.93116295700014,57.51105377800011],[11.910166863000114,57.5214704450001],[11.903330925000091,57.524115302],[11.917653842000078,57.53953685100011],[11.911468946000127,57.59528229400003],[11.916840040000068,57.62091705900009],[11.912852410000085,57.62295156500012],[11.90186608200014,57.62636953300012],[11.897146030000044,57.627142645000156],[11.891856316000144,57.61298248900012],[11.879649285000085,57.6061872420001],[11.86736087300011,57.6074079450001],[11.861582879000053,57.61717357000005],[11.858083530000071,57.63263580900018],[11.849619988000114,57.64325592700011],[11.840586785000113,57.652004299000104],[11.83497155000012,57.66193268400009],[11.844574415000096,57.683010158],[11.90951582100007,57.686835028000026],[11.923675977000102,57.70282623900011],[11.90211022200009,57.69623444200006],[11.874359571000099,57.69326406500015],[11.84587649800011,57.69330475500014],[11.821299675000091,57.69599030200011],[11.77051842500012,57.71222565300014],[11.747731967000107,57.71360911700004],[11.751800977000073,57.69599030200011],[11.738047722000147,57.69326406500015],[11.719737175000091,57.69350820500009],[11.705414259000092,57.69843170800006],[11.703949415000123,57.709662177000055],[11.706309441000085,57.72199127800009],[11.801524285000141,57.77423737200011],[11.810394727000102,57.78139883000016],[11.807871941000085,57.78807200700011],[11.789398634000065,57.79026927300002],[11.766856316000087,57.78880442900013],[11.751800977000073,57.78481679900016],[11.72730553500014,57.803045966000134],[11.707855665000125,57.82314687700009],[11.686778191000116,57.83763255400014],[11.656260613000084,57.83942291900002],[11.678396030000071,57.853745835000105],[11.690765821000099,57.858587958],[11.703949415000123,57.86050039300016],[11.693614129000139,57.881170966000134],[11.707286004000082,57.89142487200009],[11.75928795700014,57.9020856790001],[11.75928795700014,57.90827057500009],[11.745616082000112,57.90827057500009],[11.745616082000112,57.915106512000094],[11.75538170700014,57.91714101800012],[11.759450717000107,57.9190127620001],[11.766123894000144,57.92877838700003],[11.736582879000082,57.93866608300006],[11.74366295700014,57.95571523600002],[11.78728274800005,57.9977074240001],[11.80014082100007,58.02228424700011],[11.802907748000052,58.036566473],[11.797129754000082,58.048895575000145],[11.787771030000044,58.05898672100002],[11.782969597000147,58.069159247000144],[11.786306186000076,58.07859935100008],[11.80095462300008,58.08641185100008],[11.797699415000038,58.09027741100005],[11.796153191000114,58.09332916900014],[11.793467644000117,58.10008372600002],[11.818125847000118,58.10317617400009],[11.82846113400012,58.12124258],[11.83741295700014,58.18716054900016],[11.84131920700014,58.193793036000116],[11.852061394000145,58.19627513200014],[11.865407748000079,58.19672272300012],[11.875743035000085,58.19916413000008],[11.88379967500012,58.205267645000056],[11.889659050000148,58.216782945],[11.873708530000073,58.21539948100012],[11.860606316000087,58.21841054900001],[11.85181725400011,58.22662995000011],[11.844574415000096,58.253363348000114],[11.834808790000068,58.26170482000002],[11.823415561000104,58.268988348],[11.813812696000127,58.27826569200006],[11.808929884000063,58.302191473000114],[11.825938347000118,58.31655508],[11.882823113000143,58.33283112200003],[11.870371941000116,58.345363674000126],[11.849457227000071,58.342678127000156],[11.806976759000092,58.32660553600008],[11.751800977000073,58.329779364000146],[11.72673587300008,58.32709381700006],[11.725759311000104,58.312974351000136],[11.711436394000115,58.30756256700009],[11.678965691000116,58.307440497000115],[11.628672722000147,58.281480210000105],[11.618907097000118,58.27826569200006],[11.61280358200014,58.27435944200006],[11.590993686000076,58.256333726000136],[11.581065300000091,58.250921942],[11.567067905000016,58.249212958],[11.552012566000116,58.250311591000035],[11.537771030000101,58.25348541900008],[11.525889519000145,58.25775788000012],[11.530446811000104,58.25275299700017],[11.539561394000089,58.237250067000055],[11.505869988000086,58.24306875200001],[11.496592644000115,58.25836823100015],[11.503672722000088,58.28021881700003],[11.51905358200014,58.30556875200013],[11.541758660000085,58.333563544000164],[11.567393425000148,58.35504791900008],[11.622080925000091,58.388128973000114],[11.607758009000094,58.39496491100006],[11.621755405000071,58.4059919290001],[11.636973504000139,58.41356028900004],[11.669932488000114,58.42218659100015],[11.652598504000109,58.43740469000012],[11.628916863000114,58.431341864000146],[11.605316602000073,58.415472723],[11.588633660000113,58.401109117000125],[11.57837975400011,58.414129950000024],[11.559255405000044,58.44830963700012],[11.553233269000115,58.46320221600017],[11.547048373000052,58.46320221600017],[11.553477410000056,58.43398672100012],[11.551768425000148,58.39935944200015],[11.5416772800001,58.364935614],[11.522471550000148,58.33624909100015],[11.494965040000096,58.31248607000004],[11.465993686000104,58.294134833],[11.396169467000078,58.26459381700012],[11.405121290000096,58.27920156500015],[11.41618899800005,58.29035065300015],[11.428965691000087,58.29897695500007],[11.443369988000143,58.30556875200013],[11.443369988000143,58.312974351000136],[11.428070509000094,58.31183502800009],[11.399180535000085,58.30296458500006],[11.389333530000044,58.30556875200013],[11.38379967500012,58.318182684000035],[11.389496290000125,58.32908763200002],[11.401052280000044,58.33681875200001],[11.413259311000104,58.33966705900014],[11.448578321000127,58.34174225500008],[11.441254102000128,58.349066473000086],[11.422862175000091,58.36383698100014],[11.42408287900011,58.388128973000114],[11.406993035000056,58.38735586100001],[11.397715691000116,58.37885163],[11.391123894000145,58.36644114800004],[11.38249759200005,58.353949286000145],[11.370616082000083,58.34747955900007],[11.35531660200013,58.34389883000007],[11.345876498000107,58.34601471600008],[11.351410352000128,58.35708242400012],[11.385915561000045,58.39801666900014],[11.40723717500012,58.41836172100012],[11.41570071700005,58.428900458],[11.42408287900011,58.44269440300011],[11.415212436000076,58.43195221600008],[11.37240644600007,58.3998884140001],[11.355967644000089,58.39272695500007],[11.348399285000113,58.388128973000114],[11.345062696000099,58.38385651200003],[11.337657097000118,58.37189362200009],[11.334157748000107,58.36762116100009],[11.306813998000052,58.36005280200014],[11.279144727000045,58.36615631700012],[11.253591342000078,58.365912177000084],[11.231700066000114,58.33966705900014],[11.220876498000052,58.34625885600003],[11.219574415000123,58.35272858300012],[11.222666863000114,58.36041901200015],[11.22486412900011,58.37067291900017],[11.221690300000148,58.37958405200011],[11.204356316000144,58.401109117000125],[11.208994988000086,58.41893138200011],[11.223399285000141,58.42487213700003],[11.259043816000116,58.42218659100015],[11.25147545700014,58.442328192],[11.261241082000083,58.452215887000094],[11.278575066000085,58.45905182500003],[11.293711785000085,58.470038153000175],[11.25766035200013,58.48216380400008],[11.252207879000082,58.48737213700014],[11.250010613000086,58.49323151200012],[11.240733269000145,58.50218333500015],[11.238536004000139,58.507879950000024],[11.240733269000145,58.512518622000144],[11.245371941000059,58.516302802000084],[11.250010613000086,58.518500067000055],[11.252207879000082,58.51845937700006],[11.25294030000012,58.54824453300007],[11.255625847000088,58.55573151200014],[11.264984571000127,58.562892971000096],[11.2732853520001,58.56622955900013],[11.280528191000116,58.57029857],[11.286306186000104,58.57990143400014],[11.265798373000052,58.57990143400014],[11.269786004000109,58.59223053600001],[11.264821811000076,58.59674713700014],[11.257009311000076,58.59967682500017],[11.252207879000082,58.607163804000045],[11.252777540000068,58.616034247000094],[11.259043816000116,58.62579987200002],[11.259043816000116,58.63450755400011],[11.249847852000128,58.64891185099999],[11.210622592000107,58.67918528899999],[11.214121941000087,58.69891998900012],[11.218028191000087,58.70795319200012],[11.212412957000083,58.71035390800007],[11.186859571000099,58.710191148000106],[11.177419467000105,58.71857330900015],[11.178558790000125,58.73647695500004],[11.189789259000122,58.752997137000094],[11.210622592000107,58.75739166900008],[11.206879102000073,58.77094147300014],[11.212657097000147,58.77944570500007],[11.222666863000114,58.787543036],[11.231700066000114,58.79962799700011],[11.23340905000012,58.80817291900003],[11.231700066000114,58.84369538000011],[11.22632897200009,58.84894440300009],[11.21461022200009,58.85126373900005],[11.20289147200009,58.854925848],[11.19760175900012,58.86416250200007],[11.19760175900012,58.887884833000086],[11.195567254000082,58.89838288000006],[11.190114780000073,58.908270575000145],[11.193207227000128,58.91217682500015],[11.194997592000021,58.91522858300006],[11.19760175900012,58.92251211100007],[11.14673912900008,58.93121979400014],[11.119883660000113,58.94086334800012],[11.108164910000113,58.95355866100008],[11.117442254000082,58.96881745000014],[11.13892662900011,58.97833893400015],[11.18384850400011,58.99140045800011],[11.141774936000047,58.98956940300014],[11.122813347000118,58.99408600500003],[11.115000847000147,59.00820547100012],[11.11939537900011,59.02081940300012],[11.129405144000117,59.03119538000011],[11.193614129000139,59.08014557500009],[11.220062696000127,59.09015534100017],[11.320974155000073,59.099514065],[11.354665561000076,59.09162018400003],[11.36890709700009,59.063055731000055],[11.376231316000087,59.04169342699999],[11.393809441000116,59.01943594000012],[11.414073113000114,59.00112539300006],[11.429698113000113,58.99140045800011],[11.437510613000114,58.99140045800011],[11.437510613337878,58.991720862705634],[11.437521686000139,58.99171051300011],[11.43814375800008,58.99112904900015],[11.453233276000077,58.96048492500002],[11.45199304200014,58.89604441400011],[11.482585490000076,58.88689768500002],[11.547077678000079,58.88472727500011],[11.611569865000092,58.89315053300011],[11.66438317900014,58.920073955000035],[11.693735392000121,58.97350738500016],[11.700246623000112,58.99913889600011],[11.708928263000073,59.02161814400012],[11.734249715000145,59.06554311100016],[11.745308472000147,59.092156473999985],[11.748512411000121,59.14006052700002],[11.775590861000067,59.20253733300008],[11.784685913000146,59.218143616000035],[11.802462605000073,59.23442169200014],[11.811088078000097,59.24871671700014],[11.81166101100007,59.24966624000008],[11.81166101100007,59.27090525300015],[11.806803426000045,59.29359120700003],[11.783962443000064,59.36061554000004],[11.677405640000103,59.559053040000045],[11.67099776200007,59.58055043600009],[11.67492517100004,59.60711212200003],[11.693735392000121,59.62230499300013],[11.828404175000117,59.6597187300001],[11.852485392000062,59.67336130800012],[11.891656128000108,59.70576243200009],[11.89723718300013,59.71397898400015],[11.89723718300013,59.73201405900015],[11.903541707000043,59.76999623600006],[11.902094767000051,59.78513743100008],[11.889795776000113,59.801415507],[11.883741546000095,59.8053829980001],[11.85486250800011,59.824308167000126],[11.842976929000086,59.838415833000155],[11.849591512000075,59.87241892500001],[11.874627299000053,59.88493681900003],[11.890312540000139,59.89277944000012],[11.942195678000132,59.90202952100004],[12.102702677000138,59.89396799800015],[12.143733764000103,59.89841217000016],[12.290598185000105,59.95871856700013],[12.446764364000046,60.05111602800007],[12.483247925000057,60.08124338800003],[12.510946492000073,60.11798533200011],[12.524692423000117,60.1617035930001],[12.521591838000063,60.197618713000146],[12.495650268000105,60.262007549000046],[12.487278686000138,60.29590728800015],[12.491722860000067,60.312288717000015],[12.504745321000087,60.32562123600003],[12.558592163000128,60.35988271100014],[12.577919148000149,60.37590240500001],[12.593628784000146,60.395022685000086],[12.605307658000099,60.41915557900013],[12.612645711000113,60.455380758],[12.608614950000115,60.486489970000044],[12.594352254000029,60.51493784600016],[12.482524454000043,60.65733225600015],[12.377001180000093,60.754096375000145],[12.350026082000054,60.79334462600012],[12.335039917000074,60.828898010999986],[12.313232463000134,60.901865133000015],[12.294835653000064,60.93532562299999],[12.256078329000017,60.98131764800008],[12.253287801000056,61.001704],[12.28098636900009,61.01519154900011],[12.511773316000102,61.049117127000116],[12.569650920000127,61.050641581000136],[12.68251224700009,61.04033213400011],[12.703802938000079,61.046197409],[12.710825598000099,61.05701155800013],[12.713518107000112,61.061157735000094],[12.73294844600008,61.129112244000154],[12.739149617000066,61.142444763000164],[12.74669437600002,61.1514623010001],[12.819661499000063,61.20494740800013],[12.839815308000112,61.22698740600004],[12.85469812000008,61.255306092000055],[12.888184448000061,61.349615581000144],[12.886944214000039,61.36150116],[12.877125692000076,61.37098378600017],[12.613782592000119,61.54704539],[12.58339685000007,61.56110138000012],[12.550944051000045,61.566914978000014],[12.482524454000043,61.5691370650001],[12.444800659000094,61.573503723999984],[12.416481975000094,61.58228871700008],[12.337830444000133,61.63298329700014],[12.291321655000104,61.65112172400008],[12.17556644700005,61.7115314740001],[12.161717163000077,61.724838155000114],[12.239593546000037,61.979435018000075],[12.317469929000112,62.234031881000156],[12.31514930500012,62.271760746],[12.314265991000127,62.28612172500011],[12.286360718000138,62.335421041000124],[12.279521921000082,62.344214039000136],[12.091230509000127,62.58631012000008],[12.090093628000119,62.60633473700004],[12.103116089000054,62.63403330500013],[12.13866947400004,62.682712505000076],[12.154069051000107,62.71051442500012],[12.156239461000098,62.73369130500011],[12.097018270000092,62.88655019100015],[12.093297567000093,62.90742747100004],[12.104356323000104,62.92334381100015],[12.222695353000063,63.00147857700007],[12.059826572000132,63.204772150000075],[11.992425171000093,63.28890289300006],[12.204918660000118,63.45462921200003],[12.219801472000055,63.474266256000035],[12.219491414000087,63.49659047500002],[12.170295450000111,63.5981346650001],[12.293182006000109,63.656994121000174],[12.482524454000043,63.80949127300012],[12.681892131000039,63.956355693000134],[12.755272665000064,63.99139231400015],[12.982442261000074,64.05883005800017],[13.234106486000144,64.09086944600007],[13.586772298000085,64.05020009400012],[13.939438110000111,64.00953074200008],[13.964242798000043,64.00953074200008],[13.982329549000069,64.01950429300008],[14.147797485000126,64.16900421200002],[14.160509887000075,64.18724599200006],[14.161440063000043,64.2054360960001],[14.115551391000054,64.44123565700006],[14.096947876000087,64.46531687400004],[14.060877726000086,64.4766340130001],[13.982329549000069,64.48438547900008],[13.940058228000083,64.49131012],[13.642763713000107,64.58401763900015],[13.907579590000038,64.78770029750017],[14.172395467000086,64.99138295600015],[14.172602172000069,64.991537984],[14.310681600000066,65.08414215100005],[14.332073666000099,65.11396380500014],[14.332849860000096,65.11504586000017],[14.338483520000123,65.1228994750001],[14.36597538300009,65.21576202500002],[14.380238078000074,65.24028249200008],[14.400495239000064,65.25544952500007],[14.48214400200007,65.28867747100004],[14.514286743000099,65.31808136000002],[14.518317505000084,65.36453847200015],[14.511392862000092,65.41706756700002],[14.510359335000116,65.46473907500017],[14.560692179000114,65.70105540000016],[14.570200643000076,65.71671335900014],[14.63706994700007,65.78120554700014],[14.648852172000145,65.80239288400008],[14.644408,65.84290720700002],[14.540538371000109,66.12544810000018],[14.796956828000104,66.13936197950021],[15.053375285000072,66.15327585900013],[15.48187626100008,66.27487050399999],[15.491798136000085,66.28799631800014],[15.489937785000079,66.30848602300001],[15.482082967000052,66.34080963200002],[15.476076322000097,66.35493714300017],[15.429889770000072,66.46356699700006],[15.426272420000087,66.49121388800008],[15.669461711000052,66.59942433700017],[16.03884484800011,66.88754628600005],[16.125661255000125,66.93436513300016],[16.310559529000045,67.00991607700011],[16.3696773690001,67.02428212500011],[16.399649698000076,67.03596099900007],[16.415566040000073,67.05270416300012],[16.443781372000046,67.18261871400013],[16.43789025900014,67.20031789200014],[16.12710819500012,67.42275909500007],[16.180748332000093,67.49639801000008],[16.199558553000088,67.50828359000012],[16.366990193000078,67.52166778600007],[16.428588501000036,67.5340184540001],[16.482952107000102,67.55784128900008],[16.587235148000048,67.62589915000017],[16.608732544000077,67.6472931930001],[16.76190148900008,67.87714996400005],[16.782882121000085,67.89699371400002],[16.8079968670001,67.91063629200012],[17.220064738000076,68.04008575500002],[17.29995650200007,68.09791168200002],[17.32145389800013,68.10530141200002],[17.60841312650012,68.03747609500017],[17.895372355000063,67.96965077800017],[17.921003865000014,67.97285471700003],[17.950769491000102,67.9910964970001],[17.981878703000064,68.016159567],[18.166673625000072,68.15847646200008],[18.188584432000113,68.19873240200012],[18.13566776500005,68.39572296200014],[18.136804647000048,68.42631541000004],[18.15623498500014,68.518609518],[18.16150598200008,68.53018503800016],[18.171841268000065,68.53592112300014],[18.189291148000052,68.53842468300014],[18.43621789500011,68.57385162400014],[18.481796509000105,68.5619660440001],[18.644577270000127,68.50124623600003],[18.70028446400005,68.49561350500007],[19.038144979000066,68.50563873300011],[19.48173547300007,68.42404164700004],[19.931010376000046,68.35019602500007],[19.971214640000085,68.35128123000005],[20.010282023000087,68.36389027899999],[20.245926554000107,68.47737172400012],[19.962222941000046,68.54119211900013],[20.151772095000126,68.606821187],[20.236624796000083,68.65906606099999],[20.338840779000062,68.765467835],[20.3521732990001,68.7856733200001],[20.35651412000007,68.80458689400002],[20.34876265400007,68.89310862300009],[20.34111454300009,68.91005849300008],[20.102266073000095,69.02214467400013],[20.36271529150011,69.02925018350011],[20.623164510000038,69.03635569300009],[20.67546105900004,69.01816558800006],[20.79535038300011,69.01124094699999],[20.86397668500004,68.98628123000002],[20.911208944000094,68.980700175],[20.934566691000043,68.96695424500014],[20.934256632000142,68.94902252200008],[20.91782352700008,68.932951152],[20.88764449000007,68.9270600380001],[20.884543905000044,68.90669952500015],[20.905731242000087,68.89460724000018],[21.072129353000093,68.86944081700015],[21.15284794100012,68.84174224900012],[21.216616658000078,68.81724762000006],[21.275734497000116,68.77642323900007],[21.288343547000068,68.77001536100012],[21.2937178950001,68.76820668600014],[21.300952596000087,68.75921498600009],[21.305396769000083,68.75580434199999],[21.314698527000104,68.7540473430001],[21.38590865100005,68.75384063800013],[21.406372518000126,68.74887969999999],[21.415260864000118,68.73875111900004],[21.421255330000065,68.72748565700009],[21.45153772000009,68.69647979800006],[21.463630005000084,68.68686798100005],[21.49566939300007,68.67549916600014],[21.572460571000136,68.66738596700004],[21.661550740000052,68.63353790300006],[21.716844523000074,68.61922353200008],[21.737101685000084,68.58790761400014],[21.91920943200006,68.568218893],[21.96396122200011,68.54692820300012],[21.969852336000116,68.54083038400016],[21.9984810790001,68.52584421900009],[22.0121236570001,68.51643910800013],[22.024215942000097,68.51044464200011],[22.028763469000122,68.50935943700001],[22.03610152200011,68.50651723300014],[22.03744510900009,68.50005767900008],[22.036721639000092,68.49292633100005],[22.038375285000143,68.488275452],[22.07217167200011,68.47700999000004],[22.303061971000147,68.47613149000006],[22.371068156000035,68.46838002599998],[22.37458215300009,68.46615793900015],[22.37396203600011,68.45633941700011],[22.377992798000037,68.4541173300001],[22.456851034000124,68.45179189100016],[22.52134322100008,68.43820098900007],[22.565164836000065,68.43628896100016]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ukraine","sov_a3":"UKR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ukraine","adm0_a3":"UKR","geou_dif":0,"geounit":"Ukraine","gu_a3":"UKR","su_dif":0,"subunit":"Ukraine","su_a3":"UKR","brk_diff":0,"name":"Ukraine","name_long":"Ukraine","brk_a3":"UKR","brk_name":"Ukraine","brk_group":null,"abbrev":"Ukr.","postal":"UA","formal_en":"Ukraine","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ukraine","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":6,"mapcolor13":3,"pop_est":45700395,"gdp_md_est":339800,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"UP","iso_a2":"UA","iso_a3":"UKR","iso_n3":"804","un_a3":"804","wb_a2":"UA","wb_a3":"UKR","woe_id":23424976,"woe_id_eh":23424976,"woe_note":"Exact WOE match as country","adm0_a3_is":"UKR","adm0_a3_us":"UKR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"UKR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[29.807465040000153,45.614325262000094],[29.73096764400017,45.59137604400011],[29.78126061300023,45.61066315300015],[29.801442905000073,45.621893622000144],[29.809418165000093,45.63165924700009],[29.81478925900015,45.641058661000116],[29.82764733200011,45.64472077000006],[29.8431095710001,45.64618561400012],[29.856700066000172,45.649115302000055],[29.872731967000078,45.65827057500003],[29.901621941000176,45.68048737200009],[29.918711785000113,45.69065989800013],[30.07569420700011,45.79242584800009],[30.125987175000066,45.81146881700009],[29.908050977000098,45.666449286000145],[29.807465040000153,45.614325262000094]]],[[[32.63933353000018,46.060003973000065],[32.783213738000114,46.04633209800012],[32.852061394000174,46.056301174],[32.88168379000009,46.05540599200013],[32.913584832000225,46.03880442900007],[32.954844597000175,46.05174388200008],[32.97868899800008,46.05329010600012],[32.98926842500012,46.04262929900007],[32.9993595710001,46.03530508000007],[33.045095248000194,46.03790924700017],[33.05746504000015,46.02521393400012],[33.04004967500006,46.012152411000116],[32.61939537900011,46.060003973000065],[32.62671959700012,46.06590403900019],[32.63135826900023,46.066229559000114],[32.63933353000018,46.060003973000065]]],[[[32.153086785000106,46.155991929000045],[32.16627037900017,46.14935944200009],[32.143890821000156,46.15265534100002],[32.10181725400011,46.166693427000084],[31.737152540000096,46.220770575000145],[31.580332879000167,46.26276276200004],[31.549001498000134,46.282416083],[31.521983269000057,46.31321849200007],[31.514008009000094,46.32941315300011],[31.50505618600019,46.354925848],[31.50440514400023,46.37335846600014],[31.521983269000057,46.36847565300017],[31.538422071000156,46.325832424000126],[31.554372592000192,46.296332098000065],[31.5779728520001,46.27558014500006],[31.618174675000116,46.259222723000065],[31.940277540000093,46.2045759140001],[32.070811394000174,46.18244049700003],[32.153086785000106,46.155991929000045]]],[[[33.19650557500009,52.36894928000005],[33.29432906100007,52.357296245],[33.35897627700009,52.35755462700014],[33.3761845290002,52.355255025000034],[33.400576080000036,52.34434301700009],[33.40367639200005,52.342956035],[33.41933435100023,52.33833099400012],[33.43731774900012,52.33915781700016],[33.45178715000023,52.34525563600012],[33.46532637600009,52.35274871800006],[33.48051924600023,52.35776133300011],[33.49943282100017,52.34099233000016],[33.493024943000165,52.30313934300007],[33.510078166000056,52.28753306100013],[33.53167891500007,52.288824972000086],[33.60020186400007,52.33078623500007],[33.68794844500022,52.355823466000075],[33.73357873600011,52.360991109000096],[33.77895064300011,52.360060934000145],[33.80406538900016,52.35460907000005],[33.8152274980001,52.345074768000146],[33.82339237500011,52.331458029000075],[33.839102010000175,52.3139138800001],[33.8587390540001,52.30215749100002],[33.900700317000116,52.28585357700017],[33.919510539000015,52.269756369],[33.9444185790002,52.23577911400015],[33.95775109900009,52.22469451900015],[34.021933228000165,52.197900289000174],[34.03888309700008,52.186479798000065],[34.055729614000114,52.170330913],[34.065341431000064,52.15862620100002],[34.07102583800011,52.14896270800007],[34.07360966000007,52.139557597000035],[34.07391971900009,52.12831797300008],[34.05665979000011,52.10581288700014],[34.05665979000011,52.10038686200009],[34.06007043400021,52.08317861000001],[34.062550903000066,52.05020904600015],[34.06823531100022,52.03101125200014],[34.08032759600022,52.013622131000105],[34.101101521000174,51.99251230900007],[34.10440881300005,51.97530405700009],[34.096657349000075,51.960576274000104],[34.09624393700002,51.95181711900001],[34.1461633710002,51.951610413000154],[34.166420533000206,51.9422569790001],[34.203420857000054,51.912310487000084],[34.209415324000105,51.908796489000125],[34.22264449000008,51.9031637580001],[34.228432251000044,51.89926218700013],[34.231016072000074,51.894533794000054],[34.23463342300013,51.88073618600011],[34.23422001200006,51.87828155600012],[34.246002238000216,51.87546519000007],[34.26491581200017,51.881201274000134],[34.27669803900008,51.88122711300004],[34.29457808400011,51.873889059000035],[34.327754353000074,51.8505054730001],[34.34728804600016,51.8416946410001],[34.37110138200014,51.826811306000096],[34.38573531000011,51.81766510100006],[34.41271040900014,51.777693380000116],[34.414157349000135,51.73645558700009],[34.37633020000007,51.708601990000126],[34.356899862000176,51.705553081000104],[34.29819543500011,51.70614735900007],[34.12797326700016,51.68074839300006],[34.08911258900011,51.66661488900002],[34.079500774000195,51.643102112000136],[34.09066288300002,51.63320607600006],[34.126009562000064,51.62700490400006],[34.14006555200015,51.62119130500018],[34.14450972500006,51.613775737000154],[34.148850545000215,51.593208516000075],[34.15298465900016,51.58398427400009],[34.16032271400015,51.57612945600014],[34.20238732900006,51.54615712499999],[34.215409790000216,51.531997783000136],[34.223678019000175,51.51476369200016],[34.22595178200018,51.49287872300012],[34.223781372000104,51.48236256900016],[34.2149963790001,51.46466339200005],[34.212102498,51.45502573700004],[34.21323937900015,51.44481964100005],[34.217063436000075,51.43606048700018],[34.219647258000094,51.42727549199999],[34.217063436000075,51.41706939800012],[34.20879520700012,51.41146250399999],[34.18698775300018,51.40831024200004],[34.18192346100014,51.402341614000115],[34.18585087100009,51.39415089900008],[34.19597945100022,51.38562428800016],[34.21571984800019,51.373764547000135],[34.230499308000134,51.36766672800009],[34.24734582500011,51.363429260000046],[34.26439904800023,51.361207174000135],[34.28031538900004,51.36125885000014],[34.30015913900016,51.368390198],[34.30873742700006,51.33461965000011],[34.28362268100008,51.30123667400015],[34.24393518100018,51.27408071000015],[34.1859542240002,51.24891428600012],[34.25788781700007,51.229561462000056],[34.281762329000145,51.22643503900012],[34.29953902200006,51.23162852000003],[34.33695275900007,51.251136374000126],[34.371782674000116,51.256846619],[34.40898970600019,51.25312591600009],[34.480406535000014,51.236977031],[34.51347945100011,51.229561462000056],[34.57817834500011,51.23669281000012],[34.608357381000104,51.23400563600008],[34.622413371000135,51.22475555500007],[34.62851119000007,51.211061300000054],[34.633162069000065,51.19561004700013],[34.64277388500014,51.18062388100016],[34.65744999200015,51.17165802100014],[34.67491662600017,51.167678935000154],[34.74809045400016,51.164733379000054],[34.8175435790001,51.17473276800017],[34.899605754000135,51.19646270800008],[34.94611454200017,51.21429107700011],[34.961824178000114,51.215324605000106],[34.98032434100017,51.20953684600011],[34.99944462000016,51.20209543900001],[35.018771606000115,51.20455007000008],[35.03871870900011,51.210156962],[35.059389282000126,51.212327373000086],[35.07871626800008,51.207624817000024],[35.091325318000116,51.19767710400011],[35.09918013500007,51.18318186500006],[35.123778117000114,51.0913270060001],[35.14362186700012,51.05848663400009],[35.17256066900009,51.04063242700015],[35.20646040800008,51.03892710400008],[35.27425988700023,51.048797302000146],[35.30867639200008,51.04732452500015],[35.32841678900016,51.04316457100013],[35.34640018700022,51.036601664000145],[35.35508182700019,51.02559458500015],[35.346710245000196,51.00825714100013],[35.332550904000044,50.99993723600009],[35.27808394400009,50.9926508590001],[35.2822180580001,50.981540426],[35.2822180580001,50.961107412],[35.2822180580001,50.95425527000007],[35.284801880000174,50.94433339500007],[35.29358687300018,50.937615458000046],[35.317151327000175,50.934204814000125],[35.32914025900001,50.92908884700013],[35.34174930800023,50.91585968000014],[35.34298954200019,50.90412913000016],[35.34040572100011,50.891830139000106],[35.34143925000009,50.87648223900014],[35.34857059700019,50.86376983700008],[35.36903446500017,50.84604482000015],[35.377716105000125,50.833745830000126],[35.37967981000017,50.819586487],[35.377406047000164,50.8075458790001],[35.3790596920002,50.79721059200001],[35.393115682000115,50.7883739220001],[35.41823042800016,50.77891713500013],[35.429392537000155,50.77214752200008],[35.438487590000165,50.762380676000035],[35.447065878000075,50.73432037300002],[35.44375858600008,50.709464010000076],[35.44541223100012,50.687501527000094],[35.468873332000186,50.668536275000136],[35.39156538900008,50.646367087000115],[35.37616581200021,50.63458486000012],[35.377716105000125,50.62182078100015],[35.42525842300003,50.50048451800008],[35.4464457600001,50.47604156500013],[35.48013879400017,50.466894837000055],[35.50194624800011,50.46431101500015],[35.52272017400011,50.45950510700014],[35.540806925000226,50.45004832000008],[35.554656209000115,50.43325348000011],[35.562304321000084,50.4096373500001],[35.56385461500011,50.391808980000135],[35.57015913900014,50.376461080000084],[35.59217329900011,50.360493062000145],[35.61139693200013,50.35170806900005],[35.63155074100009,50.344990133000024],[35.65211796100019,50.341114401000155],[35.673201945000216,50.34018422500013],[35.69221013400008,50.344168474000085],[35.69686975100015,50.345145162000065],[35.71030562300009,50.355635478000025],[35.721261027000054,50.36870961600009],[35.73769413300013,50.381577047000164],[35.74616906800023,50.38395416300001],[35.76539270100008,50.38452260400008],[35.77438439900013,50.3868997200001],[35.78554650800007,50.394496155000084],[35.80539025900012,50.41216949500007],[35.81934289500012,50.41904246000014],[35.83742964600012,50.423228251000076],[35.9318941650001,50.43015289300017],[36.10583703600017,50.42110951800011],[36.133225546000205,50.41160105400003],[36.140770304000085,50.392945862000076],[36.169295695000216,50.38369578100004],[36.26903120900013,50.28137644500005],[36.29197554500015,50.27403839100005],[36.31585005700006,50.27486521400009],[36.33951786300017,50.28147979700016],[36.361428670000095,50.29166005500004],[36.38096236200013,50.3040623990001],[36.38799035600002,50.30643951500015],[36.40018599400011,50.30664622000002],[36.410004516000214,50.30457916300004],[36.43057173600019,50.29687937400014],[36.45268925000019,50.29357208200015],[36.480181111000064,50.280859681000024],[36.51211714700016,50.27641550700009],[36.5211088460002,50.27409006800015],[36.536405070000136,50.26752716099998],[36.53888553900006,50.26504669200001],[36.536095012000175,50.26091257700007],[36.53392460100011,50.23869171200015],[36.53165083800016,50.228821513000135],[36.53464807200007,50.219933167000065],[36.54953088400012,50.21218170200014],[36.57102828000009,50.206910706000095],[36.59438602700013,50.204430237000125],[36.61691695200014,50.206393942000076],[36.63583052600009,50.21404205400013],[36.64440881400011,50.22225860600018],[36.66042850800014,50.24385935500005],[36.669833618000126,50.25300608300013],[36.68264937300009,50.26065419600012],[36.8486340740001,50.32369944300014],[36.914056437000085,50.33909902000012],[36.98009891800021,50.34214792900015],[37.05172245200018,50.335326640000105],[37.19703658000017,50.362405091000156],[37.226698853000215,50.377081198000056],[37.28519657400008,50.41527008100003],[37.31475549400014,50.4229698700001],[37.41521447800002,50.43185821600004],[37.43526493300007,50.42493357300005],[37.45025109900004,50.398992005000096],[37.46379032400014,50.366539205],[37.48001672400002,50.34002919500007],[37.56817671700011,50.31253733400011],[37.59918257600012,50.290884908000024],[37.601559692000166,50.24902699800005],[37.59153446400015,50.22530751600003],[37.58864058500014,50.21461049400001],[37.59029423000018,50.20381012000017],[37.59711551900014,50.19693715400011],[37.63184208200018,50.17409617100019],[37.72765018700013,50.07870147700008],[37.76341027900011,50.06257843100009],[37.8427852780002,50.039117330000025],[37.881749308000195,50.02304596000006],[37.91585575400009,50.00330556300018],[37.94655155500018,49.978190816000065],[37.979004353000136,49.941448873000084],[37.98003788200012,49.93958852200008],[37.99533410600023,49.92134674100011],[37.99585087000011,49.90589548800004],[38.00039839700011,49.89979766900016],[38.02292379300016,49.90914218900018],[38.06654423000012,49.92723785400004],[38.0791532790001,49.929925029000124],[38.09031538900015,49.92842641300014],[38.10840214100008,49.92067494700014],[38.11904748600008,49.91917633100003],[38.1661763920001,49.940570374000124],[38.17134403500009,49.98408193000007],[38.16410933400012,50.03038401400015],[38.17392785600006,50.06014963800014],[38.18984419700021,50.06278513600013],[38.25381962000009,50.059064433000124],[38.281208130000124,50.06242340100006],[38.29991499900021,50.060511373000125],[38.31407434100006,50.049504294000045],[38.34415002400013,49.99209177700014],[38.35603560400008,49.98056793200011],[38.37629276500016,49.974935201000086],[38.42011438000006,49.97178293900011],[38.4377877200001,49.96728709000011],[38.46114546700013,49.956900127],[38.497525675000105,49.94816680900003],[38.570182740000035,49.956641744000095],[38.61948205600007,49.95075063100002],[38.62888716600011,49.95333445200011],[38.63777551300021,49.957210185000164],[38.66216678900011,49.96258453400013],[38.66464725700021,49.96516835600012],[38.66433719900013,49.96268788700014],[38.672812134000225,49.942999166],[38.67560266100011,49.92703114900014],[38.680977010000134,49.91829783100009],[38.687281535000146,49.91380198200007],[38.747846313000224,49.885431621000166],[38.85223270700007,49.86579457700013],[38.88633915200014,49.845175680000025],[38.910523722000136,49.82057769800004],[38.93739546700013,49.80347279900009],[39.03227339700018,49.80734853200015],[39.04911991400016,49.81055247000002],[39.06834354700018,49.82109446200017],[39.09986617000007,49.851635234000085],[39.11712609800023,49.86439931300004],[39.15578007000008,49.873597718000056],[39.1810055170001,49.85948693100011],[39.18275516800011,49.85850819900004],[39.23804895100008,49.76512888600017],[39.260889934,49.74450999000008],[39.28993208900013,49.73205597],[39.327655884000166,49.726319885000024],[39.36724003100019,49.73184926400013],[39.40599735500015,49.74425160800011],[39.443617798000076,49.74952260300013],[39.479894653000116,49.73360626300011],[39.49911828600014,49.72812856000003],[39.557512655000124,49.723994446000106],[39.57043176300013,49.71329742500008],[39.58159387200007,49.690714823000135],[39.59740686100022,49.64797841500014],[39.622935018000106,49.61345855800006],[39.65332076000007,49.599815980000145],[39.68866744000016,49.593459778000025],[39.72918176300007,49.58079905199999],[39.78106490100006,49.54839792899999],[39.80152876800011,49.54219675700001],[39.82871057100007,49.541473288000084],[39.85940637200022,49.5455557260001],[39.889378703000176,49.55325551300011],[39.91470015500008,49.56297068400014],[39.97402469900007,49.602554830000095],[39.99810591600013,49.60823923800014],[40.01774296000016,49.607877503000154],[40.115514770000146,49.59056589800004],[40.11850409600018,49.588451001000024],[40.130707642000026,49.579817201000125],[40.12605676300009,49.55909495100009],[40.110657186000104,49.54534901900014],[40.072003214000205,49.53067291300006],[40.05432987500009,49.51976918600012],[40.0348995360001,49.48705800400001],[40.04089400200016,49.45548370400006],[40.06197798700006,49.42582143200018],[40.101355429000165,49.3854621380001],[40.148070923000176,49.34959869400008],[40.15954309100018,49.333579000000114],[40.15716597500014,49.315853984000015],[40.14269657400021,49.28190256800018],[40.14166304500023,49.245780741000075],[40.134014934000135,49.23627227900009],[40.1102437750001,49.227642314000136],[40.09091678900015,49.21725535100002],[40.057740519000134,49.182787171000044],[40.03841353300018,49.16852447600017],[39.97960575400012,49.14185943700012],[39.95211389200014,49.12454783200003],[39.93092655400008,49.10056996700011],[39.92606897000016,49.08651397699999],[39.92338179500021,49.05798858700014],[39.918730916000044,49.04780833000008],[39.907258749000135,49.04258901000007],[39.89134240700011,49.04176218700003],[39.86199019400013,49.04512115600015],[39.831501099000064,49.045276184],[39.74892216000009,49.026207581],[39.69827925600006,49.028377991000085],[39.681122681000176,49.020316468000104],[39.673991333000146,48.970138652000074],[39.68753055800002,48.95758127900014],[39.70778772000003,48.948796286000075],[39.72597782400007,48.93701405900008],[39.739413696000014,48.91897898300006],[39.747371867000105,48.90533640600016],[39.758740682000195,48.895414531000156],[39.78230513500008,48.88843821300016],[39.861886841000086,48.876449280000095],[39.896510051000206,48.87991160100015],[39.908188924000086,48.878412984000065],[39.91862756400022,48.872470195000126],[39.9376444910001,48.856243795000026],[39.95035689300008,48.852781474],[39.97226770000012,48.86032623300004],[39.989941040000105,48.8756741340001],[40.008854614000114,48.887818095000014],[40.03427941900023,48.885596009],[40.05381311000016,48.869214580000126],[40.05277958200005,48.84973256500014],[40.03872359300007,48.829992168],[40.019603312000044,48.81314565100003],[39.975264933000204,48.78968455000013],[39.934957317000084,48.78668731700012],[39.824163046000166,48.81562612],[39.80121871000014,48.81490264899999],[39.7794112550001,48.80771962500013],[39.75936079900006,48.79283681200009],[39.75119592300021,48.781881409000114],[39.744477987000124,48.77051259400004],[39.7363131110001,48.7615208940001],[39.71140507000021,48.754802959000145],[39.702930135000116,48.74658640500003],[39.64184859200023,48.611710918000185],[39.631720011000056,48.58690623000014],[39.67027063000015,48.58840484700015],[39.69011437900022,48.59367584199999],[39.809176880000194,48.583753968000096],[39.8353251550001,48.57347035800008],[39.85506555200007,48.55610707699999],[39.862713664000154,48.53006215500001],[39.863850546000066,48.52274994000011],[39.86612430800008,48.51703969300014],[39.86850142400012,48.51290557900013],[39.86953495300011,48.50990834600013],[39.86540083800017,48.50148508800013],[39.85599572800012,48.49936635300015],[39.846693969000086,48.49983144100018],[39.842146444000065,48.499056295000074],[39.84473026600003,48.48350168900005],[39.85434208200016,48.47544016500013],[39.86478072100007,48.469833273000134],[39.89619999200013,48.423918763000145],[39.90684533700013,48.39833892800003],[39.914493449000105,48.38469635100002],[39.92410526600011,48.37611806300008],[39.90147098800017,48.361183574],[39.88410770600015,48.346352438000096],[39.81589481600011,48.3081635540001],[39.884831177000166,48.27899220799999],[39.90519169100017,48.28064585400013],[39.957384888000064,48.29338409500009],[39.97888228400021,48.29007680299999],[39.993248332000206,48.273230286000015],[39.99066451000007,48.25374827100002],[39.97764204900008,48.23545481400005],[39.96048547400019,48.2220706180001],[39.91263309700011,48.197679342000086],[39.893719523000044,48.1829773970001],[39.843076619000186,48.11975128200011],[39.831191040000164,48.09998504700006],[39.82902063000009,48.07678232900003],[39.84431685400014,48.045673116],[39.84297326600009,48.036397197000056],[39.84028609200007,48.035001933],[39.833568156000204,48.03619049100011],[39.77879113800023,48.02921417300003],[39.76814579200007,48.02433075],[39.75987756300017,48.01495147800013],[39.76194462100014,48.009783834000025],[39.77010949700016,48.004099427000185],[39.78023807800011,47.99314402300002],[39.79439742000008,47.97131073100008],[39.796154419000146,47.96136301700007],[39.79398400900007,47.945705058000115],[39.7904700120001,47.93774688800006],[39.77982466600011,47.922476502],[39.777034139000165,47.913743185000136],[39.777550903000105,47.90658599900008],[39.782098430000104,47.89289174500008],[39.78292525200007,47.88656138200015],[39.77558719900017,47.85801015200009],[39.75905074100015,47.83294708300009],[39.733832642,47.81599721300007],[39.70075972500015,47.81152720100006],[39.600610799,47.82948476200014],[39.570018351000186,47.83093170200014],[39.50935022000012,47.82276682600003],[39.479894653000116,47.826125794000134],[39.45705367000019,47.83129343700012],[39.413955525000084,47.823180237000045],[39.391631307000154,47.82261179600009],[39.37354455600021,47.828296204000125],[39.34005822700012,47.84356659000015],[39.31969771300007,47.84602122000014],[39.17355676300011,47.837055359000104],[39.13324914600011,47.82953643800006],[39.1135087480001,47.82855458600001],[39.09294152800007,47.83209442100015],[39.03909468600014,47.8569249480001],[39.03618022000015,47.85700264800015],[38.87724410000018,47.86123993000008],[38.83094201700007,47.84824330600004],[38.79621545400008,47.819924622000045],[38.770997355000105,47.78083140100013],[38.7533240160001,47.7351494350001],[38.745159139000094,47.69311065699999],[38.734513794000094,47.67714263900014],[38.713016398000065,47.675721538000076],[38.67787642400012,47.68517832500014],[38.66216678900011,47.683292135000116],[38.64335656700021,47.67352528900007],[38.60635624200009,47.64505157500004],[38.58764937300011,47.63430287700011],[38.562224569000165,47.62662892700002],[38.35293501800001,47.607095236000035],[38.31903527800009,47.59130808500013],[38.29340376800022,47.56278269500008],[38.274386840000176,47.52784942699999],[38.26033085100008,47.49294199700002],[38.263638142000076,47.421706035000156],[38.25795373600013,47.3932323210001],[38.23335575300021,47.362407328000025],[38.20338342300019,47.334631246000086],[38.19056766800011,47.31690623000015],[38.18870731600012,47.30098988900015],[38.20100630700003,47.290628764000026],[38.220333293000095,47.288794251000056],[38.25764367700012,47.29274749800011],[38.27573042900022,47.29181732200006],[38.29185347500001,47.28703725200016],[38.3009485270002,47.27603017200006],[38.29815800000014,47.25603139200005],[38.284722127000094,47.241148580000086],[38.26394820200002,47.23153676400007],[38.241313924000195,47.223940328000126],[38.22250370200018,47.21523284900014],[38.20348677600012,47.19231435200011],[38.19697554500013,47.16239369800009],[38.20141971900014,47.130741883],[38.21665863816153,47.103267004541905],[38.21664472700016,47.10325755400011],[38.21648196700019,47.103094794000135],[38.196299675000056,47.08950429900001],[38.14226321700019,47.037665106000084],[38.10808353000019,47.02635325700011],[38.130381707000225,47.05841705900009],[38.13005618600019,47.07465241100014],[38.10434004000015,47.08161041900002],[38.07154381600017,47.09979889500012],[38.066579623000194,47.09808991100011],[38.06104576900006,47.09495677300005],[38.03516686300006,47.08429596600003],[38.02621504000015,47.08161041900002],[37.987640821000156,47.09194570500013],[37.96208743600019,47.09593333500011],[37.950450066000165,47.091253973],[37.861094597000175,47.10150788000011],[37.7532658210001,47.075262762000094],[37.710297071000156,47.07416413000006],[37.580739780000016,47.09039948100009],[37.54639733200011,47.08161041900002],[37.48292076900006,47.03595612200009],[37.37794030000006,46.93390534100003],[37.351735873000024,46.89874909100014],[37.33521569100017,46.88247304900004],[37.31299889400012,46.87555573100003],[37.31739342500006,46.90082428600009],[37.295420769000174,46.920233466000084],[37.26075280000006,46.93268463700009],[37.22706139400006,46.9369977890001],[37.20818118600007,46.93357982],[37.16228274800008,46.90908437700007],[37.04656009200008,46.877752997000115],[37.028819207000055,46.87555573100003],[37.01775149800014,46.87128327],[36.98487389400022,46.85248444200006],[36.97380618600018,46.84829336100013],[36.9388126960001,46.83950429900006],[36.88624108200017,46.804022528000175],[36.853688998000194,46.800482489],[36.862478061000076,46.77692291900014],[36.849131707000225,46.75446198100006],[36.829600457000055,46.731878973000065],[36.81959069100017,46.707668361000074],[36.812266472000175,46.68056875200013],[36.79371178500016,46.653631903000175],[36.76929772200012,46.63739655200014],[36.743825717000135,46.64215729400003],[36.743825717000135,46.649603583000115],[36.751231316000116,46.649603583000115],[36.77165774800008,46.64345937700012],[36.79029381600017,46.6712914080001],[36.80225670700011,46.70701732000013],[36.80250084700012,46.724758205000015],[36.794281446000156,46.729193427],[36.75806725400011,46.75885651200004],[36.74284915500007,46.76471588700015],[36.71013431100013,46.77277252800012],[36.69605553500017,46.77997467700014],[36.679209832000055,46.77301666900014],[36.661631707000225,46.773749091000084],[36.633962436000076,46.77997467700014],[36.61703535200016,46.77667877800009],[36.60596764400012,46.76943594000009],[36.597829623000194,46.76215241100006],[36.590017123000194,46.75885651200004],[36.52409915500007,46.75885651200004],[36.48267662900017,46.7416852890001],[36.432465040000096,46.73484935099999],[36.40015709700012,46.72394440300012],[36.37110436300006,46.708441473],[36.30347741000011,46.65924713700018],[36.284353061000076,46.63641998900005],[36.27833092500006,46.60740794499999],[36.2708439460001,46.60740794499999],[36.27116946700019,46.62221914300015],[36.26758873800023,46.62555573100017],[36.257823113000114,46.62173086100016],[36.2478947270001,46.61904531500009],[36.24675540500007,46.61273834800015],[36.24577884200008,46.61082591400019],[36.24073326900022,46.61994049700017],[36.243337436000076,46.62409088700012],[36.244476759000094,46.630519924000126],[36.244313998000194,46.63532135600012],[36.23292076900023,46.640692450000174],[36.23064212300008,46.64215729400003],[36.22185306100013,46.654038804],[36.216644727000094,46.65867747600011],[36.20997155000006,46.66266510600009],[36.189463738000114,46.66901276200012],[36.1717228520001,46.66860586100002],[36.13445071700002,46.66266510600009],[36.06202233200011,46.67011139500006],[35.925547722000175,46.65228913],[35.901621941000116,46.65273672100009],[35.82715905000006,46.62335846600008],[35.77116946700019,46.601263739],[35.741953972000175,46.584418036],[35.66130618600002,46.51927317900008],[35.628672722000175,46.498480536],[35.510508660000106,46.45722077000012],[35.491465691000116,46.44798411699999],[35.47575931100019,46.435695705000015],[35.445485873000194,46.405991929],[35.43002363400015,46.395575262000094],[35.395030144000174,46.37860748900012],[35.380137566000116,46.36847565300017],[35.284515821000156,46.259222723000065],[35.27955162900017,46.2551537130001],[35.2635197270001,46.24225495000009],[35.20948326900011,46.16986725500014],[35.18474368600002,46.14549388200008],[35.16179446700002,46.12824127800015],[35.12110436300023,46.11847565300003],[35.09652754000015,46.10419342700014],[35.062266472000175,46.09861888200011],[35.038584832000225,46.086086330000036],[35.00001061300006,46.073635158000016],[34.98210696700013,46.07782623900012],[34.98536217500006,46.08746979400011],[35.017100457000225,46.112779039000046],[35.051931186000076,46.12824127800015],[35.04908287900011,46.13206614799999],[35.04444420700011,46.14191315300009],[35.14893639400012,46.16412995000014],[35.200450066000165,46.1830101580001],[35.227875196000156,46.22174713700004],[35.2518009770001,46.24022044500005],[35.26221764400012,46.2573102890001],[35.29135175900015,46.293361721000146],[35.327810092000135,46.31924062700007],[35.342133009000094,46.335760809000035],[35.346039259000094,46.361029364],[35.32886803500017,46.34804922100001],[35.31153405000006,46.33763255400011],[35.29175866000017,46.33641185099999],[35.26758873800023,46.3510602890001],[35.25855553500011,46.37335846600014],[35.26449629000015,46.399807033000016],[35.284515821000156,46.43740469000012],[35.27711022200012,46.44074127800015],[35.26091556100019,46.44159577000015],[35.25049889400012,46.443548895],[35.24317467500012,46.446966864],[35.2303166020001,46.455511786000116],[35.21461022200011,46.462632554],[35.20167076900012,46.47630442900011],[35.19141686300006,46.49428945500016],[35.188324415000096,46.51243724200005],[35.16667728000019,46.49315013200011],[35.174001498000194,46.47333405200003],[35.192067905,46.45506419500013],[35.20199629000015,46.440497137000094],[35.205088738000114,46.427557684000085],[35.21070397200012,46.42015208500011],[35.213715040000096,46.411810614000146],[35.20948326900011,46.396429755],[35.20150800900015,46.385321356000176],[35.16781660200016,46.361029364],[35.10840905000011,46.29775625200013],[35.105072462000095,46.29507070500016],[35.075043165000096,46.27106354400003],[35.03077233200016,46.25177643400018],[34.93604576900006,46.23541901200015],[34.92652428500017,46.235052802000055],[34.91407311300006,46.238104559000035],[34.90805097700015,46.244289455000015],[34.907237175000056,46.251654364],[34.90479576900012,46.25568268400018],[34.89356530000012,46.25177643400018],[34.886566602000094,46.24274323100014],[34.88542728000019,46.231390692],[34.882172071000156,46.22174713700004],[34.838877800000056,46.207668361000074],[34.83513431100002,46.20319245000003],[34.81763756600017,46.186224677000055],[34.81226647200011,46.17666250200007],[34.81128991000017,46.16624583500008],[34.813243035000106,46.15827057500003],[34.81910241000011,46.14191315300009],[34.82422936300017,46.07794830900009],[34.82894941500015,46.06342194200006],[34.83855228000007,46.04755280200014],[34.874359571000156,45.926092841000134],[34.88347415500007,45.912827867000104],[34.895192905000016,45.90102773600013],[34.90503991000017,45.88861725500011],[34.958181186000076,45.78953685100005],[35.04444420700011,45.670070705000015],[35.332204623000194,45.37124258000016],[35.48072350400011,45.29779694200006],[35.51783287900011,45.29547760600009],[35.69499759200002,45.33038971600011],[35.71599368600019,45.34056224200005],[35.743337436000076,45.3610700540001],[35.7474064460001,45.37075429900007],[35.74854576900022,45.37970612200009],[35.75294030000012,45.38641998900014],[35.767425977000094,45.38898346600014],[35.77271569100017,45.392279364],[35.7884220710001,45.40745677299999],[35.79175866000017,45.41229889500006],[35.794932488000114,45.43056875200013],[35.803965691000116,45.44916413000011],[35.81714928500017,45.464056708000086],[35.833262566000116,45.470892645],[35.85767662900011,45.46942780200014],[35.86003665500007,45.45954010600003],[35.85222415500007,45.44415924700008],[35.84693444100017,45.42625560100011],[35.85401451900023,45.41400788000006],[35.871104363000114,45.404120184000064],[35.9466251960001,45.372137762000065],[35.98601321700019,45.36273834800012],[36.022308790000096,45.36810944200009],[36.05176842500006,45.39520905200011],[36.06527754000015,45.425482489],[36.06885826900011,45.429999091000134],[36.09636478000007,45.44196198100009],[36.11793053500016,45.45709870000009],[36.13746178500011,45.46206289300012],[36.25245201900023,45.46149323100015],[36.26783287900017,45.467230536000145],[36.284027540000096,45.476629950000145],[36.29997806100002,45.47333405200011],[36.30738366000011,45.4609235700001],[36.298838738000114,45.443019924000126],[36.31169681100002,45.44350820500013],[36.32105553500017,45.448391018],[36.32976321700002,45.454250393000144],[36.34050540500007,45.457261460000055],[36.3596297540001,45.4544945330001],[36.39136803500017,45.43964264500012],[36.41179446700008,45.436224677000105],[36.47055097700016,45.4457868510001],[36.49057050900015,45.443019924000126],[36.51587975400017,45.419745184000035],[36.53296959700012,45.40892161700005],[36.54859459700012,45.41229889500006],[36.56666100400011,45.42519765800007],[36.58326256600017,45.42739492400007],[36.59880618600019,45.42121002800009],[36.61353600400017,45.408880927000055],[36.63111412900011,45.37474192900005],[36.63835696700002,45.35126373900008],[36.63086998800017,45.34056224200005],[36.59831790500019,45.33429596600011],[36.58619225400011,45.33380768400012],[36.57488040500013,45.3360863300001],[36.54517662900011,45.34739817900008],[36.521820509000094,45.349920966000084],[36.50245201900006,45.346869208],[36.48926842500012,45.336330471000124],[36.48438561300017,45.31639232000005],[36.48796634200002,45.30931224199999],[36.49439537900011,45.30524323100003],[36.49724368600019,45.300726630000085],[36.49057050900015,45.29218170800005],[36.48210696700019,45.28880442900014],[36.45932050900015,45.287746486000074],[36.45036868600002,45.28534577000012],[36.437266472000175,45.27204010600012],[36.42603600400017,45.251532294000135],[36.41797936300023,45.229925848000065],[36.409434441000116,45.17112864800008],[36.408864780000016,45.14948151200018],[36.41480553500017,45.128363348000065],[36.442230665000096,45.10651276200012],[36.45533287900017,45.09162018400015],[36.45337975400011,45.07648346600017],[36.44011478000019,45.06745026200015],[36.367849155000016,45.048773505],[36.27849368600019,45.04584381700006],[36.267751498000194,45.043687242000075],[36.257823113000114,45.03896719000015],[36.253916863000114,45.03318919499999],[36.248220248000194,45.01609935100005],[36.244313998000194,45.01097239800013],[36.22461998800006,45.00751373900011],[36.13599694100017,45.02142975500011],[36.079112175000056,45.046372789000046],[36.079112175000056,45.03896719000015],[36.04786217500006,45.048773505],[36.02540123800006,45.03290436400005],[36.00847415500019,45.009751695000105],[35.99341881600017,44.99799225500014],[35.916840040000096,45.00141022300015],[35.84799238400014,44.99241771000011],[35.82781009200019,44.99921295800006],[35.81902103000007,45.02155182500008],[35.81299889400022,45.031642971000146],[35.78321373800023,45.057521877000156],[35.77116946700019,45.065619208],[35.7063908210001,45.09467194200006],[35.634043816000116,45.11469147300012],[35.59058678500011,45.11985911700013],[35.54737389400011,45.11969635600015],[35.50619550900014,45.11351146],[35.469574415000096,45.101019598],[35.41675866000011,45.07086823100014],[35.40805097700016,45.062486070000105],[35.405528191000116,45.05097077000006],[35.400401238000114,45.04287344000014],[35.39730879000015,45.035060940000065],[35.40064537900017,45.02464427300008],[35.40650475400011,45.020086981000034],[35.4353947270001,45.01097239800013],[35.4353947270001,45.00482819200006],[35.42212975400011,45.00043366100006],[35.38941491000017,45.001939195000105],[35.37403405000012,44.99799225500014],[35.362152540000146,44.986558335],[35.360606316000116,44.97357819200009],[35.367198113000114,44.94334544499999],[35.31934655000006,44.97003815300009],[35.31527754000009,44.966050523000135],[35.30494225400011,44.9609235700001],[35.298187696000156,44.95636627800015],[35.273203972000175,44.966986395],[35.256032748000024,44.95868561400012],[35.23316491000011,44.925685940000065],[35.21509850400011,44.914374091000084],[35.171885613000114,44.90717194200006],[35.15430748800006,44.90110911700005],[35.12973066500015,44.86859772300009],[35.10840905000011,44.82493724199999],[35.08082116000017,44.79376862200009],[35.03760826900006,44.79877350500014],[35.02702884200002,44.80939362200009],[35.01783287900017,44.823187567],[35.00570722700016,44.835191148000106],[34.986013217000135,44.840277411000116],[34.9524845710001,44.84153880400005],[34.94206790500019,44.840277411000116],[34.93018639400023,44.83612702],[34.92261803500017,44.83087799700011],[34.916026238000114,44.82534414300009],[34.90788821700019,44.82050202],[34.88990319100017,44.81810130400008],[34.85718834700012,44.82371653900016],[34.842621290000096,44.816717841000084],[34.82650800900015,44.81183502800012],[34.75700931100013,44.82050202],[34.72095787900017,44.810980536000116],[34.65064537900011,44.77728913000011],[34.61304772200012,44.765204169000114],[34.533213738000114,44.75291575700005],[34.500010613000114,44.742621161000116],[34.47527103000013,44.72361888200014],[34.47437584700011,44.72638580900009],[34.47437584700011,44.72890859600001],[34.47331790500007,44.73029205900009],[34.46900475400017,44.72980377800009],[34.42937259200002,44.689642645],[34.42400149800008,44.682684637000094],[34.41431725400011,44.67377350500006],[34.38021894600009,44.63133372599999],[34.341156446000156,44.55849844000015],[34.331309441000116,44.54547760600015],[34.32276451900012,44.54352448100012],[34.30030358200011,44.54559967700011],[34.28614342500006,44.54539622599999],[34.27540123800006,44.546372789000046],[34.27100670700011,44.54547760600015],[34.26612389400012,44.54193756700009],[34.26579837300019,44.538967190000065],[34.26612389400012,44.535834052],[34.2635197270001,44.53188711100002],[34.24293053500017,44.507473049000154],[34.2298283210001,44.49990469],[34.182465040000096,44.49282461100013],[34.170095248000024,44.481634833000115],[34.16081790500019,44.466457424000126],[34.14747155000006,44.44989655200008],[34.13648522200012,44.44196198100012],[34.10254967500006,44.42511627800012],[34.088715040000096,44.42202383000013],[34.0657658210001,44.41962311400009],[33.95785566500015,44.38300202000006],[33.93775475400011,44.381048895],[33.914886915000096,44.383775132],[33.85206139400023,44.401516018000066],[33.83961022200012,44.40119049700014],[33.81861412900017,44.395982164000046],[33.80762780000012,44.39468008000016],[33.74122155000012,44.39590078300007],[33.72095787900017,44.399644273000106],[33.645355665000096,44.42511627800012],[33.63168379000015,44.43431224199999],[33.62614993600002,44.45302969000015],[33.62012780000011,44.462225653000026],[33.59001712300019,44.49005768400018],[33.57837975400017,44.49705638200005],[33.56039472700016,44.49628327000015],[33.53907311300006,44.49160390800004],[33.51758873800023,44.49054596600017],[33.499522332000225,44.50079987200009],[33.487152540000096,44.510321356000084],[33.37964928500017,44.56452057500014],[33.37232506600017,44.576483466000084],[33.37134850400011,44.58795807500003],[33.37110436300023,44.58844635600012],[33.37501061300023,44.58539459800012],[33.40544681100019,44.59023672100001],[33.413828972000175,44.593329169000086],[33.43588300900014,44.60529205900012],[33.44499759200008,44.606919664000046],[33.46648196700008,44.60578034100011],[33.47738691500015,44.606634833],[33.485524936000076,44.61033763200005],[33.500010613000114,44.61391836100001],[33.55111738400009,44.61465078300013],[33.57154381600017,44.62055084800009],[33.557790561000076,44.62433502800012],[33.525157097000175,44.62885163000006],[33.51628665500007,44.6342634140001],[33.51482181100019,44.649115302000084],[33.52361087300008,44.66144440300003],[33.535655144000174,44.67218659100003],[33.54420006600017,44.682684637000094],[33.548350457000225,44.698675848],[33.5467228520001,44.70954010600009],[33.536794467000185,44.72980377800009],[33.53044681100007,44.75731028900004],[33.525157097000175,44.77240631700015],[33.51628665500007,44.78510163],[33.52418053500011,44.789699611000124],[33.527679884000094,44.79319896000011],[33.53052819100017,44.79877350500014],[33.53736412900016,44.81899648600016],[33.546071811000076,44.83690013200011],[33.55958092500012,44.84975820500013],[33.59831790500007,44.859320380000106],[33.60922285200016,44.87173086100016],[33.61605879000015,44.889105536000116],[33.61988366000017,44.908636786000116],[33.61963951900023,44.931463934000035],[33.60857181100019,44.970607815000065],[33.60564212300008,44.987453518000066],[33.602793816000116,44.993394273000014],[33.585215691000116,45.01845937700001],[33.581797722000175,45.02749258],[33.57837975400017,45.05320872600005],[33.56251061300023,45.09393952000012],[33.53744550900015,45.11737702],[33.469086134000094,45.148830471000124],[33.413422071000156,45.18451569200006],[33.39649498800006,45.18976471600014],[33.35515384200002,45.18573639500009],[33.317637566000116,45.17548248900006],[33.282562696000156,45.16054922100001],[33.25961347700016,45.15607330900015],[33.2493595710001,45.165594794000135],[33.24008222700015,45.17963288],[33.218516472000175,45.18744538],[33.173594597000175,45.19660065300017],[33.15837649800008,45.2067731790001],[33.12330162900011,45.23786041900002],[33.09848066500015,45.248114325000145],[33.090017123000194,45.25665924700017],[33.07862389400023,45.271673895],[33.06934655000006,45.27655670800006],[33.05176842500006,45.281642971000096],[33.04322350400011,45.28534577000012],[32.97657311300023,45.3256696640001],[32.940603061000076,45.342515367000104],[32.89926191500015,45.35423411699999],[32.750173373000024,45.36334870000009],[32.72852623800023,45.3610700540001],[32.7127384770001,45.353176174000126],[32.677419467000185,45.325995184000035],[32.66309655000012,45.32013580900018],[32.59148196700008,45.32013580900018],[32.5701603520001,45.32518138200011],[32.53541100400017,45.33803945500013],[32.512868686000076,45.34056224200005],[32.485850457000105,45.39492422100007],[32.48161868600019,45.408880927000055],[32.495127800000056,45.43553294499999],[32.52515709700012,45.45815664300012],[32.64356530000012,45.52167389500015],[32.66309655000012,45.52558014500012],[32.686208530000066,45.52700429900001],[32.70484459700012,45.53107330900015],[32.72046959700012,45.53733958500011],[32.734711134000094,45.54539622600005],[32.74382571700019,45.552883205000015],[32.74976647200012,45.55963776200015],[32.75782311300006,45.564642645],[32.772959832000055,45.56655508000016],[32.78305097700016,45.56537506700012],[32.80241946700008,45.56024811400012],[32.813975457000055,45.55906810099999],[32.827891472000175,45.56240469000004],[32.82976321700002,45.57021719],[32.82642662900011,45.579413153000175],[32.82488040500007,45.58698151200004],[32.82699629000015,45.59552643400015],[32.83073978000019,45.60101959800009],[32.837738477000094,45.60809967700014],[32.86817467500006,45.63007233300005],[32.93677819100017,45.66250234600015],[33.1634220710001,45.736273505000085],[33.176117384000094,45.743109442],[33.181000196000156,45.75519440300009],[33.17644290500019,45.75893789300012],[33.166758660000106,45.7626000020001],[33.15919030000006,45.76850006700012],[33.16065514400023,45.778794664000046],[33.16920006600017,45.78440989800005],[33.178558790000096,45.78025950699999],[33.194834832000225,45.7651227890001],[33.23015384200008,45.750921942],[33.26539147200012,45.75381094000012],[33.33814537900017,45.78563060100005],[33.374278191000116,45.796535549000126],[33.37964928500017,45.80304596600003],[33.41000410200016,45.82660553600009],[33.42497806100019,45.83095937700006],[33.46697024800008,45.85008372600005],[33.48218834700011,45.85447825700011],[33.489512566000116,45.852362372000115],[33.50766035200016,45.842962958],[33.519867384000094,45.84088776200015],[33.53012129000015,45.84186432500006],[33.554209832000055,45.84707265800013],[33.57837975400017,45.86815013200005],[33.598643425000056,45.877386786000116],[33.610199415000096,45.88076406500012],[33.61988366000017,45.881822007],[33.630381707000225,45.880031643],[33.64161217500006,45.87604401200003],[33.65056399800008,45.87067291900017],[33.654063347000175,45.864447333000115],[33.65894616000011,45.85932038],[33.67017662900011,45.858547268000095],[33.69166100400017,45.86074453300007],[33.69312584700012,45.872544664000046],[33.69109134200019,45.89622630400005],[33.693532748000024,45.914496161000116],[33.70866946700002,45.90973541900002],[33.72527103000019,45.91608307500014],[33.75945071700008,45.922267971000124],[33.77702884200019,45.92963288000011],[33.758636915000146,45.94086334800012],[33.739593946000156,45.947821356000034],[33.682465040000096,45.958441473000065],[33.65723717500012,45.95693594],[33.645843946000156,45.953558661],[33.63900800900015,45.94733307500003],[33.632009311000076,45.94440338700012],[33.61988366000017,45.95075104400014],[33.638438347000175,45.96824778900019],[33.64682050900015,45.97972239800005],[33.64356530000012,45.984930731000034],[33.632009311000076,45.98826732000008],[33.63111412900017,45.99652741100006],[33.63648522200011,46.00641510600015],[33.64356530000012,46.01496002800008],[33.64226321700019,46.022162177000105],[33.629567905000016,46.05658600500005],[33.62794030000012,46.06781647300015],[33.638845248000194,46.07831452000011],[33.64844811300017,46.09003327],[33.64356530000012,46.10468170800011],[33.61345462300008,46.14520905200014],[33.596527540000096,46.1557477890001],[33.57154381600017,46.14935944200009],[33.54981530000006,46.13641998900009],[33.532481316000116,46.121527411000116],[33.53126061300006,46.106878973],[33.557871941000116,46.09471263200011],[33.557871941000116,46.08730703300013],[33.53126061300006,46.08592357000008],[33.50562584700012,46.08026764500006],[33.49577884200019,46.067857164000046],[33.51628665500007,46.04633209800012],[33.50635826900023,46.04682038000011],[33.485524936000076,46.053168036000145],[33.42383873800023,46.05329010600012],[33.415293816000116,46.058091539000095],[33.38428795700011,46.08759186400008],[33.35775800900015,46.10382721600003],[33.33106530000012,46.107489325000174],[33.31080162900011,46.08730703300013],[33.305837436000076,46.092352606000176],[33.30144290500007,46.093654690000065],[33.296397332000225,46.093573309000085],[33.290293816000116,46.09471263200011],[33.30689537900011,46.106146552],[33.3177189460001,46.11969635600006],[33.31568444100017,46.13100820500012],[33.29346764400011,46.13568756700014],[33.214610222000175,46.12824127800015],[33.22185306100019,46.14150625200001],[33.22535241000017,46.15412018400018],[33.235118035000106,46.22382233300006],[33.21192467500006,46.2062848980001],[33.19499759200019,46.178697007],[33.175059441000116,46.153143622000115],[33.14323978000019,46.14191315300009],[33.13550866000017,46.14069245000009],[33.1228947270001,46.135891018],[33.112803582000225,46.13568756700014],[33.10328209700012,46.13837311400012],[33.08179772200012,46.14935944200009],[33.023448113000114,46.16986725500014],[33.032481316000116,46.141017971],[33.01823978000019,46.1276716170001],[32.91309655000006,46.115179755],[32.89926191500015,46.11522044499999],[32.89161217500012,46.116685289000046],[32.8826603520001,46.12067291900003],[32.87614993600019,46.12140534100014],[32.85320071700019,46.12034739799999],[32.844574415000096,46.12140534100014],[32.78980553500017,46.13434479400014],[32.76628665500013,46.13568756700014],[32.7513126960001,46.133042710000055],[32.71404056100018,46.120062567000055],[32.588226759000094,46.1043968770001],[32.57781009200002,46.10154857000005],[32.56755618600019,46.0965843770001],[32.55103600400011,46.084295966000056],[32.54371178500011,46.080471096000124],[32.50342858200022,46.07611725500011],[32.30250084700012,46.116685289000046],[32.280528191000116,46.12759023600002],[32.267751498000194,46.126613674000126],[32.26246178500011,46.12824127800015],[32.26050866000017,46.13214752800015],[32.25733483200011,46.144964911],[32.255625847000175,46.14935944200009],[32.25171959700012,46.15688711100013],[32.2474064460001,46.17072174700003],[32.241953972000175,46.17666250200007],[32.260915561000076,46.188625393],[32.26677493600013,46.19481028900016],[32.26929772200012,46.2045759140001],[32.23926842500006,46.19525788000006],[32.21314537900011,46.19306061400006],[32.1873478520001,46.19672272300012],[32.14258873800023,46.20799388200011],[32.128672722000175,46.209702867000104],[32.115407748000024,46.214544989],[32.07789147200012,46.2494977890001],[32.050140821000156,46.26605866100008],[32.01807701900006,46.25751373900006],[31.968435092000078,46.27570221600014],[31.88575280000012,46.320013739],[31.884043816000172,46.30866120000012],[31.887950066000172,46.29515208500014],[31.88990319100012,46.28384023600016],[31.882334832000108,46.27912018400015],[31.819183790000096,46.28058502800012],[31.80111738400009,46.28506094000006],[31.785899285000113,46.29238515800007],[31.772471550000116,46.302679755],[31.76734459700017,46.318182684000114],[31.779958530000183,46.33177317900008],[31.799815300000063,46.342230536000145],[31.81674238400015,46.34796784100003],[31.837412957000055,46.34955475500006],[31.89258873800011,46.34113190300009],[31.968272332000108,46.3510602890001],[31.97730553500011,46.355292059000035],[32.029633009000094,46.38898346600003],[32.04167728000019,46.39085521],[32.05518639400006,46.39057038000005],[32.061859571000156,46.393784898000106],[32.05355879000015,46.405991929],[32.00782311300023,46.44896067900005],[31.991709832000055,46.45355866100009],[31.954600457000165,46.45099518400017],[31.91065514400023,46.455877997000144],[31.77165774800019,46.495835679],[31.748545769000227,46.49994538000006],[31.726410352000162,46.50088125200013],[31.710703972000115,46.49542877800009],[31.69597415500013,46.48411692900011],[31.690277540000153,46.47858307500009],[31.686534050000116,46.47089264500006],[31.685069207000225,46.46137116100009],[31.686534050000116,46.42987702000006],[31.663584832000108,46.47211334800009],[31.655772332000108,46.478338934000064],[31.64144941500015,46.48208242400007],[31.524424675000116,46.564195054],[31.50831139400023,46.58759186400006],[31.540293816000116,46.57005442900011],[31.56666100400011,46.550360419000086],[31.58155358200011,46.54523346600017],[31.75635826900023,46.55426666900017],[31.790212436000186,46.547267971],[31.847911004000164,46.523016669000114],[31.851735873000077,46.52195872600005],[31.86182701900023,46.51927317900008],[31.947113477000098,46.51927317900008],[32.03345787900011,46.50629303600009],[32.091156446000156,46.512844143000066],[32.111664259000094,46.51243724200005],[32.221527540000096,46.49542877800009],[32.27613366000017,46.47089264500006],[32.317556186000076,46.46434153900019],[32.36101321700019,46.46686432500009],[32.39966881600017,46.478338934000064],[32.427012566000116,46.49884674700009],[32.408376498000024,46.51727936400011],[32.435720248000194,46.54315827000015],[32.5057072270001,46.584133205000064],[32.5247501960001,46.59271881700008],[32.57097415500012,46.596421617000104],[32.58838951900006,46.60431549700009],[32.60377037900011,46.61570872600005],[32.61939537900011,46.62352122600005],[32.63379967500006,46.63312409100003],[32.64551842500006,46.649603583000115],[32.62183678500011,46.641791083000115],[32.59457441500015,46.62832265800012],[32.56739342500006,46.61847565300012],[32.54371178500011,46.62173086100016],[32.409027540000096,46.56891510600009],[32.33578535200016,46.562160549000154],[32.26929772200012,46.58759186400006],[32.2537541020001,46.60472239800002],[32.248220248000194,46.60740794499999],[32.23682701900023,46.60443756700006],[32.2200626960001,46.59072500200013],[32.21094811300023,46.58759186400006],[32.19971764400023,46.58649323100012],[32.18018639400023,46.58177317900011],[32.16993248800023,46.580755927000055],[32.1463322270001,46.560248114],[32.13209069100017,46.57029857000008],[32.11793053500017,46.606878973],[32.10108483200016,46.614894924000126],[32.03956139400012,46.62348053600006],[32.0227970710001,46.629136460000055],[32.00896243600019,46.639797268000095],[31.99293053500017,46.657416083],[31.979828321000095,46.67706940300015],[31.974457227000155,46.69399648600013],[31.970713738000224,46.71287669500008],[31.96143639400006,46.72760651200014],[31.950205925000063,46.741766669000086],[31.940277540000093,46.75885651200004],[31.93620853000013,46.80036041900003],[31.954763217000135,46.83144765800013],[31.981700066000172,46.86033763200005],[32.00245201900006,46.89545319200012],[32.007497592000135,46.915228583000136],[32.006683790000096,46.93048737200011],[31.9959416020001,46.94037506700012],[31.946055535000113,46.94668203300015],[31.935883009000094,46.954820054],[31.93921959700012,46.96796295800014],[31.968923373000024,46.99868398600004],[31.97689863400009,47.009344794000135],[31.970957879000164,47.01634349200004],[31.943695509000094,47.01894765800013],[31.90015709700017,47.013617255000085],[31.881114129000164,47.01504140800013],[31.865244988000228,47.02635325700011],[31.893239780000073,47.06842682500009],[31.896820509000154,47.09271881700006],[31.882334832000108,47.11859772300006],[31.868174675000063,47.127346096000146],[31.855723504000107,47.12962474200013],[31.845550977000098,47.1340192730001],[31.837901238000057,47.14923737200009],[31.834727410000113,47.16819896],[31.834483269000227,47.178941148000106],[31.83057701900017,47.186753648000106],[31.81674238400015,47.19708893400012],[31.75766035200016,47.21621328300007],[31.748545769000227,47.22846100500005],[31.753265821000152,47.24852122600011],[31.752126498000194,47.255845445000105],[31.741709832000222,47.25910065300015],[31.737803582000222,47.25535716400013],[31.723806186000076,47.23749420800006],[31.720550977000098,47.231878973000065],[31.726817254000164,47.22052643400009],[31.742442254000167,47.20917389500003],[31.761729363000114,47.20050690300003],[31.806162957000115,47.19269440300003],[31.816254102000162,47.18085358300006],[31.81560306100002,47.12262604400014],[31.819997592000192,47.11709219000012],[31.84473717500006,47.11298248900009],[31.851573113000114,47.10834381700015],[31.856618686000015,47.10366445500013],[31.86182701900023,47.10150788000011],[31.874278191000116,47.09381745000011],[31.866465691000172,47.0770531270001],[31.85230553500011,47.0605329450001],[31.84473717500006,47.053697007],[31.837412957000055,47.008449611000074],[31.86898847700016,46.99884674700009],[31.914073113000224,47.003078518],[31.947113477000098,46.99909088700004],[31.91773522200018,46.97626373900012],[31.904307488000114,46.96051666900014],[31.899424675000116,46.94383372600011],[31.907725457000108,46.92645905200013],[31.92562910200016,46.92291901200015],[31.94760175900009,46.928168036000145],[31.968272332000108,46.9369977890001],[31.972829623000028,46.91535065300011],[31.963389519000227,46.88568756700009],[31.945078972000175,46.85952383000013],[31.9231876960001,46.84829336100013],[31.898610873000194,46.842922268000066],[31.877452019000113,46.828273830000064],[31.864756707000225,46.806586005],[31.865244988000228,46.77997467700014],[31.902842644000227,46.745184637000094],[31.906748894000227,46.73822663],[31.899424675000116,46.69399648600013],[31.90235436300023,46.67698802299999],[31.907481316000176,46.66917552299999],[31.90853925900009,46.66274648600007],[31.899424675000116,46.649603583000115],[31.89210045700023,46.643622137000094],[31.870127800000116,46.63312409100003],[31.858409050000123,46.629136460000055],[31.81470787900011,46.62303294500008],[31.771494988000228,46.62750885600003],[31.674082879000167,46.65322500200007],[31.614431186000186,46.649603583000115],[31.597178582000055,46.6432152360001],[31.588715040000153,46.629584052000055],[31.57886803500011,46.61733633000007],[31.556813998000194,46.614894924000126],[31.54851321700002,46.61806875200001],[31.5345158210001,46.627183335],[31.52540123800011,46.629136460000055],[31.504161004000107,46.62799713700012],[31.493011915000096,46.628729559000035],[31.485036655000016,46.63226959800012],[31.48096764400006,46.64642975500006],[31.490896030000073,46.66339752800003],[31.546153191000172,46.72760651200014],[31.560231967000018,46.74909088700009],[31.559825066000112,46.75885651200004],[31.572113477000155,46.76630280200003],[31.618174675000116,46.813462632],[31.606130405000187,46.826402085],[31.597829623000138,46.82046133000007],[31.591319207000222,46.805975653000026],[31.583994988000228,46.79364655200008],[31.576670769000117,46.78937409100017],[31.55738366000017,46.783636786],[31.549327019000234,46.77997467700014],[31.543467644000113,46.77484772300012],[31.524180535000166,46.75405508000013],[31.522959832000222,46.75031159100011],[31.519541863000228,46.747463283000066],[31.50831139400023,46.745184637000094],[31.495616082000055,46.750718492000104],[31.48161868600013,46.75885651200004],[31.466807488000228,46.78359609600001],[31.456065300000116,46.79604726800012],[31.44068444100017,46.800482489],[31.451914910000117,46.77545807500008],[31.45378665500007,46.76911041900014],[31.455821160000166,46.75458405200011],[31.461924675000063,46.74868398600007],[31.470713738000228,46.74534739800005],[31.502126498000077,46.727728583000115],[31.505869988000114,46.72040436400012],[31.498301629000167,46.707668361000074],[31.479665561000076,46.68720123900003],[31.478200717000192,46.68378327],[31.462657097000115,46.67523834800009],[31.428558790000096,46.63764069200009],[31.416188998000077,46.629136460000055],[31.39665774800008,46.62604401200015],[31.352224155000073,46.60932038000014],[31.33765709700012,46.601263739],[31.323903842000135,46.606146552000084],[31.295746290000153,46.608872789000046],[31.28296959700017,46.614894924000126],[31.27556399800019,46.60740794499999],[31.2566837900001,46.616400458],[31.186859571000156,46.629136460000055],[31.159515821000152,46.62897370000009],[31.10816491000011,46.61774323100009],[31.054535352000155,46.61273834800015],[31.013031446000156,46.60333893400012],[30.991384311000076,46.601263739],[30.982432488000224,46.597398179],[30.95923912900011,46.58340078300013],[30.950450066000116,46.584133205000064],[30.939138217000075,46.587713934000035],[30.92603600400011,46.58429596600002],[30.866953972000175,46.55581289300004],[30.854502800000063,46.553412177000084],[30.812510613000057,46.560044664000046],[30.802582227000162,46.560248114],[30.79070071700019,46.55292389500009],[30.76091556100019,46.524359442],[30.754893425000123,46.515855210000055],[30.758311394000117,46.50259023600013],[30.775238477000098,46.477687893],[30.782074415000096,46.45722077000012],[30.785899285000113,46.457261460000105],[30.79346764400006,46.45233795800006],[30.7981876960001,46.44643789300012],[30.79297936300011,46.443548895],[30.7903751960001,46.441473700000174],[30.78679446700014,46.43650950700011],[30.78353925900009,46.43085358300014],[30.774750196000095,46.40062083500014],[30.77247155000012,46.396429755],[30.731293165000153,46.35858795800006],[30.71452884200002,46.34796784100003],[30.660655144000117,46.35089752800003],[30.65186608200023,46.34454987200011],[30.656504754000167,46.33901601800009],[30.679372592000075,46.32831452000006],[30.686534050000123,46.320013739],[30.68677819100017,46.309027411000116],[30.682383660000173,46.29954661700013],[30.653493686000076,46.25958893400015],[30.583506707000055,46.19033437700001],[30.561859571000156,46.16168854400002],[30.547699415000153,46.14777252800014],[30.531993035000166,46.14191315300009],[30.523285352000098,46.133775132],[30.50342858200011,46.09438711100002],[30.494151238000224,46.080471096000124],[30.37126712300008,45.99795156500012],[30.261403842000192,45.89549388200014],[30.20492597700016,45.85586172100001],[30.13843834700018,45.819769598000065],[30.140961134000094,45.832953192],[30.135264519000117,45.88914622600002],[30.127452019000113,45.89134349199998],[30.118337436000132,45.88450755400007],[30.110606316000112,45.875067450000145],[30.105804884000094,45.86347077000015],[30.102305535000113,45.836859442],[30.100596550000123,45.83030833500011],[30.096853061000193,45.823716539000046],[30.096446160000173,45.818426825000145],[30.094574415000096,45.81484609600001],[30.08668053500011,45.813544012000094],[30.084320509000094,45.815619208000115],[30.078379754000167,45.81940338700004],[30.07243899800002,45.820990302000084],[30.069590691000116,45.81671784100014],[30.061208530000016,45.81346263200011],[30.014659050000116,45.83966705900015],[29.990733269000227,45.84707265800013],[29.968516472000175,45.83893463700012],[29.960459832000225,45.81915924700009],[29.958262566000172,45.79462311400009],[29.952891472000115,45.77195872600011],[29.94304446700019,45.78351471600014],[29.932383660000166,45.79242584800009],[29.932383660000166,45.79987213700014],[29.93913821700019,45.810451565],[29.935069207000225,45.816148179],[29.926280144000174,45.813788153000026],[29.918711785000113,45.79987213700014],[29.91773522200012,45.782904364],[29.92237389400017,45.76943594],[29.93018639400023,45.75910065300009],[29.93930097700016,45.751532294000135],[29.932383660000166,45.724188544000164],[29.927419467000195,45.733710028000175],[29.91968834700017,45.740545966000084],[29.89820397200017,45.751532294000135],[29.895762566000112,45.75535716400016],[29.896820509000094,45.759914455000015],[29.896169467000018,45.76361725500006],[29.887705925000063,45.7651227890001],[29.881683790000096,45.76300690300009],[29.878754102000155,45.75828685099999],[29.8768009770001,45.75360748900006],[29.874034050000063,45.751532294000135],[29.850840691000116,45.751125393000116],[29.82374108200011,45.747626044000135],[29.802419467000018,45.737494208],[29.795746290000153,45.71735260600015],[29.803233269000227,45.704169012000094],[29.816416863000114,45.697699286],[29.843028191000116,45.69065989800013],[29.858246290000096,45.67987702000012],[29.86500084700012,45.67234935100008],[29.860118035000166,45.66893138200005],[29.84253991000011,45.663885809000035],[29.826670769000117,45.65424225500006],[29.809580925000066,45.64858633000007],[29.789073113000118,45.65525950700011],[29.78614342500012,45.64891185099999],[29.783864780000016,45.64663320500004],[29.784353061000186,45.643622137000115],[29.789073113000118,45.63544342700011],[29.774099155000183,45.629584052000084],[29.745941602000105,45.622626044000086],[29.7337345710001,45.614325262000094],[29.73503665500002,45.64057038000011],[29.7239689460001,45.667425848],[29.70525149800019,45.688421942000055],[29.682627800000063,45.696844794000114],[29.68531334700012,45.704250393000095],[29.679209832000225,45.751532294000135],[29.68580162900011,45.767726955000015],[29.692230665000096,45.77533600500014],[29.69385826900023,45.781317450000145],[29.685883009000094,45.79242584800009],[29.680430535000166,45.79828522300012],[29.677582227000105,45.80019765800007],[29.674001498000024,45.801581122000144],[29.65333092500012,45.813869533000016],[29.647471550000063,45.81854889500012],[29.642832879000167,45.82721588700004],[29.63819420700023,45.82632070500013],[29.63355553500011,45.821356512000094],[29.631358269000113,45.813544012000094],[29.634613477000155,45.80662669500002],[29.648692254000107,45.79360586100002],[29.651866082000055,45.789007880000085],[29.647959832000055,45.78119538],[29.629567905000016,45.76349518400018],[29.623871290000153,45.751532294000135],[29.62273196700019,45.73623281500009],[29.625336134000097,45.72825755400014],[29.630707227000162,45.72150299700009],[29.637543165000096,45.70990631700009],[29.60320071700002,45.69131094000009],[29.597178582000225,45.65228913000011],[29.599375847000122,45.604437567],[29.58969160200016,45.55906810099999],[29.615000847000115,45.55011627800015],[29.629079623000028,45.54669830900014],[29.648448113000175,45.54539622600005],[29.666840040000096,45.54816315300012],[29.68116295700011,45.555121161],[29.70704186300011,45.573309637000094],[29.694509311000186,45.56220123900006],[29.66163170700011,45.52586497600008],[29.648448113000175,45.51813385600015],[29.638031446000156,45.51386139500015],[29.631683790000157,45.504461981000034],[29.626719597000175,45.495062567],[29.62086022200012,45.49079010600009],[29.605153842000075,45.48700592700005],[29.605723504000164,45.47817617400001],[29.62110436300011,45.45441315300012],[29.62964928500011,45.446926174000126],[29.64079837300002,45.441799221000124],[29.651866082000055,45.443019924000126],[29.6556095710001,45.451849677],[29.653819207000108,45.464016018000095],[29.65601647200012,45.47418854400003],[29.672373894000117,45.47711823100014],[29.672373894000117,45.45384349200005],[29.675303582000222,45.44961172100004],[29.681488477000098,45.450181382],[29.686534050000063,45.453558661],[29.685883009000094,45.457261460000055],[29.694346550000063,45.45551178600005],[29.702159050000116,45.45661041900008],[29.70866946700013,45.4527855490001],[29.71322675900015,45.436224677000105],[29.719737175000066,45.45136139500003],[29.724457227000155,45.468166408000044],[29.732269727000155,45.475734768000066],[29.747406446000152,45.46344635600012],[29.75464928500017,45.44725169500008],[29.755869988000114,45.42788320500013],[29.74781334700017,45.41429271],[29.72771243600013,45.41567617400007],[29.741872592000018,45.404527085000055],[29.750173373000194,45.38580963700018],[29.753916863000224,45.364081122000115],[29.756195509000094,45.32123444200012],[29.75489342500012,45.31268952],[29.75147545700011,45.30414459800009],[29.742930535000113,45.29047272300014],[29.741221550000063,45.28221263200005],[29.729746941000112,45.25812409100003],[29.72771243600013,45.24774811400012],[29.728688998000194,45.23932526200018],[29.729746941000112,45.23773834800015],[29.72803795700023,45.23688385600015],[29.70875084700012,45.223334052],[29.69239342500006,45.21674225500011],[29.674489780000012,45.21356842700005],[29.65907465300418,45.21588069502609],[29.659078756000067,45.215886719000096],[29.664214721000153,45.223183899],[29.66648848400004,45.23062530600011],[29.664989869000152,45.237860006000076],[29.659253784000185,45.244164531000095],[29.672276245,45.27294830300012],[29.667108602000123,45.31186065700008],[29.65026208500015,45.3461221320001],[29.628144572000135,45.360798238000186],[29.616362346000216,45.36534576500013],[29.569698527000156,45.39495636000007],[29.43063724800018,45.43040639200011],[29.353742717000188,45.43593577100002],[29.34392419500008,45.438106181000094],[29.332968791000127,45.44213694299999],[29.3221167400001,45.44384226500016],[29.31281498200016,45.43934641500012],[29.307027222000073,45.43412709500002],[29.299275757000174,45.428907777000106],[29.29049076300006,45.42461863300003],[29.281809122000112,45.4222931930001],[29.260828491000122,45.42203481000003],[29.244602091000132,45.42420522100012],[29.22816898600016,45.423740133000095],[29.206671590000127,45.415420227000034],[29.191582072000106,45.40617014600012],[29.183107137,45.398987122000065],[29.179386434000094,45.391855774000035],[29.17432214300004,45.38896189400005],[29.15013757300005,45.38787668900015],[29.141869344000096,45.385086161000075],[29.127503296000103,45.37454417000011],[29.110295043000125,45.36906646800004],[29.06952233900006,45.360798238000186],[29.01815596600008,45.33087758400016],[29.004616740000102,45.32607167600006],[28.9824475500001,45.325503235],[28.973662557000097,45.323694560000106],[28.96647953300007,45.31987050400006],[28.960433390000105,45.31129221600004],[28.95738448100008,45.292016907000104],[28.952836954000134,45.28509226500002],[28.929892618000107,45.27909779900009],[28.910048869000036,45.287366028000136],[28.89361576300007,45.29982004900002],[28.880851684000074,45.30617624900004],[28.858114054000108,45.30907013000005],[28.831810750000074,45.32229929700013],[28.816307820000134,45.32607167600006],[28.78974613400004,45.32142079700019],[28.788609253000114,45.3071064250001],[28.790159545000048,45.29206858300002],[28.76153080300006,45.28183665000013],[28.759670451000144,45.27418853800005],[28.76256433100013,45.26514516200011],[28.767266886000126,45.2577554330001],[28.774294881000113,45.253362936000094],[28.802665243000032,45.244164531000095],[28.79139978100008,45.23496612600009],[28.778687378000114,45.23109039400005],[28.74737146000012,45.23047027600008],[28.710061076000073,45.226956279000106],[28.577045939000126,45.24809193900016],[28.494156942000103,45.27889109400003],[28.40517012500004,45.29506581700003],[28.370236857000066,45.309225159000064],[28.353286987000043,45.312429098000145],[28.33023929800009,45.32291941300009],[28.310808960000088,45.347827454000154],[28.281198364000147,45.40182932600014],[28.286417684000067,45.421724752000145],[28.266883993000075,45.44048329700006],[28.237635132000037,45.45205881800008],[28.215146087000104,45.45036508200008],[28.212933797000115,45.450198466000174],[28.19949792500006,45.46177398700003],[28.201564982000036,45.46885365800013],[28.20848962400009,45.481411031000064],[28.217171264000058,45.493141581000046],[28.217171264000058,45.49319325800015],[28.2172746170001,45.493348288],[28.27042337800009,45.521470690000015],[28.270501343000063,45.521511943000135],[28.341918172000135,45.517636211000095],[28.41684899900011,45.503786926000046],[28.48092777500011,45.50197825100004],[28.502011760000045,45.508747864],[28.50645593200005,45.52058176700011],[28.500048055000036,45.55458486000005],[28.49798099800006,45.55644521100005],[28.498239380000115,45.55871897400006],[28.50374338900008,45.566102402000084],[28.504595581000046,45.567245586000084],[28.510435018000123,45.57101796500011],[28.536893351000113,45.579802959000105],[28.523095744000074,45.59323883100013],[28.518754923000103,45.607036438000094],[28.516894572000098,45.62098907500008],[28.511313517000076,45.635045065],[28.49849776200008,45.64429514600012],[28.482891480000063,45.650754700000064],[28.47400313300005,45.657937725000025],[28.48092777500011,45.66946156900015],[28.504182169000046,45.693697815000135],[28.515240926000047,45.702017721000104],[28.532500855000137,45.71007924399999],[28.561439657000108,45.716590475000075],[28.56764082800009,45.72460032200003],[28.563525429000094,45.735494026000154],[28.560612834000068,45.74320383700008],[28.57668420400006,45.76191070600007],[28.64360518400011,45.76650990800012],[28.66975345900005,45.77731028300015],[28.673267456000076,45.78687042300005],[28.671923868000107,45.797257386000084],[28.669391724000036,45.80630076100011],[28.66975345900005,45.812036845000094],[28.67729821800009,45.81658437100013],[28.70639205000009,45.82113189700006],[28.725564006000095,45.82878000900014],[28.738276407000058,45.83756500300002],[28.745046021000093,45.85048411100005],[28.74644128400007,45.870586243],[28.74230717000006,45.88732940700005],[28.72840620900007,45.92195261700005],[28.729181356000083,45.938644104],[28.74024011200009,45.95321685800015],[28.757603393000096,45.96117502900002],[28.931959676000076,45.99316274000002],[28.956867717000133,46.001379293000056],[28.958934773000095,46.02101633800008],[28.94115808100008,46.064682922000046],[28.93878096500003,46.089280905000024],[28.94642907700009,46.10509389300001],[28.980845581000064,46.13212066700005],[29.003479858000105,46.15894073600005],[29.015365438000114,46.18260854099999],[29.009836059000126,46.20436431899999],[28.984112143000065,46.221221024000116],[28.95076989800009,46.24306996700001],[28.95061486800006,46.24312164400011],[28.933509969000085,46.25898630800013],[28.93288985200013,46.272628886000135],[28.939917847000117,46.28699493500012],[28.945808960000132,46.30497833300002],[28.944878784000082,46.32073964500002],[28.92730879700011,46.368023580000155],[28.919247274000014,46.404662171000105],[28.925448446000104,46.43277415000015],[28.945808960000132,46.45478831000004],[29.020326375000078,46.48951487200016],[29.055914596000097,46.49874020099999],[29.074948364000107,46.50367421500012],[29.16274662200007,46.53809071900015],[29.18305928500007,46.5380418910001],[29.18424401800013,46.53803904300007],[29.20021203600007,46.52398305300012],[29.206774943000113,46.50251149500009],[29.207601766000177,46.41789133800002],[29.205638061000144,46.406109111000106],[29.1992818600001,46.3964972940001],[29.19034183700009,46.38719553600008],[29.183417196000107,46.377609558000145],[29.183727254000072,46.36717091900012],[29.200677124000062,46.3571198530001],[29.222897990000117,46.36647328800013],[29.2591748450001,46.39435272300001],[29.271370484000183,46.39742747000004],[29.278191772000156,46.395877178000134],[29.283256062000223,46.39742747000004],[29.290077352000168,46.410243225000116],[29.290697469000037,46.41926076300008],[29.285943238000044,46.43949208600016],[29.289147176000224,46.45163604700018],[29.306717163000116,46.471996562000115],[29.32077315300009,46.46874094700003],[29.34423425300011,46.434169414000124],[29.36211429900007,46.415927633000145],[29.374723348000064,46.41618601500015],[29.418234904000116,46.462488098000115],[29.43683842000004,46.4766991180001],[29.45672369000013,46.484366324000135],[29.45761234500011,46.484708965000046],[29.480866740000096,46.482047628000046],[29.486447795000146,46.47587229500006],[29.488204793000104,46.4693610640001],[29.486241089000178,46.462488098000115],[29.480866740000096,46.45551178000012],[29.4752856850001,46.44755360900017],[29.473321981000165,46.43980214500006],[29.47507898000006,46.43225738600002],[29.480866740000096,46.425151877000175],[29.49605961100022,46.420811056],[29.52747888200011,46.416651103000056],[29.5414315190001,46.413033752999986],[29.55564253800011,46.404197083],[29.569440145000186,46.38228627600013],[29.582979370000174,46.369651388000094],[29.598585653000125,46.3630626430001],[29.615638875000144,46.36182240900017],[29.63207198100011,46.366059876000016],[29.64550785300017,46.3755941780001],[29.652949259000163,46.39189809200006],[29.647988322000202,46.41639272100009],[29.654396199000043,46.422697245],[29.68271488500008,46.42292978900018],[29.702868693000113,46.42832997600014],[29.713824097000124,46.443057760000144],[29.714134155000096,46.471169739000075],[29.72694991000017,46.455796],[29.77955651900018,46.42109527600017],[29.80033044400014,46.39835764600009],[29.80508467600012,46.38998606400013],[29.806738322000143,46.380891012000134],[29.806169882000205,46.36156402600001],[29.808185262000084,46.35469106100014],[29.828132365000073,46.339394837000086],[29.84776941000021,46.341461894000034],[29.88466638200012,46.36419952400003],[29.90254642700009,46.37117584300002],[29.91866947400015,46.373656311],[30.03726688600008,46.36892791800001],[30.081140177000204,46.37419891400005],[30.10718510000018,46.39189809200006],[30.131576375000094,46.42282643700004],[30.118243856000188,46.428691712000145],[30.102017456000084,46.430732931000094],[30.08692793800017,46.42887258000009],[30.077006063000194,46.42282643700004],[30.060004516000078,46.43680491100004],[30.01406416800009,46.46202301000001],[30.021712280000173,46.470652975000135],[30.009413290000143,46.48806793199999],[30.002850383000148,46.494217428000134],[29.994943889000098,46.49853241000004],[29.989259481000232,46.49868743900005],[29.977063843000135,46.49318390000015],[29.97055261200009,46.49173696000015],[29.96703861400013,46.49385569300013],[29.962077677000167,46.50344167100015],[29.960217326000162,46.50594797800012],[29.916085652000078,46.51881541000013],[29.901926310000107,46.53083018000008],[29.898825724000147,46.55312856100015],[29.916085652000078,46.55436879500009],[29.93809981200016,46.55734019],[29.949675334000204,46.57886342400006],[29.947401570000096,46.588346049000116],[29.9349475500002,46.608835755000186],[29.93127852400019,46.61917104100009],[29.931898641000174,46.63237436900009],[29.93541263800014,46.64185699500014],[29.940270223000226,46.6507970170001],[29.94440433800017,46.66247589100006],[29.952620890000187,46.72469431600017],[29.951122273000095,46.74311696400015],[29.94667810100006,46.75073923800014],[29.935671021000104,46.76515696300005],[29.931795288000128,46.77244333900013],[29.930451701000177,46.78164174400014],[29.930658406000102,46.80308746400006],[29.928177938000232,46.809753723000156],[29.91742924000002,46.81396535300003],[29.90771407000008,46.810942282],[29.89851566600012,46.80665313800013],[29.889627319000084,46.80716990200007],[29.884873087000102,46.812673442000076],[29.876914917000107,46.8307860310001],[29.872212361000066,46.837710673000075],[29.843635294000165,46.85414377900004],[29.815213257000067,46.85662424800002],[29.785757690000167,46.85466054300018],[29.754131714000067,46.85801951100008],[29.735838257000097,46.86719207800009],[29.712480509000073,46.89344370600013],[29.696150757000197,46.90468332900015],[29.680854533000144,46.90855906200012],[29.648091675000078,46.91041941400012],[29.631865275000138,46.914398499000114],[29.623286987000114,46.91954030400002],[29.607577352000163,46.9320201630001],[29.59848230000009,46.935379130000015],[29.57316084800018,46.93372548500015],[29.567476440000032,46.9346556600001],[29.558691447000086,46.94574025500013],[29.559828329000055,46.95884023000009],[29.560625743000088,46.96125639500014],[29.564995972000162,46.974498190000034],[29.57248905500009,47.01175689700007],[29.58339278100018,47.02278981600007],[29.595433390000064,47.03214325],[29.603029826000096,47.045759989000096],[29.602099650000152,47.06100453800006],[29.594864950000076,47.074595439000134],[29.58339278100018,47.08521494500003],[29.5701636150001,47.09144195600011],[29.55135339400007,47.090201721000156],[29.53972619700019,47.078884582000015],[29.530992879000138,47.06601715100011],[29.5201408290001,47.05991933200015],[29.511459188000146,47.06601715100011],[29.480866740000096,47.10523956300007],[29.478696330000016,47.10846934100014],[29.477869507000122,47.11154408800017],[29.4785929760001,47.114644674000104],[29.480866740000096,47.11748687800009],[29.508668660000154,47.119398906000114],[29.5303727620001,47.12368805000007],[29.54484216300008,47.13557362900009],[29.55062992300006,47.16017161100008],[29.540397990000116,47.212545675000015],[29.544015340000072,47.23424977700002],[29.568716675000104,47.24313812300012],[29.580188843000112,47.260449727000136],[29.579258667000232,47.28360076900013],[29.570060262000226,47.306777649000125],[29.55657271400017,47.324037578],[29.539881225000073,47.334217835000075],[29.52096765200011,47.338920390000155],[29.501072225000115,47.33982472800001],[29.480866740000096,47.33827443500008],[29.470634806000103,47.32274566700006],[29.466087280000096,47.307449442000014],[29.459162638000212,47.29349680600002],[29.441696004000075,47.28212799100011],[29.425572957000075,47.27866567000008],[29.409553263000166,47.27975087599999],[29.39446374500002,47.28471181300013],[29.380821167000104,47.29298004100018],[29.37088151900016,47.304433933],[29.367592,47.30822459000002],[29.36449141500012,47.32243560799999],[29.364078002000184,47.336879171000085],[29.358910360000063,47.35271799800002],[29.345836222000145,47.36584381100006],[29.330384969000217,47.37049469000014],[29.314675333000164,47.37271677700012],[29.3008260500001,47.37819447900013],[29.292712850000186,47.38886566200013],[29.288217001000163,47.40077708000017],[29.28139571100021,47.41147410100017],[29.250699910000066,47.42537506100013],[29.232613159000064,47.44632985500014],[29.218350464000107,47.45160085],[29.201865682000207,47.446588237000114],[29.192408895000145,47.435813701000185],[29.182073609000042,47.42987091100015],[29.1638835040001,47.439379374000154],[29.15561527500006,47.44999888100012],[29.14000899300009,47.48015208000014],[29.137188792000074,47.48400843200007],[29.130655558000058,47.49294199700002],[29.130603882000056,47.493045350000116],[29.130500529000102,47.49309702600005],[29.130397176000088,47.49320037800008],[29.117426391000066,47.53332712800007],[29.130500529000102,47.55963043300012],[29.156183716000097,47.582781474000015],[29.182073609000042,47.61321889300008],[29.192408895000145,47.650916850000115],[29.191478719000084,47.686263529000044],[29.196956421000063,47.71750193300012],[29.22667036900023,47.74323679600012],[29.23860762500007,47.756000875],[29.234731893000145,47.76680125000003],[29.22196781400018,47.77481109600008],[29.187447957000103,47.78320851700006],[29.177836141000085,47.78971974700015],[29.177732788000043,47.80070098900001],[29.186724487000102,47.81821930000008],[29.19892012500011,47.82948476200014],[29.217420288000227,47.842894796000095],[29.23276818800011,47.85707997600004],[29.23602380300011,47.87072255500006],[29.225998576000077,47.87558014000017],[29.186621134000063,47.883641663000056],[29.17256514500013,47.89100555400016],[29.164606974000094,47.905604147000034],[29.15582198100009,47.93986562100004],[29.147967163000146,47.95536855100015],[29.136288290000092,47.96818430600002],[29.12398929800014,47.97598744700015],[29.11003666200014,47.97965647400006],[29.092725057000052,47.98017323800009],[29.061047404000135,47.96976043800005],[29.017225790000055,47.931080628000146],[28.980845581000064,47.92637807199999],[28.95035648600006,47.934801331000145],[28.936086736000046,47.94216435599999],[28.914803101000103,47.95314646400005],[28.882557007000056,47.97676259400008],[28.862085148000062,48.00050207700015],[28.855685262000065,48.00792348300002],[28.839252156000068,48.018284607000126],[28.83253422100006,48.024821676000116],[28.83077722100009,48.03086781900008],[28.827573283000103,48.057016094000076],[28.811553589000138,48.08290598600011],[28.809176473,48.089778952000174],[28.808349650000082,48.096574402000115],[28.80592085800004,48.103809103000074],[28.799254598000115,48.11179311100015],[28.771245972000113,48.12445383699999],[28.735072469000073,48.12869130500006],[28.665619344000106,48.129337260000014],[28.573635295000113,48.154968771000185],[28.54159590600011,48.15595062300007],[28.51932336400006,48.1491293340001],[28.501113053000125,48.11288926600015],[28.501081584000104,48.11282664000014],[28.499790098000087,48.10891363000012],[28.494156942000103,48.09184600900012],[28.493743531000092,48.074818624],[28.490022827000104,48.06549102800007],[28.479584188000075,48.064922588000016],[28.459378703000084,48.0744568890001],[28.44744144700013,48.08275095700015],[28.4190194090001,48.122231751000086],[28.435659221000037,48.13468577100015],[28.43689945500006,48.14985280399999],[28.427287639000042,48.16336619100015],[28.411578003000074,48.17070424400005],[28.388633667000136,48.168585511000074],[28.3755595290001,48.156648255000114],[28.364965861000112,48.14150706000011],[28.349566284000048,48.129724833000026],[28.328585653000115,48.12701182000008],[28.317423543000103,48.135357565000064],[28.3155631920001,48.14928436300011],[28.322177775000082,48.16321116100012],[28.337887410000064,48.17548431500016],[28.352253458000064,48.18186635400009],[28.36336389200008,48.191013082000076],[28.370030151000094,48.21163197900007],[28.368169800000086,48.23062306800012],[28.35773116100006,48.238607076],[28.3405745850001,48.2401056930001],[28.294479207000077,48.23648834300003],[28.277529337000146,48.22912445100003],[28.261716349000064,48.21995188400014],[28.240322307000042,48.21163197900007],[28.216964559000104,48.208143820000124],[28.19991133600007,48.211735332],[28.189369344000113,48.223052470000184],[28.18575199400004,48.24237945600013],[28.17851729300014,48.258864238000015],[28.162084188000076,48.25718475400005],[28.131078329000076,48.23958892899999],[28.115575399000136,48.236746725],[28.093251180000095,48.237444357000086],[28.078678426000124,48.24491160100003],[28.098315471000063,48.28410817500015],[28.092837768000066,48.30206573500005],[28.07640466300012,48.31493316700014],[28.055940796000044,48.32149607400014],[28.003176857000113,48.325882843],[27.96705733200011,48.32888580400014],[27.92643965600007,48.3394277950001],[27.904528849000116,48.36247548400014],[27.896674032000078,48.36717804000013],[27.885371499000144,48.378443876000134],[27.864841349000127,48.39890736900015],[27.849855184000063,48.40963022900017],[27.785259643000103,48.44156626400014],[27.75177331500009,48.45197906599999],[27.627026408000116,48.451255595000084],[27.60687259900004,48.457818502000165],[27.604805542000065,48.48412180600012],[27.582998087000135,48.48603383400005],[27.5570565190001,48.47435496100014],[27.545170939000087,48.47236541800011],[27.503896381000057,48.47236541800011],[27.503829794000126,48.47236541800011],[27.480885458000103,48.45141062500012],[27.42021732500012,48.417149150000014],[27.403474161000076,48.41149058100008],[27.38983158300007,48.415004578000136],[27.36140954600006,48.43280710900008],[27.342185913000034,48.43611440100007],[27.306012411000097,48.4236603800001],[27.25193001700012,48.37831004100015],[27.246481160000116,48.37374094700011],[27.20855065900011,48.36061513300014],[27.175787801000098,48.36180369099999],[27.068817586000137,48.38888214200013],[27.048043661000094,48.39766713500002],[27.037398315000104,48.399682516000084],[27.026339559000093,48.39709869400015],[27.025409383000067,48.389863994],[27.028199910000097,48.381389059000114],[27.027786499000086,48.3747744760001],[27.02850996900008,48.370795390000026],[27.031817260000082,48.36524017400002],[27.033057495000037,48.36020172200013],[27.02768314600007,48.35774709100018],[27.015590861000078,48.35940073700011],[27.00463545800011,48.358754781000144],[26.997814168000048,48.36154530900002],[26.990579468000078,48.36237213100004],[26.981071004000114,48.355680034000116],[26.943243856000038,48.35126169900011],[26.90872399900013,48.36524017400002],[26.87596114100006,48.383998719000104],[26.84278487200004,48.39373972600005],[26.831932821000095,48.391362610000115],[26.82841882400004,48.38513560000003],[26.825628296000072,48.377771708000026],[26.816946655000095,48.37172556600007],[26.810073690000138,48.37188059500012],[26.79358890800006,48.37627309200012],[26.78805953000005,48.37596303300005],[26.777517538000097,48.36617035000007],[26.77818933100008,48.357204488000136],[26.784080444000065,48.34516388000016],[26.789351440000104,48.32594024700013],[26.790074911000115,48.307052511],[26.78573409000012,48.2941075640001],[26.774365275000036,48.287182923],[26.754573202000074,48.28614939400001],[26.73591801000009,48.29183380100007],[26.72361901900007,48.302582499],[26.712973674000068,48.31490732800013],[26.69943444900008,48.325113424],[26.679797404000052,48.330177714000094],[26.67400964400008,48.32170277900009],[26.669100382000124,48.308809509000085],[26.636079142000057,48.294882711000085],[26.625123739000088,48.28289377800006],[26.618612508000126,48.26718414300008],[26.617889038000044,48.25896759100014],[26.587399943000033,48.249355774000136],[26.46130944800009,48.23039052400016],[26.44466963700006,48.22772918700015],[26.397437378000117,48.226204733000046],[26.380487508000016,48.223207499000026],[26.347311239000106,48.212097067000016],[26.330258015000084,48.208505555000116],[26.31175785300013,48.20971995100014],[26.303489624000093,48.212045390000085],[26.29615157000009,48.1789983120001],[26.29749515800006,48.15633819600005],[26.2869531660001,48.12471222000006],[26.27072676600011,48.09360300700011],[26.2553271890001,48.07233815500002],[26.243234904000133,48.06290720700015],[26.21708663000004,48.04802439400011],[26.204787638000084,48.03737904900014],[26.182670125000072,48.003272604000145],[26.17305830900005,47.99314402300002],[26.1257226970001,47.978416240000016],[26.102530449000085,47.97826709400012],[26.029294474000093,47.97779612200004],[25.96573246200012,47.96490285200004],[25.918086792000082,47.96815846800003],[25.901240275000106,47.96596221900005],[25.87095788600007,47.957022197000086],[25.818351278000076,47.952578024],[25.752515503000094,47.934594626000106],[25.261744426000064,47.898576152000096],[25.218956339000044,47.87847402000015],[25.121908,47.770315247000084],[25.08025679500014,47.74313344299999],[25.080050089000082,47.74308176700008],[25.079946737000057,47.74292673800012],[25.01741825300007,47.72458160400005],[24.942380238000112,47.715562921000085],[24.928857956000115,47.71393770200008],[24.896598755000127,47.71006052700001],[24.877788533000114,47.718742167000144],[24.85443078600008,47.74313344299999],[24.820737752000127,47.784087016000015],[24.808232056000122,47.795740052000085],[24.793659302000066,47.80447336900015],[24.7128373620001,47.82591908799999],[24.67914432800006,47.84013010700012],[24.661470988000133,47.85387603800008],[24.656923462000123,47.86620086700013],[24.65599328600007,47.87930084300008],[24.64927535000004,47.895217184],[24.633669067000085,47.90829132100005],[24.608450968000056,47.92193390000007],[24.56980845300012,47.93728854100006],[24.561632121000116,47.940537415000115],[24.542098429000106,47.943818868],[24.485564412000144,47.94319875100014],[24.42851363100007,47.952526347000074],[24.40918664600011,47.95206125900013],[24.386242310000085,47.94368967700008],[24.34717492600006,47.920874532000155],[24.297875610000062,47.91978932799999],[24.231006307000087,47.89702585900001],[24.209302205000085,47.89759430000005],[24.150184367000122,47.9129163620001],[24.148737427000125,47.91211537700009],[24.13116744000007,47.91454416900014],[24.094787231000083,47.9379277550001],[24.074943482000094,47.94418060400001],[24.02523075300007,47.953249818000174],[24.008797648000012,47.961207988000055],[23.97727502500007,47.96229319300012],[23.876609334000104,47.93443959600016],[23.855215291000093,47.934232890000104],[23.848394002000134,47.949658305000085],[23.79651086400014,47.98198191300018],[23.78007775900008,47.98751129099999],[23.71052128100007,47.985082500000125],[23.687266886000145,47.98725291],[23.64613244600008,47.99660634400006],[23.581743612000082,48.0015672810001],[23.56324344900014,48.00575307200013],[23.525623006000046,48.001179709],[23.514460897000102,47.998983460000105],[23.50371219900009,47.99288564100014],[23.49937137800009,47.986219381000026],[23.494307088000113,47.98053497299999],[23.48851932800005,47.97585825700013],[23.4854755610001,47.974234157000026],[23.48159468600008,47.97216339100011],[23.460820760000043,47.97133656900009],[23.396018514000104,47.99306650800009],[23.394468221000096,47.9934540820001],[23.393021281000102,47.99358327300002],[23.39157434100011,47.9934540820001],[23.39012740100011,47.99306650800009],[23.382169230000073,47.99112864200008],[23.374727824000047,47.99056020200011],[23.367286418000106,47.991206157000086],[23.360051717000147,47.99314402300002],[23.337520793000124,48.01086903900013],[23.28977176900014,48.03820587200006],[23.248637329000076,48.07122711200013],[23.23137740100009,48.07972788600013],[23.161717570000064,48.095902609000134],[23.13908329200009,48.09812469500004],[23.118619426000066,48.09153595000005],[23.0989823810001,48.07122711200013],[23.07655481000012,48.024511617000044],[23.06311893700007,48.007458395000114],[23.02033085100004,47.98472076400013],[23.004414510000117,47.98306711900007],[22.988188110000095,47.986374411000085],[22.97247847500006,47.99288564100014],[22.957078898000045,48.00012034100011],[22.939302206000036,48.00564972000002],[22.924109334000093,48.00482289600008],[22.91573775200004,47.99298899400016],[22.924212687000136,47.97273183200015],[22.91584110500014,47.95919260699999],[22.897857706000078,47.95097605500013],[22.877600546000053,47.9467385870001],[22.840806925000063,47.966789043000134],[22.8324353430001,47.97893300400015],[22.84948856600002,47.99314402300002],[22.851348918000042,48.00880198200014],[22.857963501000114,48.018026226000174],[22.8615808510001,48.0283873500001],[22.85475956200014,48.04730092400003],[22.84432092300011,48.06104685500015],[22.830988403000102,48.07244150800007],[22.801429484000064,48.090967509],[22.765566040000124,48.10453257300016],[22.762052043000065,48.10926096600014],[22.745722290000117,48.11628896100007],[22.72856571400007,48.11313669900004],[22.71161584500007,48.10582448400014],[22.693219035000055,48.10176788400003],[22.621182088000097,48.10176788400003],[22.608056274000116,48.096832784000085],[22.605472453000118,48.09703949000014],[22.60009810300008,48.10112192800015],[22.58304488100012,48.124815572999985],[22.568885539000092,48.15651906300009],[22.555759725000115,48.1771637990001],[22.481449015000123,48.24258616200007],[22.47741825400004,48.243929749000145],[22.4732841390001,48.244498190000016],[22.469046672000047,48.244136454000014],[22.449719686000094,48.23767690000015],[22.434216756000097,48.236746725],[22.418403768000104,48.23896881100002],[22.39876672400007,48.244343160000156],[22.39452925600011,48.244756572000156],[22.390498495000113,48.244343160000156],[22.386467732000114,48.24305125000002],[22.378612915000076,48.23886545900008],[22.370861450000092,48.237392680000156],[22.3636267490001,48.238710429000136],[22.357115519000047,48.24310292600005],[22.30812626100004,48.29369415300009],[22.29737756300011,48.31400299100001],[22.296447388000075,48.32780059800014],[22.29872115100008,48.33932444300008],[22.29872115100008,48.34914296500013],[22.29127974400006,48.35756622400014],[22.28435510300008,48.358393047000064],[22.25675988800009,48.35728200300015],[22.256966593000126,48.37322418200007],[22.271849406000086,48.403454895],[22.236089315000072,48.41528879800001],[22.20198286900009,48.41815684],[22.16922001100008,48.409526876000044],[22.159298136000103,48.4023180140001],[22.15831518200011,48.40222700000011],[22.15826320500008,48.402222187000156],[22.15650760900013,48.402059631000114],[22.132839803000106,48.40479848300008],[22.13376997900005,48.476835429000126],[22.144828735000146,48.49311350600006],[22.148342733000106,48.50882314100012],[22.136663859000038,48.54933746300004],[22.1387309160001,48.56959462500005],[22.153717081000078,48.585872701000156],[22.219036092000124,48.62093516099999],[22.2252372640001,48.62822153800006],[22.235675903000125,48.6441637170001],[22.243220663000102,48.65119171100009],[22.25551965400012,48.65677276600003],[22.282184692000072,48.66240549700014],[22.29427697800008,48.66762481700009],[22.310296671000117,48.68168080700009],[22.32249230900004,48.70033599900016],[22.328900187000073,48.721575013000134],[22.327659953000133,48.74302073200006],[22.330760539000096,48.756404928],[22.338408650000076,48.76296783499999],[22.34781376100011,48.76787709600002],[22.356495402000064,48.776145325000144],[22.363420044000065,48.787617493000155],[22.36569380700007,48.794387106000116],[22.36352339600009,48.82828684500013],[22.36155969300006,48.83645172200015],[22.36228316200004,48.84425486200017],[22.36889774600013,48.856450501],[22.37079870500014,48.858248147000054],[22.378406210000033,48.86544220000003],[22.402384074000054,48.87882639600015],[22.4117891840001,48.8877664190001],[22.413752889000136,48.89386423800015],[22.413649536000094,48.906783346000154],[22.41488977100005,48.91169260700009],[22.427292114000096,48.929469300000115],[22.448996216000097,48.97143056200012],[22.46656620300007,48.98052561499999],[22.50501346900012,48.9842463180001],[22.52051639800004,48.99292795800007],[22.52010298600004,49.009826152000144],[22.524753865000093,49.032873841000125],[22.531988566000052,49.05571482400002],[22.539636678000136,49.0721996060001],[22.56072066300007,49.085532125000114],[22.580771118000115,49.0814496870001],[22.618288208000106,49.054216207000124],[22.642886190000098,49.043157451000106],[22.664383586000042,49.04145212800013],[22.685777629000142,49.042795716000015],[22.721951132000072,49.04103871700012],[22.744482055000105,49.04553456700016],[22.755334106000134,49.04470774300013],[22.76546268700008,49.0384032190001],[22.783962850000105,49.021349996000176],[22.79502160600012,49.01902455600005],[22.81290165200008,49.01287506199999],[22.83501916500009,48.999749248],[22.85527632600011,48.994013164000144],[22.866955200000064,49.0099811810001],[22.865014020000046,49.013237354000026],[22.86375126100009,49.01535553000015],[22.847524862000085,49.033700664000044],[22.843184041000114,49.0431057740001],[22.84442427600004,49.0566966760001],[22.853519328000118,49.0762820440001],[22.853415975000104,49.08475697900011],[22.84132369000011,49.094885559000076],[22.796468546000114,49.11137034200014],[22.77807173700012,49.12031036399999],[22.748822876000073,49.14558014000011],[22.716370077000136,49.1605663050001],[22.720194132000103,49.161186422000085],[22.721434367000114,49.161599833000096],[22.705724731000146,49.168834534000055],[22.69249556500006,49.157930807000085],[22.68784468600009,49.15591542600005],[22.681746867000125,49.161238098000084],[22.687121216000094,49.17338206],[22.702934204000115,49.19503448500007],[22.717093547000047,49.230432841],[22.73394006300012,49.26087026000006],[22.737764120000065,49.27539133800012],[22.724224894000088,49.36706532900002],[22.71978072100009,49.38298167000015],[22.71419966600007,49.39062978100013],[22.69259891700008,49.405512594000136],[22.679576456000063,49.41894846700002],[22.67678592900009,49.42447784500003],[22.67306522600009,49.4358466600001],[22.666864054000115,49.478376364000056],[22.660146118000085,49.493000794000054],[22.640922485000146,49.52876088500015],[22.665830526000033,49.56736318000004],[22.741691528000047,49.63366404200015],[22.75895145600012,49.66560007800002],[22.766186157000078,49.67423004199999],[22.77734826600002,49.68048289000007],[22.798845662000073,49.683273417000045],[22.809801066000148,49.686322327000155],[22.826647583000124,49.69738108300008],[22.888245890000064,49.769728088000036],[22.897961060000085,49.77742787700011],[22.90674605300009,49.78120025700004],[22.92441939200009,49.78543772500008],[22.93310103400006,49.791070456000035],[22.937751913000113,49.798201803000055],[22.94591678800012,49.81835561100003],[22.95118778500006,49.826623841000085],[22.993045695000117,49.85442576100003],[23.101462850000075,49.957106832000036],[23.141253702000085,49.985477194000126],[23.177840617000125,50.00397735600008],[23.207916301000097,50.03394968700011],[23.436429484000087,50.193474834000156],[23.48159468600008,50.21595408200007],[23.536061646000064,50.24277415000016],[23.536164999000107,50.24277415000016],[23.536268351000047,50.242825826000065],[23.536371704000143,50.242825826000065],[23.565310506000117,50.25781199200004],[23.644168741000044,50.31269236300015],[23.658018026000093,50.32561147100015],[23.658677406000038,50.32700492700017],[23.671247193000113,50.35356842100008],[23.68220259600008,50.36824452800015],[23.69574182100007,50.37677113800008],[23.713001749000057,50.38240387000008],[23.747521606000134,50.38938018800009],[23.928699178000045,50.39082712800008],[23.981305786000064,50.40477976500007],[24.003216593000104,50.43769765200003],[24.007764120000047,50.44849802700006],[24.00941776500008,50.46146881100016],[24.007867472000072,50.480744121000114],[24.010657999000017,50.49278472900009],[24.07504683500011,50.51428212500004],[24.093960408000072,50.52714955700013],[24.106466105000067,50.53862172500014],[24.107706340000078,50.54084381100013],[24.102538696000092,50.5436343380001],[24.09540734900014,50.556863505000095],[24.085278768000105,50.6044058230001],[24.108429809000086,50.62988230400013],[24.10816542300006,50.63028741100008],[24.082798299000018,50.66915639300011],[24.074943482000094,50.690188701000025],[24.081041301000138,50.71297800700001],[24.054169555000044,50.71716379800016],[24.026884400000114,50.7280158490001],[24.01282841000011,50.743312073000155],[24.025850871000046,50.7608303840001],[24.025850871000046,50.76703155500009],[23.997945598000058,50.76920196600018],[23.974277791000134,50.77617828400018],[23.959498332000123,50.78889068700015],[23.9576379800001,50.80801096700004],[23.969936971000067,50.82516754200019],[23.992881307000086,50.836226298],[24.02047652100009,50.83855173700012],[24.046934855000075,50.82909495100016],[24.067295369000107,50.83483103400012],[24.10047163900012,50.83498606400015],[24.13085738100008,50.83906850199999],[24.143156372000107,50.856431783000104],[24.1302372640001,50.8689374800001],[24.046934855000075,50.898031311000075],[23.979342081000112,50.93751210600011],[23.96435591600004,50.953221741000085],[23.958878214000066,50.96634755500015],[23.957844685000083,50.975339254000104],[23.95505415800011,50.98355580700003],[23.9439954020001,50.99420115100013],[23.931799764000086,50.999472148000145],[23.919087361000038,51.002727763000124],[23.911749308000136,51.006810201000135],[23.915986776000096,51.01466501900008],[23.915986776000096,51.02086619100008],[23.9042045490001,51.06272410100014],[23.895522909000135,51.076108297000175],[23.869271281000096,51.10173980700012],[23.854491821000092,51.12153188100002],[23.858212524000095,51.13073028600003],[23.874748983000103,51.13613047299999],[23.863586873000145,51.148274434000186],[23.816044556000037,51.17878936800018],[23.765194946000122,51.19902069199999],[23.7426640220001,51.216254781000075],[23.687266886000145,51.29240000500015],[23.67021366400013,51.299376323000146],[23.650886678000063,51.29960886700012],[23.635177043000112,51.304698996000084],[23.628665812000122,51.32596384800017],[23.634040161000087,51.33929636700019],[23.647786092000043,51.35399831200009],[23.66556278500005,51.36580637600009],[23.683856242000047,51.3702763880001],[23.677655070000128,51.38378977500018],[23.678895304000093,51.39407338500017],[23.686026652000123,51.40104970300017],[23.69760217300006,51.4044345090001],[23.68943729700004,51.41642344200015],[23.648716268000072,51.45396637000014],[23.647165975000064,51.460193380000035],[23.662772258000103,51.48019215900016],[23.648612915000054,51.48621246400002],[23.63052616400003,51.49042409300016],[23.614816528000063,51.49721954400009],[23.608098592000147,51.5112238570001],[23.60623824100014,51.517399191],[23.61543664600012,51.51311004700001],[23.62411828600008,51.51590057400007],[23.628665812000122,51.53122263600012],[23.62628869700009,51.54088612900016],[23.599106893000112,51.58897104900002],[23.59331913200012,51.596955058],[23.5943526610001,51.60496490500016],[23.606444946000092,51.618116557000135],[23.61667688000008,51.62478281700005],[23.628975871000108,51.629046122000105],[23.726230916000134,51.644859111000116],[23.749692017000115,51.64447153800002],[23.82028202300009,51.63126820900011],[23.84529341600009,51.62982126900012],[23.884877563000142,51.61987355600003],[23.91288619000005,51.59858286600006],[23.941308228000082,51.58191721600012],[23.981305786000064,51.585999654000105],[24.13075402800007,51.669792989000186],[24.244132121000064,51.71821380700014],[24.272347452000133,51.74288930300004],[24.29611861200007,51.80813079800008],[24.311518189000083,51.827561137000046],[24.34789839700005,51.86115081800007],[24.369602498000063,51.87510345500009],[24.390789836000096,51.88001271600011],[24.639766886000046,51.8921308390001],[24.701055135000104,51.8829065960001],[24.72182906100005,51.88233815600013],[25.002742147000074,51.910475973000175],[25.09265913900012,51.93975067200013],[25.138031046000037,51.94894907700013],[25.18329960100004,51.949750061000046],[25.35197147700006,51.92148305300016],[25.547396408000054,51.91944198200004],[25.683475789000056,51.91802073200013],[25.76791508000008,51.928511047000185],[25.9811320390001,51.90347381600016],[26.050585165000086,51.90481740400004],[26.08076420100008,51.90065745100009],[26.145359741000046,51.86484568400009],[26.17533207200009,51.85670664500016],[26.40777266500004,51.85060882600011],[26.419761597000104,51.846862285],[26.41996830200014,51.83973093700014],[26.416971069000027,51.83063588500009],[26.41924483200006,51.82092071600014],[26.431543823000084,51.81022369400013],[26.445599813000115,51.80559865400009],[26.665741415000124,51.801387024000135],[26.854773803000082,51.7493488570001],[26.920816284000125,51.74252756800014],[27.02158532700011,51.76454172800014],[27.109952026000116,51.762422995000136],[27.151086466000095,51.75676442500013],[27.177854858000075,51.74707509400018],[27.18415938300009,51.73144297400013],[27.18147220800006,51.71012644500014],[27.18105879700005,51.68340973000009],[27.18901696800009,51.66377268500007],[27.203589722000057,51.65514272100002],[27.223640177000107,51.65369578000012],[27.2479281010001,51.65565948500013],[27.277487020000137,51.65113779700011],[27.274489787000018,51.633800354000115],[27.259710327000107,51.612302959000075],[27.254025920000057,51.59537892700017],[27.26746179200012,51.58749827100003],[27.28926924700005,51.58897104900002],[27.32906009900006,51.596955058],[27.388384644000066,51.590728048000116],[27.40900354000007,51.59170990000016],[27.430966023000053,51.598427836],[27.4587679440001,51.61749644000018],[27.477268107000043,51.62367177400016],[27.51230472800006,51.623129171000116],[27.512426250000146,51.62309861700005],[27.620618531000076,51.59589569200001],[27.676842488000148,51.5948104860001],[27.69265547700013,51.589229432000096],[27.70516117400012,51.568352153000134],[27.697306356000094,51.543185730000076],[27.664130087000103,51.492852885000026],[27.666181614000095,51.49019444700015],[27.67033125800009,51.48481720000002],[27.68376713100014,51.475515443000106],[27.700045207000045,51.467531433000126],[27.7142562250001,51.463707377],[27.73012089000011,51.465154317],[27.74055953000007,51.47140716600008],[27.78732670100007,51.51091379800012],[27.792546021000078,51.51729583800015],[27.797145223000143,51.53060251900017],[27.796266724000105,51.54153208500004],[27.793734578000112,51.55230662000015],[27.79321781400006,51.56501902300011],[27.799522339000074,51.58519866900009],[27.812544800000126,51.60201934900009],[27.831251668000107,51.61292307600003],[27.854196004000126,51.61532603000007],[27.87559004700006,51.608039653],[27.936051473000077,51.56700856500005],[27.954758342000076,51.56078155500016],[27.97315515100007,51.55781016100015],[28.070823608000097,51.55762929300003],[28.090150594000136,51.562047628000116],[28.1142318120001,51.5756126910001],[28.146684611000097,51.614395854000136],[28.166218302000118,51.63310272300011],[28.187612346000037,51.6451950080001],[28.21003991700013,51.65196462100015],[28.23040043100013,51.65113779700011],[28.245128214000147,51.64062164300016],[28.248900594000077,51.63059641600013],[28.248383830000137,51.62209564200013],[28.249365682000104,51.61307810500007],[28.257788940000097,51.6017609660001],[28.269726196000136,51.594267884000075],[28.298509969000065,51.582976583000104],[28.310912313000127,51.57444997099999],[28.317423543000103,51.56395965600005],[28.328172241000118,51.53636444100012],[28.33385664900007,51.528380433000066],[28.34687911000009,51.52515065600009],[28.359643188000064,51.52936228400013],[28.38553308100009,51.5450460820001],[28.435349162000136,51.56613006600012],[28.46123905400009,51.57165944400013],[28.488369181000053,51.57202118000011],[28.578079468000112,51.56010976200018],[28.603917684000123,51.55354685500011],[28.61270267700013,51.539930115000104],[28.615183146000106,51.51956960100007],[28.63089278100008,51.463629863000065],[28.637300659000115,51.449625550000164],[28.647015829000054,51.43900604300008],[28.663552286000137,51.43399342900004],[28.67791833500013,51.43807586700002],[28.691147501000046,51.44342437799999],[28.70396325700011,51.44262339300015],[28.711094605000138,51.43024688700011],[28.718225952000093,51.41161753400006],[28.728767945000076,51.40125640900011],[28.746751342000067,51.41399465000008],[28.751608928000078,51.42874827100009],[28.74943851700007,51.46685964000015],[28.752229045000036,51.48370615700013],[28.77186608900007,51.51127553300002],[28.79987471600009,51.532617899000016],[28.831914103000084,51.54827585900007],[28.86364343200012,51.55892120400016],[28.892892294000063,51.56287445100004],[28.95459395400013,51.56326202400014],[28.980845581000064,51.56946319700005],[28.99996586100013,51.582408142000055],[29.023633667000066,51.614034119000124],[29.04358077000009,51.62617808100013],[29.063217814000044,51.63059641600013],[29.083681681000087,51.63121653300003],[29.12388594500004,51.62504119900002],[29.147967163000146,51.61563608800016],[29.160421183000043,51.60331125900002],[29.181453491000067,51.56700856500005],[29.214836467000026,51.53546010300009],[29.22651534000013,51.51905283600003],[29.230442749000105,51.49287872300012],[29.221037638000126,51.46696299200009],[29.227755574000152,51.45562001600008],[29.244395386000093,51.4478943890001],[29.264859253000136,51.43290822400002],[29.27612471600017,51.41358123900007],[29.284599650000104,51.39174794600014],[29.29700199400017,51.373712870000034],[29.319946330000075,51.36557383200012],[29.34056522600011,51.37009552000016],[29.353260212000148,51.377055123],[29.379684285000135,51.391541239000084],[29.402731975000194,51.39614044200011],[29.446398559000073,51.38490081800008],[29.466293986000064,51.38505584800011],[29.480866740000096,51.40125640900011],[29.495542846000117,51.42564768500015],[29.505464722000198,51.437455750000154],[29.519003947000186,51.441796570000136],[29.54504886900017,51.443656921000134],[29.568199911000224,51.449625550000164],[29.5831860760002,51.460813498],[29.597345418000177,51.47396514899999],[29.618015991000078,51.48564402300015],[29.637756388000152,51.49088918100007],[29.66080407800021,51.49313710600007],[29.68271488500008,51.491199240000135],[29.69997481300007,51.48370615700013],[29.71651127100003,51.46567108200013],[29.72529626500014,51.45045237200018],[29.737905314000074,51.43949696900001],[29.828649129000127,51.42996266800013],[29.846632528000068,51.43290822400002],[29.85676110800014,51.439858704000116],[29.873607625000233,51.45918569000015],[29.886268351000155,51.46479258200018],[29.896551961000085,51.464198304000135],[29.91257165500022,51.45742869100009],[29.925077352000212,51.45786794100012],[29.985745483000102,51.47786672000014],[30.008689819000125,51.48207835000009],[30.148629598000042,51.48442962700012],[30.177310018000156,51.47949452700008],[30.205370320000068,51.46649790400015],[30.242784057000136,51.43440684000005],[30.256891723000056,51.42505340600009],[30.307379598000093,51.40960215299999],[30.320195353000177,51.40208323200015],[30.326189819000124,51.39526194299999],[30.32903202300005,51.3886215210001],[30.330117229000077,51.380715027000136],[30.33001387600015,51.37035390300003],[30.328256877000086,51.362473247000175],[30.3198852940001,51.3415959680001],[30.317094767000214,51.34058827700012],[30.32453617400003,51.329968771000054],[30.35512862100009,51.30526743600013],[30.368461141000097,51.29767100100018],[30.38375736500015,51.29392445900005],[30.41352299000002,51.294053650000095],[30.428095744000103,51.29175404900017],[30.44277185100006,51.28304657000011],[30.465044393000227,51.261936748000075],[30.480702351000073,51.258862],[30.494654989000054,51.25992136700002],[30.50809086100011,51.25767344200001],[30.52080326400008,51.252402446000175],[30.53201705,51.244625143000164],[30.539613484000167,51.23516835600019],[30.550672242000104,51.236796163000136],[30.554656844000107,51.24250742700017],[30.555323120000164,51.243462423000054],[30.55661503100012,51.26731109600003],[30.559353882000067,51.269326478000075],[30.577233928000197,51.28901519800002],[30.579921102000213,51.3036654670001],[30.610461874000148,51.31754058899999],[30.638315470000208,51.33585988400016],[30.632424357000076,51.36410105400013],[30.645550171000053,51.36746002300005],[30.644516642000074,51.372679342000154],[30.637488648000186,51.37859629300006],[30.632424357000076,51.38397064200002],[30.62260583500014,51.41210846000017],[30.618161661000013,51.41872304300007],[30.606017700000137,51.42456248000015],[30.59557906100011,51.42495005300007],[30.58787927200009,51.427353008000026],[30.584003540000165,51.439212749000134],[30.586018921000086,51.45184763600015],[30.59356368000013,51.4589014700001],[30.604829142000114,51.46122690900001],[30.618161661000013,51.45965077800018],[30.618161661000013,51.467143861000025],[30.607619670000048,51.46983103500015],[30.59728438300007,51.474275208000066],[30.588912801000077,51.481819967000106],[30.584003540000165,51.49383473799999],[30.589739624000085,51.50197377600009],[30.58539880300023,51.50938934400001],[30.57506351700013,51.51605560300011],[30.56286788000008,51.52176584900015],[30.571446167000232,51.52641672800002],[30.576407105000182,51.53111928400001],[30.584003540000165,51.54225555400013],[30.567415405000162,51.5472681690001],[30.534135783000092,51.553262635000024],[30.52256026200004,51.562719422],[30.52256026200004,51.56892059300016],[30.527727905000145,51.571297709000035],[30.53108687400018,51.57331309000007],[30.53527266500012,51.575018412000034],[30.54312748200007,51.576387838000116],[30.54312748200007,51.58258901],[30.534549194000107,51.58584462600008],[30.51511885600021,51.596257427000104],[30.51511885600021,51.60367299400012],[30.543850952000213,51.620131938],[30.55661503100012,51.62362009700014],[30.552842651000077,51.63333526700008],[30.54994877100009,51.63718516000013],[30.555323120000164,51.63976898300002],[30.563487996000077,51.647313742000094],[30.57030928600014,51.65149953300012],[30.5643148190002,51.66529714000016],[30.57599369300007,51.6864069620001],[30.57030928600014,51.69992034900015],[30.5828149820002,51.70229746500003],[30.613820842000134,51.702917583],[30.624982951000074,51.70609568300016],[30.63056400600007,51.71560414700003],[30.632010946000175,51.727980652],[30.635059855000094,51.73968536400018],[30.64617028800015,51.74707509400018],[30.64617028800015,51.754542338000114],[30.638108765000226,51.75511077900016],[30.618161661000013,51.76133778900005],[30.630460653000085,51.77001943000012],[30.65278487100014,51.77914032000011],[30.67056156400005,51.79053497400009],[30.669631388000113,51.80606374200003],[30.66229333500021,51.815598043000094],[30.661983277000136,51.819422099000136],[30.666324096000125,51.822393494000046],[30.672731975000172,51.82960235600011],[30.69453942900006,51.84727569600001],[30.69732995600023,51.85073801700007],[30.702807658000125,51.85376108900009],[30.707561890000218,51.860375672000075],[30.713969767000066,51.86696441700014],[30.734536987000155,51.87373403000002],[30.7372241620001,51.88223480300011],[30.73784427900014,51.891588237000136],[30.74166833500007,51.89791860000015],[30.749729859000098,51.89962392200011],[30.779495483000147,51.89791860000015],[30.788177124000214,51.90060577399999],[30.797065470000145,51.90672943200015],[30.810604696000127,51.91838246700003],[30.810604696000127,51.92517791800016],[30.805230347000162,51.929337871000094],[30.8025431720001,51.93553904200009],[30.803059937000086,51.93913055400015],[30.83137862100008,51.945900167],[30.845641317000144,51.9513520310001],[30.858043660000106,51.95763071800009],[30.869102417000107,51.9650204470001],[30.879334350000107,51.97365041100015],[30.87964440900006,51.97688018800012],[30.879024292000192,51.98202199300012],[30.880884643000197,51.988171489000095],[30.888739461000142,51.99434682300007],[30.896904338000155,51.99832590800007],[30.902795451000173,51.999979554],[30.908376505000064,51.998351746000154],[30.91519779500007,51.9925898230001],[30.941242716000115,51.99380422000003],[30.950131063000214,52.00677500400015],[30.94051924700014,52.020081686000154],[30.911270386000098,52.02256215400005],[30.91462935400008,52.02757476800009],[30.916851440000098,52.032354839],[30.919745321000075,52.03726409900004],[30.9247062580001,52.04227671299999],[30.918815145000195,52.05917490600008],[30.934421428000032,52.069716899000134],[30.959329467000234,52.07467783600002],[31.096323690000162,52.07961293600014],[31.13482263200009,52.07666737900006],[31.159213908000226,52.06811492900012],[31.204895874000073,52.04393035900013],[31.22897709100019,52.038220114000076],[31.25243819100015,52.0444988],[31.268871297000228,52.06124196400005],[31.284270874000214,52.08124074300018],[31.304424683000065,52.09749298100009],[31.383076213000066,52.117491761000124],[31.474853556000117,52.117775981000094],[31.64993330900009,52.096847026000106],[31.764344930000075,52.10056772900013],[31.825839884000086,52.104055888000076],[31.858706095000088,52.099870097000135],[31.882063843000225,52.08640838600009],[31.887489868000127,52.07002695700014],[31.887748250000097,52.0515526330001],[31.89203739400014,52.036178895000134],[31.910382528000156,52.02907338500002],[31.927229044000086,52.03108876600005],[31.980559122000184,52.04762522500015],[32.01693933100009,52.049795634000034],[32.077142375000136,52.03995127400007],[32.09559086100015,52.04072642100008],[32.23330855300017,52.08085317000016],[32.27769860900011,52.10266062500001],[32.306740763000136,52.14118540500006],[32.31883304900012,52.201414287000134],[32.32823815900005,52.21916514100014],[32.33784997600017,52.22546966600008],[32.35014896700014,52.22988800100016],[32.36131107600007,52.23590830500011],[32.366995484000114,52.24719960600008],[32.363274781000115,52.25572621700009],[32.34446455900016,52.27652598100003],[32.3395036210002,52.287248841000135],[32.353559611000065,52.3215878300001],[32.39428063900013,52.32680715000011],[32.48058028200015,52.30714426700014],[32.528432658000064,52.31621348100013],[32.72542321800009,52.252083029000104],[32.75560225400008,52.252393087000186],[32.81482344500009,52.262004903],[32.844175660000154,52.262340800000075],[32.86102217700014,52.25719899600009],[32.89078780100013,52.24231618300014],[32.90897790500017,52.24110178700012],[32.92685795100013,52.24691538600008],[33.03010746300018,52.30360443100001],[33.04824589000012,52.309082134000086],[33.05728926600014,52.308642884000065],[33.07041508000012,52.30417287200005],[33.079613485000124,52.305593975000036],[33.087364949000204,52.31076161800014],[33.099043823000066,52.32476593100013],[33.108862345000176,52.32833160400013],[33.12798262500004,52.332724102000114],[33.140850057000165,52.34037221300018],[33.166636597000064,52.360060934000145],[33.182862996000175,52.367295635000104],[33.19650557500009,52.36894928000005]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Vatican","sov_a3":"VAT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vatican","adm0_a3":"VAT","geou_dif":0,"geounit":"Vatican","gu_a3":"VAT","su_dif":0,"subunit":"Vatican","su_a3":"VAT","brk_diff":0,"name":"Vatican","name_long":"Vatican","brk_a3":"VAT","brk_name":"Vatican","brk_group":null,"abbrev":"Vat.","postal":"V","formal_en":"State of the Vatican City","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vatican (Holy Sea)","name_alt":"Holy Sea","mapcolor7":1,"mapcolor8":3,"mapcolor9":4,"mapcolor13":2,"pop_est":832,"gdp_md_est":355,"pop_year":0,"lastcensus":-99,"gdp_year":0,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":0,"fips_10_":"VT","iso_a2":"VA","iso_a3":"VAT","iso_n3":"336","un_a3":"336","wb_a2":"-99","wb_a3":"-99","woe_id":23424986,"woe_id_eh":23424986,"woe_note":"Exact WOE match as country","adm0_a3_is":"VAT","adm0_a3_us":"VAT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":4,"homepart":1,"filename":"VAT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[12.45313691700008,41.902751941000105],[12.452714082000085,41.90301621300002],[12.452766936000103,41.90343904900004],[12.45303120800014,41.90391473800014],[12.453982588000143,41.903861884],[12.454035442000075,41.902751941000105],[12.45313691700008,41.902751941000105]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"American Samoa","adm0_a3":"ASM","geou_dif":0,"geounit":"American Samoa","gu_a3":"ASM","su_dif":0,"subunit":"American Samoa","su_a3":"ASM","brk_diff":0,"name":"American Samoa","name_long":"American Samoa","brk_a3":"ASM","brk_name":"American Samoa","brk_group":null,"abbrev":"Am. Samoa","postal":"AS","formal_en":"American Samoa","formal_fr":null,"note_adm0":"U.S.A.","note_brk":null,"name_sort":"American Samoa","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":65628,"gdp_md_est":575.3,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"AQ","iso_a2":"AS","iso_a3":"ASM","iso_n3":"016","un_a3":"016","wb_a2":"AS","wb_a3":"ASM","woe_id":23424746,"woe_id_eh":23424746,"woe_note":"Exact WOE match as country","adm0_a3_is":"ASM","adm0_a3_us":"ASM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":14,"long_len":14,"abbrev_len":9,"tiny":3,"homepart":-99,"filename":"ASM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-168.16047115799995,-14.520928643999968],[-168.1615697909999,-14.532891533999901],[-168.17308508999992,-14.52369557099992],[-168.16352291599992,-14.519789320999932],[-168.16047115799995,-14.520928643999968]]],[[[-170.62006588399993,-14.254571221999909],[-170.59101314999995,-14.264825127999925],[-170.57624264199987,-14.252536716999884],[-170.56725012899986,-14.258558851999894],[-170.5684708319999,-14.270928643999838],[-170.58417721299995,-14.277764580999943],[-170.6423233709999,-14.28069426899995],[-170.65929114499986,-14.28525156],[-170.68358313699994,-14.30282968500002],[-170.72179114499986,-14.353448174999839],[-170.74864661399988,-14.374688408999914],[-170.7554825509999,-14.36712004999987],[-170.7964574859999,-14.339939059999862],[-170.82282467399992,-14.326755467],[-170.83124752499995,-14.319431247999901],[-170.78864498599992,-14.29452890399996],[-170.77257239499994,-14.291436455999886],[-170.7378637359999,-14.29208749799993],[-170.72150631399995,-14.289239190999893],[-170.6984757149999,-14.260511976999936],[-170.66144771999996,-14.252373956],[-170.62006588399993,-14.254571221999909]]],[[[-169.4401342439999,-14.245293877999956],[-169.44713294199988,-14.255629164999872],[-169.46015377499984,-14.250420830999957],[-169.46808834499993,-14.258721612999949],[-169.47618567599986,-14.26238372199999],[-169.4849747389999,-14.261976820999891],[-169.49486243399994,-14.257256768999895],[-169.49836178299992,-14.266045830999943],[-169.50426184799986,-14.270603122999901],[-169.51252193899992,-14.271742445999848],[-169.52281653599988,-14.270928643999838],[-169.52550208199995,-14.258965752999899],[-169.52928626199986,-14.248793226999936],[-169.53477942599986,-14.24114348799992],[-169.54267330599987,-14.236748955999843],[-169.52753658799986,-14.226006768999921],[-169.50645911399985,-14.222263278999888],[-169.46385657499988,-14.22323984199987],[-169.4440404939999,-14.230645440999936],[-169.4401342439999,-14.245293877999956]]],[[[-169.63560950399986,-14.177015882999868],[-169.66014563699989,-14.189141533999859],[-169.66974850199986,-14.187920830999843],[-169.67621822799995,-14.174899997999859],[-169.67617753799988,-14.174899997999859],[-169.6681615879999,-14.16912200299997],[-169.65819251199994,-14.16887786299985],[-169.6471654939999,-14.172133070999891],[-169.63560950399986,-14.177015882999868]]],[[[-171.07347571499992,-11.062107028999918],[-171.0815323559999,-11.066094658999901],[-171.08653723899988,-11.060316664999931],[-171.0856420559999,-11.051364841999913],[-171.07282467399995,-11.052504164999943],[-171.07347571499992,-11.062107028999918]]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Ashmore and Cartier Islands","adm0_a3":"ATC","geou_dif":0,"geounit":"Ashmore and Cartier Islands","gu_a3":"ATC","su_dif":0,"subunit":"Ashmore and Cartier Islands","su_a3":"ATC","brk_diff":0,"name":"Ashmore and Cartier Is.","name_long":"Ashmore and Cartier Islands","brk_a3":"ATC","brk_name":"Ashmore and Cartier Is.","brk_group":null,"abbrev":"A.C.Is.","postal":"AU","formal_en":"Territory of Ashmore and Cartier Islands","formal_fr":null,"note_adm0":"Auz.","note_brk":null,"name_sort":"Ashmore and Cartier Islands","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":-99,"gdp_md_est":-99,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"AT","iso_a2":"-99","iso_a3":"-99","iso_n3":"036","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":23424749,"woe_id_eh":23424749,"woe_note":"WOE admin-1 match.","adm0_a3_is":"AUS","adm0_a3_us":"ATC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":23,"long_len":27,"abbrev_len":7,"tiny":-99,"homepart":-99,"filename":"ashmoreandcartieris.geojson"},"geometry":{"type":"Polygon","coordinates":[[[123.59701582100011,-12.428317966999899],[123.59774824300007,-12.438571872999844],[123.57561282600017,-12.436781507999939],[123.57504316500001,-12.426608981999905],[123.59701582100011,-12.428317966999899]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Country","admin":"Australia","adm0_a3":"AUS","geou_dif":0,"geounit":"Australia","gu_a3":"AUS","su_dif":0,"subunit":"Australia","su_a3":"AUS","brk_diff":0,"name":"Australia","name_long":"Australia","brk_a3":"AUS","brk_name":"Australia","brk_group":null,"abbrev":"Auz.","postal":"AU","formal_en":"Commonwealth of Australia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Australia","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":21262641,"gdp_md_est":800200,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"AS","iso_a2":"AU","iso_a3":"AUS","iso_n3":"036","un_a3":"036","wb_a2":"AU","wb_a3":"AUS","woe_id":-90,"woe_id_eh":23424748,"woe_note":"Includes Ashmore and Cartier Islands (23424749) and Coral Sea Islands (23424790).","adm0_a3_is":"AUS","adm0_a3_us":"AUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AUS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[158.86573326900012,-54.749932549999826],[158.83822675900015,-54.750420830999985],[158.83204186300011,-54.73805103999996],[158.832367384,-54.73365650799997],[158.83822675900015,-54.729913018999945],[158.832367384,-54.71168385199987],[158.8351343110002,-54.689873955999914],[158.84571373800023,-54.65488046699991],[158.84815514400015,-54.649590752999934],[158.85645592500023,-54.63933684699991],[158.85938561300006,-54.63372161299982],[158.85824629000004,-54.63079192499989],[158.85531660200002,-54.625583591999984],[158.85279381600017,-54.619235934999956],[158.85254967500023,-54.61321379999986],[158.85645592500023,-54.60377369599985],[158.86060631600017,-54.59929778399988],[158.86573326900012,-54.594903252999984],[158.87232506600014,-54.585870049999976],[158.88135826900003,-54.5663387999999],[158.89340253999998,-54.510837497999944],[158.90772545700005,-54.49618905999993],[158.94849694100006,-54.486016533999894],[158.96241295700023,-54.46933359199995],[158.96322675900015,-54.489190362999864],[158.95557701900012,-54.5512020809999],[158.94841556100008,-54.57122161299988],[158.92562910200004,-54.615655205999886],[158.91553795700005,-54.650974217],[158.89258873800006,-54.686944268999895],[158.88721764400023,-54.70598723799998],[158.88624108200023,-54.73259856599984],[158.88054446700008,-54.7457007789999],[158.86573326900012,-54.749932549999826]]],[[[147.36402428500017,-43.37932708099986],[147.36548912900005,-43.38787200299997],[147.36451256600006,-43.396742445999834],[147.3605249360002,-43.40862395599996],[147.3554793630002,-43.417901299999926],[147.34457441500015,-43.429864190999865],[147.34001712300014,-43.43645598799992],[147.33497155000012,-43.44768645599984],[147.3263452480002,-43.47812265399989],[147.3159285820001,-43.50066497199996],[147.3038843110002,-43.508884372999866],[147.287364129,-43.50497812299996],[147.26433353000007,-43.491794529],[147.25757897200012,-43.48967864399999],[147.25082441500015,-43.489922783999944],[147.24439537900014,-43.489353122999965],[147.23755944100006,-43.484307549999954],[147.23682701900012,-43.479750257999825],[147.23780358200003,-43.473402601999965],[147.24040774800008,-43.4689266909999],[147.24382571700016,-43.46998463299997],[147.23617597700016,-43.45077890399992],[147.2299910820001,-43.444268487999835],[147.2164819670002,-43.44264088299998],[147.22331790500002,-43.43906015400002],[147.23194420700023,-43.43238697699988],[147.23755944100006,-43.42962004999991],[147.21558678500006,-43.415215752999856],[147.20460045700005,-43.4257138],[147.19605553500006,-43.46998463299997],[147.184906446,-43.48984140399996],[147.16773522200018,-43.501641533999944],[147.14918053500017,-43.501153252999956],[147.1339624360002,-43.484307549999954],[147.12533613400004,-43.464776299999876],[147.10962975400005,-43.45077890399992],[147.09408613400015,-43.43987395599993],[147.08619225400017,-43.42962004999991],[147.09066816500004,-43.410902601999844],[147.10922285200004,-43.414971612999906],[147.1616317070001,-43.45403411299995],[147.17221113400015,-43.45891692499984],[147.17920983200023,-43.45403411299995],[147.18238365999997,-43.43645598799992],[147.18043053500017,-43.39723072699982],[147.1759546230002,-43.37932708099986],[147.1681421230002,-43.368259372999916],[147.17351321700008,-43.360039972],[147.18100019600004,-43.35426197699995],[147.19011478000013,-43.352715752999906],[147.20004316500004,-43.357028904],[147.21566816500004,-43.37753671699987],[147.22559655000012,-43.38551197699992],[147.23357181100005,-43.37151458099995],[147.2392684250002,-43.364841403999904],[147.24154707100004,-43.35621510199989],[147.23389733200008,-43.344008070999834],[147.22852623800023,-43.332207940999865],[147.23487389400023,-43.32301197699998],[147.25440514400023,-43.30950286299999],[147.28598066500004,-43.27556731599995],[147.30445397200006,-43.261814059999935],[147.31275475400003,-43.26824309699986],[147.33659915500013,-43.340264580999985],[147.3375757170002,-43.344496351999815],[147.3605249360002,-43.368259372999916],[147.36402428500017,-43.37932708099986]]],[[[147.43751061300017,-43.23894622199994],[147.42603600400005,-43.250258070999834],[147.40121504000015,-43.245049737999835],[147.39185631600006,-43.24407317499994],[147.37924238400012,-43.24781666499989],[147.36915123800006,-43.25465260199991],[147.36085045700008,-43.25790780999995],[147.35368899800008,-43.250258070999834],[147.34734134200002,-43.227959893999966],[147.35726972700004,-43.2179501279999],[147.37403405000023,-43.21070728999996],[147.38786868600008,-43.196221612999835],[147.36890709700006,-43.182875257999825],[147.31812584700015,-43.17717864399992],[147.29566491000017,-43.16562265399999],[147.2917586600001,-43.15300872199984],[147.30469811300011,-43.14568450299991],[147.35417728000007,-43.13941822699987],[147.34896894600013,-43.13388437299985],[147.33497155000012,-43.12688567499997],[147.3263452480002,-43.12053801899985],[147.33033287900014,-43.101006768999866],[147.34457441500015,-43.082207940999986],[147.36003665500016,-43.07488372199991],[147.37281334700006,-43.10125090899998],[147.3966577480002,-43.11712004999983],[147.40211022200006,-43.131117445999976],[147.40259850400005,-43.144707940999936],[147.4046330090001,-43.15536874799989],[147.4088647800002,-43.164971612999864],[147.41578209700018,-43.175876559999935],[147.41993248800023,-43.188409112999935],[147.43116295700023,-43.213962498],[147.43751061300017,-43.23894622199994]]],[[[148.17603600400005,-42.648207289999846],[148.14958743600005,-42.66643645599982],[148.10466556100008,-42.664727471999825],[148.0730086600001,-42.666761976999844],[148.08668053500006,-42.69654713299987],[148.110118035,-42.716485283999845],[148.10482832100004,-42.719496351999936],[148.04346764400023,-42.72918059699991],[148.02906334700018,-42.73650481599982],[148.01832116000006,-42.751234632999896],[148.01156660200004,-42.751234632999896],[148.01156660200004,-42.73072682099985],[148.0242619150001,-42.71933359199997],[148.03296959700006,-42.70387135199995],[148.04517662900005,-42.668715101999894],[148.02271569100006,-42.66627369599986],[148.0128686860002,-42.651625257999854],[148.0136824880002,-42.63176848799985],[148.0245874360002,-42.61345794099989],[148.03956139400023,-42.60320403399986],[148.06755618600008,-42.59303150799982],[148.079844597,-42.57927825299989],[148.0963647800002,-42.584405205999914],[148.116953972,-42.5857072899999],[148.13445071700008,-42.590101820999806],[148.14185631600017,-42.60377369599992],[148.143728061,-42.6202938779999],[148.14926191500015,-42.632745049999826],[148.15984134200016,-42.641859632999825],[148.17603600400005,-42.648207289999846]]],[[[148.33448326900006,-42.35662200299983],[148.32976321700005,-42.357110283999916],[148.320078972,-42.354099216999906],[148.30469811300006,-42.346286717],[148.29281660200004,-42.337009372999866],[148.28003991000017,-42.329359632999925],[148.24919681100013,-42.3239071589999],[148.24268639400023,-42.318129164999846],[148.2307235040001,-42.29941171699987],[148.24634850400014,-42.29509856599995],[148.26563561300011,-42.296482028999925],[148.29900149800017,-42.30559661299983],[148.31690514400023,-42.31438567499998],[148.32471764400023,-42.32366301899985],[148.3300887380001,-42.33603280999989],[148.34058678500017,-42.354099216999906],[148.33448326900006,-42.35662200299983]]],[[[144.76628665500007,-40.72649504999988],[144.77247155000012,-40.727634372999916],[144.77955162900017,-40.7238095029999],[144.78711998800023,-40.71851978999983],[144.79395592500023,-40.71599700299999],[144.82846113400015,-40.72136809699987],[144.894786004,-40.74480559699994],[144.93116295700008,-40.75017669099998],[144.96794681100008,-40.7445614559999],[144.98471113399998,-40.74480559699994],[144.99968509200002,-40.753838799999855],[145.01400800900004,-40.76669687299996],[145.02686608200023,-40.773044528999904],[145.05836022200006,-40.78427499799999],[145.07536868600013,-40.80706145599984],[145.08464603000004,-40.80999114399995],[145.0952254570002,-40.812188408999944],[145.11882571700008,-40.821384372999916],[145.13721764400012,-40.818129164999874],[145.146250847,-40.80771249799989],[145.13355553500003,-40.791680596999896],[145.22673587300017,-40.79778411299996],[145.25025475400005,-40.791680596999896],[145.26148522200006,-40.77548593499993],[145.26392662900017,-40.75286223799988],[145.25945071700014,-40.73064544099991],[145.25025475400005,-40.71599700299999],[145.26921634200008,-40.71998463299997],[145.29517662900005,-40.73691171699987],[145.307871941,-40.755140882999854],[145.27784264400017,-40.76669687299996],[145.27035566499998,-40.77418385199985],[145.26685631599997,-40.78484465899996],[145.27003014400006,-40.797295830999985],[145.27865644600013,-40.80543385199982],[145.31836998800006,-40.82586028399989],[145.33236738400015,-40.838067315999865],[145.34213300899998,-40.84351978999989],[145.35596764400006,-40.84579843499996],[145.38843834700018,-40.84710051899995],[145.40528405000018,-40.85027434699984],[145.443044467,-40.86793385199985],[145.47103925900012,-40.86492278399993],[145.52393639400012,-40.84579843499996],[145.53370201900023,-40.88502369599989],[145.57211347700016,-40.90943775799994],[145.62094160200016,-40.92253997199991],[145.7115991550002,-40.93043385199996],[145.7292586600001,-40.93906015399989],[145.736094597,-40.95907968499995],[145.74390709700012,-40.97535572699998],[145.76156660200004,-40.99358489399995],[145.79127037900005,-41.01702239399985],[145.80982506600006,-41.02695077899993],[145.830332879,-41.03329843499988],[145.852793816,-41.03655364399992],[145.90267988400015,-41.03826262799993],[145.9155379570001,-41.04127369599992],[145.92115319100017,-41.04802825299987],[145.92514082100016,-41.058770440999965],[145.93474368600002,-41.06121184699999],[145.95533287900017,-41.05868906],[145.97852623800011,-41.065199476999894],[146.01661217500012,-41.087823174999954],[146.04151451900023,-41.094903253],[146.06226647200006,-41.105401299999976],[146.06885826900012,-41.10979583099996],[146.07894941500015,-41.1144345029999],[146.11963951900023,-41.12070077899995],[146.21436608200023,-41.155368748],[146.35377037900017,-41.167901299999926],[146.423675977,-41.16619231599992],[146.4915470710001,-41.15113697699991],[146.5463973320001,-41.13274504999987],[146.55518639400023,-41.13787200299997],[146.55844160199996,-41.15789153399993],[146.56251061300017,-41.16822682099995],[146.57211347700004,-41.176690362999885],[146.58562259200016,-41.1801083309999],[146.60010826900023,-41.175388278999975],[146.58253014400023,-41.161065362999906],[146.59107506600006,-41.14714934699984],[146.62680097700007,-41.126885675],[146.63599694100006,-41.11842213299988],[146.64861087300002,-41.09921640399992],[146.65479576900012,-41.09286874799997],[146.66675866000006,-41.08806731599999],[146.68978925900004,-41.08749765399993],[146.70264733200023,-41.08521900799987],[146.71469160200004,-41.079766534],[146.73064212300008,-41.068536065999915],[146.74415123800023,-41.065524997999916],[146.753672722,-41.06633879999984],[146.765391472,-41.06975676899994],[146.77670332099999,-41.07439544099995],[146.78500410200013,-41.07903411299989],[146.79590905000023,-41.09172942499993],[146.80827884200016,-41.11256275799983],[146.81251061300011,-41.132094007999825],[146.798675977,-41.1405575499999],[146.80811608200023,-41.156670830999914],[146.82471764400006,-41.160902601999844],[146.84351647200006,-41.16204192499988],[146.86019941500015,-41.16855234199997],[146.87289472700004,-41.15960051899985],[146.88168378999998,-41.15553150799998],[146.89112389400012,-41.15471770599997],[146.90512129000015,-41.15488046699993],[146.91651451900023,-41.15764739399998],[146.92644290500002,-41.16277434699991],[146.936859571,-41.16545989399989],[146.94955488399998,-41.161065362999906],[146.93409264400017,-41.15146249799993],[146.92237389400006,-41.14023202900001],[146.90788821700002,-41.13095468499988],[146.85873457100004,-41.12428150799991],[146.8380639980002,-41.11581796699988],[146.82422936300011,-41.09978606599989],[146.81934655000012,-41.07537200299993],[146.83773847700016,-41.03972747199998],[146.88152103000002,-41.02613697699992],[146.93262780000012,-41.01824309699987],[146.97291100400017,-40.9999325499999],[146.97917728000002,-40.99439869599996],[146.98658287900005,-40.98967864399996],[146.9948836600001,-40.98577239399988],[147.009043816,-40.981133721999846],[147.01303144599999,-40.97869231599999],[147.01758873800023,-40.97665780999998],[147.02409915500002,-40.97600676899992],[147.03003991000017,-40.978204033999916],[147.03305097700013,-40.98699309699989],[147.03834069100006,-40.98984140399993],[147.17107181100002,-41.00652434699997],[147.21021569100017,-40.989922783999916],[147.28598066500004,-40.941338799999954],[147.29566491000017,-40.9571265599999],[147.34278405000006,-40.942152601999965],[147.35368899800008,-40.95224374799993],[147.35450280000006,-40.96453215899997],[147.35816491000006,-40.971774997999916],[147.36548912900005,-40.97519296700001],[147.39291425899998,-40.97861093500002],[147.39779707100016,-40.98503997199985],[147.40040123800023,-40.993910414999974],[147.40837649800017,-41.00335051899991],[147.44483483200005,-41.00839609199993],[147.48462975400017,-40.986016533999916],[147.52035566499995,-40.95208098799988],[147.58139082100016,-40.87184010199985],[147.58643639400012,-40.85621510199986],[147.59742272200006,-40.84685637799991],[147.65056399800008,-40.82854583099996],[147.66895592500012,-40.82586028399989],[147.68376712300008,-40.83570728999982],[147.70020592500018,-40.853936455999886],[147.71713300900015,-40.86736419099988],[147.75367272200018,-40.85662200299987],[147.77605228000013,-40.86793385199985],[147.7986759770001,-40.884454034],[147.8198348320001,-40.89348723799992],[147.84945722700004,-40.88876718499992],[147.88575280000023,-40.873793226999894],[147.9161889980002,-40.85271575299987],[147.929047071,-40.829034112999935],[147.93213951900012,-40.82040781000002],[147.94629967500012,-40.79550546699999],[147.95167076900006,-40.76246510199995],[147.95826256600006,-40.751153252999956],[147.96924889400012,-40.74374765399989],[147.98422285200004,-40.736504815999865],[147.99097741000014,-40.74130624799986],[147.996918165,-40.74260833099986],[148.02027428500008,-40.74374765399989],[148.02930748800011,-40.74675872199998],[148.03598066500015,-40.752211195999834],[148.04273522200012,-40.76970794099988],[148.05193118600008,-40.76978932099986],[148.0693465500002,-40.76384856599992],[148.08090254000015,-40.76775481599984],[148.09400475400005,-40.77703215899988],[148.11402428499997,-40.797295830999985],[148.13111412900005,-40.82480234199993],[148.143809441,-40.83489348799989],[148.16553795700005,-40.83896249799986],[148.19898522200006,-40.8370093729999],[148.20932050900012,-40.840752862999935],[148.28736412900017,-40.9230282529999],[148.31462649800008,-40.961602471999946],[148.3256942070001,-40.98267994599989],[148.33139082099999,-41.00221119599988],[148.32349694100006,-41.01083749799996],[148.30884850399997,-41.014825127999856],[148.29265384200008,-41.024509373],[148.279063347,-41.035821221999896],[148.27230879000015,-41.04501718499995],[148.28402754000015,-41.04778411299983],[148.2944442070002,-41.05169036299992],[148.30225670700023,-41.05754973799995],[148.30640709700018,-41.065524997999916],[148.29053795700023,-41.106215101999894],[148.28907311300011,-41.11321379999988],[148.27475019600004,-41.12493254999995],[148.26889082100016,-41.15162525799989],[148.26889082100016,-41.18157317499987],[148.27230879000015,-41.20256926899999],[148.27751712300008,-41.215590101999894],[148.28199303500003,-41.22193775799991],[148.316254102,-41.25530364399998],[148.32154381600017,-41.268487237999935],[148.31641686300014,-41.28142669099995],[148.27198326900023,-41.308282158999845],[148.25416100400017,-41.32594166499986],[148.2579858730002,-41.346612237999864],[148.33326256600017,-41.29216887799987],[148.35417728000002,-41.29143645599984],[148.33106530000006,-41.32252369599985],[148.2794702480002,-41.45037200299994],[148.28003991000017,-41.466241143999966],[148.2838647800002,-41.48284270599993],[148.28589928500006,-41.50709400799984],[148.28402754000015,-41.51995208099986],[148.28109785200002,-41.52825286299992],[148.28126061300011,-41.53630950299987],[148.30795332100004,-41.57512786299987],[148.31267337300002,-41.586195570999834],[148.31495201900012,-41.606540622999916],[148.31104576900012,-41.62981536299983],[148.30201256600012,-41.65252044099988],[148.28907311300011,-41.67156340899987],[148.28614342500015,-41.68938567499984],[148.30640709700018,-41.75066497199987],[148.29468834700015,-41.762953382999825],[148.27442467500006,-41.77996184699988],[148.26099694100017,-41.80038827899986],[148.26856530000023,-41.822686455999886],[148.27361087300008,-41.830498955999886],[148.28394616000017,-41.855238539999945],[148.28589928500006,-41.8637020809999],[148.28907311300011,-41.872328382999896],[148.31267337300002,-41.89470794099984],[148.31576582100004,-41.90154387799984],[148.31641686300014,-41.906833592],[148.31869550900015,-41.9112281229999],[148.32691491000006,-41.915785414999846],[148.31348717500023,-41.94866301899984],[148.3003035820001,-42.00156015399989],[148.29932701900012,-42.050551039999945],[148.36378014400012,-42.110284112999835],[148.36394290500007,-42.115655205999886],[148.35645592500012,-42.11923593499995],[148.34669030000023,-42.12753671699984],[148.31934655000003,-42.15683359199987],[148.31592858200005,-42.17017994599988],[148.36068769600004,-42.184502862999864],[148.36426842500006,-42.20435963299987],[148.35417728000002,-42.24081796699993],[148.34994550900004,-42.246677341999956],[148.33106530000006,-42.26262786299996],[148.32691491000006,-42.267754815999886],[148.32178795700023,-42.27800872199991],[148.31104576900012,-42.273044528999876],[148.30128014400017,-42.262953382999896],[148.29900149800017,-42.258396091999856],[148.26465905000023,-42.25025807099984],[148.2579858730002,-42.244235934999935],[148.26050865999997,-42.23560963299984],[148.28101647200006,-42.22568124799993],[148.28589928500006,-42.21990325299987],[148.28907311300011,-42.21428801899995],[148.29615319100006,-42.20696379999987],[148.30323326900012,-42.197523695999934],[148.30640709700018,-42.18580494599986],[148.30250084700018,-42.178887627999856],[148.29322350400005,-42.16969166499989],[148.28199303500003,-42.16090260199982],[148.27230879000015,-42.155450127999885],[148.30062910200004,-42.1437313779999],[148.31397545700023,-42.13469817499997],[148.320078972,-42.119398695999834],[148.29273522200003,-42.11956145599997],[148.27475019600004,-42.113213799999855],[148.24431399800008,-42.08587004999996],[148.2265731130002,-42.07529062299993],[148.16244550899998,-42.05917734199987],[148.18970787900017,-42.04127369599982],[148.20582116000017,-42.034274997999916],[148.22046959700018,-42.03118254999983],[148.2319442070001,-42.02369557099988],[148.24170983200023,-42.00741952899984],[148.24244225400017,-41.99089934699987],[148.211192254,-41.976983330999886],[148.20508873800023,-41.9626604149998],[148.20240319100006,-41.9484188779999],[148.1962996750002,-41.94182708099983],[148.18100019599996,-41.94736093499993],[148.18287194100017,-41.95956796699991],[148.196543816,-41.97966887799987],[148.19369550900015,-42.000909112999935],[148.18628991000017,-42.00123463299987],[148.17554772200018,-41.99358489399985],[148.16244550899998,-41.99032968499998],[148.14698326900006,-41.999281507999825],[148.14673912900005,-42.012627862999835],[148.15251712300017,-42.02874114399991],[148.15503991,-42.04558684699991],[148.14942467500012,-42.04802825299984],[148.13868248800011,-42.051039320999934],[148.13013756600014,-42.05543385199984],[148.13135826900012,-42.061944268999824],[148.14136803500017,-42.07146575299982],[148.14698326900006,-42.075616143999866],[148.15503991,-42.07968515399991],[148.1679793630001,-42.08375416499996],[148.21705162900017,-42.09335702899986],[148.11939537900017,-42.091403903999904],[148.0929468110002,-42.100192966999956],[148.08253014400012,-42.115655205999886],[148.07894941500004,-42.13876718499985],[148.079844597,-42.18580494599986],[148.07447350400014,-42.19736093499988],[148.03891035200007,-42.22372812299989],[148.03467858200005,-42.234958591999884],[148.034434441,-42.24627044099995],[148.03060957100004,-42.25497812299986],[148.01490319100006,-42.258396091999856],[148.01807701900012,-42.26433684699997],[148.01221764400017,-42.27792734199993],[147.9834090500002,-42.31902434699984],[147.96387780000023,-42.33977629999982],[147.97584069100017,-42.335544528999904],[147.99382571700014,-42.317315362999835],[148.00473066499998,-42.3124325499999],[148.02247155000006,-42.31780364399991],[148.03093509200002,-42.33228932099986],[148.03044681100008,-42.347263278999975],[148.0052189460001,-42.36687590899986],[148.00318444100006,-42.39568450299997],[148.01156660200004,-42.44345468499992],[148.01107832100004,-42.489434502999885],[148.0060327480002,-42.514092705999886],[147.99488366000017,-42.524672132999925],[147.98096764400012,-42.528985283999845],[147.96566816500004,-42.54827239399988],[147.9532983730002,-42.552666924999855],[147.94288170700008,-42.54778411299989],[147.92790774800008,-42.52499765399995],[147.91529381600017,-42.51726653399986],[147.91578209700018,-42.52971770599987],[147.91065514400017,-42.53785572699988],[147.90137780000012,-42.54265715899995],[147.88868248800023,-42.5450985659999],[147.93685957099999,-42.59091562299999],[147.94336998800011,-42.61044687299989],[147.94239342500012,-42.628024997999916],[147.94336998800011,-42.6345354149999],[147.94629967500012,-42.640557549999826],[147.95085696700008,-42.64544036299989],[147.95508873800006,-42.64902109199985],[147.95704186300023,-42.651625257999854],[147.95736738400015,-42.67896900799984],[147.95533287900003,-42.691664320999884],[147.94955488400015,-42.7028134089999],[147.9531356130002,-42.719984632999925],[147.93995201900006,-42.73552825299992],[147.92042076900012,-42.74684010199982],[147.90544681100008,-42.751234632999896],[147.8893335300002,-42.760674737999835],[147.881114129,-42.7819149719999],[147.88086998800014,-42.80494557099996],[147.88868248800023,-42.819512628],[147.88363691500004,-42.82822030999989],[147.87989342500006,-42.83098723799995],[147.87525475400017,-42.82984791499992],[147.86752363400015,-42.82634856599984],[147.85059655000015,-42.85182057099992],[147.84457441500015,-42.866143487999906],[147.84717858200017,-42.88095468499989],[147.85840905000023,-42.88844166499986],[147.8777775400001,-42.89283619599985],[147.89909915500004,-42.893243096999846],[147.91529381600017,-42.88844166499986],[147.91529381600017,-42.88095468499989],[147.88160241000017,-42.87167734200001],[147.89307701900023,-42.850192967],[147.92074629000004,-42.838311455999936],[147.93653405000006,-42.85767994599988],[147.93930097700004,-42.87232838299997],[147.9464624360002,-42.87428150799984],[147.95630944100012,-42.87029387799994],[147.96729576900023,-42.86736419099992],[147.9753524100001,-42.868259373000015],[147.98072350400003,-42.87118905999993],[147.9834090500002,-42.87639739399985],[147.98422285200004,-42.88469817499991],[147.9869897800002,-42.893243096999846],[147.99976647200006,-42.90064869599992],[148.00473066499998,-42.90886809699984],[148.00277754000015,-42.9137509089999],[147.997325066,-42.91985442499996],[147.99219811300011,-42.92742278399984],[147.99105879000015,-42.93621184699998],[147.99439537900017,-42.938409112999885],[148.001231316,-42.94150155999988],[148.00806725400005,-42.94540780999988],[148.01156660200004,-42.950453382999896],[148.00977623800023,-42.969903252999984],[148.00066165500002,-42.97747161299994],[147.98755944100017,-42.98088958099996],[147.97396894600004,-42.98772551899988],[147.96387780000023,-43.01051197699991],[147.96517988400015,-43.06031666499997],[147.94955488400015,-43.072849216999884],[147.97315514400012,-43.09807708099993],[147.97738691500004,-43.10686614399991],[147.978363477,-43.118340752999856],[147.97632897200015,-43.12525807099995],[147.96387780000023,-43.141696872999944],[147.98633873800023,-43.14299895599994],[147.9995223320001,-43.14788176899999],[148.00342858200008,-43.15813567499994],[147.99854576900023,-43.175876559999935],[147.993418816,-43.18141041499986],[147.98633873800023,-43.18547942499991],[147.97999108200023,-43.19158294099999],[147.97738691500004,-43.203057549999855],[147.98845462300008,-43.21160247199995],[147.99577884200008,-43.21998463299984],[147.99854576900023,-43.2304013],[147.97803795700005,-43.228204033999916],[147.9640405610002,-43.22242603999996],[147.90455162900017,-43.180271092],[147.89486738400004,-43.169040622999916],[147.88965905000012,-43.15309010199982],[147.887950066,-43.137953382999825],[147.88282311300011,-43.13152434699998],[147.86752363400015,-43.141696872999944],[147.85678144600004,-43.15618254999989],[147.85377037900005,-43.172295830999865],[147.85743248800006,-43.18824635199988],[147.86752363400015,-43.203057549999855],[147.83757571700008,-43.20191822699982],[147.8214624360002,-43.21428801899985],[147.80974368600013,-43.23121510199984],[147.7924910820001,-43.24407317499994],[147.77198326900023,-43.21689218500002],[147.70020592500018,-43.16277434699995],[147.69556725400005,-43.13420989399988],[147.70850670700023,-43.13005950299993],[147.73389733200003,-43.11825937299987],[147.74789472700004,-43.10572682099988],[147.6645613940001,-43.08180103999982],[147.64779707099999,-43.072849216999884],[147.63819420700023,-43.06129322699995],[147.62720787900017,-43.042738539999945],[147.6206160820001,-43.02312590899989],[147.62427819100006,-43.00823333099984],[147.6335555350001,-43.001153252999956],[147.66602623800003,-42.989434502999885],[147.67904707100016,-42.98642343499996],[147.68262780000023,-42.98455169099999],[147.68604576900023,-42.97673919099992],[147.68490644600004,-42.97193775799984],[147.68262780000023,-42.96835702899995],[147.68262780000023,-42.96355559699997],[147.681000196,-42.95574309699988],[147.67701256600006,-42.946872653999925],[147.67823326900023,-42.93922291499982],[147.69255618600002,-42.93621184699998],[147.71517988400004,-42.93743255],[147.72584069100006,-42.9405249979999],[147.73047936300017,-42.946872653999925],[147.73080488399998,-42.976820570999905],[147.72722415500013,-42.987969659],[147.71680748800023,-43.005140882999854],[147.76303144600004,-43.03753020599986],[147.78581790500007,-43.048597914999974],[147.81641686300006,-43.05291106599989],[147.82325280000012,-43.051934503],[147.83383222700016,-43.047539971999925],[147.84034264400023,-43.04607512799997],[147.8409936860002,-43.046156507999946],[147.85865319100012,-43.04558684699998],[147.86068769600004,-43.04607512799997],[147.87549889400012,-43.04094817499987],[147.88705488400004,-43.03443775799995],[147.90919030000012,-43.018731377999984],[147.87924238400015,-43.01799895599996],[147.8590600920002,-43.0075009089999],[147.84506269600013,-42.98870208099986],[147.83350670700023,-42.96355559699997],[147.8435164720001,-42.964043877999956],[147.84978274800008,-42.962334893999945],[147.86068769600004,-42.95671965899986],[147.86068769600004,-42.950453382999896],[147.83383222700016,-42.944512627999885],[147.83155358200005,-42.93189869599989],[147.83887780000006,-42.91659921699993],[147.84034264400023,-42.902032159],[147.82691491000003,-42.89397551899988],[147.76514733200023,-42.902032159],[147.75700931100002,-42.89967213299995],[147.73991946700008,-42.891289971999896],[147.73047936300017,-42.88844166499986],[147.7203882170002,-42.889092705999985],[147.6894637380002,-42.89527760199987],[147.67652428500006,-42.88982512799984],[147.66920006600006,-42.88250090899993],[147.66358483200023,-42.874688408999845],[147.65528405000018,-42.86736419099992],[147.647715691,-42.86532968499991],[147.62818444100006,-42.86386484199994],[147.62126712300002,-42.86109791499988],[147.61793053499997,-42.85426197699995],[147.61695397200006,-42.84514739399988],[147.61451256600012,-42.83521900799997],[147.60694420700023,-42.82634856599984],[147.59571373800023,-42.82146575299994],[147.5856225920002,-42.82122161299999],[147.53353925900015,-42.83660247199994],[147.51531009200008,-42.84514739399988],[147.50391686300011,-42.85426197699995],[147.50294030000012,-42.882094007999925],[147.51929772200006,-42.91855234199996],[147.55909264400023,-42.97722747199991],[147.53980553500017,-43.00432708099984],[147.52930748800011,-43.01490650799998],[147.51140384200008,-43.02499765399986],[147.45435631600017,-43.03826262799988],[147.43620853000007,-43.04607512799997],[147.42611738400004,-43.03866952899989],[147.41334069100006,-43.02532317499988],[147.40349368600002,-43.010430596999925],[147.40211022200006,-42.998223565999936],[147.4166772800002,-42.98455169099999],[147.43051191499998,-42.99358489399992],[147.44288170700023,-43.009942315999936],[147.4532983730002,-43.018731377999984],[147.46900475400017,-43.01132577899992],[147.4796655610002,-42.99480559699994],[147.48373457100016,-42.97844817499992],[147.48031660200016,-42.97096119599986],[147.46648196700008,-42.96355559699997],[147.46607506600006,-42.945896091999956],[147.47730553500003,-42.90886809699984],[147.45826256600017,-42.91366952899991],[147.43824303500008,-42.923516533999845],[147.422211134,-42.926934502999856],[147.41578209700018,-42.912286065999936],[147.4096785820001,-42.88811614399984],[147.39437910200016,-42.87769947699985],[147.37427819100012,-42.87200286299986],[147.35368899800008,-42.86109791499988],[147.299082879,-42.788750908999916],[147.29420006600006,-42.77857838299988],[147.28370201900023,-42.7784970029999],[147.27295983200023,-42.78264739399994],[147.26002037900005,-42.79013437299999],[147.26807701900006,-42.79998137799992],[147.28052819100017,-42.809340101999865],[147.28598066500004,-42.81267669099989],[147.30437259200008,-42.829196872999866],[147.31959069100006,-42.846856377999885],[147.33659915500013,-42.88241952899995],[147.35914147200012,-42.91082122199988],[147.36019941500015,-42.92522551899985],[147.34001712300014,-42.95671965899986],[147.33082116000003,-42.97861093499989],[147.32943769600016,-42.997979425],[147.3331811860002,-43.04265715899987],[147.3237410820001,-43.0463192689999],[147.3029891290001,-43.03443775799995],[147.27173912900005,-43.01132577899992],[147.25440514400023,-43.027276299999926],[147.26295006600017,-43.04420338299991],[147.29224694100017,-43.06601327899995],[147.30128014400012,-43.08310312299999],[147.29371178500006,-43.09246184699993],[147.2767033210001,-43.100681248000015],[147.25757897200012,-43.11435312299996],[147.2477319670002,-43.12916432099993],[147.24488366000006,-43.14462655999996],[147.24683678500014,-43.16025155999995],[147.25660241000006,-43.197198174999976],[147.2581486340001,-43.21502044099988],[147.25757897200012,-43.254327080999886],[147.24927819100006,-43.268161716999884],[147.23023522200006,-43.280450127999835],[147.20866946700014,-43.28671640399989],[147.19263756600006,-43.28167083099986],[147.184906446,-43.27654387799993],[147.16382897200012,-43.27011484199993],[147.15447024800008,-43.264580987999906],[147.15414472700004,-43.25741952899996],[147.15886478000007,-43.24846770599984],[147.15870201900006,-43.240980726999965],[147.14454186300017,-43.23788827899989],[147.10303795700005,-43.23870208099989],[147.09213300899995,-43.23186614399988],[147.103200717,-43.21331145599995],[147.11801191500004,-43.196954033999944],[147.11898847700013,-43.18914153399987],[147.11280358200008,-43.17880624799994],[147.10661868600002,-43.15471770599984],[147.09782962300008,-43.17489999799996],[147.07911217500012,-43.19182708099994],[147.06055748800011,-43.20159270599988],[147.05201256600014,-43.19963958099984],[147.02849368600013,-43.18515390399988],[147.02409915500002,-43.17929452899993],[147.02409915500002,-43.137953382999825],[147.01783287900017,-43.112399998000015],[147.00318444100017,-43.10995859199998],[146.98609459700006,-43.11972421699993],[146.97291100400017,-43.131117445999976],[146.96558678500017,-43.14771900799994],[146.96265709700006,-43.17441171699997],[146.96648196700008,-43.19898853999988],[146.97999108200023,-43.20989348799995],[146.9912215500002,-43.21412525799997],[147.06226647200012,-43.25367603999993],[147.0813094410001,-43.267185153999904],[147.095957879,-43.28281015399989],[147.09978274800014,-43.299411716999856],[147.09441165500004,-43.30657317499998],[147.08383222700004,-43.3156063779999],[147.07252037900005,-43.323174737999935],[147.06511478000007,-43.32659270599994],[147.05298912900005,-43.326104424999954],[147.04786217500023,-43.32195403399993],[147.04476972700016,-43.31666432099986],[147.03834069100006,-43.31292083099999],[147.01937910200004,-43.31218840899997],[146.99675540500007,-43.31658294099987],[146.97592207099996,-43.325860283999916],[146.96265709700006,-43.340264580999985],[147.02133222700016,-43.33717213299991],[147.03834069100006,-43.340264580999985],[147.05518639400023,-43.348890882999896],[147.0553491550002,-43.35621510199989],[147.03150475400005,-43.374444268999966],[147.02133222700016,-43.386407158999916],[147.00505618600008,-43.41375090899989],[146.99732506600006,-43.42278411299998],[146.98121178500017,-43.42962004999991],[146.9612736340001,-43.43132903399991],[146.92164147200006,-43.42962004999991],[146.94190514400023,-43.443780205999836],[147.00114993600008,-43.45566171699997],[147.01783287900017,-43.47812265399989],[146.9624129570001,-43.47242603999982],[146.9433699880001,-43.47665781],[146.9360457690001,-43.49521249799993],[146.94068444100006,-43.502699476999894],[146.94971764400023,-43.50937265399986],[146.95533287900005,-43.51783619599989],[146.94955488399998,-43.53199635199992],[146.93995201900012,-43.53728606599998],[146.92603600400005,-43.53834400799994],[146.91179446700002,-43.536390882999896],[146.90170332100016,-43.53199635199992],[146.89405358200023,-43.55787525799984],[146.90609785200013,-43.56682708099996],[146.92603600400005,-43.570570570999976],[146.942149285,-43.58114999799994],[146.94223066499998,-43.59832122199997],[146.92701256599997,-43.61174895599987],[146.85572350399997,-43.63958098799983],[146.84652754000004,-43.64128997199984],[146.8315535820001,-43.639906507999854],[146.8302514980002,-43.63600025799994],[146.83204186300006,-43.62981536299997],[146.82618248800023,-43.621514580999985],[146.80323326900023,-43.61044687299987],[146.78150475400017,-43.60849374799991],[146.75961347700013,-43.61296965899988],[146.71070397200015,-43.62900155999988],[146.70045006600003,-43.62363046699991],[146.6928817070001,-43.6085751279999],[146.67514082099999,-43.58733489399999],[146.60840905000023,-43.55885182099982],[146.60010826900023,-43.55250416499996],[146.59115644600004,-43.53573984199994],[146.58204186300023,-43.494724216999856],[146.57211347700004,-43.47812265399989],[146.55469811300006,-43.469414972],[146.54818769600016,-43.481866143999916],[146.55014082100004,-43.50416432099995],[146.55844160199996,-43.52516041499982],[146.54379316499998,-43.52157968500002],[146.53809655000012,-43.518487237999935],[146.513519727,-43.533949476999965],[146.48910566500015,-43.537204685],[146.37794030000006,-43.528497002999835],[146.35865319100006,-43.52027760199992],[146.3393660820001,-43.504815362999985],[146.318614129,-43.52288176899984],[146.30551191500004,-43.530450127999885],[146.29167728000002,-43.53199635199992],[146.27898196700008,-43.525648695999884],[146.27442467500023,-43.515232028999904],[146.27149498800011,-43.503024998000015],[146.26384524800008,-43.491794529],[146.25367272200006,-43.48723723799996],[146.23812910200004,-43.484551690999986],[146.2218530610002,-43.48544687299999],[146.20915774800002,-43.491794529],[146.20386803500014,-43.50448984199996],[146.20337975400017,-43.51913827899999],[146.2006942070001,-43.53199635199992],[146.18921959700006,-43.53948333099997],[146.18018639400023,-43.52385833099998],[146.171641472,-43.512139580999914],[146.16138756600014,-43.504815362999985],[146.14991295700023,-43.50562916499983],[146.11540774800002,-43.51506926899993],[146.10670006600006,-43.518487237999935],[146.1056421230002,-43.52385833099998],[146.10808353000002,-43.54127369599988],[146.10670006600006,-43.54631926899991],[146.09937584700006,-43.54778411299996],[146.09253991000006,-43.54469166499989],[146.08594811300023,-43.54078541499989],[146.07935631600017,-43.53948333099997],[146.02418053500006,-43.55250416499996],[146.0307723320001,-43.482679945999934],[146.02393639400012,-43.45183684699997],[146.00025475400017,-43.41936614399998],[145.94385826900023,-43.386407158999916],[145.93482506599997,-43.37810637799984],[145.94320722700007,-43.364841403999904],[145.96338951900012,-43.36891041499996],[145.98609459700006,-43.37867603999982],[146.00367272200018,-43.38193124799985],[145.99805748800011,-43.37127044099991],[145.97575931100008,-43.347751559999864],[145.99390709700006,-43.34498463299998],[146.08562259200014,-43.35393645599993],[146.11304772200015,-43.364353122999916],[146.12916100400005,-43.38160572699983],[146.1422632170002,-43.40064869599992],[146.16138756600014,-43.41594817499988],[146.16586347700016,-43.40422942499998],[146.15951582100004,-43.3851864559999],[146.16138756600014,-43.374444268999966],[146.16724694100006,-43.378187757999825],[146.17139733200005,-43.37965260199988],[146.18238366000006,-43.38193124799985],[146.17546634200002,-43.36842213299988],[146.18018639400023,-43.364841403999904],[146.18946373800011,-43.366387627999856],[146.1954858730002,-43.368259372999916],[146.2067163420002,-43.374444268999966],[146.22217858200023,-43.39185963299994],[146.23023522200006,-43.39560312299989],[146.2378035820001,-43.38437265399989],[146.23796634200008,-43.359470309999935],[146.2338973320001,-43.333672783999916],[146.2295028000001,-43.31975676899994],[146.222992384,-43.31503671699992],[146.1954858730002,-43.299411716999856],[146.179453972,-43.28346119599985],[146.168223504,-43.277601820999976],[146.15796959700018,-43.28167083099986],[146.12989342500006,-43.325616143999966],[146.11101321700008,-43.33603280999988],[146.08562259200014,-43.31975676899994],[146.08399498800011,-43.313409112999906],[146.08090254000004,-43.29127369599992],[146.07935631600017,-43.28573984199991],[146.06763756600017,-43.281914971999896],[146.05909264400017,-43.28508879999987],[146.05347741000017,-43.292738539999974],[146.051524285,-43.302829684999864],[146.04363040500007,-43.32594166499982],[146.02540123800017,-43.32488372199994],[146.00489342500012,-43.31178150799997],[145.99000084700006,-43.299411716999856],[145.97535241000006,-43.28394947699984],[145.96729576900012,-43.26824309699986],[145.96404056100008,-43.250176690999844],[145.96338951900012,-43.226983331],[145.95883222700016,-43.22258879999992],[145.93816165500007,-43.21103281],[145.9171655610002,-43.19589609199998],[145.9132593110002,-43.200941664999846],[145.91431725400017,-43.22356536299999],[145.91773522200018,-43.238539320999934],[145.91570071700008,-43.24675872199984],[145.90406334700006,-43.250258070999834],[145.8960067070001,-43.250583591999856],[145.8869735040001,-43.251885674999855],[145.878672722,-43.254327080999886],[145.87330162900017,-43.25839609199993],[145.86931399800008,-43.27304452899995],[145.88135826900012,-43.27629973799998],[145.91773522200018,-43.27206796699997],[145.92855879000015,-43.27743906000002],[145.9257918630001,-43.28915780999992],[145.91407311300023,-43.300713799999855],[145.89722741000006,-43.30608489399999],[145.86003665500002,-43.3046200499999],[145.84424889400006,-43.30055103999989],[145.83179772200018,-43.29257577900002],[145.80567467500012,-43.24407317499994],[145.8042098320002,-43.237481377999885],[145.80567467500012,-43.21331145599995],[145.80274498800011,-43.20810312299997],[145.77475019600013,-43.18792083099986],[145.76392662900017,-43.18238697699984],[145.757172071,-43.175876559999935],[145.75521894599999,-43.16920338299988],[145.75440514400006,-43.16008879999998],[145.75228925900015,-43.15203215899986],[145.74691816500004,-43.14853280999994],[145.73462975400005,-43.143324476999965],[145.72803795700005,-43.130547783999916],[145.72681725400017,-43.11467864399998],[145.72999108200023,-43.10003020599997],[145.72120201900023,-43.103773695999834],[145.71045983200023,-43.107028903999876],[145.69890384200014,-43.10849374799993],[145.68832441500015,-43.10686614399991],[145.67408287900017,-43.099297783999944],[145.67066491000006,-43.09148528399987],[145.67465254000004,-43.06943124799987],[145.67872155000006,-43.06585051899998],[145.68572024800008,-43.057875257999854],[145.68824303500017,-43.04973723799983],[145.67839603000007,-43.04607512799997],[145.6666772800002,-43.044040622999944],[145.65479576900023,-43.03899504999991],[145.63379967500006,-43.02499765399986],[145.5975041020001,-42.97185637799985],[145.582286004,-42.96355559699997],[145.51978600400017,-42.962334893999945],[145.51026451900006,-42.958428643999866],[145.47242272200006,-42.91513437299997],[145.44971764400006,-42.88250090899993],[145.42994225400017,-42.84628671699991],[145.40967858200023,-42.79558684699985],[145.39893639400023,-42.7780087219999],[145.39356530000003,-42.771091404],[145.38705488399998,-42.766859632999896],[145.37159264400017,-42.762302341999856],[145.36622155000012,-42.75750090899994],[145.36475670700023,-42.75107187299993],[145.36744225400005,-42.74675872199984],[145.37126712300002,-42.74358489399988],[145.38428795700023,-42.72503020599987],[145.386485222,-42.71445077899992],[145.37647545700023,-42.70964934699984],[145.3706160820001,-42.704278252999956],[145.35271243600002,-42.65081145599984],[145.34913170700005,-42.648207289999846],[145.32886803500006,-42.64918385199982],[145.32455488400015,-42.648207289999846],[145.3170679050002,-42.63591887799988],[145.31202233200023,-42.62249114399998],[145.30591881600014,-42.611586195999834],[145.29420006600017,-42.607191664999846],[145.26547285200004,-42.60426197699991],[145.26417076900012,-42.59531015399989],[145.29786217500012,-42.55885182099983],[145.27173912900017,-42.538995049999905],[145.24724368600002,-42.50432708099984],[145.23438561300011,-42.46453215899985],[145.24341881600006,-42.42913176899985],[145.21843509200016,-42.370375257999854],[145.20826256600017,-42.33717213299984],[145.202403191,-42.30559661299983],[145.202403191,-42.247491143999966],[145.19971764400023,-42.23544687299987],[145.18962649800008,-42.2128231749999],[145.18873131600017,-42.19573333099986],[145.20199629000004,-42.20338307099989],[145.21762128999998,-42.21851978999989],[145.23047936300011,-42.23544687299987],[145.23585045700005,-42.247491143999966],[145.2410587900001,-42.264580987999835],[145.25416100400005,-42.271905205999836],[145.29053795700023,-42.27825286299995],[145.303965691,-42.28329843499998],[145.30974368600005,-42.28728606599988],[145.31836998800006,-42.29941171699987],[145.32260175900004,-42.30689869599983],[145.32553144600004,-42.31568775799981],[145.33082116,-42.3230119769998],[145.35857181100008,-42.330173434999935],[145.42448978000002,-42.370700778999876],[145.43482506600003,-42.37932708099995],[145.44027754000015,-42.391289971999896],[145.443125847,-42.430596612999906],[145.45053144599999,-42.4664852839999],[145.46314537900017,-42.502536716999856],[145.47201582100004,-42.51279062299989],[145.47925866000006,-42.50969817499998],[145.48226972700016,-42.48748137799984],[145.48226972700016,-42.41545989399991],[145.50945071700008,-42.42848072699981],[145.51978600400017,-42.426934502999934],[145.52711022200018,-42.39413827899993],[145.53500410200016,-42.37721119599995],[145.55494225400005,-42.3506812479999],[145.5581160820001,-42.3415666649999],[145.54672285200004,-42.34319426899992],[145.53353925899998,-42.34929778399983],[145.53060957100016,-42.354099216999906],[145.53239993600005,-42.3558895809999],[145.529063347,-42.357842705999836],[145.52393639400012,-42.359551690999936],[145.52051842500012,-42.36012135199991],[145.51661217500012,-42.358656507999854],[145.51693769600004,-42.35507577899988],[145.51823978000002,-42.3506812479999],[145.5171004570001,-42.347263278999975],[145.51351972700004,-42.34050872199985],[145.51417076900006,-42.333103122999866],[145.51270592500012,-42.32577890399986],[145.50342858200017,-42.31926848799987],[145.49268639400023,-42.318942966999856],[145.49000084700006,-42.326429945999905],[145.48878014400023,-42.335544528999904],[145.48226972700016,-42.33977629999982],[145.46314537900017,-42.327243747999916],[145.40560957099999,-42.270765882999896],[145.38965905000006,-42.24993254999982],[145.37191816499998,-42.240980726999894],[145.36622155000012,-42.237399997999916],[145.35938561300011,-42.2094052059999],[145.34603925899995,-42.18222421699997],[145.34131920700005,-42.16383228999993],[145.3457137380002,-42.14723072699987],[145.33326256600006,-42.14177825299985],[145.32374108200023,-42.14275481599982],[145.30420983200017,-42.155450127999885],[145.303965691,-42.15699635199984],[145.29786217500012,-42.16838958099997],[145.2941186860002,-42.17099374799989],[145.28150475399997,-42.177015882999896],[145.2768660820001,-42.182061455999914],[145.27662194100006,-42.19410572699984],[145.28223717500023,-42.20574309699985],[145.28337649800008,-42.21591562299997],[145.27003014400006,-42.22372812299989],[145.26221764400006,-42.220798434999864],[145.22901451900017,-42.19573333099986],[145.266368035,-42.12346770599988],[145.25147545700005,-42.04143645599987],[145.20655358200017,-41.96656666499989],[145.1545516290001,-41.915785414999846],[145.07349694100006,-41.858168226999965],[145.06609134200008,-41.85515715899987],[145.0603947270001,-41.84954192499988],[145.055918816,-41.82317473799996],[145.04981530000023,-41.81715260199988],[145.040782097,-41.81324635199987],[145.03052819100012,-41.80592213299987],[144.992035352,-41.74675872199987],[144.97250410200004,-41.732679945999834],[144.96705162900017,-41.723402601999865],[144.95972741000017,-41.71404387799984],[144.94825280000023,-41.70973072699992],[144.93433678500006,-41.71013762799993],[144.92603600400014,-41.70907968499988],[144.92017662900005,-41.70289478999981],[144.91431725400008,-41.688653252999906],[144.91244550900004,-41.67929452899996],[144.91431725400008,-41.651299737999864],[144.86646569100017,-41.544610283999845],[144.81080162900005,-41.476332289999846],[144.79444420700023,-41.446465752999856],[144.78711998800023,-41.44215260199986],[144.77670332100004,-41.43865325299987],[144.76563561300011,-41.430433851999865],[144.74984785200013,-41.41423919099991],[144.75391686300011,-41.41106536299985],[144.75513756600006,-41.407810153999904],[144.75538170700005,-41.40439218499998],[144.75660241000017,-41.400567315999965],[144.78191165500002,-41.39153411299987],[144.78109785200004,-41.36516692499987],[144.76734459700012,-41.33554452899991],[144.7003686860002,-41.24244557099988],[144.68165123800023,-41.22307708099994],[144.68946373800023,-41.1991512999999],[144.69125410200004,-41.168064059999885],[144.68474368600013,-41.138848565999936],[144.66724694100017,-41.12070077899995],[144.6753035820001,-41.08074309699989],[144.65650475400005,-41.0487606749999],[144.60580488399998,-40.99651458099997],[144.620371941,-40.99325937299993],[144.63135826900003,-40.985609632999825],[144.6381942070001,-40.97421640399994],[144.64063561300023,-40.95907968499995],[144.62289472700004,-40.9385718729999],[144.6173608730002,-40.929620049999954],[144.62403405000018,-40.925062757999925],[144.64063561300023,-40.92148202899986],[144.65642337300008,-40.899834893999866],[144.66651451900023,-40.89511484199994],[144.68474368600013,-40.89348723799992],[144.6969507170002,-40.886895440999865],[144.70378665500013,-40.87135182099986],[144.70826256600014,-40.83896249799986],[144.70875084700003,-40.81047942499994],[144.68921959700018,-40.704522393999866],[144.68921959700018,-40.6814104149999],[144.69857832100004,-40.66025155999991],[144.72136478000007,-40.640313409],[144.72494550900004,-40.657159112999835],[144.73511803500017,-40.67148202899998],[144.75660241000017,-40.69548919099995],[144.75912519599996,-40.702894789999846],[144.762950066,-40.720472914999874],[144.76628665500007,-40.72649504999988]]],[[[145.04615319100017,-40.68303801899992],[145.0581160820001,-40.69646575299993],[145.06519616000014,-40.70916106599989],[145.03728274800002,-40.70916106599989],[145.01587975400017,-40.69426848799993],[144.98275800900015,-40.69931405999996],[144.92741946700008,-40.723402601999894],[144.92212975400017,-40.72332122199991],[144.91488691500015,-40.72185637799985],[144.90626061300023,-40.72185637799985],[144.89698326900012,-40.72649504999988],[144.89031009200002,-40.728122653999904],[144.88298587300002,-40.72486744599986],[144.87647545700023,-40.71998463299997],[144.87281334700015,-40.71599700299999],[144.87175540500002,-40.67131926899985],[144.86963951900023,-40.66480885199995],[144.91749108200017,-40.62322356599988],[144.93051191500015,-40.6153296849999],[144.9371850920002,-40.62509531000002],[144.9449975920002,-40.639906507999825],[144.962168816,-40.64771900799991],[144.977224155,-40.65097421699994],[144.99659264400023,-40.664971612999906],[145.01368248800011,-40.66822682099995],[145.03101647200018,-40.67253997199987],[145.04615319100017,-40.68303801899992]]],[[[148.20533287900017,-40.582777601999936],[148.19418379000015,-40.596286716999906],[148.16871178500006,-40.58562590899997],[148.16187584700006,-40.57057057099994],[148.14535566500015,-40.5660946589999],[148.12859134200002,-40.56536223799996],[148.120860222,-40.56170012799991],[148.11890709700018,-40.558038018999866],[148.10954837300002,-40.54420338299987],[148.10718834700018,-40.53785572699992],[148.10572350400005,-40.530450127999856],[148.10499108200008,-40.53004322699985],[148.1071069670002,-40.53004322699985],[148.11402428499997,-40.52418385199998],[148.13111412900005,-40.51376718499991],[148.17115319100017,-40.50709400799994],[148.18604576900023,-40.50009530999988],[148.25114993600005,-40.48943450299993],[148.24577884200016,-40.49830494599989],[148.23536217500012,-40.51043059699988],[148.2307235040001,-40.517347914999974],[148.22877037900003,-40.529066664999874],[148.22950280000006,-40.54013437299999],[148.226817254,-40.54827239399992],[148.21363366000006,-40.551527601999965],[148.20948326900012,-40.562188408999894],[148.20533287900017,-40.582777601999936]]],[[[144.79216556100008,-40.42791106599988],[144.79053795700023,-40.50212981599999],[144.78711998800023,-40.509942315999886],[144.76563561300011,-40.524509373],[144.76465905000012,-40.58456796700001],[144.74244225400017,-40.592461846999896],[144.73292076900006,-40.57740650799988],[144.72950280000023,-40.569919529],[144.72877037900005,-40.513604424999855],[144.72535241,-40.50579192499993],[144.71078535199996,-40.495782158999866],[144.70826256600014,-40.48943450299993],[144.7159936860002,-40.47665780999998],[144.7301538420002,-40.47527434699999],[144.74691816500004,-40.47616952899999],[144.762950066,-40.46949635199995],[144.7672632170001,-40.460056248000015],[144.77711022200006,-40.41090260199982],[144.77914472700016,-40.40536874799999],[144.78370201900012,-40.40886809699996],[144.79086347700016,-40.42115650799993],[144.79216556100008,-40.42791106599988]]],[[[144.90853925900004,-40.462660414999846],[144.90072675900004,-40.46949635199995],[144.8745223320001,-40.46754322699991],[144.85906009200008,-40.456312757999896],[144.84693444100017,-40.44150156000002],[144.83122806100013,-40.42799244599986],[144.8395288420002,-40.42571379999997],[144.85906009200008,-40.423760674999926],[144.86646569100017,-40.42115650799993],[144.8737085300002,-40.41521575299991],[144.88160241000017,-40.40593840899996],[144.88445071700016,-40.397637627999885],[144.87614993600002,-40.39381275799995],[144.87338300900012,-40.391696872999944],[144.87924238400004,-40.38681405999989],[144.88851972700016,-40.381768487999864],[144.89698326900012,-40.37957122199987],[144.92025800900004,-40.38062916499983],[144.93067467500012,-40.38274504999984],[144.9410913420002,-40.38640715899989],[144.9604598320001,-40.39788176899984],[144.96094811300011,-40.407484632999896],[144.95346113400004,-40.41952890399992],[144.94849694100017,-40.43792083099995],[144.9526473320001,-40.448907158999916],[144.95020592500006,-40.45338307099997],[144.92701256600006,-40.45598723799996],[144.91724694099997,-40.45826588299994],[144.90853925900004,-40.462660414999846]]],[[[148.40015709700018,-40.36174895599997],[148.42066491000006,-40.36834075299987],[148.4299422540001,-40.373304945999905],[148.46802819100017,-40.415297132999896],[148.48454837300008,-40.42799244599986],[148.47681725400003,-40.43808359200001],[148.46892337300005,-40.44068775799991],[148.46176191500004,-40.43718840899993],[148.4565535820002,-40.42799244599986],[148.45264733200023,-40.43271249799987],[148.44418378999998,-40.448500257999825],[148.42530358200005,-40.455010675],[148.42253665500016,-40.455254815999936],[148.4109806650001,-40.468438408999894],[148.40788821700016,-40.47665780999998],[148.40886478000007,-40.48943450299993],[148.3893335300002,-40.481866143999895],[148.37094160200016,-40.484307549999926],[148.35450280000023,-40.49293385199984],[148.34058678500017,-40.50367603999993],[148.34058678500017,-40.46949635199995],[148.32732181100002,-40.435967705999914],[148.29566491000017,-40.434665622999916],[148.2307235040001,-40.46209075299987],[148.22413170700023,-40.4515927059999],[148.21697024800008,-40.44548919099991],[148.20801842500023,-40.44255950299997],[148.196543816,-40.441664320999976],[148.18978925900015,-40.44353606599986],[148.180918816,-40.45289478999989],[148.17603600400005,-40.455254815999936],[148.16879316500004,-40.4545223939999],[148.15739993600008,-40.44963958099986],[148.15162194100012,-40.448500257999825],[148.0820418630001,-40.45427825299997],[148.05884850400017,-40.448500257999825],[148.05030358200023,-40.44304778399995],[148.03980553500017,-40.43181731599988],[148.0327254570001,-40.42799244599986],[148.011892123,-40.42848072699985],[148.00245201900012,-40.42652760199998],[147.99854576900023,-40.41773853999993],[148.00220787900017,-40.392022393999966],[148.01303144600016,-40.378106377999984],[148.07406660200016,-40.35116952899993],[148.09253991000017,-40.346937757999825],[148.1381942070001,-40.34539153399996],[148.16041100400014,-40.34783294099991],[148.1715600920002,-40.35116952899993],[148.19410241000017,-40.36565520599988],[148.20313561300006,-40.35849374799993],[148.21021569100006,-40.338636976999936],[148.25294030000023,-40.336032809999935],[148.28003991000017,-40.331231377999856],[148.29216556100008,-40.32122161299996],[148.29737389400006,-40.31951262799987],[148.31959069100006,-40.307386976999965],[148.32349694100006,-40.304457289999945],[148.33790123800011,-40.305759372999944],[148.34595787900005,-40.30950286299996],[148.39144941499998,-40.356052342],[148.40015709700018,-40.36174895599997]]],[[[147.9532983730002,-39.71168385199984],[148.14185631600017,-39.899346612999985],[148.1481225920002,-39.91073984199986],[148.16700280000023,-39.93564218499999],[148.21094811300006,-39.95134856599995],[148.29900149800017,-39.961846612999935],[148.29224694100006,-39.98414478999996],[148.29216556100008,-40.06145598799998],[148.28321373800023,-40.08147551899994],[148.24000084700006,-40.107028903999925],[148.22388756600017,-40.126397393999945],[148.245371941,-40.132907809999935],[148.267425977,-40.12737395599992],[148.28663170700017,-40.114515882999896],[148.29900149800017,-40.099053643999966],[148.30884850399997,-40.11353932099992],[148.31983483200005,-40.13583749799987],[148.33375084700006,-40.17473723799996],[148.33204186300023,-40.192152601999936],[148.32113691500015,-40.190199476999894],[148.29216556100008,-40.167901299999855],[148.28630618600002,-40.189711195999905],[148.30347741000017,-40.20110442499987],[148.323578321,-40.20956796699999],[148.32691491000006,-40.2225887999999],[148.30738366000003,-40.237725518999895],[148.28842207100016,-40.23113372199999],[148.2690535820002,-40.21689218499999],[148.24773196700008,-40.208916924999954],[148.22592207100004,-40.20452239399988],[148.21412194100003,-40.20419687299985],[148.20281009200005,-40.208916924999954],[148.19776451900012,-40.2186825499999],[148.19255618600002,-40.24504973799998],[148.18604576900023,-40.25058359199991],[148.16749108200023,-40.25546640399988],[148.14665774800008,-40.26490650799998],[148.12427819100006,-40.27060312299988],[148.0747176440001,-40.25514088299986],[148.04997806100002,-40.240980726999936],[148.03988691500012,-40.222832940999936],[148.05884850400017,-40.20208098799985],[148.02881920700023,-40.178806248000015],[148.01449629000004,-40.16423919099998],[148.01490319100006,-40.150567315999865],[148.01783287900017,-40.13738372199991],[148.01246178499997,-40.11939869599988],[148.00245201900012,-40.10247161299989],[147.99105879000015,-40.09221770599987],[147.97193444100017,-40.08912525799988],[147.95899498800006,-40.09148528399984],[147.95167076900006,-40.086358331],[147.94955488400015,-40.06145598799998],[147.94141686300023,-40.045098565999965],[147.92237389400023,-40.03573984200001],[147.90072675900012,-40.03167083099997],[147.885020379,-40.03085702899996],[147.8859155610002,-40.02410247199983],[147.90447024800017,-39.99032968500002],[147.90919030000012,-39.97616952899992],[147.90601647200006,-39.9620093729999],[147.891856316,-39.93206145599993],[147.88868248800023,-39.917575778999975],[147.88086998800014,-39.894952080999914],[147.8624780610001,-39.895928643999895],[147.8266707690001,-39.91415780999988],[147.80746504000012,-39.91073984199986],[147.75766035200016,-39.87932708099984],[147.77369225400017,-39.869073175],[147.79590905000012,-39.84726327899986],[147.81299889400015,-39.838311455999914],[147.85368899800008,-39.827732028999876],[147.86361738400015,-39.816989841999956],[147.85401451900006,-39.797458591999884],[147.86280358200023,-39.79420338299984],[147.88119550899998,-39.7831356749999],[147.868500196,-39.769138278999925],[147.86304772200018,-39.76116301899988],[147.86068769600004,-39.752699476999936],[147.86508222700004,-39.742852472],[147.87533613400012,-39.74570077899986],[147.88672936300011,-39.75286223799999],[147.89486738400004,-39.756442966999956],[147.910899285,-39.74928150799984],[147.9532983730002,-39.71168385199984]]],[[[144.07146243600008,-40.05120208099994],[144.064300977,-40.05917734199991],[144.05811608200023,-40.068047783999944],[144.05079186300023,-40.07537200299986],[144.04037519600004,-40.07854583099993],[144.01905358200005,-40.081638279],[143.92253665500013,-40.12737395599992],[143.90284264400006,-40.12615325299991],[143.88648522200006,-40.10654062299986],[143.88086998800023,-40.09238046699993],[143.87224368600005,-40.05120208099994],[143.88648522200006,-40.05217864399984],[143.8924259770001,-40.03476327899995],[143.8927514980002,-39.99285247199987],[143.88599694100017,-39.96786874799993],[143.87012780000023,-39.95671965899999],[143.85189863400015,-39.94915129999997],[143.83814537900005,-39.93450286299995],[143.83716881600017,-39.918633721999925],[143.84294681100002,-39.86443450299988],[143.8483179050002,-39.852634373],[143.86133873800006,-39.84254322699985],[143.86654707100013,-39.81943124799999],[143.86597741,-39.776950779],[143.86378014400012,-39.772149346999925],[143.85425866,-39.76132577900002],[143.8517358730002,-39.756442966999956],[143.85352623800006,-39.75261809699995],[143.86345462300008,-39.740980726999936],[143.86597741,-39.73528411299996],[143.86011803500006,-39.712172132999825],[143.86198978000002,-39.700616143999895],[143.87566165500007,-39.695570570999855],[143.89478600400005,-39.69150156],[143.91724694100006,-39.68084075299987],[143.93702233200017,-39.667250257999825],[143.94800865999997,-39.65398528399989],[143.94646243600008,-39.63437265399992],[143.9381616550002,-39.609307549999905],[143.93409264400023,-39.587985934999864],[143.944590691,-39.57887135199995],[143.95557701900015,-39.57773202900002],[143.974375847,-39.572523695999934],[143.98552493600002,-39.571465752999885],[143.99317467500015,-39.57512786299991],[144.023692254,-39.59937916499983],[144.0654403000002,-39.61500416499982],[144.0841577480002,-39.62615325299991],[144.09506269599999,-39.64869557099982],[144.10222415500002,-39.65618254999997],[144.109222852,-39.66578541499986],[144.11247806100008,-39.67791106599985],[144.10547936300006,-39.722263278999975],[144.10816491000006,-39.74602629999988],[144.12273196700005,-39.78687916499992],[144.1261499360002,-39.80771249799999],[144.12159264400023,-39.828871351999815],[144.1049910820001,-39.87249114399999],[144.10547936300006,-39.89299895599987],[144.11296634200002,-39.902601820999934],[144.12289472700004,-39.90601978999986],[144.13298587300017,-39.908298435],[144.14039147200018,-39.91415780999988],[144.14478600400017,-39.92644622199984],[144.14429772200015,-39.93621184699995],[144.14185631600006,-39.94597747199991],[144.1386824880001,-39.981377862999906],[144.13526451900003,-39.99212004999984],[144.1291610040001,-39.99667734199997],[144.12037194100006,-40.00090911299998],[144.11719811300017,-40.01100025799987],[144.11589603000007,-40.022393487999835],[144.11247806100008,-40.03085702899996],[144.1030379570002,-40.03704192499984],[144.08171634200008,-40.045342705999914],[144.07146243600008,-40.05120208099994]]],[[[146.4897567070001,-38.745700778999975],[146.5346785820001,-38.75595468499991],[146.58057701900006,-38.747816664999974],[146.60230553500006,-38.74684010199991],[146.62680097700007,-38.75595468499991],[146.63453209700015,-38.753187757999854],[146.64258873800023,-38.7525367169999],[146.65137780000012,-38.753513278999876],[146.66089928500017,-38.75595468499991],[146.65756269600016,-38.76441822699993],[146.65202884200002,-38.76881275799983],[146.6440535820001,-38.770277601999894],[146.58277428500017,-38.76946379999988],[146.57601972700004,-38.77320728999992],[146.566172722,-38.790785414999945],[146.55844160199996,-38.7968075499999],[146.53891035200004,-38.79705169099998],[146.51612389400012,-38.78948333099985],[146.49463951900017,-38.778008722],[146.479746941,-38.76620859200001],[146.47136478000004,-38.74724700299991],[146.4897567070001,-38.745700778999975]]],[[[145.3432723320001,-38.51775481599992],[145.3457137380002,-38.52312590899997],[145.35450280000012,-38.53443775799997],[145.3610132170002,-38.548516533999916],[145.3613387380002,-38.561781507999854],[145.35254967500003,-38.570977472],[145.35230553500006,-38.56650155999995],[145.35059655000012,-38.56357187299993],[145.34831790500007,-38.56080494599988],[145.3457137380002,-38.55722421699989],[145.3195906910001,-38.53932057099985],[145.29281660199996,-38.52564869599982],[145.26368248800023,-38.51921965899999],[145.22901451900017,-38.52312590899997],[145.22038821700008,-38.530043226999894],[145.21314537900005,-38.53460051899992],[145.20573978000004,-38.536797783999916],[145.19800866000006,-38.53476327899999],[145.1816512380001,-38.52548593500002],[145.17505944100006,-38.52312590899997],[145.15919030000012,-38.523858331],[145.12973066500004,-38.5304501279999],[145.11296634200014,-38.530531507999875],[145.1206160820002,-38.51962656],[145.1545516290001,-38.49521249799986],[145.17579186300006,-38.475518487999906],[145.187673373,-38.46697356599998],[145.202403191,-38.46111419099985],[145.26441491000017,-38.45549895599992],[145.27320397200006,-38.45370859199994],[145.27930748800011,-38.45159270599994],[145.2863061860002,-38.45142994599997],[145.29786217500012,-38.45549895599992],[145.30469811300023,-38.45916106599989],[145.3131616550002,-38.46575286299996],[145.31836998800006,-38.46851978999992],[145.30827884200014,-38.473809502999984],[145.30420983200017,-38.47527434699987],[145.31299889400012,-38.49049244599984],[145.31836998800006,-38.49521249799986],[145.31495201900003,-38.503676039999974],[145.31739342500012,-38.50790781],[145.32447350400017,-38.509372653999876],[145.33521569100017,-38.50945403399986],[145.34343509200008,-38.51051197699982],[145.34441165500007,-38.51336028399986],[145.3432723320001,-38.51775481599992]]],[[[145.36410566499998,-38.323418878],[145.37989342500023,-38.32447682099995],[145.42505944100017,-38.315036716999856],[145.44190514400012,-38.31650155999991],[145.454356316,-38.32170989399999],[145.46314537900017,-38.328545831],[145.49439537900005,-38.365166924999855],[145.48878014400023,-38.36907317499994],[145.46859785200004,-38.37281666499996],[145.42701256600006,-38.37493254999997],[145.41407311300023,-38.37908294099984],[145.3766382170002,-38.41545989399991],[145.35328209700012,-38.4283993469999],[145.32455488400015,-38.42066822699989],[145.31576582099996,-38.41432057099988],[145.28370201900012,-38.402601820999976],[145.28248131600017,-38.390557549999954],[145.27979576900012,-38.37932708099987],[145.27003014400006,-38.35865650799994],[145.29786217500012,-38.32447682099995],[145.29297936300017,-38.31780364399991],[145.2902124360002,-38.31015390399996],[145.29127037900005,-38.30266692499991],[145.29786217500012,-38.296563409],[145.30689537900005,-38.295342705999985],[145.31324303500014,-38.29989999799986],[145.31861412900005,-38.30632903399996],[145.32455488400015,-38.310804945999834],[145.36410566499998,-38.323418878]]],[[[137.622894727,-35.58212655999991],[137.63428795700017,-35.59050872199995],[137.63363691500004,-35.60377369599989],[137.619395379,-35.61093515400002],[137.59799238400015,-35.61728280999987],[137.58334394600016,-35.63128020599984],[137.58155358200005,-35.645440362999864],[137.5986434250001,-35.65178801899998],[137.63282311300011,-35.65178801899998],[137.6471460300002,-35.654066664999945],[137.64771569100006,-35.659437757999825],[137.62403405000023,-35.68726978999996],[137.58082116000003,-35.726820570999834],[137.60181725400017,-35.743910414999874],[137.62378991000014,-35.744561455999914],[137.64600670700023,-35.74236419099984],[137.68604576900003,-35.757500909],[137.71159915500007,-35.756280205999985],[137.75277754000015,-35.747979424999926],[137.76490319100006,-35.74358489399985],[137.77222741000006,-35.739434502999984],[137.7784936860002,-35.73951588299997],[137.78695722700002,-35.747979424999926],[137.79175866,-35.75725676899988],[137.79127037900005,-35.76458098799997],[137.78858483200023,-35.772881768999866],[137.78695722700002,-35.78525156],[137.7944442070001,-35.80478280999996],[137.81275475400017,-35.811455987999935],[137.83529707100016,-35.80925872199985],[137.85596764400023,-35.802666924999954],[137.871348504,-35.79306405999989],[137.88445071700008,-35.7792294249999],[137.89340253999998,-35.76246510199988],[137.89682050900004,-35.74431731599988],[137.90853925899998,-35.7290992169999],[137.93555748800023,-35.7264950499999],[137.96558678500017,-35.73023853999993],[138.00684655000023,-35.74041106599988],[138.04810631600017,-35.757500909],[138.06470787900005,-35.761000257999825],[138.06690514400023,-35.76628997199998],[138.0743921230002,-35.79924895599996],[138.08033287900005,-35.80925872199985],[138.09400475400017,-35.81462981599999],[138.11011803500006,-35.81650155999996],[138.12964928500006,-35.8163388],[138.12354576900023,-35.830987237999906],[138.12818444100017,-35.848809502999984],[138.125824415,-35.86394622199998],[138.09888756600006,-35.870293878],[138.08676191500015,-35.877373955999886],[138.05982506600017,-35.90976327899988],[138.04769941499998,-35.91863372199984],[138.02670332100016,-35.919122003],[138.00375410200016,-35.91350676899991],[137.98316491000006,-35.90447356599991],[137.95053144600016,-35.88079192499998],[137.93246504000015,-35.87525807099987],[137.9129337900001,-35.87525807099987],[137.88998457099999,-35.87769947699991],[137.874278191,-35.87688567499989],[137.84498131600012,-35.866631768999945],[137.82178795700005,-35.864027601999965],[137.79712975400017,-35.864841403999975],[137.75668379,-35.87151458099984],[137.67335045700023,-35.90203215899996],[137.62875410200004,-35.91033294099995],[137.61329186300011,-35.92424895599984],[137.6069442070001,-35.94394296699997],[137.60889733200023,-35.966485283999944],[137.61182701900023,-35.972100518999866],[137.61646569100014,-35.97698333099993],[137.62061608200023,-35.98267994599982],[137.62256920700005,-35.99081796699993],[137.62037194100017,-36.00009530999996],[137.61573326900023,-36.007582289999945],[137.61109459700006,-36.01360442499994],[137.60889733200023,-36.01799895599984],[137.60230553500017,-36.02581145599993],[137.5542098320001,-36.03533294099984],[137.49317467500012,-36.07040780999991],[137.45923912900014,-36.08269622199987],[137.44499759200008,-36.06951262799991],[137.41586347700004,-36.05543385199988],[137.37110436300006,-36.01083749799999],[137.3385522800002,-36.001234632999825],[137.29029381600017,-35.998793226999965],[137.24350019599999,-35.983086847],[137.227875196,-35.97975025799998],[137.21168053500017,-35.98015715899998],[137.18799889400023,-35.99309661299999],[137.18100019600016,-36.01409270599993],[137.17123457100004,-36.033623956],[137.13990319100017,-36.042250257999925],[137.12427819100017,-36.040134372999916],[137.09213300900004,-36.03069426899998],[137.074473504,-36.028497003],[137.044200066,-36.034600518999895],[137.03028405000023,-36.03337981599987],[137.01978600400017,-36.02174244599988],[136.95191491000017,-36.04607512799993],[136.92042076900017,-36.04949309699985],[136.88941491000006,-36.042250257999925],[136.86947675900015,-36.030531507999925],[136.86215254000015,-36.028497003],[136.8507593110002,-36.03045012799994],[136.83326256600006,-36.03997161299995],[136.82471764400012,-36.042250257999925],[136.80290774800008,-36.041192315999965],[136.79135175900015,-36.04192473799999],[136.78337649800008,-36.04566822699992],[136.77182050900015,-36.05608489399992],[136.7651473320001,-36.057224216999956],[136.75847415500007,-36.05494557099989],[136.74610436300011,-36.055840752999885],[136.72852623800006,-36.06080494599991],[136.71558678500017,-36.06275807099996],[136.7072860040001,-36.056898695999934],[136.7046004570001,-36.038750908999845],[136.69874108200003,-36.026543877999956],[136.6852319670002,-36.00701262799988],[136.65674889400006,-35.973890882999854],[136.64291425899998,-35.96851978999989],[136.60547936300023,-35.96314869599992],[136.59131920700023,-35.95663827899993],[136.53256269600004,-35.91187916499989],[136.53687584700006,-35.90211353999986],[136.537364129,-35.88225676899994],[136.54004967500012,-35.870293878],[136.54460696700002,-35.86532968499996],[136.55152428500006,-35.86142343499987],[136.55762780000012,-35.85426197699984],[136.5620223320001,-35.82952239399995],[136.56625410200004,-35.820570570999834],[136.57178795700023,-35.812758070999934],[136.57789147200006,-35.806329034],[136.58236738400004,-35.79697030999989],[136.57894941499998,-35.77752044099989],[136.5815535820001,-35.76848723799996],[136.59782962300014,-35.757500909],[136.62110436300023,-35.75123463299997],[136.691254102,-35.74602629999988],[136.73861738400012,-35.726820570999834],[136.76807701900012,-35.72429778399999],[136.78028405000012,-35.720798435],[136.79574629000004,-35.71168385199984],[136.80518639400023,-35.70794036299989],[137.074473504,-35.671644789999974],[137.0939233730002,-35.66570403399987],[137.14389082100013,-35.64430103999983],[137.27995853000007,-35.616957289999945],[137.29297936300023,-35.60914478999986],[137.30502363400015,-35.59775155999989],[137.31820722700004,-35.58733489399999],[137.3351343110002,-35.58294036299992],[137.35222415500002,-35.5856259089999],[137.43588300900007,-35.610609632999825],[137.44499759200008,-35.61093515400002],[137.45378665500002,-35.60808684699998],[137.47234134200002,-35.596612237999864],[137.48975670700008,-35.59612395599987],[137.51612389400012,-35.59832122199987],[137.53305097699996,-35.596612237999864],[137.56885826900012,-35.58554452899992],[137.58676191500012,-35.583591403999876],[137.60206139400012,-35.59042734199997],[137.622894727,-35.58212655999991]]],[[[136.49854576900012,-35.17205169099991],[136.49219811300006,-35.17888762799993],[136.48487389400017,-35.17205169099991],[136.46420332100016,-35.172539971999896],[136.447520379,-35.16936614399984],[136.43995201900023,-35.161716403999904],[136.44727623800017,-35.148125908999944],[136.46290123800023,-35.13974374799989],[136.47632897200006,-35.144707940999936],[136.48796634200008,-35.1574032529999],[136.49854576900012,-35.17205169099991]]],[[[136.20590254000004,-35.07138437299998],[136.20134524800008,-35.075372002999885],[136.19060306100008,-35.06959400799991],[136.16211998800023,-35.06552499799996],[136.15284264400012,-35.0485165339999],[136.15056399800002,-35.024672132999825],[136.14283287900005,-35.00066497199997],[136.0992944670002,-34.96819426899998],[136.08611087300002,-34.94817473799992],[136.11166425900004,-34.939222914999974],[136.12696373800011,-34.94841887799987],[136.17359459700012,-35.011325778999904],[136.18506920700023,-35.021172783999916],[136.19361412900014,-35.02581145599986],[136.19971764400023,-35.03281015399993],[136.20484459700018,-35.04908619599996],[136.20655358200005,-35.06121184699987],[136.20590254000004,-35.07138437299998]]],[[[137.36719811300006,-34.52410247199987],[137.35482832100004,-34.53801848799985],[137.3419702480002,-34.527764580999914],[137.33619225400005,-34.51531340899999],[137.344086134,-34.50074635199995],[137.36915123800011,-34.47242603999983],[137.37378991000006,-34.49822356599993],[137.36719811300006,-34.52410247199987]]],[[[134.490489129,-33.77564869599987],[134.47901451900015,-33.783623955999914],[134.47136478000002,-33.76677825299991],[134.48259524800002,-33.73796965899997],[134.48438561300023,-33.72958749799993],[134.48454837300017,-33.71648528399996],[134.48633873800006,-33.71168385199988],[134.49927819100017,-33.70533619599985],[134.52670332100004,-33.69947682099989],[134.5289819670002,-33.698500257999925],[134.53956139400023,-33.69646575299989],[134.54200280000006,-33.69996510199998],[134.54639733200005,-33.71217213299987],[134.550629102,-33.733656507999974],[134.54346764400023,-33.74016692499988],[134.52881920700023,-33.741306247999916],[134.51156660200004,-33.746270440999965],[134.490489129,-33.77564869599987]]],[[[133.5978296230002,-32.308851820999834],[133.56568444100006,-32.32122161299986],[133.54151451900023,-32.31259530999986],[133.54379316499995,-32.294610283999916],[133.56039472700016,-32.274590752999856],[133.57935631600017,-32.2596981749999],[133.59799238400015,-32.25115325299997],[133.62330162899997,-32.24391041499986],[133.65064537900017,-32.23943450299997],[133.675547722,-32.23935312299999],[133.675547722,-32.245375257999825],[133.62037194100017,-32.2596981749999],[133.62916100400005,-32.27532317499988],[133.63396243600002,-32.28020598799995],[133.62256920700005,-32.28508879999991],[133.61622155000023,-32.29436614399988],[133.61264082100016,-32.30339934699997],[133.61011803500006,-32.307549737999835],[133.5978296230002,-32.308851820999834]]],[[[115.67847741000017,-32.2164852839999],[115.68051191499997,-32.23935312299999],[115.66456139400006,-32.234633070999884],[115.66000410200004,-32.23251718499989],[115.65699303500004,-32.20940520599984],[115.64942467500005,-32.184340101999936],[115.64722741000017,-32.162692966999856],[115.66000410200004,-32.14983489399992],[115.66374759200006,-32.173109632999925],[115.67847741000017,-32.2164852839999]]],[[[115.55219218900007,-32.0062034849999],[115.53165461700021,-32.01832432599994],[115.51475905300018,-32.02536222099988],[115.49073098400018,-32.019097505999966],[115.45939988100004,-32.02297931499997],[115.44014224400009,-32.02183394999997],[115.45829638899997,-32.009712540999985],[115.48236636000014,-32.01088546199986],[115.49210733500004,-31.995649012999877],[115.52460704100011,-31.993806527000014],[115.54260984800007,-32.00003109599999],[115.55219218900007,-32.0062034849999]]],[[[159.06885826900012,-31.520928643999948],[159.08334394600004,-31.53484465899994],[159.09376061300023,-31.552992445999934],[159.10645592500003,-31.567640882999953],[159.09839928500006,-31.57927825299987],[159.08961022200018,-31.58904387799998],[159.07886803500017,-31.5933570289999],[159.06478925900004,-31.58814869599982],[159.08008873800011,-31.57626718499986],[159.08301842500012,-31.55836353999982],[159.07520592500012,-31.53980885199998],[159.05795332100004,-31.52605559699988],[159.05176842500023,-31.533461195999962],[159.04704837300002,-31.52654387799987],[159.04444420700023,-31.51921965899996],[159.06885826900012,-31.520928643999948]]],[[[113.6933443990001,-28.48353831999995],[113.68459830400005,-28.486276559999848],[113.68148317700005,-28.468161041999934],[113.6796175540002,-28.452241433],[113.70335144200013,-28.448420550999966],[113.71147272200008,-28.439097571999966],[113.72021320600018,-28.428123549999864],[113.73518378500002,-28.427570596999857],[113.74953908200021,-28.42757576599992],[113.73206280700018,-28.442939809999984],[113.71520979100002,-28.462148790999947],[113.70209119200003,-28.472017694999835],[113.6933443990001,-28.48353831999995]]],[[[153.48731530000012,-27.415215752999927],[153.5011499360002,-27.41765715899996],[153.54883873800023,-27.415215752999927],[153.5275171230002,-27.45566171699987],[153.50855553500014,-27.504082940999865],[153.45590254000015,-27.720798434999907],[153.45069420700005,-27.723077080999886],[153.43555748800006,-27.723077080999886],[153.42172285200016,-27.72503020599993],[153.41130618600016,-27.727634373000015],[153.40333092500023,-27.726250908999944],[153.39136803500008,-27.701836846999896],[153.3922632170002,-27.687758070999863],[153.39795983200005,-27.65789153399987],[153.4000757170002,-27.65455494599985],[153.40479576900012,-27.65056731599986],[153.409434441,-27.645114842000012],[153.41146894600016,-27.63713958099987],[153.40967858200017,-27.62835051899999],[153.40064537900005,-27.615004164999974],[153.39795983200005,-27.606377862999892],[153.39942467500023,-27.592380466999924],[153.40919030000006,-27.562107028999932],[153.41146894600016,-27.548028252999984],[153.409434441,-27.53191497199991],[153.39795983200005,-27.493096612999906],[153.4025171230002,-27.47820403399986],[153.42432701900003,-27.450453382999964],[153.43213951900017,-27.435723565999965],[153.43238366,-27.406426690999865],[153.43409264400012,-27.39299895599987],[153.44239342500006,-27.38730234199997],[153.45850670700017,-27.390883070999863],[153.46908613400004,-27.399183851999936],[153.477305535,-27.40846119599989],[153.48731530000012,-27.415215752999927]]],[[[153.42920983200023,-27.354424737999977],[153.42302493600008,-27.358168226999837],[153.41146894600016,-27.339532158999926],[153.41211998800011,-27.32268645599993],[153.4065861340001,-27.29501718500002],[153.39747155000006,-27.269138278999932],[153.38738040500002,-27.257582289999817],[153.37647545700023,-27.247816664999874],[153.36947675900015,-27.225518487999835],[153.36378014400003,-27.16334400799982],[153.36996504000015,-27.102715752999856],[153.36597741000017,-27.08049895599997],[153.36052493600002,-27.066013279000014],[153.36312910200002,-27.055271091999927],[153.38363691499998,-27.04412200299999],[153.41830488400012,-27.037855726999865],[153.43962649800002,-27.0225562479999],[153.4513452480002,-27.01702239399988],[153.4627384770001,-27.02060312299986],[153.46900475400005,-27.037041924999855],[153.466075066,-27.06015390399999],[153.42579186300023,-27.180433851999865],[153.41822350400017,-27.222832940999936],[153.41830488400012,-27.27125416499993],[153.421153191,-27.283135674999894],[153.4301863940001,-27.308689059999963],[153.43213951900017,-27.32244231599998],[153.43165123800003,-27.339043877999938],[153.42920983200023,-27.354424737999977]]],[[[112.95948326900012,-25.48251718499999],[112.9690047540001,-25.49431731599996],[112.983653191,-25.49309661299995],[112.99838300899998,-25.489922783999887],[113.00782311300011,-25.496189059999935],[113.00652103000013,-25.504571221999896],[113.00618193200003,-25.53165003099997],[113.00606420300008,-25.55292302499991],[113.02001149100025,-25.5891345739999],[113.04337940000002,-25.629646895],[113.0501812520001,-25.680761771999855],[113.05128014400022,-25.71697356599985],[113.07108422600007,-25.746847870999858],[113.08976308500021,-25.795818924999963],[113.117854112,-25.847127118999907],[113.13754316499998,-25.88591887799994],[113.11524498800023,-25.937758070999934],[113.1155705090001,-25.96331145599984],[113.14503014400022,-25.9690080709999],[113.14039147200006,-25.9625790339999],[113.13477623800021,-25.952243747999987],[113.13135826900012,-25.947930596999893],[113.14470462300002,-25.946221612999892],[113.15503991000004,-25.958672783999987],[113.16456139400023,-25.97698333099987],[113.17579186300023,-25.992771091999913],[113.18327884200019,-26.00090911299992],[113.19605553500006,-26.018975518999934],[113.20337975400017,-26.027032158999887],[113.20899498800023,-26.036553643999966],[113.21216881599999,-26.059177341999856],[113.2166447270001,-26.068047783999987],[113.22461998800023,-26.085381768999962],[113.22510826900023,-26.108330987999878],[113.21900475400005,-26.128838799999922],[113.20704186300011,-26.139743747999898],[113.19613691500004,-26.136000257999953],[113.17725670700011,-26.125583591999884],[113.17068463400008,-26.092617267999913],[113.15569932800005,-26.054059374999966],[113.13559004000014,-26.03346119599989],[113.12769616000017,-26.02369557099986],[113.08269843600007,-25.96549794499991],[113.04615319100004,-25.940036717],[113.01242575500005,-25.845132236999873],[112.96452884200002,-25.794040622999987],[112.9538680350001,-25.77304452899996],[112.9629012380001,-25.76360442499985],[112.96355228000007,-25.754489841999956],[112.95479137900011,-25.69752059799994],[112.91959906600019,-25.631555239999898],[112.91984880900021,-25.57711074499997],[112.92245869600018,-25.558974976999906],[112.91944420700005,-25.523614190999893],[112.93181399800018,-25.50701262799984],[112.94605553499999,-25.491875908999845],[112.95948326900012,-25.48251718499999]]],[[[153.00635826900012,-25.327732028999915],[152.99390709700018,-25.338474217000012],[152.96371504000015,-25.299086195999944],[152.95362389400012,-25.278497002999913],[152.96241295700005,-25.269626559999963],[152.99366295700023,-25.30396900799991],[153.00635826900012,-25.327732028999915]]],[[[113.06934655000006,-25.276462497999887],[113.06316165500019,-25.276462497999887],[113.05738366000006,-25.267266533999916],[113.05567467500023,-25.26279062299986],[113.05128014400022,-25.239678643999977],[113.07585696700006,-25.169854424999954],[113.08301842500012,-25.1366513],[113.0791121750001,-25.06243255],[113.08838951900017,-25.029066665000013],[113.11768639400006,-25.009454033999972],[113.11060631600006,-25.044691665],[113.11011803500006,-25.06308359199987],[113.11426842500006,-25.07097747199994],[113.10547936300011,-25.07984791499989],[113.10303795700004,-25.100762627999856],[113.10336347699999,-25.14039478999996],[113.09766686300011,-25.156508070999934],[113.07984459700006,-25.190524997999955],[113.07618248800011,-25.20501067499991],[113.07667076900006,-25.242282809999974],[113.07471764400023,-25.260186455999857],[113.06934655000006,-25.276462497999887]]],[[[113.12094160200003,-24.974053643999966],[113.11768639400006,-24.995212497999958],[113.11768639400006,-24.985772393999866],[113.11646569100017,-24.97714609199994],[113.11426842500006,-24.96892669099986],[113.11085045700004,-24.96111419099995],[113.13282311300006,-24.80234140399999],[113.15186608200005,-24.755629164999917],[113.15919030000005,-24.77564869599989],[113.15845787900005,-24.801690362999864],[113.1349389980002,-24.89202239399995],[113.13599694100006,-24.917168877999842],[113.15186608200005,-24.926934502999966],[113.12956790500002,-24.9562313779999],[113.12094160200003,-24.974053643999966]]],[[[153.28614342500023,-24.73650481599985],[153.28126061300006,-24.8585751279999],[153.28492272200006,-24.876641533999916],[153.30225670700023,-24.92945729],[153.31185957099999,-24.940606377999913],[153.32129967500012,-24.946384372999958],[153.3588973320001,-24.97600676899991],[153.36996504000015,-24.989027601999908],[153.37354576900012,-25.01181406000002],[153.36573326900023,-25.029554945999834],[153.35482832100016,-25.045342705999957],[153.349457227,-25.060967705999943],[153.345469597,-25.081638278999876],[153.2674259770001,-25.255547783999912],[153.16065514400012,-25.463148695999976],[153.0835067070002,-25.66578541499989],[153.08570397200006,-25.69133879999997],[153.1017358730001,-25.721856377999913],[153.09986412900017,-25.75774505],[153.08326256600012,-25.78687916499996],[153.05534915500007,-25.797133070999887],[153.0162866550002,-25.754001559999875],[152.99935957100004,-25.72861093499993],[152.99732506600017,-25.712090752999956],[153.00220787900017,-25.693047783999972],[152.98422285200004,-25.64576588299991],[152.98650149800017,-25.619561455999886],[152.95826256600006,-25.611748955999985],[152.94629967500012,-25.582940362999864],[152.94825280000023,-25.55217864399988],[152.96241295700005,-25.537692966999927],[152.98585045700023,-25.52507903399986],[152.99415123800023,-25.495700778999947],[153.0007430350001,-25.434014580999914],[153.00855553500017,-25.42164478999989],[153.01807701900006,-25.41334400799991],[153.0275171230002,-25.406833591999913],[153.03484134200016,-25.39983489399992],[153.05005944100017,-25.36638762799997],[153.05836022200015,-25.355157158999955],[153.0685327480002,-25.32903411299992],[153.05616295700005,-25.273207290000013],[153.06885826900023,-25.24846770599987],[153.06226647200006,-25.23723723799995],[153.05445397200018,-25.23349374799993],[153.04542076900023,-25.23219166499993],[153.02182050900004,-25.22340260199995],[153.0159611340001,-25.223321221999967],[153.01441491000006,-25.221612237999963],[153.01441491000006,-25.211521091999913],[153.02133222700004,-25.198174737999903],[153.03834069100012,-25.183526299999894],[153.14795983200023,-25.11419036299985],[153.17872155000012,-25.087497653999918],[153.20557701900012,-25.057305597],[153.22608483200023,-25.02752044099998],[153.24252363400015,-24.993259373000015],[153.2491968110002,-24.954847914999913],[153.23959394600004,-24.913262627999927],[153.2223413420002,-24.881524346999967],[153.19410241000006,-24.84075286299992],[153.16325931100016,-24.81243254999997],[153.13721764400012,-24.817071221999978],[153.195567254,-24.74871184699991],[153.2050887380001,-24.74521249799993],[153.23340905000023,-24.721449476999837],[153.27247155000012,-24.69988372199991],[153.28126061300006,-24.693536065999893],[153.28614342500023,-24.73650481599985]]],[[[151.38835696700002,-23.86443450299987],[151.38306725400017,-23.879571221999868],[151.36264082099999,-23.87175872199995],[151.3596297540001,-23.847832940999908],[151.3520613940002,-23.83245208099987],[151.32862389400017,-23.80291106599999],[151.32260175900012,-23.77190520599997],[151.321055535,-23.768731377999913],[151.32634524800017,-23.75725676899995],[151.33326256600017,-23.750176690999908],[151.33952884200002,-23.751397393999923],[151.3447371750002,-23.782403252999853],[151.351817254,-23.796482028999886],[151.37232506600006,-23.820245049999983],[151.38306725400017,-23.840101820999976],[151.38835696700002,-23.86443450299987]]],[[[151.03687584700018,-23.45086028399996],[151.04363040500002,-23.453545830999857],[151.05225670700023,-23.451836846999853],[151.06185957099999,-23.448907158999916],[151.07129967500012,-23.44719817499991],[151.07797285200016,-23.45077890399997],[151.0791121750001,-23.459079684999878],[151.07886803500014,-23.468357029],[151.08155358200023,-23.474541924999897],[151.09929446700002,-23.479913018999937],[151.14185631600017,-23.487888278999904],[151.15040123800011,-23.49871184699998],[151.16065514400023,-23.503838799999908],[151.18018639400012,-23.50725676899992],[151.19141686300011,-23.51384856599998],[151.17701256600006,-23.52906666499996],[151.19507897200018,-23.533868096999868],[151.21070397200006,-23.520684502999913],[151.22494550900015,-23.501560154000018],[151.23910566499998,-23.488864841999884],[151.23878014400023,-23.516289971999836],[151.22706139400003,-23.561455987999963],[151.22559655000012,-23.583754164999917],[151.22934004000012,-23.60751718499992],[151.2378035820001,-23.634535414999874],[151.25123131600017,-23.656996351999965],[151.26986738400015,-23.666273695999834],[151.28777103000002,-23.67913176899985],[151.29615319100017,-23.70728932099992],[151.29851321700002,-23.735446872999916],[151.29761803500006,-23.748223565999865],[151.29102623800006,-23.74993254999987],[151.28679446700008,-23.75400155999992],[151.2814233730002,-23.761895440999893],[151.27735436300023,-23.766045830999843],[151.27588951900006,-23.76897551899995],[151.2736108730002,-23.772067966999927],[151.26644941500015,-23.776136976999975],[151.26335696700008,-23.775160415],[151.22982832100004,-23.77727629999984],[151.22185306100008,-23.779473565999837],[151.21387780000012,-23.77809010199985],[151.20508873800023,-23.768731377999913],[151.1941837900001,-23.754164320999976],[151.18051191500015,-23.74285247199998],[151.16895592500012,-23.729913018999895],[151.15919030000003,-23.693617445999976],[151.14730879000004,-23.675225518999934],[151.10523522200018,-23.628024997999958],[151.07886803500014,-23.60865650799995],[151.0678817070001,-23.598077080999985],[151.05420983200005,-23.57870859199997],[151.02106649700013,-23.535602672999858],[150.99787116300004,-23.50667279400001],[150.97960739700002,-23.48738563299997],[151.01607439500017,-23.474481527999867],[151.02238121199997,-23.46932704999989],[151.022370561,-23.46160581299999],[151.01815091,-23.453245640999977],[151.02751712300008,-23.44451262799994],[151.03687584700018,-23.45086028399996]]],[[[149.73121178500006,-22.428155205999857],[149.72478274800002,-22.43987395599993],[149.71338951900003,-22.42929452899989],[149.71029707099999,-22.42555104000003],[149.71558678500017,-22.415215752999856],[149.7181095710001,-22.404473565999922],[149.71680748800006,-22.39430103999989],[149.71029707099999,-22.3851864559999],[149.71705162900003,-22.374200127999927],[149.72250410200016,-22.350762627999867],[149.72779381600003,-22.34050872199992],[149.736175977,-22.33904387799997],[149.74675540500004,-22.34685637799987],[149.76628665500002,-22.364678643999852],[149.75586998800023,-22.368747653999904],[149.75375410200002,-22.376560153999975],[149.75440514400003,-22.38689544099999],[149.75196373800023,-22.398858330999843],[149.73121178500006,-22.428155205999857]]],[[[150.56080162900017,-22.295830987999878],[150.5558374360002,-22.306329033999944],[150.54656009200005,-22.31243254999984],[150.53744550900015,-22.31633879999984],[150.53345787900017,-22.319756768999937],[150.53142337300008,-22.328301690999865],[150.52637780000012,-22.3350562479999],[150.51978600400005,-22.34050872199992],[150.51295006600006,-22.344333591999856],[150.49537194100012,-22.350844007999854],[150.48226972700004,-22.344984632999978],[150.47934004000004,-22.331963799999908],[150.4918725920002,-22.31633879999984],[150.47624759200002,-22.304945570999962],[150.47136478000007,-22.302666924999897],[150.46778405000006,-22.30624765399996],[150.46607506600017,-22.307224216999927],[150.46371504000004,-22.307793878],[150.45777428499997,-22.310153903999947],[150.46656334700015,-22.29371510199995],[150.48259524800008,-22.274590752999984],[150.4936629570001,-22.255059502999913],[150.4884546230002,-22.237481377999885],[150.48047936300023,-22.229587497999987],[150.47584069099997,-22.221937757999882],[150.47836347700004,-22.216241143999895],[150.4918725920002,-22.213962498],[150.50456790500007,-22.216729424999883],[150.5114038420002,-22.224216403999947],[150.51596113400015,-22.234144789999945],[150.5226343110002,-22.24431731599998],[150.52637780000012,-22.25310637799987],[150.52759850400005,-22.263360283999972],[150.52979576900023,-22.271742445999948],[150.53663170700023,-22.27532317499991],[150.5442814460001,-22.277439060000017],[150.55250084700015,-22.2823218729999],[150.55860436300006,-22.288995049999954],[150.56080162900017,-22.295830987999878]]],[[[149.90870201900006,-22.21640390399986],[149.88851972700004,-22.226820570999934],[149.87761478000007,-22.21998463299984],[149.87745201900012,-22.21257903399993],[149.88135826900012,-22.203789971999882],[149.88233483200005,-22.19280364399991],[149.87891686300017,-22.186211846999853],[149.87403405000012,-22.181898695999845],[149.86988366000006,-22.17555104],[149.86801191499998,-22.162367445999948],[149.86939537900017,-22.142266533999916],[149.87403405000012,-22.118584893999895],[149.88282311300017,-22.096937757999896],[149.8960067070001,-22.08294036299985],[149.88965905000006,-22.073174737999906],[149.89356530000003,-22.061130466999984],[149.9038192070001,-22.04957447699995],[149.91651451900017,-22.04192473799993],[149.9103296230002,-22.075127862999945],[149.9096785820002,-22.086602471999896],[149.91285241,-22.10133228999989],[149.92701256600006,-22.12102629999984],[149.93002363400015,-22.134454034],[149.92823326900023,-22.16008879999998],[149.92156009200016,-22.19068775799991],[149.90870201900006,-22.21640390399986]]],[[[150.36890709700018,-21.72673919099988],[150.3588973320001,-21.742933851999837],[150.35173587300002,-21.760674737999835],[150.34278405000012,-21.771742445999948],[150.32740319100014,-21.76881275799994],[150.29322350400017,-21.747735283999916],[150.29322350400017,-21.74089934699998],[150.31771894600004,-21.734063408999887],[150.32960045700005,-21.734470309999892],[150.341075066,-21.74089934699998],[150.36890709700018,-21.72673919099988]]],[[[150.3053491550002,-21.65976327899996],[150.30005944100012,-21.678887627999856],[150.29810631600006,-21.676690362999864],[150.29761803500017,-21.675388278999943],[150.29664147200018,-21.674086195999948],[150.29322350400017,-21.672051690999922],[150.2905379570001,-21.681084893999852],[150.28614342500012,-21.68425872199991],[150.28044681100002,-21.683282158999845],[150.27271569100006,-21.678887627999856],[150.26482181100008,-21.67066822699995],[150.25749759200008,-21.668389580999882],[150.25098717500023,-21.671075127999952],[150.24610436300011,-21.678887627999856],[150.24195397200006,-21.67066822699995],[150.24195397200006,-21.66350676899991],[150.24537194100006,-21.65715911299996],[150.2516382170002,-21.651543877999885],[150.24878991000014,-21.64421965899996],[150.24756920700023,-21.63811614399998],[150.24610436300011,-21.623630466999927],[150.2516382170002,-21.623630466999927],[150.26531009200002,-21.638441665],[150.28842207099999,-21.648532809999878],[150.3053491550002,-21.65976327899996]]],[[[115.41309655000006,-20.839450778999918],[115.40805097700003,-20.853692315999922],[115.39576256600017,-20.863702080999982],[115.36524498800023,-20.87688567499994],[115.35938561300011,-20.864515882999825],[115.34750410200016,-20.85442473799995],[115.33570397200016,-20.84970468500002],[115.33041425900004,-20.85312265399986],[115.32691490999999,-20.865899346999896],[115.31812584700005,-20.872735283999916],[115.30697675900004,-20.87053801899992],[115.29639733200004,-20.856540622999958],[115.30241946700018,-20.843194268999937],[115.3105574880001,-20.801853122999916],[115.32960045700011,-20.77337004999991],[115.39942467500022,-20.69378020599993],[115.4289656910001,-20.669122002999842],[115.45118248800017,-20.668389580999985],[115.45671634200006,-20.682224216999984],[115.4570418630001,-20.71599700299997],[115.46452884200008,-20.730157159],[115.47046959700018,-20.74618905999999],[115.4630639980002,-20.76384856599999],[115.44027753999998,-20.794366143999937],[115.43921959700008,-20.802341403999904],[115.43995201900023,-20.811455987999974],[115.4384871750001,-20.819024346999853],[115.43043053500017,-20.822360934999878],[115.4267684250001,-20.824883721999978],[115.41537519600016,-20.836195570999877],[115.41309655000006,-20.839450778999918]]],[[[149.09262129000004,-20.486097914999974],[149.08179772200006,-20.500176690999922],[149.07211347700016,-20.516208592000012],[149.05307050899998,-20.52809010199988],[149.048675977,-20.524183851999876],[149.04314212300008,-20.51751067499991],[149.03931725400017,-20.509454033999887],[149.03939863400012,-20.500746351999894],[149.045176629,-20.494235934999907],[149.06177819100014,-20.494398695999877],[149.07056725400005,-20.489922783999987],[149.08179772200006,-20.472263278999975],[149.08594811300006,-20.45501067499997],[149.08814537900017,-20.43759531],[149.09408613399998,-20.41822682099989],[149.09498131600017,-20.43873463299994],[149.09839928500008,-20.45322030999999],[149.10499108200005,-20.465508721999953],[149.11508222700004,-20.479668877999885],[149.09262129000004,-20.486097914999974]]],[[[149.04623457100016,-20.274183851999922],[149.06714928500006,-20.289239190999933],[149.07341556100008,-20.299981377999867],[149.06739342500018,-20.31519947699985],[149.05909264400012,-20.309665623],[149.05225670700005,-20.30348072699995],[149.03939863400012,-20.28728606599999],[149.02613366,-20.31926848799999],[149.01889082099999,-20.32887135199988],[149.00375410199996,-20.311618747999873],[148.99105879000004,-20.315118096999864],[148.98064212300002,-20.323825778999932],[148.97120201900023,-20.321465752999984],[148.97120201900023,-20.281019789999945],[148.95346113400012,-20.29241301899999],[148.947032097,-20.294122003],[148.93995201900017,-20.293877862999878],[148.9311629570001,-20.292168877999956],[148.92701256600006,-20.28728606599999],[148.9332788420002,-20.27760182099985],[148.9640405610002,-20.2505835919999],[148.96892337300008,-20.237725518999966],[148.95004316500004,-20.23267994599985],[148.958832227,-20.211521092000012],[148.9631453790001,-20.1866187479999],[148.96949303500006,-20.164483331],[148.98487389400017,-20.15146249799993],[148.98804772200006,-20.165297132999836],[149.00212649800008,-20.190199476999965],[149.00521894600016,-20.202243747999884],[149.00407962300014,-20.229261976999837],[149.01075280000006,-20.236911716999956],[149.02955162900005,-20.239434502999966],[149.02963300900004,-20.245049737999878],[149.04623457100016,-20.274183851999922]]],[[[148.98023522200006,-20.05689869599992],[148.97120201900023,-20.076755467000012],[148.95346113400012,-20.096856377999956],[148.94385826900023,-20.113457940999837],[148.94629967500012,-20.120293877999856],[148.95606530000023,-20.134209893999838],[148.95753014400012,-20.143812757999896],[148.95297285200016,-20.150485934999864],[148.9233504570001,-20.17864348799985],[148.92709394600004,-20.157891533999944],[148.92514082099996,-20.15146249799993],[148.92212975400017,-20.152764580999843],[148.91586347700004,-20.15748463299994],[148.91480553500017,-20.155857028999918],[148.91488691500015,-20.15349700299987],[148.913910352,-20.15154387799991],[148.90902754000004,-20.15146249799993],[148.90219160199996,-20.164971612999906],[148.89437910200004,-20.16025155999999],[148.88843834700018,-20.15439218499986],[148.88428795700023,-20.14690520599997],[148.88184655000012,-20.137627862999935],[148.88795006600012,-20.121840101999894],[148.91586347700004,-20.089288018999923],[148.91277103000007,-20.086602471999853],[148.90853925900004,-20.081638278999975],[148.906504754,-20.07537200299994],[148.90902754000004,-20.06878020599987],[148.92017662900005,-20.0608049459999],[148.92611738400015,-20.062920830999914],[148.93067467500012,-20.06796640399986],[148.93702233200023,-20.06878020599987],[148.9480086600001,-20.063734632999925],[148.95443769600004,-20.05885182099996],[148.958832227,-20.052015882999854],[148.96371504000015,-20.041599216999952],[148.98023522200006,-20.05689869599992]]],[[[148.47730553500006,-20.02711354],[148.47022545700005,-20.04762135199995],[148.46534264400012,-20.04338958099994],[148.46094811300011,-20.042413018999966],[148.4562280610002,-20.042575778999932],[148.45045006600006,-20.041599216999952],[148.45101972700004,-20.010349216999984],[148.4493921230002,-19.996189059999963],[148.44418378999998,-19.98626067499987],[148.45045006600006,-19.965752862999988],[148.47429446700002,-19.98308684699998],[148.48096764400006,-20.00457122199984],[148.47730553500006,-20.02711354]]],[[[146.87281334700006,-19.10735442499987],[146.87452233200023,-19.119398695999877],[146.87370853000007,-19.14299895599991],[146.87134850400017,-19.153578382999868],[146.8670353520001,-19.163832289999974],[146.85645592500023,-19.151299737999892],[146.82007897200006,-19.175062757999896],[146.798675977,-19.163832289999974],[146.79371178500003,-19.15064869599985],[146.78549238400015,-19.140720309999935],[146.78028405000023,-19.13201262799994],[146.78500410200013,-19.12281666499989],[146.79835045700005,-19.117445570999834],[146.81088300899998,-19.11842213299981],[146.8224389980002,-19.11646900799994],[146.83285566499998,-19.102308851999837],[146.83773847700016,-19.107028903999932],[146.84408613399995,-19.110284112999878],[146.86019941500015,-19.11598072699995],[146.86394290500016,-19.105157158999873],[146.8686629570001,-19.102308851999837],[146.87281334700006,-19.10735442499987]]],[[[146.63412519599999,-18.736504815999876],[146.65113366000006,-18.745782158999845],[146.68344160200013,-18.74358489399985],[146.6842554050002,-18.752048434999892],[146.67400149800008,-18.764336846999853],[146.66309655000006,-18.768161716999856],[146.65447024800008,-18.77019622199988],[146.63754316499998,-18.768161716999856],[146.62501061300011,-18.763441664999945],[146.61695397200003,-18.762302341999913],[146.60279381600006,-18.761895440999908],[146.58285566500015,-18.76474374799986],[146.570160352,-18.760837497999855],[146.5705672540001,-18.745212497999873],[146.58277428500017,-18.717705987999835],[146.58204186300023,-18.70338307099985],[146.57667076900006,-18.688083591999884],[146.581309441,-18.682224216999852],[146.59229576900017,-18.689711195999905],[146.60132897200018,-18.698418877999895],[146.611175977,-18.703220309999892],[146.622325066,-18.715915622999855],[146.63412519599999,-18.736504815999876]]],[[[146.23536217500018,-18.22323984199987],[146.24854576900012,-18.232598565999893],[146.28825931100002,-18.232110283999916],[146.30209394600004,-18.237237237999835],[146.29769941500015,-18.25042083099987],[146.28589928500017,-18.26824309699994],[146.27808678500017,-18.287367445999834],[146.27833092500012,-18.307386976999894],[146.28419030000018,-18.322849216999913],[146.30876712300008,-18.351983330999957],[146.31641686300011,-18.35588958099987],[146.33399498800023,-18.35759856599988],[146.3393660820001,-18.36191171699987],[146.34156334700018,-18.373142184999878],[146.3379012380002,-18.380303643999905],[146.3298445970001,-18.38355885199995],[146.3190210300002,-18.382989190999975],[146.325938347,-18.391371351999865],[146.34742272200006,-18.40439218499985],[146.35303795700023,-18.41033294099986],[146.35328209700018,-18.421644789999945],[146.34701582100004,-18.4262020809999],[146.33871504000015,-18.427992445999877],[146.333262566,-18.431410414999974],[146.3203231130001,-18.464776299999954],[146.310801629,-18.478692315999936],[146.29167728000002,-18.492852471999868],[146.27540123800011,-18.483168226999823],[146.239512566,-18.474867445999834],[146.22339928500006,-18.46550872199998],[146.21461022200015,-18.441827080999886],[146.20508873800006,-18.3903134089999],[146.19922936300023,-18.37525807099989],[146.17237389400023,-18.33473072699995],[146.16260826900012,-18.32529062299986],[146.12037194100014,-18.299248955999868],[146.10824628999998,-18.289239190999893],[146.09888756600006,-18.27809010199988],[146.093028191,-18.266289971999896],[146.0973413420002,-18.245212497999887],[146.12183678500006,-18.245538018999905],[146.17505944100006,-18.266289971999896],[146.21745853000013,-18.277927341999913],[146.22339928500006,-18.260837497999873],[146.21892337300008,-18.229180596999896],[146.2295028000001,-18.19801197699981],[146.23536217500018,-18.22323984199987]]],[[[139.56934655000023,-17.100355726999837],[139.55453535200016,-17.107110283999873],[139.5206811860002,-17.10808684699994],[139.51449629000004,-17.11191171699994],[139.51091556100008,-17.117445570999877],[139.50538170700023,-17.121840101999865],[139.49390709700012,-17.121758721999882],[139.48536217500006,-17.11728280999999],[139.48243248800023,-17.110609632999953],[139.48170006600003,-17.104424737999892],[139.48023522200018,-17.101250909],[139.46265709700006,-17.100762627999842],[139.44556725400017,-17.107517184999878],[139.43392988399998,-17.121514580999843],[139.43238366000006,-17.14283619599989],[139.42505944100006,-17.14283619599989],[139.42505944100006,-17.138116143999895],[139.4235132170002,-17.13518645599987],[139.42090905000012,-17.13274504999984],[139.418223504,-17.129164320999948],[139.4039819670002,-17.10068124799986],[139.4096785820001,-17.088555596999868],[139.42741946700016,-17.080336195999948],[139.44922936300023,-17.063409112999963],[139.47282962300008,-17.025567315999936],[139.489512566,-17.01043059699994],[139.49463951900023,-17.001071872999987],[139.49390709700012,-16.98512135199998],[139.50855553499997,-16.992771091999927],[139.54883873800011,-17.02255624799993],[139.5621850920002,-17.03923919099988],[139.5540470710001,-17.054457289999945],[139.55982506600006,-17.066176040000016],[139.57032311300011,-17.07480234199994],[139.575856967,-17.080824476999936],[139.56934655000023,-17.100355726999837]]],[[[139.11394290500002,-16.85735442499987],[139.10767662900017,-16.86248137799988],[139.1010848320001,-16.859470309999878],[139.09669030000012,-16.848077080999914],[139.0960392590001,-16.840264581],[139.09669030000012,-16.834242445999905],[139.095469597,-16.830010674999897],[139.08920332100016,-16.827569268999866],[139.106700066,-16.8202450499999],[139.13331139400023,-16.812920830999857],[139.15503991000003,-16.812920830999857],[139.15805097700004,-16.827569268999866],[139.14844811300023,-16.83464934699991],[139.12191816499995,-16.836358330999914],[139.11646569100006,-16.844659112999906],[139.11394290500002,-16.85735442499987]]],[[[139.69727623800023,-16.447686455999953],[139.69385826900023,-16.459405205999957],[139.69190514400006,-16.46379973799985],[139.71013431100008,-16.468845309999875],[139.71794681100008,-16.457696221999953],[139.72315514400023,-16.444512628],[139.73414147200012,-16.443291924999983],[139.73951256600017,-16.45468515399986],[139.74000084700006,-16.47332122199994],[139.73731530000018,-16.492445570999905],[139.73414147200012,-16.505466403999904],[139.73096764400023,-16.50009531000002],[139.722422722,-16.489841403999918],[139.71908613399998,-16.484307549999897],[139.7086694670002,-16.495375257999925],[139.70728600400005,-16.503838799999883],[139.71021569100006,-16.511976820999976],[139.71225019600016,-16.5219052059999],[139.70769290500002,-16.52646249799993],[139.69727623800023,-16.524509372999987],[139.67823326900023,-16.51783619599985],[139.65650475400017,-16.519952080999857],[139.63607832099996,-16.526625257999896],[139.61996504000004,-16.537855726999908],[139.6105249360002,-16.55315520599987],[139.60043379000015,-16.54045989399999],[139.580332879,-16.505303643999937],[139.5727645190002,-16.49797942499984],[139.56983483200023,-16.494398695999948],[139.56128991,-16.48748137799987],[139.55250084700006,-16.483330987999835],[139.54851321700008,-16.48772551899991],[139.54566491000006,-16.492120049999983],[139.52808678500017,-16.51230234199999],[139.51905358200005,-16.513767184999963],[139.4941512380002,-16.51474374799986],[139.48707116000017,-16.51783619599985],[139.48585045700005,-16.528415622999972],[139.49439537900017,-16.535088799999855],[139.50684655000012,-16.538669528999918],[139.51783287900017,-16.539646091999984],[139.52686608200005,-16.545342705999957],[139.52466881600014,-16.55689869599989],[139.51539147200006,-16.565850518999838],[139.50407962300002,-16.56357187299986],[139.49317467500015,-16.55559661299999],[139.48292076900023,-16.553643487999945],[139.47364342500006,-16.55738697699998],[139.46656334700006,-16.56698984199987],[139.47266686300011,-16.59791432099982],[139.47282962300008,-16.607842706],[139.46859785200016,-16.615411065999865],[139.45622806100013,-16.632419528999918],[139.45533287900005,-16.63583749799993],[139.45875084700006,-16.64104583099991],[139.45386803500017,-16.65292734199997],[139.44467207099999,-16.664646091999867],[139.43555748800011,-16.669854424999954],[139.42505944100006,-16.66545989399988],[139.4096785820001,-16.646172783999845],[139.39771569100017,-16.64202239399998],[139.38550866000014,-16.650974216999927],[139.37183678500006,-16.688653253],[139.35971113400015,-16.69719817499984],[139.3413192070001,-16.700616143999937],[139.31861412900017,-16.717543226999922],[139.30209394599996,-16.724541924999983],[139.23755944100006,-16.724867445999834],[139.226328972,-16.721123955999985],[139.22022545700023,-16.709893487999892],[139.1901147800002,-16.67164479000003],[139.177989129,-16.66236744599989],[139.18425540500007,-16.683200778999876],[139.18588300899998,-16.711602471999896],[139.18197675899998,-16.73267994599992],[139.17115319100017,-16.73137786299992],[139.16325931100013,-16.7452938779999],[139.1530054050002,-16.755954685000017],[139.1448673840001,-16.75603606599999],[139.14226321700008,-16.72730885199986],[139.13672936300017,-16.70720794099999],[139.136973504,-16.69719817499984],[139.1412866550002,-16.690199476999933],[139.1482853520001,-16.6822242169999],[139.15503991000003,-16.672295830999982],[139.15805097700004,-16.658949476999965],[139.15951582099999,-16.635674737999963],[139.16431725400017,-16.61630624799986],[139.17261803500006,-16.60035572699985],[139.18482506600006,-16.58733489399995],[139.20875084700018,-16.56910572699988],[139.2161564460001,-16.55657317499997],[139.21892337300002,-16.535821221999882],[139.22185306100008,-16.525567315999933],[139.22934004,-16.518243096999853],[139.2394311860002,-16.513767184999963],[139.25025475400017,-16.51230234199999],[139.25831139400012,-16.506931247999958],[139.27849368600008,-16.480238540000016],[139.28785241000017,-16.47063567499987],[139.30827884200008,-16.461195570999934],[139.32943769600016,-16.45761484199997],[139.37305748800006,-16.457696221999953],[139.48755944100017,-16.433526299999855],[139.54607181100002,-16.402276299999883],[139.58269290500007,-16.395603123000015],[139.60377037900017,-16.39837004999997],[139.61329186300006,-16.40585702899986],[139.61980228000007,-16.416680596999853],[139.63054446700008,-16.42978281],[139.64405358200023,-16.437758070999877],[139.66041100400017,-16.44182708099993],[139.69939212300002,-16.443291924999983],[139.69727623800023,-16.447686455999953]]],[[[136.6954858730001,-15.739922783999871],[136.6635848320001,-15.778578382999909],[136.65674889400006,-15.771172783999845],[136.64291425899998,-15.762383721999951],[136.62973066500015,-15.749118748000013],[136.61963951900006,-15.732598565999863],[136.61573326900006,-15.71404387799994],[136.62183678500017,-15.692559502999927],[136.63656660200016,-15.682305596999981],[136.6545516290001,-15.675225518999936],[136.67042076900012,-15.663181248000015],[136.67595462300002,-15.678969007999967],[136.69011478000007,-15.686944268999838],[136.70476321700008,-15.693047783999916],[136.71192467500012,-15.703545830999884],[136.7076929050002,-15.719659112999864],[136.6954858730001,-15.739922783999871]]],[[[136.800629102,-15.642022393999921],[136.81576582099999,-15.652927341999897],[136.83025149800002,-15.668226820999863],[136.83497155000023,-15.682386976999965],[136.82129967500012,-15.689873955999857],[136.81185957099999,-15.687107028999888],[136.80307050900004,-15.672133070999863],[136.79379316500015,-15.669366143999893],[136.78003991000006,-15.672946872999873],[136.77857506600017,-15.679782809999978],[136.78858483200005,-15.702569268999907],[136.79175866000006,-15.70598723799992],[136.79420006600017,-15.710056247999974],[136.79379316500015,-15.717054945999863],[136.79078209700018,-15.722263278999861],[136.78532962300002,-15.725844007999923],[136.77344811300006,-15.73137786299985],[136.75245201900023,-15.745782159],[136.74146569100017,-15.749444268999866],[136.731781446,-15.744398695999921],[136.73414147200018,-15.72079843499989],[136.74089603000013,-15.69882577899996],[136.74293053500006,-15.67587655999989],[136.731781446,-15.648858330999929],[136.74805748800023,-15.646254165000029],[136.78353925900015,-15.64869557099996],[136.800629102,-15.642022393999921]]],[[[136.99475584700022,-15.592776142999965],[137.00473066500012,-15.593682549999913],[137.01596113400015,-15.593357028999888],[137.02369225400014,-15.602634373000015],[137.02738144000014,-15.627982468999903],[137.04717619800024,-15.638768878000022],[137.05769806000015,-15.629219755999868],[137.06544705700006,-15.628508654999917],[137.06695420700024,-15.646833950999861],[137.0831927640002,-15.652196240999984],[137.0819663350002,-15.686817994999869],[137.0814658610001,-15.72617531099989],[137.08224450400022,-15.74177179199999],[137.077891472,-15.751234632999854],[137.07950919700014,-15.758743645999871],[137.08728489900003,-15.76277916699982],[137.0944116550002,-15.766045831],[137.1063786030002,-15.774224309999907],[137.10018240200012,-15.803421031999989],[137.09040339000003,-15.821780987999956],[137.07289448400005,-15.846961041999876],[137.0439085900001,-15.834202405],[137.0421655610002,-15.81780364399985],[137.03858483200023,-15.806410414999972],[137.03337649800014,-15.796563408999944],[137.02320397200018,-15.792250257999951],[137.0074975920002,-15.79119231599999],[137.0003361340001,-15.78704192499987],[136.9858504570002,-15.750258070999877],[136.984141472,-15.742608330999941],[136.9851180350001,-15.720635674999842],[136.9816186860002,-15.712009373000015],[136.97331790500002,-15.711114190999922],[136.96412194100006,-15.712579033999985],[136.95777428500006,-15.710870049999983],[136.9515080090001,-15.710870049999983],[136.94817916200017,-15.729423515999883],[136.9453518680002,-15.72875466199996],[136.9397002100001,-15.728095654999978],[136.93472486400012,-15.72132449499999],[136.93832441500004,-15.699883721999838],[136.93832441500004,-15.682875257999953],[136.94304446700002,-15.667657158999972],[136.9515080090001,-15.655694268999866],[136.96396927400022,-15.640428984999884],[136.97527103000004,-15.656019789999888],[136.98316491000006,-15.664320570999948],[136.98876590900014,-15.660716618999926],[136.98157525100024,-15.634258030999918],[136.99213755300005,-15.630826606999946],[136.99981295800015,-15.615178186999971],[136.99475584700022,-15.592776142999965]]],[[[136.60035241000006,-15.611586195999962],[136.58790123800011,-15.635186455999984],[136.57667076900012,-15.631117445999934],[136.55836022200003,-15.633884372999985],[136.54688561300011,-15.627699476999936],[136.54102623800006,-15.635186455999984],[136.53492272200018,-15.638929945999848],[136.51954186300023,-15.642022393999921],[136.51417076900006,-15.639743747999859],[136.5092879570001,-15.63681406],[136.49854576900012,-15.627699476999936],[136.51026451900006,-15.62118906000002],[136.51221764400023,-15.609063408999859],[136.50717207099999,-15.596286717],[136.49854576900012,-15.587497654000018],[136.51563561300023,-15.574314059999892],[136.52149498800011,-15.567803643999982],[136.52637780000023,-15.55950286299992],[136.5266219410001,-15.548435153999973],[136.522715691,-15.539727471999894],[136.5249129570001,-15.534274997999942],[136.5434676440001,-15.532159112999933],[136.5651147800002,-15.526055596999868],[136.58521569100006,-15.516371351999894],[136.60279381600017,-15.516371351999894],[136.61573326900006,-15.53899504999987],[136.60230553500017,-15.563653252999954],[136.60035241000006,-15.611586195999962]]],[[[136.86133873800023,-15.626071872999914],[136.84848066500004,-15.635186455999984],[136.84791100400005,-15.63046640399999],[136.84644616000017,-15.627618096999951],[136.84424889400012,-15.625258070999903],[136.841644727,-15.62151458099987],[136.84791100400005,-15.61988697699985],[136.84815514400012,-15.617120049999967],[136.841644727,-15.608005466999897],[136.83725019600004,-15.599297784],[136.84009850400017,-15.594903252999925],[136.84538821700002,-15.591729424999867],[136.84848066500004,-15.587497654000018],[136.8498641290001,-15.58359140399993],[136.85482832100016,-15.57545338299984],[136.85596764400003,-15.570000908999972],[136.85352623800023,-15.565362237999947],[136.84359785200016,-15.556573174999897],[136.841644727,-15.553317966999854],[136.84742272200006,-15.53582122199998],[136.85743248800023,-15.52019622199999],[136.86988366000017,-15.507419528999876],[136.88331139400023,-15.49814218499992],[136.87468509200008,-15.522149346999868],[136.87769616000006,-15.544122002999885],[136.8956811860002,-15.587497654000018],[136.88314863399998,-15.590915622999859],[136.87387129000015,-15.597426040000029],[136.87037194100006,-15.607679945999875],[136.87525475400005,-15.62151458099987],[136.8667098320001,-15.623955987999905],[136.86133873800023,-15.626071872999914]]],[[[124.44459069100016,-15.299411716999911],[124.43165123800004,-15.308689059999947],[124.42074628999998,-15.306410414999972],[124.40992272200018,-15.300876559999876],[124.39682050900004,-15.299411716999911],[124.39307701900012,-15.30282968499992],[124.38990319100006,-15.309177341999854],[124.38510175900015,-15.315524997999885],[124.37647545700021,-15.319268487999906],[124.37281334700016,-15.317315362999963],[124.34213300899998,-15.306247654000016],[124.33619225400017,-15.300062757999866],[124.3347274100001,-15.296807549999912],[124.3347274100001,-15.291924737999848],[124.38412519600016,-15.28118254999984],[124.40796959700006,-15.272067966999925],[124.41797936300023,-15.25408294099999],[124.4228621750001,-15.24618906],[124.43384850400018,-15.246514580999856],[124.44548587300007,-15.25318775799991],[124.45199629000014,-15.26474374799993],[124.44727623800023,-15.274834893999982],[124.43653405000023,-15.28386809699991],[124.43181399800002,-15.29216887799997],[124.44459069100016,-15.299411716999911]]],[[[124.563243035,-15.256524346999925],[124.54957116000016,-15.297458591999868],[124.55144290500007,-15.306247654000016],[124.56128991000017,-15.306817315999979],[124.574473504,-15.309991143999865],[124.58220462300012,-15.31796640399992],[124.57569420700023,-15.332940362999949],[124.6017358730002,-15.34384531],[124.62794030000022,-15.387383721999937],[124.6501570970001,-15.39511484199987],[124.6354272800002,-15.404392185],[124.54916425900008,-15.436293226999922],[124.53126061300011,-15.440362237999892],[124.52035566500015,-15.435967706],[124.5149845710001,-15.423028252999984],[124.51775149800002,-15.413262627999869],[124.52523847700003,-15.409763278999876],[124.53467858200021,-15.41545989399995],[124.55437259200006,-15.389336846999981],[124.567067905,-15.379327080999913],[124.58253014400023,-15.373955987999864],[124.57032311300006,-15.373711847],[124.53777103000019,-15.367771091999984],[124.52849368600008,-15.369724216999927],[124.5171004570001,-15.378594658999887],[124.50668379000004,-15.381442966999925],[124.51417076900007,-15.360935153999874],[124.49773196700006,-15.37761809699991],[124.48568769600016,-15.37761809699991],[124.47429446700018,-15.36923593499995],[124.45883222700016,-15.360935153999874],[124.47055097700017,-15.351006768999966],[124.47299238400004,-15.34099700299997],[124.47193444100006,-15.332289320999903],[124.47266686300004,-15.32610442499984],[124.47974694100006,-15.31796640399992],[124.48707116000006,-15.313734632999898],[124.49561608200004,-15.315850518999907],[124.50668379000004,-15.32610442499984],[124.50245201900006,-15.317152601999906],[124.50171959700005,-15.308689059999947],[124.5053817070001,-15.300388278999888],[124.51417076900007,-15.291924737999848],[124.49317467500023,-15.291924737999848],[124.50440514400022,-15.27939218500002],[124.55201256600002,-15.249444268999879],[124.56869550900015,-15.244235934999963],[124.563243035,-15.256524346999925]]],[[[128.19678795700023,-15.17555103999996],[128.18677819100006,-15.190199476999977],[128.18189537900017,-15.181898695999818],[128.17408287900017,-15.174086195999903],[128.16382897200006,-15.167250257999896],[128.1520288420002,-15.16228606599985],[128.13396243600005,-15.146579684999963],[128.12598717500012,-15.134698174999842],[128.124278191,-15.119561455999843],[128.12378990999997,-15.04859791500003],[128.13135826900015,-15.037530205999914],[128.1520288420002,-15.052422783999873],[128.15772545700005,-15.087090752999854],[128.1588647800002,-15.090264580999913],[128.1626082690002,-15.097263278999973],[128.1713973320001,-15.101006768999838],[128.1806746750002,-15.103936455999857],[128.18677819100006,-15.10759856599999],[128.19450931100008,-15.126885674999926],[128.19857832100004,-15.152032158999916],[128.19678795700023,-15.17555103999996]]],[[[124.93262780000023,-14.965427341999984],[124.92823326900022,-14.97356536299992],[124.92164147200018,-14.98398202899999],[124.92603600400015,-14.991387627999899],[124.93384850400004,-14.996026299999912],[124.93816165500006,-14.997735283999916],[124.9397892590001,-15.01392994599996],[124.93628991000017,-15.026055596999965],[124.92701256600006,-15.029229424999926],[124.91146894600003,-15.018243096999882],[124.90805097700004,-15.012627862999961],[124.90015709700008,-14.995700778999987],[124.89714603000006,-14.990980726999892],[124.89063561300021,-14.98984140399986],[124.87468509200002,-14.992120049999926],[124.86988366000004,-14.990980726999892],[124.86378014400017,-14.972588799999853],[124.87142988399998,-14.956719658999914],[124.88697350400011,-14.952813409],[124.90398196700008,-14.970391533999859],[124.90691165500019,-14.96103280999992],[124.91130618600008,-14.952243747999857],[124.91716556100017,-14.944105726999936],[124.92457116000011,-14.93629322699985],[124.92847741000016,-14.944105726999936],[124.93189537899998,-14.95468515399989],[124.93262780000023,-14.965427341999984]]],[[[128.44125410200016,-15.016289971999841],[128.44068444100017,-15.038750908999843],[128.41277103000007,-15.018243096999882],[128.35824629000015,-14.956312757999825],[128.35132897200006,-14.932712497999958],[128.34839928500006,-14.882989190999963],[128.3537703790001,-14.86923593499995],[128.37175540500002,-14.874281507999896],[128.38493899800008,-14.891696872999873],[128.40935306100002,-14.944919528999947],[128.41618899800008,-14.956231377999842],[128.42953535200013,-14.965915622999972],[128.43783613400015,-14.988946221999868],[128.44125410200016,-15.016289971999841]]],[[[135.76450793600017,-14.890059442999927],[135.76267882900004,-14.900901502999945],[135.7465776460001,-14.897361959999913],[135.72700816100007,-14.895596990999891],[135.70520121800007,-14.913112821999917],[135.6925527140002,-14.90879432599992],[135.68724561000008,-14.90289191099987],[135.69847390600003,-14.895193630999914],[135.70394941499998,-14.887872002999854],[135.71519355000024,-14.880022234999968],[135.72070064200003,-14.86701901699985],[135.71947862700003,-14.860127005999901],[135.7105071490001,-14.858752226999842],[135.70806051300005,-14.853040843999876],[135.71519786600007,-14.850872920999903],[135.72008827200014,-14.841026281999914],[135.7278286660002,-14.834526971999964],[135.74922270200014,-14.838466263999846],[135.76063475200024,-14.849888870999848],[135.7667538530001,-14.868209643999862],[135.76450793600017,-14.890059442999927]]],[[[129.63363691500004,-14.870700779],[129.62663821700014,-14.875258070999877],[129.61182701900023,-14.867364190999977],[129.60645592500012,-14.857598565999865],[129.59009850400017,-14.836358330999957],[129.585215691,-14.826429945999877],[129.581309441,-14.808770440999863],[129.58301842500012,-14.803806247999985],[129.58904056100002,-14.806573174999869],[129.60645592500012,-14.817071221999923],[129.61646569100017,-14.82488372199984],[129.62598717500006,-14.835056247999958],[129.63249759200008,-14.846937757999923],[129.63493899800017,-14.859307549999869],[129.63363691500004,-14.870700779]]],[[[129.59099368600008,-14.909356377999883],[129.59148196700008,-14.963636976999908],[129.58912194099997,-14.952325127999842],[129.58480879000004,-14.942478122999916],[129.57894941500015,-14.934502862999862],[129.57154381600017,-14.928887627999956],[129.55779056100008,-14.90781015399993],[129.53484134200008,-14.858168226999835],[129.51978600400005,-14.836358330999957],[129.50464928500006,-14.80291106599999],[129.50196373800006,-14.79851653399993],[129.50814863400015,-14.78573984199997],[129.51547285200016,-14.787204684999935],[129.52393639400012,-14.79420338299984],[129.53345787900017,-14.79851653399993],[129.57781009200014,-14.860528252999883],[129.58708743600005,-14.883477471999951],[129.59099368600008,-14.909356377999883]]],[[[125.20875084700006,-14.48162200299987],[125.20053144600003,-14.510430596999981],[125.18189537900004,-14.534274997999887],[125.1777449880001,-14.54216887799994],[125.18140709700006,-14.552829684999892],[125.19922936300021,-14.578301690999892],[125.20492597700004,-14.593031507999967],[125.19288170700011,-14.595879815999837],[125.16960696700019,-14.611097914999903],[125.16529381600017,-14.61077239399988],[125.16138756600017,-14.607842705999943],[125.1535750660001,-14.610935154000016],[125.14698326900012,-14.617120049999912],[125.14763431100006,-14.624118747999972],[125.15162194100004,-14.631931247999887],[125.14991295700023,-14.638441664999961],[125.14454186300011,-14.643975518999895],[125.13746178500006,-14.647637627999856],[125.1271264980002,-14.628024997999887],[125.12061608200021,-14.618340752999925],[125.11345462300007,-14.614190362999892],[125.10377037900005,-14.61646900799987],[125.09644615999999,-14.619805596999981],[125.09156334700006,-14.618584893999964],[125.0896102220001,-14.607354424999954],[125.09473717500012,-14.579196872999887],[125.09644615999999,-14.549004815999877],[125.10222415500017,-14.538995049999983],[125.11524498800004,-14.54216887799994],[125.12916100400005,-14.551364841999927],[125.13746178500006,-14.559014580999943],[125.13550866000016,-14.541273695999948],[125.13892662900015,-14.509698174999954],[125.13054446700002,-14.511163018999838],[125.11557050899998,-14.496840101999851],[125.12281334699999,-14.481215101999865],[125.14087975400004,-14.466973565999863],[125.15788821700018,-14.45647551899998],[125.15284264400017,-14.443780205999914],[125.16065514400024,-14.437920830999884],[125.17188561300019,-14.440606377999954],[125.1777449880001,-14.452813408999843],[125.17847741000007,-14.461032810000019],[125.18140709700006,-14.466403903999888],[125.18677819099999,-14.469333591999911],[125.19507897200018,-14.470147393999921],[125.20639082100016,-14.47356536299992],[125.20875084700006,-14.48162200299987]]],[[[126.61085045700023,-13.894219658999987],[126.61085045700023,-13.901055596999925],[126.59864342500005,-13.905205987999949],[126.58562259200018,-13.902113539999972],[126.57129967500012,-13.896905205999886],[126.55567467500012,-13.894219658999987],[126.53956139400023,-13.897881768999866],[126.5258895190001,-13.90374114399999],[126.5151473320001,-13.904880466999927],[126.5078231130001,-13.894219658999987],[126.50562584700012,-13.889825127999913],[126.50098717500008,-13.873711846999939],[126.52320397200006,-13.87086354],[126.553965691,-13.875258070999976],[126.58570397200018,-13.884209893999923],[126.61085045700023,-13.894219658999987]]],[[[136.8090926440002,-13.813409112999906],[136.80746504000004,-13.818536065999922],[136.80811608200017,-13.812920831],[136.81031334700006,-13.808282158999985],[136.8139754570001,-13.804457289999974],[136.81812584700006,-13.801364841999899],[136.81169681100002,-13.808851820999948],[136.8090926440002,-13.813409112999906]]],[[[136.28003991000017,-13.736504815999908],[136.2687280610002,-13.740492445999976],[136.25798587300008,-13.739434502999927],[136.24952233200023,-13.742282809999963],[136.24512780000023,-13.757582290000016],[136.2604272800002,-13.758070570999903],[136.26758873800023,-13.766534112999864],[136.27222741000014,-13.778903903999973],[136.28003991000017,-13.791761976999908],[136.26140384200005,-13.793552341999984],[136.25416100400014,-13.80608489399999],[136.25114993600008,-13.823663018999923],[136.24512780000023,-13.839532158999958],[136.23609459700006,-13.847263278999876],[136.22266686300023,-13.853204033999901],[136.20850670700023,-13.855889580999971],[136.19743899800008,-13.853204033999901],[136.20484459700018,-13.846368096999882],[136.20557701900012,-13.840264580999985],[136.20557701900012,-13.835381768999923],[136.206797722,-13.830743096999896],[136.2111108730002,-13.825941664999988],[136.20232181100008,-13.812920831],[136.18628991000014,-13.77312590899993],[136.177012566,-13.76384856599988],[136.15349368600008,-13.770684502999897],[136.1511336600001,-13.794040622999972],[136.15650475400017,-13.82122161299999],[136.15650475400017,-13.839532158999958],[136.12305748800011,-13.824883721999937],[136.11670983200003,-13.81666432099986],[136.1147567070001,-13.72356536299999],[136.15162194100017,-13.740899346999981],[136.16488691500004,-13.742364190999936],[136.1701766290001,-13.726657809999978],[136.17335045700017,-13.707126559999907],[136.18238366000017,-13.686455987999892],[136.19532311300003,-13.669610283999887],[136.2111108730002,-13.66139088299998],[136.2202254570001,-13.662530205999914],[136.23422285200016,-13.666436456],[136.2470809250001,-13.672051690999922],[136.2526961600001,-13.678480726999922],[136.25798587300008,-13.690036716999956],[136.26978600400005,-13.697198174999983],[136.28150475400005,-13.701755466999856],[136.28687584700018,-13.705824476999908],[136.28825931100008,-13.718845309999892],[136.2900496750002,-13.724541924999969],[136.2885848320001,-13.72861093500002],[136.28003991000017,-13.736504815999908]]],[[[136.7241317070001,-13.687188408999916],[136.714121941,-13.707289320999962],[136.684336785,-13.720472914999917],[136.67807050900012,-13.731133721999853],[136.676524285,-13.743747654000016],[136.68051191499998,-13.754001559999864],[136.69174238399998,-13.761651299999967],[136.7033797540001,-13.76360442499984],[136.7148543630002,-13.763116143999852],[136.7255965500002,-13.76384856599988],[136.7189233730002,-13.770684502999897],[136.7046004570001,-13.791761976999908],[136.71265709700006,-13.806817315999922],[136.7148543630002,-13.818617445999905],[136.71851647200018,-13.829034112999892],[136.731781446,-13.839532158999958],[136.74496504000015,-13.844170830999971],[136.79721113399998,-13.853204033999901],[136.81421959700006,-13.849704684999905],[136.82837975400017,-13.840020440999936],[136.83806399800014,-13.825860283999916],[136.841644727,-13.808770440999965],[136.83936608200023,-13.801039320999877],[136.83366946700002,-13.797621351999865],[136.82601972700004,-13.797946872999887],[136.81918378999998,-13.800225518999865],[136.82496178500017,-13.79436614399999],[136.82715905000023,-13.791192315999936],[136.841644727,-13.75017669099985],[136.85621178500006,-13.757419528999959],[136.88672936300017,-13.753594658999859],[136.90308678500017,-13.757582290000016],[136.90886478000007,-13.764336846999868],[136.91684003999998,-13.777927342],[136.9233504570001,-13.793145440999979],[136.92432701900015,-13.805352471999967],[136.91570071700008,-13.817315362999906],[136.88575280000006,-13.84579843499999],[136.87525475400005,-13.860039972],[136.85596764400003,-13.915215752999856],[136.82276451900015,-13.905205987999949],[136.79135175900015,-13.91773853999996],[136.76832116000014,-13.944594007999854],[136.75977623800023,-13.97730885199988],[136.76303144599999,-13.996840101999865],[136.77076256600012,-14.004978122999956],[136.78158613399998,-14.00937265399986],[136.79379316500015,-14.017754815999908],[136.79721113399998,-14.018731377999984],[136.80567467500012,-14.023695570999848],[136.81080162900005,-14.029392184999919],[136.80404707099999,-14.031914971999939],[136.79493248800011,-14.033135674999953],[136.78785241000006,-14.036797784],[136.78296959700018,-14.043064059999862],[136.78028405000012,-14.051853123000015],[136.76490319100006,-14.045505466999899],[136.75440514400006,-14.050957940999922],[136.74968509200008,-14.063734632999882],[136.7522892590001,-14.079196872999901],[136.74154707100016,-14.066989842000012],[136.72950280000023,-14.061700127999856],[136.71680748800011,-14.063653252999897],[136.7046004570001,-14.072930596999853],[136.70980879000004,-14.08505624799993],[136.70923912900005,-14.099297783999944],[136.7046004570001,-14.126885674999867],[136.71607506600006,-14.165948174999912],[136.71827233200023,-14.178399346999939],[136.72339928500017,-14.185479424999983],[136.73633873800006,-14.189141533999859],[136.7521264980002,-14.190199476999823],[136.78060957100004,-14.187188408999987],[136.78419030000012,-14.18621184699984],[136.78223717500023,-14.18059661299992],[136.78028405000012,-14.164808851999979],[136.78923587300014,-14.149509373000013],[136.81055748800011,-14.159112237999906],[136.871836785,-14.207940362999906],[136.88070722700016,-14.208591403999861],[136.89258873800011,-14.198907158999987],[136.90121504,-14.188083591999899],[136.90837649800008,-14.176934502999883],[136.91358483200023,-14.16383229],[136.91675865999997,-14.147393487999906],[136.92432701900015,-14.147393487999906],[136.93490644600004,-14.155205987999906],[136.94890384200008,-14.15447356599988],[136.96412194100006,-14.149997654],[136.97885175900015,-14.147393487999906],[136.96957441499998,-14.155205987999906],[136.96192467500023,-14.164971612999935],[136.9515080090001,-14.181573175],[136.9475203790001,-14.18385182099996],[136.943125847,-14.182386976999908],[136.93962649800014,-14.182386976999908],[136.93726647200018,-14.189060153999874],[136.93775475400014,-14.196221612999906],[136.94288170700005,-14.20720794099988],[136.94410241000017,-14.212985934999935],[136.94776451900023,-14.215508721999939],[136.95460045700017,-14.223890882999825],[136.95883222700016,-14.232679945999962],[136.95460045700017,-14.236748955999843],[136.94125410200016,-14.24195728999993],[136.9379988940001,-14.25400156000002],[136.94214928500006,-14.267754815999865],[136.9515080090001,-14.277764580999943],[136.93946373800017,-14.273858330999856],[136.93295332100016,-14.276543877999925],[136.93197675899998,-14.28329843499995],[136.93726647200018,-14.291436455999886],[136.92457116,-14.282403252999956],[136.91358483200023,-14.279961846999925],[136.90577233200017,-14.28525156],[136.90308678500017,-14.298923434999933],[136.86784915500002,-14.27988046699994],[136.85157311300011,-14.275567315999949],[136.83545983200023,-14.28525156],[136.82447350400017,-14.274102471999896],[136.80494225400008,-14.267836195999847],[136.76286868600002,-14.264825127999925],[136.74561608200023,-14.258070570999905],[136.73308353000002,-14.25611744599986],[136.72193444100012,-14.261000257999923],[136.68051191499998,-14.28525156],[136.6394149100001,-14.280205987999963],[136.46078535200002,-14.216403903999932],[136.455332879,-14.213067315999908],[136.43775475400017,-14.198418878],[136.42676842500012,-14.1952450499999],[136.41602623800011,-14.19638437299997],[136.38070722700016,-14.206801039999874],[136.357188347,-14.225518487999935],[136.3413192070001,-14.230075778999973],[136.33790123800006,-14.23154062299993],[136.32984459700006,-14.233086846999967],[136.32406660200016,-14.229587497999985],[136.3278100920002,-14.216403903999932],[136.33521569100012,-14.208754164999915],[136.35816491000014,-14.196547132999939],[136.36817467500018,-14.189060153999874],[136.398285352,-14.17603932099989],[136.4113061860002,-14.165785414999945],[136.42139733200023,-14.139336846999882],[136.43083743600005,-14.129571221999937],[136.43734785200016,-14.120375257999953],[136.43360436300023,-14.109958591999884],[136.42237389400023,-14.088555596999838],[136.4155379570001,-14.057305596999868],[136.40967858200005,-13.997247002999869],[136.41098066500015,-13.964939059999935],[136.42628014400012,-13.908461195999818],[136.43018639400012,-13.877129815999865],[136.425059441,-13.864515882999882],[136.41504967500012,-13.848890882999896],[136.40723717500023,-13.832696221999853],[136.40967858200005,-13.818536065999922],[136.42457116,-13.810316665],[136.43995201900023,-13.816827080999914],[136.46420332100016,-13.839532158999958],[136.47217858200008,-13.833428643999879],[136.49775950100016,-13.834098059999846],[136.51216933600003,-13.8340815749999],[136.52566920800004,-13.818323620999918],[136.51954186300023,-13.804457289999974],[136.5301453070001,-13.785955776999925],[136.53614342500012,-13.790297132999953],[136.54810631600006,-13.810723565999837],[136.5610457690002,-13.819756768999936],[136.57406660200004,-13.79802825299987],[136.57911217500023,-13.802911065999934],[136.59473717500023,-13.812269789999874],[136.59473717500023,-13.78435637799984],[136.60808353000007,-13.792250257999896],[136.62273196700008,-13.787774346999939],[136.62859134200016,-13.776299737999977],[136.61573326900006,-13.76384856599988],[136.60840905000006,-13.77125416499996],[136.6030379570001,-13.754327080999886],[136.60075931100008,-13.736911716999913],[136.593516472,-13.724704684999935],[136.57406660200004,-13.72356536299999],[136.5807397800002,-13.713474217000012],[136.58253014400017,-13.704359632999854],[136.57829837300002,-13.69793059699984],[136.56723066500004,-13.695489190999979],[136.57227623800023,-13.686211846999853],[136.58008873800023,-13.681898695999847],[136.59009850399997,-13.681084893999838],[136.60206139400023,-13.681898695999847],[136.61557050900004,-13.684747002999885],[136.61841881600006,-13.688734632999866],[136.616465691,-13.692803643999909],[136.61573326900006,-13.695489190999979],[136.61670983200023,-13.699802341999899],[136.61491946700008,-13.71184661299999],[136.61573326900006,-13.715997002999854],[136.62094160200016,-13.717705987999864],[136.62614993600008,-13.71510182099986],[136.62964928500017,-13.711358330999914],[136.6294051440001,-13.709242445999905],[136.63404381600006,-13.705987237999963],[136.63786868600008,-13.699802341999899],[136.6442163420002,-13.696465752999956],[136.65674889400006,-13.702406507999896],[136.6744897800002,-13.674899997999958],[136.67709394600007,-13.664808851999979],[136.68181399800017,-13.657403252999911],[136.70655358200017,-13.655938408999859],[136.71827233200023,-13.647719007999939],[136.72535241,-13.66432057099982],[136.7241317070001,-13.687188408999916]]],[[[136.19776451900012,-13.454847914999887],[136.20313561300017,-13.46119557099992],[136.19743899800008,-13.476495049999883],[136.1701766290001,-13.455987237999835],[136.1701766290001,-13.476495049999883],[136.15455162899997,-13.47291432099982],[136.15642337300008,-13.489353122999901],[136.16334069100014,-13.512790622999972],[136.14926285300012,-13.53507272399983],[136.14295644300012,-13.560450478000021],[136.13036716500002,-13.547318572999913],[136.13307410800022,-13.530693311999853],[136.14657057100013,-13.513210180999948],[136.14027905200012,-13.502710970999884],[136.13233483200023,-13.495293877999927],[136.12410712900007,-13.47208420299988],[136.13591556100013,-13.43482838299991],[136.13542728000002,-13.40797291499993],[136.12233689400009,-13.393387946999937],[136.11898847700004,-13.374200127999856],[136.09498131600017,-13.36044687299993],[136.1178491550002,-13.36223723799992],[136.1340249460001,-13.386394695999869],[136.14840704600007,-13.389896057999849],[136.16334069100014,-13.411553643999909],[136.18100019599999,-13.439060154000016],[136.184336785,-13.4457333309999],[136.18897545700023,-13.451755466999984],[136.19776451900012,-13.454847914999887]]],[[[136.82935631600003,-12.132256768999866],[136.8209741550002,-12.137953382999854],[136.81299889400023,-12.136163018999866],[136.80746504000004,-12.126560153999888],[136.79706918400004,-12.108354610999896],[136.7991050850002,-12.08455848199982],[136.8169555320002,-12.076077101999914],[136.8220038210002,-12.084448887999912],[136.824243204,-12.104028124999857],[136.82146135200017,-12.120831756999847],[136.82935631600003,-12.132256768999866]]],[[[132.40577233200005,-12.132989190999893],[132.38754316499998,-12.133396091999899],[132.33985436300011,-12.098565362999864],[132.34457441500004,-12.085870049999896],[132.3577580090001,-12.077813408999873],[132.37403405000012,-12.073418877999885],[132.38754316499998,-12.071872653999845],[132.41187584700006,-12.083672783999901],[132.41578209700006,-12.11028411299985],[132.40577233200005,-12.132989190999893]]],[[[134.92481530000012,-12.106703382999882],[134.90796959700018,-12.117852471999896],[134.888356967,-12.112237237999892],[134.8781030610002,-12.100274346999868],[134.8671981130002,-12.076755466999913],[134.85425866000006,-12.037774346999838],[134.88021894600004,-12.054945570999863],[134.8852645190002,-12.057549737999864],[134.90723717500015,-12.05982838299984],[134.91822350400005,-12.063164971999853],[134.92628014400023,-12.0681291649999],[134.93287194100006,-12.087334893999866],[134.92481530000012,-12.106703382999882]]],[[[134.98598554100025,-12.04145033899988],[134.94872870600003,-12.054668868999883],[134.93521018800004,-12.050258563999833],[134.9207885750001,-12.04026293399987],[134.9093696470002,-12.035850012999873],[134.90847178500007,-12.022624855999851],[134.95624613500001,-12.016468623999854],[134.96525629900006,-12.02646480099986],[134.98448453600022,-12.036160867999824],[134.98598554100025,-12.04145033899988]]],[[[136.3027449880001,-12.013278903999902],[136.26929772200006,-12.038995049999855],[136.23560631600006,-12.05071379999984],[136.21827233200017,-12.054131768999852],[136.20801842500023,-12.062188408999887],[136.19874108200005,-12.071384372999859],[136.184336785,-12.078057549999912],[136.16944420700014,-12.078383070999834],[136.1510522800001,-12.074476820999848],[136.13550866,-12.067315362999892],[136.12916100400017,-12.057549737999864],[136.13404381600006,-12.047946872999873],[136.13493899800002,-12.037774346999838],[136.1328231130002,-12.027276299999869],[136.12916100400017,-12.016696872999901],[136.14437910200013,-12.024102471999894],[136.15365644600004,-12.031914971999882],[136.161875847,-12.034763278999916],[136.17359459700012,-12.026950778999845],[136.19060306100008,-12.006280205999829],[136.2000431650001,-11.999932549999883],[136.2111108730002,-12.002373955999829],[136.20834394600016,-12.006117445999863],[136.20492597700013,-12.015801690999822],[136.2038680350001,-12.0258114559999],[136.20801842500023,-12.030368747999844],[136.21745853000007,-12.02922942499991],[136.23324628999998,-12.024590752999883],[136.24203535200016,-12.02353280999992],[136.2597762380002,-12.016045830999857],[136.2794702480002,-11.983086846999882],[136.2902124360002,-11.975681247999901],[136.3162541020001,-11.987399997999887],[136.3027449880001,-12.013278903999902]]],[[[135.08485199300011,-11.946092824999923],[135.05769680300003,-11.953185170999829],[135.04607181100002,-11.941501559999907],[135.05388849700003,-11.919436661999896],[135.08446761100018,-11.920041030999895],[135.1108544460002,-11.924958444999902],[135.1219624810001,-11.92969636499987],[135.10748438400014,-11.942097811999858],[135.08485199300011,-11.946092824999923]]],[[[136.47266686300011,-11.905450127999856],[136.46908613400004,-11.90650807099982],[136.46648196700014,-11.902764580999872],[136.46420332100016,-11.89373137799987],[136.47055097700016,-11.868259372999859],[136.47185306100008,-11.839613539999888],[136.47779381600012,-11.814222914999874],[136.49854576900012,-11.798109632999811],[136.4969181650001,-11.81650155999985],[136.47803795700023,-11.865817966999927],[136.47836347700013,-11.87558359199987],[136.4817814460001,-11.88241952899989],[136.48324629000012,-11.889418226999865],[136.47803795700023,-11.899834893999852],[136.47266686300011,-11.905450127999856]]],[[[136.59571373800011,-11.774183851999837],[136.58659915500002,-11.784356377999885],[136.5815535820001,-11.798109632999811],[136.56128991000017,-11.79363372199984],[136.5280054050002,-11.798516533999901],[136.51954186300023,-11.790704033999901],[136.52898196700008,-11.776543877999883],[136.53711998800006,-11.773125908999873],[136.55713951900023,-11.777032158999873],[136.57016035200004,-11.77320728999986],[136.58423912900017,-11.764336846999825],[136.605235222,-11.746026299999855],[136.61850019600004,-11.735446872999901],[136.62370853000002,-11.736586195999834],[136.62232506600006,-11.745212497999844],[136.61573326900006,-11.756524346999823],[136.59571373800011,-11.774183851999837]]],[[[136.00604533000015,-11.708677842999862],[135.98617697900025,-11.71636885299985],[135.95590564500017,-11.707164523999893],[135.95152810199997,-11.6834854009999],[135.98086524600015,-11.661368186999923],[136.0240506610002,-11.640872120999859],[136.05520549200014,-11.650047770999848],[136.02156043400012,-11.687457054999896],[136.00604533000015,-11.708677842999862]]],[[[132.57935631600014,-11.64666106599985],[132.59197024800008,-11.648614190999893],[132.61980228000002,-11.64666106599985],[132.64112389400012,-11.644707940999893],[132.64551842500006,-11.65016041499993],[132.64771569100017,-11.667168877999899],[132.64584394600004,-11.678887627999885],[132.64063561300011,-11.691176039999931],[132.63379967500012,-11.701918226999865],[132.62720787900005,-11.708754164999872],[132.6100366550002,-11.715508721999825],[132.58383222700016,-11.720147393999838],[132.55884850400005,-11.719170830999872],[132.544688347,-11.708754164999872],[132.52816816500015,-11.691664320999834],[132.51197350400017,-11.67058684699991],[132.50879967500012,-11.64959075299987],[132.53101647200018,-11.632989190999822],[132.54517662899997,-11.631605726999837],[132.5568953790001,-11.635674737999892],[132.5680444670002,-11.641859632999854],[132.57935631600014,-11.64666106599985]]],[[[133.39877363400015,-11.66236744599982],[133.38575280000003,-11.666192315999837],[133.37208092500023,-11.66529713299984],[133.36019941499998,-11.66033294099988],[133.367035352,-11.653497002999869],[133.35840905000012,-11.628838799999869],[133.35954837300002,-11.617364190999837],[133.370860222,-11.612481377999856],[133.38086998800011,-11.609633070999818],[133.40870201900017,-11.592054945999877],[133.42904707100016,-11.586683851999837],[133.45427493600013,-11.58367278399983],[133.47543379000004,-11.587172132999825],[133.48438561300023,-11.601983330999886],[133.47437584700018,-11.611097914999874],[133.45167076900012,-11.616387627999856],[133.41179446700005,-11.61939869599986],[133.39616946700005,-11.623223565999865],[133.39844811300023,-11.632582289999903],[133.40650475400017,-11.643812757999811],[133.40870201900017,-11.653497002999869],[133.39877363400015,-11.66236744599982]]],[[[136.45736738400004,-11.523858330999872],[136.40251712300014,-11.554782809999907],[136.39234459700018,-11.557305596999825],[136.38917076900012,-11.56243254999984],[136.37566165500002,-11.592054945999877],[136.32520592500012,-11.614678643999852],[136.31617272200012,-11.624118747999859],[136.31031334700003,-11.626153252999885],[136.3053491550002,-11.62468840899983],[136.30005944100006,-11.620863539999917],[136.2976180350001,-11.616387627999856],[136.28467858200008,-11.624769789999903],[136.27328535200002,-11.6390927059999],[136.25855553500006,-11.652113539999887],[136.23218834700006,-11.66033294099988],[136.23047936300023,-11.652113539999887],[136.19564863399998,-11.680433851999837],[136.177012566,-11.688246351999823],[136.18197675900012,-11.682793877999885],[136.18295332100004,-11.678155205999857],[136.18287194100006,-11.673109632999825],[136.19019616000017,-11.646416924999896],[136.19849694100006,-11.639580987999878],[136.2115991550002,-11.636163018999879],[136.23218834700006,-11.626153252999885],[136.24268639400012,-11.612481377999856],[136.25367272200018,-11.59189218499992],[136.266856316,-11.572930596999909],[136.28345787900017,-11.564711195999818],[136.28630618600013,-11.573663018999838],[136.30201256600017,-11.591078382999811],[136.31950931100002,-11.602959893999865],[136.3278100920002,-11.595472914999887],[136.33253014400012,-11.58709075299984],[136.36817467500018,-11.544203382999854],[136.37110436300011,-11.547621351999865],[136.37566165500002,-11.550469658999901],[136.379649285,-11.53606536299985],[136.39380944100003,-11.524834893999838],[136.4233504570001,-11.509535414999874],[136.45313561300011,-11.489353122999859],[136.46851647200006,-11.476006768999838],[136.47803795700023,-11.46111419099988],[136.48340905000012,-11.484470309999876],[136.47486412900017,-11.505954684999907],[136.45736738400004,-11.523858330999872]]],[[[133.51099694100014,-11.503187757999852],[133.49333743600008,-11.508965752999913],[133.47584069100006,-11.507256768999909],[133.45899498800023,-11.503594658999859],[133.44288170700023,-11.503187757999852],[133.42969811300011,-11.509047132999896],[133.41529381600006,-11.519952080999872],[133.40259850400017,-11.532647393999838],[133.39503014400023,-11.544203382999854],[133.39551842500012,-11.536553643999838],[133.39682050900004,-11.531914971999896],[133.4018660820002,-11.523125908999845],[133.4030054050002,-11.512383721999825],[133.40235436300023,-11.502618096999882],[133.39958743600008,-11.494724216999899],[133.39503014400023,-11.489027601999837],[133.42400149800014,-11.485039971999852],[133.44369550900015,-11.47551848799985],[133.45972741000006,-11.464288018999852],[133.47689863399998,-11.454847914999931],[133.4808048840001,-11.470879815999837],[133.4889429050002,-11.484063408999873],[133.49952233200023,-11.494561455999843],[133.51099694100014,-11.503187757999852]]],[[[130.38648522200018,-11.468519789999874],[130.38347415500007,-11.484307549999826],[130.38648522200018,-11.519707940999837],[130.39682050899998,-11.53460051899988],[130.445567254,-11.567152601999851],[130.46168053500017,-11.592054945999877],[130.4650171230002,-11.620049737999906],[130.46290123800011,-11.650079033999859],[130.45679772200012,-11.676690362999892],[130.44800866000006,-11.69451262799987],[130.44800866000006,-11.701348565999893],[130.45883222700004,-11.697686455999843],[130.46583092500012,-11.693291924999853],[130.47315514400012,-11.689711195999877],[130.48552493600008,-11.688246351999823],[130.49773196700002,-11.690036716999899],[130.53012129000004,-11.699802341999856],[130.5367944670002,-11.705010674999839],[130.54859459700006,-11.701429945999877],[130.57496178500017,-11.71542734199984],[130.61988366000017,-11.749118747999844],[130.63160241000006,-11.762383721999868],[130.63502037900017,-11.768161716999927],[130.63282311300006,-11.787530205999843],[130.62818444100003,-11.804620049999881],[130.61736087300002,-11.813164971999823],[130.57325280000023,-11.830987237999892],[130.52100670700023,-11.829522393999838],[130.49634850400003,-11.839043877999828],[130.47046959700006,-11.824802341999913],[130.43873131600017,-11.811618747999873],[130.40593509200008,-11.80185312299993],[130.37598717500012,-11.798109632999811],[130.36011803500017,-11.793715101999823],[130.3369246750002,-11.774590752999842],[130.321055535,-11.770196221999853],[130.30632571700002,-11.772556247999901],[130.28158613400015,-11.782321872999859],[130.235118035,-11.789727471999838],[130.14698326900012,-11.824802341999913],[130.11890709700012,-11.82781340899983],[130.08423912900005,-11.82781340899983],[130.05347741000003,-11.82284921699987],[130.03711998800023,-11.811211846999866],[130.02409915500007,-11.795179945999877],[130.01832116000017,-11.785251559999878],[130.01661217500006,-11.777032158999873],[130.02295983200008,-11.762383721999868],[130.03150475400005,-11.759209893999895],[130.05404707100004,-11.763360283999845],[130.069590691,-11.755629164999917],[130.07154381600017,-11.7367489559999],[130.06430097700004,-11.691338799999896],[130.07154381600017,-11.67115650799988],[130.08814537900005,-11.6735979149999],[130.11898847700007,-11.69451262799987],[130.1456811860002,-11.69939544099985],[130.16732832099999,-11.692640882999811],[130.18539472700004,-11.676527601999837],[130.20150800899998,-11.653497002999869],[130.19467207100016,-11.631117445999847],[130.18409264400012,-11.547295830999843],[130.1941024100001,-11.533868096999853],[130.19857832100013,-11.519952080999872],[130.19849694100017,-11.506605726999865],[130.1941024100001,-11.495212497999887],[130.18572024800002,-11.48642343499992],[130.1754663420002,-11.483575127999883],[130.16293379000004,-11.485121351999837],[130.14698326900012,-11.489027601999837],[130.17058353000007,-11.44703541499993],[130.181000196,-11.43434010199988],[130.193532748,-11.424411716999884],[130.21778405000012,-11.409600518999907],[130.22828209700015,-11.399672132999811],[130.2587996750001,-11.348890882999854],[130.26978600400017,-11.338148695999847],[130.28956139400012,-11.333103122999901],[130.30860436300011,-11.33294036299985],[130.32699629000015,-11.330173434999892],[130.34498131600017,-11.317071221999825],[130.34994550900004,-11.339450778999845],[130.36011803500017,-11.366387627999899],[130.37378991,-11.393731377999885],[130.39918053500006,-11.43303801899988],[130.39861087300008,-11.444512627999828],[130.38648522200018,-11.468519789999874]]],[[[130.5065210300002,-11.277032158999887],[130.51612389400006,-11.296563408999873],[130.52572675900015,-11.289320570999848],[130.534922722,-11.280043226999894],[130.54517662900005,-11.272393487999864],[130.5584416020001,-11.269952080999829],[130.5735783210001,-11.275323174999881],[130.58716881600006,-11.28679778399983],[130.5963647800002,-11.301527601999823],[130.59880618600002,-11.317071221999825],[130.59050540500007,-11.333265882999868],[130.5620223320002,-11.361097914999931],[130.5584416020001,-11.379164320999848],[130.56617272200018,-11.394626559999878],[130.5778100920002,-11.397067966999899],[130.59001712300008,-11.392185153999847],[130.59880618600002,-11.385918877999885],[130.63892662900017,-11.34384530999992],[130.65845787900003,-11.331312757999825],[130.66830488400015,-11.344984632999866],[130.6538192070001,-11.377536716999927],[130.6577254570001,-11.384047132999825],[130.66830488400015,-11.392185153999847],[130.69166100400005,-11.422784112999864],[130.69556725400005,-11.43434010199988],[130.72364342500023,-11.384698174999869],[130.7846785820002,-11.36842213299984],[130.84546959700006,-11.36028411299982],[130.87322024800002,-11.3344052059999],[130.88803144600004,-11.313164971999825],[130.92090905000012,-11.309340101999823],[130.95386803500017,-11.316338799999883],[130.96859785200016,-11.327569268999895],[130.97510826900023,-11.336114190999822],[131.00326582100004,-11.347426039999887],[131.00977623800023,-11.354913018999866],[131.01872806100008,-11.400567315999893],[131.023285352,-11.413262627999856],[131.02947024800008,-11.399834893999866],[131.04883873800011,-11.315036716999884],[131.06177819100012,-11.305922132999811],[131.07943769600004,-11.300225518999824],[131.09913170700023,-11.29045989399988],[131.13453209700006,-11.257745049999855],[131.15308678500017,-11.249281507999811],[131.16114342500012,-11.266534112999821],[131.16293378999998,-11.28883228999986],[131.16822350400017,-11.310153903999918],[131.17660566500004,-11.32903411299985],[131.21794681100008,-11.3910458309999],[131.21924889400023,-11.399672132999811],[131.23080488399998,-11.390801690999865],[131.22868899800008,-11.37102629999984],[131.21583092500023,-11.338148695999847],[131.215098504,-11.327894789999917],[131.21656334700018,-11.306735934999907],[131.21583092500023,-11.296563408999873],[131.21241295700023,-11.296075127999885],[131.20582116000017,-11.296156507999868],[131.19890384200008,-11.295098565999908],[131.19516035200004,-11.29045989399988],[131.19581139400006,-11.284274997999901],[131.20093834700018,-11.27337004999984],[131.20533287900017,-11.246514580999857],[131.21485436300006,-11.22616952899986],[131.22999108200005,-11.208103122999844],[131.24984785200016,-11.194756768999838],[131.27442467500006,-11.189629815999822],[131.29200280000012,-11.197523695999891],[131.3024194670002,-11.215997002999913],[131.30502363400004,-11.242608330999857],[131.30079186300006,-11.246677341999913],[131.29281660200004,-11.258721612999835],[131.29021243600002,-11.271416924999883],[131.30144290500002,-11.277439059999892],[131.31519616000006,-11.272637627999899],[131.32129967500023,-11.261976820999877],[131.3248804050002,-11.250258070999877],[131.331309441,-11.242608330999857],[131.34343509200016,-11.240980726999837],[131.35181725400017,-11.24618905999992],[131.3593856130002,-11.252862237999878],[131.369395379,-11.256280205999886],[131.3820093110002,-11.253838799999853],[131.40219160200004,-11.243829033999873],[131.414317254,-11.242608330999857],[131.4277449880001,-11.249688408999916],[131.43685957099999,-11.264906507999894],[131.43978925900004,-11.284274997999901],[131.43490644600016,-11.30339934699988],[131.45582116,-11.309747002999828],[131.46045983200023,-11.330987237999892],[131.46070397200018,-11.357517184999864],[131.46989993600005,-11.382256768999838],[131.47461998800023,-11.390557549999825],[131.48015384200008,-11.395684502999826],[131.4826766290001,-11.389092705999857],[131.50318444100006,-11.379164320999848],[131.51791425900015,-11.3806291649999],[131.52784264400023,-11.386651299999826],[131.53370201900006,-11.397393487999835],[131.53736412900005,-11.413262627999856],[131.53891035200016,-11.446058851999865],[131.53663170700008,-11.463067315999837],[131.53044681100002,-11.474786065999822],[131.519379102,-11.478773695999806],[131.496755405,-11.471123955999872],[131.4826766290001,-11.474786065999822],[131.47103925899998,-11.493340752999828],[131.46094811300011,-11.526950778999847],[131.45826256600003,-11.562188408999887],[131.46900475400017,-11.585870049999826],[131.46900475400017,-11.578383070999848],[131.47396894600004,-11.600192966999899],[131.45582116,-11.608086846999866],[131.43238366000006,-11.607028903999916],[131.42058353000007,-11.601983330999886],[131.417735222,-11.596612237999835],[131.39698326900012,-11.582126559999878],[131.38656660200004,-11.577813408999873],[131.3781030610002,-11.58407968499992],[131.32593834700018,-11.681898695999806],[131.30298912900017,-11.701104424999855],[131.29314212300005,-11.724053643999838],[131.28199303500006,-11.727797132999866],[131.2687280610002,-11.727959893999838],[131.25733483200023,-11.729180596999853],[131.22877037900005,-11.744886976999823],[131.21485436300006,-11.756280205999872],[131.20899498800023,-11.766778252999854],[131.20150800900015,-11.7751604149999],[131.09896894599999,-11.828383070999806],[130.97999108200023,-11.926446221999896],[130.96119225400017,-11.933851820999875],[130.94141686300023,-11.927911065999865],[130.922129754,-11.900485934999907],[130.894867384,-11.87786223799985],[130.8600366550002,-11.859958591999884],[130.80844160200004,-11.842705987999878],[130.76042728000002,-11.814060153999904],[130.75277754000004,-11.811211846999866],[130.7351994150001,-11.807793877999856],[130.7125757170002,-11.79949309699988],[130.6906030610002,-11.788344007999854],[130.67457116,-11.777032158999873],[130.67351321700008,-11.772881768999838],[130.68197675899998,-11.767266533999845],[130.68067467500012,-11.763360283999845],[130.67546634200016,-11.760511976999808],[130.6642358730002,-11.758396091999884],[130.6603296230002,-11.756524346999823],[130.6128035820001,-11.716566664999874],[130.58228600400017,-11.69793059699988],[130.57471764400012,-11.68954843499992],[130.56373131600006,-11.672133070999848],[130.5584416020001,-11.667168877999899],[130.53785241000006,-11.661553643999895],[130.51490319100006,-11.657891533999845],[130.49659264400012,-11.649509372999887],[130.48894290500007,-11.629571221999894],[130.48585045700005,-11.562188408999887],[130.48210696700008,-11.544203382999854],[130.47852623800006,-11.540704033999873],[130.46607506600003,-11.5336239559999],[130.46168053500017,-11.529961846999852],[130.437754754,-11.49920012799987],[130.43034915500002,-11.484307549999826],[130.40772545700017,-11.374688408999887],[130.40626061300011,-11.354913018999866],[130.404144727,-11.350030205999886],[130.39958743600008,-11.346774997999844],[130.39486738400015,-11.342461846999853],[130.39275149800014,-11.3344052059999],[130.39356530000023,-11.323663018999895],[130.39584394600004,-11.314060153999916],[130.400157097,-11.305108330999886],[130.40626061300011,-11.296563408999873],[130.3803817070001,-11.269138278999902],[130.37012780000023,-11.252048434999864],[130.36597741000006,-11.232354424999825],[130.36744225400017,-11.204278252999826],[130.37281334700003,-11.183770440999865],[130.38314863400015,-11.16790129999984],[130.400157097,-11.153252862999835],[130.43637129000004,-11.202732028999874],[130.5065210300002,-11.277032158999887]]],[[[136.76246178500006,-11.01930103999993],[136.7636850770002,-11.040070497999864],[136.74715157700004,-11.093376206999878],[136.73363813000017,-11.13765191799989],[136.72008811200013,-11.174425354999897],[136.71648196700008,-11.20623137799987],[136.7081811860002,-11.209567966999899],[136.7046004570001,-11.21160247199984],[136.702403191,-11.211358330999886],[136.68002442900016,-11.22302392899982],[136.66873688700016,-11.256050233999872],[136.6391101510002,-11.286166855999852],[136.62712649800002,-11.330254815999865],[136.611867104,-11.334231445999833],[136.58994782199997,-11.377764569999854],[136.5428611900002,-11.429655410999871],[136.5352901260002,-11.443169189999878],[136.524614518,-11.446964216999902],[136.52228602300025,-11.439487724999921],[136.516149453,-11.434275713999881],[136.50928948500004,-11.437303224999908],[136.49409793200007,-11.455346281999866],[136.47801939800004,-11.447933862999845],[136.49476528200003,-11.435125554999857],[136.50005076300008,-11.422372054999867],[136.48243585000014,-11.412721096999817],[136.4976434680002,-11.398424637999895],[136.52961291300002,-11.376562547999882],[136.56055748800023,-11.354913018999866],[136.563731316,-11.34587981599985],[136.58033287900017,-11.32740650799984],[136.57887628500006,-11.303700559999854],[136.58565270000022,-11.284945863999909],[136.61670728300012,-11.23610483199981],[136.65387177200014,-11.186454964999854],[136.68802878700015,-11.177596051999883],[136.70004434000006,-11.140086541999892],[136.70986852000024,-11.120558385999814],[136.71126871000004,-11.096581462999879],[136.72291100400017,-11.086358330999914],[136.73103541300023,-11.079236089999924],[136.73477589399997,-11.064228440999855],[136.71866713500006,-11.050836081999861],[136.73861738400012,-11.029717705999829],[136.74244225400017,-11.032810153999902],[136.74561608200023,-11.034356377999854],[136.74887129000015,-11.035414320999804],[136.7522892590001,-11.037204684999892],[136.7560327480002,-11.026788018999895],[136.76246178500006,-11.01930103999993]]],[[[132.58627363399998,-11.039239190999822],[132.59929446700008,-11.063897393999824],[132.59302819100006,-11.063897393999824],[132.59945722700004,-11.073011976999808],[132.60621178500017,-11.085544528999904],[132.61133873800011,-11.098402601999837],[132.61353600400017,-11.108819268999824],[132.61060631600017,-11.122735283999887],[132.60368899800008,-11.12460702899986],[132.59449303500017,-11.12460702899986],[132.585703972,-11.132745049999883],[132.58204186300006,-11.153415622999887],[132.59693444100006,-11.158786716999856],[132.61841881600006,-11.161553643999824],[132.63404381600006,-11.173760674999881],[132.612559441,-11.185723565999822],[132.612559441,-11.198988539999943],[132.62142988400015,-11.217705987999821],[132.62720787900005,-11.246026299999869],[132.62183678500017,-11.272067966999842],[132.60075931100002,-11.31568775799984],[132.59929446700008,-11.344984632999866],[132.56519616000017,-11.310804945999877],[132.56088300900015,-11.276788018999852],[132.5499780610002,-11.246270440999908],[132.53451582100016,-11.218926690999837],[132.49301191500007,-11.166924737999864],[132.4894311860002,-11.160088799999855],[132.4938257170002,-11.150648695999834],[132.50196373800011,-11.1469052059999],[132.510996941,-11.14462655999992],[132.51734459700006,-11.139580987999892],[132.51791425900004,-11.127211195999863],[132.51148522200012,-11.086846612999892],[132.507090691,-11.078220309999892],[132.49537194100006,-11.073907158999887],[132.48707116000006,-11.063571872999887],[132.48023522200006,-11.051039320999891],[132.47266686300006,-11.040215752999885],[132.46810957100004,-11.029961846999868],[132.48243248800023,-11.032159112999864],[132.5011499360002,-11.03997161299985],[132.51050866000006,-11.047051690999822],[132.51807701900006,-11.04078541499986],[132.53467858200023,-11.037774346999853],[132.55128014400012,-11.032403252999899],[132.55892988400004,-11.01978932099982],[132.56055748800023,-11.000176690999865],[132.56666100400003,-10.982110283999845],[132.578868035,-10.970147393999907],[132.59929446700008,-10.968357028999918],[132.59546959700018,-10.981622002999856],[132.582286004,-10.999688408999873],[132.57935631600014,-11.012627862999878],[132.58139082100004,-11.025648695999863],[132.58627363399998,-11.039239190999822]]],[[[142.54957116000006,-10.70818450299984],[142.56373131600017,-10.717054945999875],[142.60084069100017,-10.734958591999842],[142.615000847,-10.745375257999825],[142.6158960300002,-10.7523739559999],[142.61182701900023,-10.76238372199988],[142.60621178500006,-10.772393487999878],[142.60108483200023,-10.77955494599982],[142.59302819100017,-10.786309502999854],[142.57715905000018,-10.792087497999916],[142.57007897200012,-10.796970309999876],[142.5639754570001,-10.8064104149999],[142.55518639400023,-10.829034112999864],[142.54957116000006,-10.837985934999892],[142.54184004000004,-10.84156666499986],[142.5214949880002,-10.846937757999825],[142.51539147200006,-10.85165780999992],[142.51026451900023,-10.87656015399986],[142.5138452480002,-10.900160414999903],[142.5148218110002,-10.923516533999901],[142.501719597,-10.94784921699987],[142.52271569100017,-10.941582940999822],[142.54004967500023,-10.925469658999845],[142.55201256600014,-10.904229424999867],[142.55640709700018,-10.882256768999852],[142.56714928500017,-10.870212497999844],[142.59083092500012,-10.864922783999859],[142.614512566,-10.868259372999887],[142.62525475400003,-10.882256768999852],[142.6344507170002,-10.930840752999899],[142.64039147200006,-10.93189869599986],[142.64918053500008,-10.929457289999915],[142.65943444099997,-10.933526299999883],[142.6682235040001,-10.951267184999878],[142.65951582099999,-10.983493747999916],[142.66627037900005,-11.003106377999885],[142.67839603000002,-10.982191664999917],[142.700938347,-10.970147393999907],[142.72510826900012,-10.967705987999878],[142.741953972,-10.975030205999872],[142.74626712300002,-10.985772393999895],[142.75228925900004,-11.015313408999859],[142.7589624360002,-11.02662525799984],[142.7695418630002,-11.038995049999867],[142.77808678500017,-11.053643487999878],[142.78980553500003,-11.08489348799985],[142.795176629,-11.112888278999874],[142.79664147200018,-11.143243096999853],[142.80681399800017,-11.167575778999916],[142.81006920700005,-11.171156507999882],[142.80616295700005,-11.179457289999872],[142.79664147200018,-11.194756768999838],[142.79371178500006,-11.217543226999851],[142.79420006600006,-11.248304945999832],[142.80128014400012,-11.277764580999829],[142.817637566,-11.296563408999873],[142.82960045700023,-11.29461028399983],[142.840586785,-11.308038018999824],[142.84864342500023,-11.326918226999851],[142.85181725399997,-11.34156666499986],[142.85499108200005,-11.351169528999918],[142.86915123800011,-11.372002862999821],[142.87224368600008,-11.382500908999873],[142.86963951900003,-11.391289971999853],[142.8635360040001,-11.399997653999918],[142.85181725399997,-11.413262627999856],[142.8300887380002,-11.452243747999844],[142.821055535,-11.477634372999859],[142.8276473320001,-11.489027601999837],[142.83961022199998,-11.498630466999899],[142.84083092500023,-11.520684502999899],[142.8375757170002,-11.564711195999818],[142.84180748800011,-11.574476820999847],[142.85417728000007,-11.594008070999834],[142.85792076900006,-11.605075778999876],[142.86548912900005,-11.736016533999873],[142.85792076900006,-11.821709893999838],[142.86231530000003,-11.836846612999835],[142.87289472700004,-11.85068124799993],[142.92750084700018,-11.89373137799987],[142.94019616000006,-11.892754815999893],[142.97429446700008,-11.92522551899988],[142.99219811300011,-11.934014580999843],[143.020681186,-11.931573174999912],[143.0402124360002,-11.925062757999825],[143.07715905000023,-11.90683359199984],[143.1041772800002,-11.902113539999917],[143.12338300900015,-11.910577080999872],[143.17530358200023,-11.962334893999893],[143.18384850400017,-11.96355559699991],[143.20053144599999,-11.962009372999873],[143.22803795700023,-11.954847914999915],[143.23951256600017,-11.956312757999882],[143.24903405000006,-11.968194268999838],[143.2391056650001,-11.978122653999847],[143.22722415500002,-11.982110283999916],[143.20394941500004,-11.98251718499992],[143.10580488400004,-12.13543059699984],[143.10132897200006,-12.140232028999918],[143.09099368600008,-12.142673434999864],[143.08627363400015,-12.149021091999884],[143.083832227,-12.167413018999838],[143.08521569100017,-12.170586846999894],[143.09066816500004,-12.198174737999821],[143.09034264400012,-12.21038176899988],[143.08887780000023,-12.219984632999868],[143.08480878999998,-12.228204033999859],[143.07715905000023,-12.236260674999897],[143.0817163420002,-12.239841403999874],[143.08627363400015,-12.246351820999863],[143.09066816500004,-12.25009530999989],[143.08253014400012,-12.268161716999913],[143.07846113400015,-12.287041924999855],[143.07715905000023,-12.32878997199988],[143.08497155000023,-12.336846612999821],[143.103363477,-12.342380466999842],[143.1391707690001,-12.346123955999872],[143.17603600400017,-12.339288018999852],[143.185394727,-12.342543226999808],[143.20508873800023,-12.356622002999842],[143.21119225400005,-12.35995859199987],[143.25294030000006,-12.388929945999863],[143.25635826900006,-12.39275481599988],[143.26205488400015,-12.400811455999829],[143.27173912900005,-12.417901299999869],[143.27588951900017,-12.433038018999866],[143.2783309250001,-12.495049737999821],[143.2843530610002,-12.516045830999857],[143.29493248800023,-12.534844658999901],[143.31039472700016,-12.550957940999865],[143.32349694100006,-12.557793877999885],[143.36207116,-12.56951262799987],[143.37623131600006,-12.571465752999828],[143.39112389400012,-12.576592705999843],[143.40723717500018,-12.588311455999914],[143.43392988399998,-12.613051039999903],[143.43392988399998,-12.619317315999936],[143.41114342500023,-12.647719007999882],[143.40219160200004,-12.66619231599999],[143.41000410200004,-12.674493096999882],[143.41187584700018,-12.682549737999906],[143.37940514400012,-12.732842705999971],[143.37769616,-12.750664971999939],[143.36508222700004,-12.804864190999908],[143.36426842500012,-12.861748955999943],[143.3588973320002,-12.880547783999987],[143.37940514400012,-12.852715752999842],[143.38819420700005,-12.85955169099995],[143.40040123800023,-12.865817966999984],[143.41325931100008,-12.868096612999878],[143.42367597700013,-12.8632138],[143.43832441500012,-12.851332290000029],[143.44841556100002,-12.851332290000029],[143.45801842500012,-12.856377862999892],[143.47193444100017,-12.85955169099995],[143.49724368600002,-12.856540622999859],[143.51172936300006,-12.849216403999932],[143.52442467500023,-12.840427341999884],[143.54379316500015,-12.832777601999936],[143.49545332100016,-12.921563408999901],[143.51148522200006,-12.954359632999825],[143.51246178499997,-12.99700286299985],[143.50294030000012,-13.075127862999949],[143.527598504,-13.19841887799984],[143.52662194100003,-13.329766533999845],[143.52995853000007,-13.341973565999908],[143.53353925900004,-13.349541924999954],[143.57056725400017,-13.37712981599988],[143.57300865999997,-13.388278903999975],[143.5854598320001,-13.405205987999878],[143.59107506599997,-13.415134372999972],[143.59441165500007,-13.427178643999893],[143.59457441500004,-13.435804945999976],[143.5817163420002,-13.498711846999923],[143.58326256600006,-13.516778252999941],[143.59791100400005,-13.524183851999851],[143.59115644599999,-13.543552341999956],[143.56446373800006,-13.599379165000016],[143.55567467500012,-13.632907809999963],[143.54761803500017,-13.691989842],[143.53345787900005,-13.731540622999859],[143.53012129000004,-13.75017669099985],[143.53443444100006,-13.76572031000002],[143.55323326900003,-13.802992445999918],[143.55762780000023,-13.822198174999969],[143.56226647200018,-13.832126559999878],[143.59449303500003,-13.877129815999865],[143.59831790500007,-13.885023695999934],[143.59791100400005,-13.915215752999856],[143.6010848320001,-13.926527601999837],[143.60564212300002,-13.936944268999909],[143.61133873800023,-13.946872653999918],[143.61841881600017,-13.956231377999941],[143.6783960300001,-14.003594658999987],[143.68726647200006,-14.01433684699991],[143.69564863400004,-14.075290622999901],[143.69410241000017,-14.09286874799993],[143.70443769599999,-14.114353122999958],[143.707774285,-14.209567966999927],[143.74870853000002,-14.339939059999862],[143.78272545700005,-14.40227629999984],[143.80494225400003,-14.431573174999853],[143.831309441,-14.45647551899998],[143.84620201900006,-14.467217705999898],[143.85971113400015,-14.47486744599992],[143.87427819100017,-14.480238539999887],[143.8927514980002,-14.483819268999866],[143.926036004,-14.486504815999936],[143.9350692070001,-14.493259372999958],[143.94117272200012,-14.511163018999838],[143.95199628999998,-14.498955987999864],[143.96290123800006,-14.494561455999957],[143.98894290500007,-14.490655205999971],[144.030528191,-14.467054945999848],[144.06723066500004,-14.452569268999893],[144.11345462300002,-14.405205987999949],[144.1291610040001,-14.394463799999924],[144.14633222700004,-14.38811614399991],[144.16163170700005,-14.373142184999876],[144.17335045700005,-14.35507577899986],[144.18002363400004,-14.339939059999862],[144.1827905610002,-14.314060153999932],[144.1818953790001,-14.286065362999835],[144.1853947270001,-14.262627862999935],[144.20118248800023,-14.250420830999957],[144.20443769600016,-14.256442966999884],[144.21143639400023,-14.26523202899993],[144.21485436300017,-14.270928643999838],[144.21973717500023,-14.266208592],[144.222911004,-14.264255466999956],[144.22559655000006,-14.262139580999957],[144.22852623800011,-14.257256768999895],[144.2353621750001,-14.257256768999895],[144.25098717500012,-14.291680596999925],[144.25586998800006,-14.298923434999933],[144.26807701900023,-14.303643487999864],[144.28028405000012,-14.302911065999837],[144.29216556100005,-14.303480726999894],[144.30355879000004,-14.312595309999978],[144.44027753999998,-14.25025807099982],[144.44825280000023,-14.243584893999952],[144.467051629,-14.196547132999939],[144.4721785820001,-14.189060153999874],[144.4752710300002,-14.186130466999856],[144.4760848320001,-14.179131768999964],[144.47559655000012,-14.164808851999979],[144.47885175900012,-14.159926039999917],[144.48633873800023,-14.161879164999958],[144.49976647199998,-14.168552342],[144.514903191,-14.17278411299985],[144.52247155000003,-14.181817315999936],[144.52735436300023,-14.191013278999918],[144.53386478000002,-14.1952450499999],[144.54371178500006,-14.204278252999856],[144.58472741000017,-14.264825127999925],[144.57650800900015,-14.281182549999938],[144.57276451900023,-14.302911065999837],[144.57178795700017,-14.34319426899999],[144.58041425900015,-14.364190362999848],[144.60010826900012,-14.365411065999865],[144.6209416020001,-14.354668877999856],[144.63314863400015,-14.339939059999862],[144.63746178500017,-14.356215101999894],[144.6334741550002,-14.37664153399996],[144.62525475400017,-14.393975518999936],[144.616465691,-14.401299737999864],[144.61247806100002,-14.413018487999848],[144.61597741000006,-14.467705987999892],[144.61947675900004,-14.483819268999866],[144.62598717500012,-14.491143487999949],[144.65357506600006,-14.511163018999838],[144.65984134200008,-14.521254164999988],[144.6705835300002,-14.546807549999883],[144.67758222700016,-14.555840752999984],[144.69752037900017,-14.56194426899988],[144.7397567070001,-14.552178643999936],[144.75660241000017,-14.552829684999892],[144.77100670700017,-14.566094658999916],[144.78207441499998,-14.58424244599992],[144.79672285199996,-14.600355726999894],[144.82154381600006,-14.607354424999954],[144.88599694100006,-14.60963307099985],[144.90072675900004,-14.614190362999892],[144.90845787900003,-14.622165622999928],[144.9104110040001,-14.629815362999876],[144.91098066500015,-14.638278904],[144.91431725400008,-14.647637627999856],[144.92009524800005,-14.656019789999988],[144.93799889400012,-14.671563409],[144.93685957100016,-14.676202080999841],[144.94174238400015,-14.726332289999931],[144.9441024100001,-14.733330987999906],[144.955332879,-14.743910414999874],[145.01384524800008,-14.784112237999949],[145.03052819100012,-14.805922132999825],[145.05502363400004,-14.792657158999887],[145.07732181100005,-14.801446221999937],[145.0991317070001,-14.817803643999952],[145.12289472700004,-14.826429945999877],[145.13607832100016,-14.828383070999918],[145.15479576900023,-14.837497653999987],[145.16822350400005,-14.840101820999818],[145.18246504,-14.838962497999873],[145.20785566500015,-14.832614841999927],[145.2228296230002,-14.83269622199991],[145.21168053500014,-14.859551690999906],[145.21998131600006,-14.880954684999947],[145.27711022200006,-14.947035414999943],[145.29346764400023,-14.94988372199998],[145.3134871750001,-14.944024346999955],[145.3457137380002,-14.942559502999897],[145.33228600400017,-14.970472914999931],[145.2573348320001,-15.07561614399999],[145.247325066,-15.09498463299991],[145.23585045700005,-15.165948174999897],[145.23902428500006,-15.182549737999862],[145.25318444100017,-15.212090753],[145.2599389980002,-15.239678643999921],[145.26880944100006,-15.249444268999879],[145.281016472,-15.255629165000029],[145.29420006600017,-15.25790781],[145.3100692070001,-15.254489842],[145.31771894600004,-15.245212497999857],[145.32455488400015,-15.216241143999865],[145.3419702480001,-15.229668877999856],[145.349457227,-15.250420830999856],[145.3437606130001,-15.2694638],[145.30258222700004,-15.284600518999937],[145.2858992850001,-15.300469658999873],[145.281016472,-15.319024346999965],[145.29786217500012,-15.332940362999949],[145.28825931100008,-15.343194268999879],[145.28663170700023,-15.353204033999956],[145.28711998800011,-15.363376559999905],[145.28370201900012,-15.373955987999864],[145.27865644600013,-15.377536716999925],[145.26205488400004,-15.384942315999908],[145.25635826900023,-15.38884856599999],[145.24805748800023,-15.406019790000014],[145.24390709699998,-15.428399346999866],[145.24586022200006,-15.442640882999868],[145.25635826900023,-15.435967706],[145.26441491000017,-15.435967706],[145.27784264400017,-15.475355726999894],[145.27979576900012,-15.495863539999945],[145.2672632170002,-15.504978123000015],[145.26392662900017,-15.509047132999896],[145.26490319100006,-15.51848723799999],[145.26840254000015,-15.527927341999927],[145.27344811300006,-15.532159112999933],[145.27377363400004,-15.535739842],[145.30990644600004,-15.562595309999907],[145.3139754570001,-15.567966403999945],[145.32146243600008,-15.590101820999848],[145.32276451900017,-15.599786065999979],[145.32113691500015,-15.609144789999933],[145.30738366000006,-15.62859465899993],[145.30933678500017,-15.63396575299997],[145.31519616,-15.638116143999838],[145.3537703790001,-15.722426039999917],[145.3628035820001,-15.734551690999908],[145.36638431100008,-15.749281507999981],[145.35938561300011,-15.796563408999944],[145.35938561300011,-15.812676690999837],[145.36508222700016,-15.822523695999948],[145.37012780000012,-15.827325127999927],[145.37322024800017,-15.831719659],[145.37305748800023,-15.840590101999965],[145.36850019600007,-15.852146091999897],[145.35531660200004,-15.87224700299994],[145.35254967500003,-15.88486093499992],[145.35580488400004,-15.90341562299993],[145.364024285,-15.91619231599988],[145.38672936300017,-15.936211846999939],[145.43018639400012,-15.99163176899999],[145.45053144599999,-16.027113539999903],[145.46241295700023,-16.060479424999883],[145.46241295700023,-16.09872812299993],[145.44027754000015,-16.16545989399998],[145.43441816500004,-16.200616143999937],[145.437836134,-16.201918226999936],[145.45899498800023,-16.21404387799994],[145.46225019599996,-16.220310153999975],[145.46859785200004,-16.244805596999925],[145.46859785200004,-16.260674737999945],[145.46241295700023,-16.273207289999945],[145.43100019600004,-16.302992445999863],[145.41456139400012,-16.33440520599997],[145.41431725400017,-16.408868096999953],[145.40040123800011,-16.443291924999983],[145.40398196700008,-16.455010674999883],[145.40902753999995,-16.46542734199987],[145.41675866,-16.47332122199994],[145.427582227,-16.478122654000018],[145.44809004000012,-16.470391533999916],[145.46338951900012,-16.481215101999823],[145.47282962300002,-16.501560153999904],[145.47608483200005,-16.5219052059999],[145.48145592500023,-16.531914971999882],[145.5171004570001,-16.56698984199987],[145.53060957100016,-16.601006768999895],[145.5490014980002,-16.620863539999988],[145.55176842500018,-16.625583591999984],[145.55583743600002,-16.640069268999937],[145.56609134200008,-16.65650807099993],[145.5791121750002,-16.671970309999963],[145.62623131600006,-16.712090752999885],[145.63770592500006,-16.718519789999988],[145.6614689460001,-16.72795989399991],[145.671234571,-16.73479583099993],[145.67595462300002,-16.743340752999856],[145.68002363399995,-16.765720309999878],[145.68531334700018,-16.776055596999882],[145.69467207099999,-16.78443775799994],[145.71355228000002,-16.79363372199991],[145.72250410200016,-16.80022551899998],[145.743418816,-16.848321221999953],[145.758555535,-16.85898202899989],[145.7742619150001,-16.877211195999877],[145.77767988399998,-16.88534921699997],[145.773692254,-16.898370049999965],[145.7643335300002,-16.902032158999916],[145.75294030000012,-16.903497002999966],[145.74366295700017,-16.90943775799982],[145.7404891290001,-16.92205169099989],[145.74756920700017,-16.93254973799995],[145.7594507170002,-16.943454684999935],[145.77084394600016,-16.95728932099985],[145.77247155000012,-16.9647763],[145.77076256600017,-16.981377862999945],[145.7742619150001,-16.98837656000002],[145.78345787900005,-16.991631768999895],[145.79297936300023,-16.9894345029999],[145.7983504570001,-16.983168226999933],[145.78858483200005,-16.962090752999924],[145.78589928500017,-16.945000908999887],[145.78760826900012,-16.929782809999907],[145.79476972700004,-16.923109632999854],[145.80298912900005,-16.91806406],[145.83090254000015,-16.892185153999904],[145.83912194100017,-16.881524346999967],[145.85694420700023,-16.892836195999863],[145.86768639400023,-16.90455494599985],[145.88038170700023,-16.905857029000018],[145.90406334700006,-16.88534921699997],[145.9116317070001,-16.876397393999866],[145.91732832100016,-16.87118905999995],[145.92481530000023,-16.86858489399995],[145.93824303500003,-16.867852471999925],[145.95508873800023,-16.87314218499999],[145.95728600400005,-16.884698174999926],[145.95248457100004,-16.896661065999965],[145.94898522200003,-16.902601820999976],[145.94727623800023,-16.90252044099999],[145.93734785200002,-16.912367445999934],[145.93482506599997,-16.91570403399996],[145.933929884,-16.920993748000015],[145.94166100400005,-16.92489999799993],[145.94166100400005,-16.929945570999962],[145.931407097,-16.950290622999944],[145.92432701900023,-16.9600562479999],[145.91773522200018,-16.964125257999953],[145.9098413420002,-16.971612237999835],[145.89161217500012,-17.007012627999842],[145.8869735040001,-17.01930103999989],[145.88233483200005,-17.039727471999868],[145.88184655000006,-17.059665622999944],[145.88803144600016,-17.07480234199994],[145.90406334700006,-17.080824476999936],[145.91179446700008,-17.088962497999873],[145.95248457100004,-17.16228606599998],[145.9591577480002,-17.183038018999895],[145.96257571700016,-17.20501067499991],[145.96338951900012,-17.22820403399993],[145.96843509200002,-17.24236419099995],[146.00367272200018,-17.293715101999965],[146.0299585300002,-17.35654062299993],[146.04127037900017,-17.372247003],[146.0597436860002,-17.38616301899998],[146.07105553500008,-17.392022393999838],[146.0752059250002,-17.40252044099999],[146.07243899800008,-17.44589609199987],[146.0753686860002,-17.50530364399999],[146.06836998800011,-17.515883070999962],[146.08008873800011,-17.53932057099985],[146.10670006600006,-17.57431406000002],[146.1350203790001,-17.600274346999925],[146.14429772200006,-17.613946221999967],[146.14771569100006,-17.632582289999945],[146.14242597700016,-17.64739348799992],[146.11646569100017,-17.668715101999975],[146.10670006600006,-17.68417734199999],[146.10271243600008,-17.705987237999878],[146.10670006600006,-17.769463799999883],[146.10132897200018,-17.77304452899986],[146.09066816500015,-17.783868096999853],[146.08399498800011,-17.79550546699994],[146.08936608200017,-17.80087656],[146.09620201900006,-17.805352471999882],[146.09620201900006,-17.815687757999967],[146.09359785200016,-17.82708098799993],[146.093028191,-17.83489348799985],[146.10743248800006,-17.853692315999893],[146.11353600400017,-17.864353123],[146.10474694100012,-17.87656015399999],[146.09937584700006,-17.90943775799998],[146.09644616,-17.916924737999864],[146.09791100400017,-17.931329034],[146.06983483200005,-17.99871184699984],[146.02149498800017,-18.085870049999855],[146.01514733200023,-18.116631768999838],[146.00586998800003,-18.142022393999866],[146.00367272200018,-18.156426690999837],[146.00424238400015,-18.17197030999992],[146.00619550900004,-18.185967705999886],[146.01050866,-18.198988539999874],[146.017344597,-18.21168385199985],[146.010101759,-18.23650481599998],[146.02377363400015,-18.263116143999838],[146.1009220710001,-18.349541924999926],[146.11963951900023,-18.36191171699987],[146.13217207100016,-18.364434502999885],[146.16358483200005,-18.365817966999956],[146.17505944100006,-18.369317315999865],[146.1834416020001,-18.380140882999854],[146.18685957099999,-18.394219658999898],[146.18921959700006,-18.424004815999908],[146.2137150400001,-18.49212004999984],[146.20915774800002,-18.513360283999916],[146.22925866000014,-18.50709400799988],[146.25098717500023,-18.511163018999923],[146.26823978000007,-18.518731377999885],[146.27466881600017,-18.52361419099985],[146.28882897200018,-18.515801690999865],[146.30404707100016,-18.517185153999847],[146.3393660820001,-18.52703215899986],[146.33741295700023,-18.572849216999856],[146.3310653000001,-18.612562757999953],[146.32048587300008,-18.647149346999864],[146.29200280000023,-18.71062590899996],[146.27808678500017,-18.828708591999856],[146.27613366000006,-18.835381768999895],[146.273122592,-18.842705987999903],[146.27076256600017,-18.851657809999935],[146.27125084700018,-18.862888278999932],[146.276621941,-18.87428150799981],[146.29460696700005,-18.89690520599987],[146.29851321700008,-18.907159112999892],[146.30176842500012,-18.91236744599989],[146.31568444100017,-18.922784112999878],[146.32105553500006,-18.931898695999863],[146.333262566,-18.959079684999878],[146.41089928500006,-19.010186455999854],[146.42579186300011,-19.027276299999897],[146.44654381600012,-19.059747002999885],[146.46225019600016,-19.074965101999865],[146.47925866000006,-19.083591403999947],[146.51856530000023,-19.095472914999903],[146.5346785820001,-19.10572682099985],[146.55567467500023,-19.128106377999856],[146.56169681100008,-19.139255466999884],[146.56902103000007,-19.140801690999822],[146.57813561300023,-19.140883070999806],[146.5865991550002,-19.142754815999865],[146.65479576900012,-19.182549737999864],[146.69304446700008,-19.192966403999847],[146.746348504,-19.17278411299982],[146.76075280000006,-19.182549737999864],[146.77833092500012,-19.212172132999896],[146.80445397200018,-19.237399997999873],[146.81918379000015,-19.248142184999963],[146.82943769599996,-19.252618096999853],[146.85035241000006,-19.264743747999844],[146.8750106130002,-19.288344007999882],[146.90512129000015,-19.30462004999991],[146.942149285,-19.294122002999927],[146.9572046230002,-19.296807549999823],[146.97820071700005,-19.28386809699991],[147.01042728000016,-19.252618096999853],[147.01929772200006,-19.236748955999914],[147.02312259200008,-19.217950127999867],[147.02230879000012,-19.197686455999943],[147.01783287900017,-19.177422783999845],[147.02409915500002,-19.177422783999845],[147.0288192070002,-19.19231536299989],[147.04786217500023,-19.211032809999864],[147.05201256600014,-19.22909921699997],[147.05396569100006,-19.23398202899986],[147.06299889400023,-19.24212004999987],[147.06511478000007,-19.246351820999806],[147.0639754570001,-19.251234632999868],[147.05933678500014,-19.258884372999887],[147.05201256600014,-19.29045989399988],[147.05201256600014,-19.300957940999865],[147.05860436300023,-19.31609465899986],[147.08122806100013,-19.342705987999977],[147.08619225400017,-19.35247161299983],[147.1339624360002,-19.41082122199984],[147.14665774800008,-19.398614190999865],[147.167246941,-19.399997653999932],[147.22250410200004,-19.413018487999835],[147.2446395190001,-19.422458591999927],[147.25440514400023,-19.424493096999953],[147.2627059250001,-19.42278411299995],[147.28598066500004,-19.41082122199984],[147.42139733200008,-19.412774346999882],[147.4498804050002,-19.396579685],[147.45045006600017,-19.37867603999987],[147.441661004,-19.358819268999948],[147.4292098320001,-19.342543226999922],[147.40626061300011,-19.32781340899993],[147.39877363400004,-19.312758070999834],[147.40235436300011,-19.303887627999885],[147.422618035,-19.314629815999893],[147.44483483200005,-19.34156666499994],[147.49146569100017,-19.45183684699984],[147.55046634200014,-19.52092864399995],[147.55909264400023,-19.537530205999914],[147.56153405000023,-19.562107029],[147.56853274800002,-19.588474217],[147.57927493600008,-19.61394622199984],[147.5932723320001,-19.63616301899998],[147.58920332100016,-19.662530205999882],[147.59913170700017,-19.68670012799998],[147.59913170700017,-19.70289479000003],[147.56527753999998,-19.705173435],[147.580332879,-19.712090752999913],[147.592051629,-19.72210051899998],[147.61378014400006,-19.753513279000018],[147.68425540500007,-19.828057549999883],[147.71941165500002,-19.833103123],[147.78500410200016,-19.835381768999966],[147.76010175900004,-19.776788018999852],[147.75424238400015,-19.767185153999957],[147.75521894600004,-19.756768487999878],[147.75082441500015,-19.691501559999963],[147.82390384200002,-19.71428801899991],[147.84595787900005,-19.734795830999957],[147.85922285200016,-19.82488372199991],[147.87427819100017,-19.854424737999878],[147.8979598320001,-19.87623463299984],[147.929047071,-19.897556247999987],[147.94947350400017,-19.907810153999918],[147.96908613400015,-19.91155364399995],[148.01490319100006,-19.91122812299993],[148.01807701900012,-19.90691497199984],[148.01970462300002,-19.897556247999987],[148.02214603000007,-19.88811614399988],[148.02857506600017,-19.88388437299994],[148.03467858200005,-19.88486093500002],[148.04395592500012,-19.889092705999854],[148.04916425900004,-19.890069268999838],[148.05551191500012,-19.887872002999842],[148.07243899800014,-19.877048434999935],[148.08375084699998,-19.884535414999988],[148.11451256600017,-19.916436455999914],[148.120860222,-19.92831796699997],[148.13038170700008,-19.936211846999853],[148.196543816,-19.945245049999954],[148.25391686300023,-19.963474216999927],[148.27857506599997,-19.965752862999988],[148.27198326900023,-19.985935154000018],[148.27930748800023,-20.0025367169999],[148.30640709700018,-20.033949476999837],[148.28500410200004,-20.03899504999987],[148.26490319100017,-20.04762135199995],[148.275238477,-20.05584075299987],[148.27881920700005,-20.065362237999864],[148.275238477,-20.074965101999936],[148.26490319100017,-20.08310312299986],[148.29004967500018,-20.093194268999905],[148.30152428499997,-20.09937916499989],[148.32748457099996,-20.132582289999903],[148.33033287900003,-20.137627862999935],[148.33773847700004,-20.14128997199998],[148.37476647200006,-20.164971612999906],[148.40211022200006,-20.173923434999935],[148.4087020190001,-20.182224216999913],[148.40202884200008,-20.19850025799985],[148.41627037900017,-20.202243747999884],[148.43580162900005,-20.199965101999823],[148.45378665500007,-20.193942966999984],[148.4640405610002,-20.18547942499987],[148.46558678500006,-20.17408619599989],[148.45557701900023,-20.171563408999887],[148.43946373800011,-20.170668226999894],[148.42253665500016,-20.164971612999906],[148.4334416020001,-20.15325286299992],[148.44605553500017,-20.15016041499993],[148.45899498800006,-20.149509372999887],[148.47022545700005,-20.143812757999896],[148.47641035200004,-20.132012627999842],[148.47339928500006,-20.121026299999883],[148.46461022200018,-20.11296965899993],[148.45346113400015,-20.109795830999968],[148.44385826900006,-20.104180596999882],[148.43751061300023,-20.090752862999974],[148.43702233200023,-20.074965101999936],[148.44418378999998,-20.061944268999937],[148.45915774800002,-20.056817315999936],[148.47022545700005,-20.065118097],[148.48113040500004,-20.077080987999935],[148.49512780000012,-20.08310312299986],[148.52165774800008,-20.083184502999842],[148.53028405000018,-20.078220309999978],[148.54281660200016,-20.065362237999864],[148.56006920700005,-20.052666924999897],[148.56666100400005,-20.05999114399999],[148.56820722699996,-20.11541106599988],[148.57520592500006,-20.147230726999823],[148.58985436300006,-20.172539971999953],[148.61426842500023,-20.17864348799985],[148.6066186860002,-20.191501559999963],[148.60450280000012,-20.20501067499994],[148.61085045700023,-20.21363697699985],[148.62794030000018,-20.211602472],[148.63868248800006,-20.203057549999894],[148.64161217500012,-20.191827080999985],[148.64275149800002,-20.17888762799997],[148.64844811300023,-20.164971612999906],[148.65739993600008,-20.17245859199997],[148.66098066500004,-20.180759372999855],[148.66032962300008,-20.18954843499992],[148.65528405000023,-20.19850025799985],[148.6753035820001,-20.190199476999965],[148.6831160820001,-20.18547942499987],[148.6831160820001,-20.197686455999843],[148.67937259200008,-20.208672783999987],[148.67212975400005,-20.21819426899989],[148.6627710300002,-20.226495049999954],[148.6831160820001,-20.237074476999922],[148.68930097700016,-20.239434502999966],[148.68531334700018,-20.24537525799998],[148.68287194100006,-20.253676039999974],[148.68213951900023,-20.263441664999917],[148.6831160820001,-20.274183851999922],[148.72169030000006,-20.257256768999937],[148.74073326900017,-20.25115325299987],[148.7583113940001,-20.253106377999913],[148.7566837900001,-20.229668877999842],[148.78199303499997,-20.24081796699994],[148.80388431100008,-20.266696872999873],[148.79232832100004,-20.28728606599999],[148.79737389400023,-20.294854424999855],[148.81072024800008,-20.30722421699997],[148.8134871750002,-20.31178150799984],[148.8167423840001,-20.321465752999984],[148.82447350400017,-20.32431406000002],[148.83326256600006,-20.324965101999965],[148.84017988400015,-20.32887135199988],[148.849375847,-20.348728122999887],[148.84766686300011,-20.362725518999852],[148.84213300900004,-20.37525807099985],[148.84017988400015,-20.390883070999834],[148.85084069100017,-20.421075127999927],[148.87110436300011,-20.43987395599997],[148.9233504570001,-20.472832940999865],[148.89812259200002,-20.477308851999837],[148.90528405000006,-20.494398695999877],[148.92481530000018,-20.516208592000012],[148.93702233200023,-20.534926039999974],[148.92823326900006,-20.530938408999916],[148.91968834700006,-20.529554945999934],[148.91130618600016,-20.530938408999916],[148.90219160199996,-20.534926039999974],[148.89600670700023,-20.52434661299985],[148.88599694100006,-20.519952080999943],[148.87574303500006,-20.521416925],[148.86817467500006,-20.52809010199988],[148.86019941500004,-20.51376718499989],[148.85132897200018,-20.503187757999925],[148.84058678500017,-20.49635182099992],[148.82715905000018,-20.493340752999913],[148.83253014400012,-20.482191664999988],[148.83448326900006,-20.469333591999952],[148.83277428500017,-20.456312757999967],[148.82715905000018,-20.445570570999873],[148.82252037900005,-20.44150156],[148.80827884200002,-20.433363539999988],[148.80258222700016,-20.43181731599995],[148.79297936300006,-20.433851820999976],[148.7907007170002,-20.43824635199995],[148.79232832100004,-20.445570570999873],[148.78541100400005,-20.455254815999837],[148.78158613400004,-20.464532158999887],[148.77466881599997,-20.470961195999976],[148.7583113940001,-20.472832940999865],[148.74317467500012,-20.469496351999922],[148.7379663420002,-20.462985934999935],[148.73414147200018,-20.45452239399998],[148.7241317070001,-20.445570570999873],[148.70101972700016,-20.439222915000016],[148.7038680350001,-20.45533619599982],[148.71705162900005,-20.48040129999991],[148.7241317070001,-20.500746351999894],[148.71607506600017,-20.52206796699987],[148.698578321,-20.543226820999877],[148.67693118600002,-20.55689869599982],[148.65528405000023,-20.55543385199985],[148.66016686300011,-20.57219817499987],[148.66871178500006,-20.586195570999834],[148.68930097700016,-20.61003997199991],[148.69117272200006,-20.614190362999935],[148.69418379000015,-20.62656015399989],[148.69613691499998,-20.63054778399996],[148.70264733200005,-20.63355885199995],[148.71615644600013,-20.6327450499999],[148.72071373800011,-20.633965752999952],[148.72828209700006,-20.646416924999983],[148.725759311,-20.656670830999914],[148.70980879000004,-20.67888762799997],[148.725759311,-20.685479424999855],[148.7397567070001,-20.718926690999904],[148.76172936300011,-20.72673919099999],[148.76726321700002,-20.731540622999972],[148.78239993600002,-20.755303643999895],[148.78549238400004,-20.764255467],[148.79029381600012,-20.768975518999838],[148.80079186300006,-20.766778252999842],[148.812266472,-20.762302341999952],[148.81967207099999,-20.760186455999957],[148.83204186300023,-20.763929945999976],[148.83904056100013,-20.769626559999878],[148.84351647200018,-20.777520440999936],[148.84766686300011,-20.788181247999884],[148.85385175899995,-20.832207940999893],[148.85173587300008,-20.837823174999897],[148.84701582100016,-20.84270598799995],[148.84245853000002,-20.84921640399986],[148.84017988400015,-20.859958591999956],[148.83936608200023,-20.870293877999885],[148.83668053500017,-20.87835051899999],[148.83253014400012,-20.884860934999903],[148.82715905000018,-20.890557549999983],[148.84538821700008,-20.887465101999908],[148.85889733200023,-20.873793226999965],[148.87501061300011,-20.842868748000015],[148.8888452480002,-20.853285414999913],[148.89942467500023,-20.864515882999825],[148.9108179050002,-20.873304945999976],[148.9264429050002,-20.87688567499994],[148.95655358200023,-20.870375257999868],[148.97144616000017,-20.87053801899992],[148.9780379570002,-20.880303643999866],[149.0016382170002,-20.90113697699985],[149.0131942070001,-20.908461195999934],[149.01807701900006,-20.906508070999887],[149.0206811860002,-20.90113697699985],[149.02572675900004,-20.89804452899986],[149.03972415500007,-20.897393487999906],[149.05632571700002,-20.89853281000002],[149.0695093110002,-20.90601979],[149.07357832100004,-20.924737237999963],[149.056407097,-20.9190406229999],[149.03687584700003,-20.915459893999838],[149.0263778000002,-20.919203382999868],[149.03630618600008,-20.93523528399986],[149.03980553500006,-20.951348565999922],[149.03052819100012,-20.96591562299986],[149.026621941,-20.976250908999944],[149.04623457100016,-20.97991301899991],[149.07935631600012,-20.96998463299991],[149.09498131600017,-20.969821872999944],[149.10157311300017,-20.98333098799992],[149.11019941500015,-20.992771092000012],[149.150645379,-20.99618906000002],[149.16293379000015,-21.00790781000002],[149.16651451900023,-21.024346612999835],[149.17505944100006,-21.037041924999983],[149.18685957100004,-21.04534270599987],[149.19996178500017,-21.048272393999895],[149.20215905000006,-21.05462004999991],[149.23121178500014,-21.089776299999965],[149.23121178500014,-21.126071872999884],[149.1961369150001,-21.180922132999896],[149.19654381600017,-21.22014739399999],[149.22584069100012,-21.27320728999993],[149.23438561300023,-21.281670830999968],[149.24219811300011,-21.277439059999864],[149.24976647200018,-21.258558851999833],[149.25473066500004,-21.254327080999985],[149.26343834700012,-21.254327080999985],[149.26465905000012,-21.255547784],[149.26539147200006,-21.259535414999903],[149.27222741000017,-21.26799895599993],[149.27328535200002,-21.271742445999877],[149.27222741000017,-21.27629973799992],[149.27182050900015,-21.279961846999967],[149.27564537900017,-21.281670830999968],[149.2898869150001,-21.281019790000016],[149.292735222,-21.281670830999968],[149.29900149800005,-21.295830987999988],[149.300547722,-21.305352471999893],[149.29615319100006,-21.309502862999935],[149.29297936300014,-21.319268487999878],[149.30103600399997,-21.341241143999895],[149.32056725400017,-21.377211195999962],[149.3139754570001,-21.38534921699988],[149.30640709700006,-21.391208591999927],[149.2973738940002,-21.39527760199998],[149.28646894600016,-21.39771900799991],[149.29639733200005,-21.409274997999944],[149.32642662900005,-21.414320570999962],[149.34107506600006,-21.42441171699994],[149.32496178500017,-21.43767669099988],[149.30713951900006,-21.44793059699998],[149.29249108200005,-21.461114190999933],[149.28646894600016,-21.483330987999906],[149.29216556100008,-21.510674737999963],[149.30640709700006,-21.50920989399991],[149.3473413420002,-21.479668877999938],[149.35564212300008,-21.494724216999956],[149.371836785,-21.50009531],[149.38795006600017,-21.501234632999868],[149.3951929050002,-21.50383879999987],[149.39283287900017,-21.534274997999916],[149.39747155000003,-21.549004815999908],[149.41285241000006,-21.55535247199994],[149.41325931100002,-21.562188408999944],[149.41773522200018,-21.575372003],[149.4293725920002,-21.583754164999874],[149.450938347,-21.575860283999987],[149.45866946700014,-21.565524997999887],[149.46900475400003,-21.53753020599987],[149.47828209700018,-21.52800872199995],[149.48715254000004,-21.53590260199985],[149.49170983200005,-21.54509856599999],[149.49878991000006,-21.569594007999854],[149.44727623800023,-21.620293877999913],[149.44190514400012,-21.63738372199995],[149.447032097,-21.66057708099997],[149.46461022200006,-21.69866301899988],[149.47437584700015,-21.711195570999877],[149.47828209700018,-21.7184384089999],[149.47828209700018,-21.72673919099988],[149.47169030000012,-21.73796965899997],[149.46322675900015,-21.740492445999976],[149.45297285200004,-21.742282809999963],[149.44011478000013,-21.75156015399993],[149.43246503999998,-21.769219658999944],[149.435394727,-21.78972747199998],[149.44507897200018,-21.810642184999864],[149.45720462300008,-21.82968515399986],[149.46583092500023,-21.840264580999985],[149.47169030000012,-21.845310153999932],[149.47559655000012,-21.85125090899996],[149.47828209700018,-21.86443450299991],[149.47754967500023,-21.873304945999863],[149.4721785820001,-21.896742445999934],[149.4708764980002,-21.908461195999834],[149.47437584700015,-21.929375908999887],[149.48316491000006,-21.95134856599998],[149.52149498800006,-22.012627862999906],[149.5249129570001,-22.02874114399998],[149.528656446,-22.07594166499996],[149.53581790500007,-22.095798434999963],[149.57447350400005,-22.15862395599993],[149.55933678500006,-22.170668226999847],[149.5542098320001,-22.17791106599995],[149.5533960300002,-22.186618747999855],[149.57447350400005,-22.19280364399991],[149.58057701900012,-22.21184661299999],[149.58415774800008,-22.217380466999927],[149.60857181100002,-22.24431731599998],[149.60499108200017,-22.255059502999913],[149.58985436300017,-22.27369557099989],[149.58757571700016,-22.28215911299985],[149.59213300900004,-22.285577080999857],[149.63941491000017,-22.302992445999916],[149.64478600400005,-22.30608489399999],[149.65308678500006,-22.313164971999868],[149.6616317070002,-22.32732512799997],[149.66879316499998,-22.34335702899996],[149.67920983200005,-22.352146091999938],[149.69743899800008,-22.344333591999856],[149.7032983730002,-22.36288827899986],[149.70508873800011,-22.3838843729999],[149.70411217500012,-22.422458591999956],[149.6992293630002,-22.4469540339999],[149.687266472,-22.46135833099987],[149.6738387380002,-22.474216403999975],[149.66325931100005,-22.49382903399986],[149.69402103000007,-22.488702080999925],[149.73129316500004,-22.469333592000012],[149.76539147200003,-22.445245049999897],[149.78614342500023,-22.42555104000003],[149.80152428500017,-22.388767184999963],[149.81275475400017,-22.378106377999842],[149.8308211600001,-22.388604425],[149.85816491000017,-22.421075127999984],[149.87086022200006,-22.44036223799983],[149.8761499360002,-22.456638278999947],[149.88086998800011,-22.46738046699997],[149.96404056100008,-22.533623955999943],[149.97169030000012,-22.545668226999865],[149.980235222,-22.5765927059999],[150.0006616550002,-22.60865650799988],[150.025238477,-22.633965752999913],[150.04672285200004,-22.645277601999908],[150.02247155000023,-22.553399346999953],[149.95557701900012,-22.401136976999908],[149.93718509200008,-22.380059502999885],[149.92847741000008,-22.356052341999927],[149.92994225400017,-22.33806731599999],[149.95069420700023,-22.344333591999856],[149.94336998800023,-22.328301690999865],[149.93067467500006,-22.31373463299984],[149.92351321700002,-22.29827239399991],[149.93344160200013,-22.278741143999838],[149.94312584700012,-22.26474374799987],[149.961110873,-22.220961195999905],[149.9682723320001,-22.188164971999896],[149.9782007170002,-22.173760674999926],[149.99048912900003,-22.162855726999936],[150.00220787900005,-22.15862395599993],[150.017832879,-22.15569426899991],[150.05355879000015,-22.141534112999974],[150.05795332100004,-22.149346612999878],[150.07732181100008,-22.15732187299993],[150.08155358200005,-22.162367445999948],[150.0831811860002,-22.171075127999856],[150.1022241550002,-22.217461846999907],[150.11060631600006,-22.232517185],[150.11963951900023,-22.244886976999947],[150.12940514400012,-22.254815362999963],[150.13803144599999,-22.25904713299998],[150.14698326900023,-22.26140715899993],[150.15381920700023,-22.26628997199991],[150.15658613400004,-22.278741143999838],[150.15691165500002,-22.289483330999943],[150.15796959700015,-22.297539971999882],[150.15992272200006,-22.30413176899995],[150.16342207100004,-22.310153903999947],[150.1876733730002,-22.32683684699998],[150.1933699880001,-22.33879973799992],[150.17725670700023,-22.35051848799992],[150.19402103000007,-22.378676039999903],[150.21558678500006,-22.394789320999877],[150.29981530000023,-22.418226820999948],[150.31324303500006,-22.425388278999975],[150.341075066,-22.44597747199984],[150.35580488400004,-22.45403411299995],[150.38705488400015,-22.46575286299995],[150.40308678500017,-22.473890882999953],[150.41244550899998,-22.48202890399989],[150.430918816,-22.503350518999934],[150.44410241000017,-22.51433684699991],[150.460785352,-22.52239348799985],[150.51295006600006,-22.53541432099992],[150.53394616000017,-22.54827239399995],[150.60914147200018,-22.610528252999853],[150.61540774800014,-22.603692315999833],[150.5991317070001,-22.587579033999944],[150.58326256600017,-22.559014580999868],[150.5748804050002,-22.5303687479999],[150.58122806100002,-22.51433684699991],[150.58122806100002,-22.50807057099986],[150.54525800900015,-22.481377862999935],[150.53451582100016,-22.427015882999825],[150.54371178499997,-22.366957289999917],[150.56763756600017,-22.323174737999935],[150.57593834700006,-22.330254815999908],[150.6017358730002,-22.344333591999856],[150.61841881600003,-22.334405205999857],[150.63624108200008,-22.34254322699995],[150.64372806100008,-22.35662200299999],[150.62907962300008,-22.364678643999852],[150.63379967500018,-22.373630466999956],[150.63502037900017,-22.3812802059999],[150.63160241000017,-22.38762786299992],[150.622813347,-22.39202239399999],[150.63428795700023,-22.395765882999854],[150.64486738400004,-22.401788018999948],[150.65479576900012,-22.40976327899999],[150.663828972,-22.41936614399998],[150.67066491000006,-22.41253020599987],[150.66293379000004,-22.40007903399986],[150.66065514400023,-22.384209893999923],[150.66488691500015,-22.368829033999887],[150.67750084700006,-22.35800546699997],[150.6798608730002,-22.37981536299985],[150.68580162900005,-22.40374114399999],[150.69450931100013,-22.425062757999953],[150.70476321700002,-22.43987395599993],[150.71314537899997,-22.444431247999887],[150.7399194670002,-22.45224374799997],[150.7495223320001,-22.453545830999968],[150.75619550900015,-22.458754164999874],[150.7597762380001,-22.470472914999945],[150.75831139400023,-22.48235442499991],[150.7495223320001,-22.487562757999896],[150.72339928500006,-22.519952081],[150.7058211600001,-22.528741143999877],[150.69792728000002,-22.504652601999933],[150.69011478000002,-22.499200127999913],[150.67628014400023,-22.506524347],[150.671641472,-22.52060312299994],[150.69109134200016,-22.53541432099992],[150.67750084700006,-22.562676690999922],[150.70386803500006,-22.556329033999972],[150.71607506600006,-22.562676690999922],[150.71924889400012,-22.58025481599995],[150.71900475400005,-22.607110283999845],[150.72266686300011,-22.62379322699988],[150.73194420700023,-22.628106377999885],[150.74333743600013,-22.622653904000018],[150.75318444100006,-22.610528252999853],[150.75717207100004,-22.599297783999944],[150.75904381600017,-22.58611419099998],[150.7594507170002,-22.55925872199991],[150.76368248800011,-22.534763278999975],[150.77344811300023,-22.530205987999935],[150.78296959700003,-22.54273853999993],[150.78736412900005,-22.56959400799991],[150.77979576900006,-22.626560153999932],[150.78451582099999,-22.653008722],[150.80713951900023,-22.65211354],[150.81348717500006,-22.67180754999987],[150.82642662900017,-22.69793059699991],[150.8276473320001,-22.713555597],[150.82325280000012,-22.733575127999956],[150.80990644600004,-22.77174244599985],[150.80494225400017,-22.812920831],[150.79566491,-22.848321222],[150.7897241550002,-22.897881768999852],[150.78736412900005,-22.905938408999887],[150.78687584700006,-22.910577081],[150.7884220710001,-22.92253997199994],[150.78736412900005,-22.92644622199992],[150.78174889400023,-22.927992445999962],[150.76563561300023,-22.92555104000003],[150.74146569100006,-22.92913176899999],[150.7365014980002,-22.932875257999854],[150.74236087300002,-22.94312916499996],[150.750743035,-22.9503720029999],[150.768809441,-22.96184661299985],[150.7736922540001,-22.966892184999878],[150.77393639400023,-22.97698333099993],[150.769297722,-22.986504815999936],[150.76596113399998,-22.995538018999852],[150.77027428500014,-23.004652601999936],[150.77588951900006,-23.01148854000003],[150.77865644600016,-23.019219658999873],[150.77979576900006,-23.03915780999995],[150.76099694100006,-23.12078215899996],[150.76441491000006,-23.158868096999853],[150.80095462300008,-23.179620049999855],[150.79395592500012,-23.197849216999924],[150.79468834700006,-23.21314869599989],[150.80176842500012,-23.227146091999856],[150.81397545700005,-23.241143487999906],[150.81609134200008,-23.236748955999914],[150.81959069100017,-23.23259856599998],[150.821462436,-23.227471612999878],[150.83904056100008,-23.24895598799999],[150.83253014400003,-23.275974216999856],[150.81177819100017,-23.299248955999953],[150.78736412900005,-23.309340101999833],[150.814219597,-23.411309502999927],[150.84180748800023,-23.43531666499987],[150.87582441500015,-23.475844007999893],[150.88233483200023,-23.488864841999884],[150.8722436860002,-23.500176690999865],[150.85385175900015,-23.504001559999878],[150.81397545700005,-23.50253671699991],[150.81397545700005,-23.509209893999966],[150.83692467500023,-23.512627862999963],[150.8566186860002,-23.519952080999886],[150.87037194099997,-23.532972914999874],[150.87549889400023,-23.553399346999853],[150.88575280000023,-23.571547132999854],[150.90821373800014,-23.565362237999878],[150.92969811300011,-23.550551039999903],[150.93685957100004,-23.54273854],[150.957286004,-23.544691664999945],[150.98601321700008,-23.56406015399996],[151.01127743500004,-23.566501980999856],[151.02744237400006,-23.57999716899984],[151.04153256700008,-23.61279941299999],[151.06983483200017,-23.623955987999906],[151.1027150790001,-23.65327047499997],[151.11468541300022,-23.66548289799995],[151.12598717500023,-23.675388279],[151.14340254000004,-23.70940520599993],[151.15040123800011,-23.727715752999984],[151.15406334700018,-23.752373955999897],[151.15658613399998,-23.761895440999893],[151.16089928500017,-23.77076588299994],[151.17432701900006,-23.790948174999954],[151.17701256600006,-23.79322682099985],[151.18718509200016,-23.80413176899991],[151.2104598320001,-23.81316497199984],[151.25277754000004,-23.823907158999926],[151.26002037900005,-23.824314059999935],[151.26954186300023,-23.823500257999925],[151.27784264400012,-23.823907158999926],[151.2814233730002,-23.827325127999853],[151.28223717500012,-23.836114190999908],[151.28467858200023,-23.844414971999896],[151.28882897200018,-23.85173919099999],[151.29444420700005,-23.85808684699984],[151.29737389400012,-23.85702890399996],[151.30567467500003,-23.856377862999835],[151.31617272200006,-23.857354424999983],[151.324880405,-23.86150481599985],[151.33057701900012,-23.868910415000016],[151.33952884200002,-23.887302341999956],[151.34555097700013,-23.89592864399988],[151.40365644599999,-23.949965101999965],[151.42416425900012,-23.974786065999837],[151.4360457690001,-23.998630467],[151.44092858200005,-24.005547783999987],[151.44825280000006,-24.009047132999896],[151.45313561300023,-24.003024997999972],[151.45801842500012,-23.994073174999865],[151.46509850400017,-23.988457940999865],[151.48096764400012,-23.988946221999853],[151.49732506600006,-23.994561455999857],[151.51197350400005,-24.003106377999956],[151.53003991000006,-24.018161716999966],[151.53728274800008,-24.02174244599986],[151.54346764400023,-24.02695077899986],[151.54761803500017,-24.03630950299997],[151.54656009200002,-24.04241301899988],[151.54175866000006,-24.046075127999927],[151.53646894600016,-24.049248955999985],[151.53402754000004,-24.053643487999878],[151.535329623,-24.072849216999927],[151.54029381600017,-24.08407968500002],[151.550547722,-24.091403903999932],[151.56812584700006,-24.09832122199992],[151.56885826900006,-24.093845309999878],[151.5704858730002,-24.090997002999842],[151.57252037900005,-24.08847421699991],[151.57439212300017,-24.08464934699998],[151.57154381600006,-24.07683684699991],[151.58057701900023,-24.057549737999878],[151.58179772200018,-24.04371510199988],[151.58619225400017,-24.048109632999953],[151.59253991000017,-24.052992445999834],[151.595469597,-24.056735934999864],[151.62224368600013,-24.05087656],[151.6447046230002,-24.065036716999927],[151.66667728000002,-24.085381768999838],[151.69166100400003,-24.09832122199992],[151.68295332100016,-24.0624325499999],[151.67611738400015,-24.046644789999988],[151.6637475920002,-24.030043226999936],[151.65113366000006,-24.02141692499984],[151.62142988400004,-24.006036065999893],[151.6158960300002,-23.995863539999945],[151.62378991000017,-23.984063408999972],[151.64136803500017,-23.978285414999917],[151.66187584700006,-23.977715752999856],[151.677989129,-23.981622002999938],[151.69068444100017,-23.9913062479999],[151.70069420700017,-24.002618096999967],[151.7130639980002,-24.012139580999882],[151.73259524800008,-24.016371351999894],[151.73259524800008,-24.02255624799987],[151.70997155000012,-24.0427385399999],[151.72103925900015,-24.058689059999907],[151.73959394600016,-24.063409112999906],[151.7394311860002,-24.050469659],[151.74976647200012,-24.046075127999927],[151.7804468110002,-24.02255624799987],[151.7802840500002,-24.053155205999968],[151.78614342500006,-24.08863697699988],[151.79704837300008,-24.12118906000002],[151.81137129000012,-24.14234791499994],[151.836192254,-24.163506768999937],[151.85181725400017,-24.171563408999887],[151.86988365999997,-24.17343515399986],[151.87574303500006,-24.17310963299984],[151.876719597,-24.17343515399986],[151.87769616000008,-24.171644789999874],[151.88347415500007,-24.16594817499997],[151.88697350400005,-24.1598446589999],[151.88754316500004,-24.15374114399991],[151.88965905000023,-24.14861419099998],[151.89771569100017,-24.14544036299992],[151.90007571700014,-24.155368747999926],[151.90121504000015,-24.177911065999908],[151.9039819670002,-24.18710702899989],[151.91244550900015,-24.196465752999913],[151.933360222,-24.21103280999995],[151.937347852,-24.217868747999873],[151.94092858200003,-24.235609632999868],[152.00367272200006,-24.41041432099982],[152.0586043630002,-24.51392994599986],[152.0846460300002,-24.531670830999854],[152.12305748800011,-24.59172942499985],[152.15040123800011,-24.61907317499991],[152.30616295700023,-24.72421640399989],[152.32569420700023,-24.72828541499994],[152.34595787900005,-24.730157158999916],[152.40479576900012,-24.74871184699991],[152.43946373800011,-24.771172784],[152.46973717500006,-24.80559661299986],[152.49146569100003,-24.847588799999922],[152.49976647200006,-24.89275481599998],[152.49976647200006,-24.97869231599998],[152.50603274800017,-24.999444268999895],[152.57781009200008,-25.09986744599986],[152.58228600400003,-25.108819268999966],[152.59213300900015,-25.120863539999984],[152.63233483200017,-25.142754815999837],[152.63697350400017,-25.160332940999865],[152.63233483200017,-25.169122002999927],[152.62549889400023,-25.173028252999913],[152.60279381600017,-25.174574476999947],[152.5988875660001,-25.173516534],[152.58529707100016,-25.1683895809999],[152.57862389400003,-25.167168877999885],[152.57154381600006,-25.169366143999966],[152.56788170700005,-25.17400481599998],[152.56771894600004,-25.178643487999835],[152.57154381600006,-25.180840752999913],[152.59620201900012,-25.183526299999894],[152.6188257170002,-25.191013278999943],[152.63746178500017,-25.201592705999914],[152.65064537900005,-25.21428801899988],[152.66211998800017,-25.228448174999894],[152.67709394599999,-25.241875908999972],[152.69703209700018,-25.25188567499997],[152.74634850400017,-25.258233330999982],[152.77230879000015,-25.26458098799993],[152.7963973320001,-25.27353280999995],[152.81511478000007,-25.283868096999967],[152.8170679050002,-25.27190520599993],[152.81592858200005,-25.258558851999837],[152.81771894600016,-25.247491143999895],[152.8287866550002,-25.242282809999974],[152.83570397200015,-25.247247002999853],[152.84253991,-25.27092864399995],[152.853282097,-25.276462497999887],[152.90113366000006,-25.283868096999967],[152.913828972,-25.28769296699997],[152.9181421230002,-25.29729583099987],[152.9181421230002,-25.324151299999855],[152.93181399800008,-25.416680596999925],[152.92603600400017,-25.423109632999854],[152.88705488400004,-25.444594007999882],[152.88013756599997,-25.453545830999985],[152.87435957100016,-25.464939059999963],[152.87037194100017,-25.475681247999884],[152.89039147200006,-25.468519790000016],[152.94418378999998,-25.437269789999874],[152.96241295700005,-25.437432549999837],[152.96908613400004,-25.45281340899996],[152.95972741000017,-25.463311455999943],[152.94564863400015,-25.470391533999987],[152.93864993600005,-25.475681247999884],[152.94581139400012,-25.48650481599988],[152.95899498800017,-25.49098072699985],[152.96615644599999,-25.497247002999984],[152.95573978000013,-25.51311614399991],[152.91879316500015,-25.543715101999936],[152.90503991000006,-25.56072356599999],[152.89771569100006,-25.584893487999906],[152.90951582100004,-25.644301039999945],[152.90796959700018,-25.6696102839999],[152.884043816,-25.67424895599993],[152.89380944100006,-25.688164971999907],[152.90837649800005,-25.698907159],[152.93864993600005,-25.715915622999887],[152.92432701900006,-25.72128671699994],[152.9181421230002,-25.72210051899995],[152.92701256600017,-25.74016692499997],[152.9428817070001,-25.753187757999864],[152.962657097,-25.760918877999956],[152.98340905000012,-25.76360442499985],[153.02125084700006,-25.825127862999988],[153.0278426440002,-25.84482187299986],[153.03419030000023,-25.88534921699997],[153.03484134200016,-25.903578382999953],[153.03305097700004,-25.90781015399996],[153.02426191500015,-25.919610283999944],[153.02125084700006,-25.927422783999845],[153.02003014400023,-25.93743254999991],[153.02125084700006,-25.9690080709999],[153.0280054050002,-25.9690080709999],[153.05738366000017,-25.91545989399991],[153.06153405000023,-25.903578382999953],[153.0605574880002,-25.871026299999983],[153.064219597,-25.852797132999907],[153.07520592500015,-25.838067315999908],[153.06576582100016,-25.82268645599997],[153.06153405000023,-25.81755950299987],[153.07715905000012,-25.825290622999958],[153.08399498800023,-25.836032809999892],[153.0893660820001,-25.865411065999893],[153.11003665500016,-25.917168877999913],[153.12159264400023,-25.933770440999965],[153.14893639400012,-25.943536065999908],[153.18067467500023,-25.944756768999834],[153.20557701900012,-25.93499114399998],[153.2000431650001,-25.948907158999873],[153.1821395190001,-25.975192966999884],[153.1748153000001,-25.998142184999878],[153.15650475400005,-26.03492603999994],[153.14747155000023,-26.047621351999922],[153.14177493600008,-26.06145598799992],[153.13209069100012,-26.103936455999968],[153.12671959700003,-26.113051039999974],[153.11003665500016,-26.164239190999922],[153.10743248800011,-26.17913176899998],[153.07748457100004,-26.280857028999932],[153.07406660200004,-26.31658294099988],[153.07520592500015,-26.3350562479999],[153.0797632170002,-26.351983330999886],[153.0893660820001,-26.36630624799987],[153.1035262380001,-26.373467705999914],[153.11719811300023,-26.37444426899998],[153.12916100400017,-26.378106377999927],[153.13721764400012,-26.392998955999985],[153.12240644600016,-26.42327239399998],[153.11345462300017,-26.45745208099997],[153.11003665500016,-26.646905205999843],[153.11402428500014,-26.662774346999868],[153.1170353520001,-26.67115650799991],[153.11988366000006,-26.67489999799986],[153.15088951900023,-26.684747002999966],[153.1442163420002,-26.732842705999943],[153.1440535820002,-26.750583591999927],[153.15007571700002,-26.781833592],[153.15512129000015,-26.7935523419999],[153.16114342500006,-26.79827239399999],[153.15211022200018,-26.80592213299984],[153.14649498800006,-26.82390715899987],[153.14380944100017,-26.844496351999908],[153.1440535820002,-26.860446872999916],[153.1440535820002,-26.85230885199998],[153.14616946700002,-26.89177825299987],[153.15251712300008,-26.924981377999885],[153.20622806100008,-27.046075127999938],[153.210215691,-27.07724374799993],[153.19174238399998,-27.099297783999845],[153.154551629,-27.08424244599983],[153.11654707099996,-27.089939059999907],[153.08220462300002,-27.110446872999944],[153.05534915500007,-27.140313408999944],[153.04786217500012,-27.152276299999883],[153.0384220710001,-27.17343515399997],[153.03825931100013,-27.19345468499993],[153.05836022200015,-27.2023251279999],[153.07992597700016,-27.203383070999948],[153.09107506600014,-27.202569268999937],[153.09937584700018,-27.198907158999887],[153.11280358200005,-27.191013279],[153.1174422540001,-27.196954033999845],[153.11361738400007,-27.242364190999837],[153.10385175900015,-27.25416432099989],[153.08912194100006,-27.261651299999865],[153.07203209700012,-27.27467213299994],[153.06137129000012,-27.29452890399986],[153.06495201900023,-27.31047942499987],[153.0763452480002,-27.32301197699995],[153.0893660820001,-27.332126559999864],[153.109141472,-27.340508722],[153.1511336600001,-27.35222747199999],[153.16797936300011,-27.363702080999857],[153.17750084700018,-27.3825009089999],[153.18409264400017,-27.428399346999882],[153.19174238399998,-27.449395440999908],[153.20777428500017,-27.46502044099999],[153.22380618600008,-27.46819426899995],[153.2384546230002,-27.467868747999926],[153.25049889400012,-27.47275156],[153.26026451900023,-27.484063408999987],[153.26832116000017,-27.496270440999965],[153.28126061300006,-27.523858330999886],[153.28353925900015,-27.532810154],[153.28394616000017,-27.53972747199991],[153.28549238400004,-27.54656340899993],[153.304535352,-27.570245049999855],[153.30762780000006,-27.5780575499999],[153.31080162900005,-27.640313408999845],[153.31544030000018,-27.65488046699987],[153.32447350400017,-27.666924737999878],[153.345469597,-27.6867001279999],[153.349457227,-27.698907158999955],[153.35043379000012,-27.700941664999817],[153.35629316500004,-27.723077080999886],[153.3619897800002,-27.73211028399997],[153.36695397200006,-27.736423434999892],[153.371836785,-27.73919036299995],[153.39991295700023,-27.7662085919999],[153.40984134200014,-27.781914971999868],[153.40788821700008,-27.79509856599999],[153.40186608200005,-27.80917734199994],[153.41146894600016,-27.81560637799987],[153.42709394600004,-27.81072356599998],[153.43897545700003,-27.791436455999957],[153.4458113940001,-27.791436455999957],[153.44556725400014,-27.810479424999937],[153.43213951900017,-27.860284112999835],[153.4301863940001,-27.878513278999986],[153.43213951900017,-27.935316664999956],[153.41830488400012,-27.908786716999984],[153.40902754000004,-27.917901299999897],[153.402191602,-27.934991143999934],[153.39991295700023,-27.954196872999987],[153.40406334700006,-27.97014739399999],[153.413340691,-27.97616952899999],[153.42204837300017,-27.96900807099996],[153.4301863940001,-27.95720794099998],[153.43897545700003,-27.948988539999903],[153.44507897200018,-27.980889580999914],[153.44947350400005,-28.07317473799986],[153.4627384770001,-28.092461846999896],[153.48226972700013,-28.11052825299991],[153.50521894600016,-28.14771900799991],[153.50652103000007,-28.149265231999944],[153.53199303500006,-28.177911065999922],[153.56251061300011,-28.1749813779999],[153.57056725400005,-28.193780205999857],[153.58122806100005,-28.24675872199998],[153.59107506600017,-28.268487237999864],[153.59083092500023,-28.31853606599988],[153.56348717500018,-28.460870049999926],[153.56251061300011,-28.504571221999925],[153.57601972700016,-28.58961353999993],[153.58423912900017,-28.608086846999953],[153.62094160200016,-28.644463799999855],[153.63062584700006,-28.661553643999895],[153.6290796230002,-28.66725025799988],[153.61988366,-28.686618747999987],[153.61695397200018,-28.695733330999886],[153.61752363400015,-28.705824476999936],[153.61963951900006,-28.717543226999933],[153.61963951900006,-28.729587497999862],[153.60132897199998,-28.761407158999887],[153.60010826900012,-28.78337981599999],[153.61011803500014,-28.826104424999908],[153.60596764400023,-28.867445570999934],[153.582286004,-28.896091403999918],[153.52133222700004,-28.943454684999864],[153.47559655000012,-29.000176690999833],[153.45378665500007,-29.035577080999847],[153.43897545700003,-29.073011976999883],[153.43620853000002,-29.08513762799987],[153.43555748800006,-29.093845309999946],[153.44507897200018,-29.14006926899995],[153.4458113940001,-29.151625257999886],[153.44141686300011,-29.155368747999916],[153.42269941500015,-29.161065362999974],[153.41830488400012,-29.164971612999892],[153.4152124360002,-29.175957940999936],[153.37086022200006,-29.241631768999934],[153.35059655000023,-29.28101978999985],[153.34034264400012,-29.322686455999985],[153.349457227,-29.361097914999817],[153.3667098320001,-29.382745049999897],[153.36996504000015,-29.39666106599988],[153.36011803500006,-29.412041924999908],[153.35645592500006,-29.42400481599985],[153.3575952480002,-29.443129164999828],[153.36085045700014,-29.461521091999867],[153.36378014400003,-29.470391534],[153.35206139400012,-29.490004164999874],[153.34400475400014,-29.535414320999944],[153.3274845710001,-29.565036717],[153.32447350400017,-29.5758602839999],[153.32227623800011,-29.597588799999965],[153.32325280000023,-29.602634372999987],[153.32789147200018,-29.61207447699992],[153.32911217500012,-29.618096612999835],[153.32699628999998,-29.62444426899987],[153.31771894600016,-29.635186455999957],[153.31544030000018,-29.64226653399984],[153.3178817070001,-29.666599216999984],[153.32300865999997,-29.68230559699995],[153.32162519600004,-29.697523695999934],[153.29639733200005,-29.735039971999864],[153.29118899800008,-29.753187757999868],[153.28842207100004,-29.77125416499989],[153.28809655000012,-29.785739841999927],[153.29493248800011,-29.82659270599997],[153.29078209700018,-29.8355445289999],[153.27670332100004,-29.850762627999885],[153.27377363400004,-29.857354424999954],[153.27149498800023,-29.901625257999825],[153.26734459700012,-29.924248955999968],[153.26010175900007,-29.943291924999954],[153.22445722700004,-29.98691171699997],[153.2198999360002,-30.001397393999923],[153.21656334700006,-30.007256768999948],[153.20240319100006,-30.02467213299992],[153.19922936300017,-30.035821221999953],[153.2000431650001,-30.04656340899987],[153.20557701900012,-30.073663018999977],[153.2037866550002,-30.129164320999863],[153.1896264980002,-30.174981377999853],[153.13721764400012,-30.25798919099985],[153.14649498800006,-30.286065362999846],[153.13209069100012,-30.323825778999904],[153.0893660820001,-30.388929945999845],[153.08253014400006,-30.406426690999893],[153.075450066,-30.438409112999892],[153.05054772200018,-30.473321221999914],[153.0431421230002,-30.493829033999955],[153.02307038600023,-30.575506187999892],[153.01807701900006,-30.633070570999845],[153.00798587300014,-30.651625257999854],[153.01099694100006,-30.655368747999972],[152.98779636500004,-30.734633817999907],[152.99985921400014,-30.75112150500003],[153.0050014330001,-30.835814295999825],[153.0275171230002,-30.875583591999913],[153.03484134200016,-30.882500908999912],[153.0431421230002,-30.887953382999935],[153.05453535200016,-30.89299895599989],[153.0646264980002,-30.893487237999878],[153.06885826900023,-30.885511976999908],[153.0721134770001,-30.88193124799994],[153.07911217500023,-30.885918877999917],[153.08627363400004,-30.89470794099989],[153.0893660820001,-30.905694268999852],[153.08790123800023,-30.926690362999892],[153.08570397200006,-30.935153904000014],[153.08187910200004,-30.943942966999895],[153.06332725300007,-30.95959309],[153.04659917000006,-30.9927539759999],[153.03987997700017,-31.029965145999892],[153.0459238550002,-31.046572868999917],[153.05789217700024,-31.051637448],[153.0609191100002,-31.06058328099999],[153.0595007210002,-31.077209977999896],[153.04163114200006,-31.090102655999857],[153.00888017200023,-31.12224823299985],[152.98061504100022,-31.165914755999903],[152.97921828900022,-31.199245471999983],[152.95989401900013,-31.240315304999864],[152.970411879,-31.25567655899988],[152.97673587300008,-31.320000908999873],[152.93258908100003,-31.366007817999943],[152.91782826900018,-31.39525433099996],[152.916435393,-31.420656614999967],[152.93435448400012,-31.438392126999883],[152.93887444499998,-31.454869447999865],[152.94038106200006,-31.462483670999887],[152.9345020860001,-31.482810541999967],[152.90629782000022,-31.505727677999882],[152.8765874340002,-31.532446146],[152.84538072800012,-31.569318604999935],[152.84991511500007,-31.599780167999953],[152.83656196400003,-31.62519617899994],[152.84853264600002,-31.644220246999893],[152.83214695900014,-31.655678984999952],[152.81278821100003,-31.67603150499994],[152.78894855899998,-31.704008613999918],[152.80390147000006,-31.719226882],[152.80092902200013,-31.73320810899996],[152.7755475970001,-31.75485262699999],[152.74418543900018,-31.793022631999918],[152.73672819300018,-31.827349075999894],[152.74721504,-31.842584729999984],[152.71577588400012,-31.85917013799995],[152.69288170700023,-31.885349216999927],[152.66431725400017,-31.90349700299984],[152.60925509300003,-31.945848262999956],[152.54637267400003,-32.04367920499985],[152.55534572500005,-32.07163089299985],[152.52833092500012,-32.09710051899984],[152.52027428500017,-32.1158179669999],[152.51531009200002,-32.1364885399999],[152.5100829320002,-32.16188136699985],[152.51695268900008,-32.17739220199989],[152.53567894500023,-32.18319951799997],[152.545381547,-32.19688817599989],[152.5647872020002,-32.20602140799991],[152.5695093110002,-32.21933359199993],[152.55665123800006,-32.232028903999904],[152.5465600920002,-32.2462704409999],[152.5399882660001,-32.2597970769999],[152.53351548800012,-32.26890792999994],[152.5259571090002,-32.28166457299993],[152.52487141200007,-32.29442562399991],[152.52704290200015,-32.312660829999956],[152.53997673400013,-32.314488747999924],[152.55445397200018,-32.32122161299986],[152.55201256600003,-32.328057549999876],[152.5483504570001,-32.332126559999935],[152.54420006600006,-32.33570728999982],[152.54078209700006,-32.34172942499991],[152.5366317070001,-32.354587498000015],[152.53394616000006,-32.36956145599996],[152.52483494300023,-32.38830528299997],[152.52049917100024,-32.41017641299986],[152.52155996900015,-32.42749406799999],[152.5398862960001,-32.442091941],[152.40239353700022,-32.48942857199988],[152.35355988200004,-32.5149233479999],[152.29476390000005,-32.55958889499992],[152.28592961300015,-32.58880396099992],[152.26417417399998,-32.59425608399992],[152.23586181400017,-32.60699906299985],[152.21066994900016,-32.63073865299995],[152.19198881999998,-32.652670384999865],[152.18750083500018,-32.66913591099994],[152.20372073000007,-32.68653589899996],[152.21924889400023,-32.697198174999855],[152.2055770190001,-32.69793059699988],[152.20215905000012,-32.695896091999856],[152.19410241000017,-32.68718840899987],[152.19068444100017,-32.68425872199985],[152.18604576900023,-32.68352629999991],[152.17530358200023,-32.68515390399993],[152.1707462900001,-32.68425872199985],[152.14527428500017,-32.66659921699993],[152.13672936300023,-32.66375090899997],[152.13526451900012,-32.66668059699991],[152.1167098320001,-32.680108330999985],[152.10938561300006,-32.68425872199985],[152.06088300900004,-32.69793059699988],[152.08676191500004,-32.715915622999916],[152.09229576900023,-32.71843840899984],[152.16732832100016,-32.71843840899984],[152.177989129,-32.720635674999926],[152.19019616000017,-32.72527434699994],[152.1977645190002,-32.72991301899988],[152.19483483200008,-32.73211028399987],[152.1909285820001,-32.73658619599993],[152.18946373800023,-32.758558851999936],[152.18506920700005,-32.76677825299985],[152.1748153000002,-32.76921965899989],[152.15015709700003,-32.766045830999914],[152.14014733200017,-32.77019622199995],[152.13119550900004,-32.78085702899989],[152.12761478000007,-32.786553643999966],[152.12256920700023,-32.79013437299993],[152.10938561300006,-32.794122003],[152.05942875500014,-32.78525386599989],[151.98492687900014,-32.79874572499986],[151.93518804700003,-32.81582907299997],[151.87566248200002,-32.84208787799999],[151.85621926700014,-32.855858949999956],[151.83403307100016,-32.86496712899995],[151.7992373640001,-32.893680377999914],[151.80355879000015,-32.91936614399992],[151.78785241000014,-32.931898695999934],[151.7725070570002,-32.9456085289999],[151.74886303000002,-32.95702337899998],[151.7376349740001,-32.97200186099994],[151.73603507600004,-32.99399702299995],[151.73438561300017,-33.01482512799994],[151.7205351070002,-33.01937119100002],[151.70380012799998,-33.02852132199993],[151.68148847699996,-33.049981378],[151.67058353000002,-33.06113046699993],[151.66700280000023,-33.0733374979999],[151.66568867100014,-33.087343206000014],[151.65291507499998,-33.110432839],[151.64673912900005,-33.14470794099998],[151.63493899800008,-33.15862395599987],[151.62956790500002,-33.17424895599985],[151.62598717500023,-33.191582940999936],[151.6122634380001,-33.207550919999875],[151.58999436200023,-33.218937254999986],[151.56895275200006,-33.24422481799991],[151.5631810250001,-33.265009943],[151.57601972700002,-33.28248463299998],[151.56895724300003,-33.29222782999985],[151.53068564400022,-33.319118731999936],[151.51534116400015,-33.32708241199991],[151.51546261000024,-33.31666608099995],[151.53225880800008,-33.30292875299992],[151.5408674,-33.277541990999865],[151.5161095640002,-33.26110945400002],[151.49101955200004,-33.27361137999989],[151.453795174,-33.304198934999945],[151.45272653900022,-33.31151484599988],[151.46973717500012,-33.32822031],[151.45639236800005,-33.331088222999966],[151.44270356200005,-33.33421552699983],[151.44402103000007,-33.34563567499997],[151.45122809800014,-33.35546050799985],[151.45995662400017,-33.35961144699992],[151.47454563100004,-33.36300125499982],[151.48835678300017,-33.349290928999984],[151.49529361000006,-33.33958650399987],[151.50499521100008,-33.343743475999915],[151.50382947200015,-33.360010111999955],[151.48999989500012,-33.37453400199996],[151.485846324,-33.39402452499995],[151.45722737800023,-33.41980528999993],[151.44530034600015,-33.43597156800003],[151.45199776800004,-33.44498583499997],[151.45091031600023,-33.453114442000015],[151.43906549900012,-33.46358462099998],[151.4427600170001,-33.478269724999834],[151.44752144600014,-33.486453606999916],[151.44159580200002,-33.4912832399999],[151.42787570300015,-33.49441395399988],[151.43246504000004,-33.50953541499985],[151.43002363400004,-33.51506926899987],[151.42888431100008,-33.52174244599992],[151.42416425900012,-33.52776458099984],[151.41431725400005,-33.53289153399986],[151.40699303500006,-33.53460051899995],[151.38648522200018,-33.53394947699991],[151.38005618600008,-33.53679778399994],[151.3626818400002,-33.532103319999834],[151.3537174290001,-33.54179631999999],[151.34310957100004,-33.54827239399989],[151.32056725400005,-33.55136484199997],[151.30876712300005,-33.54762135199985],[151.28288821700008,-33.56210702899989],[151.26644941500015,-33.561211846999896],[151.25554446700005,-33.54680754999984],[151.24594160199996,-33.521091403999975],[151.23072350400003,-33.534926039999974],[151.22681725400005,-33.55486419099995],[151.23406009200008,-33.57333749799997],[151.25277754000004,-33.582452080999886],[151.24805748800011,-33.59010182099982],[151.241953972,-33.59587981599988],[151.23454837300002,-33.59986744599995],[151.22559655000012,-33.60222747199999],[151.22559655000012,-33.609063409],[151.24952233200005,-33.60637786299985],[151.28164068000004,-33.5729018289999],[151.29933812400006,-33.570624205000016],[151.30999261200023,-33.57887470099983],[151.298736359,-33.60648934099993],[151.29150200000018,-33.636533019999916],[151.2952598210001,-33.64878017799984],[151.30909433000014,-33.637533463999915],[151.31712314299998,-33.62214794099985],[151.3254715430002,-33.592058408999975],[151.34075290899997,-33.61746553599994],[151.32134197700012,-33.6678174369999],[151.30917867400004,-33.69297289799991],[151.30567467500003,-33.72014739399999],[151.30445397200003,-33.72616952899992],[151.31177819100017,-33.73609791499983],[151.317637566,-33.74675872199995],[151.31714928500006,-33.75750090899987],[151.30876712300005,-33.78101978999992],[151.30469811300011,-33.82537200299987],[151.2917586600001,-33.82984791499992],[151.27914472700004,-33.82756926899995],[151.26636803500014,-33.82838307099996],[151.25277754000004,-33.84246184699991],[151.2469181650001,-33.85637786299989],[151.24732506600017,-33.86728280999995],[151.25473066500012,-33.87420012799987],[151.26986738400015,-33.8766415339999],[151.28012128999998,-33.87070077899987],[151.28467858200023,-33.86012135199992],[151.28785240999997,-33.85637786299989],[151.29444420700005,-33.870375257999854],[151.29249108200023,-33.8917782529999],[151.27369225400014,-33.93743254999984],[151.2814233730002,-33.952325127999885],[151.26742597700002,-33.98170338299997],[151.26026451900006,-33.99260833099995],[151.249359571,-34.00383879999987],[151.24170983200005,-33.99863046699987],[151.2131453790001,-33.966729424999855],[151.20191491000017,-33.95916106599999],[151.18230228000002,-33.963474216999984],[151.17790774800002,-33.97380950299991],[151.17603600400017,-33.987481377999856],[151.16407311300023,-34.00074635199988],[151.1453556650001,-34.0036760399999],[151.12468509200008,-34.00042083099986],[151.10629316500004,-34.00090911299985],[151.09522545700003,-34.01441822699982],[151.12549889400006,-34.02044036299992],[151.13266035200004,-34.02410247199997],[151.14356530000012,-34.03281015399986],[151.1491805350001,-34.03199635199985],[151.1603296230002,-34.0175106749999],[151.22144616000017,-34.02499765399996],[151.23226972700016,-34.02410247199997],[151.231211785,-34.04045989399998],[151.22584069100003,-34.047051690999865],[151.17969811300023,-34.04794687299986],[151.17554772200015,-34.04664478999986],[151.17237389400023,-34.04794687299986],[151.16407311300023,-34.05478280999988],[151.15845787900005,-34.06259530999995],[151.15503991000006,-34.07089609199994],[151.1491805350001,-34.07830169099984],[151.13607832100004,-34.0826962219999],[151.14682050900015,-34.086032809999935],[151.17042076900006,-34.086032809999935],[151.17701256600006,-34.08953215899992],[151.17709394600004,-34.10035572699984],[151.16895592500012,-34.11012135199994],[151.15040123800011,-34.12428150799998],[151.11286100300006,-34.14947020799998],[151.09611743200014,-34.16293837999996],[151.06835713500016,-34.17511123499986],[151.02795746399997,-34.20079609599989],[151.00968590700003,-34.219916955999935],[150.9689525160002,-34.26267519399988],[150.9406283880001,-34.30215910299998],[150.9249181270001,-34.33041888099998],[150.92827475900017,-34.36348678099992],[150.90805037600015,-34.40764140099995],[150.90304956300005,-34.45086084299996],[150.91886750500024,-34.486404115999974],[150.8977791770001,-34.502081173999905],[150.88721764400012,-34.530205987999935],[150.87330162900005,-34.545505467],[150.85499108200005,-34.54143645599986],[150.867035352,-34.522556247999916],[150.8608504570002,-34.51327890399996],[150.84815514400023,-34.51051197699991],[150.84131920700023,-34.51067473799996],[150.83513431100008,-34.51376718499995],[150.80095462300008,-34.54827239399995],[150.80583743600008,-34.5572242169999],[150.81218509200016,-34.56121184699997],[150.82032311300011,-34.562107028999954],[150.84205162900017,-34.561700127999956],[150.85499108200005,-34.56991952899986],[150.88233483200023,-34.5922177059999],[150.89722741,-34.601169529],[150.9170028000001,-34.6034481749999],[150.88363691500015,-34.607028903999876],[150.87045332099999,-34.6267229149999],[150.847911004,-34.75172291499989],[150.83375084700018,-34.782403252999885],[150.81055748800017,-34.795179945999834],[150.77930748800011,-34.806898695999905],[150.75342858200005,-34.858086846999946],[150.72868899800017,-34.86980559699995],[150.72706139400006,-34.874118747999944],[150.73878014400006,-34.883721612999935],[150.75407962300002,-34.893324476999815],[150.76319420700023,-34.89763762799991],[150.7784936860002,-34.901625257999896],[150.77686608200017,-34.91008879999983],[150.76400800900004,-34.91741301899994],[150.74577884200008,-34.918145440999965],[150.754161004,-34.92815520599986],[150.77613366000006,-34.935804945999976],[150.78736412900005,-34.94548919099985],[150.77979576900006,-34.95289478999992],[150.78736412900005,-34.959730726999844],[150.77621504,-34.986993096999925],[150.79615319100017,-35.00400156],[150.8276473320001,-35.0126278629999],[150.85157311300006,-35.014906507999875],[150.85499108200005,-35.02166106599999],[150.84359785200004,-35.05413176899998],[150.84473717500023,-35.07724374799986],[150.83285566499998,-35.09091562299989],[150.80713951900023,-35.11052825299985],[150.79883873800006,-35.09937916499992],[150.78614342500012,-35.089125257999974],[150.77808678500017,-35.07854583099986],[150.783539259,-35.0661760399999],[150.79281660200016,-35.050469658999944],[150.78126061300023,-35.028578382999825],[150.78736412900005,-35.014906507999875],[150.76758873800011,-35.00725676899985],[150.74878991000006,-35.01034921699993],[150.73145592500018,-35.01726653399993],[150.69556725400017,-35.02613697699987],[150.68702233200023,-35.03899504999998],[150.67750084700006,-35.07577890399988],[150.69695071700008,-35.07976653399987],[150.70150800899995,-35.09286874799993],[150.70093834700006,-35.10947030999989],[150.70378665500007,-35.12045663899985],[150.70476321700002,-35.124200127999885],[150.7210392590001,-35.13518645599993],[150.73715254000015,-35.13176848799992],[150.75261478000007,-35.12468840899987],[150.76685631600017,-35.124200127999885],[150.77035566500015,-35.13290780999996],[150.76954186300023,-35.14885833099997],[150.765391472,-35.16619231599995],[150.7594507170002,-35.17888762799993],[150.75147545700023,-35.18320077900002],[150.74252363400004,-35.18254973799996],[150.73519941499998,-35.18084075299997],[150.73218834700018,-35.182305596999925],[150.72877037900017,-35.186700128],[150.7208764980002,-35.19182708099984],[150.71192467500006,-35.19654713299994],[150.70476321700002,-35.199395440999965],[150.68441816500015,-35.17603932099989],[150.63721764400006,-35.17929452899993],[150.61304772200018,-35.18726978999989],[150.58594811300023,-35.196221612999906],[150.55396569100006,-35.213555597],[150.54810631600012,-35.22136809699989],[150.54371178499997,-35.23796965899986],[150.53972415500002,-35.24773528399999],[150.53443444100017,-35.254978122999916],[150.52312259200008,-35.26433684699994],[150.49952233200023,-35.28972747199988],[150.48910566500015,-35.30575937299987],[150.48462975400017,-35.32431405999988],[150.4850366550002,-35.35019296699988],[150.4884546230002,-35.36451588299995],[150.4918725920002,-35.36939869599985],[150.49203535200016,-35.37314218499988],[150.4850366550002,-35.384372653999876],[150.45582116000006,-35.403985283999845],[150.45093834700018,-35.408461195999884],[150.44548587300002,-35.42546965899996],[150.43295332100016,-35.44068775799994],[150.41920006600006,-35.45452239399994],[150.40992272200018,-35.46689218499988],[150.40699303500006,-35.48739999799993],[150.4093530610002,-35.53850676899999],[150.40650475400017,-35.54876067499984],[150.38965905000018,-35.55787525799991],[150.37232506600017,-35.57887135199986],[150.33253014400006,-35.639418226999936],[150.30689537900005,-35.70029062299996],[150.29167728000007,-35.72283294099985],[150.273692254,-35.730645440999936],[150.2534285820001,-35.72625090899986],[150.23178144599999,-35.71331145599986],[150.22193444100017,-35.71770598799992],[150.19092858200017,-35.726820570999834],[150.21810957100016,-35.751153252999984],[150.22584069100014,-35.778903903999876],[150.2286889980002,-35.78525156],[150.23853600400003,-35.799493097],[150.24097741000017,-35.80974700299984],[150.23861738400004,-35.833103123000015],[150.23243248800023,-35.843845309999935],[150.21810957100016,-35.85019296699995],[150.19092858200017,-35.85719166499986],[150.18930097700002,-35.85955169099991],[150.15259850400003,-35.8937313779999],[150.14975019599996,-35.898207289999945],[150.15023847700016,-35.91253020599994],[150.160817905,-35.93971119599986],[150.16342207100004,-35.95663827899993],[150.15658613400004,-36.0250790339999],[150.14869225400005,-36.06259531],[150.12964928500003,-36.05950286299991],[150.10678144600004,-36.04859791499986],[150.08773847700002,-36.06267669099998],[150.09115644600016,-36.070245049999855],[150.0901798840001,-36.07529062299997],[150.08155358200005,-36.08375416499983],[150.08765709700006,-36.08277760199985],[150.09253991000006,-36.08269622199987],[150.09701582099999,-36.08131275799997],[150.10206139400012,-36.07634856599992],[150.11915123800006,-36.085056247999916],[150.13575280000012,-36.09775155999996],[150.14332116000017,-36.11443450299999],[150.12305748800017,-36.152601820999884],[150.12110436300011,-36.17376067499998],[150.1241968110002,-36.19524505],[150.14478600400005,-36.25286223799998],[150.14649498800023,-36.27353281],[150.13282311300011,-36.28240325299985],[150.13282311300011,-36.28679778399993],[150.14039147200003,-36.309747003],[150.14234459700012,-36.320000908999944],[150.13819420700017,-36.33001067499983],[150.12842858200023,-36.338311456],[150.10824628999998,-36.35133228999989],[150.09229576900006,-36.36785247199997],[150.0792749360002,-36.38600025799996],[150.07048587300002,-36.40634530999995],[150.06739342500023,-36.429294528999854],[150.07300866000006,-36.4530575499999],[150.07422936300017,-36.463311455999886],[150.07097415500013,-36.47014739399998],[150.0568139980002,-36.48894622199985],[150.05355879000015,-36.50090911299996],[150.0636499360002,-36.54314544099991],[150.06576582100004,-36.566582940999965],[150.05697675900012,-36.587172132999825],[150.029063347,-36.62428150799984],[149.995371941,-36.68645598799985],[149.98910566500012,-36.70468515399992],[149.98609459700006,-36.722914320999905],[149.98536217500023,-36.744805596999925],[149.97950280000003,-36.769952080999914],[149.96509850400003,-36.79452890400001],[149.94703209700012,-36.81568775799984],[149.93002363400015,-36.83049895599998],[149.9399520190002,-36.85295989399991],[149.93482506600003,-36.870700778999904],[149.9096785820002,-36.90553150799993],[149.9038192070001,-36.92839934699985],[149.91138756600006,-36.93857187299999],[149.92652428500006,-36.94410572699982],[149.9436955090001,-36.95338307099996],[149.93213951900023,-36.96550872199987],[149.92310631600006,-36.9834937479999],[149.920176629,-37.00261809699997],[149.92676842500006,-37.018243096999946],[149.93482506600003,-37.026625257999825],[149.9399520190002,-37.03386809699994],[149.94288170700017,-37.04216887799999],[149.9436955090001,-37.05339934699991],[149.94157962300008,-37.06218840899989],[149.93685957100016,-37.06894296700001],[149.9323022800002,-37.07097747199994],[149.93002363400015,-37.066338799999926],[149.92253665500007,-37.06178150799988],[149.90577233200023,-37.07097747199994],[149.89031009200002,-37.08407968499992],[149.88550866000006,-37.09050872199984],[149.8761499360002,-37.09587981599989],[149.88209069100006,-37.10759856599988],[149.89665774800005,-37.11931731599995],[149.91309655000023,-37.124688409],[149.93018639400012,-37.12281666499986],[149.93897545700005,-37.11980559699994],[149.94605553500006,-37.11923593499998],[149.95875084700018,-37.124688409],[149.9975692070001,-37.15048593499995],[150.00586998800006,-37.15886809699991],[150.0114038420002,-37.17343515400002],[150.01441491,-37.20533619599986],[150.01954186300011,-37.220879815999865],[150.05355879000015,-37.26873137799997],[150.05355879000015,-37.27613697699988],[150.03003991000017,-37.266045831],[150.00733483200023,-37.259372653999854],[149.98536217500023,-37.25904713299983],[149.9643660820001,-37.26873137799997],[149.95101972700016,-37.28427499799997],[149.9513452480002,-37.29973723799999],[149.97169030000012,-37.33757903399986],[149.95728600400005,-37.37786223799992],[149.95679772200006,-37.41545989399984],[149.96713300900015,-37.453708591999884],[149.98536217500023,-37.49586353999983],[149.97209720100003,-37.51026783599998],[149.95313561300011,-37.530857029],[149.89633222700004,-37.54859791499983],[149.77865644600013,-37.55608489399998],[149.78711998800011,-37.552829684999935],[149.791351759,-37.54794687299987],[149.79127037900005,-37.542087498000015],[149.78614342500023,-37.53557708099984],[149.79786217500012,-37.5197079409999],[149.79395592500012,-37.510837497999944],[149.7827254570002,-37.51279062299999],[149.77247155000012,-37.52939218499995],[149.76002037900014,-37.524021092],[149.7184350920002,-37.51580169099991],[149.76148522200006,-37.56633879999991],[149.76628665500002,-37.58407968499991],[149.75757897200006,-37.597100518999895],[149.72543378999998,-37.62029387799992],[149.71168053500017,-37.64853280999989],[149.67847741000006,-37.69101327899995],[149.6666772800002,-37.70012786299995],[149.61524498800006,-37.71038176899988],[149.60987389400023,-37.71746184699994],[149.60482832099999,-37.72633228999989],[149.59498131600017,-37.73479583099993],[149.57504316499995,-37.74098072699998],[149.53207441500004,-37.74627044099988],[149.51246178500017,-37.755303643999966],[149.50733483200017,-37.76140715899987],[149.49781334700006,-37.77760182099983],[149.49122155000006,-37.78329843499991],[149.47901451900012,-37.785902601999894],[149.34107506600006,-37.786716404],[149.29900149800005,-37.79851653399989],[149.27222741000017,-37.82350025799998],[149.26539147200006,-37.81707122199998],[149.26107832100016,-37.81031666499986],[149.25912519599996,-37.802504164999945],[149.25855553500006,-37.79290129999988],[149.25318444100017,-37.78948333099996],[149.173106316,-37.790215752999984],[149.15235436300011,-37.78639088299998],[149.13559003999998,-37.77581145599984],[149.09278405000012,-37.78964609200001],[148.94385826900023,-37.78948333099996],[148.90219160199996,-37.796319268999895],[148.78630618600013,-37.79810963299988],[148.7651473320001,-37.803806247999944],[148.73601321700008,-37.82048919099998],[148.7241317070001,-37.82350025799998],[148.60401451900012,-37.81113046699987],[148.30640709700018,-37.823418878],[148.13062584700003,-37.857110284],[147.91651451900012,-37.918552341999984],[147.75757897200018,-37.98512135199998],[147.58936608200023,-38.08066171699997],[147.39551842500006,-38.22014739399991],[147.18067467500012,-38.39788176899988],[147.08277428500017,-38.47283294099984],[146.98365319100012,-38.57219817499984],[146.89486738400015,-38.634209893999966],[146.88445071700008,-38.63860442499987],[146.8785913420002,-38.64430103999994],[146.84766686300006,-38.68499114399984],[146.83643639400017,-38.68238697699992],[146.83204186300006,-38.672784112999864],[146.84652754000004,-38.65960051899991],[146.8302514980002,-38.65471770599984],[146.688812696,-38.68010833099995],[146.64144941499998,-38.676853122999916],[146.61768639400012,-38.67913176899997],[146.57471764400023,-38.70322031],[146.55347741000006,-38.70452239399991],[146.53060957100016,-38.70134856599985],[146.50391686300011,-38.70061614399999],[146.45866946700016,-38.71013762799991],[146.4327905610002,-38.719659112999906],[146.4213973320001,-38.73162200299993],[146.41179446700002,-38.73984140399993],[146.39112389400012,-38.72600676899994],[146.3722436860002,-38.70745208099984],[146.367442254,-38.70061614399999],[146.35043379000015,-38.695000908999916],[146.25570722700016,-38.701755466999856],[146.23829186300011,-38.70582447699982],[146.22413170700005,-38.714450779],[146.18238366000006,-38.75595468499991],[146.21599368600005,-38.78378671699987],[146.220957879,-38.79168059699994],[146.2295028000001,-38.80885182099996],[146.23707116000017,-38.81796640399986],[146.24122155000012,-38.81902434699991],[146.26059004,-38.81796640399986],[146.26392662900017,-38.82040780999989],[146.26392662900017,-38.826267184999935],[146.26319420700023,-38.83310312299986],[146.26384524800008,-38.838474216999906],[146.2667749360002,-38.85125090899986],[146.26661217500023,-38.863376559999935],[146.27027428500017,-38.873223565999965],[146.28492272200012,-38.87932708099994],[146.2776798840001,-38.899346612999835],[146.28638756600017,-38.90984465899998],[146.30290774800002,-38.91187916499983],[146.3190210300002,-38.90667083099993],[146.33423912900017,-38.89348723799996],[146.3549910820001,-38.86858489399985],[146.37370853000007,-38.858330987999906],[146.3829858730002,-38.857191664999974],[146.40235436300023,-38.85857512799995],[146.41089928500006,-38.85515715899986],[146.41675866000014,-38.846856377999956],[146.41830488400004,-38.83733489399988],[146.41895592500006,-38.82756926899992],[146.4213973320001,-38.81796640399986],[146.43262780000012,-38.80144622199988],[146.44776451900012,-38.79029713299987],[146.46355228000007,-38.791273695999934],[146.47673587300017,-38.81047942499998],[146.47046959700003,-38.823825778999904],[146.468516472,-38.8402645809999],[146.46924889400023,-38.86923593499989],[146.47095787900005,-38.87916432099997],[146.47486412900005,-38.88591887799984],[146.47950280000018,-38.89185963299995],[146.48292076900006,-38.899997653999876],[146.48414147200018,-38.907403252999956],[146.48406009200016,-38.910902601999936],[146.48324629000004,-38.91513437299987],[146.48292076900006,-38.924086195999884],[146.4775496750001,-38.92945728999986],[146.46583092500023,-38.93767669099995],[146.45411217500023,-38.949314059999864],[146.44857832100004,-38.96502044099984],[146.44654381600012,-38.97576262799993],[146.43726647200006,-39.00514088299994],[146.43506920700023,-39.019952080999914],[146.43799889400006,-39.026950778999975],[146.44467207100004,-39.0303687479999],[146.4526473320001,-39.0303687479999],[146.4659936860002,-39.02361419099995],[146.47055097700004,-39.02825286299989],[146.48340905000018,-39.06462981599988],[146.47787519600016,-39.07170989399992],[146.46485436300017,-39.07333749799994],[146.44857832100004,-39.07805754999986],[146.43433678500003,-39.089125257999896],[146.43490644599999,-39.09742603999988],[146.43897545700023,-39.108086847],[146.43506920700023,-39.12639739399987],[146.42554772200006,-39.13640715899996],[146.41065514400012,-39.14316171699989],[146.3942163420002,-39.144952080999886],[146.3803817070001,-39.14006926899999],[146.35059655000012,-39.1280249979999],[146.33578535200004,-39.11858489399998],[146.32585696700002,-39.105889580999914],[146.32260175899995,-39.08896249799993],[146.3305770190002,-39.08277760199988],[146.3414819670002,-39.077813409],[146.34693444100006,-39.06438567499984],[146.34034264400006,-39.05527109199992],[146.29851321700008,-39.03769296699999],[146.28907311300023,-39.02809010199983],[146.26384524800008,-38.996026299999855],[146.25098717500023,-38.93962981599999],[146.18165123800011,-38.8683407529999],[146.09180748800011,-38.81975676899985],[146.017344597,-38.831638278999975],[146.00814863400015,-38.84693775799994],[146.00424238400015,-38.86549244599986],[146.00367272200018,-38.89641692499998],[145.99244225400017,-38.900160414999846],[145.93897545700017,-38.90878671699993],[145.92115319100017,-38.90667083099993],[145.91578209700006,-38.89576588299994],[145.89649498800011,-38.829196872999944],[145.85523522200006,-38.759535414999974],[145.82154381600006,-38.717950127999984],[145.76783287900017,-38.674737237999906],[145.757172071,-38.65960051899991],[145.785004102,-38.668633722],[145.82553144600004,-38.69622161299992],[145.85352623800023,-38.70061614399999],[145.83301842500006,-38.669122002999984],[145.80933678500014,-38.650160414999974],[145.77735436300017,-38.64088307099985],[145.7330835300002,-38.63860442499987],[145.69922936300023,-38.64625416499989],[145.63949629000015,-38.67742278399988],[145.59961998800011,-38.68010833099995],[145.57081139400017,-38.66171640399992],[145.52947024800002,-38.593438408999916],[145.51368248800006,-38.578383070999905],[145.50180097700002,-38.574639580999865],[145.44809004000012,-38.55046965899996],[145.3916121750002,-38.54273853999986],[145.37305748800023,-38.536797783999916],[145.37305748800023,-38.530531507999875],[145.39503014400023,-38.52581145599987],[145.42025800900004,-38.5153134089999],[145.43384850400017,-38.502129815999936],[145.42074628999998,-38.48894622199998],[145.43116295700003,-38.475762627999856],[145.43458092500006,-38.459730726999865],[145.43116295700003,-38.44280364399988],[145.42074628999998,-38.426934502999856],[145.4518335300002,-38.41326262799991],[145.462168816,-38.41521575299987],[145.4708764980002,-38.419854424999976],[145.4777124360002,-38.424493097],[145.48226972700016,-38.426934502999856],[145.50611412900005,-38.42408619599981],[145.52133222700004,-38.4120419249999],[145.53158613400012,-38.39902109199991],[145.54086347699996,-38.392754815999865],[145.55689537900017,-38.385186455999914],[145.55437259200008,-38.368584893999945],[145.54004967500003,-38.3519833309999],[145.52051842500012,-38.34441497199985],[145.51547285200016,-38.33904387799998],[145.51726321700008,-38.32756926899985],[145.52393639400012,-38.310804945999834],[145.5185653000002,-38.3018531229999],[145.50294030000018,-38.285251559999935],[145.47657311300006,-38.24488697699996],[145.4643660820001,-38.23455169099988],[145.44809004000012,-38.22828541499983],[145.42986087300008,-38.22682057099994],[145.38331139400023,-38.23455169099988],[145.3457137380002,-38.23455169099988],[145.3385522800001,-38.23886484199997],[145.33399498800006,-38.24537525799995],[145.32764733200023,-38.24724700299984],[145.31495201900003,-38.23796965899989],[145.29656009200002,-38.23170338299984],[145.27173912900017,-38.233168226999894],[145.25586998800023,-38.24146900799997],[145.26441491000017,-38.255547783999916],[145.2561141290001,-38.26482512799987],[145.24683678500006,-38.27288176899999],[145.23910566500004,-38.28191497199991],[145.23170006600006,-38.306247653999975],[145.22169030000023,-38.310804945999834],[145.21062259200014,-38.31438567499989],[145.202403191,-38.32447682099995],[145.20281009200002,-38.33570728999995],[145.21859785200016,-38.35035572699988],[145.2228296230002,-38.36199309699988],[145.22380618600005,-38.386000257999925],[145.22901451900017,-38.41326262799991],[145.13656660200016,-38.4008114559999],[145.11296634200014,-38.40642669099998],[145.1057235040001,-38.41521575299987],[145.10075931100002,-38.42652760199985],[145.09229576900012,-38.43629322699997],[145.0607202480002,-38.44500090899987],[145.05046634200008,-38.45598723799983],[145.03728274800002,-38.48211028399989],[145.044688347,-38.48894622199998],[145.02466881600003,-38.49391041499986],[144.955332879,-38.49879322699992],[144.94459069100017,-38.510349216999856],[144.92107181100002,-38.50302499799993],[144.88640384200008,-38.48211028399989],[144.72901451900006,-38.351332289999945],[144.711192254,-38.342054945999976],[144.69125410200004,-38.338148695999884],[144.67676842500015,-38.333184502999856],[144.67302493600002,-38.323337498000015],[144.67660566499998,-38.31658294099989],[144.68474368600013,-38.32048919099998],[144.69336998800011,-38.32634856599984],[144.72877037900005,-38.33131275799988],[144.74805748800006,-38.34221770599994],[144.78345787900017,-38.37273528399999],[144.80396569100006,-38.37908294099984],[144.84961998800017,-38.37851327899986],[144.89323978000007,-38.37281666499996],[144.95289147200006,-38.34791432099985],[144.98292076900012,-38.34140390399993],[144.99317467500023,-38.33375416499992],[144.99805748800011,-38.32390715899998],[144.99284915500013,-38.31365325299987],[144.99146569100006,-38.304945570999976],[145.00180097700004,-38.29607512799984],[145.02369225400017,-38.28289153399989],[145.02719160200016,-38.275811455999914],[145.0327254570001,-38.25839609199994],[145.03728274800002,-38.24879322699988],[145.04444420700005,-38.23984140399995],[145.06177819100017,-38.223565362999906],[145.0724389980002,-38.20623137799992],[145.11931399800002,-38.15935637799997],[145.12916100400017,-38.126153252999956],[145.12549889400012,-38.08814869599986],[145.11019941500015,-38.05169036299989],[145.08497155000012,-38.0235328099999],[145.07536868600013,-38.018161716999856],[145.044688347,-38.00920989399992],[145.03296959700006,-38.00237395599998],[145.02711022200018,-37.99627044099991],[145.00245201900012,-37.960056247999894],[144.992442254,-37.92009856599985],[144.98267662900017,-37.899346612999935],[144.9631453790001,-37.88193124799997],[144.93482506600006,-37.86793385199991],[144.91146894600016,-37.86980559699997],[144.90699303500017,-37.899346612999935],[144.842051629,-37.893161716999884],[144.82545006600006,-37.898532809999935],[144.81723066500015,-37.91139088299986],[144.81202233200005,-37.927341403999876],[144.804453972,-37.94085051899985],[144.79444420700023,-37.94768645599996],[144.77833092500023,-37.95427825299984],[144.7609155610002,-37.95940520599986],[144.7461043630001,-37.96135833099989],[144.73365319100012,-37.967950127999956],[144.6958113940002,-37.99749114399992],[144.68783613400004,-38.005791924999905],[144.67204837300005,-38.01718515399996],[144.55844160200016,-38.04762135199992],[144.54330488400015,-38.058282158999866],[144.5312606130002,-38.071547132999896],[144.5232853520001,-38.08424244599986],[144.5237736340001,-38.09148528399988],[144.52784264400023,-38.098239842],[144.52808678500017,-38.10491301899988],[144.5171004570001,-38.11158619599992],[144.50782311300017,-38.1120744769999],[144.4980574880001,-38.10865650799991],[144.489024285,-38.10320403399987],[144.48243248800023,-38.097344658999916],[144.45411217500006,-38.106377862999935],[144.39503014400017,-38.10662200299988],[144.37305748800023,-38.118422132999854],[144.36255944100017,-38.14657968500002],[144.3818465500001,-38.15781015399993],[144.43384850400017,-38.15935637799997],[144.5236108730002,-38.17799244599995],[144.55811608200023,-38.173028252999906],[144.58204186300006,-38.163262627999956],[144.65357506600006,-38.124688408999894],[144.7047632170002,-38.14609140399993],[144.72510826900006,-38.164808851999815],[144.71827233200017,-38.190118096999946],[144.71583092500012,-38.19597747199998],[144.71664472700004,-38.20956796699994],[144.7150985040001,-38.21461353999989],[144.70899498800011,-38.21835702899992],[144.69532311300006,-38.2184384089999],[144.68783613400004,-38.22144947699991],[144.6704207690002,-38.23805103999996],[144.66114342500006,-38.24968840899987],[144.65357506600006,-38.26181405999995],[144.6528426440001,-38.28582122199991],[144.61158287900005,-38.29257577899993],[144.53012128999998,-38.29029713299997],[144.518809441,-38.29501718499996],[144.51075280000006,-38.29941171699987],[144.50212649800008,-38.30266692499991],[144.48926842500023,-38.30339934699994],[144.47901451900023,-38.30103932099989],[144.45606530000023,-38.29225025799991],[144.44483483200023,-38.29029713299997],[144.4223738940002,-38.29338958099994],[144.40186608200005,-38.30120208099986],[144.30974368600016,-38.356703382999896],[144.259532097,-38.39576588299987],[144.24903405000023,-38.40162525799991],[144.22787519600016,-38.40341562299999],[144.21485436300017,-38.40642669099998],[144.20753014400023,-38.41179778399986],[144.19410241000014,-38.4283993469999],[144.18751061300011,-38.434340101999936],[144.13640384200014,-38.44736093499992],[144.13135826900006,-38.450616143999966],[144.12126712300014,-38.465264580999886],[144.11622155000006,-38.46851978999992],[144.07146243600008,-38.47527434699987],[144.05250084700006,-38.48577239399992],[143.99919681100008,-38.53362395599996],[143.996836785,-38.54013437299986],[143.99927819100006,-38.547458591999956],[144.00017337300002,-38.55641041499989],[143.99236087300008,-38.56780364399994],[143.97950280000012,-38.57561614399985],[143.95386803500017,-38.58033619599995],[143.94117272200012,-38.58513762799993],[143.92847741000006,-38.60051848799996],[143.90552819100006,-38.64381275799987],[143.88965905000012,-38.652927341999856],[143.87989342500003,-38.65691497199984],[143.8698836600001,-38.66619231599996],[143.8551538420002,-38.683526299999954],[143.84489993600008,-38.6911760399999],[143.74545332099999,-38.719333591999884],[143.72510826900012,-38.721774997999916],[143.70460045700023,-38.72812265399995],[143.69239342500003,-38.74309661299998],[143.68360436300011,-38.76116301899999],[143.6710718110002,-38.780368747999944],[143.6709090500002,-38.783379815999865],[143.67058353000002,-38.786309502999885],[143.66675866,-38.7901343729999],[143.66228274800002,-38.79094817499991],[143.65088951900006,-38.78923919099991],[143.64625084700006,-38.7901343729999],[143.61085045700023,-38.80657317499989],[143.60132897200006,-38.81422291499983],[143.57325280000023,-38.84295012799997],[143.55640709700006,-38.85393645599984],[143.53695722700004,-38.858330987999906],[143.51734459700018,-38.8501929669999],[143.4834090500002,-38.82366301899994],[143.47193444100017,-38.81796640399986],[143.46697024800002,-38.81462981599984],[143.456309441,-38.80006275799998],[143.45118248800011,-38.7968075499999],[143.413422071,-38.78378671699987],[143.37614993600005,-38.76433684699995],[143.35743248800011,-38.758233330999886],[143.33448326900012,-38.75595468499991],[143.241547071,-38.762790623000015],[143.223399285,-38.756280205999836],[143.20281009200008,-38.74285247199993],[143.18588300899998,-38.726495049999926],[143.1788843110002,-38.71111419099998],[143.11866295700023,-38.666436455999914],[143.08090253999995,-38.644789320999934],[143.0600692070001,-38.63591887799997],[142.94743899800008,-38.61874765399995],[142.900238477,-38.60116952900002],[142.87134850400017,-38.59661223799998],[142.85401451900012,-38.58733489399984],[142.84799238399998,-38.58513762799993],[142.81023196700002,-38.578383070999905],[142.7619735040001,-38.53704192499995],[142.73536217500023,-38.52581145599987],[142.65381920700023,-38.472751559999935],[142.58985436300023,-38.44312916499982],[142.55307050900015,-38.419528903999954],[142.53907311300006,-38.4146460919999],[142.532481316,-38.40984465899999],[142.52833092500018,-38.407891533999944],[142.5187280610002,-38.40748463299994],[142.51539147200006,-38.40642669099998],[142.50375410200016,-38.38486093499989],[142.50489342500006,-38.37851327899986],[142.50245201900023,-38.37444426899998],[142.48780358200023,-38.37281666499996],[142.4785262380001,-38.37656015399999],[142.4729110040001,-38.38534921699996],[142.46949303500017,-38.39641692499991],[142.46753991000006,-38.40642669099998],[142.44434655000012,-38.39706796699987],[142.43246504000015,-38.390313408999916],[142.41065514400012,-38.37175872199991],[142.39771569100017,-38.3671200499999],[142.31283613400004,-38.36695728999993],[142.2819116550002,-38.373793226999936],[142.26954186300023,-38.392754815999865],[142.22461998800023,-38.40569426899995],[142.17546634200002,-38.39869557099989],[142.09083092500012,-38.36541106599989],[141.98519941500015,-38.299004815999865],[141.9467879570002,-38.28289153399989],[141.93531334700012,-38.28142669099984],[141.8990991550002,-38.28289153399989],[141.88754316500015,-38.27996184699987],[141.86451256600017,-38.27109140399992],[141.761973504,-38.26181405999995],[141.7214461600001,-38.267510674999855],[141.67253665500013,-38.28427499799987],[141.63209069100017,-38.30877044099998],[141.61784915500007,-38.338148695999884],[141.6237899100001,-38.35361093499992],[141.6440535820001,-38.372979424999926],[141.65211022200006,-38.386488539999895],[141.6539819670002,-38.39983489399992],[141.6479598320001,-38.40276458099994],[141.62126712300008,-38.39902109199991],[141.61451256600006,-38.39714934699985],[141.60808353000002,-38.39373137799984],[141.60141035200013,-38.39226653399996],[141.5940047540001,-38.39576588299987],[141.57325280000006,-38.41326262799991],[141.5680444670002,-38.419528903999954],[141.5646264980002,-38.43141041499992],[141.55787194100006,-38.439711195999976],[141.54281660200004,-38.434340101999936],[141.53321373800014,-38.42376067499997],[141.51937910200016,-38.398125908999916],[141.5079858730002,-38.386488539999895],[141.4967554050002,-38.38054778399989],[141.48308353000007,-38.37623463299997],[141.46729576900012,-38.373793226999936],[141.44971764400006,-38.37281666499996],[141.43441816500004,-38.375095309999935],[141.42986087300008,-38.381280205999914],[141.4284774100001,-38.39072031000002],[141.42237389400012,-38.40276458099994],[141.4103296230002,-38.40650807099996],[141.39454186300023,-38.40162525799991],[141.3796492850001,-38.392998955999985],[141.37086022200006,-38.386488539999895],[141.3761499360002,-38.37688567499984],[141.39136803500017,-38.35865650799994],[141.3982853520001,-38.34433359199987],[141.3999129570001,-38.336358330999914],[141.39812259200014,-38.32048919099998],[141.39112389400023,-38.30608489399991],[141.374766472,-38.29119231599995],[141.21387780000023,-38.173028252999906],[141.13428795700005,-38.12761809699991],[140.98755944100006,-38.069919528999876],[140.97055097700016,-38.06015390399993],[140.951426629,-38.05429452899989],[140.71355228000007,-38.070570570999834],[140.69019616000006,-38.06812916499989],[140.669200066,-38.06178150799995],[140.6508895190002,-38.05217864399988],[140.63477623800003,-38.04021575299985],[140.62501061300023,-38.03687916499983],[140.60238691500007,-38.03777434699991],[140.59376061300006,-38.03337981599983],[140.58383222700013,-38.02320728999989],[140.57593834700018,-38.01824309699983],[140.55534915500007,-38.00920989399992],[140.47706139400006,-37.950860283999916],[140.45728600400005,-37.939141533999845],[140.41651451900006,-37.9276669249999],[140.398203972,-37.91985442499998],[140.39625084700018,-37.916192315999936],[140.39242597700016,-37.903090101999965],[140.39079837300002,-37.899346612999935],[140.38672936300003,-37.897637627999934],[140.37476647200006,-37.894952080999865],[140.37086022200006,-37.893161716999884],[140.3598738940001,-37.88209400799994],[140.35743248800017,-37.87517669099985],[140.35670006600006,-37.86174895599985],[140.35352623800006,-37.84710051899994],[140.33716881600003,-37.816094658999916],[140.28777103000016,-37.748793226999894],[140.28150475400003,-37.73154062299989],[140.24057050900004,-37.66594817499987],[140.21314537900005,-37.64251067499996],[140.1372176440001,-37.59531015399999],[140.1101994150001,-37.57040780999988],[140.1101994150001,-37.56357187299986],[140.1342879570001,-37.556735934999935],[140.13168379000004,-37.53736744599992],[140.11426842500023,-37.51751067499991],[140.09351647200006,-37.50839609200001],[140.08269290500007,-37.5050595029999],[140.06324303500006,-37.49098072699995],[140.052093946,-37.487888278999876],[140.04615319100012,-37.4869117169999],[140.03646894600004,-37.482517184999985],[140.0314233730002,-37.481622003],[140.02523847700004,-37.484633070999834],[140.02198326900012,-37.49146900799993],[140.0210067070001,-37.49830494599986],[140.02149498800011,-37.501560153999904],[139.98804772200006,-37.487074476999865],[139.79493248800023,-37.26873137799997],[139.77003014400012,-37.220879815999865],[139.74154707099999,-37.18084075299993],[139.74740644600004,-37.17083098799985],[139.76417076900023,-37.16464609199997],[139.78126061300011,-37.15260182099995],[139.78834069100017,-37.12623463299987],[139.77418053500006,-37.103692315999965],[139.75342858200023,-37.08163827899988],[139.7397567070001,-37.05641041499983],[139.73568769600013,-37.01873137799994],[139.72917728000007,-37.003838799999976],[139.71225019600016,-36.98805103999993],[139.6862085300002,-36.97649505],[139.67562910200016,-36.96819426899994],[139.67204837300008,-36.95338307099996],[139.78484134200005,-36.90203215899986],[139.81544030000006,-36.87900155999996],[139.84213300900004,-36.84587981599985],[139.85718834700006,-36.808770440999915],[139.86353600400014,-36.767266533999845],[139.85710696700008,-36.634942315999865],[139.85368899800002,-36.62175872199991],[139.72901451900012,-36.372328382999925],[139.63461347700002,-36.20354583099989],[139.56739342500012,-36.07529062299997],[139.54818769600004,-36.05820077899993],[139.51498457100004,-36.03533294099984],[139.47266686300011,-35.98455169099988],[139.46656334700006,-35.97014739399991],[139.4567163420002,-35.957940362999935],[139.27214603,-35.805108330999985],[139.19890384200008,-35.7467587219999],[139.16138756600006,-35.727797132999896],[139.1298934250002,-35.69931405999989],[139.098887566,-35.68645598799995],[139.06234785200016,-35.658135675],[139.031504754,-35.645440362999864],[138.99903405000012,-35.61728280999987],[138.96827233200023,-35.60662200299993],[138.91781660200004,-35.576755466999856],[138.95923912900005,-35.566664320999884],[139.00098717500006,-35.58538176899995],[139.34815514400023,-35.84783294099991],[139.44752037900005,-35.92734140399992],[139.4982202480002,-35.97722747199997],[139.56519616,-36.04973723799989],[139.60043379000015,-36.111016534],[139.66521243600008,-36.22779713299996],[139.67204837300008,-36.22779713299996],[139.66570071700002,-36.18385182099986],[139.6105249360002,-36.07634856599992],[139.6002710300002,-36.03785572699985],[139.59376061300011,-36.02255624799989],[139.4754337900001,-35.89641692499997],[139.45777428500017,-35.882989190999965],[139.41814212300002,-35.8716773419999],[139.40137780000012,-35.85735442499991],[139.37598717500006,-35.83001067499994],[139.18677819100017,-35.69068775799997],[139.16773522200015,-35.68596770599997],[139.10352623800023,-35.641289972],[139.09457441500004,-35.632094007999854],[139.05339603000007,-35.611993096999896],[139.04135175900004,-35.60409921700001],[139.03614342500023,-35.586846612999906],[139.04135175900004,-35.573988539999974],[139.05518639400023,-35.569431247999944],[139.075531446,-35.576755466999856],[139.07683353000002,-35.55144622199991],[139.08594811300011,-35.535332940999936],[139.11345462300002,-35.51116301899983],[139.13542728000007,-35.49830494599982],[139.15528405000018,-35.50335051899994],[139.18482506600006,-35.52825286299988],[139.20142662900017,-35.535251559999864],[139.219493035,-35.53948333099997],[139.234141472,-35.54753997199991],[139.24000084700006,-35.56552499799986],[139.23585045700023,-35.590020440999965],[139.22836347700016,-35.604180597],[139.22486412900017,-35.61541106599991],[139.23259524800008,-35.63128020599984],[139.241872592,-35.63583749799997],[139.25123131600014,-35.63437265399991],[139.25652103000002,-35.636407158999944],[139.25367272200018,-35.65178801899998],[139.2461043630002,-35.658135675],[139.23357181100008,-35.665785414999945],[139.22486412900017,-35.67587656],[139.22950280000006,-35.68938567499997],[139.24390709700006,-35.6945126279999],[139.29761803500006,-35.70061614399998],[139.31519616000017,-35.70029062299996],[139.33806399800008,-35.687432549999926],[139.3400985040001,-35.668715101999965],[139.33765709700003,-35.647637627999856],[139.34620201900006,-35.627862237999835],[139.3603621750001,-35.60784270599994],[139.35572350400017,-35.59335702899999],[139.28443444100017,-35.53850676899999],[139.27076256600006,-35.531345309999864],[139.23617597700016,-35.52459075299991],[139.22266686300006,-35.51799895599985],[139.21892337300002,-35.50725676899992],[139.23047936300017,-35.500583591999884],[139.26050865999997,-35.494235934999935],[139.26685631600006,-35.49041106599992],[139.26978600400017,-35.485935153999876],[139.27393639400012,-35.48211028399986],[139.28443444100017,-35.48056406],[139.2950952480002,-35.48113372199988],[139.35043379000004,-35.492933851999936],[139.36101321700008,-35.48951588299994],[139.37305748800006,-35.47673919099998],[139.37549889400012,-35.46396249799986],[139.36687259200016,-35.452569268999895],[139.35547936300023,-35.44150155999994],[139.34986412900003,-35.42896900799994],[139.36426842500012,-35.38892994599991],[139.3629663420002,-35.376885675],[139.35132897200018,-35.37021249799986],[139.33863366000006,-35.376885675],[139.31519616000017,-35.39788176899985],[139.30144290500007,-35.3566220029999],[139.26758873800006,-35.33131275799994],[139.22315514400023,-35.31878020599986],[139.177989129,-35.31536223799985],[139.18262780000023,-35.32057057099985],[139.18523196700002,-35.32439544099995],[139.189300977,-35.32708098799992],[139.19849694100017,-35.32903411299996],[139.18425540500007,-35.344008070999905],[139.13754316500015,-35.36728281],[139.1196395190001,-35.380547783999944],[139.10206139400006,-35.389255466999934],[139.07471764400012,-35.39234791499992],[139.046641472,-35.39072030999991],[139.02767988399998,-35.384372653999876],[138.98170006600006,-35.40007903399984],[138.96119225400017,-35.41383228999986],[138.95264733200017,-35.43580494599988],[138.9568791020001,-35.46379973799989],[138.96908613400015,-35.47535572699991],[139.01400800900015,-35.486748955999886],[139.03142337300002,-35.497002862999906],[139.03793379000004,-35.508396091999956],[139.03093509200002,-35.51751067499987],[139.00717207100016,-35.521416924999954],[138.99488366000017,-35.51921965899987],[138.97445722700004,-35.50994231599999],[138.91781660200004,-35.50107187299987],[138.90870201900023,-35.49472421700001],[138.89861087300008,-35.47918059699984],[138.89063561300011,-35.47307708099994],[138.881114129,-35.4711239559999],[138.8037215500001,-35.47576262799991],[138.79379316500004,-35.48398202899992],[138.8086043630001,-35.50107187299987],[138.8263452480002,-35.507012627999984],[138.89730879000015,-35.507745049999905],[138.91000410200004,-35.50994231599999],[138.91911868600013,-35.51539478999985],[138.9352319670002,-35.531670830999886],[138.94662519600016,-35.536390882999896],[138.95834394600016,-35.5337867169999],[138.96949303500017,-35.52939218499999],[138.97934003999998,-35.52825286299988],[138.99976647200006,-35.538750908999944],[138.99341881600006,-35.54753997199991],[138.97234134200016,-35.553887627999934],[138.948985222,-35.55624765399998],[138.9386499360002,-35.55494557099989],[138.91911868600013,-35.549981377999856],[138.90756269599999,-35.54876067499984],[138.89779707100016,-35.551039320999905],[138.8820093110002,-35.56064218499996],[138.86947675900004,-35.561781507999825],[138.85238691500012,-35.55673593499998],[138.81446373800023,-35.53899504999998],[138.791270379,-35.5350887999999],[138.745860222,-35.538750908999944],[138.66065514400023,-35.558526299999954],[138.63900800900015,-35.567071221999896],[138.62989342500023,-35.57976653399986],[138.62281334700018,-35.595635674999876],[138.60580488400004,-35.61003997199985],[138.56910241000006,-35.63128020599984],[138.53126061300006,-35.64592864399985],[138.4370223320001,-35.657810153999975],[138.280528191,-35.65178801899998],[138.280528191,-35.64430103999983],[138.26465905000006,-35.65374114399992],[138.24415123800023,-35.6625302059999],[138.22201582100013,-35.66904062299999],[138.20167076900023,-35.671644789999974],[138.17676842500012,-35.668226820999976],[138.15837649800008,-35.659844659],[138.10743248800017,-35.620700778999975],[138.10499108200023,-35.61044687299986],[138.11133873800014,-35.59775155999989],[138.11597741000017,-35.572930596999925],[138.12273196700014,-35.555352472],[138.13900800900015,-35.54045989399994],[138.15943444100006,-35.528903904],[138.257578972,-35.49065520599997],[138.28728274800002,-35.469903252999885],[138.31519616000017,-35.438897393999945],[138.33985436300006,-35.40276458099991],[138.35645592500023,-35.384535414999846],[138.37322024800008,-35.376885675],[138.388845248,-35.37297942499991],[138.40894616000017,-35.36386484199999],[138.4274194670002,-35.352634372999916],[138.43816165500002,-35.342705987999906],[138.44450931100008,-35.3220354149999],[138.44109134200008,-35.28167083099993],[138.445567254,-35.26083749799996],[138.45191491000006,-35.252536716999884],[138.45997155000006,-35.24675872199991],[138.46729576900006,-35.23967864399986],[138.47217858200023,-35.22722747199993],[138.471934441,-35.214613539999945],[138.46753991000006,-35.20468515399986],[138.46225019600016,-35.19540780999991],[138.45923912900003,-35.18564218499995],[138.4585067070001,-35.16668059699994],[138.46656334700006,-35.11052825299985],[138.4765731130002,-35.091892184999864],[138.50733483200008,-35.05657317499984],[138.5139266290001,-35.038262627999956],[138.509532097,-34.995538018999866],[138.49073326900023,-34.91375090899988],[138.48650149800002,-34.873467706],[138.493907097,-34.79159921699994],[138.50098717500006,-34.77092864399994],[138.51693769599999,-34.76913827899986],[138.53500410200004,-34.78085702900002],[138.5480249360002,-34.80144622199988],[138.550629102,-34.781914971999896],[138.54704837300014,-34.75945403399999],[138.5363061860002,-34.740899346999974],[138.51758873800023,-34.73316822699988],[138.50635826900023,-34.730564059999956],[138.49634850400017,-34.72372812299996],[138.48926842500012,-34.713962498],[138.48650149800002,-34.7028134089999],[138.48096764400012,-34.698418878],[138.45460045700023,-34.69101327899993],[138.445567254,-34.6859677059999],[138.44019616000006,-34.6755510399999],[138.43970787900017,-34.66570403399997],[138.44019616000006,-34.65545012799987],[138.43816165500002,-34.6444638],[138.43360436300006,-34.63648853999986],[138.3979598320002,-34.607842705999886],[138.36882571700008,-34.590508721999896],[138.35670006600017,-34.576104424999926],[138.34131920700023,-34.53785572699988],[138.32960045700023,-34.52060312299987],[138.29420006600006,-34.50457122199988],[138.27906334700006,-34.48357512799993],[138.25993899800008,-34.43840911299989],[138.2265731130001,-34.320489190999965],[138.205332879,-34.288181247999944],[138.1722111340001,-34.27125416499996],[138.15560957100004,-34.26043059699988],[138.15381920700023,-34.250258070999934],[138.16407311300023,-34.23015715899989],[138.15886478000007,-34.211846612999835],[138.10027103000002,-34.144138278999975],[138.07813561300023,-34.12835051899985],[138.06812584700006,-34.14080169099995],[138.06381269600016,-34.162855726999865],[138.05339603000004,-34.180922132999875],[138.01628665500007,-34.22730885199985],[138.00928795700005,-34.24431731599991],[138.01010175899998,-34.26327890399992],[138.02320397200006,-34.28435637799994],[138.0299585300002,-34.29111093499996],[138.03614342500023,-34.29892343499988],[138.0377710300002,-34.308038018999866],[137.99927819100017,-34.356540623000015],[137.930918816,-34.41480885199995],[137.9279077480002,-34.429620049999926],[137.89226321700008,-34.52605559699991],[137.88998457099999,-34.54143645599986],[137.89014733200023,-34.569268487999906],[137.88892662900005,-34.58098723799998],[137.88314863400015,-34.58977629999987],[137.91041100400017,-34.62395598799995],[137.89730878999995,-34.64430103999993],[137.88648522200018,-34.666599216999884],[137.8790796230002,-34.69060637799993],[137.87330162900005,-34.760186455999914],[137.87012780000006,-34.77410247199999],[137.8640242850001,-34.78671640399989],[137.84595787900017,-34.81194426899985],[137.84229576900012,-34.81894296699993],[137.83790123800023,-34.830743096999896],[137.81918379000015,-34.85125090899986],[137.81478925899998,-34.86012135199998],[137.81332441500004,-34.87420012799993],[137.80054772200018,-34.918145440999965],[137.77442467500023,-34.976250909],[137.76612389400023,-35.008070570999855],[137.77393639400023,-35.03484465899996],[137.75220787900017,-35.04794687299993],[137.74691816499998,-35.05885182099982],[137.75277754000015,-35.093194268999866],[137.75082441499998,-35.12607187299986],[137.7495223320001,-35.13103606599999],[137.74724368600013,-35.132989190999936],[137.71876061300011,-35.144707940999936],[137.69361412900005,-35.17229583099986],[137.68458092500012,-35.17888762799993],[137.67139733200005,-35.18084075299997],[137.6198836600001,-35.166599216999956],[137.581797722,-35.140394789999846],[137.56104576900012,-35.13103606599999],[137.54957116000017,-35.12965260199992],[137.52019290500007,-35.13103606599999],[137.50896243600005,-35.127862237999935],[137.49105879000004,-35.11923593500002],[137.4819442070001,-35.11736419099994],[137.44418379000015,-35.116387627999984],[137.42554772200018,-35.118259372999944],[137.40349368600008,-35.124200127999885],[137.38355553500017,-35.13616301899999],[137.35075931100008,-35.16611093499998],[137.33204186300011,-35.17205169099991],[137.26099694100006,-35.165785414999945],[137.23894290500007,-35.17205169099991],[137.20883222700004,-35.197686455999964],[137.1917423840001,-35.2243791649999],[137.16920006600017,-35.24228280999986],[137.12281334700006,-35.24089934699988],[137.0620223320001,-35.22665780999988],[137.03972415500007,-35.22722747199993],[136.9809676440002,-35.25530364399985],[136.95337975400005,-35.28394947699982],[136.91358483200023,-35.29656340899999],[136.87387129000015,-35.29469166499992],[136.85596764400003,-35.27109140399989],[136.85303795700014,-35.26604583099994],[136.83936608200023,-35.256117445999855],[136.83545983200023,-35.24773528399999],[136.83708743600008,-35.24130624799989],[136.8463647800002,-35.22649504999991],[136.84848066500004,-35.216729424999954],[136.85547936300011,-35.20468515399986],[136.88982181100008,-35.18865325299987],[136.90308678500017,-35.17888762799993],[136.8956811860002,-35.17205169099991],[136.90430748800011,-35.165785414999945],[136.9225366550002,-35.15667083099987],[136.92986087300008,-35.151543877999934],[136.93384850400017,-35.14592864399995],[136.939707879,-35.13201262799997],[136.9609481130001,-35.09644947699991],[136.96265709700018,-35.08180103999989],[136.95777428500006,-35.062758070999905],[136.94890384200008,-35.04745859199994],[136.94190514400012,-35.03866952899996],[136.94125410200016,-35.02988046699991],[136.9515080090001,-35.014906507999875],[136.97575931100008,-34.99675872199988],[136.980723504,-34.984958592],[136.97144616000017,-34.965915622999916],[137.01417076900006,-34.917901299999926],[137.01978600400017,-34.90146249799993],[137.03060957100016,-34.89983489399991],[137.09498131600014,-34.92498137799997],[137.13949629000015,-34.92603932099985],[137.22364342500012,-34.906996351999936],[137.26685631600014,-34.905043226999894],[137.28744550900004,-34.91122812299987],[137.29712975400014,-34.92017994599989],[137.30787194100012,-34.92831796699991],[137.35718834700018,-34.93759530999996],[137.37403405000006,-34.948011976999865],[137.3912866550002,-34.95403411299994],[137.41773522200018,-34.94548919099985],[137.44613691500004,-34.91741301899994],[137.45297285200002,-34.88339609199991],[137.45232181100008,-34.84441497199984],[137.45801842500023,-34.80144622199988],[137.47437584700018,-34.77263762799994],[137.47852623800011,-34.76116301899997],[137.47925866000006,-34.74920012799987],[137.4777124360002,-34.724704684999935],[137.47852623800011,-34.71266041499983],[137.5127059250001,-34.617771091999884],[137.49903405000023,-34.58977629999987],[137.49398847700004,-34.55413176899991],[137.480235222,-34.5265438779999],[137.4824324880001,-34.48398202899993],[137.47852623800011,-34.46624114399994],[137.4594832690001,-34.447523695999976],[137.4448348320001,-34.45183684699997],[137.43116295700005,-34.465020440999915],[137.41431725400017,-34.47242603999983],[137.41529381600006,-34.46331145599993],[137.4358016290001,-34.419203382999925],[137.44499759200008,-34.40422942499998],[137.4487410820001,-34.403252862999835],[137.46111087300002,-34.40504322699982],[137.46485436300006,-34.40422942499998],[137.46705162900017,-34.39983489399991],[137.47022545700023,-34.388278903999975],[137.476328972,-34.37664153399989],[137.48389733200005,-34.35540129999998],[137.49219811300023,-34.28248463299988],[137.49219811300023,-34.26018645599984],[137.48910566500015,-34.23772551899992],[137.48316491000006,-34.21461353999989],[137.47413170700023,-34.19296640399997],[137.453868035,-34.1639950499999],[137.45240319100006,-34.15569426899991],[137.45557701900012,-34.14837004999991],[137.46143639400017,-34.14080169099995],[137.47055097700013,-34.13787200299994],[137.49463951900006,-34.1488583309999],[137.50652103000002,-34.15032317499987],[137.51954186300011,-34.13787200299994],[137.54859459700018,-34.08717213299988],[137.5542098320001,-34.072035414999974],[137.55372155000012,-34.05868905999996],[137.55160566499998,-34.04957447699988],[137.54053795700017,-34.027520440999965],[137.53443444100017,-34.017998955999886],[137.53191165500004,-34.01539478999989],[137.54053795700017,-34.00074635199988],[137.55274498800023,-33.98455169099984],[137.57129967500023,-33.966403904],[137.5905054050002,-33.95175546699991],[137.615082227,-33.94150155999989],[137.622894727,-33.93157317499997],[137.62794030000023,-33.92009856599985],[137.62940514400012,-33.910821221999974],[137.62525475400005,-33.89910247199998],[137.61817467500003,-33.891371351999894],[137.60987389400012,-33.88486093499998],[137.60206139400012,-33.8766415339999],[137.61752363400015,-33.86923593499999],[137.6311141290001,-33.85767994599989],[137.65357506600012,-33.832207940999965],[137.70411217500012,-33.79314544099992],[137.71534264400012,-33.78728606599988],[137.75196373800023,-33.72616952899992],[137.776621941,-33.69353606599988],[137.7944442070001,-33.698500257999925],[137.80054772200018,-33.698500257999925],[137.86296634200002,-33.62615325299987],[137.8788423220001,-33.597869852999864],[137.90367809700015,-33.587693767999966],[137.9100666940001,-33.596237401999886],[137.89807892700006,-33.613657342999886],[137.90605864800003,-33.627566187999975],[137.930918816,-33.61646900799991],[137.93327884200008,-33.603204033999965],[137.93065669900002,-33.57796897099993],[137.93677263300003,-33.55246487699995],[137.93749203600024,-33.52784029499989],[137.92901688800023,-33.511233649999866],[137.91846081400016,-33.487879578999944],[137.90367165500007,-33.45599823699987],[137.8925318360002,-33.438465459999954],[137.8835128200001,-33.424976493999964],[137.873997903,-33.41309620599992],[137.86233953000024,-33.3960096939999],[137.8646677510002,-33.37408177399995],[137.86962458500003,-33.35843708799993],[137.86171178700022,-33.34316440799996],[137.84365399800006,-33.32335511999989],[137.81818788000007,-33.29363528999987],[137.81044378099998,-33.25998496399998],[137.82178795700005,-33.24667734199997],[137.83008873800023,-33.226006768999966],[137.84083092500023,-33.205987237999906],[137.8549910820001,-33.19060637799987],[137.89429772200018,-33.17929452899997],[137.95215905000012,-33.14364999799993],[137.95753014400023,-33.14364999799993],[137.96680748800011,-33.14902109199997],[137.97266686300023,-33.14983489399998],[137.97730553500017,-33.14714934699991],[137.98878014400012,-33.137627862999835],[137.99244225400017,-33.135511976999815],[138.00416100400017,-33.13933684699984],[138.01465905000023,-33.14592864399999],[138.02515709700012,-33.14853281],[138.03711998800023,-33.13958098799988],[138.04330488400004,-33.12981536299991],[138.04395592500023,-33.12509530999992],[138.04175866000017,-33.12053801899988],[138.04021243600013,-33.11223723799999],[138.0411889980002,-33.08928801899991],[138.04021243600013,-33.081638278999975],[138.03549238400004,-33.06609465899997],[138.02898196700014,-33.050713799999926],[138.02051842500006,-33.03655364399999],[138.01010175899998,-33.024102471999896],[138.00082441500004,-33.02019622199998],[137.97836347700004,-33.02117278399996],[137.96924889400023,-33.017266533999965],[137.961192254,-33.00945403399989],[137.9577742850001,-33.00465260199997],[137.90235436300023,-32.787530205999936],[137.90235436300023,-32.774021091999956],[137.91334069100017,-32.7652320289999],[137.93848717500023,-32.752618096999925],[137.89682050900004,-32.72161223799999],[137.88998457099999,-32.71526458099987],[137.88746178500017,-32.709893487999985],[137.88086998800011,-32.707207940999915],[137.87322024800008,-32.70501067499994],[137.86247806100008,-32.699639580999886],[137.85189863400004,-32.69890715899986],[137.84913170700023,-32.69793059699988],[137.84766686300006,-32.693942966999984],[137.84815514400017,-32.689711195999976],[137.84815514400017,-32.68547942499987],[137.84571373800023,-32.68124765400002],[137.84498131600012,-32.676364841999956],[137.8497827480002,-32.65878671699993],[137.84913170700023,-32.650160414999846],[137.84351647200006,-32.640883070999976],[137.82178795700005,-32.62281666499996],[137.810801629,-32.609063408999944],[137.80396569100017,-32.59465911299996],[137.80591881600006,-32.580661717],[137.82178795700005,-32.56829192499988],[137.81275475400017,-32.560235283999944],[137.80323326900017,-32.55803801899995],[137.79428144600004,-32.557305596999925],[137.78695722700002,-32.55388762799991],[137.78321373800011,-32.54583098799996],[137.77906334700006,-32.52548593499989],[137.77393639400023,-32.51978932099982],[137.76441491000006,-32.524183851999894],[137.76010175900015,-32.54062265399989],[137.75757897200006,-32.560235283999944],[137.75277754000015,-32.574395440999965],[137.76042728000007,-32.593519789999924],[137.76221764400023,-32.61760833099987],[137.76026451900012,-32.660332940999965],[137.75294030000012,-32.68287525799987],[137.75391686300006,-32.693454685],[137.78003991000006,-32.702406507999854],[137.78980553500017,-32.71306731599988],[137.7965600920002,-32.726495049999954],[137.80054772200018,-32.738946221999974],[137.80665123800006,-32.77988046699991],[137.80925540500007,-32.846937757999896],[137.8082788420002,-32.85800546700001],[137.8043725920002,-32.86614348799995],[137.79607181100013,-32.87769947699988],[137.78711998800011,-32.90113697699995],[137.78012129000004,-32.9108212219999],[137.77173912900005,-32.91285572699985],[137.76579837300014,-32.90781015399999],[137.76002037900017,-32.90593840899993],[137.75277754000015,-32.91765715899992],[137.75196373800023,-32.92717864399984],[137.75416100400005,-32.938083591999984],[137.758555535,-32.94817473799996],[137.77515709700006,-32.97047291499982],[137.77833092500012,-32.98284270599994],[137.769786004,-32.9908179669999],[137.74610436300006,-32.992771091999856],[137.7330835300002,-32.991794528999876],[137.72413170700005,-32.989841404],[137.70492597700004,-32.97975025799987],[137.67400149800008,-32.95525481599984],[137.65626061300006,-32.95134856599992],[137.63209069100017,-32.961521091999884],[137.60922285200016,-32.977797132999825],[137.59506269600004,-32.992771091999856],[137.59449303500017,-32.99911874799997],[137.59620201900006,-33.01962656000002],[137.59506269600004,-33.02752044099991],[137.59034264400023,-33.034844659],[137.5127059250001,-33.108819268999895],[137.49195397200012,-33.119561455999985],[137.4697371750002,-33.12810637799993],[137.4521590500001,-33.140069268999866],[137.44499759200008,-33.16073984199997],[137.4440210300002,-33.185153904],[137.44060306100016,-33.204685153999904],[137.43433678500003,-33.22185637799984],[137.38803144600016,-33.29387786299995],[137.3829858730002,-33.31145598799998],[137.37671959700018,-33.38990650799993],[137.36963951900012,-33.41326262799984],[137.35922285200004,-33.431247653999876],[137.31666100400017,-33.48121510199982],[137.30567467500012,-33.499200127999856],[137.2516382170002,-33.61248137799984],[137.224864129,-33.65325286299998],[137.20142662900005,-33.67115650799994],[137.18433678500017,-33.67750416499989],[137.15503991000017,-33.70574309699985],[137.1324975920002,-33.71217213299987],[137.08350670700023,-33.71648528399996],[137.0201929050002,-33.7301571589999],[137.0131942070001,-33.72942473799996],[137.00554446700005,-33.72633228999989],[136.99390709700003,-33.71941497199996],[136.99097741000006,-33.71355559699994],[136.99008222700016,-33.70712656],[136.9851180350001,-33.698500257999925],[136.96534264400006,-33.68450286299995],[136.94556725400003,-33.68230559699997],[136.93043053500006,-33.6925595029999],[136.92432701900015,-33.71550872199998],[136.92017662900003,-33.7245419249999],[136.91089928500017,-33.732110283999944],[136.90023847700004,-33.73748137799998],[136.89258873800011,-33.739434502999856],[136.88314863399998,-33.74431731599992],[136.88314863399998,-33.75481536299989],[136.886973504,-33.76555755],[136.88941491000006,-33.77044036299988],[136.946543816,-33.7512346329999],[136.96461022200006,-33.75310637799997],[136.91236412900005,-33.780938408999944],[136.89942467500012,-33.79094817499984],[136.87891686300006,-33.80250416499986],[136.85547936300011,-33.80486419099991],[136.83106530000023,-33.80462004999986],[136.80746504000004,-33.8083635399999],[136.79004967500023,-33.818129164999846],[136.77711022200006,-33.82935963299994],[136.7612410820001,-33.83855559699991],[136.73519941500004,-33.84246184699991],[136.72478274800002,-33.846856377999984],[136.7111108730002,-33.866143487999835],[136.70118248800011,-33.870375257999854],[136.69564863399998,-33.87200286299988],[136.67042076900012,-33.883477472],[136.60743248800011,-33.902927341999906],[136.59131920700023,-33.91448333099993],[136.58521569100006,-33.921807549999855],[136.58253014400017,-33.928480726999894],[136.5815535820001,-33.94890715899996],[136.54004967500012,-33.972832940999936],[136.51124108200017,-33.998223565999865],[136.49350019600016,-34.009698175],[136.45118248800017,-34.01783619599983],[136.43165123800006,-34.02703215899999],[136.36939537900017,-34.073418877999956],[136.3619897800002,-34.0826962219999],[136.3580835300002,-34.093357028999925],[136.357188347,-34.11370208099984],[136.35434004000015,-34.12428150799998],[136.34864342500006,-34.133233330999914],[136.33423912900005,-34.14820728999986],[136.3278100920002,-34.15781015400002],[136.31812584700006,-34.18547942499992],[136.29346764400023,-34.20891692499998],[136.23218834700006,-34.30868906],[136.19922936300006,-34.33098723799995],[136.13803144600004,-34.35475025799994],[136.1147567070001,-34.383721612999935],[136.12663821700008,-34.398370049999954],[136.120371941,-34.408623955999886],[136.11085045700023,-34.417575779],[136.11166425900004,-34.42815520599987],[136.12232506600017,-34.44215260199984],[136.1248478520001,-34.452894789999846],[136.12232506600017,-34.48333098799998],[136.11573326900012,-34.51677825299994],[136.101410352,-34.53484465899996],[136.08716881600012,-34.53240325299992],[136.0807397800002,-34.50416432099988],[136.06934655000012,-34.48186614399992],[136.04281660200013,-34.486504815999865],[135.99138431100008,-34.51344166499992],[135.96607506600006,-34.515557549999926],[135.951426629,-34.52068450299985],[135.936778191,-34.53460051899984],[135.93043053500017,-34.54900481599998],[135.92432701900003,-34.57887135199998],[135.91627037900005,-34.58977629999987],[135.93970787900005,-34.620049737999864],[135.94361412900005,-34.63746510199984],[135.93051191500015,-34.65252044099985],[135.9109806650001,-34.63339609199987],[135.89079837300002,-34.631117445999976],[135.87476647200006,-34.64373137799997],[135.86841881600006,-34.6686337219999],[135.86736087300008,-34.678806247999944],[135.8620711600001,-34.69817473799987],[135.86101321700002,-34.70964934699991],[135.86491946700002,-34.71868254999984],[135.88314863400004,-34.73544687299986],[135.88892662900017,-34.74684010199982],[135.88298587300008,-34.768487237999906],[135.861175977,-34.76946379999988],[135.83790123800011,-34.766696872999916],[135.82691491000006,-34.77752044099999],[135.82252037900005,-34.787692966999956],[135.80388431100008,-34.799248955999886],[135.7994897800002,-34.805271091999984],[135.80518639400023,-34.816989841999884],[135.81836998800011,-34.82170989399998],[135.84742272200015,-34.82195403399993],[135.86736087300008,-34.819431247999916],[135.88697350400005,-34.81324635199985],[135.90495853000007,-34.80388762799991],[135.94190514400012,-34.77044036299995],[135.94703209700006,-34.767347914999874],[135.959239129,-34.771905205999914],[135.96631920700005,-34.780531507999825],[135.97339928500006,-34.786065362999935],[135.98511803499997,-34.780938409],[135.99048912900017,-34.77125416499996],[135.98853600400003,-34.748793226999865],[135.99138431100008,-34.74000416499989],[135.99976647200006,-34.73512135199984],[136.00904381600017,-34.73674895599986],[136.01636803500017,-34.74407317499994],[136.019297722,-34.75741952899996],[136.01807701900012,-34.8013648419999],[136.01221764400023,-34.818454684999935],[135.99878991000006,-34.83562590899987],[135.98275800900015,-34.8501929669999],[135.97201582100016,-34.86239999799987],[135.96949303500006,-34.87664153399996],[135.99878991000006,-34.94548919099985],[135.99789472700016,-34.946709893999866],[135.99838300900015,-34.96217213299988],[136.00033613399998,-34.96575286299995],[136.01246178500017,-34.97966887799984],[136.00310306100008,-34.990817966999856],[135.97730553500006,-34.99700286299992],[135.96461022200018,-35.00750090899997],[135.94516035200016,-34.99773528399986],[135.92750084700006,-34.955173434999985],[135.91285241000006,-34.94548919099985],[135.902598504,-34.94329192499985],[135.87867272200006,-34.93181731599991],[135.86402428500006,-34.92945728999985],[135.85962975400014,-34.923435153999925],[135.85865319100017,-34.914971612999906],[135.85474694100014,-34.905043226999894],[135.82227623800011,-34.87428150799991],[135.78272545700017,-34.857598565999965],[135.741465691,-34.86101653399997],[135.70394941499998,-34.89080169099998],[135.6977645190001,-34.911309502999856],[135.69459069100006,-34.914971612999906],[135.6901147800002,-34.916761976999894],[135.68409264400006,-34.918145440999965],[135.6857202480002,-34.92652760199983],[135.68978925900015,-34.938164971999925],[135.69019616000014,-34.94850025799985],[135.68067467500006,-34.95289478999992],[135.63257897200012,-34.95289478999992],[135.62354576900012,-34.94793059699988],[135.62159264400023,-34.93596770599994],[135.62240644600016,-34.92213307099993],[135.6220809250002,-34.911309502999856],[135.60401451900012,-34.88014088299987],[135.51221764400023,-34.795179945999834],[135.47641035200016,-34.749769789999846],[135.45753014400012,-34.73154062299986],[135.429535352,-34.71266041499983],[135.38379967500006,-34.696465752999956],[135.37159264400012,-34.68914153399987],[135.35987389400012,-34.68523528399987],[135.3322046230002,-34.6898739559999],[135.31967207100004,-34.6859677059999],[135.34229576900003,-34.651299737999835],[135.3400985040001,-34.63811614399988],[135.32349694100006,-34.62078215899989],[135.28785241000017,-34.59246184699994],[135.2514754570001,-34.56991952899986],[135.23047936300014,-34.56503671699997],[135.21216881600012,-34.56780364399985],[135.1940210300002,-34.573174737999906],[135.17335045700005,-34.576104424999926],[135.15723717500012,-34.58318450299997],[135.13892662900005,-34.596368096999925],[135.121348504,-34.60442473799988],[135.1080835300002,-34.59596119599992],[135.10987389400006,-34.57830169099991],[135.1409611340001,-34.54094817499987],[135.1490991550002,-34.52467213299984],[135.15316816500015,-34.502211195999834],[135.16382897200015,-34.489434502999885],[135.17709394600004,-34.47966887799994],[135.18995201900023,-34.46624114399994],[135.1936141290001,-34.45647551899991],[135.19605553500006,-34.445082289999945],[135.200450066,-34.43564218500001],[135.20980879000015,-34.43157317499997],[135.21851647200006,-34.436130467],[135.21753991000006,-34.44687265399993],[135.20980879000015,-34.469414972],[135.21371504000015,-34.49236419099991],[135.22478274800008,-34.50432708099984],[135.2421981130002,-34.509860934999864],[135.31397545700023,-34.52353280999989],[135.32715905000006,-34.527764580999914],[135.309336785,-34.53866952899989],[135.3027449880002,-34.55071379999998],[135.3063257170002,-34.56340911299995],[135.31967207100004,-34.576104424999926],[135.3491317070001,-34.58570728999982],[135.35547936300023,-34.592380466999956],[135.34083092500012,-34.6034481749999],[135.35157311300023,-34.61467864399998],[135.37086022200018,-34.62818775799996],[135.39128665500007,-34.639580987999935],[135.4057723320001,-34.6444638],[135.41553795700023,-34.64226653399991],[135.43604576900006,-34.63290780999996],[135.49789472700016,-34.62395598799995],[135.50359134200008,-34.61191171699992],[135.48113040500007,-34.60564544099989],[135.43702233200017,-34.59978606599985],[135.43799889400023,-34.58855559699985],[135.44223066500015,-34.568942966999884],[135.44320722700002,-34.558770440999936],[135.43848717500012,-34.545668226999965],[135.42807050900004,-34.548923435],[135.4187117850001,-34.55779387799986],[135.41602623800011,-34.56178150799993],[135.4078882170002,-34.57040781000002],[135.40658613400004,-34.57756926899997],[135.4049585300002,-34.580336195999934],[135.39551842500018,-34.576104424999926],[135.38917076900023,-34.569268487999906],[135.3850203790001,-34.558770440999936],[135.38257897200006,-34.547295830999985],[135.38184655000023,-34.53801848799985],[135.37973066500004,-34.533461195999976],[135.37663821700002,-34.52312590899989],[135.37696373800017,-34.512627862999906],[135.39161217500018,-34.50416432099988],[135.394867384,-34.49504973799998],[135.39584394599999,-34.48333098799998],[135.39551842500018,-34.47242603999983],[135.38843834700012,-34.45142994599996],[135.36605878999995,-34.42197030999998],[135.36133873800006,-34.40789153399986],[135.34644616000006,-34.27556731599987],[135.32862389400023,-34.22128671699993],[135.30128014400006,-34.17978281000002],[135.26514733200023,-34.178317966999884],[135.245371941,-34.159356377999956],[135.23747806100002,-34.1488583309999],[135.23096764400023,-34.136814059999885],[135.24903405000018,-34.13453541499991],[135.26547285200016,-34.127048434999935],[135.2731225920002,-34.11589934699984],[135.26514733200023,-34.10320403399987],[135.27116946700002,-34.091566664999945],[135.2705184250001,-34.08196379999988],[135.26742597700004,-34.072849216999984],[135.26514733200023,-34.062188408999944],[135.26514733200023,-34.0175106749999],[135.25953209700006,-33.997979425],[135.24610436300023,-33.980564059999935],[135.21794681100008,-33.952325127999885],[135.1897892590001,-33.89299895599991],[135.17701256600006,-33.883477472],[135.15430748800011,-33.87932708099997],[135.13851972700004,-33.869073174999855],[135.06430097700004,-33.79436614399994],[135.00505618600002,-33.746270440999965],[134.9455672540001,-33.71119557099989],[134.93620853000007,-33.70191822699992],[134.91285241000017,-33.68710702899995],[134.90552819100017,-33.68124765399992],[134.88819420700005,-33.65699635199984],[134.88209069100017,-33.650648695999884],[134.84986412900003,-33.63836028399993],[134.84083092500023,-33.631280205999886],[134.85425866000006,-33.622735283999944],[134.84734134200002,-33.602715752999984],[134.8530379570001,-33.5840796849999],[134.86264082099996,-33.565036716999906],[134.86793053500017,-33.544610283999845],[134.86524498800006,-33.49976978999992],[134.86101321700008,-33.479424737999835],[134.85425866000006,-33.458916924999954],[134.82422936300006,-33.392998955999914],[134.8139754570002,-33.35279713299984],[134.7990014980002,-33.3360328099999],[134.764903191,-33.30803801899998],[134.730723504,-33.27337004999991],[134.71973717500023,-33.26677825299984],[134.69613691500004,-33.25676848799995],[134.68604576900023,-33.25009530999998],[134.67660566500015,-33.23333098799988],[134.69239342500006,-33.22861093499996],[134.716075066,-33.228448175],[134.730723504,-33.22551848799998],[134.7286889980002,-33.213474216999956],[134.71924889400006,-33.192640882999896],[134.7062280610002,-33.17294687299985],[134.69320722699996,-33.16415780999997],[134.67017662900005,-33.16179778399993],[134.6077580090001,-33.14364999799993],[134.5815535820002,-33.14592864399999],[134.57064863400015,-33.16041432099995],[134.5743921230002,-33.176853122999944],[134.59083092500003,-33.184665623000015],[134.61866295700023,-33.18287525799994],[134.63038170700023,-33.18547942499985],[134.63510175900015,-33.194512627999956],[134.63843834700018,-33.20582447699985],[134.64600670700023,-33.21168385199998],[134.65503991000003,-33.216729425],[134.66236412900003,-33.22551848799998],[134.65235436300023,-33.227146092],[134.64405358200005,-33.23113372199997],[134.636566602,-33.237725518999866],[134.62826582100004,-33.24667734199997],[134.60482832100016,-33.21266041499994],[134.58936608200023,-33.202080987999906],[134.54175866000006,-33.19296640399992],[134.47754967500012,-33.15732187299987],[134.4460555350001,-33.153985283999845],[134.42286217500023,-33.16171640399995],[134.40211022200018,-33.17245859199987],[134.37794030000023,-33.17782968499992],[134.37842858200023,-33.17197030999988],[134.36963951900006,-33.16082122199995],[134.359141472,-33.153985283999845],[134.35401451900012,-33.16073984199997],[134.35385175900004,-33.17546965899987],[134.3522241550002,-33.18816497199984],[134.3462020190001,-33.198011976999936],[134.3335067070002,-33.20501067499984],[134.2788192070001,-33.16269296700001],[134.27149498800011,-33.14666106599992],[134.2697046230002,-33.12566497199989],[134.26514733200017,-33.10711028399989],[134.24195397200006,-33.058200778999904],[134.23373457100004,-33.04729583099993],[134.22144616000017,-33.041599216999856],[134.1997176440001,-33.039971612999835],[134.17066491000006,-33.04314544099989],[134.1603296230002,-33.04013437299989],[134.14861087300002,-33.02752044099991],[134.16480553500017,-33.01832447699992],[134.19849694100017,-33.01148853999992],[134.20997155000023,-33.00017669099992],[134.21192467500006,-32.981540622999944],[134.20435631600006,-32.96217213299984],[134.19068444100017,-32.94646575299987],[134.17514082099999,-32.93816497199997],[134.16407311300023,-32.938653252999956],[134.15674889400023,-32.94353606599985],[134.15186608200005,-32.9491513],[134.14861087300002,-32.95183684699991],[134.1386824880002,-32.94947682099996],[134.1206160820001,-32.93816497199997],[134.08253014400012,-32.935967705999985],[134.068695509,-32.92929452899993],[134.05982506600017,-32.9108212219999],[134.06763756600014,-32.90634530999993],[134.07894941500012,-32.89080169099985],[134.08708743600005,-32.88290780999988],[134.115000847,-32.8663876279999],[134.12403405000012,-32.85930754999984],[134.13282311300006,-32.835625908999916],[134.1245223320001,-32.80689869599995],[134.10824629000015,-32.779392185],[134.069590691,-32.73308684699985],[134.0665796230002,-32.72584400799991],[134.0740666020001,-32.71396249799987],[134.08708743600005,-32.71257903399997],[134.11719811300011,-32.71843840899984],[134.19320722700002,-32.72136809699995],[134.21680748800023,-32.72584400799991],[134.20460045700005,-32.741387627999906],[134.20036868600008,-32.749281507999896],[134.19629967500012,-32.76002369599982],[134.19532311300011,-32.76930103999996],[134.19548587300008,-32.7829729149999],[134.19695071700002,-32.79558684699988],[134.1997176440001,-32.800957940999936],[134.2140405610002,-32.806247654],[134.22071373800023,-32.80396900799993],[134.22632897200006,-32.77971770599986],[134.23226972700016,-32.76848723799994],[134.24480228000007,-32.752618096999925],[134.26465905000006,-32.73919036299992],[134.27149498800011,-32.73211028399987],[134.27613366,-32.72291432099989],[134.28353925900004,-32.70224374799989],[134.29761803500006,-32.678480726999965],[134.29664147200018,-32.660332940999965],[134.27328535200016,-32.58806731599991],[134.25407962300014,-32.55429452899992],[134.22982832100004,-32.523695570999905],[134.19564863400015,-32.49586353999993],[134.148285352,-32.456963799999855],[134.13111412900017,-32.45159270599997],[134.11801191500004,-32.45208098799988],[134.10865319100017,-32.454359632999854],[134.10027103000013,-32.459649346999925],[134.0905054050002,-32.468519789999874],[134.08285566500015,-32.47047291499983],[134.06324303500017,-32.46160247199997],[134.05298912900017,-32.459079684999864],[134.031993035,-32.46640390399995],[134.0177514980002,-32.48259856599999],[134.00635826900023,-32.49879322699995],[133.99447675900004,-32.50611744599988],[133.9692488940002,-32.502699476999865],[133.95232181100008,-32.49822356599998],[133.93669681100008,-32.50090911299988],[133.915782097,-32.51978932099982],[133.90984134200016,-32.52939218499998],[133.90674889400012,-32.53720468499988],[133.90121503999998,-32.54306405999992],[133.88770592500012,-32.54705169099998],[133.8753361340001,-32.54843515399996],[133.8644311860002,-32.5468075499999],[133.85670006600017,-32.54111093499988],[133.85368899800008,-32.529717706],[133.85482832100004,-32.525567315999965],[133.86117597700013,-32.51336028399999],[133.86394290500016,-32.50953541499997],[133.86508222700016,-32.505791924999855],[133.86158287900017,-32.49480559699998],[133.8605249360002,-32.48886484199987],[133.85914147199998,-32.459079684999864],[133.8605249360002,-32.45159270599997],[133.86915123800011,-32.43254973799998],[133.88306725400017,-32.410251559999864],[133.89625084700006,-32.39918385199991],[133.90211022200018,-32.41399504999998],[133.91089928500003,-32.42245859199993],[133.92986087300008,-32.42001718499997],[133.94662519600016,-32.40837981599989],[133.94996178499997,-32.38941822699988],[133.93995201900012,-32.37566497199987],[133.90870201900023,-32.34295012799984],[133.90211022200018,-32.3248837219999],[133.89503014400012,-32.31365325299991],[133.84742272200006,-32.27337004999984],[133.83228600400003,-32.249932549999954],[133.8264266290001,-32.245375257999825],[133.81226647200015,-32.2471656229999],[133.80241946700008,-32.25457122199997],[133.79509524800002,-32.26279062299989],[133.78882897200018,-32.266534112999906],[133.77670332099999,-32.26425546699994],[133.769297722,-32.25758228999989],[133.765391472,-32.24797942499991],[133.76368248800011,-32.220635674999926],[133.76075280000003,-32.2164852839999],[133.754567905,-32.215752862999956],[133.73503665500004,-32.20769622199984],[133.71257571700002,-32.20183684699998],[133.70346113400015,-32.19768645599986],[133.69361412900005,-32.19109465899996],[133.69206790500016,-32.189385674999954],[133.69434655000023,-32.18580494599989],[133.69605553500017,-32.17408619599982],[133.69263756600006,-32.163506768999866],[133.68433678500017,-32.160088799999855],[133.67416425900004,-32.15837981599985],[133.6648869150001,-32.15325286299992],[133.66211998800011,-32.143731377999835],[133.66944420700023,-32.1364885399999],[133.67872155000006,-32.129978122999916],[133.68238366000006,-32.122653904],[133.67123457100004,-32.11003997199984],[133.649180535,-32.10165780999988],[133.62378991000017,-32.096856377999885],[133.60328209700006,-32.09531015400002],[133.58619225400017,-32.10312265399993],[133.58139082099999,-32.12175872199991],[133.57984459700006,-32.14430103999982],[133.57252037900005,-32.163506768999866],[133.56137129000004,-32.17213307099995],[133.55201256600012,-32.172295830999914],[133.5092879570001,-32.15252044099999],[133.49634850400017,-32.14470794099991],[133.49057050900004,-32.13933684699994],[133.486664259,-32.11484140399992],[133.47681725399997,-32.11191171699989],[133.4503686860001,-32.12948984199993],[133.43946373800023,-32.130629164999874],[133.427989129,-32.13014088299988],[133.41871178500006,-32.13347747199991],[133.41480553500003,-32.146416924999905],[133.41822350400017,-32.15691497199997],[133.42676842500006,-32.160902601999865],[133.4503686860001,-32.163506768999866],[133.47266686300017,-32.17302825299994],[133.49073326900006,-32.18694426899992],[133.49431399800008,-32.1996395809999],[133.47348066500015,-32.205173435],[133.46420332100004,-32.20256926899991],[133.44849694100006,-32.192071221999846],[133.4358830090001,-32.19085051899984],[133.43132571700002,-32.1944312479999],[133.42709394600004,-32.20134856599999],[133.42139733200023,-32.208184503],[133.41179446700005,-32.211358330999886],[133.3567814460001,-32.205987237999835],[133.32601972699996,-32.199476820999934],[133.30551191500015,-32.19085051899984],[133.27947024800008,-32.214939059999864],[133.27084394600016,-32.21884530999995],[133.26221764400017,-32.215752862999956],[133.24488366000014,-32.201104424999954],[133.22429446700002,-32.19557057099985],[133.20232181100002,-32.186700127999984],[133.19263756600017,-32.18466562299996],[133.18067467500023,-32.186700127999984],[133.16187584700018,-32.19589609199987],[133.15479576900012,-32.19768645599986],[133.14779707100016,-32.19670989399988],[133.14568118600002,-32.19378020599986],[133.1428328790001,-32.187758070999934],[133.13428795700005,-32.177178643999895],[133.0556746750002,-32.10816822699995],[133.03394616000017,-32.09710051899984],[133.01075280000023,-32.09531015400002],[133.00342858200023,-32.09970468499992],[132.99626712300017,-32.10662200299991],[132.98780358200005,-32.11142343499999],[132.97657311300006,-32.10898202899996],[132.97315514400023,-32.100681247999894],[132.97120201900012,-32.08652109199997],[132.96607506600012,-32.07317473799995],[132.95297285200002,-32.06731536299992],[132.93425540500007,-32.061700128],[132.8688257170002,-32.01531340899986],[132.84408613400004,-31.990655205999953],[132.7980249360002,-31.95631275799991],[132.77621504000004,-31.95086028399987],[132.75269616000017,-31.94947682099989],[132.70484459700006,-31.952080987999892],[132.65894616000017,-31.94931406],[132.58725019600016,-31.934747002999902],[132.56364993600002,-31.934177341999924],[132.5161238940002,-31.941338799999965],[132.49447675900015,-31.94719817499999],[132.47584069100003,-31.95501067499991],[132.46273847700007,-31.96493905999999],[132.45289147200006,-31.983982028999904],[132.45769290500007,-31.997328382999825],[132.4702254570002,-32.00994231599998],[132.48316491000003,-32.02646249799996],[132.47185306100008,-32.030450127999856],[132.46257571700014,-32.02890390399999],[132.44166100400017,-32.019626559999864],[132.42009524800008,-32.01384856599989],[132.39779707100004,-32.012790623000015],[132.37484785200004,-32.01506926899991],[132.32618248800006,-32.03313567499984],[132.278086785,-32.03801848799999],[132.2337345710001,-32.03297291499987],[132.19459069100006,-32.01783619599987],[132.16163170700005,-31.991631768999923],[132.10743248800011,-31.93238697699985],[132.07789147200006,-31.90781015399993],[131.92310631600017,-31.823988539999927],[131.78296959700018,-31.727797132999896],[131.53589928500017,-31.605564059999963],[131.34555097700004,-31.53093840899986],[131.177500847,-31.47763437299989],[131.13542728000007,-31.474786065999847],[131.09229576900023,-31.491957289999874],[130.99350019599999,-31.554294528999932],[130.83375084700018,-31.601739190999947],[130.79004967500006,-31.608086846999896],[130.69678795700005,-31.605564059999963],[130.54769941500015,-31.585625908999987],[130.31185957100016,-31.585544529],[130.26742597700004,-31.574476820999877],[130.1569116550002,-31.573907158999983],[130.13672936300006,-31.576836846999836],[130.0787866550002,-31.59433359199988],[129.94361412900017,-31.589288018999852],[129.75318444100006,-31.615492445999976],[129.53687584700018,-31.62224700299999],[129.47103925900004,-31.640801690999837],[129.4511824880002,-31.64332447699985],[129.36548912900017,-31.64332447699985],[129.30836022200018,-31.654717705999982],[129.2866317070001,-31.65642669099991],[129.22136478000013,-31.65439218499996],[129.20045006600006,-31.65642669099991],[129.13835696700014,-31.677504164999927],[129.12370853000013,-31.678887627999913],[129.09310957099999,-31.677422783999855],[129.0000919930002,-31.689222914999828],[128.99000084700006,-31.690524997999916],[128.93165123800017,-31.70810312299986],[128.7706811860002,-31.778252862999903],[128.75538170700023,-31.793633721999953],[128.72388756600006,-31.803643487999846],[128.65528405000012,-31.845798434999974],[128.2189233730002,-32.01767343499991],[128.01734459700006,-32.0842424459999],[127.76628665500007,-32.12314218499999],[127.5859481130001,-32.182386976999894],[127.56609134200019,-32.18466562299996],[127.55543053500006,-32.188897393999966],[127.53785240999999,-32.20712655999995],[127.53199303500017,-32.211358330999886],[127.28874759200008,-32.27337004999984],[127.110118035,-32.2933895809999],[127.09009850400004,-32.3007138],[127.08326256600002,-32.29387786299989],[127.05298912900005,-32.30380624799997],[126.93580162900005,-32.3007138],[126.82064863399998,-32.31080494599988],[126.78891035200004,-32.3007138],[126.76026451900006,-32.31096770599984],[126.67774498800006,-32.31658294099992],[126.37232506600004,-32.28281015399995],[126.27759850400015,-32.25628020599997],[126.24878991000006,-32.24163176899988],[126.20362389400012,-32.238539320999976],[126.18572024800001,-32.23251718499989],[126.17408287900004,-32.236911716999956],[126.13786868600017,-32.245375257999825],[126.12696373800023,-32.252129815999936],[126.11085045700018,-32.26816171699992],[126.103770379,-32.27337004999984],[126.07878665500017,-32.28053150799988],[126.00757897200006,-32.27337004999984],[125.97744898500005,-32.28434011],[125.92676916300005,-32.306943376999925],[125.87000004300009,-32.33298300999992],[125.80311856200014,-32.37447839299992],[125.67333547200022,-32.45897097799984],[125.53727469500004,-32.548378788999926],[125.47422755700003,-32.56386030199985],[125.33782708800001,-32.601514888999944],[125.25626480600006,-32.63912016899995],[125.09644615999999,-32.71217213299996],[125.036306186,-32.72991301899988],[125.01758873800007,-32.73211028399987],[125.00025475400017,-32.73723723799998],[124.90191360200016,-32.83365908799989],[124.83399147000013,-32.86769794899995],[124.74586022200006,-32.892185154],[124.70883222700004,-32.903903904],[124.51847717400003,-32.927806606],[124.35694420700017,-32.95281340899999],[124.31495201900006,-32.966078382999925],[124.29656009200002,-32.97812265399993],[124.25489342500005,-33.01336028399989],[124.24293053500004,-33.02068450299997],[124.22266686300021,-33.02564869599985],[124.20118248800011,-33.03801848799988],[124.16480553500006,-33.06796640399993],[124.11654707099997,-33.12151458099986],[124.09473717500023,-33.15569426899985],[124.0815535820001,-33.19085051899991],[124.0755314460001,-33.23308684699984],[124.06967207100004,-33.25359465899989],[124.05836022200006,-33.27019622199985],[124.04566491000013,-33.28460051899991],[124.00831139400022,-33.35418059699991],[124.00709069099999,-33.36199309699998],[124.00749759200002,-33.368422132999825],[124.00709069099999,-33.377048435],[124.00391686300021,-33.38827890399992],[123.9946395190001,-33.410902601999965],[123.98878014400023,-33.435642184999864],[123.97071373800023,-33.479750257999854],[123.96550540500006,-33.49976978999992],[123.96111087300008,-33.54713307099986],[123.95248457100014,-33.56731536299998],[123.93441816500014,-33.575616143999866],[123.91089928500016,-33.57903411299988],[123.89161217500023,-33.58814869599995],[123.875743035,-33.60125090899993],[123.86304772200005,-33.61646900799991],[123.86345462300007,-33.61825937299999],[123.86451256599999,-33.62151458099993],[123.86475670700015,-33.6255835919999],[123.86304772200005,-33.62957122199988],[123.85816491000017,-33.633965752999956],[123.81519616000006,-33.65837981599991],[123.75684655000022,-33.71412525799991],[123.74317467500012,-33.738051039999874],[123.73487389400012,-33.757989190999865],[123.73267662900005,-33.76677825299991],[123.73462975400017,-33.78069426899999],[123.73861738400015,-33.788018487999906],[123.73878014400012,-33.794040622999916],[123.72901451900006,-33.80494557099989],[123.71078535199999,-33.81633879999993],[123.66667728000019,-33.83294036299999],[123.64958743600006,-33.84246184699991],[123.64161217500012,-33.85125090899996],[123.62769616000006,-33.871514580999886],[123.62281334700006,-33.8766415339999],[123.61207116000006,-33.87737395599993],[123.58106530000012,-33.87623463299989],[123.56666100400004,-33.88437265399998],[123.526621941,-33.93865325299985],[123.51124108200005,-33.93962981599992],[123.49333743600012,-33.93124765399995],[123.47836347700009,-33.918877862999835],[123.47201582100014,-33.90764739399992],[123.4597274100001,-33.90016041499986],[123.38331139400006,-33.890883070999905],[123.34359785200014,-33.903497002999885],[123.31413821700019,-33.93059661299999],[123.26661217500005,-33.98650481599988],[123.23194420700011,-34.00074635199988],[123.22877037900004,-33.999281507999825],[123.22388756600017,-33.996026299999954],[123.21778405000005,-33.993259373],[123.21127363399998,-33.993340752999984],[123.20573978000009,-33.996677342],[123.19410241000017,-34.00530364399992],[123.1875106130001,-34.00701262799993],[123.15463300900002,-34.00945403399996],[123.14698326900006,-34.002129815999865],[123.13282311300023,-33.93906015399986],[123.11361738399997,-33.90447356599986],[123.08497155000012,-33.87835051899999],[123.04688561300024,-33.86296965899996],[123.023122592,-33.86060963299991],[123.00757897200005,-33.86353932099992],[122.99341881599999,-33.86809661299988],[122.9541121750001,-33.87281666499989],[122.87712649800012,-33.89714934699994],[122.84083092500012,-33.90374114399984],[122.81788170700021,-33.90455494599985],[122.8076278000001,-33.90016041499986],[122.78785241000016,-33.881036065999965],[122.77662194100017,-33.8766415339999],[122.76343834700006,-33.87900155999995],[122.73560631600017,-33.890883070999905],[122.64828535200009,-33.88941822699985],[122.60743248800021,-33.89478932099989],[122.57455488400016,-33.910821221999974],[122.58423912899998,-33.923923434999864],[122.58301842500008,-33.93694426899985],[122.57398522200019,-33.94898853999986],[122.56031334700006,-33.95916106599999],[122.54086347700003,-33.94117603999996],[122.53663170700023,-33.93865325299985],[122.53077233200004,-33.936618747999916],[122.52637780000012,-33.93287525799997],[122.52182050900015,-33.93108489399998],[122.50196373800021,-33.94548919099994],[122.48894290500007,-33.94353606599991],[122.39014733200023,-33.915785414999846],[122.34986412900005,-33.91529713299994],[122.31226647200006,-33.92489999799992],[122.27963300899998,-33.94548919099994],[122.26775149800001,-33.959242445999976],[122.26400800900002,-33.97096119599988],[122.26612389400012,-34.00383879999987],[122.25782311300021,-34.02206796699994],[122.2402449880001,-34.0162085919999],[122.223399285,-34.00156015399989],[122.21762129000015,-33.993340752999984],[122.20728600400005,-33.99749114399984],[122.19922936300013,-34.006931247999944],[122.19271894600006,-34.016371351999865],[122.18726647200018,-34.02068450299987],[122.09473717500006,-34.01913827899992],[122.07357832100008,-34.01441822699982],[122.07357832100008,-34.00701262799993],[122.10279381599999,-33.98015715899993],[122.10580488400004,-33.964043877999956],[122.08236738400015,-33.92717864399999],[122.07422936300023,-33.89153411299995],[122.06739342500012,-33.8766415339999],[122.06104576900005,-33.87078215899986],[122.03956139400023,-33.85613372199985],[122.01563561300011,-33.82537200299987],[122.00570722699999,-33.82073333099984],[121.99545332100016,-33.82244231599985],[121.98145592500012,-33.82878997199997],[121.93702233200005,-33.82878997199997],[121.91374759200008,-33.83855559699991],[121.87924238400015,-33.869886976999865],[121.86475670700011,-33.8766415339999],[121.84848066500008,-33.88014088299998],[121.81299889400005,-33.89511484200001],[121.79371178500004,-33.89714934699994],[121.77572675900004,-33.89055754999988],[121.74382571700019,-33.86793385199982],[121.72828209700018,-33.86296965899996],[121.7169702480002,-33.861911717],[121.69727623800004,-33.857191664999895],[121.68726647200018,-33.85613372199985],[121.675140821,-33.85898202899989],[121.66521243600019,-33.86516692499994],[121.65691165500019,-33.87216562299993],[121.64966881600017,-33.8766415339999],[121.62842858200011,-33.87639739399995],[121.61475670700004,-33.86402760199991],[121.60222415500006,-33.84954192499995],[121.58423912900005,-33.84246184699991],[121.57642662900007,-33.840427341999884],[121.55062910199999,-33.829766533999944],[121.5328882170002,-33.819512628],[121.52149498800023,-33.81910572699982],[121.498301629,-33.822035414999846],[121.33375084700019,-33.81519947699991],[121.314219597,-33.819512628],[121.27849368600017,-33.832777601999936],[121.22852623800023,-33.83766041499983],[121.21168053500004,-33.84343840899989],[121.16635175900002,-33.86793385199982],[121.1621199880001,-33.868259373000015],[121.15674889400022,-33.86419036299996],[121.13257897200006,-33.851739190999865],[121.10857181100019,-33.84384530999989],[121.09766686300023,-33.84246184699991],[121.0796004570001,-33.84539153399993],[121.03956139400006,-33.85865650799987],[121.01905358200023,-33.86296965899996],[120.99341881600006,-33.86296965899996],[120.98170006600019,-33.864515882999896],[120.97055097700016,-33.870375257999854],[120.94971764400006,-33.86174895599994],[120.920176629,-33.857110283999916],[120.86768639400023,-33.85613372199985],[120.84229576900023,-33.86386484199994],[120.81625410200014,-33.8766415339999],[120.79037519600016,-33.88600025799984],[120.765310092,-33.883477472],[120.74708092500018,-33.890883070999905],[120.57227623800011,-33.89153411299995],[120.56218509200008,-33.89299895599991],[120.55298912900015,-33.89714934699994],[120.54517662900012,-33.905938408999916],[120.54428144599999,-33.91423919099998],[120.54517662900012,-33.921807549999855],[120.54273522200005,-33.92815520599997],[120.52735436300011,-33.93678150799988],[120.42269941500004,-33.96990325299991],[120.39429772199999,-33.97380950299991],[120.38160241000006,-33.962579034],[120.27857506600016,-33.93865325299985],[120.17896569100006,-33.93124765399995],[120.15845787900015,-33.934991143999895],[120.1225692070001,-33.95037200299984],[120.10043379000003,-33.952325127999885],[120.08448326900012,-33.947849217],[120.05543053500007,-33.930922132999925],[120.0390731130001,-33.925062757999896],[120.02027428500017,-33.92351653399985],[120.00220787900007,-33.92603932099996],[119.98536217500022,-33.93141041499983],[119.97022545700023,-33.93865325299985],[119.94336998800016,-33.955987237999935],[119.92847740999999,-33.96282317499994],[119.90870201900005,-33.965997003],[119.8588973320001,-33.96795012799986],[119.80616295700011,-33.98495859199993],[119.79363040500013,-33.993096612999935],[119.73047936300023,-34.048516534],[119.70264733200005,-34.06340911299988],[119.64063561300011,-34.08521900799984],[119.61312910199997,-34.10320403399987],[119.62338300900004,-34.111097914999846],[119.6181746750001,-34.12004973799996],[119.60621178500017,-34.12753671700001],[119.58204186300004,-34.133721612999906],[119.5720320970001,-34.14202239399996],[119.53882897200018,-34.20907968499995],[119.53272545700011,-34.21648528399986],[119.49708092500023,-34.23902760199992],[119.48487389400006,-34.25945403399999],[119.47494550900015,-34.28590260199998],[119.46949303500004,-34.31340911299992],[119.46989993600002,-34.33603280999997],[119.4838973320001,-34.35857512799987],[119.50782311300016,-34.36679452899996],[119.53500410200017,-34.37151458099996],[119.55925540500007,-34.383721612999935],[119.54656009200019,-34.38836028399996],[119.53321373800006,-34.390313409],[119.511403842,-34.39804452899993],[119.47950280000012,-34.404554945999834],[119.4423934250001,-34.374444268999895],[119.40845787900005,-34.37004973799999],[119.38502037900017,-34.38486093499998],[119.37647545700017,-34.411716403999876],[119.38209069100006,-34.440118096999896],[119.40154056100009,-34.45875416499989],[119.39087975400004,-34.46331145599993],[119.36744225400005,-34.47991301899998],[119.365489129,-34.48455169099999],[119.3662215500001,-34.49081796699987],[119.36402428500004,-34.49504973799998],[119.353200717,-34.49358489399992],[119.349375847,-34.48967864399984],[119.34115644600004,-34.47405364399985],[119.33366946700006,-34.45191822699995],[119.31918379000004,-34.44491952899989],[119.30144290500003,-34.445896091999956],[119.28484134200008,-34.45256926899999],[119.27418053500006,-34.46038176899991],[119.2695418630001,-34.46648528399999],[119.26441491000016,-34.48674895599998],[119.26498457100014,-34.50945403399985],[119.26059004000008,-34.52214934699991],[119.24708092500012,-34.527764580999914],[119.22999108200017,-34.53215911299998],[119.22071373800011,-34.531833591999956],[119.21656334700005,-34.52467213299984],[119.21485436300016,-34.5116513],[119.20948326900012,-34.503350518999866],[119.20093834700018,-34.497979425],[119.18930097700016,-34.49358489399992],[119.17839603000019,-34.4919572899999],[119.15967858200023,-34.49504973799998],[119.14771569100012,-34.49358489399992],[119.13892662900005,-34.488864841999906],[119.12354576900005,-34.47527434699987],[119.116953972,-34.47242603999983],[118.93197675900004,-34.445896091999956],[118.922129754,-34.447849217],[118.90406334700019,-34.456801039999846],[118.8979598320001,-34.45875416499989],[118.84595787900005,-34.45256926899999],[118.83985436300023,-34.45256926899999],[118.88200931100019,-34.4906552059999],[118.88770592500018,-34.50042083099993],[118.87549889400012,-34.506442966999856],[118.808848504,-34.51344166499992],[118.78988691500003,-34.51881275799997],[118.75367272200016,-34.54273853999994],[118.74000084700005,-34.54827239399995],[118.72730553500016,-34.55803801899991],[118.72380618600019,-34.57887135199998],[118.7324324880001,-34.59832122199997],[118.75733483200021,-34.6034481749999],[118.72494550900005,-34.6358374979999],[118.70590254000014,-34.64771900799994],[118.66627037899998,-34.65683359199994],[118.63249759200002,-34.67791106599995],[118.61329186300006,-34.6859677059999],[118.52344811300004,-34.70338307099987],[118.47982832100014,-34.71705494599982],[118.44263756600016,-34.74000416499989],[118.43018639400023,-34.754571221999925],[118.40992272200006,-34.78883228999989],[118.39771569100017,-34.805271091999984],[118.38738040500006,-34.82594166499982],[118.38933353000017,-34.8462867169999],[118.40113366000017,-34.87721119599985],[118.3984481130001,-34.90097421699994],[118.38510175899997,-34.90837981599984],[118.34262129000004,-34.905043226999894],[118.26441491,-34.911309502999856],[118.24447675900002,-34.916761976999894],[118.20240319100017,-34.939222914999974],[118.16773522200018,-34.94255950299999],[118.16081790500019,-34.94548919099985],[118.15886478,-34.95663827899994],[118.16553795700011,-34.96152109199993],[118.17505944100017,-34.96355559699987],[118.18140709700002,-34.965915622999916],[118.19288170700004,-34.98357512799993],[118.2010197270001,-35.00237395599997],[118.19939212300008,-35.01677825299994],[118.18140709700002,-35.021172783999916],[118.16920006600006,-35.01669687299996],[118.11988366000016,-34.98707447699991],[118.11304772200005,-34.99382903399986],[118.10621178500006,-34.98707447699991],[118.09213300899997,-34.99382903399986],[118.04468834700006,-35.00750090899997],[118.03419030000005,-35.01197682099986],[118.02670332100006,-35.0139299459999],[118.01685631600002,-35.014906507999875],[118.00831139400006,-35.0139299459999],[117.98845462300008,-35.008721612999906],[117.97901451900017,-35.00750090899997],[117.97169030000022,-35.008721612999906],[117.95443769600014,-35.01384856599992],[117.94483483200004,-35.014906507999875],[117.93881269600014,-35.013360283999845],[117.93425540500002,-35.01034921699993],[117.9287215500001,-35.007582289999874],[117.92058353000019,-35.00750090899997],[117.91684004000014,-35.00994231599983],[117.90886478000017,-35.01913827899999],[117.90756269599999,-35.021172783999916],[117.84929446700008,-35.02556731599991],[117.83545983200005,-35.03142669099995],[117.83204186300006,-35.04583098799991],[117.84376061300016,-35.06023528399989],[117.86003665500019,-35.07138437299998],[117.888926629,-35.081719658999916],[117.89771569100017,-35.081475518999966],[117.90137780000012,-35.07268645599998],[117.89869225400005,-35.06422291499996],[117.89405358200023,-35.054782809999935],[117.89323978000012,-35.04656340899986],[117.90137780000012,-35.04168059699988],[117.91765384200006,-35.047051690999936],[117.93482506600016,-35.0813127579999],[117.95199629000004,-35.08953215899999],[117.98861738400014,-35.08473072699991],[118.00147545700005,-35.088148695999834],[117.99634850400005,-35.10369231599984],[117.98275800899998,-35.09954192499998],[117.97046959700005,-35.10393645599996],[117.94857832099999,-35.11736419099994],[117.93287194100004,-35.12037525799995],[117.89047285200014,-35.11736419099994],[117.86036217500012,-35.10881926899985],[117.80982506599999,-35.07138437299998],[117.74724368600019,-35.05136484199993],[117.68433678500006,-35.04631926899991],[117.66732832099997,-35.04908619599996],[117.64128665500003,-35.06129322699985],[117.62680097700017,-35.08025481599995],[117.62086022200008,-35.10588958099999],[117.61963951900022,-35.137872003],[117.58904056100019,-35.12558359199987],[117.53858483200011,-35.092217705999886],[117.50359134200018,-35.08326588299995],[117.47103925900002,-35.07968515399989],[117.45997155000006,-35.076104424999905],[117.4023543630001,-35.04664478999993],[117.38990319100012,-35.038262627999956],[117.35954837300012,-35.02418385199984],[117.340586785,-35.01783619599989],[117.33220462300001,-35.01816171700001],[117.32398522200005,-35.03297291499989],[117.30494225400017,-35.030205987999935],[117.26693769600016,-35.014906507999875],[117.24887129000004,-35.01409270599987],[117.23959394600008,-35.0148251279999],[117.2329207690001,-35.01816171700001],[117.22339928500006,-35.02076588299991],[117.21216881600006,-35.01677825299994],[117.20093834699999,-35.010674737999864],[117.19166100400015,-35.00750090899997],[117.171641472,-35.01327890399986],[117.15894616000006,-35.02743905999987],[117.14039147200005,-35.062758070999905],[117.1279403000001,-35.05608489399985],[117.10678144600003,-35.03834400799994],[117.09546959700005,-35.03484465899996],[117.0779728520001,-35.032647393999966],[117.05258222700016,-35.02337005],[117.04037519599997,-35.021172783999916],[117.02808678500006,-35.02337005],[117.01490319100016,-35.02727629999991],[117.00245201900017,-35.028985283999916],[116.99244225400018,-35.02459075299984],[116.98170006600017,-35.018487237999935],[116.96607506600017,-35.01425546699993],[116.949961785,-35.01344166499992],[116.93775475400005,-35.01816171700001],[116.91724694100016,-35.03753020599993],[116.89958743600008,-35.05038827899996],[116.87769616000004,-35.05486419099984],[116.844981316,-35.04908619599996],[116.83090254000015,-35.043389580999886],[116.79086347700003,-35.021172783999916],[116.74952233200011,-35.01238372199987],[116.73633873800021,-35.00750090899997],[116.73096764400006,-35.014418226999894],[116.72803795700005,-35.017673434999935],[116.72730553500006,-35.02076588299991],[116.72885175899998,-35.02800872199985],[116.6583764980002,-35.02800872199985],[116.64698326900012,-35.038262627999956],[116.637868686,-35.05022551899999],[116.61768639400012,-35.043064059999864],[116.58480879000004,-35.021172783999916],[116.53158613400004,-35.014743747999916],[116.51295006600006,-35.004082940999965],[116.50318444100002,-34.9999325499999],[116.49008222700004,-34.99920012799991],[116.465098504,-35.00066497199997],[116.45850670700024,-34.99700286299992],[116.434743686,-34.973402601999965],[116.39503014400023,-34.94947682099992],[116.375254754,-34.9327124979999],[116.38298587300018,-34.92498137799997],[116.46876061300004,-34.939222914999974],[116.48829186300021,-34.945733330999886],[116.49773196700008,-34.94622161299987],[116.50367272200018,-34.939222914999974],[116.50049889400012,-34.92888762799988],[116.48943118600017,-34.920017184999935],[116.47559655000006,-34.913669528999904],[116.44223066500004,-34.905531507999974],[116.42660566500004,-34.89185963299994],[116.41382897200016,-34.87615325299996],[116.39926191500015,-34.86353932099982],[116.39291425900002,-34.85979583099996],[116.38754316500014,-34.85751718499999],[116.3813582690001,-34.858168226999936],[116.37256920700024,-34.86353932099982],[116.39893639400022,-34.903903903999954],[116.37614993600019,-34.91741301899994],[116.33082116000017,-34.91269296699993],[116.2893986340001,-34.89763762799991],[116.24838300900014,-34.87753671699987],[116.09620201900005,-34.838636976999965],[116.01978600400017,-34.829359632999825],[116.00953209700006,-34.83033619599989],[115.98959394600014,-34.834649346999896],[115.9785262380001,-34.83562590899987],[115.97388756600017,-34.83025481599991],[115.97559655000012,-34.818454684999935],[115.98161868600019,-34.80144622199988],[115.97242272200005,-34.78297291499986],[115.94654381600002,-34.757500908999944],[115.9336043630001,-34.722588799999926],[115.91578209700005,-34.70191822699982],[115.88672936300017,-34.67734140399999],[115.74545332100016,-34.54021575299984],[115.61231530000018,-34.445896091999956],[115.57064863400004,-34.424737237999864],[115.53492272200018,-34.418389580999914],[115.52637780000022,-34.41480885199995],[115.51905358200023,-34.40520598799988],[115.51400800900004,-34.39511484199991],[115.50814863400008,-34.386976820999976],[115.49903405000006,-34.383721612999935],[115.48926842500023,-34.382094007999925],[115.33472741,-34.31422291499993],[115.29078209700016,-34.30185312299999],[115.26286868600002,-34.29851653399987],[115.18376712300004,-34.30185312299999],[115.16488691500003,-34.31023528399986],[115.13754316500014,-34.349867445999976],[115.11882571700008,-34.363376559999864],[115.10840905000006,-34.34433359199987],[115.01783287900004,-34.262139580999886],[115.01042728000006,-34.24504973799985],[115.00896243600019,-34.21868254999993],[115.01172936300017,-34.179131768999895],[115.00993899800007,-34.16318124799988],[115.00269616000006,-34.14478932099985],[114.97445722700009,-34.09189218499998],[114.97103925900008,-34.0826962219999],[114.97437584700013,-34.061700127999956],[114.97266686300011,-33.92278411299992],[114.96338951900023,-33.88201262799994],[114.96119225400017,-33.85955169099995],[114.96387780000022,-33.843031507999875],[114.97950280000012,-33.79859791499994],[114.98853600400005,-33.78101978999992],[114.97144616000016,-33.75628020599986],[114.95899498800017,-33.719903252999956],[114.95679772200016,-33.68230559699997],[114.97103925900008,-33.65390390399993],[114.99789472700016,-33.631036065999936],[115.00391686300006,-33.61695728999989],[115.00269616000006,-33.595472914999874],[114.99000084700018,-33.541924737999864],[114.98853600400005,-33.521091403999975],[115.00269616000006,-33.521091403999975],[115.04566491,-33.53720468499995],[115.07056725400005,-33.563734632999825],[115.09066816499998,-33.592950127999856],[115.11882571700008,-33.61646900799991],[115.15552819100016,-33.632582289999974],[115.19467207100004,-33.64462655999989],[115.23707115999999,-33.65113697699998],[115.28272545700023,-33.650648695999884],[115.32374108200023,-33.64381275799988],[115.3671981130001,-33.631280205999886],[115.406016472,-33.614678643999916],[115.4340926440001,-33.595472914999874],[115.51710045700011,-33.512383721999896],[115.5755314460001,-33.42669036299983],[115.60482832099999,-33.36956145599986],[115.61882571700006,-33.32073333099986],[115.62598717500012,-33.30803801899998],[115.63697350400015,-33.299248956],[115.64616946700002,-33.30038827899986],[115.65772545700018,-33.30510833099987],[115.6770939460001,-33.30803801899998],[115.70167076900012,-33.29713307099982],[115.71013431100003,-33.27068450299984],[115.70785566500017,-33.20842864399994],[115.70484459700006,-33.19247812299993],[115.69792728000007,-33.193129164999974],[115.69109134200002,-33.20484791499987],[115.68637129000003,-33.24049244599992],[115.67367597700014,-33.2876929669999],[115.66684004000015,-33.2876929669999],[115.67188561300006,-33.12053801899988],[115.67457116000016,-33.02499765399989],[115.66000410200004,-32.93816497199997],[115.62468509200019,-32.81178150799984],[115.61280358200015,-32.728448175],[115.60385175900004,-32.695000908999944],[115.60092207100004,-32.66171640399995],[115.61231530000018,-32.62281666499996],[115.62964928500016,-32.59238046699999],[115.67579186300006,-32.53492603999982],[115.70093834700006,-32.51295338299998],[115.69336998800011,-32.5526669249999],[115.63990319100017,-32.608575127999956],[115.63965905000023,-32.65691497199997],[115.66797936300011,-32.73064544099991],[115.69109134200002,-32.77060312299996],[115.71412194099999,-32.780450127999885],[115.72299238400015,-32.76376718500002],[115.71713300900004,-32.74163176899995],[115.69792728000007,-32.703220309999864],[115.68376712300002,-32.690199476999965],[115.68051191499997,-32.68124765400002],[115.68018639400017,-32.665459893999895],[115.6782332690001,-32.6561825499999],[115.67367597700014,-32.642754815999936],[115.66187584700012,-32.633965752999885],[115.65886478000019,-32.62851327899993],[115.66684004000015,-32.62281666499996],[115.67676842500025,-32.62281666499996],[115.6938582690001,-32.63372161299985],[115.70443769600016,-32.6364885399999],[115.74870853000019,-32.63730234199991],[115.76286868600002,-32.62769947699992],[115.76929772200005,-32.60230885199982],[115.762950066,-32.57903411299998],[115.74634850400004,-32.570082289999874],[115.72925866,-32.56609465899997],[115.72152753999997,-32.557305596999925],[115.71452884200019,-32.53704192499991],[115.71412194099999,-32.526625257999925],[115.71705162900005,-32.519219658999845],[115.72974694100017,-32.501885674999855],[115.73511803500006,-32.492445570999934],[115.74545332100016,-32.455661716999856],[115.74561608200021,-32.41871510199997],[115.73365319100016,-32.387953382999825],[115.70785566500017,-32.36956145599996],[115.73194420700011,-32.34587981599994],[115.73585045700005,-32.333184502999984],[115.72779381600006,-32.315036716999984],[115.71436608200024,-32.30299244599996],[115.68677819100006,-32.29021575299984],[115.67367597700014,-32.27337004999984],[115.71973717500012,-32.273207289999874],[115.73585045700005,-32.26441822699991],[115.74195397200016,-32.24236419099991],[115.74529056100017,-32.22283294099984],[115.7568465500001,-32.185642184999935],[115.7556258470001,-32.163506768999866],[115.75098717500005,-32.15341562299999],[115.7387801440001,-32.13941822699992],[115.73511803500006,-32.12948984199993],[115.74089603000012,-32.114515882999896],[115.74268639400013,-32.10230885199992],[115.73853600400015,-32.091485283999916],[115.72934003999998,-32.074639580999914],[115.72779381600006,-32.05510833099994],[115.74366295700005,-31.92782968499999],[115.72152753999997,-31.772637627999913],[115.70093834700006,-31.691176039999878],[115.68034915500002,-31.648614190999908],[115.60482832099999,-31.54656340899984],[115.55062910200016,-31.434747002999913],[115.45460045700004,-31.30348072699989],[115.38306725400005,-31.13388437300001],[115.31299889400023,-30.990817966999856],[115.23853600400017,-30.878676039999903],[115.180918816,-30.8272437479999],[115.16651451900023,-30.7658830709999],[115.16602623800021,-30.755547783999987],[115.16195722699999,-30.74212004999998],[115.10108483200005,-30.633396091999867],[115.09839928500001,-30.62517669099995],[115.09506269600016,-30.605726820999962],[115.06080162899998,-30.522393487999945],[115.05697675899998,-30.505466403999876],[115.05738366000011,-30.467461846999864],[115.05494225400015,-30.448011976999947],[115.03419030000022,-30.37037525799984],[115.022634311,-30.340590101999833],[115.01978600400011,-30.335625908999955],[115.01107832100003,-30.32496510199985],[115.00896243600019,-30.320082289999874],[115.01050866000004,-30.312676690999982],[115.02027428500017,-30.302504164999842],[115.022634311,-30.29615650799991],[115.0237736340001,-30.274183851999894],[115.02279707099999,-30.262872002999913],[115.01921634200004,-30.254571221999836],[115.01042728000006,-30.24822356599999],[114.98902428499999,-30.237074476999965],[114.981700066,-30.232028903999947],[114.97486412900011,-30.21404387799991],[114.97820071700014,-30.191827080999854],[114.98487389400006,-30.168145440999922],[114.98853600400005,-30.14568450299984],[114.98633873800023,-30.136000257999967],[114.97706139400007,-30.115492445999916],[114.97120201900022,-30.09238046699987],[114.96290123800016,-30.082696221999907],[114.95378665500007,-30.074476820999816],[114.94752037900005,-30.066827080999882],[114.94263756600006,-30.03101978999987],[114.96745853000017,-29.90243905999992],[114.96558678500006,-29.88062916499987],[114.95101972700004,-29.844903252999924],[114.94752037900005,-29.83001067499997],[114.94068444100012,-29.74407317499997],[114.94605553500016,-29.65813567499987],[114.96119225400017,-29.580254815999975],[114.97934004000014,-29.52320728999989],[114.981700066,-29.501722914999945],[114.97877037900015,-29.479913018999905],[114.95378665500007,-29.429375908999898],[114.93995201900006,-29.38746510199989],[114.93506920700011,-29.36451588299982],[114.93327884200018,-29.34368254999984],[114.92969811300023,-29.327813408999987],[114.91236412900015,-29.292087497999958],[114.89625084700016,-29.233656507999896],[114.84245853,-29.108575127999938],[114.83204186300021,-29.092054945999962],[114.65259850400017,-28.91236744599995],[114.64828535200016,-28.90227629999997],[114.61451256600016,-28.857517185000017],[114.60377037900015,-28.83855559699984],[114.5927840500001,-28.79778411299996],[114.57748457100016,-28.7850888],[114.59555097700014,-28.74830494599992],[114.59782962300001,-28.701836846999964],[114.5898543630001,-28.655857029],[114.53109785199999,-28.52239348799999],[114.50863691499998,-28.490899346999978],[114.42286217500023,-28.4009742169999],[114.36931399800002,-28.322849216999884],[114.3647567070001,-28.309014580999886],[114.3569442070001,-28.29257577899989],[114.31006920700023,-28.23015715899993],[114.29558353000017,-28.22144947699985],[114.26050866,-28.205254815999893],[114.24488366000006,-28.19247812299986],[114.16602623800004,-28.10670338299998],[114.15414472700004,-28.07805754999984],[114.14869225400017,-28.068536065999922],[114.14682050900004,-28.06161874799993],[114.14568118600019,-28.02760182099982],[114.14389082099999,-28.01864999799997],[114.10596764400006,-27.90406666499989],[114.09791100400005,-27.862725518999866],[114.09717858200011,-27.819431247999884],[114.10254967500018,-27.797946872999855],[114.12061608200011,-27.75969817499999],[114.12435957100004,-27.740166924999926],[114.12769616000006,-27.73015715899993],[114.14234459700005,-27.70916106599999],[114.14568118600019,-27.698907158999955],[114.14389082099999,-27.687758070999863],[114.07447350400017,-27.447198174999926],[114.01254316499998,-27.31536223799993],[113.92318769600016,-27.171319268999966],[113.76441491,-26.918145440999865],[113.65452817300016,-26.775586154999914],[113.59057934400008,-26.67565070699989],[113.53174889400017,-26.62322356599999],[113.46570787800025,-26.55714337999994],[113.35726972700004,-26.455173434999907],[113.34294681100008,-26.443047784],[113.31262467600001,-26.41594566499985],[113.29778180299999,-26.39728864],[113.29786928400003,-26.37465739899993],[113.29198687200007,-26.35334990799998],[113.29948920200016,-26.338721122999914],[113.28465726000016,-26.31872853199995],[113.27133686600003,-26.288088107999968],[113.24466993600007,-26.24009773299983],[113.2132267590001,-26.215101820999948],[113.17628577300015,-26.1773080909999],[113.15697951400014,-26.15192572299985],[113.16149483500024,-26.13995279999996],[113.18685015800011,-26.156038194999937],[113.21021569100017,-26.174493096999864],[113.22852623800021,-26.180596612999935],[113.25825157200008,-26.185558827999913],[113.26412986500006,-26.210868769],[113.27597094100015,-26.23485742899993],[113.27906329100003,-26.197597176999874],[113.28510429299999,-26.165671522999872],[113.29261379900007,-26.131083063999895],[113.28822223900023,-26.093787882999877],[113.28532357700013,-26.05650324899993],[113.29131415499997,-26.024567113999936],[113.30622429900009,-25.996651488999902],[113.320901862,-26.121847311],[113.32964057600006,-26.235029267999945],[113.3279982920001,-26.274896247999862],[113.33533467300006,-26.310836714999876],[113.34719063700018,-26.330815055999906],[113.36201033600017,-26.357447072999875],[113.36790520900004,-26.378743419999974],[113.38426984000003,-26.382755384],[113.37543065600008,-26.35081183499986],[113.35618680600022,-26.308202559999884],[113.35329967600002,-26.27494360999995],[113.36382826800005,-26.228399170999907],[113.37725300900004,-26.20980032099989],[113.3803978880002,-26.09937794799984],[113.3566982560001,-26.042085623],[113.36267350100005,-26.012815375999892],[113.38787140200012,-26.06080430899999],[113.39664247700001,-26.17658002899988],[113.41301506100004,-26.15532757099986],[113.42341582200007,-26.156676657],[113.45163114100004,-26.159384038999846],[113.45008961599999,-26.200609224999965],[113.45898015000002,-26.221898714999938],[113.46191056800002,-26.24982853599991],[113.47377529200011,-26.26314004299988],[113.47820283600007,-26.283087484999925],[113.48708229400003,-26.300382889999923],[113.49596333000025,-26.32698253499997],[113.50331738500009,-26.376189396999862],[113.48988000200009,-26.400127993999913],[113.49278759500012,-26.434714736],[113.47931872300002,-26.473292387999916],[113.48675520400016,-26.47994259500001],[113.50762279500023,-26.46929550799997],[113.50767474000006,-26.434713541999912],[113.50771532700016,-26.410769500999947],[113.51369323000003,-26.393482948999974],[113.52565339600014,-26.354918486999907],[113.50936280600004,-26.312362588999832],[113.513839907,-26.295081963999905],[113.51386966700025,-26.27380899599987],[113.53021570600006,-26.267171757999943],[113.54356548000024,-26.28711750799995],[113.54948779100008,-26.304403150999846],[113.55392424400017,-26.3243453819999],[113.56132618800021,-26.352265451999866],[113.55237689400022,-26.384173338999826],[113.559769832,-26.41209900299999],[113.56715543700014,-26.445347240999922],[113.55674349000016,-26.470604019999882],[113.56711369900003,-26.490560531999876],[113.56708512700018,-26.529125955999916],[113.56550653700005,-26.565081174],[113.58183384600014,-26.56510856999988],[113.59376470499998,-26.553116677999938],[113.59676436300006,-26.538471892999965],[113.5982828780001,-26.51850672999987],[113.60425015000007,-26.507855605999936],[113.62360808000012,-26.487885879999823],[113.62065210500022,-26.4692656869999],[113.61771593800019,-26.44665431599998],[113.62514747600002,-26.439997254999838],[113.64442595900006,-26.481220263999944],[113.6444134650001,-26.499843222999914],[113.64290747800013,-26.526452071999838],[113.642887188,-26.549072540999898],[113.63393307900016,-26.573040040999942],[113.63837913100015,-26.587682663],[113.62875410200004,-26.598077080999843],[113.64431468500018,-26.602325028999953],[113.66217673800004,-26.600975107999986],[113.66663085900021,-26.615616032],[113.67108433600016,-26.635582173999907],[113.66958598900013,-26.652893204999955],[113.68628991000011,-26.654229424999926],[113.68746819900015,-26.63155890599991],[113.69491774700023,-26.614240177999932],[113.71129244800025,-26.610213902999874],[113.73509564100013,-26.600868766999977],[113.76037771600014,-26.595511318999826],[113.772271378,-26.587506837999925],[113.78044681100019,-26.6012509089999],[113.81243183200016,-26.5994153579999],[113.81387874500015,-26.56348554999988],[113.83319100900022,-26.554132767999988],[113.85249967300015,-26.544771706999853],[113.87028641900022,-26.52212985099989],[113.88656740900004,-26.492838358999876],[113.88947929300011,-26.46491511899991],[113.88345461900022,-26.422399643999967],[113.873031187,-26.398492863999888],[113.88336947700012,-26.37854322099984],[113.8847725740002,-26.342673234999964],[113.86841113800003,-26.318799665999972],[113.84107506600016,-26.295668226999908],[113.81421959700018,-26.26677825299998],[113.78174889400012,-26.241387627999885],[113.74924026900005,-26.238514595999927],[113.684137746,-26.221604058999986],[113.67995596500023,-26.200827005999955],[113.67997054700017,-26.183826775999943],[113.66778410500015,-26.16620368899993],[113.64887769200018,-26.139385570999934],[113.61108205200006,-26.096482062999954],[113.577239347,-26.089342557999952],[113.57131529300008,-26.057156338999956],[113.56735597300022,-26.036602419999923],[113.57634713200004,-26.00889790099994],[113.56242580000006,-25.99996374199995],[113.55351701600003,-25.972261340999964],[113.55755289900011,-25.940989468999955],[113.51876452700017,-25.919535907],[113.52376629900002,-25.89184578699988],[113.51781767300004,-25.87039995499994],[113.51187159100006,-25.853421679999983],[113.4999524880001,-25.84268664399994],[113.48802899900012,-25.82748203299991],[113.47411117600008,-25.817632106999923],[113.4681578550001,-25.805111001999975],[113.46916494800021,-25.791707278999937],[113.46045983200017,-25.776625257999925],[113.44752037900017,-25.76482512799987],[113.42078061600014,-25.728215180999882],[113.41352822900015,-25.702046802999902],[113.41900061000004,-25.680810563999984],[113.42264731300021,-25.654662643],[113.4335690790002,-25.633437128999986],[113.451753871,-25.604054096999942],[113.4644567490001,-25.573011393999906],[113.48986926400008,-25.545269040999898],[113.50254781100007,-25.51421310499991],[113.51525018300018,-25.50933655799983],[113.51890945800007,-25.54042883599999],[113.52438791600004,-25.578056765999918],[113.52079622800014,-25.60095530999989],[113.53288821700019,-25.618259372999887],[113.54664147199999,-25.617608330999843],[113.55591881600017,-25.619561455999886],[113.56251061300021,-25.631524347],[113.58433955000018,-25.63211286099994],[113.59343622600008,-25.666431551999963],[113.6079803740001,-25.70401525299988],[113.6310327480002,-25.73626067499988],[113.66064140900008,-25.749767208999913],[113.67518432500006,-25.780791186999835],[113.70093834699999,-25.791761976999922],[113.727831614,-25.795439698999928],[113.72240932700018,-25.828120899999846],[113.71697710700002,-25.84607419499983],[113.72234134200008,-25.86663176899991],[113.727305535,-25.87281666499996],[113.744243737,-25.880324146999936],[113.75695081500005,-25.88521698099994],[113.76060882300024,-25.904792618999874],[113.75336595200022,-25.921114992999918],[113.73521628800003,-25.935814649999983],[113.73884937200003,-25.955400411999946],[113.73888637600024,-25.984769710999927],[113.73163929600005,-26.00762127899992],[113.7189132240002,-26.03211590199996],[113.72255024500012,-26.048438952999888],[113.71527590000008,-26.077831824999947],[113.71345978900014,-26.12191378699991],[113.70435979400021,-26.14804569799989],[113.72801348200008,-26.18068505],[113.72800445300001,-26.197034895999977],[113.76260514000003,-26.19697314600002],[113.7662514670001,-26.210033951000028],[113.79538591000019,-26.206714794999854],[113.84807000100002,-26.121710470999872],[113.8680039470001,-26.079241880999987],[113.87884183300005,-26.043321153999926],[113.86443118600008,-25.999444268999966],[113.86231530000023,-25.988946221999978],[113.85287519600016,-25.97128671699997],[113.85075931100002,-25.96160247199984],[113.85157311300023,-25.947686455999857],[113.85450280000018,-25.944268487999846],[113.85873457099997,-25.946221612999892],[113.86443118600008,-25.947930596999893],[113.88550866000011,-25.951755467],[113.90957726300005,-25.97637258499988],[113.90599552800019,-25.99921960599994],[113.90243314300001,-26.031853934999873],[113.91163652999998,-26.088939142999962],[113.90601647200006,-26.119317315999833],[113.92809561300007,-26.137868083999876],[113.94808736000006,-26.139464061999945],[113.93546936200019,-26.191722032999948],[113.94282682000019,-26.227640422999926],[113.95563704900005,-26.26027805799987],[113.95750800900024,-26.283147281999902],[113.96484876400021,-26.309278518999918],[113.96998131600004,-26.33171965899996],[114.02153405500005,-26.390887682999903],[114.06908318000004,-26.4365598679999],[114.08553721600005,-26.447952217999898],[114.10377562300008,-26.4478815199999],[114.12376328500025,-26.42981402399998],[114.14374885300016,-26.413392662999822],[114.156421258,-26.393729401999845],[114.1837044370002,-26.382177953999843],[114.20736050400015,-26.375541297999888],[114.21630896100007,-26.34444504900001],[114.23437149200007,-26.316583723999855],[114.21958137700003,-26.274162496999892],[114.20487535400015,-26.24644599799998],[114.19928310000003,-26.218694931999888],[114.19189500400014,-26.195861506999886],[114.19721268900005,-26.16808654699993],[114.20437795000012,-26.146840097999885],[114.21729576900012,-26.105645440999893],[114.22331790500012,-26.10068124799993],[114.22681725399998,-26.08879973799989],[114.22828209700016,-26.075290622999916],[114.22754967500023,-26.06462981599998],[114.21778405000012,-26.043064059999878],[114.19174238400004,-26.00400156],[114.18653405000023,-25.978936455999914],[114.19076582100016,-25.970879815999965],[114.20020592500018,-25.97665781000002],[114.21387780000012,-25.992771091999913],[114.21957441499998,-25.996758721999896],[114.23267662900005,-25.996026299999865],[114.24683678500017,-25.992852471999893],[114.25554446700006,-25.989515882999953],[114.25814863400015,-25.988946221999978],[114.26856530000022,-25.989515882999953],[114.26026451900017,-25.97112395599991],[114.24805748800011,-25.960870049999897],[114.23747806100002,-25.9496395809999],[114.23422285199999,-25.927422783999845],[114.24170983200015,-25.908786716999856],[114.25440514400012,-25.885837497999958],[114.26319420700011,-25.862237237999835],[114.25855553500016,-25.84189218500002],[114.24268639400023,-25.82887135199985],[114.19312584700012,-25.802178643999923],[114.15528405000023,-25.789727472],[114.14869225400017,-25.773207289999917],[114.1448673840001,-25.75701262799997],[114.13200931100008,-25.74993254999991],[114.136485222,-25.733330987999864],[114.129161004,-25.71526458099984],[114.11548912900017,-25.70077890399989],[114.10059655000012,-25.694756768999966],[114.09750410200004,-25.690524997999958],[114.09302819100017,-25.67164478999993],[114.08692467500006,-25.66741301899991],[114.04932701900006,-25.646905205999943],[114.0410262380001,-25.63355885199985],[114.01563561300006,-25.569594007999854],[113.95167076900006,-25.489190362999864],[113.92839603000006,-25.449802341999952],[113.86207116,-25.30266692499991],[113.85816491000006,-25.280043226999865],[113.85328209700006,-25.26392994599989],[113.81666100400005,-25.20875416500003],[113.8081160820001,-25.182224216999895],[113.80241946700014,-25.17180755],[113.78931725400017,-25.160332940999865],[113.74732506600016,-25.1366513],[113.7130639980002,-25.124932549999937],[113.69214928500006,-25.10523854],[113.67790774800002,-25.081638278999876],[113.66944420700011,-25.047539971999864],[113.65528405000005,-25.026136976999908],[113.65105228000007,-25.005303643999934],[113.64576256600016,-24.99309661299995],[113.64470462300014,-24.985609632999893],[113.64730879000003,-24.977308851999908],[113.66041100400017,-24.962579033999912],[113.66521243600006,-24.954847914999913],[113.66675866,-24.933770440999893],[113.65821373800011,-24.91204192499991],[113.63965905000006,-24.896172783999987],[113.610606316,-24.89275481599998],[113.60971113400004,-24.87135182099985],[113.60572350400004,-24.850192967000012],[113.60515384200008,-24.830498955999982],[113.61402428500006,-24.814060153999986],[113.62094160200004,-24.795830987999906],[113.61866295700023,-24.770440362999892],[113.61166425900015,-24.745375257999896],[113.60434004000015,-24.72828541499994],[113.54249108200005,-24.643487237999878],[113.43946373800011,-24.53281015399989],[113.41675866000017,-24.497653903999918],[113.40023847699999,-24.45794036299999],[113.39144941500003,-24.41366952899986],[113.38526451900017,-24.249118748000015],[113.38941490999999,-24.227797132999964],[113.39722741000011,-24.214125257999925],[113.42269941499998,-24.1905249979999],[113.43327884200008,-24.170179945999816],[113.4318139980002,-24.148044529000018],[113.41928144599999,-24.104587497999887],[113.41382897200006,-24.070407809999974],[113.41456139400005,-24.04941171699994],[113.42269941499998,-24.03313567499991],[113.4357202480002,-24.02109140399999],[113.44678795700023,-24.00758228999993],[113.45533287900005,-23.990655205999854],[113.46045983200017,-23.967950128],[113.45948326900006,-23.944594007999825],[113.45655358200005,-23.92717864399985],[113.45972741000006,-23.91033294099985],[113.49187259200019,-23.872165622999958],[113.5021264980002,-23.852797132999953],[113.52637780000012,-23.76474374799993],[113.53834069100006,-23.7484677059999],[113.55933678500017,-23.741957289999988],[113.59945722699999,-23.633965752999895],[113.60434004000015,-23.624688408999944],[113.61109459700012,-23.620375257999854],[113.61996504000015,-23.617120049999897],[113.62769616000017,-23.611911716999984],[113.6310327480002,-23.60116952899989],[113.63624108200005,-23.596856377999966],[113.66041100400017,-23.586032809999892],[113.68213951900023,-23.579685153999947],[113.68897545700005,-23.569756768999866],[113.693614129,-23.558363539999988],[113.69996178500006,-23.549574476999837],[113.73755944100004,-23.527032158999944],[113.74984785199997,-23.5116513],[113.75456790500019,-23.485039971999868],[113.75684655000018,-23.479099216999927],[113.76661217500012,-23.46591562299997],[113.7688094410001,-23.457696221999896],[113.77100670700011,-23.389580987999864],[113.78028405000022,-23.348809502999984],[113.78248131600006,-23.32708098799992],[113.7688094410001,-23.241143487999906],[113.75114993600017,-23.18084075299987],[113.74830162900005,-23.162286065999865],[113.7536727220001,-23.138278904],[113.75456790500019,-23.12818775799985],[113.75831139400023,-23.118829033999916],[113.76742597700004,-23.111504815999908],[113.77865644600003,-23.10507577899999],[113.78931725400017,-23.097100518999852],[113.80502363400004,-23.075127862999835],[113.81153405000012,-23.051364841999927],[113.80738366000017,-22.930596612999878],[113.80176842500005,-22.89983489399989],[113.78589928500006,-22.874932549999954],[113.77540123800006,-22.852471612999864],[113.7597762380001,-22.788750908999898],[113.71363366000017,-22.741469007999854],[113.70289147200006,-22.73560963299998],[113.69068444100017,-22.730645440999936],[113.67603600400015,-22.727715752999927],[113.65894616000004,-22.72779713299991],[113.67164147200016,-22.69019947699982],[113.67212975400017,-22.668715101999965],[113.66195722700004,-22.648695570999905],[113.65951582099999,-22.64080169099985],[113.65894616000004,-22.607110283999845],[113.65577233200017,-22.594659112999917],[113.64966881600017,-22.58652109199998],[113.64665774800008,-22.577732028999932],[113.652110222,-22.562676690999922],[113.66081790500019,-22.553399346999953],[113.68262780000023,-22.543552341999856],[113.69312584699999,-22.53541432099992],[113.71680748800021,-22.492120049999855],[113.73145592500023,-22.479587497999855],[113.734629754,-22.470310153999986],[113.74089603000007,-22.42555104000003],[113.74773196700008,-22.401543877999913],[113.75879967500012,-22.382419528999932],[113.79273522200016,-22.34734465899986],[113.80396569100017,-22.33082447699988],[113.88550866000011,-22.110935153999957],[113.89079837300007,-22.089125257999825],[113.89323978000017,-22.06853606599988],[113.89795983200011,-22.04924895599993],[113.92310631600017,-22.01311614399999],[113.94703209700006,-21.95256926899999],[114.01148522200006,-21.859958591999852],[114.03581790500019,-21.837823174999954],[114.06714928500017,-21.81902434699991],[114.08627363400004,-21.811944268999866],[114.10743248800023,-21.809258721999882],[114.12777754000003,-21.804294529000018],[114.1447046230002,-21.79550546699987],[114.15919030000023,-21.791924737999892],[114.17221113400015,-21.80299244599992],[114.17603600400017,-21.82219817499997],[114.16602623800004,-21.835056248],[114.1525171230002,-21.846368096999893],[114.14568118600019,-21.8610165339999],[114.14234459700005,-21.880466403999904],[114.12769616000006,-21.922784112999906],[114.09644616000016,-22.10637786299992],[114.08301842500005,-22.140720309999878],[114.07748457100014,-22.17546965899993],[114.09376061300011,-22.210137628],[114.10271243600002,-22.222751559999892],[114.12094160200004,-22.260430596999953],[114.12435957100004,-22.27532317499991],[114.11133873800021,-22.312107028999986],[114.10971113400004,-22.33098723799985],[114.12435957100004,-22.33668385199992],[114.13160241000006,-22.32626718500002],[114.13754316500015,-22.307305596999907],[114.14747155000018,-22.294528903999957],[114.16602623800004,-22.302666924999897],[114.17139733200023,-22.317478122999873],[114.17042076900023,-22.338474217],[114.16382897200018,-22.35556405999995],[114.15186608200021,-22.35800546699997],[114.12273196700019,-22.389092705999985],[114.11768639400017,-22.398858330999843],[114.11817467500023,-22.4132626279999],[114.1257430350001,-22.438164971999925],[114.11085045700023,-22.477715752999885],[114.12240644600016,-22.504164320999944],[114.14812259200014,-22.52141692499995],[114.17969811300011,-22.521742445999976],[114.19629967500018,-22.507745049999837],[114.20687910200003,-22.486911716999938],[114.22193444100006,-22.46795012799994],[114.25171959700006,-22.459649346999868],[114.26221764400012,-22.45549895599991],[114.27409915500007,-22.447523695999877],[114.28663170700005,-22.443291924999855],[114.29981530000012,-22.44980234199994],[114.30689537900017,-22.462497653999904],[114.31177819100004,-22.476169529000018],[114.31983483200005,-22.487562757999896],[114.33741295700011,-22.49382903399986],[114.3569442070001,-22.48601653399996],[114.36703535200016,-22.478285414999945],[114.37086022200018,-22.465590101999894],[114.37159264400012,-22.442966404],[114.3737899100001,-22.434177341999956],[114.38355553500006,-22.41423919099988],[114.38575280000012,-22.4022763],[114.38721764400006,-22.379489841999913],[114.39193769599999,-22.35800546699997],[114.42172285199999,-22.29851653399986],[114.42847741000006,-22.27125416499996],[114.43978925900004,-22.24456145599993],[114.44385826900006,-22.237481377999885],[114.4676212900001,-22.20647551899995],[114.46851647200016,-22.19475676899995],[114.46363366,-22.181084893999834],[114.4676212900001,-22.17229583099987],[114.47681725400005,-22.16806406000002],[114.48829186300011,-22.167657158999845],[114.49781334700018,-22.163669528999947],[114.50570722700016,-22.12639739399998],[114.52125084700018,-22.089043877999842],[114.52230879000004,-22.069268487999906],[114.51872806100008,-22.06072356599998],[114.50635826900012,-22.048516534],[114.50180097700016,-22.04192473799993],[114.49952233200011,-22.03492604000003],[114.49610436300011,-22.016045830999914],[114.49561608200011,-22.004489841999895],[114.50318444100006,-21.996026299999954],[114.52051842500023,-22.011000257999893],[114.5389103520001,-22.031996351999922],[114.55030358200023,-22.04192473799993],[114.59880618600015,-21.955987237999835],[114.61109459700019,-21.925225518999852],[114.61378014400023,-21.923516533999845],[114.617442254,-21.923272393999895],[114.62126712300012,-21.922295831],[114.62476647199999,-21.91855234199997],[114.62720787900004,-21.913018487999963],[114.63160241000006,-21.898044528999932],[114.6377059250001,-21.857354424999855],[114.64673912900004,-21.84335702899989],[114.66944420700004,-21.837823174999954],[114.67823326900022,-21.834567967000012],[114.69157962300008,-21.817478122999972],[114.7004500660001,-21.809258721999882],[114.77898196700012,-21.781345309999935],[114.92896569100002,-21.69394296699987],[114.97071373800023,-21.682061455999914],[115.00896243600019,-21.69312916500003],[115.0551863940001,-21.67652760199998],[115.06739342500005,-21.668633721999925],[115.07740319100017,-21.65976327899996],[115.08863366000016,-21.6527645809999],[115.09864342500023,-21.6527645809999],[115.10515384200002,-21.665215752999913],[115.22388756600017,-21.598809502999885],[115.45460045700004,-21.51376718499995],[115.47852623800023,-21.501153252999885],[115.48878014400022,-21.483330987999906],[115.49463951900013,-21.466078382999978],[115.50831139400022,-21.450127862999892],[115.53646894600003,-21.42441171699994],[115.60271243600017,-21.34351978999996],[115.62598717500012,-21.32195403399986],[115.6622827480002,-21.298028252999984],[115.80616295700011,-21.235446872999958],[115.81869550900004,-21.225762627999913],[115.83041425899998,-21.190850518999895],[115.85906009200008,-21.15496184699998],[115.87761478000006,-21.115166924999908],[115.905528191,-21.084567966999984],[115.93669681100017,-21.059014580999985],[115.95801842500018,-21.048272393999895],[115.97413170700021,-21.044854424999883],[116.02320397200018,-21.021579684999963],[116.05640709700018,-21.01083749799986],[116.07105553499999,-21.00383879999997],[116.08521569100004,-20.993584893999852],[116.1212671230002,-20.986423434999907],[116.15154056100019,-20.96998463299991],[116.17408287900015,-20.94304778399993],[116.1876733730002,-20.904229424999926],[116.18930097700004,-20.858819268999923],[116.1962996750001,-20.846856377999984],[116.21859785200016,-20.842868748000015],[116.23023522200018,-20.846856377999984],[116.24594160200004,-20.855401299999922],[116.26587975400005,-20.862562757999953],[116.2893986340001,-20.8632138],[116.30860436300023,-20.855564059999892],[116.334320509,-20.83318450299987],[116.34799238400004,-20.82854583099993],[116.39193769600016,-20.82789479],[116.434743686,-20.822360934999878],[116.45150800900015,-20.81471119599985],[116.48226972700003,-20.792738540000016],[116.49219811300021,-20.788181247999884],[116.49805748800011,-20.78622812299993],[116.50619550900004,-20.78085702899996],[116.51351972700004,-20.773207289999945],[116.52051842500005,-20.751153252999856],[116.53003991000016,-20.746840101999933],[116.55079186300004,-20.74724700299994],[116.58708743600019,-20.735284112999835],[116.6993921230002,-20.659356377999895],[116.74317467500018,-20.616875908999916],[116.7793074880001,-20.56023528399984],[116.79712975400015,-20.548597915000016],[116.79086347700003,-20.534926039999974],[116.80640709700005,-20.529066664999945],[116.81446373800006,-20.527764580999857],[116.82447350400004,-20.52809010199988],[116.83513431100019,-20.530938408999916],[116.84351647200006,-20.53525156],[116.8453882170002,-20.539320570999877],[116.83513431100019,-20.541110934999864],[116.82032311300011,-20.549899998000015],[116.81446373800006,-20.57000090899996],[116.810801629,-20.61003997199991],[116.80551191500003,-20.61785247199998],[116.78874759200012,-20.633721612999835],[116.78419030000006,-20.64478932099996],[116.78394616000006,-20.657159112999906],[116.78728274800008,-20.66423919099995],[116.83594811300011,-20.704278252999895],[116.85547936300006,-20.712090752999984],[116.87964928500016,-20.71306731599995],[116.89918053500018,-20.708103122999916],[116.92164147200006,-20.698337497999958],[116.94027754000015,-20.686618747999887],[116.94800866000017,-20.675469658999873],[116.95704186300006,-20.668064059999963],[117.06251061300019,-20.621677341999913],[117.07154381600017,-20.62053801899988],[117.09017988400015,-20.634698174999983],[117.09546959700005,-20.637383721999882],[117.107676629,-20.63518645599997],[117.11793053500006,-20.629652601999965],[117.14437910200003,-20.607110283999887],[117.15406334700016,-20.596368096999967],[117.16016686300016,-20.596368096999967],[117.16716556100002,-20.60369231599988],[117.16863040500019,-20.609470309999935],[117.167735222,-20.615655206],[117.167735222,-20.624281507999825],[117.16098066500008,-20.638604424999897],[117.16016686300016,-20.64478932099996],[117.16285241000006,-20.64983489399998],[117.17237389400024,-20.658461195999905],[117.17457116000006,-20.66155364399998],[117.18132571700008,-20.673516533999916],[117.19760175899998,-20.68377044099985],[117.27247155000006,-20.712985934999974],[117.31153405000023,-20.722832940999908],[117.35377037900015,-20.72771575299997],[117.43751061300006,-20.72258879999987],[117.51343834700002,-20.706312757999836],[117.54379316499997,-20.69255950299991],[117.5791121750001,-20.667087497999987],[117.60271243600008,-20.657321872999873],[117.62330162900017,-20.66155364399998],[117.63575280000012,-20.67327239399988],[117.65064537900005,-20.672133070999845],[117.66114342500012,-20.66155364399998],[117.66423587300018,-20.657321872999873],[117.67042076900005,-20.66130950299994],[117.67530358200021,-20.668064059999963],[117.67481530000023,-20.672133070999845],[117.68995201900022,-20.668145440999865],[117.72950280000013,-20.650974217000012],[117.7363387380001,-20.658461195999905],[117.749847852,-20.649672132999925],[117.78679446700002,-20.636325779],[117.81006920700015,-20.623223565999865],[117.83082116000006,-20.619886976999837],[117.83936608200005,-20.616875908999916],[117.8491317070001,-20.607110283999887],[117.86060631600017,-20.58473072699995],[117.86719811300023,-20.575860283999916],[117.87875410200016,-20.56511809699999],[117.88550866,-20.56292083099991],[117.91114342500018,-20.56023528399984],[117.91863040500002,-20.555108331],[117.93181399800008,-20.538018487999878],[117.93531334700018,-20.529880466999956],[117.93336022200002,-20.509860934999892],[117.93482506600016,-20.500746351999894],[117.94068444100006,-20.492771091999856],[118.13559004000003,-20.362074476999894],[118.15088951900007,-20.356133721999953],[118.16187584700006,-20.35426197699989],[118.16920006600006,-20.35068124799993],[118.17701256600004,-20.348077080999843],[118.18873131600006,-20.34929778399986],[118.19157962300008,-20.355889580999914],[118.1914168630001,-20.36614348799995],[118.19507897200006,-20.371351820999934],[118.20923912900015,-20.362969658999887],[118.23080488399998,-20.371677341999956],[118.24838300900004,-20.365817966999927],[118.26433353,-20.355075779],[118.28093509200019,-20.34929778399986],[118.29175866000016,-20.347263278999918],[118.31226647200006,-20.337823175],[118.3222762380001,-20.335707289999988],[118.33529707100006,-20.338799737999963],[118.339040561,-20.34636809699984],[118.34205162900004,-20.35556406],[118.35328209700006,-20.362969658999887],[118.36882571700008,-20.362074476999894],[118.41081790500003,-20.34644947699982],[118.55193118600006,-20.321465752999984],[118.55079186300023,-20.322035414999945],[118.55469811300023,-20.322360934999978],[118.56544030000023,-20.321465752999984],[118.57048587300008,-20.31951262799994],[118.57300866000011,-20.3175595029999],[118.575938347,-20.31601327899986],[118.60629316499997,-20.309502862999864],[118.61670983200004,-20.30836354],[118.62810306100006,-20.309828382999967],[118.63445071700008,-20.313246351999894],[118.63965905000008,-20.317640882999882],[118.64747155000016,-20.321465752999984],[118.662364129,-20.323988539999988],[118.68181399800018,-20.323663018999966],[118.70191491000016,-20.317803643999934],[118.73804772200012,-20.292168877999956],[118.76050866,-20.28826262799997],[118.78402754000015,-20.286553643999966],[118.80567467500022,-20.281019789999945],[118.831797722,-20.261976820999863],[118.8517358730002,-20.23650481599995],[118.88086998800024,-20.18547942499987],[118.95883222699999,-20.104180596999882],[118.97022545700005,-20.072198174999883],[118.97461998800023,-20.050388279],[118.98568769599999,-20.04062265399989],[119.00017337300002,-20.03460051899988],[119.01490319100006,-20.024346612999945],[119.04810631600006,-20.013604424999926],[119.05616295700005,-20.009860934999907],[119.06080162899998,-20.001071873000015],[119.06421959699999,-19.990817966999913],[119.06853274800014,-19.982842705999943],[119.09546959700018,-19.96672942499997],[119.11833743600019,-19.971612237999864],[119.16138756600006,-20.007419528999876],[119.16098066500004,-19.980726820999934],[119.16325931100019,-19.966241143999977],[119.17212975400007,-19.960137627999913],[119.19239342500023,-19.958916924999897],[119.21241295700024,-19.961195570999962],[119.29200280000012,-19.985039971999853],[119.33326256600006,-19.99212004999991],[119.35694420700004,-19.993096612999977],[119.37647545700017,-19.996270440999933],[119.41700280000006,-20.010186455999925],[119.43580162900004,-20.013604424999926],[119.44507897200018,-20.01132577899996],[119.45728600400004,-20.001153253],[119.4630639980002,-19.999932549999983],[119.47396894599997,-20.005466403999918],[119.47852623800021,-20.01344166499996],[119.48129316499997,-20.022556247999873],[119.48715254000015,-20.030938408999916],[119.52344811300023,-20.053155205999886],[119.54664147200019,-20.063571872999958],[119.56666100400005,-20.06878020599987],[119.58985436300006,-20.065850518999852],[119.62330162900004,-20.046156507999896],[119.63786868600008,-20.041599216999952],[119.64291425899998,-20.037774346999853],[119.66480553500006,-20.010430596999967],[119.67212975400005,-20.008558851999908],[119.69092858200004,-20.014825127999938],[119.70264733200005,-20.013604424999926],[119.71753991000004,-20.00367603999993],[119.71900475400017,-19.993340752999927],[119.71566816500015,-19.98308684699998],[119.71615644600014,-19.973239841999884],[119.73438561300023,-19.962660415000016],[119.755625847,-19.961195570999962],[119.80225670700013,-19.965752862999988],[119.90658613400008,-19.946547132999953],[120.07056725400005,-19.921644789999917],[120.23829186300011,-19.906833591999856],[120.36850019600008,-19.867120049999926],[120.65056399800018,-19.763278903999876],[120.80323326900006,-19.69801197699988],[120.95435631600012,-19.63372161299995],[121.12826582100014,-19.52068450299991],[121.16602623800011,-19.48455169099988],[121.1798608730002,-19.479750257999882],[121.19353274800001,-19.47242603999996],[121.31153405000022,-19.354099216999856],[121.4161889980002,-19.22161223799982],[121.51937910200004,-19.06959400799981],[121.539805535,-19.013604424999855],[121.55795332100004,-18.990004164999917],[121.56413821700008,-18.97568124799993],[121.56657962300018,-18.955254815999865],[121.56918379000003,-18.94459400799984],[121.5756942070001,-18.93572356599996],[121.59107506600006,-18.92115650799994],[121.59742272200016,-18.91122812299986],[121.61280358200011,-18.865004164999945],[121.63184655000012,-18.823988540000016],[121.64258873800013,-18.81023528399983],[121.648692254,-18.786228122999873],[121.64966881600017,-18.776788018999863],[121.64625084700018,-18.763441664999945],[121.63819420700021,-18.754815362999935],[121.62891686300006,-18.747735283999887],[121.62175540500006,-18.739353122999916],[121.6132918630001,-18.712497653999847],[121.62452233200013,-18.71062590899996],[121.64389082100004,-18.71705494599989],[121.65967858200004,-18.715020440999865],[121.6677352220001,-18.709079684999917],[121.67823326900006,-18.7061499979999],[121.71558678500006,-18.70370859199987],[121.72380618600003,-18.69947682099986],[121.76905358200015,-18.657403252999885],[121.77719160200016,-18.640883070999905],[121.78003991,-18.619235934999917],[121.77475019600004,-18.606133721999853],[121.7619735040001,-18.596937757999967],[121.73161868600012,-18.580987237999878],[121.75961347700004,-18.5609677059999],[121.77393639400012,-18.545668226999936],[121.79664147200018,-18.486911716999856],[121.81104576900022,-18.46257903399987],[121.8237410820001,-18.451836846999868],[121.83741295700023,-18.455743096999868],[121.85075931100008,-18.463636976999922],[121.86654707099999,-18.470798434999878],[121.88868248800006,-18.471856377999842],[121.91032962300008,-18.464450778999932],[122.02214603000019,-18.384698174999983],[122.04420006600017,-18.360528252999895],[122.05307050900004,-18.33147551899991],[122.0622664720001,-18.32000090899996],[122.12208092500022,-18.293633721999882],[122.14210045700023,-18.27947356599985],[122.15805097700004,-18.263441664999856],[122.18344160200014,-18.225355726999876],[122.18637129000011,-18.229668877999885],[122.19239342500006,-18.234307549999897],[122.19711347699999,-18.23894622199984],[122.21045983200011,-18.21111419099988],[122.22038821700019,-18.197198174999897],[122.25066165500019,-18.186781507999896],[122.32398522200005,-18.150567315999876],[122.34701582099999,-18.121189059999878],[122.36304772200016,-18.087985934999864],[122.36915123800006,-18.063897393999852],[122.36768639400012,-18.026136976999965],[122.36068769600003,-18.000176690999893],[122.34408613399997,-17.98300546699987],[122.313731316,-17.971449476999936],[122.283457879,-17.96428801899989],[122.24854576900006,-17.96087004999997],[122.21705162900015,-17.96965911299995],[122.19711347699999,-17.998793226999823],[122.19092858200023,-17.998793226999823],[122.18726647200018,-17.991957289999974],[122.18238365999999,-17.98650481599995],[122.17676842500012,-17.982110283999873],[122.16976972700004,-17.97828541500003],[122.19613691500003,-17.94540780999995],[122.20785566500004,-17.91130950299994],[122.20728600400005,-17.873223565999965],[122.19336998800017,-17.80584075299987],[122.19711347699999,-17.742445570999934],[122.19947350400004,-17.73308684699998],[122.20362389400006,-17.722100518999852],[122.20541425900008,-17.710870049999937],[122.20053144599999,-17.700860283999944],[122.18848717500005,-17.68368906000002],[122.1772567070001,-17.663018487999906],[122.17432701900016,-17.653985283999987],[122.16976972700004,-17.628838799999926],[122.15626061300021,-17.59783294099999],[122.15406334700006,-17.58814869599985],[122.14519290500017,-17.57219817499984],[122.14323978000006,-17.563653252999913],[122.14112389400023,-17.45875416499989],[122.1494246750001,-17.341485283999916],[122.16700280000022,-17.295668226999837],[122.1720483730002,-17.26116301899999],[122.17872155000023,-17.24423593500002],[122.19044030000023,-17.230564059999978],[122.20769290500007,-17.224786065999922],[122.21412194100006,-17.2108700499999],[122.26685631600004,-17.15064869599989],[122.27963300899998,-17.139255466999927],[122.27369225400015,-17.128350518999937],[122.26254316500015,-17.12623463299994],[122.25660241000006,-17.121270440999893],[122.26612389400012,-17.101250909],[122.27605228000002,-17.089288018999895],[122.41277103000019,-16.972751559999864],[122.45101972700004,-16.950453382999907],[122.444509311,-16.96892669099985],[122.45085696700008,-16.981622003],[122.4641219410001,-16.98381926899998],[122.478282097,-16.970961195999877],[122.48161868600008,-16.94996510199992],[122.47527103000002,-16.932386976999894],[122.47291100400017,-16.920179945999834],[122.4882918630001,-16.91570403399996],[122.50611412900015,-16.919610283999944],[122.51539147200006,-16.929375908999898],[122.52133222700016,-16.941664320999863],[122.52955162900017,-16.953871351999833],[122.54297936300023,-16.96087004999991],[122.59498131599999,-16.970961195999877],[122.58204186300011,-16.956231377999885],[122.56031334700006,-16.90943775799982],[122.53044681100006,-16.87395598799983],[122.52613366000004,-16.861748955999857],[122.52751712300002,-16.850274347],[122.53126061300016,-16.84417083099991],[122.53598066500015,-16.840101820999863],[122.54029381600017,-16.83440520599997],[122.54167728000007,-16.837497653999947],[122.546153191,-16.839043877999984],[122.55103600400015,-16.837497653999947],[122.55347741000006,-16.830987237999963],[122.55258222700004,-16.81731536299992],[122.55347741000006,-16.813897393999923],[122.5617781910001,-16.79973723799999],[122.57056725400017,-16.78850676899998],[122.58236738400015,-16.779554945999877],[122.60124759200008,-16.77223072699995],[122.606618686,-16.78687916499996],[122.61443118600013,-16.796075127999853],[122.62598717500023,-16.800388278999947],[122.64283287900005,-16.80022551899998],[122.65015709700006,-16.797621351999894],[122.6645613940001,-16.78850676899998],[122.67359459699999,-16.786716404],[122.69727623800023,-16.78769296699997],[122.70427493600002,-16.786716404],[122.71892337300002,-16.778903903999918],[122.7290145190001,-16.769219658999955],[122.74048912900005,-16.76132577899989],[122.75879967500012,-16.75872161299989],[122.77369225400018,-16.76165129999991],[122.82097415500013,-16.779717705999843],[122.76319420700011,-16.730075778999918],[122.74610436300023,-16.70289479],[122.74512780000018,-16.669854424999954],[122.74830162900005,-16.66236744599989],[122.75709069100012,-16.64657968500002],[122.75879967500012,-16.638848565999922],[122.75879967500012,-16.60442473799999],[122.76246178500016,-16.594170830999957],[122.77149498800004,-16.579278253],[122.78394616000017,-16.565850518999838],[122.79712975400004,-16.560153903999932],[122.82553144600016,-16.56308359199987],[122.83741295700011,-16.561618747999987],[122.84888756600004,-16.55315520599987],[122.8559676440001,-16.541192315999922],[122.86166425900002,-16.52776458099993],[122.87045332100014,-16.516778252999885],[122.88640384200008,-16.51230234199999],[122.8945418630001,-16.492120049999983],[122.90284264400006,-16.450616143999895],[122.91618899800007,-16.415948175],[122.93824303500018,-16.416110934999963],[123.00660241000017,-16.374444268999923],[123.02027428500011,-16.382582290000016],[123.0180770190001,-16.396091404],[122.99838300900015,-16.4229468729999],[123.04151451900005,-16.4410946589999],[123.05836022200018,-16.453545830999914],[123.05372155000022,-16.47063567499987],[123.04078209700006,-16.478122654000018],[123.02833092500022,-16.477227471999925],[123.015879754,-16.473239841999956],[123.00261478000019,-16.47063567499987],[122.99000084700012,-16.473402601999922],[122.98487389400006,-16.481052341999856],[122.97787519600003,-16.505466403999904],[122.9904077480002,-16.529229424999983],[122.95980878999997,-16.580336195999877],[122.97169030000022,-16.594170830999957],[122.97673587300007,-16.61646900799982],[122.98072350400004,-16.62542083099993],[122.98878014400006,-16.62900156],[123.00904381600017,-16.616875908999916],[123.02100670700021,-16.6143531229999],[123.02637780000006,-16.625583591999984],[123.02670332100004,-16.649102471999868],[123.03077233200007,-16.67620208099997],[123.04281660200016,-16.692478123],[123.06739342500006,-16.683526299999897],[123.08187910200003,-16.703220309999935],[123.09017988400002,-16.709649346999853],[123.10206139400017,-16.712090752999885],[123.11255944100004,-16.709730726999837],[123.11703535199997,-16.703545830999957],[123.11988366000004,-16.69540781000002],[123.12574303500016,-16.68694426899999],[123.13217207099999,-16.68629322699995],[123.13355553500017,-16.696872653999904],[123.13103274800008,-16.71103281],[123.12574303500016,-16.721123955999985],[123.11491946700019,-16.727634372999887],[123.1071069670002,-16.728936455999886],[123.10084069100004,-16.732354424999897],[123.09457441499998,-16.745700778999904],[123.094493035,-16.76930104000003],[123.10645592500023,-16.78639088299998],[123.12378991000004,-16.796807549999883],[123.13941491000004,-16.80022551899998],[123.15088951900016,-16.80771249799986],[123.15626061300023,-16.8248023419999],[123.15772545700011,-16.843438408999887],[123.15674889400012,-16.855564059999963],[123.14356530000025,-16.892347914999874],[123.14332115999999,-16.913750908999916],[123.16016686300011,-16.923109632999854],[123.18376712300007,-16.928969007999896],[123.1982528000001,-16.943129164999917],[123.21810957100004,-16.977715752999913],[123.26042728000013,-17.01474374799993],[123.26661217500005,-17.02939218499995],[123.26758873800017,-17.06951262799987],[123.27173912899998,-17.085625908999845],[123.28028405000012,-17.101250909],[123.31544030000006,-17.13827890399986],[123.33375084700006,-17.162367445999962],[123.34180748800006,-17.187269789999917],[123.35075931100019,-17.20468515399989],[123.36817467500005,-17.22844817499997],[123.37940514400006,-17.254815362999977],[123.36963951900022,-17.27947356599988],[123.38795006600002,-17.315606377999913],[123.39966881600017,-17.329278252999856],[123.43441816500014,-17.344414971999853],[123.44809003999998,-17.36500416499989],[123.45777428500004,-17.384372653999904],[123.46583092500005,-17.38933684699994],[123.47706139400005,-17.405450127999913],[123.49040774800018,-17.41627369599992],[123.50147545700021,-17.429782809999892],[123.51172936300016,-17.47185637799994],[123.54053795700011,-17.501397393999905],[123.55396569100016,-17.518975518999937],[123.560313347,-17.536228122999944],[123.56690514400012,-17.57634856599988],[123.567637566,-17.59140390399989],[123.57081139400006,-17.595147393999923],[123.57789147200006,-17.590508721999896],[123.58497155000012,-17.58098723799999],[123.58814537900017,-17.57057057099982],[123.58765709700016,-17.51506926899995],[123.58659915500002,-17.507500908999987],[123.58130944100007,-17.492364190999908],[123.56332441500003,-17.457614841999856],[123.56080162899998,-17.447360934999917],[123.56169681100017,-17.404473565999933],[123.567637566,-17.361993096999882],[123.5732528000001,-17.35019296699991],[123.58985436300006,-17.326755467000012],[123.59498131600016,-17.313571872999887],[123.59522545700023,-17.30266692499991],[123.59408613400004,-17.290459893999923],[123.59441165500003,-17.27874114399985],[123.59839928499999,-17.269463799999897],[123.60434004000003,-17.26051197699995],[123.60767662900017,-17.250664971999853],[123.60922285199999,-17.22820403399993],[123.61280358200007,-17.215752862999835],[123.62061608200015,-17.207940362999917],[123.62964928500017,-17.20256926899988],[123.63453209700008,-17.2015927059999],[123.63697350400017,-17.202894789999903],[123.64332116000001,-17.203708591999913],[123.64429772200018,-17.1847470029999],[123.63965905000025,-17.17278411299996],[123.62281334700006,-17.15593840899987],[123.57960045700023,-17.09400807099989],[123.57447350400005,-17.042901299999926],[123.57764733200011,-17.025485934999864],[123.59131920700021,-16.999932549999954],[123.59498131600016,-16.98512135199998],[123.60613040500013,-16.99635182099989],[123.61540774800007,-16.996514580999957],[123.62468509200014,-16.992608330999868],[123.63591556100012,-16.991387627999856],[123.65040123800006,-16.99391041499996],[123.65601647200018,-16.995782158999926],[123.66724694100017,-17.008477471999896],[123.66993248800021,-17.01572031],[123.68018639400005,-17.060316664999988],[123.68628991000017,-17.057875257999868],[123.69312584700016,-17.0507138],[123.69800866000006,-17.046644789999945],[123.71273847700004,-17.052829685],[123.73340905000023,-17.066094658999944],[123.75147545700004,-17.082614842000012],[123.75945071700002,-17.09783294099999],[123.76107832100014,-17.108005466999956],[123.76547285200003,-17.117608330999843],[123.77125084700012,-17.126071872999972],[123.77711022200005,-17.13241952899999],[123.78891035200004,-17.140720309999892],[123.81153405000006,-17.150485935],[123.82154381600019,-17.15593840899987],[123.83448326900016,-17.17164478999993],[123.84652754000011,-17.192315362999935],[123.86085045700007,-17.21038176899995],[123.879730665,-17.217950127999913],[123.90267988399997,-17.21851978999989],[123.913340691,-17.215590101999865],[123.91773522200012,-17.207452080999943],[123.91407311300021,-17.198988539999903],[123.9047957690001,-17.196058851999965],[123.89340254000004,-17.194512627999927],[123.88298587300002,-17.190687757999925],[123.85377037899998,-17.163262627999952],[123.83708743600006,-17.13241952899999],[123.81470787900004,-17.053480726999876],[123.79883873800013,-17.019789320999877],[123.79460696700019,-17.00009531000002],[123.804453972,-16.991387627999856],[123.81763756600016,-16.996189059999935],[123.85401451900023,-17.018487237999874],[123.86304772200005,-17.025567315999936],[123.86963951900024,-17.00465260199988],[123.85865319100016,-16.991631768999895],[123.84310957100016,-16.97926197699995],[123.83521569100012,-16.960707289999945],[123.84164472700003,-16.946547132999925],[123.87012780000013,-16.92359791499993],[123.87671959700016,-16.912692966999956],[123.88379967500022,-16.896905205999914],[123.90072675900016,-16.88665129999997],[123.92090905000018,-16.87835051899991],[123.93751061300023,-16.867852471999925],[123.94849694100016,-16.850518487999935],[123.95329837300007,-16.828545830999843],[123.94857832100014,-16.809258721999896],[123.93140709700006,-16.80022551899998],[123.92359459700005,-16.838799737999864],[123.902598504,-16.85898202899989],[123.83521569100012,-16.881524346999967],[123.7924910820001,-16.890720310000017],[123.76807701900023,-16.878513278999876],[123.73267662900005,-16.813897393999923],[123.72608483200023,-16.79648202899986],[123.71680748800011,-16.757419528999975],[123.70826256600017,-16.741875908999972],[123.69312584700016,-16.729913018999866],[123.65935306100019,-16.714450778999932],[123.64332116000001,-16.704034112999935],[123.61158287900007,-16.67376067499994],[123.59555097700014,-16.665297132999825],[123.50993899800008,-16.653903903999947],[123.50912519600016,-16.649834893999895],[123.51295006600019,-16.64202239399998],[123.52930748800011,-16.632419528999918],[123.55250084700002,-16.62623463299994],[123.56617272200006,-16.615980726999833],[123.55396569100016,-16.594170830999957],[123.59506269600016,-16.574883721999925],[123.60914147199999,-16.56389739399988],[123.60922285199999,-16.546319268999852],[123.59644616000006,-16.535902601999865],[123.5551863940001,-16.539727471999967],[123.53345787900005,-16.532159112999835],[123.54574629,-16.56267669099986],[123.54346764400013,-16.56698984199987],[123.51254316500015,-16.56666432099985],[123.4985457690001,-16.561944268999838],[123.49252363400004,-16.549737237999864],[123.48804772200005,-16.54387786299999],[123.45850670700005,-16.52597421699994],[123.45883222699999,-16.524672132999953],[123.4459741550002,-16.51230234199999],[123.44467207100008,-16.51230234199999],[123.43946373800004,-16.507907809999935],[123.43336022200018,-16.50457122199991],[123.42758222700003,-16.499769789999917],[123.42416425900002,-16.491143487999906],[123.46949303500006,-16.503676039999917],[123.48267662900015,-16.505466403999904],[123.49252363400004,-16.50025807099982],[123.48609459700016,-16.488376559999864],[123.46583092500005,-16.46379973799985],[123.48951256600012,-16.468926690999865],[123.52426191500014,-16.498467706],[123.54346764400013,-16.505466403999904],[123.567637566,-16.51100025799991],[123.59294681100009,-16.52214934699994],[123.61841881600017,-16.529961846999836],[123.64332116000001,-16.52597421699994],[123.63510175900005,-16.515394789999903],[123.62061608200015,-16.510349216999956],[123.58814537900017,-16.505466403999904],[123.6074324880001,-16.494073174999926],[123.63819420700011,-16.489515882999896],[123.65406334699999,-16.484470309999864],[123.53874759200018,-16.42644622199998],[123.50611412900017,-16.416110934999963],[123.50611412900017,-16.40797291499996],[123.53785240999999,-16.414646092],[123.54932701900023,-16.411879164999945],[123.55396569100016,-16.395603123000015],[123.6484481130001,-16.427829684999963],[123.71168053500017,-16.42978281],[123.68816165500002,-16.40797291499996],[123.67554772200005,-16.399102472],[123.66041100400005,-16.395603123000015],[123.65186608200024,-16.39251067499994],[123.64405358200023,-16.3853492169999],[123.63249759200019,-16.37135182099985],[123.63160241,-16.364678643999966],[123.64047285200017,-16.360609632999925],[123.65162194100017,-16.360284112999988],[123.66439863400004,-16.36988697699988],[123.68132571700019,-16.37623463299991],[123.69971764400023,-16.38103606599998],[123.71168053500017,-16.381280205999925],[123.7150985040001,-16.373467705999854],[123.71656334700005,-16.358656507999882],[123.71558678500017,-16.343357028999918],[123.71168053500017,-16.33359140399996],[123.6982528000001,-16.330010675],[123.657969597,-16.327732028999932],[123.64958743600006,-16.32333749799986],[123.64576256600006,-16.315362237999977],[123.63697350400017,-16.30535247199991],[123.6269637380001,-16.296807549999983],[123.61915123800011,-16.293145440999936],[123.61011803500017,-16.29517994599996],[123.60336347700016,-16.29973723799999],[123.60287519600014,-16.304131768999895],[123.61231530000005,-16.306247653999904],[123.61589603000006,-16.308526299999883],[123.61500084700005,-16.313409112999935],[123.61019941500014,-16.31812916500003],[123.60181725399998,-16.319919529000018],[123.59408613400004,-16.316827080999943],[123.58887780000012,-16.310723565999965],[123.58480879000014,-16.304375908999845],[123.58130944100007,-16.29998137799994],[123.55836022200018,-16.286716404],[123.54737389400012,-16.27752044099995],[123.53972415500019,-16.26523202899999],[123.56714928500006,-16.2609188779999],[123.57642662900017,-16.242445570999877],[123.57064863400002,-16.221856377999842],[123.55396569100016,-16.21062590899984],[123.56373131600006,-16.185316664999974],[123.57016035200004,-16.176934502999842],[123.58130944100007,-16.169610283999916],[123.5854598320001,-16.174004815999908],[123.59669030000013,-16.178806247999898],[123.60336347700016,-16.175551039999945],[123.59498131600016,-16.155938408999972],[123.6909285820001,-16.148695570999962],[123.71908613400008,-16.155938408999972],[123.72413170700011,-16.136325779000014],[123.73259524800002,-16.141045830999843],[123.74187259200019,-16.154880467000012],[123.74952233200021,-16.16277434699991],[123.77100670700017,-16.163344007999882],[123.77369225400004,-16.16277434699991],[123.77849368600002,-16.167413018999923],[123.78581790500002,-16.180433851999922],[123.79053795700021,-16.183282158999955],[123.79965254000004,-16.18547942499994],[123.80689537900005,-16.19109465899986],[123.80933678500016,-16.198907158999944],[123.804453972,-16.20745208099987],[123.79607181100006,-16.208754164999874],[123.77426191500004,-16.201918226999936],[123.766856316,-16.204359632999967],[123.76929772200006,-16.216566664999945],[123.78785241000017,-16.225355726999837],[123.81128991000006,-16.230238539999988],[123.82837975400015,-16.23113372199998],[123.81348717500012,-16.246026299999937],[123.78711998800021,-16.251560153999947],[123.75749759200019,-16.253676039999874],[123.73267662900005,-16.258965752999856],[123.80347741000004,-16.30820077899986],[123.82837975400015,-16.319919529000018],[123.84245853000003,-16.32252369599985],[123.85377037899998,-16.32333749799986],[123.86264082100014,-16.327325127999927],[123.86931399800018,-16.3404273419999],[123.87061608200011,-16.356622002999856],[123.86605879000015,-16.368096612999892],[123.85808353000019,-16.370782158999873],[123.84880618600008,-16.36077239399998],[123.83521569100012,-16.36825937299986],[123.853282097,-16.415948175],[123.86304772200005,-16.42978281],[123.86931399800018,-16.416110934999963],[123.87671959700016,-16.416110934999963],[123.87924238400002,-16.420668226999837],[123.88502037900017,-16.424981377999927],[123.88965905000012,-16.42978281],[123.89470462300002,-16.409763278999947],[123.89136803500001,-16.369805596999896],[123.89722741000006,-16.35393645599987],[123.89185631600017,-16.338799737999878],[123.90674889400022,-16.338636976999823],[123.92872155000022,-16.346123955999968],[123.94507897200018,-16.35393645599987],[123.95036868600008,-16.35995859199997],[123.96697024800018,-16.374444268999923],[123.98462975400005,-16.384698174999855],[123.99284915500012,-16.37786223799992],[123.95777428500006,-16.320896091999913],[123.95142662899998,-16.293633721999925],[123.98601321700019,-16.286309503],[123.98601321700019,-16.278903903999932],[123.96461022200005,-16.268649997999987],[123.9423934250001,-16.252862237999864],[123.9233504570001,-16.23479583099993],[123.91089928500016,-16.21746184699994],[123.9328719410001,-16.22177499799986],[123.97217858200011,-16.24041106599985],[123.99626712300012,-16.244805596999925],[124.018890821,-16.246026299999937],[124.02930748800006,-16.24928150799998],[124.03386478000002,-16.25554778399984],[124.03785241,-16.263441665],[124.04761803500006,-16.26360442499997],[124.0685327480002,-16.258965752999856],[124.10775800900002,-16.265394789999945],[124.12623131600006,-16.27223072699988],[124.14795983200024,-16.288262627999867],[124.16716556100008,-16.296970309999946],[124.17090905000012,-16.302992445999863],[124.19939212300018,-16.375095309999878],[124.20997155000018,-16.38958098799992],[124.22266686300021,-16.395603123000015],[124.30062910199997,-16.40243906000002],[124.3322046230001,-16.41008879999997],[124.34213300899998,-16.40797291499996],[124.36646569100004,-16.36451588299991],[124.38607832100003,-16.35116952899999],[124.40015709700005,-16.35312265399986],[124.42481530000022,-16.374444268999923],[124.44922936300011,-16.386976820999834],[124.47364342500023,-16.39332447699995],[124.59245853000007,-16.401299737999906],[124.62330162899998,-16.39999765399999],[124.6501570970001,-16.388116143999863],[124.657481316,-16.395603123000015],[124.6813257170002,-16.386976820999834],[124.72575931100017,-16.382500908999944],[124.76872806100006,-16.3853492169999],[124.78785241000006,-16.399021092000012],[124.80372155000025,-16.41822682099989],[124.83969160200003,-16.425713799999954],[124.87891686300016,-16.420668226999837],[124.90398196700008,-16.40243906000002],[124.88404381600017,-16.39918385199998],[124.84083092500008,-16.405205987999906],[124.82520592500006,-16.399021092000012],[124.80941816500015,-16.387627862999874],[124.79135175900002,-16.381931247999972],[124.75318444100006,-16.374444268999923],[124.69727623800011,-16.344414971999967],[124.59620201900005,-16.3265927059999],[124.57325280000012,-16.325860283999873],[124.499278191,-16.33570728999989],[124.48552493600019,-16.345472915000016],[124.47632897200005,-16.347832940999965],[124.45679772200006,-16.33326588299994],[124.45337975400004,-16.335056248000015],[124.44996178500004,-16.338474216999852],[124.44459069100016,-16.3404273419999],[124.42872155000023,-16.340508721999882],[124.413259311,-16.338148695999834],[124.40154056100002,-16.32927825299997],[124.39478600400001,-16.299248955999914],[124.38998457100003,-16.29265715899986],[124.38542728000006,-16.287855726999865],[124.38331139400023,-16.28264739399995],[124.3852645190001,-16.270196221999853],[124.39478600400001,-16.249607029],[124.39682050900004,-16.238539320999877],[124.39210045700021,-16.22918059699994],[124.383067254,-16.22291432099989],[124.37842858200013,-16.214939059999935],[124.38656660199997,-16.200616143999937],[124.39185631600017,-16.18816497199984],[124.39185631600017,-16.175957940999865],[124.39454186300021,-16.166599217000012],[124.41822350400017,-16.160577080999914],[124.42554772200018,-16.153578382999925],[124.42969811300011,-16.14185963299985],[124.43091881600006,-16.070000908999972],[124.43433678500007,-16.05779387799998],[124.443125847,-16.051853122999972],[124.454274936,-16.05266692499998],[124.46583092500022,-16.060479424999883],[124.47242272200006,-16.073500257999953],[124.47266686300004,-16.08782317499994],[124.47103925900015,-16.101820570999905],[124.47266686300004,-16.11500416499996],[124.47689863399998,-16.120538018999966],[124.49984785200012,-16.14226653399986],[124.51091556100002,-16.15829843500002],[124.52035566500015,-16.176446221999853],[124.529551629,-16.154961847],[124.54672285200004,-16.128106377999842],[124.56967207100004,-16.109958591999927],[124.59620201900005,-16.11500416499996],[124.5900171230002,-16.094170830999886],[124.58936608200005,-16.025079033999955],[124.58375084700019,-15.988864841999941],[124.59115644600014,-15.977308851999837],[124.61597740999999,-15.977227471999852],[124.60767662900005,-15.957614841999968],[124.60629316500015,-15.936781507999909],[124.60971113400014,-15.898695570999834],[124.61988366,-15.881931247999901],[124.64258873800021,-15.86565520599987],[124.66586347700016,-15.861504815999837],[124.67798912900015,-15.881036065999908],[124.68425540500019,-15.881036065999908],[124.69459069099999,-15.856377862999906],[124.69922936300021,-15.836846612999935],[124.70875084700005,-15.82073333099987],[124.732676629,-15.80657317499994],[124.69711347700003,-15.794040622999928],[124.67888431100008,-15.791680596999981],[124.63168379000008,-15.794203382999894],[124.62183678500004,-15.797784112999878],[124.60971113400014,-15.80657317499994],[124.58668053500017,-15.847832940999893],[124.55844160200004,-15.874932549999912],[124.51514733200023,-15.97014739399998],[124.48633873800011,-15.998304945999877],[124.48365319100004,-15.985528252999927],[124.48666425900015,-15.975030205999943],[124.49138431100008,-15.96412525799988],[124.49317467500023,-15.950453382999854],[124.48943118600019,-15.940687757999896],[124.48226972700014,-15.934991143999921],[124.47559655000012,-15.927341403999973],[124.46949303499999,-15.895928643999865],[124.450450066,-15.84319426899995],[124.43848717500006,-15.82634856599995],[124.43995201900023,-15.839043877999925],[124.43873131600004,-15.849704684999862],[124.43409264400012,-15.85564544099998],[124.42481530000022,-15.854261976999908],[124.42090905000022,-15.860609632999923],[124.41675866,-15.86484140399986],[124.40430748800011,-15.874769789999943],[124.39918053500017,-15.804782809999862],[124.39340254000003,-15.788832289999945],[124.38453209700018,-15.771416924999883],[124.38152103000006,-15.748467705999971],[124.38347415500013,-15.727634373],[124.38998457100003,-15.717054945999863],[124.3779403000001,-15.687269789999947],[124.37647545700021,-15.676202080999913],[124.37745201900012,-15.666924737999864],[124.38062584700018,-15.664483330999914],[124.3852645190001,-15.667738539999874],[124.38998457100003,-15.676202080999913],[124.39682050900004,-15.676202080999913],[124.39568118600017,-15.663995049999926],[124.39673912900004,-15.652276299999855],[124.39975019600016,-15.642266533999873],[124.40430748800011,-15.635186455999984],[124.41797936300023,-15.669366143999893],[124.42628014400012,-15.64755624799993],[124.42750084700006,-15.62151458099987],[124.41846764400012,-15.604099216999897],[124.39682050900004,-15.608005466999897],[124.4033309250001,-15.559258721999882],[124.39698326900012,-15.53915781],[124.37647545700021,-15.525323174999839],[124.38990319100006,-15.522556247999873],[124.4060164720001,-15.528008721999909],[124.41920006600006,-15.534600518999968],[124.42481530000022,-15.535577080999941],[124.42896569100019,-15.53045012799994],[124.44776451900022,-15.525079033999885],[124.45199629000014,-15.52166106599988],[124.45199629000014,-15.491143487999848],[124.47291100400004,-15.468682549999928],[124.50424238400014,-15.46746184699991],[124.53760826900023,-15.480726820999946],[124.56527754000015,-15.501560154000018],[124.57813561300004,-15.506931247999887],[124.5979923840001,-15.509942315999893],[124.6176863940001,-15.50953541499989],[124.62964928500006,-15.504978123000015],[124.62964928500006,-15.43254973799999],[124.631114129,-15.425469658999843],[124.63461347699997,-15.419040623000015],[124.64014733200011,-15.415948174999938],[124.6467391290001,-15.418877862999949],[124.64942467500018,-15.426853122999914],[124.64283287900011,-15.446384372999901],[124.64332116000017,-15.45712656],[124.65406334700018,-15.47234465899997],[124.668630405,-15.478448174999883],[124.68262780000006,-15.47389088299984],[124.6917423840001,-15.45712656],[124.67286217500022,-15.442640882999868],[124.67261803499999,-15.418226820999907],[124.68344160199999,-15.3923479149999],[124.69800866000004,-15.373955987999864],[124.72779381600006,-15.361260674999896],[124.732676629,-15.357517184999947],[124.72803795700004,-15.347588799999869],[124.7085067070001,-15.345635674999913],[124.70533287900004,-15.332940362999949],[124.68100019600014,-15.34978606599995],[124.66968834700019,-15.352308851999965],[124.66374759200009,-15.339776299999953],[124.66700280000012,-15.324395440999835],[124.67725670700023,-15.321058851999894],[124.68921959700005,-15.32048919099992],[124.69800866000004,-15.313083591999856],[124.69792728000007,-15.298435153999932],[124.68685957100004,-15.294366143999879],[124.67286217500022,-15.294366143999879],[124.66374759200009,-15.291924737999848],[124.66032962300004,-15.283786716999927],[124.66016686300004,-15.274183851999934],[124.66374759200009,-15.250420830999856],[124.68238366000007,-15.260674737999876],[124.68816165500017,-15.262790622999887],[124.69800866000004,-15.26474374799993],[124.69605553500016,-15.261976820999879],[124.69800866000004,-15.257094007999896],[124.70264733200023,-15.252536716999956],[124.70875084700005,-15.250420830999856],[124.71176191500015,-15.253513278999932],[124.71306399800002,-15.26864999799993],[124.71558678500016,-15.274590752999941],[124.72038821700006,-15.27532317499997],[124.75660241000016,-15.28525155999989],[124.76148522200006,-15.29216887799997],[124.75489342500022,-15.307793877999956],[124.73951256600002,-15.332940362999949],[124.74586022200006,-15.33538176899998],[124.78223717500023,-15.301446221999937],[124.7978621750001,-15.291924737999848],[124.803965691,-15.29517994599989],[124.81560306100017,-15.309828382999983],[124.82520592500006,-15.313083591999856],[124.8354598320001,-15.318047783999901],[124.83480879000017,-15.329766533999887],[124.82862389400012,-15.343357029000018],[124.822032097,-15.354099216999941],[124.84343509200008,-15.352797132999953],[124.86931399800007,-15.34775155999992],[124.8834741550002,-15.347263278999932],[124.9055281910001,-15.351657809999919],[124.92042076900023,-15.361016533999859],[124.94556725400005,-15.38884856599999],[124.94971764400005,-15.39568450299984],[124.95215905000012,-15.402032158999958],[124.95753014400016,-15.406833591999856],[124.97624759200002,-15.410251559999864],[124.98340905000005,-15.41383228999993],[124.98959394600017,-15.418389580999971],[124.99333743600017,-15.422295830999957],[124.99317467500012,-15.438083592],[124.97624759200002,-15.469170830999913],[124.97974694100004,-15.477634372999873],[124.99170983200017,-15.478122653999863],[125.00074303500017,-15.472914320999863],[125.00855553500018,-15.466485283999944],[125.01758873800007,-15.463311455999886],[125.02759850400005,-15.466729424999981],[125.02711022200018,-15.474786065999837],[125.02442467500005,-15.484063408999972],[125.02759850400005,-15.491143487999848],[125.0498153000001,-15.49822356599999],[125.05396569100006,-15.485772393999966],[125.05355879000014,-15.465590101999949],[125.06169681100006,-15.449639580999941],[125.08659915500017,-15.454766533999942],[125.15796959700018,-15.505140882999981],[125.18523196700009,-15.517836195999946],[125.17237389400022,-15.502373955999927],[125.13217207100014,-15.471774998],[125.12370853000019,-15.460137627999913],[125.07252037900015,-15.418877862999949],[125.07349694100006,-15.40748463299998],[125.0896102220001,-15.347263278999932],[125.09888756600006,-15.33806731599995],[125.11304772200018,-15.329278252999899],[125.12924238400002,-15.32236093499999],[125.14429772200005,-15.319268487999906],[125.14429772200005,-15.313083591999856],[125.12761478000017,-15.313734632999898],[125.11443118600008,-15.308689059999947],[125.10401451900016,-15.298760674999867],[125.09644615999999,-15.28525155999989],[125.09050540500019,-15.305108330999985],[125.07292728000007,-15.304457290000029],[125.05258222700016,-15.293226820999847],[125.03809655000012,-15.28142669099988],[125.02662194100016,-15.283949476999892],[124.98438561300023,-15.312188408999859],[124.95150800900015,-15.323011976999936],[124.92888431100019,-15.338148695999934],[124.91773522200019,-15.339776299999953],[124.90658613400015,-15.333184502999899],[124.90162194099999,-15.32236093499999],[124.89714603000006,-15.299411716999911],[124.893809441,-15.2972958309999],[124.88933353000007,-15.298028252999844],[124.8852645190001,-15.296807549999912],[124.8834741550002,-15.288669528999987],[124.88453209700006,-15.280450127999897],[124.88746178500016,-15.275485934999933],[124.89714603000006,-15.26474374799993],[124.90699303500017,-15.257745049999938],[124.91871178500006,-15.253024997999944],[124.9246525400001,-15.247165622999901],[124.91773522200019,-15.237399997999958],[124.9246525400001,-15.22926197699985],[124.93620853000017,-15.222588799999981],[124.94792728000019,-15.21795012799987],[124.96558678499999,-15.213067315999892],[124.97055097700016,-15.207777601999906],[124.976817254,-15.207777601999906],[124.98991946700008,-15.219984632999896],[125.00652103000003,-15.221286716999982],[125.02572675899998,-15.203708591999956],[125.055430535,-15.16228606599985],[125.04672285200003,-15.158379815999936],[125.02507571700002,-15.153008721999894],[125.01384524800002,-15.148614190999908],[125.00586998800006,-15.177504165],[125.00359134200019,-15.182061455999872],[124.99366295700011,-15.181410414999917],[124.98633873800011,-15.178480726999979],[124.98170006600016,-15.172539971999967],[124.97974694100004,-15.16228606599985],[124.97388756600017,-15.168064059999905],[124.96363366000006,-15.186293226999894],[124.96265709700018,-15.190199476999977],[124.95492597700016,-15.191827081],[124.93189537899998,-15.203220309999878],[124.88721764400024,-15.239678643999921],[124.86988366000004,-15.250420830999856],[124.87012780000012,-15.233819268999897],[124.87224368600017,-15.228610934999978],[124.87671959700018,-15.223728123000017],[124.86988366000004,-15.216241143999865],[124.86304772200006,-15.229913018999895],[124.856211785,-15.229913018999895],[124.85792076900012,-15.219496351999908],[124.85678144600011,-15.198500257999868],[124.856211785,-15.195082290000029],[124.85987389400017,-15.186211846999909],[124.86817467500023,-15.174411716999925],[124.86988366000004,-15.165948174999897],[124.86150149800018,-15.16285572699982],[124.84506269599997,-15.167250257999896],[124.834239129,-15.16472747199988],[124.84197024800018,-15.141208592000012],[124.84351647200006,-15.141534112999935],[124.856211785,-15.134942315999877],[124.85808353000019,-15.131280206],[124.86052493600012,-15.118910414999888],[124.86304772200006,-15.114434503],[124.87159264400023,-15.10930755],[124.88363691500015,-15.104750257999868],[124.89665774800008,-15.1014950499999],[124.90772545700011,-15.100274346999896],[124.91700280000022,-15.102471612999892],[124.93067467500006,-15.112237237999835],[124.95248457100003,-15.115899346999884],[124.9599715500001,-15.119886976999865],[124.97291100399998,-15.134942315999877],[124.99708092500012,-15.097914320999848],[125.01303144600003,-15.08464934699991],[125.02125084699999,-15.100274346999896],[125.02759850400005,-15.084567966999925],[125.03150475400005,-15.06161874799993],[125.0278426440001,-15.040948174999924],[125.01042728000002,-15.031914972],[125.01270592500012,-15.023695570999918],[125.01197350400015,-15.005140882999825],[125.00806725400017,-14.98455169099988],[125.0001733730002,-14.970391533999859],[125.01343834700005,-14.972100518999865],[125.02361087300008,-14.97673919099998],[125.04175866000017,-14.990980726999892],[125.04802493600002,-14.981866143999982],[125.05958092500023,-14.9723446589999],[125.07227623800011,-14.96851978999989],[125.08204186300024,-14.976657809999907],[125.08318118600019,-14.993259372999958],[125.063243035,-15.013604424999938],[125.06169681100006,-15.031914972],[125.06910241000006,-15.025079033999901],[125.07593834700016,-15.059828382999953],[125.0874129570001,-15.051202080999856],[125.09839928500017,-15.029066664999958],[125.11003665500006,-15.025079033999901],[125.11036217500013,-15.02752044099992],[125.11540774800002,-15.032891533999972],[125.12134850400017,-15.037692966999883],[125.12370853000019,-15.038750908999843],[125.12614993600008,-15.049493096999855],[125.123301629,-15.055271091999911],[125.11898847699999,-15.060479425],[125.11687259200018,-15.069512627999913],[125.13282311300011,-15.107842705999941],[125.134043816,-15.114434503],[125.14047285200004,-15.120375257999854],[125.15430748800021,-15.15032317499991],[125.16529381600017,-15.16228606599985],[125.17156009200002,-15.15601979],[125.16724694100004,-15.149834893999836],[125.16627037900017,-15.141859632999969],[125.16895592500022,-15.133233330999872],[125.17457116000004,-15.12444426899999],[125.17611738399998,-15.116306247999887],[125.15886478000007,-15.06275807099996],[125.14795983200013,-15.044854424999912],[125.14576256599999,-15.028008721999909],[125.16529381600017,-15.011407158999956],[125.16504967500022,-15.031996351999977],[125.17261803500016,-15.04452890399999],[125.18588300900002,-15.050713799999867],[125.20191491,-15.052422783999873],[125.21558678500004,-15.057549737999977],[125.22201582100016,-15.067071221999882],[125.22974694100016,-15.072686455999886],[125.24659264400006,-15.066094658999987],[125.24984785200003,-15.07822031],[125.25570722700014,-15.085056247999914],[125.26221764400022,-15.089288018999936],[125.28077233200018,-15.10759856599999],[125.28174889400023,-15.11337655999995],[125.27906334700006,-15.119886976999865],[125.27393639400022,-15.12810637799994],[125.288259311,-15.140557549999967],[125.310801629,-15.15064869599985],[125.32878665500007,-15.152764580999857],[125.32911217500006,-15.141208592000012],[125.35710696700019,-15.136488539999917],[125.41993248800023,-15.149346612999848],[125.43213951900023,-15.137953382999882],[125.43067467500016,-15.120538018999909],[125.42514082100014,-15.116143487999834],[125.39405358200021,-15.120700778999876],[125.382090691,-15.116875908999857],[125.37378991000006,-15.10759856599999],[125.36939537900004,-15.096449476999965],[125.36947675900004,-15.086521091999884],[125.37330162900004,-15.085056247999914],[125.38038170700011,-15.08407968500002],[125.38746178500017,-15.081801039999874],[125.39063561300024,-15.076592705999971],[125.38738040500019,-15.068129164999933],[125.38013756600017,-15.066094658999987],[125.37281334700005,-15.065036716999856],[125.36947675900004,-15.059828382999953],[125.36646569100006,-15.051446221999896],[125.36939537900004,-15.04778411299985],[125.38062584700006,-15.04615650799991],[125.38892662900004,-15.042901299999969],[125.40577233200023,-15.028415623000013],[125.430837436,-15.019707940999849],[125.42953535200004,-15.009047132999912],[125.41749108200023,-15.002211195999893],[125.38404381600017,-15.01392994599996],[125.366953972,-15.008396091999956],[125.3545028000001,-14.993910415],[125.34652754000014,-14.99627044099995],[125.33529707100014,-14.997735283999916],[125.32992597700012,-14.99627044099995],[125.32691491000017,-14.98642343500002],[125.32162519600003,-14.984063408999972],[125.31714928500006,-14.98512135199985],[125.31128991000013,-14.987237237999862],[125.30762780000023,-14.989678643999893],[125.3086043630001,-14.990980726999892],[125.29769941500015,-14.99195728999996],[125.28858483200021,-14.994398695999891],[125.28093509200014,-14.993422132999925],[125.27393639400022,-14.984063408999972],[125.273692254,-14.976169528999918],[125.27767988400008,-14.967950128],[125.28760826900006,-14.956231377999842],[125.27572675900002,-14.956963799999867],[125.26417076900012,-14.962009372999985],[125.25570722700014,-14.967705987999876],[125.25342858200011,-14.970391533999859],[125.24284915500002,-14.966078382999937],[125.23812910200003,-14.952813409],[125.22925866000017,-14.949965101999965],[125.22169030000023,-14.951918226999835],[125.21827233200023,-14.955661716999868],[125.21412194100016,-14.958103122999901],[125.20492597700004,-14.956231377999842],[125.19703209700006,-14.952325127999842],[125.18677819099999,-14.945489190999908],[125.18295332099999,-14.939141533999885],[125.19507897200018,-14.93629322699985],[125.20427493600006,-14.932061455999913],[125.20899498800006,-14.922295830999886],[125.21208743600008,-14.912774346999981],[125.21583092500005,-14.908379815999906],[125.22722415500006,-14.906914971999853],[125.2446395190001,-14.901299737999848],[125.25342858200011,-14.901543877999968],[125.25619550900015,-14.905450127999883],[125.25782311300006,-14.912367445999974],[125.26319420700021,-14.919122003],[125.27735436300023,-14.92205169099985],[125.28972415500017,-14.920098565999892],[125.29476972700003,-14.914727471999925],[125.2939559250001,-14.906019789999943],[125.28760826900006,-14.894707940999965],[125.30884850400017,-14.885023695999818],[125.29761803500016,-14.868340752999954],[125.2675887380001,-14.85621510199988],[125.23292076900022,-14.860528252999883],[125.227712436,-14.850192966999956],[125.20215905000023,-14.844821872999916],[125.19141686300023,-14.83269622199991],[125.18873131600016,-14.779392184999864],[125.18140709700006,-14.77190520599997],[125.16814212300014,-14.776788018999866],[125.160899285,-14.778415622999887],[125.15788821700018,-14.774997653999874],[125.15495853000019,-14.762872002999885],[125.14820397200008,-14.759698174999913],[125.14136803500006,-14.759860934999876],[125.13746178500006,-14.757500909],[125.13599694100017,-14.735935154],[125.14429772200005,-14.728448174999855],[125.15658613400004,-14.728692315999893],[125.16846764400023,-14.730238539999933],[125.17750084700006,-14.727471612999878],[125.17725670700011,-14.72096119599996],[125.17400149800007,-14.713067315999908],[125.17457116000004,-14.705987237999848],[125.1816512380001,-14.698825778999906],[125.18531334700005,-14.698337497999916],[125.18873131600016,-14.700778903999947],[125.19507897200018,-14.702325127999984],[125.21143639400012,-14.700860283999928],[125.20134524800002,-14.68499114399999],[125.20492597700004,-14.66814544099999],[125.21778405000023,-14.663832289999904],[125.25310306100008,-14.672946872999972],[125.2602645190001,-14.671563409],[125.26319420700021,-14.653741143999921],[125.27149498800011,-14.650811455999914],[125.284353061,-14.649021091999927],[125.3012801440001,-14.63469817499994],[125.28158613400011,-14.629815362999876],[125.258067254,-14.632745049999897],[125.23902428500007,-14.631524346999882],[125.23292076900022,-14.614190362999892],[125.24366295700023,-14.594170831],[125.26587975399998,-14.57561614399999],[125.2905379570001,-14.566176039999903],[125.3086043630001,-14.573174737999963],[125.314789259,-14.573174737999963],[125.32243899800018,-14.558038018999966],[125.32894941500003,-14.550469658999845],[125.33350670700017,-14.543145440999837],[125.33692467500018,-14.514255466999911],[125.341075066,-14.503106377999899],[125.34766686300004,-14.49871184699991],[125.35645592500022,-14.504327080999913],[125.35523522200006,-14.57048919099999],[125.352224155,-14.582777601999865],[125.34278405000012,-14.607354424999954],[125.35564212300001,-14.587497653999959],[125.37370853000006,-14.573907159],[125.38819420700011,-14.559991143999838],[125.39063561300024,-14.539157809999947],[125.40430748800004,-14.553155205999914],[125.43799889400006,-14.631931247999887],[125.43946373800023,-14.638848565999965],[125.44068444100004,-14.636651299999981],[125.44516035200006,-14.620375257999951],[125.43962649800018,-14.598809502999856],[125.44263756600012,-14.58928801899994],[125.45948326900012,-14.593031507999967],[125.45826256600016,-14.581475518999866],[125.45997155000005,-14.57048919099999],[125.46485436300017,-14.560723565999863],[125.47315514400023,-14.552829684999892],[125.46615644600014,-14.548109632999882],[125.46290123800011,-14.541761976999936],[125.46290123800011,-14.533949476999865],[125.46631920700023,-14.524834893999952],[125.4936629570001,-14.545342706],[125.48715253999998,-14.517510674999869],[125.48658287900005,-14.503024997999914],[125.4936629570001,-14.490655205999971],[125.50131269600004,-14.486260674999896],[125.50928795700005,-14.485772393999907],[125.51693769600004,-14.488457940999977],[125.52442467500005,-14.494073174999967],[125.532481316,-14.497735283999843],[125.55054772200006,-14.496514581],[125.55502363399998,-14.497491143999893],[125.5554305350001,-14.513848565999908],[125.54468834700018,-14.52743905999995],[125.53223717500016,-14.538018487999905],[125.52784264400005,-14.545342706],[125.53956139400006,-14.553317966999968],[125.55779056100006,-14.553969007999923],[125.5761824880001,-14.550388278999861],[125.5892033210001,-14.545342706],[125.58399498800011,-14.534763278999876],[125.58383222700003,-14.526543877999954],[125.5892033210001,-14.511163018999838],[125.59115644600003,-14.510511976999965],[125.59571373800004,-14.510430596999981],[125.60035241,-14.508884372999944],[125.60352623800006,-14.504327080999913],[125.60328209699999,-14.499607028999902],[125.59799238400014,-14.493584893999978],[125.59669030000023,-14.487237237999963],[125.60572350400017,-14.433200778999874],[125.615000847,-14.410088799999912],[125.6171981130001,-14.401299737999864],[125.61060631600006,-14.384454033999859],[125.59766686300023,-14.36728281],[125.58838951900005,-14.351006768999895],[125.5930281910001,-14.336521091999854],[125.59205162900004,-14.32626718499992],[125.58643639400012,-14.308038018999937],[125.58497155000022,-14.287692966999856],[125.59669030000023,-14.270928643999838],[125.59669030000023,-14.264825127999925],[125.58545983200024,-14.255629164999872],[125.58562259200019,-14.24570077899996],[125.59457441500014,-14.239922783999901],[125.61036217500005,-14.243584893999952],[125.60580488400015,-14.229261976999965],[125.61817467500006,-14.223728122999859],[125.6352645190001,-14.23154062299993],[125.64437910200003,-14.257256768999895],[125.65186608200005,-14.257256768999895],[125.65186608200005,-14.250420830999957],[125.65805097700016,-14.250420830999957],[125.66529381600016,-14.264255466999956],[125.69361412900004,-14.27988046699994],[125.70655358200023,-14.291436455999886],[125.70875084700002,-14.283461195999834],[125.71273847699997,-14.27662525799991],[125.7187606130001,-14.270684502999885],[125.72706139400006,-14.264825127999925],[125.73316491000016,-14.270928643999838],[125.72657311300011,-14.279473565999936],[125.71273847699997,-14.305108330999914],[125.71941165500007,-14.313897393999964],[125.71843509200006,-14.324314059999878],[125.71094811300011,-14.333672783999985],[125.69906660200016,-14.339939059999862],[125.68873131600004,-14.33766041499989],[125.68140709700005,-14.330010674999942],[125.67261803500016,-14.32545338299991],[125.65805097700016,-14.333103123000015],[125.66358483200004,-14.341078382999896],[125.66285241000006,-14.348402601999979],[125.65967858200004,-14.354913018999897],[125.65805097700016,-14.360284112999933],[125.67261803500016,-14.458265882999967],[125.68197675900002,-14.47356536299992],[125.68433678500017,-14.506768487999935],[125.63697350400004,-14.598077080999914],[125.63770592500023,-14.63469817499994],[125.65235436300004,-14.622247002999913],[125.69605553500004,-14.504327080999913],[125.70573978000013,-14.494317315999835],[125.71070397200018,-14.47087981599995],[125.71273847699997,-14.425876559999963],[125.71957441500003,-14.400974216999927],[125.73292076900012,-14.398532809999978],[125.74105879000017,-14.410414320999932],[125.73316491000016,-14.429294528999959],[125.74341881600017,-14.434991143999866],[125.74415123800023,-14.444756768999978],[125.73316491000016,-14.470147393999921],[125.76823978000006,-14.463555596999855],[125.78223717500012,-14.457452080999957],[125.78785241,-14.445977472],[125.79102623800006,-14.437188408999859],[125.79810631600006,-14.434828382999898],[125.80518639400012,-14.437920830999884],[125.80836022200018,-14.445977472],[125.80632571700002,-14.453220309999935],[125.8035587900001,-14.456963799999969],[125.80518639400012,-14.459567966999954],[125.81576582100014,-14.463311455999984],[125.82211347700009,-14.461195570999974],[125.82740319100006,-14.454278252999899],[125.83350670700024,-14.448174737999905],[125.84253991000004,-14.449151299999881],[125.84994550900014,-14.457614842000012],[125.84896894600016,-14.466729424999913],[125.84213300900015,-14.474053643999909],[125.83253014400006,-14.476983330999929],[125.81723066500004,-14.484307549999855],[125.83301842500022,-14.5194638],[125.82203209700012,-14.531670830999886],[125.82203209700012,-14.539157809999947],[125.8372501960001,-14.545098565999877],[125.8371688160001,-14.552829684999892],[125.8310653000001,-14.562107029000016],[125.828868035,-14.573174737999963],[125.83301842500022,-14.584567966999941],[125.83985436300006,-14.594821872999873],[125.84799238399997,-14.601006768999937],[125.85670006600019,-14.600518487999949],[125.88965905000023,-14.626885674999857],[125.90943444100017,-14.639418226999934],[125.91814212300007,-14.637790623000017],[125.92505944100007,-14.596856377999897],[125.923106316,-14.59148528399993],[125.91863040500007,-14.585707289999972],[125.90821373800021,-14.57634856599985],[125.90381920700005,-14.569512627999927],[125.90560957100017,-14.564141533999871],[125.90984134200006,-14.560479425],[125.91187584699999,-14.559014580999943],[125.91602623800023,-14.537530205999927],[125.92009524800018,-14.525974216999984],[125.92505944100007,-14.518649997999901],[125.95964603000006,-14.519789320999932],[125.96599368600017,-14.52166106599999],[125.96810957099997,-14.526462497999972],[125.97901451900005,-14.54192473799999],[125.98340905000025,-14.545342706],[125.99781334699999,-14.54111093499999],[125.99927819100016,-14.530938408999857],[125.99708092500006,-14.519626559999878],[126.00074303500006,-14.511163018999838],[126.01124108200011,-14.509698174999954],[126.02670332100003,-14.5199520809999],[126.03492272200005,-14.518649997999901],[126.04127037900017,-14.508721612999977],[126.04053795700023,-14.497491143999893],[126.03695722700016,-14.485528252999869],[126.03492272200005,-14.47356536299992],[126.03174889400016,-14.462579033999958],[126.01758873800023,-14.447686456],[126.01441491000017,-14.439141533999901],[126.012868686,-14.424411717],[126.00847415500007,-14.419122002999844],[126.00180097699997,-14.416273695999893],[125.99390709699999,-14.40878671700001],[125.9884546230002,-14.404554945999903],[125.98210696700008,-14.40081145599987],[125.97828209700008,-14.39381275799998],[125.98023522200018,-14.380791924999983],[125.98568769600003,-14.38290781],[125.99968509200019,-14.377699476999908],[126.0117293630001,-14.370782158999914],[126.01099694100017,-14.36712004999987],[126.016774936,-14.364922783999958],[126.03492272200005,-14.35564544099992],[126.06088300900002,-14.350030206],[126.06446373800011,-14.341566664999972],[126.06267337300018,-14.330498955999927],[126.0622664720001,-14.319431247999901],[126.06568444100002,-14.311700127999984],[126.07422936300024,-14.30282968500002],[126.07585696700008,-14.295098565999922],[126.07374108200023,-14.286797783999859],[126.06430097700003,-14.27044036299985],[126.0622664720001,-14.261000257999923],[126.06153405000005,-14.24781666499996],[126.06299889400022,-14.23560963299998],[126.07178795700011,-14.226657809999878],[126.10206139400012,-14.222426039999945],[126.10816491000016,-14.220798435],[126.1167098320001,-14.216403903999932],[126.14128665500013,-14.195489190999977],[126.144786004,-14.1952450499999],[126.14633222700017,-14.176934502999883],[126.14185631600016,-14.158461195999863],[126.14039147199999,-14.142998955999843],[126.15162194100006,-14.133721612999963],[126.13445071700018,-14.09490325299987],[126.107106967,-14.079522393999921],[126.00660241000016,-14.07822030999992],[125.99244225400017,-14.071465752999968],[125.98650149800004,-14.055596612999864],[125.98422285200017,-14.045668226999865],[125.97494550900002,-14.030938408999873],[125.9728296230002,-14.021416924999953],[125.97388756600006,-14.013441664999917],[125.97901451900005,-14.000909112999906],[125.98023522200018,-13.99041106599985],[125.99236087300008,-13.999688408999901],[126.01002037900011,-14.026055596999896],[126.02051842500018,-14.031914971999939],[126.03386478000017,-14.028497002999842],[126.03516686300007,-14.018243097],[126.03296959700016,-14.004327080999914],[126.03492272200005,-13.99041106599985],[126.04737389400022,-13.984063408999916],[126.07406660200016,-14.026055596999896],[126.09636478000013,-14.025079034],[126.091563347,-14.016859632999925],[126.09099368600008,-14.007094007999967],[126.091481967,-13.996026299999855],[126.09009850400015,-13.983575127999927],[126.08594811300021,-13.96941497199999],[126.08187910200014,-13.964532158999845],[126.07504316500017,-13.962334893999852],[126.035899285,-13.942315362999878],[126.02800540500002,-13.935804945999976],[126.01734459700012,-13.92205169099995],[126.02027428500004,-13.920586847],[126.03142337300002,-13.92473723799985],[126.0600692070001,-13.931817315999908],[126.06641686300023,-13.927666924999869],[126.06910241000007,-13.911553643999893],[126.07447350400015,-13.899102471999882],[126.0864363940001,-13.889418226999908],[126.09839928500006,-13.887383721999981],[126.103770379,-13.897637627999913],[126.09937584699999,-13.909274998],[126.09213300899998,-13.91887786299999],[126.091563347,-13.925388278999973],[126.12012780000012,-13.929457289999945],[126.12924238400004,-13.932061455999857],[126.13843834700016,-13.930922132999825],[126.15162194100006,-13.922133070999934],[126.14958743600019,-13.932793877999885],[126.14429772200002,-13.941338799999981],[126.13038170700023,-13.956231377999941],[126.13607832100006,-13.957777601999979],[126.14576256600016,-13.961846612999864],[126.15162194100006,-13.96306731599988],[126.15162194100006,-13.969903252999984],[126.13697350399998,-13.975844007999825],[126.12476647200006,-13.987074476999908],[126.11557050900015,-14.001722915000014],[126.110606316,-14.017754815999908],[126.12842858200011,-14.012139580999914],[126.14323978000006,-14.002536716999927],[126.17212975400015,-13.97730885199988],[126.18165123800006,-13.970798434999978],[126.19239342500008,-13.96550872199991],[126.22046959700016,-13.956231377999941],[126.20964603000019,-13.976820570999891],[126.17839603000002,-13.995375257999896],[126.16586347700003,-14.010918877999899],[126.19239342500008,-14.014418226999894],[126.21070397200006,-14.026625257999866],[126.21420332100016,-14.039646091999856],[126.19629967500006,-14.045668226999865],[126.16911868600008,-14.049004815999977],[126.16488691500015,-14.057793877999856],[126.16871178500016,-14.070570570999974],[126.16586347700003,-14.085381768999952],[126.19825280000023,-14.077813408999916],[126.21225019599997,-14.081475518999966],[126.21363366000016,-14.09970468499995],[126.18751061300011,-14.12249114399988],[126.18034915500017,-14.133233330999985],[126.19996178500006,-14.126885674999867],[126.19109134200018,-14.159600518999893],[126.21452884200006,-14.175469658999916],[126.24146569100006,-14.185153903999959],[126.24398847700014,-14.198907158999987],[126.23731530000012,-14.202813408999972],[126.23178144600016,-14.203220309999978],[126.22803795700023,-14.204847914999917],[126.22657311300006,-14.212985934999935],[126.22974694100004,-14.214939059999978],[126.24366295700024,-14.22161223799985],[126.24773196700019,-14.22323984199987],[126.25928795700011,-14.217054945999974],[126.27149498800006,-14.208265882999838],[126.28207441500003,-14.208591403999861],[126.28882897200018,-14.230075778999973],[126.29558353000019,-14.230075778999973],[126.29761803500004,-14.214288018999921],[126.302012566,-14.201267184999935],[126.31080162900017,-14.19231536299992],[126.34506269600016,-14.18466562299997],[126.34546959700016,-14.1742489559999],[126.33594811300006,-14.161553643999937],[126.31934655000012,-14.145114841999941],[126.31373131600002,-14.141859632999896],[126.30730228000017,-14.14080169099985],[126.29867597699999,-14.140557549999897],[126.29371178500004,-14.136488540000014],[126.29802493600006,-14.127373955999857],[126.30925540500006,-14.113376559999892],[126.31226647200006,-14.096774997999928],[126.31592858200011,-14.086846612999834],[126.32455488400002,-14.080173434999878],[126.34327233200004,-14.072930596999853],[126.33855228000007,-14.069594007999909],[126.33350670700023,-14.063083591999927],[126.32911217500022,-14.05925872199991],[126.34359785199999,-14.045505466999899],[126.36166425900004,-14.045342705999843],[126.37720787900004,-14.042657158999859],[126.39031009200019,-14.00505950299994],[126.42164147200006,-13.982354424999912],[126.43213951900012,-13.969903252999984],[126.44996178500017,-13.991794529],[126.46998131600006,-13.991957289999888],[126.48812910200016,-13.979424737999892],[126.50098717500008,-13.96306731599988],[126.51693769600011,-13.93743255],[126.52751712300002,-13.928969007999868],[126.54184004000004,-13.93238697699988],[126.56918378999997,-13.941989841999856],[126.55583743600019,-13.94597747199984],[126.54004967500025,-13.953708591999925],[126.52686608200011,-13.963474216999884],[126.52149498800021,-13.973565362999848],[126.51905358200011,-13.98365650799991],[126.51319420700021,-13.988539320999962],[126.50635826900023,-13.991794529],[126.50098717500008,-13.997247002999869],[126.49634850400005,-14.023614190999865],[126.49366295700004,-14.031914971999939],[126.4650171230002,-14.05982838299988],[126.4532983730002,-14.07756926899988],[126.46273847700006,-14.085381768999952],[126.48340905000023,-14.081475518999966],[126.51596113400002,-14.069105726999922],[126.52767988399998,-14.072930596999853],[126.49366295700004,-14.113376559999892],[126.5018009770001,-14.12029387799997],[126.51392662900017,-14.141371351999823],[126.52149498800021,-14.147393487999906],[126.53614342500022,-14.146172783999901],[126.54835045700011,-14.139418226999865],[126.55884850400017,-14.134942315999979],[126.56918378999997,-14.140557549999897],[126.57203209700005,-14.151625257999925],[126.56869550900004,-14.182793877999913],[126.56918378999997,-14.1952450499999],[126.57593834700005,-14.209893487999949],[126.58285566500004,-14.214043877999984],[126.59156334699999,-14.21746184699998],[126.60352623800023,-14.230075778999973],[126.6032820970001,-14.201104424999967],[126.60531660200003,-14.187269789999887],[126.61085045700023,-14.17538827899993],[126.62086022200006,-14.169203382999951],[126.63453209700016,-14.164971612999935],[126.64673912900005,-14.15813567499984],[126.65186608200017,-14.143975518999909],[126.64991295700011,-14.13258229000003],[126.64698326900005,-14.123304945999891],[126.64730879000004,-14.11419036299999],[126.65528405000019,-14.103122653999947],[126.65699303500017,-14.095310153999876],[126.65170332099997,-14.087172132999939],[126.64722741000004,-14.077813408999916],[126.65186608200017,-14.06609465899993],[126.65870201900006,-14.071384372999985],[126.67359459700005,-14.080336195999934],[126.67904707100016,-14.085381768999952],[126.68336022200018,-14.094821872999887],[126.6879988940001,-14.115329684999935],[126.69271894599997,-14.120782158999958],[126.70484459700016,-14.118096612999977],[126.72038821700019,-14.086114190999979],[126.73373457100003,-14.072930596999853],[126.726817254,-14.058363539999917],[126.73389733200005,-14.044854424999855],[126.74439537900005,-14.029880466999913],[126.74740644600014,-14.010918877999899],[126.74122155000006,-14.010918877999899],[126.73715254000003,-14.017754815999908],[126.73194420700023,-14.022719007999951],[126.72022545700021,-14.031914971999939],[126.70850670700023,-14.020684502999927],[126.70118248800023,-14.007094007999967],[126.70004316500004,-13.993829033999859],[126.70720462300007,-13.983575127999927],[126.71322675900015,-13.983330987999977],[126.734141472,-13.98984140399996],[126.74740644600014,-13.99041106599985],[126.75123131600017,-13.980726820999891],[126.76172936300023,-13.969903252999984],[126.77426191500004,-13.974704684999963],[126.78825931100019,-13.972588799999954],[126.78891035200004,-13.969903252999984],[126.81657962300004,-13.982354424999912],[126.82976321700019,-13.982598565999949],[126.843028191,-13.969903252999984],[126.82406660199999,-13.963311455999914],[126.81324303499999,-13.956963799999969],[126.81006920700023,-13.949395440999934],[126.81820722700016,-13.94264088299998],[126.83106530000005,-13.94345468499999],[126.85726972700004,-13.949395440999934],[126.85157311300023,-13.93938567499994],[126.84473717500012,-13.932712497999901],[126.83472741000004,-13.928887627999883],[126.8198348320001,-13.927666924999869],[126.80787194100004,-13.923516533999916],[126.80054772200006,-13.912855726999894],[126.7968856130001,-13.898695570999877],[126.79574629000014,-13.883965752999883],[126.7920028000001,-13.877129815999865],[126.77369225400015,-13.855157158999942],[126.76783287900005,-13.846368096999882],[126.75554446700006,-13.804945570999962],[126.74740644600014,-13.791761976999908],[126.76465905000022,-13.79078541500003],[126.78541100400007,-13.787367445999934],[126.8029077480002,-13.780043226999837],[126.81006920700023,-13.767673434999892],[126.81446373800021,-13.768324476999851],[126.82276451900012,-13.776462497999944],[126.82789147199999,-13.791110934999963],[126.8232528000001,-13.812269789999874],[126.83277428500016,-13.816094658999887],[126.843028191,-13.818536065999922],[126.84587649800008,-13.807549737999949],[126.85328209700006,-13.800957940999893],[126.86410566500015,-13.79802825299987],[126.87720787899998,-13.79802825299987],[126.87720787899998,-13.791761976999908],[126.85962975400015,-13.782891533999873],[126.84644616000006,-13.768975518999895],[126.84538821700008,-13.754327080999886],[126.86353600400017,-13.743340752999913],[126.88184655000023,-13.745782158999944],[126.89779707100017,-13.756442966999984],[126.91374759200008,-13.763929945999863],[126.93238366000006,-13.757582290000016],[126.91285241000016,-13.745782158999944],[126.90503991000017,-13.743340752999913],[126.91553795700023,-13.73593515399993],[126.9277449880001,-13.730889580999985],[126.95289147200016,-13.72356536299999],[126.97820071700002,-13.754001559999864],[126.99317467500018,-13.76628997199991],[127.0112410820001,-13.77125416499996],[127.02003014400022,-13.777764580999943],[127.02173912900015,-13.793226820999962],[127.02116946700018,-13.825941664999988],[127.03760826900006,-13.816176039999872],[127.05062910200016,-13.813409112999906],[127.05591881600004,-13.82008228999996],[127.04908287900004,-13.839532158999958],[127.07016035200016,-13.82805755],[127.07211347699999,-13.84254322699995],[127.06413821700006,-13.867771091999927],[127.0553491550002,-13.887383721999981],[127.08513431100017,-13.883884372999901],[127.09351647200005,-13.900079033999859],[127.09571373800023,-13.92636484199987],[127.10743248800021,-13.952813408999944],[127.12973066500014,-13.96770598799999],[127.14258873800011,-13.956231377999941],[127.15406334700005,-13.93377044099995],[127.17261803500006,-13.915215752999856],[127.16358483200023,-13.910821221999868],[127.15935306100017,-13.902764580999929],[127.15967858200023,-13.892185153999959],[127.16521243600008,-13.880547783999873],[127.181407097,-13.890313409],[127.18726647200006,-13.901788018999952],[127.18628991000016,-13.931817315999908],[127.18930097700009,-13.946954033999901],[127.19695071700019,-13.949314059999864],[127.20590254000014,-13.943617445999877],[127.21363366000004,-13.935804945999976],[127.226328972,-13.904473565999922],[127.23682701900006,-13.89202239399999],[127.25131269600003,-13.897637627999913],[127.28793379000015,-13.938246351999908],[127.30298912900017,-13.949395440999934],[127.33269290500019,-13.96119557099982],[127.33122806100002,-13.944024346999882],[127.32243899800008,-13.917413018999937],[127.33025149800007,-13.901055596999925],[127.34424889400012,-13.904473565999922],[127.35328209700006,-13.916680596999909],[127.36036217500012,-13.929782809999876],[127.36768639400012,-13.935804945999976],[127.38152103000019,-13.937758070999918],[127.38949629000015,-13.943536065999893],[127.39429772200006,-13.952243747999972],[127.39861087300002,-13.96306731599988],[127.40479576900012,-13.96306731599988],[127.40707441499998,-13.957126559999935],[127.41846764400022,-13.941989841999856],[127.43043053500017,-13.953871351999894],[127.44076582099999,-13.96941497199999],[127.44849694100012,-13.98691171699994],[127.45248457100016,-14.004082940999965],[127.45215905000022,-14.013848565999922],[127.44629967500012,-14.04876067499994],[127.4502059250001,-14.057305596999868],[127.47046959700002,-14.069919528999932],[127.4804793630001,-14.079196872999901],[127.48926842500023,-14.058363539999917],[127.50424238399998,-14.065606377999941],[127.52027428500016,-14.083103122999985],[127.53199303500017,-14.09286874799993],[127.54712975400018,-14.097914320999962],[127.57496178500006,-14.123304945999891],[127.59034264400006,-14.133721612999963],[127.5950626960001,-14.134372654000018],[127.60613040500012,-14.132989190999936],[127.61085045700021,-14.133721612999963],[127.61524498800011,-14.137139580999971],[127.62452233200018,-14.147393487999906],[127.66602623800023,-14.178399346999939],[127.67074629000014,-14.197198174999983],[127.6826278000001,-14.21697356599999],[127.6982528000001,-14.235446873000015],[127.75586998800017,-14.284844658999987],[127.76156660200014,-14.295098565999922],[127.78956139400017,-14.36712004999987],[127.79672285200004,-14.370863539999904],[127.81592858200004,-14.374932549999954],[127.82357832099999,-14.380791924999983],[127.82585696700008,-14.389580987999963],[127.82357832099999,-14.425876559999963],[127.82691491000004,-14.436618747999885],[127.83399498800004,-14.442559503],[127.84107506600006,-14.443536065999965],[127.84424889400012,-14.439141533999901],[127.845957879,-14.425876559999963],[127.85108483200023,-14.417250257999866],[127.85987389400012,-14.415459893999879],[127.87142988400004,-14.422458591999956],[127.87940514400006,-14.439548434999905],[127.85523522200016,-14.46510182099989],[127.85792076900023,-14.483819268999866],[127.87427819100017,-14.469903252999885],[127.88721764400017,-14.474053643999909],[127.90560957100004,-14.497491143999893],[127.94019616,-14.518975518999921],[127.954763217,-14.532891533999901],[127.94385826900023,-14.539157809999947],[127.93946373800004,-14.543877862999864],[127.93995201900016,-14.55445729],[127.94320722700004,-14.56601327899993],[127.94727623800006,-14.573174737999963],[127.95753014400013,-14.578871351999865],[127.9669702480002,-14.578545830999843],[127.992442254,-14.568617445999932],[127.99878991000004,-14.562269789999903],[128.0053817070002,-14.560723565999863],[128.01856530000018,-14.569756768999964],[128.0415145190002,-14.59042734199997],[128.0465600920002,-14.593031507999967],[128.05404707100016,-14.600518487999949],[128.05933678500006,-14.616957289999945],[128.0664168630001,-14.633477471999923],[128.08033287900017,-14.640801690999837],[128.09595787900017,-14.64128997199999],[128.1069442070001,-14.643731377999856],[128.1178491550002,-14.649997653999904],[128.15919030000012,-14.68840911299999],[128.17530358200008,-14.698418877999899],[128.19678795700023,-14.702325127999984],[128.20866946700008,-14.700778903999947],[128.2146916020001,-14.698907158999887],[128.21949303500017,-14.700453382999925],[128.22779381600006,-14.709730726999878],[128.23129316500015,-14.718194268999909],[128.2319442070001,-14.727959893999866],[128.23047936300023,-14.73723723799999],[128.22779381600006,-14.743910414999874],[128.21363366000006,-14.734958591999927],[128.19776451900012,-14.731622002999913],[128.18482506600017,-14.736993096999953],[128.17945397200006,-14.75408294099999],[128.18140709700018,-14.769952080999929],[128.19361412900017,-14.805922132999825],[128.19434655000006,-14.821954033999987],[128.19060306100008,-14.829847914999975],[128.1806746750002,-14.832452080999971],[128.16228274800017,-14.83269622199991],[128.14893639400012,-14.834242445999948],[128.13835696700008,-14.838799737999906],[128.11793053500017,-14.853773695999848],[128.13746178500006,-14.86256275799991],[128.13282311300023,-14.895196221999953],[128.11109459700006,-14.959893487999977],[128.10824629,-14.972832940999893],[128.09498131600017,-14.997247002999927],[128.090586785,-15.011407158999956],[128.09017988399998,-15.031182549999967],[128.09197024800008,-15.046644789999986],[128.09034264400023,-15.06080494599992],[128.07309004000015,-15.089125257999882],[128.0685327480002,-15.106622002999927],[128.06706790500007,-15.125176690999922],[128.06959069100017,-15.141208592000012],[128.08122806100008,-15.162692966999856],[128.0846460300002,-15.174574476999892],[128.07569420700023,-15.277764581],[128.07056725400005,-15.28769296700001],[128.06023196700002,-15.29216887799997],[128.04273522200018,-15.291924737999848],[128.07129967500018,-15.36793385199995],[128.07227623800023,-15.404473565999979],[128.05591881600006,-15.443454684999878],[128.02027428500017,-15.478448174999883],[128.01490319099997,-15.487481377999968],[128.02426191500012,-15.4965145809999],[128.04558353000013,-15.487562757999953],[128.06869550900015,-15.470961195999818],[128.08375084700018,-15.45712656],[128.101328972,-15.424574476999851],[128.11280358200017,-15.381768487999947],[128.11841881600017,-15.33513762799994],[128.11793053500017,-15.291924737999848],[128.10059655000006,-15.229913018999895],[128.11060631600017,-15.224867445999946],[128.11117597700004,-15.213148695999877],[128.109141472,-15.199965101999835],[128.11109459700006,-15.190199476999977],[128.1251733730002,-15.182061455999872],[128.13453209700006,-15.187676690999965],[128.1433211600001,-15.197849216999913],[128.17448978000016,-15.213311455999841],[128.22445722700004,-15.260186455999971],[128.23462975400017,-15.274590752999941],[128.23812910200016,-15.281996351999851],[128.25562584699998,-15.310235283999987],[128.28028405000012,-15.383558851999934],[128.28305097700013,-15.401788018999909],[128.289317254,-15.401788018999909],[128.296641472,-15.316176039999933],[128.29175866000003,-15.290704033999916],[128.2786564460001,-15.271661065999922],[128.24146569100014,-15.237399997999958],[128.23047936300023,-15.224053643999936],[128.2202254570001,-15.205661717],[128.2163192070001,-15.185235283999845],[128.22437584700006,-15.165948174999897],[128.22584069100012,-15.16025156],[128.2182723320002,-15.118096612999878],[128.21216881600017,-15.111016534],[128.20525149800005,-15.106377862999977],[128.19988040500016,-15.100274346999896],[128.19581139400023,-15.05681731599995],[128.21583092500012,-15.021905205999843],[128.26872806100008,-14.970391533999859],[128.2716577480002,-14.96851978999989],[128.2794702480002,-14.966485283999944],[128.28305097700013,-14.963636976999908],[128.28394616000006,-14.959079684999876],[128.28223717500023,-14.94719817499991],[128.28305097700013,-14.942559502999897],[128.29517662900017,-14.92498137799987],[128.31348717500012,-14.904961846999894],[128.32300866,-14.910739841999956],[128.33025149800002,-14.93629322699985],[128.3427840500002,-15.021091403999918],[128.3501082690002,-15.03728606599988],[128.3649194670002,-15.04615650799991],[128.35914147200006,-15.014092705999927],[128.35840905000012,-14.999118747999988],[128.3649194670002,-14.984063408999972],[128.39942467500023,-15.023858330999884],[128.41797936300023,-15.03972747199991],[128.44410241000017,-15.04615650799991],[128.45020592500003,-15.04265715899993],[128.45582116000017,-15.034112237999905],[128.45972741000017,-15.023695570999918],[128.46119225400003,-15.014825127999956],[128.45980879000012,-15.001641534],[128.45679772200006,-14.995049737999935],[128.45240319100017,-14.990492445999903],[128.447520379,-14.984063408999972],[128.42286217500012,-14.940118096999868],[128.41732832099999,-14.915785414999974],[128.40805097700004,-14.895277601999936],[128.40601647200012,-14.88445403399993],[128.40748131600017,-14.868829033999942],[128.41195722700002,-14.865655205999985],[128.41871178500017,-14.865899346999925],[128.42701256600006,-14.860528252999883],[128.43360436300011,-14.855238539999903],[128.43824303500006,-14.853285415000029],[128.43897545700005,-14.849867445999934],[128.4332788420002,-14.840101820999818],[128.42741946700008,-14.835056247999958],[128.41032962300017,-14.828301690999936],[128.4025985040001,-14.823011976999865],[128.38843834700018,-14.803399346999981],[128.39576256600017,-14.795993747999914],[128.44068444100017,-14.79225025799988],[128.47982832100004,-14.779473565999936],[128.499278191,-14.770114841999982],[128.51246178500017,-14.76091887799984],[128.53239993600008,-14.752862237999976],[128.5542098320001,-14.75872161299985],[128.5908309250002,-14.778008721999884],[128.67554772200006,-14.787774347],[128.71338951900006,-14.797539971999953],[128.74854576900023,-14.826429945999877],[128.76710045700023,-14.821709893999866],[128.79004967500023,-14.82708098799992],[128.81373131600006,-14.835625908999928],[128.8341577480001,-14.840101820999818],[128.91976972700004,-14.840101820999818],[128.94027754000015,-14.846123955999914],[128.9734806650001,-14.863702080999941],[128.99187259200014,-14.867364190999977],[129.00977623800006,-14.869073174999983],[129.05103600400005,-14.880140882999937],[129.09205162900005,-14.898207289999947],[129.10230553500017,-14.905368747999901],[129.11158287900005,-14.915785414999974],[129.115489129,-14.926364841999941],[129.11703535200016,-14.937432549999883],[129.1202905610002,-14.946384373],[129.12867272200018,-14.949965101999965],[129.15503991000014,-14.953789971999894],[129.17318769600016,-14.964776299999938],[129.1839298840001,-14.981866143999982],[129.1873478520001,-15.004571221999855],[129.1838485040001,-15.021091403999918],[129.17774498800011,-15.03948333099987],[129.175547722,-15.058526299999954],[129.1839298840001,-15.076592705999971],[129.19800866,-15.098402601999837],[129.19922936300023,-15.11736419099985],[129.19190514400023,-15.135918877999854],[129.171722852,-15.173435153999959],[129.15259850400005,-15.223728123000017],[129.17204837300014,-15.221856377999956],[129.19996178500017,-15.167413018999866],[129.2214461600001,-15.169691664999931],[129.21273847700004,-15.185804945999905],[129.20818118600008,-15.204278252999925],[129.20826256600006,-15.222344658999944],[129.21412194100017,-15.237399997999958],[129.24366295700023,-15.11337655999995],[129.26303144600016,-15.10759856599999],[129.2633569670002,-15.090590101999934],[129.25562584700018,-15.031182549999967],[129.25180097700016,-15.018243096999882],[129.24333743600002,-15.008233330999898],[129.23902428500006,-14.98463307099986],[129.23568769599999,-14.93629322699985],[129.22299238400015,-14.867771091999984],[129.2214461600001,-14.843519789999917],[129.228770379,-14.836602472],[129.24439537900017,-14.844170830999872],[129.2589624360002,-14.86256275799991],[129.26303144600016,-14.887872002999854],[129.269297722,-14.887872002999854],[129.2892358730002,-14.861911716999954],[129.32439212300008,-14.862074476999922],[129.35792076900012,-14.879571221999967],[129.37289472700016,-14.904961846999894],[129.47657311300023,-14.933770440999837],[129.49586022200018,-14.95305754999987],[129.49830162900005,-14.957777601999878],[129.51295006600006,-15.007989190999949],[129.525157097,-15.016696873000015],[129.55355879000004,-15.030368747999956],[129.5641382170002,-15.038750908999843],[129.57243899800008,-15.053643487999892],[129.58448326900006,-15.088067315999922],[129.59473717500012,-15.103936455999857],[129.5981551440001,-15.117120049999896],[129.58757571700008,-15.15309010199988],[129.585215691,-15.169691664999931],[129.62940514400006,-15.139336846999953],[129.64551842500023,-15.134942315999877],[129.66195722700016,-15.138360283999885],[129.66675866000006,-15.148125909],[129.66651451900012,-15.175957940999963],[129.671722852,-15.194268487999848],[129.6772567070001,-15.199151299999912],[129.69727623800006,-15.195082290000029],[129.71599368600008,-15.195407809999963],[129.72706139400006,-15.193617445999976],[129.73096764400006,-15.186293226999894],[129.72852623800023,-15.169691664999931],[129.72169030000012,-15.159356377999913],[129.65902754000004,-15.08993905999989],[129.65202884200008,-15.076918226999894],[129.62989342500018,-15.0194637999999],[129.6193139980002,-14.957696221999896],[129.61182701900023,-14.942559502999897],[129.6198022800002,-14.93336354],[129.63453209700018,-14.907891533999916],[129.63990319100006,-14.894707940999965],[129.64551842500023,-14.840590101999894],[129.649180535,-14.83269622199991],[129.66480553500017,-14.836032809999935],[129.68970787900005,-14.850518487999977],[129.70411217500012,-14.853773695999848],[129.73471113400004,-14.853773695999848],[129.76954186300023,-14.860528252999883],[129.78565514400012,-14.86150481599995],[129.80054772200018,-14.859958591999913],[129.82471764400003,-14.853773695999848],[129.84799238399998,-14.84189218499989],[129.85523522199998,-14.840101820999818],[129.866465691,-14.839043877999854],[129.86980228000007,-14.836032809999935],[129.87094160200007,-14.830661716999984],[129.87598717500012,-14.823011976999865],[129.91968834700012,-14.790215752999858],[129.92725670700023,-14.788669528999987],[129.93539472700016,-14.78337981599992],[129.95362389400023,-14.790134372999873],[129.98243248800006,-14.805922132999825],[129.9801538420002,-14.780368747999928],[129.99333743600008,-14.725030205999841],[129.98243248800006,-14.709730726999878],[129.97486412900003,-14.74016692499984],[129.95525149800008,-14.75562916500003],[129.89307701900015,-14.77190520599997],[129.79859459700006,-14.816827080999985],[129.76270592500023,-14.819594007999939],[129.79566491,-14.776055596999838],[129.79688561300023,-14.76441822699992],[129.78858483200023,-14.764255466999956],[129.75538170700023,-14.784844658999985],[129.7369897800002,-14.79029713299984],[129.72413170700017,-14.790704033999843],[129.71159915500007,-14.784844658999985],[129.66993248800011,-14.753106377999925],[129.66504967500023,-14.739922783999972],[129.6733504570001,-14.72283294099985],[129.65211022200006,-14.710625908999873],[129.6272078790001,-14.692478122999871],[129.60678144600004,-14.671563409],[129.59009850400017,-14.627373955999841],[129.58806399800008,-14.613457940999865],[129.59473717500012,-14.607354424999954],[129.60865319100017,-14.606622002999927],[129.64551842500023,-14.600518487999949],[129.69271894600004,-14.602146091999968],[129.71762129000015,-14.595879815999837],[129.72852623800023,-14.57634856599985],[129.73747806100008,-14.56853606599995],[129.77767988400015,-14.543633722],[129.78939863400015,-14.531670830999886],[129.76807701900012,-14.532647393999866],[129.74317467500023,-14.539971612999949],[129.72006269599999,-14.550713799999883],[129.68653405000023,-14.573988539999974],[129.66732832100004,-14.575372002999954],[129.626231316,-14.566338799999869],[129.61597741000017,-14.565687757999823],[129.59538821700008,-14.567315362999935],[129.585215691,-14.566338799999869],[129.57992597700004,-14.563571872999901],[129.57455488400007,-14.559014580999943],[129.566661004,-14.554620049999967],[129.55388431100008,-14.552829684999892],[129.53532962300008,-14.545342706],[129.47535241000006,-14.497491143999893],[129.47071373800011,-14.496677341999883],[129.45964603000007,-14.498223565999837],[129.45484459700018,-14.497491143999893],[129.45329837300002,-14.494073174999967],[129.44906660200004,-14.480645440999893],[129.4474389980002,-14.476983330999929],[129.44312584700018,-14.475274346999923],[129.43043053500006,-14.471937757999909],[129.427012566,-14.470147393999921],[129.423675977,-14.463962497999859],[129.41993248800017,-14.450941664999874],[129.41675866000008,-14.445977472],[129.36736087300014,-14.418633721999855],[129.35808353000007,-14.40878671700001],[129.37289472700016,-14.329278252999913],[129.37671959700006,-14.323418877999883],[129.40308678500014,-14.295098565999922],[129.4093530610002,-14.284600518999866],[129.41089928500003,-14.273614190999908],[129.41114342500012,-14.26238372199999],[129.41334069100017,-14.250420830999957],[129.4209090500002,-14.232517185],[129.43034915500007,-14.218926690999865],[129.4738061860002,-14.176934502999883],[129.48560631600017,-14.161553643999937],[129.49317467500012,-14.144463799999897],[129.49586022200018,-14.12379322699988],[129.49586022200018,-14.08912525799998],[129.49333743600008,-14.078545830999857],[129.48324629000004,-14.060235283999887],[129.48218834700006,-14.051853123000015],[129.48861738400015,-14.048109632999894],[129.50025475400017,-14.055840752999984],[129.5148218110002,-14.061455987999906],[129.53003991000017,-14.051853123000015],[129.5333764980002,-14.060642184999892],[129.53532962300008,-14.071872653999973],[129.53882897200006,-14.081312757999909],[129.54712975400005,-14.085381768999952],[129.5597436860002,-14.081475518999966],[129.57113691500015,-14.075372002999883],[129.57992597700004,-14.076267184999876],[129.585215691,-14.09286874799993],[129.60466556100016,-14.06617604],[129.60084069100017,-14.035902601999908],[129.59424889400012,-14.010186455999872],[129.60572350400017,-13.997247002999869],[129.60914147200018,-14.028497002999842],[129.63257897200006,-14.035251559999963],[129.69044030000023,-14.025079034],[129.71753991000017,-14.015557549999926],[129.735606316,-13.991794529],[129.74586022200006,-13.96119557099982],[129.74919681100005,-13.931817315999908],[129.74488366000017,-13.913506768999852],[129.735036655,-13.903578382999939],[129.72364342500006,-13.894952080999843],[129.71485436300011,-13.880547783999873],[129.71599368600008,-13.867445570999905],[129.72315514400006,-13.85182057099992],[129.7417098320001,-13.825941664999988],[129.79615319100017,-13.785414320999891],[129.8159285820001,-13.761976820999818],[129.80372155000023,-13.743340752999913],[129.80030358200023,-13.749444268999909],[129.79297936300023,-13.758233330999971],[129.78939863400015,-13.76384856599988],[129.78321373800011,-13.757582290000016],[129.7892358730002,-13.741957290000029],[129.7884220710001,-13.725762627999984],[129.78321373800011,-13.691827080999943],[129.78549238400015,-13.675713799999969],[129.80982506600006,-13.615004165],[129.82740319100017,-13.582614842],[129.83090254000015,-13.56861744599986],[129.8315535820001,-13.537204685],[129.83350670700023,-13.522149346999909],[129.83773847700016,-13.510511976999908],[129.84742272200006,-13.503024998000015],[129.85906009200002,-13.499281507999896],[129.8686629570001,-13.493584893999921],[129.87533613400015,-13.467054945999948],[129.88257897200018,-13.450860284],[129.8912866550002,-13.437676690999865],[129.89926191500004,-13.43482838299991],[129.90658613400015,-13.446954033999916],[129.908457879,-13.465264580999971],[129.9067488940001,-13.500664971999967],[129.91472415500007,-13.511407158999901],[129.932953321,-13.519952081],[129.9689233730002,-13.530450127999984],[129.9819442070001,-13.52353280999989],[130.043223504,-13.504489841999897],[130.062347852,-13.493422132999868],[130.1128035820001,-13.4491513],[130.13396243600013,-13.461032809999864],[130.16374759200014,-13.432875257999967],[130.21461022200006,-13.36044687299993],[130.23731530000012,-13.33562590899997],[130.254161004,-13.32382577899999],[130.27320397200018,-13.318780205999971],[130.29232832100016,-13.327894789999874],[130.31666100400005,-13.343357028999888],[130.33228600400005,-13.346368096999896],[130.32447350400003,-13.318780205999971],[130.31397545700017,-13.308526299999855],[130.294769727,-13.297295830999857],[130.27263431100002,-13.28834400799991],[130.25245201900012,-13.284763278999945],[130.24252363399998,-13.278415622999916],[130.231211785,-13.263929945999875],[130.21461022200006,-13.236260674999969],[130.1604923840001,-13.171482028999959],[130.15552819100006,-13.16822682099992],[130.13135826900012,-13.16716887799987],[130.1227319670002,-13.164646091999856],[130.11866295700017,-13.15618255],[130.11890709700012,-13.047051690999865],[130.12256920700023,-13.032403252999856],[130.12989342500023,-13.020196221999882],[130.13461347700016,-12.998630466999868],[130.13013756600012,-12.969008070999834],[130.12989342500023,-12.940524997999916],[130.14698326900012,-12.921563408999901],[130.15886478000007,-12.922051690999893],[130.16863040500016,-12.918552341999899],[130.17603600400017,-12.91130950299997],[130.181000196,-12.901055596999853],[130.193207227,-12.912774346999923],[130.19727623800017,-12.926364841999984],[130.20411217500006,-12.93743254999984],[130.22510826900012,-12.942071221999953],[130.24675540500013,-12.93775807099986],[130.28345787900005,-12.919040622999887],[130.30054772200018,-12.914727471999967],[130.31861412900017,-12.906019789999903],[130.33513431100008,-12.885430596999868],[130.34717858200005,-12.86142343499992],[130.351817254,-12.84246184699991],[130.35092207100004,-12.78085702899996],[130.36068769600013,-12.750746351999922],[130.35547936300023,-12.732028903999959],[130.347422722,-12.712823174999912],[130.34498131600017,-12.695000908999845],[130.35434004000004,-12.67205169099985],[130.36744225400017,-12.672621351999823],[130.38306725400017,-12.680922132999896],[130.400157097,-12.681329033999901],[130.40202884200008,-12.674899997999887],[130.40202884200008,-12.663262627999885],[130.403575066,-12.652113539999943],[130.41000410200004,-12.647230726999894],[130.42115319100006,-12.644301039999872],[130.43751061300006,-12.63062916499993],[130.44800866000006,-12.626722914999931],[130.46143639400023,-12.63005950299987],[130.49805748800023,-12.648532809999892],[130.51612389400006,-12.654066664999988],[130.50147545700005,-12.632907809999907],[130.49496504000012,-12.619073175],[130.49634850400003,-12.605075778999932],[130.5068465500001,-12.596449476999851],[130.516856316,-12.60369231599995],[130.5584416020001,-12.681329033999901],[130.56804446700008,-12.68645598799999],[130.57878665500007,-12.688653252999984],[130.58643639400012,-12.694105726999851],[130.58643639400012,-12.709242445999848],[130.59799238400004,-12.703708592],[130.60645592500018,-12.706231377999842],[130.61459394599999,-12.711846612999935],[130.62598717500023,-12.71493905999992],[130.62671959700018,-12.712823174999912],[130.6300561860002,-12.708428643999838],[130.63502037900017,-12.703871351999965],[130.64112389400023,-12.701836846999939],[130.64698326900012,-12.703057549999953],[130.65748131600017,-12.708103122999901],[130.66431725400017,-12.709242445999848],[130.67554772200018,-12.708672783999873],[130.68572024800014,-12.706149997999859],[130.69288170700005,-12.700616143999923],[130.69556725400005,-12.691338799999883],[130.61304772200006,-12.667657158999958],[130.61402428499997,-12.669854424999938],[130.61019941500004,-12.672784112999878],[130.60425866000017,-12.67498137799987],[130.59880618600002,-12.674493096999882],[130.59685306100016,-12.67205169099985],[130.592051629,-12.66285572699988],[130.58912194100017,-12.660821221999853],[130.587657097,-12.65683359199987],[130.57471764400012,-12.639743748],[130.57154381600006,-12.636651299999924],[130.5673934250001,-12.631768487999963],[130.56039472700004,-12.628350518999865],[130.55909264400023,-12.624769789999888],[130.57154381600006,-12.619317315999936],[130.57984459700006,-12.619073175],[130.58790123800017,-12.621351820999962],[130.59644616000017,-12.622735283999944],[130.60564212300008,-12.619317315999936],[130.61605879000012,-12.610039971999894],[130.61752363400004,-12.603936456],[130.61500084700018,-12.597588799999883],[130.61304772200006,-12.588555596999953],[130.60767662900017,-12.584649346999965],[130.583750847,-12.585625908999944],[130.57837975400017,-12.581719658999859],[130.57943769600004,-12.56845468499992],[130.60417728000016,-12.504571221999896],[130.60450280000012,-12.48756275799984],[130.5903426440001,-12.462497653999847],[130.59253991000014,-12.452406507999882],[130.59961998800023,-12.444431247999916],[130.62037194100006,-12.436944268999852],[130.6152449880002,-12.42750416499993],[130.59880618600002,-12.413832289999903],[130.59457441500004,-12.411553643999838],[130.57837975400017,-12.40699635199988],[130.57837975400017,-12.400811455999829],[130.60580488400004,-12.386000257999854],[130.64112389400023,-12.383233330999886],[130.67432701900017,-12.392347914999874],[130.69556725400005,-12.413832289999903],[130.7125757170002,-12.41090260199988],[130.73926842500023,-12.41562265399989],[130.76612389400012,-12.424737237999878],[130.78386478000013,-12.434991143999907],[130.77369225400017,-12.45427825299984],[130.77328535200013,-12.4691708309999],[130.78386478000013,-12.503187757999825],[130.78443444100017,-12.564873955999857],[130.79004967500006,-12.585137627999956],[130.79590905000012,-12.571547132999811],[130.79721113400004,-12.55820077899989],[130.8003035820001,-12.546156507999882],[130.81104576900012,-12.53736744599982],[130.843028191,-12.559340101999837],[130.87745201900023,-12.617120049999954],[130.89991295700014,-12.639825127999984],[130.89828535200004,-12.623793226999823],[130.8967391290001,-12.618422132999953],[130.8937280610002,-12.613051039999903],[130.90919030000012,-12.597832940999922],[130.9305119150001,-12.603285414999945],[130.96859785200016,-12.626722914999931],[130.95777428500017,-12.598809502999899],[130.93376712300014,-12.580743096999882],[130.90650475400003,-12.564873955999857],[130.88624108200023,-12.54420338299984],[130.87623131600003,-12.524672132999854],[130.87378991,-12.513604424999826],[130.88086998800017,-12.509047132999868],[130.89991295700014,-12.509454033999873],[130.91993248800023,-12.5140927059999],[130.95085696700008,-12.530938408999901],[130.96859785200016,-12.53736744599982],[130.9624129570001,-12.519952080999843],[130.95248457099999,-12.506768487999892],[130.93091881600017,-12.486097914999872],[130.92359459700018,-12.483330987999821],[130.90381920700023,-12.482517184999907],[130.89991295700014,-12.479099216999899],[130.89779707100016,-12.471449476999865],[130.89332116000017,-12.463555596999894],[130.88282311300011,-12.451348565999822],[130.86695397200018,-12.444594007999882],[130.8559676440002,-12.453057549999826],[130.843597852,-12.459649346999896],[130.82471764400023,-12.447930596999825],[130.82195071700016,-12.439141533999845],[130.82667076900012,-12.43035247199988],[130.83041425900015,-12.41871510199988],[130.82471764400023,-12.400811455999829],[130.85873457099999,-12.393324476999851],[130.84766686300023,-12.379489841999854],[130.85547936300023,-12.368259372999859],[130.88624108200023,-12.352471612999906],[130.89356530000012,-12.344903252999856],[130.89519290500004,-12.338636976999808],[130.8976343110002,-12.334242445999834],[130.90723717500023,-12.331963799999855],[130.91651451900012,-12.332777601999865],[130.9213973320001,-12.336846612999821],[130.92579186300003,-12.341973565999837],[130.93392988399995,-12.346123955999872],[131.02515709700018,-12.360528252999842],[131.05128014400023,-12.373467705999843],[131.05176842500012,-12.353773695999804],[131.046153191,-12.340508721999866],[131.03012129000004,-12.318291924999826],[131.02637780000006,-12.304131768999895],[131.03012129000004,-12.253106377999899],[131.02475019600016,-12.234144789999888],[131.00147545700023,-12.206231377999854],[130.99610436300011,-12.191338799999897],[131.00017337300008,-12.171319268999838],[131.01091556100008,-12.156019789999874],[131.02613366000006,-12.147149346999825],[131.04379316500015,-12.146254164999915],[131.05290774800008,-12.150567315999837],[131.07146243600008,-12.1644833309999],[131.07789147200018,-12.167413018999838],[131.08521569100017,-12.164157809999878],[131.09620201900023,-12.149346612999821],[131.10596764400006,-12.146254164999915],[131.11638431100008,-12.15488046699984],[131.12671959700018,-12.17083098799985],[131.1378686860002,-12.182549737999835],[131.16277103,-12.17392343499992],[131.18816165500007,-12.200778903999904],[131.20557701900012,-12.208428643999838],[131.2164819670002,-12.21493905999992],[131.22193444100006,-12.228204033999859],[131.23226972700004,-12.238539320999875],[131.25733483200023,-12.236260674999897],[131.23902428500017,-12.212172132999868],[131.23617597700004,-12.201592705999827],[131.23910566500012,-12.193454684999907],[131.25391686300023,-12.177178643999866],[131.25733483200023,-12.17083098799985],[131.2579858730002,-12.149346612999821],[131.26010175900004,-12.13494231599985],[131.27100670700005,-12.098565362999864],[131.27295983200023,-12.067071221999853],[131.27711022200018,-12.057549737999864],[131.28736412900008,-12.047295830999829],[131.29623457100004,-12.043877862999821],[131.30258222700016,-12.04810963299984],[131.30713951900012,-12.071547132999825],[131.316172722,-12.084161065999893],[131.31820722700016,-12.095391533999901],[131.31820722700016,-12.140232028999918],[131.327891472,-12.185316664999888],[131.34685306100002,-12.21965911299985],[131.37378991000017,-12.246758721999868],[131.40691165500002,-12.270440362999892],[131.42628014400023,-12.281182549999897],[131.44776451900006,-12.289808851999808],[131.47038821700002,-12.295668226999851],[131.492930535,-12.297784112999864],[131.51465905000006,-12.29517994599986],[131.556895379,-12.285088799999897],[131.57886803500006,-12.284112237999835],[131.59083092500023,-12.287204684999907],[131.61280358200005,-12.296644789999917],[131.62419681100002,-12.293877862999864],[131.706879102,-12.282159112999878],[131.78435306100008,-12.270440362999892],[131.820078972,-12.257500908999887],[131.83969160200016,-12.246758721999868],[131.86426842500006,-12.225844007999811],[131.87435957100013,-12.220635674999826],[131.88550866000017,-12.217054945999847],[131.89698326900012,-12.215915622999901],[131.90463300900012,-12.219821872999901],[131.90756269600016,-12.229180596999838],[131.90967858200005,-12.240411065999837],[131.91407311300023,-12.25009530999989],[131.93384850400017,-12.263929945999804],[131.97706139400006,-12.277927341999854],[132.00196373800011,-12.292657158999845],[132.02515709700006,-12.296563408999845],[132.04566491,-12.307386976999837],[132.05787194100014,-12.306735934999892],[132.07846113400004,-12.297784112999864],[132.11557050900004,-12.275567315999893],[132.15088951900023,-12.24627044099988],[132.16651451900023,-12.2250302059999],[132.17123457100016,-12.222100518999879],[132.2163192070001,-12.208428643999838],[132.2221785820002,-12.198825778999861],[132.22999108200023,-12.170342705999857],[132.23617597700004,-12.160577080999914],[132.25131269600004,-12.156345309999892],[132.26221764400006,-12.164971612999892],[132.26880944100017,-12.180840752999828],[132.27084394599996,-12.198174737999821],[132.27833092500023,-12.228204033999859],[132.296722852,-12.22665780999992],[132.32113691500015,-12.211602471999896],[132.34603925899998,-12.201592705999827],[132.36133873800023,-12.202243747999873],[132.371836785,-12.206963799999883],[132.37989342500023,-12.215997002999883],[132.41187584700006,-12.273125908999873],[132.41684004000004,-12.294691664999872],[132.41960696700005,-12.29900481599988],[132.42164147200018,-12.303643487999906],[132.421153191,-12.311455987999892],[132.41700280000018,-12.31715260199988],[132.40406334700006,-12.324151299999853],[132.39942467500023,-12.332289320999877],[132.39063561300006,-12.341241143999895],[132.38754316499998,-12.346123955999872],[132.38648522200006,-12.35418059699991],[132.38754316499998,-12.380303643999866],[132.40528405000006,-12.35816822699988],[132.43197675900004,-12.331149997999844],[132.44939212300008,-12.300388278999861],[132.42286217500012,-12.23162200299987],[132.42416425900004,-12.189711195999877],[132.43962649800002,-12.15488046699984],[132.46615644599999,-12.140232028999918],[132.48894290500013,-12.135674737999878],[132.544688347,-12.098565362999864],[132.56397545700023,-12.091566664999887],[132.57732181100008,-12.094008070999818],[132.60670006600017,-12.112237237999892],[132.64096113400015,-12.126397393999824],[132.67904707100004,-12.136814059999907],[132.71859785200016,-12.140232028999918],[132.75757897200006,-12.133396091999899],[132.74708092500006,-12.128676039999888],[132.72706139400012,-12.128350518999866],[132.71599368600008,-12.126560153999888],[132.70622806100002,-12.12200286299985],[132.69711347700004,-12.112237237999892],[132.68873131600017,-12.106052341999842],[132.64893639400012,-12.083103122999844],[132.63453209699998,-12.067152601999837],[132.62720787900005,-12.043877862999821],[132.62696373800006,-12.004327080999872],[132.6510522800002,-11.865817966999927],[132.65219160200004,-11.848565362999821],[132.64926191500004,-11.833265882999868],[132.64087975400017,-11.818617445999848],[132.59986412900005,-11.792087497999887],[132.59302819100006,-11.784437757999866],[132.60059655000006,-11.76685963299984],[132.64079837300008,-11.726332289999903],[132.6544702480002,-11.708754164999872],[132.66675866000017,-11.674248955999857],[132.67628014400017,-11.66423919099988],[132.695567254,-11.66033294099988],[132.695567254,-11.653497002999869],[132.649668816,-11.635511976999837],[132.612559441,-11.629978122999901],[132.59498131600017,-11.62200286299985],[132.578868035,-11.611016533999887],[132.56519616000017,-11.598890882999811],[132.55209394599999,-11.58342864399988],[132.55128014400012,-11.57561614399988],[132.55591881599997,-11.568291924999881],[132.55892988400004,-11.553887627999826],[132.55128014400012,-11.544528903999876],[132.53589928500006,-11.538181247999859],[132.52515709700006,-11.528578382999868],[132.53101647200018,-11.509535414999874],[132.5115666020001,-11.506605726999865],[132.49537194100006,-11.476169528999904],[132.43490644600004,-11.446709893999824],[132.4155379570001,-11.44060637799984],[132.36988366000017,-11.434991143999838],[132.34693444100017,-11.43824635199988],[132.31128991000003,-11.461521091999884],[132.28882897200006,-11.461032809999907],[132.26498457100016,-11.456312757999811],[132.24366295700005,-11.454847914999931],[132.23275800900004,-11.457696221999882],[132.22632897200018,-11.46217213299984],[132.2198999360002,-11.467950127999899],[132.20948326900012,-11.474786065999822],[132.20053144600016,-11.485609632999825],[132.19581139400023,-11.489027601999837],[132.18881269600016,-11.488946221999853],[132.18344160200002,-11.485039971999852],[132.17823326900012,-11.4821916649999],[132.17123457100016,-11.485609632999825],[132.14242597700004,-11.509372653999918],[132.12452233200023,-11.518975518999895],[132.10645592500023,-11.523125908999845],[132.08472741000017,-11.517998955999829],[132.07007897200006,-11.506280205999843],[132.05909264400012,-11.494398695999875],[132.04810631600006,-11.489027601999837],[132.04281660200016,-11.484144789999858],[132.03711998800006,-11.473077080999829],[132.03256269600004,-11.460381768999852],[132.03077233200023,-11.450860283999859],[132.03565514400012,-11.446954033999859],[132.04590905000023,-11.445570570999877],[132.05551191500004,-11.442803643999824],[132.05795332100016,-11.43434010199988],[132.04070071700008,-11.418633721999823],[132.01392662900005,-11.423435153999904],[131.99048912900017,-11.425062757999838],[131.98218834700018,-11.399672132999811],[131.9760848320001,-11.399672132999811],[131.966075066,-11.406019789999931],[131.95525149800014,-11.403903903999916],[131.94776451900023,-11.394463799999912],[131.94809003999998,-11.379164320999848],[131.96949303500006,-11.373793226999808],[131.97950280000012,-11.36646900799988],[131.9760848320001,-11.351250908999901],[131.96558678500006,-11.344984632999866],[131.93962649800002,-11.352634372999887],[131.92774498800011,-11.351250908999901],[131.92261803500017,-11.341078382999868],[131.92579186300023,-11.330010674999826],[131.92554772200012,-11.32089609199984],[131.9113061860002,-11.317071221999825],[131.8961694670002,-11.314873955999829],[131.87094160200004,-11.305596612999878],[131.85621178500006,-11.30339934699988],[131.84693444100017,-11.305596612999878],[131.8243921230002,-11.314873955999829],[131.81568444100006,-11.317071221999825],[131.76758873800023,-11.310804945999877],[131.76587975400005,-11.307224216999899],[131.77426191500004,-11.299574476999865],[131.78882897200006,-11.292250257999868],[131.80486087300002,-11.29045989399988],[131.78972415500002,-11.263360283999859],[131.80054772200006,-11.263360283999859],[131.82203209700006,-11.27361419099988],[131.83887780000023,-11.277439059999892],[131.84693444100017,-11.263360283999859],[131.83814537900005,-11.244398695999848],[131.8248804050002,-11.223077080999872],[131.81910241000006,-11.201592705999843],[131.82683353000004,-11.204034112999878],[131.84848066500004,-11.207289320999834],[131.85621178500006,-11.21160247199984],[131.86850019599999,-11.220798434999892],[131.87476647200006,-11.215997002999913],[131.8768009770001,-11.206719658999859],[131.87647545700017,-11.201592705999843],[131.86988366000017,-11.194756768999838],[131.87435957100013,-11.18124765399986],[131.88249759200008,-11.171970309999892],[131.88672936300006,-11.177422783999845],[131.8901473320001,-11.184502862999892],[131.90503991000006,-11.19988372199984],[131.93604576900006,-11.246758721999894],[131.94027753999998,-11.251397393999824],[131.94695071700008,-11.249932549999855],[131.96241295700005,-11.242608330999857],[131.98324629000012,-11.226250908999845],[131.9825952480002,-11.209405205999843],[131.97339928500006,-11.19036223799985],[131.96859785200004,-11.167575778999916],[131.98666425900015,-11.176527601999851],[131.9897567070002,-11.168633721999866],[131.98218834700018,-11.14706796699987],[131.98161868600002,-11.130059502999899],[131.98560631600012,-11.12916432099982],[131.99610436300006,-11.135430596999852],[132.01433353000004,-11.139580987999892],[132.02222741000006,-11.14706796699987],[132.03174889400012,-11.163506768999865],[132.04460696700005,-11.17994557099986],[132.07781009200008,-11.192478122999859],[132.07390384200008,-11.21803150799984],[132.08594811300006,-11.228936455999829],[132.09620201900012,-11.224704684999892],[132.10621178500014,-11.213636976999865],[132.11451256600017,-11.208754164999888],[132.12012780000018,-11.222100518999895],[132.1183374360002,-11.22844817499984],[132.10865319100006,-11.2458635399999],[132.10645592500023,-11.252862237999878],[132.10759524800008,-11.261488539999888],[132.11215254,-11.276788018999852],[132.11329186300023,-11.287041924999867],[132.1071069670002,-11.317071221999825],[132.10726972700016,-11.331963799999867],[132.11670983200017,-11.338148695999847],[132.12191816500015,-11.340020440999822],[132.12476647200018,-11.343031507999825],[132.12777753999998,-11.343682549999867],[132.13379967500012,-11.338148695999847],[132.13477623800006,-11.331312757999825],[132.13168378999998,-11.323174737999821],[132.13135826900006,-11.313734632999896],[132.14063561300023,-11.30339934699988],[132.15300540500007,-11.32634856599988],[132.15105228000013,-11.355726820999877],[132.15251712300008,-11.384698174999869],[132.17465254000015,-11.40642669099985],[132.20386803500017,-11.410332940999837],[132.20313561300017,-11.391696872999859],[132.191661004,-11.36646900799988],[132.18832441499998,-11.351250908999901],[132.20362389400023,-11.349541924999897],[132.2163192070001,-11.358575127999828],[132.22689863400015,-11.363864841999883],[132.23617597700004,-11.351250908999901],[132.23560631600006,-11.339450778999845],[132.22828209700006,-11.328708591999927],[132.20948326900012,-11.310804945999877],[132.203379754,-11.307875257999854],[132.19792728000007,-11.309502862999878],[132.19288170700023,-11.309747002999828],[132.18832441499998,-11.30339934699988],[132.18873131600017,-11.299574476999865],[132.19410241000006,-11.290215752999842],[132.19581139400023,-11.283623955999857],[132.19629967500023,-11.268243096999825],[132.19483483200005,-11.25603606599985],[132.19027754000004,-11.244073174999825],[132.18148847700016,-11.228936455999829],[132.190765821,-11.216892184999907],[132.18344160200002,-11.196058851999837],[132.16928144599996,-11.176364841999884],[132.157969597,-11.167575778999916],[132.14747155000023,-11.157321872999887],[132.14812259200016,-11.137302341999913],[132.16130618600002,-11.123711846999866],[132.18832441499998,-11.132745049999883],[132.19890384200002,-11.1469052059999],[132.20671634200002,-11.164971612999821],[132.21648196700008,-11.180759372999873],[132.23316491,-11.187432549999825],[132.24097741,-11.196465752999842],[132.25521894600004,-11.240411065999865],[132.26417076900023,-11.256280205999886],[132.28516686300006,-11.268487237999864],[132.28785241000006,-11.255466403999876],[132.27767988400004,-11.218682549999881],[132.27230879000015,-11.177504164999915],[132.27751712300002,-11.162204684999864],[132.29818769600016,-11.153252862999835],[132.31031334700006,-11.154554945999834],[132.31470787900005,-11.159844658999901],[132.319590691,-11.161797783999859],[132.33236738400015,-11.153252862999835],[132.33204186300023,-11.147719007999825],[132.33692467500012,-11.132745049999883],[132.34302819100017,-11.122002862999864],[132.34603925899998,-11.129327080999872],[132.34994550899998,-11.146254164999858],[132.38347415500002,-11.214450778999874],[132.3844507170002,-11.219170830999872],[132.38347415500002,-11.223402601999808],[132.38070722700016,-11.228936455999829],[132.38689212300002,-11.24578215899983],[132.37794030000012,-11.283135674999869],[132.39096113399998,-11.29045989399988],[132.40398196700005,-11.283135674999869],[132.41146894600016,-11.265883070999863],[132.421153191,-11.228936455999829],[132.44507897200018,-11.212497653999916],[132.47494550900015,-11.2341447899999],[132.50196373800011,-11.273695570999863],[132.51734459700006,-11.310804945999877],[132.51303144600016,-11.322035414999874],[132.51238040500016,-11.330336195999848],[132.51734459700006,-11.338148695999847],[132.52312259200016,-11.33904387799984],[132.53003991,-11.336358330999857],[132.53581790500007,-11.332696221999896],[132.5378524100001,-11.330743096999853],[132.54322350400017,-11.334893487999892],[132.55518639400006,-11.348239841999899],[132.56080162900017,-11.356215101999865],[132.56918379000015,-11.375420830999829],[132.61353600400017,-11.40642669099985],[132.63314863400012,-11.4372697899999],[132.65007571700002,-11.476657809999892],[132.67416425900015,-11.508396091999842],[132.71599368600008,-11.516289971999825],[132.73698978000013,-11.508233330999886],[132.75953209700015,-11.49236419099985],[132.77751712300002,-11.472263278999902],[132.78809655000006,-11.443617445999834],[132.79574629,-11.440118096999852],[132.80502363400015,-11.437758070999806],[132.81275475400017,-11.43434010199988],[132.82634524800002,-11.422295830999872],[132.82960045700005,-11.420668226999851],[132.83399498800017,-11.417901299999883],[132.83350670700005,-11.411390882999894],[132.83179772200018,-11.404392184999907],[132.83326256600006,-11.399672132999811],[132.85596764400006,-11.400323174999853],[132.87818444100006,-11.413506768999895],[132.8948673840001,-11.418877862999864],[132.901621941,-11.395928643999866],[132.89893639400023,-11.371840101999851],[132.89193769600013,-11.358493747999844],[132.86744225400005,-11.338148695999847],[132.87289472700016,-11.327894789999917],[132.879161004,-11.32634856599988],[132.88721764400023,-11.328871351999894],[132.91098066500015,-11.331801039999903],[132.91529381600006,-11.334730726999837],[132.91716556100013,-11.33928801899988],[132.9220483730002,-11.344984632999866],[132.9287215500002,-11.348077080999843],[132.93555748800017,-11.350192966999856],[132.9409285820001,-11.353936455999886],[132.94312584699998,-11.361748955999886],[132.9557397800002,-11.387465101999837],[132.95980879000012,-11.392185153999847],[132.9855249360002,-11.404229424999855],[133.0110783210001,-11.432793877999842],[133.03239993600008,-11.46689218499985],[133.0449324880002,-11.495212497999887],[133.05176842500018,-11.495212497999887],[133.05958092500023,-11.500258070999834],[133.06861412900017,-11.504327080999886],[133.07601972700016,-11.50994231599988],[133.07911217500023,-11.519707940999837],[133.07374108200005,-11.547784112999835],[133.07422936300006,-11.560967705999872],[133.09945722700002,-11.597100518999824],[133.14112389400006,-11.67457447699988],[133.1518660820001,-11.688734632999811],[133.16675866000003,-11.704359632999894],[133.1850692070001,-11.717054945999863],[133.20630944100012,-11.72234465899983],[133.2612410820001,-11.729587497999859],[133.28288821700008,-11.720879815999865],[133.29200280000015,-11.688246351999823],[133.30811608200023,-11.691989841999854],[133.3346460300002,-11.68767669099985],[133.3466903000001,-11.688246351999823],[133.3644311860002,-11.697360934999907],[133.35889733200008,-11.704359632999894],[133.3429468110002,-11.711114190999837],[133.32943769600004,-11.718682549999883],[133.31836998800006,-11.734633070999891],[133.31576582100016,-11.749118747999844],[133.32374108200023,-11.759454033999845],[133.34376061300011,-11.763360283999845],[133.36508222700013,-11.763360283999845],[133.37240644600016,-11.76100025799988],[133.3766382170002,-11.753024997999928],[133.3881942070001,-11.736016533999873],[133.39730878999998,-11.72747161299985],[133.4072371750001,-11.723809502999885],[133.41618899800002,-11.727797132999866],[133.42221113400015,-11.74285247199988],[133.41895592500006,-11.748630466999856],[133.41081790500007,-11.75416432099986],[133.40414472700004,-11.76002369599982],[133.40528405000023,-11.766778252999854],[133.41195722700004,-11.770196221999853],[133.42123457100016,-11.771091403999847],[133.4393009770001,-11.770196221999853],[133.46485436300006,-11.78582122199984],[133.47852623800011,-11.790785414999888],[133.48438561300023,-11.780694268999838],[133.49138431100002,-11.776462497999901],[133.50684655000023,-11.771091403999847],[133.52320397200018,-11.762790622999873],[133.53207441500004,-11.749118747999844],[133.54322350400005,-11.767347914999917],[133.54200280000012,-11.799899997999887],[133.53394616000017,-11.83416106599985],[133.52466881600006,-11.858330987999864],[133.53207441500004,-11.865817966999927],[133.53956139400006,-11.853122653999861],[133.55005944100006,-11.823500257999825],[133.55836022200006,-11.811211846999866],[133.5835067070001,-11.799899997999887],[133.58985436300023,-11.798109632999811],[133.60027103000002,-11.800957940999837],[133.60328209700006,-11.807224216999884],[133.60385175900004,-11.814060153999904],[133.60670006600006,-11.818617445999848],[133.615489129,-11.82984791499986],[133.62208092500006,-11.833265882999868],[133.63786868600002,-11.823988539999903],[133.6552840500001,-11.821384372999901],[133.66187584700018,-11.818617445999848],[133.67009524800008,-11.80885182099982],[133.68238366000006,-11.770196221999853],[133.69898522200018,-11.775974216999913],[133.716563347,-11.777520440999865],[133.73454837300008,-11.77548593499992],[133.75123131600017,-11.770196221999853],[133.76514733200005,-11.758965752999856],[133.80250084700006,-11.71493905999985],[133.82984459700012,-11.71493905999985],[133.8375757170002,-11.717217705999829],[133.84229576900012,-11.72210051899988],[133.84595787900017,-11.726983330999857],[133.85059655000012,-11.729180596999853],[133.86793053500014,-11.733330987999892],[133.88526451900006,-11.73943450299987],[133.90162194100017,-11.738864841999899],[133.915782097,-11.72234465899983],[133.93327884200008,-11.745212497999844],[133.93897545700023,-11.757907809999892],[133.93287194100006,-11.763360283999845],[133.91895592500006,-11.766289971999866],[133.9089461600001,-11.7738583309999],[133.90137780000023,-11.784926039999943],[133.89527428500017,-11.798109632999811],[133.87012780000006,-11.792250257999854],[133.8463647800002,-11.80681731599988],[133.8341577480002,-11.83147551899988],[133.84376061300006,-11.855238539999872],[133.8912866550002,-11.887627862999878],[133.94312584700018,-11.91366952899986],[133.98487389400012,-11.88933684699988],[134.0074975920002,-11.881280205999857],[134.01368248800023,-11.869561455999857],[134.01807701900023,-11.856133721999866],[134.02564537900017,-11.84587981599985],[134.0403751960001,-11.84156666499993],[134.05600019600013,-11.844821872999887],[134.06836998800011,-11.854424737999864],[134.07341556100002,-11.869235934999935],[134.07553144600016,-11.87379322699988],[134.08025149800008,-11.877373955999857],[134.08480878999998,-11.882012627999885],[134.08708743600005,-11.889906507999854],[134.08570397200015,-11.901462497999873],[134.0835067070001,-11.909926039999915],[134.08318118600008,-11.918064059999935],[134.08708743600005,-11.927911065999865],[134.13217207100004,-11.886407158999859],[134.13795006600012,-11.87948984199987],[134.14429772200006,-11.88689544099985],[134.15870201900012,-11.921156507999825],[134.1616317070001,-11.930922132999866],[134.1683048840001,-11.938164971999882],[134.18279056100013,-11.941664320999877],[134.19507897200018,-11.947686455999886],[134.19629967500012,-11.962009372999873],[134.19206790500007,-11.963311455999872],[134.17465254000004,-11.964288018999838],[134.16895592500012,-11.968194268999838],[134.1678166020001,-11.976657809999878],[134.1717228520001,-11.983330987999835],[134.17774498800011,-11.989434502999828],[134.18262780000023,-11.996189059999864],[134.18775475400017,-12.008721612999864],[134.18970787900005,-12.018243096999853],[134.18946373800006,-12.040785414999931],[134.18848717500012,-12.04810963299984],[134.18384850400014,-12.05877044099988],[134.18262780000023,-12.0681291649999],[134.18580162900005,-12.076429945999891],[134.1928817070001,-12.078708591999856],[134.19996178500006,-12.075616143999879],[134.21078535200004,-12.052178643999895],[134.2468367850001,-12.026950778999845],[134.25782311300023,-12.016696872999901],[134.26205488400007,-11.997979424999839],[134.26189212300017,-11.98503997199984],[134.2662866550002,-11.975762627999885],[134.28500410200016,-11.968194268999838],[134.34669030000006,-12.02027760199988],[134.3821720710001,-12.042657158999901],[134.42896569100006,-12.057549737999864],[134.52222741000017,-12.064385674999867],[134.56202233200017,-12.052422783999845],[134.58269290500007,-12.05095794099988],[134.5942488940001,-12.064385674999867],[134.6046655610002,-12.049493096999823],[134.63266035200004,-12.030938408999916],[134.69654381600006,-11.968194268999838],[134.70476321700014,-11.960625908999887],[134.72291100400005,-11.952243747999916],[134.7475692070001,-11.948500257999896],[134.76856530000023,-11.947686455999886],[134.77369225400017,-11.952732028999904],[134.7744246750001,-11.96412525799988],[134.77222741,-11.985935153999918],[134.77458743600008,-11.995049737999821],[134.78003991,-12.003024997999873],[134.79224694100017,-12.016696872999901],[134.79590905000023,-12.02418385199988],[134.80095462300005,-12.038669528999918],[134.80640709700012,-12.043877862999821],[134.8146264980002,-12.042901299999853],[134.82593834700018,-12.038669528999918],[134.836192254,-12.037855726999823],[134.84058678500017,-12.047295830999829],[134.84669030000006,-12.090997002999828],[134.85320071700008,-12.1130510399999],[134.86109459700006,-12.126560153999888],[134.880625847,-12.133884372999887],[134.92741946700016,-12.134698174999897],[134.93995201900012,-12.136814059999907],[134.94727623800011,-12.140313408999901],[134.96705162900005,-12.146091403999861],[134.97095787900005,-12.150079033999845],[134.97364342500012,-12.155938408999887],[134.9913843110002,-12.181735934999905],[135.001231316,-12.202813408999845],[135.00505618600002,-12.208428643999838],[135.0405379570001,-12.226820570999875],[135.04607181100002,-12.232842705999886],[135.04883873800011,-12.237074476999823],[135.07016035200016,-12.259942315999822],[135.080332879,-12.263604424999869],[135.0924585300002,-12.26051197699988],[135.11491946700016,-12.25009530999989],[135.13355553500017,-12.243747653999861],[135.14722095700017,-12.243767432999903],[135.15812355000017,-12.253439100999898],[135.17199304500005,-12.269890244999843],[135.1878537160001,-12.28052424199987],[135.20271732300003,-12.294066046999886],[135.21759003699998,-12.300822868999843],[135.23780358200005,-12.291599216999884],[135.22999108200005,-12.274590752999826],[135.18889024400002,-12.251444354999876],[135.17007500100024,-12.228221738999906],[135.207774285,-12.229099216999856],[135.2325558590002,-12.227149252999894],[135.25831139400012,-12.222100518999879],[135.26922450900017,-12.23483166799987],[135.28309543000015,-12.250292798999808],[135.3019288530002,-12.258958258999854],[135.32349694100006,-12.25009530999989],[135.33814537900005,-12.245700778999904],[135.34929446700008,-12.236016533999859],[135.34937584700006,-12.226332289999887],[135.32866573800007,-12.234724339999872],[135.30489610500004,-12.231861398999868],[135.29003704300007,-12.224145299999861],[135.26428751800003,-12.208696288999874],[135.2414976360001,-12.20679582899983],[135.22268351200003,-12.191330316999895],[135.237560344,-12.179689857999902],[135.26530170300012,-12.178681050999927],[135.30697675900015,-12.157647393999895],[135.31348717500023,-12.153741143999893],[135.32260175900015,-12.144138278999918],[135.323903842,-12.139825127999826],[135.30888943200014,-12.136040257999838],[135.30294822800025,-12.128309756999869],[135.3247279420001,-12.110869512999884],[135.3514397700002,-12.105034380999896],[135.36626719300003,-12.08761268399985],[135.38901157900003,-12.091452363999835],[135.41504967500023,-12.084242445999877],[135.41767867600004,-12.087551308999835],[135.40879363900015,-12.105929886999915],[135.428591856,-12.115544705999822],[135.46021896099998,-12.113571590999896],[135.48487389400006,-12.106052341999842],[135.50513756600012,-12.098077080999872],[135.51551516400005,-12.078717808999912],[135.51549745200012,-12.065190505999851],[135.53624186300007,-12.062265025999821],[135.53527955800016,-12.080620951999904],[135.57154381600006,-12.097263278999861],[135.58790123800023,-12.098565362999864],[135.6220809250002,-12.0681291649999],[135.62671959700006,-12.064873955999856],[135.64893639400012,-12.05486419099988],[135.65609785200016,-12.05071379999984],[135.71199680300006,-12.018483409999845],[135.70209173800006,-12.007871643999877],[135.6517033210001,-12.020196221999896],[135.63575280000015,-12.02353280999992],[135.59294681100008,-12.055596612999821],[135.58106530000012,-12.057549737999864],[135.57227623800017,-12.044203382999852],[135.56582629200003,-12.025500677999858],[135.57071741900003,-11.99457454499985],[135.59253991000017,-11.965101820999848],[135.60059655000012,-11.956719658999887],[135.6220809250002,-11.954522393999895],[135.62826582099999,-11.95696379999984],[135.63086998800011,-11.961602471999868],[135.63502037900005,-11.96624114399988],[135.64568118600008,-11.968194268999838],[135.65503991,-11.966403903999847],[135.6593530610002,-11.961358330999829],[135.66260826900023,-11.954766533999845],[135.66976972699996,-11.947686455999886],[135.68392988400004,-11.939141533999859],[135.70093834700018,-11.932549737999878],[135.71973717500023,-11.93181731599985],[135.73926842500012,-11.941501559999907],[135.775157097,-11.919366143999838],[135.80982506600017,-11.889906507999854],[135.83676191500015,-11.87395598799985],[135.84107506600006,-11.869235934999935],[135.84506269600004,-11.855075778999902],[135.8546655610002,-11.850762627999913],[135.8658960300002,-11.84986744599982],[135.87525475400005,-11.84587981599985],[135.88697350400005,-11.824639580999857],[135.88314863400004,-11.806735934999892],[135.87378991000017,-11.788669528999874],[135.86841881600006,-11.766778252999854],[135.87818444100017,-11.756280205999872],[135.90040123800023,-11.759209893999895],[135.92359459700006,-11.76848723799985],[135.936778191,-11.777032158999873],[135.9221284600001,-11.816001012999905],[135.9034165100002,-11.849898623999835],[135.84107506600006,-11.91366952899986],[135.81120853000007,-11.951918226999808],[135.79363040500002,-11.963962497999916],[135.75847415500007,-11.96990325299984],[135.75123131600003,-11.975030205999857],[135.74691816500015,-11.982842705999843],[135.71690743900004,-12.003019076999834],[135.72384344900016,-12.010737625999866],[135.76465905000023,-11.996189059999864],[135.78646894599999,-11.989353122999844],[135.85108483200023,-11.98251718499992],[135.86703535200016,-11.978448174999869],[135.89722741000017,-11.962579033999845],[135.91627037900005,-11.962009372999873],[135.91627037900005,-11.968194268999838],[135.902598504,-11.976739190999865],[135.85474694100014,-11.989353122999844],[135.8283797540001,-12.005547783999887],[135.79281660200002,-12.036797783999859],[135.76539147200018,-12.071872653999845],[135.7307235040001,-12.10165780999985],[135.71816596000005,-12.108385464999884],[135.69053489400014,-12.129703650999915],[135.66882254700025,-12.14714319699985],[135.65007276200018,-12.164576143999852],[135.65213788700024,-12.203285641999841],[135.66903066900014,-12.237137624999887],[135.68885596200013,-12.250670503999885],[135.7037392140002,-12.265177396999903],[135.71366908700023,-12.276786508999875],[135.7319442070001,-12.311455987999892],[135.75180097700004,-12.270765882999823],[135.7653100920002,-12.25709400799988],[135.77906334700012,-12.263604424999869],[135.78646894599999,-12.263604424999869],[135.79444420700023,-12.235284112999835],[135.80689537900017,-12.216973565999865],[135.84742272200015,-12.187920830999886],[135.880137566,-12.151625257999882],[135.88892662900017,-12.146254164999915],[135.89576256600012,-12.150485934999848],[135.902598504,-12.15992603999986],[135.90748131600017,-12.170505466999913],[135.90943444100006,-12.177911065999893],[135.91260826900012,-12.18230559699988],[135.91993248800011,-12.174411716999913],[135.93051191500015,-12.157159112999906],[135.93458092500012,-12.14674244599982],[135.94434655000023,-12.146091403999861],[135.95655358200023,-12.147393487999864],[135.96778405000023,-12.143243096999825],[136.02857506600017,-12.08220794099985],[136.05347741000008,-12.064385674999867],[136.0493270190002,-12.082940362999878],[136.03589928500017,-12.103285414999872],[136.0198673840001,-12.119724216999868],[136.0086369150001,-12.126560153999888],[136.0046492850001,-12.129978122999887],[135.9936629570002,-12.145603122999873],[135.99138431100008,-12.150079033999845],[135.9895939460001,-12.160902601999837],[135.98503665500002,-12.166273695999806],[135.95386803500006,-12.184747002999826],[135.94361412900005,-12.192478122999928],[135.936778191,-12.201592705999827],[135.93539472700004,-12.213636976999837],[135.94044030000023,-12.221449476999837],[135.94703209700006,-12.227146091999899],[135.95045006600006,-12.232842705999886],[135.95736738400015,-12.257500908999887],[135.9744572270001,-12.26458098799985],[135.99488366000017,-12.260023695999806],[136.01246178500017,-12.25009530999989],[136.02588951900003,-12.240166924999897],[136.04420006600006,-12.231133721999882],[136.06023196700002,-12.232191664999931],[136.06714928500003,-12.253106377999899],[136.06283613400004,-12.26458098799985],[136.05347741000008,-12.269219658999873],[136.04395592500012,-12.27092864399988],[136.03980553500017,-12.2738583309999],[136.03825931100013,-12.282321872999844],[136.02613366000006,-12.311455987999892],[135.99024498800023,-12.353692315999822],[135.98511803499997,-12.362969658999873],[135.98568769599999,-12.372735283999916],[135.98804772200006,-12.385186455999843],[135.99333743600013,-12.393243096999868],[136.00180097700016,-12.390313408999845],[136.01384524800008,-12.383396091999856],[136.0162866550002,-12.392185153999904],[136.01246178500017,-12.413832289999903],[136.0166121750002,-12.435723565999837],[136.0232039720001,-12.455661716999911],[136.03394616,-12.465915622999859],[136.05005944100017,-12.458184502999842],[136.05445397200018,-12.448418877999899],[136.05494225400017,-12.438409112999821],[136.05811608200023,-12.430596612999835],[136.07081139400006,-12.42750416499993],[136.07642662900017,-12.429375908999901],[136.079356316,-12.434177341999899],[136.08139082100004,-12.43971119599982],[136.08448326900012,-12.444512627999899],[136.09083092500023,-12.44784921699984],[136.09620201900012,-12.446058851999851],[136.101817254,-12.44296640399986],[136.14136803500017,-12.435153903999876],[136.14909915500007,-12.434991143999907],[136.157074415,-12.440524997999916],[136.16928144599999,-12.457940362999892],[136.17359459700012,-12.461602471999853],[136.196055535,-12.45989348799985],[136.21729576900006,-12.455254815999822],[136.2526961600001,-12.441094658999887],[136.28451582100004,-12.41578541499986],[136.304535352,-12.383558851999823],[136.33399498800006,-12.304620049999883],[136.36394290500007,-12.256442966999927],[136.36817467500018,-12.239434502999869],[136.36304772200006,-12.222914320999891],[136.34978274800014,-12.210870049999867],[136.33220462300017,-12.203545830999872],[136.31348717500012,-12.201592705999827],[136.300629102,-12.204359632999882],[136.27739734100007,-12.208229576999896],[136.25941563600017,-12.208984317999906],[136.2349425470002,-12.211159572999847],[136.22510826900006,-12.191827080999886],[136.214691602,-12.187920830999886],[136.188243035,-12.192071221999825],[136.18002363400004,-12.187758070999834],[136.177012566,-12.17083098799985],[136.18238366000017,-12.162530205999857],[136.195567254,-12.15829843499985],[136.22461998800011,-12.153741143999893],[136.23096764400012,-12.132094007999811],[136.28353925900015,-12.065687757999868],[136.30046634200002,-12.05071379999984],[136.3203231130002,-12.049004815999837],[136.3296004570001,-12.051364841999883],[136.33627363400015,-12.050062757999882],[136.36182701900023,-12.02353280999992],[136.3854272800002,-12.005303643999852],[136.41822350400017,-11.973565362999892],[136.42945397200015,-11.965264580999914],[136.44044030000023,-11.962009372999873],[136.45071310100005,-11.942333450999811],[136.46506552300016,-11.945811682999832],[136.4808575980002,-11.950690850999862],[136.512309778,-11.940791741999888],[136.52581479500012,-11.921820858999823],[136.55298255900018,-11.916128496999832],[136.56583184799996,-11.909079521999857],[136.56432197200004,-11.891560232999907],[136.57221501400014,-11.89644275299986],[136.58156494700003,-11.9069254879999],[136.57803150100008,-11.916750223999841],[136.56305219000015,-11.927309200999884],[136.548080525,-11.93927183999989],[136.5280925880002,-11.949150664999877],[136.51594084700017,-11.95199311899988],[136.49879057900003,-11.958348440999913],[136.48016872300005,-11.958392547999921],[136.46944659800008,-11.966811342999904],[136.47025109100005,-11.986424620999827],[136.47748935500013,-12.002518360999872],[136.48968266900013,-12.006687463999867],[136.50465512400004,-11.993334149999896],[136.51966203800023,-11.987685387999875],[136.53328864000017,-11.993246095999893],[136.5485124530001,-12.038701710999831],[136.5601340120002,-12.079250938999877],[136.586625862,-12.083353149999837],[136.58173965200004,-12.112055144999843],[136.58188939300018,-12.148430154999843],[136.59057533700005,-12.174278161999865],[136.61207116000006,-12.192559502999913],[136.62191816500015,-12.208428643999838],[136.64991295700005,-12.236260674999897],[136.65870201900023,-12.256117445999806],[136.6635848320001,-12.263604424999869],[136.69060306100008,-12.282810153999916],[136.71908613400015,-12.281345309999864],[136.74537194100014,-12.265801690999865],[136.76587975400005,-12.242608330999829],[136.75953209700012,-12.233168226999823],[136.75277754000015,-12.225762627999828],[136.728168964,-12.219878132999852],[136.71165071700003,-12.206660383999818],[136.70084580000005,-12.190619640999898],[136.67943952900006,-12.20469856199986],[136.68579298000023,-12.184385302999914],[136.71370372400023,-12.185668814999884],[136.72938905000015,-12.173011751999894],[136.7609155610002,-12.1644833309999],[136.77995853000007,-12.172051690999865],[136.80746504000004,-12.194756768999895],[136.8247758440001,-12.213857282999854],[136.84911436600024,-12.214442061999833],[136.87637950600018,-12.223413891999925],[136.90666701000012,-12.261752860999877],[136.92691069300022,-12.28896756599984],[136.9341269410002,-12.32235455199988],[136.9278162730002,-12.34898340199986],[136.94933956600008,-12.355868962999892],[136.96998131600012,-12.345879815999837],[136.98365319100006,-12.345472914999917],[136.97144616000017,-12.36598072699988],[136.96363366000017,-12.372491143999866],[136.9562280610002,-12.374932549999897],[136.9479272800002,-12.376397393999866],[136.9279584880001,-12.3769742099999],[136.90867731600005,-12.388972398999911],[136.8616378820001,-12.43467939899986],[136.79398690800022,-12.516122783999919],[136.7833230260002,-12.534358814999848],[136.77117711300005,-12.541406028999845],[136.7682401230002,-12.524628600999888],[136.78003991000006,-12.507907809999919],[136.800629102,-12.482679945999877],[136.80250084700006,-12.477715752999826],[136.80518639400023,-12.46754322699988],[136.80551191500015,-12.456475518999838],[136.800629102,-12.447930596999825],[136.7898055350001,-12.44548919099988],[136.78142337300002,-12.450616143999895],[136.7746688160001,-12.457940362999892],[136.76970462300002,-12.461602471999853],[136.74024498800017,-12.475762627999869],[136.73804772200015,-12.507989190999822],[136.74467946700005,-12.5478282499999],[136.76128537700006,-12.574338011999899],[136.74170983200023,-12.573500257999939],[136.731781446,-12.57830169099985],[136.70118248800011,-12.616143487999977],[136.67922196700013,-12.671291745999937],[136.69725954400016,-12.698527971999908],[136.6901379770002,-12.713272210000028],[136.6700952480002,-12.705173434999963],[136.62769616,-12.70240650799991],[136.60840905000006,-12.71493905999992],[136.60189863399998,-12.733656507999981],[136.60906009200014,-12.750909112999977],[136.6217627560001,-12.76400638299999],[136.6225692070001,-12.786553643999852],[136.62086022200018,-12.796482028999947],[136.62322024800002,-12.8070614559999],[136.62191816500015,-12.81853606599985],[136.61068769600016,-12.830336195999905],[136.597422722,-12.831231378],[136.58627363399998,-12.823011976999823],[136.5815535820001,-12.808282158999916],[136.57935631600012,-12.79257577899986],[136.56959069100006,-12.765232028999973],[136.56723066500004,-12.753350518999838],[136.5651147800002,-12.748223565999908],[136.55925540500007,-12.745212497999914],[136.55144290500007,-12.743829033999845],[136.5434676440001,-12.743422132999838],[136.53302481100016,-12.748312733999924],[136.5273006360002,-12.75473370399989],[136.52571533900004,-12.769170084999928],[136.53232639700005,-12.779570922999952],[136.53402318400018,-12.793198573999874],[136.53242844800005,-12.804426401000015],[136.51190194100005,-12.8052966729999],[136.496348504,-12.780368747999972],[136.47925866000017,-12.76669687299993],[136.47169030000012,-12.773858330999886],[136.47380618600002,-12.79225025799984],[136.48275800900015,-12.825778903999874],[136.48487389400017,-12.84246184699991],[136.4897567070002,-12.85076262799997],[136.52637780000023,-12.880547783999987],[136.5456649100001,-12.871840101999823],[136.54672285200016,-12.891208591999927],[136.5454207690002,-12.912855726999908],[136.55713951900023,-12.911716403999973],[136.56788170700023,-12.91187916500003],[136.6129081180001,-12.938678460999895],[136.63694389700012,-12.95494094899996],[136.64062919500012,-12.975950654999878],[136.65749395999998,-12.995739309999932],[136.65674889400006,-13.006605726999922],[136.65202884200008,-13.013441665000016],[136.64185631600003,-13.00872161299992],[136.63233483200023,-13.000583591999913],[136.6294051440001,-12.996677342],[136.6212671230002,-12.989190362999949],[136.62012780000023,-12.982842706],[136.6168725920002,-12.97991301899998],[136.60206139400023,-12.98235442499984],[136.58171569500007,-13.014067967999978],[136.56528081500008,-13.011729349999925],[136.5643345030002,-12.97972922199996],[136.555240215,-12.963761793999891],[136.54004967500012,-12.961846612999963],[136.53956139400012,-12.964125257999937],[136.53321373800006,-12.974297783999901],[136.53256269600004,-12.976250908999942],[136.52686608200023,-12.975681247999972],[136.51807701900006,-12.968357028999876],[136.51270592500012,-12.968845309999864],[136.49675540500013,-12.975192966999984],[136.4933374360002,-12.98023854],[136.49219811300006,-12.992933851999979],[136.49398847700016,-13.000258070999891],[136.49830162900017,-13.00798919099999],[136.50391686300023,-13.014092705999971],[136.5092879570001,-13.016534112999835],[136.52214603000002,-13.01864999799993],[136.52369225400017,-13.023858330999929],[136.52247155000023,-13.030531507999966],[136.5342234630001,-13.050250837999968],[136.56723066500004,-13.058200778999973],[136.53935168800015,-13.102241592999988],[136.53133380600005,-13.155082657999941],[136.51321245800003,-13.143144240999973],[136.49268827300014,-13.14881908599993],[136.4812452250002,-13.166464421999846],[136.47803795700023,-13.191989842],[136.47803795700023,-13.227634372999873],[136.47234134200008,-13.242364190999865],[136.45736738400004,-13.250583591999956],[136.45769290500007,-13.240899346999981],[136.45606530000023,-13.232598565999922],[136.45053144600004,-13.216403903999876],[136.44385826900023,-13.216403903999876],[136.43474368600008,-13.227715752999856],[136.39924700700007,-13.242004468999937],[136.38851972700016,-13.264255466999899],[136.36752363400004,-13.29762135199988],[136.35330924900003,-13.310276058999861],[136.342624654,-13.321538449000016],[136.33108738900003,-13.31997911199987],[136.33271560500012,-13.310353936],[136.32200079800023,-13.30798913399991],[136.32115368500004,-13.295969144999944],[136.34473717500012,-13.281345309999935],[136.34169158300008,-13.27025120199994],[136.33507764100014,-13.259059063999914],[136.33752407200015,-13.248636188999853],[136.35152079100024,-13.248586823999943],[136.36553157600022,-13.25494487499985],[136.38196712000004,-13.245275707999893],[136.38819420700023,-13.225762627999984],[136.38190050600022,-13.213231591999943],[136.36703605800017,-13.194870487999879],[136.37106944200005,-13.16523596799999],[136.36444154500012,-13.150850945000016],[136.36817467500018,-13.095635675],[136.37159264400006,-13.065362237999835],[136.3654891290001,-13.0551083309999],[136.34355254400023,-13.046855122999858],[136.33285632900012,-13.04688237599997],[136.31869550900004,-13.063083591999856],[136.31023196700008,-13.076104424999924],[136.30419426200004,-13.090993216000015],[136.30588564299995,-13.10619992799995],[136.3209741550002,-13.121270440999979],[136.3117329600001,-13.138207533999902],[136.31177457300006,-13.154220786999856],[136.308360222,-13.16277434699988],[136.2900496750002,-13.165704033999901],[136.27344811300011,-13.160414320999834],[136.26099694100017,-13.129327081],[136.24927819100014,-13.129652601999851],[136.23755944100012,-13.138767184999935],[136.23218834700006,-13.150567315999908],[136.23650149800002,-13.166680596999882],[136.24390709700006,-13.182549737999906],[136.24537194100017,-13.197035414999945],[136.23218834700006,-13.208916924999981],[136.22486412900005,-13.203545830999943],[136.21778405000006,-13.204685153999973],[136.21265709700006,-13.211521091999899],[136.2111108730002,-13.222588799999924],[136.2111108730002,-13.216403903999876],[136.20704186300017,-13.232110283999845],[136.1938582690001,-13.23528411299999],[136.1774194670002,-13.235609632999923],[136.1586178820002,-13.262878108999885],[136.1478544290002,-13.238857754999911],[136.1387342610001,-13.206813317999929],[136.15699303500006,-13.172458591999927],[136.15650475400017,-13.146905205999857],[136.1476343110002,-13.122247002999956],[136.13656660200016,-13.125176690999965],[136.1039900330002,-13.158805330999925],[136.08585547000004,-13.199746099999954],[136.08586749100007,-13.230227315999912],[136.07677935500024,-13.231054473999961],[136.06397545700005,-13.22275156],[136.05836022200018,-13.22486744599982],[136.05347741000008,-13.230075778999902],[136.05241946700002,-13.245293877999885],[136.05909264400012,-13.292657159],[136.05347741000008,-13.311944268999866],[136.04664147200018,-13.311944268999866],[136.03980553500017,-13.287041924999912],[136.03695722700004,-13.260023695999877],[136.03044681100002,-13.236586195999891],[136.00828480500016,-13.215504805999913],[135.9914166610001,-13.219386293999904],[135.97754497,-13.231960651999898],[135.96770680800014,-13.275441815999969],[135.95681118800022,-13.288021288999943],[135.95191491,-13.263441664999887],[135.94283850300005,-13.25614913199992],[135.92399455900002,-13.266797496],[135.91111065800007,-13.28419787599988],[135.90716932200021,-13.302557298999984],[135.88336490100008,-13.3257643699999],[135.88342927800008,-13.367305799999897],[135.91285241000006,-13.374118747999873],[135.92089700100004,-13.377495029999977],[135.92538596900013,-13.38624814899991],[135.92627016600002,-13.398496403999927],[135.91636154800003,-13.403732618999909],[135.92264669400004,-13.415117274999886],[135.93637128999998,-13.416761976999894],[135.95948326900023,-13.415134372999972],[135.96461022200018,-13.415134372999972],[135.96943492500012,-13.425652422999901],[135.96762308300006,-13.436147759999841],[135.96461022200018,-13.4491513],[135.9458113940001,-13.446465752999927],[135.936778191,-13.450941664999972],[135.91987672100012,-13.464104375999893],[135.89943272400004,-13.437799430999988],[135.88052786500006,-13.430093845999949],[135.86065739199998,-13.437843090999948],[135.85474694100014,-13.455987237999835],[135.86101321700002,-13.48015715899993],[135.86101321700002,-13.504489841999897],[135.869395379,-13.539808851999837],[135.86841881600006,-13.551527601999823],[135.86402428500006,-13.557386976999865],[135.85743248800006,-13.561618747999972],[135.85084069100017,-13.567478123],[135.84742272200015,-13.578301690999908],[135.84483734400024,-13.600186004999983],[135.85280574500004,-13.615638461],[135.87074007000015,-13.653305843],[135.88468606400014,-13.666812082999826],[135.91627037900005,-13.653985283999901],[135.91846764400023,-13.658461195999962],[135.9221297540001,-13.66985442499984],[135.92310631600017,-13.675062757999923],[135.89372806100008,-13.687920830999857],[135.88672936300011,-13.713636976999979],[135.90137780000012,-13.738864841999956],[135.936778191,-13.75017669099985],[135.96989993600002,-13.742282809999963],[135.99659264400017,-13.722588799999926],[136.03296959700006,-13.675062757999923],[136.03614342500012,-13.66619231599988],[136.03589928500017,-13.659844658999944],[136.03736412900005,-13.654392184999907],[136.04664147200018,-13.647719007999939],[136.05534915500007,-13.645928643999952],[136.06348717500006,-13.647556247999972],[136.07032311300011,-13.650974216999897],[136.07447350400005,-13.653985283999901],[136.07789147200003,-13.66269296699997],[136.07178795700017,-13.67115650799984],[136.05347741000008,-13.688164971999896],[136.04721113400015,-13.701267184999864],[136.03296959700006,-13.75017669099985],[136.00489342500023,-13.79802825299987],[136.01270592500023,-13.808200779],[136.01270592500023,-13.82195403399993],[136.00489342500023,-13.846368096999882],[136.00171959700018,-13.851006768999909],[135.9972436860002,-13.85491301899999],[135.99301191499998,-13.860609632999967],[135.99138431100008,-13.870700778999945],[135.99244225400005,-13.894219658999987],[135.99138431100008,-13.901055596999925],[135.96461022200018,-13.935804945999976],[135.92310631600017,-13.959649346999868],[135.90333092500023,-14.135837497999972],[135.90943444100006,-14.1952450499999],[135.88990319100006,-14.189548434999862],[135.86963951900023,-14.192071221999882],[135.853770379,-14.20086028399993],[135.84742272200015,-14.212985934999935],[135.84197024800002,-14.219170830999985],[135.81853274800005,-14.223565362999892],[135.8132430350001,-14.226657809999878],[135.80860436300006,-14.226657809999878],[135.78931725400005,-14.240655205999841],[135.78646894599999,-14.243584893999952],[135.75912519600004,-14.265394789999988],[135.73414147200012,-14.298109632999925],[135.6753035820001,-14.406182549999926],[135.66774099400018,-14.427263997999916],[135.65023791900015,-14.436481707999915],[135.62468509200002,-14.431573174999853],[135.60938561300006,-14.452569268999893],[135.554602485,-14.54569253799991],[135.53225774800015,-14.581084406999919],[135.51786567900004,-14.616486202999864],[135.52263431100008,-14.65154387799994],[135.5034285820001,-14.662692966999868],[135.47934004000015,-14.670830987999961],[135.45378665500016,-14.68564218499995],[135.44336998800011,-14.699883721999951],[135.44011478000007,-14.712172132999825],[135.43409264400023,-14.720635674999938],[135.41602623800011,-14.72283294099985],[135.40406334700018,-14.71900807099992],[135.39087975400005,-14.71314869599989],[135.37826582100016,-14.712334893999879],[135.36817467500012,-14.72283294099985],[135.384043816,-14.725681247999885],[135.39128665500007,-14.739922783999972],[135.39551842500018,-14.778008721999884],[135.4039819670002,-14.813897393999968],[135.44776451900006,-14.916273695999962],[135.46957441500004,-14.94801197699992],[135.55111738400015,-15.019138278999874],[135.58106530000012,-15.035902601999892],[135.61524498800011,-15.04615650799991],[135.62574303500017,-15.045505466999954],[135.64568118600008,-15.039971612999949],[135.65267988400015,-15.04241301899998],[135.66976972699996,-15.066094658999987],[135.69752037900014,-15.086846612999906],[135.70899498800011,-15.0975888],[135.71762129000004,-15.114434503],[135.73633873800011,-15.109551690999934],[135.75904381600006,-15.115411065999893],[135.77849368600002,-15.12672291499996],[135.78646894599999,-15.137953382999882],[135.79615319100006,-15.146661065999863],[135.86101321700002,-15.175957940999963],[135.887950066,-15.199802341999868],[135.918223504,-15.23398202899986],[135.95167076900023,-15.264418226999823],[135.98829186300006,-15.277764581],[136.00310306100008,-15.281345309999892],[136.04346764400012,-15.301690362999977],[136.060313347,-15.313083591999856],[136.09066816499998,-15.339939060000019],[136.10124759200002,-15.347263278999932],[136.11231530000006,-15.351657809999919],[136.1364038420002,-15.35784270599997],[136.165782097,-15.38014088299984],[136.20606530000006,-15.396742445999891],[136.22461998800011,-15.408623955999843],[136.23707116,-15.419203382999981],[136.24008222700004,-15.424086195999863],[136.25733483200023,-15.470879815999837],[136.2679142590001,-15.545017184999876],[136.27320397200006,-15.55950286299992],[136.28443444100006,-15.570977471999868],[136.33082116,-15.604424737999835],[136.34839928500006,-15.613864841999927],[136.39584394600016,-15.617282809999933],[136.41651451900006,-15.62151458099987],[136.46802819100017,-15.674248955999872],[136.4938257170002,-15.690036716999911],[136.50904381600017,-15.704766533999901],[136.52857506600006,-15.719008070999818],[136.55372155000023,-15.724053643999936],[136.56267337300005,-15.720310153999902],[136.57252037900017,-15.713636976999936],[136.5831811860002,-15.709079684999905],[136.59473717500023,-15.710870049999983],[136.59848066500015,-15.71803150799984],[136.60621178500014,-15.744805596999925],[136.61207116000006,-15.754652601999865],[136.65821373800023,-15.787774346999894],[136.67042076900012,-15.799086195999877],[136.70443769600016,-15.847344658999985],[136.71509850400014,-15.854261976999908],[136.72291100400017,-15.862237237999862],[136.71794681100002,-15.880140882999825],[136.70875084700006,-15.900567315999893],[136.7046004570001,-15.915215752999899],[136.71558678500017,-15.935967705999898],[136.73414147200018,-15.938571872999987],[136.75196373800023,-15.928480726999837],[136.75977623800023,-15.91204192499984],[136.76791425900015,-15.900811455999843],[136.78695722700013,-15.900485934999907],[136.82813561300023,-15.908949476999936],[136.85971113400004,-15.907484632999981],[136.86963951900012,-15.908949476999936],[136.87940514400023,-15.91472747199991],[136.8995874360002,-15.932549737999892],[136.90650475400017,-15.936211846999939],[136.92554772200015,-15.9346656229999],[136.92579186300023,-15.92864348799989],[136.92221113400015,-15.91611093499989],[136.92986087300008,-15.895277601999823],[136.94263756600006,-15.885511976999878],[136.98316491000006,-15.865899346999909],[136.99187259200002,-15.864190362999906],[137.00806725400017,-15.891859632999896],[137.04590905000012,-15.922295830999957],[137.09034264400023,-15.946709893999907],[137.13477623800017,-15.959893487999864],[137.15365644599999,-15.974053643999966],[137.16041100400005,-15.977227471999852],[137.179453972,-15.97877369599989],[137.1889754570001,-15.981133721999852],[137.19800866000006,-15.984633070999932],[137.25025475400005,-16.020603123],[137.25953209700015,-16.028741143999834],[137.26498457100004,-16.040785415000016],[137.29175866000006,-16.071872653999932],[137.36117597700016,-16.122165622999987],[137.37989342500023,-16.128676039999903],[137.40259850400017,-16.128106377999842],[137.41309655000023,-16.13079192499991],[137.41773522200018,-16.138604424999983],[137.42172285200016,-16.14918385199995],[137.431407097,-16.15081145599997],[137.44239342500018,-16.149021091999984],[137.45118248800023,-16.149102471999967],[137.47510826900012,-16.171156507999953],[137.48536217500012,-16.176446221999853],[137.49740644600004,-16.177422783999916],[137.51921634200016,-16.171482028999975],[137.53003991000017,-16.169610283999916],[137.55046634200008,-16.17197031],[137.66089928499997,-16.21135833099987],[137.68978925900004,-16.231215101999965],[137.73023522200006,-16.243829033999855],[137.74610436300006,-16.252129815999837],[137.78012129000004,-16.302992445999863],[137.78467858200014,-16.318454684999963],[137.84473717500023,-16.40056731599988],[137.84913170700023,-16.41204192499991],[137.86687259200002,-16.437107028999918],[137.9128524100001,-16.47763437299993],[137.949961785,-16.510511976999922],[138.0001733730002,-16.541599216999927],[138.00082441500004,-16.542087498000015],[138.06153405000006,-16.61272551899988],[138.10206139400012,-16.63396575299987],[138.1534936860002,-16.676853123000015],[138.1842554050002,-16.69719817499984],[138.21998131599997,-16.709893487999892],[138.23715254000015,-16.718438408999916],[138.26205488399998,-16.723728122999972],[138.27084394600016,-16.724541924999983],[138.27767988400012,-16.727634372999887],[138.2895613940001,-16.741469007999967],[138.29411868600008,-16.745700778999904],[138.31185957100016,-16.749607028999904],[138.37322024800008,-16.745700778999904],[138.40308678500006,-16.757256768999838],[138.44654381600014,-16.779554945999877],[138.49268639400012,-16.794366143999852],[138.54468834700018,-16.7789852839999],[138.64795983200003,-16.77800872199984],[138.65723717500012,-16.779717705999843],[138.68441816500004,-16.80885182099989],[138.69507897200018,-16.813897393999923],[138.71021569100017,-16.81731536299992],[138.73829186300006,-16.834242445999905],[138.75342858200005,-16.841241143999895],[138.80445397200006,-16.851006768999923],[138.84034264400023,-16.870863540000016],[138.86963951900006,-16.878024997999887],[138.97136478000002,-16.884698174999926],[139.00831139400006,-16.89544036299995],[139.03728274800008,-16.91562265399997],[139.0621850920002,-16.97763437299993],[139.09343509200008,-17.00221119599985],[139.15805097700004,-17.032972915],[139.14063561300023,-17.066176040000016],[139.14161217500023,-17.116875908999987],[139.1525171230002,-17.168552341999856],[139.16431725400017,-17.203708591999913],[139.20948326900012,-17.28606536299995],[139.23991946700008,-17.323418878],[139.27418053500006,-17.348321221999853],[139.31430097700016,-17.359144790000016],[139.40162194100006,-17.36638762799987],[139.4386499360002,-17.375664972],[139.4489038420002,-17.381768487999906],[139.47282962300008,-17.40300872199998],[139.50879967500023,-17.42001718499995],[139.51783287900017,-17.426853122999873],[139.53158613399998,-17.440850518999838],[139.575856967,-17.47128671699997],[139.6179305350001,-17.51392994599992],[139.64096113400015,-17.53240325299994],[139.66863040500007,-17.54013437299986],[139.696543816,-17.543145440999865],[139.78126061300011,-17.56682708099997],[139.80469811300003,-17.568536065999965],[139.819672071,-17.578383070999905],[139.83171634200002,-17.589532159],[139.92530358200005,-17.621351820999863],[139.93336022200012,-17.632012627999984],[139.95443769600004,-17.668633722],[139.99048912900017,-17.700860283999944],[139.9995223320001,-17.70614999799993],[140.117442254,-17.715590101999936],[140.24048912900005,-17.702080987999878],[140.40430748800011,-17.66790129999997],[140.42408287900005,-17.660577080999886],[140.43238366,-17.653090101999823],[140.44141686300023,-17.64177825299984],[140.462657097,-17.638278904000018],[140.507497592,-17.636325778999975],[140.5232039720001,-17.63030364399998],[140.53858483200023,-17.62070077899999],[140.56617272200006,-17.59783294099999],[140.575368686,-17.593438408999912],[140.597911004,-17.590264580999854],[140.60743248800011,-17.584567966999952],[140.61589603000007,-17.57724374799987],[140.64470462300008,-17.560642184999907],[140.6738387380002,-17.53289153399993],[140.68897545700023,-17.522881768999852],[140.73414147200018,-17.51620859199998],[140.74333743600008,-17.50798919099989],[140.74708092500006,-17.495049737999892],[140.755137566,-17.478122653999904],[140.76832116000017,-17.46803150799994],[140.789317254,-17.459242445999877],[140.8129988940002,-17.45305755],[140.83326256600003,-17.450778903999932],[140.84522545700005,-17.44117604000003],[140.85629316500004,-17.419854424999983],[140.883067254,-17.346449476999876],[140.89454186300017,-17.26213958099997],[140.90463300900004,-17.224786065999922],[140.91089928500017,-17.215264580999843],[140.93262780000023,-17.190687757999925],[140.93824303500006,-17.16073984199994],[140.943125847,-17.152520440999865],[140.94898522200006,-17.138848565999922],[140.9599715500001,-17.07398853999993],[140.95606530000012,-17.05657317499987],[140.94939212300008,-17.03720468500002],[140.947032097,-17.018324476999823],[140.9562280610002,-17.002048434999963],[141.05054772200006,-16.887627862999864],[141.08350670700023,-16.80022551899998],[141.09034264400023,-16.797133070999905],[141.1100366550002,-16.795342705999914],[141.11768639400012,-16.79338958099987],[141.12427819100012,-16.787286065999965],[141.14551842500006,-16.75872161299989],[141.1994735040001,-16.70305754999997],[141.20639082099999,-16.68694426899999],[141.20964603000002,-16.672051690999936],[141.2241317070001,-16.639255466999924],[141.23422285200016,-16.573011976999965],[141.24480228000016,-16.55608489399998],[141.26156660200004,-16.560153903999932],[141.28370201900012,-16.518731377999842],[141.29265384200002,-16.49553801899998],[141.29623457099996,-16.474379164999988],[141.3022567070001,-16.454278252999856],[141.303965691,-16.441989841999984],[141.29948978000007,-16.436455987999878],[141.29127037900005,-16.431573174999983],[141.28842207100004,-16.42050546699987],[141.28956139400023,-16.40243906000002],[141.29566491000006,-16.388767184999907],[141.31861412900005,-16.360284112999988],[141.3237410820002,-16.344008070999962],[141.3273218110002,-16.32366301899988],[141.34424889400006,-16.283461195999962],[141.3497827480002,-16.26523202899999],[141.3497827480002,-16.224297783999873],[141.352793816,-16.215264580999957],[141.36207116000017,-16.200290623000015],[141.36931399800017,-16.179131768999923],[141.42481530000023,-16.081719658999873],[141.43116295700005,-16.061781507999882],[141.41293378999998,-16.04176197699982],[141.378754102,-15.937920830999943],[141.37769616000003,-15.929375909],[141.38379967500023,-15.917657158999843],[141.40170332099999,-15.903578382999894],[141.405528191,-15.891859632999896],[141.40650475400017,-15.851332289999887],[141.43970787899997,-15.648858330999929],[141.48707116000006,-15.478936455999872],[141.570567254,-15.287286065999906],[141.5752059250002,-15.271661065999922],[141.57764733200005,-15.236504815999966],[141.58090254000004,-15.218682549999897],[141.58920332099999,-15.205824476999963],[141.60425865999997,-15.203220309999878],[141.59799238400015,-15.182305596999912],[141.60938561300023,-15.168715101999865],[141.626800977,-15.156996351999963],[141.6390080090001,-15.141208592000012],[141.63738040500004,-15.124769790000016],[141.63257897200006,-15.106540622999942],[141.63599694100017,-15.093682549999912],[141.65894616000017,-15.093926690999949],[141.65333092500023,-15.075372002999956],[141.65691165500002,-15.055271091999911],[141.66325931100008,-15.033868096999868],[141.6657007170002,-15.011407158999956],[141.66163170700023,-14.990329684999935],[141.65406334700018,-14.971123955999886],[141.6437280610002,-14.955010674999912],[141.6315210300002,-14.942559502999897],[141.6315210300002,-14.93629322699985],[141.63721764400006,-14.927178643999952],[141.61182701900015,-14.895603122999956],[141.60425865999997,-14.877699476999908],[141.54590905000012,-14.620049737999919],[141.54281660200004,-14.555840752999984],[141.53980553500006,-14.539808851999892],[141.5261336600001,-14.503676039999961],[141.52165774800002,-14.483819268999866],[141.52320397200018,-14.440687757999939],[141.53337649800014,-14.400160414999917],[141.59205162900005,-14.245293877999956],[141.60108483200023,-14.204278252999856],[141.60425865999997,-14.161065362999949],[141.59848066500015,-14.114515882999923],[141.58399498800011,-14.076104424999912],[141.56226647200006,-14.044528903999918],[141.53541100400005,-14.017754815999908],[141.4850366550002,-13.948500257999852],[141.46778405000012,-13.865492445999863],[141.47413170700023,-13.776299737999977],[141.5270288420002,-13.571384372999916],[141.55046634200008,-13.524021091999884],[141.55583743600002,-13.500664971999967],[141.55982506600012,-13.491957289999903],[141.5898543630002,-13.454685154],[141.59961998800011,-13.438571872999859],[141.62566165500007,-13.36923593499999],[141.6315210300002,-13.346123955999857],[141.64291425900007,-13.351739190999936],[141.65414472700016,-13.353122654000018],[141.66456139400017,-13.350844007999953],[141.67310631600017,-13.346123955999857],[141.66098066499998,-13.328383070999863],[141.66456139400017,-13.314385674999896],[141.67400149800008,-13.30169036299992],[141.67937259200002,-13.287774346999939],[141.68132571700008,-13.27922942499984],[141.69076582099999,-13.25986093499999],[141.69361412900003,-13.250583591999956],[141.69336998800011,-13.241306247999987],[141.6881616550002,-13.229424737999864],[141.686778191,-13.21949635199995],[141.6850692070001,-13.215264580999843],[141.68100019600016,-13.209567966999856],[141.67546634200002,-13.20427825299997],[141.66244550900015,-13.199802341999913],[141.65853925900015,-13.194105726999837],[141.65552819100006,-13.18726979],[141.65211022200006,-13.181573174999839],[141.64332116000014,-13.171563408999944],[141.63599694100017,-13.160088799999983],[141.62468509200016,-13.133884372999873],[141.62061608200023,-13.118584893999909],[141.61573326900017,-13.049004815999908],[141.60425865999997,-13.006605726999922],[141.60092207099999,-13.00351327899993],[141.5940047540001,-13.000176690999908],[141.58692467500012,-12.994886976999922],[141.58375084700006,-12.985772393999852],[141.58545983200005,-12.977471612999949],[141.60547936300023,-12.943454684999935],[141.61744225400017,-12.928155205999971],[141.6276961600001,-12.910902601999965],[141.6315210300002,-12.893649997999958],[141.64454186300011,-12.907972914999945],[141.66138756600012,-12.899021092],[141.67969811300014,-12.882256768999978],[141.71607506600006,-12.863946221999925],[141.7374780610002,-12.84246184699991],[141.75473066499998,-12.81845468499995],[141.761973504,-12.801202080999943],[141.765391472,-12.78541432099982],[141.78923587300017,-12.722914320999875],[141.79542076900006,-12.69353606599988],[141.80128014400012,-12.677992445999875],[141.80974368600008,-12.667657158999958],[141.82007897200018,-12.666436455999943],[141.82203209699998,-12.677992445999875],[141.81714928500006,-12.701836846999939],[141.8232528000002,-12.701836846999939],[141.83594811300011,-12.679457289999931],[141.85336347700016,-12.684747003],[141.86890709700018,-12.700372002999984],[141.882090691,-12.718031507999894],[141.89283287900005,-12.777520440999934],[141.8921004570001,-12.82146575299987],[141.89405358200023,-12.843357028999904],[141.90211022200018,-12.852715752999842],[141.91130618600008,-12.859958591999956],[141.938731316,-12.908461195999934],[141.93799889400003,-12.890883070999903],[141.93921959700012,-12.869317315999893],[141.93799889400003,-12.847426039999945],[141.9213973320002,-12.812432549999954],[141.91391035200016,-12.770603123000015],[141.90528405000023,-12.757094007999868],[141.98902428500017,-12.730238539999972],[142.00831139400012,-12.71493905999992],[141.98226972700004,-12.716729425],[141.9526473320001,-12.71502044099999],[141.9253035820001,-12.710056247999859],[141.90528405000023,-12.701836846999939],[141.89144941500015,-12.682875257999937],[141.88152103000007,-12.672295830999971],[141.83179772200006,-12.657810154000018],[141.8232528000002,-12.654066664999988],[141.83692467500006,-12.640069268999852],[141.87419681100008,-12.620049737999963],[141.89763431100002,-12.60344817499991],[141.91895592500006,-12.596449476999851],[141.92945397200003,-12.588555596999953],[141.93799889400003,-12.584649346999965],[141.95045006600012,-12.583754164999972],[141.9741317070001,-12.585137627999956],[141.94703209700015,-12.575290623000015],[141.93091881599997,-12.565606377999883],[141.91773522200018,-12.565687757999868],[141.8990991550002,-12.585137627999956],[141.88550866000006,-12.578871351999823],[141.87029056100008,-12.579685153999918],[141.83757571700014,-12.585137627999956],[141.81137128999998,-12.584079684999907],[141.79761803500017,-12.580010674999855],[141.78296959700003,-12.571465752999828],[141.77173912900017,-12.560153903999847],[141.75782311300006,-12.535577080999829],[141.7482202480002,-12.523695570999877],[141.73633873800023,-12.516045830999857],[141.69361412900003,-12.503187757999825],[141.73422285200004,-12.475518487999835],[141.75114993600002,-12.461114190999865],[141.7448022800002,-12.45476653399983],[141.69996178500017,-12.457696221999853],[141.6837671230002,-12.45427825299984],[141.6657007170002,-12.441094658999887],[141.66407311300006,-12.44548919099988],[141.6635848320001,-12.446221612999821],[141.66236412900017,-12.446058851999851],[141.65894616000017,-12.447930596999825],[141.660899285,-12.465915622999859],[141.65894616000017,-12.527113539999888],[141.6635848320001,-12.528252862999835],[141.68685957099999,-12.52906666499993],[141.69662519600004,-12.533949476999807],[141.69996178500017,-12.544366143999895],[141.68873131600017,-12.54680754999984],[141.6657007170002,-12.54420338299984],[141.62183678500006,-12.56210702899989],[141.59994550900004,-12.561944268999838],[141.59058678500017,-12.540785414999915],[141.59473717500012,-12.52605559699984],[141.69361412900003,-12.311455987999892],[141.70826256600006,-12.24830494599982],[141.71713300899998,-12.232842705999886],[141.73243248800023,-12.229180596999838],[141.77076256600017,-12.243259372999873],[141.78923587300017,-12.242608330999829],[141.79908287900005,-12.23894622199988],[141.80974368600008,-12.236260674999897],[141.79957116,-12.231215101999865],[141.79232832099996,-12.223809502999885],[141.78874759200014,-12.213799737999892],[141.78923587300017,-12.201592705999827],[141.78296959700003,-12.201592705999827],[141.77930748800011,-12.208103122999916],[141.77344811300017,-12.215997002999883],[141.76628665500002,-12.220961195999848],[141.758555535,-12.218926690999822],[141.7534285820001,-12.208103122999916],[141.75513756600012,-12.195000908999845],[141.76612389400023,-12.153415622999873],[141.784922722,-12.1156552059999],[141.80103600400017,-12.055108330999829],[141.8312280610002,-12.005954684999892],[141.871348504,-11.96624114399988],[141.91334069100017,-11.954522393999895],[141.90308678500017,-11.97535572699988],[141.89820397200018,-11.990980726999865],[141.8989363940001,-12.007419528999861],[141.91635175899998,-12.066094658999873],[141.919688347,-12.085544528999876],[141.919606967,-12.106052341999842],[141.9521590500001,-12.046075127999913],[141.96387780000006,-12.037774346999838],[141.97575931100002,-12.041436455999886],[142.02198326900023,-12.071872653999845],[142.03296959700012,-12.04119231599985],[142.03003991000017,-12.028578382999868],[142.01172936300011,-12.02353280999992],[141.99708092500012,-11.994317315999893],[141.99154707099999,-11.985935153999918],[141.97925866000006,-11.97877369599989],[141.969004754,-11.9782854149999],[141.96029707100004,-11.979099216999913],[141.95297285200002,-11.975681247999901],[141.94418379000015,-11.944105726999823],[141.94760175900012,-11.896172783999901],[141.96729576900012,-11.811211846999866],[142.010020379,-11.75798919099988],[142.01172936300011,-11.746026299999855],[142.00660241,-11.729261976999837],[142.01050866,-11.705173434999907],[142.13184655000012,-11.338148695999847],[142.13412519599999,-11.315606377999854],[142.13184655000012,-11.259698174999897],[142.13347415500004,-11.2367489559999],[142.13819420700023,-11.220961195999863],[142.15235436300006,-11.187432549999825],[142.15935306100008,-11.151136976999823],[142.15805097700013,-11.066664320999875],[142.14535566499998,-10.983086846999825],[142.15105228000007,-10.950616143999838],[142.17457116000006,-10.930108330999872],[142.22120201900023,-10.919854424999855],[142.22803795700017,-10.927341403999904],[142.239024285,-10.91773853999993],[142.257660352,-10.911228122999844],[142.27955162900005,-10.907403252999828],[142.2999780610002,-10.906182549999912],[142.3234155610002,-10.901625257999868],[142.34034264400006,-10.890232028999904],[142.36451256600014,-10.858493747999844],[142.40113366,-10.820407809999864],[142.40609785200013,-10.806898695999891],[142.4089461600001,-10.791761976999894],[142.4249780610002,-10.745049737999892],[142.43409264400003,-10.728122653999916],[142.44857832100004,-10.714532158999859],[142.46322675900004,-10.711195570999834],[142.50513756600006,-10.71502044099985],[142.51059004000015,-10.711846612999878],[142.5268660820001,-10.697686455999857],[142.532481316,-10.694512627999899],[142.53532962300002,-10.69345468499985],[142.5372827480002,-10.691094658999887],[142.5402938160001,-10.68873463299984],[142.54615319100006,-10.68767669099988],[142.55005944100006,-10.690199476999808],[142.54957116000006,-10.696384372999859],[142.54835045700023,-10.703220309999878],[142.54957116000006,-10.70818450299984]]],[[[142.28305097700004,-10.714532158999859],[142.28003991000006,-10.71892669099985],[142.2734481130002,-10.718357028999874],[142.26343834700018,-10.716241143999866],[142.25294030000012,-10.717217705999843],[142.23031660200004,-10.726006768999909],[142.2177840500002,-10.728122653999916],[142.20606530000023,-10.733086846999868],[142.1967879570001,-10.744724216999868],[142.19027753999998,-10.758477471999896],[142.18702233200023,-10.769626559999907],[142.15316816499998,-10.75562916499986],[142.14551842500023,-10.749200127999842],[142.13656660200004,-10.730645440999837],[142.12191816500004,-10.709567966999913],[142.11231530000023,-10.684340101999851],[142.11817467500003,-10.653497002999885],[142.12077884200008,-10.64788176899988],[142.12354576900023,-10.643649997999873],[142.12777754000012,-10.640801690999837],[142.1457625660001,-10.639092705999829],[142.14966881600012,-10.636488539999915],[142.15235436300006,-10.632012627999856],[142.15967858200005,-10.62566497199984],[142.17701256600014,-10.616306247999887],[142.18018639400023,-10.615411065999893],[142.18230228000007,-10.60995859199987],[142.19320722700004,-10.591485283999845],[142.21225019600004,-10.597588799999826],[142.22934004000015,-10.619805596999882],[142.2553817070002,-10.66668059699984],[142.2788192070001,-10.690524997999916],[142.28256269600004,-10.701348565999822],[142.28305097700004,-10.714532158999859]]],[[[142.30307050899998,-10.632500908999845],[142.27442467500012,-10.640801690999837],[142.253672722,-10.625420830999886],[142.24732506600012,-10.599786065999822],[142.26221764400023,-10.577813408999901],[142.29428144600004,-10.573174737999878],[142.31885826900023,-10.588636976999808],[142.32520592500006,-10.612399997999901],[142.30307050899998,-10.632500908999845]]],[[[142.31666100400003,-10.213474216999913],[142.28980553500017,-10.2601864559999],[142.27572675900004,-10.25562916499986],[142.26368248800011,-10.246514580999872],[142.2485457690001,-10.240329684999907],[142.23365319100006,-10.238376559999864],[142.22120201900023,-10.242120049999883],[142.2106225920002,-10.232110283999901],[142.20118248800006,-10.22039153399983],[142.1948348320002,-10.207289320999848],[142.19320722700004,-10.19361744599982],[142.20386803500006,-10.188409112999821],[142.21111087300008,-10.183038018999866],[142.21436608200023,-10.176527601999865],[142.21322675899998,-10.157647393999838],[142.21436608200023,-10.153252862999864],[142.231700066,-10.141859632999896],[142.25416100399997,-10.137953382999811],[142.29346764400012,-10.138929945999877],[142.31446373800017,-10.148614190999837],[142.33204186300011,-10.16969166499986],[142.34050540500002,-10.190850518999852],[142.33423912900017,-10.20045338299984],[142.31666100400003,-10.213474216999913]]],[[[142.16700280000006,-10.182061455999886],[142.15479576900012,-10.188083591999899],[142.14291425900015,-10.185642184999864],[142.13868248800023,-10.172539971999896],[142.12468509200008,-10.158298434999892],[142.10987389400012,-10.147556247999873],[142.0991317070001,-10.135674737999835],[142.0970158210001,-10.11858489399988],[142.14210045700023,-10.050388278999861],[142.1572371750002,-10.05299244599986],[142.16960696700008,-10.060153903999904],[142.19011478000002,-10.080987237999878],[142.19752037900005,-10.092461846999825],[142.19776451900017,-10.102146091999884],[142.19011478000002,-10.143731377999854],[142.18295332099999,-10.153252862999864],[142.1759546230002,-10.160821221999896],[142.16700280000006,-10.182061455999886]]],[[[142.7710067070001,-9.373711846999868],[142.78256269600004,-9.386325778999847],[142.76807701900006,-9.398207289999887],[142.75228925900004,-9.408379815999837],[142.741953972,-9.41920338299984],[142.7317814460001,-9.424899997999916],[142.71387780000012,-9.42864348799985],[142.64161217500023,-9.428399346999896],[142.62859134200008,-9.424981377999899],[142.61215254000015,-9.41627369599982],[142.6012475920002,-9.399509372999887],[142.61231530000012,-9.383233330999857],[142.637461785,-9.373955987999906],[142.66480553500017,-9.374281507999838],[142.693614129,-9.379571221999896],[142.71949303500006,-9.377618096999852],[142.7545679050002,-9.369805596999868],[142.7710067070001,-9.373711846999868]]],[[[142.26059004000004,-9.290215752999885],[142.2221785820001,-9.291110934999878],[142.1808374360002,-9.284763278999847],[142.15088951900012,-9.271416924999839],[142.16423587300014,-9.250746351999823],[142.20687910200016,-9.240166924999869],[142.28012129000004,-9.261651299999897],[142.28419030000018,-9.277520440999822],[142.27914472700004,-9.287041924999826],[142.26059004000004,-9.290215752999885]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"New Zealand","sov_a3":"NZ1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Cook Islands","adm0_a3":"COK","geou_dif":0,"geounit":"Cook Islands","gu_a3":"COK","su_dif":0,"subunit":"Cook Islands","su_a3":"COK","brk_diff":0,"name":"Cook Is.","name_long":"Cook Islands","brk_a3":"COK","brk_name":"Cook Is.","brk_group":null,"abbrev":"Cook Is.","postal":"CK","formal_en":null,"formal_fr":null,"note_adm0":"Assoc. with N.Z.","note_brk":null,"name_sort":"Cook Islands","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":11870,"gdp_md_est":183.2,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"CW","iso_a2":"CK","iso_a3":"COK","iso_n3":"184","un_a3":"184","wb_a2":"-99","wb_a3":"-99","woe_id":23424795,"woe_id_eh":23424795,"woe_note":"Exact WOE match as country","adm0_a3_is":"COK","adm0_a3_us":"COK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":8,"long_len":12,"abbrev_len":8,"tiny":3,"homepart":-99,"filename":"COK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-157.9151098299999,-21.937676690999865],[-157.9277237619999,-21.93889739399988],[-157.94245357999995,-21.93718840899996],[-157.95287024599992,-21.932305597],[-157.96104895699995,-21.92392343500002],[-157.96869869699987,-21.912286065999933],[-157.96406002499992,-21.900485934999963],[-157.9551488919999,-21.888848565999865],[-157.94444739499988,-21.880466403999904],[-157.93455969999985,-21.877536716999884],[-157.92133541599992,-21.882256768999977],[-157.91034908799986,-21.8916968729999],[-157.88988196499992,-21.91529713299994],[-157.88707434799986,-21.92636484199988],[-157.8985082669999,-21.933689059999978],[-157.9151098299999,-21.937676690999865]]],[[[-159.73603268099995,-21.236993097],[-159.73786373599995,-21.246270440999965],[-159.74323482999986,-21.254327080999985],[-159.7708634109999,-21.25017669099995],[-159.77428137899992,-21.250909112999977],[-159.7932836579999,-21.241631768999852],[-159.8330785799999,-21.24456145599987],[-159.84626217399995,-21.233819268999937],[-159.83881588399987,-21.22633228999989],[-159.83283443899995,-21.207614841999913],[-159.83141028599988,-21.195570570999905],[-159.82343502499992,-21.18906015399999],[-159.79784094999985,-21.18613046699997],[-159.7784317699999,-21.18694426899998],[-159.75841223899988,-21.19182708099987],[-159.7427465489999,-21.201592706],[-159.7363988919999,-21.216729425],[-159.73603268099995,-21.236993097]]],[[[-157.31798255099986,-20.171807549999926],[-157.3285619779999,-20.179131768999838],[-157.3403214179999,-20.17571379999991],[-157.3493546209999,-20.16073984199997],[-157.34898841099985,-20.143324476999908],[-157.3385717439999,-20.137383721999896],[-157.32441158799986,-20.141696872999983],[-157.31281490799995,-20.155205987999963],[-157.31798255099986,-20.171807549999926]]],[[[-158.08177649599992,-20.012790623000015],[-158.0965470039999,-20.019707940999837],[-158.11510169199988,-20.015720309999935],[-158.12995357999995,-20.000746351999823],[-158.13520260299993,-19.976495049999922],[-158.12031002499987,-19.97283294099988],[-158.0973608059999,-19.981540622999944],[-158.07831783799992,-19.994235934999917],[-158.08177649599992,-20.012790623000015]]],[[[-158.27330481699988,-19.826267184999892],[-158.2682999339999,-19.832614842000012],[-158.2810766269999,-19.82195403399997],[-158.27635657499985,-19.82350025799984],[-158.27330481699988,-19.826267184999892]]],[[[-158.29377193899995,-19.816582940999922],[-158.29735266799992,-19.81731536299995],[-158.2959692049999,-19.814548434999907],[-158.28766842399995,-19.810642184999907],[-158.29377193899995,-19.816582940999922]]],[[[-157.70824133999994,-19.841241143999838],[-157.72166907499994,-19.85588958099984],[-157.72166907499994,-19.8422177059999],[-157.72687740799992,-19.83228932099989],[-157.73371334499996,-19.825941664999874],[-157.73961341099988,-19.81845468499999],[-157.7421361969999,-19.804620049999983],[-157.73753821499986,-19.796563408999873],[-157.71556555899994,-19.773207289999874],[-157.7079971999999,-19.767185153999957],[-157.7099503249999,-19.788344007999953],[-157.70722408799986,-19.81585051899999],[-157.70824133999994,-19.841241143999838]]],[[[-158.93797766799992,-19.25709400799981],[-158.9321996739999,-19.264255466999856],[-158.91808020699995,-19.26116301899995],[-158.91889400899996,-19.26409270599997],[-158.92035885299993,-19.266045830999843],[-158.92516028599994,-19.2692196589999],[-158.93744869699987,-19.264255466999856],[-158.9501846999999,-19.254489841999913],[-158.9555557929999,-19.245293877999927],[-158.94566809799989,-19.24212004999987],[-158.94066321499992,-19.247328382999953],[-158.93797766799992,-19.25709400799981]]],[[[-159.77261308499988,-18.82895273199989],[-159.76199296799984,-18.837253513999954],[-159.76138261599988,-18.845391533999887],[-159.76496334499996,-18.84172942499984],[-159.7666316399999,-18.835219007999836],[-159.76968339799987,-18.834323825999846],[-159.77924557199995,-18.852878513999936],[-159.77961178299986,-18.85637786299985],[-159.77647864499988,-18.878187757999893],[-159.78286699099993,-18.887953382999925],[-159.79360917899993,-18.887465101999936],[-159.80081132699988,-18.878187757999893],[-159.80231686099992,-18.865817966999856],[-159.79788163999996,-18.84653085699992],[-159.79385331899988,-18.839939059999935],[-159.78510494699992,-18.830824476999865],[-159.77261308499988,-18.82895273199989]]],[[[-165.81403561099987,-10.889092705999872],[-165.81871497299989,-10.891534112999892],[-165.8220922519999,-10.889092705999872],[-165.82453365799995,-10.881768487999864],[-165.81586666599995,-10.880303643999895],[-165.8117569649999,-10.88014088299984],[-165.80768795499995,-10.881280205999872],[-165.81403561099987,-10.889092705999872]]],[[[-160.9799291659999,-10.380954684999864],[-160.93809973899988,-10.422784112999878],[-160.98619544199994,-10.382094007999811],[-160.9862361319999,-10.382094007999811],[-160.99433346299986,-10.374688408999901],[-160.9964086579999,-10.371514580999843],[-160.9799291659999,-10.380954684999864]]],[[[-161.07555091099988,-10.036390882999811],[-161.08726966099988,-10.044610283999901],[-161.0880020819999,-10.035088799999896],[-161.0700577459999,-10.027439059999878],[-161.07555091099988,-10.036390882999811]]],[[[-157.94074459499993,-8.98072682099982],[-157.96186275899993,-8.98072682099982],[-157.9786270819999,-8.976006768999895],[-157.9971410799999,-8.964613539999931],[-158.00829016799992,-8.952894789999945],[-158.00287838399996,-8.94670989399988],[-157.94074459499993,-8.97454192499984],[-157.94074459499993,-8.98072682099982]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Fiji","sov_a3":"FJI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Fiji","adm0_a3":"FJI","geou_dif":0,"geounit":"Fiji","gu_a3":"FJI","su_dif":0,"subunit":"Fiji","su_a3":"FJI","brk_diff":0,"name":"Fiji","name_long":"Fiji","brk_a3":"FJI","brk_name":"Fiji","brk_group":null,"abbrev":"Fiji","postal":"FJ","formal_en":"Republic of Fiji","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Fiji","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":2,"mapcolor13":2,"pop_est":944720,"gdp_md_est":3579,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"FJ","iso_a2":"FJ","iso_a3":"FJI","iso_n3":"242","un_a3":"242","wb_a2":"FJ","wb_a3":"FJI","woe_id":23424813,"woe_id_eh":23424813,"woe_note":"Exact WOE match as country","adm0_a3_is":"FJI","adm0_a3_us":"FJI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"FJI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[174.6277775400001,-21.702569268999966],[174.61589603000024,-21.711114190999893],[174.59685306100013,-21.69841887799984],[174.5888778000003,-21.68157317499984],[174.5940047540001,-21.668715101999908],[174.61410566500015,-21.66822682099992],[174.62663821700025,-21.67652760199998],[174.6311955090002,-21.68962981599995],[174.6277775400001,-21.702569268999966]]],[[[-178.71528072799993,-20.66619231599999],[-178.70811926999988,-20.671319268999834],[-178.71100826699987,-20.67180754999991],[-178.71902421799984,-20.6709937479999],[-178.71906490799992,-20.6709937479999],[-178.7272436189999,-20.66472747199994],[-178.73102779899986,-20.657647393999895],[-178.73029537699995,-20.65007903399993],[-178.72496497299989,-20.64234791499993],[-178.72423255099994,-20.650974217000012],[-178.7208145819999,-20.659274997999916],[-178.71528072799993,-20.66619231599999]]],[[[-178.22004146999993,-19.827894789999917],[-178.22679602799985,-19.840020440999904],[-178.2305395169999,-19.835219007999907],[-178.22895260299995,-19.82903411299995],[-178.2236221999999,-19.82219817499984],[-178.21613521999993,-19.81519947699995],[-178.2176000639999,-19.82187265399999],[-178.22004146999993,-19.827894789999917]]],[[[-178.4093725249999,-19.171807549999855],[-178.41881262899992,-19.17864348799995],[-178.42170162699992,-19.17620208099983],[-178.4219864569999,-19.173760674999897],[-178.41978919199985,-19.167413018999866],[-178.4011124339999,-19.13347747199982],[-178.39293372299989,-19.127536716999884],[-178.38927161399985,-19.14641692499991],[-178.39195716099994,-19.165785415000016],[-178.39960689999995,-19.17099374799993],[-178.4093725249999,-19.171807549999855]]],[[[179.79753665500016,-19.168389580999843],[179.80201256600023,-19.184258721999868],[179.77214603000013,-19.191338799999826],[179.76042728000024,-19.19231536299989],[179.74594160200022,-19.19011809699991],[179.74187259200014,-19.18621184699991],[179.74000084700012,-19.177422783999845],[179.74724368600013,-19.173923434999864],[179.7490340500003,-19.17327239399991],[179.74952233200014,-19.171482028999918],[179.75294030000018,-19.163832289999974],[179.75798587300014,-19.165704033999944],[179.7692163420002,-19.1685523419999],[179.7740991550002,-19.170668226999823],[179.76783287900022,-19.155450127999842],[179.75782311300017,-19.13990650799984],[179.75660240999994,-19.127699476999847],[179.7775171230002,-19.12281666499989],[179.78858483200017,-19.130466403999904],[179.79411868600025,-19.148044528999932],[179.79753665500016,-19.168389580999843]]],[[[-178.5596817699999,-19.118829033999987],[-178.56635494699987,-19.12086353999993],[-178.5754288399999,-19.12053801899991],[-178.58853105399984,-19.12281666499989],[-178.58857174399992,-19.12281666499989],[-178.58197994699992,-19.137302341999927],[-178.56635494699987,-19.151055596999853],[-178.54804439999992,-19.159274997999844],[-178.5333145819999,-19.15699635199988],[-178.53697669199988,-19.177178643999895],[-178.5558568999999,-19.174981377999913],[-178.5916641919999,-19.15699635199988],[-178.6003311839999,-19.14771900799991],[-178.59711666599995,-19.12851327899986],[-178.58165442599991,-19.111504815999893],[-178.55382239499988,-19.109144789999945],[-178.5596817699999,-19.118829033999987]]],[[[-178.9309789699999,-18.97136809699984],[-178.94444739499988,-18.987237237999864],[-178.9615372389999,-18.986748955999957],[-178.97215735599983,-18.965101820999877],[-178.9690649079999,-18.942640882999882],[-178.9578751289999,-18.92791106599989],[-178.94359290299988,-18.926364841999856],[-178.9312231109999,-18.94410572699985],[-178.9309789699999,-18.97136809699984]]],[[[178.3825789720001,-18.924899997999887],[178.38982181100013,-18.938164971999825],[178.42269941500012,-18.939711195999863],[178.4303491550002,-18.955254815999865],[178.43816165499996,-18.954685153999975],[178.47461998800023,-18.960625908999916],[178.48560631600012,-18.965101820999877],[178.4931746750002,-18.97820403399986],[178.4983830090002,-18.99675872199985],[178.49659264400012,-19.013278903999932],[178.47559655000018,-19.02320728999993],[178.46094811300028,-19.032647393999934],[178.45386803500008,-19.02678801899991],[178.44385826900023,-19.023858330999886],[178.42408287900022,-19.020440362999878],[178.4285587900001,-19.029392184999907],[178.42896569100012,-19.036797783999972],[178.42514082100013,-19.043064059999935],[178.41667728000021,-19.047784112999935],[178.4050399100001,-19.044528903999904],[178.3825789720001,-19.042901299999883],[178.3584090500003,-19.043715101999894],[178.34148196700014,-19.047784112999935],[178.34392337299997,-19.041110934999892],[178.34636478000013,-19.027276299999897],[178.34831790499996,-19.020440362999878],[178.3393660820001,-19.02459075299991],[178.33285566500015,-19.025648695999873],[178.32715905000018,-19.024183851999823],[178.3204858730002,-19.020440362999878],[178.3252059250003,-19.01588307099992],[178.33008873800028,-19.009535414999903],[178.33399498800017,-19.00676848799985],[178.30730228000013,-18.99716562299986],[178.2815047540001,-19.00741952899989],[178.23853600400005,-19.04094817499984],[178.2229923840001,-19.044854424999826],[178.2072860040001,-19.045098565999865],[178.19507897200012,-19.047458591999913],[178.19011478000024,-19.05771249799986],[178.19044030000018,-19.078708591999884],[178.18873131600014,-19.083591403999947],[178.1838485040001,-19.068942966999856],[178.17432701900023,-19.07586028399986],[178.1709090500003,-19.08717213299984],[178.17310631600017,-19.097751559999878],[178.18018639400015,-19.102308851999837],[178.19499759200014,-19.105564059999875],[178.1994735040001,-19.114027601999908],[178.19752037900022,-19.139336846999868],[178.1946720710001,-19.146579684999878],[178.1878361340002,-19.15325286299985],[178.17896569099992,-19.157484632999868],[178.17017662900017,-19.15699635199988],[178.16163170700017,-19.150567315999865],[178.16016686300028,-19.141859632999882],[178.16285241000017,-19.11598072699995],[178.14820397200018,-19.127536716999884],[178.1429142590001,-19.129652601999894],[178.12867272200012,-19.129652601999894],[178.11915123800026,-19.139580987999906],[178.11378014400012,-19.148370049999954],[178.1066186860002,-19.15455494599985],[178.09164472700016,-19.15699635199988],[178.07601972700016,-19.154717705999897],[178.05014082100016,-19.144952080999854],[178.03711998800028,-19.142754815999865],[178.01539147200012,-19.155938408999916],[178.00367272200023,-19.157484632999868],[177.99887128999993,-19.142754815999865],[177.9920353520001,-19.142754815999865],[177.98414147200012,-19.147067966999956],[177.97396894600007,-19.14478932099989],[177.96265709700018,-19.138116143999852],[177.95118248800017,-19.129652601999894],[177.9814559250002,-19.10125090899996],[177.99952233200017,-19.09482187299986],[178.01937910200016,-19.102308851999837],[178.0297957690002,-19.09384530999989],[178.0334578790002,-19.07203541499993],[178.04118899800014,-19.061455987999878],[178.05176842500018,-19.056735934999878],[178.0632430350001,-19.056410414999945],[178.11947675899992,-19.07040781],[178.12867272200012,-19.068942966999856],[178.13493899800025,-19.061455987999878],[178.13648522200006,-19.05169036299985],[178.13941491000017,-19.041924737999906],[178.1497501960002,-19.03411223799982],[178.1632593110002,-19.044040622999916],[178.17212975400022,-19.035332940999837],[178.1764429050001,-19.017347914999974],[178.1764429050001,-18.999281507999868],[178.19068444100023,-18.977227471999882],[178.22608483200017,-18.96412525799981],[178.26587975399994,-18.962090752999885],[178.29371178500017,-18.972588799999855],[178.30193118600016,-18.944024346999868],[178.30884850400017,-18.939548434999978],[178.3240666020001,-18.938571873],[178.32862389399997,-18.936293226999936],[178.33220462300025,-18.931735934999907],[178.3367619150002,-18.927015882999896],[178.34498131600023,-18.924899997999887],[178.35499108200028,-18.926690362999878],[178.36345462300025,-18.929782809999864],[178.3719181650001,-18.93035247199982],[178.3825789720001,-18.924899997999887]]],[[[-179.81269283799995,-18.927341403999918],[-179.78718014199995,-18.95533619599985],[-179.8082169259999,-18.986423434999935],[-179.81676184799989,-18.952243747999944],[-179.83775794199994,-18.948825778999847],[-179.8552139959999,-18.963148695999834],[-179.85289466099994,-18.982598565999922],[-179.8443497389999,-19.002129815999822],[-179.85826575399986,-19.005954685],[-179.87193762899994,-18.99374765399986],[-179.8630671869999,-18.965834242999904],[-179.8628637359999,-18.965101820999877],[-179.84968014199987,-18.923435154],[-179.81269283799995,-18.927341403999918]]],[[[178.53760826900017,-18.90048593499993],[178.5339461600001,-18.9105770809999],[178.5205184250003,-18.906182549999826],[178.51368248800017,-18.915948174999855],[178.50831139400023,-18.92644622199984],[178.4992781910002,-18.924899997999887],[178.47193444099995,-18.907159112999892],[178.47413170700023,-18.89527760199985],[178.48340905000018,-18.88030364399991],[178.48560631600012,-18.87314218499995],[178.49586022200012,-18.862969658999916],[178.51636803500006,-18.857354424999826],[178.53158613400004,-18.860446872999898],[178.52654056100013,-18.876560153999876],[178.53484134200005,-18.884535414999917],[178.5382593110002,-18.89226653399984],[178.53760826900017,-18.90048593499993]]],[[[-178.91486568899992,-18.88404713299984],[-178.9225968089999,-18.884372653999858],[-178.93061275899987,-18.882094007999896],[-178.91950436099995,-18.87265390399996],[-178.9072973299999,-18.86402760199988],[-178.89399166599995,-18.857598565999865],[-178.8798721999999,-18.854261976999922],[-178.8838598299999,-18.860772393999838],[-178.8885391919999,-18.866794528999932],[-178.89378821499992,-18.872247002999956],[-178.89964758999994,-18.87712981599985],[-178.9072159499999,-18.881524346999825],[-178.91486568899992,-18.88404713299984]]],[[[-178.49030514199987,-18.660739842],[-178.49811764199995,-18.66594817499991],[-178.50711015499988,-18.66521575299988],[-178.50715084499987,-18.66521575299988],[-178.51630611899995,-18.649997653999904],[-178.51109778599988,-18.637953382999896],[-178.49921627499992,-18.633721612999878],[-178.48798580599993,-18.64137135199989],[-178.48607337099995,-18.651788018999895],[-178.49030514199987,-18.660739842]]],[[[179.89183103800028,-18.609643829999854],[179.89884032499995,-18.617466326999875],[179.91277848200008,-18.61146575099987],[179.91744375400012,-18.611500797999938],[179.92101882000017,-18.622642640999885],[179.90186897000018,-18.638146868999822],[179.90079132900027,-18.658595160999923],[179.88275399200026,-18.662524017999928],[179.8722136110001,-18.645926431999936],[179.87156596200023,-18.628824151999837],[179.8605027330003,-18.621030159999876],[179.8529336610002,-18.611049101999868],[179.83307367100028,-18.60024941399989],[179.83066570000022,-18.589302244999885],[179.8504461640002,-18.580904285999935],[179.8881886990001,-18.566928499999804],[179.92767067500014,-18.55798853599988],[179.94342659400021,-18.556345549999918],[179.9481167530002,-18.5635022399999],[179.95240319100012,-18.56853606599986],[179.94470018099994,-18.580617084999886],[179.92078669900022,-18.586044316999875],[179.90977047300018,-18.595909350999875],[179.89183103800028,-18.609643829999854]]],[[[177.65626061300028,-18.5407040339999],[177.6630965500002,-18.588474216999842],[177.64877363400015,-18.579278252999956],[177.63648522200018,-18.562758070999806],[177.62696373800017,-18.543715101999894],[177.62159264400023,-18.52703215899986],[177.61898847700016,-18.51189544099995],[177.6207788420002,-18.50408294099988],[177.6351017590002,-18.48601653399986],[177.63843834700023,-18.48967864399991],[177.64177493599996,-18.49098072699981],[177.64503014399997,-18.491631768999852],[177.64877363400015,-18.492852471999868],[177.65406334700023,-18.50408294099988],[177.65593509200008,-18.517022393999877],[177.65626061300028,-18.5407040339999]]],[[[178.1423445970002,-18.411879164999903],[178.12696373800028,-18.415459893999966],[178.1087345710002,-18.403497002999856],[178.118174675,-18.40154387799998],[178.12183678500017,-18.399183851999936],[178.12086022200012,-18.395684502999856],[178.11622155000018,-18.389825127999913],[178.12037194100012,-18.38494231599985],[178.12142988400012,-18.380466403999876],[178.12159264400026,-18.375420830999857],[178.12232506600017,-18.369317315999865],[178.12761478000013,-18.351657809999935],[178.13892662900022,-18.348728122999916],[178.15007571700025,-18.357842705999914],[178.15601647200015,-18.376153252999885],[178.15259850400017,-18.39739348799995],[178.1423445970002,-18.411879164999903]]],[[[-178.76329505099986,-18.24586353999993],[-178.7974340489999,-18.24586353999993],[-178.80658932199987,-18.243747653999918],[-178.81419837099992,-18.23894622199984],[-178.82026119699992,-18.234307549999897],[-178.82477779899986,-18.232110283999916],[-178.8454076809999,-18.217380466999913],[-178.82489986899992,-18.189141533999944],[-178.78978430899986,-18.172133070999806],[-178.7667130199999,-18.19117603999989],[-178.7667130199999,-18.19125741999987],[-178.74913489499988,-18.203220309999892],[-178.7456762359999,-18.22161223799985],[-178.75182044199985,-18.23845794099985],[-178.76329505099986,-18.24586353999993]]],[[[-179.02786549399988,-18.003014069],[-179.0462154029999,-18.007515361000017],[-179.05912213799988,-18.000656670999902],[-179.06933576699987,-17.98931881099999],[-179.07870402999987,-17.966642212999986],[-179.0595113709999,-17.952518247999862],[-179.05029393899983,-17.955952364999874],[-179.03183052299985,-17.966328505999883],[-179.0279689729999,-17.9898996079999],[-179.02786549399988,-18.003014069]]],[[[179.3125106130002,-17.947442315999893],[179.3367619150002,-17.989353122999987],[179.34546959700018,-17.998793226999823],[179.3608504570002,-18.025974217],[179.36296634200025,-18.07976653399987],[179.3502710300002,-18.11882903399983],[179.32097415500024,-18.101820570999863],[179.3108830090002,-18.0897763],[179.30323326900017,-18.062188408999845],[179.29737389400023,-18.050388278999876],[179.27833092500026,-18.02760182099985],[179.27173912900022,-18.015720309999892],[179.2669376960001,-17.998793226999823],[179.26303144600016,-18.009535415],[179.2657983730002,-18.029880466999913],[179.26295006600017,-18.036716403999932],[179.25407962300014,-18.039157809999864],[179.24952233200028,-18.032159112999892],[179.24537194100017,-18.0035946589999],[179.24642988400018,-17.974867445999934],[179.24439537900017,-17.970147393999937],[179.2351180350001,-17.954685153999918],[179.2327580090001,-17.94475676899999],[179.24341881600012,-17.95094166499989],[179.2503361340001,-17.951267184999907],[179.27214603000021,-17.934502862999892],[179.27751712300014,-17.9340145809999],[179.28394616000008,-17.93629322699988],[179.29737389400023,-17.937920830999897],[179.3125106130002,-17.947442315999893]]],[[[-178.27122962099986,-17.961683851999975],[-178.29828854099992,-17.963311456],[-178.32103430899994,-17.958428643999937],[-178.3522843089999,-17.945733330999968],[-178.3577774729999,-17.914320570999863],[-178.33788001199994,-17.886000257999825],[-178.29316158799986,-17.88274504999987],[-178.2810766269999,-17.888767184999875],[-178.26292883999986,-17.901299737999878],[-178.24640865799992,-17.917575778999904],[-178.2391251289999,-17.934258721999853],[-178.2486466139999,-17.952569268999905],[-178.27122962099986,-17.961683851999975]]],[[[179.43083743600013,-17.84107838299991],[179.42261803499994,-17.850518487999835],[179.41684004000015,-17.845472914999974],[179.41041100400005,-17.82805754999991],[179.40267988400004,-17.81861744599982],[179.39503014400023,-17.80641041499993],[179.3917749360002,-17.79306405999992],[179.3967391290001,-17.780368747999944],[179.41374759200008,-17.78899504999987],[179.43083743600013,-17.794040622999987],[179.43083743600013,-17.798516533999944],[179.42945397200023,-17.8013648419999],[179.42408287900014,-17.807061455999886],[179.42725670700023,-17.81365325299994],[179.4305119150001,-17.82293059699991],[179.4323022800002,-17.832777601999833],[179.43083743600013,-17.84107838299991]]],[[[-179.28075110599994,-17.76018645599993],[-179.2964574859999,-17.774183851999894],[-179.32258053299986,-17.77019622199991],[-179.33613033799992,-17.758477471999925],[-179.33421790299988,-17.740004164999903],[-179.32030188699989,-17.724867445999905],[-179.29808508999992,-17.723239841999884],[-179.27973385299987,-17.739434502999842],[-179.28075110599994,-17.76018645599993]]],[[[178.77955162900017,-17.766045830999957],[178.77711022200023,-17.773207289999917],[178.77564537900005,-17.776462497999955],[178.77271569099995,-17.780368747999944],[178.76587975400022,-17.772881768999895],[178.75912519600013,-17.777520440999908],[178.75261478000004,-17.776136976999936],[178.74781334700012,-17.76995208099987],[178.73468542800023,-17.76756600599998],[178.71945461400017,-17.729840682999978],[178.71318927000013,-17.710978441999927],[178.72576191700009,-17.724709990000022],[178.7419149570002,-17.74958410599993],[178.76270592500023,-17.761976820999905],[178.77955162900017,-17.766045830999957]]],[[[178.78511382500014,-17.74022147299985],[178.768077019,-17.74716562299993],[178.75818956700013,-17.72991603299999],[178.75261478000004,-17.71298593499995],[178.7393547290001,-17.673330455999857],[178.7510938830001,-17.643363147999878],[178.77637780000018,-17.628838799999926],[178.78261733300016,-17.622901233999897],[178.7978866740003,-17.618605407999905],[178.81675767200005,-17.62895136899999],[178.82571818699992,-17.652098361000014],[178.83018832900015,-17.665774287999938],[178.8319634709999,-17.679450255999953],[178.83554366700022,-17.693159091999846],[178.83282862500013,-17.707721612999848],[178.8292177980002,-17.718855850999972],[178.82290917300023,-17.72913008899998],[178.79771376400018,-17.735953935999973],[178.78511382500014,-17.74022147299985]]],[[[179.0407820970001,-17.656182549999897],[179.03337649800014,-17.656182549999897],[179.02898196700025,-17.644301039999945],[179.02320397200006,-17.63543059699998],[179.01563561300026,-17.628187757999882],[179.00538170700028,-17.621351820999863],[178.9974064460002,-17.608005466999856],[178.9985457690003,-17.597100518999966],[179.00684655000023,-17.593194268999877],[179.0197046230002,-17.600844007999896],[179.0260522800002,-17.610609632999854],[179.03809655000023,-17.64202239399988],[179.0407820970001,-17.656182549999897]]],[[[-179.13707434799989,-17.468926690999922],[-179.15660559799986,-17.471368096999953],[-179.17280025899993,-17.457940362999878],[-179.1754858059999,-17.439711195999976],[-179.1660050119999,-17.425551039999874],[-179.14557857999992,-17.424248955999957],[-179.13471432199992,-17.435316665],[-179.13080807199995,-17.45370859199994],[-179.13707434799989,-17.468926690999922]]],[[[178.27271569100023,-17.35173919099995],[178.27556399800008,-17.363702080999882],[178.28646894600016,-17.38372161299995],[178.2863061860002,-17.39666106599986],[178.27955162900005,-17.407403252999956],[178.25440514400017,-17.431817315999922],[178.24537194100017,-17.443942966999913],[178.2560327480002,-17.4496395809999],[178.25806725399994,-17.45745208099997],[178.25375410200016,-17.465508721999925],[178.24537194100017,-17.47128671699997],[178.2586369150001,-17.468926690999922],[178.28598066500012,-17.438083591999956],[178.30372155000018,-17.430271091999884],[178.32748457100016,-17.4327938779999],[178.34831790499996,-17.44011809699998],[178.3645939460001,-17.45289479000003],[178.37574303500023,-17.47128671699997],[178.37720787900005,-17.47975025799984],[178.37427819099995,-17.491387627999842],[178.37574303500023,-17.4984677059999],[178.37940514400023,-17.500258070999973],[178.3974715500003,-17.515313408999898],[178.39991295700023,-17.518975518999937],[178.40357506600006,-17.522393487999864],[178.44548587300022,-17.549899997999987],[178.45557701900012,-17.551202080999982],[178.46607506600017,-17.550957940999936],[178.47877037900017,-17.553155205999925],[178.49626712300014,-17.565118096999967],[178.52295983200023,-17.600844007999896],[178.53028405000012,-17.608330987999878],[178.55193118600013,-17.61077239399991],[178.57300866000023,-17.617933851999936],[178.59083092500023,-17.630954684999935],[178.60230553500017,-17.649997654000018],[178.60328209699995,-17.67457447699985],[178.59294681100013,-17.693454684999878],[178.580577019,-17.710056247999926],[178.57422936300028,-17.72820403399993],[178.57252037900005,-17.737725518999838],[178.5693465500003,-17.746514580999985],[178.5677189460001,-17.754978122999926],[178.57113691500018,-17.76262786299995],[178.57894941500015,-17.769219658999845],[178.59750410200016,-17.781833592],[178.60230553500017,-17.786553643999834],[178.603037957,-17.79843515399996],[178.59961998800028,-17.80934010199995],[178.59888756600006,-17.819431247999916],[178.60840905000023,-17.82805754999991],[178.62061608200023,-17.823500257999882],[178.62720787900022,-17.826836847],[178.62631269599993,-17.834079685],[178.61589603000013,-17.84107838299991],[178.62794030000012,-17.845798435],[178.63502037900022,-17.853448174999855],[178.63599694100017,-17.863702080999957],[178.62956790500021,-17.875909112999935],[178.62582441500015,-17.87363046699997],[178.61589603000013,-17.86907317499984],[178.61793053500017,-17.873793226999936],[178.62273196700025,-17.890232028999932],[178.59107506600006,-17.897556248000015],[178.5948999360002,-17.926039320999934],[178.61312910200016,-17.956963799999983],[178.62614993599993,-17.971449476999936],[178.6457625660002,-17.973239842000012],[178.6543074880002,-17.97844817499999],[178.659678582,-17.98699309699994],[178.670420769,-17.998793226999823],[178.67416425900015,-18.004327080999925],[178.67457116000017,-18.00872161299999],[178.67701256600017,-18.011407158999972],[178.6876733730002,-18.012383721999868],[178.69385826900017,-18.009942315999837],[178.69922936300014,-18.003838799999937],[178.7032983730002,-17.997002862999835],[178.7053328789999,-17.991957289999974],[178.71143639400023,-17.991957289999974],[178.70899498800014,-17.999200127999913],[178.700694207,-18.012872002999856],[178.69841556100013,-18.01930103999996],[178.6979272800001,-18.033786716999913],[178.69841556100013,-18.04314544099985],[178.69450931100025,-18.056898695999948],[178.68458092500012,-18.070407809999935],[178.67310631600012,-18.08147551899988],[178.66358483200025,-18.088148695999916],[178.6129663420002,-18.112399997999916],[178.58863366000023,-18.136000257999854],[178.58863366000023,-18.115492445999806],[178.55974368600013,-18.127048435],[178.54761803500023,-18.129082940999865],[178.5593367850001,-18.11272551899985],[178.56055748800011,-18.108656507999967],[178.5550236340002,-18.099216403999876],[178.55079186300028,-18.097751559999907],[178.54566491000014,-18.097263278999918],[178.5369572270001,-18.09124114399982],[178.52711022200006,-18.090020440999975],[178.4983830090002,-18.10442473799995],[178.48560631600012,-18.108656507999967],[178.48780358200017,-18.129082940999865],[178.47022545700017,-18.14185963299981],[178.44841556100016,-18.147556247999887],[178.43775475400017,-18.146579684999907],[178.4388126960001,-18.13160572699988],[178.43995201900017,-18.12607187299986],[178.43816165499996,-18.122979424999954],[178.42164147200012,-18.10800546699984],[178.41309655000023,-18.103448174999883],[178.40308678500008,-18.101332289999874],[178.38990319100012,-18.101820570999863],[178.392588738,-18.106215101999936],[178.39340254000018,-18.10662200299994],[178.39616946700025,-18.108656507999967],[178.3912866550002,-18.118096612999892],[178.38575280000015,-18.123793226999965],[178.37842858200028,-18.12721119599989],[178.36890709700015,-18.129082940999865],[178.3693953790001,-18.12664153399983],[178.36605879000015,-18.122002862999977],[178.36085045700023,-18.11744557099985],[178.3552352220002,-18.115492445999806],[178.3483992849999,-18.116875908999887],[178.336436394,-18.12127044099995],[178.3309025400001,-18.122247002999927],[178.32292728000013,-18.12558359199987],[178.3169051440003,-18.132907809999878],[178.30933678500017,-18.14023202899996],[178.29688561300023,-18.143487237999835],[178.2841903000003,-18.144138278999876],[178.27702884200014,-18.14625416499989],[178.27182050900007,-18.15032317499984],[178.26587975399994,-18.156426690999837],[178.26189212300014,-18.162774346999868],[178.2566024100001,-18.17766692499991],[178.25220787900017,-18.18377044099989],[178.2435001960001,-18.188653252999956],[178.22291100400008,-18.196058851999865],[178.21420332100018,-18.201104424999883],[178.18539472700004,-18.23381926899991],[178.16830488399992,-18.24846770599983],[178.1497501960002,-18.252699476999936],[178.14136803500023,-18.252699476999936],[178.1355086600001,-18.259454033999887],[178.11304772200012,-18.239434502999828],[178.03891035200004,-18.264906507999825],[178.0063582690003,-18.259454033999887],[177.99146569099995,-18.258884372999916],[177.9851994150002,-18.25741952899986],[177.97836347700016,-18.252699476999936],[177.97193444100023,-18.258721612999864],[177.95980879000015,-18.265720309999935],[177.945811394,-18.268731377999924],[177.9340926440003,-18.2628720029999],[177.92107181100025,-18.260674737999906],[177.90609785200022,-18.269301039999988],[177.89405358200017,-18.273125908999827],[177.88900800900004,-18.25603606599988],[177.8857528000003,-18.251641533999887],[177.878428582,-18.25367604],[177.87045332100016,-18.25855885199989],[177.8654077480002,-18.2628720029999],[177.85938561300028,-18.265801690999908],[177.85368899800014,-18.263116143999838],[177.83448326900023,-18.246677341999842],[177.83139082100016,-18.239922783999987],[177.82715905000023,-18.234470309999864],[177.7833764980002,-18.22315846099997],[177.69857832099993,-18.201348565999922],[177.6730249360001,-18.19801197699981],[177.64503014399997,-18.191094658999987],[177.59164472700007,-18.166680596999853],[177.56763756600012,-18.17009856599995],[177.53687584699995,-18.156833591999842],[177.52491295700028,-18.155368747999958],[177.47445722700016,-18.15781015399999],[177.46509850400022,-18.156426690999837],[177.45427493599996,-18.15195077899986],[177.4476017590002,-18.146091403999918],[177.44255618600022,-18.14023202899996],[177.43718509200014,-18.136000257999854],[177.36670983200023,-18.11907317499987],[177.33594811300023,-18.105564059999892],[177.3136499360001,-18.073907158999916],[177.30681399800025,-18.08131275799982],[177.30225670700023,-18.07089609199991],[177.3016056650002,-18.05103932099982],[177.30005944099995,-18.039727471999925],[177.2966414720002,-18.0342749979999],[177.29184004000015,-18.029473565999908],[177.28760826900023,-18.022149347],[177.28581790500024,-18.008965752999938],[177.28109785200022,-18.003676039999974],[177.26295006600023,-17.993829033999944],[177.26246178500023,-17.988539320999976],[177.26644941499993,-17.979424737999892],[177.26205488400004,-17.971368096999953],[177.25513756600023,-17.96282317499984],[177.25163821700014,-17.952243747999887],[177.25456790500024,-17.94459400799994],[177.2679142590002,-17.927178643999962],[177.27214603000013,-17.916924737999864],[177.27149498800023,-17.904229424999897],[177.26677493600013,-17.896416924999983],[177.26156660200016,-17.88933684699994],[177.25904381599995,-17.87932708099994],[177.26563561300028,-17.859551690999922],[177.2820744150001,-17.85173919099985],[177.32732181100025,-17.848565362999878],[177.35417728000013,-17.83863697699988],[177.3615014980002,-17.83489348799985],[177.37142988400015,-17.8234188779999],[177.3728947270001,-17.81519947699998],[177.37061608200028,-17.80779387799991],[177.36890709700023,-17.797458591999984],[177.36890709700023,-17.76262786299995],[177.37029056100008,-17.74968840899994],[177.37427819100014,-17.74749114399995],[177.38086998800017,-17.75017669099985],[177.416026238,-17.759860934999907],[177.42351321700016,-17.75920989399995],[177.43433678500006,-17.75017669099985],[177.43531334700023,-17.74325937299994],[177.4319767590002,-17.736504815999908],[177.42969811300017,-17.72820403399993],[177.42872155000023,-17.71705494599982],[177.42448978000021,-17.69752369599992],[177.42351321700016,-17.68759531],[177.42058352999996,-17.67831796699997],[177.41325931100013,-17.674086195999863],[177.40398196700008,-17.670586846999868],[177.39568118600013,-17.663018487999906],[177.38892662900014,-17.64055754999991],[177.40211022200023,-17.63054778399993],[177.4204207690003,-17.62232838299984],[177.42969811300017,-17.604668878],[177.43433678500006,-17.597914320999976],[177.45655358200023,-17.59270598799989],[177.46509850400022,-17.587985934999963],[177.46900475400017,-17.57634856599988],[177.46713300900007,-17.565362237999906],[177.46745853000013,-17.55535247199984],[177.4782007170001,-17.546319268999923],[177.48959394600016,-17.558851820999834],[177.49952233200028,-17.555759373000015],[177.50391686300017,-17.544528903999932],[177.49927819100023,-17.53264739399998],[177.506358269,-17.517836195999905],[177.51514733200028,-17.505059502999956],[177.52442467500023,-17.50074635199996],[177.53337649800025,-17.51213958099984],[177.53956139400023,-17.51213958099984],[177.58130944100023,-17.478122653999904],[177.6220809250002,-17.454685154000018],[177.62501061300017,-17.450778903999932],[177.6281844410002,-17.448500257999868],[177.62891686300023,-17.443942966999913],[177.63111412899994,-17.439222914999988],[177.6389266290001,-17.43710702899999],[177.6453556650002,-17.43816497199994],[177.65259850400005,-17.440524997999987],[177.65626061300028,-17.44280364399988],[177.65259850400005,-17.443942966999913],[177.6468205090001,-17.451755467],[177.6500757170001,-17.46941497199991],[177.6572371750003,-17.487969658999916],[177.6630965500002,-17.4984677059999],[177.6692814460002,-17.492364190999908],[177.6630965500002,-17.479668877999856],[177.65919030000012,-17.46803150799994],[177.65894616000017,-17.45663827899996],[177.6630965500002,-17.443942966999913],[177.6705835300001,-17.438409112999977],[177.70411217500023,-17.42034270599997],[177.71013431100025,-17.417901299999937],[177.74878991000017,-17.430271091999884],[177.75391686300028,-17.424899998],[177.7561955090002,-17.413262627999913],[177.76091556100008,-17.401543877999927],[177.76547285200016,-17.39666106599986],[177.77361087300014,-17.392754815999865],[177.78028405000026,-17.38827890399999],[177.78728274800008,-17.38453541499996],[177.80762780000018,-17.38095468499989],[177.8115340500003,-17.376153252999984],[177.8141382170002,-17.37127044099992],[177.8254500660002,-17.366631768999905],[177.82992597699993,-17.364027601999823],[177.83326256600023,-17.366469007999854],[177.83448326900023,-17.37932708099987],[177.83366946700025,-17.390232028999932],[177.83106530000018,-17.399834893999923],[177.8266707690003,-17.408786716999856],[177.8201603520001,-17.417168877999913],[177.83627363400015,-17.421319268999937],[177.8498641290001,-17.41318124799993],[177.8623153000003,-17.400079033999873],[177.87598717500023,-17.38933684699994],[177.89730879000018,-17.402927342],[177.92660566500012,-17.405938409],[177.95622806100008,-17.40252044099999],[177.97836347700016,-17.39666106599986],[178.0071720710001,-17.38347747199991],[178.01937910200016,-17.375176690999833],[178.0300399100001,-17.365411065999893],[178.04224694100014,-17.35686614399995],[178.065928582,-17.355889580999985],[178.0813908209999,-17.348321221999853],[178.11378014400012,-17.353204033999916],[178.1510522800001,-17.346856377999885],[178.18083743600016,-17.329278252999856],[178.19011478000024,-17.300551039999903],[178.21168053500014,-17.30771249799993],[178.2391056650002,-17.320082289999974],[178.26270592500018,-17.335625908999887],[178.27271569100023,-17.35173919099995]]],[[[-179.13080807199995,-17.27703215899993],[-179.13927161399988,-17.283298434999892],[-179.14948482999992,-17.282159112999864],[-179.15729732999992,-17.27271900799994],[-179.15668697799993,-17.25408294099995],[-179.1464737619999,-17.24797942499987],[-179.13438880099991,-17.252129815999908],[-179.12787838399993,-17.264906507999854],[-179.13080807199995,-17.27703215899993]]],[[[177.14918053500006,-17.24529387799997],[177.16285241000017,-17.26580169099985],[177.15601647200018,-17.267022393999863],[177.15308678500017,-17.270684502999913],[177.15186608200017,-17.27516041499996],[177.13770592500026,-17.294854425],[177.12452233200025,-17.306817315999936],[177.1118270190003,-17.310316665000016],[177.10132897200023,-17.300551039999903],[177.09945722700016,-17.28394947699985],[177.10401451900026,-17.270277601999908],[177.10523522200012,-17.25969817499994],[177.09392337300022,-17.25269947699988],[177.09392337300022,-17.24529387799997],[177.1201278000003,-17.255466403999932],[177.13257897200018,-17.254489841999956],[177.14918053500006,-17.24529387799997]]],[[[179.41781660200016,-17.375664972],[179.39087975400017,-17.396254164999945],[179.3834741550002,-17.390557549999954],[179.3834741550002,-17.3312313779999],[179.3813582690003,-17.315199476999823],[179.37631269600016,-17.300551039999903],[179.3688257170002,-17.286797783999887],[179.37208092500023,-17.273370049999983],[179.3713485040001,-17.259860935],[179.37867272200018,-17.249444268999838],[179.41968834700023,-17.243747653999932],[179.42920983200028,-17.24114348799993],[179.4378361339999,-17.241794528999986],[179.4482528000003,-17.2491187479999],[179.44809004000015,-17.25514088299991],[179.45191491000023,-17.290297132999967],[179.44988040500021,-17.3160946589999],[179.44336998800023,-17.33863697699998],[179.43287194100017,-17.358330987999835],[179.41781660200016,-17.375664972]]],[[[-178.98094641799992,-17.295017184999963],[-178.9858292309999,-17.313571872999887],[-179.00068111899992,-17.302504164999945],[-178.99767005099986,-17.28313567499984],[-178.98534094999988,-17.26376718499999],[-178.97215735599983,-17.25269947699988],[-178.97577877499992,-17.239841403999947],[-178.97065182199992,-17.23381926899985],[-178.96283932199992,-17.230238539999874],[-178.9584854809999,-17.224786065999922],[-178.95832271999987,-17.21135833099993],[-178.96027584499987,-17.2054989559999],[-178.97215735599983,-17.197442315999865],[-178.9820450509999,-17.192559502999984],[-179.00377356699994,-17.188653252999895],[-179.0131322909999,-17.18385182099982],[-179.01707923099983,-17.17652760199989],[-179.0185440749999,-17.15691497199994],[-179.0199682279999,-17.14910247199985],[-179.00605221299992,-17.154717705999857],[-178.99689693899992,-17.16611093499999],[-178.9854223299999,-17.175876559999946],[-178.96471106699988,-17.176934503],[-178.93293209499984,-17.191501559999935],[-178.91734778599994,-17.201267184999878],[-178.91071529899986,-17.214532158999987],[-178.92597408799995,-17.247247002999842],[-178.92747962099992,-17.25269947699988],[-178.94627844999985,-17.25920989399995],[-178.9659317699999,-17.275079033999987],[-178.98094641799992,-17.295017184999963]]],[[[177.29265384199994,-17.072360934999907],[177.28785241000003,-17.08521900799984],[177.2795516290001,-17.09441497199999],[177.27173912900008,-17.11272551899995],[177.24170983200017,-17.13274504999984],[177.23804772200018,-17.14910247199985],[177.23365319100012,-17.145684502999927],[177.23031660200016,-17.143812757999967],[177.22738691500015,-17.14120859199997],[177.22429446700025,-17.13543059699991],[177.21461022200023,-17.141289971999953],[177.20753014400023,-17.14820729000003],[177.20378665500024,-17.15732187299994],[177.20378665500024,-17.1696102839999],[177.17595462300025,-17.16334400799994],[177.17595462300025,-17.15593840899987],[177.18677819100014,-17.156345309999878],[177.19019616000006,-17.15593840899987],[177.18637129000015,-17.146254164999988],[177.1844181650001,-17.132582289999874],[177.18604576900012,-17.120293877999913],[177.19361412900017,-17.114922783999944],[177.20248457099993,-17.11101653399996],[177.20622806100025,-17.10149504999987],[177.2077742850001,-17.09026458099987],[177.21119225400022,-17.080824476999936],[177.21827233200014,-17.073825778999876],[177.24057050899992,-17.056817315999908],[177.24854576900023,-17.053480726999876],[177.24968509200014,-17.057712497999898],[177.2614038420002,-17.075941664999974],[177.26587975400017,-17.080824476999936],[177.27214603000013,-17.080824476999936],[177.27588951900012,-17.074151299999897],[177.28581790500024,-17.046644789999945],[177.29224694100017,-17.05852629999991],[177.29265384199994,-17.072360934999907]]],[[[177.4025985040001,-16.93108489399999],[177.3953556650001,-16.936781507999967],[177.39258873800023,-16.931329033999944],[177.38559004000004,-16.9224585919999],[177.37305748800014,-16.902927342],[177.37891686300028,-16.893649997999873],[177.40284264400023,-16.881524346999967],[177.39576256600012,-16.86614348799992],[177.40821373800023,-16.861097914999903],[177.42823326900026,-16.86288827899989],[177.4436955090001,-16.867852471999925],[177.41293378999993,-16.89128997199991],[177.4036564460001,-16.902601820999976],[177.41651451900017,-16.90943775799982],[177.41325931100013,-16.917250257999893],[177.40845787900005,-16.92449309699984],[177.4025985040001,-16.93108489399999]]],[[[178.29468834700018,-16.792087497999873],[178.30640709700023,-16.793877862999864],[178.33399498800017,-16.79338958099987],[178.33008873800028,-16.81406015399989],[178.3356225920002,-16.825127862999835],[178.3336694670001,-16.828871351999865],[178.3073836600001,-16.827569268999866],[178.29021243600013,-16.83440520599997],[178.28296959700006,-16.82236093499995],[178.28003991000023,-16.786716404],[178.2863061860002,-16.786716404],[178.29468834700018,-16.792087497999873]]],[[[179.94109134200022,-17.001885675],[179.9287215500003,-17.002129815999865],[179.91749108200028,-16.998793226999922],[179.91244550900015,-16.98300546699997],[179.89421634200008,-16.967461846999967],[179.89014733200023,-16.953871351999833],[179.89527428500017,-16.939141533999845],[179.90723717500018,-16.927015882999854],[179.93116295700023,-16.90943775799982],[179.9672957690003,-16.85833098799985],[179.97299238400007,-16.844821872999873],[179.97754967500026,-16.828220309999903],[179.99920928100022,-16.78684802999996],[180.00000000000017,-16.78534884699982],[180.00000000000017,-16.962782392999955],[179.99898190800016,-16.964612234],[179.99219811300026,-16.975030205999843],[179.98121178500003,-16.98430754999997],[179.96680748800026,-16.9933407529999],[179.95394941500015,-16.998793226999922],[179.94109134200022,-17.001885675]]],[[[-179.87157141799992,-16.863864841999952],[-179.87531490799995,-16.865492445999976],[-179.88145911399994,-16.86451588299991],[-179.8901261059999,-16.867852471999925],[-179.9511612619999,-16.905938409],[-179.98289954299995,-16.932386976999894],[-179.9999893869999,-16.964125257999953],[-179.9999999999999,-16.964143905999975],[-179.9999999999999,-16.78673294599986],[-179.99998575099985,-16.786710824999986],[-179.98985755099994,-16.771172784],[-179.91588294199988,-16.694512627999856],[-179.89765377499984,-16.683526299999897],[-179.87714596299992,-16.67782968499999],[-179.86408443899995,-16.681329033999898],[-179.85570227799988,-16.693047783999972],[-179.84650631399992,-16.72128671699994],[-179.84288489499983,-16.738213799999926],[-179.84239661399988,-16.74871184699991],[-179.83002682199992,-16.756117445999973],[-179.82091223899994,-16.763441664999903],[-179.81566321499994,-16.77223072699995],[-179.82099361899992,-16.779961846999882],[-179.85663814999987,-16.813897393999923],[-179.86652584499987,-16.831638278999918],[-179.86933346299992,-16.84059010199985],[-179.87157141799992,-16.863864841999952]]],[[[177.49341881600012,-16.80266692499991],[177.47925866000017,-16.81707122199998],[177.4713647800002,-16.83440520599997],[177.4614363940003,-16.830173434999864],[177.45777428500023,-16.827569268999866],[177.45313561300028,-16.833184502999956],[177.44556725400017,-16.838555597],[177.43718509200014,-16.84002044099988],[177.42969811300017,-16.83440520599997],[177.4303491550002,-16.828220309999903],[177.4363712900001,-16.803643487999977],[177.43718509200014,-16.79338958099987],[177.44402103000013,-16.79338958099987],[177.45655358200023,-16.80559661299985],[177.4753524100001,-16.796644789999917],[177.51295006600017,-16.75872161299989],[177.55860436300028,-16.721449476999908],[177.5725203790001,-16.699476820999905],[177.56072024800014,-16.676853123000015],[177.57992597700016,-16.67815520599984],[177.5911564460001,-16.686211846999967],[177.59400475400022,-16.699965101999894],[177.58741295700023,-16.717705987999977],[177.58033287900008,-16.728448174999897],[177.56397545700028,-16.73992278399993],[177.56072024800014,-16.74871184699991],[177.55648847700022,-16.75383879999991],[177.49341881600012,-16.80266692499991]]],[[[179.91749108200028,-16.655531507999967],[179.88331139400023,-16.655531507999967],[179.90007571700022,-16.650160414999917],[179.90723717500018,-16.649509372999873],[179.91089928499994,-16.646254164999917],[179.91016686300028,-16.632094007999896],[179.914073113,-16.62900156],[179.92335045700023,-16.62818775799998],[179.93458092500023,-16.62509531],[179.94499759200014,-16.61874765399989],[179.9516707690003,-16.607842706],[179.95264733200017,-16.628350518999866],[179.94743899800017,-16.64446379999984],[179.93580162900017,-16.654066665],[179.91749108200028,-16.655531507999967]]],[[[178.62256920700025,-16.573011976999965],[178.61573326900023,-16.58375416499989],[178.60613040500004,-16.591729424999926],[178.59245852999996,-16.59563567499984],[178.57398522200023,-16.594170830999957],[178.5667423840001,-16.592461846999953],[178.5636499360002,-16.590915623000015],[178.5603947270001,-16.58733489399995],[178.58822675900018,-16.573011976999965],[178.59669030000018,-16.578383070999834],[178.6051538420002,-16.580010674999855],[178.61378014400023,-16.578057549999983],[178.62256920700025,-16.573011976999965]]],[[[179.99921551400016,-16.54145231399994],[179.99252363400015,-16.543145440999965],[179.98747806100016,-16.542413018999937],[179.98454837300008,-16.538262627999913],[179.98438561300011,-16.530205987999878],[179.9871525400002,-16.518324476999837],[179.99915023800023,-16.491329657999955],[180.00000000000017,-16.48951892199996],[180.00000000000017,-16.51656142799989],[180.00000000000017,-16.541274866999913],[179.99921551400016,-16.54145231399994]]],[[[-179.99998036499986,-16.54110753699993],[-179.9999999999999,-16.541114828],[-179.9999999999999,-16.489938849999984],[-179.9999893869999,-16.4899227839999],[-179.99998313299992,-16.489912468999847],[-179.9914037749999,-16.475762627999966],[-179.96471106699988,-16.457452080999914],[-179.95905514199987,-16.446872653999947],[-179.95099850199992,-16.44304778399994],[-179.9118139309999,-16.431573174999983],[-179.89765377499984,-16.42978281],[-179.89765377499984,-16.436455987999878],[-179.9070531889999,-16.438246351999865],[-179.91120357999992,-16.441176039999974],[-179.9100235669999,-16.44508228999996],[-179.90379798099985,-16.45029062299987],[-179.90379798099985,-16.457696221999953],[-179.90990149599995,-16.459567967000012],[-179.9142960279999,-16.46160247199994],[-179.9196264309999,-16.463148695999973],[-179.92833411399988,-16.46379973799985],[-179.93329830599993,-16.468031507999864],[-179.93744869699984,-16.477471612999963],[-179.93700110599988,-16.4869117169999],[-179.92833411399988,-16.491143487999906],[-179.92198645699995,-16.497491143999852],[-179.9348038399999,-16.510837497999944],[-179.9520157539999,-16.523044528999932],[-179.99998036499986,-16.54110753699993]]],[[[179.37745201900017,-16.339043877999913],[179.36117597700016,-16.34075286299992],[179.34376061300017,-16.33896249799993],[179.32813561299997,-16.33359140399996],[179.32813561299997,-16.3265927059999],[179.36231530000015,-16.3265927059999],[179.3766382170002,-16.32887135199996],[179.38965905000023,-16.33359140399996],[179.37745201900017,-16.339043877999913]]],[[[179.90381920700017,-16.23113372199998],[179.89568118599996,-16.238702080999843],[179.8864852220001,-16.254489841999884],[179.87964928500017,-16.262139580999914],[179.86540774799997,-16.27450937299986],[179.8582462900002,-16.28264739399995],[179.85914147200023,-16.286309503],[179.85124759200025,-16.290948174999855],[179.83814537900017,-16.31406015399999],[179.79810631599995,-16.369561455999857],[179.78093509200014,-16.381280205999925],[179.78101647200012,-16.40300872199991],[179.76343834700023,-16.432793878],[179.73845462300025,-16.45924244599989],[179.7158309250003,-16.47063567499987],[179.69385826900015,-16.477308851999908],[179.59791100400005,-16.53980885199995],[179.59180748800028,-16.545342705999957],[179.58765709699995,-16.552911065999922],[179.5822860040001,-16.56698984199987],[179.58073978000024,-16.579278253],[179.58106530000018,-16.594984632999967],[179.5791121750003,-16.611423434999963],[179.5714624360002,-16.625583591999984],[179.5600692070001,-16.63453541499993],[179.53443444100023,-16.650485934999935],[179.52361087299997,-16.658949476999965],[179.51872806100008,-16.665134372999855],[179.50660241000017,-16.683526299999897],[179.50066165500021,-16.687188408999944],[179.48422285200016,-16.693129164999874],[179.47868899800025,-16.69719817499984],[179.48878014400026,-16.707614842],[179.49219811300023,-16.72503020599997],[179.48878014400026,-16.743829033999845],[179.47868899800025,-16.75872161299989],[179.48609459700023,-16.766045830999897],[179.50196373800028,-16.754652601999922],[179.52027428499994,-16.749607028999904],[179.53711998800011,-16.752618097],[179.54810631600017,-16.766045830999897],[179.56251061300017,-16.754815362999974],[179.5852156910001,-16.729424737999878],[179.59937584700023,-16.724541924999983],[179.60954837300022,-16.72275156],[179.62208092500018,-16.717868747999944],[179.63257897200023,-16.710219007999825],[179.63697350400022,-16.700616143999937],[179.64087975400008,-16.687269790000013],[179.65056399800025,-16.6822242169999],[179.66187584700018,-16.680271091999856],[179.67107181100025,-16.676853123000015],[179.6726994150001,-16.672946872999926],[179.67611738400015,-16.65935637799997],[179.6779077480001,-16.655531507999967],[179.6821395190003,-16.654066665],[179.6945093110002,-16.651462497999916],[179.69841556100013,-16.649509372999873],[179.7058211600001,-16.63811614399999],[179.7161564460001,-16.613457940999908],[179.72266686300028,-16.60442473799999],[179.73210696700014,-16.599216403999904],[179.7420353520001,-16.596368096999868],[179.7497664720001,-16.592461846999953],[179.75294030000018,-16.583916924999855],[179.75668378999993,-16.576755466999984],[179.76539147200012,-16.571954033999916],[179.78093509200014,-16.56698984199987],[179.81413821700014,-16.546319268999852],[179.83326256600017,-16.530368748000015],[179.84180748800023,-16.51506926899988],[179.85108483200028,-16.50855885199998],[179.90381920700017,-16.484307549999897],[179.9089461600001,-16.478773695999962],[179.91260826900012,-16.472344658999873],[179.91716556100008,-16.466892185],[179.92432701900023,-16.46379973799985],[179.93946373800023,-16.463311455999943],[179.94239342500023,-16.467461846999896],[179.94239342500023,-16.475844007999953],[179.9534611340002,-16.49960702899986],[179.94906660200022,-16.509047132999967],[179.9417423840001,-16.51653411299985],[179.9362085300002,-16.524672132999953],[179.92432701900023,-16.55315520599987],[179.89014733200023,-16.614678643999834],[179.88941491000023,-16.619398695999934],[179.891123894,-16.631280205999886],[179.89014733200023,-16.63583749799993],[179.88624108200014,-16.636814059999907],[179.87370853000024,-16.634860934999864],[179.8696395190003,-16.63583749799993],[179.84864342500012,-16.66236744599989],[179.8750106130002,-16.66432057099985],[179.8919376960002,-16.67595794099985],[179.90113366000008,-16.694756768999895],[179.90381920700017,-16.717705987999977],[179.91749108200028,-16.716566664999945],[179.93555748800011,-16.72039153399996],[179.94971764400023,-16.730075778999918],[179.9516707690003,-16.745700778999904],[179.94190514400023,-16.752618097],[179.92652428500008,-16.749607028999904],[179.8963322270001,-16.738213799999926],[179.89991295700028,-16.74423593500002],[179.90707441500018,-16.760023695999887],[179.9106551440003,-16.766045830999897],[179.89576256599995,-16.761814059999875],[179.89014733200023,-16.75872161299989],[179.87574303500006,-16.7694638],[179.86361738400015,-16.764825127999885],[179.85792076900017,-16.75188567499997],[179.86215253999993,-16.738213799999926],[179.82634524800017,-16.737074476999894],[179.81202233200025,-16.731215101999865],[179.80201256600023,-16.717705987999977],[179.78077233200017,-16.72503020599997],[179.75928795700023,-16.723728122999972],[179.7402449880001,-16.719333592],[179.72632897199995,-16.717705987999977],[179.71648196700014,-16.721937757999896],[179.6998804050002,-16.735284112999906],[179.68832441500004,-16.738213799999926],[179.67603600400017,-16.738457940999965],[179.66627037900017,-16.740655205999953],[179.6598413420001,-16.746758721999868],[179.65674889400023,-16.75872161299989],[179.65186608200017,-16.749281507999882],[179.65056399800025,-16.745700778999904],[179.64380944099995,-16.745700778999904],[179.6333113940003,-16.765883070999934],[179.5968530610002,-16.78875090899993],[179.5822860040001,-16.807061455999982],[179.56511478000024,-16.791680596999868],[179.54493248800011,-16.790785414999874],[179.50318444100012,-16.80022551899998],[179.47144615999994,-16.801202080999957],[179.45394941500007,-16.805108330999943],[179.4382430350001,-16.813897393999923],[179.40381920700028,-16.80234140399999],[179.37574303500014,-16.80103932099989],[179.29688561300023,-16.806817315999865],[179.29786217499998,-16.804457289999988],[179.3079533210001,-16.797458591999924],[179.31421959700023,-16.783298434999903],[179.32341556100008,-16.771172784],[179.3414819670001,-16.765069268999923],[179.3547469410002,-16.758477471999853],[179.34888756600012,-16.745700778999904],[179.3514103520001,-16.73137786299992],[179.33961022200023,-16.724379165000016],[179.3079533210001,-16.717705987999977],[179.28296959700023,-16.698907158999845],[179.2663680350001,-16.689873955999914],[179.25896243600013,-16.693780206],[179.2482202480002,-16.694105726999847],[179.1720483730001,-16.7225888],[179.15284264400023,-16.734470309999907],[179.1228947270001,-16.75872161299989],[179.12940514400026,-16.775811455999843],[179.1233830090002,-16.789646092000012],[179.1101994150002,-16.79998137799994],[179.09571373800028,-16.807061455999982],[179.0654403000003,-16.798923434999892],[179.04444420700023,-16.823825779],[179.019867384,-16.89519622199991],[179.04542076900023,-16.880140882999896],[179.05665123800011,-16.878024997999887],[179.07520592500012,-16.881524346999967],[179.06560306099996,-16.893487237999906],[179.0372827480002,-16.912692966999956],[179.0268660820002,-16.923109632999854],[179.019867384,-16.923109632999854],[179.00684655000023,-16.917738539999974],[178.96745853000016,-16.90634531],[178.95443769600016,-16.899021092000012],[178.95020592500023,-16.890720310000017],[178.94890384200022,-16.882989190999922],[178.94532311300017,-16.8775367169999],[178.92595462300022,-16.87314218499999],[178.9202580090002,-16.86695729000003],[178.91724694100012,-16.85833098799985],[178.91700280000023,-16.848077080999914],[178.9100041020001,-16.848077080999914],[178.9100041020001,-16.867852471999925],[178.89454186300017,-16.85930754999991],[178.88379967500023,-16.85767994599989],[178.87403405000018,-16.861097914999903],[178.86166425900015,-16.867852471999925],[178.8212996750003,-16.902601820999976],[178.81706790500021,-16.91204192499991],[178.80713951900017,-16.950453382999907],[178.79948978000024,-16.957207940999865],[178.7902124360002,-16.962009372999944],[178.78777102999996,-16.967868747999972],[178.8009546230002,-16.977715752999913],[178.7654728520001,-17.00115325299997],[178.76270592500023,-17.005059502999885],[178.73389733200023,-17.007012627999842],[178.72087649800025,-17.005547783999873],[178.7053328789999,-16.998793226999922],[178.69190514400012,-16.98577239399985],[178.68067467500023,-16.958265882999825],[178.6731876960001,-16.926039320999877],[178.670420769,-16.899021092000012],[178.6604110040002,-16.87948984199994],[178.64063561300026,-16.860528252999842],[178.62745201900017,-16.837660415],[178.6364038420002,-16.807061455999982],[178.61500084700023,-16.79973723799999],[178.60621178500006,-16.792901299999883],[178.60230553500017,-16.779717705999843],[178.54070071700025,-16.80917734199991],[178.5115666020001,-16.814222914999945],[178.48560631600012,-16.79338958099987],[178.490244988,-16.79119231599988],[178.49040774799997,-16.790215752999984],[178.4924422540001,-16.786716404],[178.48121178500017,-16.777276299999897],[178.4790145190003,-16.765883070999934],[178.48357181100025,-16.759942315999908],[178.4924422540001,-16.766045830999897],[178.4992781910002,-16.766045830999897],[178.49659264400012,-16.747165622999873],[178.50652103000024,-16.730401299999855],[178.54021243600025,-16.704034112999935],[178.54021243600025,-16.724541924999983],[178.5485132170002,-16.716241143999923],[178.55250084700012,-16.704847914999945],[178.55713951900023,-16.69833749799987],[178.56804446700014,-16.704034112999935],[178.57292728000024,-16.688897393999934],[178.58562259200014,-16.665134372999855],[178.58863366000023,-16.649509372999873],[178.56706790500013,-16.6600888],[178.55274498800017,-16.658949476999965],[178.54281660200022,-16.64788176899985],[178.5339461600001,-16.62900156],[178.57178795700023,-16.61549244599985],[178.58179772200023,-16.614678643999834],[178.5892033210002,-16.619398695999934],[178.60075931100013,-16.635511976999908],[178.60840905000023,-16.64202239399998],[178.61882571700014,-16.645196221999868],[178.65007571700014,-16.649509372999873],[178.68091881600012,-16.668064059999878],[178.69109134200014,-16.669854424999954],[178.70427493600025,-16.6670874979999],[178.70899498800014,-16.66301848799985],[178.71143639400023,-16.657321872999944],[178.71762129000018,-16.649509372999873],[178.7732853520001,-16.60328541499996],[178.78834069100012,-16.59693775799984],[178.79769941500012,-16.606622002999984],[178.8009546230002,-16.63583749799993],[178.81397545700017,-16.629978122999887],[178.81739342500018,-16.62273528399996],[178.81397545700017,-16.597588799999883],[178.81836998800028,-16.58684661299996],[178.84864342500018,-16.546319268999852],[178.85035241000006,-16.551446221999868],[178.8546655610002,-16.560316664999988],[178.85547936300017,-16.56698984199987],[178.86345462300014,-16.56218840899996],[178.8679305350001,-16.557061455999957],[178.8696395190003,-16.550062757999882],[178.86915123800028,-16.539646091999984],[178.87598717500023,-16.539646091999984],[178.88624108200017,-16.55234140399986],[178.89763431100025,-16.54306406],[178.90943444100012,-16.526543877999913],[178.92042076900017,-16.51783619599985],[178.93091881600023,-16.51262786299985],[178.92790774800014,-16.499932549999883],[178.92042076900017,-16.484470309999864],[178.91700280000023,-16.47063567499987],[178.92123457100013,-16.472751559999878],[178.93287194100006,-16.476169528999975],[178.93734785200016,-16.478122654000018],[178.9427189460001,-16.460381768999923],[178.9521590500003,-16.459649347],[178.96111087300014,-16.466403904000018],[178.9650985040001,-16.47063567499987],[178.98015384200025,-16.468194268999838],[179.00782311300011,-16.459567967000012],[179.05420983200028,-16.454034112999903],[179.10661868599996,-16.436130466999856],[179.13672936300026,-16.42978281],[179.16749108200028,-16.431329033999944],[179.17758222700022,-16.42978281],[179.18018639400012,-16.426364842],[179.18783613400015,-16.412204684999978],[179.19125410200016,-16.40797291499996],[179.19898522200015,-16.40536874799987],[179.21631920700028,-16.40243906000002],[179.2223413420002,-16.399021092000012],[179.2404077480002,-16.39812590899993],[179.26978600400022,-16.405694268999895],[179.29835045700028,-16.40911223799999],[179.31421959700023,-16.395603123000015],[179.32927493600025,-16.40797291499996],[179.3382267590001,-16.403985283999887],[179.34620201900023,-16.39381275799994],[179.35873457099993,-16.388116143999863],[179.3657332690003,-16.391289971999925],[179.37208092500023,-16.40488046699988],[179.37964928500008,-16.40797291499996],[179.38803144600018,-16.40715911299995],[179.39242597699993,-16.406019789999917],[179.39649498800028,-16.405694268999895],[179.40357506600023,-16.40797291499996],[179.4020288420002,-16.39299895599993],[179.39576256600023,-16.3788388],[179.38648522200015,-16.36744557099985],[179.3761499360002,-16.36077239399998],[179.38648522200015,-16.351332289999874],[179.3977156910001,-16.347832940999965],[179.40853925900018,-16.34905364399998],[179.41781660200016,-16.35393645599987],[179.42261803499994,-16.336846612999835],[179.43140709700012,-16.319024346999853],[179.44320722700016,-16.310235283999884],[179.4581811860002,-16.319919529000018],[179.46509850400022,-16.30266692499984],[179.466807488,-16.28687916499989],[179.4712020190003,-16.27402109199987],[179.48609459700023,-16.26523202899999],[179.52165774800014,-16.267998955999943],[179.5356551440003,-16.262465101999933],[179.52027428499994,-16.244805596999925],[179.5334578790001,-16.244886976999908],[179.54249108200028,-16.250746351999936],[179.5490014980002,-16.260511976999894],[179.55437259200014,-16.272637627999885],[179.5631616550002,-16.237399998000015],[179.56804446700025,-16.224297783999873],[179.57292728000024,-16.23642343499995],[179.58187910200013,-16.24195728999989],[179.59294681100013,-16.245700778999918],[179.60279381599995,-16.252129815999837],[179.61150149800014,-16.243340752999867],[179.61890709700012,-16.242608330999843],[179.62484785200022,-16.248304945999905],[179.63013756600023,-16.258965752999856],[179.63013756600023,-16.243422132999854],[179.63404381600012,-16.237888279],[179.64014733200025,-16.23756275799998],[179.64714603000021,-16.238539320999877],[179.65333092500012,-16.235284112999835],[179.6560164720002,-16.227959893999923],[179.6565047540001,-16.22063567499999],[179.6564233730002,-16.21746184699994],[179.6633406910002,-16.218194268999966],[179.66749108200017,-16.22063567499999],[179.6706649100002,-16.223077080999857],[179.67448978000013,-16.224297783999873],[179.6935327480001,-16.225762627999842],[179.70183353000016,-16.223077080999857],[179.7052514980002,-16.21404387799994],[179.71029707100016,-16.20777760199989],[179.7347111340002,-16.197930596999967],[179.76441490999994,-16.181410414999988],[179.77068118600008,-16.196547132999896],[179.7727156910001,-16.21941497199998],[179.78093509200014,-16.23113372199998],[179.79297936300023,-16.22649504999987],[179.81446373800017,-16.20769622199991],[179.82878665500013,-16.204359632999967],[179.83961022200012,-16.20769622199991],[179.8413192070002,-16.21347421699997],[179.83659915500013,-16.219496351999965],[179.82878665500013,-16.224297783999873],[179.83961022200012,-16.22812265399989],[179.8508406910002,-16.227959893999923],[179.85596764400015,-16.23113372199998],[179.86817467500023,-16.21599700299998],[179.9033309250003,-16.188653253],[179.9106551440003,-16.17986419099995],[179.9831649100001,-16.149102471999967],[179.99881731400004,-16.149102471999967],[180.00000000000017,-16.14911172500001],[180.00000000000017,-16.16895107],[179.99897849600026,-16.169877740999848],[179.93799889400017,-16.224297783999873],[179.92994225400022,-16.227146091999913],[179.91211998800017,-16.227959893999923],[179.90381920700017,-16.23113372199998]]],[[[-179.99998776299992,-16.16960975799988],[-179.9999999999999,-16.169613739999946],[-179.9999999999999,-16.149111041999873],[-179.9999893869999,-16.149102471999967],[-179.99998692199986,-16.149100296999876],[-179.9875382149999,-16.13811614399999],[-179.9730118479999,-16.131036065999947],[-179.9385880199999,-16.12127044099999],[-179.94847571499992,-16.142185153999876],[-179.96178137899994,-16.154717705999953],[-179.97887122299989,-16.16277434699991],[-179.99998776299992,-16.16960975799988]]],[[[177.05974368600025,-12.47527434699988],[177.07520592500018,-12.48064544099985],[177.11117597700004,-12.48064544099985],[177.1247664720002,-12.486097914999872],[177.12907962300014,-12.501641533999887],[177.1136173840002,-12.51140715899983],[177.09107506600023,-12.51637135199988],[177.0734155610002,-12.516859632999866],[177.05958092500018,-12.511976820999804],[177.04363040500007,-12.508477471999894],[177.02711022200023,-12.50725676899988],[177.01148522200023,-12.509454033999873],[177.00660241000014,-12.494724216999884],[177.00586998800011,-12.489515882999882],[177.0208439460001,-12.493584893999852],[177.03296959700018,-12.491387627999856],[177.05974368600025,-12.47527434699988]]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Coral Sea Islands","adm0_a3":"CSI","geou_dif":0,"geounit":"Coral Sea Islands","gu_a3":"CSI","su_dif":0,"subunit":"Coral Sea Islands","su_a3":"CSI","brk_diff":0,"name":"Coral Sea Is.","name_long":"Coral Sea Islands","brk_a3":"CSI","brk_name":"Coral Sea Is.","brk_group":null,"abbrev":"C.S.I.","postal":"CS","formal_en":"Coral Sea Islands Territory","formal_fr":null,"note_adm0":"Auz.","note_brk":null,"name_sort":"Coral Sea Islands","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":4,"gdp_md_est":-99,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"CR","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":23424790,"woe_id_eh":23424790,"woe_note":"Exact WOE match as country","adm0_a3_is":"AUS","adm0_a3_us":"CSI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":13,"long_len":17,"abbrev_len":6,"tiny":-99,"homepart":-99,"filename":"coralseais.geojson"},"geometry":{"type":"Polygon","coordinates":[[[154.3912866550001,-21.030043226999865],[154.38851972700002,-21.02906666499997],[154.3912866550001,-21.02874114399995],[154.3912866550001,-21.030043226999865]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Guam","adm0_a3":"GUM","geou_dif":0,"geounit":"Guam","gu_a3":"GUM","su_dif":0,"subunit":"Guam","su_a3":"GUM","brk_diff":0,"name":"Guam","name_long":"Guam","brk_a3":"GUM","brk_name":"Guam","brk_group":null,"abbrev":"Guam","postal":"GU","formal_en":"Territory of Guam","formal_fr":null,"note_adm0":"U.S.A.","note_brk":null,"name_sort":"Guam","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":178430,"gdp_md_est":2500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"GQ","iso_a2":"GU","iso_a3":"GUM","iso_n3":"316","un_a3":"316","wb_a2":"GU","wb_a3":"GUM","woe_id":23424832,"woe_id_eh":23424832,"woe_note":"Exact WOE match as country","adm0_a3_is":"GUM","adm0_a3_us":"GUM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":4,"long_len":4,"abbrev_len":4,"tiny":2,"homepart":-99,"filename":"GUM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[144.88640384200005,13.640204169000112],[144.89665774800005,13.617987372000059],[144.91431725400008,13.60541413000007],[144.934418165,13.599839585000069],[144.95191491000006,13.598578192000062],[144.95215905000015,13.586859442000062],[144.93767337300005,13.560532945000062],[144.90699303500008,13.516669012000108],[144.87183678500003,13.485174872000101],[144.80827884200005,13.445786851000022],[144.78345787900008,13.420477606000077],[144.76937910200002,13.379136460000039],[144.760101759,13.28563060100008],[144.735606316,13.249172268000022],[144.71802819100003,13.241848049000112],[144.69752037900008,13.2410342470001],[144.68067467500015,13.24677155200007],[144.67042076900015,13.264837958000086],[144.6567488940001,13.282049872000101],[144.65357506600003,13.287014065000063],[144.64747155000015,13.324896552000084],[144.6442977220001,13.331610419000043],[144.63949629,13.337469794000084],[144.63363691500007,13.342108466000099],[144.626312696,13.345363674000055],[144.63656660200004,13.355414130000028],[144.64307701900012,13.36570872600005],[144.6464949880001,13.378485419000086],[144.64747155000015,13.39622630400008],[144.6455184250001,13.404486395000077],[144.64047285200007,13.414780992000088],[144.6347762380001,13.42352936400006],[144.62419681100005,13.431219794000086],[144.6286727220001,13.438788153000132],[144.6364852220001,13.443101304000038],[144.64063561300011,13.437811591000056],[144.6544702480001,13.439154364000046],[144.71485436300014,13.473456122000101],[144.72877037900003,13.485581773000106],[144.78345787900008,13.516669012000108],[144.79411868600008,13.527085679],[144.8032332690001,13.5391299500001],[144.81120853000004,13.553615627000056],[144.8322046230001,13.620672919000043],[144.83863366000003,13.632757880000042],[144.85043379000007,13.643744208000099],[144.86670983200008,13.653021552000055],[144.8806258470001,13.654120184000092],[144.88640384200005,13.640204169000112]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Federated States of Micronesia","sov_a3":"FSM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Federated States of Micronesia","adm0_a3":"FSM","geou_dif":0,"geounit":"Federated States of Micronesia","gu_a3":"FSM","su_dif":0,"subunit":"Federated States of Micronesia","su_a3":"FSM","brk_diff":0,"name":"Micronesia","name_long":"Federated States of Micronesia","brk_a3":"FSM","brk_name":"Micronesia","brk_group":null,"abbrev":"F.S.M.","postal":"FSM","formal_en":"Federated States of Micronesia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Micronesia, Federated States of","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":4,"mapcolor13":13,"pop_est":107434,"gdp_md_est":238.1,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"FM","iso_a2":"FM","iso_a3":"FSM","iso_n3":"583","un_a3":"583","wb_a2":"FM","wb_a3":"FSM","woe_id":23424815,"woe_id_eh":23424815,"woe_note":"Exact WOE match as country","adm0_a3_is":"FSM","adm0_a3_us":"FSM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":10,"long_len":30,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"FSM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[154.81763756600006,0.922186591000127],[154.81283613400015,0.918158270000148],[154.80176842500012,0.91819896000014],[154.79859459700006,0.924465236000103],[154.802989129,0.92706940300009],[154.80811608200023,0.927801825000117],[154.814300977,0.92576732000019],[154.81763756600006,0.922186591000127]]],[[[154.73292076900023,0.96702708500014],[154.72681725400005,0.960638739000117],[154.71509850400017,0.961371161000059],[154.71485436300011,0.965562242000175],[154.72193444100017,0.969183661000059],[154.73292076900023,0.96702708500014]]],[[[154.79656009200016,0.965806382000125],[154.7923283210001,0.962876695000105],[154.78370201900006,0.963690497000115],[154.77816816500015,0.968817450000046],[154.77849368600016,0.973700262000108],[154.78435306100002,0.975490627000084],[154.7931421230002,0.972113348000079],[154.79656009200016,0.965806382000125]]],[[[154.89429772200018,3.762844143000123],[154.87924238400015,3.751939195000062],[154.87671959700006,3.767971096000053],[154.89185631600006,3.778794664000131],[154.89429772200018,3.762844143000123]]],[[[154.79175866,3.776556708000058],[154.7736922540001,3.766262111000131],[154.77125084700006,3.781480210000112],[154.78931725400017,3.79181549700013],[154.79175866,3.776556708000058]]],[[[153.6782332690001,5.289496161000129],[153.66773522200006,5.286037502000127],[153.67172285200002,5.29767487200013],[153.68531334700018,5.309719143000137],[153.70085696700008,5.316961981000161],[153.71070397200018,5.314601955000114],[153.70769290500016,5.305365302000055],[153.69410241000006,5.296454169000114],[153.6782332690001,5.289496161000129]]],[[[163.04297936300006,5.310939846000153],[163.02572675899998,5.280015367000118],[163.0192163420002,5.272691148000121],[163.00554446700008,5.269761460000097],[162.99341881600006,5.272853908000087],[162.98145592500012,5.277655341000155],[162.96762129000004,5.280178127000084],[162.94597415500002,5.280015367000118],[162.93132571700014,5.281927802000083],[162.91618899800014,5.286932684000121],[162.91211998800006,5.304185289000131],[162.924082879,5.321030992000132],[162.97144616000006,5.361761786000102],[162.99073326900006,5.374823309000178],[163.0105900400001,5.379706122000144],[163.0260522800002,5.368841864000075],[163.02735436300011,5.362697658000087],[163.02572675899998,5.347601630000085],[163.0260522800002,5.340887762000136],[163.0304468110002,5.335679429000137],[163.0372827480002,5.333685614000103],[163.043711785,5.330959377000127],[163.04656009200008,5.323553778000147],[163.04297936300006,5.310939846000153]]],[[[157.16244550899998,5.775824286000087],[157.161875847,5.773871161000129],[157.16065514400012,5.776190497000101],[157.15894616000017,5.777899481000105],[157.158457879,5.779201565000093],[157.16089928500003,5.779933986000131],[157.16391035200004,5.778713283000116],[157.16382897200006,5.777289130000142],[157.16244550899998,5.775824286000087]]],[[[149.32105553500017,6.702215887000179],[149.31576582099999,6.696926174000112],[149.3160913420002,6.703924872000101],[149.31690514400023,6.709906317000105],[149.31885826900003,6.715073960000112],[149.3234969410001,6.719468492000189],[149.3256942070001,6.712551174000097],[149.32471764400012,6.707098700000159],[149.32105553500017,6.702215887000179]]],[[[157.9458113940001,6.722601630000071],[157.9363712900001,6.717189846000124],[157.939219597,6.727362372000157],[157.94206790500004,6.730536200000131],[157.94890384200008,6.731675523000163],[157.9482528000001,6.725775458000129],[157.9458113940001,6.722601630000071]]],[[[158.20167076900006,6.970038153000104],[158.20826256600006,6.965277411000116],[158.21802819100017,6.970851955000114],[158.22527103000013,6.970200914000159],[158.23243248800017,6.967108466000084],[158.24236087300008,6.965277411000116],[158.26734459700015,6.966376044000157],[158.27662194100006,6.965277411000116],[158.27735436300017,6.963202216000098],[158.29395592500012,6.952297268000109],[158.29704837300017,6.951646226000165],[158.30347741,6.942857164000188],[158.30079186300023,6.940741278000175],[158.29078209700006,6.937974351000122],[158.29623457099999,6.92812734600011],[158.3046981130002,6.924383856000162],[158.31470787900005,6.925767320000148],[158.32496178500006,6.931138414000116],[158.3382267590001,6.879095770000148],[158.33863366000017,6.869086005000071],[158.3307397800002,6.866603908000144],[158.30884850400017,6.868475653000118],[158.30445397200018,6.865952867000189],[158.30640709700006,6.855210679000081],[158.3156030610002,6.836615302000084],[158.31755618600008,6.824693101000136],[158.31381269600004,6.808661200000145],[158.30453535200016,6.799302476000122],[158.29249108200017,6.795070705000099],[158.2444767590001,6.788275458000072],[158.22535241000008,6.789496161000088],[158.21509850400017,6.800767320000176],[158.19353274800005,6.793443101000165],[158.18018639400023,6.802476304000095],[158.17058353000007,6.817531643000109],[158.16049238400004,6.828111070000148],[158.16456139400015,6.841213283000116],[158.16602623800023,6.853989976000165],[158.16293379000015,6.865790106000134],[158.15308678500003,6.87592194200009],[158.15593509200008,6.879868882000082],[158.16049238400004,6.890204169000171],[158.13298587300008,6.891913153000175],[158.12582441500004,6.907416083000101],[158.13249759200016,6.941351630000141],[158.141856316,6.950995184000121],[158.16114342500023,6.951361395000134],[158.17823326900012,6.956040757000139],[158.18091881600017,6.978949286000144],[158.20167076900006,6.970038153000104]]],[[[151.86182701900006,7.327134507000068],[151.85678144600004,7.316595770000106],[151.85320071700008,7.353827216000099],[151.85450280000018,7.370062567000132],[151.8626408210001,7.361761786000144],[151.86557050900004,7.350653387000121],[151.86524498800006,7.338771877000084],[151.86182701900006,7.327134507000068]]],[[[149.18669681100008,7.376125393000122],[149.1857202480002,7.371649481000161],[149.18083743600013,7.381170966000155],[149.18726647200006,7.38157786700016],[149.188243035,7.379787502000084],[149.18669681100008,7.376125393000122]]],[[[151.63640384200002,7.387111721000096],[151.65015709700006,7.369370835000097],[151.65072675900004,7.354234117000189],[151.64454186300023,7.3360863300001],[151.63428795700023,7.327866929000094],[151.6227319670002,7.34267812700007],[151.6158960300002,7.34267812700007],[151.60743248800023,7.336127020000092],[151.595957879,7.336737372000143],[151.58269290500007,7.340399481000104],[151.56812584700006,7.34267812700007],[151.57113691500015,7.346258856000134],[151.57422936300023,7.347723700000103],[151.58179772200018,7.348863023000134],[151.59107506600006,7.353420315000093],[151.61736087300002,7.3589541690001],[151.6227319670002,7.365912177000098],[151.61841881600012,7.375881252000084],[151.59693444100017,7.372748114000117],[151.58863366000008,7.3836123720001],[151.6224064460001,7.391750393000109],[151.63640384200002,7.387111721000096]]],[[[151.8702905610002,7.463527736000102],[151.876719597,7.458726304000109],[151.88379967500006,7.463568427000098],[151.892263217,7.462469794000143],[151.90316816500004,7.459540106000119],[151.91765384200008,7.458726304000109],[151.907481316,7.44692617400014],[151.89063561300011,7.435248114000145],[151.87191816500004,7.42674388200011],[151.85621178500017,7.424627997000101],[151.8556421230002,7.436957098000149],[151.85678144600004,7.447170315000093],[151.86304772200018,7.465562242000132],[151.86744225400017,7.464748440000122],[151.8702905610002,7.463527736000102]]],[[[150.408457879,8.579291083000086],[150.40748131600006,8.57550690300016],[150.40463300900004,8.586004950000131],[150.4093530610002,8.58466217700014],[150.4098413420002,8.58234284100017],[150.408457879,8.579291083000086]]],[[[149.67448978000007,8.581732489000117],[149.668711785,8.574693101000065],[149.66529381600012,8.587591864000075],[149.66781660200002,8.604234117000118],[149.67554772200006,8.616441148000177],[149.687266472,8.616034247000172],[149.68881269600016,8.607326565000108],[149.68295332100004,8.59430573100012],[149.67448978000007,8.581732489000117]]],[[[150.122813347,8.978216864000075],[150.11817467500012,8.976304429000109],[150.12427819100017,8.98550039300008],[150.1274520190002,8.987494208000115],[150.13298587300008,8.986070054000052],[150.130544467,8.980943101000136],[150.12712649800014,8.979152736000145],[150.122813347,8.978216864000075]]],[[[138.1842554050002,9.544378973000136],[138.197520379,9.539007880000085],[138.21900475400005,9.54857005400008],[138.21412194100017,9.537054755000142],[138.20240319100017,9.521185614000117],[138.18873131600006,9.506822007000139],[138.17798912900005,9.500189520000077],[138.16407311300023,9.504828192000105],[138.15658613399998,9.525783596000139],[138.14380944100006,9.521307684000178],[138.1344507170002,9.511867580000157],[138.07984459700006,9.425441799000067],[138.06812584700006,9.41205475500007],[138.06381269600016,9.436102606000103],[138.07300866000006,9.470404364000075],[138.08912194100012,9.501166083000143],[138.10596764400012,9.514471747000158],[138.1129663420002,9.521470445000148],[138.12126712300008,9.55487702000012],[138.126231316,9.565985419000143],[138.14112389400017,9.5743675800001],[138.14722741000006,9.567368882000125],[138.1500757170002,9.541164455000086],[138.15186608200003,9.550848700000145],[138.15495853000007,9.560736395000147],[138.15919030000006,9.569525458000129],[138.16439863399998,9.575873114000146],[138.17318769600016,9.582342841000155],[138.18490644600004,9.588812567000062],[138.19361412900005,9.588853257000054],[138.19239342500012,9.575873114000146],[138.18165123800011,9.558742580000114],[138.1842554050002,9.544378973000136]]],[[[140.52466881600003,9.764471747000115],[140.515391472,9.761175848000079],[140.51417076900006,9.767808335000138],[140.52173912900005,9.774725653000132],[140.53126061300023,9.775580145000133],[140.53288821700008,9.771918036000088],[140.52466881600003,9.764471747000115]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kiribati","sov_a3":"KIR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kiribati","adm0_a3":"KIR","geou_dif":0,"geounit":"Kiribati","gu_a3":"KIR","su_dif":0,"subunit":"Kiribati","su_a3":"KIR","brk_diff":0,"name":"Kiribati","name_long":"Kiribati","brk_a3":"KIR","brk_name":"Kiribati","brk_group":null,"abbrev":"Kir.","postal":"KI","formal_en":"Republic of Kiribati","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kiribati","name_alt":null,"mapcolor7":5,"mapcolor8":7,"mapcolor9":6,"mapcolor13":12,"pop_est":112850,"gdp_md_est":579.5,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"KR","iso_a2":"KI","iso_a3":"KIR","iso_n3":"296","un_a3":"296","wb_a2":"KI","wb_a3":"KIR","woe_id":23424867,"woe_id_eh":23424867,"woe_note":"Exact WOE match as country","adm0_a3_is":"KIR","adm0_a3_us":"KIR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":4,"tiny":2,"homepart":1,"filename":"KIR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-151.78095455599995,-11.454685153999876],[-151.80089270699992,-11.46111419099988],[-151.81248938699986,-11.44353606599985],[-151.8195287749999,-11.420993747999873],[-151.8189184239999,-11.399672132999811],[-151.80772864499988,-11.385918877999885],[-151.79792232999992,-11.401462497999887],[-151.78449459499993,-11.42937590899983],[-151.78095455599995,-11.454685153999876]]],[[[-155.90680904899995,-5.611993096999825],[-155.89932206899988,-5.616794528999904],[-155.8796280589999,-5.609470309999891],[-155.8650610019999,-5.615166924999882],[-155.85981197799993,-5.625095309999878],[-155.8679906889999,-5.630303643999881],[-155.90644283799992,-5.635349216999898],[-155.9224747389999,-5.629978122999858],[-155.93346106699988,-5.609144789999874],[-155.9238988919999,-5.608086846999824],[-155.91498775899993,-5.609063408999887],[-155.90680904899995,-5.611993096999825]]],[[[-174.50068111899986,-4.694268487999977],[-174.50153561099987,-4.697360934999963],[-174.51215572799993,-4.691989841999913],[-174.52155514199993,-4.68385182099982],[-174.51671301999986,-4.68425872199991],[-174.50641842399995,-4.689141533999886],[-174.50068111899986,-4.694268487999977]]],[[[-174.5279027989999,-4.683526299999883],[-174.52765865799992,-4.68385182099982],[-174.5338842439999,-4.680759373],[-174.54173743399986,-4.672784112999864],[-174.54010982999995,-4.672051690999837],[-174.5358780589999,-4.677504164999959],[-174.52928626199994,-4.682712497999872],[-174.5279027989999,-4.683526299999883]]],[[[-174.50153561099987,-4.687676690999822],[-174.50084387899994,-4.69109465899983],[-174.5139867829999,-4.676202080999872],[-174.52826900899987,-4.667413018999909],[-174.5380753249999,-4.665215752999827],[-174.54340572799984,-4.660251559999864],[-174.53840084499993,-4.656508070999834],[-174.52440344999988,-4.664483330999971],[-174.50153561099987,-4.687676690999822]]],[[[-172.21471106699988,-4.517347915000016],[-172.20201575399994,-4.52068450299987],[-172.18769283799995,-4.518487237999878],[-172.17438717399992,-4.513116143999909],[-172.2034399079999,-4.532159112999821],[-172.2271622389999,-4.518731377999827],[-172.22960364499994,-4.497328382999867],[-172.2004695299999,-4.493422132999882],[-172.20160885299993,-4.496270440999908],[-172.20103919199988,-4.500095309999921],[-172.20685787699992,-4.501071872999987],[-172.22276770699995,-4.5062802059999],[-172.21471106699988,-4.517347915000016]]],[[[-171.23652096299983,-4.468519790000016],[-171.24958248599995,-4.469821872999844],[-171.25963294199994,-4.465264580999886],[-171.2640274729999,-4.456312757999868],[-171.25995846299995,-4.444105726999894],[-171.25991777299996,-4.444105726999894],[-171.24498450399992,-4.441338799999841],[-171.23387610599988,-4.448988539999945],[-171.23005123599987,-4.46054452899989],[-171.23652096299983,-4.468519790000016]]],[[[-154.95335852799988,-4.094821873],[-154.96479244699992,-4.094984632999967],[-154.9775284499999,-4.078708591999856],[-154.9909154939999,-4.074314059999864],[-154.99848385299993,-4.070000908999872],[-155.0108129549999,-4.060642184999921],[-155.01842200399994,-4.051202080999914],[-155.01170813699989,-4.047051690999879],[-154.96226966099994,-4.032159112999835],[-154.9402970039999,-4.031996351999865],[-154.94660396999993,-4.053155205999872],[-154.9536026679999,-4.060723565999822],[-154.9585668609999,-4.071221612999878],[-154.9592179029999,-4.083184502999913],[-154.95335852799988,-4.094821873]]],[[[-171.0872696609999,-3.143161716999856],[-171.09247799399992,-3.145440362999921],[-171.09357662699995,-3.131442966999956],[-171.09003658799986,-3.120863539999917],[-171.08543860599994,-3.111260674999841],[-171.08311926999988,-3.129978122999901],[-171.0872696609999,-3.143161716999856]]],[[[-171.7150772779999,-2.759047132999939],[-171.68028723899988,-2.775811455999957],[-171.64985104099992,-2.7972958309999],[-171.6296280589999,-2.827243747999873],[-171.62568111899992,-2.847181898999864],[-171.6244604159999,-2.856133721999967],[-171.6257218089999,-2.868910414999917],[-171.63935299399995,-2.862074476999823],[-171.64842688699994,-2.849786065999851],[-171.66010494699995,-2.840508721999981],[-171.6741430329999,-2.834161065999865],[-171.67780514199995,-2.833184502999899],[-171.70787512899986,-2.825127862999864],[-171.71210689999992,-2.823011976999936],[-171.7127172519999,-2.822198174999926],[-171.69318600199986,-2.828301690999837],[-171.66401119699992,-2.835381768999881],[-171.6580704419999,-2.838555596999939],[-171.65282141799992,-2.84319426899988],[-171.65160071499992,-2.844577731999863],[-171.63324947799995,-2.862074476999823],[-171.6331274079999,-2.862074476999823],[-171.63080807199992,-2.858575127999828],[-171.6297501289999,-2.857598565999851],[-171.62848873599995,-2.857028903999961],[-171.6269425119999,-2.855726820999962],[-171.62730872299994,-2.85190195099986],[-171.6538793609999,-2.805922132999896],[-171.66665605399993,-2.793145440999865],[-171.66669674399992,-2.793145440999865],[-171.67870032499994,-2.78492603999986],[-171.69745846299992,-2.775323174999969],[-171.71458899599992,-2.772881768999937],[-171.72191321499994,-2.786309502999842],[-171.72785396999993,-2.778415622999873],[-171.72760982999992,-2.771905205999872],[-171.72276770699995,-2.765801690999893],[-171.7150772779999,-2.759047132999939]]],[[[176.8509220710001,-2.654066664999945],[176.8406681650001,-2.662774346999839],[176.82732181100013,-2.656182549999855],[176.77230879000012,-2.608168226999865],[176.77898196700014,-2.605157158999873],[176.78223717500018,-2.604913018999824],[176.7861434250003,-2.608168226999865],[176.81316165500024,-2.614434502999828],[176.8382267590002,-2.633884372999916],[176.8509220710001,-2.654066664999945]]],[[[175.99317467500018,-2.510349216999899],[175.98943118599996,-2.51091887799987],[175.98698978000013,-2.509860934999921],[175.98471113400004,-2.507907809999878],[175.98170006599995,-2.505954684999921],[175.9768172540001,-2.497816664999988],[175.9731551440003,-2.489678643999895],[175.97999108200017,-2.493584893999881],[175.98511803500023,-2.498304945999976],[175.9892684250003,-2.503838799999912],[175.99317467500018,-2.510349216999899]]],[[[175.5999455090002,-1.895114841999969],[175.5862736340001,-1.922458591999856],[175.58326256600017,-1.911065362999977],[175.5862736340001,-1.870782158999916],[175.57618248800017,-1.856052341999927],[175.55909264400017,-1.832289321],[175.55225670700023,-1.81926848799985],[175.5595809250001,-1.826104424999855],[175.59148196700014,-1.874200127999828],[175.5999455090002,-1.895114841999969]]],[[[175.06055748800028,-1.5316708309999],[175.0382593110002,-1.552422783999887],[175.01254316500015,-1.549248955999829],[175.00847415500024,-1.526788018999838],[175.0208439460001,-1.499932549999841],[175.04509524800005,-1.484144789999888],[175.04509524800005,-1.490980726999823],[175.03614342500023,-1.497165622999887],[175.02588951900023,-1.507256768999852],[175.01856530000023,-1.519626559999878],[175.0183211600001,-1.531914971999839],[175.02800540499996,-1.541192315999893],[175.03785241000014,-1.535251559999864],[175.04566491000017,-1.524183851999837],[175.04883873800023,-1.518243096999896],[175.05827884200025,-1.506768487999864],[175.0588485040001,-1.480564059999921],[175.05176842500023,-1.452732028999861],[175.0382593110002,-1.436293226999865],[175.04509524800005,-1.428887627999885],[175.04810631600017,-1.432793877999885],[175.0511173840001,-1.434502862999878],[175.05876712300022,-1.436293226999865],[175.0666610040001,-1.46103280999985],[175.06861412900017,-1.497002862999821],[175.06055748800028,-1.5316708309999]]],[[[176.45932050899992,-1.405857028999904],[176.4640405610002,-1.436293226999865],[176.44988040500013,-1.425388278999975],[176.4421492850001,-1.408786716999842],[176.4367781910001,-1.390394789999974],[176.42986087300014,-1.37428150799991],[176.41032962300022,-1.350355726999865],[176.4011336600001,-1.3363583309999],[176.39568118600013,-1.319594007999882],[176.40235436300028,-1.320489190999865],[176.4054468110002,-1.323500257999868],[176.40935306100025,-1.332696221999853],[176.42644290500013,-1.347100518999909],[176.44483483200017,-1.373793226999922],[176.45932050899992,-1.405857028999904]]],[[[175.97730553500003,-1.284844658999916],[175.9892684250003,-1.306817315999922],[176.0092879570002,-1.334242445999891],[176.02344811300017,-1.362888278999861],[176.01832116000006,-1.38787200299987],[176.01197350399994,-1.3812802059999],[176.0027775400001,-1.375583592],[175.98357181100016,-1.367445570999905],[175.98357181100016,-1.360609632999967],[175.99317467500018,-1.362562757999839],[176.01832116000006,-1.37428150799991],[176.01490319100017,-1.356540622999916],[176.00635826900012,-1.342705987999835],[175.98357181100016,-1.319594007999882],[175.9658309250003,-1.295179946],[175.95590253999993,-1.286553643999824],[175.94312584700018,-1.284844658999916],[175.94434655000018,-1.289320570999877],[175.9455672540001,-1.292168877999913],[175.94939212300014,-1.298516533999859],[175.93702233200028,-1.293064059999907],[175.94214928500017,-1.284844658999916],[175.95801842500026,-1.280205987999892],[175.97730553500003,-1.284844658999916]]],[[[174.77271569100023,-1.247735283999987],[174.77881920700023,-1.264418226999851],[174.75586998800023,-1.257500908999845],[174.7483016290001,-1.237481377999885],[174.7507430350001,-1.199476820999877],[174.74675540500021,-1.1859677059999],[174.71664472700022,-1.134698174999869],[174.7253524100001,-1.135511976999879],[174.73161868600025,-1.137953382999825],[174.7374780610002,-1.142266533999916],[174.7439884770001,-1.148370049999983],[174.74756920700023,-1.166110934999978],[174.76514733200025,-1.202894789999888],[174.77271569100023,-1.247735283999987]]],[[[169.55445397200018,-0.869317315999965],[169.55347741,-0.872247002999984],[169.55250084700006,-0.873793226999851],[169.55054772200015,-0.875583591999927],[169.54810631600006,-0.876885674999841],[169.54525800900004,-0.877211195999948],[169.5431421230002,-0.878024997999873],[169.54127037900005,-0.877618096999868],[169.54004967500012,-0.876641533999887],[169.53891035200013,-0.874607028999861],[169.53549238400015,-0.872002862999864],[169.53370201900006,-0.871514580999957],[169.53028405000018,-0.871514580999957],[169.5275985040001,-0.872491143999852],[169.52507571700008,-0.87086354],[169.523203972,-0.868259372999916],[169.52214603000007,-0.865004164999874],[169.52263431100002,-0.860528252999913],[169.52295983200005,-0.859307549999897],[169.5237736340001,-0.856622002999828],[169.52475019600016,-0.854668877999956],[169.52507571700008,-0.853773695999962],[169.5275985040001,-0.850844007999854],[169.53248131600017,-0.849541924999855],[169.53638756600006,-0.847914320999934],[169.54070071700008,-0.847914320999934],[169.54517662900003,-0.847914320999934],[169.54908287900005,-0.851820570999919],[169.5522567070001,-0.854180596999967],[169.55445397200018,-0.856052341999856],[169.55591881600003,-0.859144789999931],[169.55591881600003,-0.859795830999886],[169.5556746750001,-0.860772393999866],[169.55534915500007,-0.863376559999864],[169.55534915500007,-0.866143487999906],[169.55445397200018,-0.869317315999965]]],[[[174.49732506600006,-0.805108330999929],[174.4834090500003,-0.819431247999916],[174.47388756600012,-0.812758070999877],[174.46973717500018,-0.806735934999949],[174.47234134200025,-0.801853122999887],[174.4834090500003,-0.798923434999878],[174.4811304050001,-0.8046200499999],[174.48080488400007,-0.805759372999972],[174.4819442070001,-0.806817315999851],[174.4834090500003,-0.812595309999906],[174.49756920700025,-0.796888929999852],[174.49773196700025,-0.79631926899988],[174.49773196700025,-0.794773044999928],[174.49390709700018,-0.775485934999978],[174.47657311300017,-0.740329684999921],[174.4629012380002,-0.648125908999873],[174.47657311300017,-0.669122002999913],[174.47657311300017,-0.709567966999856],[174.4793400400002,-0.720391533999844],[174.4907332690003,-0.747165622999859],[174.49838300899992,-0.789157809999921],[174.4979761080001,-0.795830987999892],[174.49789472700022,-0.796482028999932],[174.49732506600006,-0.805108330999929]]],[[[174.46363366000003,-0.644789321000019],[174.452647332,-0.648125908999873],[174.43718509200016,-0.64080169099995],[174.39161217500023,-0.605645440999893],[174.38086998800023,-0.592868747999944],[174.3938908210001,-0.592868747999944],[174.40259850400014,-0.602227471999896],[174.42994225400005,-0.623467705999872],[174.43873131600023,-0.627618096999825],[174.44711347700016,-0.630791924999883],[174.45866946700014,-0.637872002999842],[174.46363366000003,-0.644789321000019]]],[[[173.63754316500015,0.176499742000189],[173.62061608200017,0.133368231000162],[173.60987389400023,0.143052476000136],[173.61451256600017,0.155096747000059],[173.6341251960002,0.174017645000077],[173.63835696700014,0.195217190000065],[173.63379967499998,0.200873114000146],[173.62330162900022,0.20799388200011],[173.60621178500017,0.215969143000152],[173.62867272200012,0.219142971000039],[173.63648522200012,0.216742255],[173.64112389399997,0.208441473000107],[173.64136803500023,0.200018622000144],[173.6407983730002,0.192124742000175],[173.63754316500015,0.176499742000189]]],[[[173.83228600400017,0.448675848000022],[173.89087975400022,0.418402411000116],[173.91724694100023,0.399481512000179],[173.92164147200012,0.379787502000141],[173.86768639400015,0.41958242400014],[173.83204186300011,0.436346747000158],[173.8049422540001,0.434393622000115],[173.80876712300014,0.441595770000134],[173.8132430350001,0.446926174000026],[173.81861412900022,0.4513207050001],[173.82545006600014,0.455511786000116],[173.83228600400017,0.448675848000022]]],[[[172.98975670700005,0.828029690000108],[172.990000847,0.825425523000121],[172.98633873800023,0.82916901200015],[172.98340905000023,0.831284898000149],[172.98715254000015,0.832342841000113],[172.98894290500007,0.833197333000115],[172.9902449880002,0.833970445000133],[172.990000847,0.830267645000092],[172.98975670700005,0.828029690000108]]],[[[172.98243248800017,0.831162828000089],[172.9793400400001,0.830755927000084],[172.9753524100001,0.831691799000069],[172.9721785820002,0.834540106000105],[172.96941165500007,0.839667059000035],[172.9757593110002,0.839667059000035],[172.97779381600003,0.836330471000011],[172.97950280000023,0.834214585000083],[172.98243248800017,0.831162828000089]]],[[[173.01465905000012,1.008856512000165],[173.06495201900017,0.976263739000103],[173.075938347,0.965887762000108],[173.079925977,0.960394598000079],[173.07927493600008,0.945217190000093],[173.06120853,0.914211330000072],[173.04981530000015,0.904201565000093],[173.0112410820001,0.85415273600016],[172.99097741000017,0.83441803600013],[172.99659264400006,0.845038153000175],[173.01368248800023,0.860337632000139],[173.02271569100006,0.88271719000015],[173.04664147200012,0.901516018000024],[173.05591881600006,0.927720445000133],[173.06413821700008,0.938299872000101],[173.07129967500012,0.949896552000027],[173.07178795700005,0.962591864000075],[173.06226647200018,0.975165106000162],[173.04493248800011,0.987779039000145],[173.02556399800008,0.998032945000162],[173.00977623800023,1.003607489000089],[173.00953209700018,1.000230209999984],[173.00977623800023,0.989935614000146],[173.00367272200006,0.989935614000146],[173.0034285820001,1.001410223],[173.00049889400006,1.010646877000141],[172.99561608200008,1.018052476000051],[172.990000847,1.024074611000145],[173.00367272200006,1.024074611000145],[173.01465905000012,1.008856512000165]]],[[[173.17139733200023,1.362372137000065],[173.16293378999998,1.356512762000108],[173.15064537900005,1.356431382000124],[173.12647545700023,1.361070054000066],[173.1045028000001,1.36196523600006],[173.07862389400012,1.360012111000017],[173.05445397200018,1.353583075000088],[173.03825931100002,1.341050523000177],[173.02442467500023,1.336615302000112],[173.01807701900012,1.335923570000162],[173.0112410820001,1.337347723000136],[173.05958092500012,1.359767971000068],[173.08472741000017,1.366685289000145],[173.15154056100002,1.371812242000161],[173.16065514400012,1.374945380000056],[173.14332116000006,1.380316473000107],[173.15316816500012,1.386542059000149],[173.16431725400017,1.383246161000116],[173.17172285200016,1.374172268000038],[173.17139733200023,1.362372137000065]]],[[[172.98316491000017,1.531195380000085],[172.978282097,1.531195380000085],[172.9753524100001,1.532945054000081],[172.97299238400012,1.535589910999988],[172.96941165500007,1.537990627000028],[172.96314537900005,1.56024811400006],[172.95915774800002,1.609686591000113],[172.94898522200012,1.627346096000124],[172.96290123800006,1.620591539000102],[172.9723413420002,1.590236721000124],[172.98316491000017,1.531195380000085]]],[[[173.02930748800011,1.71629466400006],[173.00367272200006,1.709295966000155],[172.99634850400005,1.710679429000052],[172.99317467500006,1.712062893000123],[172.990000847,1.715521552000041],[173.02377363399998,1.721096096000139],[173.03549238399995,1.74355703300013],[173.03337649800008,1.774318752000113],[173.02466881600017,1.804877020000148],[173.0258895190001,1.806138414000145],[173.02662194100006,1.807521877000127],[173.027110222,1.808905341000113],[173.02735436300017,1.81045156500015],[173.0361434250002,1.777167059000149],[173.038340691,1.742377020000106],[173.02930748800011,1.71629466400006]]],[[[173.020274285,1.82807038],[173.02344811300006,1.821437893000109],[172.9757593110002,1.873765367000104],[172.96143639400012,1.899644273000121],[172.95508873800011,1.907945054000095],[172.93848717500023,1.923163153000161],[172.93360436300014,1.931463934000064],[172.9347436860002,1.942694403000146],[172.94174238400007,1.926947333000015],[172.96941165500007,1.907049872000101],[172.9757593110002,1.897650458000086],[172.98031660200016,1.8820254580001],[173.020274285,1.82807038]]],[[[-157.42381751199986,2.020453192000062],[-157.38585364499994,1.990464585000097],[-157.32184811099992,1.972113348000135],[-157.3101293609999,1.973089911000116],[-157.31139075399986,1.962591864000061],[-157.31505286399994,1.952785549000112],[-157.32066809799994,1.94550202000002],[-157.33617102799994,1.939113674000083],[-157.34044348899988,1.930243231000048],[-157.34491939999992,1.907945054000095],[-157.3477270169999,1.860785223000107],[-157.32542883999992,1.835842190000079],[-157.28978430899988,1.818752346000138],[-157.25243079299992,1.795314846000153],[-157.2383927069999,1.783636786000073],[-157.22297115799995,1.773586330000086],[-157.20689856699988,1.766546942000033],[-157.19098873599995,1.763902085000126],[-157.17939205599993,1.753892320000148],[-157.17463131399992,1.733791408000016],[-157.1787817049999,1.718491929000052],[-157.1940811839999,1.722967841000099],[-157.20307369699995,1.717474677000084],[-157.21324622299989,1.71279531500015],[-157.22411048099988,1.70970286700016],[-157.23505611899995,1.709295966000155],[-157.24640865799992,1.71332428600013],[-157.2546280589999,1.720282294000128],[-157.26085364499988,1.726874091000099],[-157.27118893099987,1.732977606000176],[-157.2815649079999,1.747056382000125],[-157.28685462099986,1.750230210000012],[-157.30927486899986,1.751898505000113],[-157.41059322799993,1.781927802000069],[-157.44896399599995,1.800238348000036],[-157.48265540299994,1.8253848330001],[-157.50861568899995,1.849595445000105],[-157.52826900899987,1.862494208000029],[-157.53730221299992,1.856675523000149],[-157.5468236969999,1.85643138200011],[-157.56602942599994,1.863755601000037],[-157.58116614499994,1.880316473],[-157.57823645699995,1.907945054000095],[-157.5723363919999,1.912787177000084],[-157.54352779899986,1.929022528000033],[-157.53014075399986,1.93056875200007],[-157.5212296209999,1.927679755000042],[-157.51756751199986,1.923651434000149],[-157.51988684799994,1.921576239000131],[-157.53282630099994,1.916083075000117],[-157.54535885299993,1.90232982000019],[-157.54950924399986,1.884466864000131],[-157.53730221299992,1.866359768000123],[-157.5269262359999,1.864813544000086],[-157.5130509109999,1.866603908000073],[-157.50092525899993,1.865871486000046],[-157.49571692599994,1.856675523000149],[-157.4906713529999,1.850165106000077],[-157.47883053299995,1.847967841000084],[-157.4547826809999,1.847072658],[-157.4346817699999,1.83852773600016],[-157.42853756399987,1.838568427000055],[-157.43736731699994,1.850165106000077],[-157.44794674399986,1.85748932500016],[-157.45860755099991,1.862127997000016],[-157.4680883449999,1.868353583000058],[-157.47520911399988,1.880601304000038],[-157.46235104099995,1.876288153000118],[-157.45164954299992,1.876410223000093],[-157.4457901679999,1.883734442000105],[-157.44733639199993,1.901109117000175],[-157.4365942049999,1.893866278000147],[-157.43248450399986,1.883734442000105],[-157.43000240799995,1.872788804000123],[-157.42369544199988,1.863226630000057],[-157.4119766919999,1.858465887000136],[-157.40794837099992,1.866156317000076],[-157.41002356699988,1.879380601000193],[-157.42442786399994,1.901841539000102],[-157.42638098899985,1.912054755000057],[-157.42438717399995,1.921210028000118],[-157.41999264199995,1.929022528000033],[-157.40831458199995,1.921454169000157],[-157.40314693899995,1.924221096000124],[-157.4063207669999,1.942694403000146],[-157.39472408799992,1.935736395000063],[-157.39399166599986,1.926743882000139],[-157.3958634109999,1.91697825700011],[-157.3920792309999,1.907945054000095],[-157.3820694649999,1.902167059000135],[-157.37718665299985,1.90525950700011],[-157.3739721339999,1.911363023000192],[-157.36384029899995,1.917385158000116],[-157.35846920499986,1.923895575000103],[-157.35411536399988,1.931830145000077],[-157.35236568899987,1.938950914000117],[-157.3550512359999,1.94765859600011],[-157.36168372299994,1.951483466000113],[-157.37962805899988,1.955715236000131],[-157.40888424399992,1.969305731000091],[-157.4453018869999,1.994370835000012],[-157.45103919199988,1.99730052300012],[-157.45539303299995,2.002997137000094],[-157.4662979809999,2.013332424000111],[-157.4775284499999,2.018133856000091],[-157.48265540299994,2.007228908000116],[-157.48790442599994,2.000555731000162],[-157.4988907539999,2.002183335000083],[-157.50841223899988,2.010687567000033],[-157.5093888009999,2.024603583000015],[-157.4962865879999,2.034409898000121],[-157.4745987619999,2.033351955000072],[-157.42381751199986,2.020453192000062]]],[[[173.28907311300017,2.050360419000128],[173.29346764400023,2.043443101000051],[173.2937117850001,2.042303778000019],[173.2959090500003,2.033636786000102],[173.29835045700023,2.013983466000155],[173.30543053500017,1.993312893000052],[173.3094181650001,1.984320380000113],[173.31251061300017,1.98208242400014],[173.3156844410002,1.979966539000131],[173.31836998800028,1.976996161000031],[173.31804446700025,1.974025783000101],[173.31788170700025,1.970770575000145],[173.31592858200028,1.967759507000053],[173.31299889400017,1.96552155200007],[173.31072024800025,1.96417877800009],[173.3088485040001,1.963120835000041],[173.30445397200012,1.961574611],[173.29737389400017,1.961574611],[173.28484134200025,1.963771877000084],[173.26921634200022,1.967718817000062],[173.26026451900023,1.971136786000073],[173.25749759200016,1.974595445000162],[173.25586998800017,1.985663153000104],[173.2561955090002,1.989976304000109],[173.25847415500021,1.992824611000145],[173.26148522200006,1.99323151200015],[173.2630314460001,1.991400458],[173.26392662900022,1.988470770000063],[173.26351972700007,1.983587958000086],[173.26392662900022,1.978013414000088],[173.27165774800014,1.974839585000112],[173.28931725400022,1.970038153000118],[173.2937117850001,1.969142971000124],[173.3015242850001,1.968695380000127],[173.30469811300017,1.969549872000129],[173.30591881600017,1.969875393000066],[173.30787194100023,1.973293361000074],[173.3068139980002,1.976467190000051],[173.30591881600017,1.980698960000069],[173.30079186300028,1.985663153000104],[173.29737389400017,1.989894924000126],[173.2976180350002,1.991441148000163],[173.2967228520001,1.993719794000057],[173.29615319099995,1.99701569200009],[173.2937117850001,2.005438544000128],[173.2915145190002,2.015122789000188],[173.29184004000004,2.019476630000085],[173.2915145190002,2.026678778000033],[173.28972415500024,2.033840236000159],[173.28711998800011,2.038560289000159],[173.28467858200028,2.040269273000163],[173.2815861340002,2.04181549700003],[173.27702884200025,2.044378973000036],[173.2705184250003,2.04555898600006],[173.26612389400017,2.043850002000056],[173.26465905000012,2.036769924000083],[173.2669376960002,2.02041250200007],[173.2685653000002,2.011419989000061],[173.26677493600022,2.004299221000096],[173.2627059250003,1.997463283000087],[173.25782311300023,1.99701569200009],[173.25806725400005,1.997626044000143],[173.25928795700028,2.000881252000084],[173.26026451900023,2.007228908000116],[173.2605086600001,2.012844143000123],[173.2600203790001,2.018784898000135],[173.25749759200016,2.028469143000109],[173.25806725400005,2.034002997000115],[173.25961347700022,2.043402411000059],[173.26205488400012,2.04987213700015],[173.26465905000012,2.055161851000122],[173.2685653000002,2.059312242000075],[173.27361087299997,2.059556382000025],[173.27800540500013,2.058661200000031],[173.28288821700016,2.056341864000146],[173.28907311300017,2.050360419000128]]],[[[172.88575280000023,3.06191640800013],[172.88013756600006,3.052476304000038],[172.8444116550002,3.059800523000121],[172.81226647200006,3.040472723000107],[172.78646894600004,3.016913153000147],[172.77027428500014,3.011460679000109],[172.76335696700008,3.01459381700009],[172.75757897200018,3.019029039000074],[172.75342858200014,3.024807033000129],[172.7503361340001,3.031968492000161],[172.77149498800006,3.023871161000145],[172.7882593110002,3.029038804000052],[172.80225670700017,3.041693427000112],[172.81462649800017,3.056219794000156],[172.82911217500023,3.064276434000092],[172.86801191500015,3.067775783],[172.88697350400005,3.072943427000084],[172.88689212300008,3.06639232000019],[172.88575280000023,3.06191640800013]]],[[[172.89975019599999,3.10024648600016],[172.88697350400005,3.10024648600016],[172.94418379000004,3.127386786000088],[172.96208743600008,3.141831773000135],[172.96705162900003,3.135402736000045],[172.96827233200023,3.132391669000043],[172.96941165500007,3.128159898000106],[172.94703209700006,3.12303294500019],[172.89975019599999,3.10024648600016]]],[[[-159.3422745429999,3.92576732000012],[-159.3313695949999,3.910711981000105],[-159.32677161399988,3.901190497000116],[-159.32489986899992,3.891669012000122],[-159.31989498599984,3.879095770000121],[-159.3080948559999,3.87645091400013],[-159.29466712099992,3.877264716000141],[-159.28453528599985,3.874823309000121],[-159.2779027989999,3.866441148000149],[-159.26642818899995,3.845363674000126],[-159.25328528599988,3.828680731000091],[-159.24998938699994,3.81976959800015],[-159.25263424399992,3.810044664000102],[-159.26341712099992,3.799139716000127],[-159.28376217399995,3.790187893000094],[-159.30870520699995,3.784654039000088],[-159.33344479099992,3.786444403000075],[-159.35285396999996,3.799139716000127],[-159.36078854099992,3.819403387000136],[-159.34276282499988,3.819566148000192],[-159.29478919199988,3.805975653000147],[-159.2852270169999,3.811428127000084],[-159.28388424399992,3.823919989000103],[-159.28718014199995,3.837836005000085],[-159.29137122299989,3.847601630000113],[-159.29967200399994,3.854641018000095],[-159.32514400899993,3.865301825000117],[-159.33543860599985,3.871486721000096],[-159.34203040299994,3.88149648600016],[-159.34784908799992,3.902777411000144],[-159.35285396999996,3.909002997000101],[-159.36615963399996,3.911444403000132],[-159.37824459499996,3.907171942000133],[-159.38788814999992,3.89874909100017],[-159.39378821499986,3.888576565000136],[-159.36713619699992,3.840155341000141],[-159.4100235669999,3.862046617000161],[-159.40632076699995,3.902573960000097],[-159.37682044199988,3.933294989000089],[-159.3422745429999,3.92576732000012]]],[[[-160.38276119699987,4.706976630000128],[-160.3953751289999,4.704779364000146],[-160.4103897779999,4.70917389500012],[-160.41661536399988,4.717108466000099],[-160.41181393099987,4.721625067000147],[-160.40119381399992,4.723089911000102],[-160.39000403599994,4.721014716000083],[-160.37889563699989,4.713283596000082],[-160.38276119699987,4.706976630000128]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"New Caledonia","adm0_a3":"NCL","geou_dif":0,"geounit":"New Caledonia","gu_a3":"NCL","su_dif":0,"subunit":"New Caledonia","su_a3":"NCL","brk_diff":0,"name":"New Caledonia","name_long":"New Caledonia","brk_a3":"NCL","brk_name":"New Caledonia","brk_group":null,"abbrev":"New C.","postal":"NC","formal_en":"New Caledonia","formal_fr":"Nouvelle-Calédonie","note_adm0":"Fr.","note_brk":null,"name_sort":"New Caledonia","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":227436,"gdp_md_est":3158,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"NC","iso_a2":"NC","iso_a3":"NCL","iso_n3":"540","un_a3":"540","wb_a2":"NC","wb_a3":"NCL","woe_id":23424903,"woe_id_eh":23424903,"woe_note":"Exact WOE match as country","adm0_a3_is":"NCL","adm0_a3_us":"NCL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":13,"long_len":13,"abbrev_len":6,"tiny":-99,"homepart":-99,"filename":"NCL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.54468834700018,-22.598239841999984],[167.55469811300003,-22.61223723799995],[167.55518639400023,-22.63844166499989],[167.54297936300006,-22.630140882999907],[167.53093509200008,-22.605564059999974],[167.52100670700005,-22.603692315999833],[167.51612389400012,-22.611260674999883],[167.51661217500006,-22.624118747999898],[167.52100670700005,-22.648695570999905],[167.50733483200023,-22.670668226999837],[167.475840691,-22.667087497999944],[167.41871178500006,-22.645277601999908],[167.42400149800017,-22.62029387799997],[167.4244897800002,-22.561700127999856],[167.4323022800002,-22.54225025799985],[167.45020592500023,-22.538018487999835],[167.4768986340001,-22.543389580999886],[167.50342858200023,-22.55494557099982],[167.52100670700005,-22.56959400799991],[167.53150475400005,-22.587090752999956],[167.54468834700018,-22.598239841999984]]],[[[166.84343509200008,-22.424411717],[166.84058678500006,-22.43124765399993],[166.83570397200006,-22.432061455999857],[166.82894941500004,-22.42555104000003],[166.82129967500003,-22.431410414999903],[166.81576582100016,-22.43482838299991],[166.8017684250001,-22.43987395599993],[166.8017684250001,-22.44597747199984],[166.82097415500004,-22.448825778999876],[166.81885826900023,-22.455824476999936],[166.80811608200023,-22.46233489399985],[166.8017684250001,-22.46306731599988],[166.79444420700008,-22.46054452899986],[166.78028405000006,-22.457614842000012],[166.77076256600017,-22.45061614399995],[166.77767988399998,-22.436455987999917],[166.78516686300023,-22.42473723799985],[166.78638756600017,-22.415134372999873],[166.7893986340001,-22.406670830999914],[166.8017684250001,-22.398858330999843],[166.81478925899998,-22.3951148419999],[166.82545006600006,-22.395684502999867],[166.83432050899995,-22.40146249799993],[166.8432723320001,-22.41253020599987],[166.84343509200008,-22.424411717]]],[[[171.34376528700014,-22.34634159799991],[171.3419217620001,-22.34923856499998],[171.33902479500003,-22.347658401999965],[171.34060495900022,-22.34476143499991],[171.34376528700014,-22.34634159799991]]],[[[167.971934441,-21.37525807099992],[167.96664472700004,-21.39430104],[167.971934441,-21.411228122999987],[167.98365319100012,-21.429375908999987],[167.99732506600006,-21.444594007999967],[168.00766035200002,-21.452894789999945],[168.03874759200002,-21.459730726999965],[168.07447350400014,-21.455743096999896],[168.10922285200002,-21.44500090899997],[168.137461785,-21.431817315999833],[168.14421634200002,-21.452732028999886],[168.14372806100008,-21.48870208099987],[168.136485222,-21.527276299999926],[168.12378991000017,-21.55535247199994],[168.129079623,-21.601332289999903],[168.12680097700013,-21.622247002999956],[168.114105665,-21.631036065999837],[168.10189863400004,-21.63298919099988],[168.06421959700006,-21.64299895599994],[168.03541100399997,-21.65846119599996],[167.99293053500006,-21.65496184699998],[167.9581811860002,-21.638441665],[167.95997155000003,-21.61060963299994],[167.93897545700023,-21.60165780999992],[167.91260826900023,-21.595635675],[167.88575280000023,-21.59539153399996],[167.8636173840001,-21.60369231599995],[167.86117597700002,-21.600681247999855],[167.859222852,-21.597344659],[167.85775800900004,-21.59384531000002],[167.85678144600016,-21.58953215899993],[167.8674422540001,-21.582777601999894],[167.87989342500012,-21.57268645599993],[167.88949628999998,-21.559014580999985],[167.89161217500012,-21.541680597],[167.8864038420002,-21.53346119599982],[167.8639429050002,-21.510674737999963],[167.85678144600016,-21.50074635199988],[167.85084069100006,-21.482842706],[167.847911004,-21.456231377999885],[167.84392337300002,-21.439222914999913],[167.83611087300002,-21.422621351999865],[167.80844160200004,-21.383965752999984],[167.82300866000017,-21.377048434999907],[167.83594811300006,-21.374281507999854],[167.84880618600016,-21.37476978999993],[167.8636173840001,-21.377211195999962],[167.88917076900015,-21.38860442499984],[167.9049585300002,-21.39275481599996],[167.92221113400004,-21.37818775799994],[167.98780358200023,-21.335625908999972],[167.99040774800002,-21.34872812299994],[167.971934441,-21.37525807099992]]],[[[166.45850670700023,-20.719903252999885],[166.45337975400005,-20.728936455999982],[166.4435327480002,-20.733493748000015],[166.4181421230002,-20.740411065999933],[166.41260826900006,-20.735121351999865],[166.40739993600008,-20.731540622999972],[166.40064537900005,-20.728936455999982],[166.39087975399997,-20.72673919099999],[166.39844811300023,-20.721937757999825],[166.40642337300017,-20.71965911299985],[166.41521243600008,-20.71900807099989],[166.4249780610002,-20.719903252999885],[166.43295332100013,-20.71900807099989],[166.45850670700023,-20.719903252999885]]],[[[167.30128014400012,-20.71306731599995],[167.3082788420002,-20.730889580999925],[167.3004663420002,-20.74814218499993],[167.28793378999995,-20.76555755],[167.2815047540001,-20.78443775799985],[167.28223717500012,-20.79631926899998],[167.288340691,-20.822360934999878],[167.30128014400012,-20.84970468500002],[167.2975366550002,-20.86223723799985],[167.28435306100002,-20.882256768999905],[167.2815047540001,-20.89430104],[167.28467858200017,-20.901788018999895],[167.2924910820002,-20.90569426899998],[167.30250084700006,-20.909112237999977],[167.31226647200018,-20.91480885199988],[167.322520379,-20.923760675],[167.33106530000012,-20.92945728999989],[167.35670006600017,-20.938409112999903],[167.36841881600017,-20.939548434999946],[167.37818444099997,-20.939060153999957],[167.38550865999997,-20.941664320999948],[167.3907983730002,-20.952732028999904],[167.39437910200016,-20.95769622199994],[167.40040123800006,-20.967950127999885],[167.40503991,-20.97242604000003],[167.39389082100007,-20.989922783999987],[167.39039147200018,-20.999444268999895],[167.3907983730002,-21.00790781000002],[167.39918053500006,-21.019219658999912],[167.4098413420002,-21.023207289999974],[167.4213973320001,-21.024509372999972],[167.4323022800002,-21.02776458099984],[167.4448348320001,-21.036797783999944],[167.45948326900012,-21.050876559999892],[167.464691602,-21.063653252999842],[167.4318139980002,-21.07488372199984],[167.4253035820001,-21.089125257999925],[167.42546634200008,-21.127373955999882],[167.42335045700005,-21.147556247999912],[167.4170028000002,-21.160088799999908],[167.40609785200016,-21.16904062299993],[167.3907983730002,-21.17864348799992],[167.37387129000004,-21.171807549999983],[167.35108483200008,-21.171807549999983],[167.33106530000012,-21.164157809999878],[167.32243899800017,-21.13420989399999],[167.31495201900023,-21.129571221999882],[167.29859459700006,-21.127373955999882],[167.28207441500015,-21.123467705999968],[167.27466881600017,-21.113702080999857],[167.27295983200005,-21.09693775799984],[167.2675887380001,-21.091485283999972],[167.176036004,-21.082207940999936],[167.14633222700016,-21.073011976999947],[167.12012780000023,-21.051934502999938],[167.09644616,-21.02776458099984],[167.0939233730002,-21.020765882999953],[167.09229576900006,-21.01165129999987],[167.08838951900006,-21.00383879999997],[167.0673934250002,-20.99635182099982],[167.06153405000012,-20.98626067499994],[167.06202233200005,-20.973077080999985],[167.06861412900017,-20.959567967],[167.02849368600002,-20.925388279000018],[167.02084394600004,-20.911716403999975],[167.0822046230002,-20.916192315999865],[167.10271243600008,-20.911716403999975],[167.12159264400012,-20.901543877999856],[167.13347415500007,-20.89006926899999],[167.15113366000014,-20.8632138],[167.1811629570001,-20.829847915000016],[167.19092858200023,-20.809991143999923],[167.18531334700006,-20.788181247999884],[167.17286217500023,-20.78142669099985],[167.12012780000023,-20.760186455999957],[167.0444442070002,-20.768243096999896],[167.04249108200008,-20.758558851999936],[167.04704837300002,-20.737237237999874],[167.05884850399997,-20.71599700299997],[167.07911217500012,-20.706231377999856],[167.11312910200016,-20.70110442499984],[167.12012780000023,-20.702813408999845],[167.12696373800023,-20.708672783999887],[167.13428795700014,-20.711683851999975],[167.14307701900012,-20.712985934999974],[167.15430748800023,-20.71306731599995],[167.164317254,-20.71013762799994],[167.17188561300017,-20.702569268999895],[167.1767684250001,-20.69255950299991],[167.17847741000006,-20.68206145599993],[167.21257571700002,-20.672133070999845],[167.28777103000002,-20.711521092000012],[167.30128014400012,-20.71306731599995]]],[[[166.62354576900023,-20.400648695999962],[166.62964928500006,-20.413750908999845],[166.6372176440001,-20.42506275799982],[166.64828535200004,-20.432793877999924],[166.67335045700023,-20.445733330999843],[166.6782332690001,-20.45240650799998],[166.67383873800011,-20.463636976999894],[166.66309655000012,-20.467380467],[166.63347415500007,-20.465997002999938],[166.6207788420002,-20.469333591999952],[166.61133873800006,-20.477227471999853],[166.60572350400017,-20.487399997999972],[166.60377037900005,-20.49716562299993],[166.60092207099999,-20.499932549999983],[166.58570397199998,-20.538018487999878],[166.5792749360002,-20.549574476999894],[166.57862389400023,-20.564873955999957],[166.58204186300017,-20.592950127999867],[166.58765709700006,-20.599867445999948],[166.60092207099999,-20.60019296699997],[166.62973066500004,-20.596368096999967],[166.59148196700008,-20.665134372999944],[166.57520592500023,-20.685153904],[166.55958092500023,-20.695082290000016],[166.53728274800014,-20.704685153999904],[166.51351972700004,-20.711521092000012],[166.49390709700006,-20.71306731599995],[166.48585045700023,-20.706231377999856],[166.47966556100005,-20.699395440999837],[166.49512780000006,-20.693454684999907],[166.50896243600008,-20.683526299999983],[166.53419030000023,-20.658461195999905],[166.55079186300011,-20.637139580999843],[166.55827884200005,-20.62444426899988],[166.56137129000015,-20.6066220029999],[166.55958092500023,-20.545668226999904],[166.56495201900012,-20.531508070999976],[166.57650800900015,-20.517266533999972],[166.58887780000006,-20.497653903999918],[166.59888756600017,-20.476739190999865],[166.60377037900005,-20.45859140399986],[166.59937584700006,-20.43962981599985],[166.58033287900017,-20.41472747199991],[166.5714624360002,-20.40593840899993],[166.56723066499998,-20.407321873],[166.56137129000015,-20.41082122199991],[166.56373131600012,-20.40195077899996],[166.57455488399998,-20.39234791499989],[166.58952884200002,-20.38543059699998],[166.60377037900005,-20.38347747199994],[166.61597740999997,-20.38941822699995],[166.62354576900023,-20.400648695999962]]],[[[164.0135197270001,-20.08310312299986],[164.03223717500023,-20.09384531],[164.05176842500012,-20.10930754999998],[164.06739342500012,-20.126071873],[164.07740319100012,-20.14983489399991],[164.08676191500004,-20.155450127999913],[164.10914147200006,-20.164971612999906],[164.18295332100016,-20.247328382999854],[164.1979272800002,-20.260511976999975],[164.24431399800008,-20.28533294099995],[164.26433353000002,-20.288669528999975],[164.28663170700005,-20.281019789999945],[164.29281660200004,-20.281019789999945],[164.305918816,-20.308770440999837],[164.31657962300002,-20.319105726999933],[164.3344832690001,-20.321465752999984],[164.32545006600017,-20.309177342],[164.31088300900015,-20.275160414999988],[164.30437259200008,-20.24277109199998],[164.3064884770001,-20.235039971999896],[164.31576582100004,-20.234795830999857],[164.49561608200008,-20.30022551899991],[164.52751712300002,-20.326592705999985],[164.5808211600001,-20.390883070999834],[164.59522545700017,-20.40357838299998],[164.61524498800023,-20.417087497999958],[164.63624108200003,-20.427504164999945],[164.65349368600008,-20.43181731599995],[164.68458092500006,-20.45859140399986],[164.6948348320001,-20.463067315999922],[164.72543379000004,-20.472832940999865],[164.7397567070001,-20.485528252999913],[164.767751498,-20.52076588299995],[164.78321373800023,-20.52809010199988],[164.79175866000014,-20.5350888],[164.82781009200002,-20.58269622199992],[164.87964928500006,-20.62656015399989],[164.88941491000017,-20.6273739559999],[164.91976972700016,-20.645114841999984],[164.93523196700008,-20.65911223799995],[164.93034915500016,-20.672133070999845],[164.94792728000002,-20.68368905999995],[164.98853600400005,-20.68531666499989],[165.0055444670002,-20.699395440999837],[165.02442467500023,-20.705743096999868],[165.06153405000023,-20.734063408999983],[165.1671655610002,-20.75408294099988],[165.170176629,-20.756036065999922],[165.17823326900023,-20.76531340899996],[165.18409264400006,-20.768243096999896],[165.18751061300011,-20.76702239399988],[165.192556186,-20.76360442499995],[165.19857832100004,-20.76051197699998],[165.20525149800008,-20.760186455999957],[165.21753991000006,-20.764418226999965],[165.22201582099999,-20.767998955999854],[165.22510826900006,-20.772881768999923],[165.23267662900003,-20.78069426899999],[165.25684655000023,-20.80006275799984],[165.2644149100001,-20.81324635199996],[165.25993899800002,-20.82854583099993],[165.27003014400012,-20.869561455999857],[165.2804468110002,-20.88388437299993],[165.2955835300002,-20.894219658999926],[165.3110457690001,-20.902601820999905],[165.32325280000006,-20.91277434699985],[165.32829837300017,-20.92839934699984],[165.33668053500017,-20.931573174999897],[165.3896590500001,-20.938409112999903],[165.40772545700023,-20.943942967000012],[165.41309655000006,-20.94915129999984],[165.40886478000004,-20.982517184999907],[165.40251712300002,-21.005059502999984],[165.39991295700023,-21.01100025799982],[165.39551842500023,-21.01824309699994],[165.39714603000007,-21.02483489399999],[165.40113366000006,-21.031345309999907],[165.40333092500023,-21.038262628],[165.40674889400023,-21.055433851999922],[165.41504967500023,-21.06633879999991],[165.44809003999998,-21.08953215899993],[165.47624759200008,-21.103773695999934],[165.48926842500023,-21.113702080999857],[165.50220787900017,-21.127129815999847],[165.50977623800011,-21.129978122999887],[165.53565514400012,-21.131524346999925],[165.54297936300023,-21.134698174999983],[165.54493248800003,-21.141208591999884],[165.54102623800006,-21.15195077899999],[165.54688561300011,-21.149672132999925],[165.54948978,-21.149183851999936],[165.55128014400012,-21.148125908999887],[165.55486087300008,-21.14446379999984],[165.5854598320001,-21.168389580999985],[165.59864342500023,-21.181735934999907],[165.60254967500023,-21.192152601999894],[165.60775800900004,-21.195407809999935],[165.6105249360002,-21.198337497999958],[165.61540774800008,-21.20647551899988],[165.59864342500023,-21.206231377999842],[165.583262566,-21.202325127999927],[165.56885826900023,-21.195489190999922],[165.55486087300008,-21.18613046699997],[165.55925540500007,-21.195570570999905],[165.5686141290001,-21.20696379999987],[165.58057701900012,-21.21624114399991],[165.59229576900012,-21.22014739399999],[165.60254967500023,-21.226495049999855],[165.61011803500017,-21.241143487999864],[165.61646569099997,-21.257256768999834],[165.62305748800011,-21.26799895599993],[165.646250847,-21.27760182099992],[165.70655358200005,-21.292168877999856],[165.72535240999997,-21.309502862999935],[165.75440514400012,-21.302341403999975],[165.78126061300006,-21.316176039999974],[165.80111738399998,-21.340264580999914],[165.80860436300023,-21.36353932099992],[165.82618248800006,-21.359633070999934],[165.83668053500006,-21.402032159],[165.856293165,-21.418715101999865],[165.845876498,-21.398858330999943],[165.84489993600008,-21.39137135199989],[165.84961998800017,-21.383965752999984],[165.85873457100016,-21.378838799999983],[165.86817467500018,-21.379164320999905],[165.87680097700016,-21.385430596999868],[165.88363691499998,-21.39771900799991],[165.88917076900012,-21.38884856599988],[165.890391472,-21.378024997999972],[165.88640384200008,-21.36679452899996],[165.876149936,-21.356703382999825],[165.89405358200005,-21.361097914999988],[165.90837649800008,-21.378024997999972],[165.94312584699998,-21.43873463299984],[165.94988040500007,-21.455743096999896],[165.94532311300011,-21.46428801899999],[165.92408287900005,-21.459730726999965],[165.93132571700008,-21.470147393999866],[165.97234134200008,-21.493829033999972],[165.96648196700014,-21.50302499799986],[165.97445722700016,-21.504001559999917],[165.98666425900015,-21.50074635199988],[165.9929305350001,-21.49724700299997],[165.99040774800008,-21.48447031000002],[165.98454837300002,-21.475030205999925],[165.97771243600013,-21.4673804669999],[165.97234134200008,-21.459730726999965],[165.9640405610002,-21.43580494599982],[165.96192467500006,-21.417413018999866],[165.969411655,-21.410414320999976],[165.98951256600014,-21.4215634089999],[166.02027428500017,-21.452894789999945],[166.0306095710001,-21.455661716999913],[166.05543053500003,-21.45859140399993],[166.0646264980002,-21.463148695999962],[166.06674238400004,-21.469903252999913],[166.05974368600002,-21.473077080999886],[166.05103600400005,-21.47535572699995],[166.04818769600004,-21.479668877999938],[166.052500847,-21.48398202899986],[166.05925540500007,-21.4859351539999],[166.0680444670002,-21.48707447699985],[166.07048587300002,-21.497653903999975],[166.07227623800023,-21.5162085919999],[166.07488040500002,-21.52800872199995],[166.09799238399998,-21.517347914999927],[166.116465691,-21.517266533999855],[166.13314863400015,-21.525974216999927],[166.1847436860002,-21.569594007999854],[166.19092858200003,-21.57268645599993],[166.20411217500012,-21.576104424999926],[166.20883222700004,-21.579522393999852],[166.21876061300023,-21.59693775799982],[166.25391686300011,-21.618747653999876],[166.29102623800011,-21.63543059699991],[166.37037194100006,-21.658949476999947],[166.37037194100006,-21.665215752999913],[166.34245853000016,-21.665215752999913],[166.34245853000016,-21.672051690999922],[166.34961998800023,-21.67652760199998],[166.35181725400005,-21.682305596999868],[166.35303795700017,-21.68824635199998],[166.356700066,-21.69312916500003],[166.36329186300006,-21.695977471999896],[166.3769637380001,-21.697035414999945],[166.41130618600008,-21.705498955999985],[166.42554772200018,-21.71233489399991],[166.4370223320002,-21.731540622999873],[166.47584069100006,-21.758396091999856],[166.480235222,-21.765394789999927],[166.48365319100006,-21.783461195999944],[166.4897567070001,-21.792168877999842],[166.49577884200002,-21.796075127999842],[166.51368248800006,-21.80299244599992],[166.50619550900004,-21.809258721999882],[166.529144727,-21.827894789999874],[166.57341556100008,-21.874932549999883],[166.59253991000006,-21.884372653999986],[166.61060631600006,-21.897637627999924],[166.63746178500003,-21.92343515399986],[166.6613875660001,-21.939629815999908],[166.67123457100004,-21.925225518999852],[166.70606530000023,-21.948011976999965],[166.71908613400015,-21.95256926899999],[166.71908613400015,-21.960056247999884],[166.71143639400012,-21.96493905999995],[166.7032983730002,-21.968682549999965],[166.69450931100002,-21.971368096999868],[166.6850692070001,-21.973077080999868],[166.6850692070001,-21.980564059999935],[166.69320722700004,-21.984063408999916],[166.72250410200016,-21.980564059999935],[166.73552493600002,-21.983168226999922],[166.7461043630001,-21.988051039999903],[166.75424238400004,-21.99081796699987],[166.76002037900017,-21.986748955999985],[166.76734459700018,-22.004815362999835],[166.77833092500023,-22.01458098799995],[166.79420006600014,-22.019138278999986],[166.81544030000023,-22.02157968500002],[166.87370853000007,-22.0350888],[166.88795006600017,-22.04257577899989],[166.93881269599999,-22.079847914999945],[166.94825280000012,-22.092054945999934],[166.95932050900012,-22.110935153999957],[166.96078535200004,-22.119235935000017],[166.95932050900012,-22.144952080999985],[166.9552514980002,-22.150648695999877],[166.94825280000012,-22.157810153999918],[166.94800866000017,-22.163669528999947],[166.96273847700013,-22.166110934999978],[166.97152754000004,-22.17017994599986],[166.979746941,-22.180108330999943],[166.99341881600006,-22.200290622999887],[167.02881920700005,-22.226820570999934],[167.03443444100017,-22.237481377999885],[167.03174889400006,-22.246677341999856],[167.02556399800014,-22.24814218499999],[167.01832116000008,-22.248467705999843],[167.013438347,-22.254815362999963],[167.01579837300008,-22.26116301899998],[167.02214603000013,-22.268243096999868],[167.02711022200003,-22.276462497999944],[167.02393639400012,-22.285577080999857],[167.02051842500006,-22.29216887799991],[167.013438347,-22.31633879999984],[167.00586998800006,-22.329766534],[167.00074303500017,-22.33668385199992],[166.99341881600006,-22.344333591999856],[166.99154707099996,-22.33953215899996],[166.9885360040001,-22.3350562479999],[166.98267662900005,-22.337579033999916],[166.97754967500023,-22.342461846999967],[166.96558678499997,-22.347263278999876],[166.96078535200004,-22.350762627999867],[166.96192467500023,-22.35588958099997],[166.96615644600016,-22.364678643999852],[166.93458092500006,-22.38844166500003],[166.91570071700002,-22.395603122999887],[166.8909611340001,-22.39202239399999],[166.9116317070001,-22.385023695999934],[166.91968834699998,-22.380059502999885],[166.92530358200023,-22.37086354],[166.90984134200016,-22.371270440999908],[166.90308678500014,-22.373304945999934],[166.89527428500017,-22.364922783999887],[166.88982181100002,-22.351983330999886],[166.88160241000006,-22.337660414999988],[166.87745201900012,-22.333672783999916],[166.87427819100006,-22.322035415],[166.867930535,-22.32927825299984],[166.86182701900012,-22.34303150799994],[166.86003665500002,-22.35051848799992],[166.85181725400005,-22.346449476999865],[166.84652754000015,-22.337090752999927],[166.84180748800023,-22.325860283999912],[166.83578535200004,-22.31633879999984],[166.84017988400004,-22.31511809699991],[166.84945722700016,-22.310153903999947],[166.84034264400006,-22.297946872999884],[166.83139082100016,-22.300876559999907],[166.8247176440001,-22.314222914999917],[166.82097415500004,-22.34303150799994],[166.81918378999998,-22.348077080999886],[166.81885826900023,-22.353610934999907],[166.82227623800006,-22.364678643999852],[166.82504316500004,-22.36598072699985],[166.8432723320001,-22.37835051899988],[166.83228600400003,-22.38079192499991],[166.81853274800002,-22.378594659],[166.80665123800006,-22.37517669099999],[166.8017684250001,-22.374688408999916],[166.79908287900005,-22.37981536299985],[166.79273522200012,-22.385511976999922],[166.784841342,-22.39006926899995],[166.77767988399998,-22.39202239399999],[166.75261478000016,-22.38665129999995],[166.73926842500006,-22.37428150799991],[166.74057050900007,-22.360446873],[166.76002037900017,-22.35051848799992],[166.76002037900017,-22.344333591999856],[166.74195397200006,-22.346123955999843],[166.71998131600006,-22.34384530999995],[166.70606530000023,-22.33473072699988],[166.71225019600004,-22.31633879999984],[166.70557701900006,-22.310153903999947],[166.69060306100002,-22.31511809699991],[166.66749108200008,-22.307224216999927],[166.64649498800023,-22.29273854],[166.6372176440001,-22.278741143999838],[166.63282311300011,-22.276950778999932],[166.6100366550002,-22.286309502999885],[166.5996199880001,-22.288995049999954],[166.59164472700004,-22.287204684999878],[166.56657962300002,-22.277113539999988],[166.55795332100004,-22.271905205999914],[166.55445397200006,-22.262139580999953],[166.5612085300002,-22.256524346999964],[166.56568444100006,-22.25066497199984],[166.55453535200004,-22.240655205999943],[166.5455835300002,-22.237562757999864],[166.5162866550002,-22.233575127999885],[166.50619550900004,-22.234470309999878],[166.49512780000006,-22.249118747999887],[166.48829186300017,-22.271416924999926],[166.47836347700016,-22.287204684999878],[166.45850670700023,-22.28215911299985],[166.458262566,-22.286228122999898],[166.457774285,-22.288018487999977],[166.45606530000012,-22.288669528999932],[166.4523218110002,-22.288995049999954],[166.46013431100008,-22.307712498000015],[166.44988040500007,-22.31243254999984],[166.43669681100016,-22.308038018999937],[166.43474368600008,-22.299248955999882],[166.43767337300008,-22.290622653999975],[166.439300977,-22.265232028999858],[166.44605553500006,-22.254815362999963],[166.44605553500006,-22.24814218499999],[166.431407097,-22.248955987999835],[166.4181421230002,-22.24570077899996],[166.4067488940002,-22.238376559999875],[166.397634311,-22.226820570999934],[166.43002363400015,-22.22812265399993],[166.44410241000017,-22.224379165],[166.4523218110002,-22.213962498],[166.43425540500007,-22.21298593499993],[166.42823326900023,-22.20427825299987],[166.43181399800002,-22.17229583099987],[166.42188561300023,-22.1730282529999],[166.40023847700004,-22.169691664999874],[166.39087975399997,-22.17229583099987],[166.3875431650001,-22.178155206],[166.38331139400023,-22.196384372999972],[166.3805444670002,-22.200290622999887],[166.36793053499997,-22.202080987999874],[166.36304772200006,-22.207126559999907],[166.360118035,-22.214532158999972],[166.35328209700012,-22.223809502999938],[166.34400475400005,-22.227471612999977],[166.33936608200023,-22.22136809699991],[166.34099368600008,-22.210625908999987],[166.3498641290001,-22.200290622999887],[166.33961022200018,-22.194431247999926],[166.31511478000002,-22.17229583099987],[166.31511478000002,-22.166110934999978],[166.32154381600006,-22.162774346999953],[166.32488040500004,-22.159112237999906],[166.32683353000002,-22.153497002999913],[166.32813561300011,-22.144952080999985],[166.32195071700008,-22.144952080999985],[166.31202233200023,-22.15471770599984],[166.2858992850001,-22.149346612999878],[166.28777103000007,-22.15862395599993],[166.26872806100008,-22.165785414999874],[166.2521264980002,-22.159926040000016],[166.236175977,-22.15178801899991],[166.21876061300023,-22.15178801899991],[166.21794681100002,-22.13274505],[166.20883222700004,-22.117771091999884],[166.19532311300014,-22.10767994599992],[166.1813257170002,-22.104099216999856],[166.16895592500023,-22.0975888],[166.157481316,-22.08668385199988],[166.14527428500006,-22.08456796699987],[166.13013756600006,-22.104099216999856],[166.119313998,-22.09807708099993],[166.10889733200017,-22.090427341999913],[166.11353600400017,-22.085219007999825],[166.11589603000002,-22.079847914999945],[166.11654707099999,-22.07268645599991],[166.116465691,-22.062432549999983],[166.12273196700005,-22.062432549999983],[166.131114129,-22.0714657529999],[166.14210045700005,-22.075860283999887],[166.15040123800023,-22.071954033999887],[166.150645379,-22.056247653999918],[166.14454186300011,-22.04656340899996],[166.12501061300023,-22.038506768999838],[166.116465691,-22.028415622999958],[166.1437280610002,-22.028578382999925],[166.15503991000017,-22.030694268999923],[166.16431725400003,-22.0350888],[166.16334069100006,-22.024590752999853],[166.15894616000014,-22.018324476999975],[166.15121504000015,-22.01539478999996],[166.14039147200018,-22.014743748000015],[166.13526451900023,-22.008558851999865],[166.13689212300008,-21.995538018999966],[166.14096113400015,-21.983575127999927],[166.14380944100017,-21.980564059999935],[166.13575280000023,-21.958265882999896],[166.12305748800006,-21.948825778999975],[166.08855228000007,-21.93889739399988],[166.07642662900017,-21.945896091999956],[166.06999759200008,-21.943047783999912],[166.07129967500023,-21.93482838299991],[166.082286004,-21.925225518999852],[166.07178795700023,-21.920505467000012],[166.06446373800023,-21.913018487999963],[166.0607202480002,-21.903252862999835],[166.0612085300002,-21.891208591999913],[166.04558353000013,-21.90064869599992],[166.03988691500004,-21.90992603999989],[166.040782097,-21.93547942499995],[166.03614342500012,-21.941582940999865],[166.02556399800002,-21.941501559999878],[166.01400800900004,-21.93938567499987],[166.00660241000006,-21.93889739399988],[166.01042728000007,-21.943780205999857],[166.00961347700004,-21.95582447699986],[166.003184441,-21.963962497999972],[165.98951256600014,-21.95631275799985],[165.97510826900012,-21.937676690999865],[165.96599368600002,-21.9288876279999],[165.934906446,-21.91773853999996],[165.9143172540001,-21.88494231599995],[165.89991295700023,-21.877536716999884],[165.8930770190001,-21.875746351999894],[165.88550866000006,-21.87135182099982],[165.87281334700018,-21.8610165339999],[165.8667098320001,-21.857842705999843],[165.86158287900008,-21.859633070999834],[165.85621178500006,-21.863213799999897],[165.84961998800017,-21.86443450299991],[165.82056725400017,-21.863946221999925],[165.81088300900004,-21.85857512799987],[165.80860436300023,-21.84335702899989],[165.8296004570001,-21.85214609199994],[165.82292728,-21.842217705999857],[165.79493248800011,-21.81666432099996],[165.79493248800011,-21.808851820999877],[165.79916425900015,-21.799574476999922],[165.80030358200005,-21.79208749799986],[165.79127037900017,-21.788750908999916],[165.7807723320001,-21.791110934999963],[165.77662194100006,-21.79713307099989],[165.77711022200003,-21.80608489399999],[165.7807723320001,-21.81666432099996],[165.76400800900007,-21.81121184699984],[165.76059004000015,-21.79989999799994],[165.76197350400005,-21.78508879999997],[165.759532097,-21.76881275799994],[165.75114993600008,-21.758721612999878],[165.74073326900017,-21.75025807099993],[165.73292076900006,-21.73894622199994],[165.73292076900006,-21.719821872999972],[165.72535240999997,-21.719821872999972],[165.71729576900006,-21.73552825299994],[165.706879102,-21.74830494599989],[165.69385826900012,-21.75741952899996],[165.67774498800023,-21.76140715899986],[165.67855879000015,-21.74089934699998],[165.67750084700018,-21.729424737999864],[165.66993248800023,-21.725274347],[165.65088951900023,-21.72673919099988],[165.650238477,-21.72893645599987],[165.650645379,-21.733656507999882],[165.64942467500006,-21.73845794099995],[165.64340253999998,-21.74089934699998],[165.63795006600003,-21.740166924999954],[165.50456790500013,-21.678155206],[165.473887566,-21.651788018999923],[165.48585045700023,-21.631036065999837],[165.48585045700023,-21.623630466999927],[165.47152754000015,-21.62851327899999],[165.463145379,-21.62590911299999],[165.46461022200006,-21.62053801899995],[165.47901451900023,-21.616875908999898],[165.463145379,-21.60564544099999],[165.44654381600006,-21.609307549999937],[165.4298608730002,-21.61858489399991],[165.413422071,-21.623630466999927],[165.39600670700023,-21.62053801899995],[165.29078209700018,-21.57675546699997],[165.27702884200008,-21.56617603999993],[165.26880944100017,-21.55266692499987],[165.25953209699998,-21.52117278399986],[165.25684655000023,-21.515069268999866],[165.2379663420002,-21.51295338299994],[165.22559655000006,-21.50709400799991],[165.19776451900012,-21.48707447699985],[165.18970787900014,-21.48503997199991],[165.18067467500006,-21.48479583099987],[165.17351321700002,-21.483005466999884],[165.1705835300002,-21.476495049999983],[165.15699303500006,-21.462172132999896],[165.15381920700008,-21.459730726999965],[165.11654707100004,-21.39771900799991],[165.11475670700023,-21.388360283999887],[165.1180119150001,-21.383396092000012],[165.11850019600016,-21.378838799999983],[165.11166425900012,-21.373142184999907],[165.109141472,-21.371026299999897],[165.10222415500002,-21.37118905999986],[165.09327233200008,-21.37444426899991],[165.08708743600002,-21.377618096999964],[165.0879012380002,-21.377211195999962],[165.08448326900023,-21.39137135199989],[165.07569420700005,-21.39609140399999],[165.06666100400017,-21.391208591999927],[165.06185957100016,-21.377211195999962],[165.0543725920002,-21.383396092000012],[165.04664147200018,-21.388360283999887],[165.03785241000003,-21.38941822699985],[165.026621941,-21.383965752999984],[165.04542076900006,-21.364678643999948],[165.0431421230002,-21.348077081],[165.0275171230002,-21.339125257999882],[165.0055444670002,-21.343031507999882],[165.01392662900017,-21.3280575499999],[165.0092879570002,-21.318047783999944],[164.98552493600002,-21.302015882999953],[164.97657311300011,-21.315524997999926],[164.9796655610002,-21.336602471999868],[164.97193444100014,-21.349867445999976],[164.96119225400014,-21.35605234199987],[164.95142662900005,-21.35377369599989],[164.94336998800011,-21.346286717],[164.9377547540001,-21.335625908999972],[164.94174238400015,-21.327732028999918],[164.94239342500012,-21.319105726999823],[164.94564863400015,-21.31047942499991],[164.95142662900005,-21.302015882999953],[164.94385826900006,-21.29338958099987],[164.936778191,-21.29127369599986],[164.92920983200005,-21.290215752999895],[164.92042076900012,-21.28508879999997],[164.91480553499997,-21.27874114399995],[164.90796959700018,-21.267347914999974],[164.83415774800008,-21.183282158999944],[164.8292749360002,-21.169528904000018],[164.82781009200002,-21.148125908999887],[164.82846113399998,-21.132419528999918],[164.82715905000006,-21.114678643999923],[164.81918379000004,-21.104099216999956],[164.80005944100006,-21.11028411299985],[164.80128014400006,-21.09726327899986],[164.8029077480002,-21.094170830999868],[164.80738366000014,-21.089776299999965],[164.80738366000014,-21.08228932099992],[164.80079186300006,-21.082207940999936],[164.79607181100008,-21.080661716999895],[164.78638756599997,-21.07626718499999],[164.79224694100017,-21.06853606599999],[164.79102623800023,-21.06438567499987],[164.78394616000017,-21.06438567499987],[164.77271569100017,-21.069431247999987],[164.77027428500006,-21.08098723799992],[164.75896243600008,-21.082452080999882],[164.74976647200018,-21.074802341999856],[164.7459416020001,-21.059177341999867],[164.73959394600016,-21.05836354000003],[164.7273055350001,-21.060235284],[164.71924889400023,-21.065850518999923],[164.72543379000004,-21.07626718499999],[164.719004754,-21.08342864399995],[164.71176191499998,-21.089776299999965],[164.6933699880002,-21.042901299999837],[164.68067467500006,-21.023695570999962],[164.66407311300023,-21.0140927059999],[164.68327884200008,-21.0011532529999],[164.67457116000008,-20.992608330999957],[164.65357506600006,-20.984470309999864],[164.63672936300023,-20.97242604000003],[164.6525171230002,-20.971123955999943],[164.6608179050002,-20.96477629999991],[164.66187584700006,-20.955661717000012],[164.65658613400012,-20.945896091999884],[164.64421634200014,-20.939141533999944],[164.63135826900012,-20.93775807099996],[164.62281334700018,-20.933526299999855],[164.62240644600016,-20.91790129999987],[164.61622155000012,-20.91790129999987],[164.60059655000012,-20.927666924999983],[164.58497155000023,-20.92058684699994],[164.56104576900003,-20.89804452899986],[164.55054772200012,-20.89527760199998],[164.53003991000006,-20.894707940999837],[164.51937910200004,-20.890557549999983],[164.5151473320001,-20.8853492169999],[164.5026147800002,-20.8632138],[164.48031660200016,-20.859144789999945],[164.4624129570001,-20.848565362999903],[164.41879316499998,-20.806247653999904],[164.388926629,-20.787367445999877],[164.37549889400012,-20.774021091999956],[164.365570509,-20.758070570999948],[164.3720809250001,-20.757256768999937],[164.38689212300008,-20.75969817499997],[164.40267988400004,-20.75408294099988],[164.41041100400005,-20.738457940999893],[164.40430748800023,-20.725355726999922],[164.3896590500002,-20.716403903999975],[164.3720809250001,-20.71306731599995],[164.35718834700006,-20.702325127999856],[164.33513431100008,-20.6554501279999],[164.31674238400004,-20.64478932099996],[164.28663170700005,-20.575860283999916],[164.28101647200015,-20.579522393999966],[164.27637780000023,-20.580498955999943],[164.27173912900005,-20.581149997999987],[164.26612389400012,-20.58269622199992],[164.25603274800008,-20.565036717000012],[164.19255618600008,-20.5258114559999],[164.17741946700008,-20.504001559999935],[164.16586347700002,-20.463067315999922],[164.1637475920002,-20.448988539999974],[164.15870201900006,-20.432549737999977],[164.1469832690001,-20.42506275799982],[164.13347415500002,-20.42009856599995],[164.12338300900015,-20.41082122199991],[164.1186629570002,-20.390313408999944],[164.13013756600017,-20.38811614399995],[164.15699303500017,-20.397149346999882],[164.16651451900006,-20.3866513],[164.17042076900006,-20.369724217000012],[164.17058353000002,-20.339125257999896],[164.16651451900006,-20.332126559999917],[164.15626061300023,-20.319024346999953],[164.14380944100006,-20.306573174999926],[164.132497592,-20.300957940999936],[164.08545983200023,-20.298760674999855],[164.07374108200023,-20.294122003],[164.08041425899995,-20.280938408999873],[164.0812280610002,-20.267836195999905],[164.07488040500016,-20.261163018999852],[164.06072024800008,-20.266778252999853],[164.06495201900003,-20.276788018999838],[164.05933678500017,-20.28801848799992],[164.04948978000007,-20.297133070999834],[164.0402124360002,-20.300957940999936],[164.0254012380002,-20.29705169099985],[164.020762566,-20.28777434699998],[164.01807701900012,-20.27849700299984],[164.00953209700012,-20.274183851999922],[163.99480228000013,-20.264255466999927],[163.99822024800014,-20.244561455999968],[164.01661217500018,-20.231052341999913],[164.04712975399997,-20.239434502999966],[164.05640709700006,-20.227634372999987],[164.05250084700006,-20.21550872199991],[164.03345787900017,-20.19231536299996],[164.04517662900005,-20.187595309999875],[164.05250084700006,-20.17782968500002],[164.05372155000006,-20.164971612999906],[164.04712975399997,-20.15146249799993],[164.03223717500023,-20.140313408999912],[164.020274285,-20.14234791500003],[164.00766035200004,-20.14885833099984],[163.99195397200018,-20.15146249799993],[163.99195397200018,-20.143812757999896],[163.99708092500006,-20.139825127999924],[164.00033613400004,-20.135349216999867],[164.005544467,-20.123467705999914],[163.9910587900001,-20.118910414999874],[163.98601321700002,-20.109633070999905],[163.98715253999995,-20.09726327899996],[163.99195397200018,-20.08310312299986],[163.99968509200008,-20.084161065999908],[164.0135197270001,-20.08310312299986]]],[[[164.22461998800023,-20.137627862999935],[164.2402449880001,-20.15829843499995],[164.22103925900012,-20.15349700299987],[164.19263756600006,-20.1390927059999],[164.16920006600006,-20.123304945999948],[164.16431725400017,-20.105075778999876],[164.1637475920002,-20.061944268999937],[164.17058353000002,-20.061944268999937],[164.21501712300002,-20.11785247199991],[164.22461998800023,-20.137627862999935]]],[[[163.98536217500012,-20.066664320999863],[163.98292076900017,-20.075290622999955],[163.97820071700008,-20.08310312299986],[163.97136478000002,-20.06878020599987],[163.95639082099999,-20.073663018999937],[163.94711347700016,-20.06601327899999],[163.937266472,-20.041599216999952],[163.937266472,-20.033949476999837],[163.94410241000003,-20.02597421699997],[163.94971764400023,-20.002211195999877],[163.9576929050002,-19.999932549999983],[163.96713300900004,-20.00807057099992],[163.97510826900006,-20.03541432099989],[163.98511803500003,-20.04762135199995],[163.986094597,-20.05754973799996],[163.98536217500012,-20.066664320999863]]],[[[163.69613691500004,-19.765069268999948],[163.66968834700006,-19.787692967],[163.63998457100004,-19.723728123],[163.63607832100004,-19.701592705999943],[163.63786868600013,-19.660577080999843],[163.6323348320001,-19.645928643999838],[163.61573326900023,-19.63616301899998],[163.62183678500006,-19.623711846999953],[163.63795006600012,-19.631768487999903],[163.64966881600017,-19.646254164999945],[163.67017662900005,-19.69329192499987],[163.677093946,-19.725518487999906],[163.68279056100013,-19.739841403999975],[163.6938582690002,-19.757500908999987],[163.69613691500004,-19.765069268999948]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Marshall Islands","sov_a3":"MHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Marshall Islands","adm0_a3":"MHL","geou_dif":0,"geounit":"Marshall Islands","gu_a3":"MHL","su_dif":0,"subunit":"Marshall Islands","su_a3":"MHL","brk_diff":0,"name":"Marshall Is.","name_long":"Marshall Islands","brk_a3":"MHL","brk_name":"Marshall Is.","brk_group":null,"abbrev":"M. Is.","postal":"MH","formal_en":"Republic of the Marshall Islands","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Marshall Islands","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":5,"mapcolor13":3,"pop_est":64522,"gdp_md_est":133.5,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"RM","iso_a2":"MH","iso_a3":"MHL","iso_n3":"584","un_a3":"584","wb_a2":"MH","wb_a3":"MHL","woe_id":23424932,"woe_id_eh":23424932,"woe_note":"Exact WOE match as country","adm0_a3_is":"MHL","adm0_a3_us":"MHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":12,"long_len":16,"abbrev_len":6,"tiny":2,"homepart":1,"filename":"MHL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[168.71680748800023,4.574774481000133],[168.68539472699996,4.573797919000157],[168.7350366550002,4.590521552000084],[168.74431399800008,4.59861888200011],[168.76807701900017,4.629055080000157],[168.7584741550002,4.604641018000122],[168.741384311,4.585842190000079],[168.71680748800023,4.574774481000133]]],[[[168.12794030000012,5.601629950000088],[168.11622155000012,5.591376044000157],[168.1010848320001,5.599310614000132],[168.10132897200006,5.599595445000162],[168.107269727,5.597235419000114],[168.1152449880002,5.595404364000132],[168.12110436300006,5.597357489000089],[168.125661655,5.60569896000014],[168.1276147800002,5.614243882000082],[168.12728925900015,5.622788804000095],[168.1245223320001,5.631048895000092],[168.13200931100008,5.618557033000073],[168.12794030000012,5.601629950000088]]],[[[169.12061608200005,5.647406317000105],[169.11451256600017,5.638128973000136],[169.11646569100006,5.649237372000172],[169.12061608200005,5.647406317000105]]],[[[169.63502037900005,5.829046942000062],[169.61524498800011,5.798773505000071],[169.59034264400006,5.800930080000157],[169.61011803500008,5.811916408000129],[169.61752363399998,5.81826406500015],[169.62354576900006,5.827297268000066],[169.62964928500017,5.840155341000099],[169.63868248800006,5.870347398000192],[169.6451929050002,5.917141018000081],[169.65552819100017,5.942857164000117],[169.67603600400005,5.961004950000117],[169.7002059250002,5.97601959800015],[169.718597852,5.99310944200009],[169.7345483730002,6.013128973000149],[169.72144616000006,5.976629950000103],[169.66521243600008,5.938788153000161],[169.65251712300008,5.899847723000079],[169.64779707100013,5.870021877000084],[169.63502037900005,5.829046942000062]]],[[[171.99610436300011,6.060980536000088],[172.02979576900012,6.054144598000079],[172.0083113940001,6.056219794000085],[171.98414147200018,6.051703192000133],[171.96241295700008,6.051825262000108],[171.94841556100008,6.067775783000116],[171.95053144600016,6.066595770000091],[171.95679772199998,6.064154364000146],[171.96648196700008,6.061997789000144],[171.99610436300011,6.060980536000088]]],[[[171.74317467500023,6.083197333000143],[171.74512780000012,6.079128322000173],[171.738454623,6.079169012000165],[171.72820071700014,6.079291083000143],[171.72282962300008,6.083441473000092],[171.72169030000012,6.090969143000136],[171.7246199880002,6.101711330000157],[171.72852623800023,6.097642320000189],[171.73243248800023,6.092108466000169],[171.74317467500023,6.083197333000143]]],[[[171.59799238400015,7.024725653000147],[171.61117597699996,7.019924221000152],[171.67611738400007,7.022853908000087],[171.68946373800006,7.019924221000152],[171.73406009200008,6.984686591000112],[171.75668379000004,6.972113348000121],[171.73031660200004,6.975572007000125],[171.68873131600006,7.006577867000146],[171.66041100399997,7.013088283000144],[171.61394290500007,7.006089585000069],[171.59262128999998,7.01528554900014],[171.57732181100002,7.047186591000155],[171.58725019600004,7.034084377000084],[171.59799238400015,7.024725653000147]]],[[[171.77588951900006,7.028143622000158],[171.76417076900012,7.019517320000148],[171.7701929050002,7.0288760440001],[171.79224694100012,7.054999091000141],[171.7944442070001,7.057766018000109],[171.7959090500002,7.06020742400014],[171.79786217500012,7.061916408000143],[171.80095462300008,7.062689520000077],[171.7944442070001,7.049750067000061],[171.78598066500012,7.038234768000122],[171.77588951900006,7.028143622000158]]],[[[171.90894616000017,7.092271226000122],[171.89210045700008,7.090806382000068],[171.8960067070001,7.093898830000143],[171.900238477,7.095770575000116],[171.90967858200023,7.098781643000109],[171.91773522200003,7.10512929900014],[171.92188561300011,7.111761786000116],[171.92123457100016,7.118475653000147],[171.91537519599999,7.125148830000114],[171.92888431100008,7.118312893000094],[171.92383873800023,7.104396877000112],[171.90894616000017,7.092271226000122]]],[[[171.05713951900012,7.143459377000084],[171.22641035200016,7.075751044000143],[171.2374780610002,7.075913804000109],[171.26335696700016,7.080796617000175],[171.28484134200014,7.08832428600013],[171.39356530000023,7.109930731000133],[171.36687259200002,7.094468492000118],[171.29346764400023,7.083685614000103],[171.26319420700023,7.067694403000103],[171.23519941500004,7.067694403000103],[171.20215905000023,7.072455145000106],[171.06088300900015,7.13540273600013],[171.03565514400012,7.155096747000171],[171.0503035820001,7.170721747000158],[171.05054772200006,7.161037502000112],[171.05225670700023,7.154852606000133],[171.05713951900012,7.143459377000084]]],[[[168.7382918630002,7.309068101000149],[168.75782311300023,7.307928778000118],[168.83008873800011,7.307928778000118],[168.81527754000004,7.292466539000188],[168.7915145190002,7.293402411000073],[168.74610436300023,7.304185289000173],[168.69581139400006,7.313381252000141],[168.67505944100017,7.320868231000119],[168.67920983200023,7.335191148000191],[168.6940210300002,7.321763414000116],[168.71631920700023,7.315375067000089],[168.7382918630002,7.309068101000149]]],[[[168.57252037899997,7.417792059000178],[168.57683353,7.404120184000149],[168.5639754570001,7.412746486000146],[168.55518639400023,7.430324611000088],[168.55372155000018,7.449855861000159],[168.56251061300023,7.464341539000117],[168.56641686300023,7.450995184000107],[168.57252037899997,7.417792059000178]]],[[[168.96924889400012,7.578680731000148],[168.96859785200016,7.571234442000076],[168.96558678500003,7.574652411000088],[168.96762128999998,7.580633856000105],[168.96810957100016,7.584499416000113],[168.96208743600008,7.591701565000136],[168.95134524800008,7.595689195000119],[168.9384871750001,7.596380927000069],[168.94410241000006,7.598089911000074],[168.95183353000002,7.599188544000114],[168.95964603000002,7.598578192000147],[168.96558678500003,7.595363674000097],[168.96924889400012,7.586737372000086],[168.96973717500012,7.583889065000149],[168.96924889400012,7.578680731000148]]],[[[167.40170332100016,8.317816473000107],[167.40772545700005,8.307277736000131],[167.39966881600003,8.310777085000126],[167.40170332100016,8.317816473000107]]],[[[167.74000084700018,8.733221747000158],[167.73161868600002,8.724595445000162],[167.73072350400005,8.730373440000122],[167.73031660200004,8.735256252000099],[167.7330835300002,8.739691473000079],[167.74024498800023,8.743841864000103],[167.74154707100004,8.73769765800013],[167.74000084700018,8.733221747000158]]],[[[170.85173587300008,8.897772528000173],[170.84473717500006,8.886501369000186],[170.83912194100014,8.888169664000102],[170.8385522800002,8.88837311400006],[170.83790123800023,8.88865794500019],[170.83741295700003,8.889064846000096],[170.83716881600006,8.889593817000076],[170.84131920700005,8.8985863300001],[170.84457441500004,8.900783596000094],[170.85010826900023,8.901434637000136],[170.85173587300008,8.897772528000173]]],[[[170.24708092500006,9.457749742000189],[170.24024498800006,9.449774481000134],[170.23878014400012,9.466701565000122],[170.243907097,9.4663760440001],[170.24708092500006,9.457749742000189]]],[[[170.878754102,10.275091864000132],[170.874685092,10.274603583000143],[170.87452233200005,10.286607164000173],[170.87859134200002,10.287176825000145],[170.878754102,10.275091864000132]]],[[[166.89421634200014,11.155178127000156],[166.875254754,11.14496491100013],[166.85336347700016,11.145412502000127],[166.83578535200004,11.159247137000122],[166.8718367850001,11.162298895000118],[166.90414472700002,11.17291901200015],[166.89421634200014,11.155178127000156]]],[[[165.55062910200016,11.626939195000176],[165.55372155000023,11.61981842700014],[165.54021243600008,11.633775132000109],[165.54281660200016,11.633002020000092],[165.54688561300011,11.631008205000143],[165.55062910200016,11.626939195000176]]],[[[165.28891035200004,11.705959377000097],[165.28223717500018,11.695786851000065],[165.28223717500018,11.70844147300012],[165.2867944670002,11.71088288000007],[165.28891035200004,11.705959377000097]]],[[[168.99691816500004,14.593085028000147],[168.98731530000012,14.58685944200009],[168.99830162900017,14.599025783000087],[169.01075280000012,14.6101748720001],[169.01368248800023,14.610500393000123],[169.0073348320001,14.602769273000105],[168.99691816500004,14.593085028000147]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Northern Mariana Islands","adm0_a3":"MNP","geou_dif":0,"geounit":"Northern Mariana Islands","gu_a3":"MNP","su_dif":0,"subunit":"Northern Mariana Islands","su_a3":"MNP","brk_diff":0,"name":"N. Mariana Is.","name_long":"Northern Mariana Islands","brk_a3":"MNP","brk_name":"N. Mariana Is.","brk_group":null,"abbrev":"N.M.I.","postal":"MP","formal_en":"Commonwealth of the Northern Mariana Islands","formal_fr":null,"note_adm0":"Commonwealth of U.S.A.","note_brk":null,"name_sort":"Northern Mariana Islands","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":88662,"gdp_md_est":900,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"CQ","iso_a2":"MP","iso_a3":"MNP","iso_n3":"580","un_a3":"580","wb_a2":"MP","wb_a3":"MNP","woe_id":23424788,"woe_id_eh":23424788,"woe_note":"Exact WOE match as country","adm0_a3_is":"MNP","adm0_a3_us":"MNP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":14,"long_len":24,"abbrev_len":6,"tiny":3,"homepart":-99,"filename":"MNP.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.23682701900023,14.129095770000134],[145.22901451900017,14.119940497000144],[145.20997155000018,14.110663153000104],[145.199473504,14.113918361000145],[145.18962649800008,14.121771552000126],[145.17164147200006,14.126166083000115],[145.14226321700002,14.12270742400011],[145.12623131600003,14.123236395000092],[145.11931399800002,14.12958405200011],[145.13070722700004,14.146918036000102],[145.15723717500006,14.163763739000103],[145.18637129000004,14.176418361000088],[145.20573978000004,14.181382554000123],[145.2524520190002,14.200384833000129],[145.27995853000007,14.202785549000081],[145.29053795700023,14.181382554000123],[145.28736412900017,14.169582424000154],[145.28207441499998,14.16103750200014],[145.273610873,14.155829169000143],[145.2604272800002,14.154120184000135],[145.24984785200004,14.150051174000083],[145.24284915500007,14.140366929000123],[145.23682701900023,14.129095770000134]]],[[[145.645762566,14.92975495000013],[145.62582441500004,14.915269273000177],[145.60645592500012,14.928127346000108],[145.60181725400017,14.941107489000117],[145.59791100400008,14.968654690000136],[145.59213300900004,14.98273346600017],[145.57984459700018,14.998602606000105],[145.57715905000012,15.005845445000132],[145.57846113399995,15.017482815000136],[145.59009850399997,15.04043203300013],[145.61109459700006,15.066799221000126],[145.63306725400017,15.082098700000174],[145.64730879000015,15.072088934000107],[145.65259850400003,15.059271552000071],[145.65121504000015,15.046576239000103],[145.6479598320001,15.032945054000065],[145.64730879000015,15.017482815000136],[145.65137780000012,15.00873444200006],[145.6650496750002,14.9929873720001],[145.66781660200004,14.98273346600017],[145.66138756600012,14.956976630000142],[145.645762566,14.92975495000013]]],[[[145.78451582100004,15.168280341000141],[145.77979576900012,15.159165757000137],[145.77361087300002,15.154608466000099],[145.76612389400017,15.155015367000102],[145.757172071,15.16083405200007],[145.74496504000015,15.149847723000107],[145.73878014400012,15.136664130000057],[145.73943118600002,15.122707424000083],[145.74691816500004,15.109320380000085],[145.7526147800002,15.096014716000154],[145.73853600400003,15.09642161700016],[145.72103925899998,15.102362372000101],[145.7163192070001,15.105617580000143],[145.69410241000006,15.100490627000129],[145.68555748800011,15.102484442000076],[145.68213951900012,15.116522528000118],[145.683848504,15.131293036000102],[145.69581139400023,15.168280341000141],[145.69695071700008,15.182562567000133],[145.6964624360002,15.193670966000155],[145.69825280000018,15.203192450000158],[145.70582116,15.212347723000134],[145.7111108730002,15.215521552000112],[145.72999108200023,15.222886460000096],[145.73340905000023,15.227687893000093],[145.7340600920002,15.23924388200011],[145.736094597,15.243394273000147],[145.74838300900015,15.249335028000175],[145.77442467500023,15.257391669000114],[145.78785241000006,15.267279364000132],[145.80111738400015,15.272162177000098],[145.8165796230002,15.270168361000161],[145.82374108200023,15.262396552000071],[145.8118595710001,15.250230210000085],[145.8004663420002,15.243231512000179],[145.79273522200012,15.232245184000135],[145.77588951900012,15.189520575000115],[145.77654056100008,15.180853583000127],[145.78451582100004,15.168280341000141]]],[[[145.69703209700006,16.341782945000162],[145.6691186860002,16.339178778000147],[145.65601647200006,16.340277411000116],[145.64380944100017,16.344631252000013],[145.63379967500006,16.353216864000114],[145.62818444100017,16.364081122000115],[145.62940514400012,16.373683986000074],[145.63770592500006,16.379950262000037],[145.65414472700016,16.38117096600014],[145.66716556100008,16.377427476000108],[145.69792728000007,16.373724677000084],[145.70948326900003,16.36749909100011],[145.71762128999998,16.35260651200015],[145.71119225400017,16.344956773000135],[145.69703209700006,16.341782945000162]]],[[[145.80453535200016,16.693060614000057],[145.7892358730002,16.675482489000146],[145.7690535820001,16.694769598000065],[145.78589928500017,16.700100002000127],[145.80453535200016,16.693060614000057]]],[[[145.86817467500023,17.30174388200011],[145.8549910820001,17.285793361000103],[145.83594811300011,17.305161851000108],[145.85124759200008,17.30939362200003],[145.86817467500023,17.30174388200011]]],[[[145.86695397200006,17.575018622000144],[145.85425866000017,17.56688060100005],[145.83220462300008,17.57746002800009],[145.8269149100001,17.59320709800015],[145.834239129,17.605780341000138],[145.85059655000012,17.60687897300009],[145.86296634200008,17.598537502000042],[145.86890709700018,17.586737372000144],[145.86695397200006,17.575018622000144]]],[[[145.75814863400004,18.06118398600016],[145.74366295700017,18.053290106000176],[145.71949303500006,18.054185289000156],[145.7130674370001,18.077465158000066],[145.739512566,18.090969143000066],[145.7507662630001,18.11372564200009],[145.75669677200008,18.16175080300009],[145.77111816800013,18.175209014000032],[145.81169681100013,18.173895575000174],[145.82496178500006,18.167710679000024],[145.83521569100017,18.157945054000052],[145.83912194100017,18.145086981000034],[145.83562259200008,18.128322658000016],[145.826426629,18.119330145],[145.81430097700004,18.113023179000052],[145.80201256600006,18.104193427],[145.75814863400004,18.06118398600016]]],[[[145.69361412900005,18.727728583],[145.67823326900012,18.72260163],[145.66163170700023,18.724269924000012],[145.63551721600018,18.747217909000156],[145.63255503600024,18.786913627000118],[145.650371791,18.808902361000136],[145.68832441500015,18.80735911700016],[145.70191491000006,18.791652736000017],[145.70801842500012,18.779689846000068],[145.70964603000002,18.76683177300005],[145.70948326900003,18.748439846],[145.70508873800011,18.73712799700003],[145.69361412900005,18.727728583]]],[[[145.4137475920002,19.662420966000084],[145.40560957099999,19.652777411000116],[145.3917749360002,19.660549221000124],[145.38209069100006,19.672796942],[145.38209069100006,19.684149481000148],[145.39722741000006,19.688910223000065],[145.40992272200018,19.6844750020001],[145.41537519600004,19.674383856000034],[145.4137475920002,19.662420966000084]]],[[[145.24537194100017,20.035793361000074],[145.24586022200006,20.030422268000123],[145.2524520190002,20.03143952],[145.26148522200006,20.034613348000065],[145.26937910200004,20.036200262000094],[145.27279707100004,20.032375393000066],[145.27076256600012,20.02415599200016],[145.26579837300002,20.017564195000105],[145.258636915,20.012640692000147],[145.25074303500006,20.00971100500011],[145.240000847,20.013251044000086],[145.23113040500004,20.020209052],[145.22673587300017,20.02977122599999],[145.22925866,20.040961005],[145.23878014400012,20.050441799000097],[145.24341881600006,20.045558986000017],[145.24537194100017,20.035793361000074]]],[[[144.9257918630002,20.525336005],[144.91570071700008,20.517157294000086],[144.90512129000004,20.52659739800002],[144.902110222,20.540025132],[144.90674889400023,20.551499742000047],[144.91968834700006,20.555405992000132],[144.93181399800002,20.549221096000064],[144.93246503999998,20.537502346000068],[144.9257918630002,20.525336005]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"New Zealand","sov_a3":"NZ1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Niue","adm0_a3":"NIU","geou_dif":0,"geounit":"Niue","gu_a3":"NIU","su_dif":0,"subunit":"Niue","su_a3":"NIU","brk_diff":0,"name":"Niue","name_long":"Niue","brk_a3":"NIU","brk_name":"Niue","brk_group":null,"abbrev":"Niue","postal":"NU","formal_en":null,"formal_fr":null,"note_adm0":"Assoc. with N.Z.","note_brk":null,"name_sort":"Niue","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":1398,"gdp_md_est":10.01,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"NE","iso_a2":"NU","iso_a3":"NIU","iso_n3":"570","un_a3":"570","wb_a2":"-99","wb_a3":"-99","woe_id":23424904,"woe_id_eh":23424904,"woe_note":"Exact WOE match as country","adm0_a3_is":"NIU","adm0_a3_us":"NIU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":4,"long_len":4,"abbrev_len":4,"tiny":3,"homepart":-99,"filename":"NIU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-169.8511449859999,-18.965101820999934],[-169.82530676999988,-18.967950127999885],[-169.82262122299989,-18.972588799999897],[-169.79426021999993,-19.047133070999863],[-169.78290768099987,-19.0689429669999],[-169.79686438699994,-19.073907158999944],[-169.80597896999993,-19.081963799999897],[-169.8238419259999,-19.10230885199988],[-169.86542721299986,-19.129652601999865],[-169.87299557199992,-19.12590911299992],[-169.8809708319999,-19.12908294099989],[-169.89891516799992,-19.142754815999922],[-169.9020483059999,-19.13298919099988],[-169.9099828769999,-19.1285946589999],[-169.92109127499987,-19.128024997999926],[-169.9337052069999,-19.129652601999865],[-169.93053137899992,-19.12639739399991],[-169.9279679029999,-19.12281666499993],[-169.9247940749999,-19.119317315999936],[-169.91942298099988,-19.115980726999922],[-169.9240616529999,-19.09937916499996],[-169.92625891799992,-19.0949032529999],[-169.95042883999992,-19.087334893999937],[-169.94770260299993,-19.069431247999887],[-169.92625891799992,-19.03753020599987],[-169.9279679029999,-19.031833591999895],[-169.93158932199987,-19.02654387799991],[-169.93439693899992,-19.02092864399991],[-169.9337052069999,-19.01360442499991],[-169.93024654899986,-19.008396091999913],[-169.92638098899988,-19.007419528999932],[-169.92182369699992,-19.007012627999927],[-169.91600501199989,-19.00310637799994],[-169.89582271999996,-18.965101820999934],[-169.86371822799987,-18.964043877999885],[-169.8511449859999,-18.965101820999934]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Norfolk Island","adm0_a3":"NFK","geou_dif":0,"geounit":"Norfolk Island","gu_a3":"NFK","su_dif":0,"subunit":"Norfolk Island","su_a3":"NFK","brk_diff":0,"name":"Norfolk Island","name_long":"Norfolk Island","brk_a3":"NFK","brk_name":"Norfolk Island","brk_group":null,"abbrev":"Nfk. I.","postal":"NF","formal_en":"Territory of Norfolk Island","formal_fr":null,"note_adm0":"Auz.","note_brk":null,"name_sort":"Norfolk Island","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":2141,"gdp_md_est":32.12,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"NF","iso_a2":"NF","iso_a3":"NFK","iso_n3":"574","un_a3":"574","wb_a2":"-99","wb_a3":"-99","woe_id":23424905,"woe_id_eh":23424905,"woe_note":"Exact WOE match as country","adm0_a3_is":"NFK","adm0_a3_us":"NFK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":14,"long_len":14,"abbrev_len":7,"tiny":-99,"homepart":-99,"filename":"NFK.geojson"},"geometry":{"type":"Polygon","coordinates":[[[167.9841414720001,-29.017836195999887],[167.99634850400008,-29.02564869599989],[167.99463951900012,-29.04257577899996],[167.98503665500002,-29.05925872199991],[167.97348066500007,-29.066338799999965],[167.970062696,-29.068942966999956],[167.96794681100005,-29.07203541499986],[167.96648196700005,-29.075778903999975],[167.966644727,-29.080010674999915],[167.96070397200003,-29.065606377999938],[167.9504500660001,-29.056573174999922],[167.93970787900008,-29.055759372999916],[167.9326278000001,-29.066338799999965],[167.92644290500004,-29.066338799999965],[167.9243270190001,-29.055596612999945],[167.92017662900008,-29.045505466999902],[167.91830488399998,-29.036390882999896],[167.92237389400006,-29.028741143999877],[167.929942254,-29.019463799999908],[167.930511915,-29.01213958099991],[167.92457116000008,-29.008721612999906],[167.91211998800014,-29.011651299999926],[167.92652428500003,-28.99749114399991],[167.945567254,-29.001234632999935],[167.96583092500006,-29.011814059999978],[167.9841414720001,-29.017836195999887]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Pitcairn Islands","adm0_a3":"PCN","geou_dif":0,"geounit":"Pitcairn Islands","gu_a3":"PCN","su_dif":0,"subunit":"Pitcairn Islands","su_a3":"PCN","brk_diff":0,"name":"Pitcairn Is.","name_long":"Pitcairn Islands","brk_a3":"PCN","brk_name":"Pitcairn Is.","brk_group":null,"abbrev":"Pit. Is.","postal":"PN","formal_en":"Pitcairn, Henderson, Ducie and Oeno Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Pitcairn Islands","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":48,"gdp_md_est":0.72,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"PC","iso_a2":"PN","iso_a3":"PCN","iso_n3":"612","un_a3":"612","wb_a2":"-99","wb_a3":"-99","woe_id":23424918,"woe_id_eh":23424918,"woe_note":"Exact WOE match as country","adm0_a3_is":"PCN","adm0_a3_us":"PCN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":12,"long_len":16,"abbrev_len":8,"tiny":-99,"homepart":-99,"filename":"PCN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-130.08625240799992,-25.075127862999963],[-130.09593665299988,-25.07708098799983],[-130.1053360669999,-25.076755466999984],[-130.11367753799988,-25.07382577899997],[-130.12035071499992,-25.06829192499987],[-130.11046301999994,-25.06438567499987],[-130.1011449859999,-25.06438567499987],[-130.09300696499986,-25.06796640399993],[-130.08625240799992,-25.075127862999963]]],[[[-124.78551184799993,-24.663995049999922],[-124.78058834499988,-24.66464609199997],[-124.77892005099996,-24.667413018999923],[-124.77806555899987,-24.672539971999853],[-124.7787979809999,-24.668715101999922],[-124.78058834499988,-24.666599217000012],[-124.78538977799988,-24.66448333099991],[-124.78616288999989,-24.664564710999898],[-124.79710852799987,-24.667087498],[-124.78652910099993,-24.663995049999922],[-124.78551184799993,-24.663995049999922]]],[[[-128.29015051999988,-24.398370049999894],[-128.3001195949999,-24.41366952899986],[-128.32066809799994,-24.400648695999877],[-128.34219316299993,-24.371758721999953],[-128.35024980399987,-24.34124114399991],[-128.33018958199992,-24.324314059999935],[-128.30370032499985,-24.334649346999853],[-128.29084225199992,-24.36565520599987],[-128.29015051999988,-24.398370049999894]]],[[[-130.74136308499993,-23.924411716999884],[-130.74209550699993,-23.927829684999892],[-130.74697831899994,-23.93279387799994],[-130.7508438789999,-23.934665623],[-130.7530818349999,-23.929620049999883],[-130.7508438789999,-23.92717864399985],[-130.74803626199983,-23.927341403999904],[-130.74526933499993,-23.924411716999884],[-130.74136308499993,-23.924411716999884]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Palau","sov_a3":"PLW","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Palau","adm0_a3":"PLW","geou_dif":0,"geounit":"Palau","gu_a3":"PLW","su_dif":0,"subunit":"Palau","su_a3":"PLW","brk_diff":0,"name":"Palau","name_long":"Palau","brk_a3":"PLW","brk_name":"Palau","brk_group":null,"abbrev":"Palau","postal":"PW","formal_en":"Republic of Palau","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Palau","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":1,"mapcolor13":12,"pop_est":20796,"gdp_md_est":164,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"PS","iso_a2":"PW","iso_a3":"PLW","iso_n3":"585","un_a3":"585","wb_a2":"PW","wb_a3":"PLW","woe_id":23424927,"woe_id_eh":23424927,"woe_note":"Exact WOE match as country","adm0_a3_is":"PLW","adm0_a3_us":"PLW","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"PLW.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.81299889400023,2.960435289000117],[131.79517662900017,2.949042059000149],[131.77881920700017,2.952826239],[131.77540123800023,2.964056708000086],[131.78500410200004,2.974066473000079],[131.79151451900012,2.977728583000115],[131.80640709700018,2.974269924000126],[131.81299889400023,2.960435289000117]]],[[[131.16049238400012,3.022772528000104],[131.13843834700006,3.018947658],[131.13111412900005,3.029486395000134],[131.1421004570001,3.047308661000116],[131.16089928500017,3.058783270000063],[131.18360436300011,3.060288804000109],[131.19206790500007,3.048814195000162],[131.18043053500006,3.033270575000159],[131.16049238400012,3.022772528000104]]],[[[132.22673587300017,5.304348049000097],[132.22038821700008,5.292222398000192],[132.21387780000006,5.30711497600015],[132.22022545700008,5.310248114000117],[132.22673587300017,5.304348049000097]]],[[[134.1733504570001,6.893744208000072],[134.15967858200005,6.884466864000117],[134.145274285,6.899155992000118],[134.13672936300006,6.919094143000095],[134.13965905000012,6.934271552000084],[134.15984134200002,6.935003973000121],[134.17318769600016,6.92487213700015],[134.17774498800011,6.909165757000096],[134.1733504570001,6.893744208000072]]],[[[134.2433374360002,6.992824611000131],[134.23438561300006,6.984320380000099],[134.23047936300006,6.989203192000076],[134.2356876960001,7.008490302000112],[134.27149498800011,7.074530341000126],[134.27930748800006,7.072739976000136],[134.28321373800006,7.068752346000153],[134.2844344410001,7.062648830000086],[134.28500410200016,7.054632880000127],[134.2809350920002,7.049627997000087],[134.27149498800011,7.033596096000095],[134.27995853000002,7.020493882000125],[134.27605228000002,7.016913153000161],[134.26644941500015,7.016424872000172],[134.25782311300023,7.013088283000144],[134.2433374360002,6.992824611000131]]],[[[134.41651451900023,7.247951565000093],[134.39291425899998,7.224514065000121],[134.37794030000023,7.219142971000152],[134.36491946700008,7.221502997000116],[134.35523522199998,7.228013414000102],[134.34913170700023,7.237779039000145],[134.34717858200005,7.249904690000136],[134.347911004,7.267808335000097],[134.35084069100006,7.271185614000117],[134.38257897200018,7.237941799000111],[134.38900800899998,7.238918361000088],[134.40170332100016,7.246486721000124],[134.43685957100004,7.277899481000162],[134.44385826900012,7.287420966000155],[134.44459069100006,7.299221096000124],[134.44141686300006,7.310248114000076],[134.44109134200002,7.31671784100017],[134.449473504,7.314764716000126],[134.45484459700006,7.311590887000165],[134.45899498800011,7.307684637000165],[134.46216881600017,7.302150783000144],[134.46387780000018,7.294256903000175],[134.44922936300017,7.290025132000067],[134.45093834700018,7.281642971000095],[134.45899498800011,7.271877346000153],[134.46387780000018,7.263576565000079],[134.45834394600016,7.256740627000156],[134.4461369150001,7.253810940000136],[134.42595462300002,7.253322658000143],[134.41651451900023,7.247951565000093]]],[[[134.51189212300008,7.347316799000097],[134.52735436300006,7.331529039000144],[134.52222741000017,7.311346747000115],[134.51189212300008,7.308579820000161],[134.50326582100016,7.319322007000083],[134.49659264400012,7.33380768400012],[134.49122155000023,7.34267812700007],[134.47779381600006,7.3468692080001],[134.468028191,7.343817450000102],[134.449473504,7.328355210000082],[134.4477645190001,7.34320709800015],[134.44955488399998,7.355414130000128],[134.456879102,7.36269765800013],[134.47136478000002,7.362494208000086],[134.48861738400015,7.357855536000059],[134.51189212300008,7.347316799000097]]],[[[134.65821373800011,7.591050523000177],[134.64535566500015,7.557440497000159],[134.625743035,7.530503648000192],[134.62484785200004,7.523911851000121],[134.63599694100006,7.509466864000075],[134.63599694100006,7.503159898000135],[134.63135826900012,7.49868398600016],[134.62289472700016,7.472805080000156],[134.59961998800023,7.442572333000143],[134.5942488940001,7.421128648000121],[134.6010848320001,7.3836123720001],[134.59620201900023,7.369940497000157],[134.59164472699996,7.366888739000076],[134.58668053500006,7.368597723000079],[134.57496178500017,7.369574286000145],[134.56560306100002,7.375311591000113],[134.55933678500017,7.376166083000115],[134.55469811300023,7.372544664000159],[134.54420006600017,7.358547268000095],[134.538828972,7.355698960000069],[134.52800540500002,7.357570705000128],[134.52377363400004,7.361029364000117],[134.52230879000015,7.367010809000134],[134.51343834700012,7.3917910830001],[134.50586998800023,7.424017645000148],[134.49927819100017,7.43821849200016],[134.49122155000023,7.444566148000177],[134.48552493600008,7.444159247000173],[134.48292076900017,7.445786851000193],[134.48438561300023,7.458726304000109],[134.48755944100017,7.469916083000128],[134.49333743600008,7.480129299000154],[134.50131269600004,7.488348700000159],[134.51156660200004,7.493475653000161],[134.51547285200004,7.480536200000159],[134.52442467500023,7.478827216000155],[134.53386478000007,7.485988674000111],[134.538828972,7.499701239000131],[134.53614342500023,7.507961330000113],[134.5283309250002,7.516099351000136],[134.51156660200004,7.527655341000155],[134.51929772200006,7.534857489000102],[134.53272545700023,7.553697007000138],[134.54476972700013,7.561835028000147],[134.54639733200005,7.561183986000104],[134.54721113399998,7.566717841000127],[134.547129754,7.580389716000155],[134.54639733200005,7.581610419000171],[134.55697675900004,7.601141669000156],[134.56910241,7.613714911000145],[134.58611087300008,7.620550848000064],[134.6111759770001,7.622544664000187],[134.63502037900017,7.629339911000131],[134.64096113399998,7.645982164000173],[134.632985873,7.698187567000104],[134.62370853000016,7.717962958000114],[134.62142988400004,7.729681708000114],[134.625336134,7.734076239000089],[134.63428795700023,7.732163804000137],[134.64332116000006,7.726467190000151],[134.648203972,7.719427802000083],[134.66016686300023,7.686021226000108],[134.663340691,7.638576565000093],[134.65821373800011,7.591050523000177]]],[[[134.7181078552421,8.058676434273835],[134.70124501330545,8.050245013305414],[134.69252546823918,8.060799453942082],[134.6928135923371,8.075539276210506],[134.70967643427375,8.096617828631437],[134.7222477435953,8.09646618436939],[134.7273429907992,8.08287885849235],[134.7181078552421,8.058676434273835]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Nauru","sov_a3":"NRU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nauru","adm0_a3":"NRU","geou_dif":0,"geounit":"Nauru","gu_a3":"NRU","su_dif":0,"subunit":"Nauru","su_a3":"NRU","brk_diff":0,"name":"Nauru","name_long":"Nauru","brk_a3":"NRU","brk_name":"Nauru","brk_group":null,"abbrev":"Nauru","postal":"NR","formal_en":"Republic of Nauru","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nauru","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":6,"mapcolor13":9,"pop_est":14019,"gdp_md_est":60,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"NR","iso_a2":"NR","iso_a3":"NRU","iso_n3":"520","un_a3":"520","wb_a2":"-99","wb_a3":"-99","woe_id":23424912,"woe_id_eh":23424912,"woe_note":"Exact WOE match as country","adm0_a3_is":"NRU","adm0_a3_us":"NRU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Micronesia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"NRU.geojson"},"geometry":{"type":"Polygon","coordinates":[[[166.938812696,-0.490411065999922],[166.95557701900006,-0.497979424999869],[166.9582625660001,-0.517673434999907],[166.95134524800008,-0.539157809999935],[166.938812696,-0.551853122999901],[166.91635175899998,-0.547539971999896],[166.90699303500008,-0.524834893999952],[166.91342207100007,-0.50017669099995],[166.938812696,-0.490411065999922]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"New Zealand","sov_a3":"NZ1","adm0_dif":1,"level":2,"type":"Country","admin":"New Zealand","adm0_a3":"NZL","geou_dif":0,"geounit":"New Zealand","gu_a3":"NZL","su_dif":0,"subunit":"New Zealand","su_a3":"NZL","brk_diff":0,"name":"New Zealand","name_long":"New Zealand","brk_a3":"NZL","brk_name":"New Zealand","brk_group":null,"abbrev":"N.Z.","postal":"NZ","formal_en":"New Zealand","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"New Zealand","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":4213418,"gdp_md_est":116700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"NZ","iso_a2":"NZ","iso_a3":"NZL","iso_n3":"554","un_a3":"554","wb_a2":"NZ","wb_a3":"NZL","woe_id":23424916,"woe_id_eh":23424916,"woe_note":"Exact WOE match as country","adm0_a3_is":"NZL","adm0_a3_us":"NZL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NZL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[169.21275979100002,-52.474562293999895],[169.2089949880002,-52.484063408999894],[169.22201582100004,-52.483168226999894],[169.2347111340001,-52.48853932099986],[169.2417098320002,-52.497165622999866],[169.27468932200023,-52.50542996599985],[169.29352396200014,-52.52019845999985],[169.2747511460001,-52.52425818399984],[169.2504205030001,-52.52025656899995],[169.26043805900022,-52.544456442999945],[169.261573567,-52.55454375699986],[169.24500146400007,-52.56263498599991],[169.2372812340001,-52.572731799],[169.22957151100016,-52.587531573999826],[169.19529562200003,-52.60031327100001],[169.16654097999998,-52.598281473999855],[169.13223884400023,-52.59559193499981],[169.11897578100016,-52.58818701399988],[169.10019004300014,-52.57943603999986],[169.08474669600017,-52.5747079269999],[169.07372449900018,-52.56461294699987],[169.06151037300006,-52.56127017499987],[169.05148731100022,-52.56868165499991],[169.02564537900017,-52.55348072699984],[169.01539147200006,-52.54265715899993],[169.0248436480001,-52.53374952999983],[169.0459030120002,-52.53509699799994],[169.08253733900008,-52.54178847999991],[169.11359322500007,-52.54645346999989],[169.12014220500023,-52.52700069999992],[169.12890825500008,-52.50954676099986],[169.14430503700004,-52.49006050999987],[169.15976488099997,-52.48064174799984],[169.1862547110002,-52.46919912099997],[169.20502208500002,-52.46918815599986],[169.21275979100002,-52.474562293999895]]],[[[166.13697350400017,-50.86435312299993],[166.20525149800008,-50.87566497199982],[166.22632897200018,-50.88543059699986],[166.21225019600004,-50.89023202899994],[166.18425540500002,-50.89413827899985],[166.15723717500006,-50.90325286299993],[166.1434025400001,-50.90455494599993],[166.12964928500006,-50.902601820999884],[166.12273196700005,-50.9120419249999],[165.98552493600016,-50.90439218499987],[165.97828209700018,-50.900160414999846],[165.973887566,-50.893731377999835],[165.96501712300008,-50.88543059699986],[165.94190514400012,-50.87200286299995],[165.931813998,-50.863702080999886],[165.92408287900005,-50.85125090899996],[165.94239342500006,-50.85295989399987],[165.95834394599999,-50.85906340899995],[165.98568769600016,-50.87460702899995],[165.999847852,-50.87476978999983],[166.0768335300002,-50.86239999799989],[166.08961022199998,-50.85344817499986],[166.09587649800008,-50.85125090899996],[166.10710696700008,-50.85230885199983],[166.13697350400017,-50.86435312299993]]],[[[166.23072350400017,-50.5287411439999],[166.22852623800003,-50.54257577899998],[166.22632897200018,-50.549004815999815],[166.24252363400004,-50.54949309699999],[166.28777103000007,-50.54273853999987],[166.28419030000006,-50.54843515399994],[166.28825931100008,-50.56015390400002],[166.29558353000007,-50.571547132999896],[166.30201256600017,-50.57691822699986],[166.26050866000017,-50.57691822699986],[166.250824415,-50.57935963299989],[166.247813347,-50.585544528999854],[166.24708092500006,-50.59319426899989],[166.24341881600006,-50.60076262799984],[166.22624759200016,-50.61142343499987],[166.21404056100002,-50.60865650799981],[166.20183353000007,-50.60466887799993],[166.1847436860002,-50.61101653399986],[166.19532311300014,-50.618422132999854],[166.202403191,-50.62818775799989],[166.21208743600008,-50.65260182099993],[166.20541425900004,-50.65048593500001],[166.19117272199998,-50.64804452899998],[166.1847436860002,-50.64576588299992],[166.1891382170002,-50.66057708099989],[166.1921492850001,-50.66627369599988],[166.184336785,-50.67058684699997],[166.16431725400003,-50.68678150799992],[166.17945397200006,-50.68320077899986],[166.19581139400023,-50.683282158999845],[166.21208743600008,-50.68678150799992],[166.22632897200018,-50.69353606599995],[166.202403191,-50.70077890399989],[166.14942467500006,-50.696872653999975],[166.12273196700005,-50.700372002999885],[166.12273196700005,-50.7072079409999],[166.142344597,-50.70712656],[166.17725670700023,-50.71982187299997],[166.19841556100002,-50.720879815999844],[166.18921959700015,-50.73845794099987],[166.1779077480002,-50.755059502999835],[166.19336998800011,-50.75579192499986],[166.2194116550002,-50.75351327899997],[166.23259524800002,-50.755059502999835],[166.22820071700008,-50.763767185],[166.22681725400014,-50.772393487999906],[166.22828209700006,-50.78118254999988],[166.23259524800002,-50.7897274719999],[166.2241317070001,-50.78915781000002],[166.20679772200012,-50.790297132999875],[166.19841556100002,-50.7897274719999],[166.19841556100002,-50.79656340899983],[166.21208743600008,-50.79753997199989],[166.22999108200023,-50.80299244599984],[166.24594160200002,-50.81047942499999],[166.25367272200006,-50.81707122199997],[166.25114993600002,-50.83416106599983],[166.24008222699996,-50.85100676899983],[166.22437584700006,-50.86012135199982],[166.20883222700004,-50.85466887799988],[166.18490644600013,-50.84156666499982],[166.153575066,-50.83456796700001],[166.12501061300023,-50.824476820999955],[166.10889733200017,-50.802829684999956],[166.0983179050002,-50.81316497199988],[166.086680535,-50.82024504999985],[166.0612085300002,-50.8307430969999],[166.06755618600002,-50.817559502999956],[166.07740319100006,-50.80242278399996],[166.08350670700023,-50.78679778399997],[166.07862389400017,-50.772393487999906],[166.067637566,-50.76197682099983],[166.05437259200008,-50.75359465899996],[166.04021243600008,-50.75204843499992],[166.02711022200018,-50.76246510199982],[166.03614342500012,-50.76775481599998],[166.04737389400012,-50.77703215899994],[166.0529077480002,-50.78590260199998],[166.04444420700005,-50.7897274719999],[166.0306095710001,-50.78687916499987],[166.00749759200002,-50.77629973799982],[165.9929305350001,-50.77613697699994],[166.00391686300023,-50.78533294099983],[166.01417076900006,-50.79119231599996],[166.02230878999995,-50.798028252999885],[166.02711022200018,-50.81023528399995],[166.0268660820002,-50.82537200299995],[166.02149498800003,-50.83603280999997],[166.01107832099999,-50.842380467],[165.996348504,-50.84441497199985],[165.9786889980002,-50.84351978999985],[165.96534264400006,-50.840101820999934],[165.95386803500003,-50.83294036299999],[165.9414168630001,-50.820489190999886],[165.93311608200023,-50.82138437299988],[165.92017662900005,-50.83049895599987],[165.89673912900017,-50.85125090899996],[165.88648522200006,-50.794610283999965],[165.92530358200023,-50.75400155999996],[166.05909264400003,-50.69353606599995],[166.07878665500002,-50.675551039999924],[166.0914819670002,-50.65195077899988],[166.09587649800008,-50.62127044099998],[166.10320071700008,-50.59856536299985],[166.11524498800011,-50.57447682099982],[166.11768639400012,-50.55242278399983],[166.09587649800008,-50.535902601999844],[166.11329186300023,-50.532484632999925],[166.1264754570001,-50.527764580999836],[166.13990319100017,-50.52605559699983],[166.157481316,-50.53215911299982],[166.17115319100006,-50.532810153999954],[166.2194116550002,-50.52605559699983],[166.23259524800002,-50.52223072699991],[166.23072350400017,-50.5287411439999]]],[[[178.82211347700007,-49.71982187299999],[178.81397545700017,-49.72079843499996],[178.77320397200012,-49.71990325299998],[178.74170983200023,-49.71453215899984],[178.71900475400005,-49.70012786299995],[178.71762129000018,-49.67253997199985],[178.72803795700028,-49.66073984199997],[178.77076256600012,-49.627211195999934],[178.78711998800026,-49.6178524719999],[178.80062910200016,-49.61492278399997],[178.8151961600002,-49.61541106599987],[178.82886803499994,-49.61988697699992],[178.8390405610002,-49.629164320999976],[178.84392337300025,-49.64609140399996],[178.8390405610002,-49.66269296700001],[178.83155358200023,-49.67945728999985],[178.8274845710001,-49.696465753],[178.8263452480002,-49.713148695999855],[178.82211347700007,-49.71982187299999]]],[[[166.62940514400012,-48.029880466999984],[166.63428795700005,-48.039971612999956],[166.63746178500003,-48.05087656000002],[166.6372176440001,-48.062432549999954],[166.6277775400001,-48.05877044099991],[166.62232506600006,-48.052992445999855],[166.61304772200018,-48.03826262799987],[166.60482832099999,-48.03533294099985],[166.56836998800023,-48.041924737999906],[166.56836998800023,-48.034437757999854],[166.61882571700005,-47.99797942499997],[166.6372176440001,-47.99358489399999],[166.63209069100014,-48.00017669099987],[166.62354576900023,-48.02092864399988],[166.62940514400012,-48.029880466999984]]],[[[167.449473504,-47.23943450299984],[167.42676842500006,-47.24456145599994],[167.41871178500006,-47.23259856599999],[167.43067467500015,-47.218519789999874],[167.45427493600016,-47.207452080999836],[167.47730553500017,-47.205661716999856],[167.48698978000002,-47.21892669099988],[167.47388756600017,-47.227308851999936],[167.449473504,-47.23943450299984]]],[[[167.6977645190002,-46.79176197699992],[167.68262780000023,-46.79509856599986],[167.6694442070001,-46.791599216999956],[167.66285241000006,-46.778497002999984],[167.66700280000006,-46.765232028999876],[167.67872155000015,-46.75855885199991],[167.69336998800006,-46.75725676899991],[167.7067163420002,-46.75969817499994],[167.71973717500006,-46.76718515399991],[167.709239129,-46.784112237999906],[167.6977645190002,-46.79176197699992]]],[[[168.57260175899998,-46.79176197699992],[168.56324303500014,-46.80120208099986],[168.5678817070001,-46.79070403399997],[168.56120853,-46.78183359199993],[168.55030358200017,-46.77223072699995],[168.54216556100002,-46.75969817499994],[168.55762780000018,-46.75855885199991],[168.57211347700004,-46.754164320999934],[168.583750847,-46.74570077899997],[168.59001712300008,-46.732354424999876],[168.60572350400005,-46.75457122199994],[168.59351647200006,-46.775323174999926],[168.57260175899998,-46.79176197699992]]],[[[167.96753991000006,-46.69980234199991],[167.98666425899998,-46.71103281],[168.00407962300008,-46.72470468499995],[168.09327233200023,-46.81145598799988],[168.10743248800023,-46.821465752999956],[168.12427819100006,-46.829522393999895],[168.13843834700015,-46.838799737999935],[168.14421634200002,-46.85247161299998],[168.1565047540001,-46.85523853999993],[168.17920983200023,-46.86443450299991],[168.19125410200016,-46.87704843499998],[168.17164147200018,-46.8899065079999],[168.19206790500007,-46.89739348799989],[168.19206790500007,-46.90357838299995],[168.16732832099999,-46.90984465899999],[168.07650800900004,-46.90357838299995],[168.08334394600004,-46.8899065079999],[168.02702884200008,-46.888441664999945],[168.00814863400004,-46.89511484199991],[168.01823978000016,-46.91448333099984],[168.01539147200006,-46.92555103999987],[167.96664472700004,-46.97258879999997],[167.9918725920002,-46.97047291499995],[168.02670332100004,-46.93954843500002],[168.04867597700016,-46.93157317499988],[168.0588485040001,-46.934747002999934],[168.08643639400012,-46.94890715899987],[168.11182701900023,-46.953708591999934],[168.15113366000003,-46.96575286299996],[168.14730879000004,-46.97275155999993],[168.14380944100003,-46.97795989399985],[168.13900800900012,-46.98211028399989],[168.13111412900017,-46.98560963299997],[168.13111412900017,-46.99244557099989],[168.14258873800011,-46.99277109199991],[168.19654381600006,-46.97926197699985],[168.2093205090001,-46.97869231599988],[168.22266686300006,-46.97323984200001],[168.23023522200006,-46.97161223799999],[168.23365319100006,-46.97568124799987],[168.23666425900015,-46.98357512799994],[168.24431399800008,-46.99081796699987],[168.253184441,-46.99618905999992],[168.260996941,-46.99920012799993],[168.25611412900005,-47.008721612999835],[168.24984785199996,-47.034112237999935],[168.24732506600014,-47.04078541499982],[168.23609459700018,-47.045586846999896],[168.22486412900017,-47.044610283999916],[168.2130639980002,-47.041680596999896],[168.19947350400005,-47.04078541499982],[168.19947350400005,-47.04762135199992],[168.24463951900012,-47.06861744599995],[168.25757897200012,-47.078383070999905],[168.2592879570001,-47.08473072699992],[168.25171959700006,-47.08798593499996],[168.24122155000006,-47.08896249799986],[168.23365319100006,-47.088555596999846],[168.22828209700018,-47.08513762799992],[168.22071373800023,-47.07219817499984],[168.21314537900017,-47.06812916499996],[168.1910913420002,-47.067152601999894],[168.185801629,-47.07431406000002],[168.19206790500007,-47.09889088299995],[168.18100019600004,-47.10393645599997],[168.14649498800011,-47.0935197899999],[168.15796959700006,-47.1090634089999],[168.08334394600004,-47.1090634089999],[168.02125084700018,-47.11646900799998],[167.99626712300008,-47.12444426899985],[167.93376712300002,-47.164483330999964],[167.91521243600002,-47.181084893999916],[167.90186608200023,-47.18840911299984],[167.884125196,-47.18808359199991],[167.86670983200017,-47.18254973799998],[167.85352623800011,-47.174248955999914],[167.83790123800023,-47.16838958099996],[167.80160566500004,-47.17245859199993],[167.7892358730002,-47.17115650799984],[167.77955162900005,-47.15911223799992],[167.77312259200014,-47.14470794099995],[167.764903191,-47.13746510199984],[167.74415123800011,-47.15064869599996],[167.72738691499998,-47.153497003],[167.71973717500006,-47.15691497199984],[167.71941165500007,-47.160577080999886],[167.71290123800023,-47.18482838299995],[167.697032097,-47.17693450299989],[167.64576256600017,-47.205173434999864],[167.6167098320001,-47.21217213299994],[167.63461347700016,-47.22551848799995],[167.66578209700006,-47.221449476999894],[167.72657311300011,-47.20525481599985],[167.71461022200006,-47.22437916499992],[167.70329837300008,-47.23723723799985],[167.67188561300023,-47.26051197699995],[167.6721297540001,-47.23609791499982],[167.65943444100006,-47.236423435],[167.64177493600013,-47.24928150799994],[167.62745201900023,-47.263604424999926],[167.60922285200016,-47.270440362999864],[167.5756942070001,-47.27597421699997],[167.54135175900012,-47.27760182099989],[167.52100670700005,-47.27304452899986],[167.51547285200004,-47.253676039999846],[167.5218205090001,-47.2282854149999],[167.53402754000012,-47.204034112999835],[167.54558353000007,-47.18824635199988],[167.5558374360002,-47.18173593499998],[167.57545006600017,-47.179782809999935],[167.59571373800003,-47.16863372199999],[167.63038170700023,-47.15691497199984],[167.61304772200006,-47.148614190999936],[167.6128035820001,-47.13941822699988],[167.6198022800002,-47.12900155999989],[167.62476647200003,-47.11646900799998],[167.6232202480002,-47.101332289999974],[167.61988366000017,-47.08977629999987],[167.6198022800002,-47.07870859199992],[167.62745201900023,-47.06471119599996],[167.63770592500023,-47.054620049999976],[167.648203972,-47.04802825299993],[167.67188561300023,-47.037041924999954],[167.68824303500017,-47.03289153399993],[167.70118248800006,-47.035577081],[167.7130639980002,-47.039971612999885],[167.72657311300011,-47.04078541499982],[167.7438257170002,-47.02727629999984],[167.74000084700018,-47.003350518999945],[167.73226972700016,-46.97673919099983],[167.73707116000017,-46.955173435],[167.74935957100004,-46.94988372199993],[167.7788192070001,-46.94988372199993],[167.79200280000023,-46.941827080999985],[167.80860436300011,-46.922051690999965],[167.814219597,-46.91122812299989],[167.81657962300005,-46.89739348799989],[167.81137129000015,-46.87476978999983],[167.79818769600004,-46.853448174999954],[167.76441491000006,-46.8182919249999],[167.7583113940002,-46.80738697699991],[167.76254316500015,-46.79859791499986],[167.77027428500017,-46.79119231599995],[167.77426191500015,-46.78386809699986],[167.7739363940002,-46.777439059999935],[167.77214603000007,-46.77255624799997],[167.76905358200017,-46.76824309699988],[167.76441491000006,-46.76336028399999],[167.76026451900012,-46.756036065999986],[167.7618921230002,-46.75042083099989],[167.7658797540001,-46.74537525799995],[167.76807701900006,-46.73984140399995],[167.7736108730002,-46.71168385199995],[167.787445509,-46.697198175],[167.809743686,-46.692071222],[167.840098504,-46.69133879999997],[167.86695397200012,-46.698174737999885],[167.88233483200023,-46.699883721999896],[167.89527428500006,-46.69475676899996],[167.90919030000012,-46.68482838299988],[167.9205835300002,-46.683038018999895],[167.96753991000006,-46.69980234199991]]],[[[166.7301538420002,-45.62656015399989],[166.74350019599996,-45.645765882999854],[166.75171959700015,-45.66871510199992],[166.754649285,-45.69011809699988],[166.75066165500002,-45.7120907529999],[166.73926842500006,-45.72795989399992],[166.72169030000023,-45.73707447699982],[166.6993921230002,-45.739190362999835],[166.69727623800011,-45.73398202900002],[166.68995201900006,-45.72389088299987],[166.68181399800008,-45.71884531000002],[166.67481530000006,-45.73691171699985],[166.66667728000007,-45.74081796699985],[166.65739993600002,-45.74114348799987],[166.65007571700014,-45.739190362999835],[166.64421634200005,-45.72869231599995],[166.63892662899997,-45.70891692499983],[166.63599694100017,-45.68873463299998],[166.6372176440001,-45.67717864399988],[166.62305748800006,-45.65829843500001],[166.60572350400017,-45.65984465899989],[166.54346764400006,-45.71152109199993],[166.52735436300011,-45.71965911299985],[166.50619550900004,-45.72486744599985],[166.51148522200018,-45.711683851999894],[166.52100670700008,-45.693536065999886],[166.53288821700002,-45.67734140399993],[166.54444420700005,-45.67034270599994],[166.54737389400006,-45.66725025799996],[166.55892988400004,-45.651950779],[166.56666100400005,-45.63713958099993],[166.57862389400023,-45.63494231599993],[166.60377037900005,-45.63551197699991],[166.68384850399997,-45.61598072699993],[166.70248457099999,-45.615166924999926],[166.71143639400012,-45.61630624799995],[166.7301538420002,-45.62656015399989]]],[[[167.03443444100017,-45.30046965899986],[167.00098717500012,-45.30494557099992],[166.98747806100002,-45.30234140399992],[166.9698999360002,-45.2894833309999],[166.95362389400006,-45.28232187299986],[166.9318139980002,-45.277113539999945],[166.91228274800002,-45.26978932099986],[166.90414472700002,-45.256036065999936],[166.89332116000006,-45.24342213299995],[166.8909611340001,-45.23560963299987],[166.90113366,-45.23211028399996],[166.89918053500017,-45.227715752999984],[166.90577233200023,-45.217950127999856],[166.96615644600016,-45.149590752999956],[166.96631920700023,-45.15447356599985],[166.96827233200005,-45.15732187299989],[166.97087649800005,-45.15976327899992],[166.97364342500023,-45.163262628],[166.982758009,-45.19939544099985],[166.99708092500012,-45.23316822699984],[167.03443444100017,-45.30046965899986]]],[[[-176.1988419259999,-44.33505624799996],[-176.2189835279999,-44.34124114399985],[-176.21760006399992,-44.32724374799989],[-176.22118079299992,-44.323988539999846],[-176.2275284499999,-44.31617603999993],[-176.23119055899988,-44.3129208309999],[-176.22748775899984,-44.30974700299984],[-176.23119055899988,-44.306735935],[-176.22565670499986,-44.2985979149999],[-176.21247311099992,-44.272637628],[-176.2106827459999,-44.265069268999966],[-176.22138424399995,-44.252373956],[-176.23261471299995,-44.24700286299995],[-176.23607337099995,-44.24195728999983],[-176.2237442699999,-44.230889580999886],[-176.2090551419999,-44.22478606599989],[-176.18915768099993,-44.22144947699995],[-176.16950436099995,-44.22112395599993],[-176.15546627499992,-44.224216404],[-176.15021725199992,-44.22918059699988],[-176.14887447799993,-44.235528253],[-176.14830481699988,-44.24195728999983],[-176.14525305899988,-44.24814218499989],[-176.13886471299995,-44.252699476999915],[-176.11388098899994,-44.265069268999966],[-176.14887447799993,-44.282403252999956],[-176.15880286399994,-44.29509856599992],[-176.16234290299988,-44.316582940999936],[-176.1988419259999,-44.33505624799996]]],[[[-176.5504858059999,-43.71428801899992],[-176.5396622389999,-43.71697356599999],[-176.49791419199988,-43.71559010199992],[-176.4844457669999,-43.71697356599999],[-176.4170629549999,-43.741469007999854],[-176.39195716099988,-43.74488697699995],[-176.16913814999992,-43.73137786299996],[-176.16913814999992,-43.73748137799987],[-176.1848852199999,-43.73772551899991],[-176.19648189999992,-43.74431731599998],[-176.20299231699988,-43.75603606599988],[-176.2033178379999,-43.771661065999865],[-176.24445553299992,-43.754327080999865],[-176.28510494699992,-43.76970794099991],[-176.3206274079999,-43.8016903629999],[-176.36982174399992,-43.862725518999966],[-176.37852942599986,-43.87916432099996],[-176.38198808499988,-43.89861419099987],[-176.38202877499987,-43.89861419099987],[-176.38512122299989,-43.906670830999914],[-176.39195716099988,-43.909926039999945],[-176.39879309799989,-43.90764739399998],[-176.4019262359999,-43.89861419099987],[-176.40160071499994,-43.874688408999916],[-176.40367591099988,-43.86419036299985],[-176.40937252499995,-43.85418059699986],[-176.3940323559999,-43.84514739399994],[-176.3741348949999,-43.826755467],[-176.35802161399994,-43.80486419099988],[-176.3541153639999,-43.78590260199986],[-176.37226314999992,-43.765883070999976],[-176.4019262359999,-43.75847747199991],[-176.45653235599994,-43.75798919099992],[-176.51305091099988,-43.75017669099984],[-176.53538977799988,-43.755629164999874],[-176.53290768099995,-43.77906666499993],[-176.5142309239999,-43.79143645599988],[-176.4230443999999,-43.80584075299985],[-176.4964086579999,-43.85116952899986],[-176.5015356109999,-43.86443450299997],[-176.46735592399995,-43.89861419099987],[-176.4597061839999,-43.91171640399993],[-176.4592179029999,-43.92457447699996],[-176.4600723949999,-43.93726978999993],[-176.45653235599994,-43.94980234199993],[-176.43321692599994,-43.96298593499996],[-176.39521236899992,-43.93857187299993],[-176.3888647129999,-43.960625908999916],[-176.3871964179999,-43.97616952900002],[-176.3823949859999,-43.98577239399991],[-176.3646947909999,-44.001641533999845],[-176.35163326699987,-44.00920989399996],[-176.32445227799988,-44.014336846999896],[-176.31318111899992,-44.019301039999945],[-176.30003821499992,-44.04257577899995],[-176.32909094999994,-44.050469658999845],[-176.37144934799994,-44.05217864399994],[-176.39850826699993,-44.05657317499991],[-176.4087621739999,-44.06210702900002],[-176.4354955719999,-44.07008228999989],[-176.4600723949999,-44.086521091999984],[-176.50495357999992,-44.10125090899989],[-176.51178951699995,-44.121758721999925],[-176.51915442599994,-44.123142185],[-176.58149166599992,-44.123142185],[-176.59996497299994,-44.12004973799992],[-176.6079809239999,-44.11150481599991],[-176.6105850899999,-44.09010182099995],[-176.6177872389999,-44.07138437299999],[-176.64146887899994,-44.03297291499988],[-176.64936275899993,-44.027927341999856],[-176.65961666599992,-44.02385833099998],[-176.66437740799995,-44.01921965899987],[-176.65575110599994,-44.011895440999865],[-176.6333715489999,-44.003513278999904],[-176.5743302069999,-43.969414971999896],[-176.56330318899992,-43.960625908999916],[-176.55817623599992,-43.94947682099982],[-176.53514563699994,-43.93808359199994],[-176.5159399079999,-43.9222958309999],[-176.52228756399992,-43.89861419099987],[-176.56615149599986,-43.837823174999855],[-176.58812415299988,-43.82008228999986],[-176.61131751199989,-43.80584075299985],[-176.62372799399995,-43.80136484199988],[-176.63837643099995,-43.79957447699997],[-176.65306555899986,-43.802178643999895],[-176.6635636059999,-43.80706145599987],[-176.67259680899994,-43.80966562299996],[-176.68305416599992,-43.80584075299985],[-176.69050045499986,-43.81324635199992],[-176.6852514309999,-43.826918226999965],[-176.69416256399995,-43.82903411299996],[-176.70970618399994,-43.82838307099992],[-176.7246801419999,-43.83367278399999],[-176.75422115799992,-43.82350025799987],[-176.82591712099995,-43.83961353999993],[-176.8549698559999,-43.82008228999986],[-176.84028072799993,-43.801202081],[-176.8209122389999,-43.794610283999944],[-176.79975338399987,-43.7904598939999],[-176.7792862619999,-43.77906666499993],[-176.7794897129999,-43.77206796699987],[-176.78534908799995,-43.76376718499998],[-176.78648841099988,-43.756280205999914],[-176.7724503249999,-43.751153252999984],[-176.7700089179999,-43.754652601999894],[-176.74522864499994,-43.768487237999885],[-176.73460852799988,-43.771661065999865],[-176.64484615799995,-43.76433684699994],[-176.62474524599992,-43.75457122199991],[-176.61375891799995,-43.73552825299999],[-176.60956783799992,-43.71900807099985],[-176.60199947799987,-43.70761484199988],[-176.58063717399992,-43.703383070999855],[-176.57213294199985,-43.70533619599982],[-176.5504858059999,-43.71428801899992]]],[[[174.40137780000023,-41.1405575499999],[174.39380944100012,-41.15357838299994],[174.38770592500012,-41.183526299999905],[174.38086998800023,-41.195082289999846],[174.36597741000006,-41.20256926899999],[174.34839928500023,-41.203383070999905],[174.3297632170001,-41.20191822699995],[174.31202233200017,-41.20256926899999],[174.2983504570002,-41.207940362999864],[174.27361087300014,-41.224786065999865],[174.2636824880001,-41.22991301899988],[174.24805748800017,-41.23211028399987],[174.19727623800028,-41.23007577899993],[174.19752037900017,-41.229750257999825],[174.2024845710002,-41.22568124799986],[174.21322675899992,-41.21770598799999],[174.21648196699996,-41.21624114399994],[174.22722415500024,-41.21542734199992],[174.25114993600025,-41.217217705999914],[174.26050866000006,-41.21282317499984],[174.31202233200017,-41.16855234199997],[174.3291121750003,-41.18173593499992],[174.35124759200025,-41.17546965899996],[174.3675236340001,-41.158868097],[174.36670983200028,-41.1405575499999],[174.35425866000014,-41.14592864399991],[174.3421330090001,-41.14470794099989],[174.33204186300023,-41.13795338299995],[174.32569420700028,-41.126885675],[174.34359785200022,-41.125746351999965],[174.35645592500018,-41.11882903399989],[174.3679305350001,-41.11077239399985],[174.38086998800023,-41.10637786299995],[174.3973087900002,-41.10833098799999],[174.39975019600004,-41.11589934699987],[174.39795983200023,-41.12721119599985],[174.40137780000023,-41.1405575499999]]],[[[173.95573978000016,-40.777520440999965],[173.9619246750002,-40.78769296699991],[173.96371504000015,-40.794366143999966],[173.95915774800017,-40.797295830999985],[173.9536238940003,-40.799981377999956],[173.93897545700017,-40.813571873],[173.93458092500018,-40.81902434699987],[173.93148847700007,-40.82935963299997],[173.92774498800026,-40.85523853999988],[173.92164147200012,-40.86679452899999],[173.91749108200023,-40.86777109199988],[173.89747155000026,-40.86679452899999],[173.89161217500012,-40.86931731599983],[173.8797306650001,-40.88176848799985],[173.87378991000014,-40.88665129999991],[173.84929446700014,-40.89348723799992],[173.84229576900015,-40.89641692499994],[173.8381453790001,-40.90300872199984],[173.83521569100017,-40.91008879999998],[173.83228600400017,-40.91464609200001],[173.8196720710002,-40.92156340899984],[173.80518639400023,-40.92636484200001],[173.7905379570001,-40.92701588299997],[173.77759850400022,-40.92148202899986],[173.7815047540001,-40.91806406000002],[173.78272545700017,-40.91464609200001],[173.7830509770001,-40.911228123000015],[173.78443444099995,-40.90715911299996],[173.7961531910002,-40.902113539999846],[173.80250084700015,-40.89430103999993],[173.80323326900017,-40.88437265400002],[173.79810631600012,-40.873142184999935],[173.7872827480002,-40.882989190999865],[173.78443444099995,-40.88665129999991],[173.77865644600013,-40.875176690999965],[173.77670332100016,-40.86256275799998],[173.77865644600013,-40.850192966999856],[173.78443444099995,-40.83896249799986],[173.79965253999993,-40.849867445999834],[173.8113712900002,-40.86174895599997],[173.82504316500015,-40.87078215899989],[173.8458764980002,-40.873142184999935],[173.8458764980002,-40.86679452899999],[173.83350670700017,-40.85881926899995],[173.82260175899992,-40.848565362999835],[173.81470787899994,-40.83538176899988],[173.8117781910002,-40.81902434699987],[173.8142195970002,-40.80437590899986],[173.82683353000024,-40.76628997199995],[173.83228600400017,-40.75758228999989],[173.8377384770002,-40.75896575299987],[173.83904056100013,-40.76702239399998],[173.84197024800014,-40.77532317499988],[173.85271243600025,-40.777520440999965],[173.8564559250003,-40.76384856599992],[173.8615828790001,-40.7544898419999],[173.8701278,-40.75017669099998],[173.88477623800023,-40.756280205999886],[173.88510175900004,-40.770928643999895],[173.88249759200014,-40.78899504999991],[173.88746178500008,-40.80535247199984],[173.89503014400023,-40.79583098799992],[173.92652428500003,-40.78801848799985],[173.94214928500023,-40.777520440999965],[173.90796959700018,-40.777520440999965],[173.93043053500017,-40.762627862999906],[173.9397892590002,-40.75457122199988],[173.9489038420002,-40.743340752999885],[173.9598087900001,-40.71477629999998],[173.96485436300017,-40.70875416499989],[173.96941165500013,-40.723402601999894],[173.96908613399992,-40.73772551899988],[173.9655867850002,-40.75164153399994],[173.95573978000016,-40.777520440999965]]],[[[172.90447024800025,-40.50847747199984],[172.9641219410001,-40.52157968499999],[172.99683678500006,-40.52418385199981],[172.97396894600004,-40.531182549999876],[172.75782311300028,-40.51767343499991],[172.74219811300034,-40.52092864399993],[172.73194420700028,-40.530938408999845],[172.72234134200008,-40.551527601999965],[172.711680535,-40.591078382999825],[172.70248457100016,-40.61003997199983],[172.68775475400017,-40.61980559699995],[172.69678795700005,-40.64055754999987],[172.69141686300011,-40.648370049999954],[172.67750084700023,-40.64910247199998],[172.66041100400017,-40.64771900799991],[172.67408287900022,-40.67441171699984],[172.67969811300011,-40.67782968499985],[172.696543816,-40.68287525799997],[172.7013452480002,-40.687432549999826],[172.70118248800023,-40.70435963299981],[172.68913821700002,-40.734063408999916],[172.6945093110002,-40.75017669099981],[172.7009383470003,-40.745212497999944],[172.72234134200008,-40.736504815999865],[172.73609459700018,-40.76490650799988],[172.77051842500018,-40.791680596999896],[172.8564559250001,-40.843682549999954],[172.86931399800002,-40.84726327899992],[172.88233483200023,-40.843194268999966],[172.90650475400003,-40.82854583099996],[172.91146894600027,-40.82675546699997],[172.92448978000007,-40.82586028399989],[172.92839603000013,-40.823011976999844],[172.92628014400023,-40.80999114399995],[172.92790774800008,-40.80535247199984],[172.94385826900003,-40.793226820999934],[172.95167076900006,-40.794040622999944],[172.96208743600013,-40.80535247199984],[172.97510826900023,-40.78997161299989],[172.989105665,-40.78085702899999],[173.00342858200017,-40.78199635199992],[173.01734459700023,-40.797295830999985],[173.0224715500003,-40.809828382999896],[173.02279707100004,-40.81902434699987],[173.01734459700023,-40.83896249799986],[173.023203972,-40.84832122199997],[173.02198326900015,-40.85654062299988],[173.00977623800028,-40.86679452899999],[173.02654056100013,-40.869073174999876],[173.0413517590001,-40.86825937299987],[173.05420983200023,-40.87175872199987],[173.06495201900017,-40.886651299999826],[173.06202233200023,-40.89153411299998],[173.05201256600006,-40.93572356599986],[173.05567467500018,-40.95427825299987],[173.0582788420002,-40.96306731599983],[173.05600019600004,-40.96990325299985],[173.04460696700014,-40.98300546699991],[173.02214603000004,-41.001397393999866],[172.99683678500006,-41.01702239399985],[173.00619550900015,-41.021416924999926],[173.01368248800023,-41.02312590899993],[173.02125084700018,-41.02174244599995],[173.03093509200002,-41.01702239399985],[173.0427352220003,-41.06682708099982],[173.04460696700014,-41.082207940999865],[173.0503035820003,-41.097426039999846],[173.0615340500002,-41.1106096329998],[173.0693465500003,-41.12420012799976],[173.06495201900017,-41.1405575499999],[173.06120853,-41.13111744599985],[173.05502363400015,-41.12322356599995],[173.04721113400026,-41.11695728999992],[173.03777103000004,-41.11321379999988],[173.03093509200002,-41.14910247199988],[173.03435306100025,-41.15789153399976],[173.04997806100027,-41.17017994599989],[173.05543053500023,-41.17750416499982],[173.0582788420002,-41.18889739399995],[173.06495201900017,-41.18889739399995],[173.0756942070003,-41.17644622199985],[173.08350670700034,-41.1892229149998],[173.09294681100016,-41.22991301899988],[173.10531660200002,-41.25693124799983],[173.1061304050003,-41.264743747999916],[173.10043379000015,-41.270928643999966],[173.08318118600025,-41.27711353999986],[173.07927493600008,-41.28460051899991],[173.0864363940003,-41.299411716999984],[173.10385175900015,-41.30779387799985],[173.1259871750003,-41.311700127999856],[173.1723738940001,-41.311944268999895],[173.19361412900028,-41.30901458099987],[173.21273847700044,-41.301853122999916],[173.24976647200018,-41.27743905999988],[173.28435306100042,-41.26140715899989],[173.30152428500028,-41.24700286299991],[173.34009850400028,-41.20598723799982],[173.40219160200027,-41.15960051899985],[173.42709394600016,-41.15154387799991],[173.43832441500044,-41.13697682099988],[173.4487410820001,-41.133721612999935],[173.45492597700022,-41.13697682099988],[173.45541425900026,-41.14478932099987],[173.45248457100016,-41.15390390399996],[173.4487410820001,-41.16106536299982],[173.48324629000015,-41.14999765399987],[173.5001733730003,-41.14137135199994],[173.51384524800025,-41.13030364399984],[173.53003991000028,-41.10637786299995],[173.53809655000023,-41.09970468499991],[173.54688561300043,-41.09921640399992],[173.55551191499993,-41.103285414999874],[173.56397545700034,-41.10377369599996],[173.57211347700027,-41.09286874799997],[173.56202233200045,-41.081963799999826],[173.57113691500027,-41.06812916499992],[173.58863366000017,-41.056329033999944],[173.60320071700045,-41.05120208099984],[173.6208602220003,-41.05624765399996],[173.63656660200024,-41.06926848799995],[173.64673912900022,-41.087009372999944],[173.64795983200023,-41.10637786299995],[173.65479576900034,-41.10637786299995],[173.65967858200045,-41.09685637799987],[173.66472415500024,-41.09368254999981],[173.6696883470003,-41.09685637799987],[173.67457116000006,-41.10637786299995],[173.68881269600016,-41.09970468499991],[173.6748153,-41.07594166499982],[173.68897545700023,-41.06471119599982],[173.71599368600047,-41.05803801899994],[173.73975670700028,-41.04802825299987],[173.74756920700028,-41.03720468499988],[173.7465926440004,-41.02711353999981],[173.73861738400004,-41.019789320999905],[173.72608483200034,-41.01702239399985],[173.68767337300028,-41.037367445999934],[173.68140709700015,-41.034437757999825],[173.6811629570002,-41.021091403999904],[173.68238366000043,-41.01572030999985],[173.69874108200028,-40.9999325499999],[173.70728600400028,-40.994235935],[173.73023522200018,-40.98528411299989],[173.73975670700028,-40.97958749799999],[173.75066165499996,-40.975681248],[173.80152428500017,-40.96917083099983],[173.80681399800025,-40.96493905999997],[173.82886803500043,-40.9385718729999],[173.85352623800023,-40.925876559999935],[173.84978274800028,-40.9718563779999],[173.87378991000014,-40.97600676899975],[173.87745201900023,-40.97234465899989],[173.90796959700018,-40.94882577899983],[173.91049238400026,-40.943780205999985],[173.91309655000023,-40.93084075299997],[173.9142358730003,-40.92766692499991],[173.91968834700023,-40.925062757999925],[173.93458092500032,-40.92148202899986],[173.9836531910002,-40.90097421699989],[173.99203535200022,-40.89999765399983],[174.00391686300034,-40.89999765399983],[174.0157983730002,-40.90203215899986],[174.02409915500047,-40.90715911299996],[174.03484134200005,-40.93352629999987],[174.01758873800028,-40.93718840899983],[173.9694116550003,-40.92766692499991],[173.97584069100023,-40.940850518999966],[173.96998131600026,-40.94793059699983],[173.96045983200025,-40.955254815999936],[173.95573978000016,-40.96917083099983],[173.9445093110003,-40.96591562299987],[173.93376712300017,-40.96550872199987],[173.92367597700033,-40.96884530999989],[173.9142358730003,-40.97600676899975],[173.92025800900032,-40.98202890399985],[173.92237389400046,-40.98593515399985],[173.92579186300023,-40.98845794099995],[173.93458092500032,-40.98984140399993],[173.91797936300023,-41.001885674999855],[173.8855086600004,-41.010186455999914],[173.85385175900026,-41.01083749799996],[173.83961022200006,-40.9999325499999],[173.82439212300008,-40.99830494599988],[173.7957462900002,-41.001397393999866],[173.78052819100023,-41.01140715899976],[173.80494225400028,-41.031345309999836],[173.79078209700006,-41.038506768999966],[173.78077233200028,-41.046563408999816],[173.78126061300026,-41.05388762799991],[173.7981063160003,-41.05868906],[173.79468834700018,-41.07146575299994],[173.78825931100025,-41.08294036299989],[173.77955162900028,-41.09254322699995],[173.77027428500023,-41.09970468499991],[173.77865644600013,-41.10767994599995],[173.7902124360003,-41.11012135199981],[173.80054772200026,-41.10475025799994],[173.80494225400028,-41.08904387799997],[173.82813561300023,-41.06340911299982],[173.82886803500043,-41.05868906],[173.89478600400028,-41.04941171699985],[173.92994225400017,-41.048272393999824],[173.95573978000016,-41.05868906],[173.94483483200048,-41.057386976999894],[173.93604576900023,-41.05950286299982],[173.93043053500017,-41.065362237999864],[173.92847741000028,-41.07537200299975],[173.92505944100017,-41.084649346999896],[173.91700280000035,-41.08407968499992],[173.90772545700023,-41.080173434999836],[173.90056399799997,-41.07903411299989],[173.89551842500023,-41.07781340899996],[173.88868248800046,-41.07431405999998],[173.8825789720003,-41.07398853999994],[173.8801375660003,-41.082207940999865],[173.88119550900015,-41.086195570999934],[173.88624108200028,-41.09205494599979],[173.88746178500028,-41.0962867169999],[173.88599694100023,-41.10588958099997],[173.8815210300002,-41.11012135199981],[173.87476647200035,-41.110039971999825],[173.86646569100017,-41.10637786299995],[173.85914147200018,-41.12948984199991],[173.84489993600025,-41.136163018999966],[173.82911217500038,-41.140069268999945],[173.81861412900022,-41.15488046699993],[173.8341577480003,-41.15496184699991],[173.85230553500023,-41.16082122199987],[173.86744225400022,-41.17115650799997],[173.87378991000014,-41.185235283999916],[173.8715926440003,-41.195570570999834],[173.86182701900023,-41.21786874799996],[173.85954837300037,-41.22991301899988],[173.8471785820005,-41.24146900799981],[173.8186955090002,-41.25253671699993],[173.76392662900028,-41.264743747999916],[173.7673445970003,-41.276055596999896],[173.77426191500027,-41.283949476999965],[173.7829695970003,-41.288750908999944],[173.79127037900017,-41.29143645599984],[173.8969832690003,-41.244398695999834],[173.93458092500032,-41.236748955999985],[173.93458092500032,-41.22991301899988],[173.91993248800028,-41.22633228999982],[173.90650475400014,-41.226657809999836],[173.89535566500027,-41.225030205999815],[173.88746178500028,-41.21624114399994],[173.9293725920003,-41.212172132999875],[173.95045006600023,-41.212660414999874],[173.96599368600025,-41.219659112999935],[173.98178144600016,-41.22421640399997],[174.00603274800037,-41.22193775799973],[174.03012129000018,-41.21607838299988],[174.04566491000014,-41.20956796699988],[174.0395613940004,-41.20647551899981],[174.02409915500047,-41.195082289999846],[174.08334394600027,-41.19947682099992],[174.1121525400002,-41.19345468499999],[174.13396243600036,-41.175388278999975],[174.02125084700035,-41.17750416499982],[174.0040796230003,-41.18157317499987],[174.00147545700045,-41.18474700299993],[174.00147545700045,-41.1892229149998],[173.9993595710002,-41.19345468499999],[173.99024498800023,-41.195082289999846],[173.98357181100025,-41.19500090899986],[173.9790145190003,-41.194268487999835],[173.97486412900028,-41.19231536299988],[173.9694116550003,-41.18889739399995],[173.9763289720002,-41.175388278999975],[173.92269941500012,-41.19264088299981],[173.89633222700044,-41.191664320999834],[173.88746178500028,-41.16106536299982],[173.89258873800023,-41.14519622199988],[173.90300540500027,-41.135837497999944],[173.91578209699995,-41.12908294099982],[173.92847741000028,-41.12070077899995],[173.93043053500017,-41.1144345029999],[173.92839603000027,-41.107354424999755],[173.92790774800025,-41.101983330999886],[173.9353133470002,-41.09970468499991],[173.94410241000028,-41.09872812299984],[173.94898522200018,-41.095635674999855],[173.95045006600023,-41.08928801899991],[173.9489038420002,-41.07903411299989],[173.9836531910002,-41.08521900799987],[173.97315514400034,-41.101169528999876],[173.97055097700024,-41.116631768999895],[173.9763289720002,-41.14739348799987],[173.99382571700048,-41.12322356599995],[174.0024520190003,-41.10409921699998],[174.01539147200015,-41.092950127999956],[174.04566491000014,-41.09286874799997],[174.02881920700034,-41.073174737999935],[174.02426191500044,-41.06340911299982],[174.04135175900026,-41.04306406],[174.04200280000023,-41.02825286299985],[174.03370201900023,-41.017185153999904],[174.01726321700025,-41.01702239399985],[174.01075280000023,-41.026788018999966],[174.0066024100002,-41.04241301899995],[174.0001733730002,-41.052911065999936],[173.98707116000017,-41.04802825299987],[173.95630944100017,-41.02263762799994],[173.9489038420002,-41.01083749799996],[173.9836531910002,-41.01083749799996],[173.97559655000038,-40.997979424999855],[173.97437584700018,-40.987969658999866],[173.9812117850002,-40.98406340899987],[173.99675540500016,-40.98984140399993],[173.99854576900034,-40.96884530999989],[174.01587975400028,-40.97454192499997],[174.0520125660003,-41.00335051899991],[174.0732528000004,-41.014255466999884],[174.09424889400034,-41.01913827899986],[174.11312910200016,-41.01433684699986],[174.12826582100016,-40.99651458099997],[174.14527428500023,-41.009372654],[174.16195722700016,-41.0038387999999],[174.1717228520002,-40.98788827899989],[174.16797936300034,-40.96917083099983],[174.18311608200034,-40.973077080999914],[174.1989038420003,-40.984551690999865],[174.21143639400023,-40.999607028999876],[174.21648196700036,-41.01392994599986],[174.21648196700036,-41.025648695999934],[174.21534264400046,-41.03289153399987],[174.2102970710002,-41.03655364399992],[174.1889754570005,-41.03915780999992],[174.18433678500017,-41.04338958099976],[174.18458092500012,-41.04998137799983],[174.18913821700048,-41.05868906],[174.2072046230003,-41.07057057099995],[174.22657311300023,-41.06519947699981],[174.24341881600023,-41.05217864399991],[174.26441491000017,-41.03142669099982],[174.30453535200024,-41.000583591999856],[174.3188582690002,-40.99651458099997],[174.32642662900028,-41.009372654],[174.31869550900026,-41.02662525799974],[174.26734459700018,-41.08904387799997],[174.26148522200023,-41.09880950299983],[174.26042728000007,-41.118259372999916],[174.257334832,-41.126885674999826],[174.25407962300022,-41.124444268999966],[174.2400008470003,-41.13046640399989],[174.22779381600023,-41.13811614399991],[174.23015384200008,-41.1405575499999],[174.2262475920002,-41.14316171699985],[174.21680748800034,-41.14739348799987],[174.2072046230003,-41.14723072699982],[174.2028100920002,-41.13713958099994],[174.2028100920002,-41.0962867169999],[174.19971764400012,-41.0915666649998],[174.19288170700023,-41.09880950299983],[174.1857202480002,-41.11093515399999],[174.1823022800002,-41.12070077899995],[174.16732832100016,-41.11589934699987],[174.1670028000003,-41.12420012799976],[174.1744897800002,-41.13738372199998],[174.1823022800002,-41.14739348799987],[174.2032983730002,-41.16472747199987],[174.2102970710002,-41.17359791499982],[174.21648196700036,-41.18889739399995],[174.211924675,-41.190606377999956],[174.19922936300034,-41.1939429669999],[174.19597415500027,-41.195082289999846],[174.19556725400028,-41.19304778399981],[174.1754663420003,-41.202569268999895],[174.1674910820004,-41.20907968499997],[174.16211998800023,-41.215590101999894],[174.1549585300003,-41.220961195999934],[174.14096113400015,-41.22307708099994],[174.08855228000021,-41.22332122199981],[174.06185957100013,-41.229180596999846],[174.04566491000014,-41.243584893999824],[174.03370201900023,-41.23723723799996],[174.0216577480003,-41.23577239399991],[174.01124108200034,-41.240004164999846],[174.0040796230003,-41.25042083099993],[173.9886173840002,-41.24570077899991],[173.97022545700034,-41.24944426899995],[173.95232181100008,-41.25798919099988],[173.93832441500015,-41.26775481599991],[173.93523196700025,-41.27955494599989],[173.95875084700018,-41.2790666649999],[173.9868270190003,-41.273044528999975],[173.99732506600014,-41.26775481599991],[174.01921634200028,-41.273370049999826],[174.03402754000027,-41.26881275799997],[174.0476994150002,-41.25945403399984],[174.06560306100042,-41.25042083099993],[174.07699629000015,-41.24976978999987],[174.08773847700016,-41.25237395599997],[174.0986434250002,-41.253024997999916],[174.1181746750003,-41.243096612999835],[174.13892662900028,-41.23951588299994],[174.1482039720004,-41.236748955999985],[174.15870201900051,-41.24635182099988],[174.1723738940002,-41.25530364399981],[174.18677819100023,-41.26213958099983],[174.19947350400017,-41.264743747999916],[174.21176191500004,-41.26238372199986],[174.2262475920002,-41.25261809699991],[174.23658287900028,-41.25042083099993],[174.2633569670003,-41.24773528399986],[174.28443444100023,-41.24032968499977],[174.32569420700028,-41.21624114399994],[174.31324303500017,-41.241306247999844],[174.29769941500015,-41.264743747999916],[174.2902124360002,-41.27166106599982],[174.27035566500027,-41.285577080999985],[174.26050866000006,-41.29509856599989],[174.2555444670003,-41.304782809999935],[174.25196373800023,-41.314629815999865],[174.24529056100008,-41.322442315999865],[174.21404056100027,-41.32878997199989],[174.19027753999993,-41.34335702899992],[174.1754663420003,-41.346612237999864],[174.18043053500028,-41.33660247199996],[174.19752037900017,-41.314873955999815],[174.19947350400017,-41.30877044099984],[174.18946373800028,-41.30624765399999],[174.16863040500024,-41.32203541499986],[174.15503991000028,-41.31943124799977],[174.16187584700018,-41.30494557099982],[174.13306725400017,-41.32008228999982],[174.11378014400023,-41.344984632999854],[174.09799238400026,-41.37379322699988],[174.0792749360002,-41.400567315999965],[174.05551191500018,-41.42457447699984],[174.05062910200039,-41.43694426899986],[174.0520125660003,-41.45582447699981],[174.06283613400018,-41.486260674999855],[174.06470787900028,-41.50066497199982],[174.05811608200028,-41.51726653399996],[174.07691491000017,-41.52044036299985],[174.0887150400002,-41.532647393999824],[174.0932723320003,-41.54583098799995],[174.08985436300023,-41.55201588299984],[174.09351647200026,-41.55592213299984],[174.1043400400002,-41.561211846999896],[174.11540774800025,-41.558526299999826],[174.1202905610002,-41.53834400799981],[174.11508222700022,-41.533786716999856],[174.10596764400023,-41.513441664999945],[174.10320071700016,-41.49797942499975],[174.11719811300011,-41.50709400799984],[174.1723738940002,-41.578220309999864],[174.17403634887515,-41.59240659350671],[174.1790281167844,-41.60518749936463],[174.18319217354482,-41.61530020863941],[174.18913821700048,-41.63396575299987],[174.1899520190003,-41.64462655999989],[174.21094811300023,-41.69939544099984],[174.21648196700036,-41.70598723799989],[174.22592207100016,-41.723402601999865],[174.2482202480003,-41.73333098799987],[174.2734481130003,-41.735609632999854],[174.29216556100025,-41.730157158999816],[174.2863875660003,-41.75457122199985],[174.21517988400015,-41.85670338299974],[174.19792728000033,-41.876071872999844],[174.08171634200025,-41.9690894509999],[174.0040796230003,-42.03118254999983],[173.9751082690002,-42.06715260199973],[173.9614363940003,-42.09010182099982],[173.95573978000016,-42.1104468729999],[173.95639082100016,-42.14080169099987],[173.9541121750003,-42.15878671699991],[173.9446512077101,-42.1679300272435],[173.93870255519553,-42.17804273651828],[173.9311629570003,-42.190850518999895],[173.92920983200034,-42.195570570999884],[173.91016686300023,-42.2145321589999],[173.89087975400022,-42.24081796699983],[173.87134850400034,-42.25505950299984],[173.8263452480003,-42.276788018999895],[173.80494225400028,-42.29192473799989],[173.77393639400026,-42.32976653399976],[173.7680770190005,-42.333184502999856],[173.76124108200023,-42.33416106599984],[173.74708092500032,-42.33359140399986],[173.73707116000023,-42.35133228999986],[173.73292076900023,-42.357110283999816],[173.72169030000032,-42.36484140399983],[173.7111108730003,-42.370375257999854],[173.70362389400032,-42.37859465899976],[173.7019149099999,-42.39495208099994],[173.70582116000023,-42.404066664999846],[173.72291100400028,-42.41969166499983],[173.72974694100014,-42.42913176899985],[173.72315514400023,-42.4367001279999],[173.71558678500028,-42.44345468499992],[173.6950789720003,-42.422946872999866],[173.68376712300025,-42.417413018999866],[173.6684676440003,-42.415459893999824],[173.65552819100017,-42.41863372199988],[173.6341251960002,-42.4327938779999],[173.62370853000024,-42.43596770599987],[173.6110945970004,-42.44345468499992],[173.558604363,-42.4911434879998],[173.53874759200028,-42.52947356599984],[173.5232039720003,-42.57333749799996],[173.49952233200034,-42.61012135199986],[173.45541425900026,-42.62712981599983],[173.45541425900026,-42.63453541499973],[173.46241295700028,-42.6349423159999],[173.46713300900015,-42.63681405999988],[173.47120201900023,-42.63909270599994],[173.47657311300034,-42.64137135199984],[173.39893639400023,-42.76539478999993],[173.38795006600017,-42.800225518999966],[173.37289472700016,-42.82154713299992],[173.35377037900022,-42.839450778999975],[173.32252037900022,-42.85133228999993],[173.32056725400017,-42.86158619599988],[173.32520592500023,-42.88095468499989],[173.3248804050003,-42.89226653399987],[173.32618248800028,-42.89771900799991],[173.32545006600043,-42.903497002999956],[173.31836998800028,-42.915704033999845],[173.30884850400028,-42.92441171699984],[173.3000594410002,-42.92782968499985],[173.29346764400023,-42.93287525799997],[173.29102623800023,-42.946872653999925],[173.28728274800008,-42.95387135199982],[173.2780054050003,-42.960707289999924],[173.23438561300023,-42.98072682099989],[173.22339928500017,-42.98357512799992],[173.19507897200006,-42.986748955999985],[173.153656446,-43.002536716999856],[173.14795983200034,-43.01246510199995],[173.1443791020001,-43.02369557099986],[173.14014733200034,-43.03240325299993],[173.13152103000013,-43.039239190999865],[173.08326256600023,-43.06698984199984],[172.94825280000035,-43.09148528399987],[172.91504967500023,-43.102797132999854],[172.88795006600023,-43.12786223799993],[172.81120853000024,-43.169040622999916],[172.79688561300011,-43.188653252999885],[172.77409915500004,-43.23023853999986],[172.7504988940003,-43.257256768999895],[172.74545332099999,-43.26539478999983],[172.74869444849654,-43.279693524534366],[172.75603274800008,-43.29257577899992],[172.74870853000013,-43.31666432099986],[172.74480228000007,-43.341892185],[172.74293053500017,-43.39495208099984],[172.73617597700016,-43.40113697699991],[172.7296587604499,-43.4148469096654],[172.73218834700023,-43.43621184699998],[172.7503361340001,-43.49863046699994],[172.77898196700002,-43.55779387799985],[172.77711022200018,-43.57366301899988],[172.76441491000028,-43.56226978999982],[172.75261478000007,-43.56064218499989],[172.74773196700008,-43.56715260199987],[172.75603274800008,-43.58114999799994],[172.77116946700008,-43.589288018999866],[172.832286004,-43.60165781],[172.80396569100017,-43.611016533999845],[172.737966342,-43.614190362999885],[172.7081811860003,-43.621514580999985],[172.681407097,-43.639336846999875],[172.6931258470003,-43.647067966999984],[172.7208764980002,-43.65048593499999],[172.74293053500017,-43.65553150799984],[172.76368248800003,-43.63591887799995],[172.80095462300014,-43.62900155999988],[172.83676191500024,-43.6293270809999],[172.85279381600017,-43.631442967],[172.85710696700014,-43.64657968499991],[172.86646569100012,-43.66082122199991],[172.87574303500006,-43.66887786299984],[172.88013756600012,-43.665459893999916],[172.8849389980001,-43.63982512799987],[172.89380944100023,-43.614515882999825],[172.92025800900015,-43.62664153399983],[172.92611738400026,-43.63502369599996],[172.92790774800008,-43.65195077899995],[172.9248153000003,-43.679620049999954],[172.92839603000013,-43.68572356599985],[172.94214928500014,-43.682875257999896],[172.95085696700008,-43.67522551899988],[172.95801842500018,-43.663344007999825],[172.96648196700005,-43.65276458099996],[172.9795028000003,-43.648125908999845],[172.9943953790001,-43.64934661299995],[173.00928795700023,-43.65390390399999],[173.0206811860002,-43.66236744599995],[173.02466881600017,-43.67603932099989],[173.05290774800025,-43.653252862999864],[173.06495201900017,-43.648125908999845],[173.06910241,-43.66570403399997],[173.0807397800003,-43.67587655999992],[173.09473717500035,-43.68401458099993],[173.1061304050003,-43.69597747199997],[173.1071069670002,-43.70378997199987],[173.10425866000023,-43.71200937299986],[173.10059655000012,-43.71900807099985],[173.0992944670003,-43.72380950299984],[173.10181725400005,-43.72975025799995],[173.110118035,-43.74000416499989],[173.1128035820001,-43.74488697699995],[173.11646569100012,-43.77214934699985],[173.11353600400022,-43.80120208099983],[173.10547936300006,-43.829359632999896],[173.09294681100016,-43.85418059699986],[173.08057701900023,-43.84059010199991],[173.05591881600006,-43.86419036299985],[173.03777103000004,-43.86101653399997],[173.03150475400028,-43.882256768999866],[173.03093509200002,-43.88892994599982],[173.02279707100004,-43.880547783999944],[173.0140080090002,-43.8788388],[173.005137566,-43.882256768999866],[172.99683678500006,-43.88892994599982],[172.99252363400007,-43.876234632999946],[172.97974694100017,-43.85377369599986],[172.9757593110002,-43.84059010199991],[172.97584069100017,-43.82512786299998],[172.9786889980003,-43.81666432099985],[172.9773055350001,-43.809014580999914],[172.96583092500018,-43.79615650799988],[172.96045983200023,-43.782972914999846],[172.96241295700017,-43.76824309699985],[172.96168053500017,-43.75611744599986],[172.94857832099999,-43.751153252999984],[172.93311608200003,-43.75554778399989],[172.92652428500028,-43.765557549999954],[172.9293725920003,-43.77711353999989],[172.94214928500014,-43.78590260199986],[172.92790774800008,-43.8129208309999],[172.92676842500023,-43.840264580999886],[172.93734785200027,-43.86712004999987],[172.9689233730002,-43.903252862999906],[172.96558678500017,-43.90545012799989],[172.94214928500014,-43.90203215899989],[172.876719597,-43.90203215899989],[172.86304772200018,-43.89625416499983],[172.840098504,-43.876234632999946],[172.81723066499998,-43.881442966999856],[172.80518639400006,-43.874607028999925],[172.78394616000008,-43.85418059699986],[172.74512780000035,-43.82488372199984],[172.74415123800017,-43.811455987999935],[172.76343834700006,-43.792738539999874],[172.745860222,-43.79371510199995],[172.7185164720001,-43.803399346999825],[172.6368921230003,-43.81194426899992],[172.60906009200008,-43.82268645599986],[172.55111738400026,-43.82683684699998],[172.4631453790001,-43.84986744599986],[172.42261803500028,-43.85458749799987],[172.41407311300011,-43.850762627999856],[172.41797936300028,-43.84010182099982],[172.4279077480002,-43.83269622199984],[172.4401961600001,-43.828301690999936],[172.46705162900005,-43.82512786299998],[172.61768639400006,-43.787367445999834],[172.63306725400025,-43.78590260199986],[172.64771569099997,-43.782647393999824],[172.64014733200005,-43.77507903399987],[172.61247806100008,-43.761814059999935],[172.60010826900023,-43.759698174999926],[172.56836998800006,-43.76311614399992],[172.55111738400026,-43.75798919099992],[172.54420006600023,-43.75237395599983],[172.531993035,-43.738376559999864],[172.52393639400034,-43.73137786299996],[172.49708092500006,-43.721856377999885],[172.47144616000028,-43.72503020599985],[172.44548587300014,-43.73308684699997],[172.41732832100004,-43.73748137799987],[172.400645379,-43.747979424999926],[172.39112389400012,-43.77288176899988],[172.38697350400022,-43.80234140399986],[172.38656660200016,-43.82683684699998],[172.38917076900023,-43.84156666499987],[172.39112389400012,-43.84742603999983],[172.388438347,-43.852471612999864],[172.3763126960001,-43.86443450299997],[172.3655705090001,-43.86842213299987],[172.28239993600008,-43.87810637799991],[172.27051842500012,-43.87639739399991],[172.24984044862416,-43.88126092449167],[172.23199449108043,-43.89625152882829],[172.1858830090002,-43.90781015399994],[172.1652124360002,-43.921075127999885],[172.06120853000007,-43.95663827899995],[171.86833743600025,-44.05852629999995],[171.83822675900015,-44.06210702899985],[171.82189438672563,-44.05972049992894],[171.8066658362881,-44.06114817653247],[171.79395592500018,-44.067071221999896],[171.71973717500035,-44.104587498],[171.68262780000018,-44.110528252999835],[171.66724694100023,-44.11492278399983],[171.65503991000006,-44.12322356599998],[171.6443791020001,-44.132419528999876],[171.6331486340001,-44.13982512799994],[171.60499108200023,-44.14592864399985],[171.5783797540001,-44.16008879999987],[171.56739342500023,-44.16326262799984],[171.55063583206098,-44.16727213739243],[171.53255192841655,-44.18297658003084],[171.522558192192,-44.19059085524961],[171.51587975400017,-44.19898853999995],[171.49000084700012,-44.20598723799985],[171.4777938160002,-44.21298593499992],[171.41667728000013,-44.26034921699986],[171.3923445970001,-44.27060312299997],[171.3724064460002,-44.265069268999966],[171.35808353000007,-44.272067966999856],[171.34600218555957,-44.27863091246533],[171.33765709700012,-44.28972747199987],[171.3342391290001,-44.299493096999896],[171.28003991000006,-44.37151458099984],[171.2761336600001,-44.382989190999965],[171.2761336600001,-44.44011809699986],[171.27068118600016,-44.458754164999945],[171.2573348320001,-44.47356536299992],[171.22836347700027,-44.49846770599994],[171.2262475920002,-44.507500908999866],[171.22584069100023,-44.518812757999854],[171.22250410200016,-44.5284970029999],[171.2111108730002,-44.53264739399985],[171.20281009200016,-44.53443775799984],[171.17383873800017,-44.54697030999992],[171.1959741550002,-44.56682708099984],[171.20118248800006,-44.60125090899987],[171.20118248800006,-44.676527601999936],[171.21265709700023,-44.72470468499999],[171.21412194100017,-44.741875908999916],[171.20899498800006,-44.76067473799988],[171.1971134770001,-44.768243096999925],[171.18360436300023,-44.77361419099996],[171.17383873800017,-44.78582122199995],[171.20248457100027,-44.789320570999934],[171.21241295700028,-44.813571872999844],[171.21143639400012,-44.84628671699986],[171.20313561300028,-44.90553150799994],[171.19263756600017,-44.92571379999988],[171.18074861870443,-44.94012107208616],[171.1725394782343,-44.9533270806684],[171.1629026611607,-44.968317685005275],[171.15870201900017,-44.983493748],[171.09115644600016,-45.07366301899985],[170.980316602,-45.15496184699984],[170.92611738400015,-45.23837655999992],[170.90219160200027,-45.309665622999916],[170.88892662900005,-45.330498955999985],[170.8769637380001,-45.35588958099993],[170.89087975400028,-45.36825937299987],[170.90821373800006,-45.37981536299989],[170.90626061300023,-45.402764580999886],[170.8691512380002,-45.43385182099989],[170.85987389400006,-45.447360934999864],[170.8597111340001,-45.458265882999925],[170.86353600400005,-45.469170830999914],[170.86597741000017,-45.48202890399985],[170.85206139400006,-45.50017669099984],[170.82422936300011,-45.51360442499984],[170.8035587900002,-45.52906666499986],[170.81072024800002,-45.55364348799995],[170.79883873800017,-45.565524997999916],[170.7867944670002,-45.57146575299992],[170.77312259200022,-45.57040780999998],[170.75611412900017,-45.56113046699984],[170.75733483200017,-45.57203541499982],[170.76075280000018,-45.58220794099995],[170.76978600400022,-45.60149504999998],[170.7531030610002,-45.61256275799984],[170.7402449880003,-45.616469007999825],[170.7042749360002,-45.61565520599991],[170.68409264400023,-45.62070077899993],[170.6845809250003,-45.63103606599995],[170.69922936300023,-45.64072031],[170.72201582100027,-45.642998955999886],[170.6984155610003,-45.67929452899989],[170.69060306100025,-45.68466562299993],[170.67937259200002,-45.68694426899982],[170.66675866000017,-45.69255950299983],[170.646250847,-45.70517343499998],[170.63795006600006,-45.70728932099982],[170.63135826900023,-45.70574309699987],[170.62671959700023,-45.70631275799984],[170.6251733730002,-45.71502044099991],[170.6251733730002,-45.724541924999826],[170.62614993600013,-45.72975025799991],[170.63038170700003,-45.73202890399997],[170.63941491000028,-45.7323544249999],[170.65455162900028,-45.73626067499998],[170.6678166020001,-45.74244557099987],[170.68067467500023,-45.74382903399986],[170.69402103000004,-45.7323544249999],[170.71225019600004,-45.74342213299985],[170.73853600400005,-45.753106377999984],[170.75879967500035,-45.7634416649999],[170.75928795700023,-45.77678801899992],[170.74154707100016,-45.78630950299983],[170.6928817070001,-45.79322682099981],[170.67286217500023,-45.80071379999997],[170.65365644599999,-45.82236093499987],[170.646250847,-45.828708592],[170.63754316500004,-45.83098723799996],[170.62614993600013,-45.83269622199997],[170.6162215500002,-45.83635833099984],[170.60368899800014,-45.86174895599996],[170.56641686300006,-45.87916432099992],[170.5568139980002,-45.89625416499996],[170.57553144600027,-45.889336846999875],[170.61158287900005,-45.882582289999846],[170.6419376960002,-45.86402760199992],[170.68718509200002,-45.85165780999998],[170.7010197270001,-45.842217705999886],[170.7161564460001,-45.81943124799985],[170.728282097,-45.8075497379999],[170.74203535200004,-45.80103932099982],[170.75456790500024,-45.798760674999926],[170.76596113400004,-45.79404062299993],[170.77662194100006,-45.78020598799992],[170.78687584700018,-45.7929012999999],[170.79078209700006,-45.80836353999981],[170.78728274800008,-45.863051039999945],[170.77857506600017,-45.87615325299993],[170.76384524800025,-45.88128020599993],[170.74244225400005,-45.882582289999846],[170.72201582100027,-45.88160572699995],[170.7179468110001,-45.883070570999834],[170.7076929050002,-45.88884856599989],[170.702403191,-45.89544036299995],[170.70264733200017,-45.90227629999988],[170.70045006600017,-45.907810153999904],[170.49341881600023,-45.9229468729999],[170.40796959700012,-45.94329192499998],[170.33375084700023,-45.981540622999844],[170.27572675900015,-46.04029713299994],[170.26002037900008,-46.06365325299984],[170.25635826900023,-46.07512786299996],[170.25318444100017,-46.10515715899993],[170.2441512380003,-46.12363046699994],[170.24219811300011,-46.132745049999855],[170.23487389400012,-46.15398528399993],[170.21697024800008,-46.17294687299993],[170.19450931100013,-46.18808359199993],[170.1733504570002,-46.19793059699986],[170.12045332100027,-46.21314869599985],[170.09571373800011,-46.22421640399996],[170.07398522200012,-46.24260833099983],[170.0568139980003,-46.2608374979999],[170.03785241000028,-46.27605559699988],[169.89942467500023,-46.344903252999856],[169.86475670700005,-46.3783505189999],[169.85124759200025,-46.43075937299997],[169.8536889980003,-46.45728932099985],[169.84896894600004,-46.46754322699995],[169.8208113940003,-46.47478606599989],[169.79737389400034,-46.488946221999825],[169.78931725400005,-46.49212004999988],[169.7721460300002,-46.490004164999874],[169.73845462300022,-46.48064544099992],[169.72144616000008,-46.47844817499984],[169.7042749360002,-46.480157158999845],[169.67546634200014,-46.4890276019998],[169.6593530610002,-46.49212004999988],[169.67505944100017,-46.496758721999896],[169.7555444670003,-46.49960702899993],[169.73552493600008,-46.534112237999864],[169.70411217500023,-46.54900481599982],[169.66814212300014,-46.558851820999934],[169.635101759,-46.5783830709999],[169.620860222,-46.57740650799994],[169.59498131600012,-46.57000090899985],[169.56690514400012,-46.565036716999984],[169.54607181100013,-46.571547132999804],[169.53337649800008,-46.58001067499992],[169.48047936300017,-46.60198333099986],[169.48617597700027,-46.60670338299986],[169.49610436300034,-46.61834075299987],[169.50171959700023,-46.62314218499986],[169.47461998800023,-46.629082940999965],[169.44109134200016,-46.62200286299992],[169.41032962300002,-46.62037525799981],[169.39177493600002,-46.64364999799999],[169.37086022200018,-46.63209400799997],[169.3645125660001,-46.62997812299996],[169.33008873800011,-46.62566497199997],[169.31251061300006,-46.62672291499991],[169.29908287900017,-46.63298919099988],[169.278575066,-46.64869557099985],[169.26661217500006,-46.65471770599985],[169.25464928500017,-46.657321872999944],[169.2197371750003,-46.66073984199994],[169.20630944100003,-46.65911223799992],[169.19320722700027,-46.64983489399988],[169.19703209700018,-46.62981536299982],[169.19450931100008,-46.61834075299987],[169.19271894600027,-46.61801523199985],[169.1801863940003,-46.61565520599997],[169.1710718110002,-46.62273528399986],[169.17188561300014,-46.64511484199995],[169.1594344410003,-46.65203215899987],[169.15756269600004,-46.65691497199984],[169.15495853000002,-46.6617977839999],[169.14893639400012,-46.66415780999994],[169.11841881600017,-46.66415780999994],[169.10059655000018,-46.65992603999993],[169.09017988400004,-46.65081145599985],[169.08350670700005,-46.641289971999946],[169.07650800900026,-46.63616301899985],[169.06364993600013,-46.63738372199987],[169.06332441500004,-46.646172783999916],[169.06641686300011,-46.65846119599988],[169.06283613400015,-46.67099374799989],[169.03598066500015,-46.68189869599986],[169.00220787900017,-46.67571379999998],[168.9679468110002,-46.663750908999944],[168.93995201900006,-46.657321872999944],[168.90748131600026,-46.658135674999954],[168.88917076900023,-46.656019789999945],[168.8774520190002,-46.64421965899997],[168.85230553500017,-46.58147551899998],[168.85059655000018,-46.571547132999804],[168.8448999360002,-46.56015390399993],[168.83122806100008,-46.56015390399993],[168.80176842500018,-46.567803643999866],[168.69922936300017,-46.58171965899993],[168.6650496750001,-46.58147551899998],[168.67335045700028,-46.57097747199984],[168.68539472699996,-46.56755950299983],[168.69922936300017,-46.56601327899996],[168.71290123800028,-46.561130467],[168.69288170700005,-46.55266692499987],[168.66773522200018,-46.54859791499981],[168.61784915500002,-46.547458591999956],[168.62574303499997,-46.56145598799992],[168.63868248800011,-46.570407809999864],[168.64454186300023,-46.57789478999992],[168.63152103000013,-46.58831145599982],[168.63526451900017,-46.591403903999904],[168.64161217500012,-46.59889088299995],[168.6451929050002,-46.60198333099986],[168.5914819670003,-46.61435312299997],[168.4192000660003,-46.60198333099986],[168.43181399800008,-46.58473072699985],[168.43751061300034,-46.57976653399999],[168.4458113940003,-46.57529062299993],[168.4601343110003,-46.57203541499989],[168.49586022200006,-46.57252369599988],[168.50798587300008,-46.57529062299993],[168.51832116000017,-46.58668385199981],[168.54721113400026,-46.59075286299995],[168.5651147800003,-46.58505624799987],[168.54216556100025,-46.567803643999866],[168.51319420700023,-46.559665622999944],[168.42603600400022,-46.561130467],[168.38575280000023,-46.543389580999914],[168.36573326900034,-46.540215752999856],[168.35710696700014,-46.5577124979999],[168.36345462300025,-46.57805754999998],[168.39380944100023,-46.60507577899984],[168.40552819100017,-46.62314218499986],[168.3781030610003,-46.61980559699984],[168.34180748800014,-46.589043877999856],[168.3191837900002,-46.58147551899998],[168.31568444100003,-46.577243747999965],[168.31381269600024,-46.567803643999866],[168.3077905610002,-46.558363539999945],[168.28150475400017,-46.55234140399985],[168.2740991550002,-46.546644789999945],[168.26978600400017,-46.53785572699981],[168.26783287900005,-46.526299737999956],[168.2985945970003,-46.51970794099989],[168.30933678500006,-46.5201148419999],[168.3198348320001,-46.522556247999844],[168.32162519600027,-46.5253231749999],[168.3215438160003,-46.52971770599997],[168.32642662900022,-46.53679778399984],[168.332774285,-46.53004322699989],[168.38510175900026,-46.49960702899993],[168.39437910200004,-46.472914320999834],[168.3874617850001,-46.440524997999916],[168.36890709700003,-46.41692473799996],[168.343516472,-46.41708749799993],[168.35157311300023,-46.442315362999906],[168.3414819670002,-46.46575286299996],[168.32227623800028,-46.480075778999854],[168.30193118600002,-46.47844817499984],[168.29021243600013,-46.4647762999999],[168.26954186300023,-46.42351653399986],[168.2160750660003,-46.35442473799984],[168.19947350400005,-46.34197356599984],[168.171153191,-46.336683851999936],[168.07325280000035,-46.34880950299984],[168.05884850400028,-46.35418059699998],[168.05827884200002,-46.365817967],[168.0617781910003,-46.3775367169999],[168.0592554050002,-46.38290780999995],[168.04468834700023,-46.37965260199991],[168.02702884200008,-46.37371184699988],[168.0099389980002,-46.36980559699997],[167.9974064460001,-46.37330494599988],[167.96713300900004,-46.36988697699995],[167.94792728000013,-46.370293877999956],[167.93946373800011,-46.37981536299996],[167.933929884,-46.390313408999845],[167.9221297540001,-46.39299895599983],[167.91016686300017,-46.391696872999916],[167.89991295700034,-46.38909270599983],[167.88575280000023,-46.383884372999916],[167.87794030000035,-46.38290780999995],[167.87110436300023,-46.385186455999914],[167.85596764400023,-46.39462655999985],[167.85010826900012,-46.39657968499989],[167.83863366000006,-46.39324309699987],[167.828868035,-46.38640715899993],[167.81959069100017,-46.3766415339999],[167.80844160200004,-46.3728166649998],[167.79957116000028,-46.36394622199984],[167.78541100400017,-46.345391533999845],[167.7757267590001,-46.33863697699981],[167.75220787900017,-46.32903411299992],[167.74024498800023,-46.322035414999846],[167.7540796230003,-46.31617603999989],[167.76775149800008,-46.3122697899999],[167.77979576900034,-46.30632903399995],[167.7892358730002,-46.2941220029999],[167.73804772200012,-46.24675872199987],[167.713145379,-46.21795012799993],[167.7129012380003,-46.19793059699986],[167.69792728000002,-46.18873463299988],[167.6572371750003,-46.18580494599996],[167.6370548840001,-46.18124765399991],[167.59001712300025,-46.15960051899984],[167.57545006600017,-46.15691497199994],[167.46094811300034,-46.148207289999874],[167.45281009200022,-46.15016041499982],[167.44678795700023,-46.157321872999944],[167.44597415500002,-46.1735979149998],[167.44214928500026,-46.18124765399991],[167.43067467500035,-46.19695403399989],[167.42660566500007,-46.21070728999981],[167.42457116000014,-46.224053643999824],[167.4187117850001,-46.23886484199997],[167.40577233200023,-46.25115325299984],[167.39047285200016,-46.25432708099989],[167.35670006600017,-46.25253671699991],[167.34034264400034,-46.25628020599994],[167.30990644600004,-46.269707940999936],[167.2951766290001,-46.27361419099985],[167.27523847700004,-46.27214934699996],[167.23422285200007,-46.26100025799987],[167.21257571700002,-46.260023695999806],[167.19597415500024,-46.26327890399984],[167.18799889400023,-46.266208591999856],[167.18181399800008,-46.270196221999925],[167.17481530000006,-46.27312590899994],[167.16928144600016,-46.269138278999975],[167.16488691500027,-46.26311614399988],[167.1611434250003,-46.260023695999806],[167.1496688160003,-46.25807057099985],[167.0857039720003,-46.23691171699993],[167.06861412900017,-46.23723723799995],[167.05160566500027,-46.23935312299996],[167.03443444100023,-46.23886484199997],[166.96615644600016,-46.22584400799981],[166.82886803500006,-46.228285414999846],[166.76197350400005,-46.219984632999946],[166.70557701900034,-46.19109465899993],[166.67579186300006,-46.16301848799985],[166.6712345710001,-46.153578382999825],[166.67725670700028,-46.147149346999825],[166.70557701900034,-46.138116143999895],[166.71566816500004,-46.132745049999855],[166.75391686300028,-46.10230885199989],[166.78809655000035,-46.068129164999895],[166.81625410200022,-46.02141692499991],[166.83228600400003,-46.001071872999916],[166.85287519599999,-45.9924455709999],[166.8821720710002,-45.98723723799992],[166.92790774800014,-45.960870049999905],[166.952484571,-45.95029062299987],[166.952484571,-45.94402434699991],[166.93067467500006,-45.946221612999814],[166.86988366000003,-45.97193775799987],[166.8263452480003,-45.98333098799983],[166.80290774800025,-45.99277109199992],[166.78809655000035,-46.00554778399989],[166.78443444100023,-46.01685963299987],[166.78687584700006,-46.02410247199998],[166.78988691500012,-46.030694268999866],[166.78809655000035,-46.04029713299994],[166.7839461600001,-46.04241301899993],[166.75277754000015,-46.066338799999826],[166.75098717500018,-46.07040780999987],[166.74838300900026,-46.07000090899987],[166.73959394599999,-46.061293226999965],[166.74040774800017,-46.05624765399995],[166.7444767590001,-46.04859791499983],[166.7444767590001,-46.040215752999956],[166.7334090500002,-46.03289153399986],[166.7200626960001,-46.06414153399983],[166.68848717500012,-46.077080987999835],[166.61605878999998,-46.08806731599998],[166.61597740999997,-46.0707333309999],[166.61939537900022,-46.05478280999989],[166.62826582100016,-46.04697030999998],[166.6440535820001,-46.0538876279999],[166.64747155000012,-46.0219052059999],[166.65853925900015,-46.00017669099984],[166.67758222700022,-45.984795830999886],[166.70557701900034,-45.97193775799987],[166.76587975400022,-45.96184661299998],[166.7918400400001,-45.95305754999983],[166.80860436300028,-45.93043385199995],[166.7744246750002,-45.94215260199995],[166.73959394599999,-45.95029062299987],[166.72584069100017,-45.94939544099988],[166.70679772200018,-45.945733330999914],[166.691254102,-45.94019947699991],[166.68848717500012,-45.93385182099988],[166.74301191500007,-45.886976820999834],[166.75196373800028,-45.876560153999925],[166.75391686300028,-45.86891041499982],[166.74390709700026,-45.86093515399995],[166.73259524800014,-45.862399998],[166.72144616,-45.86882903399983],[166.7122501960001,-45.87574635199982],[166.70818118600008,-45.88030364399995],[166.70386803500017,-45.886976820999834],[166.70053144600004,-45.894138278999854],[166.6993921230002,-45.89967213299997],[166.6808374360002,-45.908949476999936],[166.6748153000003,-45.91326262799992],[166.6476343110002,-45.944431247999916],[166.6440535820001,-45.954278252999856],[166.62924238400015,-45.965264580999985],[166.5341903000003,-45.98503997199984],[166.52100670700008,-45.990817966999984],[166.4974064460002,-46.00904713299996],[166.4897567070001,-46.01295338299995],[166.48243248800011,-46.00774504999996],[166.47478274800005,-45.99602629999997],[166.46941165500002,-45.98349374799989],[166.46941165500002,-45.975355726999965],[166.47315514400017,-45.96379973799985],[166.47185306100008,-45.95029062299987],[166.4664819670002,-45.93043385199995],[166.46680748800028,-45.84050872199988],[166.47339928500028,-45.81731536299985],[166.4897567070001,-45.8075497379999],[166.55453535200004,-45.80071379999997],[166.62354576900034,-45.80071379999997],[166.61605878999998,-45.8075497379999],[166.62354576900034,-45.81503671699995],[166.6482853520001,-45.800062757999925],[166.67790774800008,-45.79412200299991],[166.74024498800023,-45.79387786299996],[166.7659611340002,-45.7907040339999],[166.81910241,-45.776543877999885],[166.84644616000023,-45.773370049999826],[166.8759871750003,-45.77695077899988],[166.88965905000006,-45.7764624979999],[166.90113366,-45.769952080999985],[166.9094344410001,-45.76238372199995],[166.91911868600008,-45.75579192499988],[166.93881269600027,-45.745375257999896],[166.98731530000006,-45.73023853999989],[167.00847415500004,-45.71851978999981],[167.0208439460001,-45.69768645599993],[166.97820071700005,-45.709567966999884],[166.96273847700022,-45.71135833099987],[166.8909611340001,-45.70517343499998],[166.79753665500024,-45.72437916499985],[166.77426191500027,-45.71884530999992],[166.79281660200024,-45.68954843499999],[166.8048608730002,-45.678887627999885],[166.82227623800006,-45.67034270599994],[166.87549889400023,-45.659274997999916],[166.8909611340001,-45.649834893999895],[166.79460696700014,-45.659926039999874],[166.77767988399998,-45.65667083099983],[166.77003014400034,-45.63274504999995],[166.77076256600017,-45.61060963299988],[166.78199303500028,-45.594170830999886],[166.80518639400012,-45.58782317499994],[166.8320418630001,-45.583428643999966],[166.8821720710002,-45.56462981599992],[166.9116317070001,-45.56113046699984],[166.96436608200028,-45.57431405999996],[166.99195397200012,-45.575453382999825],[167.01343834700023,-45.56113046699984],[166.97974694100023,-45.5617001279999],[166.96461022200023,-45.557712498],[166.952484571,-45.546807549999855],[167.01710045700005,-45.532403252999885],[167.04639733200017,-45.51685963299988],[167.05494225400003,-45.491631768999824],[166.92188561300011,-45.541273695999834],[166.83961022200006,-45.55291106599992],[166.7845158210002,-45.57480234199987],[166.77344811300006,-45.57561614399987],[166.7517195970003,-45.58001067499987],[166.74024498800023,-45.580987237999835],[166.72266686300011,-45.57968515399985],[166.71461022200018,-45.57561614399987],[166.7024031910003,-45.55738697699981],[166.70248457100027,-45.54241301899986],[166.73959394599999,-45.485446872999944],[166.75749759200008,-45.425225518999966],[166.76758873800011,-45.40960051899998],[166.81226647200015,-45.39283619599996],[166.86109459700018,-45.407321872999916],[166.90935306100013,-45.42978281],[166.952484571,-45.436944268999966],[166.94117272200012,-45.413262627999856],[166.92562910200016,-45.38860442499995],[166.91000410200016,-45.37957122199985],[166.89779707100027,-45.402764580999886],[166.87940514400023,-45.39218515399992],[166.84001712300008,-45.37786223799985],[166.82227623800006,-45.36874765399986],[166.8092554050002,-45.35719166499991],[166.80600019600004,-45.346286716999856],[166.81177819100012,-45.33367278399987],[166.8255314460001,-45.3171526019998],[166.85954837300028,-45.291436455999836],[166.88135826900012,-45.279554945999806],[166.8909611340001,-45.28297291499982],[166.89893639400012,-45.29998137799987],[166.91773522200018,-45.31267669099983],[166.9593205090002,-45.32708098799998],[166.95020592500035,-45.33196379999987],[166.94214928500006,-45.33806731599995],[166.93580162900028,-45.34563567499998],[166.9321395190003,-45.35507577899992],[166.96404056100013,-45.35247161299992],[166.9920353520001,-45.343031507999896],[167.01905358200028,-45.34124114399991],[167.047536655,-45.36191171699984],[167.0546981130003,-45.371270440999965],[167.05884850400022,-45.38005950299984],[167.05697675900018,-45.389906507999946],[167.047536655,-45.402764580999886],[167.02182050899995,-45.417168877999856],[167.01107832100027,-45.42644622199998],[167.0202742850001,-45.4307593729999],[167.05420983200017,-45.42929452899984],[167.066172722,-45.424086195999934],[167.07911217500012,-45.41334400799984],[167.08594811300023,-45.40048593499991],[167.09001712300017,-45.38746510199982],[167.09717858200023,-45.38209400799987],[167.1243595710002,-45.39959075299983],[167.13689212300014,-45.40553150799994],[167.14698326900012,-45.413750908999845],[167.1536564460001,-45.43726978999989],[167.171641472,-45.47112395599996],[167.1759546230003,-45.46851978999996],[167.17847741000006,-45.46493905999989],[167.18604576900034,-45.46884530999989],[167.19906660200016,-45.47380950299993],[167.20573978000027,-45.478610935],[167.20020592500012,-45.44597747199988],[167.14844811300006,-45.39812590899985],[167.047536655,-45.32708098799998],[167.06202233200028,-45.313164971999825],[167.07886803500017,-45.3063290339999],[167.18051191500015,-45.28476327899988],[167.19898522200018,-45.28606536299989],[167.2091577480003,-45.29404062299993],[167.22657311300017,-45.318129164999874],[167.24057050900015,-45.32708098799998],[167.25912519600016,-45.33163827899985],[167.27979576900006,-45.33212656],[167.2978621750001,-45.3265927059999],[167.30884850400022,-45.313409112999864],[167.29273522200015,-45.30982838299988],[167.25757897200023,-45.31113046699997],[167.24366295700023,-45.30388762799987],[167.23389733200017,-45.293389580999985],[167.23121178500008,-45.28875090899987],[167.2330835300002,-45.26970794099988],[167.23878014400003,-45.25888437299997],[167.24732506600026,-45.25432708099984],[167.2472436860003,-45.25310637799982],[167.20972741,-45.2535946589999],[167.171641472,-45.26628997199987],[167.14625084700015,-45.270928643999895],[167.0647892590002,-45.27695077899999],[167.047536655,-45.26970794099988],[167.04542076900012,-45.256524346999925],[167.0363875660003,-45.23658619599985],[167.0302840500001,-45.216566664999874],[167.01197350400014,-45.2056617169999],[167.00766035200013,-45.19426848799992],[167.0048934250001,-45.149590752999956],[167.01205488400015,-45.13290780999992],[167.03443444100023,-45.1222470029999],[167.06421959700018,-45.12273528399988],[167.08790123800017,-45.134942315999865],[167.12696373800034,-45.17376067499988],[167.13843834700012,-45.180271091999956],[167.15528405000018,-45.18474700299984],[167.17074629000004,-45.18474700299984],[167.17847741000006,-45.1775041649999],[167.17302493600025,-45.17115650799988],[167.13697350400005,-45.149590752999956],[167.10059655000023,-45.115980726999936],[167.0796004570001,-45.10320403399999],[167.05494225400003,-45.10173919099985],[167.0944116550002,-45.055922132999854],[167.1185001960001,-45.03923919099982],[167.14063561300011,-45.04314544099991],[167.17847741000006,-45.088148695999806],[167.18067467500012,-45.102634372999844],[167.17904707099996,-45.11589934699995],[167.18067467500012,-45.127129815999965],[167.19214928500017,-45.13591887799984],[167.197438998,-45.1222470029999],[167.19450931100002,-45.102146091999856],[167.19898522200018,-45.09441497199984],[167.2140405610002,-45.089532158999866],[167.27466881600017,-45.09441497199984],[167.25953209700018,-45.081801039999945],[167.2028100920002,-45.066827080999914],[167.18181399800008,-45.057061455999886],[167.16488691500027,-45.04070403399987],[167.153086785,-45.02402109199984],[167.15154056100013,-45.007582289999846],[167.16480553500028,-44.99187590899987],[167.18913821700008,-44.98528411299997],[167.21485436300011,-44.990899346999896],[167.24146569100006,-45.000420830999985],[167.26783287900003,-45.00554778399999],[167.2887475920003,-45.01344166499987],[167.31348717500006,-45.0284970029999],[167.33570397200006,-45.03720468499996],[167.34986412900022,-45.02605559699986],[167.33106530000012,-45.02223072699985],[167.2106225920002,-44.97258879999984],[167.19898522200018,-44.96404387799991],[167.20346113400018,-44.949965101999965],[167.22022545700005,-44.936130466999956],[167.2701929050003,-44.90553150799994],[167.2866317070001,-44.89934661299998],[167.30543053500003,-44.89657968499992],[167.3292749360003,-44.89568450299984],[167.3237410820001,-44.89120859199987],[167.3141382170003,-44.880059502999856],[167.30884850400022,-44.875258070999855],[167.38575280000015,-44.84238046699987],[167.4187117850001,-44.84091562299999],[167.43230228000021,-44.87184010199993],[167.43555748800028,-44.87623463299983],[167.4425561860003,-44.8820126279999],[167.44971764400017,-44.889418226999965],[167.45281009200022,-44.89910247199984],[167.45020592500023,-44.90862395599984],[167.4402775400002,-44.92782968499989],[167.4391382170002,-44.93726978999982],[167.44711347700016,-44.950778903999975],[167.45923912900017,-44.96103280999991],[167.46648196700008,-44.97323984199988],[167.45964603000013,-44.99187590899987],[167.49675540500007,-44.99472421699991],[167.51417076900023,-44.99260833099989],[167.51107832100016,-44.981703382999825],[167.50684655000023,-44.97625090899989],[167.50342858200023,-44.969170830999914],[167.5013126960001,-44.96135833099984],[167.50066165500007,-44.954034112999835],[167.49781334700003,-44.948011976999815],[167.4770613940003,-44.93352629999997],[167.47437584700006,-44.92351653399997],[167.47641035200024,-44.909112237999835],[167.4768986340001,-44.89316171699991],[167.46998131600017,-44.87859465899988],[167.46265709700018,-44.86825937299997],[167.44809004000004,-44.83587004999996],[167.44532311300034,-44.82366301899998],[167.4576929050003,-44.789320570999934],[167.48715253999998,-44.767185153999876],[167.52328535200004,-44.763767184999864],[167.55518639400023,-44.78582122199995],[167.562266472,-44.79924895599986],[167.5594181650001,-44.80608489399995],[167.55128014400034,-44.81324635199982],[167.54216556100013,-44.82740650799984],[167.5372827480002,-44.845879815999865],[167.54004967500023,-44.86052825299987],[167.5501408210001,-44.87224700299994],[167.56812584700006,-44.8820126279999],[167.570078972,-44.85947031],[167.57862389400023,-44.84465911299984],[167.5891219410003,-44.831475518999895],[167.5968530610003,-44.813734632999804],[167.59473717500018,-44.793389580999985],[167.56853274800014,-44.772556247999916],[167.56202233200005,-44.75514088299995],[167.55111738399998,-44.74195728999982],[167.54883873800011,-44.73447030999985],[167.56804446700008,-44.727471612999864],[167.57813561300023,-44.72031015399992],[167.58871504000027,-44.716241143999866],[167.599864129,-44.721612237999906],[167.61866295700005,-44.740817966999956],[167.63502037900017,-44.75261809699984],[167.65357506600017,-44.75986093499995],[167.6793725920003,-44.76539478999989],[167.66244550900004,-44.75855885199995],[167.62476647200012,-44.725030205999914],[167.59913170700028,-44.708184502999906],[167.59473717500018,-44.69768645599986],[167.60303795700003,-44.683363539999874],[167.618907097,-44.674004815999915],[167.67188561300023,-44.66301848799987],[167.6789656910003,-44.656996351999965],[167.68702233200023,-44.64275481599995],[167.69239342500018,-44.63632577899986],[167.69898522200018,-44.63339609199984],[167.71599368600002,-44.629571221999825],[167.72315514400034,-44.62542083099997],[167.75196373800011,-44.60320403399983],[167.7812606130002,-44.594333591999956],[167.810801629,-44.59921640399984],[167.85499108200005,-44.62810637799994],[167.88868248800003,-44.642347914999945],[167.90186608200023,-44.65276458099986],[167.93262780000012,-44.69703541499982],[167.93970787900017,-44.68547942499988],[167.94190514400034,-44.670586846999925],[167.93946373800011,-44.65520598799998],[167.93262780000012,-44.64251067499991],[167.92709394599999,-44.638604424999926],[167.90455162900028,-44.62883879999997],[167.87794030000035,-44.60833098799992],[167.8719181650002,-44.60475025799986],[167.8669539720003,-44.60393645599986],[167.86207116000003,-44.6019833309999],[167.85678144600018,-44.59465911299998],[167.855235222,-44.58717213299984],[167.85678144600018,-44.5604794249999],[167.8504337900001,-44.53150807099981],[167.84441165500002,-44.51677825299983],[167.83643639400034,-44.50530364399988],[167.8600366550002,-44.48072682099995],[167.94288170700023,-44.412855726999965],[167.9719344410003,-44.39421965899989],[168.00814863400004,-44.37615325299987],[168.03321373800023,-44.35328541499986],[168.02816816500027,-44.32040780999994],[168.11817467500018,-44.32040780999994],[168.12745201900012,-44.316582940999936],[168.13949629,-44.29924895599996],[168.13990319100006,-44.283949476999894],[168.13672936300034,-44.28077564899993],[168.12794030000012,-44.272067966999856],[168.1032820970003,-44.265069268999966],[168.1032820970003,-44.25823333099986],[168.15007571700008,-44.246840101999894],[168.1689559250001,-44.23821379999997],[168.20533287900028,-44.20728932099985],[168.26783287900005,-44.17693450299986],[168.3071395190003,-44.14885833099987],[168.340098504,-44.11834075299993],[168.3414819670002,-44.11223723799985],[168.34229576900017,-44.101739190999965],[168.3452254570001,-44.08928801899994],[168.35336347700004,-44.07732512799982],[168.3637801440001,-44.06926848799998],[168.37484785200013,-44.06243254999987],[168.38656660200022,-44.0570614559999],[168.39812259200008,-44.053399346999946],[168.39136803500006,-44.05087655999985],[168.37086022200015,-44.03915780999995],[168.39039147200018,-44.03191497199983],[168.41032962300008,-44.027927341999856],[168.4721785820002,-44.02499765399992],[168.50928795700034,-44.0186499979999],[168.5429793630003,-44.00611744599989],[168.56348717500018,-43.995538018999845],[168.57309004000027,-43.98821379999984],[168.58676191500004,-43.9823544249999],[168.61247806100008,-43.98447030999991],[168.62126712300002,-43.98154062299989],[168.6458439460002,-43.96453215899983],[168.66285241000028,-43.97136809699983],[168.67855879000027,-43.989190362999906],[168.69922936300017,-44.00505950299984],[168.7467554050002,-44.010349217],[168.80372155000012,-43.997247002999856],[168.85816491000028,-43.97275155999992],[168.91846764400034,-43.928887627999956],[168.96485436300023,-43.90593840899989],[168.98406009200008,-43.892022393999895],[169.0016382170002,-43.882419529],[169.0654403000003,-43.85751718499989],[169.08127078386545,-43.846802720276884],[169.0863271385029,-43.838177174130664],[169.0870874360003,-43.828220309999864],[169.09083092500035,-43.82008228999986],[169.098317905,-43.81462981599982],[169.1256616550003,-43.80201588299984],[169.1355086600001,-43.79957447699981],[169.1541447270001,-43.79208749799993],[169.1921492850002,-43.75872161299995],[169.21021569100012,-43.751153252999984],[169.22999108200005,-43.74586353999992],[169.30250084700015,-43.7101376279999],[169.35287519600004,-43.69793059699991],[169.3801375660003,-43.6872697899998],[169.39177493600002,-43.67262135199988],[169.39633222700016,-43.66480885199988],[169.40707441499998,-43.65683359199984],[169.4196069670002,-43.650567315999965],[169.4294539720003,-43.648125908999845],[169.45655358200023,-43.64592864399995],[169.46517988400012,-43.647637627999956],[169.4738818498278,-43.648712591541425],[169.48250739597387,-43.64722542841278],[169.49431399800025,-43.64128997199984],[169.50912519600016,-43.630547783999916],[169.5491642590002,-43.62216562299986],[169.5832625660003,-43.60295989399998],[169.62370853000013,-43.60947030999989],[169.64576256600006,-43.60767994599981],[169.69752037900017,-43.5778947899999],[169.71778405000032,-43.57366301899988],[169.733653191,-43.565687757999825],[169.76758873800023,-43.52809010199984],[169.78248131599997,-43.51531340899989],[169.78845650921917,-43.50431400896056],[169.78907311300034,-43.491794529],[169.8092554050003,-43.47437916499986],[169.83529707100027,-43.47079843499998],[169.8462774116609,-43.46148371085561],[169.8479110040002,-43.44793059699988],[169.8542586600001,-43.426202080999985],[169.87501061300011,-43.40748463299992],[169.89682050900018,-43.39446379999985],[170.03012129000027,-43.34579843499999],[170.04297936300011,-43.33001067499987],[170.05144290500007,-43.30348072699991],[170.07327799161723,-43.29801473975512],[170.0882685959538,-43.28802100353052],[170.09750410200027,-43.27206796699997],[170.10499108200034,-43.258070570999905],[170.11491946700014,-43.25172291499989],[170.13917076900034,-43.24407317499994],[170.16456139400034,-43.230401299999826],[170.17823326900012,-43.225518487999935],[170.1941024100001,-43.22356536299989],[170.2055770190003,-43.22584400799997],[170.2272241550002,-43.235609632999825],[170.23878014400017,-43.23788827899989],[170.30355879000004,-43.162204684999985],[170.2716577480002,-43.15764739399995],[170.24659264400017,-43.1781552059999],[170.22437584700006,-43.20427825299987],[170.20053144600018,-43.216729424999876],[170.21973717500012,-43.17327239399984],[170.25367272200006,-43.14373137799997],[170.27957726082278,-43.12954890054229],[170.28931725400025,-43.11435312299996],[170.28931725400025,-43.10686614399991],[170.36309634212716,-43.10313688337764],[170.38522532948147,-43.09528466205826],[170.39307701900017,-43.08904387799984],[170.38502037900022,-43.07968515399998],[170.40284264400023,-43.06943124799987],[170.41675866,-43.05494557099983],[170.43213951900034,-43.046156507999946],[170.4538680350001,-43.05291106599989],[170.45720462300014,-43.03606536299989],[170.4680305724843,-43.032466891504356],[170.4742944670002,-43.02499765399986],[170.51441491,-43.006605726999815],[170.60377037900003,-42.98308684699994],[170.64258873800034,-42.96013762799987],[170.67432701900012,-42.95671965899986],[170.6900342843285,-42.95608619321718],[170.70074185885474,-42.95465851661376],[170.70923912900005,-42.947198174999954],[170.72201582100027,-42.93621184699998],[170.7331649100001,-42.92945728999996],[170.76978600400022,-42.915704033999845],[170.78728274800008,-42.90113697699991],[170.82309003999998,-42.86223723799992],[170.84148196700002,-42.85426197699995],[170.85840905000015,-42.84335702899989],[170.94385826900026,-42.73381926899975],[170.95679772200006,-42.724053643999895],[170.96648196700025,-42.721368096999825],[170.98699101785607,-42.714808847226],[171.0046492850002,-42.70574309699983],[171.01246178500017,-42.69296640399988],[171.02719160200013,-42.67400481599988],[171.03663170700005,-42.665459893999845],[171.04688561300011,-42.6617977839999],[171.06299889400015,-42.653985283999894],[171.07984459700015,-42.63551197699988],[171.10499108200023,-42.600355726999815],[171.1228133470003,-42.59238046699986],[171.19434655000018,-42.48365650799984],[171.21501712300008,-42.46550872199984],[171.22541301064032,-42.450688675578846],[171.22836347700027,-42.41887786299982],[171.23487389400006,-42.39568450299997],[171.28370201900003,-42.33977629999982],[171.3048608730002,-42.29461028399987],[171.3315535820001,-42.14723072699987],[171.34937584700018,-42.110284112999835],[171.35377037900022,-42.08806731599988],[171.3639429050003,-42.06340911299988],[171.36898847700016,-42.05543385199984],[171.40316816500015,-42.0240210919999],[171.41781660200016,-42.006280205999815],[171.42774498800023,-41.98349374799987],[171.44459069100006,-41.92066822699974],[171.4586694670002,-41.90097421699987],[171.46827233200005,-41.86834075299983],[171.48878014400023,-41.830336195999834],[171.4822697270001,-41.81902434699984],[171.47486412900005,-41.826429945999834],[171.47055097700016,-41.81910572699982],[171.4692488940002,-41.81340911299985],[171.468109571,-41.76628997199985],[171.48389733200017,-41.757500908999866],[171.54371178500028,-41.764336846999896],[171.61329186300017,-41.7569312479999],[171.6320093110002,-41.75790780999988],[171.63941491000023,-41.757500908999866],[171.68897545700008,-41.74163176899994],[171.78337649800022,-41.69605885199981],[171.80860436300017,-41.673760674999855],[171.81739342500035,-41.668145440999865],[171.83220462300025,-41.66578541499982],[171.84555097700022,-41.667657158999866],[171.8552352220003,-41.66545989399988],[171.8621525400001,-41.642022393999895],[171.87012780000006,-41.63600025799981],[171.88013756600006,-41.630791924999805],[171.88982181100013,-41.62371184699983],[171.90381920700034,-41.60686614399984],[171.9409285820001,-41.544610283999845],[171.9462996750003,-41.53948333099984],[171.95093834700023,-41.5387509089999],[171.95411217500026,-41.5349260399998],[171.95573978000007,-41.514255466999956],[171.95728600400028,-41.51189544099991],[171.96021569100023,-41.51043059699985],[171.96517988400026,-41.50709400799984],[171.97331790500024,-41.49814218499989],[171.97852623800026,-41.488457940999844],[171.98170006600006,-41.47771575299983],[171.9826766290001,-41.46575286299981],[171.99415123800034,-41.45110442499997],[172.02051842500032,-41.434177341999984],[172.05005944100012,-41.420098565999865],[172.07081139400023,-41.41423919099991],[172.0670679050002,-41.40496184699987],[172.0661727220003,-41.39511484199984],[172.06836998800017,-41.38567473799983],[172.08187910200016,-41.3663062479999],[172.08383222700007,-41.35458749799983],[172.08448326900034,-41.33294036299975],[172.08765709700006,-41.30877044099984],[172.09253991,-41.29924895599992],[172.10206139400017,-41.3019345029999],[172.10670006600023,-41.30055103999992],[172.1158960300002,-41.29607512799987],[172.12761478000024,-41.291761976999865],[172.13965905000012,-41.29143645599984],[172.12012780000018,-41.26327890399986],[172.1144311860003,-41.250909112999906],[172.10547936300011,-41.1405575499999],[172.10792076900026,-41.12835051899988],[172.11670983200017,-41.10556405999995],[172.11850019599999,-41.0962867169999],[172.1123153000001,-41.044366143999824],[172.1123153000001,-40.93572356599986],[172.10645592500006,-40.90447356599989],[172.1067814460002,-40.886895440999865],[172.1154077480002,-40.879164320999934],[172.12810306100008,-40.87859465899997],[172.13689212300002,-40.87590911299989],[172.14380944100006,-40.86988697699981],[172.1567488940003,-40.85003020599997],[172.18067467500012,-40.82586028399989],[172.18409264400017,-40.82024504999988],[172.1858830090002,-40.80974700299991],[172.18799889400012,-40.80535247199984],[172.19483483200028,-40.800225518999824],[172.20150800900024,-40.79949309699997],[172.20801842500032,-40.79957447699995],[172.2146916020001,-40.797295830999985],[172.2179468110002,-40.792738539999945],[172.22103925900015,-40.78622812299986],[172.22535241000023,-40.78004322699988],[172.2321069670002,-40.777520440999965],[172.23340905000018,-40.77760182099995],[172.2468367850001,-40.778090101999936],[172.2540796230003,-40.77711353999996],[172.26758873800011,-40.76775481599984],[172.29558353000013,-40.753024997999844],[172.30746504000012,-40.75017669099981],[172.3116968110002,-40.74635182099988],[172.36353600400028,-40.715915622999916],[172.46355228000021,-40.621758721999825],[172.50709069100017,-40.589450778999975],[172.54428144600018,-40.57822030999989],[172.5280054050003,-40.611260674999855],[172.52670332100004,-40.6223283829998],[172.54086347700013,-40.62664153399989],[172.54590905000006,-40.621758721999825],[172.55152428500017,-40.61248137799987],[172.55884850400028,-40.60588958099997],[172.57520592500018,-40.61223723799992],[172.58415774800002,-40.6093075499999],[172.59262129000027,-40.60409921699998],[172.598887566,-40.599297783999916],[172.59441165500013,-40.58473072699988],[172.62525475400022,-40.57431405999998],[172.6261499360003,-40.565118096999925],[172.61459394599999,-40.55510833099976],[172.61133873800026,-40.551527601999965],[172.59864342500035,-40.561130466999856],[172.58423912900028,-40.567315362999906],[172.5699975920002,-40.569105726999894],[172.55738366000006,-40.565118096999925],[172.5958764980003,-40.52776458099987],[172.64144941500027,-40.509698174999855],[172.8396102220003,-40.50212981599989],[172.90447024800025,-40.50847747199984]]],[[[175.1821395190003,-36.77532317499997],[175.18116295700028,-36.78508879999991],[175.1887313160002,-36.805352471999925],[175.18978925899992,-36.81511809699987],[175.1871850920002,-36.82252369599995],[175.1826278000002,-36.82496510199998],[175.16968834700015,-36.82366301899998],[175.16187584700018,-36.82390715899993],[175.1416121750002,-36.82976653399996],[175.12086022200018,-36.83196379999987],[175.09937584700023,-36.82935963299995],[175.05876712300022,-36.816827080999865],[175.06617272200023,-36.809340101999894],[175.0442814460001,-36.79265715899996],[175.0339461600001,-36.790948174999954],[175.02149498800017,-36.799737237999835],[175.01172936300028,-36.802666924999855],[175.00782311300023,-36.79078541499989],[175.00977623800028,-36.77369557099995],[175.0183211600001,-36.76148853999995],[175.02588951900023,-36.762465101999936],[175.07642662900017,-36.76148853999995],[175.087412957,-36.767022393999895],[175.09546959699995,-36.77703215899997],[175.105967644,-36.78191497199985],[175.12452233200025,-36.77214934699991],[175.1686304050002,-36.74114348799998],[175.19060306100013,-36.731215101999965],[175.19597415500007,-36.73414478999982],[175.2063908210001,-36.744805596999925],[175.21517988400015,-36.75847747199997],[175.2075301440003,-36.76360442499997],[175.19320722699993,-36.76685963299984],[175.1821395190003,-36.77532317499997]]],[[[175.83513431099996,-36.62859465899993],[175.82862389400017,-36.62908294099991],[175.82211347700016,-36.62883879999996],[175.81788170700017,-36.62851327899994],[175.80974368600013,-36.62664153399989],[175.79753665500024,-36.62175872199991],[175.79493248800017,-36.618340752999984],[175.79639733200023,-36.61451588299998],[175.7991642590001,-36.61012135199991],[175.80054772200006,-36.607354424999855],[175.80144290499996,-36.604261976999865],[175.80103600400017,-36.60084400799994],[175.7991642590001,-36.59710051899991],[175.79281660200004,-36.59319426899992],[175.7845158210001,-36.591485283999916],[175.77686608200017,-36.58749765400002],[175.77198326900017,-36.57659270599987],[175.7991642590001,-36.56975676899985],[175.80583743600025,-36.577732028999904],[175.81666100399994,-36.60393645599984],[175.82781009199996,-36.605075778999876],[175.8362736340002,-36.60857512799987],[175.8427840500003,-36.615166924999926],[175.84766686300023,-36.625095309999935],[175.8413192070001,-36.62721119599994],[175.83513431099996,-36.62859465899993]]],[[[174.90601647200012,-36.449151299999954],[174.89087975400017,-36.45322031],[174.85523522200023,-36.452406507999896],[174.84546959700015,-36.44850025799991],[174.86011803500023,-36.43954843499996],[174.86060631600017,-36.42839934699987],[174.8507593110002,-36.40374114399995],[174.85328209700018,-36.39169687299986],[174.86654707099993,-36.38469817499996],[174.88233483200017,-36.38974374799999],[174.895518425,-36.40154387799997],[174.90113366000023,-36.415215752999906],[174.90796959700012,-36.439385675],[174.90601647200012,-36.449151299999954]]],[[[175.13086998800023,-36.226657809999935],[175.11394290500024,-36.228285414999874],[175.1003524100001,-36.22779713299996],[175.08082116000023,-36.205661717],[175.09538821699994,-36.186618747999916],[175.12086022200018,-36.17522551899994],[175.13453209700012,-36.175957940999965],[175.13868248800023,-36.18230559699991],[175.14763431100025,-36.190524998],[175.15495853000024,-36.200860283999916],[175.15495853000024,-36.21355559699988],[175.14600670700023,-36.22193775799994],[175.13086998800023,-36.226657809999935]]],[[[175.44385826900026,-36.12566497199991],[175.44597415500024,-36.137139580999865],[175.4602970710001,-36.149102471999896],[175.4865014980001,-36.16228606599985],[175.5120548840002,-36.17099374799993],[175.5217391290001,-36.17253997199997],[175.5306095710002,-36.17636484199997],[175.52572675900015,-36.185235283999845],[175.51636803499994,-36.19557057099985],[175.51124108200023,-36.20354583099989],[175.50766035200004,-36.21868254999989],[175.50212649800014,-36.22958749799987],[175.5018009770001,-36.241306247999944],[175.51465905000023,-36.25847747199997],[175.51889082100016,-36.26213958099984],[175.5241805350001,-36.26523202899992],[175.52979576900023,-36.267347914999924],[175.53541100400022,-36.26816171699994],[175.53874759200025,-36.26978932099996],[175.53874759200025,-36.273858330999914],[175.53760826900023,-36.27849700299985],[175.5384220710002,-36.28240325299985],[175.55779056100013,-36.304294528999975],[175.56592858200017,-36.309747003],[175.54623457100018,-36.34335702900002],[175.53687584700018,-36.35076262799993],[175.522797071,-36.352146092],[175.51514733200028,-36.34465911299985],[175.51172936299997,-36.33261484199993],[175.51124108200023,-36.320000908999944],[175.50554446700025,-36.30925872199984],[175.49244225400017,-36.31267669099985],[175.4775496750003,-36.31975676899999],[175.46680748800026,-36.320000908999944],[175.4615991550002,-36.309665623],[175.45923912900017,-36.2843563779999],[175.4559025400002,-36.27556731599984],[175.44800866000023,-36.270684502999956],[175.4397078790001,-36.27092864399999],[175.41553795700028,-36.27556731599984],[175.4189559250003,-36.26677825299987],[175.41871178499994,-36.26067473799988],[175.41521243600025,-36.25505950299997],[175.40805097700022,-36.24765390399988],[175.38493899800025,-36.25400155999992],[175.35645592500012,-36.24391041499986],[175.33375084700018,-36.223728123000015],[175.3269149100001,-36.19988372199985],[175.3527938160001,-36.22519296699997],[175.36036217500023,-36.22779713299996],[175.3696395190003,-36.21965911299996],[175.36947675900015,-36.20712655999996],[175.3673608730002,-36.19361744599997],[175.37061608200014,-36.1827938779999],[175.37907962300014,-36.16545989399991],[175.36540774799997,-36.156833592],[175.34522545700014,-36.14853281],[175.33375084700018,-36.131605726999844],[175.36353600400022,-36.13193124799987],[175.37663821700025,-36.12802499799996],[175.3877059250003,-36.11793385199982],[175.3679305350001,-36.10133228999985],[175.36410566500015,-36.08131275799997],[175.37549889400023,-36.065850518999866],[175.40137780000023,-36.06267669099998],[175.41138756600012,-36.065850518999866],[175.42025800900015,-36.07195403399986],[175.42676842500023,-36.08123137799998],[175.429209832,-36.09384530999997],[175.43360436300028,-36.0997860659999],[175.46338951900017,-36.11793385199982],[175.44385826900026,-36.12566497199991]]],[[[173.07927493600008,-34.411716403999876],[173.0504663420003,-34.42685312299987],[173.0427352220003,-34.44687265399993],[173.04460696700014,-34.50042083099976],[173.04200280000006,-34.51376718499995],[173.03809655000032,-34.52206796699984],[173.02955162900017,-34.5265438779999],[173.01351972700016,-34.527764580999914],[173.00863691500024,-34.5222307269998],[173.00464928499997,-34.51034921699994],[172.99740644599999,-34.498467705999985],[172.98316491000028,-34.49358489399992],[172.9851180350001,-34.488946221999896],[172.98796634200008,-34.47722747199991],[172.990000847,-34.47242603999983],[172.9700626960001,-34.46656666499979],[172.9625757170001,-34.46843840899976],[172.95508873800028,-34.49358489399992],[172.95167076900006,-34.515557549999755],[172.94434655000006,-34.52190520599987],[172.92790774800008,-34.51344166499992],[172.92701256600017,-34.52353280999989],[172.92310631600017,-34.53142669099994],[172.9166772800002,-34.53728606599982],[172.907481316,-34.54143645599986],[172.91732832100004,-34.55046965899994],[172.94898522200012,-34.56991952899986],[172.95183353000024,-34.558770440999936],[172.9567163420002,-34.54949309699996],[172.96436608200023,-34.543226820999934],[172.9757593110002,-34.54143645599986],[172.97046959700023,-34.5563290339999],[172.96705162900022,-34.56316497199991],[172.96208743600013,-34.56991952899986],[172.97291100400022,-34.57594166499995],[172.9830835300003,-34.576592705999914],[172.9914656910002,-34.57195403399989],[172.99683678500006,-34.56178150799993],[173.00228925900015,-34.573663018999895],[173.00407962300025,-34.586602471999896],[173.00367272200012,-34.64421965899996],[173.00749759200005,-34.651136976999865],[173.01734459700023,-34.6444637999999],[173.02857506600017,-34.62102629999984],[173.031097852,-34.591566664999945],[173.02507571700025,-34.562758070999735],[173.00977623800028,-34.54143645599986],[173.0358179050002,-34.55234140399983],[173.05079186300028,-34.6013322899998],[173.0607202480003,-34.659844658999944],[173.07178795700005,-34.6989885399998],[173.10425866000023,-34.72966887799997],[173.14551842500018,-34.759698174999755],[173.17920983200023,-34.79363372199997],[173.1886499360003,-34.83562590899987],[173.13998457100027,-34.787855726999915],[173.1191512380001,-34.774102471999896],[173.12305748800011,-34.80966562299996],[173.16488691500004,-34.844821872999844],[173.29818769600016,-34.9094377579998],[173.29525800900015,-34.920993748],[173.27393639400032,-34.94231536299988],[173.2677514980002,-34.95077890399992],[173.26449629000012,-34.96087004999988],[173.2638452480003,-35.002211195999735],[173.26661217500035,-35.00774504999984],[173.27312259200016,-35.007012627999806],[173.28419029999998,-35.00750090899997],[173.31714928500028,-35.01539478999996],[173.32520592500023,-35.014906507999875],[173.333018425,-35.00603606599984],[173.33619225400017,-34.99423593499986],[173.34148196700025,-34.984063408999916],[173.35580488400043,-34.97966887799984],[173.36850019600027,-34.967217705999914],[173.36622155000023,-34.9391415339999],[173.35238691500015,-34.89080169099981],[173.35792076900023,-34.868747653999904],[173.3767195970003,-34.861911716999884],[173.40137780000026,-34.85833098799982],[173.42481530000023,-34.846449476999865],[173.43165123800026,-34.83310312299986],[173.42945397200018,-34.82138437299996],[173.42481530000023,-34.8117815079998],[173.42481530000023,-34.805271091999984],[173.4357202480003,-34.79648202899983],[173.4441024100002,-34.796319268999866],[173.45053144600033,-34.803317966999934],[173.45541425900026,-34.81568775799988],[173.45639082100027,-34.8246395809999],[173.45492597700022,-34.8337541649999],[173.4487410820001,-34.84986744599988],[173.4790145190002,-34.837334893999966],[173.4902449880005,-34.83562590899987],[173.4851180350002,-34.84587981599989],[173.48812910200022,-34.854099216999984],[173.50318444100023,-34.86980559699995],[173.4622501960002,-34.883965752999885],[173.42042076900032,-34.883965752999885],[173.41089928500017,-34.88738372199998],[173.40406334700018,-34.90341562299997],[173.40894615999994,-34.9222958309999],[173.41895592500046,-34.940036716999984],[173.42823326900034,-34.95289478999992],[173.4419051440003,-34.968031507999925],[173.4587508470003,-34.98121510199988],[173.47828209700018,-34.99041106599985],[173.5001733730003,-34.99382903399986],[173.54867597700027,-34.989190362999835],[173.56788170700023,-34.994561455999886],[173.58643639400023,-35.014906507999875],[173.5978296230003,-34.998711846999925],[173.6001082690004,-34.99382903399986],[173.58920332099993,-34.98259856599995],[173.5763452480002,-34.972751559999914],[173.56666100400022,-34.96119557099982],[173.56527754000015,-34.94548919099985],[173.5750431650002,-34.92815520599986],[173.58822675900015,-34.92750416499982],[173.60189863400026,-34.93775807099992],[173.61304772200026,-34.95289478999992],[173.62501061300023,-34.942803643999866],[173.63868248800034,-34.94133879999981],[173.65007571700025,-34.94646575299983],[173.6606551440003,-34.968519789999725],[173.6749780610004,-34.97332122199981],[173.7053328790004,-34.973402601999794],[173.70866946700042,-34.971286716999956],[173.7111108730003,-34.96648528399989],[173.71509850400028,-34.961846612999864],[173.72266686300023,-34.959730726999844],[173.73243248800028,-34.962009372999916],[173.73414147200026,-34.96746184699995],[173.73357181100027,-34.97405364399984],[173.73601321700028,-34.97966887799984],[173.74146569100026,-34.98609791499993],[173.74439537900022,-34.993096612999835],[173.74830162900028,-34.99863046699994],[173.75684655000023,-35.00066497199997],[173.7646590500002,-35.00123463299994],[173.77125084700018,-35.00286223799995],[173.78443444099995,-35.00750090899997],[173.77149498800023,-35.013116143999895],[173.76547285200022,-35.022149346999804],[173.76197350400022,-35.03240325299993],[173.75660241000028,-35.04168059699988],[173.73414147200026,-35.055596612999864],[173.72445722700022,-35.06422291499996],[173.72608483200034,-35.072686455999815],[173.7602645190001,-35.096937757999896],[173.78109785200022,-35.0956356749999],[173.78581790500024,-35.0917294249999],[173.78386478000016,-35.085137627999906],[173.78443444099995,-35.07577890399988],[173.80494225400028,-35.04168059699988],[173.80583743600008,-35.035577080999985],[173.8034774100002,-35.02076588299973],[173.80494225400028,-35.014906507999875],[173.81202233200023,-35.009698174999876],[173.82886803500043,-35.00750090899997],[173.8468530610003,-34.999769789999874],[173.86182701900023,-34.99895598799996],[173.89087975400022,-35.00066497199997],[173.8881942070001,-35.00603606599984],[173.89673912900017,-35.0177548159999],[173.91391035200027,-35.034763278999975],[173.9542749360003,-35.05999114399985],[173.96998131600026,-35.07586028399987],[173.9763289720002,-35.100355726999894],[173.99000084700015,-35.11874765399993],[174.0216577480003,-35.12281666499982],[174.0792749360002,-35.11736419099994],[174.10328209700018,-35.12265390399985],[174.12794030000035,-35.136488539999846],[174.1471460300003,-35.157159112999864],[174.15503991000028,-35.182305596999754],[174.1134546230002,-35.19304778399986],[174.10206139400012,-35.1893856749999],[174.09888756600006,-35.180271092],[174.09791100400028,-35.16912200299997],[174.09351647200026,-35.15894947699985],[174.08863366000023,-35.16033294099992],[174.08033287900005,-35.16545989399975],[174.06999759200036,-35.16529713299997],[174.05811608200028,-35.151543877999934],[174.0338647800003,-35.162530205999914],[174.0236108730002,-35.16912200299997],[174.03305097700022,-35.17546965899983],[174.0520125660003,-35.199395440999965],[174.0180770190003,-35.202894789999874],[174.0149845710002,-35.21697356599982],[174.03052819100017,-35.22722747199993],[174.0520125660003,-35.21982187299986],[174.06177819100017,-35.22600676899992],[174.07252037900028,-35.22812265399993],[174.08350670700008,-35.22600676899992],[174.09351647200026,-35.21982187299986],[174.10572350400025,-35.23552825299983],[174.10368899800037,-35.24911874799996],[174.09644616000023,-35.261814059999935],[174.09351647200026,-35.2745093729999],[174.09986412900017,-35.2870419249999],[174.1375431650002,-35.31910572699988],[174.14283287900022,-35.32781340899995],[174.14600670700028,-35.340020440999936],[174.1482039720004,-35.36687590899982],[174.15113366000017,-35.36972421699987],[174.1579695970003,-35.35898202899995],[174.16480553500026,-35.34286874799997],[174.16797936300034,-35.32903411299996],[174.18775475400028,-35.33814869599988],[174.1982528000003,-35.341566664999874],[174.20972741000023,-35.342705987999906],[174.20753014400051,-35.33831145599984],[174.20460045700028,-35.32732512799997],[174.2028100920002,-35.322849216999906],[174.21729576900034,-35.3220354149999],[174.2257593110002,-35.32708098799974],[174.23194420700034,-35.333428643999866],[174.2400008470003,-35.336521091999856],[174.2491968110002,-35.33220794099985],[174.2516382170002,-35.322523695999884],[174.2482202480003,-35.3129208309999],[174.2400008470003,-35.308689059999885],[174.21778405000032,-35.30673593499985],[174.18913821700048,-35.30055103999987],[174.1645613940003,-35.29013437299989],[174.15503991000028,-35.2745093729999],[174.16187584700018,-35.28134531],[174.17579186300034,-35.269789320999806],[174.19971764400012,-35.26864999799985],[174.25066165500021,-35.2745093729999],[174.24561608200045,-35.26441822699992],[174.24317467500032,-35.26083749799996],[174.25359134200025,-35.25986093499989],[174.26693769600016,-35.26148853999973],[174.27711022200023,-35.26441822699992],[174.27719160200022,-35.26767343499996],[174.28834069100026,-35.26230234199991],[174.28988691500015,-35.258884372999916],[174.2897241550002,-35.25408294099984],[174.29493248800028,-35.24431731599998],[174.32227623800034,-35.22014739399988],[174.35303795700034,-35.199395440999965],[174.36085045700034,-35.22405364399988],[174.3522241550003,-35.24439869599996],[174.33871504000015,-35.26474374799977],[174.33253014400037,-35.28801848799988],[174.34017988400038,-35.31178150799997],[174.3571069670002,-35.32195403399983],[174.37891686300034,-35.32390715899987],[174.40137780000023,-35.322849216999906],[174.40137780000023,-35.32903411299996],[174.39177493600005,-35.343194268999895],[174.422373894,-35.37371184699994],[174.40756269600038,-35.384372653999876],[174.4016219410003,-35.381117445999834],[174.373545769,-35.3570289039999],[174.34213300900024,-35.33709075299983],[174.33253014400037,-35.32903411299996],[174.3491317070002,-35.351250908999845],[174.3857528000003,-35.41855234199987],[174.40821373800028,-35.43271249799989],[174.42872155000012,-35.434665622999844],[174.44922936300026,-35.438897393999945],[174.44841556100047,-35.4374325499999],[174.44947350399994,-35.434665622999844],[174.45199629000015,-35.432386976999865],[174.4560653,-35.43271249799989],[174.46013431100016,-35.4361304669999],[174.46363366000045,-35.444594007999925],[174.46631920700034,-35.44638437299983],[174.4747827480004,-35.45378997199991],[174.49830162899994,-35.48894622199997],[174.50375410200016,-35.50107187299987],[174.46436608200028,-35.50562916499973],[174.4689233730003,-35.51767343499992],[174.52116946700025,-35.55250416499996],[174.56950931100025,-35.59433359199988],[174.57837975400028,-35.61793385199992],[174.56527754000012,-35.65178801899998],[174.55005944100017,-35.64478932099982],[174.5051375660004,-35.63876718499999],[174.4870711600002,-35.63811614399994],[174.47657311300034,-35.64324309699987],[174.49317467500043,-35.6547177059999],[174.53101647200046,-35.6716447899998],[174.5257267590002,-35.67294687299997],[174.5112410820002,-35.679131768999866],[174.53687584700023,-35.68401458099992],[174.5473738940003,-35.687920830999914],[174.55160566500018,-35.69646575299985],[174.5481063160003,-35.70680103999986],[174.53931725400014,-35.7139624979999],[174.52833092500035,-35.718357028999975],[174.51742597700024,-35.720798435],[174.57618248800023,-35.750258070999884],[174.58643639400023,-35.761000257999825],[174.58725019600004,-35.773370049999855],[174.5805770190003,-35.797295830999914],[174.58301842500052,-35.80632903399983],[174.60678144600016,-35.84351978999992],[174.5792749360003,-35.84954192499991],[174.55884850400022,-35.839043877999856],[174.53988691500032,-35.82244231599989],[174.51742597700024,-35.81015390399984],[174.5244246750003,-35.79143645599987],[174.4957788420002,-35.78460051899994],[174.49691816500024,-35.76848723799996],[174.48194420700048,-35.7694638],[174.45622806100042,-35.77841562299989],[174.44174238400015,-35.78150807099996],[174.4347436860003,-35.77996184699992],[174.42448978000027,-35.77068450299995],[174.41814212300048,-35.76848723799996],[174.4113061860002,-35.77166106599985],[174.4059350920002,-35.78573984199997],[174.40137780000023,-35.78899504999984],[174.38550865999994,-35.78948333099982],[174.38347415500027,-35.78753020599996],[174.38672936300034,-35.7792294249999],[174.38705488400018,-35.761000257999825],[174.3839624360003,-35.746840101999894],[174.37891686300034,-35.73479583099997],[174.37094160200024,-35.72380950299983],[174.3598738940003,-35.71331145599986],[174.35523522199992,-35.73528411299995],[174.3600366550003,-35.78948333099982],[174.35645592500035,-35.80632903399983],[174.35124759200025,-35.816582940999936],[174.34994550900026,-35.82968515399992],[174.3527124360003,-35.84197356599988],[174.3598738940003,-35.84978606599995],[174.37525475400028,-35.851820570999806],[174.3840438160003,-35.843438408999845],[174.39014733200028,-35.83049895599993],[174.39771569100023,-35.81943124799997],[174.41586347700022,-35.81682708099998],[174.48218834700043,-35.823825778999876],[174.50375410200016,-35.83001067499994],[174.5202742850004,-35.84742603999973],[174.5161238940003,-35.8671200499999],[174.4990340500002,-35.88697682099986],[174.47657311300034,-35.90504322699988],[174.49301191500015,-35.919366143999866],[174.4965926440002,-35.943780205999914],[174.49537194100023,-35.96941497199988],[174.49691816500024,-35.98756275799988],[174.50912519600016,-36.00009530999996],[174.55396569100037,-36.02711353999992],[174.5727645190003,-36.03533294099984],[174.58497155000035,-36.03720468499989],[174.61019941500044,-36.03720468499989],[174.62110436300046,-36.042250257999925],[174.63086998800034,-36.05510833099986],[174.62964928499994,-36.06438567499981],[174.62403405000012,-36.072930596999925],[174.62110436300046,-36.08375416499983],[174.62614993600025,-36.107354424999954],[174.63672936300026,-36.11956145599984],[174.6515405610004,-36.12916432099982],[174.66895592500023,-36.14519622199981],[174.72494550900026,-36.21550872199984],[174.75700931100025,-36.24488697699984],[174.79859459700023,-36.26816171699994],[174.82447350400017,-36.27703215899997],[174.8252059250003,-36.282647393999895],[174.81910241000017,-36.296075127999885],[174.81967207100016,-36.29876067499987],[174.82300866000028,-36.30006275799987],[174.8252059250003,-36.30185312299994],[174.82252037900028,-36.3063290339999],[174.8190210300002,-36.30787525799994],[174.8156844410003,-36.30681731599981],[174.81332441500035,-36.30462004999989],[174.812998894,-36.30291106599989],[174.8076278000002,-36.30624765399992],[174.80372155000035,-36.30462004999989],[174.80079186300011,-36.30559661299996],[174.79859459700023,-36.316582940999936],[174.8064070970002,-36.334893487999885],[174.82878665500024,-36.34221770599981],[174.8566186860003,-36.34531015399989],[174.88054446700042,-36.35133228999989],[174.85035241000014,-36.35556406],[174.76783287900017,-36.35198333099994],[174.75074303500028,-36.35442473799996],[174.75326582100016,-36.368340752999956],[174.76726321700008,-36.409600518999824],[174.78337649800025,-36.43621184699994],[174.7853296230003,-36.4533016909998],[174.78305097700036,-36.47128671699984],[174.77881920700023,-36.48723723799985],[174.75847415500027,-36.439873955999815],[174.7426863940003,-36.42001718499999],[174.71664472700022,-36.41155364399986],[174.7348738940003,-36.45566171699985],[174.7325952480002,-36.47258879999984],[174.70980879000024,-36.47356536299982],[174.70980879000024,-36.48105234199997],[174.71957441500015,-36.483575127999984],[174.7282820970003,-36.487888278999975],[174.73633873800034,-36.49358489399988],[174.74398847700027,-36.50090911299996],[174.7368270190001,-36.511325778999876],[174.71583092500035,-36.52190520599983],[174.70980879000024,-36.5289039039999],[174.7096460300003,-36.54208749799986],[174.72055097700027,-36.55974700299986],[174.72348066500018,-36.573174737999864],[174.72291100400045,-36.59368254999991],[174.7277124360003,-36.596449476999965],[174.74057050900026,-36.607354424999855],[174.75049889400026,-36.61288827899996],[174.76441491000037,-36.615980726999936],[174.79184004000027,-36.61760833099996],[174.83448326900012,-36.60418059699988],[174.84644616000006,-36.60393645599984],[174.85694420700034,-36.61093515399992],[174.85230553500023,-36.61638762799994],[174.80616295700025,-36.63795338299987],[174.78158613400026,-36.64560312299999],[174.76539147200023,-36.644219658999916],[174.72348066500018,-36.63128020599989],[174.74398847700027,-36.64861419099981],[174.75928795700034,-36.673272393999895],[174.81910241000017,-36.82366301899998],[174.79737389400023,-36.81861744599986],[174.78443444100026,-36.80925872199991],[174.7701929050002,-36.805352471999925],[174.74398847700027,-36.816827080999865],[174.7356063160003,-36.811781507999925],[174.73194420700028,-36.80559661299996],[174.7325952480002,-36.79810963299981],[174.73715254000015,-36.78948333099989],[174.71778405000023,-36.78590260199984],[174.70362389400043,-36.75847747199997],[174.6891382170002,-36.75847747199997],[174.6535750660003,-36.7730445289999],[174.6378686860003,-36.781670830999815],[174.62110436300046,-36.796319268999824],[174.62110436300046,-36.80315520599984],[174.62973066499993,-36.803969007999854],[174.66504967500035,-36.799574476999865],[174.68262780000035,-36.80315520599984],[174.6733504570002,-36.81047942499975],[174.65902754000044,-36.81804778399989],[174.64942467500035,-36.825941664999945],[174.65463300900015,-36.833916924999826],[174.6705835300002,-36.8417294249999],[174.67530358200028,-36.845391533999944],[174.6745711600002,-36.8512509089999],[174.6757918630002,-36.89381275799994],[174.68018639400034,-36.9074032529999],[174.69255618600047,-36.913018487999814],[174.70069420700028,-36.90789153399999],[174.70199629000027,-36.89568450299983],[174.70118248800028,-36.8819312479999],[174.70313561300011,-36.87135182099994],[174.70980879000024,-36.87900155999996],[174.7182723320001,-36.86760833099983],[174.7273869149999,-36.85800546699993],[174.73812910200013,-36.85035572699982],[174.75074303500028,-36.84482187299997],[174.76644941500027,-36.84270598799996],[174.812998894,-36.851006768999866],[174.8756616550002,-36.851006768999866],[174.89747155000023,-36.86248137799981],[174.8942163420002,-36.892673435],[174.88412519600016,-36.90471770599993],[174.8742781910003,-36.91122812299983],[174.86915123800023,-36.92001718499989],[174.87378990999994,-36.93914153399996],[174.87940514400023,-36.95208098799996],[174.8847762380004,-36.959079684999935],[174.89144941500015,-36.957777601999936],[174.90113366000023,-36.946547132999854],[174.9283960300003,-36.83733489399992],[174.9352319670002,-36.83733489399992],[174.95704186300034,-36.8845354149999],[174.96485436300034,-36.9074032529999],[174.96314537900017,-36.93352629999987],[174.98585045700028,-36.92864348799989],[175.01140384200008,-36.92782968499996],[175.02393639400034,-36.920342705999914],[175.00757897200015,-36.895928643999866],[175.0036727220003,-36.879327080999815],[175.0271102220004,-36.87460702899999],[175.05884850400028,-36.87761809699981],[175.07984459700018,-36.8845354149999],[175.09180748800026,-36.9074032529999],[175.08057701900032,-36.9530575499999],[175.0934350920003,-36.97047291499973],[175.1088973320001,-36.97380950299975],[175.121104363,-36.96982187299996],[175.13233483200028,-36.96347421699984],[175.1490991550003,-36.959079684999935],[175.17261803500028,-36.9458960919999],[175.17872155000035,-36.94793059699984],[175.18409264400051,-36.95191822699991],[175.18897545700028,-36.95338307099996],[175.22169030000023,-36.94085051899995],[175.23072350399994,-36.93914153399996],[175.24097741000017,-36.94231536299983],[175.26246178500028,-36.95680103999979],[175.2754012380004,-36.9602190079998],[175.2835392590002,-36.96412525799988],[175.3190210300003,-36.999607028999876],[175.32601972700016,-37.00945403399997],[175.3310653000003,-37.021254164999945],[175.33375084700018,-37.035902601999965],[175.33269290500024,-37.05901458099983],[175.3200789720004,-37.1286760399999],[175.32471764400034,-37.15162525799988],[175.33627363400032,-37.17327239399988],[175.35173587300025,-37.19215260199982],[175.36719811300023,-37.20720794099984],[175.4033309250003,-37.223809502999885],[175.4479272800004,-37.22486744599984],[175.49350019599993,-37.215508721999896],[175.53223717500023,-37.2003720029999],[175.54021243600027,-37.1939429669999],[175.54346764400034,-37.187188408999944],[175.54883873800046,-37.18206145599994],[175.56275475400028,-37.17994557099993],[175.5709741550003,-37.18450286299996],[175.5739852220003,-37.19508228999993],[175.57325280000023,-37.21746184699994],[175.57862389400023,-37.23723723799988],[175.59180748800034,-37.2492001279999],[175.60954837299994,-37.251560153999776],[175.62794029999998,-37.24195728999989],[175.6123153000002,-37.238457940999886],[175.6017358730002,-37.22795989399992],[175.59571373800028,-37.21314869599994],[175.5914819670003,-37.18141041499988],[175.58228600400017,-37.15471770599996],[175.58008873800028,-37.142022393999824],[175.56275475400028,-37.111911716999884],[175.55958092500052,-37.09734465899986],[175.56072024799997,-37.04461028399986],[175.5559188160003,-37.032159112999935],[175.5514429050002,-37.02410247199981],[175.52784264400034,-36.96249765399986],[175.52084394600018,-36.95086028399986],[175.51124108200023,-36.93914153399996],[175.49903405000023,-36.92937590899983],[175.47388756600046,-36.914646091999835],[175.46338951900034,-36.90553150799993],[175.45728600400025,-36.894789320999834],[175.45411217500012,-36.88420989399988],[175.44890384200025,-36.874118748],[175.4362085300002,-36.864678643999895],[175.45728600400025,-36.858493747999916],[175.48129316500004,-36.861993096999825],[175.50318444100017,-36.86174895599996],[175.51791425900015,-36.84482187299997],[175.48519941500015,-36.845391533999944],[175.46973717500046,-36.8434384089999],[175.4559025400002,-36.83733489399992],[175.46827233200034,-36.83359140399988],[175.48072350400028,-36.831231377999835],[175.4912215500002,-36.82691822699992],[175.49756920700028,-36.816827080999865],[175.48894290500047,-36.81658294099984],[175.48226972700022,-36.81438567499984],[175.47641035200027,-36.81145598799982],[175.47022545700023,-36.809340101999894],[175.52051842500035,-36.797946872999844],[175.53711998800023,-36.78606536299989],[175.53223717500023,-36.76148853999979],[175.51628665500036,-36.7704403629999],[175.51124108200023,-36.77532317499997],[175.5044051440004,-36.76555754999984],[175.49935957100027,-36.75530364399991],[175.49878991000028,-36.745049737999956],[175.50505618600025,-36.73495859199991],[175.48243248800028,-36.704766533999894],[175.48951256600023,-36.67815520599996],[175.50245201900034,-36.653903903999876],[175.49756920700028,-36.63128020599989],[175.48910566500044,-36.62786223799989],[175.47779381600017,-36.62623463299988],[175.4677840500003,-36.62297942499984],[175.46338951900034,-36.61419036299995],[175.4604598320003,-36.61158619599996],[175.44239342500023,-36.59091562299986],[175.42457116000026,-36.58294036299981],[175.38721764400043,-36.57154713299984],[175.37061608200034,-36.55925872199988],[175.3620711599999,-36.545993747999944],[175.3571069670002,-36.52955494599995],[175.35425866000017,-36.49098072699988],[175.3624780610003,-36.47682057099986],[175.38257897200015,-36.47682057099986],[175.40723717500032,-36.480401299999926],[175.4404403000004,-36.47470468499984],[175.4469507170002,-36.4796688779999],[175.45118248800046,-36.48772551899984],[175.45728600400025,-36.49675872199994],[175.4611922540002,-36.50465260199982],[175.46338951900034,-36.5077450499999],[175.4672957690003,-36.51083749799989],[175.47535241000026,-36.514580987999906],[175.49594160200016,-36.53045012799994],[175.50611412900028,-36.53150807099989],[175.53223717500023,-36.5077450499999],[175.5504663420003,-36.52646249799987],[175.56202233200028,-36.551690362999835],[175.56031334700018,-36.57740650799988],[175.5384220710002,-36.59710051899991],[175.55933678500014,-36.610772393999945],[175.58204186300011,-36.611097914999874],[175.5999455090002,-36.61581796699997],[175.60743248800034,-36.64218515399989],[175.61011803500023,-36.66757577899999],[175.60743248800034,-36.68059661299981],[175.5969344410003,-36.676202080999914],[175.58383222700033,-36.667738539999874],[175.57406660200027,-36.66985442499988],[175.57064863400026,-36.678399346999896],[175.57667076900032,-36.68987395599985],[175.58814537900028,-36.69402434699998],[175.61695397200018,-36.6905249979999],[175.62794029999998,-36.693291924999954],[175.6344507170002,-36.704522393999866],[175.63103274800008,-36.714939059999935],[175.62427819100017,-36.724786065999965],[175.62110436300028,-36.73495859199991],[175.62810306100042,-36.76384856599984],[175.64210045700023,-36.76669687299987],[175.6824650400002,-36.74114348799998],[175.6681421230002,-36.73601653399987],[175.66211998800028,-36.73495859199991],[175.66911868600047,-36.725762627999934],[175.68165123800034,-36.722344658999845],[175.69564863400015,-36.724216403999904],[175.70679772200018,-36.73113372199981],[175.7190047539999,-36.73593515399989],[175.73365319100023,-36.730157158999916],[175.75814863400026,-36.71379973799982],[175.77637780000023,-36.70842864399995],[175.79070071700025,-36.70761484199994],[175.80339603000016,-36.71217213299988],[175.81666100399994,-36.72405364399994],[175.82781009200033,-36.72568124799996],[175.8413192070001,-36.719414971999825],[175.8517358730003,-36.71835702899986],[175.8537703790004,-36.73495859199991],[175.8483179050003,-36.74814218499978],[175.8380639980002,-36.75164153399986],[175.8097436860003,-36.748630466999856],[175.8049422540004,-36.75351327899992],[175.7856551440003,-36.78281015399985],[175.77263431100025,-36.78972747199994],[175.74683678500014,-36.79802825299982],[175.73438561300028,-36.8063290339999],[175.71843509200025,-36.82390715899993],[175.7036238940003,-36.84482187299997],[175.71558678500023,-36.85271575299987],[175.7148543630004,-36.85995859199997],[175.71111087300025,-36.86728280999989],[175.7135522800002,-36.87517669099994],[175.7247827480002,-36.88420989399988],[175.7368270190003,-36.89039478999993],[175.74488366000017,-36.88990650799995],[175.74390709700006,-36.87900155999996],[175.75977623800028,-36.868584893999895],[175.75196373800028,-36.83717213299987],[175.7649845710002,-36.82366301899998],[175.78695722700027,-36.83294036299985],[175.82781009200033,-36.82577890399999],[175.8507593110003,-36.84099700299997],[175.85450280000035,-36.85198333099984],[175.8532007170002,-36.87786223799985],[175.85759524800025,-36.888604424999954],[175.87322024800022,-36.90496184699997],[175.87761478000024,-36.91285572699985],[175.88184655000023,-36.926039320999806],[175.88795006600023,-36.97380950299975],[175.88461347700024,-37.00562916499979],[175.88493899800028,-37.011407158999845],[175.8868921230002,-37.021254164999945],[175.88054446700025,-37.03199635199987],[175.8723250660004,-37.04306406],[175.86801191500015,-37.05339934699991],[175.87305748800028,-37.06031666499983],[175.8837996750003,-37.05478281],[175.89527428500023,-37.04412200299987],[175.90162194100017,-37.035902601999965],[175.91968834700018,-37.054620049999755],[175.91627037900014,-37.07976653399983],[175.90162194100017,-37.106133721999825],[175.88493899800028,-37.1286760399999],[175.8837996750003,-37.13713958099975],[175.89389082100016,-37.140394789999796],[175.90723717500026,-37.14226653399986],[175.91586347700027,-37.145765882999854],[175.9192814460002,-37.15813567499988],[175.9178166019999,-37.187188408999944],[175.92269941500027,-37.2003720029999],[175.91309655000023,-37.19500090899986],[175.90560957100004,-37.18710702899996],[175.9000757170003,-37.17717864399988],[175.89551842500035,-37.166273695999884],[175.88795006600023,-37.166273695999884],[175.89242597700027,-37.1913387999999],[175.89991295700034,-37.21314869599994],[175.90137780000052,-37.23064544099989],[175.88795006600023,-37.24195728999989],[175.92188561300028,-37.25481536299982],[175.9336043630003,-37.26409270599996],[175.94312584700018,-37.28240325299991],[175.95297285200022,-37.32154713299987],[175.95679772200026,-37.3615048159999],[175.9611108730002,-37.37737395599994],[175.97934004000027,-37.40862395599991],[175.98357181100016,-37.42327239399992],[175.98658287900028,-37.43035247199997],[176.00066165500024,-37.43914153399985],[176.00464928500034,-37.44744231599984],[176.00424238400015,-37.46054452899999],[175.99927819100017,-37.45867278399993],[175.99170983200023,-37.452894789999874],[175.98357181100016,-37.45427825299985],[175.9754337900002,-37.46990325299984],[175.98487389399997,-37.47649504999989],[176.0250757170002,-37.48162200299983],[176.04175866000023,-37.48739999799989],[176.05974368600047,-37.49635182099981],[176.07650800900026,-37.50725676899997],[176.09017988400043,-37.518812757999825],[176.10043379000027,-37.53215911299983],[176.11622155,-37.56170012799996],[176.12452233200028,-37.573825778999975],[176.15308678500017,-37.59531015399999],[176.1652124360004,-37.60767994599993],[176.1691186860002,-37.6249325499999],[176.13331139400023,-37.602634372999916],[176.12134850400022,-37.59775155999985],[176.10596764400034,-37.59661223799982],[176.09099368600022,-37.59856536299986],[176.07569420700028,-37.59644947699985],[176.05925540500027,-37.58407968499991],[176.0695093110003,-37.579522393999866],[176.10084069100003,-37.57040780999988],[176.06592858200023,-37.55087655999989],[176.04916425900038,-37.53850676899995],[176.03541100400028,-37.52564869599992],[176.01587975400022,-37.515883070999806],[175.9899194670003,-37.51482512799984],[175.94312584700018,-37.5219052059999],[175.94922936300034,-37.527927341999984],[175.95834394600016,-37.5389950499999],[175.96306399800025,-37.54306406],[175.95948326900034,-37.54876067499988],[175.9565535820003,-37.55584075299994],[175.95525149800025,-37.56324635199984],[175.95679772200026,-37.57040780999988],[175.9633895190003,-37.577813408999944],[175.96941165500007,-37.578871351999815],[175.97445722700033,-37.57740650799994],[175.97730553500045,-37.57724374799997],[175.9825952480003,-37.580498955999836],[175.99317467500035,-37.58220794099985],[175.9972436860003,-37.58407968499991],[175.99903405000052,-37.589532158999944],[175.9965926440003,-37.59563567499983],[175.99252363400043,-37.601006768999895],[175.99097741000017,-37.60442473799989],[175.99561608200048,-37.62688567499981],[175.9972436860003,-37.63176848799987],[176.00228925900026,-37.636488539999874],[176.0074975920002,-37.63860442499998],[176.0250757170002,-37.63925546699993],[176.03296959700018,-37.63697682099996],[176.03834069100034,-37.63201262799982],[176.04216556100025,-37.62704843499978],[176.0456649099999,-37.6249325499999],[176.06332441500015,-37.63201262799982],[176.07162519600013,-37.64413827899999],[176.0774031910003,-37.658623955999936],[176.08716881600031,-37.67343515399992],[176.10271243600027,-37.66472747199985],[176.11264082100016,-37.670586846999974],[176.1211043630003,-37.6813290339999],[176.13135826899997,-37.68710702899996],[176.14568118600016,-37.68181731599989],[176.15072675900015,-37.671482028999975],[176.15739993600047,-37.66334400799986],[176.17652428500014,-37.66594817499987],[176.18995201900023,-37.67278411299996],[176.1955672540004,-37.68173593499991],[176.19678795700028,-37.69402434699987],[176.19646243600025,-37.71087004999987],[176.20150800900015,-37.71990325299996],[176.2141219410004,-37.719496351999965],[176.22999108200028,-37.715752862999935],[176.24488366000023,-37.71428801899988],[176.23121178500028,-37.66594817499987],[176.2087508470003,-37.63616301899995],[176.2034611340002,-37.62200286299975],[176.21680748800011,-37.6182593729999],[176.23633873800023,-37.63176848799987],[176.27173912900028,-37.68254973799992],[176.29607181100008,-37.69394296699988],[176.32341556099993,-37.69931405999985],[176.38379967500035,-37.72275156],[176.4127710300002,-37.728122653999876],[176.42416425900004,-37.73219166499993],[176.44825280000035,-37.75107187299996],[176.4606225920003,-37.755303643999966],[176.49057050900026,-37.755303643999966],[176.49537194100017,-37.75937265399985],[176.49976647200023,-37.76580169099995],[176.50660241000006,-37.768812757999946],[176.5185653000003,-37.7621395809999],[176.71827233200028,-37.877699476999865],[176.7587996750004,-37.893161716999884],[176.8219507170002,-37.90146249799977],[176.88217207100004,-37.91985442499981],[176.95020592500026,-37.9276669249999],[177.0048934250002,-37.955336195999806],[177.09791100400022,-37.965264580999985],[177.13550866000026,-37.98186614399994],[177.07691491000028,-37.98186614399994],[177.06592858200023,-37.98455169099984],[177.07195071700028,-37.99089934699987],[177.11817467500023,-38.01685963299994],[177.13103274800034,-38.02166106599985],[177.1455184250003,-38.0235328099999],[177.15837649800025,-38.01824309699983],[177.1608179050002,-38.00611744599985],[177.15650475400005,-37.99228280999985],[177.14918053500043,-37.98186614399994],[177.1660262380002,-37.97844817499994],[177.17579186300028,-37.98308684699995],[177.1840926440003,-37.99041106599988],[177.19703209700018,-37.99553801899998],[177.26246178500023,-37.99553801899998],[177.26490319100026,-37.99765390399999],[177.27588951900012,-38.01262786299975],[177.28174889400026,-38.015883070999784],[177.28638756600023,-38.014336846999754],[177.2907820970003,-38.01091887799993],[177.2966414720002,-38.00920989399992],[177.30062910200027,-38.00603606599986],[177.29997806099993,-37.99895598799981],[177.30005944099995,-37.99187590899984],[177.30681399800042,-37.988702080999865],[177.3180444670002,-37.987969658999845],[177.34791100400017,-37.98186614399994],[177.4375106130001,-37.976739190999936],[177.4614363940003,-37.9647762999999],[177.4795028000003,-37.951918226999794],[177.5568139980002,-37.91383228999989],[177.58741295700023,-37.893161716999884],[177.59782962300025,-37.88241952899996],[177.60181725400022,-37.87330494599988],[177.6017358730003,-37.847832940999965],[177.61841881600017,-37.82341887799983],[177.62159264400023,-37.813653252999885],[177.62761478000021,-37.80754973799989],[177.6692814460002,-37.78948333099996],[177.68474368600016,-37.77190520599976],[177.69613691500024,-37.735284112999906],[177.70753014400034,-37.71770598799998],[177.72266686300034,-37.70387135199988],[177.72885175900032,-37.695000908999845],[177.7314559250003,-37.68328215899986],[177.7387801440003,-37.67620208099997],[177.83838951900034,-37.65341562299996],[177.85865319100006,-37.652276299999926],[177.87663821700028,-37.64788176899985],[177.88990319100023,-37.63681405999991],[177.91358483200023,-37.6078427059999],[177.92896569100017,-37.601250908999845],[177.97339928500028,-37.59742603999983],[177.99203535200027,-37.590915622999916],[178.00521894600004,-37.579522393999866],[178.00863691500015,-37.56975676899992],[178.00391686300023,-37.55877044099995],[177.99203535200027,-37.54306406],[178.03150475400014,-37.54957447699981],[178.2776798840002,-37.55925872199994],[178.30103600400017,-37.56503671699991],[178.313487175,-37.57333749799998],[178.2999780610003,-37.58407968499991],[178.2999780610003,-37.590915622999916],[178.3121850920002,-37.595472914999874],[178.33057701900023,-37.61109791499985],[178.3414819670003,-37.6182593729999],[178.3580835300002,-37.623223565999936],[178.37501061300034,-37.6251766909998],[178.41016686300023,-37.6249325499999],[178.4225366550002,-37.62810637799983],[178.44174238400038,-37.64226653399976],[178.4548445970003,-37.64544036299982],[178.4856063160003,-37.64495208099983],[178.4980574880004,-37.646905205999865],[178.5128686860002,-37.652276299999926],[178.52881920700034,-37.662367445999806],[178.55054772200023,-37.68059661299988],[178.56617272200023,-37.70086028399989],[178.56430097700016,-37.71770598799998],[178.55591881600023,-37.72673919099989],[178.53695722700024,-37.75188567499997],[178.4992781910002,-37.78329843499991],[178.4790145190003,-37.82976653399986],[178.4651798840002,-37.85442473799985],[178.4292098320001,-37.874444268999824],[178.41480553500017,-37.896416924999926],[178.3867293630002,-37.95916106599991],[178.37574303500023,-37.97503020599984],[178.35914147199992,-37.9919572899999],[178.3515731130004,-38.00172291499986],[178.34831790500033,-38.01262786299975],[178.35580488399992,-38.03606536299982],[178.37061608200028,-38.05689869599989],[178.38111412900014,-38.07870859199993],[178.37574303500023,-38.104750257999825],[178.3595483730003,-38.11809661299983],[178.33936608200048,-38.130140882999925],[178.32960045700025,-38.145928643999966],[178.35466556100047,-38.18808359199993],[178.3512475920002,-38.20810312299999],[178.33936608200048,-38.227797132999925],[178.32406660200024,-38.24504973799985],[178.3185327480003,-38.26572030999986],[178.33236738400015,-38.28557708099987],[178.35173587300034,-38.302992445999934],[178.36207116000006,-38.31650155999991],[178.35889733199997,-38.32773202899998],[178.35010826900012,-38.33733489399998],[178.33399498800034,-38.35125090899987],[178.32960045700025,-38.36394622199984],[178.32715905000035,-38.38591887799994],[178.3204858730002,-38.39902109199991],[178.33277428500017,-38.40243905999992],[178.3429468110002,-38.409600518999866],[178.3488875660003,-38.420179945999735],[178.34831790500033,-38.434340101999936],[178.34131920700034,-38.442640882999825],[178.30372155000035,-38.45826588299981],[178.29932701900026,-38.46697356599998],[178.30014082100027,-38.531670830999914],[178.29460696700016,-38.53980885199984],[178.1818139980002,-38.63836028399982],[178.0798445970003,-38.709079684999864],[178.06226647200023,-38.71648528399975],[178.02279707100024,-38.687758070999806],[177.9973250660003,-38.683282158999916],[177.97217858200028,-38.68840911299985],[177.95118248800034,-38.700616143999824],[177.94239342500026,-38.703871351999865],[177.93620853000021,-38.701755466999856],[177.93238366000028,-38.702406507999804],[177.93132571700022,-38.71428801899994],[177.93165123800026,-38.71949635199985],[177.93474368599996,-38.73007577899998],[177.93685957100016,-38.734795830999815],[177.95541425900026,-38.750258070999834],[177.96404056100044,-38.761407158999944],[177.96168053500023,-38.772881768999895],[177.94410241000017,-38.797784112999835],[177.93775475400005,-38.820082289999874],[177.93685957100016,-38.8726539039999],[177.92611738400015,-38.93124765399985],[177.9124455090002,-38.96070728999983],[177.9098413420003,-38.999932549999855],[177.9026798840002,-39.016534112999906],[177.91138756600017,-39.03630950299992],[177.90333092500052,-39.050876559999864],[177.89014733200028,-39.065524997999866],[177.88282311300028,-39.08554452899993],[177.95191491000017,-39.091403903999954],[177.98487389400034,-39.104587497999916],[177.99887128999993,-39.12981536299989],[177.94434655000012,-39.17351653399996],[177.92066491000023,-39.223890882999825],[177.91195722700013,-39.25595468499998],[177.89958743600027,-39.26726653399997],[177.88379967500023,-39.27727629999987],[177.86850019600027,-39.29021575299987],[177.8411564460002,-39.22893645599986],[177.83366946700025,-39.196872653999876],[177.83448326900023,-39.16741301899998],[177.83961022200018,-39.150974216999984],[177.8473413420002,-39.134698174999954],[177.85621178500023,-39.120212498],[177.8654077480002,-39.10906340899997],[177.86622155000023,-39.0973446589999],[177.8520613940003,-39.08928801899995],[177.83326256600023,-39.090427341999984],[177.82016035200027,-39.105889580999914],[177.8095809250002,-39.10198333099993],[177.77914472700027,-39.08554452899993],[177.76392662900014,-39.080987237999885],[177.60596764400023,-39.07529062299999],[177.4440210300003,-39.07187265399998],[177.4316512380003,-39.06804778399989],[177.42261803500017,-39.061293226999844],[177.41325931100027,-39.05901458099996],[177.3873804050003,-39.077406507999825],[177.2021590500003,-39.14812590899986],[177.06495201900032,-39.19939544099998],[177.05290774800022,-39.211521091999884],[177.04867597700033,-39.23357512799997],[177.03809655000023,-39.25554778399997],[177.0245874360002,-39.27516041499986],[177.0002547540002,-39.30087656],[176.96420332100027,-39.33123137799997],[176.94092858200034,-39.345472914999874],[176.93751061300023,-39.348728122999916],[176.9264429050002,-39.37623463299987],[176.91391035200022,-39.388929945999834],[176.9069116550003,-39.40032317499996],[176.90357506600014,-39.41334400799997],[176.90284264400032,-39.430840752999906],[176.90626061300028,-39.44752369599995],[176.91488691500027,-39.456475518999895],[176.9261173840002,-39.46355559699994],[176.93751061300023,-39.47470468499988],[176.9446720710002,-39.49504973799995],[176.95053144600016,-39.58814869599992],[176.95371183738806,-39.607512756857005],[176.96070397200018,-39.62444426899991],[176.9671330090002,-39.62420012799997],[176.97315514400026,-39.629978122999844],[176.98959394600027,-39.6366512999999],[177.01547285200027,-39.652032158999845],[177.0226343110003,-39.657403252999984],[177.03565514400023,-39.66383228999982],[177.05307050900026,-39.664239190999815],[177.0871688160003,-39.66082122199981],[177.11890709700046,-39.667250257999825],[177.11524498800023,-39.680922132999854],[177.0976668630003,-39.70077890399986],[177.0871688160003,-39.72535572699995],[177.08253014400034,-39.73308684699988],[177.07178795700034,-39.74081796699996],[177.0593367850004,-39.74667734199984],[177.03638756600046,-39.75359465899993],[177.02857506600006,-39.76474374799986],[177.0058699880005,-39.83147551899991],[177.0058699880005,-39.83521900799993],[177.00709069099995,-39.84002044099984],[177.00766035200024,-39.84587981599988],[177.0058699880005,-39.852634373],[177.00196373800023,-39.85475025799974],[176.9865014980002,-39.85979583099986],[176.98121178500034,-39.862562757999825],[176.96778405000012,-39.88201262799991],[176.93458092500046,-39.970147393999824],[176.91309655000035,-40.010674737999935],[176.89942467500023,-40.027439059999864],[176.89503014400034,-40.03671640399999],[176.89421634199996,-40.04989999799977],[176.89600670700023,-40.07512786299991],[176.89535566500018,-40.08180103999979],[176.89340254000015,-40.086521091999884],[176.88054446700025,-40.10173919099986],[176.8776147800002,-40.10637786299989],[176.86182701900034,-40.14072030999985],[176.83725019600016,-40.177911065999744],[176.7970483730003,-40.222832940999936],[176.75342858200034,-40.25383879999986],[176.74512780000023,-40.25676848799998],[176.73552493600005,-40.25310637799984],[176.72706139400023,-40.24529387799976],[176.71794681100025,-40.24081796699997],[176.70704186300034,-40.24675872199981],[176.6818139980003,-40.27459075299995],[176.67302493600036,-40.2911923159999],[176.66944420700028,-40.31129322699994],[176.67603600400042,-40.302504164999895],[176.68409264400034,-40.295668226999794],[176.69312584700015,-40.29143645599996],[176.7036238940003,-40.29021575299994],[176.63941491000034,-40.390883070999934],[176.62842858200025,-40.46209075299987],[176.61133873800023,-40.484551690999965],[176.58692467500032,-40.48577239399998],[176.56185957100016,-40.481215101999844],[176.54249108200034,-40.48601653399993],[176.48438561300026,-40.5583635399998],[176.42481530000032,-40.60393645599976],[176.4161889980002,-40.616631768999895],[176.41456139400034,-40.626722914999874],[176.4104110040003,-40.63836028399996],[176.40503991000017,-40.64934661299975],[176.38510175900026,-40.67815520599987],[176.37826582100027,-40.68173593499993],[176.36207116000028,-40.683363539999945],[176.3547469410003,-40.687432549999826],[176.34799238400015,-40.69654713299991],[176.30974368600025,-40.77141692499988],[176.28663170700028,-40.800225518999824],[176.25171959700018,-40.86679452899999],[176.23560631600017,-40.91399504999996],[176.2203882170002,-40.93328215899983],[176.17090905000035,-40.94890715899981],[176.14975019600004,-40.96705494599982],[176.13249759200025,-40.989922783999916],[176.12134850400022,-41.01083749799996],[176.08936608200023,-41.101983330999886],[176.06812584700023,-41.13982512799991],[175.96680748800034,-41.24700286299991],[175.81421959700018,-41.341892184999864],[175.7773543630001,-41.37151458099981],[175.7272241550003,-41.39885833099987],[175.66871178500028,-41.42164478999982],[175.44841556100022,-41.55185312299987],[175.3798934250003,-41.5724423159998],[175.36345462300028,-41.58163827899996],[175.33033287900017,-41.60979583099986],[175.3141382170003,-41.614841403999975],[175.23747806100042,-41.62029387799984],[175.22169030000023,-41.61370208099994],[175.21241295700028,-41.58245208099997],[175.19654381600023,-41.57252369599979],[175.20191491000023,-41.55754973799985],[175.19727623800028,-41.54656340899989],[175.1887313160004,-41.536390882999854],[175.1821395190003,-41.524102471999896],[175.18132571700025,-41.51002369599984],[175.19743899800025,-41.43564218499978],[175.19271894600016,-41.42489999799986],[175.18181399800025,-41.417901299999954],[175.0622664720003,-41.38307057099992],[175.03516686300028,-41.380791924999855],[175.00953209700023,-41.38567473799983],[174.98658287899994,-41.397881768999895],[174.93751061300028,-41.4380835919999],[174.9279077480002,-41.44361744599981],[174.9171655610002,-41.4450009089999],[174.90113366000023,-41.44215260199986],[174.8790796230002,-41.429864190999886],[174.86557050900015,-41.419528903999975],[174.86353600400028,-41.411228122999916],[174.8766382170002,-41.39218515399992],[174.8747664720003,-41.37566497199985],[174.86817467500012,-41.35735442499988],[174.8668725920003,-41.33294036299975],[174.87452233200034,-41.31178150799984],[174.89649498800028,-41.27255624799999],[174.90113366000023,-41.24700286299991],[174.88965905000023,-41.224541924999826],[174.86329186300028,-41.21868254999997],[174.8337508470003,-41.222588799999954],[174.812998894,-41.22991301899988],[174.79721113400026,-41.239434502999956],[174.78541100400017,-41.24944426899995],[174.7770288420003,-41.26165129999984],[174.77133222700016,-41.2777645809999],[174.8181258470003,-41.28671640399992],[174.83228600400014,-41.296482028999876],[174.8259383470003,-41.31943124799977],[174.81934655000012,-41.32732512799984],[174.81006920700034,-41.33375416499993],[174.7993270190003,-41.33554452899991],[174.78809655000035,-41.329278252999885],[174.77759850400022,-41.326348565999865],[174.76612389400023,-41.33294036299975],[174.75375410200033,-41.34197356599985],[174.74057050900026,-41.346612237999864],[174.69483483200034,-41.339532158999816],[174.64600670700034,-41.32040780999992],[174.60938561300023,-41.29192473799983],[174.5999455090002,-41.25725676899985],[174.61150149800025,-41.23739999799993],[174.62973066499993,-41.22991301899988],[174.6751408210002,-41.22307708099994],[174.69166100400028,-41.212009372999916],[174.73023522200018,-41.176202080999815],[174.7555444670002,-41.15878671699984],[174.78003991000023,-41.116143487999906],[174.7952580090002,-41.10637786299995],[174.8169051440003,-41.09921640399992],[174.8299259770002,-41.08757903399991],[174.84009850399994,-41.08717213299991],[174.85328209700018,-41.11321379999988],[174.86597741000014,-41.10418059699997],[174.8712671230002,-41.09531015399983],[174.87086022200023,-41.0850562479999],[174.8668725920003,-41.07170989399998],[174.8615014980002,-41.06902434699991],[174.84945722700027,-41.056898695999735],[174.84197024800028,-41.04371510199995],[174.84986412900017,-41.0375302059999],[174.86133873800023,-41.03329843499988],[174.87891686300023,-41.015069268999895],[174.89087975400017,-41.01083749799996],[174.90235436300023,-41.008070570999735],[174.91504967500026,-41.00123463299981],[174.9266056650002,-40.99212004999989],[174.9352319670002,-40.98300546699991],[174.9427189460002,-40.97063567499988],[174.94556725400034,-40.96070728999978],[174.94890384200036,-40.93572356599986],[174.9699813160003,-40.89006926899992],[174.97917728000036,-40.874932549999926],[175.0382593110002,-40.82586028399989],[175.09424889400046,-40.75432708099984],[175.1412866550003,-40.67441171699984],[175.16846764400034,-40.60621510199982],[175.1790470710002,-40.58904387799997],[175.18751061300023,-40.56878020599997],[175.1911727220003,-40.51238372199984],[175.19654381600023,-40.48943450299975],[175.19703209700023,-40.484307549999926],[175.19613691500044,-40.477715752999856],[175.19629967500038,-40.47193775799988],[175.19955488400015,-40.46949635199995],[175.20687910200004,-40.46941497199997],[175.21631920700034,-40.46819426899995],[175.22266686300028,-40.46502044099989],[175.21631920700034,-40.44947682099989],[175.21314537900028,-40.4342587219999],[175.21208743600025,-40.41936614399995],[175.21363366000028,-40.41090260199982],[175.22234134200042,-40.393324476999794],[175.23487389400034,-40.33603280999985],[175.2387801440003,-40.29631926899984],[175.23714468281335,-40.28591517352349],[175.23129316500024,-40.277276299999755],[175.2155867849999,-40.2536760399999],[175.20264733200023,-40.188409112999906],[175.1837671230003,-40.13445403399997],[175.1706649100002,-40.10800546699991],[175.1549585300004,-40.08538176899985],[175.07886803500017,-40.02459075299983],[175.05876712300022,-39.99667734199997],[174.9672957690004,-39.91643645599994],[174.89747155000023,-39.882582289999874],[174.84197024800028,-39.86248137799984],[174.81609134200008,-39.85881926899988],[174.7723087900002,-39.85914478999982],[174.73503665500036,-39.859470309999836],[174.65455162900017,-39.83635833099997],[174.59327233200023,-39.83147551899991],[174.56763756600017,-39.8267554669999],[174.54371178500023,-39.81462981599991],[174.43726647200018,-39.736911716999984],[174.41814212300048,-39.718519789999945],[174.3598738940003,-39.64714934699987],[174.3190210300003,-39.61386484199987],[174.26905358200025,-39.59189218499995],[174.21509850400014,-39.57854583099976],[174.04460696700028,-39.55754973799989],[173.98658287900017,-39.54225025799994],[173.8512475920002,-39.46396249799977],[173.81470787899994,-39.433363539999846],[173.78443444099995,-39.393243096999925],[173.76531009200022,-39.34693775799994],[173.7592879570003,-39.30136484199997],[173.76441491000026,-39.25546640399999],[173.77759850400022,-39.20769622199987],[173.8071395190003,-39.163018487999906],[173.85271243600025,-39.134454033999916],[173.95573978000016,-39.09840260199986],[174.21159915500004,-38.973321221999896],[174.2335718110002,-38.968194268999895],[174.36670983200028,-38.97568124799977],[174.4150496750004,-38.96306731599987],[174.45899498800011,-38.937269789999945],[174.57886803500028,-38.83945077899988],[174.59400475400028,-38.81861744599982],[174.60222415500007,-38.781996351999794],[174.61150149800025,-38.75839609199994],[174.61361738400012,-38.74529387799997],[174.61353600400017,-38.71453215899999],[174.61760501400002,-38.70737070099986],[174.61947675900026,-38.70403411299983],[174.63477623800023,-38.700616143999824],[174.6281844410003,-38.68287525799974],[174.6311141290002,-38.66773853999983],[174.63746178500034,-38.652927341999856],[174.64087975400022,-38.63543059699981],[174.64356530000023,-38.46282317499985],[174.65186608200028,-38.42546965899997],[174.68702233200034,-38.36223723799983],[174.69971764400023,-38.327080987999864],[174.70736738400026,-38.28850676899998],[174.71241295700034,-38.22966887799981],[174.7223413420002,-38.19402434699994],[174.72348066500018,-38.173028252999906],[174.71851647200006,-38.15504322699988],[174.71013431100027,-38.13689544099988],[174.70508873800034,-38.11972421699985],[174.70980879000024,-38.104750257999825],[174.72559655000023,-38.111504815999936],[174.7443139980003,-38.11288827899992],[174.76295006600017,-38.11003997199998],[174.77881920700023,-38.104750257999825],[174.7801212900002,-38.11598072699982],[174.7853296230003,-38.125583591999984],[174.7922469410003,-38.13323333099982],[174.79859459700023,-38.138929945999905],[174.8048608730002,-38.138929945999905],[174.8048608730002,-38.124688408999894],[174.82016035200016,-38.13372161299982],[174.8325301440003,-38.14666106599982],[174.8466903,-38.15374114399988],[174.8668725920003,-38.14568450299975],[174.85938561300034,-38.141371351999936],[174.83904056100047,-38.124688408999894],[174.86540774800042,-38.116875908999816],[174.89633222700022,-38.12004973799988],[174.9244897800002,-38.118422132999854],[174.94263756600023,-38.097344658999916],[174.92383873800034,-38.09726327899993],[174.9160262380003,-38.09929778399995],[174.90845787900022,-38.104750257999825],[174.90113366000023,-38.097344658999916],[174.90398196700022,-38.07756926899989],[174.8839624360002,-38.062676690999936],[174.8559676440002,-38.05575937299986],[174.83578535200016,-38.06015390399993],[174.8283797540004,-38.07154713299981],[174.82447350400017,-38.08147551899981],[174.81788170700034,-38.088474216999884],[174.8017684250003,-38.09107838299988],[174.79200280000023,-38.08473072699985],[174.7907820970002,-38.0702450499999],[174.79411868600016,-38.05413176899984],[174.79859459700023,-38.04322682099994],[174.8076278000002,-38.032810153999776],[174.81625410200002,-38.02939218499995],[174.82618248800034,-38.02809010199995],[174.83904056100047,-38.0235328099999],[174.87037194100023,-37.99553801899998],[174.8868921230002,-37.98626067499984],[174.8880314460004,-37.966892185],[174.8761499360002,-37.94980234199995],[174.85328209700018,-37.94784921699991],[174.8367619150002,-37.965020440999936],[174.82813561299997,-37.98853932099982],[174.8156844410003,-38.00115325299997],[174.78809655000035,-37.985284112999864],[174.78443444100026,-37.966892185],[174.79184004000027,-37.87200286299988],[174.81885826900034,-37.82488372199988],[174.8662215500003,-37.81113046699987],[174.9228621750003,-37.810723565999865],[174.97681725400025,-37.80380624799977],[174.9729923840002,-37.79517994599986],[174.96680748800023,-37.78899504999997],[174.95875084700018,-37.78492603999992],[174.94890384200036,-37.78329843499991],[174.96273847700004,-37.77499765399983],[174.97348066500015,-37.76360442499987],[174.9770613940002,-37.749932549999926],[174.9699813160003,-37.73479583099993],[174.9283960300003,-37.755303643999966],[174.92359459700026,-37.759860934999836],[174.91976972700022,-37.7711727839999],[174.91480553500017,-37.77581145599984],[174.9108179050004,-37.774834893999866],[174.90495853000027,-37.77166106599981],[174.8979598320003,-37.769707940999936],[174.86744225400022,-37.780857028999876],[174.85035241000014,-37.76490650799987],[174.78638756600017,-37.56853606599991],[174.7285262380003,-37.457777601999936],[174.71778405000023,-37.411879164999945],[174.7179468110003,-37.40113697699985],[174.72689863400015,-37.38909270599984],[174.7382918630004,-37.38355885199982],[174.76758873800046,-37.37761809699998],[174.77881920700023,-37.37175872199985],[174.7897241550003,-37.352959893999895],[174.79851321700025,-37.33017343499996],[174.8116968110002,-37.31080494599995],[174.83578535200016,-37.30282968499998],[174.8379012380002,-37.299004815999965],[174.8330184250003,-37.29168059699988],[174.82260175900026,-37.2876929669999],[174.80884850400017,-37.29322682099992],[174.79908287900034,-37.29989999799996],[174.7795516290004,-37.30982838299988],[174.77133222700016,-37.316501559999914],[174.7426863940003,-37.357354424999876],[174.7285262380003,-37.36296965899997],[174.70639082100016,-37.347832940999965],[174.69166100400028,-37.32935963299995],[174.65121504000004,-37.252618096999825],[174.64087975400022,-37.220879815999865],[174.61744225400003,-37.18499114399995],[174.61361738400012,-37.1762020809999],[174.60767662900022,-37.15488046699984],[174.56527754000012,-37.09050872199984],[174.55827884200036,-37.06275807099986],[174.57471764400032,-37.061455987999864],[174.6027938160004,-37.066827080999914],[174.6427514980002,-37.05706145599996],[174.65739993600016,-37.06113046699984],[174.6673283210002,-37.069512627999984],[174.6652124360002,-37.08001067499987],[174.65560957100016,-37.090915622999844],[174.6539819670003,-37.09685637799987],[174.7042749360002,-37.17603932099985],[174.70826256600023,-37.20826588299988],[174.72266686300023,-37.23333098799996],[174.74000084700018,-37.24439869599992],[174.75074303500028,-37.220879815999865],[174.73845462300037,-37.19508228999993],[174.73585045700034,-37.179457289999945],[174.74732506600023,-37.17253997199985],[174.7770288420003,-37.177015882999825],[174.79004967500023,-37.17587655999988],[174.8048608730002,-37.166273695999884],[174.7848413420003,-37.166924737999935],[174.73454837300022,-37.1593563779999],[174.71664472700022,-37.15260182099995],[174.73161868600025,-37.14674244599991],[174.78589928500017,-37.10865650799984],[174.79273522200026,-37.11101653399989],[174.79184004000027,-37.132745049999954],[174.8332625660003,-37.092705987999835],[174.8559676440002,-37.078301690999865],[174.88054446700042,-37.07634856599982],[174.91863040500024,-37.11174895599983],[174.9318139980003,-37.117852471999896],[174.9458113940003,-37.11305103999992],[174.9484155610002,-37.10173919099975],[174.94361412900028,-37.08806731599981],[174.9352319670002,-37.07634856599982],[174.93702233200028,-37.065524997999916],[174.88599694100023,-37.04908619599992],[174.8668725920003,-37.035902601999965],[174.85132897200035,-37.040459893999824],[174.84197024800028,-37.027601820999806],[174.83497155000046,-37.008477471999825],[174.8259383470003,-36.99374765399983],[174.80030358200034,-37.018324476999936],[174.7858179050002,-37.008477471999825],[174.78386478000036,-36.986260674999954],[174.7952580090002,-36.97380950299975],[174.80681399800025,-36.97112395599996],[174.8190210300002,-36.963799737999864],[174.82878665500024,-36.95378997199997],[174.83277428500034,-36.942803643999824],[174.76832116000017,-36.93352629999987],[174.70069420700028,-36.93629322699992],[174.6673283210002,-36.94410572699982],[174.64087975400022,-36.9602190079998],[174.6323348320002,-36.97258879999991],[174.62614993600025,-36.99675872199984],[174.62110436300046,-37.00798919099984],[174.61150149800025,-37.018324476999936],[174.60328209700023,-37.01873137799994],[174.5796004570005,-37.001153252999906],[174.56560306099996,-37.01873137799994],[174.54411868600025,-37.03411223799998],[174.52051842500035,-37.040704033999944],[174.50033613400015,-37.032159112999935],[174.4889429050003,-37.014580987999906],[174.44841556100047,-36.90048593499991],[174.42644290500016,-36.8063290339999],[174.40756269600038,-36.76148853999979],[174.35572350400022,-36.68531666499982],[174.2179468110002,-36.54509856599995],[174.18848717500023,-36.49911874799999],[174.1823022800002,-36.45322031],[174.18506920700023,-36.441664320999806],[174.18921959700046,-36.43271249799996],[174.19695071700042,-36.42701588299988],[174.20972741000023,-36.42587655999985],[174.19874108200034,-36.4530575499999],[174.19752037900017,-36.46672942499998],[174.2028100920002,-36.48105234199997],[174.21900475400028,-36.45435963299994],[174.22868899800022,-36.4437802059999],[174.24317467500032,-36.43954843499996],[174.25717207100016,-36.44695403399987],[174.2721460300002,-36.47975025799988],[174.29216556100025,-36.49488697699988],[174.3147892590002,-36.52800872199991],[174.3291121750003,-36.53573984199983],[174.34587649800028,-36.53948333099986],[174.3556421230003,-36.5487606749999],[174.3546655610002,-36.55999114399991],[174.3393660820002,-36.56975676899985],[174.37973066500015,-36.58196379999991],[174.39047285200022,-36.583428643999966],[174.39161217500023,-36.58570728999986],[174.38160241000023,-36.59091562299986],[174.36670983200028,-36.59563567499995],[174.35303795700034,-36.59710051899991],[174.3624780610002,-36.603204033999816],[174.36638431100025,-36.61126067499994],[174.36524498800023,-36.620782158999845],[174.3598738940003,-36.63128020599989],[174.37183678500023,-36.63209400799974],[174.3811955090004,-36.634698174999826],[174.40137780000023,-36.64560312299999],[174.40088951900026,-36.63860442499982],[174.4018660820003,-36.624444268999895],[174.40137780000023,-36.61760833099996],[174.4113061860002,-36.63152434699994],[174.42139733200023,-36.654392184999864],[174.4314070970002,-36.665622653999776],[174.44174238400015,-36.64560312299999],[174.45240319100017,-36.64641692499989],[174.45655358200025,-36.635186455999815],[174.45850670700034,-36.61882903399997],[174.4629012380002,-36.60393645599984],[174.46941165500024,-36.597263278999975],[174.48536217500052,-36.58611419099986],[174.4907332690003,-36.57659270599987],[174.4751082690003,-36.581149998],[174.46973717500035,-36.583428643999966],[174.4611108730003,-36.563897393999895],[174.47055097700016,-36.51921965899976],[174.4629012380002,-36.5077450499999],[174.4539494150002,-36.52271900799984],[174.4498804050003,-36.515313408999944],[174.4497176440003,-36.46314869599992],[174.44922936300026,-36.45989348799988],[174.45297285199993,-36.454766533999944],[174.46973717500035,-36.43954843499996],[174.46192467500035,-36.428643487999906],[174.4498804050003,-36.41773853999992],[174.44141686300028,-36.406508070999834],[174.44556725400022,-36.39511484199986],[174.46762129000015,-36.37900155999989],[174.4659936860003,-36.37322356599984],[174.43458092500026,-36.357354424999805],[174.4279077480003,-36.35784270599997],[174.4113061860002,-36.37493254999984],[174.39893639400023,-36.38445403399993],[174.3899845710002,-36.388929945999806],[174.3312280610002,-36.39251067499987],[174.2995711600002,-36.38665129999991],[174.27759850400028,-36.36972421699992],[174.27100670700034,-36.337660414999945],[174.28467858200025,-36.34392669099982],[174.2923283210002,-36.320000908999944],[174.3032332690003,-36.317640882999896],[174.31690514400023,-36.325127862999864],[174.33253014400037,-36.33025481599988],[174.37501061300028,-36.327813408999845],[174.3951929050002,-36.322686455999914],[174.4113061860002,-36.31316497199984],[174.4272567070003,-36.30006275799987],[174.43995201900023,-36.29322682099985],[174.46973717500035,-36.28240325299985],[174.49691816500024,-36.26189544099989],[174.50684655000023,-36.258396091999984],[174.51531009200028,-36.25798919099981],[174.52149498800028,-36.254489842],[174.52491295700034,-36.24146900799974],[174.51905358200023,-36.23691171699997],[174.5166121750003,-36.23601653399989],[174.5149031910003,-36.23430754999988],[174.5112410820002,-36.2277971329998],[174.5006616550002,-36.23674895599991],[174.4876408210002,-36.242933851999794],[174.4736434250002,-36.24651458099986],[174.46973717500035,-36.24684010199988],[174.45948326900046,-36.24765390399988],[174.4497176440003,-36.25156015399989],[174.42603600400017,-36.26978932099996],[174.4150496750004,-36.27556731599984],[174.407237175,-36.263929945999834],[174.39087975400028,-36.2726376279999],[174.37126712300028,-36.28785572699987],[174.35303795700034,-36.296075127999885],[174.32781009200008,-36.29216887799997],[174.3134871750003,-36.287774346999896],[174.30518639400051,-36.28240325299985],[174.3001408210002,-36.26458098799988],[174.31006920700025,-36.26051197699982],[174.3393660820002,-36.26816171699994],[174.35613040500024,-36.2808570289999],[174.36353600400022,-36.28191497199987],[174.3689070970003,-36.256524346999754],[174.3842879570005,-36.22437916499979],[174.40756269600038,-36.19988372199985],[174.4137475920002,-36.18889739399998],[174.41570071700025,-36.18173593499985],[174.41684004000027,-36.17302825299995],[174.42139733200023,-36.15829843499996],[174.43799889400032,-36.16480885199986],[174.45045006600026,-36.16326262799983],[174.4534611340002,-36.15422942499991],[174.44174238400015,-36.13836028399989],[174.4318139980002,-36.13298919099984],[174.39389082100027,-36.124200127999956],[174.39877363400026,-36.154880466999956],[174.38550865999994,-36.188734632999925],[174.36117597700027,-36.216241143999866],[174.33253014400037,-36.2277971329998],[174.3479110040002,-36.211195570999834],[174.35303795700034,-36.20728932099992],[174.3418074880002,-36.20403411299998],[174.33073978000016,-36.205661717],[174.32227623800034,-36.20525481599989],[174.3188582690002,-36.19646575299984],[174.31617272200018,-36.18075937299987],[174.30974368600042,-36.17782968499993],[174.30111738400026,-36.179945570999855],[174.29216556100025,-36.17937590899997],[174.28126061300034,-36.17603932099995],[174.27491295700023,-36.17636484199997],[174.27182050900015,-36.17294687299997],[174.27100670700034,-36.158868096999754],[174.2721460300002,-36.147719007999825],[174.27564537900005,-36.13738372199991],[174.28467858200025,-36.11793385199982],[174.26880944100023,-36.11874765399992],[174.2579858730003,-36.12517669099975],[174.23698978000027,-36.14519622199981],[174.2412215500005,-36.117445570999834],[174.22608483200023,-36.11687590899986],[174.1823022800002,-36.14519622199981],[174.19288170700023,-36.1534156229999],[174.19288170700023,-36.17506275799988],[174.2063094410003,-36.17937590899997],[174.2243758470003,-36.179457289999874],[174.23707116000028,-36.181247653999854],[174.24691816500032,-36.18718840899989],[174.257334832,-36.19988372199985],[174.25114993600025,-36.214125257999854],[174.25114993600025,-36.223728122999916],[174.26050866000006,-36.2277971329998],[174.26791425900026,-36.22576262799994],[174.27295983200034,-36.22096119599996],[174.28101647200026,-36.21054452899996],[174.2902124360002,-36.210625908999944],[174.30111738400026,-36.219414971999925],[174.3188582690002,-36.24146900799974],[174.2828882170002,-36.249281507999825],[174.27719160200022,-36.25139739399992],[174.27491295700023,-36.26100025799981],[174.26905358200025,-36.26628997199988],[174.26059004000004,-36.268243096999925],[174.25066165500021,-36.26816171699994],[174.24268639400034,-36.26458098799988],[174.22966556100027,-36.25074635199988],[174.21989993600025,-36.24765390399988],[174.20883222699993,-36.246351820999806],[174.20240319100023,-36.24277109199983],[174.1784774100004,-36.214125257999854],[174.1696069670002,-36.19947682099985],[174.15853925900015,-36.185235283999845],[174.14136803499994,-36.17253997199997],[174.12289472700022,-36.16936614399991],[174.07520592500023,-36.16806405999991],[174.06560306100042,-36.16204192499981],[174.05933678500028,-36.152601820999884],[174.04444420700034,-36.139906507999925],[174.0271102220003,-36.129001559999935],[174.0138452480003,-36.124200127999956],[173.99805748799997,-36.11638762799987],[173.99122155000035,-36.09807708099981],[173.9904077480002,-36.05925872199998],[173.98406009200025,-36.044122002999984],[173.95533287900017,-36.01970794099985],[173.94385826900023,-35.98984140399986],[173.93148847700027,-35.97812265399996],[173.90056399799997,-35.95964934699994],[173.93726647200003,-35.93189869599995],[173.9467879570003,-35.91643645599976],[173.94214928500023,-35.89137135199985],[173.93637129000027,-35.88469817499996],[173.92579186300023,-35.87590911299992],[173.91488691500015,-35.86972421699985],[173.90796959700018,-35.87029387799983],[173.9059350920003,-35.88347747199995],[173.9132593110003,-35.89316171699993],[173.92310631600017,-35.90016041499982],[173.92847741000028,-35.90504322699988],[173.92237389400046,-35.92685312299993],[173.88428795700023,-35.943536065999965],[173.8801375660003,-35.95964934699994],[173.93148847700027,-36.0181617169999],[173.93832441500015,-36.0284970029999],[173.95915774800017,-36.038750908999845],[173.96778404999998,-36.0621884089999],[173.9721785820004,-36.0885555969999],[173.97999108200034,-36.107110283999916],[173.98707116000017,-36.1158179669999],[173.99952233200028,-36.13795338299988],[174.00733483200023,-36.148614190999815],[174.01677493600042,-36.15422942499991],[174.02955162900022,-36.158868096999754],[174.04086347700022,-36.165297132999854],[174.04957116000028,-36.18466562299987],[174.05844160200022,-36.19158294099995],[174.06861412900014,-36.19768645599985],[174.0761824880005,-36.20354583099989],[174.13111412900025,-36.27190520599997],[174.1437280610002,-36.277927341999884],[174.15894616000017,-36.27613697699981],[174.17335045700034,-36.2766252579998],[174.1823022800002,-36.28923919099994],[174.16187584700018,-36.29680754999982],[174.17156009200025,-36.308851820999834],[174.1917423840002,-36.32577890399999],[174.2028100920002,-36.34758879999987],[174.19467207100018,-36.368584893999895],[174.1748153000003,-36.38209400799988],[174.12826582100016,-36.39853280999988],[174.07984459700018,-36.399509372999944],[174.05591881600023,-36.364515882999854],[174.02409915500047,-36.26816171699994],[173.89421634200025,-36.124200127999956],[173.85824629000015,-36.06560637799983],[173.63274173250036,-35.81841399549988],[173.40723717500023,-35.57122161299974],[173.4008895190003,-35.55250416499996],[173.40821373800028,-35.536390882999896],[173.4411727220003,-35.500258070999855],[173.4487410820001,-35.48357512799983],[173.4508569670003,-35.46103280999992],[173.45785566499993,-35.437920830999886],[173.4707137380002,-35.42489999799999],[173.4902449880005,-35.43271249799989],[173.49586022200023,-35.42278411299998],[173.49708092500023,-35.4183895809999],[173.5070906910003,-35.42734140399992],[173.51644941500015,-35.43865325299991],[173.52719160200016,-35.44841887799985],[173.54151451900032,-35.452569268999895],[173.5437117850004,-35.44548919099984],[173.5418400400002,-35.410739841999956],[173.54493248800028,-35.39788176899985],[173.57211347700027,-35.43271249799989],[173.57781009200022,-35.41562265399985],[173.57846113400032,-35.39592864399981],[173.58277428500023,-35.377129815999936],[173.6001082690004,-35.363213799999954],[173.60954837300017,-35.36288827899993],[173.6152449880004,-35.36777109199991],[173.62142988400012,-35.37021249799986],[173.6341251960002,-35.363213799999954],[173.6381942070003,-35.356540622999916],[173.64454186300046,-35.33562590899986],[173.66089928500034,-35.3129208309999],[173.6242781910002,-35.32195403399983],[173.61304772200026,-35.31910572699988],[173.61329186300034,-35.30730559699991],[173.6121525400003,-35.29989999799983],[173.607432488,-35.295993747999916],[173.59636478000016,-35.29485442499998],[173.59278405000035,-35.30022551899985],[173.59262129000038,-35.336521091999856],[173.5815535820004,-35.321547132999825],[173.56527754000015,-35.2745093729999],[173.54769941500012,-35.28948333099984],[173.55193118600025,-35.30787525799988],[173.5644637380003,-35.32659270599994],[173.57211347700027,-35.342705987999906],[173.5664168630004,-35.360528252999984],[173.55030358200023,-35.369317315999865],[173.53077233200034,-35.369073174999826],[173.5051375660003,-35.35540129999988],[173.49512780000035,-35.354424737999906],[173.48959394600027,-35.35808684699995],[173.4990340500003,-35.37769947699974],[173.49268639400034,-35.382500908999816],[173.4816186860003,-35.38469817499989],[173.47291100399994,-35.38779062299989],[173.46363366000028,-35.392266533999944],[173.45704186300026,-35.388848565999936],[173.44532311300023,-35.37371184699994],[173.43775475400025,-35.3734677059999],[173.42652428500017,-35.37851327899992],[173.40699303500028,-35.391208591999984],[173.4157820970004,-35.405368747999916],[173.4091903000003,-35.412041924999954],[173.3966577480002,-35.416680596999896],[173.38721764400034,-35.42522551899991],[173.38697350400022,-35.431084893999866],[173.38941491000045,-35.436211846999875],[173.3923445970003,-35.439222914999874],[173.39405358200034,-35.438897393999945],[173.39063561300028,-35.51311614399988],[173.38721764400034,-35.521416924999954],[173.3781030610002,-35.52304452899997],[173.36996504000015,-35.51653411299989],[173.28419029999998,-35.4183895809999],[173.2721460300002,-35.39137135199995],[173.27735436300028,-35.374688408999916],[173.3115340500003,-35.342705987999906],[173.30469811300034,-35.34303150799994],[173.29102623800023,-35.34221770599993],[173.28419029999998,-35.342705987999906],[173.30404707100033,-35.32390715899987],[173.31251061300034,-35.31357187299977],[173.31836998800028,-35.30234140399986],[173.28785241000017,-35.306329033999845],[173.26970462300025,-35.32195403399983],[173.25847415500021,-35.344821872999916],[173.24935957100016,-35.37070077899985],[173.23861738400015,-35.363213799999954],[173.20728600400022,-35.333428643999866],[173.201670769,-35.322849216999906],[173.20980879000018,-35.314629815999815],[173.24512780000023,-35.29314544099998],[173.25684655000012,-35.28134531],[173.24203535200016,-35.27743905999992],[173.2133895190003,-35.29127369599992],[173.1948348320001,-35.29485442499998],[173.177500847,-35.29045989399991],[173.16374759200025,-35.280531507999896],[173.14014733200034,-35.254571221999825],[173.10027103000016,-35.21998463299982],[173.09294681100016,-35.206801039999874],[173.09522545700017,-35.1872697899998],[173.1095483730003,-35.18173593499996],[173.12907962300014,-35.185235283999944],[173.14698326900006,-35.19304778399986],[173.1793725920002,-35.15601978999983],[173.19841556100008,-35.10906340899989],[173.20199629000038,-35.057793877999856],[173.1886499360003,-35.00750090899997],[173.15674889400012,-34.94500090899986],[173.14356530000035,-34.928399346999896],[173.0833439460002,-34.87802499799986],[173.06495201900017,-34.8566220029999],[173.0339461600001,-34.79127369599992],[173.02100670700023,-34.78093840899982],[173.00318444100003,-34.77320728999973],[172.7993270190003,-34.55095794099985],[172.75896243600008,-34.522149346999825],[172.67408287900022,-34.47991301899998],[172.6843367850001,-34.471856377999856],[172.69092858200023,-34.46445077899996],[172.7013452480002,-34.445896091999956],[172.6994735040001,-34.43775807099985],[172.69809004000015,-34.42180754999984],[172.70281009200014,-34.41179778399986],[172.71900475400003,-34.42131926899985],[172.7417098320003,-34.43124765399995],[172.80030358200017,-34.433363539999945],[172.82545006600017,-34.445896091999956],[172.83822675900004,-34.43482838299973],[172.8694767590002,-34.428969007999875],[172.899668816,-34.412286065999936],[173.0133569670002,-34.420586846999825],[173.03093509200002,-34.417901299999755],[173.04200280000006,-34.410088799999855],[173.05225670700014,-34.40016041499993],[173.06373131600003,-34.39763762799993],[173.07927493600008,-34.411716403999876]]],[[[-177.8654272129999,-29.251153252999853],[-177.8481339179999,-29.27857838299998],[-177.86327063699989,-29.271172783999916],[-177.8780004549999,-29.272393487999924],[-177.88963782499988,-29.280043226999865],[-177.89586341099994,-29.292168877999938],[-177.90843665299994,-29.27939218499999],[-177.90953528599988,-29.27857838299998],[-177.92487545499992,-29.284356377999867],[-177.92747962099992,-29.277113539999846],[-177.92564856699994,-29.264580987999853],[-177.9275610019999,-29.254652601999936],[-177.9458715489999,-29.240329684999953],[-177.95282955599995,-29.233086846999836],[-177.95799719999985,-29.22275155999992],[-177.94078528599994,-29.221937757999907],[-177.92247473899985,-29.223890882999953],[-177.90485592399986,-29.228122653999957],[-177.88939368399994,-29.233819268999863],[-177.87462317599986,-29.242364190999965],[-177.8654272129999,-29.251153252999853]]],[[[-171.18565833199995,-9.361260674999839],[-171.18830318899992,-9.361748955999829],[-171.18895423099988,-9.36044687299993],[-171.18932044199988,-9.358168226999865],[-171.19066321499986,-9.356377862999878],[-171.19550533799983,-9.350681247999887],[-171.1996964179999,-9.344333591999856],[-171.2031957669999,-9.337660414999903],[-171.20579993399988,-9.33098723799985],[-171.19770260299995,-9.3363583309999],[-171.19135494699992,-9.343357028999888],[-171.18732662699995,-9.35173919099985],[-171.18565833199995,-9.361260674999839]]],[[[-172.47935950399994,-8.574476820999834],[-172.48363196499986,-8.586521091999842],[-172.4838354159999,-8.58131275799984],[-172.4860733709999,-8.565362237999835],[-172.49494381399995,-8.554782809999878],[-172.50255286399988,-8.543226820999863],[-172.4916886059999,-8.551853122999859],[-172.4830216139999,-8.562595309999878],[-172.47935950399994,-8.574476820999834]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Papua New Guinea","sov_a3":"PNG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Papua New Guinea","adm0_a3":"PNG","geou_dif":0,"geounit":"Papua New Guinea","gu_a3":"PNG","su_dif":1,"subunit":"Papua New Guinea","su_a3":"PN1","brk_diff":0,"name":"Papua New Guinea","name_long":"Papua New Guinea","brk_a3":"PN1","brk_name":"Papua New Guinea","brk_group":null,"abbrev":"P.N.G.","postal":"PG","formal_en":"Independent State of Papua New Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Papua New Guinea","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":3,"mapcolor13":1,"pop_est":6057263,"gdp_md_est":13210,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"PP","iso_a2":"PG","iso_a3":"PNG","iso_n3":"598","un_a3":"598","wb_a2":"PG","wb_a3":"PNG","woe_id":23424926,"woe_id_eh":23424926,"woe_note":"Exact WOE match as country","adm0_a3_is":"PNG","adm0_a3_us":"PNG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":16,"long_len":16,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"PNG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[153.25782311300011,-11.353448174999896],[153.27751712300002,-11.358656507999811],[153.29623457100004,-11.353204033999859],[153.30494225399997,-11.353285414999931],[153.31218509200014,-11.369805596999825],[153.32105553500014,-11.373467705999872],[153.33236738400012,-11.375746351999851],[153.34327233200023,-11.379164320999848],[153.36695397200006,-11.3949520809999],[153.37745201900012,-11.399672132999811],[153.40088951900012,-11.404473565999893],[153.41114342500012,-11.408298434999907],[153.439300977,-11.431084893999838],[153.5009871750002,-11.454847914999931],[153.54786217500006,-11.484633070999847],[153.55909264400006,-11.489027601999837],[153.58041425900012,-11.490166924999867],[153.69564863399998,-11.521254164999874],[153.70582116000006,-11.526543877999842],[153.70850670700008,-11.537286065999865],[153.71599368600008,-11.547133070999877],[153.72584069100017,-11.554375908999901],[153.74773196700002,-11.56064218499985],[153.75391686300011,-11.568536065999837],[153.76156660200004,-11.585870049999826],[153.76644941499995,-11.588799737999835],[153.7729598320001,-11.590752862999878],[153.77881920700023,-11.593438408999859],[153.78093509200002,-11.598890882999811],[153.778086785,-11.60898202899986],[153.77279707100004,-11.611993096999868],[153.76677493600013,-11.610121351999808],[153.76156660200004,-11.605075778999876],[153.75326582100016,-11.610446872999916],[153.747243686,-11.612074476999851],[153.74105879000015,-11.610446872999916],[153.73308353000013,-11.605075778999876],[153.72242272200018,-11.61353932099982],[153.71029707099999,-11.618096612999864],[153.69760175900004,-11.617933851999808],[153.68531334700018,-11.612481377999856],[153.6813257170002,-11.62468840899983],[153.67579186300006,-11.62574635199988],[153.66895592500023,-11.62200286299985],[153.66114342500018,-11.61939869599986],[153.61695397200018,-11.61939869599986],[153.61158287900005,-11.618422132999882],[153.60824629000004,-11.61256275799984],[153.60279381600017,-11.612481377999856],[153.597422722,-11.61541106599988],[153.58936608200005,-11.624281507999825],[153.58627363399998,-11.626153252999885],[153.57504316499998,-11.630303643999838],[153.56446373800023,-11.636325778999847],[153.55534915500007,-11.635674737999892],[153.54883873800023,-11.61939869599986],[153.55762780000012,-11.62037525799984],[153.56609134200008,-11.618829033999887],[153.57129967500023,-11.614027601999808],[153.5698348320001,-11.605075778999876],[153.5641382170002,-11.599297783999901],[153.5568953790001,-11.599867445999877],[153.54835045700005,-11.603204033999901],[153.53842207100016,-11.605075778999876],[153.52955162900005,-11.602146091999856],[153.52426191500015,-11.595472914999887],[153.52076256600006,-11.588799737999835],[153.51734459700006,-11.585870049999826],[153.50684655000006,-11.587497653999845],[153.49838300900004,-11.5902645809999],[153.49024498800011,-11.590752862999878],[153.47982832100004,-11.585870049999826],[153.48267662900017,-11.581719658999873],[153.48731530000012,-11.570977471999868],[153.4780379570002,-11.570000908999887],[153.473399285,-11.566827080999829],[153.47193444100006,-11.56064218499985],[153.47299238400004,-11.550469658999901],[153.4627384770001,-11.558526299999839],[153.45460045700003,-11.567803643999893],[153.44613691500004,-11.57537200299984],[153.43555748800006,-11.578383070999848],[153.39795983200005,-11.557305596999825],[153.3823348320001,-11.566094658999887],[153.37281334700018,-11.559014580999827],[153.36882571700016,-11.544366143999824],[153.36996504000015,-11.529961846999852],[153.37647545700023,-11.522230726999851],[153.38575280000012,-11.513929945999863],[153.39063561300006,-11.504978122999844],[153.38363691499998,-11.495212497999887],[153.37281334700018,-11.490899346999896],[153.36817467500015,-11.49423593499992],[153.36548912900017,-11.50017669099985],[153.36011803500006,-11.503187757999852],[153.35328209699998,-11.501071872999844],[153.34815514400012,-11.496189059999862],[153.34327233200023,-11.489027601999837],[153.32813561300023,-11.494073174999855],[153.3131616550002,-11.503187757999852],[153.28809655000012,-11.523125908999845],[153.2832137380002,-11.502618096999882],[153.32252037900005,-11.484307549999826],[153.32227623800011,-11.468519789999874],[153.31324303500017,-11.463311455999872],[153.2910262380001,-11.463474216999842],[153.28126061300006,-11.46111419099988],[153.27173912900017,-11.453301690999893],[153.2600203790001,-11.434665622999901],[153.25049889400012,-11.423923434999892],[153.24293053500003,-11.422458591999842],[153.23487389400012,-11.42587655999985],[153.22852623800006,-11.426527601999894],[153.22608483200023,-11.417087497999873],[153.23145592500012,-11.395765882999811],[153.22925866,-11.38876718499992],[153.21607506600017,-11.385918877999885],[153.20915774800008,-11.382989190999865],[153.20118248800011,-11.375909112999906],[153.19459069100006,-11.367852471999868],[153.19174238399998,-11.361748955999886],[153.19288170700023,-11.349541924999897],[153.19597415500013,-11.33847421699987],[153.20557701900012,-11.317071221999825],[153.25782311300011,-11.353448174999896]]],[[[154.2253524100001,-11.315362237999821],[154.2296655610002,-11.323825778999861],[154.23487389400012,-11.329196872999916],[154.24708092500018,-11.32447682099982],[154.26758873800011,-11.333184502999885],[154.277598504,-11.339450778999845],[154.28174889400023,-11.348239841999899],[154.28337649800008,-11.357842705999886],[154.28760826900006,-11.370049737999864],[154.29420006600017,-11.3806291649999],[154.3022567070001,-11.385918877999885],[154.29542076900006,-11.397881768999824],[154.288340691,-11.407403252999826],[154.27955162900005,-11.414808851999808],[154.26807701900012,-11.420668226999851],[154.2599389980002,-11.405694268999824],[154.2417098320001,-11.397881768999824],[154.21949303500006,-11.396172783999916],[154.19857832099999,-11.399672132999811],[154.16342207100004,-11.417738539999917],[154.14893639400006,-11.41627369599986],[154.14470462300008,-11.392185153999847],[154.13843834699998,-11.392185153999847],[154.13217207100013,-11.418389580999872],[154.11752363400015,-11.429457289999903],[154.09620201900006,-11.42913176899988],[154.06950931100008,-11.420668226999851],[154.05486087300008,-11.421807549999881],[154.04615319100017,-11.41725025799984],[154.04224694100017,-11.403090101999823],[154.03834069100017,-11.396661065999893],[154.02881920700005,-11.391289971999853],[154.01734459700006,-11.387465101999837],[154.0074975920002,-11.385918877999885],[154.0123804050002,-11.378594658999887],[154.01880944100017,-11.372735283999845],[154.02637780000023,-11.368259372999873],[154.03541100400003,-11.364922783999845],[154.03028405000023,-11.361016533999859],[154.02116946700008,-11.344984632999866],[154.02759850400014,-11.344333591999913],[154.03101647200018,-11.345798434999878],[154.03541100400003,-11.351250908999901],[154.05209394599999,-11.360609632999854],[154.09620201900006,-11.36345794099988],[154.1173608730002,-11.37232838299984],[154.12476647200018,-11.364922783999845],[154.13721764400012,-11.370700778999902],[154.14332116000017,-11.368340752999856],[154.14356530000012,-11.360935153999874],[154.13843834699998,-11.351250908999901],[154.13103274800014,-11.351250908999901],[154.13103274800014,-11.358656507999811],[154.12476647200018,-11.358656507999811],[154.11744225400017,-11.354668877999828],[154.11068769600004,-11.350030205999886],[154.10743248800006,-11.344659112999835],[154.11052493600008,-11.338148695999847],[154.10157311300023,-11.334079684999878],[154.0952254570001,-11.328301690999822],[154.09115644600016,-11.32057057099982],[154.09001712300017,-11.310804945999877],[154.1095483730002,-11.316989841999842],[154.13721764400012,-11.317152601999808],[154.17872155000006,-11.310804945999877],[154.19019616000006,-11.316338799999883],[154.19890384200016,-11.31568775799984],[154.20679772200018,-11.31275807099982],[154.2163192070001,-11.310804945999877],[154.2253524100001,-11.315362237999821]]],[[[153.25391686300011,-11.242608330999857],[153.25025475400017,-11.251560153999876],[153.24333743600008,-11.263441664999931],[153.23389733200023,-11.270928643999895],[153.22291100400017,-11.266534112999821],[153.22055097700004,-11.270928643999895],[153.21094811300023,-11.276055596999825],[153.1977645190001,-11.279229424999883],[153.18506920700023,-11.277439059999892],[153.19483483200005,-11.271416924999883],[153.19922936300017,-11.269952080999829],[153.19922936300017,-11.263116143999907],[153.1713973320001,-11.242608330999857],[153.16407311300011,-11.248793226999823],[153.15984134200008,-11.247002862999834],[153.15609785200016,-11.241306247999859],[153.15088951900023,-11.235772393999838],[153.11622155000006,-11.215264580999886],[153.10108483200005,-11.197930596999896],[153.10450280000006,-11.185479424999867],[153.1170353520001,-11.180840752999854],[153.12973066500015,-11.187432549999825],[153.14234459700003,-11.197523695999891],[153.19174238399998,-11.207777601999823],[153.23560631600003,-11.238539320999804],[153.25391686300011,-11.242608330999857]]],[[[152.55445397200018,-10.618829033999901],[152.61947675900004,-10.637872002999899],[152.63355553500017,-10.636163018999895],[152.64323978000002,-10.636488539999915],[152.67335045700005,-10.655368747999859],[152.684825066,-10.660332940999908],[152.71534264400023,-10.65154387799984],[152.75001061300023,-10.633721612999864],[152.7828882170002,-10.622247002999828],[152.808278842,-10.632500908999845],[152.816254102,-10.632989190999837],[152.85059655000023,-10.645928643999838],[152.86280358200023,-10.653497002999885],[152.87183678500006,-10.665459893999824],[152.8711043630001,-10.674411716999856],[152.86312910200016,-10.681573174999883],[152.849864129,-10.68767669099988],[152.83904056100013,-10.69068775799988],[152.79468834700018,-10.694512627999899],[152.78321373800023,-10.696872653999845],[152.76368248800017,-10.705254815999822],[152.75367272200018,-10.70818450299984],[152.73121178500017,-10.706801039999858],[152.70329837300002,-10.69898853999986],[152.64380944100012,-10.674086195999832],[152.58228600400003,-10.660332940999908],[152.54078209700006,-10.632500908999845],[152.54078209700006,-10.62566497199984],[152.54769941500015,-10.626397393999866],[152.55079186300023,-10.624444268999824],[152.5522567070001,-10.621514580999886],[152.55445397200018,-10.618829033999901]]],[[[151.03825931100008,-10.60295989399988],[151.046722852,-10.605726820999847],[151.054453972,-10.603448174999869],[151.05779056100008,-10.597344658999887],[151.06080162900005,-10.593845309999892],[151.0678817070001,-10.598321221999853],[151.06885826900006,-10.601820570999848],[151.06869550900004,-10.604668877999883],[151.06999759200014,-10.606215101999837],[151.07471764400023,-10.605726820999847],[151.04704837300002,-10.627373955999843],[151.04493248800011,-10.63681405999985],[151.0678817070001,-10.63990650799984],[151.062266472,-10.644707940999822],[151.05225670700023,-10.655531507999825],[151.046722852,-10.660332940999908],[151.04639733200005,-10.66969166499993],[151.031993035,-10.671075127999828],[151.0151473320001,-10.6625302059999],[151.00709069100017,-10.642998955999829],[150.998301629,-10.635430596999868],[150.9547632170002,-10.635511976999851],[150.93685957100004,-10.632500908999845],[150.93287194100006,-10.64706796699987],[150.93409264400006,-10.660739841999913],[150.93376712300002,-10.672133070999875],[150.9244897800002,-10.680271091999884],[150.9145613940001,-10.652113539999903],[150.912364129,-10.637790622999916],[150.9170028000001,-10.618829033999901],[150.9236759770001,-10.60833098799985],[150.93409264400006,-10.599867445999806],[150.94792728000007,-10.594170830999829],[150.9648543630002,-10.591485283999845],[151.02003014400003,-10.591485283999845],[151.02881920700023,-10.594333591999884],[151.03825931100008,-10.60295989399988]]],[[[150.81674238400004,-10.542575778999861],[150.821462436,-10.55046965899983],[150.83529707100004,-10.54859791499986],[150.84913170700023,-10.548272393999838],[150.86255944100006,-10.545586846999868],[150.87549889400023,-10.536309502999897],[150.88795006600006,-10.542168877999856],[150.89918053500003,-10.550876559999935],[150.90186608200023,-10.56259530999992],[150.88917076900017,-10.577813408999901],[150.89649498800006,-10.584649346999825],[150.89291425900004,-10.594659112999906],[150.89258873800006,-10.60898202899989],[150.88917076900017,-10.618829033999901],[150.89568118600008,-10.629327080999886],[150.89649498800006,-10.63892994599986],[150.89193769600004,-10.647149346999853],[150.88233483200023,-10.653497002999885],[150.86304772199998,-10.644301039999917],[150.8380639980002,-10.636163018999895],[150.81299889400012,-10.63339609199984],[150.79346764400012,-10.63990650799984],[150.78288821700008,-10.619805596999882],[150.77556399800008,-10.611097914999903],[150.76685631600017,-10.605726820999847],[150.7736922540001,-10.598321221999853],[150.78760826900006,-10.60833098799985],[150.80396569100017,-10.616875908999859],[150.82203209700012,-10.622735283999901],[150.84131920700023,-10.62566497199984],[150.86019941500015,-10.625909112999878],[150.86573326900012,-10.623467705999843],[150.86060631600017,-10.617120049999897],[150.79346764400012,-10.5583635399999],[150.7880965500002,-10.54941171699987],[150.79037519600004,-10.539971612999864],[150.79957116,-10.534600518999895],[150.80884850400017,-10.536309502999897],[150.81674238400004,-10.542575778999861]]],[[[152.10767662900017,-10.400567315999822],[152.09449303500006,-10.402032158999887],[152.09913170700023,-10.39088307099986],[152.110118035,-10.391289971999866],[152.10767662900017,-10.400567315999822]]],[[[151.87745201900023,-10.334161065999893],[151.86963951900017,-10.344821872999916],[151.86841881600006,-10.33782317499984],[151.87745201900023,-10.334161065999893]]],[[[151.86459394600004,-10.254652601999894],[151.85661868600008,-10.264906507999825],[151.85271243600016,-10.25953541499986],[151.86231530000023,-10.25025807099982],[151.86459394600004,-10.254652601999894]]],[[[151.04810631600017,-9.935153903999918],[151.06169681100002,-9.954685153999904],[151.03825931100008,-9.94850025799984],[151.03150475400005,-9.963799737999892],[151.03541100400005,-9.984551690999893],[151.04363040500002,-9.995049737999864],[151.054453972,-10.000746351999851],[151.08969160200016,-10.027927341999856],[151.1088973320001,-10.036553643999866],[151.1276147800002,-10.04216887799987],[151.13502037900017,-10.041924737999821],[151.14291425900015,-10.036553643999866],[151.14869225399997,-10.026543877999885],[151.15015709700015,-10.015313408999873],[151.14722741000003,-10.00611744599982],[151.13949629000004,-10.002536716999842],[151.13884524800017,-9.994886976999808],[151.15251712300014,-9.978448174999912],[151.17701256600006,-9.954685153999904],[151.204925977,-9.935967705999843],[151.246348504,-9.9222958309999],[151.28394616,-9.927911065999908],[151.30062910200016,-9.967705987999892],[151.2963973320002,-9.988702080999843],[151.27759850400017,-10.031914971999838],[151.26929772200018,-10.074639580999857],[151.23910566499998,-10.132907809999864],[151.23226972700016,-10.138929945999877],[151.23666425900012,-10.149590752999899],[151.22681725400005,-10.182061455999886],[151.23226972700016,-10.20045338299984],[151.21192467500006,-10.186700127999828],[151.17579186300023,-10.156426690999822],[151.15658613399998,-10.14641692499984],[151.05420983200005,-10.11858489399988],[151.00709069100017,-10.111748955999857],[150.98568769600004,-10.111748955999857],[150.97006269600016,-10.110039971999852],[150.95801842500023,-10.104913018999852],[150.9538680350001,-10.089613539999888],[150.9503686860002,-10.060153903999904],[150.95232181100008,-10.034112237999835],[150.9648543630002,-10.029066664999887],[150.97266686300023,-10.019219658999873],[150.98560631600006,-10.005629164999915],[150.99252363400015,-9.993829033999859],[150.98218834700006,-9.988864841999899],[150.97543379000004,-9.984307549999855],[150.9655054050002,-9.973809502999885],[150.95045006600017,-9.954685153999904],[150.94434655000012,-9.954685153999904],[150.94654381600017,-9.980889580999843],[150.92896569100006,-9.996758721999866],[150.90723717500006,-9.99732838299984],[150.89649498800006,-9.977959893999824],[150.89454186300023,-9.970147393999838],[150.89014733200023,-9.96656666499986],[150.88526451900006,-9.964450778999845],[150.88233483200023,-9.960870049999883],[150.88119550900004,-9.95273202899986],[150.88233483200023,-9.903008721999868],[150.8789168630002,-9.896091403999874],[150.85816491000006,-9.868340752999885],[150.85499108200005,-9.86150481599988],[150.85222415500013,-9.848809502999913],[150.84506269600016,-9.83904387799987],[150.83521569100006,-9.832777601999823],[150.81470787899997,-9.827813408999873],[150.81104576900023,-9.821384372999859],[150.80982506600006,-9.814141533999845],[150.80713951900023,-9.809340101999851],[150.80152428500006,-9.807875257999882],[150.78589928500017,-9.805759372999873],[150.77979576900006,-9.803317966999842],[150.76905358200005,-9.793715101999865],[150.76050866000006,-9.783298434999878],[150.75513756600017,-9.770114841999913],[150.75318444100006,-9.752048434999907],[150.754161004,-9.735446872999844],[150.757578972,-9.715590101999851],[150.76392662900005,-9.702813408999901],[150.7929793630002,-9.717543226999894],[150.81275475400005,-9.732354424999867],[150.82829837300008,-9.750664971999825],[150.83448326900012,-9.772230726999837],[150.84408613400004,-9.794528903999874],[150.866953972,-9.808200778999904],[150.8942163420002,-9.818536065999822],[150.9170028000001,-9.830498955999857],[150.98218834700006,-9.902927341999884],[150.99984785200016,-9.91334400799988],[151.024668816,-9.922621351999837],[151.04810631600017,-9.935153903999918]]],[[[151.03126061300006,-9.660821221999823],[151.01791425900007,-9.66887786299985],[151.01238040500004,-9.66432057099982],[151.0109155610002,-9.65260182099982],[151.0060327480001,-9.646579684999907],[151.00318444100017,-9.642510674999853],[150.99683678500006,-9.634942315999908],[150.9689233730002,-9.620212497999916],[150.95533287900017,-9.607354424999881],[150.95980879000004,-9.592380466999856],[150.97787519600004,-9.582452080999857],[150.99634850400017,-9.580336195999847],[151.01172936300011,-9.585056247999859],[151.02222741000017,-9.591403903999874],[151.02491295700023,-9.600762627999828],[151.02784264400006,-9.60222747199988],[151.028086785,-9.60751718499985],[151.024261915,-9.62395598799985],[151.01937910200002,-9.62615325299984],[151.01677493600002,-9.62704843499992],[151.0178328790001,-9.63486093499992],[151.01978600400005,-9.638441664999888],[151.024668816,-9.638929945999877],[151.03012129000015,-9.643161716999899],[151.03419030000012,-9.650160414999888],[151.03126061300006,-9.660821221999823]]],[[[150.656097852,-9.43108489399988],[150.6738387380001,-9.438653252999842],[150.68734785200016,-9.436700127999885],[150.70655358200023,-9.427015882999825],[150.72641035200004,-9.424248955999872],[150.74488366000014,-9.418389580999829],[150.7594507170002,-9.399183851999865],[150.7983504570001,-9.425713799999826],[150.82943769599999,-9.454685153999916],[150.83448326900012,-9.46119557099982],[150.83529707100004,-9.467217705999829],[150.833262566,-9.48219166499986],[150.83448326900012,-9.48796965899983],[150.84441165500002,-9.497165622999887],[150.85840905000006,-9.50611744599982],[150.87330162900005,-9.513116143999895],[150.88575280000023,-9.51580169099988],[150.88835696700008,-9.521416924999883],[150.88233483200023,-9.560235283999887],[150.87769616000006,-9.567559502999899],[150.86931399800008,-9.570489190999822],[150.863536004,-9.574314059999935],[150.86801191500015,-9.584161065999865],[150.87989342500012,-9.591566664999931],[150.89112389400012,-9.591892184999864],[150.89942467500012,-9.594170830999843],[150.90650475400017,-9.619724216999927],[150.91488691500004,-9.62558359199987],[150.92432701900023,-9.630140882999825],[150.93067467500023,-9.63876718499992],[150.93091881599997,-9.652439059999864],[150.92465254000015,-9.664239190999837],[150.9145613940001,-9.67359791499986],[150.90267988400012,-9.67978280999992],[150.89234459700006,-9.669040622999916],[150.8751733730002,-9.68059661299985],[150.84131920700023,-9.713962497999916],[150.84180748800023,-9.69744231599985],[150.8523055350001,-9.67359791499986],[150.85499108200005,-9.662367445999863],[150.84815514400023,-9.653985283999901],[150.83228600400005,-9.651299737999821],[150.80095462300008,-9.652439059999864],[150.80469811300011,-9.669528903999902],[150.78500410200016,-9.667657158999845],[150.74236087300002,-9.652439059999864],[150.67945397200012,-9.659356377999854],[150.6569930350001,-9.659274997999873],[150.62256920700005,-9.649997653999918],[150.58765709700006,-9.634698174999869],[150.54932701900012,-9.623223565999822],[150.50554446700008,-9.625095309999878],[150.4664819670002,-9.631117445999806],[150.43360436300011,-9.631280205999857],[150.42986087300008,-9.624281507999868],[150.44450931100008,-9.608819268999852],[150.47820071700008,-9.584161065999865],[150.50220787900005,-9.57203541499986],[150.51205488400015,-9.560967705999829],[150.51368248800017,-9.546970309999864],[150.51295006600006,-9.525811455999857],[150.50562584700006,-9.515720309999892],[150.45777428499997,-9.48796965899983],[150.42693118600002,-9.418715101999851],[150.423594597,-9.388929945999848],[150.43213951900023,-9.365329684999892],[150.45313561300006,-9.348565362999878],[150.47999108200014,-9.339125257999866],[150.50554446700008,-9.337660414999903],[150.56381269600013,-9.367852471999823],[150.59742272200018,-9.377048434999892],[150.61052493600008,-9.3890927059999],[150.62907962300008,-9.412774346999825],[150.656097852,-9.43108489399988]]],[[[150.36557050900015,-9.364027601999808],[150.36890709700018,-9.371840101999808],[150.37012780000006,-9.371514580999872],[150.378591342,-9.381768487999892],[150.38062584700006,-9.386895440999822],[150.37728925900004,-9.39072030999992],[150.37232506600017,-9.394219658999916],[150.36890709700018,-9.399183851999865],[150.36394290500013,-9.414971612999821],[150.34742272200006,-9.451592705999843],[150.33765709700012,-9.464288018999895],[150.33521569100017,-9.471286716999884],[150.34400475400005,-9.473809502999899],[150.36150149800008,-9.474297783999887],[150.36207116000006,-9.483493747999859],[150.36060631600017,-9.490329684999878],[150.35523522200006,-9.501641533999859],[150.33765709700012,-9.51970794099988],[150.31226647200018,-9.519463799999839],[150.28435306100002,-9.508721612999821],[150.25961347700016,-9.495375257999811],[150.25757897200006,-9.497979424999897],[150.25684655000012,-9.498793226999823],[150.25570722700016,-9.499688408999901],[150.2516382170002,-9.501641533999859],[150.2526147800002,-9.486504815999865],[150.25147545700023,-9.470961195999863],[150.24626712300008,-9.458754164999874],[150.23519941500004,-9.45378997199984],[150.21924889400012,-9.451592705999843],[150.1806746750002,-9.440118096999896],[150.171641472,-9.43564218499992],[150.16529381600014,-9.424981377999899],[150.1596785820001,-9.412692966999842],[150.15316816499998,-9.402520440999893],[150.11410566500004,-9.369235934999892],[150.10824628999998,-9.361016533999901],[150.10889733200023,-9.328301690999865],[150.11280358200023,-9.299411716999856],[150.122894727,-9.27271900799984],[150.14234459700012,-9.247735283999916],[150.16553795700023,-9.227146091999884],[150.18995201900006,-9.211846612999821],[150.2145288420002,-9.205824476999823],[150.23861738400004,-9.213555596999825],[150.29167728000007,-9.241794528999888],[150.31544030000023,-9.259454033999901],[150.3342391290001,-9.282484632999868],[150.35279381600012,-9.326348565999822],[150.3571069670002,-9.350192966999899],[150.36557050900015,-9.364027601999808]]],[[[152.47159005500012,-8.94945869599985],[152.51786996000013,-8.996409484999859],[152.5993558060002,-8.988879486999892],[152.64295434600012,-8.993334672999922],[152.6679598470001,-9.000312360999843],[152.704484232,-9.006014219999912],[152.73587481700005,-9.0003183769999],[152.75381293600006,-9.000947997999859],[152.77495363900007,-9.000954468999865],[152.79417080699997,-9.003496708999888],[152.80890571800015,-9.010439674999873],[152.81787801600007,-9.023721552999888],[152.83004877900015,-9.028147598999809],[152.84799866800014,-9.05913056099989],[152.86594141300023,-9.069884048999867],[152.898623742,-9.079355267999873],[152.917829716,-9.069856865999924],[152.9415416800001,-9.083757592999888],[152.95118870200022,-9.094505604999839],[152.948608679,-9.119811864999818],[152.97300630600003,-9.128024953999912],[152.99546865100012,-9.141298770999867],[153.01205488399998,-9.14910247199984],[152.99613146100003,-9.160917007999856],[152.98910566499998,-9.172295830999872],[152.99424725200018,-9.178646982999835],[152.99040537300007,-9.184346237999861],[152.98592311300004,-9.192576925999902],[152.9756544210002,-9.195742468999896],[152.96537025600017,-9.190042839999848],[152.95764887400017,-9.181810878999869],[152.94544308200003,-9.174848199999843],[152.93904091400012,-9.179914314999806],[152.92944664300003,-9.19194634299987],[152.93202914100016,-9.199546276999854],[152.9506699890002,-9.21348436399988],[152.96994734200004,-9.229314563999893],[152.9757446360002,-9.245777701999856],[152.9674157220002,-9.256545694999872],[152.96099869300022,-9.257179975999861],[152.95584574000006,-9.241982049999862],[152.94235621100012,-9.22805540799989],[152.92182855400011,-9.228692529999847],[152.89427218000006,-9.250228825999898],[152.85451237500004,-9.254030478999866],[152.8346385870002,-9.259733643999851],[152.82758163400004,-9.253400870999897],[152.81155399200023,-9.254672561999868],[152.8032141130002,-9.240113975999833],[152.787823869,-9.222394108999893],[152.77372045500024,-9.216069390999806],[152.759005954,-9.203320868999882],[152.75130664600024,-9.190076055999924],[152.74423416300013,-9.18126833699992],[152.73846605200006,-9.193925450999842],[152.72693490700024,-9.204042562999817],[152.72954475400016,-9.219139425999813],[152.75320902700017,-9.223669562999916],[152.75192575900022,-9.242034075999895],[152.73589569200013,-9.260399648999806],[152.72052160000013,-9.231891417999847],[152.70063735400007,-9.223685269999876],[152.67245175800022,-9.213539830999862],[152.65575612600006,-9.204073237999879],[152.64421583700008,-9.18255816099989],[152.65063425600016,-9.168000889999874],[152.67243119800003,-9.185085557999841],[152.69554588400004,-9.186316815999831],[152.68995201900012,-9.171563408999845],[152.69532311300006,-9.162367445999877],[152.70240319100006,-9.157810153999918],[152.70883222700016,-9.15691497199984],[152.71436608200005,-9.154473565999893],[152.70451060900004,-9.14457126299983],[152.69681514199996,-9.139513772999877],[152.68527533700015,-9.13382221599987],[152.66475824500006,-9.123701261999841],[152.6359124090002,-9.10028731599985],[152.6134734240001,-9.084462870999886],[152.59809672400004,-9.068638831999863],[152.57305665900006,-9.078119615999867],[152.5640798860002,-9.072419499999853],[152.55188445900004,-9.06101902299983],[152.53583165400008,-9.050877686999883],[152.50630032200004,-9.038825072999883],[152.47161988800005,-9.045130077999843],[152.46454432900023,-9.036886724999917],[152.49976647200006,-9.023044528999904],[152.49976647200006,-9.015557549999855],[152.49473389400012,-9.000178281999851],[152.47288540100024,-8.976076736999829],[152.45166620100022,-8.965270166999815],[152.42594857300006,-8.982342280999902],[152.42466166900024,-9.000085416999895],[152.4272357250001,-9.01846678799987],[152.42787130300005,-9.057751438999915],[152.42722362900022,-9.069788373999854],[152.4214244120001,-9.083721220999806],[152.41179243100012,-9.033655054999869],[152.38862331100015,-8.991154732999846],[152.40471454400003,-8.970896725999864],[152.45230438100012,-8.944989765999836],[152.47159005500012,-8.94945869599985]]],[[[143.81348717500023,-8.530857028999916],[143.79607181100005,-8.538262627999899],[143.78256269599999,-8.527601820999877],[143.78028405000023,-8.51327890399989],[143.79224694100014,-8.504082940999822],[143.80323326900012,-8.50074635199988],[143.8099064460001,-8.496514580999872],[143.81592858200003,-8.495375257999838],[143.82211347700016,-8.49968840899983],[143.82292728000007,-8.509535414999858],[143.81348717500023,-8.530857028999916]]],[[[151.12989342500023,-8.423760674999896],[151.128265821,-8.424981377999828],[151.12549889400006,-8.424899997999844],[151.12240644599999,-8.425957940999893],[151.12110436300011,-8.474297783999901],[151.11695397200003,-8.494724216999884],[151.1088973320001,-8.514743747999844],[151.13900800900015,-8.547621351999837],[151.1383569670002,-8.590590101999808],[151.10572350400005,-8.73064544099988],[151.103363477,-8.757094007999868],[151.11255944100017,-8.768649997999887],[151.12680097700016,-8.77662525799984],[151.1383569670002,-8.7953427059999],[151.14454186300006,-8.816176039999888],[151.14291425900015,-8.830661716999842],[151.1315210300002,-8.818454684999864],[151.1020613940001,-8.768649997999887],[151.04542076900012,-8.732842705999872],[151.04363040500002,-8.726983330999829],[151.04810631600017,-8.718845309999907],[151.0966903000002,-8.653578382999825],[151.11915123800023,-8.601739190999822],[151.12240644599999,-8.582940362999864],[151.11947675900015,-8.579034112999864],[151.1020613940001,-8.562432549999912],[151.0895288420002,-8.553806247999901],[151.08090253999998,-8.550225518999838],[151.02312259200008,-8.545342705999872],[151.00586998800017,-8.537530205999872],[150.99903405000023,-8.518161716999856],[151.016856316,-8.493829033999887],[151.02003014400003,-8.483982028999861],[151.0221460300002,-8.471774997999887],[151.02751712300008,-8.461846612999892],[151.04363040500002,-8.443291924999883],[151.06104576900012,-8.429620049999855],[151.08253014400012,-8.422458591999899],[151.12924238400004,-8.41912200299987],[151.12989342500023,-8.423760674999896]]],[[[143.64234459700006,-8.726169528999918],[143.62891686300014,-8.730401299999839],[143.61703535200004,-8.721856377999828],[143.61207116000014,-8.703383070999804],[143.605804884,-8.689222914999872],[143.59058678500006,-8.679375908999845],[143.47380618600008,-8.624688408999901],[143.45118248800011,-8.607517184999878],[143.43978925900004,-8.602227471999896],[143.42497806100008,-8.599541924999826],[143.4122827480002,-8.595635674999825],[143.40674889400006,-8.586683851999808],[143.4007267590001,-8.57341887799987],[143.33814537900005,-8.521742445999832],[143.28191165500007,-8.5062802059999],[143.25521894600016,-8.494805596999868],[143.24447675900004,-8.485446872999916],[143.22120201900012,-8.453220309999878],[143.20948326900023,-8.443617445999818],[143.18848717500006,-8.429864190999893],[143.1788843110002,-8.41912200299987],[143.1940210300002,-8.417413018999866],[143.20736738400004,-8.41415780999992],[143.21908613400004,-8.415134372999901],[143.25603274800008,-8.456963799999826],[143.2710067070001,-8.46892669099985],[143.35938561300023,-8.488539320999818],[143.44336998800011,-8.518487237999878],[143.46509850400017,-8.521579684999864],[143.474864129,-8.525323174999897],[143.48178144600004,-8.534437757999882],[143.49203535200002,-8.5525041649999],[143.58790123800023,-8.631442966999842],[143.60840905000012,-8.638116143999893],[143.629161004,-8.644707940999865],[143.6443791020001,-8.661309502999828],[143.65267988400015,-8.683363539999917],[143.6525171230002,-8.706475518999879],[143.64234459700006,-8.726169528999918]]],[[[143.36540774800002,-8.3676083309999],[143.37322024800002,-8.37127044099985],[143.38526451900023,-8.37127044099985],[143.41684004000015,-8.364515882999825],[143.48438561300011,-8.363539320999848],[143.57374108200023,-8.37371184699988],[143.58480879000015,-8.381280205999843],[143.58562259200008,-8.406426690999822],[143.58863366000017,-8.420830987999878],[143.60474694100006,-8.447035414999917],[143.61150149800017,-8.462172132999825],[143.61060631600012,-8.475030205999843],[143.6010848320001,-8.483575127999856],[143.58179772200018,-8.486748955999829],[143.53012129000004,-8.485528252999899],[143.50977623800023,-8.481133721999825],[143.46192467500012,-8.458184502999842],[143.44516035199996,-8.439060153999861],[143.42359459700018,-8.433038018999852],[143.37940514400012,-8.425957940999893],[143.35808353000002,-8.414727471999896],[143.33033287900017,-8.394138278999861],[143.31666100400005,-8.372247002999828],[143.33790123800011,-8.357598565999822],[143.35132897200012,-8.357191664999903],[143.35938561300023,-8.361748955999857],[143.36540774800002,-8.3676083309999]]],[[[143.67896569100017,-8.421482028999918],[143.66773522200018,-8.427992445999834],[143.6482853520001,-8.425876559999907],[143.6257430350001,-8.412367445999848],[143.58985436300011,-8.37175872199984],[143.54086347700004,-8.350030205999872],[143.5506291020001,-8.336195570999863],[143.5996199880002,-8.332614841999899],[143.63795006600017,-8.340590101999851],[143.6569116550002,-8.354750257999868],[143.66863040500007,-8.372653903999916],[143.67432701900023,-8.390557549999881],[143.67628014400012,-8.399590752999899],[143.68165123800017,-8.41269296699987],[143.67896569100017,-8.421482028999918]]],[[[143.68824303500006,-8.15357838299984],[143.66667728000002,-8.167413018999838],[143.63379967500023,-8.164727471999853],[143.61378014400017,-8.138848565999837],[143.59937584700012,-8.110772393999838],[143.61329186300006,-8.094903252999899],[143.64063561300023,-8.09889088299988],[143.65406334700006,-8.104261976999851],[143.66293378999995,-8.109307549999867],[143.67986087300005,-8.121026299999867],[143.6901147800002,-8.136651299999855],[143.68824303500006,-8.15357838299984]]],[[[143.69760175900015,-8.09091562299993],[143.69044030000012,-8.100192966999884],[143.67595462300008,-8.09335702899986],[143.64844811300023,-8.084730726999865],[143.6071069670002,-8.081719658999859],[143.58179772200018,-8.068617445999806],[143.5739038420002,-8.051039320999863],[143.56421959700006,-8.02996184699984],[143.5778100920002,-8.018243096999853],[143.61255944100003,-8.020114841999913],[143.65601647200018,-8.039646091999899],[143.67562910200016,-8.053806247999916],[143.68637129000012,-8.066338799999825],[143.69760175900015,-8.09091562299993]]],[[[147.82862389400023,-5.488051039999888],[147.83350670700023,-5.493096612999835],[147.8365991550002,-5.48943450299987],[147.83985436300023,-5.488051039999888],[147.84327233200017,-5.487562757999811],[147.84717858200017,-5.486423434999878],[147.8588973320002,-5.496758721999882],[147.88119550899998,-5.522556247999901],[147.89486738400004,-5.534112237999835],[147.90943444100006,-5.541192315999893],[147.94955488400015,-5.547784112999878],[147.97510826900023,-5.558200778999861],[148.000743035,-5.572360934999878],[148.04916425900004,-5.606133721999868],[148.07154381600006,-5.631605726999879],[148.07748457100016,-5.657810153999904],[148.06763756600006,-5.746840101999807],[148.04566491000006,-5.795830987999864],[148.03891035200007,-5.822035414999903],[148.02857506600017,-5.817478122999859],[148.0245874360002,-5.814629815999822],[148.02515709700018,-5.821465752999842],[148.0242619150001,-5.835219007999854],[148.0245874360002,-5.841973565999893],[148.01449629000004,-5.840020440999851],[148.00619550900015,-5.841973565999893],[147.99854576900023,-5.847588799999883],[147.99105879000015,-5.856215101999808],[147.986094597,-5.843438408999859],[147.98324629000015,-5.809828382999839],[147.97738691500004,-5.794203382999854],[147.96900475400017,-5.786228122999886],[147.95704186300023,-5.780450127999828],[147.929047071,-5.773695570999806],[147.895762566,-5.770684502999885],[147.881114129,-5.763767184999892],[147.86752363400015,-5.74635182099982],[147.86491946700008,-5.739353122999844],[147.86068769600004,-5.718438408999873],[147.854746941,-5.709730726999808],[147.817067905,-5.67750416499986],[147.80518639400003,-5.663506768999895],[147.78500410200016,-5.630303643999881],[147.76905358200023,-5.611748955999872],[147.76514733200023,-5.602959893999895],[147.76514733200023,-5.594821872999886],[147.77133222700004,-5.568942966999869],[147.76734459700006,-5.521254164999903],[147.77133222700004,-5.506931247999916],[147.78191165500007,-5.495293877999828],[147.80713951900012,-5.490817966999855],[147.8198348320001,-5.4789364559999],[147.82227623800011,-5.48406340899983],[147.8250431650001,-5.486097914999945],[147.82862389400023,-5.488051039999888]]],[[[154.810801629,-5.483575127999842],[154.82984459700012,-5.513604424999882],[154.84693444100006,-5.510511976999808],[154.86557050900004,-5.52011484199987],[154.88200931100002,-5.536553643999866],[154.89193769600004,-5.554620049999883],[154.89771569100017,-5.545098565999893],[154.90560957100016,-5.541273695999876],[154.91504967500003,-5.542413018999824],[154.92546634200005,-5.534112237999835],[154.93677819100003,-5.539239190999851],[154.9511824880001,-5.541110934999906],[155.01832116000017,-5.541273695999876],[155.028575066,-5.545098565999893],[155.0217391290001,-5.554620049999883],[155.0217391290001,-5.561455987999821],[155.03239993600002,-5.567559502999899],[155.03744550900015,-5.562269789999917],[155.0416772800002,-5.553317966999884],[155.04957116000006,-5.547784112999878],[155.06495201900012,-5.547784112999878],[155.06934655000006,-5.552178643999852],[155.06885826900006,-5.559747002999899],[155.06950931100002,-5.568942966999869],[155.06348717500023,-5.57903411299985],[155.06202233200005,-5.585707289999888],[155.066254102,-5.588799737999878],[155.08643639400012,-5.595310153999876],[155.08985436300023,-5.595635674999897],[155.09538821700008,-5.608330987999864],[155.10010826900023,-5.631036065999908],[155.12566165500007,-5.660577080999872],[155.14682050900015,-5.706963799999841],[155.16260826900012,-5.729099216999913],[155.16765384200014,-5.733005466999899],[155.17530358200023,-5.735772393999865],[155.1793725920002,-5.73951588299981],[155.18702233200023,-5.752129815999879],[155.19044030000023,-5.756280205999829],[155.19214928500003,-5.765883070999806],[155.18677819100012,-5.801039320999862],[155.19467207100016,-5.817640882999824],[155.20394941500004,-5.853610934999892],[155.21338951900023,-5.869886976999837],[155.22877037900017,-5.865166924999826],[155.24463951900012,-5.87053801899988],[155.261485222,-5.879164320999876],[155.27898196700008,-5.883558851999865],[155.32829837300002,-5.937432549999897],[155.33130944100003,-5.941989841999841],[155.33529707100004,-5.946221612999864],[155.34327233200005,-5.951836846999868],[155.347911004,-5.952732028999861],[155.35938561300023,-5.950941664999874],[155.36426842500012,-5.951836846999868],[155.37037194099997,-5.957289320999806],[155.38135826900017,-5.976006768999866],[155.39568118600008,-5.992445570999862],[155.40381920700005,-6.006036065999822],[155.41439863400004,-6.057875257999825],[155.41830488400004,-6.069024346999853],[155.45215905000006,-6.137139580999886],[155.50277754000015,-6.189222914999917],[155.50831139400006,-6.192071221999868],[155.52125084700018,-6.189222914999917],[155.53052819100006,-6.182224216999856],[155.539317254,-6.171563408999916],[155.551036004,-6.178806247999844],[155.55836022200012,-6.194512627999898],[155.56885826900006,-6.211114190999865],[155.59083092500006,-6.219984632999811],[155.61557050900012,-6.216973565999908],[155.62086022200006,-6.205661716999913],[155.62305748800023,-6.190850518999852],[155.63851972700013,-6.178399346999839],[155.63851972700013,-6.18580494599982],[155.63607832100004,-6.190118096999825],[155.6347762380001,-6.193780205999872],[155.636973504,-6.198500257999882],[155.64535566500015,-6.205743096999896],[155.64161217500023,-6.216973565999908],[155.66578209700006,-6.24114348799982],[155.6759546230002,-6.263929945999847],[155.68376712300008,-6.269463799999855],[155.69385826900023,-6.272881768999866],[155.70386803500006,-6.274021091999899],[155.71387780000012,-6.279229424999897],[155.72250410200002,-6.291192315999837],[155.73487389400023,-6.315036716999913],[155.745941602,-6.330743096999882],[155.75855553500017,-6.343682549999883],[155.7736108730002,-6.352715752999884],[155.79281660200016,-6.355889580999857],[155.81332441499998,-6.36484140399989],[155.82894941499998,-6.386000257999882],[155.85027103000007,-6.431735934999907],[155.87224368600008,-6.461521091999913],[155.89649498800023,-6.488051039999874],[155.91675866000017,-6.517510674999855],[155.926036004,-6.555108330999857],[155.92505944100006,-6.566338799999855],[155.92017662900017,-6.585544528999904],[155.91920006600012,-6.596123955999857],[155.92164147200006,-6.608086846999896],[155.9313257170002,-6.630547783999887],[155.93344160199996,-6.640801690999822],[155.93930097700016,-6.663018487999878],[155.96387780000023,-6.701918226999879],[155.96753991,-6.727146091999842],[155.9609481130002,-6.750176690999822],[155.94752037900005,-6.773207289999874],[155.93018639400023,-6.793633721999853],[155.91236412900017,-6.809014580999885],[155.92286217500023,-6.763441664999931],[155.92448978000007,-6.738213799999883],[155.91578209700018,-6.727146091999842],[155.90748131599997,-6.736993096999868],[155.87818444100017,-6.801527601999837],[155.85352623800011,-6.773532809999907],[155.81641686300006,-6.78215911299982],[155.77947024800002,-6.807549737999835],[155.75521894600016,-6.829522393999851],[155.73031660200004,-6.862399997999844],[155.71778405000012,-6.872816664999917],[155.69703209699998,-6.876641533999845],[155.68588300899998,-6.874607028999904],[155.6676538420002,-6.865166924999897],[155.65560957099999,-6.863051039999888],[155.61068769599999,-6.863051039999888],[155.56804446700005,-6.854099216999855],[155.52361087300002,-6.839125257999825],[155.44678795700023,-6.801527601999837],[155.404551629,-6.76677825299987],[155.39503014400012,-6.761325778999918],[155.37867272200018,-6.756768487999877],[155.3608504570001,-6.745863539999903],[155.33008873800023,-6.719659112999878],[155.32081139400006,-6.70826588299981],[155.30836022200003,-6.686455987999864],[155.18726647200018,-6.554457289999903],[155.17310631600017,-6.527927341999841],[155.19125410200016,-6.528008721999825],[155.19906660200016,-6.530043226999851],[155.20720462300008,-6.534763278999861],[155.22486412900017,-6.500746351999837],[155.23487389400017,-6.454359632999868],[155.23804772200003,-6.4053687479999],[155.23462975400003,-6.363376559999921],[155.2148543630001,-6.317071221999838],[155.18165123800006,-6.291680596999825],[155.08204186300023,-6.262139580999857],[155.04590905000012,-6.242282809999849],[155.02361087300008,-6.223402601999823],[155.00123131600006,-6.215101820999848],[154.99089603000002,-6.208754164999903],[154.98178144600004,-6.199476820999863],[154.97868899800005,-6.192966403999861],[154.97437584700003,-6.171563408999916],[154.95964603000007,-6.130629164999888],[154.94239342500023,-6.111423434999921],[154.93970787900017,-6.106377862999892],[154.93238366000017,-6.097263278999904],[154.88502037900005,-6.075941664999931],[154.85670006600017,-6.04322682099982],[154.83130944100017,-6.026625257999854],[154.81763756600006,-6.015313408999873],[154.806488477,-6.002129815999837],[154.80201256600006,-5.98943450299987],[154.79330488400015,-5.975355726999823],[154.75586998800011,-5.947849216999884],[154.74732506600012,-5.927911065999893],[154.74634850400005,-5.916761976999879],[154.74195397200003,-5.897149346999825],[154.74105879000015,-5.886976820999877],[154.74732506600012,-5.8773739559999],[154.7516382170002,-5.867852471999896],[154.7534285820001,-5.856215101999808],[154.74878991000014,-5.834730726999865],[154.7378035820001,-5.81804778399983],[154.7137150400001,-5.794203382999854],[154.70525149800002,-5.781833591999898],[154.70167076900017,-5.773858330999857],[154.70020592500012,-5.766859632999868],[154.70264733200023,-5.757907809999849],[154.72022545700005,-5.71648528399983],[154.73218834700012,-5.631442966999913],[154.74000084700018,-5.610935153999861],[154.74154707100004,-5.592380466999855],[154.72738691500004,-5.57512786299985],[154.72738691500004,-5.568942966999869],[154.73047936300011,-5.566582940999822],[154.73129316500004,-5.565362237999906],[154.73210696700014,-5.564060153999904],[154.73422285200004,-5.561455987999821],[154.75220787900017,-5.578301690999822],[154.76050866000006,-5.581638278999847],[154.76775149800008,-5.57512786299985],[154.77035566500015,-5.558770440999837],[154.76490319100006,-5.543633721999839],[154.75733483200005,-5.529717705999857],[154.7534285820001,-5.517022393999895],[154.74195397200003,-5.494235934999864],[154.69841556100013,-5.451918226999865],[154.70020592500012,-5.43108489399988],[154.73316491000017,-5.426690362999892],[154.7744246750001,-5.449395440999851],[154.810801629,-5.483575127999842]]],[[[148.1481225920002,-5.448011976999865],[148.120860222,-5.465264580999872],[148.09131920700017,-5.456638278999861],[148.07634524800014,-5.42864348799985],[148.07837975400005,-5.396661065999851],[148.10035241000017,-5.37656015399989],[148.12696373800011,-5.39177825299987],[148.14649498800011,-5.419610283999845],[148.1481225920002,-5.448011976999865]]],[[[147.64779707099999,-5.321221612999906],[147.63868248800011,-5.338474216999913],[147.628672722,-5.347263278999876],[147.60010826900023,-5.362888278999861],[147.57960045700005,-5.33489348799985],[147.57683353000002,-5.334405205999857],[147.56771894600004,-5.33554452899989],[147.56527753999998,-5.33489348799985],[147.56430097700004,-5.330498955999857],[147.56470787900005,-5.326348565999822],[147.56470787900005,-5.32236093499985],[147.56218509200016,-5.318129164999917],[147.56202233200023,-5.307793877999913],[147.5743921230002,-5.297051690999893],[147.59180748800023,-5.288995049999868],[147.60694420700023,-5.287204684999878],[147.62501061300006,-5.289483330999857],[147.63331139400023,-5.298923434999864],[147.63851972700016,-5.310967705999872],[147.64779707099999,-5.321221612999906]]],[[[147.22331790500002,-5.424248955999857],[147.215179884,-5.430352471999853],[147.20948326900023,-5.428887627999884],[147.20386803500003,-5.425062757999868],[147.19605553500006,-5.424248955999857],[147.18531334700006,-5.42864348799985],[147.16187584700006,-5.444756768999823],[147.12720787900017,-5.443291924999855],[147.09913170700005,-5.423760674999869],[147.05827884200002,-5.37656015399989],[147.0211694670002,-5.349297783999901],[147.01042728000016,-5.33489348799985],[147.00513756600006,-5.319431247999916],[147.00440514400012,-5.302015882999854],[147.01042728000016,-5.266696872999915],[147.01807701900023,-5.243910414999888],[147.02751712300002,-5.235446872999858],[147.06511478000007,-5.225030205999872],[147.08008873800006,-5.214939059999891],[147.09522545700005,-5.201918226999823],[147.11255944100014,-5.191827080999857],[147.1339624360002,-5.190850518999881],[147.16846764400023,-5.228610934999935],[147.18238365999997,-5.239353122999859],[147.20582116000017,-5.250176690999851],[147.2089949880002,-5.255791924999855],[147.2096460300002,-5.269952080999872],[147.21176191500004,-5.293877862999834],[147.2182723320001,-5.317315362999821],[147.22901451900012,-5.337009372999858],[147.24382571700016,-5.349216403999918],[147.24382571700016,-5.355401299999897],[147.22901451900012,-5.370782158999845],[147.22632897200006,-5.390313408999916],[147.227305535,-5.409600518999851],[147.22331790500002,-5.424248955999857]]],[[[154.69336998800006,-5.108982028999918],[154.6871850920002,-5.139743747999901],[154.68702233200023,-5.154880466999899],[154.69336998800006,-5.170505466999884],[154.7028100920002,-5.179782809999935],[154.71290123800017,-5.185642184999878],[154.7218530610002,-5.194105726999823],[154.72738691500004,-5.211358330999828],[154.72608483200008,-5.242120049999911],[154.70020592500012,-5.33489348799985],[154.69776451900017,-5.400079033999859],[154.68873131600003,-5.427341403999847],[154.66602623800011,-5.438571872999844],[154.67221113399998,-5.417413018999852],[154.656993035,-5.422539971999853],[154.65015709700018,-5.434747002999842],[154.64429772200006,-5.448825778999876],[154.63184655000012,-5.459079684999892],[154.61410566500004,-5.389743747999844],[154.57390384200002,-5.290704033999873],[154.56983483200005,-5.263278903999904],[154.56218509200002,-5.239678643999881],[154.56218509200002,-5.22527434699991],[154.57325280000006,-5.218845309999892],[154.58008873800011,-5.211358330999828],[154.5831811860002,-5.194512627999828],[154.5826929050002,-5.140313408999873],[154.57764733200005,-5.119561455999872],[154.5632430350001,-5.115166924999883],[154.53565514400006,-5.137465101999837],[154.5415145190002,-5.103285414999931],[154.56478925900015,-5.066338799999883],[154.59571373800003,-5.033949476999879],[154.62435957100016,-5.013360283999859],[154.65707441499998,-5.019707940999879],[154.67904707099999,-5.046563408999873],[154.69076582099996,-5.08066171699987],[154.69336998800006,-5.108982028999918]]],[[[151.19597415500007,-4.951755466999899],[151.17107181100002,-4.956231377999869],[151.15316816500012,-4.953383070999834],[151.1450301440002,-4.946709893999881],[151.1315210300002,-4.938164971999853],[151.11947675900015,-4.925713799999841],[151.12159264400006,-4.914157809999907],[151.13640384200008,-4.901299737999878],[151.14380944100006,-4.89609140399989],[151.16016686300023,-4.888116143999922],[151.17554772200015,-4.887139580999857],[151.18848717500012,-4.89153411299985],[151.20582116000017,-4.901543877999828],[151.22331790500002,-4.918389580999828],[151.22331790500002,-4.933282158999887],[151.20679772200006,-4.947523695999891],[151.19597415500007,-4.951755466999899]]],[[[149.17758222700016,-4.894138278999847],[149.15609785200004,-4.924004815999837],[149.14307701900023,-4.917657158999901],[149.1295679050002,-4.908786716999856],[149.12061608200023,-4.897230726999837],[149.12191816500015,-4.883070570999806],[149.12964928500014,-4.877373955999829],[149.169200066,-4.86248137799987],[149.180430535,-4.879164320999819],[149.17758222700016,-4.894138278999847]]],[[[146.26343834700018,-4.820977471999868],[146.26384524800008,-4.835219007999882],[146.25709069100006,-4.832207940999879],[146.250743035,-4.827813408999972],[146.24935957100004,-4.831719658999887],[146.2495223320001,-4.833916924999883],[146.24838300900015,-4.83489348799985],[146.24333743600002,-4.835219007999882],[146.24732506600012,-4.852308851999823],[146.2322697270001,-4.853285414999888],[146.212657097,-4.842543226999964],[146.20289147200018,-4.824639580999914],[146.20533287900005,-4.809177341999984],[146.212657097,-4.795586846999853],[146.2252710300002,-4.787286065999865],[146.24333743600002,-4.787367445999848],[146.25814863399998,-4.809258721999967],[146.26343834700018,-4.820977471999868]]],[[[149.5490828790001,-4.659763278999876],[149.56177819100006,-4.672784112999864],[149.56706790500002,-4.687595309999935],[149.5659285820001,-4.704278252999885],[149.56381269599999,-4.712823174999983],[149.5602319670002,-4.717950127999913],[149.55152428500006,-4.719903252999869],[149.54786217500006,-4.71493906],[149.54590905000023,-4.707289320999876],[149.54322350400005,-4.701104424999911],[149.53565514400012,-4.690524997999859],[149.53109785200016,-4.678887627999941],[149.5249129570001,-4.668877862999878],[149.51246178500017,-4.663344007999939],[149.4975692070001,-4.666273695999877],[149.492442254,-4.67644622199991],[149.49732506600014,-4.686944268999895],[149.51246178500017,-4.691176039999903],[149.50619550900004,-4.699476820999891],[149.49822024800008,-4.7041968729999],[149.47828209700018,-4.71168385199995],[149.45460045700017,-4.6924781229999],[149.46566816499998,-4.670505466999899],[149.49341881600017,-4.652032158999873],[149.51929772200018,-4.643487237999935],[149.53337649800002,-4.649509372999858],[149.5490828790001,-4.659763278999876]]],[[[145.96485436300003,-4.754815362999878],[145.93921959700012,-4.760918877999956],[145.92481530000023,-4.754815362999878],[145.89226321700008,-4.725030205999872],[145.8869735040001,-4.717950127999913],[145.87916100399997,-4.702732028999932],[145.8757430350001,-4.686781507999839],[145.87631269600013,-4.669366143999866],[145.88070722700016,-4.649590752999842],[145.89576256600017,-4.608086846999839],[145.90650475400017,-4.59050872199991],[145.95590254000015,-4.538995049999841],[145.97535241000006,-4.528985283999845],[145.99683678500017,-4.534274998],[146.01099694100017,-4.5459937479999],[146.048106316,-4.585137627999855],[146.0533960300002,-4.60019296699987],[146.05567467500023,-4.625176690999879],[146.05518639400017,-4.659926039999931],[146.0503035820001,-4.667738539999931],[146.04688561300011,-4.678969007999925],[146.04468834700018,-4.701104424999911],[146.03972415500007,-4.712334893999823],[146.02857506600006,-4.721449476999808],[145.99170983200017,-4.744317315999822],[145.96485436300003,-4.754815362999878]]],[[[154.19214928500014,-4.464613539999931],[154.220388217,-4.476495049999897],[154.24195397200006,-4.498793226999922],[154.25407962300002,-4.526543877999913],[154.25367272200006,-4.554782809999878],[154.232269727,-4.58066171699997],[154.20525149800002,-4.571954033999901],[154.18531334700006,-4.546075127999885],[154.18531334700006,-4.519952080999843],[154.1911727220001,-4.529880466999927],[154.19947350400014,-4.55242278399983],[154.20582116,-4.560967705999843],[154.21697024800002,-4.567966404],[154.22380618600008,-4.567071221999839],[154.23682701900023,-4.55136484199987],[154.24195397200006,-4.527927341999884],[154.22632897200018,-4.50359465899983],[154.2032983730002,-4.483575127999941],[154.18531334700006,-4.472100518999909],[154.183848504,-4.473402601999823],[154.18279056100008,-4.475030205999843],[154.18116295700023,-4.476983330999886],[154.17847741000006,-4.478936455999828],[154.179453972,-4.471937757999854],[154.18262780000006,-4.468682549999983],[154.19214928500014,-4.464613539999931]]],[[[154.15821373800023,-4.438083591999884],[154.15137780000012,-4.438083591999884],[154.14673912900017,-4.417250257999896],[154.13819420700005,-4.39519622199991],[154.134532097,-4.377211195999877],[154.14470462300008,-4.36907317499994],[154.15121504000015,-4.378838799999897],[154.15552819100006,-4.397556247999859],[154.15821373800023,-4.438083591999884]]],[[[152.23340905000006,-4.190362237999821],[152.2457788420002,-4.235121351999851],[152.24350019600016,-4.243096612999906],[152.22925866000006,-4.246189059999892],[152.2231551440002,-4.245782158999887],[152.2055770190001,-4.241957289999874],[152.1987410820001,-4.238702080999914],[152.19581139400006,-4.231052341999899],[152.1935327480002,-4.219170830999843],[152.18848717500006,-4.210137627999842],[152.17758222699996,-4.210870049999869],[152.17204837300008,-4.220310153999876],[152.17261803500006,-4.234795830999829],[152.17758222699996,-4.259209893999881],[152.17790774800014,-4.296807549999882],[152.1857202480002,-4.308526299999869],[152.2055770190001,-4.314548434999878],[152.21094811300006,-4.312269789999903],[152.21753991000006,-4.307712497999859],[152.22673587300014,-4.304457289999988],[152.2397567070001,-4.307061455999985],[152.24740644600004,-4.313653252999885],[152.25440514400012,-4.323011976999823],[152.2631942070001,-4.331312757999896],[152.27686608200023,-4.335056247999916],[152.33855228000004,-4.34189218499985],[152.35645592500012,-4.34189218499985],[152.39820397200003,-4.329196872999887],[152.41236412900014,-4.329359632999854],[152.41797936300017,-4.345310153999861],[152.41456139400023,-4.360446872999859],[152.36524498800006,-4.472100518999909],[152.3608504570001,-4.506524346999853],[152.369395379,-4.540297132999839],[152.39893639400006,-4.60247161299985],[152.40992272200006,-4.641371351999837],[152.41163170700023,-4.683770440999837],[152.39356530000012,-4.748304945999891],[152.38640384200008,-4.791192315999949],[152.32227623800011,-4.891208592],[152.31177819100006,-4.897230726999837],[152.30787194100006,-4.902113539999888],[152.29184004000015,-4.935479424999869],[152.28451582100013,-4.94117603999986],[152.266937696,-4.951918226999865],[152.2462671230002,-4.975192966999884],[152.23243248800011,-4.983086846999853],[152.188731316,-4.988864841999913],[152.1577254570001,-4.999281507999811],[152.13672936300023,-4.999118747999844],[152.08619225400003,-4.987562757999825],[152.07154381600003,-4.986016533999873],[152.05054772200018,-4.980238539999917],[152.038828972,-4.978610934999892],[152.027598504,-4.987725518999881],[152.01417076900012,-4.983086846999853],[151.99268639400006,-4.971774997999873],[151.974375847,-4.984144789999903],[151.96892337300017,-5.004978122999887],[151.97169030000023,-5.123223565999837],[151.97754967500006,-5.148614190999851],[151.98796634200008,-5.163995049999883],[152.038340691,-5.204847914999931],[152.04468834700006,-5.211683851999851],[152.04721113400015,-5.221937757999882],[152.05201256600006,-5.228936455999857],[152.06275475400017,-5.233575127999885],[152.08155358200023,-5.239353122999859],[152.12305748800011,-5.290785414999945],[152.12777754,-5.308200778999918],[152.14747155000018,-5.345798434999907],[152.15040123800011,-5.369724216999884],[152.11980228000007,-5.424248955999857],[152.11451256600017,-5.427015882999825],[152.10889733200008,-5.43336353999986],[152.10450280000012,-5.441338799999897],[152.10254967500023,-5.448174737999835],[152.098887566,-5.455743096999868],[152.08985436300011,-5.457696221999825],[152.07846113400015,-5.457614841999841],[152.06771894600004,-5.459079684999892],[152.02076256600017,-5.483819268999881],[152.01319420700023,-5.489678643999823],[151.97169030000023,-5.534112237999835],[151.96355228000002,-5.536553643999866],[151.93116295700023,-5.540948174999855],[151.89942467500018,-5.553155205999829],[151.88689212300008,-5.554620049999883],[151.8707788420002,-5.562188408999845],[151.85425866000006,-5.578383070999805],[151.83423912900017,-5.592950127999828],[151.80779056100008,-5.595635674999897],[151.78598066500004,-5.584893487999878],[151.75717207099999,-5.548760674999855],[151.7394311860002,-5.534112237999835],[151.72046959700018,-5.528903903999847],[151.69556725400005,-5.527032158999873],[151.67115319100012,-5.529554945999806],[151.6538192070001,-5.537530205999842],[151.63005618600016,-5.570489190999822],[151.6193139980002,-5.57512786299985],[151.60661868600002,-5.571954033999873],[151.6037703790001,-5.564222914999874],[151.6033634770001,-5.554294528999861],[151.598887566,-5.544366143999865],[151.58082116,-5.535332940999851],[151.51343834700018,-5.534112237999835],[151.47901451900017,-5.529880466999913],[151.464121941,-5.534274997999901],[151.45142662900005,-5.547784112999878],[151.44532311300017,-5.569431247999859],[151.45093834700006,-5.586521091999899],[151.460215691,-5.600355726999807],[151.46509850400017,-5.612969658999886],[151.47006269600004,-5.616469007999882],[151.49398847699996,-5.617364190999865],[151.5026147800002,-5.620212497999901],[151.53028405000012,-5.647149346999882],[151.53256269600016,-5.66472747199991],[151.51539147200006,-5.681573174999911],[151.48910566500004,-5.690606377999827],[151.46509850400017,-5.684991143999824],[151.44971764400023,-5.693780205999886],[151.43140709700018,-5.707452080999828],[151.41627037900017,-5.722588799999826],[151.40992272200006,-5.735935153999918],[151.40821373800023,-5.756036065999879],[151.40333092500006,-5.77516041499986],[151.39584394600004,-5.791761976999823],[151.38648522200018,-5.804457289999874],[151.35547936300023,-5.834161065999893],[151.34213300900015,-5.841973565999893],[151.3108016290001,-5.854668877999856],[151.2960718110002,-5.858005466999884],[151.28687584700006,-5.856215101999808],[151.27320397200018,-5.87363046699987],[151.23560631600017,-5.900567315999837],[151.21876061300011,-5.91773853999986],[151.21338951900023,-5.928155205999843],[151.21168053500006,-5.935723565999893],[151.20850670700005,-5.942803643999852],[151.1827905610001,-5.964288018999881],[151.17579186300023,-5.963636976999837],[151.17156009200016,-5.951836846999868],[151.1154077480002,-5.97210051899988],[151.08692467500012,-5.985772393999823],[151.07471764400023,-6.003350518999852],[151.06104576900012,-6.029392184999907],[151.02995853000016,-6.032321872999844],[150.97234134200014,-6.020765882999824],[150.90056399800002,-6.036879164999888],[150.88917076900017,-6.044366143999852],[150.8803817070001,-6.053887627999856],[150.86068769600016,-6.043633721999825],[150.8276473320001,-6.013929945999806],[150.821462436,-6.013929945999806],[150.81714928500006,-6.024834893999866],[150.810801629,-6.036716403999918],[150.80697675899998,-6.048272393999852],[150.81641686300011,-6.071221612999834],[150.81218509200016,-6.083754164999931],[150.80494225400017,-6.095635674999883],[150.7960718110002,-6.120293877999885],[150.7848413420002,-6.127211195999876],[150.76685631600017,-6.130629164999888],[150.73218834700018,-6.144219658999845],[150.69597415500016,-6.150160414999874],[150.68734785200016,-6.154229424999826],[150.6764429050002,-6.163262627999841],[150.671153191,-6.162774346999853],[150.66724694100006,-6.156182549999869],[150.660411004,-6.147393487999821],[150.64576256600012,-6.147067966999884],[150.62501061300011,-6.157647393999838],[150.60564212300008,-6.172784112999834],[150.59489993600005,-6.18580494599982],[150.59205162900005,-6.183851820999876],[150.59058678500017,-6.183851820999876],[150.58961022200018,-6.183200778999918],[150.58806399800008,-6.178399346999839],[150.5522567070002,-6.213555596999896],[150.53060957100016,-6.227797132999811],[150.50928795700005,-6.233656507999853],[150.50074303500017,-6.239190362999864],[150.47624759200002,-6.26531340899983],[150.46509850399997,-6.274021091999899],[150.42139733200023,-6.28606536299982],[150.39535566500015,-6.288750908999887],[150.378591342,-6.28427499799993],[150.36719811300017,-6.279066664999931],[150.35670006600017,-6.283379815999837],[150.34701582100004,-6.290704033999845],[150.33765709700012,-6.294528903999861],[150.33448326900023,-6.292250257999882],[150.33253014400006,-6.287692966999842],[150.329844597,-6.282972914999931],[150.32398522200018,-6.280857028999918],[150.32129967500006,-6.281833591999899],[150.31324303500006,-6.286309502999855],[150.27295983200005,-6.29501718499985],[150.246755405,-6.296970309999891],[150.2286889980002,-6.29111093499985],[150.21949303500006,-6.275485934999863],[150.21322675899998,-6.269952080999842],[150.19166100400017,-6.265557549999869],[150.18555748800011,-6.261000257999825],[150.17790774800008,-6.257989190999822],[150.16342207100004,-6.259698174999826],[150.14649498800023,-6.271172783999859],[150.12525475400017,-6.289646091999884],[150.10336347700002,-6.302666924999869],[150.08472741000006,-6.297946872999873],[150.0822046230002,-6.293389580999828],[150.08130944100006,-6.288262627999899],[150.08155358200005,-6.277439059999907],[150.07943769600016,-6.271742445999834],[150.074473504,-6.26881275799981],[150.06869550900015,-6.266859632999868],[150.05404707100004,-6.257745049999869],[150.04737389400006,-6.262790622999901],[150.03988691500004,-6.280857028999918],[150.03785241000017,-6.282321872999886],[150.02637780000023,-6.287692966999842],[150.0382593110002,-6.297946872999873],[150.03711998800023,-6.307712497999901],[150.0270288420002,-6.315687757999868],[150.01205488400015,-6.321221612999878],[150.01539147200018,-6.306573174999869],[150.0110783210001,-6.291192315999837],[150.00163821700008,-6.278985283999859],[149.98878014400023,-6.274021091999899],[149.97510826900012,-6.276462497999844],[149.95753014400006,-6.283379815999837],[149.939300977,-6.294366143999895],[149.92335045700005,-6.30820077899989],[149.91138756600006,-6.294854424999883],[149.90113366000006,-6.291924737999864],[149.89185631600014,-6.293715101999851],[149.88233483200005,-6.294528903999861],[149.85515384200008,-6.292738539999874],[149.848887566,-6.294528903999861],[149.82300866,-6.289971612999821],[149.72779381600003,-6.287692966999842],[149.72095787900005,-6.290704033999845],[149.702321811,-6.304457289999859],[149.69060306100008,-6.30820077899989],[149.66651451900012,-6.303317966999913],[149.65088951900023,-6.30242278399983],[149.63542728000013,-6.30820077899989],[149.62940514400012,-6.299248955999872],[149.59115644600016,-6.270928643999824],[149.58057701900012,-6.259860934999878],[149.57471764400017,-6.248630466999884],[149.5602319670002,-6.226169528999876],[149.54566491000017,-6.195977471999868],[149.488129102,-6.120049737999835],[149.46404056100008,-6.102634372999872],[149.368418816,-6.075941664999931],[149.34937584699998,-6.063571872999901],[149.337657097,-6.057793877999842],[149.32056725400017,-6.054864190999822],[149.30420983200005,-6.058689059999935],[149.27906334700018,-6.077813408999901],[149.26880944100006,-6.082207940999893],[149.2604272800002,-6.084405205999886],[149.23633873800006,-6.093682549999841],[149.22071373800011,-6.095879815999837],[149.18921959700018,-6.094821872999873],[149.17725670700023,-6.090915622999873],[149.169200066,-6.082207940999893],[149.16293379000015,-6.082207940999893],[149.16521243600002,-6.096612237999864],[149.16049238400004,-6.115411065999822],[149.15170332100016,-6.133233330999886],[149.14185631600006,-6.144219658999845],[149.1279403000002,-6.149183851999808],[149.08790123800023,-6.150485934999891],[149.08057701900012,-6.154961846999853],[149.06527754000015,-6.16187916499986],[149.05290774800014,-6.16171640399989],[149.05307050899998,-6.144219658999845],[149.0616968110002,-6.13958098799982],[149.0737410820001,-6.141289971999825],[149.08057701900012,-6.139336846999868],[149.07357832100004,-6.123793226999865],[149.08008873800023,-6.110039971999853],[149.07325280000012,-6.090915622999873],[149.056488477,-6.074476820999877],[149.03321373800006,-6.068536065999864],[149.04297936300011,-6.051934502999899],[149.05453535200016,-6.038262627999869],[149.060394727,-6.024346612999878],[149.05307050899998,-6.00652434699991],[149.045176629,-6.026055596999882],[149.03646894600004,-6.028008721999839],[149.02605228000002,-6.024346612999878],[149.0120548840001,-6.027601820999834],[148.93604576900017,-5.996758721999868],[148.8940535820001,-5.985609632999853],[148.86817467500006,-5.992852471999868],[148.86052493600008,-5.986748955999886],[148.85385175899995,-5.979750257999811],[148.85889733200023,-5.970635674999826],[148.865082227,-5.962823174999826],[148.87256920700017,-5.956475518999895],[148.88184655000012,-5.951836846999868],[148.87525475400005,-5.942640882999896],[148.8691512380002,-5.941338799999897],[148.8624780610002,-5.941827080999886],[148.85385175899995,-5.938164971999839],[148.84994550899998,-5.931817315999893],[148.84961998800006,-5.925062757999868],[148.84717858200023,-5.919854424999869],[148.83716881600006,-5.91773853999986],[148.804453972,-5.915134372999859],[148.79265384200008,-5.918633721999853],[148.77930748800023,-5.931329033999901],[148.77198326900023,-5.924493096999896],[148.7789819670002,-5.909763278999904],[148.77816816500004,-5.896905205999871],[148.77426191500004,-5.884942315999851],[148.77198326900023,-5.873304945999848],[148.76441491000017,-5.862725518999881],[148.74805748800006,-5.861911716999869],[148.73170006600006,-5.863213799999869],[148.7241317070001,-5.859470309999849],[148.718028191,-5.847588799999883],[148.70362389400023,-5.845879815999879],[148.67562910200002,-5.848809502999899],[148.65919030000023,-5.840508721999839],[148.63575280000023,-5.817071221999853],[148.6211043630002,-5.807875257999882],[148.59742272200006,-5.828301690999851],[148.58334394599999,-5.837985934999907],[148.57016035200004,-5.841973565999893],[148.55152428500006,-5.837009372999844],[148.52125084700006,-5.811618747999916],[148.50513756600014,-5.801039320999862],[148.48414147200006,-5.797051690999879],[148.4371850920002,-5.793715101999865],[148.41944420700023,-5.783949476999823],[148.40984134200002,-5.779961846999839],[148.39722741000017,-5.77890390399989],[148.3862410820001,-5.775079033999873],[148.38160241000017,-5.763441664999859],[148.34669030000023,-5.726006768999837],[148.32894941500015,-5.683770440999893],[148.32471764400023,-5.646416924999855],[148.34205162900005,-5.533298434999921],[148.35971113400015,-5.497816664999931],[148.38672936300011,-5.468519789999917],[148.42253665500016,-5.451592705999843],[148.42741946700008,-5.450616143999866],[148.42839603000007,-5.449965101999823],[148.42823326900006,-5.448500257999854],[148.4299422540001,-5.444756768999823],[148.44581139400012,-5.450778903999918],[148.45769290500007,-5.456801039999917],[148.48113040500004,-5.475762627999841],[148.489024285,-5.48015715899983],[148.50635826900012,-5.483819268999881],[148.51531009200002,-5.489678643999823],[148.52035566500015,-5.497735283999859],[148.52540123800011,-5.516045830999829],[148.52955162900005,-5.5238583309999],[148.556407097,-5.539971612999878],[148.58594811300011,-5.534274997999901],[148.61459394600013,-5.514906507999882],[148.63884524800002,-5.489678643999823],[148.65186608200023,-5.480889580999857],[148.66537519600004,-5.48202890399989],[148.69613691499998,-5.493096612999835],[148.73121178500017,-5.490329684999864],[148.74398847700004,-5.493096612999835],[148.7535913420002,-5.500258070999877],[148.76319420700005,-5.510430596999825],[148.7752384770001,-5.520277601999837],[148.79232832100004,-5.527276299999826],[148.83277428500017,-5.533868096999896],[148.84766686300011,-5.540948174999855],[148.849375847,-5.528252862999892],[148.85547936300011,-5.522149346999896],[148.87501061300011,-5.513604424999882],[148.89063561300006,-5.50115325299987],[148.89698326900012,-5.499607028999918],[148.91244550900004,-5.499281507999811],[148.92603600400017,-5.495538018999866],[148.9780379570002,-5.465264580999872],[149.05534915500007,-5.498711846999839],[149.06739342500018,-5.510349216999842],[149.08480879000015,-5.511895440999879],[149.1596785820001,-5.545993747999887],[149.17302493600002,-5.554620049999883],[149.18140709700018,-5.554864190999837],[149.187754754,-5.555922132999881],[149.19353274800008,-5.559258721999825],[149.19996178500017,-5.565199476999851],[149.2120874360002,-5.583265882999868],[149.21070397200012,-5.582614841999913],[149.21957441500012,-5.594414971999882],[149.22437584700006,-5.599297783999859],[149.35035241000017,-5.585219007999811],[149.37525475400005,-5.57512786299985],[149.390472852,-5.587334893999824],[149.40316816500015,-5.5831031229999],[149.4155379570001,-5.57122161299985],[149.43043053500006,-5.561455987999821],[149.43702233200023,-5.571709893999838],[149.44800866000017,-5.581149997999859],[149.45899498800023,-5.582452080999857],[149.46461022200006,-5.568942966999869],[149.49219811300017,-5.586602471999882],[149.49878991000006,-5.588799737999878],[149.50879967500012,-5.580336195999848],[149.51783287900005,-5.553480726999851],[149.529551629,-5.547784112999878],[149.54786217500006,-5.543633721999839],[149.61491946700008,-5.513604424999882],[149.61768639400012,-5.519219658999887],[149.62110436300023,-5.521905205999857],[149.62484785200013,-5.5238583309999],[149.62916100400017,-5.527276299999826],[149.63477623800017,-5.519219658999887],[149.64307701900023,-5.514825127999899],[149.65284264400003,-5.514906507999882],[149.66325931100005,-5.520440362999892],[149.672618035,-5.511407158999887],[149.67644290500002,-5.500909112999821],[149.6753035820001,-5.489678643999823],[149.6700952480002,-5.4789364559999],[149.67497806100008,-5.478610934999878],[149.676036004,-5.480075778999847],[149.676036004,-5.48300546699987],[149.6769311860002,-5.486423434999878],[149.68580162900017,-5.488213799999855],[149.691661004,-5.503024997999929],[149.6928817070001,-5.522230726999879],[149.68311608200003,-5.552178643999852],[149.69402103000007,-5.561944268999895],[149.70932050900004,-5.567478122999916],[149.7184350920002,-5.568942966999869],[149.73194420700005,-5.563897393999852],[149.74138431100016,-5.556817315999879],[149.75212649800017,-5.550469658999859],[149.76937910200002,-5.547784112999878],[149.7780054050001,-5.544122002999827],[149.7867944670002,-5.53476327899989],[149.792816602,-5.521416924999869],[149.79297936300023,-5.506931247999916],[149.79981530000015,-5.506931247999916],[149.83350670700005,-5.526543877999885],[149.87281334700018,-5.527601820999848],[149.91146894600004,-5.515069268999852],[149.9436955090001,-5.493096612999835],[149.95411217500023,-5.480645440999822],[149.980235222,-5.438083591999856],[149.98536217500023,-5.42083098799985],[149.98194420700023,-5.408786716999842],[149.97315514400023,-5.404473565999837],[149.96176191499998,-5.402276299999855],[149.95069420700023,-5.397067966999856],[149.94214928500006,-5.387302341999913],[149.92644290500007,-5.361260674999841],[149.91651451900017,-5.349216403999918],[149.92335045700005,-5.339288018999824],[149.93140709699998,-5.318129164999917],[149.93685957100016,-5.307549737999864],[149.94239342500006,-5.301446221999882],[149.9547632170002,-5.290785414999945],[149.96159915500002,-5.28378671699987],[149.976410352,-5.272230726999851],[149.9959416020001,-5.261814059999849],[150.01441491,-5.247491143999866],[150.02637780000023,-5.225030205999872],[150.02719160200016,-5.214043877999898],[150.025645379,-5.203789971999882],[150.01954186300011,-5.184747002999885],[150.01758873800006,-5.184014580999857],[150.00586998800006,-5.177341403999904],[150.00570722700004,-5.170098565999879],[150.01075280000023,-5.15911223799982],[150.01433353000002,-5.141534112999892],[150.02409915500007,-5.123467705999872],[150.02637780000023,-5.11239999799993],[150.02409915500007,-5.10662200299987],[150.01433353000002,-5.098077080999842],[150.01205488400015,-5.092461846999853],[150.01319420700008,-5.085544528999847],[150.01563561300023,-5.082452080999857],[150.01823978000002,-5.080254815999865],[150.03492272200006,-5.034356377999884],[150.06902103000007,-5.012139580999843],[150.11255944100017,-5.007745049999855],[150.15658613400004,-5.020196221999868],[150.17888431100008,-5.031182549999826],[150.18995201900006,-5.03866952899989],[150.19760175900004,-5.047539971999839],[150.20240319100012,-5.062107028999876],[150.19947350400017,-5.07057057099982],[150.19385826900006,-5.076918226999851],[150.19092858200017,-5.085056247999859],[150.18197675900004,-5.102471612999835],[150.160899285,-5.112481377999913],[150.11573326900023,-5.123223565999837],[150.09766686300023,-5.136163018999838],[150.0753686860002,-5.15911223799982],[150.06185957100004,-5.181084893999838],[150.07886803500017,-5.201429945999834],[150.0831811860002,-5.22527434699991],[150.08415774800008,-5.250909112999878],[150.08155358200005,-5.266696872999915],[150.074473504,-5.272637627999855],[150.05518639400006,-5.276462497999859],[150.04672285200004,-5.280368747999859],[150.03443444100017,-5.29062265399989],[150.032074415,-5.295179945999834],[150.050140821,-5.311293226999808],[150.05469811300006,-5.320489190999879],[150.0581160820001,-5.342868747999887],[150.08375084700006,-5.383396091999913],[150.1124780610002,-5.442152601999823],[150.11573326900023,-5.455336195999863],[150.11695397200018,-5.473890882999868],[150.12126712300008,-5.495375257999811],[150.12940514400012,-5.516696872999872],[150.14234459700012,-5.534112237999835],[150.1613061860002,-5.546644789999931],[150.18213951900012,-5.552504164999874],[150.25114993600013,-5.557793877999856],[150.27133222700016,-5.563653252999898],[150.28980553500017,-5.566582940999822],[150.30689537900005,-5.561455987999821],[150.314219597,-5.551364841999842],[150.322520379,-5.535251559999878],[150.33253014400006,-5.520196221999853],[150.344493035,-5.513604424999882],[150.35865319100006,-5.508233330999829],[150.38917076900006,-5.484307549999869],[150.39942467500012,-5.4789364559999],[150.411875847,-5.463148695999862],[150.4167586600001,-5.459079684999892],[150.42335045700005,-5.456638278999861],[150.47413170700008,-5.447930596999882],[150.49341881600006,-5.447442315999893],[150.51189212300008,-5.450941664999888],[150.57154381600017,-5.474053643999838],[150.59253991,-5.486993096999839],[150.6017358730002,-5.503106377999913],[150.6059676440001,-5.522067966999912],[150.61744225400005,-5.543389580999886],[150.633962436,-5.556735934999892],[150.65333092500023,-5.551202080999886],[150.6691186860002,-5.542738539999931],[150.70337975400017,-5.539971612999878],[150.71900475400005,-5.534112237999835],[150.74642988400004,-5.512139580999829],[150.75855553500008,-5.497247002999869],[150.76685631600017,-5.4789364559999],[150.76099694100006,-5.466241143999851],[150.76392662900005,-5.456475518999895],[150.77165774800008,-5.452894789999931],[150.77979576900006,-5.459079684999892],[150.80958092500003,-5.443291924999855],[150.8371688160001,-5.452894789999931],[150.85971113399998,-5.474297783999873],[150.87549889400023,-5.493096612999835],[150.9059350920002,-5.490004164999931],[150.9170028000001,-5.486423434999878],[150.92432701900023,-5.480401299999869],[150.94060306100008,-5.459079684999892],[150.96094811300023,-5.453789971999825],[150.98161868600008,-5.440850518999824],[150.99984785200016,-5.424981377999885],[151.01254316500004,-5.410577080999829],[151.02222741000017,-5.390313408999916],[151.02393639400006,-5.369317315999878],[151.02003014400003,-5.324883721999853],[151.02198326900023,-5.303887627999828],[151.0333764980002,-5.25888437299993],[151.05941816500015,-5.200290622999886],[151.08285566500015,-5.163832289999917],[151.10906009200008,-5.132745049999826],[151.13607832100004,-5.108982028999918],[151.14283287900017,-5.105238539999888],[151.15748131600014,-5.099786065999851],[151.16407311300023,-5.095879815999851],[151.18246503999998,-5.071709893999851],[151.19760175899995,-5.061618747999887],[151.22559655000012,-5.020196221999868],[151.23910566499998,-5.006524346999839],[151.241953972,-5.006036065999851],[151.25001061300017,-5.007256768999866],[151.25277754000004,-5.006524346999839],[151.25326582100004,-5.003838799999855],[151.25212649800008,-4.995375257999824],[151.25277754000004,-4.992852471999896],[151.2619735040001,-4.988946221999896],[151.28834069100017,-4.98137786299985],[151.29761803500006,-4.975518487999821],[151.30591881599997,-4.967950127999855],[151.31820722700016,-4.960219007999854],[151.33228600400003,-4.954278252999828],[151.34555097700013,-4.951918226999865],[151.35792076900006,-4.946547132999825],[151.3631291020001,-4.933526299999826],[151.36890709700006,-4.90349700299987],[151.37574303500017,-4.90349700299987],[151.38803144600004,-4.914483330999843],[151.45142662900005,-4.931410414999917],[151.47339928500014,-4.940199476999879],[151.49244225400017,-4.942559502999842],[151.51156660200004,-4.935642184999935],[151.53402754000004,-4.916599216999841],[151.57439212300017,-4.937676690999865],[151.61247806100005,-4.965590101999808],[151.63209069100006,-4.961032809999864],[151.647715691,-4.948988539999945],[151.66041100400017,-4.933282158999887],[151.67896569100014,-4.900160414999945],[151.68572024800014,-4.882256768999895],[151.6901147800002,-4.862074476999865],[151.69166100400003,-4.838636976999879],[151.69263756600006,-4.83570728999986],[151.69467207100016,-4.833591403999861],[151.69695071700002,-4.830498955999872],[151.69792728000016,-4.824639580999914],[151.69564863400004,-4.818780205999886],[151.6910913420002,-4.815687757999896],[151.6863712900001,-4.813734632999854],[151.68425540500007,-4.810967705999971],[151.681407097,-4.799899997999859],[151.66822350400014,-4.77760182099982],[151.6637475920002,-4.766289971999839],[151.66187584700006,-4.726983330999914],[151.66700280000023,-4.646254164999988],[151.65748131600017,-4.608086846999839],[151.63672936300014,-4.579685153999904],[151.62696373800023,-4.561293226999865],[151.6227319670002,-4.537286065999837],[151.62289472700016,-4.49391041499986],[151.61915123800023,-4.474297783999901],[151.60914147200006,-4.451755467],[151.59603925899998,-4.435642184999935],[151.56527753999998,-4.411390882999868],[151.55388431100002,-4.396416924999826],[151.55030358200005,-4.387302341999841],[151.5483504570001,-4.378594658999859],[151.54761803500017,-4.358575127999885],[151.5441186860002,-4.34661223799985],[151.52662194100006,-4.330743096999825],[151.51978600400005,-4.320733330999929],[151.51856530000012,-4.310642184999878],[151.52125084700018,-4.301934502999884],[151.52466881600012,-4.295017184999892],[151.52662194100006,-4.290215752999984],[151.52515709700018,-4.28020598799982],[151.51343834700018,-4.252373955999857],[151.5073348320001,-4.229180596999839],[151.5094507170001,-4.213067315999865],[151.52051842500023,-4.197686455999914],[151.54029381600017,-4.176690362999878],[151.55543053500017,-4.182386976999865],[151.610606316,-4.192559502999984],[151.65015709700006,-4.191013278999947],[151.66358483200023,-4.193536065999879],[151.68148847699996,-4.201592705999914],[151.69166100400003,-4.20468515399989],[151.70427493600002,-4.20281340899983],[151.71713300900015,-4.198907158999845],[151.72584069100006,-4.201348565999865],[151.72575931100008,-4.218357028999932],[151.74268639400023,-4.207696221999981],[151.7627059250001,-4.206149997999943],[151.80453535200004,-4.210870049999869],[151.817149285,-4.213962497999859],[151.85287519600016,-4.230645440999893],[151.86304772200018,-4.238702080999914],[151.86890709700006,-4.257989190999865],[151.873301629,-4.283135674999841],[151.88209069100017,-4.305108330999943],[151.90088951900023,-4.314548434999878],[151.92310631600017,-4.318291924999897],[151.96469160200016,-4.331231377999913],[151.98585045700005,-4.328220309999907],[151.99854576900023,-4.318780205999886],[152.03028405000006,-4.276625257999854],[152.03614342500023,-4.256931247999987],[152.02393639400023,-4.239841403999947],[152.00717207100004,-4.224704684999949],[151.9995223320001,-4.210870049999869],[152.00863691499998,-4.19166432099982],[152.02572675900015,-4.193942966999884],[152.04590905000018,-4.204359632999868],[152.06430097700004,-4.210870049999869],[152.07276451900023,-4.210056247999858],[152.08301842500006,-4.20794036299985],[152.0920516290001,-4.204847914999945],[152.09571373800023,-4.201267184999892],[152.10075931100008,-4.198418877999856],[152.12623131600017,-4.204359632999868],[152.13672936300023,-4.20468515399989],[152.14942467500012,-4.189629815999965],[152.15406334700006,-4.167657158999873],[152.16211998800006,-4.148532809999892],[152.18506920700005,-4.142510674999969],[152.200450066,-4.159844658999958],[152.218516472,-4.173923434999907],[152.23340905000006,-4.190362237999821]]],[[[152.49268639400003,-4.210870049999869],[152.48658287900017,-4.210870049999869],[152.48015384200005,-4.208428643999838],[152.45736738400015,-4.203057549999869],[152.4524031910001,-4.201267184999892],[152.45183353000002,-4.187920830999872],[152.4493921230002,-4.177341404],[152.44304446700008,-4.169122002999828],[152.43132571700008,-4.16301848799985],[152.45704186300023,-4.145765882999839],[152.46501712300008,-4.136407158999901],[152.47291100400005,-4.122165622999887],[152.48340905000012,-4.13193124799993],[152.48658287900017,-4.136325778999918],[152.50310306100005,-4.153497002999842],[152.50619550900015,-4.171970309999864],[152.50123131600012,-4.19117604],[152.49268639400003,-4.210870049999869]]],[[[145.09644616000006,-4.054782809999892],[145.1061304050002,-4.066582940999865],[145.10889733200017,-4.082126559999864],[145.1061304050002,-4.101006768999895],[145.10010826900012,-4.116306247999859],[145.0905054050001,-4.124688408999901],[145.07593834700018,-4.12818775799981],[145.05469811300011,-4.128838799999855],[145.03834069100017,-4.122816664999931],[145.02898196700005,-4.108005466999956],[145.02458743600008,-4.088799737999906],[145.02369225400017,-4.070489190999851],[145.02711022200018,-4.05820077899989],[145.03492272200015,-4.055759372999859],[145.04232832100016,-4.05820077899989],[145.044688347,-4.060642184999921],[145.06185957100016,-4.046563408999972],[145.06934655000012,-4.043226820999948],[145.078868035,-4.047051690999879],[145.09644616000006,-4.054782809999892]]],[[[153.6705835300002,-4.090264580999872],[153.65691165500007,-4.122165622999887],[153.62964928500006,-4.129978122999886],[153.60279381600017,-4.101006768999895],[153.59986412900003,-4.099297783999887],[153.59587649800008,-4.100355726999851],[153.59205162900014,-4.100192966999884],[153.58969160199996,-4.094821873],[153.58985436300017,-4.088067315999879],[153.59197024800005,-4.083591403999918],[153.5944116550002,-4.079522393999865],[153.60108483200003,-4.064548435],[153.61426842500012,-4.048597914999917],[153.61695397200018,-4.043877862999821],[153.6256616550002,-4.032972914999931],[153.64380944100017,-4.022556247999844],[153.66065514400006,-4.022067966999856],[153.664805535,-4.040704033999845],[153.657481316,-4.047051690999879],[153.6705835300002,-4.090264580999872]]],[[[153.74708092500006,-4.014906507999824],[153.7456160820001,-4.030531507999811],[153.73292076900023,-4.040704033999845],[153.7194116550002,-4.038832289999874],[153.70850670700008,-4.030205987999878],[153.69654381600017,-4.023207289999888],[153.67888431100008,-4.026462497999929],[153.68653405000006,-4.016371351999879],[153.70850670700008,-4.006524346999853],[153.7192488940001,-3.999200127999856],[153.73804772200018,-4.001885674999841],[153.74708092500006,-4.014906507999824]]],[[[144.61980228000007,-3.51628997199991],[144.61361738399998,-3.519626559999935],[144.60767662900005,-3.517836195999848],[144.59986412900017,-3.51816171699987],[144.59587649800008,-3.51734791499986],[144.5922957690001,-3.513441664999874],[144.59302819100006,-3.505791924999926],[144.60027103000007,-3.499769789999931],[144.61019941500015,-3.502536716999884],[144.6186629570001,-3.508721612999864],[144.61980228000007,-3.51628997199991]]],[[[153.25896243600002,-3.482354424999869],[153.26010175900007,-3.498955987999821],[153.252207879,-3.494805596999882],[153.25025475400017,-3.495049737999835],[153.24976647200018,-3.497247002999913],[153.24708092500006,-3.498955987999821],[153.23414147200018,-3.488457940999936],[153.20435631600017,-3.478122653999847],[153.19174238399998,-3.470961195999891],[153.221934441,-3.448174737999878],[153.23340905000023,-3.444268487999878],[153.25123131600006,-3.467217705999872],[153.25896243600002,-3.482354424999869]]],[[[153.34782962300008,-3.395684502999828],[153.34327233200023,-3.416273695999948],[153.33090253999998,-3.398858330999886],[153.31153405000006,-3.397149346999882],[153.28923587300002,-3.401950778999876],[153.26758873800023,-3.403252862999863],[153.27247155000012,-3.391778252999913],[153.2807723320001,-3.382500908999873],[153.30160566500015,-3.368584893999895],[153.32789147200018,-3.368584893999895],[153.34278405000023,-3.378676039999859],[153.34782962300008,-3.395684502999828]]],[[[143.58521569100017,-3.378676039999859],[143.56853274800002,-3.378838799999826],[143.54037519600016,-3.367608330999914],[143.53394616000003,-3.36589934699991],[143.52312259200002,-3.36101653399993],[143.50717207100004,-3.347588799999854],[143.508555535,-3.338555596999839],[143.51465905000012,-3.331475518999881],[143.51587975400003,-3.320407809999935],[143.52295983200005,-3.314222914999874],[143.542816602,-3.316827080999872],[143.56885826900017,-3.330173434999963],[143.59392337300005,-3.348728122999887],[143.6002710300002,-3.367608330999914],[143.58521569100017,-3.378676039999859]]],[[[154.73785821500007,-3.441850164999891],[154.73177870800023,-3.460813799999897],[154.70393049400016,-3.402978654999913],[154.6830684580001,-3.349738461999905],[154.64594681000008,-3.296539998999961],[154.61347898800014,-3.241010156999948],[154.5531803470001,-3.206315333999967],[154.59576225100002,-3.211502326999891],[154.62776277300011,-3.226887846999873],[154.6419713070002,-3.262331511999903],[154.66566329100007,-3.30958745299985],[154.7165665490002,-3.393437964999848],[154.73785821500007,-3.441850164999891]]],[[[144.13449858200013,-3.230087855999955],[144.115154725,-3.247934893999939],[144.08092280300005,-3.239055936999904],[144.06156854400015,-3.2153078179999],[144.07347171200004,-3.197472435999984],[144.095799358,-3.188538649999941],[144.12109483200007,-3.215253842999957],[144.13449858200013,-3.230087855999955]]],[[[152.65349368600008,-3.21510182099999],[152.64380944100012,-3.224541924999826],[152.63379967500012,-3.219903252999899],[152.6027124360002,-3.194756768999909],[152.59595787900017,-3.186944268999838],[152.54424285300004,-3.130871498999923],[152.53569467000003,-3.118024310999914],[152.52717974400016,-3.097701447999981],[152.53155693300008,-3.075272107999851],[152.55202871300006,-3.05715246899986],[152.57466065200018,-3.040101097999894],[152.6123961510001,-3.035903068999914],[152.65064537900005,-3.046482028999932],[152.64877363400012,-3.101657809999949],[152.65064537900005,-3.114678643999937],[152.65528405000023,-3.120700778999861],[152.66724694100017,-3.122735283999887],[152.67115319100014,-3.128350518999881],[152.67172285200004,-3.138360283999873],[152.669688347,-3.147067966999941],[152.66431725400017,-3.162530205999871],[152.6506600490001,-3.195351046999875],[152.65349368600008,-3.21510182099999]]],[[[150.98316491,-2.952732028999918],[150.99219811300023,-2.957696221999882],[151.00342858200023,-2.959730726999823],[151.01286868600002,-2.958591403999876],[151.02035566500004,-2.960137627999913],[151.02621504000015,-2.970635674999969],[151.00904381600006,-2.975192966999927],[150.99219811300023,-2.984307549999911],[150.98601321700008,-2.969170830999914],[150.975840691,-2.965915622999872],[150.95045006600017,-2.970635674999969],[150.90650475400017,-2.970635674999969],[150.85694420700023,-2.959567966999856],[150.83497155000012,-2.960137627999913],[150.821462436,-2.977634372999873],[150.80616295700005,-2.971856377999984],[150.79712975400017,-2.975030205999872],[150.78907311300023,-2.981133721999853],[150.77670332099999,-2.984307549999911],[150.7697860040001,-2.979587497999916],[150.77816816500015,-2.968519789999959],[150.80095462300008,-2.950290622999887],[150.81641686300011,-2.953545830999929],[150.84009850400005,-2.938164971999981],[150.88233483200023,-2.903008721999925],[150.94239342500023,-2.923272393999852],[150.9648543630002,-2.936618747999944],[150.98316491,-2.952732028999918]]],[[[152.05128014400023,-2.995212497999901],[152.0253559080002,-2.99607156],[152.00515503600005,-2.967225491999983],[151.99241416200002,-2.944789454999821],[151.9935987700001,-2.909568666999931],[151.98975670700005,-2.896661065999908],[151.97852623800017,-2.893161716999913],[151.96745853,-2.887627862999977],[151.9585067070001,-2.875176690999879],[151.96534264400012,-2.875176690999879],[151.9643660820002,-2.861504815999851],[151.97193444100017,-2.847832940999908],[151.98292076900023,-2.842868747999858],[151.99268639400006,-2.854668877999913],[152.0055444670002,-2.876885674999883],[152.02377363399998,-2.896742445999891],[152.04484589000006,-2.909734735999905],[152.07154381600003,-2.916680596999867],[152.07790849100016,-2.929008939999946],[152.078870959,-2.956761363999973],[152.0627734460002,-2.972736054999856],[152.05128014400023,-2.995212497999901]]],[[[151.99431399800017,-2.802666924999855],[151.9995223320001,-2.814222914999888],[152.00896243600013,-2.808363540000016],[152.01319420700023,-2.806817315999979],[152.00586998800023,-2.82040780999985],[151.98707116000017,-2.831231377999856],[151.96534264400012,-2.8383114559999],[151.9275620870001,-2.851771608999911],[151.9158402290001,-2.844289881999842],[151.91593425900024,-2.813384383999875],[151.9127992560001,-2.788780043999893],[151.90862625600008,-2.753468257999927],[151.91303773600012,-2.705389388000015],[151.93580162900005,-2.705987237999921],[151.978200717,-2.720879815999879],[151.98585045700005,-2.724867445999947],[152.00505618600002,-2.742120049999954],[152.00977623800023,-2.744805596999853],[152.00863691499998,-2.753838799999855],[152.01148522200006,-2.773370049999926],[152.00928795700023,-2.792575778999975],[151.99268639400006,-2.799981377999885],[151.99431399800017,-2.802666924999855]]],[[[152.01661217500023,-2.662774346999839],[151.98243248800017,-2.662774346999839],[151.96021569100012,-2.651543877999842],[151.9602970710001,-2.626722914999959],[151.97559655000023,-2.603122653999932],[151.9995223320001,-2.594496351999922],[152.01539147200006,-2.602715752999842],[152.02857506600017,-2.619073174999855],[152.03679446700008,-2.635186455999914],[152.03736412900005,-2.642347914999945],[152.03419030000006,-2.645603122999987],[152.03142337300014,-2.652601820999891],[152.02654056100008,-2.659600518999952],[152.01661217500023,-2.662774346999839]]],[[[141.12142988400015,-2.607517184999921],[141.1622827480002,-2.615004164999888],[141.19336998800011,-2.615004164999888],[141.20582116000006,-2.619561455999843],[141.21420332099999,-2.62509530999985],[141.22071373800006,-2.630629164999874],[141.22754967500012,-2.634942315999879],[141.23902428500006,-2.637465101999894],[141.26465905000012,-2.638604424999826],[141.27588951900012,-2.642347914999945],[141.28052819100006,-2.648614190999908],[141.29086347700004,-2.669691664999931],[141.29623457099996,-2.676446221999953],[141.30941816500015,-2.671319268999852],[141.33822675899998,-2.701836846999896],[141.36085045700023,-2.710625908999944],[141.38233483200005,-2.713555596999882],[141.57618248800011,-2.794040622999859],[141.80128014400012,-2.900079033999916],[141.83277428500006,-2.905938408999944],[141.83611087300008,-2.913344007999853],[141.83643639400006,-2.923272393999852],[141.84066816500004,-2.933200778999847],[141.88542728000004,-2.963799737999863],[141.90552819100012,-2.967217705999872],[141.9430444670002,-2.960137627999913],[142.0000106130002,-2.955987237999878],[142.01042728,-2.960381768999866],[142.06495201900012,-3.008965752999913],[142.07032311300017,-3.018487237999821],[142.06812584700018,-3.027032158999845],[142.06348717500023,-3.038262627999842],[142.06031334700018,-3.049981377999913],[142.06283613399998,-3.060153903999875],[142.06967207100004,-3.062107028999918],[142.0952254570001,-3.064141533999845],[142.10450280000023,-3.06698984199997],[142.137461785,-3.055596612999835],[142.15935306100008,-3.066013278999904],[142.18189537900005,-3.080173434999935],[142.20386803500006,-3.087497653999847],[142.22657311300011,-3.08945077899989],[142.24154707100004,-3.094414971999839],[142.26954186300023,-3.107842705999843],[142.3947046230002,-3.144463799999855],[142.50196373800006,-3.196058851999907],[142.6155705090001,-3.231052342],[142.81226647200006,-3.290948174999855],[142.83448326900012,-3.293389580999886],[142.84595787900017,-3.296156507999939],[142.87916100400017,-3.313897393999852],[142.89226321700002,-3.315687757999839],[142.90650475400005,-3.316094658999845],[142.91993248800023,-3.318047783999887],[142.948985222,-3.335056247999859],[143.02930748800023,-3.355564059999907],[143.0519311860002,-3.356052341999884],[143.08513431100016,-3.353122653999875],[143.102386915,-3.351657809999907],[143.11866295700023,-3.355564059999907],[143.12549889400017,-3.348077080999843],[143.1422632170002,-3.354913018999852],[143.21119225400005,-3.361748955999957],[143.22071373800023,-3.364922783999845],[143.23951256600017,-3.379082940999865],[143.25220787900005,-3.382256768999838],[143.26441490999997,-3.382989190999865],[143.47787519600004,-3.420586846999853],[143.52295983200005,-3.4359677059999],[143.54037519600016,-3.447686455999886],[143.59791100400005,-3.505059502999899],[143.60792076900012,-3.532972914999945],[143.61207116000014,-3.53980885199995],[143.61866295700023,-3.544854424999897],[143.63445071700008,-3.551446221999868],[143.6425887380001,-3.556573174999969],[143.65088951900006,-3.560723565999837],[143.68043053500006,-3.570245049999911],[143.68433678500006,-3.574314059999963],[143.6932072270001,-3.570082289999945],[143.707774285,-3.559747002999856],[143.71355228000007,-3.559991143999895],[143.72022545700023,-3.562269789999874],[143.72234134200002,-3.568536065999908],[143.71461022200006,-3.580824476999879],[143.72388756600017,-3.593438408999858],[143.734222852,-3.602146091999927],[143.74781334700006,-3.607191664999874],[143.78345787899997,-3.61003997199991],[143.80250084700018,-3.614353122999916],[143.8180444670002,-3.621677342],[143.8551538420002,-3.680108330999901],[143.86768639400012,-3.689141533999987],[143.90894616000006,-3.70769622199991],[143.92367597700016,-3.711195570999806],[143.94711347700004,-3.72234465899983],[143.99586022200006,-3.793145440999837],[144.02149498800011,-3.802992445999863],[144.05469811300023,-3.804945570999819],[144.11988366000006,-3.80055104],[144.1303817070001,-3.802015882999967],[144.14185631600006,-3.80022551899998],[144.1670028000002,-3.80055104],[144.15870201900023,-3.808770440999822],[144.1490991550002,-3.813653252999885],[144.13795006600006,-3.815362237999978],[144.1261499360002,-3.814141533999873],[144.1337996750001,-3.825941664999946],[144.14283287900005,-3.8319638],[144.15259850400017,-3.836602471999881],[144.16334069100017,-3.844659112999906],[144.1788843110002,-3.851250908999972],[144.20362389400015,-3.837823174999897],[144.21827233200005,-3.844659112999906],[144.225840691,-3.859144789999859],[144.2308048840001,-3.865980726999965],[144.23878014400012,-3.86882903399983],[144.2496850920002,-3.867852471999853],[144.25212649800002,-3.865166924999954],[144.25212649800002,-3.860935153999847],[144.25586998800006,-3.855157158999887],[144.26539147200015,-3.844821872999872],[144.27418053500006,-3.83114999799993],[144.27881920700014,-3.81755950299997],[144.27621504000015,-3.807305596999868],[144.30990644600016,-3.798435153999904],[144.35499108200023,-3.798028252999899],[144.4000757170002,-3.803969007999839],[144.43384850400017,-3.814141533999873],[144.44695071700005,-3.811781507999825],[144.49870853000007,-3.813897393999923],[144.51343834700006,-3.81755950299997],[144.52702884200014,-3.831231377999913],[144.53842207100007,-3.846286716999927],[144.54688561300011,-3.863213799999911],[144.5512801440001,-3.883070570999834],[144.5512801440001,-3.968438408999873],[144.55779056100016,-3.979424737999835],[144.5729272800002,-3.990980726999851],[144.58171634200008,-3.995782158999929],[144.59107506600012,-4.000746351999894],[144.60580488399998,-4.006605726999837],[144.73031660200016,-4.026055596999925],[144.76970462300008,-4.040704033999845],[144.79607181100008,-4.063734632999825],[144.8136499360002,-4.075860283999901],[144.84376061300011,-4.084161065999893],[144.86784915500007,-4.099216403999904],[144.87281334700015,-4.104668877999842],[144.87387129000015,-4.1078427059999],[144.87614993600002,-4.109633070999806],[144.87859134200008,-4.112725518999881],[144.87956790500002,-4.11874765399989],[144.87696373800023,-4.125420830999929],[144.86426842500006,-4.130954684999864],[144.85971113400004,-4.136325778999918],[144.85922285200004,-4.148207289999874],[144.86500084700012,-4.161553643999881],[144.87745201900012,-4.172133070999919],[144.92188561300023,-4.180108330999886],[144.939219597,-4.189222914999959],[144.96900475400003,-4.218357028999932],[144.99122155000006,-4.232354424999897],[144.99626712300014,-4.238702080999914],[144.99610436300017,-4.274997654],[144.99968509200002,-4.280368747999887],[145.01417076900006,-4.288669528999947],[145.05095462300008,-4.34189218499985],[145.07781009200008,-4.356622002999842],[145.1813257170002,-4.390232028999861],[145.22120201900006,-4.389825127999856],[145.26417076900012,-4.379571221999824],[145.30689537900005,-4.374688408999859],[145.3457137380002,-4.390232028999861],[145.38672936300017,-4.441501559999892],[145.44809004000012,-4.492608330999872],[145.484141472,-4.534356377999984],[145.49252363399995,-4.549899997999987],[145.51368248800006,-4.578301690999921],[145.52320397200018,-4.584405205999829],[145.53150475400017,-4.584079684999978],[145.53858483200008,-4.581638278999947],[145.54428144599999,-4.581963799999969],[145.559825066,-4.599297783999958],[145.58106530000006,-4.646254164999988],[145.69019616000003,-4.768243096999882],[145.70573978,-4.781833591999927],[145.724457227,-4.789483330999857],[145.74024498800023,-4.799981377999841],[145.74366295700017,-4.804294528999932],[145.77767988399998,-4.814141533999859],[145.78663170700008,-4.823500257999882],[145.8014429050002,-4.842461846999981],[145.8118595710001,-4.861016533999987],[145.80884850400017,-4.869317315999879],[145.79737389400023,-4.878513278999861],[145.79029381600017,-4.899834893999824],[145.78451582100004,-4.94508228999986],[145.785411004,-4.968682549999883],[145.79566491000006,-5.009698174999897],[145.79818769600016,-5.030043226999894],[145.8004663420002,-5.035821221999853],[145.80974368600008,-5.049574476999865],[145.8118595710001,-5.058038018999824],[145.81080162900005,-5.06650155999985],[145.80347741,-5.077894789999917],[145.79818769600016,-5.089043877999842],[145.79900149800008,-5.091729424999826],[145.79656009200014,-5.127536716999927],[145.792246941,-5.149672132999811],[145.79127037900005,-5.160088799999897],[145.79273522200012,-5.202569268999866],[145.79102623800011,-5.220879815999837],[145.78451582100004,-5.239353122999859],[145.74878991000017,-5.289727471999896],[145.74366295700017,-5.311293226999808],[145.74480228000016,-5.319431247999916],[145.74935957100013,-5.334649346999896],[145.75033613400004,-5.345798434999907],[145.7478947270001,-5.358168226999851],[145.72999108200023,-5.390232028999932],[145.72738691500004,-5.422458591999869],[145.73845462300008,-5.453708591999842],[145.75961347700016,-5.476983330999857],[145.78785241000006,-5.486423434999878],[145.84848066500004,-5.475762627999841],[145.87240644600016,-5.482110283999873],[145.8869735040001,-5.513604424999882],[145.893809441,-5.513604424999882],[145.89527428500014,-5.506524346999824],[145.89958743600008,-5.494073174999897],[145.90064537900003,-5.486423434999878],[145.90748131600006,-5.488702080999843],[145.91041100400017,-5.490166924999897],[145.91431725400017,-5.493096612999835],[145.92644290500007,-5.4789364559999],[145.94117272200006,-5.47600676899988],[145.95630944100003,-5.474704684999877],[145.9694930350001,-5.465264580999872],[145.98715254000004,-5.483086846999853],[146.00416100400014,-5.48943450299987],[146.02247155000023,-5.494235934999864],[146.04468834700018,-5.506931247999916],[146.0522567070002,-5.500420830999843],[146.05713951900012,-5.499607028999918],[146.06088300900015,-5.502373955999886],[146.06519616000003,-5.506931247999916],[146.07593834700018,-5.506442966999842],[146.10987389400012,-5.521742445999806],[146.12720787899997,-5.527276299999826],[146.15162194100006,-5.526625257999868],[146.16325931100008,-5.529066664999903],[146.168223504,-5.537530205999842],[146.17286217500023,-5.549493096999882],[146.1840926440002,-5.553155205999829],[146.20915774800002,-5.554620049999883],[146.228282097,-5.563653252999898],[146.23902428500006,-5.566989841999927],[146.25700931100008,-5.561944268999895],[146.26661217500023,-5.567966403999904],[146.27613366000006,-5.576918226999837],[146.28492272200012,-5.582614841999913],[146.29542076900006,-5.582777601999879],[146.31617272200018,-5.57675546699987],[146.32943769599999,-5.57512786299985],[146.34131920700023,-5.575372002999884],[146.3489689460001,-5.577243747999859],[146.367442254,-5.588799737999878],[146.374278191,-5.593438408999901],[146.3829858730002,-5.600762627999913],[146.39380944100012,-5.604099216999841],[146.40707441500004,-5.602959893999895],[146.40088951900017,-5.602959893999895],[146.42286217500006,-5.602797132999839],[146.44239342500023,-5.598809502999869],[146.46094811300017,-5.599297783999859],[146.479746941,-5.612969658999886],[146.48471113400015,-5.62249114399988],[146.48853600400017,-5.63241952899989],[146.49488366,-5.640232028999876],[146.51889082100013,-5.645440362999878],[146.53077233200008,-5.650648695999863],[146.65658613399998,-5.749118747999873],[146.72299238400004,-5.766859632999868],[146.75717207100004,-5.787367445999834],[146.77995853000002,-5.792413018999865],[146.7884220710001,-5.797784112999821],[146.79338626400013,-5.81617603999986],[146.79802493600005,-5.833591403999918],[146.81275475400005,-5.838555596999882],[146.83082116000017,-5.834079684999906],[146.84652754000004,-5.828301690999851],[146.86947675900004,-5.825127862999892],[146.88705488400015,-5.828220309999878],[146.90235436300011,-5.833184502999828],[146.91822350400005,-5.835707289999931],[146.93287194100006,-5.841973565999893],[146.9409285820001,-5.856866143999852],[146.94711347700013,-5.874932549999868],[146.95582116000003,-5.890394789999888],[147.00782311300011,-5.924493096999896],[147.01579837300005,-5.925469658999873],[147.02588951900012,-5.927829684999921],[147.0346785820001,-5.931247653999918],[147.04224694100006,-5.938653252999827],[147.051036004,-5.934665622999844],[147.06511478000007,-5.924493096999896],[147.07601972700002,-5.924004815999908],[147.08228600400014,-5.926039320999834],[147.09351647200018,-5.938164971999839],[147.10661868600002,-5.959161065999865],[147.11646569100017,-5.969008070999806],[147.12086022200006,-5.96249765399989],[147.13282311300006,-5.95769622199991],[147.22510826900012,-5.968845309999921],[147.23438561300006,-5.968845309999921],[147.24382571700016,-5.966078382999868],[147.25562584700006,-5.957207940999822],[147.264903191,-5.94557057099982],[147.27491295700008,-5.935642184999906],[147.28907311300011,-5.931329033999901],[147.29786217500006,-5.933526299999897],[147.3229272800002,-5.945000908999845],[147.32960045700023,-5.944512627999856],[147.33179772200006,-5.942803643999852],[147.33301842500023,-5.939629815999893],[147.33659915500013,-5.934747002999828],[147.343597852,-5.930759372999844],[147.34848066500015,-5.932305596999882],[147.35368899800008,-5.938164971999839],[147.40308678500006,-5.955824476999851],[147.449066602,-5.961602471999896],[147.46656334700006,-5.969414971999896],[147.4801538420002,-5.980238539999888],[147.49146569100017,-5.992852471999868],[147.49545332100016,-5.994886976999807],[147.50733483200008,-5.997653903999861],[147.51140384200008,-6.000258070999863],[147.51368248800023,-6.005547783999845],[147.51539147200006,-6.015883070999847],[147.5175887380002,-6.020765882999824],[147.52442467500023,-6.027601820999834],[147.55160566500015,-6.040622653999918],[147.62175540500002,-6.106622002999841],[147.64844811300023,-6.153985283999886],[147.65845787900005,-6.164727471999896],[147.67465253999998,-6.174248955999886],[147.68433678500006,-6.196872653999861],[147.69214928500006,-6.223809502999828],[147.70313561300011,-6.239353122999916],[147.726247592,-6.272230726999823],[147.80079186300011,-6.309747002999841],[147.8266707690001,-6.335381768999895],[147.83033287900017,-6.349216403999904],[147.8288680350001,-6.358330987999892],[147.82601972700016,-6.366469007999811],[147.8266707690001,-6.377618096999839],[147.83326256600017,-6.390557549999841],[147.84245853000007,-6.400648695999806],[147.85043379,-6.411879164999903],[147.85613040500016,-6.439711195999863],[147.86548912900005,-6.463148695999834],[147.86752363400015,-6.476332289999888],[147.86426842500012,-6.485121351999851],[147.85840905000023,-6.492364190999879],[147.85523522200018,-6.500746351999837],[147.86068769600004,-6.513604424999855],[147.84994550900004,-6.526788018999909],[147.85132897200018,-6.541599216999884],[147.85718834700003,-6.558526299999869],[147.86068769600004,-6.579359632999839],[147.85759524800002,-6.583916924999883],[147.8435164720001,-6.593194268999837],[147.84034264400023,-6.596123955999857],[147.84205162900005,-6.6084937479999],[147.846934441,-6.615166924999855],[147.85352623800011,-6.615899346999882],[147.86068769600004,-6.6097958309999],[147.85401451900006,-6.691013278999903],[147.775645379,-6.717868747999887],[147.60010826900023,-6.727146091999842],[147.59050540500004,-6.733086846999868],[147.57300866,-6.749200127999841],[147.56527753999998,-6.753838799999868],[147.55420983200014,-6.753350518999881],[147.543223504,-6.748793226999837],[147.5323999360002,-6.74578215899983],[147.52125084700018,-6.750420830999857],[147.5031030610002,-6.7549781229999],[147.43620853000007,-6.733330987999821],[147.41325931100008,-6.733493747999872],[147.37208092500012,-6.744235934999878],[147.35059655000006,-6.747002862999849],[147.19483483200023,-6.738539320999806],[147.18238365999997,-6.740166924999826],[147.17676842500012,-6.730157158999845],[147.16928144600004,-6.722426039999931],[147.15967858200014,-6.716729424999855],[147.14763431100005,-6.712823174999855],[147.13209069100006,-6.711032809999864],[147.08277428500017,-6.712823174999855],[147.06934655000018,-6.717054945999877],[147.0444442070002,-6.735935153999904],[147.02784264400006,-6.740166924999826],[146.994395379,-6.738702080999872],[146.97730553500017,-6.740411065999865],[146.96265709700006,-6.747002862999849],[146.9611922540001,-6.771091403999876],[146.94597415500013,-6.812920830999886],[146.942149285,-6.835707289999917],[146.94320722700016,-6.883884372999873],[146.94955488399998,-6.931329033999886],[146.95622806100008,-6.954685153999876],[146.98902428500006,-6.99504973799985],[147.01042728000016,-7.014418226999865],[147.02084394599999,-7.027520440999837],[147.02719160200004,-7.032321872999916],[147.03834069100006,-7.034926039999902],[147.04623457100004,-7.033298434999892],[147.05958092500012,-7.020765882999881],[147.07252037900005,-7.014418226999865],[147.07105553500017,-7.027927341999842],[147.06592858200017,-7.038262627999842],[147.06055748800011,-7.046970309999921],[147.05827884200002,-7.054864190999893],[147.06039472700004,-7.067315362999821],[147.06934655000018,-7.08367278399983],[147.07252037900005,-7.096368096999896],[147.07105553500017,-7.109063408999859],[147.06381269600016,-7.132745049999869],[147.06511478000007,-7.144789320999891],[147.06910241000006,-7.146172783999872],[147.12077884200008,-7.185967705999857],[147.1323348320001,-7.198500257999854],[147.1413680350001,-7.213067315999879],[147.14486738399998,-7.234144789999902],[147.140879754,-7.281426690999865],[147.14763431100005,-7.295017184999921],[147.152598504,-7.30592213299981],[147.14942467500023,-7.310642184999907],[147.14389082100004,-7.314629815999879],[147.1413680350001,-7.322930596999868],[147.14698326900012,-7.332614841999913],[147.15447024800008,-7.350274346999838],[147.15919030000006,-7.380791924999869],[147.16187584700006,-7.390557549999912],[147.17807050900004,-7.416273695999862],[147.18238365999997,-7.425388278999847],[147.18832441500004,-7.429620049999869],[147.19304446700002,-7.433689059999921],[147.19605553500006,-7.438409112999834],[147.19483483200023,-7.444105726999823],[147.18946373800006,-7.447198174999897],[147.18384850400017,-7.449151299999855],[147.18238365999997,-7.452080987999878],[147.18848717500012,-7.462579033999844],[147.19288170700005,-7.463148695999819],[147.1989038420002,-7.46168385199985],[147.2096460300002,-7.466403903999861],[147.2143660820001,-7.473728122999859],[147.21363366000017,-7.48007577899989],[147.216075066,-7.484633070999847],[147.23015384200008,-7.486911716999912],[147.234629754,-7.484144789999859],[147.25123131600017,-7.466403903999861],[147.25757897200012,-7.466403903999861],[147.26343834700006,-7.471286716999927],[147.26807701900006,-7.476332289999859],[147.26889082099999,-7.481622002999842],[147.26433353000007,-7.486911716999912],[147.32471764400017,-7.501397393999867],[147.35450280000006,-7.515313408999845],[147.36744225400017,-7.538344007999812],[147.3712671230002,-7.54859791499993],[147.38021894600004,-7.553643487999864],[147.39087975400014,-7.555596612999821],[147.39893639400012,-7.555759372999872],[147.41382897200006,-7.558200778999904],[147.42310631600012,-7.564629815999837],[147.43116295700023,-7.573174737999849],[147.4430444670002,-7.5824520809999],[147.43482506600017,-7.591566664999888],[147.44060306100008,-7.593926690999851],[147.45264733200017,-7.594170830999886],[147.46290123800011,-7.596774997999888],[147.4873153000002,-7.616306247999873],[147.49887129000015,-7.6290015599999],[147.50391686300011,-7.640801690999893],[147.50326582100016,-7.678317966999912],[147.512950066,-7.687595309999863],[147.56714928500017,-7.696058851999823],[147.58130944100017,-7.703708591999841],[147.5859481130001,-7.71843840899983],[147.58643639400012,-7.744073174999897],[147.59343509200008,-7.764825127999898],[147.606700066,-7.780938408999873],[147.6149194670002,-7.7966447899999],[147.60694420700023,-7.816501559999935],[147.65528405000018,-7.809665622999916],[147.65528405000018,-7.802178643999852],[147.6460067070001,-7.797946872999931],[147.63892662900005,-7.791110934999907],[147.63502037900017,-7.781345309999878],[147.63477623800011,-7.767998955999857],[147.66179446700008,-7.788750908999858],[147.68336022200018,-7.81072356599988],[147.6977645190002,-7.839532158999901],[147.70582116000017,-7.903903903999904],[147.71387780000012,-7.920586846999853],[147.72681725399997,-7.932061455999886],[147.74463951900003,-7.939222914999931],[147.7609155610001,-7.940687757999811],[147.7912703790001,-7.933689059999906],[147.81299889400015,-7.932549737999877],[147.81902103000007,-7.935804945999833],[147.82488040500013,-7.941501559999907],[147.832286004,-7.943536065999837],[147.84376061300023,-7.935804945999833],[147.85320071700008,-7.931817315999851],[147.86491946700008,-7.932793877999828],[147.87647545700005,-7.937188408999901],[147.9235132170002,-7.971449476999879],[147.94556725400017,-7.982598565999893],[147.96729576900023,-7.987074476999865],[147.97494550899998,-7.996677341999841],[147.97738691500004,-8.004082940999837],[147.98926842500006,-8.041436455999886],[147.99854576900023,-8.055352471999868],[148.01807701900012,-8.057712497999916],[148.03882897200012,-8.05282968499985],[148.05640709700006,-8.05095794099988],[148.06617272200018,-8.062758070999848],[148.07715905000023,-8.057061455999872],[148.08863366000017,-8.055759372999873],[148.11402428499997,-8.055352471999868],[148.11931399800005,-8.05201588299984],[148.13502037900005,-8.046075127999899],[148.14633222700004,-8.045668226999808],[148.1381942070001,-8.05917734199987],[148.13754316500015,-8.075372002999828],[148.15821373800006,-8.166273695999806],[148.17286217500006,-8.189222914999874],[148.1782332690002,-8.21819426899988],[148.196543816,-8.254652601999837],[148.20460045700023,-8.277601820999834],[148.21078535200004,-8.306084893999838],[148.21143639400023,-8.334567966999842],[148.20281009200005,-8.357598565999822],[148.2307235040001,-8.41912200299987],[148.23609459700006,-8.441501559999892],[148.23414147200012,-8.45907968499992],[148.22388756600017,-8.494805596999868],[148.22282962300014,-8.513604424999912],[148.22461998800011,-8.534844658999887],[148.22950280000006,-8.554620049999826],[148.237559441,-8.569268487999835],[148.2535913420002,-8.580824476999851],[148.28923587300008,-8.597832940999822],[148.29900149800017,-8.610935153999888],[148.32211347700016,-8.603448174999826],[148.34180748800011,-8.6091447899999],[148.35816491,-8.61931731599985],[148.37126712300008,-8.624607028999918],[148.37875410200004,-8.626560153999876],[148.38656660200004,-8.631931247999916],[148.3927514980002,-8.639580987999864],[148.395274285,-8.648532809999878],[148.40072675900015,-8.65520598799985],[148.436778191,-8.666192315999893],[148.44532311300023,-8.674737237999821],[148.4565535820002,-8.700290622999901],[148.46680748800017,-8.715101820999877],[148.48113040500004,-8.73064544099988],[148.48682701900023,-8.74724700299984],[148.48454837300008,-8.816338799999855],[148.49634850400005,-8.882989190999837],[148.50196373800023,-8.892022393999838],[148.51099694100006,-8.893487237999892],[148.51905358200003,-8.897393487999892],[148.52466881600017,-8.902764580999857],[148.52670332099999,-8.90886809699984],[148.52556399800008,-8.915297132999854],[148.52003014400023,-8.924737237999864],[148.51872806100008,-8.92962004999984],[148.5206811860002,-8.935479424999883],[148.52963300900004,-8.947198174999869],[148.5323999360002,-8.954196872999844],[148.54175866,-8.994317315999865],[148.55925540500007,-9.03248463299984],[148.58562259200008,-9.064060153999918],[148.6211043630002,-9.08375416499986],[148.7078556650001,-9.099379164999945],[148.74317467500012,-9.098239841999913],[148.7583113940001,-9.10369231599985],[148.767425977,-9.1000302059999],[148.80982506600017,-9.090020440999822],[148.82634524800008,-9.089125257999825],[148.83936608200023,-9.086521091999913],[148.8504337900001,-9.082207940999822],[148.87126712300008,-9.070245049999883],[148.88249759200008,-9.061618747999887],[148.89161217500023,-9.051039320999832],[148.89535566499998,-9.0394833309999],[148.9031681650001,-9.042657158999873],[148.92139733200017,-9.044203382999825],[148.94206790500004,-9.042657158999873],[148.95753014400012,-9.036065362999892],[148.9780379570002,-9.05144622199984],[149.00521894600016,-9.049737237999835],[149.06910241000014,-9.035088799999825],[149.07488040500002,-9.032810153999861],[149.07935631600012,-9.029473565999837],[149.08106530000012,-9.026055596999825],[149.08326256600012,-9.016371351999865],[149.08863366000006,-9.012790622999887],[149.09546959700018,-9.011488539999888],[149.10157311300017,-9.008721612999835],[149.1173608730002,-8.9906552059999],[149.12777753999998,-8.981540622999916],[149.14185631600006,-8.97454192499984],[149.15357506600006,-9.003594658999916],[149.24366295700005,-8.997165622999901],[149.26539147200006,-9.015557549999855],[149.27564537900017,-9.010023695999834],[149.28435306100008,-9.008477471999882],[149.29037519600016,-9.012302341999899],[149.292735222,-9.023044528999904],[149.29957116000003,-9.023044528999904],[149.30933678500017,-9.017022393999909],[149.31804446700008,-9.022556247999916],[149.3243921230002,-9.033949476999894],[149.32683353000002,-9.046075127999885],[149.32447350400014,-9.059991143999866],[149.31885826900003,-9.071384372999916],[149.30640709700006,-9.090020440999822],[149.311778191,-9.092868747999859],[149.31560306100002,-9.095391533999873],[149.32007897200018,-9.09710051899988],[149.32683353000002,-9.097588799999869],[149.31080162900005,-9.102959893999824],[149.30250084700006,-9.104099216999856],[149.292735222,-9.10369231599985],[149.30665123800011,-9.11744557099986],[149.32471764400012,-9.120212497999916],[149.33725019600004,-9.124932549999839],[149.334239129,-9.145277601999837],[149.3234969410001,-9.160577080999886],[149.30713951900006,-9.172621351999808],[149.28882897199998,-9.17791106599988],[149.27222741000017,-9.172621351999808],[149.26465905000012,-9.18222421699987],[149.247894727,-9.212172132999854],[149.24488366000008,-9.224216403999861],[149.24268639400012,-9.245782158999873],[149.23340905000023,-9.27906666499986],[149.23121178500014,-9.299493096999838],[149.22364342500012,-9.316013278999904],[149.19044030000012,-9.34392669099985],[149.18287194100006,-9.368096612999864],[149.18726647200006,-9.39072030999992],[149.20639082099999,-9.429375908999873],[149.21070397200012,-9.450778903999918],[149.22657311300023,-9.4867489559999],[149.26319420700017,-9.503513278999918],[149.334239129,-9.51580169099988],[149.36101321700014,-9.529473565999822],[149.3667098320001,-9.534356377999885],[149.37720787900017,-9.54607512799987],[149.38209069100006,-9.54998137799987],[149.38672936300006,-9.550876559999864],[149.39812259200002,-9.549086195999877],[149.4025985040001,-9.54998137799987],[149.41529381600006,-9.561944268999895],[149.41627037900005,-9.563653252999899],[149.450938347,-9.577325127999842],[149.44141686300011,-9.59050872199988],[149.45720462300008,-9.594170830999843],[149.46135501400002,-9.59408945099986],[149.54102623800014,-9.593194268999866],[149.5602319670002,-9.597100518999866],[149.61988366,-9.62086353999986],[149.6355086600001,-9.619398695999806],[149.65308678500006,-9.60767994599982],[149.66285241000017,-9.603610934999864],[149.67310631600017,-9.605157158999901],[149.687347852,-9.610772393999895],[149.69752037900005,-9.608819268999852],[149.72144616,-9.59978606599985],[149.73096764400012,-9.597832940999893],[149.75375410200002,-9.600762627999828],[149.79297936300023,-9.61451588299984],[149.84001712300008,-9.620212497999916],[149.88851972700004,-9.63876718499992],[149.91130618600005,-9.640069268999824],[149.97486412900017,-9.631280205999857],[150.0009871750001,-9.634047132999825],[150.01221764400012,-9.642185153999918],[150.02637780000023,-9.672946872999901],[150.0343530610002,-9.678969007999825],[150.04200280000012,-9.680271091999913],[150.0488387380002,-9.684502862999835],[150.05355879000015,-9.700127862999821],[150.05591881600012,-9.71502044099988],[150.05469811300006,-9.717950127999899],[150.04769941500004,-9.717054945999804],[150.03248131600006,-9.720635674999867],[149.97836347700016,-9.748304945999877],[149.95875084700018,-9.755466403999904],[149.88851972700004,-9.769138278999847],[149.84986412900017,-9.7810197899999],[149.826426629,-9.783135674999912],[149.80665123800011,-9.775323174999826],[149.7936304050002,-9.78728606599985],[149.74659264400006,-9.80095794099988],[149.73096764400012,-9.809340101999851],[149.72095787900005,-9.830661716999913],[149.72535241,-9.847832940999837],[149.75196373800023,-9.87900155999992],[149.82520592500012,-9.93767669099985],[149.856700066,-9.97519296699987],[149.8545028000001,-10.014906507999868],[149.8797306650001,-10.016778252999842],[149.89576256600017,-10.02320728999986],[149.92676842500006,-10.053643487999821],[149.93946373800023,-10.062432549999869],[149.95753014400006,-10.07000090899983],[149.9773055350001,-10.075453382999868],[149.995371941,-10.077569268999866],[150.05298912900017,-10.074639580999857],[150.07422936300017,-10.077569268999866],[150.09376061300023,-10.083591403999876],[150.12867272200018,-10.104587497999916],[150.1359155610002,-10.106052341999884],[150.14975019599996,-10.104913018999852],[150.15886478000016,-10.102146091999884],[150.17725670700023,-10.093194268999852],[150.18751061300023,-10.091241143999907],[150.1967879570001,-10.095147393999895],[150.20394941500015,-10.104261976999808],[150.21469160200016,-10.12167734199987],[150.24626712300008,-10.131280205999843],[150.25367272200006,-10.135674737999835],[150.269297722,-10.156426690999822],[150.28777103000007,-10.17197030999992],[150.30103600400017,-10.179294528999918],[150.341075066,-10.186781507999811],[150.38217207099999,-10.201592705999872],[150.40414472700004,-10.206149997999916],[150.423594597,-10.20045338299984],[150.43002363400004,-10.202406507999882],[150.44166100400005,-10.20305754999984],[150.45281009200008,-10.201592705999872],[150.45777428499997,-10.197035414999915],[150.49927819100012,-10.206719658999887],[150.52426191500004,-10.21648528399983],[150.53500410200004,-10.214939059999878],[150.55054772200003,-10.203545830999829],[150.5593367850001,-10.201836846999823],[150.6017358730002,-10.206719658999887],[150.59636478000002,-10.214288018999838],[150.58326256600017,-10.228448174999853],[150.58122806100002,-10.234633070999832],[150.58765709700006,-10.244724216999884],[150.61036217500006,-10.259698174999826],[150.61540774800014,-10.272556247999844],[150.6272078790001,-10.277927341999899],[150.65381920700023,-10.274509372999887],[150.71843509200008,-10.25872161299985],[150.783539259,-10.25562916499986],[150.79867597700004,-10.250583591999842],[150.82862389400006,-10.22722747199984],[150.84815514400023,-10.220961195999891],[150.87403405000018,-10.22470468499992],[150.8713485040001,-10.236748955999843],[150.85279381600017,-10.249769789999917],[150.81226647200018,-10.259698174999826],[150.68881269600004,-10.325453382999811],[150.653086785,-10.338474216999884],[150.61540774800014,-10.344496351999808],[150.59848066500015,-10.344333591999842],[150.59294681100013,-10.342217705999829],[150.58806399800008,-10.337660414999874],[150.56836998800011,-10.339450778999861],[150.52320397200006,-10.321465752999828],[150.50228925900004,-10.316582940999865],[150.46045983200005,-10.31389739399988],[150.44076582100004,-10.308851820999848],[150.42676842500006,-10.300062757999882],[150.3999129570001,-10.300225518999852],[150.36646569100006,-10.326918226999865],[150.34693444100006,-10.365329684999878],[150.36150149800008,-10.399672132999838],[150.36638431100008,-10.400160414999915],[150.3680119150001,-10.399021091999884],[150.36890709700018,-10.392266533999845],[150.3834741550002,-10.400079033999845],[150.42896569100017,-10.402276299999826],[150.44752037900017,-10.409600518999838],[150.45573978000007,-10.4144833309999],[150.46656334700015,-10.417657158999873],[150.49984785200016,-10.422621351999823],[150.50993899800002,-10.428480726999865],[150.5260522800002,-10.440606377999856],[150.64730879000012,-10.476983330999843],[150.67066491000006,-10.495863539999874],[150.67750084700006,-10.530043226999865],[150.68921959700006,-10.546319268999895],[150.6928817070001,-10.556735934999878],[150.68734785200016,-10.56755950299987],[150.67188561300023,-10.57683684699984],[150.55062910200004,-10.620863539999931],[150.53972415500002,-10.615411065999893],[150.53598066500004,-10.612725518999824],[150.50928795700005,-10.618829033999901],[150.49488366,-10.619398695999877],[150.48698978000007,-10.621677341999856],[150.47136478000007,-10.632500908999845],[150.46957441500012,-10.636651299999883],[150.45980879000004,-10.648532809999935],[150.44906660200004,-10.658379815999865],[150.44410241000017,-10.656914971999896],[150.44109134200008,-10.660577080999857],[150.43482506599997,-10.665704033999859],[150.42953535200004,-10.674248955999886],[150.42986087300008,-10.68767669099988],[150.41570071700002,-10.68189869599982],[150.39820397200018,-10.681084893999895],[150.38119550900004,-10.68352629999984],[150.36890709700018,-10.68767669099988],[150.35645592500023,-10.664971612999835],[150.34009850400003,-10.65781015399989],[150.31934655000023,-10.662041924999912],[150.27295983200005,-10.685723565999837],[150.27271569100006,-10.68767669099988],[150.265879754,-10.685723565999837],[150.25717207100004,-10.681573174999883],[150.25098717500023,-10.67693450299987],[150.2516382170002,-10.674086195999832],[150.24097741000017,-10.67799244599982],[150.23080488400004,-10.684340101999851],[150.21127363400015,-10.701348565999822],[150.20435631600006,-10.693047783999845],[150.1806746750002,-10.677178643999907],[150.17798912900003,-10.670668226999823],[150.18189537900005,-10.664646091999899],[150.1877547540001,-10.657891533999873],[150.19092858200017,-10.649834893999838],[150.18018639400023,-10.643243096999868],[150.15626061300003,-10.647149346999853],[150.13086998800023,-10.656670830999857],[150.11573326900023,-10.66668059699984],[150.09937584700006,-10.645114841999927],[150.09457441500015,-10.63990650799984],[150.08480879000004,-10.635674737999821],[150.08082116000006,-10.638116143999852],[150.07691491000006,-10.641371351999808],[150.06739342500023,-10.63990650799984],[150.0542098320001,-10.623793226999865],[150.04672285200004,-10.618829033999901],[150.04004967500003,-10.618340752999826],[150.03174889400012,-10.619398695999877],[150.0222274100001,-10.618584893999866],[150.01205488400015,-10.611993096999896],[150.03060957100016,-10.600030205999857],[150.02849368600008,-10.588799737999864],[150.01832116,-10.578057549999853],[150.01205488400015,-10.56755950299987],[150.00879967500012,-10.563734632999868],[150.00196373800011,-10.572930596999838],[149.99219811300023,-10.591485283999845],[149.98373457100004,-10.591729424999883],[149.97478274800008,-10.588474216999842],[149.95875084700018,-10.577813408999901],[149.96094811300006,-10.573500257999811],[149.9643660820001,-10.556817315999865],[149.95378665500002,-10.566013278999932],[149.95069420700023,-10.57097747199988],[149.9436955090001,-10.57097747199988],[149.93775475400005,-10.561781507999825],[149.92514082100016,-10.553887627999842],[149.8960067070001,-10.543633721999825],[149.90284264400023,-10.556817315999865],[149.8995874360002,-10.557875257999825],[149.89698326900006,-10.557875257999825],[149.89576256600017,-10.559177341999913],[149.8960067070001,-10.564222914999945],[149.88640384200002,-10.55868905999992],[149.87647545700023,-10.554620049999867],[149.86597741000017,-10.551934502999885],[149.8545028000001,-10.55046965899983],[149.86597741000017,-10.538832289999917],[149.88160241000003,-10.533868096999868],[149.89405358200017,-10.527032158999859],[149.8960067070001,-10.508965752999842],[149.890472852,-10.511651299999825],[149.8761499360002,-10.51580169099985],[149.88021894600013,-10.5082333309999],[149.88624108200005,-10.502536716999913],[149.89372806100002,-10.498467705999872],[149.90284264400023,-10.495863539999874],[149.9096785820002,-10.506931247999901],[149.92042076900023,-10.507907809999878],[149.9472762380002,-10.502129815999822],[149.99195397200012,-10.513929945999891],[150.03809655000012,-10.49976978999986],[150.04672285200004,-10.495863539999874],[150.0490014980002,-10.490166924999883],[150.05128014400006,-10.473321221999882],[150.05355879000015,-10.467950127999828],[150.059336785,-10.465508721999896],[150.08155358200005,-10.461114190999822],[150.06853274800005,-10.45566171699987],[150.055023634,-10.454766533999873],[150.0411889980002,-10.455336195999848],[150.02637780000023,-10.454359632999868],[150.01587975400017,-10.44988372199991],[149.995371941,-10.436618747999873],[149.97396894600016,-10.432712497999887],[149.96216881600012,-10.427504164999888],[149.9547632170002,-10.426446221999838],[149.95069420700023,-10.428643487999835],[149.94418379000015,-10.438409112999864],[149.94027754000015,-10.440606377999856],[149.93848717500006,-10.447360934999892],[149.93604576900023,-10.46249765399989],[149.93165123800017,-10.478610934999864],[149.92335045700005,-10.48845794099988],[149.91578209700006,-10.481866143999909],[149.9116317070001,-10.475030205999886],[149.90992272200015,-10.4672177059999],[149.9096785820002,-10.457696221999894],[149.90788821700008,-10.44988372199991],[149.9038192070001,-10.446465752999899],[149.89926191500015,-10.444268487999821],[149.8960067070001,-10.440606377999856],[149.88746178500017,-10.415948174999869],[149.88184655000006,-10.406426690999865],[149.87208092500023,-10.396091403999861],[149.84571373800023,-10.379978122999887],[149.79053795700008,-10.363051039999903],[149.76937910200002,-10.348239841999842],[149.7483830090001,-10.338311455999829],[149.71517988400015,-10.334893487999821],[149.649668816,-10.337660414999874],[149.61605878999995,-10.344903252999899],[149.59766686300023,-10.346368096999866],[149.57260175900015,-10.337497653999918],[149.5620223320001,-10.344496351999808],[149.54965254000015,-10.350681247999873],[149.532969597,-10.344496351999808],[149.52613365999997,-10.351983330999872],[149.53980553500006,-10.358086846999852],[149.53980553500006,-10.364922783999873],[149.50879967500012,-10.364922783999873],[149.50074303500017,-10.361260674999826],[149.49773196700008,-10.343519789999915],[149.49122155000006,-10.337660414999874],[149.48031660200002,-10.339776299999881],[149.47144616000017,-10.34775155999985],[149.46062259200008,-10.352308851999894],[149.44353274800014,-10.344496351999808],[149.4547632170001,-10.337497653999918],[149.4549259770001,-10.330824476999865],[149.447113477,-10.325941664999888],[149.42188561300023,-10.32097747199984],[149.41879316500015,-10.313571872999859],[149.41814212300017,-10.30364348799985],[149.41285241000006,-10.293226820999863],[149.368418816,-10.276136976999823],[149.35547936300011,-10.281833591999899],[149.33692467500012,-10.301690362999906],[149.32683353000002,-10.3103166649999],[149.31478925900004,-10.302178643999895],[149.29493248800011,-10.295586846999825],[149.2729598320001,-10.291436455999872],[149.25473066500004,-10.289808851999851],[149.24170983200023,-10.286553643999909],[149.16968834700018,-10.249769789999917],[149.15503991000014,-10.24431731599988],[149.12842858200023,-10.240899346999868],[149.11011803500017,-10.235772393999866],[149.10157311300017,-10.234633070999832],[149.08220462300002,-10.237562757999854],[149.07325280000012,-10.237969658999859],[149.06739342500018,-10.234633070999832],[149.04411868600008,-10.243910414999872],[149.03223717500012,-10.247165622999916],[149.02230879000004,-10.24822356599988],[149.0089624360002,-10.25212981599988],[148.9969181650001,-10.260837497999859],[148.9865014980002,-10.27027760199988],[148.9780379570002,-10.276136976999823],[148.95826256600003,-10.278090101999865],[148.93921959700006,-10.27141692499991],[148.87126712300008,-10.238376559999864],[148.85922285200016,-10.235528252999826],[148.84400475400014,-10.234633070999832],[148.79232832100004,-10.242120049999883],[148.77963300900015,-10.241631768999895],[148.76124108200023,-10.236016533999901],[148.74781334700006,-10.234633070999832],[148.73780358200023,-10.230075778999876],[148.74000084700006,-10.208184502999842],[148.73096764400023,-10.20045338299984],[148.73316491,-10.197198174999883],[148.73568769600004,-10.190362237999864],[148.73780358200023,-10.186781507999811],[148.72754967500012,-10.187188408999901],[148.7241317070001,-10.186781507999811],[148.72950280000018,-10.175225518999866],[148.73755944100012,-10.169122002999885],[148.74822024800002,-10.166680596999852],[148.76172936300011,-10.166273695999847],[148.767425977,-10.158298434999892],[148.7583113940001,-10.143487237999821],[148.74480228000002,-10.136000257999854],[148.73780358200023,-10.149834893999852],[148.73292076900006,-10.15691497199991],[148.72185306100002,-10.15585702899986],[148.71021569100003,-10.150974216999884],[148.70362389400023,-10.14641692499984],[148.69898522200006,-10.137465101999823],[148.68930097700016,-10.104913018999852],[148.6831160820001,-10.104913018999852],[148.67660566500004,-10.145277601999808],[148.66911868600002,-10.164483330999857],[148.65186608200023,-10.172539971999896],[148.64161217500012,-10.183770440999893],[148.63868248800006,-10.187920830999843],[148.632090691,-10.186293226999823],[148.6211043630002,-10.180596612999835],[148.57390384200008,-10.180596612999835],[148.55054772200018,-10.17400481599985],[148.53785241,-10.172295830999857],[148.5323999360002,-10.176527601999865],[148.52711022200012,-10.184991143999824],[148.51482181100008,-10.190199476999808],[148.50017337300002,-10.192803643999895],[148.421641472,-10.193780205999872],[148.40202884200008,-10.20045338299984],[148.3370874360002,-10.175469658999916],[148.32691491000006,-10.162855726999837],[148.31812584700018,-10.142266533999901],[148.29900149800017,-10.127129815999893],[148.28012129000015,-10.123955987999835],[148.27230879000015,-10.138929945999877],[148.25782311300023,-10.129815362999878],[148.24577884200016,-10.117445570999848],[148.23129316500015,-10.10564544099988],[148.21021569100006,-10.098077080999829],[148.2011824880002,-10.097751559999892],[148.1827905610002,-10.09921640399986],[148.17603600400005,-10.098077080999829],[148.16993248800017,-10.092461846999825],[148.16342207100016,-10.077732028999932],[148.15503991,-10.070733330999857],[148.14291425900004,-10.105889580999829],[148.10377037900017,-10.128187757999854],[148.05600019600004,-10.135430596999882],[148.01832116000006,-10.124769789999945],[148.00342858200008,-10.148370049999881],[147.99236087300008,-10.158949476999837],[147.97738691500004,-10.166273695999847],[147.95899498800006,-10.154961846999866],[147.94776451900006,-10.136000257999854],[147.93930097700004,-10.115166924999867],[147.929047071,-10.098077080999829],[147.91334069100006,-10.088799737999878],[147.89747155000012,-10.090915622999887],[147.87867272200018,-10.096612237999864],[147.85401451900006,-10.098077080999829],[147.85401451900006,-10.091241143999907],[147.872894727,-10.085137627999828],[147.8815210300002,-10.069105726999837],[147.87964928500006,-10.052178643999852],[147.86752363400015,-10.043389580999886],[147.8590600920002,-10.04485442499984],[147.85254967500012,-10.05006275799984],[147.84839928500017,-10.05787525799984],[147.8447371750001,-10.078545830999843],[147.839121941,-10.07634856599985],[147.8266707690001,-10.06324635199988],[147.78541100400005,-10.054457289999917],[147.76172936300023,-10.059747002999899],[147.72364342500023,-10.098077080999829],[147.71680748800023,-10.098077080999829],[147.69939212300005,-10.014906507999868],[147.6901147800002,-10.013278903999847],[147.67725670700005,-10.008965752999856],[147.66635175900004,-10.003676039999874],[147.66146894600004,-9.998711846999825],[147.65650475400017,-9.991631768999866],[147.6447046230002,-9.989841403999876],[147.63119550900015,-9.990004164999931],[147.62126712300002,-9.988864841999899],[147.60840905000012,-9.979913018999866],[147.57276451900017,-9.945245049999896],[147.56527753999998,-9.9301083309999],[147.55974368600008,-9.914483330999914],[147.54639733200005,-9.901788018999852],[147.53052819100003,-9.890557549999853],[147.5175887380002,-9.87900155999992],[147.50953209700018,-9.864922783999887],[147.50538170700017,-9.849053643999852],[147.50391686300011,-9.806329033999845],[147.50017337300008,-9.785821221999882],[147.49097741000017,-9.767673434999892],[147.40113366000017,-9.651950778999876],[147.37419681100013,-9.625095309999878],[147.36443118600008,-9.611911716999842],[147.3561304050002,-9.595391533999859],[147.34498131600017,-9.580254815999865],[147.3263452480002,-9.570489190999822],[147.31959069100006,-9.577325127999842],[147.31885826900012,-9.554864190999837],[147.31006920700017,-9.538832289999945],[147.29590905000023,-9.52695077899989],[147.2780054050002,-9.51580169099988],[147.26197350400017,-9.508721612999821],[147.24968509200002,-9.508070570999863],[147.24626712300014,-9.516534112999821],[147.25757897200012,-9.536309502999842],[147.23438561300006,-9.537774346999896],[147.20313561300011,-9.528252862999892],[147.17261803500017,-9.51327890399986],[147.15105228000007,-9.498467705999886],[147.14519290500013,-9.48691171699987],[147.14014733200005,-9.45330169099985],[147.1339624360002,-9.440118096999896],[147.12224368600002,-9.431247653999847],[147.10987389400006,-9.428155205999857],[147.095957879,-9.42945728999986],[147.07935631600006,-9.433282158999873],[147.08448326900017,-9.441501559999878],[147.10035241000017,-9.446709893999866],[147.10661868600002,-9.45378997199984],[147.10906009200008,-9.46493905999985],[147.1076766290001,-9.474541924999825],[147.1041772800002,-9.480726820999804],[147.09994550899998,-9.481703382999868],[147.09978274800014,-9.481703382999868],[147.08838951900023,-9.48137786299985],[147.0699975920002,-9.473402601999894],[147.05274498800011,-9.46021900799984],[147.039805535,-9.428969007999868],[147.0138452480002,-9.390394789999903],[147.00416100400003,-9.371840101999808],[146.99170983200023,-9.323174737999864],[146.98275800900004,-9.301039320999877],[146.96607506600014,-9.27906666499986],[146.9464624360002,-9.273125908999845],[146.90552819100014,-9.28199635199988],[146.89486738400015,-9.268243096999868],[146.90699303500006,-9.265801690999837],[146.9158634770001,-9.260349216999899],[146.919200066,-9.252129815999893],[146.91488691500004,-9.241469007999868],[146.90552819100014,-9.235121351999837],[146.896332227,-9.210870049999855],[146.89486738400015,-9.181247653999904],[146.90853925899998,-9.158949476999865],[146.90300540500007,-9.154229424999855],[146.8976343110002,-9.147719007999866],[146.89242597700004,-9.140069268999838],[146.8881942070001,-9.131605726999894],[146.89584394600004,-9.128350518999852],[146.91488691500004,-9.124200127999899],[146.93783613400004,-9.108575127999826],[146.942149285,-9.107517184999864],[146.94849694100003,-9.09734465899983],[146.97681725400017,-9.07610442499984],[146.98365319100012,-9.063409112999878],[146.98308353000002,-9.053399346999882],[146.97999108200023,-9.04257577899989],[146.97535241,-9.033461195999806],[146.96949303500017,-9.029229424999883],[146.95655358200005,-9.031996351999851],[146.9503686860002,-9.041680596999896],[146.949473504,-9.051853122999844],[146.95264733200005,-9.056573174999853],[146.95150800900015,-9.063571872999844],[146.92025800900015,-9.095147393999838],[146.90853925899998,-9.10369231599985],[146.87281334700006,-9.106540622999887],[146.84205162900017,-9.09319426899988],[146.81218509200008,-9.073337497999873],[146.77833092500012,-9.056573174999853],[146.76636803500017,-9.054375908999859],[146.74822024800008,-9.057386976999865],[146.73666425900012,-9.056573174999853],[146.72925866000017,-9.053399346999882],[146.71501712300008,-9.04461028399983],[146.64551842500023,-9.02939218499985],[146.62680097700007,-9.023044528999904],[146.60181725400017,-9.00603606599985],[146.5859481130002,-8.98365650799984],[146.573496941,-8.960381768999824],[146.55844160199996,-8.940524997999901],[146.562754754,-8.927178643999895],[146.56006920700023,-8.911228122999887],[146.55420983200005,-8.897719007999825],[146.5483504570002,-8.892022393999838],[146.554453972,-8.882582289999917],[146.55640709700018,-8.864190362999878],[146.561859571,-8.85116952899989],[146.5791121750001,-8.858005466999899],[146.59400475400017,-8.846286716999913],[146.60450280000023,-8.834161065999837],[146.60914147200015,-8.820000908999901],[146.60645592500006,-8.802015882999868],[146.59245853000002,-8.815850518999866],[146.57585696700008,-8.821954033999859],[146.56592858200005,-8.818129164999931],[146.57211347700004,-8.802015882999868],[146.56714928500017,-8.798109632999868],[146.562754754,-8.792738539999903],[146.5597436860002,-8.786065362999864],[146.55844160199996,-8.778497002999899],[146.55323326900012,-8.76580169099985],[146.5411889980002,-8.763360283999901],[146.52833092500018,-8.765069268999824],[146.520762566,-8.765232028999876],[146.51661217500006,-8.757094007999868],[146.51661217500006,-8.747002862999892],[146.5177514980002,-8.736586195999818],[146.51693769600004,-8.726983330999829],[146.51246178500006,-8.714939059999907],[146.50709069100017,-8.705254815999865],[146.45948326900012,-8.65211353999986],[146.44703209700015,-8.634535414999917],[146.44190514400006,-8.621189059999907],[146.43531334700018,-8.610609632999868],[146.38721764400023,-8.582940362999864],[146.363047722,-8.560967705999857],[146.277191602,-8.435235283999845],[146.26498457100004,-8.4047177059999],[146.26384524800008,-8.364515882999825],[146.26099694100006,-8.356133721999853],[146.2524520190001,-8.344414971999868],[146.250743035,-8.340264580999829],[146.250743035,-8.309258721999896],[146.24488366000017,-8.29225025799984],[146.23511803500006,-8.274346612999878],[146.22193444100014,-8.260430596999894],[146.1889754570001,-8.248223565999837],[146.15984134200008,-8.219984632999868],[146.15113366000017,-8.213636976999837],[146.12745201900023,-8.210137627999842],[146.11654707100016,-8.200127862999864],[146.09986412900005,-8.165215752999842],[146.1128035820002,-8.15439218499985],[146.10987389400012,-8.138116143999909],[146.09848066500015,-8.121758721999896],[146.08562259200014,-8.110609632999868],[146.09587649800008,-8.106215101999894],[146.10279381600003,-8.100274346999868],[146.10474694100012,-8.092705987999821],[146.09986412900005,-8.083265882999811],[146.07935631600017,-8.087497653999918],[146.04965254000015,-8.076348565999893],[145.99683678500017,-8.049086195999818],[145.93946373800023,-8.035088799999855],[145.90674889400012,-8.033461195999834],[145.88070722700016,-8.041680596999825],[145.86133873800023,-8.027927341999899],[145.79810631600017,-8.007012627999856],[145.78451582100004,-7.990492445999876],[145.7823999360002,-7.987074476999865],[145.77767988399998,-7.983168226999865],[145.77312259200002,-7.977797132999812],[145.77084394600016,-7.969984632999824],[145.77377363399998,-7.96689218499992],[145.78711998800011,-7.965101820999848],[145.79127037900005,-7.959730726999894],[145.79004967500012,-7.953871351999851],[145.785411004,-7.949965101999851],[145.78012129,-7.946547132999839],[145.77767988399998,-7.942478122999887],[145.77947024800008,-7.935642184999863],[145.79127037900005,-7.911879164999861],[145.78451582100004,-7.911879164999861],[145.77247155000012,-7.927422783999873],[145.75782311300003,-7.927015882999868],[145.74097741000017,-7.924086195999847],[145.72250410200016,-7.932549737999877],[145.7369897800002,-7.952732028999904],[145.71908613400012,-7.960381768999838],[145.65796959700018,-7.959730726999894],[145.64535566500004,-7.955987237999863],[145.626719597,-7.938164971999881],[145.61329186300023,-7.932549737999877],[145.59815514400023,-7.933363539999887],[145.58326256600017,-7.937269789999887],[145.56788170700023,-7.938897393999824],[145.55176842500018,-7.932549737999877],[145.55176842500018,-7.939222914999931],[145.53321373800017,-7.932793877999828],[145.465586785,-7.945489190999879],[145.44190514400012,-7.944105726999808],[145.4233504570001,-7.939711195999834],[145.40796959700006,-7.931735934999864],[145.35010826900023,-7.876722914999902],[145.32162519600004,-7.86199309699991],[145.28370201900012,-7.857354424999883],[145.27491295700023,-7.859470309999892],[145.26514733200008,-7.862969658999888],[145.25456790500007,-7.865411065999822],[145.24341881600006,-7.864190362999891],[145.23438561300011,-7.858819268999852],[145.21322675900004,-7.839776299999854],[145.20606530000003,-7.828220309999921],[145.1919051440002,-7.818454684999878],[145.18409264400023,-7.805596612999864],[145.17481530000012,-7.816013278999846],[145.16724694100006,-7.830743096999839],[145.16822350400005,-7.836195570999877],[145.149668816,-7.837579033999859],[145.12427819100012,-7.830743096999839],[145.10206139400023,-7.817478122999901],[145.09253991000006,-7.799004815999879],[145.089203321,-7.788018487999834],[145.08187910200002,-7.778741143999881],[145.07471764400006,-7.776136976999878],[145.07146243600002,-7.785088799999897],[145.07113691499998,-7.806410414999874],[145.06755618600002,-7.811700127999855],[145.05836022200006,-7.816501559999935],[144.99626712300014,-7.816501559999935],[144.98536217500023,-7.809665622999916],[144.955332879,-7.77548593499992],[144.94263756600006,-7.792250257999854],[144.93181399800002,-7.790459893999866],[144.91968834700006,-7.781019789999945],[144.9038192070001,-7.77548593499992],[144.89730879000004,-7.776788018999837],[144.88542728000007,-7.781670830999899],[144.87956790500002,-7.781670830999899],[144.87769616000014,-7.779229424999869],[144.87240644599999,-7.769952080999899],[144.86963951900023,-7.767998955999857],[144.86133873800023,-7.765069268999837],[144.85092207100016,-7.758070570999863],[144.84302819100017,-7.750176690999879],[144.842051629,-7.744073174999897],[144.85840905000012,-7.724297783999873],[144.86622155000012,-7.705743096999868],[144.86744225400003,-7.608493747999873],[144.86426842500006,-7.586032809999877],[144.85230553500006,-7.569431247999916],[144.84449303500006,-7.588555596999881],[144.8403426440001,-7.636814059999921],[144.83122806100013,-7.658135674999882],[144.83716881600006,-7.674248955999857],[144.82496178500017,-7.682549737999835],[144.8048608730001,-7.68564218499992],[144.78711998800023,-7.686130466999899],[144.77100670700017,-7.68108489399988],[144.75717207100013,-7.669203382999825],[144.73560631600006,-7.64381275799981],[144.69947350399997,-7.616794528999861],[144.68995201900012,-7.594414971999839],[144.67888431100008,-7.582289320999848],[144.65357506600006,-7.561293226999808],[144.64771569100014,-7.580010674999868],[144.6511336600001,-7.598239841999856],[144.65756269600004,-7.616387627999856],[144.66114342500006,-7.634209893999824],[144.65162194100017,-7.649102471999882],[144.62940514400012,-7.656345309999892],[144.60401451900012,-7.656914971999867],[144.58472741000017,-7.651950778999917],[144.575450066,-7.642266533999858],[144.56446373800023,-7.625258070999806],[144.55518639400012,-7.606866143999851],[144.5512801440001,-7.59295012799987],[144.55103600400014,-7.581719658999873],[144.54981530000023,-7.572849216999913],[144.5465600920002,-7.565524997999915],[144.54070071700008,-7.55852629999984],[144.5366317070001,-7.549086195999834],[144.5392358730002,-7.524590752999885],[144.53760826900006,-7.514092705999828],[144.52230879000004,-7.496189059999863],[144.51661217500012,-7.508477471999826],[144.5171004570001,-7.579278252999842],[144.50904381600017,-7.611423434999892],[144.50961347700016,-7.623955987999892],[144.51514733200005,-7.632582289999903],[144.53760826900006,-7.651950778999917],[144.53296959700006,-7.661716403999861],[144.5232853520001,-7.669040622999858],[144.51392662900005,-7.671970309999878],[144.50961347700016,-7.668633721999853],[144.50440514400023,-7.655694268999852],[144.4783634770001,-7.63494231599985],[144.46876061300011,-7.623955987999892],[144.46599368600002,-7.616794528999861],[144.46241295700005,-7.599216403999918],[144.46192467500003,-7.59295012799987],[144.45915774800014,-7.587660414999887],[144.45289147200015,-7.583591403999847],[144.44597415500007,-7.579847914999903],[144.44141686300023,-7.576267184999921],[144.432871941,-7.558689059999892],[144.42156009200002,-7.526543877999842],[144.41342207100004,-7.514092705999828],[144.40723717500023,-7.514092705999828],[144.4116317070002,-7.531426690999822],[144.41342207100004,-7.569431247999916],[144.4181421230002,-7.584730726999878],[144.43132571700008,-7.612237237999821],[144.43384850400017,-7.6273739559999],[144.43580162900005,-7.659926039999874],[144.44141686300023,-7.686130466999899],[144.44727623800006,-7.696221612999877],[144.4567163420002,-7.707777601999808],[144.46501712300005,-7.721368096999853],[144.46876061300011,-7.737237237999878],[144.4799910820001,-7.748142184999864],[144.50001061300006,-7.774102471999853],[144.50782311300017,-7.798028252999912],[144.48243248800023,-7.802178643999852],[144.47974694100006,-7.796156507999853],[144.45980879000007,-7.769301039999859],[144.45508873800006,-7.764906507999881],[144.44996178500003,-7.754327080999829],[144.4381616550002,-7.740329684999864],[144.42432701900006,-7.727308851999879],[144.41342207100004,-7.720147393999837],[144.40284264400023,-7.743340752999869],[144.38453209700018,-7.751885674999883],[144.36719811300011,-7.743584893999823],[144.35954837300008,-7.716729424999826],[144.35531660200013,-7.686781507999853],[144.3444116550002,-7.659437757999881],[144.31104576900012,-7.610284112999864],[144.31568444100006,-7.636651299999854],[144.32715905000006,-7.665134372999874],[144.33383222700004,-7.688653252999827],[144.323985222,-7.700372002999913],[144.30746504000004,-7.692640882999811],[144.28516686300011,-7.64666106599985],[144.26954186300011,-7.630791924999826],[144.26319420700005,-7.642510674999897],[144.25342858200023,-7.650485934999864],[144.24138431100002,-7.655368747999915],[144.22852623800011,-7.658135674999882],[144.22852623800011,-7.66562265399986],[144.25440514400012,-7.667250257999882],[144.2609155610002,-7.683689059999878],[144.25464928500006,-7.706149997999873],[144.2421981130002,-7.726332289999903],[144.25245201900017,-7.73072682099989],[144.2653100920002,-7.741875908999901],[144.27491295700005,-7.755791924999883],[144.27621504000015,-7.767998955999857],[144.26628665500007,-7.775567315999822],[144.22852623800011,-7.789157809999863],[144.21485436300017,-7.795993747999887],[144.19629967500023,-7.777601820999847],[144.18653405000012,-7.771661065999822],[144.17383873800023,-7.767998955999857],[144.16285241000008,-7.769626559999878],[144.15088951900017,-7.774346612999891],[144.13917076900006,-7.776788018999837],[144.1291610040001,-7.771661065999822],[144.11198978000007,-7.758396091999884],[143.92432701900012,-7.694268487999835],[143.85141035200016,-7.651788018999851],[143.827891472,-7.632094007999824],[143.81763756600014,-7.614027601999808],[143.81267337300002,-7.594170830999886],[143.77662194100014,-7.527764580999857],[143.76937910200016,-7.510349216999884],[143.76579837300008,-7.506036065999879],[143.75611412900005,-7.500420830999885],[143.7462671230002,-7.496758721999838],[143.72266686300003,-7.493829033999901],[143.71119225400005,-7.493747653999917],[143.69605553500003,-7.488051039999945],[143.66187584700006,-7.461521091999884],[143.6525171230002,-7.452080987999878],[143.65023847700004,-7.448663018999865],[143.64625084700006,-7.438409112999834],[143.63884524800008,-7.452080987999878],[143.64909915500016,-7.467705987999864],[143.68116295700005,-7.501560153999918],[143.69068444100014,-7.507907809999849],[143.700450066,-7.510023695999863],[143.722504102,-7.519301039999917],[143.74561608200017,-7.523695570999806],[143.747406446,-7.529066664999859],[143.74398847700004,-7.535821221999896],[143.7424422540001,-7.542087497999844],[143.75953209700006,-7.583184502999842],[143.84083092500012,-7.720147393999837],[143.8473413420002,-7.740166924999897],[143.850759311,-7.761325778999904],[143.8517358730002,-7.785088799999897],[143.85621178500017,-7.808282158999845],[143.86719811300011,-7.826429945999848],[143.8927514980002,-7.857354424999883],[143.940684441,-7.930271091999899],[143.95679772200015,-7.97226327899989],[143.9428817070001,-7.991550388999926],[143.94117272200012,-7.993910414999873],[143.9226994150001,-7.988539320999834],[143.90796959700018,-7.972100518999838],[143.89429772200006,-7.952894789999874],[143.87907962300008,-7.939222914999931],[143.86231530000023,-7.935235283999858],[143.80396569100006,-7.932549737999877],[143.81006920700023,-7.93678150799981],[143.81763756600014,-7.947849216999842],[143.824473504,-7.952894789999874],[143.83301842500012,-7.955824476999808],[143.85010826900006,-7.957452080999829],[143.85857181100013,-7.959730726999894],[143.87614993600008,-7.969659112999892],[143.913828972,-8.007582289999917],[143.89828535200004,-8.027927341999899],[143.88119550899998,-8.037855726999823],[143.86068769600004,-8.04127369599982],[143.767344597,-8.04021575299987],[143.74870853000002,-8.034926039999887],[143.74057050900004,-8.029392184999864],[143.7234806650001,-8.013929945999847],[143.71461022200006,-8.007582289999917],[143.67986087300005,-7.996758721999824],[143.670176629,-7.990492445999876],[143.65088951900006,-7.981377862999878],[143.62761478000007,-7.982028903999918],[143.56316165500016,-7.99797942499984],[143.50635826900012,-7.993910414999873],[143.48894290500007,-7.989027601999823],[143.47787519600004,-7.976332289999944],[143.46127363400012,-7.939222914999931],[143.44841556100002,-7.91887786299985],[143.43409264400023,-7.908949476999851],[143.41553795700023,-7.905938408999845],[143.3893335300002,-7.905857028999861],[143.38575280000023,-7.903090101999807],[143.37517337300008,-7.89853280999985],[143.36402428500014,-7.89641692499984],[143.3588973320002,-7.902032158999844],[143.36109459700006,-7.910902601999893],[143.36695397200018,-7.91765715899983],[143.37533613400012,-7.922458591999913],[143.3855900400001,-7.925713799999869],[143.42628014400023,-7.929782809999921],[143.43718509200002,-7.938409112999835],[143.44092858200005,-7.963148695999806],[143.44841556100002,-7.981540622999844],[143.46656334700006,-7.995782158999845],[143.5480249360002,-8.031670830999843],[143.55982506600006,-8.044854424999883],[143.56983483200023,-8.084567966999899],[143.62761478000007,-8.186293226999865],[143.63502037900005,-8.211358330999857],[143.629161004,-8.230401299999855],[143.61247806100008,-8.239190362999821],[143.5920516290001,-8.241957289999874],[143.33790123800011,-8.247735283999845],[143.327891472,-8.25204843499985],[143.30014082100016,-8.268812757999866],[143.21501712300002,-8.275079033999901],[142.98047936300023,-8.335625908999901],[142.95785566500012,-8.33717213299984],[142.93962649800008,-8.333265882999854],[142.8414819670002,-8.28834400799984],[142.71452884200008,-8.267998955999857],[142.71021569100017,-8.266778252999842],[142.70036868600008,-8.261407158999873],[142.6836043630002,-8.269219658999873],[142.63379967500023,-8.280368747999887],[142.615000847,-8.28191497199984],[142.59253991,-8.286879164999874],[142.535899285,-8.323500257999811],[142.51400800899998,-8.331963799999855],[142.49447675899998,-8.333265882999854],[142.45053144600016,-8.329766533999859],[142.42872155000012,-8.324151299999853],[142.41382897200006,-8.310479424999826],[142.40463300899995,-8.292657158999845],[142.38135826900006,-8.193454684999892],[142.36003665500013,-8.167087497999901],[142.31674238400004,-8.15894947699988],[142.26002037900017,-8.17066822699988],[142.22478274800017,-8.173272393999866],[142.217051629,-8.175469658999859],[142.21119225400017,-8.180596612999878],[142.20386803500006,-8.189385674999839],[142.1928817070001,-8.197930596999868],[142.18181399800005,-8.200941664999874],[142.17058353000007,-8.202732028999861],[142.15967858200005,-8.206801039999903],[142.14616946700016,-8.21738046699987],[142.14047285200002,-8.226495049999855],[142.14437910200004,-8.234470309999907],[142.15967858200005,-8.240899346999825],[142.18197675900004,-8.219984632999868],[142.19564863400012,-8.210707289999903],[142.21070397200018,-8.206801039999903],[142.21851647200006,-8.203789971999909],[142.2251082690002,-8.198011976999851],[142.23121178500006,-8.193942966999884],[142.24732506600012,-8.200127862999864],[142.25993899800008,-8.19931405999985],[142.30225670700003,-8.187920830999886],[142.32960045700017,-8.183851820999834],[142.35401451900012,-8.188734632999894],[142.36451256600014,-8.210219007999825],[142.36703535199996,-8.232354424999897],[142.39730878999995,-8.328057549999855],[142.419688347,-8.355401299999826],[142.45215905000003,-8.373304945999877],[142.494313998,-8.377536716999899],[142.52979576900012,-8.365411065999908],[142.59636478000002,-8.320733330999843],[142.63209069100006,-8.309258721999896],[142.71168053500006,-8.322686455999886],[142.72828209700018,-8.316664320999891],[142.76929772200012,-8.329766533999859],[142.80355879000015,-8.3597958309999],[142.81397545700017,-8.364515882999825],[142.83529707100004,-8.370375257999854],[142.89966881600006,-8.412855726999837],[142.93832441499998,-8.427829684999864],[143.06348717500012,-8.453220309999878],[143.10206139400006,-8.467217705999843],[143.13160241000006,-8.486016533999887],[143.26156660200013,-8.592380466999884],[143.31788170700023,-8.658786716999913],[143.3479110040001,-8.707614841999913],[143.38607832100016,-8.753106377999885],[143.39527428500006,-8.76873137799987],[143.39991295700017,-8.782159112999864],[143.39991295700017,-8.91187916499993],[143.40601647200006,-8.944512627999885],[143.40552819100006,-8.962172132999811],[143.39649498800023,-8.977715752999899],[143.3725692070001,-8.999769789999903],[143.36133873800006,-9.007419528999918],[143.34473717500012,-9.015557549999855],[143.31478925900015,-9.023532809999892],[143.25806725400017,-9.023695570999863],[143.22852623800011,-9.029229424999883],[143.2353621750002,-9.036065362999892],[143.22527103000007,-9.039320570999847],[143.204356316,-9.04070403399983],[143.18881269600004,-9.04355234199987],[143.17823326900017,-9.042413018999838],[143.1733504570001,-9.042901299999826],[143.17074628999998,-9.04648202899989],[143.1676538420002,-9.053399346999882],[143.16293378999998,-9.060235283999901],[143.15626061300023,-9.063409112999878],[143.14161217500023,-9.066094658999859],[143.05274498800011,-9.093357028999847],[143.035899285,-9.10165780999992],[143.01140384200008,-9.121677341999884],[142.98804772200018,-9.135837497999901],[142.97836347700004,-9.1384416649999],[142.96705162900005,-9.143731377999885],[142.9576929050002,-9.155531507999854],[142.94906660199996,-9.169203382999882],[142.94060306100005,-9.179375908999845],[142.92025800900015,-9.190362237999892],[142.87354576900006,-9.209405205999886],[142.83814537900017,-9.236504815999822],[142.73096764400006,-9.277764580999872],[142.71452884200008,-9.287855726999837],[142.70777428500006,-9.299493096999838],[142.652598504,-9.330254815999822],[142.6124780610002,-9.334649346999896],[142.57732181100002,-9.323825778999904],[142.547129754,-9.304131768999866],[142.4991968110002,-9.263360283999901],[142.465098504,-9.240492445999806],[142.42896569100006,-9.225030205999872],[142.39926191500004,-9.227797132999838],[142.37305748800011,-9.214532158999901],[142.35767662900017,-9.209405205999886],[142.33423912900017,-9.207452080999843],[142.31910241000017,-9.203708591999899],[142.27572675900004,-9.179375908999845],[142.22339928500006,-9.161228122999844],[142.21070397200018,-9.158949476999865],[142.19996178500006,-9.162204684999907],[142.18091881600017,-9.176202080999872],[142.16928144600016,-9.179375908999845],[142.13559004000015,-9.178399346999868],[141.99398847700002,-9.188653252999885],[141.97396894600016,-9.192803643999838],[141.91334069100017,-9.214613539999874],[141.89291425900004,-9.21892669099988],[141.86841881600014,-9.220391533999845],[141.84742272200006,-9.217217705999872],[141.80551191500015,-9.203301690999893],[141.78296959700003,-9.199883721999882],[141.69825280000018,-9.215101820999863],[141.67310631600017,-9.213555596999825],[141.66480553499997,-9.220147393999895],[141.65064537900014,-9.22673919099988],[141.6349389980002,-9.232028903999845],[141.62126712300008,-9.234063408999873],[141.60572350400017,-9.228773695999806],[141.59278405000006,-9.218845309999892],[141.57935631600017,-9.212985934999864],[141.563243035,-9.220391533999845],[141.55103600400005,-9.218438408999887],[141.5300399100001,-9.218194268999852],[141.51002037900005,-9.21502044099988],[141.49488366000006,-9.194512627999842],[141.45337975400005,-9.165785414999874],[141.42172285200016,-9.150323174999855],[141.38453209700018,-9.141696872999859],[141.3458764980002,-9.141534112999892],[141.3100692070001,-9.152113539999931],[141.23194420700005,-9.212660414999931],[141.20020592500012,-9.227797132999838],[141.15259850400005,-9.232191664999903],[141.11500084700006,-9.218438408999887],[141.0078231130002,-9.124200127999899],[140.97700716985187,-9.106149628253178],[140.97716190600013,-8.991077981999894],[140.97752364100018,-8.79822153699989],[140.97762699400008,-8.611152851999861],[140.97731693600016,-8.434936217999791],[140.9770068770001,-8.170146178999843],[140.97690352400016,-8.001991068999857],[140.97690352400016,-7.962096862999913],[140.97690352400016,-7.772857767999895],[140.97690352400016,-7.587546080999842],[140.97690352400016,-7.323686217999849],[140.97690352400016,-7.282758482999838],[140.9770068770001,-7.157081399999882],[140.9770068770001,-7.004739277999889],[140.97716190600013,-6.89663218199982],[140.96217574100015,-6.897975768999885],[140.94331384400013,-6.888053893999881],[140.93969649300007,-6.856324564999866],[140.91602868700002,-6.86273244199981],[140.90832889800012,-6.849296569999865],[140.9067269290001,-6.828212584999918],[140.9016109630002,-6.812192890999881],[140.8824390060001,-6.798240254999882],[140.87417077700005,-6.7894552609999],[140.87086348600016,-6.778396503999886],[140.8732406010001,-6.773642272999894],[140.88269738800008,-6.76061981199986],[140.88450606300015,-6.753901875999844],[140.87871830300017,-6.742223001999861],[140.85784102400012,-6.723619486999908],[140.85039961800018,-6.712974140999918],[140.84921106000016,-6.702845559999871],[140.85174320500005,-6.693957213999852],[140.85716923100014,-6.682174986999854],[140.86579919400018,-6.649205423999888],[140.86492069500005,-6.630601908999836],[140.85039961800018,-6.623573913999834],[140.85928796400012,-6.608381041999806],[140.87391239500008,-6.603420104999856],[140.8905522060002,-6.599802754999871],[140.90496993100012,-6.589467467999867],[140.90331628400017,-6.582129413999866],[140.89649499600003,-6.573034362999806],[140.89298099800024,-6.565386249999918],[140.9016109630002,-6.56207895899982],[140.90987919100016,-6.561355488999822],[140.91509851100008,-6.558461608999835],[140.91783736200003,-6.55308725999987],[140.91876753800008,-6.527869160999913],[140.92098962400016,-6.516396992999901],[140.92822432500023,-6.509679055999882],[140.94346887200018,-6.507508645999806],[140.95018680900003,-6.498723652999899],[140.95313236600012,-6.480533548999858],[140.94858483900018,-6.46554738399989],[140.93282352700018,-6.465960794999901],[140.93318526200008,-6.453765156999793],[140.92998132400012,-6.444980163999901],[140.92316003500017,-6.439812519999805],[140.91251469000017,-6.438572285999868],[140.92129968300006,-6.4339214069999],[140.93101485200017,-6.431440937999824],[140.94155684400008,-6.430924173999883],[140.95282230600012,-6.431750996999909],[140.95018680900003,-6.418935241999832],[140.95561283400016,-6.411287129999849],[140.96315759300003,-6.404259134999933],[140.96708500200018,-6.393923847999829],[140.96465621000013,-6.388032734999839],[140.95499271700012,-6.379661152999859],[140.95282230600012,-6.373770039999854],[140.95385583500007,-6.37015268999987],[140.9586617440001,-6.368085631999818],[140.96372603400008,-6.348035175999868],[140.97287276200015,-6.336563008999846],[140.97690352400016,-6.335116067999849],[140.97690352400016,-6.229386087999912],[140.97690352400016,-6.002113137999871],[140.97690352400016,-5.806466165999908],[140.97690352400016,-5.62115447899987],[140.97690352400016,-5.363805846999838],[140.97690352400016,-5.322878112999916],[140.97690352400016,-5.197407734999928],[140.97690352400016,-5.002277526999819],[140.97690352400016,-4.99948699999986],[140.97687079100004,-4.98848605899984],[140.97623173000008,-4.773712666999899],[140.97576664300007,-4.595945739999905],[140.9747331140001,-4.173645934999868],[140.97421635000003,-4.002286884999904],[140.97354455600023,-3.800025329999854],[140.97318282100005,-3.58174407999985],[140.97235599800004,-3.250601500999863],[140.9732861740001,-3.002451272999849],[140.9739062910001,-2.807321064999826],[140.97447473200012,-2.631207783999869],[140.97446391400152,-2.600518107070869],[140.98731530000006,-2.599786065999908],[141.0078231130002,-2.608168226999865],[141.04297936300011,-2.589776299999826],[141.08130944100003,-2.594333591999956],[141.12142988400015,-2.607517184999921]]],[[[151.04363040500002,-2.710625908999944],[151.04737389400023,-2.715101820999919],[151.05616295700023,-2.73691171699987],[151.06169681100002,-2.744805596999853],[151.07300866000006,-2.749444268999881],[151.08480878999998,-2.750583591999913],[151.0968530610002,-2.753838799999855],[151.1088973320001,-2.759047132999939],[151.17042076900006,-2.785088799999826],[151.1910913420002,-2.807061455999929],[151.1989038420002,-2.84465911299985],[151.21631920700017,-2.86923593499985],[151.25668379000004,-2.877536716999927],[151.33171634200008,-2.875176690999879],[151.34294681100008,-2.877536716999927],[151.34913170700023,-2.883558851999837],[151.35352623800011,-2.891534112999892],[151.3592228520001,-2.899590752999828],[151.36890709700006,-2.904066664999974],[151.3790796230002,-2.902113539999931],[151.388438347,-2.898125908999873],[151.396169467,-2.896172783999916],[151.41822350400003,-2.900485934999921],[151.437347852,-2.908868096999882],[151.45484459700006,-2.921075127999941],[151.47193444100012,-2.936618747999944],[151.5026147800002,-2.974216403999861],[151.50879967500018,-2.975844007999882],[151.53101647200006,-2.976250908999887],[151.54029381600017,-2.977634372999873],[151.59766686300011,-3.019707940999837],[151.60914147200006,-3.018487237999821],[151.68677819100017,-3.06698984199997],[151.70533287900017,-3.087497653999847],[151.71566816499998,-3.105238539999931],[151.73218834700015,-3.127129815999865],[151.75391686300023,-3.141045830999857],[151.7804468110002,-3.135837497999858],[151.78638756600006,-3.160821221999868],[151.79859459700012,-3.177829684999935],[151.8138126960001,-3.187432549999912],[151.82813561300006,-3.190362237999835],[151.86500084700006,-3.188571872999859],[151.876719597,-3.190362237999835],[151.89698326900023,-3.201755466999899],[151.90935306100008,-3.20419687299993],[151.92432701900012,-3.197360934999907],[151.93482506600017,-3.20330169099985],[151.95101972700002,-3.218519789999917],[151.96973717500012,-3.231703382999953],[151.97339928500006,-3.232110283999958],[152.004649285,-3.232110283999958],[152.0143335300002,-3.234958591999913],[152.02767988399995,-3.244886976999908],[152.03296959700018,-3.245863539999973],[152.04420006600017,-3.245700778999918],[152.05250084700006,-3.246677341999984],[152.05347741,-3.249281507999811],[152.05241946700008,-3.253676039999888],[152.05469811300023,-3.259372653999861],[152.05591881600003,-3.263360283999929],[152.05404707099999,-3.275323174999869],[152.05469811300023,-3.279880467],[152.05713951900003,-3.281345309999963],[152.06544030000023,-3.284600518999838],[152.06771894600004,-3.286065362999892],[152.07398522200018,-3.293877862999963],[152.1110132170002,-3.330173434999963],[152.16016686300023,-3.402113539999931],[152.18677819100017,-3.431573174999912],[152.21745853000007,-3.456963799999925],[152.2534285820002,-3.478448174999869],[152.32422936300017,-3.511000257999839],[152.33961022200012,-3.52743906],[152.35889733200023,-3.537692966999941],[152.36329186300011,-3.543226820999877],[152.369395379,-3.580824476999879],[152.37354576900023,-3.585056247999887],[152.3820093110002,-3.587009372999929],[152.38746178500003,-3.590752862999878],[152.39144941500004,-3.596123955999843],[152.39698326900012,-3.607110283999972],[152.40845787900017,-3.621514580999943],[152.41724694100006,-3.644952080999843],[152.42465254000004,-3.656508070999863],[152.44467207099999,-3.669122002999927],[152.46485436300011,-3.6683895809999],[152.48194420700017,-3.658135674999883],[152.49293053499997,-3.642836195999834],[152.50619550900015,-3.657321872999872],[152.51954186300017,-3.6762020809999],[152.52979576900006,-3.696465752999913],[152.53394616000006,-3.714613539999903],[152.53825931100002,-3.724379164999946],[152.55697675899998,-3.744317315999836],[152.5612899100001,-3.755547783999845],[152.55925540500007,-3.767673434999921],[152.55518639400012,-3.777601820999834],[152.55250084700006,-3.787692966999898],[152.55738366,-3.799574476999936],[152.56674238400015,-3.808282158999844],[152.57520592500006,-3.81812916499986],[152.57496178500003,-3.82105885199988],[152.58529707100016,-3.824883721999896],[152.59595787900017,-3.826918226999823],[152.61947675900004,-3.827894789999888],[152.64454186300023,-3.832696221999967],[152.66228274800014,-3.844903252999856],[152.67823326900023,-3.860446872999859],[152.69841556100008,-3.875664971999839],[152.71753991000006,-3.885511976999865],[152.73601321700008,-3.892266533999901],[152.75521894600004,-3.896172783999887],[152.77759850400005,-3.897393487999821],[152.79810631600017,-3.888767184999907],[152.812266472,-3.874281507999868],[152.823496941,-3.871351820999848],[152.83619225400017,-3.897393487999821],[152.83838951900006,-3.907403252999898],[152.84009850400017,-3.927829684999864],[152.84245853000002,-3.937758070999877],[152.84750410200016,-3.94752369599982],[152.86036217500006,-3.965508721999853],[152.86280358200023,-3.975274346999882],[152.8711043630001,-3.990899346999868],[152.89047285200004,-3.998142184999978],[152.91342207100004,-3.999769789999917],[152.93181399800008,-3.999200127999856],[152.93238366,-3.997328382999967],[152.94605553500006,-3.985528252999913],[152.95630944100017,-3.998630466999884],[152.95777428500006,-4.011814059999921],[152.9565535820002,-4.025648695999919],[152.95899498800017,-4.040704033999845],[152.96957441500004,-4.05527109199987],[153.00147545700023,-4.08123137799987],[153.01441491000006,-4.094821873],[153.04102623800006,-4.149997653999861],[153.05738366000017,-4.172784112999963],[153.06666100400005,-4.189873955999914],[153.06519616000017,-4.197849216999884],[153.08375084700015,-4.2054989559999],[153.10775800900004,-4.224541924999982],[153.12842858200023,-4.248142184999935],[153.13721764400012,-4.269463799999897],[153.12794030000023,-4.324883721999882],[153.12680097700004,-4.350192966999913],[153.13721764400012,-4.375909112999878],[153.11215254000004,-4.403903903999975],[153.05404707100013,-4.45232512799997],[153.04102623800006,-4.485772393999851],[153.04420006600006,-4.505059502999884],[153.05396569100017,-4.517185153999961],[153.06568444100014,-4.527276299999841],[153.07520592500015,-4.540297132999839],[153.07911217500023,-4.554457289999945],[153.08057701900012,-4.570000908999859],[153.07911217500023,-4.586114190999837],[153.07520592500015,-4.601820570999891],[153.06788170700017,-4.610284112999921],[153.04346764400012,-4.625583591999884],[153.03484134200016,-4.636000257999882],[153.03630618600008,-4.66122812299993],[153.03484134200016,-4.670098565999893],[153.02906334700006,-4.679620049999969],[153.01482181100002,-4.690687757999824],[153.007578972,-4.698011976999837],[153.00033613399998,-4.711195570999962],[152.98878014400017,-4.743584893999966],[152.98023522200003,-4.759454033999901],[152.97120201900023,-4.76873137799987],[152.96159915500007,-4.775648695999948],[152.95264733200023,-4.784844658999845],[152.94605553500006,-4.800469658999915],[152.92408287900005,-4.79387786299985],[152.91488691500012,-4.807875257999896],[152.90919030000006,-4.83017343499985],[152.89771569100006,-4.848321221999853],[152.8893335300002,-4.818129164999931],[152.87378991000017,-4.788832289999903],[152.84945722700004,-4.763848565999893],[152.81511478000007,-4.74586353999986],[152.81812584700003,-4.721368096999825],[152.79102623800023,-4.695977471999981],[152.75538170700005,-4.671563408999859],[152.73259524800008,-4.649590752999842],[152.7277124360002,-4.633477471999868],[152.72632897200012,-4.578301690999921],[152.721934441,-4.571709893999866],[152.70053144600016,-4.561211846999882],[152.692149285,-4.554782809999878],[152.68978925900015,-4.547784112999977],[152.68213951900023,-4.497491143999923],[152.67212975400005,-4.465264580999886],[152.67115319100014,-4.451755467],[152.68970787900017,-4.404392184999963],[152.69141686300006,-4.397149346999853],[152.703868035,-4.289971612999864],[152.692149285,-4.2660458309999],[152.69800866000017,-4.254001559999878],[152.69760175900015,-4.240980726999808],[152.69288170700023,-4.228692315999851],[152.684825066,-4.218357028999932],[152.6940210300002,-4.199314059999935],[152.69467207100004,-4.181329033999901],[152.68783613400004,-4.163832289999945],[152.661875847,-4.129978122999886],[152.61231530000006,-4.031508070999876],[152.60596764400023,-4.003024997999873],[152.59880618600013,-3.986016533999901],[152.58228600400003,-3.95761484199987],[152.5612899100001,-3.936618747999929],[152.55241946700008,-3.92400481599985],[152.54883873800006,-3.906426690999822],[152.54542076900006,-3.901950778999861],[152.53052819099997,-3.891696872999929],[152.527110222,-3.886163018999909],[152.52605228000004,-3.874688408999873],[152.52320397199998,-3.863864841999955],[152.51889082100004,-3.854668877999899],[152.51343834700018,-3.848321221999953],[152.50570722700016,-3.845147393999895],[152.48755944100017,-3.844170830999829],[152.4786889980002,-3.840915622999887],[152.47266686300011,-3.833184502999956],[152.46208743600008,-3.811781507999825],[152.44434655000023,-3.799086195999948],[152.35987389400012,-3.694105726999865],[152.35645592500012,-3.684258721999925],[152.36060631600006,-3.661065362999907],[152.35962975400017,-3.653008721999953],[152.35035241,-3.645277601999865],[152.33529707099999,-3.635430596999925],[152.31055748800023,-3.610935153999904],[152.29957116000017,-3.59685637799987],[152.2885848320001,-3.569756768999923],[152.27361087300008,-3.563083591999884],[152.2553817070001,-3.559177341999884],[152.2397567070001,-3.553480726999894],[152.23633873800011,-3.548516533999858],[152.22901451900012,-3.531426690999908],[152.22543379000004,-3.525567315999865],[152.21631920700023,-3.519138278999847],[152.19752037900017,-3.510186455999829],[152.1710718110002,-3.49016692499994],[152.1525171230002,-3.487237237999921],[152.13209069100003,-3.48748137799987],[151.9840600920002,-3.458916924999969],[151.9454858730002,-3.444268487999878],[151.80909264400003,-3.361097915],[151.61247806100005,-3.166192315999837],[151.59652754000015,-3.156182549999854],[151.53402754000004,-3.142022393999823],[151.47388756600003,-3.117608330999957],[151.46509850400017,-3.111260674999841],[151.46290123800011,-3.106377862999878],[151.45826256600017,-3.101332290000016],[151.4536238940002,-3.094496351999823],[151.44971764400023,-3.074639580999914],[151.44532311300017,-3.06698984199997],[151.430430535,-3.053317966999856],[151.3644311860002,-3.016778252999899],[151.34555097700013,-3.001722914999974],[151.33855228000007,-2.997735283999916],[151.29297936300011,-2.980075778999904],[151.27076256600006,-2.958428643999909],[151.26026451900006,-2.950290622999887],[151.242442254,-2.945082289999903],[151.22445722700013,-2.941989841999913],[151.21070397200006,-2.935316664999945],[151.20508873800023,-2.919854424999926],[151.1806746750001,-2.896172783999916],[151.1603296230002,-2.896172783999916],[151.15251712300014,-2.894707940999865],[151.15170332100004,-2.891045830999985],[151.15284264400023,-2.886488539999945],[151.15040123800011,-2.882500908999887],[151.13575280000012,-2.87330494599999],[151.12240644599999,-2.862074476999823],[151.1206160820001,-2.859063408999987],[151.11817467500018,-2.851250908999916],[151.11622155000012,-2.848402601999879],[151.102875196,-2.84099700299997],[151.09864342500006,-2.837579033999873],[151.09058678500006,-2.83269622199991],[151.07976321700008,-2.829522393999852],[151.04525800900015,-2.825127862999864],[151.03736412900017,-2.819919528999861],[151.02621504000015,-2.806817315999979],[151.0139266290001,-2.795505466999913],[151.00757897200018,-2.790948174999954],[150.99903405000023,-2.786309502999842],[150.9884546230002,-2.783461195999905],[150.96387780000006,-2.780368747999916],[150.93580162900017,-2.766534112999821],[150.91521243600002,-2.764906507999896],[150.83708743600013,-2.77939218499985],[150.79542076900017,-2.779229424999883],[150.7597762380001,-2.768812757999896],[150.73894290500002,-2.744805596999853],[150.7399194670002,-2.732517184999892],[150.74732506600014,-2.71795012799987],[150.76002037900017,-2.711032809999949],[150.77670332099999,-2.721123955999829],[150.79493248800006,-2.729099216999884],[150.8159285820001,-2.720961195999862],[150.85499108200005,-2.69695403399983],[150.8761499360002,-2.712660414999888],[150.89242597700004,-2.697523695999891],[150.89332115999997,-2.675225518999937],[150.86801191500015,-2.669040622999887],[150.88363691500015,-2.654066664999945],[150.88111412900005,-2.643487237999977],[150.86988366000006,-2.637139580999872],[150.85873457100004,-2.634942315999879],[150.8393660820001,-2.633558851999893],[150.8260197270001,-2.629978123],[150.79346764400012,-2.615004164999888],[150.81397545700005,-2.573988539999874],[150.81202233200023,-2.570977471999882],[150.810394727,-2.562107028999918],[150.81267337300005,-2.555840752999885],[150.83399498800023,-2.566827080999843],[150.84245853000016,-2.576592705999871],[150.84945722700013,-2.587497653999861],[150.85873457100004,-2.597751559999963],[150.89087975400017,-2.616631768999909],[150.89649498800006,-2.618096612999878],[150.90170332100016,-2.630140882999967],[150.91334069100017,-2.638116143999838],[150.93685957100004,-2.649183851999879],[150.96176191500015,-2.680759372999873],[150.97234134200014,-2.690118096999896],[150.97999108200023,-2.692559502999927],[151.02230879000015,-2.699151299999912],[151.03126061300006,-2.703789971999839],[151.03785241000017,-2.708428643999952],[151.04363040500002,-2.710625908999944]]],[[[150.23023522200006,-2.383477471999953],[150.28467858200017,-2.416599216999984],[150.30689537900005,-2.416436455999929],[150.31568444100017,-2.421563408999858],[150.34180748800023,-2.43336354],[150.35157311300006,-2.435723565999879],[150.3549910820001,-2.437676690999836],[150.36426842500023,-2.447198174999912],[150.36890709700018,-2.450453382999953],[150.39576256600003,-2.456719658999916],[150.423594597,-2.467217705999971],[150.44727623800023,-2.484470309999978],[150.45883222700016,-2.508477471999839],[150.45093834700018,-2.539320570999905],[150.46127363399998,-2.534763278999861],[150.46509850399997,-2.532484632999967],[150.47071373800011,-2.5469703099999],[150.46509850399997,-2.560804945999919],[150.45582116000006,-2.575127862999906],[150.45093834700018,-2.590915622999859],[150.45167076900012,-2.607598565999893],[150.45394941499998,-2.621026299999897],[150.45834394600016,-2.632256768999895],[150.46509850399997,-2.642347914999945],[150.45826256600017,-2.653497002999885],[150.4513452480002,-2.658379815999936],[150.42986087300008,-2.662774346999839],[150.39242597700004,-2.676446221999953],[150.38184655000006,-2.678806248],[150.37175540500016,-2.682224216999927],[150.36443118600016,-2.681817315999837],[150.36150149800008,-2.672784112999906],[150.35482832100004,-2.661553643999824],[150.3398543630001,-2.664239190999893],[150.32374108200023,-2.673760674999883],[150.31373131600006,-2.683282158999887],[150.3082788420002,-2.679294528999989],[150.298187696,-2.673597914999917],[150.29322350400017,-2.669040622999887],[150.277110222,-2.673760674999883],[150.20215905000023,-2.677504165],[150.19410241000006,-2.679131768999852],[150.18677819099997,-2.679457289999874],[150.17725670700023,-2.676446221999953],[150.1687117850001,-2.669854424999897],[150.1362410820001,-2.634942315999879],[150.11475670700008,-2.622979424999841],[150.10572350400017,-2.615899346999882],[150.08936608200017,-2.566582940999893],[150.04712975400005,-2.516289971999839],[150.03248131600006,-2.505140882999825],[150.00977623800003,-2.512872002999913],[149.97974694100006,-2.49895598799985],[149.957774285,-2.477634372999873],[149.95875084700018,-2.462985934999864],[149.96550540500002,-2.459242445999934],[149.97169030000012,-2.462823174999897],[149.97803795700023,-2.468357029],[149.98536217500023,-2.470391533999859],[149.99463951900006,-2.466485283999944],[150.06739342500023,-2.416436455999929],[150.08326256600017,-2.413832289999931],[150.09685306100002,-2.413750908999859],[150.10840905000023,-2.412367445999877],[150.11882571700002,-2.405531507999868],[150.15902754000015,-2.391371351999851],[150.16000410200004,-2.388441664999917],[150.1730249360002,-2.386325778999989],[150.1933699880001,-2.377048434999864],[150.20785566500015,-2.374769789999888],[150.23023522200006,-2.383477471999953]]],[[[147.88119550899998,-2.286065362999821],[147.85816491,-2.324476820999919],[147.8400171230002,-2.340915622999916],[147.81641686300006,-2.347426039999903],[147.77515709699998,-2.347426039999903],[147.76010175900004,-2.345798434999892],[147.75074303500017,-2.341241143999852],[147.73047936300017,-2.326429945999877],[147.73267662900017,-2.319594007999939],[147.73454837300014,-2.316827080999886],[147.73731530000003,-2.313409112999878],[147.7631942070001,-2.321058851999823],[147.78711998800023,-2.311700127999884],[147.7999780610002,-2.291192315999836],[147.7924910820001,-2.265557549999855],[147.80152428500003,-2.2601864559999],[147.80925540500002,-2.252618096999939],[147.81364993600013,-2.244724216999884],[147.81299889400015,-2.237562757999925],[147.8266707690001,-2.237562757999925],[147.84839928500017,-2.264743747999844],[147.86361738400015,-2.278252862999821],[147.88119550899998,-2.286065362999821]]],[[[146.89234459700006,-1.952080987999906],[146.91488691500004,-1.963311455999985],[146.94011478000007,-1.95484791499986],[147.11003665500007,-1.963311455999985],[147.11939537900017,-1.968357028999932],[147.1310327480002,-1.980157158999987],[147.14161217500023,-1.993910415],[147.14763431100005,-2.004978122999859],[147.15447024800008,-2.004978122999859],[147.15894616000006,-1.989027601999851],[147.17107181100002,-1.980401299999855],[147.18336022200018,-1.979668877999827],[147.189219597,-1.987481377999913],[147.19516035200013,-1.998630466999927],[147.20948326900023,-2.000583591999884],[147.23755944100006,-1.99814218499985],[147.27857506600006,-2.015394789999945],[147.28598066500004,-2.015069268999838],[147.29232832100016,-2.01913827899989],[147.3331811860002,-2.03232187299993],[147.34937584700006,-2.028578382999811],[147.37598717500012,-2.028985283999986],[147.40170332100016,-2.03435637799987],[147.41578209700018,-2.045830987999906],[147.422618035,-2.045830987999906],[147.422618035,-2.018487237999835],[147.4196069670002,-2.009860934999921],[147.41032962300008,-1.994317315999837],[147.40837649800017,-1.987481377999913],[147.4006453790001,-1.978122653999961],[147.38697350400017,-1.968926690999908],[147.38086998800006,-1.961521092],[147.39584394600004,-1.957126559999935],[147.40593509200008,-1.962823174999827],[147.42204837300002,-1.980157158999987],[147.43279056100008,-1.983819268999866],[147.4420679050002,-1.990166924999883],[147.44459069100003,-2.004815362999892],[147.4430444670002,-2.035577080999886],[147.43116295700023,-2.060804946000019],[147.40235436300011,-2.066827080999857],[147.366465691,-2.06503671699987],[147.3331811860002,-2.066989841999913],[147.33814537900017,-2.061781507999825],[147.347422722,-2.045830987999906],[147.32715905000012,-2.045505466999884],[147.31666100400005,-2.050957940999822],[147.31104576900023,-2.062432549999869],[147.305918816,-2.080010674999897],[147.299082879,-2.080010674999897],[147.2917586600001,-2.064222914999945],[147.28199303500006,-2.081149997999929],[147.27458743600008,-2.107679945999976],[147.27491295700008,-2.121514580999886],[147.26335696700008,-2.130303643999866],[147.23170006600017,-2.170830987999963],[147.2164819670002,-2.183038018999852],[147.2057397800002,-2.186130466999927],[147.197032097,-2.186781507999882],[147.18799889400012,-2.185723565999922],[147.17611738400015,-2.183038018999852],[147.13949629000004,-2.165297132999868],[147.13070722700016,-2.1625302059999],[147.10865319100017,-2.167413018999866],[147.07007897200015,-2.187595309999892],[147.04517662900017,-2.189873955999957],[147.04517662900017,-2.185316664999917],[147.04656009200002,-2.182305596999825],[147.05201256600014,-2.176202080999843],[147.02003014400006,-2.186781507999882],[146.98894290500007,-2.193291924999883],[146.95492597700016,-2.194756768999852],[146.84034264400017,-2.176202080999843],[146.83570397200006,-2.173760674999983],[146.82797285200002,-2.164646091999913],[146.82276451900023,-2.1625302059999],[146.81666100400003,-2.163669528999932],[146.80746504000015,-2.168226820999877],[146.802500847,-2.169366143999909],[146.79672285200016,-2.166192315999851],[146.79118899800002,-2.159112237999892],[146.78419030000023,-2.15203215899983],[146.7745874360002,-2.148858330999872],[146.76954186300023,-2.146091403999904],[146.76091556100008,-2.132419528999876],[146.75717207100004,-2.127699476999865],[146.75001061300003,-2.123223565999978],[146.74545332100004,-2.121514580999886],[146.72681725400005,-2.121514580999886],[146.70240319100017,-2.114353122999859],[146.69646243600008,-2.114841403999932],[146.69117272200018,-2.123711846999967],[146.6915796230002,-2.132500908999859],[146.69695071700008,-2.139336846999953],[146.70606530000023,-2.142185153999989],[146.7209578790001,-2.148532809999935],[146.72925866000017,-2.1625302059999],[146.72771243600002,-2.176690362999835],[146.7129012380002,-2.183038018999852],[146.6754663420001,-2.189385674999969],[146.6578882170002,-2.18621184699991],[146.6479598320001,-2.169366143999909],[146.62916100400003,-2.17750416499993],[146.611175977,-2.181898695999919],[146.59799238400015,-2.189385674999969],[146.5865991550002,-2.224379164999888],[146.57154381600017,-2.228122653999918],[146.55347741000006,-2.220310153999918],[146.53809655000012,-2.2035458309999],[146.53199303500006,-2.18971119599999],[146.52019290500007,-2.149590752999899],[146.520762566,-2.138767184999892],[146.536387566,-2.119724216999899],[146.54525800900015,-2.114190362999892],[146.56251061300017,-2.120782158999859],[146.57276451900006,-2.120212497999887],[146.60474694100017,-2.111911716999913],[146.61231530000023,-2.111097914999903],[146.61719811300011,-2.106866143999966],[146.6206160820001,-2.093682549999841],[146.61850019599999,-2.083265882999854],[146.61207116000017,-2.070489190999893],[146.58863366,-2.040459893999937],[146.58326256600006,-2.030857028999876],[146.58008873800011,-2.020277601999823],[146.5791121750001,-2.008396091999956],[146.58057701900006,-1.995212498],[146.58472741,-1.992364190999964],[146.60010826900023,-1.99814218499985],[146.603770379,-2.001885674999883],[146.60840905000023,-2.008721612999977],[146.615489129,-2.013767185],[146.62680097700007,-2.011651299999826],[146.63038170700023,-2.004082940999865],[146.63795006600012,-1.976250908999901],[146.64454186300006,-1.970147393999824],[146.64747155000012,-1.969008070999891],[146.649180535,-1.966729424999912],[146.652110222,-1.964450778999847],[146.6578882170002,-1.963311455999985],[146.66374759200002,-1.965508721999896],[146.6730249360002,-1.975274346999925],[146.67855879000004,-1.977634372999972],[146.68946373800006,-1.976250908999901],[146.7058211600001,-1.970879815999851],[146.71631920700005,-1.970147393999824],[146.72877037900017,-1.972832940999893],[146.75310306100008,-1.981866143999909],[146.76775149800005,-1.983819268999866],[146.78060957099999,-1.98056406],[146.81934655000012,-1.957126559999935],[146.84571373800011,-1.948500257999839],[146.86980228000007,-1.947035414999874],[146.89234459700006,-1.952080987999906]]],[[[142.82911217500023,-1.722914320999934],[142.81812584700012,-1.733330987999835],[142.8185327480002,-1.712009372999859],[142.83350670700023,-1.697035414999917],[142.85238691500015,-1.692640882999853],[142.86548912900005,-1.703301690999879],[142.859141472,-1.705336195999905],[142.8448999360002,-1.712660414999903],[142.82911217500023,-1.722914320999934]]],[[[149.98121178500017,-1.65691497199991],[149.98926842500012,-1.668389580999943],[150.00424238400015,-1.672621351999879],[150.01880944100017,-1.67197031],[150.02344811300011,-1.674737237999892],[150.01758873800006,-1.681247653999876],[150.0004988940002,-1.685804946],[149.97461998800011,-1.684177341999984],[149.95972741000017,-1.678643487999878],[149.95606530000012,-1.675388278999932],[149.94825280000012,-1.673109632999868],[149.9399520190002,-1.675469658999916],[149.93751061300011,-1.678643487999878],[149.935801629,-1.683038018999952],[149.92725670700005,-1.684991143999824],[149.91732832100016,-1.676934502999884],[149.91211998800006,-1.664157809999935],[149.91211998800006,-1.653741143999852],[149.92042076900023,-1.651299737999821],[149.94336998800023,-1.658461195999948],[149.95232181100008,-1.650323174999926],[149.95630944100006,-1.633477471999925],[149.96412194100006,-1.630303643999866],[149.97543379000004,-1.642754815999893],[149.98121178500017,-1.65691497199991]]],[[[149.58692467500023,-1.352227471999825],[149.5957137380001,-1.354261976999851],[149.61866295700008,-1.353773695999862],[149.62761478000002,-1.357110283999887],[149.649668816,-1.381117445999933],[149.71094811300023,-1.415134372999873],[149.72478274800002,-1.428887627999885],[149.72722415500007,-1.440850518999824],[149.72592207100016,-1.451918226999851],[149.72657311300011,-1.462823174999841],[149.73503665500007,-1.473565362999849],[149.73910566500004,-1.480645440999908],[149.75196373800023,-1.511407158999887],[149.76254316499995,-1.530450127999884],[149.78419030000006,-1.560235283999887],[149.79297936300023,-1.580336195999934],[149.77662194100006,-1.581475518999866],[149.75326582100016,-1.593519789999888],[149.73902428500006,-1.594008070999877],[149.72950280000023,-1.590508721999882],[149.72657311300011,-1.586195570999962],[149.72478274800002,-1.580824476999823],[149.7184350920002,-1.573500257999825],[149.70199629000004,-1.560723565999879],[149.69385826900012,-1.555922132999967],[149.6843367850001,-1.552422783999887],[149.68336022199998,-1.581312757999811],[149.6670028000001,-1.575860283999873],[149.63217207100013,-1.546156507999853],[149.62232506600006,-1.543145440999851],[149.61280358200023,-1.535739841999941],[149.59205162900005,-1.514906507999882],[149.58765709700018,-1.505791924999968],[149.58415774800008,-1.501153252999856],[149.578379754,-1.498467705999886],[149.5654403000001,-1.499444268999852],[149.5602319670002,-1.497735283999859],[149.54688561300011,-1.482191664999945],[149.54102623800014,-1.464450778999861],[149.53980553500006,-1.425469658999958],[149.57227623800023,-1.358575127999941],[149.58073978000007,-1.346368096999882],[149.58692467500023,-1.352227471999825]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"French Polynesia","adm0_a3":"PYF","geou_dif":0,"geounit":"French Polynesia","gu_a3":"PYF","su_dif":0,"subunit":"French Polynesia","su_a3":"PYF","brk_diff":0,"name":"Fr. Polynesia","name_long":"French Polynesia","brk_a3":"PYF","brk_name":"Fr. Polynesia","brk_group":null,"abbrev":"Fr. Poly.","postal":"PF","formal_en":"French Polynesia","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"French Polynesia","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":287032,"gdp_md_est":4718,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"FP","iso_a2":"PF","iso_a3":"PYF","iso_n3":"258","un_a3":"258","wb_a2":"PF","wb_a3":"PYF","woe_id":23424817,"woe_id_eh":23424817,"woe_note":"Exact WOE match as country","adm0_a3_is":"PYF","adm0_a3_us":"PYF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":13,"long_len":16,"abbrev_len":9,"tiny":2,"homepart":-99,"filename":"PYF.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-144.31273352799988,-27.640069268999895],[-144.32363847599996,-27.641208591999927],[-144.33836829299995,-27.633721612999864],[-144.34658769399994,-27.615329685],[-144.34797115799992,-27.585544528999986],[-144.3394262359999,-27.559258721999896],[-144.31786048099988,-27.551202080999943],[-144.29816646999996,-27.562920830999943],[-144.28994706899988,-27.570082289999885],[-144.2837621739999,-27.579196872999972],[-144.28823808499988,-27.58424244599982],[-144.3013402989999,-27.59539153399993],[-144.30418860599985,-27.59970468500002],[-144.3035375639999,-27.60051848799985],[-144.30028235599985,-27.620049737999835],[-144.29743404899992,-27.62078215899986],[-144.3044327459999,-27.632419528999947],[-144.31273352799988,-27.640069268999895]]],[[[-147.66893469999988,-23.87175872199995],[-147.69896399599992,-23.878024997999916],[-147.71263587099986,-23.877211195999816],[-147.7242325509999,-23.87175872199995],[-147.7242325509999,-23.86492278399986],[-147.70588131399992,-23.858575128],[-147.68797766799983,-23.85458749799993],[-147.64785722599993,-23.851820570999976],[-147.6512345039999,-23.858575128],[-147.6558731759999,-23.8638648419999],[-147.6617732409999,-23.868096612999903],[-147.66893469999988,-23.87175872199995]]],[[[-149.4632462229999,-23.395765882999925],[-149.5078018869999,-23.40048593500002],[-149.51874752499987,-23.394952080999914],[-149.52476966099988,-23.38396575299994],[-149.52672278599994,-23.368096612999835],[-149.52143307199995,-23.362725518999966],[-149.50890051999988,-23.359551690999908],[-149.48167883999986,-23.3578427059999],[-149.4564916659999,-23.365329684999963],[-149.4509171209999,-23.381117445999905],[-149.4632462229999,-23.395765882999925]]],[[[-134.9505509109999,-23.096937757999882],[-134.98452714799993,-23.13876718499999],[-134.99522864499994,-23.13713958099997],[-135.00454667899993,-23.13388437299993],[-135.0193578769999,-23.125095309999946],[-135.0193578769999,-23.1176083309999],[-134.99795488199993,-23.1163062479999],[-134.96548417899996,-23.090508721999953],[-134.94298255099994,-23.083591403999876],[-134.9505509109999,-23.096937757999882]]],[[[-151.36872311099992,-22.513116143999895],[-151.37177486899992,-22.514418226999894],[-151.37633216099988,-22.51433684699991],[-151.38044186099995,-22.488702080999925],[-151.39110266799986,-22.464532158999845],[-151.3970434239999,-22.44215260199982],[-151.38687089799996,-22.422458591999956],[-151.37767493399988,-22.423272393999966],[-151.36750240799992,-22.434177341999956],[-151.3592423169999,-22.447523695999877],[-151.35590572799993,-22.456638278999947],[-151.35749264199995,-22.481703382999868],[-151.36274166599992,-22.50807057099986],[-151.36872311099992,-22.513116143999895]]],[[[-136.17568925699985,-22.029880467000012],[-136.18586178299984,-22.034437757999953],[-136.1635636059999,-22.013604424999983],[-136.16388912699992,-22.016371351999936],[-136.1657608709999,-22.024346612999906],[-136.17568925699985,-22.029880467000012]]],[[[-138.84959876199989,-21.871270440999837],[-138.9321996739999,-21.871270440999837],[-138.91185462099983,-21.863946221999925],[-138.89159094999985,-21.865899346999967],[-138.8709610669999,-21.870375257999925],[-138.84959876199989,-21.871270440999837]]],[[[-140.60366777299993,-21.70680104],[-140.6305232409999,-21.72161223799995],[-140.6582738919999,-21.71266041499993],[-140.67577063699986,-21.688897393999923],[-140.67194576699984,-21.658949476999947],[-140.65318762899997,-21.647067966999913],[-140.63418535099987,-21.66082122199984],[-140.60366777299993,-21.70680104]]],[[[-135.46934973899994,-21.50945403399996],[-135.4575089179999,-21.52800872199995],[-135.52578691299985,-21.48707447699985],[-135.50377356699988,-21.489515882999882],[-135.48493404899983,-21.496840101999965],[-135.46934973899994,-21.50945403399996]]],[[[-136.37987219999994,-21.459079684999917],[-136.37718665299985,-21.468357028999876],[-136.38634192599994,-21.46363697699995],[-136.39582271999984,-21.46282317499994],[-136.4050186839999,-21.465427341999856],[-136.41340084499987,-21.471368096999882],[-136.40493730399993,-21.460219007999953],[-136.39146887899994,-21.4561499979999],[-136.37987219999994,-21.459079684999917]]],[[[-136.52944902299993,-21.349867445999976],[-136.54312089799993,-21.3597958309999],[-136.5342504549999,-21.34889088299991],[-136.53571529899986,-21.342380466999927],[-136.54238847599993,-21.338799737999864],[-136.5493871739999,-21.336846612999906],[-136.53221594999988,-21.33131275799998],[-136.5257055329999,-21.338067315999837],[-136.52944902299993,-21.349867445999976]]],[[[-136.63792883999992,-21.333103122999958],[-136.6362198559999,-21.341566664999917],[-136.64679928299986,-21.32724374799993],[-136.65160071499994,-21.32293059699984],[-136.64391028599994,-21.322849216999856],[-136.63988196499986,-21.32642994599992],[-136.63792883999992,-21.333103122999958]]],[[[-136.74022376199994,-21.320000908999983],[-136.74233964799993,-21.32008228999989],[-136.74693762899997,-21.316176039999974],[-136.74478105399987,-21.31585051899995],[-136.74095618399986,-21.316989841999984],[-136.7387589179999,-21.31715260199995],[-136.74022376199994,-21.320000908999983]]],[[[-136.7386368479999,-21.29949309699994],[-136.73232988199996,-21.30624765399989],[-136.7291153639999,-21.318047783999944],[-136.7312719389999,-21.317315362999835],[-136.73216712099992,-21.315687757999896],[-136.73281816299993,-21.31389739399991],[-136.7343643869999,-21.312107028999932],[-136.73916581899988,-21.30852629999987],[-136.74225826699987,-21.304457289999903],[-136.74575761599993,-21.303399346999853],[-136.75218665299988,-21.30852629999987],[-136.7459610669999,-21.29949309699994],[-136.7386368479999,-21.29949309699994]]],[[[-139.1445206369999,-20.804375908999845],[-139.14785722599996,-20.8049455709999],[-139.13581295499984,-20.799737237999906],[-139.13536536399994,-20.799737237999906],[-139.14146887899994,-20.803155205999914],[-139.1445206369999,-20.804375908999845]]],[[[-138.54263261599993,-20.780368747999972],[-138.5197647779999,-20.81454843499996],[-138.51284745999993,-20.85767994599989],[-138.53490149599992,-20.87688567499994],[-138.51943925699985,-20.860935153999932],[-138.51732337099986,-20.84921640399986],[-138.54072018099995,-20.789727471999925],[-138.54466712099995,-20.784681898999892],[-138.5501195949999,-20.782566013999883],[-138.56843014199984,-20.788181247999884],[-138.5642797519999,-20.78484465899986],[-138.55435136599988,-20.780938408999944],[-138.54889889199987,-20.779961846999967],[-138.54263261599993,-20.780368747999972]]],[[[-140.39928137899994,-19.661716403999876],[-140.4124242829999,-19.66383228999989],[-140.39683997299989,-19.65105559699994],[-140.38662675699987,-19.640313408999916],[-140.38980058499993,-19.628838799999883],[-140.4139705069999,-19.614190362999878],[-140.40737870999996,-19.610121351999823],[-140.3951716789999,-19.615411065999893],[-140.38316809799997,-19.625420830999953],[-140.3770238919999,-19.636325778999947],[-140.37905839799993,-19.648614190999908],[-140.3873591789999,-19.65699635199995],[-140.39928137899994,-19.661716403999876]]],[[[-139.19591223899994,-19.349786065999865],[-139.20518958199986,-19.359144789999974],[-139.20225989499994,-19.35068124799986],[-139.20409094999994,-19.346123955999985],[-139.2050675119999,-19.34148528399987],[-139.20767167899993,-19.337334893999838],[-139.21483313699986,-19.33456796699988],[-139.2029516269999,-19.334893487999906],[-139.19591223899994,-19.3409156229999],[-139.19591223899994,-19.349786065999865]]],[[[-138.79173743399986,-19.28386809699991],[-138.7967423169999,-19.290297132999825],[-138.8059789699999,-19.28883228999986],[-138.8093969389999,-19.287286065999822],[-138.81212317599994,-19.283786716999927],[-138.80239824099988,-19.28199635199985],[-138.7945857409999,-19.281670830999825],[-138.79173743399986,-19.28386809699991]]],[[[-141.23717200399994,-19.19361744599989],[-141.22752844999988,-19.208428643999866],[-141.23037675699993,-19.227146091999927],[-141.23371334499984,-19.211683851999908],[-141.24278723899994,-19.2022437479999],[-141.25475012899994,-19.19939544099986],[-141.26618404899992,-19.2035458309999],[-141.25234941299993,-19.189711195999806],[-141.23717200399994,-19.19361744599989]]],[[[-140.69619706899994,-19.119317315999893],[-140.67015540299985,-19.13176848799982],[-140.6608780589999,-19.15243906],[-140.6858617829999,-19.16155364399991],[-140.6700333319999,-19.142754815999865],[-140.68138587099986,-19.132256768999977],[-140.70396887899994,-19.12932708099987],[-140.7218318349999,-19.133721612999864],[-140.69619706899994,-19.119317315999893]]],[[[-138.79332434799989,-18.774021091999984],[-138.7932022779999,-18.778903903999876],[-138.82974199099996,-18.759942315999865],[-138.82286536399997,-18.760349216999867],[-138.8157445949999,-18.76140715899983],[-138.8015844389999,-18.765232028999932],[-138.79523678299986,-18.77092864399991],[-138.79332434799989,-18.774021091999984]]],[[[-136.4587296209999,-18.464288018999966],[-136.42613684799994,-18.47535572699982],[-136.39582271999984,-18.49423593499985],[-136.38239498599984,-18.509942315999904],[-136.33043372299997,-18.52760182099992],[-136.3047582669999,-18.545668226999936],[-136.31407630099994,-18.56731536299985],[-136.3135473299999,-18.565606377999842],[-136.31273352799985,-18.5609677059999],[-136.31309973899988,-18.55429452899986],[-136.3160701159999,-18.546319268999977],[-136.32213294199988,-18.53875090899986],[-136.3312882149999,-18.532647393999866],[-136.34365800699993,-18.527439059999864],[-136.37389075399992,-18.5186499979999],[-136.38296464799993,-18.514743747999987],[-136.3890274729999,-18.510186455999857],[-136.39427649599992,-18.50408294099988],[-136.40265865799986,-18.496677341999966],[-136.44888261599996,-18.471856377999842],[-136.4612524079999,-18.46868254999987],[-136.46544348899994,-18.474297783999873],[-136.46519934799989,-18.482110283999944],[-136.4642634759999,-18.48601653399986],[-136.4677628249999,-18.481866143999824],[-136.46996008999986,-18.477797132999854],[-136.4728897779999,-18.474297783999873],[-136.4785863919999,-18.471856377999842],[-136.4587296209999,-18.464288018999966]]],[[[-140.6786189439999,-18.403008721999868],[-140.67194576699984,-18.41716887799997],[-140.67483476499987,-18.413750908999873],[-140.68097896999984,-18.40227629999984],[-140.6951391269999,-18.39039478999989],[-140.7520645819999,-18.363946221999896],[-140.77009029899983,-18.350274346999953],[-140.7792862619999,-18.339532158999855],[-140.78180904899992,-18.33521900799994],[-140.75617428299986,-18.353692315999876],[-140.68708248599984,-18.390557549999855],[-140.6786189439999,-18.403008721999868]]],[[[-136.9827774729999,-18.335870049999983],[-136.9714249339999,-18.36191171699987],[-137.06761633999986,-18.266289971999896],[-137.04234778599994,-18.27760182099989],[-137.01024329299995,-18.304375908999972],[-136.9827774729999,-18.335870049999983]]],[[[-140.82994544199997,-18.190362237999874],[-140.82274329299995,-18.217950127999885],[-140.8483780589999,-18.182549737999878],[-140.8954971999999,-18.149021091999842],[-140.9180395169999,-18.10816822699981],[-140.93028723899994,-18.095635674999897],[-140.9736221999999,-18.060235283999972],[-140.96446692599994,-18.066582940999822],[-140.92516028599994,-18.084730726999823],[-140.8985082669999,-18.129082940999865],[-140.87730872299989,-18.150567315999876],[-140.85130774599992,-18.16952890399989],[-140.82994544199997,-18.190362237999874]]],[[[-143.07225501199986,-17.840427341999956],[-143.05988521999987,-17.865817966999884],[-143.06029212099992,-17.867771091999927],[-143.06484941299993,-17.863702080999957],[-143.07022050699993,-17.85515715899986],[-143.07282467399992,-17.844333591999938],[-143.07762610599988,-17.85222747199984],[-143.0823868479999,-17.857517184999907],[-143.08714758999992,-17.858493747999972],[-143.09211178299986,-17.85328541499989],[-143.08088131399987,-17.837579033999916],[-143.07225501199986,-17.840427341999956]]],[[[-140.79596920499984,-17.86272551899998],[-140.8121231759999,-17.86305104],[-140.82778886599988,-17.860121351999894],[-140.83702551999994,-17.85475025799985],[-140.83869381399987,-17.84343840899996],[-140.8342992829999,-17.830010674999954],[-140.82274329299995,-17.807061455999886],[-140.8023168609999,-17.786553643999834],[-140.78246008999983,-17.751641533999987],[-140.74583899599995,-17.729587498],[-140.67194576699984,-17.69784921699994],[-140.65208899599992,-17.68417734199999],[-140.62466386599985,-17.687269789999903],[-140.6198624339999,-17.7067196589999],[-140.6284887359999,-17.72844817499997],[-140.6483048169999,-17.743910414999988],[-140.67878170499986,-17.780368747999944],[-140.72716223899997,-17.807061455999886],[-140.75804602799988,-17.831638278999975],[-140.78522701699993,-17.858575127999956],[-140.79596920499984,-17.86272551899998]]],[[[-150.64032955599993,-17.66611093499999],[-150.64496822799993,-17.677992445999948],[-150.65526282499985,-17.668715101999975],[-150.64317786399985,-17.65545012799987],[-150.64032955599993,-17.66611093499999]]],[[[-142.55817623599992,-17.599216403999975],[-142.57746334499987,-17.621351820999863],[-142.5651749339999,-17.60165781],[-142.6395157539999,-17.53264739399998],[-142.61245683499996,-17.546970309999878],[-142.5776261059999,-17.57170989399985],[-142.55817623599992,-17.599216403999975]]],[[[-149.30394446499992,-17.712090752999956],[-149.2632950509999,-17.722832940999876],[-149.18346106699988,-17.731215101999922],[-149.16063391799986,-17.756931247999887],[-149.1491186189999,-17.802015882999854],[-149.1564428379999,-17.846286716999984],[-149.1902970039999,-17.86907317499984],[-149.20641028599988,-17.866631768999895],[-149.26085364499988,-17.85173919099985],[-149.2759496739999,-17.844903252999913],[-149.3086645169999,-17.803643487999878],[-149.3342992829999,-17.75920989399995],[-149.34345455599993,-17.724867445999905],[-149.3479711579999,-17.718194268999852],[-149.3575333319999,-17.717868748],[-149.36253821499992,-17.72527434699991],[-149.3662003249999,-17.73430755],[-149.37181555899988,-17.7387020809999],[-149.39191646999993,-17.74138762799988],[-149.4503881499999,-17.75920989399995],[-149.47203528599985,-17.760511976999947],[-149.48786373599992,-17.757989190999936],[-149.51923580599987,-17.746189059999963],[-149.57612057199992,-17.737562757999868],[-149.5875138009999,-17.731215101999922],[-149.6050512359999,-17.671807549999883],[-149.61176510299995,-17.663018487999906],[-149.6212052069999,-17.656182549999897],[-149.63097083199992,-17.639336846999896],[-149.6386612619999,-17.618910415],[-149.6421606109999,-17.600844007999896],[-149.6327611969999,-17.553399346999967],[-149.6043188139999,-17.52581145599987],[-149.5640763009999,-17.510023695999834],[-149.51923580599987,-17.4984677059999],[-149.4749649729999,-17.49407317499991],[-149.42951412699995,-17.50156015399997],[-149.38764400899993,-17.517998955999968],[-149.35411536399988,-17.54013437299986],[-149.3440649079999,-17.5507138],[-149.3355606759999,-17.564060153999918],[-149.32966061099995,-17.57984791499996],[-149.32746334499996,-17.59783294099999],[-149.33027096299992,-17.663750908999944],[-149.32746334499996,-17.68417734199999],[-149.30394446499992,-17.712090752999956]]],[[[-149.78563391799992,-17.479180596999868],[-149.8047582669999,-17.52337004999984],[-149.82245846299992,-17.54973723799992],[-149.84276282499988,-17.567559503],[-149.8618871739999,-17.56682708099997],[-149.88520260299987,-17.55535247199984],[-149.91405188699989,-17.53533294099995],[-149.93748938699989,-17.512465101999865],[-149.9444067049999,-17.492364190999908],[-149.93407141799986,-17.481540622999916],[-149.91551673099983,-17.473565362999864],[-149.89777584499996,-17.472263278999947],[-149.88984127499992,-17.481540622999916],[-149.88585364499994,-17.491794529000018],[-149.87763424399992,-17.491957289999903],[-149.86998450399986,-17.487725518999966],[-149.86811275899993,-17.484958592000012],[-149.86021887899986,-17.483168226999936],[-149.8536270819999,-17.479180596999868],[-149.84581458199986,-17.477959893999852],[-149.83458411399988,-17.484958592000012],[-149.8316544259999,-17.472751559999935],[-149.82310950399994,-17.466566664999974],[-149.8108617829999,-17.46461353999993],[-149.79670162699995,-17.464450778999876],[-149.7861221999999,-17.468926690999922],[-149.78563391799992,-17.479180596999868]]],[[[-143.4220271479999,-17.442152601999837],[-143.41356360599985,-17.456963799999983],[-143.43785559799994,-17.438897393999966],[-143.4749649729999,-17.430271091999884],[-143.4566137359999,-17.429294528999904],[-143.4376521479999,-17.433200778999904],[-143.4220271479999,-17.442152601999837]]],[[[-145.40558834499996,-17.442966404000018],[-145.3804825509999,-17.484958592000012],[-145.43512936099992,-17.417168877999913],[-145.41942298099985,-17.426934502999856],[-145.40558834499996,-17.442966404000018]]],[[[-141.4353328119999,-17.383558851999894],[-141.43496660099996,-17.38933684699994],[-141.43683834499993,-17.385837497999958],[-141.43683834499993,-17.382745049999883],[-141.43854732999984,-17.368096612999963],[-141.44249426999994,-17.360121351999823],[-141.45384680899988,-17.352308851999922],[-141.46743730399993,-17.34880950299984],[-141.48184160099993,-17.348565362999892],[-141.4607641269999,-17.34482187299986],[-141.44517981699988,-17.35173919099995],[-141.43626868399986,-17.367364190999936],[-141.4360652329999,-17.37070077899996],[-141.4353328119999,-17.383558851999894]]],[[[-138.4477432929999,-17.361586195999877],[-138.4417211579999,-17.36638762799987],[-138.4614151679999,-17.365655205999843],[-138.46349036399994,-17.359958591999856],[-138.46373450399997,-17.356947523999935],[-138.4609268869999,-17.35035572699988],[-138.44692949099996,-17.332696221999868],[-138.42613684799997,-17.324883721999953],[-138.45490475199992,-17.349786065999908],[-138.45881100199992,-17.35686614399995],[-138.45783443899984,-17.35881926899999],[-138.4536840489999,-17.35955169099985],[-138.4477432929999,-17.361586195999877]]],[[[-145.59288489499994,-17.324802341999966],[-145.57848059799986,-17.383070570999905],[-145.58649654899986,-17.37037525799994],[-145.5913793609999,-17.357679945999962],[-145.5934138659999,-17.343031507999953],[-145.59288489499994,-17.324802341999966]]],[[[-143.0620011059999,-17.008965752999885],[-143.06753495999993,-17.010023695999934],[-143.07315019399994,-17.00937265399989],[-143.0789281889999,-17.007419528999932],[-143.08482825399994,-17.004571221999896],[-143.09382076699987,-16.99797942499991],[-143.09772701699987,-16.994317315999965],[-143.1012263659999,-16.99016692499984],[-143.09040279899983,-16.989515882999882],[-143.07982337099992,-16.9933407529999],[-143.07017981699994,-17.00017669099999],[-143.0620011059999,-17.008965752999885]]],[[[-149.5723363919999,-16.987399997999873],[-149.58686275899993,-17.00042083099994],[-149.5869848299999,-16.996677342],[-149.58613033799986,-16.993584893999937],[-149.5836075509999,-16.987074476999847],[-149.57591712099995,-16.983656507999925],[-149.57209225199995,-16.982598565999965],[-149.56822669199994,-16.98219166499996],[-149.5723363919999,-16.987399997999873]]],[[[-153.9201554029999,-16.8317196589999],[-153.92426510299993,-16.831801039999974],[-153.93321692599986,-16.819105726999908],[-153.94322669199985,-16.787530205999914],[-153.9506729809999,-16.773858330999968],[-153.94298255099991,-16.774590753],[-153.9377335279999,-16.779473565999893],[-153.93476314999992,-16.787367445999948],[-153.93399003799988,-16.79753997199991],[-153.92853756399995,-16.80689869599985],[-153.92280025899984,-16.820896091999984],[-153.9201554029999,-16.8317196589999]]],[[[-150.97956295499992,-16.800388278999947],[-150.9838761059999,-16.809258721999896],[-150.99278723899988,-16.807061455999982],[-150.9948217439999,-16.8135718729999],[-150.99889075399994,-16.817966403999975],[-151.00499426999994,-16.82040781],[-151.01325436099992,-16.82073333099993],[-151.03136145699992,-16.80632903399996],[-151.0375870429999,-16.799574476999936],[-151.03990637899994,-16.789971612999864],[-151.03461666599983,-16.77703215899986],[-151.0228979159999,-16.77288176899999],[-151.01109778599994,-16.772149346999967],[-151.00580807199992,-16.769219658999955],[-151.00239010299993,-16.7608374979999],[-150.9943334629999,-16.761895440999865],[-150.98534094999988,-16.769219658999955],[-150.97911536399994,-16.779717705999843],[-150.97838294199985,-16.788018487999988],[-150.97956295499992,-16.800388278999947]]],[[[-151.36408443899992,-16.866469007999953],[-151.40086829299992,-16.88534921699997],[-151.41392981699985,-16.888929945999863],[-151.4242651029999,-16.881931247999972],[-151.42939205599993,-16.881931247999972],[-151.43158932199992,-16.892185153999904],[-151.4341527989999,-16.89763762799994],[-151.44054114499994,-16.901136976999922],[-151.44916744699992,-16.902927342],[-151.45824133999992,-16.902601820999976],[-151.47789466099988,-16.889580987999906],[-151.48810787699992,-16.856377862999892],[-151.49474036399988,-16.764580987999935],[-151.4912003249999,-16.750258070999948],[-151.4787491529999,-16.738213799999926],[-151.46467037699995,-16.73642343499995],[-151.44652258999994,-16.74049244599982],[-151.43077551999988,-16.747816664999917],[-151.42414303299992,-16.755303643999966],[-151.41279049399992,-16.779717705999843],[-151.3524877589999,-16.858575127999885],[-151.36408443899992,-16.866469007999953]]],[[[-144.0800675119999,-16.7172177059999],[-144.06309973899985,-16.730726820999877],[-144.05406653599994,-16.749688408999887],[-144.0508927069999,-16.759454034],[-144.06281490799992,-16.748630466999927],[-144.0756729809999,-16.730401299999855],[-144.09113521999996,-16.721856377999913],[-144.11070716099994,-16.73967864399998],[-144.11139889199987,-16.735284112999906],[-144.11050370999988,-16.731703382999854],[-144.1068416009999,-16.72389088299994],[-144.0800675119999,-16.7172177059999]]],[[[-151.03416907499988,-16.762627862999892],[-151.0474340489999,-16.766045830999897],[-151.05321204299986,-16.753594658999972],[-151.0540258449999,-16.74179452899999],[-151.05150305899986,-16.730075778999918],[-151.04222571499992,-16.705498956],[-151.03514563699994,-16.694268487999906],[-151.02900143099987,-16.692478123],[-151.0262751939999,-16.708103122999987],[-151.00755774599992,-16.74049244599982],[-151.0095108709999,-16.745700778999904],[-151.01634680899988,-16.74871184699991],[-151.0241593089999,-16.755629164999988],[-151.03416907499988,-16.762627862999892]]],[[[-144.17666581899988,-16.655368748],[-144.1695857409999,-16.667250257999868],[-144.1778458319999,-16.663750908999873],[-144.18590247299994,-16.65935637799997],[-144.2006729809999,-16.64837004999984],[-144.1981095039999,-16.642185153999947],[-144.18814042899993,-16.645684502999856],[-144.17666581899988,-16.655368748]]],[[[-143.44058183499993,-16.620782158999916],[-143.4202774729999,-16.635674737999963],[-143.38621985599988,-16.669854424999954],[-143.4540095689999,-16.624607029000018],[-143.50617428299984,-16.62712981599985],[-143.55068925699993,-16.622165622999987],[-143.46475175699993,-16.614678643999834],[-143.44058183499993,-16.620782158999916]]],[[[-143.6095271479999,-16.629978122999887],[-143.5711563789999,-16.63583749799993],[-143.62035071499992,-16.632012627999913],[-143.66006425699993,-16.60222747199991],[-143.70152747299994,-16.580498955999843],[-143.6662491529999,-16.588474216999984],[-143.6095271479999,-16.629978122999887]]],[[[-151.4765518869999,-16.59050872199991],[-151.4787491529999,-16.594170830999957],[-151.45958411399994,-16.59343840899993],[-151.44957434799994,-16.594659112999864],[-151.44526119699992,-16.597588799999883],[-151.4439591139999,-16.60222747199991],[-151.43871008999986,-16.609307549999954],[-151.43781490799986,-16.614678643999834],[-151.44115149599986,-16.61980559699994],[-151.44819088399996,-16.624200127999913],[-151.45824133999992,-16.62900156],[-151.4598282539999,-16.661065362999892],[-151.46324622299989,-16.674086195999962],[-151.47260494699992,-16.669854424999954],[-151.4805395169999,-16.664971612999892],[-151.53465735599985,-16.641696872999958],[-151.54039466099994,-16.636488539999974],[-151.54088294199988,-16.63103606599985],[-151.5361221999999,-16.594903252999984],[-151.5237524079999,-16.582940362999878],[-151.50267493399986,-16.58017343499999],[-151.47260494699992,-16.580498955999843],[-151.4765518869999,-16.59050872199991]]],[[[-151.7483617829999,-16.50432708099987],[-151.74693762899994,-16.52597421699994],[-151.7626440089999,-16.525811455999985],[-151.7768448559999,-16.51181406000002],[-151.78449459499993,-16.492933851999894],[-151.78042558499988,-16.478122654000018],[-151.76378333199995,-16.472344658999873],[-151.75361080599987,-16.48381926899991],[-151.7483617829999,-16.50432708099987]]],[[[-143.82298743399988,-16.51637135199988],[-143.81761633999986,-16.539646091999984],[-143.82144120999988,-16.537692966999938],[-143.84874426999994,-16.492933851999894],[-143.87979081899996,-16.469414971999853],[-143.91397050699996,-16.45737070099993],[-143.93423417899987,-16.45029062299987],[-143.93032792899987,-16.44996510199985],[-143.91034908799992,-16.4553361959999],[-143.8775121739999,-16.45973072699998],[-143.8619685539999,-16.467217705999857],[-143.83275305899986,-16.498467706],[-143.82298743399988,-16.51637135199988]]],[[[-152.24469967399992,-16.44378020599997],[-152.2562963529999,-16.45126718500002],[-152.26362057199995,-16.44719817499997],[-152.26146399599995,-16.441501559999907],[-152.24469967399992,-16.44378020599997]]],[[[-144.25133216099988,-16.461358331],[-144.2564591139999,-16.478122654000018],[-144.2586563789999,-16.457696221999953],[-144.26085364499988,-16.450860283999845],[-144.29116777299987,-16.416110934999963],[-144.27570553299992,-16.425551039999988],[-144.26012122299986,-16.442315362999906],[-144.25133216099988,-16.461358331]]],[[[-144.4271541009999,-16.322442315999865],[-144.42772376199986,-16.3265927059999],[-144.41222083199995,-16.321221612999846],[-144.39614824099988,-16.32447682099989],[-144.38231360599988,-16.332289320999962],[-144.3731176419999,-16.3404273419999],[-144.40611731699988,-16.329196872999987],[-144.42601477799985,-16.33277760199995],[-144.4345596999999,-16.319919529000018],[-144.42833411399994,-16.32057057099989],[-144.4271541009999,-16.322442315999865]]],[[[-146.32876542899993,-16.137627862999835],[-146.3388565749999,-16.16277434699991],[-146.36709550699987,-16.158786716999927],[-146.39175370999982,-16.147230726999908],[-146.40208899599995,-16.1299781229999],[-146.3872777989999,-16.108168226999847],[-146.35936438699994,-16.100192966999984],[-146.33771725199995,-16.113376559999935],[-146.32876542899993,-16.137627862999835]]],[[[-145.49396725199992,-16.33521900799998],[-145.4822891919999,-16.347832940999965],[-145.5022680329999,-16.336602471999882],[-145.52961178299986,-16.27947356599999],[-145.55313066299993,-16.252129815999837],[-145.57677161399985,-16.20256926899998],[-145.5904027989999,-16.15162525799998],[-145.60655676999988,-16.129327080999857],[-145.61388098899988,-16.080254815999908],[-145.61095130099994,-16.09734465899986],[-145.60358639199995,-16.120293877999927],[-145.59337317599991,-16.14039478999989],[-145.5821833979999,-16.149102471999967],[-145.57713782499985,-16.160821221999868],[-145.56826738199993,-16.212579033999887],[-145.56208248599995,-16.224297783999873],[-145.55919348899994,-16.23300546699994],[-145.51707923099985,-16.278903903999932],[-145.49396725199992,-16.33521900799998]]],[[[-145.61388098899988,-16.052911065999922],[-145.70885169199985,-16.060479424999883],[-145.65758216099985,-16.042575779],[-145.63125566299993,-16.038344007999893],[-145.61388098899988,-16.052911065999922]]],[[[-142.48127193899992,-16.018812757999925],[-142.52965247299994,-16.108168226999847],[-142.52208411399997,-16.08416106599999],[-142.5097550119999,-16.059014581],[-142.49526933499988,-16.03630950299997],[-142.48127193899992,-16.018812757999925]]],[[[-140.12547766799992,-15.953301690999977],[-140.10708574099996,-15.960625908999972],[-140.11021887899994,-15.977227471999852],[-140.1171768869999,-15.961683851999851],[-140.1432185539999,-15.960544528999987],[-140.17227128799988,-15.977227471999852],[-140.15168209499984,-15.957696221999955],[-140.12547766799992,-15.953301690999977]]],[[[-145.21996008999992,-15.8983700499999],[-145.16759192599994,-15.950453382999854],[-145.23591061099995,-15.888441664999988],[-145.21996008999992,-15.8983700499999]]],[[[-145.89858964799987,-15.878350518999838],[-145.89891516799992,-15.888116143999966],[-145.95051021999996,-15.839613539999986],[-145.91429602799994,-15.86353932099986],[-145.89858964799987,-15.878350518999838]]],[[[-140.85985266799986,-15.81991952899986],[-140.87970943899984,-15.8383114559999],[-140.8890274729999,-15.837334893999923],[-140.89500891799992,-15.832940362999848],[-140.89561926999997,-15.826836846999939],[-140.88898678299992,-15.819756768999897],[-140.8614395819999,-15.815524997999873],[-140.8523656889999,-15.815524997999873],[-140.85985266799986,-15.81991952899986]]],[[[-148.23871822799993,-15.863946221999868],[-148.2508438789999,-15.86744557099986],[-148.27171790299988,-15.853204033999859],[-148.2793676419999,-15.830498955999985],[-148.2755834629999,-15.809991143999936],[-148.2620743479999,-15.8024227839999],[-148.25763912699995,-15.807875257999939],[-148.2461645169999,-15.831638279000018],[-148.23900305899994,-15.839613539999986],[-148.22992916599995,-15.848077080999841],[-148.23078365799995,-15.85686614399999],[-148.23871822799993,-15.863946221999868]]],[[[-146.48167883999992,-15.820570570999905],[-146.48192298099988,-15.82691822699992],[-146.49058997299986,-15.808282158999944],[-146.4961645169999,-15.79949309699988],[-146.50304114499988,-15.791680596999981],[-146.49885006399995,-15.794040622999928],[-146.48664303299986,-15.803399346999882],[-146.4826554029999,-15.814873956],[-146.48167883999992,-15.820570570999905]]],[[[-154.51923580599993,-15.82341887799994],[-154.5254613919999,-15.82773202899993],[-154.5287979809999,-15.827243747999942],[-154.52318274599992,-15.819431247999871],[-154.52061926999994,-15.808526299999981],[-154.52208411399988,-15.800469658999859],[-154.5275365879999,-15.794854424999942],[-154.53697669199994,-15.792250257999951],[-154.52476966099988,-15.789320570999934],[-154.5191137359999,-15.795586846999965],[-154.5172826809999,-15.806410414999972],[-154.5163468089999,-15.817315362999862],[-154.51923580599993,-15.82341887799994]]],[[[-145.05870520699995,-15.875909112999976],[-145.05772864499988,-15.902113539999933],[-145.07648678299992,-15.85865650799998],[-145.12987219999985,-15.778008721999939],[-145.16075598899994,-15.75807057099996],[-145.1336156889999,-15.76311614399998],[-145.11754309799994,-15.780694268999836],[-145.0925186839999,-15.82634856599995],[-145.06700598899994,-15.856377862999906],[-145.05870520699995,-15.875909112999976]]],[[[-144.62043209499987,-15.747002862999834],[-144.63133704299995,-15.755303643999909],[-144.6419164699999,-15.755140882999855],[-144.6489151679999,-15.749281507999981],[-144.65172278599994,-15.740166924999912],[-144.64981035099987,-15.730157158999916],[-144.6328018869999,-15.728448174999913],[-144.62193762899992,-15.736016533999871],[-144.62043209499987,-15.747002862999834]]],[[[-145.4326879549999,-15.48853932099985],[-145.43785559799986,-15.496351820999934],[-145.4573461579999,-15.481703382999925],[-145.5239151679999,-15.470472915],[-145.54963131399992,-15.452080987999963],[-145.4815160799999,-15.474786065999837],[-145.45588131399992,-15.479587497999916],[-145.44395911399985,-15.479668877999897],[-145.43541419199985,-15.483005467000012],[-145.4326879549999,-15.48853932099985]]],[[[-146.1941625639999,-15.35947031],[-146.20299231699994,-15.38884856599999],[-146.19863847599993,-15.369805596999909],[-146.19615637899992,-15.347588799999869],[-146.1983129549999,-15.338718357],[-146.2036026679999,-15.331475518999893],[-146.20742753799988,-15.328627210999855],[-146.21719316299993,-15.323663018999978],[-146.21397864499988,-15.323093357000019],[-146.20498613199987,-15.32773202899986],[-146.20055091099988,-15.329685153999906],[-146.19668535099987,-15.33562590899993],[-146.1927791009999,-15.34628671699987],[-146.1941625639999,-15.35947031]]],[[[-146.60293535099987,-15.256931247999928],[-146.5977677069999,-15.27157968499995],[-146.6100968089999,-15.25644296699994],[-146.62083899599992,-15.239841403999987],[-146.6390274729999,-15.23259856599988],[-146.62385006399992,-15.235039971999909],[-146.61172441299993,-15.24391041500003],[-146.60293535099987,-15.256931247999928]]],[[[-147.23851477799988,-15.235284112999949],[-147.23741614499994,-15.244235934999963],[-147.2418106759999,-15.239027601999977],[-147.2462052069999,-15.236748955999914],[-147.25088456899994,-15.235039971999909],[-147.25625566299988,-15.232517184999892],[-147.2422582669999,-15.232354424999839],[-147.23851477799988,-15.235284112999949]]],[[[-147.7499893869999,-15.22869231599988],[-147.7371313139999,-15.235284112999949],[-147.7789607409999,-15.216403903999918],[-147.77407792899993,-15.213474216999899],[-147.76341712099992,-15.219414971999923],[-147.7499893869999,-15.22869231599988]]],[[[-147.4925024079999,-15.091078382999923],[-147.45897376199986,-15.121351820999918],[-147.5120336579999,-15.080010674999967],[-147.53087317599991,-15.069024346999838],[-147.51085364499988,-15.07789478999996],[-147.4925024079999,-15.091078382999923]]],[[[-147.93659420499995,-15.066338799999855],[-147.9319555329999,-15.080824476999977],[-147.93431555899986,-15.076918226999894],[-147.93667558499993,-15.073907158999901],[-147.93781490799995,-15.070896091999897],[-147.93659420499995,-15.066338799999855]]],[[[-148.05500240799992,-14.959893487999977],[-148.0457657539999,-14.997735283999916],[-148.0543106759999,-14.98463307099986],[-148.06627356699994,-14.971123955999886],[-148.08433997299994,-14.955010674999912],[-148.11070716099994,-14.940362237999906],[-148.1760961579999,-14.92205169099985],[-148.13410396999993,-14.925225518999909],[-148.0890600249999,-14.936781507999838],[-148.05500240799992,-14.959893487999977]]],[[[-148.6227514309999,-14.877862237999961],[-148.62800045499992,-14.894707940999965],[-148.6479386059999,-14.87175872199988],[-148.6906632149999,-14.853773695999848],[-148.6677139959999,-14.856622002999883],[-148.64057369699992,-14.864922783999958],[-148.6227514309999,-14.877862237999961]]],[[[-145.24982662699992,-14.670668226999908],[-145.25479081899988,-14.693291924999885],[-145.23350989499988,-14.688246351999934],[-145.19493567599991,-14.662041924999912],[-145.20543372299989,-14.675225518999865],[-145.22297115799992,-14.68840911299999],[-145.2427872389999,-14.698418877999899],[-145.26040605399996,-14.702325127999984],[-145.26390540299985,-14.69011809699999],[-145.25324459499993,-14.663181247999857],[-145.22964433499988,-14.620375257999951],[-145.24982662699992,-14.670668226999908]]],[[[-146.2363175119999,-14.479180596999838],[-146.25690670499995,-14.497491143999893],[-146.24575761599993,-14.476006768999952],[-146.23949133999986,-14.455824476999936],[-146.27114824099988,-14.435479424999855],[-146.2432755199999,-14.439222914999974],[-146.23176021999987,-14.45680104],[-146.2363175119999,-14.479180596999838]]],[[[-145.94371497299994,-14.441827080999971],[-145.95490475199995,-14.443536065999965],[-145.96617591099994,-14.443129164999958],[-145.9332169259999,-14.437595309999862],[-145.92243404899995,-14.433770440999849],[-145.93276933499988,-14.438409112999963],[-145.94371497299994,-14.441827080999971]]],[[[-144.87962805899988,-14.411797783999916],[-144.88060462099986,-14.422133070999934],[-144.88329016799992,-14.427422784],[-144.90274003799993,-14.442152601999894],[-144.93496660099987,-14.459730726999922],[-144.94473222599993,-14.463311455999984],[-144.9546606109999,-14.4698218729999],[-144.98582923099988,-14.500583591999884],[-145.00308183499993,-14.511163018999838],[-144.9546606109999,-14.463474216999868],[-144.9107152989999,-14.439548434999905],[-144.88805091099994,-14.418145440999865],[-144.9131973949999,-14.428155205999929],[-144.95588131399995,-14.432061455999841],[-145.00308183499993,-14.442966404],[-144.98509680899988,-14.432305596999882],[-144.9623103509999,-14.426202080999985],[-144.91779537699995,-14.422458591999956],[-144.89736894399988,-14.41228606599999],[-144.88508053299992,-14.407972915],[-144.87962805899988,-14.411797783999916]]],[[[-145.8354386059999,-14.342705987999906],[-145.8465876939999,-14.36712004999987],[-145.84260006399992,-14.34661223799999],[-145.86017818899995,-14.34417083099997],[-145.91429602799994,-14.34661223799999],[-145.85838782499985,-14.337334893999865],[-145.8354386059999,-14.342705987999906]]],[[[-141.1745499339999,-14.18962981599985],[-141.1795141269999,-14.196465752999956],[-141.1892797519999,-14.190199476999823],[-141.21279863199985,-14.164971612999935],[-141.2027481759999,-14.170179945999848],[-141.1745499339999,-14.18962981599985]]],[[[-138.63695227799988,-10.542168877999856],[-138.67149817599986,-10.55046965899983],[-138.6856176419999,-10.542087497999873],[-138.69343014199993,-10.526136976999865],[-138.69444739499988,-10.507907809999878],[-138.67959550699993,-10.473565362999835],[-138.6816300119999,-10.458265882999868],[-138.6988012359999,-10.426446221999838],[-138.66519120999993,-10.427341403999918],[-138.65046139199987,-10.431410414999888],[-138.63670813699994,-10.440606377999856],[-138.62043209499987,-10.471856377999826],[-138.62022864499994,-10.510837497999901],[-138.63695227799988,-10.542168877999856]]],[[[-139.11847896999984,-10.00017669099988],[-139.13076738199993,-10.014906507999868],[-139.1438695949999,-9.997816664999917],[-139.14268958199986,-9.9789364559999],[-139.1389867829999,-9.959405205999829],[-139.14443925699993,-9.940362237999835],[-139.1338598299999,-9.928317966999913],[-139.12067623599984,-9.90439218499985],[-139.10383053299984,-9.888278903999876],[-139.0823868479999,-9.899509372999873],[-139.06916256399987,-9.903903903999861],[-139.05565344999988,-9.913181247999916],[-139.0477595689999,-9.922539971999853],[-139.05134029899986,-9.926690362999892],[-139.05500240799984,-9.928399346999894],[-139.05760657499994,-9.932386976999865],[-139.05972245999993,-9.937107028999876],[-139.06187903599994,-9.940362237999835],[-139.06663977799985,-9.943291924999855],[-139.07664954299992,-9.944594007999854],[-139.0823868479999,-9.947198174999839],[-139.0958552729999,-9.961683851999894],[-139.11847896999984,-10.00017669099988]]],[[[-138.87694251199994,-9.754327080999872],[-138.8666886059999,-9.755466403999904],[-138.8554581369999,-9.753513278999861],[-138.8480118479999,-9.748955987999821],[-138.84235592399986,-9.744235934999907],[-138.8365779289999,-9.741143487999835],[-138.81403561099987,-9.739515882999811],[-138.81847083199997,-9.74871184699988],[-138.86925208199995,-9.791599216999856],[-138.8920792309999,-9.800713799999839],[-138.91661536399997,-9.806573174999883],[-138.9556778639999,-9.809991143999893],[-139.00942949099985,-9.809014580999829],[-139.02090410099993,-9.806329033999845],[-139.0262345039999,-9.803399346999825],[-139.03799394399988,-9.802422783999845],[-139.04971269399996,-9.803480726999808],[-139.05504309799994,-9.806329033999845],[-139.05504309799994,-9.837334893999866],[-139.06191972599993,-9.853936455999829],[-139.07135982999986,-9.85475025799984],[-139.0855199859999,-9.848809502999913],[-139.12629146999984,-9.840101820999832],[-139.14346269399996,-9.828871351999837],[-139.15689042899996,-9.815199476999894],[-139.16490637899992,-9.803317966999842],[-139.17031816299993,-9.790134372999887],[-139.17324785099987,-9.77418385199988],[-139.16942298099985,-9.76100025799984],[-139.13841712099992,-9.750909112999864],[-139.05138098899988,-9.70142994599982],[-139.01537024599992,-9.694431247999844],[-138.98452714799996,-9.699476820999877],[-138.97252356699994,-9.720635674999867],[-138.96129309799994,-9.733819268999824],[-138.94273841099994,-9.74236419099985],[-138.9212133449999,-9.747165622999844],[-138.90078691299993,-9.748630466999899],[-138.87694251199994,-9.754327080999872]]],[[[-140.05386308499988,-9.346286716999899],[-140.04141191299996,-9.351006768999824],[-140.0276993479999,-9.34392669099985],[-140.04063880099994,-9.374118747999873],[-140.04893958199992,-9.408135674999897],[-140.06289628799988,-9.435967705999857],[-140.09284420499986,-9.447523695999877],[-140.11139889199987,-9.437758070999848],[-140.1585994129999,-9.371840101999808],[-140.1394750639999,-9.357842705999843],[-140.12144934799994,-9.3402645809999],[-140.10163326699993,-9.32626718499985],[-140.0767309239999,-9.323418877999899],[-140.05386308499988,-9.346286716999899]]],[[[-139.5823461579999,-8.868910414999887],[-139.5744522779999,-8.870212497999887],[-139.55842037699983,-8.864678643999866],[-139.5469864569999,-8.867120049999897],[-139.5143936839999,-8.883965752999899],[-139.50316321499992,-8.899021091999913],[-139.5084122389999,-8.912041924999897],[-139.52342688699994,-8.921563408999901],[-139.54165605399993,-8.926202080999829],[-139.58560136599993,-8.929457289999874],[-139.6030981109999,-8.936944268999838],[-139.61676998599984,-8.954196872999844],[-139.61270097599987,-8.939222914999903],[-139.61803137899994,-8.924981377999899],[-139.62621008999994,-8.910821221999882],[-139.6304418609999,-8.89544036299985],[-139.59691321499992,-8.858005466999899],[-139.58946692599994,-8.858005466999899],[-139.5823461579999,-8.868910414999887]]],[[[-140.2167048819999,-8.781019789999917],[-140.08971106699985,-8.802015882999868],[-140.0589900379999,-8.802015882999868],[-140.05142167899993,-8.80046965899983],[-140.03742428299986,-8.792250257999825],[-140.0276993479999,-8.788995049999883],[-140.02774003799993,-8.79371510199988],[-140.0295304029999,-8.796482028999847],[-140.0322159499999,-8.798760674999825],[-140.03941809799994,-8.8070614559999],[-140.0494278639999,-8.823174737999864],[-140.0222875639999,-8.846774997999901],[-140.01598059799994,-8.859307549999897],[-140.01402747299989,-8.881117445999863],[-140.01915442599991,-8.896416924999826],[-140.03132076699987,-8.894463799999869],[-140.05557206899988,-8.878513278999861],[-140.06053626199994,-8.89999765399989],[-140.07664954299992,-8.91521575299987],[-140.09601803299992,-8.919040622999887],[-140.11021887899994,-8.905694268999866],[-140.11766516799992,-8.905694268999866],[-140.12999426999994,-8.916436455999886],[-140.1699112619999,-8.929457289999874],[-140.17853756399992,-8.936781507999882],[-140.18321692599994,-8.953708591999856],[-140.19432532499988,-8.950372002999842],[-140.20702063699994,-8.939385674999869],[-140.22769120999993,-8.92701588299984],[-140.2347712879999,-8.912855726999823],[-140.2451879549999,-8.866875908999859],[-140.24742591099988,-8.847344658999873],[-140.2495824859999,-8.838636976999894],[-140.25894120999993,-8.830498955999872],[-140.2610570949999,-8.823174737999864],[-140.24779212099992,-8.786879164999874],[-140.2167048819999,-8.781019789999917]]],[[[-140.70783443899984,-8.039727471999882],[-140.71776282499994,-8.04127369599982],[-140.72716223899997,-8.028090101999865],[-140.7277725899999,-7.991469007999853],[-140.7063695949999,-7.963067315999822],[-140.67316646999987,-7.950127862999821],[-140.63841712099992,-7.959730726999894],[-140.6530655589999,-7.970798434999921],[-140.65831458199986,-7.973402601999837],[-140.67564856699988,-7.976739190999851],[-140.6839086579999,-7.985284112999878],[-140.6924535799999,-8.01506926899988],[-140.6988826159999,-8.028985283999859],[-140.70783443899984,-8.039727471999882]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Tonga","sov_a3":"TON","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tonga","adm0_a3":"TON","geou_dif":0,"geounit":"Tonga","gu_a3":"TON","su_dif":0,"subunit":"Tonga","su_a3":"TON","brk_diff":0,"name":"Tonga","name_long":"Tonga","brk_a3":"TON","brk_name":"Tonga","brk_group":null,"abbrev":"Tongo","postal":"TO","formal_en":"Kingdom of Tonga","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tonga","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":1,"mapcolor13":8,"pop_est":120898,"gdp_md_est":549,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"TN","iso_a2":"TO","iso_a3":"TON","iso_n3":"776","un_a3":"776","wb_a2":"TO","wb_a3":"TON","woe_id":23424964,"woe_id_eh":23424964,"woe_note":"Exact WOE match as country","adm0_a3_is":"TON","adm0_a3_us":"TON","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"TON.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-176.20702063699989,-22.33879973799992],[-176.21019446499994,-22.33879973799992],[-176.2158910799999,-22.335137627999885],[-176.21930904899995,-22.3298479149999],[-176.21825110599985,-22.32488372199994],[-176.21349036399988,-22.32390715899997],[-176.20421301999994,-22.326918226999965],[-176.19810950399994,-22.331963799999908],[-176.20185299399986,-22.33611419099995],[-176.20702063699989,-22.33879973799992]]],[[[-174.91392981699994,-21.44410572699998],[-174.92027747299989,-21.45419687299986],[-174.93586178299995,-21.44548919099995],[-174.9422094389999,-21.43027109199997],[-174.95490475199995,-21.41806406],[-174.98363196499992,-21.39771900799991],[-174.98363196499992,-21.3908830709999],[-174.97968502499992,-21.38941822699985],[-174.96996008999986,-21.383965752999984],[-174.97581946499992,-21.373142184999907],[-174.97687740799986,-21.359551690999947],[-174.97175045499995,-21.347914320999934],[-174.95185299399995,-21.33977629999984],[-174.94550533799992,-21.33212655999999],[-174.93586178299995,-21.315687757999896],[-174.9335424469999,-21.309502862999935],[-174.9261368479999,-21.294610283999887],[-174.91840572799987,-21.284437757999925],[-174.91474361899995,-21.292168877999856],[-174.9085180329999,-21.32935963299994],[-174.90904700399986,-21.344496351999936],[-174.91474361899995,-21.381442966999966],[-174.91392981699994,-21.44410572699998]]],[[[-175.31541907499988,-21.121351820999962],[-175.30650794199985,-21.12167734199998],[-175.2498266269999,-21.11126067499991],[-175.24058997299994,-21.113702080999857],[-175.23310299399984,-21.119317315999936],[-175.22520911399988,-21.123793226999823],[-175.21886145699986,-21.13005950299987],[-175.21637936099992,-21.141045831],[-175.23131262899986,-21.15007903399993],[-175.2382299469999,-21.158379815999908],[-175.2340795559999,-21.16863372199992],[-175.22358150899987,-21.172539971999836],[-175.21357174399986,-21.168389580999985],[-175.2035619779999,-21.16155364399988],[-175.1931046209999,-21.15813567499987],[-175.18077551999988,-21.160088799999908],[-175.16307532499985,-21.16936614399995],[-175.15497799399995,-21.171807549999983],[-175.14012610599985,-21.168389580999985],[-175.13422604099995,-21.157891534],[-175.1284073559999,-21.144138278999904],[-175.11396236899992,-21.130791924999897],[-175.10370846299992,-21.126234632999854],[-175.0908096999999,-21.122735283999944],[-175.07738196499992,-21.12151458099993],[-175.06554114499994,-21.123955987999878],[-175.05463619699987,-21.131524346999925],[-175.05089270699995,-21.139336847],[-175.0518692699999,-21.15496184699998],[-175.06049557199992,-21.163750908999873],[-175.11738033799995,-21.203057549999954],[-175.1209610669999,-21.21168385199988],[-175.11933346299986,-21.222344658999987],[-175.1159154939999,-21.233575128],[-175.11396236899992,-21.244073174999883],[-175.1176244779999,-21.255954685],[-175.12653561099992,-21.262790622999944],[-175.1378067699999,-21.26620859199994],[-175.1487524079999,-21.26799895599993],[-175.1703588529999,-21.263360283999916],[-175.18049068899995,-21.255059502999842],[-175.19652258999992,-21.22633228999989],[-175.2096654939999,-21.214450778999932],[-175.25731360599985,-21.192152601999894],[-175.26484127499992,-21.199639580999957],[-175.2896215489999,-21.185967705999914],[-175.30378170499992,-21.180759372999926],[-175.3162735669999,-21.17864348799992],[-175.32575436099992,-21.17359791499989],[-175.35045325399992,-21.141045831],[-175.3648168609999,-21.113946221999896],[-175.3552953769999,-21.08961354],[-175.33214270699995,-21.07122161299996],[-175.30577551999994,-21.062595309999878],[-175.31822669199988,-21.076836846999882],[-175.33405514199987,-21.08961354],[-175.34080969999994,-21.102634373],[-175.3262426419999,-21.117120049999954],[-175.31541907499988,-21.121351820999962]]],[[[-174.32017981699994,-19.81926848799999],[-174.3393448559999,-19.82187265399999],[-174.34699459499993,-19.81812916499996],[-174.35313880099991,-19.813734632999896],[-174.35785885299993,-19.80836353999993],[-174.3610733709999,-19.80136484199994],[-174.3475235669999,-19.79680754999991],[-174.33698482999995,-19.78777434699998],[-174.32966061099995,-19.77499765399986],[-174.32567298099985,-19.759698174999897],[-174.32074947799993,-19.760674737999878],[-174.30980383999994,-19.76474374799993],[-174.30585689999992,-19.767185153999957],[-174.3137914699999,-19.78476327899999],[-174.31513424399992,-19.804457290000016],[-174.32017981699994,-19.81926848799999]]],[[[-175.0478409499999,-19.781182549999926],[-175.05931555899988,-19.80136484199994],[-175.05931555899988,-19.793877862999892],[-175.06554114499994,-19.80136484199994],[-175.0705053379999,-19.795586846999896],[-175.0757543609999,-19.792250257999868],[-175.08726966099988,-19.787692967],[-175.0864965489999,-19.78728606599999],[-175.08763587099992,-19.78476327899999],[-175.08726966099988,-19.780857028999904],[-175.09947669199985,-19.749769789999988],[-175.1003311839999,-19.739841403999975],[-175.09666907499994,-19.72079843499999],[-175.0906469389999,-19.71266041499989],[-175.08165442599991,-19.711358330999886],[-175.06928463399987,-19.71200937299993],[-175.05333411399988,-19.723809502999984],[-175.04600989499988,-19.75115325299997],[-175.0478409499999,-19.781182549999926]]],[[[-174.27167721299986,-19.74911874799994],[-174.2875463529999,-19.750583592],[-174.30219479099992,-19.74407317499991],[-174.30581620999988,-19.73300546699997],[-174.28819739499994,-19.723728123],[-174.27818762899986,-19.71062590899986],[-174.26996822799995,-19.696872653999932],[-174.25743567599983,-19.684665622999958],[-174.25218665299988,-19.699314059999878],[-174.2551977199999,-19.712172132999893],[-174.26105709499993,-19.724297783999972],[-174.26427161399988,-19.736423434999978],[-174.27167721299986,-19.74911874799994]]],[[[-174.24400794199985,-19.646254164999945],[-174.24925696499992,-19.65374114399991],[-174.26427161399988,-19.650485934999878],[-174.27521725199995,-19.63567473799999],[-174.28844153599988,-19.61109791499989],[-174.29303951699993,-19.59270598799985],[-174.27790279899992,-19.595879815999908],[-174.27277584499987,-19.604261976999965],[-174.26777096299986,-19.626153252999984],[-174.26085364499988,-19.630547783999887],[-174.24799557199995,-19.63591887799994],[-174.24400794199985,-19.646254164999945]]],[[[-174.64045162699992,-18.81658294099985],[-174.65379798099994,-18.81747812299984],[-174.66413326699995,-18.80136484199987],[-174.6612442699999,-18.786879164999917],[-174.6496068999999,-18.779554945999834],[-174.63385982999995,-18.78533294099988],[-174.62682044199988,-18.797539971999868],[-174.63023841099988,-18.809014580999985],[-174.64045162699992,-18.81658294099985]]],[[[-173.9142553379999,-18.606133721999853],[-173.91515051999988,-18.62688567499994],[-173.92296301999988,-18.63697682099982],[-173.94208736899992,-18.615817966999913],[-173.95295162699992,-18.62070077899989],[-173.95860755099991,-18.626722914999974],[-173.95763098899994,-18.634209893999866],[-173.94896399599995,-18.64316171699997],[-173.95722408799992,-18.65300872199991],[-173.9625951809999,-18.66350676899988],[-173.97663326699995,-18.660577080999943],[-173.9859513009999,-18.670993747999844],[-173.9905899729999,-18.688083591999884],[-173.99054928299992,-18.705173434999935],[-174.0030411449999,-18.698500257999882],[-174.00995846299992,-18.687107028999918],[-174.01720130099986,-18.66350676899988],[-174.00116939999987,-18.657403252999885],[-174.00035559799986,-18.645684502999984],[-174.00645911399994,-18.634372653999918],[-174.0109757149999,-18.629489841999856],[-174.0223282539999,-18.63884856599988],[-174.02562415299988,-18.653741143999838],[-174.03014075399986,-18.663344007999825],[-174.04515540299988,-18.65683359199991],[-174.04613196499986,-18.66236744599985],[-174.04906165299988,-18.66350676899988],[-174.05357825399994,-18.66318124799986],[-174.0594376289999,-18.66350676899988],[-174.07249915299985,-18.633965752999913],[-174.05357825399994,-18.61907317499987],[-174.02546139199995,-18.604913018999838],[-174.0109757149999,-18.577894789999974],[-174.00413977799988,-18.570977471999896],[-173.9881078769999,-18.56731536299985],[-173.9698380199999,-18.5661760399999],[-173.95636959499993,-18.56731536299985],[-173.9412735669999,-18.572849216999856],[-173.93427486899995,-18.579278252999956],[-173.9279679029999,-18.586683851999865],[-173.9153946609999,-18.595310153999947],[-173.9142553379999,-18.606133721999853]]],[[[-175.61778723899994,-15.601495049999981],[-175.63914954299992,-15.62428150799984],[-175.66889400899993,-15.62151458099987],[-175.6862686839999,-15.602308851999823],[-175.68333899599983,-15.582126559999978],[-175.66376705599987,-15.566013279],[-175.63133704299992,-15.55950286299992],[-175.61261959499993,-15.573337497999916],[-175.61778723899994,-15.601495049999981]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Solomon Islands","sov_a3":"SLB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Solomon Islands","adm0_a3":"SLB","geou_dif":0,"geounit":"Solomon Islands","gu_a3":"SLB","su_dif":0,"subunit":"Solomon Islands","su_a3":"SLB","brk_diff":0,"name":"Solomon Is.","name_long":"Solomon Islands","brk_a3":"SLB","brk_name":"Solomon Is.","brk_group":null,"abbrev":"S. Is.","postal":"SB","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Solomon Islands","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":595613,"gdp_md_est":1078,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"BP","iso_a2":"SB","iso_a3":"SLB","iso_n3":"090","un_a3":"090","wb_a2":"SB","wb_a3":"SLB","woe_id":23424766,"woe_id_eh":23424766,"woe_note":"Exact WOE match as country","adm0_a3_is":"SLB","adm0_a3_us":"SLB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":11,"long_len":15,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"SLB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[168.81861412900014,-12.284926039999931],[168.8024194670002,-12.290622653999918],[168.79786217500015,-12.28191497199984],[168.80567467500023,-12.27410247199984],[168.81226647200006,-12.266289971999853],[168.82292728000007,-12.26726653399983],[168.8258569670002,-12.281508070999834],[168.81861412900014,-12.284926039999931]]],[[[166.96322675900015,-11.650323174999897],[166.94564863400004,-11.65325286299982],[166.93897545700017,-11.642022393999824],[166.94434655000012,-11.625420830999857],[166.95769290500002,-11.61256275799984],[166.97584069100006,-11.611016533999887],[166.98487389400023,-11.614353122999916],[166.9855249360002,-11.623304945999848],[166.979665561,-11.638604424999912],[166.96322675900015,-11.650323174999897]]],[[[166.86988366000003,-11.588962497999901],[166.89344522899998,-11.59378398099986],[166.93555950900023,-11.608813002999824],[166.923919831,-11.640971530999835],[166.9251969730001,-11.65489905399987],[166.9240164150001,-11.674288607999856],[166.9784481830002,-11.670487411999844],[166.984148859,-11.709863308999898],[166.90927736200015,-11.714936541999819],[166.8882411750001,-11.717422094999861],[166.87152398800006,-11.716865791999837],[166.84302083900013,-11.713315820999837],[166.82810604100004,-11.693353071999852],[166.81617272200018,-11.682305596999896],[166.80250084700006,-11.67717864399988],[166.7970751820001,-11.66979331799989],[166.7796789080002,-11.648617999999855],[166.76724825700003,-11.633490164999884],[166.767203404,-11.617119510999842],[166.77522526700002,-11.60679323099987],[166.78512530300006,-11.60131600199982],[166.8055319690002,-11.591568312999852],[166.82410927200013,-11.591526288999844],[166.84701321500017,-11.592680611999867],[166.86988366000003,-11.588962497999901]]],[[[160.05241946700008,-11.495212497999887],[160.06348717500012,-11.496026299999897],[160.08716881600006,-11.49480559699988],[160.09669030000012,-11.49920012799987],[160.1167098320001,-11.516696872999916],[160.1373804050002,-11.52988046699987],[160.1933699880002,-11.556329033999859],[160.22299238399998,-11.578383070999848],[160.2584741550002,-11.595472914999887],[160.28744550899998,-11.617364190999837],[160.3081160820001,-11.626641533999873],[160.35279381600003,-11.639825127999828],[160.39389082100013,-11.657810153999861],[160.50367272200006,-11.736016533999873],[160.56446373800003,-11.77304452899989],[160.58220462300005,-11.794854424999853],[160.55884850400017,-11.811211846999866],[160.54688561300023,-11.811293226999851],[160.53809655000006,-11.808363539999915],[160.52963300900004,-11.80681731599988],[160.51783287900017,-11.811211846999866],[160.512461785,-11.81812916499986],[160.50456790500002,-11.838311455999886],[160.497325066,-11.84587981599985],[160.48316491000017,-11.844984632999854],[160.470957879,-11.83171965899983],[160.46013431100013,-11.815036716999884],[160.44955488400012,-11.804375908999845],[160.43433678500017,-11.810967705999829],[160.42847741000006,-11.811211846999866],[160.42261803500008,-11.808526299999883],[160.38526451900023,-11.783786716999913],[160.38005618600005,-11.777032158999873],[160.36890709700006,-11.734551690999908],[160.36011803500017,-11.716892184999892],[160.339691602,-11.701348565999893],[160.32935631600017,-11.698337497999887],[160.3081160820001,-11.697035414999887],[160.298106316,-11.69451262799987],[160.28581790500004,-11.686944268999824],[160.28337649800014,-11.680840752999842],[160.28516686300011,-11.67473723799985],[160.28516686300011,-11.667168877999899],[160.28394616000017,-11.657321872999873],[160.2848413420002,-11.649509372999887],[160.28207441500004,-11.641859632999854],[160.27076256600006,-11.632989190999822],[160.26246178500017,-11.629164320999806],[160.25180097700004,-11.626153252999885],[160.24057050900004,-11.62468840899983],[160.23047936300017,-11.626153252999885],[160.22584069100006,-11.631036065999865],[160.21631920700023,-11.648044528999918],[160.20997155000012,-11.653497002999869],[160.2010197270001,-11.655205987999864],[160.189300977,-11.65536874799993],[160.1684676440001,-11.653497002999869],[160.15121504,-11.64714934699984],[160.11247806100008,-11.626071872999901],[160.09262129000012,-11.61939869599986],[160.09766686300011,-11.609063408999845],[160.1007593110002,-11.605075778999876],[160.08253014400012,-11.592217705999841],[160.0664168630002,-11.59351978999993],[160.05274498800011,-11.60076262799987],[160.04135175900004,-11.605075778999876],[160.02369225400003,-11.600681247999887],[160.01059004000015,-11.58945077899989],[159.98194420700005,-11.554294528999918],[159.97779381600006,-11.540215752999885],[159.97291100400017,-11.533379815999865],[159.9655054050002,-11.525811455999914],[159.96338951900006,-11.520603122999916],[159.96924889400012,-11.503187757999852],[159.97608483200023,-11.491387627999885],[159.99610436300011,-11.473077080999829],[160.00326582100016,-11.46111419099988],[160.00668379000012,-11.465101820999863],[160.01010175900015,-11.466485283999845],[160.01368248800023,-11.467217705999872],[160.01758873800023,-11.468519789999874],[160.0319930350001,-11.483575127999883],[160.04175866000003,-11.490492445999891],[160.05241946700008,-11.495212497999887]]],[[[159.85108483200005,-11.307712497999887],[159.85320071700008,-11.32447682099982],[159.82992597700013,-11.315362237999821],[159.81055748800023,-11.310479424999853],[159.79330488400015,-11.302422783999901],[159.77735436300023,-11.283623955999857],[159.78532962300008,-11.282810153999845],[159.79200280000023,-11.28394947699988],[159.79835045700005,-11.28655364399988],[159.80469811300011,-11.29045989399988],[159.82227623800023,-11.292657158999873],[159.83936608200005,-11.297621351999823],[159.85108483200005,-11.307712497999887]]],[[[166.56471155100022,-11.259934441999818],[166.5572516080001,-11.283643657999889],[166.534163355,-11.308094010999838],[166.52652088000016,-11.308895799999917],[166.5164519520001,-11.311279307999868],[166.50882668000023,-11.30931908199986],[166.50048185500023,-11.304603408999853],[166.5002067200002,-11.297913562999852],[166.50076424400007,-11.288876229999858],[166.50684756500007,-11.281403898999855],[166.51031904500005,-11.274680456999903],[166.50912724900004,-11.260914753999842],[166.49496605,-11.269270890999863],[166.48344922400022,-11.278662434999859],[166.47769368900003,-11.269983340999843],[166.47975988900023,-11.247421582999847],[166.49426631500003,-11.229276881999837],[166.5118556700002,-11.213424037999829],[166.5251094170001,-11.209051679999902],[166.54042407400007,-11.214563966999904],[166.55575985900012,-11.22679070299992],[166.56390006600012,-11.241026076999859],[166.56471155100022,-11.259934441999818]]],[[[166.06117432800002,-10.65403259199988],[166.07813561300006,-10.663018487999878],[166.08090254000004,-10.667657158999901],[166.08497155000012,-10.672051690999893],[166.1146698910002,-10.668155578999842],[166.14275731800015,-10.669251218999904],[166.14790458600015,-10.69404640199987],[166.13701523800015,-10.705320459999925],[166.13298587300008,-10.724786065999893],[166.0956876330001,-10.73923004199986],[166.08371995500002,-10.749836809999849],[166.065386833,-10.758285702999927],[166.05450146000007,-10.766732049999872],[166.03500410200016,-10.765394789999888],[166.02816816500015,-10.767266533999859],[166.00237615100002,-10.757215739999848],[165.9897834120002,-10.766809691999896],[165.98080488400004,-10.773370049999855],[165.96957441499998,-10.770196221999882],[165.93421965400015,-10.775741309999844],[165.8918049280002,-10.824105366999914],[165.86196457200006,-10.868540143999851],[165.84935825199994,-10.856151121999813],[165.85239241600001,-10.828618244999829],[165.84041774100004,-10.814567534999895],[165.82836962200022,-10.812300544999815],[165.80008040300018,-10.837543283999864],[165.77023532799998,-10.835823172999909],[165.7564743410001,-10.812161111999913],[165.75362772000008,-10.772741720999903],[165.7530303880002,-10.751887720999903],[165.77215005400015,-10.738498526999905],[165.7811709800002,-10.724901682999857],[165.79263405299997,-10.709136707999932],[165.8018129080002,-10.708588093999836],[165.79741707000008,-10.74306464199988],[165.8121698800002,-10.759318133999898],[165.8219498540001,-10.762164557999867],[165.82709388200007,-10.749212321999877],[165.8282100970001,-10.733987447999866],[165.83121829800018,-10.707651219999859],[165.84784080400001,-10.684607855999886],[165.87806236100008,-10.656846509999824],[165.92334342200004,-10.65353927899983],[165.99452654000018,-10.66113948599984],[166.0266637460002,-10.647016063999926],[166.06117432800002,-10.65403259199988]]],[[[165.7452905610002,-10.42164478999993],[165.73560631600006,-10.424574476999865],[165.72779381600006,-10.422458591999856],[165.72291100400017,-10.41285572699988],[165.72380618600008,-10.401543877999899],[165.7262475920002,-10.394626559999892],[165.73218834700006,-10.389906507999882],[165.74634850400014,-10.393487237999864],[165.75505618600008,-10.406914971999853],[165.75294030000023,-10.41676197699988],[165.7452905610002,-10.42164478999993]]],[[[166.24252363400004,-10.22079843499992],[166.24244225400005,-10.26897551899988],[166.24903405000012,-10.266696872999901],[166.25245201900023,-10.264906507999825],[166.26710045700023,-10.26425546699987],[166.27995853000007,-10.273044528999932],[166.27003014400006,-10.291924737999864],[166.25147545700003,-10.30917734199987],[166.2373153000002,-10.311130466999913],[166.236094597,-10.296563408999887],[166.23804772200018,-10.283461195999834],[166.23145592500012,-10.282891533999859],[166.22868899800002,-10.27605559699984],[166.23585045700003,-10.255303643999838],[166.23926842500003,-10.234307549999897],[166.23853600400017,-10.215020440999865],[166.24252363400004,-10.22079843499992]]],[[[161.77051842500023,-10.278415622999887],[161.747813347,-10.289808851999851],[161.74073326900023,-10.288506768999852],[161.73698978000002,-10.284600518999866],[161.73666425899995,-10.279229424999897],[161.7409774100001,-10.272556247999844],[161.74586022200018,-10.26327890399989],[161.74195397200018,-10.259047132999868],[161.73503665500007,-10.257419528999845],[161.7306421230002,-10.25562916499986],[161.71729576900006,-10.231377862999878],[161.71705162900005,-10.218194268999838],[161.7306421230002,-10.206719658999887],[161.75245201900023,-10.224216403999932],[161.76880944100006,-10.252211195999863],[161.77051842500023,-10.278415622999887]]],[[[161.33570397200018,-10.20867278399983],[161.34083092500012,-10.214043877999885],[161.39600670700023,-10.204034112999906],[161.50220787900017,-10.250746351999808],[161.6095483730002,-10.3168270809999],[161.66863040500007,-10.364922783999873],[161.68726647200006,-10.357598565999865],[161.70020592500023,-10.365492445999848],[161.72038821700008,-10.396091403999861],[161.73511803500006,-10.405368747999901],[161.750824415,-10.406996351999837],[161.76587975400005,-10.40585702899989],[161.77849368600013,-10.406508070999848],[161.79102623800011,-10.41179778399983],[161.82056725400017,-10.429782809999864],[161.82618248800006,-10.437188408999845],[161.83570397200015,-10.446954033999887],[161.8572697270001,-10.447930596999866],[161.8805444670002,-10.442803643999852],[161.8951929050002,-10.433770440999837],[161.93246503999998,-10.445977471999825],[161.94947350400005,-10.446954033999887],[161.9635522800002,-10.440606377999856],[161.97234134200008,-10.44850025799984],[161.98707116000006,-10.4672177059999],[161.9975692070001,-10.47478606599985],[162.0092879570001,-10.478448174999897],[162.04184004000012,-10.47478606599985],[162.05884850400003,-10.47828541499993],[162.06397545700023,-10.475844007999811],[162.0685327480002,-10.454766533999873],[162.07520592500023,-10.449639580999872],[162.08423912900017,-10.447686455999829],[162.09376061300023,-10.44752369599986],[162.11361738400015,-10.45647551899988],[162.14039147200018,-10.49374765399986],[162.15170332100016,-10.502129815999822],[162.16309655000012,-10.508721612999892],[162.1713973320001,-10.524021091999856],[162.19174238399998,-10.577894789999888],[162.19629967500012,-10.584649346999825],[162.20362389400023,-10.590427341999884],[162.210215691,-10.592461846999825],[162.21534264400012,-10.596774997999916],[162.22046959700006,-10.629571221999825],[162.22885175899998,-10.64462655999985],[162.24195397200006,-10.656182549999867],[162.27751712300002,-10.679620049999839],[162.28777103000007,-10.691989841999884],[162.29175866000006,-10.707696221999852],[162.29200280000006,-10.764743747999844],[162.288910352,-10.769626559999907],[162.28256269600013,-10.771742445999834],[162.27523847700013,-10.776950778999918],[162.26880944100006,-10.783379815999837],[162.264984571,-10.789483330999829],[162.27173912900017,-10.814385674999853],[162.30347741000006,-10.819431247999887],[162.34343509200008,-10.818047783999901],[162.374847852,-10.823663018999907],[162.38550866000003,-10.818780205999843],[162.3925887380001,-10.826918226999851],[162.39161217500012,-10.838799737999906],[162.37826582100004,-10.844821872999901],[162.36500084700018,-10.842543226999837],[162.35328209700018,-10.838962497999873],[162.34115644599999,-10.838148695999863],[162.32715905000023,-10.844821872999901],[162.31967207100016,-10.840264580999872],[162.3092554050002,-10.838474216999884],[162.29232832099999,-10.837985934999892],[162.27865644600016,-10.835544528999861],[162.20704186300023,-10.808038018999824],[162.18392988399998,-10.810967705999843],[162.16195722700016,-10.831149997999873],[162.1507267590001,-10.825127862999864],[162.138031446,-10.823174737999821],[162.1108504570001,-10.823663018999907],[162.10108483200017,-10.821465752999826],[162.0939233730002,-10.815850518999824],[162.08765709700018,-10.809340101999823],[162.08008873800011,-10.803806247999901],[162.03589928500003,-10.786553643999895],[162.01986738400015,-10.773370049999855],[162.01124108200023,-10.769626559999907],[161.99854576900012,-10.77166106599985],[161.96941165500002,-10.781345309999892],[161.9601343110002,-10.77955494599982],[161.95069420700005,-10.77410247199988],[161.90886478000007,-10.762139580999843],[161.9103296230002,-10.764092705999886],[161.90463300900004,-10.766696872999887],[161.8917749360002,-10.769626559999907],[161.88526451900012,-10.767347914999931],[161.87501061300003,-10.757582289999903],[161.87134850400003,-10.755303643999838],[161.8615014980002,-10.752618096999852],[161.85482832100016,-10.745700778999847],[161.8468530610002,-10.728122653999916],[161.84131920700005,-10.742771091999927],[161.84050540500007,-10.749200127999842],[161.81861412900005,-10.733168226999851],[161.80697675900004,-10.73007577899986],[161.79216556100005,-10.734958591999842],[161.78956139400023,-10.72869231599988],[161.78223717500023,-10.720391533999901],[161.77849368600013,-10.71502044099985],[161.76921634200005,-10.718845309999862],[161.76099694100017,-10.712334893999866],[161.75635826900023,-10.70208098799985],[161.75806725400005,-10.694512627999899],[161.7487085300002,-10.682793877999897],[161.73682701900023,-10.681817315999837],[161.72348066500015,-10.683689059999892],[161.710215691,-10.680271091999884],[161.702972852,-10.670668226999823],[161.70020592500023,-10.659356377999842],[161.69483483200005,-10.649997653999888],[161.67945397200006,-10.646172783999887],[161.67432701900012,-10.63990650799984],[161.66114342500006,-10.62761809699988],[161.64747155000023,-10.618584893999866],[161.64136803500003,-10.622247002999828],[161.63656660200016,-10.63103606599988],[161.62582441500015,-10.624444268999824],[161.60718834700006,-10.605726820999847],[161.60743248800011,-10.597263278999904],[161.6030379570002,-10.591241143999895],[161.59571373800011,-10.587497653999861],[161.586680535,-10.584649346999825],[161.58871504,-10.577080987999878],[161.586680535,-10.570000908999901],[161.58130944100006,-10.563164971999896],[161.57300866000017,-10.556817315999865],[161.5647078790001,-10.566664320999877],[161.55274498800017,-10.570000908999901],[161.53874759200016,-10.568454684999864],[161.52466881600006,-10.564222914999945],[161.545176629,-10.502129815999822],[161.53419030000023,-10.495212497999916],[161.53296959700006,-10.48560963299984],[161.53345787900005,-10.475030205999886],[161.52833092500012,-10.46453215899983],[161.52214603000007,-10.463067315999865],[161.5019637380001,-10.46746184699984],[161.4904077480002,-10.467950127999828],[161.499685092,-10.456312757999825],[161.50749759200002,-10.440036716999884],[161.50668379000004,-10.425713799999897],[161.4904077480002,-10.420179945999877],[161.50066165500013,-10.395114841999884],[161.50749759200002,-10.383477471999882],[161.51465905000006,-10.378594658999901],[161.52003014400023,-10.376397393999824],[161.51807701900006,-10.371677341999899],[161.51099694099997,-10.364922783999873],[161.5055444670002,-10.363539320999806],[161.48975670700023,-10.365411065999865],[161.48365319100006,-10.364922783999873],[161.47681725400005,-10.359551690999822],[161.47234134200008,-10.352715752999899],[161.46599368600002,-10.34693775799984],[161.45264733200023,-10.344496351999808],[161.4254663420002,-10.344496351999808],[161.413747592,-10.341566664999874],[161.40919030000006,-10.334242445999877],[161.40284264400023,-10.330010674999853],[161.3888452480002,-10.329196872999844],[161.36752363400004,-10.330824476999865],[161.36133873800023,-10.333754164999887],[161.35694420700005,-10.338474216999884],[161.35173587300005,-10.342543226999851],[161.34400475400017,-10.344496351999808],[161.33692467500012,-10.343438408999845],[161.3300887380001,-10.338799737999821],[161.30388431100008,-10.335381768999909],[161.29314212300002,-10.33123137799987],[161.28492272200006,-10.323907158999859],[161.2807723320001,-10.308851820999848],[161.28939863400004,-10.287041924999897],[161.28492272200006,-10.276136976999823],[161.289805535,-10.27141692499991],[161.29224694100006,-10.26816171699987],[161.29444420700023,-10.2653947899999],[161.29932701900012,-10.263116143999838],[161.29232832100004,-10.247491143999852],[161.29184004000015,-10.22576262799987],[161.30005944100006,-10.207126559999892],[161.31910241000006,-10.20045338299984],[161.32447350400017,-10.20330169099988],[161.3300887380001,-10.205336195999806],[161.33570397200018,-10.20867278399983]]],[[[167.19336998800006,-9.893731377999828],[167.18531334700006,-9.894626559999907],[167.1733504570001,-9.886407158999901],[167.16578209700018,-9.868340752999885],[167.17017662900005,-9.859144789999915],[167.18083743600016,-9.860121351999808],[167.19223066500015,-9.872979424999826],[167.1959741550002,-9.885918877999826],[167.19336998800006,-9.893731377999828]]],[[[167.10824628999998,-9.80462004999984],[167.10401451900015,-9.806573174999883],[167.09180748800011,-9.803317966999842],[167.10450280000023,-9.801853122999873],[167.10824628999998,-9.80462004999984]]],[[[161.97779381600017,-9.686618747999844],[161.97852623800023,-9.694756768999866],[161.97681725400005,-9.699965101999865],[161.9708764980002,-9.70696379999984],[161.96908613400004,-9.714532158999887],[161.96753991000014,-9.71770598799985],[161.9635522800002,-9.720635674999867],[161.96973717500023,-9.734958591999856],[161.9824324880001,-9.81755950299984],[161.9824324880001,-9.834161065999893],[161.97779381600017,-9.851006768999895],[161.96363366000017,-9.839288018999824],[161.95004316500004,-9.816827080999914],[161.9401961600001,-9.790134372999887],[161.92847740999997,-9.72014739399988],[161.92994225400017,-9.70696379999984],[161.9401961600001,-9.692152601999865],[161.95215905000012,-9.690362237999878],[161.96509850400005,-9.691827080999843],[161.97779381600017,-9.686618747999844]]],[[[161.42628014400023,-9.41171640399986],[161.45630944100017,-9.45378997199984],[161.48170006600012,-9.504652601999865],[161.49390709700018,-9.518975518999852],[161.49927819100006,-9.527276299999826],[161.50668379000004,-9.549493096999882],[161.51465905000006,-9.560235283999887],[161.52426191500015,-9.570489190999822],[161.53207441500015,-9.58147551899988],[161.545176629,-9.604668877999913],[161.55193118600008,-9.622979424999869],[161.55396569100017,-9.640313408999859],[161.552500847,-9.676364841999913],[161.55591881600006,-9.693047783999859],[161.57048587300008,-9.726332289999858],[161.57300866000017,-9.748630466999899],[161.5682072270001,-9.771172783999873],[161.55860436300011,-9.788995049999853],[161.54916425899998,-9.792575778999916],[161.545176629,-9.772230726999837],[161.50407962300014,-9.727471612999892],[161.4946395190001,-9.70305754999984],[161.48829186300006,-9.69207122199988],[161.47738691499998,-9.686618747999844],[161.46648196700014,-9.689873955999886],[161.45932050899998,-9.717868747999916],[161.4489038420002,-9.734958591999856],[161.43262780000023,-9.717950127999899],[161.41504967500012,-9.694594007999811],[161.40072675900015,-9.670017184999892],[161.394786004,-9.649021091999856],[161.394786004,-9.587823174999912],[161.394786004,-9.529473565999822],[161.39234459700018,-9.507582289999874],[161.39291425900015,-9.494886976999823],[161.40919030000006,-9.465997002999899],[161.406097852,-9.449965101999823],[161.398203972,-9.433526299999826],[161.394786004,-9.412774346999825],[161.39039147200006,-9.414727471999868],[161.37924238400004,-9.417657158999887],[161.3750106130001,-9.419610283999845],[161.3750106130001,-9.398695570999875],[161.368418816,-9.379571221999896],[161.34701582100016,-9.34392669099985],[161.3543400400001,-9.338555596999896],[161.35914147200018,-9.339288018999838],[161.36752363400004,-9.35133228999993],[161.38086998800023,-9.36516692499984],[161.4152124360002,-9.386000257999825],[161.42221113400015,-9.395765882999854],[161.42628014400023,-9.41171640399986]]],[[[159.93970787900014,-9.432875257999868],[159.96094811300023,-9.434665622999859],[159.99984785200002,-9.433282158999873],[160.01026451900023,-9.431817315999822],[160.01978600400005,-9.427666924999867],[160.02800540500002,-9.422133070999863],[160.03467858200005,-9.416192315999837],[160.04346764400023,-9.414157809999892],[160.05616295700008,-9.417413018999852],[160.07911217500012,-9.426446221999853],[160.09913170700017,-9.431898695999806],[160.10987389400006,-9.433526299999826],[160.1206160820001,-9.433282158999873],[160.13038170700023,-9.42929452899989],[160.14795983200017,-9.415704033999845],[160.15772545700008,-9.412774346999825],[160.17904707100016,-9.414971612999821],[160.21119225400003,-9.424248955999872],[160.23047936300017,-9.426446221999853],[160.23715254,-9.424574476999894],[160.24561608200017,-9.415704033999845],[160.25098717500012,-9.412774346999825],[160.25652103000002,-9.413262627999899],[160.26514733200023,-9.418715101999851],[160.27076256600006,-9.419610283999845],[160.34595787900005,-9.419610283999845],[160.34986412900005,-9.418552341999884],[160.36011803500017,-9.413506768999852],[160.3663843110002,-9.412774346999825],[160.36793053500006,-9.414971612999821],[160.37232506600006,-9.419610283999845],[160.37818444100017,-9.424248955999872],[160.3984481130001,-9.432875257999868],[160.41920006600017,-9.461114190999837],[160.45932050900004,-9.475030205999914],[160.47559655000023,-9.493259372999887],[160.50367272200006,-9.536309502999842],[160.54078209700006,-9.531426690999865],[160.58643639400006,-9.551364841999856],[160.62842858200005,-9.582289320999804],[160.65447024800002,-9.610772393999895],[160.66146894600004,-9.627618096999896],[160.66570071700002,-9.648125908999859],[160.66797936300011,-9.690036716999856],[160.67302493600005,-9.698011976999823],[160.68392988400004,-9.698337497999844],[160.699961785,-9.693454684999864],[160.71265709700018,-9.695407809999907],[160.72299238399998,-9.700453382999852],[160.74382571700008,-9.713962497999916],[160.77711022200006,-9.722832940999865],[160.78541100400005,-9.727471612999892],[160.78785241000014,-9.737562757999854],[160.7869572270001,-9.751560153999918],[160.78956139400003,-9.76384856599988],[160.8020939460001,-9.769138278999847],[160.80551191499998,-9.774021091999913],[160.80648847700016,-9.784926039999888],[160.8058374360002,-9.806329033999845],[160.80827884200008,-9.816013278999902],[160.8136499360002,-9.822035414999903],[160.82032311300017,-9.827894789999858],[160.82634524800008,-9.837334893999866],[160.82471764400023,-9.867282809999935],[160.7985132170002,-9.884047132999854],[160.7233179050002,-9.899509372999873],[160.68425540500007,-9.911879164999917],[160.66293378999998,-9.922946872999859],[160.64478600400017,-9.937107028999876],[160.572520379,-9.919203382999825],[160.50863691499998,-9.889255466999856],[160.48682701900023,-9.885186455999886],[160.44581139400023,-9.892673434999864],[160.43287194100006,-9.889092705999886],[160.42416425900012,-9.880140882999866],[160.41675866000006,-9.869073174999825],[160.40796959700018,-9.858493747999873],[160.40365644599999,-9.857517184999892],[160.39193769599999,-9.859307549999883],[160.38754316500004,-9.858493747999873],[160.385020379,-9.854913018999895],[160.37842858200023,-9.842054945999877],[160.3737899100001,-9.837334893999866],[160.34424889400023,-9.82561614399988],[160.33594811300023,-9.820245049999826],[160.32032311300006,-9.815118096999909],[160.208262566,-9.810153903999861],[160.12387129000004,-9.82317473799985],[160.07911217500012,-9.82382577899989],[160.05152428500017,-9.820489190999865],[160.04037519600016,-9.820570570999848],[160.03126061300006,-9.82382577899989],[160.0245874360002,-9.820245049999826],[160.00326582100016,-9.816827080999914],[159.98113040500007,-9.810967705999872],[159.95899498800011,-9.809340101999851],[159.937266472,-9.805596612999821],[159.90308678500006,-9.787855726999823],[159.88721764400012,-9.782810153999888],[159.8678491550002,-9.785739841999899],[159.8518172540001,-9.792738539999887],[159.83562259200002,-9.793877862999835],[159.81495201900023,-9.778985283999873],[159.76872806100002,-9.732191664999903],[159.75074303500017,-9.720635674999867],[159.723399285,-9.70696379999984],[159.72234134200008,-9.702813408999901],[159.7239689460001,-9.691094658999901],[159.723399285,-9.686618747999844],[159.71941165500002,-9.682386976999837],[159.71111087300008,-9.680271091999913],[159.70590254000015,-9.676364841999913],[159.7021590500002,-9.667575778999861],[159.70118248800023,-9.657403252999899],[159.69906660200016,-9.649102471999838],[159.69206790500007,-9.645603122999844],[159.67530358200023,-9.643243096999882],[159.67212975400017,-9.636976820999832],[159.67481530000023,-9.628106377999885],[159.67497806100013,-9.617608330999829],[159.66570071700008,-9.595147393999824],[159.65398196700008,-9.574802341999913],[159.63965905000012,-9.556410414999872],[159.62338300900015,-9.53972747199984],[159.60840905000012,-9.528903903999847],[159.60181725400005,-9.521905205999872],[159.59913170700005,-9.512383721999866],[159.61215254000012,-9.505791924999896],[159.621755405,-9.49822356599985],[159.62720787900017,-9.48796965899983],[159.62525475400005,-9.477634372999901],[159.61109459700012,-9.457126559999864],[159.606700066,-9.447523695999877],[159.60629316500004,-9.435804945999804],[159.61353600400003,-9.409356377999913],[159.61247806100016,-9.398858330999843],[159.6077580090001,-9.385511976999837],[159.606700066,-9.374932549999883],[159.59603925899998,-9.364434502999899],[159.59213300899998,-9.36150481599988],[159.5964461600001,-9.354913018999824],[159.606700066,-9.34392669099985],[159.60954837300008,-9.309828382999854],[159.61597741000017,-9.2953427059999],[159.63062584700018,-9.289239190999822],[159.6461694670002,-9.284763278999847],[159.70899498800023,-9.247735283999916],[159.74366295700023,-9.259535414999888],[159.77898196700008,-9.28199635199988],[159.83269290500002,-9.330254815999822],[159.87330162900005,-9.359470309999864],[159.87973066500004,-9.368096612999864],[159.88412519600004,-9.382419528999847],[159.89470462300008,-9.39959075299987],[159.90821373800023,-9.415622653999861],[159.9213973320001,-9.426446221999853],[159.93970787900014,-9.432875257999868]]],[[[159.83269290500002,-9.10369231599985],[159.84009850399997,-9.122735283999845],[159.84473717500023,-9.145440362999892],[159.84253991000006,-9.164646091999842],[159.828868035,-9.172621351999808],[159.81470787900017,-9.16619231599988],[159.80616295700017,-9.150323174999855],[159.80445397200006,-9.13014088299984],[159.8115340500001,-9.111097914999931],[159.817637566,-9.109795830999843],[159.82252037900017,-9.109958591999899],[159.82732181100008,-9.108656507999811],[159.83269290500002,-9.10369231599985]]],[[[160.40202884200008,-9.14413827899989],[160.38721764400012,-9.170830987999821],[160.3737899100001,-9.179375908999845],[160.3663843110002,-9.186211846999852],[160.34498131600014,-9.179294528999861],[160.32471764400023,-9.167413018999895],[160.30494225400005,-9.159844658999859],[160.28516686300011,-9.165785414999874],[160.28931725400005,-9.177992445999863],[160.27442467500012,-9.186455987999892],[160.2514754570001,-9.191338799999867],[160.23047936300017,-9.193047783999873],[160.23536217500023,-9.185153903999888],[160.234629754,-9.178806247999873],[160.22828209700018,-9.174493096999866],[160.21615644600007,-9.172621351999808],[160.22193444100006,-9.16277434699988],[160.23047936300017,-9.158868096999882],[160.2540796230002,-9.158949476999865],[160.26514733200023,-9.155694268999824],[160.27662194100017,-9.147881768999824],[160.28598066500004,-9.138929945999806],[160.2920028000001,-9.131605726999894],[160.30469811300011,-9.082614841999927],[160.3149520190001,-9.06170012799987],[160.332286004,-9.063409112999878],[160.35922285200016,-9.110935153999876],[160.37012780000023,-9.117933851999851],[160.38526451900023,-9.11842213299984],[160.39722741000017,-9.120212497999916],[160.40642337300002,-9.124444268999852],[160.414235873,-9.131605726999894],[160.40202884200008,-9.14413827899989]]],[[[159.2171330090001,-9.075127862999864],[159.22250410200004,-9.079685153999904],[159.23609459700018,-9.07634856599988],[159.23324629000015,-9.101006768999866],[159.2187606130001,-9.11736419099988],[159.17408287900005,-9.1384416649999],[159.17497806100002,-9.111423434999864],[159.17839603000007,-9.092705987999892],[159.19516035200016,-9.056573174999853],[159.205332879,-9.055108330999886],[159.22584069100017,-9.03142669099988],[159.23609459700018,-9.023044528999904],[159.23585045700023,-9.02752044099988],[159.23422285200004,-9.030205987999864],[159.231700066,-9.032647393999893],[159.22925866000017,-9.036065362999892],[159.22925866000017,-9.046075127999885],[159.22738691500004,-9.0485979149999],[159.22925866000017,-9.056573174999853],[159.21949303500006,-9.066176039999931],[159.2171330090001,-9.075127862999864]]],[[[160.15463300900004,-8.994398695999847],[160.17253665500007,-9.002211195999834],[160.1909285820001,-9.000420830999857],[160.20850670700023,-9.002699476999823],[160.22299238399998,-9.023044528999904],[160.23047936300017,-9.023044528999904],[160.24024498800011,-9.006280205999886],[160.2579858730002,-9.009047132999854],[160.27800540500007,-9.023044528999904],[160.2950952480002,-9.0394833309999],[160.30144290500004,-9.061618747999887],[160.29468834700012,-9.08993905999992],[160.28052819100017,-9.115980726999808],[160.26449628999998,-9.131605726999894],[160.26107832100007,-9.123955987999864],[160.25757897200018,-9.120782158999887],[160.25228925900004,-9.121189059999892],[160.24415123800011,-9.124200127999899],[160.24293053500017,-9.112399997999844],[160.23731530000006,-9.103448174999897],[160.22820071700016,-9.098321221999896],[160.21615644600007,-9.097588799999869],[160.21859785200004,-9.102959893999824],[160.22299238399998,-9.117933851999851],[160.21615644600007,-9.117933851999851],[160.19988040500004,-9.091729424999825],[160.18751061300011,-9.081801039999915],[160.17188561300023,-9.087009372999901],[160.15674889400023,-9.094008070999806],[160.13819420700023,-9.094821872999901],[160.11996504000015,-9.09059010199988],[160.10629316500004,-9.08375416499986],[160.10425866000014,-9.077894789999917],[160.10385175900015,-9.068780205999829],[160.10230553500003,-9.060235283999901],[160.09669030000012,-9.056573174999853],[160.0893660820002,-9.05535247199984],[160.083750847,-9.052015882999811],[160.080332879,-9.04664478999986],[160.07911217500012,-9.0394833309999],[160.08716881600006,-9.037041924999869],[160.10515384200008,-9.035088799999825],[160.12387129000004,-9.02939218499985],[160.13428795700023,-9.015557549999855],[160.14112389400023,-9.023044528999904],[160.14584394600013,-9.015069268999866],[160.14763431100002,-9.008721612999835],[160.1460067070001,-9.002536716999856],[160.14112389400023,-8.994398695999847],[160.1450301440002,-8.99000416499986],[160.147715691,-8.989678643999838],[160.15463300900004,-8.994398695999847]]],[[[159.13363691499998,-8.988376559999935],[159.14039147200003,-9.001885674999912],[159.1419376960001,-9.012383721999882],[159.14437910200002,-9.020928643999895],[159.15430748800011,-9.029229424999883],[159.15935306100008,-9.029066664999917],[159.16716556100002,-9.017998955999886],[159.17481530000015,-9.016534112999821],[159.19516035200016,-9.023044528999904],[159.16163170700023,-9.090020440999822],[159.14730879000004,-9.10369231599985],[159.09961998800006,-9.117933851999851],[159.09099368600008,-9.11199309699984],[159.08399498800011,-9.101739190999893],[159.07618248800011,-9.095961195999848],[159.06478925900004,-9.10369231599985],[159.03931725400005,-9.06853606599988],[159.04102623800023,-9.057305596999882],[159.0722762380001,-9.056573174999853],[159.06609134200002,-9.043226820999848],[159.06934655000006,-9.033786716999927],[159.07886803500017,-9.030531507999882],[159.09213300900004,-9.036065362999892],[159.09213300900004,-9.023044528999904],[159.09693444100017,-9.024834893999895],[159.11255944100017,-9.029229424999883],[159.111175977,-9.018731377999913],[159.10726972699996,-9.009535414999931],[159.10084069100017,-9.001397393999824],[159.09213300900004,-8.994398695999847],[159.10645592500003,-8.994398695999847],[159.11622155000023,-8.999281507999825],[159.12403405000012,-8.999932549999867],[159.12989342500018,-8.996351820999804],[159.13363691499998,-8.988376559999935]]],[[[160.11378014400006,-8.974297783999887],[160.11312910200004,-8.994398695999847],[160.09913170700017,-8.988457940999822],[160.09083092500006,-8.99578215899983],[160.07911217500012,-9.023044528999904],[160.06666100400014,-9.013604424999897],[160.06804446700008,-9.003350518999866],[160.07496178500006,-8.991794528999847],[160.07911217500012,-8.977715752999899],[160.0743921230002,-8.951348565999908],[160.07764733200023,-8.943129164999903],[160.09262129000012,-8.940524997999901],[160.10840905000012,-8.961195570999832],[160.11378014400006,-8.974297783999887]]],[[[157.5905867850001,-8.710870049999855],[157.60092207100004,-8.720391533999859],[157.60824629000004,-8.730075778999904],[157.61548912900005,-8.734470309999892],[157.63550865999997,-8.744073174999869],[157.64991295700005,-8.765232028999876],[157.64893639400012,-8.786228122999916],[157.62232506600006,-8.795830987999892],[157.61353600400017,-8.793064059999935],[157.5776473320001,-8.774672132999894],[157.52979576900017,-8.761814059999864],[157.47673587300002,-8.73951588299984],[157.45240319100017,-8.721856377999828],[157.455332879,-8.706475518999879],[157.4926863940002,-8.712009372999887],[157.50879967500012,-8.712579033999859],[157.52369225400017,-8.706475518999879],[157.52979576900017,-8.713962497999844],[157.5382593110002,-8.700860283999873],[157.54379316500004,-8.694919528999847],[157.54965254000015,-8.692152601999894],[157.55884850400005,-8.693780205999914],[157.5646264980002,-8.698825778999847],[157.5688582690002,-8.70403411299985],[157.57390384200008,-8.706475518999879],[157.5905867850001,-8.710870049999855]]],[[[158.20313561300023,-8.830987237999864],[158.18718509200002,-8.836846612999906],[158.16822350400005,-8.807224216999856],[158.16358483200008,-8.802015882999868],[158.15365644599999,-8.79656340899983],[158.15365644599999,-8.784112237999821],[158.16049238400004,-8.758396091999856],[158.16521243600013,-8.749200127999885],[158.194590691,-8.726983330999829],[158.19996178500017,-8.718031507999811],[158.20427493600008,-8.706638278999847],[158.2072046230002,-8.693454684999892],[158.20826256600006,-8.679131768999895],[158.21509850400017,-8.679131768999895],[158.21509850400017,-8.700290622999901],[158.22339928500006,-8.714939059999907],[158.23023522200018,-8.737969658999887],[158.232676629,-8.760837497999887],[158.228770379,-8.774672132999894],[158.25668379000015,-8.785577080999872],[158.25562584700018,-8.794854424999826],[158.25220787900017,-8.802666924999826],[158.24675540500007,-8.808038018999866],[158.22396894600004,-8.813734632999854],[158.20313561300023,-8.830987237999864]]],[[[158.01335696700005,-8.545505466999927],[158.02637780000023,-8.550957940999865],[158.0372827480001,-8.545505466999927],[158.04704837300008,-8.535821221999868],[158.05689537900014,-8.528252862999821],[158.07764733200005,-8.523532809999907],[158.10279381600014,-8.523614190999893],[158.12378991,-8.530368747999928],[158.13249759200016,-8.545505466999927],[158.135020379,-8.566827080999886],[158.13347415500007,-8.574151299999897],[158.12574303500006,-8.582940362999864],[158.11638431100013,-8.585625908999845],[158.1051538420002,-8.584649346999868],[158.09555097700004,-8.585544528999861],[158.09156334700006,-8.593519789999917],[158.08692467500023,-8.59710051899988],[158.0675561860001,-8.604668877999842],[158.06495201900012,-8.610935153999888],[158.07097415500002,-8.616875908999901],[158.09058678500017,-8.61980559699984],[158.09839928500017,-8.624607028999918],[158.10401451900006,-8.621026299999855],[158.10824628999998,-8.619561455999886],[158.11890709700006,-8.617771091999899],[158.10621178500017,-8.634535414999917],[158.09961998800011,-8.640232028999904],[158.09156334700006,-8.64511484199987],[158.11426842500012,-8.667738539999931],[158.10572350400017,-8.691094658999845],[158.06495201900012,-8.726983330999829],[158.05250084700012,-8.745782158999873],[158.04761803500006,-8.75139739399988],[158.03858483200023,-8.756768487999835],[158.02116946700008,-8.760837497999887],[158.01335696700005,-8.765232028999876],[157.99903405000006,-8.767266533999901],[157.97689863399998,-8.762627862999878],[157.95704186300011,-8.75595468499992],[157.9482528000001,-8.75139739399988],[157.94556725400005,-8.744724216999913],[157.93946373800014,-8.740166924999883],[157.92774498800006,-8.734470309999892],[157.9233504570001,-8.729424737999864],[157.9174910820002,-8.719008070999877],[157.913340691,-8.713962497999844],[157.88412519600016,-8.688246351999808],[157.87924238399998,-8.682549737999821],[157.87924238399998,-8.631442966999842],[157.886078321,-8.596612237999892],[157.89014733200005,-8.590590101999808],[157.8960067070001,-8.584730726999851],[157.90040123800011,-8.576429945999877],[157.89975019600016,-8.562432549999912],[157.92676842500012,-8.578871351999808],[157.93767337300008,-8.579359632999896],[157.94141686300011,-8.562432549999912],[157.9482528000001,-8.563409112999878],[157.95167076900023,-8.566338799999897],[157.95508873800023,-8.576755466999899],[157.96314537900017,-8.563734632999811],[157.96045983200008,-8.554131768999838],[157.95508873800023,-8.543715101999851],[157.95508873800023,-8.528252862999821],[157.96119225400005,-8.521579684999864],[157.995941602,-8.50790780999992],[158.00359134200014,-8.50644296699987],[158.00652103000007,-8.505059502999885],[158.00961347700004,-8.501071872999901],[158.0171004570001,-8.50790780999992],[158.0171004570001,-8.514743747999844],[158.00863691500015,-8.520928643999824],[158.00521894600013,-8.52849700299987],[158.00684655000018,-8.536879164999917],[158.01335696700005,-8.545505466999927]]],[[[157.37818444100006,-8.569268487999835],[157.37598717500023,-8.573011976999865],[157.3698022800002,-8.577894789999931],[157.36524498800023,-8.578220309999864],[157.3615828790001,-8.576755466999899],[157.35865319100014,-8.576755466999899],[157.35425866000017,-8.576755466999899],[157.34986412899997,-8.573907158999859],[157.34473717500012,-8.572523695999877],[157.33806399800002,-8.576755466999899],[157.33668053500017,-8.581801039999917],[157.33806399800002,-8.60409921699987],[157.33057701900006,-8.632907809999892],[157.32935631600006,-8.649102471999853],[157.33464603000002,-8.662367445999877],[157.37086022200006,-8.700860283999873],[157.3911238940002,-8.715020440999893],[157.41382897200012,-8.720798434999864],[157.41382897200012,-8.726983330999829],[157.39820397199998,-8.730564059999892],[157.37956790500002,-8.729750257999882],[157.3616642590001,-8.725274346999825],[157.34831790500007,-8.717380466999856],[157.33668053500017,-8.705987237999892],[157.3296004570001,-8.701836846999852],[157.32064863400015,-8.700290622999901],[157.31226647199998,-8.69622161299985],[157.31072024800008,-8.686618747999873],[157.31153405000006,-8.675225518999909],[157.31080162900005,-8.666192315999893],[157.30420983200005,-8.654717705999857],[157.27784264400006,-8.618584893999824],[157.26612389400003,-8.610935153999888],[157.2500106130001,-8.605726820999806],[157.22836347700004,-8.593438408999845],[157.20915774800008,-8.578383070999818],[157.20093834700018,-8.565850518999824],[157.20362389400023,-8.551527601999837],[157.21013431100008,-8.53923919099988],[157.2189233730002,-8.529229424999897],[157.22820071700008,-8.521579684999864],[157.25489342500006,-8.50750090899983],[157.27003014400006,-8.496514580999872],[157.28907311300003,-8.459161065999822],[157.31723066500015,-8.431735934999864],[157.34750410200016,-8.4125302059999],[157.36597741000014,-8.412855726999837],[157.38404381600012,-8.424981377999828],[157.3992619150001,-8.444024346999823],[157.409922722,-8.46892669099985],[157.41382897200012,-8.497979424999826],[157.4104110040001,-8.504327080999857],[157.39584394600016,-8.521172783999859],[157.3854272800002,-8.554620049999826],[157.38282311300006,-8.559340101999837],[157.38005618600013,-8.56267669099985],[157.37818444100006,-8.569268487999835]]],[[[159.65853925900004,-8.482517184999907],[159.68864993600008,-8.50790780999992],[159.70036868600008,-8.518487237999878],[159.69947350400003,-8.524997653999876],[159.68864993600008,-8.535251559999892],[159.67953535200016,-8.540134372999873],[159.67025800900004,-8.541436455999872],[159.65992272200012,-8.539646091999884],[159.64771569100006,-8.535251559999892],[159.63624108200008,-8.529229424999897],[159.62794030000012,-8.522637627999828],[159.61353600400003,-8.50790780999992],[159.60141035200016,-8.488864841999842],[159.59302819100017,-8.485284112999864],[159.57935631600006,-8.494805596999868],[159.56527754000004,-8.479099216999899],[159.54981530000006,-8.470798434999907],[159.53882897200006,-8.458916924999867],[159.53785241000006,-8.432793877999913],[159.54517662900014,-8.406426690999822],[159.55827884200002,-8.389418226999851],[159.5782983730002,-8.380140882999811],[159.606700066,-8.377536716999899],[159.63591556100005,-8.384209893999852],[159.64405358200005,-8.400323174999826],[159.640879754,-8.447035414999917],[159.6469832690001,-8.468438408999859],[159.65853925900004,-8.482517184999907]]],[[[162.74447675900015,-8.386976820999818],[162.73861738400004,-8.388360283999887],[162.73047936300011,-8.378187757999854],[162.73487389400006,-8.373793226999865],[162.7456160820001,-8.374281507999854],[162.75757897200006,-8.378513278999876],[162.75407962300002,-8.382500908999859],[162.74984785200004,-8.385186455999829],[162.74447675900015,-8.386976820999818]]],[[[160.80046634200008,-8.358819268999838],[160.80982506600017,-8.367282809999878],[160.81950931100008,-8.38494231599988],[160.823985222,-8.397149346999866],[160.82569420700008,-8.405531507999825],[160.82634524800008,-8.415948174999912],[160.8291121750001,-8.420830987999878],[160.84294681100002,-8.429294528999916],[160.84742272200018,-8.432793877999913],[160.8810327480002,-8.483982028999861],[160.932871941,-8.539320570999863],[160.9731551440001,-8.573011976999865],[160.99683678499997,-8.603773695999848],[161.00660241000006,-8.622816664999931],[161.01059004000004,-8.641534112999906],[161.00269616000006,-8.662367445999877],[160.98373457100016,-8.674086195999877],[160.96119225400017,-8.682224216999884],[160.94239342500012,-8.692152601999894],[160.94906660200016,-8.705336195999848],[160.95337975400017,-8.718519789999888],[160.95297285200016,-8.731622002999856],[160.93702233200023,-8.758884372999844],[160.936778191,-8.771661065999893],[160.94019616,-8.78443775799984],[160.94239342500012,-8.799004815999865],[160.94662519600004,-8.813734632999854],[160.96534264400012,-8.831231377999899],[160.96973717500003,-8.840508721999853],[160.97592207100016,-8.850274346999896],[160.99008222700016,-8.847832940999865],[161.01400800900015,-8.836846612999906],[161.02295983200005,-8.840752862999892],[161.05030358200023,-8.861260674999855],[161.0590926440001,-8.871026299999897],[161.05974368600008,-8.878024997999873],[161.05551191500004,-8.883477471999823],[161.05307050899998,-8.889743747999859],[161.0590926440001,-8.898858330999857],[161.06714928500006,-8.903497002999885],[161.07374108200008,-8.903008721999894],[161.07813561300011,-8.900485934999878],[161.07960045700017,-8.898858330999857],[161.10303795700023,-8.909844658999901],[161.128103061,-8.927422783999845],[161.15113366,-8.9496395809999],[161.16895592500006,-8.97454192499984],[161.1559350920002,-8.969496351999808],[161.14576256600006,-8.977308851999808],[161.14283287900005,-8.988702080999857],[161.15154056100016,-8.994398695999847],[161.16358483200023,-8.999444268999879],[161.17514082100016,-9.011651299999853],[161.180918816,-9.02752044099988],[161.17579186300011,-9.042901299999826],[161.18458092500023,-9.047784112999892],[161.18848717500023,-9.054131768999824],[161.1896264980002,-9.062269789999931],[161.18946373800023,-9.072930596999866],[161.19125410200004,-9.083428643999838],[161.19629967500023,-9.086032809999935],[161.202891472,-9.086195570999804],[161.20997155000006,-9.090020440999822],[161.2158309250002,-9.094170830999857],[161.22282962300017,-9.09775155999992],[161.22868899800008,-9.10369231599985],[161.23096764400023,-9.114515882999852],[161.22754967500012,-9.119073174999883],[161.20248457100004,-9.1384416649999],[161.22071373800011,-9.146661065999908],[161.22706139400023,-9.151788018999824],[161.23096764400023,-9.158949476999865],[161.24398847700004,-9.153903903999918],[161.255707227,-9.15691497199984],[161.26172936300011,-9.16594817499984],[161.25831139400012,-9.179375908999845],[161.26587975400005,-9.18035247199991],[161.28492272200006,-9.186211846999852],[161.28492272200006,-9.193047783999873],[161.25782311300011,-9.19931405999992],[161.24781334700006,-9.199883721999882],[161.244313998,-9.20525481599985],[161.24512780000023,-9.216973565999837],[161.24927819100017,-9.228692315999822],[161.25464928500006,-9.234063408999873],[161.26099694100017,-9.241875908999873],[161.266856316,-9.27800872199991],[161.2788192070002,-9.289239190999822],[161.26531009200008,-9.296563408999916],[161.25904381600003,-9.290297132999868],[161.25416100400017,-9.280368747999859],[161.24463951900017,-9.275648695999863],[161.23536217500012,-9.281182549999867],[161.23755944100012,-9.291924737999892],[161.24586022200018,-9.303887627999828],[161.28532962300002,-9.34441497199984],[161.29664147200006,-9.360284112999864],[161.32813561300023,-9.438571872999859],[161.33716881600006,-9.447523695999877],[161.34766686300011,-9.455824476999865],[161.36182701900023,-9.474867445999848],[161.38111412900017,-9.50904713299984],[161.3930770190001,-9.587660414999943],[161.3925887380002,-9.609063408999887],[161.38640384200008,-9.621758721999853],[161.37566165500007,-9.624932549999826],[161.36068769600004,-9.617608330999829],[161.30892988399998,-9.581638278999845],[161.29932701900012,-9.580743096999852],[161.29656009200008,-9.56373463299988],[161.28939863400004,-9.548597914999888],[161.24976647200018,-9.497165622999887],[161.24463951900017,-9.48796965899983],[161.24219811300023,-9.478122653999888],[161.24048912900005,-9.458672783999901],[161.23715253999998,-9.447523695999877],[161.22632897200012,-9.430433851999837],[161.1792098320001,-9.381768487999892],[161.11068769600016,-9.347263278999876],[161.08676191499995,-9.319594007999882],[161.04004967500012,-9.313246351999851],[161.04542076900017,-9.296075127999828],[161.01742597700016,-9.264743747999873],[161.00391686300006,-9.255140882999811],[160.996267123,-9.253676039999931],[160.98015384200008,-9.255140882999811],[160.9731551440001,-9.251397393999866],[160.96998131600006,-9.244073174999869],[160.97152754000015,-9.227634372999873],[160.96973717500003,-9.220391533999845],[160.94646243600005,-9.200127862999835],[160.88990319100006,-9.174981377999856],[160.86793053500006,-9.152113539999931],[160.79525800900015,-9.019301039999874],[160.77767988400004,-8.970310153999916],[160.76433353000013,-8.94670989399988],[160.76970462300005,-8.939060153999845],[160.771332227,-8.933363539999874],[160.76970462300005,-8.927666924999883],[160.76433353000013,-8.920017184999864],[160.76368248800006,-8.905450127999826],[160.748220248,-8.855157158999873],[160.73438561300023,-8.833672783999845],[160.69312584700018,-8.751234632999825],[160.68930097700007,-8.737562757999882],[160.688731316,-8.68368905999985],[160.68685957100016,-8.674574476999865],[160.65447024800002,-8.60409921699987],[160.67204837300008,-8.592380466999884],[160.70150800900015,-8.567152601999823],[160.7198999360002,-8.562432549999912],[160.71998131600014,-8.553399346999894],[160.69597415500002,-8.501071872999901],[160.6564233730002,-8.449314059999892],[160.65137780000023,-8.439629815999837],[160.63843834700006,-8.433282158999901],[160.60434004000012,-8.399997653999904],[160.59351647200003,-8.38494231599988],[160.58106530000023,-8.340508721999866],[160.60132897200006,-8.325453382999854],[160.63843834700006,-8.329766533999859],[160.67554772200018,-8.343357028999904],[160.69532311300011,-8.361586195999806],[160.70281009200008,-8.364515882999825],[160.71314537900017,-8.362399997999901],[160.72396894600016,-8.35686614399988],[160.730235222,-8.349053643999895],[160.726817254,-8.340264580999829],[160.69597415500002,-8.320082289999888],[160.6987410820001,-8.313083591999913],[160.7057397800002,-8.306247653999888],[160.714610222,-8.30201588299988],[160.7233179050002,-8.302992445999848],[160.7233179050002,-8.309258721999896],[160.74659264400012,-8.309665622999901],[160.75896243600008,-8.316664320999891],[160.77784264400012,-8.343357028999904],[160.79004967500018,-8.35320403399983],[160.80046634200008,-8.358819268999838]]],[[[157.15251712300008,-8.329766533999859],[157.15251712300008,-8.33717213299984],[157.12354576900006,-8.32040780999992],[157.10906009200002,-8.283298434999907],[157.090586785,-8.249118747999916],[157.05005944100014,-8.240899346999825],[157.0535587900001,-8.237969658999901],[157.06006920700005,-8.230564059999907],[157.06373131600006,-8.227308851999865],[157.04737389400012,-8.219903252999885],[157.02995853000007,-8.206312757999825],[157.022634311,-8.192803643999852],[157.03638756600006,-8.185723565999893],[157.0499780610002,-8.196709893999852],[157.07585696700014,-8.19850025799984],[157.10084069100006,-8.203545830999872],[157.11207116000006,-8.223890882999854],[157.11361738399998,-8.236748955999886],[157.1251733730002,-8.275079033999901],[157.13062584700006,-8.30828215899983],[157.13803144600004,-8.322360934999864],[157.15251712300008,-8.329766533999859]]],[[[157.09782962300002,-8.15894947699988],[157.12232506600017,-8.167413018999838],[157.14568118600008,-8.16570403399983],[157.16732832100016,-8.167413018999838],[157.18726647200006,-8.185723565999893],[157.19678795700023,-8.20671965899983],[157.20411217500023,-8.232842705999886],[157.20826256600017,-8.261325778999888],[157.2076929050002,-8.288750908999845],[157.20093834700018,-8.288750908999845],[157.198985222,-8.274590752999826],[157.19141686300006,-8.271905205999843],[157.1818139980002,-8.272556247999887],[157.17302493600002,-8.268812757999866],[157.169118686,-8.261407158999873],[157.15992272200018,-8.233493747999844],[157.15040123800006,-8.215915622999901],[157.13917076900017,-8.200941664999874],[157.12452233200017,-8.188653252999913],[157.10466556100005,-8.17888762799987],[157.11207116000006,-8.172621351999823],[157.10181725399997,-8.171644789999945],[157.0971785820001,-8.169122002999842],[157.09644616000006,-8.164971612999892],[157.09782962300002,-8.15894947699988]]],[[[156.81055748800011,-8.055352471999868],[156.81421959700015,-8.072035414999903],[156.8247176440002,-8.069594007999868],[156.8413192070001,-8.11296965899983],[156.81544030000006,-8.111993096999853],[156.78565514400003,-8.086195570999834],[156.78988691499998,-8.055352471999868],[156.81055748800011,-8.055352471999868]]],[[[157.63599694100017,-8.189385674999839],[157.64470462300008,-8.205173434999892],[157.64177493600008,-8.217705987999892],[157.63697350400014,-8.229099216999856],[157.63965905000023,-8.240899346999825],[157.64649498800017,-8.233656507999811],[157.65235436300011,-8.235121351999865],[157.65870201900023,-8.23951588299984],[157.66700280000012,-8.240899346999825],[157.67335045700023,-8.23845794099988],[157.68539472700016,-8.230564059999907],[157.69434655000003,-8.227308851999865],[157.71387780000018,-8.223565362999835],[157.7301538420002,-8.223402601999865],[157.74586022200015,-8.22869231599985],[157.77458743600013,-8.249281507999882],[157.7784936860002,-8.253350518999838],[157.7837020190001,-8.261407158999873],[157.7858992850001,-8.267754815999908],[157.7898869150001,-8.288750908999845],[157.8022567070001,-8.305352471999894],[157.82813561300023,-8.322849216999856],[157.83838951900023,-8.33717213299984],[157.83676191500004,-8.36223723799985],[157.83838951900023,-8.37127044099985],[157.84400475400005,-8.380303643999866],[157.85954837300008,-8.392510674999839],[157.86557050900015,-8.398614190999822],[157.87387129000015,-8.415459893999824],[157.88038170700023,-8.450290622999859],[157.886078321,-8.467461846999882],[157.89063561300017,-8.470798434999907],[157.89714603000007,-8.471368096999882],[157.90333092500012,-8.473565362999878],[157.90723717500012,-8.481133721999825],[157.9069116550002,-8.490899346999868],[157.90333092500012,-8.499118747999859],[157.8835555350001,-8.531996351999851],[157.88111412900017,-8.537774346999825],[157.87924238399998,-8.548923434999935],[157.87891686300006,-8.55820077899989],[157.88013756600014,-8.566989841999856],[157.882578972,-8.575127862999878],[157.886078321,-8.582940362999864],[157.82447350400017,-8.558851820999848],[157.79737389400023,-8.55632903399983],[157.79737389400023,-8.562432549999912],[157.81104576900006,-8.570733330999886],[157.8204858730002,-8.583184502999899],[157.8235783210001,-8.599216403999888],[157.8178817070001,-8.617771091999899],[157.81104576900006,-8.617771091999899],[157.80884850400014,-8.601332289999903],[157.80152428500014,-8.590915622999916],[157.7936304050002,-8.584242445999863],[157.7898869150001,-8.579847914999874],[157.78646894600016,-8.565524997999887],[157.77784264400017,-8.551527601999837],[157.7557072270001,-8.528252862999821],[157.72934003999998,-8.513929945999834],[157.6748153000001,-8.509209893999838],[157.64966881600003,-8.497979424999826],[157.6056421230002,-8.467461846999882],[157.58204186300006,-8.439385674999883],[157.5776473320001,-8.436211846999825],[157.57601972700016,-8.421563408999901],[157.56788170700023,-8.398858330999872],[157.5646264980002,-8.38494231599988],[157.5646264980002,-8.323500257999811],[157.57203209700018,-8.33505624799993],[157.57593834700018,-8.346856377999899],[157.5776473320001,-8.374444268999824],[157.58301842500023,-8.386488539999917],[157.60645592500012,-8.392998955999829],[157.61182701900006,-8.40203215899983],[157.61500084700006,-8.412367445999848],[157.62208092500012,-8.410739841999913],[157.6290796230002,-8.401136976999837],[157.63233483200023,-8.388360283999887],[157.62696373800006,-8.378024997999887],[157.60336347700004,-8.355726820999848],[157.59376061300017,-8.323337497999844],[157.58269290500002,-8.299411716999884],[157.56706790500007,-8.276299737999835],[157.54965254000015,-8.261407158999873],[157.537364129,-8.25839609199987],[157.52816816500015,-8.261000257999868],[157.51807701900006,-8.265801690999865],[157.50261478000007,-8.268812757999866],[157.49610436300017,-8.264743747999901],[157.48894290500002,-8.25741952899989],[157.4817814460001,-8.255954684999935],[157.47584069100006,-8.268812757999866],[157.46485436300011,-8.26230234199987],[157.4565535820001,-8.26230234199987],[157.4410913420002,-8.268812757999866],[157.44011478,-8.26970794099985],[157.43213951900017,-8.27361419099985],[157.42750084700006,-8.275079033999901],[157.39340254000004,-8.275567315999893],[157.35645592500006,-8.272067966999899],[157.34489993600008,-8.275079033999901],[157.33619225400017,-8.28932057099982],[157.3296004570001,-8.30803801899988],[157.31885826900006,-8.325860283999859],[157.297129754,-8.33717213299984],[157.27955162900017,-8.333428643999907],[157.24537194100017,-8.313653252999885],[157.2350366550002,-8.316664320999891],[157.22820071700008,-8.316664320999891],[157.221934441,-8.223890882999854],[157.22486412900005,-8.217705987999892],[157.23926842500012,-8.197523695999863],[157.24537194100017,-8.193129164999872],[157.25961347699996,-8.193047783999887],[157.27125084700012,-8.19166432099982],[157.28101647200006,-8.187595309999864],[157.29029381600017,-8.17888762799987],[157.29509524800008,-8.191827080999872],[157.30201256600017,-8.195733330999872],[157.30990644600016,-8.192966403999902],[157.31690514400023,-8.185723565999893],[157.31999759200014,-8.176527601999823],[157.32007897200012,-8.15496184699991],[157.3243921230002,-8.144789320999863],[157.3209741550002,-8.132989190999893],[157.32650800900004,-8.119398695999848],[157.34831790500007,-8.093194268999895],[157.35824629000015,-8.078220309999864],[157.3732202480002,-8.044610283999845],[157.38282311300006,-8.031508070999877],[157.4254663420002,-7.989841403999917],[157.4410913420002,-7.979668877999869],[157.45720462300008,-7.973565362999892],[157.48747806100008,-7.965590101999837],[157.50261478000007,-7.959730726999894],[157.50212649800008,-7.96445077899989],[157.50342858200005,-7.965590101999837],[157.50611412900005,-7.965752862999891],[157.50945071700008,-7.966566664999902],[157.578868035,-8.005547783999887],[157.6056421230002,-8.007582289999917],[157.59864342500023,-8.02556731599985],[157.6017358730002,-8.038262627999828],[157.60816491000006,-8.050388278999904],[157.61182701900006,-8.06617603999986],[157.6105249360002,-8.104180596999866],[157.61247806100002,-8.122735283999873],[157.61931399800008,-8.137953382999854],[157.60987389400023,-8.156345309999892],[157.6131291020001,-8.169122002999842],[157.63599694100017,-8.189385674999839]]],[[[156.60466556100008,-8.191013278999861],[156.58741295700017,-8.199395440999837],[156.57837975400005,-8.187107028999876],[156.55323326900017,-8.11402760199988],[156.53842207099996,-8.091485283999901],[156.53598066500015,-8.06926848799985],[156.54297936300023,-8.021172783999873],[156.53207441500015,-7.970635674999869],[156.5323999360002,-7.948907158999887],[156.54981530000023,-7.939222914999931],[156.56470787899997,-7.952080987999864],[156.57715905000023,-7.966566664999902],[156.5815535820001,-7.977146091999856],[156.58765709700012,-8.000664971999825],[156.6010848320001,-8.023370049999869],[156.60645592500023,-8.040622653999876],[156.610036655,-8.058526299999826],[156.61117597700016,-8.072686455999857],[156.61597741000006,-8.098565362999864],[156.61646569100006,-8.112481377999842],[156.61117597700016,-8.124932549999855],[156.61898847700016,-8.146172783999845],[156.61597741000006,-8.17066822699988],[156.60466556100008,-8.191013278999861]]],[[[160.64795983200023,-7.9268531229999],[160.64087975400017,-7.928399346999838],[160.632009311,-7.927015882999868],[160.61304772200006,-7.90113697699985],[160.6075952480002,-7.888848565999894],[160.61207116000006,-7.876722914999902],[160.62330162900014,-7.874444268999839],[160.62989342500023,-7.880303643999866],[160.63575280000006,-7.891045830999886],[160.64795983200023,-7.9268531229999]]],[[[157.184336785,-8.106703382999882],[157.16724694100017,-8.135511976999823],[157.14625084700003,-8.14861419099988],[157.1251733730002,-8.124932549999855],[157.11670983200005,-8.128106377999826],[157.11255944100006,-8.128594658999901],[157.10466556100005,-8.124932549999855],[157.05420983200023,-8.129082940999893],[157.00228925900012,-8.086846612999878],[156.96216881600006,-8.02743905999992],[156.94703209700006,-7.979668877999869],[156.94874108200023,-7.967054945999806],[156.95215905000023,-7.955010674999883],[156.96127363400015,-7.932549737999877],[156.985118035,-7.896091403999918],[156.98853600400005,-7.888116143999865],[157.0019637380001,-7.875176690999865],[157.0327254570001,-7.862969658999888],[157.06706790500007,-7.854099216999842],[157.09107506600012,-7.850518487999864],[157.13754316500015,-7.87476978999986],[157.17042076900023,-7.909926039999916],[157.19125410200004,-7.952894789999874],[157.20093834700018,-8.000746351999808],[157.20232181100008,-8.048272393999895],[157.199473504,-8.06519947699988],[157.184336785,-8.106703382999882]]],[[[156.55543053500017,-7.81731536299985],[156.53484134200014,-7.827406507999825],[156.51685631600017,-7.81812916499986],[156.51791425900015,-7.809258721999825],[156.52588951900012,-7.799411716999884],[156.53638756600017,-7.791110934999907],[156.54542076900006,-7.791680596999882],[156.54908287900005,-7.795017184999907],[156.55941816500004,-7.802422783999887],[156.55543053500017,-7.81731536299985]]],[[[156.61117597700016,-7.569431247999916],[156.61410566500007,-7.577813408999873],[156.61939537900014,-7.585137627999884],[156.63168379000004,-7.596774997999888],[156.63412519600016,-7.60182057099982],[156.63306725400008,-7.606215101999808],[156.6339624360002,-7.609307549999883],[156.64958743600008,-7.611260674999841],[156.65259850400017,-7.614190362999864],[156.65308678500017,-7.619398695999847],[156.65284264400012,-7.6273739559999],[156.65707441500004,-7.63144296699987],[156.6667586600001,-7.635430596999838],[156.67644290500004,-7.642266533999858],[156.684825066,-7.665704033999844],[156.69459069100006,-7.6722958309999],[156.71485436300017,-7.67864348799985],[156.70753014400023,-7.686130466999899],[156.72103925900004,-7.700372002999913],[156.7436629570001,-7.691827080999885],[156.7661238940001,-7.699883721999826],[156.78760826900023,-7.713148695999863],[156.8071395190001,-7.720147393999837],[156.81470787900017,-7.734551690999893],[156.7994897800002,-7.766534112999892],[156.76270592500003,-7.816501559999935],[156.74398847700004,-7.831963799999855],[156.71973717500023,-7.85702890399986],[156.70411217500023,-7.885023695999877],[156.711192254,-7.908868096999868],[156.72055097700016,-7.921075127999842],[156.72071373800011,-7.931817315999851],[156.71338951900012,-7.940362237999878],[156.70069420700023,-7.945489190999879],[156.69752037900017,-7.941989841999899],[156.68921959700018,-7.935235283999858],[156.6780705090001,-7.932305596999839],[156.66635175899998,-7.939222914999931],[156.65967858200023,-7.939222914999931],[156.65748131600003,-7.919122002999885],[156.66179446700002,-7.899102471999825],[156.65894615999997,-7.883965752999828],[156.61182701900012,-7.871189059999878],[156.60840905000012,-7.854587497999916],[156.61866295700023,-7.813083591999926],[156.61475670700023,-7.805108330999871],[156.60580488400004,-7.798435153999917],[156.5963647800002,-7.792738539999931],[156.59083092500018,-7.788506768999823],[156.57781009200008,-7.76165129999984],[156.57097415500007,-7.754327080999829],[156.5540470710001,-7.748630466999841],[156.55323326900017,-7.747491143999908],[156.54517662900005,-7.746514580999843],[156.54420006600006,-7.743584893999823],[156.54525800900004,-7.739353122999887],[156.53484134200014,-7.71656666499986],[156.5288192070001,-7.713311455999829],[156.51563561300006,-7.720147393999837],[156.49708092500023,-7.674981377999884],[156.50416100400005,-7.630059502999884],[156.53077233200005,-7.592461846999882],[156.57097415500007,-7.569431247999916],[156.5839949880002,-7.572442315999822],[156.5932723320001,-7.576836846999896],[156.60157311300006,-7.577569268999838],[156.61117597700016,-7.569431247999916]]],[[[158.42261803500006,-7.579685153999846],[158.43433678500006,-7.595147393999865],[158.45101972700016,-7.603122653999918],[158.47046959700018,-7.608493747999873],[158.48609459700006,-7.610284112999864],[158.5006616550002,-7.616469007999839],[158.51661217500012,-7.630954684999877],[158.5265405610002,-7.647067966999855],[158.52361087300008,-7.658135674999882],[158.50782311300023,-7.659844658999887],[158.49293053500017,-7.651055596999825],[158.48145592500023,-7.637302341999899],[158.47510826900012,-7.623955987999892],[158.46461022200006,-7.637383721999882],[158.44556725400005,-7.633070570999891],[158.4069116550002,-7.610284112999864],[158.40886478000002,-7.619805596999854],[158.42115319100017,-7.64381275799981],[158.41138756600006,-7.643649997999844],[158.386485222,-7.637627862999835],[158.36215254000015,-7.637627862999835],[158.36361738400004,-7.6312802059999],[158.35938561300006,-7.617120049999883],[158.34791100400003,-7.603122653999918],[158.32797285200016,-7.596774997999888],[158.32422936300011,-7.593438408999859],[158.31918378999998,-7.586521091999856],[158.31690514400012,-7.579359632999825],[158.32113691500004,-7.576267184999921],[158.3307397800002,-7.577325127999885],[158.34669030000012,-7.58180103999986],[158.35222415500002,-7.5824520809999],[158.35401451900012,-7.584405205999857],[158.36247806100008,-7.586195570999833],[158.36817467500023,-7.58367278399983],[158.36215254000015,-7.572849216999913],[158.36215254000015,-7.567071221999868],[158.36915123800011,-7.562758070999862],[158.37875410199996,-7.56267669099988],[158.386485222,-7.569431247999916],[158.39795983200023,-7.5746395809999],[158.42261803500006,-7.579685153999846]]],[[[158.59595787900003,-7.585870049999912],[158.60572350400017,-7.586195570999833],[158.61459394600004,-7.574314059999877],[158.62525475400005,-7.564141533999844],[158.63965905000012,-7.569431247999916],[158.64332116000017,-7.565606377999899],[158.6461694670002,-7.563571872999874],[158.64926191499998,-7.562432549999841],[158.6539819670002,-7.561293226999808],[158.66130618600016,-7.58098723799985],[158.67579186300023,-7.593845309999864],[158.71485436300011,-7.610284112999864],[158.71876061300011,-7.604424737999821],[158.7255965500002,-7.597426039999931],[158.7330835300002,-7.591566664999888],[158.73926842500015,-7.589288018999824],[158.75171959700018,-7.593438408999859],[158.75700931100008,-7.603610934999907],[158.76026451900012,-7.615980726999851],[158.76661217500023,-7.6273739559999],[158.78614342500012,-7.64568450299987],[158.79818769600004,-7.654473565999837],[158.80811608200023,-7.658135674999882],[158.81446373800017,-7.664727471999867],[158.8302514980002,-7.693780205999842],[158.848399285,-7.704359632999883],[158.86378014400023,-7.724867445999848],[158.87232506600014,-7.733819268999866],[158.8847762380001,-7.741306247999844],[158.92074629000015,-7.754327080999829],[158.93864993600002,-7.765069268999837],[158.96876061300023,-7.790704033999901],[158.9897567070001,-7.802178643999852],[158.97950280000018,-7.821954033999872],[158.98707115999997,-7.839613539999888],[159.00269615999997,-7.848890882999839],[159.01693769600004,-7.843682549999855],[159.05689537900017,-7.859958591999884],[159.06861412900005,-7.8676083309999],[159.07545006600017,-7.880303643999866],[159.07935631600014,-7.894952080999885],[159.08570397200018,-7.903578382999882],[159.09961998800006,-7.898370049999883],[159.1268009770001,-7.91952890399989],[159.14942467500023,-7.908868096999868],[159.16797936300023,-7.904880466999884],[159.18628991,-7.906182549999882],[159.20826256600006,-7.911879164999861],[159.19556725400014,-7.91765715899983],[159.19874108200023,-7.9268531229999],[159.209239129,-7.935479424999897],[159.2187606130001,-7.939222914999931],[159.2356876960001,-7.940850518999867],[159.24512780000012,-7.945570570999862],[159.2507430350001,-7.954196872999873],[159.25586998800011,-7.966566664999902],[159.27295983200014,-7.954034112999821],[159.28305097700004,-7.962660414999903],[159.29102623800006,-7.978692315999893],[159.30128014400012,-7.987074476999865],[159.33383222700013,-7.989841403999917],[159.34717858200005,-7.986097914999888],[159.35279381600014,-7.973402601999837],[159.37134850400017,-7.981866143999866],[159.37891686300023,-7.986748955999842],[159.38697350400017,-7.993910414999873],[159.40259850400017,-7.982354424999855],[159.41293379000015,-7.993422132999896],[159.42156009200008,-8.01425546699987],[159.43165123800023,-8.031508070999877],[159.44792728000007,-8.043877862999821],[159.47632897200018,-8.059502862999892],[159.48943118600008,-8.069594007999868],[159.49203535200016,-8.071058851999837],[159.50367272200018,-8.075860283999916],[159.50586998800023,-8.079034112999878],[159.50831139400012,-8.087090752999828],[159.5099389980002,-8.089532158999859],[159.55640709700006,-8.126397393999824],[159.6489363940002,-8.181247653999916],[159.84205162900017,-8.325616143999824],[159.84644616000006,-8.335381768999852],[159.82504316499998,-8.357598565999822],[159.8042098320001,-8.386163018999895],[159.79664147200018,-8.391778252999899],[159.7878524100001,-8.38681405999985],[159.77662194100012,-8.384047132999896],[159.76539147200015,-8.385349216999884],[159.75684655000006,-8.391778252999899],[159.75757897200012,-8.397556247999873],[159.77328535200016,-8.4086239559999],[159.78158613400012,-8.425388278999918],[159.79102623800017,-8.425388278999918],[159.80046634200005,-8.420668226999823],[159.80860436300011,-8.411797783999873],[159.81788170700023,-8.42009856599985],[159.847911004,-8.461602471999853],[159.85596764400023,-8.476657809999864],[159.85873457099999,-8.490980726999851],[159.8593856130002,-8.511325778999845],[159.88884524800014,-8.533786716999842],[159.90040123800023,-8.550713799999825],[159.88721764400012,-8.562432549999912],[159.87826582100016,-8.560723565999908],[159.84636478000007,-8.542087497999916],[159.84156334700015,-8.54111093499985],[159.82992597700013,-8.542738539999872],[159.82504316499998,-8.542087497999916],[159.82007897200006,-8.536797783999845],[159.81771894599999,-8.529961846999825],[159.81470787900017,-8.524021091999899],[159.79737389400012,-8.517266533999859],[159.78549238400015,-8.498955987999892],[159.76482181100002,-8.49228280999985],[159.7578231130002,-8.485528252999899],[159.74390709700018,-8.467461846999882],[159.71241295700017,-8.443129164999917],[159.70289147200003,-8.432793877999913],[159.70069420700003,-8.42302825299987],[159.70281009200008,-8.414239190999908],[159.70036868600008,-8.407891533999873],[159.68523196700008,-8.405450127999842],[159.67383873800006,-8.398695570999804],[159.62720787900017,-8.357598565999822],[159.54395592500023,-8.34002044099988],[159.50831139400012,-8.31853606599985],[159.48340905000023,-8.30828215899983],[159.46111087300017,-8.289727471999825],[159.44483483200005,-8.281182549999897],[159.42774498800023,-8.277276299999896],[159.41431725400005,-8.28191497199984],[159.38062584700006,-8.261651299999826],[159.36231530000006,-8.256280205999857],[159.3453882170002,-8.261407158999873],[159.33529707100004,-8.238376559999907],[159.32618248800023,-8.225844007999811],[159.3147078790001,-8.220472914999945],[159.30079186300011,-8.219333591999913],[159.28760826900017,-8.21493905999992],[159.27849368600008,-8.206638278999845],[159.27711022200018,-8.193129164999872],[159.25538170700023,-8.200372002999899],[159.2338973320001,-8.196221612999864],[159.21363366000014,-8.185316664999888],[159.11996504000015,-8.117445570999804],[159.11378014400012,-8.116387627999842],[159.09839928500006,-8.118584893999838],[159.09213300900004,-8.117445570999804],[159.08790123800006,-8.111016533999873],[159.08708743600008,-8.102146091999842],[159.08725019600004,-8.093926690999837],[159.08594811300023,-8.089532158999859],[159.0779728520001,-8.088148695999877],[159.07390384200014,-8.091892184999907],[159.0704858730002,-8.096286716999884],[159.06478925900004,-8.09693775799984],[159.03744550900012,-8.083265882999811],[159.03101647200006,-8.082289320999832],[159.01661217500006,-8.084161065999893],[159.01010175899998,-8.083265882999811],[159.00993899800014,-8.080498955999843],[159.00554446700002,-8.0668270809999],[159.00326582100016,-8.062758070999848],[158.99203535200016,-8.05754973799985],[158.98357181100002,-8.055108330999829],[158.97803795700008,-8.049574476999808],[158.97608483200017,-8.034926039999887],[158.9694116550002,-8.039971612999821],[158.94809004000015,-8.049086195999818],[158.94629967500023,-8.029229424999896],[158.93734785200004,-8.013929945999847],[158.92286217500006,-8.00416432099982],[158.90406334700006,-8.000746351999808],[158.84571373800023,-7.973402601999837],[158.84034264400003,-7.935235283999858],[158.83204186300011,-7.917901299999868],[158.81495201900023,-7.922539971999895],[158.784434441,-7.915215752999885],[158.76986738399998,-7.905857028999861],[158.77735436300023,-7.891534112999878],[158.7663680350001,-7.8793270809999],[158.75635826900012,-7.871026299999826],[158.7495223320001,-7.871026299999826],[158.73902428500006,-7.884535414999888],[158.72852623800023,-7.872002862999892],[158.71485436300011,-7.836195570999877],[158.70362389400012,-7.822930596999853],[158.68848717500012,-7.811211846999867],[158.67115319100006,-7.805108330999871],[158.6539819670002,-7.809665622999916],[158.64429772200003,-7.791761976999865],[158.60075931100013,-7.767754815999822],[158.58497155000003,-7.754327080999829],[158.58008873800011,-7.740817966999856],[158.58057701900012,-7.730238539999902],[158.58326256600014,-7.720635674999826],[158.58497155000003,-7.710056247999874],[158.58497155000003,-7.668633721999853],[158.50684655000023,-7.603610934999907],[158.45533287900017,-7.576267184999921],[158.446543816,-7.560723565999837],[158.44507897200006,-7.543552341999898],[158.45199629000015,-7.531996351999879],[158.46892337300002,-7.534600518999881],[158.48951256600017,-7.546970309999907],[158.58773847700004,-7.580336195999806],[158.59595787900003,-7.585870049999912]]],[[[158.30567467500012,-7.48251718499992],[158.31128991,-7.493747653999917],[158.32439212300008,-7.489678643999867],[158.33611087300008,-7.494561455999843],[158.35906009200008,-7.514092705999828],[158.371348504,-7.50416432099982],[158.39307701900006,-7.505791924999841],[158.41675866,-7.51490650799984],[158.434825066,-7.527764580999857],[158.42514082100013,-7.53281015399989],[158.41846764400012,-7.539727471999881],[158.41667728,-7.549086195999834],[158.42115319100017,-7.561293226999808],[158.37671959700018,-7.552504164999931],[158.36524498800023,-7.548272393999825],[158.3571069670002,-7.539727471999881],[158.34864342500018,-7.528415622999902],[158.337657097,-7.51832447699985],[158.30779056100013,-7.510918877999856],[158.2866317070001,-7.496840101999822],[158.273203972,-7.493747653999917],[158.26579837300002,-7.488213799999911],[158.26441491000017,-7.476820570999848],[158.26856530000012,-7.466973565999836],[158.27662194100006,-7.466403903999861],[158.28630618600016,-7.472832940999865],[158.2966414720001,-7.476820570999848],[158.30567467500012,-7.48251718499992]]],[[[157.50912519600013,-7.390557549999912],[157.53541100400014,-7.395603122999844],[157.563731316,-7.392266533999915],[157.5888778000001,-7.393324476999864],[157.605235222,-7.411797783999887],[157.61158287900005,-7.404229424999855],[157.61898847700004,-7.411797783999887],[157.61280358200014,-7.419366143999852],[157.61060631600017,-7.429782809999921],[157.61280358200014,-7.441338799999855],[157.61898847700004,-7.452080987999878],[157.59164472700016,-7.432224216999869],[157.5905867850001,-7.447198174999897],[157.58041425900015,-7.452813408999901],[157.54948978000016,-7.452080987999878],[157.54948978000016,-7.445896091999899],[157.55551191500004,-7.44255950299987],[157.56421959700012,-7.435642184999878],[157.56999759200008,-7.432224216999869],[157.53052819100012,-7.420668226999851],[157.51937910200016,-7.414808851999808],[157.51140384200014,-7.413506768999894],[157.48585045700023,-7.414727471999825],[157.47559655000012,-7.411797783999887],[157.491953972,-7.400079033999902],[157.50912519600013,-7.390557549999912]]],[[[158.26937910200004,-7.390557549999912],[158.26937910200004,-7.417901299999883],[158.273203972,-7.416110934999891],[158.2797957690001,-7.413750908999845],[158.28321373800011,-7.411797783999887],[158.27930748800011,-7.420830987999906],[158.27662194100006,-7.4307593729999],[158.27564537900017,-7.441338799999855],[158.27621504000004,-7.452080987999878],[158.26140384200005,-7.44353606599985],[158.25635826900012,-7.438409112999834],[158.24903405000012,-7.47323984199987],[158.23519941500004,-7.463311455999872],[158.2265731130001,-7.449802341999899],[158.21534264400012,-7.439141533999872],[158.19434655000006,-7.438409112999834],[158.19434655000006,-7.432224216999869],[158.20801842500012,-7.417901299999883],[158.21485436300023,-7.417901299999883],[158.22429446700002,-7.419610283999887],[158.25025475400005,-7.394952080999886],[158.26937910200004,-7.390557549999912]]],[[[157.7898869150001,-7.459649346999825],[157.79737389400023,-7.47323984199987],[157.770274285,-7.474786065999822],[157.7560327480002,-7.473890882999824],[157.73926842500006,-7.46689218499985],[157.73275800899995,-7.468438408999888],[157.72584069100012,-7.471449476999893],[157.71827233200023,-7.47323984199987],[157.71070397200012,-7.470961195999806],[157.70435631600017,-7.461602471999867],[157.6977645190001,-7.459567966999842],[157.67855879000012,-7.448174737999877],[157.68897545700023,-7.423028252999899],[157.72169030000023,-7.38388437299986],[157.76929772200006,-7.400811455999842],[157.77621504000015,-7.407972914999873],[157.778086785,-7.422946872999916],[157.7898869150001,-7.459649346999825]]],[[[155.57032311300023,-7.322930596999868],[155.58627363400015,-7.331231377999842],[155.59742272200018,-7.342054945999834],[155.606700066,-7.35369231599985],[155.61817467500023,-7.363946221999867],[155.59742272200018,-7.382907809999877],[155.57618248800006,-7.387872002999842],[155.52523847700016,-7.38388437299986],[155.50798587300008,-7.375746351999837],[155.51441491000017,-7.357517184999864],[155.542328321,-7.322930596999868],[155.54932701900012,-7.325290622999916],[155.55494225400008,-7.325127862999849],[155.57032311300023,-7.322930596999868]]],[[[155.81674238400004,-7.020684502999899],[155.84669030000003,-7.027927341999842],[155.85425866000006,-7.031508070999806],[155.86801191500015,-7.048516533999873],[155.86793053500014,-7.061944268999866],[155.86207116,-7.075778903999861],[155.85824629000004,-7.092950127999885],[155.85092207099999,-7.099297783999915],[155.83415774800005,-7.104180596999881],[155.81560306100008,-7.105889580999886],[155.8030705090001,-7.103204033999901],[155.78663170700005,-7.117852471999824],[155.77003014400012,-7.117608330999872],[155.75294030000006,-7.115492445999863],[155.73487389400023,-7.124281507999839],[155.72559655000012,-7.119561455999829],[155.71412194100006,-7.108575127999869],[155.70687910200002,-7.103204033999901],[155.67855878999998,-7.094496351999837],[155.67286217500012,-7.089532158999873],[155.67448978000002,-7.075941664999917],[155.70069420700005,-7.020684502999899],[155.7088322270001,-7.025485934999892],[155.71192467500015,-7.010674737999835],[155.71794681100008,-6.992445570999848],[155.73487389400023,-6.986504815999822],[155.73145592500023,-6.97861093499985],[155.73194420700023,-6.972426039999874],[155.73487389400023,-6.966078382999853],[155.74740644600013,-6.970879815999837],[155.78256269600004,-7.000746351999823],[155.81674238400004,-7.020684502999899]]],[[[156.10254967500018,-6.878187757999882],[156.09791100400005,-6.890883070999848],[156.11280358200008,-6.912692966999899],[156.11841881600014,-6.91822682099982],[156.12631269600016,-6.922458591999841],[156.14527428500017,-6.927911065999879],[156.15259850400017,-6.931329033999886],[156.14275149800005,-6.937269789999903],[156.13209069100006,-6.938734632999868],[156.12142988399998,-6.936455987999891],[156.11158287900017,-6.931329033999886],[156.10914147200006,-6.94687265399989],[156.10434004000015,-6.962090752999869],[156.0963647800002,-6.975762627999899],[156.083669467,-6.986504815999822],[156.08253014400012,-6.97877369599982],[156.0807397800001,-6.974786065999837],[156.07862389400012,-6.971449476999808],[156.07683353000013,-6.966078382999853],[156.07007897200015,-6.974053643999894],[156.06226647200018,-6.979099216999841],[156.05298912900005,-6.981133721999868],[156.042735222,-6.980401299999841],[156.05860436300023,-6.969414971999867],[156.0734155610002,-6.955743096999839],[156.07667076900023,-6.947523695999848],[156.07203209700006,-6.940687757999825],[156.06568444100012,-6.933770440999822],[156.06373131600006,-6.925062757999839],[156.06714928500017,-6.910902601999823],[156.07146243600008,-6.906426690999851],[156.08025149800014,-6.904554945999876],[156.08716881600006,-6.901625257999868],[156.08179772200018,-6.895684502999841],[156.07325280000023,-6.890801690999865],[156.0699975920002,-6.890883070999848],[156.05713951900006,-6.87200286299982],[156.04688561300023,-6.851657809999921],[156.04965254000004,-6.831719658999845],[156.07683353000013,-6.815199476999865],[156.09791100400005,-6.815199476999865],[156.09791100400005,-6.822035414999873],[156.08415774800014,-6.825453382999882],[156.0734155610002,-6.833184502999899],[156.06641686300023,-6.844903252999885],[156.06373131600006,-6.859633070999876],[156.072520379,-6.867933851999865],[156.08969160200004,-6.872328382999839],[156.10254967500018,-6.878187757999882]]],[[[156.5815535820001,-6.649672132999867],[156.591075066,-6.649834893999837],[156.60084069100006,-6.64625416499986],[156.60515384200008,-6.643975518999881],[156.64307701900006,-6.655043226999837],[156.66960696700002,-6.674981377999913],[156.72103925900004,-6.733330987999821],[156.73511803500017,-6.745538018999881],[156.78028405000012,-6.775811455999871],[156.82309004000004,-6.787286065999822],[156.88550866000017,-6.829522393999851],[156.9272567070001,-6.84937916499986],[156.96338951900023,-6.856052341999899],[156.98047936300011,-6.864678643999823],[156.99284915500002,-6.868829033999859],[157.003754102,-6.875258070999863],[157.00847415500013,-6.887302341999869],[157.0123804050002,-6.894626559999877],[157.02149498800011,-6.895765882999825],[157.0327254570001,-6.895196221999853],[157.0426538420002,-6.897149346999896],[157.052500847,-6.905450127999869],[157.07398522200006,-6.934991143999838],[157.11207116000006,-6.966078382999853],[157.12045332099996,-6.980726820999863],[157.12330162900003,-6.998223565999908],[157.1251733730002,-7.041192315999865],[157.13624108200023,-7.086114190999865],[157.15251712300008,-7.124281507999839],[157.1622827480002,-7.136976820999806],[157.17269941500004,-7.147637627999828],[157.18189537900017,-7.160414320999877],[157.18726647200006,-7.178887627999898],[157.20264733200005,-7.169691664999917],[157.2076929050002,-7.164727471999868],[157.21558678500017,-7.182224216999912],[157.22877037900005,-7.195245049999911],[157.24610436300011,-7.203545830999886],[157.26612389400003,-7.20623137799987],[157.27963300900015,-7.212497653999917],[157.28931725400005,-7.226820570999805],[157.29517662900017,-7.243910414999944],[157.297129754,-7.257745049999855],[157.30274498800011,-7.266371351999851],[157.31592858200017,-7.272637627999899],[157.34489993600008,-7.281996351999836],[157.35621178500006,-7.288506768999839],[157.36850019599996,-7.298272393999867],[157.37940514400006,-7.310235283999902],[157.38648522200006,-7.322930596999868],[157.39275149800008,-7.322930596999868],[157.39519290500013,-7.306329033999901],[157.402598504,-7.305759372999845],[157.41309655000006,-7.311944268999894],[157.42408287900005,-7.316094658999844],[157.44556725400017,-7.316176039999917],[157.45557701900023,-7.314222914999873],[157.49187259200002,-7.300957940999851],[157.51140384200014,-7.300225518999825],[157.5249129570001,-7.309991143999853],[157.52979576900017,-7.333184502999885],[157.52979576900017,-7.357598565999837],[157.52637780000023,-7.370863539999873],[157.51343834700006,-7.376560153999846],[157.4855249360002,-7.377618096999896],[157.47348066499998,-7.384698174999869],[157.44792728000013,-7.432224216999869],[157.44605553500006,-7.420505466999884],[157.44174238400015,-7.414239190999837],[157.43555748800003,-7.413506768999894],[157.42750084700006,-7.417901299999883],[157.4143986340001,-7.407484632999896],[157.3901473320001,-7.402032158999859],[157.34489993600008,-7.398044528999876],[157.32545006600003,-7.391778252999828],[157.31202233200005,-7.378838799999826],[157.30795332100004,-7.36028411299982],[157.31690514400023,-7.336602471999895],[157.308441602,-7.339613539999903],[157.30250084700018,-7.344333591999899],[157.29029381600017,-7.357110283999859],[157.2825626960001,-7.353448174999897],[157.278005405,-7.356540622999887],[157.27662194100006,-7.370782158999886],[157.25757897200018,-7.359795830999829],[157.221934441,-7.347832940999894],[157.20093834700018,-7.336602471999895],[157.1479598320002,-7.332289320999806],[157.13892662900005,-7.333184502999885],[157.1324975920002,-7.342950127999828],[157.1183374360002,-7.342461846999838],[157.10425866000006,-7.332207940999822],[157.09343509200008,-7.302015882999812],[157.08269290500002,-7.287530205999857],[157.06910241000017,-7.274346612999906],[157.056895379,-7.268324476999808],[157.04802493600008,-7.273125908999887],[157.0284936860002,-7.281019789999861],[157.01465905000006,-7.282647393999881],[157.02279707099999,-7.268324476999808],[157.01351972700016,-7.251885674999897],[156.99854576900012,-7.238702080999857],[156.97925866000017,-7.229913018999881],[156.95753014400012,-7.226739190999822],[156.94385826900017,-7.221612237999821],[156.92774498800011,-7.208754164999888],[156.83432050900004,-7.099786065999893],[156.83008873800011,-7.090508721999853],[156.82764733200017,-7.078057549999841],[156.82325280000003,-7.067071221999868],[156.8139754570002,-7.062269789999888],[156.80062910200002,-7.058770440999893],[156.79322350400005,-7.050225518999866],[156.7830509770001,-7.028090101999808],[156.74390709700006,-6.973890882999839],[156.73170006600017,-6.966078382999853],[156.722015821,-6.956475518999866],[156.6870223320001,-6.897149346999896],[156.6705835300002,-6.88567473799985],[156.62305748800011,-6.860935153999876],[156.60816491000006,-6.856215101999865],[156.59620201900012,-6.850762627999841],[156.48462975400005,-6.753838799999868],[156.48218834699998,-6.750420830999857],[156.4611108730002,-6.733330987999821],[156.45443769600004,-6.719414971999839],[156.44662519600004,-6.664971612999835],[156.44695071700008,-6.644789320999806],[156.45443769600004,-6.630791924999841],[156.48780358200008,-6.60295989399988],[156.50489342500023,-6.599867445999806],[156.5280054050002,-6.603122653999847],[156.54802493600005,-6.610528252999828],[156.55982506600006,-6.623467705999843],[156.56674238400012,-6.626722914999874],[156.57398522200018,-6.631931247999872],[156.57715905000023,-6.640801690999822],[156.5815535820001,-6.649672132999867]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Tuvalu","sov_a3":"TUV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tuvalu","adm0_a3":"TUV","geou_dif":0,"geounit":"Tuvalu","gu_a3":"TUV","su_dif":0,"subunit":"Tuvalu","su_a3":"TUV","brk_diff":0,"name":"Tuvalu","name_long":"Tuvalu","brk_a3":"TUV","brk_name":"Tuvalu","brk_group":null,"abbrev":"Tuv.","postal":"TV","formal_en":"Tuvalu","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tuvalu","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":8,"mapcolor13":5,"pop_est":12373,"gdp_md_est":14.94,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"TV","iso_a2":"TV","iso_a3":"TUV","iso_n3":"798","un_a3":"798","wb_a2":"TV","wb_a3":"TUV","woe_id":23424970,"woe_id_eh":23424970,"woe_note":"Exact WOE match as country","adm0_a3_is":"TUV","adm0_a3_us":"TUV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":6,"long_len":6,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"TUV.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[179.90609785200013,-9.418633721999868],[179.90528405000012,-9.420668226999808],[179.90406334700012,-9.400485934999864],[179.8986108730002,-9.38681405999992],[179.9012150400001,-9.387953382999868],[179.90674889400015,-9.399346612999835],[179.90609785200013,-9.418633721999868]]],[[[179.87842858200017,-9.360772393999852],[179.87696373800028,-9.362969658999845],[179.8717554050002,-9.350192966999899],[179.8674422540001,-9.344333591999856],[179.86784915500013,-9.343194268999824],[179.87330162900022,-9.34685637799987],[179.87842858200017,-9.360772393999852]]],[[[179.2097274100001,-8.529961846999825],[179.19125410200016,-8.542087497999916],[179.200043165,-8.52955494599982],[179.2041121750003,-8.518975518999866],[179.20232181100013,-8.509698174999826],[179.19809004000018,-8.49781666499986],[179.1975203790002,-8.48154062299993],[179.1993921230002,-8.460625908999873],[179.20639082100016,-8.474053643999866],[179.2072046230002,-8.498467705999914],[179.21550540500024,-8.511325778999845],[179.21753991000008,-8.520603122999887],[179.2097274100001,-8.529961846999825]]],[[[178.39063561300014,-8.026543877999826],[178.38054446700008,-8.070000908999873],[178.37330162900017,-8.069024346999894],[178.37549889400017,-8.056084893999895],[178.3831486340002,-8.039239190999893],[178.39063561300014,-8.026543877999826]]],[[[178.6941024100002,-7.493829033999901],[178.69141686300017,-7.498630466999898],[178.68279056100013,-7.491469007999854],[178.66797936300017,-7.463636976999807],[178.6652124360001,-7.454034112999821],[178.6883244150001,-7.474379164999902],[178.69109134200014,-7.475355726999879],[178.693369988,-7.483982028999889],[178.6941024100002,-7.493829033999901]]],[[[177.1533309250003,-7.199151299999897],[177.15259850400017,-7.200290622999844],[177.15259850400017,-7.197360934999921],[177.15235436300011,-7.195082289999945],[177.15040123800028,-7.190362237999849],[177.15007571700025,-7.188164971999853],[177.1530054050002,-7.195000908999873],[177.1533309250003,-7.199151299999897]]],[[[176.32243899800008,-6.295098565999837],[176.3143009770001,-6.302341403999847],[176.31918379000004,-6.289239190999879],[176.3229272800002,-6.288832289999874],[176.32243899800008,-6.295098565999837]]],[[[177.35629316500015,-6.118747653999847],[177.3440861340001,-6.121026299999911],[177.33985436300011,-6.114515882999825],[177.33814537899994,-6.11101653399983],[177.33716881600023,-6.108168226999879],[177.34880618599996,-6.110528252999842],[177.35661868599996,-6.114515882999825],[177.35629316500015,-6.118747653999847]]],[[[176.14039147200023,-5.687188408999901],[176.14844811300023,-5.706719658999887],[176.1352645190003,-5.692803643999823],[176.1252547540001,-5.67913176899988],[176.12989342500018,-5.67750416499986],[176.14039147200023,-5.687188408999901]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Vanuatu","sov_a3":"VUT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vanuatu","adm0_a3":"VUT","geou_dif":0,"geounit":"Vanuatu","gu_a3":"VUT","su_dif":0,"subunit":"Vanuatu","su_a3":"VUT","brk_diff":0,"name":"Vanuatu","name_long":"Vanuatu","brk_a3":"VUT","brk_name":"Vanuatu","brk_group":null,"abbrev":"Van.","postal":"VU","formal_en":"Republic of Vanuatu","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vanuatu","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":218519,"gdp_md_est":988.5,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"NH","iso_a2":"VU","iso_a3":"VUT","iso_n3":"548","un_a3":"548","wb_a2":"VU","wb_a3":"VUT","woe_id":23424907,"woe_id_eh":23424907,"woe_note":"Exact WOE match as country","adm0_a3_is":"VUT","adm0_a3_us":"VUT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":4,"tiny":2,"homepart":1,"filename":"VUT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[169.83814537900005,-20.248630466999856],[169.83008873800011,-20.253106377999913],[169.8204858730002,-20.244398695999834],[169.80787194100006,-20.238946221999978],[169.78223717500023,-20.23267994599985],[169.751800977,-20.2190080709999],[169.7379663420002,-20.208916924999926],[169.73633873800006,-20.185804945999887],[169.74341881600003,-20.160577080999914],[169.75554446700002,-20.143812757999896],[169.76840254000015,-20.140232028999932],[169.79395592500023,-20.136000257999825],[169.82113691500015,-20.13502369599985],[169.84034264400012,-20.14080169099999],[169.86052493600008,-20.155531507999896],[169.87614993600002,-20.164157809999978],[169.88884524800017,-20.173923434999935],[169.89893639400023,-20.19231536299996],[169.88843834700018,-20.217461846999868],[169.88160241000017,-20.22958749799986],[169.87159264400006,-20.239434502999966],[169.86052493600008,-20.244398695999834],[169.83814537900005,-20.248630466999856]]],[[[169.44564863400015,-19.648044528999932],[169.43620853000007,-19.65732187299997],[169.41684004000004,-19.65545012799991],[169.3741968110002,-19.643731377999842],[169.357676629,-19.63616301899998],[169.31641686300017,-19.58977629999991],[169.30616295700023,-19.58220794099988],[169.28614342500018,-19.5812313779999],[169.27833092500006,-19.57830169099988],[169.275075717,-19.572198174999983],[169.2719832690002,-19.56096770599997],[169.26490319100014,-19.552992445999934],[169.25782311300023,-19.54778411299985],[169.25464928500017,-19.544366143999834],[169.25212649800002,-19.536553643999937],[169.218516472,-19.490166924999965],[169.21436608200005,-19.479750257999882],[169.21322675900015,-19.464776299999855],[169.214528842,-19.439141533999873],[169.21998131600017,-19.414808851999823],[169.2311304050002,-19.403985283999916],[169.2389429050002,-19.398532809999875],[169.2389429050002,-19.385674737999846],[169.2347111340001,-19.362481377999828],[169.23878014400023,-19.35068124799986],[169.24341881600006,-19.34197356599995],[169.25049889400012,-19.33505624799987],[169.26148522200018,-19.328301690999837],[169.28150475400005,-19.322930596999864],[169.320078972,-19.322442315999876],[169.3365991550002,-19.314629815999893],[169.35287519600004,-19.32805754999997],[169.35377037900005,-19.34156666499994],[169.34791100400017,-19.358168226999908],[169.34400475400017,-19.38014088299984],[169.357676629,-19.455254815999933],[169.36646569100017,-19.469659112999906],[169.38746178500006,-19.477959893999895],[169.41228274800008,-19.484144789999874],[169.43279056100002,-19.49285247199994],[169.46517988400012,-19.509372654000018],[169.48064212300008,-19.52011484199994],[169.50171959700018,-19.527520440999837],[169.4956160820001,-19.539808851999975],[169.4601343110002,-19.58220794099988],[169.45329837300017,-19.626153252999984],[169.44564863400015,-19.648044528999932]]],[[[169.18677819100017,-18.734958591999842],[169.22730553500017,-18.739353122999916],[169.22689863399998,-18.737969658999845],[169.23170006600017,-18.735609632999896],[169.23861738400015,-18.733493747999887],[169.24398847700004,-18.732517184999907],[169.24805748800006,-18.73447030999986],[169.24740644600004,-18.743422132999967],[169.25611412900005,-18.74822356599988],[169.26156660200016,-18.754815362999935],[169.26628665500004,-18.762953382999868],[169.2683211600001,-18.769952080999843],[169.25660241,-18.77068450299987],[169.19320722700016,-18.787041924999883],[169.21745853000007,-18.815362237999835],[169.22046959700018,-18.824965101999823],[169.22706139400023,-18.826836846999882],[169.25806725400017,-18.84197356599988],[169.2683211600001,-18.849216403999904],[169.29859459700018,-18.864190362999835],[169.31983483200005,-18.882012627999913],[169.33236738400007,-18.904880467],[169.3365991550002,-18.93482838299988],[169.32781009200002,-18.96038176899988],[169.30787194100003,-18.97283294099989],[169.2869572270001,-18.982354424999883],[169.275075717,-18.999281507999868],[169.25489342500012,-18.98479583099991],[169.16651451900023,-18.939222914999874],[169.15447024800002,-18.936211846999953],[169.14226321700008,-18.941338799999883],[169.13412519600016,-18.940850518999895],[169.10279381600012,-18.932224216999884],[169.09392337300008,-18.927992445999877],[169.08350670700005,-18.918633721999925],[169.0592554050002,-18.90195077899989],[169.04249108200017,-18.894138278999904],[168.98731530000012,-18.876560153999876],[168.98552493600002,-18.85963307099989],[169.00196373800023,-18.81503671699991],[169.00220787900017,-18.801690362999892],[168.9985457690002,-18.79021575299994],[168.99236087300008,-18.779880466999856],[168.98406009200008,-18.769952080999843],[168.982269727,-18.76262786299985],[168.98878014400006,-18.6906063779999],[168.99488366000017,-18.669691664999945],[169.00814863400004,-18.649997653999904],[169.03842207099999,-18.629164320999834],[169.0778100920002,-18.61825937299986],[169.11841881600017,-18.61939869599989],[169.15235436300023,-18.636325778999876],[169.16244550899998,-18.652276299999883],[169.16651451900023,-18.672051690999893],[169.16651451900023,-18.708265882999907],[169.17212975400017,-18.726495049999983],[169.18677819100017,-18.734958591999842]]],[[[168.33171634200002,-17.549248955999943],[168.3366805350001,-17.555596612999878],[168.35417728000007,-17.545342705999854],[168.4231063160001,-17.534274998],[168.43921959700018,-17.537041924999954],[168.45337975400008,-17.546319268999923],[168.45573978000007,-17.552504164999974],[168.45915774800005,-17.57057057099982],[168.46322675900004,-17.57431406000002],[168.47169030000023,-17.575860283999887],[168.4775496750001,-17.580173434999892],[168.4874780610002,-17.5948218729999],[168.4956160820001,-17.613376559999907],[168.50114993600002,-17.63298919099995],[168.5104272800002,-17.648858330999985],[168.52906334700018,-17.656182549999897],[168.53516686300017,-17.66611093499999],[168.5431421230002,-17.684991143999838],[168.54957116000006,-17.691013278999932],[168.55974368600008,-17.693129164999945],[168.56983483200023,-17.691582940999908],[168.57837975400017,-17.688164971999896],[168.583750847,-17.68417734199999],[168.58545983200023,-17.70126718499995],[168.55567467500012,-17.75920989399995],[168.54761803500017,-17.78460051899988],[168.5402124360002,-17.796644789999974],[168.52686608200005,-17.80193450299987],[168.50114993600002,-17.807061455999886],[168.49903405000012,-17.80934010199995],[168.49626712300008,-17.814060153999947],[168.49154707100016,-17.81861744599982],[168.48414147200018,-17.820733330999914],[168.47901451900023,-17.818536065999837],[168.47266686300023,-17.81389739399998],[168.46778405000023,-17.809258721999967],[168.46697024800002,-17.807061455999886],[168.39600670700005,-17.823500257999882],[168.38835696700002,-17.823663018999937],[168.37086022200015,-17.81389739399998],[168.36695397200018,-17.80641041499993],[168.3647567070001,-17.796644789999974],[168.36036217500012,-17.79371510199996],[168.34961998800011,-17.807061455999886],[168.3488061860002,-17.798760674999983],[168.34457441500015,-17.788669528999932],[168.343516472,-17.780368747999944],[168.33912194100006,-17.781833592],[168.33855228000007,-17.782321872999987],[168.33855228000007,-17.78346119599985],[168.3366805350001,-17.786553643999834],[168.32846113399998,-17.78427499799986],[168.32064863400004,-17.78460051899988],[168.31421959700018,-17.787855726999833],[168.30933678500006,-17.794040622999987],[168.31560306100008,-17.75920989399995],[168.30933678500006,-17.75920989399995],[168.29908287899997,-17.771905205999914],[168.283050977,-17.778578382999967],[168.24732506600014,-17.786553643999834],[168.24732506600014,-17.780368747999944],[168.26465905000018,-17.767836195999863],[168.28687584699998,-17.76132577899996],[168.30469811300011,-17.75204843499999],[168.30933678500006,-17.731215101999922],[168.30103600400005,-17.73626067499987],[168.29420006600006,-17.736748955999857],[168.28980553500006,-17.732028903999932],[168.28663170700003,-17.710870049999937],[168.28223717500012,-17.7076148419999],[168.27564537900005,-17.70680103999989],[168.26783287900005,-17.704034112999835],[168.25171959700006,-17.695570570999976],[168.23845462300002,-17.6937802059999],[168.22624759200008,-17.69695403399996],[168.21314537900017,-17.704034112999835],[168.20606530000012,-17.711358330999925],[168.19255618600008,-17.73259856599999],[168.185801629,-17.7387020809999],[168.17481530000023,-17.74098072699988],[168.16814212300017,-17.736993096999896],[168.16521243600005,-17.726820570999944],[168.15113366000003,-17.718194268999852],[168.15414472700004,-17.705824476999823],[168.17896569100012,-17.656182549999897],[168.19068444100017,-17.643975518999923],[168.2164819670002,-17.62623463299984],[168.22681725400005,-17.615166924999983],[168.26661217500012,-17.558526299999897],[168.29273522200018,-17.537692967],[168.32300866000017,-17.53264739399998],[168.32813561300006,-17.53883229000003],[168.33171634200002,-17.549248955999943]]],[[[168.21338951900023,-17.57008229],[168.2054142590001,-17.581149997999958],[168.20785566500004,-17.550388278999975],[168.23894290500013,-17.521905205999957],[168.27564537900005,-17.509372653999876],[168.2954207690002,-17.526462497999916],[168.28272545700005,-17.530694268999937],[168.26042728000007,-17.54290129999991],[168.2470809250002,-17.546319268999923],[168.22380618600013,-17.56145598799992],[168.21338951900023,-17.57008229]]],[[[168.37208092500012,-17.479099216999884],[168.35629316500015,-17.48414479],[168.33415774800008,-17.46998463299998],[168.32276451900012,-17.447360934999917],[168.32740319100006,-17.41936614399999],[168.33855228000007,-17.414483330999843],[168.35206139400023,-17.424981377999984],[168.3637801440001,-17.443942966999913],[168.37208092500012,-17.479099216999884]]],[[[168.34327233200005,-17.09343840899993],[168.3330184250002,-17.09441497199999],[168.32276451900012,-17.08945077899986],[168.32781009200008,-17.078057549999983],[168.33952884200002,-17.066176040000016],[168.34937584700006,-17.059665622999944],[168.38835696700002,-17.041192315999922],[168.40202884200008,-17.040948174999883],[168.425140821,-17.046644789999945],[168.41675866000014,-17.053155205999857],[168.39112389400012,-17.067152601999823],[168.38575280000023,-17.073337497999887],[168.38184655000023,-17.080010674999926],[168.3764754570001,-17.08538176899989],[168.34327233200005,-17.09343840899993]]],[[[168.57032311300023,-16.937595309999978],[168.5592554050002,-16.943617445999905],[168.54297936300023,-16.942315362999906],[168.5327254570002,-16.937920831],[168.52979576900012,-16.929457289999974],[168.535004102,-16.91570403399996],[168.53394616000006,-16.894463799999883],[168.55274498800011,-16.879082940999936],[168.57837975400017,-16.876885674999855],[168.59701582100016,-16.89519622199991],[168.57032311300023,-16.937595309999978]]],[[[168.18506920700003,-16.575372002999913],[168.18995201900023,-16.580254815999893],[168.19263756600006,-16.58513762799987],[168.19581139400012,-16.58733489399995],[168.20281009200008,-16.595879815999876],[168.22022545700023,-16.633477471999882],[168.23023522200006,-16.64202239399998],[168.23218834700018,-16.649102471999868],[168.23454837300002,-16.664727471999853],[168.23894290500013,-16.681247653999918],[168.24732506600014,-16.69036223799999],[168.25513756600017,-16.689385674999926],[168.27165774800002,-16.67913176899991],[168.28150475400017,-16.676853123000015],[168.29021243600008,-16.678399346999882],[168.298106316,-16.682061455999843],[168.30469811300011,-16.686455987999906],[168.30933678500006,-16.69036223799999],[168.3198348320001,-16.705498956],[168.3263452480002,-16.72096119599992],[168.33521569100006,-16.733168226999908],[168.35336347700004,-16.738213799999926],[168.3566186860002,-16.743584893999895],[168.3608504570001,-16.755303643999966],[168.37029056100013,-16.767022393999966],[168.38819420700005,-16.77223072699995],[168.441172722,-16.770440362999963],[168.464121941,-16.77800872199984],[168.48072350400017,-16.80022551899998],[168.46753991,-16.805922132999953],[168.46998131600006,-16.819512627999913],[168.47592207100016,-16.83521900799998],[168.47388756600006,-16.848077080999914],[168.46338951900003,-16.843519789999874],[168.45337975400008,-16.848077080999914],[168.40040123800023,-16.819105726999908],[168.38412519600004,-16.802504164999945],[168.36768639400012,-16.79485442499984],[168.3483179050002,-16.78899504999997],[168.33326256600014,-16.786716404],[168.29167728000013,-16.795342705999914],[168.26205488400015,-16.812107028999932],[168.23292076900012,-16.822930596999836],[168.19206790500007,-16.813897393999923],[168.1793725920002,-16.80632903399996],[168.1499129570001,-16.778578382999896],[168.14421634200002,-16.769219658999955],[168.14649498800011,-16.741631768999852],[168.14421634200002,-16.73137786299992],[168.1284285820001,-16.718357028999932],[168.12037194100006,-16.709161065999865],[168.12061608200008,-16.700616143999937],[168.12484785200004,-16.688653253],[168.12671959700018,-16.651625257999882],[168.13111412900017,-16.63583749799993],[168.137461785,-16.628594658999987],[168.14380944100003,-16.623711846999925],[168.1490991550002,-16.616957289999903],[168.15113366000003,-16.60442473799999],[168.15064537900005,-16.594821873],[168.14918053500017,-16.58806731599998],[168.14421634200002,-16.573011976999965],[168.15406334700006,-16.579196873000015],[168.16016686300023,-16.57854583099997],[168.16627037900005,-16.575127862999963],[168.17530358200023,-16.573011976999965],[168.18506920700003,-16.575372002999913]]],[[[168.35043379000004,-16.53923919099998],[168.32960045700023,-16.539646091999984],[168.3159285820001,-16.535821221999882],[168.30762780000012,-16.52459075299997],[168.2954207690002,-16.49797942499984],[168.32447350400005,-16.49228280999995],[168.33725019600016,-16.491875908999944],[168.34937584700006,-16.49797942499984],[168.36117597700004,-16.51425546699987],[168.3613387380001,-16.52939218499995],[168.35043379000004,-16.53923919099998]]],[[[168.2438257170002,-16.494561455999914],[168.22624759200008,-16.50481536299995],[168.2101343110002,-16.504652601999894],[168.20313561300011,-16.495375257999925],[168.21314537900017,-16.478122654000018],[168.22266686300006,-16.440606377999913],[168.234141472,-16.43230559699984],[168.260996941,-16.42978281],[168.25171959700006,-16.444756768999937],[168.25082441500015,-16.47958749799997],[168.2438257170002,-16.494561455999914]]],[[[168.32227623800023,-16.318291925],[168.2882593110002,-16.344008070999962],[168.18238366,-16.347832940999965],[168.1686304050002,-16.35125090899997],[168.15406334700006,-16.35784270599987],[168.13998457100004,-16.361911717000012],[168.12745201900012,-16.357354424999883],[168.1158960300002,-16.347832940999965],[168.10254967500006,-16.339939059999907],[168.08912194100017,-16.3365210919999],[168.07650800900004,-16.3404273419999],[168.05005944100006,-16.322442315999865],[168.0366317070002,-16.320082289999903],[168.02198326900012,-16.3265927059999],[168.01238040500007,-16.314711195999934],[167.97917728,-16.29517994599996],[167.96338951900006,-16.28264739399995],[167.948985222,-16.274346612999892],[167.93165123800023,-16.267510674999954],[167.9209090500001,-16.258884372999873],[167.92644290500002,-16.244805596999925],[167.91285241000017,-16.233086846999925],[167.92579186300006,-16.219821872999983],[167.95036868600016,-16.20891692499984],[167.97966556100013,-16.202243747999958],[167.99447675899998,-16.192315362999878],[168.00424238400004,-16.190118096999882],[168.04867597700016,-16.190118096999882],[168.06950931100002,-16.179782809999878],[168.10694420700005,-16.142998955999886],[168.12061608200008,-16.134942315999936],[168.12549889400006,-16.129082940999908],[168.14096113399998,-16.089776299999983],[168.1499129570001,-16.08570729000003],[168.17164147200018,-16.080254815999908],[168.19141686300011,-16.101250908999944],[168.20728600400005,-16.13445403399996],[168.22681725400005,-16.1969540339999],[168.230723504,-16.227715752999885],[168.24968509200002,-16.246189059999907],[168.32129967500023,-16.282891534],[168.32862389400017,-16.291436455999843],[168.32984459700018,-16.306247653999904],[168.32227623800023,-16.318291925]]],[[[167.4244897800002,-16.111586195999863],[167.44434655000012,-16.118096612999935],[167.45964603000007,-16.131768487999977],[167.46998131600017,-16.134942315999936],[167.47339928500017,-16.131036065999947],[167.47185306100002,-16.12200286299985],[167.46648196700008,-16.10442473799999],[167.47071373800011,-16.10279713299998],[167.48015384200014,-16.113213799999883],[167.49439537900005,-16.134942315999936],[167.49341881600006,-16.143812757999896],[167.48568769600004,-16.154880467000012],[167.48698978000002,-16.16277434699991],[167.509532097,-16.173028252999842],[167.51490319100017,-16.176446221999853],[167.52100670700005,-16.176446221999853],[167.52418053500006,-16.170993747999987],[167.52719160200002,-16.16814544099995],[167.53060957100004,-16.166110934999935],[167.5346785820001,-16.16277434699991],[167.53744550900015,-16.174248955999857],[167.54175866000017,-16.18547942499994],[167.54761803499997,-16.19589609199994],[167.55518639400023,-16.204359632999967],[167.566661004,-16.211521091999924],[167.58985436300023,-16.217950127999924],[167.60303795700003,-16.224297783999873],[167.62549889400006,-16.244886976999908],[167.63843834700018,-16.262465101999933],[167.65267988399998,-16.26970794099986],[167.67937259200016,-16.258965752999856],[167.68873131600006,-16.263848565999908],[167.69239342500012,-16.26523202899999],[167.69239342500012,-16.272637627999885],[167.68572024800002,-16.287041924999855],[167.70362389400012,-16.306247653999904],[167.74691816499998,-16.3404273419999],[167.77247155000018,-16.33603281],[167.78614342500012,-16.3585751279999],[167.794688347,-16.40797291499996],[167.77588951900006,-16.441176039999974],[167.7739363940002,-16.459567967000012],[167.7892358730002,-16.47063567499987],[167.79037519600004,-16.451348565999833],[167.79444420700005,-16.43865325299987],[167.80152428500003,-16.42913176899995],[167.81251061300011,-16.41952890399989],[167.82276451900023,-16.4190406229999],[167.83057701900012,-16.431410415000016],[167.83716881600012,-16.447360934999935],[167.84392337300002,-16.457696221999953],[167.82032311300011,-16.481052341999856],[167.81251061300011,-16.484307549999897],[167.7995711600001,-16.486993096999882],[167.79346764400012,-16.494073174999926],[167.78842207100007,-16.503838799999883],[167.7780054050002,-16.51506926899988],[167.77165774800008,-16.524509372999987],[167.77247155000018,-16.53297291499993],[167.77198326900006,-16.54045989399999],[167.76059004000004,-16.546319268999852],[167.74439537900017,-16.54648202899999],[167.73731530000012,-16.538181247999926],[167.7334090500001,-16.52678801899995],[167.72657311300011,-16.51783619599985],[167.71729576900023,-16.515313409],[167.69092858200023,-16.51100025799991],[167.68555748800006,-16.508884373],[167.67937259200016,-16.499932549999883],[167.66504967500012,-16.499769789999917],[167.64991295700023,-16.502373955999914],[167.64087975400005,-16.501641533999887],[167.62191816500004,-16.49423593499999],[167.59978274800002,-16.50212981599988],[167.57984459700006,-16.515801690999908],[167.56812584700006,-16.52597421699994],[167.5748804050002,-16.531914971999882],[167.57748457099999,-16.5357398419999],[167.58106530000018,-16.538018487999963],[167.5900171230002,-16.539646091999984],[167.58025149800008,-16.552178643999895],[167.56836998800011,-16.556817315999908],[167.54216556100008,-16.560153903999932],[167.52100670700005,-16.580498955999843],[167.5151473320001,-16.57935963299998],[167.5083113940001,-16.57447682099992],[167.5029403000002,-16.574395440999936],[167.50066165500007,-16.58733489399995],[167.49439537900005,-16.58733489399995],[167.48617597700002,-16.577080987999835],[167.45875084700018,-16.567966403999932],[167.44654381600012,-16.545017184999935],[167.4331160820001,-16.534356377999913],[167.4210718110002,-16.520196221999896],[167.41871178500006,-16.49797942499984],[167.42546634200008,-16.49797942499984],[167.42945397200006,-16.50457122199991],[167.4357202480002,-16.510349216999956],[167.44361412900017,-16.514906507999825],[167.452810092,-16.51783619599985],[167.45020592500023,-16.50188567499984],[167.44434655000012,-16.481866143999866],[167.4357202480002,-16.462823174999954],[167.41081790500007,-16.430840752999956],[167.40650475400014,-16.420017184999878],[167.40503991,-16.405205987999906],[167.40577233200023,-16.386814059999864],[167.40503991,-16.381280205999925],[167.40040123800006,-16.37493254999991],[167.39380944100012,-16.3715145809999],[167.38754316500012,-16.369724216999913],[167.38453209700006,-16.36825937299986],[167.38152103000007,-16.346774998000015],[167.3825789720001,-16.285414320999834],[167.38770592500012,-16.272637627999885],[167.37712649800008,-16.224297783999873],[167.37647545700008,-16.218438408999912],[167.37712649800008,-16.200616143999937],[167.374847852,-16.192966403999918],[167.37029056100002,-16.19060637799987],[167.36557050900004,-16.189873955999843],[167.36345462300014,-16.186700127999956],[167.35816491000006,-16.169122002999927],[167.32243899800017,-16.11500416499996],[167.306488477,-16.124281507999825],[167.30128014400012,-16.128676039999903],[167.29517662900005,-16.12127044099999],[167.27906334700006,-16.140069268999863],[167.2330835300002,-16.169610283999916],[167.20932050899995,-16.14885833099993],[167.1959741550002,-16.14364999799993],[167.18531334700006,-16.149102471999967],[167.17855879000004,-16.138929945999834],[167.17611738399998,-16.129082940999908],[167.17481530000006,-16.118910414999945],[167.171641472,-16.108168226999847],[167.163910352,-16.098077080999886],[167.15503991000006,-16.09099700299999],[167.14747155000012,-16.082940362999977],[167.14421634200008,-16.070000908999972],[167.14844811300006,-16.046319268999866],[167.17847741000006,-15.990899346999969],[167.17416425900004,-15.924899997999944],[167.175059441,-15.91204192499984],[167.18018639400023,-15.90390390399992],[167.18181399800008,-15.896254164999887],[167.18531334700006,-15.890720309999963],[167.19556725400017,-15.888441664999988],[167.22624759200005,-15.86736419099988],[167.33611087300008,-15.908949476999936],[167.33480879000015,-15.944105726999823],[167.3947046230002,-16.017998955999914],[167.37712649800008,-16.052911065999922],[167.38998457099999,-16.05779387799998],[167.40040123800006,-16.064711195999905],[167.40430748800006,-16.074395440999865],[167.39763431100013,-16.087090752999913],[167.40650475400014,-16.094333591999856],[167.41521243600008,-16.10361093499999],[167.4244897800002,-16.111586195999863]]],[[[167.23373457100016,-15.741387627999927],[167.20573978000002,-15.751234632999854],[167.18588300900004,-15.750746351999865],[167.17204837300014,-15.744235934999962],[167.14421634200008,-15.724053643999936],[167.12940514400006,-15.718357028999861],[167.10141035200016,-15.711195570999907],[167.08912194099997,-15.703545830999884],[167.07227623800011,-15.676202080999913],[167.0756942070001,-15.649590752999956],[167.09498131600006,-15.62957122199999],[167.12696373800023,-15.62151458099987],[167.19776451900006,-15.629978123],[167.2335718110002,-15.641534112999933],[167.2368270190002,-15.659356377999913],[167.22494550899998,-15.690036716999911],[167.23210696700014,-15.719008070999818],[167.23373457100016,-15.741387627999927]]],[[[167.20948326900023,-15.596368096999983],[167.19483483200023,-15.607517184999907],[167.171641472,-15.601006769],[167.16830488399995,-15.605075778999874],[167.16504967500023,-15.60654062299993],[167.1573999360002,-15.608005466999897],[167.14283287900017,-15.605889580999884],[167.1323348320001,-15.602227471999841],[167.10954837300008,-15.587497654000018],[167.1573999360002,-15.53899504999987],[167.1764429050002,-15.531508070999891],[167.19019616,-15.531670830999957],[167.19271894600004,-15.535414320999976],[167.17847741000006,-15.53899504999987],[167.17847741000006,-15.545830987999977],[167.18873131600006,-15.548516533999958],[167.19263756600006,-15.553887628],[167.1910913420002,-15.5604794249999],[167.18531334700006,-15.566989841999968],[167.20834394600004,-15.57903411299999],[167.20948326900023,-15.596368096999983]]],[[[168.22681725400005,-15.990899346999969],[168.204274936,-15.992445570999834],[168.19239342500006,-15.985528252999927],[168.18751061300011,-15.971123955999957],[168.18384850400017,-15.930840752999885],[168.16602623800011,-15.87037525799988],[168.15503991000006,-15.793633721999925],[168.13111412900017,-15.737562757999823],[168.12224368600002,-15.702080987999834],[168.11963951900012,-15.662774346999909],[168.1245223320001,-15.62135182099982],[168.14893639400023,-15.54322682099989],[168.15455162900005,-15.463311455999886],[168.17652428500017,-15.46160247199988],[168.18287194100017,-15.50798919099985],[168.185801629,-15.517836195999946],[168.19255618600008,-15.52695077899986],[168.19890384200008,-15.529554945999948],[168.20378665500007,-15.534437757999909],[168.20573978000016,-15.549574476999908],[168.1979272800002,-15.61093515399992],[168.19947350400005,-15.627699476999936],[168.21314537900017,-15.659356377999913],[168.21314537900017,-15.689873955999857],[168.216075066,-15.70378997199984],[168.23951256600017,-15.768161716999925],[168.24732506600014,-15.819512627999856],[168.25212649800008,-15.834242445999847],[168.26400800900004,-15.857110283999942],[168.26783287900005,-15.874769789999943],[168.27035566500015,-15.914239190999835],[168.26775149800002,-15.949151299999855],[168.2548934250001,-15.97576262799997],[168.22681725400005,-15.990899346999969]]],[[[167.86158287900005,-15.47673919099988],[167.83855228000004,-15.484795831],[167.73414147200006,-15.4843075499999],[167.71290123800023,-15.477634372999873],[167.67872155000015,-15.461032809999905],[167.6728621750001,-15.449802342],[167.68238366,-15.43254973799999],[167.80445397200015,-15.320000908999942],[167.82618248800023,-15.313083591999856],[167.843109571,-15.310316664999887],[167.89161217500012,-15.291924737999848],[167.97689863400012,-15.277764581],[168.00245201900023,-15.281833591999883],[168.00326582100016,-15.291599217],[167.98031660200016,-15.313083591999856],[167.96729576900003,-15.328301690999835],[167.95394941500015,-15.348809502999885],[167.94361412900017,-15.37118906],[167.93946373800011,-15.391859632999825],[167.93620853000007,-15.410251559999864],[167.9279077480002,-15.423597914999874],[167.86158287900005,-15.47673919099988]]],[[[167.14861087300002,-14.965590101999949],[167.13965905000012,-14.969659112999835],[167.1310327480002,-14.968926690999893],[167.12322024800014,-14.963636976999908],[167.10108483200023,-14.93962981599988],[167.09644616,-14.928887627999956],[167.11410566500004,-14.933851820999818],[167.13982181100008,-14.953301690999906],[167.1573999360002,-14.956231377999842],[167.14861087300002,-14.965590101999949]]],[[[168.18490644600004,-15.365492445999918],[168.17896569100012,-15.39511484199987],[168.16602623800011,-15.390313408999958],[168.15528405000006,-15.390313408999958],[168.13111412900017,-15.39511484199987],[168.13689212300002,-15.371840101999936],[168.13542728000007,-15.34685637799984],[168.12378991000017,-15.299411716999911],[168.1305444670002,-15.26474374799993],[168.13013756600012,-15.157647393999907],[168.12061608200008,-15.134942315999877],[168.09644616000008,-14.980401299999924],[168.09815514400012,-14.972588799999853],[168.10084069100017,-14.96754322699982],[168.10043379000015,-14.96209075299997],[168.09327233200023,-14.95305754999987],[168.09050540500007,-14.943536065999966],[168.09408613400015,-14.931410414999961],[168.10173587300008,-14.920830987999834],[168.11068769599996,-14.915785414999974],[168.12289472700016,-14.922784112999876],[168.13363691499998,-14.940362237999906],[168.1413680350001,-14.960137627999925],[168.14421634200002,-14.97356536299992],[168.14584394600016,-14.996677341999954],[168.15796959700006,-15.052422783999873],[168.15837649800008,-15.062676690999979],[168.15699303500017,-15.083672783999843],[168.15796959700006,-15.093926690999949],[168.16976972700002,-15.126560154],[168.17164147200018,-15.137953382999882],[168.17164147200018,-15.172784112999905],[168.17481530000023,-15.181410414999917],[168.18881269600004,-15.197523695999891],[168.19206790500007,-15.206312757999951],[168.18897545700005,-15.274590752999941],[168.19434655000023,-15.289157809999978],[168.19255618600008,-15.308038019],[168.185801629,-15.336358330999957],[168.18490644600004,-15.365492445999918]]],[[[166.81316165500007,-15.160414320999962],[166.83887780000012,-15.16090260199995],[166.8834741550002,-15.15601979],[166.90919030000023,-15.156914971999981],[166.919769727,-15.155938408999916],[166.92611738400004,-15.148125909],[166.93881269599999,-15.12810637799994],[166.9469507170002,-15.119886976999865],[166.95590254000015,-15.112969658999942],[166.96322675900015,-15.104180596999898],[166.96615644600016,-15.090264580999913],[166.97193444100006,-14.979913018999936],[166.9698999360002,-14.967054945999832],[166.96452884200002,-14.951348565999865],[166.97592207100004,-14.937269789999917],[166.99390709700006,-14.92685312299993],[167.00766035200013,-14.92205169099985],[167.08285566500015,-14.928887627999956],[167.08285566500015,-14.93629322699985],[167.06470787900017,-14.939222914999872],[167.05616295700023,-14.947686456],[167.05404707100004,-14.960381768999966],[167.0568139980002,-15.002048435],[167.0529077480002,-15.01230234199994],[167.04127037900017,-15.025079033999901],[167.05787194100006,-15.02695077899996],[167.06462649800008,-15.038832289999915],[167.06861412900017,-15.072930596999925],[167.08570397200012,-15.122002862999961],[167.08912194099997,-15.141208592000012],[167.11329186300011,-15.124200127999956],[167.12574303500006,-15.121351820999918],[167.14421634200008,-15.12810637799994],[167.13941491000017,-15.146416925],[167.1573999360002,-15.226820570999818],[167.15259850400005,-15.242771092],[167.14421634200008,-15.246351820999891],[167.14079837300008,-15.249769789999904],[167.15113366000014,-15.26474374799993],[167.15560957100004,-15.267185153999874],[167.171641472,-15.272881768999936],[167.17847741000006,-15.277764581],[167.18213951900006,-15.283298434999935],[167.19174238400015,-15.305596612999961],[167.18946373800011,-15.324639580999955],[167.1850692070001,-15.34099700299997],[167.17888431100002,-15.346612237999892],[167.171641472,-15.332940362999949],[167.16480553500008,-15.332940362999949],[167.17172285199996,-15.366387627999913],[167.18946373800011,-15.417168877999956],[167.21290123800006,-15.463555596999926],[167.2368270190002,-15.483819268999921],[167.24537194100006,-15.488051040000029],[167.24724368600013,-15.49822356599999],[167.2446395190001,-15.50953541499989],[167.24057050900015,-15.517836195999946],[167.23340905000012,-15.523614190999837],[167.22754967500006,-15.523044528999863],[167.220388217,-15.519789320999818],[167.20915774800002,-15.517836195999946],[167.17172285199996,-15.517836195999946],[167.1573999360002,-15.522881768999895],[167.14063561300011,-15.535577080999941],[167.10271243600008,-15.580010674999969],[167.09408613400015,-15.586358330999985],[167.08570397200012,-15.590508721999855],[167.07642662900005,-15.5928687479999],[167.06519616000006,-15.593682549999913],[167.05323326900012,-15.59189218499992],[167.036387566,-15.583184502999927],[167.02711022200003,-15.580010674999969],[166.98910566500015,-15.575616143999893],[166.94629967500018,-15.576755466999927],[166.90796959700006,-15.586358330999985],[166.8834741550002,-15.608005466999897],[166.89323978000007,-15.617771092000012],[166.88510175900004,-15.618910414999872],[166.86378014400017,-15.614841404],[166.85141035200004,-15.622653903999906],[166.84644616000017,-15.630954684999978],[166.8429468110002,-15.639743747999859],[166.83578535200004,-15.648858330999929],[166.8156030610002,-15.658298434999864],[166.7931421230002,-15.656345309999905],[166.7714949880001,-15.64519622199998],[166.75391686300006,-15.627699476999936],[166.76644941499995,-15.608819268999907],[166.7667749360002,-15.583916924999953],[166.75619550900015,-15.5624325499999],[166.72169030000023,-15.547295830999943],[166.7072046230002,-15.532810153999987],[166.6850692070001,-15.49814218499992],[166.67408287900017,-15.468031507999983],[166.66781660200004,-15.460137627999913],[166.64136803500006,-15.434747002999984],[166.6372176440001,-15.425713799999883],[166.63404381600006,-15.413181247999887],[166.619395379,-15.394626559999876],[166.61605878999998,-15.385023695999893],[166.61833743600008,-15.376071872999873],[166.62761478000013,-15.355645440999979],[166.63282311300011,-15.32634856599988],[166.64616946700014,-15.285577080999914],[166.65007571700014,-15.26474374799993],[166.64918053500006,-15.218357028999877],[166.64380944100017,-15.19524505],[166.61980228000002,-15.16155364399999],[166.6139429050002,-15.141859632999969],[166.60987389400012,-15.100274346999896],[166.5996199880001,-15.062107029000016],[166.60035241000006,-15.048435153999973],[166.60987389400012,-15.031914972],[166.59262129000004,-15.026299737999906],[166.58204186300017,-15.011407158999956],[166.5766707690001,-14.99228280999989],[166.57520592500023,-14.97356536299992],[166.57081139400017,-14.956231377999842],[166.54932701900023,-14.925062757999852],[166.5410262380002,-14.908379815999906],[166.52263431100016,-14.832126559999947],[166.52393639400012,-14.815850518999909],[166.53109785200016,-14.79949309699999],[166.53467858200023,-14.775323174999896],[166.5337020190002,-14.75164153399997],[166.52735436300011,-14.737074476999936],[166.55453535200004,-14.682386976999908],[166.5525822270001,-14.657647393999836],[166.55616295700023,-14.64592864399985],[166.58765709700006,-14.636407158999944],[166.59376061300023,-14.628594658999859],[166.59839928500017,-14.625258070999832],[166.60987389400012,-14.63469817499994],[166.6139429050002,-14.642836195999864],[166.62370853000002,-14.669366143999909],[166.626719597,-14.674981378],[166.635020379,-14.679457289999887],[166.64031009200008,-14.690036717000012],[166.6432397800002,-14.702569268999923],[166.6440535820001,-14.71314869599989],[166.6479598320001,-14.715020440999949],[166.67123457100004,-14.743910414999874],[166.68002363399998,-14.768487237999963],[166.68620853000007,-14.779961846999925],[166.70639082099999,-14.78972747199987],[166.74708092500018,-14.819594007999939],[166.73731530000012,-14.82952239399995],[166.74195397200006,-14.852715752999968],[166.76002037900017,-14.901543877999968],[166.76986738399998,-14.947930596999939],[166.7742619150001,-14.997735283999916],[166.77295983200003,-15.009698174999954],[166.7780867850001,-15.016289971999841],[166.78467858200005,-15.021416924999855],[166.78809655000006,-15.028497003],[166.8017684250001,-15.152276299999869],[166.81316165500007,-15.160414320999962]]],[[[167.52507571700014,-14.143324476999865],[167.58643639400012,-14.172458591999913],[167.59538821700008,-14.179375908999916],[167.60303795700003,-14.189060153999874],[167.59644616,-14.241794528999876],[167.59343509200016,-14.250420830999957],[167.58773847700002,-14.256524346999866],[167.56202233200005,-14.298923434999933],[167.5480249360002,-14.313083591999954],[167.53711998800023,-14.318942966999913],[167.52613366000017,-14.31991952899989],[167.45899498800011,-14.314385674999953],[167.44532311300006,-14.319431247999901],[167.430918816,-14.318454685],[167.41863040500004,-14.313409112999977],[167.408457879,-14.307712497999916],[167.40121503999998,-14.305108330999914],[167.39682050900004,-14.299574476999979],[167.40105228000002,-14.287530205999886],[167.41114342500006,-14.267836195999847],[167.40503991,-14.212985934999935],[167.40748131600006,-14.194919528999918],[167.41423587300008,-14.18621184699984],[167.4240828790001,-14.18059661299992],[167.44792728000007,-14.16139088299988],[167.4550887380001,-14.160088799999881],[167.46387780000003,-14.161879164999958],[167.48072350400017,-14.161065362999949],[167.48951256600006,-14.15691497199991],[167.50489342500003,-14.143649997999887],[167.51490319100017,-14.140557549999897],[167.52507571700014,-14.143324476999865]]],[[[167.5756942070001,-13.846368096999882],[167.58106530000018,-13.848728122999928],[167.58570397200018,-13.847588799999897],[167.58871503999998,-13.848402601999823],[167.5900171230002,-13.856622003],[167.58716881600006,-13.860528252999984],[167.58106530000018,-13.860284112999864],[167.57374108200017,-13.85906340899993],[167.56812584700006,-13.860039972],[167.55176842500023,-13.871840101999979],[167.5337020190001,-13.88046640399989],[167.51246178500006,-13.885511976999922],[167.48698978000002,-13.887383721999981],[167.49040774800002,-13.890232029000016],[167.4936629570001,-13.891859632999939],[167.49341881600006,-13.894952080999843],[167.48698978000002,-13.901055596999925],[167.49854576900017,-13.92449309699998],[167.48487389400012,-13.942152601999823],[167.46387780000003,-13.943942966999897],[167.452810092,-13.918633721999953],[167.45215905000012,-13.897881768999866],[167.44841556100008,-13.885023695999934],[167.438243035,-13.874444268999964],[167.41871178500006,-13.860039972],[167.39503014400012,-13.824965101999922],[167.38917076900006,-13.804294528999916],[167.3907983730002,-13.77752044099999],[167.39861087300017,-13.756036065999977],[167.4122827480001,-13.73951588299991],[167.430511915,-13.72673919099995],[167.47380618600016,-13.70842864399999],[167.4889429050002,-13.708184502999956],[167.5031030610002,-13.71689218500002],[167.52100670700005,-13.736504815999908],[167.54965254000004,-13.789483330999943],[167.56202233200005,-13.79802825299987],[167.54957116000006,-13.814060153999861],[167.54216556100008,-13.818536065999922],[167.54859459700018,-13.832777601999837],[167.55681399800008,-13.83806731599999],[167.566172722,-13.840508721999925],[167.5756942070001,-13.846368096999882]]],[[[167.68751061300023,-13.677992445999932],[167.66765384200002,-13.682061455999985],[167.65072675900015,-13.681898695999847],[167.64356530000012,-13.692803643999909],[167.63502037900017,-13.693536065999936],[167.63347415500002,-13.684258721999896],[167.66993248800011,-13.636488539999945],[167.68392988400015,-13.624688408999887],[167.7026473320002,-13.61980559699991],[167.71176191500004,-13.62590911299999],[167.716481967,-13.64023202899989],[167.716644727,-13.656345309999864],[167.71290123800023,-13.66822682099982],[167.70427493600005,-13.67253997199991],[167.68751061300023,-13.677992445999932]]],[[[167.33676191499998,-13.52353280999989],[167.34693444100006,-13.528008721999953],[167.35865319100003,-13.525567315999922],[167.370860222,-13.517347915],[167.3686629570001,-13.5433895809999],[167.35670006600017,-13.553399346999882],[167.33806399800017,-13.553969007999852],[167.3156030610002,-13.551527601999823],[167.30518639400012,-13.536716404000018],[167.29704837300017,-13.520603122999873],[167.29664147200018,-13.504489841999897],[167.30884850400017,-13.490166924999912],[167.33480879000015,-13.483575127999927],[167.35132897200003,-13.49293385199988],[167.35141035200004,-13.505954684999864],[167.32927493600002,-13.510511976999908],[167.33676191499998,-13.52353280999989]]],[[[166.68873131600017,-13.42343515399986],[166.67269941499998,-13.455010674999855],[166.65845787900017,-13.41545989399999],[166.67383873800011,-13.407647393999909],[166.68873131600017,-13.42343515399986]]],[[[166.63054446700002,-13.261651299999897],[166.61304772200018,-13.268243096999967],[166.59571373800011,-13.264255466999899],[166.58814537900005,-13.25847747199984],[166.58277428500008,-13.252536717],[166.57878665500013,-13.245293877999885],[166.57520592500023,-13.236260674999969],[166.59066816500015,-13.22275156],[166.61158287900005,-13.215264580999843],[166.63152103000013,-13.216729424999897],[166.6440535820001,-13.230075778999902],[166.6428328790001,-13.247735283999916],[166.63054446700002,-13.261651299999897]]],[[[166.56006920700023,-13.185642184999892],[166.55453535200004,-13.188409112999935],[166.53842207100016,-13.17994557099982],[166.52963300899998,-13.16985442499994],[166.52662194100017,-13.155368747999987],[166.52735436300011,-13.133884372999873],[166.53321373800017,-13.10637786299992],[166.53419030000023,-13.095635675],[166.53174889400012,-13.088148695999948],[166.5263778000002,-13.083184502999897],[166.52165774800002,-13.07675546699997],[166.52051842500012,-13.064873955999843],[166.55445397200006,-13.073988540000016],[166.56137129000015,-13.078708592000012],[166.56666100400005,-13.089125257999923],[166.57081139400017,-13.111748955999971],[166.57520592500023,-13.12021249799993],[166.57520592500023,-13.12639739399998],[166.57032311300006,-13.132094007999882],[166.56836998800023,-13.138278903999945],[166.56967207100004,-13.145277601999837],[166.57520592500023,-13.15439218499992],[166.5693465500001,-13.157159112999963],[166.56812584700018,-13.161309503],[166.56861412900017,-13.16716887799987],[166.56836998800023,-13.174899997999958],[166.56641686300006,-13.17896900799984],[166.56381269600007,-13.182549737999906],[166.56006920700023,-13.185642184999892]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Samoa","sov_a3":"WSM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Samoa","adm0_a3":"WSM","geou_dif":0,"geounit":"Samoa","gu_a3":"WSM","su_dif":0,"subunit":"Samoa","su_a3":"WSM","brk_diff":0,"name":"Samoa","name_long":"Samoa","brk_a3":"WSM","brk_name":"Samoa","brk_group":null,"abbrev":"Samoa","postal":"WS","formal_en":"Independent State of Samoa","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Samoa","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":6,"pop_est":219998,"gdp_md_est":1049,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"WS","iso_a2":"WS","iso_a3":"WSM","iso_n3":"882","un_a3":"882","wb_a2":"WS","wb_a3":"WSM","woe_id":23424992,"woe_id_eh":23424992,"woe_note":"Exact WOE match as country","adm0_a3_is":"WSM","adm0_a3_us":"WSM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"WSM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-171.5700170559999,-13.938164971999923],[-171.56427975199992,-13.949395440999934],[-171.51947994699987,-13.944756768999907],[-171.46934973899988,-13.96941497199999],[-171.43769283799992,-14.00611744599982],[-171.4481908839999,-14.037530205999929],[-171.44530188699986,-14.041436455999843],[-171.4407445949999,-14.051853123000015],[-171.46617591099994,-14.05282968499999],[-171.53693600199995,-14.045668226999865],[-171.57921301999988,-14.049493096999965],[-171.59882564999992,-14.047784112999963],[-171.61949622299994,-14.037530205999929],[-171.63581295499986,-14.046156507999854],[-171.65241451699993,-14.045179945999877],[-171.68403072799993,-14.037530205999929],[-171.70014400899987,-14.038995049999983],[-171.74299068899995,-14.051853123000015],[-171.75328528599988,-14.051527601999894],[-171.76203365799995,-14.04876067499994],[-171.76805579299986,-14.043226820999832],[-171.7703344389999,-14.034844658999956],[-171.77452551999986,-14.02629973799985],[-171.7843725249999,-14.022230726999965],[-171.80443274599995,-14.017754815999908],[-171.82221432199992,-14.008477471999866],[-171.8379613919999,-14.003187757999981],[-171.85407467399995,-14.001885674999983],[-171.89350338399993,-14.007012627999984],[-171.91112219999985,-14.006442967000012],[-171.9266251289999,-14.001153252999956],[-171.94098873599992,-13.99041106599985],[-171.9619034499999,-13.958103123],[-171.97240149599983,-13.946221612999878],[-171.98200436099992,-13.949395440999934],[-171.9888402989999,-13.949395440999934],[-172.00629635299993,-13.924981377999968],[-172.01801510299993,-13.917901299999926],[-172.04063880099986,-13.915215752999856],[-172.06102454299986,-13.906182549999926],[-172.06366939999992,-13.885023695999934],[-172.05561275899993,-13.861911716999884],[-172.04405676999988,-13.846368096999882],[-171.96519934799994,-13.818536065999922],[-171.8801977199999,-13.805352471999967],[-171.8345434239999,-13.807386976999894],[-171.79230709499996,-13.81650155999989],[-171.65021725199995,-13.871270440999908],[-171.60692298099985,-13.87615325299997],[-171.5851537749999,-13.883884372999901],[-171.56757564999992,-13.896742445999832],[-171.5574438139999,-13.915215752999856],[-171.55907141799992,-13.925388278999973],[-171.5657445949999,-13.931410414999903],[-171.5700170559999,-13.938164971999923]]],[[[-172.28050696499986,-13.493584893999921],[-172.22276770699995,-13.558363539999931],[-172.22187252499992,-13.56259530999995],[-172.22358150899984,-13.573907158999845],[-172.22276770699995,-13.578301690999908],[-172.21751868399994,-13.582777601999965],[-172.20531165299988,-13.587660414999943],[-172.20103919199988,-13.592543226999922],[-172.19758053299995,-13.603122653999874],[-172.1956680979999,-13.61386484199997],[-172.1948949859999,-13.636895440999865],[-172.19025631399995,-13.65601978999993],[-172.1813858709999,-13.667657158999845],[-172.17564856699994,-13.680271092],[-172.1806127589999,-13.702406507999896],[-172.19066321499986,-13.717950127999899],[-172.20213782499988,-13.730157158999958],[-172.21149654899995,-13.744561455999929],[-172.21532141799995,-13.767673434999892],[-172.21235104099995,-13.790622653999973],[-172.2129613919999,-13.800957940999893],[-172.2190649079999,-13.805352471999967],[-172.2427872389999,-13.805108330999929],[-172.25324459499987,-13.802911065999934],[-172.26378333199995,-13.79802825299987],[-172.27953040299988,-13.784844658999916],[-172.2877091139999,-13.77499765399999],[-172.29755611899992,-13.769789320999903],[-172.3184301419999,-13.77125416499996],[-172.36864173099988,-13.788995049999954],[-172.52318274599992,-13.805352471999967],[-172.53290768099995,-13.798597914999931],[-172.54316158799986,-13.78525155999992],[-172.55113684799994,-13.77752044099999],[-172.56737219999988,-13.768812757999838],[-172.57514400899987,-13.762790623],[-172.5784805979999,-13.754001559999864],[-172.58055579299992,-13.744805596999965],[-172.58995520699995,-13.724786065999908],[-172.59211178299995,-13.712660415],[-172.5971166659999,-13.700616143999909],[-172.60895748599995,-13.693047783999958],[-172.6225479809999,-13.687758070999891],[-172.63304602799985,-13.681898695999847],[-172.65453040299988,-13.649183851999823],[-172.6674698559999,-13.633884372999859],[-172.69334876199989,-13.624118747999914],[-172.70348059799989,-13.616631768999852],[-172.71873938699994,-13.602797132999854],[-172.72187252499992,-13.597832940999979],[-172.72301184799986,-13.587334893999838],[-172.72557532499988,-13.581963799999953],[-172.73127193899995,-13.578871351999979],[-172.74449622299989,-13.580010674999912],[-172.7497452459999,-13.578301690999908],[-172.76117916599992,-13.56503671699997],[-172.77647864499988,-13.542087497999901],[-172.78258216099988,-13.520277601999851],[-172.7665502589999,-13.510511976999908],[-172.7323705719999,-13.510511976999908],[-172.69513912699992,-13.524183851999851],[-172.66120357999984,-13.525160414999917],[-172.6389867829999,-13.522067966999927],[-172.61534583199986,-13.509372653999876],[-172.60399329299992,-13.506442966999854],[-172.58185787699992,-13.504489841999897],[-172.56920325399986,-13.50139739399999],[-172.54222571499992,-13.487888279000018],[-172.53062903599988,-13.483982028999932],[-172.45185299399992,-13.483982028999932],[-172.43146725199995,-13.480889580999957],[-172.38923092399992,-13.466973565999965],[-172.36615963399987,-13.46282317499994],[-172.34443111899986,-13.462985934999907],[-172.3223770819999,-13.46689218499999],[-172.30077063699989,-13.476495049999883],[-172.28050696499986,-13.493584893999921]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Aruba","adm0_a3":"ABW","geou_dif":0,"geounit":"Aruba","gu_a3":"ABW","su_dif":0,"subunit":"Aruba","su_a3":"ABW","brk_diff":0,"name":"Aruba","name_long":"Aruba","brk_a3":"ABW","brk_name":"Aruba","brk_group":null,"abbrev":"Aruba","postal":"AW","formal_en":"Aruba","formal_fr":null,"note_adm0":"Neth.","note_brk":null,"name_sort":"Aruba","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":103065,"gdp_md_est":2258,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"AA","iso_a2":"AW","iso_a3":"ABW","iso_n3":"533","un_a3":"533","wb_a2":"AW","wb_a3":"ABW","woe_id":23424736,"woe_id_eh":23424736,"woe_note":"Exact WOE match as country","adm0_a3_is":"ABW","adm0_a3_us":"ABW","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":4,"homepart":-99,"filename":"ABW.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-69.9969376289999,12.577582098000036],[-69.93639075399994,12.53172435100005],[-69.92467200399994,12.519232489000045],[-69.91576087099992,12.497015692000076],[-69.88019771999984,12.453558661000045],[-69.87682044199994,12.427394924000097],[-69.88809160099993,12.417669989000045],[-69.90880286399994,12.417792059000107],[-69.93053137899987,12.425970770000035],[-69.94513912699992,12.44037506700009],[-69.92467200399994,12.44037506700009],[-69.92467200399994,12.447211005000014],[-69.95856686099992,12.463202216000099],[-70.02765865799992,12.522935289000088],[-70.04808508999989,12.531154690000077],[-70.05809485599988,12.537176825000087],[-70.06240800699987,12.546820380000057],[-70.06037350199995,12.556952216000113],[-70.0510961579999,12.574042059000064],[-70.04873613199993,12.583726304000024],[-70.05264238199993,12.600002346000052],[-70.0596410799999,12.614243882000054],[-70.06110592399997,12.625392971000068],[-70.04873613199993,12.632147528000102],[-70.00715084499987,12.5855166690001],[-69.9969376289999,12.577582098000036]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Anguilla","adm0_a3":"AIA","geou_dif":0,"geounit":"Anguilla","gu_a3":"AIA","su_dif":0,"subunit":"Anguilla","su_a3":"AIA","brk_diff":0,"name":"Anguilla","name_long":"Anguilla","brk_a3":"AIA","brk_name":"Anguilla","brk_group":null,"abbrev":"Ang.","postal":"AI","formal_en":null,"formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Anguilla","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":14436,"gdp_md_est":108.9,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"AV","iso_a2":"AI","iso_a3":"AIA","iso_n3":"660","un_a3":"660","wb_a2":"-99","wb_a3":"-99","woe_id":23424751,"woe_id_eh":23424751,"woe_note":"Exact WOE match as country","adm0_a3_is":"AIA","adm0_a3_us":"AIA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"AIA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.037668423999946,18.212958075000028],[-63.09951738199996,18.176174221000124],[-63.1023656889999,18.18040599200016],[-63.109120245999925,18.185044664000188],[-63.113840298999946,18.189846096000068],[-63.13683020699991,18.173407294000086],[-63.15050208199994,18.169094143000095],[-63.16783606699994,18.169338283000044],[-63.14207923099991,18.198146877000156],[-63.13434811099989,18.20408763199999],[-63.12279212099986,18.20807526200015],[-63.09723873599998,18.212469794000143],[-63.08584550699991,18.21771881700012],[-63.0677791009999,18.2364769550001],[-63.05508378799993,18.25433991100006],[-63.03819739499993,18.267726955000157],[-63.00739498599995,18.27301666900003],[-62.98399817599988,18.276434637000037],[-62.972645636999914,18.27586497600008],[-62.97288977799985,18.269273179],[-62.992909308999906,18.23688385600009],[-63.000559048999946,18.227362372000083],[-63.011545376999926,18.220445054],[-63.037668423999946,18.212958075000028]]],[[[-63.42357337099986,18.60004303600006],[-63.42796790299994,18.592840887000122],[-63.42882239499994,18.60126373900006],[-63.42357337099986,18.60004303600006]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Wallis and Futuna","adm0_a3":"WLF","geou_dif":0,"geounit":"Wallis and Futuna","gu_a3":"WLF","su_dif":0,"subunit":"Wallis and Futuna","su_a3":"WLF","brk_diff":0,"name":"Wallis and Futuna Is.","name_long":"Wallis and Futuna Islands","brk_a3":"WLF","brk_name":"Wallis and Futuna Islands","brk_group":null,"abbrev":"Wlf.","postal":"WF","formal_en":"Wallis and Futuna Islands","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"Wallis and Futuna","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":15289,"gdp_md_est":60,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"WF","iso_a2":"WF","iso_a3":"WLF","iso_n3":"876","un_a3":"876","wb_a2":"-99","wb_a3":"-99","woe_id":23424989,"woe_id_eh":23424989,"woe_note":"Exact WOE match as country","adm0_a3_is":"WLF","adm0_a3_us":"WLF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Polynesia","region_wb":"East Asia & Pacific","name_len":21,"long_len":25,"abbrev_len":4,"tiny":3,"homepart":-99,"filename":"WLF.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-178.0467423169999,-14.312595309999978],[-178.0467423169999,-14.319431247999901],[-178.1000463529999,-14.316013278999975],[-178.10883541599992,-14.319431247999901],[-178.12144934799994,-14.313897393999964],[-178.14692135299993,-14.310153903999945],[-178.15660559799989,-14.305108330999914],[-178.1752416659999,-14.277032158999916],[-178.18573971299995,-14.248223565999965],[-178.17804928299995,-14.232598565999979],[-178.14232337099992,-14.243584893999952],[-178.1081436839999,-14.278985283999958],[-178.10509192599991,-14.28525156],[-178.09247799399992,-14.288995049999855],[-178.0467423169999,-14.312595309999978]]],[[[-176.14716549399992,-13.347751559999878],[-176.1594945949999,-13.35027434699998],[-176.1732071609999,-13.34644947699988],[-176.18281002499987,-13.339288018999838],[-176.18390865799992,-13.32382577899999],[-176.1947729159999,-13.30673593499995],[-176.1995743479999,-13.290622653999975],[-176.18281002499987,-13.277927341999927],[-176.19017493399988,-13.257012627999956],[-176.18403072799987,-13.237888278999987],[-176.17039954299995,-13.221449476999894],[-176.15546627499992,-13.208916924999981],[-176.1430151029999,-13.23072682099986],[-176.13056393099987,-13.247653903999932],[-176.12559973899994,-13.264092705999843],[-176.13560950399992,-13.284763278999945],[-176.1321508449999,-13.288506768999964],[-176.13056393099987,-13.291192315999865],[-176.12816321499992,-13.298272393999923],[-176.14447994699995,-13.30087655999992],[-176.1476537749999,-13.310479424999897],[-176.14183508999986,-13.3358700499999],[-176.14716549399992,-13.347751559999878]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Antigua and Barbuda","sov_a3":"ATG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Antigua and Barbuda","adm0_a3":"ATG","geou_dif":0,"geounit":"Antigua and Barbuda","gu_a3":"ATG","su_dif":0,"subunit":"Antigua and Barbuda","su_a3":"ATG","brk_diff":0,"name":"Antigua and Barb.","name_long":"Antigua and Barbuda","brk_a3":"ATG","brk_name":"Antigua and Barb.","brk_group":null,"abbrev":"Ant.B.","postal":"AG","formal_en":"Antigua and Barbuda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Antigua and Barbuda","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":5,"pop_est":85632,"gdp_md_est":1657,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"AC","iso_a2":"AG","iso_a3":"ATG","iso_n3":"028","un_a3":"028","wb_a2":"AG","wb_a3":"ATG","woe_id":23424737,"woe_id_eh":23424737,"woe_note":"Exact WOE match as country","adm0_a3_is":"ATG","adm0_a3_us":"ATG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":17,"long_len":19,"abbrev_len":6,"tiny":4,"homepart":1,"filename":"ATG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.773019985999916,17.126532294000143],[-61.75641842399997,17.11416250200001],[-61.75544186099989,17.123032945000162],[-61.752756313999924,17.128892320000105],[-61.74331620999991,17.1415062520001],[-61.73761959499993,17.13296133000007],[-61.72984778599994,17.127997137000122],[-61.72008216099987,17.1263695330001],[-61.70860755099994,17.127834377000152],[-61.71349036399992,17.12254466400016],[-61.716297980999855,17.118801174000126],[-61.720529751999976,17.11611562700007],[-61.729644334999875,17.11416250200001],[-61.72508704299992,17.09983958500014],[-61.714833136999914,17.09308502800009],[-61.70164954299986,17.093451239000032],[-61.688099738999874,17.100531317000062],[-61.6806534499999,17.100531317000062],[-61.67552649599989,17.095607815],[-61.67210852799988,17.090643622000144],[-61.66759192599994,17.079413153000147],[-61.67438717399995,17.079901434000064],[-61.68814042899987,17.078924872000172],[-61.694935675999915,17.079413153000147],[-61.685658331999946,17.068264065000122],[-61.677072719999835,17.062933661000088],[-61.67218990799995,17.05756256700012],[-61.67442786399993,17.04588450700011],[-61.68569902299992,17.028550523000135],[-61.69701087099991,17.027818101000022],[-61.70995032499994,17.03416575700014],[-61.72622636599996,17.03847890800013],[-61.73399817599997,17.03485748900006],[-61.734364386999886,17.025783596000068],[-61.729644334999875,17.001166083000058],[-61.73713131399992,16.98924388200011],[-61.75352942599994,16.99681224200016],[-61.769764777999875,17.01097239800019],[-61.776844855999855,17.018540757000054],[-61.78359941299988,17.016913153000033],[-61.80406653599993,17.007310289000046],[-61.817860480999855,17.004950262000094],[-61.838693813999924,17.00482819200012],[-61.85171464799993,17.00763580900015],[-61.883656378999916,17.026271877000156],[-61.89037024599989,17.03538646000005],[-61.88361568899992,17.049017645],[-61.87922115799994,17.06045156500015],[-61.88280188699991,17.070217190000093],[-61.882435675999915,17.078802802],[-61.86620032499988,17.08685944200012],[-61.873361782999915,17.089544989000117],[-61.89415442599991,17.100531317000062],[-61.88312740799995,17.110500393000066],[-61.865386522999955,17.117824611000074],[-61.84235592399989,17.12441640800013],[-61.850453253999916,17.13764069200009],[-61.848784959999904,17.149481512000037],[-61.839670376999926,17.159857489000146],[-61.82526607999995,17.168768622000172],[-61.793365037999926,17.16494375200007],[-61.78066972599987,17.147162177000084],[-61.773019985999916,17.126532294000143]]],[[[-61.8314509759999,17.69635651200018],[-61.81822669199996,17.691839911000116],[-61.79727128799993,17.69879791900003],[-61.78429114499991,17.69635651200018],[-61.76817786399993,17.684637762000094],[-61.75426184799996,17.668768622000172],[-61.74327551999991,17.651353257],[-61.73591061099992,17.634914455000015],[-61.72874915299989,17.604966539000127],[-61.72777258999991,17.588446356000148],[-61.729644334999875,17.572821356000176],[-61.7363988919999,17.554022528000033],[-61.74327551999991,17.55060455900012],[-61.753570115999935,17.551499742000104],[-61.77065995999987,17.545558986000074],[-61.77696692599992,17.563421942000147],[-61.79474850199991,17.57611725500011],[-61.83893795499998,17.59332916900003],[-61.8517960279999,17.586574611000103],[-61.85728919199993,17.600978908000158],[-61.85936438699985,17.641791083000115],[-61.8639216789999,17.660142320000162],[-61.86974036399994,17.675482489000117],[-61.873850063999896,17.691148179],[-61.873036261999886,17.71063873900009],[-61.86937415299993,17.70734284100014],[-61.867827928999894,17.704087632],[-61.86620032499988,17.69635651200018],[-61.860096808999884,17.684230861000103],[-61.84422766799985,17.66596100500011],[-61.83893795499998,17.655422268000148],[-61.8392227859999,17.641424872000083],[-61.84316972599989,17.62958405200014],[-61.84316972599989,17.62018463700012],[-61.8314509759999,17.613836981000176],[-61.82648678299995,17.63247304900007],[-61.82502193899989,17.65794505400008],[-61.83120683499988,17.680487372000144],[-61.849191860999895,17.690130927000112],[-61.85643469999994,17.701076565000093],[-61.85167395699992,17.720282294000143],[-61.83779863199993,17.727687893000123],[-61.817860480999855,17.70319245000009],[-61.824574347999906,17.699367580000096],[-61.8314509759999,17.69635651200018]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"The Bahamas","sov_a3":"BHS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"The Bahamas","adm0_a3":"BHS","geou_dif":0,"geounit":"The Bahamas","gu_a3":"BHS","su_dif":0,"subunit":"The Bahamas","su_a3":"BHS","brk_diff":0,"name":"Bahamas","name_long":"Bahamas","brk_a3":"BHS","brk_name":"Bahamas","brk_group":null,"abbrev":"Bhs.","postal":"BS","formal_en":"Commonwealth of the Bahamas","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bahamas, The","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":5,"pop_est":309156,"gdp_md_est":9093,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"BF","iso_a2":"BS","iso_a3":"BHS","iso_n3":"044","un_a3":"044","wb_a2":"BS","wb_a3":"BHS","woe_id":23424758,"woe_id_eh":23424758,"woe_note":"Exact WOE match as country","adm0_a3_is":"BHS","adm0_a3_us":"BHS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BHS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.03392986299986,21.15673149000004],[-73.09759423299997,21.08140004700006],[-73.12982146599995,20.993662571000144],[-73.15119381399995,20.98212311400009],[-73.22556430799992,20.952463097000035],[-73.26891028599991,20.958726304],[-73.28160559799997,20.955064195000045],[-73.2910863919999,20.95058828300007],[-73.3104548819999,20.93764883000007],[-73.31729081899991,20.93764883000007],[-73.31729081899991,20.94505442900005],[-73.31065833199995,20.95050690300009],[-73.32543493799992,20.96133777000007],[-73.34692155599993,20.96382728000019],[-73.39895748199987,20.93576135500014],[-73.43342037699995,20.93764883000007],[-73.49261425099988,20.924457277000087],[-73.5368105879999,20.94123591400013],[-73.60081946499992,20.946519273000106],[-73.61522376199989,20.944566148000078],[-73.63142089299994,20.936681229000115],[-73.63561799699994,20.929263247],[-73.64144993399992,20.920330965000076],[-73.64511012499992,20.912398909000057],[-73.6516121299999,20.913781123000106],[-73.66335589399992,20.921082134000144],[-73.67614103599996,20.935162282000036],[-73.67897042099993,20.94599493600016],[-73.68143384299992,20.963241811000145],[-73.6822611829999,20.985784991000017],[-73.69995646899994,21.014327847000075],[-73.70320851199988,21.01976572200006],[-73.6999099219999,21.026871362000023],[-73.67009365599989,21.02979341900011],[-73.65333525799994,21.039886040000038],[-73.64707081799986,21.061555161000157],[-73.6451734829999,21.080532573000042],[-73.65693080199989,21.093983190000174],[-73.66786106699993,21.10499832400002],[-73.66783314099993,21.115223100000108],[-73.63344490599991,21.09970197600002],[-73.61308669699989,21.10689677800015],[-73.59586063499994,21.11264424700009],[-73.5840970649999,21.12134069800011],[-73.55288739499989,21.130204283000026],[-73.54579357499992,21.149742968000012],[-73.52369848299992,21.16827138300006],[-73.51460433599993,21.186866653000052],[-73.49262555699993,21.182085917000094],[-73.47276770699995,21.192694403000147],[-73.44359290299988,21.192938544000086],[-73.43333899599986,21.193264065000033],[-73.42320716099991,21.19790273600013],[-73.41291256399998,21.20514557500014],[-73.39818274599989,21.224839585000108],[-73.38988196499992,21.233303127000156],[-73.38621985599988,21.22898997600005],[-73.37979081899994,21.208197333000058],[-73.36388098899994,21.190252997000115],[-73.34383419599993,21.165413185000105],[-73.3179435019999,21.154067681000086],[-73.25515239699988,21.13506013199999],[-73.23308077699994,21.147964784000138],[-73.21102369099995,21.158073590000143],[-73.16096119599987,21.169862973000036],[-73.13773470399994,21.197670598000016],[-73.11738404399992,21.236701323000105],[-73.06818600199993,21.309881903000033],[-73.05304928299994,21.329291083000143],[-73.03376217399992,21.340399481000148],[-73.0121964179999,21.332017320000105],[-73.00462805899988,21.314439195000162],[-73.00572669199991,21.291449286],[-73.02554277299993,21.18455638200014],[-73.03392986299986,21.15673149000004]]],[[[-73.04372498199984,21.42606686000003],[-73.05304575199995,21.42490354000013],[-73.05494807399995,21.4354399920001],[-73.05217432399988,21.447796365000087],[-73.05930925099992,21.46704144400009],[-73.07243081799989,21.486336651],[-73.07623436799992,21.506795732000015],[-73.06618412899988,21.514148289000143],[-73.04281768099992,21.52140082600009],[-73.02403723899988,21.53217194200009],[-73.00656224199986,21.55208494400013],[-72.99152584499988,21.56199778900016],[-72.98216712099989,21.55654531500015],[-72.97002673799992,21.54188556700008],[-72.95945733199989,21.533127982000153],[-72.93957155199988,21.523055712000044],[-72.91974850199992,21.514797268],[-72.91043831699992,21.504850291000153],[-72.91464979799994,21.485062200000144],[-72.93342899699984,21.473451972000092],[-72.9707663909999,21.469428091000122],[-72.98822983799997,21.454092202000183],[-72.99957214499997,21.451707711000054],[-73.03366326799991,21.435888338000055],[-73.04372498199984,21.42606686000003]]],[[[-75.7220759759999,22.202582098000118],[-75.7181697259999,22.195786851000108],[-75.71471106699991,22.182928778000086],[-75.72191321499992,22.17536041900003],[-75.73436438699986,22.175034898000106],[-75.74266516799992,22.183254299000012],[-75.74852454299989,22.196682033000016],[-75.74974524599989,22.20453522300009],[-75.74502519399988,22.205755927],[-75.73912512899994,22.20392487200003],[-75.73302161399997,22.19977448100009],[-75.73399817599993,22.205959377000156],[-75.73949133999986,22.22284577000015],[-75.73623613199989,22.224798895],[-75.73143469999994,22.21820709800012],[-75.7220759759999,22.202582098000118]]],[[[-75.74596106699995,22.236029364],[-75.7496638659999,22.23484935100008],[-75.75340735599993,22.237372137000175],[-75.7518611319999,22.263251044000086],[-75.74754798099991,22.26146067900011],[-75.74486243399991,22.24469635600009],[-75.74596106699995,22.236029364]]],[[[-75.80264238199992,22.353176174000097],[-75.80549068899998,22.347601630000085],[-75.81314042899993,22.356268622000172],[-75.82017981699987,22.37132396],[-75.8236384759999,22.385728257000054],[-75.81956946499992,22.388413804000137],[-75.81362870999989,22.37787506700006],[-75.81167558499996,22.371568101000136],[-75.80785071499994,22.365668036],[-75.80264238199992,22.353176174000097]]],[[[-73.1060684889999,22.43349844],[-73.09080969999992,22.431586005000142],[-73.09089107999992,22.433661200000145],[-73.08511308499993,22.43817780200011],[-73.07705644399991,22.44285716400013],[-73.0702205069999,22.44525788000008],[-73.06314042899993,22.4447289080001],[-73.04824785099987,22.440130927000055],[-73.03990637899992,22.439032294000025],[-73.01520748599992,22.430487372000087],[-72.96373450399994,22.397650458],[-72.93993079299995,22.396877346000064],[-72.94481360599991,22.40249258000007],[-72.95360266799989,22.418605861000128],[-72.92027747299989,22.402899481000176],[-72.90363521999984,22.39907461100016],[-72.89281165299984,22.40428294500005],[-72.8771052729999,22.39301178600006],[-72.86168372299994,22.386867580000096],[-72.84373938699991,22.38434479400017],[-72.8204646479999,22.383775132000025],[-72.81379146999984,22.38100820500013],[-72.80597896999984,22.374253648000103],[-72.79283606699987,22.35960521],[-72.78331458199989,22.35321686400009],[-72.76366126199994,22.35321686400009],[-72.75499426999993,22.34967682500009],[-72.7461645169999,22.33128489800005],[-72.75088456899991,22.31122467699999],[-72.7638240229999,22.294867255000085],[-72.7794490229999,22.288234768],[-72.79723059799996,22.293646552000055],[-72.84373938699991,22.336004950000145],[-72.86400305899991,22.349920966000056],[-72.87999426999991,22.35822174700003],[-72.89757239499994,22.36225006700009],[-72.92292232999998,22.36334870000003],[-72.93419348899988,22.362127997000115],[-72.94912675699993,22.357001044000086],[-72.95702063699989,22.35590241100006],[-72.96882076699987,22.358099677000055],[-72.97533118399986,22.362982489000117],[-72.98045813699989,22.367865302],[-72.98835201699984,22.370184637000065],[-73.00991777299996,22.36595286700013],[-73.04954993399988,22.346625067],[-73.07371985599988,22.342230536000113],[-73.08429928299992,22.344387111000017],[-73.0909724599999,22.34906647300012],[-73.09593665299985,22.353705145000063],[-73.10130774599988,22.35590241100006],[-73.13914954299993,22.36334870000003],[-73.15640214799996,22.367661851000136],[-73.16600501199991,22.374212958000115],[-73.16372636599996,22.383693752000042],[-73.14537512899992,22.396877346000064],[-73.15111243399988,22.403957424000126],[-73.15151933499988,22.408596096000068],[-73.14537512899992,22.418605861000128],[-73.1406957669999,22.43154531500015],[-73.14244544199988,22.44228750200007],[-73.14224199099993,22.45136139500006],[-73.13170325399997,22.459540106000148],[-73.11457271999984,22.438544012000037],[-73.1060684889999,22.43349844]]],[[[-73.60761801299992,22.577255263000026],[-73.6254980039999,22.57425790200007],[-73.61817706699989,22.60124962500005],[-73.60598340899986,22.609493955000076],[-73.59379446199998,22.601993096000015],[-73.60761801299992,22.577255263000026]]],[[[-73.46873625299989,22.587662293],[-73.4752329449999,22.586170179000092],[-73.51743936699992,22.59820201800015],[-73.53611469799998,22.603462445],[-73.55641857299992,22.60647387500013],[-73.55885331399995,22.611722827],[-73.54098037499995,22.613960339000144],[-73.52392126799987,22.616196299000066],[-73.5011859949999,22.610929788000036],[-73.4784619939999,22.601163606000124],[-73.46873625299989,22.587662293]]],[[[-74.3547257149999,22.563299872000144],[-74.3855688139999,22.541449286000116],[-74.37669837099995,22.584377346000068],[-74.34764563699987,22.61294179900007],[-74.31200110599991,22.638332424000097],[-74.28376217399995,22.671820380000142],[-74.28892981699994,22.643744208000143],[-74.31753495999993,22.602484442],[-74.3547257149999,22.563299872000144]]],[[[-73.84487870999992,22.720200914000046],[-73.86847896999987,22.68146393400012],[-73.87970943899995,22.671820380000142],[-73.88019771999984,22.68187083500011],[-73.88369706899994,22.689846096000064],[-73.89024817599991,22.69546133000007],[-73.89952551999995,22.69847239799999],[-73.89606686099998,22.684881903000033],[-73.88780676999988,22.671820380000142],[-73.87694251199991,22.665472723],[-73.86538652299987,22.671820380000142],[-73.85863196499994,22.65717194200012],[-73.84947669199993,22.582464911000116],[-73.84398352799994,22.567124742000157],[-73.83120683499986,22.541449286000116],[-73.8483780589999,22.537583726000104],[-73.85558020699995,22.520656643000123],[-73.85912024599992,22.498724677],[-73.86538652299987,22.48004791900003],[-73.87515214799991,22.468491929],[-73.88955644399988,22.455023505000113],[-73.90477454299986,22.443752346000124],[-73.91690019399994,22.439032294000025],[-73.9283748039999,22.430121161000088],[-73.9615779289999,22.370184637000065],[-74.01378333199992,22.330064195000134],[-74.0230199859999,22.32575104400003],[-74.03359941299992,22.325018622000087],[-74.09439042899986,22.30190664300015],[-74.11937415299991,22.296861070000105],[-74.13467363199996,22.28388092700011],[-74.15965735599988,22.246649481000034],[-74.16771399599992,22.23843008000013],[-74.19416256399998,22.21686432500003],[-74.20425370999996,22.212469794000143],[-74.22691809799991,22.209214585],[-74.24474036399988,22.20038483300014],[-74.27696692599991,22.17153554900004],[-74.27822831899994,22.180568752000127],[-74.27696692599991,22.215887762000147],[-74.27245032499988,22.225734768000066],[-74.26195227799991,22.22850169500005],[-74.22252356699991,22.22553131700012],[-74.21410071499989,22.229193427000084],[-74.18390865799995,22.254095770000035],[-74.18309485599985,22.260484117000047],[-74.19371497299989,22.26776764500015],[-74.19371497299989,22.273911851000136],[-74.17414303299992,22.285549221000124],[-74.16706295499995,22.288234768],[-74.17292232999989,22.28986237200003],[-74.17747962099995,22.291693427000112],[-74.18049068899995,22.295314846000068],[-74.18130449099996,22.30190664300015],[-74.16120357999992,22.30923086100016],[-74.13182532499991,22.325913804],[-74.10871334499987,22.329169012000037],[-74.10334225199992,22.332424221000096],[-74.09239661399994,22.34650299700003],[-74.07917232999989,22.355169989000117],[-74.08023027299996,22.36774323100012],[-74.08405514199987,22.381537177000112],[-74.08385169199991,22.390611070000105],[-74.06541907499988,22.39752838700012],[-74.03807532499991,22.400213934000092],[-74.01333574099993,22.405829169000086],[-74.00255286399992,22.421698309000032],[-73.99840247299989,22.445868231000034],[-73.98692786399994,22.45750560100005],[-73.96934973899991,22.462225653000147],[-73.9473363919999,22.465765692000115],[-73.90770423099988,22.479437567000062],[-73.88019771999984,22.502915757000135],[-73.87083899599992,22.53530508000013],[-73.88589433499993,22.575588283000013],[-73.91344153599994,22.594468492000043],[-73.9845271479999,22.595607815000093],[-74.01622473899997,22.610337632000082],[-74.03123938699987,22.62368398600007],[-74.02953040299988,22.627427476000104],[-74.01744544199988,22.64549388200014],[-74.01085364499991,22.651271877000013],[-74.0035701159999,22.655096747000115],[-73.99571692599991,22.657538153000147],[-74.00210527299993,22.66404857000005],[-74.01622473899997,22.684881903000033],[-73.98314368399991,22.67597077000009],[-73.97524980399996,22.671820380000142],[-73.97191321499992,22.682928778000175],[-73.96450761599993,22.69147370000009],[-73.95555579299992,22.695379950000085],[-73.9473363919999,22.692287502000013],[-73.94127356699991,22.69647858300014],[-73.93854732999995,22.697902736000017],[-73.9343155589999,22.69847239799999],[-73.9343155589999,22.705959377000127],[-73.94249426999994,22.70807526200015],[-73.94587154899995,22.710191148000078],[-73.94855709499993,22.713771877000127],[-73.9547419909999,22.720200914000046],[-73.90314693899991,22.719671942000062],[-73.87848873599995,22.723334052000112],[-73.85171464799993,22.733303127000013],[-73.85065670499998,22.729437567],[-73.85020911399988,22.726223049000154],[-73.8487849599999,22.72313060100008],[-73.84487870999992,22.720200914000046]]],[[[-74.19371497299989,22.761175848000065],[-74.1901749339999,22.76023997599999],[-74.17796790299992,22.76170482000005],[-74.17389889199987,22.761175848000065],[-74.17178300699987,22.758246161000145],[-74.16706295499995,22.746893622000172],[-74.14753170499998,22.74066803600003],[-74.11164303299996,22.73834870000014],[-74.09068762899994,22.733303127000013],[-74.09813391799992,22.746893622000172],[-74.07591712099986,22.741888739000117],[-74.01622473899997,22.720200914000046],[-74.09068762899994,22.657538153000147],[-74.09410559799994,22.66567617400007],[-74.0945938789999,22.667873440000065],[-74.10496985599994,22.671820380000142],[-74.10407467399995,22.68829987200003],[-74.12242591099988,22.685207424000126],[-74.14842688699989,22.677801825000145],[-74.22227942599989,22.695624091000028],[-74.2325740229999,22.70351797100001],[-74.24893144399991,22.720200914000046],[-74.25446529899992,22.708482164000074],[-74.26642818899995,22.698553778000143],[-74.27830969999991,22.693182684000092],[-74.28376217399995,22.695379950000085],[-74.2779841789999,22.71702708499999],[-74.27814693899994,22.72842031500015],[-74.28685462099995,22.733303127000013],[-74.35195878799988,22.82265859600012],[-74.34821529899995,22.825873114],[-74.34658769399991,22.829169012000033],[-74.3458552729999,22.832586981000034],[-74.34455318899997,22.836249091000084],[-74.33356686099992,22.836859442000147],[-74.31688391799989,22.842230536],[-74.31041419199988,22.843166408000098],[-74.29845130099994,22.83999258000004],[-74.27009029899992,22.82265859600012],[-74.26008053299992,22.82021719],[-74.23835201699987,22.818426825000117],[-74.22850501199994,22.815822658000016],[-74.2005509109999,22.79466380400011],[-74.1974991529999,22.786118882],[-74.19635982999996,22.768500067000062],[-74.19371497299989,22.761175848000065]]],[[[-73.81696529899997,23.103827216000166],[-73.74185136599995,23.096991278000147],[-73.68569902299996,23.10248444200009],[-73.66616777299987,23.096991278000147],[-73.66616777299987,23.08954498900006],[-73.75523841099997,23.072984117000104],[-73.79735266799992,23.07379791900003],[-73.81696529899997,23.103827216000166]]],[[[-75.53978430899988,23.427679755000113],[-75.52383378799988,23.404852606000087],[-75.55980383999994,23.41559479400003],[-75.60187740799992,23.423407294000114],[-75.63731848899991,23.43549225500011],[-75.65355383999986,23.45945872600008],[-75.61998450399992,23.457098700000117],[-75.57697506399995,23.445868231000116],[-75.53978430899988,23.427679755000113]]],[[[-79.51402747299993,23.495672919000082],[-79.51756751199991,23.494045315000065],[-79.53661048099991,23.506496486000074],[-79.5384008449999,23.510239976000108],[-79.51402747299993,23.495672919000082]]],[[[-79.55288652299994,23.533758856000148],[-79.55455481699997,23.533148505000113],[-79.59434973899994,23.574652411],[-79.58869381399995,23.57135651200015],[-79.56334387899992,23.546698309000178],[-79.55288652299994,23.533758856000148]]],[[[-75.97704016799989,23.677435614000114],[-75.96825110599991,23.664943752000013],[-75.9571833979999,23.65485260600006],[-75.9449763659999,23.648830471000124],[-75.92931067599994,23.645819403000033],[-75.90807044199994,23.645005601000108],[-75.91144771999987,23.640773830000015],[-75.91323808499996,23.637518622000144],[-75.91588294199994,23.634670315000037],[-75.92174231699988,23.631415106000148],[-75.8563126289999,23.567287502000013],[-75.80894934799989,23.54197825700008],[-75.79820716099988,23.538641669000057],[-75.7825414699999,23.507554429000137],[-75.7449438139999,23.482733466000084],[-75.66104081899991,23.452622789000046],[-75.67536373599988,23.438544012000094],[-75.69823157499991,23.44428131700009],[-75.74299068899995,23.466945705000125],[-75.7937719389999,23.470526434000092],[-75.81273352799991,23.47955963700012],[-75.80443274599992,23.500433661000088],[-75.82298743399994,23.512396552000112],[-75.84190833199995,23.528509833],[-75.85924231699993,23.537543036],[-75.87336178299996,23.528387762000122],[-75.90807044199994,23.562404690000122],[-75.9454646479999,23.58803945500001],[-75.98770097599993,23.60081614800005],[-76.03718014199987,23.59662506700012],[-76.03718014199987,23.603461005000142],[-76.00767981699991,23.611761786000116],[-76.00304114499997,23.613999742000104],[-76.0049535799999,23.62295156500012],[-76.01158606699988,23.632025458000115],[-76.01056881399992,23.637600002000127],[-76.02114824099988,23.64411041900003],[-76.02944902299996,23.655666408000158],[-76.03148352799988,23.668524481000173],[-76.02354895699992,23.679185289000102],[-76.01121985599988,23.676947333000115],[-76.00259355399986,23.68016185099999],[-75.99608313699989,23.684556382000082],[-75.98997962099989,23.685980536000145],[-75.98224850199998,23.68268463700009],[-75.97704016799989,23.677435614000114]]],[[[-75.31159420499989,23.67234935099999],[-75.25291907499988,23.58295319200009],[-75.23932857999992,23.575100002000013],[-75.22130286399987,23.556057033000016],[-75.20457923099985,23.53335195500007],[-75.1948949859999,23.514105536000113],[-75.18272864499991,23.446437893000066],[-75.17072506399998,23.429103908000098],[-75.15322831899994,23.411200262000037],[-75.09406490799992,23.30532461100013],[-75.09557044199988,23.29498932500003],[-75.08771725199989,23.28579336100016],[-75.0851130849999,23.264064846000096],[-75.08503170499992,23.219875393],[-75.07689368399991,23.17169830900015],[-75.05996660099993,23.14166901200009],[-75.03160559799989,23.12335846600014],[-74.94635982999992,23.0937360700001],[-74.90965735599991,23.067328192000033],[-74.8448380199999,23.000148830000157],[-74.84911048099991,22.995021877000127],[-74.85460364499994,22.985256252000013],[-74.85912024599989,22.98029205900015],[-74.84703528599991,22.970119533000016],[-74.83844967399989,22.94440338700015],[-74.83340410099996,22.914129950000145],[-74.83202063699989,22.874945380000142],[-74.83397376199991,22.864325262000094],[-74.83995520699995,22.859930731000116],[-74.85228430899988,22.86359284100014],[-74.85806230399993,22.87055084800015],[-74.86534583199995,22.904527085],[-74.8690486319999,22.902167059000035],[-74.8789770169999,22.897772528000147],[-74.88548743399991,22.923814195000134],[-74.91405188699989,22.970851955000125],[-74.92442786399988,23.011704820000162],[-74.9339086579999,23.02570221600014],[-74.96764075399989,23.063869533000016],[-74.97801673099988,23.07294342700011],[-74.99054928299998,23.078558661000116],[-75.10488847599993,23.099554755000053],[-75.12975012899997,23.113999742000104],[-75.14256751199991,23.123683986000074],[-75.21397864499987,23.165472723],[-75.22964433499996,23.17145416900003],[-75.22671464799991,23.181219794000143],[-75.22203528599991,23.190090236000014],[-75.21580969999985,23.19822825700011],[-75.20791581899988,23.206244208000058],[-75.20173092399992,23.206244208000058],[-75.19172115799992,23.19179922100001],[-75.16356360599985,23.179022528000147],[-75.15330969999991,23.165228583000058],[-75.17906653599997,23.168605861000074],[-75.18740800699993,23.17145416900003],[-75.18057206899991,23.159857489],[-75.17027747299989,23.149969794000086],[-75.15831458199995,23.144191799000122],[-75.14647376199991,23.14476146],[-75.13426673099991,23.13727448100003],[-75.11522376199994,23.12238190300017],[-75.10610917899993,23.117499091000113],[-75.09483801999994,23.114976304],[-75.07868404899989,23.113674221000096],[-75.06847083199993,23.116644598],[-75.07510331899991,23.127386786000116],[-75.1321915359999,23.18598053600006],[-75.13963782499987,23.20282623900006],[-75.13585364499994,23.229803778000118],[-75.12743079299992,23.249253648000106],[-75.1183162099999,23.265122789000042],[-75.11294511599996,23.281317450000085],[-75.11375891799989,23.305080471000096],[-75.12035071499994,23.33193594000006],[-75.13166256399992,23.35578034100014],[-75.14647376199991,23.370754299000094],[-75.15005449099986,23.366156317000062],[-75.16075598899991,23.357001044000167],[-75.15904700399989,23.38060130400011],[-75.19688880099994,23.410142320000162],[-75.1948949859999,23.43211497599999],[-75.20836341099988,23.43524811400006],[-75.22057044199994,23.439764716000028],[-75.2268774079999,23.447251695000187],[-75.22223873599995,23.45945872600008],[-75.24250240799998,23.474310614000114],[-75.25007076699993,23.490179755000057],[-75.25633704299989,23.53514232000005],[-75.27684485599994,23.58295319200009],[-75.2864884109999,23.587632554000024],[-75.2930395169999,23.585435289000102],[-75.30016028599994,23.580471096000068],[-75.31159420499989,23.576808986000017],[-75.30475826699987,23.624945380000057],[-75.31045488199996,23.639390367000132],[-75.33141028599991,23.623968817],[-75.32201087099989,23.637193101000136],[-75.31786048099994,23.64154694200012],[-75.31159420499989,23.645005601000108],[-75.3241267569999,23.648667710000083],[-75.33234615799998,23.641506252000124],[-75.34032141799995,23.630804755000113],[-75.35260982999989,23.623968817],[-75.35260982999989,23.631415106000148],[-75.34239661399997,23.641424872000144],[-75.33458411399995,23.65314362200006],[-75.33043372299991,23.66766998900009],[-75.33141028599991,23.685980536000145],[-75.3253474599999,23.684515692000087],[-75.32030188699989,23.681626695000045],[-75.3158259759999,23.67747630400011],[-75.31159420499989,23.67234935099999]]],[[[-74.78726152299993,23.68406810099999],[-74.79369055899994,23.67133209800012],[-74.80378170499992,23.664048570000105],[-74.82494055899991,23.664943752000013],[-74.82494055899991,23.65867747600005],[-74.81871497299994,23.651068427000112],[-74.83674068899998,23.650824286000084],[-74.86074785099993,23.657904364000146],[-74.87279212099995,23.67234935099999],[-74.89085852799985,23.664740302000055],[-74.92389889199988,23.664455471000124],[-74.9416397779999,23.65867747600005],[-74.94538326699983,23.681586005000057],[-74.9386287099999,23.69432200700011],[-74.92308508999989,23.701239325000117],[-74.90005449099993,23.706488348],[-74.84972083199997,23.720119533000126],[-74.81236731699991,23.719671942000147],[-74.79963131399994,23.714544989000117],[-74.77721106699994,23.699652411000088],[-74.78726152299993,23.68406810099999]]],[[[-75.11070716099988,23.818670966000028],[-75.11742102799991,23.815130927000055],[-75.12364661399988,23.83100006700009],[-75.11729895699995,23.845445054000137],[-75.10903886599996,23.84690989800002],[-75.10606848899992,23.842352606000148],[-75.10578365799992,23.831447658000073],[-75.11070716099988,23.818670966000028]]],[[[-76.31895911399995,23.980210679000052],[-76.32518469999991,23.974025783000073],[-76.34019934799993,23.98818594],[-76.35863196499987,24.02366771],[-76.37498938699987,24.046576239],[-76.38727779899995,24.076402085],[-76.39761308499996,24.092515367000075],[-76.40147864499997,24.102932033000126],[-76.40147864499997,24.11737702],[-76.37677975199996,24.101385809000092],[-76.31895911399995,23.980210679000052]]],[[[-74.43455969999985,24.04539622600008],[-74.47549394399987,23.980210679000052],[-74.47850501199989,23.991685289000188],[-74.4767146479999,24.001613674000012],[-74.46865800699996,24.021795966000028],[-74.47691809799994,24.009995835000055],[-74.4912817049999,23.969183661],[-74.49229895699989,23.960394598000118],[-74.55809485599988,23.953558661000116],[-74.55809485599988,23.960394598000118],[-74.5410863919999,23.980047919000086],[-74.52965247299994,24.011053778000118],[-74.52546139199993,24.045721747000087],[-74.53014075399994,24.076402085],[-74.52969316299992,24.10040924700003],[-74.51870683499988,24.11493561400006],[-74.5012914699999,24.123846747000115],[-74.48176021999984,24.13104889500015],[-74.4762263659999,24.135199286000088],[-74.47077389199987,24.140692450000117],[-74.46483313699986,24.143947658000158],[-74.4581599599999,24.141302802000084],[-74.44318600199995,24.116685289000156],[-74.44078528599991,24.11424388200014],[-74.43879146999987,24.10382721600014],[-74.42967688699989,24.08978913],[-74.42711341099988,24.083238023000106],[-74.42772376199994,24.074164130000028],[-74.43321692599997,24.054429429000077],[-74.43455969999985,24.04539622600008]]],[[[-77.80239824099996,24.244452216000084],[-77.80842037699995,24.239447333000058],[-77.82599850199989,24.234686591000138],[-77.83421790299987,24.23456452000009],[-77.8385310539999,24.237941799000012],[-77.8435766269999,24.239691473],[-77.85391191299993,24.234686591000138],[-77.86082923099994,24.22524648600013],[-77.87047278599991,24.197902736000074],[-77.88068600199995,24.18626536700016],[-77.89366614499994,24.177639065000065],[-77.94456946499986,24.154242255000085],[-77.96255449099989,24.15216705900015],[-77.96906490799996,24.15957265800013],[-77.9741918609999,24.17283763200008],[-77.97622636599993,24.186835028000033],[-77.97337805899987,24.19619375200007],[-77.9642227859999,24.197170315000122],[-77.95173092399989,24.193996486000074],[-77.94058183499988,24.193589585000083],[-77.93586178299995,24.20307038000008],[-77.92593339799987,24.2064476580001],[-77.87100175699987,24.240912177000112],[-77.86628170499998,24.24274323100009],[-77.85000566299993,24.251450914000156],[-77.83967037699992,24.254584052000055],[-77.79869544199991,24.254584052000055],[-77.80239824099996,24.244452216000084]]],[[[-77.94188391799987,24.24046458500011],[-77.93586178299995,24.22724030199999],[-77.95026607999992,24.230536200000028],[-77.97557532499988,24.22711823100012],[-77.99046790299994,24.22724030199999],[-78.00133216099991,24.23143138200011],[-78.01292883999994,24.239650783000016],[-78.0169164699999,24.248439846000068],[-78.00475012899992,24.254584052000055],[-77.97874915299985,24.259222723000093],[-77.95287024599992,24.270453192000087],[-77.93219967399992,24.275702216000166],[-77.92162024599986,24.262030341000024],[-77.93639075399994,24.261542059000035],[-77.94261633999992,24.253119208],[-77.94188391799987,24.24046458500011]]],[[[-76.4716690749999,24.227606512000094],[-76.46300208199992,24.213609117000047],[-76.48180091099988,24.21377187700001],[-76.49315344999984,24.21881745000003],[-76.53526770699987,24.268377997000144],[-76.54458574099993,24.283026434000146],[-76.54491126199989,24.295558986000074],[-76.52953040299994,24.28742096600014],[-76.52041581899994,24.27496979400003],[-76.51341712099986,24.260891018],[-76.50389563699986,24.247748114000117],[-76.49205481699991,24.239203192000033],[-76.48131262899989,24.234320380000142],[-76.4716690749999,24.227606512000094]]],[[[-77.74811764199993,24.131781317000062],[-77.7235408189999,24.11737702],[-77.70767167899987,24.12372467700014],[-77.70225989499994,24.112738348000093],[-77.70482337099995,24.094671942000062],[-77.72126217399992,24.066229559000032],[-77.72459876199986,24.053290106000034],[-77.72984778599994,24.042629299000012],[-77.74404863199996,24.03546784100014],[-77.72545325399994,24.030666408000073],[-77.70958411399994,24.043687242000075],[-77.67853756399992,24.10175202000012],[-77.65770423099994,24.123480536],[-77.64785722599991,24.137884833000058],[-77.64386959499984,24.157538153000118],[-77.6427302729999,24.182806708000058],[-77.63914954299995,24.206488348000093],[-77.62734941299996,24.22109609600001],[-77.60753333199995,24.21824778900016],[-77.5926000639999,24.19822825699999],[-77.5804744129999,24.17316315300009],[-77.56932532499991,24.15525950700014],[-77.55663001199994,24.141058661000116],[-77.5494685539999,24.12592194200012],[-77.54621334499983,24.108303127000013],[-77.54430091099988,24.07526276200015],[-77.53917395699997,24.054144598000118],[-77.53799394399994,24.04539622600008],[-77.53917395699997,24.0339216170001],[-77.54430091099988,24.01471588700015],[-77.54548092399992,24.004380601000047],[-77.54222571499986,23.998846747000027],[-77.52818762899992,23.979885158000044],[-77.52497311099995,23.970363674000126],[-77.52818762899992,23.958563544000143],[-77.5352270169999,23.950588283000013],[-77.54222571499986,23.94562409100014],[-77.54548092399992,23.94269440300003],[-77.55577551999994,23.938299872000144],[-77.5775447259999,23.937811591000138],[-77.59707597599987,23.930365302],[-77.60069739499994,23.90509674700003],[-77.56574459499991,23.927964585000137],[-77.54503333199992,23.936590887000033],[-77.52497311099995,23.933050848000065],[-77.51650956899991,23.918850002000156],[-77.5226130849999,23.88100820500001],[-77.5174861319999,23.864162502000013],[-77.53457597599993,23.82855866100014],[-77.54792232999995,23.822251695000105],[-77.57274329299992,23.829413153000147],[-77.56944739499995,23.81683991100006],[-77.55134029899995,23.803127346000124],[-77.54548092399992,23.788397528000033],[-77.54694576699987,23.774969794000143],[-77.55260169199997,23.760239976000047],[-77.55980383999989,23.74770742400015],[-77.56590735599988,23.740668036],[-77.5973201159999,23.730617580000015],[-77.62120520699987,23.740057684000035],[-77.64297441299992,23.754868882],[-77.66832434799989,23.76113515800013],[-77.65111243399988,23.74192942899999],[-77.65143795499989,23.733140367000132],[-77.66087805899991,23.72016022300012],[-77.66832434799989,23.72016022300012],[-77.68492591099994,23.741441148000106],[-77.71458899599989,23.74872467700011],[-77.77818762899994,23.74681224200016],[-77.74404863199996,23.76113515800013],[-77.74909420499989,23.77826569200009],[-77.72769120999992,23.77773672100001],[-77.67516028599991,23.76113515800013],[-77.66905676999991,23.779242255000053],[-77.65892493399984,23.792059637000094],[-77.64500891799989,23.801459052000112],[-77.59129798099991,23.824896552],[-77.57616126199991,23.835842190000065],[-77.57616126199991,23.847113348000146],[-77.59406490799995,23.853461005],[-77.6116430329999,23.844142971000124],[-77.62857011599988,23.83026764500015],[-77.64476477799994,23.823187567],[-77.70311438699994,23.788397528000033],[-77.69920813699994,23.78563060099999],[-77.69627844999991,23.782212632000082],[-77.72020423099988,23.78481679900007],[-77.7442927729999,23.816392320000073],[-77.76455644399991,23.823187567],[-77.69884192599991,23.845119533000016],[-77.66559811099991,23.863470770000063],[-77.66087805899991,23.884670315000065],[-77.6752009759999,23.87051015800013],[-77.69481360599985,23.864691473000093],[-77.74779212099989,23.864162502000013],[-77.76207434799989,23.861558335000108],[-77.77424068899995,23.856756903000033],[-77.78587805899988,23.85370514500012],[-77.79869544199991,23.85667552300005],[-77.80679277299993,23.864691473000093],[-77.81285559799994,23.876654364000117],[-77.82746334499987,23.943915106000144],[-77.82876542899996,23.969183661],[-77.82258053299998,23.980210679000052],[-77.8372289699999,23.984808661],[-77.83775794199997,23.99591705900012],[-77.83348548099985,24.00958893400015],[-77.83348548099985,24.021795966000028],[-77.84483801999993,24.03339264500015],[-77.85863196499994,24.040961005],[-77.86652584499993,24.047552802000055],[-77.8600968089999,24.055975653000118],[-77.8600968089999,24.062730210000055],[-77.87962805899987,24.073960679000052],[-77.94204667899993,24.096869208000054],[-77.9361059239999,24.104478257],[-77.92906653599994,24.111232815000122],[-77.91470292899987,24.102525132000054],[-77.90908769399996,24.105292059000092],[-77.90827389199987,24.112616278000118],[-77.90855872299989,24.11737702],[-77.90794837099992,24.126776434000035],[-77.91079667899987,24.13133372599999],[-77.91100012899992,24.135809637000037],[-77.90233313699991,24.14472077000009],[-77.89216061099998,24.14964427300005],[-77.86510169199994,24.15794505400011],[-77.85391191299993,24.165838934000092],[-77.84992428299995,24.174302476000136],[-77.84341386599996,24.198879299000126],[-77.83967037699992,24.206732489000117],[-77.80540930899986,24.208929755000113],[-77.79246985599985,24.213609117000047],[-77.7823787099999,24.2215843770001],[-77.77887936099988,24.227850653000033],[-77.77672278599991,24.23558177300005],[-77.77074133999989,24.247748114000117],[-77.75572669199994,24.25926341400016],[-77.71442623599992,24.275091864],[-77.70311438699994,24.28872304900015],[-77.67516028599991,24.302964585000055],[-77.66584225199995,24.289496161000088],[-77.65851803299995,24.273504950000174],[-77.65021725199998,24.260158596000068],[-77.63792883999992,24.254584052000055],[-77.63121497299997,24.249090887000033],[-77.64073645699996,24.237290757000054],[-77.7024633449999,24.19025299700006],[-77.7269587879999,24.17780182500003],[-77.7577205069999,24.172593492000132],[-77.7577205069999,24.165838934000092],[-77.73997962099989,24.164496161],[-77.73253333199992,24.157049872000027],[-77.73692786399991,24.148627020000063],[-77.75462805899991,24.14472077000009],[-77.75853430899991,24.1407738300001],[-77.74811764199993,24.131781317000062]]],[[[-77.84862219999985,24.32758209800006],[-77.86729895699995,24.319484768000123],[-77.88369706899994,24.327337958000115],[-77.88361568899995,24.341131903000033],[-77.8692113919999,24.346828518],[-77.83975175699989,24.35008372600005],[-77.83283443899992,24.349554755000085],[-77.83702551999994,24.342189846000068],[-77.84862219999985,24.32758209800006]]],[[[-77.68244381399992,24.352769273000135],[-77.68260657499988,24.34393952000006],[-77.69033769399988,24.338446356000063],[-77.70059160099993,24.341498114000146],[-77.71125240799995,24.34747955900015],[-77.71983801999997,24.350775458],[-77.73753821499984,24.349676825000145],[-77.74803626199993,24.34593333500011],[-77.76768958199989,24.326605536],[-77.78685462099986,24.31460195500007],[-77.79979407499985,24.317287502000127],[-77.80443274599989,24.327215887000037],[-77.79869544199991,24.337103583000058],[-77.7766820949999,24.34715403900013],[-77.75804602799991,24.359361070000105],[-77.73924719999987,24.367132880000028],[-77.71922766799992,24.37173086100013],[-77.70311438699994,24.370591539000102],[-77.69615637899994,24.367092190000037],[-77.68809973899991,24.360785223000065],[-77.68244381399992,24.352769273000135]]],[[[-76.77257239499988,24.51911041900003],[-76.7789200509999,24.51434967700014],[-76.7892960279999,24.518500067000087],[-76.79507402299987,24.53143952000009],[-76.7923884759999,24.54913971600008],[-76.78465735599988,24.552964585],[-76.77749589799993,24.543850002000013],[-76.77432206899988,24.53864166900003],[-76.77306067599997,24.531724351000108],[-76.77257239499988,24.51911041900003]]],[[[-75.31468665299988,24.217352606000148],[-75.30699622299994,24.2025414080001],[-75.2904353509999,24.14472077000009],[-75.33580481699988,24.158514716000084],[-75.35643469999991,24.160142320000105],[-75.37987219999988,24.158392645000035],[-75.42511959499993,24.149969794000143],[-75.44090735599985,24.142035223],[-75.4584041009999,24.12791575700008],[-75.48314368399988,24.12571849200016],[-75.5099177729999,24.142075914000188],[-75.52131100199995,24.162583726000047],[-75.49962317599997,24.172593492000132],[-75.48493404899997,24.176214911],[-75.46361243399991,24.185614325000117],[-75.44391842399995,24.19871653900016],[-75.43390865799998,24.213609117000047],[-75.41466223899994,24.213120835000055],[-75.40575110599991,24.240301825000145],[-75.4100642569999,24.272894598000036],[-75.43073482999992,24.28872304900015],[-75.45995032499985,24.294582424000012],[-75.48058020699997,24.30939362200017],[-75.53400631399992,24.38922760600009],[-75.54190019399988,24.417466539000074],[-75.56110592399995,24.443426825000145],[-75.56550045499992,24.45693594000012],[-75.57152258999994,24.48875560100005],[-75.58849036399991,24.51264069200012],[-75.6143692699999,24.526597398000106],[-75.64736894399987,24.528957424000154],[-75.64346269399988,24.539455471000124],[-75.64264889199987,24.551499742000047],[-75.64415442599991,24.564154364000032],[-75.64736894399987,24.576117255000142],[-75.65274003799993,24.588364976000104],[-75.65782630099994,24.59292226800015],[-75.66470292899987,24.596014716000052],[-75.70885169199994,24.63133372600008],[-75.74107825399989,24.646144924000126],[-75.74982662699998,24.65180084800012],[-75.75658118399991,24.660305080000153],[-75.75755774599989,24.66791413],[-75.75300045499992,24.67601146000011],[-75.73216712099986,24.6986351580001],[-75.72386633999989,24.701849677000055],[-75.70885169199994,24.70018138200014],[-75.70221920499989,24.69574616100006],[-75.67536373599988,24.672308661000088],[-75.64932206899994,24.66307200700011],[-75.63731848899991,24.656968492000132],[-75.62633216099992,24.645005601000022],[-75.61856035099994,24.581244208000058],[-75.61261959499993,24.562445380000028],[-75.6028539699999,24.551906643000148],[-75.58682206899991,24.53851959800015],[-75.57201087099992,24.522691148000106],[-75.5599666009999,24.49144114800005],[-75.53221594999994,24.444891669000114],[-75.47606360599991,24.370591539000102],[-75.45811926999988,24.357326565000065],[-75.41901607999992,24.337836005],[-75.40038001199994,24.323472398000106],[-75.37559973899988,24.27594635600012],[-75.36961829299986,24.268255927],[-75.35850989499994,24.26141998900006],[-75.31468665299988,24.217352606000148]]],[[[-77.3260798819999,25.07933177299999],[-77.30207271999984,25.066107489000146],[-77.2638240229999,25.058091539000102],[-77.27472896999987,25.046087958000086],[-77.37950598899991,25.001532294000086],[-77.40367591099994,25.00214264500015],[-77.43561764199984,25.014878648000106],[-77.4413956369999,25.006537177000137],[-77.45287024599995,24.99461497599999],[-77.46678626199991,24.987005927000055],[-77.47996985599988,24.99135976800015],[-77.49510657499988,24.999335028000086],[-77.51447506399998,25.001166083000086],[-77.53294837099992,25.000718492000157],[-77.54548092399992,25.001898505000028],[-77.5618790359999,25.01886627800017],[-77.55101477799994,25.038031317000147],[-77.52717037699995,25.054388739000057],[-77.50450598899991,25.063299872000087],[-77.48985755099989,25.065619208000054],[-77.45604407499991,25.07697174700003],[-77.44082597599993,25.078517971000064],[-77.39806067599991,25.07697174700003],[-77.35562089799996,25.084051825000085],[-77.33999589799987,25.08380768400015],[-77.3260798819999,25.07933177299999]]],[[[-78.10704505099994,25.163072007000107],[-78.09044348899991,25.15949127800003],[-78.07518469999994,25.165350653000175],[-78.06045488199992,25.176336981000034],[-78.04515540299988,25.18309153900016],[-78.02798417899996,25.176255601000047],[-78.01524817599989,25.16779205900012],[-78.00121008999994,25.160956122000087],[-77.98766028599988,25.15224844],[-77.97687740799998,25.13841380400011],[-77.99176998599992,25.122788804000137],[-77.99429277299996,25.105169989],[-77.98639889199987,25.088771877000013],[-77.96996008999989,25.07697174700003],[-77.98253333199997,25.037502346000068],[-77.98656165299994,25.012884833000058],[-77.98058020699992,25.001898505000028],[-77.96226966099997,24.999335028000086],[-77.94725501199994,24.991156317],[-77.93419348899994,24.976223049000154],[-77.87336178299992,24.838568427000027],[-77.82917232999995,24.77822500200007],[-77.8125707669999,24.76190827000015],[-77.79556230399993,24.75482819200009],[-77.78351803299992,24.748236395],[-77.7464900379999,24.714504299000012],[-77.73721269399994,24.70018138200014],[-77.73615475199989,24.68219635600009],[-77.73778235599991,24.657700914000156],[-77.74181067599996,24.634711005],[-77.74779212099989,24.62107982000005],[-77.75357011599995,24.60203685100005],[-77.74547278599994,24.577582098],[-77.7235408189999,24.535101630000142],[-77.71873938699991,24.499823309000092],[-77.72789466099991,24.47418854400003],[-77.75108801999993,24.45848216400016],[-77.7887263659999,24.453192450000085],[-77.80410722599996,24.448797919000114],[-77.81456458199993,24.43870677300005],[-77.82331295499992,24.427313544000086],[-77.83348548099985,24.41909414300009],[-77.86384029899995,24.41543203300013],[-77.87169348899991,24.406805731000034],[-77.8600968089999,24.3849144550001],[-77.87205969999992,24.37376536700016],[-77.90855872299989,24.350775458],[-77.9266251289999,24.345770575000145],[-77.96141516799986,24.345526434000092],[-77.97337805899987,24.340521552000055],[-78.01276607999998,24.31415436400006],[-78.01781165299991,24.30609772300012],[-78.01577714799987,24.297349351000047],[-78.01244055899986,24.28925202000012],[-78.01170813699991,24.28188711100013],[-78.01781165299991,24.275051174],[-78.02745520699997,24.272853908000044],[-78.03697669199997,24.27594635600012],[-78.04552161399988,24.2819684920001],[-78.0519099599999,24.28872304900015],[-78.06330318899998,24.316229559000092],[-78.06969153599991,24.350409247000172],[-78.08014889199987,24.379461981000148],[-78.1034236319999,24.391750393],[-78.13414466099988,24.403957424000097],[-78.14085852799994,24.433498440000147],[-78.1344294909999,24.501613674000097],[-78.15245520699995,24.48875560100005],[-78.16478430899988,24.475409247000144],[-78.18004309799994,24.464911200000174],[-78.20645097599996,24.46063873900006],[-78.22642981699991,24.46548086100013],[-78.35163326699987,24.53046295800003],[-78.41148841099991,24.58104075700002],[-78.43053137899989,24.60179271],[-78.44298255099991,24.624497789000046],[-78.4295955069999,24.627508856000148],[-78.4088435539999,24.636175848000146],[-78.3898005849999,24.646714585000026],[-78.38149980399993,24.655503648000078],[-78.37840735599985,24.669419664000046],[-78.37108313699986,24.66815827000015],[-78.36180579299989,24.661444403000086],[-78.35358639199988,24.659247137000094],[-78.34284420499998,24.66535065300009],[-78.33507239499988,24.672837632000054],[-78.3333227199999,24.682114976000108],[-78.34056555899991,24.69342682500009],[-78.32746334499984,24.710638739000032],[-78.31143144399994,24.71010976800012],[-78.29792232999998,24.696844794000114],[-78.2921443349999,24.67601146000011],[-78.29332434799994,24.658840236000103],[-78.2970271479999,24.64378489799999],[-78.30345618399991,24.630316473],[-78.31261145699997,24.617661851000136],[-78.33014889199993,24.60643138200011],[-78.33311926999994,24.60398997599999],[-78.33112545499989,24.594142971000068],[-78.3263240229999,24.585394598],[-78.3189998039999,24.581732489000146],[-78.29206295499992,24.597357489000117],[-78.27725175699996,24.601263739000114],[-78.26911373599995,24.609198309000092],[-78.27163652299987,24.63133372600008],[-78.25218665299988,24.622788804000052],[-78.25202389199988,24.60480377800009],[-78.25723222599989,24.58380768400015],[-78.25426184799989,24.566148179000052],[-78.23770097599993,24.556870835],[-78.22826087099989,24.569484768000066],[-78.22594153599994,24.59153880400008],[-78.23070227799994,24.610825914000102],[-78.22109941299996,24.606919664000102],[-78.21068274599986,24.601263739000114],[-78.20173092399995,24.598781643],[-78.19652258999994,24.60398997599999],[-78.1971329419999,24.618353583000054],[-78.2044978509999,24.628322658000158],[-78.21458899599986,24.63629791900003],[-78.22325598899997,24.645005601000022],[-78.22451738199987,24.650946356000034],[-78.2222387359999,24.66608307500003],[-78.22325598899997,24.672308661000088],[-78.22935950399994,24.679754950000145],[-78.24498450399992,24.69285716400013],[-78.25112870999989,24.70018138200014],[-78.25511633999989,24.71417877800009],[-78.25788326699984,24.72992584800015],[-78.26402747299991,24.739325262000147],[-78.27847245999988,24.734361070000105],[-78.26789303299992,24.726060289000046],[-78.26414954299989,24.710516669000057],[-78.26480058499993,24.672308661000088],[-78.27424068899995,24.682928778000033],[-78.28062903599988,24.69920482000005],[-78.28844153599988,24.71417877800009],[-78.30235755099994,24.720689195000162],[-78.30406653599997,24.728216864000146],[-78.30113684799994,24.74534739799999],[-78.2921443349999,24.775336005000142],[-78.27684485599985,24.789984442000147],[-78.2549535799999,24.806463934000035],[-78.23961341099987,24.82636139500012],[-78.24372311099992,24.85101959800012],[-78.23424231699991,24.857123114000032],[-78.20811926999997,24.861802476000136],[-78.20274817599991,24.86782461100013],[-78.19969641799992,24.88043854400003],[-78.18602454299989,24.90477122599999],[-78.1829320949999,24.91868724200016],[-78.17393958199997,24.919623114000146],[-78.17747962099986,24.927435614000146],[-78.18553626199989,24.93789297100004],[-78.18968665299992,24.946682033000073],[-78.18761145699992,24.95457591400007],[-78.18224036399994,24.968491929000137],[-78.17454993399993,24.98167552299999],[-78.16551673099991,24.987616278000118],[-78.15770423099994,25.00018952],[-78.15990149599992,25.028306382],[-78.16926021999986,25.073228257],[-78.18004309799994,25.104925848000065],[-78.20091712099992,25.146429755000057],[-78.21434485599991,25.184637762000122],[-78.20274817599991,25.206732489],[-78.18590247299991,25.205877997000087],[-78.14956620999989,25.199530341000166],[-78.1344294909999,25.193670966000028],[-78.12218176999994,25.18317291900014],[-78.1153458319999,25.17202383000013],[-78.10704505099994,25.163072007000107]]],[[[-77.84215247299994,25.4232445330001],[-77.85204016799986,25.412746486000046],[-77.86412512899997,25.407904364000146],[-77.8795059889999,25.407863674000154],[-77.88841712099995,25.408758856000144],[-77.90672766799992,25.40908437700007],[-77.90587317599991,25.41095612200006],[-77.90001380099997,25.415472723],[-77.89240475199992,25.418687242000047],[-77.88630123599992,25.419175523000046],[-77.87482662699989,25.41828034100014],[-77.85912024599992,25.419256903000033],[-77.84727942599997,25.42584870000009],[-77.83958899599995,25.43496328300007],[-77.83682206899987,25.434515692],[-77.84215247299994,25.4232445330001]]],[[[-79.26650956899994,25.53782786700016],[-79.26211503799993,25.528062242000047],[-79.26431230399993,25.52879466400016],[-79.2687068349999,25.5385602890001],[-79.26650956899994,25.53782786700016]]],[[[-79.27940833199995,25.55166250200007],[-79.27989661399992,25.547796942000062],[-79.28892981699993,25.559149481000063],[-79.28844153599994,25.562974351000047],[-79.27940833199995,25.55166250200007]]],[[[-76.70230058499993,25.563950914000042],[-76.68675696499994,25.56207916900017],[-76.67520097599993,25.5567894550001],[-76.68614661399988,25.54132721600017],[-76.69098873599995,25.52594635600003],[-76.6913142569999,25.50885651200018],[-76.68887285099996,25.487860419000143],[-76.6731664699999,25.506659247000083],[-76.66197669199988,25.497259833000054],[-76.65298417899996,25.47797272300012],[-76.64391028599997,25.46735260600009],[-76.62458248599992,25.462469794000025],[-76.49762936099992,25.373480536000116],[-76.46092688699991,25.354559637000094],[-76.41454016799993,25.344468492000132],[-76.36827551999994,25.34271881700012],[-76.3516332669999,25.338609117000157],[-76.33576412699998,25.327093817000144],[-76.28416907499991,25.26190827000012],[-76.22370357999989,25.208075262000094],[-76.16128495999993,25.165716864],[-76.13125566299989,25.147772528000147],[-76.11827551999991,25.13393789300015],[-76.11290442599994,25.114894924000154],[-76.12132727799991,25.030096747000087],[-76.1255997389999,25.014064846000096],[-76.12657630099989,25.005316473000033],[-76.13060462099995,24.994859117000047],[-76.13975989499994,24.988470770000035],[-76.14928137899992,24.98452383000013],[-76.15444902299993,24.981390692000062],[-76.15794837099992,24.962144273000106],[-76.15355383999994,24.94432200700014],[-76.14085852799987,24.91868724200016],[-76.13695227799988,24.902167059000092],[-76.14085852799987,24.854437567000115],[-76.14614824099993,24.83421458500011],[-76.1696671209999,24.799790757],[-76.17495683499986,24.785874742000104],[-76.17747962099989,24.71580638200011],[-76.1739802729999,24.67731354400003],[-76.16128495999993,24.645005601000022],[-76.19448808499995,24.658392645],[-76.21178137899994,24.69025299700003],[-76.22264563699984,24.726955471000124],[-76.23643958199995,24.75482819200009],[-76.2530004549999,24.765773830000157],[-76.29670162699992,24.782049872000087],[-76.31525631399991,24.792669989000117],[-76.33633378799993,24.81492747599999],[-76.33372962099995,24.824164130000142],[-76.31745357999992,24.82526276200018],[-76.2193497389999,24.810044664000102],[-76.21275794199994,24.81273021],[-76.20811926999991,24.819159247000087],[-76.20396887899997,24.826890367000104],[-76.19884192599994,24.833685614000117],[-76.18244381399995,24.848781643000123],[-76.17764238199996,24.85765208499999],[-76.17495683499986,24.871527411000088],[-76.17577063699989,24.89451732000005],[-76.18394934799991,24.88930898600016],[-76.19542395699995,24.873277085000083],[-76.20596269399991,24.864081122000087],[-76.21202551999991,24.875392971000093],[-76.21092688699986,24.90102773600013],[-76.20225989499997,24.946682033000073],[-76.19660396999987,24.96344635600009],[-76.19383704299992,24.96743398600007],[-76.18797766799987,24.97394440300017],[-76.1592504549999,24.99819570500007],[-76.15444902299993,25.005316473000033],[-76.14671790299991,25.06244538],[-76.14704342399993,25.08380768400015],[-76.16494706899991,25.129828192],[-76.19635982999992,25.15428294500005],[-76.23228919199991,25.17096588700018],[-76.26374264199984,25.193670966000028],[-76.34626217399995,25.303534247000083],[-76.37157141799989,25.32249583500011],[-76.40953528599991,25.33519114799999],[-76.48961341099997,25.351304429000052],[-76.53083248599992,25.370428778000033],[-76.59121660099996,25.422552802000055],[-76.63052324099996,25.43325429900007],[-76.65233313699991,25.43537018400009],[-76.69367428299995,25.444769598000036],[-76.71275794199991,25.446926174],[-76.73428300699992,25.441839911],[-76.76939856699991,25.42405833500011],[-76.78449459499993,25.42641836100016],[-76.75951087099992,25.450018622000087],[-76.74551347599993,25.48924388200011],[-76.72984778599997,25.563625393],[-76.73668372299989,25.563625393],[-76.70230058499993,25.563950914000042]]],[[[-79.24608313699986,25.76386139500006],[-79.24323482999992,25.742905992000104],[-79.24592037699989,25.734564520000145],[-79.24803626199991,25.73895905200014],[-79.25462805899988,25.736029364000032],[-79.26695716099991,25.73248932500003],[-79.2687068349999,25.741603908000016],[-79.26170813699993,25.756659247000027],[-79.26553300699996,25.761623440000093],[-79.27904212099992,25.74998607000016],[-79.28624426999994,25.741522528000033],[-79.29157467399992,25.73383209800012],[-79.29385331899991,25.720689195000077],[-79.28331458199995,25.712795315000093],[-79.26813717399995,25.707098700000117],[-79.25804602799988,25.69904205900015],[-79.2618302069999,25.69375234600001],[-79.28917395699997,25.697658596000096],[-79.3006485669999,25.697943427000112],[-79.30426998599997,25.70233795800003],[-79.30125891799987,25.716864325000145],[-79.29381262899992,25.736029364000032],[-79.28034420499992,25.757228908000013],[-79.2610570949999,25.771918036],[-79.25007076699984,25.774725653000147],[-79.24608313699986,25.76386139500006]]],[[[-77.82087154899996,25.716620184000092],[-77.81920325399996,25.70758698100009],[-77.83145097599993,25.708685614000146],[-77.84406490799992,25.72207265800013],[-77.8600968089999,25.748521226000108],[-77.88048255099989,25.768988348000093],[-77.8873184889999,25.78143952],[-77.88068600199995,25.789536851000136],[-77.86803137899997,25.787420966000028],[-77.8582657539999,25.777289130000057],[-77.82087154899996,25.716620184000092]]],[[[-77.54230709499984,26.29897695500013],[-77.57274329299992,26.268703518000123],[-77.56704667899993,26.29100169500016],[-77.57217363199993,26.30487702000006],[-77.57933508999989,26.318019924000126],[-77.57957923099991,26.337591864],[-77.57038326699987,26.332709052000112],[-77.54356848899992,26.312486070000105],[-77.53799394399994,26.306586005000085],[-77.54230709499984,26.29897695500013]]],[[[-77.23761959499987,26.474066473],[-77.23607337099992,26.47036367400007],[-77.23656165299991,26.469387111000103],[-77.23843339799987,26.470160223000033],[-77.24209550699993,26.470607815],[-77.24299068899992,26.46906159100017],[-77.24071204299995,26.467352606000144],[-77.24046790299991,26.466620184000035],[-77.24250240799992,26.46621328300013],[-77.24351966099991,26.454413153000147],[-77.24103756399995,26.44281647300015],[-77.24665279899997,26.438666083],[-77.25055904899993,26.438218492000104],[-77.25454667899993,26.438137111000046],[-77.26329505099991,26.442206122000087],[-77.26744544199994,26.453273830000043],[-77.27232825399992,26.46067942900011],[-77.27822831899996,26.46580638200011],[-77.27668209499993,26.469956773000078],[-77.27236894399991,26.46946849200016],[-77.26756751199991,26.472560940000065],[-77.26183020699995,26.477850653000033],[-77.25377356699991,26.48004791900003],[-77.24425208199992,26.478461005],[-77.23761959499987,26.474066473]]],[[[-77.84707597599993,26.59487539300015],[-77.84715735599991,26.59052155200005],[-77.8518774079999,26.583319403000033],[-77.85558020699995,26.57273997599999],[-77.86192786399988,26.56411367400007],[-77.86839758999989,26.56386953300013],[-77.8705134759999,26.56671784100017],[-77.87287350199995,26.57054271],[-77.88658606699997,26.585598049000012],[-77.89110266799992,26.59406159100014],[-77.89313717399995,26.60260651200015],[-77.88780676999988,26.606594143000123],[-77.8575740229999,26.611761786000145],[-77.85309811099992,26.607001044000143],[-77.86241614499997,26.596625067000147],[-77.86449133999989,26.593654690000122],[-77.8570857409999,26.59784577000006],[-77.85383053299995,26.600775458],[-77.84845943899988,26.60553620000009],[-77.83751380099991,26.61351146000014],[-77.8346248039999,26.610541083000115],[-77.84361731699991,26.600734768],[-77.84707597599993,26.59487539300015]]],[[[-78.52025729599991,26.728995355000038],[-78.43781648399992,26.699821105000023],[-78.41705909299993,26.704749029000094],[-78.37096106699988,26.694525458],[-78.31998377999986,26.68652744500012],[-78.2870819199999,26.685492059000165],[-78.2736151879999,26.703582975000145],[-78.25292968999989,26.712942463000058],[-78.2216848479999,26.700293688000144],[-78.20264129899994,26.6971586800001],[-78.16705098299985,26.710400108000112],[-78.1189482079999,26.70432828700011],[-78.08722896999984,26.713120835],[-78.05540930899991,26.726019598],[-78.03514563699989,26.728583075000113],[-77.97166907499988,26.72955963700018],[-77.95628821499994,26.735419012000037],[-77.94684811099992,26.74656810100005],[-77.94005286399991,26.75946686400006],[-77.93114173099984,26.77049388200011],[-77.91539466099991,26.776434637000033],[-77.91307532499984,26.75787995000003],[-77.91808020699989,26.737494208000058],[-77.92080644399994,26.71694570500001],[-77.90294348899988,26.681586005],[-77.90217037699995,26.662420966000028],[-77.91055253799993,26.64630768400015],[-77.92906653599994,26.63922760600009],[-77.93626868399988,26.641791083],[-77.95319576699987,26.654852606000176],[-77.96255449099989,26.659735419000143],[-77.97541256399991,26.661769924000065],[-78.04076087099989,26.65843333500005],[-78.10033118399991,26.646063544000114],[-78.2377062009999,26.621325470000087],[-78.29338578699986,26.621300259000023],[-78.50340735599991,26.573065497000087],[-78.52147376199994,26.57037995000003],[-78.5401505199999,26.565008856000148],[-78.5704646479999,26.54157135600009],[-78.59007727799988,26.536200262000037],[-78.60761892799991,26.525734450000144],[-78.62896577499993,26.51610211700013],[-78.64644049499992,26.50485342900005],[-78.65577003499993,26.49778847],[-78.67671736599993,26.49613150300003],[-78.68613184999987,26.491910953000158],[-78.72696836599988,26.495445692000047],[-78.76683934699984,26.508104203000173],[-78.79108864499995,26.529699767000167],[-78.83455712699987,26.553651171000027],[-78.93959961399986,26.650787787000112],[-78.98729407499985,26.686224677000112],[-78.99787350199989,26.701320705000015],[-78.98713131399998,26.701483466000084],[-78.97838294199991,26.699408270000063],[-78.97093665299994,26.69489166900011],[-78.96434485599985,26.68768952000006],[-78.83580481699991,26.61456940300009],[-78.8060603509999,26.577826239],[-78.78622245599983,26.581143507000135],[-78.77037512399994,26.583324784000027],[-78.7381550929999,26.570808546000066],[-78.7142887789999,26.570519948000154],[-78.69172287099991,26.57997003900003],[-78.67125234799991,26.592918201000128],[-78.65751282199989,26.598588549000066],[-78.64578727799996,26.605096792000055],[-78.63797875099993,26.609730986000056],[-78.63425147899991,26.61781943000007],[-78.62161113499988,26.627013544000146],[-78.61901136299988,26.639517576000017],[-78.60443465099988,26.650534740000026],[-78.59219252499992,26.673048306000123],[-78.5736332699999,26.684159293],[-78.5759422349999,26.694769508000135],[-78.60000566299988,26.70819733300011],[-78.64159094999985,26.714992580000157],[-78.63467363199993,26.72797272300015],[-78.60741126199986,26.75592682500009],[-78.60155188699991,26.76825592700011],[-78.59382076699988,26.81053294500005],[-78.57477779899992,26.798285223000093],[-78.55719967399996,26.77855052300005],[-78.54426021999987,26.757025458000115],[-78.53917395699995,26.739203192000062],[-78.52025729599991,26.728995355000038]]],[[[-77.77448482999992,26.927232164000046],[-77.68236243399994,26.90843333499999],[-77.6297908189999,26.904201565000065],[-77.6068416009999,26.920396226000108],[-77.55357825399994,26.898016669000082],[-77.51130123599992,26.869533596000096],[-77.32795162699993,26.709133205000015],[-77.30711829299989,26.69643789300015],[-77.28368079299989,26.68968333500011],[-77.25059973899994,26.68768952000006],[-77.25914466099988,26.67670319200012],[-77.27261308499995,26.673000393000063],[-77.30524654899992,26.67401764500012],[-77.2905981109999,26.646958726000022],[-77.26988684799989,26.625067450000145],[-77.24388587099992,26.610500393000123],[-77.18276933499996,26.600287177],[-77.15526282499991,26.58808014500012],[-77.1072485019999,26.55670807500009],[-77.07054602799991,26.538519598],[-77.05882727799994,26.529364325000117],[-77.04979407499994,26.516343492000132],[-77.04230709499987,26.498032945000162],[-77.0421443349999,26.481838283000016],[-77.05540930899991,26.47479889500015],[-77.05858313699987,26.46784088700015],[-77.05882727799994,26.423244533000073],[-77.05540930899991,26.406927802000055],[-77.04625403599992,26.396307684000092],[-77.03294837099992,26.38987864799999],[-77.01720130099997,26.38597239800002],[-77.0300186839999,26.362738348000065],[-77.03156490799995,26.355292059000092],[-77.02928626199989,26.344427802000112],[-77.02440344999991,26.337591864],[-77.01943925699996,26.332709052000112],[-77.01720130099997,26.3276227890001],[-77.0161026679999,26.319525458000086],[-77.01475989499993,26.315659898000078],[-77.01650956899994,26.311712958],[-77.02472896999993,26.303452867000185],[-77.03270423099988,26.29743073100009],[-77.04100501199986,26.29376862200003],[-77.05882727799994,26.290432033000016],[-77.05675208199992,26.294663804000137],[-77.05199133999992,26.30963776200015],[-77.0844620429999,26.30613841400016],[-77.11530514199985,26.290432033000016],[-77.14264889199984,26.268255927000137],[-77.16494706899988,26.245428778000033],[-77.17438717399989,26.22068919500005],[-77.18321692599994,26.144273179000137],[-77.18171139199988,26.125311591000028],[-77.19220943899995,26.068996486000156],[-77.18716386599993,25.98847077],[-77.1907445949999,25.916327216000084],[-77.22667395699989,25.885077216000024],[-77.25304114499988,25.897609768000038],[-77.2762345039999,25.926011460000055],[-77.29271399599992,25.957261460000108],[-77.29898027299996,25.97793203300013],[-77.31505286399994,25.990952867000104],[-77.3881729809999,26.005438544000143],[-77.40827389199987,26.029730536000145],[-77.39207923099991,26.02985260600012],[-77.37393144399991,26.035467841000028],[-77.35912024599995,26.04588450700002],[-77.34788977799994,26.070624091000084],[-77.33560136599988,26.073675848000065],[-77.32103430899986,26.07518138200011],[-77.30894934799994,26.080633856000148],[-77.27236894399991,26.118312893000123],[-77.24893144399994,26.136053778000033],[-77.22329667899987,26.14581940300017],[-77.22980709499987,26.15399811400009],[-77.23379472599993,26.16225820500007],[-77.23582923099988,26.171698309000092],[-77.23631751199986,26.18366120000003],[-77.24034583199992,26.190578518000038],[-77.24876868399988,26.19651927300005],[-77.25641842399992,26.20392487200003],[-77.25804602799992,26.21474844000012],[-77.25182044199995,26.226019598000036],[-77.24250240799992,26.23452383000013],[-77.23387610599991,26.24404531500015],[-77.2301326159999,26.258734442000147],[-77.23058020699989,26.285101630000142],[-77.23338782499994,26.298000393000066],[-77.25035559799991,26.313055731000176],[-77.21861731699994,26.355292059000092],[-77.21987870999996,26.36493561400006],[-77.22862708199995,26.376939195000187],[-77.2301326159999,26.447455145000063],[-77.21544348899988,26.447699286000116],[-77.20457923099991,26.453314520000035],[-77.19619706899994,26.462876695000105],[-77.18919837099986,26.47479889500015],[-77.18809973899991,26.47980377800009],[-77.18919837099986,26.498968817000144],[-77.18643144399991,26.505926825000028],[-77.18016516799986,26.51007721600008],[-77.1730037099999,26.51284414300012],[-77.16808020699995,26.515773830000157],[-77.15794837099989,26.53143952000012],[-77.15355383999992,26.54946523600016],[-77.16071529899995,26.564195054000052],[-77.19615637899994,26.57265859600001],[-77.21955318899992,26.582424221000124],[-77.31216386599989,26.594671942],[-77.32974199099993,26.604559637000122],[-77.34097245999993,26.621527411],[-77.35301673099985,26.646063544000114],[-77.3484594389999,26.65216705900009],[-77.34732011599988,26.660305080000015],[-77.35008704299992,26.669012762000094],[-77.36143958199992,26.682318427000112],[-77.36656653599991,26.693019924000126],[-77.3701065749999,26.697902736000017],[-77.37535559799989,26.699530341000028],[-77.3800349599999,26.69570547100004],[-77.38491777299987,26.690334377000067],[-77.39085852799991,26.68768952000006],[-77.41124426999988,26.689398505000085],[-77.42699133999994,26.695135809000146],[-77.4339900379999,26.70551178600006],[-77.42813066299988,26.721177476000108],[-77.44469153599994,26.755072333000083],[-77.49022376199991,26.823309637000094],[-77.5174861319999,26.852199611000017],[-77.53441321499989,26.863185940000065],[-77.55622311099992,26.87055084800006],[-77.57848059799996,26.871161200000117],[-77.5969945949999,26.862046617000132],[-77.61432857999998,26.856512762000094],[-77.63805091099988,26.85993073100012],[-77.69684811099997,26.877346096000096],[-77.71495520699987,26.879380601000108],[-77.75462805899991,26.87946198100009],[-77.76642818899998,26.882798570000105],[-77.79466712099995,26.89972565300009],[-77.81236731699994,26.906805731000148],[-77.83067786399991,26.909409898000074],[-77.90977942599991,26.90403880400011],[-77.94147701699987,26.89354075700014],[-77.96255449099989,26.893052476000047],[-77.95962480399987,26.89695872600005],[-77.95665442599994,26.8984235700001],[-77.94945227799991,26.89988841400016],[-77.91344153599997,26.920965887000094],[-77.86815344999994,26.92841217700005],[-77.77448482999992,26.927232164000046]]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":8,"sovereignt":"Bajo Nuevo Bank (Petrel Is.)","sov_a3":"BJN","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Bajo Nuevo Bank (Petrel Is.)","adm0_a3":"BJN","geou_dif":0,"geounit":"Bajo Nuevo Bank (Petrel Is.)","gu_a3":"BJN","su_dif":0,"subunit":"Bajo Nuevo Bank (Petrel Is.)","su_a3":"BJN","brk_diff":1,"name":"Bajo Nuevo Bank (Petrel Is.)","name_long":"Bajo Nuevo Bank (Petrel Islands)","brk_a3":"B41","brk_name":"Bajo Nuevo Bank (Petrel Is.)","brk_group":null,"abbrev":null,"postal":null,"formal_en":null,"formal_fr":null,"note_adm0":"Disputed","note_brk":"Claimed by Columbia, Jamaica, Nicaragua and the United States","name_sort":"Bajo Nuevo Bank (Petrel Is.)","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":6,"mapcolor13":-99,"pop_est":-99,"gdp_md_est":-99,"pop_year":2012,"lastcensus":-99,"gdp_year":2012,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"woe_id_eh":-99,"woe_note":"No WOE equivalent.","adm0_a3_is":"-99","adm0_a3_us":"B41","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":28,"long_len":32,"abbrev_len":0,"tiny":-99,"homepart":1,"filename":"bajonuevobankpetrelis.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-79.98928788999987,15.794948635000056],[-79.9878230459999,15.796210028000074],[-79.98639889199991,15.794419664000086],[-79.98814856699991,15.79417552300012],[-79.98928788999987,15.794948635000056]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Saint Barthelemy","adm0_a3":"BLM","geou_dif":0,"geounit":"Saint Barthelemy","gu_a3":"BLM","su_dif":0,"subunit":"Saint Barthelemy","su_a3":"BLM","brk_diff":0,"name":"St-Barthélemy","name_long":"Saint-Barthélemy","brk_a3":"BLM","brk_name":"St-Barthélemy","brk_group":null,"abbrev":"St. B.","postal":"BL","formal_en":"Saint-Barthélemy","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"St-Barthélemy","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":7448,"gdp_md_est":255,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"TB","iso_a2":"BL","iso_a3":"BLM","iso_n3":"652","un_a3":"652","wb_a2":"-99","wb_a3":"-99","woe_id":56042304,"woe_id_eh":56042304,"woe_note":"Exact WOE match as country","adm0_a3_is":"BLM","adm0_a3_us":"BLM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":13,"long_len":16,"abbrev_len":6,"tiny":4,"homepart":-99,"filename":"BLM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-62.83885657499987,17.88198476800008],[-62.85094153599987,17.890448309000107],[-62.861317511999886,17.905422268000052],[-62.86733964799989,17.920396226000094],[-62.866118943999965,17.92914459800005],[-62.85741126199988,17.92503489800009],[-62.791656053999894,17.91547272300002],[-62.79893958199992,17.904486395000077],[-62.81012936099992,17.892279364000075],[-62.823841925999936,17.883246161000073],[-62.83885657499987,17.88198476800008]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Belize","sov_a3":"BLZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belize","adm0_a3":"BLZ","geou_dif":0,"geounit":"Belize","gu_a3":"BLZ","su_dif":0,"subunit":"Belize","su_a3":"BLZ","brk_diff":0,"name":"Belize","name_long":"Belize","brk_a3":"BLZ","brk_name":"Belize","brk_group":null,"abbrev":"Belize","postal":"BZ","formal_en":"Belize","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belize","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":5,"mapcolor13":7,"pop_est":307899,"gdp_md_est":2536,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"BH","iso_a2":"BZ","iso_a3":"BLZ","iso_n3":"084","un_a3":"084","wb_a2":"BZ","wb_a3":"BLZ","woe_id":23424760,"woe_id_eh":23424760,"woe_note":"Exact WOE match as country","adm0_a3_is":"BLZ","adm0_a3_us":"BLZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"BLZ.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80370032499991,17.315985419000114],[-87.80357825399993,17.292303778000086],[-87.81041419199997,17.292303778000086],[-87.81004798099985,17.302639065],[-87.81041419199997,17.305975653000033],[-87.81607011599996,17.30426666900003],[-87.81989498599995,17.301459052000084],[-87.8224177729999,17.297512111000074],[-87.82461503799988,17.292303778000086],[-87.82380123599995,17.352932033000158],[-87.82721920499998,17.37811920800011],[-87.8382869129999,17.388495184000035],[-87.82579505099991,17.39915599200016],[-87.81419837099988,17.381293036],[-87.79735266799989,17.333238023000106],[-87.80199133999992,17.325873114000117],[-87.80370032499991,17.315985419000114]]],[[[-88.07701575399997,17.50372955900015],[-88.06769771999993,17.490545966000113],[-88.06981360599993,17.48065827],[-88.07262122299989,17.47614166900014],[-88.07286536399992,17.47011953300013],[-88.07705644399996,17.46108633000013],[-88.08397376199986,17.461818752000156],[-88.08580481699994,17.47011953300013],[-88.08714758999992,17.490912177000112],[-88.08849036399991,17.495306708000115],[-88.09650631399987,17.494289455000125],[-88.10513261599996,17.498114325000145],[-88.11091061099991,17.505072333000058],[-88.11424719999985,17.510077216000084],[-88.11729895699995,17.51288483300014],[-88.11717688699989,17.518784898000163],[-88.11046301999991,17.523016669000086],[-88.09561113199996,17.517401434000092],[-88.07701575399997,17.50372955900015]]],[[[-87.78921464799987,17.531968492000132],[-87.78307044199988,17.51203034100014],[-87.78718014199984,17.496893622000144],[-87.80785071499986,17.457831122000087],[-87.8211156889999,17.440741278000033],[-87.83128821499994,17.423732815000065],[-87.8457738919999,17.414618231000176],[-87.86563066299988,17.429510809000035],[-87.87588456899991,17.413234768],[-87.88853919199988,17.40387604400017],[-87.9000544909999,17.391791083000058],[-87.90721594999988,17.36741771000011],[-87.91344153599991,17.32269928600006],[-87.91588294199994,17.31541575700014],[-87.92100989499997,17.30524323100009],[-87.92552649599992,17.292792059000178],[-87.92650305899991,17.278631903000147],[-87.9407445949999,17.292303778000086],[-87.93700110599987,17.2956403670001],[-87.93569902299987,17.29897695500013],[-87.93529212099985,17.302394924000154],[-87.93390865799996,17.305975653000033],[-87.93150794199994,17.32721588700012],[-87.92227128799988,17.362494208000143],[-87.91746985599988,17.41046784100014],[-87.90953528599992,17.42625560099999],[-87.89671790299988,17.43768952000015],[-87.87930253799993,17.449937242000104],[-87.85879472599987,17.47040436400009],[-87.84870357999989,17.471258856000173],[-87.83381100199995,17.46531810100005],[-87.82127844999985,17.463609117000047],[-87.81163489499988,17.472316799000126],[-87.80394446499986,17.491929429],[-87.8020727199999,17.512925523000135],[-87.81041419199997,17.525620835],[-87.8214412099999,17.516180731000173],[-87.83067786399997,17.51113515800013],[-87.8382869129999,17.51203034100014],[-87.83779863199992,17.518377997000172],[-87.82774817599994,17.545558986000074],[-87.81574459499993,17.545152085000083],[-87.80150305899991,17.541815497000144],[-87.78921464799987,17.531968492000132]]],[[[-88.04381262899993,17.552964585000083],[-88.05060787699998,17.552964585000083],[-88.05565344999991,17.562648830000125],[-88.06444251199989,17.58637116100014],[-88.0772598949999,17.641791083000115],[-88.06354732999998,17.630560614000032],[-88.05361894399988,17.60626862200003],[-88.04381262899993,17.552964585000083]]],[[[-88.13487708199997,17.671820380000057],[-88.16730709499987,17.669094143000095],[-88.16738847599994,17.673773505000113],[-88.16600501199989,17.676825262000094],[-88.16047115799995,17.682766018000123],[-88.1395157539999,17.692043361000074],[-88.08275305899994,17.72923411700016],[-88.07111568899984,17.73427969],[-88.0803116529999,17.701808986000017],[-88.1036677729999,17.68183014500015],[-88.13487708199997,17.671820380000057]]],[[[-87.9706111319999,18.0731468770001],[-87.98143469999988,18.07127513200011],[-87.98436438699991,18.077582098000065],[-87.97716223899995,18.08746979400017],[-87.97207597599996,18.090725002000013],[-87.96906490799995,18.090887762000175],[-87.96328691299986,18.09320709800015],[-87.96031653599997,18.09039948100009],[-87.96251380099997,18.079982815],[-87.9706111319999,18.0731468770001]]],[[[-87.94225012899994,18.09349192900008],[-87.95051021999984,18.087591864000146],[-87.95400956899994,18.088283596000096],[-87.95531165299994,18.093410549000097],[-87.95689856699997,18.09735748900009],[-87.95523027299996,18.100816148000163],[-87.95010331899994,18.10358307500006],[-87.94481360599985,18.10789622600005],[-87.94302324099988,18.11347077000015],[-87.94115149599992,18.11717357000019],[-87.9395238919999,18.118638414000074],[-87.93712317599994,18.114650783000073],[-87.93639075399992,18.103908596000068],[-87.94225012899994,18.09349192900008]]],[[[-87.84732011599993,18.15599192900011],[-87.84898841099994,18.13377513200005],[-87.86221269399987,18.122137762000065],[-87.86961829299986,18.11082591400016],[-87.89004472599993,18.05703359600001],[-87.89976966099988,18.03900788],[-87.9066462879999,18.04352448100003],[-87.91344153599991,18.046454169000143],[-87.91588294199994,18.035956122000087],[-87.91966712099989,18.028509833000115],[-87.92544511599992,18.023138739000057],[-87.93390865799996,18.019110419000082],[-87.93390865799996,18.01235586100016],[-87.92650305899991,17.997992255000085],[-87.91710364499997,18.011175848000118],[-87.9148656889999,18.01715729400014],[-87.91344153599991,18.02594635600012],[-87.90721594999988,18.02594635600012],[-87.91510982999992,17.982733466000113],[-87.93455969999994,17.94293854400003],[-87.96580969999991,17.91376373900006],[-88.00902258999992,17.90249258000007],[-88.00902258999992,17.909247137000122],[-87.9986466139999,17.90892161700019],[-87.99535071499986,17.909247137000122],[-87.95889238199989,17.934271552000112],[-87.94591223899991,17.95180898600016],[-87.9407445949999,17.97752513200011],[-87.95653235599984,17.97675202],[-87.95230058499993,18.007757880000113],[-87.93390865799996,18.07029857000005],[-87.93175208199996,18.074693101000133],[-87.92711341099997,18.0782738300001],[-87.92235266799986,18.08295319200012],[-87.92027747299994,18.09080638199999],[-87.91966712099989,18.10057200700014],[-87.90485592399992,18.153225002000156],[-87.89500891799989,18.16209544500019],[-87.87930253799993,18.155707098000093],[-87.85728919199991,18.169663804000052],[-87.84732011599993,18.15599192900011]]],[[[-87.87413489499991,18.202460028000147],[-87.87474524599989,18.197333075000145],[-87.87828528599997,18.18732330900015],[-87.88780676999994,18.175604559000174],[-87.89354407499994,18.180365302000084],[-87.89077714799986,18.19745514500012],[-87.88683020699997,18.203436591000028],[-87.88369706899991,18.201076565000093],[-87.88316809799991,18.203111070000105],[-87.88483639199984,18.207464911],[-87.88442949099993,18.209173895],[-87.88097083199995,18.20848216400016],[-87.87840735599994,18.208238023000106],[-87.87474524599989,18.20648834800012],[-87.87413489499991,18.202460028000147]]],[[[-88.3983721519999,18.480113424000123],[-88.39077571599992,18.47569508900004],[-88.38491044099993,18.476625265000067],[-88.37907100499993,18.479700013000112],[-88.37144873099996,18.481792908000088],[-88.30951452699993,18.482283834000114],[-88.30382239433331,18.48135036500007],[-88.30382239499995,18.481350002000013],[-88.30382239499995,18.47776927300005],[-88.28661048099985,18.462795315],[-88.30626380099991,18.438299872000087],[-88.38369706899991,18.38495514500012],[-88.39098059799991,18.370591539000046],[-88.37954667899996,18.354925848000065],[-88.36538652299991,18.354071356000176],[-88.31749426999991,18.37482330900015],[-88.32310950399992,18.360256252000127],[-88.33242753799996,18.344794012000122],[-88.35533606699994,18.31708405200014],[-88.36082923099988,18.30825429900007],[-88.35798092399995,18.30369700700014],[-88.35024980399992,18.3041852890001],[-88.34142005099997,18.310248114000117],[-88.32457434799997,18.32831452000012],[-88.29141191299993,18.351141669000143],[-88.27574622299997,18.358221747000115],[-88.25914466099991,18.361151434000035],[-88.23680579299989,18.358140367000132],[-88.20775305899991,18.344631252000152],[-88.19465084499984,18.340643622000083],[-88.17341061099995,18.343736070000162],[-88.14313717399995,18.363755601000136],[-88.10850989499997,18.37392812700007],[-88.09675045499989,18.375433661000113],[-88.09154212099992,18.371730861000074],[-88.09349524599995,18.357611395000063],[-88.09902910099987,18.348374742000185],[-88.11888587099989,18.333807684000146],[-88.14171301999988,18.32444896000011],[-88.14614824099995,18.32021719],[-88.14647376199989,18.30927155200014],[-88.13927161399995,18.30695221600017],[-88.13052324099988,18.310451565000065],[-88.12303626199991,18.322333075000113],[-88.11485755099991,18.327826239000146],[-88.10464433499988,18.332098700000145],[-88.09496008999992,18.333807684000146],[-88.09166419199997,18.32835521000011],[-88.08356686099995,18.210109768000095],[-88.09154212099992,18.118394273000106],[-88.09479732999995,18.102769273000135],[-88.1087947259999,18.07884349200016],[-88.11204993399984,18.063177802],[-88.14964758999986,17.97134023600013],[-88.1667374339999,17.960150458000143],[-88.16685950399997,17.959947007],[-88.20832271999987,17.88198476800012],[-88.20225989499988,17.856146552000027],[-88.21434485599988,17.773098049000126],[-88.23875891799995,17.69037506700006],[-88.2466934889999,17.673651434000035],[-88.27269446499989,17.643988348],[-88.28319251199984,17.62563711100013],[-88.28770911399991,17.604234117000104],[-88.28331458199992,17.58026764500015],[-88.27122962099992,17.56810130400008],[-88.23558508999989,17.55072663],[-88.22813880099989,17.535589911],[-88.2185766269999,17.527289130000113],[-88.1766658189999,17.520249742000047],[-88.16730709499987,17.51203034100014],[-88.17935136599988,17.492621161000116],[-88.20514889199993,17.492865302000084],[-88.23078365799998,17.496527411000113],[-88.2423396479999,17.487494208000115],[-88.2449438139999,17.471991278000118],[-88.2602296910826,17.42306443502595],[-88.28628495999993,17.339667059000035],[-88.29596920499989,17.238104559000035],[-88.29698645699995,17.217189846000068],[-88.30052649599995,17.177923895000063],[-88.29344641799989,17.156805731000148],[-88.28954016799989,17.13776276200015],[-88.28937740799991,17.135768947000102],[-88.28856360599991,17.126939195000077],[-88.28331458199992,17.103949286000088],[-88.27940833199992,17.09145742400007],[-88.26992753799993,17.086330471000153],[-88.24860592399995,17.079413153000147],[-88.23648027299996,17.064195054],[-88.22817949099988,17.044867255000057],[-88.22345943899987,17.02313873900009],[-88.22085527299987,16.991441148000106],[-88.21507727799991,16.96710846600014],[-88.21743730399986,16.955471096000124],[-88.22370357999992,16.952948309000035],[-88.2324926419999,16.95307038],[-88.2423396479999,16.949652411],[-88.25328528599997,16.939927476000136],[-88.26695716099991,16.924750067000147],[-88.27847245999993,16.907416083000054],[-88.28331458199992,16.89134349200016],[-88.27887936099994,16.872951565000122],[-88.25934811099995,16.84341054900007],[-88.25548255099997,16.826157945000162],[-88.25373287699998,16.826076565000093],[-88.25023352799988,16.823431708],[-88.24767005099997,16.818915106000063],[-88.24860592399995,16.813137111000074],[-88.25230872299991,16.812160549000012],[-88.26549231699994,16.813869533000016],[-88.26968339799987,16.813137111000074],[-88.28237870999993,16.803412177000137],[-88.28750566299996,16.797349351000136],[-88.28954016799989,16.788275458000143],[-88.29173743399988,16.783392645000063],[-88.29670162699992,16.778509833],[-88.30162512899989,16.771714585000083],[-88.30382239499995,16.76129791900017],[-88.30280514199993,16.749335028000147],[-88.29808508999992,16.733547268],[-88.29698645699995,16.723781643000066],[-88.30622311099992,16.652899481000148],[-88.3124080069999,16.642035223000093],[-88.32115637899997,16.63344961100016],[-88.33116614499993,16.62067291900003],[-88.3426000639999,16.57982005400008],[-88.34805253799993,16.567328192000062],[-88.35147050699996,16.549709377000127],[-88.34483801999987,16.524562893000066],[-88.34898841099994,16.515326239],[-88.35610917899987,16.50649648600013],[-88.36286373599992,16.505845445000187],[-88.36587480399993,16.521429755],[-88.33454342399997,16.635077216000084],[-88.31769771999987,16.652248440000037],[-88.31126868399986,16.66229889500009],[-88.33763587099995,16.649237372000112],[-88.3646541009999,16.58368561400009],[-88.38638261599996,16.55927155200014],[-88.37979081899991,16.55825429900007],[-88.36587480399993,16.55182526200015],[-88.37262936099995,16.548529364000117],[-88.37783769399994,16.547105210000055],[-88.38402258999992,16.548000393000123],[-88.39317786399991,16.55182526200015],[-88.39110266799989,16.543036200000085],[-88.38853919199995,16.53888580900015],[-88.38329016799989,16.537787177000027],[-88.37279212099992,16.53815338700012],[-88.37279212099992,16.531968492000043],[-88.38341223899997,16.525091864000146],[-88.39093990799992,16.515041408000073],[-88.39268958199992,16.50299713700015],[-88.39004472599993,16.497626044000086],[-88.38638261599996,16.49038320500007],[-88.40518144399991,16.47679271000011],[-88.42564856699988,16.437241929000077],[-88.44444739499994,16.428900458],[-88.44640051999987,16.42340729400017],[-88.44823157499985,16.39964427300016],[-88.44782467399995,16.394761460000026],[-88.45352128799993,16.391424872000172],[-88.4588110019999,16.39134349200019],[-88.46214758999994,16.39301178600003],[-88.46214758999994,16.394761460000026],[-88.46849524599986,16.390692450000145],[-88.47057044199988,16.388617255000113],[-88.47179114499991,16.386053778000118],[-88.4757380849999,16.38117096600014],[-88.48859615799992,16.35126373900006],[-88.49254309799991,16.346380927],[-88.50035559799989,16.342108466000084],[-88.5266820949999,16.30882396],[-88.52965247299991,16.303534247000115],[-88.53380286399994,16.290350653000147],[-88.53661048099991,16.285549221000068],[-88.53726152299996,16.28266022300015],[-88.53595943899987,16.274115302000112],[-88.53661048099991,16.271307684000178],[-88.53937740799995,16.270656643000123],[-88.54751542899987,16.271918036000116],[-88.55028235599994,16.271307684000178],[-88.55467688699991,16.268866278000033],[-88.56676184799991,16.266262111000128],[-88.57135982999995,16.263820705000015],[-88.57347571499987,16.259914455000015],[-88.5781957669999,16.243963934000092],[-88.5781957669999,16.285549221000068],[-88.58503170499989,16.285549221000068],[-88.59190833199992,16.263820705000015],[-88.60594641799986,16.260646877000127],[-88.61974036399997,16.268988348],[-88.62596594999994,16.281805731000063],[-88.62987219999991,16.287502346000124],[-88.63829505099997,16.288153387000175],[-88.64663652299993,16.28660716400013],[-88.65021725199992,16.285549221000068],[-88.65147864499991,16.281968492000104],[-88.65103105399993,16.26439036700016],[-88.65392005099994,16.257635809000035],[-88.66112219999988,16.25535716400016],[-88.69489498599998,16.25079987200003],[-88.70067298099994,16.247056382],[-88.70539303299995,16.24233633000007],[-88.71255449099988,16.238226630000113],[-88.7259008449999,16.23651764500012],[-88.7400610019999,16.230169989],[-88.74421139199987,16.21450429900004],[-88.74205481699997,16.17568594],[-88.7457169259999,16.154852606000034],[-88.75519771999993,16.139715887000037],[-88.76927649599986,16.130357164000188],[-88.78673255099991,16.127264716000113],[-88.79181881399984,16.124660549000012],[-88.79771887899997,16.118353583000083],[-88.80264238199993,16.110581773000163],[-88.80703691299993,16.093207098000093],[-88.81314042899989,16.088120835000083],[-88.82176673099991,16.084865627000042],[-88.83141028599988,16.079494533000155],[-88.8425186839999,16.07029857000019],[-88.84748287699995,16.06517161700016],[-88.85191809799994,16.05898672100001],[-88.8543188139999,16.04791901200015],[-88.85350501199989,16.036851304000137],[-88.85627193899992,16.02826569200012],[-88.88239498599998,16.020900783000044],[-88.89964758999989,16.01080963700015],[-88.9163712229999,15.997503973000121],[-88.9276423819999,15.983872789000186],[-88.93114173099991,15.95905182500003],[-88.9102677069999,15.917385158000073],[-88.91397050699987,15.893947658000016],[-88.95187841899987,15.879651999000073],[-89.04032263199991,15.90171783400014],[-89.07238785899992,15.901511129000099],[-89.10091324899997,15.896808574000103],[-89.17744604499987,15.900270894000142],[-89.19576533999995,15.89293284100016],[-89.20483455399992,15.892416077000021],[-89.21653926699989,15.888643697000091],[-89.22599605399995,15.88404449500014],[-89.22824397799988,15.88084055600008],[-89.23651220799991,15.893914693000127],[-89.23602227599987,15.906493168000011],[-89.23413509199997,15.954944560000015],[-89.20851686052119,16.18613191976671],[-89.1931396713585,16.39262560280882],[-89.18435270612271,16.49587244432983],[-89.16606739756634,16.77700906338326],[-89.1492048451793,17.036270806333633],[-89.1507278741021,17.321032079732177],[-89.15621739539208,17.598243348485695],[-89.16049617499996,17.814314270000022],[-89.1613746749999,17.901440735000094],[-89.15393326799997,17.941076559000162],[-89.13256506399998,17.970273743000106],[-89.0494435229999,17.99921254500005],[-89.02802364099993,17.99208119700002],[-89.01153885999989,17.977818502000147],[-88.99657853199992,17.961850485000113],[-88.97975785399996,17.949448141000133],[-88.96784643599992,17.94825958300011],[-88.9565034589999,17.950533346000114],[-88.94702083399994,17.948466288000148],[-88.93330074099993,17.920354309000132],[-88.92045914799992,17.910949199000168],[-88.88033239799992,17.88846995100006],[-88.8713665369999,17.89095041900005],[-88.86537207099988,17.899011943000133],[-88.86085038299993,17.92112945600006],[-88.85640620899994,17.9283124790001],[-88.80534989499995,17.965002747000156],[-88.79594478399991,17.97559641500014],[-88.78163041199991,18.014715475000074],[-88.7768761809999,18.023758850000135],[-88.76201920599998,18.03564443000006],[-88.74835078999986,18.043292541000042],[-88.73638769599992,18.05192250600008],[-88.72664668799986,18.066727804000024],[-88.72349442599992,18.077502340000038],[-88.7204455159999,18.100084941000162],[-88.71770666499995,18.110032654000165],[-88.69285030099991,18.15000437400012],[-88.68951717199988,18.161243999000177],[-88.69295365399992,18.17517079700015],[-88.69662268099992,18.178064677000137],[-88.6681489669999,18.198244324000044],[-88.63895178299995,18.21160268100006],[-88.62704036499991,18.220310160000125],[-88.61698929899988,18.235425517000138],[-88.6140589309999,18.247028189000034],[-88.61316524299994,18.25056671200015],[-88.61148575899996,18.266379700000144],[-88.60771337899988,18.28338124600016],[-88.59807572499994,18.29947845500014],[-88.56717321799994,18.33350738500009],[-88.5547967119999,18.35221425400006],[-88.55133439199994,18.3636864220001],[-88.54740698299989,18.389059551000074],[-88.53838944599994,18.413089091000113],[-88.53304093499989,18.443319804000126],[-88.52782161499995,18.454146017000152],[-88.5201993419999,18.46156158399999],[-88.48924515799986,18.484505920000018],[-88.47919409199994,18.483420716000026],[-88.46994401099994,18.4785114540001],[-88.45963456199993,18.475720927000125],[-88.45082373099993,18.476883647000037],[-88.4308507899999,18.483782451000124],[-88.41997290099994,18.48900177000003],[-88.41322912699991,18.490758769000124],[-88.407983968,18.488950094000028],[-88.3983721519999,18.480113424000123]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Bermuda","adm0_a3":"BMU","geou_dif":0,"geounit":"Bermuda","gu_a3":"BMU","su_dif":0,"subunit":"Bermuda","su_a3":"BMU","brk_diff":0,"name":"Bermuda","name_long":"Bermuda","brk_a3":"BMU","brk_name":"Bermuda","brk_group":null,"abbrev":"Berm.","postal":"BM","formal_en":"The Bermudas or Somers Isles","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Bermuda","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":67837,"gdp_md_est":4500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"BD","iso_a2":"BM","iso_a3":"BMU","iso_n3":"060","un_a3":"060","wb_a2":"BM","wb_a3":"BMU","woe_id":23424756,"woe_id_eh":23424756,"woe_note":"Exact WOE match as country","adm0_a3_is":"BMU","adm0_a3_us":"BMU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":7,"long_len":7,"abbrev_len":5,"tiny":4,"homepart":-99,"filename":"BMU.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.81196571723709,32.28993629964394],[-64.80770230891738,32.286448056473354],[-64.79995065742699,32.28334739587707],[-64.80266373544862,32.28102190043001],[-64.81119055208805,32.282184648153546],[-64.82049253387652,32.28102190043001],[-64.82979451566499,32.281797065579056],[-64.83250759368661,32.2872232216224],[-64.82940693309044,32.28916113449487],[-64.82088011645101,32.2872232216224],[-64.81545396040775,32.288773551920414],[-64.81196571723709,32.28993629964394]]],[[[-64.64763070564057,32.368227979697096],[-64.65538235713095,32.35931358048309],[-64.65576993970544,32.35039918126917],[-64.66042093059971,32.353499841865286],[-64.66739741694104,32.358925997908514],[-64.68078075044497,32.36173218074005],[-64.68522621536897,32.3573756676105],[-64.69142753656135,32.36396457137728],[-64.70809358726564,32.351561928992695],[-64.70499292666955,32.34303511235318],[-64.69491577973201,32.339934451757],[-64.67786214645307,32.33450829571383],[-64.69840402290268,32.32636906164888],[-64.71700798647964,32.31551674956232],[-64.74058997299997,32.30044179900015],[-64.75487219999987,32.29311758000013],[-64.76390547799659,32.28257223072812],[-64.78328460672262,32.267456510321736],[-64.80925263921546,32.256216615660676],[-64.83405792398472,32.24807738159582],[-64.84917364439102,32.24846496417039],[-64.86080112162662,32.24885254674486],[-64.87630442460738,32.25776694595886],[-64.88289332837425,32.27171991864155],[-64.88599398897043,32.28257223072812],[-64.8766340454707,32.2789117392533],[-64.87797690356822,32.28607364910637],[-64.8745484041674,32.29568128932401],[-64.87979266777805,32.30543960262487],[-64.87242859886214,32.303114107177734],[-64.86894035569148,32.30892784579545],[-64.86428936479729,32.303114107177734],[-64.858088043605,32.29768795113439],[-64.86700244281892,32.29109904736747],[-64.86980647402979,32.27978479354091],[-64.87204101628768,32.27637090953583],[-64.86700244281892,32.27288266636508],[-64.84878606181653,32.270944753492486],[-64.84878606181653,32.2678440928964],[-64.86313074850325,32.269007567025156],[-64.86428936479729,32.26241793685297],[-64.85770046103045,32.25466628536268],[-64.84684814894385,32.25466628536268],[-64.83289517626118,32.25970485883143],[-64.82901935051595,32.266681345172785],[-64.81971736872748,32.267456510321736],[-64.80305131802308,32.27598332696125],[-64.78091386599993,32.287543036000145],[-64.77902119840289,32.29109904736747],[-64.79452450138365,32.28954871706953],[-64.80537681347022,32.29342454281469],[-64.81396733425686,32.303978423739],[-64.81083399869615,32.30755937866543],[-64.78014075399992,32.303412177000055],[-64.76183020699995,32.310939846000124],[-64.75121008999992,32.313625393],[-64.74026294095087,32.32404356620184],[-64.73599953263107,32.32288081847814],[-64.71855831677775,32.32365598362726],[-64.71390732588343,32.32946972224506],[-64.70538050924401,32.33605862601193],[-64.71313216073447,32.34264752977869],[-64.72463708989113,32.33878621989682],[-64.73289887203498,32.33373313056479],[-64.73473870650784,32.327702250127075],[-64.73948777580182,32.32869455709603],[-64.74165990765951,32.33307298398118],[-64.73638711520564,32.343810277502214],[-64.72202022916721,32.35251162240489],[-64.71313216073447,32.364352153951856],[-64.69725501199991,32.37352122600013],[-64.6760961579999,32.388657945000126],[-64.64763070564057,32.368227979697096]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Barbados","sov_a3":"BRB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Barbados","adm0_a3":"BRB","geou_dif":0,"geounit":"Barbados","gu_a3":"BRB","su_dif":0,"subunit":"Barbados","su_a3":"BRB","brk_diff":0,"name":"Barbados","name_long":"Barbados","brk_a3":"BRB","brk_name":"Barbados","brk_group":null,"abbrev":"Barb.","postal":"BB","formal_en":"Barbados","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Barbados","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":5,"mapcolor13":3,"pop_est":284589,"gdp_md_est":5425,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"BB","iso_a2":"BB","iso_a3":"BRB","iso_n3":"052","un_a3":"052","wb_a2":"BB","wb_a3":"BRB","woe_id":23424754,"woe_id_eh":23424754,"woe_note":"Exact WOE match as country","adm0_a3_is":"BRB","adm0_a3_us":"BRB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"BRB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-59.42690995999987,13.160386460000069],[-59.43004309799995,13.125921942000048],[-59.45571855399994,13.100043036000029],[-59.47577877499987,13.086493231000063],[-59.48753821499986,13.078558661000102],[-59.50885982999992,13.057318427000027],[-59.51671301999992,13.056382554000038],[-59.523101365999935,13.056463934000107],[-59.529286261999886,13.05540599200006],[-59.536122199999916,13.051174221000037],[-59.54596920499991,13.067694403000104],[-59.56444251199986,13.078029690000022],[-59.58690344999985,13.08319733300003],[-59.60024980399987,13.0841332050001],[-59.60814368399994,13.084662177000084],[-59.62157141799994,13.09398021000004],[-59.63312740799995,13.115912177000055],[-59.64606686099995,13.160386460000069],[-59.65420488199987,13.295111395000077],[-59.65221106699994,13.310614325000088],[-59.64513098899989,13.32371653900006],[-59.630930141999954,13.337958075000072],[-59.612863735999944,13.344549872000043],[-59.59447180899991,13.334784247000101],[-59.5807185539999,13.314520575000087],[-59.57591712099988,13.304388739000046],[-59.56895911399991,13.289658921000054],[-59.54979407499985,13.249172268000022],[-59.536610480999904,13.231390692000033],[-59.51805579299989,13.217515367000132],[-59.49181067599997,13.19794342700007],[-59.476673956999974,13.189398505000057],[-59.45710201699989,13.183172919000086],[-59.438628709999875,13.174872137000106],[-59.42690995999987,13.160386460000069]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Costa Rica","sov_a3":"CRI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Costa Rica","adm0_a3":"CRI","geou_dif":0,"geounit":"Costa Rica","gu_a3":"CRI","su_dif":0,"subunit":"Costa Rica","su_a3":"CRI","brk_diff":0,"name":"Costa Rica","name_long":"Costa Rica","brk_a3":"CRI","brk_name":"Costa Rica","brk_group":null,"abbrev":"C.R.","postal":"CR","formal_en":"Republic of Costa Rica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Costa Rica","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":4,"mapcolor13":2,"pop_est":4253877,"gdp_md_est":48320,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"CS","iso_a2":"CR","iso_a3":"CRI","iso_n3":"188","un_a3":"188","wb_a2":"CR","wb_a3":"CRI","woe_id":23424791,"woe_id_eh":23424791,"woe_note":"Exact WOE match as country","adm0_a3_is":"CRI","adm0_a3_us":"CRI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CRI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.0990291009999,5.51601797100011],[-87.11766516799989,5.515082098000121],[-87.10460364499991,5.537420966000141],[-87.09251868399991,5.546698309000107],[-87.07852128799992,5.555080471000153],[-87.06460527299996,5.557847398000121],[-87.06460527299996,5.547593492000189],[-87.06554114499993,5.534613348000107],[-87.07852128799992,5.520656643000123],[-87.0990291009999,5.51601797100011]]],[[[-83.87030523899995,8.701776235000082],[-83.8780764059999,8.698821179000104],[-83.89063479699989,8.701178567000111],[-83.89661759299995,8.706491863000082],[-83.88346373899986,8.712992682000078],[-83.86911404599988,8.713587405000084],[-83.87030523899995,8.701776235000082]]],[[[-85.14513098899997,10.10346100500007],[-85.13565019399995,10.098456122000115],[-85.13133704299986,10.09870026200015],[-85.12157141799992,10.096380927000096],[-85.1160375639999,10.09170156500008],[-85.10789954299989,10.089544989000089],[-85.09732011599993,10.08982982000012],[-85.09732011599993,10.08364492400014],[-85.10948645699992,10.079291083000143],[-85.12482662699998,10.075628973000107],[-85.14183508999994,10.074164130000142],[-85.1588028639999,10.076157945000176],[-85.17613684799989,10.083238023000135],[-85.18529212099989,10.092433986000117],[-85.19912675699987,10.117743231000148],[-85.18028723899994,10.124009507000109],[-85.17186438699989,10.124579169000171],[-85.13996334499986,10.119208075000117],[-85.11046301999987,10.110296942000074],[-85.11046301999987,10.10346100500007],[-85.14513098899997,10.10346100500007]]],[[[-85.23647823899995,11.053096617000122],[-85.09283748399994,11.00064748200019],[-84.93140030999987,10.941891378000136],[-84.90840429699992,10.939359233000147],[-84.88496903499995,10.947679138000112],[-84.78177119999992,11.014884339000162],[-84.7077705489999,11.06304677400014],[-84.6764546309999,11.070410665000152],[-84.65872961499988,11.062736715000156],[-84.62066992199996,11.035761617000132],[-84.60322912599992,11.03328114900016],[-84.58168005399995,11.034469706000095],[-84.558606527,11.027209168000113],[-84.50873876999995,11.005530904000123],[-84.50333858299987,11.004032288000118],[-84.49817093999988,11.001991069000155],[-84.49331335499994,10.999407248000153],[-84.48912756399992,10.996358337000132],[-84.46638993399992,10.968453064000144],[-84.45783748399992,10.961347555000202],[-84.44887162399996,10.95633494100015],[-84.43820043999997,10.952200826000137],[-84.4272450359999,10.951115621000142],[-84.41776241099993,10.955043030000112],[-84.36396724499991,10.989614563000188],[-84.35546647199989,10.994627177000154],[-84.34598384699993,10.989898784000076],[-84.34365840699988,10.982379863000133],[-84.34386511299994,10.97227712100009],[-84.34179805599987,10.959900615000123],[-84.3374055589999,10.95266591400015],[-84.32409887699995,10.936181132000172],[-84.32130834999992,10.92915313700017],[-84.31074051999994,10.919412130000126],[-84.26428340699991,10.901816305000139],[-84.25366390099992,10.894710796000197],[-84.24472387799992,10.884918111000147],[-84.22565527399993,10.875306295000144],[-84.20836950699993,10.860966085000143],[-84.20464880399993,10.836988220000123],[-84.2185239259999,10.829831035000083],[-84.2226580409999,10.82704050700012],[-84.22710221399993,10.819314881000123],[-84.22524186299992,10.813682149000101],[-84.221159424,10.809418844000135],[-84.21888566099997,10.80595652300019],[-84.19687150099992,10.788515727000158],[-84.19160050499997,10.781720276000115],[-84.18041255799994,10.78975596100018],[-84.1648321129999,10.789445903000114],[-84.15772972499995,10.78842464500016],[-84.14901912499991,10.787172140000093],[-84.13700435499993,10.789161682000127],[-84.11842667699997,10.771229960000156],[-84.10692867099996,10.766914978000086],[-84.09543066399993,10.775519104000125],[-84.08855769899989,10.775519104000125],[-84.07643957499997,10.763814393000146],[-84.05163488799994,10.779549866000124],[-84.0345558269999,10.775519104000125],[-84.02269608599997,10.787223817000111],[-84.0092343759999,10.789445903000114],[-83.99820145699994,10.7820561730001],[-83.9936280929999,10.765002950000166],[-83.93332169599998,10.71805491100011],[-83.92657792199994,10.714902649000152],[-83.91727616399993,10.713481547000171],[-83.90748347999995,10.715367737000179],[-83.893556682,10.72492787700017],[-83.88686458399988,10.727149964000175],[-83.85952775099994,10.721775615000126],[-83.85580704799995,10.72399770100013],[-83.83534318099994,10.747613831000137],[-83.76896480299993,10.772470195000096],[-83.76381811499999,10.773683168000105],[-83.6981422529999,10.789161682000127],[-83.66302811699987,10.807015889000184],[-83.66013423699987,10.834171855000164],[-83.66930680399994,10.869751078000135],[-83.67023697999991,10.912694194000096],[-83.66977189199989,10.917525940000118],[-83.67096044899992,10.922616069000185],[-83.66369991099991,10.927706197000177],[-83.65780879799993,10.92646596300014],[-83.65147843499992,10.926620992000082],[-83.64435787699988,10.925930080000114],[-83.62425696499994,10.902899481000148],[-83.59870357999993,10.856594143000066],[-83.58055579299985,10.807318427000068],[-83.58287512899992,10.775702216000083],[-83.5975642569999,10.793605861000144],[-83.62385006399984,10.857611395000133],[-83.60692298099985,10.777777411000102],[-83.60863196499986,10.745510158000073],[-83.63752193899987,10.721096096000124],[-83.6222224599999,10.723863023000177],[-83.61188717399989,10.730861721000153],[-83.60216223899994,10.739569403000147],[-83.58910071499989,10.747748114000146],[-83.59365800699993,10.742661851000136],[-83.59471594999988,10.736558335000138],[-83.59300696499989,10.729315497000115],[-83.58910071499989,10.721096096000124],[-83.58527584499987,10.732855536000102],[-83.58104407499994,10.7558047550001],[-83.57542883999994,10.768255927000112],[-83.52696692599994,10.636053778000102],[-83.46617591099991,10.494533596000153],[-83.39452063699991,10.376044012000165],[-83.20372473899995,10.129339911000073],[-83.18838456899991,10.117743231000148],[-83.12466386599995,10.040594794000114],[-83.08531653599997,10.002142645000104],[-83.06151282499988,10.015326239000146],[-83.05239824099988,10.009588934000178],[-83.02603105399987,10.005031643000137],[-83.02057857999995,9.997381903000104],[-83.01984615799991,9.978705145000134],[-83.01667232999993,9.96312083500014],[-83.00934811099995,9.949286200000131],[-82.99632727799985,9.935939846000123],[-82.94977779899992,9.867580471000137],[-82.93488521999987,9.857082424000083],[-82.87726803299992,9.780096747000101],[-82.83381100199995,9.739488023000177],[-82.80825761599988,9.747219143000109],[-82.80247962099992,9.731512762000136],[-82.79698645699989,9.69122955900015],[-82.78774980399993,9.672756252000127],[-82.77232825399989,9.661037502000141],[-82.70523027299993,9.637925523000192],[-82.68138587099995,9.635484117000159],[-82.65794837099985,9.636297919000171],[-82.63589433499988,9.634507554000095],[-82.61644446499989,9.624335028000132],[-82.59142005099994,9.586981512000179],[-82.57457434799994,9.576808986000131],[-82.57359778599988,9.576198635000166],[-82.57359130798213,9.576194698775936],[-82.56283687399991,9.538695373000166],[-82.57061417699992,9.53823028500014],[-82.58588456299988,9.546240133000126],[-82.60110327199993,9.548668925000172],[-82.60820878199996,9.537868551000145],[-82.61239457299989,9.499498800000126],[-82.61885412599995,9.486708883000146],[-82.63213496999995,9.484667663000096],[-82.65071264699989,9.487845764000154],[-82.66820511899996,9.493168437000108],[-82.67804947999993,9.497767639000145],[-82.68866898699991,9.509446513000128],[-82.70145890399989,9.533553569000077],[-82.71169083699996,9.544999899000175],[-82.71972652199995,9.541330872000088],[-82.72936417699998,9.54489654600016],[-82.77109289599991,9.579855652000148],[-82.82902217599992,9.60272247300017],[-82.84747066299988,9.600655416000109],[-82.86604834099992,9.585074972000172],[-82.87739131699989,9.569184469000149],[-82.8792516689999,9.559908549000141],[-82.86713354499992,9.538643697000154],[-82.86020890299991,9.511203512000108],[-82.85591975899987,9.505441590000132],[-82.84938269099987,9.503477885000107],[-82.84478348899992,9.50068735800015],[-82.84638545799996,9.49254832000014],[-82.86129410899991,9.484099223000142],[-82.9146241869999,9.47686452200017],[-82.93330521699997,9.470327454000184],[-82.94170263699996,9.456348979000097],[-82.94428645899987,9.437151185000175],[-82.94320125399989,9.354313863000172],[-82.94165096099994,9.234424540000191],[-82.93952108499994,9.070641889000143],[-82.93937719799993,9.059577332000101],[-82.90945654399991,9.072005514000168],[-82.90023229999991,9.07205719000018],[-82.89328181999991,9.066941224000104],[-82.88969030799993,9.059370626000131],[-82.88687394299986,9.05148997000019],[-82.88242976999996,9.045340475000131],[-82.87656449499988,9.041929830000186],[-82.85408524699994,9.031982117000098],[-82.80817073599988,8.998366597000157],[-82.76269547599992,8.982992859000177],[-82.74913041199994,8.974078674000152],[-82.72334387199993,8.930928854000143],[-82.71936478699988,8.92152374300018],[-82.72015670999994,8.920237750000183],[-82.73386002599997,8.897985128000187],[-82.76378067999991,8.879950053000186],[-82.86692683999993,8.838066304000108],[-82.87857987499993,8.829772238000146],[-82.88832088299993,8.816930644000166],[-82.88356665099988,8.812383118000128],[-82.87563431899991,8.807525533000117],[-82.87578934799986,8.793908793000114],[-82.88511694399996,8.783185934000187],[-82.91488256899997,8.764789124000103],[-82.92296992999987,8.756159160000152],[-82.9241584889999,8.741198832000178],[-82.91922338899997,8.727065328000151],[-82.91033504299995,8.713913676000175],[-82.8789416099999,8.679057923000101],[-82.86222428499988,8.655700176000153],[-82.84979610299989,8.629861959000138],[-82.84186376999995,8.599476217000172],[-82.83597265699993,8.529764710000137],[-82.83891821399993,8.494624736000091],[-82.8482974859999,8.465169169000177],[-82.8704149989999,8.438116557000143],[-82.89651159699989,8.425352478000162],[-82.92477860499989,8.416748352000127],[-82.95351070199987,8.402098084000144],[-82.9977715659999,8.360162659000153],[-83.04329850299987,8.334737854000153],[-83.05210933499987,8.327632345000126],[-83.05324621699998,8.315100810000118],[-83.04407364999989,8.305359803000158],[-83.01606502399996,8.289004211000119],[-83.0107681889999,8.283371480000183],[-83.00110469599991,8.269237976000156],[-82.99552364099988,8.264819641000145],[-82.98919327799986,8.26445790700015],[-82.97712683099991,8.269237976000156],[-82.96800594099992,8.267971904000206],[-82.95051346899996,8.258825175000124],[-82.94366634199991,8.248567403000138],[-82.93909297799988,8.21683807400012],[-82.88640885499993,8.102193909000164],[-82.89136979199989,8.05754547100014],[-82.8976292589428,8.034748020073364],[-82.91124426999994,8.045355536000145],[-82.9096980459999,8.060614325000117],[-82.90212968699987,8.077460028000116],[-82.8976130849999,8.092800197000173],[-82.90038001199986,8.105047919000143],[-82.96849524599989,8.221218166000156],[-82.99258378799993,8.246405341000127],[-83.11685136599995,8.336127020000061],[-83.15086829299987,8.369289455000086],[-83.1214900379999,8.404933986000131],[-83.11607825399993,8.407782294000171],[-83.11046301999994,8.418036200000103],[-83.09959876199984,8.431341864000132],[-83.09268144399996,8.446682033000087],[-83.09902910099989,8.462713934000163],[-83.13170325399992,8.503200588000183],[-83.13719641799986,8.51455312700007],[-83.13772538999984,8.529323635000152],[-83.13060462099989,8.534491278000147],[-83.11815344999988,8.538153387000108],[-83.10244706899991,8.548041083000115],[-83.11424719999988,8.551784572000145],[-83.14342200399992,8.550238348000107],[-83.15770423099991,8.555487372000101],[-83.16515051999988,8.563747463000183],[-83.18504798099988,8.60268789300008],[-83.18175208199995,8.607855536000088],[-83.18016516799992,8.611354885000168],[-83.17821204299985,8.616970119000158],[-83.17137610599985,8.616970119000158],[-83.16173255099997,8.600734768000123],[-83.15880286399994,8.592800197000159],[-83.15770423099991,8.57941315300016],[-83.15330969999994,8.577175197000173],[-83.12356523299991,8.589016018000137],[-83.12356523299991,8.59646230700011],[-83.13723710799985,8.602199611000088],[-83.15172278599991,8.612860419000114],[-83.16405188699994,8.62563711100016],[-83.17137610599985,8.637477932000124],[-83.17821204299985,8.637477932000124],[-83.18578040299991,8.625189520000077],[-83.2039688789999,8.624457098000136],[-83.2247615229999,8.62685781500008],[-83.2402644519999,8.623806057000179],[-83.2475886709999,8.63723379100017],[-83.25930742099989,8.651312567000119],[-83.27318274599989,8.658474026000164],[-83.2873835929999,8.651068427000084],[-83.31908118399986,8.669582424000096],[-83.32835852799991,8.684597072000116],[-83.32217363199993,8.705715236000131],[-83.32900956899996,8.706203518000123],[-83.33580481699988,8.705715236000131],[-83.33169511599992,8.722072658000144],[-83.34585527299987,8.729925848000121],[-83.36693274599989,8.734279690000122],[-83.3836563789999,8.739813544000143],[-83.38951575399994,8.728094794000143],[-83.39480546799984,8.728949286000145],[-83.4013972649999,8.733710028000147],[-83.41152910099987,8.733669338000155],[-83.41628984299987,8.7282982440001],[-83.41751054599987,8.721258856000134],[-83.42166093699993,8.715155341000141],[-83.43517005099989,8.712551174000138],[-83.46825110599993,8.717474677000112],[-83.48171952999994,8.712591864000132],[-83.48668372299997,8.692694403000147],[-83.47911536399994,8.698431708000115],[-83.47923743399991,8.698879299000112],[-83.47301184799994,8.698879299000112],[-83.43789628799996,8.646429755000142],[-83.43325761599993,8.630519924000126],[-83.4127498039999,8.598456122000144],[-83.40477454299992,8.589016018000137],[-83.39159094999988,8.582302151000178],[-83.35423743399991,8.57107168200018],[-83.33922278599991,8.56915924700013],[-83.32546952999988,8.56098053600013],[-83.3123673169999,8.545070705000114],[-83.29971269399994,8.534369208000086],[-83.2873835929999,8.541815497000158],[-83.2868546209999,8.517157294000157],[-83.28884843699987,8.507025458000115],[-83.29491126199986,8.500270901000164],[-83.29491126199986,8.493434963000155],[-83.27981523299985,8.472927151000107],[-83.27371171799987,8.437933661000102],[-83.27635657499984,8.401556708000115],[-83.2873835929999,8.376735744000158],[-83.3098445299999,8.375921942000147],[-83.34642493399994,8.387600002000141],[-83.38088945199988,8.40412018400012],[-83.39724687399988,8.417669989000089],[-83.39110266799989,8.417669989000089],[-83.38662675699993,8.414129950000117],[-83.38296464799986,8.412502346000096],[-83.36937415299991,8.41091543200015],[-83.38866126199986,8.419501044000157],[-83.39647376199986,8.42458730700018],[-83.40477454299992,8.431952216000083],[-83.40477454299992,8.417669989000089],[-83.4624324209999,8.442694403000104],[-83.48294023299985,8.445624091000127],[-83.54417883999989,8.438259182000124],[-83.56114661399994,8.43817780200014],[-83.5755916009999,8.444973049000081],[-83.58889726499991,8.458563544000128],[-83.61327063699989,8.490016994000143],[-83.70022538999987,8.570339260000154],[-83.70579993399988,8.57941315300016],[-83.71011308499988,8.580511786000102],[-83.73058020699992,8.588812567000089],[-83.73680579299989,8.59271881700009],[-83.73989824099988,8.623806057000179],[-83.70946204299992,8.670355536000116],[-83.70238196499986,8.67841217700014],[-83.6866755849999,8.687689520000106],[-83.67593339799987,8.691799221000153],[-83.67100989499991,8.688910223000121],[-83.66783606699994,8.682928778000104],[-83.66091874899985,8.68984609600011],[-83.63658606699988,8.726752020000063],[-83.6300349599999,8.733669338000155],[-83.64256751199991,8.74953847900018],[-83.62747148299991,8.76740143400015],[-83.60000566299993,8.782049872000158],[-83.57542883999994,8.788275458000129],[-83.57542883999994,8.79446035400018],[-83.59707597599993,8.7970238300001],[-83.60794023299991,8.796047268000123],[-83.6153865229999,8.790106512000108],[-83.62694251199991,8.777736721000153],[-83.63866126199991,8.77228424700013],[-83.64256751199991,8.781887111000103],[-83.6378067699999,8.798854885000166],[-83.62380937399983,8.815578518000109],[-83.59902910099987,8.82754140800013],[-83.58763587099992,8.83535390800013],[-83.58287512899992,8.846625067000117],[-83.58910071499989,8.856756903000175],[-83.60208085799988,8.863796291000142],[-83.61388098899994,8.873236395000063],[-83.61636308499996,8.890692450000117],[-83.59703528599994,8.880886135000182],[-83.5876765619999,8.87799713700015],[-83.57542883999994,8.87763092700014],[-83.58141028599992,8.884955145000148],[-83.58897864499991,8.89052969000015],[-83.60338294199997,8.898138739000101],[-83.60948645699995,8.903143622000144],[-83.61294511599995,8.907782294000157],[-83.61827551999991,8.91095612200013],[-83.6300349599999,8.91176992400014],[-83.61790930899991,8.919012762000165],[-83.6196182929999,8.924261786000145],[-83.62657630099991,8.928249416000128],[-83.6300349599999,8.93166738500014],[-83.62551835799985,8.942653713000183],[-83.62039140499994,8.95083242400011],[-83.61339270699993,8.958075262000122],[-83.60338294199997,8.966376044000114],[-83.62987219999992,9.035345770000148],[-83.6347550119999,9.044094143000123],[-83.6511531239999,9.061957098000093],[-83.65798906199984,9.055202541000142],[-83.68044999899993,9.084133205000157],[-83.70091712099989,9.11786530200014],[-83.7272029289999,9.144313869000129],[-83.76720130099994,9.151393947000187],[-83.76488196499989,9.177191473000121],[-83.78689531199988,9.199245510000111],[-83.81712805899991,9.214504299000083],[-83.83950761599993,9.220282294000143],[-83.91808020699995,9.29474518400012],[-83.99510657499991,9.3302269550001],[-84.00743567599994,9.339748440000108],[-84.10362708199989,9.377264716000111],[-84.10985266799986,9.377264716000111],[-84.11632239499997,9.372585354000108],[-84.12193762899994,9.3726260440001],[-84.12661699099988,9.3768985050001],[-84.13036048099991,9.3847110050001],[-84.14407304599983,9.378851630000142],[-84.15225175699993,9.385321356000148],[-84.1615291009999,9.394720770000076],[-84.17870032499994,9.39777252800016],[-84.16795813699991,9.416205145000104],[-84.18224036399991,9.442206122000087],[-84.20836341099997,9.464992580000114],[-84.23338782499988,9.473456122000158],[-84.23338782499988,9.466701565000122],[-84.2245987619999,9.464992580000114],[-84.21865800699987,9.462551174000083],[-84.20543372299994,9.453029690000093],[-84.23143469999991,9.457546291000142],[-84.27269446499989,9.48159414300008],[-84.2988582019999,9.487127997000101],[-84.32420813699986,9.489081122000144],[-84.45791581899991,9.526027736000088],[-84.48350989499988,9.52810293200011],[-84.49547278599991,9.526027736000088],[-84.50829016799986,9.521999416000128],[-84.52159583199997,9.519313869000143],[-84.53502356699997,9.521307684000178],[-84.54674231699994,9.53107330900012],[-84.55068925699993,9.542873440000093],[-84.55540930899986,9.552394924000097],[-84.56912187399988,9.55544668200018],[-84.56655839799987,9.551418361000117],[-84.5650935539999,9.548407294000114],[-84.56297766799989,9.541164455000086],[-84.57949785099987,9.55434804900014],[-84.61656653599991,9.578070380000142],[-84.62376868399991,9.5929629580001],[-84.62730872299991,9.60671621300011],[-84.63609778599988,9.613348700000172],[-84.64720618399991,9.61770254100017],[-84.65794837099992,9.624335028000132],[-84.66136633999992,9.634466864000103],[-84.65994218699987,9.644924221000082],[-84.6627091139999,9.651678778000118],[-84.6783748039999,9.65102773600016],[-84.67442786399991,9.662380276000135],[-84.67552649599995,9.673285223000107],[-84.67808997299994,9.683539130000142],[-84.6783748039999,9.692572333000143],[-84.67247473899994,9.70380280200014],[-84.65526282499992,9.720770575000117],[-84.6484675769999,9.737697658000101],[-84.6414688789999,9.746120510000152],[-84.63442949099996,9.757025458000129],[-84.6312149729999,9.7714297550001],[-84.63455156199984,9.783392645000134],[-84.64236406199993,9.79376862200013],[-84.65794837099992,9.80927155200014],[-84.69839433499996,9.868841864000146],[-84.70970618399993,9.877590236000131],[-84.72594153599988,9.884466864000132],[-84.72378495999988,9.899603583000129],[-84.70970618399993,9.922552802000126],[-84.73428300699996,9.9425723330001],[-84.73879960799991,9.952297268000137],[-84.73363196499992,9.966945705000143],[-84.76231848899997,9.975653387000136],[-84.85094153599994,9.966945705000143],[-84.85094153599994,9.974391994000129],[-84.8386531239999,9.979152736000131],[-84.82290605399993,9.980861721000123],[-84.78823808499996,9.980617580000086],[-84.78823808499996,9.987453518000109],[-84.8200984369999,9.98895905200007],[-84.84854081899991,9.993963934000107],[-84.87425696499986,10.002630927000098],[-84.89810136599992,10.015326239000146],[-84.92825273299988,10.040106512000122],[-84.93285071499989,10.045477606000176],[-84.93932044199991,10.046942450000131],[-84.95201575399994,10.055446682000165],[-84.9609675769999,10.064886786000088],[-84.95616614499991,10.069362697000145],[-84.97288977799992,10.077948309000163],[-85.01390540299994,10.115993557000152],[-85.03575598899988,10.126735744000172],[-85.0460505849999,10.136135158000101],[-85.05235755099994,10.138251044000114],[-85.05736243399988,10.136013088000125],[-85.06167558499988,10.132269598000093],[-85.06737219999988,10.131415106000174],[-85.07620195199993,10.138251044000114],[-85.07030188699989,10.148871161000145],[-85.06834876199994,10.155666408000087],[-85.0728653639999,10.158758856000162],[-85.07677161399988,10.16058991100013],[-85.08987382699988,10.172390041000114],[-85.10789954299989,10.166571356000146],[-85.17556718699993,10.16555410400018],[-85.19347083199989,10.170111395000133],[-85.20946204299989,10.181179104000165],[-85.2345271479999,10.207098700000174],[-85.2345271479999,10.21332428600013],[-85.2287898429999,10.231594143000109],[-85.24624589799987,10.25263092700014],[-85.28917395699995,10.282253322000173],[-85.28307044199994,10.262030341000155],[-85.25418046799984,10.24115631700009],[-85.24754798099988,10.216742255000142],[-85.24490312399988,10.170355536000088],[-85.23888098899988,10.143133856000176],[-85.22708085799991,10.124579169000171],[-85.24010169199988,10.116278387000179],[-85.23827063699991,10.102443752000099],[-85.22647050699993,10.089382229000122],[-85.19591223899991,10.078762111000074],[-85.18504798099994,10.067084052000084],[-85.17186438699989,10.042059637000165],[-85.16563880099991,10.042059637000165],[-85.15758216099988,10.045355536000102],[-85.1540828119999,10.042669989000132],[-85.15257727799985,10.035834052000112],[-85.16128495999992,10.035183010000154],[-85.17027747299994,10.0363223330001],[-85.17882239499997,10.038845119000115],[-85.18614661399987,10.042059637000165],[-85.18614661399987,10.035834052000112],[-85.16738847599991,10.01939524900011],[-85.14452063699991,9.999335028000147],[-85.08385169199994,9.974920966000113],[-85.07620195199993,9.9706485050001],[-85.06908118399988,9.973415432000152],[-85.05313066299996,9.966945705000143],[-85.01451575399989,9.94497304900014],[-84.99669348899991,9.93927643400015],[-84.97756913999984,9.93878815300016],[-84.95958411399991,9.946478583000086],[-84.94778398299985,9.93716054900014],[-84.92259680899988,9.921454169000171],[-84.91112219999994,9.911688544000143],[-84.91112219999994,9.905462958000086],[-84.9310603509999,9.90070221600017],[-84.93016516799992,9.886297919000114],[-84.91808020699992,9.869533596000096],[-84.90493730399996,9.857082424000083],[-84.91307532499988,9.854315497000115],[-84.92076575399989,9.84894440300016],[-84.93285071499989,9.83661530200011],[-84.91808020699992,9.830023505000142],[-84.90062415299985,9.8280703800001],[-84.86461341099988,9.829169012000136],[-84.86461341099988,9.822943427000084],[-84.87869218699984,9.81354401200015],[-84.89659583199989,9.806097723000079],[-84.91201738199992,9.795843817000147],[-84.9186091789999,9.778265692000119],[-84.92235266799992,9.77419668200015],[-84.94591223899988,9.760891018000137],[-84.95034745999993,9.753566799000126],[-84.95547441299996,9.735134182000095],[-84.95958411399991,9.727362372000101],[-84.99095618399986,9.742743231000134],[-85.0075984369999,9.744086005000128],[-85.01480058499993,9.730780341000113],[-85.01036536399997,9.7226016300001],[-84.99498450399992,9.703273830000072],[-84.99742591099994,9.699408270000076],[-85.02981523299985,9.6837425800001],[-85.03526770699989,9.68239980700011],[-85.03892981699994,9.67727285400018],[-85.06261145699997,9.665309963000155],[-85.06749426999994,9.657375393000095],[-85.08934485599987,9.58856842700011],[-85.09850012899994,9.571071682000165],[-85.11046301999987,9.55544668200018],[-85.1178279289999,9.55544668200018],[-85.1457820299999,9.612616278000147],[-85.22911536399994,9.724391994000172],[-85.2345271479999,9.737331447000187],[-85.23863684799994,9.742010809000107],[-85.24791419199988,9.747748114000089],[-85.27297929599987,9.758002020000106],[-85.2750544909999,9.76593659100017],[-85.27468827999986,9.775051174000154],[-85.27550208199989,9.782009182000152],[-85.29930579299989,9.80801015800013],[-85.33242753799992,9.82660553600013],[-85.43997148299994,9.864528713000155],[-85.44957434799991,9.862494208000129],[-85.4638972649999,9.852606512000108],[-85.4703669909999,9.85024648600016],[-85.48001054599987,9.852484442000133],[-85.49356035099993,9.862250067000089],[-85.5045466789999,9.864528713000155],[-85.51097571499992,9.865057684000135],[-85.5132136709999,9.866644598000065],[-85.51451575399989,9.869655666000156],[-85.51817786399994,9.874172268000123],[-85.52517656199993,9.877386786000088],[-85.53099524599989,9.875881252000127],[-85.53482011599986,9.872707424000152],[-85.5355525379999,9.870754299000112],[-85.59207109299984,9.888739325000145],[-85.61913001199989,9.892889716000099],[-85.62551835799991,9.896795966000083],[-85.6306046209999,9.901556708000086],[-85.63857988199987,9.905462958000086],[-85.64981035099986,9.904974677000096],[-85.65721594999988,9.900539455000114],[-85.66380774599995,9.900091864000117],[-85.67271887899996,9.911688544000143],[-85.66555742099993,9.930324611000131],[-85.67613684799987,9.955511786000102],[-85.77855383999989,10.079901434000107],[-85.78465735599988,10.090887762000165],[-85.7927139959999,10.117824611000131],[-85.80504309799994,10.136664130000085],[-85.84402421799993,10.231024481000134],[-85.8475642569999,10.259344794000171],[-85.85183671799993,10.2765567080001],[-85.85769609299987,10.289089260000095],[-85.84390214799996,10.302435614000117],[-85.8381648429999,10.31203847900018],[-85.84032141799989,10.32013580900012],[-85.86160234299987,10.346991278000104],[-85.87498938699986,10.355047919000128],[-85.86758378799986,10.364894924000154],[-85.8502498039999,10.378485419000114],[-85.8385310539999,10.39545319200009],[-85.8303523429999,10.41201406500015],[-85.81326249899983,10.405300197000102],[-85.8039851549999,10.41592031500015],[-85.79674231699995,10.431423244000158],[-85.77550208199989,10.447292385000182],[-85.78372148299988,10.465236721000137],[-85.79881751199989,10.4839541690001],[-85.80923417899987,10.494533596000153],[-85.80296790299992,10.498806057000166],[-85.80028235599985,10.500270901000121],[-85.79564368399991,10.501369533000073],[-85.79564368399991,10.508205471000096],[-85.80923417899987,10.508205471000096],[-85.80923417899987,10.515041408000116],[-85.79784094999991,10.517157294000114],[-85.79051673099991,10.52411530200011],[-85.78197180899988,10.54299551000014],[-85.77513587099989,10.54299551000014],[-85.76121985599988,10.531805731000134],[-85.74160722599993,10.539821682000165],[-85.72158769399996,10.5509300800001],[-85.70628821499992,10.549139716000111],[-85.70006262899993,10.549139716000111],[-85.70140540299994,10.562282619000172],[-85.69798743399991,10.568630276000107],[-85.69229081899994,10.572088934000107],[-85.68700110599988,10.576483466000099],[-85.67784583199989,10.59210846600017],[-85.67422441299993,10.591253973000079],[-85.66185462099989,10.590114651000135],[-85.63174394399995,10.621161200000145],[-85.63402258999992,10.629461981000132],[-85.6393123039999,10.63580963700015],[-85.6522517569999,10.644720770000104],[-85.69322669199994,10.603786526000164],[-85.69420325399992,10.60708242400011],[-85.69408118399994,10.610012111000131],[-85.69517981699988,10.611639716000155],[-85.70006262899993,10.61123281500015],[-85.70006262899993,10.617458401000107],[-85.68846594999994,10.629950262000122],[-85.68138587099986,10.635199286000102],[-85.67271887899996,10.637884833000086],[-85.67955481699988,10.644720770000104],[-85.68044999899988,10.64382558800011],[-85.68179277299987,10.641913153000147],[-85.6838679679999,10.639797268000137],[-85.68700110599988,10.637884833000086],[-85.68447831899994,10.64618561400006],[-85.68399003799996,10.649074611000088],[-85.67271887899996,10.652167059000163],[-85.67271887899996,10.658392645000134],[-85.67955481699988,10.658392645000134],[-85.67955481699988,10.665838934000107],[-85.66287187399985,10.678981838000169],[-85.65957597599993,10.712958075000103],[-85.66527258999987,10.778835354000151],[-85.6802872389999,10.796332098000105],[-85.71336829299986,10.810858466000141],[-85.7464900379999,10.816188869000115],[-85.76150468699991,10.80609772300015],[-85.76748613199992,10.80609772300015],[-85.79507402299996,10.828640041000126],[-85.8030899729999,10.837184963000155],[-85.79832923099991,10.835638739000116],[-85.79238847599987,10.838324286000102],[-85.78990637899994,10.843898830000098],[-85.79564368399991,10.850856838000183],[-85.80296790299992,10.852484442000117],[-85.82229570199988,10.850612697000145],[-85.8303523429999,10.850856838000183],[-85.85977128799988,10.861761786000073],[-85.88292395699992,10.875148830000072],[-85.90880286399992,10.886419989000075],[-85.94644120999993,10.89114004100017],[-85.94644120999993,10.898586330000143],[-85.92381751199986,10.90420156500015],[-85.88149980399996,10.92316315300016],[-85.85769609299987,10.925930080000114],[-85.86148027299988,10.932074286000102],[-85.86449133999989,10.935858466000127],[-85.86913001199991,10.938137111000103],[-85.87816321499992,10.939601955000157],[-85.87816321499992,10.946356512000179],[-85.82872473899997,10.949286200000117],[-85.81615149599989,10.946356512000179],[-85.81090247299989,10.938666083000072],[-85.8121638659999,10.929714260000138],[-85.81460527299993,10.922267971000068],[-85.8126521479999,10.919094143000109],[-85.80850175699995,10.917181708000143],[-85.79564368399991,10.905462958000058],[-85.78941809799997,10.905462958000058],[-85.78197180899988,10.912868557000136],[-85.78197180899988,10.919094143000109],[-85.79336503799995,10.93024323100012],[-85.78246008999989,10.937445380000055],[-85.7611384759999,10.940578518000123],[-85.74099687399988,10.939601955000157],[-85.73416093699987,10.936428127000099],[-85.72520911399994,10.927679755000113],[-85.7170710929999,10.925930080000114],[-85.71056067599991,10.928290106000162],[-85.70779374899988,10.934027411000145],[-85.7088923819999,10.940822658000073],[-85.71373450399989,10.946356512000179],[-85.71373450399989,10.953802802000068],[-85.6988826159999,10.959255276000107],[-85.69469153599988,10.970241604000165],[-85.69815019399987,10.983221747000158],[-85.70628821499992,10.994818427000084],[-85.71353105399993,11.000026760000168],[-85.73037675699993,11.006903387000179],[-85.73757890499988,11.011867580000128],[-85.7460017569999,11.020656643000095],[-85.7460017569999,11.023016669000143],[-85.74095618399988,11.024074611000103],[-85.73416093699987,11.028957424000083],[-85.71886145699989,11.042914130000142],[-85.70999101499984,11.038112697000159],[-85.69961503799993,11.028631903000145],[-85.67955481699988,11.028957424000083],[-85.66751054599987,11.039862372000144],[-85.67019609299987,11.054388739000089],[-85.68101966099994,11.068386135000154],[-85.69322669199994,11.077337958000086],[-85.70173092399993,11.080877997000158],[-85.7017355659085,11.080880181194232],[-85.67758215399994,11.11963246700013],[-85.65931453499988,11.158829041000075],[-85.63115087999992,11.196216939000138],[-85.59779374199994,11.209937032000155],[-85.56916499899995,11.195390117000116],[-85.54094966699998,11.170327046000097],[-85.50862605899991,11.152421163000128],[-85.40741776599991,11.115446676000175],[-85.27236140999992,11.066199036000114],[-85.23647823899995,11.053096617000122]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cuba","sov_a3":"CUB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cuba","adm0_a3":"CUB","geou_dif":0,"geounit":"Cuba","gu_a3":"CUB","su_dif":0,"subunit":"Cuba","su_a3":"CUB","brk_diff":0,"name":"Cuba","name_long":"Cuba","brk_a3":"CUB","brk_name":"Cuba","brk_group":null,"abbrev":"Cuba","postal":"CU","formal_en":"Republic of Cuba","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cuba","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":4,"pop_est":11451652,"gdp_md_est":108200,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"CU","iso_a2":"CU","iso_a3":"CUB","iso_n3":"192","un_a3":"192","wb_a2":"CU","wb_a3":"CUB","woe_id":23424793,"woe_id_eh":23424793,"woe_note":"Exact WOE match as country","adm0_a3_is":"CUB","adm0_a3_us":"CUB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CUB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-78.38418535099991,20.56216054900007],[-78.36725826699984,20.554632880000113],[-78.36449133999989,20.57021719],[-78.35529537699989,20.573431708000058],[-78.34357662699992,20.567328192000062],[-78.33311926999994,20.554632880000113],[-78.32607988199996,20.535101630000113],[-78.32835852799994,20.521307684000035],[-78.33897864499988,20.518011786],[-78.35728919199993,20.530422268],[-78.36896725199995,20.536525783000016],[-78.38385982999989,20.54059479400014],[-78.39659583199995,20.546454169000114],[-78.40977942599989,20.573635158000016],[-78.42784583199992,20.585638739000117],[-78.46344967399997,20.602443752000127],[-78.44920813699989,20.612941799000012],[-78.4335017569999,20.609523830000015],[-78.41893469999988,20.599107164000102],[-78.40819251199986,20.588771877000013],[-78.39342200399997,20.56997304900007],[-78.38418535099991,20.56216054900007]]],[[[-78.57848059799994,20.657660223000065],[-78.5782771479999,20.648423570000105],[-78.58568274599989,20.643622137000122],[-78.59398352799988,20.642889716000084],[-78.60098222599993,20.645249742000047],[-78.60631262899992,20.650213934000092],[-78.61172441299996,20.65363190300009],[-78.61339270699997,20.657945054000024],[-78.60903886599988,20.660711981000148],[-78.6040746739999,20.658351955000015],[-78.57994544199991,20.653998114000117],[-78.58071855399993,20.657375393000123],[-78.58128821499992,20.65900299700014],[-78.5816951159999,20.661607164000046],[-78.57848059799994,20.657660223000065]]],[[[-78.63117428299995,20.653143622000115],[-78.64647376199991,20.652289130000113],[-78.65615800699987,20.65851471600017],[-78.65469316299989,20.663804429000052],[-78.65151933499992,20.66494375200007],[-78.64362545499996,20.663275458000058],[-78.62975012899987,20.658840236000103],[-78.63117428299995,20.653143622000115]]],[[[-78.4784236319999,20.729193427000112],[-78.47647050699996,20.725978908000158],[-78.46589107999992,20.731187242000047],[-78.45579993399994,20.731756903000033],[-78.43614661399988,20.725978908000158],[-78.4491267569999,20.71161530199999],[-78.4957576159999,20.70123932500009],[-78.51183020699997,20.69114817900011],[-78.52782141799989,20.69928620000003],[-78.54539954299992,20.704250393000095],[-78.53319251199994,20.712795315],[-78.4983617829999,20.720160223],[-78.48395748599992,20.73216380400011],[-78.47858639199987,20.730169989],[-78.4784236319999,20.729193427000112]]],[[[-78.75084387899994,20.725978908000158],[-78.76805579299989,20.712225653000033],[-78.79234778599997,20.719916083000058],[-78.81480872299994,20.737453518],[-78.82656816299993,20.753241278000147],[-78.80703691299996,20.757228908000044],[-78.78595943899992,20.74896881700012],[-78.75084387899994,20.725978908000158]]],[[[-75.48570716099991,20.749823309000035],[-75.48216712099992,20.737779039000127],[-75.50084387899989,20.737941799000097],[-75.5340876939999,20.746405341000024],[-75.55182857999989,20.74900950700011],[-75.56753495999996,20.75678131700012],[-75.57774817599989,20.769517320000162],[-75.57848059799991,20.787420966000052],[-75.52916419199994,20.795803127000013],[-75.51707923099994,20.794256903000147],[-75.50816809799989,20.78656647300012],[-75.49376380099991,20.761053778000033],[-75.48570716099991,20.749823309000035]]],[[[-78.92613684799989,20.820746161000116],[-78.92585201699987,20.807847398000106],[-78.87661699099996,20.809230861000103],[-78.85855058499993,20.799546617000132],[-78.84703528599991,20.773138739000146],[-78.85448157499988,20.773138739000146],[-78.87149003799993,20.784857489000117],[-78.94163977799991,20.792629299000126],[-78.96434485599985,20.81411367400007],[-78.95213782499988,20.831366278000147],[-78.94225012899997,20.83958567900008],[-78.93272864499997,20.838934637000122],[-78.92808997299994,20.831122137000037],[-78.92613684799989,20.820746161000116]]],[[[-78.9827367829999,20.844631252000013],[-78.98888098899988,20.839056708],[-78.99168860599991,20.84544505400011],[-78.99510657499994,20.849188544000143],[-79.01891028599994,20.855047919000086],[-79.06920325399989,20.88597239800013],[-79.07982337099992,20.897284247000115],[-79.0670466789999,20.899155992000157],[-79.04881751199991,20.898016669000143],[-79.03229732999992,20.89374420800011],[-79.02521725199995,20.886664130000085],[-79.01353919199995,20.882269598000093],[-78.98997962099992,20.8796247420001],[-78.97118079299989,20.873521226000108],[-78.97398841099991,20.858791408000016],[-78.9827367829999,20.844631252000013]]],[[[-79.18211829299986,21.00800202],[-79.13768469999994,20.982652085000055],[-79.09894771999988,20.94700755400011],[-79.07359778599997,20.917710679],[-79.07860266799992,20.918280341000138],[-79.09406490799991,20.917710679],[-79.09129798099988,20.912095445000162],[-79.08722896999993,20.897284247000115],[-79.11558997299994,20.910834052000084],[-79.13451087099989,20.927069403000033],[-79.16917883999986,20.964911200000145],[-79.16917883999986,20.972357489000142],[-79.15176347599987,20.96605052300002],[-79.13890540299985,20.954657294000025],[-79.12755286399988,20.941717841000028],[-79.1145727199999,20.93081289300015],[-79.12767493399986,20.950873114000032],[-79.14981035099993,20.976792710000108],[-79.17503821499989,20.99701569200012],[-79.19709225199988,20.99970123900003],[-79.19709225199988,20.99225495000003],[-79.19375566299996,20.98871491100006],[-79.19286048099988,20.986761786],[-79.19220943899992,20.984279690000093],[-79.18960527299993,20.97919342700005],[-79.20099850199989,20.982407945000105],[-79.21076412699992,20.98777903900016],[-79.2186580069999,20.99551015800007],[-79.22443600199995,21.00584544500019],[-79.18211829299986,21.00800202]]],[[[-79.33189856699988,21.11318594000015],[-79.29263261599988,21.074774481000034],[-79.30801347599991,21.068793036000116],[-79.32477779899995,21.06830475500014],[-79.34072831899994,21.072902736000074],[-79.35411536399994,21.082220770000035],[-79.34740149599992,21.081691799000126],[-79.32681230399987,21.082220770000035],[-79.33116614499995,21.093003648000106],[-79.33853105399996,21.09983958500014],[-79.34679114499994,21.101263739],[-79.35411536399994,21.09589264500015],[-79.38023841099991,21.11383698100009],[-79.3889054029999,21.12323639500012],[-79.3573298819999,21.127590236000017],[-79.33189856699988,21.11318594000015]]],[[[-82.08836829299989,21.56818268400015],[-82.11001542899986,21.567450262000122],[-82.11424719999988,21.570298570000077],[-82.10216223899988,21.57444896],[-82.0821833979999,21.59003327],[-82.07119706899994,21.59296295800011],[-82.06183834499993,21.59837474200016],[-82.05451412699992,21.606146552000055],[-82.04832923099985,21.610663153000033],[-82.01976477799984,21.621039130000113],[-82.0078832669999,21.621527411],[-81.99665279899992,21.626613674000126],[-81.9876195949999,21.63483307500003],[-81.98412024599992,21.641913153000086],[-81.98289954299989,21.64630768400015],[-81.98119055899988,21.647772528000033],[-81.97362219999994,21.63987864800005],[-81.9727677069999,21.622219143000148],[-81.98981686099997,21.60883209800015],[-82.02944902299993,21.595160223],[-82.05858313699989,21.58144765800007],[-82.06529700399992,21.57973867400007],[-82.07046464799993,21.576483466000028],[-82.07433020699992,21.572211005000113],[-82.08836829299989,21.56818268400015]]],[[[-81.87010657499988,21.639471747000144],[-81.90135657499985,21.615627346000068],[-81.91885331899991,21.61546458500011],[-81.93236243399988,21.628485419000086],[-81.9356990229999,21.641913153000086],[-81.93285071499989,21.640204169000086],[-81.92218990799992,21.629339911],[-81.90562903599997,21.631008205000015],[-81.89220130099997,21.641058661],[-81.8881729809999,21.647040106000087],[-81.89207923099991,21.64740631700012],[-81.88914954299989,21.649359442000062],[-81.85920162699992,21.661566473000118],[-81.85252844999985,21.66356028900016],[-81.83901933499988,21.666205145000063],[-81.83779863199987,21.661078192000062],[-81.85265051999994,21.649888414000046],[-81.87010657499988,21.639471747000144]]],[[[-81.41755123599992,21.667914130000085],[-81.49669348899991,21.618475653000115],[-81.52769934799994,21.60586172100012],[-81.56065833199992,21.602972723],[-81.56078040299988,21.622381903000118],[-81.55138098899994,21.627590236000017],[-81.5235082669999,21.623439846000068],[-81.51244055899986,21.630845445000045],[-81.50304114499994,21.645697333000115],[-81.49351966099994,21.657049872000087],[-81.48216712099986,21.65387604400003],[-81.4690649079999,21.648179429000137],[-81.45449785099987,21.651800848],[-81.44269771999988,21.659979559000092],[-81.43781490799991,21.667873440000093],[-81.43171139199984,21.685003973000036],[-81.41730709499987,21.697211005],[-81.3859757149999,21.71596914300015],[-81.37767493399986,21.718939520000063],[-81.37165279899995,21.714748440000122],[-81.36937415299988,21.708563544000143],[-81.37230383999989,21.705389716000084],[-81.37653561099992,21.703070380000142],[-81.41755123599992,21.667914130000085]]],[[[-82.85899817599993,21.933661200000174],[-82.7774958979999,21.91486237200003],[-82.72142493399988,21.900091864000146],[-82.70372473899997,21.89280833500011],[-82.69017493399991,21.881822007000082],[-82.68472245999986,21.866156317],[-82.68822180899984,21.847642320000162],[-82.69347083199995,21.835435289000102],[-82.69253495999996,21.824042059000035],[-82.67788652299996,21.807806708],[-82.63296464799996,21.77362702],[-82.61953691299995,21.774318752000124],[-82.60960852799984,21.76959870000003],[-82.60293535099989,21.758490302000112],[-82.59788977799988,21.74603913],[-82.5926000639999,21.736761786000145],[-82.59235592399995,21.72907135600012],[-82.5977270169999,21.717433986000017],[-82.60899817599989,21.698553778000175],[-82.61644446499989,21.698553778000175],[-82.6110733709999,21.690130927000112],[-82.60952714799987,21.681586005000025],[-82.61143958199992,21.672919012000122],[-82.61644446499989,21.664455471000068],[-82.59386145699989,21.65106842700008],[-82.58189856699997,21.645738023000106],[-82.56802324099988,21.643947658000016],[-82.56802324099988,21.636542059000035],[-82.57518469999991,21.62470123900006],[-82.56712805899987,21.612005927000112],[-82.55264238199993,21.601385809000146],[-82.54076087099989,21.595526434000035],[-82.55089270699995,21.580267645000063],[-82.57144120999988,21.559759833],[-82.59463456899991,21.541815497000144],[-82.61270097599993,21.534084377000127],[-82.63145911399991,21.530747789000102],[-82.75918535099993,21.470607815000122],[-82.83556067599994,21.444728908000016],[-82.90623938699991,21.43748607000019],[-82.91812089799996,21.44159577000015],[-82.92723548099984,21.45099518400015],[-82.99258378799993,21.45213450700011],[-83.00226803299998,21.455023505000142],[-83.02183997299994,21.463080145000063],[-83.03355872299994,21.465806382000054],[-83.06948808499993,21.46515534100008],[-83.07852128799993,21.46922435100005],[-83.11115475199998,21.50975169500016],[-83.12360592399989,21.520453192],[-83.15172278599991,21.53790924700014],[-83.16209876199989,21.549261786000116],[-83.17137610599985,21.568264065000122],[-83.17821204299985,21.595526434000035],[-83.18952389199984,21.620266018],[-83.1918025379999,21.630316473000065],[-83.18504798099988,21.630316473000065],[-83.17393958199995,21.62010325700014],[-83.12360592399989,21.58563873900003],[-83.11701412699992,21.571722723000118],[-83.10130774599986,21.55980052299999],[-83.08202063699991,21.551459052000112],[-83.0652563139999,21.54840729400003],[-83.02391516799989,21.54840729400003],[-83.02057857999995,21.552476304],[-82.99258378799993,21.575100002000156],[-82.97691809799994,21.5848656270001],[-82.9692276679999,21.591253973],[-82.96593176999988,21.599269924000154],[-82.9627986319999,21.598293361000074],[-82.95763098899991,21.592352606000148],[-82.95653235599988,21.58218008000001],[-82.96593176999988,21.568264065000122],[-82.95909583199997,21.56199778900016],[-82.94102942599994,21.59308502800009],[-82.94611568899987,21.604641018],[-82.9759008449999,21.60919830900015],[-82.98766028599997,21.619777736000017],[-83.07347571499992,21.76056549700003],[-83.0856013659999,21.800279039000042],[-83.0751846999999,21.843166408000016],[-83.03282630099991,21.87433502800009],[-83.02733313699989,21.88727448100009],[-83.01866614499988,21.89769114799999],[-82.99852454299995,21.91095612200003],[-82.97569739499994,21.921820380000113],[-82.95909583199997,21.925116278000147],[-82.97008216099994,21.929999091000028],[-82.98102779899989,21.931952216000166],[-82.99258378799993,21.931952216000166],[-83.00470943899991,21.93764883000013],[-83.00523841099991,21.9396019550001],[-82.99876868399988,21.941839911000088],[-82.98949133999994,21.948431708000058],[-82.85899817599993,21.933661200000174]]],[[[-82.60289466099991,21.92194245000009],[-82.63011633999992,21.92072174700014],[-82.65786699099988,21.932074286000145],[-82.66808020699992,21.94912344],[-82.64517167899993,21.954535223000118],[-82.60773678299998,21.938706773000106],[-82.5911759109999,21.9266625020001],[-82.60289466099991,21.92194245000009]]],[[[-83.56810462099992,21.96621328300013],[-83.55284583199995,21.961371161000056],[-83.55036373599992,21.961493231000034],[-83.5453181629999,21.961249091000084],[-83.55064856699997,21.95941803600003],[-83.57013912699995,21.95880768400015],[-83.59260006399987,21.960109768000148],[-83.60781816299993,21.966498114000057],[-83.59780839799996,21.97174713700015],[-83.56810462099992,21.96621328300013]]],[[[-81.54938717399992,22.05841705900009],[-81.54702714799996,22.044582424],[-81.55492102799994,22.044012762000037],[-81.56541907499991,22.04987213700018],[-81.57575436099991,22.049058335000055],[-81.58185787699989,22.050604559000092],[-81.58633378799996,22.05678945500007],[-81.58885657499987,22.064357815000122],[-81.58885657499987,22.072699286],[-81.58250891799995,22.076605536],[-81.57152258999989,22.074123440000065],[-81.56114661399988,22.069159247000115],[-81.55626380099991,22.065985419000143],[-81.54938717399992,22.05841705900009]]],[[[-77.88805091099994,22.075995184000035],[-77.87169348899991,22.075628973000036],[-77.86042232999992,22.08095937700007],[-77.85081946499986,22.088690497000087],[-77.83967037699992,22.09585195500013],[-77.82249915299991,22.100531317000062],[-77.80850175699993,22.099554755000085],[-77.79637610599985,22.09503815300003],[-77.78502356699988,22.089016018000038],[-77.78123938699986,22.084784247000087],[-77.77196204299989,22.071356512000094],[-77.76768958199989,22.06850820500007],[-77.75910396999987,22.07062409100017],[-77.74469967399992,22.080023505],[-77.73721269399994,22.082180080000015],[-77.72630774599986,22.077622789000046],[-77.69420325399989,22.0580101580001],[-77.68260657499988,22.054266669000143],[-77.66966712099989,22.060858466000028],[-77.66144771999987,22.069322007000082],[-77.65172278599994,22.070257880000057],[-77.6341853509999,22.054266669000143],[-77.62657630099994,22.04205963700018],[-77.62437903599994,22.029730536000145],[-77.62706458199992,22.016180731000176],[-77.64867102799994,21.971136786],[-77.64557857999993,21.961493231000034],[-77.6341853509999,21.945013739000146],[-77.64964758999992,21.944484768000066],[-77.66152910099996,21.940130927000084],[-77.68260657499988,21.925116278000147],[-77.67788652299987,21.943019924000012],[-77.68431555899988,21.951157945000105],[-77.69505774599989,21.948065497000027],[-77.70311438699994,21.931952216000166],[-77.70042883999986,21.928859768000095],[-77.69615637899994,21.92226797100001],[-77.69542395699992,21.915187893000148],[-77.70311438699994,21.910834052000055],[-77.7088923819999,21.91217682500006],[-77.71263587099992,21.916937567000147],[-77.71589107999998,21.923041083000115],[-77.72817949099993,21.93878815300009],[-77.73298092399992,21.948187567],[-77.73912512899989,21.95722077000012],[-77.75153561099991,21.966131903000147],[-77.76577714799993,21.95978424700003],[-77.78726152299996,21.964056708000143],[-77.8086645169999,21.97357819200012],[-77.82258053299998,21.9831403670001],[-77.82510331899991,21.991848049000012],[-77.82115637899992,22.00242747600005],[-77.81529700399997,22.013617255000057],[-77.81236731699994,22.02411530200014],[-77.81712805899986,22.031317450000174],[-77.82795162699995,22.036118882000054],[-77.84707597599993,22.041205145000088],[-77.84203040299988,22.03261953300007],[-77.84007727799994,22.023993231000148],[-77.84166419199995,22.015366929000052],[-77.84707597599993,22.007025458],[-77.85391191299993,22.02753327000015],[-77.8600968089999,22.02753327000015],[-77.87022864499993,22.013251044000143],[-77.88658606699997,22.009222723000093],[-77.90184485599994,22.015204169000086],[-77.90855872299989,22.03123607000019],[-77.91722571499989,22.043158270000117],[-77.93447831899988,22.05613841400013],[-77.94713294199997,22.072821356000144],[-77.94204667899993,22.09585195500013],[-77.94945227799991,22.102606512000147],[-77.93016516799989,22.10211823100009],[-77.91624915299991,22.093817450000117],[-77.90363521999993,22.08323802300005],[-77.88805091099994,22.075995184000035]]],[[[-77.7577205069999,22.17837148600013],[-77.78172766799995,22.177801825000174],[-77.80711829299985,22.202582098000118],[-77.84707597599993,22.260321356000176],[-77.83958899599995,22.27374909100017],[-77.85069739499988,22.288804429],[-77.86847896999987,22.301743882],[-77.88068600199995,22.30874258000007],[-77.85610917899993,22.312445380000113],[-77.83421790299987,22.295884507000054],[-77.81843014199984,22.27114492400007],[-77.80573482999996,22.228216864],[-77.79015051999988,22.211493231000176],[-77.77204342399997,22.196112372000027],[-77.7577205069999,22.17837148600013]]],[[[-77.98741614499994,22.23672109600012],[-77.97862708199997,22.233221747000144],[-77.95396887899997,22.23651764500009],[-77.94204667899993,22.232977606000087],[-77.93512936099992,22.224025783000073],[-77.93057206899991,22.21385325700011],[-77.92341061099995,22.206366278000147],[-77.90855872299989,22.205023505000085],[-77.92162024599986,22.212469794000143],[-77.91763261599988,22.21881745000017],[-77.91319739499991,22.224310614],[-77.90807044199991,22.228949286000113],[-77.90233313699991,22.232977606000087],[-77.89484615799995,22.220851955000015],[-77.88487708199997,22.214789130000113],[-77.87507076699984,22.21629466400016],[-77.86758378799988,22.22675202000015],[-77.85960852799991,22.209621486000017],[-77.87047278599991,22.202215887000122],[-77.88866126199987,22.198431708],[-77.90233313699991,22.192043361000074],[-77.8907771479999,22.189154364000142],[-77.88219153599988,22.183294989],[-77.87490800699987,22.17670319200012],[-77.86758378799988,22.17153554900004],[-77.85700436099992,22.16819896],[-77.83641516799989,22.164211330000015],[-77.82599850199989,22.15790436400009],[-77.84850012899989,22.116034247000144],[-77.86343339799993,22.099188544000143],[-77.8744197259999,22.10952383000007],[-77.87897701699983,22.107570705000043],[-77.89049231699997,22.104641018],[-77.89488684799994,22.102606512000147],[-77.8981013659999,22.110296942],[-77.90074622299987,22.114488023000106],[-77.90855872299989,22.12311432500003],[-77.91283118399991,22.143215236000074],[-77.93394934799991,22.15021393400015],[-77.95075436099992,22.14215729400003],[-77.94204667899993,22.11688873900006],[-77.95494544199993,22.122259833000115],[-77.99010169199991,22.14183177299999],[-77.99730383999986,22.147365627000013],[-78.00413977799988,22.162258205000068],[-78.03604081899988,22.18341705900015],[-78.04572506399995,22.198879299000094],[-78.0294490229999,22.20453522300009],[-78.01646887899992,22.2174339860001],[-78.00792395699989,22.233832098],[-78.00475012899992,22.250067450000145],[-78.00332597599996,22.28636302300005],[-78.00682532499984,22.29767487200003],[-78.01781165299991,22.314886786000145],[-78.00267493399991,22.312689520000063],[-77.98717200399989,22.307806708],[-77.97492428299992,22.298895575000145],[-77.96996008999989,22.284816799000012],[-77.97565670499995,22.27562083500014],[-77.98648027299996,22.265570380000057],[-77.99339758999986,22.253119208000143],[-77.98741614499994,22.23672109600012]]],[[[-78.19762122299989,22.437201239000142],[-78.18968665299992,22.42475006700012],[-78.16974850199995,22.435044664000046],[-78.14419511599996,22.42894114800005],[-78.11904863199987,22.41376373900006],[-78.10033118399991,22.396877346000064],[-78.09072831899994,22.384466864000146],[-78.08202063699994,22.369696356000148],[-78.07555091099994,22.354071356000176],[-78.07164466099994,22.320868231000144],[-78.0670466789999,22.310451565000065],[-78.04572506399995,22.288234768],[-78.03722083199992,22.28803131700006],[-78.02334550699993,22.28302643400012],[-78.01097571499989,22.2813988300001],[-78.02765865799992,22.266017971000153],[-78.05158443899998,22.272202867000132],[-78.10033118399991,22.30190664300015],[-78.12214107999995,22.305853583000143],[-78.14631100199995,22.305853583000143],[-78.17153886599993,22.310736395],[-78.19652258999994,22.329169012000037],[-78.17536373599995,22.34162018400015],[-78.18488521999984,22.35822174700003],[-78.20518958199995,22.367987372000144],[-78.21642005099994,22.35960521],[-78.21768144399992,22.350287177000055],[-78.22154700399994,22.339911200000145],[-78.22813880099991,22.33344147300015],[-78.23745683499988,22.336004950000145],[-78.24372311099992,22.346625067],[-78.2442113919999,22.35911692900011],[-78.23961341099987,22.36692942900002],[-78.23070227799994,22.36334870000003],[-78.23045813699987,22.380764065],[-78.24632727799991,22.400620835000023],[-78.26976477799991,22.410142320000105],[-78.2921443349999,22.396877346000064],[-78.29723059799994,22.40204498900009],[-78.3017471999999,22.403225002000013],[-78.30654863199987,22.403021552000055],[-78.31261145699997,22.40428294500005],[-78.2987361319999,22.420396226000136],[-78.27904212099995,22.425441799000065],[-78.24372311099992,22.42475006700012],[-78.21157792899994,22.43659088700018],[-78.19762122299989,22.437201239000142]]],[[[-78.72883053299995,22.541652736000074],[-78.73619544199994,22.530585028000033],[-78.73875891799985,22.52431875200007],[-78.75698808499993,22.51854075700011],[-78.76598059799994,22.51878489800005],[-78.76789303299992,22.52521393400015],[-78.76813717399995,22.541652736000074],[-78.76219641799995,22.543524481000034],[-78.74828040299985,22.539780992000104],[-78.73888098899994,22.541001695000105],[-78.73766028599991,22.54840729400011],[-78.73542232999992,22.55125560100005],[-78.72826087099989,22.547919012000122],[-78.72883053299995,22.541652736000074]]],[[[-78.35204016799986,22.543036200000145],[-78.34056555899991,22.528469143000034],[-78.34422766799986,22.52985260600009],[-78.35358639199988,22.534613348],[-78.34911048099994,22.521144924000012],[-78.28221594999991,22.457464911000056],[-78.27847245999988,22.448675848000093],[-78.28148352799988,22.438788153000175],[-78.28868567599991,22.43891022300015],[-78.29767818899992,22.44310130400008],[-78.30577551999997,22.44525788000008],[-78.42992102799992,22.418605861000128],[-78.42992102799992,22.42475006700012],[-78.42780514199993,22.427801825000117],[-78.42528235599991,22.43032461100013],[-78.42332923099985,22.434393622000087],[-78.42247473899994,22.442124742000104],[-78.41954505099993,22.445868231000034],[-78.41295325399994,22.44537995000014],[-78.40607662699993,22.44403717700005],[-78.40196692599991,22.44525788000008],[-78.40111243399991,22.454657294000086],[-78.4046117829999,22.464300848000065],[-78.41283118399988,22.46881745000003],[-78.4261775379999,22.462591864000057],[-78.44566809799989,22.454575914000102],[-78.47276770699992,22.451157945000105],[-78.51805579299995,22.452093817],[-78.54084225199995,22.458482164000102],[-78.56822669199991,22.476304429],[-78.60952714799986,22.483465887000037],[-78.63841712099989,22.49201080900015],[-78.65599524599992,22.503119208],[-78.64159094999985,22.514146226000133],[-78.65697180899988,22.52997467700008],[-78.67735755099997,22.515692450000174],[-78.69359290299991,22.507513739000057],[-78.69619706899991,22.541449286000116],[-78.69253495999995,22.538723049000126],[-78.68317623599992,22.534613348],[-78.67975826699993,22.55442942900011],[-78.67064368399991,22.556545315000122],[-78.66002356699987,22.551906643],[-78.65217037699989,22.551703192000144],[-78.64126542899992,22.553371486000156],[-78.59691321499989,22.544867255000113],[-78.57258053299992,22.530462958000058],[-78.54442298099994,22.528387762000037],[-78.51598059799991,22.530462958000058],[-78.49079342399993,22.528469143000034],[-78.46642005099987,22.52985260600009],[-78.45055091099997,22.541734117000047],[-78.43683834499984,22.55540599200016],[-78.41905676999994,22.561957098000065],[-78.39635169199991,22.559800523000078],[-78.37238521999984,22.55353424700003],[-78.35204016799986,22.543036200000145]]],[[[-82.51878821499989,22.565741278000086],[-82.52285722599993,22.55931224200016],[-82.52745520699993,22.56346263200011],[-82.52529863199996,22.626369533000158],[-82.52782141799989,22.634751695000105],[-82.52830969999988,22.640041408000098],[-82.52456620999993,22.64085521000011],[-82.51976477799985,22.636664130000085],[-82.51593990799992,22.62913646000011],[-82.51447506399987,22.62514883000013],[-82.51081295499992,22.61318594],[-82.50772050699993,22.590073960000055],[-82.51357988199987,22.57245514500012],[-82.51878821499989,22.565741278000086]]],[[[-79.20641028599994,22.624416408000016],[-79.21324622299994,22.624416408000016],[-79.21320553299995,22.63104889500009],[-79.21642005099991,22.636623440000093],[-79.22451738199993,22.63971588700015],[-79.21572831899988,22.64301178600003],[-79.17686926999995,22.644680080000043],[-79.18976803299998,22.634507554],[-79.20641028599994,22.624416408000016]]],[[[-78.96117102799988,22.64911530199999],[-78.98420162699995,22.637681382000054],[-78.98985755099994,22.65143463700015],[-79.00450598899995,22.656724351000136],[-79.06444251199989,22.66034577],[-79.07461503799993,22.66425202],[-79.08722896999993,22.671820380000142],[-79.07038326699991,22.674017645000117],[-78.97655188699991,22.66852448100009],[-78.96084550699996,22.66014232000005],[-78.96117102799988,22.64911530199999]]],[[[-79.5699763659999,22.80410390800013],[-79.51797441299993,22.74957916900014],[-79.49632727799994,22.733140367000047],[-79.45026607999989,22.71991608300011],[-79.41291256399995,22.69135163000011],[-79.37197831899991,22.676662502000042],[-79.35191809799994,22.657294012000094],[-79.33560136599993,22.634670315000122],[-79.32681230399987,22.616522528000033],[-79.34947669199991,22.63532135600009],[-79.35753333199995,22.637681382000054],[-79.3663630849999,22.639349677000055],[-79.37555904899988,22.643215236000156],[-79.3889054029999,22.651312567],[-79.40379798099985,22.66364166900003],[-79.43736731699988,22.69847239799999],[-79.45539303299992,22.692287502000013],[-79.47374426999997,22.69432200700014],[-79.49083411399991,22.702053127000127],[-79.51357988199993,22.718410549000065],[-79.52009029899995,22.720689195000134],[-79.52403723899994,22.725002346000124],[-79.52546139199988,22.73639557500009],[-79.5288793609999,22.740301825000085],[-79.5448298819999,22.75141022300012],[-79.54967200399989,22.75372955900009],[-79.55797278599988,22.760158596],[-79.56309973899988,22.77423737200006],[-79.57176673099987,22.788275458],[-79.59064693899992,22.79466380400011],[-79.62035071499994,22.78314850500008],[-79.63365637899994,22.783840236000014],[-79.63532467399997,22.802150783000073],[-79.60692298099985,22.810248114],[-79.58653723899995,22.811224677],[-79.5699763659999,22.80410390800013]]],[[[-79.6800837879999,22.85944245000003],[-79.66637122299989,22.85211823100012],[-79.66079667899987,22.84516022300012],[-79.6698298819999,22.836249091000084],[-79.6852921209999,22.83368561400009],[-79.69237219999988,22.84015534100008],[-79.69229081899988,22.84715403900016],[-79.69517981699991,22.8504906270001],[-79.69908606699991,22.85248444200012],[-79.70457923099985,22.85175202],[-79.71153723899994,22.853461005000025],[-79.73086503799996,22.86611562700007],[-79.73985755099989,22.87579987200003],[-79.73875891799995,22.885809637000122],[-79.72618567599994,22.888983466000084],[-79.72826087099986,22.895331122000027],[-79.72752844999994,22.90395742400004],[-79.72215735599988,22.907212632000082],[-79.71544348899994,22.896144924000122],[-79.71833248599995,22.880031643000066],[-79.71129309799989,22.87783437700007],[-79.69200598899994,22.87392812700007],[-79.68586178299998,22.865301825000145],[-79.6800837879999,22.85944245000003]]],[[[-79.91100012899997,22.96637604400017],[-79.89537512899987,22.95917389500015],[-79.8871150379999,22.959702867000104],[-79.88784745999993,22.94627513200011],[-79.89854895699995,22.936712958000143],[-79.91982988199993,22.94928620000003],[-79.92935136599993,22.946478583000083],[-79.93980872299991,22.932847398000135],[-79.9496964179999,22.928412177000055],[-79.95742753799993,22.953029690000065],[-79.94302324099995,22.96112702],[-79.92723548099991,22.966294664000184],[-79.91100012899997,22.96637604400017]]],[[[-79.83495032499987,22.911810614],[-79.8465063139999,22.91034577000015],[-79.85802161399994,22.916937567000115],[-79.86449133999994,22.92597077000012],[-79.86148027299993,22.93195221600014],[-79.85529537699995,22.936712958000143],[-79.8529353509999,22.94163646],[-79.86188717399995,22.942938544000086],[-79.8711645169999,22.947699286],[-79.86107337099992,22.96259186400006],[-79.83853105399992,22.96808502800017],[-79.82628333199997,22.96466705900015],[-79.81847083199989,22.954331773000078],[-79.81704667899993,22.947251695000105],[-79.82310950399992,22.942450262000122],[-79.83507239499994,22.93895091400013],[-79.84215247299991,22.931789455000068],[-79.83763587099986,22.926174221000068],[-79.82900956899994,22.924750067],[-79.82738196499992,22.91913483300003],[-79.83495032499987,22.911810614]]],[[[-80.25161699099993,22.986517645000035],[-80.24250240799995,22.98257070500013],[-80.23607337099995,22.976752020000063],[-80.23253333199995,22.96893952000009],[-80.23180091099994,22.95917389500015],[-80.33250891799992,22.9753278670001],[-80.3478083979999,22.986517645000035],[-80.3417048819999,22.991034247000172],[-80.33576412699998,22.993353583000115],[-80.32896887899994,22.99225495000009],[-80.32054602799991,22.986517645000035],[-80.27188066299996,23.00869375200007],[-80.24974524599989,23.010931708000058],[-80.23180091099994,23.000148830000157],[-80.23696855399993,22.997300523000106],[-80.24669348899988,22.98944733300014],[-80.25161699099993,22.986517645000035]]],[[[-80.06460527299993,23.058010158000073],[-80.06139075399996,23.049790757000082],[-80.05760657499985,23.04242584800006],[-80.05357825399997,23.029201565000122],[-80.05630449099992,23.026678778000033],[-80.06191972599996,23.03424713700015],[-80.06655839799987,23.038885809000092],[-80.0707087879999,23.03856028900016],[-80.0773005849999,23.03729889500006],[-80.08535722599993,23.038316148000135],[-80.09121660099987,23.042873440000065],[-80.09479732999995,23.048325914000102],[-80.09447180899991,23.050685940000065],[-80.09105383999992,23.049994208000115],[-80.08946692599997,23.055487372000144],[-80.08763587099989,23.06745026200018],[-80.07677161399991,23.069891669000025],[-80.06460527299993,23.058010158000073]]],[[[-80.14240475199992,23.075873114000117],[-80.1624242829999,23.067328192000033],[-80.18272864499988,23.070949611000074],[-80.22496497299991,23.08954498900006],[-80.22264563699986,23.099758205000015],[-80.21739661399997,23.107123114],[-80.21080481699988,23.11444733300003],[-80.20445716099997,23.12425364800005],[-80.19701087099989,23.12425364800005],[-80.19074459499984,23.111395575000117],[-80.17983964799996,23.100246486000103],[-80.16649329299995,23.092474677],[-80.15265865799994,23.08954498900006],[-80.13658606699997,23.089016018],[-80.1312556629999,23.08698151200015],[-80.13410396999984,23.08283112200003],[-80.14240475199992,23.075873114000117]]],[[[-80.24461829299985,23.085272528000147],[-80.25031490799995,23.084865627000156],[-80.25706946499989,23.08930084800012],[-80.26178951699988,23.096177476000136],[-80.26585852799984,23.103745835],[-80.27379309799991,23.106268622000087],[-80.2885636059999,23.114081122000087],[-80.29303951699987,23.115871486000074],[-80.29474850199995,23.120428778000033],[-80.29645748599995,23.12262604400003],[-80.30296790299988,23.126410223000118],[-80.30573482999992,23.13450755400008],[-80.29600989499997,23.140448309000092],[-80.2885636059999,23.141750393000095],[-80.28111731699991,23.142320054000052],[-80.27245032499994,23.140041408000073],[-80.27257239499991,23.13446686400009],[-80.26553300699993,23.127427476000108],[-80.25088456899991,23.115301825000117],[-80.24469967399995,23.10748932500003],[-80.24217688699994,23.104315497000144],[-80.23814856699997,23.09764232000019],[-80.23940995999988,23.091009833000115],[-80.24461829299985,23.085272528000147]]],[[[-80.37800045499988,23.147691148000106],[-80.38609778599994,23.145819403000147],[-80.3939509759999,23.146429755000025],[-80.41966712099986,23.143377997000115],[-80.42926998599991,23.13621653900016],[-80.4444067049999,23.130194403000147],[-80.45807857999995,23.12677643400015],[-80.45978756399985,23.128607489000117],[-80.4622289699999,23.135199286],[-80.4584041009999,23.13719310100005],[-80.44945227799988,23.13621653900016],[-80.4510798819999,23.14508698100012],[-80.44611568899984,23.15062083500014],[-80.43179277299996,23.15253327],[-80.42446855399993,23.15277741100014],[-80.40143795499998,23.154608466000028],[-80.39000403599991,23.15448639500015],[-80.3762914699999,23.152167059000178],[-80.37800045499988,23.147691148000106]]],[[[-80.84373938699991,23.17820872600005],[-80.82823645699992,23.165228583000058],[-80.82823645699992,23.178900458],[-80.82079016799992,23.178900458],[-80.81110592399997,23.16429271000008],[-80.80479895699992,23.157538153000033],[-80.80483964799993,23.152899481000116],[-80.8140356109999,23.14476146],[-80.83063717399995,23.135646877000013],[-80.84260006399988,23.136664130000057],[-80.85317949099993,23.141750393000095],[-80.86554928299995,23.14476146],[-80.8978165359999,23.141750393000095],[-80.92218990799994,23.133856512000122],[-80.97166907499991,23.11066315300009],[-80.96043860599991,23.122137762000033],[-80.89981035099993,23.15916575700005],[-80.88194739499997,23.16278717700011],[-80.86253821499986,23.162176825000145],[-80.84129798099988,23.157782294000082],[-80.84520423099988,23.163234768000038],[-80.85081946499989,23.173651434000092],[-80.85496985599991,23.178900458],[-80.84813391799989,23.185126044000143],[-80.84373938699991,23.17820872600005]]],[[[-80.52599036399994,23.19257233300011],[-80.51732337099986,23.19179922100001],[-80.49185136599993,23.19257233300011],[-80.48643958199992,23.193793036000145],[-80.47940019399994,23.19635651200015],[-80.47337805899991,23.196030992000132],[-80.47077389199983,23.188869533000073],[-80.47301184799991,23.181545315000093],[-80.47891191299993,23.177435614000117],[-80.48680579299992,23.173895575000145],[-80.49522864499997,23.168361721000124],[-80.50527910099991,23.16974518400012],[-80.52293860599984,23.176743882],[-80.54308020699989,23.18219635600003],[-80.56017005099994,23.178900458],[-80.56407630099994,23.184759833000143],[-80.56847083199992,23.185126044000143],[-80.58063717399992,23.178900458],[-80.57697506399987,23.19257233300011],[-80.57042395699997,23.20091380399999],[-80.55968176999994,23.20506419500005],[-80.54336503799992,23.206244208000058],[-80.53929602799988,23.204331773000106],[-80.53136145699992,23.195461330000153],[-80.52599036399994,23.19257233300011]]],[[[-80.6636449859999,23.201402085],[-80.66612708199992,23.194484768000095],[-80.67052161399991,23.1948102890001],[-80.67369544199995,23.194037177],[-80.67467200399994,23.186835028000147],[-80.67983964799996,23.18561432500003],[-80.6913142569999,23.18773021000005],[-80.69884192599994,23.183905341000028],[-80.70083574099988,23.177191473000093],[-80.7042537099999,23.18032461100016],[-80.70494544199994,23.193060614000117],[-80.69489498599995,23.203924872000087],[-80.67760169199997,23.210272528000033],[-80.66852779899995,23.212225653000175],[-80.66588294199988,23.20917389500009],[-80.6636449859999,23.201402085]]],[[[-81.18488521999987,23.05206940300006],[-81.14915930899994,23.03489817900011],[-81.12930253799993,23.034491278000118],[-81.12071692599991,23.03896719000006],[-81.11367753799993,23.04922109600001],[-81.09854081899994,23.06598541900003],[-81.09373938699986,23.074204820000105],[-81.08315995999989,23.09870026200015],[-81.07811438699989,23.103827216000166],[-81.06676184799991,23.1049665390001],[-81.04625403599994,23.10984935100008],[-81.0399063789999,23.11066315300009],[-80.99836178299992,23.103827216000166],[-80.99144446499994,23.10407135600012],[-80.98753821499994,23.10586172100001],[-80.98570716099997,23.10224030200014],[-80.98525956899996,23.08641185099999],[-80.97777258999987,23.064439195000162],[-80.95938066299996,23.059027411000116],[-80.93675696499989,23.062933661000113],[-80.91637122299991,23.069037177000112],[-80.75934811099995,23.096991278000147],[-80.73477128799993,23.097601630000028],[-80.68814042899993,23.08860911700019],[-80.66315670499992,23.08954498900006],[-80.64224199099993,23.097805080000157],[-80.62352454299989,23.112941799000154],[-80.61803137899994,23.13174062700001],[-80.63646399599988,23.15102773600013],[-80.6234431629999,23.156724351000108],[-80.60985266799995,23.15818919500016],[-80.59727942599994,23.156073309000174],[-80.58747311099992,23.15102773600013],[-80.58747311099992,23.14476146],[-80.59601803299995,23.13743724200019],[-80.62222245999988,23.08954498900006],[-80.59434973899994,23.07013580900015],[-80.59308834499993,23.068019924000154],[-80.55679277299993,23.007391669000086],[-80.53624426999988,22.993963934000092],[-80.52037512899994,22.992905992000047],[-80.47984778599994,22.985663153000118],[-80.46450761599988,22.98029205900015],[-80.45506751199986,22.972072658000158],[-80.44473222599996,22.960394598000065],[-80.43150794199991,22.949937242000157],[-80.41331946499992,22.94550202],[-80.35692298099988,22.945624091000084],[-80.34447180899984,22.94208405199999],[-80.32941646999984,22.92983633000013],[-80.31334387899994,22.921291408000016],[-80.29670162699992,22.915676174000012],[-80.27961178299995,22.912014065000065],[-80.24669348899988,22.91103750200007],[-80.21568762899994,22.91705963700009],[-80.15607662699995,22.93870677299999],[-80.16356360599991,22.96255117400007],[-80.14671790299991,22.96308014500012],[-80.09361731699991,22.93854401200012],[-80.07005774599986,22.931789455000068],[-80.05003821499989,22.935248114000085],[-80.0462133449999,22.95917389500015],[-80.03551184799993,22.95384349200016],[-80.0245662099999,22.94668203300013],[-80.01610266799986,22.938055731000034],[-80.01268469999985,22.928452867000047],[-79.99006100199998,22.8906110700001],[-79.98786373599998,22.884100653000118],[-79.95002193899984,22.86359284100014],[-79.94456946499992,22.862779039000046],[-79.92674719999994,22.86359284100014],[-79.91982988199993,22.861314195000187],[-79.91698157499988,22.85643138200011],[-79.91641191299993,22.85154857000005],[-79.91649329299992,22.84931061400006],[-79.89574133999992,22.855169989000032],[-79.86314856699993,22.88369375200001],[-79.80174719999985,22.89972565300009],[-79.79295813699989,22.897772528000147],[-79.79295813699989,22.89012278900013],[-79.80235755099991,22.882147528000147],[-79.8209122389999,22.870428778000175],[-79.8438614569999,22.880682684000092],[-79.85496985599994,22.872544664000188],[-79.8680313789999,22.836249091000084],[-79.85716712099992,22.820705471000096],[-79.8509008449999,22.814113674000012],[-79.84137936099998,22.808335679000052],[-79.83071855399996,22.805650132000082],[-79.78954016799987,22.802150783000073],[-79.77188066299988,22.796616929000052],[-79.71312415299988,22.757798570000045],[-79.70995032499991,22.753078518000123],[-79.70616614499988,22.748765367000047],[-79.70018469999988,22.746893622000172],[-79.69465084499984,22.74917226800012],[-79.68862870999993,22.75409577],[-79.68419348899997,22.758978583000086],[-79.68309485599991,22.761175848000065],[-79.6603083979999,22.76386139500015],[-79.65172278599988,22.75877513200011],[-79.6270238919999,22.65749746300015],[-79.62645423099991,22.656927802],[-79.6114802729999,22.65232982000005],[-79.59935462099989,22.64655182500009],[-79.5885310539999,22.638495184000146],[-79.57725989499991,22.6271019550001],[-79.56582597599996,22.611151434000178],[-79.55211341099994,22.58026764500012],[-79.54283606699988,22.565659898000106],[-79.51748613199993,22.539129950000145],[-79.51183020699995,22.534613348],[-79.49693762899989,22.531968492000104],[-79.46800696499989,22.53139883000013],[-79.45653235599985,22.528469143000034],[-79.42983964799993,22.490220445000162],[-79.42471269399991,22.47874583500011],[-79.41673743399986,22.472479559000178],[-79.34178626199991,22.413153387000094],[-79.31248938699989,22.400295315000093],[-79.28587805899994,22.40428294500005],[-79.27574622299989,22.39484284100014],[-79.25694739499994,22.382269598000146],[-79.23875891799995,22.376410223],[-79.23058020699995,22.387193101000108],[-79.21983801999991,22.388413804000137],[-79.16746985599985,22.37787506700006],[-79.14867102799991,22.377630927000112],[-79.13780676999991,22.384833075000145],[-79.1356501939999,22.391180731000087],[-79.1331274079999,22.39565664300015],[-79.12071692599997,22.396877346000064],[-79.1105850899999,22.39459870000009],[-79.0950414699999,22.385728257000054],[-79.08348548099988,22.383775132000025],[-79.06200110599985,22.386664130000142],[-79.0244848299999,22.399969794000143],[-79.00527910099987,22.40428294500005],[-78.98249264199987,22.404608466000084],[-78.92719479099995,22.398749091000056],[-78.82868404899995,22.388332424000154],[-78.78184973899988,22.390611070000105],[-78.77672278599988,22.380560614000146],[-78.75763912699989,22.32233307500003],[-78.75401770699992,22.32485586100013],[-78.74461829299992,22.329169012000037],[-78.73460852799991,22.316229559000035],[-78.72533118399988,22.32420482000019],[-78.70986894399994,22.35590241100006],[-78.72264563699989,22.37270742400007],[-78.7294815749999,22.379136460000083],[-78.73778235599988,22.383775132000025],[-78.73778235599988,22.390611070000105],[-78.70807857999995,22.38690827000009],[-78.67613684799994,22.357001044000086],[-78.56688391799995,22.32103099200013],[-78.55284583199989,22.311835028000147],[-78.54430091099997,22.29905833500011],[-78.52440344999988,22.283270575000145],[-78.50145423099988,22.26886627800009],[-78.48395748599992,22.260321356000176],[-78.46007239499994,22.253607489000117],[-78.39989173099987,22.244045315000122],[-78.38149980399993,22.246649481000034],[-78.38194739499994,22.239935614],[-78.38097083199995,22.226019598],[-78.38149980399993,22.219305731000148],[-78.37120520699992,22.224025783000073],[-78.36725826699984,22.22675202000015],[-78.3605037099999,22.216782945000045],[-78.35114498599995,22.197658596000068],[-78.34390214799993,22.188910223],[-78.33486894399994,22.182562567000062],[-78.31696529899996,22.17389557500017],[-78.30919348899997,22.16779205900009],[-78.30142167899987,22.16380442900011],[-78.29157467399995,22.16364166900014],[-78.28111731699997,22.164618231000034],[-78.27163652299987,22.16404857000005],[-78.23745683499988,22.15106842700005],[-78.22191321499989,22.14704010600009],[-78.17235266799995,22.14362213700018],[-78.16364498599995,22.139349677000084],[-78.1616918609999,22.129461981000148],[-78.16087805899987,22.11810944200009],[-78.15558834499993,22.10952383000007],[-78.14732825399992,22.107570705000043],[-78.12169348899997,22.10785553600006],[-78.12498938699991,22.106350002000013],[-78.12828528599994,22.102606512000147],[-78.11778723899997,22.093451239],[-78.10537675699993,22.089016018000038],[-78.09243730399993,22.08624909100014],[-78.08181718699988,22.082790432000152],[-78.07982337099986,22.082180080000015],[-78.06505286399997,22.086981512000094],[-78.05557206899996,22.07746002800009],[-78.04230709499983,22.051174221000068],[-78.02326412699995,22.034328518000066],[-78.01781165299991,22.02753327000015],[-78.01121985599993,22.00926341400016],[-77.99323482999989,21.979681708000115],[-77.98521887899994,21.970038153000147],[-77.97337805899987,21.966131903000147],[-77.96133378799988,21.95823802299999],[-77.91539466099991,21.914252020000063],[-77.91197669199991,21.90599192900008],[-77.89500891799992,21.87693919500019],[-77.88805091099994,21.869859117000047],[-77.87604732999992,21.871527411000056],[-77.8703507149999,21.88153717700014],[-77.86558997299994,21.956244208000143],[-77.8600968089999,21.966131903000147],[-77.84911048099985,21.970526434000032],[-77.82225501199984,21.96645742400007],[-77.80614173099988,21.966131903000147],[-77.81501217399993,21.955755927000055],[-77.84699459499984,21.950384833],[-77.85391191299993,21.941839911000088],[-77.85252844999984,21.924017645],[-77.84854081899988,21.91058991100003],[-77.84215247299994,21.89996979400017],[-77.83348548099985,21.890326239],[-77.82201087099992,21.880275783000044],[-77.81330318899992,21.876450914000102],[-77.7887263659999,21.876695054000052],[-77.77794348899991,21.87002187700001],[-77.77037512899997,21.854559637000175],[-77.76602128799988,21.837347723000065],[-77.76455644399991,21.82550690300009],[-77.76089433499996,21.813299872000027],[-77.75157630099991,21.804632880000113],[-77.73839270699997,21.79865143400012],[-77.7100723949999,21.790187893000066],[-77.70445716099991,21.78925202],[-77.68976803299992,21.795884507000054],[-77.68126380099989,21.791693427000112],[-77.67320716099994,21.78473541900003],[-77.66466223899994,21.781154690000065],[-77.60387122299991,21.789740302000084],[-77.58641516799993,21.787909247000083],[-77.56965084499993,21.78058502800009],[-77.52497311099995,21.75381094],[-77.52440344999988,21.76764557500009],[-77.51659094999991,21.774603583000083],[-77.49083411399995,21.781154690000065],[-77.48924719999994,21.771226304000052],[-77.48338782499987,21.766180731000034],[-77.47423255099991,21.7650414080001],[-77.46288001199991,21.76683177299999],[-77.46495520699995,21.770575262000122],[-77.46751868399986,21.777736721000153],[-77.46971594999985,21.781154690000065],[-77.45563717399992,21.77684153900016],[-77.44225012899992,21.76658763200014],[-77.42198645699989,21.746405341000113],[-77.43635006399995,21.744614976000108],[-77.44627844999988,21.75023021000011],[-77.45254472599993,21.750677802000112],[-77.45604407499991,21.73334381700012],[-77.45372473899994,21.715033270000063],[-77.43907630099994,21.68382396],[-77.43561764199984,21.667873440000093],[-77.43028723899995,21.657619533000158],[-77.41746985599994,21.653713283000158],[-77.38719641799995,21.650132554],[-77.36335201699985,21.63825104400003],[-77.3567602199999,21.636542059000035],[-77.34715735599991,21.638617255000057],[-77.34215247299997,21.643296617000157],[-77.3394262359999,21.64801666900017],[-77.33653723899995,21.650132554],[-77.33690344999988,21.655585028000033],[-77.34288489499991,21.66754791900014],[-77.35240637899989,21.679510809000092],[-77.37840735599988,21.690497137000037],[-77.38914954299989,21.703843492000047],[-77.40147864499994,21.73334381700012],[-77.40709387899994,21.756577867000047],[-77.41169186099998,21.76341380400008],[-77.41856848899988,21.76727936400009],[-77.43830318899992,21.774847723000118],[-77.44237219999988,21.777736721000153],[-77.44371497299997,21.788234768000123],[-77.44880123599997,21.801906643000066],[-77.4591365229999,21.809271552000055],[-77.47655188699986,21.80097077000009],[-77.49083411399995,21.815252997000172],[-77.50438391799992,21.803534247000087],[-77.51854407499985,21.811835028000147],[-77.54548092399992,21.843166408000016],[-77.58307857999992,21.873277085000055],[-77.59365800699996,21.888739325000145],[-77.60049394399988,21.89044830900015],[-77.61432857999998,21.884182033000016],[-77.60582434799993,21.90127187700007],[-77.58991451699984,21.91925690300009],[-77.57164466099997,21.930812893000123],[-77.55601966099988,21.928534247000144],[-77.5212296209999,21.901190497000083],[-77.5174861319999,21.893011786000084],[-77.51109778599997,21.867743231000034],[-77.50755774599989,21.86245351800015],[-77.40135657499988,21.790472723],[-77.38097083199989,21.781154690000065],[-77.33006751199986,21.76634349200019],[-77.31578528599997,21.75690338700018],[-77.30158443899995,21.743353583000115],[-77.2677302729999,21.71751536700019],[-77.2543025379999,21.712836005000085],[-77.19542395699992,21.671291408000098],[-77.18065344999985,21.66425202000012],[-77.16673743399986,21.660142320000162],[-77.15184485599991,21.660060940000093],[-77.13394120999996,21.664455471000068],[-77.14171301999994,21.645575262000037],[-77.1363012359999,21.63349030200014],[-77.12621008999994,21.624741929000052],[-77.1202693349999,21.616034247000172],[-77.12376868399991,21.59617747600008],[-77.14781653599994,21.57196686400009],[-77.15440833199992,21.55459219],[-77.16319739499988,21.56000397300015],[-77.18049068899998,21.578029690000065],[-77.18541419199993,21.58185455900009],[-77.24974524599986,21.609767971000124],[-77.26602128799988,21.614243882],[-77.28477942599994,21.616034247000172],[-77.28425045499995,21.614243882],[-77.28673255099989,21.610581773000046],[-77.29002844999994,21.607123114000146],[-77.29161536399997,21.606105861000074],[-77.29377193899995,21.602484442000033],[-77.29881751199987,21.60398997600008],[-77.30467688699994,21.607367255],[-77.31358801999988,21.611151434000092],[-77.32445227799988,21.62034739799999],[-77.33315995999993,21.623439846000068],[-77.35619055899991,21.621649481000176],[-77.36424719999985,21.61176178600006],[-77.3609513009999,21.60077545800003],[-77.34959876199994,21.595526434000035],[-77.33800208199992,21.59296295800011],[-77.32970130099994,21.587103583000086],[-77.32201087099992,21.580267645000063],[-77.31273352799987,21.575100002000156],[-77.30280514199987,21.572943427000055],[-77.27476966099997,21.575100002000156],[-77.25511633999992,21.567450262000122],[-77.24998938699989,21.550848700000145],[-77.25723222599993,21.534247137000094],[-77.27476966099997,21.526678778000143],[-77.27757727799991,21.518459377000156],[-77.27122962099989,21.500474351000104],[-77.2625219389999,21.48309967700014],[-77.25804602799992,21.476385809000092],[-77.24673417899996,21.47431061400009],[-77.22435462099992,21.47776927299999],[-77.20848548099991,21.47606028900016],[-77.21646074099996,21.458400783000158],[-77.20661373599992,21.46088288],[-77.18171139199988,21.472642320000077],[-77.18077551999991,21.473822333],[-77.17129472599989,21.478949286],[-77.16185462099989,21.480129299000126],[-77.15306555899991,21.495266018000123],[-77.14073645699997,21.54840729400003],[-77.11546790299994,21.593207098000065],[-77.1072485019999,21.602972723],[-77.0882869129999,21.606187242000047],[-77.06993567599997,21.595770575000145],[-76.96263587099989,21.472642320000077],[-76.94676673099988,21.459051825000117],[-76.94481360599991,21.457749742000104],[-76.92992102799988,21.447943427000084],[-76.89370683499993,21.43162669500005],[-76.83844967399995,21.420599677000027],[-76.82542883999986,21.41120026200018],[-76.83226477799988,21.397528387000037],[-76.81175696499992,21.397528387000037],[-76.81761633999986,21.376898505000113],[-76.82555091099991,21.366644598],[-76.83771725199992,21.36318594],[-76.87315833199992,21.361070054],[-76.88744055899991,21.35565827000012],[-76.89745032499988,21.346096096000153],[-76.90119381399992,21.332017320000105],[-76.88727779899995,21.3073591170001],[-76.83617102799988,21.332464911],[-76.83910071499989,21.307562567000062],[-76.82945716099991,21.31411367400015],[-76.82502193899995,21.32440827000006],[-76.82258053299992,21.336574611000128],[-76.81859290299994,21.348537502000067],[-76.82542883999986,21.348537502000067],[-76.81143144399988,21.36806875200007],[-76.80728105399996,21.378119208000143],[-76.80557206899994,21.390082098000065],[-76.74413001199984,21.37026601800015],[-76.73839270699989,21.37055084800009],[-76.73058020699989,21.374945380000085],[-76.72614498599992,21.373277085000055],[-76.70933997299991,21.362779039000188],[-76.68228105399987,21.35663483300003],[-76.67149817599997,21.35594310100008],[-76.65607662699995,21.349554755000057],[-76.64248613199989,21.335516669000086],[-76.63658606699994,21.32135651200015],[-76.64391028599997,21.315008856000034],[-76.66014563699991,21.311590887000037],[-76.71617591099994,21.287665106000148],[-76.71231035099993,21.302639065],[-76.7215063139999,21.311468817000062],[-76.73143469999991,21.311916408000158],[-76.72984778599997,21.30133698100009],[-76.73468990799995,21.285549221000068],[-76.72134355399993,21.27903880400008],[-76.70116126199991,21.275864976000022],[-76.6852107409999,21.26996491100006],[-76.67015540299988,21.25901927300002],[-76.65330969999987,21.251898505000053],[-76.63438880099994,21.247992255000057],[-76.61314856699988,21.246730861000128],[-76.61314856699988,21.25291575700011],[-76.63491777299993,21.26007721600014],[-76.64146887899992,21.264634507],[-76.64732825399996,21.27338288000008],[-76.65404212099992,21.28774648600013],[-76.65355383999992,21.294134833000086],[-76.63426673099988,21.30133698100009],[-76.61676998599992,21.301825262000094],[-76.59292558499996,21.294826565],[-76.57079016799989,21.282416083],[-76.55793209499987,21.26658763200005],[-76.5516658189999,21.26658763200005],[-76.5516658189999,21.287665106000148],[-76.54491126199989,21.287665106000148],[-76.54841061099995,21.247626044000025],[-76.5598852199999,21.23452383000007],[-76.61314856699988,21.232367255000053],[-76.61314856699988,21.22557200700014],[-76.59268144399991,21.22557200700014],[-76.60236568899995,21.22020091400016],[-76.60631262899994,21.218736070000105],[-76.59825598899991,21.205877997000087],[-76.58844967399989,21.20636627800009],[-76.57730058499986,21.211371161000116],[-76.56533769399994,21.21198151200018],[-76.55679277299993,21.20522695500013],[-76.54674231699994,21.187811591000084],[-76.53746497299989,21.184637762000122],[-76.53237870999988,21.18671295800011],[-76.52550208199995,21.19159577],[-76.51952063699994,21.19725169500019],[-76.51695716099994,21.20205312700007],[-76.51455644399991,21.20526764500012],[-76.5089412099999,21.205471096000096],[-76.50243079299989,21.20473867400007],[-76.49705969999985,21.20514557500014],[-76.46764075399994,21.221340236000017],[-76.45612545499992,21.22557200700014],[-76.47158769399994,21.230658270000063],[-76.50426184799997,21.234808661],[-76.51695716099994,21.239243882000082],[-76.52904212099995,21.252630927000084],[-76.53237870999988,21.268622137000175],[-76.52554277299996,21.282049872000172],[-76.50731360599988,21.287665106000148],[-76.38756262899989,21.28432851800012],[-76.36302649599986,21.27708567900011],[-76.34878495999995,21.26605866100006],[-76.31651770699992,21.254217841000113],[-76.31354732999992,21.251898505000053],[-76.29027258999987,21.233710028000143],[-76.27586829299992,21.22504303600006],[-76.1696671209999,21.187160549000126],[-76.13780676999987,21.16722239800005],[-76.13341223899991,21.143703518000095],[-76.12999426999987,21.135565497000172],[-76.13072669199991,21.114162502000042],[-76.12657630099989,21.102118231000116],[-76.11676998599995,21.09149811400006],[-76.10985266799986,21.092230536],[-76.09984290299988,21.102118231000116],[-76.08381100199998,21.110541083000058],[-76.07266191299996,21.112982489],[-76.0582576159999,21.10956452000009],[-76.04808508999994,21.103827216000028],[-76.04100501199987,21.096665757000082],[-76.03722083199995,21.08734772300012],[-76.03718014199987,21.074774481000034],[-76.0309138659999,21.074774481000034],[-76.02892005099987,21.07957591400013],[-76.0257462229999,21.084540106000176],[-76.02354895699992,21.089056708000115],[-76.0167130199999,21.073675848],[-76.00816809799989,21.070298570000162],[-76.00218665299988,21.078070380000085],[-76.00304114499997,21.09589264500015],[-75.99461829299992,21.094549872000144],[-75.96788489499991,21.09398021],[-75.95531165299991,21.09589264500015],[-75.94904537699995,21.09979889500015],[-75.93346106699997,21.112941799000012],[-75.92487545499995,21.11570872600008],[-75.91242428299995,21.115179755],[-75.89989173099994,21.112779039000046],[-75.89024817599997,21.107733466000113],[-75.88194739499987,21.09027741100006],[-75.87352454299995,21.088771877000013],[-75.86827551999994,21.09308502800009],[-75.87336178299996,21.102118231000116],[-75.82176673099991,21.13686758000007],[-75.81627356699988,21.135646877000156],[-75.80125891799986,21.12929922100004],[-75.79820716099988,21.126613674000126],[-75.79401607999995,21.119045315],[-75.78429114499988,21.118638414000188],[-75.76683508999994,21.12323639500012],[-75.73228919199994,21.12327708500011],[-75.70400956899988,21.11896393400012],[-75.68431555899994,21.103094794000086],[-75.67536373599988,21.06858958500008],[-75.63589433499993,21.07636139500006],[-75.6131485669999,21.062567450000145],[-75.57848059799991,21.013373114000146],[-75.5989477199999,20.972357489000142],[-75.60484778599991,20.965399481000144],[-75.61603756399992,20.95673248900006],[-75.62010657499988,20.95123932500003],[-75.62193762899996,20.944810289000102],[-75.62417558499992,20.929877020000063],[-75.62633216099992,20.92397695500013],[-75.63487708199997,20.912543036000088],[-75.64875240799995,20.89940013200011],[-75.66515051999997,20.890082098000093],[-75.68154863199987,20.890448309000092],[-75.68651282499991,20.90005117400007],[-75.69025631399995,20.915187893000066],[-75.69640051999994,20.924872137000037],[-75.70885169199994,20.917710679],[-75.71703040299985,20.922552802000055],[-75.72362219999994,20.923407294000167],[-75.72948157499987,20.92145416900003],[-75.73550370999988,20.917710679],[-75.72736568899995,20.916571356000148],[-75.72142493399994,20.914455471000124],[-75.71751868399984,20.91034577],[-75.71568762899996,20.903509833000086],[-75.74400794199991,20.901556708000115],[-75.74339758999986,20.88934967700005],[-75.73045813699986,20.872219143],[-75.72183183499993,20.855047919000086],[-75.71568762899996,20.855047919000086],[-75.70449785099994,20.870835679000137],[-75.67813066299996,20.87824127800003],[-75.64818274599989,20.879543361000017],[-75.62633216099992,20.87677643400015],[-75.58486894399994,20.856838283000073],[-75.57848059799991,20.85195547100001],[-75.57738196499989,20.838080145000035],[-75.57331295499992,20.827541408000158],[-75.56493079299986,20.821478583000058],[-75.55113684799994,20.82151927300005],[-75.55907141799992,20.797674872000144],[-75.57315019399995,20.797674872000144],[-75.58910071499986,20.807684637000065],[-75.60269120999993,20.81411367400007],[-75.61017818899997,20.8165550800001],[-75.61343339799993,20.82249583500011],[-75.61571204299992,20.829657294000143],[-75.62010657499988,20.835842190000122],[-75.62743079299989,20.841457424000126],[-75.63060462099986,20.843085028000147],[-75.68537350199989,20.835109768],[-75.70474199099989,20.82868073100009],[-75.77025305899994,20.835842190000122],[-75.76500403599997,20.824408270000088],[-75.76634680899986,20.811590887000037],[-75.7764786449999,20.787420966000052],[-75.77570553299998,20.781317450000145],[-75.77660071499987,20.768703518000063],[-75.77936764199984,20.756903387000094],[-75.78392493399987,20.746405341000024],[-75.7746475899999,20.737616278000143],[-75.76305091099991,20.716009833000054],[-75.72451738199993,20.69550202],[-75.70885169199994,20.69057851800015],[-75.70201575399994,20.701117255000113],[-75.69102942599997,20.722886460000083],[-75.64317786399994,20.76072825700011],[-75.63312740799998,20.780585028000033],[-75.61729895699995,20.768622137000094],[-75.60773678299995,20.753159898000074],[-75.60570227799991,20.735988674000126],[-75.61261959499993,20.718491929],[-75.58682206899991,20.721502997000087],[-75.57750403599994,20.718451239],[-75.58189856699994,20.707953192000115],[-75.58356686099995,20.698228257],[-75.57331295499992,20.691392320000077],[-75.55113684799994,20.684393622000083],[-75.55671139199987,20.706447658000073],[-75.49779212099989,20.69342682500009],[-75.48224850199989,20.71165599200016],[-75.47606360599991,20.71165599200016],[-75.47126217399993,20.706122137000147],[-75.46471106699994,20.70062897300012],[-75.45685787699998,20.69550202],[-75.44810950399987,20.69114817900011],[-75.4406632149999,20.71165599200016],[-75.4571833979999,20.717962958000115],[-75.46593176999997,20.719224351000108],[-75.47606360599991,20.718491929],[-75.46361243399991,20.73407623900009],[-75.43968665299985,20.740627346000068],[-75.41356360599988,20.741156317000147],[-75.39415442599989,20.738959052000055],[-75.37657630099994,20.73216380400011],[-75.35602779899992,20.719916083000058],[-75.34923255099997,20.708482164000102],[-75.37303626199989,20.704250393000095],[-75.36432857999998,20.691392320000077],[-75.35936438699994,20.677557684000146],[-75.35260982999989,20.677557684000146],[-75.35138912699998,20.681870835000055],[-75.34577389199987,20.69114817900011],[-75.33722896999986,20.669663804],[-75.3128149079999,20.664740302000112],[-75.25633704299989,20.670721747000144],[-75.27375240799995,20.681586005000113],[-75.31159420499989,20.69944896],[-75.33141028599991,20.704250393000095],[-75.31871497299994,20.71710846600011],[-75.29430091099988,20.723130601000108],[-75.26797441299988,20.723334052000084],[-75.24950110599985,20.718491929],[-75.25633704299989,20.725978908000158],[-75.24103756399992,20.72479889500012],[-75.19432532499994,20.715643622000144],[-75.1819555329999,20.709133205000157],[-75.17857825399997,20.70221588700015],[-75.1948949859999,20.697984117000047],[-75.1948949859999,20.69114817900011],[-75.16698157499984,20.684393622000083],[-75.16515051999988,20.686428127000013],[-75.16486568899995,20.687811591000084],[-75.16397050699996,20.68919505400008],[-75.16075598899991,20.69114817900011],[-75.1490779289999,20.68309153900016],[-75.13182532499988,20.687404690000093],[-75.11534583199992,20.68659088700015],[-75.10610917899993,20.663275458000058],[-75.10411536399991,20.66860586100013],[-75.09959876199986,20.677679755000142],[-75.09870357999995,20.684393622000083],[-75.0894262359999,20.677679755000142],[-75.0803930329999,20.67365143400015],[-75.07192949099993,20.673244533000158],[-75.06456458199995,20.677557684000146],[-75.07876542899986,20.69114817900011],[-74.99836178299998,20.700751044000082],[-74.97887122299989,20.694566148000135],[-74.96922766799992,20.689520575000085],[-74.95909583199995,20.687323309000092],[-74.95107988199993,20.683579820000162],[-74.94786536399997,20.67413971600014],[-74.9407445949999,20.668402411000088],[-74.92467200399992,20.668036200000145],[-74.90005449099993,20.670721747000144],[-74.88353430899986,20.65949127800006],[-74.86929277299996,20.645941473000093],[-74.8509008449999,20.634588934000092],[-74.77183997299991,20.62579987200006],[-74.75121008999989,20.619574286000088],[-74.73558508999989,20.609279690000065],[-74.74571692599994,20.603949286],[-74.74986731699988,20.602443752000127],[-74.73558508999989,20.578558661000088],[-74.73493404899993,20.567613023000106],[-74.73257402299988,20.564846096000153],[-74.72838294199994,20.56443919500005],[-74.72191321499986,20.56085846600017],[-74.71515865799992,20.556057033000073],[-74.70982825399994,20.55223216400016],[-74.67349199099995,20.540961005000085],[-74.66999264199987,20.52765534100014],[-74.65070553299992,20.513088283000044],[-74.60521399599986,20.485744533000158],[-74.59727942599989,20.47679271000011],[-74.58649654899989,20.45579661700016],[-74.55479895699992,20.414455471000153],[-74.54723059799989,20.410060940000065],[-74.54393469999985,20.40355052299999],[-74.49498450399997,20.35516998900006],[-74.48574785099989,20.35081614799999],[-74.47207597599987,20.349188544000143],[-74.45026607999992,20.343085028000147],[-74.42341061099992,20.327582098000065],[-74.40111243399988,20.30727773600016],[-74.39297441299988,20.286525783000158],[-74.3855688139999,20.286525783000158],[-74.37218176999988,20.30052317900011],[-74.35191809799989,20.300441799000126],[-74.32970130099991,20.29523346600014],[-74.31041419199988,20.293931382000054],[-74.29369055899986,20.300930080000043],[-74.27623450399987,20.31122467700014],[-74.25719153599991,20.31964752800009],[-74.23595130099991,20.32123444200012],[-74.22354081899988,20.317368882000107],[-74.21361243399988,20.310980536],[-74.19371497299989,20.293931382000054],[-74.15965735599988,20.27342357000019],[-74.14753170499998,20.259182033000073],[-74.13963782499991,20.24233633000007],[-74.13508053299995,20.223822333000058],[-74.13288326699987,20.20457591400013],[-74.14195716099997,20.182603257000107],[-74.16291256399992,20.170558986000103],[-74.1840714179999,20.16266510600003],[-74.19806881399998,20.148871161000116],[-74.2183324859999,20.137844143000063],[-74.22508704299992,20.135687567000062],[-74.23029537699992,20.130316473],[-74.23595130099991,20.094671942000062],[-74.26740475199995,20.068304755000057],[-74.30451412699995,20.069322007000107],[-74.34658769399991,20.079575914000046],[-74.39297441299988,20.08104075700011],[-74.45592200399992,20.06867096600017],[-74.4983617829999,20.065619208000086],[-74.58047695599993,20.047642379000095],[-74.61864998999991,20.05451950800007],[-74.65018391899994,20.042163631000122],[-74.71312417199988,20.051800607000175],[-74.78842485599989,20.039466819],[-74.81297766799989,20.03725820500013],[-74.83800208199989,20.026434637000065],[-74.85513261599992,20.012762762000122],[-74.87067623599992,19.997015692000062],[-74.88780676999997,19.984076239000057],[-74.91002356699991,19.978664455000015],[-74.93351676299989,19.978218934],[-74.94733410199987,19.975949496000098],[-74.95551593299986,19.967813299000127],[-74.9615607499999,19.947009654000126],[-74.97786795099992,19.923034866000094],[-75.01008053299995,19.91156647300012],[-75.04566773999996,19.907600601000084],[-75.05103469799985,19.919371866000162],[-75.05823143399988,19.922965563000147],[-75.06351788099994,19.92160478400008],[-75.0663780219999,19.914368366000147],[-75.06633283599987,19.904861972000063],[-75.09177983899986,19.897132588000105],[-75.0950058107432,19.89722596270327],[-75.09495029099992,19.971583690000088],[-75.13703578021642,19.97155061008597],[-75.1351597149999,19.97627892800007],[-75.12975012899997,19.981146552000112],[-75.11505226199995,19.990617325000088],[-75.10207692599991,19.99290049799999],[-75.09013265199991,20.01413687400013],[-75.08485710999986,20.025895131000183],[-75.09080969999988,20.03546784100014],[-75.0924373039999,20.061224677],[-75.11279121399991,20.057484937000098],[-75.12238073199987,20.043912247000108],[-75.12860947599992,20.03350848500004],[-75.13579474299988,20.021295780000045],[-75.14381178599993,20.025948425000152],[-75.15433299299985,20.03116577700008],[-75.16942545099991,20.025576828000126],[-75.1754451159999,20.013739325000085],[-75.17735755099993,20.003973700000145],[-75.17406165299991,19.993475653000175],[-75.1686802399999,19.991935841000114],[-75.16211192199992,19.99041108199999],[-75.15807044199991,19.991359768000066],[-75.15542558499993,19.99494049700003],[-75.15330969999991,19.999172268000066],[-75.15123450399989,19.994574286000116],[-75.14699664599989,19.9842776120001],[-75.1591265239999,19.97776874200015],[-75.16019244399989,19.970647995000107],[-75.17886206299991,19.970731793000123],[-75.22896927899987,19.93744049100009],[-75.23285695529569,19.900051605537115],[-75.2328588529999,19.900051174000012],[-75.2846573559999,19.88825104400003],[-75.38329016799989,19.88247304900007],[-75.39427649599986,19.883490302000112],[-75.42760169199994,19.890692450000145],[-75.43748938699986,19.895656643],[-75.44440670499995,19.89671458500008],[-75.44733639199985,19.894761460000108],[-75.45563717399995,19.88548411700016],[-75.46182206899991,19.88247304900007],[-75.48888098899995,19.87909577000015],[-75.52090410099996,19.879624742000132],[-75.55085201699993,19.885158596000124],[-75.57164466099991,19.89671458500008],[-75.60472571499986,19.89203522300015],[-75.64561926999988,19.91258372599999],[-75.6870011059999,19.940375067000062],[-75.72183183499993,19.957505601000022],[-75.74372311099998,19.959865627000156],[-75.81529700399992,19.957505601000022],[-75.83433997299991,19.95978424700017],[-75.87336178299996,19.969549872000115],[-75.89378821499986,19.971828518000095],[-75.93211829299989,19.967678127000127],[-75.95221920499992,19.962225653000118],[-75.96548417899996,19.954413153000118],[-75.98009192599989,19.95237864799999],[-76.11204993399994,19.98248932500003],[-76.20225989499997,19.99233633000013],[-76.24815833199993,19.990627346000124],[-76.32799231699995,19.970160223000065],[-76.36611894399994,19.96499258000007],[-76.43871008999994,19.96499258000007],[-76.46027584499987,19.962103583000143],[-76.50226803299991,19.948391018],[-76.52440344999991,19.943915106000063],[-76.65160071499989,19.951117255000085],[-76.78107662699992,19.940741278000175],[-76.80174719999994,19.930731512000094],[-76.82359778599988,19.931586005],[-76.84561113199987,19.936265367000104],[-76.86644446499986,19.93768952000009],[-76.8818253249999,19.93138255400005],[-76.91413326699993,19.906642971000068],[-76.93529212099992,19.89671458500008],[-76.95889238199996,19.891058661000088],[-77.08804277299987,19.885443427000084],[-77.1134333979999,19.889308986000074],[-77.16340084499984,19.908107815000122],[-77.18895423099991,19.91258372599999],[-77.2027888659999,19.902899481000034],[-77.20962480399993,19.902899481000034],[-77.2171117829999,19.909613348000093],[-77.22728430899986,19.911078192000147],[-77.23717200399994,19.906887111000017],[-77.24376380099994,19.89671458500008],[-77.26915442599994,19.904527085000055],[-77.29824785099993,19.90668366100006],[-77.32408606699994,19.900295315000122],[-77.33999589799987,19.88247304900007],[-77.31273352799987,19.88247304900007],[-77.31273352799987,19.87563711100013],[-77.33047441299986,19.874823309000032],[-77.35850989499988,19.864488023000135],[-77.37726803299995,19.861965236000017],[-77.46996008999987,19.85956452000006],[-77.53335527299993,19.844916083000058],[-77.56932532499991,19.841498114000146],[-77.61148027299993,19.844631252000042],[-77.67324785099993,19.828924872000144],[-77.69253495999988,19.82782623900003],[-77.70604407499985,19.830023505],[-77.71955318899992,19.835882880000057],[-77.73058020699997,19.84479401200018],[-77.73721269399994,19.855698960000055],[-77.73599199099993,19.874172268000095],[-77.71735592399995,19.90721263200014],[-77.7161759109999,19.916571356000176],[-77.70881100199992,19.91868724200016],[-77.69611568899995,19.91998932500009],[-77.68883216099994,19.923407294000086],[-77.68211829299989,19.92959219000006],[-77.67528235599988,19.939886786000088],[-77.66832434799989,19.943915106000063],[-77.67137610599988,19.954779364000117],[-77.66673743399986,19.962469794000143],[-77.64785722599991,19.978664455000015],[-77.62555904899997,20.007798570000077],[-77.62393144399996,20.012762762000122],[-77.62043209499987,20.020331122000144],[-77.57274329299992,20.061102606000034],[-77.57469641799986,20.069810289000102],[-77.58812415299984,20.082464911000088],[-77.58641516799993,20.088527736000074],[-77.57738196499992,20.087958075000117],[-77.55101477799994,20.079779364],[-77.54108639199984,20.088771877000042],[-77.52188066299988,20.094549872000087],[-77.5174861319999,20.098456122000083],[-77.51471920499992,20.104437567],[-77.49697831899994,20.12946198100009],[-77.47956295499995,20.140855210000083],[-77.4366348949999,20.162420966000084],[-77.4202367829999,20.185044664000046],[-77.40135657499988,20.19806549700003],[-77.30064856699997,20.24274323100009],[-77.28136145699995,20.24555084800012],[-77.26646887899989,20.253241278000147],[-77.25072180899991,20.28929271000011],[-77.23631751199986,20.300767320000077],[-77.23338782499994,20.30121491100006],[-77.22984778599997,20.301336981000034],[-77.22329667899987,20.300767320000077],[-77.22899329299986,20.289129950000145],[-77.22297115799995,20.28339264500009],[-77.21007239499994,20.282863674000012],[-77.19542395699992,20.286525783000158],[-77.18175208199989,20.294867255000113],[-77.17121334499993,20.30727773600016],[-77.16429602799994,20.322170315],[-77.16185462099989,20.338324286000056],[-77.15453040299988,20.34406159100014],[-77.1134333979999,20.36847565300009],[-77.11025956899994,20.416408596],[-77.10350501199989,20.423651434000035],[-77.09581458199997,20.430161851000108],[-77.08242753799986,20.465277411],[-77.1134333979999,20.51243724200016],[-77.12319902299993,20.520941473],[-77.15013587099992,20.537909247000087],[-77.1859431629999,20.55093008000007],[-77.19566809799997,20.552150783000073],[-77.18919837099986,20.540961005000085],[-77.19542395699992,20.534125067000062],[-77.21401933499993,20.546210028000147],[-77.22948157499985,20.552923895],[-77.23989824099993,20.563055731000148],[-77.24376380099994,20.585353908000016],[-77.24038652299993,20.592108466000056],[-77.23249264199984,20.596014716000028],[-77.22337805899986,20.598822333],[-77.21646074099996,20.602443752000127],[-77.19542395699992,20.62978750200001],[-77.19542395699992,20.63654205900015],[-77.23167883999994,20.65827057500003],[-77.25104732999995,20.662095445000045],[-77.25804602799992,20.643377997000172],[-77.27818762899997,20.662054755000057],[-77.29515540299985,20.687079169000143],[-77.31484941299988,20.70905182500017],[-77.34312903599994,20.718491929],[-77.37173417899993,20.716131903000033],[-77.40318762899994,20.709173895000145],[-77.42935136599988,20.698431708000115],[-77.44237219999988,20.684393622000083],[-77.45189368399987,20.690008856000176],[-77.45767167899993,20.68988678600003],[-77.46271725199995,20.68699778900016],[-77.46971594999985,20.684393622000083],[-77.48029537699989,20.68178945500007],[-77.4867244129999,20.679185289000188],[-77.49339758999986,20.67747630399999],[-77.50450598899991,20.677557684000146],[-77.52196204299986,20.680324611000017],[-77.57274329299992,20.697984117000047],[-77.6116430329999,20.678452867000043],[-77.62051347599994,20.677557684000146],[-77.63499915299991,20.68793366100006],[-77.64171301999994,20.69114817900011],[-77.64928137899989,20.692572333],[-77.67886308499993,20.69114817900011],[-77.68667558499993,20.692043361000017],[-77.70612545499992,20.697414455000068],[-77.71271725199992,20.701117255000113],[-77.71642005099994,20.698879299000126],[-77.72931881399995,20.697984117000047],[-77.7784317699999,20.700751044000082],[-77.79556230399993,20.705877997000112],[-77.82213294199987,20.723049221000124],[-77.84080969999988,20.728257554000137],[-77.87751217399997,20.73216380400011],[-77.89924068899995,20.727280992000047],[-77.91417395699989,20.716376044000086],[-77.92686926999994,20.704901434000035],[-77.94204667899993,20.697984117000047],[-78.00706946499989,20.696193752000156],[-78.04112708199992,20.70449453300013],[-78.0519099599999,20.725978908000158],[-78.05939693899998,20.725978908000158],[-78.06554114499994,20.71165599200016],[-78.09837805899986,20.74811432500003],[-78.11025956899991,20.753241278000147],[-78.13206946499986,20.757391669000086],[-78.14411373599998,20.768255927000084],[-78.16177324099986,20.800441799000126],[-78.17235266799995,20.811753648000106],[-78.19078528599988,20.827622789000046],[-78.21104895699987,20.839504299000097],[-78.22691809799991,20.838934637000122],[-78.23766028599994,20.8334007830001],[-78.24128170499989,20.838527736000017],[-78.24185136599996,20.847886460000055],[-78.24372311099992,20.855047919000086],[-78.25572669199994,20.868638414000046],[-78.26207434799997,20.87815989800005],[-78.26480058499993,20.886664130000085],[-78.27204342399997,20.901109117000132],[-78.34268144399991,20.94940827000015],[-78.35635331899996,20.95302969],[-78.39146887899992,20.95123932500003],[-78.40392005099994,20.95795319200006],[-78.41502844999987,20.97308991100006],[-78.42992102799992,20.99970123900003],[-78.44225012899997,21.011135158000073],[-78.47899329299989,21.03758372600005],[-78.48790442599991,21.038560289000102],[-78.49474036399994,21.04791901200015],[-78.50088456899991,21.08209870000006],[-78.50438391799989,21.147121486000103],[-78.51227779899997,21.175116278000118],[-78.52757727799994,21.203273830000015],[-78.53819739499997,21.23163483300014],[-78.53172766799987,21.260402736000074],[-78.52257239499988,21.250311591000028],[-78.51146399599986,21.248846747000144],[-78.50210527299993,21.255560614],[-78.49819902299993,21.26996491100006],[-78.50552324099993,21.280218817],[-78.53799394399991,21.290350653000147],[-78.54539954299992,21.29759349200016],[-78.54747473899994,21.315090236000017],[-78.55687415299985,21.347479559000035],[-78.55899003799996,21.366522528000033],[-78.56330318899994,21.383449611000017],[-78.58210201699993,21.41388580900015],[-78.58633378799993,21.42820872600005],[-78.59243730399993,21.461818752000067],[-78.60781816299995,21.493719794000086],[-78.62816321499986,21.521063544000143],[-78.6490372389999,21.540920315000065],[-78.66535396999984,21.551174221000096],[-78.68097896999984,21.55662669500013],[-78.73399817599994,21.564357815000122],[-78.74632727799991,21.56806061400009],[-78.75108801999991,21.575506903000147],[-78.74461829299992,21.589300848000065],[-78.7333064439999,21.583238023000078],[-78.72061113199996,21.581244208000115],[-78.6931046209999,21.58185455900009],[-78.68911699099993,21.586411851000136],[-78.69420325399997,21.596665757000054],[-78.70677649599986,21.612616278000147],[-78.71369381399995,21.61859772300009],[-78.7239477199999,21.625555731000176],[-78.74461829299992,21.636542059000035],[-78.75926673099991,21.64061107000019],[-78.76650956899994,21.639715887000094],[-78.77306067599991,21.635646877000127],[-78.78555253799993,21.630316473000065],[-78.83189856699991,21.620306708],[-78.87840735599994,21.616034247000172],[-78.88337154899989,21.614203192],[-78.88902747299989,21.60968659100014],[-78.89354407499994,21.604193427000112],[-78.8954158189999,21.599269924000154],[-78.89875240799992,21.595526434000035],[-78.90648352799985,21.59467194200012],[-78.93708248599995,21.596380927000112],[-78.94920813699986,21.598781643000066],[-78.95995032499988,21.599554755],[-78.97057044199991,21.595526434000035],[-78.97736568899992,21.602972723],[-78.99453691299996,21.59406159100014],[-79.01280676999994,21.59007396],[-79.05589758999986,21.589300848000065],[-79.0755509109999,21.586086330000015],[-79.12816321499994,21.56199778900016],[-79.16926021999984,21.551703192000062],[-79.20889238199996,21.548488674],[-79.24941972599987,21.551947333000026],[-79.32957923099994,21.57367584800009],[-79.3460994129999,21.583156643000095],[-79.3646541009999,21.599269924000154],[-79.37877356699994,21.601263739],[-79.43065344999994,21.59540436400006],[-79.45030676999988,21.595526434000035],[-79.47227942599991,21.601996161000116],[-79.4817602199999,21.607367255],[-79.49132239499991,21.616034247000172],[-79.50645911399991,21.639797268000066],[-79.51528886599993,21.64858633000013],[-79.51919511599993,21.640204169000086],[-79.52220618399986,21.630031643000123],[-79.5296931629999,21.623439846000068],[-79.53966223899991,21.62197500200001],[-79.54967200399989,21.626898505000057],[-79.55915279899989,21.63499583499999],[-79.56493079299986,21.63788483300011],[-79.60777747299993,21.648993231000148],[-79.61367753799988,21.651312567000033],[-79.62165279899995,21.657619533000158],[-79.62759355399996,21.666937567],[-79.63231360599987,21.67820872599999],[-79.63927161399997,21.68773021],[-79.65208899599989,21.69171784100014],[-79.72272701699984,21.693426825000145],[-79.79010982999995,21.711615302000055],[-79.81578528599991,21.71124909100014],[-79.82705644399991,21.69513580900015],[-79.83385169199994,21.67767975500011],[-79.85081946499992,21.680080471000153],[-79.87295488199987,21.690863348000065],[-79.89537512899987,21.698553778000175],[-79.89537512899987,21.705389716000084],[-79.87486731699994,21.712836005000085],[-79.87486731699994,21.719061591000028],[-79.89037024599995,21.722398179000052],[-79.89362545499989,21.733587958000086],[-79.89264889199993,21.747748114],[-79.89537512899987,21.759995835000055],[-79.91234290299988,21.74835846600014],[-79.93000240799998,21.743312893000123],[-79.94945227799988,21.743109442000062],[-79.97166907499994,21.746405341000113],[-79.99205481699991,21.753322658000016],[-80.00365149599992,21.755804755000113],[-80.01268469999985,21.75381094],[-80.01537024599992,21.74673086100013],[-80.00902258999989,21.739935614],[-79.99913489499988,21.73501211100013],[-79.99095618399988,21.73334381700012],[-80.00324459499993,21.720892645],[-80.02179928299992,21.729193427],[-80.03880774599989,21.747137762000037],[-80.0462133449999,21.76341380400008],[-80.04845130099997,21.784898179],[-80.05532792899987,21.803697007000054],[-80.06725012899992,21.81704336100016],[-80.08433997299994,21.822088934000092],[-80.10488847599989,21.825384833000115],[-80.1459041009999,21.839911200000145],[-80.18822180899991,21.848456122000087],[-80.21768144399991,21.871486721000068],[-80.2699275379999,21.88703034100014],[-80.30077063699987,21.911688544000143],[-80.40990149599992,22.02069733300011],[-80.41185462099986,22.025091864000032],[-80.41185462099986,22.030259507000107],[-80.41258704299989,22.03583405200011],[-80.41673743399994,22.041205145000088],[-80.42113196499992,22.041896877000042],[-80.43321692599991,22.040187893000038],[-80.43724524599989,22.041205145000088],[-80.44810950399997,22.05027903900016],[-80.4510798819999,22.0566266950001],[-80.45091712099992,22.06850820500007],[-80.4367569649999,22.065904039000156],[-80.41934160099991,22.06663646],[-80.40217037699992,22.07168203300013],[-80.38878333199992,22.082180080000015],[-80.40416419199994,22.07851797100015],[-80.40990149599992,22.075995184000035],[-80.40583248599995,22.084702867000104],[-80.40029863199993,22.093166408000158],[-80.3961482409999,22.10138580900015],[-80.39631100199995,22.10952383000007],[-80.40428626199991,22.112616278000143],[-80.41633053299992,22.109605210000055],[-80.42536373599992,22.110052802000055],[-80.42418372299991,22.12311432500003],[-80.44391842399995,22.12319570500001],[-80.45653235599991,22.13043854400003],[-80.45775305899994,22.14276764500009],[-80.44343014199985,22.15790436400009],[-80.46727454299995,22.171616929000024],[-80.47671464799994,22.180161851000108],[-80.48444576699987,22.192043361000074],[-80.49128170499996,22.18183014500012],[-80.50357011599993,22.17820872599999],[-80.5184220039999,22.17991771],[-80.53282630099997,22.18577708500011],[-80.5382380849999,22.164455471000068],[-80.52879798099991,22.150864976000108],[-80.49864661399987,22.130560614],[-80.48399817599997,22.111883856000034],[-80.4708552729999,22.08909739800002],[-80.46467037699995,22.064764716000028],[-80.47077389199983,22.041205145000088],[-80.5137426419999,22.056341864000085],[-80.63801021999993,22.05304596600014],[-80.76109778599994,22.061102606000176],[-80.90526282499988,22.04612864800005],[-80.99209550699987,22.054266669000143],[-81.01162675699996,22.060532945000105],[-81.04918372299997,22.07843659100017],[-81.08844967399989,22.08584219000015],[-81.10366777299987,22.09589264500012],[-81.11375891799992,22.111232815000065],[-81.13947506399987,22.16181061400006],[-81.14297441299996,22.17153554900004],[-81.14362545499992,22.18740469000015],[-81.13609778599997,22.229885158000016],[-81.1406957669999,22.23273346600014],[-81.16714433499988,22.27081940300006],[-81.18053137899997,22.278876044000082],[-81.19395911399995,22.28156159100014],[-81.20518958199997,22.27806224200016],[-81.21182206899992,22.26776764500015],[-81.2115779289999,22.25531647300012],[-81.19758053299991,22.212469794000143],[-81.19688880099989,22.091253973],[-81.20470130099989,22.06028880400008],[-81.22549394399996,22.06167226800015],[-81.21125240799995,22.083482164000102],[-81.2154434889999,22.114976304000106],[-81.22980709499987,22.143947658000016],[-81.23912512899992,22.15106842700005],[-81.26707923099984,22.141587632000054],[-81.27330481699991,22.137396552000112],[-81.27643795499998,22.12889232000019],[-81.27525794199994,22.110256252000013],[-81.27953040299988,22.102606512000147],[-81.29133053299992,22.097560940000122],[-81.29930579299989,22.101263739000085],[-81.30606035099993,22.10736725500008],[-81.31427975199992,22.10952383000007],[-81.32152258999994,22.10472239799999],[-81.32274329299985,22.097845770000063],[-81.3255916009999,22.091701565],[-81.33788001199984,22.089016018000038],[-81.37409420499998,22.104152736000017],[-81.39610755099989,22.170721747000112],[-81.43407141799989,22.18577708500011],[-81.48216712099986,22.18577708500011],[-81.49356035099993,22.188869533000016],[-81.51280676999988,22.201971747000172],[-81.5235082669999,22.205023505000085],[-81.53123938699991,22.201971747000172],[-81.54588782499991,22.188869533000016],[-81.55760657499991,22.18577708500011],[-81.5602107409999,22.184637762000094],[-81.56212317599997,22.182074286000088],[-81.56517493399986,22.179510809000178],[-81.57119706899996,22.17837148600013],[-81.57433020699995,22.180121161000116],[-81.57677161399987,22.188869533000016],[-81.58116614499994,22.192043361000074],[-81.62271074099993,22.205023505000085],[-81.62779700399997,22.207953192],[-81.63955644399992,22.21271393400009],[-81.65147864499988,22.21295807500003],[-81.65684973899994,22.201971747000172],[-81.66661536399988,22.197902736000014],[-81.6886287099999,22.196844794000143],[-81.71198482999998,22.199164130000113],[-81.7257380849999,22.205023505000085],[-81.73200436099995,22.205023505000085],[-81.73460852799985,22.192775783000013],[-81.74107825399994,22.18960195500013],[-81.7599177729999,22.192043361000074],[-81.75690670499989,22.188055731000087],[-81.75523841099987,22.18537018400012],[-81.75251217399992,22.17837148600013],[-81.76353919199994,22.178412177000112],[-81.81021074099992,22.183823960000083],[-81.82445227799985,22.188910223],[-81.84968014199993,22.21499258000007],[-81.85875403599991,22.228908596000124],[-81.86237545499998,22.243557033000158],[-81.87970943899985,22.260402736000156],[-82.02139238199987,22.313299872000115],[-82.03587805899991,22.32099030200014],[-82.05101477799991,22.332586981000148],[-82.05996660099994,22.337307033000158],[-82.07990475199995,22.339300848],[-82.08824622299991,22.342230536000113],[-82.09316972599987,22.34784577000012],[-82.1046443349999,22.366197007000082],[-82.10562089799988,22.370184637000065],[-82.11925208199992,22.37006256700009],[-82.13760331899988,22.372137762000094],[-82.15453040299987,22.37986888200011],[-82.16397050699987,22.396877346000064],[-82.15838438999988,22.41253420300002],[-82.14639238199996,22.422186591000028],[-82.13121497299997,22.428127346000124],[-82.11873706799986,22.43182796399999],[-82.00362935899992,22.42815288200002],[-81.9660797979999,22.43712357800011],[-81.93947250999994,22.433215589000056],[-81.9090353099999,22.43546427800011],[-81.89057523299991,22.4385500960001],[-81.8638915809999,22.432626484000153],[-81.84113834399989,22.430757290000045],[-81.78964164699988,22.438316738000154],[-81.75007076699987,22.454006252000156],[-81.73884029899996,22.452093817],[-81.72850501199986,22.45722077],[-81.70872962099995,22.457180080000015],[-81.69786536399994,22.459540106000148],[-81.68350178299988,22.46359485300009],[-81.67030253799987,22.475948351000014],[-81.66094918499992,22.484185962000097],[-81.6515626449999,22.487827104000118],[-81.65280376699994,22.508782984],[-81.64879309799991,22.51829661700016],[-81.65130848599992,22.533840785000123],[-81.64264889199983,22.561957098000065],[-81.64325500399988,22.572736736000152],[-81.65767724299994,22.577255391000037],[-81.6726311779999,22.577679783000136],[-81.70002193899985,22.599595445000045],[-81.71884866599989,22.61370227100012],[-81.75338596299991,22.63803690600015],[-81.78841218999986,22.65009702100015],[-81.87750093499992,22.679730389000113],[-81.9124242829999,22.678534247000087],[-81.99254309799994,22.67169830900015],[-82.09879344699996,22.654921488000085],[-82.13097083199992,22.667873440000065],[-82.19885519799993,22.6857735950001],[-82.27484136199993,22.685616806],[-82.31720943899992,22.68097565300003],[-82.33901933499988,22.678656317000062],[-82.35985266799986,22.680812893000066],[-82.39158381599995,22.688420458000067],[-82.45735629099994,22.680384886000084],[-82.50999915299991,22.692287502000013],[-82.52171790299987,22.69017161700019],[-82.5410863919999,22.680812893000066],[-82.55093339799993,22.678656317000062],[-82.59741800599991,22.68800849500009],[-82.63294536299995,22.680184949000147],[-82.73843339799993,22.706366278000147],[-82.75987708199997,22.705959377000127],[-82.78066972599987,22.69611237200003],[-82.79088294199991,22.67987702000009],[-82.79430091099991,22.66046784100017],[-82.79458574099993,22.64081452000012],[-82.80068925699993,22.622748114],[-82.81541907499991,22.613430080000157],[-82.84923255099989,22.602932033000073],[-82.90929114499991,22.555568752000127],[-82.92125403599994,22.54828522300012],[-82.94395911399988,22.546576239000117],[-82.9593806629999,22.54205963700015],[-83.02599036399988,22.509751695000045],[-83.05870520699992,22.489447333000058],[-83.0860896479999,22.462795315000037],[-83.14317786399997,22.361273505000113],[-83.16685950399989,22.339544989000146],[-83.19933020699997,22.336004950000145],[-83.23224850199995,22.344794012000037],[-83.24583899599992,22.345933335000055],[-83.26012122299991,22.342230536000113],[-83.2605688139999,22.33974844],[-83.26012122299991,22.32575104400003],[-83.26178951699991,22.321966864],[-83.26569576699993,22.32225169500005],[-83.27025305899984,22.323553778000033],[-83.27745520699989,22.32103099200013],[-83.28197180899986,22.32233307500003],[-83.28579667899987,22.322699286000145],[-83.28742428299988,22.31867096600017],[-83.28693600199989,22.304632880000113],[-83.28742428299988,22.30190664300015],[-83.32359778599991,22.280218817000062],[-83.33580481699988,22.26776764500015],[-83.34117591099994,22.259344794000086],[-83.34203040299985,22.254543361000017],[-83.34146074099988,22.251044012000122],[-83.34264075399992,22.246649481000034],[-83.34923255099989,22.23216380399999],[-83.35411536399994,22.225775458000054],[-83.36314856699997,22.219305731000148],[-83.36636308499993,22.222398179000052],[-83.36790930899986,22.22557200700011],[-83.36847896999984,22.21385325700011],[-83.37555904899989,22.206976630000113],[-83.3811475899999,22.217147133000154],[-83.38944052399995,22.220365092000133],[-83.39822260799988,22.21928046],[-83.39899122699987,22.202831413000137],[-83.41547243699992,22.18609337100018],[-83.4653214179999,22.182074286000088],[-83.51695716099997,22.188218492000072],[-83.56114661399994,22.205023505000085],[-83.55284583199995,22.21344635600003],[-83.55549068899985,22.223618882000082],[-83.56285559799994,22.23484935100008],[-83.56859290299991,22.246649481000034],[-83.57542883999994,22.246649481000034],[-83.58958899599985,22.219916083000115],[-83.61436926999991,22.195746161000116],[-83.64362545499995,22.178290106000148],[-83.67100989499991,22.17153554900004],[-83.66893469999991,22.175034898000106],[-83.66673743399991,22.18195221600011],[-83.66478430899986,22.18577708500011],[-83.77546139199984,22.170721747000112],[-83.78087317599989,22.17153554900004],[-83.78477942599989,22.175441799000012],[-83.78750566299996,22.182359117000104],[-83.78872636599988,22.18903229400017],[-83.78770911399991,22.192043361000074],[-83.79914303299995,22.188788153000033],[-83.81102454299992,22.174750067000087],[-83.82555091099994,22.17153554900004],[-83.90322831899988,22.175685940000065],[-83.92544511599993,22.17153554900004],[-83.96646074099993,22.13397858300011],[-83.96768144399996,22.126369533000073],[-83.97533118399988,22.098822333000058],[-83.98009192599989,22.089016018000038],[-83.9748429029999,22.082464911000116],[-83.97329667899996,22.076483466000024],[-83.97264563699991,22.06167226800015],[-83.98399817599987,22.07054271],[-83.99498450399994,22.06826406500012],[-84.00177975199998,22.057562567],[-84.00059973899994,22.041205145000088],[-83.99303137899987,22.02798086100013],[-83.98322506399985,22.02309804900007],[-83.97166907499992,22.025783596000153],[-83.95897376199989,22.034979559000035],[-83.96467037699995,22.013332424000126],[-83.99925696499984,21.98948802300005],[-84.00743567599994,21.96918366100006],[-84.0038142569999,21.964422919000143],[-83.99705969999988,21.95868561400009],[-83.99303137899987,21.951361395000063],[-83.99746660099987,21.941839911000088],[-84.00690670499996,21.93329498900006],[-84.01768958199989,21.92548248900006],[-84.02940833199997,21.919867255000057],[-84.04161536399994,21.91766998900006],[-84.06041419199991,21.92194245000009],[-84.09821529899995,21.940741278000033],[-84.12043209499988,21.945013739000146],[-84.14216061099998,21.940334377000127],[-84.18073482999993,21.918280341000024],[-84.19920813699989,21.910834052000055],[-84.20933997299993,21.910101630000113],[-84.23009192599994,21.9115257830001],[-84.2401423819999,21.910834052000055],[-84.25121008999994,21.90656159100014],[-84.27391516799989,21.89321523600013],[-84.30516516799986,21.884507554000052],[-84.42324785099991,21.79230377800009],[-84.46617591099991,21.770453192000147],[-84.50837154899992,21.76683177299999],[-84.52135169199994,21.786566473],[-84.48131262899989,21.865179755000113],[-84.47354081899991,21.904608466000084],[-84.49616451699987,21.93378327000015],[-84.53604081899994,21.94017161700016],[-84.58055579299992,21.933905341000028],[-84.65998287699995,21.912054755000085],[-84.69871985599988,21.89484284100014],[-84.79971269399991,21.832098700000174],[-84.8399145169999,21.822902736000017],[-84.88341223899992,21.823553778000147],[-84.92540442599991,21.835760809000032],[-84.93911699099993,21.846096096000124],[-84.94725501199984,21.86033763200014],[-84.94961503799989,21.876776434000035],[-84.94603430899984,21.893540757000054],[-84.94273841099991,21.90005117400015],[-84.9375707669999,21.908107815000093],[-84.93122311099998,21.914740302000055],[-84.92454993399991,21.91722239799999],[-84.9197891919999,21.914740302000055],[-84.91657467399995,21.909613348000118],[-84.91388912699989,21.903713283000016],[-84.9107966789999,21.89899323100009],[-84.90355383999987,21.893622137000037],[-84.89537512899997,21.890570380000142],[-84.88658606699991,21.889553127000067],[-84.8775935539999,21.890326239],[-84.86050370999993,21.89704010600006],[-84.84874426999995,21.90839264500012],[-84.84821529899989,21.921087958000086],[-84.86461341099988,21.931952216000166],[-84.84756425699993,21.940619208000058],[-84.83238684799994,21.940578518000063],[-84.82290605399993,21.930894273000106],[-84.8229874339999,21.910834052000055],[-84.74107825399997,21.951808986000074],[-84.66844641799989,21.971869208000115],[-84.5833227199999,22.00751373900009],[-84.52887936099998,22.044338283000158],[-84.52135169199994,22.048041083],[-84.50804602799991,22.049017645000063],[-84.49592037699992,22.04734935100005],[-84.48965410099987,22.04279205900012],[-84.49404863199993,22.034979559000035],[-84.46263587099992,22.02204010600012],[-84.43932044199991,22.028143622000115],[-84.41665605399996,22.041001695000134],[-84.38731848899992,22.048041083],[-84.3727921209999,22.043931382000054],[-84.35582434799994,22.034084377000127],[-84.34166419199991,22.021673895],[-84.33580481699997,22.010443427],[-84.33096269399988,22.004584052000055],[-84.30382239499997,22.022894598000118],[-84.28856360599991,22.02069733300011],[-84.27432206899991,22.075995184000035],[-84.28628495999993,22.063381252000152],[-84.29686438699989,22.04596588700018],[-84.30817623599995,22.03668854400003],[-84.32213294199994,22.048041083],[-84.32803300699987,22.06712474200016],[-84.32677161399997,22.081854559000178],[-84.33018958199996,22.09332916900003],[-84.35000566299988,22.102606512000147],[-84.34072831899994,22.12396881700012],[-84.33580481699997,22.130560614],[-84.35435950399996,22.13251373900006],[-84.37458248599988,22.139308986000074],[-84.39281165299988,22.148504950000145],[-84.40534420499998,22.15790436400009],[-84.4134415359999,22.172023830000015],[-84.42003333199997,22.188666083000058],[-84.42926998599992,22.201727606000034],[-84.44566809799994,22.205023505000085],[-84.43569902299996,22.21369049700014],[-84.42446855399996,22.229152736000074],[-84.41535396999987,22.247381903000143],[-84.41148841099992,22.263983466000028],[-84.40965735599988,22.28725820500013],[-84.40534420499998,22.30874258000007],[-84.3910212879999,22.35276927299999],[-84.38853919199997,22.355169989000117],[-84.37393144399994,22.38068268400012],[-84.36880449099993,22.383286851000108],[-84.35802161399994,22.384263414000188],[-84.35313880099994,22.387193101000108],[-84.34911048099988,22.393622137000037],[-84.3451228509999,22.406236070000105],[-84.3426000639999,22.41107819200009],[-84.32127844999994,22.440130927000055],[-84.30650794199994,22.455633856000176],[-84.28856360599991,22.465765692000115],[-84.28856360599991,22.47321198100009],[-84.30907141799986,22.47321198100009],[-84.29181881399985,22.486273505],[-84.24901282499985,22.4935570330001],[-84.23029537699989,22.50360748900006],[-84.21837317599994,22.518744208000054],[-84.20579993399986,22.54116445500007],[-84.20116126199991,22.562811591000166],[-84.21288001199991,22.575588283000013],[-84.21288001199991,22.58307526200018],[-84.20238196499994,22.580064195000162],[-84.19237219999988,22.575588283000013],[-84.17813066299996,22.585679429],[-84.16462154899989,22.587632554000106],[-84.15298417899987,22.582017320000134],[-84.14460201699993,22.569403387000037],[-84.13573157499988,22.606838283000073],[-84.13036048099991,22.616522528000033],[-84.1205134759999,22.620266018000066],[-84.09463456899988,22.62238190300009],[-84.08934485599991,22.6271019550001],[-84.08861243399987,22.637152411000056],[-84.08543860599991,22.65420156500012],[-84.07827714799987,22.66620514500015],[-84.06550045499992,22.66128164300009],[-84.05211341099991,22.65330638200011],[-84.04161536399994,22.65843333500014],[-84.03197180899988,22.669378973],[-84.02110755099989,22.678656317000062],[-84.02867591099994,22.690090236000017],[-84.03897050699996,22.697088934000092],[-84.05231686099997,22.69985586100016],[-84.06883704299986,22.69847239799999],[-84.0643204419999,22.706244208000086],[-84.05703691299988,22.713283596000153],[-84.04800370999988,22.718247789000102],[-84.03844153599988,22.720200914000046],[-84.02232825399992,22.71474844],[-84.01378333199989,22.70254140800013],[-84.00719153599991,22.690375067000144],[-83.99746660099987,22.684881903000033],[-83.98403886599988,22.687079169000114],[-83.97207597599993,22.69253164300015],[-83.9112442699999,22.733303127000013],[-83.89757239499988,22.720200914000046],[-83.88805091099988,22.741441148000135],[-83.87279212099992,22.750799872000144],[-83.82925370999989,22.75372955900009],[-83.81265214799993,22.7567406270001],[-83.7437231109999,22.78912995000009],[-83.7091365229999,22.800685940000122],[-83.69273841099988,22.802150783000073],[-83.68154863199987,22.800360419000086],[-83.66893469999991,22.79490794500005],[-83.65802975199992,22.79466380400011],[-83.6511124339999,22.796820380000113],[-83.63731848899991,22.805121161],[-83.6300349599999,22.808335679000052],[-83.6300349599999,22.815822658000016],[-83.63719641799995,22.81268952000015],[-83.64435787699988,22.808335679000052],[-83.64565995999988,22.8119977890001],[-83.64537512899994,22.814276434000178],[-83.64622962099986,22.81537506700012],[-83.6511938139999,22.815822658000016],[-83.62987219999992,22.82831452000012],[-83.60789954299992,22.834377346000124],[-83.55801347599987,22.836249091000084],[-83.55378170499995,22.842230536],[-83.54133053299991,22.873846747000087],[-83.53498287699989,22.877020575000145],[-83.49351966099991,22.877264716000084],[-83.49608313699991,22.87034739800002],[-83.49762936099994,22.86749909100014],[-83.50035559799991,22.86359284100014],[-83.48082434799994,22.860256252000127],[-83.46910559799994,22.870591539000046],[-83.4610489569999,22.88597239799999],[-83.45250403599988,22.897772528000147],[-83.43757076699984,22.903469143000123],[-83.4260961579999,22.899237372000115],[-83.41405188699987,22.890814520000063],[-83.39728756399987,22.884100653000118],[-83.40436764199993,22.873765367000104],[-83.39346269399992,22.876898505],[-83.37751217399995,22.886135158000126],[-83.36937415299991,22.89398834800012],[-83.36335201699993,22.910467841000024],[-83.34845943899987,22.932114976000108],[-83.32966061099992,22.951076565000033],[-83.31163489499988,22.95917389500015],[-83.2981664699999,22.963324286000088],[-83.24644934799997,22.993963934000092],[-83.22618567599994,23.001857815000065],[-83.20763098899994,23.00267161700016],[-83.1914770169999,22.99738190300009],[-83.17821204299985,22.986517645000035],[-83.17821204299985,22.98029205900015],[-83.18736731699994,22.973822333000058],[-83.19123287699995,22.961859442000115],[-83.18932044199988,22.947821356000148],[-83.18163001199989,22.93528880400008],[-83.16942298099991,22.930121161000056],[-83.15916907499988,22.936224677000055],[-83.15054277299987,22.94627513200011],[-83.14342200399992,22.953029690000065],[-83.16169186099997,22.96694570500013],[-83.16051184799994,22.97996653900013],[-83.14582271999987,22.991400458],[-83.12360592399989,23.000148830000157],[-83.08193925699992,23.007635809000032],[-83.07412675699996,23.011297919000086],[-83.06114661399992,23.019598700000145],[-83.05528723899991,23.02122630399999],[-83.0449112619999,23.01951732000016],[-83.03111731699991,23.01068756700012],[-83.02057857999995,23.007635809000032],[-83.01537024599995,23.01032135600009],[-83.00938880099994,23.016017971000096],[-83.00202389199984,23.019232489000146],[-82.99258378799993,23.01439036700016],[-82.98631751199987,23.00409577000015],[-82.99282792899987,23.00096263200008],[-83.00283769399994,22.99945709800012],[-83.00690670499992,22.993963934000092],[-83.00279700399994,22.983587958],[-82.99669348899997,22.980169989000085],[-82.98888098899988,22.98362864799999],[-82.9796036449999,22.993963934000092],[-82.98167883999994,22.974188544000167],[-82.96422278599988,22.972886460000083],[-82.94440670499998,22.985093492000047],[-82.9424535799999,22.986314195000077],[-82.93175208199989,23.011053778000033],[-82.91759192599997,23.03245677299999],[-82.88516191299988,23.033107815000122],[-82.84935462099986,23.02777741100006],[-82.82530676999994,23.03148021000011],[-82.8032934239999,23.038804429000106],[-82.71271725199988,23.03489817900011],[-82.61998450399993,23.046128648000106],[-82.5960180329999,23.05536530199999],[-82.57551021999983,23.05402252800009],[-82.53209387899989,23.07709381700006],[-82.50999915299991,23.083319403000115],[-82.50446529899989,23.086493231000176],[-82.49453691299988,23.100653387000094],[-82.48957271999984,23.103827216000166],[-82.4772029289999,23.10516998900006],[-82.46768144399991,23.108547268000066],[-82.45201575399992,23.117499091000113],[-82.42235266799989,23.138861395000063],[-82.40689042899987,23.147447007000082],[-82.36709550699986,23.153021552],[-82.32103430899994,23.17145416900003],[-82.25108801999991,23.18211497600005],[-82.21934973899997,23.194240627000124],[-82.15029863199993,23.178900458],[-82.12840735599991,23.181057033000098],[-82.10008704299986,23.18764883000007],[-82.08824622299991,23.19041575700011],[-82.06501217399989,23.19257233300011],[-82.05492102799991,23.194769598000118],[-82.04401607999995,23.198716539000102],[-82.03319251199986,23.20050690300009],[-82.02342688699991,23.19594961100013],[-81.98582923099991,23.17145416900003],[-81.95612545499998,23.16364166900003],[-81.89207923099991,23.15786367400007],[-81.86237545499998,23.15102773600013],[-81.84007727799994,23.157782294000082],[-81.68390865799998,23.156927802000084],[-81.65807044199997,23.156805731000087],[-81.64232337099992,23.15884023600013],[-81.6289770169999,23.165228583000058],[-81.61758378799993,23.159613348000065],[-81.60643469999991,23.15884023600013],[-81.59459387899994,23.159328518000123],[-81.58116614499994,23.157782294000082],[-81.57428951699987,23.15399811400006],[-81.5567927729999,23.14081452],[-81.5355525379999,23.12938060100005],[-81.53209387899992,23.10932038],[-81.53530839799986,23.08633047100001],[-81.54019120999993,23.069037177000112],[-81.54621334499984,23.06118398600013],[-81.5523982409999,23.057359117000104],[-81.55256100199998,23.054348049000012],[-81.54019120999993,23.048570054000052],[-81.52879798099988,23.04718659100017],[-81.51764889199987,23.049790757000082],[-81.50267493399991,23.05536530199999],[-81.49876868399991,23.060492255],[-81.49254309799997,23.084865627000156],[-81.48900305899987,23.093247789000102],[-81.48070227799991,23.10032786700016],[-81.47329667899993,23.102606512000065],[-81.46422278599991,23.10285065300009],[-81.38011633999989,23.116359768000066],[-81.36888587099989,23.12091705900012],[-81.35814368399988,23.13174062700001],[-81.33336341099991,23.138251044000086],[-81.2862849599999,23.14476146],[-81.27139238199993,23.149562893000095],[-81.23424231699994,23.166449286000088],[-81.20982825399989,23.18374258000007],[-81.16559811099992,23.207831122000083],[-81.14915930899994,23.212388414000046],[-81.1306046209999,23.20563385600009],[-81.14476477799985,23.19428131700012],[-81.17243404899995,23.18366120000009],[-81.21788489499994,23.17267487200003],[-81.27220618399986,23.14199453300013],[-81.2862849599999,23.130519924000097],[-81.2862849599999,23.12425364800005],[-81.24193274599986,23.113714911000088],[-81.18488521999987,23.05206940300006]]],[[[-80.7124731109999,23.19989655200014],[-80.71100826699983,23.197007554000024],[-80.71190344999992,23.19082265800013],[-80.71776282499988,23.18895091400016],[-80.72516842399995,23.192775783000073],[-80.73228919199991,23.193060614000117],[-80.73680579299986,23.18675364799999],[-80.74083411399994,23.184271552000055],[-80.76207434799991,23.193182684000092],[-80.7738337879999,23.196600653000086],[-80.78075110599988,23.19769928600014],[-80.7992244129999,23.195868231000148],[-80.8100479809999,23.196600653000086],[-80.83849036399994,23.206244208000058],[-80.84825598899997,23.208482164000046],[-80.85562089799987,23.217718817],[-80.8614395819999,23.220363674000012],[-80.85732988199987,23.225816148000135],[-80.83788001199989,23.22353750200007],[-80.80992591099992,23.21381256700003],[-80.77501380099991,23.206610419000086],[-80.7124731109999,23.19989655200014]]],[[[-80.91299394399988,23.265570380000142],[-80.8856095039999,23.25006745000003],[-80.87877356699991,23.250433661000145],[-80.87413489499988,23.24896881700009],[-80.8709203769999,23.24038320500007],[-80.87857011599996,23.23212311400009],[-80.89012610599988,23.23387278900016],[-80.90123450399992,23.237209377000013],[-80.91315670499993,23.23871491100006],[-80.92446855399993,23.24310944200012],[-80.92943274599989,23.25014883000001],[-80.93374589799988,23.25446198100009],[-80.94269771999993,23.257269598000065],[-80.9358617829999,23.263128973],[-80.91299394399988,23.265570380000142]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Curaçao","adm0_a3":"CUW","geou_dif":0,"geounit":"Curaçao","gu_a3":"CUW","su_dif":0,"subunit":"Curaçao","su_a3":"CUW","brk_diff":0,"name":"Curaçao","name_long":"Curaçao","brk_a3":"CUW","brk_name":"Curaçao","brk_group":null,"abbrev":"Cur.","postal":"CW","formal_en":"Curaçao","formal_fr":null,"note_adm0":"Neth.","note_brk":null,"name_sort":"Curaçao","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":141766,"gdp_md_est":2838,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"NT","iso_a2":"CW","iso_a3":"CUW","iso_n3":"531","un_a3":"531","wb_a2":"CW","wb_a3":"CUW","woe_id":-90,"woe_id_eh":24549810,"woe_note":"Expired subunits of Netherlands Antilles (23424914).","adm0_a3_is":"CUW","adm0_a3_us":"CUW","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":4,"homepart":-99,"filename":"CUW.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-68.78075110599988,12.097805080000072],[-68.7452286449999,12.062241929],[-68.73973548099988,12.053045966000127],[-68.74864661399991,12.047023830000029],[-68.76984615799992,12.04291413000007],[-68.79474850199995,12.041327216000042],[-68.8148087229999,12.04315827000002],[-68.84117591099991,12.055487372000059],[-68.8934220039999,12.090521552000055],[-68.94473222599993,12.105617580000057],[-68.97777258999989,12.124579169000071],[-69.00743567599991,12.148179429000024],[-69.02025305899986,12.16974518400012],[-69.02721106699994,12.190090236000103],[-69.04360917899996,12.196682033000087],[-69.0628962879999,12.198431708000086],[-69.07860266799995,12.204250393000038],[-69.09190833199997,12.219875393000024],[-69.12267005099994,12.269029039000129],[-69.13438880099994,12.27732982000012],[-69.14810136599995,12.284409898000078],[-69.15953528599994,12.293361721000108],[-69.16429602799991,12.30695221600007],[-69.16197669199997,12.342840887000065],[-69.16380774599995,12.361883856000063],[-69.17174231699991,12.37889232000012],[-69.16612708199989,12.387844143000052],[-69.16120357999995,12.391506252000099],[-69.15623938699989,12.390611070000105],[-69.15062415299988,12.38572825700004],[-69.10777747299991,12.367824611000074],[-69.08958899599992,12.356878973000022],[-69.07152258999989,12.3413760440001],[-69.06041419199997,12.322577216000056],[-69.04995683499986,12.276109117000104],[-69.04076087099992,12.256048895000049],[-69.00401770699992,12.221665757000011],[-68.96129309799991,12.201361395000106],[-68.83527584499987,12.171047268000024],[-68.82079016799992,12.162339585000039],[-68.8148087229999,12.149603583000086],[-68.8118383449999,12.129339911000072],[-68.8040258449999,12.11701080900012],[-68.78075110599988,12.097805080000072]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Canada","sov_a3":"CAN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Canada","adm0_a3":"CAN","geou_dif":0,"geounit":"Canada","gu_a3":"CAN","su_dif":0,"subunit":"Canada","su_a3":"CAN","brk_diff":0,"name":"Canada","name_long":"Canada","brk_a3":"CAN","brk_name":"Canada","brk_group":null,"abbrev":"Can.","postal":"CA","formal_en":"Canada","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Canada","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":2,"mapcolor13":2,"pop_est":33487208,"gdp_md_est":1300000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"CA","iso_a2":"CA","iso_a3":"CAN","iso_n3":"124","un_a3":"124","wb_a2":"CA","wb_a3":"CAN","woe_id":23424775,"woe_id_eh":23424775,"woe_note":"Exact WOE match as country","adm0_a3_is":"CAN","adm0_a3_us":"CAN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CAN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.6105850899999,43.42816803600011],[-65.6288142569999,43.42206452000015],[-65.62140865799991,43.435044664000046],[-65.62694251199993,43.44513580900009],[-65.63536536399991,43.45319245000003],[-65.64541581899996,43.45917389500006],[-65.65611731699991,43.46303945500016],[-65.64631100199995,43.47174713700004],[-65.63451087099989,43.47675202000009],[-65.60777747299989,43.48346588700004],[-65.61705481699994,43.50787995000008],[-65.60521399599989,43.514105536000145],[-65.55992591099997,43.510809637000094],[-65.56867428299992,43.49457428600006],[-65.57420813699986,43.4767113300001],[-65.58714758999986,43.46352773600013],[-65.59797115799995,43.4447289080001],[-65.6105850899999,43.42816803600011]]],[[[-59.8081617009999,43.940226333000126],[-59.85837099799994,43.92359832900003],[-59.90777975099984,43.91617457400004],[-59.96322005699991,43.91406872100008],[-60.01875791999989,43.91377129800007],[-60.075118494999884,43.927222229],[-60.11695350099993,43.942939037000045],[-60.13016059599996,43.96047286800014],[-60.11795309699994,43.959474953],[-60.104860243999944,43.954361802000065],[-60.09115997599989,43.94972750100014],[-60.07388261599996,43.94245026200012],[-59.997813656999966,43.93786773500001],[-59.87154968099994,43.942077558],[-59.84066445699994,43.94987449800014],[-59.81980052199993,43.954155950000185],[-59.79351100399986,43.964570993000116],[-59.74082906199996,43.9964382940001],[-59.707183922999974,44.01441626200007],[-59.75711863399994,43.96606364000017],[-59.8081617009999,43.940226333000126]]],[[[-66.2981664699999,44.28327057500003],[-66.31346594999988,44.25067780199999],[-66.32774817599997,44.258124091000134],[-66.28579667899987,44.324774481000034],[-66.25788326699993,44.35464101800012],[-66.24176998599995,44.37738678600005],[-66.23155676999991,44.38719310099999],[-66.21300208199992,44.39581940300009],[-66.20343990799991,44.39223867400004],[-66.20445716099991,44.381170966000084],[-66.21788489499988,44.367377020000056],[-66.23867753799988,44.33836497599999],[-66.2981664699999,44.28327057500003]]],[[[-66.76945305999993,44.79565700400012],[-66.75680085999988,44.77756250900008],[-66.74315992899994,44.78204731400017],[-66.73246554299988,44.768823555],[-66.7354906759999,44.759083364],[-66.75289549299987,44.76385456500016],[-66.76148639199988,44.7545296360001],[-66.75332843099991,44.74176134000014],[-66.73863684799997,44.71063873900012],[-66.72810612499995,44.683535458000065],[-66.72113448199991,44.66277926100015],[-66.70799804199993,44.651334037000154],[-66.69178396999988,44.642991541000086],[-66.6873421059999,44.62885725000008],[-66.69039124999995,44.62000171900003],[-66.70898701299987,44.61374149800004],[-66.72831340299987,44.6229522310001],[-66.73279134599991,44.64106765400008],[-66.74282881699989,44.65340844300003],[-66.75405138699995,44.65734203300015],[-66.76770142499996,44.653304824000074],[-66.78328248599985,44.661204865],[-66.79817285999991,44.65937502800013],[-66.80993652999987,44.651801747000135],[-66.83909087599991,44.650351194],[-66.85838782499988,44.63800690300006],[-66.86701412699993,44.62978750200013],[-66.876141,44.606331030000106],[-66.89029089699996,44.60275711200016],[-66.90598585599989,44.60616917900002],[-66.90143795499989,44.63011302300007],[-66.89134680899994,44.655585028000175],[-66.88459225199989,44.68891022300006],[-66.86579342399993,44.71124909100008],[-66.86148027299996,44.72675202],[-66.85114498599992,44.75470612200003],[-66.82575436099992,44.787583726000136],[-66.79128873799988,44.799104088000135],[-66.76945305999993,44.79565700400012]]],[[[-73.93805904899995,45.31024811400006],[-73.94831295499996,45.30206940300015],[-73.96865800699987,45.28986237200009],[-73.98371334499988,45.27704498900006],[-73.99327551999988,45.2721214860001],[-74.0030004549999,45.268703518000095],[-74.02871660099987,45.26410553600006],[-74.04784094999985,45.25763580900006],[-74.08104407499988,45.25275299700017],[-74.13939368399986,45.25116608300014],[-74.1465551419999,45.25259023600002],[-74.15318762899997,45.25560130400011],[-74.15868079299989,45.260077216000084],[-74.16502844999994,45.26972077000015],[-74.16624915299985,45.27912018400017],[-74.16258704299989,45.287787177000084],[-74.15420488199993,45.29511139500006],[-74.14171301999991,45.30219147300012],[-74.12840735599991,45.307562567],[-74.12108313699991,45.30906810100005],[-74.04356848899994,45.30565013200014],[-74.03233801999994,45.307196356000176],[-74.00121008999994,45.31671784100016],[-73.9951879549999,45.32013580900018],[-73.98729407499988,45.324693101000136],[-73.98330644399988,45.326239325000174],[-73.92064368399988,45.33380768400012],[-73.92186438699991,45.327337958000115],[-73.92467200399994,45.32196686400006],[-73.92886308499988,45.317206122000144],[-73.9343155589999,45.31268952],[-73.93805904899995,45.31024811400006]]],[[[-73.90636145699989,45.36733633000016],[-73.91478430899993,45.3661970070001],[-73.93163001199994,45.36688873900006],[-73.94847571499994,45.36969635600012],[-73.95107988199993,45.37079498900005],[-73.95335852799991,45.37262604400003],[-73.95933997299994,45.37909577000012],[-73.97520911399995,45.39126211100002],[-73.98135331899994,45.39850495000014],[-73.9845271479999,45.406398830000015],[-73.98135331899994,45.41339752800009],[-73.97911536399994,45.4146996110001],[-73.97667395699992,45.41535065300015],[-73.97398841099994,45.41547272300012],[-73.91730709499986,45.40997955900009],[-73.90729732999998,45.406927802],[-73.90282141799992,45.40477122599999],[-73.89289303299991,45.39834219000009],[-73.88902747299991,45.39671458500005],[-73.87584387899994,45.393988348],[-73.86241614499997,45.389593817],[-73.85806230399987,45.38890208500008],[-73.85789954299992,45.38532135600009],[-73.85806230399987,45.38178131700012],[-73.87189693899995,45.38076406500014],[-73.87840735599985,45.37921784100011],[-73.9007055329999,45.368882554000024],[-73.90636145699989,45.36733633000016]]],[[[-73.91832434799991,45.49209219000009],[-73.9317927729999,45.488836981000034],[-73.93651282499991,45.48965078300016],[-73.94098873599997,45.49140045800006],[-73.9447322259999,45.49420807500009],[-73.9473363919999,45.49823639500006],[-73.9469294909999,45.50324127800012],[-73.94318600199998,45.50755442900011],[-73.93809973899994,45.510931708000115],[-73.93382727799994,45.51300690300015],[-73.89631100199992,45.524481512000094],[-73.89102128799993,45.52496979400008],[-73.88646399599989,45.52338288000006],[-73.88512122299991,45.51239655199999],[-73.89928137899992,45.50092194200015],[-73.91832434799991,45.49209219000009]]],[[[-60.93195553299998,45.576849677000084],[-60.9141332669999,45.56655508000016],[-60.908070441999904,45.57737864800004],[-60.899281378999945,45.57868073100015],[-60.889230923999946,45.57391998900006],[-60.87930253799996,45.56655508000016],[-60.88426673099991,45.55760325700011],[-60.89220130099997,45.55280182500003],[-60.90241451699992,45.55145905200005],[-60.9141332669999,45.552883205000015],[-60.95262610599988,45.531642971000124],[-60.96182206899996,45.51727936400006],[-60.94762122299994,45.49823639500006],[-60.96784420499998,45.48680247600011],[-60.98570716099994,45.470160223000065],[-61.00352942599991,45.46076080900003],[-61.02391516799989,45.470892645],[-61.01305091099991,45.476629950000145],[-61.003895636999914,45.485825914000046],[-61.00210527299992,45.494452216000134],[-61.01309160099989,45.49823639500006],[-61.04002844999987,45.498724677000055],[-61.0528051419999,45.500555731000034],[-61.06493079299992,45.504461981000034],[-61.07518469999994,45.510931708000115],[-61.08934485599985,45.52334219000006],[-61.105091925999915,45.52708567899999],[-61.10610917899987,45.530991929],[-61.106068488999874,45.53644440300003],[-61.11172441299987,45.548773505000085],[-61.105824347999935,45.551336981000176],[-61.09162350199992,45.552883205000015],[-61.07502193899995,45.56273021000014],[-61.05386308499995,45.57111237200009],[-61.03111731699994,45.57733795800006],[-61.0096736319999,45.580796617000075],[-60.958566860999916,45.581447658000016],[-60.93195553299998,45.576849677000084]]],[[[-73.56379146999987,45.69232819200015],[-73.57286536399995,45.68610260600009],[-73.59382076699993,45.67792389500009],[-73.6129451159999,45.66791413],[-73.63646399599986,45.64931875200001],[-73.64207923099985,45.64321523600002],[-73.64395097599993,45.64008209800012],[-73.64830481699991,45.63068268400012],[-73.68455969999991,45.58746979400003],[-73.7062068349999,45.569484768000066],[-73.7183324859999,45.56244538000002],[-73.73135331899991,45.556952216000084],[-73.74722245999993,45.55243561400012],[-73.77993730399996,45.547105210000055],[-73.84268144399994,45.54584381700015],[-73.85728919199994,45.54938385600003],[-73.86489824099988,45.55438873900005],[-73.86644446499992,45.560777085],[-73.8635147779999,45.567857164000046],[-73.84862219999985,45.5841332050001],[-73.82770748599988,45.601223049000126],[-73.80597896999993,45.61310455900017],[-73.7589412099999,45.65253327000006],[-73.7408748039999,45.66425202000015],[-73.71776282499994,45.675848700000145],[-73.67613684799997,45.69049713700015],[-73.66616777299987,45.69220612200017],[-73.65925045499998,45.691717841000084],[-73.64557857999995,45.68891022300012],[-73.63829505099991,45.6891136740001],[-73.58535722599987,45.70062897300012],[-73.57433020699992,45.70164622599999],[-73.56484941299993,45.69867584800009],[-73.56379146999987,45.69232819200015]]],[[[-73.54369055899991,45.52553945500013],[-73.53913326699987,45.492661851000044],[-73.53941809799991,45.48737213700018],[-73.54137122299994,45.48261139500009],[-73.54474850199996,45.47907135600009],[-73.5489802729999,45.476629950000145],[-73.56786048099994,45.46938711100013],[-73.57201087099986,45.46662018400018],[-73.57579505099989,45.463120835],[-73.58511308499993,45.451402085000026],[-73.58873450399989,45.44794342700003],[-73.59821529899992,45.44306061400012],[-73.6085505849999,45.441636460000055],[-73.61921139199983,45.44257233300006],[-73.71690833199993,45.46454498900005],[-73.7948298819999,45.467230536000145],[-73.80064856699994,45.466701565000065],[-73.81200110599994,45.46385325700011],[-73.85041256399992,45.4488792990001],[-73.92491614499991,45.429999091000134],[-73.94322669199997,45.43113841400019],[-73.95543372299994,45.430243231000084],[-73.95856686099992,45.43097565300003],[-73.96833248599994,45.43707916900003],[-73.97008216099994,45.438869533],[-73.97101803299992,45.44025299700008],[-73.97248287699989,45.44326406500009],[-73.97362219999994,45.44464752800015],[-73.96226966099994,45.4488792990001],[-73.89757239499991,45.484035549000154],[-73.87498938699986,45.49310944200006],[-73.87067623599995,45.49632396000011],[-73.85484778599991,45.516302802],[-73.84984290299988,45.52073802300005],[-73.84373938699989,45.522650458000115],[-73.82347571499989,45.52252838700004],[-73.80284583199993,45.52570221600011],[-73.7970271479999,45.52558014500012],[-73.78600012899994,45.524155992000075],[-73.7801814439999,45.52431875200013],[-73.76683508999987,45.52724844000015],[-73.71670488199987,45.54441966400016],[-73.69399980399993,45.55532461100016],[-73.66795813699986,45.575588283000066],[-73.64867102799994,45.59886302299999],[-73.6427302729999,45.60932038000006],[-73.62531490799992,45.630316473],[-73.62071692599989,45.638332424000126],[-73.6095271479999,45.646673895000035],[-73.54112708199992,45.685777085000055],[-73.52403723899997,45.69953034100008],[-73.51667232999998,45.70404694200012],[-73.50865637899992,45.707464911000145],[-73.4992569649999,45.709947007000075],[-73.47956295499993,45.71442291900003],[-73.47061113199993,45.713283596],[-73.46898352799991,45.70555247599999],[-73.47647050699987,45.68927643400015],[-73.47940019399991,45.678290106000084],[-73.49958248599992,45.62677643400012],[-73.50157630099997,45.60895416900014],[-73.5040583979999,45.60040924700003],[-73.50694739499991,45.595689195000105],[-73.52672278599994,45.57640208500008],[-73.5325414699999,45.56769440300009],[-73.53701738199987,45.558172919000086],[-73.54063880099991,45.547796942],[-73.54308020699995,45.53644440300003],[-73.54369055899991,45.52553945500013]]],[[[-62.5326986069999,45.829271329],[-62.517955256999954,45.82760494300008],[-62.50690812999991,45.82806499600004],[-62.5111790629999,45.82334719200004],[-62.51235687499991,45.81436011100011],[-62.52644601199992,45.80961162000007],[-62.54973263499994,45.80354685000019],[-62.555844041999876,45.79924724300003],[-62.56691058699991,45.802204308000015],[-62.57798151599994,45.80558831200007],[-62.59454588899993,45.803815348000015],[-62.60314445799986,45.80421054500011],[-62.603187975999894,45.81062938700008],[-62.59400939399995,45.8153710750001],[-62.57441638899991,45.823999818000125],[-62.56459222999993,45.824033907000015],[-62.554154388999876,45.82406905400008],[-62.54496156899999,45.82666593900011],[-62.5326986069999,45.829271329]]],[[[-59.70604407499987,46.010972398000106],[-59.70567786399996,45.99909088700015],[-59.70807857999991,45.994696356000176],[-59.714100714999915,45.99750397300012],[-59.7259008449999,46.000433661000145],[-59.7604060539999,46.00006745000003],[-59.78099524599995,46.004380601000136],[-59.778146938999896,46.012437242000075],[-59.72374426999989,46.02887604400014],[-59.695179816999904,46.03400299700017],[-59.6886287099999,46.03025950700005],[-59.70287024599991,46.02289459800015],[-59.70604407499987,46.010972398000106]]],[[[-71.03123938699986,46.862941799000126],[-71.07176673099988,46.85814036700004],[-71.11400305899991,46.859442450000145],[-71.12474524599992,46.87702057500009],[-71.0851130849999,46.90570709800015],[-70.9934789699999,46.95001862200008],[-70.92406165299988,47.003241278000175],[-70.88540605399989,47.02655670800008],[-70.84325110599988,47.03318919500005],[-70.82848059799989,47.030096747000144],[-70.81574459499984,47.023627020000056],[-70.80968176999994,47.01341380400011],[-70.81533769399994,46.99909088700004],[-70.82795162699992,46.98700592700011],[-70.86192786399994,46.94594961100013],[-70.87425696499989,46.9369977890001],[-70.89126542899996,46.93170807500003],[-70.95250403599988,46.89545319200012],[-71.03123938699986,46.862941799000126]]],[[[-60.501128709999875,47.00120677300004],[-60.485829230999904,46.99909088700004],[-60.46157792899993,47.00336334800015],[-60.420318162999884,47.02216217699999],[-60.396107550999886,47.02635325700011],[-60.38337154899991,47.01679108300014],[-60.39842688699985,46.99555084800015],[-60.434315558999934,46.96430084800009],[-60.464711066999904,46.92706940300009],[-60.49038652299986,46.90521881700006],[-60.495757615999935,46.89545319200012],[-60.47386633999988,46.89716217700011],[-60.45221920499989,46.892523505],[-60.44204667899996,46.88442617400007],[-60.454741990999906,46.87555573100003],[-60.454741990999906,46.86810944200015],[-60.43040930899985,46.86420319200015],[-60.39354407499989,46.86298248900012],[-60.35830644399994,46.866156317],[-60.33873450399995,46.87555573100003],[-60.33071855399993,46.871649481000034],[-60.32335364499991,46.86688873900012],[-60.31672115799996,46.86115143400015],[-60.31078040299993,46.854437567],[-60.305531378999945,46.833889065000065],[-60.30899003799993,46.803371486000046],[-60.324452277999875,46.745184637000094],[-60.34235592399992,46.70848216400019],[-60.344878709999925,46.69399648600013],[-60.352121548999946,46.68646881700009],[-60.39952551999989,46.67011139500006],[-60.391468878999945,46.66120026200004],[-60.381499803999866,46.65599192900014],[-60.37010657499991,46.65428294500013],[-60.35798092399991,46.65582916900017],[-60.35798092399991,46.649603583000115],[-60.365223761999935,46.64809804900007],[-60.37791907499991,46.64345937700012],[-60.38589433499993,46.64215729400003],[-60.374012824999916,46.62962474200005],[-60.36009680899991,46.62311432500005],[-60.350493943999936,46.61587148600001],[-60.35179602799994,46.601263739],[-60.35704505099992,46.59463125200013],[-60.37970943899998,46.580755927000055],[-60.421050584999904,46.5248070330001],[-60.46157792899993,46.423081773000135],[-60.47264563699988,46.406927802000084],[-60.50938880099997,46.36847565300017],[-60.51634680899985,46.35614655200011],[-60.53038489499991,46.32363515800013],[-60.57787024599992,46.26414622600011],[-60.60578365799994,46.211330471000124],[-60.60033118399991,46.20115794499999],[-60.598744269999884,46.19717031500003],[-60.55235755099991,46.26227448100015],[-60.54043535099989,46.27228424700003],[-60.52440344999991,46.27838776200012],[-60.475249803999866,46.320013739],[-60.442616339999915,46.332464911],[-60.434315558999934,46.33368561400012],[-60.4188533189999,46.32977936400012],[-60.41567949099997,46.32391998900009],[-60.41832434799994,46.3151716170001],[-60.42064368399991,46.302679755],[-60.42690995999996,46.28400299700003],[-60.441965298999975,46.27057526200004],[-60.475249803999866,46.25177643400018],[-60.61241614499991,46.12824127800015],[-60.63223222599992,46.11798737200005],[-60.67540442599994,46.10162995000003],[-60.690988735999944,46.091009833],[-60.70083574099996,46.088039455000064],[-60.71491451699989,46.107367255],[-60.725412563999974,46.10468170800011],[-60.74779212099988,46.08527252800012],[-60.75584876199994,46.080471096000124],[-60.77301998599995,46.073391018000066],[-60.816395636999914,46.061916408000016],[-60.87315833199988,46.053168036000145],[-60.87950598899991,46.06175364800005],[-60.87413489499993,46.06834544500013],[-60.86290442599994,46.07245514500009],[-60.852040167999895,46.073635158000016],[-60.87413489499993,46.07916901200004],[-60.91250566299988,46.05182526200014],[-60.97557532499988,45.99168528900016],[-60.993234829999885,45.98212311400009],[-61.0148005849999,45.97467682500012],[-61.10187740799994,45.95815664300012],[-61.11864173099988,45.94940827000006],[-61.1263728509999,45.92963288000011],[-61.03355872299996,45.93646881700015],[-61.00991777299992,45.941392320000105],[-60.995269334999925,45.953924872000115],[-60.98355058499993,45.96967194200006],[-60.968658006999874,45.984930731000034],[-60.902740037999926,46.010199286],[-60.883941209999904,46.034654039000124],[-60.8626602859999,46.038234768],[-60.81786048099988,46.03880442900007],[-60.773508266999954,46.05927155200011],[-60.747466600999864,46.066229559000114],[-60.73595130099994,46.05658600500005],[-60.74315344999987,46.03729889500003],[-60.76024329299992,46.02228424700009],[-60.78062903599991,46.00812409100017],[-60.79743404899992,45.99168528900016],[-60.80296790299994,45.97479889500009],[-60.8065486319999,45.95416901200015],[-60.81505286399994,45.93695709800012],[-60.83527584499987,45.92963288000011],[-60.84666907499991,45.92841217700011],[-60.857777472999935,45.92487213700004],[-60.86782792899993,45.919623114000146],[-60.87629146999987,45.912827867000104],[-60.88654537699989,45.90835195500016],[-60.89842688699994,45.909898179],[-60.92027747299988,45.915961005],[-60.96165930899991,45.915187893000066],[-60.98102779899991,45.91022370000003],[-60.9892471999999,45.89887116100006],[-61.001088019999884,45.89695872599999],[-61.05573482999992,45.897650458000115],[-61.07115637899994,45.89549388200014],[-61.05223548099994,45.88886139500006],[-61.043812628999895,45.8886579450001],[-61.057281053999866,45.87958405200011],[-61.073475714999915,45.874701239000146],[-61.08861243399991,45.86823151200004],[-61.09845943899995,45.85447825700011],[-61.08389238199991,45.85382721600017],[-61.06086178299996,45.85712311400003],[-61.03954016799988,45.86347077000015],[-61.030181443999936,45.87164948100015],[-61.019439256999924,45.875718492000104],[-60.99815833199995,45.875067450000145],[-60.98265540299985,45.87689850500014],[-60.9892471999999,45.8886579450001],[-60.968576626999884,45.88621653900016],[-60.9141332669999,45.85447825700011],[-60.92634029899997,45.84772370000009],[-60.93732662699992,45.850775458000086],[-60.94945227799994,45.85712311400003],[-60.964955206999946,45.86074453300007],[-60.96666419199993,45.85651276200015],[-60.94212805899991,45.83527252800014],[-60.93455969999988,45.82660553600009],[-60.95295162699992,45.82684967700011],[-60.96076412699992,45.829087632],[-60.968658006999874,45.834051825000145],[-60.981922980999904,45.820746161000116],[-60.99486243399991,45.81997304900001],[-61.00572669199991,45.82347239800002],[-61.01309160099989,45.82318756700006],[-61.02440344999987,45.81366608300005],[-61.10285396999993,45.77887604400003],[-61.12315833199992,45.763576565000065],[-61.13377844999988,45.744614976000044],[-61.129017706999974,45.74681224200005],[-61.112049933999906,45.751532294000135],[-61.1112361319999,45.744614976000044],[-61.111439581999946,45.73554108300006],[-61.11278235599994,45.72760651200018],[-61.11583411399991,45.724188544000164],[-61.12584387899991,45.721909898000106],[-61.13385982999994,45.71702708500014],[-61.139719204999885,45.71214427300007],[-61.147613084999875,45.70791250200013],[-61.14293372299994,45.70343659100008],[-61.13337154899994,45.698879299000126],[-61.08202063699985,45.69065989800013],[-61.04942786399988,45.698472398000135],[-60.94762122299994,45.751532294000135],[-60.912831183999906,45.75617096600017],[-60.87319902299987,45.75238678600006],[-60.835682745999854,45.74046458500011],[-60.80736243399991,45.720770575000145],[-60.799224412999905,45.70331452],[-60.80768795499992,45.69065989800013],[-60.823638475999935,45.67853424700006],[-60.84487870999993,45.655340887000094],[-60.85016842399992,45.65119049700017],[-60.84947669199997,45.647650458],[-60.83836829299994,45.64227936400012],[-60.828928188999924,45.64057038000011],[-60.826039191999875,45.64423248900009],[-60.82778886599988,45.65021393400009],[-60.83214270699997,45.65525950700011],[-60.81041419199991,45.6627464860001],[-60.81786048099988,45.66893138200005],[-60.78404700399991,45.66893138200005],[-60.77733313699986,45.67377350500014],[-60.76573645699994,45.692938544000114],[-60.75951087099989,45.69379303600003],[-60.74388587099989,45.684881903000175],[-60.732492641999926,45.68439362200009],[-60.73013261599988,45.69098541900014],[-60.742176886999886,45.70376211100002],[-60.73005123599989,45.713934637000065],[-60.73350989499991,45.724554755],[-60.742990688999896,45.73501211100007],[-60.7490128249999,45.744614976000044],[-60.74640865799993,45.76015859600015],[-60.737212693999936,45.77374909100011],[-60.72545325399997,45.78473541900014],[-60.714833136999914,45.79242584800009],[-60.700062628999945,45.79987213700014],[-60.669545050999915,45.81028880400005],[-60.65343176999994,45.819769598000065],[-60.643706834999875,45.830552476000044],[-60.634388800999936,45.844183661],[-60.623402472999885,45.85578034100003],[-60.609038865999906,45.86074453300007],[-60.59927324099996,45.86615631700012],[-60.56895911399989,45.89008209800009],[-60.54108639199992,45.90086497599999],[-60.520985480999876,45.92426178600009],[-60.47777258999989,45.93659088700012],[-60.44517981699993,45.953924872000115],[-60.41637122299988,45.976223049000154],[-60.39952551999989,45.99795156500012],[-60.420277472999885,45.99315013200013],[-60.463490363999874,45.97736237200009],[-60.497222459999875,45.95661041900008],[-60.56403561099992,45.943915106000034],[-60.62140865799994,45.91986725499999],[-60.645985480999855,45.91278717700011],[-60.66490637899997,45.89866771],[-60.69912675699996,45.890936591000084],[-60.709706183999906,45.89032623900012],[-60.72227942599991,45.89549388200014],[-60.73151607999995,45.90460846600002],[-60.73997962099992,45.92267487200006],[-60.7490128249999,45.92963288000011],[-60.76203365799989,45.93097565300003],[-60.7757869129999,45.929022528000175],[-60.78673255099989,45.930080471000124],[-60.791167772999955,45.94017161699999],[-60.781646287999955,45.954291083000115],[-60.714833136999914,45.984930731000034],[-60.684396938999946,46.00682200700008],[-60.66576087099989,46.01512278900004],[-60.64256751199986,46.01837799700009],[-60.62254798099988,46.024359442],[-60.56403561099992,46.06679922100009],[-60.50788326699992,46.090725002000156],[-60.48957271999987,46.10154857000005],[-60.43163001199985,46.14935944200009],[-60.41690019399988,46.15619538],[-60.40538489499994,46.163763739000146],[-60.3749080069999,46.19700755400005],[-60.35484778599994,46.2045759140001],[-60.33385169199988,46.20514557500017],[-60.31460527299995,46.20880768400003],[-60.30101477799988,46.21869538000014],[-60.2971085279999,46.238104559000035],[-60.31794186099998,46.23021067900008],[-60.33844967399992,46.22601959800012],[-60.38280188699986,46.22382233300006],[-60.40070553299992,46.21816640800016],[-60.44733639199992,46.17666250200007],[-60.607045050999965,46.07648346600014],[-60.6302791009999,46.068060614],[-60.63906816299996,46.06679922100009],[-60.652699347999906,46.072211005000135],[-60.65510006399995,46.081691799000126],[-60.650461391999926,46.090725002000156],[-60.64256751199986,46.09471263200011],[-60.62132727799988,46.101019598000065],[-60.60142981699997,46.115912177000105],[-60.57144120999991,46.14935944200009],[-60.50255286399993,46.20087311400006],[-60.49449622299991,46.217962958],[-60.475412563999924,46.233465887000115],[-60.35098222599992,46.31207916900003],[-60.28351803299995,46.32754140800013],[-60.27961178299994,46.31728750200001],[-60.25959225199997,46.27912018400015],[-60.204660610999895,46.24184804900007],[-60.21198482999989,46.223944403000026],[-60.29027258999989,46.15619538],[-60.27822831899996,46.15908437700013],[-60.2685440749999,46.165961005000135],[-60.26121985599991,46.17308177299999],[-60.25617428299994,46.17666250200007],[-60.24372311099995,46.176336981000034],[-60.23534094999988,46.17279694200006],[-60.221424933999906,46.16242096600014],[-60.21214758999986,46.14520905200014],[-60.2049861319999,46.14227936400012],[-60.194081183999934,46.15619538],[-60.192046678999894,46.1661644550001],[-60.19497636599994,46.17487213700018],[-60.19933020699992,46.18374258000004],[-60.2015681629999,46.19375234600001],[-60.19322669199994,46.211737372000144],[-60.17393958199989,46.23069896000005],[-60.152088995999854,46.245672919000086],[-60.136097785999965,46.25177643400018],[-60.109445766999926,46.25055573100015],[-60.0831599599999,46.24624258000016],[-60.058664516999976,46.23761627800014],[-60.03709876199988,46.22382233300006],[-60.09105383999989,46.21084219000015],[-59.99136308499995,46.206935940000065],[-59.94416256399998,46.19623444200012],[-59.94766191299996,46.16242096600014],[-59.93382727799988,46.15851471600014],[-59.90135657499988,46.172430731000034],[-59.882191535999915,46.17666250200007],[-59.81053626199991,46.16986725500014],[-59.83653723899988,46.15591054900007],[-59.863352016999976,46.13641998900009],[-59.882435675999936,46.111273505],[-59.88560950399991,46.080471096000124],[-59.87144934799991,46.09414297100006],[-59.851063605999904,46.10443756700009],[-59.829172329999885,46.11147695500013],[-59.81053626199991,46.11522044499999],[-59.81053626199991,46.10781484600001],[-59.871937628999895,46.073635158000016],[-59.89590410099993,46.05019765800013],[-59.90925045499995,46.04197825700014],[-59.95421301999994,46.03579336100016],[-59.9579158189999,46.02749258000007],[-59.94969641799989,46.01557038000014],[-59.93712317599991,46.00165436400006],[-59.9207250639999,45.994574286],[-59.898264126999884,45.996893622000144],[-59.858306443999936,46.0053571640001],[-59.839751756999924,46.005072333000086],[-59.8321020169999,46.003119208000115],[-59.82412675699996,45.99795156500012],[-59.83031165299991,45.99933502800009],[-59.83189856699994,45.99201080900009],[-59.830393032999886,45.978013414000046],[-59.82380123599993,45.97101471600014],[-59.80695553299992,45.9604352890001],[-59.80308997299991,45.95693594],[-59.802235480999904,45.94521719000012],[-59.8052872389999,45.93553294500008],[-59.81248938699986,45.930609442],[-59.82384192599991,45.93305084800012],[-59.862049933999884,45.93569570500013],[-59.93927975199991,45.904364325000174],[-59.968169725999935,45.90973541900002],[-59.97492428299996,45.905422268000116],[-59.98029537699991,45.90086497599999],[-59.984730597999885,45.895575262000115],[-59.98863684799988,45.8886579450001],[-59.9842830069999,45.88580963700015],[-59.98021399599992,45.87970612200009],[-59.975656704999885,45.875067450000145],[-60.12734941299987,45.86945221600014],[-60.153146938999924,45.84707265800013],[-60.155588344999835,45.837958075000145],[-60.15440833199992,45.837144273000135],[-60.14753170499992,45.83808014500012],[-60.13267981699994,45.834051825000145],[-60.11168372299991,45.82404205900015],[-60.10118567599994,45.820949611000074],[-60.08763587099989,45.819769598000065],[-60.07542883999989,45.81549713700004],[-60.07188880099991,45.80609772300012],[-60.07457434799988,45.796779690000065],[-60.08088131399993,45.79242584800009],[-60.093251105999876,45.79083893400015],[-60.17772376199991,45.76654694200006],[-60.198841925999936,45.755682684000085],[-60.20775305899989,45.74091217700003],[-60.21564693899996,45.719427802000084],[-60.234974738999874,45.70685455900009],[-60.25967363199996,45.70018138200014],[-60.28351803299995,45.696844794000114],[-60.32286536399993,45.683661200000145],[-60.39537512899994,45.642523505000085],[-60.441151495999854,45.63544342700011],[-60.46263587099989,45.63572825700005],[-60.470082160999965,45.63947174700009],[-60.475249803999866,45.649115302000055],[-60.49986731699997,45.63239166900003],[-60.51183020699991,45.626410223],[-60.62979081899991,45.59495677299999],[-60.66234290299988,45.577582098],[-60.671783006999895,45.573675848],[-60.704253709999875,45.573309637000094],[-60.711537238999874,45.57160065300009],[-60.71886145699988,45.56818268400018],[-60.726877407999915,45.565619208000086],[-60.73595130099994,45.56655508000016],[-60.74156653599993,45.57273997600011],[-60.74250240799992,45.58193594],[-60.74425208199992,45.59027741100006],[-60.75243079299991,45.59389883000013],[-60.82843990799992,45.60065338700015],[-60.84434973899993,45.60455963700015],[-60.84874426999993,45.614325262000094],[-60.84972083199992,45.62677643400012],[-60.85545813699988,45.63882070500013],[-60.87108313699986,45.64565664300015],[-60.883941209999904,45.637396552000055],[-60.89557857999989,45.62372467700011],[-60.90729732999998,45.614325262000094],[-60.91576087099991,45.62128327],[-60.925404425999886,45.625799872000144],[-60.936024542999945,45.62799713700003],[-60.94762122299994,45.62799713700003],[-60.94615637899989,45.61225006700009],[-60.96996008999988,45.60809967700014],[-61.02391516799989,45.614325262000094],[-61.0096736319999,45.60809967700014],[-61.01622473899988,45.59528229400011],[-61.02501380099994,45.59153880400008],[-61.047230597999906,45.59389883000013],[-61.0576065749999,45.59149811400009],[-61.085438605999855,45.573309637000094],[-61.13141842399992,45.55988190300009],[-61.15672766799986,45.55658600500005],[-61.17479407499988,45.55906810099999],[-61.15721594999985,45.565130927],[-61.151112433999856,45.571478583000115],[-61.155018683999856,45.57855866100009],[-61.16734778599991,45.58698151200004],[-61.182036912999905,45.59031810100005],[-61.19587154899988,45.58954498900012],[-61.205637173999946,45.592718817],[-61.20832271999993,45.60809967700014],[-61.21548417899995,45.600287177000055],[-61.22032630099994,45.589504299000126],[-61.22496497299997,45.58193594],[-61.23192298099985,45.58392975500014],[-61.24120032499991,45.585394598],[-61.25365149599992,45.57949453300016],[-61.266468878999945,45.571478583000115],[-61.277211066999875,45.56655508000016],[-61.270171678999894,45.54832591400016],[-61.28457597599987,45.54767487200003],[-61.32188880099994,45.55906810099999],[-61.334868943999936,45.566229559000035],[-61.36286373599995,45.61123281500003],[-61.419260219999906,45.65688711100013],[-61.44204667899993,45.6817894550001],[-61.455311652999846,45.70990631700009],[-61.46507727799991,45.77627187700004],[-61.47541256399989,45.811346747000115],[-61.49254309799994,45.82660553600009],[-61.49730383999995,45.83515045799999],[-61.48888098899988,45.8886579450001],[-61.50011145699989,45.90607330900018],[-61.51439368399988,45.919378973],[-61.52261308499987,45.932806708],[-61.51618404899997,45.95075104400014],[-61.52122962099992,45.96100495000017],[-61.52122962099992,45.980780341000084],[-61.523589647999955,45.99168528900016],[-61.528920050999915,45.99652741100006],[-61.5384415359999,46.003119208000115],[-61.54751542899993,46.011623440000065],[-61.55150305899991,46.02179596600011],[-61.541127081999896,46.04047272300009],[-61.51732337099991,46.05312734600015],[-61.49160722599996,46.06305573100014],[-61.47520911399994,46.073635158000016],[-61.47008216099993,46.09259674700003],[-61.46605383999988,46.120306708],[-61.458973761999914,46.145331122000115],[-61.4447322259999,46.15619538],[-61.43126380099991,46.162787177000084],[-61.384388800999965,46.19428131700009],[-61.2888077459999,46.242621161],[-61.28062903599988,46.24555084800012],[-61.27794348899991,46.25519440300009],[-61.21251380099994,46.33100006700015],[-61.19155839799989,46.36701080900012],[-61.17788652299987,46.38556549700003],[-61.094838019999884,46.45392487200008],[-61.086171027999875,46.466498114],[-61.08055579299988,46.48053620000003],[-61.07526607999992,46.51325104400017],[-61.06651770699995,46.526841539000124],[-61.04039466099988,46.550360419000086],[-61.030384894999905,46.56801992400009],[-61.03722083199992,46.581610419000135],[-61.04991614499989,46.59227122599999],[-61.05748450399991,46.601263739],[-61.05382239499997,46.61225006700006],[-61.043080206999946,46.62531159100003],[-61.02928626199985,46.63654205900003],[-61.01646887899992,46.64215729400003],[-61.030181443999936,46.611558335000105],[-61.030181443999936,46.601263739],[-61.02379309799991,46.593207098000065],[-61.017079230999876,46.60040924700009],[-61.01183020699989,46.61408112200003],[-61.0096736319999,46.625433661],[-61.00479081899991,46.63328685099999],[-60.9720759759999,46.65273672100009],[-60.96499589799992,46.66201406500012],[-60.94762122299994,46.69741445500013],[-60.899240688999946,46.76878489800013],[-60.86921139199989,46.80003489800002],[-60.83214270699997,46.82094961100016],[-60.7884008449999,46.834662177],[-60.76960201699995,46.84373607],[-60.70132402299996,46.90468984600007],[-60.651478644999884,46.981634833000086],[-60.64207923099985,47.00372955900015],[-60.63316809799991,47.01068756700015],[-60.623036261999886,47.01683177300013],[-60.60326087099995,47.033636786000145],[-60.593617316999875,47.03481679900007],[-60.57144120999991,47.02635325700011],[-60.53416907499993,47.02195872600005],[-60.523060675999915,47.01894765800013],[-60.514230923999946,47.01300690300012],[-60.5087784499999,47.006415106000034],[-60.501128709999875,47.00120677300004]]],[[[-64.03490149599989,46.826483466000084],[-64.03799394399996,46.82094961100016],[-64.04230709499987,46.820868231000176],[-64.04893958199995,46.82225169500005],[-64.05553137899992,46.81932200700014],[-64.05972245999993,46.80662669499999],[-64.06395423099985,46.80853913000011],[-64.07481848899994,46.811509507000046],[-64.07896887899989,46.813462632],[-64.07900956899988,46.80272044499999],[-64.08136959499993,46.794012762000094],[-64.08592688699989,46.78668854400008],[-64.09325110599988,46.77997467700014],[-64.0719294909999,46.75775788],[-64.0560603509999,46.74884674700014],[-64.03490149599989,46.745184637000094],[-64.01451575399992,46.7481957050001],[-63.99933834499992,46.75311920800006],[-63.98558508999989,46.75413646000011],[-63.96979732999995,46.745184637000094],[-63.97472083199991,46.73859284100002],[-63.9833878249999,46.71727122600005],[-63.96019446499989,46.707668361000074],[-63.93903561099995,46.69525788000006],[-63.91954505099998,46.680243231000034],[-63.90147864499997,46.66266510600009],[-63.886586066999904,46.651190497000144],[-63.88141842399989,46.64288971600016],[-63.88097083199991,46.629136460000055],[-63.88581295499998,46.617824611000074],[-63.89403235599988,46.61538320500013],[-63.904286261999914,46.61977773600001],[-63.91510982999992,46.629136460000055],[-63.912464972999906,46.61664459800012],[-63.90664628799996,46.607977606000055],[-63.8974503249999,46.602932033000016],[-63.884673631999924,46.601263739],[-63.87120520699994,46.603176174000154],[-63.867054816999904,46.608140367000104],[-63.86558997299996,46.614691473],[-63.86046301999994,46.62173086100016],[-63.8628637359999,46.62343984600007],[-63.86115475199989,46.62970612200003],[-63.85484778599993,46.63287995000009],[-63.843413865999906,46.625433661],[-63.8369034499999,46.61823151200015],[-63.833648240999956,46.61237213700004],[-63.83617102799988,46.60700104400017],[-63.8468318349999,46.601263739],[-63.843658006999924,46.59723541900003],[-63.84194902299992,46.593654690000065],[-63.83926347599995,46.5904808610001],[-63.833159959999875,46.58759186400006],[-63.833159959999875,46.580755927000055],[-63.84528561099995,46.578192450000024],[-63.85171464799986,46.57367584800009],[-63.88097083199991,46.52240631700015],[-63.89452063699988,46.51666901200018],[-63.92162024599988,46.51117584800015],[-63.94204667899988,46.50031159100014],[-63.93561764199995,46.478338934000064],[-63.919789191999904,46.492661851000136],[-63.902007615999935,46.498765367000104],[-63.86046301999994,46.50629303600009],[-63.84406490799995,46.51569245000009],[-63.83503170499992,46.51972077000006],[-63.82575436099998,46.51927317900008],[-63.818511522999955,46.51243724200005],[-63.81297766799994,46.500677802000084],[-63.81297766799994,46.48948802300008],[-63.82262122299991,46.48456452],[-63.83299719999991,46.4819196640001],[-63.833648240999956,46.47565338700014],[-63.828846808999884,46.46784088700018],[-63.82262122299991,46.460638739000146],[-63.81338456899993,46.455877997000144],[-63.72956295499995,46.44334544500005],[-63.70889238199993,46.444159247000144],[-63.696644660999965,46.45722077000012],[-63.713205532999915,46.477606512000115],[-63.73180091099994,46.49603913000006],[-63.73424231699996,46.51068756700006],[-63.70225989499996,46.51927317900008],[-63.70225989499996,46.52545807500006],[-63.7219945949999,46.53180573100017],[-63.730132615999906,46.5329450540001],[-63.71080481699988,46.55841705900012],[-63.67686926999994,46.56806061400009],[-63.63890540299991,46.56704336100002],[-63.53673255099997,46.544663804],[-63.520985480999904,46.536322333000115],[-63.51732337099986,46.53363678600006],[-63.513254360999895,46.53270091400015],[-63.503977016999954,46.5329450540001],[-63.49474036399989,46.53115469000012],[-63.49376380099991,46.526922919000114],[-63.496205206999946,46.522365627000156],[-63.497425910999965,46.51927317900008],[-63.4963272779999,46.512844143000066],[-63.4989314439999,46.50649648600013],[-63.50080318899998,46.49966054900001],[-63.497425910999965,46.49201080900018],[-63.48192298099985,46.49262116100014],[-63.456613735999916,46.467433986000074],[-63.445546027999875,46.467474677000055],[-63.43260657499988,46.48371002800009],[-63.42894446499991,46.497463283000016],[-63.4380997389999,46.50584544499999],[-63.46324622299996,46.50629303600009],[-63.43651282499987,46.51251862200003],[-63.39903723899994,46.512111721000124],[-63.360910610999944,46.50690338700004],[-63.33234615799995,46.49884674700009],[-63.31777910099993,46.48899974199999],[-63.313588019999905,46.478338934000064],[-63.31208248599995,46.465969143],[-63.30557206899996,46.45099518400017],[-63.302154100999964,46.45099518400017],[-63.28034420499989,46.43927643400009],[-63.263539191999875,46.42597077000006],[-63.257191535999965,46.423081773000135],[-63.250355597999935,46.42987702000006],[-63.245025193999886,46.41254303600009],[-63.23810787699997,46.40741608300006],[-63.22874915299985,46.40997955900015],[-63.21621660099992,46.41559479400017],[-63.21422278599991,46.41791413000011],[-63.212554490999906,46.42182038000011],[-63.209339972999935,46.42621491100003],[-63.20254472599989,46.42987702000006],[-63.19473222599993,46.43113841400016],[-63.08112545499993,46.42088450700005],[-62.95319576699992,46.42405833500011],[-62.849720831999946,46.43740469000012],[-62.84186764199998,46.43085358300014],[-62.83340410099992,46.41950104400014],[-62.82380123599996,46.41510651200018],[-62.81212317599994,46.42987702000006],[-62.81956946499994,46.43740469000012],[-62.764515753999966,46.449042059000035],[-62.585601365999885,46.42987702000006],[-62.585601365999885,46.43740469000012],[-62.677235480999876,46.447658596000146],[-62.702259894999884,46.45722077000012],[-62.67414303299989,46.46442291900017],[-62.611683722999935,46.46759674700003],[-62.585601365999885,46.478338934000064],[-62.565785285999965,46.47089264500006],[-62.54206295499995,46.471665757],[-62.51691646999987,46.475816148000135],[-62.35728919199991,46.47931549700002],[-62.26455644399988,46.473781643],[-62.18517005099995,46.48700592700014],[-62.09911048099988,46.48371002800009],[-62.00401770699997,46.46405670800005],[-61.97695878799993,46.45465729400003],[-61.97740637899994,46.44818756700012],[-61.9935196609999,46.44033437700013],[-62.031320766999954,46.41494375200001],[-62.165638800999965,46.3583845070001],[-62.2125544909999,46.34756094],[-62.22760982999992,46.345892645],[-62.23985755099988,46.3510602890001],[-62.25047766799995,46.360052802000105],[-62.283924933999906,46.38214752800012],[-62.27090410099989,46.354152736000074],[-62.27375240799994,46.344916083000115],[-62.29141191299996,46.34113190300009],[-62.306874152999875,46.3446312520001],[-62.33942623599995,46.359442450000145],[-62.35968990799994,46.361029364],[-62.35968990799994,46.354193427000084],[-62.34801184799997,46.345607815000065],[-62.346058722999906,46.32428620000009],[-62.33177649599992,46.31321849200007],[-62.36729895699991,46.306219794000086],[-62.38451087099992,46.305731512000094],[-62.40062415299988,46.31321849200007],[-62.36778723899988,46.284409898000135],[-62.365712042999895,46.27142975500011],[-62.39037024599986,46.26605866100008],[-62.471262173999946,46.28046295800014],[-62.496896938999924,46.27228424700003],[-62.44692949099987,46.25910065300008],[-62.423736131999924,46.24506256700012],[-62.42113196499995,46.22382233300006],[-62.437326626999884,46.216253973],[-62.46617591099991,46.21491120000012],[-62.513905402999875,46.21767812700007],[-62.55500240799994,46.234198309000064],[-62.57640540299991,46.23899974200005],[-62.585601365999885,46.227525132],[-62.54328365799998,46.21491120000012],[-62.51301021999989,46.201605536],[-62.496896938999924,46.18349844000009],[-62.524403449999845,46.18675364800013],[-62.573068813999974,46.207424221000124],[-62.599232550999915,46.21084219000015],[-62.59483801999994,46.202826239],[-62.58975175699993,46.19839101800012],[-62.582630988999966,46.19668203300013],[-62.57192949099993,46.19717031500003],[-62.57192949099993,46.19033437700001],[-62.58202063699991,46.19074127800009],[-62.59044348899997,46.189642645000056],[-62.60676021999989,46.18349844000009],[-62.58702551999994,46.1773949240001],[-62.54674231699988,46.175238348],[-62.53099524599992,46.16986725500014],[-62.53819739499994,46.1596540390001],[-62.54222571499991,46.14581940300009],[-62.54328365799998,46.133490302000055],[-62.54157467399997,46.12824127800015],[-62.49205481699994,46.125637111000074],[-62.4757380849999,46.12140534100014],[-62.480702277999846,46.13519928600005],[-62.49058997299998,46.141546942],[-62.51732337099988,46.14935944200009],[-62.48643958199991,46.15265534100002],[-62.46422278599987,46.13519928600005],[-62.45323645699991,46.10761139500015],[-62.45592200399989,46.080471096000124],[-62.45759029899992,46.07982005400008],[-62.47264563699991,46.06342194200006],[-62.479318813999974,46.060003973000065],[-62.488596157999915,46.05906810099999],[-62.506743943999936,46.060003973000065],[-62.52749589799993,46.057318427],[-62.55455481699996,46.043931382],[-62.57192949099993,46.03880442900007],[-62.57192949099993,46.03266022300009],[-62.55426998599992,46.03070709800012],[-62.510487433999884,46.01837799700009],[-62.49632727799985,46.01898834800015],[-62.47057044199991,46.02513255400014],[-62.45592200399989,46.02521393400012],[-62.485585089999915,45.9898949240001],[-62.54523678299992,45.971828518000066],[-62.68394934799991,45.96564362200009],[-62.71467037699992,45.970404364],[-62.72899329299989,45.97060781500014],[-62.73668372299991,45.96702708500008],[-62.74510657499987,45.95404694200009],[-62.750721808999884,45.95075104400014],[-62.75670325399989,45.95246002800015],[-62.771839972999885,45.96173737200008],[-62.77741451699989,45.9643415390001],[-62.82945716099993,45.972723700000145],[-62.84630286399993,45.978013414000046],[-62.89411373599998,46.0053571640001],[-62.87999426999994,46.010972398000106],[-62.873605923999925,46.01154205900018],[-62.873605923999925,46.01837799700009],[-62.88914954299994,46.02069733300006],[-62.90477454299992,46.025295315],[-62.919300910999965,46.03241608300014],[-62.931630011999914,46.04262929900007],[-62.93464107999991,46.052964585],[-62.92121334499992,46.05524323100015],[-62.887277798999975,46.053168036000145],[-62.909047003999916,46.07192617400001],[-62.99665279899994,46.061957098],[-63.03062903599991,46.06679922100009],[-63.00926673099994,46.071763414000046],[-62.98656165299988,46.073635158000016],[-62.97362219999987,46.07689036700005],[-62.950306769999884,46.09145742400007],[-62.917551235999944,46.10126373900003],[-62.88695227799985,46.12962474200005],[-62.866118943999965,46.13568756700014],[-62.87824459499987,46.155585028000026],[-62.89549719999988,46.157456773000106],[-62.91445878799988,46.147650458000086],[-62.931630011999914,46.131984768],[-62.94786536399994,46.12799713700004],[-62.95653235599993,46.14484284100003],[-62.951975063999896,46.166408596000124],[-62.92821204299988,46.17666250200007],[-62.935454881999924,46.18720123900012],[-62.947173631999895,46.19342682500008],[-62.97598222599992,46.2045759140001],[-62.989654100999864,46.19717031500003],[-62.98501542899995,46.19208405199999],[-62.983143683999884,46.188706772999986],[-62.98110917899996,46.186102606000176],[-62.97598222599992,46.18349844000009],[-62.9973852199999,46.179266669000135],[-63.02525794199994,46.186102606000176],[-63.054310675999915,46.19692617400007],[-63.10627193899998,46.210150458000115],[-63.116810675999936,46.21576569200003],[-63.112131313999924,46.22418854400014],[-63.09333248599997,46.238104559000035],[-63.08775794199997,46.241034247000144],[-63.077707485999895,46.24355703300007],[-63.0728653639999,46.24555084800012],[-63.06798255099994,46.25079987200011],[-63.067128058999856,46.25641510600009],[-63.06729081899991,46.261786200000145],[-63.06541907499985,46.26605866100008],[-63.06114661399993,46.266913153000175],[-63.04906165299993,46.265041408000016],[-63.044911261999886,46.26605866100008],[-63.04332434799994,46.27057526200004],[-63.043812628999945,46.276312567],[-63.043202277999875,46.28192780199999],[-63.03807532499988,46.28656647300012],[-62.98033606699994,46.305487372000144],[-62.96300208199994,46.320013739],[-62.98102779899998,46.31940338700004],[-63.01170813699988,46.30853913000014],[-63.0436091789999,46.301581122000144],[-63.06965084499986,46.28327057500008],[-63.08250891799988,46.27912018400015],[-63.096791144999884,46.27265045800006],[-63.12043209499989,46.244330145],[-63.13434811099989,46.238104559000035],[-63.140451626999976,46.241034247000144],[-63.16161048099988,46.259222723000065],[-63.1957087879999,46.27228424700003],[-63.17369544199988,46.23822663000011],[-63.174712693999936,46.22772858300014],[-63.1991267569999,46.22382233300006],[-63.20763098899993,46.220770575000145],[-63.22402910099992,46.20758698100009],[-63.23326575399988,46.2045759140001],[-63.27086341099991,46.2045759140001],[-63.27086341099991,46.19717031500003],[-63.214914516999954,46.19110748900012],[-63.1891169909999,46.19529857000005],[-63.17528235599991,46.21767812700007],[-63.14769446499991,46.2062848980001],[-63.141916469999835,46.198431708000115],[-63.14732825399988,46.18349844000009],[-63.177642381999874,46.171942450000145],[-63.208159959999904,46.16522858300003],[-63.23338782499989,46.14545319200009],[-63.257191535999965,46.14191315300009],[-63.284291144999884,46.14704010600012],[-63.335560675999915,46.165716864],[-63.37262936099995,46.171942450000145],[-63.39989173099993,46.18134186400008],[-63.41201738199993,46.18349844000009],[-63.41836503799996,46.18561432500009],[-63.4228409499999,46.19501373900012],[-63.42882239499994,46.19717031500003],[-63.45026608,46.195990302],[-63.455799933999906,46.19717031500003],[-63.465687628999916,46.2045759140001],[-63.480580206999946,46.21991608300005],[-63.490589972999935,46.22382233300006],[-63.49917558499995,46.22247955900014],[-63.52114824099988,46.21308014500012],[-63.53498287699997,46.21084219000015],[-63.54531816299988,46.21369049700009],[-63.55638587099992,46.21930573100009],[-63.566965298999975,46.223089911000116],[-63.57591712099989,46.220770575000145],[-63.587310350999864,46.216253973],[-63.602121548999946,46.216864325000145],[-63.627756313999896,46.22382233300006],[-63.67564856699991,46.24258047100001],[-63.69456946499994,46.256537177000084],[-63.70225989499996,46.27570221600014],[-63.71304277299987,46.28978099199999],[-63.737904425999915,46.30239492400007],[-63.78477942599997,46.320013739],[-63.800038214999944,46.331854559000064],[-63.80589758999989,46.343573309000035],[-63.80117753799988,46.34878164300012],[-63.78477942599997,46.34113190300009],[-63.80589758999989,46.37470123900012],[-63.73932857999998,46.356675523000106],[-63.71589107999992,46.354193427000084],[-63.76488196499988,46.38214752800012],[-63.75206458199994,46.387274481000034],[-63.74551347599995,46.389064846],[-63.73692786399993,46.38898346600003],[-63.73692786399993,46.396429755],[-63.766835089999915,46.39935944200012],[-63.8399145169999,46.39695872599999],[-63.87144934799992,46.40936920800003],[-63.88048255099991,46.408148505],[-63.88731848899994,46.40493398600013],[-63.88841712099988,46.40257396],[-63.89533443899998,46.405951239],[-63.904652472999906,46.413397528000175],[-63.908314581999974,46.41559479400017],[-63.926625128999945,46.42194245000009],[-63.934478318999936,46.42304108300014],[-63.95612545499992,46.40940989800002],[-63.987172003999916,46.39960358300005],[-64.08267167899992,46.40940989800002],[-64.11025956899994,46.408107815],[-64.12450110599985,46.409654039000046],[-64.13426673099988,46.41559479400017],[-64.13752193899992,46.42902252800015],[-64.13345292899987,46.442613023000106],[-64.12486731699997,46.44969310099999],[-64.11436926999988,46.443548895],[-64.11070716099994,46.473822333],[-64.11461341099994,46.512640692],[-64.10802161399997,46.544378973000065],[-64.07274329299992,46.553412177000084],[-64.07689368399988,46.56293366100005],[-64.07896887899989,46.566473700000145],[-64.06191972599993,46.56997304900012],[-64.06383216099988,46.57876211100002],[-64.07331295499989,46.589260158000066],[-64.07896887899989,46.597805080000015],[-64.0789281889999,46.61888255400011],[-64.0771378249999,46.62824127800015],[-64.07274329299992,46.64215729400003],[-64.13101152299993,46.5991071640001],[-64.14476477799985,46.597805080000015],[-64.15330969999988,46.60407135600015],[-64.16551673099985,46.60956452000009],[-64.17845618399986,46.61347077000006],[-64.18944251199991,46.614894924000126],[-64.19688880099989,46.617824611000074],[-64.2184138659999,46.63141510600003],[-64.23045813699991,46.63532135600012],[-64.32262122299991,46.63532135600012],[-64.36432857999995,46.62693919500005],[-64.38304602799991,46.627834377000156],[-64.40241451699993,46.64215729400003],[-64.4168188139999,46.68276601800012],[-64.40151933499993,46.72296784100003],[-64.36945553299995,46.75877513200005],[-64.33348548099988,46.786200262000094],[-64.29092363199993,46.809556382],[-64.27232825399993,46.82501862200003],[-64.26455644399994,46.84454987200009],[-64.25942949099993,46.86640045800014],[-64.24693762899992,46.88629791900003],[-64.23131262899992,46.903306382],[-64.16266842399992,46.956203518000066],[-64.05272376199986,47.02147044500004],[-63.9970597,47.06732819200015],[-63.98851477799991,47.05426666900014],[-63.985340949999845,47.04718659100011],[-63.9833878249999,47.04002513200005],[-63.99592037699992,47.009711005000085],[-63.99779212099988,46.97101471600003],[-63.99006100199994,46.93333567900005],[-63.97321529899994,46.905951239],[-63.974842902999875,46.893988348000065],[-64.02497311099998,46.84829336100013],[-64.02843176999988,46.84227122600011],[-64.03490149599989,46.826483466000084]]],[[[-54.798379490999935,47.24259926600003],[-54.81239929699987,47.23178117400015],[-54.8282533489999,47.243140736000086],[-54.83005120999988,47.26713317200013],[-54.79422651499993,47.27938768000014],[-54.77813639899992,47.273563672000094],[-54.792300039999866,47.259077147000156],[-54.798379490999935,47.24259926600003]]],[[[-55.85924231699991,47.277085679],[-55.85374915299991,47.27342357000005],[-55.843088344999956,47.27342357000005],[-55.8710017569999,47.25165436400009],[-55.87718665299988,47.26601797100006],[-55.89037024599992,47.26089101800015],[-55.9017634759999,47.26414622599999],[-55.913685675999915,47.2701683610001],[-55.92808997299988,47.27342357000005],[-55.93895423099988,47.27187734600001],[-55.949940558999934,47.26813385600015],[-55.94847571499989,47.276597398000106],[-55.91942298099991,47.28900788000014],[-55.888050910999965,47.294907944999984],[-55.863596157999915,47.29328034100014],[-55.86180579299992,47.283880927000105],[-55.85924231699991,47.277085679]]],[[[-54.17796229699988,47.35998372200005],[-54.209625653999865,47.35990252],[-54.22019711699997,47.36819295200011],[-54.21670203099998,47.38127351800007],[-54.204389239999955,47.38486994100002],[-54.19560374799991,47.39320836700007],[-54.17804201799993,47.418193297000116],[-54.158678251999845,47.41467042800003],[-54.14458937699995,47.40044460600008],[-54.15335358899991,47.36835611000011],[-54.17796229699988,47.35998372200005]]],[[[-70.39317786399992,47.37274811400006],[-70.41169186099995,47.37018463700015],[-70.42760169199997,47.37201569200012],[-70.43565833199987,47.37702057500017],[-70.43659420499998,47.38654205900015],[-70.43358313699989,47.395941473],[-70.42536373599997,47.404974677],[-70.41100012899992,47.41437409100002],[-70.39073645699989,47.42251211100013],[-70.36978105399992,47.42682526200004],[-70.33971106699991,47.42755768400018],[-70.32388261599996,47.427435614],[-70.32994544199997,47.41836172100001],[-70.37389075399989,47.383856512000094],[-70.39317786399992,47.37274811400006]]],[[[-61.38866126199988,47.625718492000104],[-61.40005449099993,47.616034247000144],[-61.432525193999936,47.60809967699999],[-61.448475714999944,47.60053131700015],[-61.455311652999846,47.58466217700011],[-61.469471808999884,47.56948476800012],[-61.50108801999997,47.55678945500007],[-61.533843553999894,47.55206940300015],[-61.55150305899991,47.56077708500005],[-61.527414516999954,47.568793036],[-61.50230872299988,47.58266836100007],[-61.48131262899994,47.60097890800013],[-61.4689835279999,47.622259833000115],[-61.49722245999995,47.62433502800003],[-61.52660071499985,47.62213776200004],[-61.55459550699987,47.614976304000024],[-61.578846808999884,47.60175202000006],[-61.620716925999886,47.568182684000035],[-61.64598548099993,47.55292389500006],[-61.67100989499994,47.546535549000126],[-61.69070390499987,47.53404368700005],[-61.69912675699993,47.52749258000013],[-61.743519660999965,47.4831403670001],[-61.76691646999984,47.47138092700014],[-61.79076087099991,47.46454498900012],[-61.83568274599992,47.43280670800006],[-61.85936438699985,47.42365143400018],[-61.82217363199995,47.41535065300009],[-61.785389777999875,47.43382396000011],[-61.671538865999906,47.53799062700001],[-61.63621985599988,47.557074286],[-61.59251868399991,47.56077708500005],[-61.625314907999915,47.54926178600003],[-61.65636145699991,47.530666408000016],[-61.70860755099994,47.485744533000016],[-61.76504472599987,47.411078192],[-61.77822831899994,47.405829169000114],[-61.82152258999991,47.409979559000035],[-61.83649654899994,47.401434637000115],[-61.84797115799989,47.38263580900015],[-61.85651607999991,47.36391836100001],[-61.862782355999855,47.35537344000009],[-61.90192623599989,47.35370514500006],[-61.916900193999936,47.34870026200004],[-61.93138587099989,47.338324286000116],[-61.94050045499998,47.32660553600014],[-61.956288214999915,47.29629140800016],[-61.965565558999884,47.283026434000035],[-61.95933997299991,47.2740746110001],[-61.940988735999944,47.262274481000034],[-61.92027747299994,47.26007721600002],[-61.90721594999989,47.27968984600001],[-61.896595831999946,47.26520416900014],[-61.883412238999874,47.25592682500009],[-61.866810675999915,47.249945380000085],[-61.82506262899989,47.24262116100009],[-61.81065833199991,47.24433014500009],[-61.798451300999936,47.25165436400009],[-61.78429114499991,47.26601797100006],[-61.79303951699989,47.24030182500012],[-61.816029425999886,47.22833893400018],[-61.8453669909999,47.22500234600015],[-61.873036261999886,47.225043036000145],[-61.87486731699997,47.237616278000026],[-61.89509029899989,47.233710028000026],[-61.93822180899991,47.21820709800012],[-61.98884029899989,47.21723053600005],[-62.010568813999946,47.224798895],[-62.017079230999855,47.245510158000016],[-61.98973548099988,47.27342357000005],[-61.96776282499988,47.30756256700014],[-61.959055141999976,47.31753164300012],[-61.94945227799991,47.33616771000011],[-61.94855709499989,47.38275788000014],[-61.9413142569999,47.40253327000006],[-61.92552649599994,47.413153387000094],[-61.90123450399994,47.42206452000015],[-61.87559973899992,47.428168036000116],[-61.856027798999925,47.43048737200009],[-61.8392634759999,47.436672268000066],[-61.700713670999875,47.53188711100013],[-61.69351152299992,47.536810614],[-61.56212317599994,47.62714264500009],[-61.5372615229999,47.63654205900012],[-61.50593014199995,47.64142487200009],[-61.386341925999915,47.64398834800009],[-61.38219153599988,47.63666413],[-61.38866126199988,47.625718492000104]]],[[[-52.976501743999876,47.59686610500002],[-53.00619265499989,47.5934977400001],[-53.03033639399987,47.59915557800018],[-53.019183903999924,47.619039947000076],[-52.95647529599995,47.65480636300008],[-52.918760129999924,47.65264346400006],[-52.91644342299989,47.63445557500013],[-52.94642945499993,47.61838954300008],[-52.976501743999876,47.59686610500002]]],[[[-54.12254798099993,47.64272695500007],[-54.15103105399993,47.587795315],[-54.1603083979999,47.55573151200012],[-54.156646287999926,47.53351471600014],[-54.18028723899988,47.506537177],[-54.24404863199993,47.40770091400016],[-54.256662563999896,47.39899323100009],[-54.272450324999845,47.39569733300006],[-54.35106360599985,47.40302155200005],[-54.36270097599996,47.409979559000035],[-54.35057532499988,47.42243073100015],[-54.259673631999895,47.485744533000016],[-54.217437303999866,47.53969961100001],[-54.214019334999875,47.55853913000006],[-54.246001756999874,47.553941148000135],[-54.23985755099988,47.56439850500002],[-54.18325761599988,47.6158714860001],[-54.17096920499992,47.622259833000115],[-54.1797582669999,47.60187409100002],[-54.18464107999994,47.59552643400009],[-54.17096920499992,47.58808014500011],[-54.16588294199991,47.606390692],[-54.13434811099989,47.66445547100015],[-54.12604732999991,47.67011139500015],[-54.121083136999886,47.66400788000006],[-54.12254798099993,47.64272695500007]]],[[[-55.92414303299989,47.63873932500009],[-55.89875240799998,47.6244977890001],[-55.87718665299988,47.616034247000144],[-55.90363521999995,47.607082424000126],[-55.93000240799994,47.60443756700015],[-55.957183397999955,47.605902411],[-56.04002844999988,47.619818427],[-56.06468665299988,47.63043854400003],[-56.09764563699985,47.62978750200007],[-56.10997473899991,47.63654205900012],[-56.10826575399989,47.65412018400003],[-56.08348548099994,47.66616445500016],[-55.96963456899988,47.68577708500011],[-55.94050045499992,47.685614325000145],[-55.92503821499988,47.67747630400014],[-55.93797766799992,47.656927802],[-55.92414303299989,47.63873932500009]]],[[[-54.066070115999906,47.555365302],[-54.06297766799992,47.54344310100005],[-54.06663977799988,47.53172435100008],[-54.08153235599994,47.52667877800003],[-54.071034308999856,47.51825592699999],[-54.07380123599992,47.50828685099999],[-54.08043372299988,47.49542877800015],[-54.08153235599994,47.47821686400006],[-54.098500128999916,47.49184804900001],[-54.099232550999936,47.50690338700012],[-54.09284420499992,47.52472565300008],[-54.088368292999945,47.546535549000126],[-54.091704881999874,47.54437897300012],[-54.10204016799989,47.540269272999986],[-54.10285396999989,47.56146881700009],[-54.09512285099989,47.61912669500005],[-54.09325110599991,47.63043854400003],[-54.08885657499994,47.638861395000056],[-54.08421790299991,47.64520905200003],[-54.08153235599994,47.65013255400008],[-54.0794978509999,47.669012762000094],[-54.08153235599994,47.69114817900008],[-54.07241777299993,47.683986721000124],[-54.06761633999986,47.67519765800007],[-54.061105923999946,47.656398830000015],[-54.06187903599988,47.64158763200005],[-54.065012173999946,47.627997137000094],[-54.071156378999916,47.61684804900007],[-54.08153235599994,47.609198309000035],[-54.08153235599994,47.60175202000006],[-54.07701575399997,47.59194570500013],[-54.07860266799992,47.56606679900004],[-54.07135983,47.56077708500005],[-54.066070115999906,47.555365302]]],[[[-64.5032445949999,47.87417226800003],[-64.50475012899994,47.85871002800009],[-64.50902258999986,47.84454987200017],[-64.51891028599997,47.829291083],[-64.53892981699994,47.80719635600012],[-64.59349524599992,47.765366929],[-64.6487930979999,47.732123114],[-64.65420488199996,47.74705638200014],[-64.66600501199994,47.75283437700001],[-64.68106035099996,47.75503164300009],[-64.69660396999986,47.75942617400007],[-64.65501868399987,47.782904364000146],[-64.6487930979999,47.79047272300009],[-64.65420488199996,47.80190664300012],[-64.66665605399987,47.802639065000065],[-64.68040930899991,47.798000393000144],[-64.68976803299992,47.79360586100016],[-64.68716386599993,47.802639065000065],[-64.68285071499994,47.810044664000074],[-64.67674719999985,47.81606679900007],[-64.66860917899993,47.82086823100014],[-64.68626868399994,47.81928131700012],[-64.69664466099994,47.8210309920001],[-64.70006262899993,47.827948309000114],[-64.69660396999986,47.84198639500006],[-64.69098873599995,47.850287177000055],[-64.68053137899997,47.861395575000174],[-64.66869055899991,47.87128327000009],[-64.65868079299992,47.87547435100011],[-64.59552975199995,47.8854841170001],[-64.56798255099991,47.883042710000055],[-64.57990475199995,47.86245351800012],[-64.55894934799991,47.86957428600008],[-64.5386449859999,47.87010325700005],[-64.52013098899987,47.87360260600015],[-64.50475012899994,47.889797268],[-64.51195227799988,47.90253327000006],[-64.5040583979999,47.916693427000084],[-64.47744706899996,47.94440338700015],[-64.47704016799986,47.937811591000084],[-64.4786677729999,47.933172919000135],[-64.49233964799993,47.91063060099999],[-64.49889075399992,47.892767645000035],[-64.5032445949999,47.87417226800003]]],[[[-64.56826738199996,47.90696849200013],[-64.59044348899991,47.90346914300012],[-64.59410559799996,47.91437409100002],[-64.57713782499991,47.93842194200015],[-64.54576575399994,47.97166575700005],[-64.52578691299986,48.02069733300003],[-64.51081295499995,48.033596096000124],[-64.4842830069999,48.02008698100015],[-64.48005123599995,47.998358466000084],[-64.47301184799989,47.98094310100011],[-64.47240149599995,47.96336497599999],[-64.48741614499997,47.941229559000085],[-64.50780188699994,47.92829010600009],[-64.56826738199996,47.90696849200013]]],[[[-53.86241614499993,48.177191473],[-53.84129798099991,48.171372789000046],[-53.76992753799993,48.177191473],[-53.74742591099994,48.172064520000085],[-53.7044164699999,48.151597398000106],[-53.67747962099994,48.14984772300012],[-53.64940344999994,48.156927802],[-53.56769771999993,48.19082265800013],[-53.543527798999946,48.20701732],[-53.521473761999935,48.20123932500003],[-53.51402747299996,48.18675364799999],[-53.53351803299995,48.177191473],[-53.52000891799989,48.158148505],[-53.52407792899993,48.14451732000005],[-53.53799394399991,48.12995026200003],[-53.55394446499991,48.108221747000144],[-53.53856360599988,48.10781484600015],[-53.53351803299995,48.108221747000144],[-53.56550045499995,48.08218008000007],[-53.618804490999906,48.08209870000009],[-53.71841386599996,48.101996161],[-53.81094316299993,48.09520091400016],[-53.82388261599996,48.096258856000034],[-53.87523352799988,48.10651276200006],[-53.88194739499991,48.11749909100011],[-53.884836391999954,48.131089585000055],[-53.889759894999905,48.14362213700014],[-53.90689042899993,48.161525783000016],[-53.92003333199992,48.171210028000175],[-53.92837480399987,48.18333567900008],[-53.93138587099989,48.208441473000065],[-53.921009894999884,48.21662018400015],[-53.89818274599986,48.204779364],[-53.86241614499993,48.177191473]]],[[[-68.86320698199995,48.389111739000114],[-68.8786771329999,48.387714596000144],[-68.89106522499995,48.38803336000016],[-68.89263237299994,48.39179625200002],[-68.88852782699988,48.39693939600012],[-68.87978489999992,48.403459981000154],[-68.86433288599994,48.40759767500013],[-68.85560324499991,48.414463584000046],[-68.84271464599993,48.415855830000126],[-68.83806365099987,48.413808946000145],[-68.84320580999989,48.40969213700005],[-68.84267527799997,48.40558619600013],[-68.84469231699997,48.39599367400002],[-68.86320698199995,48.389111739000114]]],[[[-123.3268123039999,48.64004140800007],[-123.31696529899989,48.62897370000003],[-123.30528723899991,48.6188011740001],[-123.29458574099988,48.614569403000175],[-123.28693600199993,48.612697658000016],[-123.28311113199993,48.61127350500014],[-123.28034420499988,48.60130442900005],[-123.28795325399992,48.591253973000065],[-123.30288652299996,48.59699127800003],[-123.3126521479999,48.60846588700018],[-123.32534745999996,48.61933014500006],[-123.33665930899994,48.631089585000055],[-123.33800208199993,48.63422272300012],[-123.33267167899986,48.62954336100002],[-123.33193925699993,48.63442617400007],[-123.33861243399991,48.646470444999984],[-123.33747311099987,48.64842357000005],[-123.3268123039999,48.64004140800007]]],[[[-123.25039628799989,48.76609935100011],[-123.24046790299991,48.76186758000007],[-123.2192276679999,48.76186758000007],[-123.20225989499994,48.75897858300006],[-123.18809973899992,48.75617096600011],[-123.18244381399983,48.743475653000026],[-123.18667558499993,48.73639557500017],[-123.19945227799988,48.73212311400005],[-123.2249242829999,48.73493073100012],[-123.24046790299991,48.73639557500017],[-123.25747636599996,48.73920319200012],[-123.28294837099986,48.751898505],[-123.2914932929999,48.75617096600011],[-123.3069962229999,48.76463450700005],[-123.3112686839999,48.771714585000026],[-123.3112686839999,48.78876373900006],[-123.3112686839999,48.797267971000096],[-123.3226212229999,48.80573151200003],[-123.3226212229999,48.81281159100008],[-123.3126521479999,48.81708405200003],[-123.29857337099986,48.81561920800014],[-123.28722083199989,48.81281159100008],[-123.2659805979999,48.80003489800005],[-123.25182044199988,48.79018789300012],[-123.24901282499994,48.77741120000009],[-123.25039628799989,48.76609935100011]]],[[[-123.08901933499995,48.767523505000085],[-123.10171464799991,48.76186758000007],[-123.12018795499984,48.76463450700005],[-123.1371150379999,48.76463450700005],[-123.15835527299991,48.76325104400014],[-123.17113196499984,48.76894765800013],[-123.18529212099988,48.77460358300014],[-123.2036840489999,48.78449127800015],[-123.2036840489999,48.794378973000065],[-123.2036840489999,48.80145905200011],[-123.2036840489999,48.80853913],[-123.20791581899995,48.81561920800014],[-123.21642005099994,48.81989166900014],[-123.22207597599994,48.822699286],[-123.22350012899993,48.8326683610001],[-123.2036840489999,48.82977936400006],[-123.17959550699987,48.81561920800014],[-123.14142818899992,48.80145905200011],[-123.09044348899992,48.79865143400015],[-123.05361894399994,48.79584381700012],[-123.04377193899991,48.78876373900006],[-123.04230709499987,48.78449127800015],[-123.05361894399994,48.783107815000065],[-123.07062740799991,48.77879466400015],[-123.07770748599987,48.77602773600002],[-123.08901933499995,48.767523505000085]]],[[[-123.50308183499992,48.89166901200003],[-123.4310603509999,48.84194570500016],[-123.44517981699991,48.841701565],[-123.45881100199996,48.84491608300006],[-123.47134355399987,48.851060289000046],[-123.48228919199993,48.85932038000011],[-123.48863684799997,48.86229075700005],[-123.49453691299989,48.860988674000126],[-123.49876868399993,48.85626862200003],[-123.49998938699994,48.84935130400014],[-123.49600175699986,48.845526434000035],[-123.47203528599991,48.828273830000015],[-123.36900794199994,48.77423737200003],[-123.38231360599988,48.75617096600011],[-123.40758216099992,48.7540550800001],[-123.45840410099986,48.76740143400009],[-123.45148678299986,48.759466864000146],[-123.42853756399987,48.738348700000024],[-123.42764238199987,48.72955963700014],[-123.44041907499992,48.72211334800009],[-123.46100826699987,48.715399481000034],[-123.48208574099988,48.71222565300017],[-123.4962458979999,48.715562242000104],[-123.50885982999988,48.72406647300012],[-123.52041581899991,48.72866445500007],[-123.53111731699994,48.73436107000005],[-123.54092363199986,48.74632396],[-123.54637610599991,48.75726959800015],[-123.54971269399994,48.770738023000135],[-123.54678300699992,48.78392161699999],[-123.5335180329999,48.794134833000115],[-123.5335180329999,48.80097077000012],[-123.55337480399987,48.814683335000055],[-123.56981360599988,48.83242422100015],[-123.57152258999987,48.84975820500013],[-123.54718990799991,48.86237213700004],[-123.57192949099989,48.8814964860001],[-123.58665930899988,48.89801666900017],[-123.59373938699986,48.919094143],[-123.59557044199991,48.951808986000046],[-123.59007727799988,48.94741445500013],[-123.58649654899992,48.94257233300006],[-123.5818985669999,48.93130117400007],[-123.50308183499992,48.89166901200003]]],[[[-123.31712805899987,48.86981842699999],[-123.32738196499989,48.863959052000055],[-123.34235592399992,48.86981842699999],[-123.3692927729999,48.861883856000034],[-123.39452063699986,48.87238190300012],[-123.43732662699993,48.903998114],[-123.53075110599991,48.94196198100009],[-123.63292395699997,49.02435944200011],[-123.6539200509999,49.03367747599999],[-123.65884355399987,49.04120514500012],[-123.69798743399993,49.082098700000174],[-123.70274817599993,49.099920966000134],[-123.6972550119999,49.109320380000085],[-123.68700110599985,49.10854726800015],[-123.65855872299994,49.07269928600006],[-123.57038326699985,48.991766669000086],[-123.54674231699991,48.97622304900007],[-123.47191321499993,48.9381371110001],[-123.45714270699995,48.93325429900004],[-123.42878170499984,48.92967357000004],[-123.39093990799986,48.920152085000055],[-123.36595618399987,48.90713125200007],[-123.33446204299985,48.902980861000046],[-123.32184811099987,48.89655182500012],[-123.31444251199989,48.8823102890001],[-123.31712805899987,48.86981842699999]]],[[[-123.69709225199993,49.137111721000124],[-123.70567786399994,49.13287995000003],[-123.71174068899984,49.133856512000094],[-123.71812903599995,49.133205471000146],[-123.73232988199987,49.13031647300003],[-123.7495011059999,49.12885163000006],[-123.7766820949999,49.133286851000136],[-123.8428442049999,49.15102773600002],[-123.86196855399987,49.16356028900013],[-123.86742102799991,49.17438385600011],[-123.86607825399993,49.17942942900005],[-123.86803137899996,49.18333567900005],[-123.87047278599991,49.18549225500006],[-123.86978105399986,49.190497137000094],[-123.86343339799991,49.19627513200005],[-123.83385169199988,49.201157945000105],[-123.82396399599988,49.198675848],[-123.81786048099988,49.19061920800006],[-123.80931555899986,49.18414948100015],[-123.76862545499986,49.16901276200015],[-123.72126217399995,49.16079336100016],[-123.70441646999984,49.15599192900008],[-123.69701087099993,49.147691147999986],[-123.69709225199993,49.137111721000124]]],[[[-125.96198482999986,49.15265534100014],[-125.96890214799988,49.14874909100014],[-125.97935950399996,49.149725653000026],[-126.01170813699987,49.15912506700014],[-126.01634680899991,49.169175523000106],[-126.01829993399984,49.18146393400018],[-126.03018144399988,49.19033437700013],[-126.03502356699988,49.201808986000074],[-126.02432206899995,49.21198151200012],[-126.0064591139999,49.21405670800014],[-125.98501542899993,49.21100495000005],[-125.96133378799993,49.20490143400015],[-125.94994055899988,49.20075104400003],[-125.94497636599992,49.197821356000084],[-125.93732662699988,49.19074127800003],[-125.9381404289999,49.18488190300009],[-125.94570878799995,49.18357982],[-125.95409094999991,49.18130117400001],[-125.96027584499988,49.172105210000055],[-125.96198482999986,49.15265534100014]]],[[[-125.80135190899983,49.143887542000144],[-125.84172702399987,49.133780052000176],[-125.87989753599994,49.14604615700016],[-125.88022976299989,49.16105411800005],[-125.88755813599987,49.17310068600007],[-125.91498553799993,49.17629512200007],[-125.92340618599988,49.19698146300006],[-125.91489462199988,49.21329031900014],[-125.9010695159999,49.22552008200013],[-125.86162526799987,49.23738543899999],[-125.83072269299996,49.23709575800007],[-125.79700206499992,49.22703472900003],[-125.78601912599987,49.20925449800008],[-125.79255137699991,49.18099581300008],[-125.80135190899983,49.143887542000144]]],[[[-74.71296139199993,44.99925364800005],[-74.6349177729999,45.01402415600002],[-74.47354081899994,45.06712474200005],[-74.43683834499993,45.086330471000096],[-74.40713456899991,45.11465078300013],[-74.40428626199986,45.12388743700011],[-74.40314693899992,45.135158596000096],[-74.39956620999996,45.14476146000008],[-74.38914954299986,45.14878978100013],[-74.37922115799995,45.15029531500009],[-74.3673396479999,45.15436432500014],[-74.35627193899995,45.1598167990001],[-74.32949785099987,45.17808665600016],[-74.3081762359999,45.183986721000096],[-74.21947180899994,45.19757721600014],[-74.19945227799987,45.20384349200002],[-74.16441809799997,45.228623765000165],[-74.14561926999991,45.23395416900002],[-74.04845130099991,45.23253001500014],[-74.0043839179999,45.24518463700004],[-73.96434485599988,45.26780833499999],[-73.88923092399995,45.33714427300005],[-73.87995357999989,45.34113190300003],[-73.85753333199987,45.34007396000008],[-73.84825598899992,45.343980210000055],[-73.83189856699991,45.35561758000007],[-73.77594967399997,45.381496486000074],[-73.76720130099989,45.38833242400001],[-73.74494381399995,45.412258205000064],[-73.73468990799992,45.4186058610001],[-73.71288001199989,45.421372789000046],[-73.70457923099987,45.42625560100011],[-73.68736731699997,45.43121979400017],[-73.6046036449999,45.4225121110001],[-73.58177649599992,45.42829010600015],[-73.56916256399992,45.428045966000106],[-73.5636287099999,45.419094143000095],[-73.55728105399987,45.41429271],[-73.54303951699987,45.41632721600003],[-73.52790279899997,45.42145416900003],[-73.51895097599996,45.42625560100011],[-73.50255286399994,45.44790273600001],[-73.50259355399993,45.46344635600012],[-73.52269446499989,45.504461981000034],[-73.52375240799992,45.51382070500016],[-73.52354895699987,45.527573960000076],[-73.52204342399992,45.53994375200001],[-73.49038652299996,45.58409251500011],[-73.46886145699993,45.59971751500008],[-73.46060136599993,45.60805898600013],[-73.45628821499986,45.618231512000094],[-73.45189368399988,45.63560618700007],[-73.4469294909999,45.64223867400012],[-73.45685787699992,45.67243073100015],[-73.44884192599997,45.70449453300012],[-73.43130449099993,45.732733466000084],[-73.41283118399991,45.751532294000135],[-73.25934811099992,45.854112046000104],[-73.21727454299986,45.89883047100007],[-73.20653235599985,45.915594794000086],[-73.20596269399988,45.93272532800002],[-73.20860755099996,45.950832424000126],[-73.20738684799994,45.97056712400014],[-73.20034745999988,45.98175690300015],[-73.17804928299995,46.004014390000016],[-73.17320716099997,46.01496002800008],[-73.17186438699989,46.026841539000046],[-73.16808020699995,46.03579336100016],[-73.16266842399989,46.04307689000008],[-73.15611731699991,46.04970937700013],[-73.1398005849999,46.05833567900005],[-73.04059811099995,46.073594468000024],[-73.03189042899987,46.082342841000084],[-73.01573645699992,46.09349192900011],[-72.99840247299991,46.103420315],[-72.97850501199991,46.11583079600014],[-72.95494544199997,46.13072337400008],[-72.93260657499985,46.14439524900003],[-72.9094132149999,46.135646877000156],[-72.87604732999992,46.13662344000012],[-72.84365800699993,46.14191315300009],[-72.75829016799987,46.17251211100002],[-72.73102779899989,46.17662181200008],[-72.66942298099985,46.21515534100014],[-72.66942298099985,46.230047919000114],[-72.67064368399988,46.24738190300009],[-72.65208899599986,46.25861237200009],[-72.60985266799995,46.27659739800013],[-72.55626380099994,46.305731512000094],[-72.49596106699988,46.36050039300003],[-72.47777258999992,46.36847565300017],[-72.45494544199988,46.37173086100001],[-72.39806067599993,46.396389065],[-72.27432206899988,46.42055898600002],[-72.24156653599997,46.443508205000015],[-72.21613521999987,46.47955963700014],[-72.20474199099988,46.50063711100007],[-72.20002193899998,46.515855210000055],[-72.18993079299992,46.526231187000164],[-72.10244706899996,46.56020742400001],[-72.05760657499994,46.566026109000134],[-72.03237870999988,46.566473700000145],[-72.00739498599995,46.57139720300002],[-71.99152584499993,46.58364492400007],[-71.97813880099991,46.599432684000035],[-71.96043860599991,46.614854234000134],[-71.90501868399986,46.63996002800006],[-71.86709550699993,46.666652736000074],[-71.84569251199989,46.668280341000084],[-71.82428951699984,46.66136302299999],[-71.80272376199991,46.649562893000116],[-71.76060950399997,46.63418203300007],[-71.71418209499993,46.63218821800014],[-71.30247962099989,46.745184637000094],[-71.30260169199997,46.745184637000094],[-71.28205318899992,46.75328196800002],[-71.24372311099998,46.77545807500008],[-71.22374426999991,46.77993398600013],[-71.20506751199994,46.787014065],[-71.17625891799992,46.82396067900005],[-71.15794837099995,46.84080638200005],[-71.11534583199989,46.85337962400014],[-71.01911373599995,46.85154857],[-70.97362219999991,46.86188385600009],[-70.91966712099988,46.897569078000046],[-70.90192623599998,46.90289948100009],[-70.88963782499994,46.901678778000175],[-70.86705481699997,46.89659251500014],[-70.85692298099991,46.89541250200013],[-70.84422766799995,46.89826080900014],[-70.8257950509999,46.91168854400014],[-70.81533769399994,46.916489976000044],[-70.8054906889999,46.916896877000156],[-70.78359941299988,46.91469961100016],[-70.77432206899991,46.916489976000044],[-70.7652888659999,46.922837632],[-70.74396725199995,46.94692617400001],[-70.72716223899994,46.956447658000016],[-70.6002498039999,46.99705638200002],[-70.55504309799997,47.00234609600007],[-70.53490149599992,47.01056549700017],[-70.38817298099988,47.11587148600001],[-70.28661048099988,47.20913320500004],[-70.22630774599995,47.28644440300003],[-70.19489498599992,47.315293687000135],[-70.0760798819999,47.368963934000035],[-70.05036373599995,47.400010484000134],[-70.03107662699992,47.469590562000135],[-70.00035559799994,47.49937571800014],[-69.99030514199985,47.50360748900009],[-69.96955318899995,47.508653062000015],[-69.9593806629999,47.51239655200013],[-69.94928951699987,47.520331122000115],[-69.94229081899996,47.52948639500009],[-69.93423417899993,47.53717682500012],[-69.90074622299989,47.545599677000055],[-69.80223548099988,47.62238190300009],[-69.68968665299994,47.72833893400015],[-69.58877519399988,47.81403229400003],[-69.56187903599991,47.82807038],[-69.55528723899994,47.83445872600011],[-69.55016028599991,47.84385814000005],[-69.5506892569999,47.84955475500011],[-69.55357825399992,47.85716380400005],[-69.55528723899994,47.87238190300003],[-69.54800370999993,47.88959381700015],[-69.44546464799996,47.99188873900009],[-69.42808997299997,47.99896881700012],[-69.40835527299993,48.00104401200015],[-69.36131751199991,48.01300690300009],[-69.3424373039999,48.02008698100015],[-69.32396399599986,48.03058502800003],[-69.25365149599995,48.092352606000034],[-69.15233313699989,48.14667389500006],[-69.05443274599995,48.23236725500011],[-68.96471106699991,48.28778717699999],[-68.84455318899992,48.34271881700009],[-68.82477779899989,48.365830796000054],[-68.80606035099993,48.372422593000024],[-68.74836178299996,48.372910874000084],[-68.72606360599994,48.37641022300009],[-68.6617325509999,48.41229889500009],[-68.65038001199986,48.42076243700002],[-68.63853919199988,48.43195221600002],[-68.56159420499989,48.45148346600003],[-68.52334550699996,48.470770575000145],[-68.46328691299993,48.528916734000106],[-68.42503821499992,48.54706452],[-68.37682044199997,48.550523179],[-68.35358639199993,48.55597565300003],[-68.31387285099993,48.58698151200015],[-68.20563717399997,48.64191315300006],[-68.18431555899991,48.647894598000065],[-68.13272050699996,48.65253327000009],[-68.11571204299989,48.659491278000175],[-68.08242753799989,48.68488190300009],[-68.06029212099992,48.69383372600013],[-68.0335994129999,48.69782135600009],[-67.98216712099989,48.69855377800003],[-67.96202551999994,48.70164622600011],[-67.7180883449999,48.79612864800005],[-67.71190344999994,48.80097077000012],[-67.67125403599994,48.81785716400013],[-67.64688066299988,48.82542552299999],[-67.60334225199995,48.83238353100016],[-67.54678300699996,48.86237213700004],[-67.42516028599991,48.873602606000034],[-67.36180579299986,48.903998114],[-67.29238847599993,48.924505927000055],[-67.11754309799989,48.96308014500012],[-66.87962805899994,49.04649485900002],[-66.62205969999984,49.122626044000086],[-66.52651933499996,49.13336823100012],[-66.21930904899995,49.207871812000164],[-66.05492102799991,49.22467682500017],[-65.88280188699994,49.22467682500017],[-65.68415279899992,49.24253978100013],[-65.61514238199987,49.260239976000044],[-65.56578528599991,49.266465562000015],[-65.39622962099995,49.26105377800014],[-65.27700761599993,49.24445221600011],[-65.1910701159999,49.237046617000104],[-64.96349036399988,49.21930573100003],[-64.87779700399992,49.19542064000014],[-64.82262122299987,49.18903229400003],[-64.8014216789999,49.18121979400002],[-64.75865637899989,49.157171942],[-64.71344967399995,49.13886139500012],[-64.6886287099999,49.13239166900003],[-64.61339270699992,49.123032945000105],[-64.60269120999988,49.11884186400006],[-64.57945716099997,49.10545482000008],[-64.55256100199998,49.097357489000146],[-64.49791419199994,49.06163157800002],[-64.48631751199991,49.05744049700009],[-64.47826087099989,49.05597565300003],[-64.47061113199996,49.05296458500011],[-64.4488012359999,49.03461334800006],[-64.43883216099991,49.029120184000035],[-64.39647376199991,49.01182689000014],[-64.38019771999986,49.00157298400002],[-64.35049394399994,48.975653387000094],[-64.34007727799985,48.97020091400016],[-64.31090247299991,48.964422919000114],[-64.29873613199993,48.959214585000105],[-64.29515540299985,48.95482005400014],[-64.28661048099994,48.94049713700004],[-64.28164628799988,48.93439362200014],[-64.22118079299987,48.894354559000035],[-64.2064509759999,48.86957428600006],[-64.21678626199989,48.82823314000002],[-64.19196529899995,48.799627997000144],[-64.17487545499989,48.78449127800015],[-64.15534420499992,48.77423737200003],[-64.16881262899989,48.76182689000008],[-64.19009355399987,48.77281321800014],[-64.21202551999988,48.791205145],[-64.22736568899994,48.80097077000012],[-64.2530818349999,48.806341864],[-64.30333411399997,48.83026764500006],[-64.52965247299989,48.88239166900008],[-64.5593969389999,48.882879950000174],[-64.53758704299995,48.87632884300008],[-64.47744706899996,48.84190501500016],[-64.47744706899996,48.83567942900002],[-64.53921464799987,48.83002350500011],[-64.53892981699994,48.82139720300002],[-64.52159583199993,48.817002671000026],[-64.46007239499988,48.82823314000002],[-64.41844641799992,48.82640208500005],[-64.39720618399994,48.821356512000115],[-64.38805091099997,48.811143296000076],[-64.38390051999991,48.808050848],[-64.3765763009999,48.79999420800006],[-64.37409420499998,48.791693427],[-64.38438880099991,48.787909247000144],[-64.40786699099996,48.79266998900006],[-64.41832434799994,48.791205145],[-64.42906653599997,48.780462958000086],[-64.41738847599987,48.77460358300014],[-64.40794837099995,48.77582428600006],[-64.39883378799996,48.77936432500003],[-64.38805091099997,48.780462958000086],[-64.37633216099995,48.776231187000164],[-64.35366777299993,48.76288483300006],[-64.32795162699995,48.75584544499999],[-64.27818762899997,48.725816148000135],[-64.23542232999998,48.678086656000076],[-64.22052975199992,48.67059967700003],[-64.20518958199997,48.66697825700005],[-64.18968665299988,48.657578843000024],[-64.17503821499986,48.64447663000005],[-64.16218014199993,48.62962474199999],[-64.19310462099989,48.622992255000106],[-64.22716223899988,48.62506745000005],[-64.25767981699994,48.61920807500009],[-64.27818762899997,48.588690497000144],[-64.28213456899995,48.56903717700011],[-64.27887936099992,48.5612653670001],[-64.25088456899991,48.55076732000005],[-64.22154700399989,48.53367747599999],[-64.2064509759999,48.528021552],[-64.18883216099997,48.52659739800013],[-64.19953365799998,48.52069733299999],[-64.2064509759999,48.51325104400003],[-64.21251380099997,48.50482819200006],[-64.22052975199992,48.495835679000045],[-64.22887122299989,48.49213288000002],[-64.26455644399994,48.48627350500005],[-64.28600012899997,48.47923411699998],[-64.30553137899994,48.469427802000055],[-64.31993567599991,48.45587799700009],[-64.32603919199991,48.437811591000084],[-64.31236731699997,48.43158600500011],[-64.32909094999991,48.419623114],[-64.35960852799994,48.41303131700003],[-64.4444880849999,48.40684642100014],[-64.49624589799993,48.393662828000096],[-64.54515540299991,48.38751862200003],[-64.66258704299992,48.35016510600015],[-64.68321692599994,48.34031810100005],[-64.71104895699992,48.339300848000065],[-64.72325598899988,48.335394598000086],[-64.71202551999988,48.32920970300002],[-64.70470130099997,48.32371653900016],[-64.70181230399993,48.31708405200011],[-64.70400956899994,48.307481187000135],[-64.70783443899995,48.301743882000075],[-64.7141820949999,48.29490794500005],[-64.72118079299986,48.28937409100003],[-64.72695878799992,48.28705475500006],[-64.73131262899992,48.28400299700017],[-64.7377823559999,48.26878489799999],[-64.75694739499988,48.2397321640001],[-64.76573645699995,48.21898021000011],[-64.77936764199988,48.20404694200009],[-64.90884355399993,48.177191473],[-64.92446855399993,48.17625560100011],[-64.93846594999988,48.17731354400014],[-64.9505102199999,48.18085358300014],[-64.9603572259999,48.18768952000006],[-64.96369381399992,48.185858466000084],[-64.96353105399987,48.174994208],[-64.9591365229999,48.160956122000144],[-64.94981848899994,48.14984772300012],[-64.98786373599995,48.12596263200005],[-65.05162512899989,48.101629950000174],[-65.18101966099994,48.04283274900008],[-65.28555253799996,48.01264069200006],[-65.38491777299996,48.009263414000046],[-65.40444902299993,48.00145091400016],[-65.43219967399992,48.00328196800014],[-65.45938066299993,48.01080963700009],[-65.47740637899994,48.02008698100015],[-65.48151607999989,48.026068427000055],[-65.48717200399989,48.04132721600003],[-65.49168860599985,48.04682038000006],[-65.50340735599994,48.05206940300015],[-65.53600012899989,48.05988190300003],[-65.57721920499995,48.064032294000086],[-65.66763261599993,48.09581126500002],[-65.78384355399993,48.11558665600013],[-65.81997636599988,48.12995026200003],[-65.8587133449999,48.159369208000115],[-65.89045162699995,48.17059967700011],[-65.89297441299988,48.18768952000006],[-65.89098059799994,48.208197333000115],[-65.89574133999994,48.225531317],[-65.90440833199995,48.20880768400017],[-65.91295325399994,48.20079173400005],[-65.92406165299988,48.1983503280001],[-65.94041907499991,48.19822825700011],[-65.95303300699987,48.19537995000008],[-65.96401933499993,48.18829987200003],[-66.04600989499997,48.115220445000126],[-66.0670466789999,48.101996161],[-66.09557044199991,48.0971540390001],[-66.18309485599994,48.11570872600011],[-66.27061926999988,48.11652252800003],[-66.28685462099992,48.114488023000106],[-66.29979407499994,48.108221747000144],[-66.29206295499992,48.10541413],[-66.28429114499991,48.10337962400017],[-66.26504472599987,48.101996161],[-66.27472896999984,48.07310618700007],[-66.27936764199995,48.06732819200012],[-66.29002844999991,48.065171617000104],[-66.29613196499989,48.06940338700004],[-66.30064856699994,48.076117255],[-66.30663001199986,48.08152903900013],[-66.31257076699997,48.082017320000105],[-66.31956946499986,48.08100006700006],[-66.32530676999994,48.08116282800002],[-66.32774817599997,48.08527252800014],[-66.32909094999985,48.08991120000009],[-66.33263098899994,48.09483470300013],[-66.3370662099999,48.09918854400014],[-66.34142005099991,48.101996161],[-66.37612870999996,48.11420319200006],[-66.47329667899986,48.120103257000025],[-66.51537024599995,48.10809967699999],[-66.53319251199991,48.070990302000084],[-66.54279537699989,48.05866120000003],[-66.58507239499991,48.061265367000104],[-66.59996497299997,48.044745184000035],[-66.61204993399988,48.04669830900009],[-66.63219153599991,48.05426666900005],[-66.64391028599991,48.051865953000096],[-66.65038001199991,48.04625071800008],[-66.6555883449999,48.03949616100006],[-66.66348222599987,48.03375885600009],[-66.6988012359999,48.024033921000054],[-66.74852454299989,48.01780833500008],[-66.77301998599992,48.00804271000013],[-66.78579667899996,48.00584544500004],[-66.81773841099997,48.006333726000136],[-66.8331599599999,48.00450267100014],[-66.84788977799988,47.99896881700012],[-66.84300696499992,47.99681224200005],[-66.83409583199997,47.99290599200005],[-66.8175349599999,47.99152252800014],[-66.7864477199999,47.992173570000105],[-66.74990800699996,47.98578522300009],[-66.73151607999992,47.98651764500012],[-66.68578040299991,48.007635809000035],[-66.61351477799994,48.01085032800007],[-66.58438066299988,48.02317942900013],[-66.55760657499988,48.03819407800016],[-66.3858943349999,48.075140692],[-66.35529537699989,48.06928131700006],[-66.36192786399994,48.040594794000114],[-66.34512285099993,48.02142975500014],[-66.3189998039999,48.01105377800003],[-66.28937740799995,48.00665924700014],[-66.26195227799988,48.00584544500004],[-66.25422115799998,48.00108470300013],[-66.2467341789999,47.991766669000114],[-66.23835201699994,47.98517487200003],[-66.21593176999994,47.99323151200015],[-66.20225989499991,47.990179755000085],[-66.17690995999988,47.979112046000026],[-65.97085527299996,47.92389557500011],[-65.86611894399991,47.91693756700011],[-65.81786048099987,47.907416083000115],[-65.77220618399994,47.88292064000008],[-65.74120032499991,47.84857819200015],[-65.68968665299994,47.72467682500012],[-65.67784583199997,47.70868561400012],[-65.66364498599995,47.69550202000006],[-65.6288142569999,47.670640367000104],[-65.66364498599995,47.65745677300008],[-65.66917883999989,47.65635814000002],[-65.66710364499994,47.645331122000165],[-65.65811113199993,47.63764069200006],[-65.64631100199995,47.63080475500014],[-65.63573157499991,47.622259833000115],[-65.60606848899988,47.65643952],[-65.59105383999984,47.66917552300005],[-65.56676184799997,47.67747630400014],[-65.49901282499985,47.67926666900003],[-65.47740637899994,47.68370189000011],[-65.43736731699991,47.70624420800008],[-65.36363684799989,47.76203034100017],[-65.28498287699998,47.781683661000116],[-65.20933997299989,47.819688218000024],[-65.02574622299997,47.849595445000105],[-64.97777258999989,47.84198639500006],[-65.05455481699991,47.803045966000084],[-65.07335364499997,47.779893296000054],[-65.06065833199989,47.78131745000012],[-65.03966223899997,47.786240953000075],[-64.99022376199991,47.79063548400013],[-64.90611731699997,47.810736395],[-64.8562719389999,47.815863348],[-64.82628333199995,47.815497137000094],[-64.8000382149999,47.80927155200014],[-64.78595943899995,47.79356517100017],[-64.7897029289999,47.771307684000035],[-64.80943762899994,47.76141998900003],[-64.86046301999993,47.75938548400008],[-64.86046301999993,47.75254954600017],[-64.84203040299991,47.74811432500009],[-64.8026423819999,47.745957749000084],[-64.78595943899995,47.73895905200011],[-64.78335527299987,47.73322174700003],[-64.78233801999991,47.71662018400018],[-64.7784724599999,47.711004950000174],[-64.76390540299988,47.70807526200015],[-64.75767981699991,47.71491120000017],[-64.75690670499989,47.72308991100009],[-64.75865637899989,47.72467682500012],[-64.75743567599996,47.73224518400014],[-64.76081295499989,47.74546946800011],[-64.75865637899989,47.75254954600017],[-64.75300045499989,47.757269598000065],[-64.73570716099991,47.76447174700011],[-64.73078365799995,47.76561107000004],[-64.71825110599993,47.76158274900017],[-64.68016516799986,47.74131907800016],[-64.66860917899993,47.732123114],[-64.68488521999987,47.722723700000145],[-64.73936926999994,47.70140208499999],[-64.75121008999992,47.70075104400014],[-64.75763912699992,47.68638743700008],[-64.7733455069999,47.683294989],[-64.79336503799995,47.68305084800015],[-64.81261145699992,47.67747630400014],[-64.80915279899992,47.674546617000104],[-64.7996313139999,47.66380442900002],[-64.80870520699992,47.658636786],[-64.81175696499992,47.65326569200015],[-64.80870520699992,47.64793528900016],[-64.7996313139999,47.64268626500008],[-64.81403561099997,47.62156810099999],[-64.82884680899994,47.60594310099999],[-64.86782792899993,47.57444896],[-64.87584387899997,47.57050202],[-64.88483639199997,47.567206122000144],[-64.8921606109999,47.56150950700008],[-64.8951716789999,47.55023834800009],[-64.89549719999991,47.54258860900013],[-64.89712480399993,47.53705475500014],[-64.90884355399993,47.51984284100003],[-64.87409420499998,47.51984284100003],[-64.88955644399991,47.49970123900009],[-64.92446855399993,47.46747467700014],[-64.92931067599989,47.45091380400008],[-64.91515051999997,47.46478913000006],[-64.9020076159999,47.471502997000115],[-64.88711503799995,47.47654857000005],[-64.86782792899993,47.485703843000024],[-64.89321855399994,47.42186107],[-64.90884355399993,47.355332749000084],[-64.91226152299993,47.36579010600015],[-64.91169186099998,47.37592194200012],[-64.90794837099995,47.38597239800002],[-64.90587317599991,47.39447663000011],[-64.90884355399993,47.40253327000006],[-64.92788652299991,47.39337799700009],[-64.93911699099993,47.37877024900017],[-64.94815019399994,47.36163971600003],[-64.9603572259999,47.34479401200004],[-64.96174068899998,47.33193594],[-64.95840410099996,47.31232330900003],[-64.95962480399986,47.294297593000024],[-64.97398841099997,47.28644440300003],[-65.01992753799993,47.28237539300006],[-65.04295813699989,47.275213934000035],[-65.06126868399986,47.251939195000105],[-65.09845943899995,47.23643626500011],[-65.1068416009999,47.22158437700013],[-65.12254798099988,47.202744859000106],[-65.33145097599993,47.10057200700005],[-65.36754309799997,47.094631252000035],[-65.36754309799997,47.087795315],[-65.28433183499993,47.080877997000115],[-65.2447810539999,47.08189524900017],[-65.20303300699996,47.094631252000035],[-65.20457923099988,47.08047109600001],[-65.21027584499986,47.06476471600003],[-65.21320553299988,47.052069403000175],[-65.20645097599996,47.04677969],[-65.14903723899992,47.053697007],[-65.06309973899994,47.090562242000075],[-65.03233801999994,47.094631252000035],[-65.01500403599997,47.08852773600013],[-64.99828040299994,47.06504954600016],[-64.98452714799993,47.05988190300015],[-64.96524003799988,47.063096421000026],[-64.95466061099992,47.070786851000044],[-64.94709225199998,47.08006419499999],[-64.93675696499989,47.087795315],[-64.90855872299991,47.09275950700005],[-64.82542883999994,47.089097398000106],[-64.7996313139999,47.08161041900002],[-64.82551021999993,47.063544012000115],[-64.82111568899992,47.041367906000126],[-64.80760657499988,47.015244859000106],[-64.80646725199992,46.985419012000094],[-64.81688391799992,46.97711823100012],[-64.85265051999994,46.96271393400015],[-64.8951716789999,46.916489976000044],[-64.90583248599992,46.886867580000015],[-64.90436764199995,46.858750718000024],[-64.89488684799997,46.832098700000174],[-64.88149980399996,46.80662669499999],[-64.8648982409999,46.78318919500002],[-64.84430904899997,46.76316966400013],[-64.79214433499993,46.72471751500002],[-64.81891842399995,46.724758205000015],[-64.8394262359999,46.716864325000145],[-64.85191809799991,46.70083242400015],[-64.85423743399988,46.676336981000034],[-64.84740149599995,46.676336981000034],[-64.83267167899996,46.6993675800001],[-64.80190995999988,46.69562409100014],[-64.75121008999992,46.670070705000064],[-64.75792395699995,46.69029368700011],[-64.74917558499988,46.69981517100008],[-64.73216712099992,46.69879791900003],[-64.71361243399991,46.68716054900003],[-64.70677649599989,46.67226797100007],[-64.70539303299992,46.651760158000016],[-64.7102758449999,46.614854234000134],[-64.71983801999997,46.57632070500007],[-64.71739661399994,46.555975653000175],[-64.70030676999988,46.54722728100002],[-64.69025631399992,46.53864166900008],[-64.67975826699995,46.51959870000009],[-64.67772376199991,46.50055573100009],[-64.69318600199995,46.49201080900018],[-64.70213782499988,46.489813544000086],[-64.70872962099995,46.48509349199999],[-64.7110896479999,46.48045482000005],[-64.70714270699992,46.478338934000064],[-64.70189368399991,46.47646719000009],[-64.69420325399992,46.467433986000074],[-64.68976803299992,46.464016018000066],[-64.68219967399996,46.4633649760001],[-64.67686926999991,46.466457424],[-64.67275956899996,46.47003815300015],[-64.66860917899993,46.47085195500007],[-64.65465247299994,46.46369049700003],[-64.63621985599991,46.45079173400001],[-64.62022864499991,46.43512604400014],[-64.61339270699992,46.41929759300002],[-64.61461341099994,46.382228908000094],[-64.61880449099996,46.36798737200008],[-64.6276749339999,46.354152736000074],[-64.64549719999988,46.34039948100015],[-64.66356360599991,46.33673737200003],[-64.68285071499994,46.335109768],[-64.70400956899994,46.32750071800014],[-64.68342037699989,46.32851797100004],[-64.67259680899991,46.32737864799999],[-64.66519120999993,46.323797919000114],[-64.65721594999988,46.32103099200005],[-64.64720618399988,46.32436758000007],[-64.6276749339999,46.333644924000126],[-64.58893795499995,46.33535390800013],[-64.57494055899991,46.33869049700014],[-64.57990475199995,46.34796784100003],[-64.5585017569999,46.369126695000105],[-64.5365291009999,46.35146719],[-64.52342688699991,46.32160065300003],[-64.52839107999998,46.305731512000094],[-64.55532792899993,46.29857005400005],[-64.56358801999994,46.27968984600003],[-64.5593969389999,46.223781643000066],[-64.53502356699994,46.23497142100016],[-64.51402747299991,46.23940664300012],[-64.40542558499993,46.238104559000035],[-64.39915930899988,46.23607005400011],[-64.38752193899997,46.22667064000007],[-64.38060462099989,46.223781643000066],[-64.37035071499986,46.223740953000075],[-64.36261959499984,46.226141669000114],[-64.35553951699998,46.22915273600002],[-64.34715735599991,46.23126862200002],[-64.25328528599994,46.23444245000009],[-64.23729407499985,46.23126862200002],[-64.18504798099994,46.2101911480001],[-64.1627498039999,46.19513580900009],[-64.16905676999994,46.183457749000084],[-64.16128495999992,46.17003001500011],[-64.15127519399994,46.16632721600014],[-64.12743079299987,46.16982656500015],[-64.12669837099995,46.174139716000134],[-64.11929277299996,46.18227773600015],[-64.1109106109999,46.18683502800012],[-64.10411536399995,46.17393626500008],[-64.09732011599993,46.16852448100006],[-64.08267167899992,46.159287828000075],[-64.0780330069999,46.163478908000016],[-64.04967200399997,46.178941148000135],[-64.03799394399996,46.183457749000084],[-64.02257239499994,46.18528880400008],[-63.97321529899994,46.183457749000084],[-63.9462784499999,46.17877838700015],[-63.89427649599991,46.15664297100001],[-63.81305904899991,46.14028554900007],[-63.79027258999988,46.13096751500014],[-63.771107550999915,46.11522044499999],[-63.79181881399992,46.09951406500004],[-63.81297766799994,46.093858140000016],[-63.86046301999994,46.08726634300014],[-63.866525844999835,46.082912502000156],[-63.885365363999874,46.065741278000026],[-63.89464270699994,46.05996328300007],[-63.90558834499989,46.058010158000016],[-64.0637914699999,46.06175364800005],[-64.07274329299992,46.05996328300007],[-64.07648678299995,46.053534247000144],[-64.07648678299995,46.044582424000126],[-64.07970130099991,46.0365257830001],[-64.09325110599988,46.0326195330001],[-64.08385169199994,46.02236562700007],[-64.05231686099995,46.00136953300013],[-64.04271399599988,45.9919701190001],[-64.04185950399997,45.99111562700001],[-64.03355872299989,45.995266018000116],[-64.02424068899995,46.00181712400002],[-64.01756751199989,46.0053571640001],[-64.00772050699987,46.005031643000095],[-63.90485592399998,45.980332749000084],[-63.870269334999875,45.96246979400003],[-63.86668860599991,45.936428127000156],[-63.84459387899991,45.934230861000074],[-63.8248591789999,45.92519765800016],[-63.810902472999906,45.90977610900002],[-63.80589758999989,45.8886579450001],[-63.78644771999987,45.890733140000044],[-63.758941209999925,45.885402736000074],[-63.73249264199996,45.876613674],[-63.71589107999992,45.86815013200005],[-63.72712154899991,45.861721096000146],[-63.74649003799993,45.853664455000015],[-63.757476365999885,45.84703196800013],[-63.73615475199991,45.84186432500006],[-63.69029700399991,45.85309479400014],[-63.66869055899994,45.84703196800013],[-63.67418372299994,45.83641185100011],[-63.67418372299994,45.827622789000046],[-63.669748501999884,45.82339101800004],[-63.66185462099991,45.826564846000096],[-63.65225175699993,45.83681875200001],[-63.65339107999998,45.84275950700014],[-63.65868079299994,45.85008372600005],[-63.66185462099991,45.86440664300012],[-63.65908769399993,45.87384674700005],[-63.652577277999846,45.87457916900017],[-63.6446020169999,45.87034739800005],[-63.63768469999991,45.86440664300012],[-63.62877356699997,45.8622907570001],[-63.59300696499995,45.875067450000145],[-63.491932745999954,45.88263580900009],[-63.43911699099996,45.875596421000054],[-63.408599412999926,45.85447825700011],[-63.427845831999974,45.853664455000015],[-63.463775193999936,45.860419012000065],[-63.48314368399988,45.86070384300008],[-63.47028561099995,45.852362372000115],[-63.43805904899991,45.838446356000034],[-63.428537563999896,45.826564846000096],[-63.44758053299989,45.821356512000094],[-63.48399817599997,45.82615794499999],[-63.50426184799988,45.826564846000096],[-63.52281653599988,45.81944407800013],[-63.51593990799998,45.81089915600002],[-63.4963272779999,45.80695221600003],[-63.476918097999906,45.813544012000094],[-63.46898352799985,45.80841705900018],[-63.46104895699989,45.80601634300014],[-63.45238196499989,45.805487372000144],[-63.44220943899995,45.80605703300013],[-63.43805904899991,45.80528392100011],[-63.431263800999965,45.80076732000005],[-63.428537563999896,45.79987213700014],[-63.424956834999925,45.8022321640001],[-63.41852779899991,45.81142812700009],[-63.415435350999935,45.813544012000094],[-63.39915930899991,45.811753648000106],[-63.36953691299996,45.80255768400003],[-63.35399329299986,45.79987213700014],[-63.32396399599992,45.80369700700008],[-63.29137122299994,45.81207916900003],[-63.25910396999993,45.815904039000046],[-63.22984778599988,45.80605703300013],[-63.2579646479999,45.79136790600005],[-63.301665818999965,45.7755394550001],[-63.347238735999916,45.76650625200006],[-63.38072669199997,45.77195872600011],[-63.37279212099991,45.75718821800013],[-63.355946417999924,45.74811432500003],[-63.312408006999874,45.73716868700008],[-63.30378170499998,45.732245184000114],[-63.29478919199997,45.72565338700004],[-63.28795325399994,45.724188544000164],[-63.28514563699988,45.73444245000009],[-63.2816462879999,45.741115627000156],[-63.27358964799987,45.74787018400009],[-63.257191535999965,45.75889720300013],[-63.257435675999915,45.75352610900008],[-63.25670325399997,45.742499091000056],[-63.257191535999965,45.73716868700008],[-63.21165930899991,45.76007721600017],[-63.1957087879999,45.7651227890001],[-63.19562740799992,45.76748281500006],[-63.194488084999875,45.772528387000094],[-63.19237219999988,45.77724844],[-63.18887285099987,45.778794664000046],[-63.183949347999906,45.77586497600011],[-63.181711391999926,45.77130768400015],[-63.18219967399992,45.76626211100013],[-63.18517005099991,45.76203034100003],[-63.19969641799986,45.752997137000094],[-63.2052302729999,45.745917059000064],[-63.20254472599989,45.73716868700008],[-63.18980872299994,45.73639557500014],[-63.13434811099989,45.75889720300013],[-63.11729895699994,45.76300690300009],[-63.10045325399994,45.76463450700011],[-63.08336341099988,45.76349518400018],[-63.06541907499985,45.75889720300013],[-63.07046464799987,45.77842845300002],[-63.08405514199993,45.79026927299999],[-63.120676235999944,45.80605703300013],[-63.10065670499989,45.811346747000115],[-62.97996985599991,45.79596588700015],[-62.924672003999916,45.78261953300016],[-62.77741451699989,45.7651227890001],[-62.75084387899995,45.76552969],[-62.69957434799992,45.7724470070001],[-62.6749568349999,45.77195872600011],[-62.69595292899992,45.76080963700009],[-62.71768144399991,45.7604027360001],[-62.73859615799998,45.762518622000115],[-62.75694739499994,45.75889720300013],[-62.73900305899988,45.748358466000084],[-62.728830532999915,45.744370835000026],[-62.698882615999956,45.744614976000044],[-62.682362433999884,45.742092190000115],[-62.66454016799992,45.73558177300004],[-62.64753170499995,45.72671133000009],[-62.63341223899991,45.71735260600015],[-62.702992316999904,45.686916408],[-62.7509659499999,45.68121979400003],[-62.77057857999998,45.67442454600008],[-62.78429114499992,45.66176992400004],[-62.791656053999894,45.64223867400012],[-62.78066972599992,45.65294017100017],[-62.765004035999965,45.66172923400005],[-62.74876868399991,45.66404857],[-62.736439581999974,45.65525950700011],[-62.74754798099991,45.62710195500013],[-62.74974524599988,45.61286041900006],[-62.739857550999886,45.618028062000135],[-62.719878709999904,45.64541250200001],[-62.70661373599998,45.65558502800015],[-62.69176184799991,45.652167059000035],[-62.66909745999995,45.63068268400012],[-62.65680904899991,45.62775299700009],[-62.64704342399994,45.64223867400012],[-62.664051886999914,45.647040106000034],[-62.67235266799992,45.656236070000105],[-62.67243404899989,45.66783274900003],[-62.664702928999866,45.67979564000014],[-62.65526282499988,45.68195221600014],[-62.64037024599992,45.68113841400004],[-62.62474524599992,45.682277736000074],[-62.61290442599997,45.69065989800013],[-62.600493943999936,45.686183986000074],[-62.57746334499987,45.68585846600014],[-62.56574459499986,45.68317291900017],[-62.55752519399987,45.6778832050001],[-62.55028235599985,45.666856187000135],[-62.54466712099986,45.66270579600011],[-62.5263565749999,45.65827057500003],[-62.51056881399995,45.65916575700011],[-62.49469967399991,45.66185130400002],[-62.4757380849999,45.66270579600011],[-62.502593553999894,45.63100820500012],[-62.50914466099987,45.61497630400005],[-62.493397589999915,45.60805898600013],[-62.47044837099992,45.61448802300008],[-62.43521074099988,45.64268626500014],[-62.418039516999954,45.64907461100016],[-62.399810350999864,45.652899481000176],[-62.376942511999886,45.66217682500003],[-62.36168372299991,45.673325914000046],[-62.370961066999946,45.68252187700001],[-62.38337154899989,45.680080471000096],[-62.40469316299993,45.67511627800003],[-62.4416397779999,45.65525950700011],[-62.41612708199992,45.679103908000016],[-62.27033443899995,45.703721421000026],[-62.060047980999904,45.807969468000074],[-61.98884029899989,45.86302317900005],[-61.948801235999944,45.881822007],[-61.92430579299991,45.88914622600002],[-61.91148841099989,45.888983466000056],[-61.90038001199986,45.881822007],[-61.897368943999965,45.87164948100015],[-61.90534420499992,45.86554596600014],[-61.916086391999926,45.85984935099999],[-61.92145748599997,45.850734768000095],[-61.91999264199992,45.82994212400011],[-61.909006313999946,45.78693268400015],[-61.88784745999996,45.73769765800013],[-61.88634192599991,45.721055406000104],[-61.89415442599991,45.703721421000026],[-61.87629146999985,45.69269440300015],[-61.83649654899994,45.68121979400003],[-61.82152258999991,45.67267487200009],[-61.80663001199986,45.65949127800015],[-61.794911261999886,45.652899481000176],[-61.72590084499984,45.62754954600014],[-61.707834438999924,45.623277085000105],[-61.684396938999946,45.621730861000074],[-61.668202277999875,45.626613674000154],[-61.65514075399991,45.635891018],[-61.642160610999916,45.64150625200001],[-61.62604732999995,45.63540273600002],[-61.632923956999946,45.636053778000175],[-61.648508266999954,45.634182033000016],[-61.64806067599994,45.62681712400011],[-61.64037024599992,45.62132396],[-61.619781053999894,45.614325262000094],[-61.618804490999935,45.622463283],[-61.61546790299992,45.63165924700009],[-61.60993404899997,45.63914622600005],[-61.60212154899989,45.64223867400012],[-61.5890193349999,45.64541250200001],[-61.58348548099991,45.65322500200001],[-61.58055579299989,45.6631940780001],[-61.575103318999936,45.67267487200009],[-61.55801347599989,45.683661200000145],[-61.537098761999935,45.68886953300013],[-61.49254309799994,45.69065989800013],[-61.47052975199995,45.68309153900019],[-61.43724524599994,45.6498070330001],[-61.417469855999904,45.64223867400012],[-61.39997311099995,45.63263580900015],[-61.38442949099996,45.61147695500015],[-61.369740363999966,45.580796617000075],[-61.358876105999876,45.57770416900017],[-61.35138912699991,45.570054429000045],[-61.33869381399995,45.55284251500002],[-61.323719855999904,45.54205963700004],[-61.26292883999989,45.511867580000015],[-61.246896938999896,45.50731028900016],[-61.23981686099992,45.508368231000034],[-61.23721269399993,45.50576406500012],[-61.23497473899994,45.49079010600009],[-61.23680579299992,45.46800364800007],[-61.24852454299991,45.453111070000105],[-61.26732337099986,45.443426825000145],[-61.352894660999965,45.41339752800009],[-61.37279212099986,45.40884023600016],[-61.37409420499994,45.42125071800008],[-61.388091600999935,45.41803620000003],[-61.40566972599996,45.40753815300015],[-61.417469855999904,45.39858633000013],[-61.429839647999955,45.39199453300016],[-61.48265540299993,45.37474192900005],[-61.46153723899991,45.35484446800013],[-61.45075436099992,45.34935130400011],[-61.13687089799995,45.35423411699999],[-61.11961829299994,45.352118231000176],[-61.081776495999925,45.34267812700007],[-60.99864661399993,45.333156643000066],[-60.98232988199993,45.32632070500016],[-60.97118079299988,45.31386953300013],[-60.97061113199994,45.30174388200014],[-60.97256425699987,45.288234768000066],[-60.968658006999874,45.271633205000015],[-60.98306230399995,45.27130768400018],[-60.98713131399989,45.27700429900007],[-60.98875891799992,45.28530508000013],[-60.99600175699996,45.292141018000066],[-61.00694739499991,45.294256903000175],[-61.017079230999876,45.2936872420001],[-61.026966925999886,45.29433828300016],[-61.03697669199997,45.29962799700003],[-61.02855383999992,45.28530508000013],[-61.02334550699993,45.27846914300012],[-61.01646887899992,45.271633205000015],[-61.02407792899996,45.26300690300009],[-61.03132076699998,45.26085032800002],[-61.03880774599995,45.25983307500003],[-61.047230597999906,45.25462474200004],[-61.05345618399985,45.24453359600007],[-61.056630011999914,45.235988674000154],[-61.06297766799986,45.23253001500014],[-61.078521287999955,45.23753489800002],[-61.07115637899994,45.22394440300006],[-61.1197403639999,45.213446356000176],[-61.13939368399988,45.2180036480001],[-61.153065558999906,45.23753489800002],[-61.14220130099991,45.24502187700006],[-61.13345292899993,45.252834377000156],[-61.12612870999993,45.26162344000012],[-61.11953691299996,45.271633205000015],[-61.1647029289999,45.26365794500004],[-61.17479407499988,45.258042710000055],[-61.179798956999925,45.24249909100014],[-61.170725063999924,45.21572500200013],[-61.17479407499988,45.202785549000126],[-61.184234178999894,45.20848216400013],[-61.18805904899991,45.215440171000026],[-61.18993079299989,45.22304922100015],[-61.1966853509999,45.23525625200013],[-61.20425370999996,45.24575429900001],[-61.21206620999996,45.25299713700012],[-61.215728318999915,45.247707424000126],[-61.246001756999895,45.23948802300004],[-61.26305091099993,45.23916250200004],[-61.26292883999989,45.25112539300015],[-61.27855383999985,45.25401439000008],[-61.2987361319999,45.247910874000084],[-61.33177649599995,45.23069896],[-61.35057532499991,45.21735260600015],[-61.36506100199994,45.20123932500008],[-61.36461341099994,45.1896019550001],[-61.33869381399995,45.18976471600014],[-61.35464433499997,45.177639065000065],[-61.371001756999874,45.1688500020001],[-61.38914954299988,45.1635602890001],[-61.56786048099991,45.14712148600002],[-61.61058508999992,45.15062083500011],[-61.6396378249999,45.17544179900006],[-61.647287563999924,45.15684642100017],[-61.66588294199994,45.16396719000012],[-61.687123175999915,45.175360419000086],[-61.70238196499989,45.16925690300009],[-61.685658331999946,45.16193268400009],[-61.66616777299987,45.14931875200001],[-61.649159308999906,45.13462962400003],[-61.6396378249999,45.12083567900011],[-61.64952551999991,45.121568101000136],[-61.65819251199991,45.120347398000106],[-61.67442786399993,45.11465078300013],[-61.6396378249999,45.09357330900012],[-61.6396378249999,45.08730703300007],[-61.67723548099991,45.08848704600008],[-61.694935675999915,45.09141673400001],[-61.70238196499989,45.09727610900016],[-61.70433508999992,45.107041734000106],[-61.70864824099993,45.10724518400015],[-61.71544348899996,45.100978908],[-61.75641842399997,45.100978908],[-61.7545466789999,45.094142971000096],[-61.755034959999904,45.08877187700013],[-61.75617428299993,45.08429596600014],[-61.75641842399997,45.07990143400018],[-61.78136145699992,45.092352606000084],[-61.80972245999994,45.100938218000024],[-61.82526607999995,45.09902578300015],[-61.81163489499991,45.07990143400018],[-61.822092251999976,45.077948309000035],[-61.84601803299994,45.080226955000015],[-61.85936438699985,45.07990143400018],[-61.85936438699985,45.073065497000144],[-61.850819464999915,45.070461330000064],[-61.84162350199995,45.064520575000024],[-61.8361710279999,45.05613841400016],[-61.83893795499998,45.046372789000046],[-61.84764563699986,45.04478587400011],[-61.880482550999965,45.05320872600005],[-61.886708136999914,45.046372789000046],[-61.882394985999916,45.03416575700005],[-61.89688066299988,45.03066640800007],[-61.91844641799988,45.03676992400007],[-61.935170050999915,45.05320872600005],[-61.941517706999946,45.033107815],[-61.9413142569999,45.02464427300008],[-61.95946204299989,45.036485093000024],[-61.97573808499993,45.03603750200013],[-61.99054928299989,45.02651601800012],[-62.00401770699997,45.01097239800013],[-62.005726691999875,45.01634349199999],[-62.007923956999974,45.02073802300008],[-62.00975501199986,45.02553945500015],[-62.01024329299994,45.03213125200013],[-62.02025305899991,45.026109117000125],[-62.02940833199989,45.01935455900009],[-62.038970506999895,45.01357656500012],[-62.05060787699989,45.01097239800013],[-62.034657355999876,45.00405508000013],[-61.97606360599985,44.99111562700013],[-61.98884029899989,44.98493073100015],[-62.00348873599989,44.98281484600015],[-62.0182185539999,44.98484935099999],[-62.031320766999954,44.99111562700013],[-62.04214433499996,44.98240794500005],[-62.05752519399991,44.97549062700012],[-62.073394334999925,44.97296784100003],[-62.08592688699991,44.97744375200009],[-62.09780839799987,44.973456122000115],[-62.11872311099992,44.969712632],[-62.13853919199993,44.96881745000009],[-62.1473689439999,44.97378164300012],[-62.151519334999925,44.97516510600012],[-62.17398027299992,44.96043528900013],[-62.18492591099991,44.95636627800015],[-62.2337540359999,44.95929596600008],[-62.254546678999894,44.95201243700008],[-62.27033443899995,44.92906321800008],[-62.27774003799993,44.93650950700005],[-62.29002844999987,44.9272321640001],[-62.306141730999855,44.92007070500007],[-62.32160396999987,44.917547919000135],[-62.33177649599992,44.92226797100006],[-62.3391820949999,44.92226797100006],[-62.34024003799996,44.917792059000085],[-62.341867641999976,44.914943752000156],[-62.34386145699992,44.912420966000056],[-62.34601803299993,44.908596096000124],[-62.34300696499991,44.905259507],[-62.34203040299985,44.90330638200005],[-62.3391820949999,44.89492422100009],[-62.36115475199991,44.90216705900012],[-62.37734941299987,44.90997955900009],[-62.393422003999945,44.91026439000014],[-62.41490637899989,44.89492422100009],[-62.41038977799994,44.89191315300009],[-62.40566972599992,44.885809637000094],[-62.40062415299988,44.88125234600015],[-62.42039954299991,44.87824127800015],[-62.437163865999935,44.86851634300011],[-62.447661912999905,44.85317617400015],[-62.448394334999925,44.8334821640001],[-62.467152472999885,44.841376044000086],[-62.47276770699988,44.858994859000106],[-62.47313391799991,44.880764065000065],[-62.4757380849999,44.90110911700005],[-62.49046790299991,44.88141510600012],[-62.507150844999835,44.86338939000008],[-62.527088995999925,44.855861721000124],[-62.55150305899989,44.86758047100001],[-62.56574459499986,44.840236721000124],[-62.55528723899991,44.83274974199999],[-62.54662024599992,44.825018622000144],[-62.53099524599992,44.80621979400002],[-62.552723761999886,44.800116278000026],[-62.577788865999906,44.83340078300004],[-62.599232550999915,44.82664622599999],[-62.60676021999989,44.83714427300004],[-62.6231990229999,44.83030833500013],[-62.66136633999986,44.80621979400002],[-62.65392005099998,44.792547919000086],[-62.68724524599986,44.80211009300017],[-62.80532792899993,44.78506094],[-62.79881751199994,44.771836656000076],[-62.80260169199996,44.76109446800014],[-62.81289628799987,44.75397370000012],[-62.82583574099988,44.751572984000155],[-62.82135982999991,44.7436384140001],[-62.81517493399985,44.73761627800009],[-62.80736243399985,44.73301829600014],[-62.79792232999995,44.72980377800009],[-62.81924394399991,44.72060781500012],[-62.83043372299991,44.717759507],[-62.84260006399989,44.7167829450001],[-62.85147050699996,44.722967841000084],[-62.85757402299992,44.73375071800008],[-62.86384029899988,44.73786041900002],[-62.873605923999925,44.72361888200014],[-62.887440558999934,44.731309312000135],[-62.908558722999935,44.738023179],[-62.93024654899991,44.740057684000035],[-62.94562740799995,44.73350657800013],[-62.97256425699994,44.71743398600016],[-62.989491339999915,44.711004950000145],[-62.99714107999995,44.71369049700003],[-62.99787350199997,44.72231679900012],[-62.99962317599997,44.72719961100002],[-63.00186113199995,44.731268622000144],[-63.00397701699995,44.73729075700008],[-63.00291907499991,44.7652855490001],[-63.00397701699995,44.771389065000065],[-63.01854407499987,44.77798086100013],[-63.04702714799989,44.76622142100017],[-63.058583136999914,44.7782250020001],[-63.059315558999856,44.76325104400014],[-63.050282355999855,44.75047435100011],[-63.02098548099991,44.726711330000015],[-63.01402747299995,44.710598049000126],[-63.02432206899993,44.69684479400003],[-63.058583136999914,44.67519765800013],[-63.062855597999935,44.68862539300012],[-63.061431443999965,44.70465729400003],[-63.06305904899988,44.718003648000135],[-63.07591712099992,44.72361888200014],[-63.09561113199995,44.72915273600013],[-63.10195878799988,44.74266185100011],[-63.09951738199996,44.77480703300007],[-63.10265051999991,44.784002997000144],[-63.11021887899997,44.78986237200008],[-63.11937415299985,44.79067617400001],[-63.127430792999895,44.78506094],[-63.12507076699992,44.7821312520001],[-63.120676235999944,44.751572984000155],[-63.123890753999916,44.734849351000136],[-63.136789516999926,44.70677317900014],[-63.14049231699997,44.68886953300007],[-63.15392005099994,44.695542710000105],[-63.16047115799995,44.705674546000076],[-63.160552537999926,44.71767812700001],[-63.15477454299987,44.72980377800009],[-63.1732478509999,44.72105540600002],[-63.183176235999895,44.69163646000014],[-63.20254472599989,44.682684637000094],[-63.213937954999984,44.68121979400014],[-63.21410071499994,44.68301015800013],[-63.21182206899996,44.68980540600016],[-63.21621660099992,44.703192450000145],[-63.2323298819999,44.72667064000002],[-63.236683722999906,44.73729075700008],[-63.24982662699995,44.725938218000074],[-63.25324459499987,44.711493231000034],[-63.24840247299988,44.697658596000124],[-63.236683722999906,44.68886953300007],[-63.24974524599989,44.67267487200003],[-63.28132076699998,44.64345937700007],[-63.28514563699988,44.62742747599999],[-63.317128058999884,44.63613515800007],[-63.38906816299993,44.64313385600014],[-63.415435350999935,44.65534088700004],[-63.4025772779999,44.664618231000084],[-63.3965551419999,44.66705963700012],[-63.387562628999895,44.66836172100004],[-63.39903723899994,44.68203359600015],[-63.41690019399991,44.68292877800015],[-63.455799933999906,44.66836172100004],[-63.43488521999984,44.65928782800002],[-63.42064368399994,44.64826080900014],[-63.415435350999935,44.633612372000144],[-63.421701626999884,44.61375560100005],[-63.43895423099991,44.596340236000074],[-63.45636959499986,44.60073476800006],[-63.47606360599991,44.61338939000014],[-63.510161912999905,44.62409088700015],[-63.53840084499989,44.647853908000066],[-63.57363847599993,44.665594794000135],[-63.632639126999976,44.71295807500009],[-63.644113735999916,44.71727122600002],[-63.66185462099991,44.7167829450001],[-63.64899654899989,44.687567450000174],[-63.64012610599993,44.67617422100001],[-63.627756313999896,44.66836172100004],[-63.62035071499992,44.66705963700012],[-63.59642493399985,44.66836172100004],[-63.587554490999906,44.66417064000008],[-63.573963995999854,44.645900783000016],[-63.568755662999955,44.641709703000075],[-63.56354732999994,44.634833075000174],[-63.54857337099992,44.60293203300015],[-63.5451554029999,44.593329169000086],[-63.54572506399998,44.574204820000105],[-63.54808508999994,44.56142812700007],[-63.54649817599991,44.55011627800009],[-63.52326412699989,44.51813385600009],[-63.52379309799996,44.50324127800003],[-63.533314581999946,44.48887767100014],[-63.54857337099992,44.473211981000176],[-63.55406653599996,44.47028229400014],[-63.57339433499987,44.464178778000175],[-63.579335089999915,44.46352773600002],[-63.58690344999985,44.46906159100014],[-63.5846248039999,44.47496165600007],[-63.57970130099991,44.48033274900003],[-63.579335089999915,44.48403554900007],[-63.59618079299992,44.487372137000094],[-63.60464433499996,44.47691478100002],[-63.60993404899992,44.46303945500012],[-63.620716925999936,44.45270416900003],[-63.62588456899994,44.44586823100012],[-63.632801886999935,44.44074127800008],[-63.641428188999924,44.442450262000094],[-63.643706834999904,44.449611721000124],[-63.638986782999886,44.458400783000016],[-63.63198808499994,44.466131903000026],[-63.627756313999896,44.46979401200014],[-63.641590949999916,44.47593821800014],[-63.65811113199987,44.475205796000026],[-63.69286048099995,44.46979401200014],[-63.7008357409999,44.46759674700009],[-63.70274817599994,44.462958075000145],[-63.70555579299988,44.45823802300005],[-63.71589107999992,44.45612213700003],[-63.720773891999976,44.460679429],[-63.72411048099991,44.46946849200005],[-63.728627081999946,44.47500234600007],[-63.73692786399993,44.46979401200014],[-63.74933834499987,44.47426992400012],[-63.75837154899997,44.48135000200001],[-63.76357988199988,44.49135976800009],[-63.76488196499988,44.50450267100014],[-63.77428137899989,44.493557033000066],[-63.78331458199992,44.47785065300011],[-63.79336503799988,44.4684105490001],[-63.80589758999989,44.47662995000009],[-63.80943762899994,44.490139065000065],[-63.80402584499989,44.50324127800003],[-63.78477942599997,44.531846421000026],[-63.79308020699994,44.526271877],[-63.80528723899991,44.51455312700001],[-63.81212317599994,44.51133860900016],[-63.81989498599992,44.51378001500008],[-63.826039191999904,44.52049388200014],[-63.83397376199988,44.52448151200012],[-63.8468318349999,44.51870351800015],[-63.84447180899985,44.51487864800005],[-63.840077277999875,44.50450267100014],[-63.85366777299993,44.504299221000096],[-63.87401282499991,44.49860260600009],[-63.88780676999992,44.49705638200005],[-63.90054277299987,44.49811432500003],[-63.91222083199997,44.50096263200005],[-63.9220271479999,44.50551992400001],[-63.92943274599988,44.51133860900016],[-63.94249426999996,44.5340436870001],[-63.94172115799994,44.55430735900002],[-63.92198645699991,44.593329169000086],[-63.92857825399989,44.600002346000124],[-63.943023240999935,44.6205101580001],[-63.92471269399988,44.628810940000065],[-63.9186091789999,44.63414134300014],[-63.91510982999992,44.641709703000075],[-63.91954505099998,44.64256419499999],[-63.92943274599988,44.647853908000066],[-63.902170376999884,44.66648997600005],[-63.89085852799992,44.67979564000008],[-63.88841712099988,44.69635651200004],[-63.90672766799994,44.683661200000174],[-63.925852016999926,44.674709377000156],[-63.98961341099996,44.65582916900003],[-64.00080318899998,44.65534088700004],[-64.05695553299998,44.63882070500016],[-64.06598873599998,44.6342634140001],[-64.06021074099993,44.62124258000004],[-64.06191972599993,44.58665599200013],[-64.05260169199988,44.579657294000135],[-64.03669186099995,44.57090892100017],[-64.02497311099998,44.55068594000014],[-64.01134192599994,44.51133860900016],[-64.04124915299991,44.52260976800015],[-64.05557206899991,44.50885651200004],[-64.06387285099987,44.48761627800015],[-64.0758357409999,44.47662995000009],[-64.0970759759999,44.474717515000044],[-64.10619055899988,44.47760651200015],[-64.11750240799995,44.48745351800009],[-64.12364661399994,44.51561107000008],[-64.12401282499988,44.52187734600003],[-64.11876380099997,44.53750234600001],[-64.12804114499994,44.55491771000008],[-64.14484615799995,44.570217190000115],[-64.16218014199993,44.579657294000135],[-64.17808997299994,44.58213939000008],[-64.19762122299991,44.580308335],[-64.21149654899992,44.57135651200015],[-64.21056067599994,44.552313544000164],[-64.22736568899994,44.53701406500004],[-64.25275631399994,44.543768622000144],[-64.28083248599995,44.55817291900002],[-64.30553137899994,44.565985419000114],[-64.30068925699987,44.560899156000076],[-64.29255123599995,44.54547760600015],[-64.30386308499993,44.54262929900001],[-64.30483964799993,44.53603750200013],[-64.30125891799995,44.52651601800015],[-64.29873613199993,44.515041408],[-64.3013402989999,44.502590236000074],[-64.30801347599986,44.49229564000016],[-64.31688391799992,44.48371002800015],[-64.32603919199991,44.47662995000009],[-64.31773841099994,44.476426499000056],[-64.29873613199993,44.46979401200014],[-64.31041419199991,44.46491120000009],[-64.35391191299996,44.45612213700003],[-64.35366777299993,44.44513580900017],[-64.34390214799987,44.43760814000002],[-64.3356013659999,44.4291039080001],[-64.33971106699994,44.41514720300002],[-64.29686438699986,44.41705963700018],[-64.27529863199996,44.41543203300016],[-64.25772050699993,44.408921617000075],[-64.27501380099991,44.40713125200007],[-64.28823808499995,44.40094635600009],[-64.29987545499995,44.39329661699999],[-64.31236731699997,44.38719310099999],[-64.31236731699997,44.381008205000015],[-64.26065019399994,44.380275783000094],[-64.23558508999994,44.376613674000126],[-64.21056067599994,44.36733633000007],[-64.2279353509999,44.360500393000066],[-64.24620520699997,44.361314194999984],[-64.28164628799988,44.36733633000007],[-64.34715735599991,44.36733633000007],[-64.34715735599991,44.360500393000066],[-64.33971106699994,44.35606517100008],[-64.33576412699995,44.34983958500014],[-64.33568274599989,44.341864325000174],[-64.33971106699994,44.332586981000034],[-64.32583574099996,44.33014557500009],[-64.31517493399991,44.32379791900014],[-64.30504309799997,44.32037995000014],[-64.29255123599995,44.326320705000064],[-64.29771887899994,44.32933177299999],[-64.30728105399996,44.3370222030001],[-64.31236731699997,44.339992580000015],[-64.30166581899994,44.34312571800008],[-64.29112708199989,44.3412946640001],[-64.26455644399994,44.332586981000034],[-64.28970292899993,44.303778387000094],[-64.2888077459999,44.29913971600016],[-64.23729407499985,44.29913971600016],[-64.26903235599991,44.26707591400019],[-64.28661048099994,44.258612372000144],[-64.30553137899994,44.271795966000084],[-64.31236731699997,44.264308986000046],[-64.33055579299986,44.27635325700014],[-64.33922278599997,44.283758856000034],[-64.34715735599991,44.29222239800007],[-64.33751380099994,44.297674872000115],[-64.33348548099988,44.29913971600016],[-64.40892493399991,44.32851797100007],[-64.42906653599997,44.339992580000015],[-64.41852779899992,44.32623932500009],[-64.40160071499992,44.31297435100008],[-64.38215084499993,44.30304596600014],[-64.36388098899994,44.29913971600016],[-64.35903886599996,44.29564036699999],[-64.35728919199997,44.28766510600003],[-64.35789954299995,44.27846914300015],[-64.3601781889999,44.271795966000084],[-64.36750240799992,44.26414622600008],[-64.42564856699994,44.23387278900016],[-64.43122311099994,44.225572007],[-64.43439693899991,44.207749742000104],[-64.43960527299993,44.19912344],[-64.44888261599988,44.1931013040001],[-64.46922766799987,44.18736399900003],[-64.47744706899996,44.18235911699999],[-64.48302161399988,44.174139716000084],[-64.49791419199994,44.140773830000015],[-64.51390540299994,44.14940013200011],[-64.52261308499989,44.152492580000015],[-64.53148352799988,44.15444570500016],[-64.53571529899997,44.155991929],[-64.54352779899997,44.16079336100007],[-64.54918372299997,44.16193268400012],[-64.55215410099987,44.159654039000046],[-64.5550837879999,44.149969794000086],[-64.5593969389999,44.14826080900018],[-64.59434973899991,44.15794505400005],[-64.60619055899988,44.158596096000096],[-64.60041256399992,44.14826080900018],[-64.60582434799994,44.14541250200013],[-64.6095271479999,44.14288971600003],[-64.61384029899992,44.141099351000044],[-64.62083899599989,44.140773830000015],[-64.59951738199993,44.13507721600003],[-64.57481848899994,44.13377513200014],[-64.55426998599998,44.130031643],[-64.54576575399994,44.117254950000145],[-64.54991614499991,44.099839585],[-64.56094316299993,44.079982815000086],[-64.57648678299995,44.06924062700007],[-64.59414628799996,44.07941315300012],[-64.62144934799993,44.06476471600011],[-64.64915930899994,44.05894603100013],[-64.71703040299991,44.05882396],[-64.70539303299992,44.045721747000115],[-64.68663489499994,44.04185618700002],[-64.66942298099994,44.03546784100008],[-64.66177324099989,44.014471747000144],[-64.66698157499991,43.997870184000085],[-64.67992102799991,43.99298737200003],[-64.69668535099993,43.990139065000065],[-64.71361243399991,43.980047919000114],[-64.73119055899994,43.96348704600014],[-64.74453691299996,43.957831122000144],[-64.80650794199991,43.956773179],[-64.81566321499989,43.95408763200011],[-64.8194473949999,43.94586823100003],[-64.82192949099992,43.93667226800015],[-64.82843990799995,43.93097565300015],[-64.83747311099995,43.92853424700003],[-64.84740149599995,43.929103908],[-64.8333227199999,43.913885809000035],[-64.79710852799988,43.89488353100002],[-64.78595943899995,43.874497789000046],[-64.80182857999988,43.876328843000024],[-64.81395423099988,43.87409088700004],[-64.81883704299986,43.866563218000074],[-64.81261145699992,43.85285065300015],[-64.82957923099988,43.844956772999986],[-64.8345841139999,43.83429596600014],[-64.83897864499991,43.82965729400003],[-64.85423743399988,43.83974844000009],[-64.85920162699992,43.845689195000105],[-64.86803137899997,43.86066315300003],[-64.87409420499998,43.86705149900014],[-64.88341223899991,43.87287018400012],[-64.89329993399994,43.87681712400011],[-64.90392005099997,43.879299221000124],[-64.91502844999991,43.880723374000084],[-64.90998287699998,43.87091705900015],[-64.89509029899992,43.85553620000003],[-64.88833574099988,43.84658437700001],[-64.88573157499988,43.83885325699999],[-64.88459225199995,43.82212962400014],[-64.88149980399996,43.811835028000026],[-64.90660559799994,43.80499909100003],[-64.92430579299986,43.82282135600009],[-64.93765214799987,43.84902578300013],[-64.94981848899994,43.86705149900014],[-64.96678626199991,43.87364329600005],[-64.96393795499998,43.86050039300006],[-64.93512936099995,43.81264883000016],[-64.93248450399994,43.80626048400004],[-64.93512936099995,43.79918040600007],[-64.94896399599995,43.77525462400011],[-64.95824133999992,43.76577383],[-64.97008216099997,43.758937893000095],[-64.98395748599995,43.75787995000003],[-64.99714107999989,43.76959870000012],[-65.02041581899991,43.81696198100015],[-65.03917395699997,43.832342841000084],[-65.0377498039999,43.815985419000086],[-65.01870683499989,43.770860093000024],[-65.01598059799994,43.758408921000104],[-65.01447506399998,43.742539781000076],[-65.01659094999991,43.727158921000054],[-65.02497311099995,43.71621328300007],[-65.03441321499989,43.71230703300007],[-65.03677324099993,43.71539948100014],[-65.0376684239999,43.72081126500011],[-65.0428767569999,43.72370026200004],[-65.05284583199992,43.72052643400014],[-65.05858313699989,43.71348704600011],[-65.06065833199989,43.70640696800014],[-65.05968176999991,43.70319245000009],[-65.07697506399992,43.710760809000035],[-65.07306881399992,43.744981187000015],[-65.08698482999992,43.75787995000003],[-65.09630286399994,43.736192124000134],[-65.12315833199995,43.69676341400016],[-65.12857011599988,43.67466868700008],[-65.15123450399994,43.689113674000126],[-65.14683997299994,43.7065290390001],[-65.13658606699994,43.72711823100006],[-65.14159094999988,43.75104401200009],[-65.1612442699999,43.71564362200009],[-65.16954505099991,43.70937734600015],[-65.17845618399994,43.7100690780001],[-65.18708248599995,43.71588776200004],[-65.19367428299991,43.72447337400014],[-65.20075436099998,43.75104401200009],[-65.21174068899992,43.77204010600015],[-65.2252498039999,43.791815497000165],[-65.23786373599998,43.80556875200009],[-65.24030514199993,43.79824453300007],[-65.24233964799994,43.795233466000084],[-65.2420955069999,43.792141018],[-65.23786373599998,43.78449127800015],[-65.25470943899998,43.77570221600011],[-65.24913489499987,43.754706122000144],[-65.22459876199986,43.718817450000145],[-65.24010169199997,43.69468821800014],[-65.25035559799991,43.67340729400017],[-65.26353919199994,43.67080312700006],[-65.28929602799988,43.67466868700008],[-65.32721920499992,43.69639720300016],[-65.32778886599988,43.70954010600012],[-65.31602942599991,43.732814846000124],[-65.31354732999998,43.74355703300013],[-65.31725012899992,43.760484117000125],[-65.32298743399988,43.76544830900017],[-65.33088131399995,43.763047593000024],[-65.34080969999988,43.75787995000003],[-65.34504146999988,43.75079987200014],[-65.34630286399991,43.74152252800012],[-65.35147050699989,43.73680247600011],[-65.36754309799997,43.74355703300013],[-65.35496985599988,43.716050523000106],[-65.3414607409999,43.69346751500005],[-65.33429928299998,43.670314846000096],[-65.34080969999988,43.641180731000034],[-65.34142005099991,43.63434479400002],[-65.34048417899992,43.62514883000012],[-65.3406469389999,43.61725495000017],[-65.34422766799989,43.61383698100015],[-65.35448157499991,43.61066315300009],[-65.35806230399987,43.60358307500003],[-65.35655676999991,43.59650299700017],[-65.35106360599988,43.593329169000114],[-65.34605872299994,43.58738841400016],[-65.34080969999988,43.5449079450001],[-65.36253821499993,43.574937242000075],[-65.37124589799993,43.579087632000025],[-65.38149980399996,43.576564846000096],[-65.39191646999984,43.566555080000015],[-65.40168209499987,43.56541575700008],[-65.41588294199988,43.57135651200009],[-65.4422094389999,43.592922268],[-65.45689856699991,43.599514065000065],[-65.45689856699991,43.593329169000114],[-65.41295325399997,43.5388044290001],[-65.40973873599992,43.52916087400014],[-65.40778561099995,43.51878489800005],[-65.40168209499987,43.50397370000009],[-65.41616777299993,43.50006745000009],[-65.42243404899997,43.511297919000086],[-65.42894446499989,43.5449079450001],[-65.43952389199993,43.55723704600014],[-65.45010331899996,43.56045156500004],[-65.45563717399989,43.55597565300014],[-65.45067298099994,43.5449079450001],[-65.45543372299994,43.53473541900017],[-65.46263587099988,43.52757396000011],[-65.47232011599992,43.52399323100015],[-65.48424231699997,43.52448151200004],[-65.47411048099991,43.50377024900003],[-65.47142493399994,43.493801174000126],[-65.47057044199994,43.48004791900002],[-65.47484290299985,43.47093333500014],[-65.48424231699997,43.471909898000106],[-65.49364173099991,43.48033274900014],[-65.49791419199991,43.493394273000135],[-65.50401770699989,43.502834377000156],[-65.54255123599998,43.52789948100015],[-65.5467830069999,43.53229401200003],[-65.55036373599995,43.537502346000124],[-65.55166581899996,43.543036200000145],[-65.54564368399986,43.55597565300014],[-65.54987545499998,43.561346747000115],[-65.55650794199994,43.5653343770001],[-65.55992591099997,43.56915924700009],[-65.56598873599995,43.57404205900015],[-65.57949785099993,43.56541575700008],[-65.61294511599986,43.53620026200004],[-65.64867102799991,43.51764557500003],[-65.65269934799989,43.51280345300013],[-65.65420488199993,43.50714752800015],[-65.65794837099989,43.501572984000134],[-65.66917883999989,43.49713776200015],[-65.66771399599992,43.50010814000008],[-65.67446855399996,43.50454336100016],[-65.68968665299994,43.510809637000094],[-65.71930904899997,43.50889720300013],[-65.72956295499989,43.51349518400018],[-65.73810787699992,43.531317450000145],[-65.73053951699995,43.54677969000009],[-65.73159745999993,43.56273021],[-65.7395727199999,43.57672760600015],[-65.75234941299993,43.58653392100008],[-65.75251217399989,43.57632070500013],[-65.75177975199995,43.56915924700009],[-65.7494197259999,43.56370677300008],[-65.74494381399992,43.55857982000005],[-65.74771074099989,43.554836330000015],[-65.75084387899997,43.55280182500009],[-65.75438391799985,43.551662502000156],[-65.75853430899987,43.55113353100007],[-65.77814693899995,43.568182684000035],[-65.78184973899991,43.58738841400016],[-65.77220618399994,43.641180731000034],[-65.77155514199998,43.668809312000135],[-65.77375240799998,43.68081289300006],[-65.77904212099995,43.68895091400015],[-65.78880774599989,43.6910667990001],[-65.79491126199989,43.68260325700005],[-65.80011959499986,43.668687242000075],[-65.80699622299997,43.65477122599999],[-65.79637610599993,43.646348374000056],[-65.79234778599997,43.633937893],[-65.79381262899992,43.619940497000144],[-65.7995499339999,43.6063500020001],[-65.81480872299997,43.63157786700005],[-65.81700598899997,43.65696849199999],[-65.81566321499989,43.68272532800002],[-65.81997636599988,43.70937734600015],[-65.82510331899988,43.71841054900007],[-65.84064693899998,43.73867422100007],[-65.8479711579999,43.75104401200009],[-65.85289466099997,43.76422760600015],[-65.86164303299992,43.80556875200009],[-65.86847896999986,43.80556875200009],[-65.86823482999992,43.78709544500008],[-65.86620032499988,43.77903880400014],[-65.86164303299992,43.770860093000024],[-65.87718665299994,43.76959870000012],[-65.88890540299991,43.783758856000034],[-65.89899654899989,43.80345286699999],[-65.90941321499989,43.81924062700013],[-65.92438717399992,43.826808986000074],[-65.93716386599996,43.82599518400015],[-65.94127356699991,43.81989166900017],[-65.92992102799994,43.811835028000026],[-65.92992102799994,43.80556875200009],[-65.95669511599993,43.785386460000055],[-65.97134355399993,43.78009674700009],[-65.97765051999988,43.794785874000084],[-65.97883053299992,43.802110093000074],[-65.98395748599992,43.81944407800007],[-65.98721269399996,43.83921946800011],[-65.99193274599989,43.84902578300013],[-65.99665279899989,43.85407135600015],[-65.99876868399991,43.84967682500008],[-66.00401770699997,43.831691799000126],[-66.00499426999994,43.825506903000175],[-66.00475012899992,43.81631094],[-66.00365149599985,43.809719143000116],[-66.00169837099992,43.804185289000095],[-65.97435462099995,43.75063711100002],[-65.96336829299989,43.737290757],[-65.97321529899992,43.714260158000016],[-65.97960364499994,43.70595937700013],[-65.9913223949999,43.70319245000009],[-65.98314368399991,43.7194684920001],[-65.98379472599996,43.72931549700002],[-65.99160722599996,43.73110586100002],[-66.00499426999994,43.72370026200004],[-66.00690670499992,43.716945705000015],[-66.00548255099994,43.707831122000115],[-66.00641842399992,43.69985586100016],[-66.01524817599989,43.69639720300016],[-66.02379309799991,43.69806549700017],[-66.0281469389999,43.702297268000095],[-66.02871660099987,43.70864492400004],[-66.02611243399988,43.71621328300007],[-66.03229732999995,43.71621328300007],[-66.03087317599997,43.73668040600013],[-66.04214433499996,43.746405341000084],[-66.05553137899994,43.74087148600016],[-66.06021074099988,43.71621328300007],[-66.07420813699994,43.72931549700002],[-66.07730058499992,43.74058665600005],[-66.07323157499988,43.76772695500013],[-66.07941646999984,43.77236562700007],[-66.09308834499987,43.76646556200013],[-66.10728919199988,43.755031643000095],[-66.11485755099994,43.74355703300013],[-66.12169348899994,43.74355703300013],[-66.13365637899997,43.809719143000116],[-66.1197810539999,43.82453034100011],[-66.11339270699997,43.836004950000145],[-66.11115475199989,43.847520249000084],[-66.11827551999994,43.85285065300015],[-66.12848873599998,43.84951406500012],[-66.13585364499997,43.84194570500007],[-66.14232337099989,43.83287181200008],[-66.1495662099999,43.825506903000175],[-66.14781653599991,43.840073960000026],[-66.14924068899997,43.85244375200013],[-66.15591386599992,43.85997142100011],[-66.17007402299996,43.86025625200013],[-66.16616777299994,43.87042877800017],[-66.16714433499993,43.87946198100009],[-66.16966712099995,43.88735586100016],[-66.17007402299996,43.89439524900003],[-66.16559811099997,43.903794664000074],[-66.15233313699986,43.92413971600014],[-66.1495662099999,43.93223704600008],[-66.15367591099994,43.94717031500012],[-66.16071529899992,43.96092357000005],[-66.16291256399992,43.97565338700004],[-66.14875240799998,44.002549546000104],[-66.15025794199994,44.010402736000074],[-66.15583248599995,44.0216332050001],[-66.15782630099987,44.02354564000014],[-66.18342037699995,44.08405182500006],[-66.19432532499994,44.092596747000144],[-66.21043860599991,44.085557359000106],[-66.21031653599994,44.10569896000014],[-66.19465084499987,44.14272695500007],[-66.19058183499989,44.16535065300003],[-66.18765214799988,44.171210028000175],[-66.15868079299989,44.20054759300008],[-66.15257727799991,44.20905182500012],[-66.14216061099992,44.230780341000084],[-66.1136775379999,44.34336985900005],[-66.09496008999994,44.374172268],[-66.06289628799996,44.39345937700013],[-66.04674231699991,44.406642971000096],[-66.03970292899993,44.425401109000134],[-66.0325414699999,44.436753648000106],[-65.9659724599999,44.48924388200008],[-65.92772376199994,44.506170966000134],[-65.88878333199995,44.53245677300008],[-65.86676998599995,44.54336172100015],[-65.84788977799991,44.55650462400011],[-65.84048417899993,44.573391018],[-65.84911048099994,44.5868187520001],[-65.86847896999986,44.58755117400003],[-65.91315670499992,44.579657294000135],[-65.92369544199997,44.58128489800008],[-65.93297278599994,44.583807684000085],[-65.94253495999989,44.583400783000066],[-66.02843176999994,44.52061595300001],[-66.18724524599989,44.394598700000174],[-66.19676673099988,44.39093659100003],[-66.19229081899991,44.41746653900016],[-66.18032792899987,44.434434312000135],[-65.99876868399991,44.579657294000135],[-65.88890540299991,44.63076406500012],[-65.8746638659999,44.64313385600014],[-65.78587805899988,44.69635651200004],[-65.77269446499992,44.685777085],[-65.76305091099994,44.67234935099999],[-65.75633704299992,44.65729401200018],[-65.75234941299993,44.641709703000075],[-65.75373287699992,44.63198476800012],[-65.75698808499996,44.6205101580001],[-65.75706946499994,44.61090729400003],[-65.74864661399988,44.606919664000046],[-65.72960364499988,44.60919830900012],[-65.71019446499989,44.61375560100005],[-65.69229081899994,44.620713609000134],[-65.68004309799994,44.62864817900011],[-65.65611731699991,44.647853908000066],[-65.62498938699991,44.66648997600005],[-65.61241614499991,44.67780182500003],[-65.60155188699991,44.69635651200004],[-65.59410559799994,44.68886953300007],[-65.53673255099991,44.73663971600002],[-65.52236894399994,44.744045315],[-65.49413001199987,44.74868398600013],[-65.45091712099989,44.77061595300016],[-65.42894446499989,44.7782250020001],[-65.44725501199993,44.781073309000035],[-65.49254309799994,44.75812409100014],[-65.53514563699989,44.74697500200013],[-65.61534583199992,44.70913320500007],[-65.65396074099989,44.698065497000144],[-65.67634029899992,44.69635651200004],[-65.71727454299995,44.674424546000026],[-65.74176998599998,44.66783274900014],[-65.75853430899987,44.682684637000094],[-65.72345943899992,44.72744375200012],[-65.62124589799987,44.77887604400014],[-65.45689856699991,44.85460032800002],[-65.39761308499993,44.894883531000104],[-65.37840735599988,44.90110911700005],[-65.35826575399992,44.90436432500009],[-65.23167883999992,44.95518626500014],[-65.21328691299988,44.96690501500002],[-65.18053137899994,44.99323151200004],[-65.02212480399993,45.060166734000134],[-64.8631892569999,45.13955312700007],[-64.71401933499993,45.19236888200005],[-64.6441137359999,45.2008324240001],[-64.57551021999987,45.21963125200012],[-64.51065019399987,45.228583075000174],[-64.47496497299994,45.24030182500014],[-64.44115149599986,45.25576406500009],[-64.41539466099994,45.271633205000015],[-64.39533443899995,45.301621812000164],[-64.41755123599992,45.31964752800009],[-64.45933997299993,45.32916901200009],[-64.49791419199994,45.33380768400012],[-64.47777258999989,45.34113190300003],[-64.45616614499988,45.33873118700008],[-64.41539466099994,45.32632070500016],[-64.34870357999995,45.31944407800013],[-64.32974199099993,45.30955638200014],[-64.31843014199995,45.294907945000105],[-64.3204646479999,45.282945054],[-64.33055579299986,45.272284247000144],[-64.34337317599989,45.26146067900005],[-64.35155188699991,45.248114325000145],[-64.35912024599995,45.21336497599999],[-64.36754309799991,45.19660065300017],[-64.35244706899991,45.18520742400001],[-64.35700436099995,45.170762437000135],[-64.37193762899989,45.15729401200015],[-64.38805091099997,45.14878978100013],[-64.36733964799996,45.126125393000095],[-64.36241614499988,45.116115627],[-64.36754309799991,45.10781484600003],[-64.35659745999993,45.10398997600011],[-64.34552975199989,45.10586172100006],[-64.33690344999991,45.112941799000126],[-64.33348548099988,45.12457916900005],[-64.33161373599992,45.13589101800012],[-64.32603919199991,45.141994533000016],[-64.31725012899994,45.14557526200018],[-64.30553137899994,45.14878978100013],[-64.22345943899995,45.108384507],[-64.15160071499989,45.04979075700005],[-64.14907792899994,45.03872304900001],[-64.15534420499992,44.983710028000026],[-64.14728756399998,44.99770742400001],[-64.13585364499991,45.00324127800003],[-64.12205969999991,45.00254954600008],[-64.10692298099991,44.99795156500015],[-64.11632239499993,45.011379299000126],[-64.1190486319999,45.02989329600014],[-64.11416581899994,45.046210028000175],[-64.10069739499994,45.05320872600005],[-64.10069739499994,45.05939362200002],[-64.11949622299991,45.062079169000114],[-64.13654537699995,45.0729027360001],[-64.18382727799991,45.11432526200012],[-64.19741777299987,45.132554429],[-64.19933020699992,45.14866771000005],[-64.16588294199997,45.15940989799999],[-64.1639705069999,45.16828034100003],[-64.16633053299995,45.1783714860001],[-64.16559811099992,45.18602122600011],[-64.15770423099987,45.19188060100008],[-64.13927161399994,45.20001862200009],[-64.1307673819999,45.20652903900016],[-64.11506100199992,45.21605052300007],[-64.02432206899994,45.24144114799999],[-63.96288001199985,45.25112539300015],[-63.90583248599995,45.275783596000146],[-63.884673631999924,45.27912018400017],[-63.846506313999974,45.277167059000035],[-63.825306769999884,45.27960846600014],[-63.808990037999955,45.288723049000154],[-63.80402584499989,45.2988141950001],[-63.8041072259999,45.30630117400009],[-63.801421678999894,45.31102122599999],[-63.78819739499996,45.312648830000015],[-63.76040605399991,45.31126536700005],[-63.74828040299991,45.30744049700002],[-63.73692786399993,45.29962799700003],[-63.73033606699997,45.305487372000165],[-63.71979732999989,45.32212962400002],[-63.71589107999992,45.32632070500016],[-63.70811926999992,45.32640208500013],[-63.67491614499988,45.32013580900018],[-63.57872473899994,45.322333075000174],[-63.54308020699989,45.33169179900001],[-63.5240779289999,45.33380768400012],[-63.50450598899993,45.32868073100009],[-63.49258378799988,45.31696198100011],[-63.482777472999935,45.303290106000176],[-63.469471808999934,45.292141018000066],[-63.460926886999914,45.32501862200014],[-63.43309485599985,45.34487539300006],[-63.39614824099991,45.35561758000007],[-63.36021887899992,45.3610700540001],[-63.39167232999995,45.37164948100015],[-63.507313605999876,45.37474192900005],[-63.52867591099994,45.37783437700012],[-63.57115637899991,45.39166901200004],[-63.59300696499995,45.39516836100002],[-63.81578528599987,45.39516836100002],[-63.833851691999904,45.392075914000046],[-63.84886633999994,45.38458893400015],[-63.874134894999884,45.367295640000165],[-63.88048255099991,45.361883856000034],[-63.88491777299989,45.35626862200003],[-63.89085852799992,45.3528913430001],[-63.90147864499997,45.35423411699999],[-63.91047115799998,45.3588727890001],[-63.91462154899991,45.36522044500005],[-63.913929816999875,45.37287018400018],[-63.908314581999974,45.381496486000074],[-63.936634894999905,45.39850495000014],[-64.01378333199997,45.390448309000114],[-64.05231686099995,45.39516836100002],[-64.04230709499987,45.40053945500007],[-64.03799394399996,45.402004299000126],[-64.06598873599998,45.4129906270001],[-64.10533606699988,45.4151472030001],[-64.18260657499991,45.40884023600016],[-64.24388587099992,45.39468008000013],[-64.27586829299992,45.392075914000046],[-64.31236731699997,45.402004299000126],[-64.31452389199995,45.381944078000075],[-64.3221736319999,45.37999095300013],[-64.33364824099993,45.38580963700018],[-64.34715735599991,45.38898346600014],[-64.35895748599998,45.38633860900016],[-64.36974036399991,45.381496486000074],[-64.37946529899995,45.374986069999984],[-64.38805091099997,45.367295640000165],[-64.39981035099993,45.37287018400018],[-64.43590247299989,45.381496486000074],[-64.4457087879999,45.38804759300017],[-64.45140540299991,45.39468008000013],[-64.45881100199998,45.399969794000114],[-64.57616126199991,45.41563548400008],[-64.61998450399997,45.40851471600002],[-64.67251542899993,45.38902415600013],[-64.70702063699994,45.360581773000106],[-64.69660396999986,45.32632070500016],[-64.71743730399993,45.32461172100015],[-64.73253333199995,45.31614817900011],[-64.74510657499994,45.30613841400013],[-64.75865637899989,45.29962799700003],[-64.76817786399987,45.29726797100007],[-64.76842200399992,45.29791901200004],[-64.76707923099994,45.30259837400014],[-64.7716365229999,45.312648830000015],[-64.7728572259999,45.31777578300013],[-64.76659094999985,45.32510000200013],[-64.76821855399987,45.329982815],[-64.77399654899995,45.333156643000066],[-64.78636633999989,45.33209870000011],[-64.79214433499993,45.33380768400012],[-64.82274329299986,45.34796784100014],[-64.85985266799989,45.35301341400016],[-64.89745032499988,45.34650299700009],[-64.92931067599989,45.32632070500016],[-64.93569902299993,45.3512230490001],[-64.92870032499994,45.38304271000011],[-64.91519120999996,45.41242096600002],[-64.9020076159999,45.429999091000134],[-64.85391191299993,45.457261460000055],[-64.83897864499991,45.45905182500003],[-64.81493079299986,45.467596747000144],[-64.7996313139999,45.470851955000015],[-64.83311926999994,45.48399485900016],[-64.70641028599988,45.53685130400014],[-64.68089758999989,45.542547919000114],[-64.66331946499986,45.556504624000084],[-64.6487930979999,45.55906810099999],[-64.64537512899992,45.58633047100007],[-64.61359615799995,45.602687893],[-64.57282467399989,45.615342515000165],[-64.54234778599994,45.63165924700009],[-64.51333574099996,45.65684642100014],[-64.4842830069999,45.67637767100014],[-64.47671464799993,45.679103908000016],[-64.46251380099991,45.68105703300015],[-64.45702063699989,45.68317291900017],[-64.44859778599994,45.69057851800015],[-64.43765214799987,45.704250393000095],[-64.42906653599997,45.7098656270001],[-64.43675696499989,45.72520579600014],[-64.43907630099994,45.73851146000005],[-64.43211829299986,45.74787018400009],[-64.41197669199991,45.751532294000135],[-64.39810136599993,45.75625234600015],[-64.38589433499996,45.76764557500003],[-64.37889563699989,45.78115469],[-64.38060462099989,45.7923851580001],[-64.30553137899994,45.826564846000096],[-64.29303951699995,45.81578196800008],[-64.29442298099991,45.80503978100016],[-64.31236731699997,45.78563060100005],[-64.3190811839999,45.781317450000145],[-64.32603919199991,45.779933986000074],[-64.33136959499987,45.77716705900012],[-64.33348548099988,45.76854075700011],[-64.33153235599994,45.76325104400003],[-64.3282771479999,45.75958893400018],[-64.32770748599992,45.75446198100015],[-64.33348548099988,45.744614976000044],[-64.31672115799995,45.755682684000085],[-64.30308997299991,45.76186758000016],[-64.28746497299994,45.764512437000135],[-64.26455644399994,45.7651227890001],[-64.26952063699989,45.774155992000104],[-64.27892005099991,45.778631903000175],[-64.29141191299993,45.77960846600014],[-64.30553137899994,45.778794664000046],[-64.29385331899996,45.78400299700003],[-64.28282630099991,45.793524481000034],[-64.27452551999994,45.80451080900009],[-64.27074133999992,45.813544012000094],[-64.27110755099991,45.830633856000034],[-64.27623450399994,45.84178294500008],[-64.32160396999984,45.87783437700001],[-64.33470618399991,45.88511790600013],[-64.34715735599991,45.8886579450001],[-64.3614802729999,45.88507721600014],[-64.36595618399988,45.87596263200005],[-64.35912024599995,45.86806875200007],[-64.33971106699994,45.86815013200005],[-64.33971106699994,45.86070384300008],[-64.36900794199997,45.84674713700012],[-64.41954505099997,45.79116445500007],[-64.44640051999994,45.778794664000046],[-64.46418209499984,45.77277252800003],[-64.47150631399995,45.75844961100013],[-64.47484290299988,45.74160390800013],[-64.48086503799988,45.727891343000024],[-64.49498450399992,45.72101471600011],[-64.51390540299994,45.720607815],[-64.53254146999993,45.72483958500011],[-64.54576575399994,45.731594143000066],[-64.52627519399996,45.74253978100004],[-64.50853430899988,45.76618073100015],[-64.4955134759999,45.79368724199999],[-64.49054928299992,45.81671784100014],[-64.49620520699992,45.82477448100009],[-64.52301998599992,45.83974844000012],[-64.53148352799988,45.84703196800013],[-64.53620357999998,45.861476955],[-64.53575598899997,45.87384674700005],[-64.53148352799988,45.902248440000065],[-64.54841061099995,45.88361237200009],[-64.56090247299994,45.87872955900012],[-64.5724177729999,45.88560618700002],[-64.62979081899991,45.95449453300007],[-64.6487930979999,45.97056712400014],[-64.67003333199989,45.98314036700005],[-64.67878170499998,45.99095286700005],[-64.68228105399996,46.00161367400007],[-64.68301347599989,46.025458075000145],[-64.68521074099988,46.03620026200015],[-64.68976803299992,46.04629140800012],[-64.70396887899994,46.06216054900007],[-64.72606360599994,46.07908763200005],[-64.7486873039999,46.08991120000003],[-64.76488196499994,46.08726634300014],[-64.7102758449999,46.049627997000144],[-64.69660396999986,46.0326195330001],[-64.70567786399994,46.017889716000106],[-64.70799719999991,46.00804271],[-64.70372473899991,45.99937571800008],[-64.69318600199995,45.98826732000008],[-64.66860917899993,45.97056712400014],[-64.66405188699987,45.964911200000145],[-64.65656490799992,45.952948309000035],[-64.65221106699991,45.95075104400014],[-64.6354060539999,45.94521719000012],[-64.62608801999997,45.931992906000076],[-64.61339270699992,45.902248440000065],[-64.60163326699993,45.89061107000007],[-64.57868404899995,45.87270742400001],[-64.5724177729999,45.86070384300008],[-64.58543860599987,45.82591380400014],[-64.61318925699996,45.80036041900014],[-64.64647376199986,45.77765534100011],[-64.6760961579999,45.751532294000135],[-64.66649329299992,45.745917059000064],[-64.64989173099985,45.73037344000015],[-64.64134680899994,45.724188544000164],[-64.65343176999994,45.72056712400003],[-64.67617753799988,45.72618235900002],[-64.68976803299992,45.724188544000164],[-64.69676673099991,45.71580638200011],[-64.70775305899988,45.68895091400013],[-64.71361243399991,45.68317291900017],[-64.72915605399993,45.673325914000046],[-64.75625566299993,45.62779368700008],[-64.7716365229999,45.614325262000094],[-64.78477942599993,45.61318594000006],[-64.79027258999989,45.61871979400008],[-64.79515540299994,45.6273054060001],[-64.80646725199992,45.63540273600002],[-64.81761633999994,45.63743724200005],[-64.88280188699986,45.63361237200003],[-64.90477454299989,45.62824127800017],[-64.92442786399994,45.61969635600015],[-64.94298255099994,45.60805898600013],[-64.99449622299991,45.55906810099999],[-65.0152888659999,45.55284251500002],[-65.03522701699998,45.5504417990001],[-65.18431555899988,45.51040273600013],[-65.31505286399994,45.459214585],[-65.48916581899994,45.37164948100015],[-65.51939856699994,45.36461009300008],[-65.52916419199997,45.357733466000084],[-65.53620357999995,45.34800853100013],[-65.53880774599995,45.33714427300005],[-65.54499264199993,45.3295759140001],[-65.55915279899995,45.32481517100011],[-65.6185603509999,45.315659898000106],[-65.6288142569999,45.312648830000015],[-65.66071529899992,45.29454173400002],[-65.69749915299991,45.285223700000145],[-65.73298092399992,45.25328196800014],[-65.75234941299993,45.24437083500011],[-65.76134192599994,45.247178453000075],[-65.78254146999984,45.26186758000007],[-65.79332434799993,45.26487864800008],[-65.80406653599997,45.260117906000076],[-65.82656816299993,45.241685289000046],[-65.85289466099997,45.23301829600014],[-65.88829505099997,45.213853257],[-65.90941321499989,45.21027252800012],[-65.92931067599996,45.21303945500007],[-65.96056067599994,45.22199127800009],[-65.98143469999991,45.22394440300006],[-65.99559485599994,45.23029205900018],[-66.00593014199993,45.24494049700009],[-66.01862545499989,45.271633205000015],[-66.03962154899995,45.285142319999984],[-66.13597571499994,45.312648830000015],[-66.03355872299994,45.37042877800006],[-66.00186113199987,45.39858633000013],[-65.9983617829999,45.406805731000034],[-65.99762936099995,45.41803620000003],[-65.99876868399991,45.43956126500013],[-66.00084387899992,45.44981517100017],[-66.0052791009999,45.45937734600007],[-66.00975501199984,45.4643415390001],[-66.01183020699997,45.46035390800012],[-66.02041581899988,45.44928620000008],[-66.05842037699988,45.422674872000144],[-66.06973222599987,45.40029531500012],[-66.08751380099994,45.37474192900005],[-66.08942623599992,45.37002187700013],[-66.08897864499991,45.36465078300007],[-66.08967037699995,45.35923899900003],[-66.09496008999994,45.35423411699999],[-66.10057532499994,45.354112046000026],[-66.11432857999993,45.360256252],[-66.12169348899994,45.3610700540001],[-66.16413326699993,45.351874091000056],[-66.18541419199991,45.344142971000124],[-66.19676673099988,45.33380768400012],[-66.1931860019999,45.33055247600008],[-66.17690995999988,45.306463934000064],[-66.16637122299991,45.29726797100007],[-66.15440833199997,45.28961823100006],[-66.14159094999985,45.283433335000076],[-66.12848873599998,45.27912018400017],[-66.10651607999993,45.27732982],[-66.08678137899992,45.27830638200005],[-66.07091223899991,45.274481512000065],[-66.06021074099988,45.258042710000055],[-66.08360755099997,45.252305406000076],[-66.11595618399988,45.23672109600009],[-66.14098059799989,45.21808502800009],[-66.14216061099992,45.202785549000126],[-66.1893611319999,45.17780182500003],[-66.19676673099988,45.17234935099999],[-66.20213782499994,45.15949127800015],[-66.21410071499986,45.169582424000126],[-66.23155676999991,45.19660065300017],[-66.24937903599991,45.204657294000114],[-66.27977454299986,45.208604234000106],[-66.31004798099985,45.20482005400007],[-66.32774817599997,45.18976471600014],[-66.30382239499991,45.187160549000154],[-66.27049719999991,45.18976471600014],[-66.24860592399997,45.18528880399999],[-66.25890051999991,45.161769924000126],[-66.28380286399994,45.14996979400014],[-66.34284420499998,45.14439524900014],[-66.35440019399991,45.13141510600015],[-66.35802161399997,45.11660390800007],[-66.36717688699994,45.11489492400007],[-66.37954667899986,45.11652252800008],[-66.39293372299997,45.11123281500012],[-66.41490637899987,45.09284088700018],[-66.42882239499997,45.083726304],[-66.44066321499993,45.07990143400018],[-66.45421301999991,45.07705312700013],[-66.46129309799994,45.07774485900008],[-66.46426347599986,45.08360423400002],[-66.46491451699993,45.098008531000076],[-66.46401933499993,45.1048851580001],[-66.46084550699996,45.10781484600003],[-66.4602758449999,45.1147321640001],[-66.49095618399988,45.15562571800014],[-66.50548255099994,45.14801666900002],[-66.5199275379999,45.14394765800016],[-66.54312089799993,45.141994533000016],[-66.55003821499992,45.14028554900001],[-66.66006425699996,45.08462148600007],[-66.69253495999993,45.07461172100001],[-66.71812903599991,45.07990143400018],[-66.71068274599995,45.08730703300007],[-66.71788489499997,45.090928453000046],[-66.72496497299994,45.09357330900012],[-66.73106848899994,45.07477448100015],[-66.74583899599992,45.064520575000024],[-66.76634680899986,45.06028880400011],[-66.78954016799989,45.05939362200002],[-66.79702714799996,45.06582265800013],[-66.78693600199989,45.08063385600012],[-66.78075110599994,45.09682851800006],[-66.80011959499984,45.10781484600003],[-66.8033748039999,45.093410549000154],[-66.8133031889999,45.08942291900017],[-66.82701575399992,45.08942291900017],[-66.84166419199994,45.08730703300007],[-66.87214107999998,45.065578518],[-66.88890540299991,45.06069570500004],[-66.90868079299992,45.09870026200004],[-66.91104081899988,45.11391836100002],[-66.89940344999988,45.12083567900011],[-66.88524329299995,45.12230052300008],[-66.86229407499985,45.127997137000065],[-66.84788977799988,45.12832265800007],[-66.85570227799988,45.13760000200013],[-66.86974036399994,45.14394765800016],[-66.88565019399994,45.147609768],[-66.89940344999988,45.14878978100013],[-66.91600501199991,45.15468984600007],[-66.9273982409999,45.168198960000055],[-66.93586178299992,45.182033596000124],[-66.94347083199997,45.18976471600014],[-66.95702063699994,45.18907298400002],[-66.97077389199995,45.18199290600013],[-66.98143469999988,45.1710065780001],[-66.98570716099991,45.158758856000034],[-66.99144446499989,45.161769924000126],[-67.0051977199999,45.16665273600002],[-67.0211482409999,45.16836172100001],[-67.04006913999993,45.14382558800018],[-67.03880774599992,45.134263414000095],[-67.04552161399994,45.11717357000005],[-67.04950924399992,45.09642161700004],[-67.04006913999993,45.075628973000065],[-67.06566321499989,45.082546291000156],[-67.0863744779999,45.09764232],[-67.12478593699988,45.14378489799999],[-67.13109290299985,45.15383535400015],[-67.13414466099994,45.16506582200016],[-67.13626054599987,45.196519272999986],[-67.14065507699993,45.20461660400012],[-67.14915930899988,45.20551178600003],[-67.16295325399997,45.19851308800004],[-67.16303463399996,45.21275462400003],[-67.16795813699991,45.22260163000005],[-67.17719479099989,45.22898997599999],[-67.19029700399994,45.233181057000095],[-67.19062252499987,45.21739329600014],[-67.18773352799994,45.20144277600015],[-67.18256588399993,45.18793366100008],[-67.17601477799985,45.17865631700012],[-67.2061662079999,45.18940058600013],[-67.21907059799992,45.19212636300015],[-67.24242834499995,45.20256500300009],[-67.25498571899996,45.205045472000066],[-67.26733638499994,45.20251332600016],[-67.27720658399991,45.195071920000075],[-67.27922196499995,45.187372131000146],[-67.27958369999996,45.17905222600011],[-67.28464798999994,45.16969879200015],[-67.31921952299993,45.153885804000154],[-67.35627152599992,45.16592641200005],[-67.390533,45.193108216000105],[-67.42758500199997,45.23656809500012],[-67.47130326399994,45.26628204400011],[-67.47502396699988,45.28235341400007],[-67.46866776599992,45.301835429000064],[-67.45905594899992,45.31842356400007],[-67.43456131999996,45.35030792300013],[-67.42882523699993,45.38704986600011],[-67.48231034399994,45.45552113900011],[-67.4932140709999,45.493141581000046],[-67.46753088399993,45.50828277600006],[-67.44303625499997,45.522183736000144],[-67.42618973799998,45.53344919900009],[-67.4221073,45.56879587800002],[-67.43130570499997,45.59794138600002],[-67.44996089699995,45.61080881700012],[-67.47579911299997,45.6129792280001],[-67.50639156199989,45.60982696600014],[-67.55186682099995,45.61044708300003],[-67.60752233899987,45.62005890000013],[-67.6603356529999,45.63737050400012],[-67.69077307099988,45.65380360900009],[-67.70482906099991,45.66419057200012],[-67.71046179199993,45.67540435800008],[-67.7173864339999,45.68537791000007],[-67.72798010299991,45.69225087500014],[-67.73552486199995,45.690752258000046],[-67.74074418099988,45.683620911],[-67.74803055899994,45.67778147400009],[-67.76177648899997,45.680106913000046],[-67.7861160889999,45.69121734600016],[-67.80012040199996,45.699847311000106],[-67.80704504399998,45.71286977200004],[-67.81112748299998,45.76650990800012],[-67.80626989799995,45.78175445600005],[-67.79412593599997,45.79916941300009],[-67.7798632409999,45.815705872000095],[-67.77283524599997,45.82805654000005],[-67.77609086199996,45.84082061800002],[-67.79262731899988,45.858907370000125],[-67.79924190299997,45.87565053400009],[-67.78735632399992,45.89001658100007],[-67.76942460199987,45.903969218000086],[-67.7578490809999,45.91947214800008],[-67.75965775599991,45.92856720000004],[-67.76746089699992,45.93595693000016],[-67.7765559499999,45.942933248000074],[-67.78275712099989,45.95052968400002],[-67.78456579699989,45.96014150000003],[-67.78714961799997,46.094551900000155],[-67.78973343999988,46.22901397800008],[-67.79231726099997,46.36347605400012],[-67.79484940699987,46.49786061600004],[-67.79743322799996,46.632296855000064],[-67.80001704999995,46.766784770000115],[-67.80254919499995,46.90124684700013],[-67.80518469299997,47.035631409000146],[-67.8086986899999,47.075138042000084],[-67.81355627499994,47.081907654000034],[-67.85474239099995,47.09784983400006],[-67.87060705599995,47.10735829700003],[-67.89913244699991,47.13877756800018],[-67.94341914899994,47.16453827],[-67.94998205599993,47.172935689000056],[-67.95370275899992,47.186629944000074],[-67.9624360759999,47.197688700000086],[-67.99318355299994,47.22321685900012],[-68.03938228399991,47.24523101800009],[-68.10144567999996,47.28618459100012],[-68.11539831599995,47.29228241],[-68.14506058799992,47.30145497700009],[-68.1560676679999,47.306674296],[-68.1843346759999,47.333132628999984],[-68.19704707899993,47.341400859000125],[-68.24644974799997,47.36057281600013],[-68.29972814899995,47.36783335400009],[-68.34783890799991,47.35850575799999],[-68.38204870599992,47.32780995700013],[-68.38483923399988,47.315872701],[-68.38339229299996,47.30713938400011],[-68.3856143809999,47.301713359000146],[-68.41021236199995,47.29742421499999],[-68.4225630299999,47.29310923300001],[-68.43532710799988,47.29127472000003],[-68.46674637899991,47.305692444000115],[-68.49201615399997,47.30755279600014],[-68.51800939899994,47.30476226800009],[-68.53966182499994,47.29985300800014],[-68.58524043799991,47.28248972600012],[-68.60792639199987,47.269829],[-68.6255997319999,47.255204570000025],[-68.64420324699995,47.245282694000124],[-68.66880122999993,47.24342234300011],[-68.71779048699995,47.24523101800009],[-68.7618188079999,47.23704030400007],[-68.88971797699995,47.19060902900015],[-68.90622859699994,47.19022145700013],[-69.04019974799994,47.24905507400014],[-69.05748551499994,47.269467265000074],[-69.06355977599989,47.29080926600015],[-69.06513362599992,47.296339010000096],[-69.06619299399998,47.32967030900015],[-69.05433325199996,47.38925323500003],[-69.05402319399988,47.41839874300014],[-69.06965531399993,47.431886292000016],[-69.22197159899991,47.459688213000064],[-69.23726782299988,47.45880971300012],[-69.25091040099997,47.45291860000013],[-69.26762772699993,47.43984446200007],[-69.35790645399996,47.350134176000026],[-69.44815934299999,47.260346375000104],[-69.53846390799993,47.17061025000011],[-69.62879431199997,47.08079661100011],[-69.71909887699991,46.99108632400005],[-69.80940344199992,46.90129852300005],[-69.89970800899997,46.81156239800007],[-69.98996089699996,46.72169708300005],[-70.00776342799992,46.70407541900006],[-70.02362809299993,46.661287334000136],[-70.03272314499992,46.60976593000005],[-70.05008642599992,46.511270651000174],[-70.06181697699992,46.44540903700009],[-70.07432267299993,46.41954498300005],[-70.1530517169999,46.37282948800008],[-70.1674177649999,46.3681786100001],[-70.1883983969999,46.358411764000046],[-70.19702836099995,46.33686269200008],[-70.19950882999993,46.315261943000124],[-70.20188594599998,46.305495097000076],[-70.2236934009999,46.300792542000075],[-70.23617325899997,46.28833852200002],[-70.25340734899996,46.25149322599999],[-70.28089921099993,46.211857401000124],[-70.2848007819999,46.191858622],[-70.26332922399988,46.183228659000136],[-70.24924739599993,46.162764791000185],[-70.24400223899991,46.14100901300016],[-70.2494799399999,46.12059682300004],[-70.26444026699997,46.10659251000011],[-70.3003295499999,46.089280905000024],[-70.31262854099995,46.07956573500009],[-70.31136246799991,46.071865947],[-70.30477372299993,46.06597483400019],[-70.30079463699994,46.061737366000145],[-70.29609208199989,46.057861634000076],[-70.29301733399993,46.05403757800006],[-70.29200964399988,46.0486632290001],[-70.29430924499987,46.04494252600007],[-70.30363684099993,46.03848297100002],[-70.3061431479999,46.035330709000064],[-70.31689184599992,45.999002177000094],[-70.31629756699996,45.98298248300013],[-70.30394689999991,45.96861643500013],[-70.28043412399992,45.95931467700002],[-70.26314835599993,45.956834208000046],[-70.25593949399988,45.94887603800008],[-70.26252823899995,45.923037821000044],[-70.28317297399995,45.89048166900001],[-70.31265437899995,45.86764068600009],[-70.38980729199994,45.82505930600003],[-70.40993526299991,45.81074493500012],[-70.41523209699994,45.80438873300001],[-70.41716996299995,45.79379506500014],[-70.4136818039999,45.78769724600009],[-70.40828161699994,45.78165110300013],[-70.40394079599989,45.771160787],[-70.40244217999995,45.74966339100014],[-70.407351441,45.73152496400002],[-70.41931453499987,45.71690053300013],[-70.43913244699993,45.70589345300006],[-70.45042374699992,45.70372304400014],[-70.4727996419999,45.70356801400011],[-70.48476273599994,45.69964060500014],[-70.51473506699998,45.68170888300007],[-70.57240596599992,45.66227854400002],[-70.58961421699993,45.65178822900005],[-70.68679174899992,45.57272328700016],[-70.73032914299995,45.50797271700016],[-70.73200862699991,45.49159128900011],[-70.7228360599999,45.470920716000094],[-70.70738480699993,45.45639963800006],[-70.66816239499988,45.43903635700006],[-70.65025651099997,45.427460836000094],[-70.64131648799989,45.40849558500004],[-70.65358964099991,45.395473124000105],[-70.6757846679999,45.38870351200008],[-70.69673946199993,45.388651836000136],[-70.7180043139999,45.397281799],[-70.7525500079999,45.42234487000012],[-70.77187699399994,45.430044658],[-70.7948730069999,45.43040639200011],[-70.81298559599992,45.42343007400011],[-70.82598221799995,45.41045929000008],[-70.83383703699987,45.39309600800006],[-70.83546484499993,45.373097229000116],[-70.8320800379999,45.32855214400003],[-70.83525813799997,45.309793599000116],[-70.84238948599992,45.30121531200011],[-70.8626208089999,45.29036326100005],[-70.87024308299996,45.28312856100008],[-70.87249100799997,45.27418853800005],[-70.87060481799998,45.25527496400012],[-70.87435136,45.24566314800002],[-70.8924122729999,45.23460439000009],[-70.90690751199992,45.24623158800016],[-70.95160762599997,45.332014466000075],[-70.96811824599988,45.34452016200008],[-70.99315547799993,45.347827454000154],[-71.01653906299993,45.34312489799999],[-71.02759781899994,45.334649963000075],[-71.03666703399998,45.323384501000035],[-71.0544178879999,45.310362040000186],[-71.06421057199998,45.30705474900018],[-71.08495196099997,45.30429257800007],[-71.08555293799998,45.304212545000105],[-71.09524226999991,45.30090525300001],[-71.11102941899989,45.287107646000074],[-71.14172521999993,45.25232940700012],[-71.16032873599997,45.24576650000013],[-71.18513342299994,45.2485570270001],[-71.20936966999992,45.25475819899999],[-71.29339554899994,45.29232696600008],[-71.31153397699995,45.29413564100015],[-71.33432328399996,45.288709616000105],[-71.35209997599988,45.27832265300016],[-71.38124548299989,45.25077911400008],[-71.39488806199992,45.24152903300008],[-71.43881302899987,45.23346751000009],[-71.44904496299992,45.22690460300011],[-71.42268998299997,45.217189434000076],[-71.40656693499996,45.20494211900014],[-71.41302648899993,45.186183574000054],[-71.44160355699992,45.150681865000095],[-71.44599605399992,45.140294902000065],[-71.45121537399993,45.12169138600002],[-71.45658972199999,45.110994365000025],[-71.49725907399994,45.06655263300006],[-71.50475215699996,45.05296173100005],[-71.50661250799996,45.03704539000002],[-71.50408036399998,45.013739319000095],[-71.50584813699996,45.013731075000024],[-71.60381587799989,45.01327423100015],[-71.70355139199998,45.01275746700012],[-71.8032869059999,45.01224070300016],[-71.903074097,45.01177561500005],[-72.00280961099989,45.01125885000012],[-72.10254512599991,45.010793762],[-72.20222896399987,45.010328674000064],[-72.30196447799997,45.009760233000016],[-72.4017516689999,45.00929514600006],[-72.501487183,45.00883005800016],[-72.6012743739999,45.00831329400001],[-72.70095821199989,45.00779653000008],[-72.80069372599988,45.00733144200013],[-72.9004809169999,45.006866354000024],[-73.00026810699993,45.006349590000085],[-73.0999519449999,45.00588450200014],[-73.19968745999998,45.00541941400003],[-73.2994229739999,45.004902649000186],[-73.35134085899992,45.00463364500003],[-73.3991584879999,45.00438588500005],[-73.49891984099989,45.0039207970001],[-73.5986553559999,45.003404033],[-73.69841670799991,45.002938945000054],[-73.79815222199991,45.00247385700011],[-73.8978877369999,45.001957093],[-73.9976490889999,45.00144032800013],[-74.0973846039999,45.00097524000002],[-74.1971459559999,45.00045847600008],[-74.2968814699999,44.999993388000135],[-74.39661698499992,44.99947662300012],[-74.49635249799991,44.99901153600008],[-74.59611385099991,44.99849477200014],[-74.69587520399992,44.998029684000024],[-74.71296139199993,44.99925364800005]]],[[[-126.0637100899999,49.27757396000014],[-126.04849199099995,49.267035223000065],[-126.06940670499992,49.25551992400012],[-126.08958899599995,49.254339911000116],[-126.13573157499988,49.26471588700012],[-126.15831458199995,49.27358633000016],[-126.19253495999992,49.27228424700014],[-126.22354081899994,49.27708567900005],[-126.24034583199995,49.30182526200003],[-126.22740637899993,49.30780670800014],[-126.22980709499988,49.320217190000065],[-126.23403886599992,49.331732489],[-126.24034583199995,49.34275950700005],[-126.23131262899993,49.35732656500009],[-126.23289954299989,49.366400458000086],[-126.23143469999991,49.37860748900006],[-126.22671464799991,49.38251373900005],[-126.20616614499997,49.38373444200006],[-126.1502172519999,49.396226304],[-126.13170325399989,49.39679596600014],[-126.10802161399987,49.38410065300009],[-126.08625240799992,49.363104559000035],[-126.07510331899991,49.33852773600013],[-126.0833227199999,49.314886786],[-126.0763240229999,49.303615627],[-126.07140051999995,49.29047272300015],[-126.0637100899999,49.27757396000014]]],[[[-123.37588456899995,49.33710358300006],[-123.3847550119999,49.33551666900002],[-123.41600501199989,49.33722565300003],[-123.4261775379999,49.34007396000008],[-123.42943274599989,49.34674713700004],[-123.4269913399999,49.35541413000011],[-123.42577063699991,49.36749909100003],[-123.4181208979999,49.38092682500003],[-123.38467363199995,49.40403880400008],[-123.3696996739999,49.41136302299999],[-123.34996497299996,49.41754791900014],[-123.32632402299991,49.42047760600014],[-123.31517493399991,49.41339752800009],[-123.31920325399987,49.39931875200007],[-123.3254288399999,49.389634507000025],[-123.33014889199985,49.38418203300007],[-123.33014889199985,49.38153717700008],[-123.32656816299986,49.381496486000074],[-123.33067786399994,49.37287018400018],[-123.33657792899996,49.36456940300009],[-123.34410559799991,49.355780341000056],[-123.35936438699989,49.342922268],[-123.37588456899995,49.33710358300006]]],[[[-54.64391028599988,49.47532786699998],[-54.65689042899987,49.4657250020001],[-54.66710364499991,49.46576569200009],[-54.67870032499994,49.46320221600008],[-54.685454881999874,49.457586981000176],[-54.68114173099988,49.44863515800013],[-54.677805141999926,49.438381252000035],[-54.684437628999916,49.427679755],[-54.69375566299993,49.417181708000115],[-54.69855709499993,49.40766022300012],[-54.70872962099989,49.40582916900014],[-54.730376756999874,49.411281643],[-54.74990800699996,49.424261786],[-54.75377356699994,49.44521719000012],[-54.74038652299995,49.458889065000065],[-54.69969641799989,49.47260163],[-54.69107011599996,49.483099677000084],[-54.67959550699993,49.4929059920001],[-54.6576228509999,49.487453518000066],[-54.64391028599988,49.47532786699998]]],[[[-124.32917232999985,49.51284414300009],[-124.32310950399993,49.512030341000084],[-124.29588782499988,49.51243724199999],[-124.28359941299989,49.51048411700004],[-124.26895097599989,49.506293036],[-124.25133216099997,49.50429922100007],[-124.2321671209999,49.49933502800012],[-124.17174231699988,49.46426015800013],[-124.17170162699988,49.454738674000126],[-124.18618730399996,49.44700755400011],[-124.23241126199994,49.45856354400014],[-124.2481583319999,49.45844147300009],[-124.25788326699985,49.45612213700012],[-124.26846269399991,49.45551178600006],[-124.29702714799988,49.45791250200001],[-124.31794186099984,49.46295807500003],[-124.35228430899988,49.47492096600017],[-124.36107337099986,49.480047919000086],[-124.35773678299984,49.483547268000066],[-124.35570227799991,49.49038320500009],[-124.36522376199993,49.497259833],[-124.37653561099988,49.499945380000085],[-124.37905839799991,49.507269598000086],[-124.37364661399995,49.515285549000126],[-124.36489824099989,49.521063544000086],[-124.35460364499995,49.52240631700008],[-124.32917232999985,49.51284414300009]]],[[[-123.32249915299991,49.486070054],[-123.32380123599994,49.461859442],[-123.34268144399994,49.44293854400017],[-123.37584387899997,49.438381252000035],[-123.36742102799991,49.45384349200005],[-123.37462317599996,49.46352773600002],[-123.38939368399993,49.4674339860001],[-123.40379798099991,49.4657250020001],[-123.41519120999989,49.45868561400012],[-123.4232071609999,49.451239325000145],[-123.43342037699993,49.445990302000055],[-123.45156816299993,49.44521719000012],[-123.4491267569999,49.45868561400012],[-123.45445716099987,49.46930573100015],[-123.45665442599996,49.478216864],[-123.44473222599991,49.48615143400015],[-123.44473222599991,49.49359772300015],[-123.4526261059999,49.508124091000084],[-123.4396866529999,49.521307684000035],[-123.4181208979999,49.53091054900001],[-123.3916723299999,49.53632233300006],[-123.38239498599987,49.539740302000055],[-123.37254798099993,49.54205963700004],[-123.36217200399993,49.54075755400014],[-123.3567602199999,49.53489817899999],[-123.34235592399992,49.50665924700003],[-123.32249915299991,49.486070054]]],[[[-124.60041256399988,49.52757396],[-124.59414628799992,49.52163320500016],[-124.60484778599995,49.520941473000036],[-124.62450110599991,49.52342357000004],[-124.63560950399993,49.517401434000035],[-124.6427302729999,49.50429922100007],[-124.65322831899996,49.49599844000009],[-124.66291256399991,49.49433014500006],[-124.67178300699995,49.497219143],[-124.69127356699994,49.509344794000086],[-124.70376542899996,49.52118561400006],[-124.70250403599994,49.537665106000055],[-124.6837458979999,49.54926178600006],[-124.65514075399992,49.547105210000055],[-124.60741126199987,49.53091054900001],[-124.60041256399988,49.52757396]]],[[[-55.678578253999945,49.520697333000086],[-55.70848548099991,49.508490302],[-55.733225063999974,49.513495184000035],[-55.73615475199992,49.52228424700011],[-55.73599199099993,49.53685130400014],[-55.73257402299993,49.55194733300014],[-55.725738084999925,49.56191640800012],[-55.712513800999886,49.56476471600017],[-55.657460089999915,49.56191640800012],[-55.657093878999916,49.54144928600006],[-55.678578253999945,49.520697333000086]]],[[[-124.69082597599996,49.482855536000116],[-124.70201575399996,49.47947825700011],[-124.70962480399989,49.4799665390001],[-124.72223873599988,49.481878973000065],[-124.74640865799988,49.48847077000012],[-124.82542883999989,49.54010651200017],[-124.83853105399987,49.55658600500006],[-124.8401586579999,49.577582098],[-124.83604895699993,49.597723700000145],[-124.82721920499989,49.60297272300012],[-124.80333411399992,49.58494700700002],[-124.79246985599991,49.57973867400001],[-124.71646074099992,49.49949778900016],[-124.7087296209999,49.49701569200006],[-124.69416256399987,49.490627346000124],[-124.69082597599996,49.482855536000116]]],[[[-55.65518144399993,49.62710195500013],[-55.657460089999915,49.62335846600003],[-55.64354407499985,49.62474192899999],[-55.631418423999946,49.622463283000016],[-55.62523352799988,49.61554596600003],[-55.629546678999866,49.60346100500011],[-55.60383053299992,49.60468170800014],[-55.59605872299994,49.60346100500011],[-55.59093176999991,49.60346100500011],[-55.58340410099995,49.60846588700015],[-55.57896887899988,49.609686591000084],[-55.57274329299992,49.60757070500007],[-55.57079016799989,49.60285065300015],[-55.5729060539999,49.598130601000044],[-55.57896887899988,49.596014716000134],[-55.59581458199989,49.59471263200005],[-55.64053300699993,49.58551666900017],[-55.67027747299994,49.571112372000115],[-55.69310462099989,49.56834544500005],[-55.714466925999915,49.571478583000115],[-55.725738084999925,49.58177317900014],[-55.72325598899991,49.587388414000046],[-55.70921790299985,49.603338934000064],[-55.7025447259999,49.6225446640001],[-55.69432532499987,49.62856679900001],[-55.67174231699991,49.63703034100014],[-55.65127519399993,49.63703034100014],[-55.65518144399993,49.62710195500013]]],[[[-54.529286261999914,49.62506745000003],[-54.530873175999936,49.61542389500015],[-54.537505662999905,49.606350002000156],[-54.547718878999945,49.596014716000134],[-54.54605058499993,49.58478424700006],[-54.57286536399991,49.57184479400003],[-54.60773678299995,49.560736395],[-54.69933020699994,49.54189687700007],[-54.71898352799991,49.53461334800015],[-54.730295376999884,49.52895742400006],[-54.736439581999974,49.52435944200011],[-54.73900305899988,49.51703522300012],[-54.73949133999986,49.50324127800011],[-54.744007941999904,49.49380117400001],[-54.75495358,49.49380117400001],[-54.78107662699995,49.49982330900009],[-54.82848059799997,49.48920319200006],[-54.852365688999924,49.48651764500009],[-54.876616990999935,49.49359772300015],[-54.85993404899989,49.50381094000009],[-54.84552975199992,49.50983307500009],[-54.83023027299987,49.512762762000094],[-54.81118730399987,49.513495184000035],[-54.80687415299988,49.51561107000004],[-54.81163489499997,49.52033112200014],[-54.82135982999992,49.52505117400006],[-54.84040279899992,49.52977122600008],[-54.847320115999906,49.53620026200018],[-54.85960852799988,49.551662502],[-54.86375891799991,49.55272044500008],[-54.87718665299991,49.55223216400015],[-54.88345292899993,49.55508047100001],[-54.88451087099989,49.56024811400012],[-54.888335740999906,49.572007554],[-54.8931778639999,49.58197663],[-54.89712480399987,49.58177317900014],[-54.88499915299988,49.59520091400013],[-54.851551886999914,49.591009833],[-54.83568274599989,49.60346100500011],[-54.8196508449999,49.601223049000126],[-54.795765753999945,49.601019598000086],[-54.78062903599994,49.59589264500006],[-54.790679490999906,49.57868073100014],[-54.795277472999935,49.56362539300012],[-54.77660071499989,49.55609772300009],[-54.75039628799993,49.553900458],[-54.73265540299985,49.55508047100001],[-54.69286048099985,49.5676130230001],[-54.67292232999995,49.57868073100014],[-54.66441809799994,49.59259674700002],[-54.6602270169999,49.610907294000086],[-54.64924068899995,49.62490469000006],[-54.633697068999936,49.633775132000025],[-54.615956183999856,49.63703034100014],[-54.62559973899991,49.62665436400006],[-54.63023841099994,49.62335846600003],[-54.61408443899998,49.6161156270001],[-54.58726966099988,49.63178131700006],[-54.557932094999984,49.65350983300014],[-54.53937740799998,49.66103750200009],[-54.544056769999884,49.65180084800012],[-54.538726365999935,49.64984772300009],[-54.53624426999991,49.644720770000056],[-54.529286261999914,49.62506745000003]]],[[[-54.07599850199992,49.734116929],[-54.061756964999915,49.72504303600009],[-54.05426998599992,49.71893952],[-54.04898027299986,49.71718984600001],[-54.04198157499988,49.716742255],[-54.035796678999894,49.71499258],[-54.03311113199993,49.708970445000105],[-54.034820115999935,49.70453522300012],[-54.038319464999915,49.70062897300012],[-54.04100501199991,49.69668203300013],[-54.04059811099989,49.69163646000011],[-54.02977454299991,49.67597077000012],[-54.01650956899987,49.667792059000035],[-53.99982662699994,49.66474030200014],[-53.97850501199988,49.66429271000014],[-53.98717200399997,49.651068427],[-54.00007076699998,49.65009186400012],[-54.030018683999856,49.6574567730001],[-54.03888912699989,49.65428294500005],[-54.04596920499995,49.64728424700017],[-54.055409308999884,49.64020416900003],[-54.08665930899994,49.634995835000105],[-54.0950414699999,49.629950262000094],[-54.10260982999994,49.62335846600003],[-54.11571204299992,49.61652252800009],[-54.13027910099996,49.612738348000065],[-54.17096920499992,49.609686591000084],[-54.21035722599993,49.59808991100006],[-54.22215735599988,49.596014716000134],[-54.22760982999992,49.593695380000085],[-54.258697068999936,49.571478583000115],[-54.26333574099996,49.57119375200009],[-54.26789303299989,49.573797919000086],[-54.27676347599996,49.57558828300007],[-54.29198157499993,49.587388414000046],[-54.29869544199997,49.61513906500004],[-54.30199133999991,49.64712148600002],[-54.307484503999945,49.67177969],[-54.294992641999926,49.676743882000046],[-54.267241990999935,49.673285223000065],[-54.25283769399988,49.67796458500008],[-54.26211503799993,49.68024323100015],[-54.26992753799993,49.68447500200006],[-54.27603105399993,49.69061920800006],[-54.28014075399997,49.69843170800014],[-54.27476966099991,49.70189036700005],[-54.27188066299987,49.705308335000055],[-54.26976477799988,49.70888906500012],[-54.26650956899991,49.712713934000035],[-54.27171790299991,49.71222565300015],[-54.28237870999993,49.712958075000174],[-54.287587042999945,49.712713934000035],[-54.26984615799995,49.727240302000084],[-54.24404863199993,49.726060289000046],[-54.217600063999924,49.71637604400008],[-54.19762122299997,49.705267645000056],[-54.205067511999935,49.69843170800014],[-54.191395636999914,49.67796458500008],[-54.182932094999956,49.691351630000085],[-54.18350175699993,49.70482005400005],[-54.18635006399995,49.71698639500015],[-54.18464107999994,49.72638580900015],[-54.17296301999997,49.733587958],[-54.16148841099994,49.732123114000146],[-54.149525519999884,49.72931549700009],[-54.136789516999926,49.73261139500012],[-54.141468878999945,49.73773834800015],[-54.15046139199998,49.753729559000035],[-54.11021887899989,49.754461981000176],[-54.09203040299991,49.75047435099999],[-54.07599850199992,49.734116929]]],[[[-124.01964270699987,49.77627187700013],[-124.0212296209999,49.775091864],[-124.02399654899996,49.77529531500015],[-124.02696692599987,49.774155992000104],[-124.07453365799986,49.741359768],[-124.08161373599985,49.729437567000055],[-124.08576412699996,49.724066473],[-124.10948645699989,49.67796458500008],[-124.13638261599996,49.65656159100003],[-124.16368567599994,49.65981679900007],[-124.18773352799988,49.67894114800004],[-124.20506751199989,49.705267645000056],[-124.14561926999993,49.74754466400016],[-124.1331680979999,49.75385163000011],[-124.11913001199986,49.754828192],[-124.10265051999995,49.74689362200002],[-124.1012263659999,49.760443427],[-124.09813391799992,49.766994533000066],[-124.09024003799993,49.77033112200009],[-124.04747473899995,49.77924225500014],[-124.02013098899997,49.78099192900013],[-124.01964270699987,49.77627187700013]]],[[[-124.32921301999993,49.68170807500011],[-124.32274329299993,49.67080312700013],[-124.29409745999988,49.64988841400016],[-124.28766842399993,49.64044830900015],[-124.28246008999986,49.62783437700007],[-124.2697647779999,49.61587148600013],[-124.17320716099992,49.55414459800012],[-124.14403235599988,49.529608466000106],[-124.12315833199993,49.49982330900009],[-124.14342200399992,49.48932526200004],[-124.16226152299987,49.49599844000009],[-124.1976212229999,49.520941473000036],[-124.37840735599987,49.60285065300015],[-124.43883216099988,49.61188385600015],[-124.44172115799991,49.61725495000003],[-124.4387100899999,49.62409088700004],[-124.43907630099991,49.630804755],[-124.4620662099999,49.65375397300009],[-124.47175045499986,49.66950104400003],[-124.47256425699986,49.67177969],[-124.47874915299992,49.67316315300009],[-124.48525956899992,49.67291901200004],[-124.49307206899992,49.67177969],[-124.51707923099985,49.68341705900012],[-124.5173233709999,49.68545156500015],[-124.53404700399992,49.68964264500006],[-124.57213294199993,49.70844147300012],[-124.61440995999993,49.71649811400006],[-124.63320878799989,49.72573476800012],[-124.66441809799996,49.74689362200002],[-124.65640214799994,49.75421784100003],[-124.65172278599991,49.761542059000035],[-124.6516820949999,49.76825592699999],[-124.65758216099994,49.774155992000104],[-124.65758216099994,49.78099192900013],[-124.6542862619999,49.78799062700001],[-124.65469316299992,49.79230377800012],[-124.65758216099994,49.80149974199999],[-124.64513098899992,49.802313544000086],[-124.63263912699983,49.801662502000156],[-124.62051347599993,49.79930247599999],[-124.60920162699985,49.79462311400009],[-124.59703528599994,49.78563060100005],[-124.57603919199993,49.76194896000013],[-124.56200110599985,49.753729559000035],[-124.52106686099984,49.74689362200002],[-124.48778235599985,49.73419830900015],[-124.39126542899989,49.72003815300003],[-124.34788977799992,49.70416901200012],[-124.32921301999993,49.68170807500011]]],[[[-126.74217688699994,49.85639069200008],[-126.72288977799988,49.849798895],[-126.70274817599994,49.86017487200011],[-126.69050045499989,49.85712311400011],[-126.67756100199988,49.83368561400014],[-126.65868079299995,49.78782786700004],[-126.64907792899986,49.77317942900005],[-126.6425675119999,49.75873444200009],[-126.63878333199993,49.74079010600003],[-126.63394120999988,49.69232819200006],[-126.61921139199987,49.652777411],[-126.61766516799993,49.630804755],[-126.63882402299993,49.59503815300014],[-126.67943274599993,49.591782945000105],[-126.80675208199997,49.62738678600008],[-126.82213294199993,49.63629791900003],[-126.84019934799994,49.65375397300009],[-126.85610917899996,49.66567617400004],[-126.9125056629999,49.69163646000011],[-126.97398841099995,49.735988674000154],[-126.97057044199995,49.75470612200003],[-126.96153723899994,49.75853099200013],[-126.94847571499987,49.752020575000024],[-126.93301347599994,49.739406643000066],[-126.92735755099994,49.749986070000105],[-126.91934160099993,49.758937893000116],[-126.90876217399996,49.765082098000036],[-126.88023841099997,49.768988348],[-126.86408443899991,49.77334219],[-126.85570227799987,49.779852606000084],[-126.8641251289999,49.78782786700004],[-126.87385006399985,49.788885809000085],[-126.88345292899993,49.78607819200006],[-126.89195716099995,49.78241608299999],[-126.8982641269999,49.78099192900013],[-126.90575110599985,49.783758856000084],[-126.91885331899992,49.79271067900011],[-126.9224747389999,49.79462311400009],[-126.93000240799986,49.79682038000008],[-126.94395911399992,49.80621979400008],[-126.95348059799993,49.80829498900012],[-126.9622696609999,49.808986721000146],[-126.98704993399986,49.81513092700014],[-126.97809811099992,49.828558661000116],[-126.9695938789999,49.83348216400019],[-126.9466446609999,49.83624909100014],[-126.86416581899991,49.855454820000105],[-126.80093339799993,49.88076406500015],[-126.76854407499991,49.88344961100001],[-126.75816809799991,49.870672919000086],[-126.74217688699994,49.85639069200008]]],[[[-64.13280188699991,49.950140692],[-64.0270076159999,49.92096588700004],[-64.00080318899998,49.91815827],[-63.99193274599992,49.91620514500015],[-63.94465084499988,49.896063544000114],[-63.69815019399991,49.867254950000174],[-63.605336066999875,49.85024648600002],[-63.5128474599999,49.84552643400009],[-63.37466386599988,49.829413153000026],[-63.208607550999915,49.79075755400008],[-63.12409420499995,49.783880927000055],[-63.044911261999886,49.753729559000035],[-62.962147589999944,49.74054596600008],[-62.93883216099993,49.729437567000055],[-62.90465247299994,49.701849677000055],[-62.89297441299993,49.69745514500006],[-62.84630286399993,49.69843170800014],[-62.77574622299988,49.669175523000106],[-62.75755774599988,49.66429271000014],[-62.73070227799991,49.663153387000094],[-62.70791581899988,49.659369208000086],[-62.68761145699997,49.65302155200005],[-62.61725826699995,49.62051015800007],[-62.58971106699994,49.61269765800007],[-62.53425045499995,49.60468170800014],[-62.51280676999994,49.59227122600011],[-62.4757380849999,49.56191640800012],[-62.46983801999996,49.56000397300006],[-62.45409094999991,49.55792877800015],[-62.448394334999925,49.55508047100001],[-62.445423956999925,49.54979075700014],[-62.44343014199998,49.53847890800015],[-62.4416397779999,49.53461334800015],[-62.39728756399996,49.49673086100002],[-62.385894334999904,49.49042389500009],[-62.37474524599988,49.489976304],[-62.352853969999835,49.49359772300015],[-62.33922278599991,49.490912177000055],[-62.31126868399988,49.47256094],[-62.29987545499991,49.4696312520001],[-62.275746222999885,49.4682477890001],[-62.26414954299989,49.4657250020001],[-62.253814256999874,49.45856354400014],[-62.226226365999935,49.43089427300004],[-62.22008216099988,49.427801825000174],[-62.21328691299993,49.421047268000116],[-62.204335089999915,49.414211330000015],[-62.191761847999906,49.41107819200015],[-62.17808997299988,49.40924713700014],[-62.133127407999886,49.39679596600014],[-62.01805579299992,49.388373114],[-62.0060929029999,49.384222723000065],[-61.97179114499994,49.36692942900005],[-61.95103919199993,49.352972723000086],[-61.9413142569999,49.349025783000016],[-61.90416419199989,49.35419342700003],[-61.88263912699995,49.35447825700013],[-61.865630662999905,49.33763255400014],[-61.817860480999855,49.30805084800009],[-61.82652747299994,49.29498932500012],[-61.81891842399991,49.28676992400001],[-61.79051673099988,49.273871161],[-61.787220831999946,49.26894765800013],[-61.78062903599987,49.25299713700004],[-61.776844855999855,49.24656810100011],[-61.77171790299994,49.24335358300006],[-61.74950110599988,49.23289622599999],[-61.73737545499998,49.22134023600013],[-61.70860755099994,49.18451569200006],[-61.684681769999884,49.16583893400009],[-61.6607559889999,49.15102773600002],[-61.67100989499994,49.141058661000116],[-61.69298255099994,49.12962474199999],[-61.70238196499989,49.123032945000105],[-61.707508917999895,49.11151764500006],[-61.7049047519999,49.10297272300015],[-61.707020636999914,49.09760163],[-61.72622636599996,49.09577057500011],[-61.7454727859999,49.09772370000014],[-61.75731360599988,49.09686920800006],[-61.81163489499991,49.069037177],[-61.82420813699988,49.07001373900005],[-61.86620032499988,49.082098700000174],[-61.88206946499989,49.083685614],[-62.05064856699988,49.07453034100003],[-62.12999426999991,49.082098700000174],[-62.24819902299987,49.06793854400014],[-62.27684485599994,49.07160065300009],[-62.30333411399992,49.07977936400003],[-62.32213294199994,49.09202708500008],[-62.342600063999924,49.10219961100002],[-62.41690019399993,49.112005927000055],[-62.50625566299993,49.138576565],[-62.68175208199991,49.14850495000012],[-62.88451087099991,49.19651927299999],[-63.09333248599997,49.23289622599999],[-63.16466223899988,49.262925523000135],[-63.21239173099993,49.27289459800012],[-63.27769934799991,49.314886786],[-63.33421790299994,49.32440827],[-63.363636847999906,49.34015534100014],[-63.38292395699994,49.34780508000007],[-63.40379798099994,49.353583075000145],[-63.46206620999993,49.359361070000105],[-63.58678137899989,49.38996002800003],[-63.57315019399993,49.404852606000176],[-63.5845841139999,49.419134833000086],[-63.603871222999935,49.43349844000015],[-63.61412512899994,49.44863515800013],[-63.61489824099988,49.46771881700012],[-63.61851966099994,49.483791408000016],[-63.62677975199991,49.49843984600012],[-63.641428188999924,49.513495184000035],[-63.677235480999855,49.541693427000105],[-63.76423092399992,49.60199616100006],[-63.92516028599988,49.674872137000094],[-64.05882727799985,49.71454498900003],[-64.17796790299988,49.7409528670001],[-64.30239824099988,49.778998114],[-64.31920325399987,49.791245835000055],[-64.33543860599994,49.815497137000065],[-64.36717688699989,49.825628973],[-64.3887426419999,49.81940338700003],[-64.37441972599989,49.79462311400009],[-64.39753170499995,49.79783763200014],[-64.42471269399996,49.808498440000065],[-64.44749915299991,49.82339101800012],[-64.45702063699989,49.83930084800012],[-64.47061113199996,49.85244375200001],[-64.49620520699992,49.85862864800008],[-64.5105688139999,49.86806875200006],[-64.49054928299992,49.89085521000011],[-64.45128333199992,49.90949127800009],[-64.35090084499987,49.927435614000146],[-64.29385331899996,49.931097723],[-64.26911373599998,49.92959219000015],[-64.25772050699993,49.93121979400017],[-64.24518795499992,49.937486070000105],[-64.23778235599994,49.944484768],[-64.22935950399997,49.95001862200003],[-64.21369381399988,49.952337958000086],[-64.13280188699991,49.950140692]]],[[[-127.25104732999986,49.99957916900014],[-127.27232825399992,49.97797272300014],[-127.28502356699991,49.97858307500012],[-127.29596920499986,49.98737213700015],[-127.30801347599987,49.99184804900012],[-127.31859290299992,49.99957916900014],[-127.31920325399997,50.00812409100017],[-127.31456458199995,50.013251044000086],[-127.31346594999991,50.019964911000116],[-127.31135006399992,50.02619049700009],[-127.30158443899987,50.03229401200018],[-127.28600012899996,50.037054755000085],[-127.26349850199988,50.034328518],[-127.24063066299995,50.02171458500011],[-127.2322891919999,50.013251044000086],[-127.2318416009999,50.01015859600001],[-127.23420162699986,50.005357164000095],[-127.24193274599986,50.003119208000115],[-127.25104732999986,49.99957916900014]]],[[[-55.835808208999964,50.1957059480001],[-55.8450724319999,50.190645257000156],[-55.867519361999875,50.19321134200011],[-55.886001776999954,50.19746059100005],[-55.883340356999916,50.20422362000009],[-55.85427053899988,50.205033228],[-55.850275844999935,50.21432950500004],[-55.84234445499996,50.215164620000124],[-55.831785246999885,50.21176667600018],[-55.823887156999916,50.20414395900014],[-55.835808208999964,50.1957059480001]]],[[[-55.69580176499994,50.193721111000016],[-55.70903686499988,50.189528345000106],[-55.72880005099994,50.198033265],[-55.75653189999988,50.19978858400013],[-55.78952219199988,50.20746646],[-55.802679301999945,50.220174134],[-55.799991572999886,50.230316491000124],[-55.76297109399985,50.231935374000145],[-55.75107404299984,50.23190920200001],[-55.729933058999904,50.23016960700014],[-55.712811512999906,50.219979912],[-55.701020366999984,50.20388245300002],[-55.69580176499994,50.193721111000016]]],[[[-124.97630774599988,50.02167389500011],[-124.98648027299991,50.014390367000104],[-125.00548255099993,50.01764557500014],[-125.01073157499994,50.029608466000084],[-125.00910396999988,50.04328034100003],[-125.00698808499989,50.0516625020001],[-125.0064998039999,50.0637067730001],[-125.00743567599989,50.07225169500013],[-125.01329505099991,50.08002350500011],[-125.05288652299987,50.10516998900003],[-125.05980383999987,50.11546458500011],[-125.0506078769999,50.126410223],[-125.02749589799994,50.14411041900008],[-124.98582923099987,50.17894114800004],[-124.9797257149999,50.18878815300015],[-124.98330644399996,50.19989655199999],[-125.00064042899994,50.222154039000046],[-125.00698808499989,50.23285553600005],[-125.0004776679999,50.23346588700012],[-124.99567623599991,50.232082424000126],[-124.98648027299991,50.22601959800014],[-124.9291072259999,50.16937897300015],[-124.91828365799991,50.15094635600012],[-124.91746985599991,50.145493882],[-124.91759192599997,50.13873932500005],[-124.9188126289999,50.13296133000007],[-124.92170162699983,50.13043854400014],[-124.9256892569999,50.127671617000104],[-124.92129472599991,50.121730861000074],[-124.91441809799991,50.115952867000104],[-124.91079667899993,50.113714911000116],[-124.9096573559999,50.09861888200011],[-124.90611731699993,50.08779531500012],[-124.89997311099987,50.07880280200011],[-124.89098059799993,50.069037177000084],[-124.91958574099993,50.059637762000065],[-124.9486384759999,50.054754950000174],[-124.96304277299996,50.04877350500006],[-124.97630774599988,50.02167389500011]]],[[[-63.85606848899997,50.204657294000086],[-63.884673631999924,50.199367580000015],[-63.91226152299986,50.2059593770001],[-63.92699133999986,50.221421617000104],[-63.92479407499987,50.239650783000094],[-63.90147864499997,50.253973700000174],[-63.89858964799993,50.24998607000002],[-63.895619269999905,50.24835846600016],[-63.88841712099988,50.246527411],[-63.85753333199992,50.217433986000124],[-63.85606848899997,50.204657294000086]]],[[[-125.16055253799995,50.00307851800012],[-125.16307532499985,49.99315013200014],[-125.17833411399994,50.000067450000024],[-125.18687903599995,50.009833075000174],[-125.19371497299997,50.03091054900001],[-125.19884192599989,50.04108307500006],[-125.21971594999987,50.0598005230001],[-125.22671464799993,50.069037177000084],[-125.22264563699989,50.07029857],[-125.21247311099984,50.07518138200005],[-125.2302953769999,50.08966705900009],[-125.28327389199984,50.11676666900003],[-125.29434160099989,50.127020575000145],[-125.2998754549999,50.13104889500012],[-125.31175696499986,50.135891018],[-125.3237198559999,50.143255927],[-125.32917232999985,50.15468984600015],[-125.32974199099988,50.165513414000046],[-125.3348282539999,50.19375234600001],[-125.34894771999984,50.22003815300003],[-125.34943600199985,50.2416852890001],[-125.3440649079999,50.26166413],[-125.33600826699985,50.27448151200004],[-125.31802324099989,50.283514716000056],[-125.2902725899999,50.29132721600003],[-125.2631729809999,50.294012762000094],[-125.24722245999988,50.28750234600001],[-125.23534094999984,50.26536692900014],[-125.23013261599993,50.260809637000094],[-125.21544348899994,50.2564964860001],[-125.19855709499984,50.23725006700014],[-125.17975826699991,50.22894928600006],[-125.17145748599982,50.218980210000076],[-125.16567949099996,50.2059593770001],[-125.16466223899988,50.192531643],[-125.17235266799992,50.17837148600007],[-125.18415279899989,50.16828034100011],[-125.19127356699994,50.15818919500005],[-125.18517005099994,50.14411041900008],[-125.20958411399991,50.13857656500009],[-125.22520911399988,50.13165924700008],[-125.22765051999991,50.120794989],[-125.21247311099984,50.10317617400007],[-125.20262610599991,50.097235419000135],[-125.1939998039999,50.09491608299999],[-125.18614661399992,50.09153880400008],[-125.17833411399994,50.08270905200011],[-125.17536373599992,50.07371653900019],[-125.1714981759999,50.04108307500006],[-125.16055253799995,50.00307851800012]]],[[[-124.81566321499986,50.211574611000074],[-124.79173743399988,50.19798411700013],[-124.7658585279999,50.18915436400008],[-124.7537735669999,50.16828034100011],[-124.76353919199993,50.156236069999984],[-124.78624426999995,50.139227606000034],[-124.81236731699993,50.12400950700005],[-124.83234615799991,50.11737702000009],[-124.84251868399986,50.12221914300006],[-124.85228430899991,50.1332868510001],[-124.86676998599985,50.15468984600015],[-124.86937415299992,50.16632721600014],[-124.8582657539999,50.17348867400001],[-124.84190833199989,50.17877838700018],[-124.82892818899988,50.18504466400013],[-124.84044348899991,50.19830963700015],[-124.85610917899989,50.19953034100017],[-124.89098059799993,50.192531643],[-124.91274980399989,50.19432200699999],[-124.92593339799994,50.1998558610001],[-124.95783443899987,50.23432038000011],[-124.96515865799986,50.249212958000086],[-124.96426347599987,50.26211172100009],[-124.9486384759999,50.26764557500011],[-124.93683834499993,50.27619049700003],[-124.9283341139999,50.29266998900012],[-124.9170629549999,50.30345286700013],[-124.88267981699994,50.289618231000034],[-124.83568274599993,50.28123607000008],[-124.81574459499986,50.27383047100007],[-124.81191972599993,50.26947663],[-124.81655839799996,50.26239655200011],[-124.82201087099992,50.246527411],[-124.81566321499986,50.211574611000074]]],[[[-124.72508704299995,50.30451080900017],[-124.6898087229999,50.29067617400006],[-124.66144771999984,50.26284414300012],[-124.65074622299994,50.22443268400012],[-124.66454016799992,50.191229559000085],[-124.69383704299986,50.171047268000066],[-124.71556555899993,50.162176825000024],[-124.72581946499984,50.163234768000066],[-124.73070227799992,50.16795482],[-124.73058020699993,50.17450592700005],[-124.73643958199989,50.186468817],[-124.7428279289999,50.204169012000094],[-124.73916581899995,50.21991608300006],[-124.72687740799992,50.243150132],[-124.70860755099994,50.260443427000084],[-124.70539303299988,50.27411530200011],[-124.7125544909999,50.285711981000034],[-124.72329667899993,50.292873440000065],[-124.72716223899992,50.29116445500007],[-124.72500566299995,50.281480210000105],[-124.7251684239999,50.27326080900012],[-124.72679602799992,50.26630280200011],[-124.73326575399993,50.253729559000035],[-124.75666256399992,50.219387111000074],[-124.7679744129999,50.21426015800007],[-124.78246008999984,50.219183661000116],[-124.80264238199989,50.228583075000145],[-124.80825761599988,50.23187897300009],[-124.81224524599986,50.23981354400014],[-124.7946671209999,50.26211172100009],[-124.78648841099992,50.277289130000085],[-124.77342688699994,50.28949616100006],[-124.75894120999989,50.296535549000126],[-124.7485245429999,50.303941148000106],[-124.72508704299995,50.30451080900017]]],[[[-125.19884192599989,50.39109935100005],[-125.19253495999993,50.39032623900012],[-125.17735755099996,50.39252350500011],[-125.1714981759999,50.39109935100005],[-125.16730709499987,50.38471100500011],[-125.15929114499993,50.361639716000134],[-125.15782630099989,50.353257554000024],[-125.15249589799991,50.344549872000115],[-125.12901770699993,50.321193752],[-125.11506100199986,50.29718659100017],[-125.07713782499985,50.26219310100008],[-125.06847083199996,50.25023021000014],[-125.06456458199996,50.24192942900005],[-125.05630449099988,50.231390692],[-125.04898027299987,50.219142971000124],[-125.0479630199999,50.20555247599999],[-125.0552465489999,50.194525458000115],[-125.0653376939999,50.193589585000055],[-125.07555091099992,50.198675848000065],[-125.08275305899984,50.20555247599999],[-125.09618079299995,50.16404857],[-125.10606848899995,50.145209052000055],[-125.12791907499991,50.13385651200015],[-125.13426673099993,50.12791575700005],[-125.1422013009999,50.12579987200003],[-125.15440833199996,50.13385651200015],[-125.15282141799993,50.140204169000114],[-125.1373591789999,50.17206452000012],[-125.13206946499993,50.190985419000135],[-125.13011633999989,50.21352773600013],[-125.13609778599991,50.232367255000085],[-125.16698157499985,50.247259833000115],[-125.18000240799985,50.26349518400015],[-125.21149654899995,50.31810130400014],[-125.21247311099984,50.32225169499999],[-125.22374426999993,50.322333075000145],[-125.23477128799986,50.31757233300005],[-125.2458389959999,50.314357815],[-125.25715084499988,50.31883372600007],[-125.26838131399991,50.326239325000145],[-125.27700761599989,50.32664622600005],[-125.28604081899991,50.32404205900014],[-125.31261145699996,50.319810289000046],[-125.32119706899988,50.314154364000146],[-125.32774817599994,50.307359117000104],[-125.33600826699985,50.3017438820001],[-125.36021887899993,50.29498932500008],[-125.38219153599994,50.29629140800007],[-125.3980606759999,50.3078473980001],[-125.40420488199996,50.33218008000007],[-125.39435787699985,50.349514065000065],[-125.37165279899989,50.35101959800012],[-125.32917232999985,50.34271881700015],[-125.3137100899999,50.34967682500003],[-125.31114661399988,50.36326732],[-125.3140763009999,50.38027578300013],[-125.31484941299993,50.3973656270001],[-125.31012936099984,50.411281643000066],[-125.30044511599988,50.42747630400011],[-125.28795325399994,50.43740469000012],[-125.23448645699993,50.41437409100014],[-125.22301184799989,50.411566473],[-125.21617591099987,50.40908437700007],[-125.20490475199989,50.39622630400005],[-125.19884192599989,50.39109935100005]]],[[[-125.50226803299986,50.413804429],[-125.50324459499986,50.40493398600013],[-125.5920304029999,50.38800690300015],[-125.60899817599996,50.39093659100008],[-125.62067623599987,50.38873932500009],[-125.63581295499986,50.38251373900012],[-125.74347896999987,50.377346096000124],[-125.76622473899988,50.37970612200017],[-125.77025305899984,50.38092682500008],[-125.78083248599991,50.385728257],[-125.78184973899997,50.389349677000055],[-125.78213456899991,50.39325592700014],[-125.7833552729999,50.39740631700009],[-125.7791641919999,50.40143463700014],[-125.7717992829999,50.40403880400005],[-125.7349340489999,50.41071198100009],[-125.68765214799987,50.41034577000009],[-125.6564021479999,50.41787344000015],[-125.63597571499992,50.42548248900009],[-125.61558997299996,50.43040599200005],[-125.60806230399987,50.43431224200005],[-125.59300696499987,50.43789297100001],[-125.54686438699986,50.44342682500003],[-125.52342688699987,50.44171784100002],[-125.50666256399985,50.43081289300015],[-125.50226803299986,50.413804429]]],[[[-125.4156794909999,50.35960521000014],[-125.44774329299989,50.353705145],[-125.4865616529999,50.35765208499999],[-125.51406816299992,50.36823151200004],[-125.53205318899988,50.37287018400015],[-125.54478919199991,50.37783437700001],[-125.53978430899987,50.3844261740001],[-125.51939856699991,50.39081452],[-125.49950110599991,50.40106842700014],[-125.4901016919999,50.413275458000115],[-125.49103756399985,50.42194245000011],[-125.47801673099988,50.42951080900015],[-125.40859941299995,50.44773997600013],[-125.39769446499986,50.451971747000144],[-125.38853919199988,50.45905182500012],[-125.36799068899984,50.46112702000012],[-125.33958899599992,50.452541408000044],[-125.32787024599993,50.433742580000064],[-125.33800208199989,50.412054755],[-125.34634355399993,50.40228913000005],[-125.35496985599987,50.39809804900012],[-125.38206946499989,50.39350006700009],[-125.3785294259999,50.38914622599999],[-125.37653561099987,50.38255442900011],[-125.37857011599989,50.375555731000034],[-125.39240475199989,50.36741771000011],[-125.4156794909999,50.35960521000014]]],[[[-125.78506425699992,50.41193268400012],[-125.80426998599988,50.408596096000096],[-125.8236384759999,50.40884023600013],[-125.87173417899987,50.41620514500012],[-125.90664628799988,50.41705963700004],[-125.94863847599986,50.424994208],[-125.96544348899987,50.43821849200004],[-125.95392818899984,50.443264065000065],[-125.93907630099989,50.44456614800008],[-125.88857988199987,50.46124909100011],[-125.85090084499987,50.46942780200011],[-125.80581620999992,50.475043036000116],[-125.79369055899993,50.472357489000146],[-125.7700089179999,50.45917389500009],[-125.7661026679999,50.453924872000115],[-125.76390540299992,50.44867584800012],[-125.75601152299994,50.443182684000085],[-125.74323482999992,50.436672268],[-125.73916581899992,50.428615627000156],[-125.74913489499994,50.421820380000135],[-125.75674394399988,50.419826565],[-125.78506425699992,50.41193268400012]]],[[[-126.58177649599995,50.59113190300014],[-126.5759171209999,50.58860911700013],[-126.53770911399994,50.583807684000064],[-126.52440344999994,50.57941315300015],[-126.5184424249999,50.575694106000114],[-126.51895751799988,50.57001569100011],[-126.5301784119999,50.56520673700014],[-126.54300229099994,50.56268776100016],[-126.58101593099988,50.55650481900009],[-126.61489824099988,50.55267975500006],[-126.65029863199989,50.55874258000013],[-126.6579483709999,50.56391022300014],[-126.64834550699993,50.569891669000164],[-126.6536759109999,50.57859935100005],[-126.66803951699988,50.58478424700002],[-126.67088782499992,50.58958567900011],[-126.66124426999994,50.590969143000095],[-126.62702389199988,50.58982982000005],[-126.61042232999992,50.591294664000095],[-126.59699459499993,50.59430573100011],[-126.58690344999987,50.59487539300009],[-126.58177649599995,50.59113190300014]]],[[[-126.23485266799992,50.557074286000116],[-126.24461829299987,50.554144598],[-126.25584876199986,50.55524323100015],[-126.26821855399992,50.55499909100011],[-126.2798966139999,50.55048248900006],[-126.30003821499994,50.537298895],[-126.30549068899988,50.53457265800013],[-126.41270911399995,50.52741120000009],[-126.4190567699999,50.523993231000084],[-126.44815019399998,50.519232489],[-126.62450110599987,50.53457265800013],[-126.5841365229999,50.548081773000106],[-126.3675837879999,50.58295319200015],[-126.36221269399995,50.58563873900012],[-126.34675045499985,50.598822333000086],[-126.3365372389999,50.603461005],[-126.32485917899989,50.60480377800009],[-126.28807532499991,50.603461005],[-126.26146399599988,50.58087799700002],[-126.24486243399991,50.57151927299999],[-126.2266739569999,50.569281317],[-126.23485266799992,50.557074286000116]]],[[[-126.37441972599991,50.604966539000046],[-126.42564856699988,50.58856842700014],[-126.4375707669999,50.587713934000035],[-126.45262610599991,50.588120835000055],[-126.48542232999985,50.57855866100006],[-126.50011145699995,50.578924872000165],[-126.51085364499995,50.58185455900009],[-126.51317298099991,50.58445872599999],[-126.50658118399986,50.58576080900009],[-126.5114639959999,50.58795807500009],[-126.52953040299992,50.592230536],[-126.53795325399989,50.59593333500013],[-126.53624426999987,50.59845612200014],[-126.54572506399988,50.5982933610001],[-126.55850175699993,50.60317617400006],[-126.54759680899986,50.61371491100011],[-126.47126217399992,50.62824127800015],[-126.40379798099993,50.629828192],[-126.38459225199986,50.62860748900009],[-126.36351477799985,50.618841864000146],[-126.37441972599991,50.604966539000046]]],[[[-59.33751380099997,50.64443594000004],[-59.31444251199991,50.603461005],[-59.30650794199993,50.59662506700009],[-59.295969204999984,50.57233307500009],[-59.298003709999904,50.564113674],[-59.30321204299992,50.56085846600014],[-59.31004798099991,50.55902741100009],[-59.3170466789999,50.55499909100011],[-59.3274633449999,50.54621002800015],[-59.34105383999986,50.53803131700015],[-59.35293535099989,50.53754303600006],[-59.3580216139999,50.551581122000115],[-59.35366777299993,50.56427643400015],[-59.323882615999935,50.61025625200013],[-59.335519985999916,50.61603424700009],[-59.34251868399991,50.61273834800015],[-59.34679114499991,50.60651276200009],[-59.350575324999845,50.603461005],[-59.3624568349999,50.604681708000115],[-59.36571204299994,50.605861721000124],[-59.367583787999905,50.610052802000084],[-59.375396287999905,50.62051015800015],[-59.383371548999946,50.638820705],[-59.3762914699999,50.652329819999984],[-59.35936438699991,50.655951239000146],[-59.33751380099997,50.64443594000004]]],[[[-127.03709876199987,50.66250234600012],[-126.93464107999989,50.66030508000012],[-126.89476477799991,50.66592031500015],[-126.88133704299992,50.659735419000164],[-126.85928300699992,50.6457380230001],[-126.83971106699995,50.633734442],[-126.83307857999989,50.625230210000055],[-126.83804277299994,50.62189362200003],[-126.84675045499992,50.624986070000105],[-126.8537491529999,50.628851630000106],[-126.86245683499989,50.62860748900009],[-126.87238521999988,50.62482330900015],[-126.89712480399997,50.62099844000012],[-127.00324459499991,50.62645091400016],[-127.03746497299987,50.64008209800012],[-127.06965084499984,50.633734442],[-127.1221410799999,50.62995026200015],[-127.15038001199986,50.63996002800015],[-127.1414688789999,50.6547712260001],[-127.12352454299986,50.66632721600014],[-127.10749264199988,50.67108795800014],[-127.07331295499988,50.66889069200006],[-127.03709876199987,50.66250234600012]]],[[[-55.476714647999955,50.776922919000135],[-55.47472083199992,50.77326080900009],[-55.471750454999885,50.770086981000034],[-55.465687628999916,50.76727936400009],[-55.4977107409999,50.75161367400001],[-55.509348110999895,50.74233633000016],[-55.506662563999924,50.73379140800012],[-55.5235896479999,50.721014716000084],[-55.58238684799988,50.698960679],[-55.59007727799991,50.70929596600011],[-55.5982559889999,50.716864325000145],[-55.60708574099987,50.718980210000055],[-55.61652584499989,50.71332428600009],[-55.64273027299993,50.723334052000055],[-55.646392381999874,50.732611395],[-55.62336178299992,50.76105377800003],[-55.623443162999905,50.766343492000104],[-55.62621008999986,50.772894598000086],[-55.62669837099995,50.78119538000006],[-55.619943813999896,50.791815497000115],[-55.61107337099986,50.795640367000125],[-55.60358639199998,50.79169342700014],[-55.59821529899992,50.78339264500006],[-55.59605872299994,50.77472565300015],[-55.575428839999915,50.77899811400008],[-55.528065558999884,50.79466380400005],[-55.510365363999966,50.805121161000116],[-55.49136308499996,50.80857982000013],[-55.46642005099994,50.80426666900003],[-55.452300584999904,50.79621002800008],[-55.465687628999916,50.78839752800009],[-55.46947180899991,50.785589911000145],[-55.47191321499986,50.78286367400007],[-55.47484290299988,50.78095123900011],[-55.479969855999904,50.78095123900011],[-55.476714647999955,50.776922919000135]]],[[[-128.6034377279999,50.785067854000104],[-128.61588798299994,50.78281726100006],[-128.63512425299993,50.78985552100012],[-128.63798879399988,50.799230435000155],[-128.63907612599988,50.80467027600012],[-128.62688755399992,50.81188525400016],[-128.60653034399988,50.81231765400004],[-128.60372837,50.81982677300006],[-128.5908424149999,50.81264668100009],[-128.5740732989999,50.80853307000016],[-128.5722465469999,50.80261710800006],[-128.57257831499993,50.7951581870001],[-128.58906923899985,50.794320175000124],[-128.6015141189999,50.79305622599998],[-128.6034377279999,50.785067854000104]]],[[[-126.18590247299994,50.74160390800013],[-126.23289954299989,50.72695547100004],[-126.24469967399995,50.71743398600001],[-126.26821855399992,50.685288804000045],[-126.26439368399991,50.66461823100006],[-126.28807532499991,50.65460846600014],[-126.35020911399994,50.6518415390001],[-126.43464107999988,50.669134833],[-126.4600723949999,50.66486237200009],[-126.4493302069999,50.6569684920001],[-126.44896399599989,50.65045807500003],[-126.45677649599986,50.645982164000074],[-126.47028561099984,50.64443594000004],[-126.48485266799987,50.646185614000025],[-126.50861568899988,50.654974677000084],[-126.5214737619999,50.65802643400015],[-126.57599850199988,50.65228913],[-126.60342363199993,50.65485260600009],[-126.61766516799993,50.67230866100006],[-126.60179602799991,50.67450592700005],[-126.59019934799989,50.679348049000126],[-126.58482825399993,50.68781159100017],[-126.58771725199986,50.701076565],[-126.54995683499989,50.73289622600005],[-126.52700761599992,50.74371979400006],[-126.50780188699987,50.73993561400012],[-126.47887122299997,50.75690338700018],[-126.42829342399996,50.794501044000086],[-126.3979386059999,50.80825429900001],[-126.37954667899993,50.81150950700005],[-126.34113521999984,50.81281159100014],[-126.32347571499992,50.815741278000175],[-126.28945878799989,50.828558661],[-126.27228756399987,50.83002350500005],[-126.24421139199987,50.81631094000012],[-126.2327774729999,50.80646393400012],[-126.22362219999992,50.79507070500015],[-126.21983801999991,50.78465403900015],[-126.2134496739999,50.77155182500009],[-126.18529212099989,50.759711005000135],[-126.17886308499988,50.75079987200009],[-126.18590247299994,50.74160390800013]]],[[[-58.846323060999936,50.78944288999999],[-58.86110798599996,50.77959453300003],[-58.88086334399992,50.78473669400016],[-58.8856083299999,50.794251331000126],[-58.86118637199985,50.83305051900005],[-58.851636260999896,50.812654072000086],[-58.846323060999936,50.78944288999999]]],[[[-128.6822418129999,50.80373350400005],[-128.69155134499994,50.80154297900002],[-128.70444397699987,50.807222525],[-128.71584237199994,50.81441346700007],[-128.71479854199987,50.823867783000125],[-128.7089332039999,50.83144276600008],[-128.70214004499985,50.83655887300007],[-128.6979379879999,50.831687930000115],[-128.68286283799983,50.82903882700013],[-128.6733632759999,50.828260071],[-128.66217744899984,50.82503186300006],[-128.67048918899994,50.8188889500001],[-128.6662661429999,50.81351792500005],[-128.65500702199986,50.808794782000135],[-128.66342644699986,50.804639644000176],[-128.6822418129999,50.80373350400005]]],[[[-57.20937513499987,50.841055575],[-57.20293549099995,50.834421868],[-57.19182670399988,50.82816059700012],[-57.18656187199994,50.82300050500011],[-57.19473062799992,50.82004317500012],[-57.20814971099989,50.815604971000155],[-57.22331538599988,50.81005644300008],[-57.22563353099994,50.80341369000017],[-57.240205346999915,50.79564866600001],[-57.2524660899999,50.79673915400018],[-57.26181505299991,50.7996774000001],[-57.251900340999896,50.80264287700005],[-57.23965077899996,50.805979180000165],[-57.24608243499992,50.80929106399999],[-57.25892602799988,50.8089046540001],[-57.270023430999885,50.80999515200007],[-57.27705597899992,50.81736296300015],[-57.275338763999855,50.82732631100011],[-57.26310556099994,50.836935260000146],[-57.25026545599987,50.84064133600002],[-57.23215696099996,50.841032012000184],[-57.228640189999936,50.83660953200011],[-57.22163843299995,50.83956793800009],[-57.20937513499987,50.841055575]]],[[[-126.61766516799993,50.83616771000014],[-126.5881241529999,50.82225169500007],[-126.5754288399999,50.81370677300005],[-126.56240800699993,50.80206940300003],[-126.57371985599991,50.802150783],[-126.59373938699987,50.80711497600008],[-126.60342363199993,50.80825429900001],[-126.61534583199997,50.80597565300003],[-126.63756262899993,50.79718659100017],[-126.6728409499999,50.79254791900006],[-126.74120032499985,50.77472565300015],[-126.74583899599986,50.77667877800012],[-126.76081295499989,50.78611888200011],[-126.76854407499991,50.78839752800009],[-126.76842200399993,50.786281643000095],[-126.77253170499989,50.78164297100006],[-126.77798417899993,50.777004299000126],[-126.78213456899987,50.77472565300015],[-126.79613196499992,50.77496979400011],[-126.85484778599994,50.78603750200013],[-126.88609778599992,50.81159088700003],[-126.90510006399991,50.821926174000126],[-126.90510006399991,50.829331773000135],[-126.89199785099994,50.829331773000135],[-126.87946529899993,50.83429596600016],[-126.86266028599994,50.83612702000015],[-126.82628333199996,50.83616771000014],[-126.81554114499993,50.82831452000006],[-126.80459550699987,50.81403229400017],[-126.79344641799985,50.807318427000105],[-126.78213456899987,50.821926174000126],[-126.78433183499988,50.83234284100003],[-126.77065995999993,50.83633047100001],[-126.68244381399987,50.83437734600015],[-126.66612708199992,50.83616771000014],[-126.65729732999988,50.8432477890001],[-126.64997311099985,50.84780508000016],[-126.64098059799994,50.84979889500009],[-126.6337784499999,50.84808991100009],[-126.62775631399991,50.84406159100002],[-126.62254798099991,50.839422919000086],[-126.61766516799993,50.83616771000014]]],[[[-127.88247636599993,50.86688873900011],[-127.57013912699992,50.79511139500015],[-127.53587805899994,50.78095123900011],[-127.51805579299989,50.77977122599999],[-127.50519771999987,50.773342190000086],[-127.49559485599987,50.76235586100004],[-127.48790442599994,50.74738190300009],[-127.4903051419999,50.74648672100001],[-127.49331620999988,50.73993561400012],[-127.4944962229999,50.73126862200003],[-127.49132239499994,50.723537502],[-127.48131262899996,50.71336497600008],[-127.4772843089999,50.707424221000124],[-127.47362219999984,50.698960679],[-127.45824133999992,50.71653880400014],[-127.44505774599986,50.737860419000086],[-127.42902584499986,50.75189850500014],[-127.40534420499985,50.74738190300009],[-127.42129472599996,50.72894928600005],[-127.40363521999986,50.707749742000075],[-127.37295488199993,50.68915436400006],[-127.35008704299993,50.67853424700003],[-127.26325436099984,50.655910549000154],[-127.23468990799985,50.64443594000004],[-127.2192276679999,50.63471100500006],[-127.20954342399996,50.62710195500013],[-127.1985570949999,50.62128327000006],[-127.17943274599993,50.61709219000015],[-127.1264542309999,50.62002187700007],[-127.11115475199985,50.61709219000015],[-127.10558020699992,50.61237213700004],[-127.10094153599988,50.605414130000135],[-127.09780839799991,50.59926992400007],[-127.09691321499993,50.59662506700009],[-127.08739173099993,50.594427802],[-127.0806778639999,50.594916083000086],[-127.07355709499993,50.59617747599999],[-127.06273352799994,50.59662506700009],[-127.01130123599984,50.589300848000065],[-126.99449622299994,50.58917877800009],[-127.00129146999987,50.58917877800009],[-126.99380449099989,50.58893463700015],[-126.98688717399989,50.587795315000115],[-126.9803360669999,50.58567942900011],[-126.97398841099995,50.58295319200015],[-126.97899329299992,50.57990143400015],[-126.98884029899993,50.57208893400014],[-126.99449622299994,50.569281317],[-126.97716223899994,50.56297435100007],[-126.87328040299987,50.562201239000146],[-126.85728919199987,50.55914948100015],[-126.85045325399996,50.551581122000115],[-126.8550512359999,50.54389069200009],[-126.86266028599994,50.53611888199999],[-126.86424719999988,50.53009674700017],[-126.85045325399996,50.52765534100014],[-126.84447180899994,50.53034088700012],[-126.83657792899989,50.54336172100001],[-126.8293350899999,50.54816315300008],[-126.82306881399991,50.549017645],[-126.7894180979999,50.548570054000024],[-126.76553300699992,50.54441966400015],[-126.67931067599997,50.51752350499999],[-126.65526282499992,50.51406484600009],[-126.63149980399993,50.50714752800009],[-126.59532630099991,50.4802106790001],[-126.56932532499992,50.47931549700003],[-126.56297766799989,50.48427969000009],[-126.56224524599988,50.498114325000174],[-126.55565344999988,50.50096263200011],[-126.54845130099996,50.49982330900018],[-126.5370173819999,50.49469635600015],[-126.5314021479999,50.49355703300013],[-126.52110755099989,50.492865302],[-126.49258378799988,50.48737213700014],[-126.48363196499986,50.48305898600016],[-126.45982825399996,50.474839585000055],[-126.36440995999995,50.486761786],[-126.33971106699997,50.483547268000144],[-126.29385331899988,50.46942780200011],[-126.27163652299991,50.46625397300015],[-126.19310462099989,50.46971263200005],[-126.11725826699984,50.45538971600017],[-126.02354895699992,50.42560455900015],[-125.95750891799993,50.395005601000136],[-125.93578040299984,50.39109935100005],[-125.83751380099989,50.387274481000034],[-125.78913326699987,50.376898505000106],[-125.7526749339999,50.35903554900006],[-125.74034583199995,50.35639069200008],[-125.58922278599994,50.37067291900017],[-125.56432044199991,50.36615631700012],[-125.52440344999984,50.34707265800013],[-125.47671464799988,50.339016018],[-125.45445716099992,50.32880280200005],[-125.43618730399994,50.313625393000066],[-125.42471269399992,50.294907945000105],[-125.43219967399989,50.28750234600001],[-125.41966712099989,50.27252838700018],[-125.41051184799989,50.256903387000094],[-125.3880509109999,50.19855377800009],[-125.34959876199991,50.14411041900008],[-125.36953691299988,50.13857656500009],[-125.35008704299987,50.12490469000015],[-125.3184301419999,50.11147695500016],[-125.30186926999993,50.106594143000095],[-125.29271399599986,50.090399481000034],[-125.25914466099994,50.064642645],[-125.26085364499993,50.04852936400012],[-125.22301184799989,50.01776764500011],[-125.21910559799989,50.00995514500015],[-125.21947180899993,49.99103424700003],[-125.21589107999984,49.983058986000074],[-125.20531165299988,49.96922435100008],[-125.1878962879999,49.937811591000134],[-125.17833411399994,49.92499420800003],[-124.88206946499989,49.72492096600011],[-124.87291419199991,49.71259186400006],[-124.86986243399991,49.69505442900011],[-124.87584387899993,49.677435614],[-124.89098059799993,49.67206452000015],[-124.9732559889999,49.68496328300016],[-124.9797257149999,49.68170807500011],[-124.9762263659999,49.668036200000174],[-124.96792558499993,49.66250234600015],[-124.95783443899987,49.65961334800012],[-124.9486384759999,49.65375397300009],[-124.94131425699987,49.64691803600005],[-124.91828365799991,49.630804755],[-124.90949459499984,49.62132396],[-124.83804277299988,49.51727936400006],[-124.81786048099987,49.51178620000003],[-124.80842037699985,49.50665924700003],[-124.80459550699993,49.49970123900012],[-124.79963131399988,49.48078034100011],[-124.7947485019999,49.47256094],[-124.77257239499994,49.46149323100017],[-124.72362219999987,49.465073960000055],[-124.70197506399988,49.45547109600006],[-124.69196529899989,49.449204820000105],[-124.66812089799991,49.443060614000146],[-124.65758216099994,49.438381252000035],[-124.64244544199995,49.416815497000115],[-124.63707434799989,49.41107819200015],[-124.5960180329999,49.39118073100006],[-124.54507402299988,49.377183335],[-124.44530188699989,49.36269765800013],[-124.3872777989999,49.36066315300012],[-124.35997473899991,49.35663483300014],[-124.33885657499991,49.34589264500011],[-124.32900956899988,49.33877187700007],[-124.31956946499986,49.33490631700006],[-124.20848548099988,49.30805084800009],[-124.19835364499993,49.309149481000034],[-124.18541419199993,49.31378815300015],[-124.1746720039999,49.314886786],[-124.1591690749999,49.31045156500012],[-124.10948645699989,49.280096747000144],[-124.12677975199989,49.2743187520001],[-124.1630753249999,49.271673895],[-124.17837480399994,49.260239976000044],[-124.16486568899988,49.254868882],[-124.15168209499993,49.25543854400014],[-124.12287350199989,49.260239976000044],[-124.1085505849999,49.258124091000056],[-124.08458411399995,49.24872467700011],[-124.0713598299999,49.24656810100011],[-124.00938880099996,49.24591705900014],[-123.97769120999989,49.2409528670001],[-123.95494544199995,49.22919342700014],[-123.94981848899994,49.223049221000146],[-123.94579016799986,49.21523672100007],[-123.94627844999987,49.20844147300012],[-123.9641820949999,49.203070380000085],[-123.96214758999987,49.19700755399999],[-123.95124264199991,49.18451569200006],[-123.93077551999994,49.14354075700005],[-123.91710364499991,49.13491445500016],[-123.90453040299991,49.133612372000144],[-123.88361568899987,49.13670482000005],[-123.84166419199998,49.12763092700014],[-123.82835852799985,49.129950262000094],[-123.81338456899991,49.11859772300012],[-123.80492102799987,49.10398997600011],[-123.79784094999991,49.087144273000106],[-123.78734290299985,49.069037177],[-123.75690670499988,49.04214101800012],[-123.75137285099986,49.0279808610001],[-123.77375240799988,49.020697333],[-123.76488196499996,49.00787995000014],[-123.76089433499996,48.99583567900014],[-123.76488196499996,48.98753489800005],[-123.77989661399995,48.98590729400003],[-123.79385331899994,48.99347565300009],[-123.80410722599987,49.005357164000046],[-123.8160294259999,49.01268138200013],[-123.83511308499988,49.00641510600009],[-123.83511308499988,49.00018952000012],[-123.78734290299985,48.96539948100017],[-123.73973548099987,48.9428571640001],[-123.73277747299997,48.93439362200014],[-123.7179255849999,48.921535549000126],[-123.59382076699983,48.836981512000094],[-123.57994544199993,48.82160065300015],[-123.59186764199987,48.81460195500007],[-123.59609941299989,48.811428127],[-123.60049394399988,48.804388739000146],[-123.60228430899986,48.79730866100009],[-123.59870357999989,48.794134833000115],[-123.59044348899991,48.795477606000084],[-123.58250891799995,48.79775625200007],[-123.57506262899996,48.79824453300007],[-123.56826738199995,48.794134833000115],[-123.56529700399994,48.78091054900006],[-123.56655839799993,48.76072825700005],[-123.57298743399987,48.746242580000015],[-123.58503170499985,48.749701239],[-123.59878495999989,48.75844961100007],[-123.61758378799993,48.76325104400014],[-123.63658606699991,48.76386139500012],[-123.65078691299995,48.75995514500011],[-123.65078691299995,48.75311920800003],[-123.6315811839999,48.74213288000006],[-123.56086178299985,48.712144272999986],[-123.5519913399999,48.70538971600014],[-123.5308731759999,48.684963283000066],[-123.52668209499987,48.678045966000084],[-123.52993730399992,48.66474030200005],[-123.53697669199987,48.657619533000016],[-123.54234778599994,48.650295315],[-123.54092363199986,48.63646067900011],[-123.53465735599993,48.62811920800014],[-123.52529863199989,48.62067291900014],[-123.51695716099991,48.61082591400004],[-123.51366126199989,48.595445054],[-123.51756751199989,48.580389716000084],[-123.52586829299986,48.57208893400009],[-123.53482011599989,48.56537506700006],[-123.54092363199986,48.55451080900015],[-123.53547115799984,48.540106512000094],[-123.5135798819999,48.547552802],[-123.47203528599991,48.57501862200002],[-123.47850501199991,48.59080638200008],[-123.47500566299992,48.62124258000013],[-123.47887122299993,48.63646067900011],[-123.43732662699993,48.65009186400006],[-123.46178137899987,48.663234768],[-123.47179114499997,48.672430731000176],[-123.47203528599991,48.68488190300009],[-123.4630020819999,48.689642645],[-123.44603430899991,48.69208405200014],[-123.42829342399992,48.69245026200006],[-123.41681881399988,48.69110748900006],[-123.40538489499994,48.68634674700014],[-123.39924068899987,48.681545315000065],[-123.39679928299985,48.67389557500006],[-123.39635169199993,48.66095612200003],[-123.39415442599993,48.65704987200006],[-123.39028886599992,48.64618561400006],[-123.3886612619999,48.63483307500009],[-123.39321855399993,48.62962474199999],[-123.39004472599987,48.62042877800012],[-123.35533606699993,48.56073639500012],[-123.34577389199983,48.523382880000085],[-123.33706620999995,48.50804271000011],[-123.32119706899992,48.495835679000045],[-123.30223548099991,48.48419830900003],[-123.28718014199988,48.46832916900003],[-123.28062903599991,48.44839101800012],[-123.28709876199993,48.424139716000134],[-123.30247962099986,48.41429271000011],[-123.3303930329999,48.40477122600011],[-123.35704505099991,48.400580145],[-123.43732662699993,48.44464752800009],[-123.45335852799994,48.43357982000005],[-123.4802139959999,48.39232005400011],[-123.4962458979999,48.38320547100001],[-123.51109778599988,48.380519924000126],[-123.51512610599994,48.373765367000104],[-123.51569576699991,48.36473216400019],[-123.51984615799985,48.35529205900018],[-123.52790279899989,48.34833405199999],[-123.54548092399992,48.33657461100002],[-123.5545955069999,48.32794830900009],[-123.55060787699995,48.31305573100014],[-123.57217363199995,48.306097723000065],[-123.5952856109999,48.310044664000046],[-123.59557044199991,48.32794830900009],[-123.6124568349999,48.32684967700005],[-123.63996334499986,48.316799221000096],[-123.6539200509999,48.31427643400015],[-123.66779537699989,48.31761302299999],[-123.6850479809999,48.33218008000004],[-123.7053930329999,48.338039455000064],[-123.73375403599992,48.350775458000115],[-123.78062903599988,48.36286041900003],[-123.84117591099988,48.36188385600015],[-123.8907771479999,48.366888739],[-124.1314998039999,48.433498440000065],[-124.38914954299987,48.517971096000124],[-124.41421464799986,48.51976146000011],[-124.43789628799988,48.52553945500007],[-124.42967688699989,48.53851959800006],[-124.40778561099985,48.55239492400007],[-124.39069576699991,48.56073639500012],[-124.40143795499984,48.56525299700009],[-124.43468176999993,48.56915924700009],[-124.44530188699989,48.56818268400009],[-124.45726477799991,48.56273021000008],[-124.46751868399993,48.55597565300003],[-124.48566646999983,48.54022858300008],[-124.4935603509999,48.54214101800012],[-124.51357988199986,48.54706452],[-124.66539466099992,48.57322825700014],[-124.73119055899991,48.59638092699999],[-124.76935787699989,48.61505768400015],[-124.7999161449999,48.63922760600015],[-124.81623287699983,48.64712148600013],[-125.09398352799987,48.73004791900014],[-125.10875403599994,48.738755601000136],[-125.14391028599992,48.774359442],[-125.15982011599992,48.78681061400003],[-125.18517005099994,48.80097077000012],[-125.1711319649999,48.81590403900016],[-125.11001542899994,48.84194570500016],[-125.10513261599986,48.847845770000085],[-125.0955704419999,48.86347077000006],[-125.0889786449999,48.86981842699999],[-125.07843990799985,48.87616608300011],[-125.06875566299989,48.88019440300008],[-125.05817623599984,48.88226959800012],[-125.03449459499991,48.88373444200009],[-125.0219620429999,48.88654205900003],[-125.01146399599985,48.89199453300007],[-125.00698808499989,48.90021393400015],[-125.00963294199987,48.91429271000011],[-125.01378333199992,48.92137278900016],[-125.01366126199996,48.92812734600001],[-125.00357011599986,48.94122955900018],[-124.98412024599989,48.956000067000055],[-124.9632462229999,48.962958075000145],[-124.91828365799991,48.97223541900008],[-124.88267981699994,48.99054596600014],[-124.84699459499991,49.02045319200015],[-124.8194473949999,49.05801015800013],[-124.80842037699985,49.09918854400003],[-124.80089270699989,49.11676666900014],[-124.78697669199991,49.133490302],[-124.77940833199993,49.152044989],[-124.79881751199986,49.18878815300008],[-124.80842037699985,49.24656810100011],[-124.81460527299991,49.242865302000084],[-124.82062740799992,49.237982489],[-124.82555091099987,49.23216380400005],[-124.82892818899988,49.2254906270001],[-124.82852128799988,49.217718817],[-124.82201087099992,49.181382554],[-124.82201087099992,49.140122789000046],[-124.82803300699989,49.11985911700005],[-124.84203040299987,49.103908596000124],[-124.85802161399995,49.08958567900005],[-124.86986243399991,49.074652411],[-124.87922115799986,49.032294012000094],[-124.88801021999991,49.013983466000056],[-124.90770423099985,49.00641510600009],[-124.92467200399993,49.00283437700001],[-124.96764075399989,48.98794179900007],[-124.99274654899989,48.98590729400003],[-125.04482988199993,48.99274323100014],[-125.05646725199985,48.990627346000124],[-125.0760391919999,48.98118724200013],[-125.08584550699992,48.97907135600012],[-125.11123613199996,48.9838727890001],[-125.12922115799991,48.99298737200009],[-125.1468806629999,48.99852122600011],[-125.1714981759999,48.99274323100014],[-125.20189368399988,48.966742255000085],[-125.2212621739999,48.954779364000146],[-125.24038652299987,48.95547109600006],[-125.26504472599986,48.96303945500013],[-125.31517493399987,48.96531810100002],[-125.33600826699985,48.97223541900008],[-125.3024796209999,49.00311920800006],[-125.28282630099996,49.01536692900011],[-125.26085364499993,49.020697333],[-125.26085364499993,49.02753327],[-125.29718990799984,49.02631256700008],[-125.30870520699995,49.02753327],[-125.31696529899995,49.031398830000015],[-125.32502193899988,49.03733958500014],[-125.33340410099994,49.04181549700009],[-125.34284420499986,49.04116445500013],[-125.35387122299991,49.027248440000065],[-125.35899817599993,49.00641510600009],[-125.36628170499985,48.987372137000094],[-125.40050208199992,48.97260163000011],[-125.42979895699992,48.94399648600013],[-125.4489639959999,48.93744538000006],[-125.45221920499985,48.93439362200014],[-125.45543372299991,48.927557684000035],[-125.4605606759999,48.92072174700003],[-125.46947180899986,48.91766998900012],[-125.48936926999995,48.918646552],[-125.49836178299988,48.920477606000176],[-125.50047766799989,48.923814195000105],[-125.51439368399987,48.92649974199999],[-125.5311173169999,48.9325218770001],[-125.5471085279999,48.94025299700009],[-125.55882727799988,48.94830963700004],[-125.57306881399988,48.955796617000104],[-125.60655676999991,48.961859442],[-125.62022864499995,48.96881745000009],[-125.6261287099999,48.97553131700012],[-125.63341223899992,48.987860419000086],[-125.63703365799988,48.99274323100014],[-125.67235266799989,49.017808335000055],[-125.69823157499992,49.029120184000035],[-125.70933997299994,49.03742096600003],[-125.7358292309999,49.053045966000084],[-125.83625240799986,49.069037177],[-125.84927324099996,49.07391998900006],[-125.86278235599993,49.080755927],[-125.87169348899988,49.09015534100011],[-125.87100175699992,49.10260651200004],[-125.86156165299992,49.11001211100002],[-125.8309220039999,49.114406643],[-125.81578528599991,49.123032945000105],[-125.8002823559999,49.11212799700003],[-125.78477942599989,49.104925848],[-125.76756751199987,49.10346100500011],[-125.74689693899987,49.109442450000145],[-125.7397354809999,49.11432526200012],[-125.7012833319999,49.134711005],[-125.69225012899989,49.13336823100012],[-125.68358313699991,49.14842357000013],[-125.64565995999988,49.16400788000011],[-125.63703365799988,49.174627997000144],[-125.63231360599988,49.18793366100009],[-125.62230383999987,49.19619375200006],[-125.61294511599995,49.20636627800012],[-125.61034094999987,49.2254906270001],[-125.69859778599994,49.181097723000065],[-125.72325598899992,49.16058991100003],[-125.74669348899991,49.148138739],[-125.75511633999986,49.168890692],[-125.75373287699988,49.22235748900012],[-125.74282792899989,49.25177643400009],[-125.74054928299985,49.267401434000085],[-125.75031490799986,49.26365794500005],[-125.76305091099992,49.25372955900015],[-125.77733313699991,49.247707424000154],[-125.79112708199993,49.247015692],[-125.80211341099987,49.25340403900013],[-125.80313066299992,49.26251862200003],[-125.80199133999989,49.300197658000016],[-125.79869544199997,49.311468817],[-125.79010982999986,49.322699286],[-125.78160559799991,49.33844635600015],[-125.7756241529999,49.35541413000011],[-125.77476966099991,49.37010325700011],[-125.78160559799991,49.37010325700011],[-125.79279537699983,49.359930731000176],[-125.8063044909999,49.343451239],[-125.81777910099994,49.32404205900018],[-125.82469641799987,49.295599677000055],[-125.82998613199992,49.283840236000074],[-125.83690344999991,49.27313873900006],[-125.84373938699994,49.267035223000065],[-125.85171464799988,49.26642487200003],[-125.86489824099995,49.276190497000144],[-125.8772680329999,49.280096747000144],[-125.90119381399985,49.27448151200015],[-125.9398087229999,49.24091217700011],[-125.95604407499988,49.23289622599999],[-125.97736568899992,49.235174872000144],[-125.99437415299988,49.24233633000009],[-126.01016191299992,49.255072333000136],[-126.02806555899988,49.273871161],[-126.00890051999993,49.29230377800003],[-125.97874915299988,49.30402252800012],[-125.95091712099993,49.32025788000005],[-125.92878170499985,49.37303294500005],[-125.91002356699991,49.398382880000085],[-125.89899654899995,49.42218659100017],[-125.91197669199995,49.438381252000035],[-125.92178300699989,49.41982656500004],[-125.9584854809999,49.39329661700005],[-125.96662350199989,49.380072333000115],[-125.96983801999995,49.35785553600006],[-125.97923743399987,49.34178294499999],[-125.9942520819999,49.33038971600002],[-126.01439368399984,49.32233307500017],[-126.0236710279999,49.32868073100011],[-126.04645748599982,49.337836005],[-126.0590714179999,49.34589264500011],[-126.07648678299988,49.38373444200006],[-126.0716446609999,49.39630768400015],[-126.05817623599991,49.41193268400003],[-126.05532792899989,49.421047268000116],[-126.0543513659999,49.438381252000035],[-126.05508378799995,49.445298570000105],[-126.0628962879999,49.44440338700004],[-126.12193762899996,49.426214911000145],[-126.14126542899989,49.423570054000045],[-126.15656490799985,49.41840241100014],[-126.1739802729999,49.41535065300014],[-126.17764238199987,49.41111888200014],[-126.18016516799987,49.40672435100005],[-126.18569902299991,49.40424225500011],[-126.1978653639999,49.404608466000056],[-126.21353105399986,49.407375393],[-126.22712154899992,49.41278717700005],[-126.23289954299989,49.421047268000116],[-126.23574785099993,49.43549225499999],[-126.24351966099992,49.446275132],[-126.25479081899992,49.45050690300012],[-126.26821855399992,49.44521719000012],[-126.2587784499999,49.431463934000035],[-126.25670325399999,49.415920315000115],[-126.26130123599991,49.40033600500011],[-126.27513587099989,49.381903387000094],[-126.28429114499988,49.36652252800015],[-126.28807532499991,49.36269765800013],[-126.29735266799987,49.36253489799999],[-126.30256100199986,49.36709219000012],[-126.30577551999991,49.37274811400003],[-126.30923417899992,49.37628815300008],[-126.33771725199983,49.38605377800003],[-126.3499649729999,49.39215729400003],[-126.3607071609999,49.40053945500007],[-126.37555904899995,49.40745677299999],[-126.39509029899995,49.41400788000005],[-126.40501868399986,49.42137278900007],[-126.39118404899995,49.43089427300004],[-126.40575110599988,49.442084052000055],[-126.42137610599985,49.465562242000125],[-126.43211829299989,49.47256094],[-126.44835364499991,49.47052643400017],[-126.4653214179999,49.460150458],[-126.47948157499991,49.44745514500012],[-126.48737545499989,49.438381252000035],[-126.4752498039999,49.41840241100014],[-126.46393795499992,49.40558502800012],[-126.46434485599993,49.395656643],[-126.48737545499989,49.38373444200006],[-126.51040605399996,49.377752997000144],[-126.52782141799992,49.37885163],[-126.54230709499988,49.38568756700012],[-126.55626380099994,49.39679596600014],[-126.57266191299995,49.41429271],[-126.57428951699987,49.425685940000065],[-126.56834876199986,49.438137111000074],[-126.56240800699993,49.458889065000065],[-126.56273352799984,49.46088288000011],[-126.56240800699993,49.48615143400015],[-126.5604141919999,49.49628327000012],[-126.5578507149999,49.50324127800011],[-126.55760657499995,49.51040273600016],[-126.56240800699993,49.520941473000036],[-126.55626380099994,49.520941473000036],[-126.55626380099994,49.52716705900018],[-126.56297766799989,49.53131745000012],[-126.56769771999988,49.535793361000074],[-126.57677161399991,49.5482445330001],[-126.57095292899993,49.55414459800012],[-126.57087154899996,49.559759833000115],[-126.57184811099985,49.56647370000017],[-126.56932532499992,49.57558828300007],[-126.5650935539999,49.58356354400002],[-126.56257076699988,49.587388414000046],[-126.54881751199989,49.596014716000134],[-126.53302975199982,49.60248444200015],[-126.49909420499988,49.61058177300008],[-126.45254472599996,49.63629791900003],[-126.41706295499986,49.63849518400012],[-126.3365372389999,49.630804755],[-126.21816972599989,49.64569733300014],[-126.19668535099986,49.654486395],[-126.18569902299991,49.6574567730001],[-126.17198645699999,49.657416083000115],[-126.14891516799992,49.651556708],[-126.13792883999987,49.650051174000126],[-126.08950761599996,49.66087474200013],[-126.0920304029999,49.66998932500003],[-126.09854081899987,49.67780182500012],[-126.10749264199991,49.683294989000146],[-126.11709550699989,49.68545156500015],[-126.19497636599995,49.681382554],[-126.29678300699989,49.66083405200014],[-126.3243708979999,49.64826080900014],[-126.33877519399988,49.649644273000135],[-126.45323645699989,49.67430247600011],[-126.47716223899995,49.683986721000096],[-126.48737545499989,49.69505442900011],[-126.47940019399992,49.71181875200013],[-126.41201738199995,49.77171458499999],[-126.41120357999992,49.77822500200006],[-126.42560787699989,49.78099192900013],[-126.4527481759999,49.790228583],[-126.46735592399993,49.79230377800012],[-126.47370357999988,49.78436920800006],[-126.47227942599987,49.74970123900009],[-126.4777725899999,49.73493073100009],[-126.49356035099996,49.71893952],[-126.5167130199999,49.70840078300013],[-126.54531816299989,49.70441315300015],[-126.57310950399994,49.706935940000065],[-126.59349524599993,49.7158063820001],[-126.60521399599992,49.732123114000146],[-126.63727779899989,49.81712474199999],[-126.64134680899987,49.83331940300003],[-126.64439856699994,49.87348053600011],[-126.64972896999991,49.89801666900014],[-126.66372636599986,49.89687734600001],[-126.68346106699991,49.88491445500007],[-126.70588131399992,49.877183335000076],[-126.72638912699988,49.88239166900017],[-126.74893144399996,49.89557526200012],[-126.76720130099993,49.91242096600003],[-126.78294837099989,49.94245026200015],[-126.80223548099991,49.95457591400015],[-126.84361731699993,49.97345612200008],[-126.84260006399988,49.96063873900006],[-126.81086178299991,49.94334544500008],[-126.80264238199992,49.92812734600009],[-126.80850175699987,49.91437409100016],[-126.82258053299992,49.89972565300015],[-126.83946692599991,49.888169664000124],[-126.85387122299997,49.88344961100001],[-126.87165279899995,49.88247304900015],[-126.88341223899992,49.883124091000084],[-126.89159094999995,49.89101797100007],[-126.91022701699993,49.95742422100001],[-126.91934160099993,49.97345612200008],[-126.92198645699992,49.96845123900005],[-126.92349199099995,49.95880768400018],[-126.92552649599988,49.952337958000086],[-126.92857825399997,49.93325429900001],[-126.92983964799988,49.883124091000084],[-126.93614661399994,49.866644598],[-126.94493567599989,49.86359284100003],[-127.07298743399987,49.86225006700011],[-127.09825598899991,49.85830312700013],[-127.12193762899993,49.85773346600017],[-127.14191646999993,49.866644598],[-127.22907467399993,49.94647858300014],[-127.23753821499987,49.9618187520001],[-127.23094641799992,49.97650788],[-127.19985917899989,50.00751373900003],[-127.1938370429999,50.011135158000066],[-127.18838456899995,50.011419989],[-127.18358313699987,50.013251044000086],[-127.17943274599993,50.021185614000146],[-127.1795955069999,50.02619049700009],[-127.18626868399994,50.028998114000146],[-127.18626868399994,50.03424713700004],[-127.17756100199988,50.053412177],[-127.16429602799994,50.07123444200006],[-127.14753170499992,50.084418036000116],[-127.1061091789999,50.095526434000035],[-127.08873450399992,50.110744533000016],[-127.08311926999993,50.13076406500009],[-127.09691321499993,50.15094635600012],[-127.10643469999994,50.143255927],[-127.10895748599985,50.13495514500012],[-127.11058508999987,50.126369533],[-127.11733964799988,50.11737702000009],[-127.12498938699993,50.11493561400006],[-127.14745032499994,50.11054108300006],[-127.16388912699983,50.09735748900012],[-127.18968665299987,50.09564850500011],[-127.2154434889999,50.099432684000035],[-127.2272029289999,50.106594143000095],[-127.23444576699988,50.11713288000014],[-127.25121008999992,50.13190338700003],[-127.27049719999987,50.145209052000055],[-127.28526770699993,50.15094635600012],[-127.29206295499986,50.14427317900005],[-127.28783118399994,50.128404039000046],[-127.27989661399988,50.10932038000006],[-127.27562415299988,50.09292226800015],[-127.27725175699989,50.07632070500009],[-127.28331458199989,50.06244538],[-127.29580644399991,50.05093008000007],[-127.3165583979999,50.04108307500006],[-127.33946692599991,50.03485748900008],[-127.36253821499984,50.03253815300003],[-127.3848363919999,50.03449127800015],[-127.40534420499985,50.04108307500006],[-127.44054114499991,50.06061432500003],[-127.45689856699993,50.07412344],[-127.46743730399989,50.08950429900012],[-127.46947180899991,50.107855536],[-127.45885169199997,50.116441148000106],[-127.41901607999989,50.13043854400014],[-127.48790442599994,50.13043854400014],[-127.47874915299987,50.14354075700014],[-127.46288001199991,50.15615469],[-127.42642167899987,50.178859768000066],[-127.46344967399989,50.186957098000086],[-127.49547278599988,50.16860586100013],[-127.52456620999996,50.143255927],[-127.55280514199993,50.13043854400014],[-127.59361731699995,50.12006256700006],[-127.61416581899994,50.118801174000154],[-127.63125566299995,50.13043854400014],[-127.63560950399997,50.145412502],[-127.63084876199987,50.16014232],[-127.62116451699991,50.17365143400015],[-127.61082923099988,50.18504466400013],[-127.64989173099985,50.17804596600014],[-127.68871008999987,50.16014232],[-127.72472083199993,50.135972397999986],[-127.77415930899988,50.09194570500007],[-127.78473873599987,50.08502838700014],[-127.79637610599988,50.08270905200011],[-127.80451412699988,50.08600495000014],[-127.82135982999988,50.10000234600001],[-127.82652747299997,50.10317617400007],[-127.87564042899993,50.10602448100012],[-127.8981013659999,50.114081122000144],[-127.90623938699993,50.13043854400014],[-127.89683997299991,50.14297109600007],[-127.84044348899995,50.175441799000154],[-127.77529863199992,50.23285553600005],[-127.75523841099997,50.238104559000064],[-127.74697831899988,50.24323151200014],[-127.74795488199996,50.253973700000174],[-127.7551163399999,50.259466864],[-127.76500403599991,50.25885651200004],[-127.78612219999991,50.253973700000174],[-127.8043106759999,50.25287506700012],[-127.81094316299989,50.255601304],[-127.82628333199993,50.26996491100009],[-127.83348548099985,50.27448151200004],[-127.8509822259999,50.28123607000008],[-127.84093176999994,50.29173411700005],[-127.8134659499999,50.294745184000035],[-127.80260169199991,50.3017438820001],[-127.80028235599984,50.314398505],[-127.80890865799986,50.32176341400019],[-127.8220922519999,50.323431708],[-127.83360755099994,50.31883372600007],[-127.84268144399994,50.318752346000096],[-127.86620032499988,50.33771393400009],[-127.87800045499988,50.34271881700015],[-127.88634192599993,50.339748440000115],[-127.90684973899988,50.32591380400011],[-127.91869055899993,50.32225169499999],[-127.94399980399989,50.32786692900008],[-127.9680883449999,50.34223053600006],[-127.97883053299982,50.35700104400002],[-127.96426347599989,50.36383698100015],[-127.95425370999993,50.393377997000115],[-127.94212805899991,50.41437409100014],[-127.92613684799994,50.42527903900013],[-127.92613684799994,50.432114976000044],[-127.93130449099992,50.440985419000086],[-127.93114173099987,50.45233795800008],[-127.9257706369999,50.462103583000115],[-127.9155167309999,50.46625397300015],[-127.8804825509999,50.45844147300006],[-127.86412512899997,50.459540106000084],[-127.85781816299992,50.47370026200003],[-127.82437089799988,50.46637604400003],[-127.79849199099998,50.47186920800006],[-127.77399654899993,50.481594143],[-127.74453691299993,50.486761786],[-127.59117591099992,50.48574453300012],[-127.56956946499994,50.47842031500012],[-127.5523982409999,50.46409739800005],[-127.49779212099995,50.400783596],[-127.47549394399992,50.38373444200015],[-127.4469294909999,50.376898505000106],[-127.48224850199986,50.43524811400012],[-127.50788326699994,50.46596914300003],[-127.55785071499986,50.492987372000144],[-127.56248938699989,50.52106354400017],[-127.54963131399987,50.54389069200009],[-127.52261308499992,50.54197825700011],[-127.50047766799992,50.56720612200009],[-127.42369544199991,50.58124420800014],[-127.41901607999989,50.603461005],[-127.5117895169999,50.589056708000115],[-127.53229732999988,50.579250393],[-127.54580644399994,50.57021719000009],[-127.55614173099984,50.572495835000055],[-127.56476803299985,50.579169012000115],[-127.57323157499988,50.58295319200015],[-127.58747311099991,50.593207098000065],[-127.60024980399994,50.60024648600013],[-127.61457271999993,50.603461005],[-127.81989498599991,50.61115143400012],[-127.87767493399996,50.630113023000135],[-127.86595618399984,50.61725495000012],[-127.8433324859999,50.60390859600009],[-127.81843014199984,50.593410549000126],[-127.79946855399994,50.58917877800009],[-127.68651282499987,50.58917877800009],[-127.63483639199985,50.579657294000114],[-127.61082923099988,50.57062409100008],[-127.59373938699994,50.55874258000013],[-127.59260006399991,50.54360586100013],[-127.61485755099994,50.53660716400015],[-127.6626684239999,50.53457265800013],[-127.83739173099985,50.49017975500011],[-127.8459366529999,50.50625234600009],[-127.86587480399987,50.504380601000136],[-127.90623938699993,50.486761786],[-127.95051021999988,50.4772809920001],[-127.99697831899992,50.47402578300016],[-128.0139867829999,50.48086172100007],[-128.0325414699999,50.49217357000005],[-128.05003821499994,50.49579498900012],[-128.06387285099993,50.47931549700003],[-128.05589758999992,50.478501695000105],[-128.0519913399999,50.47699616100006],[-128.0467423169999,50.46686432500012],[-128.04173743399988,50.4599470070001],[-128.04352779899995,50.45473867400001],[-128.06017005099991,50.452582098000036],[-128.0674942699999,50.45429108300011],[-128.07750403599988,50.45856354400003],[-128.0873917309999,50.464260158],[-128.1043188139999,50.476629950000145],[-128.13158118399988,50.48212311400009],[-128.1452530589999,50.486761786],[-128.1531469389999,50.492621161000145],[-128.1647843089999,50.50690338700004],[-128.17316646999987,50.51406484600009],[-128.18932044199994,50.52240631700006],[-128.2001846999999,50.526109117000104],[-128.21068274599983,50.52765534100014],[-128.2180069649999,50.53021881700015],[-128.22252356699994,50.53656647300009],[-128.22622636599988,50.54437897300006],[-128.23818925699993,50.56293366100009],[-128.2420955069999,50.586004950000024],[-128.2481990229999,50.59662506700009],[-128.2892146479999,50.61025625200013],[-128.31004798099988,50.60773346600011],[-128.3198136059999,50.609808661000116],[-128.32396399599986,50.62051015800015],[-128.3362930979999,50.63678620000009],[-128.33869381399984,50.647162177],[-128.32705644399994,50.6518415390001],[-128.3047989569999,50.654974677000084],[-128.28433183499993,50.66209544500013],[-128.2777400379999,50.669134833],[-128.2967016269999,50.67230866100006],[-128.3080134759999,50.671128648000135],[-128.32872473899994,50.66600169500013],[-128.34105383999992,50.66486237200009],[-128.34911048099994,50.66766998900014],[-128.36172441299993,50.674383856000176],[-128.37344316299988,50.682318427000055],[-128.37857011599993,50.68911367400007],[-128.3843481109999,50.70897044499999],[-128.4058731759999,50.74408600500005],[-128.4058731759999,50.76105377800003],[-128.4172257149999,50.771877346000124],[-128.40680904899997,50.78050364800013],[-128.3865453769999,50.786322333000086],[-128.3683162099999,50.78839752800009],[-128.36803137899994,50.790838934000035],[-128.34821529899995,50.805121161000116],[-128.33999589799993,50.80695221600011],[-128.3034561839999,50.80206940300003],[-128.2671606109999,50.81207916900003],[-128.2265518869999,50.83173248900006],[-128.18675696499992,50.84503815300009],[-128.1526586579999,50.83616771000014],[-128.09788977799988,50.865790106000084],[-128.07697506399992,50.87030670800014],[-128.05622311099992,50.86896393400015],[-128.01768958199995,50.86220937700001],[-127.91836503799992,50.87079498900011],[-127.88247636599993,50.86688873900011]]],[[[-127.65598930399989,50.837846328000026],[-127.67413096999994,50.837565585000064],[-127.7289165569999,50.84607584900006],[-127.75258635999992,50.859236825000025],[-127.78246992399988,50.86291479000012],[-127.81738525999991,50.868585568000114],[-127.83436003699984,50.87872275700006],[-127.83480638199991,50.88913711500014],[-127.77911951599987,50.90152377100004],[-127.7448520599999,50.91250372300003],[-127.71345751499989,50.91300310400011],[-127.68818450399989,50.900899451000086],[-127.66920431699985,50.88035405800004],[-127.6634788019999,50.86065129600017],[-127.65598930399989,50.837846328000026]]],[[[-127.83897864499988,50.911566473],[-127.84019934799991,50.90326569200012],[-127.85155188699989,50.89663320500016],[-127.86416581899996,50.892523505],[-127.87498938699989,50.890366929000024],[-127.88532467399996,50.89276764500015],[-127.89500891799992,50.89691803600009],[-127.92332923099988,50.89667389500014],[-127.93716386599995,50.90485260600014],[-127.95445716099998,50.90228913000014],[-127.9810277989999,50.90704987200006],[-127.98302161399995,50.916734117000104],[-127.94001217399992,50.92487213700012],[-127.93004309799993,50.929917710000055],[-127.92308508999994,50.936712958000086],[-127.91539466099991,50.939642645],[-127.8605850899999,50.935736395],[-127.84776770699996,50.929266669000086],[-127.84557044199997,50.92291901200015],[-127.8436580069999,50.91909414300015],[-127.83897864499988,50.911566473]]],[[[-55.55638587099992,50.90643952000009],[-55.547596808999856,50.89081452],[-55.56916256399995,50.89093659100017],[-55.58775794199994,50.8959821640001],[-55.62336178299992,50.911932684000114],[-55.61237545499994,50.92267487200002],[-55.61339270699992,50.93134186400011],[-55.63329016799991,50.94977448100015],[-55.63914954299986,50.961493231000034],[-55.62946529899989,50.965399481000034],[-55.602853969999956,50.96653880400008],[-55.56265214799987,50.98598867400007],[-55.54190019399996,50.987779039000074],[-55.52782141799992,50.97272370000005],[-55.534779425999915,50.95819733299999],[-55.5431208979999,50.950913804],[-55.55333411399991,50.94521719],[-55.565581834999875,50.93549225500006],[-55.57306881399995,50.923041083000136],[-55.56737219999988,50.915269273000135],[-55.55638587099992,50.90643952000009]]],[[[-127.54198157499991,51.05215078300016],[-127.55622311099984,51.05036041900017],[-127.56383216099997,51.05158112200008],[-127.57567298099991,51.04999420800006],[-127.59117591099992,51.05190664300003],[-127.59984290299994,51.05902741100006],[-127.61017818899984,51.070624091000084],[-127.61168372299991,51.075100002000156],[-127.5995987619999,51.07998281500012],[-127.55785071499986,51.089300848000065],[-127.54531816299995,51.08978913000006],[-127.52692623599991,51.08372630400005],[-127.52651933499989,51.06622955900009],[-127.54198157499991,51.05215078300016]]],[[[-58.569155891999856,51.100744661000036],[-58.58147877099992,51.080003471000126],[-58.62120867199988,51.091775514000105],[-58.587326841999925,51.11968490400007],[-58.54695159999997,51.15041888300006],[-58.46263371999993,51.17626420200004],[-58.427356878999944,51.167123201],[-58.457034788999856,51.14067138000011],[-58.495659221999915,51.12095497100007],[-58.569155891999856,51.100744661000036]]],[[[-58.36290490099986,51.202219449000054],[-58.411009737999876,51.20163209700014],[-58.41388223399988,51.22217663300002],[-58.388163024999926,51.238934305000114],[-58.30757706099988,51.25226989500014],[-58.307070918999926,51.23582226200001],[-58.32629371199997,51.2204911890001],[-58.36290490099986,51.202219449000054]]],[[[-58.41209876199994,51.28180573100012],[-58.41209876199994,51.267564195000105],[-58.40953528599994,51.26341380400008],[-58.408273891999926,51.258856512000115],[-58.40550696499985,51.255438544000114],[-58.398426886999886,51.25454336100002],[-58.40859941299993,51.24725983300002],[-58.45571855399993,51.225043036000145],[-58.47419186099995,51.22040436400012],[-58.56289628799993,51.23338450700011],[-58.55370032499987,51.24530670800005],[-58.535878058999884,51.25800202000011],[-58.5021052729999,51.27505117400007],[-58.47948157499993,51.2779808610001],[-58.43358313699986,51.27619049700011],[-58.41209876199994,51.28180573100012]]],[[[-55.88402258999989,51.617010809000035],[-55.86807206899988,51.61261627800015],[-55.85387122299996,51.61603424700014],[-55.83934485599994,51.621527411],[-55.82258053299992,51.623846747000144],[-55.8771052729999,51.57123444200012],[-55.88093014199989,51.55280182500008],[-55.843088344999956,51.55556875200015],[-55.86302649599994,51.527411200000174],[-55.89024817599994,51.500921942],[-55.872873501999976,51.49555084800015],[-55.85619055899994,51.495794989],[-55.82258053299992,51.500921942],[-55.75373287699995,51.500921942],[-55.71914628799993,51.49339427300005],[-55.680978969999984,51.48065827],[-55.64305579299986,51.47296784100017],[-55.60968990799998,51.48041413000006],[-55.62580318899995,51.48680247600007],[-55.66344153599994,51.49176666900003],[-55.678578253999945,51.500921942],[-55.68346106699991,51.51337311400012],[-55.68419348899994,51.52704498900006],[-55.68805904899994,51.53803131700012],[-55.73786373599992,51.554999091000084],[-55.728627081999946,51.576971747000115],[-55.71214758999986,51.58494700700005],[-55.725738084999925,51.55556875200015],[-55.70246334499989,51.56574127800009],[-55.65929114499991,51.59979889500011],[-55.63215084499998,51.610052802000055],[-55.643910285999965,51.5990257830001],[-55.64907792899995,51.593085028000175],[-55.64606686099995,51.58844635600015],[-55.64020748599992,51.58559804900001],[-55.63703365799995,51.57977936400006],[-55.62889563699994,51.57160065300015],[-55.61034094999994,51.56663646],[-55.589751756999895,51.565619208000115],[-55.57555091099988,51.5692406270001],[-55.57860266799989,51.57330963700014],[-55.58177649599995,51.574896552],[-55.5853165359999,51.57542552300007],[-55.5892227859999,51.57664622599999],[-55.53160559799994,51.600083726000044],[-55.5140681629999,51.60394928600006],[-55.479969855999904,51.593451239],[-55.47744706899988,51.578802802000084],[-55.47207597599993,51.579250393000066],[-55.46711178299998,51.58600495000012],[-55.465687628999916,51.590277411000116],[-55.42699133999985,51.58698151200018],[-55.40851803299992,51.57941315300003],[-55.40420488199993,51.56297435100005],[-55.41706295499995,51.550604559000085],[-55.437163865999906,51.5541039080001],[-55.45787512899991,51.56199778900016],[-55.47252356699991,51.56297435100005],[-55.46373450399994,51.554754950000145],[-55.437163865999906,51.53994375200006],[-55.431548631999895,51.538763739000146],[-55.43333899599989,51.52806224200013],[-55.438303188999924,51.515611070000105],[-55.44591223899988,51.50531647300009],[-55.455718553999894,51.500921942],[-55.48619544199993,51.508368231000176],[-55.53457597599996,51.508368231000176],[-55.52318274599989,51.49713776200018],[-55.49400794199994,51.48354726800012],[-55.481922980999855,51.47508372599999],[-55.454335089999915,51.479559637000065],[-55.45811926999994,51.46328359600001],[-55.471424933999884,51.44041575700011],[-55.47252356699991,51.425238348000114],[-55.482492641999926,51.41254303600006],[-55.49185136599993,51.388373114000146],[-55.50047766799985,51.37742747599999],[-55.51569576699992,51.36855703300013],[-55.52428137899994,51.37197500200013],[-55.53197180899985,51.37982819200012],[-55.559152798999975,51.39008209800015],[-55.56627356699991,51.3898786480001],[-55.56932532499991,51.38084544499999],[-55.57115637899988,51.36644114800013],[-55.56826738199995,51.36017487200017],[-55.55846106699994,51.357570705000064],[-55.554758266999976,51.35529205900009],[-55.55785071499988,51.35040924700002],[-55.56480872299997,51.34552643400015],[-55.5724177729999,51.34324778900019],[-55.59215247299994,51.34365469],[-55.6009008449999,51.34560781500015],[-55.60968990799998,51.35008372600011],[-55.60993404899992,51.34052155200011],[-55.608265753999916,51.32782623900006],[-55.60387122299991,51.315985419000114],[-55.59605872299994,51.30914948100017],[-55.61742102799988,51.30438873900009],[-55.64024817599991,51.31476471600008],[-55.663238084999875,51.32916901200015],[-55.68541419199994,51.33641185100008],[-55.805165167999945,51.352687893],[-55.86729895699994,51.34324778900019],[-55.887277798999946,51.34422435100008],[-55.89533443899995,51.34634023600007],[-55.90453040299985,51.35008372600011],[-55.92613684799994,51.363592841000084],[-55.93724524599989,51.3686384140001],[-55.952300584999904,51.370550848000065],[-55.94709225199989,51.36505768400006],[-55.93862870999996,51.35008372600011],[-55.966867641999926,51.34658437700004],[-55.98888098899991,51.357814846000124],[-56.00983639199995,51.37368398600013],[-56.03490149599989,51.384222723],[-56.03490149599989,51.37616608300008],[-56.036732550999936,51.369696356000176],[-56.039296027999846,51.36391836100002],[-56.041086391999926,51.357570705000064],[-56.05109615799992,51.36635976800015],[-56.062855597999906,51.37059153900015],[-56.0758357409999,51.37164948100012],[-56.089507615999935,51.370550848000065],[-56.089507615999935,51.364406643],[-56.08714758999989,51.358099677000055],[-56.09406490799998,51.335760809000035],[-56.096302863999966,51.32282135600012],[-56.08104407499991,51.32221100500006],[-56.03425045499991,51.31435781500009],[-56.02122962099994,51.30914948100017],[-56.0157771479999,51.27960846600003],[-56.01439368399991,51.27505117400007],[-56.0196833979999,51.26947663000006],[-56.02774003799993,51.26666901200012],[-56.03766842399992,51.26605866100006],[-56.048491990999935,51.267564195000105],[-56.04161536399991,51.26048411700005],[-56.01439368399991,51.24770742400001],[-56.02940833199994,51.24315013200005],[-56.061634894999884,51.239691473000065],[-56.075795050999915,51.23338450700011],[-56.04039466099991,51.22186920800008],[-56.01842200399989,51.218247789000124],[-56.01398678299992,51.21303945500013],[-56.01130123599992,51.20612213700004],[-56.00694739499994,51.19928620000012],[-55.98106848899994,51.16917552299999],[-55.96568762899989,51.15900299700003],[-55.94546464799987,51.15835195500007],[-55.954335089999915,51.17377350500011],[-55.95913652299989,51.17877838700015],[-55.95872962099989,51.1803246110001],[-55.95807857999995,51.185003973000036],[-55.95799719999988,51.19171784100014],[-55.95913652299989,51.19928620000012],[-55.91095943899995,51.20237864799999],[-55.88841712099988,51.20962148600002],[-55.86729895699994,51.223822333000115],[-55.84845943899992,51.23102448100015],[-55.773833787999905,51.22040436400012],[-55.76447506399995,51.21747467699999],[-55.751210089999915,51.21063873900008],[-55.72948157499985,51.19586823100009],[-55.719105597999935,51.18431224199999],[-55.7206111319999,51.18012116100014],[-55.72752844999991,51.177801825000174],[-55.733225063999974,51.171942450000024],[-55.73680579299986,51.16547272300012],[-55.741322394999905,51.15387604400003],[-55.739125128999916,51.14276764500009],[-55.72264563699994,51.13784414300012],[-55.71873938699994,51.13202545800008],[-55.724110480999904,51.11888255400011],[-55.73289954299986,51.104966539000046],[-55.73940995999996,51.096869208000115],[-55.733143683999906,51.083075262000094],[-55.74331620999996,51.07013580900009],[-55.76178951699998,51.0602074240001],[-55.78038489499996,51.055324611000046],[-55.78693600199994,51.05923086100001],[-55.79625403599991,51.066473700000145],[-55.80467688699986,51.06907786700005],[-55.80825761599993,51.05902741100006],[-55.80435136599993,51.04975006700012],[-55.79503333199989,51.04266998900006],[-55.78380286399988,51.03782786699999],[-55.77415930899991,51.03538646000014],[-55.80825761599993,51.00812409100014],[-55.81505286399993,50.99787018400012],[-55.82017981699997,50.98769765800007],[-55.826242641999954,50.97882721600003],[-55.8356013659999,50.97272370000005],[-55.8356013659999,50.96653880400008],[-55.82721920499992,50.96059804900015],[-55.82249915299994,50.95237864800005],[-55.81578528599988,50.931789455000015],[-55.832834438999924,50.926336981000176],[-55.839507615999906,50.934759833000115],[-55.842681443999965,50.94708893400018],[-55.849273240999935,50.953517971000096],[-55.860178188999896,50.947577216000134],[-55.868763800999915,50.93353913000011],[-55.873117641999926,50.91730377800015],[-55.8710017569999,50.9050153670001],[-55.86270097599993,50.90940989799999],[-55.85684160099987,50.91132233300006],[-55.851144985999895,50.91010163000014],[-55.843088344999956,50.9050153670001],[-55.85676021999989,50.89899323100009],[-55.86790930899991,50.89028554900004],[-55.87515214799993,50.87860748900012],[-55.87718665299988,50.86347077000012],[-55.892201300999886,50.89695872600008],[-55.902821417999945,50.89728424700008],[-55.92503821499988,50.884588934000035],[-55.93968665299991,50.870754299000126],[-55.96178137899989,50.83567942900005],[-56.00694739499994,50.78839752800009],[-56.02969316299987,50.77069733299999],[-56.03111731699994,50.76727936400009],[-56.05028235599991,50.75678131700011],[-56.06476803299995,50.73590729400014],[-56.08063717399989,50.72064850500008],[-56.10374915299994,50.72695547100004],[-56.09740149599992,50.73419830900003],[-56.09288489499994,50.74233633000016],[-56.09024003799996,50.75128815300009],[-56.089507615999935,50.76105377800003],[-56.10700436099998,50.750392971000096],[-56.1190486319999,50.753485419000164],[-56.137277798999975,50.77472565300015],[-56.12743079299986,50.79682038000006],[-56.12425696499989,50.80206940300003],[-56.132191535999965,50.82982005400011],[-56.12523352799988,50.85541413],[-56.112538214999915,50.88007233300008],[-56.10374915299994,50.9050153670001],[-56.12930253799993,50.90192291900003],[-56.14785722599993,50.893215236000124],[-56.161366339999915,50.87824127800012],[-56.17202714799993,50.85663483300003],[-56.151234503999945,50.85590241100009],[-56.14354407499993,50.84174225500006],[-56.14484615799992,50.82135651200015],[-56.15094967399992,50.80206940300003],[-56.155344204999885,50.7958031270001],[-56.17202714799993,50.77781810100005],[-56.16982988199993,50.772894598000086],[-56.16047115799992,50.764797268000066],[-56.1583552729999,50.76105377800003],[-56.15982011599996,50.75527578300016],[-56.16478430899991,50.745917059000035],[-56.16519120999993,50.73993561400012],[-56.162180141999926,50.72085195500013],[-56.157704230999855,50.70669179900001],[-56.14834550699993,50.69550202],[-56.13044186099995,50.685288804000045],[-56.10582434799994,50.68353913000006],[-56.09561113199993,50.67926666900014],[-56.10008704299989,50.66860586100002],[-56.127023891999954,50.643011786000145],[-56.137277798999975,50.637518622000115],[-56.14085852799985,50.633937893000144],[-56.187408006999874,50.59861888200011],[-56.21934973899988,50.58368561400009],[-56.23289954299986,50.569281317],[-56.242787238999966,50.53310781500009],[-56.25023352799994,50.52765534100014],[-56.32225501199988,50.52765534100014],[-56.32225501199988,50.52024974200005],[-56.29674231699988,50.51410553600009],[-56.27481035099996,50.512437242000075],[-56.266428188999896,50.50629303600009],[-56.281320766999954,50.486761786],[-56.314442511999886,50.45941803600011],[-56.35016842399992,50.43829987200003],[-56.365834113999874,50.42479075700005],[-56.397043423999946,50.38743724199999],[-56.41161048099988,50.376898505000106],[-56.427845831999946,50.375677802000105],[-56.43724524599986,50.382473049000126],[-56.44416256399995,50.391506252000156],[-56.45254472599993,50.3973656270001],[-56.50035559799994,50.39109935100005],[-56.481312628999945,50.37457916900017],[-56.45177161399991,50.371161200000145],[-56.42951412699995,50.362127997000144],[-56.432118292999945,50.32843659100014],[-56.44416256399995,50.304388739],[-56.46231035099996,50.277248440000086],[-56.48436438699986,50.25360748900006],[-56.50780188699994,50.24030182500003],[-56.50413977799988,50.21881745000012],[-56.523426886999914,50.196437893000095],[-56.60533606699996,50.135972397999986],[-56.61766516799992,50.13043854400014],[-56.63068600199989,50.13080475500008],[-56.64378821499986,50.13458893400009],[-56.657541469999984,50.136297919000114],[-56.67227128799988,50.13043854400014],[-56.64972896999998,50.11896393400012],[-56.64110266799989,50.10993073100012],[-56.646311001999976,50.099188544000086],[-56.66486568899998,50.08270905200011],[-56.71397864499991,50.05133698100015],[-56.72691809799991,50.04108307500006],[-56.73875891799988,50.02680084800015],[-56.77574622299991,49.95075104400014],[-56.78062903599991,49.93488190300003],[-56.78156490799998,49.91815827],[-56.768788214999944,49.93170807500014],[-56.747710740999906,49.949164130000106],[-56.72813880099994,49.95880768400018],[-56.719471808999856,49.94855377800015],[-56.72451738199987,49.93207428600006],[-56.74242102799994,49.89496491100005],[-56.74058997299994,49.88344961100001],[-56.74058997299994,49.877183335000076],[-56.75527910099995,49.87238190300008],[-56.76301021999995,49.86835358300011],[-56.76789303299994,49.86359284100003],[-56.770415818999965,49.85358307500003],[-56.76707923099994,49.84845612200003],[-56.76244055899991,49.84568919500008],[-56.7610977859999,49.84243398600002],[-56.768422003999916,49.83026764500012],[-56.77879798099991,49.818793036],[-56.79063880099997,49.808986721000146],[-56.80207271999993,49.80149974199999],[-56.88182532499988,49.77081940300009],[-56.905100063999974,49.753729559000035],[-56.887440558999884,49.749823309000064],[-56.82843990799992,49.745672919000114],[-56.815744594999956,49.743109442],[-56.81037350199992,49.734035549],[-56.79865475199991,49.732489325000145],[-56.78685462099986,49.73289622600007],[-56.78156490799998,49.729437567000055],[-56.78180904899992,49.69660065300015],[-56.78465735599985,49.69163646000011],[-56.786691860999895,49.68211497600011],[-56.815744594999956,49.62335846600003],[-56.82347571499988,49.593207098],[-56.829335089999915,49.58177317900014],[-56.85667883999989,49.5482445330001],[-56.83779863199996,49.55634186400012],[-56.82176673099988,49.57078685099999],[-56.79523678299992,49.60346100500011],[-56.7408341139999,49.65648021000005],[-56.725331183999884,49.69025299700003],[-56.599720831999946,49.811712958000115],[-56.57290605399987,49.82640208500011],[-56.56924394399991,49.83250560100011],[-56.56598873599995,49.840277411000116],[-56.557769334999875,49.84813060099999],[-56.54751542899993,49.854193427],[-56.51813717399994,49.86367422100001],[-56.48525956899993,49.89288971600005],[-56.46686764199989,49.89765045800014],[-56.42528235599994,49.84568919500008],[-56.41844641799992,49.852972723000065],[-56.42284094999991,49.8705915390001],[-56.42910722599993,49.88694896000011],[-56.426625128999916,49.902655341000084],[-56.40477454299989,49.91815827],[-56.39509029899992,49.91176992400007],[-56.3631892569999,49.89765045800014],[-56.37291419199994,49.92035553600009],[-56.38255774599991,49.93378327000006],[-56.384388800999886,49.94635651200015],[-56.33702551999994,50.0170759140001],[-56.31704667899987,50.03925202000006],[-56.29185950399991,50.04852936400012],[-56.270415818999965,50.05931224200013],[-56.24058997299997,50.106634833000086],[-56.1751602859999,50.14069245000009],[-56.16364498599998,50.14956289300012],[-56.148793097999906,50.155707098000036],[-56.13255774599988,50.15875885600012],[-56.116810675999915,50.158392645],[-56.11888587099995,50.153753973000065],[-56.12218176999996,50.14203522300009],[-56.12425696499989,50.13727448100017],[-56.107329881999895,50.137600002],[-56.09557044199994,50.13336823100009],[-56.094553188999946,50.12783437700007],[-56.10997473899991,50.123602606000055],[-56.098947719999956,50.11310455900018],[-56.08165442599994,50.10516998900003],[-56.06663977799994,50.09617747599999],[-56.06216386599996,50.08270905200011],[-56.06969153599991,50.07050202000012],[-56.09886633999989,50.04633209800012],[-56.10997473899991,50.03424713700004],[-56.12828528599996,49.98883698100003],[-56.137277798999975,49.97345612200008],[-56.14867102799985,49.960028387000094],[-56.19188391799994,49.92499420800003],[-56.15461178299995,49.93406810100011],[-56.12413489499991,49.95555247600013],[-56.0724177729999,50.010931708000115],[-56.05833899599995,50.01797109600009],[-56.01008053299992,50.03119538000011],[-55.99697831899993,50.03082916900003],[-55.993031378999945,50.015529690000065],[-56.003570115999935,50.001166083000086],[-56.03490149599989,49.979641018000066],[-56.003407355999855,49.97158437700013],[-55.98412024599992,49.994574286],[-55.97130286399988,50.02558014500011],[-55.95913652299989,50.04108307500006],[-55.92564856699994,50.03896719000012],[-55.89256751199991,50.031480210000055],[-55.863840298999946,50.01683177300004],[-55.843088344999956,49.993312893],[-55.849273240999935,49.993312893],[-55.84235592399992,49.98314036700005],[-55.803537563999924,49.95636627800015],[-55.79747473899991,49.95575592699999],[-55.791818813999924,49.95770905200014],[-55.78408769399991,49.959133205000015],[-55.777333136999886,49.956122137000094],[-55.77293860599991,49.94940827000006],[-55.77000891799989,49.94245026200015],[-55.76732337099989,49.93866608300014],[-55.74640865799992,49.931952216000084],[-55.72264563699994,49.93121979400017],[-55.71263587099986,49.93447500200001],[-55.70124264199998,49.94220612200003],[-55.691070115999935,49.951483466000084],[-55.68480383999989,49.959133205000015],[-55.69225012899997,49.96662018400017],[-55.6666560539999,49.97606028900019],[-55.61042232999991,49.972357489000146],[-55.58238684799988,49.97345612200008],[-55.570423956999946,49.97724030200011],[-55.49299068899998,50.014390367000104],[-55.49299068899998,50.00751373900003],[-55.47240149599995,49.97870514500009],[-55.46507727799985,49.96255117400001],[-55.465687628999916,49.94489166900011],[-55.47679602799994,49.92951080900015],[-55.49522864499997,49.91913483300006],[-55.51699785099992,49.91323476800012],[-55.53799394399996,49.911322333000086],[-55.575835740999906,49.90167877800009],[-55.648996548999975,49.858954169000086],[-55.69225012899997,49.84931061400012],[-55.71495520699991,49.822211005],[-55.80785071499991,49.801906643],[-55.96165930899991,49.74127838700004],[-55.97280839799993,49.739406643000066],[-55.983631964999944,49.743557033000094],[-55.99254309799997,49.750921942],[-56.001942511999914,49.752508856000034],[-56.01439368399991,49.739406643000066],[-56.0048721999999,49.72650788000014],[-56.02114824099996,49.71478913000006],[-56.06899980399987,49.69843170800014],[-56.062652147999955,49.68292877800003],[-56.08946692599994,49.66299062700012],[-56.15094967399992,49.630804755],[-56.15868079299992,49.62343984600001],[-56.16543535099987,49.61351146],[-56.17023678299995,49.6009789080001],[-56.17202714799993,49.58551666900017],[-56.16543535099987,49.574652411],[-56.15050208199992,49.58563873900014],[-56.12425696499989,49.61652252800009],[-56.097727016999926,49.637640692],[-56.03819739499991,49.673285223000065],[-55.96849524599995,49.70282623900012],[-55.9557185539999,49.705267645000056],[-55.93956458199994,49.706284898000106],[-55.92341061099998,49.709214585000055],[-55.90880286399993,49.71356842700014],[-55.89769446499991,49.71893952],[-55.89207923099991,49.712958075000174],[-55.890980597999885,49.71010976800012],[-55.89024817599994,49.705267645000056],[-55.90807044199991,49.70099518400006],[-55.94131425699993,49.68789297100007],[-55.95913652299989,49.68545156500015],[-55.95913652299989,49.67796458500008],[-55.94294186099995,49.67926666900017],[-55.92613684799994,49.683050848],[-55.91051184799994,49.68939850500011],[-55.89769446499991,49.69843170800014],[-55.890980597999885,49.689439195000105],[-55.87482662699991,49.687974351000044],[-55.8356013659999,49.69163646000011],[-55.83910071499989,49.68463776200004],[-55.84463456899991,49.67829010600009],[-55.85187740799992,49.673529364],[-55.86009680899991,49.67177969],[-55.867990688999896,49.66828034100002],[-55.87157141799989,49.66010163000011],[-55.87368730399987,49.65078359600007],[-55.87718665299988,49.64386627800015],[-55.89053300699987,49.63385651200017],[-55.93862870999996,49.609686591000084],[-55.92951412699995,49.59829336100002],[-55.913400844999984,49.59463125200006],[-55.87718665299988,49.596014716000134],[-55.900786912999905,49.56240469000012],[-55.93736731699994,49.53632233300006],[-55.98062089799993,49.51947663000006],[-56.024281378999916,49.513495184000035],[-56.03490149599989,49.51040273600016],[-56.05418860599991,49.49673086100002],[-56.06216386599996,49.49359772300015],[-56.076893683999856,49.49188873900014],[-56.079701300999915,49.48688385600009],[-56.079701300999915,49.479193427000084],[-56.08576412699989,49.46914297100001],[-56.12051347599996,49.441799221000124],[-56.13072669199991,49.429144598000065],[-56.12254798099988,49.42934804900001],[-56.10008704299989,49.438381252000035],[-56.059966600999864,49.44619375200001],[-55.99193274599992,49.48480866100009],[-55.952300584999904,49.49982330900009],[-55.86436926999994,49.51984284100017],[-55.82201087099995,49.52204010600015],[-55.77415930899991,49.513495184000035],[-55.78246008999989,49.49843984600012],[-55.787831183999856,49.49359772300015],[-55.76805579299992,49.49469635600009],[-55.757435675999886,49.49339427299999],[-55.75031490799992,49.489935614],[-55.7435603509999,49.48843008000012],[-55.728586391999954,49.48232656500014],[-55.71922766799991,49.475653387000094],[-55.72948157499985,49.47256094],[-55.741810675999915,49.473456122000115],[-55.74933834499995,49.475043036000145],[-55.756337042999945,49.475409247000144],[-55.76732337099989,49.47256094],[-55.7655330069999,49.470933335],[-55.770741339999915,49.46430084800012],[-55.779286261999914,49.4566917990001],[-55.787831183999856,49.452053127000156],[-55.76646887899989,49.44830963700004],[-55.73473059799994,49.45384349200005],[-55.678578253999945,49.47256094],[-55.682362433999856,49.45892975500006],[-55.69546464799993,49.440741278000175],[-55.698475714999915,49.42475006700009],[-55.67829342399989,49.42413971600002],[-55.67174231699991,49.42475006700009],[-55.67174231699991,49.41730377800009],[-55.678578253999945,49.40814850500011],[-55.678863084999875,49.39638906500012],[-55.67194576699995,49.38666413],[-55.657460089999915,49.38373444200006],[-55.64476477799985,49.390285549000154],[-55.63756262899991,49.40289948100003],[-55.632476365999906,49.41705963700015],[-55.62645423099991,49.427801825000174],[-55.58238684799988,49.47235748900005],[-55.553822394999905,49.48981354400003],[-55.52090410099993,49.49359772300015],[-55.55052649599986,49.451239325000145],[-55.56371008999991,49.42601146],[-55.56187903599993,49.41107819200015],[-55.56859290299988,49.39940013200005],[-55.57282467399992,49.387437242000104],[-55.573353644999884,49.37518952000015],[-55.56932532499991,49.36269765800013],[-55.54336503799993,49.38336823100015],[-55.53229732999989,49.395982164000046],[-55.52782141799992,49.40766022300012],[-55.52611243399991,49.42413971600002],[-55.52057857999989,49.43598053600009],[-55.50987708199997,49.443060614000146],[-55.49299068899998,49.44521719000012],[-55.49469967399989,49.44879791900011],[-55.49575761599993,49.45184967700003],[-55.49738521999995,49.45502350500008],[-55.50047766799985,49.458889065000065],[-55.4942113919999,49.46979401200015],[-55.48619544199993,49.4799665390001],[-55.47325598899994,49.46063873900006],[-55.46320553299998,49.465562242000125],[-55.45441646999989,49.48114655200011],[-55.44522050699993,49.49359772300015],[-55.428537563999896,49.50006745000014],[-55.37010657499991,49.50665924700003],[-55.376942511999935,49.49359772300015],[-55.36168372299996,49.49673086100002],[-55.35582434799991,49.49982330900009],[-55.349598761999886,49.49359772300015],[-55.4107966789999,49.44257233300006],[-55.431548631999895,49.43089427300004],[-55.431548631999895,49.42475006700009],[-55.40054277299986,49.4311384140001],[-55.34166419199991,49.45819733300014],[-55.314849412999905,49.452053127000156],[-55.33210201699992,49.44318268400012],[-55.39635169199993,49.386948960000105],[-55.43211829299989,49.36884186400012],[-55.44522050699993,49.35586172100004],[-55.420725063999896,49.36408112200003],[-55.391509568999965,49.369574286000145],[-55.37364661399991,49.363104559000035],[-55.38312740799992,49.335353908000066],[-55.36607825399994,49.352972723000086],[-55.34935462099992,49.38080475500006],[-55.33250891799992,49.403143622000165],[-55.314849412999905,49.40424225500011],[-55.3290909499999,49.38996002800003],[-55.31309973899991,49.38865794500013],[-55.28856360599988,49.40078359600012],[-55.28750566299993,49.38996002800003],[-55.29605058499995,49.3719750020001],[-55.309315558999884,49.36591217699999],[-55.325306769999884,49.36334870000009],[-55.34215247299988,49.35586172100004],[-55.33372962099995,49.34931061400012],[-55.32559160099993,49.33893463700004],[-55.318959113999966,49.32672760600014],[-55.314849412999905,49.314886786],[-55.30772864499993,49.31732819200012],[-55.305002407999886,49.319159247000115],[-55.30117753799988,49.32233307500017],[-55.30825761599993,49.334947007000046],[-55.307036912999905,49.34564850499999],[-55.29865475199995,49.353094794000135],[-55.26626542899996,49.361151434000085],[-55.25316321499989,49.37287018400018],[-55.24372311099995,49.38467031500015],[-55.23631751199988,49.38996002800003],[-55.23696855399993,49.39476146000011],[-55.26768958199992,49.42475006700009],[-55.27188066299996,49.436835028000175],[-55.27367102799994,49.452704169000114],[-55.27245032499991,49.46832916900008],[-55.26768958199992,49.4799665390001],[-55.314849412999905,49.53461334800015],[-55.287180141999926,49.535793361000074],[-55.27310136599987,49.539496161000116],[-55.260243292999945,49.5482445330001],[-55.22817949099996,49.537054755],[-55.21979732999992,49.53009674700009],[-55.23289954299989,49.520941473000036],[-55.22573808499993,49.51463450700008],[-55.21768144399991,49.51015859600001],[-55.208607550999886,49.507473049000126],[-55.19884192599994,49.50665924700003],[-55.20230058499996,49.51284414300009],[-55.208973761999914,49.52863190300003],[-55.21247311099989,49.53461334800015],[-55.1934301419999,49.539496161000116],[-55.174631313999946,49.54661692900008],[-55.15566972599996,49.54930247600005],[-55.13609778599988,49.54075755400014],[-55.15038001199988,49.54075755400014],[-55.15038001199988,49.53461334800015],[-55.13853919199991,49.52606842700011],[-55.129994269999884,49.51373932500009],[-55.12482662699989,49.498968817],[-55.12303626199991,49.483099677000084],[-55.12816321499991,49.46637604400014],[-55.14073645699992,49.45506419500008],[-55.15648352799985,49.44476959800015],[-55.171498175999886,49.43089427300004],[-55.16209876199986,49.41791413000006],[-55.17202714799987,49.40078359600012],[-55.18854732999995,49.39203522300014],[-55.19884192599994,49.40424225500011],[-55.213205532999915,49.39052969],[-55.225005662999905,49.3680687520001],[-55.22984778599988,49.34398021000008],[-55.219593878999945,49.31635163000006],[-55.21930904899991,49.27700429900006],[-55.22288977799988,49.264553127000156],[-55.23200436099997,49.25495026200015],[-55.24421139199995,49.248765367000104],[-55.26545162699994,49.24494049700009],[-55.29434160099996,49.23289622599999],[-55.30654863199993,49.223700262000094],[-55.314808722999906,49.212876695000105],[-55.321441209999875,49.20197174700003],[-55.3290909499999,49.19196198100015],[-55.36506100199989,49.17226797100001],[-55.37010657499991,49.16400788000011],[-55.36436926999994,49.15949127800015],[-55.33511308499993,49.15949127800015],[-55.32233639199998,49.157171942],[-55.34215247299988,49.123032945000105],[-55.32070878799996,49.12372467700014],[-55.31236731699988,49.11505768400006],[-55.31395423099991,49.10179271000011],[-55.32233639199998,49.088324286000116],[-55.33714758999985,49.07611725500005],[-55.368397589999915,49.06012604400014],[-55.38312740799992,49.047308661000116],[-55.36949622299997,49.04979075700005],[-55.33531653599988,49.069037177],[-55.31973222599987,49.074611721],[-55.306263800999886,49.07599518400009],[-55.277658657999915,49.074652411],[-55.258208787999905,49.0807152360001],[-55.18447831899987,49.123032945000105],[-55.18447831899987,49.129950262000094],[-55.20799719999994,49.12555573100012],[-55.259673631999874,49.10370514500006],[-55.277658657999915,49.106024481000034],[-55.28726152299989,49.12669505400005],[-55.28229732999995,49.150336005],[-55.26895097599992,49.171454169000086],[-55.25340735599994,49.18451569200006],[-55.25340735599994,49.19196198100015],[-55.282785610999916,49.18488190300009],[-55.28750566299993,49.18451569200006],[-55.28844153599991,49.19456614800005],[-55.28209387899989,49.20355866100006],[-55.272572394999884,49.209947007],[-55.26398678299998,49.212469794000114],[-55.24787350199992,49.21515534100008],[-55.23102779899992,49.221869208000115],[-55.19884192599994,49.23916250200013],[-55.05418860599994,49.29437897300015],[-55.061634894999905,49.30182526200003],[-55.05418860599994,49.30805084800009],[-55.07388261599988,49.333929755],[-55.08043372299994,49.347154039000046],[-55.082142706999946,49.36269765800013],[-55.06281490799992,49.35089752800014],[-55.044097459999875,49.334947007000046],[-55.02721106699988,49.329413153000026],[-55.01317298099991,49.349025783000016],[-54.995269334999875,49.299058335000055],[-54.992746548999946,49.283840236000074],[-54.99909420499997,49.268744208000086],[-55.01439368399994,49.25397370000009],[-55.04796301999997,49.23289622599999],[-55.034006313999896,49.230210679],[-55.01598059799996,49.23651764500012],[-54.99840247299994,49.247870184000114],[-54.985829230999855,49.260239976000044],[-54.96104895699989,49.29498932500012],[-54.947255011999886,49.30052317900011],[-54.92100989499994,49.30182526200003],[-54.91812089799992,49.29840729400003],[-54.91649329299988,49.29096100500014],[-54.91197669199994,49.283514716000134],[-54.90025794199993,49.280096747000144],[-54.890695766999954,49.28266022300006],[-54.88048255099994,49.28900788],[-54.87242591099991,49.297105210000105],[-54.869211391999926,49.30491771000011],[-54.86375891799991,49.337958075000145],[-54.86607825399997,49.34275950700005],[-54.88263912699991,49.345160223],[-54.8888240229999,49.35175202000006],[-54.888091600999864,49.36225006700015],[-54.88345292899993,49.37628815300008],[-54.877674933999884,49.38593170800006],[-54.86778723899996,49.397162177000055],[-54.85704505099994,49.40672435100005],[-54.848744269999884,49.41107819200015],[-54.83372962099986,49.40961334800009],[-54.83079993399994,49.402655341000084],[-54.83568274599989,49.38373444200006],[-54.83495032499987,49.32363515800007],[-54.831939256999874,49.314886786],[-54.83409583199997,49.30483633000012],[-54.83018958199997,49.28595612200009],[-54.81696529899992,49.27562083499999],[-54.790679490999906,49.29096100500014],[-54.78209387899991,49.30048248900012],[-54.77953040299991,49.30658600500011],[-54.78107662699995,49.325751044000086],[-54.77920488199987,49.33759186400014],[-54.773833787999905,49.34723541900003],[-54.765288865999906,49.353583075000145],[-54.75377356699994,49.35586172100004],[-54.75755774599989,49.348334052000055],[-54.75991777299992,49.33893463700004],[-54.759348110999944,49.329535223],[-54.75377356699994,49.32233307500017],[-54.74290930899988,49.319769598000065],[-54.737538214999915,49.32648346600003],[-54.73265540299985,49.34275950700005],[-54.726470506999874,49.35065338700004],[-54.719634568999965,49.363104559000035],[-54.71214758999989,49.37010325700011],[-54.704253709999904,49.374172268000095],[-54.68529212099992,49.37982819200006],[-54.677398240999935,49.38373444200006],[-54.67235266799989,49.38865794500013],[-54.66673743399991,49.39557526200004],[-54.65689042899987,49.41107819200015],[-54.65412350199992,49.412665106000176],[-54.64972896999993,49.41339752800009],[-54.645619269999884,49.41535065300014],[-54.64391028599988,49.421047268000116],[-54.6451309889999,49.429429429],[-54.64708411399993,49.432847398000106],[-54.65013587099995,49.43089427300004],[-54.636545376999884,49.44696686400011],[-54.585275844999956,49.489935614],[-54.5604548819999,49.516302802],[-54.54474850199991,49.529120184000035],[-54.53034420499994,49.53461334800015],[-54.50902258999989,49.53668854400017],[-54.46930904899989,49.546087958],[-54.45148678299992,49.5482445330001],[-54.44371497299991,49.54352448100009],[-54.496205206999946,49.51007721600002],[-54.498890753999945,49.50389232000008],[-54.506092902999875,49.47626373900005],[-54.509673631999924,49.471380927],[-54.53404700399991,49.44521719000012],[-54.51357988199993,49.459133205000015],[-54.48298092399992,49.471096096000146],[-54.45213782499988,49.476996161],[-54.43101966099994,49.47256094],[-54.44465084499989,49.46149323100017],[-54.45567786399994,49.448431708],[-54.457753058999856,49.435451565],[-54.44465084499989,49.42475006700009],[-54.47492428299989,49.40497467700005],[-54.47940019399993,49.40053945500007],[-54.48542232999995,49.380316473000065],[-54.4869685539999,49.36810944200008],[-54.48253333199992,49.36269765800013],[-54.460113084999904,49.35553620000009],[-54.45579993399991,49.338609117000104],[-54.46247311099995,49.31854889500006],[-54.484771287999905,49.27863190300009],[-54.48346920499992,49.26764557500003],[-54.47667395699988,49.26923248900006],[-54.47256425699993,49.283840236000074],[-54.463449673999946,49.30101146000011],[-54.441883917999945,49.31321849199998],[-54.416818813999924,49.32363515800007],[-54.39683997299994,49.335353908000066],[-54.41641191299993,49.35130442900008],[-54.40929114499988,49.37177155200014],[-54.39256751199986,49.392075914000046],[-54.37291419199991,49.42230866100014],[-54.3489477199999,49.429103908000066],[-54.30125891799988,49.43089427300004],[-54.30431067599997,49.41469961100002],[-54.292103644999905,49.41278717700005],[-54.259673631999895,49.42475006700009],[-54.258697068999936,49.40770091400013],[-54.24876868399991,49.40623607000007],[-54.21934973899993,49.41730377800009],[-54.2264705069999,49.40253327000012],[-54.23473059799997,49.39077383000013],[-54.23859615799997,49.37860748900006],[-54.23232988199993,49.36269765800013],[-54.22203528599991,49.37555573100015],[-54.21764075399991,49.38955312700004],[-54.21202551999994,49.40208567900011],[-54.19762122299997,49.41107819200015],[-54.1822810539999,49.39329661700005],[-54.179269985999916,49.38279857],[-54.17601477799988,49.38377513200005],[-54.16038977799988,49.40053945500007],[-54.150786912999905,49.418768622000144],[-54.147287563999924,49.43773021000008],[-54.139230923999975,49.45282623900008],[-54.085519985999895,49.463690497000144],[-54.08153235599994,49.46230703300007],[-54.07689368399991,49.455389716000084],[-54.067534959999875,49.46027252800015],[-54.060047980999904,49.46869538000003],[-54.061105923999946,49.47256094],[-54.04881751199991,49.47711823100015],[-54.04474850199995,49.48175690300009],[-54.04108639199998,49.480861721000096],[-54.030018683999856,49.46914297100001],[-54.021107550999915,49.464667059000035],[-53.996490037999905,49.46246979400014],[-53.98595130099994,49.458889065000065],[-54.0003962879999,49.456529039000124],[-54.04059811099989,49.438381252000035],[-54.01650956899987,49.43183014500011],[-53.95107988199993,49.449204820000105],[-53.92393958199989,49.452053127000156],[-53.90831458199992,49.445013739],[-53.87393144399988,49.42218659100017],[-53.85875403599987,49.41730377800009],[-53.84536699099988,49.415106512000094],[-53.8059789699999,49.40302155200003],[-53.793568488999966,49.39679596600014],[-53.77334550699996,49.39980703300012],[-53.754628058999884,49.393500067],[-53.72524980399987,49.37628815300008],[-53.67910722599996,49.36684804900006],[-53.6637263659999,49.35944245000009],[-53.67747962099994,49.349025783000016],[-53.65611731699988,49.33222077],[-53.62401282499991,49.32648346600003],[-53.59471594999987,49.32444896],[-53.58189856699994,49.31858958500005],[-53.58055579299985,49.31028880400007],[-53.57713782499985,49.30707428600003],[-53.57258053299992,49.30540599200002],[-53.56769771999993,49.30182526200003],[-53.56383216099994,49.300848700000145],[-53.5514216789999,49.302313544000114],[-53.54710852799991,49.30182526200003],[-53.54662024599992,49.299261786000116],[-53.547596808999884,49.28994375200007],[-53.54710852799991,49.28754303600011],[-53.53600012899997,49.283433335],[-53.52204342399991,49.28021881700012],[-53.50694739499991,49.280707098],[-53.49254309799994,49.28754303600011],[-53.47801673099991,49.26837799700014],[-53.46955318899995,49.26235586100016],[-53.457753058999884,49.260239976000044],[-53.457753058999884,49.25340403900013],[-53.45368404899992,49.24217357000013],[-53.4918513659999,49.21873607000005],[-53.49254309799994,49.198187567],[-53.50300045499992,49.19806549700003],[-53.52139238199996,49.19326406500015],[-53.53010006399995,49.19196198100015],[-53.540394660999965,49.18781159100011],[-53.540394660999965,49.17861562700013],[-53.53351803299995,49.16400788000011],[-53.53945878799988,49.1562360700001],[-53.556630011999914,49.140122789000046],[-53.56017005099988,49.13336823100012],[-53.56598873599992,49.12596263200011],[-53.57933508999985,49.12807851800012],[-53.60513261599987,49.13670482000005],[-53.60985266799989,49.133612372000144],[-53.61676998599998,49.12616608300008],[-53.62230383999991,49.11717357000004],[-53.622873501999976,49.109442450000145],[-53.6158748039999,49.10545482000008],[-53.60374915299991,49.10301341400004],[-53.59093176999996,49.09857819200006],[-53.58189856699994,49.088324286000116],[-53.57957923099988,49.066636460000055],[-53.5899145169999,49.05206940300003],[-53.608957485999895,49.043687242000075],[-53.793568488999966,49.02753327],[-53.83824622299994,49.03367747599999],[-53.841379360999895,49.03058502800009],[-53.834584113999874,49.023749091000084],[-53.82274329299992,49.01699453300013],[-53.81094316299993,49.01386139500006],[-53.742298956999946,49.01601797100007],[-53.72524980399987,49.01386139500006],[-53.74767005099988,48.998683986000074],[-53.77745520699989,48.987779039000095],[-53.80943762899989,48.981268622000115],[-53.83824622299994,48.97907135600012],[-53.85130774599992,48.98175690300009],[-53.874663865999906,48.99237702000012],[-53.88292395699989,48.99274323100014],[-53.89635169199988,48.98053620000017],[-53.887928839999944,48.970892645],[-53.85496985599985,48.959214585000105],[-53.811675584999875,48.93524811400006],[-53.81094316299993,48.93130117400007],[-53.82453365799989,48.92804596600002],[-53.84947669199994,48.91396719000009],[-53.862131313999896,48.91083405200011],[-53.92393958199989,48.91766998900012],[-53.93883216099994,48.911322333],[-53.94945227799991,48.90326569200006],[-53.96104895699992,48.897121486000074],[-53.97850501199988,48.89655182500012],[-53.96385657499988,48.885931708000086],[-53.937855597999885,48.88703034100003],[-53.88292395699989,48.89655182500012],[-53.88292395699989,48.89032623900005],[-53.95807857999989,48.86908600500008],[-53.97850501199988,48.85618724200005],[-53.964914516999926,48.84194570500016],[-53.97858639199995,48.83633047100015],[-53.99425208199992,48.83466217700014],[-54.02660071499994,48.83567942900002],[-54.04214433499993,48.833441473000114],[-54.078114386999914,48.821437893],[-54.136789516999926,48.821437893],[-54.146473761999914,48.81777578300012],[-54.17027747299988,48.80487702000012],[-54.18464107999994,48.80097077000012],[-54.17959550699993,48.7916527360001],[-54.18101966099991,48.78392161699999],[-54.187489386999914,48.77814362200003],[-54.19762122299997,48.77423737200003],[-54.19762122299997,48.76740143400009],[-54.16258704299989,48.77122630400011],[-54.020863410999965,48.815375067],[-54.00584876199994,48.81460195500007],[-53.990956183999884,48.806138414000046],[-53.99010169199988,48.79580312700013],[-53.99909420499992,48.784735419000086],[-54.013295050999915,48.77423737200003],[-53.99063066299996,48.76837799700017],[-53.969838019999884,48.77301666900011],[-53.962025519999884,48.781683661],[-53.97850501199988,48.787909247000144],[-53.94302324099987,48.82428620000003],[-53.895130988999966,48.841742255],[-53.844471808999884,48.839056708000115],[-53.800404425999886,48.81460195500007],[-53.82941646999995,48.80215078300016],[-53.857329881999895,48.79791901200004],[-53.91771399599995,48.80097077000012],[-53.90306555899994,48.79100169500005],[-53.9009903639999,48.778550523000106],[-53.90025794199988,48.76707591400016],[-53.889759894999905,48.75995514500011],[-53.877268032999886,48.76325104400014],[-53.867543097999935,48.77301666900011],[-53.85684160099993,48.779852606000034],[-53.841379360999895,48.77423737200003],[-53.87791907499985,48.747951565],[-53.899240688999924,48.73997630400005],[-53.92393958199989,48.73948802300008],[-53.97085527299993,48.75116608300006],[-53.99449622299997,48.75307851800004],[-54.02013098899994,48.74632396],[-54.02013098899994,48.73948802300008],[-53.967152472999906,48.73663971600003],[-53.94517981699988,48.72866445500007],[-53.94440670499994,48.712144272999986],[-53.933257615999935,48.703517971000096],[-53.93871008999989,48.69407786699999],[-53.94880123599995,48.68329498900006],[-53.95124264199998,48.67059967700003],[-53.94151770699992,48.66083405200005],[-53.92609615799989,48.65643952000009],[-53.90941321499986,48.653957424000154],[-53.89598548099988,48.65009186400006],[-53.89598548099988,48.64325592700014],[-53.91413326699995,48.63792552300008],[-53.93138587099989,48.62962474199999],[-53.89354407499994,48.632025458000115],[-53.793568488999966,48.678045966000084],[-53.793568488999966,48.68488190300009],[-53.873158331999946,48.673041083000136],[-53.916656053999894,48.67275625200001],[-53.920765753999945,48.68797435099999],[-53.90416419199988,48.70140208500008],[-53.869496222999906,48.7220726580001],[-53.835194464999944,48.75039297100012],[-53.83625240799989,48.74237702],[-53.85496985599985,48.70473867400001],[-53.75023352799991,48.712144272999986],[-53.74510657499988,48.69855377800003],[-53.72492428299995,48.69725169500005],[-53.71467037699991,48.69505442900005],[-53.70421301999993,48.69110748900006],[-53.710072394999884,48.68366120000009],[-53.71589107999995,48.68097565300009],[-53.72199459499993,48.67914459800012],[-53.72899329299992,48.674302476000044],[-53.73306230399987,48.664984442],[-53.72618567599997,48.65997955900014],[-53.71446692599997,48.65875885600006],[-53.70421301999993,48.66095612200003],[-53.65274003799996,48.68455638200008],[-53.63996334499993,48.694769598],[-53.63121497299994,48.698797919000086],[-53.61839758999991,48.699530341000106],[-53.60680091099991,48.69627513200005],[-53.60171464799987,48.68797435099999],[-53.60411536399991,48.676703192],[-53.60997473899996,48.673081773000135],[-53.61778723899994,48.671861070000105],[-53.625965949999845,48.66746653900013],[-53.64248613199993,48.65444570500012],[-53.65957597599987,48.64712148600013],[-53.67861894399987,48.643988348000065],[-53.71617591099988,48.64183177300007],[-53.78490149599989,48.62295156500012],[-53.82827714799993,48.595445054],[-53.846302863999966,48.591050523000106],[-53.88394120999995,48.59088776200015],[-53.90343176999994,48.588690497000144],[-53.921498175999965,48.581488348000114],[-53.933664516999954,48.57119375200001],[-53.94444739499994,48.559271552000084],[-53.958648240999956,48.54706452],[-53.943470831999974,48.54238515800007],[-53.93040930899991,48.549505927000105],[-53.91763261599996,48.56073639500012],[-53.90343176999994,48.56818268400009],[-53.711008266999976,48.56073639500012],[-53.731597459999904,48.55410390800007],[-53.77448482999989,48.55076732000005],[-53.793568488999966,48.54022858300008],[-53.78612219999991,48.537827867000125],[-53.77692623599992,48.53778717700014],[-53.769357876999976,48.53900788000006],[-53.76683508999986,48.54022858300008],[-53.75104732999992,48.529974677000055],[-53.74400794199994,48.52289459800009],[-53.748890753999916,48.51976146000011],[-53.75861568899995,48.51654694200006],[-53.787668423999946,48.50242747600011],[-53.80406653599993,48.499335028000026],[-53.83674068899998,48.49762604400003],[-53.867014126999976,48.49274323100014],[-53.89574133999991,48.48444245000009],[-53.92393958199989,48.47260163000011],[-53.9805395169999,48.44098541900014],[-54.00987708199992,48.428941148000135],[-54.043690558999884,48.424139716000134],[-54.07681230399992,48.429266669000135],[-54.09211178299998,48.429877020000035],[-54.10948645699994,48.424139716000134],[-54.14801998599995,48.397894598000036],[-54.16413326699992,48.39069245000009],[-54.15221106699997,48.38483307500003],[-54.14248613199993,48.37791575700014],[-54.13687089799993,48.368557033],[-54.136789516999926,48.35529205900018],[-54.08804277299992,48.401190497000144],[-54.06794186099998,48.40989817900014],[-54.04613196499991,48.41034577000012],[-54.001210089999915,48.405422268000066],[-53.97850501199988,48.40989817900014],[-53.8997696609999,48.45848216400019],[-53.85537675699987,48.47524648600002],[-53.81403561099992,48.46515534100014],[-53.82896887899997,48.44867584800006],[-53.87669837099991,48.40989817900014],[-53.88145911399993,48.38837311400012],[-53.873036261999886,48.37348053600006],[-53.85602779899992,48.36839427300005],[-53.83511308499996,48.37641022300009],[-53.85252844999994,48.38361237200003],[-53.84557044199994,48.394964911],[-53.81403561099992,48.417385158000016],[-53.81029212099988,48.423732815000115],[-53.806060350999864,48.432847398000135],[-53.800892706999974,48.44110748900012],[-53.79385331899991,48.44464752800009],[-53.77904212099992,48.44745514500015],[-53.77562415299991,48.45482005400005],[-53.7752986319999,48.46482982000013],[-53.76992753799993,48.475734768],[-53.741851365999935,48.500067450000174],[-53.70030676999994,48.52838776200012],[-53.6568497389999,48.546576239],[-53.622873501999976,48.54022858300008],[-53.634144660999965,48.532416083],[-53.65444902299987,48.522691148000135],[-53.66319739499994,48.51357656500015],[-53.64940344999994,48.514634507],[-53.63646399599992,48.51349518400015],[-53.624989386999886,48.50873444200006],[-53.61538652299989,48.499335028000026],[-53.70026607999995,48.455471096000096],[-53.71410071499986,48.44537995000003],[-53.72524980399987,48.43158600500011],[-53.71841386599996,48.424139716000134],[-53.69709225199989,48.43549225500011],[-53.675404425999915,48.444159247000115],[-53.653797980999904,48.44961172100015],[-53.632801886999886,48.45148346600003],[-53.62441972599993,48.46255117400015],[-53.58812415299991,48.52659739800013],[-53.58189856699994,48.52659739800013],[-53.57701575399989,48.51312897300015],[-53.57811438699994,48.502630927000084],[-53.58812415299991,48.478827216000084],[-53.56867428299992,48.487860419000086],[-53.55825761599993,48.49119700700011],[-53.54710852799991,48.49241771000014],[-53.61538652299989,48.40989817900014],[-53.59552975199989,48.42072174700002],[-53.558501756999874,48.44757721600003],[-53.54092363199993,48.46515534100014],[-53.530181443999936,48.45734284100014],[-53.521473761999935,48.46222565300003],[-53.505523240999935,48.48627350500005],[-53.503529425999886,48.49192942900005],[-53.5013728509999,48.50763580900012],[-53.4986873039999,48.51357656500015],[-53.49095618399991,48.51496002800003],[-53.48208574099996,48.51121653900018],[-53.475005662999905,48.51097239800004],[-53.469838019999884,48.53131745000003],[-53.464914516999926,48.53656647300012],[-53.45995032499988,48.54022858300008],[-53.457753058999884,48.543646552],[-53.45881100199995,48.551418361000074],[-53.46361243399994,48.563869533000016],[-53.46458899599992,48.57160065300012],[-53.46422278599988,48.5868187520001],[-53.46129309799997,48.592962958000086],[-53.44465084499993,48.59813060099999],[-53.44115149599992,48.604315497000144],[-53.44001217399989,48.61115143400015],[-53.43724524599992,48.615912177000055],[-53.42357337099989,48.62287018400015],[-53.41417395699997,48.62376536700005],[-53.38267981699997,48.615912177000055],[-53.35366777299987,48.614569403000175],[-53.34219316299993,48.612738348],[-53.30679277299993,48.58930084800012],[-53.30166581899991,48.57941315300011],[-53.317616339999915,48.552313544000086],[-53.30968176999994,48.548773505],[-53.294545050999936,48.552191473],[-53.28026282499988,48.56073639500012],[-53.27904212099995,48.549994208000115],[-53.27481035099993,48.53961823100012],[-53.268137173999975,48.53123607000004],[-53.25914466099994,48.52659739800013],[-53.243519660999965,48.52635325699999],[-53.238392706999946,48.53351471600003],[-53.23688717399988,48.544094143000095],[-53.23184160099987,48.55451080900015],[-53.215402798999975,48.566636460000055],[-53.17625891799992,48.58885325700011],[-53.162953253999916,48.60171133000013],[-53.17039954299989,48.60911692900013],[-53.158599412999905,48.62514883000004],[-53.152333136999886,48.63117096600003],[-53.14305579299992,48.63646067900011],[-53.12938391799988,48.63979726800012],[-53.10846920499991,48.640122789000074],[-53.09805253799993,48.64667389500014],[-53.09854081899991,48.65094635600014],[-53.084543423999946,48.69985586100013],[-53.07681230399993,48.70355866100008],[-53.07135982999992,48.700384833000115],[-53.07420813699985,48.69110748900006],[-53.06509355399996,48.680853583000115],[-53.054554816999904,48.67767975500006],[-53.04360917899993,48.676011460000055],[-53.033192511999935,48.67059967700003],[-53.02521725199989,48.66014232000013],[-53.018422003999945,48.64028554900004],[-53.01276607999994,48.62962474199999],[-52.98289954299989,48.604193427000084],[-52.98127193899995,48.591050523000106],[-53.005848761999886,48.57501862200002],[-53.00031490799994,48.57037995000009],[-52.99054928299992,48.55914948100009],[-52.984771287999926,48.55451080900015],[-52.998605923999946,48.546576239],[-53.014515753999945,48.54205963700015],[-53.027740037999905,48.53583405199999],[-53.033192511999935,48.52317942900011],[-53.0350642569999,48.516913153000175],[-53.044300910999965,48.50039297100001],[-53.04747473899993,48.49241771000014],[-53.04841061099992,48.48509349200005],[-53.04747473899993,48.46173737200005],[-53.05846106699988,48.43585846600002],[-53.08470618399991,48.41795482],[-53.14305579299992,48.39687734600015],[-53.15489661399988,48.38873932500003],[-53.183176235999916,48.361232815],[-53.18740800699996,48.35529205900018],[-53.22207597599993,48.35529205900018],[-53.23932857999992,48.360174872000144],[-53.26976477799988,48.38226959800012],[-53.28506425699996,48.384995835],[-53.314361131999874,48.38320547100001],[-53.32530676999994,48.377264716000084],[-53.33189856699991,48.37555573100009],[-53.334868943999936,48.379787502],[-53.33820553299994,48.38617584800012],[-53.34585527299989,48.38800690300009],[-53.35488847599989,48.38666413000011],[-53.36217200399991,48.38320547100001],[-53.35553951699992,48.360500393000066],[-53.38654537699995,48.30605703300007],[-53.36900794199991,48.2938500020001],[-53.38841712099992,48.286118882],[-53.44570878799988,48.285711981000176],[-53.457753058999884,48.27704498900008],[-53.4680883449999,48.25653717700011],[-53.492176886999914,48.24770742400007],[-53.54092363199993,48.239813544000086],[-53.549224412999905,48.234320380000085],[-53.57445227799988,48.21185944200006],[-53.60924231699993,48.18903229400014],[-53.619211391999926,48.18085358300014],[-53.639475063999924,48.169338283000016],[-53.66417395699992,48.16657135600015],[-53.68932044199991,48.17011139500011],[-53.754628058999884,48.19330475500006],[-53.77647864499991,48.19708893400009],[-53.80406653599993,48.19822825700011],[-53.84508216099994,48.19082265800013],[-53.85578365799998,48.19578685099999],[-53.86461341099994,48.20701732],[-53.87165279899989,48.218817450000145],[-53.87669837099991,48.225531317],[-53.903879360999944,48.236761786],[-53.925282355999876,48.23700592700005],[-53.93936113199993,48.225531317],[-53.94440670499994,48.201646226000136],[-53.94127356699988,48.176703192],[-53.93382727799991,48.15843333500014],[-53.92511959499992,48.14203522300012],[-53.91771399599995,48.12250397300015],[-53.91315670499989,48.094305731000176],[-53.905181443999936,48.085109768],[-53.80406653599993,48.07477448100009],[-53.72508704299992,48.083197333000136],[-53.68399003799993,48.080389716000084],[-53.66319739499994,48.06110260600015],[-53.72374426999994,48.03974030199999],[-53.78734290299991,48.026312567],[-53.85496985599985,48.026312567],[-53.90762285099987,48.03839752800012],[-53.92393958199989,48.03375885600009],[-53.9083552729999,48.02106354400003],[-53.88683020699988,48.01483795800006],[-53.84194902299987,48.01264069200006],[-53.82030188699988,48.0086937520001],[-53.79784094999988,48.00169505400011],[-53.77594967399994,47.99941640800013],[-53.7411189439999,48.01679108300011],[-53.68431555899985,48.02008698100015],[-53.66527258999985,48.02830638200005],[-53.62913977799991,48.049627997000115],[-53.608550584999904,48.05426666900005],[-53.617583787999905,48.03888580900009],[-53.622873501999976,48.03375885600009],[-53.62157141799989,48.00495026200015],[-53.64484615799989,47.965887762000094],[-53.697336391999926,47.896633205],[-53.72118079299992,47.90204498900006],[-53.78734290299991,47.90346914300012],[-53.78734290299991,47.896633205],[-53.75523841099994,47.89520905200005],[-53.72524980399987,47.889797268],[-53.72960364499997,47.87010325700005],[-53.73253333199988,47.842474677000055],[-53.74128170499998,47.817857164000046],[-53.76317298099991,47.80719635600012],[-53.77082271999993,47.80019765800012],[-53.780425584999904,47.78595612200003],[-53.79161536399991,47.77460358300006],[-53.80406653599993,47.77651601800004],[-53.82213294199997,47.79018789300015],[-53.83120683499996,47.79975006700015],[-53.83511308499996,47.81061432500003],[-53.84471594999994,47.82465241100009],[-53.86750240799995,47.84345123900012],[-53.89476477799985,47.858832098000065],[-53.91771399599995,47.86245351800012],[-53.928944464999944,47.85244375200013],[-53.877308722999885,47.82811107],[-53.87669837099991,47.80719635600012],[-53.85826575399989,47.80158112200003],[-53.85464433499993,47.784898179],[-53.85415605399996,47.76752350499999],[-53.84508216099994,47.75942617400007],[-53.83348548099994,47.751776434000035],[-53.82892818899998,47.73574453300016],[-53.8348689439999,47.72125885600009],[-53.85496985599985,47.71845123900005],[-53.84679114499994,47.70677317900005],[-53.80785071499986,47.67747630400014],[-53.79381262899991,47.66404857000005],[-53.76317298099991,47.625677802000105],[-53.73790442599994,47.61969635600012],[-53.72118079299992,47.64443594000009],[-53.7057185539999,47.67609284100014],[-53.68431555899985,47.69114817900008],[-53.666167772999955,47.68402741100011],[-53.66844641799992,47.66962311400006],[-53.68016516799992,47.6537946640001],[-53.69054114499991,47.64272695500007],[-53.70299231699993,47.619574286000145],[-53.707590298999975,47.616034247000144],[-53.71174068899989,47.60993073100015],[-53.710113084999875,47.597805080000064],[-53.703846808999934,47.58869049700009],[-53.69395911399991,47.59178294500008],[-53.68663489499991,47.597642320000105],[-53.68073482999998,47.59870026200015],[-53.670033331999946,47.59552643400009],[-53.67198645699992,47.58991120000009],[-53.66706295499994,47.577622789000046],[-53.66038977799988,47.569973049],[-53.65697180899988,47.577866929],[-53.655425584999925,47.57965729400017],[-53.65233313699986,47.57684967700011],[-53.64976966099993,47.57025788000006],[-53.65021725199995,47.56077708500005],[-53.65363521999995,47.55223216400013],[-53.670033331999946,47.52667877800003],[-53.65611731699988,47.53339264500009],[-53.631581183999856,47.55540599199998],[-53.622873501999976,47.56077708500005],[-53.61790930899991,47.55951569200012],[-53.613270636999886,47.55524323100003],[-53.609934048999975,47.54938385600017],[-53.608550584999904,47.54340241100006],[-53.60513261599987,47.539374091000084],[-53.597279425999886,47.541205145000056],[-53.58836829299985,47.54486725500011],[-53.58189856699994,47.546535549000126],[-53.55386308499993,47.53925202000012],[-53.5501195949999,47.543890692000055],[-53.54710852799991,47.56077708500005],[-53.54898027299986,47.57241445500016],[-53.553089972999906,47.58100006700006],[-53.550852016999926,47.588202216000084],[-53.53351803299995,47.59552643400009],[-53.5517472,47.612372137000094],[-53.560658331999974,47.623846747000144],[-53.557036912999905,47.62909577000012],[-53.54320227799991,47.62872955900012],[-53.53453528599991,47.62702057500012],[-53.5130102199999,47.616034247000144],[-53.51744544199996,47.63271719],[-53.511952277999846,47.64398834800009],[-53.50853430899994,47.654974677000055],[-53.51919511599996,47.670640367000104],[-53.50291907499994,47.67304108300006],[-53.48863684799994,47.68244049700009],[-53.48033606699997,47.69257233300014],[-53.48200436099998,47.69733307500006],[-53.49038652299993,47.70286692900005],[-53.49742591099991,47.71621328300007],[-53.50096594999988,47.73236725500014],[-53.4986873039999,47.746405341000084],[-53.48717200399997,47.75991445500016],[-53.47618567599991,47.764837958000115],[-53.46784420499995,47.77147044499999],[-53.46458899599992,47.79047272300009],[-53.459543423999975,47.805487372000115],[-53.441761847999885,47.82078685100008],[-53.444081183999856,47.82831452000012],[-53.42918860599991,47.85057200699999],[-53.420155402999875,47.861151434000035],[-53.4093318349999,47.86928945500013],[-53.394154425999915,47.87555573100009],[-53.382476365999906,47.876369533],[-53.35533606699988,47.86928945500013],[-53.35533606699988,47.87547435100011],[-53.36510169199993,47.88703034100014],[-53.36261959499989,47.89980703300007],[-53.35212154899992,47.91331614800005],[-53.33828691299993,47.92731354400003],[-53.32876542899992,47.94098541900014],[-53.31346594999988,47.974676825000145],[-53.303537563999974,47.98871491100003],[-53.27647864499993,48.01642487200009],[-53.268381313999924,48.02033112200009],[-53.248646613999874,48.01911041900017],[-53.23924719999985,48.02008698100015],[-53.22899329299992,48.02586497600011],[-53.221750454999885,48.03266022300012],[-53.21385657499993,48.03827545800014],[-53.184315558999884,48.04254791900014],[-53.18028723899991,48.047552802],[-53.17906653599987,48.054144598000065],[-53.17039954299989,48.06110260600015],[-53.14806067599994,48.064276434000035],[-53.13243567599997,48.056586005],[-53.117746548999975,48.04596588700015],[-53.09805253799993,48.040594794000114],[-53.081288214999915,48.043850002000156],[-53.06102454299988,48.051906643000095],[-53.042103644999884,48.06183502800009],[-53.02953040299988,48.070990302000084],[-52.99107825399989,48.10651276200006],[-52.95262610599988,48.153021552],[-52.93545488199996,48.166734117000104],[-52.92332923099988,48.17096588700004],[-52.90046139199995,48.161281643000066],[-52.86583411399996,48.123968817],[-52.83478756399995,48.11249420800006],[-52.836740688999896,48.10545482],[-52.84601803299995,48.09837474200013],[-52.858225063999924,48.09520091400016],[-52.90290279899989,48.09520091400016],[-52.91441809799991,48.08958567900008],[-52.920765753999945,48.08209870000009],[-52.92503821499989,48.07412344000015],[-52.93016516799989,48.06732819200012],[-52.94619706899988,48.05434804900004],[-52.95409094999985,48.045803127],[-52.95742753799988,48.03717682500008],[-52.959706183999856,48.01748281500015],[-52.966908331999974,48.00165436400011],[-52.97960364499994,47.987127997000165],[-52.99844316299988,47.97166575700005],[-53.03579667899993,47.94839101800012],[-53.053578253999916,47.932562567],[-53.061146613999966,47.913641669000086],[-53.060902472999906,47.88776276200015],[-53.06281490799997,47.86957428600008],[-53.07066809799997,47.85370514500006],[-53.08849036399994,47.83445872600011],[-53.12572180899991,47.807766018000095],[-53.14232337099989,47.79096100500008],[-53.14928137899997,47.76935455900018],[-53.15314693899998,47.76414622599999],[-53.16197669199994,47.75641510600014],[-53.17227128799996,47.749457098000086],[-53.18028723899991,47.746405341000084],[-53.18659420499995,47.74526601800015],[-53.19635982999998,47.74013906500012],[-53.20140540299991,47.73895905200011],[-53.20738684799991,47.73590729400002],[-53.20181230399993,47.72955963700018],[-53.193348761999886,47.724351304],[-53.19082597599996,47.72467682500012],[-53.162953253999916,47.71845123900005],[-53.17442786399994,47.70502350500006],[-53.18399003799993,47.69114817900008],[-53.174631313999896,47.69647858300014],[-53.166615363999966,47.69717031500009],[-53.16038977799991,47.69293854400014],[-53.15611731699988,47.6837425800001],[-53.171783006999874,47.67475006700006],[-53.19469153599996,47.64337799700003],[-53.214466925999886,47.63654205900012],[-53.23241126199994,47.633449611000046],[-53.25182044199994,47.625392971000096],[-53.26207434799996,47.61420319200009],[-53.25230872299994,47.60175202000006],[-53.241444464999944,47.608221747000144],[-53.23009192599997,47.61261627800015],[-53.217925584999904,47.61513906500006],[-53.2044978509999,47.616034247000144],[-53.21776282499994,47.605454820000105],[-53.24364173099994,47.59259674700009],[-53.25230872299994,47.58124420800003],[-53.23070227799994,47.58258698100009],[-53.21051998599989,47.58930084800015],[-53.17039954299989,47.609198309000035],[-53.18260657499988,47.5934105490001],[-53.207346157999915,47.577622789000046],[-53.23485266799989,47.565619208000115],[-53.25572669199994,47.56077708500005],[-53.259755011999914,47.55853913000006],[-53.25291907499988,47.553656317],[-53.24058997299994,47.54877350500011],[-53.22842363199996,47.546535549000126],[-53.2170304029999,47.548325914000124],[-53.18399003799993,47.56077708500005],[-53.18224036399994,47.523504950000174],[-53.18399003799993,47.51239655200013],[-53.189523891999954,47.50259023600002],[-53.19676673099988,47.49396393400009],[-53.20287024599988,47.48419830900014],[-53.2044978509999,47.47138092700014],[-53.18993079299986,47.48041413000014],[-53.17609615799994,47.4921735700001],[-53.16266842399997,47.500555731000176],[-53.14928137899997,47.49941640800013],[-53.15298417899992,47.49022044499999],[-53.153675910999965,47.486273505],[-53.14928137899997,47.47821686400006],[-53.18130449099996,47.452093817],[-53.19522050699993,47.43707916900017],[-53.18740800699996,47.43048737200009],[-53.16738847599989,47.43402741100009],[-53.156158006999874,47.44049713700018],[-53.14419511599993,47.44367096600014],[-53.121937628999916,47.43724192900013],[-53.12718665299988,47.42121002800006],[-53.12938391799988,47.416815497000144],[-53.11375891799989,47.43056875200006],[-53.07811438699994,47.47003815300006],[-53.037953253999945,47.48444245000012],[-52.97179114499994,47.52667877800003],[-52.91173255099994,47.55630117400007],[-52.89293372299991,47.57103099199999],[-52.87637285099993,47.58828359600007],[-52.86115475199995,47.60838450700011],[-52.848947719999984,47.629624742000104],[-52.841420050999915,47.65013255400008],[-52.81847083199992,47.74363841400013],[-52.79841061099997,47.78815338700003],[-52.77253170499994,47.801011460000055],[-52.76549231699988,47.795599677],[-52.75690670499998,47.77903880400014],[-52.75206458199989,47.77309804900001],[-52.71051998599992,47.76129791900006],[-52.70421301999997,47.756008205000064],[-52.697417772999955,47.71474844],[-52.70059160099989,47.70286692900005],[-52.717925584999904,47.670640367000104],[-52.70881100199992,47.66181061400006],[-52.693023240999956,47.660305080000015],[-52.66665605399987,47.66380442900002],[-52.65754146999995,47.66058991100014],[-52.65493730399987,47.65216705900009],[-52.65664628799988,47.603176174000126],[-52.664418097999885,47.58710358300006],[-52.69058183499993,47.553941148000135],[-52.676909959999904,47.56077708500005],[-52.67202714799992,47.54767487200017],[-52.65990149599992,47.536810614],[-52.64419511599996,47.52936432500012],[-52.62881425699993,47.52667877800003],[-52.61660722599996,47.52269114800005],[-52.61693274599988,47.51276276200015],[-52.628529425999886,47.485744533000016],[-52.64329993399988,47.48753489799999],[-52.659006313999924,47.481756903000026],[-52.69058183499993,47.46458567900011],[-52.66047115799989,47.44578685100005],[-52.65660559799988,47.43707916900017],[-52.663319464999944,47.42365143400018],[-52.67471269399991,47.41209544500005],[-52.701283331999946,47.39276764500012],[-52.71104895699989,47.383246161000116],[-52.718088344999956,47.36880117400007],[-52.730376756999924,47.33250560100008],[-52.738392706999946,47.32062409100003],[-52.75259355399987,47.314357815000065],[-52.78563391799992,47.31146881700014],[-52.800445115999906,47.306952216000084],[-52.79133053299992,47.30194733300014],[-52.781320766999926,47.2995466170001],[-52.77061926999991,47.29913971600008],[-52.75951087099989,47.30011627800015],[-52.76854407499988,47.28900788000014],[-52.78237870999987,47.2822126320001],[-52.81407630099994,47.27342357000005],[-52.80190995999995,47.25877513200013],[-52.80553137899991,47.25079987200009],[-52.81493079299985,47.24286530200011],[-52.82241777299992,47.220160223000065],[-52.83185787699992,47.2035993510001],[-52.83617102799994,47.18378327],[-52.841135219999984,47.17812734600001],[-52.84601803299995,47.17352936400006],[-52.84825598899994,47.166693427000055],[-52.85301673099994,47.134263414000046],[-52.859445766999954,47.11530182500003],[-52.868763800999886,47.10150788000011],[-52.88292395699992,47.09589264500012],[-52.92031816299996,47.094061591000134],[-52.93761145699994,47.087836005],[-52.88703365799995,47.07550690300015],[-52.86839758999989,47.07416413000006],[-52.849191860999916,47.06981028900016],[-52.846302863999874,47.061468817],[-52.85627193899998,47.055853583],[-52.874908006999874,47.05988190300015],[-52.871490037999955,47.05109284100008],[-52.86668860599988,47.04328034100011],[-52.86082923099993,47.03709544500005],[-52.85448157499991,47.03318919500005],[-52.85448157499991,47.02635325700011],[-52.88927161399993,47.00682200700005],[-52.89509029899988,46.99555084800015],[-52.88239498599992,46.97797272300012],[-52.8959041009999,46.97394440300015],[-52.89854895699988,46.96698639500006],[-52.89395097599987,46.96039459800009],[-52.88585364499994,46.95746491100006],[-52.88219153599988,46.95111725500014],[-52.90973873599992,46.91278717700003],[-52.915272589999915,46.890285549],[-52.926177537999905,46.868312893],[-52.93407141799989,46.847113348],[-52.93016516799989,46.82713450700011],[-52.93610592399991,46.81704336100016],[-52.937489386999886,46.803371486000046],[-52.94127356699991,46.79132721600003],[-52.96108964799993,46.782782294000086],[-52.9719945949999,46.765692450000145],[-52.978627081999974,46.75885651200004],[-53.00694739499991,46.75311920800006],[-53.00934811099995,46.75202057500011],[-53.031320766999954,46.73602936400003],[-53.066883917999945,46.665594794000114],[-53.09154212099994,46.649603583000115],[-53.14305579299992,46.629136460000055],[-53.176625128999945,46.62514883000007],[-53.19286048099988,46.627630927],[-53.211333787999905,46.63532135600012],[-53.23232988199996,46.65375397300015],[-53.25365149599992,46.68317291900014],[-53.26748613199993,46.71454498900009],[-53.26598059799996,46.73899974200013],[-53.28254146999993,46.73281484600015],[-53.29865475199992,46.720648505000085],[-53.324330206999946,46.69399648600013],[-53.331206834999875,46.693304755],[-53.33771725199995,46.701808986000124],[-53.34349524599992,46.71222565300003],[-53.34850012899997,46.71727122600005],[-53.35973059799997,46.713446356000034],[-53.370716925999915,46.70441315300003],[-53.389475063999974,46.68378327],[-53.38292395699992,46.698675848000065],[-53.35533606699988,46.73899974200013],[-53.37385006399989,46.73484935099999],[-53.389393683999906,46.72370026200014],[-53.416818813999946,46.69741445500013],[-53.43285071499986,46.68756745000003],[-53.44074459499993,46.680853583000086],[-53.44880123599995,46.664007880000085],[-53.459828253999916,46.65940989800004],[-53.47240149599988,46.65664297100009],[-53.48200436099998,46.65273672100009],[-53.518299933999884,46.62856679900007],[-53.55467688699986,46.61835358300014],[-53.58999589799989,46.62616608300014],[-53.622873501999976,46.65582916900017],[-53.62657630099991,46.66299062700001],[-53.6349177729999,46.68585846600003],[-53.63646399599992,46.69399648600013],[-53.63646399599992,46.711371161000116],[-53.61831620999993,46.741034247000144],[-53.60513261599987,46.75543854400003],[-53.60163326699998,46.764227606000084],[-53.60326087099992,46.77505117400006],[-53.606678839999915,46.786444403000054],[-53.608550584999904,46.79706452000009],[-53.60008704299994,46.81256745000009],[-53.56248938699986,46.846340236000074],[-53.55394446499991,46.86497630400008],[-53.54405676999991,46.87848541900014],[-53.49860592399992,46.88678620000003],[-53.48570716099991,46.90289948100009],[-53.499582485999895,46.89862702000009],[-53.53164628799987,46.89325592700011],[-53.54405676999991,46.885809637000065],[-53.61156165299988,46.81427643400009],[-53.63687089799993,46.798895575000145],[-53.64346269399991,46.796616929],[-53.64488684799988,46.801174221000124],[-53.6405330069999,46.828273830000064],[-53.63621985599988,46.83869049700014],[-53.62938391799986,46.84764232],[-53.619211391999926,46.85814036700004],[-53.612619594999956,46.86904531500012],[-53.605091925999886,46.895331122000144],[-53.59870357999994,46.905951239],[-53.54710852799991,46.928208726000136],[-53.521148240999906,46.94464752800003],[-53.51919511599996,46.96430084800009],[-53.53062903599991,46.95327383000013],[-53.54214433499995,46.94464752800003],[-53.55443274599992,46.940822658000016],[-53.56769771999993,46.94383372600011],[-53.56322180899988,46.95246002800003],[-53.561756964999915,46.960882880000085],[-53.56322180899988,46.96930573100003],[-53.56769771999993,46.97797272300012],[-53.57445227799988,46.97797272300012],[-53.577463344999984,46.97117747599999],[-53.587880011999886,46.95359935100005],[-53.591867641999954,46.95001862200008],[-53.59874426999994,46.95075104400003],[-53.60863196499989,46.95351797100006],[-53.615223761999935,46.958970445000105],[-53.6119685539999,46.968003648000135],[-53.60008704299994,46.98688385600014],[-53.608550584999904,46.99152252800009],[-53.643381313999924,46.985419012000094],[-53.625396287999905,47.01341380400011],[-53.60513261599987,47.036607164000046],[-53.57811438699994,47.05951569200014],[-53.57062740799995,47.072699286],[-53.58189856699994,47.08161041900002],[-53.5631404289999,47.09772370000012],[-53.51178951699998,47.12299225500006],[-53.4986873039999,47.13564687700012],[-53.515207485999895,47.135891018000066],[-53.52432206899988,47.14350006700003],[-53.52574622299994,47.15582916900014],[-53.51919511599996,47.169745184000035],[-53.53302975199994,47.16681549700003],[-53.556263800999886,47.15794505400008],[-53.57103430899988,47.15615469000009],[-53.57258053299992,47.16205475500011],[-53.56212317599994,47.192084052000084],[-53.56017005099988,47.20453522300009],[-53.59422766799992,47.145697333],[-53.61729895699994,47.119330145],[-53.65021725199995,47.10834381700015],[-53.635568813999924,47.14484284100011],[-53.62905839799993,47.15615469000009],[-53.640980597999885,47.15322500200007],[-53.64976966099993,47.147162177000055],[-53.65680904899992,47.13886139500009],[-53.66319739499994,47.12881094],[-53.67747962099994,47.091253973],[-53.683583136999914,47.090643622000144],[-53.695627407999915,47.08454010600015],[-53.7044978509999,47.07754140800007],[-53.69542395699989,47.07013580900009],[-53.70400956899991,47.061102606000176],[-53.72524980399987,47.04682038],[-53.73668372299994,47.04364655200011],[-53.75918535099992,47.04189687700013],[-53.76683508999986,47.04002513200005],[-53.77525794199991,47.03180573100015],[-53.81847083199992,46.96259186400009],[-53.82485917899992,46.95746491100006],[-53.86119544199991,46.94757721600014],[-53.869252081999946,46.94383372600011],[-53.87291419199991,46.937323309000035],[-53.87791907499985,46.917873440000115],[-53.88292395699989,46.90908437700007],[-53.88963782499993,46.904201565],[-53.91270911399991,46.891750393000066],[-53.93415279899994,46.88605377800009],[-53.93960527299987,46.87824127800009],[-53.94249426999991,46.86810944200015],[-53.947824673999975,46.85814036700004],[-53.95693925699996,46.85276927299999],[-53.992176886999914,46.84829336100013],[-54.003081834999875,46.842596747000144],[-54.02692623599995,46.82094961100016],[-54.04043535099993,46.81220123900009],[-54.05036373599995,46.80805084800015],[-54.060536261999886,46.80678945500012],[-54.07469641799992,46.80662669499999],[-54.081654425999915,46.805650132],[-54.092925584999904,46.801459052000084],[-54.09862219999988,46.800482489],[-54.10456295499989,46.802435614000146],[-54.11359615799992,46.81146881700006],[-54.11904863199993,46.813462632],[-54.17096920499992,46.82094961100016],[-54.18492591099991,46.82611725500006],[-54.18854732999994,46.82843659100002],[-54.18846594999987,46.833889065000065],[-54.19579016799989,46.864406643],[-54.19762122299997,46.885809637000065],[-54.194081183999884,46.907375393000066],[-54.18541419199988,46.92780182500003],[-54.16413326699992,46.96430084800009],[-54.16038977799988,46.97406647300012],[-54.155506964999915,46.99518463700004],[-54.15046139199998,47.005316473],[-54.11261959499993,47.04340241100009],[-54.10041256399995,47.05980052299999],[-54.04039466099994,47.17991771],[-54.02354895699994,47.20075104400014],[-54.0189509759999,47.210150458],[-54.01524817599997,47.22272370000017],[-54.010406053999894,47.233872789000095],[-54.002756313999946,47.23867422100009],[-53.95124264199998,47.231878973000065],[-53.93175208199989,47.23436107],[-53.94395911399996,47.24119700700002],[-53.96934973899988,47.25104401200004],[-53.989084438999924,47.262600002000156],[-53.99596106699994,47.27216217700014],[-53.99909420499992,47.28131745000003],[-53.999623175999886,47.30353424700017],[-53.99620520699997,47.317206122000115],[-53.98802649599986,47.319769598000114],[-53.97166907499985,47.31439850500005],[-53.969471808999856,47.31264883000007],[-53.97264563699991,47.30963776200014],[-53.97716223899988,47.30719635600003],[-53.97850501199988,47.306952216000084],[-53.96141516799991,47.303290106000034],[-53.938791469999956,47.30516185100002],[-53.92227128799988,47.31321849200005],[-53.92393958199989,47.32807038],[-53.89525305899994,47.34048086100004],[-53.88426673099988,47.34906647300012],[-53.87669837099991,47.361517645000056],[-53.90330969999988,47.36102936400006],[-53.91429602799994,47.36347077],[-53.9105525379999,47.37274811400006],[-53.89289303299998,47.39288971600008],[-53.87539628799993,47.405340887000115],[-53.853138800999886,47.41347890800013],[-53.80785071499986,47.42365143400018],[-53.80785071499986,47.43048737200009],[-53.82921301999991,47.429266669000086],[-53.83511308499996,47.43048737200009],[-53.84605872299991,47.438137111000046],[-53.850819464999915,47.442857164000046],[-53.848784959999904,47.444769598],[-53.90200761599988,47.43154531500015],[-53.910267706999946,47.433905341000106],[-53.91340084499993,47.44245026200004],[-53.91934160099987,47.44855377800012],[-53.923451300999915,47.45408763200014],[-53.920765753999945,47.46116771],[-53.908599412999926,47.473456122000144],[-53.90485592399992,47.479925848000065],[-53.90343176999994,47.48875560100011],[-53.89757239499991,47.50340403900013],[-53.88784745999996,47.51691315300009],[-53.885853644999905,47.52749258000013],[-53.90343176999994,47.53351471600014],[-53.89183508999991,47.57746002800009],[-53.89256751199986,47.59882233300014],[-53.90343176999994,47.616034247000144],[-53.908599412999926,47.61664459800003],[-53.91881262899989,47.60871002800015],[-53.92393958199989,47.609198309000035],[-53.92756100199995,47.613104559000035],[-53.93089758999989,47.62075429900007],[-53.934722459999904,47.625677802000105],[-53.939849412999905,47.6349144550001],[-53.943674282999915,47.649115302],[-53.94469153599991,47.66372304900004],[-53.94127356699988,47.67405833500011],[-53.94790605399996,47.681708075000145],[-53.97166907499985,47.74266185100005],[-53.969797329999885,47.74819570500007],[-53.96637936099998,47.752508856000176],[-53.96471106699997,47.75690338700015],[-53.968251105999855,47.76251862200014],[-53.975168423999946,47.764837958000115],[-53.98155676999997,47.76203034100017],[-53.98729407499994,47.75873444200011],[-53.992176886999914,47.75942617400007],[-54.000843878999916,47.77114492400006],[-54.007964647999955,47.79482656500009],[-54.013295050999915,47.80719635600012],[-54.00584876199994,47.82086823100014],[-54.04214433499993,47.801988023000106],[-54.06086178299992,47.80036041900008],[-54.07469641799992,47.81403229400003],[-54.0742895169999,47.82046133000012],[-54.06956946499988,47.82558828300016],[-54.06395423099991,47.82851797100009],[-54.061105923999946,47.82831452000012],[-54.06261145699992,47.83283112200009],[-54.067128058999856,47.841782945000105],[-54.06794186099998,47.84198639500006],[-54.071156378999916,47.850775458000115],[-54.07624264199995,47.85651276200009],[-54.08055579299985,47.86334870000003],[-54.08153235599994,47.87547435100011],[-54.092274542999945,47.863023179],[-54.098255988999966,47.83759186400009],[-54.10948645699994,47.82831452000012],[-54.125070766999954,47.82811107],[-54.14102128799996,47.83576080900009],[-54.16413326699992,47.85504791900014],[-54.16637122299988,47.85976797100015],[-54.167876756999924,47.87128327000009],[-54.17096920499992,47.87547435100011],[-54.179025844999956,47.87897370000012],[-54.205067511999935,47.88296133000007],[-54.26650956899991,47.90346914300012],[-54.25373287699997,47.88776276200015],[-54.23350989499994,47.88165924700009],[-54.21263587099989,47.87791575700005],[-54.19762122299997,47.86928945500013],[-54.19371497299997,47.85276927300008],[-54.19823157499991,47.833319403000175],[-54.224273240999906,47.772691148000106],[-54.24913489499994,47.730129299000154],[-54.28014075399997,47.69794342699999],[-54.31090247299994,47.70075104400014],[-54.32725989499997,47.710150458000086],[-54.32917232999992,47.69672272300009],[-54.32115637899997,47.667222398000106],[-54.32656816299993,47.64765045800014],[-54.35045325399989,47.61880117400001],[-54.35586503799993,47.605454820000105],[-54.36339270699989,47.591742255000085],[-54.39622962099988,47.55951569200012],[-54.41104081899988,47.530666408000016],[-54.42784583199989,47.51691315300009],[-54.45836341099991,47.49941640800013],[-54.45636959499998,47.49396393400009],[-54.45441646999993,47.490952867000104],[-54.45103919199991,47.488714911000116],[-54.44465084499989,47.485744533000016],[-54.43846594999994,47.49941640800013],[-54.429595506999874,47.48602936400014],[-54.42418372299994,47.47199127800009],[-54.41730709499992,47.45945872599999],[-54.40367591099988,47.45091380400008],[-54.43809973899991,47.430080471000096],[-54.45205644399988,47.42365143400018],[-54.44505774599989,47.43838125200007],[-54.44432532499988,47.44944896000011],[-54.450835740999956,47.45453522300012],[-54.46572831899991,47.45091380400008],[-54.47630774599986,47.44245026200004],[-54.495025193999936,47.41510651200015],[-54.506092902999875,47.40253327000006],[-54.49864661399991,47.39858633000007],[-54.49181067599988,47.39874909100014],[-54.48542232999995,47.40277741100003],[-54.47940019399993,47.409979559000035],[-54.47256425699993,47.40253327000006],[-54.50796464799993,47.38222890800007],[-54.52342688699985,47.37669505400005],[-54.526600714999915,47.383246161000116],[-54.57945716099991,47.35936107000004],[-54.605824347999885,47.35248444200015],[-54.615956183999856,47.368963934000035],[-54.61058508999989,47.37714264500015],[-54.575021938999924,47.39630768400009],[-54.437163865999935,47.55565013200014],[-54.41120357999992,47.60175202000006],[-54.41441809799988,47.60492584800012],[-54.4173477859999,47.609198309000035],[-54.43382727799991,47.59393952000006],[-54.47252356699993,47.54962799700003],[-54.50413977799994,47.53046295800006],[-54.54393469999991,47.4680036480001],[-54.60293535099987,47.409979559000035],[-54.6564021479999,47.385158596000096],[-54.66441809799994,47.375799872000144],[-54.67178300699993,47.38051992400007],[-54.67609615799992,47.38544342700011],[-54.677805141999926,47.39227936400014],[-54.677398240999935,47.40253327000006],[-54.68858801999994,47.39838288000011],[-54.69782467399991,47.39240143400012],[-54.705433722999935,47.384833075000145],[-54.71214758999989,47.375799872000144],[-54.705799933999856,47.372870184000035],[-54.703236456999946,47.369859117000125],[-54.70164954299992,47.36619700700008],[-54.69855709499993,47.361517645000056],[-54.710926886999886,47.356024481000034],[-54.7220759759999,47.35594310100005],[-54.73009192599994,47.362290757],[-54.73265540299985,47.375799872000144],[-54.74596106699997,47.36741771],[-54.75959225199992,47.36277903900015],[-54.77000891799989,47.36652252800008],[-54.77358964799987,47.383246161000116],[-54.79625403599993,47.372870184000035],[-54.808257615999935,47.36945221600003],[-54.82201087099986,47.368963934000035],[-54.795643683999884,47.39435455900014],[-54.78490149599986,47.41128164300012],[-54.78726152299989,47.42365143400018],[-54.801503058999906,47.42300039300012],[-54.81395423099994,47.4076195330001],[-54.82823645699992,47.375799872000144],[-54.84040279899992,47.384466864000146],[-54.84032141799992,47.397447007000046],[-54.83263098899991,47.411566473000065],[-54.82201087099986,47.42365143400018],[-54.83788001199988,47.41925690300009],[-54.848744269999884,47.40778229400014],[-54.86607825399997,47.37958405200008],[-54.87995357999995,47.36668528900015],[-54.91095943899998,47.34642161700005],[-54.924427863999966,47.33490631700011],[-54.92796790299985,47.3268089860001],[-54.927357550999886,47.319037177],[-54.928944464999915,47.311346747000165],[-54.93871008999986,47.30353424700017],[-54.96629798099988,47.28827545800003],[-54.97594153599993,47.28644440300003],[-54.98924719999988,47.28025950700005],[-55.00450598899994,47.265936591000084],[-55.02745520699992,47.23867422100009],[-55.04059811099998,47.21771881700012],[-55.034006313999896,47.21149323100017],[-55.02057857999991,47.207709052000055],[-55.01317298099991,47.193996486000046],[-55.01707923099991,47.18447500200013],[-55.026966925999936,47.172552802],[-55.040150519999884,47.162014065000115],[-55.05418860599994,47.15615469000009],[-55.073801235999895,47.15696849200002],[-55.073394334999904,47.168117580000015],[-55.067860480999876,47.184271552000084],[-55.07184811099995,47.20075104400014],[-55.08800208199992,47.206244208],[-55.10667883999989,47.197821356000034],[-55.12389075399991,47.183050848000065],[-55.13609778599988,47.169745184000035],[-55.097320115999935,47.171779690000065],[-55.08893795499989,47.169745184000035],[-55.08275305899991,47.15908437700001],[-55.08446204299992,47.148504950000145],[-55.08844967399992,47.13825104400003],[-55.08893795499989,47.12881094],[-55.071766730999876,47.09495677300005],[-55.07469641799988,47.08100006700009],[-55.10260982999992,47.08161041900002],[-55.100412563999924,47.07689036700013],[-55.097238735999944,47.06464264500006],[-55.09512285099996,47.05988190300015],[-55.134877081999946,47.047593492000104],[-55.14631100199992,47.037665106000084],[-55.15038001199988,47.01581452000006],[-55.15461178299989,47.01260000200001],[-55.16392981699994,47.016058661],[-55.17345130099994,47.02195872600005],[-55.17833411399991,47.02635325700011],[-55.17878170499989,47.03709544500005],[-55.17174231699994,47.06037018400014],[-55.171498175999886,47.06732819200015],[-55.180083787999905,47.075018622000144],[-55.18858801999994,47.07461172100015],[-55.19615637899997,47.06964752800009],[-55.201893683999856,47.063666083],[-55.20262610599988,47.055853583],[-55.19375566299993,47.03253815300008],[-55.1913142569999,47.022650458000086],[-55.193348761999914,47.00067780200005],[-55.200184699999845,46.980536200000024],[-55.213002081999974,46.96515534100008],[-55.23289954299989,46.95746491100006],[-55.22956295499995,46.93622467699999],[-55.2508845689999,46.91885000200001],[-55.28294837099989,46.907171942],[-55.31175696499991,46.90289948100009],[-55.36050370999993,46.90985748900009],[-55.37010657499991,46.90908437700007],[-55.36974036399991,46.89622630400014],[-55.36034094999987,46.88446686400005],[-55.35903886599987,46.87470123900012],[-55.38312740799992,46.86810944200015],[-55.417836066999875,46.8666039080001],[-55.45254472599993,46.87628815300015],[-55.47325598899994,46.89752838700004],[-55.465687628999916,46.93081289300012],[-55.509103969999956,46.919378973000086],[-55.524159308999884,46.921698309000035],[-55.52782141799992,46.94383372600011],[-55.53547115799995,46.93488190300009],[-55.53750566299987,46.92544179900007],[-55.538075324999845,46.91644928600006],[-55.54141191299988,46.90908437700007],[-55.55125891799989,46.90094635600006],[-55.55455481699993,46.90228913000014],[-55.55638587099992,46.90696849200005],[-55.56187903599993,46.90908437700007],[-55.57591712099989,46.907619533000016],[-55.58165442599997,46.90607330900015],[-55.5892227859999,46.90289948100009],[-55.597238735999944,46.89789459800015],[-55.61652584499989,46.88239166900005],[-55.64952551999993,46.86790599199999],[-55.66828365799992,46.86298248900012],[-55.68480383999989,46.86188385600009],[-55.7167048819999,46.87099844000006],[-55.72891191299988,46.86928945500007],[-55.73940995999996,46.854437567],[-55.752797003999945,46.86399974200002],[-55.77692623599998,46.86786530199999],[-55.82567298099988,46.86810944200015],[-55.85130774599986,46.87099844000006],[-55.90697180899988,46.88690827],[-55.95030676999994,46.904364325000145],[-55.96812903599993,46.91718170799999],[-55.98131262899997,46.93203359600015],[-55.98643958199988,46.946966864],[-55.97996985599988,46.97036367400007],[-55.963978644999884,46.988918361000074],[-55.92503821499988,47.01894765800013],[-55.88914954299992,47.05898672100007],[-55.869862433999884,47.07514069200012],[-55.846180792999945,47.08161041900002],[-55.821441209999875,47.084947007000046],[-55.78294837099989,47.10162995000009],[-55.76113847599992,47.10834381700015],[-55.73802649599989,47.10691966400016],[-55.68480383999989,47.095160223],[-55.668039516999954,47.09808991100011],[-55.6506241529999,47.106390692],[-55.58238684799988,47.11517975500006],[-55.52354895699992,47.13377513200005],[-55.49669348899994,47.13564687700012],[-55.48717200399991,47.140285549000154],[-55.476958787999905,47.151027736000074],[-55.46898352799993,47.163519598000086],[-55.465687628999916,47.17316315300015],[-55.461740688999924,47.18089427300004],[-55.452300584999904,47.18455638200011],[-55.441029425999915,47.18695709800006],[-55.431548631999895,47.19086334800015],[-55.39679928299995,47.21820709800012],[-55.36864173099985,47.228949286000145],[-55.3412166009999,47.24689362200009],[-55.3204646479999,47.25604889500006],[-55.30125891799986,47.26764557500009],[-55.28750566299993,47.28644440300003],[-55.28595943899989,47.296128647999986],[-55.287831183999856,47.31793854400014],[-55.28750566299993,47.32807038],[-55.28331458199991,47.339260158000016],[-55.270375128999916,47.36139557500008],[-55.26768958199992,47.372381903000054],[-55.264556443999936,47.39618561400012],[-55.2552791009999,47.41144440300009],[-55.183990037999905,47.46035390800007],[-55.16368567599988,47.46832916900005],[-55.128407355999855,47.473700262000094],[-55.10879472599989,47.48346588700004],[-55.0957738919999,47.485744533000016],[-55.05955969999988,47.48456452000009],[-55.04796301999997,47.485744533000016],[-55.032134568999936,47.490057684000114],[-55.0021052729999,47.501898505000085],[-54.985829230999855,47.506170966000084],[-54.955189581999946,47.506170966000084],[-54.94786536399994,47.510443427],[-54.95099850199991,47.52924225500014],[-54.94180253799993,47.53351471600014],[-54.90709387899997,47.53351471600014],[-54.89232337099988,47.536281643],[-54.853179490999935,47.560126044000086],[-54.84316972599987,47.57103099199999],[-54.841908331999946,47.58808014500011],[-54.861439581999946,47.573431708000115],[-54.86929277299993,47.571844794000086],[-54.876616990999935,47.58124420800003],[-54.86705481699994,47.58787669499999],[-54.85191809799994,47.606675523000106],[-54.841908331999946,47.616034247000144],[-54.83116614499994,47.62213776200004],[-54.78066972599993,47.640570380000085],[-54.752756313999896,47.64594147300012],[-54.73949133999986,47.65013255400008],[-54.72252356699988,47.66229889500015],[-54.71182206899996,47.66819896],[-54.69855709499993,47.670640367000104],[-54.71898352799991,47.675034898000106],[-54.75365149599989,47.67055898600013],[-54.77358964799987,47.670640367000104],[-54.76675370999996,47.6837425800001],[-54.826161261999914,47.64451732000007],[-54.89329993399988,47.61920807500003],[-54.96393795499992,47.60565827000006],[-55.072173631999874,47.59735748900009],[-55.08849036399991,47.60171133000007],[-55.07872473899994,47.61912669500005],[-55.04792232999998,47.64276764500006],[-55.03355872299991,47.65761953300013],[-55.02745520699992,47.67405833500011],[-55.02139238199993,47.685451565],[-54.95254472599996,47.75136953300013],[-54.94225012899994,47.76805247599999],[-54.93809973899991,47.787339585000105],[-54.98338782499991,47.75079987200017],[-55.05894934799994,47.658433335000055],[-55.10260982999992,47.622259833000115],[-55.094878709999904,47.60065338700012],[-55.10855058499996,47.585435289000046],[-55.13117428299992,47.58356354400017],[-55.15038001199988,47.60175202000006],[-55.15001380099994,47.61359284100003],[-55.14464270699989,47.631781317000026],[-55.12987219999991,47.66380442900002],[-55.14631100199992,47.65102773600016],[-55.16974850199989,47.63987864800005],[-55.19481360599988,47.636419989000146],[-55.23273678299992,47.65517812700001],[-55.25877844999988,47.66034577],[-55.308664516999926,47.66380442900002],[-55.31289628799996,47.66526927300008],[-55.31729081899993,47.66819896],[-55.32241777299995,47.67059967700011],[-55.3290909499999,47.670640367000104],[-55.33055579299989,47.66828034100017],[-55.332427537999926,47.663519598000065],[-55.33592688699994,47.65867747599999],[-55.34215247299988,47.656398830000015],[-55.36237545499991,47.65412018400003],[-55.363596157999915,47.65721263200011],[-55.36335201699998,47.667222398000106],[-55.36538652299993,47.67304108300006],[-55.37010657499991,47.67584870000011],[-55.37482662699991,47.67767975499999],[-55.376942511999935,47.68060944200003],[-55.37588456899988,47.68646881700006],[-55.37352454299992,47.68960195500013],[-55.37116451699998,47.69159577000006],[-55.37010657499991,47.69428131700015],[-55.364125128999916,47.70026276200015],[-55.35362708199994,47.70555247600005],[-55.349680141999954,47.71116771000014],[-55.36335201699998,47.71845123900005],[-55.3606664699999,47.72235748900006],[-55.35582434799991,47.732123114],[-55.36558997299997,47.73200104400003],[-55.37482662699991,47.72955963700018],[-55.38312740799992,47.725043036000116],[-55.390614386999886,47.71845123900005],[-55.385894334999875,47.71531810099999],[-55.38182532499991,47.70905182500003],[-55.376942511999935,47.70416901200015],[-55.381703253999945,47.701361395],[-55.39102128799988,47.69733307500006],[-55.40021725199995,47.695868231000176],[-55.40420488199993,47.70075104400014],[-55.40851803299992,47.71051666900008],[-55.417876756999874,47.717474677],[-55.42731686099998,47.71954987200008],[-55.431548631999895,47.71474844],[-55.428944464999915,47.68305084800015],[-55.43138587099994,47.67267487200014],[-55.4414770169999,47.66010163000006],[-55.46410071499989,47.640041408000016],[-55.470204230999855,47.62689850500014],[-55.459462042999945,47.616034247000144],[-55.44644120999996,47.61920807500003],[-55.43350175699996,47.629828192000055],[-55.417876756999874,47.63361237200009],[-55.39679928299995,47.616034247000144],[-55.42699133999985,47.59479401200015],[-55.431548631999895,47.58808014500011],[-55.426014777999875,47.58494700700005],[-55.390614386999886,47.59552643400009],[-55.390614386999886,47.58808014500011],[-55.40172278599991,47.582749742000075],[-55.40168209499993,47.57811107000013],[-55.39757239499997,47.573431708000115],[-55.39679928299995,47.56761302300008],[-55.41852779899992,47.53351471600014],[-55.40233313699986,47.520738023000106],[-55.40705318899995,47.50145091400016],[-55.42235266799992,47.48265208500011],[-55.43781490799994,47.47138092700014],[-55.46076412699995,47.46539948100012],[-55.52090410099993,47.46458567900011],[-55.52424068899995,47.461737372000144],[-55.555083787999905,47.444769598],[-55.56216386599988,47.43475983300003],[-55.57510331899988,47.409654039000095],[-55.58238684799988,47.40253327000006],[-55.59850012899997,47.39931875200001],[-55.601470506999874,47.40643952000006],[-55.59605872299994,47.42365143400018],[-55.60049394399991,47.43891022300015],[-55.59874426999991,47.445624091000084],[-55.5892227859999,47.45091380400008],[-55.5892227859999,47.45774974199999],[-55.610951300999886,47.45502350500011],[-55.643706834999904,47.43866608299999],[-55.66429602799994,47.43724192900013],[-55.6575821609999,47.445135809000085],[-55.64435787699995,47.45132070500007],[-55.63703365799995,47.45774974199999],[-55.61180579299989,47.499457098000114],[-55.60342363199993,47.50775788000011],[-55.5892227859999,47.51239655200013],[-55.59976152299987,47.52700429900007],[-55.61876380099997,47.541693427000055],[-55.63841712099991,47.545314846000124],[-55.65127519399993,47.52667877800003],[-55.64273027299993,47.52887604400003],[-55.63703365799995,47.52863190300008],[-55.63149980399993,47.527411200000145],[-55.62336178299992,47.52667877800003],[-55.629628058999856,47.518011786000145],[-55.64110266799992,47.50665924700017],[-55.65392005099994,47.49656810100011],[-55.66429602799994,47.491888739],[-55.675770636999886,47.49433014500011],[-55.68541419199994,47.50079987200003],[-55.69664466099994,47.50629303600006],[-55.71271725199992,47.506170966000084],[-55.70677649599991,47.49388255400011],[-55.70396887899994,47.489691473],[-55.698475714999915,47.485744533000016],[-55.715687628999945,47.47597890800007],[-55.73460852799988,47.467759507000075],[-55.754302537999905,47.461615302],[-55.77415930899991,47.45774974199999],[-55.76414954299992,47.477280992000075],[-55.761301235999895,47.48700592700011],[-55.76732337099989,47.491888739],[-55.77147376199994,47.50421784100002],[-55.767079230999855,47.51577383000016],[-55.759429490999935,47.52753327000012],[-55.75373287699995,47.540269272999986],[-55.770741339999915,47.53143952000012],[-55.78652910099996,47.51361725500006],[-55.794504360999895,47.493597723],[-55.787831183999856,47.47821686400006],[-55.80524654899991,47.46222565300015],[-55.82160396999993,47.46454498900012],[-55.83828691299988,47.473700262000094],[-55.85676021999989,47.47821686400006],[-55.87169348899994,47.47264232000005],[-55.89061438699986,47.46092357000005],[-55.90782630099988,47.44757721600014],[-55.917591925999915,47.43724192900013],[-55.91665605399993,47.45734284100008],[-55.89085852799991,47.478461005],[-55.8356013659999,47.51239655200013],[-55.7716365229999,47.572699286],[-55.746896938999924,47.58808014500011],[-55.75987708199992,47.58673737200002],[-55.78058834499993,47.57684967700011],[-55.791249152999846,47.57444896],[-55.79898027299986,47.569159247000115],[-55.80988521999995,47.55988190300015],[-55.817534959999875,47.5561384140001],[-55.81578528599988,47.56761302300008],[-55.83385169199991,47.56639232000005],[-55.850412563999946,47.557806708000115],[-55.87718665299988,47.53351471600014],[-55.89391028599991,47.541408596000124],[-55.91478430899988,47.53286367400001],[-55.93488521999993,47.51943594],[-55.94888261599987,47.51239655200013],[-55.9725642569999,47.51068756700012],[-56.020130988999874,47.49949778900013],[-56.10578365799994,47.46670156500004],[-56.12051347599996,47.4680036480001],[-56.16193600199997,47.491929429],[-56.16942298099994,47.503729559000064],[-56.15094967399992,47.51984284100003],[-56.13341223899988,47.52545807500003],[-56.04552161399991,47.535793361000046],[-55.93862870999996,47.56761302300008],[-55.929595506999924,47.56810130400005],[-55.91808020699992,47.56679922100015],[-55.91136633999986,47.56761302300008],[-55.90656490799997,47.57070547100015],[-55.903472459999904,47.575262762000094],[-55.900013800999886,47.579494533000016],[-55.88239498599995,47.58445872600008],[-55.86314856699991,47.598578192],[-55.85301673099988,47.60175202000006],[-55.8294978509999,47.603745835],[-55.80825761599993,47.609198309000035],[-55.786732550999915,47.61896393400017],[-55.74254309799994,47.64492422100007],[-55.72264563699994,47.65013255400008],[-55.69896399599992,47.65306224199999],[-55.629546678999866,47.67747630400014],[-55.65038001199986,47.68183014500012],[-55.68004309799988,47.67841217700011],[-55.733225063999974,47.66380442900002],[-55.8131404289999,47.62518952000012],[-55.843088344999956,47.622259833000115],[-55.86729895699994,47.62791575700011],[-55.89439856699988,47.64044830900009],[-55.91441809799994,47.65924713700015],[-55.917591925999915,47.6837425800001],[-55.90355383999988,47.699652411],[-55.82876542899987,47.73895905200011],[-55.8333634109999,47.74258047100007],[-55.83824622299988,47.74909088700015],[-55.843088344999956,47.75259023600016],[-55.83698483,47.75910065300015],[-55.81940670499995,47.77236562700006],[-55.81578528599988,47.77651601800004],[-55.81578528599988,47.79507070500004],[-55.81187903599988,47.79987213700012],[-55.80211341099994,47.801011460000055],[-55.80211341099994,47.80719635600012],[-55.82481848899988,47.820379950000145],[-55.8165583979999,47.83966705900009],[-55.79417883999989,47.858221747000115],[-55.77415930899991,47.86928945500013],[-55.795643683999934,47.87791575700005],[-55.78477942599994,47.89500560099999],[-55.75999915299988,47.912909247000144],[-55.73940995999996,47.92389557500011],[-55.7552791009999,47.94623444200015],[-55.766184048999946,47.955145575000174],[-55.78038489499996,47.958075262000094],[-55.77403723899994,47.93280670800006],[-55.784047003999916,47.92169830900012],[-55.80431067599994,47.91331614800005],[-55.82876542899987,47.896633205],[-55.8170466789999,47.88865794500008],[-55.81973222599987,47.880031643000066],[-55.8356013659999,47.86245351800012],[-55.84410559799991,47.836411851000044],[-55.849273240999935,47.81061432500003],[-55.86001542899992,47.79120514500012],[-55.88536536399988,47.777899481000084],[-55.96849524599995,47.759833075000174],[-55.990223761999914,47.751532294000086],[-56.00934811099998,47.739243882000046],[-56.04938717399991,47.70506419500005],[-56.05931555899991,47.69953034100003],[-56.0724177729999,47.69733307500006],[-56.10289466099994,47.699896552000055],[-56.11082923099991,47.704046942],[-56.096302863999966,47.711004950000174],[-56.096302863999966,47.71845123900005],[-56.10578365799994,47.72687409100011],[-56.092640753999916,47.74290599200002],[-56.071115688999896,47.76203034100017],[-56.05532792899993,47.779933986000046],[-56.089507615999935,47.757473049000126],[-56.101063605999855,47.75971100500003],[-56.116810675999915,47.779933986000046],[-56.13780676999994,47.825506903000175],[-56.15094967399992,47.84198639500006],[-56.15501868399988,47.82615794500013],[-56.1471248039999,47.81085846600017],[-56.13609778599994,47.7946638040001],[-56.13044186099995,47.77651601800004],[-56.13243567599991,47.75527578300013],[-56.13927161399991,47.742132880000085],[-56.17202714799993,47.71845123900005],[-56.16038977799994,47.717840887000094],[-56.15070553299997,47.71377187700013],[-56.142974412999955,47.70669179900007],[-56.137277798999975,47.69733307500006],[-56.14964758999991,47.68724192899999],[-56.16344153599994,47.684149481000084],[-56.1778051419999,47.68268463700004],[-56.19188391799994,47.67747630400014],[-56.17804928299994,47.672023830000015],[-56.17202714799993,47.670640367000104],[-56.17536373599995,47.66600169499999],[-56.17699133999989,47.662543036],[-56.17955481699991,47.65949127800009],[-56.18565833199989,47.656398830000015],[-56.1583552729999,47.64272695500007],[-56.167144334999875,47.63662344],[-56.18077551999991,47.63068268400015],[-56.19322669199994,47.63007233300003],[-56.19871985599985,47.639593817],[-56.20299231699996,47.64964427299999],[-56.21239173099991,47.65574778900016],[-56.22175045499991,47.655462958000115],[-56.22598222599996,47.64642975500011],[-56.234974738999966,47.631984768000066],[-56.25609290299988,47.62726471600014],[-56.30174719999991,47.62909577000012],[-56.29808508999986,47.64496491100005],[-56.3001195949999,47.66571686400006],[-56.29954993399991,47.68528880400013],[-56.28807532499988,47.69733307500006],[-56.30223548099991,47.70604075700011],[-56.308094855999855,47.719183661],[-56.30858313699994,47.75259023600016],[-56.31407630099997,47.73777903900016],[-56.315785285999965,47.721340236000074],[-56.320708787999926,47.70844147300006],[-56.335845506999924,47.70416901200015],[-56.335845506999924,47.69733307500006],[-56.31533769399988,47.685858466000084],[-56.31102454299988,47.661200262000094],[-56.319162563999974,47.634426174],[-56.335845506999924,47.616034247000144],[-56.36123613199996,47.60805898600001],[-56.38980058499993,47.60643138199999],[-56.46458899599992,47.611232815000065],[-56.497181769999884,47.62026601800006],[-56.51402747299988,47.622259833000115],[-56.5658259759999,47.616034247000144],[-56.67202714799993,47.626695054],[-56.69957434799994,47.622259833000115],[-56.68529212099986,47.611232815000065],[-56.65025794199997,47.60057200700013],[-56.637562628999916,47.58808014500011],[-56.66234290299988,47.58144765800016],[-56.66856848899994,47.577866929],[-56.67613684799997,47.577337958000115],[-56.70958411399994,47.58808014500011],[-56.720814581999946,47.594671942],[-56.744211391999926,47.62588125200007],[-56.75426184799988,47.63654205900012],[-56.76154537699992,47.62986888200005],[-56.76789303299994,47.622259833000115],[-56.75352942599997,47.61090729400014],[-56.743967251999976,47.59589264500012],[-56.73078365799992,47.58201732000013],[-56.70588131399989,47.57444896],[-56.70588131399989,47.56761302300008],[-56.725697394999905,47.561712958000115],[-56.77745520699992,47.53339264500009],[-56.79149329299989,47.530096747000144],[-56.80382239499991,47.53925202000012],[-56.810414191999904,47.53949616100006],[-56.81623287699995,47.535834052000105],[-56.82591712099992,47.53351471600014],[-56.85122636599996,47.53172435100008],[-56.857085740999906,47.53729889500009],[-56.850453253999945,47.553941148000135],[-56.869984503999916,47.545111395000056],[-56.89391028599988,47.54751211100002],[-56.917469855999904,47.55744049700003],[-56.93586178299995,47.57103099199999],[-56.95742753799987,47.583400783000016],[-56.983876105999855,47.58698151200018],[-57.120716925999886,47.56761302300008],[-57.132883266999954,47.56891510600014],[-57.14659583199989,47.572333075000174],[-57.159413214999944,47.57778554900001],[-57.16885331899993,47.58466217700011],[-57.1673070949999,47.589016018],[-57.149566209999904,47.60065338700012],[-57.144642706999946,47.609198309000035],[-57.16466223899991,47.632513739000146],[-57.17198645699992,47.63654205900012],[-57.196156378999916,47.59870026200015],[-57.20689856699994,47.594142971000124],[-57.21983801999993,47.595770575000145],[-57.24396725199995,47.60175202000006],[-57.25682532499988,47.60004303600006],[-57.288644985999916,47.58808014500011],[-57.31456458199992,47.583685614000146],[-57.32591712099988,47.58616771000008],[-57.336415167999895,47.59552643400009],[-57.34194902299989,47.608587958000086],[-57.33893795499989,47.61774323100015],[-57.33287512899989,47.62498607],[-57.32966061099992,47.632798569999984],[-57.33291581899987,47.64272695500007],[-57.34105383999988,47.643011786000116],[-57.351185675999936,47.639064846000124],[-57.366851365999935,47.635402736000074],[-57.376047329999885,47.63019440300017],[-57.38117428299992,47.62909577000012],[-57.390248175999915,47.63011302300002],[-57.40859941299996,47.63507721600014],[-57.41901607999995,47.63654205900012],[-57.50527910099989,47.63275788],[-57.535715298999946,47.63654205900012],[-57.533192511999935,47.64337799700003],[-57.531646287999905,47.64642975500011],[-57.528879360999916,47.65013255400008],[-57.543527798999946,47.64720286700005],[-57.55614173099991,47.64276764500006],[-57.56773841099993,47.63580963700018],[-57.57945716099994,47.625677802000105],[-57.62783769399993,47.60175202000006],[-57.646107550999915,47.604071356000034],[-57.65465247299991,47.61041901200015],[-57.66881262899994,47.632798569999984],[-57.68081620999987,47.639960028000026],[-57.72093665299988,47.653876044000086],[-57.733998175999936,47.656398830000015],[-57.75072180899988,47.65106842700005],[-57.75601152299988,47.63873932500009],[-57.75890051999991,47.625230210000105],[-57.76781165299994,47.616034247000144],[-57.78425045499991,47.63255442900014],[-57.78954016799992,47.63654205900012],[-57.796009894999905,47.63593170800005],[-57.80821692599988,47.62885163],[-57.81623287699991,47.62909577000012],[-57.829701300999915,47.63654205900012],[-57.83800208199989,47.64508698100003],[-57.847320115999935,47.65241120000003],[-57.86400305899989,47.656398830000015],[-57.878529425999915,47.65607330900009],[-57.91860917899993,47.65013255400008],[-57.90444902299992,47.67890045800003],[-57.8954158189999,47.69122955900015],[-57.88451087099992,47.69733307500006],[-57.915598110999916,47.69733307500006],[-57.92593339799993,47.69521719000012],[-57.93008378799987,47.68988678600006],[-57.93309485599988,47.68341705900015],[-57.93976803299995,47.67747630400014],[-57.95482337099987,47.67267487200014],[-58.00495357999994,47.67747630400014],[-58.01012122299995,47.683294989],[-58.02562415299988,47.69375234600006],[-58.04198157499988,47.69855377800015],[-58.05850175699995,47.67576732000013],[-58.0751033189999,47.67462799700009],[-58.08385169199991,47.680812893000066],[-58.06944739499995,47.69114817900008],[-58.06944739499995,47.69733307500006],[-58.097767706999974,47.69521719000012],[-58.187896287999905,47.67304108300006],[-58.21422278599994,47.66046784100016],[-58.22716223899993,47.656398830000015],[-58.2415258449999,47.65949127800009],[-58.28014075399997,47.675034898000106],[-58.292591925999886,47.67405833500011],[-58.30186926999994,47.666083075000174],[-58.33031165299985,47.64663320500007],[-58.340728318999936,47.64272695500007],[-58.354725714999915,47.649115302],[-58.354969855999855,47.663234768000116],[-58.34805253799996,47.67731354400017],[-58.340728318999936,47.6837425800001],[-58.338002081999974,47.689764716000084],[-58.31338456899988,47.72842031500014],[-58.30321204299992,47.73700592700005],[-58.289458787999905,47.744126695000105],[-58.274647589999944,47.74949778900016],[-58.26130123599992,47.75259023600016],[-58.324045376999926,47.74957916900014],[-58.34972083199997,47.73965078300013],[-58.37116451699989,47.71845123900005],[-58.38780676999994,47.676459052000084],[-58.40094967399992,47.65452708500005],[-58.425770636999886,47.63654205900012],[-58.43321692599994,47.63654205900012],[-58.45238196499991,47.6461449240001],[-58.47069251199988,47.65200429900012],[-58.48892167899996,47.65167877800012],[-58.50837154899994,47.64272695500007],[-58.515370245999925,47.65371328300013],[-58.52293860599988,47.66181061400006],[-58.531890428999894,47.66567617400007],[-58.54308020699991,47.66380442900002],[-58.52721106699988,47.65106842700005],[-58.535959438999946,47.64573802299999],[-58.57042395699988,47.64272695500007],[-58.57970130099994,47.63499583500008],[-58.603342251999976,47.62002187700013],[-58.62755286399996,47.61204661699999],[-58.63866126199991,47.625677802000105],[-58.647938605999855,47.62636953300007],[-58.70323645699994,47.60175202000006],[-58.767160610999944,47.596014716000084],[-58.92174231699988,47.60150788000011],[-58.950835740999956,47.59178294500008],[-58.96275794199991,47.58144765800016],[-58.97085527299993,47.58161041900002],[-58.97826087099992,47.58600495000011],[-58.98810787699991,47.58808014500011],[-58.9994197259999,47.58539459800015],[-59.02212480399996,47.57636139500012],[-59.032785610999895,47.57444896],[-59.11164303299995,47.56077708500005],[-59.146351691999904,47.560980536],[-59.16340084499987,47.56386953300013],[-59.19098873599998,47.57831452000009],[-59.203968878999966,47.577134507000046],[-59.21613521999987,47.57379791900003],[-59.22765051999989,47.57444896],[-59.23884029899992,47.583400783000016],[-59.2462458979999,47.59491608300014],[-59.25560462099992,47.60492584800012],[-59.27236894399994,47.609198309000035],[-59.287180141999926,47.6102562520001],[-59.301136847999885,47.61420319200009],[-59.30846106699988,47.622503973000065],[-59.303374803999866,47.63654205900012],[-59.31261145699991,47.66233958500014],[-59.307728644999976,47.69928620000008],[-59.295562303999866,47.735541083],[-59.282866990999906,47.75942617400007],[-59.31065833199989,47.76166413000006],[-59.325062628999945,47.774481512000094],[-59.33055579299989,47.79425690300012],[-59.33136959499989,47.81745026200004],[-59.336577928999894,47.823391018000066],[-59.359608527999846,47.83283112200009],[-59.36485755099994,47.838283596000124],[-59.36668860599992,47.84788646],[-59.37165279899998,47.85504791900014],[-59.39883378799988,47.880316473],[-59.40392005099991,47.886704820000105],[-59.40583248599995,47.896633205],[-59.402658657999886,47.909613348000036],[-59.39492753799988,47.91608307500003],[-59.38508053299995,47.92039622600011],[-59.375396287999905,47.92731354400003],[-59.36754309799991,47.93105703300016],[-59.356271938999924,47.931870835000055],[-59.33446204299988,47.93073151200004],[-59.32038326699993,47.93447500200007],[-59.31371008999989,47.943345445000105],[-59.30964107999992,47.95453522300012],[-59.303374803999866,47.96491120000003],[-59.24168860599985,48.01552969],[-59.16832434799991,48.058742580000015],[-59.00177975199995,48.12250397300015],[-58.9701228509999,48.14191315300015],[-58.9103897779999,48.19977448100015],[-58.85680091099991,48.216498114],[-58.84105383999985,48.22760651200004],[-58.81615149599992,48.25287506700009],[-58.79865475199997,48.265814520000085],[-58.74107825399988,48.2938500020001],[-58.723459438999974,48.30573151200003],[-58.68301347599992,48.34503815300015],[-58.67829342399992,48.35346100499999],[-58.673939581999946,48.37343984600006],[-58.666574673999946,48.38320547100001],[-58.65794837099994,48.38703034100003],[-58.636789516999926,48.389837958000086],[-58.62873287699989,48.393744208000086],[-58.60041256399995,48.419907945000105],[-58.57042395699988,48.4403343770001],[-58.53620357999991,48.45355866100011],[-58.49461829299994,48.45831940300003],[-58.49461829299994,48.45148346600003],[-58.523793097999885,48.44057851800012],[-58.551503058999884,48.433417059000085],[-58.578195766999904,48.423407294000114],[-58.60448157499991,48.40371328300007],[-58.58617102799985,48.404974677000084],[-58.53563391799994,48.424139716000134],[-58.486724412999955,48.433905341000084],[-58.47419186099995,48.437811591000084],[-58.457753058999884,48.44940827],[-58.43399003799996,48.47943756700014],[-58.418934699999845,48.49241771000014],[-58.40607662699992,48.497259833000115],[-58.34105383999989,48.50958893400015],[-58.30650794199997,48.51097239800004],[-58.289173956999974,48.51357656500015],[-58.272206183999906,48.52090078300013],[-58.27538001199989,48.52749258000004],[-58.290679490999935,48.53229401200012],[-58.31029212099988,48.53400299700003],[-58.37531490799996,48.5250511740001],[-58.41100012899989,48.51422760600009],[-58.43321692599994,48.499335028000026],[-58.447377081999974,48.513413804],[-58.4706111319999,48.51455312700001],[-58.5189102859999,48.50674062700013],[-58.54043535099993,48.51203034100011],[-58.574615037999926,48.537827867000125],[-58.59772701699995,48.54706452],[-58.70323645699994,48.55451080900015],[-58.72667395699992,48.55198802300005],[-58.83800208199997,48.52558014500006],[-58.938343878999945,48.51679108299999],[-59.03294837099987,48.52094147300012],[-59.07823645699997,48.51496002800003],[-59.23648027299995,48.472845770000056],[-59.262440558999934,48.47260163000011],[-59.25723222599996,48.4801292990001],[-59.24649003799993,48.491644598000114],[-59.24132239499995,48.499335028000026],[-59.23428300699996,48.51260000200006],[-59.23517818899995,48.52317942900011],[-59.22647050699987,48.539862372000144],[-59.206898566999904,48.555324611000074],[-59.113148566999875,48.60895416900017],[-58.97081458199991,48.67503489799999],[-58.803456183999856,48.771429755000085],[-58.768950975999964,48.780462958000086],[-58.788685675999886,48.759426174000154],[-58.81456458199989,48.73704661700013],[-58.84239661399993,48.71942780200003],[-58.86803137899991,48.712144272999986],[-58.8880102199999,48.702215887000094],[-58.918690558999884,48.67877838700012],[-58.9471736319999,48.65143463700004],[-58.96080481699994,48.62962474199999],[-58.958851691999904,48.616156317],[-58.950835740999956,48.60748932500012],[-58.92601477799991,48.595445054],[-58.899647589999915,48.58641185099999],[-58.898589647999955,48.5794945330001],[-58.89940344999985,48.55760325700005],[-58.89268958199991,48.553900458000115],[-58.87791907499994,48.563788153000026],[-58.854644334999904,48.58527252800014],[-58.8469945949999,48.59638092699999],[-58.84634355399992,48.60748932500012],[-58.85094153599988,48.63646067900011],[-58.84410559799994,48.63646067900011],[-58.841704881999895,48.608547268000066],[-58.840484178999894,48.59735748900006],[-58.83873450399989,48.58844635600011],[-58.82164466099994,48.578517971],[-58.81309973899994,48.57160065300012],[-58.794504360999916,48.56488678600005],[-58.76353919199991,48.56256745000012],[-58.732533331999974,48.56395091400019],[-58.71373450399991,48.56818268400009],[-58.6853735019999,48.60175202000011],[-58.678374803999894,48.64305247599999],[-58.67731686099995,48.68634674700014],[-58.666574673999946,48.725816148000135],[-58.62413489499997,48.77545807500003],[-58.61074785099996,48.81085846600014],[-58.59337317599988,48.82778554900012],[-58.55675208199994,48.85618724200005],[-58.549224412999905,48.86497630400011],[-58.54454505099988,48.871771552000055],[-58.53563391799994,48.89032623900005],[-58.52830969999994,48.91449616100006],[-58.522084113999874,48.92625560100005],[-58.51203365799989,48.93130117400007],[-58.5021052729999,49.00641510600009],[-58.455474412999905,49.04132721600011],[-58.44334876199991,49.05678945500012],[-58.418934699999845,49.11562734600001],[-58.398426886999886,49.13670482000005],[-58.36856035099989,49.149318752],[-58.36119544199992,49.15102773600002],[-58.34878495999987,49.144924221000124],[-58.34605872299992,49.13117096600003],[-58.35338294199991,49.11692942900011],[-58.37116451699989,49.109442450000145],[-58.344471808999884,49.109442450000145],[-58.344471808999884,49.10260651200004],[-58.356922980999904,49.09418366100009],[-58.36733964799989,49.083685614],[-58.36961829299986,49.072414455000015],[-58.35749264199995,49.061672268],[-58.34288489499995,49.0602888040001],[-58.3085017569999,49.071478583000115],[-58.292591925999886,49.074652411],[-58.21336829299991,49.074204820000105],[-58.17585201699989,49.06647370000009],[-58.1451716789999,49.047308661000116],[-58.09772701699998,48.99689362200009],[-58.06859290299994,48.979193427],[-57.920725063999946,48.96206289300015],[-57.88451087099992,48.97223541900008],[-57.907948370999925,48.983058986000096],[-58.009348110999916,48.983058986000096],[-58.04621334499989,48.99640534100011],[-58.06078040299993,49.008124091000084],[-58.094146287999905,49.02643463700015],[-58.107411261999935,49.03742096600003],[-58.12474524599992,49.074652411],[-58.13255774599992,49.08685944200006],[-58.136219855999876,49.09487539300004],[-58.13776607999992,49.106024481000034],[-58.13540605399987,49.12693919500002],[-58.12706458199988,49.13515859600001],[-58.11046301999993,49.134711005],[-58.06102454299988,49.12787506700009],[-58.001210089999915,49.13670482000005],[-57.93431555899991,49.1264509140001],[-57.91246497299994,49.129950262000094],[-57.899647589999915,49.13882070500013],[-57.850412563999924,49.18451569200006],[-57.8578181629999,49.19196198100015],[-57.894032355999904,49.16453685099999],[-57.91502844999988,49.15468984600007],[-57.93976803299995,49.15102773600002],[-57.96837317599991,49.15574778900013],[-57.968413865999906,49.16596100500005],[-57.950795050999886,49.17706940300009],[-57.9260961579999,49.18451569200006],[-57.9260961579999,49.19196198100015],[-58.022572394999884,49.15704987200003],[-58.079986131999895,49.14679596600011],[-58.11046301999993,49.17084381700012],[-58.10065670499991,49.18280670800006],[-58.01488196499986,49.17829010600012],[-57.98949133999994,49.18793366100009],[-57.9667048819999,49.20441315300015],[-57.9260961579999,49.24656810100011],[-57.94896399599991,49.24103424700009],[-57.98643958199994,49.225246486000124],[-58.00865637899989,49.21930573100003],[-58.03575598899994,49.217678127],[-58.137847459999904,49.22785065300006],[-58.193430141999926,49.24306875200004],[-58.21410071499986,49.25340403900013],[-58.22948157499991,49.26845937700013],[-58.235178188999974,49.284613348],[-58.23546301999991,49.30329010600009],[-58.2286677729999,49.37099844000004],[-58.211984829999956,49.409409898000135],[-58.185902472999885,49.44269440300003],[-58.137033657999886,49.48419830900012],[-58.09162350199989,49.51471588700015],[-58.058094855999855,49.52692291900003],[-58.022572394999884,49.55438873900009],[-58.001210089999915,49.56191640800012],[-57.96678626199988,49.559556382],[-57.940297003999916,49.54901764500012],[-57.92027747299994,49.531927802000084],[-57.91246497299994,49.51007721600002],[-57.91258704299991,49.48468659100011],[-57.90941321499985,49.459133205000015],[-57.89745032499993,49.43919505400013],[-57.871449347999935,49.43089427300004],[-57.89622962099992,49.473456122000115],[-57.8958634109999,49.49249909100008],[-57.871449347999935,49.50665924700003],[-57.8443497389999,49.50625234600001],[-57.81794186099992,49.49453359600012],[-57.79084225199991,49.478664455000015],[-57.761586066999875,49.4657250020001],[-57.733957485999944,49.460150458],[-57.70360266799988,49.458889065000065],[-57.70030676999993,49.46283600500006],[-57.712880011999864,49.471747137000094],[-57.797596808999934,49.509751695000105],[-57.819162563999946,49.53058502800008],[-57.82306881399995,49.56191640800012],[-57.8331599599999,49.552394924000126],[-57.8426814439999,49.53851959800015],[-57.85456295499995,49.527736721000124],[-57.871449347999935,49.52716705900018],[-57.877674933999906,49.532294012000094],[-57.88414466099991,49.54148997600005],[-57.88927161399994,49.551459052000055],[-57.89134680899985,49.55849844000012],[-57.89561926999993,49.56732819200009],[-57.90562903599994,49.57599518400018],[-57.9260961579999,49.589260158000016],[-57.92300370999993,49.593207098],[-57.921498175999965,49.596625067],[-57.92039954299992,49.599839585000055],[-57.91860917899993,49.60346100500011],[-57.94395911399996,49.61416250200013],[-57.95164954299988,49.64427317900007],[-57.948109503999916,49.67951080900012],[-57.93976803299995,49.705267645000056],[-57.911936001999976,49.75234609600007],[-57.898793097999906,49.767320054],[-57.89020748599993,49.77366771000011],[-57.87083899599989,49.782904364],[-57.86400305899989,49.78782786700004],[-57.86066646999984,49.795599677000055],[-57.860096808999884,49.80438873900012],[-57.858143683999934,49.813625393000095],[-57.850412563999924,49.82257721600011],[-57.85252844999994,49.83323802300005],[-57.82408606699991,49.861761786000145],[-57.809396938999924,49.896918036],[-57.77525794199991,49.928452867000104],[-57.761586066999875,49.94489166900011],[-57.73281816299993,50.00600820500016],[-57.69847571499989,50.043524481000176],[-57.658599412999905,50.10993073100012],[-57.610178188999924,50.16567617400001],[-57.60338294199988,50.181952216000134],[-57.60098222599993,50.2037621110001],[-57.59434973899988,50.224676825000145],[-57.569813605999855,50.26764557500011],[-57.53929602799991,50.308294989],[-57.52660071499986,50.33051178600006],[-57.521392381999966,50.353257554000024],[-57.522613084999875,50.355902411],[-57.5251358709999,50.35789622600013],[-57.52769934799991,50.361029364],[-57.528879360999916,50.367254950000145],[-57.52672278599993,50.37034739800005],[-57.52204342399992,50.37197500200007],[-57.51732337099992,50.374457098],[-57.51268469999988,50.38983795800014],[-57.49474036399994,50.42527903900013],[-57.469878709999875,50.44916413000003],[-57.46377519399991,50.45783112200009],[-57.46092688699986,50.474798895000056],[-57.45685787699989,50.48305898600016],[-57.44546464799993,50.49315013200011],[-57.40534420499992,50.52024974200005],[-57.38695227799988,50.549261786000145],[-57.37413489499993,50.581000067],[-57.35529537699989,50.606594143000066],[-57.319081183999884,50.61709219000015],[-57.23863684799991,50.60000234600001],[-57.1983943349999,50.596909898000106],[-57.16201738199993,50.613674221000124],[-57.15477454299992,50.625677802000055],[-57.16510982999992,50.62872955900015],[-57.238392706999946,50.61762116100011],[-57.25739498599995,50.618150132],[-57.27562415299994,50.623928127000156],[-57.27562415299994,50.630113023000135],[-57.26577714799992,50.630113023000135],[-57.2567439439999,50.63133372600005],[-57.24836178299995,50.633775132],[-57.24022376199994,50.637518622000115],[-57.25462805899991,50.651190497000144],[-57.29963131399998,50.649481512000065],[-57.30915279899997,50.66860586100002],[-57.32188880099994,50.68720123900011],[-57.35073808499995,50.69098541900014],[-57.38109290299994,50.69110748900011],[-57.3985082669999,50.698960679],[-57.39696204299985,50.708644924000154],[-57.38695227799988,50.71478913000014],[-57.35936438699985,50.72174713700012],[-57.35024980399987,50.726060289000124],[-57.34386145699994,50.72695547100004],[-57.337147589999915,50.724676825000145],[-57.335926886999886,50.71539948100009],[-57.329335089999915,50.71332428600009],[-57.28693600199992,50.7201195330001],[-57.24022376199994,50.73379140800012],[-57.21373450399994,50.7507184920001],[-57.206695115999906,50.75421784100011],[-57.19456946499989,50.75495026200004],[-57.165516730999904,50.75311920800006],[-57.15518144399991,50.75771719],[-57.136382615999956,50.771063544000114],[-57.09019934799994,50.78823476800012],[-57.068959113999966,50.80206940300003],[-57.062163865999935,50.81012604400017],[-57.050770636999886,50.827704169000114],[-57.04222571499986,50.83616771000014],[-57.01398678299989,50.85179271000011],[-56.99510657499985,50.867254950000145],[-56.98517818899995,50.87343984600003],[-56.9772029289999,50.88149648600016],[-56.97398841099994,50.89451732000005],[-56.97154700399991,50.91254303600005],[-56.964507615999935,50.91388580900014],[-56.95352128799987,50.90997955900014],[-56.93919837099989,50.911932684000114],[-56.925526495999854,50.91815827000006],[-56.93101966099988,50.92731354400014],[-56.9391169909999,50.93235911699999],[-56.96031653599991,50.939195054000024],[-56.973744269999905,50.93162669500005],[-56.98102779899992,50.934963283000066],[-56.985503709999875,50.94208405200014],[-56.99551347599987,50.94916413],[-56.98428300699995,50.95612213700018],[-56.96031653599991,50.96653880400008],[-56.97614498599995,50.974107164000124],[-57.01439368399988,50.9720726580001],[-57.034779425999965,50.98016998900012],[-57.037831183999884,50.98529694200012],[-57.04482988199996,51.00263092700011],[-57.048451300999915,51.00812409100014],[-57.05772864499997,51.014390367000104],[-57.067250128999945,51.018703518],[-57.077626105999855,51.020941473000086],[-57.08942623599992,51.021144924000126],[-57.070220506999874,51.026922919000086],[-57.01085364499991,51.021144924000126],[-57.003895636999914,51.01300690300011],[-56.99461829299989,50.997381903000026],[-56.979888475999864,50.987779039000074],[-56.95661373599995,50.99754466400019],[-56.91685950399997,51.00885651200018],[-56.900705532999886,51.01821523600002],[-56.905100063999974,51.03538646000014],[-56.92048092399992,51.04319896000014],[-56.96251380099991,51.046576239000146],[-56.98013261599993,51.055324611000046],[-56.940174933999884,51.05548737200008],[-56.90269934799994,51.06069570500007],[-56.87498938699986,51.07778554900012],[-56.86412512899997,51.11359284100014],[-56.8548477859999,51.11957428600006],[-56.810536261999886,51.13080475500006],[-56.79523678299992,51.13784414300012],[-56.78746497299991,51.14996979400003],[-56.7897029289999,51.16107819200014],[-56.80947831899991,51.19245026200009],[-56.78156490799998,51.20673248900008],[-56.77342688699985,51.20184967700011],[-56.76545162699992,51.19969310100011],[-56.746815558999906,51.19928620000012],[-56.75597083199988,51.21246979400014],[-56.766916469999956,51.22256094000012],[-56.79523678299992,51.240871486000074],[-56.786040818999936,51.24892812700004],[-56.76797441299993,51.26137929900012],[-56.7610977859999,51.267564195000105],[-56.74494381399995,51.29608795800003],[-56.73688717399992,51.30573151200018],[-56.72020423099988,51.31932200700014],[-56.66486568899998,51.35008372600011],[-56.49351966099993,51.41217682500006],[-56.44440670499989,51.421454169000086],[-56.39452063699986,51.425238348000114],[-56.37706458199989,51.430853583000115],[-56.33556067599988,51.45795319200015],[-56.31602942599991,51.46743398600016],[-56.23810787699995,51.481105861000096],[-56.22598222599996,51.49070872600007],[-56.21540279899989,51.50177643400009],[-56.19090735599988,51.51121653900013],[-56.106190558999884,51.528998114],[-56.087798631999924,51.53534577000011],[-56.06086178299995,51.553412177000055],[-56.01903235599985,51.57273997599999],[-56.00352942599994,51.57664622599999],[-55.89281165299985,51.627752997000144],[-55.88402258999989,51.617010809000035]]],[[[-127.87633216099994,51.47418854400008],[-127.87149003799996,51.45652903900016],[-127.87930253799995,51.44220612200009],[-127.89753170499985,51.429754950000174],[-127.91808020699987,51.42129140800013],[-127.93293209499986,51.41901276200015],[-127.94322669199995,51.42243073100014],[-127.94945227799991,51.427639065000065],[-127.95433508999989,51.43357982],[-127.96084550699989,51.43952057500011],[-127.98379472599989,51.45111725500011],[-128.0076391269999,51.4676781270001],[-128.01618404899997,51.46482982000005],[-128.02700761599988,51.45868561400008],[-128.0502823559999,51.45994700699999],[-128.06859290299985,51.469549872000144],[-128.08604895699992,51.48688385600015],[-128.0991104809999,51.50869375200001],[-128.1042374339999,51.531642971000096],[-128.1091202459999,51.545152085000076],[-128.1452530589999,51.590277411000116],[-128.15660559799989,51.62787506700012],[-128.13902747299994,51.658026434000064],[-128.1043188139999,51.68183014500012],[-128.0261938139999,51.71979401200015],[-128.00987708199995,51.723700262000065],[-127.9893692699999,51.70038483300014],[-127.97655188699986,51.68211497600008],[-127.97126217399997,51.66404857000005],[-127.98135331899995,51.6517601580001],[-127.95055091099995,51.62889232],[-127.92031816299995,51.59613678600006],[-127.90489661399992,51.55874258000004],[-127.91869055899993,51.52204010600011],[-127.90367591099992,51.51430898600002],[-127.88829505099997,51.495794989],[-127.87633216099994,51.47418854400008]]],[[[-128.42322682199992,51.92593196100002],[-128.43239853299994,51.90235500600015],[-128.44548606499984,51.898104537000094],[-128.45436977199992,51.91736777500001],[-128.47882812599988,51.90684439200008],[-128.4926865469999,51.92603992200016],[-128.48696520599992,51.95365823700002],[-128.43821624499992,51.980797068000115],[-128.43205340899985,51.99514813800012],[-128.41741647699985,52.003488588],[-128.41345137199997,51.98316266400017],[-128.42076004499992,51.95247584100018],[-128.42322682199992,51.92593196100002]]],[[[-55.35269120999996,51.88450755400014],[-55.409657355999876,51.88206614800002],[-55.42739824099996,51.89134349200005],[-55.41852779899992,51.91864655200014],[-55.38312740799992,51.95962148600013],[-55.37450110599991,51.9637718770001],[-55.344960089999944,51.97231679900001],[-55.33226477799988,51.97386302300005],[-55.31236731699988,51.98371002800017],[-55.28726152299989,52.00063711100016],[-55.270130988999966,52.00560130400011],[-55.27391516799989,51.98012929900001],[-55.28604081899988,51.95954010600015],[-55.33238684799994,51.897609768],[-55.35269120999996,51.88450755400014]]],[[[-127.97044837099986,52.063177802],[-127.9534399079999,52.049017645000056],[-127.95978756399984,52.01715729400002],[-127.96056067599996,52.00234609600007],[-127.9534399079999,51.987494208],[-127.9633682929999,51.9693871110001],[-127.97817949099988,51.93016185100008],[-127.9875382149999,51.91181061400012],[-128.0360001289999,51.84357330900009],[-128.02855383999992,51.83673737200009],[-128.0360001289999,51.82990143400015],[-128.02708899599986,51.817816473000065],[-128.0169571609999,51.806830145],[-128.00959225199992,51.795477606000034],[-128.0092667309999,51.78213125200013],[-128.0176488919998,51.77216217700013],[-128.03258216099988,51.76422760600014],[-128.06387285099993,51.754787502000156],[-128.07510331899994,51.765082098000065],[-128.0921524729999,51.76129791900014],[-128.11294511599988,51.75234609600004],[-128.13524329299992,51.74730052299999],[-128.13996334499984,51.75259023600016],[-128.13829505099991,51.76386139500015],[-128.13438880099994,51.77472565300003],[-128.13219153599994,51.778713283000016],[-128.1289770169999,51.78668854400017],[-128.1224666009999,51.79303620000009],[-128.11750240799984,51.801459052000055],[-128.1185196609999,51.81622955900003],[-128.12218176999994,51.82387929900007],[-128.13833574099993,51.84357330900009],[-128.13760331899985,51.84658437700001],[-128.13487708199992,51.85130442900011],[-128.13390051999994,51.85736725500011],[-128.13833574099993,51.86399974199999],[-128.14289303299986,51.86424388200011],[-128.15660559799989,51.85871002800009],[-128.16258704299992,51.857163804000045],[-128.20563717399995,51.854478257],[-128.23037675699993,51.856024481000034],[-128.2481990229999,51.86399974199999],[-128.25104732999984,51.87592194200012],[-128.24461829299992,51.891831773000135],[-128.23062089799996,51.90591054900007],[-128.19603430899986,51.916083075000024],[-128.19908606699994,51.92572663],[-128.21719316299996,51.94285716400013],[-128.2222387359999,51.95416901200012],[-128.21898352799985,51.962713934000035],[-128.20726477799985,51.97386302300005],[-128.1777237619999,52.01577383000016],[-128.1592504549999,52.034816799000154],[-128.14183508999992,52.042792059000085],[-128.1309301419999,52.044907945000105],[-128.10724850199992,52.054348049000126],[-128.09434973899988,52.056463934000035],[-128.0662328769999,52.05556875200013],[-127.99885006399988,52.0656598980001],[-127.97044837099986,52.063177802]]],[[[-79.25169837099986,52.0768903670001],[-79.29523678299996,52.05540599199999],[-79.30943762899989,52.04588450699999],[-79.3205460279999,52.033514716000134],[-79.32559160099996,52.02130768400018],[-79.32689368399984,52.00946686400012],[-79.32664954299992,51.98175690300003],[-79.32860266799986,51.971380927000105],[-79.33649654899992,51.963324286],[-79.35411536399994,51.953436591000084],[-79.37340247299989,51.945257880000085],[-79.39305579299995,51.94025299700003],[-79.41397050699989,51.93829987200009],[-79.51549231699991,51.94660065300015],[-79.58409583199992,51.93292877800003],[-79.59072831899991,51.930650132000046],[-79.60411536399991,51.92088450700011],[-79.61107337099988,51.91864655200014],[-79.62043209499993,51.92047760600011],[-79.6210017569999,51.92503489800005],[-79.6192927729999,51.931586005000135],[-79.62165279899995,51.93915436400009],[-79.65575110599985,51.987494208],[-79.63980058499993,52.01618073100014],[-79.63532467399997,52.02167389500009],[-79.62108313699989,52.025783596000124],[-79.61046301999991,52.022894598],[-79.59947669199997,52.01764557500003],[-79.58409583199992,52.014837958000086],[-79.5574438139999,52.0190290390001],[-79.5335994129999,52.029730536000116],[-79.51276607999992,52.044134833],[-79.49474036399991,52.0595563820001],[-79.48399817599987,52.063910223000036],[-79.45620683499992,52.06338125200013],[-79.44383704299989,52.066107489],[-79.39509029899996,52.08372630400014],[-79.36758378799993,52.09784577000006],[-79.34870357999989,52.105047919000086],[-79.32900956899996,52.1049665390001],[-79.2994685539999,52.09739817900008],[-79.28368079299986,52.09650299700017],[-79.27232825399997,52.09137604400014],[-79.25169837099986,52.0768903670001]]],[[[-79.00666256399995,52.097886460000055],[-79.03160559799989,52.09341054900009],[-79.08665930899986,52.097479559000064],[-79.08014889199987,52.10651276200015],[-79.04539954299987,52.112738348000036],[-79.02745520699995,52.11359284100003],[-79.01789303299995,52.11237213700009],[-79.00186113199987,52.107570705000015],[-79.00666256399995,52.097886460000055]]],[[[-131.01683508999986,52.10797760600011],[-131.00987708199997,52.10602448100014],[-131.00633704299992,52.108099677],[-131.0030004549999,52.111070054000024],[-130.99665279899995,52.11172109600015],[-130.9602758449998,52.104315497000144],[-130.95075436099987,52.094916083000136],[-130.95506751199986,52.0768903670001],[-130.96690833199992,52.067938544000086],[-130.98375403599994,52.06663646],[-131.0171606109999,52.06948476800012],[-131.04482988199987,52.06159088700015],[-131.05455481699994,52.06537506700009],[-131.06493079299992,52.08372630400014],[-131.07135982999984,52.060980536],[-131.05528723899997,52.046698309000085],[-131.00967363199993,52.02850983300003],[-130.99225826699984,52.01337311400003],[-131.0015356109999,52.01190827000015],[-131.02354895699992,52.01878489800005],[-131.04442298099985,52.02850983300003],[-131.0400284499999,52.01373932500003],[-131.01748613199993,51.995021877000156],[-131.00967363199993,51.98012929900001],[-131.04442298099985,51.97386302300005],[-131.0373429029999,51.967840887000065],[-131.03197180899986,51.961086330000015],[-131.0239965489999,51.94660065300015],[-131.05068925699993,51.95355866100006],[-131.07437089799993,51.969427802000084],[-131.11270097599987,52.001857815000065],[-131.09996497299994,52.009914455000015],[-131.08975175699987,52.02114492400001],[-131.08775794199994,52.03107330900012],[-131.09972083199997,52.03534577000012],[-131.1131078769999,52.04218170800014],[-131.1175024079999,52.05776601800012],[-131.11888587099995,52.075018622000144],[-131.12816321499992,52.098089911],[-131.1268204419999,52.111558335],[-131.1139216789999,52.14581940300015],[-131.10875403599988,52.15403880400005],[-131.09870357999992,52.15607330900018],[-131.07860266799986,52.15204498900012],[-131.06737219999988,52.15106842700014],[-131.06094316299993,52.147365627],[-131.05996660099987,52.14061107000008],[-131.06493079299992,52.13092682500012],[-131.0408422519999,52.119533596000124],[-131.0295304029999,52.116766669000086],[-131.01683508999986,52.10797760600011]]],[[[-127.87767493399996,52.17194245000012],[-127.88882402299996,52.14618561400009],[-127.89488684799996,52.13580963700017],[-127.91978919199988,52.11880117400001],[-127.92735755099994,52.10907623900006],[-127.9327286449999,52.09931061400012],[-127.93980872299996,52.08991120000009],[-127.96149654899993,52.08283112200003],[-128.0143936839999,52.09149811400012],[-128.0394180979999,52.08030833500011],[-128.0524796209999,52.07632070500012],[-128.06989498599987,52.08026764500012],[-128.08649654899992,52.08852773600002],[-128.0974014959999,52.09739817900008],[-128.1060277989999,52.110785223000065],[-128.1111547519999,52.12787506700003],[-128.12165279899997,52.141791083],[-128.12295488199987,52.15167877800009],[-128.10655676999997,52.15176015800007],[-128.07697506399992,52.145209052],[-128.0672094389999,52.14850495000003],[-128.0476781889999,52.16181061400006],[-128.0360001289999,52.16571686400006],[-127.9466039699999,52.16571686400006],[-127.93797766799987,52.16461823100012],[-127.91958574099992,52.15997955900018],[-127.9093318349999,52.15888092700014],[-127.90168209499987,52.161281643000095],[-127.89622962099995,52.166408596000096],[-127.8894750639999,52.17096588700004],[-127.87767493399996,52.17194245000012]]],[[[-128.2159724599999,52.017808335],[-128.22813880099994,52.016669012000065],[-128.24010169199997,52.01797109600015],[-128.2481990229999,52.02167389500009],[-128.25243079299992,52.027736721000096],[-128.25283769399994,52.03339264500009],[-128.25275631399984,52.04002513200013],[-128.25511633999992,52.049017645000056],[-128.27904212099995,52.090765692],[-128.29637610599994,52.10594310099999],[-128.29067949099996,52.124701239000146],[-128.27749589799993,52.143500067],[-128.26561438699986,52.15204498900012],[-128.26398678299984,52.155707098000065],[-128.25332597599993,52.173285223],[-128.2481990229999,52.17934804900001],[-128.24229895699992,52.18390534100014],[-128.2365616529999,52.18732330900015],[-128.22032630099994,52.193589585000026],[-128.20152747299986,52.19798411699999],[-128.18024654899992,52.19989655200013],[-128.16022701699984,52.19855377800015],[-128.1452530589999,52.193589585000026],[-128.1526586579999,52.18618398600002],[-128.15514075399994,52.094305731000176],[-128.16258704299992,52.073187567000055],[-128.16934160099993,52.06818268400003],[-128.1863500639999,52.061753648000106],[-128.19359290299988,52.056463934000035],[-128.19815019399996,52.048081772999986],[-128.2028702459999,52.028794664000046],[-128.20726477799985,52.02167389500009],[-128.2159724599999,52.017808335]]],[[[-128.2788793609999,52.237209377],[-128.24657141799986,52.228908596000124],[-128.22777258999992,52.21283600500006],[-128.2484024729999,52.20701732000001],[-128.26602128799996,52.197577216000084],[-128.2783910799999,52.184759833000136],[-128.28302975199983,52.168768622000144],[-128.28624426999986,52.16429271],[-128.3035375639999,52.13092682500012],[-128.31362870999993,52.131415106000084],[-128.32982337099992,52.1478539080001],[-128.33667285699988,52.116226501000156],[-128.32151689599988,52.09044728700003],[-128.33975729099993,52.079336006000126],[-128.3662059149999,52.087849481000134],[-128.38426805999993,52.098015397000054],[-128.36811667599991,52.12156760400002],[-128.3578457629999,52.144525215],[-128.37322863799994,52.14953253400016],[-128.3945737369999,52.15551355300015],[-128.40514882899993,52.142409886000124],[-128.42242626799992,52.127661432000096],[-128.44171199899986,52.1227502200001],[-128.45467161899984,52.13089671900009],[-128.4389913139999,52.14251552399999],[-128.43006899699992,52.15404937600014],[-128.47736873299993,52.15138275600013],[-128.50535709899987,52.15310074700007],[-128.52244198299982,52.15755196700003],[-128.5179778649999,52.17475649500007],[-128.48367329899986,52.18662595000007],[-128.47152690999994,52.20288538600009],[-128.45654418099988,52.210863485000104],[-128.45533083199985,52.22491164400019],[-128.44729822099995,52.23800691100011],[-128.4090805159999,52.2363914940001],[-128.3662003249999,52.23476797100007],[-128.3444718089999,52.240790106000176],[-128.2788793609999,52.237209377]]],[[[-79.47496497299987,52.23749420800014],[-79.50129146999988,52.233099677000055],[-79.5016169909999,52.23663971600014],[-79.4947810539999,52.24575429900012],[-79.48493404899997,52.25332265800007],[-79.44562740799998,52.262396552000084],[-79.40566972599993,52.260972398000106],[-79.38532467399992,52.25576406500004],[-79.37930253799992,52.25189850500011],[-79.38125566299988,52.24477773600016],[-79.40086829299992,52.240912177000055],[-79.47496497299987,52.23749420800014]]],[[[-127.96084550699989,52.296047268000095],[-127.93643144399992,52.251044012000094],[-127.93293209499986,52.2376976580001],[-127.9266658189999,52.226548569999984],[-127.91486568899985,52.214911200000174],[-127.9077042309999,52.20087311400011],[-127.9155167309999,52.182766018],[-127.93203691299996,52.176214911000116],[-127.95466061099992,52.17820872600008],[-127.99502519399988,52.18618398600002],[-128.0447485019999,52.18085358300006],[-128.0712784499999,52.18231842700011],[-128.09121660099993,52.193589585000026],[-128.09398352799988,52.20514557500003],[-128.08665930899988,52.216009833000115],[-128.07306881399992,52.22402578300016],[-128.0335180329999,52.23151276200003],[-128.02065995999993,52.241115627],[-128.02163652299993,52.250677802],[-128.0394180979999,52.255072333000086],[-128.05431067599994,52.25348541900014],[-128.07799231699988,52.245062567],[-128.0974014959999,52.240790106000176],[-128.11807206899988,52.239447333],[-128.13768469999988,52.24164459800009],[-128.15607662699992,52.246975002000156],[-128.17316646999987,52.255072333000086],[-128.10020911399994,52.27850983300006],[-128.08031165299994,52.2926292990001],[-128.0554906889999,52.30345286699999],[-128.02033443899992,52.30560944200009],[-127.98525956899994,52.30206940300008],[-127.96084550699989,52.296047268000095]]],[[[-127.36880449099989,52.2584496110001],[-127.37389075399992,52.25055573100012],[-127.37804114499995,52.24823639500006],[-127.38756262899997,52.24835846600003],[-127.40510006399991,52.25429922100015],[-127.4128311839999,52.255072333000086],[-127.45376542899994,52.2376976580001],[-127.46288001199991,52.222723700000145],[-127.48436438699987,52.21019114800008],[-127.52887936099987,52.193589585000026],[-127.54002844999987,52.19147370000009],[-127.56651770699995,52.189398505000085],[-127.5766495429999,52.18618398600002],[-127.58482825399992,52.17723216399999],[-127.59455318899987,52.156154690000065],[-127.60090084499988,52.15204498900012],[-127.62523352799987,52.14834219000006],[-127.64224199099992,52.13812897300012],[-127.69326738199992,52.06761302300005],[-127.70571855399993,52.04340241100006],[-127.70360266799992,52.025091864],[-127.6981095039999,52.00405508000007],[-127.71808834499988,51.98822663000011],[-127.74718176999993,51.97809479400017],[-127.76911373599985,51.97386302300005],[-127.81981360599991,51.97093333500014],[-127.83739173099985,51.96702708500014],[-127.87287350199986,51.95473867400007],[-127.8882543609999,51.953436591000084],[-127.90217037699988,51.96824778900004],[-127.89972896999984,52.00161367400012],[-127.87824459499991,52.083563544000164],[-127.87340247299993,52.092922268],[-127.86465410099994,52.10423411699999],[-127.85899817599994,52.10830312700013],[-127.85334225199986,52.10956452000015],[-127.84805253799989,52.111558335],[-127.84357662699985,52.117905992000104],[-127.84654700399993,52.11871979400003],[-127.8509822259999,52.14862702],[-127.84178626199994,52.16811758000009],[-127.82022050699992,52.19570547100001],[-127.79507402299996,52.21767812700013],[-127.77529863199992,52.22036367400001],[-127.75104732999985,52.25018952],[-127.71271725199992,52.25482819200012],[-127.67056230399986,52.255072333000086],[-127.6189672519999,52.2809105490001],[-127.57725989499994,52.28994375200001],[-127.55190995999993,52.30524323100015],[-127.5424698559999,52.30825429900007],[-127.52204342399993,52.309637762000065],[-127.51158606699995,52.312892971000096],[-127.4988500639999,52.32697174700003],[-127.47581946499993,52.336249091000084],[-127.46446692599996,52.350409247000115],[-127.45539303299986,52.36640045800011],[-127.4469294909999,52.37799713700004],[-127.43175208199993,52.38715241100003],[-127.41454016799992,52.39264557500003],[-127.31175696499992,52.41327545800005],[-127.29548092399996,52.41958242400001],[-127.27037512899996,52.43537018400015],[-127.25877844999988,52.43549225500011],[-127.24083411399992,52.42641836100002],[-127.23574785099989,52.404038804000024],[-127.2409561839999,52.38377513199999],[-127.23761959499987,52.365952867000104],[-127.20669511599992,52.35065338700015],[-127.23802649599986,52.31293366100009],[-127.27696692599994,52.289374091000056],[-127.36436926999991,52.26129791900003],[-127.36880449099989,52.2584496110001]]],[[[-78.75243079299989,52.44794342700013],[-78.73424231699991,52.445135809000085],[-78.71947180899991,52.44554271],[-78.70738684799991,52.44757721600002],[-78.7084041009999,52.44399648600015],[-78.72350012899987,52.434759833],[-78.7398982409999,52.427313544000114],[-78.75523841099994,52.42206452000012],[-78.7510473299999,52.41893138200005],[-78.72801673099985,52.417385158000016],[-78.7269587879999,52.41233958500008],[-78.74982662699989,52.40619538],[-78.76089433499993,52.40643952000014],[-78.76109778599987,52.411322333000115],[-78.76256262899993,52.413763739000146],[-78.76659094999991,52.412502346000124],[-78.77440344999991,52.411810614],[-78.7820938789999,52.414129950000145],[-78.78355872299989,52.41380442900014],[-78.78677324099993,52.412746486000074],[-78.79263261599989,52.41144440300009],[-78.79450436099995,52.41193268400018],[-78.79332434799994,52.413478908000016],[-78.79491126199986,52.41388580900012],[-78.79698645699989,52.413519598],[-78.80003821499989,52.412787177000084],[-78.80150305899994,52.41766998900014],[-78.79922441299996,52.42934804900012],[-78.8016658189999,52.433905341000084],[-78.80776933499989,52.42914459800009],[-78.82079016799989,52.42381419500013],[-78.82725989499988,52.42763906500012],[-78.81452389199991,52.43524811400009],[-78.79637610599991,52.43886953300013],[-78.76854407499988,52.447699286],[-78.75243079299989,52.44794342700013]]],[[[-128.6772354809999,52.47768789300015],[-128.68708248599992,52.46735260600015],[-128.67784583199995,52.469305731000084],[-128.6690160799999,52.47223541900003],[-128.66071529899995,52.476141669000114],[-128.65294348899994,52.4809431010001],[-128.6323949859999,52.46979401200017],[-128.6236873039999,52.46308014500012],[-128.61823482999986,52.45368073100012],[-128.61827551999994,52.435126044000114],[-128.62047278599994,52.427313544000114],[-128.62564042899993,52.41958242400001],[-128.6127823559999,52.37738678600006],[-128.62315833199992,52.33014557500009],[-128.64830481699988,52.28969961100015],[-128.67959550699996,52.26813385600015],[-128.68639075399997,52.286078192],[-128.71666419199997,52.307806708000086],[-128.72809811099984,52.322699286000116],[-128.72940019399994,52.33270905200011],[-128.7269587879999,52.35423411700013],[-128.72809811099984,52.36432526200009],[-128.74852454299992,52.37116120000012],[-128.74917558499993,52.375921942],[-128.7476700509999,52.386948960000055],[-128.74852454299992,52.39166901200015],[-128.75641842399997,52.408107815000065],[-128.76280676999988,52.42853424700002],[-128.76382402299996,52.44953034100017],[-128.7553604809999,52.46735260600015],[-128.7411189439999,52.47455475500008],[-128.71751868399988,52.480902411000116],[-128.6728409499999,52.487860419000114],[-128.6728409499999,52.4809431010001],[-128.6772354809999,52.47768789300015]]],[[[-79.60944576699987,52.535101630000085],[-79.63939368399994,52.53261953300013],[-79.6381729809999,52.53782786700004],[-79.62144934799989,52.55585358300006],[-79.61628170499998,52.57241445500012],[-79.61241614499997,52.577337958],[-79.60155188699989,52.57782623900009],[-79.59142005099993,52.576727606000034],[-79.58828691299996,52.57135651200018],[-79.58873450399994,52.56395091400002],[-79.58462480399989,52.555161851000136],[-79.5721736319999,52.547674872000144],[-79.56529700399997,52.545355536],[-79.5721736319999,52.542466539000074],[-79.58136959499987,52.53986237200017],[-79.60944576699987,52.535101630000085]]],[[[-128.52513587099992,52.59796784100002],[-128.47207597599987,52.4882673200001],[-128.48473059799994,52.443182684000035],[-128.49787350199992,52.43634674700003],[-128.51602128799993,52.43378327000011],[-128.53408769399994,52.43593984600004],[-128.5467830069999,52.443182684000035],[-128.56065833199997,52.45331452],[-128.59292558499993,52.46141185100011],[-128.61929277299993,52.47785065300012],[-128.65054277299987,52.49209219000012],[-128.66291256399992,52.494614976000136],[-128.67870032499985,52.50088125200009],[-128.6890356109999,52.51227448100014],[-128.69888261599988,52.51813385600009],[-128.71373450399994,52.50771719],[-128.70181230399993,52.498724677],[-128.7062882149999,52.49095286699998],[-128.71971594999988,52.48834870000009],[-128.73485266799986,52.494614976000136],[-128.7572322259999,52.49030182500003],[-128.77745520699992,52.49990469000004],[-128.7969864569999,52.51373932500012],[-128.81745357999986,52.52195872600011],[-128.81187903599994,52.54067617400007],[-128.80134029899997,52.547023830000015],[-128.78673255099994,52.5444196640001],[-128.76903235599985,52.53620026200012],[-128.76012122299994,52.530259507],[-128.7528376939999,52.523911851000044],[-128.7451065749999,52.51845937700004],[-128.73485266799986,52.51512278900002],[-128.7270401679999,52.51805247600011],[-128.72105872299994,52.52513255400008],[-128.71324622299997,52.528876044000114],[-128.70010331899988,52.52195872600011],[-128.69391842399995,52.529445705000064],[-128.7013240229999,52.53168366100006],[-128.72118079299992,52.542425848000065],[-128.7144262359999,52.546372789000074],[-128.70759029899997,52.549261786],[-128.71495520699997,52.552150783000044],[-128.73204505099991,52.556545315],[-128.73827063699989,52.55980052300005],[-128.74054928299986,52.566839911000116],[-128.7355850899999,52.58136627800015],[-128.73827063699989,52.58405182500006],[-128.74193274599992,52.58616771000005],[-128.73888098899994,52.59080638200008],[-128.73204505099991,52.59552643400018],[-128.72468014199993,52.597723700000174],[-128.58332271999984,52.60049062700013],[-128.56297766799995,52.61139557500011],[-128.56607011599993,52.62958405200003],[-128.5612686839999,52.652248440000065],[-128.55064856699988,52.664699611000074],[-128.53624426999994,52.65228913000006],[-128.52513587099992,52.59796784100002]]],[[[-129.41812533099994,52.645167314],[-129.4354763629999,52.63768597600016],[-129.44957194699992,52.6439971300001],[-129.43653144899992,52.65916597600007],[-129.4274292239999,52.67425943500013],[-129.4327880459999,52.68311955500003],[-129.4133113349999,52.687649011000175],[-129.40010326199987,52.67952748],[-129.40325590499995,52.66334943200008],[-129.40244544299986,52.6466433400001],[-129.41812533099994,52.645167314]]],[[[-131.65689042899993,52.721625067],[-131.67442786399988,52.70693594],[-131.65900631399984,52.71295807500012],[-131.64464270699995,52.71393463700018],[-131.63337154899997,52.70795319200006],[-131.62730872299989,52.69330475500006],[-131.6070043609999,52.69847239800008],[-131.5546768869999,52.7001000020001],[-131.54409745999993,52.70380280200011],[-131.5339249339999,52.71865469000009],[-131.51073157499985,52.73004791900014],[-131.48542232999992,52.73598867400007],[-131.46898352799988,52.73427969000006],[-131.45299231699994,52.717352606000084],[-131.44473222599993,52.702704169000086],[-131.44692949099993,52.685003973000086],[-131.46214758999992,52.659125067000055],[-131.45274817599997,52.64524974199999],[-131.4669083319999,52.6361351580001],[-131.49063066299993,52.63165924700003],[-131.5099991529999,52.63182200699999],[-131.5311173169999,52.63971588700015],[-131.57087154899992,52.661566473],[-131.59251868399994,52.665961005],[-131.59162350199983,52.661281643000066],[-131.5904434889999,52.660549221000124],[-131.58873450399992,52.660834052000084],[-131.58633378799996,52.659125067000055],[-131.59361731699988,52.63882070500007],[-131.55455481699994,52.61469147300015],[-131.5788468089999,52.597723700000174],[-131.6020401679999,52.595160223000065],[-131.61896725199992,52.60565827000015],[-131.65396074099993,52.64545319200012],[-131.64696204299992,52.66461823100009],[-131.6956274079999,52.70018138200008],[-131.70238196499992,52.72125885600009],[-131.6790258449999,52.73484935100005],[-131.63878333199992,52.737127997000115],[-131.5645645819999,52.72744375200015],[-131.59170488199993,52.721625067],[-131.65689042899993,52.721625067]]],[[[-55.809474682999905,52.7310864490001],[-55.82971503599992,52.72651306200005],[-55.861303373999924,52.730367696000044],[-55.866325515999876,52.743387716000065],[-55.884009044999914,52.75105567700008],[-55.89535986399994,52.76331397500003],[-55.887742364999916,52.77479393099999],[-55.852329524999845,52.772469509000025],[-55.83209425899989,52.7709189080001],[-55.811855269999874,52.770132655000126],[-55.80809246999985,52.76170804200002],[-55.810692264999915,52.743338144000134],[-55.809474682999905,52.7310864490001]]],[[[-128.37857011599993,52.37799713700004],[-128.40225175699993,52.37396881700006],[-128.4386287099999,52.374335028000175],[-128.4664200509999,52.38271719000012],[-128.4642227859999,52.40249258000016],[-128.4473770819999,52.41453685100007],[-128.42723548099985,52.42548248900014],[-128.41100012899992,52.43939850500011],[-128.4058731759999,52.46051666900003],[-128.39850826699987,52.46735260600015],[-128.42495683499988,52.48761627800015],[-128.43594316299993,52.52643463700018],[-128.44005286399988,52.61139557500011],[-128.44395911399988,52.61762116100009],[-128.4499405589999,52.62335846600014],[-128.45189368399986,52.63092682500009],[-128.44347083199986,52.642401434000035],[-128.43797766799986,52.65253327],[-128.44163977799988,52.67275625200001],[-128.43691972599993,52.68366120000009],[-128.4261368479999,52.7001000020001],[-128.4244278639999,52.71515534100011],[-128.4314672519999,52.72890859600004],[-128.44688880099991,52.741034247000115],[-128.43521074099993,52.76129791900002],[-128.41462154899997,52.78241608300014],[-128.39126542899987,52.79653554900006],[-128.3717341789999,52.795721747000144],[-128.3601781889999,52.75873444200012],[-128.35191809799989,52.717474677000055],[-128.33315995999993,52.69708893400018],[-128.3185929029999,52.68756745000009],[-128.31834876199986,52.67519765800013],[-128.32164466099988,52.66327545800002],[-128.32396399599986,52.659125067000055],[-128.31456458199995,52.588202216000084],[-128.3068741529999,52.57721588700012],[-128.30313066299988,52.573472397999986],[-128.29991614499994,52.56464264500012],[-128.29759680899986,52.55426666900003],[-128.29531816299988,52.53424713700015],[-128.28750566299988,52.52130768400015],[-128.28302975199983,52.50771719],[-128.2815649079999,52.498236395],[-128.28172766799992,52.488714911],[-128.28408769399988,52.47850169500008],[-128.2892146479999,52.46735260600015],[-128.3077693349999,52.44017161700004],[-128.3103735019999,52.42942942900011],[-128.37857011599993,52.37799713700004]]],[[[-129.0569962229999,52.70693594],[-128.9446508449999,52.62799713700015],[-128.93008378799988,52.61444733300003],[-128.92487545499986,52.60175202000015],[-128.9247940749999,52.58559804900009],[-128.92666581899988,52.569525458],[-128.92634029899995,52.52777741100006],[-128.93248450399994,52.49896881700012],[-128.94957434799997,52.473293361000074],[-128.98127193899984,52.45368073100012],[-128.9849340489999,52.468085028000175],[-128.98648027299993,52.480047919000114],[-128.99250240799984,52.48737213700012],[-129.00918535099987,52.487860419000114],[-129.00055904899997,52.50413646000014],[-129.00365149599986,52.52033112200009],[-129.01382402299993,52.529852606000176],[-129.02627519399994,52.525702216000134],[-129.04336503799996,52.517523505000135],[-129.06017005099994,52.52411530200011],[-129.07290605399993,52.53925202],[-129.0781143869999,52.556708075000174],[-129.10228430899994,52.55365631700009],[-129.11925208199992,52.56586334800015],[-129.12588456899996,52.58710358300014],[-129.11904863199996,52.61139557500011],[-129.1546931629999,52.604885158000016],[-129.1841527989999,52.6266136740001],[-129.22769120999993,52.680243231000176],[-129.21983801999994,52.68378327000006],[-129.21182206899988,52.684759833000136],[-129.20335852799994,52.68353913000011],[-129.19420325399994,52.680243231000176],[-129.20885169199997,52.69448476800009],[-129.25572669199994,52.71401601800006],[-129.2761124339999,52.72744375200015],[-129.26866614499994,52.73427969000006],[-129.28551184799994,52.750677802000084],[-129.29198157499994,52.76264069200003],[-129.28677324099993,52.77423737200003],[-129.26866614499994,52.789496161],[-129.28148352799985,52.81045156500015],[-129.27505449099993,52.82465241100005],[-129.25698808499993,52.828070380000085],[-129.18053137899994,52.789496161],[-129.15176347599987,52.764308986000046],[-129.1357315749999,52.753159898000106],[-129.10179602799985,52.74339427300007],[-129.08433997299989,52.73143138200014],[-129.0569962229999,52.70693594]]],[[[-128.25511633999992,52.617580471000096],[-128.2749731109999,52.60252513200008],[-128.28766842399995,52.607367255000135],[-128.29108639199987,52.62274811400009],[-128.28302975199983,52.63930898600016],[-128.28302975199983,52.64545319200012],[-128.28697669199994,52.64935944200012],[-128.2967016269999,52.665961005],[-128.28848222599987,52.68374258000007],[-128.2918188139999,52.699652411],[-128.3103735019999,52.72744375200015],[-128.32062740799984,52.743353583000086],[-128.3233129549999,52.750718492000075],[-128.32404537699983,52.77509186400012],[-128.32298743399988,52.778753973000086],[-128.3172908189999,52.77912018400009],[-128.27953040299994,52.787258205000015],[-128.2350968089999,52.78766510600012],[-128.2141007149999,52.795721747000144],[-128.20653235599994,52.80683014500009],[-128.19981848899988,52.821437893],[-128.19005286399994,52.83014557500009],[-128.17316646999987,52.8236351580001],[-128.17406165299985,52.81338125200007],[-128.17837480399993,52.79539622600013],[-128.17935136599993,52.78607819200008],[-128.18268795499986,52.77553945500013],[-128.1971329419999,52.759344794000164],[-128.20051021999993,52.75161367400007],[-128.20620683499993,52.727728583],[-128.20726477799985,52.717474677000055],[-128.2105199859999,52.706732489000146],[-128.22451738199987,52.68943919500005],[-128.22777258999992,52.68366120000009],[-128.22960364499988,52.67845286700002],[-128.23859615799992,52.66010163000014],[-128.25121008999992,52.62421295800014],[-128.25511633999992,52.617580471000096]]],[[[-131.7434789699999,52.84015534100016],[-131.72069251199989,52.83917877800009],[-131.6812638009999,52.84210846600003],[-131.66515051999994,52.841253973000114],[-131.6536352199999,52.83771393400003],[-131.65518144399994,52.830511786],[-131.67076575399994,52.82489655200003],[-131.67983964799993,52.82330963700015],[-131.70083574099996,52.81769440300017],[-131.74351966099988,52.81134674700005],[-131.77944902299987,52.81159088700017],[-131.80797278599997,52.814886786000116],[-131.83193925699993,52.8261579450001],[-131.83763587099992,52.840969143000095],[-131.81777910099993,52.846747137000065],[-131.7594294909999,52.857123114000146],[-131.73582923099988,52.85366445500013],[-131.7305395169999,52.84463125200012],[-131.74535071499986,52.841253973000114],[-131.7434789699999,52.84015534100016]]],[[[-129.3239886039999,52.82060492900011],[-129.32892439099993,52.79961096200016],[-129.34770493799988,52.79988525400002],[-129.36619171299995,52.81449987600017],[-129.36766411399992,52.84495090300011],[-129.3546622049999,52.862510284],[-129.33028384699986,52.849180299000025],[-129.3120175179998,52.83933311500008],[-129.3239886039999,52.82060492900011]]],[[[-128.45555579299992,52.789048570000105],[-128.4611710279999,52.77582428600006],[-128.48102779899992,52.78266022300009],[-128.47765051999988,52.70661041900017],[-128.48473059799994,52.69017161699999],[-128.50169837099992,52.66941966399998],[-128.50987708199995,52.653876044000086],[-128.51671301999994,52.65395742400007],[-128.52940833199992,52.680243231000176],[-128.52196204299992,52.687079169000086],[-128.5305883449998,52.6948102890001],[-128.53954016799986,52.70848216400004],[-128.54238847599993,52.721625067],[-128.53282630099991,52.72744375200015],[-128.5312393869999,52.73395416900014],[-128.5359594389999,52.76642487200002],[-128.53282630099991,52.778957424000126],[-128.52318274599995,52.80182526200004],[-128.51036536399994,52.862779039000046],[-128.50210527299993,52.872015692],[-128.4849340489999,52.86546458500011],[-128.47337805899988,52.853583075000145],[-128.4659317699999,52.838690497000115],[-128.45767167899993,52.80947500200007],[-128.45555579299992,52.789048570000105]]],[[[-132.21568762899992,52.97504303600006],[-132.30308997299989,52.96670156500009],[-132.32408606699994,52.968695380000106],[-132.38255774599992,53.00409577000012],[-132.3753149079999,53.00617096600014],[-132.3647354809999,53.00731028899998],[-132.22964433499988,52.995184637000094],[-132.21983801999994,52.99201080900003],[-132.2018936839999,52.984442450000174],[-132.21568762899992,52.97504303600006]]],[[[-55.78560934799986,53.00118981600012],[-55.786903680999956,52.995067526000085],[-55.770373969999895,52.99734994100011],[-55.76787178599989,52.98816198700008],[-55.78189633499997,52.976697449000156],[-55.787036100999984,52.96216449900011],[-55.789629342999945,52.94839368600016],[-55.802337185999896,52.94458264100014],[-55.82132596099984,52.95990392900013],[-55.833970614999885,52.97674480799999],[-55.84917044799994,52.99128917700001],[-55.850409242999945,53.003529649000185],[-55.80846552399989,53.00656375200005],[-55.80081030999986,53.014977285000114],[-55.78682133499987,53.01649974500005],[-55.77540701399994,53.00960201],[-55.78560934799986,53.00118981600012]]],[[[-129.54971269399985,52.98956940300009],[-129.53612219999994,52.976060289000124],[-129.52977454299992,52.96491120000009],[-129.54360917899987,52.96015045799999],[-129.55850175699996,52.96442291900011],[-129.57892818899992,52.98094310099999],[-129.5920304029999,52.98187897300006],[-129.60936438699986,52.96165599200004],[-129.62051347599993,52.95819733300006],[-129.62926184799997,52.99225495000017],[-129.6472875639999,53.01044342700005],[-129.65347245999988,53.02220286700005],[-129.59870357999986,53.025213934000064],[-129.5720922519999,53.01972077000011],[-129.55728105399993,53.001166083000115],[-129.54971269399985,52.98956940300009]]],[[[-129.67052161399994,53.06427643400009],[-129.61872311099992,53.056341864000146],[-129.57469641799992,53.05963776200017],[-129.56407630099994,53.056341864000146],[-129.54385331899994,53.03974030199999],[-129.53286699099988,53.03522370000003],[-129.51573645699995,53.03587474199999],[-129.51968339799993,53.026597398000135],[-129.52619381399984,53.01919179900012],[-129.53441321499992,53.013251044000114],[-129.54360917899987,53.00861237200009],[-129.54857337099992,53.01691315300014],[-129.5546768869999,53.02480703300013],[-129.56191972599996,53.031398830000015],[-129.5703018869999,53.03587474199999],[-129.58234615799984,53.03803131700008],[-129.58788001199986,53.03510163000006],[-129.59251868399988,53.030707098000065],[-129.60167395699995,53.02846914300009],[-129.60875403599994,53.030707098000065],[-129.6299942699999,53.04193756700008],[-129.6360977859999,53.04645416900003],[-129.64582271999984,53.05170319200012],[-129.6753637359999,53.057766018],[-129.68761145699997,53.0638695330001],[-129.67052161399994,53.06427643400009]]],[[[-55.77125576399993,53.08923174600007],[-55.754756761999914,53.075435762000076],[-55.75101167999995,53.05935094100006],[-55.768882300999934,53.0486426290001],[-55.75876700199989,53.03408758500008],[-55.77533097499986,53.02797486200013],[-55.800748965999844,53.03258248400008],[-55.81603375299991,53.02416904200011],[-55.84527387399996,53.02341752000011],[-55.87068771299994,53.02648520000015],[-55.8757473739999,53.038724936],[-55.87443939299993,53.0570832100001],[-55.86296636099985,53.070858223000144],[-55.84767818399984,53.08081241800015],[-55.82731908699995,53.07928408200017],[-55.790346792999905,53.09383424700003],[-55.77125576399993,53.08923174600007]]],[[[-129.58885657499994,53.07176341399998],[-129.61872311099992,53.0638695330001],[-129.6612035799999,53.069891669000114],[-129.6935929029999,53.083197333000115],[-129.71959387899994,53.10390859600012],[-129.74290930899988,53.132066148000106],[-129.72199459499993,53.13694896],[-129.6939591139999,53.13886139500015],[-129.6680802069999,53.1373558610001],[-129.65347245999988,53.132066148000106],[-129.62759355399996,53.11766185100005],[-129.5989477199999,53.093573309000035],[-129.58885657499994,53.07176341399998]]],[[[-79.80663001199991,53.09735748900014],[-79.81810462099989,53.091701565000065],[-79.83364824099988,53.087103583000115],[-79.84935462099995,53.085150458000086],[-79.88776607999995,53.09210846600016],[-79.91209876199991,53.088934637000094],[-79.92983964799993,53.09438711100013],[-79.9363500639999,53.125311591000084],[-79.93089758999989,53.14948151200017],[-79.91657467399989,53.17031484600007],[-79.89492753799989,53.18065013200008],[-79.85529537699995,53.16937897300009],[-79.84972083199993,53.16209544500008],[-79.84666907499988,53.15363190300003],[-79.84137936099998,53.14573802300005],[-79.80532792899993,53.126125393000095],[-79.79918372299994,53.12189362200017],[-79.79686438699989,53.111314195000105],[-79.7936905589999,53.10797760600009],[-79.7950740229999,53.10541413],[-79.80663001199991,53.09735748900014]]],[[[-129.4139298169999,53.13833242400007],[-129.36237545499984,53.080267645],[-129.34585527299987,53.06793854400014],[-129.3297419909999,53.06142812700007],[-129.31529700399994,53.05329010600015],[-129.30406653599994,53.03587474199999],[-129.29234778599994,53.00055573100014],[-129.29112708199995,52.98232656500006],[-129.3003637359999,52.97443268400009],[-129.3244522779999,52.971869208],[-129.3379613919999,52.972601630000106],[-129.3726293609999,52.99266185099999],[-129.37539628799993,52.994940497000144],[-129.39492753799993,53.000392971000096],[-129.40843665299988,53.01337311400009],[-129.42690995999993,53.042669989],[-129.44395911399997,53.05914948100009],[-129.45958411399994,53.07025788000011],[-129.4709366529999,53.08222077000014],[-129.4753311839999,53.10106028900002],[-129.4796036449999,53.11204661700005],[-129.4892471999999,53.10952383000013],[-129.50576738199993,53.09735748900014],[-129.51537024599992,53.100246486000074],[-129.51626542899993,53.10683828300016],[-129.51113847599993,53.11391836100002],[-129.50267493399988,53.11847565300015],[-129.51545162699992,53.13011302300008],[-129.5359594389999,53.134588934000035],[-129.5517471999999,53.14288971600011],[-129.55044511599993,53.16620514500012],[-129.5340876939999,53.184759833000115],[-129.50983639199993,53.19171784100011],[-129.4835098949999,53.190985419000086],[-129.4610896479999,53.186712958000086],[-129.45661373599984,53.16950104400014],[-129.4433487619999,53.157212632],[-129.4139298169999,53.13833242400007]]],[[[-81.42438717399993,53.22882721600003],[-81.17422441299993,53.21234772300012],[-81.12279212099995,53.20221588700018],[-81.00576738199993,53.125311591000084],[-80.98509680899991,53.115545966000134],[-80.97760982999992,53.11029694200006],[-80.96825110599991,53.10106028900002],[-80.9479060539999,53.069525458],[-80.93488521999993,53.060614325000145],[-80.87913977799991,53.03217194200011],[-80.77953040299988,52.948716539000046],[-80.76842200399994,52.93480052300008],[-80.75934811099995,52.91917552299999],[-80.72370357999989,52.862779039000046],[-80.71837317599991,52.847560940000065],[-80.6783748039999,52.780422268],[-80.6695857409999,52.74201080900018],[-80.70470130099989,52.72125885600009],[-80.6995336579999,52.70014069200008],[-80.71768144399988,52.69497304900007],[-80.74380449099993,52.70018138200008],[-80.78453528599991,52.72304922100006],[-81.02684485599994,52.75263092700011],[-81.15176347599993,52.80316803600011],[-81.2862849599999,52.84414297100015],[-81.46882076699987,52.86127350499999],[-81.64940344999988,52.903509833000115],[-81.79234778599988,52.94220612200014],[-81.95173092399989,52.97443268400009],[-82.01598059799994,53.01044342700005],[-82.06265214799993,53.02277252800011],[-82.05361894399991,53.03974030199999],[-82.01317298099988,53.07001373900009],[-82.00767981699994,53.07575104400014],[-81.9850154289999,53.10700104400003],[-81.94408118399988,53.14370351800012],[-81.88280188699986,53.17987702000015],[-81.85777747299993,53.18524811400003],[-81.78038489499994,53.17987702000015],[-81.75706946499986,53.18260325700011],[-81.66624915299987,53.206976630000085],[-81.61485755099994,53.213812567],[-81.49486243399994,53.213120835000055],[-81.42438717399993,53.22882721600003]]],[[[-131.79409745999988,53.25214264500012],[-131.76545162699992,53.19879791900017],[-131.76431230399987,53.181708075000024],[-131.78429114499994,53.173732815000065],[-131.78429114499994,53.16620514500012],[-131.71963456899994,53.152980861000074],[-131.70238196499992,53.14573802300005],[-131.69908606699997,53.141343492000075],[-131.68919837099986,53.124823309000085],[-131.68187415299985,53.11847565300015],[-131.67125403599994,53.11566803600011],[-131.65111243399988,53.11595286700005],[-131.64093990799984,53.11102936400009],[-131.63442949099993,53.101385809000114],[-131.61302649599986,53.056341864000146],[-131.60505123599984,53.04938385600015],[-131.59723873599984,53.04547760600015],[-131.59557044199994,53.04193756700008],[-131.60619055899988,53.03587474199999],[-131.61799068899984,53.03339264500015],[-131.63036048099988,53.03489817900011],[-131.64171301999994,53.03953685100013],[-131.65054277299993,53.04645416900003],[-131.6690567699999,53.05487702000009],[-131.72109941299988,53.05548737200006],[-131.7430313789999,53.06012604400017],[-131.76325436099992,53.06854889500012],[-131.7841690749999,53.07367584800012],[-131.8290095689999,53.076849677],[-131.8466690749999,53.07485586100016],[-131.88532467399995,53.06586334800012],[-131.90412350199992,53.0638695330001],[-132.0040177069999,53.0638695330001],[-131.99132239499994,53.054388739],[-131.95018469999985,53.04677969000015],[-131.94131425699993,53.03929271],[-131.9403376939999,53.022447007],[-131.9370824859999,53.009100653000175],[-131.9310603509999,52.99795156500014],[-131.92210852799985,52.987494208000086],[-131.90615800699993,53.0150414080001],[-131.9003800119999,53.02220286700005],[-131.89000403599988,53.02936432500009],[-131.8650610019999,53.040187893000095],[-131.8563126289999,53.04645416900003],[-131.8366593089999,53.05027903900004],[-131.75015214799996,53.02220286700005],[-131.6804093089999,53.01251862200009],[-131.6503800119999,53.00315989800005],[-131.63719641799992,53.001166083000115],[-131.62621008999994,52.99811432500012],[-131.60846920499984,52.98493073100015],[-131.60277258999986,52.98187897300006],[-131.59512285099993,52.976548570000105],[-131.6028539699998,52.965399481000084],[-131.61465410099993,52.955389716000106],[-131.6197810539999,52.95400625200013],[-131.62730872299989,52.9403343770001],[-131.62344316299988,52.94159577],[-131.6182348299999,52.93821849199999],[-131.61388098899988,52.93252187700009],[-131.61302649599986,52.926662502000156],[-131.61888587099992,52.92023346600014],[-131.64171301999994,52.90802643400015],[-131.67446855399984,52.88397858300011],[-131.69469153599988,52.87685781500009],[-131.80003821499992,52.87482330900015],[-131.82079016799992,52.87897370000009],[-131.84264075399994,52.89594147300006],[-131.85985266799986,52.91474030200011],[-131.87755286399997,52.93032461100002],[-131.89761308499993,52.93984609600001],[-131.92210852799985,52.9403343770001],[-131.9361873039999,52.938299872000144],[-131.94155839799993,52.93683502800009],[-131.9488012359999,52.933498440000065],[-131.9383438789999,52.927557684000064],[-131.9254044259999,52.92206452000012],[-131.91047115799986,52.91864655200011],[-131.89415442599991,52.91917552299999],[-131.89415442599991,52.913031317],[-131.98355058499993,52.88507721600017],[-131.98355058499993,52.87824127800015],[-131.95230058499988,52.880682684000085],[-131.9256485669999,52.889715887000094],[-131.90050208199995,52.89472077000015],[-131.87368730399993,52.88507721600017],[-131.86095130099991,52.87881094000012],[-131.8563126289999,52.875148830000064],[-131.8524063789999,52.867173570000105],[-131.85659745999993,52.86237213700004],[-131.86685136599993,52.85773346600011],[-131.86953691299993,52.851304429],[-131.87417558499993,52.84699127800009],[-131.87857011599993,52.84369538000005],[-131.88052324099988,52.84072500200012],[-131.87767493399994,52.83079661700005],[-131.87096106699988,52.831284898000135],[-131.86290442599994,52.834784247000115],[-131.8563126289999,52.83388906500012],[-131.83649654899997,52.807196356000084],[-131.8290095689999,52.80316803600011],[-131.70238196499992,52.80316803600011],[-131.67251542899993,52.807277736000074],[-131.6608780589999,52.80573151200004],[-131.65396074099993,52.795721747000144],[-131.68919837099986,52.79083893400018],[-131.7314346999999,52.78969961100013],[-131.77106686099992,52.78327057500003],[-131.79796301999988,52.762152411000116],[-131.81102454299986,52.77065664300015],[-131.8243302069999,52.77317942900008],[-131.83828691299996,52.771795966000084],[-131.8531794909999,52.76837799700009],[-131.83967037699983,52.76797109600007],[-131.8273819649999,52.76471588700004],[-131.80479895699992,52.754706122000144],[-131.83356686099987,52.72614166900014],[-131.83950761599988,52.713771877000035],[-131.7819718089999,52.717352606000084],[-131.75597083199992,52.71405670800006],[-131.7296443349999,52.700669664000046],[-131.71092688699989,52.681586005000085],[-131.6923721999999,52.65412018400003],[-131.68732662699986,52.63100820500007],[-131.7092179029999,52.62498607000008],[-131.69220943899984,52.61371491100009],[-131.6591690749999,52.58344147300009],[-131.64028886599988,52.57721588700012],[-131.62047278599997,52.57318756700006],[-131.62523352799985,52.564357815],[-131.64264889199984,52.55487702],[-131.66079667899993,52.549261786],[-131.66079667899993,52.542425848000065],[-131.65196692599994,52.539374091000084],[-131.64297441299996,52.53742096600002],[-131.62360592399995,52.53620026200012],[-131.6155492829999,52.53294505400008],[-131.61066646999984,52.525702216000134],[-131.60456295499986,52.51845937700004],[-131.59251868399994,52.51512278900002],[-131.57982337099986,52.52045319200006],[-131.56859290299988,52.53058502800011],[-131.55565344999988,52.53656647300012],[-131.5379125639999,52.529445705000064],[-131.53986568899992,52.51312897300015],[-131.51988684799994,52.50779857],[-131.46898352799988,52.50771719],[-131.48306230399996,52.48517487200003],[-131.46410071499986,52.473334052000055],[-131.43399003799993,52.46515534100014],[-131.41437740799986,52.45368073100012],[-131.44326738199987,52.40639883000016],[-131.44855709499984,52.39166901200015],[-131.42345130099991,52.39398834800012],[-131.3977758449999,52.389797268],[-131.38719641799995,52.37811920799999],[-131.40758216099994,52.35809967700013],[-131.39167232999992,52.35960521],[-131.37857011599993,52.36615631700006],[-131.36611894399994,52.37010325700005],[-131.3522843089999,52.36432526200009],[-131.35244706899988,52.38515859600006],[-131.35521399599995,52.399888414000074],[-131.35484778599994,52.41242096600014],[-131.3455297519999,52.42641836100002],[-131.33039303299986,52.43398672100007],[-131.28917395699995,52.437730210000026],[-131.24844316299996,52.44692617400007],[-131.24152584499987,52.43524811400009],[-131.24791419199988,52.41982656500015],[-131.2830704419999,52.40696849200013],[-131.2962540359999,52.39398834800012],[-131.30410722599987,52.37645091399999],[-131.3045141269999,52.35809967700013],[-131.29360917899993,52.366888739],[-131.28107662699992,52.37059153900004],[-131.24990800699993,52.37116120000012],[-131.25450598899994,52.35529205900018],[-131.26276607999984,52.35097890800007],[-131.27326412699992,52.351711330000015],[-131.28465735599988,52.35065338700015],[-131.3070369129999,52.34308502800011],[-131.31550045499984,52.33852773600016],[-131.32559160099993,52.33022695500007],[-131.33263098899988,52.344427802],[-131.34064693899992,52.35443756700009],[-131.34972083199995,52.355902411000145],[-131.3597305979999,52.344427802],[-131.34439042899996,52.33543528899999],[-131.33218339799987,52.29718659100003],[-131.31818600199992,52.281805731000084],[-131.30190995999988,52.293646552000055],[-131.24290930899994,52.26215241100014],[-131.21572831899994,52.26129791900003],[-131.24811764199984,52.27838776200018],[-131.26024329299992,52.289740302000055],[-131.2567439439999,52.30345286699999],[-131.24933834499984,52.30573151200015],[-131.24010169199988,52.30272044500005],[-131.22569739499994,52.296047268000095],[-131.19810950399992,52.31305573100015],[-131.18415279899995,52.31842682500012],[-131.16250566299993,52.319769598],[-131.14256751199983,52.31622955900012],[-131.1338598299999,52.30658600500006],[-131.12808183499993,52.29621002800015],[-131.0984594389999,52.287990627000156],[-131.08543860599988,52.27558014500011],[-131.09947669199994,52.25608958500014],[-131.1251521479999,52.24974192900011],[-131.1549373039999,52.24774811400005],[-131.18101966099997,52.240790106000176],[-131.18101966099997,52.23456452000012],[-131.12608801999997,52.23452383000012],[-131.10041256399992,52.23045482000008],[-131.07860266799986,52.22036367400001],[-131.04377193899992,52.23297760600009],[-131.02391516799992,52.23529694200015],[-131.00967363199993,52.22711823100006],[-131.0081274079999,52.21222565300008],[-131.01561438699994,52.19525788000011],[-131.0270889959999,52.18036530200005],[-131.03766842399995,52.17194245000012],[-131.05223548099988,52.16913483300005],[-131.0984594389999,52.169012762000094],[-131.11270097599987,52.17194245000012],[-131.12303626199986,52.18463776200018],[-131.1238907539999,52.198431708000086],[-131.12779700399997,52.209133205000015],[-131.1475317049999,52.21283600500006],[-131.14049231699994,52.176906643000066],[-131.15208899599986,52.14240143400015],[-131.17495683499996,52.12449778900001],[-131.20152747299994,52.13837311400009],[-131.20791581899994,52.153469143000095],[-131.21149654899992,52.18683502800014],[-131.21572831899994,52.199774481000176],[-131.2266739569999,52.21112702000015],[-131.2429906889999,52.22284577000012],[-131.27721106699988,52.240790106000176],[-131.24278723899997,52.17047760600014],[-131.23717200399997,52.13605377800012],[-131.26292883999992,52.124701239000146],[-131.2796931629999,52.13239166900017],[-131.29283606699988,52.14720286700005],[-131.3014216789999,52.16339752800009],[-131.3045141269999,52.17560455900014],[-131.31041419199994,52.19013092700003],[-131.33751380099991,52.216050523000106],[-131.3455297519999,52.23456452000012],[-131.3522843089999,52.23456452000012],[-131.35659745999993,52.200384833000115],[-131.38003495999993,52.202948309000035],[-131.40941321499992,52.22386302300002],[-131.43175208199995,52.24453359600001],[-131.44131425699993,52.257961330000015],[-131.4492895169999,52.27265045800003],[-131.45864824099993,52.28436920799999],[-131.4890844389999,52.29409414300015],[-131.49901282499988,52.30560944200009],[-131.50698808499993,52.31924062700012],[-131.5174454419999,52.33022695500007],[-131.52692623599992,52.32396067900014],[-131.53750566299996,52.322699286000116],[-131.54832923099985,52.32514069200006],[-131.55842037699983,52.33022695500007],[-131.54670162699983,52.34345123900012],[-131.5379125639999,52.35809967700013],[-131.55703691299993,52.35179271],[-131.56753495999993,52.35097890800007],[-131.5754288399999,52.3543968770001],[-131.5740860669999,52.357367255],[-131.5836075509999,52.384995835000105],[-131.58633378799996,52.38857656500009],[-131.5749405589999,52.403306382000075],[-131.5490616529999,52.403998114000025],[-131.52098548099988,52.39769114800008],[-131.50316321499992,52.39166901200015],[-131.51158606699997,52.40851471600017],[-131.52920488199987,52.42137278899998],[-131.55020097599993,52.429632880000085],[-131.5683487619999,52.432562567],[-131.5809626939999,52.42975495000014],[-131.59239661399997,52.424750067],[-131.60374915299994,52.42291901200004],[-131.61636308499993,52.42942942900011],[-131.64268958199995,52.454657294000086],[-131.6471248039999,52.45709870000003],[-131.65778561099984,52.47785065300012],[-131.68285071499992,52.48969147300009],[-131.73591061099987,52.50153229400006],[-131.76097571499994,52.51166413],[-131.8826391269999,52.57615794500008],[-131.8972875639999,52.58746979400014],[-131.90021725199983,52.59707265800013],[-131.90021725199983,52.60956452000011],[-131.90225175699996,52.62034739800005],[-131.91124426999997,52.62498607000008],[-131.92511959499987,52.62604401200012],[-131.9297582669999,52.62962474200001],[-131.92833411399994,52.648871161000145],[-131.9392797519999,52.651190497000115],[-132.01024329299986,52.680243231000176],[-132.08600826699993,52.73427969000006],[-132.06012936099992,52.759344794000164],[-132.0452367829999,52.764960028000175],[-132.02391516799992,52.762152411000116],[-132.01113847599996,52.75629303600009],[-131.96930904899995,52.72744375200015],[-131.9630427729999,52.73427969000006],[-132.00157630099997,52.76679108300006],[-132.01707923099988,52.77521393400009],[-132.0040177069999,52.78266022300009],[-131.9630427729999,52.754706122000144],[-131.94517981699994,52.73956940300015],[-131.93439693899992,52.73216380400007],[-131.92210852799985,52.72744375200015],[-131.92609615799984,52.73501211100002],[-131.93028723899994,52.74091217700014],[-131.93517005099994,52.7453473980001],[-131.94131425699993,52.748480536],[-131.94131425699993,52.754706122000144],[-131.9387914699999,52.77313873900009],[-131.9625544909999,52.786932684000085],[-132.01707923099988,52.80316803600011],[-132.03628495999993,52.816961981000034],[-132.0650121739999,52.85000234600009],[-132.08600826699993,52.85773346600011],[-132.06639563699986,52.82172272300012],[-132.0605362619999,52.803452867000075],[-132.06891842399997,52.795721747000144],[-132.0900772779999,52.78790924700014],[-132.11025956899994,52.757147528000175],[-132.13377844999988,52.754706122000144],[-132.14207923099983,52.759182033000016],[-132.17536373599987,52.78266022300009],[-132.1768692699999,52.78506094000012],[-132.18053137899994,52.793402411],[-132.18219967399995,52.795721747000144],[-132.18956458199995,52.798529364],[-132.20669511599988,52.80292389500009],[-132.21288001199986,52.80621979400003],[-132.22630774599986,52.8180199240001],[-132.24010169199994,52.83405182500009],[-132.2429093089999,52.850816148000106],[-132.22313391799992,52.86456940300003],[-132.2888891269999,52.883002020000056],[-132.30846106699994,52.89594147300006],[-132.3267716139999,52.91327545800005],[-132.33433997299994,52.92259349200002],[-132.34227454299992,52.942450262000094],[-132.3385310539999,52.94310130400005],[-132.32925370999993,52.95026276200009],[-132.3173721999999,52.95441315300003],[-132.28913326699993,52.94904205900018],[-132.28087317599994,52.95026276200009],[-132.27159583199997,52.956284898000014],[-132.2598363919999,52.957749742000075],[-132.24754798099994,52.95648834800015],[-132.23680579299992,52.95400625200013],[-132.1992895169999,52.932440497000115],[-132.18040930899988,52.927313544000114],[-132.16787675699987,52.9403343770001],[-132.17955481699988,52.943304755],[-132.1894425119999,52.948716539000046],[-132.1971329419999,52.956732489],[-132.20201575399997,52.96759674700017],[-132.1406143869999,52.933498440000065],[-132.14175370999993,52.942938544000086],[-132.14549719999985,52.95042552300004],[-132.15196692599994,52.95620351800004],[-132.16104081899996,52.96015045799999],[-132.16104081899996,52.96759674700017],[-132.1475317049999,52.971258856000034],[-132.13027910099987,52.9799665390001],[-132.1166886059999,52.990912177],[-132.11388098899988,53.001166083000115],[-132.12913977799985,53.00641510600009],[-132.18024654899992,52.9985212260001],[-132.1988826159999,53.00486888200005],[-132.23102779899995,53.026353257],[-132.2689509759999,53.030707098000065],[-132.3466690749999,53.02846914300009],[-132.3423559239999,53.03864166900006],[-132.33922278599994,53.042669989],[-132.35643469999985,53.038967190000065],[-132.39313717399995,53.03497955900018],[-132.40811113199987,53.02846914300009],[-132.4205216139999,53.04279205900018],[-132.4361873039999,53.04116445500016],[-132.45327714799993,53.033270575000174],[-132.4695531889999,53.02846914300009],[-132.4888402989999,53.031683661000145],[-132.50438391799992,53.040432033000044],[-132.50942949099993,53.05365631700006],[-132.49746660099993,53.07001373900009],[-132.5169164699999,53.07485586100016],[-132.53799394399994,53.08685944200009],[-132.55162512899997,53.099107164000046],[-132.54841061099992,53.10480377800003],[-132.53258216099988,53.10980866100006],[-132.5393774079999,53.12152741100006],[-132.5657852859999,53.14573802300005],[-132.54210364499988,53.152044989],[-132.5144750639999,53.146470444999984],[-132.48595130099997,53.13703034100017],[-132.45958411399985,53.132066148000106],[-132.3731176419999,53.132717190000065],[-132.3466690749999,53.13833242400007],[-132.33901933499988,53.142401434000035],[-132.3220922519999,53.154689846000096],[-132.31187903599994,53.159409897999986],[-132.29507402299993,53.16120026200018],[-132.24673417899993,53.15192291900003],[-132.0655004549999,53.161281643000144],[-132.05117753799988,53.16998932500006],[-132.0403539699999,53.18260325700011],[-131.9767146479999,53.214667059000085],[-131.9717504549999,53.21527741100006],[-131.96056067599994,53.21385325699999],[-131.9556371739999,53.214667059000085],[-131.95116126199994,53.21784088700015],[-131.94131425699993,53.228338934000035],[-131.90396074099993,53.24070872600008],[-131.83922278599994,53.241929429],[-131.8289688789999,53.24542877800017],[-131.81993567599991,53.25226471600011],[-131.81029212099992,53.257391669000114],[-131.79796301999988,53.25560130400014],[-131.79409745999988,53.25214264500012]]],[[[-128.6219376289999,53.15570709800014],[-128.58702551999997,53.113592841000084],[-128.5842179029999,53.107611395000085],[-128.58226477799988,53.10106028900002],[-128.53872636599993,53.01972077000011],[-128.52749589799996,52.98102448100017],[-128.52196204299992,52.933498440000065],[-128.52403723899994,52.891791083000115],[-128.53233801999994,52.84662506700009],[-128.5645238919999,52.743231512000094],[-128.5712784499999,52.73737213700015],[-128.58462480399993,52.741034247000115],[-128.5774633449999,52.70099518400018],[-128.58405514199987,52.686224677],[-128.60513261599988,52.665961005],[-128.59723873599992,52.66657135600006],[-128.5899958979999,52.665961005],[-128.5834854809999,52.66364166900003],[-128.57721920499986,52.659125067000055],[-128.58189856699997,52.64858633],[-128.58910071499992,52.623032945000105],[-128.59459387899994,52.61444733300003],[-128.60562089799987,52.61123281500015],[-128.70360266799992,52.61123281500015],[-128.7251684239999,52.607367255000135],[-128.74852454299992,52.597723700000174],[-128.7553604809999,52.60390859600015],[-128.74616451699984,52.621649481000034],[-128.73973548099994,52.639105536],[-128.73595130099991,52.65619538000014],[-128.73485266799986,52.672796942],[-128.73717200399994,52.69163646000013],[-128.74644934799989,52.72638580900009],[-128.74852454299992,52.74481842700014],[-128.74307206899996,52.763739325000145],[-128.7191462879999,52.795355536000145],[-128.71373450399994,52.81305573100006],[-128.71080481699994,52.83665599199999],[-128.7023005849999,52.847398179],[-128.6893611319999,52.85394928600009],[-128.6728409499999,52.86456940300003],[-128.65103105399996,52.908840236000074],[-128.64842688699986,52.91608307500009],[-128.64517167899993,52.933661200000024],[-128.64468339799993,52.95368073100009],[-128.64610755099991,52.96015045799999],[-128.6531469389999,52.96605052300013],[-128.66445878799996,52.97089264500012],[-128.67495683499993,52.97134023600001],[-128.67959550699996,52.96393463700004],[-128.66958574099993,52.92747630400008],[-128.66934160099993,52.907904364],[-128.6833389959999,52.89935944200006],[-128.70352128799993,52.90387604400003],[-128.71898352799994,52.912543036000116],[-128.7329809239999,52.918036200000145],[-128.74852454299992,52.913031317],[-128.73692786399988,52.89948151200004],[-128.72760982999984,52.87612539300015],[-128.7278539699999,52.85394928600009],[-128.7451065749999,52.84414297100015],[-128.7572322259999,52.8348656270001],[-128.7636612619999,52.81305573100006],[-128.76903235599985,52.76837799700009],[-128.7787166009999,52.730129299000126],[-128.77725175699996,52.71515534100011],[-128.7593481109999,52.68691640800013],[-128.7567032539999,52.67682526200014],[-128.76040605399993,52.669094143000066],[-128.7727758449999,52.665961005],[-128.78189042899987,52.66982656500009],[-128.78897050699993,52.67902252800014],[-128.7956436839999,52.690497137000094],[-128.8037817049999,52.700669664000046],[-128.82579505099994,52.67161692900008],[-128.85643469999994,52.65900299700009],[-128.89146887899994,52.66022370000012],[-128.92731686099992,52.672796942],[-129.01724199099993,52.71576569200006],[-129.0445043609999,52.73452383],[-129.0569962229999,52.741034247000115],[-129.0515844389999,52.74510325700008],[-129.04735266799995,52.74896881700009],[-129.04283606699988,52.752346096000096],[-129.03648841099997,52.754706122000144],[-129.03648841099997,52.762152411000116],[-129.06297766799992,52.768296617000104],[-129.0772598949999,52.778306382],[-129.10167395699997,52.80621979400003],[-129.11074785099987,52.82013580900009],[-129.12120520699995,52.844549872000144],[-129.12539628799988,52.867865302000055],[-129.11534583199992,52.87824127800015],[-129.09276282499994,52.875677802000055],[-129.02969316299993,52.85773346600011],[-129.01683508999992,52.859320380000135],[-129.0275772779999,52.86884186400012],[-129.07066809799994,52.89252350500006],[-129.03648841099997,52.90558502800003],[-129.00548255099994,52.926662502000156],[-128.98867753799993,52.93378327],[-128.9651586579999,52.96588776200017],[-128.94713294199994,52.97443268400009],[-128.94774329299992,52.99896881700012],[-128.91397050699993,53.016750393],[-128.8379613919999,53.03587474199999],[-128.85167395699995,53.051581122000144],[-128.87734941299988,53.0720075540001],[-128.9054255849999,53.08974844],[-128.9338272779999,53.10016510600009],[-128.96080481699997,53.11847565300015],[-129.01545162699983,53.14573802300005],[-129.0142716139999,53.13349030199999],[-129.01227779899995,53.124497789000074],[-129.00837154899995,53.11741771000011],[-129.0017797519999,53.11102936400009],[-128.99893144399994,53.10602448100006],[-128.99620520699997,53.09967682500012],[-128.99201412699986,53.096380927000084],[-128.97891191299988,53.10439687700004],[-128.9710994129999,53.10553620000014],[-128.9633682929999,53.10443756700003],[-128.9576716789999,53.10106028900002],[-128.9467667309999,53.092027085],[-128.9212540359999,53.08079661699998],[-128.90990149599986,53.073431708],[-128.8916723299999,53.05337148600013],[-128.8816625639999,53.04682038000014],[-128.86461341099994,53.042669989],[-128.86461341099994,53.03587474199999],[-128.90489661399994,53.0340843770001],[-128.92292232999984,53.02997467700013],[-128.94029700399994,53.02220286700005],[-128.9495336579999,53.016750393],[-128.96662350199983,53.003485419000164],[-128.9744766919999,52.994940497000144],[-128.97744706899994,52.989691473000065],[-128.9839574859999,52.97459544500008],[-128.98814856699994,52.96759674700017],[-129.01280676999994,52.946722723],[-129.0573624339999,52.91795482000007],[-129.10000566299996,52.902980861000124],[-129.11904863199996,52.922919012000115],[-129.12559973899994,52.931870835000055],[-129.16051184799994,52.93032461100002],[-129.17711341099994,52.93683502800009],[-129.18374589799987,52.94953034100014],[-129.18911699099993,52.96922435100011],[-129.19420325399994,53.00486888200005],[-129.18980872299997,53.023342190000086],[-129.1706436839999,53.047186591000134],[-129.1662491529999,53.06012604400017],[-129.1589249339999,53.07416413000011],[-129.14281165299985,53.08209870000017],[-129.12657630099991,53.08148834800012],[-129.11904863199996,53.07001373900009],[-129.09056555899994,53.088568427],[-129.07896887899994,53.11107005400008],[-129.07713782499982,53.136216539000074],[-129.0781143869999,53.16278717700011],[-129.08283443899984,53.18805573100014],[-129.08234615799984,53.20140208500008],[-129.0651749339999,53.214504299000126],[-129.0639542309999,53.231146552],[-129.0670059889999,53.249497789000046],[-129.07066809799994,53.26178620000009],[-129.07860266799992,53.273423570000105],[-129.08653723899988,53.28221263200008],[-129.08836829299986,53.29100169500013],[-129.0781143869999,53.30280182500012],[-129.0642797519998,53.307562567],[-129.04210364499994,53.31061432500008],[-129.01976477799994,53.310532945000105],[-128.97606360599994,53.29486725500014],[-128.90501868399988,53.293361721000096],[-128.86876380099997,53.27252838700012],[-128.7951554029999,53.21865469000009],[-128.70457923099988,53.17462799700017],[-128.67959550699996,53.16620514500012],[-128.6346736319999,53.16315338700012],[-128.6219376289999,53.15570709800014]]],[[[-129.1395564439999,53.10480377800003],[-129.1628311839999,53.09943268400014],[-129.2403051419999,53.10040924700014],[-129.26244055899988,53.10480377800003],[-129.26943925699993,53.09275950700011],[-129.27672278599997,53.091986395],[-129.28453528599994,53.09833405200011],[-129.29352779899995,53.10789622600011],[-129.30174719999988,53.113226630000085],[-129.32355709499993,53.12421295800014],[-129.33136959499993,53.132066148000106],[-129.33844967399997,53.153713283000016],[-129.3387751939999,53.178168036000145],[-129.3335668609999,53.201808986000074],[-129.32388261599993,53.220892645000056],[-129.26207434799994,53.26536692900008],[-129.24941972599987,53.282945054000024],[-129.24909420499986,53.295111395000085],[-129.2541397779999,53.30434804900015],[-129.27236894399996,53.32050202],[-129.27574622299989,53.33100006700009],[-129.2613826159999,53.33466217700014],[-129.24144446499992,53.33364492400007],[-129.21304277299993,53.326971747000115],[-129.19782467399995,53.32168203300012],[-129.18394934799994,53.313666083],[-129.1736954419999,53.30280182500012],[-129.17007402299993,53.292059637000094],[-129.17491614499994,53.27435944200009],[-129.1736954419999,53.26178620000009],[-129.16836503799993,53.25104401200018],[-129.15672766799992,53.23920319200012],[-129.1525772779999,53.228338934000035],[-129.15245520699995,53.219061591000084],[-129.15786699099996,53.20010000200006],[-129.16002356699997,53.186712958000086],[-129.1546931629999,53.163641669000114],[-129.13418535099996,53.12018463700015],[-129.1395564439999,53.10480377800003]]],[[[-79.94790605399993,53.36664459800012],[-79.9488826159999,53.36212799700017],[-79.94884192599991,53.35748932500014],[-79.95002193899984,53.35179271000008],[-79.9566951159999,53.323065497000115],[-79.91734778599991,53.29743073100015],[-79.92332923099991,53.27545807500003],[-79.94713294199991,53.265936591000056],[-79.98420162699992,53.26512278900013],[-80.01821855399996,53.27374909100002],[-80.04605058499992,53.309271552000105],[-80.07079016799989,53.31850820500007],[-80.08604895699995,53.33038971600003],[-80.0707087879999,53.35492584800015],[-80.04279537699998,53.36619700700013],[-79.9718318349999,53.365423895000035],[-79.9437556629999,53.371649481000176],[-79.94790605399993,53.36664459800012]]],[[[-55.88986976699991,53.49849027400005],[-55.88013802099991,53.48433253100004],[-55.84578801999996,53.48034399800015],[-55.82451649699996,53.477851812000026],[-55.81461772799992,53.48756619000007],[-55.80316599299991,53.484613208000084],[-55.78518252199989,53.47725641400013],[-55.76716325499987,53.47573931600003],[-55.75171627399987,53.46398948100013],[-55.74936007299987,53.45374564800012],[-55.74289149399988,53.445437078000126],[-55.74539476899989,53.44057164800007],[-55.76167888799998,53.44988805200008],[-55.78209133599995,53.455803110000105],[-55.80257079099994,53.45537822200011],[-55.8067609119999,53.443207162000085],[-55.81339063099989,53.43299225200009],[-55.79792251099993,53.42368555500012],[-55.77996310599988,53.41924214699999],[-55.76858072699991,53.411405818000055],[-55.76947751799989,53.40263494],[-55.78904049499991,53.41001028600006],[-55.811070197999925,53.41641464800007],[-55.81684152699998,53.41058292900011],[-55.79402621699995,53.40076549400013],[-55.785908373999916,53.393915376],[-55.79898897599989,53.393957087],[-55.829954364999935,53.40672149800018],[-55.864244768999924,53.41412498600009],[-55.90673875999997,53.41861568000003],[-55.92630207499994,53.428887080000074],[-55.9655397809999,53.43236669300005],[-55.98349960399991,53.44165202100011],[-55.985065707999894,53.45871038800014],[-55.98992995099985,53.47041339200014],[-55.975949924999895,53.48452479100014],[-55.927587466999874,53.492236359000124],[-55.913662998999904,53.49220954700003],[-55.902165262999915,53.497058608000074],[-55.88986976699991,53.49849027400005]]],[[[-130.58726424999986,53.47794319500012],[-130.58696575799988,53.46619159600005],[-130.60245000199984,53.471275650000095],[-130.62465251599986,53.481520156000144],[-130.63606760599995,53.498406487000025],[-130.6165227159999,53.50640811600012],[-130.59211479299984,53.49618318600001],[-130.58726424999986,53.47794319500012]]],[[[-128.9200333319999,53.349432684000114],[-128.92072506399987,53.33808014500015],[-128.92796790299988,53.32819245000003],[-128.9400121739999,53.32391998900012],[-128.95742753799996,53.32542552300008],[-128.99551347599993,53.33759186400006],[-129.01280676999994,53.340277411000116],[-129.0604141919999,53.33759186400006],[-129.0752660799999,53.333441473000036],[-129.1037491529999,53.31883372599999],[-129.1184789699999,53.32050202],[-129.1481827459999,53.36371491100003],[-129.11221269399994,53.409328518000144],[-129.06578528599988,53.452460028000175],[-129.06383216099994,53.488348700000145],[-129.0484513009999,53.508612372000165],[-129.02171790299988,53.53213125200013],[-128.99722245999993,53.543931382000025],[-128.98814856699994,53.529364325000174],[-128.9865616529999,53.50092194200006],[-128.97679602799988,53.48016998900006],[-128.9136449859999,53.40643952000012],[-128.90640214799987,53.39118073100015],[-128.90640214799987,53.38092682500003],[-128.91340084499984,53.37140534100002],[-128.92731686099992,53.35805898600002],[-128.9200333319999,53.349432684000114]]],[[[-79.71288001199991,53.50958893400015],[-79.72472083199989,53.508856512000115],[-79.73277747299991,53.512762762000115],[-79.75096594999991,53.518377997000115],[-79.75816809799994,53.52252838700015],[-79.76764889199985,53.53143952],[-79.7691951159999,53.53546784100014],[-79.76720130099994,53.53900788000014],[-79.76561438699991,53.54669830900015],[-79.70360266799987,53.516302802],[-79.7081599599999,53.51154205900009],[-79.71288001199991,53.50958893400015]]],[[[-130.23656165299994,53.57078685099999],[-130.1878962879999,53.543605861000074],[-130.11514238199993,53.519435940000065],[-130.07502193899992,53.49286530200011],[-129.9739884109999,53.457993882],[-129.92857825399992,53.43256256700009],[-129.90050208199992,53.40900299700003],[-129.89053300699993,53.4039574240001],[-129.88263912699983,53.39817942900014],[-129.8759659499999,53.37832265800013],[-129.86782792899987,53.367621161],[-129.76610266799992,53.26459381700014],[-129.74294999899988,53.23529694200012],[-129.74290930899988,53.235174872000144],[-129.73672441299993,53.21564362200017],[-129.73794511599993,53.19135163],[-129.74836178299992,53.16990794500007],[-129.7696020169999,53.159409897999986],[-129.78526770699997,53.16242096600008],[-129.7964574859999,53.171454169000114],[-129.80606035099996,53.18121979400014],[-129.81737219999985,53.186712958000086],[-129.83067786399997,53.18374258000016],[-129.84146074099996,53.17475006700014],[-129.8504532539999,53.16486237200003],[-129.85830644399996,53.159409897999986],[-129.8874405589999,53.15778229400017],[-129.91295325399994,53.159409897999986],[-129.92808997299994,53.16376373900009],[-129.9394425119999,53.168890692],[-129.9939672519999,53.21417877800012],[-130.0077205069999,53.231268622000144],[-130.00975501199989,53.24819570500012],[-130.0538223949999,53.260077216000084],[-130.0755916009999,53.268988348000114],[-130.08486894399994,53.279201565000065],[-130.08454342399992,53.29824453300015],[-130.08617102799994,53.31232330900009],[-130.09406490799992,53.32257721600003],[-130.11217200399994,53.33006419500002],[-130.14439856699994,53.331732489000025],[-130.15562903599997,53.33722565300003],[-130.15998287699986,53.35492584800015],[-130.16466223899997,53.36277903900013],[-130.17568925699993,53.365545966000084],[-130.19815019399994,53.364894924000126],[-130.1995336579999,53.367621161],[-130.20588131399984,53.37409088700009],[-130.21434485599985,53.381008205000015],[-130.2220352859999,53.3854027360001],[-130.3145238919999,53.39276764500009],[-130.32551021999984,53.39996979400003],[-130.36538652299993,53.44741445500013],[-130.39338131399984,53.47003815300009],[-130.40762285099993,53.48484935100008],[-130.4138891269999,53.49860260600009],[-130.4042862619999,53.51019928600003],[-130.38206946499986,53.51528554900012],[-130.33812415299994,53.516302802],[-130.3648982409999,53.52732982000004],[-130.3849991529999,53.526556708000115],[-130.40575110599988,53.520697333000086],[-130.43431555899988,53.516302802],[-130.44981848899988,53.516791083000086],[-130.4609268869999,53.519598700000024],[-130.46983801999994,53.5248884140001],[-130.50259355399987,53.54979075700005],[-130.50959225199986,53.551174221000124],[-130.51891028599988,53.55097077000006],[-130.52708899599992,53.552679755000085],[-130.53050696499992,53.55975983300014],[-130.5297745429999,53.58291250200007],[-130.52562415299994,53.60895416900014],[-130.51528886599993,53.6303571640001],[-130.49608313699989,53.63922760600015],[-130.44448808499993,53.63540273600013],[-130.41454016799995,53.62889232000005],[-130.3927302729999,53.61810944200011],[-130.3659561839999,53.612860419000135],[-130.31558183499993,53.58978913],[-130.2613012359999,53.58063385600012],[-130.23656165299994,53.57078685099999]]],[[[-57.03080053499991,53.712985466000035],[-57.05024997499987,53.70149372500002],[-57.066154101999956,53.684773833000015],[-57.08204699699991,53.680595132000136],[-57.085571039999905,53.667011424000016],[-57.08379753799997,53.65656781600002],[-57.09261012299993,53.64925945800009],[-57.1137631629999,53.64299394600003],[-57.154387107999916,53.64712687300012],[-57.172138765999904,53.6596247480001],[-57.166848098999935,53.67846760500005],[-57.15272929499989,53.69312088700009],[-57.12978111599988,53.70463177200013],[-57.10326684899988,53.70463706300002],[-57.08029000099992,53.703591381000095],[-57.0643843659999,53.70881644600014],[-57.04493827299984,53.71508387700011],[-57.03080053499991,53.712985466000035]]],[[[-128.87979081899994,53.59210846600014],[-128.8842667309999,53.57623932500003],[-128.9533585279999,53.591498114],[-128.98053951699987,53.584662177000084],[-129.06944739499994,53.52045319200012],[-129.0812068349999,53.516302802],[-129.09386145699997,53.508937893],[-129.09349524599986,53.49262116100009],[-129.08433997299989,53.467922268000095],[-129.09142005099994,53.45026276200018],[-129.10195878799993,53.443019924000154],[-129.11485755099994,53.438869533000016],[-129.12901770699995,53.430365302],[-129.14928137899994,53.40875885600017],[-129.1662491529999,53.3854027360001],[-129.17210852799988,53.408392645000056],[-129.17430579299986,53.45026276200018],[-129.1717423169999,53.49323151200003],[-129.15880286399994,53.532660223],[-129.1662491529999,53.59076569200006],[-129.16527258999986,53.613836981000034],[-129.1599828769999,53.627020575000174],[-129.1361384759999,53.649400132],[-129.1219376289999,53.65558502800015],[-129.0795792309999,53.66738515800013],[-129.07066809799994,53.67645905200014],[-129.06065833199995,53.6843122420001],[-129.03770911399985,53.69183991100009],[-128.99551347599993,53.700628973000114],[-128.90274003799993,53.700628973000114],[-128.88365637899992,53.70482005400008],[-128.86286373599984,53.71234772300012],[-128.84219316299993,53.715969143000095],[-128.82363847599993,53.70807526200012],[-128.8574926419999,53.68284739800005],[-128.86827551999986,53.66754791900008],[-128.86461341099994,53.6528181010001],[-128.8816625639999,53.62128327],[-128.87979081899994,53.59210846600014]]],[[[-130.10578365799986,53.603949286000116],[-130.09166419199997,53.5702985700001],[-130.1170141269999,53.570379950000174],[-130.17365475199986,53.59076569200006],[-130.25161699099993,53.597072658000016],[-130.2938126289999,53.619126695000105],[-130.3318578769999,53.62400950700008],[-130.34862219999988,53.635484117000104],[-130.3646134109999,53.65827057500006],[-130.3728735019999,53.666489976000136],[-130.38084876199994,53.67182038000002],[-130.3979386059999,53.68024323100014],[-130.40636145699995,53.68699778900002],[-130.36705481699994,53.71308014500006],[-130.30382239499997,53.7457542990001],[-130.29092363199996,53.755275783000094],[-130.29832923099994,53.772853908000044],[-130.30174719999985,53.789455471000096],[-130.2963761059999,53.80097077000012],[-130.27725175699993,53.803656317],[-130.2608943349999,53.79783763200013],[-130.23338782499988,53.78440989800004],[-130.2220352859999,53.77635325700011],[-130.2307836579999,53.76487864800008],[-130.23509680899988,53.753078518],[-130.2346899079999,53.74070872600007],[-130.2288712229999,53.727972723],[-130.2167862619999,53.71808502800009],[-130.20152747299994,53.71580638200011],[-130.1844376289999,53.71539948100012],[-130.1382543609999,53.70282623900012],[-130.12474524599992,53.695624091000084],[-130.11900794199994,53.68357982],[-130.1218155589999,53.67243073100015],[-130.12657630099986,53.66351959800012],[-130.12751217399997,53.65350983300014],[-130.11900794199994,53.63922760600015],[-130.1264542309999,53.63178131700006],[-130.11432857999992,53.61815013200011],[-130.10578365799986,53.603949286000116]]],[[[-56.96559876899988,53.81218038300007],[-56.922484390999955,53.797558578000135],[-56.888526889999866,53.80659727600006],[-56.83610480899998,53.806480208000046],[-56.817714520999886,53.79004085300003],[-56.8517090219999,53.777377850000065],[-56.8826081629999,53.76287882800007],[-56.919571389999895,53.7629544250001],[-56.947334961999864,53.75207760800005],[-56.98428477999994,53.75938370000007],[-57.00885508499994,53.78854820000007],[-56.99954826699994,53.81039107700009],[-56.96559876899988,53.81218038300007]]],[[[-130.4498636919999,53.7961689160001],[-130.4199641149999,53.78327440400007],[-130.43788457399987,53.756888651000125],[-130.49727188999992,53.76516651900009],[-130.51274603099986,53.79347448400007],[-130.5532566259999,53.78438237000007],[-130.60911738199985,53.797010705],[-130.61721551599993,53.823191004000094],[-130.56937895799993,53.83674208300009],[-130.50982115099987,53.82630738900012],[-130.4498636919999,53.7961689160001]]],[[[-129.7599991529999,53.66962311400012],[-129.67479407499994,53.59271881700003],[-129.5345759759999,53.508124091000084],[-129.52383378799988,53.499457098],[-129.51573645699995,53.488348700000145],[-129.53392493399994,53.4833845070001],[-129.55089270699992,53.48224518400017],[-129.56749426999997,53.48411692900005],[-129.61632239499997,53.49909088700018],[-129.62979081899994,53.4968122420001],[-129.63923092399997,53.481512762000065],[-129.6189672519999,53.48480866100009],[-129.61192786399988,53.488348700000145],[-129.58804277299993,53.47467682500003],[-129.55988521999984,53.47125885600012],[-129.49893144399994,53.474758205000015],[-129.47813880099994,53.468329169000086],[-129.4512426419999,53.45319245000009],[-129.42699133999992,53.435003973],[-129.4139298169999,53.41950104400008],[-129.40279714399992,53.398366298000134],[-129.36877579899988,53.383870464000054],[-129.3365359639999,53.36061454600018],[-129.34575322799986,53.32806747000007],[-129.32576079499992,53.295910764000055],[-129.32871805699992,53.26344919100002],[-129.36139982599985,53.24554082700003],[-129.37936850499997,53.28023753100016],[-129.3965740019999,53.29244916000009],[-129.3909450089999,53.30874846100009],[-129.40647813799984,53.332219777000105],[-129.4295891449999,53.33563461400003],[-129.4413102919999,53.31551200000014],[-129.45913652299996,53.29482656500015],[-129.47524980399993,53.29743073100015],[-129.50267493399988,53.317084052],[-129.51292883999992,53.31069570500007],[-129.5094294909999,53.297186591000106],[-129.5025528639999,53.28164297100001],[-129.50267493399988,53.26862213700012],[-129.48228919199988,53.24494049700009],[-129.48302161399994,53.2241071640001],[-129.4986466139999,53.21556224200001],[-129.52310136599993,53.228338934000035],[-129.54507402299996,53.217718817],[-129.56753495999996,53.21531810100005],[-129.58503170499992,53.22370026200012],[-129.5920304029999,53.245062567000055],[-129.6017960279999,53.25608958500011],[-129.64663652299996,53.295477606000084],[-129.65973873599992,53.30963776200012],[-129.65318762899992,53.31061432500008],[-129.64443925699996,53.31509023600016],[-129.63923092399997,53.317084052],[-129.67393958199995,53.33006419500002],[-129.67393958199995,53.33759186400006],[-129.65973873599992,53.344427802000084],[-129.67259680899986,53.349269924000154],[-129.6849666009999,53.345160223],[-129.69855709499984,53.33893463700003],[-129.71495520699992,53.33759186400006],[-129.7256567049999,53.341742255],[-129.7627660799999,53.364894924000126],[-129.76406816299988,53.369696356000034],[-129.7626846999999,53.37653229400014],[-129.76211503799993,53.38271719],[-129.76610266799992,53.3854027360001],[-129.7968643869999,53.378485419000086],[-129.80687415299988,53.38532135600012],[-129.8222550119999,53.40534088700018],[-129.8309626939999,53.412665106000176],[-129.82213294199994,53.44106679900001],[-129.81851152299987,53.45941803600006],[-129.82103430899988,53.4713402360001],[-129.83389238199993,53.47260163000011],[-129.85326087099995,53.46771881700015],[-129.87547766799992,53.46637604400014],[-129.8967992829999,53.47809479400006],[-129.8953344389999,53.48725006700012],[-129.8763321609999,53.51992422100015],[-129.87193762899992,53.53620026200009],[-129.87702389199984,53.55410390800013],[-129.88874264199993,53.561712958],[-129.90591386599993,53.56321849200005],[-129.9272354809999,53.56289297100001],[-129.9186905589999,53.571519273000106],[-129.9081925119999,53.576849677],[-129.8863012359999,53.584621486000074],[-129.91340084499993,53.59536367400001],[-129.92682857999992,53.596625067],[-129.94090735599985,53.59076569200006],[-129.94090735599985,53.59821198100003],[-129.93309485599985,53.60032786700005],[-129.91295325399994,53.61127350500011],[-129.93858801999988,53.62042877800009],[-129.95421301999997,53.60980866100006],[-129.96739661399994,53.593207098],[-129.98550370999993,53.584621486000074],[-130.03034420499986,53.581610419000086],[-130.0496313139999,53.58779531500014],[-130.05752519399996,53.60785553600003],[-130.03331458199997,53.63129303600009],[-129.97809811099987,53.64301178600009],[-129.91808020699995,53.643133856000055],[-129.87938391799992,53.63178131700006],[-129.87193762899992,53.63922760600015],[-129.90249589799993,53.65875885600003],[-129.94619706899994,53.66429271000005],[-129.99233964799996,53.660711981000176],[-130.03026282499988,53.6528181010001],[-130.0583389959999,53.64020416900003],[-130.07575436099984,53.63764069200012],[-130.09166419199997,53.64606354400017],[-130.0975642569999,53.661281643000144],[-130.0923966139999,53.693060614],[-130.0985001289999,53.70807526200012],[-130.16738847599993,53.727972723],[-130.20238196499994,53.73029205900017],[-130.21153723899994,53.73663971600011],[-130.21458899599992,53.755275783000094],[-130.21104895699992,53.77106354400006],[-130.2052302729999,53.78595612200009],[-130.20409094999985,53.80117422100006],[-130.21458899599992,53.81732819200012],[-130.23119055899988,53.8256696640001],[-130.29092363199996,53.837836005],[-130.27672278599994,53.87103913],[-130.26732337099992,53.886135158000016],[-130.25279700399997,53.89248281500012],[-130.2331436839999,53.89793528899999],[-130.19619706899988,53.91657135600015],[-130.18106035099987,53.912909247000115],[-130.15746008999994,53.89813873900012],[-130.10635331899996,53.88035716400004],[-130.08145097599993,53.86139557500003],[-130.07046464799987,53.856431382],[-130.03726152299996,53.850165106000034],[-130.03026282499988,53.848089911000116],[-130.0267227859999,53.838527736000046],[-130.01805579299992,53.832464911000116],[-129.9961645169999,53.82416413000006],[-129.93268795499986,53.78192780200011],[-129.90029863199996,53.77342357],[-129.89085852799994,53.766424872000115],[-129.87564042899996,53.75214264500012],[-129.86510169199988,53.74616120000009],[-129.8413793609999,53.73989492400015],[-129.8309626939999,53.73541901200017],[-129.77749589799987,53.68903229400002],[-129.7696020169999,53.67645905200014],[-129.7599991529999,53.66962311400012]]],[[[-79.87140865799992,53.908433335000055],[-79.87486731699994,53.90615469000006],[-79.90689042899992,53.917710679000024],[-79.92023678299992,53.92625560100011],[-79.93008378799996,53.94086334800015],[-79.91331946499994,53.93838125200001],[-79.86188717399995,53.920355536],[-79.86188717399995,53.912909247000115],[-79.86632239499991,53.91266510600015],[-79.86900794199988,53.910956122000144],[-79.87140865799992,53.908433335000055]]],[[[-130.26471920499992,54.015082098000065],[-130.2459203769999,53.99640534100008],[-130.2315160799999,53.97378164300012],[-130.2288712229999,53.95384349200004],[-130.24181067599994,53.93740469000015],[-130.28408769399994,53.914496161000145],[-130.30089270699995,53.90273672100007],[-130.3278702459999,53.87567780200011],[-130.33409583199995,53.86517975500006],[-130.33698482999986,53.855047919000114],[-130.34121660099993,53.84577057500014],[-130.35179602799988,53.837836005],[-130.3620499339999,53.83624909100014],[-130.3965958319999,53.83624909100014],[-130.40636145699995,53.837836005],[-130.41250566299993,53.84491608300014],[-130.4233292309999,53.86717357000001],[-130.42438717399995,53.8719750020001],[-130.44273841099994,53.86347077000015],[-130.4619034499999,53.84878164300015],[-130.47862708199992,53.84393952000006],[-130.4895727199999,53.865139065000065],[-130.49144446499994,53.87750885600009],[-130.4893692699999,53.87995026200004],[-130.48228919199997,53.88003164300012],[-130.46910559799994,53.88556549700006],[-130.4601130849999,53.89227936400008],[-130.45323645699986,53.89907461100001],[-130.41071529899995,53.95319245000009],[-130.3960668609999,53.962144273000106],[-130.36538652299993,53.967596747000144],[-130.33128821499992,53.967596747000144],[-130.33128821499992,53.975002346000124],[-130.34422766799992,53.977728583000115],[-130.35024980399993,53.98248932500012],[-130.34854081899994,53.988592841000084],[-130.33812415299994,53.99542877800012],[-130.34943600199992,53.999416408000094],[-130.36115475199986,53.99754466400013],[-130.38654537699983,53.98924388200005],[-130.43268795499984,53.98777903899999],[-130.44737708199995,53.98183828300016],[-130.45759029899995,53.963080145],[-130.46328691299996,53.935370184000114],[-130.47154700399994,53.91022370000003],[-130.48924719999982,53.89931875200015],[-130.52261308499993,53.90216705900009],[-130.54430091099994,53.91071198100012],[-130.58169511599996,53.94399648600002],[-130.60383053299984,53.95937734600015],[-130.61856035099993,53.9657250020001],[-130.6295059889999,53.964422919000086],[-130.63866126199989,53.956244208000086],[-130.6489965489999,53.949448960000055],[-130.6572973299999,53.95099518400009],[-130.66026770699997,53.967596747000144],[-130.6757706369999,53.961004950000174],[-130.68423417899993,53.947821356000034],[-130.69107011599993,53.93276601800004],[-130.7012426419999,53.920355536],[-130.69017493399986,53.90582916900014],[-130.67467200399994,53.89862702000012],[-130.6572159499999,53.89370351800015],[-130.6403702459999,53.88556549700006],[-130.6277970039999,53.87221914300012],[-130.62222245999988,53.856431382],[-130.6282445949999,53.843329169000114],[-130.65029863199987,53.837836005],[-130.65636145699997,53.839585679],[-130.68130449099993,53.85150788000011],[-130.69684811099992,53.85126373900009],[-130.70807857999992,53.8529320330001],[-130.7154841789999,53.857652085],[-130.71519934799997,53.871161200000174],[-130.7099503249999,53.88955312700001],[-130.70840410099993,53.90582916900014],[-130.71886145699992,53.912909247000115],[-130.72362219999988,53.92047760600015],[-130.71776282499985,53.93716054900001],[-130.70547441299993,53.95376211100015],[-130.6912735669999,53.961371161],[-130.6865128249999,53.96507396000014],[-130.67931067599997,53.98297760600009],[-130.67389889199993,53.98924388200005],[-130.66616777299993,53.99103424700003],[-130.65566972599993,53.99164459800009],[-130.64745032499985,53.99103424700003],[-130.64659583199992,53.98924388200005],[-130.63243567599994,53.99998607000007],[-130.61880449099988,54.01361725500002],[-130.60383053299984,54.025295315],[-130.58511308499988,54.03021881700006],[-130.56663977799982,54.03294505400014],[-130.51622473899994,54.05695221600017],[-130.51854407499988,54.06867096600017],[-130.45213782499985,54.07558828300016],[-130.43431555899988,54.08112213700018],[-130.42162024599992,54.100043036],[-130.39248613199993,54.09540436400009],[-130.33812415299994,54.07123444200006],[-130.29039466099988,54.02928294499999],[-130.28038489499988,54.02277252800009],[-130.26471920499992,54.015082098000065]]],[[[-132.9978735019999,54.163641669000086],[-132.98037675699993,54.16303131700012],[-132.96882076699993,54.16860586100013],[-132.95278886599993,54.16771067900005],[-132.93683834499993,54.162909247000144],[-132.92544511599996,54.15619538000011],[-132.9162491529999,54.148871161],[-132.90880286399994,54.14533112200003],[-132.83438066299993,54.128159898000014],[-132.77806555899988,54.125189520000085],[-132.75348873599987,54.12848541900003],[-132.70303300699993,54.142645575000145],[-132.67564856699994,54.14569733300014],[-132.64903723899994,54.141302802000055],[-132.60195878799993,54.12262604400017],[-132.5756729809999,54.11835358300006],[-132.56688391799995,54.10814036700013],[-132.56338456899994,54.08502838700018],[-132.56362870999988,54.05988190300008],[-132.5657852859999,54.043890692],[-132.58014889199987,54.022650458000115],[-132.60020911399994,54.01496002800009],[-132.62279212099992,54.01048411700013],[-132.64460201699987,53.998928127],[-132.67520097599984,53.96865469],[-132.68130449099996,53.950832424000126],[-132.6613663399999,53.94086334800015],[-132.65469316299993,53.94399648600002],[-132.6309301419999,53.964422919000086],[-132.62100175699993,53.97052643400018],[-132.61021887899992,53.97361888200005],[-132.58625240799986,53.975002346000124],[-132.56810462099986,53.98183828300016],[-132.55508378799988,53.998724677000055],[-132.54723059799989,54.020005601000136],[-132.5446671209999,54.04018789300015],[-132.53237870999993,54.04633209800012],[-132.45653235599985,54.06378815300008],[-132.43932044199997,54.0754255230001],[-132.42467200399994,54.08844635600009],[-132.40684973899988,54.09935130400008],[-132.29674231699994,54.11229075700008],[-132.2840063139999,54.10846588700015],[-132.27554277299987,54.09516022300012],[-132.23839270699995,54.07160065300009],[-132.2299698559999,54.05353424700017],[-132.23180091099988,54.04075755400011],[-132.23379472599993,54.03497955900015],[-132.23037675699993,54.030747789000046],[-132.21629798099988,54.02277252800009],[-132.2029516269999,54.018622137000065],[-132.17393958199997,54.01496002800009],[-132.16104081899996,54.008490302],[-132.14854895699995,53.99249909100008],[-132.1445206369999,53.974310614],[-132.14732825399994,53.95453522300009],[-132.15489661399988,53.934027411000116],[-132.14395097599993,53.92316315300003],[-132.12682044199985,53.902004299000126],[-132.1142471999999,53.88129303600011],[-132.11701412699983,53.8719750020001],[-132.14395097599993,53.841253973],[-132.15461178299986,53.83641185100011],[-132.18394934799994,53.83421458500011],[-132.1958715489999,53.831000067000055],[-132.2113337879999,53.81513092700014],[-132.2239884109999,53.79466380400008],[-132.24063066299993,53.77704498900006],[-132.26781165299985,53.76951732000002],[-132.37401282499988,53.762111721],[-132.3953344389998,53.75332265800012],[-132.43325761599996,53.72675202],[-132.45278886599993,53.721136786],[-132.47606360599985,53.71796295800011],[-132.52505449099993,53.70384349200001],[-132.55211341099997,53.700628973000114],[-132.6080216139999,53.703436591000084],[-132.63719641799986,53.70099518400015],[-132.65794837099986,53.69074127800003],[-132.66592363199993,53.676947333000115],[-132.65754146999987,53.67470937700012],[-132.6309301419999,53.68016185100008],[-132.61514238199987,53.67963288],[-132.6050512359999,53.67715078300007],[-132.59837805899986,53.670965887000094],[-132.5930883449999,53.65965403900013],[-132.59410559799994,53.65375397300009],[-132.60676021999987,53.63178131700006],[-132.58926347599984,53.637111721000124],[-132.5671280589999,53.659328518],[-132.55211341099997,53.666489976000136],[-132.5398656889999,53.664618231000176],[-132.5134985019999,53.649644273000135],[-132.49746660099993,53.64606354400017],[-132.46178137899994,53.651109117000104],[-132.39110266799992,53.67112864800007],[-132.35289466099997,53.67275625200009],[-132.38149980399993,53.647935289000124],[-132.4211319649999,53.63458893400012],[-132.45929928299984,53.616400458000115],[-132.48379472599987,53.57713450700011],[-132.46788489499994,53.57782623900005],[-132.45693925699987,53.58494700700011],[-132.44717363199993,53.595038153000175],[-132.43480383999992,53.604437567],[-132.4080297519999,53.61302317900011],[-132.38019771999984,53.61810944200011],[-132.31847083199995,53.61774323100011],[-132.28978430899988,53.62274811400006],[-132.27090410099993,53.63922760600015],[-132.28823808499993,53.638739325000145],[-132.31029212099992,53.64166901200017],[-132.32823645699997,53.64850495000008],[-132.33299719999988,53.65965403900013],[-132.31883704299995,53.67275625200009],[-132.29613196499992,53.673732815000065],[-132.2538142569999,53.666489976000136],[-132.21808834499987,53.6559105490001],[-132.20230058499993,53.655462958],[-132.1958715489999,53.66962311400012],[-132.18871008999986,53.681138414000046],[-132.1591690749999,53.69989655200011],[-132.15489661399988,53.714300848000065],[-132.16246497299994,53.72614166900003],[-132.1880590489999,53.741400458],[-132.1958715489999,53.755275783000094],[-132.19383704299986,53.77399323100014],[-132.18399003799993,53.78758372600011],[-132.1730850899999,53.79804108299999],[-132.16787675699987,53.807074286],[-132.16104081899996,53.81366608300008],[-132.11701412699983,53.841253973],[-132.0869848299999,53.877630927000084],[-132.07852128799996,53.89248281500012],[-132.08633378799993,53.90192291900014],[-132.10912024599986,53.92304108300005],[-132.11388098899988,53.930324611000074],[-132.11530514199984,53.94285716399999],[-132.12694251199986,53.975002346000124],[-132.1281632149999,53.999172268000144],[-132.13036048099985,54.010931708000115],[-132.1371964179999,54.01601797100015],[-132.14826412699992,54.01894765800007],[-132.1608780589999,54.02627187700007],[-132.18219967399995,54.043890692],[-132.1670629549999,54.04584381700015],[-132.1304418609998,54.03367747600008],[-132.04649817599994,54.022691148000106],[-131.99347896999984,54.02578359600009],[-131.91637122299989,54.04010651200018],[-131.86436926999994,54.06704336100013],[-131.79430091099994,54.08038971600014],[-131.7547501289999,54.10252513200014],[-131.72337805899983,54.112127997000115],[-131.7092179029999,54.11835358300006],[-131.6946508449999,54.129095770000085],[-131.68154863199993,54.14150625200001],[-131.66079667899993,54.166815497000144],[-131.66226152299987,54.15912506700012],[-131.6639298169999,54.156073309000035],[-131.6682836579999,54.153143622000115],[-131.66242428299986,54.14468008000007],[-131.66026770699995,54.136948960000055],[-131.6621801419999,54.130316473],[-131.6682836579999,54.125189520000085],[-131.67072506399984,54.07908763200005],[-131.6787003249999,54.03416575700005],[-131.69326738199993,53.99188873900012],[-131.71544348899985,53.95384349200004],[-131.7486466139999,53.91648997599999],[-131.8190811839999,53.854925848000114],[-131.8531794909999,53.81732819200012],[-131.86436926999994,53.79999420800014],[-131.8705134759999,53.782904364],[-131.8731583319999,53.76333242400012],[-131.87368730399993,53.738511460000076],[-131.8765356109999,53.718207098000065],[-131.8839412099999,53.697943427000055],[-131.89488684799994,53.678208726000136],[-131.9219864569999,53.64020416900003],[-131.93333899599986,53.6186384140001],[-131.9361873039999,53.59609609600012],[-131.92520097599993,53.5737165390001],[-131.92218990799984,53.56378815300012],[-131.92544511599988,53.55198802300013],[-131.93199622299997,53.54083893400012],[-131.9382218089999,53.532782294000086],[-131.94261633999992,53.52163320500016],[-131.93968665299988,53.50971100500011],[-131.92833411399994,53.488348700000145],[-131.91576087099992,53.453029690000115],[-131.9137263659999,53.43805573100009],[-131.9190160799999,53.38886139500009],[-131.91673743399988,53.375433661],[-131.90782630099994,53.35805898600002],[-131.92479407499994,53.34198639500012],[-131.9630427729999,53.282945054000024],[-131.98444576699984,53.260931708],[-132.00788326699987,53.25356679900001],[-132.09561113199993,53.254543361000074],[-132.16576087099986,53.24591705900015],[-132.1963598299999,53.23456452],[-132.21129309799994,53.23407623900003],[-132.22435462099992,53.23065827],[-132.2299698559999,53.21775950699999],[-132.23574785099987,53.207586981000034],[-132.24937903599994,53.20722077000012],[-132.27774003799996,53.214667059000085],[-132.26105709499993,53.200506903000175],[-132.2451065749999,53.196600653000175],[-132.20954342399995,53.20099518400015],[-132.12694251199986,53.20099518400015],[-132.13638261599996,53.188666083000115],[-132.15469316299993,53.17601146000005],[-132.17638098899994,53.16551341399998],[-132.1958715489999,53.159409897999986],[-132.22752844999988,53.15680573100009],[-132.25544186099992,53.16132233300014],[-132.27993730399993,53.17267487200002],[-132.30166581899994,53.190130927000084],[-132.31505286399994,53.198065497000144],[-132.31969153599994,53.190497137000094],[-132.31965084499987,53.177801825000024],[-132.31871497299994,53.16998932500006],[-132.32445227799985,53.165269273000135],[-132.3377172519999,53.16201406500009],[-132.37450110599985,53.15729401200018],[-132.40054277299993,53.14789459800015],[-132.41462154899997,53.14573802300005],[-132.4433487619999,53.1459821640001],[-132.45677649599992,53.147772528000175],[-132.4695531889999,53.15192291900003],[-132.46104895699995,53.163641669000114],[-132.4578344389999,53.17047760600003],[-132.45653235599985,53.17682526200015],[-132.45958411399985,53.1844750020001],[-132.46646074099988,53.18748607],[-132.4732559889999,53.18675364800008],[-132.4763891269999,53.18329498900006],[-132.48452714799993,53.16791413000011],[-132.5034073559999,53.16742584800012],[-132.53844153599994,53.17987702000015],[-132.53844153599994,53.186712958000086],[-132.51793372299997,53.19354889500009],[-132.5325414699999,53.198675848],[-132.56427975199986,53.20209381700003],[-132.57941646999984,53.20722077000012],[-132.5618790359999,53.22003815300015],[-132.5557755199999,53.22679271],[-132.55211341099997,53.235174872000144],[-132.57111568899987,53.2353376320001],[-132.6271866529999,53.25560130400014],[-132.66795813699986,53.260891018],[-132.7097875639999,53.26178620000009],[-132.69847571499992,53.278876044000135],[-132.67365475199983,53.28880442900005],[-132.62035071499986,53.30280182500012],[-132.61925208199995,53.30487702000012],[-132.61803137899992,53.30906810100005],[-132.61607825399994,53.313666083],[-132.6129044259999,53.317084052],[-132.5787654289999,53.32391998900012],[-132.5662328769999,53.319566148000135],[-132.55296790299985,53.31268952000012],[-132.54263261599993,53.31207916900014],[-132.53844153599994,53.326971747000115],[-132.56895911399997,53.33685944200012],[-132.7575577459999,53.317084052],[-132.74864661399988,53.331244208000115],[-132.7136124339999,53.36977773600002],[-132.70295162699986,53.378485419000086],[-132.69127356699994,53.378119208000086],[-132.6612849599999,53.36782461100015],[-132.6483048169999,53.364894924000126],[-132.5316055979999,53.364894924000126],[-132.51886959499987,53.36172109600007],[-132.50177975199992,53.34756094000015],[-132.48302161399994,53.341213283000016],[-132.46475175699987,53.32709381700009],[-132.43822180899988,53.32151927300008],[-132.42760169199988,53.31549713700015],[-132.4201554029999,53.30678945500007],[-132.41490637899992,53.296576239000146],[-132.40013587099992,53.33030833500014],[-132.42516028599994,53.350775458],[-132.49746660099993,53.378485419000086],[-132.5038956369999,53.38662344],[-132.51317298099988,53.40643952000012],[-132.51793372299997,53.412665106000176],[-132.52896074099993,53.41730377800012],[-132.55308997299994,53.41836172100007],[-132.64122473899994,53.43231842700014],[-132.6613663399999,53.43992747600008],[-132.6552628249999,53.46303945500004],[-132.66104081899994,53.4830589860001],[-132.67056230399993,53.490952867000075],[-132.68468176999988,53.45766836100015],[-132.7065323559999,53.45091380400013],[-132.7334692049999,53.45355866100011],[-132.7575577459999,53.461086330000064],[-132.7575577459999,53.467922268000095],[-132.7420548169999,53.47626373900006],[-132.72752844999985,53.49005768400015],[-132.7226456369999,53.50495026200012],[-132.7364395819999,53.516302802],[-132.74889075399994,53.516180731000034],[-132.75397701699984,53.50853099200002],[-132.75641842399997,53.499579169000164],[-132.76097571499992,53.49518463700018],[-132.7704971999999,53.49355703300016],[-132.8422745429999,53.468939520000056],[-132.86188717399997,53.46686432500003],[-132.87364661399994,53.474758205000015],[-132.87022864499994,53.487982489000146],[-132.8375544909999,53.51064687700001],[-132.8264867829999,53.52252838700015],[-132.92886308499988,53.52252838700015],[-132.9184464179999,53.530503648000106],[-132.90534420499992,53.55036041900011],[-132.89411373599992,53.55662669500008],[-132.9080297519999,53.567572333000115],[-132.9295548169999,53.56549713700012],[-132.95421301999988,53.558905341000056],[-132.97728430899986,53.55662669500008],[-132.97240149599992,53.57648346600017],[-132.99063066299988,53.58982982],[-132.96983801999988,53.59821198100003],[-132.94847571499992,53.59829336100002],[-132.9002172519999,53.58893463700018],[-132.8841853509999,53.5944684920001],[-132.89110266799992,53.61969635600015],[-132.98387610599994,53.667181708000086],[-133.0108129549999,53.68699778900002],[-132.9982804029999,53.68097565300009],[-132.98680579299986,53.67991771000014],[-132.97716223899988,53.6843122420001],[-132.96983801999988,53.694484768000066],[-132.95579993399994,53.68781159100011],[-132.94017493399986,53.68610260600009],[-132.93077551999994,53.690130927000084],[-132.9356583319999,53.700628973000114],[-132.95152747299994,53.70673248900011],[-132.97130286399994,53.71019114800013],[-132.9837133449999,53.717596747000115],[-132.97728430899986,53.73541901200017],[-132.9819229809999,53.74494049700009],[-132.9780981109999,53.76333242400012],[-132.98350989499994,53.76951732000002],[-132.99518795499984,53.770738023000106],[-133.00328528599994,53.76581452000014],[-133.01012122299997,53.75922272300009],[-133.0182185539999,53.755275783000094],[-133.02867591099988,53.75551992400012],[-133.0407608709999,53.760809637000115],[-133.0613500639999,53.764715887000094],[-133.09850012899992,53.77920156500015],[-133.11042232999984,53.786607164000046],[-133.1114395819999,53.79791901200012],[-133.0972794259999,53.80727773600016],[-133.06541907499988,53.81732819200012],[-133.07876542899987,53.83331940300003],[-133.11986243399988,53.86041901200015],[-133.1374405589999,53.87567780200011],[-133.14439856699985,53.896918036000116],[-133.1358129549999,53.91498444200012],[-133.1238500639998,53.92975495000012],[-133.1206762359999,53.94086334800015],[-133.1008194649999,53.95453522300009],[-133.10016842399995,53.970851955000015],[-133.1047257149999,53.98749420800006],[-133.1007380849999,54.00234609600001],[-133.09532630099994,54.003810940000065],[-133.0790909499999,54.00145091400013],[-133.07286536399994,54.00234609600001],[-133.06899980399993,54.00592682500009],[-133.06810462099995,54.00946686400006],[-133.06773841099994,54.012884833000086],[-133.06541907499988,54.01601797100015],[-133.0510961579999,54.026556708000115],[-133.04344641799983,54.03440989799999],[-133.0380753249999,54.043890692],[-133.04674231699988,54.049709377000156],[-133.05117753799996,54.05780670800008],[-133.05418860599985,54.067368882000075],[-133.0666397779999,54.094916083],[-133.0726212229999,54.100043036],[-133.08653723899988,54.104681708000115],[-133.04474850199986,54.148016669000114],[-133.04051673099994,54.16453685099999],[-133.07286536399994,54.166815497000144],[-133.05337480399996,54.18309153899999],[-133.02529863199996,54.17609284100011],[-132.9978735019999,54.163641669000086]]],[[[-130.21353105399996,54.120591539000046],[-130.22915605399993,54.11835358300006],[-130.24339758999986,54.12262604400017],[-130.2535294259999,54.13255442899999],[-130.26162675699993,54.1441917990001],[-130.26984615799984,54.153143622000115],[-130.2591853509999,54.18211497600011],[-130.25279700399997,54.190659898000135],[-130.2420141269999,54.195786851000044],[-130.22777258999983,54.197170315000115],[-130.21646074099988,54.19440338700015],[-130.21458899599992,54.18732330900009],[-130.18590247299994,54.17987702000012],[-130.16250566299988,54.160956122000115],[-130.15587317599991,54.14158763199999],[-130.21353105399996,54.120591539000046]]],[[[-130.65404212099992,54.11835358300006],[-130.67284094999988,54.112779039000074],[-130.69762122299994,54.11493561400006],[-130.71922766799992,54.12327708500011],[-130.72850501199989,54.136053778000175],[-130.73940995999996,54.13641998900008],[-130.78994706899996,54.16176992400004],[-130.80483964799993,54.17365143400015],[-130.79434160099996,54.186753648000135],[-130.78673255099991,54.202541408000066],[-130.7760310539999,54.214097398000106],[-130.75645911399994,54.214544989],[-130.68106035099984,54.17206452000012],[-130.6494034499999,54.14459870000008],[-130.65404212099992,54.11835358300006]]],[[[-132.9849340489999,54.19330475500011],[-133.00047766799992,54.19009023600016],[-133.01268469999988,54.19448476800015],[-133.0152481759999,54.20604075700008],[-133.0208227199999,54.21491120000003],[-133.03400631399984,54.21674225499999],[-133.04442298099988,54.219305731000084],[-133.0521134109999,54.22256094000015],[-133.07721920499984,54.22386302300005],[-133.0817764959999,54.23175690300003],[-133.0757543609999,54.245672919000114],[-133.0613907539999,54.25625234600015],[-133.03962154899995,54.25877513200008],[-133.0056860019999,54.2551130230001],[-132.9942927729999,54.252630927],[-132.97850501199989,54.24599844000012],[-132.9685766269999,54.24005768400009],[-132.96605383999983,54.23419830900015],[-132.97728430899986,54.21808502800008],[-132.97940019399988,54.204657294000086],[-132.9780981109999,54.1969261740001],[-132.9849340489999,54.19330475500011]]],[[[-57.29897432199988,54.24881127800016],[-57.31441876399995,54.23973075600004],[-57.34101155099995,54.247447445000105],[-57.36763925099993,54.25903493800016],[-57.36770294299995,54.269380864000155],[-57.35003830399995,54.27717749300008],[-57.327952236999884,54.287564377000095],[-57.292497744999935,54.28374193800003],[-57.30574709199991,54.27596203100016],[-57.32121225599991,54.26947051000003],[-57.312311099999896,54.26043054400019],[-57.29897432199988,54.24881127800016]]],[[[-130.3693741529999,54.248236395],[-130.36538652299993,54.24249909100005],[-130.39435787699992,54.25405508000016],[-130.44408118399988,54.29120514500006],[-130.46910559799994,54.303941148000106],[-130.46202551999994,54.31769440300003],[-130.45091712099992,54.32758209800014],[-130.43687903599988,54.332668361000074],[-130.42064368399994,54.33185455900015],[-130.38817298099985,54.31102122599999],[-130.3797094389999,54.303941148000106],[-130.3616430329999,54.27802155200011],[-130.35484778599997,54.27175527600014],[-130.3530167309999,54.268988348],[-130.3532608709999,54.26764557500012],[-130.35610917899987,54.265448309000035],[-130.3621313139999,54.25844961100013],[-130.36538652299993,54.25556061400012],[-130.3707169259999,54.25226471600017],[-130.3693741529999,54.248236395]]],[[[-130.26504472599993,54.278794664000046],[-130.29845130099991,54.25364817900005],[-130.33812415299994,54.25556061400012],[-130.34679114499994,54.261786200000174],[-130.35000566299988,54.265041408000016],[-130.3521215489999,54.26772695500009],[-130.35204016799992,54.268418687000135],[-130.35195878799993,54.2690290390001],[-130.35236568899984,54.269598700000145],[-130.35399329299986,54.27199941600009],[-130.3542374339999,54.296779690000065],[-130.33429928299992,54.31976959800015],[-130.30504309799989,54.33368561400012],[-130.27725175699993,54.33185455900015],[-130.25304114499994,54.311346747000115],[-130.26504472599993,54.278794664000046]]],[[[-81.09471594999994,54.33209870000009],[-81.09854081899994,54.33026764500012],[-81.1052139959999,54.332912502],[-81.10846920499995,54.342962958],[-81.10899817599991,54.353989976000136],[-81.10802161399994,54.36603424700014],[-81.10179602799991,54.37409088700018],[-81.09361731699988,54.37018463700018],[-81.08869381399984,54.35907623900006],[-81.08604895699995,54.348211981000176],[-81.09007727799991,54.337551174000126],[-81.09471594999994,54.33209870000009]]],[[[-130.6986384759999,54.40912506700009],[-130.6976619129999,54.40424225500003],[-130.69497636599993,54.40058014500015],[-130.68757076699987,54.39960358300008],[-130.69017493399986,54.392523505000106],[-130.69176184799989,54.38983795800014],[-130.69497636599993,54.38589101800015],[-130.69107011599993,54.36709219],[-130.71336829299992,54.358954169000086],[-130.74278723899988,54.35834381700012],[-130.76016191299996,54.362005927000084],[-130.76964270699995,54.38117096600014],[-130.75601152299993,54.39386627800012],[-130.73330644399988,54.40363190300015],[-130.7154841789999,54.413804429],[-130.70864824099988,54.40639883],[-130.7012426419999,54.413804429],[-130.6986384759999,54.40912506700009]]],[[[-57.21108261199993,54.46998807500002],[-57.19764395099992,54.44932475700007],[-57.224333248999926,54.45188758500002],[-57.24442155699998,54.46737257800005],[-57.27107277999993,54.460879928000125],[-57.29333721499995,54.468604921000164],[-57.2867276369999,54.4828319460001],[-57.244475951999874,54.48417327600008],[-57.228932433999944,54.49194139700005],[-57.220005840999875,54.48031798000012],[-57.21108261199993,54.46998807500002]]],[[[-130.7662242059999,54.46886459300004],[-130.72845533899996,54.43783470400008],[-130.72956747399988,54.42080082000014],[-130.7847434379999,54.412253153000094],[-130.82344913599994,54.42085756800004],[-130.8285659599999,54.43872770700007],[-130.8700270619999,54.4347509280001],[-130.86138562399992,54.45544308600013],[-130.81756221299992,54.486324166000045],[-130.79000577999994,54.49373426800004],[-130.7662242059999,54.46886459300004]]],[[[-57.29156018499989,54.502499376000074],[-57.34031001999991,54.50144345800011],[-57.36220329499991,54.50726324700015],[-57.365670381999905,54.52385194100013],[-57.34895194699996,54.54145359000016],[-57.347348762999935,54.55512260900012],[-57.30367682799994,54.57472319500006],[-57.275077992999854,54.57964989100013],[-57.271659893999924,54.56696551900007],[-57.28339223299989,54.55620827700006],[-57.26989055699991,54.54549308300007],[-57.25472655499988,54.53770818800014],[-57.25468354199995,54.52599464500004],[-57.26804138099993,54.503519933000135],[-57.29156018499989,54.502499376000074]]],[[[-131.06944001699992,54.587859537000114],[-131.0909046569999,54.58223994100011],[-131.10222385399996,54.595584681000055],[-131.09876009899997,54.62796194200014],[-131.05684021499994,54.62571667400009],[-131.04995313799995,54.60602938500006],[-131.06944001699992,54.587859537000114]]],[[[-130.75023352799985,54.61928945500013],[-130.74868730399993,54.61163971600011],[-130.74714107999986,54.608587958000115],[-130.74278723899988,54.605617580000015],[-130.75572669199988,54.57526276200003],[-130.76366126199986,54.562730210000105],[-130.7769262359999,54.550360419000086],[-130.83006751199989,54.521307684000114],[-130.83836829299986,54.512844143000066],[-130.96190344999988,54.45477936400003],[-130.9691055979999,54.46198151200004],[-130.9683324859999,54.46979401200004],[-130.96426347599993,54.477728583],[-130.96190344999988,54.48517487200017],[-130.96190344999988,54.53978099200004],[-130.9588110019999,54.55003489800008],[-130.94513912699986,54.56000397300006],[-130.94017493399988,54.572943427000055],[-130.93106035099993,54.58454010600017],[-130.92780514199987,54.59137604400008],[-130.92910722599996,54.597723700000024],[-130.93309485599994,54.60541413000006],[-130.93521074099993,54.613959052000084],[-130.9312231109999,54.622707424000154],[-130.91710364499994,54.63007233300014],[-130.89732825399992,54.633734442],[-130.87995357999984,54.630926825000145],[-130.87315833199992,54.61928945500013],[-130.85415605399993,54.63007233300014],[-130.83971106699994,54.62616608300014],[-130.82575436099987,54.61701080900015],[-130.8079727859999,54.61180247600008],[-130.79279537699992,54.618150132000025],[-130.7735082669999,54.629461981000176],[-130.7569880849999,54.633734442],[-130.75023352799985,54.61928945500013]]],[[[-130.45482337099992,54.72508372600005],[-130.46178137899992,54.71210358300006],[-130.47801673099985,54.712347723],[-130.51008053299984,54.72166575700005],[-130.51227779899995,54.71775950700005],[-130.52171790299994,54.71035390800016],[-130.53465735599985,54.70604075700005],[-130.54727128799993,54.71141185100011],[-130.55699622299994,54.719305731000084],[-130.5816137359999,54.73383209800012],[-130.5919490229999,54.7421735700001],[-130.59805253799988,54.74603913000003],[-130.6096899079999,54.755519924],[-130.61510169199994,54.765082098],[-130.6025284499999,54.769476630000085],[-130.58873450399994,54.770697333],[-130.5786026679999,54.77391185100005],[-130.50987708199997,54.804877020000085],[-130.48355058499988,54.81037018400012],[-130.46157792899996,54.80365631700006],[-130.45213782499985,54.79389069200011],[-130.43431555899988,54.769476630000085],[-130.4407445949999,54.76064687700012],[-130.45262610599994,54.735052802000055],[-130.45482337099992,54.72508372600005]]],[[[-130.21694902299987,54.79328034100017],[-130.2220352859999,54.78998444200011],[-130.21703040299985,54.79043203300013],[-130.20152747299994,54.78998444200011],[-130.20376542899993,54.78339264500006],[-130.20628821499994,54.76911041900017],[-130.20836341099997,54.76264069200006],[-130.22130286399997,54.74371979400014],[-130.23997962099995,54.73053620000008],[-130.2835180329999,54.71482982000013],[-130.29702714799993,54.712347723],[-130.32437089799993,54.710638739],[-130.33812415299994,54.70799388200011],[-130.36449133999992,54.699896552],[-130.37767493399986,54.69818756700009],[-130.3762914699999,54.704657294000086],[-130.34044348899988,54.736883856000034],[-130.31948808499993,54.75067780200014],[-130.27407792899993,54.76512278899998],[-130.2331436839999,54.803045966000106],[-130.20836341099997,54.81110260600015],[-130.20978756399984,54.803045966000106],[-130.21275794199994,54.797308661000145],[-130.21694902299987,54.79328034100017]]],[[[-57.97386633999986,54.87933991100006],[-57.9818009109999,54.87079498900012],[-57.9879451159999,54.84955475500005],[-57.9943741529999,54.838324286000145],[-57.9943741529999,54.83152903900013],[-57.98546301999997,54.82713450700014],[-57.98143469999991,54.8207868510001],[-57.982248501999926,54.81281159100014],[-57.98753821499989,54.80365631700006],[-57.969471808999884,54.806341864000146],[-57.93919837099989,54.82754140800013],[-57.92951412699991,54.828111070000105],[-57.91771399599995,54.81810130400014],[-57.901844855999904,54.80906810100011],[-57.88524329299985,54.80707428600008],[-57.871449347999935,54.81785716399999],[-57.877023891999954,54.82965729400014],[-57.87047278599987,54.83405182500003],[-57.857411261999914,54.8320173200001],[-57.84357662699989,54.8246931010001],[-57.85724850199994,54.80337148600013],[-57.881988084999904,54.79584381700008],[-57.93293209499992,54.79743073100012],[-57.95612545499995,54.79214101800012],[-58.000233527999846,54.76609935100008],[-58.02228756399995,54.75641510600009],[-58.05329342399997,54.753078518000066],[-58.15709387899995,54.76386139500009],[-58.168202277999875,54.76780833500008],[-58.17625891799992,54.77533600500011],[-58.179351365999906,54.78681061400006],[-58.179554816999946,54.801459052000084],[-58.18163001199989,54.806301174000154],[-58.18785559799991,54.809149481000084],[-58.200428839999915,54.81785716399999],[-58.213246222999935,54.832464911],[-58.225249803999866,54.853013414000046],[-58.227365688999974,54.871405341000084],[-58.21035722599993,54.87933991100006],[-58.19977779899998,54.87616608299999],[-58.18472245999996,54.862005927000084],[-58.17589270699988,54.85887278900002],[-58.16380774599988,54.86151764500009],[-58.14256751199991,54.87449778899999],[-58.131499803999866,54.87933991100006],[-58.11986243399985,54.88043854400011],[-58.095570441999875,54.87840403899999],[-58.08372962099992,54.87933991100006],[-58.07315019399988,54.88410065300015],[-58.055897589999866,54.89716217700014],[-58.04621334499989,54.899807033000016],[-58.024159308999906,54.903143622000144],[-57.98241126199988,54.917547919000114],[-57.95962480399993,54.92031484600007],[-57.95140540299985,54.922756252],[-57.94530188699986,54.92658112200003],[-57.941314256999874,54.92560455900014],[-57.93871008999989,54.89398834800006],[-57.94652258999989,54.88690827],[-57.95954342399994,54.88446686400006],[-57.97386633999986,54.87933991100006]]],[[[-79.26805579299986,54.89203522300012],[-79.29263261599988,54.87933991100006],[-79.31265214799996,54.88198476800015],[-79.40192623599998,54.85199616100009],[-79.60350501199993,54.828802802000055],[-79.75792395699989,54.78017812700001],[-79.7799373039999,54.783758856000176],[-79.76244055899984,54.79572174700011],[-79.7350154289999,54.80475495000012],[-79.70588131399995,54.81012604400017],[-79.68309485599991,54.81110260600015],[-79.68309485599991,54.81785716399999],[-79.73151607999992,54.81785716399999],[-79.69725501199994,54.84076569200009],[-79.65392005099997,54.85443756700012],[-79.46963456899991,54.88959381700008],[-79.36778723899988,54.893011786],[-79.34805253799996,54.895900783000044],[-79.30719967399992,54.90932851800004],[-79.28587805899994,54.91351959800014],[-79.01891028599994,54.94082265800013],[-79.02603105399987,54.93170807500003],[-79.03595943899998,54.92694733300014],[-79.15135657499987,54.90228913000014],[-79.24168860599988,54.89793528900004],[-79.26805579299986,54.89203522300012]]],[[[-130.39964758999992,54.76943594000009],[-130.40949459499987,54.76740143400014],[-130.4138891269999,54.77317942900011],[-130.4312231109999,54.78998444200011],[-130.43814042899987,54.79486725500003],[-130.44786536399994,54.80658600499999],[-130.45685787699983,54.820298570000105],[-130.46157792899996,54.83152903900013],[-130.4211319649999,54.850897528000026],[-130.25470943899984,54.96967194200015],[-130.20400956899996,55.02130768400009],[-130.18179277299993,55.03156159100002],[-130.16738847599993,55.016546942],[-130.15347245999996,54.991441148000106],[-130.15005449099993,54.969427802000105],[-130.15782630099991,54.947739976000136],[-130.17735755099994,54.92401764500012],[-130.18895423099985,54.91461823100009],[-130.21349036399997,54.8994001320001],[-130.22545325399992,54.88959381700008],[-130.25853430899986,54.84308502800014],[-130.26984615799984,54.83152903900013],[-130.2820938789999,54.82493724200005],[-130.3244522779999,54.81110260600015],[-130.37075761599988,54.781561591000084],[-130.39964758999992,54.76943594000009]]],[[[-77.58629309799997,55.436224677000084],[-77.64785722599991,55.42743561400012],[-77.61900794199991,55.43748607],[-77.44839433499988,55.53408437700013],[-77.41307532499985,55.562323309000085],[-77.38019771999987,55.57245514500015],[-77.36668860599988,55.57827383],[-77.34337317599989,55.60236237200003],[-77.32917232999998,55.614203192],[-77.31208248599992,55.61920807500003],[-77.24498450399994,55.64484284100011],[-77.21125240799995,55.65375397300012],[-77.20962480399993,55.63971588700018],[-77.22386633999994,55.63735586100013],[-77.23717200399994,55.63190338700009],[-77.31920325399997,55.58201732000005],[-77.35240637899989,55.56736888200014],[-77.37751217399989,55.56028880400008],[-77.52611243399988,55.465399481000034],[-77.58629309799997,55.436224677000084]]],[[[-60.827626105999904,55.94985586100002],[-60.802723761999886,55.94623444200014],[-60.742176886999886,55.948187567],[-60.74669348899994,55.93781159100011],[-60.7490128249999,55.93451569200006],[-60.752837693999936,55.91844310099999],[-60.73534094999989,55.9188500020001],[-60.70921790299991,55.92544179900007],[-60.68757076699992,55.92829010600009],[-60.708973761999886,55.903957424000126],[-60.744943813999946,55.886908270000085],[-60.865142381999924,55.86587148600013],[-60.88927161399993,55.86579010600014],[-60.89981035099992,55.876776434000035],[-60.88890540299994,55.88589101800004],[-60.86388098899993,55.88841380400013],[-60.81786048099988,55.88670482000013],[-60.81786048099988,55.892889716000084],[-60.85415605399988,55.900051174000126],[-60.869781053999866,55.90778229400014],[-60.87930253799996,55.92084381700012],[-60.880034959999904,55.935288804],[-60.87401282499988,55.947821356000176],[-60.86375891799986,55.95697663000006],[-60.852040167999895,55.96185944200011],[-60.827626105999904,55.94985586100002]]],[[[-78.97984778599997,56.03180573100015],[-79.00527910099987,56.017035223000065],[-78.97044837099995,56.02802155200011],[-78.95270748599995,56.030707098],[-78.93639075399992,56.02448151200004],[-78.97032630099997,56.005031643000144],[-78.99860592399992,55.98261139500012],[-79.02139238199996,55.953680731000034],[-79.03258216099997,55.91461823100015],[-79.04898027299987,55.879299221000124],[-79.07827714799988,55.83429596600014],[-79.11217200399994,55.800238348000114],[-79.14244544199994,55.79734935100011],[-79.1238907539999,55.809027411],[-79.1053767569999,55.831203518000066],[-79.08975175699993,55.85708242400009],[-79.05752519399988,55.92999909100011],[-79.03258216099997,55.982326565],[-79.02806555899991,55.992580471000124],[-79.02521725199995,56.02448151200004],[-79.01862545499989,56.04926178600003],[-79.01329505099991,56.05906810100013],[-79.00255286399991,56.06386953300013],[-78.98729407499985,56.06439850500003],[-78.96568762899994,56.08364492400015],[-78.95067298099991,56.078517971000124],[-78.9537654289999,56.06801992400007],[-78.95555579299989,56.058417059000085],[-78.95482337099986,56.0501976580001],[-78.95067298099991,56.04376862200017],[-78.95067298099991,56.037543036000116],[-78.96613521999983,56.036322333],[-78.97984778599997,56.03180573100015]]],[[[-61.03697669199997,56.11945221600017],[-60.96141516799986,56.10480377800014],[-60.940785285999944,56.09218984600007],[-60.95384680899991,56.08954498900009],[-60.95929928299995,56.082993882000025],[-60.96239173099993,56.07416413000014],[-60.968658006999874,56.06484609600001],[-60.97679602799991,56.05833567900011],[-60.98656165299993,56.05247630400008],[-60.997547980999904,56.04755280200003],[-61.0096736319999,56.04376862200017],[-61.0096736319999,56.037543036000116],[-60.95750891799986,56.02610911700007],[-60.94066321499986,56.018947658000044],[-60.955067511999914,56.010199286000145],[-60.96678626199991,56.009222723000065],[-61.002756313999896,56.009914455],[-61.17414303299993,56.03241608300003],[-61.201486782999886,56.04376862200017],[-61.21703040299991,56.05792877800009],[-61.23131262899988,56.080145575000145],[-61.23232988199995,56.099798895000035],[-61.20832271999993,56.10643138200008],[-61.20832271999993,56.099025783000094],[-61.215728318999915,56.099025783000094],[-61.215728318999915,56.09218984600007],[-61.20067298099988,56.08307526200018],[-61.184478318999936,56.082993882000025],[-61.146839972999935,56.09218984600007],[-61.15269934799988,56.10285065300012],[-61.16144771999986,56.10492584800012],[-61.171376105999876,56.10053131700014],[-61.18101966099994,56.09218984600007],[-61.18838456899994,56.107855536000145],[-61.171945766999926,56.11493561400003],[-61.13377844999988,56.11945221600017],[-61.13158118399989,56.12759023600007],[-61.13365637899989,56.139064846000124],[-61.13312740799992,56.14915599199999],[-61.122954881999874,56.15363190300015],[-61.11180579299986,56.15420156500012],[-61.10383053299989,56.156927802],[-61.09923255099997,56.163316148000106],[-61.09845943899995,56.17470937700007],[-61.08287512899995,56.17007070500016],[-61.078521287999955,56.16791413000006],[-61.043812628999895,56.16107819200012],[-61.043812628999895,56.15363190300015],[-61.06505286399989,56.14496491100006],[-61.06558183499996,56.134955145000085],[-61.053578253999916,56.12579987200009],[-61.03697669199997,56.11945221600017]]],[[[-76.73452714799988,56.118312893000116],[-76.77481035099987,56.103664455000015],[-76.78034420499998,56.1080589860001],[-76.77204342399992,56.123724677000084],[-76.77009029899995,56.1383324240001],[-76.7729386059999,56.151841539000074],[-76.77285722599993,56.16535065300006],[-76.76549231699991,56.17597077000009],[-76.75645911399991,56.17885976800004],[-76.7452693349999,56.16648997599999],[-76.73566646999993,56.16229889500015],[-76.73045813699991,56.160834052],[-76.72402910099991,56.15363190300015],[-76.71593176999988,56.138006903000175],[-76.72077389199987,56.12539297100009],[-76.73452714799988,56.118312893000116]]],[[[-77.84984290299988,56.315252997000144],[-77.88463294199991,56.30353424700014],[-77.91234290299991,56.29828522300009],[-77.92760169199988,56.29877350500006],[-77.97232011599993,56.28660716399999],[-77.98009192599994,56.28660716399999],[-77.97044837099985,56.295803127000156],[-77.96393795499998,56.30560944200008],[-77.96031653599991,56.30878327000015],[-77.95677649599992,56.31142812700013],[-77.94896399599995,56.3133812520001],[-77.94054114499988,56.31142812700013],[-77.84764563699989,56.32355377800003],[-77.84142005099991,56.32330963700017],[-77.84117591099988,56.320379950000145],[-77.84984290299988,56.315252997000144]]],[[[-61.79735266799991,56.42112864800005],[-61.57701575399989,56.39297109600006],[-61.5440974599999,56.39378489799999],[-61.55150305899991,56.39378489799999],[-61.528716600999864,56.39720286699999],[-61.50519771999993,56.40460846600017],[-61.48249264199996,56.408392645],[-61.46214758999989,56.40062083499999],[-61.46214758999989,56.40810781500006],[-61.45225989499996,56.39935944200008],[-61.419992641999926,56.38178131700006],[-61.413726365999885,56.37335846600011],[-61.42194576699998,56.36310455900018],[-61.45299231699991,56.35736725500002],[-61.46214758999989,56.34540436400009],[-61.44904537699992,56.34365469000009],[-61.42682857999994,56.334418036000116],[-61.413726365999885,56.332342841000084],[-61.413726365999885,56.32558828300016],[-61.46214758999989,56.318752346000124],[-61.47590084499989,56.31879303600011],[-61.49787350199992,56.32355377800003],[-61.59699459499987,56.333238022999986],[-61.70872962099992,56.36326732000005],[-61.729644334999875,56.37335846600011],[-61.747181769999905,56.39386627800015],[-61.75641842399997,56.40062083499999],[-61.76744544199991,56.404771226000136],[-61.788685675999915,56.40973541900008],[-61.79735266799991,56.41429271000014],[-61.79735266799991,56.42112864800005]]],[[[-77.50255286399994,56.38646067900008],[-77.52155514199987,56.37604401200018],[-77.53538977799985,56.379543361000074],[-77.53726152299993,56.388128973000086],[-77.53701738199987,56.397040106000034],[-77.52940833199992,56.4040388040001],[-77.5157771479999,56.410956122000115],[-77.50670325399989,56.417385158],[-77.50503495999988,56.42304108300003],[-77.50397701699993,56.43012116100005],[-77.49937903599988,56.43699778899999],[-77.49156653599988,56.44114817900011],[-77.48704993399994,56.44212474199999],[-77.48306230399996,56.44122955900009],[-77.47760982999992,56.436468817],[-77.47838294199994,56.43073151200004],[-77.48363196499992,56.42719147300014],[-77.49014238199993,56.41828034100011],[-77.50255286399994,56.38646067900008]]],[[[-78.66344153599988,56.35297272300012],[-78.65965735599988,56.319403387000094],[-78.6490372389999,56.29075755400011],[-78.66026770699992,56.280462958],[-78.66014563699984,56.26756419499999],[-78.65599524599992,56.25263092700014],[-78.65526282499987,56.23615143400015],[-78.66299394399991,56.221828518000066],[-78.67438717399995,56.20978424700014],[-78.68130449099996,56.197211005000085],[-78.67568925699996,56.181545315],[-78.68748938699991,56.176906643000066],[-78.69994055899994,56.17450592700011],[-78.71239173099985,56.17572663000014],[-78.72419186099992,56.181545315],[-78.74132239499995,56.16583893400003],[-78.75157630099989,56.16136302300008],[-78.76512610599985,56.16107819200012],[-78.75763912699989,56.16791413000006],[-78.77745520699992,56.172674872000144],[-78.79649817599989,56.16176992400007],[-78.81505286399991,56.14520905200003],[-78.83336341099997,56.133124091000106],[-78.88451087099992,56.12189362200009],[-78.93639075399992,56.11945221600017],[-78.93138587099989,56.13178131700003],[-78.92491614499988,56.160956122000144],[-78.91934160099987,56.171332098000065],[-78.84048417899993,56.248480536],[-78.82896887899989,56.269029039000046],[-78.84703528599991,56.277777411000116],[-78.83580481699991,56.289618231000176],[-78.82135982999995,56.30048248900006],[-78.81456458199992,56.31024811400003],[-78.82656816299993,56.318752346000124],[-78.82176673099984,56.32510000200007],[-78.81285559799991,56.34540436400009],[-78.83336341099997,56.34540436400009],[-78.8250219389999,56.35834381700009],[-78.7981664699999,56.379217841000134],[-78.78799394399996,56.40143463700009],[-78.77774003799993,56.41486237200008],[-78.75763912699989,56.43480052299999],[-78.73355058499996,56.44448476800015],[-78.69957434799991,56.44904205900009],[-78.67076575399989,56.44306061400009],[-78.66270911399995,56.42112864800005],[-78.66344153599988,56.35297272300012]]],[[[-79.6421606109999,56.36591217700011],[-79.67878170499992,56.33128489800005],[-79.71572831899996,56.30914948100015],[-79.9779353509999,56.202053127000156],[-80.03286699099988,56.18988678600006],[-80.06383216099991,56.18744538000011],[-80.08775794199997,56.19147370000009],[-80.1018774079999,56.197577216000084],[-80.10496985599988,56.20050690300011],[-80.10277258999989,56.20579661699999],[-80.10016842399989,56.23338450699999],[-80.0979711579999,56.23993561400009],[-80.06004798099987,56.27179596600011],[-80.05239824099993,56.28367747600005],[-80.05988521999993,56.2982445330001],[-80.05988521999993,56.30442942900005],[-80.03099524599992,56.319728908000016],[-80.0003149079999,56.325873114],[-79.89134680899991,56.32941315300017],[-79.87173417899996,56.33551666900014],[-79.86188717399995,56.34540436400009],[-79.86363684799994,56.35480377800009],[-79.87816321499989,56.36835358300006],[-79.88170325399994,56.37677643400012],[-79.87702389199984,56.38129303600006],[-79.86742102799985,56.385484117000104],[-79.86001542899986,56.386175848000114],[-79.83189856699987,56.379217841000134],[-79.7748103509999,56.36733633000009],[-79.7445369129999,56.36591217700011],[-79.7289119129999,56.36884186400014],[-79.69994055899991,56.37815989799999],[-79.68683834499987,56.38019440300003],[-79.67442786399991,56.38450755400011],[-79.65412350199992,56.40375397300006],[-79.63243567599994,56.415716864],[-79.61522376199991,56.43378327000012],[-79.60020911399991,56.45522695500016],[-79.59373938699989,56.47264232000013],[-79.58897864499991,56.49420807500003],[-79.57705644399996,56.51015859600015],[-79.56159420499992,56.52167389500009],[-79.54588782499988,56.53034088700018],[-79.54605058499993,56.52187734600012],[-79.5486954419999,56.515082098],[-79.5534561839999,56.509222723000065],[-79.56017005099997,56.50364817900005],[-79.5699763659999,56.469387111000074],[-79.59260006399995,56.43012116100005],[-79.6421606109999,56.36591217700011]]],[[[-61.35586503799988,56.52163320500009],[-61.33014889199992,56.515326239000146],[-61.31135006399998,56.496893622000115],[-61.351226365999935,56.484767971000124],[-61.36656653599991,56.48322174700017],[-61.36656653599991,56.475734768],[-61.35558020699994,56.47455475499999],[-61.335804816999904,56.46979401200018],[-61.32559160099987,56.469549872000144],[-61.31187903599994,56.47308991100011],[-61.29914303299989,56.48159414300015],[-61.22663326699998,56.48676178600006],[-61.19322669199991,56.485052802000055],[-61.16734778599991,56.475734768],[-61.1845596999999,56.471014716000106],[-61.201079881999895,56.469142971000124],[-61.216175910999915,56.46539948100009],[-61.22883053299997,56.45526764500015],[-61.210072394999905,56.45058828300013],[-61.1880997389999,56.45400625200013],[-61.166005011999914,56.45477936400006],[-61.146839972999935,56.44220612200017],[-61.37922115799995,56.45221588700015],[-61.46743730399996,56.469549872000144],[-61.48888098899988,56.469549872000144],[-61.48525956899993,56.466457424000154],[-61.47874915299994,56.45864492400007],[-61.47520911399994,56.45526764500015],[-61.48664303299992,56.44525788000005],[-61.49941972599996,56.441961981000034],[-61.512277798999975,56.44525788000005],[-61.523589647999955,56.45526764500015],[-61.51618404899997,56.45526764500015],[-61.5415746739999,56.469427802000084],[-61.57323157499987,56.47089264500011],[-61.60562089799987,56.46820709800015],[-61.63345292899993,56.469549872000144],[-61.63345292899993,56.475734768],[-61.619781053999894,56.475734768],[-61.619781053999894,56.48322174700017],[-61.62710527299989,56.485988674000126],[-61.63206946499986,56.48944733300014],[-61.6396378249999,56.496893622000115],[-61.45091712099988,56.478216864000146],[-61.42804928299994,56.48322174700017],[-61.42711341099988,56.49249909100003],[-61.454090949999845,56.498846747000144],[-61.63345292899993,56.510484117000075],[-61.62214107999994,56.52387116100009],[-61.60553951699989,56.523260809000114],[-61.58739173099988,56.51968008000012],[-61.57140051999989,56.5241559920001],[-61.581654425999915,56.52968984600012],[-61.591379360999944,56.537339585000055],[-61.60553951699989,56.55206940300015],[-61.60553951699989,56.558294989],[-61.59447180899985,56.56049225499999],[-61.55772864499993,56.558294989],[-61.53937740799989,56.553900458000115],[-61.46231035099992,56.550034898000106],[-61.44562740799989,56.54482656500012],[-61.413726365999885,56.53034088700018],[-61.38491777299995,56.52391185100008],[-61.35586503799988,56.52163320500009]]],[[[-78.75300045499995,56.657294012000094],[-78.78294837099992,56.655096747000115],[-78.8111466139999,56.657660223],[-78.81993567599996,56.660874742000075],[-78.83218339799993,56.669338283],[-78.83861243399984,56.669867255],[-78.85094153599991,56.67267487200003],[-78.84068762899997,56.675767320000105],[-78.77822831899994,56.675767320000105],[-78.76504472599987,56.67719147300009],[-78.75007076699984,56.67560455900015],[-78.7398982409999,56.66697825700005],[-78.75300045499995,56.657294012000094]]],[[[-79.16567541199987,56.6594089150001],[-79.1342632879999,56.63440421200015],[-79.13265137199993,56.61509838700006],[-79.15391025599988,56.605384412000134],[-79.17602977599995,56.62193332],[-79.18998345599992,56.64291015600004],[-79.22302004299985,56.649504534000144],[-79.24763763299987,56.631747461000046],[-79.2552842159999,56.59533160400004],[-79.24699147399988,56.562066261000105],[-79.23497473899991,56.55145905199999],[-79.19029700399993,56.55206940300015],[-79.15925045499993,56.544663804000045],[-79.13805091099994,56.54779694200011],[-79.13097083199989,56.54417552300008],[-79.11754309799991,56.49103424700017],[-79.09349524599986,56.45897044499999],[-79.05760657499988,56.43695709800009],[-79.01154537699992,56.42796458500008],[-78.95775305899988,56.434719143],[-78.93614661399988,56.430243231000034],[-78.92271887899989,56.40810781500006],[-78.92271887899989,56.39736562700015],[-78.92918860599988,56.37738678600009],[-78.92894446499993,56.36591217700011],[-78.92577063699989,56.36058177300008],[-78.9139705069999,56.35122304900012],[-78.90904700399994,56.34540436400009],[-78.93407141799986,56.34418366100005],[-78.93639075399992,56.34540436400009],[-78.94859778599991,56.33087799700003],[-78.95221920499995,56.32245514500009],[-78.94692949099988,56.318752346000124],[-78.88182532499985,56.32558828300016],[-78.89195716099991,56.31085846600017],[-78.90819251199984,56.302964585],[-78.92662512899989,56.29767487200003],[-78.94322669199994,56.29075755400011],[-78.95750891799995,56.27741120000012],[-78.97057044199991,56.24750397300012],[-78.98078365799994,56.23273346600014],[-79.0621638659999,56.139349677000055],[-79.09801184799991,56.05084870000006],[-79.19546464799987,55.90477122600005],[-79.20327714799996,55.859442450000024],[-79.21548417899993,55.86310455900009],[-79.21837317599997,55.87221914300009],[-79.21373450399994,55.883246161000116],[-79.20327714799996,55.892889716000084],[-79.21011308499988,55.892889716000084],[-79.20156816299996,55.90595123900009],[-79.18346106699994,55.948187567],[-79.15347245999988,55.99506256700015],[-79.14338131399992,56.02313873900006],[-79.11986243399986,56.05536530199999],[-79.11107337099989,56.08698151200018],[-78.99010169199988,56.26260000200012],[-78.97362219999991,56.304266669000086],[-78.97020423099991,56.34284088700015],[-78.99787350199989,56.35285065300014],[-78.9827367829999,56.36994049700009],[-78.97472083199995,56.38458893400009],[-78.98021399599989,56.39203522300009],[-79.00527910099987,56.387030341000134],[-79.00609290299987,56.38495514500012],[-79.00666256399995,56.380926825000145],[-79.00812740799991,56.37653229400017],[-79.01154537699992,56.37335846600011],[-79.02603105399987,56.36790599200007],[-79.03359941299993,56.366400458000115],[-79.04255123599995,56.36591217700011],[-79.04938717399997,56.36066315300006],[-79.0562231109999,56.34857819200014],[-79.10049394399994,56.233058986000074],[-79.10228430899994,56.221502997000144],[-79.09748287699995,56.216294664000046],[-79.08556067599991,56.21710846600017],[-79.07469641799992,56.21942780200011],[-79.06566321499992,56.22353750200006],[-79.05931555899987,56.22931549700006],[-79.05247962099986,56.22931549700006],[-79.06167558499992,56.216498114],[-79.06663977799987,56.21206289300012],[-79.07359778599997,56.208889065000065],[-79.06334387899994,56.20351797100001],[-79.05931555899987,56.202053127000156],[-79.07331295499992,56.18040599200007],[-79.11261959499984,56.14012278899999],[-79.12071692599997,56.116034247000144],[-79.12511145699995,56.10956452000014],[-79.14435787699989,56.087062893000066],[-79.14867102799991,56.07514069200012],[-79.21910559799989,55.95221588700015],[-79.28587805899994,55.86627838700015],[-79.28062903599997,55.888088283000016],[-79.19709225199988,56.010199286000145],[-79.12816321499994,56.16107819200012],[-79.12873287699992,56.17991771000008],[-79.13141842399989,56.20502350500006],[-79.14098059799997,56.22679271000011],[-79.1555883449999,56.23615143400015],[-79.17218990799995,56.22931549700006],[-79.18984941299995,56.21320221600017],[-79.24840247299991,56.14516836100002],[-79.35484778599988,55.97785065300003],[-79.3646541009999,55.96930573100012],[-79.38101152299993,55.961981512000094],[-79.46934973899988,55.87938060100011],[-79.50926673099985,55.864976304000045],[-79.55382239499994,55.86847565300015],[-79.60741126199994,55.88670482000013],[-79.62291419199993,55.89931875200001],[-79.63385982999992,55.90298086100016],[-79.64525305899988,55.89667389500012],[-79.73908443899995,55.81183502800015],[-79.75816809799994,55.80475495000009],[-79.75853430899986,55.79975006700015],[-79.76447506399998,55.79511139500011],[-79.77424068899992,55.79169342700011],[-79.78612219999988,55.790472723],[-79.76716061099995,55.81806061400012],[-79.63182532499988,55.941229559000114],[-79.54588782499988,56.04376862200017],[-79.52879798099991,56.06122467700014],[-79.47451738199989,56.10272858300014],[-79.47081458199995,56.12103913],[-79.49315344999987,56.131577867000075],[-79.52391516799986,56.135321356000084],[-79.54588782499988,56.133124091000106],[-79.58405514199984,56.11066315300009],[-79.72276770699995,55.978583075000145],[-79.8301488919999,55.89862702000006],[-79.85635331899991,55.87140534100017],[-79.86188717399995,55.86277903900007],[-79.86705481699994,55.84349192900014],[-79.87975012899992,55.83714427300002],[-79.89525305899991,55.834214585000076],[-79.90904700399992,55.825262762000065],[-79.91266842399989,55.84324778899998],[-79.92357337099986,55.85708242400009],[-79.93407141799995,55.867092190000065],[-79.9363500639999,55.87372467700013],[-79.94912675699995,55.889064846000096],[-79.97085527299993,55.89691803600006],[-80.02570553299991,55.90033600500008],[-80.00251217399989,55.93927643400014],[-79.98761959499984,55.95526764500006],[-79.94904537699998,55.968207098000065],[-79.73717200399992,56.16144440300015],[-79.55101477799988,56.266302802000084],[-79.52538001199991,56.293646552000055],[-79.50499426999994,56.332342841000084],[-79.46751868399991,56.428697007],[-79.46129309799994,56.47968170799999],[-79.47826087099992,56.5241559920001],[-79.47435462099992,56.52606842700005],[-79.47154700399997,56.52802155200011],[-79.46849524599989,56.52960846600014],[-79.4639786449999,56.53034088700018],[-79.46597245999996,56.535101630000085],[-79.46886145699987,56.547349351000136],[-79.47081458199995,56.55206940300015],[-79.4537247389999,56.55951569200012],[-79.44579016799995,56.55499909100017],[-79.42992102799991,56.509955145],[-79.42601477799991,56.50348541900008],[-79.41559811099992,56.496893622000115],[-79.42369544199994,56.48053620000009],[-79.42796790299984,56.46356842700011],[-79.42983964799993,56.43138255400007],[-79.43517005099989,56.41421133000016],[-79.45864824099996,56.38129303600006],[-79.4639786449999,56.36961497600008],[-79.46719316299988,56.364325262000094],[-79.47423255099994,56.35667552300007],[-79.48127193899992,56.347072658000094],[-79.48448645699997,56.33576080900009],[-79.47923743399987,56.31150950700011],[-79.47826087099992,56.301336981000176],[-79.48241126199986,56.28628164300015],[-79.5047094389999,56.24607982000008],[-79.51549231699991,56.23273346600014],[-79.57384192599991,56.181545315],[-79.59618079299992,56.16917552300005],[-79.60387122299994,56.16144440300015],[-79.60741126199994,56.147406317],[-79.60732988199995,56.134466864],[-79.60464433499986,56.12905508000013],[-79.59829667899993,56.12921784100011],[-79.58751380099994,56.133124091000106],[-79.58006751199986,56.139064846000124],[-79.56802324099993,56.15888092700014],[-79.56017005099997,56.16791413000006],[-79.54637610599985,56.177191473],[-79.53083248599995,56.184719143000066],[-79.49815833199992,56.19456614799999],[-79.44928951699993,56.20351797100001],[-79.42870032499988,56.210150458000086],[-79.40933183499988,56.22247955900012],[-79.40933183499988,56.232855536000116],[-79.36099199099995,56.348456122000165],[-79.32477779899995,56.39484284100003],[-79.30874589799996,56.43528880400008],[-79.29914303299998,56.47992584800015],[-79.29063880099994,56.58567942900007],[-79.28587805899994,56.60610586100013],[-79.28493114099992,56.66104104600005],[-79.2583187139999,56.68184306100012],[-79.20395865099994,56.68498411600005],[-79.16567541199987,56.6594089150001]]],[[[-61.085438605999855,56.66754791900003],[-61.085438605999855,56.66132233300006],[-61.07115637899994,56.66132233300006],[-61.080067511999914,56.651190497000115],[-61.09902910099989,56.63812897300012],[-61.10586503799993,56.626532294000114],[-61.07062740799998,56.63458893400015],[-61.05748450399991,56.63397858299999],[-61.05748450399991,56.626532294000114],[-61.07152258999988,56.62579987200009],[-61.10586503799993,56.612941799000154],[-61.152455206999946,56.61025625200007],[-61.16734778599991,56.60610586100013],[-61.18838456899994,56.59039948100017],[-61.20067298099988,56.58437734600007],[-61.215728318999915,56.58563873900009],[-61.22199459499986,56.59064362200003],[-61.22960364499989,56.606512762000065],[-61.23497473899994,56.612941799000154],[-61.23399817599998,56.61806875200007],[-61.23257402299989,56.61945221600014],[-61.23241126199994,56.62103913],[-61.23497473899994,56.626532294000114],[-61.200062628999916,56.64427317900011],[-61.19399980399993,56.650458075000174],[-61.18643144399988,56.662054755],[-61.16885331899993,56.66494375200013],[-61.13377844999988,56.66132233300006],[-61.13377844999988,56.66754791900003],[-61.15363521999986,56.672512111000074],[-61.162831183999856,56.675970770000056],[-61.16734778599991,56.68121979400014],[-61.164906378999966,56.691839911],[-61.1551814439999,56.694403387000094],[-61.14317786399991,56.69228750200009],[-61.13377844999988,56.68866608300014],[-61.11522376199985,56.68829987200002],[-61.09496008999986,56.68475983300014],[-61.08202063699985,56.67792389500012],[-61.085438605999855,56.66754791900003]]],[[[-76.64635169199988,56.55048248900011],[-76.65469316299996,56.548895575000174],[-76.64907792899996,56.56142812700006],[-76.64948482999995,56.57440827000009],[-76.65538489499991,56.58746979400014],[-76.65428626199986,56.604885158000044],[-76.64785722599991,56.626532294000114],[-76.63426673099988,56.65656159100017],[-76.6341853509999,56.71527741100009],[-76.62425696499992,56.71027252800003],[-76.61611894399988,56.69550202000014],[-76.62071692599991,56.6835798200001],[-76.6234431629999,56.68146393400009],[-76.6256404289999,56.67942942900007],[-76.62694251199989,56.67560455900015],[-76.62523352799988,56.67177969000014],[-76.62083899599989,56.65558502800008],[-76.62083899599989,56.64817942900011],[-76.62490800699996,56.64362213700015],[-76.62584387899994,56.63361237200017],[-76.62238521999983,56.617254950000145],[-76.6190486319999,56.586900132],[-76.62669837099995,56.56879303600008],[-76.64635169199988,56.55048248900011]]],[[[-79.55089270699992,56.784735419000114],[-79.54503333199997,56.78457265800013],[-79.53819739499993,56.78534577000006],[-79.52550208199989,56.78440989799999],[-79.51781165299988,56.786078192],[-79.51065019399994,56.783677476000044],[-79.50499426999994,56.77118561400014],[-79.50487219999988,56.77558014500012],[-79.50340735599991,56.776434637000115],[-79.50108801999994,56.774644273000135],[-79.49815833199992,56.77118561400014],[-79.48326575399994,56.73944733300008],[-79.48033606699994,56.723211981000034],[-79.49132239499991,56.71596914300004],[-79.48131262899992,56.704779364],[-79.47996985599991,56.695135809000035],[-79.48770097599991,56.66364166900003],[-79.49559485599991,56.66144440300003],[-79.51549231699991,56.66754791900003],[-79.53197180899988,56.65607330900017],[-79.54857337099995,56.63410065300015],[-79.56493079299986,56.620550848],[-79.58067786399991,56.63397858299999],[-79.5833227199999,56.648871161000145],[-79.57787024599985,56.65778229400008],[-79.57030188699991,56.66412995000012],[-79.56411699099993,56.675279039000124],[-79.55589758999986,56.70156484600015],[-79.55679277299996,56.70538971600017],[-79.54759680899987,56.72752513200013],[-79.56041419199991,56.747259833000086],[-79.59373938699989,56.77118561400014],[-79.58018958199992,56.77667877800015],[-79.57384192599991,56.77741120000009],[-79.57384192599991,56.78485748900009],[-79.5833227199999,56.78912995000009],[-79.58739173099988,56.79531484600015],[-79.58641516799989,56.80304596600017],[-79.58067786399991,56.812201239000146],[-79.57335364499991,56.81818268400015],[-79.56916256399998,56.816107489000146],[-79.5655411449999,56.810288804],[-79.56017005099997,56.80536530200011],[-79.55980383999984,56.802923895],[-79.55337480399993,56.78790924700017],[-79.55089270699992,56.784735419000114]]],[[[-79.87975012899992,56.752752997000115],[-79.88805091099988,56.74909088700015],[-79.91270911399988,56.75006745000003],[-79.9393611319999,56.760484117000104],[-79.95173092399995,56.78522370000009],[-79.95238196499989,56.81468333500008],[-79.9437556629999,56.839504299000126],[-79.93822180899988,56.844916083000086],[-79.91494706899996,56.86286041900002],[-79.90591386599993,56.86684804900001],[-79.87295488199987,56.86737702000009],[-79.85798092399995,56.86554596600011],[-79.82420813699984,56.84796784100017],[-79.81737219999985,56.83161041900014],[-79.82335364499994,56.81305573100015],[-79.83796139199987,56.794501044000135],[-79.84361731699995,56.79132721600016],[-79.85602779899989,56.78925202000006],[-79.86188717399995,56.78485748900009],[-79.86327063699991,56.78091054900009],[-79.86607825399997,56.76801178600009],[-79.8680313789999,56.763739325000145],[-79.87975012899992,56.752752997000115]]],[[[-79.78612219999988,56.941880601000136],[-79.76598059799994,56.92601146000011],[-79.75621497299989,56.916449286000116],[-79.75202389199987,56.903998114],[-79.74962317599991,56.89158763200008],[-79.73151607999992,56.853094794000086],[-79.72370357999992,56.82074616100006],[-79.73086503799996,56.80190664300012],[-79.75121008999986,56.79319896000013],[-79.78307044199988,56.79108307500003],[-79.79076087099989,56.796087958000086],[-79.79108639199993,56.807440497000144],[-79.78612219999988,56.8258324240001],[-79.78815670499988,56.83685944200015],[-79.79710852799994,56.86473216399998],[-79.79918372299994,56.876410223000086],[-79.81248938699989,56.896673895],[-79.87816321499989,56.884955145],[-79.90282141799985,56.894110419000086],[-79.8958227199999,56.90371328300007],[-79.8753555979999,56.92279694200015],[-79.85879472599996,56.93496328300013],[-79.85147050699996,56.93878815300014],[-79.84227454299989,56.93732330900009],[-79.82705644399991,56.928168036000024],[-79.81916256399984,56.941880601000136],[-79.80728105399987,56.950628973],[-79.79503333199992,56.95160553600009],[-79.78612219999988,56.941880601000136]]],[[[-61.42943274599994,56.93659088700014],[-61.41185462099991,56.92914459800009],[-61.39321855399993,56.9316266950001],[-61.37901770699992,56.936957098000065],[-61.362945115999935,56.939886786],[-61.34850012899997,56.93960195500016],[-61.33869381399995,56.9350446640001],[-61.368519660999944,56.90542226800006],[-61.39464270699988,56.890611070000105],[-61.406890428999866,56.879828192],[-61.391346808999856,56.87815989799999],[-61.37767493399992,56.87494538000011],[-61.364979620999854,56.86920807500014],[-61.35228430899991,56.85993073100009],[-61.370757615999935,56.84707265800007],[-61.401112433999906,56.83193594000009],[-61.43272864499988,56.822251695000105],[-61.455311652999846,56.8258324240001],[-61.44517981699991,56.83331940300015],[-61.44570878799987,56.83954498900012],[-61.45457923099994,56.84406159100017],[-61.4689835279999,56.846340236000124],[-61.4823298819999,56.84349192900011],[-61.495472785999965,56.83641185100005],[-61.50300045499992,56.82916901200012],[-61.49567623599992,56.821478583],[-61.50088456899991,56.81183502800003],[-61.51060950399995,56.802191473000065],[-61.51988684799991,56.79783763200008],[-61.53099524599994,56.79682038000003],[-61.56065833199998,56.78978099200013],[-61.57140051999989,56.78485748900009],[-61.57921301999988,56.7787132830001],[-61.58470618399991,56.77167389500012],[-61.58551998599993,56.76430898600013],[-61.578846808999884,56.75690338700003],[-61.564686652999846,56.75397370000003],[-61.55093339799993,56.759466864000146],[-61.538197394999884,56.767238674000154],[-61.51699785099989,56.77431875200001],[-61.497629360999944,56.787990627000156],[-61.48574785099993,56.79108307500003],[-61.47069251199991,56.790472723000065],[-61.401356574999845,56.78021881700014],[-61.384388800999965,56.77216217700011],[-61.37547766799994,56.757554429],[-61.37279212099986,56.73305898600015],[-61.37279212099986,56.69208405200014],[-61.377512173999946,56.67796458500011],[-61.38825436099998,56.675034897999986],[-61.39976966099991,56.67450592700011],[-61.406890428999866,56.66754791900003],[-61.403797980999876,56.657660223],[-61.382476365999906,56.644964911000145],[-61.37962805899989,56.63397858299999],[-61.38841712099995,56.623236395000085],[-61.403797980999876,56.61945221600014],[-61.43488521999989,56.62034739800004],[-61.45352128799987,56.62604401200004],[-61.50991777299993,56.66754791900003],[-61.5294490229999,56.676662502],[-61.540394660999965,56.67987702000006],[-61.55093339799993,56.68121979400014],[-61.56114661399996,56.685492255000085],[-61.575306769999884,56.704250393000116],[-61.60171464799987,56.71409739800004],[-61.61237545499992,56.725816148000135],[-61.62572180899992,56.735907294000114],[-61.647124803999866,56.73647695500007],[-61.647124803999866,56.74384186400006],[-61.63365637899988,56.76178620000012],[-61.624134894999884,56.79682038000003],[-61.62169348899994,56.830959377],[-61.62975012899989,56.846340236000124],[-61.634429490999906,56.85248444200012],[-61.62572180899992,56.866359768],[-61.60553951699989,56.887274481000176],[-61.57111568899995,56.900539455000015],[-61.540679490999906,56.907700914000046],[-61.527007615999956,56.914129950000145],[-61.523752407999915,56.928168036000024],[-61.523752407999915,56.94232819200012],[-61.51988684799991,56.948716539000046],[-61.50438391799992,56.950751044000086],[-61.49176998599993,56.954901434000114],[-61.478830532999915,56.95766836100007],[-61.46214758999989,56.95551178600009],[-61.446156378999966,56.94749583500014],[-61.42943274599994,56.93659088700014]]],[[[-76.66095943899992,57.06537506700006],[-76.67511959499984,57.06537506700006],[-76.69326738199993,57.07196686400012],[-76.70091712099986,57.08266836100016],[-76.70661373599994,57.100653387000094],[-76.70848548099991,57.110663153000175],[-76.71861731699997,57.132717190000065],[-76.7206111319999,57.141424872000144],[-76.72008216099994,57.146307684000035],[-76.72769120999988,57.15753815300003],[-76.73346920499992,57.17641836100016],[-76.73143469999991,57.18646881700012],[-76.72508704299989,57.190822658000044],[-76.71141516799995,57.19635651200004],[-76.6984757149999,57.192206122000115],[-76.68154863199993,57.17023346600008],[-76.67857825399994,57.15184153900004],[-76.66844641799989,57.14545319200012],[-76.65599524599986,57.13979726800012],[-76.65355383999992,57.12885163000006],[-76.66234290299987,57.12083567900011],[-76.67247473899994,57.11725495000014],[-76.67593339799996,57.10887278899998],[-76.67145748599998,57.09853750200007],[-76.65538489499991,57.08783600500006],[-76.65428626199986,57.08266836100016],[-76.65782630099993,57.078070380000106],[-76.65566972599991,57.074774481000176],[-76.65196692599989,57.07135651200015],[-76.65469316299996,57.06712474200004],[-76.66095943899992,57.06537506700006]]],[[[-78.25694739499997,57.194484768000066],[-78.26162675699986,57.19159577000014],[-78.2718806629999,57.19163646000014],[-78.27892005099997,57.19074127800006],[-78.28286699099996,57.18943919500005],[-78.28697669199991,57.19074127800006],[-78.29137122299989,57.19253164300012],[-78.29670162699995,57.191229559000035],[-78.3004451159999,57.18561432500003],[-78.30846106699994,57.17747630400011],[-78.32433020699997,57.171861070000105],[-78.33299719999988,57.170477606000034],[-78.34129798099994,57.16990794500008],[-78.3578181629999,57.17039622600005],[-78.38194739499994,57.17446523600002],[-78.38243567599991,57.17812734600007],[-78.37364661399992,57.18524811400012],[-78.36628170499995,57.188910223000065],[-78.36025956899994,57.18817780200014],[-78.3587947259999,57.19074127800006],[-78.35757402299987,57.19546133000016],[-78.35265051999991,57.19818756700012],[-78.32555091099987,57.20766836100004],[-78.31163489499991,57.208726304],[-78.29784094999991,57.206488348],[-78.26838131399992,57.198635158000016],[-78.2628474599999,57.19773997600011],[-78.25694739499997,57.194484768000066]]],[[[-78.37975012899994,57.288153387000094],[-78.41539466099991,57.27928294500005],[-78.42747962099989,57.27960846600016],[-78.46841386599993,57.287014065000065],[-78.47801673099991,57.28754303600014],[-78.48078365799995,57.291449286000145],[-78.47447669199991,57.29686107],[-78.45811926999991,57.304754950000145],[-78.38101152299994,57.328802802],[-78.34715735599988,57.328558661000145],[-78.32640540299988,57.31777578300012],[-78.33649654899993,57.30516185100007],[-78.37975012899994,57.288153387000094]]],[[[-76.73940995999996,57.283880927],[-76.75454667899996,57.28050364800007],[-76.7637833319999,57.28506094000004],[-76.76976477799992,57.30377838700017],[-76.77448482999995,57.31142812700001],[-76.78392493399986,57.32103099199999],[-76.79112708199987,57.336086330000015],[-76.7923477859999,57.34418366100012],[-76.80772864499994,57.365179755000085],[-76.81419837099995,57.37958405200013],[-76.81773841099994,57.391017971000096],[-76.8238826159999,57.4005394550001],[-76.83287512899992,57.40827057500008],[-76.83926347599996,57.418850002000156],[-76.83543860599994,57.42576732000004],[-76.82689368399991,57.42157623900011],[-76.81810462099993,57.41535065300014],[-76.80825761599993,57.41160716400013],[-76.80101477799991,57.40607330900012],[-76.77131100199998,57.39061107],[-76.75983639199984,57.380357164000074],[-76.75617428299998,57.37531159100002],[-76.75182044199988,57.370306708],[-76.74535071499989,57.36017487200002],[-76.74388587099992,57.349432684000114],[-76.74705969999987,57.341253973],[-76.75084387899992,57.33490631700009],[-76.74990800699993,57.32640208500005],[-76.74522864499991,57.31659577000012],[-76.73839270699989,57.30573151200003],[-76.73298092399995,57.29352448100015],[-76.73940995999996,57.283880927]]],[[[-61.67235266799992,57.49030182500012],[-61.659982876999884,57.48924388200006],[-61.647124803999866,57.48993561400001],[-61.647124803999866,57.48309967699999],[-61.656971808999884,57.47923411699998],[-61.67064368399991,57.46759674700017],[-61.6806534499999,57.46263255400011],[-61.69505774599989,57.46039459800012],[-61.771107550999965,57.46222565300012],[-61.79084225199992,57.459418036000066],[-61.80736243399989,57.451239325000145],[-61.82526607999995,57.435288804000045],[-61.8137914699999,57.43065013200011],[-61.79759680899985,57.42877838700015],[-61.78307044199991,57.43097565300014],[-61.776844855999855,57.438788153000026],[-61.76886959499989,57.44391510600015],[-61.75031490799989,57.44497304900001],[-61.666818813999924,57.43549225499999],[-61.61294511599988,57.4216983090001],[-61.61294511599988,57.415472723000114],[-61.647287563999924,57.40058014500009],[-61.68276933499993,57.39956289300004],[-61.84894771999988,57.41510651200012],[-61.89073645699988,57.427557684000035],[-61.90038001199986,57.44896067899999],[-61.88906816299987,57.455226955000136],[-61.8314509759999,57.469427802000055],[-61.798207160999915,57.483832098000036],[-61.78380286399994,57.49249909100011],[-61.77065995999987,57.50360748900014],[-61.752023891999904,57.52789948100011],[-61.742095506999895,57.534857489],[-61.722808397999955,57.53839752800008],[-61.679351365999906,57.53754303600009],[-61.65933183499993,57.533026434000035],[-61.647124803999866,57.524115302],[-61.64191646999986,57.522040106000176],[-61.6378474599999,57.51996491100006],[-61.63508053299995,57.51666901200012],[-61.63345292899993,57.51105377800011],[-61.64952551999991,57.510687567],[-61.66539466099993,57.50739166900015],[-61.694935675999915,57.49746328300016],[-61.68419348899988,57.493109442000055],[-61.67235266799992,57.49030182500012]]],[[[-61.88731848899988,57.58722565300009],[-61.87718665299993,57.585394598],[-61.85260982999992,57.58612702000015],[-61.79271399599988,57.55662669500008],[-61.779896613999945,57.5361188820001],[-61.793934699999916,57.50731028899999],[-61.81798255099991,57.494696356000084],[-61.914051886999886,57.459540106000034],[-61.92906653599991,57.45612213700004],[-61.96275794199991,57.47394440300009],[-61.99779212099992,57.49909088700017],[-62.017079230999855,57.51788971600003],[-62.01829993399988,57.54730866100011],[-61.9982804029999,57.57269928600015],[-61.967111782999915,57.589422919000164],[-61.935170050999915,57.59296295800005],[-61.9529516269999,57.570705471],[-61.95514889199998,57.559027411000116],[-61.9413142569999,57.55206940300004],[-61.92613684799991,57.55613841399998],[-61.90831458199992,57.58392975500005],[-61.89415442599991,57.59296295800005],[-61.88731848899988,57.58722565300009]]],[[[-79.69611568899988,57.55231354400017],[-79.69640051999994,57.52948639500014],[-79.70360266799987,57.51105377800011],[-79.72276770699995,57.501898505000135],[-79.76109778599997,57.52045319200014],[-79.7799373039999,57.51105377800011],[-79.78416907499994,57.493353583000115],[-79.78449459499987,57.444322007000046],[-79.79295813699989,57.428534247000115],[-79.80776933499996,57.43353913000006],[-79.82884680899987,57.452215887000044],[-79.84654700399989,57.47345612200011],[-79.85098222599986,57.486517645],[-79.83849036399994,57.48932526200004],[-79.82388261599993,57.485174872000115],[-79.81167558499996,57.4852562520001],[-79.80247962099989,57.511623440000086],[-79.79328365799992,57.51776764500006],[-79.78404700399994,57.52212148600015],[-79.7799373039999,57.52777741100014],[-79.7847387359999,57.537787177000105],[-79.79580644399994,57.53534577],[-79.8172094389999,57.524115302],[-79.82823645699992,57.52875397300012],[-79.82567298099991,57.539048570000126],[-79.81346594999985,57.55548737200003],[-79.80687415299988,57.56928131700015],[-79.79108639199993,57.58637116100009],[-79.77183997299989,57.601019598],[-79.75511633999986,57.60732656500012],[-79.74990800699996,57.6109886740001],[-79.74421139199987,57.617865302],[-79.73717200399992,57.62201569200012],[-79.7280981109999,57.61717357000005],[-79.72134355399987,57.60761139500007],[-79.71275794199994,57.58905670800006],[-79.7013240229999,57.57330963700009],[-79.69611568899988,57.55231354400017]]],[[[-61.73546301999991,57.82807038000006],[-61.72671464799995,57.82404205900017],[-61.71939042899992,57.83478424700008],[-61.711333787999905,57.83624909100014],[-61.702056443999965,57.83535390800016],[-61.694935675999915,57.83319733300005],[-61.69981848899988,57.818793036],[-61.717030402999875,57.79791901200004],[-61.722808397999955,57.78481679900016],[-61.675892706999925,57.791205145000085],[-61.65412350199995,57.78998444200006],[-61.6607559889999,57.77798086100013],[-61.65396074099988,57.77798086100013],[-61.66030839799992,57.76959870000017],[-61.6681208979999,57.763251044000135],[-61.688099738999874,57.75063711100007],[-61.683094855999855,57.75112539300015],[-61.66759192599994,57.75063711100007],[-61.67796790299994,57.727932033000044],[-61.69367428299989,57.72357819200012],[-61.71108964799987,57.72524648600013],[-61.74518795499998,57.713039455000064],[-61.766346808999884,57.720282294000086],[-61.78624426999996,57.73419830900018],[-61.80109615799992,57.74725983300005],[-61.82217363199995,57.75763580900014],[-61.82526607999995,57.76117584800012],[-61.82526607999995,57.76992422100001],[-61.82628333199991,57.77757396000014],[-61.830311652999875,57.78302643400017],[-61.83893795499998,57.78481679900016],[-61.85411536399996,57.777167059000035],[-61.864572719999835,57.763820705000015],[-61.87751217399994,57.75576406500009],[-61.90038001199986,57.764308986000025],[-61.88451087099991,57.78632233300011],[-61.800404425999886,57.84491608300006],[-61.78453528599996,57.846258856000034],[-61.74950110599988,57.83942291900002],[-61.73546301999991,57.82807038000006]]],[[[-61.92516028599994,57.896429755000106],[-61.9413142569999,57.874172268000095],[-61.886708136999914,57.874172268000095],[-61.8717341789999,57.84845612200002],[-61.871896938999946,57.83991120000012],[-61.880482550999965,57.82575104400008],[-61.89171301999997,57.81500885600017],[-61.917591925999965,57.80385976800015],[-61.93138587099989,57.79535553600011],[-61.959828253999916,57.78953685100008],[-61.99250240799994,57.80385976800015],[-62.025380011999935,57.823431708000115],[-62.054310675999936,57.83319733300005],[-62.06468665299993,57.82941315300003],[-62.087717251999926,57.81525299700011],[-62.09215247299988,57.815863348000065],[-62.09666907499993,57.82925039300006],[-62.10423743399988,57.83364492400015],[-62.105783657999915,57.83856842700011],[-62.09215247299988,57.85370514500012],[-62.04116777299986,57.89402903899999],[-62.011301235999895,57.90924713700015],[-61.98232988199991,57.915106512000094],[-61.93138587099989,57.915106512000094],[-61.921050584999875,57.909409898000135],[-61.92516028599994,57.896429755000106]]],[[[-77.66832434799989,58.24469635600003],[-77.69835364499994,58.24066803600006],[-77.73827063699989,58.25043366100001],[-77.94945227799991,58.32660553600008],[-77.94945227799991,58.33283112200003],[-77.92365475199989,58.333807684000114],[-77.91539466099991,58.33283112200003],[-77.92162024599986,58.33283112200003],[-77.81794186099994,58.30878327],[-77.69725501199989,58.25560130400011],[-77.66832434799989,58.250921942],[-77.66832434799989,58.24469635600003]]],[[[-67.53084201999994,58.29689722300013],[-67.5819779139999,58.27845345800016],[-67.63593720999992,58.29103717700012],[-67.66186497999988,58.32719138700007],[-67.65782377199992,58.364079378000135],[-67.63655719599987,58.402224789000066],[-67.59281628199989,58.422209096000145],[-67.5582897379999,58.41100254200008],[-67.52616662499989,58.34705647100013],[-67.53084201999994,58.29689722300013]]],[[[-78.60741126199986,58.63450755400011],[-78.6158748039999,58.630072333000136],[-78.62450110599991,58.628810940000115],[-78.63304602799991,58.630316473000086],[-78.64159094999985,58.63450755400011],[-78.64159094999985,58.62832265800016],[-78.62385006399995,58.61570872600008],[-78.48306230399993,58.55280182500003],[-78.45665442599994,58.546372789000095],[-78.45665442599994,58.53888580900015],[-78.63044186099992,58.59589264500006],[-78.68317623599992,58.62083567899999],[-78.67804928299992,58.627508856000034],[-78.6725154289999,58.631903387000115],[-78.66535396999984,58.63410065300012],[-78.65526282499987,58.63450755400011],[-78.65526282499987,58.641302802000055],[-78.67430579299989,58.64826080900003],[-78.6876521479999,58.66030508000016],[-78.69505774599988,58.67666250200007],[-78.69619706899991,58.69660065300014],[-78.68858801999997,58.68915436400008],[-78.68065344999991,58.683050848000086],[-78.6720271479999,58.67853424700002],[-78.66270911399995,58.67548248900014],[-78.65147864499994,58.66282786700007],[-78.61998450399994,58.64492422100001],[-78.60741126199986,58.63450755400011]]],[[[-78.63198808499988,58.79132721600003],[-78.62999426999994,58.78497955900009],[-78.6288142569999,58.77952708500005],[-78.6253962879999,58.777899481000034],[-78.62523352799994,58.77334219000009],[-78.62897701699987,58.77069733299999],[-78.63792883999989,58.772894598],[-78.64826412699989,58.77216217700005],[-78.65314693899995,58.77350495000014],[-78.6538793609999,58.77798086100002],[-78.65697180899988,58.780218817],[-78.68480383999994,58.78046295800014],[-78.69664466099991,58.77863190300015],[-78.70494544199988,58.77952708500005],[-78.70763098899997,58.78603750200015],[-78.70287024599986,58.79132721600003],[-78.69692949099993,58.79266998900012],[-78.69102942599991,58.79193756700008],[-78.68521074099993,58.78929271],[-78.6793513659999,58.78904857000005],[-78.67471269399988,58.79157135600017],[-78.67882239499994,58.79462311400007],[-78.6918839179999,58.79775625200013],[-78.68309485599994,58.8022321640001],[-78.65086829299989,58.80206940300006],[-78.63805091099997,58.79706452],[-78.64509029899995,58.79462311400007],[-78.63198808499988,58.79132721600003]]],[[[-78.88434811099995,58.809963283000016],[-78.88605709499987,58.808050848000065],[-78.8988337879999,58.814439194999984],[-78.90233313699991,58.81732819200003],[-78.90514075399994,58.821234442],[-78.90807044199987,58.823391018],[-78.91519120999993,58.8246931010001],[-78.92894446499993,58.82929108300015],[-78.93809973899992,58.83397044500007],[-78.94212805899988,58.83783600500006],[-78.94155839799993,58.843207098000114],[-78.93663489499997,58.84682851800009],[-78.93761145699995,58.86481354400002],[-78.92707271999987,58.865545966000134],[-78.91592363199996,58.85382721600016],[-78.90111243399988,58.83246491100003],[-78.89679928299998,58.82294342700011],[-78.88434811099995,58.809963283000016]]],[[[-69.07238934999992,58.962596066000074],[-69.12027897899992,58.95730195800009],[-69.11128128999991,58.97103306100014],[-69.0826447909999,58.99659621800004],[-69.06119749499993,59.01117469500003],[-68.9954867859999,59.01634455000005],[-68.98498982099991,59.005283175],[-68.9745609119999,58.98963279500005],[-69.01556438099996,58.972415206000015],[-69.07238934999992,58.962596066000074]]],[[[-80.53856360599994,59.09467194200012],[-80.54832923099988,59.09113190300014],[-80.57860266799989,59.092962958000115],[-80.58287512899989,59.098334052000084],[-80.56993567599989,59.10561758000009],[-80.55239824099992,59.110052802000084],[-80.53986568899984,59.10569896000008],[-80.53547115799995,59.09992096600012],[-80.53856360599994,59.09467194200012]]],[[[-69.19847571499992,59.14858633000016],[-69.16588785099992,59.14519280000012],[-69.1519444599999,59.13472397000008],[-69.1143351639999,59.14220012800003],[-69.10197057699995,59.13132321700006],[-69.08190562699994,59.112386674000085],[-69.0649660579999,59.094660715],[-69.06131108499991,59.07658107300012],[-69.10202745099994,59.066316676000106],[-69.08180085199989,59.06140590600013],[-69.12410858199988,59.046725601000055],[-69.14682373699995,59.037981327000075],[-69.1547519199999,59.02595014500018],[-69.17503821499994,59.017238674000154],[-69.17796790299985,59.01129791900002],[-69.21719316299988,58.994452216000035],[-69.23151607999995,58.980658270000035],[-69.2189021479999,58.96344635600009],[-69.23766028599994,58.95416901200004],[-69.25674394399994,58.960394598],[-69.29458574099996,58.983954169000135],[-69.30418860599994,58.963568427000084],[-69.32209225199989,58.95075104400002],[-69.3436173169999,58.94940827000014],[-69.36351477799991,58.96344635600009],[-69.35431881399995,58.97382233299999],[-69.33259029899997,58.9928246110001],[-69.32258053299998,59.00507233300005],[-69.32144120999996,59.009833075000145],[-69.32258053299998,59.028957424000126],[-69.31920325399997,59.032660223000086],[-69.3116755849999,59.036688544000135],[-69.30418860599994,59.04193756700012],[-69.29637610599985,59.060777085000076],[-69.28864498599995,59.064886786000116],[-69.28624426999991,59.06981028899998],[-69.29771887899994,59.083889065000115],[-69.33560136599988,59.11432526200018],[-69.35415605399987,59.14057038000003],[-69.33726966099988,59.146185614],[-69.30931555899986,59.14520905200014],[-69.29458574099996,59.1518415390001],[-69.23497473899997,59.153062242000104],[-69.19847571499992,59.14858633000016]]],[[[-80.4781794909999,59.45697663000009],[-80.48761959499984,59.44208405200011],[-80.51378333199997,59.410345770000056],[-80.51915442599994,59.392035223],[-80.52721106699995,59.37539297100007],[-80.54222571499989,59.37132396000002],[-80.55089270699989,59.38178131700008],[-80.53966223899988,59.40851471600008],[-80.54710852799988,59.40851471600008],[-80.52358964799988,59.43488190300009],[-80.51915442599994,59.44383372600011],[-80.52916419199991,59.44334544500013],[-80.53750566299988,59.44452545800006],[-80.5532934239999,59.45010000200006],[-80.49120032499991,59.484767971000146],[-80.47077389199983,59.49103424700009],[-80.47594153599994,59.48261139500014],[-80.47630774599995,59.47842031500012],[-80.47240149599986,59.47540924700011],[-80.46450761599988,59.47060781500012],[-80.46715247299997,59.464667059000085],[-80.47008216099988,59.461004950000145],[-80.47370357999995,59.45880768400014],[-80.4781794909999,59.45697663000009]]],[[[-80.55150305899986,59.64940013200005],[-80.56704667899996,59.646429755000135],[-80.57433020699995,59.65208567900013],[-80.57701575399994,59.65766022300012],[-80.58824622299994,59.66156647300012],[-80.58055579299992,59.66925690300015],[-80.54271399599988,59.683091539000046],[-80.53758704299986,59.68854401200009],[-80.51854407499988,59.694728908000165],[-80.51398678299991,59.69749583500011],[-80.51040605399996,59.69245026200018],[-80.51073157499987,59.683294989],[-80.52334550699996,59.674546617000125],[-80.55150305899986,59.64940013200005]]],[[[-80.39049231699991,59.68577708500014],[-80.39793860599988,59.68366120000003],[-80.40758216099994,59.685003973],[-80.40982011599993,59.68146393400003],[-80.41022701699984,59.6747500670001],[-80.41637122299991,59.66868724199998],[-80.42178300699987,59.66144440300015],[-80.42967688699994,59.652655341000084],[-80.4436742829999,59.64817942900014],[-80.4483943349999,59.65827057500008],[-80.43871008999986,59.67743561400006],[-80.42186438699986,59.69476959800014],[-80.39952551999991,59.70734284100014],[-80.38727779899995,59.71173737200002],[-80.38060462099988,59.71133047100004],[-80.3702693349999,59.708726304000116],[-80.37254798099985,59.70514557500014],[-80.38304602799994,59.70083242400016],[-80.38792883999992,59.69354889500012],[-80.39049231699991,59.68577708500014]]],[[[-80.22496497299991,59.73126862200011],[-80.21076412699989,59.72190989800008],[-80.16832434799991,59.716009833000136],[-80.14924068899984,59.71015045799999],[-80.15623938699991,59.702704169000114],[-80.15925045499992,59.697577216000106],[-80.15892493399991,59.69188060100011],[-80.15607662699995,59.682847398000106],[-80.16055253799993,59.682806708000115],[-80.16356360599991,59.68138255400005],[-80.16974850199989,59.67666250200012],[-80.20555579299992,59.66803620000003],[-80.22093665299985,59.66254303600003],[-80.23493404899992,59.652411200000145],[-80.23888098899991,59.64752838700017],[-80.24852454299986,59.63198476800009],[-80.2561742829999,59.62669505400011],[-80.26610266799989,59.624090887000094],[-80.2864477199999,59.62140534100003],[-80.30650794199994,59.615464585000026],[-80.31725012899994,59.61359284100005],[-80.32738196499992,59.61456940300011],[-80.34219316299986,59.61957428600006],[-80.34300696499989,59.62213776200014],[-80.33775794199991,59.627020575000024],[-80.33421790299994,59.6388207050001],[-80.3257543609999,59.64838288],[-80.30874589799993,59.65485260600009],[-80.29600989499997,59.66266510600017],[-80.30003821499994,59.67666250200012],[-80.28701738199996,59.68183014500015],[-80.27399654899997,59.680812893000095],[-80.26024329299986,59.67767975500003],[-80.24543209499987,59.67666250200012],[-80.24543209499987,59.682847398000106],[-80.24941972599996,59.68573639500014],[-80.25438391799992,59.69232819200012],[-80.25910396999993,59.697170315],[-80.24860592399995,59.702215887000044],[-80.24071204299989,59.71027252800015],[-80.23509680899988,59.72036367400013],[-80.23180091099994,59.73126862200011],[-80.22712154899992,59.725775458000086],[-80.22533118399994,59.72638580900003],[-80.22496497299991,59.73126862200011]]],[[[-63.985707160999965,59.77094147300012],[-63.96288001199985,59.75177643400014],[-63.97398841099988,59.74603913],[-63.99132239499997,59.727769273000106],[-64.00080318899998,59.723822333000115],[-64.05211341099991,59.72345612200011],[-64.06826738199996,59.71942780200014],[-64.10692298099991,59.70331452000006],[-64.12409420499995,59.699896552000055],[-64.13902747299989,59.70087311400014],[-64.16905676999994,59.71015045799999],[-64.14928137899992,59.721136786000145],[-64.14167232999998,59.723822333000115],[-64.15758216099991,59.73012929900006],[-64.17528235599991,59.73102448100015],[-64.19163977799991,59.733587958000065],[-64.20311438699986,59.74494049700005],[-64.19615637899997,59.76080963700014],[-64.19115149599992,59.767035223000114],[-64.18260657499991,59.77220286700013],[-64.16893469999988,59.773586330000015],[-64.15453040299991,59.769029039000074],[-64.14024817599991,59.76268138200014],[-64.12743079299987,59.75861237200017],[-64.1315811839999,59.768133856000176],[-64.13784745999996,59.77631256700008],[-64.1459041009999,59.782538153000026],[-64.15534420499992,59.786525783000016],[-64.13036048099988,59.84202708500008],[-64.12059485599985,59.854193427000055],[-64.10191809799997,59.86298248900012],[-64.07970130099991,59.8664411480001],[-64.05919348899997,59.863755601000044],[-64.04548092399995,59.854193427000055],[-64.04922441299995,59.8513044290001],[-64.05972245999993,59.84113190300017],[-64.05345618399988,59.830796617000075],[-64.03184973899988,59.80573151200015],[-64.07896887899989,59.799546617000104],[-64.05882727799985,59.78538646000008],[-63.985707160999965,59.77094147300012]]],[[[-79.99233964799996,59.872259833000086],[-79.98473059799991,59.86847565300014],[-79.97468014199983,59.87164948100011],[-79.96263587099992,59.87848541900003],[-79.94790605399993,59.881903387000044],[-79.93008378799996,59.87466054900004],[-79.92064368399994,59.86692942900011],[-79.90977942599994,59.86204661700004],[-79.89688066299993,59.860052802],[-79.88170325399994,59.86102936400008],[-79.89264889199993,59.846136786000116],[-79.90550696499994,59.83364492400001],[-79.9363500639999,59.813177802000055],[-79.95787512899992,59.80394114799999],[-79.96996008999992,59.800767320000105],[-79.98131262899992,59.799546617000104],[-79.98985755099991,59.795884507000046],[-80.01891028599991,59.77220286700013],[-80.06663977799985,59.76007721600005],[-80.09410559799991,59.75812409100008],[-80.10826575399992,59.764797268000144],[-80.09968014199988,59.77606842700013],[-80.08145097599993,59.78912995000012],[-80.07315019399994,59.80206940300011],[-80.09459387899989,59.813177802000055],[-80.09898841099997,59.80174388199999],[-80.10643469999985,59.796047268],[-80.11571204299989,59.79120514500011],[-80.1256404289999,59.782782294000086],[-80.13198808499992,59.77948639500014],[-80.13980058499992,59.77846914300009],[-80.14647376199987,59.77606842700013],[-80.14924068899984,59.7685000670001],[-80.14915930899986,59.75983307500008],[-80.15025794199991,59.75226471600014],[-80.15416419199991,59.74697500200007],[-80.16291256399987,59.74494049700005],[-80.17983964799996,59.74876536700004],[-80.17992102799994,59.75812409100008],[-80.12877356699988,59.82746002800006],[-80.10997473899992,59.84418366100009],[-80.09748287699992,59.851263739000125],[-80.06696529899997,59.858547268000144],[-80.04295813699994,59.87775299700011],[-80.02940833199997,59.882066148000106],[-80.02367102799991,59.883205471000124],[-80.01231848899994,59.887884833000065],[-80.00523841099997,59.888902085000105],[-80.00047766799986,59.885931708000115],[-79.99233964799996,59.872259833000086]]],[[[-64.6276749339999,60.48419830900015],[-64.61131751199989,60.476996161000116],[-64.60142981699997,60.46881745000011],[-64.60716712099995,60.457464911000145],[-64.5874731109999,60.45962148600013],[-64.56965084499993,60.45795319200011],[-64.56041419199997,60.44940827],[-64.56627356699991,60.430812893],[-64.53941809799991,60.426011460000105],[-64.52936764199995,60.41421133000016],[-64.52896074099993,60.396795966000084],[-64.53148352799988,60.37555573100009],[-64.52525794199991,60.37555573100009],[-64.49502519399991,60.3984235700001],[-64.48741614499997,60.40216705900003],[-64.43248450399997,60.40216705900003],[-64.42247473899988,60.397609768],[-64.42381751199989,60.386908270000056],[-64.43032792899987,60.37539297100012],[-64.43236243399991,60.372748114000146],[-64.43590247299989,60.36810944200012],[-64.44220943899992,60.36347077],[-64.46324622299994,60.355047919000135],[-64.46690833199992,60.35130442900011],[-64.46930904899995,60.34796784100008],[-64.47215735599988,60.344794012000115],[-64.47744706899996,60.341376044000114],[-64.47744706899996,60.33392975500015],[-64.44786536399991,60.31415436400003],[-64.43415279899989,60.301703192],[-64.42666581899991,60.28620026200018],[-64.47183183499996,60.301459052000055],[-64.51923580599988,60.31932200700011],[-64.59414628799996,60.347601630000085],[-64.62002519399996,60.355047919000135],[-64.64622962099992,60.35911692900011],[-64.70335852799988,60.36127350500003],[-64.72647050699993,60.36489492400006],[-64.75031490799992,60.37384674700009],[-64.8243708979999,60.415472723000065],[-64.85411536399991,60.440415757],[-64.86156165299988,60.46552155200009],[-64.82689368399991,60.48541901200017],[-64.80671139199995,60.486395575000145],[-64.72695878799992,60.477972723000015],[-64.68260657499988,60.480169989],[-64.65977942599997,60.484523830000064],[-64.64134680899994,60.49225495000009],[-64.6276749339999,60.48419830900015]]],[[[-68.07848059799991,60.58991120000008],[-68.02811690699986,60.582671488000145],[-67.99913107699989,60.58588941200004],[-67.98154974699989,60.56363794400014],[-67.94655395499987,60.53058418300004],[-67.90595803399994,60.50851664900009],[-67.88079833499995,60.496804559000125],[-67.8403256059999,60.48951911400003],[-67.82649431599992,60.465662786000124],[-67.84704416299991,60.41640755300015],[-67.88761897799992,60.37909245200016],[-67.90852529999992,60.376860177000125],[-67.93506997399993,60.34712096400009],[-67.96012587499989,60.33255985600011],[-67.95584596899988,60.30211712200007],[-67.97284732199998,60.290296099000145],[-67.98787833899992,60.289412904000145],[-68.00469278499992,60.295974529000134],[-68.06123732399996,60.29412336300008],[-68.07362287399988,60.28860488400009],[-68.08835388099986,60.278166383000055],[-68.11087016799992,60.26852107500003],[-68.13879023299998,60.266341092000125],[-68.17264524699993,60.257513005000156],[-68.18125932599989,60.23887654200003],[-68.20455374299983,60.22639476700006],[-68.24184015299994,60.21934711600004],[-68.28390272399989,60.217284771],[-68.32096725199992,60.197129027000024],[-68.37502843099992,60.19656790500006],[-68.41938190299987,60.209676318],[-68.43903429499994,60.259332816000075],[-68.41658549999997,60.30753018600002],[-68.37996159799988,60.37582991700005],[-68.33495294799991,60.432011848000016],[-68.30769936799993,60.469957285000085],[-68.29122722699992,60.506297764000074],[-68.24130644199994,60.58560592700004],[-68.13055740399994,60.59654540700002],[-68.10112336499995,60.59375253900005],[-68.07848059799991,60.58991120000008]]],[[[-64.65859941299992,60.60516998900005],[-64.68976803299992,60.587836005000085],[-64.70311438699993,60.59064362200003],[-64.71353105399993,60.597642320000105],[-64.71646074099996,60.604925848000114],[-64.69212805899988,60.61546458500008],[-64.63512122299997,60.66290924700009],[-64.61742102799988,60.686590887000115],[-64.61025956899994,60.69017161699999],[-64.59898841099994,60.688421942],[-64.59398352799991,60.68366120000008],[-64.59471594999994,60.677150783],[-64.59414628799996,60.669745184000114],[-64.59732011599993,60.65021393400003],[-64.60875403599988,60.630113023],[-64.62555904899989,60.61456940300009],[-64.65859941299992,60.60516998900005]]],[[[-78.22325598899997,60.83486562700001],[-78.22427324099993,60.82689036700004],[-78.22374426999994,60.813421942000055],[-78.22325598899997,60.81313711100013],[-78.23070227799994,60.81313711100013],[-78.34056555899991,60.77277252800017],[-78.29515540299991,60.779852606000034],[-78.27847245999988,60.779608466000084],[-78.27847245999988,60.77277252800017],[-78.33629309799991,60.75869375200013],[-78.50438391799989,60.73867422100006],[-78.58853105399993,60.714300848],[-78.67943274599989,60.71137116100009],[-78.69611568899992,60.71409739800005],[-78.69139563699991,60.720404364],[-78.6369522779999,60.74624258],[-78.62791907499991,60.752346096],[-78.6236873039999,60.759833075000174],[-78.62120520699995,60.768866278000175],[-78.61607825399994,60.77643463700003],[-78.60374915299991,60.779608466000084],[-78.25112870999989,60.827378648000135],[-78.24372311099992,60.83486562700001],[-78.23664303299994,60.833075262000115],[-78.23444576699987,60.83124420800015],[-78.2317602199999,60.83124420800015],[-78.22325598899997,60.83486562700001]]],[[[-69.97207877999995,60.952978720000104],[-69.97764268199995,60.92986044700016],[-70.00385575299988,60.93506641800014],[-70.00080897699988,60.96908397400012],[-70.0119464419999,60.99676388100012],[-69.98499866299991,61.01933619800009],[-69.95672484599989,61.03498002600004],[-69.9233961169999,61.03158912200014],[-69.92194070399992,61.01312434400002],[-69.91106216599991,60.999870311],[-69.95004104699986,60.9859391020001],[-69.94973398799996,60.96572931500013],[-69.97207877999995,60.952978720000104]]],[[[-71.51288273599991,61.299627169000175],[-71.55685595899993,61.29583647600005],[-71.58639617999992,61.301990684000046],[-71.58556105999992,61.323891263000135],[-71.56097542899988,61.33343559700007],[-71.48781845899987,61.33711232000009],[-71.48399600799988,61.31955458600005],[-71.48649490999989,61.30189448],[-71.51288273599991,61.299627169000175]]],[[[-64.79214433499993,61.622503973000114],[-64.77798417899993,61.61847565300015],[-64.76121985599991,61.62311432500009],[-64.74266516799989,61.63080475500002],[-64.72325598899988,61.63613515800007],[-64.72325598899988,61.62872955900018],[-64.73753821499989,61.622503973000114],[-64.73753821499989,61.615668036000024],[-64.68415279899992,61.61847565300015],[-64.66860917899993,61.615668036000024],[-64.65758216099988,61.610581772999986],[-64.64997311099995,61.60472239800005],[-64.64997311099995,61.599269924],[-64.66177324099989,61.59520091400004],[-64.67027747299994,61.587591864],[-64.70152747299991,61.56561920799999],[-64.71361243399991,61.56102122600005],[-64.71996008999994,61.557766018],[-64.72337805899986,61.550482489],[-64.72354081899991,61.543280341000134],[-64.7201228509999,61.53998444200012],[-64.70018469999991,61.539780992000075],[-64.69127356699988,61.53803131700008],[-64.68228105399996,61.53375885600015],[-64.71703040299991,61.513251044000114],[-64.68594316299989,61.51300690300014],[-64.67503821499994,61.50800202000012],[-64.67926998599994,61.495266018000066],[-64.68468176999991,61.486761786000145],[-64.69102942599993,61.468898830000064],[-64.69660396999986,61.457993882],[-64.72118079299986,61.43862539300009],[-64.78262285099993,61.42413971600003],[-64.7996313139999,61.410223700000145],[-64.78661048099991,61.39533112200008],[-64.80280514199995,61.37689850500006],[-64.84056555899994,61.351548570000126],[-64.85118567599996,61.33372630400005],[-64.87511145699995,61.33071523600016],[-64.90038001199989,61.34064362200015],[-64.91502844999991,61.361802476000044],[-64.93248450399994,61.35390859600009],[-64.95543372299993,61.34760163000014],[-64.97541256399992,61.34935130400014],[-64.98395748599995,61.36554596600008],[-64.97716223899991,61.379095770000056],[-64.96080481699991,61.38629791900009],[-64.94066321499989,61.392482815000065],[-64.92247473899987,61.40277741100009],[-64.97203528599991,61.416449286000116],[-65.07579505099989,61.41860586100002],[-65.12108313699991,61.43695709800006],[-65.12108313699991,61.44432200700005],[-65.10948645699989,61.44257233300005],[-65.09935462099993,61.44391510600014],[-65.09154212099995,61.44887929900001],[-65.08698482999992,61.457993882],[-65.13609778599994,61.45624420799999],[-65.16079667899992,61.45897044500007],[-65.17951412699989,61.46857330900015],[-65.18468176999991,61.476792710000055],[-65.18830318899995,61.49396393400017],[-65.19310462099993,61.502386786000116],[-65.20348059799993,61.50702545800006],[-65.2187393869999,61.50775788000008],[-65.24811764199991,61.50580475500015],[-65.26301021999987,61.50934479400011],[-65.27293860599988,61.5175641950001],[-65.28172766799995,61.526922919000135],[-65.2930802069999,61.53375885600015],[-65.30801347599996,61.5366071640001],[-65.35448157499991,61.53998444200012],[-65.37629146999987,61.548244533000016],[-65.41930091099991,61.571519273000135],[-65.42894446499989,61.57469310099999],[-65.44806881399995,61.58584219],[-65.47036699099988,61.590521552000105],[-65.48582923099991,61.599310614],[-65.48424231699997,61.622503973000114],[-65.47061113199993,61.64435455900015],[-65.45213782499991,61.656683661000116],[-65.42918860599991,61.66225820500012],[-65.04662024599995,61.697658596000124],[-65.02061926999995,61.695135809000114],[-64.97569739499997,61.680487372000115],[-64.71703040299991,61.66347890800012],[-64.73509680899994,61.64996979400017],[-64.77383378799986,61.634833075000174],[-64.79214433499993,61.622503973000114]]],[[[-65.78453528599988,61.831122137000065],[-65.77651933499993,61.82819245000004],[-65.76878821499992,61.831691799],[-65.7550349599999,61.841782944999984],[-65.73778235599991,61.84747955900014],[-65.72329667899994,61.84430573100009],[-65.71764075399994,61.82794830900017],[-65.71182206899991,61.81801992400006],[-65.70360266799992,61.79584381700003],[-65.7032771479999,61.79315827000011],[-65.67857825399989,61.768744208000086],[-65.67601477799988,61.759711005000085],[-65.69151770699992,61.750392971000124],[-65.72118079299995,61.75755442900008],[-65.75230872299994,61.77265045800008],[-65.77220618399994,61.78701406500015],[-65.78648841099994,61.76463450700014],[-65.81354732999995,61.759711005000085],[-65.87523352799988,61.766546942],[-65.89997311099995,61.77289459800012],[-65.92943274599993,61.78701406500015],[-65.94640051999991,61.801092841000084],[-65.89142818899992,61.823065497000115],[-65.8409724599999,61.853176174000126],[-65.79149329299986,61.872503973000065],[-65.75234941299993,61.85586172100012],[-65.76178951699993,61.85199616100012],[-65.79332434799993,61.845038153000026],[-65.7908422519999,61.837591864000146],[-65.78453528599988,61.831122137000065]]],[[[-72.0153884819999,61.85261197400009],[-72.05894519199992,61.85050341300013],[-72.10593696099997,61.87072091300017],[-72.13083347799996,61.889038515],[-72.11296772599994,61.904632041000056],[-72.0914252529999,61.894740626000086],[-72.02154657199988,61.87736161600019],[-71.99385682599987,61.87065746400005],[-71.97343957399997,61.858942283000104],[-72.0153884819999,61.85261197400009]]],[[[-93.04596920499992,61.92584870000003],[-93.02546139199985,61.91669342700014],[-93.02830969999991,61.91290924700004],[-93.0322159499999,61.90302155200011],[-92.98192298099985,61.889471747000144],[-92.96397864499991,61.889390367000075],[-92.98412024599993,61.86823151200015],[-93.0201309889999,61.84467194200003],[-93.05890865799992,61.82990143400003],[-93.08751380099991,61.835394598000065],[-93.1018774079999,61.84658437700007],[-93.12938391799992,61.87470123900006],[-93.14830481699994,61.88320547100009],[-93.19538326699987,61.877183335],[-93.21605383999989,61.881659247000144],[-93.22468014199987,61.90643952000012],[-93.2154841789999,61.91986725500011],[-93.1942032539999,61.924790757000075],[-93.10407467399997,61.922267971000146],[-93.08478756399985,61.92597077],[-93.06639563699991,61.93781159100015],[-93.04596920499992,61.92584870000003]]],[[[-92.79841330999997,61.94801928100015],[-92.77187474599991,61.93505477800012],[-92.7874557499999,61.92878261800014],[-92.81707758499988,61.93659414300004],[-92.83760989199993,61.925969668],[-92.86329906899996,61.93047224500005],[-92.87496630999993,61.938678270000096],[-92.85066130099995,61.94769920700015],[-92.79841330999997,61.94801928100015]]],[[[-65.06651770699995,61.930365302000084],[-65.0299373039999,61.88792552300011],[-65.01886959499987,61.856146552000055],[-65.00487219999991,61.866766669000086],[-64.98908443899995,61.886419989000146],[-64.97777258999989,61.896877346000124],[-64.9603572259999,61.88418203300007],[-64.9573868479999,61.858221747000165],[-64.95759029899995,61.83270905200008],[-64.95010331899988,61.821112372000144],[-64.93895423099988,61.82339101800012],[-64.91808020699989,61.83315664300006],[-64.90542558499992,61.835394598000065],[-64.89195716099992,61.832831122000144],[-64.88487708199997,61.82615794500002],[-64.87409420499998,61.80744049700002],[-64.84044348899997,61.781398830000164],[-64.83311926999994,61.77334219000012],[-64.82787024599989,61.76117584800013],[-64.83055579299995,61.75755442900008],[-64.83901933499989,61.75584544500008],[-64.87433834499993,61.73436107000004],[-64.90147864499994,61.727362372000144],[-64.92992102799985,61.72711823100011],[-64.95726477799992,61.732367255],[-65.03783118399988,61.768255927],[-65.14732825399994,61.78392161700007],[-65.15514075399994,61.79315827000011],[-65.15982011599993,61.80451080900009],[-65.16954505099991,61.81492747599999],[-65.18126380099989,61.81883372599999],[-65.20433508999994,61.82099030199999],[-65.2167048819999,61.82794830900017],[-65.22203528599994,61.83454010600015],[-65.24925696499984,61.87811920800008],[-65.25519771999987,61.890855210000105],[-65.25324459499993,61.90387604400011],[-65.24120032499991,61.92039622599999],[-65.23167883999992,61.92401764500015],[-65.21886145699989,61.923895575000174],[-65.20783443899992,61.925523179000024],[-65.20303300699996,61.93406810100011],[-65.1985570949999,61.94521719000014],[-65.18757076699991,61.950262762000186],[-65.16242428299995,61.951483466000084],[-65.11318925699993,61.94403717700011],[-65.06651770699995,61.930365302000084]]],[[[-72.3281161079999,62.016037659000105],[-72.3523845529999,62.000292496000114],[-72.39381521199992,62.01272416900012],[-72.44064749999993,62.02684660200013],[-72.46240092199992,62.03665243000001],[-72.41213996999994,62.0390612020001],[-72.38422098299989,62.03239929400008],[-72.3281161079999,62.016037659000105]]],[[[-92.63612815099992,62.04044195400003],[-92.65284610399989,62.0265392480001],[-92.68867279799994,62.041877325000044],[-92.69378093899991,62.05701773],[-92.70089782499987,62.074634824000064],[-92.6416995709999,62.06065567700009],[-92.63612815099992,62.04044195400003]]],[[[-92.27188066299988,62.407375393000095],[-92.24144446499992,62.39862702000003],[-92.14150956899994,62.40395742400007],[-92.14150956899994,62.396470445000105],[-92.16144771999993,62.396470445000105],[-92.22883053299992,62.362372137000094],[-92.24120032499988,62.35895416900008],[-92.26284745999996,62.365464585],[-92.32591712099986,62.3572451840001],[-92.35387122299991,62.362372137000094],[-92.31932532499991,62.38275788],[-92.30028235599991,62.38983795800014],[-92.2787166009999,62.39032623900011],[-92.29971269399994,62.404242255000106],[-92.32408606699988,62.401841539000074],[-92.34984290299994,62.393784898000135],[-92.37490800699993,62.39032623900011],[-92.37490800699993,62.396470445000105],[-92.3624161449999,62.40037669500011],[-92.3556208979999,62.40623607000005],[-92.34984290299994,62.412543036],[-92.34019934799997,62.41762929900001],[-92.32347571499994,62.41966380400005],[-92.30500240799992,62.41791413000005],[-92.28701738199987,62.41347890800007],[-92.27188066299988,62.407375393000095]]],[[[-79.44041907499988,62.37978750200007],[-79.43545488199993,62.37116120000017],[-79.42491614499995,62.346869208],[-79.41930091099997,62.34186432500014],[-79.40892493399988,62.33930084800014],[-79.36839758999994,62.32143789300006],[-79.36278235599985,62.31460195500016],[-79.35016842399995,62.29462311400009],[-79.34044348899991,62.286607164000046],[-79.32664954299992,62.28237539300004],[-79.2955623039999,62.27704498900014],[-79.28246008999994,62.26992422100001],[-79.26573645699992,62.24982330900014],[-79.26382402299996,62.23554108300006],[-79.26866614499991,62.22199127800009],[-79.27220618399991,62.2047386740001],[-79.26732337099995,62.163275458000086],[-79.26952063699991,62.145209052000055],[-79.28246008999994,62.12616608300005],[-79.31517493399986,62.090806382000046],[-79.32774817599994,62.07046133000015],[-79.33429928299992,62.04767487200002],[-79.33372962099986,62.03607819200012],[-79.32795162699992,62.01593659100017],[-79.32599850199995,61.988430080000136],[-79.3301488919999,61.99046458500008],[-79.34357662699989,61.992417710000105],[-79.35179602799988,61.994696356000084],[-79.36750240799995,62.004461981000034],[-79.37832597599996,62.00674062700001],[-79.38638261599988,62.002183335000055],[-79.39073645699997,61.99184804900015],[-79.39509029899996,61.9713402360001],[-79.4027400379999,61.95807526200014],[-79.41038977799994,61.95075104400014],[-79.42983964799993,61.93781159100015],[-79.44078528599991,61.92719147300003],[-79.44635982999989,61.91815827],[-79.45653235599985,61.896877346000124],[-79.47398841099991,61.880601304],[-79.51829993399986,61.848089911000116],[-79.51919511599993,61.835394598000065],[-79.52281653599991,61.82453034100018],[-79.5279841789999,61.814032294000114],[-79.53547115799998,61.805405992000104],[-79.53745531299992,61.78741402600012],[-79.5397029289999,61.80060455900012],[-79.54081106499984,61.77722810400003],[-79.54847553299993,61.7595384800001],[-79.56330737599984,61.74239703500013],[-79.58489035399995,61.72141535100015],[-79.61644446499994,61.704413153000175],[-79.63898678299992,61.66054922100012],[-79.65123450399989,61.65363190300003],[-79.68879146999988,61.62588125200012],[-79.72443600199995,61.612250067],[-79.7337947259999,61.604803778000026],[-79.75023352799987,61.585923569999984],[-79.75885982999998,61.58218008000015],[-79.81029212099989,61.57404205900003],[-79.83381100199993,61.57306549700017],[-79.85440019399988,61.58218008000015],[-79.85606848899988,61.58559804900006],[-79.8585505849999,61.59642161700007],[-79.86188717399995,61.601385809000114],[-79.86921139199984,61.606634833],[-79.88292395699997,61.61220937700001],[-79.88914954299992,61.615668036000024],[-79.92332923099991,61.649847723],[-79.95002193899984,61.68329498900005],[-79.96031653599997,61.690130927000084],[-79.97057044199988,61.693304755000135],[-80.00617986699986,61.711274291000116],[-80.04087207599991,61.71728191400008],[-80.05904832199985,61.73511814100005],[-80.05988521999993,61.74603913000014],[-80.11501589699995,61.760880924000055],[-80.13795484699997,61.769479658000094],[-80.18039832699989,61.774256589000096],[-80.20445716099997,61.79010651200004],[-80.21621660099993,61.80084870000014],[-80.22255943599993,61.809363992000115],[-80.21886084399998,61.82124736400014],[-80.2413113319999,61.83149720199999],[-80.26109121799993,61.8562984410001],[-80.25910396999993,61.889390367000075],[-80.27367102799985,61.905218817],[-80.28197180899991,61.91754791900014],[-80.2855525379999,61.930365302000084],[-80.26252524699993,61.981057313000015],[-80.25910691699988,62.01541014100003],[-80.2515412249999,62.05119563600011],[-80.2185919619999,62.09124565500015],[-80.21497305199989,62.13765847300006],[-80.15827463299989,62.19935992900012],[-80.1237779629999,62.220274785000086],[-80.07458554199988,62.24619587500003],[-80.03454153299987,62.277937761000096],[-79.98922957999991,62.30844035000013],[-79.97655691099988,62.34125445800014],[-79.95207790799986,62.36459236600005],[-79.9345649139999,62.37804964000015],[-79.91506703799985,62.38617844000014],[-79.8672756759999,62.400923411000136],[-79.83079993399994,62.410793361000096],[-79.81737219999985,62.40717194200011],[-79.80467688699987,62.40021393400006],[-79.79051673099985,62.39594147300012],[-79.75792395699989,62.404852606000176],[-79.74063066299989,62.405747789000074],[-79.72398841099992,62.40289948100003],[-79.71104895699995,62.396470445000105],[-79.7203669909999,62.39130280200011],[-79.72264563699986,62.38475169500013],[-79.71727454299992,62.37921784100011],[-79.70360266799987,62.376654364],[-79.68907630099994,62.37958405200012],[-79.66559811099994,62.39337799700003],[-79.64541581899994,62.39980703300014],[-79.62132727799991,62.41429271],[-79.61107337099988,62.41762929900001],[-79.55858313699994,62.42039622600007],[-79.5397029289999,62.41762929900001],[-79.54588782499988,62.41762929900001],[-79.53490149599992,62.41364166900005],[-79.51545162699992,62.40155670800014],[-79.50499426999994,62.396470445000105],[-79.4883520169999,62.39313385600018],[-79.47105872299989,62.39166901200012],[-79.45466061099998,62.38837311400009],[-79.44041907499988,62.37978750200007]]],[[[-92.42003333199987,62.39691803600004],[-92.43114173099991,62.395086981000034],[-92.44322669199991,62.396470445000105],[-92.53880774599989,62.38287995000014],[-92.56615149599989,62.38442617400001],[-92.5910538399999,62.391831772999986],[-92.59923255099991,62.40009186400008],[-92.57664954299995,62.40395742400007],[-92.55785071499989,62.41071198100012],[-92.54259192599991,62.423814194999984],[-92.52892005099987,62.43301015800016],[-92.49282792899993,62.41714101800012],[-92.4290665359999,62.4146996110001],[-92.40221106699991,62.410793361000096],[-92.41022701699985,62.40204498900012],[-92.42003333199987,62.39691803600004]]],[[[-64.69444739499994,62.536078192],[-64.68602454299989,62.533677476000044],[-64.67735755099991,62.53583405200005],[-64.65807044199997,62.545233466000084],[-64.64842688699991,62.547308661],[-64.55256100199998,62.541083075000145],[-64.55223548099985,62.55971914300012],[-64.52623450399997,62.561224677],[-64.46324622299994,62.547308661],[-64.46666419199997,62.52667877800017],[-64.40440833199997,62.53595612200002],[-64.38060462099989,62.52749258000009],[-64.38556881399992,62.52045319200011],[-64.38125566299993,62.51382070500015],[-64.37157141799989,62.508612372000144],[-64.3601781889999,62.50576406500013],[-64.3601781889999,62.499579169000135],[-64.4842830069999,62.48582591400013],[-64.4842830069999,62.47842031500016],[-64.46300208199992,62.47280508000012],[-64.41706295499995,62.46979401200004],[-64.39492753799996,62.46478913],[-64.42552649599989,62.444525458],[-64.44517981699994,62.436997789000124],[-64.46007239499988,62.44122955900015],[-64.46898352799994,62.445502020000056],[-64.48363196499994,62.448309637000115],[-64.4976293609999,62.44855377800015],[-64.50475012899994,62.44489166900012],[-64.50039628799996,62.43919505400011],[-64.4700414699999,62.41762929900001],[-64.51573645699992,62.39524974200001],[-64.54344641799989,62.38641998900014],[-64.56932532499991,62.38287995000014],[-64.57579505099991,62.38092682500012],[-64.5882869129999,62.37213776200004],[-64.59414628799996,62.36981842700008],[-64.60488847599987,62.37030670800006],[-64.62437903599995,62.375433661000095],[-64.65591386599996,62.37881094],[-64.69587154899992,62.38812897300015],[-64.78091386599993,62.393011786000116],[-64.92296301999997,62.41950104400008],[-64.95213782499991,62.43537018400012],[-64.94298255099994,62.459173895],[-64.95714270699995,62.46417877800006],[-64.96349036399988,62.46478913],[-64.93224036399991,62.48932526200012],[-64.88634192599994,62.49664948100003],[-64.79214433499993,62.492743231000034],[-64.8061417309999,62.5031598980001],[-64.85171464799996,62.514634507000075],[-64.86782792899993,62.52749258000009],[-64.84166419199988,62.556057033000066],[-64.80134029899992,62.5685082050001],[-64.7564998039999,62.567084052000105],[-64.71703040299991,62.554144598000114],[-64.69444739499994,62.536078192]]],[[[-77.86058508999989,62.55048248900006],[-77.93244381399995,62.547308661],[-78.08702551999988,62.560980536000145],[-78.1056208979999,62.565252997000144],[-78.1133520169999,62.57465241100009],[-78.10871334499986,62.58405182500008],[-78.09044348899991,62.588324286000116],[-77.88695227799988,62.59918854400008],[-77.85391191299993,62.588324286000116],[-77.8363337879999,62.562323309000035],[-77.86058508999989,62.55048248900006]]],[[[-77.75348873599998,62.59967682500008],[-77.73314368399988,62.59027741100005],[-77.72297115799992,62.588324286000116],[-77.63951575399994,62.59218984600004],[-77.62051347599994,62.588324286000116],[-77.64915930899991,62.56830475500014],[-77.66563880099991,62.56134674700014],[-77.69294186099998,62.56769440300008],[-77.71080481699994,62.55975983300011],[-77.72899329299995,62.54840729400014],[-77.74404863199996,62.541083075000145],[-77.76207434799989,62.540025132],[-77.78473873599995,62.54230377800015],[-77.80410722599996,62.54816315300011],[-77.81236731699994,62.55756256700012],[-77.81468665299991,62.570705471000096],[-77.82042395699989,62.58104075699999],[-77.8273005849999,62.590969143],[-77.83348548099985,62.602606512000094],[-77.82591712099992,62.60199616100014],[-77.8189998039999,62.60065338700014],[-77.81248938699991,62.59857819200015],[-77.80614173099988,62.59577057500009],[-77.79503333199995,62.59625885600017],[-77.7723282539999,62.60162995000003],[-77.76455644399991,62.602606512000094],[-77.75348873599998,62.59967682500008]]],[[[-64.88414466099994,62.55662669500004],[-64.9020076159999,62.554144598000114],[-64.92223059799994,62.55536530200013],[-64.93248450399994,62.554510809000035],[-64.93984941299996,62.550726630000106],[-64.95287024599995,62.540025132],[-64.96060136599996,62.535549221000124],[-64.96690833199989,62.533677476000044],[-65.06159420499998,62.532782294000164],[-65.11440995999996,62.53847890800013],[-65.14159094999988,62.554144598000114],[-65.08307857999992,62.559393622000115],[-65.06993567599994,62.56468333499999],[-65.06012936099992,62.574286200000145],[-65.04942786399991,62.58266836100002],[-65.03783118399988,62.58974844000009],[-65.02497311099995,62.59577057500009],[-64.99478105399993,62.60370514500014],[-64.95400956899988,62.608547268000116],[-64.91454016799992,62.6069196640001],[-64.88833574099988,62.59577057500009],[-64.84056555899994,62.582098700000145],[-64.86851966099997,62.56313711100014],[-64.88414466099994,62.55662669500004]]],[[[-91.57632402299993,62.63222890800016],[-91.57510331899994,62.62441640800016],[-91.58604895699989,62.62616608300006],[-91.66966712099995,62.65424225500006],[-91.68907630099994,62.67084381700012],[-91.67943274599988,62.671942450000145],[-91.6707250639999,62.67104726800006],[-91.66266842399993,62.668198960000105],[-91.65493730399996,62.66400788],[-91.60619055899994,62.656073309000035],[-91.5928848949999,62.65094635600011],[-91.58413652299993,62.643133856000034],[-91.57632402299993,62.63222890800016]]],[[[-91.04482988199992,62.68256256700001],[-90.98399817599991,62.66400788],[-90.98884029899989,62.65912506700012],[-90.99315344999991,62.658840236000096],[-91.00446529899997,62.66400788],[-91.14781653599991,62.66400788],[-91.20156816299996,62.676418361000046],[-91.21983801999994,62.678290106000084],[-91.25422115799998,62.676459052000105],[-91.2709854809999,62.68008047100006],[-91.27135169199991,62.69196198100003],[-91.24657141799986,62.699896552],[-91.13414466099997,62.68451569200015],[-91.04482988199992,62.68256256700001]]],[[[-74.4481501939999,62.72549062700006],[-74.43980872299994,62.72504303600008],[-74.42137610599991,62.726996161000116],[-74.41344153599994,62.72549062700006],[-74.39830481699994,62.71507396000008],[-74.39220130099994,62.7084821640001],[-74.40054277299993,62.702337958000115],[-74.39452063699991,62.69501373900012],[-74.38434811099998,62.687811591000084],[-74.37559973899991,62.68451569200015],[-74.15274003799988,62.69196198100003],[-74.13687089799996,62.68984609600004],[-74.10602779899988,62.6804059920001],[-74.03246008999992,62.67536041900017],[-74.01622473899997,62.67084381700012],[-74.00153561099995,62.65875885600012],[-73.96751868399994,62.61810944200012],[-73.96471106699987,62.60944245000003],[-74.11864173099988,62.602606512000094],[-74.37559973899991,62.63446686400012],[-74.40721594999988,62.64354075700014],[-74.43199622299994,62.65704987200011],[-74.44416256399992,62.66205475500006],[-74.53209387899987,62.668890692000055],[-74.54723059799989,62.67454661700007],[-74.5670466789999,62.68683502800011],[-74.65306555899988,62.71930573100009],[-74.63243567599994,62.729437567000055],[-74.56427975199992,62.73908112200003],[-74.5419001939999,62.75096263200008],[-74.53014075399994,62.75336334800013],[-74.5177302729999,62.752386786000145],[-74.49461829299986,62.74648672100002],[-74.48176021999984,62.74591705900003],[-74.47614498599992,62.739894924000126],[-74.46751868399991,62.733832098000114],[-74.45759029899992,62.72870514500012],[-74.4481501939999,62.72549062700006]]],[[[-70.7886449859999,62.84153880400011],[-70.61108622099991,62.797949163],[-70.55577573099993,62.777762752],[-70.49249324199988,62.76695743400002],[-70.47362219999991,62.75039297100001],[-70.44196529899995,62.74249909100003],[-70.41307532499991,62.73151276200018],[-70.39757239499991,62.71930573100009],[-70.4186905589999,62.71865469000015],[-70.42552649599995,62.71930573100009],[-70.42552649599995,62.71246979400009],[-70.38487708199995,62.69550202],[-70.32666003299991,62.68651160399999],[-70.35150379599989,62.676169496000135],[-70.37330199699994,62.666557191],[-70.35301673099991,62.663885809000035],[-70.32258053299995,62.66205475500006],[-70.29945907399994,62.66388506700015],[-70.27496364099991,62.65736525300018],[-70.25625593799992,62.637143119000044],[-70.24058997299994,62.615627346000096],[-70.19947183999997,62.610137074000036],[-70.17705041499997,62.58998812200012],[-70.19404764699988,62.56753608000003],[-70.23083332299984,62.550923143000105],[-70.2760659169999,62.54194752200008],[-70.3619819249999,62.526864932000116],[-70.43887285099996,62.533677476000044],[-70.56236731699995,62.541083075000145],[-70.58556067599991,62.54535553600005],[-70.62486731699991,62.564154364],[-70.64464270699992,62.56842682500012],[-70.65428626199991,62.565130927000084],[-70.66942298099991,62.550604559000035],[-70.68224036399994,62.547308661],[-70.72789466099997,62.553412177],[-70.74054928299992,62.55756256700012],[-70.72541609199996,62.569025939000134],[-70.72800817799991,62.58078472400014],[-70.73338782499991,62.59577057500009],[-70.79067833699992,62.60283240300006],[-70.82044954399993,62.62661280600016],[-70.81708156699996,62.6732460380001],[-70.84532630099987,62.699123440000065],[-70.8665258449999,62.72003815300003],[-70.92516028599991,62.74591705900003],[-70.90892493399988,62.752427476000136],[-70.89024817599989,62.754624742000125],[-70.87205969999991,62.752590236000096],[-70.85692298099991,62.74591705900003],[-70.85008704299987,62.75336334800013],[-70.8361710279999,62.747626044000135],[-70.81456458199992,62.74408600500006],[-70.79271399599986,62.74420807500003],[-70.77806555899986,62.74966054900006],[-70.77098548099988,62.76162344],[-70.77399654899989,62.77130768400014],[-70.78502356699994,62.77777741100005],[-70.80231686099995,62.78009674700003],[-70.87140865799994,62.77277252800003],[-70.90733801999993,62.77484772300014],[-70.95962480399992,62.803168036],[-70.99697831899991,62.811712958000115],[-71.03465735599988,62.813299872000144],[-71.07249915299991,62.80019765800007],[-71.09459387899992,62.799261786],[-71.15729732999988,62.80345286700013],[-71.16856848899988,62.80719635600015],[-71.17967688699991,62.81484609600009],[-71.14736894399988,62.825628973],[-71.0686742829999,62.820257880000135],[-71.03506425699987,62.82916901200017],[-71.14281165299994,62.83893463700012],[-71.1974177729999,62.8502464860001],[-71.23704993399993,62.8731957050001],[-71.23595130099989,62.88641998900011],[-71.20815995999993,62.88873932500009],[-70.7886449859999,62.84153880400011]]],[[[-66.34254113299993,62.849552530000054],[-66.41058775399998,62.84826604900012],[-66.49482125799994,62.87736287000008],[-66.56904397499994,62.914832453000066],[-66.5619963049999,62.93105834300011],[-66.43846030599991,62.89526208900005],[-66.36325300299988,62.870607802],[-66.34254113299993,62.849552530000054]]],[[[-82.10960852799988,62.96849192900014],[-81.93455969999988,62.95498281500007],[-81.8972875639999,62.944891669000086],[-81.86237545499998,62.924750067000055],[-81.88011633999989,62.912420966000106],[-81.89826412699998,62.896551825000174],[-81.90859941299988,62.877508856000084],[-81.9033096999999,62.85578034100003],[-81.92931067599989,62.84992096600016],[-81.94155839799996,62.84467194200008],[-81.95173092399989,62.83535390800012],[-81.9352921209999,62.82697174700009],[-81.93927975199998,62.817287502000134],[-81.9647517569999,62.801214911000145],[-81.94200598899994,62.77773672100007],[-81.93004309799991,62.76215241100009],[-81.92373613199987,62.74591705900003],[-81.92756100199989,62.72931549700008],[-81.93980872299994,62.711615302000084],[-81.9569392569999,62.69765859600001],[-81.99583899599989,62.686509507],[-82.03807532499991,62.66266510600013],[-82.07713782499988,62.65180084800012],[-82.13670813699989,62.615627346000096],[-82.16340084499993,62.60789622599999],[-82.29596920499992,62.58515045800014],[-82.31395423099988,62.5715192730001],[-82.3445531889999,62.56443919500004],[-82.36335201699984,62.55467357000011],[-82.3933813139999,62.530585028000175],[-82.40298417899987,62.51723867400007],[-82.42467200399994,62.472235419000164],[-82.62267005099991,62.396470445000105],[-82.74669348899994,62.310532945000105],[-82.8979386059999,62.247503973000086],[-83.06615149599988,62.18716054900015],[-83.13459225199995,62.17658112200009],[-83.14712480399994,62.18109772300015],[-83.15615800699987,62.19065989800004],[-83.16779537699996,62.208726304000045],[-83.17821204299985,62.21841054900004],[-83.19896399599986,62.22955963700004],[-83.25739498599992,62.24909088700012],[-83.28062903599995,62.252508856000034],[-83.41779537699992,62.23944733300005],[-83.67300370999996,62.14508698100009],[-83.70518958199992,62.14350006700006],[-83.71939042899993,62.16063060099999],[-83.71324622299993,62.23944733300005],[-83.72484290299985,62.28563060100008],[-83.75145423099991,62.310044664000095],[-83.9100235669999,62.39524974200001],[-83.93980872299991,62.423814194999984],[-83.93911699099988,62.459173895],[-83.9069718089999,62.49140045800014],[-83.71324622299993,62.56842682500012],[-83.66909745999996,62.60789622599999],[-83.66002356699997,62.63133372600005],[-83.65461178299992,62.636664130000106],[-83.64199785099993,62.638983466000084],[-83.58315995999993,62.668646552000105],[-83.56550045499992,62.682277736000074],[-83.55284583199995,62.69969310100014],[-83.54816646999984,62.722357489],[-83.55134029899992,62.733303127000156],[-83.55687415299994,62.74176666900011],[-83.55894934799993,62.75071849200013],[-83.54450436099988,62.77391185100008],[-83.5344945949999,62.80801015800007],[-83.5198461579999,62.82636139500011],[-83.48086503799993,62.84552643400009],[-83.44273841099994,62.87811920800014],[-83.41869055899991,62.89227936400006],[-83.29645748599988,62.930894273000135],[-83.28742428299988,62.93154531500009],[-83.28018144399995,62.924750067000055],[-83.27261308499989,62.919989325000145],[-83.26353919199991,62.91787344000015],[-83.23058020699995,62.91567617400015],[-83.20881100199998,62.90851471600011],[-83.19139563699991,62.89581940300014],[-83.17137610599985,62.87689850500012],[-83.11888587099989,62.84723541900008],[-83.06041419199991,62.841986395],[-83.00096594999988,62.852362372000115],[-82.7393692699999,62.93838125200001],[-82.6954646479999,62.94521719000012],[-82.60594641799989,62.94603099200013],[-82.42048092399992,62.92796458500011],[-82.37629146999984,62.93838125200001],[-82.38101152299996,62.94708893400017],[-82.3821508449999,62.954779364],[-82.37877356699997,62.96112702000012],[-82.37002519399991,62.96564362200009],[-82.37629146999984,62.96564362200009],[-82.35309811099991,62.96600983300002],[-82.32713782499991,62.97138092700005],[-82.30186926999997,62.980047919000135],[-82.28066972599987,62.989813544000086],[-82.25719153599991,62.99555084800006],[-82.20815995999995,62.986883856000176],[-82.18443762899993,62.986151434000064],[-82.19131425699996,62.986151434000064],[-82.10960852799988,62.96849192900014]]],[[[-66.77079867599988,62.944912957000085],[-66.79311113299985,62.925482632000104],[-66.83450626399991,62.95281116700015],[-66.89489819099987,62.98041840900008],[-66.97250261999989,63.034070090000036],[-67.0382460889999,63.07116647300002],[-67.0744569309999,63.097500510000124],[-66.99490944799996,63.092921742],[-66.9246942449999,63.06519802500013],[-66.80735917299995,62.98593630500001],[-66.77079867599988,62.944912957000085]]],[[[-68.05848307499987,63.22267614200017],[-68.04981915399988,63.19243036100014],[-68.12737704299988,63.22055888100011],[-68.18789063599985,63.250286825],[-68.21611053899994,63.27637547400015],[-68.14525118299989,63.272466236000085],[-68.05848307499987,63.22267614200017]]],[[[-67.93172847299988,63.23287525799999],[-67.89499398699988,63.18944830400015],[-67.95893093699996,63.218415704000066],[-68.03008983099994,63.27159918600001],[-68.09199930399987,63.320381069000106],[-68.02338663699989,63.30086902900011],[-67.93172847299988,63.23287525799999]]],[[[-67.84574020599993,63.32608679900013],[-67.81829291299991,63.2913334870001],[-67.86624350799985,63.291775528000095],[-67.91453730499997,63.33705668000006],[-67.95150186399991,63.380523854000145],[-67.96400659999992,63.40998460000012],[-67.91252879299986,63.393132963000156],[-67.85266682999989,63.34599330100015],[-67.84574020599993,63.32608679900013]]],[[[-90.61554928299998,63.44912344],[-90.64293372299994,63.44318268400017],[-90.70221920499992,63.44489166900008],[-90.71987870999993,63.45075104400002],[-90.73452714799996,63.46523672100007],[-90.7568253249999,63.50006745000012],[-90.72264563699991,63.49941640800015],[-90.65111243399986,63.490301825000174],[-90.62022864499991,63.47955963700015],[-90.6146541009999,63.475531317],[-90.61082923099988,63.47150299700003],[-90.60655676999997,63.468166408000094],[-90.59976152299993,63.46653880400008],[-90.61554928299998,63.44912344]]],[[[-78.41438011799988,63.49315004],[-78.3798109119999,63.45513275200001],[-78.27829573199992,63.48229066000008],[-78.1863500639999,63.49323151200009],[-78.16026770699995,63.48965078300004],[-78.10680091099991,63.47467682500008],[-78.07982337099986,63.472805080000036],[-78.0589086579999,63.48379140800007],[-78.0488175119999,63.4858259140001],[-77.99083411399994,63.47955963700015],[-77.89561926999988,63.48004791900014],[-77.84430904899995,63.47247955900009],[-77.81920325399996,63.45233795800005],[-77.82848059799991,63.45058828300016],[-77.83438066299996,63.44814687700012],[-77.84707597599993,63.43866608300011],[-77.82640540299991,63.43207428600014],[-77.80345618399991,63.427639065000065],[-77.75804602799991,63.424383856000034],[-77.73965410099987,63.427150783000094],[-77.7032771479999,63.43817780200015],[-77.68260657499988,63.43866608300011],[-77.68443762899993,63.43402741100001],[-77.68691972599986,63.422796942],[-77.68883216099994,63.41815827000006],[-77.67373613199993,63.41852448100017],[-77.6595759759999,63.41592031500009],[-77.64639238199996,63.410834052000055],[-77.6341853509999,63.40387604400017],[-77.64073645699996,63.40338776200017],[-77.65465247299994,63.39765045800011],[-77.64757239499988,63.395941473],[-77.6354060539999,63.391302802],[-77.62734941299996,63.390204169000064],[-77.63072669199988,63.38637929900012],[-77.63292395699996,63.38275788000005],[-77.63585364499991,63.37929922100007],[-77.64171301999994,63.37592194200015],[-77.62832597599993,63.35521067900014],[-77.60553951699993,63.342189846000146],[-77.57933508999989,63.331610419000086],[-77.55601966099988,63.318264065000086],[-77.54991614499987,63.310370184000114],[-77.54385331899988,63.29417552300008],[-77.53799394399994,63.28778717700014],[-77.52358964799986,63.28449127800008],[-77.50597083199993,63.282375393000095],[-77.49596106699997,63.276068427000055],[-77.50450598899991,63.260484117000075],[-77.54954993399988,63.227525132],[-77.56749426999991,63.207220770000085],[-77.55968176999991,63.19159577],[-77.55968176999991,63.18475983300008],[-77.6448394459999,63.143169636000046],[-77.70831176099992,63.12700401800011],[-77.75878620899987,63.110357826],[-77.82453609099986,63.10221106000015],[-77.88950751799993,63.08873679200003],[-77.94076413499997,63.08714883300008],[-77.95889238199993,63.099432684000035],[-78.04572506399995,63.130113023000135],[-78.04434160099987,63.14423248900006],[-78.06432044199994,63.15033600500006],[-78.09105383999986,63.15403880399999],[-78.11025956899991,63.16120026200004],[-78.12669837099992,63.17446523600015],[-78.14976966099997,63.18911367400007],[-78.17381751199991,63.200995184000035],[-78.20856686099995,63.21015045800003],[-78.24791419199994,63.232611395],[-78.31550045499992,63.281927802],[-78.34203040299988,63.292385158000066],[-78.45665442599994,63.35667552300003],[-78.49819902299993,63.369696356000176],[-78.5091853509999,63.37498607000007],[-78.53172766799987,63.390204169000064],[-78.51123740899996,63.41069388800009],[-78.53304988199994,63.41828810200014],[-78.52474875799992,63.43198569200008],[-78.54427181499995,63.44918435000007],[-78.51850344599984,63.485019068000135],[-78.48481315299995,63.51110609200005],[-78.44054470599991,63.51938713],[-78.41438011799988,63.49315004]]],[[[-90.96971594999994,63.55475495000014],[-90.76366126199991,63.52741120000009],[-90.7818904289999,63.53534577000014],[-90.78990637899993,63.54096100500006],[-90.79775956899991,63.548529364],[-90.77965247299991,63.553534247000066],[-90.76130123599995,63.55394114800005],[-90.72329667899996,63.548529364],[-90.68618730399993,63.5303408870001],[-90.67487545499995,63.52118561400012],[-90.68858801999987,63.51040273600001],[-90.7058813139999,63.50893789300006],[-90.7434789699999,63.51373932500014],[-90.76203365799998,63.51162344000012],[-90.79308020699992,63.50218333500011],[-90.81175696499989,63.50006745000012],[-90.8505753249999,63.50690338700003],[-90.93004309799991,63.53872304900006],[-90.96971594999994,63.548529364],[-90.96971594999994,63.55475495000014]]],[[[-64.0648230599999,63.53401329900011],[-64.09117174299988,63.486469796000094],[-64.14888612099989,63.540132070000126],[-64.16866795799993,63.60457708000014],[-64.13730843299993,63.618040398000154],[-64.0434301379999,63.56314675500012],[-64.0648230599999,63.53401329900011]]],[[[-91.40111243399988,63.55475495000014],[-91.41681881399985,63.55385976800006],[-91.4355362619999,63.554999091000106],[-91.45335852799991,63.55857982000008],[-91.46654212099995,63.5649274760001],[-91.47288977799988,63.574367580000015],[-91.47598222599996,63.584418036],[-91.48208574099993,63.59243398600013],[-91.49730383999992,63.595648505],[-91.50865637899992,63.59682851800012],[-91.52578691299992,63.60049062700007],[-91.53913326699987,63.60700104400017],[-91.53888912699992,63.61676666900012],[-91.52586829299992,63.619614976000044],[-91.46312415299994,63.61676666900012],[-91.44664466099994,63.60944245000008],[-91.3992813789999,63.59760163000014],[-91.35948645699992,63.592718817000055],[-91.29865475199989,63.56777578300013],[-91.41470292899993,63.56777578300013],[-91.40111243399988,63.55475495000014]]],[[[-64.21678626199989,63.390204169000064],[-64.20864824099988,63.38959381700009],[-64.19579016799995,63.3972028670001],[-64.18883216099997,63.39765045800011],[-64.18252519399991,63.39337799700011],[-64.16905676999994,63.37592194200015],[-64.1683650379999,63.37348053600003],[-64.16954505099991,63.36546458500005],[-64.16905676999994,63.362941799000154],[-64.16515051999994,63.36131419500013],[-64.15314693899992,63.35895416900017],[-64.11888587099995,63.34145742400003],[-64.10228430899988,63.336371161],[-64.08641516799985,63.335028387000094],[-64.0991918609999,63.321844794000135],[-64.0897517569999,63.30805084800015],[-64.07209225199998,63.292669989000025],[-64.05972245999993,63.27480703300013],[-64.0931697259999,63.280259507],[-64.15957597599993,63.32021719000012],[-64.18260657499991,63.32135651200015],[-64.17275956899988,63.31492747600005],[-64.16885331899988,63.308539130000135],[-64.1726781889999,63.3034528670001],[-64.18578040299988,63.301459052000084],[-64.19994055899988,63.30459219000014],[-64.22350012899994,63.318264065000086],[-64.25885982999993,63.32721588700012],[-64.27920488199993,63.34113190300009],[-64.31236731699997,63.369696356000176],[-64.31745357999989,63.37514883000004],[-64.3221736319999,63.38202545800012],[-64.32909094999991,63.387762762000094],[-64.34032141799992,63.390204169000064],[-64.35155188699991,63.39472077],[-64.35619055899994,63.40534088700003],[-64.35875403599994,63.41779205900015],[-64.36388098899994,63.42772044500004],[-64.36839758999992,63.43073151200014],[-64.37254798099994,63.4322777360001],[-64.3765763009999,63.43427155200014],[-64.38060462099989,63.43866608300011],[-64.38727779899995,63.45026276200004],[-64.38805091099997,63.45233795800005],[-64.40094967399997,63.465073960000105],[-64.40973873599992,63.4703636740001],[-64.42223059799994,63.472805080000036],[-64.40615800699996,63.48053620000003],[-64.38805091099997,63.4858259140001],[-64.39321855399996,63.48725006700008],[-64.40330969999994,63.491685289000046],[-64.40855872299991,63.49323151200009],[-64.40697180899987,63.511379299000104],[-64.41779537699998,63.53156159100003],[-64.43517005099994,63.54791901200003],[-64.45323645699997,63.55475495000014],[-64.46377519399992,63.56268952000011],[-64.48521887899997,63.60195547100012],[-64.49791419199994,63.61676666900012],[-64.48688717399997,63.626450914000074],[-64.47716223899994,63.63768138200009],[-64.46495520699995,63.647040106000084],[-64.44640051999994,63.650864976000115],[-64.42788652299993,63.651760158000016],[-64.40802975199992,63.655259507],[-64.39439856699988,63.66327545800014],[-64.39492753799996,63.67763906500013],[-64.37466386599996,63.67670319200012],[-64.35488847599993,63.66885000200015],[-64.33800208199995,63.65692780200011],[-64.32603919199991,63.644110419000164],[-64.32225501199987,63.594061591000134],[-64.31602942599991,63.573675848000086],[-64.30553137899994,63.55475495000014],[-64.2918595039999,63.535589911],[-64.28189042899993,63.516302802000055],[-64.28376217399989,63.49900950700005],[-64.30553137899994,63.4858259140001],[-64.28571529899995,63.47919342700013],[-64.27354895699993,63.47089264500006],[-64.25157630099994,63.44489166900008],[-64.27301998599998,63.44489166900008],[-64.28307044199994,63.442816473000065],[-64.29255123599995,63.43866608300011],[-64.28209387899997,63.43073151200014],[-64.27171790299988,63.42845286699999],[-64.26138261599996,63.42772044500004],[-64.25157630099994,63.424383856000034],[-64.24502519399996,63.419175523000135],[-64.23045813699991,63.40387604400017],[-64.2305395169999,63.40298086100007],[-64.22862708199995,63.39940013200011],[-64.22419186099997,63.39476146],[-64.21678626199989,63.390204169000064]]],[[[-77.15070553299998,63.6677106790001],[-77.13735917899996,63.66453685100005],[-77.11156165299994,63.66583893400015],[-77.10619055899988,63.66962311400009],[-77.1202693349999,63.67763906500013],[-77.1202693349999,63.6850446640001],[-76.70933997299991,63.56777578300013],[-76.71882076699991,63.56329987200017],[-76.72240149599989,63.56220123900011],[-76.70726477799991,63.54588450700011],[-76.67894446499986,63.53514232000001],[-76.6476130849999,63.529201565000065],[-76.62340247299991,63.52741120000009],[-76.6178279289999,63.521673895000035],[-76.68887285099996,63.4858259140001],[-76.65835527299993,63.477240302],[-76.58018958199992,63.475531317],[-76.54491126199989,63.46653880400008],[-76.54930579299985,63.46173737200009],[-76.55382239499991,63.45966217700005],[-76.5716039699999,63.45913320500009],[-76.60924231699988,63.4348005230001],[-76.62946529899988,63.429632880000106],[-76.65477454299993,63.43866608300011],[-76.65477454299993,63.43121979400014],[-76.63878333199995,63.41950104400014],[-76.65245520699997,63.399725653000026],[-76.6791072259999,63.38027578300012],[-76.70197506399992,63.369696356000176],[-76.72549394399987,63.36908600500011],[-76.77049719999988,63.38031647300012],[-76.83104407499985,63.385931708000115],[-76.8501684239999,63.390204169000064],[-76.86644446499986,63.39765045800011],[-76.86607825399994,63.408148505],[-76.89000403599991,63.41193268400012],[-76.94554602799985,63.41132233300005],[-76.97061113199996,63.406887111000074],[-76.9820857409999,63.40729401200018],[-77.00389563699986,63.420599677000034],[-77.03831946499989,63.43121979400014],[-77.06627356699991,63.45233795800005],[-77.09471594999992,63.464300848000086],[-77.15611731699991,63.50043366100011],[-77.16185462099989,63.507513739],[-77.17845618399986,63.50726959800015],[-77.19469153599991,63.50946686400014],[-77.20995032499988,63.51410553600005],[-77.22329667899987,63.52118561400012],[-77.22785396999993,63.522935289000124],[-77.23839270699996,63.52472565300011],[-77.24376380099994,63.52741120000009],[-77.24437415299991,63.529974677],[-77.24323482999993,63.538519598000036],[-77.24376380099994,63.54100169500004],[-77.25283769399994,63.549261786000116],[-77.25763912699992,63.55109284100011],[-77.26427161399988,63.548529364],[-77.2884008449999,63.560492255000106],[-77.37352454299992,63.581976630000064],[-77.37071692599994,63.58588288000006],[-77.36778723899994,63.587713934000035],[-77.36046301999994,63.58942291900003],[-77.41828365799995,63.590643622000144],[-77.43561764199984,63.595648505],[-77.42772376199986,63.59910716400001],[-77.41966712099992,63.60138580900014],[-77.41100012899993,63.602484442000026],[-77.40147864499994,63.602484442000026],[-77.42052161399994,63.604681708],[-77.43687903599994,63.611883856000034],[-77.4413956369999,63.619452216000084],[-77.42503821499989,63.62299225500005],[-77.33315995999993,63.62299225500005],[-77.33315995999993,63.630438544000135],[-77.41344153599997,63.632717190000044],[-77.44810950399994,63.64166901200004],[-77.44611568899988,63.66111888200014],[-77.42381751199989,63.67890045800011],[-77.39696204299989,63.69342682500015],[-77.36644446499994,63.70140208500011],[-77.33315995999993,63.69928620000012],[-77.28770911399997,63.68569570500015],[-77.19603430899988,63.6850446640001],[-77.17902584499993,63.68187083500014],[-77.15070553299998,63.6677106790001]]],[[[-72.47443600199998,63.70551178600006],[-72.45982825399994,63.68793366100014],[-72.47130286399991,63.67560455900009],[-72.49120032499991,63.672186591000084],[-72.50169837099986,63.68134186400006],[-72.51341712099995,63.694525458000115],[-72.5403946609999,63.694525458000115],[-72.57038326699987,63.686997789000046],[-72.59113521999987,63.67763906500013],[-72.57917232999992,63.673407294000086],[-72.55451412699993,63.66864655199999],[-72.54271399599989,63.66453685100005],[-72.59972083199997,63.64667389500009],[-72.62987219999991,63.64642975500014],[-72.6795955069999,63.67206452],[-72.71349036399994,63.67206452],[-72.7828669909999,63.66453685100005],[-72.7828669909999,63.671372789000074],[-72.50059973899991,63.712795315000086],[-72.47443600199998,63.70551178600006]]],[[[-64.25656607299986,63.761633598000124],[-64.2611048579999,63.72388697500007],[-64.31497329299992,63.73936957900016],[-64.34285968699996,63.76929604900015],[-64.34176953699992,63.820074463000125],[-64.33399378999994,63.84482888000017],[-64.21724374399992,63.84261295700007],[-64.17420067599994,63.80567614600004],[-64.20420481499994,63.79054429200006],[-64.25656607299986,63.761633598000124]]],[[[-92.96153723899997,63.87938060100013],[-92.97166907499994,63.87466054900012],[-93.05223548099987,63.88654205900018],[-93.07957923099985,63.89622630400013],[-93.0936580069999,63.91095612200003],[-92.99689693899988,63.913234768],[-92.97765051999994,63.90420156500009],[-92.96446692599987,63.88963450700005],[-92.96153723899997,63.87938060100013]]],[[[-64.63512122299997,63.89736562700006],[-64.61384029899992,63.88605377800008],[-64.56257076699995,63.90859609600007],[-64.55256100199998,63.89736562700006],[-64.56427975199998,63.88434479400009],[-64.59581458199997,63.857977606000176],[-64.60716712099995,63.84271881700012],[-64.55540930899991,63.85179271000011],[-64.52721106699994,63.85106028899998],[-64.50475012899994,63.84271881700012],[-64.56371008999992,63.803900458],[-64.59788977799991,63.79498932500014],[-64.61339270699992,63.787502346000096],[-64.5952856109999,63.78766510600014],[-64.5550430979999,63.7802188170001],[-64.53892981699994,63.77440013200011],[-64.5140681629999,63.75665924700003],[-64.50108801999991,63.751166083],[-64.4842830069999,63.753973700000145],[-64.47166907499991,63.76398346600005],[-64.45933997299993,63.776922919000135],[-64.44399980399989,63.785223700000024],[-64.42223059799994,63.78123607000004],[-64.41437740799995,63.77350495000003],[-64.38805091099997,63.732855536000145],[-64.40855872299991,63.732855536000145],[-64.39854895699992,63.71556224200005],[-64.39354407499988,63.70083242400015],[-64.40111243399994,63.688218492000075],[-64.42906653599997,63.67763906500013],[-64.44273841099991,63.676174221000146],[-64.45767167899993,63.67739492400007],[-64.47215735599988,63.68056875200012],[-64.4842830069999,63.6850446640001],[-64.49364173099991,63.69257233300005],[-64.51463782499988,63.71507396000005],[-64.52183997299989,63.71979401200014],[-64.57616126199991,63.726019598000114],[-64.58429928299994,63.72919342699999],[-64.58995520699992,63.736273505000064],[-64.59813391799995,63.743353583000115],[-64.64232337099992,63.75250885600009],[-64.68224036399997,63.77993398600013],[-64.70274817599991,63.787054755],[-64.7262263659999,63.78408437700009],[-64.7689509759999,63.77008698100003],[-64.79214433499993,63.7675641950001],[-64.84142005099994,63.77753327],[-64.88833574099988,63.79490794499999],[-64.91649329299985,63.82367584800012],[-64.89329993399994,63.84662506700003],[-64.81261145699992,63.88369375200012],[-64.78697669199994,63.85333893400015],[-64.77245032499991,63.84125397300015],[-64.75121008999992,63.82843659100003],[-64.74998938699987,63.839300848000015],[-64.75625566299993,63.849351304],[-64.76683508999989,63.857652085000055],[-64.7784724599999,63.86318594000009],[-64.77061926999991,63.874416408000066],[-64.75780188699989,63.8782412780001],[-64.74339758999992,63.87612539300009],[-64.73078365799995,63.86937083500005],[-64.72899329299986,63.902655341000134],[-64.68748938699986,63.91762929900007],[-64.6437068349999,63.915432033000094],[-64.63512122299997,63.89736562700006]]],[[[-77.54548092399992,64.02081940300009],[-77.59019934799997,64.019964911],[-77.60936438699991,64.01422760600003],[-77.62734941299996,64.000962632],[-77.64464270699995,63.98248932500018],[-77.71031653599997,63.942328192000055],[-77.73721269399994,63.932074286000145],[-77.75658118399986,63.93162669500005],[-77.78945878799993,63.94277578300015],[-77.92080644399994,63.955389716000134],[-77.95787512899997,63.963812567],[-77.97337805899987,63.96556224199999],[-77.98330644399988,63.97247955900018],[-77.97630774599992,63.98810455900015],[-77.96178137899997,64.00458405200006],[-77.94945227799991,64.01406484600007],[-77.92918860599991,64.02033112200012],[-77.90538489499991,64.02448151200015],[-77.86074785099996,64.02765534100003],[-77.79137122299991,64.02081940300009],[-77.77074133999989,64.02765534100003],[-77.77818762899994,64.03510163],[-77.59569251199989,64.0411644550001],[-77.54548092399992,64.02765534100003],[-77.54548092399992,64.02081940300009]]],[[[-81.42308508999994,64.19647858300014],[-81.46882076699987,64.1915550800001],[-81.51699785099989,64.1967227230001],[-81.53880774599986,64.20636627800015],[-81.53677324099993,64.22321198100015],[-81.49913489499994,64.23676178600012],[-81.44204667899996,64.23822663],[-81.39378821499992,64.22972239800005],[-81.38255774599992,64.21320221600017],[-81.39940344999991,64.20319245000009],[-81.42308508999994,64.19647858300014]]],[[[-73.26207434799989,64.239935614],[-73.26207434799989,64.23379140800002],[-73.26691646999987,64.23419830900012],[-73.26797441299993,64.2325707050001],[-73.26781165299988,64.22988515800002],[-73.26891028599991,64.22687409100011],[-73.27635657499988,64.21942780200014],[-73.25059973899994,64.21198151200015],[-73.1979874339999,64.21369049700013],[-73.17332923099994,64.20579661699999],[-73.19489498599995,64.19696686400012],[-73.21914628799993,64.19049713700004],[-73.26891028599991,64.1853701840001],[-73.26577714799993,64.18195221600011],[-73.2632950509999,64.17845286700009],[-73.2602432929999,64.17499420800011],[-73.25523841099988,64.17169830900018],[-73.27635657499988,64.15102773600016],[-73.28726152299987,64.14769114800013],[-73.2996313139999,64.15460846600006],[-73.31334387899992,64.15985748900012],[-73.33096269399994,64.15766022300012],[-73.3492732409999,64.15302155200003],[-73.36510169199994,64.15119049700003],[-73.36510169199994,64.15802643400006],[-73.3553360669999,64.15843333500005],[-73.34829667899993,64.16079336100002],[-73.34288489499988,64.1651065120001],[-73.33775794199988,64.17169830900018],[-73.35435950399994,64.17206452],[-73.39981035099993,64.16486237200014],[-73.39110266799995,64.18032461100007],[-73.38621985599988,64.1853701840001],[-73.39118404899992,64.19623444199999],[-73.37376868399984,64.19647858300014],[-73.33096269399994,64.1915550800001],[-73.31484941299988,64.20091380400011],[-73.31212317599991,64.21393463700008],[-73.32042395699989,64.22630442900005],[-73.33775794199988,64.23379140800002],[-73.33775794199988,64.239935614],[-73.26207434799989,64.239935614]]],[[[-76.47179114499987,64.20612213700012],[-76.48420162699992,64.18134186400015],[-76.52550208199995,64.19708893400009],[-76.5685115229999,64.20612213700012],[-76.57266191299993,64.23427969],[-76.52965247299991,64.24583567900011],[-76.49742591099995,64.24258047100007],[-76.49413001199991,64.2235375020001],[-76.47179114499987,64.20612213700012]]],[[[-76.61314856699988,64.27147044499999],[-76.56525631399995,64.25409577000003],[-76.59581458199989,64.23920319200006],[-76.60741126199991,64.22101471600017],[-76.62804114499994,64.22186920800007],[-76.66441809799991,64.24168528899999],[-76.69090735599988,64.25242747600002],[-76.69005286399988,64.26406484600001],[-76.65200761599988,64.26316966400009],[-76.61314856699988,64.27147044499999]]],[[[-64.94114737799987,64.20632590600009],[-64.99129557699985,64.19319186700007],[-65.04161779199993,64.24471083300013],[-65.06650782899992,64.27933365100002],[-65.07548654899995,64.30696785600004],[-65.04617802399986,64.32785207700006],[-64.96536350599987,64.30970681700009],[-64.98680676199986,64.29008803000006],[-64.9459877779999,64.2759970720001],[-64.88446014699994,64.26371383800002],[-64.93754360699995,64.244219779],[-64.87830309299997,64.22957797200009],[-64.94114737799987,64.20632590600009]]],[[[-73.51219641799992,64.48725006700006],[-73.50023352799988,64.48334381700005],[-73.49486243399991,64.47646719000015],[-73.49689693899995,64.44790273600016],[-73.50487219999991,64.43252187700004],[-73.52163652299993,64.42279694200005],[-73.55011959499984,64.41128164300012],[-73.54499264199991,64.39301178600006],[-73.54564368399988,64.37889232000013],[-73.5398656889999,64.37075429900001],[-73.5152888659999,64.37030670800011],[-73.53359941299996,64.36107005400005],[-73.5554906889999,64.354437567],[-73.57453365799998,64.34540436400009],[-73.58421790299985,64.3293317730001],[-73.57306881399992,64.32998281500015],[-73.56566321499993,64.32831452000012],[-73.56045488199993,64.323635158],[-73.55626380099991,64.31500885600012],[-73.60826575399997,64.3137067730001],[-73.64647376199994,64.31879303600014],[-73.65420488199993,64.32322825700011],[-73.65477454299992,64.3924828150001],[-73.66075598899992,64.412787177],[-73.67357337099986,64.43170807500012],[-73.65330969999984,64.44428131699999],[-73.64069576699987,64.449896552],[-73.62580318899992,64.45221588700015],[-73.61363684799994,64.45087311400009],[-73.59097245999988,64.44594961100002],[-73.57799231699988,64.44599030200003],[-73.57799231699988,64.45221588700015],[-73.59093176999988,64.46295807500017],[-73.60484778599997,64.47825755400014],[-73.60545813699991,64.489243882],[-73.57799231699988,64.48700592700011],[-73.57799231699988,64.493150132],[-73.65713456899995,64.50275299700016],[-73.67357337099986,64.50747304900007],[-73.68419348899991,64.52480703300016],[-73.67100989499993,64.53449127800003],[-73.63573157499991,64.54498932500009],[-73.60879472599994,64.56045156500004],[-73.57103430899988,64.56757233300006],[-73.53400631399995,64.56614817899998],[-73.50910396999993,64.55585358300009],[-73.50865637899992,64.54425690300015],[-73.50670325399989,64.53949616100006],[-73.5023087229999,64.53473541900017],[-73.50910396999993,64.53473541900017],[-73.5023087229999,64.52798086100013],[-73.5174861319999,64.5186221370001],[-73.52586829299995,64.51154205900004],[-73.52961178299996,64.50405508000007],[-73.52415930899994,64.49262116100012],[-73.51219641799992,64.48725006700006]]],[[[-65.28892981699997,64.71474844],[-65.2706599599999,64.71271393400018],[-65.25145423099994,64.71287669500003],[-65.26512610599988,64.69928620000009],[-65.31354732999998,64.66571686400006],[-65.27892005099989,64.66779205900018],[-65.26598059799989,64.665472723],[-65.25145423099994,64.65827057500017],[-65.25365149599993,64.65448639500015],[-65.25373287699992,64.64500560100005],[-65.25007076699995,64.637844143],[-65.23497473899997,64.64386627800012],[-65.22642981699994,64.64496491100006],[-65.20982825399997,64.6439883480001],[-65.2167048819999,64.63068268400015],[-65.22834225199988,64.62494538],[-65.27489173099991,64.62299225500014],[-65.28612219999991,64.61981842700008],[-65.3060603509999,64.61050039300011],[-65.33706620999993,64.60407135600012],[-65.40754146999993,64.59975820500001],[-65.43643144399994,64.59003327000006],[-65.41930091099991,64.58323802300005],[-65.39976966099991,64.58136627800016],[-65.36070716099997,64.58258698100009],[-65.39093990799995,64.56207916900006],[-65.44448808499988,64.55198802300008],[-65.54625403599991,64.5484072940001],[-65.5260310539999,64.5370954450001],[-65.50169837099992,64.53339264500008],[-65.45067298099994,64.53473541900017],[-65.47313391799995,64.52277252800002],[-65.50145423099988,64.51919179900007],[-65.55964107999992,64.52114492400001],[-65.6595759759999,64.50885651200014],[-65.68346106699997,64.51496002800006],[-65.6881404289999,64.54759349199999],[-65.65404212099989,64.58075592700011],[-65.60635331899991,64.60639069200009],[-65.54987545499998,64.62274811399999],[-65.49791419199991,64.66571686400006],[-65.45836341099997,64.67951080900013],[-65.44273841099988,64.69000885600003],[-65.42894446499989,64.72915273600007],[-65.41193600199992,64.73981354400011],[-65.39346269399988,64.73948802299999],[-65.38182532499988,64.72589752800003],[-65.3834529289999,64.71165599200013],[-65.40908769399996,64.65827057500017],[-65.3929337229999,64.65314362200014],[-65.38097083199997,64.66461823100012],[-65.36070716099997,64.69928620000009],[-65.34679114499988,64.71116771000013],[-65.30980383999994,64.73403554900013],[-65.2930802069999,64.7402204450001],[-65.29881751199989,64.72260162999999],[-65.28892981699997,64.71474844]]],[[[-66.93427391599991,65.31701358700015],[-66.96784715399991,65.28303024200015],[-66.99707648699992,65.29772982400011],[-67.01671657799994,65.31978103800007],[-66.9711760799999,65.34684771100002],[-66.92456464799992,65.36489784500013],[-66.90295443599987,65.34502933500012],[-66.93427391599991,65.31701358700015]]],[[[-89.08975119599984,65.41059805000013],[-89.07890092099987,65.40718259000006],[-89.06128254699988,65.40888873900009],[-89.04675330399996,65.4063576280001],[-89.02304480599994,65.41470440000008],[-89.01310029299994,65.40733958900007],[-89.01044240599995,65.40063449300006],[-88.98885106799995,65.39257914500006],[-88.96934335999985,65.38787841900013],[-88.98055309699993,65.38218494600012],[-89.00305294199987,65.38508221200014],[-89.03125267299987,65.39105621100008],[-89.0557264359999,65.4009483550001],[-89.0727226169999,65.39650306900008],[-89.08679440999988,65.39203592100013],[-89.10270367999995,65.39700273500011],[-89.10445393499992,65.40887001700005],[-89.10056096499994,65.41522880900011],[-89.08975119599984,65.41059805000013]]],[[[-88.42145939799994,65.45736751200015],[-88.45898094999984,65.45570147600013],[-88.4846177409999,65.4647772620001],[-88.48910074799991,65.47311121400008],[-88.48859468299989,65.48139274400008],[-88.45230711299993,65.48256141900005],[-88.4308004139999,65.48699020800002],[-88.38306322099993,65.47248055200005],[-88.37127689799988,65.46199003100016],[-88.38892624499994,65.459080261],[-88.42145939799994,65.45736751200015]]],[[[-67.4227535409999,65.72608368300014],[-67.4787824519999,65.70800035800013],[-67.5294721479999,65.71308646600006],[-67.61970029199992,65.70136073200001],[-67.6824805819999,65.68928222900003],[-67.70002082699997,65.70072386300008],[-67.70454111099988,65.71653140299998],[-67.67647256299989,65.72749428800016],[-67.62493558399984,65.73368893400011],[-67.55881705399992,65.73895024200006],[-67.43251604399993,65.74271277700016],[-67.38915832099985,65.73617606600011],[-67.4227535409999,65.72608368300014]]],[[[-62.450347459999875,65.74884674700007],[-62.41490637899989,65.74079010600015],[-62.40831458199991,65.74201080900018],[-62.40269934799991,65.74591705900015],[-62.3970841139999,65.74819570500013],[-62.39037024599986,65.7445335960001],[-62.389149542999945,65.7414411480001],[-62.386341925999886,65.73016998900012],[-62.387033657999915,65.72772858300009],[-62.37124589799989,65.72772858300009],[-62.36058508999986,65.73069895999998],[-62.3391820949999,65.74079010600015],[-62.31908118399985,65.74656810100011],[-62.30211341099987,65.74868398600013],[-62.25723222599987,65.74823639500012],[-62.249826626999884,65.74823639500012],[-62.249826626999884,65.74079010600015],[-62.25694739499994,65.73822663000006],[-62.2596736319999,65.7350121110001],[-62.25942949099996,65.732896226],[-62.29820716099991,65.71344635600009],[-62.26451575399988,65.70734284100008],[-62.198841925999886,65.71369049700003],[-62.16787675699996,65.706000067],[-62.1845596999999,65.69822825700011],[-62.20201575399994,65.69301992400001],[-62.20201575399994,65.6861839860001],[-62.182606574999845,65.69277578300007],[-62.162831183999906,65.69269440300009],[-62.14386959499989,65.68768952000015],[-62.126942511999914,65.67934804900007],[-62.140533006999874,65.67251211100016],[-62.13438880099991,65.6545270850001],[-62.15428626199991,65.6488711610001],[-62.182728644999905,65.648179429],[-62.20201575399994,65.64520905200008],[-62.19277910099989,65.63751862200014],[-62.18968665299991,65.63031647300012],[-62.19196529899997,65.62274811400009],[-62.19859778599994,65.61416250200007],[-62.20885169199997,65.60952383000013],[-62.21930904899994,65.61359284100008],[-62.22972571499994,65.6204287780001],[-62.23985755099988,65.62409088700015],[-62.25169837099986,65.633490302],[-62.2584529289999,65.65167877800017],[-62.2662247389999,65.66380442900008],[-62.28087317599991,65.65509674700007],[-62.30223548099985,65.62547435100005],[-62.31810462099989,65.61517975500011],[-62.3391820949999,65.61790599200002],[-62.34862219999994,65.63011302300008],[-62.33836829299988,65.64325592700011],[-62.32152258999988,65.655422268],[-62.31126868399988,65.665025132],[-62.32262122299994,65.66278717700011],[-62.341297980999904,65.65473053600009],[-62.3522029289999,65.65135325700005],[-62.36310787699997,65.65086497600008],[-62.38231360599993,65.65338776200016],[-62.39378821499989,65.65135325700005],[-62.39191646999989,65.65631745000012],[-62.38890540299991,65.66754791900011],[-62.387033657999915,65.67251211100016],[-62.406646287999905,65.66811758000007],[-62.469553188999924,65.665025132],[-62.46568762899994,65.67340729400014],[-62.45946204299988,65.67975495000009],[-62.45132402299995,65.684027411],[-62.4416397779999,65.6861839860001],[-62.4416397779999,65.69301992400001],[-62.45685787699997,65.69940827000012],[-62.474232550999936,65.70970286700005],[-62.48570716099991,65.72370026200012],[-62.48322506399998,65.74079010600015],[-62.46963456899991,65.74884674700007],[-62.450347459999875,65.74884674700007]]],[[[-65.79811229899988,65.68344979300018],[-65.83725049999988,65.6783155000001],[-65.86111316299989,65.70516739600004],[-65.85881910499995,65.7494886200001],[-65.8655523609999,65.78122830700006],[-65.80734117199992,65.77692910500015],[-65.77063519399988,65.76331209400014],[-65.7864184629999,65.70198775400003],[-65.79811229899988,65.68344979300018]]],[[[-83.29116777299993,65.84686920800003],[-83.28954016799989,65.8351911480001],[-83.30923417899993,65.83234284100017],[-83.35016842399997,65.8369815120001],[-83.41315670499989,65.83527252800009],[-83.43211829299992,65.83014557500017],[-83.43919837099986,65.82538483300009],[-83.45474199099996,65.81232330900008],[-83.46312415299994,65.809719143],[-83.50340735599991,65.809719143],[-83.53819739499994,65.819281317],[-83.57241777299993,65.84039948100009],[-83.58250891799989,65.86151764500012],[-83.54474850199995,65.8710798200001],[-83.36937415299991,65.8710798200001],[-83.32787024599992,65.86343008000007],[-83.30654863199996,65.856431382],[-83.29116777299993,65.84686920800003]]],[[[-85.48827063699986,65.79661692900012],[-85.45718339799996,65.79364655200011],[-85.42634029899989,65.80223216400005],[-85.41535396999983,65.8102074240001],[-85.39728756399992,65.82973867400007],[-85.38536536399988,65.8369815120001],[-85.36953691299993,65.839585679],[-85.3250626289999,65.83759186400006],[-85.20103919199994,65.8092715520001],[-85.17186438699989,65.78912995000017],[-85.16413326699987,65.77676015800013],[-85.16612708199992,65.77147044500005],[-85.17100989499987,65.76813385600003],[-85.17186438699989,65.76121653900013],[-85.16494706899988,65.75263092700011],[-85.15562903599992,65.74371979400009],[-85.1526993479999,65.73672109600001],[-85.1653539699999,65.73395416900006],[-85.18394934799989,65.72630442900011],[-85.16759192599997,65.70905182500009],[-85.07371985599991,65.64972565300003],[-85.05402584499986,65.63011302300008],[-85.05235755099994,65.61416250200007],[-85.07994544199993,65.59308502800003],[-85.1117244129999,65.5812035180001],[-85.25064042899996,65.55516185100011],[-85.28636633999989,65.56004466399999],[-85.3014216789999,65.55683014500012],[-85.31647701699993,65.541489976],[-85.26097571499986,65.50763580900012],[-85.23005123599992,65.4933942730001],[-85.16222083199992,65.48309967699998],[-85.07673092399989,65.45636627800017],[-85.01943925699996,65.42544179900013],[-85.00763912699989,65.415716864],[-85.00055904899992,65.40558502800003],[-85.00121008999989,65.39647044500005],[-85.01138261599993,65.36399974200005],[-85.01895097599987,65.35224030200008],[-84.99962317599994,65.32632070500007],[-84.93126380099997,65.26430898600005],[-84.92540442599991,65.25413646],[-84.92662512899994,65.24225495000003],[-84.93171139199987,65.22898997600002],[-84.93179277299993,65.218207098],[-84.91832434799994,65.21381256700003],[-84.84797115799994,65.21352773600007],[-84.81525631399992,65.2211367860001],[-84.78823808499996,65.24115631700009],[-84.78213456899987,65.25063711100009],[-84.7677302729999,65.28204987200003],[-84.76284745999993,65.286118882],[-84.75088456899991,65.29075755400011],[-84.74730383999994,65.29572174700014],[-84.74689693899983,65.30304596600014],[-84.74962317599991,65.3067894550001],[-84.75304114499991,65.30923086100013],[-84.75475012899992,65.31248607],[-84.7525935539999,65.33515045800011],[-84.74498450399997,65.35150788000006],[-84.7301326159999,65.36652252800017],[-84.7063695949999,65.38507721600008],[-84.6524145169999,65.43846263200011],[-84.62389075399989,65.45115794499999],[-84.61229407499988,65.46198151200018],[-84.59337317599994,65.48411692900005],[-84.57738196499986,65.48940664300012],[-84.55467688699991,65.48590729400014],[-84.51451575399992,65.47386302300013],[-84.45026607999998,65.46230703300002],[-84.42723548099991,65.44977448100009],[-84.43569902299996,65.42918528899999],[-84.44343014199987,65.41933828300013],[-84.43907630099996,65.41421133000013],[-84.42707271999984,65.41217682500012],[-84.41177324099988,65.411810614],[-84.40282141799986,65.40802643400015],[-84.37629146999988,65.39036692900005],[-84.3636775379999,65.38507721600008],[-84.2953995429999,65.377630927],[-84.22004146999987,65.35407135600013],[-84.16002356699994,65.34699127800009],[-84.15078691299988,65.34007396],[-84.15225175699993,65.33222077],[-84.15648352799987,65.3297386740001],[-84.16299394399996,65.32892487200017],[-84.17162024599985,65.32611725500011],[-84.17910722599993,65.32094961100002],[-84.18130449099993,65.31683991100006],[-84.18211829299993,65.31305573100006],[-84.18553626199994,65.30878327000012],[-84.22573808499993,65.28754303600006],[-84.23338782499988,65.28204987200003],[-84.23033606699988,65.26764557500015],[-84.21483313699986,65.25983307500015],[-84.17870032499994,65.25071849199999],[-84.0984594389999,65.20954010600009],[-84.06883704299986,65.20014069200009],[-84.04605058499993,65.19769928600014],[-83.97264563699991,65.20014069200009],[-83.87706458199992,65.19269440300009],[-83.91808020699995,65.17841217700003],[-83.90135657499991,65.169826565],[-83.88247636599988,65.16551341399999],[-83.84292558499993,65.16535065300003],[-83.77521725199989,65.18024323100018],[-83.72484290299985,65.16303131700006],[-83.54645748599995,65.16225820500013],[-83.46979732999998,65.14809804900003],[-83.42833411399988,65.14492422100015],[-83.39769446499987,65.13662344000006],[-83.37759355399993,65.11701080900012],[-83.35977128799993,65.09406159100003],[-83.33580481699988,65.07599518400009],[-83.33983313699984,65.03579336100002],[-83.30675208199992,65.00885651200004],[-83.22227942599997,64.96991608300006],[-83.21540279899995,64.96088288000006],[-83.21288001199994,64.95311107000003],[-83.20836341099988,64.947699286],[-83.10936438699989,64.93537018400015],[-83.05093339799993,64.91917552300002],[-83.01431230399989,64.9183617210001],[-83.00112870999993,64.9161644550001],[-82.99144446499989,64.91120026200004],[-82.97207597599987,64.89850495000009],[-82.95612545499995,64.891546942],[-82.94261633999989,64.88776276200015],[-82.88377844999991,64.87970612200003],[-82.86375891799995,64.87201569200003],[-82.84756425699987,64.86102936400006],[-82.79458574099993,64.81293366100007],[-82.77318274599989,64.7998721370001],[-82.74620520699995,64.78864166900011],[-82.71450761599988,64.78099192900008],[-82.62328040299988,64.78119538000011],[-82.6020401679999,64.77480703300002],[-82.54963131399984,64.7480329450001],[-82.53766842399989,64.74396393400006],[-82.52863521999988,64.74795156500012],[-82.47223873599995,64.75556061400005],[-82.42467200399994,64.767523505],[-82.39537512899992,64.76996491100012],[-82.36595618399993,64.76801178600009],[-82.3367406889999,64.76154205900018],[-82.30797278599997,64.75079987200014],[-82.27696692599993,64.72907135600009],[-82.26699785099991,64.72589752800003],[-82.2201228509999,64.72345612200009],[-82.20494544199991,64.71971263200005],[-82.21686764199984,64.69879791900009],[-82.21768144399994,64.69122955900015],[-82.12254798099988,64.69204336100016],[-82.09845943899984,64.6871605490001],[-82.07835852799991,64.67536041900003],[-82.07339433499992,64.66950104400017],[-82.06550045499996,64.65639883],[-82.06159420499998,64.65143463700015],[-81.84870357999995,64.53473541900017],[-81.82725989499991,64.53192780200011],[-81.79759680899988,64.52407461100013],[-81.77131100199995,64.51203034100003],[-81.7599177729999,64.49689362200003],[-81.75841223899994,64.493109442],[-81.75523841099987,64.48834870000009],[-81.75255286399991,64.48183828300002],[-81.75251217399992,64.47272370000012],[-81.75645911399987,64.46478913000006],[-81.76976477799991,64.453802802],[-81.77424068899987,64.44599030200003],[-81.77448482999992,64.43231842700008],[-81.76992753799986,64.41657135600012],[-81.75251217399992,64.38397858300006],[-81.7599177729999,64.37775299700009],[-81.75308183499988,64.36151764500015],[-81.76130123599994,64.3509789080001],[-81.77383378799988,64.340969143],[-81.78038489499994,64.325873114],[-81.77464758999989,64.30923086100016],[-81.76089433499996,64.29279205900015],[-81.71353105399993,64.25421784100008],[-81.6902970039999,64.24091217700006],[-81.66576087099989,64.2308617210001],[-81.62291419199991,64.2217471370001],[-81.60846920499995,64.20962148600002],[-81.58800208199997,64.1853701840001],[-81.60204016799992,64.15753815300015],[-81.60912024599989,64.15119049700003],[-81.60659745999986,64.13410065300017],[-81.62718665299991,64.12360260600012],[-81.70897376199989,64.1127790390001],[-81.76732337099989,64.09398021000008],[-81.8557836579999,64.08515045800011],[-81.88263912699988,64.07859935100014],[-81.91014563699991,64.06867096600003],[-81.92788652299993,64.0565860050001],[-81.9395645819999,64.05243561400007],[-81.94489498599998,64.05874258000004],[-81.9500219389999,64.06806061400006],[-81.96125240799988,64.06354401200012],[-81.97264563699986,64.05402252800012],[-81.97838294199994,64.04816315300017],[-81.97423255099989,64.03497955900012],[-81.98253333199997,64.0265160180001],[-81.99421139199987,64.01947663000011],[-82.00011145699992,64.01064687700016],[-81.99160722599987,63.99872467700011],[-81.97134355399996,63.993841864000146],[-81.8783259759999,64.0038923200001],[-81.77904212099986,64.00202057500015],[-81.64997311099992,64.02850983300011],[-81.58828691299989,64.03510163],[-81.50133216099994,64.03261953300007],[-81.45653235599991,64.03778717700008],[-81.43028723899988,64.05499909100008],[-81.4361873039999,64.0605329450001],[-81.45079505099991,64.08226146000007],[-81.43822180899994,64.09162018400012],[-81.41917883999994,64.09894440300012],[-81.39883378799996,64.10150788000011],[-81.38255774599992,64.09658437700007],[-81.40274003799993,64.08486562700007],[-81.40982011599989,64.08226146000007],[-81.37328040299988,64.07440827],[-81.2983292309999,64.08063385600015],[-81.24510657499994,64.05735911700005],[-81.0585017569999,64.0265160180001],[-80.97370357999995,63.993597723],[-80.93065344999991,63.99347565300004],[-80.90371660099993,64.01080963700012],[-80.92186438699994,64.03021881700012],[-80.95653235599991,64.04999420800014],[-80.97911536399988,64.06867096600003],[-80.95034745999993,64.08490631700006],[-80.93838456899991,64.09438711100007],[-80.93065344999991,64.1034203150001],[-80.94481360599991,64.12335846600017],[-80.95116126199986,64.13007233300011],[-80.88878333199987,64.12262604400006],[-80.82371985599985,64.10268789300015],[-80.76317298099984,64.0734723980001],[-80.71471106699988,64.038519598],[-80.70832271999987,64.03021881700012],[-80.7037654289999,64.02228424700014],[-80.69709225199995,64.01634349200013],[-80.61473548099991,64.00722890800012],[-80.5438126289999,63.98493073100009],[-80.5218806629999,63.96971263200011],[-80.53966223899988,63.959418036000024],[-80.54881751199987,63.93317291900008],[-80.4968969389999,63.91766998900005],[-80.53282630099997,63.90420156500009],[-80.57705644399994,63.89793528900004],[-80.61880449099988,63.901109117000104],[-80.70470130099989,63.918402411],[-80.67463131399987,63.89398834800015],[-80.64386959499987,63.88165924700011],[-80.37938391799987,63.850572007],[-80.27961178299995,63.809149481000176],[-80.26012122299989,63.808539130000106],[-80.22240149599992,63.817084052000055],[-80.20445716099997,63.81537506700015],[-80.19298255099991,63.80780670799999],[-80.18382727799994,63.796576239],[-80.16974850199989,63.77440013200011],[-80.18333899599995,63.7675641950001],[-80.18297278599994,63.75625234600012],[-80.1963598299999,63.75291575699999],[-80.23180091099994,63.753973700000145],[-80.28209387899989,63.742173569999984],[-80.46642005099994,63.72728099200013],[-80.47891191299993,63.72190989800008],[-80.49185136599993,63.712347723000086],[-80.50381425699987,63.69350820500013],[-80.51268469999994,63.68252187700009],[-80.52257239499993,63.67763906500013],[-80.53237870999988,63.67475006700008],[-80.56216386599988,63.660223700000145],[-80.58478756399984,63.64297109600012],[-80.59772701699985,63.63686758000015],[-80.62901770699992,63.630438544000135],[-80.7284236319999,63.58844635600015],[-80.77403723899994,63.57778554900013],[-80.80040442599994,63.55898672100007],[-80.81362870999988,63.55475495000014],[-80.82144120999988,63.55316803600011],[-80.82730058499993,63.54913971600014],[-80.83788001199989,63.53758372600014],[-80.84459387899992,63.53412506700012],[-80.85265051999994,63.53375885600011],[-80.86119544199988,63.53449127800015],[-80.90208899599992,63.53302643400018],[-80.91808020699992,63.53009674700015],[-80.93065344999991,63.52118561400012],[-80.93455969999991,63.51056549700009],[-80.93578040299991,63.496771552000084],[-80.93521074099993,63.48468659100017],[-80.93407141799992,63.47955963700015],[-80.98558508999987,63.45571523600007],[-81.00055904899992,63.45136139500009],[-81.0188695949999,63.45026276200004],[-81.12490800699993,63.463812567],[-81.22154700399987,63.50153229400018],[-81.45445716099988,63.5497907570001],[-81.49767005099989,63.57575104400008],[-81.53180904899997,63.58075592700013],[-81.63597571499987,63.57518138200014],[-81.66063391799986,63.581976630000064],[-81.68077551999991,63.59491608300006],[-81.7015681629999,63.61334870000009],[-81.7296036449999,63.630926825000024],[-81.76366126199991,63.64105866100008],[-81.79991614499994,63.64508698100015],[-81.83438066299996,63.644110419000164],[-81.88194739499993,63.63613515800004],[-81.89708411399992,63.63666413],[-81.91323808499989,63.64158763200005],[-81.94090735599991,63.65501536700005],[-81.98965410099993,63.662420966000134],[-82.0441788399999,63.684637762000094],[-82.07461503799996,63.691839911000116],[-82.24266516799989,63.68695709800006],[-82.26256262899997,63.678697007000075],[-82.26016191299993,63.66453685100005],[-82.2875056629999,63.6850446640001],[-82.31891842399992,63.659409898000135],[-82.35753333199989,63.659613348000086],[-82.48176021999983,63.68520742400007],[-82.48957271999984,63.68846263200011],[-82.49217688699991,63.695542710000076],[-82.49107825399989,63.71405670799999],[-82.49299068899984,63.71979401200014],[-82.5316462879999,63.73191966400007],[-82.5515844389999,63.74298737200009],[-82.55093339799993,63.75731028899998],[-82.53111731699991,63.784247137000065],[-82.51773027299993,63.796576239],[-82.49974524599989,63.801703192],[-82.4792374339999,63.80475495000009],[-82.43419348899994,63.818426825000024],[-82.4110408189999,63.82221100500006],[-82.39122473899988,63.82233307500003],[-82.38540605399993,63.82387929900007],[-82.37629146999984,63.82843659100003],[-82.3795466789999,63.830023505000064],[-82.37181555899988,63.841131903000175],[-82.36119544199994,63.85199616100006],[-82.35582434799989,63.85297272300014],[-82.35798092399989,63.86713288000006],[-82.36156165299984,63.87909577],[-82.36221269399991,63.88910553600008],[-82.35582434799989,63.89736562700006],[-82.37092037699989,63.913031317000154],[-82.39110266799992,63.92377350500005],[-82.47883053299992,63.95099518400014],[-82.49266516799992,63.952582098000086],[-82.50625566299986,63.95575592700005],[-82.52647864499988,63.96987539300009],[-82.53392493399988,63.97304922100015],[-82.7393692699999,63.97304922100015],[-82.84239661399987,63.98672109600009],[-82.86864173099991,63.986802476000086],[-82.95372473899991,63.97744375200012],[-82.99258378799993,63.96556224199999],[-83.02794348899994,63.96621328300013],[-83.0592341789999,63.954331772999986],[-83.08454342399995,63.958197333],[-83.13044186099992,63.979234117000125],[-83.1287328769999,63.98265208500013],[-83.12645423099993,63.98956940300003],[-83.12360592399989,63.99347565300004],[-83.14167232999992,63.99970123900008],[-83.13829505099991,64.00665924700016],[-83.10993404899993,64.02081940300009],[-83.07579505099997,64.05060455900008],[-83.04735266799995,64.06293366100006],[-82.9796036449999,64.11709219000012],[-82.97032630099997,64.12783437700013],[-82.96580969999991,64.1370303410001],[-82.96637936099998,64.14655182500009],[-82.97207597599987,64.15802643400006],[-83.01024329299993,64.18642812700007],[-83.01374264199991,64.1915550800001],[-83.0842992829999,64.1898460960001],[-83.11856035099986,64.18402741100012],[-83.15086829299987,64.17169830900018],[-83.17096920499993,64.15399811400009],[-83.18565833199993,64.13422272300015],[-83.2035212879999,64.12205638200008],[-83.23314368399986,64.12702057500003],[-83.26891028599987,64.138373114],[-83.30211341099988,64.14057038],[-83.33482825399992,64.13523997600011],[-83.36937415299991,64.12392812700013],[-83.38947506399987,64.11322663000011],[-83.40143795499989,64.10952383000007],[-83.41779537699992,64.10956452000006],[-83.42369544199994,64.11196523600002],[-83.4381404289999,64.12091705900004],[-83.44566809799997,64.12392812700013],[-83.45653235599985,64.12531159100003],[-83.51280676999994,64.12042877800015],[-83.53941809799997,64.1107445330001],[-83.5626521479999,64.09564850500009],[-83.58287512899992,64.076117255],[-83.59337317599989,64.05487702000012],[-83.60163326699987,64.04572174700003],[-83.6170141269999,64.04193756700003],[-83.63687089799993,64.03937409100011],[-83.65347245999988,64.03290436399999],[-83.68529212099992,64.01406484600007],[-83.67861894399996,63.9987653670001],[-83.66685950399997,63.98712799700008],[-83.61937415299988,63.95282623900012],[-83.61636308499996,63.949164130000085],[-83.61554928299995,63.94501373900014],[-83.6131892569999,63.94139232],[-83.60680091099988,63.935207424],[-83.60456295499989,63.93036530200014],[-83.60781816299993,63.9266625020001],[-83.61302649599995,63.923041083000115],[-83.6175024079999,63.91693756700015],[-83.62694251199991,63.894232489],[-83.64110266799995,63.883612372000144],[-83.6485896479999,63.87636953300012],[-83.6511938139999,63.86937083500005],[-83.64224199099988,63.85651276200012],[-83.6075333319999,63.83315664300012],[-83.59593665299988,63.82221100500006],[-83.60855058499986,63.82257721600016],[-83.6175024079999,63.820542710000055],[-83.62071692599993,63.81610748900009],[-83.61636308499996,63.809149481000176],[-83.62800045499998,63.77912018400003],[-83.63377844999994,63.7709821640001],[-83.64924068899987,63.76512278899998],[-83.66661536399994,63.76874420800014],[-83.69896399599995,63.78123607000004],[-83.72801673099991,63.782294012000094],[-83.7566625639999,63.777492580000015],[-83.78392493399988,63.768500067],[-83.89683997299994,63.71670156500009],[-83.90782630099991,63.708929755000085],[-83.92398027299987,63.693304755],[-83.93187415299985,63.689439194999984],[-83.9459529289999,63.6850446640001],[-83.99339758999992,63.67755768400003],[-84.00743567599994,63.671372789000074],[-84.0638728509999,63.620672919000114],[-84.08934485599991,63.60993073100009],[-84.12181555899988,63.61098867400012],[-84.1848852199999,63.6301944030001],[-84.2289119129999,63.623114325000024],[-84.26085364499991,63.63003164300012],[-84.27432206899991,63.630438544000135],[-84.28425045499989,63.62677643400009],[-84.28831946499986,63.62250397300009],[-84.29149329299992,63.61603424700017],[-84.29889889199988,63.60618724200004],[-84.30988521999986,63.59772370000012],[-84.35000566299988,63.581976630000064],[-84.39110266799987,63.56000397300015],[-84.40534420499998,63.55475495000014],[-84.40493730399987,63.5273298200001],[-84.45254472599996,63.479722398000106],[-84.44566809799994,63.45913320500009],[-84.48033606699991,63.39337799700011],[-84.49376380099991,63.38336823100012],[-84.52041581899994,63.374579169000135],[-84.59024003799988,63.31513092700011],[-84.61945553299991,63.30683014500011],[-84.68260657499991,63.299994208000115],[-84.7231339179999,63.27741120000005],[-84.75767981699994,63.271063544000114],[-84.78502356699991,63.25503164300012],[-84.9544164699999,63.19383372599999],[-85.0957738919999,63.15713125200007],[-85.27391516799985,63.123358466000084],[-85.4551895819999,63.122259833000136],[-85.50975501199987,63.12921784100005],[-85.5853165359999,63.173325914000124],[-85.59203040299985,63.184637762000115],[-85.60387122299991,63.21206289300007],[-85.63516191299996,63.24310944200009],[-85.63951575399993,63.25104401200003],[-85.64207923099988,63.268011786000116],[-85.64541581899991,63.27480703300013],[-85.64362545499992,63.29433828300004],[-85.64830481699991,63.34442780200015],[-85.6522517569999,63.35667552300003],[-85.65127519399992,63.373358466000056],[-85.65501868399987,63.41771067900008],[-85.6522517569999,63.43866608300011],[-85.63955644399994,63.45795319200006],[-85.62096106699994,63.47919342700013],[-85.60753333199995,63.500799872000144],[-85.61066646999984,63.52118561400012],[-85.60387122299991,63.52118561400012],[-85.61388098899987,63.53412506700012],[-85.6251521479999,63.55467357],[-85.63011633999994,63.573675848000086],[-85.62120520699989,63.581976630000064],[-85.61522376199989,63.58649323100013],[-85.59463456899994,63.60724518400012],[-85.59019934799997,63.61334870000009],[-85.59235592399997,63.623928127000156],[-85.60167395699992,63.64419179900016],[-85.60387122299991,63.65436432500012],[-85.61701412699993,63.67487213700015],[-85.64736894399994,63.68431224199999],[-85.68163001199991,63.690090236000124],[-85.70628821499992,63.69928620000012],[-85.7153214179999,63.71600983300014],[-85.71467037699995,63.73505280200013],[-85.71157792899987,63.753363348],[-85.71373450399989,63.7675641950001],[-85.71373450399989,63.77440013200011],[-85.76471920499998,63.73224518400018],[-85.79356848899991,63.713364976000044],[-85.81981360599994,63.70551178600006],[-85.9539281889999,63.69928620000012],[-86.21397864499991,63.650864976000115],[-86.28538977799987,63.64606354400002],[-86.49453691299988,63.671372789000074],[-86.63231360599991,63.66453685100005],[-86.66120357999992,63.65770091400013],[-86.68956458199995,63.64118073100014],[-86.74156653599991,63.602484442000026],[-86.80211341099991,63.57489655199999],[-86.86815344999991,63.56175364800013],[-87.0643611319999,63.55483633000013],[-87.12376868399988,63.563625393],[-87.17540442599991,63.58502838700014],[-87.21450761599996,63.62299225500005],[-87.22378495999993,63.66014232000008],[-87.20856686099995,63.69647858300006],[-87.17735755099996,63.73041413000003],[-86.95384680899988,63.89736562700006],[-86.8959041009999,63.93024323100015],[-86.59788977799988,63.99689362200002],[-86.56143144399991,64.01634349200013],[-86.49193274599989,64.02309804900007],[-86.41624915299991,64.05394114800013],[-86.3496801419999,64.07298411700013],[-86.25059973899994,64.07908763200011],[-86.21739661399991,64.08722565300003],[-86.19286048099991,64.1034203150001],[-86.18321692599994,64.12396881700012],[-86.18561764199987,64.14492422100005],[-86.19595292899989,64.164740302],[-86.21056067599991,64.18195221600011],[-86.23265540299988,64.19354889500012],[-86.29881751199989,64.21865469000004],[-86.31639563699991,64.23379140800002],[-86.31566321499989,64.24249909100008],[-86.30968176999997,64.251125393],[-86.3019913399999,64.25958893400002],[-86.29588782499984,64.26788971600003],[-86.32054602799985,64.27342357000005],[-86.33824622299994,64.28192780200008],[-86.35204016799985,64.29352448100009],[-86.3648168609999,64.30882396000005],[-86.3613988919999,64.321966864],[-86.3665258449999,64.33417389500009],[-86.37417558499993,64.34564850500011],[-86.37848873599995,64.35663483300009],[-86.37535559799997,64.37457916900003],[-86.36595618399994,64.38491445500013],[-86.35411536399988,64.39468008000007],[-86.34373938699989,64.41128164300012],[-86.37633216099994,64.42279694200005],[-86.40575110599994,64.43854401200004],[-86.3929337229999,64.45600006700009],[-86.38878333199995,64.47467682500015],[-86.38296464799988,64.54580312700001],[-86.38829505099997,64.56073639500015],[-86.41942298099988,64.596869208],[-86.38316809799994,64.620550848],[-86.35289466099997,64.65078359600001],[-86.24583899599995,64.80451080900004],[-86.2381892569999,64.81256745000017],[-86.22765051999993,64.8159040390001],[-86.19749915299994,64.81561920800006],[-86.18407141799993,64.81948476800005],[-86.17300370999989,64.82957591400013],[-86.19273841099994,64.837103583],[-86.20099850199992,64.84198639500006],[-86.20714270699989,64.850083726],[-86.18203691299989,64.85590241100014],[-86.18675696499992,64.86758047100011],[-86.21397864499991,64.891058661],[-86.1902563139999,64.89862702000006],[-86.17039954299987,64.90753815300009],[-86.15876217399988,64.92031484600012],[-86.15933183499995,64.9394391950001],[-86.17267818899987,64.95433177300008],[-86.2145076159999,64.97260163000014],[-86.22765051999993,64.98663971600008],[-86.2278539699999,65.00385163],[-86.22069251199986,65.02362702000012],[-86.21019446499989,65.04214101800012],[-86.20030676999988,65.05548737200014],[-86.18321692599994,65.06932200700005],[-86.16266842399989,65.08148834800012],[-86.14549719999988,65.09516022300006],[-86.13825436099992,65.11351146000011],[-86.13825436099992,65.18219635600002],[-86.14037024599995,65.2000186220001],[-86.14976966099988,65.22431061400007],[-86.15192623599998,65.23737213700015],[-86.1578669909999,65.253607489],[-86.16877193899987,65.26959870000009],[-86.17393958199997,65.28652578300007],[-86.16274980399987,65.30565013200005],[-86.11583411399994,65.34686920800011],[-86.09727942599991,65.35716380400014],[-86.10863196499989,65.36810944199999],[-86.14122473899994,65.37567780200006],[-86.15192623599998,65.38507721600008],[-86.15151933499988,65.39614492400001],[-86.14509029899995,65.40908437700004],[-86.13613847599993,65.42108795800014],[-86.12832597599993,65.42918528899999],[-86.11998450399997,65.44464752800009],[-86.10472571499989,65.51422760600009],[-86.08336341099994,65.56207916900003],[-86.06602942599994,65.586371161],[-86.02830969999987,65.60610586100005],[-86.02407792899996,65.62734609600001],[-86.02839107999993,65.665025132],[-85.99029165799992,65.712379329],[-85.93893536399992,65.76319806100012],[-85.72693817799988,65.86347870800002],[-85.60981566299998,65.91054608700007],[-85.54088143899993,65.92158908400002],[-85.48651056599991,65.92413607900009],[-85.46228784099985,65.88067228900012],[-85.49236764299992,65.85901555200003],[-85.50617579499995,65.83865454000015],[-85.4890814119999,65.82033065800015],[-85.48827063699986,65.79661692900012]]],[[[-66.96387088899988,65.99697261600015],[-66.92157402999993,65.97527494600014],[-66.92946670399988,65.94983440500009],[-66.96251694199995,65.951086369],[-66.98808882099988,65.97402130700006],[-67.0573600889999,65.98330854800004],[-67.08768062099998,65.97397001500009],[-67.10566440999989,65.95769003700008],[-67.12966717099994,65.979086125],[-67.14855654399992,65.99589014200002],[-67.11994780299992,66.00676874400013],[-67.05335170699986,66.00806695300014],[-66.96387088899988,65.99697261600015]]],[[[-85.01292883999986,66.00824616100006],[-85.00112870999989,66.00763580900009],[-84.95376542899996,66.01581452],[-84.93028723899988,66.0150820980001],[-84.89891516799986,65.99079010600008],[-84.85716712099992,65.96670156500006],[-84.86660722599993,65.96344635600003],[-84.87523352799994,65.95917389500012],[-84.88329016799986,65.95376211100006],[-84.89126542899993,65.94684479400017],[-84.82868404899992,65.91388580900009],[-84.81281490799998,65.90184153899999],[-84.79417883999989,65.89215729400003],[-84.77122962099989,65.88519928600014],[-84.75609290299991,65.877183335],[-84.76097571499989,65.86432526200015],[-84.72704016799992,65.84552643400012],[-84.71495520699992,65.83527252800009],[-84.71934973899991,65.822699286],[-84.71304277299987,65.8084984400001],[-84.70457923099991,65.79564036700008],[-84.6593318349999,65.7484398460001],[-84.65294348899988,65.73639557500017],[-84.64220130099994,65.723822333],[-84.63369706899992,65.70966217700006],[-84.62751217399995,65.70294830900012],[-84.61733964799993,65.69733307500012],[-84.59923255099991,65.69330475500006],[-84.59024003799988,65.6861839860001],[-84.5919490229999,65.68366120000016],[-84.60138912699992,65.67487213700012],[-84.60334225199995,65.67251211100016],[-84.60045325399992,65.66925690300012],[-84.59227454299992,65.66217682500015],[-84.59024003799988,65.658840236],[-84.5785212879999,65.64472077],[-84.57408606699991,65.6356468770001],[-84.58665930899991,65.62563711100002],[-84.64830481699994,65.59332916900009],[-84.67552649599995,65.56753164300015],[-84.69066321499994,65.56004466399999],[-84.71320553299991,65.55516185100011],[-84.75121008999994,65.55638255400012],[-84.80089270699995,65.56708405200006],[-84.8412166009999,65.58755117400004],[-84.85094153599994,65.61790599200002],[-84.85521399599986,65.62335846600001],[-84.85700436099995,65.63007233300009],[-84.85716712099992,65.64826080900015],[-84.8628637359999,65.66095612200003],[-84.87633216099988,65.67039622600005],[-84.92422441299989,65.68976471600016],[-85.04539954299986,65.71625397300012],[-85.05919348899997,65.72402578300013],[-85.07852128799988,65.73997630400005],[-85.09679114499994,65.75039297100012],[-85.11266028599988,65.76211172100012],[-85.1246638659999,65.78237539300011],[-85.14073645699989,65.84027741100012],[-85.15257727799985,65.856878973],[-85.13670813699991,65.87958405200014],[-85.14586341099991,65.90631745000015],[-85.16673743399987,65.9308128930001],[-85.18614661399987,65.94684479400017],[-85.17808997299994,65.95636627800015],[-85.17345130099991,65.96653880400011],[-85.17341061099992,65.97711823100015],[-85.17931067599994,65.9877790390001],[-85.15566972599993,66.01121653899999],[-85.13174394399996,66.02362702],[-85.10244706899994,66.02850983300009],[-85.06261145699997,66.02944570500016],[-85.05223548099988,66.02781810100014],[-85.04442298099988,66.0240746110001],[-85.03718014199985,66.01935455900009],[-85.02269446499992,66.012396552],[-85.01886959499988,66.00995514500006],[-85.01292883999986,66.00824616100006]]],[[[-85.02955027799987,66.050665358],[-85.0620117549999,66.04935368100003],[-85.09242422899985,66.050934644],[-85.10400453099993,66.05902387300007],[-85.09815643499985,66.07427811000004],[-85.08064765399988,66.08142776200008],[-85.02172456799985,66.08306982500011],[-85.0027531699999,66.07532309400007],[-85.00903827299993,66.06542598],[-84.9974736309999,66.057323737],[-85.02955027799987,66.050665358]]],[[[-83.55776933499993,66.05141836100007],[-83.5587458979999,66.04596588700004],[-83.56773841099991,66.04389069200003],[-83.57282467399995,66.04539622600008],[-83.57713782499985,66.04730866100012],[-83.5845841139999,66.046087958],[-83.59186764199984,66.04254791900003],[-83.59520423099985,66.0401065120001],[-83.60423743399988,66.03815338700004],[-83.61986243399986,66.040920315],[-83.62230383999989,66.04901764500012],[-83.61314856699991,66.05463288000011],[-83.60635331899988,66.061224677],[-83.60464433499988,66.065578518],[-83.60301673099984,66.06891510600003],[-83.59312903599994,66.07660553600014],[-83.5772598949999,66.08380768400018],[-83.5703832669999,66.083685614],[-83.57184811099995,66.07733795800009],[-83.57111568899984,66.07172272300006],[-83.56480872299989,66.06020742400013],[-83.55776933499993,66.05141836100007]]],[[[-83.63194739499994,66.12128327],[-83.61253821499986,66.11420319200015],[-83.60309811099992,66.114447333],[-83.59902910099987,66.11855703300013],[-83.59093176999994,66.11798737200014],[-83.57408606699994,66.11025625200016],[-83.57241777299993,66.10643138200014],[-83.57738196499987,66.10211823100003],[-83.58946692599989,66.09853750200007],[-83.58971106699994,66.09398021000011],[-83.59699459499984,66.08844635600009],[-83.61143958199992,66.08462148600007],[-83.61839758999989,66.08397044500005],[-83.62262936099992,66.08087799700014],[-83.63174394399991,66.07611725500006],[-83.64842688699994,66.07111237200012],[-83.64541581899994,66.07591380400002],[-83.64244544199994,66.085353908],[-83.65245520699992,66.09072500200007],[-83.65782630099997,66.099310614],[-83.6559138659999,66.11334870000002],[-83.64879309799994,66.12295156500004],[-83.63194739499994,66.12128327]]],[[[-84.34609941299988,66.11790599199999],[-84.18614661399991,66.08734772300006],[-84.14354407499988,66.08673737200009],[-84.1234431629999,66.08344147300006],[-84.11021887899997,66.0772972680001],[-84.10024980399987,66.07054271000005],[-84.08828691299993,66.06513092699998],[-84.06883704299986,66.06289297100001],[-84.05418860599994,66.06907786699999],[-84.03819739499993,66.080755927],[-84.02135169199994,66.08771393400015],[-84.00401770699995,66.07965729400003],[-83.99893144399994,66.06928131700012],[-83.99742591099988,66.0560977230001],[-83.99840247299994,66.04368724200008],[-84.00059973899994,66.03558991100012],[-83.98249264199984,66.02960846600003],[-83.94367428299991,66.02204010600015],[-83.83340410099993,65.97821686400003],[-83.77546139199984,65.96971263199998],[-83.74290930899988,65.95831940300012],[-83.71251380099991,65.94277578300002],[-83.69273841099988,65.92572663000006],[-83.68248450399994,65.881537177],[-83.7119848299999,65.853461005],[-83.80199133999992,65.822699286],[-83.78636633999992,65.81281159100008],[-83.72622636599992,65.80223216400005],[-83.72248287699992,65.79954661700008],[-83.71837317599994,65.79515208500008],[-83.71214758999989,65.79100169500003],[-83.70238196499986,65.78912995000017],[-83.67686926999995,65.78912995000017],[-83.6650284499999,65.78607819200009],[-83.63548743399994,65.76691315300012],[-83.56114661399994,65.75507233300004],[-83.54222571499992,65.74823639500012],[-83.53205318899987,65.74286530200007],[-83.5276586579999,65.73737213700007],[-83.53380286399997,65.72431061400006],[-83.53555253799996,65.7167829450001],[-83.53107662699989,65.71344635600009],[-83.51496334499984,65.71576569200015],[-83.48981686099994,65.725531317],[-83.4727270169999,65.72772858300009],[-83.29084225199989,65.72797272300012],[-83.23932857999992,65.72158437700001],[-83.21231035099986,65.706000067],[-83.23566646999987,65.69985586100013],[-83.2584529289999,65.690130927],[-83.26675370999986,65.67820872600005],[-83.24644934799997,65.665025132],[-83.25523841099994,65.65672435100011],[-83.26561438699994,65.65180084800015],[-83.28742428299988,65.64520905200008],[-83.28123938699991,65.64520905200008],[-83.30064856699993,65.63450755400005],[-83.33372962099989,65.6244164080001],[-83.36705481699995,65.61859772300011],[-83.38735917899996,65.62099844000008],[-83.40770423099985,65.63540273600013],[-83.42983964799991,65.64630768400004],[-83.45372473899991,65.65399811400015],[-83.47923743399991,65.658840236],[-83.59626217399992,65.658840236],[-83.6226700509999,65.66453685100011],[-83.61611894399991,65.677964585],[-83.58287512899992,65.706000067],[-83.61803137899997,65.70282623900015],[-83.64928137899994,65.68976471600016],[-83.65758216099994,65.67291901200015],[-83.62385006399984,65.658840236],[-83.62385006399984,65.65135325700005],[-83.6589249339999,65.65534088700004],[-83.72752844999994,65.67121002800015],[-83.76105709499987,65.67251211100016],[-83.8144425119999,65.65302155200008],[-83.83885657499987,65.65224844000015],[-83.84911048099991,65.67593008000007],[-83.84284420499995,65.68357982000002],[-83.8283585279999,65.6848005230001],[-83.81248938699989,65.68414948100015],[-83.80199133999992,65.6861839860001],[-83.79531816299993,65.69489166900009],[-83.79605058499986,65.70189036700008],[-83.79979407499991,65.708685614],[-83.80199133999992,65.71686432500009],[-83.78595943899992,65.72842031500012],[-83.74958248599992,65.73859284100017],[-83.68529212099992,65.74823639500012],[-83.68529212099992,65.75507233300004],[-83.72297115799988,65.76410553600005],[-83.82925370999989,65.75507233300004],[-83.78795325399994,65.7764346370001],[-83.78087317599989,65.78237539300011],[-83.78563391799989,65.79266998900006],[-83.80186926999994,65.79393138200005],[-83.86974036399994,65.78290436400003],[-83.95897376199989,65.74079010600015],[-83.97817949099993,65.73997630400005],[-83.99303137899987,65.74591705900015],[-84.00633704299992,65.7543806010001],[-84.02110755099989,65.76121653900013],[-84.03913326699993,65.76235586100007],[-84.07282467399992,65.75535716399999],[-84.12596594999992,65.76162344000012],[-84.14273027299996,65.76675039300015],[-84.14118404899992,65.77863190300009],[-84.12922115799998,65.788519598],[-84.11799068899987,65.79498932500012],[-84.10903886599993,65.80263906500015],[-84.10362708199989,65.8158633480001],[-84.10863196499994,65.83612702],[-84.12242591099994,65.856431382],[-84.13267981699988,65.87628815300009],[-84.12458248599995,65.90668366100006],[-84.13613847599986,65.91648997599998],[-84.15269934799994,65.92328522300012],[-84.18691972599993,65.9286156270001],[-84.18952389199993,65.93622467700011],[-84.18496660099987,65.94733307500015],[-84.18553626199994,65.96051666900011],[-84.19456946499986,65.97186920800009],[-84.20531165299988,65.97638580900004],[-84.23338782499988,65.980943101],[-84.28962154899993,66.00438060100005],[-84.30874589799993,66.00763580900009],[-84.37071692599989,66.00690338700015],[-84.39708411399988,66.012884833],[-84.42516028599988,66.02944570500016],[-84.45189368399991,66.05267975500009],[-84.47354081899991,66.07591380400002],[-84.4661352199999,66.07591380400002],[-84.47354081899991,66.08344147300006],[-84.4661352199999,66.0902367210001],[-84.47354081899991,66.0902367210001],[-84.46825110599991,66.10382721600014],[-84.47036699099992,66.11762116100006],[-84.47411048099985,66.12978750200013],[-84.47354081899991,66.138617255],[-84.45783443899984,66.14614492400015],[-84.4332576159999,66.14581940300003],[-84.40819251199991,66.14105866100012],[-84.34609941299988,66.11790599199999]]],[[[-83.13719641799986,66.30931224199999],[-83.15977942599991,66.30312734600004],[-83.16958574099996,66.29767487200009],[-83.17821204299985,66.28945547100008],[-83.15794837099986,66.28497955900012],[-83.10277258999992,66.28945547100008],[-83.09068762899992,66.28522370000013],[-83.0670466789999,66.26642487200012],[-83.04816646999987,66.262152411],[-82.92784583199992,66.28099192900004],[-82.90444902299993,66.26837799700014],[-82.93797766799986,66.25470612200003],[-82.95763098899991,66.243597723],[-82.99022376199989,66.21015045800014],[-83.00690670499992,66.19944896000011],[-83.03954016799986,66.194769598],[-83.07762610599994,66.19782135600009],[-83.11375891799989,66.20791250200016],[-83.14028886599993,66.22431061400006],[-83.18805904899989,66.24184804900001],[-83.25145423099991,66.250921942],[-83.29263261599988,66.26788971600017],[-83.27379309799994,66.30931224199999],[-83.28986568899992,66.30853913000006],[-83.2960505849999,66.31195709800006],[-83.29454505099994,66.31932200700008],[-83.28742428299988,66.33038971600011],[-83.27472896999993,66.343491929],[-83.26284745999988,66.34699127800015],[-83.23314368399986,66.34406159100014],[-83.22496497299994,66.34113190300003],[-83.19871985599991,66.32021719000006],[-83.18423417899987,66.31586334800006],[-83.15233313699986,66.31293366100006],[-83.13719641799986,66.30931224199999]]],[[[-85.9265510549999,66.44101007900012],[-85.96242957999996,66.43958958399999],[-85.97531466299989,66.45181445300004],[-85.98229229599991,66.46388431400011],[-85.95564212599996,66.46317791300011],[-85.9112317369999,66.46199107900004],[-85.8962161339999,66.45386154300003],[-85.8995439309999,66.44266151200007],[-85.9265510549999,66.44101007900012]]],[[[-107.8885798819999,66.86709219],[-107.9239802729999,66.85468170800009],[-107.95051021999987,66.85797760600012],[-107.9019669259999,66.89232005400008],[-107.88304602799988,66.91400788000006],[-107.87535559799996,66.94306061400012],[-107.8643692699999,66.97020091400005],[-107.83910071499994,67.000677802],[-107.81151282499991,67.01520416900003],[-107.79344641799992,66.994574286],[-107.79727128799992,66.97353750200007],[-107.81908118399988,66.91909414300007],[-107.8306778639999,66.90265534100017],[-107.85423743399994,66.88617584800008],[-107.8885798819999,66.86709219]]],[[[-107.99364173099988,66.95600006700012],[-107.96686764199988,66.94928620000009],[-107.93683834499993,66.953558661],[-107.96735592399996,66.93573639500012],[-107.97472083199996,66.92999909100014],[-107.97911536399994,66.92731354400017],[-107.98420162699995,66.92645905200006],[-107.9951879549999,66.92694733300004],[-107.99937903599995,66.92503489799998],[-107.99901282499992,66.92080312700007],[-107.99762936099987,66.915961005],[-107.99889075399994,66.912583726],[-108.01939856699993,66.90403880400005],[-108.03677324099989,66.90232982000005],[-108.04898027299988,66.91010163000006],[-108.05353756399992,66.92999909100014],[-108.09821529899997,66.97406647300015],[-108.0955704419999,66.98236725500011],[-108.09805253799992,67.00141022300012],[-108.10488847599993,67.02252838700004],[-108.1149796209999,67.03681061400012],[-108.0990291009999,67.02460358300006],[-108.07884680899987,67.01288483300006],[-108.06285559799996,67.00096263200011],[-108.05972245999989,66.98834870000006],[-108.04670162699989,66.98151276200004],[-107.99364173099988,66.95600006700012]]],[[[-62.407460089999915,67.1869570980001],[-62.37393144399996,67.16583893400015],[-62.40721594999988,67.15888092700008],[-62.5907283189999,67.09540436400006],[-62.61986243399985,67.0780296900001],[-62.650461391999954,67.052923895],[-62.671009894999905,67.04612864800008],[-62.720326300999915,67.05329010600012],[-62.739857550999886,67.0463727890001],[-62.74331620999987,67.03583405200004],[-62.741688605999855,67.02570221600008],[-62.746896938999946,67.01805247600008],[-62.7708634109999,67.01504140800007],[-62.807769334999875,67.02024974200006],[-62.901519334999875,67.06342194200006],[-62.8219294909999,67.05841705900004],[-62.80532792899993,67.06342194200006],[-62.80402584499984,67.06891510600008],[-62.80532792899993,67.09418366100006],[-62.799875454999885,67.10248444200012],[-62.78697669199988,67.10529205900018],[-62.73961341099994,67.10553620000002],[-62.71837317599994,67.11001211100007],[-62.702015753999945,67.11945221600011],[-62.695464647999955,67.13572825700014],[-62.68468176999994,67.14227936400012],[-62.63198808499993,67.14252350500006],[-62.61290442599997,67.1454125020001],[-62.62336178299994,67.155707098],[-62.64468339799989,67.16372304900015],[-62.65392005099998,67.17328522300014],[-62.63898678299992,67.17841217700006],[-62.62291419199994,67.18032461100002],[-62.5890193349999,67.18012116100006],[-62.573231574999845,67.18227773600016],[-62.54092363199993,67.19159577],[-62.524769660999965,67.193793036],[-62.428456183999856,67.19293854400009],[-62.407460089999915,67.1869570980001]]],[[[-107.38361568899987,67.08372630400008],[-107.51748613199987,67.08197663000009],[-107.54356848899994,67.08844635600016],[-107.56688391799995,67.10443756700009],[-107.61465410099987,67.16583893400015],[-107.62612870999993,67.18838125200016],[-107.62417558499989,67.204535223],[-107.60875403599994,67.21002838700004],[-107.57994544199993,67.20062897300004],[-107.56012936099991,67.18528880400008],[-107.4166560539999,67.11871979400017],[-107.34251868399987,67.11074453300002],[-107.32046464799987,67.10443756700009],[-107.34552975199996,67.088812567],[-107.38361568899987,67.08372630400008]]],[[[-63.58531653599994,67.34186432500003],[-63.59300696499995,67.310492255],[-63.554351365999906,67.31289297100012],[-63.53673255099997,67.31708405200006],[-63.51789303299993,67.3241641300001],[-63.49803626199991,67.336859442],[-63.48713131399995,67.34174225500006],[-63.47630774599986,67.34088776200015],[-63.38613847599993,67.31171295800003],[-63.36021887899992,67.29621002800009],[-63.40916907499988,67.27533600500011],[-63.46084550699993,67.2702497420001],[-63.77009029899995,67.27586497600011],[-63.833159959999875,67.28998444200012],[-63.82249915299994,67.29303620000003],[-63.78307044199997,67.30955638200011],[-63.75169837099992,67.31903717700011],[-63.6868790359999,67.34690989800006],[-63.66869055899994,67.35146719],[-63.63158118399991,67.35610586100013],[-63.6009822259999,67.35504791900009],[-63.58531653599994,67.34186432500003]]],[[[-107.88902747299989,67.40607330900015],[-107.89932206899991,67.389105536],[-107.92715410099987,67.37091705900009],[-107.93683834499993,67.35765208500008],[-107.92064368399987,67.34735748900005],[-107.9075414699999,67.33144765800013],[-107.90733801999995,67.3168399110001],[-107.92967688699987,67.310492255],[-107.9529923169999,67.316107489],[-108.01317298099987,67.35765208500008],[-108.01146399599985,67.36151764500009],[-108.01060950399994,67.36469147300015],[-108.0091446609999,67.3679059920001],[-108.00572669199988,67.37197500200007],[-108.0384415359999,67.37384674700003],[-108.08495032499985,67.38300202],[-108.12759355399989,67.39671458500014],[-108.14907792899992,67.41290924700009],[-108.13768469999985,67.42275625200001],[-108.1284073559999,67.42169830900015],[-108.1184789699999,67.41620514500012],[-108.0910538399999,67.41034577000009],[-108.03986568899988,67.39240143400004],[-108.04210364499995,67.39663320500016],[-108.04336503799988,67.40058014500015],[-108.04112708199989,67.40558502800009],[-108.03237870999992,67.41290924700009],[-108.0808813139999,67.42649974200005],[-108.05199133999989,67.44647858300011],[-107.97386633999986,67.45783112200009],[-107.95051021999987,67.47500234600004],[-107.97158769399988,67.481146552],[-107.94107011599993,67.48281484600001],[-107.9196671209999,67.48769765800007],[-107.90168209499986,67.48590729400009],[-107.88158118399991,67.46747467700006],[-107.88658606699995,67.4526227890001],[-107.88658606699995,67.42194245000009],[-107.88902747299989,67.40607330900015]]],[[[-108.3937068349999,67.5537783870001],[-108.36139889199987,67.54950592700008],[-108.3482559889999,67.55353424700014],[-108.3396703769999,67.55963776200004],[-108.33014889199991,67.564154364],[-108.3141983709999,67.56370677299999],[-108.30207271999988,67.56049225500014],[-108.29332434799993,67.55548737200009],[-108.28819739499991,67.5475934920001],[-108.28693600199989,67.53579336100013],[-108.30264238199986,67.52659739799999],[-108.30313066299995,67.51585521000005],[-108.29881751199984,67.5049502620001],[-108.29991614499988,67.49481842700014],[-108.31358801999993,67.48834870000003],[-108.38247636599989,67.46747467700006],[-108.4195857409999,67.47186920800014],[-108.45270748599985,67.48883698100012],[-108.47984778599995,67.51215241100012],[-108.49917558499988,67.53579336100013],[-108.48839270699989,67.5351423200001],[-108.4809464179999,67.53668854400014],[-108.47557532499984,67.54116445500001],[-108.47126217399993,67.54950592700008],[-108.47728430899984,67.55231354400003],[-108.49233964799987,67.56370677299999],[-108.45824133999987,67.5736758480001],[-108.4256892569999,67.5661074890001],[-108.3937068349999,67.5537783870001]]],[[[-63.78929602799991,67.51121653900005],[-63.982411261999935,67.50674062700007],[-64.01667232999989,67.51243724200005],[-64.03799394399996,67.52960846600008],[-64.03213456899994,67.55621979400003],[-64.0266820949999,67.56622955900008],[-63.99156653599991,67.60488515800016],[-63.98265540299988,67.61749909100014],[-63.976551886999886,67.63263580900004],[-63.98249264199993,67.64313385600012],[-63.972727016999954,67.65241120000015],[-63.954701300999936,67.65497467700008],[-63.943023240999935,67.64569733300011],[-63.92943274599988,67.63947174700014],[-63.89452063699988,67.603461005],[-63.79426021999987,67.55560944200006],[-63.757476365999885,67.52277252800015],[-63.78929602799991,67.51121653900005]]],[[[-107.9256892569999,67.55780670800006],[-107.92251542899994,67.54950592700008],[-107.93455969999987,67.53701406500006],[-107.95319576699984,67.53510163000011],[-107.9702856109999,67.54132721600017],[-107.97777258999986,67.55316803600012],[-107.99071204299986,67.54873281500006],[-108.05117753799996,67.54588450700011],[-108.07030188699993,67.539496161],[-108.07111568899985,67.53156159100003],[-108.0621638659999,67.52610911699999],[-108.0432836579999,67.51935455900013],[-108.0346573559999,67.50910065300003],[-108.03490149599993,67.50438060100011],[-108.0401912099999,67.5010440120001],[-108.06183834499988,67.48102448100003],[-108.0847875639999,67.46954987200009],[-108.10578365799982,67.468207098],[-108.1149796209999,67.48493073100003],[-108.11876380099991,67.501898505],[-108.12743079299992,67.51129791900003],[-108.13662675699989,67.518703518],[-108.14224199099989,67.52960846600008],[-108.13756262899997,67.55052317900005],[-108.11856035099987,67.55707428600012],[-108.09430904899989,67.55841705900012],[-108.07339433499992,67.56370677299999],[-108.10704505099993,67.57453034100008],[-108.11864173099984,67.58295319200012],[-108.12865149599993,67.59788646],[-108.13320878799989,67.61220937700007],[-108.13345292899993,67.62494538000011],[-108.12865149599993,67.64569733300011],[-108.12140865799991,67.66665273600007],[-108.11196855399989,67.67597077],[-108.09707597599994,67.67719147300012],[-108.0255020819999,67.66762929900013],[-108.00381425699993,67.66054922100005],[-107.98521887899993,67.64569733300011],[-107.96271725199993,67.59780508000001],[-107.95421301999991,67.59039948100012],[-107.94554602799991,67.58466217700014],[-107.93468176999993,67.57160065300015],[-107.9256892569999,67.55780670800006]]],[[[-97.3360896479999,67.7282168640001],[-97.33336341099994,67.69464752800009],[-97.33527584499988,67.67975495000003],[-97.34605872299989,67.67357005400007],[-97.36701412699995,67.66917552299998],[-97.43171139199985,67.63947174700014],[-97.51813717399995,67.62425364799999],[-97.53783118399991,67.6288923200001],[-97.5511775379999,67.64533112200009],[-97.55308997299997,67.657375393],[-97.5447891919999,67.66803620000015],[-97.52790279899992,67.68040599199999],[-97.5443009109999,67.68870677300006],[-97.56200110599991,67.69403717700011],[-97.52904212099995,67.6984723980001],[-97.46056067599989,67.69611237200014],[-97.43171139199985,67.70770905200006],[-97.41372636599993,67.72215403900013],[-97.39281165299988,67.73432038000003],[-97.36742102799985,67.73826732],[-97.3360896479999,67.7282168640001]]],[[[-109.0707087879999,67.81098053600006],[-109.03978430899987,67.7896996110001],[-109.04710852799987,67.79035065300002],[-109.05068925699993,67.78815338700007],[-109.05235755099996,67.78497955900018],[-109.05406653599988,67.78286367400007],[-109.1360570949999,67.76813385600018],[-109.17951412699993,67.76911041900014],[-109.21174068899988,67.7896996110001],[-109.12067623599987,67.80963776200018],[-109.0707087879999,67.81098053600006]]],[[[-114.13727779899989,67.88764069200012],[-114.0862930979999,67.88239166900006],[-113.97451738199996,67.89179108300006],[-113.92650305899988,67.87909577],[-113.96930904899996,67.88068268400004],[-113.99058997299994,67.87897370000003],[-114.00841223899992,67.872219143],[-114.23778235599994,67.87909577],[-114.25234941299996,67.88141510600015],[-114.28062903599992,67.89142487200014],[-114.29645748599985,67.89272695500013],[-114.29645748599985,67.89956289300007],[-114.25723222599993,67.90729401200018],[-114.21629798099991,67.90619538000011],[-114.13727779899989,67.88764069200012]]],[[[-113.28433183499989,67.93854401200002],[-113.24803626199989,67.91998932500003],[-113.2707413399999,67.91185130400011],[-113.29527747299996,67.90631745000009],[-113.5284317699999,67.89524974200008],[-113.60374915299988,67.90631745000009],[-113.58389238199996,67.91425202000005],[-113.55858313699993,67.91608307500005],[-113.42153886599993,67.90696849200005],[-113.39891516799986,67.91376373900009],[-113.41002356699991,67.91819896000005],[-113.42186438699986,67.92047760600003],[-113.43394934799996,67.92084381700015],[-113.44603430899986,67.91998932500003],[-113.44603430899986,67.92682526200015],[-113.34129798099991,67.93895091400005],[-113.28433183499989,67.93854401200002]]],[[[-111.03180904899997,67.8627383480001],[-111.07530676999991,67.85529205900012],[-111.08934485599987,67.86542389500006],[-111.06725012899997,67.87889232000005],[-110.94591223899994,67.91376373900009],[-110.84447180899993,67.95555247600011],[-110.80817623599984,67.96100495000013],[-110.8082576159999,67.95673248900012],[-110.80955969999991,67.95380280200011],[-110.81432044199991,67.94794342700008],[-110.8312068349999,67.93756745000017],[-110.85936438699989,67.90289948100009],[-110.87865149599992,67.892523505],[-110.95213782499992,67.88589101800012],[-111.03180904899997,67.8627383480001]]],[[[-113.0520593149999,67.92042944300015],[-113.1214762409999,67.91540026500003],[-113.15509869899988,67.92177371400008],[-113.13894156199991,67.93754878400013],[-113.00830826199986,67.947294312],[-112.94499249399992,67.95015853800011],[-112.88533855299993,67.96109620400013],[-112.8165074369999,67.96915656400013],[-112.76134112599995,67.96408139800003],[-112.81542630599989,67.9508529110001],[-112.86827430899986,67.94650814200016],[-112.89431966099988,67.92916086800012],[-112.9393415869999,67.92062475300004],[-113.0520593149999,67.92042944300015]]],[[[-108.06932532499987,67.90037669499999],[-108.09219316299988,67.884711005],[-108.12181555899991,67.87909577],[-108.19074459499987,67.88589101800012],[-108.22923743399986,67.8817406270001],[-108.24787350199995,67.88296133000001],[-108.25894120999988,67.89272695500013],[-108.24022376199991,67.89760976800004],[-108.23741614499995,67.90668366100012],[-108.2394099599999,67.91819896000005],[-108.23509680899988,67.9305687520001],[-108.22223873599988,67.94188060100008],[-108.20840410099989,67.94965241100009],[-108.17707271999983,67.96100495000013],[-108.10440019399994,67.97850169500002],[-108.06761633999986,67.97650788000006],[-108.05353756399992,67.954779364],[-108.05557206899995,67.92430247600005],[-108.06932532499987,67.90037669499999]]],[[[-109.16319739499991,67.98053620000003],[-109.04723059799996,67.954779364],[-109.0673721999999,67.97064850500011],[-109.07457434799993,67.97528717700014],[-109.05793209499988,67.97540924700012],[-109.01280676999993,67.96841054900013],[-109.00625566299993,67.97040436400006],[-108.99754798099985,67.97907135600015],[-108.9925837879999,67.9815127620001],[-108.98241126199986,67.98139069200012],[-108.9351293609999,67.97064850500011],[-108.90160071499986,67.95750560100005],[-108.8858536449999,67.954779364],[-108.88536536399991,67.94985586100005],[-108.91071529899995,67.91998932500003],[-108.88198808499989,67.91771067900008],[-108.87340247299987,67.9007022160001],[-108.8832901679999,67.88141510600015],[-108.9100642569999,67.872219143],[-108.94107011599992,67.87588125200013],[-109.13923092399996,67.93284739800008],[-109.18468176999994,67.95734284100008],[-109.19810950399992,67.99510325700005],[-109.16319739499991,67.98053620000003]]],[[[-98.96666419199994,68.07086823100003],[-98.96690833199989,68.04218170800006],[-98.96886145699992,68.02879466400006],[-98.97350012899994,68.01618073100018],[-98.96275794199993,68.01439036699999],[-98.93248450399993,68.002590236],[-98.95400956899996,67.98509349199999],[-98.98192298099991,67.98224518400004],[-99.00999915299991,67.99030182500015],[-99.03184973899995,68.00600820500013],[-99.03840084499984,68.01410553600005],[-99.04649817599996,68.02692291900009],[-99.05231686099992,68.03327057500003],[-99.07778886599992,68.049790757],[-99.08336341099994,68.05719635600009],[-99.05386308499996,68.05206940300017],[-98.99181067599991,68.076605536],[-98.96666419199994,68.07086823100003]]],[[[-109.33535722599989,68.04710521000011],[-109.31680253799988,68.0299339860001],[-109.30821692599996,68.00836823100009],[-109.3175349599999,67.98517487200014],[-109.34239661399994,67.98118724199999],[-109.38345292899993,67.98940664300007],[-109.5244848299999,68.04376862200009],[-109.54751542899989,68.05719635600009],[-109.52904212099986,68.05426666900014],[-109.50621497299993,68.04730866100009],[-109.48517818899991,68.04364655200011],[-109.47179114499988,68.05036041900017],[-109.47252356699993,68.06183502800012],[-109.48241126199993,68.07282135600015],[-109.49567623599988,68.08124420800011],[-109.50658118399986,68.08510976800012],[-109.4977107409999,68.09577057500015],[-109.48387610599991,68.09931061400015],[-109.45132402299994,68.0981306010001],[-109.4250382149999,68.08991120000012],[-109.41462154899993,68.08417389500015],[-109.41030839799993,68.07420482000005],[-109.4035538399999,68.063177802],[-109.38768469999987,68.05923086100002],[-109.35570227799985,68.05719635600009],[-109.33535722599989,68.04710521000011]]],[[[-110.07774817599996,68.05878327000012],[-110.1039932929999,68.05609772300011],[-110.15762285099989,68.05719635600009],[-110.1817520819999,68.0527204450001],[-110.20665442599991,68.04425690300017],[-110.23241126199989,68.0385602890001],[-110.25942949099992,68.04291413],[-110.2184138659999,68.0644391950001],[-110.16478430899993,68.08201732000005],[-110.10895748599985,68.09381745000012],[-110.06143144399994,68.0981306010001],[-110.01475989499993,68.10781484600007],[-109.96739661399991,68.12669505400002],[-109.92064368399993,68.13983795800006],[-109.87584387899989,68.132269598],[-109.87608801999994,68.12783437700013],[-109.87767493399987,68.12470123900006],[-109.91392981699988,68.08832428600009],[-109.96011308499989,68.07965729400009],[-110.0106501939999,68.07758209800005],[-110.07774817599996,68.05878327000012]]],[[[-112.76119713499993,68.14560833100002],[-112.78970056399994,68.1300947270001],[-112.82645915499988,68.14150032600013],[-112.87915258899996,68.14159612200012],[-112.91225559799994,68.14488428200015],[-112.90420990299992,68.16034959100007],[-112.89046701599997,68.17347977300012],[-112.85534452199995,68.17595131100008],[-112.83692525499987,68.17025048],[-112.7461299659999,68.16762650300016],[-112.7178005409999,68.15592047600016],[-112.76119713499993,68.14560833100002]]],[[[-74.27696692599991,68.07762278900007],[-74.25544186099988,68.06346263200012],[-74.16087805899988,68.07021719000006],[-74.1258031889999,68.06708405199998],[-74.09190833199995,68.055853583],[-73.92308508999992,68.0338402360001],[-73.85619055899991,68.01186758000007],[-73.82949785099987,68.00714752800015],[-73.80431067599991,67.99738190300003],[-73.78966223899991,67.99510325700005],[-73.77554277299987,67.997951565],[-73.74941972599989,68.01129791900011],[-73.73501542899993,68.01618073100018],[-73.71548417899987,68.01715729400014],[-73.65973873599995,68.00946686400012],[-73.60480709499987,68.01581452000006],[-73.52183997299987,68.00958893400009],[-73.44615637899987,67.99298737200014],[-73.41291256399998,67.96841054900013],[-73.43032792899994,67.94232819200006],[-73.43342037699995,67.93427155200014],[-73.43032792899994,67.922796942],[-73.42247473899988,67.9115664730001],[-73.41246497299989,67.90289948100009],[-73.4029841789999,67.89956289300007],[-73.39924068899995,67.89443594000015],[-73.40074622299991,67.88275788000006],[-73.40607662699998,67.86196523600007],[-73.39932206899994,67.85541413],[-73.36803137899997,67.8441429710001],[-73.35826575399994,67.838080145],[-73.3596899079999,67.82404205900004],[-73.37116451699987,67.80316803600009],[-73.38902747299991,67.78432851800011],[-73.40949459499987,67.77602773600016],[-73.9059138659999,67.77745189000002],[-74.40233313699991,67.77887604400009],[-74.55064856699988,67.81012604400014],[-74.59797115799992,67.83022695500001],[-74.64024817599994,67.85667552299999],[-74.7532445949999,67.9474144550001],[-74.77013098899991,67.9641787780001],[-74.77721106699994,67.98517487200014],[-74.77521725199992,68.02936432500002],[-74.76895097599987,68.04832591400005],[-74.75601152299987,68.06342194200015],[-74.73070227799991,68.07412344000006],[-74.65729732999992,68.08417389500015],[-74.47716223899991,68.06981028900007],[-74.46206620999989,68.07103099199999],[-74.44847571499994,68.07562897300012],[-74.43455969999985,68.08510976800012],[-74.4369197259999,68.08608633],[-74.43797766799986,68.09186432500015],[-74.43732662699992,68.09926992400015],[-74.43455969999985,68.10496653900013],[-74.42894446499986,68.10834381700015],[-74.40949459499987,68.11692942900005],[-74.40347245999993,68.11859772300006],[-74.38581295499992,68.12791575700011],[-74.36192786399997,68.16986725500011],[-74.3383682929999,68.1807315120001],[-74.30943762899992,68.17523834800006],[-74.25084387899997,68.14647044500013],[-74.2216690749999,68.13971588700008],[-74.2144262359999,68.13540273600006],[-74.21507727799985,68.12579987200012],[-74.22179114499987,68.11615631700015],[-74.24400794199994,68.10822174700017],[-74.25926673099991,68.099554755],[-74.27212480399993,68.08844635600015],[-74.27696692599991,68.07762278900007]]],[[[-109.58165442599997,68.23590729400003],[-109.5958552729999,68.21832916900009],[-109.6178279289999,68.21694570500001],[-109.64216061099988,68.21954987200012],[-109.66356360599993,68.21426015800013],[-109.67503821499987,68.20172760600002],[-109.6766251289999,68.19245026200018],[-109.68040930899993,68.18382396],[-109.69835364499997,68.17328522300012],[-109.7819718089999,68.1426455750001],[-109.82933508999986,68.13812897300006],[-109.85602779899997,68.1596133480001],[-109.78482011599995,68.18089427300005],[-109.64317786399994,68.24262116100007],[-109.56798255099994,68.24957916900014],[-109.57433020699996,68.24225495000015],[-109.58165442599997,68.23590729400003]]],[[[-66.24404863199993,68.23794179900015],[-66.26325436099998,68.2221540390001],[-66.27065995999988,68.20026276200018],[-66.26195227799988,68.17694733300009],[-66.27057857999989,68.16144440300015],[-66.31663977799994,68.15949127800012],[-66.58096269399996,68.18691640800007],[-66.61953691299993,68.18573639500012],[-66.63756262899997,68.18870677300005],[-66.65269934799997,68.19773997600005],[-66.66112219999991,68.20945872600005],[-66.6585994129999,68.21637604400013],[-66.64712480399994,68.2199567730001],[-66.62877356699991,68.22166575700011],[-66.59601803299998,68.21869538000011],[-66.57066809799994,68.21246979400014],[-66.54775956899994,68.21352773600002],[-66.52232825399993,68.23224518400018],[-66.49689693899992,68.24396393400015],[-66.45933997299991,68.2467715520001],[-66.34357662699989,68.23419830900004],[-66.32774817599997,68.23590729400003],[-66.31737219999988,68.2425804710001],[-66.3058975899999,68.25389232000008],[-66.29751542899996,68.264634507],[-66.29637610599991,68.26947663000006],[-66.23338782499991,68.27667877800009],[-66.19831295499992,68.27570221600003],[-66.18309485599994,68.26264069200015],[-66.19025631399998,68.25511302299999],[-66.21715247299994,68.2499046900001],[-66.21788489499988,68.24213288],[-66.24404863199993,68.23794179900015]]],[[[-86.37246660099991,67.9365908870001],[-86.38190670499995,67.92682526200015],[-86.4126684239999,67.84491608300011],[-86.46450761599993,67.79189687700007],[-86.47777258999986,67.78286367400007],[-86.51060950399996,67.77464427299999],[-86.56655839799993,67.7377790390001],[-86.59752356699994,67.7282168640001],[-86.63878333199992,67.72915273600002],[-86.68008378799993,67.73505280200014],[-86.69448808499989,67.74188873900006],[-86.70986894399994,67.75820547100007],[-86.72077389199984,67.76581452000012],[-86.75853430899987,67.77753327],[-86.83657792899993,67.79181549700009],[-86.87189693899987,67.81012604400014],[-86.88609778599997,67.822943427],[-86.92039954299992,67.86139557500009],[-86.92711341099988,67.875677802],[-86.93024654899995,67.8873558610001],[-86.94391842399989,67.90704987200003],[-86.94701087099989,67.91689687700016],[-86.94904537699989,67.91998932500003],[-86.9525447259999,67.92182038000011],[-86.95421301999991,67.92454661699999],[-86.95042883999989,67.9305687520001],[-86.94090735599988,67.93707916900009],[-86.93293209499984,67.93618398600009],[-86.92438717399992,67.93333567900005],[-86.91291256399987,67.93427155200014],[-86.90709387899992,67.93829987200009],[-86.89777584499987,67.95075104400001],[-86.8924047519999,67.954779364],[-86.88316809799994,67.956488348],[-86.86685136599993,67.95697663000009],[-86.85826575399992,67.96100495000013],[-86.85069739499997,67.96572500200016],[-86.84862219999985,67.96649811400009],[-86.84398352799991,67.97528717700014],[-86.8380427729999,67.99091217700011],[-86.83714758999987,67.99201080900015],[-86.8478897779999,68.022162177],[-86.87441972599987,68.0337588560001],[-86.94017493399984,68.04291413],[-86.96898352799988,68.05467357000008],[-86.98570716099991,68.06745026200012],[-86.9873754549999,68.08429596600003],[-86.97126217399995,68.10838450700014],[-86.96019446499992,68.11473216399999],[-86.90916907499994,68.132269598],[-86.89785722599996,68.13788483300011],[-86.90078691299988,68.15070221600014],[-86.91291256399987,68.17328522300012],[-86.89513098899988,68.19513580900013],[-86.8266495429999,68.2277692730001],[-86.7996313139999,68.24583567900014],[-86.77635657499988,68.26727936400006],[-86.74771074099989,68.287014065],[-86.71690833199992,68.30231354400014],[-86.68691972599987,68.31037018400008],[-86.66002356699988,68.31037018400008],[-86.57713782499988,68.29059479400017],[-86.50234941299988,68.2631696640001],[-86.42967688699989,68.21906159100003],[-86.41600501199986,68.21426015800013],[-86.40782630099994,68.20774974200005],[-86.41502844999988,68.19318268400012],[-86.43370520699995,68.16705963700015],[-86.43541419199997,68.15159739800005],[-86.43541419199997,68.0981306010001],[-86.43000240799992,68.08136627800009],[-86.41490637899992,68.06378815300015],[-86.40217037699995,68.04389069200006],[-86.39216061099998,68.02313873900005],[-86.37376868399994,67.95917389500006],[-86.37246660099991,67.9365908870001]]],[[[-111.67699133999986,68.22532786699999],[-111.72606360599991,68.22150299700014],[-111.76870683499995,68.229925848],[-111.78136145699992,68.2558047550001],[-111.7706192699999,68.26740143400004],[-111.75153561099992,68.27472565300006],[-111.71934973899997,68.283148505],[-111.71715247299996,68.28864166900003],[-111.71939042899996,68.29559967700011],[-111.7200821609999,68.30170319199999],[-111.7127579419999,68.30418528900013],[-111.65786699099989,68.30418528900013],[-111.5286759109999,68.31403229400014],[-111.50023352799988,68.30418528900013],[-111.50633704299987,68.29913971600008],[-111.51276607999996,68.29694245000009],[-111.54784094999987,68.29669830900015],[-111.59919186099988,68.28994375200004],[-111.61693274599988,68.283148505],[-111.62954667899994,68.27024974199999],[-111.63589433499989,68.24705638200005],[-111.64484615799991,68.23590729400003],[-111.67699133999986,68.22532786699999]]],[[[-75.59748287699992,68.31378815300009],[-75.49657141799989,68.283148505],[-75.13760331899994,68.23627350500014],[-75.1170548169999,68.22182851800008],[-75.09959876199986,68.20376211100006],[-75.07876542899986,68.18691640800007],[-75.07079016799992,68.18305084800006],[-75.04515540299985,68.17479075700008],[-75.03351803299995,68.17328522300012],[-75.02879798099994,68.16925690300015],[-75.0099177729999,68.14594147300015],[-75.00560462099989,68.13711172100008],[-75.00352942599989,68.123277085],[-75.00719153599994,68.11054108300014],[-75.03465735599988,68.09926992400015],[-75.04271399599992,68.085638739],[-75.05150305899988,68.05719635600009],[-75.07005774599989,68.03318919500005],[-75.14305579299989,67.97833893400004],[-75.16136633999986,67.95311107],[-75.15318762899993,67.9382184920001],[-75.13565019399991,67.922796942],[-75.11668860599988,67.86627838700015],[-75.09434973899997,67.84731679900015],[-75.06729081899994,67.83299388200008],[-75.04405676999991,67.81696198100018],[-75.0609431629999,67.77692291900014],[-75.06554114499994,67.7316755230001],[-75.05931555899988,67.68622467700014],[-75.04405676999991,67.64569733300011],[-75.03685462099986,67.63690827000015],[-75.03136145699995,67.63442617400013],[-75.02863521999987,67.63068268400009],[-75.02977454299992,67.61835358300014],[-75.03522701699984,67.60748932500015],[-75.05370032499987,67.58421458500005],[-75.06505286399994,67.552435614],[-75.08242753799993,67.53318919500005],[-75.13939368399994,67.486761786],[-75.18447831899991,67.46010976800007],[-75.20482337099988,67.44391510600012],[-75.22956295499998,67.43203359600007],[-75.29796301999994,67.42267487200003],[-75.32526607999992,67.41290924700009],[-75.32664954299992,67.40940989800002],[-75.32697506399992,67.403753973],[-75.32795162699989,67.39744700700008],[-75.33141028599991,67.39240143400004],[-75.33804277299987,67.38939036700013],[-75.35216223899991,67.38788483300009],[-75.35936438699994,67.38556549700003],[-75.36799068899992,67.379584052],[-75.38792883999992,67.36147695500009],[-75.39045162699995,67.35765208500008],[-75.51056881399992,67.361070054],[-75.54377193899994,67.35146719],[-75.55370032499985,67.34320709800012],[-75.5682673819999,67.32436758000007],[-75.57848059799991,67.31671784100014],[-75.5958552729999,67.31110260600015],[-75.68968665299988,67.3078067080001],[-75.88927161399991,67.25800202000012],[-75.92105058499993,67.25527578300007],[-76.08897864499988,67.2621117210001],[-76.14761308499989,67.25527578300007],[-76.24327551999995,67.26951732],[-76.27464758999992,67.26520416900017],[-76.33775794199991,67.24591705900004],[-76.36681067599989,67.24160390800013],[-76.53766842399995,67.24754466400007],[-76.6009822259999,67.23200104400014],[-76.63365637899992,67.2279727230001],[-76.98155676999991,67.24331289300012],[-77.02098548099988,67.25869375200007],[-77.03319251199987,67.26585521000011],[-77.06200110599991,67.27582428600012],[-77.07591712099989,67.286281643],[-77.1134333979999,67.3241641300001],[-77.16808020699995,67.40607330900015],[-77.16185462099989,67.40607330900015],[-77.17804928299995,67.42552317900007],[-77.20099850199992,67.43598053600006],[-77.22655188699991,67.44342682500003],[-77.25059973899994,67.45384349200009],[-77.24185136599988,67.47357819200015],[-77.23802649599986,67.48944733300007],[-77.24233964799987,67.50462474200008],[-77.25804602799992,67.52277252800015],[-77.23546301999994,67.52924225500006],[-77.22695878799993,67.53497955900004],[-77.22329667899987,67.54328034100003],[-77.22765051999997,67.552435614],[-77.24844316299996,67.57868073100003],[-77.26374264199993,67.59393952],[-77.31822669199991,67.68793366100014],[-77.32266191299986,67.707993882],[-77.31578528599997,67.72508372600005],[-77.30150305899988,67.74192942900005],[-77.24494381399995,67.83600495000017],[-77.21222896999983,67.8704287780001],[-76.98306230399987,68.06342194200015],[-76.90802975199992,68.11180247600005],[-76.88068600199995,68.14280833500008],[-76.87718665299987,68.15281810100005],[-76.86839758999992,68.15900299700003],[-76.84654700399993,68.16705963700015],[-76.73078365799994,68.24310944200006],[-76.68887285099996,68.26264069200015],[-76.29914303299995,68.33478424700014],[-76.2716365229999,68.33612702000012],[-76.25218665299991,68.33173248900005],[-76.25625566299988,68.31785716400007],[-76.22813880099996,68.303859768],[-76.18268795499989,68.297796942],[-76.08185787699992,68.29767487200003],[-76.04792232999998,68.30475495000009],[-75.99120032499991,68.3288434920001],[-75.9112035799999,68.34454987200009],[-75.59748287699992,68.31378815300009]]],[[[-79.00841223899994,68.17694733300009],[-79.04426021999987,68.16620514500006],[-79.09752356699994,68.17706940300006],[-79.15001380099989,68.19912344000012],[-79.18346106699994,68.22166575700011],[-79.17601477799988,68.22846100500006],[-79.18683834499986,68.2463239600001],[-79.19054114499991,68.26788971600003],[-79.18883216099991,68.29022858300006],[-79.18224036399994,68.31663646000005],[-79.1832169259999,68.31907786699999],[-79.18236243399991,68.322455145],[-79.17601477799988,68.3315290390001],[-79.15611731699997,68.34454987200009],[-79.14557857999992,68.3475609400001],[-78.94131425699987,68.35358307500009],[-78.92894446499993,68.35138580900009],[-78.92772376199991,68.34804922100007],[-78.91494706899987,68.32990143400016],[-78.90904700399994,68.32404205900004],[-78.83120683499996,68.3007673200001],[-78.81041419199988,68.28449127800009],[-78.82998613199992,68.25267161700005],[-78.8712458979999,68.23037344],[-78.96914628799992,68.20429108300014],[-79.00841223899994,68.17694733300009]]],[[[-100.09068762899992,68.29059479400017],[-100.12096106699991,68.27863190300003],[-100.16315670499993,68.28823476800004],[-100.23403886599992,68.32404205900004],[-100.20067298099987,68.32737864800005],[-100.15550696499992,68.337591864],[-100.12075761599995,68.35488515800009],[-100.11864173099985,68.37929922100012],[-100.11001542899993,68.38051992400007],[-100.10313880099993,68.37938060100011],[-100.09703528599994,68.37653229400009],[-100.09068762899992,68.37250397300004],[-100.07774817599991,68.36261627800009],[-100.07868404899989,68.35468170800014],[-100.0855606759999,68.34699127800002],[-100.09068762899992,68.33771393400015],[-100.08836829299986,68.29987213700004],[-100.09068762899992,68.29059479400017]]],[[[-82.11558997299989,68.36505768400002],[-82.12022864499991,68.35643138200014],[-82.11180579299986,68.35236237200016],[-82.09683183499993,68.35114166900014],[-82.02196204299995,68.35419342700006],[-82.00011145699992,68.35138580900009],[-82.00084387899994,68.34589264500006],[-82.00348873599992,68.34251536700005],[-82.04710852799992,68.31679922100001],[-82.06639563699986,68.30805084800012],[-82.08141028599988,68.307318427],[-82.14932206899988,68.33441803600012],[-82.26040605399987,68.34442780200011],[-82.34894771999987,68.36505768400002],[-82.3280330069999,68.378607489],[-82.25572669199994,68.36188385600018],[-82.22545325399994,68.36505768400002],[-82.23192298099985,68.36871979400009],[-82.24083411399991,68.37612539300007],[-82.24596106699991,68.37929922100012],[-82.24596106699991,68.38556549700009],[-82.17666581899994,68.38544342700011],[-82.14073645699995,68.37970612200013],[-82.11558997299989,68.36505768400002]]],[[[-74.17332923099991,68.24713776200004],[-74.19810950399997,68.24579498900015],[-74.2216690749999,68.24957916900014],[-74.25731360599988,68.26894765800007],[-74.27131100199992,68.294826565],[-74.25877844999994,68.31513092699998],[-74.2149145169999,68.31785716400007],[-74.2149145169999,68.32404205900004],[-74.29674231699994,68.34560781500012],[-74.33454342399989,68.360500393],[-74.36876380099987,68.38922760600006],[-74.39220130099994,68.40912506700015],[-74.40094967399992,68.42259349200013],[-74.39976966099991,68.44082265800002],[-74.39049231699994,68.45368073100003],[-74.37608801999987,68.46259186400006],[-74.35973059799997,68.46751536700013],[-74.3202205069999,68.46881745000003],[-74.29775956899991,68.46442291900013],[-74.24791419199994,68.44318268400013],[-74.17039954299989,68.39972565300012],[-74.11864173099988,68.3588320980001],[-74.08409583199993,68.34324778899999],[-74.08071855399993,68.3327090520001],[-74.09439042899986,68.31415436400012],[-74.10863196499987,68.30540599200003],[-74.12564042899993,68.29852936400012],[-74.13996334499984,68.28912995000012],[-74.15387936099992,68.25556061400009],[-74.17332923099991,68.24713776200004]]],[[[-110.69888261599992,68.48859284100013],[-110.72427324099995,68.48773834800015],[-110.73241126199987,68.48859284100013],[-110.90241451699993,68.46987539300008],[-111.08218339799993,68.47492096600003],[-111.09520423099991,68.48004791900003],[-111.07909094999992,68.49160390800016],[-111.03404700399996,68.50967031500006],[-110.83604895699997,68.5506859400001],[-110.79865475199993,68.54852936400009],[-110.75572669199997,68.53583405200011],[-110.71873938699993,68.51504140800012],[-110.69888261599992,68.48859284100013]]],[[[-110.6225479809999,68.57111237200014],[-110.62999426999995,68.56427643400004],[-110.63369706899991,68.56167226800012],[-110.63634192599989,68.55914948100003],[-110.63931230399992,68.55744049700003],[-110.64427649599986,68.55744049700003],[-110.64427649599986,68.5506859400001],[-110.52074133999986,68.5506859400001],[-110.5524796209999,68.52871328300007],[-110.61432857999989,68.52260976800007],[-110.68077551999991,68.52708567900005],[-110.72618567599991,68.53701406500015],[-110.73761959499987,68.54364655200011],[-110.7525935539999,68.55532461100002],[-110.76048743399986,68.56622955900018],[-110.7503962879999,68.57111237200014],[-110.68757076699985,68.56757233300009],[-110.65729732999995,68.56915924700012],[-110.62999426999995,68.57855866100012],[-110.6225479809999,68.57111237200014]]],[[[-104.52892005099989,68.403306382],[-104.65518144399988,68.3980166690001],[-104.71524003799989,68.41461823100015],[-104.77277584499987,68.42348867400001],[-104.80540930899991,68.43756745000015],[-104.8625382149999,68.44635651200004],[-104.90135657499991,68.45783112200017],[-105.00405839799994,68.50967031500006],[-105.04161536399995,68.538519598],[-105.06216386599988,68.54950592700006],[-105.08600826699987,68.5506859400001],[-104.9908748039999,68.57855866100012],[-104.88890540299988,68.587347723],[-104.68130449099993,68.57855866100012],[-104.65074622299991,68.56696198100012],[-104.57567298099988,68.55438873900012],[-104.51988684799989,68.5264346370001],[-104.49014238199987,68.51585521000014],[-104.47850501199987,68.51333242400013],[-104.4683731759999,68.507025458],[-104.45230058499993,68.49192942899998],[-104.42943274599992,68.44497304900013],[-104.46580969999991,68.41689687700013],[-104.52892005099989,68.403306382]]],[[[-113.76203365799985,68.59780508000007],[-113.79576575399993,68.581732489],[-113.9674373039999,68.59780508000007],[-113.96003170499992,68.60521067900005],[-113.9674373039999,68.61212799700014],[-113.9553930329999,68.61831289300012],[-113.9418839179999,68.62030670800004],[-113.83527584499988,68.61444733300011],[-113.76203365799985,68.59780508000007]]],[[[-78.58584550699993,68.62982819200006],[-78.56647701699984,68.62571849200009],[-78.48985755099994,68.62738678600012],[-78.46344967399997,68.61953359600015],[-78.46568762899994,68.61123281500006],[-78.46593176999991,68.60834381700012],[-78.46499589799993,68.60565827000006],[-78.46344967399997,68.59780508000007],[-78.47276770699992,68.59194570500013],[-78.47520911399994,68.58222077000009],[-78.47695878799993,68.57021719000006],[-78.48395748599992,68.55744049700003],[-78.50527910099989,68.54547760600009],[-78.53099524599995,68.54437897300012],[-78.65664628799996,68.5631371110001],[-78.66885331899994,68.5540225280001],[-78.67552649599989,68.54043203300016],[-78.69115149599989,68.53119538],[-78.70946204299995,68.525620835],[-78.72419186099992,68.52334219],[-78.70010331899991,68.51821523600009],[-78.62922115799992,68.51520416900009],[-78.61424719999988,68.50629303600006],[-78.62401282499991,68.493109442],[-78.6465551419999,68.48265208500011],[-78.73741614499997,68.45233795800013],[-78.78408769399996,68.44586823100003],[-78.83165442599994,68.44733307500009],[-78.88182532499985,68.45441315300015],[-78.86656653599988,68.46572500200013],[-78.86070716099994,68.46869538000006],[-78.88434811099995,68.47650788000006],[-78.97057044199991,68.47492096600003],[-78.95897376199989,68.481878973],[-78.94823157499988,68.49103424700009],[-78.94367428299992,68.50088125200001],[-78.95067298099991,68.50967031500006],[-78.93553626199991,68.52187734600015],[-78.92039954299992,68.52204010600012],[-78.90469316299996,68.51764557500003],[-78.88801021999993,68.51585521000014],[-78.87096106699997,68.52265045800006],[-78.84422766799986,68.54559967700006],[-78.82998613199992,68.5506859400001],[-78.74278723899994,68.551947333],[-78.70335852799985,68.56171295800011],[-78.66885331899994,68.58478424700009],[-78.69245357999998,68.59983958500003],[-78.72057044199997,68.60492584800012],[-78.75015214799993,68.6066755230001],[-78.77814693899995,68.61212799700014],[-78.7718806629999,68.61953359600015],[-78.90168209499987,68.653021552],[-78.89354407499994,68.65668366100006],[-78.88630123599992,68.65888092700014],[-78.86750240799995,68.66046784100017],[-78.84251868399986,68.66730377800008],[-78.6751195949999,68.65835195500007],[-78.6490372389999,68.653021552],[-78.58584550699993,68.62982819200006]]],[[[-74.51707923099985,68.56427643400004],[-74.53819739499997,68.55499909100008],[-74.78819739499991,68.5613467470001],[-74.81908118399988,68.56769440300006],[-74.8448380199999,68.57855866100012],[-74.85846920499995,68.589544989],[-74.8932185539999,68.62571849200009],[-74.82982337099989,68.6616071640001],[-74.79259192599989,68.67568594000015],[-74.68301347599996,68.66327545800011],[-74.6460668609999,68.647447007],[-74.64964758999989,68.62262604400003],[-74.64745032499988,68.61163971600017],[-74.62364661399991,68.60382721600007],[-74.57453365799995,68.59780508000007],[-74.56354732999989,68.59365469000012],[-74.51707923099985,68.56427643400004]]],[[[-114.04775956899992,68.62718333500008],[-114.07046464799996,68.61953359600015],[-114.10684160099994,68.628363348],[-114.16417395699997,68.66913483300006],[-114.19273841099997,68.68097565300003],[-114.18032792899993,68.68602122600005],[-114.16657467399992,68.68618398600002],[-114.15420488199989,68.68195221600011],[-114.14622962099993,68.67413971600011],[-114.07176673099987,68.64459870000015],[-114.04775956899992,68.62718333500008]]],[[[-74.90330969999988,68.55288320500006],[-74.86701412699998,68.53571198100006],[-74.82640540299988,68.50885651200015],[-74.79067949099993,68.4960798200001],[-74.77375240799995,68.48550039300007],[-74.7709854809999,68.4732933610001],[-74.78148352799987,68.46100495000003],[-74.79759680899994,68.45140208500005],[-74.81126868399988,68.44757721600014],[-74.86217200399989,68.45014069200015],[-74.88687089799987,68.44660065300015],[-74.90005449099993,68.43390534100011],[-74.89610755099994,68.42182038],[-74.87987219999991,68.41819896000014],[-74.83800208199989,68.42023346600017],[-74.79600989499991,68.42169830900004],[-74.78425045499992,68.41791413000003],[-74.79084225199989,68.40599192900008],[-74.80524654899997,68.3980166690001],[-74.82648678299995,68.39118073100009],[-74.84850012899994,68.38654205900015],[-74.86534583199995,68.38556549700009],[-74.86534583199995,68.37929922100012],[-74.85008704299989,68.37840403900005],[-74.82681230399987,68.37457916900003],[-74.80752519399994,68.36615631700009],[-74.80451412699993,68.35138580900009],[-74.81480872299994,68.34398021000011],[-74.84508216099994,68.3492699240001],[-74.85912024599989,68.34454987200009],[-74.83299719999984,68.33852773600007],[-74.82144120999993,68.33307526200004],[-74.81126868399988,68.32404205900004],[-74.84264075399992,68.32269928600014],[-74.85228430899988,68.32404205900004],[-74.86481686099997,68.33047109600012],[-74.87413489499991,68.33852773600007],[-74.8841446609999,68.34398021000011],[-74.97630774599989,68.33515045800006],[-74.99624589799987,68.33771393400015],[-75.00645911399991,68.3461774760001],[-75.00731360599991,68.36912669500002],[-75.01618404899995,68.38556549700009],[-75.03465735599988,68.3972028670001],[-75.25633704299989,68.44936758000013],[-75.3789770169999,68.49884674700017],[-75.41148841099997,68.52277252800003],[-75.39415442599989,68.5506859400001],[-75.40038001199994,68.5506859400001],[-75.39452063699989,68.56500885600015],[-75.39513098899994,68.5790876320001],[-75.40038001199994,68.60871002800015],[-75.39207923099985,68.62596263200004],[-75.33141028599991,68.66046784100017],[-75.32396399599992,68.67108795800011],[-75.31004798099985,68.69643789300015],[-75.30101477799994,68.701402085],[-75.28246008999992,68.70844147300006],[-75.26036536399992,68.72064850500006],[-75.23892167899989,68.72479889500008],[-75.22223873599995,68.70766836100013],[-75.2018123039999,68.70270416900009],[-75.17048092399995,68.68984609600007],[-75.01988684799989,68.68097565300003],[-74.98936926999994,68.66876862200014],[-74.97435462099992,68.64105866100006],[-74.96251380099997,68.61102936400012],[-74.9416397779999,68.59153880400011],[-74.9339086579999,68.5713565120001],[-74.90330969999988,68.55288320500006]]],[[[-68.39586341099994,68.8093936220001],[-68.32140051999988,68.79706452000006],[-68.20470130099989,68.79706452000006],[-68.00609290299985,68.77033112200014],[-67.69627844999985,68.7194684920001],[-67.66344153599992,68.70766836100013],[-67.66344153599992,68.701402085],[-67.91466223899991,68.71051666900009],[-68.18732662699992,68.76691315300003],[-68.44200598899997,68.78457265800016],[-68.45856686099995,68.79364655200006],[-68.45311438699991,68.80927155200013],[-68.44054114499991,68.81622955900004],[-68.42682857999998,68.81781647300006],[-68.41759192599991,68.81753164300012],[-68.39586341099994,68.8093936220001]]],[[[-101.77798417899993,68.78856028900013],[-101.7552384109999,68.78766510600003],[-101.73005123599984,68.79051341399999],[-101.70775305899988,68.7878278670001],[-101.69395911399988,68.77033112200014],[-101.69465084499991,68.75556061400006],[-101.70042883999989,68.73053620000015],[-101.70140540299985,68.72199127800003],[-101.69888261599993,68.71039459800012],[-101.69391842399989,68.69814687700016],[-101.67967688699989,68.67413971600011],[-101.69399980399987,68.65387604400009],[-101.70311438699986,68.64447663000009],[-101.71507727799988,68.63873932500009],[-101.73867753799992,68.63861725500011],[-101.82494055899987,68.653021552],[-101.8088272779999,68.6439883480001],[-101.79979407499988,68.63605377800003],[-101.79898027299988,68.62738678600012],[-101.81696529899992,68.60203685099998],[-101.82201087099995,68.58909739799999],[-101.82917232999989,68.57835521000008],[-101.84479732999996,68.57111237200014],[-101.86620032499991,68.57245514500015],[-101.90566972599989,68.59271881700006],[-101.92324785099991,68.59780508000007],[-101.94640051999995,68.60138580900006],[-101.9959610669999,68.61676666900009],[-102.02293860599985,68.61953359600015],[-102.05313066299995,68.61318594000004],[-102.0641983709999,68.61212799700014],[-102.07738196499994,68.61420319200009],[-102.09911048099991,68.62360260600009],[-102.11465410099991,68.62742747600011],[-102.1262100899999,68.635728257],[-102.13280188699991,68.63873932500009],[-102.14793860599991,68.64126211100002],[-102.1873673169999,68.63873932500009],[-102.21003170499995,68.64215729400011],[-102.25352942599989,68.65704987200014],[-102.29043535099993,68.66356028900007],[-102.35191809799991,68.687201239],[-102.31297766799992,68.688462632],[-102.26105709499984,68.69891998900009],[-102.21080481699995,68.71478913],[-102.15977942599997,68.74062734600012],[-102.07310950399992,68.76093170800011],[-102.0646052729999,68.76430898600012],[-102.0576879549999,68.77033112200014],[-102.05410722599993,68.77912018400012],[-102.05492102799985,68.78693268400009],[-102.0571996739999,68.79319896000005],[-102.0576879549999,68.79706452000006],[-102.02464758999986,68.82379791900017],[-101.97956295499998,68.82599518400015],[-101.77798417899993,68.78856028900013]]],[[[-114.35098222599993,68.87274811400013],[-114.38219153599992,68.86920807500015],[-114.41738847599989,68.87360260600015],[-114.45010331899991,68.88271719000012],[-114.47394771999988,68.893255927],[-114.46271725199998,68.89777252800015],[-114.45075436099985,68.89996979400014],[-114.43838456899992,68.90037669500005],[-114.35399329299995,68.89435455900006],[-114.33047441299989,68.88617584800011],[-114.35098222599993,68.87274811400013]]],[[[-100.15420488199992,68.92340729400003],[-100.12486731699991,68.90692780200014],[-100.18008378799992,68.893255927],[-100.16559811099987,68.87726471600011],[-100.17121334499988,68.86481354400009],[-100.18789628799992,68.85635000200013],[-100.20677649599995,68.85228099199999],[-100.20132402299991,68.84105052299998],[-100.18517005099994,68.82550690300017],[-100.18008378799992,68.81753164300012],[-100.17756100199989,68.80337148600002],[-100.18248450399996,68.80255768400009],[-100.19286048099987,68.80585358300011],[-100.20677649599995,68.80390045800009],[-100.2195531889999,68.793931382],[-100.21886145699995,68.786566473],[-100.21568762899989,68.77948639500012],[-100.22105872299994,68.77033112200014],[-100.23916581899995,68.76585521],[-100.28897050699993,68.77338288000014],[-100.31041419199995,68.77033112200014],[-100.3314509759999,68.75421784100008],[-100.34618079299989,68.73663971600014],[-100.36351477799988,68.72207265800002],[-100.39240475199988,68.71507396000013],[-100.41828365799991,68.71898021000014],[-100.44542395699992,68.73053620000015],[-100.4947810539999,68.76288483300009],[-100.44701087099986,68.77655670800002],[-100.4571833979999,68.79266998900009],[-100.47118079299986,68.79975006700015],[-100.48843339799987,68.80044179900007],[-100.50841223899994,68.79706452000006],[-100.54503333199996,68.786078192],[-100.56017005099996,68.77781810100011],[-100.55626380099994,68.77033112200014],[-100.5794571609999,68.752915757],[-100.60334225199996,68.75556061400006],[-100.62242591099995,68.77236562700007],[-100.6313370429999,68.79706452000006],[-100.63036048099993,68.874701239],[-100.62205969999985,68.919623114],[-100.61412512899997,68.92251211100013],[-100.60293535099987,68.92177969],[-100.59040279899996,68.92739492400001],[-100.57974199099993,68.94798411700005],[-100.58910071499987,68.96527741100012],[-100.6313370429999,68.99567291900009],[-100.57892818899992,69.01186758000016],[-100.57046464799988,69.02020905200011],[-100.56065833199995,69.03778717700004],[-100.53766842399996,69.041978257],[-100.40412350199996,69.02973053600012],[-100.36143958199993,69.01923248900015],[-100.32347571499994,69.00311920800007],[-100.32852128799988,68.979641018],[-100.30915279899995,68.9658877620001],[-100.28058834499986,68.95600006700009],[-100.22862708199987,68.92890045800006],[-100.15420488199992,68.92340729400003]]],[[[-100.00841223899995,68.9484723980001],[-100.02183997299994,68.940375067],[-100.03482011599993,68.9408633480001],[-100.16584225199992,68.96832916900001],[-100.19762122299996,68.98191966399999],[-100.22736568899988,68.99970123900006],[-100.24864661399995,69.02228424700006],[-100.25519771999984,69.05027903900007],[-100.24962317599991,69.06899648600013],[-100.23827063699987,69.08454010600003],[-100.22325598899994,69.0967471370001],[-100.20677649599995,69.10553620000016],[-100.17251542899989,69.114976304],[-100.16270911399994,69.12295156500015],[-100.1516820949999,69.13715241100006],[-100.14614824099988,69.1425641950001],[-100.13853919199994,69.14712148600013],[-100.13243567599994,69.13617584800008],[-100.1226700509999,69.12921784100008],[-100.09691321499987,69.11920807500012],[-100.07664954299987,69.11517975500014],[-100.0510147779999,69.10687897300006],[-100.03473873599987,69.09617747600005],[-100.04230709499991,69.08502838700012],[-100.0322973299999,69.0729841170001],[-100.00503495999993,69.05353424700012],[-99.99449622299997,69.044094143],[-99.98631751199987,69.02960846600014],[-99.98599199099992,69.017279364],[-100.00096594999988,68.960638739],[-100.00841223899995,68.9484723980001]]],[[[-90.2515763009999,69.12262604400001],[-90.23298092399992,69.11920807500012],[-90.2122696609999,69.12466054900015],[-90.19591223899991,69.13540273600016],[-90.17845618399994,69.14313385600018],[-90.15469316299993,69.139634507],[-90.1600642569999,69.13336823100003],[-90.16543535099996,69.12946198100003],[-90.17235266799986,69.12738678600012],[-90.1820369129999,69.126654364],[-90.1820369129999,69.11920807500012],[-90.17105058499995,69.11733633000013],[-90.16161048099994,69.11395905200011],[-90.15367591099988,69.109808661],[-90.14728756399987,69.10553620000016],[-90.14464270699997,69.09113190300012],[-90.12999426999994,69.06500885600015],[-90.12743079299993,69.05776601800012],[-90.1380102199999,69.04995351800011],[-90.15465247299993,69.05101146],[-90.1660863919999,69.06053294499999],[-90.1609594389999,69.07819245000009],[-90.21165930899986,69.06952545800003],[-90.23420162699995,69.07050202000009],[-90.25373287699992,69.08161041900011],[-90.26886959499991,69.09857819200009],[-90.2767634759999,69.11399974200009],[-90.2757462229999,69.1296247420001],[-90.26398678299995,69.14712148600013],[-90.25422115799992,69.13987864800013],[-90.25438391799989,69.13060130400008],[-90.2515763009999,69.12262604400001]]],[[[-136.0668381819999,69.12853045500007],[-136.02153024499984,69.1083703150001],[-136.00626708499996,69.09028059900002],[-136.03906945199992,69.08700896700013],[-136.08698404599994,69.09009321100014],[-136.11961679099994,69.07934224500012],[-136.1675912379999,69.086665112],[-136.22191015599992,69.10568475800001],[-136.22531420799993,69.12060374100004],[-136.17731438999988,69.11649350700013],[-136.18074372899994,69.133545977],[-136.2233231099999,69.15687255000013],[-136.2477416529999,69.1717222650001],[-136.21194151799986,69.17930901300015],[-136.14547243699985,69.16138041800018],[-136.0668381819999,69.12853045500007]]],[[[-101.6635636059999,69.08808014500002],[-101.6822403639999,69.08673737200003],[-101.70140540299985,69.09870026200015],[-101.68101966099988,69.11688873900015],[-101.61847896999986,69.13251373900012],[-101.60521399599992,69.15053945500016],[-101.61945553299992,69.16429271000008],[-101.69163977799991,69.16714101800002],[-101.72191321499992,69.180609442],[-101.68907630099991,69.21116771000011],[-101.62775631399988,69.22353750200007],[-101.5637914699999,69.21954987200009],[-101.52326412699998,69.20111725500004],[-101.5244848299999,69.19769928600014],[-101.52501380099997,69.1944847680001],[-101.52619381399991,69.19131094000012],[-101.52944902299994,69.18805573100018],[-101.50454667899992,69.17572663000011],[-101.50609290299987,69.154771226],[-101.52464758999986,69.13178131699999],[-101.55060787699995,69.11298248900006],[-101.5667618479999,69.10687897300006],[-101.58747311099992,69.10236237200012],[-101.62564042899989,69.09870026200015],[-101.64476477799987,69.094671942],[-101.6635636059999,69.08808014500002]]],[[[-90.57982337099986,69.36196523600013],[-90.54820716099997,69.34198639500005],[-90.53795325399994,69.33169179900013],[-90.52330481699994,69.31134674700014],[-90.51378333199995,69.30101146000014],[-90.49901282499985,69.29218170800009],[-90.48379472599987,69.28660716399999],[-90.47081458199997,69.27887604400014],[-90.4625544909999,69.263128973],[-90.47374426999991,69.261419989],[-90.48371334499988,69.257513739],[-90.49176998599992,69.25128815300005],[-90.49738521999983,69.24266185100005],[-90.48835201699993,69.24787018400004],[-90.47935950399992,69.24966054900004],[-90.47069251199991,69.24799225500003],[-90.4625544909999,69.24266185100005],[-90.45628821499994,69.23419830900008],[-90.45938066299993,69.22968170800014],[-90.46735592399997,69.22654857000008],[-90.48916581899994,69.21491120000015],[-90.50503495999995,69.21149323100013],[-90.53831946499986,69.20856354400003],[-90.5722550119999,69.20156484600015],[-90.59056555899987,69.20014069200009],[-90.60350501199989,69.204820054],[-90.61021887899992,69.21507396000011],[-90.61432857999998,69.22577545800006],[-90.6206762359999,69.23541901200012],[-90.63390051999994,69.24266185100005],[-90.62433834499987,69.24819570500014],[-90.62022864499991,69.24949778900007],[-90.62022864499991,69.256333726],[-90.64110266799989,69.25446198100012],[-90.6565649079999,69.24477773600013],[-90.67015540299985,69.2340762390001],[-90.6854141919999,69.22907135600009],[-90.69127356699997,69.23432038000009],[-90.68077551999988,69.24603913000006],[-90.66331946499994,69.25775788000006],[-90.64818274599995,69.263128973],[-90.64818274599995,69.2700056010001],[-90.67951412699998,69.26805247600008],[-90.69147701699993,69.27167389500012],[-90.69538326699991,69.28367747600005],[-90.69009355399993,69.28974030200006],[-90.65440833199989,69.31098053600012],[-90.68171139199985,69.31098053600012],[-90.68171139199985,69.31842682500012],[-90.66030839799993,69.33234284100008],[-90.65599524599992,69.34979889500015],[-90.66714433499993,69.35748932500015],[-90.69225012899994,69.34198639500005],[-90.73021399599995,69.30402252800003],[-90.75055904899995,69.28925202000006],[-90.77725175699996,69.27680084800012],[-90.77700761599993,69.32868073100003],[-90.7710668609999,69.34511953300012],[-90.75690670499998,69.35708242400007],[-90.73668372299993,69.36522044499999],[-90.65953528599991,69.38129303600006],[-90.61896725199989,69.3763695330001],[-90.57982337099986,69.36196523600013]]],[[[-78.45665442599994,69.39354075700011],[-78.41222083199992,69.38690827000006],[-78.31273352799985,69.38711172100001],[-78.27505449099988,69.36961497600005],[-78.24058997299994,69.32831452000012],[-78.2140193349999,69.30288320500001],[-78.21467037699995,69.29393138200008],[-78.23717200399994,69.29047272300006],[-78.26349850199995,69.282212632],[-78.29507402299993,69.26251862200014],[-78.32188880099994,69.23883698100003],[-78.33311926999994,69.21881745000013],[-78.34170488199993,69.20677317900004],[-78.36070716099994,69.19920482000002],[-78.37970943899995,69.197943427],[-78.38833574099996,69.204820054],[-78.39696204299985,69.21771881700003],[-78.41710364499991,69.22264232],[-78.43993079299992,69.22475820500007],[-78.45665442599994,69.22907135600009],[-78.47158769399988,69.2194684920001],[-78.47508704299989,69.20555247600014],[-78.47085527299996,69.17072174700007],[-78.48371334499988,69.162014065],[-78.54515540299987,69.143011786],[-78.56647701699984,69.13279857000008],[-78.55158443899998,69.1024437520001],[-78.60383053299998,69.06903717700011],[-78.71727454299992,69.01679108300011],[-78.72028561099992,69.00763580900004],[-78.71987870999992,68.98554108300014],[-78.72419186099992,68.97516510600006],[-78.7398982409999,68.96426015800006],[-78.79922441299996,68.95132070500007],[-78.81078040299988,68.94391510600018],[-78.81688391799989,68.93659088700015],[-78.82176673099984,68.92816803600012],[-78.82998613199992,68.917425848],[-78.84658769399991,68.90790436400003],[-78.87059485599985,68.90249258000007],[-78.93272864499997,68.89728424700017],[-78.96532141799992,68.88792552300013],[-79.07982337099992,68.8789737000001],[-79.14464270699992,68.86933014500012],[-79.16266842399995,68.8622093770001],[-79.21275794199997,68.834906317],[-79.22785396999987,68.83120351800005],[-79.26817786399994,68.83226146000011],[-79.28799394399994,68.83551666900014],[-79.34552975199995,68.8526878930001],[-79.38548743399988,68.85846588700015],[-79.39671790299988,68.86322663000006],[-79.40001380099991,68.87421295800003],[-79.39761308499988,68.88678620000009],[-79.3919978509999,68.89638906500006],[-79.38817298099988,68.90696849200013],[-79.39858964799994,68.9130720070001],[-79.41344153599991,68.91864655200011],[-79.42300370999989,68.92739492400001],[-79.36864173099988,68.94159577000003],[-79.3258357409999,68.96991608300006],[-79.24176998599995,69.06207916900001],[-79.22484290299988,69.07534414300007],[-79.20417232999995,69.08490631700015],[-79.17601477799988,69.09186432500003],[-79.15998287699998,69.0937360700001],[-79.12071692599997,69.09186432500003],[-79.09972083199992,69.09393952000005],[-79.06248938699994,69.10342031500006],[-79.04255123599995,69.10553620000016],[-78.97642981699994,69.103705145],[-78.95750891799995,69.10919830900002],[-78.92308508999992,69.12946198100003],[-78.91063391799989,69.13458893400015],[-78.87612870999988,69.14264557500009],[-78.86327063699994,69.14842357000005],[-78.85448157499988,69.16014232000005],[-78.85285396999986,69.17182038000014],[-78.85757402299986,69.19041575700014],[-78.85448157499988,69.20111725500004],[-78.83877519399991,69.21527741100009],[-78.76512610599985,69.256333726],[-78.72728430899991,69.26984284100014],[-78.6582738919999,69.25787995000003],[-78.62169348899992,69.263128973],[-78.64704342399989,69.28070709800012],[-78.71092688699991,69.303412177],[-78.73094641799985,69.32526276200004],[-78.72232011599996,69.33714427299998],[-78.7101130849999,69.34162018400004],[-78.67568925699996,69.34511953300012],[-78.65721594999994,69.35077545800011],[-78.60741126199986,69.37299225500009],[-78.58543860599994,69.37702057500015],[-78.52489173099985,69.379868882],[-78.47740637899994,69.3918317730001],[-78.45665442599994,69.39354075700011]]],[[[-135.52159583199992,69.40741608300011],[-135.4609268869999,69.39354075700011],[-135.38914954299992,69.40005117400001],[-135.35338294199988,69.39704010600012],[-135.3209529289999,69.379868882],[-135.34068762899994,69.36347077000009],[-135.34829667899996,69.35936107000013],[-135.32624264199987,69.35496653900005],[-135.28099524599992,69.36176178600009],[-135.27257239499988,69.34882233300009],[-135.2781876289999,69.33152903899999],[-135.2915746739999,69.31590403899999],[-135.30760657499988,69.30914948100015],[-135.34496008999992,69.33283112200017],[-135.37279212099992,69.34369538000006],[-135.5667618479999,69.38605377800015],[-135.5516658189999,69.40713125200006],[-135.52159583199992,69.40741608300011]]],[[[-80.0878066999999,69.36562326100001],[-80.13129082599988,69.36250101400005],[-80.18201203299992,69.37959513200009],[-80.20770979399987,69.40806662800009],[-80.20103765899992,69.42770454600004],[-80.14657770399985,69.40050573200007],[-80.12426368799996,69.39333197700007],[-80.07100557699997,69.383583124],[-80.0878066999999,69.36562326100001]]],[[[-81.71348368999992,69.42822833600002],[-81.64327938799997,69.41437846600012],[-81.54852694199987,69.41548622400002],[-81.50578946199997,69.40682846600008],[-81.49912241899997,69.37209129300005],[-81.48563125999988,69.34718034400011],[-81.56829943099993,69.344258432],[-81.67218402199983,69.3535115800001],[-81.70079595799986,69.36884492600002],[-81.69191101099995,69.38438648300001],[-81.78196996399993,69.387339103],[-81.7673482079999,69.36529275000011],[-81.83030918499986,69.344332308],[-81.8827024849999,69.36328218600003],[-81.90272274399993,69.39414630100013],[-81.89675671699985,69.41696085100007],[-81.83886931599991,69.43378785700004],[-81.71348368999992,69.42822833600002]]],[[[-90.18138587099986,69.39508698100015],[-90.19570878799993,69.38605377800015],[-90.1819962229999,69.387152411],[-90.16893469999985,69.38621653900009],[-90.15721594999985,69.38206614799999],[-90.14728756399987,69.37299225500009],[-90.1536352199999,69.36001211100007],[-90.16283118399986,69.34906647300004],[-90.17536373599995,69.34170156500012],[-90.21263587099992,69.334906317],[-90.22549394399995,69.3249372420001],[-90.23623613199986,69.31171295800006],[-90.2503555979999,69.29791901200015],[-90.25072180899991,69.27838776200015],[-90.27171790299985,69.261419989],[-90.29727128799993,69.25397370000003],[-90.31175696499989,69.263128973],[-90.31859290299991,69.263128973],[-90.32762610599991,69.23895905199998],[-90.35509192599997,69.24648672100015],[-90.40794837099992,69.27680084800012],[-90.40794837099992,69.28367747600005],[-90.39460201699993,69.29393138200008],[-90.40339107999998,69.30019765800004],[-90.42308508999992,69.30329010600012],[-90.4421280589999,69.304144598],[-90.4586482409999,69.30906810100008],[-90.48859615799995,69.329291083],[-90.51036536399994,69.3314476580001],[-90.50621497299989,69.34467194200012],[-90.5086563789999,69.35565827],[-90.50674394399996,69.36664459800015],[-90.48989824099995,69.379868882],[-90.38971920499993,69.40338776200004],[-90.37319902299987,69.4108747420001],[-90.36876380099991,69.42206452000012],[-90.3574112619999,69.42715078300013],[-90.32542883999992,69.42829010600018],[-90.31501217399995,69.42987702000002],[-90.30874589799988,69.4330508480001],[-90.30235755099997,69.43537018400004],[-90.29124915299994,69.43451569200015],[-90.28111731699988,69.430853583],[-90.2503555979999,69.41400788],[-90.2503555979999,69.40778229400003],[-90.25536048099994,69.40436432500003],[-90.25841223899994,69.40082428600014],[-90.2607315749999,69.39728424700013],[-90.26398678299995,69.39354075700011],[-90.23932857999995,69.39459870000017],[-90.22638912699993,69.402818101],[-90.22883053299998,69.41510651200004],[-90.2503555979999,69.42829010600018],[-90.23936926999993,69.43231842700006],[-90.21593176999997,69.44452545800011],[-90.20189368399991,69.44814687700008],[-90.20933997299987,69.43451569200015],[-90.20612545499995,69.42942942900011],[-90.20299231699997,69.42572663000009],[-90.19957434799994,69.423000393],[-90.18321692599994,69.41498444200006],[-90.17784583199997,69.40566640800002],[-90.18138587099986,69.39508698100015]]],[[[-77.0477595689999,69.419663804],[-76.97630774599992,69.40778229400003],[-76.78449459499993,69.40778229400003],[-76.75755774599986,69.41315338700018],[-76.73672441299988,69.42230866100006],[-76.71678626199987,69.42499420800014],[-76.69229081899996,69.4108747420001],[-76.65306555899994,69.39191315300009],[-76.64732825399996,69.38296133000007],[-76.64964758999992,69.37091705900015],[-76.65355383999992,69.36054108300006],[-76.65436764199984,69.35028717700014],[-76.64732825399996,69.33893463700015],[-76.67345130099991,69.33071523600016],[-76.67967688699989,69.32343170800006],[-76.67520097599993,69.31098053600012],[-76.70693925699987,69.30597565300009],[-76.76569576699987,69.28237539300015],[-76.79474850199995,69.27680084800012],[-76.81578528599988,69.27033112200003],[-76.8592830069999,69.24176666900014],[-76.88414466099997,69.23525625200016],[-76.90827389199987,69.2320824240001],[-76.93028723899988,69.22284577000012],[-76.9435929029999,69.20799388200005],[-76.94212805899994,69.18805573100018],[-76.92589270699989,69.17133209800015],[-76.90396074099986,69.16502513200011],[-76.88068600199995,69.16168854400009],[-76.86021887899989,69.15395742400007],[-76.87437903599991,69.14472077],[-76.88939368399984,69.13715241100006],[-76.92170162699998,69.126654364],[-76.90758216099994,69.11546458500008],[-76.90119381399992,69.11298248900006],[-76.90119381399992,69.10553620000016],[-76.9310603509999,69.11115143400018],[-76.94456946499989,69.11688873900015],[-76.95641028599994,69.126654364],[-76.95506751199986,69.14101797100007],[-76.9915258449999,69.14508698100003],[-77.07249915299988,69.139634507],[-77.13548743399987,69.12107982],[-77.15819251199994,69.11815013200005],[-77.26496334499984,69.14671458500005],[-77.31944739499991,69.18097565300012],[-77.3669327459999,69.2245954450001],[-77.38719641799995,69.26654694200002],[-77.38084876199991,69.28400299700016],[-77.35045325399994,69.31061432500012],[-77.33999589799987,69.32526276200004],[-77.33885657499994,69.34560781500002],[-77.3463435539999,69.3617210960001],[-77.35582434799991,69.37567780200006],[-77.36046301999994,69.3897972680001],[-77.32677161399994,69.41705963700016],[-77.25011145699997,69.43512604400007],[-77.1134333979999,69.44814687700008],[-77.08381100199995,69.43089427299998],[-77.0477595689999,69.419663804]]],[[[-135.70595267799982,69.50875084799999],[-135.59118232099985,69.46710471900015],[-135.5952433309999,69.44842380400009],[-135.63616325599986,69.45132723900014],[-135.70987365999991,69.47429111300002],[-135.7672374129999,69.48144560800002],[-135.84092817999993,69.48137953600015],[-135.84109178899988,69.49573626300018],[-135.78793664599996,69.50584089000002],[-135.70595267799982,69.50875084799999]]],[[[-101.24376380099996,69.54970937700007],[-101.23737545499992,69.548285223],[-101.22158769399988,69.55117422100012],[-101.20913652299988,69.55556875200013],[-101.18594316299995,69.56757233300006],[-101.1732071609999,69.5716820330001],[-101.18065344999988,69.56419505400014],[-101.1705623039999,69.55215078300002],[-101.15835527299993,69.54682038000006],[-101.07835852799985,69.53733958500005],[-101.06354732999996,69.53099192900011],[-101.07762610599991,69.52326080900009],[-101.0755509109999,69.51532623900015],[-101.07127844999988,69.51190827000012],[-101.05711829299986,69.50958893400015],[-101.03913326699993,69.50023021000014],[-100.99982662699992,69.49070872600012],[-100.98143469999988,69.48224518400008],[-100.96422278599995,69.47711823100018],[-100.95933997299989,69.47247955900015],[-100.96776282499992,69.46523672100012],[-100.9769180979999,69.45941803600009],[-100.98371334499986,69.45404694200012],[-100.99095618399987,69.44993724199999],[-101.00186113199995,69.44814687700008],[-101.02342688699986,69.451605536],[-101.04214433499992,69.45799388200011],[-101.0611873039999,69.45954010600013],[-101.08385169199997,69.44814687700008],[-101.09276282499991,69.43891022300012],[-101.09992428299994,69.42731354400011],[-101.10260982999993,69.41608307500012],[-101.09805253799989,69.40778229400003],[-101.11522376199991,69.40753815300009],[-101.1441951159999,69.39687734600015],[-101.15953528599994,69.39354075700011],[-101.17373613199987,69.3971214860001],[-101.18712317599996,69.40395742400001],[-101.19880123599988,69.40550364800005],[-101.20791581899995,69.39354075700011],[-101.20225989499997,69.38678620000009],[-101.20636959499991,69.38007233300014],[-101.2163793609999,69.37506745000009],[-101.22842363199992,69.37299225500009],[-101.24250240799995,69.37433502800015],[-101.28307044199997,69.38605377800015],[-101.26402747299996,69.38857656500006],[-101.24718176999997,69.39411041900009],[-101.23810787699996,69.40436432500003],[-101.24205481699995,69.420843817],[-101.25719153599995,69.432603257],[-101.29161536399988,69.435980536],[-101.30353756399984,69.44814687700008],[-101.26488196499989,69.44090403900007],[-101.23517818899985,69.443793036],[-101.21043860599988,69.45734284100014],[-101.18683834499984,69.48224518400008],[-101.2479548819999,69.50234609600012],[-101.26939856699993,69.50275299700014],[-101.26504472599993,69.49335358300011],[-101.26256262899992,69.48969147300006],[-101.28018144399994,69.48920319200009],[-101.2928767569999,69.49355703300007],[-101.3253067699999,69.51361725500014],[-101.37564042899993,69.53717682500009],[-101.3814591139999,69.53815338700015],[-101.3792618479999,69.54047272300012],[-101.36082923099988,69.56757233300006],[-101.35374915299991,69.57330963700012],[-101.34455318899985,69.57786692900008],[-101.31086178299994,69.58344147300006],[-101.27684485599991,69.58535390800013],[-101.26024329299986,69.58071523600002],[-101.25670325399996,69.57575104400014],[-101.25772050699992,69.57037995000009],[-101.25511633999992,69.56419505400014],[-101.24376380099996,69.54970937700007]]],[[[-96.64415442599991,69.56012604400017],[-96.6368708979999,69.55805084800015],[-96.5431208979999,69.56659577000006],[-96.3841039699999,69.5625674500001],[-96.36799068899984,69.55951569200003],[-96.35350501199989,69.55292389500012],[-96.33869381399992,69.54059479400009],[-96.32249915299988,69.53139883],[-96.30614173099985,69.53229401200011],[-96.27350826699988,69.54433828300004],[-96.2083227199999,69.5518252620001],[-96.18936113199986,69.571234442],[-96.16926021999993,69.57050202000006],[-96.14834550699987,69.56268952000008],[-96.13687089799993,69.55117422100012],[-96.13752193899987,69.53534577],[-96.12629146999987,69.520656643],[-96.11168372299994,69.50580475500014],[-96.10216223899994,69.48969147300006],[-96.10130774599986,69.46727122600005],[-96.11001542899993,69.44965241100014],[-96.12694251199991,69.43671295800011],[-96.15054277299996,69.42829010600018],[-96.13683020699992,69.41303131700003],[-96.13149980399987,69.40460846600013],[-96.12950598899994,69.39354075700011],[-96.13508053299992,69.38275788000011],[-96.14537512899994,69.37482330900013],[-96.1511938139999,69.36603424700009],[-96.14313717399996,69.35252513200011],[-96.23204505099987,69.36269765800016],[-96.27574622299989,69.37457916900011],[-96.31444251199991,69.39354075700011],[-96.36595618399991,69.43793366100006],[-96.38499915299991,69.44977448100012],[-96.47642981699994,69.46865469000012],[-96.52940833199997,69.47162506700006],[-96.55492102799988,69.479193427],[-96.61237545499998,69.503363348],[-96.65021725199992,69.53196849199998],[-96.74022376199989,69.57786692900008],[-96.74022376199989,69.58535390800013],[-96.70360266799986,69.58649323100015],[-96.6918025379999,69.58535390800013],[-96.68382727799985,69.58234284100003],[-96.66783606699994,69.57355377800015],[-96.65477454299986,69.569525458],[-96.64415442599991,69.56012604400017]]],[[[-67.30776933499995,69.55805084800015],[-67.35309811099998,69.53188711100002],[-67.49669348899994,69.53497955900009],[-67.55418860599994,69.52326080900009],[-67.53644771999984,69.52220286700005],[-67.50373287699992,69.5121117210001],[-67.4890844389999,69.50958893400015],[-67.48501542899993,69.50755442900014],[-67.49063066299993,69.50307851800007],[-67.50584876199991,69.49591705900004],[-67.57803300699993,69.51048411700008],[-67.62800045499995,69.50267161700008],[-67.67516028599994,69.512884833],[-67.72956295499995,69.51536692900014],[-67.75283769399996,69.52326080900009],[-67.74547278599997,69.52838776200012],[-67.74282792899987,69.534165757],[-67.74160722599996,69.53978099199999],[-67.73859615799995,69.54433828300004],[-67.72594153599988,69.54987213700004],[-67.71458899599992,69.54926178599999],[-67.70327714799993,69.54621002800009],[-67.69078528599994,69.54433828300004],[-67.66478430899994,69.5474307310001],[-67.61436926999991,69.56110260600006],[-67.56118730399993,69.56631094000012],[-67.54727128799993,69.569525458],[-67.53685462099993,69.57477448100018],[-67.53148352799988,69.582505601],[-67.52570553299992,69.60032786700008],[-67.52009029899992,69.60578034100011],[-67.5110977859999,69.60740794500013],[-67.49974524599995,69.60667552300002],[-67.49006100199998,69.60301341400005],[-67.48595130099991,69.595892645],[-67.48021399599986,69.5924339860001],[-67.43687903599988,69.59210846600017],[-67.44432532499988,69.59210846600017],[-67.39842688699989,69.5910505230001],[-67.37706458199992,69.58600495000009],[-67.34752356699997,69.56810130400011],[-67.32262122299991,69.56281159100014],[-67.30776933499995,69.55805084800015]]],[[[-133.85582434799994,69.60789622600011],[-133.85057532499988,69.60578034100011],[-133.81273352799988,69.60578034100011],[-133.83043372299994,69.59349192900005],[-133.92943274599992,69.58535390800013],[-133.92943274599992,69.57786692900008],[-133.88833574099993,69.57196686400012],[-133.9287817049999,69.56488678600006],[-133.9498591789999,69.56419505400014],[-134.01817786399988,69.57786692900008],[-134.01829993399986,69.582505601],[-134.01695716099997,69.58588288000011],[-134.01134192599994,69.59210846600017],[-133.9982804029999,69.59357330900004],[-133.97842363199987,69.60346100500014],[-133.9014379549999,69.62689850500011],[-133.88735917899996,69.62636953300013],[-133.86115475199992,69.61945221600014],[-133.86017818899984,69.61717357000008],[-133.85875403599988,69.61249420800004],[-133.85582434799994,69.60789622600011]]],[[[-95.68028723899988,69.60932038],[-95.6680802069999,69.60907623900015],[-95.65550696499992,69.61139557500012],[-95.6434626939999,69.61603424700003],[-95.62950598899994,69.61981842700004],[-95.6179093089999,69.61733633000013],[-95.60704505099994,69.61155833500008],[-95.52086341099988,69.5777855490001],[-95.49205481699994,69.5716820330001],[-95.3807673819999,69.52326080900009],[-95.37120520699992,69.51357656500015],[-95.36913001199989,69.49591705900004],[-95.37315833199995,69.48631419500003],[-95.39037024599989,69.46059804900001],[-95.39647376199989,69.44814687700008],[-95.40135657499994,69.42572663000009],[-95.40322831899991,69.39691803600014],[-95.41299394399994,69.38629791900009],[-95.46206620999989,69.37836334800012],[-95.4818009109999,69.36961497600005],[-95.50194251199986,69.34503815300015],[-95.51496334499984,69.3353539080001],[-95.53359941299993,69.3314476580001],[-95.7116593089999,69.32176341400003],[-95.74592037699989,69.33893463700015],[-95.73696855399987,69.33966705900009],[-95.71178137899987,69.34511953300012],[-95.72549394399994,69.36884186400013],[-95.71882076699987,69.38617584800012],[-95.6965225899999,69.396714585],[-95.6634008449999,69.40033600500006],[-95.65538489499994,69.40949127800003],[-95.68370520699989,69.45612213700004],[-95.69127356699994,69.47606028900013],[-95.68736731699993,69.48248932500003],[-95.68024654899989,69.4874535180001],[-95.67324785099993,69.49420807500003],[-95.67015540299994,69.50617096600014],[-95.67316646999984,69.514593817],[-95.68004309799993,69.52435944200015],[-95.69469153599994,69.54059479400009],[-95.72175045499989,69.55565013200011],[-95.7623591789999,69.56439850499999],[-95.8042699859999,69.56561920799999],[-95.83527584499993,69.55805084800015],[-95.81452389199993,69.50771719],[-95.80011959499987,69.48533763199998],[-95.7800186839999,69.46865469000012],[-95.85537675699996,69.40159739800004],[-95.87621008999994,69.37299225500009],[-95.87002519399988,69.37299225500009],[-95.86998450399989,69.36766185100011],[-95.87165279899989,69.36493561400015],[-95.87059485599994,69.36273834800014],[-95.8626195949999,69.35936107000013],[-95.88459225199992,69.34389883],[-95.92247473899994,69.34308502800008],[-95.96288001199987,69.3504906270001],[-95.99229895699997,69.35936107000013],[-95.99022376199984,69.3689639340001],[-95.99421139199984,69.38519928600006],[-95.99229895699997,69.39354075700011],[-95.98387610599994,69.4014346370001],[-95.94448808499993,69.420843817],[-95.9818416009999,69.43626536700005],[-95.99925696499989,69.448960679],[-96.00658118399988,69.46523672100012],[-96.00816809799991,69.47504303600006],[-96.01085364499988,69.47943756700015],[-96.01138261599996,69.48281484600005],[-96.00658118399988,69.48969147300006],[-95.99400794199988,69.49860260600012],[-95.96442623599984,69.50714752800003],[-95.95197506399992,69.51703522300014],[-95.95750891799992,69.52773672100007],[-95.95421301999988,69.53925202],[-95.92324785099996,69.59149811400003],[-95.91169186099984,69.60024648600007],[-95.88988196499989,69.60578034100011],[-95.84276282499988,69.60537344],[-95.82819576699987,69.60919830900012],[-95.82066809799991,69.61448802299999],[-95.80113684799991,69.63312409100008],[-95.7774958979999,69.63568756700009],[-95.70250403599992,69.63125234600001],[-95.67760169199991,69.62628815300015],[-95.69127356699994,69.61261627800002],[-95.68028723899988,69.60932038]]],[[[-138.87010657499994,69.59210846600017],[-138.90538489499997,69.57831452000006],[-138.9872940749999,69.58608633000007],[-139.02774003799993,69.58535390800013],[-139.05068925699993,69.57615794500008],[-139.08950761599993,69.547552802],[-139.11025956899994,69.53685130400005],[-139.13784745999996,69.53522370000003],[-139.1727188789999,69.541489976],[-139.20718339799993,69.55231354400009],[-139.23379472599996,69.56419505400014],[-139.24299068899984,69.57200755400011],[-139.25084387899992,69.58063385600003],[-139.26024329299995,69.58539459800012],[-139.2738337879999,69.58161041900009],[-139.28783118399986,69.5756289730001],[-139.3036189439999,69.57200755400011],[-139.31993567599994,69.57078685100011],[-139.3356013659999,69.5716820330001],[-139.31578528599988,69.58535390800013],[-139.2184138659999,69.63157786700005],[-139.1649470689999,69.64789459800006],[-139.1133927069998,69.654201565],[-139.08104407499988,69.649847723],[-139.01252193899987,69.63060130400005],[-138.95213782499985,69.62384674700003],[-138.92100989499994,69.61701080900009],[-138.8917537099999,69.60626862200009],[-138.87010657499994,69.59210846600017]]],[[[-135.5179744129999,69.57225169500008],[-135.54771887899992,69.5716820330001],[-135.57420813699989,69.57786692900008],[-135.59288489499994,69.59365469],[-135.5810440749999,69.60927969],[-135.53636633999994,69.63686758000001],[-135.51097571499992,69.64838288000006],[-135.47321529899986,69.6533877620001],[-135.40294348899994,69.654201565],[-135.4116918609999,69.64232005400005],[-135.4644262359999,69.59210846600017],[-135.48888098899994,69.57925039300015],[-135.5179744129999,69.57225169500008]]],[[[-67.88060462099989,69.71051666900017],[-67.86888587099992,69.70197174700014],[-67.84312903599997,69.68915436400003],[-67.81676184799997,69.68048737200003],[-67.78892981699991,69.67568594000012],[-67.75902258999994,69.67405833500003],[-67.76329505099994,69.6666934270001],[-67.74864661399994,69.66254303600006],[-67.73106848899991,69.65875885600006],[-67.72492428299992,69.64671458500013],[-67.73704993399991,69.635199286],[-67.8074845039999,69.61603424700003],[-67.86705481699994,69.58270905200006],[-67.89708411399988,69.55853913000014],[-67.90990149599992,69.53375885600018],[-67.9674373039999,69.52985260600018],[-68.30772864499993,69.59210846600017],[-68.28823808499996,69.59943268400018],[-68.21898352799988,69.60578034100011],[-68.22581946499992,69.60578034100011],[-68.20710201699991,69.61025625200007],[-68.17638098899994,69.62885163000004],[-68.13801021999993,69.63768138200011],[-68.07530676999994,69.67096588700012],[-68.01398678299992,69.677923895],[-67.88841712099989,69.64911530200008],[-67.82795162699998,69.661078192],[-67.94810950399997,69.67983633000007],[-67.9725642569999,69.69452545800006],[-67.97175045499989,69.70661041900017],[-67.95579993399988,69.71043528899999],[-67.91698157499988,69.70880768400013],[-67.89146887899997,69.712103583],[-67.88060462099989,69.71051666900017]]],[[[-102.1189672519999,69.67096588700012],[-102.15933183499989,69.654242255],[-102.21056067599993,69.6603050800001],[-102.23582923099988,69.68463776200015],[-102.23692786399992,69.70441315300017],[-102.23582923099988,69.7180850280001],[-102.2261856759999,69.72606028899999],[-102.15648352799994,69.73493073100012],[-102.13756262899992,69.7319196640001],[-102.12596594999991,69.7150332700001],[-102.1189672519999,69.67096588700012]]],[[[-77.97061113199993,69.68451569200009],[-77.94204667899993,69.64671458500013],[-77.95840410099996,69.63324616100006],[-77.97728430899988,69.62689850500011],[-78.01781165299991,69.61945221600014],[-78.0510961579999,69.60765208500008],[-78.06379146999987,69.59992096600014],[-78.07648678299992,69.58869049700014],[-78.09227454299989,69.57831452000006],[-78.10879472599996,69.5755882830001],[-78.14509029899995,69.57786692900008],[-78.28697669199991,69.55780670800003],[-78.36803137899994,69.52968984600001],[-78.44273841099997,69.515082098],[-78.51724199099993,69.48476797100001],[-78.54600989499997,69.48602936400012],[-78.58413652299993,69.50311920800006],[-78.61945553299995,69.51056549700006],[-78.65404212099985,69.50824616100009],[-78.7752986319999,69.46308014500012],[-78.82599850199998,69.451605536],[-78.85757402299986,69.4580752620001],[-78.87730872299989,69.47260163000011],[-78.8807266919999,69.48065827000006],[-78.87120520699992,69.49286530200014],[-78.85464433499993,69.50421784100011],[-78.68968665299991,69.56110260600006],[-78.67365475199992,69.57062409100014],[-78.61546790299988,69.62091705900009],[-78.57982337099993,69.63800690300015],[-78.56647701699984,69.64671458500013],[-78.5522354809999,69.64468008000001],[-78.48395748599992,69.654201565],[-78.41392981699994,69.64203522300004],[-78.39452063699991,69.64671458500013],[-78.3846329419999,69.659328518],[-78.38792883999984,69.67064036700002],[-78.3946020169999,69.68207428600005],[-78.39452063699991,69.69452545800006],[-78.37804114499994,69.70457591400005],[-78.35220292899993,69.70233795800006],[-78.30577551999997,69.68773021000014],[-78.32363847599991,69.674953518],[-78.29849199099993,69.66209544499999],[-78.25816809799989,69.65867747600008],[-78.23070227799994,69.67405833500003],[-78.23326575399994,69.68842194200009],[-78.26317298099991,69.71845123900012],[-78.27163652299987,69.73615143400004],[-78.2122289699999,69.73712799700012],[-78.19465084499986,69.75482819200003],[-78.17609615799998,69.75641510600005],[-78.15542558499996,69.75385163000014],[-78.14126542899993,69.74982330900015],[-78.12751217399992,69.73944733300009],[-78.11266028599994,69.736761786],[-78.07982337099986,69.73615143400004],[-78.0264786449999,69.71857330900009],[-77.98786373599992,69.6987165390001],[-77.97061113199993,69.68451569200009]]],[[[-79.67243404899989,69.82037995000006],[-79.53286699099988,69.79759349200009],[-79.51105709499984,69.80768463700018],[-79.45470130099997,69.80097077000012],[-79.40807044199997,69.77887604400014],[-79.41559811099992,69.74298737200014],[-79.38744055899994,69.74164459800006],[-79.36607825399989,69.73655833500014],[-79.34727942599994,69.72622304900013],[-79.32681230399987,69.70880768400013],[-79.34805253799996,69.69452545800006],[-79.53286699099988,69.63312409100008],[-79.61286373599995,69.61981842700004],[-79.85440019399988,69.61261627800002],[-79.89610755099991,69.60565827000012],[-79.91808020699993,69.60468170800006],[-79.93691972599987,69.60919830900012],[-79.96300208199995,69.63019440300013],[-79.97105872299997,69.63312409100008],[-80.0245662099999,69.64630768400004],[-80.05321204299986,69.64899323100009],[-80.07750403599994,69.63686758000001],[-80.06183834499987,69.61904531500012],[-79.9701228509999,69.55385976800012],[-79.9363500639999,69.53685130400005],[-79.96251380099994,69.50665924700014],[-79.99864661399988,69.50014883000016],[-80.09898841099997,69.51264069200005],[-80.15038001199989,69.52659739800013],[-80.21524003799996,69.53327057500009],[-80.2306208979999,69.54083893400004],[-80.23802649599989,69.55805084800015],[-80.22948157499988,69.578558661],[-80.21393795499995,69.60081614800005],[-80.2103572259999,69.61871979400011],[-80.23802649599989,69.62628815300015],[-80.26097571499989,69.61530182500009],[-80.30736243399986,69.56757233300006],[-80.33421790299994,69.55805084800015],[-80.33556067599991,69.57379791900011],[-80.33877519399988,69.59039948100015],[-80.34422766799992,69.60537344],[-80.35155188699991,69.61603424700003],[-80.36286373599988,69.62201569200015],[-80.40249589799993,69.62628815300015],[-80.41462154899992,69.631293036],[-80.43724524599989,69.64671458500013],[-80.49681555899991,69.66754791900011],[-80.56216386599988,69.672837632],[-80.76065019399994,69.6679548200001],[-80.79792232999992,69.67552317900007],[-80.8140356109999,69.69452545800006],[-80.80353756399992,69.70465729400003],[-80.75304114499991,69.72190989800013],[-80.73517818899983,69.7324079450001],[-80.73094641799992,69.73989492400005],[-80.72956295499995,69.74591705900018],[-80.7267146479999,69.75112539300007],[-80.71837317599991,69.75600820500013],[-80.64952551999997,69.74982330900015],[-80.58747311099992,69.72866445500007],[-80.53587805899986,69.72752513200014],[-80.51915442599994,69.72247955900009],[-80.50926673099991,69.72772858299999],[-80.4938044909999,69.72760651200012],[-80.47740637899987,69.72304922100007],[-80.46450761599988,69.7150332700001],[-80.4605199859999,69.70799388200005],[-80.45653235599991,69.69033437700013],[-80.45091712099992,69.68154531500006],[-80.42536373599992,69.66828034100014],[-80.40274003799988,69.67015208500011],[-80.39757239499997,69.68280670800009],[-80.42418372299991,69.70197174700014],[-80.41222083199996,69.70697663],[-80.38776607999995,69.71027252800003],[-80.3758031889999,69.7150332700001],[-80.40729732999992,69.71718984600012],[-80.43565833199995,69.72361888200012],[-80.46117102799985,69.73444245000003],[-80.48444576699987,69.74982330900015],[-80.4960017569999,69.761419989],[-80.50401770699995,69.77582428600005],[-80.50064042899993,69.78742096600016],[-80.4781794909999,69.790757554],[-80.44688880099993,69.80036041900017],[-80.41030839799991,69.80231354400003],[-80.34105383999986,69.79759349200009],[-80.33641516799992,69.78241608300011],[-80.30296790299988,69.78652578300007],[-80.23180091099994,69.80438873900015],[-80.20604407499991,69.80068594],[-80.16942298099988,69.79067617400001],[-80.13670813699994,69.77631256700015],[-80.12254798099991,69.759711005],[-80.12779700399992,69.75311920800003],[-80.15078691299988,69.74079010600015],[-80.15607662699995,69.7324079450001],[-80.15029863199989,69.72337474199999],[-80.13768469999991,69.72577545800014],[-80.08092200399994,69.75287506700006],[-80.06541907499994,69.75429922100012],[-79.97411048099987,69.73061758000001],[-79.86558997299989,69.74616120000003],[-79.83218339799993,69.76032135600003],[-79.81379146999987,69.76341380400011],[-79.78457597599993,69.75584544499998],[-79.76793372299989,69.75385163000014],[-79.75511633999986,69.759711005],[-79.75401770699992,69.76373932500015],[-79.75719153599997,69.77456289300014],[-79.75816809799994,69.78050364800008],[-79.75633704299986,69.78676992400004],[-79.75182044199991,69.789536851],[-79.74632727799988,69.79120514499999],[-79.74144446499992,69.7941755230001],[-79.73534094999994,69.7959658870001],[-79.71324622299994,69.79608795800006],[-79.70360266799987,69.79759349200009],[-79.6987198559999,69.80198802300002],[-79.69517981699991,69.81464264500006],[-79.69054114499988,69.81867096600006],[-79.67243404899989,69.82037995000006]]],[[[-82.4920467359999,69.76298116400012],[-82.55886838199984,69.74334865100012],[-82.69554125299992,69.76144684100008],[-82.81570834899985,69.78186063700018],[-82.85468069899994,69.79435394300013],[-82.84331088099995,69.80839531],[-82.7490175169999,69.82023467400002],[-82.64772189899989,69.82609623700014],[-82.50623510399996,69.7906256620001],[-82.4920467359999,69.76298116400012]]],[[[-83.53872636599993,69.78595612200012],[-83.55068925699995,69.783433335],[-83.59276282499994,69.78400299700014],[-83.63752193899987,69.77024974200005],[-83.68065344999988,69.77118561400012],[-83.70067298099985,69.76854075700014],[-83.71324622299993,69.75600820500013],[-83.6800837879999,69.747503973],[-83.66551673099988,69.740179755],[-83.65802975199992,69.72866445500007],[-83.70103919199995,69.72280508000004],[-83.74754798099991,69.72785065300015],[-83.83608964799993,69.74982330900015],[-83.86961829299986,69.759222723],[-83.90217037699992,69.77383047100001],[-83.91710364499997,69.79360586100013],[-83.89757239499988,69.81867096600006],[-83.8555802069999,69.83173248900012],[-83.56932532499985,69.80426666900017],[-83.5276586579999,69.790757554],[-83.53872636599993,69.78595612200012]]],[[[-91.82258053299995,69.82632070500007],[-91.84019934799997,69.824896552],[-91.84536699099988,69.82754140800006],[-91.86717688699994,69.84540436400005],[-91.86310787699998,69.85089752800016],[-91.85838782499988,69.85488515800016],[-91.85358639199985,69.85968659100014],[-91.80190995999993,69.87836334800011],[-91.74754798099991,69.88300202000015],[-91.69318600199988,69.87604401200015],[-91.6412654289999,69.85968659100014],[-91.67003333199995,69.85008372600008],[-91.77159583199995,69.83856842700014],[-91.82258053299995,69.82632070500007]]],[[[-91.45352128799996,69.83730703300004],[-91.47752844999991,69.82306549700003],[-91.50405839799987,69.81867096600006],[-91.47175045499995,69.79901764500009],[-91.46324622299991,69.789536851],[-91.46312415299994,69.77708567900005],[-91.47354081899994,69.76211172100012],[-91.4913630849999,69.74933502800009],[-91.53355872299994,69.73065827],[-91.55679277299996,69.72919342700006],[-91.60871334499983,69.7453473980001],[-91.6344294909999,69.74982330900015],[-91.6426488919999,69.75283437700007],[-91.67540442599991,69.77366771000005],[-91.69033769399996,69.779974677],[-91.73745683499995,69.790757554],[-91.73745683499995,69.79759349200009],[-91.6109513009999,69.82160065300015],[-91.57237708199995,69.83539459800006],[-91.55540930899988,69.83795807500017],[-91.52049719999987,69.832709052],[-91.50405839799987,69.83856842700014],[-91.49669348899997,69.84910716400002],[-91.49429277299993,69.860785223],[-91.4901423819999,69.871527411],[-91.47740637899994,69.87954336100013],[-91.45909583199997,69.88007233300011],[-91.44196529899995,69.88426341400006],[-91.4252823559999,69.88605377800006],[-91.40851803299998,69.87954336100013],[-91.41930091099988,69.87189362200003],[-91.4307755199999,69.86676666900011],[-91.45567786399997,69.85968659100014],[-91.44273841099997,69.85244375200004],[-91.45352128799996,69.83730703300004]]],[[[-97.39073645699995,69.60016510600009],[-97.3765763009999,69.59764232],[-97.37022864499988,69.60919830900012],[-97.36693274599986,69.62026601800015],[-97.32848059799994,69.67340729400014],[-97.31501217399996,69.68773021000014],[-97.29686438699987,69.69814687700013],[-97.28400631399985,69.696966864],[-97.27057857999995,69.69122955900002],[-97.22484290299994,69.682318427],[-97.12149003799996,69.627427476],[-97.10334225199995,69.61261627800002],[-97.09239661399987,69.592474677],[-97.08421790299988,69.58226146000005],[-97.07201087099992,69.57786692900008],[-97.04328365799995,69.57257721600008],[-96.89342200399994,69.497748114],[-96.85655676999997,69.48786041900009],[-96.79352779899995,69.49579498900006],[-96.76598059799993,69.48456452000006],[-96.71231035099994,69.45433177300005],[-96.6822810539999,69.44814687700008],[-96.61998450399992,69.44525788000006],[-96.53416907499988,69.42829010600018],[-96.50475012899989,69.41046784100011],[-96.49665279899993,69.40778229400003],[-96.47736568899991,69.40371328300007],[-96.40916907499991,69.37482330900013],[-96.32127844999985,69.35512929900001],[-96.21979732999992,69.31395091400003],[-96.18423417899996,69.29100169500005],[-96.17105058499989,69.263128973],[-96.17837480399993,69.25096263200011],[-96.20592200399994,69.2298851580001],[-96.21202551999994,69.21198151200004],[-96.21491451699987,69.19285716400007],[-96.22305253799988,69.17951080900015],[-96.23599199099986,69.169378973],[-96.25300045499995,69.16014232000005],[-96.22508704299992,69.14081452],[-96.21662350199995,69.118882554],[-96.2229711579999,69.09552643400009],[-96.23936926999991,69.07200755400012],[-96.22557532499991,69.05442942900001],[-96.20189368399987,69.04108307500009],[-96.17471269399996,69.03266022300012],[-96.15054277299996,69.02977122600011],[-96.12340247299994,69.03335195500007],[-96.12035071499994,69.04205963700015],[-96.14683997299991,69.06830475499999],[-96.15660559799994,69.08494700700014],[-96.15196692599991,69.09756094000012],[-96.14232337099986,69.1100934920001],[-96.13687089799993,69.126654364],[-96.14207923099991,69.14447663000006],[-96.15123450399989,69.15452708500014],[-96.15477454299989,69.1642113300001],[-96.14313717399996,69.180609442],[-96.10765540299988,69.19912344000004],[-96.10216223899994,69.204820054],[-96.09813391799989,69.21409739800005],[-96.08869381399987,69.22406647300015],[-96.07725989499991,69.23200104400011],[-96.06773841099991,69.23525625200016],[-96.04820716099994,69.22972239800013],[-96.0357152989999,69.21629466400005],[-96.01716061099984,69.18439362200003],[-96.00182044199988,69.171616929],[-95.96666419199991,69.15314362200014],[-95.95197506399992,69.139634507],[-95.94896399599992,69.13349030200001],[-95.9473363919999,69.12079498900013],[-95.94448808499993,69.11298248900006],[-95.92467200399992,69.08502838700012],[-95.93773352799991,69.08136627800015],[-95.95555579299987,69.0729841170001],[-95.97158769399987,69.06195709800006],[-95.9793188139999,69.05027903900007],[-95.97459876199989,69.04002513200014],[-95.95018469999994,69.02448151200002],[-95.94448808499993,69.01308828300007],[-95.93846594999992,69.00556061400003],[-95.92442786399988,68.99762604400014],[-95.90851803299994,68.991400458],[-95.87975012899992,68.98651764500012],[-95.86587480399993,68.97980377800017],[-95.85533606699997,68.96906159100014],[-95.8482966789999,68.95473867400007],[-95.84605872299991,68.9315860050001],[-95.84837805899988,68.90981679900005],[-95.84552975199995,68.8906110700001],[-95.82819576699987,68.87588125200004],[-95.81114661399991,68.87396881700006],[-95.79686438699991,68.88035716399999],[-95.78282630099994,68.88898346600008],[-95.76671301999988,68.893255927],[-95.7066137359999,68.88418203300002],[-95.69127356699994,68.8789737000001],[-95.67796790299991,68.86945221600011],[-95.67568925699996,68.86212799700012],[-95.67601477799988,68.85480377800009],[-95.67015540299994,68.84544505400007],[-95.65758216099994,68.83612702000012],[-95.64460201699983,68.83201731999998],[-95.62901770699995,68.831040757],[-95.57103430899988,68.83510976800007],[-95.39561926999995,68.89866771000005],[-95.35326087099986,68.90395742400013],[-95.31452389199984,68.89638906500006],[-95.28172766799992,68.88092682500015],[-95.26423092399997,68.87506745000012],[-95.23888098899994,68.87164948100009],[-95.22032630099994,68.86542389500015],[-95.2149145169999,68.8622093770001],[-95.20995032499994,68.85333893400002],[-95.2135310539999,68.84931061400006],[-95.22044837099992,68.84756094000005],[-95.22516842399992,68.84544505400007],[-95.23778235599988,68.82953522300015],[-95.25536048099991,68.81378815300009],[-95.2748917309999,68.80003489799999],[-95.37096106699997,68.75967031500004],[-95.3967992829999,68.75604889500006],[-95.43895423099994,68.73956940300015],[-95.53038489499997,68.67841217700011],[-95.56834876199989,68.68097565300003],[-95.5523168609999,68.70864492400013],[-95.5475154289999,68.72947825700003],[-95.55992591099994,68.74481842700006],[-95.59508216099991,68.75604889500006],[-95.73045813699989,68.73175690300017],[-95.75275631399992,68.73248932500012],[-95.76048743399991,68.74070872600011],[-95.77782141799992,68.74135976800015],[-95.79629472599993,68.7367617860001],[-95.80736243399987,68.72939687700004],[-95.79552161399991,68.71076080900004],[-95.79283606699994,68.6992048200001],[-95.8042699859999,68.69399648600002],[-95.83629309799989,68.68683502800016],[-95.8538712229999,68.668646552],[-95.8561091789999,68.64447663000009],[-95.84211178299991,68.61953359600015],[-95.88145911399994,68.61029694200009],[-95.95864824099996,68.62909577000012],[-95.99974524599986,68.62571849200009],[-96.01276607999995,68.618841864],[-96.0475154289999,68.59153880400011],[-96.06566321499992,68.58258698100008],[-96.08348548099988,68.576117255],[-96.10216223899994,68.57233307500017],[-96.12267005099991,68.57111237200014],[-96.15217037699996,68.56439850500003],[-96.29588782499991,68.48012929900001],[-96.32481848899994,68.47166575700008],[-96.52049719999985,68.44757721600014],[-96.55923417899987,68.45184967700006],[-96.63418535099993,68.470648505],[-96.71320553299994,68.47846100499999],[-96.88003495999992,68.51878489800006],[-96.94334876199989,68.52651601800007],[-96.98379472599993,68.54059479400001],[-97.0201716789999,68.54657623900012],[-97.03677324099996,68.55377838700015],[-97.05211341099991,68.56378815300015],[-97.06484941299996,68.57485586100007],[-97.08136959499984,68.58502838700004],[-97.10195878799988,68.5898298200001],[-97.14427649599989,68.59153880400011],[-97.1105037099999,68.559271552],[-97.09618079299992,68.53912995000015],[-97.10643469999985,68.53009674700014],[-97.12385006399992,68.52789948100013],[-97.15925045499992,68.51813385600012],[-97.17813066299993,68.51585521000014],[-97.19981848899992,68.51756419500005],[-97.26036536399991,68.53009674700014],[-97.32188880099989,68.53314850500014],[-97.38902747299994,68.54946523600016],[-97.40811113199993,68.5506859400001],[-97.42760169199991,68.5467796900001],[-97.44566809799994,68.53945547100007],[-97.46446692599987,68.53522370000015],[-97.56200110599991,68.56427643400004],[-97.65367591099991,68.60687897300006],[-97.68553626199991,68.61212799700014],[-97.71080481699988,68.619370835],[-97.76056881399987,68.65208567900011],[-97.78856360599988,68.66046784100017],[-97.8377986319999,68.65778229400009],[-97.99327551999991,68.69660065300012],[-98.04181881399987,68.701402085],[-98.06061764199991,68.69757721600008],[-98.08763587099986,68.67951080900015],[-98.10326087099986,68.67413971600011],[-98.11925208199995,68.67499420800011],[-98.13133704299986,68.68012116100012],[-98.1510310539999,68.69399648600002],[-98.16494706899988,68.69977448100018],[-98.21934973899988,68.71507396000013],[-98.26838131399984,68.74030182500009],[-98.29027258999987,68.75820547100014],[-98.29161536399997,68.77342357000013],[-98.26695716099995,68.79441966399999],[-98.25133216099988,68.81146881700012],[-98.25503495999993,68.82575104400003],[-98.28823808499993,68.83860911700005],[-98.36375891799986,68.85757070500016],[-98.40656490799994,68.86151764500015],[-98.42540442599991,68.84886302299999],[-98.41893469999991,68.82672760600009],[-98.4068904289999,68.80951569200008],[-98.40062415299994,68.79230377800013],[-98.41112219999991,68.77033112200014],[-98.43936113199986,68.75405508000001],[-98.48062089799993,68.746771552],[-98.52236894399995,68.75031159100008],[-98.55199133999992,68.76658763200011],[-98.57152258999989,68.78750234600007],[-98.58397376199991,68.7943789730001],[-98.64452063699989,68.80390045800009],[-98.65343176999994,68.80190664300011],[-98.67100989499995,68.79291413000011],[-98.67926998599987,68.79022858300014],[-98.71768144399996,68.79144928600006],[-98.86335201699985,68.83441803600012],[-98.87413489499995,68.84357330900009],[-98.87791907499988,68.85846588700015],[-98.87385006399992,68.87396881700006],[-98.86384029899993,68.88703034100014],[-98.84968014199991,68.89606354400014],[-98.82457434799993,68.90110911699999],[-98.81851152299991,68.90570709800012],[-98.81533769399995,68.91258372600014],[-98.81582597599994,68.92112864800005],[-98.81973222599994,68.92772044500013],[-98.82624264199984,68.93065013200005],[-98.87140865799998,68.93968333500005],[-98.93276933499989,68.94350820500007],[-98.96996008999989,68.95473867400007],[-98.9815567699999,68.95575592700014],[-98.9927465489999,68.95368073100012],[-99.00137285099991,68.94790273600016],[-99.00503495999996,68.93952057500009],[-99.00328528599997,68.93231842700006],[-99.00064042899989,68.92625560100008],[-99.00137285099991,68.92112864800005],[-99.01878821499989,68.90924713700008],[-99.03587805899993,68.91054922100001],[-99.05378170499996,68.91722239800005],[-99.07339433499993,68.92112864800005],[-99.11823482999996,68.92426178600012],[-99.12661699099992,68.92064036700008],[-99.11066646999991,68.90692780200014],[-99.05923417899992,68.87970612200003],[-99.04234778599992,68.86591217700011],[-99.06956946499993,68.85675690300015],[-99.13003495999992,68.85297272300012],[-99.15843665299987,68.84544505400007],[-99.18224036399995,68.831447658],[-99.19225012899993,68.829779364],[-99.20653235599993,68.834906317],[-99.24242102799991,68.85578034100017],[-99.2671606109999,68.86033763200011],[-99.29539954299987,68.86933014500012],[-99.41722571499987,68.89044830900015],[-99.44115149599993,68.899359442],[-99.45563717399997,68.91193268400018],[-99.44640051999991,68.92739492400001],[-99.46304277299986,68.95107656500012],[-99.48534094999991,68.96893952000009],[-99.54206295499998,68.99567291900009],[-99.57555091099992,69.0064964860001],[-99.5908096999999,69.01483795800006],[-99.5972794259999,69.02667877800003],[-99.59154212099993,69.04108307500009],[-99.57774817599991,69.05353424700012],[-99.54576575399992,69.075140692],[-99.49156653599997,69.12083567900014],[-99.46129309799997,69.13458893400015],[-99.41909745999993,69.139634507],[-99.35753333199989,69.13214752800012],[-99.34972083199989,69.13312409100008],[-99.33653723899994,69.139634507],[-99.30931555899994,69.15875885600015],[-99.29295813699993,69.1611188820001],[-99.27513587099986,69.14712148600013],[-99.25731360599988,69.15436432500017],[-99.24071204299992,69.15155670800011],[-99.2239884109999,69.14472077],[-99.2062068349999,69.139634507],[-99.18687903599988,69.13934967700006],[-99.1310929029999,69.14712148600013],[-99.00670325399996,69.13906484600001],[-98.96694902299987,69.15053945500016],[-98.93846594999987,69.17055898600005],[-98.92454993399988,69.17772044500008],[-98.90489661399994,69.180609442],[-98.81615149599988,69.174465236],[-98.78636633999986,69.17767975500009],[-98.74571692599997,69.18707916900011],[-98.71275794199991,69.20213450700011],[-98.70596269399988,69.22215403899999],[-98.69977779899992,69.22215403899999],[-98.71104895699989,69.23859284100008],[-98.7100723949999,69.25649648600013],[-98.69871985599985,69.2734235700001],[-98.67894446499992,69.28705475500004],[-98.65322831899988,69.30101146000014],[-98.63955644399994,69.30438873900006],[-98.62433834499987,69.30101146000014],[-98.59137936099988,69.28335195500004],[-98.57335364499997,69.27692291900011],[-98.5550837879999,69.27680084800012],[-98.54564368399987,69.28168366100002],[-98.52619381399987,69.29840729400006],[-98.51475989499991,69.304144598],[-98.49697831899994,69.30658600500006],[-98.43907630099994,69.304144598],[-98.40957597599987,69.30780670800006],[-98.39317786399997,69.318060614],[-98.39268958199996,69.33340078300013],[-98.41112219999991,69.35252513200011],[-98.45628821499986,69.37514883000007],[-98.55402584499983,69.40639883000013],[-98.60789954299986,69.44269440300015],[-98.61131751199989,69.44916413000004],[-98.60692298099988,69.4580752620001],[-98.59756425699996,69.46771881700006],[-98.58771725199995,69.47540924700017],[-98.57632402299987,69.48053620000009],[-98.56261145699995,69.48224518400008],[-98.49054928299992,69.46800364799999],[-98.45156816299993,69.46454498899999],[-98.41856848899987,69.47606028900013],[-98.53600012899992,69.49896881700012],[-98.59056555899988,69.5202497420001],[-98.5960994129999,69.55805084800015],[-98.57542883999989,69.57737864799999],[-98.54942786399991,69.5851097680001],[-98.46247311099992,69.58356354400014],[-98.36925208199989,69.56834544500008],[-98.34968014199993,69.55459219000015],[-98.34007727799984,69.54515208500014],[-98.29784094999991,69.52399323100003],[-98.27651933499996,69.4990908870001],[-98.18268795499998,69.46735260600003],[-98.12409420499992,69.46865469000012],[-98.10875403599988,69.46600983300006],[-98.10537675699996,69.45929596600011],[-98.11009680899988,69.43793366100006],[-98.09504146999987,69.42698802299999],[-98.06078040299988,69.42674388200014],[-98.02383378799993,69.43463776200012],[-98.00084387899993,69.44814687700008],[-98.15623938699989,69.50116608300011],[-98.1964005199999,69.52700429900013],[-98.2408748039999,69.56565989799999],[-98.25096594999987,69.5716820330001],[-98.26048743399988,69.57485586100015],[-98.2901912099999,69.5890160180001],[-98.3052872389999,69.59210846600017],[-98.33926347599991,69.59536367400001],[-98.3553767569999,69.59955475500006],[-98.37018795499998,69.60578034100011],[-98.34532630099994,69.627386786],[-98.33617102799985,69.63743724199999],[-98.32921301999995,69.654201565],[-98.32746334499987,69.66844310100011],[-98.33023027299991,69.69135163],[-98.32921301999995,69.70197174700014],[-98.31248938699994,69.73041413000006],[-98.28384355399996,69.75714752800017],[-98.21934973899988,69.79759349200009],[-98.19420325399992,69.80516185100008],[-98.14289303299998,69.80687083500008],[-98.11693274599989,69.81122467700006],[-98.09996497299991,69.82005442900011],[-98.06232662699992,69.85968659100014],[-98.02147376199989,69.88523997600014],[-97.97459876199991,69.89642975500013],[-97.92516028599995,69.89594147300006],[-97.87669837099989,69.88694896000013],[-97.86021887899989,69.87921784100003],[-97.8264867829999,69.86945221600008],[-97.72704016799992,69.85846588700004],[-97.70665442599994,69.85285065300003],[-97.69713294199993,69.84438711100007],[-97.69603430899988,69.83624909100017],[-97.69664466099994,69.82782623900012],[-97.69237219999985,69.81867096600006],[-97.67638098899994,69.80853913],[-97.63585364499991,69.80036041900017],[-97.61693274599988,69.7941755230001],[-97.4752498039999,69.77716705900002],[-97.45213782499992,69.76683177300013],[-97.43879146999993,69.74201080900018],[-97.40729732999992,69.72703685100004],[-97.34227454299986,69.70880768400013],[-97.3784073559999,69.691799221],[-97.4583227199999,69.68915436400003],[-97.49315344999985,69.67405833500003],[-97.43053137899994,69.62026601800015],[-97.39073645699995,69.60016510600009]]],[[[-97.35594641799989,69.90745677299999],[-97.32640540299994,69.8918317730001],[-97.25479081899991,69.8947207700001],[-97.22622636599989,69.87954336100013],[-97.24909420499992,69.86017487200003],[-97.27538001199993,69.85887278900005],[-97.30093339799993,69.86786530200004],[-97.3218481109999,69.87954336100013],[-97.35777747299997,69.89288971600014],[-97.42882239499994,69.89435455900004],[-97.46580969999988,69.90062083500008],[-97.48696855399987,69.91400788000009],[-97.4933162099999,69.93170807500017],[-97.48595130099991,69.94940827000009],[-97.46580969999988,69.96271393400009],[-97.43423417899987,69.96596914300015],[-97.38841712099989,69.96238841399999],[-97.34715735599994,69.95197174700009],[-97.32925370999986,69.93475983300009],[-97.33739173099987,69.93012116100014],[-97.34463456899991,69.92251211100002],[-97.35594641799989,69.90745677299999]]],[[[-87.00161699099992,70.1203473980001],[-86.80304928299988,70.09243398600007],[-86.65074622299994,70.12091705900009],[-86.59752356699994,70.11286041900014],[-86.58307857999989,70.10586172100007],[-86.54979407499991,70.07880280200014],[-86.52375240799992,70.06240469000012],[-86.51113847599993,70.05182526200018],[-86.50194251199987,70.03717682500017],[-86.50682532499985,70.02741120000003],[-86.49567623599992,70.02179596600003],[-86.46035722599989,70.016750393],[-86.47752844999991,69.99477773600007],[-86.50352942599991,69.98590729400001],[-86.77692623599992,69.97125885600003],[-86.91714433499988,69.9912783870001],[-86.98110917899987,70.01361725500011],[-87.00633704299995,70.01634349199999],[-87.05842037699989,69.99591705900012],[-87.08421790299991,69.98940664300012],[-87.12010657499991,69.993841864],[-87.18643144399996,70.01837799700003],[-87.2502335279999,70.02704498900012],[-87.26537024599989,70.03107330900018],[-87.27599036399994,70.03717682500017],[-87.27794348899988,70.04352448100009],[-87.27627519399988,70.06110260600003],[-87.27912350199992,70.06826406500006],[-87.30313066299996,70.08038971600017],[-87.36261959499988,70.0927595070001],[-87.37901770699989,70.10602448100003],[-87.35191809799997,70.11302317900011],[-87.31578528599994,70.11806875200016],[-87.2804255849999,70.1186384140001],[-87.25548255099989,70.11286041900014],[-87.19334876199989,70.1109886740001],[-87.09780839799987,70.12661367400007],[-87.13243567599994,70.13898346600011],[-87.14561926999991,70.14020416900001],[-87.11652584499984,70.161078192],[-87.0735570949999,70.151556708],[-87.00161699099992,70.1203473980001]]],[[[-124.9861954419999,70.15521881700006],[-124.99274654899989,70.14704010600006],[-124.98648027299991,70.14704010600006],[-125.0078018869999,70.13617584800006],[-125.06777910099991,70.14667389500012],[-125.09634355399992,70.14020416900001],[-125.0479630199999,70.12661367400007],[-125.06615149599989,70.12079498900012],[-125.08576412699985,70.119574286],[-125.10533606699991,70.12181224199999],[-125.12368730399989,70.12661367400007],[-125.1201065749999,70.14419179900001],[-125.10496985599991,70.15704987200003],[-125.08458411399992,70.16486237200003],[-124.97809811099988,70.17072174700014],[-124.95921790299984,70.16754791900009],[-124.96922766799992,70.16559479400014],[-124.97826087099993,70.16136302300013],[-124.9861954419999,70.15521881700006]]],[[[-112.97642981699994,70.28384023600007],[-113.16340084499988,70.283433335],[-113.20710201699987,70.29783763200005],[-113.1935929029999,70.298041083],[-113.18439693899992,70.30316803600012],[-113.17613684799993,70.309271552],[-113.1655167309999,70.31216054900013],[-113.05630449099996,70.31134674700003],[-112.97687740799985,70.30166250200007],[-112.9464005199999,70.29043203300016],[-112.9610896479999,70.2855492210001],[-112.97642981699994,70.28384023600007]]],[[[-100.7691544259999,70.25690338700012],[-100.79434160099987,70.25604889500012],[-100.82286536399997,70.26837799700014],[-100.87218176999995,70.29783763200005],[-100.86042232999998,70.30109284100008],[-100.85094153599988,70.30634186400009],[-100.84683183499992,70.31415436400006],[-100.85106360599985,70.32514069200012],[-100.82689368399994,70.32900625200013],[-100.79279537699993,70.32843659100017],[-100.76024329299987,70.32298411700013],[-100.74120032499987,70.31216054900013],[-100.75088456899992,70.30719635600018],[-100.76187089799988,70.30003489800004],[-100.77114824099993,70.29197825700003],[-100.77599036399991,70.2842471370001],[-100.77375240799994,70.27399323100015],[-100.76671301999995,70.26752350500006],[-100.76252193899984,70.262640692],[-100.7691544259999,70.25690338700012]]],[[[-111.67149817599994,70.31216054900013],[-112.10846920499992,70.30093008000013],[-112.31151282499991,70.34690989799998],[-112.32262122299996,70.35618724200005],[-112.31175696499986,70.3662783870001],[-112.28677324099995,70.36896393400009],[-112.09455318899984,70.35419342700003],[-111.95270748599985,70.32514069200012],[-111.88076738199992,70.31769440300015],[-111.67149817599994,70.31216054900013]]],[[[-116.58629309799993,70.48517487200009],[-116.57119706899994,70.46979401200015],[-116.6066788399999,70.478705145],[-116.75291907499987,70.47801341400005],[-116.78575598899988,70.48322174700014],[-116.81517493399987,70.49371979400003],[-116.83193925699987,70.510728257],[-116.79092363199987,70.510728257],[-116.66405188699994,70.49705638200005],[-116.61091061099985,70.493353583],[-116.58629309799993,70.48517487200009]]],[[[-116.2476700509999,70.53339264500012],[-116.28254146999984,70.52033112200014],[-116.30064856699994,70.51764557500017],[-116.35423743399994,70.51976146],[-116.45311438699987,70.51194896],[-116.47565670499985,70.51434967700014],[-116.4961645169999,70.52383047100015],[-116.47183183499992,70.53733958500011],[-116.44347083199989,70.54315827000006],[-116.4131567049999,70.54189687700007],[-116.38316809799993,70.53465403900005],[-116.35265051999991,70.53339264500012],[-116.29747473899987,70.55463288000011],[-116.26341712099988,70.55170319199999],[-116.15664628799996,70.54852936400012],[-116.12559973899995,70.53807200700005],[-116.22862708199993,70.53807200700005],[-116.2476700509999,70.53339264500012]]],[[[-116.5436091789999,70.56586334800012],[-116.50975501199986,70.55170319199999],[-116.5406388009999,70.54368724200005],[-116.74445553299984,70.54242584800015],[-116.77733313699993,70.55170319199999],[-116.75039628799996,70.55841705900004],[-116.73631751199991,70.55939362200003],[-116.72207597599991,70.55853913000011],[-116.68000240799988,70.56818268400018],[-116.61046301999993,70.57103099200013],[-116.5436091789999,70.56586334800012]]],[[[-115.87922115799986,70.54621002800015],[-115.9421280589999,70.54230377800017],[-116.06411699099989,70.55170319199999],[-116.0069880849999,70.559027411],[-115.98908443899985,70.56537506700012],[-115.90957597599993,70.57477448100015],[-115.88597571499992,70.58218008000013],[-115.8639216789999,70.58470286700008],[-115.83478756399987,70.58161041900017],[-115.81578528599995,70.573675848],[-115.82428951699988,70.56195709800011],[-115.87922115799986,70.54621002800015]]],[[[-116.87975012899992,70.55170319199999],[-116.9083145819999,70.54315827000006],[-117.0025935539999,70.55170319199999],[-117.22199459499993,70.54311758000007],[-117.27578691299988,70.55027903900013],[-117.30426998599988,70.57160065300009],[-117.23973548099991,70.592718817],[-117.21548417899993,70.592718817],[-117.05724036399995,70.57160065300009],[-116.91755123599987,70.56647370000017],[-116.87975012899992,70.55170319199999]]],[[[-128.08372962099995,70.61318594000006],[-128.09341386599993,70.60586172100007],[-128.10366777299993,70.60138580900009],[-128.1142471999999,70.60114166900014],[-128.12474524599983,70.60635000200016],[-128.1185603509999,70.5844180360001],[-128.1370336579999,70.5753848330001],[-128.16490637899992,70.57501862200009],[-128.1868383449999,70.57904694200006],[-128.22240149599986,70.5971133480001],[-128.24128170499986,70.59943268400015],[-128.25511633999992,70.58527252800003],[-128.25084387899997,70.58234284100011],[-128.24669348899994,70.57615794500005],[-128.2420548169999,70.57160065300009],[-128.2689509759999,70.56704336100013],[-128.3444718089999,70.54486725500009],[-128.31712805899994,70.57160065300009],[-128.25523841099997,70.64716217700003],[-128.2346085279999,70.66095612200012],[-128.20152747299986,70.65997955900004],[-128.1559952459999,70.64813873900009],[-128.1120499339999,70.630804755],[-128.08372962099995,70.61318594000006]]],[[[-100.68590247299996,70.684759833],[-100.58043372299997,70.66095612200012],[-100.55089270699992,70.66779205900004],[-100.51793372299994,70.67926666900017],[-100.48639889199983,70.68154531500015],[-100.46125240799995,70.66095612200012],[-100.41283118399987,70.64052969000012],[-100.35875403599988,70.63275788000014],[-100.34390214799991,70.62620677300005],[-100.35879472599987,70.62116120000002],[-100.3650610019999,70.62002187700008],[-100.34434973899991,70.60976797100007],[-100.27505449099995,70.60635000200016],[-100.23371334499991,70.59520091400013],[-100.19375566299996,70.57904694200006],[-100.21222896999988,70.56720612200012],[-100.23912512899996,70.56712474200013],[-100.26720130099996,70.57379791900009],[-100.31383216099988,70.59003327000012],[-100.34064693899987,70.59324778899999],[-100.36754309799993,70.5917422550001],[-100.39240475199988,70.58527252800003],[-100.36815344999991,70.56997304900005],[-100.31305904899995,70.55463288000011],[-100.2886856759999,70.53807200700005],[-100.28962154899997,70.51854075700008],[-100.2541397779999,70.48969147300015],[-100.22923743399986,70.46454498900006],[-100.26203365799994,70.45612213700011],[-100.28355872299989,70.461371161],[-100.32774817599994,70.4825707050001],[-100.35138912699998,70.48965078300014],[-100.46198482999988,70.49648672100007],[-100.65562903599988,70.55158112200002],[-100.68032792899996,70.57534414300012],[-100.67813066299996,70.59247467700006],[-100.66832434799991,70.61505768400002],[-100.66612708199995,70.6299502620001],[-100.67178300699993,70.64573802300013],[-100.68529212099989,70.65940989800008],[-100.71450761599995,70.68146393400015],[-100.68590247299996,70.684759833]]],[[[-71.82762610599985,71.06126536699999],[-71.8175349599999,71.05923086100013],[-71.79600989499997,71.0594750020001],[-71.50796464799993,71.01727936400005],[-71.36632239499991,71.01605866100012],[-71.34349524599989,71.00763580900018],[-71.34874426999988,70.98468659100008],[-71.36204993399991,70.97077057500012],[-71.39879309799991,70.94961172100001],[-71.38597571499989,70.92934804900001],[-71.40607662699992,70.91657135600015],[-71.43871008999986,70.90989817900002],[-71.62466386599993,70.90119049700003],[-71.89842688699989,70.8527692730001],[-71.91982988199993,70.84495677300013],[-71.9474991529999,70.826076565],[-71.96727454299993,70.81801992400005],[-72.00206458199989,70.81191640800006],[-72.04759680899984,70.80890534100017],[-72.09068762899997,70.81232330900018],[-72.11815344999994,70.82542552300005],[-72.11717688699984,70.82855866100012],[-72.11587480399996,70.83661530200006],[-72.1165258449999,70.84666575700014],[-72.1212458979999,70.85618724200012],[-72.1312556629999,70.86408112200012],[-72.14207923099988,70.86806875200007],[-72.1652725899999,70.87323639500009],[-72.18675696499994,70.88251373900013],[-72.20002193899998,70.89280833500005],[-72.22801673099991,70.92169830900015],[-72.22642981699997,70.92755768400012],[-72.22752844999991,70.93048737200003],[-72.22801673099991,70.93528880400011],[-72.17979895699995,70.94208405200006],[-72.15566972599993,70.94114817900007],[-72.13182532499988,70.93528880400011],[-72.15168209499987,70.92788320500013],[-72.12531490799995,70.92096588700004],[-72.09557044199993,70.92279694200012],[-72.06749426999994,70.93162669499999],[-72.04613196499989,70.94586823100016],[-72.03709876199989,70.96149323100015],[-72.02794348899991,70.99909088700015],[-72.01854407499988,71.014105536],[-72.01455644399991,71.02269114800002],[-72.01773027299987,71.03091054900001],[-72.02212480399996,71.03847890800012],[-72.02196204299987,71.045152085],[-72.01158606699988,71.05215078300007],[-71.85973059799994,71.07855866100006],[-71.83014889199987,71.07245514500009],[-71.83698482999989,71.06565989800005],[-71.82762610599985,71.06126536699999]]],[[[-73.15599524599995,71.42316315300003],[-73.1393123039999,71.42084381700006],[-73.13170325399997,71.43219635600003],[-73.12922115799994,71.45001862200012],[-73.12157141799992,71.45661041900009],[-73.10899817599991,71.4594587260001],[-73.03868567599989,71.487250067],[-73.02183997299989,71.49701569200012],[-72.99217688699986,71.51898834800015],[-72.97720292899993,71.52167389500012],[-72.95360266799989,71.517523505],[-72.93529212099992,71.50991445500013],[-72.92341061099995,71.49982330900018],[-72.91295325399989,71.48834870000003],[-72.89899654899992,71.47654857000008],[-72.87954667899993,71.46869538],[-72.8355606759999,71.45966217700008],[-72.8170466789999,71.44863515800004],[-72.85440019399992,71.43520742400013],[-72.93980872299997,71.43378327000006],[-73.01154537699998,71.41950104400017],[-73.02415930899986,71.41229889500012],[-73.02928626199989,71.3976911480001],[-73.02603105399993,71.39101797100007],[-73.01207434799994,71.37079498900013],[-73.00885982999989,71.36050039300012],[-73.0104874339999,71.35663483300011],[-73.01378333199995,71.353257554],[-73.01626542899987,71.35008372600014],[-73.01561438699994,71.3468285180001],[-73.01065019399988,71.34381745000007],[-72.9945369129999,71.3393415390001],[-72.9846899079999,71.3285586610001],[-72.97887122299993,71.32575104400014],[-72.98013261599993,71.32208893400012],[-72.99152584499988,71.30898672100011],[-73.00495357999988,71.30292389500015],[-73.02879798099987,71.2983259140001],[-73.05357825399994,71.29637278900006],[-73.0702205069999,71.29840729400009],[-73.08470618399993,71.30841705900018],[-73.0878800119999,71.31793854400017],[-73.08055579299992,71.32453034100014],[-73.06346594999985,71.32575104400014],[-73.12340247299989,71.33893463700012],[-73.20702063699994,71.34438711100013],[-73.26683508999989,71.36440664300004],[-73.25523841099988,71.42133209800015],[-73.2871801419999,71.42767975500009],[-73.29552161399994,71.43463776200015],[-73.29002844999994,71.44863515800004],[-73.30736243399991,71.46238841400005],[-73.37193762899996,71.49017975500011],[-73.36632239499997,71.50165436400006],[-73.36998450399992,71.50918203300002],[-73.37633216099994,71.51410553600009],[-73.37877356699988,71.517523505],[-73.36799068899998,71.528265692],[-73.35244706899988,71.53363678600006],[-73.17186438699989,71.573228257],[-73.13658606699994,71.56696198100003],[-73.1009008449999,71.55329010600009],[-73.07713782499991,71.53864166900007],[-73.08568274599992,71.52704498900009],[-73.10749264199987,71.50482819200012],[-73.11188717399995,71.49359772300012],[-73.12254798099987,71.47996653899999],[-73.16950436099992,71.46499258000011],[-73.18008378799988,71.45233795800006],[-73.1725968089999,71.43504466399999],[-73.15599524599995,71.42316315300003]]],[[[-72.72679602799988,71.54743073100013],[-72.76528886599996,71.52899811400012],[-72.99547278599991,71.55670807500012],[-73.04356848899997,71.58641185100005],[-73.01903235599994,71.60932038000014],[-72.98851477799991,71.62738678600006],[-72.92625891799992,71.65534088700008],[-72.73790442599991,71.66152578300014],[-72.70848548099991,71.65688711100013],[-72.68932044199994,71.64398834800004],[-72.6587621739999,71.600043036],[-72.72679602799988,71.54743073100013]]],[[[-95.25926673099991,71.83283112200012],[-95.3086645169999,71.778021552],[-95.32135982999995,71.75775788],[-95.31847083199992,71.74249909100003],[-95.34019934799989,71.73725006700012],[-95.3695369129999,71.73615143400009],[-95.40957597599993,71.73041413000011],[-95.4394425119999,71.732652085],[-95.49205481699994,71.74347565300009],[-95.47276770699992,71.761175848],[-95.39264889199987,71.774115302],[-95.36229407499988,71.79181549700012],[-95.38243567599991,71.79547760600013],[-95.42491614499988,71.791449286],[-95.44489498599985,71.798732815],[-95.44204667899993,71.80247630400014],[-95.4374080069999,71.81232330900015],[-95.4434301419999,71.81533437700007],[-95.44640051999991,71.81875234600007],[-95.44839433499996,71.82233307500006],[-95.45173092399997,71.82599518400008],[-95.42373613199996,71.83494700700011],[-95.35700436099988,71.84699127800003],[-95.32754472599993,71.847113348],[-95.29100501199989,71.84747955900004],[-95.27391516799992,71.84349192900005],[-95.25926673099991,71.83283112200012]]],[[[-125.90908769399991,71.96434153899999],[-125.9488826159999,71.96320221600014],[-125.96808834499987,71.96523672100007],[-125.98843339799997,71.97040436400009],[-125.99693762899987,71.97703685100004],[-125.98029537699983,71.9836286480001],[-125.9636124339999,71.98281484600001],[-125.90908769399991,71.96434153899999]]],[[[-74.71296139199993,44.99925364800005],[-74.74155716999994,44.99885650700004],[-74.86847448699993,45.0101219690001],[-74.88650956299992,45.00939849900011],[-74.903743652,45.00521270800009],[-74.94020137599992,44.98774607400013],[-74.9986474209999,44.97239817300006],[-75.0148996579999,44.9659902960001],[-75.05872127399991,44.94103057800014],[-75.0755936279999,44.93550120000013],[-75.12964717599996,44.92516591400012],[-75.27023290999998,44.863774313000036],[-75.34183060699993,44.81674875900016],[-75.45595800799993,44.741766256000105],[-75.57819860899994,44.661512757000175],[-75.69968990099997,44.58167266800008],[-75.75462194799988,44.5275674440001],[-75.79118302499992,44.49676829100004],[-75.83094803899994,44.46431549100011],[-75.84541743999995,44.439045715000034],[-75.85570104999992,44.42204417000011],[-75.87032548099992,44.408608297000065],[-75.89869584199992,44.399978333000135],[-76.06726436399993,44.34799184200001],[-76.14979162699987,44.3045319620001],[-76.17867875199991,44.27864207000006],[-76.17805863499993,44.27213084],[-76.16973872899987,44.247687887000055],[-76.16932531799995,44.24236521400009],[-76.18575842299992,44.225673727000164],[-76.2066357019999,44.21740549800002],[-76.31717159099995,44.18505605100013],[-76.3277652589999,44.18149037700006],[-76.33711869299995,44.17373891200005],[-76.34135616099991,44.165780742],[-76.34440506999992,44.158184306000024],[-76.35008947799989,44.15172475200008],[-76.4300329189999,44.103303935000106],[-76.45463090099987,44.08423533200012],[-76.4973673099999,44.029354960000134],[-76.54020707199993,43.974474589000025],[-76.58299515799986,43.919594218],[-76.62588659699992,43.864765523000116],[-76.66867468299995,43.809885153],[-76.71151444499989,43.75500478100018],[-76.75435420699992,43.700098572000066],[-76.79719397099987,43.64526987700007],[-76.80272334899988,43.642789409],[-76.80830440299988,43.640308940000025],[-76.81378210499989,43.63788014800014],[-76.81936315899988,43.635425517],[-76.8248925369999,43.63289337200011],[-76.8304735919999,43.63043874100005],[-76.83600297099991,43.628035787999984],[-76.8415323489999,43.625503642000076],[-77.07237097199993,43.626330465000116],[-77.30320959499994,43.62710561200013],[-77.53399654199987,43.62785492000013],[-77.76483516399988,43.62865590400007],[-77.99567378799989,43.629431051000054],[-78.2264607349999,43.63020619700008],[-78.45727351899993,43.63098134400009],[-78.68808630399994,43.6318081670001],[-78.75082149299995,43.61705454600009],[-78.94618424499996,43.5467229210001],[-79.07899267599993,43.4989480600001],[-79.17430985599995,43.464531555000164],[-79.09162756399988,43.3425234990001],[-79.05842545599995,43.27779876700011],[-79.0537745769999,43.26035797100009],[-79.04860693399988,43.170621847000106],[-79.04933040399997,43.15984731000016],[-79.05160416699991,43.14685068800004],[-79.05558325199988,43.13842743000005],[-79.06142268999989,43.13028839200014],[-79.06573767099992,43.120237326],[-79.0652725829999,43.10589711600004],[-79.06294714399988,43.09654368100017],[-79.05553157599988,43.087887879000114],[-79.04186315999996,43.075459697000056],[-79.03075272699992,43.06680389400019],[-79.02325964399998,43.05807057800003],[-79.02201940999996,43.04941477500007],[-79.02824641999986,43.03450612400003],[-79.03196712299986,43.01342214],[-79.02201940999996,43.00223419300014],[-79.00835099299994,42.991046245000014],[-78.98352046799991,42.976137593000075],[-78.95995601399991,42.96621571900006],[-78.93633988499995,42.960040385000084],[-78.91525590099994,42.94761220300001],[-78.90905472799997,42.93022308399999],[-78.91895076599995,42.88924367300014],[-78.96305660099995,42.84012522400009],[-79.01938391099995,42.802685649000026],[-79.1727595629999,42.74801198400017],[-79.32618688999992,42.69333831800013],[-79.47964005599991,42.63871632899999],[-79.63301570699988,42.58404266400011],[-79.76300663499988,42.53770492800011],[-79.78639135799995,42.529368999000084],[-79.93976700899992,42.47477284800014],[-80.0931684979999,42.420150859],[-80.24659582599988,42.36547719400012],[-80.37537349499986,42.345788473000184],[-80.50415116399995,42.32622894300009],[-80.52023319699992,42.32378209800014],[-80.63287715699992,42.30664357500013],[-80.76165482699993,42.28703236900013],[-80.89038081899992,42.267447002000026],[-81.01915848899998,42.24780995700017],[-81.14788448099998,42.22825042700005],[-81.27666215099994,42.208665060000115],[-81.42021927899995,42.14215749100008],[-81.56372473199997,42.075675761000085],[-81.70728186099987,42.00921986900015],[-81.85073563599992,41.94271230100016],[-81.99424108899993,41.87620473300011],[-82.13774654099993,41.809800517000056],[-82.28135534699993,41.74329294900009],[-82.42486079999995,41.676811219000044],[-82.45131913299991,41.671901957],[-82.66691320799988,41.669085592000116],[-82.71112239599992,41.680247701000056],[-82.86522151699998,41.752491353],[-82.98379309099991,41.808069357000086],[-83.0684132499999,41.84773101900008],[-83.09737788899997,41.87576548300008],[-83.12344864999994,41.9203364050001],[-83.13250661999987,41.94195280800004],[-83.15701249299988,42.00043487600006],[-83.15949296099993,42.04632354800013],[-83.13964921099995,42.11585418800003],[-83.13592850799994,42.20026763900013],[-83.12851293999991,42.239955140000134],[-83.1098319099999,42.27227874800011],[-83.07996293099993,42.30506744400013],[-83.04035294699989,42.33186167400011],[-82.94351131199994,42.35547780400013],[-82.83282039499997,42.39800750799999],[-82.8001350509999,42.41798044900009],[-82.69440506999987,42.519137065000095],[-82.64433060699989,42.557816874000096],[-82.60846716299991,42.56109832800008],[-82.57583349699986,42.571795349000084],[-82.54924597199992,42.590941468],[-82.52622412199989,42.619906108000166],[-82.51126379399992,42.64667450000006],[-82.48341019799994,42.719254049000156],[-82.47695064399997,42.76147369400003],[-82.47134374999987,42.77984466600013],[-82.47098201599997,42.79056752500004],[-82.47361751299988,42.798163961],[-82.48527054899995,42.81852447600012],[-82.48232499199995,42.83511261000014],[-82.46803645899988,42.863973898],[-82.46478084299989,42.88363678000003],[-82.45317948399992,42.91898346000012],[-82.43044185399995,42.95130706800001],[-82.41460302799996,42.98324310400009],[-82.41641170299994,43.017142843],[-82.41108902999989,43.05127512700007],[-82.37892045099994,43.11357106600009],[-82.34672603399991,43.175841167000115],[-82.31450577899994,43.238188782000165],[-82.28238887599991,43.30048472100019],[-82.25019445899996,43.36278066],[-82.21800004199993,43.42502492300004],[-82.18585729999998,43.48729502400015],[-82.15361120599994,43.54959096300017],[-82.14565303599997,43.57641103100015],[-82.1454463299999,43.600647278000125],[-82.1475650639999,43.61134429900015],[-82.19562414599994,43.82169321700009],[-82.24368322799992,44.031938782000125],[-82.29184566299998,44.242210185000076],[-82.33987890599992,44.452429912000085],[-82.38788631299988,44.662701315],[-82.43602290899989,44.87297271800004],[-82.48408199099991,45.083244120000174],[-82.53214107299999,45.293515523],[-82.54828995799997,45.33459828700008],[-82.58877844299988,45.37180531900016],[-82.75943986099995,45.44720123300006],[-83.01901057999996,45.561871236],[-83.19930965299994,45.641556295000086],[-83.3963260509999,45.72852773099999],[-83.51071183299986,45.77906728100014],[-83.59525447599995,45.81642934200009],[-83.55621293099992,45.869656068000054],[-83.51024674499993,45.93239125600009],[-83.4658566899999,45.993111064000104],[-83.46280778099994,46.007787171000174],[-83.47409908099992,46.02313507100014],[-83.49203080299989,46.03708770700014],[-83.50882564399987,46.04737131700013],[-83.56543717499994,46.09077952100013],[-83.6138838299999,46.11563588500008],[-83.66483679199993,46.11914988300004],[-83.76653601099989,46.106489157],[-83.81805741399998,46.11656606000004],[-83.83929642799987,46.11920155900005],[-83.85642716599992,46.11573923800001],[-83.87267940299992,46.107884420000076],[-83.93073787499989,46.066956686000154],[-83.94730017199988,46.06060048400003],[-83.96458593799989,46.06318430700004],[-83.97639400199998,46.07310618100003],[-83.99582434099997,46.101166484000046],[-84.00876928799991,46.112328593000186],[-84.01416947499986,46.11599762000016],[-84.02104243999992,46.15160268100006],[-84.05582067899988,46.17144643200005],[-84.0868007009999,46.201212057000035],[-84.09677425099991,46.22482818700014],[-84.09922888299988,46.237230530000105],[-84.09922888299988,46.25087310800002],[-84.10667028899991,46.276969706000116],[-84.11413753299993,46.29557322200016],[-84.11909847099987,46.31422841400014],[-84.11289729899997,46.32787099200006],[-84.10543005399987,46.34774058000014],[-84.12904618399996,46.37502573700006],[-84.14767553699993,46.39988210100002],[-84.15881180899996,46.43334259100003],[-84.11044266799993,46.52646352100011],[-84.14767553699993,46.54134633400007],[-84.19728491199993,46.546358948000105],[-84.24201086499997,46.52646352100011],[-84.30534033199987,46.50160715800014],[-84.35246923799988,46.52274281799999],[-84.38970210799991,46.520262350000124],[-84.42324011199992,46.51158070900006],[-84.44809647599995,46.489721578000044],[-84.46540808099988,46.47817189600009],[-84.47830135099989,46.4664671840001],[-84.49217647399993,46.456881206],[-84.51230444299992,46.45163604700018],[-84.54129492199988,46.45282460600002],[-84.56656469699996,46.46119618800016],[-84.58940567999994,46.47512298600007],[-84.69368872099997,46.56485911100004],[-84.77332210299994,46.63343373600016],[-84.78745560699987,46.65717905700002],[-84.81644608599994,46.74590749100004],[-84.8354113369999,46.80386261000008],[-84.85419572,46.86117177300006],[-84.86373002199988,46.88194570000009],[-84.87869034799988,46.89791371700012],[-84.89494258699997,46.90514841700009],[-84.91116898599998,46.91248647],[-84.9274470629999,46.91966949500015],[-84.9436734619999,46.927007548000134],[-84.95997737699994,46.93424224900009],[-84.97620377699994,46.94147694900006],[-84.99240433799994,46.94878916400016],[-85.00865657599988,46.95599802700012],[-85.13366186599993,47.00782948800009],[-85.2586413169999,47.05968678800009],[-85.38364660699995,47.111440735000045],[-85.50862605899991,47.16322052000011],[-85.63363134799997,47.21502614399999],[-85.75861079899994,47.266780090000154],[-85.8836160889999,47.31855987600012],[-86.00856970299995,47.370365499000016],[-86.11336950699993,47.41266265899999],[-86.21811763499996,47.45493398100008],[-86.32286576399994,47.49720530200007],[-86.42761389199991,47.53957997700017],[-86.53231034399997,47.58190297500009],[-86.63705847199992,47.62412262000005],[-86.74180660099998,47.66644561800014],[-86.84655472899993,47.70874277800014],[-87.03416601599992,47.78248504700018],[-87.22169978899987,47.856253154000015],[-87.40925939999994,47.92999542200006],[-87.59689652499992,48.00373769200009],[-87.78448197499998,48.07742828400002],[-87.97209326199996,48.15117055300006],[-88.15967871199993,48.22488698400018],[-88.3472641599999,48.29865509100004],[-88.37646134499994,48.305114645000074],[-88.40790645399997,48.30405527800009],[-88.57887792999992,48.27038808200014],[-88.64272416299988,48.256590475],[-88.78214717599997,48.202071838000094],[-88.90462032099991,48.154296977],[-89.09525467899994,48.079934591],[-89.24552974499997,48.02117848800013],[-89.34038183599992,47.98415232400008],[-89.36363623099996,47.979604797000135],[-89.38709733099992,47.98053497299999],[-89.46184728999992,47.99453928600009],[-89.49896244399989,47.995094552000026],[-89.593105428,47.99650299100013],[-89.65658992599994,48.00797515900014],[-89.67865576299994,48.00869862900005],[-89.71278804599993,48.00337595600008],[-89.72459610999992,48.005908101999985],[-89.74596431499992,48.013762919000115],[-89.76330175899994,48.017302755000074],[-89.78097509799994,48.017199402000145],[-89.80345434699987,48.013762919000115],[-89.90244055199994,47.98590932300006],[-89.92044978899995,47.98745961500008],[-89.980316936,48.0100938930001],[-89.99532893899999,48.01859466600003],[-90.008222209,48.02973093700013],[-90.06103552299993,48.09101918600011],[-90.07325699899995,48.10119944300008],[-90.12038590599988,48.115358786000016],[-90.17862524499989,48.11644399000003],[-90.4706229259999,48.089882304000085],[-90.47785762599997,48.09153595000005],[-90.48346451899991,48.09448150700014],[-90.49049251399992,48.096238506000034],[-90.50188716699992,48.094274801],[-90.53160111499999,48.08455963200005],[-90.54201391699993,48.08373280900004],[-90.56219356299991,48.08884877600012],[-90.57387243699989,48.09789215100007],[-90.5868432209999,48.10481679300015],[-90.6110794679999,48.103499044],[-90.7013065189999,48.08455963200005],[-90.75034745299993,48.08399119100001],[-90.78646927899992,48.100450134000155],[-90.79670121299992,48.11706410699999],[-90.80305741399994,48.14716562900015],[-90.81230749599987,48.1609890750001],[-90.8238830169999,48.168327128000115],[-90.83426997999993,48.171789449000144],[-90.843003296,48.17698293100006],[-90.84972123299994,48.18956614200009],[-90.8488427339999,48.19871287100007],[-90.83793900599994,48.21054677299999],[-90.84067785699997,48.220106914],[-90.87380244999989,48.234343771000155],[-90.92315344299999,48.22710907],[-91.00810949799985,48.19437205100008],[-91.02815995299991,48.18483774900001],[-91.07110306899997,48.1708592740001],[-91.20396317599997,48.10765899700011],[-91.23806962199994,48.082647604000115],[-91.27636185799994,48.064767558000156],[-91.36540034999993,48.0578429160001],[-91.42792883399994,48.03644887400016],[-91.44627396699991,48.04073801700003],[-91.46472245299992,48.04895457],[-91.48709834899992,48.053476258],[-91.57484492999995,48.04820526200008],[-91.58698889199994,48.05257192000006],[-91.58512853999994,48.060840149000015],[-91.57980586799991,48.07096873000016],[-91.58109777899995,48.08094228100008],[-91.5896760659999,48.08833201200017],[-91.5974792079999,48.09039906800014],[-91.61861486899994,48.08957224600012],[-91.69251216699993,48.09786631300007],[-91.71643835499992,48.11205149400003],[-91.69550939999993,48.13757965100013],[-91.72757462599995,48.168327128000115],[-91.74413692299996,48.179592590000155],[-91.76498836299992,48.18734405600015],[-91.85224401899993,48.19597401900002],[-91.95730220599985,48.22832346600002],[-91.97549230999991,48.236565857000144],[-91.99215795999991,48.24790883400014],[-92.00799678599995,48.26248158800008],[-92.02135514299995,48.28744130500017],[-92.03011429899996,48.31317616900016],[-92.04342097999995,48.33459604900018],[-92.07049943099992,48.34671417300008],[-92.15473201499992,48.35012481800011],[-92.25911840899997,48.33963450200015],[-92.28159765699986,48.331779684000125],[-92.30309505299994,48.31092824300005],[-92.30141556899997,48.290645244000146],[-92.29206213499992,48.27033640600003],[-92.29102860599994,48.24956248000008],[-92.30366349299996,48.23927887000009],[-92.32787390199996,48.229434509000114],[-92.3538154709999,48.22289744100014],[-92.3718505459999,48.22258738200007],[-92.38464046299998,48.23240590400003],[-92.4182301429999,48.282041118],[-92.45138057499992,48.31268524200014],[-92.46246516999992,48.32929921500015],[-92.46706437199997,48.35322540300014],[-92.4675811369999,48.39428232900009],[-92.47453161599988,48.4104828900001],[-92.49062882499996,48.43311716800015],[-92.52693151899992,48.44562286400007],[-92.57052058899988,48.446656393000055],[-92.657052776,48.438233134000036],[-92.67712906899996,48.441747132],[-92.70405249099997,48.44515777600013],[-92.7189094649999,48.459782207],[-92.71064123599987,48.48288157200007],[-92.69136592599992,48.489857891000085],[-92.64674332699991,48.49742848800004],[-92.62746801899996,48.50277699800007],[-92.63018103099996,48.51946848600012],[-92.6486036789999,48.536263326],[-92.72554988699991,48.54869150800006],[-92.8841965329999,48.57987823500004],[-92.95558752499991,48.612227682000125],[-92.97972041799997,48.617679546000105],[-93.13170080599996,48.62463002499999],[-93.25773962499991,48.63031443300004],[-93.38571630899989,48.61486318000014],[-93.41731644699988,48.604114482],[-93.45147456899994,48.59742238400009],[-93.45377417099988,48.586957907000155],[-93.45224971499997,48.57272105],[-93.45992366599995,48.55739898700013],[-93.49175634799988,48.542309469000124],[-93.56658382199993,48.53827870700003],[-93.59988928299995,48.52634145100008],[-93.6162965499999,48.53130238900003],[-93.7567789309999,48.51654876700003],[-93.77866390099992,48.51946848600012],[-93.80938553899996,48.54357554100007],[-93.83574051999994,48.617136943000055],[-93.8748854179999,48.63620554600014],[-94.03484981299994,48.64331105600017],[-94.23215043199986,48.65201853500004],[-94.2510381679999,48.65728953000017],[-94.25245926899998,48.66240549700014],[-94.25576656099989,48.6835411580001],[-94.25845373599991,48.69082753600016],[-94.26548172999992,48.697752177000055],[-94.27449926799997,48.7041083780001],[-94.28403356999996,48.709069316000054],[-94.29258601899997,48.711911520000015],[-94.31157710799994,48.71392690000006],[-94.47949967499997,48.700697734000144],[-94.51916133699993,48.704470113000085],[-94.59285192899995,48.726432597000056],[-94.68889257899997,48.77883249899998],[-94.70178584899993,48.79009796200013],[-94.71090673899992,48.80751292000018],[-94.7132838549999,48.82384267200002],[-94.71214697299988,48.84244618700008],[-94.71173356199995,48.8627550260001],[-94.71121679699993,48.91458648700008],[-94.7537723399999,49.02615590400007],[-94.7920387369999,49.12645986000014],[-94.80374344999986,49.14640696300015],[-94.81118485599988,49.16656077100005],[-94.80612056599992,49.21089915],[-94.81035803299997,49.229606019000165],[-94.81989233499996,49.25203359000006],[-94.82725622599995,49.29285797200005],[-94.83914180499995,49.30887766500011],[-94.8561950289999,49.31828277600006],[-94.92608740299991,49.34556793300008],[-94.98251806699994,49.35616160100015],[-95.10282080099992,49.35393951500005],[-95.1605692139999,49.36949412100007],[-95.16033666999996,49.313011780000025],[-95.16002661199988,49.22335317000006],[-95.15966487699987,49.10950999000012],[-95.15932898,49.01178985600008],[-95.16188696299989,49.001144512],[-95.16852738499998,48.995046693000134],[-95.17710567299991,48.992669577000086],[-95.39693721599994,48.992669577000086],[-95.61671708199995,48.992669577000086],[-95.83649694899998,48.992669577000086],[-96.05632849199989,48.992669577000086],[-96.27621171099995,48.992669577000086],[-96.49599157699986,48.992669577000086],[-96.7157972819999,48.992669577000086],[-96.93560298799991,48.992669577000086],[-97.15538285299994,48.992669577000086],[-97.22608856599999,48.992669577000086],[-97.37518855899995,48.992669577000086],[-97.59499426299988,48.992669577000086],[-97.8147999679999,48.992669577000086],[-98.03460567199981,48.992669577000086],[-98.25443721599993,48.992669577000086],[-98.47419124399993,48.992669577000086],[-98.694048625,48.992669577000086],[-98.91385432999991,48.992669577000086],[-99.13366003499993,48.992669577000086],[-99.35349157699994,48.992669577000086],[-99.57329728299996,48.992669577000086],[-99.79310298699991,48.992669577000086],[-100.01288285399993,48.992669577000086],[-100.23266271999992,48.992669577000086],[-100.45249426299996,48.992669577000086],[-100.67227412999998,48.992669577000086],[-100.89210567299992,48.992669577000086],[-101.11188553899991,48.992669577000086],[-101.33169124399986,48.992669577000086],[-101.3643396469999,48.992669577000086],[-101.5515744629999,48.992669577000086],[-101.77138016799992,48.992669577000086],[-101.99118587299994,48.992669577000086],[-102.21093990099995,48.992669577000086],[-102.43074560599987,48.99261790000015],[-102.6505771489999,48.99261790000015],[-102.87038285399991,48.99261790000015],[-103.09024023499987,48.99261790000015],[-103.31004593899989,48.99261790000015],[-103.5298516439999,48.99261790000015],[-103.74968318699993,48.99261790000015],[-103.96948889199987,48.99261790000015],[-104.0475744469999,48.99261790000015],[-104.18924292099987,48.99261790000015],[-104.4090486249999,48.99261790000015],[-104.62885432999991,48.99261790000015],[-104.84871171099994,48.99261790000015],[-105.06854325399989,48.99261790000015],[-105.2883231209999,48.99261790000015],[-105.50815466299993,48.99261790000015],[-105.72793452999993,48.99261790000015],[-105.94774023499994,48.99261790000015],[-106.16752010099988,48.99261790000015],[-106.38732580599991,48.99261790000015],[-106.60718318699993,48.99261790000015],[-106.82698889299986,48.99261790000015],[-107.04679459699989,48.99261790000015],[-107.26662613899991,48.99261790000015],[-107.48643184499994,48.99261790000015],[-107.7062375499999,48.99261790000015],[-107.9260432539999,48.99261790000015],[-108.14579728199989,48.99261790000015],[-108.3656288249999,48.99261790000015],[-108.58543452999994,48.99261790000015],[-108.80524023499996,48.99261790000015],[-109.0250459399999,48.99261790000015],[-109.24485164499991,48.99261790000015],[-109.46470902599994,48.99261790000015],[-109.68454056899988,48.99261790000015],[-109.90426875899998,48.99261790000015],[-109.9993210879999,48.99261790000015],[-110.1241003009999,48.99261790000015],[-110.34388016799993,48.99261790000015],[-110.56371171199996,48.99261790000015],[-110.78351741599998,48.99261790000015],[-111.0033231209999,48.99261790000015],[-111.22307714899992,48.99261790000015],[-111.44288285399993,48.99261790000015],[-111.66271439599987,48.99261790000015],[-111.882571778,48.99261790000015],[-112.10237748299991,48.99261790000015],[-112.32218318799994,48.99261790000015],[-112.54198889199988,48.99261790000015],[-112.76182043499999,48.99256622300005],[-112.9816261399999,48.992514547000056],[-113.20138016799993,48.992514547000056],[-113.42118587299996,48.992514547000056],[-113.64104325499999,48.992514547000056],[-113.86087479699991,48.992514547000056],[-114.06384012799992,48.992514547000056],[-114.08068050199992,48.992514547000056],[-114.30048620699988,48.992514547000056],[-114.52026607299989,48.992514547000056],[-114.74009761599991,48.992514547000056],[-114.95992915899994,48.992514547000056],[-115.17965734999994,48.992514547000056],[-115.3995147309999,48.992514547000056],[-115.61937211199992,48.992514547000056],[-115.83912613999992,48.992514547000056],[-116.04816312499996,48.992514547000056],[-116.05895768299995,48.992514547000056],[-116.2787633879999,48.992514547000056],[-116.4985690919999,48.992514547000056],[-116.71837479699992,48.992514547000056],[-116.93818050199992,48.992514547000056],[-117.03815110299993,48.992514547000056],[-117.15801204499988,48.992514547000056],[-117.37786942599993,48.992514547000056],[-117.59767513099993,48.992514547000056],[-117.81742915899993,48.992514547000056],[-118.03723486399996,48.992514547000056],[-118.2570664069999,48.992514547000056],[-118.47687211199992,48.992514547000056],[-118.69667781599993,48.992514547000056],[-118.91648352099996,48.992514547000056],[-119.13621171099997,48.992514547000056],[-119.35604325399989,48.992514547000056],[-119.57587479699991,48.992514547000056],[-119.79570633999994,48.992514547000056],[-120.01551204499997,48.992514547000056],[-120.23531774999991,48.992514547000056],[-120.45514929299993,48.992514547000056],[-120.67495499799993,48.992514547000056],[-120.89470902599994,48.992514547000056],[-121.11451472999997,48.992514547000056],[-121.3343204349999,48.992514547000056],[-121.55415197799992,48.992514547000056],[-121.77395768299995,48.992514547000056],[-121.99376338799998,48.992514547000056],[-122.21351741599997,48.992514547000056],[-122.43337479699993,48.992514547000056],[-122.65325801699997,48.992514547000056],[-122.75301232501457,48.992514892989064],[-122.7595108709999,49.001166083],[-122.78180904899995,49.01732005400008],[-122.8035782539999,49.010077216000134],[-122.82323157499985,49.006984768000066],[-122.85301673099987,49.01703522300012],[-122.87604732999985,49.036525783000016],[-122.87559973899994,49.05475495000008],[-122.8653458319999,49.07005442900005],[-122.86774654899995,49.08047109600015],[-122.88174394399991,49.08649323100015],[-122.90660559799994,49.088324286000116],[-122.93004309799994,49.08685944200006],[-122.95128333199993,49.08295319200009],[-123.03282630099997,49.05060455900015],[-123.0485733709999,49.03522370000003],[-123.04405676999995,49.01727936400008],[-123.03205318899984,48.995184637000094],[-123.03528966304808,48.99251454707512],[-123.03530634599989,48.992514547000056],[-123.09048816773334,48.99251454701054],[-123.09373938699987,49.00511302299999],[-123.1004939439999,49.02118561400006],[-123.10830644399991,49.03367747599999],[-123.12462317599991,49.04677969000015],[-123.13878333199993,49.05377838700003],[-123.14297441299996,49.06093984600007],[-123.12946529899989,49.074652411],[-123.07567298099994,49.10565827000012],[-123.0542699859999,49.123236395000056],[-123.04067949099992,49.15102773600002],[-123.08112545499986,49.12836334800006],[-123.12340247299989,49.11587148600015],[-123.16714433499989,49.11562734600001],[-123.21198482999989,49.129950262000094],[-123.21198482999989,49.13670482000005],[-123.20010331899994,49.14850495000012],[-123.20470130099989,49.189846096000124],[-123.19831295499986,49.20563385600009],[-123.17979895699993,49.20986562700001],[-123.15697180899994,49.205308335000055],[-123.1376033189999,49.195705471000096],[-123.14338131399988,49.20746491100006],[-123.17536373599987,49.223700262000094],[-123.21100826699991,49.23663971600011],[-123.23591061099987,49.2499860700001],[-123.2468969389999,49.274644273000106],[-123.21825110599984,49.279201565000065],[-123.17528235599991,49.27659739800008],[-123.14305579299995,49.280096747000144],[-123.16193600199998,49.29999420800006],[-123.15489661399991,49.308539130000085],[-123.1385391919999,49.30902741100005],[-123.12946529899989,49.30491771000011],[-123.1233617829999,49.29437897300015],[-123.10863196499992,49.288763739000146],[-123.09044348899992,49.28864166900017],[-123.07420813699987,49.29437897300015],[-123.06737219999985,49.28754303600011],[-123.05654863199986,49.294256903000175],[-123.03941809799993,49.29588450699999],[-123.0209854809999,49.29340241100009],[-123.00649980399996,49.28754303600011],[-122.96084550699992,49.28188711100013],[-122.92194576699991,49.29954661700005],[-122.89248613199993,49.33368561400006],[-122.86266028599992,49.406439520000035],[-122.85773678299988,49.42352936400006],[-122.85570227799985,49.441799221000124],[-122.85985266799987,49.449855861000074],[-122.86904863199997,49.45636627800015],[-122.87828528599992,49.45734284100003],[-122.88239498599988,49.44863515800013],[-122.87962805899991,49.417181708000115],[-122.88239498599988,49.40424225500011],[-122.93814042899986,49.32583242400007],[-123.02065995999986,49.306830145000056],[-123.21198482999989,49.34275950700005],[-123.22842363199989,49.343451239],[-123.27000891799987,49.335353908000066],[-123.27660071499994,49.351548570000105],[-123.28355872299993,49.36334870000009],[-123.29393469999992,49.37010325700011],[-123.28384355399987,49.38255442900005],[-123.25645911399991,49.39655182500009],[-123.24547278599994,49.41107819200015],[-123.24107825399996,49.42609284100017],[-123.2401016919999,49.4415550800001],[-123.2521866529999,49.51178620000003],[-123.25112870999992,49.52285390800007],[-123.2401016919999,49.55499909100003],[-123.22581946499989,49.58470286700007],[-123.21816972599987,49.596014716000134],[-123.2218318349999,49.596909898000135],[-123.22472083199995,49.59699127800011],[-123.22618567599991,49.598537502000156],[-123.22565670499984,49.60346100500011],[-123.21507727799988,49.609930731000034],[-123.20689856699997,49.621568101000136],[-123.2046606109999,49.63580963700003],[-123.21198482999989,49.650051174000126],[-123.16999264199991,49.67499420800006],[-123.1539607409999,49.69293854400011],[-123.17100989499988,49.705267645000056],[-123.18814042899993,49.69159577000012],[-123.20278886599992,49.68227773600007],[-123.21507727799988,49.67796458500008],[-123.22842363199989,49.674872137000094],[-123.23924719999988,49.667425848000036],[-123.2474259109999,49.65827057500003],[-123.25291907499992,49.650051174000126],[-123.24657141799989,49.625555731000084],[-123.24547278599994,49.61310455900009],[-123.2486059239999,49.59780508000013],[-123.25641842399992,49.59300364800004],[-123.26659094999987,49.59137604400003],[-123.28726152299987,49.580877997000144],[-123.31582597599986,49.58258698100015],[-123.32803300699993,49.58177317900014],[-123.33568274599988,49.57664622600011],[-123.34898841099991,49.56012604400014],[-123.35533606699993,49.55508047100001],[-123.38060462099986,49.5585798200001],[-123.39659583199995,49.55829498900006],[-123.40379798099991,49.551662502],[-123.40973873599982,49.54775625200001],[-123.43822180899996,49.536810614000146],[-123.44815019399994,49.53091054900001],[-123.48949133999987,49.515041408000066],[-123.50267493399991,49.505438544000114],[-123.48570716099995,49.49359772300015],[-123.49132239499994,49.473089911],[-123.47321529899995,49.43451569200011],[-123.48228919199993,49.414211330000015],[-123.49986731699997,49.39988841400013],[-123.5161840489999,49.39166901200003],[-123.53355872299997,49.38849518400015],[-123.5545955069999,49.38996002800003],[-123.78111731699987,49.46548086100013],[-123.80671139199985,49.47052643400017],[-123.8652237619999,49.47333405200014],[-123.8855688139999,49.477280992000104],[-123.90343176999987,49.48615143400015],[-123.91038977799987,49.49380117400001],[-123.91421464799987,49.500881252000156],[-123.91954505099994,49.507473049000126],[-123.93077551999994,49.513495184000035],[-123.94627844999987,49.51756419500001],[-123.95571855399989,49.5184593770001],[-123.96377519399991,49.52114492400006],[-123.97545325399992,49.53091054900001],[-123.99315344999991,49.55023834800012],[-124.02696692599987,49.60346100500011],[-124.0342911449999,49.611151434000035],[-124.05313066299993,49.62278880400005],[-124.06110592399989,49.630804755],[-124.06607011599993,49.644029039000124],[-124.0679825509999,49.662339585],[-124.06383216099995,49.678452867000075],[-124.0511368479999,49.68545156500015],[-124.04430091099988,49.69122955900009],[-124.02920488199987,49.72044505400005],[-124.02013098899997,49.73261139500012],[-124.00609290299991,49.74079010600003],[-123.99006100199993,49.74506256700014],[-123.95494544199995,49.74689362200002],[-123.93927975199996,49.74359772300009],[-123.93211829299992,49.735663153000026],[-123.92788652299991,49.72557200700005],[-123.92080644399994,49.7158063820001],[-123.86925208199989,49.67177969],[-123.8406469389999,49.638128973],[-123.83511308499988,49.633937893000066],[-123.8272598949999,49.59520091400013],[-123.82835852799985,49.58177317900014],[-123.81973222599994,49.567043361000124],[-123.80508378799993,49.52863190300003],[-123.79417883999987,49.513495184000035],[-123.77708899599993,49.505316473000114],[-123.7671606109999,49.5131696640001],[-123.7603246739999,49.528021552000084],[-123.75259355399989,49.54075755400014],[-123.76341712099989,49.556870835],[-123.77163652299988,49.575425523000106],[-123.77228756399984,49.59393952000011],[-123.76008053299986,49.609686591000084],[-123.75096594999985,49.612738348000065],[-123.71849524599986,49.61652252800009],[-123.70889238199989,49.62278880400005],[-123.70181230399993,49.629461981000084],[-123.69367428299991,49.634833075000145],[-123.63801021999988,49.6410993510001],[-123.58975175699987,49.65363190300012],[-123.55020097599991,49.674872137000094],[-123.5335180329999,49.705267645000056],[-123.66445878799988,49.65615469000012],[-123.79454505099997,49.644029039000124],[-123.80785071499989,49.64691803600005],[-123.81208248599992,49.667141018000095],[-123.82323157499994,49.68317291900017],[-123.88361568899987,49.739406643000066],[-123.91836503799992,49.75625234600007],[-123.92760169199987,49.76361725500006],[-123.93370520699996,49.78327057500012],[-123.92267818899994,49.79962799700003],[-123.88975989499993,49.828802802000084],[-123.88182532499988,49.84735748900009],[-123.88048255099987,49.865423895],[-123.88361568899987,49.90110911700005],[-123.89061438699993,49.92145416900002],[-123.90754146999993,49.93097565300003],[-123.92780514199983,49.93646881700006],[-123.94497636599996,49.94489166900011],[-123.95787512899997,49.96710846600014],[-123.95360266799987,49.98969147300012],[-123.93561764199984,50.00731028900007],[-123.89574133999984,50.017523505],[-123.87808183499995,50.03119538000011],[-123.86587480399987,50.03424713700004],[-123.81997636599989,50.03815338700012],[-123.80785071499989,50.04108307500006],[-123.7719620429999,50.072943427000084],[-123.75454667899992,50.09373607000005],[-123.7563370429999,50.10317617400007],[-123.77741451699985,50.11163971600003],[-123.81480872299989,50.14915599200013],[-123.82835852799985,50.158392645],[-123.88756262899993,50.18183014500006],[-123.92894446499986,50.19049713700015],[-123.97061113199993,50.21442291900003],[-123.99347896999984,50.21979401200017],[-123.98444576699983,50.20600006700009],[-123.97223873599985,50.19269440300015],[-123.95848548099993,50.18105703300013],[-123.94497636599996,50.17206452000012],[-123.92471269399994,50.164129950000145],[-123.88145911399995,50.153753973000065],[-123.86245683499997,50.14411041900008],[-123.85802161399988,50.139349677],[-123.8505753249999,50.12669505400014],[-123.84569251199993,50.12051015800015],[-123.83714758999992,50.115952867000104],[-123.81334387899994,50.10781484600001],[-123.80785071499989,50.10317617400007],[-123.81468665299992,50.090318101000044],[-123.83315995999992,50.075506903000175],[-123.86925208199989,50.054754950000174],[-123.98110917899989,50.021389065],[-123.99315344999991,50.010809637000065],[-123.99962317599991,49.993312893],[-124.00007076699991,49.97361888200005],[-123.9962458979999,49.95302969000012],[-123.98900305899987,49.93378327000006],[-123.97911536399995,49.91815827],[-123.96190344999985,49.90399811400005],[-123.92609615799984,49.886175848],[-123.91087805899986,49.869777736000074],[-123.91787675699992,49.86139557500003],[-123.92992102799987,49.838446356000034],[-123.93822180899991,49.828802802000084],[-123.96344967399989,49.81671784100017],[-123.96548417899992,49.81513092700014],[-123.9706925119999,49.81281159100017],[-123.97398841099994,49.81069570500016],[-123.97817949099988,49.809027411000145],[-123.98595130099987,49.80829498900012],[-124.00112870999988,49.81183502800009],[-124.00853430899987,49.82062409100014],[-124.01329505099993,49.84243398600002],[-124.0134985019999,49.84813060099999],[-124.0117081369999,49.85089752800015],[-124.01065019399996,49.854681708000086],[-124.01329505099993,49.86359284100003],[-124.01707923099988,49.86863841400004],[-124.02912350199988,49.87824127800003],[-124.03441321499986,49.88344961100001],[-124.02562415299988,49.89398834800009],[-124.02041581899991,49.907782294000086],[-124.02301998599991,49.919867255],[-124.03746497299996,49.92499420800003],[-124.04523678299988,49.917425848000065],[-124.0747777989999,49.869777736000074],[-124.0640763009999,49.86359284100003],[-124.05272376199993,49.852240302000055],[-124.0481664699999,49.84113190300011],[-124.05768795499986,49.83624909100014],[-124.07298743399994,49.834947007000046],[-124.08495032499988,49.83051178600009],[-124.08922278599988,49.82192617400007],[-124.08161373599985,49.80829498900012],[-124.1021622389999,49.79816315300015],[-124.14781653599992,49.78436920800006],[-124.17096920499985,49.78099192900013],[-124.24966386599995,49.78099192900013],[-124.27399654899992,49.774155992000104],[-124.26748613199992,49.75165436400012],[-124.28302975199983,49.74656810100002],[-124.3042699859999,49.75267161699999],[-124.32721920499989,49.77435944200006],[-124.35505123599987,49.77448151200004],[-124.4037166009999,49.767320054],[-124.43028723899994,49.77155182500003],[-124.47760982999992,49.79035065300015],[-124.51325436099985,49.79751211100001],[-124.5208227199999,49.80483633],[-124.52554277299991,49.814846096],[-124.52847245999993,49.83771393400009],[-124.53221594999987,49.84438711100016],[-124.58311926999988,49.88247304900015],[-124.6055395169999,49.893255927000055],[-124.62686113199995,49.89765045800014],[-124.6349177729999,49.90200429900012],[-124.64972896999986,49.92072174700009],[-124.66100012899994,49.92499420800003],[-124.67544511599992,49.927150783000016],[-124.73216712099989,49.95429108300011],[-124.76439368399993,49.97736237200009],[-124.82209225199988,50.04010651200015],[-124.82892818899988,50.054754950000174],[-124.82038326699988,50.07147858300002],[-124.80093339799987,50.06220123900005],[-124.77916419199991,50.04413483300014],[-124.76341712099985,50.03424713700004],[-124.7424210279999,50.02777741100011],[-124.70376542899996,49.99689362200017],[-124.68488521999984,49.98647695500007],[-124.70189368399988,50.023179429],[-124.7044571609999,50.04096100500008],[-124.68858801999995,50.04852936400012],[-124.68301347599986,50.0524763040001],[-124.67690995999986,50.061916408],[-124.6725154289999,50.07318756700003],[-124.67186438699994,50.08270905200011],[-124.67739824099996,50.088853257],[-124.70539303299988,50.10317617400007],[-124.69334876199987,50.114406643000066],[-124.67642167899987,50.11957428600008],[-124.66563880099987,50.12677643400012],[-124.67186438699994,50.14411041900008],[-124.64883378799988,50.15257396000014],[-124.62832597599991,50.16937897300015],[-124.61750240799982,50.18891022300012],[-124.62340247299996,50.20555247599999],[-124.60521399599986,50.23285553600005],[-124.60293535099989,50.24030182500003],[-124.60789954299993,50.25063711100013],[-124.6262100899999,50.26593659100011],[-124.63023841099988,50.277899481000034],[-124.63988196499994,50.29385000200013],[-124.66218014199988,50.304185289000046],[-124.68732662699988,50.31256745000012],[-124.70539303299988,50.32225169499999],[-124.71344967399992,50.33136627800015],[-124.71153723899995,50.33372630400011],[-124.70327714799988,50.33539459800012],[-124.67747962099995,50.354681708000086],[-124.6733292309999,50.361029364],[-124.67186438699994,50.37376536700004],[-124.65982011599992,50.3920759140001],[-124.63182532499991,50.401800848000065],[-124.59972083199992,50.40521881700009],[-124.5756729809999,50.40477122599999],[-124.54596920499988,50.39704010600015],[-124.53404700399992,50.3973656270001],[-124.52379309799991,50.40192291900006],[-124.50625566299986,50.416083075000145],[-124.4962052069999,50.419094143000066],[-124.47655188699994,50.42177969000015],[-124.4292699859999,50.43724192900008],[-124.41120357999989,50.445746161],[-124.35676021999987,50.486151434000064],[-124.34850012899996,50.497259833000086],[-124.35899817599994,50.50926341400019],[-124.38296464799988,50.497870184000035],[-124.42479407499991,50.46625397300015],[-124.50426184799991,50.438462632],[-124.58926347599994,50.42527903900013],[-124.67198645699992,50.430853583000136],[-124.68488521999984,50.42218659100014],[-124.69351152299991,50.402248440000065],[-124.73151607999984,50.37103913],[-124.74010169199997,50.360093492000104],[-124.74990800699987,50.35211823100015],[-124.80842037699985,50.32225169499999],[-124.83014889199991,50.31761302300005],[-124.85220292899992,50.32046133000009],[-124.8746638659999,50.325628973],[-124.89777584499986,50.32843659100014],[-124.94127356699991,50.32599518400009],[-124.95177161399997,50.32843659100014],[-124.96271725199983,50.340765692],[-124.95885169199991,50.349514065000065],[-124.94985917899993,50.358221747000144],[-124.94554602799991,50.37067291900017],[-124.95213782499987,50.391791083000086],[-124.9667048819999,50.41242096600011],[-124.98599199099996,50.42755768400009],[-125.00698808499989,50.432114976000044],[-124.99767005099994,50.41111888200011],[-124.9905492829999,50.38385651200012],[-124.99518795499992,50.36029694200006],[-125.03856360599988,50.34174225500005],[-125.06167558499995,50.32758209800012],[-125.08153235599994,50.32469310100011],[-125.0889786449999,50.35016510600012],[-125.08551998599991,50.36383698100015],[-125.07835852799988,50.36762116100008],[-125.06965084499988,50.36937083500008],[-125.06163489499994,50.376898505000106],[-125.06554114499994,50.41063060100011],[-125.06505286399995,50.415350653000026],[-125.06851152299994,50.42422109600007],[-125.06688391799993,50.434515692],[-125.0635473299999,50.44546133000016],[-125.06065833199995,50.46979401200003],[-125.05744381399991,50.4772809920001],[-125.05125891799995,50.48183828300012],[-125.04173743399984,50.486761786],[-124.97044837099995,50.50088125200013],[-124.95921790299984,50.51064687700007],[-124.95299231699988,50.53717682500003],[-124.93683834499993,50.54726797100001],[-124.89098059799993,50.55499909100011],[-124.88581295499984,50.559312242000104],[-124.87311764199987,50.57636139500006],[-124.86986243399991,50.58295319200015],[-124.8704320949999,50.589056708000115],[-124.8742569649999,50.607814846000096],[-124.87328040299992,50.613674221000124],[-124.86554928299992,50.629868882],[-124.86400305899988,50.67161692900011],[-124.85619055899987,50.69281647300012],[-124.82892818899988,50.719712632],[-124.8236384759999,50.73452383000007],[-124.83568274599993,50.75421784100011],[-124.89610755099994,50.77358633000013],[-124.90636145699999,50.77855052299999],[-124.91079667899993,50.78465403900015],[-124.91047115799982,50.7936058610001],[-124.90855872299996,50.797552802000084],[-124.88540605399993,50.8190778670001],[-124.86318925699986,50.83128489800007],[-124.85277258999987,50.839911200000174],[-124.82506262899989,50.869696356000176],[-124.80890865799985,50.87962474199999],[-124.78726152299993,50.884588934000035],[-124.80345618399988,50.91551341400016],[-124.81383216099988,50.927191473000086],[-124.83234615799991,50.931789455000015],[-124.84886633999987,50.93134186400011],[-124.86058508999986,50.92743561400012],[-124.86754309799996,50.91640859600007],[-124.86986243399991,50.89451732000005],[-124.87706458199993,50.88422272300012],[-124.91828365799991,50.84365469],[-124.93529212099989,50.83437734600015],[-124.97130286399994,50.82037995000009],[-124.98648027299991,50.80825429900001],[-124.96642005099996,50.803371486000124],[-124.95616614499995,50.798732815],[-124.95177161399997,50.791815497000115],[-124.95030676999993,50.76544830900012],[-124.9486384759999,50.76105377800003],[-124.92813066299992,50.75800202000012],[-124.90933183499989,50.74921295800005],[-124.90001380099993,50.7352562520001],[-124.91307532499992,50.70587799700009],[-124.92365475199988,50.66974518400015],[-124.92511959499984,50.65802643400015],[-124.91828365799991,50.64459870000017],[-124.9092911449999,50.63662344000012],[-124.90819251199986,50.62738678600006],[-124.93370520699995,50.60150788000006],[-124.93960527299988,50.59796784100017],[-124.9486384759999,50.59662506700009],[-124.95128333199997,50.598334052],[-124.9525040359999,50.60195547100015],[-124.95445716099994,50.60447825700005],[-124.95921790299984,50.603461005],[-124.96312415299994,50.599514065],[-124.96666419199993,50.59080638200011],[-125.02749589799994,50.55874258000013],[-125.04039466099995,50.53119538000011],[-125.10216223899995,50.49892812700009],[-125.12368730399989,50.47370026200003],[-125.1124161449999,50.45441315300008],[-125.12783769399992,50.43699778900013],[-125.15485592399995,50.424383856000034],[-125.17833411399994,50.419094143000066],[-125.19688880099993,50.420558986000046],[-125.20815995999993,50.426703192],[-125.22671464799993,50.452582098000036],[-125.24266516799995,50.466538804],[-125.24722245999988,50.47370026200003],[-125.24649003799995,50.48090241100005],[-125.24176998599985,50.48822663000006],[-125.23888098899992,50.49591705900018],[-125.24351966099997,50.50409577],[-125.25572669199994,50.50665924700009],[-125.26707923099988,50.49819570500016],[-125.28477942599989,50.476507880000085],[-125.29869544199987,50.46662018400015],[-125.30467688699989,50.46670156500015],[-125.31094316299995,50.470933335000076],[-125.32542883999992,50.47370026200003],[-125.34215247299993,50.48924388200014],[-125.34756425699989,50.52024974200005],[-125.35667883999986,50.54311758000015],[-125.38438880099993,50.53457265800013],[-125.38267981699994,50.526109117000104],[-125.38548743399988,50.51203034100014],[-125.3910212879999,50.497259833000086],[-125.39745032499991,50.486761786],[-125.41364498599988,50.473863022999986],[-125.43224036399988,50.46605052300002],[-125.51821855399987,50.45563385600012],[-125.5440974599999,50.45563385600012],[-125.5625707669999,50.45941803600011],[-125.57705644399995,50.47068919500013],[-125.57310950399999,50.47825755400007],[-125.56029212099993,50.48493073100003],[-125.54824785099993,50.49355703300013],[-125.54124915299984,50.50625234600009],[-125.52953040299987,50.54230377800015],[-125.5284317699999,50.55499909100011],[-125.5314835279999,50.56468333500008],[-125.54002844999992,50.580389716000056],[-125.54206295499986,50.58917877800009],[-125.53457597599989,50.61709219000015],[-125.52668209499991,50.63605377800015],[-125.51744544199995,50.65078359600015],[-125.50499426999994,50.66242096600014],[-125.4874161449999,50.67230866100006],[-125.46222896999986,50.679877020000035],[-125.45270748599984,50.685288804000045],[-125.44538326699984,50.69163646],[-125.4329727859999,50.70587799700009],[-125.42471269399992,50.71332428600009],[-125.45457923099991,50.720363674000126],[-125.47956295499984,50.70697663000014],[-125.5038142569999,50.6881371110001],[-125.5314835279999,50.67853424700003],[-125.55557206899994,50.66620514500009],[-125.5687149729999,50.63816966400016],[-125.57091223899987,50.60797760600015],[-125.5625707669999,50.58917877800009],[-125.57241777299993,50.57265859600012],[-125.57725989499991,50.552191473000065],[-125.58568274599989,50.53497955900006],[-125.62230383999987,50.52240631700006],[-125.62189693899987,50.510728257000046],[-125.61481686099992,50.49909088700015],[-125.61034094999987,50.49355703300013],[-125.61318925699989,50.479193427000055],[-125.61774654899993,50.47125885600009],[-125.63390051999993,50.45600006700012],[-125.6438695949999,50.448431708000086],[-125.65664628799992,50.44285716400016],[-125.6702367829999,50.43943919500004],[-125.70327714799993,50.437933661],[-125.7095434239999,50.43992747600005],[-125.72020423099993,50.445746161],[-125.77358964799987,50.48798248900012],[-125.79527747299996,50.49355703300013],[-125.78571529899996,50.50625234600009],[-125.75226803299991,50.50873444200011],[-125.74006100199985,50.52024974200005],[-125.7872208319999,50.53164297100003],[-125.8140763009999,50.533148505000085],[-125.83625240799986,50.52765534100014],[-125.84235592399996,50.52240631700006],[-125.85435950399989,50.50747304900001],[-125.86359615799985,50.50096263200011],[-125.95457923099988,50.47573476800015],[-126.00772050699989,50.47150299700003],[-126.05736243399991,50.478501695000105],[-126.08950761599996,50.50096263200011],[-126.11115475199986,50.491400458000115],[-126.13121497299993,50.4897321640001],[-126.24225826699991,50.501044012000094],[-126.26081295499982,50.507228908000066],[-126.28062903599994,50.51943594000015],[-126.2760310539999,50.52509186400012],[-126.25959225199989,50.529608466000084],[-126.24376380099994,50.538275458000086],[-126.22777258999986,50.54433828300007],[-126.20921790299987,50.538275458000086],[-126.17886308499988,50.52024974200005],[-126.18565833199992,50.54877350500006],[-126.18529212099989,50.56366608300003],[-126.17886308499988,50.57550690300015],[-126.17162024599988,50.57794830900009],[-126.13792883999987,50.58295319200015],[-126.11473548099993,50.59373607000005],[-126.10374915299987,50.59662506700009],[-126.09715735599988,50.5952009140001],[-126.09166419199997,50.591294664000095],[-126.0862930979999,50.58917877800009],[-126.06281490799984,50.603461005],[-125.97752844999988,50.61322663000014],[-125.95811926999997,50.61831289300006],[-125.93862870999989,50.630113023000135],[-125.95986894399996,50.64557526200014],[-125.98534094999987,50.64386627800015],[-126.0349014959999,50.630113023000135],[-126.06236731699994,50.627264716000084],[-126.13170325399989,50.603461005],[-126.16030839799988,50.59772370000003],[-126.24376380099994,50.59662506700009],[-126.2518204419999,50.60089752800009],[-126.2648005849999,50.61961497600005],[-126.27163652299991,50.623928127000156],[-126.27725175699992,50.62588125200001],[-126.26895097599994,50.6302757830001],[-126.24714107999988,50.637518622000115],[-126.2215470039999,50.64264557500003],[-126.1188044909999,50.64679596600017],[-126.04849199099995,50.66486237200009],[-126.01870683499995,50.66600169500013],[-125.9389542309999,50.6518415390001],[-125.91445878799988,50.654038804],[-125.82640540299985,50.67706940300014],[-125.75031490799986,50.685288804000045],[-125.7415665359999,50.684271552],[-125.72704016799986,50.679592190000086],[-125.7164607409999,50.67853424700003],[-125.70563717399989,50.68170807500009],[-125.69912675699992,50.68939850500011],[-125.68358313699991,50.725816147999986],[-125.67870032499992,50.733587958000086],[-125.67178300699993,50.73993561400012],[-125.65859941299988,50.745672919000086],[-125.63194739499995,50.75096263200005],[-125.62022864499995,50.75771719],[-125.60814368399987,50.780910549000126],[-125.61998450399993,50.79905833500014],[-125.63971920499985,50.81622955900015],[-125.65127519399988,50.83616771000014],[-125.64541581899994,50.854925848],[-125.6278376939999,50.862697658000016],[-125.55968176999988,50.865627346000124],[-125.55003821499992,50.873277085000055],[-125.54548092399995,50.88808828300012],[-125.53457597599989,50.911932684000114],[-125.52725175699989,50.918524481000176],[-125.51891028599992,50.92169830900015],[-125.51162675699989,50.92682526200015],[-125.5073136059999,50.939195054000024],[-125.50796464799994,50.95066966400004],[-125.51211503799988,50.96084219000009],[-125.51817786399988,50.96942780200003],[-125.52472896999986,50.97646719000006],[-125.53831946499993,50.99494049700009],[-125.5625707669999,51.055324611000046],[-125.57754472599993,51.07233307500009],[-125.63703365799988,51.10370514500011],[-125.63508053299982,51.08002350500011],[-125.63076738199993,51.06268952000012],[-125.61034094999987,51.01496002800014],[-125.58299719999988,50.96653880400008],[-125.57323157499985,50.958482164000046],[-125.55040442599993,50.946966864],[-125.54206295499986,50.939195054000024],[-125.55744381399988,50.91982656500009],[-125.5755916009999,50.90717194200003],[-125.59829667899996,50.900336005],[-125.6273494129999,50.89826080900018],[-125.63878333199997,50.895249742000075],[-125.65444902299994,50.88800690300015],[-125.66958574099996,50.87885163000006],[-125.67926998599991,50.87030670800014],[-125.68219967399992,50.86078522300015],[-125.68496660099989,50.84430573100014],[-125.68565833199993,50.82880280200005],[-125.68228105399992,50.821926174000126],[-125.65046139199988,50.80451080900015],[-125.64443925699987,50.798651434000035],[-125.6476944649999,50.782416083000086],[-125.6564835279999,50.777899481000034],[-125.66954505099996,50.77777741100006],[-125.68541419199988,50.77472565300015],[-125.70881100199988,50.75820547100009],[-125.74347896999987,50.71723053600006],[-125.76740475199989,50.70648834800015],[-125.76740475199989,50.71332428600009],[-125.87962805899993,50.70913320500013],[-125.89769446499986,50.69586823100012],[-125.9048559239999,50.68919505400005],[-125.92125403599991,50.68488190300015],[-125.93976803299994,50.68341705900009],[-125.95295162699988,50.685288804000045],[-125.96617591099991,50.696112372000144],[-125.97411048099988,50.707709052000084],[-125.98509680899993,50.715073960000076],[-126.00755774599992,50.71332428600009],[-126.02013098899991,50.7071800800001],[-126.04662024599989,50.68911367400007],[-126.0590714179999,50.685288804000045],[-126.1866348949999,50.67186107000007],[-126.21226966099994,50.67511627800011],[-126.2266739569999,50.69281647300012],[-126.21007239499994,50.70941803600008],[-126.16763261599989,50.71820709800015],[-126.14785722599987,50.73037344000012],[-126.12584387899996,50.74848053600014],[-126.05532792899989,50.77472565300015],[-126.03123938699984,50.78937409100017],[-126.0345352859999,50.79511139500015],[-126.07990475199988,50.79515208500014],[-126.10399329299992,50.789862372000144],[-126.12734941299989,50.77993398600015],[-126.15184485599993,50.773993231000034],[-126.17886308499988,50.78095123900011],[-126.19644120999992,50.79800039300006],[-126.19448808499989,50.81464264500012],[-126.18472245999993,50.832586981000176],[-126.17886308499988,50.853216864],[-126.18382727799994,50.867865302000105],[-126.19660396999987,50.8614769550001],[-126.21397864499995,50.84845612200009],[-126.23289954299989,50.84365469],[-126.23818925699996,50.84760163],[-126.23957271999984,50.85398997600011],[-126.23936926999988,50.86025625200006],[-126.24034583199995,50.86347077000012],[-126.25438391799992,50.86395905200011],[-126.25462805899986,50.86347077000012],[-126.27013098899998,50.86424388200005],[-126.31265214799991,50.85663483300003],[-126.36465410099989,50.85578034100011],[-126.38829505099991,50.85199616100009],[-126.45978756399988,50.82196686400012],[-126.48867753799988,50.81671784100014],[-126.51121985599988,50.82562897300009],[-126.52179928299982,50.83173248900006],[-126.54735266799992,50.83738841400016],[-126.55626380099994,50.84365469],[-126.55939693899992,50.853257554],[-126.55703691299986,50.86871979400011],[-126.56240800699993,50.877142645000056],[-126.54979407499985,50.88857656500003],[-126.49893144399992,50.92234935100002],[-126.48957271999987,50.92084381700014],[-126.4799698559999,50.91575755400011],[-126.46686764199984,50.911932684000114],[-126.3607071609999,50.90428294499999],[-126.31891842399997,50.91421133000007],[-126.22325598899991,50.9050153670001],[-126.20368404899995,50.91022370000012],[-126.18415279899995,50.92291901200015],[-126.17308508999992,50.93878815300009],[-126.17886308499988,50.953517971000096],[-126.19188391799989,50.949530341000106],[-126.2266739569999,50.931789455000015],[-126.24327551999988,50.92812734600007],[-126.40542558499995,50.939195054000024],[-126.45946204299986,50.951727606000084],[-126.48350989499988,50.964667059000085],[-126.50560462099988,51.01154205900015],[-126.51488196499993,51.06232330900009],[-126.51471920499985,51.07636139500006],[-126.5214737619999,51.07636139500006],[-126.54454505099996,51.03164297100001],[-126.55215410099989,51.00507233300006],[-126.54539954299987,50.983587958000115],[-126.52684485599985,50.95587799700006],[-126.53506425699995,50.94171784100003],[-126.55272376199987,50.93134186400011],[-126.56240800699993,50.914984442],[-126.5754288399999,50.90643952000009],[-126.67422441299995,50.878159898000135],[-126.69619706899998,50.87742747599999],[-126.71987870999988,50.88182200700008],[-126.74742591099991,50.89081452],[-126.7487686839999,50.897406317000055],[-126.75694739499991,50.904242255],[-126.7698868479999,50.90973541900003],[-126.8040258449999,50.913397528000175],[-126.81529700399989,50.91779205900015],[-126.83307857999989,50.93549225500006],[-126.84618079299995,50.94342682500003],[-126.85855058499989,50.943101304],[-126.86953691299993,50.93813711100013],[-126.8784073559999,50.931789455000015],[-126.88866126199993,50.920233466000084],[-126.8922013009999,50.91201406500009],[-126.89915930899988,50.906927802000084],[-127.02721106699995,50.90643952000009],[-127.05215410099989,50.914984442],[-127.06456458199992,50.92202383000007],[-127.08039303299986,50.92690664300015],[-127.11115475199985,50.931789455000015],[-127.13613847599993,50.930812893000116],[-127.15172278599994,50.932440497000144],[-127.16576087099992,50.939195054000024],[-127.17418372299994,50.92593008000007],[-127.15632076699987,50.91510651200018],[-127.1285701159999,50.907782294000164],[-127.08470618399986,50.902044989],[-127.03392493399991,50.88833242400007],[-127.00747636599992,50.884588934000035],[-126.95348059799993,50.884588934000035],[-126.93936113199989,50.88141510600017],[-126.92601477799988,50.8766136740001],[-126.92198645699992,50.872259833],[-126.93614661399994,50.87030670800014],[-126.95750891799989,50.86351146000011],[-127.00121008999989,50.83177317900005],[-127.0217992829999,50.821926174000126],[-127.04234778599994,50.82290273600002],[-127.06737219999987,50.830755927],[-127.13097083199995,50.86611562700001],[-127.21353105399993,50.877142645000056],[-127.22374426999997,50.88141510600017],[-127.24836178299986,50.89826080900018],[-127.25511633999992,50.91815827000006],[-127.26305091099988,50.91868724200005],[-127.27790279899996,50.913397528000175],[-127.28526770699993,50.911932684000114],[-127.31037350199983,50.91290924700009],[-127.32957923099987,50.91575755400011],[-127.42902584499986,50.943101304],[-127.4469294909999,50.953517971000096],[-127.4262589179999,50.96369049700003],[-127.41710364499993,50.97040436400009],[-127.4158829419999,50.97646719000006],[-127.42369544199991,50.983221747000115],[-127.43285071499989,50.98704661700013],[-127.44302324099993,50.98826732000005],[-127.45376542899994,50.98700592700014],[-127.4469294909999,50.98700592700014],[-127.47321529899995,50.98407623900012],[-127.50609290299992,50.991034247000115],[-127.53075110599991,51.00372955900014],[-127.53229732999988,51.01801178600006],[-127.51878821499989,51.04132721600017],[-127.50999915299992,51.07078685100005],[-127.49958248599985,51.095363674000154],[-127.48106848899992,51.10370514500011],[-127.48106848899992,51.109930731000084],[-127.50267493399993,51.11977773600002],[-127.52696692599991,51.11652252800015],[-127.55296790299988,51.10830312700006],[-127.63463294199988,51.09662506700006],[-127.66193600199988,51.09747955900015],[-127.68651282499987,51.109930731000084],[-127.68993079299987,51.128973700000174],[-127.77700761599993,51.167222398000135],[-127.7827856109999,51.18622467700013],[-127.79393469999992,51.19794342700011],[-127.79255123599985,51.208807684000085],[-127.7879125639999,51.22020091400015],[-127.78954016799992,51.23338450700011],[-127.7701716789999,51.24042389500009],[-127.75430253799988,51.24970123900014],[-127.73639889199984,51.25787995000014],[-127.6263321609999,51.27533600500011],[-127.6077367829999,51.285589911000145],[-127.5714412099999,51.30060455900015],[-127.4158829419999,51.289252020000085],[-127.40562903599988,51.28725820500015],[-127.38731848899991,51.277818101000136],[-127.37804114499995,51.27505117400007],[-127.22101803299991,51.289252020000085],[-127.17943274599993,51.30914948100017],[-127.14586341099991,51.31928131700014],[-127.1384985019999,51.32282135600012],[-127.12661699099995,51.33881256700012],[-127.11782792899987,51.36041901200012],[-127.11412512899994,51.38214752800008],[-127.11733964799988,51.39850495000012],[-127.13267981699995,51.38491445500016],[-127.16510982999984,51.34479401200004],[-127.17601477799992,51.33641185100008],[-127.20067298099991,51.331529039000095],[-127.25576738199996,51.308823960000055],[-127.28184973899992,51.30231354400017],[-127.51520748599994,51.31659577000006],[-127.51520748599994,51.32282135600012],[-127.49356035099991,51.331488348000036],[-127.47203528599991,51.34300364800005],[-127.46434485599988,51.35321686400009],[-127.48448645699995,51.357570705000064],[-127.51374264199985,51.35317617400009],[-127.56261145699995,51.33392975500006],[-127.59032141799995,51.32965729400006],[-127.64875240799992,51.33624909100011],[-127.6803279289999,51.33612702000015],[-127.70360266799992,51.32623932500003],[-127.72150631399987,51.32135651200014],[-127.75186113199996,51.32192617400012],[-127.77965247299991,51.330552476000136],[-127.78954016799992,51.35008372600011],[-127.77843176999991,51.3648949240001],[-127.75544186099992,51.37807851800012],[-127.72887122299996,51.387437242000075],[-127.70734615799986,51.391058661000116],[-127.68016516799993,51.392645575000145],[-127.66429602799992,51.398138739],[-127.62120520699989,51.44301992400001],[-127.60448157499987,51.45624420800014],[-127.5849503249999,51.46454498900012],[-127.55992591099995,51.46743398600016],[-127.55186926999994,51.47089264500015],[-127.55235755099993,51.47919342700014],[-127.55479895699996,51.48916250200012],[-127.55280514199993,51.497503973],[-127.54238847599993,51.50458405200005],[-127.53136145699997,51.50946686400012],[-127.52171790299992,51.516058661],[-127.51520748599994,51.52826569200008],[-127.51496334499988,51.549221096000124],[-127.51960201699991,51.569525458000115],[-127.52122962099992,51.58905670800003],[-127.5118302069999,51.607367255000085],[-127.49201412699988,51.6205915390001],[-127.46800696499994,51.6284040390001],[-127.31574459499988,51.65574778900016],[-127.04352779899997,51.6686058610001],[-126.70929928299982,51.64451732000008],[-126.67723548099985,51.645738022999986],[-126.65526282499992,51.655503648000135],[-126.65257727799985,51.65989817900011],[-126.65168209499987,51.664740302],[-126.65184485599993,51.67536041900003],[-126.64818274599988,51.679103908000066],[-126.63068600199982,51.677191473],[-126.62450110599987,51.67841217700011],[-126.61994381399991,51.68695709800015],[-126.6165258449999,51.697577216000084],[-126.61188717399996,51.707464911],[-126.60342363199993,51.71381256700012],[-126.63756262899993,51.761623440000065],[-126.63805091099992,51.77326080900018],[-126.64655514199985,51.783596096000096],[-126.65758216099992,51.793117580000064],[-126.66612708199992,51.80255768400009],[-126.66429602799984,51.79482656500009],[-126.66266842399992,51.791571356000034],[-126.65868079299995,51.78827545799999],[-126.66771399599985,51.766424872000144],[-126.66095943899992,51.74957916900014],[-126.64948482999986,51.73505280200011],[-126.64439856699994,51.72003815300008],[-126.64867102799987,51.706610419000114],[-126.65656490799985,51.701402085000105],[-126.66681881399985,51.69879791900011],[-126.67853756399984,51.69269440300003],[-126.69933020699993,51.66543203300013],[-127.09552975199985,51.70416901200015],[-127.25853430899991,51.68585846600011],[-127.2849828769999,51.69086334800015],[-127.32876542899987,51.71133047100001],[-127.35008704299993,51.71381256700012],[-127.35448157499994,51.68866608300006],[-127.3856095039999,51.673773505],[-127.42320716099992,51.67186107000005],[-127.4469294909999,51.68585846600011],[-127.44017493399988,51.68842194200003],[-127.43687903599994,51.691799221000124],[-127.43683834499987,51.693915106000034],[-127.43952389199984,51.69269440300003],[-127.43248450399996,51.697577216000084],[-127.42935136599989,51.70091380400011],[-127.42642167899987,51.70636627800015],[-127.4326879549999,51.70636627800015],[-127.4344783189999,51.74591705900009],[-127.4326879549999,51.754787502000156],[-127.42243404899989,51.75971100500011],[-127.38658606699988,51.76727936400006],[-127.37490800699989,51.76850006700009],[-127.36237545499989,51.78021881700006],[-127.33706620999995,51.857163804000045],[-127.35008704299993,51.87018463700006],[-127.36237545499989,51.85708242400007],[-127.37604732999982,51.83746979400002],[-127.38711503799998,51.81635163000003],[-127.3917130199999,51.799139716000084],[-127.39386959499991,51.78375885600015],[-127.40029863199992,51.777736721000124],[-127.44200598899997,51.77513255400005],[-127.44908606699991,51.77700429900001],[-127.45327714799994,51.774562893000066],[-127.4599503249999,51.761623440000065],[-127.47671464799991,51.71344635600012],[-127.49266516799993,51.69871653900013],[-127.52204342399993,51.70331452000006],[-127.55036373599988,51.710760809000035],[-127.58291581899995,51.71185944200008],[-127.6160375639999,51.70783112200003],[-127.64557857999986,51.700140692],[-127.64557857999986,51.69269440300003],[-127.62116451699991,51.68927643400012],[-127.57420813699987,51.67633698100011],[-127.54938717399992,51.67226797100015],[-127.49893144399988,51.676906643000066],[-127.47671464799991,51.67519765800007],[-127.46743730399989,51.66229889500006],[-127.47842363199993,51.65155670800014],[-127.54564368399988,51.63434479400003],[-127.55882727799991,51.61884186400012],[-127.57510331899996,51.58844635600015],[-127.59032141799995,51.57664622599999],[-127.59032141799995,51.5692406270001],[-127.57315019399992,51.55792877800012],[-127.56700598899992,51.54393138200005],[-127.5716039699999,51.52814362200011],[-127.62271074099995,51.47817617400007],[-127.64293372299996,51.465155341000084],[-127.66637122299993,51.45994700699999],[-127.71385657499985,51.45774974200001],[-127.72813880099993,51.45994700699999],[-127.75698808499995,51.487982489],[-127.7616267569999,51.494086005],[-127.74551347599994,51.50531647300009],[-127.68065344999994,51.50519440300012],[-127.65925045499988,51.508368231000176],[-127.65925045499988,51.51459381700015],[-127.6700333319999,51.51829661699999],[-127.68643144399991,51.529730536000145],[-127.70018469999991,51.53506094],[-127.71808834499988,51.53632233300011],[-127.79137122299991,51.526922919000086],[-127.79637610599988,51.52826569200008],[-127.80272376199987,51.537665106000084],[-127.79914303299991,51.54376862200009],[-127.79238847599989,51.54897695500007],[-127.78954016799992,51.55556875200015],[-127.79308020699992,51.567206122000144],[-127.79800370999988,51.577582098000065],[-127.80199133999986,51.58901601800004],[-127.80260169199991,51.60394928600006],[-127.82640540299991,51.59870026200018],[-127.83311926999995,51.60871002800015],[-127.83332271999991,51.626654364],[-127.83739173099985,51.64496491100006],[-127.85049394399992,51.65827057500009],[-127.8636368479999,51.66425202],[-127.87368730399996,51.673407294000086],[-127.87767493399996,51.69647858300014],[-127.87706458199997,51.714829820000105],[-127.87425696499992,51.72239817900005],[-127.86807206899996,51.73029205900012],[-127.86489824099989,51.737697658000016],[-127.8687231109999,51.74408600500011],[-127.87462317599996,51.75055573100003],[-127.87767493399996,51.75820547100007],[-127.87767493399996,51.78522370000012],[-127.87975012899994,51.792141018],[-127.88927161399994,51.805609442],[-127.89195716099994,51.81622955900003],[-127.89012610599987,51.821478583000115],[-127.87767493399996,51.84357330900009],[-127.87901770699993,51.84516022300012],[-127.88353430899987,51.85639069200015],[-127.88451087099986,51.86058177300008],[-127.8825577459999,51.86554596600003],[-127.87816321499992,51.86810944200011],[-127.87149003799996,51.87018463700006],[-127.86693274599992,51.88857656500009],[-127.86017818899991,51.90648021000005],[-127.84959876199993,51.920111395],[-127.81676184799994,51.92983633000013],[-127.78221594999994,51.949042059000085],[-127.76537024599992,51.953436591000084],[-127.71178137899992,51.948879299000126],[-127.68492591099994,51.95001862200017],[-127.66608639199991,51.95962148600013],[-127.67349199099988,51.96702708500014],[-127.65916907499991,51.99201080900014],[-127.64785722599993,52.05703359600001],[-127.63809160099989,52.08372630400014],[-127.61489824099993,52.10748932500003],[-127.58263098899992,52.127834377000035],[-127.54735266799987,52.143255927000055],[-127.51520748599994,52.15204498900012],[-127.4932755199999,52.15387604400008],[-127.47704016799986,52.15058014500006],[-127.46800696499994,52.141180731000034],[-127.46743730399989,52.124701239000146],[-127.47545325399993,52.106634833000115],[-127.48912512899994,52.09813060099999],[-127.50723222599986,52.09613678600006],[-127.56574459499991,52.10004303600006],[-127.57652747299993,52.09369538000011],[-127.62441972599994,52.02850983300003],[-127.59032141799995,52.05011627800012],[-127.56065833199989,52.077826239],[-127.54954993399988,52.08226146000008],[-127.46532141799987,52.083156643000066],[-127.43049068899994,52.08881256700014],[-127.40534420499985,52.10423411699999],[-127.43952389199984,52.15131256700009],[-127.44322669199988,52.15888092700014],[-127.44945227799994,52.163153387000065],[-127.45368404899995,52.172552802000084],[-127.45173092399992,52.18187083500011],[-127.43980872299996,52.18618398600002],[-127.41344153599995,52.1910667990001],[-127.39834550699996,52.19643789300015],[-127.3917130199999,52.20327383000016],[-127.38145911399997,52.21967194200006],[-127.35728919199997,52.229193427000055],[-127.2835994129999,52.2376976580001],[-127.26374264199993,52.24603913000006],[-127.24624589799987,52.257961330000015],[-127.1864314439999,52.309312242000125],[-127.17259680899991,52.316473700000145],[-127.14826412699983,52.31903717700008],[-127.09508216099995,52.31146881700012],[-127.04308020699996,52.309759833000115],[-127.01976477799987,52.30621979400006],[-126.9976293609999,52.29751211100016],[-126.95742753799989,52.26862213700004],[-126.94302324099992,52.253119208000115],[-126.93724524599989,52.23468659100008],[-126.9466446609999,52.21283600500006],[-126.90770423099991,52.178452867000104],[-126.77879798099985,52.097642320000105],[-126.75426184799993,52.0768903670001],[-126.74071204299987,52.069769598000065],[-126.71068274599992,52.04682038000008],[-126.69961503799988,52.03534577000012],[-126.68101966099988,52.00014883000007],[-126.67227128799992,51.987494208],[-126.67202714799994,52.01170482000002],[-126.6697891919999,52.030951239000146],[-126.67218990799992,52.04734935100005],[-126.68594316299993,52.06268952],[-126.69635982999982,52.06757233300006],[-126.70750891799993,52.071437893000066],[-126.71646074099988,52.07697174700009],[-126.7232966789999,52.0951195330001],[-126.74132239499991,52.11815013200005],[-126.75084387899992,52.127834377000035],[-126.79255123599987,52.15322500200013],[-126.88512122299994,52.19452545799999],[-126.9125056629999,52.22711823100006],[-126.90322831899995,52.24518463700014],[-126.90257727799992,52.257879950000024],[-126.90855872299991,52.268866278000175],[-126.93004309799994,52.293402411],[-126.93854732999986,52.305853583000115],[-126.93903561099985,52.32005442900014],[-126.92552649599988,52.336981512000115],[-126.91763261599992,52.340155341000084],[-126.88463294199995,52.344427802],[-126.88027910099996,52.347723700000024],[-126.87808183499996,52.35635000200013],[-126.87466386599996,52.35809967700013],[-126.85586503799992,52.35716380400005],[-126.81411699099996,52.367987372000144],[-126.77476966099987,52.37116120000012],[-126.73375403599987,52.37116120000012],[-126.7530411449999,52.39337799700017],[-126.7850642569999,52.3974470070001],[-126.9129532539999,52.371975002000035],[-126.94102942599989,52.362738348000065],[-126.96715247299996,52.35065338700015],[-127.00230872299993,52.33930084800009],[-127.04161536399991,52.33783600500011],[-127.11733964799988,52.35065338700015],[-127.12584387899992,52.351141669000135],[-127.14403235599993,52.34931061400006],[-127.15217037699985,52.35065338700015],[-127.15900631399987,52.35553620000003],[-127.16169186099985,52.361232815],[-127.16295325399993,52.366685289000046],[-127.16576087099992,52.37116120000012],[-127.18968665299987,52.38788483300014],[-127.19294186099991,52.39874909100003],[-127.17943274599993,52.41209544500013],[-127.19985917899989,52.43939850500011],[-127.21043860599985,52.44672272300012],[-127.21910559799994,52.45026276200009],[-127.2249649729999,52.45612213700006],[-127.2327367829999,52.507879950000174],[-127.22765051999997,52.522853908000016],[-127.1908259759999,52.55475495000003],[-127.17121334499991,52.568345444999984],[-127.14964758999992,52.57941315300012],[-127.10903886599992,52.58930084800012],[-127.0755102199999,52.61513906500015],[-127.0558975899999,52.62498607000008],[-127.00304114499995,52.63361237200017],[-126.98232988199993,52.64472077],[-126.97398841099995,52.669378973],[-126.96597245999992,52.685614325000024],[-126.93179277299994,52.71283600500014],[-126.92552649599988,52.73427969000006],[-126.93187415299991,52.75287506700006],[-126.95518958199993,52.788275458000086],[-126.96955318899991,52.82941315300015],[-126.99168860599988,52.843817450000024],[-127.04230709499988,52.86456940300003],[-127.05101477799985,52.871649481000176],[-127.05760657499991,52.87832265800013],[-127.0650528639999,52.883246161],[-127.07640540299988,52.88507721600017],[-127.06090247299997,52.859808661000116],[-127.01720130099997,52.813666083],[-127.00129146999987,52.78266022300009],[-127.0002335279999,52.775458075000145],[-127.00129146999987,52.75161367400007],[-126.99795488199993,52.747463283000044],[-126.98350989499995,52.73273346600003],[-126.98013261599995,52.72431061400009],[-126.98688717399989,52.71088288],[-127.05382239499988,52.65302155200008],[-127.15217037699985,52.61139557500011],[-127.21353105399993,52.573797919000114],[-127.22337805899987,52.56631094000015],[-127.24323482999988,52.56134674700008],[-127.2586563789999,52.55329010600015],[-127.25511633999992,52.53620026200012],[-127.26927649599992,52.528753973000114],[-127.27757727799992,52.52220286700005],[-127.28184973899992,52.51512278900002],[-127.2797745429999,52.50364817900005],[-127.27281653599994,52.495672919000086],[-127.26545162699992,52.48969147300009],[-127.26195227799994,52.48444245000009],[-127.26886959499993,52.468980210000076],[-127.28551184799997,52.459051825000174],[-127.45246334499986,52.411769924],[-127.47362219999984,52.38857656500009],[-127.49510657499988,52.358832098000065],[-127.54222571499989,52.341782945000105],[-127.58934485599985,52.33087799700003],[-127.61082923099988,52.31964752800003],[-127.61656653599995,52.29852936400012],[-127.63141842399993,52.296047268000095],[-127.65160071499987,52.30133698100015],[-127.67349199099988,52.30345286699999],[-127.6920059889999,52.29580312700015],[-127.71007239499993,52.28384023600002],[-127.73033606699993,52.27627187700006],[-127.75544186099992,52.281805731000084],[-127.75047766799987,52.29197825700014],[-127.74767005099993,52.31281159100011],[-127.74453691299993,52.31964752800003],[-127.73574785099989,52.32892487200009],[-127.71446692599991,52.35809967700013],[-127.73664303299988,52.3543968770001],[-127.75584876199991,52.33930084800009],[-127.7827856109999,52.30345286699999],[-127.79133053299992,52.286932684000085],[-127.79491126199989,52.27586497600008],[-127.79637610599988,52.26471588700004],[-127.80052649599989,52.256293036],[-127.81021074099995,52.25039297100015],[-127.82135982999988,52.245591539000074],[-127.8299454419999,52.240790106000176],[-127.84732011599996,52.2247582050001],[-127.86074785099996,52.216009833000115],[-127.87242591099994,52.21954987200009],[-127.88451087099986,52.240790106000176],[-127.8859757149999,52.25250885600015],[-127.8860570949999,52.26601797100012],[-127.88980058499993,52.277085679],[-127.91441809799993,52.285142320000105],[-127.92332923099988,52.29368724200005],[-127.92943274599989,52.30499909100003],[-127.93293209499986,52.316473700000145],[-127.92332923099988,52.32355377800003],[-127.91885331899991,52.331000067],[-127.9155167309999,52.33901601800015],[-127.9093318349999,52.347560940000065],[-127.89712480399993,52.35443756700009],[-127.87071692599993,52.35480377800009],[-127.85781816299992,52.35809967700013],[-127.84748287699983,52.37132396000008],[-127.85659745999992,52.385077216000084],[-127.89195716099994,52.41209544500013],[-127.91486568899985,52.44110748900011],[-127.91869055899993,52.45026276200009],[-127.91478430899986,52.46442291900003],[-127.9055069649999,52.47264232000013],[-127.8942764959999,52.47915273600001],[-127.88451087099986,52.487860419000114],[-127.87852942599994,52.49506256700012],[-127.8726293609999,52.50413646000014],[-127.87360592399997,52.51190827000012],[-127.8882543609999,52.51512278900002],[-127.89663652299997,52.51215241100009],[-127.90916907499987,52.49591705900003],[-127.91869055899993,52.487860419000114],[-127.91466223899987,52.479722397999986],[-127.9171036449999,52.47089264500012],[-127.92218990799985,52.46035390800007],[-127.92613684799994,52.446844794000086],[-127.92520097599994,52.432847398000135],[-127.91860917899996,52.426947333],[-127.9090063139999,52.42072174700006],[-127.89879309799996,52.40591054900007],[-127.90257727799988,52.385321356000034],[-127.92243404899996,52.36225006700006],[-127.9676814439999,52.322699286000116],[-128.00059973899988,52.337103583],[-128.01593990799984,52.34674713700015],[-128.02745520699997,52.375962632],[-128.0394180979999,52.38515859600006],[-128.05321204299992,52.39350006700015],[-128.06387285099993,52.40591054900007],[-128.0564672519999,52.41209544500013],[-128.06655839799993,52.449652411000145],[-128.05308997299994,52.48517487200003],[-128.02330481699994,52.511542059000114],[-127.9844864569999,52.52195872600011],[-127.9715876939999,52.51874420800006],[-127.96060136599995,52.51166413],[-127.95225989499997,52.50458405200014],[-127.94725501199994,52.50153229400006],[-127.93423417899994,52.505926825000024],[-127.93399003799989,52.51455312700013],[-127.93846594999987,52.52358633000013],[-127.93980872299996,52.529445705000064],[-127.93024654899997,52.53514232000008],[-127.9081111319999,52.538560289000074],[-127.89879309799996,52.542425848000065],[-127.89142818899985,52.550930080000015],[-127.88581295499986,52.561835028000175],[-127.87767493399996,52.58405182500006],[-127.89557857999989,52.57819245000009],[-127.93171139199983,52.560492255],[-128.02818762899992,52.54755280199999],[-128.04649817599997,52.539374091000084],[-128.06236731699985,52.52431875200006],[-128.07119706899994,52.51780833500008],[-128.08031165299994,52.51512278900002],[-128.09235592399995,52.51325104400002],[-128.09752356699994,52.50836823100014],[-128.10008704299986,52.50177643400018],[-128.1042374339999,52.494614976000136],[-128.1526586579999,52.432562567],[-128.15660559799989,52.42499420800006],[-128.16002356699988,52.413519598],[-128.16567949099988,52.40591054900007],[-128.1728409499999,52.400620835],[-128.18968665299994,52.393255927],[-128.19709225199992,52.38857656500009],[-128.2346085279999,52.32640208500008],[-128.28302975199983,52.283921617000104],[-128.2967016269999,52.27558014500011],[-128.31094316299996,52.27570221600011],[-128.32144120999993,52.280585028000175],[-128.3306778639999,52.28644440300012],[-128.34105383999992,52.289211330000064],[-128.36782792899993,52.28986237200003],[-128.38027910099993,52.29181549700017],[-128.39224199099993,52.296047268000095],[-128.37954667899987,52.309393622000115],[-128.3635147779999,52.31818268400015],[-128.33018958199992,52.33022695500007],[-128.33918209499984,52.348822333000086],[-128.33836829299992,52.368597723],[-128.32848059799989,52.3863792990001],[-128.3103735019999,52.39907461100013],[-128.2986954419999,52.40241120000017],[-128.2905167309999,52.40204498900005],[-128.2826228509999,52.40021393400017],[-128.27212480399996,52.39907461100013],[-128.26048743399994,52.40241120000017],[-128.25715084499993,52.410549221000096],[-128.25609290299985,52.420599677000084],[-128.2516169909999,52.42942942900011],[-128.23810787699983,52.443182684000035],[-128.22622636599988,52.46051666900003],[-128.22199459499984,52.47943756700015],[-128.23395748599987,52.505357164000046],[-128.2348526679999,52.525824286000116],[-128.2346085279999,52.529445705000064],[-128.2429906889999,52.55878327000009],[-128.2420548169999,52.57037995000012],[-128.2330623039999,52.58860911699999],[-128.19359290299988,52.63930898600016],[-128.19188391799992,52.64704010600015],[-128.1907445949999,52.65717194200012],[-128.18838456899994,52.667669989],[-128.18309485599985,52.67649974200005],[-128.15664628799988,52.69562409100002],[-128.1526586579999,52.70380280200011],[-128.15147864499994,52.71478913],[-128.14842688699989,52.72060781500012],[-128.14386959499984,52.725572007],[-128.13247636599996,52.74347565300015],[-128.12824459499984,52.7475446640001],[-128.12559973899997,52.75283437700007],[-128.12474524599983,52.76528554900001],[-128.12694251199986,52.78510163000011],[-128.13646399599992,52.823228257],[-128.13833574099993,52.84414297100015],[-128.13223222599993,52.873114325000145],[-128.10952714799987,52.892075914000074],[-128.07827714799993,52.902411200000145],[-128.03766842399992,52.90704987200009],[-128.03058834499984,52.91103750200007],[-128.02879798099985,52.916652736000074],[-128.03571529899995,52.922919012000115],[-128.04173743399988,52.92357005400008],[-128.1051326159999,52.91205475500014],[-128.12149003799993,52.914007880000085],[-128.13219153599994,52.926662502000156],[-128.13833574099993,52.926662502000156],[-128.14159094999985,52.90741608300003],[-128.15347245999993,52.88434479400014],[-128.16808020699995,52.86351146000008],[-128.17935136599993,52.85089752800009],[-128.2141007149999,52.83047109600001],[-128.22370357999986,52.821763414000124],[-128.2299698559999,52.81427643400015],[-128.2369278639999,52.80817291900017],[-128.2481990229999,52.80316803600011],[-128.27550208199997,52.79975006700012],[-128.30549068899984,52.80280182500012],[-128.3714086579999,52.82021719000009],[-128.43301347599993,52.82367584800009],[-128.44298255099991,52.82770416900014],[-128.45042883999992,52.85175202000009],[-128.45889238199993,52.85773346600011],[-128.46914628799996,52.86212799700009],[-128.47789466099994,52.86831289300015],[-128.49746660099993,52.89472077000015],[-128.49868730399993,52.89935944200006],[-128.49254309799994,52.908636786000116],[-128.49669348899988,52.92942942900011],[-128.50837154899997,52.96393463700004],[-128.51040605399993,52.985174872000115],[-128.51984615799992,53.025376695000105],[-128.52196204299992,53.04645416900003],[-128.5241593089999,53.05170319200012],[-128.53404700399994,53.06915924700017],[-128.53624426999994,53.080267645],[-128.53184973899994,53.08950429900007],[-128.52114824099993,53.09300364800005],[-128.5078018869999,53.0944684920001],[-128.49526933499993,53.09735748900014],[-128.51187089799987,53.107367255000135],[-128.53229732999984,53.10687897300015],[-128.54946855399987,53.10944245000014],[-128.55675208199995,53.128729559000085],[-128.5467423169999,53.135972398000106],[-128.4983617829999,53.141099351000136],[-128.48102779899992,53.14573802300005],[-128.49771074099993,53.14996979400017],[-128.55988521999987,53.14573802300005],[-128.57591712099995,53.150336005],[-128.58975175699993,53.16144440300012],[-128.64806067599994,53.22361888200014],[-128.65294348899994,53.23175690300015],[-128.6556290359999,53.239691473],[-128.6617325509999,53.24217357000013],[-128.66844641799992,53.24030182500017],[-128.6728409499999,53.235174872000144],[-128.6724747389999,53.227240302],[-128.6685684889999,53.21723053600003],[-128.6591690749999,53.20099518400015],[-128.6802465489999,53.192816473000065],[-128.7005102199999,53.19830963700018],[-128.79971269399994,53.25649648600002],[-128.81371008999992,53.26178620000009],[-128.83250891799986,53.26675039300015],[-128.8491104809999,53.278550523000106],[-128.87547766799992,53.306219794000114],[-128.8842667309999,53.32632070500016],[-128.87608801999988,53.34495677300005],[-128.85985266799995,53.360581773000135],[-128.84471594999994,53.371649481000176],[-128.87633216099994,53.37213776200015],[-128.88760331899994,53.377101955000015],[-128.8826391269999,53.389064846000124],[-128.8738500639999,53.40058014500009],[-128.8755590489999,53.4069684920001],[-128.88170325399997,53.41388580900009],[-128.88634192599991,53.426947333000086],[-128.88060462099992,53.44769928600009],[-128.84422766799986,53.470892645],[-128.8310440749999,53.488348700000145],[-128.86245683499993,53.48916250200007],[-128.87710527299993,53.486314195000126],[-128.8893936839999,53.47809479400006],[-128.89981035099987,53.46588776200015],[-128.90794837099992,53.45868561400011],[-128.91763261599993,53.45868561400011],[-128.93285071499994,53.467922268000095],[-128.9473363919999,53.485825914000046],[-128.96263587099995,53.53294505400005],[-128.9744766919999,53.55662669500008],[-128.94570878799996,53.55451080900015],[-128.8924047519999,53.5366071640001],[-128.86461341099994,53.53620026200009],[-128.8469132149999,53.546210028000175],[-128.83071855399987,53.561672268],[-128.81273352799994,53.572943427],[-128.78945878799993,53.5702985700001],[-128.77554277299996,53.555609442],[-128.7586156889999,53.51056549700002],[-128.74852454299992,53.49518463700018],[-128.7403865229999,53.49144114800005],[-128.70759029899997,53.481512762000065],[-128.6970922519999,53.474798895],[-128.6728409499999,53.45359935100011],[-128.66661536399994,53.461086330000064],[-128.68309485599994,53.47394440300008],[-128.69163977799988,53.482326565000065],[-128.69391842399995,53.488348700000145],[-128.6834203769999,53.49306875200007],[-128.66763261599993,53.48932526200003],[-128.63927161399988,53.474758205000015],[-128.56297766799995,53.41950104400008],[-128.52025305899988,53.40155670800006],[-128.50837154899997,53.39276764500009],[-128.5056860019999,53.39215729400003],[-128.4975479809999,53.38715241100008],[-128.49250240799986,53.381293036000145],[-128.49868730399993,53.378485419000086],[-128.50145423099988,53.37604401200015],[-128.50283769399996,53.37018463700012],[-128.5030411449999,53.36334870000009],[-128.50210527299993,53.35805898600002],[-128.49388587099992,53.34406159100014],[-128.48766028599997,53.34585195500013],[-128.4834692049998,53.35712311400012],[-128.47988847599987,53.38666413],[-128.48208574099993,53.39801666900017],[-128.49058997299989,53.404933986000074],[-128.50837154899997,53.40643952000012],[-128.50837154899997,53.412665106000176],[-128.49640865799986,53.41620514500006],[-128.4771215489999,53.42877838700015],[-128.46735592399997,53.433742580000015],[-128.3795059889999,53.44749583500011],[-128.36318925699987,53.45888906500009],[-128.35191809799989,53.481512762000065],[-128.3087052069999,53.46063873900008],[-128.25352942599994,53.45282623900009],[-128.14891516799986,53.45359935100011],[-128.12702389199984,53.450873114000146],[-128.1058650379999,53.443060614000146],[-128.08999589799993,53.431219794000086],[-128.08161373599984,53.41120026200012],[-128.07209225199986,53.40322500200007],[-128.0701391269999,53.39899323100006],[-128.07217363199993,53.39248281500015],[-128.08071855399993,53.383856512000065],[-128.08372962099995,53.378485419000086],[-128.08751380099997,53.36908600500006],[-128.1042374339999,53.33759186400006],[-128.07070878799993,53.36456940300011],[-128.0510147779999,53.37384674700014],[-128.03229732999986,53.36823151200015],[-128.0166723299999,53.35879140800013],[-127.97695878799996,53.34235260600014],[-127.96084550699989,53.33006419500002],[-127.95636959499991,53.31842682500009],[-127.9534399079999,53.265204169000114],[-127.94261633999992,53.25372955900014],[-127.87149003799996,53.228338934000035],[-127.87710527299988,53.25014883000009],[-127.89574133999987,53.26146067900008],[-127.91759192599989,53.27142975500005],[-127.93293209499986,53.289129950000174],[-127.93407141799989,53.30267975500014],[-127.92808997299997,53.32453034100017],[-127.93293209499986,53.33759186400006],[-127.94318600199989,53.34430573100009],[-127.97887122299993,53.35602448100009],[-127.99128170499986,53.35805898600002],[-128.00182044199988,53.36225006700015],[-128.03018144399994,53.382269598000036],[-128.0360001289999,53.389064846000124],[-128.03970292899993,53.39166901200004],[-128.06017005099991,53.41950104400008],[-128.0672094389999,53.42487213700015],[-128.08511308499993,53.44822825700005],[-128.09434973899988,53.45359935100011],[-128.10362708199995,53.45685455900015],[-128.11237545499992,53.46515534100003],[-128.1163223949999,53.47630442900005],[-128.11107337099992,53.488348700000145],[-128.13272050699993,53.48407623900005],[-128.20051021999993,53.488348700000145],[-128.3001195949999,53.481512762000065],[-128.34825598899994,53.49852122600011],[-128.37413489499994,53.503566799000126],[-128.3854060539999,53.49176666900017],[-128.39024817599991,53.47459544500005],[-128.40294348899988,53.46165599200004],[-128.4205216139999,53.452704169000114],[-128.44005286399988,53.44741445500013],[-128.45262610599985,53.44619375200004],[-128.4918513659999,53.44741445500013],[-128.5026749339999,53.444566148000014],[-128.5091853509999,53.43878815300003],[-128.51642818899992,53.43390534100017],[-128.52940833199992,53.433742580000015],[-128.53917395699995,53.439357815],[-128.5528051419999,53.45722077000006],[-128.55988521999987,53.461086330000064],[-128.5718481109999,53.46234772300009],[-128.58438066299988,53.46653880400011],[-128.5943090489999,53.47394440300008],[-128.59829667899987,53.48493073100015],[-128.61217200399994,53.50458405200011],[-128.6426895819999,53.51333242400009],[-128.6732071609999,53.516506252000156],[-128.68708248599992,53.519435940000065],[-128.69082597599996,53.533921617000104],[-128.7005509109999,53.54710521000008],[-128.72809811099984,53.5702985700001],[-128.74913489499994,53.56244538000011],[-128.7654516269999,53.575628973000065],[-128.77928626199986,53.594712632000046],[-128.79320227799985,53.604437567],[-128.79967200399994,53.60761139500006],[-128.8077286449999,53.615383205000064],[-128.8145238919999,53.62547435100013],[-128.81745357999986,53.635484117000104],[-128.81602942599997,53.65033600500008],[-128.8121231759999,53.65778229400014],[-128.7969457669999,53.67275625200009],[-128.77379309799994,53.7047386740001],[-128.77037512899994,53.721421617000125],[-128.79190019399996,53.76019928600006],[-128.7888891269999,53.780910549000154],[-128.77513587099995,53.79828522300012],[-128.7553604809999,53.81049225500011],[-128.73180091099997,53.81509023600013],[-128.7097875639999,53.81557851800012],[-128.69347083199995,53.82123444200012],[-128.68708248599992,53.841253973],[-128.67784583199995,53.85932038000011],[-128.65632076699984,53.86225006700012],[-128.5589086579999,53.84170156500009],[-128.47948157499988,53.83685944200003],[-128.47374426999986,53.84149811400014],[-128.48473059799994,53.85455963700012],[-128.50112870999996,53.86269765800013],[-128.51773027299993,53.86298248900006],[-128.54991614499997,53.857652085],[-128.57249915299994,53.860907294000135],[-128.6168106759999,53.87596263200005],[-128.64488684799989,53.88206614800005],[-128.6542862619999,53.887396552000105],[-128.6628311839999,53.89105866100006],[-128.67516028599988,53.887274481000055],[-128.68260657499985,53.889308986000074],[-128.68968665299988,53.89370351800015],[-128.69391842399995,53.89931875200015],[-128.69383704299986,53.90643952],[-128.6890356109999,53.90973541900014],[-128.68309485599994,53.911281643000095],[-128.67959550699996,53.912909247000115],[-128.67080644399988,53.92991771000008],[-128.63556881399984,53.97125885600012],[-128.63198808499988,53.97817617400001],[-128.6310115229999,53.987250067],[-128.6318253249999,54.0053571640001],[-128.62767493399988,54.01300690300014],[-128.6179093089999,54.0201683610001],[-128.59829667899987,54.03021881700006],[-128.6219376289999,54.03213125200004],[-128.65269934799997,54.01984284100017],[-128.68175208199995,54.000677802],[-128.70010331899988,53.98183828300016],[-128.71593176999994,53.9565290390001],[-128.73485266799986,53.934027411000116],[-128.7381892569999,53.932603257000046],[-128.7480362619999,53.92601146000008],[-128.74852454299992,53.920355536],[-128.7645157539999,53.913519598000065],[-128.7722875639999,53.91400788000006],[-128.7827042309999,53.920355536],[-128.7892146479999,53.892564195000105],[-128.8133438789999,53.877386786000116],[-128.8393448559999,53.86562734600015],[-128.86164303299992,53.83022695500013],[-128.93285071499994,53.77635325700011],[-128.92833411399988,53.795884507],[-128.9080297519999,53.82729726800012],[-128.90615800699993,53.844671942],[-128.9148656889999,53.857611395],[-128.9256892569999,53.84662506700014],[-128.94713294199994,53.81049225500011],[-128.94766191299993,53.83926015800016],[-128.94579016799995,53.8529320330001],[-128.94029700399994,53.865139065000065],[-128.9658910799999,53.89052969000009],[-128.98350989499994,53.89834219000009],[-129.00918535099987,53.89931875200015],[-129.00918535099987,53.89248281500012],[-128.97777258999994,53.86688873900006],[-128.96540279899992,53.82054271],[-128.9732152989999,53.77757396000013],[-129.0017797519999,53.762111721],[-129.0195206369999,53.77435944200009],[-129.0480037099999,53.81232330900009],[-129.06383216099994,53.81049225500011],[-129.0644425119999,53.791205145000085],[-129.0332738919999,53.74949778900013],[-129.04645748599987,53.74164459800014],[-129.06602942599994,53.73883698100009],[-129.08950761599988,53.73163483300006],[-129.11213131399987,53.72186920800011],[-129.12901770699995,53.71116771],[-129.13467363199993,53.70205312700001],[-129.1397192049999,53.689154364],[-129.14614824099988,53.67767975500005],[-129.15632076699993,53.67275625200009],[-129.16661536399994,53.67121002800014],[-129.17837480399993,53.6674665390001],[-129.18944251199986,53.66217682500003],[-129.2283422519999,53.63271719000015],[-129.23827063699986,53.61880117400007],[-129.2420141269999,53.5944684920001],[-129.2393692699999,53.551459052000055],[-129.24474036399997,53.530340887000065],[-129.26244055899988,53.52252838700015],[-129.26244055899988,53.516302802],[-129.24233964799993,53.51186758000004],[-129.23570716099994,53.49201080900012],[-129.2372940749999,53.46723053600006],[-129.2420141269999,53.44741445500013],[-129.24990800699987,53.431219794000086],[-129.26333574099996,53.41063060100005],[-129.27806555899986,53.39288971600014],[-129.28978430899994,53.3854027360001],[-129.3349503249999,53.396918036000116],[-129.59312903599994,53.57221100500006],[-129.6153458319999,53.57713450700011],[-129.66991126199986,53.618353583000086],[-129.68016516799992,53.628648179],[-129.68785559799994,53.64008209800015],[-129.72667395699995,53.67169830900003],[-129.74290930899988,53.68016185100008],[-129.74290930899988,53.68699778900002],[-129.7315567699999,53.68577708500008],[-129.72118079299992,53.68235911700007],[-129.70189368399988,53.67275625200009],[-129.71572831899996,53.69546133000013],[-129.73302161399994,53.70547109600004],[-129.75332597599987,53.71116771],[-129.77643795499992,53.721136786],[-129.7844132149999,53.728908596000096],[-129.80308997299994,53.755275783000094],[-129.81183834499993,53.757025458],[-129.83446204299992,53.75409577000006],[-129.8452856109999,53.755275783000094],[-129.85236568899984,53.759914455000015],[-129.87938391799992,53.783148505000135],[-129.91136633999992,53.79767487200017],[-129.92039954299992,53.803656317],[-129.92756100199986,53.81220123900012],[-129.93919837099995,53.83030833500011],[-129.94831295499984,53.837836005],[-129.95872962099992,53.84194570500013],[-129.9961645169999,53.85150788000011],[-129.97423255099994,53.8658714860001],[-129.96515865799984,53.87592194200006],[-129.96133378799993,53.88898346600014],[-129.96906490799984,53.89126211100002],[-130.00633704299992,53.874579169000086],[-130.01968339799993,53.87567780200011],[-130.0293676419999,53.88401927300002],[-130.05337480399993,53.89817942900011],[-130.06379146999993,53.90615469000006],[-130.09337317599997,53.94009023600002],[-130.10472571499994,53.94708893400009],[-130.0866593089999,53.97060781500006],[-130.08389238199996,54.004706122000165],[-130.09166419199997,54.08112213700018],[-130.08527584499984,54.100531317],[-130.05663001199989,54.139553127000156],[-130.05011959499987,54.15619538000011],[-130.0378311839999,54.15424225500006],[-129.97988847599993,54.161118882000075],[-129.96133378799993,54.166815497000144],[-129.95042883999986,54.159328518000095],[-129.94676673099988,54.14996979400014],[-129.94517981699997,54.14044830900015],[-129.94090735599985,54.13263580900015],[-129.93175208199997,54.12693919499999],[-129.90990149599992,54.11798737200014],[-129.89989173099983,54.112127997000115],[-129.8732804029999,54.085598049000154],[-129.8521215489999,54.05695221600017],[-129.84845943899987,54.048773505000085],[-129.84666907499988,54.04205963700012],[-129.84414628799993,54.036078192],[-129.83844967399995,54.03021881700006],[-129.82909094999994,54.02553945500013],[-129.82070878799985,54.02464427300005],[-129.8123673169999,54.02472565300003],[-129.80308997299994,54.02277252800009],[-129.79792232999986,54.018784898000106],[-129.7890518869999,54.00653717700014],[-129.78380286399994,54.00234609600001],[-129.77757727799985,54.00169505400008],[-129.76203365799986,54.00385163000006],[-129.75649980399993,54.00234609600001],[-129.75300045499984,53.996975002000156],[-129.75088456899994,53.98566315300017],[-129.74909420499984,53.98183828300016],[-129.73509680899988,53.96454498900006],[-129.7273656889999,53.95783112200011],[-129.71495520699992,53.95384349200004],[-129.72520911399997,53.97186920800006],[-129.73363196499992,53.99217357000008],[-129.7454320949999,54.008978583000086],[-129.78233801999994,54.02179596600011],[-129.82469641799995,54.051336981000176],[-129.83844967399995,54.06378815300008],[-129.84675045499986,54.074448960000105],[-129.8587133449999,54.09520091400013],[-129.86579342399995,54.104681708000115],[-129.8948868479999,54.124497789000046],[-129.89989173099983,54.12897370000012],[-129.90729732999984,54.14468008000007],[-129.92186438699986,54.15595123900006],[-129.93228105399996,54.16828034100011],[-129.9272354809999,54.18732330900009],[-129.91100012899997,54.20087311400006],[-129.88658606699994,54.21190013200011],[-129.86017818899984,54.219305731000084],[-129.83812415299994,54.22207265800015],[-129.80699622299994,54.22117747600008],[-129.79210364499988,54.218003648000106],[-129.7656143869999,54.204169012000094],[-129.74962317599994,54.20404694200011],[-129.72109941299993,54.20774974199999],[-129.6369522779999,54.181138414000046],[-129.61192786399988,54.183905341000084],[-129.58275305899994,54.1969261740001],[-129.56309973899988,54.212713934000035],[-129.55337480399993,54.216376044000086],[-129.5293676419999,54.22207265800015],[-129.50401770699995,54.23224518400012],[-129.49063066299996,54.23541901200018],[-129.4753311839999,54.235052802000055],[-129.4918106759999,54.251450914000074],[-129.51789303299984,54.247219143000144],[-129.56725012899992,54.228216864000146],[-129.57530676999997,54.22386302300005],[-129.58926347599993,54.204657294000086],[-129.59512285099987,54.20034414300009],[-129.62555904899995,54.20180898600015],[-129.76781165299988,54.23651764500012],[-129.82896887899994,54.24213288000011],[-129.8863012359999,54.235052802000055],[-129.95421301999997,54.210842190000065],[-129.9787491529999,54.20774974199999],[-129.9887589179999,54.20343659100017],[-130.00877844999985,54.184719143],[-130.01968339799993,54.18048737200009],[-130.06444251199983,54.18211497600011],[-130.07803300699993,54.18048737200009],[-130.0885310539999,54.175360419000164],[-130.10167395699995,54.162258205],[-130.11217200399994,54.159328518000095],[-130.12490800699987,54.16087474200013],[-130.14077714799993,54.16583893400018],[-130.15428626199989,54.17365143400015],[-130.15998287699986,54.183905341000084],[-130.17634029899997,54.195217190000086],[-130.27725175699993,54.20774974199999],[-130.28148352799994,54.21442291900003],[-130.28404700399994,54.231594143000066],[-130.28722083199992,54.235052802000055],[-130.2928767569999,54.237453518],[-130.28270423099985,54.24249909100005],[-130.23102779899992,54.26007721600016],[-130.19473222599993,54.26300690300009],[-130.20669511599993,54.270738023000106],[-130.2298070949999,54.279689846000124],[-130.23940995999985,54.28685130400008],[-130.24083411399994,54.29608795800014],[-130.2406306629999,54.311346747000115],[-130.2431534499999,54.325628973],[-130.25279700399997,54.33185455900015],[-130.25816809799994,54.34100983300014],[-130.24644934799994,54.38719310100005],[-130.24937903599997,54.40639883],[-130.25780188699989,54.39126211100001],[-130.26390540299988,54.373236395000085],[-130.2722061839999,54.358099677],[-130.28722083199992,54.35175202000014],[-130.3089086579999,54.348211981000176],[-130.34886633999994,54.3337263040001],[-130.3728735019999,54.33185455900015],[-130.42365475199983,54.34316640800013],[-130.44424394399996,54.34491608300014],[-130.45824133999992,54.34861888200008],[-130.4739477199999,54.35871002800006],[-130.48253333199992,54.373683986000074],[-130.47524980399987,54.392075914000124],[-130.48253333199992,54.40355052300008],[-130.48106848899994,54.418687242000075],[-130.47423255099994,54.43353913000011],[-130.46540279899997,54.444240627000156],[-130.4450577459999,54.453192450000174],[-130.40029863199993,54.4540062520001],[-130.3797094389999,54.461004950000174],[-130.42056230399993,54.48578522300012],[-130.43537350199983,54.50218333500014],[-130.4411514959999,54.52680084800015],[-130.43984941299988,54.548976955000015],[-130.43691972599987,54.55923086100013],[-130.4312231109999,54.56777578300016],[-130.41844641799995,54.56964752800003],[-130.40086829299992,54.56574127800003],[-130.38556881399987,54.565252997000144],[-130.3797094389999,54.57770416900014],[-130.39317786399988,54.58502838700015],[-130.4199926419999,54.60419342700014],[-130.43956458199995,54.62392812700006],[-130.4312231109999,54.632961330000064],[-130.40599524599992,54.630438544000135],[-130.38296464799996,54.62327708500011],[-130.36270097599993,54.61225006700006],[-130.34557044199988,54.598130601000136],[-130.31822669199994,54.56464264500009],[-130.28819739499988,54.539048570000105],[-130.2835180329999,54.53335195500013],[-130.2760310539999,54.51984284100014],[-130.0529679029999,54.33738841399998],[-130.03099524599992,54.32672760600006],[-130.00609290299988,54.31997304900001],[-129.9787491529999,54.31761302300005],[-129.96385657499985,54.31883372600008],[-129.9588923819999,54.32208893400012],[-129.9631241529999,54.32672760600006],[-129.97565670499992,54.33185455900015],[-129.98713131399987,54.333156643000144],[-129.99998938699989,54.33258698100009],[-130.01349850199986,54.33417389500012],[-130.02651933499993,54.34149811400012],[-130.07315019399994,54.37702057500012],[-130.08486894399994,54.392075914000124],[-130.0845841139999,54.411281643000066],[-130.06407630099994,54.446844794000135],[-130.0711970689999,54.461004950000174],[-130.06309973899988,54.478949286000116],[-130.05190995999996,54.48533763200014],[-130.01659094999994,54.48826732000008],[-129.9990128249999,54.49453359600001],[-129.9848526679999,54.504706122000144],[-129.98143469999988,54.51544830900014],[-129.9961645169999,54.52366771000008],[-130.0047094389999,54.5196800800001],[-130.06379146999993,54.50193919500002],[-130.07673092399995,54.491197007],[-130.0828751289999,54.47858307500009],[-130.08478756399987,54.463202216000134],[-130.08486894399994,54.444240627000156],[-130.1011449859999,54.42633698100009],[-130.1370336579999,54.44204336100016],[-130.19131425699993,54.48212311400009],[-130.2116593089999,54.493353583000086],[-130.29092363199996,54.57078685100008],[-130.28795325399994,54.57489655200011],[-130.2835180329999,54.58515045800014],[-130.32262122299994,54.60366445500016],[-130.35977128799993,54.63214752800015],[-130.37242591099988,54.66425202000012],[-130.33812415299994,54.693793036],[-130.28766842399992,54.707749742000075],[-130.23444576699993,54.71141185100011],[-130.18163001199994,54.70477936400006],[-130.1213272779999,54.68366120000006],[-130.09557044199997,54.67792389500006],[-130.08486894399994,54.67389557500009],[-130.0786026679999,54.668605861000046],[-130.06065833199995,54.6432152360001],[-130.0396622389999,54.628892320000105],[-130.0116267569999,54.619859117000104],[-129.92365475199986,54.60919830900018],[-129.9064835279999,54.60919830900018],[-129.89366614499988,54.61180247600008],[-129.87954667899996,54.620591539000046],[-129.88076738199987,54.62474192900008],[-129.89085852799994,54.62604401200018],[-129.96182206899994,54.626613674000126],[-129.98985755099994,54.630519924000126],[-130.01659094999994,54.639797268000095],[-130.03636633999986,54.654730536000145],[-130.07575436099984,54.693345445000105],[-130.09508216099988,54.701239325000174],[-130.11042232999984,54.702582098000065],[-130.12022864499994,54.70636627800009],[-130.13980058499993,54.71824778900004],[-130.15493730399993,54.72256094000012],[-130.18667558499988,54.724554755000085],[-130.20152747299994,54.72850169500008],[-130.19473222599993,54.75641510600009],[-130.1900528639999,54.763373114],[-130.17764238199987,54.77293528899999],[-130.17365475199986,54.77692291900014],[-130.15998287699986,54.79743073100012],[-130.1577042309999,54.80369700700005],[-130.1572973299999,54.81757233300006],[-130.15314693899984,54.8246931010001],[-130.14745032499985,54.82794830900015],[-130.13288326699993,54.82990143400009],[-130.1264542309999,54.83152903900013],[-130.0985001289999,54.844549872000115],[-130.08446204299992,54.85423411700007],[-130.0713598299999,54.86579010600009],[-130.05968176999994,54.878851630000085],[-130.05011959499987,54.893011786],[-130.06725012899992,54.89667389500015],[-130.08023027299993,54.890122789000074],[-130.10472571499994,54.86627838700018],[-130.11994381399992,54.859198309000114],[-130.15518144399996,54.85224030200011],[-130.17365475199986,54.844549872000115],[-130.16490637899992,54.85736725500014],[-130.15005449099993,54.87348053600011],[-130.1343481109999,54.88719310100013],[-130.10435950399994,54.90086497600008],[-130.06379146999993,54.954413153000175],[-130.04596920499984,54.96552155200011],[-130.02204342399997,54.97386302299999],[-129.99673417899993,54.97695547100006],[-129.97500566299996,54.97186920800014],[-129.95665442599991,54.957424221000096],[-129.96202551999997,54.94806549700014],[-129.9774470689999,54.93768952000014],[-129.98924719999988,54.92031484600007],[-129.9753311839999,54.92096588700012],[-129.96524003799993,54.92503489799999],[-129.95689856699994,54.93036530200005],[-129.94831295499984,54.93455638200008],[-129.93911699099996,54.94525788],[-129.9346410799999,54.94818756700011],[-129.9317113919999,54.94757721600017],[-129.90330969999985,54.94818756700011],[-129.88072669199988,54.955267645000085],[-129.84520423099988,54.987046617000125],[-129.82481848899994,54.99542877800009],[-129.81102454299992,54.99310944200012],[-129.78359941299996,54.97939687700001],[-129.7696020169999,54.975531317],[-129.75568600199992,54.97719961100001],[-129.72972571499992,54.98688385600015],[-129.71808834499993,54.98920319200012],[-129.66331946499992,54.98436107000005],[-129.64134680899988,54.98956940300015],[-129.62559973899994,55.009711005],[-129.67564856699994,54.994574286],[-129.95482337099992,55.009711005],[-129.97740637899992,55.005316473],[-129.9878637359999,55.005764065],[-129.9998673169999,55.013128973],[-130.00104732999984,55.02244700700014],[-129.99351966099988,55.03506094000012],[-129.97565670499992,55.058050848],[-129.9566951159999,55.10138580900014],[-129.94139563699994,55.11871979400014],[-129.91665605399987,55.12571849200004],[-129.89000403599994,55.15713125200007],[-129.87962805899994,55.16486237200017],[-129.87002519399996,55.170355536000024],[-129.86095130099994,55.17715078300013],[-129.8521215489999,55.18842194200012],[-129.85122636599993,55.192938544000086],[-129.8528946609999,55.203802802000084],[-129.8521215489999,55.20831940300003],[-129.84447180899988,55.216620184000085],[-129.83844967399995,55.22190989799999],[-129.8275447259999,55.24310944200006],[-129.8213598299999,55.251450914000046],[-129.81395423099994,55.25950755400007],[-129.8037817049999,55.266424872000165],[-129.78148352799985,55.27464427300007],[-129.7681778639999,55.28335195500016],[-129.7579646479999,55.284613348000065],[-129.7527970039999,55.28709544499999],[-129.7493383449999,55.292710679],[-129.74962317599994,55.298895575000145],[-129.75055904899992,55.305324611000074],[-129.74909420499984,55.31134674700017],[-129.72134355399987,55.34902578300016],[-129.70278886599996,55.365790106000176],[-129.68390865799984,55.372788804000045],[-129.6752823559999,55.378119208000115],[-129.67393958199995,55.38983795800011],[-129.67422441299988,55.401556708],[-129.67056230399993,55.406927802000055],[-129.66295325399997,55.41144440300012],[-129.64708411399994,55.433172919000086],[-129.63923092399997,55.441066799000154],[-129.61042232999984,55.44647858300003],[-129.5432022779999,55.437892971000096],[-129.5193985669999,55.444484768000066],[-129.4865616529999,55.459947007],[-129.4787491529999,55.46214427299999],[-129.47569739499994,55.46405670800014],[-129.47476152299993,55.468654690000065],[-129.4753311839999,55.479234117000125],[-129.47801673099988,55.483465887000065],[-129.48403886599988,55.481838283000044],[-129.49522864499988,55.475816148000106],[-129.5063370429999,55.472113348000065],[-129.5306290359999,55.45905182500009],[-129.54360917899987,55.455308335000055],[-129.55919348899985,55.455511786000116],[-129.59190833199995,55.460842190000086],[-129.63467363199993,55.46161530200003],[-129.6469620429999,55.458563544000114],[-129.65660559799994,55.451605536000116],[-129.6863500639999,55.419582424000126],[-129.69444739499988,55.41376373900009],[-129.7129613919999,55.420803127000156],[-129.71613521999987,55.46527741100006],[-129.74339758999986,55.48354726800012],[-129.7540583979999,55.501613674000154],[-129.79051673099985,55.598334052000055],[-129.80650794199994,55.6244977890001],[-129.82481848899994,55.61920807500003],[-129.8159073559999,55.60146719000012],[-129.81175696499994,55.582668361000096],[-129.8105362619999,55.540716864],[-129.78840084499984,55.50385163000011],[-129.77700761599988,55.47943756700009],[-129.78014075399994,55.468410549000126],[-129.79015051999994,55.463812567],[-129.79190019399994,55.45331452000011],[-129.7901912099999,55.44204336100013],[-129.79002844999988,55.43488190300009],[-129.79832923099983,55.42633698100015],[-129.8163142569999,55.420070705],[-129.82481848899994,55.41376373900009],[-129.83214270699995,55.40448639500012],[-129.83731035099993,55.39541250200013],[-129.83967037699986,55.385199286],[-129.83844967399995,55.372788804000045],[-129.83287512899994,55.366441148000135],[-129.82477779899995,55.36733633000004],[-129.8201391269999,55.37433502800009],[-129.82481848899994,55.386419989],[-129.8171280589999,55.392279364000146],[-129.80874589799993,55.396551825000145],[-129.79971269399994,55.39911530200008],[-129.79002844999988,55.400091864000146],[-129.7986547519999,55.38776276200009],[-129.80308997299994,55.38385651200009],[-129.8105362619999,55.38027578300013],[-129.80606035099996,55.37205638200013],[-129.8012589179999,55.367417710000026],[-129.79434160099987,55.365545966000056],[-129.78380286399994,55.36595286700005],[-129.78620357999986,55.356756903000175],[-129.79088294199997,55.34788646000011],[-129.79775956899985,55.341253973000065],[-129.82017981699988,55.33551666900008],[-129.82457434799997,55.328192450000174],[-129.8253067699999,55.30198802300005],[-129.82274329299992,55.296210028000175],[-129.82192949099985,55.29022858300006],[-129.8279516269999,55.28025950700008],[-129.8620499339999,55.25608958500008],[-129.87755286399994,55.24811432500012],[-129.8874405589999,55.22907135600012],[-129.89989173099983,55.18842194200012],[-129.91234290299988,55.168850002000156],[-129.9961645169999,55.099066473],[-130.01968339799993,55.06769440300015],[-130.0370987619999,55.036363023000106],[-130.05646725199992,55.009344794000164],[-130.06379146999993,55.002875067000055],[-130.08311926999994,54.99677155200008],[-130.10582434799989,54.9975446640001],[-130.1248266269999,55.005275783000016],[-130.13267981699997,55.01992422100012],[-130.13638261599993,55.037014065000065],[-130.16738847599993,55.085394598000065],[-130.1395157539999,55.11273834800015],[-130.12022864499994,55.14834219],[-130.11558997299994,55.15371328300016],[-130.10806230399987,55.157945054],[-130.08877519399994,55.17820872599999],[-130.08486894399994,55.184719143000095],[-130.0786026679999,55.19257233300005],[-130.01618404899995,55.22890859600015],[-129.95791581899994,55.273504950000024],[-129.9493708979999,55.293158270000085],[-129.96108964799987,55.31073639500012],[-129.9961645169999,55.338609117000075],[-130.00304114499997,55.356756903000175],[-130.0041397779999,55.39850495000012],[-130.00666256399984,55.410345770000056],[-130.0116267569999,55.41828034100003],[-130.0211075509999,55.44232819200006],[-130.02505449099988,55.46548086100002],[-130.03111731699985,55.47333405199999],[-130.03986568899987,55.47988515800007],[-130.05011959499987,55.48944733300006],[-130.07656816299996,55.522284247000144],[-130.09398352799994,55.55263906500012],[-130.0997615229999,55.58722565300003],[-130.09166419199997,55.632879950000174],[-130.0799047519999,55.65997955900009],[-130.07803300699993,55.67104726800012],[-130.0807185539999,55.685003973],[-130.08804277299993,55.690904039000046],[-130.09886633999992,55.69440338700004],[-130.11217200399994,55.701117255000085],[-130.1240128249999,55.71548086100015],[-130.13060462099986,55.73627350500014],[-130.12881425699987,55.75922272300012],[-130.11558997299994,55.77997467700011],[-130.0336807929999,55.848822333],[-129.9847305979999,55.905462958],[-129.96133378799993,55.92084381700012],[-129.96996008999992,55.93162669500013],[-129.98208574099993,55.93512604400003],[-129.99596106699994,55.93341705900012],[-130.00975501199989,55.92829010600009],[-130.01960201699984,55.9079857440001],[-130.0196184444494,55.90795184963342],[-130.01961170499993,55.90797794900008],[-130.0167878829999,55.9189134730001],[-130.01469498799992,55.963251852000056],[-130.0190099699999,56.002215882000044],[-130.02663224299997,56.024100851000085],[-130.03931880799988,56.045520732],[-130.07153906299996,56.08412302699999],[-130.09432836999986,56.10148630800002],[-130.11675594199994,56.10564626100013],[-130.21124629799993,56.08996246400007],[-130.243156495,56.09239125600014],[-130.2903112399999,56.100969544000165],[-130.4039735519998,56.121898499000146],[-130.41815873299993,56.12970164000007],[-130.4279255779999,56.14396433500015],[-130.45805293899986,56.21065277100016],[-130.47228979599996,56.224889628000035],[-130.49551835199986,56.2324343880001],[-130.60225602299997,56.247058818000156],[-130.645767579,56.26194163100011],[-130.7603342299999,56.34519236300012],[-130.83908911199987,56.37245168100013],[-131.01693355399993,56.3870502730001],[-131.10054602099996,56.4076691690001],[-131.21560359799992,56.452550151000096],[-131.34569901599997,56.50327056900006],[-131.49165909899992,56.56016632100012],[-131.5364367279999,56.58522939100014],[-131.56036291499996,56.59406606100005],[-131.5858910729999,56.5950479130001],[-131.6922928469999,56.58507436100011],[-131.79910803299995,56.5876581830001],[-131.82559220399995,56.59334259100014],[-131.8321034349999,56.60336781800008],[-131.8265740559999,56.64460561099999],[-131.83042395099994,56.66475942000015],[-131.8389764009998,56.68227773100001],[-131.8647887779999,56.71349029600002],[-131.8807051189999,56.728838196000154],[-131.88602779199996,56.73705474899999],[-131.8879656579999,56.747958476000164],[-131.88261714799992,56.759146424],[-131.87241105199988,56.772969869000136],[-131.8658739839999,56.7857081100001],[-131.87155839099995,56.793459575000114],[-132.10738378999991,56.858752747000054],[-132.0318586839999,57.028406474000164],[-132.16228999899994,57.050317281000034],[-132.34121964599996,57.08039296500009],[-132.2763657229999,57.14889007599999],[-132.2309938159999,57.19681996700002],[-132.30468440799993,57.28035491900012],[-132.36230362999999,57.345699768000074],[-132.45573461999987,57.42099233000011],[-132.5524470629999,57.499075420000125],[-132.62905737299997,57.57927724200012],[-132.7094400639998,57.66330312200016],[-132.83211991399992,57.791564026000025],[-132.91715348399993,57.88049916600009],[-132.99335038299995,57.941916606000156],[-133.07515417499997,58.00788157199998],[-133.09484289599993,58.03309967000015],[-133.14212683199997,58.12058787000002],[-133.16558793199994,58.147304586000175],[-133.25726192299993,58.210298157000075],[-133.3745674239999,58.290965068],[-133.41503006999991,58.33054921500015],[-133.4301195889999,58.37209706700004],[-133.39224076399992,58.4038780720001],[-133.46308915199978,58.46222076400012],[-133.5470633549999,58.505577291000016],[-133.6262833259999,58.546401673],[-133.70007727099994,58.599370016000094],[-133.79640214099993,58.69342112300013],[-133.83112870399998,58.718019104000135],[-133.87122961499978,58.73589915000009],[-133.98310909099996,58.76990224200012],[-134.10883785099992,58.808246155000134],[-134.22219010499992,58.84271433500011],[-134.31693884399996,58.90379587800011],[-134.32740332099988,58.916456604000146],[-134.33303605199995,58.934129945000144],[-134.3303230389999,58.94534373],[-134.32314001499992,58.94916778600004],[-134.3200394289999,58.95268178400001],[-134.32965124499992,58.963017070000106],[-134.34342301499987,58.96885650600008],[-134.39938859199998,58.97495432600014],[-134.3855909839999,59.01882761600016],[-134.38716711499995,59.03686269200008],[-134.39801916599978,59.05195221000015],[-134.4510133469999,59.09789255800013],[-134.47757503299982,59.11494578100008],[-134.50907181899987,59.12280059900004],[-134.55671748999993,59.123058980000096],[-134.58278824899992,59.128846741000146],[-134.61077103799997,59.14455637600005],[-134.66038041299998,59.18129832000001],[-134.671439169,59.19375234000011],[-134.6828596609999,59.22300120100014],[-134.6920839029999,59.23524851500015],[-134.70551977599996,59.2401061],[-134.74345027799995,59.24511871400015],[-134.83946508799994,59.258141174000095],[-134.93243099,59.270646872],[-134.9578299559999,59.2809821580001],[-134.97997330799993,59.29741526300016],[-135.01619848699997,59.33617258700009],[-135.01444148899998,59.35152048800016],[-135.00482967199997,59.36712677000009],[-134.99325415099992,59.38190623000012],[-135.0957543539999,59.41885487900005],[-135.07859777899992,59.438336894000045],[-135.03748917699994,59.46159128900017],[-135.02325231999998,59.47714589500002],[-135.0194799399999,59.49316558900015],[-135.01619848699997,59.543446757000105],[-135.018523926,59.559363099000116],[-135.03294165099982,59.57310902900014],[-135.08787369899994,59.60654368100017],[-135.10668391999985,59.613158265000045],[-135.15779191099995,59.623286845],[-135.19202754799994,59.647109680000156],[-135.22189652499992,59.67527333600013],[-135.25987870299997,59.69821767200007],[-135.34579077199993,59.73103220700007],[-135.40439184599984,59.75330474900013],[-135.4651374929999,59.78968495700012],[-135.48275915599993,59.79247548400018],[-135.6412507739999,59.747361960000106],[-135.8309549559999,59.693256734000116],[-135.92381750599998,59.66674672500001],[-136.02686031099978,59.65284576500012],[-136.14540604699988,59.63682607],[-136.25849991899992,59.62158152300004],[-136.3503289399999,59.5923843390001],[-136.2993501389999,59.57574452800018],[-136.2584740819999,59.55610748300014],[-136.24472814999996,59.52820221000017],[-136.2750363779998,59.48644765300013],[-136.31999487299993,59.45905914300009],[-136.36683955999985,59.44955068000009],[-136.4159580079999,59.45223785400013],[-136.4675569259998,59.46164296500008],[-136.467091838,59.38449005200011],[-136.46654923599993,59.28780344700005],[-136.48355078199995,59.257469381000114],[-136.4847910159998,59.25380035500002],[-136.5694886889999,59.172151591000116],[-136.61349117099996,59.15421987000015],[-136.67191137799983,59.15080922500011],[-136.7854961759999,59.15721710200008],[-136.84081579699983,59.14817372700009],[-136.942282471,59.11107004800011],[-137.04710852799988,59.07330963800017],[-137.06236731699985,59.06757233299999],[-137.17234594799982,59.027147523000124],[-137.28189998399978,58.98714996400015],[-137.33809810499994,58.95547231100015],[-137.42310583599993,58.907723287000074],[-137.4534657389998,58.89914499900006],[-137.48687455299978,58.900075175000026],[-137.50875952199982,58.91490631200004],[-137.5077518319999,58.93996938100003],[-137.4843940849999,58.991904196000135],[-137.52100683699982,59.07236440100011],[-137.54929968399983,59.134531149],[-137.58208837899994,59.206568096000076],[-137.59418066499993,59.225274964000064],[-137.6113630779999,59.239330954000174],[-137.75830501399992,59.3159154260001],[-137.9105696219998,59.39518707300011],[-138.06761429899996,59.47699086500016],[-138.21954300999994,59.55600413000003],[-138.36361690299995,59.63114166300012],[-138.4888805749998,59.69635732100006],[-138.5992097579998,59.75382151300006],[-138.63745031799988,59.78405222600018],[-138.65434851099997,59.805497945000106],[-138.69209814499993,59.88688832600003],[-138.69718827399993,59.89370961600019],[-138.70488806199987,59.89846384700017],[-138.74258601899993,59.913191631000174],[-138.84242488699988,59.93768625900013],[-139.0037587079999,59.97721873000007],[-139.05161108499982,59.99489207000006],[-139.06020662199995,60.000058906],[-139.1123050549998,60.031375631000074],[-139.182145753,60.07338857000009],[-139.18323095699998,60.100156963000174],[-139.14961543899994,60.161186829000066],[-139.11346777399993,60.22681589799999],[-139.0731859949998,60.299834697000115],[-139.06869014599994,60.32205556300007],[-139.07946468099988,60.341020813000014],[-139.101608033,60.34660186800012],[-139.26219254599994,60.342777812000115],[-139.41399206599988,60.33921213800012],[-139.51796504799992,60.33673167000013],[-139.62834590799991,60.33409617100013],[-139.6798156329998,60.326809795000074],[-139.7284173179999,60.30903310200013],[-139.826318319,60.256478170000044],[-139.9169329439999,60.20785064700014],[-139.96775671399993,60.18836863200015],[-140.0157899579998,60.18738678000007],[-140.16924312399985,60.22722931],[-140.3249700529999,60.267536927000044],[-140.42411128799984,60.29316843700012],[-140.44780493299987,60.29446034800015],[-140.46279109799994,60.28913767500002],[-140.47532263199994,60.276476950000166],[-140.50666438899987,60.236324361000165],[-140.51870499699993,60.22387034100008],[-140.53374283899993,60.218547669000046],[-140.66050512799995,60.240510153000024],[-140.768457195,60.25926869700011],[-140.9091462809999,60.28365997300013],[-140.97955542099993,60.29580393500014],[-140.9949291599999,60.30438222300016],[-141.00115616899993,60.3210737100001],[-141.00120784599994,60.46687876500011],[-141.0012853599999,60.61268381800012],[-141.00136287499987,60.75841135700013],[-141.00144038999977,60.90421641100015],[-141.0015179039999,61.049969788000126],[-141.00159541899984,61.19582651800009],[-141.0016729339999,61.341579896000084],[-141.00175044799988,61.48733327200007],[-141.0018279629998,61.633086650000095],[-141.0019054779999,61.7788658650001],[-141.00198299199994,61.924619243000095],[-141.00200883099996,62.0703726200001],[-141.00206050599996,62.21622935000011],[-141.00213802199988,62.361982728000115],[-141.00221553599997,62.50776194300012],[-141.00229304999993,62.653592835000055],[-141.00237056599983,62.799320374000054],[-141.00244807999997,62.945099590000055],[-141.0025255939999,63.09087880500008],[-141.0025514329999,63.23665802000009],[-141.0026031099999,63.38248891200003],[-141.00268062399994,63.528268128000114],[-141.00275813799993,63.67409902000004],[-141.00283565399997,63.8197748830001],[-141.00291316799988,63.96550242200012],[-141.0029906819999,64.1112816370001],[-141.00306819799994,64.25711252900005],[-141.00309403499995,64.40289174400004],[-141.00314571199996,64.54867096000007],[-141.00322322599988,64.69450185199999],[-141.0033007409998,64.840229391],[-141.0033782559999,64.986008606],[-141.00345576999985,65.131787821],[-141.00353328499975,65.27756703700011],[-141.0036108,65.42337209100013],[-141.0036366389999,65.56917714500004],[-141.00368831399982,65.71495636100015],[-141.00376582899992,65.86073557600015],[-141.00384334399985,66.00651479100016],[-141.00392085799987,66.15226816900015],[-141.0039983729999,66.29802154600016],[-141.0040758879998,66.44377492299999],[-141.00415340199993,66.589579976],[-141.00420507799993,66.7354108680001],[-141.00423091699986,66.8811384080001],[-141.0043084319998,67.02691762400003],[-141.0043859459999,67.17272267700004],[-141.00446346099992,67.31847605400004],[-141.00454097599993,67.46428110800015],[-141.00461848999996,67.61008616200016],[-141.00469600499997,67.75581370100015],[-141.0047476819999,67.90164459300007],[-141.0047735189999,68.04742380800009],[-141.00485103399993,68.1932030230001],[-141.00492854899994,68.33898223900003],[-141.00500606299997,68.48470977900001],[-141.00508357799998,68.63048899400002],[-141.0051610929999,68.77626820900004],[-141.0052386069999,68.92204742500006],[-141.00529028399984,69.06782664000015],[-141.00531612199995,69.21360585600014],[-141.00539363699997,69.35938507100015],[-141.005471151,69.50516428600018],[-141.0055486371089,69.65094121827265],[-140.9898168609999,69.64565664300007],[-140.8985082669999,69.64057038000006],[-140.90078691299988,69.63711172100015],[-140.90099036399994,69.6359723980001],[-140.90172278599997,69.63532135600015],[-140.9059138659999,69.63312409100008],[-140.89037024599992,69.62718333500004],[-140.87303626199989,69.62543366100006],[-140.83702551999994,69.62628815300015],[-140.8399145169999,69.6303571640001],[-140.8432511059999,69.63312409100008],[-140.8192439439999,69.63812897300012],[-140.6435440749999,69.61635976800007],[-140.4051407539999,69.60146719],[-140.2227270169999,69.59910716400005],[-140.1526993479999,69.6188011740001],[-139.9179581369999,69.62132396000011],[-139.6099747389999,69.582953192],[-139.59984290299985,69.57973867400013],[-139.71271725199983,69.58779531500006],[-139.77456620999993,69.60016510600009],[-139.74754798099988,69.58535390800013],[-139.70055091099994,69.57436758000007],[-139.36351477799994,69.54433828300004],[-139.3135473299999,69.52033112200009],[-139.2949926419999,69.51703522300014],[-139.14378821499992,69.51365794500013],[-139.10936438699986,69.49900950700011],[-139.04759680899986,69.45433177300005],[-139.03034420499986,69.44220612200014],[-138.9939672519999,69.42218659100008],[-138.9556778639999,69.4066429710001],[-138.76646887899992,69.359116929],[-138.7245987619999,69.33038971600006],[-138.6643774079998,69.30133698100015],[-138.63670813699994,69.28367747600005],[-138.60850989499997,69.24860260600015],[-138.6026098299998,69.24266185100005],[-138.58918209499984,69.241197007],[-138.57949785099987,69.24567291900014],[-138.57111568899992,69.25202057500017],[-138.56163489499994,69.256333726],[-138.5484106109999,69.25771719000006],[-138.50698808499996,69.256333726],[-138.50698808499996,69.24949778900007],[-138.52745520699995,69.24949778900007],[-138.51528886599993,69.24445221600003],[-138.48468990799992,69.23651764500006],[-138.4514867829999,69.23432038000009],[-138.44493567599994,69.23525625200016],[-138.4438370429999,69.23798248900012],[-138.44505774599992,69.242865302],[-138.44538326699993,69.24746328300013],[-138.4415177069999,69.24949778900007],[-138.4182836579999,69.254584052],[-138.40957597599993,69.26707591399999],[-138.40591386599993,69.28290436400012],[-138.39777584499984,69.29791901200015],[-138.41201738199993,69.29755280200014],[-138.42564856699988,69.29437897300006],[-138.45177161399994,69.28367747600005],[-138.42707271999987,69.30158112200012],[-138.39037024599995,69.30902741100009],[-138.35704505099994,69.30467357],[-138.3425186839999,69.28705475500004],[-138.33926347599987,69.25849030200007],[-138.3293350899999,69.24160390800007],[-138.3123673169999,69.229478257],[-138.22716223899994,69.18329498900009],[-138.0955297519999,69.14012278899999],[-137.8694555329999,69.09186432500003],[-137.5182185539999,69.0168317730001],[-137.42471269399994,69.01422760600009],[-137.38292395699986,69.00311920800007],[-137.4313044909999,69.00311920800007],[-137.4313044909999,68.99567291900009],[-137.3004044259999,68.97516510600006],[-137.22374426999994,68.95091380400005],[-137.19115149599986,68.94790273600016],[-137.06078040299985,68.95473867400007],[-136.99250240799986,68.94790273600016],[-136.98607337099995,68.94464752800012],[-136.9712621739999,68.93060944200005],[-136.96178137899994,68.92739492400001],[-136.90534420499992,68.92072174700014],[-136.80109615799986,68.88910553600006],[-136.74547278599994,68.8789737000001],[-136.66299394399988,68.87579987200006],[-136.64305579299992,68.8789737000001],[-136.63390051999994,68.88410065300003],[-136.62608801999994,68.89093659100006],[-136.6163223949999,68.89691803600006],[-136.60147050699993,68.89948151200015],[-136.52574622299997,68.893255927],[-136.53604081899988,68.89809804900007],[-136.54002844999988,68.89948151200015],[-136.54002844999988,68.90692780200014],[-136.50064042899987,68.91592031500005],[-136.45885169199994,68.91254303600014],[-136.4448542959999,68.90989817900005],[-136.41649329299986,68.904486395],[-136.2391251289999,68.88641998900009],[-136.06761633999992,68.88532135600003],[-135.88149980399996,68.85024648600016],[-135.85366777299993,68.83730703300013],[-135.78160559799989,68.82160065300008],[-135.7720434239999,68.81362539300012],[-135.7586156889999,68.79706452000006],[-135.73375403599994,68.78457265800016],[-135.70262610599985,68.77505117400015],[-135.63565019399996,68.76288483300009],[-135.51854407499985,68.75507233300007],[-135.48827063699986,68.7389997420001],[-135.48009192599994,68.73135000200006],[-135.46206620999993,68.71800364800005],[-135.44391842399983,68.70819733300011],[-135.42658443899984,68.70246002800015],[-135.41934160099993,68.701402085],[-135.41226152299996,68.69863515800013],[-135.41079667899987,68.69204336100007],[-135.4112035799999,68.68504466399999],[-135.40977942599994,68.68097565300003],[-135.3787735669999,68.67401764500012],[-135.29124915299985,68.687201239],[-135.25601152299993,68.68227773600005],[-135.18675696499994,68.66242096600003],[-135.14903723899997,68.66046784100017],[-135.16242428299986,68.67243073100009],[-135.19977779899995,68.67475006700005],[-135.2111710279999,68.687201239],[-135.2051488919999,68.68854401200018],[-135.19005286399988,68.69399648600002],[-135.21890214799993,68.69696686400012],[-135.2717992829999,68.71710846600017],[-135.32168535099993,68.72614166900017],[-135.33543860599994,68.73655833500005],[-135.3588761059999,68.77041250200011],[-135.36172441299993,68.77716705900015],[-135.3679093089999,68.78213125200001],[-135.39708411399997,68.78603750200001],[-135.4259333979999,68.79498932500006],[-135.46182206899988,68.80093008000006],[-135.4803360669999,68.81142812700013],[-135.4950251939999,68.82672760600009],[-135.5053604809999,68.84544505400007],[-135.3408910799999,68.83860911700005],[-135.40953528599985,68.8535016950001],[-135.57030188699989,68.85927969000006],[-135.6282445949999,68.893255927],[-135.61510169199994,68.8996442730001],[-135.6060684889999,68.9113630230001],[-135.82485917899987,68.90338776200015],[-135.8684789699999,68.90692780200014],[-136.00499426999988,68.94790273600016],[-135.99356035099993,68.96596914300007],[-135.97134355399987,68.96824778900005],[-135.92308508999994,68.96214427300005],[-135.92308508999994,68.96832916900001],[-135.97378495999993,68.99551015800013],[-135.99058997299994,69.01593659100011],[-135.98176021999987,69.0406761740001],[-135.95417232999986,69.04840729400009],[-135.91649329299986,69.03925202000003],[-135.84797115799992,69.00934479400003],[-135.76992753799988,68.99152252800015],[-135.6813044909999,68.99152252800015],[-135.59382076699984,69.00556061400003],[-135.51903235599985,69.02977122600011],[-135.6949763659999,69.01536692900005],[-135.70738684799994,69.02020905200011],[-135.71222896999984,69.02728913],[-135.71568762899994,69.04035065300013],[-135.72134355399993,69.04718659100008],[-135.74254309799994,69.05931224199999],[-135.9194229809999,69.09349192900005],[-135.9366755849999,69.10553620000016],[-135.95034745999993,69.16014232000005],[-135.96328691299993,69.1889102230001],[-135.96910559799989,69.20722077000015],[-135.96776282499988,69.22215403899999],[-135.93382727799985,69.25413646],[-135.89452063699986,69.25165436400006],[-135.81322180899986,69.21539948100015],[-135.78791256399992,69.20917389499999],[-135.77822831899994,69.20514557500003],[-135.75157630099991,69.18398672100004],[-135.58804277299987,69.12490469],[-135.47203528599994,69.11513906500014],[-135.41592363199993,69.09870026200015],[-135.43317623599992,69.1175804710001],[-135.47622636599993,69.13027578300013],[-135.59300696499992,69.14325592700006],[-135.62535559799994,69.15265534100017],[-135.8362930979999,69.26093170800011],[-135.85537675699993,69.29047272300006],[-135.83788001199986,69.30906810100008],[-135.80418860599985,69.32184479400003],[-135.7668350899999,69.32908763200014],[-135.7015274729999,69.33283112200017],[-135.6821996739999,69.33026764500006],[-135.66612708199992,69.32184479400003],[-135.66120357999986,69.31818268400015],[-135.65086829299995,69.31220123900015],[-135.64561926999994,69.30756256700012],[-135.64313717399983,69.30174388200008],[-135.6440323559999,69.28900788000011],[-135.64248613199987,69.28367747600005],[-135.62804114499994,69.26862213700004],[-135.58385169199994,69.23541901200012],[-135.56737219999985,69.22907135600009],[-135.5570369129999,69.23871491100006],[-135.56956946499986,69.26068756700006],[-135.60155188699986,69.29791901200015],[-135.6096899079999,69.31216054900015],[-135.61314856699997,69.32160065300017],[-135.6121313139999,69.32831452000012],[-135.60098222599984,69.33584219000006],[-135.58568274599992,69.34174225500011],[-135.5693253249999,69.34467194200012],[-135.51553300699996,69.33828359600001],[-135.47354081899988,69.33836497599998],[-135.43342037699986,69.3339297550001],[-135.37409420499986,69.29954661699999],[-135.33934485599994,69.28896719000012],[-135.17589270699995,69.26215241100012],[-135.1666560539999,69.26300690300003],[-135.1627091139999,69.26654694200002],[-135.16291256399987,69.27228424700009],[-135.16397050699993,69.27781810100011],[-135.16690019399994,69.28204987200003],[-135.1726781889999,69.28367747600005],[-135.18635006399984,69.28554922100001],[-135.20348059799997,69.29047272300006],[-135.2197973299999,69.29706452000015],[-135.2310277989999,69.304144598],[-135.23981686099987,69.31500885600009],[-135.23997962099992,69.32168203300016],[-135.23745683499993,69.32827383000013],[-135.2384333979999,69.33893463700015],[-135.2448624339999,69.35675690300003],[-135.24868730399993,69.36245351800004],[-135.25548255099991,69.36961497600005],[-135.27599036399988,69.40033600500006],[-135.2823787099999,69.40460846600013],[-135.28433183499996,69.41453685100008],[-135.2830297519999,69.42597077000012],[-135.2794083319999,69.43451569200015],[-135.26716061099984,69.44183991100014],[-135.2111710279999,69.45433177300005],[-135.1553848949999,69.47972239799999],[-135.12661699099996,69.48236725500006],[-135.10806230399993,69.46181875200004],[-135.0994766919999,69.47247955900015],[-135.08873450399994,69.47846100500009],[-135.07567298099985,69.48118724200005],[-135.06029212099992,69.48224518400008],[-135.06651770699995,69.48224518400008],[-135.03538977799988,69.48859284100003],[-134.97899329299992,69.47821686400012],[-134.95042883999994,69.47606028900013],[-134.8935440749999,69.48969147300006],[-134.86294511599988,69.4933942730001],[-134.81891842399997,69.482652085],[-134.81114661399997,69.48908112200012],[-134.80646725199986,69.50275299700014],[-134.79405676999994,69.49957916900009],[-134.78795325399994,69.49323151200015],[-134.7841690749999,69.48647695500001],[-134.7791235019999,69.48224518400008],[-134.7460831369999,69.47809479400014],[-134.64134680899986,69.48224518400008],[-134.5335587229999,69.45038483300004],[-134.47630774599986,69.443793036],[-134.42593339799993,69.46523672100012],[-134.41641191299993,69.49746328300007],[-134.45030676999997,69.516750393],[-134.5003149079999,69.51788971600014],[-134.53892981699997,69.49591705900004],[-134.5288793609999,69.485296942],[-134.52525794199994,69.48224518400008],[-134.5413712229999,69.47557200700012],[-134.5573624339999,69.47931549700017],[-134.58731035099987,69.49591705900004],[-134.5768123039999,69.50665924700014],[-134.57306881399987,69.50958893400015],[-134.5944718089999,69.512884833],[-134.5945938789999,69.52753327000003],[-134.58413652299993,69.543646552],[-134.5733536449999,69.55117422100012],[-134.55972245999996,69.54922109600001],[-134.53921464799993,69.53994375200011],[-134.52525794199994,69.53685130400005],[-134.51162675699987,69.53766510600015],[-134.4852188789999,69.54368724199999],[-134.47126217399992,69.54433828300004],[-134.49111894399994,69.56419505400014],[-134.48717200399992,69.56834544500008],[-134.4683324859999,69.58226146000005],[-134.4416397779999,69.5910505230001],[-134.4273575509999,69.60488515800002],[-134.40550696499992,69.63686758000001],[-134.41006425699987,69.65692780200008],[-134.43879146999984,69.681830145],[-134.49795488199993,69.72247955900009],[-134.4809464179999,69.72748444200015],[-134.46418209499987,69.72418854400011],[-134.4471329419999,69.71824778899999],[-134.4293513659999,69.7150332700001],[-134.41051184799989,69.717759507],[-134.3749893869999,69.72711823100003],[-134.34300696499992,69.72280508000004],[-134.32852128799996,69.72516510600018],[-134.31989498599987,69.72357819200015],[-134.31920325399992,69.70880768400013],[-134.32347571499992,69.69672272300006],[-134.3309626939999,69.68960195500001],[-134.34117591099994,69.68524811400012],[-134.35399329299986,69.68154531500006],[-134.3347875639999,69.6732852230001],[-134.2557266919999,69.6826032570001],[-134.2242325509999,69.68154531500006],[-134.20588131399984,69.67011139500012],[-134.19115149599995,69.65550364800002],[-134.17418372299997,69.64374420800011],[-134.14915930899988,69.64057038000006],[-134.14915930899988,69.63312409100008],[-134.19701087099992,69.62042877800012],[-134.21963456899996,69.60952383000011],[-134.23729407499988,69.59210846600017],[-134.2424210279999,69.57721588700012],[-134.2294001939999,69.57892487200003],[-134.20759029899995,69.5871442730001],[-134.18639075399994,69.59210846600017],[-134.17784583199995,69.58779531500006],[-134.17393958199995,69.56854889500012],[-134.1658829419999,69.56419505400014],[-134.1538793609999,69.56110260600006],[-134.13243567599994,69.5474307310001],[-134.1209203769999,69.54433828300004],[-134.09142005099991,69.54865143400004],[-134.0643204419999,69.55687083500011],[-134.0363663399999,69.562241929],[-134.00450598899994,69.55805084800015],[-134.0118708979999,69.54669830900018],[-134.0241593089999,69.53998444200012],[-134.0523168609999,69.5307070980001],[-133.9982804029999,69.5307070980001],[-133.98509680899994,69.52814362200017],[-133.9766332669999,69.52440013200014],[-133.97008216099994,69.52041250200007],[-133.96296139199987,69.51703522300014],[-133.94249426999988,69.51300690300017],[-133.91466223899994,69.51166413],[-133.8854874339999,69.514593817],[-133.86115475199992,69.52326080900009],[-133.86620032499985,69.52619049700003],[-133.87572180899986,69.53388092700004],[-133.88097083199995,69.53685130400005],[-133.8609106109999,69.54385000200013],[-133.8184301419999,69.54450104400009],[-133.7990616529999,69.55117422100012],[-133.80581620999993,69.55288320500013],[-133.8181860019999,69.5573591170001],[-133.82575436099992,69.55805084800015],[-133.81899980399987,69.569525458],[-133.80772864499988,69.57611725500009],[-133.79360917899996,69.57868073100018],[-133.77855383999994,69.57786692900008],[-133.78099524599986,69.57412344000012],[-133.7847794259999,69.5716820330001],[-133.7783096999999,69.56289297100012],[-133.7704971999999,69.5564639340001],[-133.76146399599992,69.55247630400005],[-133.75129146999984,69.55117422100012],[-133.7602432929999,69.53925202],[-133.78669186099984,69.53668854400009],[-133.79222571499986,69.52700429900013],[-133.7899470689999,69.52138906500012],[-133.78026282499994,69.50812409100011],[-133.77855383999994,69.50275299700014],[-133.78111731699994,69.49388255400002],[-133.78404700399994,69.49201080900004],[-133.78844153599994,69.49140045800009],[-133.8181046209999,69.46735260600003],[-133.84536699099988,69.45209381700006],[-134.03010006399992,69.38320547100001],[-134.09219316299993,69.3447940120001],[-134.10069739499988,69.29791901200015],[-134.16901607999986,69.29791901200015],[-134.1807348299999,69.29462311400012],[-134.20348059799989,69.28017812700016],[-134.21397864499997,69.27680084800012],[-134.22223873599987,69.272609768],[-134.22500566299993,69.263128973],[-134.22899329299992,69.25381094000006],[-134.2407120429999,69.24949778900007],[-134.25308183499993,69.2471377620001],[-134.26333574099993,69.24091217700006],[-134.2717179029999,69.23212311400009],[-134.27822831899988,69.22215403899999],[-134.28160559799994,69.21234772300006],[-134.27920488199987,69.20770905200011],[-134.27643795499992,69.203558661],[-134.27822831899988,69.19489166900007],[-134.28343665299988,69.18561432500006],[-134.28819739499988,69.18158600500009],[-134.30467688699989,69.17365143400012],[-134.31297766799986,69.15395742400007],[-134.30186926999994,69.15753815300003],[-134.2764786449999,69.15802643400004],[-134.26455644399994,69.16014232000005],[-134.24608313699994,69.16950104400017],[-134.23729407499988,69.17999909100014],[-134.2242325509999,69.20856354400003],[-134.19810950399994,69.23651764500006],[-134.16291256399987,69.25568268400004],[-134.1222224599999,69.26654694200002],[-134.00011145699995,69.273138739],[-133.9545792309999,69.28636302300013],[-133.90632076699987,69.29051341400007],[-133.88467363199987,69.30101146000014],[-133.87205969999988,69.315863348],[-133.8710831369999,69.32514069200006],[-133.86929277299993,69.33250560100005],[-133.85431881399987,69.34198639500005],[-133.84162350199983,69.34540436400006],[-133.79938717399992,69.34511953300012],[-133.7855525379999,69.34715403900007],[-133.75816809799994,69.35675690300003],[-133.74380449099988,69.35936107000013],[-133.7459203769999,69.35492584800006],[-133.74925696499992,69.34357330900009],[-133.75129146999984,69.33893463700015],[-133.7039688789999,69.33926015800007],[-133.68203691299988,69.34316640800007],[-133.66185462099995,69.35252513200011],[-133.6785375639999,69.36029694200012],[-133.69664466099988,69.36619700700005],[-133.67137610599994,69.3883731140001],[-133.6319067049999,69.39915599200013],[-133.4633682929999,69.41771067900014],[-133.25780188699986,69.41400788],[-133.24840247299994,69.41107819200006],[-133.23692786399988,69.40224844],[-133.2267960279999,69.40033600500006],[-133.21572831899988,69.40159739800004],[-133.20970618399988,69.40493398600007],[-133.20449785099987,69.40932851800007],[-133.19579016799992,69.41400788],[-133.08942623599992,69.44505442900002],[-133.08283443899984,69.44472890800007],[-133.07494055899983,69.43952057500009],[-133.06554114499994,69.43622467700006],[-133.0554093089999,69.43455638200014],[-133.04552161399988,69.43451569200015],[-133.0521134109999,69.44798411700013],[-133.0550024079999,69.46377187700007],[-133.04954993399994,69.47687409100006],[-133.03132076699987,69.48224518400008],[-133.00723222599993,69.486558335],[-132.99669348899988,69.496527411],[-132.9880264959999,69.50812409100011],[-132.96983801999988,69.51703522300014],[-132.98399817599991,69.52509186400009],[-132.98110917899987,69.53546784100008],[-132.95958411399997,69.55459219000015],[-132.95421301999988,69.56818268400009],[-132.96336829299986,69.57843659100003],[-132.99087480399993,69.59210846600017],[-132.97565670499984,69.61432526200004],[-132.9468888009999,69.63458893400004],[-132.8872777989999,69.661078192],[-132.77122962099986,69.661078192],[-132.77940833199995,69.65692780200008],[-132.78709876199989,69.65200429900001],[-132.79381262899994,69.646429755],[-132.7991430329999,69.64057038000006],[-132.72378495999993,69.63800690300015],[-132.70636959499987,69.64362213700007],[-132.68797766799992,69.65517812700006],[-132.67052161399994,69.65770091399999],[-132.6068416009999,69.65180084800006],[-132.55211341099997,69.63312409100008],[-132.53010006399987,69.63198476800012],[-132.38508053299992,69.64667389500015],[-132.34854081899988,69.659857489],[-132.33299719999988,69.68463776200015],[-132.35167395699995,69.691799221],[-132.46271725199986,69.661078192],[-132.45189368399986,69.668890692],[-132.44009355399987,69.67519765800013],[-132.43106035099987,69.68280670800009],[-132.42857825399994,69.69452545800006],[-132.43590247299994,69.70441315300017],[-132.4505102199999,69.70783112200009],[-132.46711178299984,69.70551178600012],[-132.49290930899983,69.691880601],[-132.51341712099992,69.68650950700011],[-132.54841061099992,69.68154531500006],[-132.55528723899994,69.67938873900006],[-132.56993567599994,69.66998932500015],[-132.5787654289999,69.66787344000012],[-132.60350501199986,69.66909414300015],[-132.6271866529999,69.67405833500003],[-132.6204320949998,69.68170807500003],[-132.61050370999993,69.68821849200013],[-132.59874426999997,69.69281647300006],[-132.58625240799986,69.69452545800006],[-132.5657852859999,69.7150332700001],[-132.54841061099992,69.74298737200014],[-132.39317786399994,69.75238678600009],[-132.34373938699989,69.76683177300013],[-132.31012936099987,69.77240631700015],[-132.27741451699984,69.77431875200001],[-132.25723222599993,69.77024974200005],[-132.28384355399993,69.76943594000012],[-132.3596899079999,69.74982330900015],[-132.44920813699986,69.74420807500017],[-132.48379472599987,69.74298737200014],[-132.48379472599987,69.73615143400004],[-132.2913712229999,69.73615143400004],[-132.2957657539999,69.72842031500012],[-132.30190995999996,69.72235748900012],[-132.30968176999997,69.71796295800013],[-132.31871497299994,69.7150332700001],[-132.26414954299992,69.70880768400013],[-132.25747636599993,69.709906317],[-132.24181067599997,69.71442291900014],[-132.23680579299992,69.7150332700001],[-132.23228919199997,69.71234772300015],[-132.2249242829999,69.70380280200011],[-132.16763261599993,69.68781159100003],[-132.1389054029999,69.687933661],[-132.12010657499994,69.70880768400013],[-132.12140865799984,69.71898021000011],[-132.09992428299986,69.727687893],[-131.9996638659999,69.74079010600015],[-131.97179114499994,69.747992255],[-131.9293106759999,69.77073802300013],[-131.83950761599988,69.77024974200005],[-131.81899980399993,69.77667877800015],[-131.77306067599994,69.79840729400001],[-131.7564184239999,69.81122467700006],[-131.76471920499986,69.82689036700005],[-131.74941972599993,69.83637116100014],[-131.70238196499992,69.84540436400005],[-131.62010657499985,69.87641022300006],[-131.45128333199992,69.89630768400015],[-131.42125403599997,69.91425202000012],[-131.42788652299993,69.91376373900012],[-131.4418025379999,69.914780992],[-131.44855709499984,69.91425202000012],[-131.44033769399994,69.93280670800011],[-131.42642167899984,69.950628973],[-131.40831458199995,69.96149323100009],[-131.38735917899993,69.95897044500008],[-131.35680091099988,69.95050690300003],[-131.2882380849999,69.94904205900015],[-131.2567439439999,69.94220612200014],[-131.24058997299994,69.93305084800005],[-131.2224828769999,69.91844310100005],[-131.2076309889999,69.90094635600009],[-131.20152747299994,69.883246161],[-131.20494544199994,69.87518952000006],[-131.21947180899986,69.86188385600002],[-131.2219945949999,69.85285065300003],[-131.21776282499985,69.84186432500017],[-131.2093399729999,69.83421458500014],[-131.18846594999994,69.824896552],[-131.15977942599997,69.854681708],[-131.15367591099988,69.86587148600002],[-131.1799210279999,69.86660390800012],[-131.18846594999994,69.86587148600002],[-131.1679581369999,69.88694896000013],[-131.14883378799993,69.89227936399999],[-131.09972083199997,69.88694896000013],[-131.08482825399994,69.89264557500003],[-131.0745336579999,69.90599192900014],[-131.0580948559999,69.93475983300009],[-131.02774003799993,69.96360911700002],[-131.0149633449999,69.98053620000017],[-131.00967363199993,69.99966054900015],[-130.9990128249999,70.01211172100007],[-130.9469294909999,70.020656643],[-130.92780514199987,70.03034088700015],[-130.95034745999993,70.03742096600003],[-131.00129146999984,70.02826569200012],[-131.0239965489999,70.03034088700015],[-131.00694739499994,70.03632233300006],[-130.94286048099988,70.07880280200014],[-130.90859941299993,70.09495677300002],[-130.8936254549999,70.10602448100003],[-130.8939102859999,70.09332916900017],[-130.90444902299987,70.08600495000017],[-130.91543535099993,70.08095937700013],[-130.9172257149999,70.0750186220001],[-130.90298417899993,70.06830475500006],[-130.88853919199994,70.07538483300011],[-130.87389075399994,70.08657461100013],[-130.85920162699983,70.09243398600007],[-130.84142005099991,70.09393952000012],[-130.80483964799993,70.10602448100003],[-130.77147376199994,70.10748932500009],[-130.76024329299995,70.11066315300015],[-130.7639054029999,70.1203473980001],[-130.75121008999992,70.12970612200014],[-130.73721269399996,70.13324616100014],[-130.72280839799993,70.13202545800011],[-130.70864824099988,70.12661367400007],[-130.7362361319999,70.10276927299999],[-130.7470596999999,70.08999258000013],[-130.74278723899988,70.07880280200014],[-130.72297115799986,70.078599351],[-130.69123287699992,70.086371161],[-130.6638891269998,70.09808991100009],[-130.6571345689999,70.10952383000013],[-130.6649063789999,70.12470123900012],[-130.66087805899994,70.136460679],[-130.64712480399993,70.14175039300007],[-130.62580318899987,70.13715241100012],[-130.6048884759999,70.13593170800011],[-130.57664954299992,70.14142487200013],[-130.5560196609999,70.15078359600007],[-130.5578507149999,70.16132233300014],[-130.54190019399996,70.17365143400009],[-130.51528886599993,70.17719147300006],[-130.46157792899996,70.1749535180001],[-130.48216712099992,70.16803620000009],[-130.51146399599992,70.16250234600007],[-130.53807532499985,70.15289948100009],[-130.55040442599991,70.13397858300004],[-130.54141191299988,70.11469147300012],[-130.5197647779999,70.10480377800003],[-130.49644934799989,70.10602448100003],[-130.4827367829999,70.1203473980001],[-130.5237524079999,70.12661367400007],[-130.50438391799986,70.13886139500012],[-130.48143469999988,70.14012278900005],[-130.4346410799999,70.13397858300004],[-130.41982988199993,70.13621653900005],[-130.40615800699987,70.14223867400015],[-130.39964758999992,70.15094635600003],[-130.40636145699995,70.16132233300014],[-130.3850805329999,70.16567617400013],[-130.35236568899984,70.13491445500016],[-130.3244522779999,70.14020416900001],[-130.32974199099993,70.11981842700006],[-130.32640540299994,70.10976797100007],[-130.3136287099999,70.10639069200006],[-130.29092363199996,70.10602448100003],[-130.3272598949999,70.09357330900012],[-130.33812415299994,70.08559804900007],[-130.31851152299987,70.08161041900009],[-130.24937903599997,70.08559804900007],[-130.22614498599984,70.09027741100007],[-130.18126380099994,70.10586172100007],[-130.15998287699986,70.10602448100003],[-130.1819962229999,70.084662177],[-130.19102942599997,70.07290273600002],[-130.19473222599993,70.06134674700017],[-130.1868790359999,70.05255768400012],[-130.16917883999992,70.05878327000006],[-130.15050208199992,70.07074616099999],[-130.10732988199993,70.10862864800013],[-130.09821529899995,70.11286041900014],[-130.0821020169999,70.10952383000013],[-130.0786026679999,70.101019598],[-130.0849503249999,70.08991120000015],[-130.0985001289999,70.07880280200014],[-130.0556534499999,70.08274974200013],[-129.9754125639999,70.10162995000015],[-129.9536840489999,70.102728583],[-129.9346410799999,70.09857819200006],[-129.97630774599986,70.083726304],[-129.99250240799992,70.07514069200008],[-129.98249264199984,70.07135651200015],[-129.9317113919999,70.07611725500006],[-129.8863012359999,70.08559804900007],[-129.88947506399987,70.08917877800003],[-129.8911026679999,70.09202708500008],[-129.89366614499988,70.09857819200006],[-129.86766516799992,70.10516998900012],[-129.85830644399996,70.10602448100003],[-129.86412512899994,70.13361237200013],[-129.8456925119999,70.15289948100009],[-129.79002844999988,70.18121979400003],[-129.79881751199994,70.18768952000012],[-129.80870520699995,70.19208405200011],[-129.81956946499992,70.19464752800002],[-129.8309626939999,70.19546133000013],[-129.8309626939999,70.20229726800007],[-129.81529700399992,70.20184967700006],[-129.80435136599996,70.20652903899999],[-129.79572506399987,70.21499258000001],[-129.7869360019999,70.2258161480001],[-129.77529863199987,70.22947825700008],[-129.73827063699986,70.225083726],[-129.72109941299993,70.22955963700007],[-129.74014238199993,70.24339427300005],[-129.7285050119999,70.25617096600008],[-129.70128333199992,70.26577383000007],[-129.67393958199995,70.26992422100001],[-129.67393958199995,70.26373932500003],[-129.68016516799992,70.26373932500003],[-129.68016516799992,70.25690338700012],[-129.6603083979999,70.25800202000005],[-129.64850826699993,70.25153229400013],[-129.64586341099994,70.23908112200014],[-129.65347245999988,70.22211334800006],[-129.6402074859998,70.22308991100013],[-129.6270645819999,70.22162506700009],[-129.6150610019999,70.21698639500006],[-129.60509192599997,70.20848216400013],[-129.59732011599996,70.198228257],[-129.5920304029999,70.19546133000013],[-129.60997473899994,70.17601146000014],[-129.62022864499997,70.16958242400013],[-129.6329646479999,70.16754791900009],[-129.60289466099988,70.16229889500003],[-129.54405676999988,70.16762929900005],[-129.51573645699995,70.16132233300014],[-129.52310136599993,70.15387604400014],[-129.50544186099984,70.148138739],[-129.47004146999993,70.153306382],[-129.45490475199983,70.14704010600006],[-129.4727677069999,70.134670315],[-129.49034583199995,70.12665436400006],[-129.49941972599993,70.11774323100002],[-129.4918106759999,70.10236237200009],[-129.46816972599996,70.09076569200006],[-129.45107988199993,70.10496653899999],[-129.4364314439999,70.12579987200014],[-129.4200740229999,70.13397858300004],[-129.40648352799994,70.12116120000003],[-129.41152910099987,70.100572007],[-129.42593339799993,70.08022695500001],[-129.4405818349999,70.06826406500006],[-129.46344967399995,70.0568301450001],[-129.4748429029999,70.05292389500012],[-129.48867753799993,70.05145905200006],[-129.52354895699995,70.05194733300006],[-129.5421443349999,70.04987213700004],[-129.55728105399993,70.0440127620001],[-129.50934811099984,70.03644440300003],[-129.49522864499988,70.03034088700015],[-129.51602128799988,70.02106354400009],[-129.5635473299999,70.00958893400015],[-129.59976152299993,69.99119700700011],[-129.7100317049999,69.97256094000011],[-129.75511633999986,69.95595937700007],[-130.11066646999987,69.86908600500009],[-130.19473222599993,69.85968659100014],[-130.2687068349999,69.84031810100014],[-130.29775956899996,69.83856842700014],[-130.30138098899994,69.85028717700011],[-130.31920325399992,69.849025783],[-130.3416641919999,69.84096914300005],[-130.35924231699994,69.83234284100017],[-130.3957413399999,69.80792877800003],[-130.41413326699984,69.80036041900017],[-130.45230058499993,69.79657623900006],[-130.46174068899992,69.79328034100003],[-130.47020423099985,69.78803131700012],[-130.47899329299992,69.78050364800008],[-130.52708899599992,69.783880927],[-130.53547115799984,69.7807477890001],[-130.5525610019999,69.76666901200015],[-130.5711563789999,69.75958893400012],[-130.57176673099985,69.751410223],[-130.56794186099984,69.74408600499999],[-130.5646866529999,69.74298737200014],[-130.57201087099992,69.72516510600018],[-130.57921301999994,69.71442291900014],[-130.5911352199999,69.70770905200011],[-130.6705623039999,69.691880601],[-130.77086341099988,69.68451569200009],[-130.78966223899994,69.67755768400009],[-130.8041072259999,69.65525950700005],[-130.8357641269999,69.63214752800009],[-130.84581458199995,69.61945221600014],[-130.83836829299986,69.61261627800002],[-130.8467911449999,69.6061872420001],[-130.87315833199992,69.59955475500006],[-130.8977758449999,69.58722565300009],[-130.91661536399994,69.58022695500001],[-130.92813066299988,69.57074616100012],[-130.9411514959999,69.56590403900005],[-130.97569739499988,69.58478424700014],[-131.01244055899988,69.591945705],[-131.03018144399996,69.59955475500006],[-131.04116777299993,69.61009349200009],[-131.03986568899984,69.61652252800003],[-131.03551184799994,69.62274811400009],[-131.03766842399995,69.63312409100008],[-131.04796301999994,69.64374420800011],[-131.05760657499988,69.64264557500017],[-131.06916256399987,69.63666413000006],[-131.0857641269999,69.63312409100008],[-131.16592363199996,69.63617584800006],[-131.18472245999993,69.62970612200017],[-131.21955318899984,69.61005280200011],[-131.2600805329999,69.60358307500012],[-131.3455297519999,69.60578034100011],[-131.34186764199984,69.59967682500003],[-131.3351944649999,69.58380768400009],[-131.33185787699986,69.57786692900008],[-131.3939102859999,69.57786692900008],[-131.40241451699993,69.57990143400009],[-131.4121801419999,69.58930084800012],[-131.42125403599997,69.59210846600017],[-131.4414770169999,69.590318101],[-131.48257402299987,69.57599518400008],[-131.50316321499992,69.5716820330001],[-131.51374264199987,69.57221100500009],[-131.53380286399994,69.57680898600002],[-131.54409745999993,69.57786692900008],[-131.55406653599994,69.57689036699999],[-131.57168535099996,69.57257721600008],[-131.58259029899995,69.5716820330001],[-131.6682836579999,69.57786692900008],[-131.6625870429999,69.57208893400009],[-131.65640214799996,69.56370677300004],[-131.65257727799994,69.55402252800009],[-131.65396074099993,69.54433828300004],[-131.66344153599994,69.53579336100002],[-131.6734919909999,69.5396996110001],[-131.6955460279999,69.55805084800015],[-131.72704016799992,69.56834544500008],[-131.7594294909999,69.57001373900007],[-131.82530676999994,69.55805084800015],[-131.89415442599991,69.53685130400005],[-131.91706295499984,69.53485748900012],[-131.96080481699988,69.53823476800012],[-131.98355058499993,69.53685130400005],[-132.01305091099994,69.52753327000003],[-132.07852128799996,69.48224518400008],[-132.05516516799986,69.47426992400013],[-132.04678300699993,69.46503327000009],[-132.05451412699992,69.45746491100012],[-132.0964249339999,69.4506696640001],[-132.10606848899988,69.44183991100014],[-132.10545813699989,69.430853583],[-132.0921931629999,69.420843817],[-132.11782792899996,69.42104726800007],[-132.12950598899997,69.419134833],[-132.1406143869999,69.41400788],[-132.09097245999988,69.39459870000017],[-132.07852128799996,69.38605377800015],[-132.1143285799999,69.36147695500011],[-132.3346248039999,69.31574127800003],[-132.3466690749999,69.30756256700012],[-132.3405655589999,69.29629140800013],[-132.31533769399994,69.26727936400015],[-132.31187903599994,69.256333726],[-132.32485917899996,69.2492129580001],[-132.34337317599997,69.25739166900003],[-132.3599747389999,69.27277252800017],[-132.36709550699987,69.28705475500004],[-132.36969967399997,69.29401276200015],[-132.37555904899992,69.30190664300012],[-132.3821508449999,69.30829498900006],[-132.3870336579999,69.31098053600012],[-132.43480383999992,69.304144598],[-132.4422094389999,69.29328034100003],[-132.4413142569999,69.28290436400012],[-132.43724524599995,69.27041250200001],[-132.43480383999992,69.25291575700008],[-132.44668535099996,69.24697500200013],[-132.47004146999987,69.24274323100003],[-132.4861547519998,69.2359072940001],[-132.4763891269999,69.22215403899999],[-132.48273678299992,69.20669179900007],[-132.48648027299996,69.17401764500012],[-132.49746660099993,69.16014232000005],[-132.5049535799999,69.191880601],[-132.50723222599993,69.23090241100006],[-132.51642818899992,69.26715729400017],[-132.5446671209999,69.29047272300006],[-132.5605362619999,69.29311758000007],[-132.58218339799993,69.29385000200008],[-132.62035071499986,69.29047272300006],[-132.63215084499984,69.28461334800012],[-132.65680904899995,69.26691315300003],[-132.6685277989999,69.263128973],[-132.7191055979999,69.26251862200014],[-132.77122962099986,69.256333726],[-132.77204342399995,69.23615143400005],[-132.79645748599992,69.22907135600009],[-132.82701575399992,69.22357819200006],[-132.84630286399988,69.20856354400003],[-132.82579505099991,69.2043317730001],[-132.83348548099985,69.18756745000009],[-132.87051347599987,69.15053945500016],[-132.8815811839999,69.14427317900011],[-132.89655514199984,69.13849518400006],[-132.90794837099992,69.1308454450001],[-132.90835527299993,69.11920807500012],[-132.89525305899986,69.11196523600007],[-132.87279212099995,69.11054108300011],[-132.83263098899994,69.11298248900006],[-132.8470759759999,69.10553620000016],[-132.88084876199989,69.09369538000011],[-132.89411373599992,69.08502838700012],[-132.8998103509999,69.07636139500012],[-132.90835527299993,69.044094143],[-132.89781653599994,69.03522370000015],[-132.88906816299988,69.02094147300014],[-132.88320878799993,69.00527578300007],[-132.88109290299988,68.99225495000007],[-132.89199785099993,68.98273346600008],[-132.9136856759999,68.98590729400013],[-132.92931067599997,69.00006745000007],[-132.92202714799996,69.02362702000012],[-132.92967688699989,69.02773672100007],[-132.94933020699995,69.044094143],[-132.92910722599993,69.06273021],[-132.92341061099984,69.07322825700005],[-132.92886308499988,69.08161041900011],[-132.94318600199986,69.08242422100012],[-132.96841386599993,69.06293366100012],[-132.9841202459999,69.05776601800012],[-133.02257239499988,69.05516185100014],[-133.0380753249999,69.05776601800012],[-133.0842179029999,69.0725772160001],[-133.1007380849999,69.07200755400012],[-133.10456295499992,69.0690778670001],[-133.1067602199999,69.0639509140001],[-133.10830644399994,69.058294989],[-133.11042232999984,69.0539411480001],[-133.11913001199994,69.04975006700009],[-133.13145911399988,69.04889557500009],[-133.15510006399992,69.05027903900007],[-133.1690160799999,69.04913971600003],[-133.18708248599992,69.04515208500005],[-133.2027481759999,69.03790924700002],[-133.20938066299993,69.02667877800003],[-133.2105606759999,69.021226304],[-133.21548417899993,69.01312897300006],[-133.21686764199993,69.00934479400003],[-133.2148331369999,69.00372955900004],[-133.20506751199986,68.99188873900009],[-133.20323645699997,68.98883698100018],[-133.2108455069999,68.978461005],[-133.2208552729999,68.97455475499999],[-133.23379472599993,68.97264232000013],[-133.25035559799994,68.96832916900001],[-133.24071204299992,68.96173737200014],[-133.20938066299993,68.94790273600016],[-133.22842363199993,68.9209658870001],[-133.23672441299993,68.91376373900006],[-133.25133216099994,68.90680573100015],[-133.28331458199995,68.89931875200001],[-133.29873613199987,68.893255927],[-133.32184811099984,68.87494538000014],[-133.33543860599988,68.86762116100012],[-133.3539932929999,68.86591217700011],[-133.36847896999984,68.86847565300002],[-133.3829239569999,68.87384674700009],[-133.39468339799987,68.882025458],[-133.40123450399994,68.893255927],[-133.37584387899994,68.89533112200003],[-133.3609106109999,68.90363190300009],[-133.36290442599994,68.911810614],[-133.38817298099985,68.91376373900006],[-133.47012285099993,68.893255927],[-133.46231035099993,68.88165924700009],[-133.45368404899992,68.87181224200008],[-133.44294186099987,68.863959052],[-133.42853756399984,68.85846588700015],[-133.45531165299994,68.850531317],[-133.47911536399994,68.84935130400005],[-133.4913223949999,68.84251536700005],[-133.4831436839999,68.81753164300012],[-133.4697973299999,68.80239492400013],[-133.45103919199994,68.79116445500013],[-133.40859941299993,68.77655670800002],[-133.33975175699987,68.76288483300009],[-133.3276261059999,68.75726959800006],[-133.3164770169999,68.75043366100006],[-133.3040258449998,68.74481842700006],[-133.23521887899997,68.737738348],[-133.21149654899995,68.72955963700018],[-133.20938066299993,68.71507396000013],[-133.1740616529999,68.71515534100003],[-133.0657445949999,68.69399648600002],[-132.95787512899994,68.69944896000005],[-132.92202714799996,68.69399648600002],[-132.92202714799996,68.701402085],[-132.94684811099987,68.71417877800006],[-132.97435462099995,68.72028229400001],[-133.0380753249999,68.72199127800003],[-133.0039770169999,68.71507396000013],[-133.0039770169999,68.70766836100013],[-133.14891516799995,68.72382233300011],[-133.15249589799993,68.7286644550001],[-133.1539200509999,68.73517487200009],[-133.16222083199992,68.7424177100001],[-133.17662512899994,68.74843984600001],[-133.19123287699986,68.75267161700005],[-133.2066544259999,68.75527578300013],[-133.2233780589999,68.75604889500006],[-133.25617428299984,68.76386139500015],[-133.26183020699992,68.77936432500015],[-133.2507218089999,68.79108307500013],[-133.23330644399994,68.78709544500008],[-133.2154434889999,68.77521393400012],[-133.1924535799999,68.76679108300006],[-133.1668188139999,68.76251862200014],[-133.14049231699988,68.76288483300009],[-133.15672766799992,68.77562083500011],[-133.24351966099994,68.80048248900006],[-133.27183997299989,68.80508047100001],[-133.3304337229999,68.79458242400011],[-133.36025956899994,68.80390045800009],[-133.36025956899994,68.81126536699999],[-133.3548070949999,68.81220123900006],[-133.33975175699987,68.81753164300012],[-133.35106360599985,68.82754140800002],[-133.36123613199993,68.83356354400003],[-133.38817298099985,68.84544505400007],[-133.37010657499985,68.84926992400007],[-133.31309973899994,68.85228099199999],[-133.25674394399988,68.86497630400005],[-133.23672441299993,68.86591217700011],[-133.22044837099992,68.86359284100016],[-133.20470130099994,68.85871002800009],[-133.17528235599985,68.84544505400007],[-133.16974850199983,68.84121328300013],[-133.1603897779999,68.82953522300015],[-133.15477454299992,68.8249372420001],[-133.14537512899994,68.82233307500012],[-133.12441972599993,68.82127513200005],[-133.11384029899995,68.81753164300012],[-133.1206762359999,68.81126536699999],[-133.10753333199995,68.80585358300011],[-133.09390214799987,68.80369700700011],[-133.06541907499988,68.80390045800009],[-133.0701391269999,68.81366608300011],[-133.07286536399994,68.81753164300012],[-133.0371801419999,68.82575104400003],[-132.9607641269999,68.80337148600002],[-132.92886308499988,68.80390045800009],[-132.9533585279999,68.8283552100001],[-132.96397864499994,68.84467194200015],[-132.96300208199997,68.85846588700015],[-132.94029700399994,68.86326732000005],[-132.9024552069999,68.85748932500016],[-132.86485755099986,68.84625885600018],[-132.82262122299994,68.8233096370001],[-132.76988684799994,68.81321849200013],[-132.72569739499986,68.79071686400012],[-132.70946204299995,68.79657623900009],[-132.71129309799994,68.81049225500006],[-132.7438858709999,68.8249372420001],[-132.7438858709999,68.83120351800005],[-132.7053930329999,68.83698151200002],[-132.51423092399995,68.80532461100013],[-132.4832250639999,68.80540599200013],[-132.4695531889999,68.81439850500006],[-132.46715247299994,68.83071523600007],[-132.4590958319999,68.83759186400009],[-132.44420325399994,68.83901601800015],[-132.4211319649999,68.83860911700005],[-132.41421464799987,68.84296295800014],[-132.40811113199987,68.84544505400007],[-132.3994034499999,68.85504791900014],[-132.39622962099992,68.85952383000001],[-132.39386959499987,68.86591217700011],[-132.49380449099993,68.90591054900007],[-132.5502009759999,68.92011139500009],[-132.57941646999984,68.90692780200014],[-132.48379472599987,68.88580963700004],[-132.5107315749999,68.87799713700004],[-132.53673255099994,68.88060130400014],[-132.58560136599993,68.893255927],[-132.60171464799987,68.89394765800013],[-132.61998450399994,68.8919945330001],[-132.63825436099984,68.88703034100014],[-132.65453040299985,68.8789737000001],[-132.64488684799989,68.85883209800006],[-132.6760147779999,68.84857819200015],[-132.72044837099992,68.84516022300012],[-132.76793372299989,68.8471133480001],[-132.78453528599988,68.85101959800006],[-132.79108639199987,68.85895416900006],[-132.77806555899988,68.87274811400013],[-132.76121985599988,68.87693919499999],[-132.74307206899996,68.87457916900001],[-132.72533118399988,68.87457916900001],[-132.7097875639999,68.88580963700004],[-132.73839270699995,68.88792552300013],[-132.7797745429999,68.8959007830001],[-132.8168839179999,68.90766022300006],[-132.83263098899994,68.92112864800005],[-132.81090247299997,68.93732330900009],[-132.7628067699999,68.93707916900014],[-132.67564856699994,68.92739492400001],[-132.69969641799992,68.94546133000001],[-132.74038652299987,68.960679429],[-132.78465735599985,68.97117747600008],[-132.81932532499988,68.97516510600006],[-132.84984290299982,68.9857852230001],[-132.86465410099993,69.00922272300005],[-132.85863196499992,69.03290436400009],[-132.8264867829999,69.044094143],[-132.8340551419999,69.05463288000006],[-132.84496008999992,69.058335679],[-132.87364661399994,69.05776601800012],[-132.86217200399992,69.07330963700004],[-132.83897864499994,69.08319733300014],[-132.79165605399993,69.09186432500003],[-132.6613663399999,69.09186432500003],[-132.64492753799988,69.09642161699998],[-132.5787654289999,69.12970612200009],[-132.55296790299985,69.13686758000004],[-132.50755774599986,69.13861725500011],[-132.48379472599987,69.14712148600013],[-132.4677628249999,69.15753815300003],[-132.45278886599993,69.17072174700007],[-132.4489639959999,69.17910390800013],[-132.45059160099996,69.18732330900006],[-132.45433508999992,69.19330475500006],[-132.45653235599985,69.19489166900007],[-132.44786536399988,69.20966217700008],[-132.43130449099993,69.22825755400008],[-132.41527258999992,69.23786041900014],[-132.40811113199987,69.22565338700018],[-132.42007402299993,69.17426178600006],[-132.4248754549999,69.16351959800005],[-132.42747962099992,69.16054922100012],[-132.42857825399994,69.157660223],[-132.42857825399994,69.15053945500016],[-132.43106035099987,69.14288971600003],[-132.43687903599994,69.141302802],[-132.44371497299994,69.14158763200012],[-132.4490860669999,69.139634507],[-132.4572647779999,69.1322695980001],[-132.46361243399994,69.12783437700001],[-132.46788489499994,69.12262604400001],[-132.4695531889999,69.11298248900006],[-132.4037979809999,69.13165924700002],[-132.37279212099986,69.14931875200013],[-132.3596899079999,69.17755768400009],[-132.3579809239999,69.187974351],[-132.34821529899995,69.2169457050001],[-132.34292558499988,69.22565338700018],[-132.32697506399987,69.23371002800012],[-132.30772864499994,69.23623281500012],[-132.29499264199987,69.23078034100008],[-132.29824785099993,69.21539948100015],[-132.2957657539999,69.20538971600016],[-132.30907141799992,69.19904205900004],[-132.32909094999988,69.195705471],[-132.3466690749999,69.19489166900007],[-132.30089270699986,69.18195221600008],[-132.28457597599987,69.180609442],[-132.27660071499992,69.18402741100003],[-132.25047766799986,69.20856354400003],[-132.2405492829999,69.21328359600011],[-132.22679602799982,69.21767812700004],[-132.21296139199984,69.22003815300017],[-132.20262610599994,69.21881745000013],[-132.19579016799992,69.21124909100011],[-132.20006262899994,69.20351797100001],[-132.21629798099988,69.18805573100018],[-132.2350968089999,69.15908437700006],[-132.2361547519999,69.1481387390001],[-132.21629798099988,69.15395742400007],[-132.20445716099994,69.16474030200008],[-132.16787675699987,69.21539948100015],[-132.1749161449999,69.22597890800002],[-132.1755264959999,69.23387278899999],[-132.17076575399992,69.24030182500007],[-132.16136633999992,69.24607982000005],[-132.15347245999993,69.24896881700009],[-132.1445206369999,69.25039297100015],[-132.13540605399987,69.25043366100014],[-132.12694251199986,69.24949778900007],[-132.12157141799992,69.24664948100012],[-132.12083899599986,69.24213288000006],[-132.12144934799994,69.23777903899999],[-132.12010657499994,69.23525625200016],[-132.08820553299992,69.23371002800012],[-132.0312393869999,69.25446198100012],[-131.9997859369999,69.25617096600003],[-131.98493404899992,69.25556061400005],[-131.9658910799998,69.2592634140001],[-131.9538468089999,69.2682966170001],[-131.9556371739999,69.28367747600005],[-131.9370824859999,69.28831614799999],[-131.90510006399987,69.31386953300016],[-131.88052324099988,69.31842682500012],[-131.89427649599992,69.30487702000015],[-131.90933183499993,69.29462311400012],[-131.91344153599994,69.28754303600006],[-131.89415442599991,69.28367747600005],[-131.8804418609999,69.28465403900013],[-131.87193762899997,69.28864166900009],[-131.86595618399986,69.29376862200012],[-131.85944576699987,69.29791901200015],[-131.82530676999994,69.31098053600012],[-131.80809485599994,69.32037995000015],[-131.75792395699995,69.37132396000004],[-131.71544348899985,69.40033600500006],[-131.73033606699994,69.40444570500001],[-131.75055904899995,69.40224844],[-131.84642493399988,69.37775299700017],[-131.8563126289999,69.3764102230001],[-131.85903886599993,69.38344961100016],[-131.85488847599993,69.39435455900004],[-131.85944576699987,69.40033600500006],[-131.86652584499993,69.4035098330001],[-131.8938695949999,69.4108747420001],[-131.91478430899986,69.41258372600011],[-131.95555579299992,69.39948151200005],[-131.9767146479999,69.40778229400003],[-131.91124426999997,69.42812734600004],[-131.8731583319999,69.43353913000006],[-131.84577389199993,69.42829010600018],[-131.8531794909999,69.420843817],[-131.83104407499994,69.42161692900011],[-131.7866104809999,69.43195221600003],[-131.7635391919999,69.43451569200015],[-131.6471248039999,69.42829010600018],[-131.67674719999994,69.44879791900003],[-131.67357337099986,69.46369049700009],[-131.64867102799994,69.47296784100013],[-131.61302649599986,69.47606028900013],[-131.5952042309999,69.47431061400012],[-131.54409745999993,69.46181875200004],[-131.47594153599994,69.45718008000009],[-131.4553930329999,69.45123932500017],[-131.42756100199992,69.43512604400007],[-131.43895423099988,69.42885976800015],[-131.46715247299994,69.42108795800006],[-131.4894913399999,69.40033600500006],[-131.48957271999987,69.39004140800013],[-131.48094641799986,69.37006256700006],[-131.48265540299982,69.35936107000013],[-131.4919327459999,69.35236237200014],[-131.50788326699993,69.346136786],[-131.5379125639999,69.33893463700015],[-131.5148819649999,69.33592357000005],[-131.4764705069999,69.3443871110001],[-131.43785559799994,69.35858795800011],[-131.41437740799986,69.37299225500009],[-131.40306555899988,69.39691803600014],[-131.4021703769999,69.41412995000015],[-131.39370683499993,69.42275625200007],[-131.3597305979999,69.420843817],[-131.38023841099997,69.45433177300005],[-131.36742102799988,69.455023505],[-131.35488847599993,69.4541690120001],[-131.3429255849999,69.45184967700011],[-131.33185787699986,69.44814687700008],[-131.33185787699986,69.45433177300005],[-131.33922278599994,69.46230703300002],[-131.3394262359999,69.47020091399999],[-131.3350723949999,69.47821686400012],[-131.32872473899988,69.48602936400012],[-131.31704667899987,69.49380117400003],[-131.30858313699994,69.48932526200015],[-131.30166581899994,69.48069896000005],[-131.29458574099988,69.47606028900013],[-131.26085364499988,69.42108795800006],[-131.24372311099987,69.40778229400003],[-131.2482804029999,69.42926666900014],[-131.27090410099996,69.48566315300009],[-131.27379309799989,69.49933502800003],[-131.25206458199995,69.50385163],[-131.23395748599992,69.48305898600002],[-131.22130286399994,69.45408763200011],[-131.2093399729999,69.40949127800003],[-131.2111710279999,69.39842357],[-131.2219945949999,69.38605377800015],[-131.23631751199986,69.38080475500009],[-131.3194473949999,69.36261627800016],[-131.3594457669999,69.33515045800014],[-131.39411373599987,69.32339101800007],[-131.40746008999986,69.31476471600014],[-131.41437740799986,69.29791901200015],[-131.39317786399997,69.30658600500006],[-131.34780839799984,69.31708405200011],[-131.32559160099993,69.32526276200004],[-131.27989661399988,69.35830312700007],[-131.26292883999992,69.36619700700005],[-131.2385961579998,69.36994049700009],[-131.2185766269999,69.36985911700009],[-131.20018469999994,69.3729515650001],[-131.18101966099997,69.38605377800015],[-131.17638098899994,69.38800690300009],[-131.17105058499985,69.387640692],[-131.16576087099992,69.3883731140001],[-131.16112219999988,69.39354075700011],[-131.1622208319999,69.39549388200008],[-131.16494706899988,69.39899323100015],[-131.16738847599993,69.40338776200004],[-131.16734778599994,69.40778229400003],[-131.1643774079999,69.41575755399998],[-131.16405188699989,69.42080312700001],[-131.16734778599994,69.42829010600018],[-131.16201738199996,69.43276601800014],[-131.15269934799994,69.44367096600003],[-131.1475317049999,69.44814687700008],[-131.16104081899988,69.45506419499999],[-131.16738847599993,69.4675153670001],[-131.16714433499988,69.48224518400008],[-131.16112219999988,69.49591705900004],[-131.23249264199987,69.54189687700008],[-131.24815833199995,69.56761302300005],[-131.25544186099984,69.5756289730001],[-131.2567439439999,69.58242422100001],[-131.2430720689999,69.58535390800013],[-131.22972571499992,69.58258698100018],[-131.22179114499994,69.5758731140001],[-131.2083227199998,69.55805084800015],[-131.19920813699986,69.55166250200013],[-131.16734778599994,69.53685130400005],[-131.16470292899993,69.53510163000004],[-131.1627498039999,69.5327009140001],[-131.16152910099984,69.52993398600016],[-131.16112219999988,69.52700429900013],[-131.15876217399992,69.522447007],[-131.15294348899997,69.522447007],[-131.14598548099988,69.52374909100008],[-131.14004472599993,69.52326080900009],[-131.13023841099994,69.520656643],[-131.12149003799993,69.52000560100005],[-131.1151423819999,69.516750393],[-131.11270097599987,69.50617096600014],[-131.12059485599985,69.46010976800004],[-131.12535559799994,69.4506696640001],[-131.12637285099993,69.44472890800007],[-131.1238907539999,69.438177802],[-131.11384029899992,69.42820872600002],[-131.11270097599987,69.420843817],[-131.11937415299994,69.40949127800003],[-131.14118404899995,69.39598216400007],[-131.1475317049999,69.38605377800015],[-131.1466365229999,69.37164948100009],[-131.13805091099988,69.36977773600002],[-131.12633216099994,69.37523021000005],[-131.11611894399988,69.38296133000007],[-131.10798092399995,69.39118073100013],[-131.08910071499994,69.41498444200006],[-131.08543860599988,69.42454661700005],[-131.0840551419999,69.43846263200011],[-131.0805557929999,69.4464378930001],[-131.0761612619999,69.45270416900003],[-131.0629776679999,69.48090241099999],[-131.06175696499986,69.48908112200012],[-131.06883704299992,69.51439036700005],[-131.07437089799993,69.52545807500009],[-131.08291581899996,69.533636786],[-131.09601803299984,69.53685130400005],[-131.10680091099994,69.54120514500013],[-131.12840735599994,69.55996328300002],[-131.1406957669999,69.56419505400014],[-131.15562903599994,69.56590403900005],[-131.1734919909999,69.57103099200003],[-131.18838456899996,69.57973867400013],[-131.1946915359999,69.59210846600017],[-131.1833389959999,69.60687897300015],[-131.15721594999988,69.616644598],[-131.12779700399997,69.62103913000009],[-131.10651607999986,69.61945221600014],[-131.09288489499994,69.610500393],[-131.08653723899994,69.59784577000015],[-131.09024003799988,69.58563873900006],[-131.10651607999986,69.57786692900008],[-131.07774817599994,69.55634186400015],[-131.0521541009999,69.53095123900012],[-131.03473873599992,69.49994538],[-131.03018144399996,69.46181875200004],[-131.03453528599997,69.44261302300006],[-131.04344641799992,69.42352936400009],[-131.05524654899995,69.40566640800002],[-131.0683487619999,69.3897972680001],[-131.07266191299993,69.382025458],[-131.07624264199987,69.36481354400017],[-131.08202063699989,69.3559431010001],[-131.1117244129999,69.33519114800013],[-131.1195369129999,69.32526276200004],[-131.0966690749999,69.33234284100008],[-131.06696529899995,69.34808991100014],[-131.04112708199995,69.36684804900001],[-131.03018144399996,69.38296133000007],[-131.02476966099994,69.40228912999999],[-130.97496497299994,69.47211334800012],[-130.9705297519999,69.47528717700003],[-130.9704483709999,69.47870514500003],[-130.9755753249999,69.48969147300006],[-130.99071204299992,69.50751373900015],[-130.9971817699999,69.51837799700003],[-130.9929093089999,69.52326080900009],[-130.9890030589999,69.5292829450001],[-130.9860733709999,69.54140859600001],[-130.97887122299994,69.550523179],[-130.96190344999988,69.54779694200012],[-130.94774329299995,69.53888580900009],[-130.9449356759999,69.531927802],[-130.94713294199988,69.5233421900001],[-130.94823157499994,69.50958893400015],[-130.94640051999994,69.49323151200015],[-130.93643144399996,69.45917389500012],[-130.9350479809999,69.45050690300003],[-130.9345596999999,69.43793366100006],[-130.93883216099994,69.4243024760001],[-130.94823157499994,69.41632721600014],[-130.95763098899997,69.41063060100008],[-130.96190344999988,69.40412018400018],[-130.96727454299992,69.40062083499998],[-130.99665279899995,69.36619700700005],[-131.00987708199997,69.3617210960001],[-131.0266820949999,69.35830312700007],[-131.0421443349999,69.35199616100014],[-131.05125891799992,69.33893463700015],[-131.0468643869999,69.32859935100005],[-131.0350235669999,69.31635162999999],[-131.0227758449999,69.30923086100013],[-131.0171606109999,69.31468333500008],[-131.00755774599992,69.33380768400006],[-130.9846085279999,69.35809967700011],[-130.95726477799985,69.3803164730001],[-130.9345596999999,69.39354075700011],[-130.91128495999988,69.39622630400002],[-130.90086829299992,69.38564687700016],[-130.9004613919999,69.36684804900001],[-130.90729732999992,69.34511953300012],[-130.9185684889999,69.32648346600014],[-130.9336645169999,69.31061432500012],[-130.99217688699986,69.27098216399999],[-130.99437415299985,69.25934479400009],[-130.99152584499993,69.24778880400005],[-130.99974524599992,69.23212311400009],[-131.0179744129999,69.21674225500014],[-131.0261938139999,69.20600006700012],[-131.02057857999986,69.20111725500004],[-131.00804602799988,69.19757721600017],[-131.00694739499994,69.18943919500005],[-131.01349850199983,69.18048737200003],[-131.0239965489999,69.174465236],[-131.0171606109999,69.15200429900003],[-131.01187089799993,69.14508698100003],[-131.0028376939999,69.139634507],[-130.9929093089999,69.13837311400009],[-130.98375403599994,69.14118073100003],[-130.9755753249999,69.14508698100003],[-130.9687393869999,69.14712148600013],[-130.95848548099985,69.14569733300009],[-130.93883216099994,69.14012278899999],[-130.92780514199987,69.139634507],[-130.95164954299995,69.16518789300005],[-130.9541723299999,69.17877838700002],[-130.93830318899984,69.19798411699999],[-130.9315486319999,69.21369049700014],[-130.93944251199989,69.23065827000012],[-130.95091712099992,69.2475446640001],[-130.95506751199986,69.263128973],[-130.94513912699986,69.27667877800015],[-130.86986243399988,69.32697174700003],[-130.81932532499988,69.33852773600016],[-130.79743404899995,69.35252513200011],[-130.8096817699999,69.35976797100012],[-130.8221329419999,69.37103913000011],[-130.8256729809999,69.381537177],[-130.81139075399992,69.38605377800015],[-130.79230709499993,69.38886139499999],[-130.7658585279999,69.40253327000015],[-130.75023352799985,69.40778229400003],[-130.68683834499993,69.41828034100008],[-130.6614884109999,69.43268463700015],[-130.64659583199992,69.46181875200004],[-130.67223059799989,69.46230703300002],[-130.75023352799985,69.45433177300005],[-130.53477942599994,69.54230377800009],[-130.50633704299992,69.56110260600006],[-130.49307206899994,69.56769440300003],[-130.45738684799994,69.57916901200015],[-130.44737708199995,69.58535390800013],[-130.44603430899986,69.595933335],[-130.45335852799985,69.60301341400005],[-130.45856686099987,69.61058177299998],[-130.45107988199987,69.62287018400015],[-130.43814042899987,69.63056061400006],[-130.40636145699995,69.64032623900003],[-130.3927302729999,69.64671458500013],[-130.37999426999994,69.65851471600011],[-130.37092037699983,69.6693382830001],[-130.3589981759999,69.67755768400009],[-130.33812415299994,69.68154531500006],[-130.33812415299994,69.68773021000014],[-130.3489884109999,69.68691640800012],[-130.35952714799987,69.68773021000014],[-130.3698624339999,69.69033437700013],[-130.3797094389999,69.69452545800006],[-130.33824622299989,69.70229726800007],[-130.1671443349999,69.71173737200009],[-129.95523027299993,69.75421784100014],[-129.89989173099983,69.75600820500013],[-129.70197506399987,69.78904857],[-129.60509192599997,69.824896552],[-129.58141028599994,69.82697174700003],[-129.50885982999984,69.824896552],[-129.45181230399993,69.83673737200014],[-129.12291419199994,69.85610586100007],[-129.08462480399993,69.86957428600006],[-129.04356848899994,69.88987864800005],[-129.02969316299993,69.90062083500008],[-129.01935787699983,69.91120026200004],[-128.99551347599993,69.94220612200014],[-128.9654434889999,69.9645042990001],[-128.9253637359999,69.97760651200015],[-128.88605709499987,69.97626373900006],[-128.85838782499988,69.95526764500012],[-128.8907364569999,69.97052643400009],[-128.89834550699993,69.95709870000009],[-128.8997289699999,69.93158600500003],[-128.9129939439999,69.9108747420001],[-128.94399980399996,69.901800848],[-128.95791581899994,69.89411041900009],[-128.9576716789999,69.883246161],[-128.9429825509999,69.86546458500011],[-128.93773352799988,69.856878973],[-128.93285071499994,69.84540436400005],[-129.1140030589999,69.84772370000012],[-129.1736954419999,69.83234284100017],[-129.1327205069999,69.77708567900005],[-129.1353246739999,69.76825592700003],[-129.13683020699995,69.75824616100012],[-129.1404516269999,69.7465274110001],[-129.15855872299989,69.71482982000006],[-129.15363521999984,69.7035179710001],[-129.13906816299993,69.69708893400018],[-129.11904863199996,69.69452545800006],[-129.04255123599987,69.69293854400003],[-128.99413001199986,69.67938873900006],[-128.96784420499986,69.6791852890001],[-128.94151770699995,69.68244049700014],[-128.91982988199996,69.68773021000014],[-128.95872962099986,69.70644765800002],[-128.97468014199987,69.71922435100004],[-128.9676407539999,69.7324079450001],[-128.9408259759999,69.74298737200014],[-128.9120987619999,69.74811432500015],[-128.82925370999993,69.75202057500015],[-128.80329342399995,69.75836823100009],[-128.7783096999999,69.76805247600005],[-128.73839270699992,69.79409414300011],[-128.69579016799992,69.80939362200009],[-128.64028886599993,69.84857819200012],[-128.60045325399997,69.86933014500003],[-128.4263809889999,69.93475983300009],[-128.3362930979999,69.95038483300006],[-128.3103735019999,69.96271393400009],[-128.3199356759999,69.96808502800015],[-128.32396399599986,69.96954987200003],[-128.32103430899994,69.97406647300006],[-128.3185929029999,69.97931549700013],[-128.31533769399994,69.98468659100003],[-128.3103735019999,69.98940664300012],[-128.31265214799987,69.99896881700003],[-128.3134659499999,70.01561107000008],[-128.31712805899994,70.024115302],[-128.32481848899994,70.02924225500003],[-128.33653723899994,70.03388092700014],[-128.3472387359999,70.03961823100009],[-128.35191809799989,70.04775625200004],[-128.35684160099993,70.06293366100003],[-128.36583411399997,70.07949453300007],[-128.37022864499994,70.09739817900014],[-128.36148027299987,70.1166445980001],[-128.3372289699999,70.12982819200012],[-128.26992753799996,70.14081452000009],[-128.2429906889999,70.15078359600007],[-128.22679602799994,70.15888092700003],[-128.20775305899986,70.1640078800001],[-128.1694229809999,70.16754791900009],[-128.15489661399988,70.17055898600002],[-128.12547766799992,70.18451569200006],[-128.11107337099992,70.18866608300011],[-127.9928279289999,70.18146393400018],[-127.92096920499992,70.20392487200009],[-127.8863826159999,70.20905182500009],[-127.8168839179999,70.20848216400013],[-127.58682206899995,70.23769765800007],[-127.51520748599994,70.22211334800006],[-127.5446671209999,70.24046458500011],[-127.58202063699986,70.250921942],[-127.74315344999988,70.26186758000007],[-127.87222245999989,70.27179596600017],[-128.03237870999993,70.29368724200009],[-128.0605362619999,70.30638255400008],[-128.06387285099993,70.32514069200012],[-128.07990475199983,70.33144765800007],[-128.09284420499984,70.34153880400014],[-128.10313880099994,70.35394928600006],[-128.11107337099992,70.36676666900007],[-128.08311926999988,70.367580471],[-128.0065811839999,70.35761139500003],[-127.98078365799988,70.34943268400009],[-127.95840410099996,70.34821198100009],[-127.92829342399992,70.38572825700011],[-127.90623938699993,70.39411041900017],[-127.94220943899991,70.40184153899999],[-128.06330318899987,70.37978750200007],[-128.14073645699992,70.37466054900007],[-128.1782120429999,70.37995026200004],[-128.20051021999993,70.40086497600011],[-128.19591223899988,70.44696686400012],[-128.1634415359999,70.49551015800002],[-128.1185196609999,70.53607819200003],[-128.07697506399992,70.55853913000011],[-128.0092667309999,70.57904694200006],[-128.0074763659999,70.58193594],[-128.00820878799993,70.58588288],[-128.0076391269999,70.58978913],[-128.00182044199988,70.592718817],[-127.99152584499988,70.59292226800007],[-127.97850501199991,70.59076569200005],[-127.9659724599999,70.58685944200006],[-127.92829342399992,70.56708405200014],[-127.69839433499993,70.50018952000012],[-127.44517981699993,70.40591054900013],[-127.23082434799993,70.30988190300015],[-127.1917211579999,70.28221263200005],[-127.13646399599986,70.25287506700006],[-127.12482662699986,70.24017975499999],[-127.11587480399994,70.22516510600015],[-127.0558975899999,70.18121979400003],[-126.99079342399996,70.10952383000013],[-126.9289444649999,70.06443919500008],[-126.9125056629999,70.0440127620001],[-126.89940344999994,70.02358633000001],[-126.89293372299993,70.01691315300015],[-126.88463294199995,70.01048411700005],[-126.86676998599991,70.001654364],[-126.8286840489999,69.99298737200009],[-126.79991614499995,69.98314036699999],[-126.7833145819999,69.98012929900007],[-126.77476966099987,69.97573476800008],[-126.79523678299985,69.97573476800008],[-126.79165605399987,69.95026276200018],[-126.78579667899992,69.94159577],[-126.76854407499991,69.93475983300009],[-126.79784094999985,69.92206452],[-126.8101700509999,69.91185130400008],[-126.80577551999991,69.89862702000012],[-126.77135169199997,69.86098867400013],[-126.7280167309999,69.80198802300002],[-126.72004146999986,69.78583405200014],[-126.71328691299989,69.77708567900005],[-126.70177161399988,69.76740143400009],[-126.67837480399989,69.75381094000015],[-126.64606686099987,69.72968170800011],[-126.27513587099989,69.54857005400004],[-126.25772050699993,69.53375885600018],[-126.24522864499991,69.52533600500011],[-126.22736568899987,69.51752350500011],[-126.20832271999986,69.51178620000015],[-126.1739802729999,69.5069033870001],[-126.15941321499987,69.50018952000015],[-126.13170325399989,69.48224518400008],[-125.93862870999989,69.41400788],[-125.80833899599993,69.38605377800015],[-125.77725175699993,69.38654205900004],[-125.71446692599996,69.39423248900006],[-125.68541419199988,69.39354075700011],[-125.67503821499989,69.3906110700001],[-125.67015540299991,69.3867048200001],[-125.66612708199993,69.381984768],[-125.65811113199989,69.3764102230001],[-125.64525305899987,69.37311432500013],[-125.61034094999987,69.37299225500009],[-125.60472571499986,69.36884186400013],[-125.59837805899991,69.36188385600015],[-125.59361731699993,69.35541413000004],[-125.59264075399994,69.35252513200011],[-125.44884192599991,69.31915924700003],[-125.42471269399992,69.31842682500012],[-125.41295325399994,69.32290273600007],[-125.3789770169999,69.34292226800012],[-125.37010657499985,69.35252513200011],[-125.3789770169999,69.35529205900018],[-125.39745032499991,69.36619700700005],[-125.39061438699991,69.37299225500009],[-125.41201738199995,69.3803164730001],[-125.45449785099991,69.38690827000006],[-125.4731339179999,69.40033600500006],[-125.46690833199995,69.40770091400003],[-125.45954342399995,69.41400788],[-125.43024654899993,69.39899323100015],[-125.16124426999988,69.38605377800015],[-125.14476477799991,69.38996002800015],[-125.13451087099988,69.3993187520001],[-125.1266169909999,69.41079336100013],[-125.11685136599995,69.420843817],[-125.12385006399984,69.42340729400011],[-125.13609778599991,69.43109772300012],[-125.14354407499988,69.43451569200015],[-125.13166256399983,69.443793036],[-125.0889786449999,69.45433177300005],[-125.15099036399995,69.45433177300005],[-125.15099036399995,69.46181875200004],[-125.14098059799989,69.46137116100012],[-125.1326798169999,69.46246979400017],[-125.12498938699987,69.4649925800001],[-125.11685136599995,69.46865469000012],[-125.22411048099993,69.46841054900001],[-125.25340735599987,69.46181875200004],[-125.24722245999988,69.44814687700008],[-125.26154537699986,69.44757721600003],[-125.2752986319999,69.44887929900001],[-125.30186926999993,69.45433177300005],[-125.2986547519999,69.45856354400017],[-125.2968643869999,69.46214427300005],[-125.29405676999994,69.46548086100007],[-125.28819739499991,69.46865469000012],[-125.30361894399995,69.47394440300012],[-125.46568762899993,69.45433177300005],[-125.54206295499986,69.43451569200015],[-125.57713782499985,69.43537018400004],[-125.58608964799987,69.43134186400009],[-125.59430904899996,69.4252383480001],[-125.60362708199993,69.42153554900013],[-125.61367753799989,69.42007070500007],[-125.62401282499988,69.420843817],[-125.61461341099997,69.43231842700006],[-125.58824622299997,69.45001862200014],[-125.5755509109999,69.46181875200004],[-125.57876542899987,69.465765692],[-125.58023027299993,69.46914297100012],[-125.58128821499987,69.47239817900008],[-125.58299719999988,69.47606028900013],[-125.54165605399994,69.48016998900009],[-125.50047766799989,69.47606028900013],[-125.50047766799989,69.48224518400008],[-125.51130123599988,69.48798248900006],[-125.51256262899987,69.49233633000016],[-125.5076798169999,69.49677155200014],[-125.4839574859999,69.51365794500013],[-125.46865800699993,69.51496002800003],[-125.43529212099986,69.50958893400015],[-125.30870520699995,69.50275299700014],[-125.30870520699995,69.50958893400015],[-125.31574459499983,69.51264069200005],[-125.32852128799988,69.52045319200006],[-125.33600826699985,69.52326080900009],[-125.31651770699993,69.52753327000003],[-125.29238847599994,69.52130768400015],[-125.24722245999988,69.50275299700014],[-125.18272864499991,69.49188873900006],[-125.11685136599995,69.48969147300006],[-125.15347245999989,69.50470612200009],[-125.24079342399997,69.5175641950001],[-125.27452551999997,69.53685130400005],[-125.26768958199995,69.54433828300004],[-125.28677324099993,69.55084870000003],[-125.29434160099989,69.55117422100012],[-125.29434160099989,69.55805084800015],[-125.28477942599989,69.55817291900001],[-125.27375240799986,69.56077708500011],[-125.26463782499985,69.56622955900015],[-125.26085364499993,69.57477448100018],[-125.21930904899993,69.58535390800013],[-125.24705969999992,69.59503815300009],[-125.41588294199995,69.603216864],[-125.43838456899994,69.61261627800002],[-125.40221106699993,69.611070054],[-125.38634192599989,69.61473216400005],[-125.37694251199987,69.62628815300015],[-125.39468339799986,69.627386786],[-125.39867102799984,69.62929922100007],[-125.39745032499991,69.63312409100008],[-125.40469316299995,69.6338565120001],[-125.40973873599988,69.635199286],[-125.41392981699991,69.6373558610001],[-125.41856848899994,69.64057038000006],[-125.38198808499989,69.68475983300011],[-125.37010657499985,69.69452545800006],[-125.33726966099995,69.70278554900015],[-125.2657364569999,69.69415924700014],[-125.23355058499993,69.69452545800006],[-125.14354407499988,69.72866445500007],[-125.1296280589999,69.72955963700015],[-125.10216223899995,69.72711823100003],[-125.0889786449999,69.72866445500007],[-125.08405514199987,69.73216380400005],[-125.08462480399992,69.73696523600013],[-125.08657792899987,69.741888739],[-125.08584550699992,69.74640534100013],[-125.07843990799985,69.75006745000012],[-125.06798255099997,69.7509626320001],[-125.03229732999982,69.74725983300006],[-124.9701228509999,69.7332217470001],[-124.96764075399989,69.72601959800008],[-124.96857662699986,69.71710846600014],[-124.96605383999986,69.70880768400013],[-124.95392818899988,69.69554271000014],[-124.94786536399997,69.6869977890001],[-124.94570878799986,69.67829010600003],[-124.94554602799991,69.66445547100012],[-124.93691972599989,69.64996979400009],[-124.9170629549999,69.65326569200012],[-124.89513098899988,69.66551341399999],[-124.88003495999986,69.67780182500003],[-124.86620032499987,69.69940827000012],[-124.86156165299984,69.71320221600014],[-124.85163326699984,69.71857330900009],[-124.82201087099992,69.7150332700001],[-124.87242591099992,69.740668036],[-124.9260961579999,69.75259023600013],[-125.07697506399988,69.75942617400014],[-125.14024817599994,69.77415599200005],[-125.1714981759999,69.77708567900005],[-125.2212621739999,69.76805247600005],[-125.23989824099988,69.77106354400014],[-125.26085364499993,69.790757554],[-125.25340735599987,69.79759349200009],[-125.26585852799988,69.80768463700018],[-125.27196204299986,69.81045156500011],[-125.28136145699989,69.81122467700006],[-125.21930904899993,69.84540436400005],[-125.20250403599994,69.8520368510001],[-125.18053137899992,69.857326565],[-125.16600501199987,69.85488515800016],[-125.1714981759999,69.83856842700014],[-125.16397050699995,69.82636139500006],[-125.16893469999991,69.80206940300017],[-125.15782630099989,69.79759349200009],[-125.07530676999988,69.79759349200009],[-125.06460527299996,69.79938385600009],[-125.06163489499994,69.80121491100009],[-125.06212317599994,69.80292389500009],[-125.06163489499994,69.80438873900015],[-125.03091386599995,69.82176341400013],[-125.02367102799991,69.83173248900012],[-125.01988684799991,69.84418366100012],[-125.0207413399999,69.85651276200018],[-125.02749589799994,69.86587148600002],[-124.9766739569999,69.88666413],[-124.93122311099992,69.92527903900007],[-124.91510982999985,69.93512604400009],[-124.89712480399992,69.94220612200014],[-124.70791581899991,69.97504303600006],[-124.69542395699989,69.9794375670001],[-124.68175208199995,69.97296784100003],[-124.65973873599985,69.97036367400013],[-124.63931230399989,69.97394440300009],[-124.63023841099988,69.98627350500006],[-124.63609778599991,69.99835846600014],[-124.65050208199989,70.0111351580001],[-124.66832434799994,70.02094147300012],[-124.68488521999984,70.024115302],[-124.7036026679999,70.01691315300015],[-124.72398841099987,69.98769765800002],[-124.74010169199997,69.97573476800008],[-124.76593990799988,69.97223541900009],[-124.8003637359999,69.97455475500006],[-124.8336482409999,69.980943101],[-124.85619055899987,69.98940664300012],[-124.82664954299992,70.001695054],[-124.7947485019999,70.01048411700005],[-124.81407630099994,70.01585521000003],[-124.90294348899997,70.01609935100005],[-124.9114477199999,70.01361725500011],[-124.91690019399994,70.00885651200002],[-124.91978919199998,70.00307851800005],[-124.92349199099989,69.99823639500009],[-124.93154863199996,69.99624258000013],[-124.94713294199994,69.99860260600009],[-124.97423255099996,70.00877513200005],[-124.99274654899989,70.01048411700005],[-125.00877844999987,70.00824616100006],[-125.02525794199994,70.003363348],[-125.05540930899988,69.98940664300012],[-125.05260169199993,69.98550039300012],[-125.0479630199999,69.97573476800008],[-125.0678604809999,69.9774437520001],[-125.0916641919999,69.97687409100001],[-125.11416581899988,69.97239817900005],[-125.12987219999984,69.96271393400009],[-125.12059485599988,69.96116771000004],[-125.11489824099992,69.95815664300007],[-125.10260982999985,69.94839101800004],[-125.11978105399989,69.94261302300005],[-125.13662675699989,69.94391510600015],[-125.15363521999986,69.94741445500013],[-125.1714981759999,69.94839101800004],[-125.18512936099987,69.94334544499998],[-125.1979060539999,69.9364281270001],[-125.20946204299993,69.935492255],[-125.21930904899993,69.94839101800004],[-125.19603430899993,69.96137116100012],[-125.1848852199999,69.97321198100018],[-125.18765214799988,69.98639557500003],[-125.20620683499988,70.00307851800005],[-125.19635982999986,70.008978583],[-125.16466223899988,70.016750393],[-125.12987219999984,70.03717682500017],[-125.0579727859999,70.05243561400015],[-125.03465735599988,70.06134674700017],[-125.0272517569999,70.06793854400014],[-125.01886959499983,70.08274974200013],[-125.0138240229999,70.08559804900007],[-125.00365149599986,70.08535390800002],[-124.99250240799985,70.08344147300006],[-124.98346920499984,70.07827383000016],[-124.9797257149999,70.06826406500006],[-124.98766028599995,70.04555898600013],[-125.00670325399993,70.040961005],[-125.02920488199993,70.0405134140001],[-125.0479630199999,70.03034088700015],[-125.0060929029999,70.01996491100006],[-124.95099850199986,70.01825592700006],[-124.89639238199987,70.02431875200013],[-124.85619055899987,70.03717682500017],[-124.95921790299984,70.03034088700015],[-124.95921790299984,70.03717682500017],[-124.94782467399997,70.04002513200011],[-124.92931067599996,70.048285223],[-124.91828365799991,70.05145905200006],[-124.86363684799996,70.05760325700005],[-124.85326087099986,70.06159088700012],[-124.84487870999989,70.06610748900007],[-124.83551998599987,70.0698102890001],[-124.82201087099992,70.07135651200015],[-124.81834876199993,70.06924062700016],[-124.81167558499988,70.0599632830001],[-124.80842037699985,70.05760325700005],[-124.79898027299991,70.05829498900009],[-124.78282630099996,70.06378815300012],[-124.67125403599988,70.07880280200014],[-124.6504613919999,70.07485586100013],[-124.63174394399992,70.06476471600008],[-124.5955297519999,70.03717682500017],[-124.5999242829999,70.02187734600001],[-124.57652747299991,70.01483795800014],[-124.54556230399987,70.0189476580001],[-124.52721106699991,70.03717682500017],[-124.56200110599985,70.03717682500017],[-124.52798417899994,70.06098053600006],[-124.49071204299987,70.05414459800015],[-124.45287024599992,70.04242584800006],[-124.41734778599992,70.05145905200006],[-124.44790605399987,70.07957591400007],[-124.46499589799991,70.0866559920001],[-124.4862361319999,70.08218008000016],[-124.51012122299997,70.07396067900005],[-124.53522701699988,70.0719668640001],[-124.55980383999987,70.07599518400009],[-124.58242753799992,70.08559804900007],[-124.56212317599994,70.0901553410001],[-124.53868567599996,70.09064362200009],[-124.51821855399989,70.09373607],[-124.50674394399994,70.10602448100003],[-124.59406490799986,70.11640045800014],[-124.62340247299996,70.11286041900014],[-124.71060136599986,70.09235260600009],[-124.74010169199997,70.09243398600007],[-124.74010169199997,70.09857819200006],[-124.7252091139999,70.099310614],[-124.71104895699997,70.10224030200011],[-124.68488521999984,70.11286041900014],[-124.69688880099993,70.11880117400007],[-124.71153723899995,70.12152741100006],[-124.72667395699995,70.12103913000006],[-124.74600175699989,70.11473216400013],[-124.75055904899992,70.11603424700003],[-124.7532445949999,70.120103257],[-124.7537735669999,70.12661367400007],[-124.75039628799988,70.13202545800011],[-124.74351966099994,70.13401927300005],[-124.73570716099995,70.13495514500015],[-124.72984778599992,70.13715241100012],[-124.70201575399996,70.15127187700006],[-124.66978919199991,70.153265692],[-124.60228430899984,70.14704010600006],[-124.5904434889999,70.149400132],[-124.56737219999992,70.15961334800012],[-124.5545548169999,70.16132233300014],[-124.53913326699987,70.15851471600008],[-124.52106686099984,70.14964427300005],[-124.50674394399994,70.14704010600006],[-124.44155839799996,70.15566640800013],[-124.40811113199989,70.155422268],[-124.3838598299999,70.14020416900001],[-124.4283341139999,70.12225983300009],[-124.4439184239999,70.11115143400013],[-124.43195553299985,70.10602448100003],[-124.41315670499992,70.10293203300016],[-124.39146887899992,70.09487539300004],[-124.37279212099986,70.08364492400001],[-124.3627009759999,70.07135651200015],[-124.36318925699989,70.05687083500011],[-124.37026933499993,70.04169342700011],[-124.38052324099996,70.02863190300015],[-124.39037024599988,70.02045319200015],[-124.41685950399994,70.01483795800014],[-124.47720292899989,70.02073802299999],[-124.50674394399994,70.01048411700005],[-124.48599199099993,70.002875067],[-124.43879146999987,70.002875067],[-124.41734778599992,69.99624258000013],[-124.43439693899988,69.99176666900009],[-124.47223873599985,69.99355703300007],[-124.4794001939999,69.98627350500006],[-124.48672441299989,69.97675202000006],[-124.50405839799988,69.97426992400013],[-124.52440344999988,69.97353750200001],[-124.54088294199995,69.96954987200003],[-124.48770097599987,69.95791250200001],[-124.43537350199989,69.95526764500012],[-124.43065344999987,69.95148346600011],[-124.43171139199991,69.94306061400006],[-124.43545488199996,69.93378327],[-124.43907630099991,69.92792389500006],[-124.4499405589999,69.91982656500012],[-124.46117102799991,69.91803620000005],[-124.4862361319999,69.92047760600018],[-124.5069067049999,69.91632721600006],[-124.49986731699993,69.90717194200006],[-124.47834225199982,69.89801666900017],[-124.45518958199987,69.89378489800005],[-124.44619706899996,69.89077383000016],[-124.44640051999993,69.88397858300011],[-124.4521378249999,69.873277085],[-124.44322669199994,69.868109442],[-124.43175208199992,69.86399974200005],[-124.41832434799991,69.86115143400009],[-124.4037166009999,69.85968659100014],[-124.42503821499986,69.85077545800003],[-124.45201575399992,69.83445872599998],[-124.4720352859999,69.81533437700001],[-124.47256425699986,69.79759349200009],[-124.49120032499987,69.79657623900006],[-124.49644934799994,69.78974030200014],[-124.49229895699992,69.77912018400009],[-124.48253333199996,69.76683177300013],[-124.48119055899987,69.75918203300002],[-124.48786373599982,69.75112539300007],[-124.50674394399994,69.73615143400004],[-124.48033606699995,69.72085195500007],[-124.41437740799985,69.72431061400009],[-124.3937882149999,69.71873607000008],[-124.36656653599991,69.70384349200009],[-124.32607988199986,69.69798411700008],[-124.28514563699993,69.700873114],[-124.25658118399987,69.71190013200004],[-124.22984778599992,69.72699616100006],[-124.20156816299989,69.73200104400009],[-124.0747777989999,69.72866445500007],[-124.06826738199995,69.72528717700006],[-124.06281490799988,69.71792226800015],[-124.05475826699985,69.71100495000015],[-124.04059811099984,69.70880768400013],[-124.04588782499991,69.70368073100015],[-124.05426998599988,69.68773021000014],[-124.04914303299986,69.68646881700012],[-124.03941809799991,69.68280670800009],[-124.03441321499986,69.68154531500006],[-124.0718481109999,69.66583893400009],[-124.18464107999989,69.63312409100008],[-124.20962480399992,69.61603424700003],[-124.21703040299991,69.59577057500003],[-124.22203528599994,69.57367584800012],[-124.2398575509999,69.55117422100012],[-124.2689102859999,69.53656647300012],[-124.34333248599987,69.51557038],[-124.39134680899986,69.49530670800009],[-124.42910722599993,69.47345612200002],[-124.43907630099991,69.46181875200004],[-124.4395645819999,69.44794342700014],[-124.43325761599995,69.43585846600003],[-124.41734778599992,69.41400788],[-124.49836178299988,69.41510651200004],[-124.52106686099984,69.40778229400003],[-124.50112870999995,69.39594147300006],[-124.43846594999985,69.36961497600005],[-124.42284094999988,69.36664459800015],[-124.38219153599988,69.36737702000009],[-124.34618079299992,69.357367255],[-124.32607988199986,69.3542341170001],[-124.15884355399987,69.34808991100014],[-124.09459387899993,69.359076239],[-124.05426998599988,69.39354075700011],[-124.06110592399989,69.379868882],[-124.03807532499992,69.35773346600011],[-124.02269446499987,69.34735748900003],[-124.00645911399994,69.34511953300012],[-123.99421139199985,69.352972723],[-123.99913489499993,69.36359284100014],[-124.02013098899997,69.379868882],[-124.01012122299987,69.39663320500001],[-123.9979141919999,69.40395742400001],[-123.98314368399991,69.40436432500003],[-123.96548417899992,69.40033600500006],[-123.96320553299984,69.39752838700008],[-123.96133378799988,69.39264557500003],[-123.95636959499991,69.38808828300007],[-123.88194739499994,69.37360260600002],[-123.86961829299989,69.37299225500009],[-123.86168372299994,69.37470123900009],[-123.85094153599994,69.38304271000005],[-123.84264075399993,69.38605377800015],[-123.82803300699993,69.387681382],[-123.8088272779999,69.38735586100016],[-123.79625403599988,69.38133372600005],[-123.80162512899993,69.36619700700005],[-123.75186113199995,69.37579987200003],[-123.72695878799992,69.37750885600003],[-123.69798743399993,69.37299225500009],[-123.69200598899991,69.36994049700009],[-123.68561764199988,69.36530182500015],[-123.6768692699999,69.36115143400012],[-123.6635636059999,69.35936107000013],[-123.6484268869999,69.36151764500012],[-123.61766516799992,69.37091705900015],[-123.54474850199989,69.37702057500015],[-123.38267981699988,69.41400788],[-123.42007402299993,69.42011139500006],[-123.43740800699992,69.42633698100003],[-123.44473222599991,69.43793366100006],[-123.44766191299993,69.46409739799999],[-123.44322669199988,69.47687409100006],[-123.42764238199987,69.48224518400008],[-123.41136633999986,69.48493073100018],[-123.35533606699993,69.50275299700014],[-123.26659094999987,69.50958893400015],[-123.27342688699989,69.50275299700014],[-123.17756100199995,69.49591705900004],[-123.16563880099991,69.500433661],[-123.16340084499984,69.51129791900017],[-123.16470292899993,69.52472565300015],[-123.1635636059999,69.53685130400005],[-123.15977942599997,69.54352448100012],[-123.15632076699987,69.54621002800009],[-123.15314693899991,69.54779694200012],[-123.14460201699988,69.55683014500012],[-123.13780676999994,69.56207916900003],[-123.13194739499991,69.56777578300002],[-123.12946529899989,69.57477448100018],[-123.13475501199987,69.58909739800008],[-123.15827389199993,69.60663483300003],[-123.1635636059999,69.61603424700003],[-123.15811113199995,69.630072333],[-123.14509029899997,69.639146226],[-123.12930253799995,69.64618561400006],[-123.11579342399995,69.654201565],[-123.10407467399996,69.66644928600006],[-123.10045325399989,69.67536041900011],[-123.10472571499992,69.72329336100002],[-123.11367753799993,69.74371979400009],[-123.13072669199988,69.75950755400014],[-123.15733801999994,69.77024974200005],[-123.07774817599996,69.787787177],[-123.05370032499991,69.79759349200009],[-123.00519771999984,69.82501862200017],[-122.97972571499994,69.83478424700012],[-122.95099850199988,69.83856842700014],[-122.83556067599991,69.80312734600011],[-122.77253170499989,69.79486725500006],[-122.74583899599989,69.824896552],[-122.74583899599989,69.83234284100017],[-122.73029537699996,69.82977936400006],[-122.70189368399994,69.82078685100005],[-122.6843969389999,69.81867096600006],[-122.6467179029999,69.8222516950001],[-122.62816321499989,69.82172272300012],[-122.58438066299992,69.80914948100003],[-122.53026282499985,69.81305573100003],[-122.48110917899993,69.80206940300017],[-122.35260982999986,69.81415436400009],[-122.17210852799985,69.8045108090001],[-122.03604081899994,69.81867096600006],[-121.6438695949999,69.78904857],[-121.55996660099991,69.76947663000011],[-121.42784583199987,69.76683177300013],[-121.11760413299989,69.6951764995],[-120.80736243399988,69.62352122600002],[-120.68081620999988,69.55666738500015],[-120.63951575399992,69.53485748900012],[-120.27863521999986,69.40778229400003],[-120.15786699099989,69.38861725500006],[-120.08580481699998,69.36359284100014],[-119.99762936099988,69.34735748900003],[-119.78722083199995,69.34735748900003],[-119.72549394399995,69.32977936400007],[-119.47618567599994,69.305161851],[-119.2581680979999,69.29645416900009],[-118.8687638009999,69.25617096600003],[-118.66637122299996,69.22549062700001],[-118.65086829299995,69.21881745000013],[-118.62852942599991,69.20205312700013],[-118.4769180979999,69.12946198100003],[-118.22081458199996,69.07819245000009],[-118.0408829419999,69.024603583],[-117.83470618399993,68.99428945500001],[-117.68675696499986,68.98566315300012],[-117.3707169259999,68.95091380400005],[-117.30186926999994,68.92568594],[-117.16539466099991,68.89394765800013],[-117.1261287099999,68.893255927],[-117.06965084499987,68.90509674700014],[-117.05068925699996,68.90692780200014],[-117.00430253799989,68.90509674700014],[-116.9813533189999,68.90680573100015],[-116.96165930899986,68.91376373900006],[-116.97288977799988,68.92047760600009],[-117.00064042899994,68.93065013200005],[-117.01008053299985,68.940375067],[-116.97362219999991,68.94627513200014],[-116.9416397779999,68.93870677299999],[-116.86123613199992,68.89252350500009],[-116.84707597599989,68.887681382],[-116.83165442599996,68.88580963700004],[-116.82420813699989,68.88690827000006],[-116.79775956899991,68.89638906500006],[-116.78726152299993,68.89777252800015],[-116.77708899599988,68.8945173200001],[-116.76695716099992,68.88959381700015],[-116.75682532499987,68.88580963700004],[-116.46784420499985,68.86375560100014],[-116.4217830069999,68.86725495000002],[-116.41295325399994,68.88580963700004],[-116.38613847599996,68.88532135600003],[-116.32860266799987,68.878119208],[-116.24974524599993,68.85228099199999],[-116.2170304029999,68.83388906500012],[-116.20811926999994,68.83120351800005],[-115.97118079299987,68.80927155200013],[-115.9412328769999,68.81753164300012],[-116.09870357999988,68.85639069200012],[-116.12559973899995,68.8789737000001],[-116.08527584499988,68.8789737000001],[-116.08527584499988,68.88580963700004],[-116.31110592399992,68.947699286],[-116.32359778599994,68.95482005400005],[-116.31798255099993,68.96832916900001],[-116.29800370999993,68.97882721600008],[-116.26895097599989,68.98505280200006],[-116.21524003799989,68.98883698100018],[-116.16047115799988,68.98411692900008],[-115.90811113199989,68.92967357],[-115.87922115799986,68.92739492400001],[-115.86709550699989,68.92938873900015],[-115.84805253799988,68.93842194200015],[-115.83788001199993,68.940375067],[-115.76992753799995,68.940375067],[-115.79190019399987,68.95099518400004],[-115.86554928299985,68.96832916900001],[-115.88499915299994,68.97606028900005],[-115.92210852799984,68.99628327000006],[-115.9412328769999,69.00311920800007],[-115.91641191299998,69.01015859600015],[-115.80166581899992,68.991400458],[-115.74347896999988,68.97260163000013],[-115.71471106699994,68.96832916900001],[-115.58775794199991,68.97516510600006],[-115.56725012899996,68.97186920800003],[-115.49714107999989,68.94594961100002],[-115.48102779899992,68.94350820500007],[-115.44298255099993,68.94232819200013],[-115.43040930899993,68.93732330900009],[-115.42125403599995,68.932521877],[-115.37889563699987,68.92112864800005],[-115.21125240799986,68.89573802300013],[-115.11436926999997,68.85643138200011],[-115.06358801999991,68.85228099199999],[-115.06358801999991,68.85846588700015],[-115.0676163399999,68.860052802],[-115.07725989499995,68.86591217700011],[-115.03498287699993,68.8751488300001],[-114.98778235599987,68.86741771],[-114.82933508999994,68.81391022300006],[-114.80040442599993,68.79726797100001],[-114.77554277299988,68.77655670800002],[-114.74205481699994,68.75531647300012],[-114.52257239499993,68.71723053600014],[-114.43980872299989,68.687201239],[-114.44815019399995,68.68402741100012],[-114.45474199099993,68.67934804900001],[-114.46776282499992,68.66669342700014],[-114.43407141799992,68.650864976],[-114.41885331899994,68.64118073100003],[-114.41246497299991,68.62913646000011],[-114.40119381399992,68.61692942900005],[-114.37531490799991,68.60700104400014],[-114.20103919199994,68.57192617400007],[-114.18285071499986,68.56403229400009],[-114.18659420499989,68.5506859400001],[-114.17967688699989,68.53872304900015],[-114.1696671209999,68.53009674700014],[-114.15689042899996,68.52505117400001],[-114.14220130099996,68.52334219],[-114.12828528599988,68.52008698100015],[-114.10553951699985,68.50600820500001],[-114.09434973899992,68.50287506700015],[-114.07994544199997,68.49445221600008],[-114.07042395699996,68.47516510600015],[-114.06338456899991,68.454291083],[-114.05679277299993,68.44082265800002],[-114.11168372299993,68.43964264500009],[-114.12466386599992,68.43183014500009],[-114.11082923099993,68.41347890800013],[-114.08608964799993,68.40086497600005],[-114.05943762899992,68.39740631700006],[-114.00499426999991,68.3998070330001],[-114.00560462099986,68.40619538000011],[-114.00059973899991,68.42023346600017],[-113.98839270699993,68.43439362200009],[-113.96715247299996,68.44082265800002],[-113.95425370999995,68.43561432500012],[-113.90538489499995,68.3998070330001],[-113.91950436099988,68.39565664300005],[-113.93541419199991,68.39484284100013],[-113.94839433499992,68.39223867400015],[-113.95376542899987,68.38247304900001],[-113.95645097599994,68.373480536],[-113.96324622299997,68.3678246110001],[-114.04190019399996,68.32217031500006],[-114.05679277299993,68.30418528900013],[-114.04694576699991,68.28961823100009],[-114.0206192699999,68.26609935100005],[-114.01524817599994,68.25267161700005],[-114.03547115799986,68.24119700700003],[-114.08120683499988,68.2406680360001],[-114.20518958199997,68.25751373900012],[-114.2206925119999,68.2558047550001],[-114.23253333199995,68.25079987200009],[-114.25446529899997,68.23843008000013],[-114.26846269399994,68.23590729400003],[-114.3373917309999,68.23590729400003],[-114.3506567049999,68.239935614],[-114.37800045499989,68.25299713700015],[-114.38857988199995,68.2558047550001],[-114.40371660099993,68.25796133000004],[-114.43488521999993,68.26727936400006],[-114.45034745999995,68.26947663000006],[-114.62425696499992,68.25210195500007],[-114.83702551999995,68.26264069200015],[-114.9042048819999,68.28412506700006],[-114.94151770699997,68.29132721600011],[-114.9686173169999,68.283148505],[-114.94212805899994,68.27472565300006],[-114.88727779899993,68.24787018400015],[-114.83869381399987,68.23631419500013],[-114.7551163399999,68.19432200700005],[-114.77843176999994,68.19013092700011],[-114.80809485599985,68.19334544499999],[-114.83364824099995,68.19106679900001],[-114.84447180899993,68.17015208500005],[-114.8601781889999,68.15656159100008],[-114.89606686099988,68.151353257],[-115.2416886059999,68.18691640800007],[-115.22533118399988,68.16962311400006],[-115.19896399599992,68.15607330900008],[-115.1795141269999,68.14183177300002],[-115.18370520699995,68.12238190300009],[-115.19448808499993,68.113714911],[-115.21719316299989,68.10187409100014],[-115.22809811099987,68.09129466400002],[-115.23375403599995,68.08063385600015],[-115.24278723899994,68.05475495000015],[-115.24913489499988,68.04291413],[-115.22004146999991,68.029974677],[-115.20474199099995,68.02570221600017],[-115.18712317599994,68.02301666900007],[-115.12865149599986,68.02285390800013],[-115.11196855399994,68.01618073100018],[-115.12926184799994,68.0074730490001],[-115.16755123599988,68.00043366100012],[-115.20299231699997,67.98224518400004],[-115.22915605399992,67.977240302],[-115.30239824099996,67.973334052],[-115.46825110599987,67.9404971370001],[-115.51158606699997,67.93866608300011],[-115.5338028639999,67.93439362200012],[-115.5433650379999,67.92340729400014],[-115.5361221999999,67.90338776200018],[-115.51821855399992,67.89524974200008],[-115.47447669199993,67.89272695500013],[-115.39354407499988,67.87909577],[-115.25601152299988,67.88589101800012],[-115.26374264199991,67.884711005],[-115.27082271999987,67.88214752800009],[-115.2771703769999,67.87799713700015],[-115.28270423099993,67.872219143],[-115.26585852799992,67.86163971600014],[-115.22765051999995,67.845404364],[-115.21129309799994,67.834662177],[-115.1872452459999,67.82444896000005],[-115.1263321609999,67.81289297100012],[-115.11823482999989,67.803900458],[-114.99649003799995,67.792710679],[-114.78921464799993,67.81696198100018],[-114.71654212099996,67.81159088700004],[-114.68521074099988,67.80320872600008],[-114.63487708199996,67.78180573100012],[-114.61766516799992,67.7765973980001],[-114.59902910099993,67.774562893],[-114.57697506399985,67.77602773600016],[-114.54283606699994,67.78286367400007],[-114.5408829419999,67.78660716400009],[-114.53990637899992,67.79303620000003],[-114.5352677069999,67.79694245000012],[-114.39785722599989,67.74188873900006],[-114.32982337099993,67.7282168640001],[-114.2616267569999,67.7282168640001],[-114.20018469999992,67.74188873900006],[-114.17210852799994,67.74225495000017],[-113.98131262899989,67.72418854400014],[-113.94225012899993,67.71063873899999],[-113.85875403599995,67.69623444200012],[-113.68077551999994,67.69472890800007],[-113.3158259759999,67.71088288000011],[-113.19286048099987,67.7002627620001],[-113.08226477799987,67.67649974199999],[-113.04198157499987,67.67357005400007],[-112.83340410099994,67.68732330900018],[-112.7493790359999,67.676459052],[-112.42100989499988,67.68244049700012],[-112.35460364499995,67.69428131700006],[-112.34308834499991,67.70302969000015],[-112.34874426999991,67.715806382],[-112.37100175699996,67.73505280200014],[-112.3276261059999,67.745550848],[-112.18610592399995,67.7282168640001],[-112.0277400379999,67.74868398600007],[-111.99771074099995,67.74062734600015],[-111.98912512899993,67.72553131700015],[-111.98786373599992,67.70840078300002],[-111.98005123599984,67.69403717700011],[-111.96922766799993,67.69232819200012],[-111.92601477799992,67.69403717700011],[-111.8985489569999,67.68537018400004],[-111.88548743399991,67.68520742400007],[-111.87075761599992,67.69403717700011],[-111.8837784499999,67.70506419499999],[-111.89924068899984,67.71320221600008],[-111.91563880099993,67.7187360700001],[-111.93154863199995,67.72199127800015],[-111.9271134109999,67.73004791900009],[-111.92218990799991,67.73403554900007],[-111.91510982999996,67.7352562520001],[-111.90428626199987,67.73505280200014],[-111.90428626199987,67.74188873900006],[-111.91234290299991,67.74249909100003],[-111.93154863199995,67.74868398600007],[-111.87975012899994,67.76406484600012],[-111.54564368399987,67.721380927],[-111.54474850199996,67.72695547100001],[-111.57591712099986,67.74868398600007],[-111.56037350199993,67.75104401200004],[-111.55093339799994,67.75714752800003],[-111.54381262899987,67.76430898600007],[-111.53498287699992,67.76923248900012],[-111.51707923099988,67.77155182500009],[-111.45921790299987,67.76923248900012],[-111.46930904899993,67.744289455],[-111.45278886599995,67.73566315300008],[-111.42491614499991,67.73956940300009],[-111.40086829299987,67.75214264500009],[-111.36676998599987,67.78628164300008],[-111.35631262899997,67.79393138200011],[-111.32998613199986,67.80560944199999],[-111.31867428299988,67.81354401200015],[-111.29198157499988,67.82611725500006],[-111.2166641919999,67.83368561400003],[-111.1673884759999,67.84609609600012],[-111.15514075399993,67.84178294500005],[-111.15282141799987,67.83124420800007],[-111.1644180979999,67.81696198100018],[-111.17662512899996,67.810003973],[-111.20124264199987,67.79946523600013],[-111.21222896999993,67.7896996110001],[-111.20034745999988,67.79413483300006],[-111.18419348899991,67.79706452000009],[-111.17174231699988,67.79458242400007],[-111.17125403599991,67.78286367400007],[-111.17967688699987,67.77545807500009],[-111.20335852799987,67.77179596600003],[-111.21222896999993,67.76235586100002],[-111.18635006399991,67.76235586100002],[-111.15632076699987,67.76772695500007],[-111.08812415299985,67.79067617400007],[-111.07502193899988,67.78900788000006],[-111.06305904899993,67.78253815300013],[-111.05174719999987,67.77260976800015],[-111.03750566299996,67.76683177299999],[-111.01895097599996,67.76813385600018],[-110.90420488199992,67.800523179],[-110.84707597599993,67.80687083500011],[-110.82184811099988,67.81696198100018],[-110.78750566299992,67.84125397300006],[-110.78083248599985,67.84491608300011],[-110.77013098899994,67.84808991100009],[-110.75088456899988,67.862250067],[-110.73957271999991,67.86542389500006],[-110.72565670499993,67.8670921900001],[-110.6778051419999,67.87909577],[-110.57656816299993,67.88849518400004],[-110.53197180899986,67.91571686400012],[-110.42080644399988,67.94839101800007],[-110.32835852799988,67.94794342700008],[-110.33356686099987,67.95294830900012],[-110.34264075399994,67.96841054900013],[-110.31322180899988,67.96857330900009],[-110.27928626199991,67.9641787780001],[-110.21910559799996,67.94794342700008],[-110.18016516799987,67.92413971600008],[-110.15819251199986,67.918402411],[-110.12975012899992,67.92682526200015],[-110.18838456899996,67.95416901200004],[-110.20303300699987,67.97406647300012],[-110.1778458319999,67.99884674700007],[-110.15412350199989,68.00755442900008],[-110.13097083199993,68.01044342700003],[-110.08165442599996,68.00942617400013],[-110.05964107999995,68.00507233300006],[-110.01781165299992,67.985785223],[-109.9959610669999,67.9815127620001],[-109.97118079299993,67.967271226],[-109.97472083199992,67.935736395],[-109.99937903599991,67.88589101800012],[-109.99478105399986,67.85260651200002],[-109.96690833199992,67.83380768400016],[-109.93309485599985,67.834173895],[-109.91063391799995,67.85854726800007],[-109.92170162699998,67.86212799700003],[-109.95221920499992,67.87909577],[-109.95221920499992,67.88589101800012],[-109.8706762359999,67.88271719000006],[-109.83202063699993,67.87360260600018],[-109.78343665299987,67.8389346370001],[-109.7557266919999,67.82684967699998],[-109.69835364499997,67.81012604400014],[-109.70832271999987,67.79852936400015],[-109.73761959499988,67.790961005],[-109.7461645169999,67.77602773600016],[-109.65123450399997,67.75413646000011],[-109.6226293609999,67.74188873900006],[-109.65078691299988,67.73981354400003],[-109.72077389199988,67.7502302100001],[-109.7427465489999,67.74530670800006],[-109.7435603509999,67.728705145],[-109.71670488199992,67.71918366100003],[-109.5387263659999,67.68903229400009],[-109.5184626939999,67.69135163000006],[-109.4976700509999,67.70331452000009],[-109.4908341139999,67.71796295799999],[-109.51276607999992,67.7282168640001],[-109.4955134759999,67.74079010600012],[-109.45189368399991,67.744289455],[-109.4342341789999,67.75214264500009],[-109.4212540359999,67.76260000200007],[-109.40587317599996,67.76976146000003],[-109.39171301999991,67.7689883480001],[-109.38243567599989,67.75551992400001],[-109.39012610599988,67.75283437700004],[-109.40416419199995,67.74188873900006],[-109.35260982999996,67.72968170800009],[-109.33458411399995,67.7282168640001],[-109.32363847599989,67.72614166900009],[-109.3123266269999,67.72256094000012],[-109.30109615799991,67.72093333500003],[-109.28477942599987,67.72809479400014],[-109.26642818899984,67.73395416900009],[-109.25983639199985,67.73505280200014],[-109.07457434799993,67.72199127800015],[-109.06704667899987,67.7201602230001],[-109.06468665299991,67.71600983300013],[-109.06395423099988,67.71124909100014],[-109.06151282499985,67.70770905200006],[-109.0129288399999,67.67926666900014],[-109.00625566299993,67.67357005400007],[-108.99705969999985,67.65595123900015],[-108.9783829419999,67.59039948100012],[-108.98517818899991,67.59039948100012],[-108.97398841099991,67.57566966400013],[-108.93366451699984,67.546332098],[-108.92943274599992,67.53180573100018],[-108.94692949099996,67.520412502],[-108.99201412699993,67.50535716400002],[-109.01211503799988,67.49591705900018],[-109.02257239499994,67.48769765800007],[-109.02293860599987,67.47728099199999],[-109.01309160099994,67.46133047100008],[-108.9969376289999,67.44904205900004],[-108.95445716099992,67.44220612200012],[-108.92992102799991,67.434027411],[-108.93260657499988,67.41693756700005],[-108.86595618399991,67.41461823100009],[-108.84801184799996,67.39549388200011],[-108.84117591099992,67.36766185100005],[-108.82412675699989,67.357163804],[-108.80199133999992,67.36188385600009],[-108.77969316299988,67.37938060100005],[-108.75690670499992,67.41461823100009],[-108.74445553299984,67.45425039300012],[-108.73839270699993,67.59320709800006],[-108.73070227799991,67.61579010600003],[-108.71080481699991,67.62518952000006],[-108.63988196499993,67.62946198100018],[-108.59911048099987,67.62531159100003],[-108.58112545499992,67.60846588700004],[-108.58275305899986,67.59568919499999],[-108.58527584499986,67.58612702],[-108.58478756399988,67.57733795800014],[-108.52452551999993,67.50556061400015],[-108.51964270699995,67.49481842700014],[-108.51805579299992,67.481594143],[-108.52049719999987,67.47284577000012],[-108.52403723899994,67.46405670800006],[-108.52586829299992,67.4504255230001],[-108.52179928299985,67.42316315300012],[-108.51040605399989,67.39203522300012],[-108.49315344999988,67.3653832050001],[-108.47126217399993,67.35146719],[-108.44835364499994,67.350287177],[-108.43610592399989,67.35691966400005],[-108.43122311099991,67.36937083500004],[-108.43028723899992,67.38556549700003],[-108.43224036399988,67.38544342700006],[-108.43675696499993,67.39150625200013],[-108.44139563699987,67.39972565300003],[-108.44395911399997,67.40607330900015],[-108.44326738199992,67.413234768],[-108.44066321499992,67.41864655200006],[-108.43968665299987,67.42479075700014],[-108.44395911399997,67.434027411],[-108.43276933499995,67.43390534100003],[-108.4200740229999,67.43524811400012],[-108.40819251199994,67.43854401200015],[-108.39924068899991,67.44391510600012],[-108.38630123599991,67.44928620000017],[-108.37026933499992,67.44757721600017],[-108.32428951699987,67.43512604400014],[-108.31143144399994,67.42157623900009],[-108.29991614499988,67.40558502800009],[-108.28693600199989,67.39240143400004],[-108.26414954299987,67.38125234600001],[-107.99254309799993,67.28245677299999],[-107.96442623599985,67.24921295800009],[-107.94737708199989,67.24160390800013],[-107.94790605399987,67.23407623900007],[-107.93659420499998,67.2175153670001],[-107.89268958199995,67.16941966400005],[-107.88231360599985,67.15517812700013],[-107.87535559799996,67.13922760600003],[-107.91637122299996,67.13922760600003],[-107.88560950399989,67.09251536700005],[-107.88158118399991,67.07396067900014],[-107.87970943899985,67.053412177],[-107.88536536399994,67.04824453300006],[-107.90269934799993,67.052923895],[-107.91844641799989,67.05914948100015],[-107.9547013009999,67.06875234600012],[-107.98835201699991,67.07298411700003],[-108.0212296209999,67.08356354400011],[-108.03986568899988,67.08392975500011],[-108.05479895699993,67.07965729400011],[-108.06590735599985,67.07412344],[-108.0777481759999,67.07013580900012],[-108.09508216099991,67.07025788],[-108.13939368399986,67.08002350500011],[-108.15656490799988,67.07770416900014],[-108.1563614569999,67.07599518400015],[-108.15807044199993,67.07135651200004],[-108.16075598899991,67.06639232],[-108.1634008449999,67.06342194200006],[-108.17088782499987,67.06098053600012],[-108.19749915299991,67.05597565300009],[-108.1897680329999,67.03172435100011],[-108.21495520699996,67.02741120000009],[-108.30296790299988,67.0403506530001],[-108.36961829299987,67.06134674700014],[-108.42373613199995,67.08551666900014],[-108.48473059799993,67.10040924700012],[-108.51219641799987,67.111273505],[-108.56232662699996,67.14590078300007],[-108.58922278599995,67.15818919500005],[-108.62205969999985,67.1596540390001],[-108.62205969999985,67.152818101],[-108.58967037699995,67.13450755400011],[-108.57697506399988,67.12360260600003],[-108.56745357999989,67.111273505],[-108.54938717399996,67.06854889500009],[-108.54015051999991,67.05597565300009],[-108.52668209499993,67.04148997600004],[-108.51829993399987,67.03717682500006],[-108.50601152299991,67.03681061400012],[-108.48888098899995,67.04193756700015],[-108.48786373599991,67.04897695500001],[-108.49242102799985,67.05654531500006],[-108.49233964799987,67.06342194200006],[-108.48253333199993,67.07269928600012],[-108.4745173819999,67.0761172550001],[-108.4649958979999,67.0748965520001],[-108.45079505099989,67.07025788],[-108.43114173099993,67.06012604400003],[-108.42100989499988,67.05272044500005],[-108.41661536399988,67.0463727890001],[-108.40705318899991,67.037787177],[-108.3647354809999,67.01715729400017],[-108.3552139959999,67.00507233300009],[-108.3397110669999,66.99042389500005],[-108.30418860599991,66.98358795800014],[-108.22150631399985,66.979437567],[-108.18952389199985,66.97003815300017],[-108.1733292309999,66.96784088700008],[-108.16356360599987,66.96450429900007],[-108.1391495429999,66.94611237200003],[-108.11945553299986,66.93939850500009],[-108.1132706369999,66.92324453300002],[-108.1158748039999,66.9033877620001],[-108.12242591099988,66.88593170800014],[-108.1149796209999,66.87848541900017],[-108.13605709499993,66.86009349200013],[-108.16690019399988,66.85712311400003],[-108.20103919199988,66.85797760600012],[-108.2316788399999,66.85114166900009],[-108.18651282499985,66.83885325700014],[-108.05353756399992,66.85114166900009],[-107.99522864499991,66.83222077000006],[-107.98521887899993,66.82697174700007],[-107.97960364499993,66.81366608300006],[-107.96621660099993,66.80337148600013],[-107.95026607999992,66.79368724199999],[-107.93683834499993,66.78229401200004],[-107.94102942599996,66.77350495000015],[-107.94961503799988,66.74445221600008],[-107.95051021999987,66.73509349200005],[-107.94351152299988,66.72353750200013],[-107.92113196499987,66.70522695500006],[-107.91193600199988,66.68842194200006],[-107.9014379549999,66.67829010600009],[-107.88890540299991,66.66974518400018],[-107.87852942599991,66.666205145],[-107.86851966099994,66.6721052100001],[-107.86701412699989,66.68537018400015],[-107.8704320949999,66.69936758000001],[-107.87535559799996,66.70722077],[-107.85753333199997,66.72382233300006],[-107.86180579299989,66.73676178600006],[-107.87629146999984,66.74848053600006],[-107.88902747299989,66.76178620000016],[-107.85773678299982,66.76007721600017],[-107.8323868479999,66.748277085],[-107.76573645699992,66.69135163000009],[-107.6898087229999,66.64573802300013],[-107.70091712099992,66.64671458500003],[-107.71108964799987,66.64500560100002],[-107.71922766799989,66.6402855490001],[-107.72451738199996,66.63206614799999],[-107.70010331899991,66.62103913000006],[-107.63516191299993,66.57001373900006],[-107.59544837099992,66.54804108300014],[-107.58364824099996,66.53929271000004],[-107.56554114499995,66.53074778900005],[-107.54775956899995,66.53156159100014],[-107.54035396999988,66.54051341399999],[-107.55329342399989,66.5563418640001],[-107.52114824099992,66.553412177],[-107.4979548819999,66.53620026200018],[-107.44554602799991,66.46556224200013],[-107.43252519399994,66.45473867400013],[-107.4166560539999,66.44647858300014],[-107.36489824099989,66.43349844000015],[-107.27578691299989,66.36082591400006],[-107.24152584499984,66.348537502],[-107.20986894399996,66.35911692900005],[-107.20177161399994,66.37848541900009],[-107.23794511599995,66.39183177299999],[-107.24986731699991,66.41388580900009],[-107.29332434799994,66.44171784100014],[-107.41592363199989,66.49823639500006],[-107.43517005099991,66.51080963700014],[-107.44343014199991,66.525336005],[-107.45140540299987,66.54804108300014],[-107.47081458199997,66.55707428600006],[-107.49453691299989,66.56224192900005],[-107.52627519399994,66.57990143400015],[-107.5518285799999,66.58698151200002],[-107.56354732999992,66.59454987200017],[-107.56761633999987,66.60171133000001],[-107.57115637899993,66.61871979400009],[-107.57371985599987,66.62523021000008],[-107.6266983709999,66.66254303600014],[-107.6586807929999,66.707709052],[-107.76740475199993,66.73940664300015],[-107.79967200399996,66.7686221370001],[-107.74307206899995,66.75385163000011],[-107.71349036399991,66.7529971370001],[-107.6898087229999,66.7686221370001],[-107.6966446609999,66.77887604400001],[-107.70140540299991,66.78815338700015],[-107.70225989499991,66.79608795800014],[-107.69725501199987,66.80280182500009],[-107.70954342399993,66.831244208],[-107.71776282499991,66.87848541900017],[-107.75658118399994,66.9296735700001],[-107.76553300699987,66.94611237200003],[-107.7679337229999,66.95905182500003],[-107.7684626939999,66.97776927299999],[-107.7658585279999,66.99632396],[-107.75865637899994,67.0088565120001],[-107.73745683499988,67.011460679],[-107.68757076699991,66.98216380400008],[-107.63483639199991,66.96710846600014],[-107.61986243399987,66.96625397300006],[-107.60789954299985,66.97406647300015],[-107.60635331899991,66.98387278899999],[-107.61172441299996,66.99298737200017],[-107.61872311099984,67.00043366100014],[-107.62218176999994,67.00507233300009],[-107.6280004549999,67.01732005400014],[-107.65623938699986,67.05536530200014],[-107.66649329299987,67.06342194200006],[-107.66722571499992,67.06614817900014],[-107.65762285099994,67.071966864],[-107.64297441299993,67.077093817],[-107.62832597599993,67.07770416900014],[-107.61782792899994,67.07396067900014],[-107.56309973899992,67.04047272300008],[-107.54206295499989,67.03148021000005],[-107.52399654899996,67.02041250200004],[-107.51231848899997,67.00141022300012],[-107.5191137359999,67.00141022300012],[-107.48436438699994,66.91941966400002],[-107.51537024599988,66.92788320500013],[-107.53184973899994,66.92987702000005],[-107.53897050699989,66.92324453300002],[-107.54816646999988,66.91795482000013],[-107.56891842399996,66.91909414300007],[-107.59117591099992,66.92389557500015],[-107.60480709499987,66.92999909100014],[-107.62360592399992,66.94501373900006],[-107.64647376199993,66.955755927],[-107.6716202459999,66.9596214860001],[-107.69725501199987,66.953558661],[-107.68517005099996,66.93992747600005],[-107.64997311099991,66.91962311400015],[-107.63467363199995,66.89533112200017],[-107.6163223949999,66.88540273600007],[-107.59532630099994,66.88153717700006],[-107.57994544199993,66.88593170800014],[-107.5873917309999,66.89960358300009],[-107.57555091099992,66.89720286700005],[-107.54124915299987,66.88458893400015],[-107.53278561099982,66.87848541900017],[-107.53482011599996,66.86798737200009],[-107.5463761059999,66.85927969],[-107.57371985599987,66.84495677300013],[-107.56297766799995,66.8395042990001],[-107.52538001199986,66.82538483300006],[-107.51231848899997,66.82322825700005],[-107.49937903599997,66.82831452000009],[-107.48835201699991,66.84259674700017],[-107.47752844999991,66.84495677300013],[-107.46410071499993,66.83576080900015],[-107.44933020699995,66.81879303600009],[-107.43146725199998,66.8078473980001],[-107.40925045499992,66.81708405200008],[-107.45181230399987,66.84780508000007],[-107.47130286399995,66.86652252800002],[-107.48436438699994,66.88593170800014],[-107.46206620999989,66.88422272300011],[-107.43578040299988,66.87909577000012],[-107.41161048099988,66.87897370000015],[-107.39561926999988,66.8921572940001],[-107.39610755099996,66.90497467700014],[-107.40420488199989,66.91868724200008],[-107.44139563699987,66.96295807500003],[-107.43927975199996,66.96954987200009],[-107.42292232999995,66.97406647300015],[-107.40103105399993,66.974310614],[-107.37677975199993,66.96971263200005],[-107.35411536399988,66.96133047100001],[-107.33726966099988,66.94989655200014],[-107.30850175699993,66.93463776200015],[-107.22154700399996,66.90204498900012],[-107.20319576699991,66.88906484600004],[-107.19733639199987,66.87970612200009],[-107.15908769399992,66.8546410180001],[-107.14525305899991,66.84003327000006],[-107.1319067049999,66.83026764500012],[-107.11432857999996,66.82489655200008],[-107.08771725199992,66.82322825700005],[-107.08771725199992,66.830715236],[-107.16222083199989,66.87848541900017],[-107.13487708199992,66.8921572940001],[-107.26740475199995,66.989406643],[-107.31305904899989,67.01504140800007],[-107.36827551999991,67.03440989799999],[-107.40339107999998,67.04116445500001],[-107.39403235599985,67.05084870000017],[-107.36115475199995,67.06683991100009],[-107.2464493479999,67.08421458500005],[-107.25157630099991,67.09760163000006],[-107.24022376199994,67.10683828300002],[-107.20319576699991,67.12490469000012],[-107.22374426999995,67.13165924700017],[-107.24376380099991,67.13043854400014],[-107.26423092399989,67.12653229400014],[-107.28575598899991,67.12490469000012],[-107.30455481699995,67.12872955900015],[-107.3363337879999,67.14240143400009],[-107.39000403599988,67.14883047100001],[-107.42349199099992,67.15794505399998],[-107.52700761599986,67.212347723],[-107.54556230399989,67.2301292990001],[-107.55907141799986,67.26788971600014],[-107.58885657499987,67.310492255],[-107.65672766799986,67.37246328300013],[-107.69497636599989,67.387396552],[-107.71642005099991,67.4046084660001],[-107.72232011599986,67.42096588700004],[-107.69725501199987,67.42649974200005],[-107.68073482999988,67.41974518400009],[-107.6660050119999,67.40790436400015],[-107.65143795499995,67.40033600499999],[-107.63516191299993,67.40607330900015],[-107.62832597599993,67.4504255230001],[-107.58364824099996,67.47801341400013],[-107.57770748599985,67.49042389500015],[-107.58584550699995,67.50116608300006],[-107.60069739499991,67.50975169499999],[-107.61465410099987,67.51593659100014],[-107.64997311099991,67.52289459800012],[-107.66869055899988,67.52912018400009],[-107.67674719999992,67.539496161],[-107.6819962229999,67.54840729400001],[-107.70775305899994,67.57062409100008],[-107.74559485599988,67.59259674700012],[-107.81126868399988,67.620306708],[-107.86587480399994,67.63092682500003],[-107.93199622299994,67.66176992400001],[-107.96491451699984,67.68357982000005],[-107.98961341099991,67.69334544499999],[-107.99889075399994,67.7002627620001],[-108.00572669199988,67.70966217700011],[-108.01878821499987,67.73505280200014],[-108.0126033189999,67.75910065300017],[-107.99966386599989,67.77960846600003],[-107.96133378799995,67.820746161],[-107.9547013009999,67.83161041900009],[-107.9490453769999,67.84406159100011],[-107.9416397779999,67.85431549700003],[-107.92967688699987,67.85854726800007],[-107.86733964799991,67.86245351800015],[-107.74347896999988,67.89524974200008],[-107.71092688699991,67.89956289300007],[-107.69977779899989,67.90289948100009],[-107.68732662699996,67.91120026200015],[-107.66649329299987,67.9305687520001],[-107.65933183499995,67.94672272300015],[-107.6716202459999,67.95376211100002],[-107.75080318899988,67.96548086100002],[-107.76878821499992,67.96352773600016],[-107.78636633999984,67.95783112200009],[-107.80394446499989,67.95502350500011],[-107.81525631399985,67.96190013200014],[-107.82408606699993,67.97264232000003],[-107.83438066299993,67.9815127620001],[-107.85195878799988,67.98550039300007],[-107.89273027299991,67.98786041900003],[-107.90953528599992,67.99510325700005],[-107.91860917899994,68.00551992400013],[-107.91270911399991,68.0092227230001],[-107.90176347599993,68.01365794500008],[-107.89586341099991,68.0264346370001],[-107.89468339799988,68.050238348],[-107.8898819649999,68.07355377800009],[-107.8795059889999,68.09300364800002],[-107.8617244129999,68.10496653900013],[-107.84630286399988,68.10712311400012],[-107.8358048169999,68.10346100500009],[-107.82624264199993,68.09711334800014],[-107.81395423099987,68.09129466400002],[-107.79344641799992,68.08893463700004],[-107.75011145699993,68.09186432500015],[-107.73143469999987,68.08820221600011],[-107.69725501199987,68.07762278900007],[-107.71890214799987,68.06118398600015],[-107.75007076699985,68.05687083500005],[-107.81395423099987,68.05719635600009],[-107.80211341099991,68.04486725500014],[-107.7818497389999,68.04108307500012],[-107.7381892569999,68.04291413],[-107.76268469999992,68.03571198100015],[-107.79185950399996,68.03148021000014],[-107.81822669199988,68.02460358300011],[-107.83438066299993,68.00942617400013],[-107.7947891919999,67.99249909100013],[-107.7740779289999,67.98859284100014],[-107.75186113199993,67.99510325700005],[-107.74600175699987,68.00043366100012],[-107.74315344999985,68.00633372600005],[-107.74120032499991,68.01194896000005],[-107.7381892569999,68.01618073100018],[-107.69188391799992,68.04559967700008],[-107.68175208199996,68.04873281500015],[-107.64500891799987,68.051947333],[-107.61465410099987,68.06342194200015],[-107.58299719999991,68.06655508000001],[-107.50674394399995,68.06232330900008],[-107.42870032499992,68.04266998900013],[-107.37267005099989,68.04743073100006],[-107.27208411399997,68.07762278900007],[-107.1915583979999,68.11786530200006],[-107.1466365229999,68.13182200700011],[-107.10757402299994,68.12604401200015],[-107.12376868399988,68.10976797100004],[-107.13027910099989,68.10106028900005],[-107.13487708199992,68.09129466400002],[-107.02562415299991,68.10496653900013],[-106.9707738919999,68.09886302300005],[-106.95254472599991,68.10008372600005],[-106.97044837099988,68.11180247600005],[-106.92609615799985,68.12645091400007],[-106.86611894399991,68.12311432500002],[-106.7581680979999,68.10496653900013],[-106.7581680979999,68.11180247600005],[-106.74575761599988,68.13955312700013],[-106.76280676999993,68.16815827],[-106.79116777299987,68.19277578300002],[-106.81338456899992,68.207993882],[-106.7888077459999,68.22402578300007],[-106.75300045499989,68.22882721600017],[-106.68244381399992,68.22846100500006],[-106.69762122299991,68.20783112200002],[-106.69981848899991,68.19830963700004],[-106.67894446499992,68.19106679900001],[-106.65990149599993,68.17658112200014],[-106.64488684799991,68.17328522300012],[-106.62718665299991,68.18520742400007],[-106.63166256399988,68.211371161],[-106.63939368399988,68.23761627800003],[-106.63149980399992,68.24957916900014],[-106.59951738199992,68.2463239600001],[-106.49649003799995,68.20258209800012],[-106.4772843089999,68.191107489],[-106.46165930899991,68.17584870000003],[-106.44347083199993,68.15277741100006],[-106.43285071499987,68.15875885600018],[-106.4120173819999,68.17548248900003],[-106.40184485599987,68.1807315120001],[-106.38890540299985,68.18195221600003],[-106.36046301999994,68.181586005],[-106.34658769399995,68.18691640800007],[-106.4841202459999,68.22866445500001],[-106.49437415299985,68.24583567900014],[-106.48070227799991,68.25543854400011],[-106.44884192599989,68.27130768400002],[-106.43602454299985,68.283148505],[-106.42601477799987,68.30426666900011],[-106.43228105399992,68.3155785180001],[-106.47077389199991,68.3315290390001],[-106.44566809799991,68.35126373900012],[-106.4158829419999,68.35541413000009],[-106.35407467399992,68.35138580900009],[-106.3277888659999,68.35919830900009],[-106.27603105399989,68.38690827000009],[-106.25108801999993,68.39301178600006],[-106.18211829299992,68.39301178600006],[-106.17064368399987,68.3890648460001],[-106.16266842399992,68.38019440300003],[-106.15607662699993,68.37079498900003],[-106.14858964799987,68.36505768400002],[-106.12242591099991,68.36603424700012],[-106.07567298099985,68.39288971600008],[-106.05239824099993,68.3998070330001],[-106.03685462099993,68.39777252800015],[-106.0217992829999,68.39402903900005],[-106.0066625639999,68.39240143400012],[-105.99103756399984,68.39642975500009],[-105.98330644399992,68.40346914300015],[-105.97606360599988,68.41425202000006],[-105.97105872299996,68.42397695500001],[-105.97052975199998,68.42772044500005],[-105.94200598899988,68.42633698100015],[-105.90843665299985,68.41592031500006],[-105.87409420499989,68.41046784100003],[-105.84325110599993,68.424017645],[-105.8386938139999,68.43073151200004],[-105.83446204299987,68.444322007],[-105.82994544199991,68.45099518400015],[-105.81843014199988,68.45514557500009],[-105.80968176999988,68.44696686400009],[-105.79857337099988,68.42772044500005],[-105.77651933499988,68.42194245000017],[-105.74762936099987,68.4209658870001],[-105.7271215489999,68.42658112200007],[-105.73029537699996,68.44082265800002],[-105.7193090489999,68.45652903899999],[-105.70518958199989,68.472398179],[-105.69758053299985,68.48883698100008],[-105.7060440749999,68.50629303600006],[-105.7181290359999,68.51341380400011],[-105.7440079419999,68.51813385600012],[-105.75763912699995,68.52334219],[-105.76496334499984,68.52960846600014],[-105.77867591099988,68.5506859400001],[-105.7625626289999,68.5635440120001],[-105.72447669199993,68.58258698100008],[-105.7060440749999,68.594671942],[-105.70205644399991,68.60053131700015],[-105.69786536399987,68.615423895],[-105.69273841099997,68.62262604400003],[-105.6822403639999,68.62750885600009],[-105.67072506399987,68.62824127800003],[-105.65908769399995,68.63011302300002],[-105.64834550699993,68.63873932500009],[-105.70018469999985,68.64069245000015],[-105.72769120999986,68.63825104400003],[-105.74738521999991,68.62913646000011],[-105.76585852799985,68.61798737200012],[-105.79100501199993,68.61196523600009],[-105.8166397779999,68.61286041900009],[-105.87913977799991,68.63934967700006],[-105.94123287699995,68.640082098],[-106.00487219999992,68.63129303600012],[-106.05239824099993,68.61953359600015],[-106.05719967399992,68.60150788000011],[-106.08702551999991,68.5925153670001],[-106.52204342399995,68.52667877800003],[-106.55333411399991,68.51585521000014],[-106.42235266799992,68.51585521000014],[-106.45449785099989,68.50946686400012],[-106.53888912699993,68.5077985700001],[-106.55955969999987,68.48859284100013],[-106.53091386599989,68.48493073100009],[-106.5118302069999,68.47288646],[-106.50975501199987,68.45856354400009],[-106.5322159499999,68.44757721600014],[-106.54914303299988,68.44855377800012],[-106.55943762899989,68.45612213700015],[-106.56554114499988,68.46466705900009],[-106.5697322259999,68.46869538000006],[-106.61774654899989,68.47211334800006],[-106.63524329299993,68.46869538000006],[-106.62730872299989,68.45237864800013],[-106.61192786399994,68.43838125200007],[-106.5926407539999,68.427435614],[-106.57315019399992,68.42023346600017],[-106.51610266799992,68.41583893400009],[-106.48794511599992,68.40741608300014],[-106.48753821499993,68.38922760600006],[-106.50641842399996,68.37807851800012],[-106.53282630099994,68.36945221600003],[-106.55622311099984,68.3587914080001],[-106.5663142569999,68.34113190300017],[-106.55528723899995,68.326402085],[-106.53575598899997,68.31207916900009],[-106.52806555899984,68.30109284100013],[-106.55272376199994,68.29677969000012],[-106.58031165299987,68.29759349200005],[-106.59288489499994,68.30072663000011],[-106.60423743399993,68.307318427],[-106.62051347599996,68.32827383000016],[-106.62466386599989,68.3315290390001],[-106.63219153599995,68.33466217700007],[-106.64281165299988,68.34829336100002],[-106.65172278599992,68.35138580900009],[-106.71686764199987,68.35138580900009],[-106.72203528599995,68.3553734400001],[-106.72402910099989,68.36448802300006],[-106.72402910099989,68.38247304900001],[-106.78673255099989,68.4149437520001],[-106.80622311099988,68.41083405200006],[-106.81110592399993,68.3984235700001],[-106.7923070949999,68.38556549700009],[-106.80996660099991,68.37079498900003],[-106.83967037699992,68.37152741100014],[-106.89590410099993,68.38556549700009],[-106.91441809799994,68.38572825700005],[-106.95677649599993,68.37250397300004],[-107.00902258999994,68.37132396],[-107.02562415299991,68.36505768400002],[-107.02228756399988,68.34845612200009],[-107.04564368399987,68.33698151200004],[-107.09732011599989,68.32099030200014],[-107.10944576699991,68.31346263199998],[-107.12165279899997,68.30817291900011],[-107.13109290299988,68.30072663000011],[-107.13487708199992,68.28681061400015],[-107.14077714799996,68.27212148600013],[-107.15514075399993,68.27008698100012],[-107.18952389199987,68.27692291900003],[-107.24620520699995,68.26727936400006],[-107.27391516799995,68.26874420800011],[-107.30077063699993,68.30727773600002],[-107.33556067599997,68.31879303600014],[-107.37462317599991,68.3237165390001],[-107.47126217399996,68.3189964860001],[-107.50890051999994,68.32355377800006],[-107.52529863199987,68.34113190300017],[-107.54653886599993,68.35175202000012],[-107.69249426999997,68.34251536700005],[-107.72809811099984,68.33356354400003],[-107.74502519399992,68.3315290390001],[-107.76504472599989,68.33441803600012],[-107.80626380099994,68.34516022300014],[-107.82697506399985,68.34454987200009],[-107.84727942599994,68.3332380230001],[-107.86095130099989,68.31386953300006],[-107.87315833199996,68.29100169499999],[-107.88902747299989,68.26947663000006],[-107.87751217399995,68.260728257],[-107.86099199099988,68.25185781500012],[-107.84219316299993,68.24494049700003],[-107.8242081369999,68.24213288],[-107.79430091099991,68.24241771000011],[-107.77944902299994,68.24070872600011],[-107.76553300699987,68.23590729400003],[-107.75788326699985,68.23029205900004],[-107.74885006399983,68.21808502800015],[-107.74502519399992,68.21426015800013],[-107.72956295499989,68.20722077000006],[-107.62043209499984,68.183294989],[-107.60309811099987,68.1750348980001],[-107.61465410099987,68.16705963700015],[-107.64134680899991,68.16616445500007],[-107.73143469999987,68.1807315120001],[-107.84434973899992,68.1807315120001],[-107.86473548099991,68.17715078300004],[-107.87694251199989,68.16889069200012],[-107.88581295499993,68.1595726580001],[-107.89586341099991,68.15277741100006],[-107.92467200399994,68.14801666900017],[-108.00963294199988,68.15460846600014],[-107.9892471999999,68.17226797100015],[-108.14907792899992,68.17328522300012],[-108.1845596999999,68.16962311400006],[-108.24327551999991,68.14549388200005],[-108.38923092399993,68.11102936400012],[-108.4200333319999,68.12238190300009],[-108.43626868399986,68.13678620000015],[-108.44001217399997,68.14569733299999],[-108.43399003799988,68.1561546900001],[-108.41812089799994,68.16478099199999],[-108.39785722599993,68.16815827],[-108.37755286399994,68.16632721600003],[-108.36139889199987,68.1596133480001],[-108.37633216099992,68.14858633000013],[-108.38247636599989,68.14594147300015],[-108.38247636599989,68.13971588700008],[-108.35423743399993,68.14044830900012],[-108.33763587099988,68.15509674700003],[-108.32982337099989,68.17829010600015],[-108.32787024599993,68.20457591399999],[-108.3314509759999,68.21332428600006],[-108.34044348899992,68.22370026200015],[-108.35155188699986,68.23236725500006],[-108.36196855399994,68.23590729400003],[-108.38052324099995,68.2316348330001],[-108.38890540299991,68.22158437700013],[-108.3923233709999,68.21002838700012],[-108.39614824099993,68.20115794500006],[-108.3992813789999,68.19574616100012],[-108.3997289699999,68.191148179],[-108.40172278599994,68.18646881700005],[-108.40977942599997,68.1807315120001],[-108.4503067699999,68.18683502800009],[-108.45759029899992,68.18691640800007],[-108.4572647779999,68.19741445500013],[-108.4503067699999,68.21112702000006],[-108.44102942599994,68.22410716400007],[-108.4161270819999,68.25018952000012],[-108.40217037699993,68.26894765800007],[-108.39976966099988,68.28729889500012],[-108.41661536399988,68.30418528900013],[-108.45270748599985,68.31264883000006],[-108.48566646999991,68.30402252800013],[-108.51667232999992,68.29026927300005],[-108.56017005099997,68.2787946640001],[-108.58409583199993,68.26007721600003],[-108.59976152299991,68.2558047550001],[-108.6974991529999,68.2558047550001],[-108.71027584499984,68.25092194200006],[-108.7199600899999,68.24144114800005],[-108.73216712099988,68.23493073100015],[-108.75243079299987,68.2389997420001],[-108.79600989499988,68.25495026200012],[-108.80703691299993,68.26264069200015],[-108.8150528639999,68.27423737200014],[-108.8102107409999,68.2783877620001],[-108.77969316299988,68.283148505],[-108.75487219999991,68.29718659100014],[-108.7440486319999,68.30634186400012],[-108.74901282499988,68.31037018400008],[-108.75300045499995,68.31574127800015],[-108.75560462099995,68.32754140800002],[-108.75495357999989,68.33917877800003],[-108.74901282499988,68.34454987200009],[-108.7333878249999,68.34699127800002],[-108.5945938789999,68.39915599200003],[-108.40611731699993,68.56085846600003],[-108.34715735599985,68.60008372600005],[-108.28083248599991,68.621568101],[-107.80638587099992,68.653509833],[-107.75308183499995,68.64598216400013],[-107.62832597599993,68.67413971600011],[-107.48322506399991,68.68512604400016],[-107.42568925699992,68.700140692],[-107.29259192599991,68.701402085],[-107.17837480399994,68.73916250200007],[-107.16592363199993,68.7455508480001],[-107.15290279899995,68.74970123900012],[-107.07506262899994,68.75739166900014],[-106.91079667899989,68.80036041900009],[-106.8566788399999,68.80597565300009],[-106.81883704299986,68.8153750670001],[-106.79942786399995,68.81753164300012],[-106.70323645699992,68.81126536699999],[-106.6656794909999,68.81622955900004],[-106.5663142569999,68.85228099199999],[-106.45103919199987,68.865139065],[-106.3804825509999,68.88629791900011],[-106.30581620999989,68.89642975500006],[-106.27212480399989,68.90692780200014],[-106.2630102199999,68.91445547100001],[-106.24421139199985,68.940375067],[-106.22175045499993,68.945990302],[-106.19749915299985,68.94440338700015],[-105.99779212099988,68.89948151200015],[-105.8122452459999,68.88580963700004],[-105.79649817599994,68.88271719000012],[-105.75080318899984,68.86591217700011],[-105.7120255199999,68.84194570500007],[-105.67845618399987,68.83222077000012],[-105.60680091099994,68.79022858300014],[-105.52245032499987,68.75372955900009],[-105.4942927729999,68.73387278899999],[-105.4695938789999,68.72199127800003],[-105.47842363199996,68.701361395],[-105.48546301999993,68.69147370000009],[-105.49445553299985,68.687201239],[-105.5063370429999,68.68585846600008],[-105.52293860599987,68.68183014500012],[-105.53795325399989,68.67536041900003],[-105.54531816299989,68.66669342700014],[-105.53917395699989,68.6500511740001],[-105.5210668609999,68.63471100500014],[-105.4838761059999,68.61212799700014],[-105.46662350199989,68.59756094000012],[-105.4091690749999,68.53058502800003],[-105.38744055899991,68.52024974200013],[-105.36070716099991,68.51642487200012],[-105.32624264199988,68.51585521000014],[-105.32648678299984,68.50726959800012],[-105.32412675699987,68.48248932500015],[-105.32624264199988,68.47492096600003],[-105.34019934799994,68.46971263200011],[-105.35472571499989,68.47394440300003],[-105.38145911399991,68.48859284100013],[-105.4022110669999,68.49363841399999],[-105.42007402299987,68.49428945500013],[-105.43732662699996,68.49042389500012],[-105.45653235599993,68.482367255],[-105.47158769399994,68.47174713700007],[-105.47704016799987,68.46869538000006],[-105.48517818899988,68.46621328300013],[-105.50226803299985,68.46360911700013],[-105.51056881399992,68.46124909100008],[-105.53595943899985,68.44989655200001],[-105.54718990799984,68.44049713700018],[-105.55150305899986,68.42772044500005],[-105.54393469999991,68.41388580900004],[-105.52700761599992,68.41030508000007],[-105.36693274599986,68.4205589860001],[-105.3330785799999,68.41347890800013],[-105.33600826699993,68.40403880400011],[-105.3404434889999,68.39533112200003],[-105.34630286399994,68.38727448100009],[-105.35350501199987,68.37929922100012],[-105.3230688139999,68.354437567],[-105.09512285099987,68.26951732000005],[-105.03921464799991,68.25910065300015],[-104.99665279899995,68.27692291900003],[-105.06578528599995,68.29905833500011],[-105.08600826699987,68.31037018400008],[-105.03343665299985,68.30914948100018],[-105.02086341099995,68.31415436400012],[-105.00963294199994,68.32196686400003],[-104.99681555899991,68.32501862200012],[-104.98420162699993,68.32265859600015],[-104.97301184799993,68.31415436400012],[-104.95319576699991,68.30744049700017],[-104.92642167899992,68.31500885600003],[-104.90339107999993,68.33144765800002],[-104.89419511599995,68.35138580900009],[-104.88068600199989,68.3402367210001],[-104.86408443899984,68.33454010600008],[-104.84886633999986,68.32709381700012],[-104.8395889959999,68.31037018400008],[-104.8421931629999,68.29189687700007],[-104.85651607999989,68.28082916900003],[-104.94497636599992,68.26056549700003],[-104.95189368399991,68.25177643400015],[-104.93517005099989,68.23590729400003],[-104.90916907499991,68.22671133000016],[-104.88463294199988,68.22947825700011],[-104.8395889959999,68.24957916900014],[-104.82819576699985,68.26186758000001],[-104.82005774599992,68.26512278900007],[-104.79743404899996,68.25210195500007],[-104.78506425699992,68.24909088700018],[-104.63414466099995,68.24957916900014],[-104.6019587879999,68.23533763200005],[-104.61725826699987,68.20246002800015],[-104.67568925699993,68.13971588700008],[-104.61725826699987,68.1395938170001],[-104.6036677729999,68.12872955900004],[-104.59943600199998,68.09471263200003],[-104.59162350199989,68.08331940300003],[-104.57347571499989,68.07843659100017],[-104.52944902299988,68.07672760600015],[-104.50666256399985,68.07074616100006],[-104.50007076699988,68.06708405199998],[-104.49986731699993,68.06073639500006],[-104.51146399599993,68.04873281500015],[-104.51060950399992,68.04291413],[-104.48387610599993,68.03392161699999],[-104.36327063699993,68.03668854400003],[-104.34679114499994,68.04132721600014],[-104.3323461579999,68.05052317900014],[-104.31700598899992,68.05707428600012],[-104.29832923099987,68.05377838700018],[-104.22948157499988,68.02985260600012],[-104.14761308499995,68.02423737200012],[-103.99030514199985,68.04865143400015],[-103.8785701159999,68.02334219000012],[-103.83560136599995,68.02130768400009],[-103.79259192599989,68.02627187700011],[-103.75649980399996,68.03668854400003],[-103.7437638009999,68.044663804],[-103.72203528599994,68.06415436400007],[-103.70872962099992,68.07086823100003],[-103.68708248599991,68.07196686400006],[-103.61620032499992,68.05719635600009],[-103.58629309799994,68.05670807500009],[-103.5717667309999,68.05829498900012],[-103.55793209499991,68.06342194200015],[-103.54377193899988,68.07135651200008],[-103.54161536399988,68.07501862200014],[-103.54434160099996,68.07982005400005],[-103.54552161399988,68.10101959800015],[-103.54841061099991,68.10659414300014],[-103.54767818899988,68.11322663000011],[-103.53742428299986,68.12604401200015],[-103.52843176999994,68.13300202000015],[-103.44253495999992,68.16738515800007],[-103.41486568899992,68.16937897300012],[-103.38658606699995,68.1596133480001],[-103.37124589799991,68.14858633000013],[-103.35850989499995,68.13629791900009],[-103.33877519399992,68.11180247600005],[-103.35020911399988,68.102972723],[-103.36241614499995,68.0964216170001],[-103.3730362619999,68.08905670800011],[-103.37975012899993,68.07762278900007],[-103.37743079299989,68.07257721600003],[-103.36815344999992,68.04413483300003],[-103.3660782539999,68.03327057500003],[-103.3660782539999,68.01850006700013],[-103.36351477799991,68.01146067900008],[-103.3544815749999,68.00946686400012],[-103.31777910099989,68.00771719000012],[-103.30532792899986,68.003119208],[-103.26886959499991,67.97915273600013],[-103.25617428299985,67.97313060100005],[-103.24201412699992,67.96995677299999],[-103.22207597599993,67.96841054900013],[-103.17707271999986,67.97003815300015],[-103.15453040299985,67.96759674700003],[-103.13646399599995,67.95783112200009],[-103.11172441299986,67.93927643400018],[-103.08299719999992,67.92747630400011],[-103.05101477799992,67.92145416900009],[-103.01667232999996,67.91998932500003],[-102.96499589799993,67.92938873900005],[-102.94835364499988,67.92682526200015],[-102.92467200399996,67.9024925800001],[-102.92039954299985,67.89614492400015],[-102.90916907499985,67.88507721600003],[-102.8384903639999,67.84491608300011],[-102.76256262899996,67.81513092700003],[-102.57282467399988,67.79511139500012],[-102.45107988199996,67.7822940120001],[-102.34080969999987,67.75092194200005],[-102.30589758999987,67.72325267100017],[-102.25381425699992,67.73041413000011],[-102.24205481699994,67.72508372600005],[-102.23949133999992,67.7070987000001],[-102.2318009109999,67.695054429],[-102.2189021479999,67.69183991100013],[-102.20103919199993,67.7002627620001],[-102.21003170499995,67.70514557500013],[-102.22008216099992,67.71409739799999],[-102.22744706899992,67.724798895],[-102.2283829419999,67.73505280200014],[-102.21849524599988,67.74201080900004],[-102.16755123599987,67.75547923400002],[-102.14342200399996,67.771958726],[-102.13072669199988,67.77509186400005],[-102.10142981699988,67.755560614],[-102.08299719999985,67.75006745000015],[-102.06305904899995,67.74815501500011],[-102.02570553299991,67.75047435100008],[-102.01187089799991,67.75360748900015],[-102.00035559799997,67.75934479400003],[-101.98875891799985,67.76923248900012],[-101.99034583199987,67.77122630400008],[-101.99315344999994,67.77647532800013],[-101.9937231109999,67.78314850500001],[-101.98875891799985,67.78965892100011],[-101.98058020699995,67.79157135600013],[-101.94749915299991,67.78965892100011],[-101.93907630099994,67.78575267100011],[-101.93032792899989,67.77667877800009],[-101.91673743399993,67.75889720300002],[-101.89976966099995,67.74913157800007],[-101.8576554029999,67.74689362200009],[-101.83796139199984,67.74188873900006],[-101.83844967399993,67.73309967699998],[-101.83397376199989,67.72418854400014],[-101.82648678299991,67.71727122600004],[-101.81810462099995,67.71454498900009],[-101.81065833199996,67.71324290600008],[-101.7979630199999,67.70811595300006],[-101.78954016799986,67.70770905200006],[-101.78425045499998,67.71124909100014],[-101.77033443899991,67.7282168640001],[-101.7418106759999,67.72764720300013],[-101.71959387899994,67.71653880400011],[-101.69859778599991,67.70270416900001],[-101.67345130099993,67.69403717700011],[-101.65591386599989,67.69476959800006],[-101.62193762899994,67.700628973],[-101.60521399599992,67.697211005],[-101.58836829299992,67.69078196800008],[-101.54727128799992,67.68134186400005],[-101.52944902299994,67.68040599199999],[-101.48078365799991,67.69599030200008],[-101.4717504549999,67.697211005],[-101.45661373599991,67.68968333500014],[-101.43643144399987,67.68809642100011],[-101.41592363199992,67.69025299700012],[-101.39976966099995,67.69403717700011],[-101.41047115799998,67.705023505],[-101.44591223899988,67.71332428600006],[-101.45441646999991,67.72199127800015],[-101.44766191299988,67.73436107],[-101.4298396479999,67.73615143400018],[-101.40965735599987,67.7316755230001],[-101.38206946499986,67.71845123900009],[-101.36949622299996,67.72028229400013],[-101.35643469999988,67.725287177],[-101.34080969999991,67.7282168640001],[-101.28156490799991,67.7201602230001],[-101.26256262899992,67.72199127800015],[-101.24181067599991,67.73688385600012],[-101.24657141799992,67.75474681200008],[-101.25243079299985,67.76972077000003],[-101.2349747389999,67.77598704600015],[-101.21825110599987,67.77281321800011],[-101.19033769399992,67.75873444200005],[-101.17381751199984,67.75547923400002],[-101.1567276679999,67.75889720300002],[-101.12755286399995,67.77594635600018],[-101.11172441299992,67.78282298400008],[-101.09483801999991,67.78660716400009],[-101.09268144399992,67.78461334800006],[-101.09666907499991,67.77818431200014],[-101.09805253799989,67.76923248900012],[-101.09658769399992,67.75486888200005],[-101.09764563699989,67.7490908870001],[-101.09284420499989,67.74815501500011],[-100.95685787699996,67.74921295800006],[-100.91934160099994,67.75547923400002],[-100.89220130099991,67.77057526200012],[-100.90249589799994,67.78648509300005],[-100.92218990799998,67.80316803600009],[-100.92308508999989,67.820746161],[-100.90729732999993,67.828558661],[-100.89195716099988,67.82489655200006],[-100.87857011599988,67.81578196800014],[-100.86847896999991,67.80699290600008],[-100.84959876199989,67.79682038000014],[-100.83128821499992,67.79596588700004],[-100.8135880199999,67.80137767100008],[-100.76911373599991,67.82648346600008],[-100.75377356699995,67.82746002800015],[-100.7349747389999,67.81696198100018],[-100.72712154899993,67.82591380400011],[-100.71703040299985,67.84699127800003],[-100.7073868479999,67.85114166900017],[-100.68732662699993,67.84833405200011],[-100.66148841099992,67.8354352890001],[-100.6456192699999,67.83124420800007],[-100.61217200399993,67.84430573100015],[-100.59276282499991,67.84703196800002],[-100.58413652299991,67.834662177],[-100.58714758999992,67.82428620000009],[-100.59264075399993,67.81635163000011],[-100.5954483709999,67.80809153900003],[-100.59040279899996,67.79645416900001],[-100.54426021999986,67.80748118700008],[-100.4588923819999,67.84251536700008],[-100.41283118399987,67.85114166900017],[-100.16641191299989,67.84491608300011],[-100.14696204299987,67.8405622420001],[-100.10220292899993,67.82135651200015],[-100.08047441299988,67.81696198100018],[-100.02867591099995,67.82440827000006],[-100.01357988199996,67.82184479400014],[-99.9835098949999,67.81134674700009],[-99.96784420499993,67.81012604400014],[-99.95759029899992,67.8129336610001],[-99.93797766799986,67.82221100500006],[-99.92686926999993,67.82440827000006],[-99.91222083199992,67.82318756700015],[-99.8716527989999,67.81012604400014],[-99.81704667899994,67.80088939000011],[-99.79271399599988,67.80491771000008],[-99.79527747299989,67.82440827000006],[-99.76781165299994,67.82648346600008],[-99.68614661399994,67.81651439000008],[-99.66246497299991,67.80699290600008],[-99.64883378799988,67.79694245000012],[-99.63459225199995,67.792710679],[-99.61961829299993,67.79393138200011],[-99.58665930899987,67.80621979400017],[-99.5674535799999,67.80772532800002],[-99.51048743399988,67.80125560100011],[-99.4948624339999,67.79645416900001],[-99.49136308499992,67.79340241100012],[-99.4888809889999,67.788804429],[-99.48761959499988,67.78461334800006],[-99.48741614499991,67.78282298400008],[-99.47061113199992,67.78168366100014],[-99.46125240799998,67.78668854400009],[-99.4529516269999,67.79328034100014],[-99.4396052729999,67.79645416900001],[-99.42369544199995,67.79413483300006],[-99.4113663399999,67.78851959800006],[-99.3911840489999,67.77598704600015],[-99.37486731699997,67.76972077000003],[-99.35777747299993,67.76544830900009],[-99.3163956369999,67.76231517100003],[-99.2952774729999,67.75535716400005],[-99.2529190749999,67.723496812],[-99.22667395699996,67.71454498900009],[-99.21642005099994,67.71503327000006],[-99.2010391919999,67.72032298400013],[-99.1931860019999,67.72199127800015],[-99.18358313699993,67.72081126500005],[-99.16803951699984,67.71491120000009],[-99.15843665299987,67.71454498900009],[-99.12559973899995,67.72589752800015],[-99.10903886599988,67.729193427],[-99.0558162099999,67.71954987200003],[-99.01842200399996,67.72296784100003],[-98.98167883999987,67.72203196800014],[-98.93643144399994,67.69684479400009],[-98.92438717399992,67.70075104400016],[-98.91543535099989,67.71161530200004],[-98.90982011599989,67.73924388200008],[-98.90339107999998,67.74754466400005],[-98.89268958199996,67.75226471600014],[-98.87791907499988,67.75547923400002],[-98.77993730399996,67.74827708500008],[-98.73228919199988,67.75409577000012],[-98.69977779899992,67.78965892100011],[-98.70604407499985,67.80170319200003],[-98.69831295499995,67.80963776200018],[-98.68260657499988,67.81268952000006],[-98.66494706899996,67.81012604400014],[-98.64561926999994,67.80137767100008],[-98.63052324099993,67.79254791900003],[-98.6137589179999,67.78563060100014],[-98.58926347599987,67.78282298400008],[-98.40868079299989,67.78953685100014],[-98.39647376199989,67.788804429],[-98.37857011599992,67.79002513200011],[-98.36335201699985,67.79462311400006],[-98.35655676999993,67.803900458],[-98.3609513009999,67.81134674700009],[-98.39439856699987,67.834662177],[-98.43199622299996,67.85480377800003],[-98.43594316299995,67.85850657800007],[-98.44196529899997,67.86066315300015],[-98.45225989499988,67.870062567],[-98.45954342399988,67.87217845300002],[-98.47069251199991,67.87091705900009],[-98.49010169199994,67.86591217700004],[-98.50047766799992,67.86542389500006],[-98.53547115799992,67.87323639500006],[-98.56940670499998,67.88585032800013],[-98.60895748599992,67.9101423200001],[-98.6444392569999,67.91868724200005],[-98.71275794199991,67.94493235900016],[-98.72704016799987,67.95783112200009],[-98.73387610599991,68.03668854400003],[-98.7420548169999,68.05060455900012],[-98.74282792899992,68.06000397300012],[-98.73387610599991,68.07086823100003],[-98.7167048819999,68.07493724199999],[-98.64452063699989,68.07086823100003],[-98.62913977799985,68.07542552300008],[-98.5969945949999,68.09430573100009],[-98.58458411399995,68.09638092700011],[-98.56798255099991,68.08848704600014],[-98.56004798099994,68.07994212400003],[-98.55451412699992,68.07066478100008],[-98.54523678299995,68.06028880400008],[-98.52232825399997,68.04559967700008],[-98.34776770699997,67.96446360900013],[-98.31403561099987,67.95514557500009],[-98.25743567599997,67.92584870000009],[-98.24107825399994,67.91376373900009],[-98.23436438699991,67.90416087400011],[-98.22598222599994,67.88731517100011],[-98.21934973899988,67.87909577],[-98.20840410099993,67.87030670800013],[-98.18488521999986,67.85565827000012],[-98.17528235599988,67.84796784100011],[-98.09211178299991,67.76032135600009],[-98.0828344389999,67.75547923400002],[-98.07559160099996,67.75702545800006],[-98.05703691299993,67.76654694200015],[-98.04865475199988,67.76923248900012],[-98.03709876199986,67.76801178600002],[-97.98436438699989,67.75031159100011],[-97.97500566299992,67.7451846370001],[-97.93944251199986,67.70441315300003],[-97.92723548099988,67.69688548400008],[-97.90835527299996,67.69403717700011],[-97.83096269399996,67.69249095300007],[-97.79596920499995,67.6846377620001],[-97.76060950399993,67.66673411700005],[-97.74083411399994,67.65241120000015],[-97.73045813699991,67.64850495000015],[-97.71222896999984,67.64569733300011],[-97.67418372299994,67.64683665600013],[-97.65587317599989,67.645005601],[-97.64085852799988,67.63605377800015],[-97.61969967399995,67.61839427300013],[-97.59032141799986,67.602972723],[-97.55793209499987,67.59540436400005],[-97.49547278599991,67.60814036700009],[-97.41502844999994,67.61066315300002],[-97.38731848899994,67.62177155200006],[-97.3658748039999,67.63739655200013],[-97.33507239499994,67.65289948100015],[-97.30223548099994,67.66400788000009],[-97.27464758999992,67.66673411700005],[-97.25633704299986,67.65509674700006],[-97.23521887899994,67.635443427],[-97.2132462229999,67.62457916900011],[-97.1921280589999,67.63947174700014],[-97.1969294909999,67.66437409100008],[-97.15196692599991,67.67462799700003],[-97.06114661399991,67.68040599199999],[-97.07599850199989,67.69151439000002],[-97.09357662699992,67.70087311400013],[-97.13003495999988,67.71454498900009],[-97.15599524599989,67.71735260600003],[-97.20384680899991,67.71088288000011],[-97.22622636599989,67.71454498900009],[-97.21108964799993,67.73399485900008],[-97.12010657499988,67.77940501500008],[-97.12083899599992,67.79303620000003],[-97.13459225199992,67.81309642100008],[-97.16478430899994,67.84491608300011],[-97.1739802729999,67.85044993700005],[-97.1974177729999,67.85997142100003],[-97.20571855399987,67.86542389500006],[-97.2120255199999,67.87506745000002],[-97.21715247299991,67.89415110900002],[-97.2228083979999,67.90289948100009],[-97.24958248599992,67.92462799700014],[-97.26284745999993,67.92194245000009],[-97.27415930899991,67.90550364799999],[-97.29515540299987,67.88585032800013],[-97.32701575399989,67.87592194200012],[-97.36351477799985,67.8769391950001],[-97.39745032499991,67.88670482000003],[-97.44456946499989,67.92182038000011],[-97.47118079299992,67.93537018400018],[-97.57355709499984,67.97431061400006],[-97.64085852799988,68.00938548400013],[-97.65786699099993,68.01337311400012],[-97.67577063699989,68.02033112200003],[-97.69322669199994,68.02265045800009],[-97.70946204299987,68.01276276200015],[-97.71373450399987,68.00226471600008],[-97.71344967399995,67.98273346600003],[-97.7197159499999,67.97528717700014],[-97.72960364499991,67.97325267100003],[-97.74022376199989,67.97577545800011],[-97.75080318899991,67.97955963700015],[-97.76699785099987,67.982896226],[-97.77049719999988,67.98590729400009],[-97.77428137899989,67.98749420800011],[-97.78140214799993,67.98517487200014],[-97.79478919199994,67.97528717700014],[-97.83287512899992,67.97593821800008],[-97.84992428299998,67.9741071640001],[-97.87047278599994,67.96836985900013],[-97.95750891799987,67.92902252800015],[-97.97695878799988,67.9305280620001],[-97.99083411399997,67.95343659100008],[-98.0015356109999,67.95945872600011],[-98.01764889199987,67.95136139500009],[-98.05890865799992,67.91685618700016],[-98.06602942599996,67.89923737200006],[-98.06411699099989,67.87474192900011],[-98.05711829299992,67.85167064000014],[-98.04865475199988,67.838080145],[-98.07335364499997,67.83140696800014],[-98.09504146999987,67.83661530200014],[-98.13121497299987,67.85850657800007],[-98.17153886599993,67.875677802],[-98.17857825399992,67.88068268400004],[-98.19489498599987,67.89618561400015],[-98.1964005199999,67.89952220300007],[-98.20262610599985,67.905951239],[-98.21174068899987,67.91998932500003],[-98.22329667899987,67.934068101],[-98.23737545499992,67.9404971370001],[-98.25255286399991,67.94505442900014],[-98.30870520699992,67.97528717700014],[-98.38365637899994,67.9987246770001],[-98.40489661399994,68.00938548400013],[-98.41690019399996,68.0225283870001],[-98.44896399599995,68.07086823100003],[-98.46324622299994,68.07554759300014],[-98.50544186099988,68.099066473],[-98.53429114499991,68.12067291900009],[-98.57258053299995,68.13812897300006],[-98.58991451699984,68.15277741100006],[-98.57713782499987,68.15607330900008],[-98.5641169909999,68.15216705900009],[-98.53526770699997,68.13971588700008],[-98.52843176999993,68.16229889500005],[-98.50670325399989,68.18121979400009],[-98.47940019399991,68.19037506700006],[-98.45612545499989,68.18378327],[-98.44762122299994,68.17841217700014],[-98.43838456899991,68.174261786],[-98.43049068899992,68.16889069200012],[-98.42540442599991,68.1596133480001],[-98.42609615799995,68.14813873900015],[-98.43712317599989,68.12933991099999],[-98.43907630099994,68.11859772300006],[-98.41144771999984,68.08246491100014],[-98.3635961579999,68.09398021000007],[-98.32453365799995,68.12811920800009],[-98.32298743399991,68.1596133480001],[-98.3155411449999,68.16705963700015],[-98.34068762899992,68.1807315120001],[-98.36807206899995,68.1898054060001],[-98.48631751199991,68.21556224200005],[-98.54149329299995,68.23590729400003],[-98.52672278599994,68.237738348],[-98.51231848899987,68.23676178600012],[-98.49901282499987,68.23883698100015],[-98.48745683499992,68.24957916900014],[-98.54230709499984,68.26727936400006],[-98.59215247299991,68.29157135600006],[-98.68610592399997,68.35138580900009],[-98.7105606759999,68.36070384300014],[-98.71808834499987,68.36762116100013],[-98.71336829299986,68.37925853100013],[-98.69839433499993,68.384711005],[-98.67308508999989,68.386460679],[-98.64720618399987,68.38544342700011],[-98.63084876199986,68.38243235900002],[-98.54442298099985,68.33966705900012],[-98.51475989499991,68.3315290390001],[-98.51720130099994,68.34125397300015],[-98.52281653599995,68.348822333],[-98.53111731699994,68.35455963700015],[-98.54149329299995,68.3588320980001],[-98.54149329299995,68.36505768400002],[-98.49803626199989,68.35350169500009],[-98.47740637899996,68.35248444200015],[-98.45954342399988,68.36505768400002],[-98.52098548099988,68.39976634300011],[-98.54076087099992,68.41478099200013],[-98.54084225199989,68.424017645],[-98.52599036399991,68.42540110900008],[-98.50112870999986,68.41685618700012],[-98.45490475199998,68.38707103100013],[-98.43907630099994,68.37925853100013],[-98.43073482999993,68.37677643400004],[-98.31761633999994,68.35679759300014],[-98.25324459499984,68.31757233300011],[-98.21312415299994,68.30418528900013],[-98.19237219999994,68.30768463700012],[-98.17418372299994,68.31907786699999],[-98.15998287699992,68.33063385600009],[-98.15135657499991,68.33466217700007],[-98.1311742829999,68.32697174700014],[-98.10578365799995,68.32172272300006],[-98.08259029899995,68.32379791900009],[-98.06847083199992,68.33771393400015],[-98.11050370999988,68.34971751500008],[-98.11693274599989,68.35508860900013],[-98.11066646999984,68.36448802300006],[-98.09557044199994,68.36749909100016],[-97.90465247299991,68.34454987200009],[-97.90831458199997,68.391546942],[-97.85118567599989,68.38959381700006],[-97.7815649079999,68.37116120000002],[-97.74762936099987,68.36871979400009],[-97.75426184799991,68.38898346600011],[-97.77098548099985,68.4019636090001],[-97.79295813699986,68.40949127800015],[-97.8679906889999,68.41657135600012],[-97.88414466099997,68.42023346600017],[-97.8951716789999,68.42413971600017],[-97.90746008999984,68.43016185100008],[-97.9116918609999,68.43817780200011],[-97.89842688699984,68.44757721600014],[-97.98643958199989,68.48179759300002],[-98.01048743399991,68.49909088700012],[-98.01268469999991,68.50792064000008],[-98.00967363199989,68.520005601],[-98.00365149599992,68.53192780200011],[-97.9971410799999,68.54035065300017],[-97.97964433499996,68.54706452000012],[-97.96007239499988,68.54307689000014],[-97.92516028599995,68.53009674700014],[-97.90733801999987,68.53131745000015],[-97.8740128249999,68.54173411700005],[-97.85627193899992,68.54376862200009],[-97.79605058499993,68.53209056200006],[-97.7054744129999,68.52781810100007],[-97.6886287099999,68.51959870000017],[-97.68154863199993,68.51451243700014],[-97.66771399599995,68.51011790600008],[-97.66136633999992,68.50629303600006],[-97.65558834499987,68.49811432500015],[-97.65550696499989,68.49164459800015],[-97.6575414699999,68.48643626500014],[-97.65758216099991,68.482367255],[-97.63585364499991,68.45543040600002],[-97.61148027299987,68.44391510600009],[-97.58291581899988,68.43699778899999],[-97.54869544199988,68.424017645],[-97.52936764199987,68.42072174700014],[-97.51333574099988,68.42719147300006],[-97.50377356699987,68.43614329600008],[-97.5036514959999,68.44078196800002],[-97.5072322259999,68.44293854400003],[-97.51244055899988,68.44757721600014],[-97.5191951159999,68.45233795800013],[-97.52757727799988,68.45441315300015],[-97.57506262899989,68.44757721600014],[-97.60997473899991,68.45197174700003],[-97.61660722599986,68.45441315300015],[-97.62096106699997,68.46210358300009],[-97.6190486319999,68.46442291900013],[-97.61440995999988,68.46527741100014],[-97.61046301999991,68.46869538000006],[-97.60285396999986,68.48126862200014],[-97.59162350199993,68.4921735700001],[-97.57774817599996,68.49994538000011],[-97.56236731699994,68.50287506700015],[-97.43000240799995,68.50556061400012],[-97.26036536399991,68.46869538000006],[-97.24909420499992,68.44586823100003],[-97.10952714799993,68.39301178600006],[-97.12319902299987,68.39691803600006],[-97.14354407499985,68.39781321800014],[-97.16226152299993,68.39439524900013],[-97.17100989499991,68.38556549700009],[-97.16197669199987,68.37763092700011],[-97.14073645699992,68.37144603100016],[-97.00991777299987,68.35004303600012],[-96.99347896999988,68.33771393400015],[-96.99909420499998,68.32794830900004],[-97.00088456899996,68.31745026200015],[-96.99901282499991,68.30683014500003],[-96.99347896999988,68.29673899900014],[-97.01244055899988,68.29816315300003],[-97.0560603509999,68.30662669500008],[-97.07201087099992,68.30048248900009],[-97.08299719999988,68.28611888200011],[-97.08678137899989,68.27403392100011],[-97.08063717399992,68.26569245000003],[-96.97158769399994,68.25385163000009],[-96.94904537699995,68.24473704600008],[-96.93822180899988,68.24213288],[-96.9264216789999,68.24274323100005],[-96.69001217399992,68.28644440300002],[-96.67137610599991,68.283148505],[-96.6632380849999,68.2648786480001],[-96.65737870999996,68.25922272300012],[-96.64761308499993,68.25739166900014],[-96.64037024599988,68.25934479400011],[-96.6348363919999,68.25889720300002],[-96.63036048099991,68.24957916900014],[-96.67951412699995,68.23871491100009],[-96.69172115799992,68.22813548400002],[-96.68126380099993,68.21112702000006],[-96.66380774599989,68.19928620000009],[-96.64146887899994,68.18903229400017],[-96.62096106699988,68.18565501500014],[-96.60863196499994,68.19432200700005],[-96.63394120999989,68.21393463700012],[-96.6222224599999,68.23480866100007],[-96.59203040299988,68.25421784100008],[-96.48619544199987,68.30341217700003],[-96.44692949099996,68.31395091400007],[-96.40379798099985,68.31785716400007],[-96.46939042899987,68.28595612200013],[-96.47956295499992,68.27317942900002],[-96.48033606699994,68.24323151200004],[-96.48326575399994,68.22882721600017],[-96.48949133999992,68.21796295800009],[-96.52452551999991,68.19171784100014],[-96.64342200399987,68.13971588700008],[-96.62474524599992,68.12531159100003],[-96.63768469999991,68.11347077000006],[-96.66559811099987,68.10614655200006],[-96.6918025379999,68.10496653900013],[-96.68736731699991,68.09503815300003],[-96.68496660099986,68.09129466400002],[-96.71532141799986,68.08405182500017],[-96.75694739499991,68.080430406],[-96.79503333199992,68.07196686400006],[-96.81476803299994,68.05036041900017],[-96.8018692699999,68.02684153900009],[-96.76451575399997,68.01715729400014],[-96.6918025379999,68.01618073100018],[-96.67707271999988,68.02155182500003],[-96.66885331899991,68.033880927],[-96.66368567599991,68.0475934920001],[-96.65770423099988,68.05719635600009],[-96.64240475199992,68.06293366100006],[-96.61676998599985,68.06818268400004],[-96.59264075399994,68.06871165600002],[-96.58193925699993,68.06028880400008],[-96.56273352799988,68.04047272300006],[-96.5193985669999,68.03620026200004],[-96.47297115799994,68.04144928600012],[-96.44481360599985,68.05036041900017],[-96.46597245999996,68.05919017100001],[-96.48574785099989,68.07086823100003],[-96.47891191299996,68.09056224200008],[-96.49986731699991,68.09381745000012],[-96.54845130099997,68.08506907800013],[-96.52501380099989,68.11603424700017],[-96.49132239499988,68.13483307500003],[-96.39810136599996,68.17137278900007],[-96.34626217399995,68.1846377620001],[-96.32502193899988,68.18687571800008],[-96.31525631399984,68.18915436400015],[-96.29328365799992,68.198919989],[-96.21263587099988,68.21031321800014],[-96.15054277299996,68.22846100500006],[-96.00938880099991,68.25226471600014],[-95.98981686099987,68.25999583500005],[-95.9717911449999,68.26947663000006],[-95.9493302069999,68.28587474200006],[-95.93765214799993,68.29059479400017],[-95.90684973899994,68.294378973],[-95.89671790299991,68.29673899900014],[-95.91344153599994,68.27435944200012],[-95.93879146999987,68.25250885600009],[-96.0423884759999,68.18866608300006],[-96.0665583979999,68.16852448100003],[-96.08165442599991,68.14594147300015],[-96.02440344999985,68.11570872600005],[-96.04637610599987,68.07640208500014],[-96.08604895699989,68.03770579600008],[-96.08165442599991,68.00938548400013],[-96.09048417899996,67.99701569200003],[-96.12267005099991,67.96836985900013],[-96.13076738199993,67.95685455900009],[-96.14012610599987,67.93292877800006],[-96.14683997299991,67.92340729400014],[-96.15339107999989,67.91624583500003],[-96.16144771999984,67.90534088700004],[-96.16820227799988,67.89325592700011],[-96.17589270699989,67.86631907800016],[-96.18740800699993,67.85455963700018],[-96.20103919199997,67.84385814000014],[-96.21202551999994,67.83124420800007],[-96.2167862619999,67.81024811400012],[-96.21637936099992,67.78034088700015],[-96.20946204299992,67.75348541900017],[-96.19493567599989,67.74188873900006],[-96.19131425699993,67.736517645],[-96.20075436099984,67.72443268400009],[-96.22227942599994,67.70396556200004],[-96.22215735599988,67.698960679],[-96.21800696499994,67.69139232000005],[-96.21190344999985,67.684271552],[-96.20579993399988,67.68040599199999],[-96.17105058499989,67.7002627620001],[-96.18187415299991,67.64288971600017],[-96.19717363199987,67.62702057500002],[-96.23253333199989,67.62518952000006],[-96.25304114499993,67.629828192],[-96.26707923099988,67.63727448100015],[-96.27843176999997,67.64813873900006],[-96.29088294199988,67.663031317],[-96.29670162699992,67.67450592700006],[-96.30060787699992,67.68659088700015],[-96.30724036399991,67.6963565120001],[-96.32127844999985,67.7002627620001],[-96.3439021479999,67.689398505],[-96.34447180899988,67.66388580900009],[-96.33690344999994,67.6344668640001],[-96.33495032499987,67.61212799700009],[-96.35724850199992,67.58283112200014],[-96.39142818899991,67.56700267100003],[-96.46524003799993,67.54950592700008],[-96.44050045499995,67.54332103100002],[-96.43114173099991,67.54328034100003],[-96.4377335279999,67.53331126500002],[-96.44933020699992,67.5230573590001],[-96.46524003799993,67.51219310100011],[-96.46524003799993,67.47801341400013],[-96.45958411399994,67.47479889500006],[-96.44668535099993,67.48090241100006],[-96.4243057929999,67.49481842700014],[-96.40859941299993,67.49725983300006],[-96.39207923099985,67.49607982000005],[-96.37621008999994,67.49091217700014],[-96.36221269399988,67.481146552],[-96.37588456899991,67.46320221600014],[-96.36457271999993,67.45543040600013],[-96.34520423099991,67.451361395],[-96.33495032499987,67.44391510600012],[-96.32603919199994,67.44065989800006],[-96.28034420499992,67.44249095300013],[-96.26040605399993,67.44086334800012],[-96.23444576699984,67.4293073590001],[-96.22569739499997,67.42649974200005],[-96.21003170499989,67.42560455900015],[-96.18675696499989,67.43219635600002],[-96.17446855399993,67.434027411],[-96.15318762899993,67.44220612200012],[-96.13658606699987,67.45880768400013],[-96.1192927729999,67.47125885600008],[-96.09593665299991,67.46747467700006],[-96.10167395699997,67.4543317730001],[-96.09601803299998,67.446966864],[-96.08332271999993,67.44322337400015],[-96.06802324099996,67.44086334800012],[-96.08446204299986,67.42747630400011],[-96.09984290299988,67.42255280200006],[-96.11139889199993,67.41539134300002],[-96.11583411399988,67.39549388200011],[-96.12254798099994,67.383490302],[-96.13841712099985,67.36839427299999],[-96.17105058499989,67.34398021000014],[-96.2083227199999,67.33112213700012],[-96.22533118399986,67.32212962400008],[-96.23253333199989,67.30683014500012],[-96.23534094999994,67.28961823100003],[-96.24864661399994,67.26316966400005],[-96.25300045499995,67.24774811400003],[-96.17105058499989,67.25523509300008],[-96.16148841099994,67.25751373900006],[-96.15172278599987,67.26105377800003],[-96.1421606109999,67.26264069200005],[-96.13316809799989,67.25865306200008],[-96.12999426999991,67.25145091400005],[-96.13170325399992,67.24363841400007],[-96.13687089799993,67.23472728100002],[-96.11074785099986,67.22186920799999],[-96.07510331899991,67.22581614799999],[-96.03783118399994,67.23932526200015],[-96.00658118399988,67.25523509300008],[-95.9610896479999,67.29047272300012],[-95.94448808499993,67.29621002800009],[-95.93879146999987,67.29462311400006],[-95.93399003799988,67.28485748900012],[-95.92772376199991,67.28253815300015],[-95.91661536399991,67.283636786],[-95.90807044199995,67.28656647300011],[-95.7903946609999,67.34861888200008],[-95.7800186839999,67.36505768400013],[-95.76097571499992,67.37116120000013],[-95.73497473899994,67.37645091400013],[-95.71629798099985,67.37604401200012],[-95.71922766799989,67.36505768400013],[-95.69933020699997,67.35484446800002],[-95.68895423099988,67.3428408870001],[-95.6780492829999,67.33502838700012],[-95.65648352799991,67.33783600500006],[-95.63780676999991,67.34772370000017],[-95.6318253249999,67.35834381700012],[-95.62987219999985,67.36908600500011],[-95.62295488199996,67.37938060100005],[-95.60326087099992,67.38707103100008],[-95.58136959499987,67.38483307500009],[-95.56118730399996,67.37628815300015],[-95.53661048099994,67.357123114],[-95.53392493399986,67.35773346600014],[-95.53604081899996,67.3566755230001],[-95.54043535099994,67.34398021000014],[-95.5541072259999,67.3241641300001],[-95.58454342399995,67.30133698100012],[-95.81167558499988,67.1928571640001],[-95.83527584499993,67.16583893400015],[-95.8072810539999,67.16917552299999],[-95.75475012899994,67.18366120000006],[-95.72911536399988,67.1869570980001],[-95.7066137359999,67.19428131700009],[-95.66612708199993,67.22410716399999],[-95.6434626939999,67.2279727230001],[-95.65054277299987,67.22321198100008],[-95.66397050699996,67.20685455900018],[-95.62108313699987,67.20311107000005],[-95.52188066299993,67.21959056200002],[-95.48521887899992,67.20062897300004],[-95.49250240799995,67.19782135600015],[-95.49950110599991,67.193793036],[-95.49372311099987,67.19013092700004],[-95.48452714799988,67.18272532800016],[-95.47838294199991,67.18012116100006],[-95.48778235599994,67.16705963700016],[-95.49168860599994,67.15888092700008],[-95.49205481699994,67.152818101],[-95.48643958199993,67.14301178600006],[-95.48257402299991,67.14134349200003],[-95.47594153599987,67.1436221370001],[-95.4615779289999,67.1453718120001],[-95.44273841099997,67.15180084800004],[-95.43956458199987,67.16697825700003],[-95.44139563699987,67.18524811400009],[-95.4374080069999,67.20062897300004],[-95.42894446499986,67.18891022300012],[-95.42438717399992,67.184759833],[-95.38711503799993,67.16063060100008],[-95.38280188699994,67.1596540390001],[-95.38280188699994,67.1514346370001],[-95.38735917899987,67.14378489800008],[-95.39313717399993,67.13898346600008],[-95.39647376199989,67.13922760600003],[-95.37987219999991,67.11338939000011],[-95.37938391799992,67.107855536],[-95.41299394399994,67.08136627800012],[-95.41763261599996,67.069769598],[-95.40322831899991,67.05597565300009],[-95.38048255099996,67.04926178600014],[-95.35704505099989,67.04755280200013],[-95.33779863199993,67.04173411699999],[-95.32754472599993,67.02252838700004],[-95.33031165299988,67.01036204600014],[-95.34772701699987,66.97382233299999],[-95.35545813699986,66.96409739800004],[-95.36685136599992,66.96271393400018],[-95.3907771479999,66.97252024900011],[-95.40322831899991,66.97406647300015],[-95.41226152299993,66.96775950700011],[-95.41681881399987,66.95738353100002],[-95.4214574859999,66.94928620000009],[-95.47638912699996,66.95420970300013],[-95.60350501199986,66.94684479400014],[-95.6366267569999,66.96784088700008],[-95.62612870999993,66.96922435100008],[-95.61685136599996,66.97321198100006],[-95.60875403599992,66.97968170800006],[-95.60191809799991,66.98834870000006],[-95.65794837099986,66.98297760600008],[-95.76585852799988,66.95905182500003],[-95.8819880849999,66.94676341400007],[-95.91372636599996,66.94782135600003],[-95.93765214799993,66.960394598],[-95.94725501199991,66.98016998900012],[-95.95103919199994,66.99787018400004],[-95.96178137899994,67.00897858300006],[-95.99229895699997,67.0088565120001],[-95.98265540299991,67.02777741100012],[-95.96711178299992,67.0468610700001],[-95.94871985599988,67.06232330900004],[-95.9308162099999,67.07025788],[-95.95579993399991,67.07453034100008],[-95.9805395169999,67.06468333500008],[-96.04873613199992,67.01654694200012],[-96.04898027299987,67.00499095300009],[-96.03819739499993,66.99278392100003],[-96.02700761599993,66.97406647300015],[-96.05915279899992,66.96373118700014],[-96.09337317599989,66.95685455900004],[-96.12706458199989,66.95697663],[-96.15737870999986,66.96784088700008],[-96.14586341099994,66.97016022300015],[-96.13475501199991,66.97386302299999],[-96.12462317599994,66.97972239800005],[-96.11583411399988,66.98834870000006],[-96.15001380099989,66.99359772300012],[-96.22183183499996,66.98371002800012],[-96.25983639199985,66.99144114800013],[-96.28136145699989,67.01117584800006],[-96.26463782499985,67.04942454600011],[-96.28034420499992,67.07025788],[-96.29824785099987,67.07579173400002],[-96.3313695949999,67.06989166900017],[-96.34923255099997,67.07025788],[-96.3620499339999,67.07721588700018],[-96.37677975199989,67.08734772300012],[-96.39220130099994,67.09332916900014],[-96.45425370999988,67.06883372600011],[-96.45567786399992,67.0597598330001],[-96.41685950399992,67.02928294500006],[-96.40371660099987,67.00116608300009],[-96.39761308499988,66.994574286],[-96.30113684799991,66.97492096600013],[-96.28184973899997,66.95933665600016],[-96.26447506399988,66.94122955900006],[-96.24673417899989,66.92694733300004],[-96.21629798099994,66.91583893400004],[-96.15274003799993,66.90062083500005],[-96.1260880199999,66.88218821800002],[-96.12018795499998,66.87169017100014],[-96.1170955069999,66.85040924700014],[-96.11241614499988,66.8412539730001],[-96.09691321499989,66.83063385600003],[-96.07848059799994,66.82538483300006],[-96.05915279899992,66.82200755400014],[-95.86416581899992,66.76646556200008],[-95.85204016799995,66.75812409100003],[-95.84634355399996,66.75018952000005],[-95.83897864499997,66.73322174700009],[-95.83153235599988,66.72422923400016],[-95.79869544199988,66.69696686400009],[-95.78538977799988,66.68109772300015],[-95.7800186839999,66.66246165600016],[-95.78335527299993,66.63849518400009],[-95.79246985599991,66.622992255],[-95.82095292899993,66.59113190300015],[-95.79222571499987,66.60203685100005],[-95.7407120429999,66.64830149900006],[-95.71202551999994,66.65875885600012],[-95.67674719999991,66.66014232000002],[-95.66026770699992,66.66327545800009],[-95.6434626939999,66.66929759300008],[-95.63044186099992,66.67938873900015],[-95.63048255099991,66.68939850500011],[-95.6434626939999,66.70722077],[-95.65501868399994,66.73102448100009],[-95.66478430899988,66.74144114799999],[-95.67760169199991,66.74192942900008],[-95.68472245999996,66.73212311400015],[-95.67178300699996,66.70783112200014],[-95.67389889199987,66.69696686400009],[-95.68691972599994,66.68768952000012],[-95.70075436099985,66.682562567],[-95.71572831899988,66.68028392100004],[-95.73224850199995,66.67987702000012],[-95.75438391799995,66.683050848],[-95.76480058499993,66.69127024900008],[-95.77326412699998,66.71397532800013],[-95.79206295499992,66.7370466170001],[-95.81383216099988,66.74766673400012],[-95.83678137899997,66.756048895],[-95.85920162699998,66.77232493700014],[-95.89159094999988,66.80552806200014],[-95.90953528599994,66.81928131700006],[-95.9308162099999,66.83067454600003],[-95.98314368399991,66.84349192900007],[-95.99974524599986,66.85114166900009],[-96.02867591099997,66.88133372600011],[-96.03697669199994,66.88593170800014],[-96.04743404899992,66.88878001500008],[-96.07640540299991,66.90314362200014],[-96.08507239499991,66.90916575700008],[-96.09349524599986,66.92023346600011],[-96.09203040299991,66.92698802300005],[-96.06802324099996,66.93992747600005],[-96.0284724599999,66.95136139499999],[-95.97614498599992,66.95392487200012],[-95.92418372299994,66.94696686400012],[-95.88613847599996,66.92999909100014],[-95.87144934799994,66.92877838700004],[-95.82725989499997,66.943548895],[-95.80797278599994,66.94306061400012],[-95.79792232999995,66.940130927],[-95.77594967399995,66.93683502800015],[-95.76634680899988,66.93309153900013],[-95.76301021999984,66.92772044499999],[-95.75837154899992,66.91132233300006],[-95.75275631399992,66.90574778900007],[-95.7337947259999,66.90306224199999],[-95.67015540299994,66.912583726],[-95.57518469999991,66.912583726],[-95.50670325399994,66.90253327],[-95.48863684799994,66.90916575700008],[-95.47321529899992,66.9201520850001],[-95.45319576699984,66.92829010600003],[-95.4313044909999,66.93284739799999],[-95.41071529899997,66.93309153900013],[-95.40807044199987,66.92308177300005],[-95.38853919199991,66.912054755],[-95.36290442599994,66.90326569200012],[-95.34186764199988,66.89960358300009],[-95.31631425699993,66.90021393400004],[-95.29515540299991,66.90399811400006],[-95.27501380099997,66.91392649900017],[-95.2524307929999,66.93309153900013],[-95.25332597599989,66.94562409100003],[-95.2438044909999,66.95587799700014],[-95.2183324859999,66.97406647300015],[-95.23322506399987,66.98969147300012],[-95.25527910099993,66.99607982000005],[-95.27953040299994,67.00023021],[-95.30089270699989,67.0088565120001],[-95.29149329299986,67.03119538000011],[-95.30483964799987,67.04820384300008],[-95.34520423099994,67.07396067900014],[-95.34813391799986,67.08336009300014],[-95.34239661399988,67.092230536],[-95.32445227799994,67.107855536],[-95.32355709499984,67.11717357000013],[-95.33193925699989,67.12714264500012],[-95.34268144399991,67.13682689000008],[-95.34862219999992,67.1453718120001],[-95.34813391799986,67.15269603100002],[-95.34373938699989,67.15875885600009],[-95.2818904289999,67.20184967700014],[-95.2766820949999,67.20685455900018],[-95.26846269399991,67.21124909100014],[-95.26309160099993,67.22178782800002],[-95.2601619129999,67.23432038000011],[-95.25926673099991,67.24469635600012],[-95.25560462099986,67.26227448100015],[-95.24547278599991,67.268500067],[-95.21149654899996,67.26951732],[-95.17284094999991,67.27863190300015],[-95.17536373599984,67.28961823100003],[-95.3021134109999,67.32835521000005],[-95.33018958199992,67.34345123900006],[-95.34186764199988,67.36851634300017],[-95.34508216099997,67.37921784100008],[-95.35903886599992,67.39488353100015],[-95.36229407499988,67.40232982000005],[-95.36359615799998,67.41217682500015],[-95.37132727799988,67.43915436400012],[-95.3759659499999,67.447007554],[-95.39171301999997,67.45368073100015],[-95.40587317599989,67.45441315300009],[-95.41380774599986,67.45661041900017],[-95.41071529899997,67.46747467700006],[-95.39932206899991,67.47797272300012],[-95.38003495999988,67.4893659530001],[-95.35973059799997,67.498480536],[-95.34520423099994,67.50226471600011],[-95.32494055899991,67.51080963700002],[-95.32526607999993,67.53050364799999],[-95.33812415299988,67.55223216400005],[-95.35545813699986,67.5671247420001],[-95.43834387899997,67.60382721600011],[-95.45173092399997,67.61522044500008],[-95.46324622299991,67.63934967699998],[-95.49079342399995,67.64581940300009],[-95.52342688699989,67.64716217700008],[-95.55040442599994,67.65619538],[-95.57066809799994,67.67182038000009],[-95.59215247299989,67.68370189000002],[-95.61766516799989,67.69135163000006],[-95.66356360599984,67.6963565120001],[-95.68032792899987,67.70250071800017],[-95.6957087879999,67.71149323100009],[-95.70494544199988,67.72199127800015],[-95.70767167899996,67.73334381700012],[-95.70523027299993,67.74144114800005],[-95.68785559799994,67.75889720300002],[-95.67613684799994,67.76544830900009],[-95.6292211579999,67.77598704600015],[-95.62726803299995,67.77936432500009],[-95.62930253799988,67.78392161700013],[-95.62962805899991,67.78790924700012],[-95.6223852199999,67.78965892100011],[-95.5851130849999,67.78965892100011],[-95.54548092399997,67.808294989],[-95.52676347599993,67.84845612200009],[-95.53652910099996,67.88670482000003],[-95.58202063699991,67.89952220300007],[-95.54548092399997,67.93199290600016],[-95.52672278599994,67.94419993700014],[-95.46519934799997,67.9745954450001],[-95.45177161399997,67.98871491100012],[-95.44489498599985,68.00938548400013],[-95.4374080069999,68.00938548400013],[-95.42174231699991,68.019964911],[-95.42503821499986,68.03070709800004],[-95.43297278599991,68.0427920590001],[-95.43122311099992,68.05719635600009],[-95.45616614499994,68.05687083500005],[-95.4676000639999,68.05866120000015],[-95.47838294199991,68.06342194200015],[-95.4503474599999,68.0717634140001],[-95.27293860599985,68.07762278900007],[-95.24510657499991,68.084458726],[-95.23176021999988,68.08482493700008],[-95.2183324859999,68.07762278900007],[-95.23350989499988,68.06968821800008],[-95.24278723899994,68.05711497600011],[-95.25352942599993,68.04621002800003],[-95.27293860599985,68.04291413],[-95.27293860599985,68.03668854400003],[-95.22813880099991,68.04564036700008],[-95.14167232999992,68.08502838700004],[-95.09479732999998,68.09129466400002],[-95.07994544199991,68.08075592700014],[-95.03966223899994,68.05524323100003],[-95.01227779899997,68.05036041900017],[-94.95738684799987,68.06037018400015],[-94.93126380099991,68.06049225500011],[-94.90672766799992,68.04661692900014],[-94.8609919909999,68.03086985900008],[-94.7982478509999,68.03807200700011],[-94.73835201699987,68.05829498900012],[-94.70099850199992,68.08136627800009],[-94.69615637899994,68.08921946800007],[-94.69420325399987,68.09617747600008],[-94.69139563699994,68.102525132],[-94.68390865799996,68.10838450700014],[-94.64830481699991,68.12055084800012],[-94.56037350199995,68.16331614800013],[-94.47459876199991,68.18317291900003],[-94.46690833199989,68.18903229400017],[-94.45978756399984,68.19586823100009],[-94.45116126199994,68.20115794500006],[-94.40363521999984,68.21173737200003],[-94.38263912699989,68.21979401200015],[-94.36856035099994,68.23590729400003],[-94.36856035099994,68.22846100500006],[-94.34093176999994,68.24433014500009],[-94.2481990229999,68.25877513200014],[-94.21092688699994,68.26947663000006],[-94.19326738199992,68.28868235900002],[-94.20091712099995,68.30711497600005],[-94.21182206899994,68.3272158870001],[-94.2040909499999,68.35138580900009],[-94.21141516799992,68.36387767100003],[-94.20299231699997,68.37384674700012],[-94.17027747299994,68.38922760600006],[-94.15892493399988,68.39264557500015],[-94.14753170499989,68.39439524900013],[-94.13874264199984,68.39878978100013],[-94.13516191299996,68.40973541900009],[-94.13141842399992,68.416693427],[-94.12238521999993,68.42234935099998],[-93.94977779899997,68.47577545800011],[-93.75739498599988,68.50596751500002],[-93.72398841099991,68.52008698100015],[-93.68032792899993,68.52525462400017],[-93.66136633999992,68.53074778900002],[-93.6212458979999,68.55064524900008],[-93.60464433499993,68.55438873900012],[-93.56065833199992,68.55841705900008],[-93.54621334499987,68.56427643400004],[-93.55011959499987,68.56720612200014],[-93.55516516799989,68.57379791900003],[-93.55980383999992,68.57855866100012],[-93.54621334499987,68.57855866100012],[-93.54474850199989,68.59723541900011],[-93.52375240799995,68.60728587400008],[-93.44644120999996,68.61485423400005],[-93.37486731699991,68.63873932500009],[-93.39639238199993,68.63292064000014],[-93.58031165299988,68.61212799700014],[-93.64533443899991,68.62579987200009],[-93.66974850199998,68.62571849200009],[-93.73045813699991,68.61180247600014],[-93.75226803299998,68.61212799700014],[-93.75226803299998,68.61949290600016],[-93.73631751199989,68.63141510600009],[-93.72984778599997,68.638373114],[-93.7249242829999,68.64618561400007],[-93.7249242829999,68.63873932500009],[-93.71068274599989,68.6555036480001],[-93.70571855399996,68.66461823100012],[-93.70189368399994,68.68663157800002],[-93.69188391799995,68.71088288000003],[-93.67926998599987,68.73187897300015],[-93.6847224599999,68.737250067],[-93.69399980399994,68.74079010600009],[-93.6976212229999,68.74860260600018],[-93.68761145699995,68.76117584800005],[-93.65339107999995,68.76422760600015],[-93.64240475199989,68.77655670800002],[-93.65607662699995,68.77655670800002],[-93.64053300699993,68.78729889500012],[-93.63695227799988,68.80414459800012],[-93.62189693899987,68.81439850500006],[-93.58165442599994,68.831488348],[-93.57066809799991,68.84406159100007],[-93.57721920499998,68.8621686870001],[-93.59288489499997,68.87164948100009],[-93.63719641799992,68.88776276200015],[-93.64924068899992,68.89948151200015],[-93.64732825399994,68.91559479400003],[-93.63914954299985,68.92780182500012],[-93.63768469999991,68.93614329600007],[-93.65607662699995,68.940375067],[-93.64785722599993,68.95270416900014],[-93.64273027299991,68.95762767100011],[-93.63491777299991,68.96214427300005],[-93.66075598899994,68.97215403900005],[-93.68712317599994,68.9714216170001],[-93.71336829299989,68.96763743700006],[-93.73859615799995,68.96832916900001],[-93.72874915299991,68.97284577000008],[-93.7249242829999,68.97516510600006],[-93.73643958199995,68.97728099200005],[-93.77953040299987,68.97516510600006],[-93.77208411399988,68.97516510600006],[-93.79523678299992,68.96735260600015],[-93.82701575399997,68.961615302],[-93.85728919199997,68.96259186400006],[-93.8758031889999,68.97516510600006],[-93.86774654899995,68.9857852230001],[-93.85724850199998,68.99400462400008],[-93.84536699099992,68.99974192900005],[-93.83356686099987,69.00311920800007],[-93.83356686099987,69.00934479400003],[-93.8536677729999,69.00934479400003],[-93.8731176419999,69.00641510600012],[-93.90929114499993,68.99567291900009],[-93.89671790299985,69.01756419500013],[-93.86554928299995,69.03729889500006],[-93.80003821499992,69.06456126500014],[-93.82713782499985,69.06919993700008],[-93.86803137899989,69.06114329600013],[-93.90908769399987,69.04621002800009],[-93.93659420499992,69.02977122600011],[-93.92821204299986,69.03058502800002],[-93.90245520699992,69.02977122600011],[-93.90245520699992,69.02362702000012],[-93.9324438139999,69.006537177],[-93.94343014199983,69.00311920800007],[-93.93659420499992,69.00311920800007],[-93.94424394399994,69.00128815300008],[-93.94762122299997,68.99970123900006],[-93.95083574099993,68.99567291900009],[-93.9439591139999,68.99278392100017],[-93.9298396479999,68.9848086610001],[-93.92296301999997,68.98200104400014],[-93.93342037699995,68.976263739],[-93.95881100199998,68.96576569200012],[-93.96393795499989,68.95844147300004],[-93.96882076699987,68.94745514500006],[-93.9803767569999,68.94102610900013],[-94.00548255099997,68.93419017100003],[-94.04458574099993,68.91632721600013],[-94.06163489499988,68.90326569200008],[-94.07380123599987,68.88580963700004],[-94.06753495999989,68.88580963700004],[-94.06989498599987,68.87482330900015],[-94.06484941299993,68.86749909100014],[-94.05435136599996,68.86436595300007],[-94.04027258999992,68.86591217700011],[-94.04987545499989,68.861273505],[-94.0805557929999,68.85228099199999],[-94.07091223899994,68.84796784100008],[-94.0464574859999,68.84003327000012],[-94.0365291009999,68.83860911700005],[-94.02513587099992,68.84076569200015],[-94.00816809799994,68.85016510600018],[-93.9781794909999,68.85834381700009],[-93.9439591139999,68.88312409100014],[-93.92296301999997,68.88580963700004],[-93.92296301999997,68.8789737000001],[-93.92808997299989,68.87437571800017],[-93.93101966099991,68.87091705900013],[-93.93512936099987,68.8682315120001],[-93.94343014199983,68.86591217700011],[-93.94343014199983,68.85846588700015],[-93.81309973899991,68.89948151200015],[-93.82624264199987,68.87933991100012],[-93.8589574859999,68.86815013200011],[-93.89537512899994,68.85997142100011],[-93.9198298819999,68.84886302299999],[-93.94359290299991,68.829779364],[-93.97777258999989,68.810736395],[-94.01463782499985,68.796087958],[-94.05915279899995,68.78668854400014],[-94.08250891799995,68.76935455900018],[-94.09422766799995,68.76288483300009],[-94.10985266799992,68.75910065300015],[-94.28294837099985,68.75800202],[-94.41250566299986,68.7230085310001],[-94.44635982999995,68.737738348],[-94.46572831899996,68.74339427299999],[-94.48155676999991,68.7389997420001],[-94.49083411399994,68.73045482],[-94.49852454299989,68.72569407800006],[-94.50739498599992,68.72508372600011],[-94.52000891799992,68.72935618700005],[-94.53209387899992,68.73810455900008],[-94.5425512359999,68.74921295800014],[-94.55443274599995,68.7588565120001],[-94.57091223899991,68.76288483300009],[-94.63609778599994,68.75604889500006],[-94.62254798099988,68.778753973],[-94.60411536399994,68.82444896000011],[-94.59142005099997,68.84202708500005],[-94.55992591099997,68.86314524900015],[-94.55357825399993,68.87274811400013],[-94.55052649599993,68.89073314000008],[-94.55768795499998,68.894964911],[-94.57042395699993,68.89573802300013],[-94.58429928299991,68.9031843120001],[-94.5830785799999,68.91258372600014],[-94.56676184799989,68.93577708500005],[-94.57091223899991,68.940375067],[-94.58633378799995,68.94285716400013],[-94.59874426999988,68.94928620000003],[-94.60496985599993,68.95823802300008],[-94.60195878799993,68.96832916900001],[-94.57119706899995,68.98191966399999],[-94.53091386599988,68.97728099200005],[-94.4647517569999,68.95469798400008],[-94.46320553299994,68.94171784100008],[-94.4429825509999,68.94415924700003],[-94.4181208979999,68.953802802],[-94.40269934799994,68.96214427300005],[-94.39346269399988,68.97260163000013],[-94.36856035099994,69.00934479400003],[-94.34585527299988,69.02582428600012],[-94.31989498599991,69.0346133480001],[-94.29092363199993,69.03766510600018],[-94.23159745999993,69.03721751500007],[-94.20372473899991,69.04087962400006],[-94.17617753799988,69.04950592700014],[-94.14952551999994,69.06456126500014],[-94.17784583199989,69.07831452000006],[-94.18602454299989,69.0859235700001],[-94.18366451699984,69.09870026200015],[-94.17247473899992,69.10785553600014],[-94.10765540299994,69.12677643400013],[-94.07701575399992,69.12946198100003],[-94.05231686099982,69.14325592700006],[-94.00548255099997,69.16014232000005],[-94.03868567599989,69.15839264500015],[-94.13516191299996,69.13279857000008],[-94.25283769399994,69.1269798850001],[-94.30089270699992,69.143500067],[-94.32404537699993,69.15582916900003],[-94.32453365799995,69.17072174700007],[-94.31330318899984,69.18419017100017],[-94.29381262899994,69.21344635600009],[-94.27985592399997,69.22907135600009],[-94.28526770699992,69.23371002800012],[-94.29491126199987,69.24494049700012],[-94.30028235599985,69.24949778900007],[-94.27912350199995,69.26129791900003],[-94.25938880099991,69.27680084800012],[-94.30117753799993,69.29161204600001],[-94.31395423099988,69.29791901200015],[-94.28164628799996,69.32212962400014],[-94.23790442599989,69.33649323100003],[-94.11457271999993,69.34764232000005],[-94.02660071499989,69.36619700700005],[-93.93040930899986,69.36619700700005],[-93.91527258999986,69.363023179],[-93.89411373599987,69.34845612200014],[-93.88536536399997,69.34507884300014],[-93.84618079299995,69.34979889500015],[-93.81151282499987,69.35948314000011],[-93.7945043609999,69.36851634300002],[-93.7625219389999,69.39691803600014],[-93.73916581899991,69.40904368700012],[-93.61221269399988,69.43956126500007],[-93.52570553299992,69.44135163000006],[-93.54222571499987,69.42902252800012],[-93.59561113199993,69.39935944200008],[-93.63011633999994,69.39024485900008],[-93.64305579299993,69.38239166900011],[-93.66592363199996,69.36277903900005],[-93.67853756399984,69.35468170800011],[-93.69098873599985,69.351304429],[-93.70384680899987,69.34931061400005],[-93.71743730399993,69.34507884300014],[-93.78661048099994,69.31500885600009],[-93.80996660099993,69.31098053600012],[-93.88194739499997,69.24949778900007],[-93.86050370999992,69.25010814000002],[-93.83153235599994,69.26561107000013],[-93.81309973899991,69.2700056010001],[-93.84434973899997,69.24253978100008],[-93.86217200399994,69.23289622600002],[-93.88194739499997,69.22907135600009],[-93.86827551999994,69.21808502800003],[-93.85118567599989,69.21763743700005],[-93.83226477799988,69.22113678600012],[-93.81309973899991,69.22215403899999],[-93.81309973899991,69.21539948100015],[-93.8385310539999,69.1983503280001],[-93.85155188699991,69.18610260600002],[-93.85407467399992,69.17442454600003],[-93.84032141799989,69.16868724200008],[-93.81859290299994,69.17523834800015],[-93.79678300699987,69.18732330900006],[-93.78262285099996,69.19798411699999],[-93.7603246739999,69.21067942900005],[-93.70335852799991,69.22540924700002],[-93.66502844999988,69.24884674700012],[-93.60757402299996,69.2700056010001],[-93.61754309799994,69.27545807500015],[-93.62677975199992,69.27488841399997],[-93.6350805329999,69.27012767100007],[-93.64240475199989,69.263128973],[-93.64240475199989,69.2700056010001],[-93.62092037699996,69.27757396000005],[-93.57957923099993,69.29954661699999],[-93.48643958199989,69.3187930360001],[-93.45360266799989,69.33213939000005],[-93.4505916009999,69.34507884300014],[-93.43439693899984,69.35679759300002],[-93.36188717399992,69.37299225500009],[-93.38585364499997,69.37962474200005],[-93.47789466099997,69.35936107000013],[-93.5062556629999,69.36017487200014],[-93.55565344999987,69.36994049700009],[-93.58775794199994,69.36619700700005],[-93.58047441299993,69.37702057500015],[-93.52635657499985,69.42247142100003],[-93.49254309799989,69.44061920800011],[-93.47789466099997,69.45433177300005],[-93.4815974599999,69.45758698100009],[-93.48473059799989,69.46177806200005],[-93.46129309799991,69.46869538000011],[-93.45083574099992,69.47382233300014],[-93.44310462099992,69.48224518400008],[-93.4505916009999,69.48969147300006],[-93.45982825399994,69.48456452000006],[-93.46882076699987,69.482611395],[-93.47716223899994,69.48419830900004],[-93.48473059799989,69.48969147300006],[-93.48355058499996,69.502142645],[-93.5058487619999,69.51557038],[-93.53587805899986,69.526312567],[-93.55797278599994,69.5307070980001],[-93.69017493399994,69.52326080900009],[-93.68394934799989,69.52326080900009],[-93.76105709499984,69.49957916900009],[-93.78750566299993,69.48545970300013],[-93.80345618399994,69.48224518400008],[-93.80630449099996,69.4843610700001],[-93.81143144399988,69.49371979400006],[-93.81309973899991,69.49591705900004],[-93.82530676999997,69.49583567900005],[-93.87279212099989,69.486517645],[-93.88019771999987,69.47821686400012],[-93.87901770699995,69.46686432500013],[-93.86831620999992,69.45433177300005],[-93.89757239499994,69.43931712400003],[-93.93040930899986,69.43541087400003],[-93.99864661399995,69.44135163000006],[-94.14952551999994,69.43451569200015],[-94.3221736319999,69.45298899900015],[-94.34382076699985,69.46519603100013],[-94.3822322259999,69.49591705900004],[-94.3985896479999,69.5029971370001],[-94.43203691299995,69.51146067900014],[-94.44737708199992,69.52012767100003],[-94.5217179029999,69.57591380400011],[-94.52794348899997,69.59613678600014],[-94.53307044199988,69.60264720300012],[-94.54393469999988,69.61115143400015],[-94.55003821499986,69.62181224200002],[-94.55455481699991,69.63239166900014],[-94.56102454299992,69.64057038000006],[-94.57152258999989,69.64549388200011],[-94.58511308499993,69.648179429],[-94.59691321499992,69.64610423400008],[-94.60195878799993,69.63682689000002],[-94.6068416009999,69.63279857000005],[-94.61799068899992,69.63788483300009],[-94.62954667899996,69.64683665600002],[-94.63609778599994,69.6541608740001],[-94.63744055899991,69.66246165600008],[-94.63589433499988,69.67182038000011],[-94.62987219999988,69.68773021000014],[-94.74535071499986,69.66783274900014],[-94.76431230399996,69.66168854400017],[-94.76024329299992,69.64732493700008],[-94.74347896999988,69.63108958500005],[-94.72423255099994,69.61945221600014],[-94.74575761599996,69.59434642100014],[-94.78868567599991,69.57819245000009],[-94.83706620999993,69.57062409100014],[-94.87511145699992,69.57164134300011],[-94.95287024599992,69.58905670800009],[-94.96507727799991,69.595892645],[-94.97118079299989,69.60919830900012],[-94.98534094999991,69.61192454600007],[-95.00112870999996,69.60911692900014],[-95.01227779899997,69.60578034100011],[-94.99917558499989,69.61945221600014],[-95.02476966099988,69.62677643400006],[-95.11900794199988,69.61945221600014],[-95.13158118399987,69.62103913000009],[-95.16392981699988,69.63080475500011],[-95.18480383999986,69.64496491100014],[-95.1974991529999,69.64704010600015],[-95.22516842399992,69.64671458500013],[-95.41051184799991,69.68589915600016],[-95.43895423099994,69.69920482],[-95.47988847599996,69.70734284100011],[-95.53823808499996,69.73078034100008],[-95.56773841099994,69.73615143400004],[-95.58678137899992,69.74217357000005],[-95.65029863199993,69.783880927],[-95.66905676999988,69.78843821800005],[-95.73595130099991,69.790757554],[-95.75104732999992,69.78538646000014],[-95.7622777989999,69.77244700700014],[-95.77306067599991,69.75678131700006],[-95.78685462099992,69.74298737200014],[-95.80890865799992,69.753607489],[-95.81932532499991,69.760931708],[-95.82787024599992,69.77024974200005],[-95.81200110599991,69.78709544500005],[-95.80182857999995,69.791693427],[-95.78685462099992,69.790757554],[-95.80748450399994,69.80341217700008],[-95.83006751199991,69.80780670800006],[-95.84825598899991,69.80109284100011],[-95.85578365799996,69.78050364800008],[-95.8690079419999,69.77716705900002],[-95.93163001199991,69.79185618700014],[-95.95197506399992,69.790757554],[-95.94448808499993,69.783880927],[-95.97590084499987,69.78620026200015],[-96.00389563699989,69.79804108300011],[-96.05435136599989,69.83234284100017],[-96.08682206899991,69.84629954600014],[-96.20579993399988,69.86583079600003],[-96.18651282499992,69.86790599200005],[-96.1568904289999,69.88397858300011],[-96.14378821499992,69.883246161],[-96.11343339799994,69.86664459800012],[-96.09850012899992,69.86692942900008],[-96.08165442599991,69.87950267100014],[-96.10309811099984,69.88878001500002],[-96.12267005099991,69.90062083500008],[-96.08849036399991,69.91425202000012],[-96.08849036399991,69.92047760600018],[-96.10692298099985,69.92011139500006],[-96.1097712879999,69.92572663000006],[-96.10545813699989,69.93488190300006],[-96.10216223899994,69.94529857000013],[-96.11009680899991,69.95652903900005],[-96.12828528599991,69.96067942900008],[-96.14810136599993,69.96226634300011],[-96.16079667899989,69.9661319030001],[-96.1748754549999,69.97223541900009],[-96.1914770169999,69.97040436400012],[-96.22227942599994,69.96271393400009],[-96.24128170499993,69.96478913000011],[-96.25641842399993,69.97028229400014],[-96.48631751199984,70.09699127800003],[-96.51366126199991,70.1203473980001],[-96.52594967399997,70.12681712400003],[-96.5318904289999,70.13617584800006],[-96.53400631399992,70.14862702000009],[-96.53416907499988,70.16437409100003],[-96.53774980399996,70.17393626500002],[-96.56493079299985,70.21222565300013],[-96.57371985599991,70.23444245000003],[-96.56151282499985,70.31525299700003],[-96.54600989499994,70.34056224200008],[-96.51060950399992,70.3683942730001],[-96.44481360599985,70.40770091400013],[-96.42259680899991,70.414740302],[-96.40339107999993,70.41266510600018],[-96.3841853509999,70.40806712400006],[-96.36221269399988,70.40770091400013],[-96.34707597599987,70.41412995000003],[-96.33779863199993,70.42499420800011],[-96.32872473899991,70.44871653900013],[-96.33433997299991,70.48688385600009],[-96.30247962099989,70.51911041900006],[-96.2596736319999,70.54682038000011],[-96.23298092399997,70.5711937520001],[-96.22720292899992,70.57103099200013],[-96.21873938699987,70.5616315780001],[-96.21401933499988,70.54889557500015],[-96.20579993399988,70.53807200700005],[-96.1888728509999,70.53221263200011],[-96.17105058499989,70.5335554060001],[-96.13687089799993,70.54486725500009],[-96.14415442599994,70.56403229400014],[-96.12604732999992,70.57916901200004],[-96.09776770699997,70.58909739800005],[-96.07485917899987,70.592718817],[-96.04743404899992,70.58734772300015],[-95.99522864499991,70.56391022300006],[-95.85293535099993,70.53888580900013],[-95.81480872299994,70.53807200700005],[-95.80992591099988,70.53607819200003],[-95.80451412699993,70.53217194200012],[-95.79893958199992,70.53123607000013],[-95.79369055899994,70.53807200700005],[-95.79344641799987,70.54413483300006],[-95.79698645699997,70.54832591399999],[-95.80239824099993,70.55088939000008],[-95.91771399599995,70.56281159100003],[-95.95815995999988,70.57160065300009],[-96.00328528599994,70.58995189000012],[-96.04352779899992,70.59650299700003],[-96.05394446499992,70.60704173400008],[-96.0553279289999,70.62335846600003],[-96.05435136599989,70.64423248900009],[-95.95881100199992,70.68146393400015],[-95.94188391799995,70.68296946800002],[-95.89891516799989,70.69261302299999],[-95.86554928299992,70.70502350500011],[-95.83055579299992,70.70958079600014],[-95.81480872299994,70.71556224199999],[-95.90355383999992,70.70933665600002],[-96.12254798099994,70.65643952000006],[-96.14085852799991,70.64704010600003],[-96.15737870999986,70.63365306200005],[-96.15054277299996,70.63365306200005],[-96.19033769399994,70.624741929],[-96.26732337099992,70.63963450700005],[-96.34764563699994,70.66539134300008],[-96.39761308499988,70.68891022300014],[-96.41515051999991,70.70661041900014],[-96.42686926999991,70.7235781920001],[-96.44098873599984,70.73859284100013],[-96.46524003799993,70.75035228100002],[-96.57335364499991,70.77403392100014],[-96.60244706899988,70.79132721600014],[-96.61644446499994,70.82575104400017],[-96.59862219999988,70.85993073100015],[-96.53758704299987,70.91791413000006],[-96.52782141799995,70.93183014500012],[-96.50690670499989,70.98309967700006],[-96.50609290299988,70.9867617860001],[-96.50690670499989,71.00047435100005],[-96.50495357999995,71.00385163000006],[-96.49608313699989,71.00653717700014],[-96.49323482999995,71.01105377800008],[-96.48753821499989,71.02850983300006],[-96.48957271999988,71.03620026200015],[-96.49998938699989,71.045152085],[-96.46812903599997,71.04535553600006],[-96.4398494129999,71.05223216400007],[-96.41515051999991,71.06492747600011],[-96.38292395699996,71.091009833],[-96.37767493399988,71.09247467700006],[-96.37604732999996,71.09410228100008],[-96.37588456899991,71.10289134300014],[-96.40294348899994,71.11461009300002],[-96.41063391799985,71.11969635600013],[-96.41803951699987,71.1182315120001],[-96.42113196499993,71.11664459800006],[-96.4243057929999,71.11347077],[-96.41038977799991,71.09784577],[-96.41966712099989,71.08970774900008],[-96.43993079299989,71.08661530200003],[-96.45872962099995,71.08612702000012],[-96.48692786399991,71.09162018400005],[-96.53526770699992,71.11790599200008],[-96.56151282499985,71.12706126500014],[-96.55679277299993,71.13951243700016],[-96.54898027299994,71.14415110900008],[-96.52672278599991,71.1475690780001],[-96.45872962099995,71.17145416900017],[-96.43834387899994,71.16905345300005],[-96.41315670499998,71.15582916900009],[-96.39000403599994,71.14777252800015],[-96.37588456899991,71.160589911],[-96.44619706899992,71.18622467700006],[-96.45909583199995,71.19537995000003],[-96.45799719999991,71.20929596600003],[-96.45006262899994,71.22996653900013],[-96.43114173099991,71.26426829600008],[-96.4437149729999,71.26386139500009],[-96.47956295499992,71.25743235900008],[-96.47207597599996,71.26426829600008],[-96.48029537699993,71.26984284100011],[-96.48867753799989,71.27399323100003],[-96.49754798099985,71.27667877800003],[-96.50690670499989,71.27789948100003],[-96.48224850199989,71.29234446800008],[-96.4470922519999,71.29893626500017],[-96.32664954299992,71.29828522300011],[-96.30553137899989,71.30329010600015],[-96.28034420499992,71.31268952000009],[-96.2877498039999,71.31891510600006],[-96.2683813139999,71.34166087400008],[-96.24136308499993,71.36558665600012],[-96.2117406889999,71.38678620000003],[-96.18407141799989,71.40143463700007],[-96.13353430899987,71.41417064000011],[-95.98586992099987,71.41506582200002],[-95.92442786399988,71.40403880400005],[-95.89557857999995,71.39390696800008],[-95.87621008999994,71.37413157800007],[-95.88243567599991,71.37413157800007],[-95.83975175699986,71.35077545800009],[-95.65831458199997,71.291489976],[-95.63272050699989,71.289740302],[-95.60875403599992,71.295355536],[-95.58592688699991,71.29669830900009],[-95.55675208199997,71.29389069200012],[-95.53644771999987,71.29608795800011],[-95.54043535099994,71.31268952000009],[-95.53522701699987,71.31574127800017],[-95.52635657499991,71.32269928600006],[-95.51935787699992,71.32575104400014],[-95.5372615229999,71.33612702000006],[-95.57701575399989,71.34601471600017],[-95.58824622299989,71.36045970300013],[-95.47215735599985,71.36045970300013],[-95.47614498599984,71.37030670800006],[-95.47838294199991,71.37413157800007],[-95.4374080069999,71.37413157800007],[-95.4374080069999,71.38031647300012],[-95.45978756399992,71.38292064000004],[-95.4832250639999,71.38886139500006],[-95.50609290299991,71.3973249370001],[-95.52676347599993,71.407660223],[-95.54865475199995,71.42243073100008],[-95.54621334499991,71.42772044500008],[-95.53404700399992,71.43248118700016],[-95.52037512899989,71.454779364],[-95.50568600199989,71.45848216400005],[-95.48940995999996,71.45990631700012],[-95.47838294199991,71.46222565300017],[-95.46471106699997,71.46971263200005],[-95.4641820949999,71.47239817900011],[-95.46540279899992,71.48139069200015],[-95.46471106699997,71.48399485900013],[-95.44347083199989,71.49335358300009],[-95.3759659499999,71.51068756700006],[-95.44054114499997,71.50718821800008],[-95.47638912699996,71.50010814000002],[-95.49205481699994,71.48712799700003],[-95.62800045499998,71.49384186400006],[-95.66026770699992,71.50043366100014],[-95.68838456899991,71.5096296240001],[-95.80736243399987,71.51068756700006],[-95.82331295499998,71.51630280200006],[-95.8626195949999,71.53864166900007],[-95.88219153599997,71.54393138200008],[-95.92442786399988,71.54759349200013],[-95.94448808499993,71.55223216400005],[-95.93040930899991,71.57054271000011],[-95.88780676999997,71.58018626500008],[-95.87621008999994,71.59324778900007],[-95.88760331899991,71.59214915600002],[-95.89753170499992,71.59393952],[-95.90534420499989,71.59874095300007],[-95.91038977799994,71.606878973],[-95.88329016799992,71.618150132],[-95.84642493399993,71.62702057500006],[-95.77660071499989,71.63483307500003],[-95.74054928299995,71.6323102890001],[-95.72516842399989,71.633734442],[-95.67861894399996,71.65241120000015],[-95.67174231699997,71.65965403899999],[-95.67760169199991,71.66832103100008],[-95.66380774599989,71.67377350500011],[-95.64928137899994,71.67560455900009],[-95.61925208199992,71.67515696800011],[-95.60985266799989,71.67845286700005],[-95.59129798099988,71.69297923400008],[-95.58141028599995,71.69627513200011],[-95.55858313699986,71.70030345300007],[-95.51500403599992,71.71845123900009],[-95.49205481699994,71.72296784100006],[-95.30199133999994,71.72052643400009],[-95.27721106699997,71.72431061400012],[-95.25926673099991,71.73725006700012],[-95.2796524729999,71.74217357],[-95.2882380849999,71.75189850500014],[-95.28766842399995,71.76447174700003],[-95.28038489499994,71.77818431200016],[-95.27501380099997,71.78339264500006],[-95.26008053299991,71.79246653900005],[-95.2524307929999,71.79869212400001],[-95.23875891799985,71.81976959800011],[-95.21605383999992,71.82953522300006],[-95.1357315749999,71.83283112200012],[-95.08307857999989,71.845404364],[-95.06436113199993,71.847113348],[-95.02481035099986,71.84076569200009],[-95.01439368399988,71.84162018400018],[-94.98558508999986,71.84764232],[-94.83470618399988,71.84235260600012],[-94.78693600199992,71.83283112200012],[-94.74071204299992,71.82929108300011],[-94.69481360599985,71.83563873900006],[-94.65025794199995,71.849310614],[-94.6081436839999,71.86762116100006],[-94.64098059799991,71.87335846600003],[-94.75902258999989,71.83966705900004],[-94.77782141799995,71.84141673400002],[-94.81501217399992,71.85106028900002],[-95.10167395699989,71.86082591400005],[-95.15001380099991,71.85020579600008],[-95.17870032499988,71.8471540390001],[-95.21654212099992,71.85272858300003],[-95.24669348899994,71.86298248900012],[-95.25454667899989,71.87921784100008],[-95.25047766799986,71.88287995000003],[-95.24229895699995,71.88580963700015],[-95.23200436099984,71.88804759300005],[-95.23200436099984,71.894232489],[-95.2398982409999,71.89533112200013],[-95.25926673099991,71.90167877800017],[-95.24665279899993,71.90684642100008],[-95.21149654899996,71.92902252800015],[-95.21458899599985,71.93321360900008],[-95.21629798099987,71.93671295800009],[-95.21898352799994,71.93980540600016],[-95.22516842399992,71.94269440300009],[-95.22516842399992,71.94953034100011],[-94.88693193299989,71.9758364930001],[-94.54869544199997,72.00214264500012],[-94.49201412699998,71.99042389500015],[-94.48688717399997,71.98529694200012],[-94.48525956899994,71.97308991100006],[-94.48204505099989,71.96137116100006],[-94.47350012899996,71.956000067],[-94.40436764199987,71.94586823100015],[-94.39342200399989,71.93931712400017],[-94.40269934799994,71.92222728100002],[-94.42446855399989,71.90953196800017],[-94.45148678299995,71.90619538000014],[-94.4798070949999,71.90570709800015],[-94.50572669199991,71.90167877800017],[-94.48790442599994,71.89655182500013],[-94.46760006399984,71.89341868700006],[-94.4527074859999,71.88593170800011],[-94.45116126199994,71.86762116100006],[-94.46031653599991,71.85740794500013],[-94.47655188699984,71.85337962400014],[-94.55138098899994,71.85053131700012],[-94.58608964799988,71.84300364800005],[-94.64915930899991,71.81976959800011],[-94.61375891799992,71.79621002800009],[-94.60753333199995,71.78314850500011],[-94.62242591099991,71.764593817],[-94.61558997299987,71.764593817],[-94.61754309799994,71.75621165600013],[-94.61359615799995,71.75067780200011],[-94.60553951699988,71.74689362200009],[-94.59512285099993,71.74347565300009],[-94.55284583199992,71.76146067900014],[-94.53990637899987,71.77134837400014],[-94.50841223899988,71.813421942],[-94.50035559799993,71.82139720300016],[-94.49209550699996,71.82599518400008],[-94.47704016799995,71.82648346600008],[-94.46524003799988,71.82111237200003],[-94.46007239499997,71.81134674700009],[-94.4647517569999,71.79869212400001],[-94.44701087099989,71.79071686400006],[-94.43724524599986,71.79649485900002],[-94.43000240799991,71.80683014500012],[-94.41978919199991,71.81232330900015],[-94.38805091099994,71.81159088700004],[-94.37385006399992,71.80760325700004],[-94.35488847599993,71.79869212400001],[-94.3613175119999,71.79234446800007],[-94.36856035099994,71.78790924700012],[-94.37657630099987,71.78526439000002],[-94.38536536399997,71.78436920800011],[-94.38792883999989,71.78245677300008],[-94.38980058499993,71.772406317],[-94.3921606109999,71.76793040600012],[-94.39956620999988,71.75702545800006],[-94.39997311099988,71.74571360900008],[-94.39549719999991,71.7343610700001],[-94.38841712099986,71.72296784100006],[-94.41051184799994,71.68305084800006],[-94.41551673099988,71.66547272300015],[-94.40306555899988,71.66490306200008],[-94.28229732999992,71.73607005400011],[-94.26569576699985,71.74925364800005],[-94.23517818899991,71.78131745000003],[-94.21076412699996,71.79230377800009],[-94.18073482999992,71.79254791900003],[-94.15990149599995,71.78294505400005],[-94.16315670499998,71.764593817],[-94.12181555899986,71.76044342700006],[-94.05406653599994,71.78917064000002],[-94.0123184889999,71.77818431200016],[-93.98814856699988,71.75885651200004],[-93.97443600199995,71.75311920800006],[-93.95055091099988,71.75092194200006],[-93.89736894399991,71.7529971370001],[-93.87218176999991,71.75804271000011],[-93.84752356699993,71.76793040600012],[-93.80882727799988,71.77891673400008],[-93.7612198559999,71.7792829450001],[-93.72085527299996,71.76532623900012],[-93.70384680899987,71.7334658870001],[-93.70677649599992,71.71552155200004],[-93.71568762899994,71.70490143400012],[-93.82054602799988,71.65534088700008],[-93.80406653599988,71.64647044500005],[-93.73546301999995,71.628119208],[-93.63499915299991,71.57953522300012],[-93.54474850199989,71.55390045800004],[-93.4197485019999,71.53583405200004],[-93.39537512899997,71.52806224200005],[-93.37962805899991,71.51850006700006],[-93.36998450399994,71.50958893400012],[-93.35920162699995,71.50214264500015],[-93.25706946499989,71.48371002800012],[-93.21556555899987,71.46910228100008],[-93.21100826699984,71.44859446800005],[-93.19908606699991,71.44623444200009],[-93.19444739499997,71.44208405200014],[-93.19286048099994,71.43634674700017],[-93.18993079299992,71.42877838700012],[-93.18887285099994,71.42487213700004],[-93.18927975199995,71.42100657800002],[-93.18814042899993,71.41571686400015],[-93.18309485599991,71.407660223],[-93.16787675699993,71.39402903900007],[-93.14854895699989,71.38340892100003],[-93.12767493399991,71.3765729840001],[-93.04710852799988,71.37201569200006],[-93.01781165299985,71.36692942900014],[-92.99063066299993,71.357123114],[-92.98013261599996,71.34735748900006],[-92.98110917899993,71.33698151200015],[-92.98863684799991,71.32713450700005],[-92.99746660099996,71.31891510600006],[-92.9595841139999,71.30646393400004],[-92.94786536399994,71.2949079450001],[-92.94009355399993,71.25873444200006],[-92.93399003799993,71.2468936220001],[-92.93101966099992,71.23594798400013],[-92.93724524599988,71.22333405200006],[-92.88292395699995,71.18903229400011],[-92.86839758999992,71.17487213700018],[-92.85871334499987,71.15863678600014],[-92.85871334499987,71.14976634300008],[-92.86343339799987,71.14154694199999],[-92.86839758999992,71.12706126500014],[-92.86774654899996,71.11920807500015],[-92.86107337099992,71.11090729400007],[-92.86095130099994,71.10602448100012],[-92.86497962099992,71.10101959800006],[-92.87730872299997,71.09288157800016],[-92.88198808499988,71.08612702000012],[-92.88621985599991,71.0706647810001],[-92.88247636599996,71.0632184920001],[-92.85411536399994,71.045152085],[-92.87889563699989,71.02012767100008],[-92.88866126199994,71.00690338700015],[-92.89509029899993,70.99054596600006],[-92.90217037699992,70.94330475500009],[-92.90933183499995,70.92784251500014],[-92.90192623599987,70.92169830900015],[-92.90770423099994,70.9020449890001],[-92.89639238199993,70.88401927299999],[-92.87584387899992,70.86933014499999],[-92.85411536399994,70.85960521000014],[-92.86904863199987,70.853705145],[-92.91283118399993,70.84678782800002],[-92.93822180899988,70.84605540600008],[-92.9427791009999,70.84678782800002],[-93.00023352799991,70.87266673400002],[-93.02525794199991,70.87982819200006],[-93.05272376199989,70.88068268400013],[-93.04084225199992,70.8623721370001],[-93.02147376199991,70.84910716399999],[-92.94587154899989,70.81745026200008],[-92.82017981699988,70.80992259300014],[-92.7681371739999,70.79783763200014],[-92.74425208199995,70.78790924700003],[-92.69294186099982,70.77464427300009],[-92.67520097599993,70.76557038],[-92.69587154899995,70.7577985700001],[-92.69115149599995,70.74925364799999],[-92.68358313699989,70.74420807500015],[-92.67381751199986,70.74237702000006],[-92.66226152299993,70.74351634300011],[-92.66226152299993,70.73602936400015],[-92.71751868399994,70.72984446800017],[-92.71751868399994,70.72300853100013],[-92.67471269399994,70.724554755],[-92.65453040299991,70.72081126500017],[-92.64183508999986,70.70933665600002],[-92.65510006399988,70.70758698100003],[-92.66779537699995,70.70270416900014],[-92.69025631399987,70.68891022300014],[-92.65550696499989,70.68891022300014],[-92.67658443899992,70.68146393400015],[-92.66218014199987,70.67865631700012],[-92.61449133999989,70.68891022300014],[-92.41588294199994,70.66779205900004],[-92.41779537699992,70.66412995000017],[-92.41856848899992,70.66327545800009],[-92.41954505099991,70.66294993700014],[-92.42210852799991,70.66095612200012],[-92.40689042899993,70.65485260600003],[-92.35387122299991,70.64793528900013],[-92.31395423099994,70.63556549700009],[-92.30260169199997,70.63365306200005],[-92.29991614499988,70.62714264500012],[-92.30357825399993,70.61351146],[-92.31615149599992,70.60142649900008],[-92.34019934799997,70.59947337400014],[-92.32921301999991,70.58161041900017],[-92.30329342399992,70.57335032800006],[-92.27700761599988,70.58075592700008],[-92.26504472599994,70.60972728100008],[-92.24990800699995,70.62535228100013],[-92.21544348899994,70.61627838700014],[-92.1782934239999,70.59629954600007],[-92.15518144399988,70.57904694200006],[-92.1766251289999,70.57298411699999],[-92.20555579299992,70.57176341400005],[-92.23314368399994,70.57416412999999],[-92.25080318899987,70.57904694200006],[-92.24461829299989,70.57160065300009],[-92.2565811839999,70.56578196800012],[-92.26244055899986,70.55805084800012],[-92.2608943349999,70.54865143400009],[-92.25080318899987,70.53807200700005],[-92.23936926999991,70.53412506700006],[-92.22785396999987,70.53497955900015],[-92.21568762899996,70.53379954600014],[-92.20238196499984,70.52378978100016],[-92.19318600199998,70.51007721600003],[-92.19831295499989,70.50763580900009],[-92.21247311099992,70.51007721600003],[-92.23033606699988,70.510728257],[-92.24323482999989,70.50775788000006],[-92.2855525379999,70.48961009300017],[-92.24815833199995,70.48651764500008],[-92.17772376199986,70.47288646000014],[-92.14183508999989,70.46979401200015],[-92.12108313699989,70.47406647300006],[-92.11172441299993,70.47264232],[-92.10741126199994,70.46295807500003],[-92.10822506399987,70.454046942],[-92.11164303299995,70.44891998900009],[-92.11803137899997,70.44733307500015],[-92.12328040299988,70.44806549700009],[-92.13117428299992,70.44476959800015],[-92.13394120999989,70.44151439000011],[-92.13475501199991,70.435003973],[-92.04222571499992,70.42137278900007],[-92.03913326699984,70.41795482000005],[-92.04670162699996,70.40094635600009],[-92.0453181629999,70.39411041900017],[-92.03620357999992,70.39195384300015],[-92.00983639199993,70.3952497420001],[-91.9981583319999,70.39411041900017],[-91.9981583319999,70.38719310100008],[-92.00377356699991,70.38426341400005],[-92.01805579299992,70.37299225500004],[-92.00698808499988,70.373724677],[-91.99620520699997,70.37262604400006],[-91.98595130099993,70.3702253280001],[-91.97642981699994,70.36676666900007],[-91.99364173099988,70.358587958],[-92.00226803299995,70.34882233300006],[-92.00157630099991,70.33759186400015],[-91.99071204299995,70.32514069200012],[-92.01244055899991,70.31732819200012],[-92.03673255099989,70.31354401200012],[-92.08629309799991,70.31211985900013],[-92.08629309799991,70.30467357000008],[-92.02879798099994,70.30695221600006],[-91.99962317599997,70.30316803600012],[-91.98387610599991,70.29039134300017],[-91.99022376199986,70.28929271000011],[-92.00438391799987,70.2842471370001],[-91.96344967399995,70.26988353100002],[-91.96239173099991,70.26707591400007],[-91.96133378799993,70.26141998900009],[-91.95864824099996,70.2577578800001],[-91.95287024599988,70.26032135600003],[-91.94994055899987,70.264349677],[-91.9429418609999,70.27732981999998],[-91.93529212099986,70.28449127800003],[-91.92882239499997,70.29218170800006],[-91.9207657539999,70.29930247600011],[-91.90819251199994,70.30467357000008],[-91.89525305899993,70.30646393400015],[-91.85358639199985,70.30467357000008],[-91.8919164699999,70.32636139500015],[-91.90534420499989,70.33991120000012],[-91.89826412699995,70.35618724200005],[-91.87852942599991,70.36473216400007],[-91.85265051999988,70.36692942900005],[-91.82648678299995,70.36456940300009],[-91.80577551999994,70.35932038000011],[-91.79922441299996,70.35236237200003],[-91.79356848899997,70.34235260600006],[-91.78624426999997,70.33649323100008],[-91.77501380099994,70.34223053600009],[-91.76305091099994,70.35472239799998],[-91.75584876199989,70.358099677],[-91.74429277299987,70.35932038000011],[-91.72321529899993,70.35578034100006],[-91.70872962099989,70.34654368700008],[-91.69823157499994,70.33356354400009],[-91.68907630099994,70.3183454450001],[-91.69937089799987,70.31329987200017],[-91.71934973899994,70.30658600500011],[-91.73070227799991,70.30467357000008],[-91.69884192599987,70.2560895850001],[-91.68773352799985,70.22776927300008],[-91.69652258999992,70.20848216400013],[-91.69652258999992,70.20225657800007],[-91.68537350199992,70.20453522300012],[-91.6715388659999,70.21092357000006],[-91.65990149599989,70.21885814000002],[-91.65493730399996,70.2258161480001],[-91.65074622299991,70.23590729400009],[-91.64098059799996,70.23407623899999],[-91.62083899599995,70.22211334800006],[-91.55752519399991,70.198228257],[-91.53038489499997,70.18195221600017],[-91.51097571499986,70.16132233300014],[-91.51561438699989,70.15473053600006],[-91.52481035099996,70.14935944199999],[-91.54523678299992,70.14496491100012],[-91.69652258999992,70.13397858300004],[-91.81261145699995,70.14020416900001],[-91.83665930899988,70.138128973],[-91.88410396999993,70.12872955900018],[-91.99547278599994,70.1230329450001],[-92.02489173099994,70.12657298400008],[-92.04527747299991,70.13410065300002],[-92.08014889199984,70.157212632],[-92.09996497299994,70.16754791900009],[-92.12173417899992,70.174058335],[-92.21056067599997,70.18292877800003],[-92.22581946499994,70.18793366100009],[-92.23387610599988,70.196478583],[-92.23033606699988,70.20848216400013],[-92.26390540299991,70.23948802300004],[-92.2813207669999,70.25104401200018],[-92.29922441299993,70.25690338700012],[-92.29954993399988,70.24046458500011],[-92.32176673099993,70.236273505],[-92.36754309799994,70.23643626500014],[-92.29702714799996,70.21788157800013],[-92.27501380099994,70.21588776200012],[-92.26622473899988,70.21308014500006],[-92.26537024599989,70.20652903899999],[-92.26829993399991,70.19957103100008],[-92.27131100199992,70.19542064000014],[-92.27985592399992,70.19000885600009],[-92.29027258999992,70.18768952000012],[-92.31224524599992,70.18866608300011],[-92.30601966099997,70.19542064000014],[-92.32640540299984,70.19513580900012],[-92.36929277299993,70.184027411],[-92.39171301999994,70.18121979400003],[-92.48420162699995,70.18121979400003],[-92.48420162699995,70.1749128280001],[-92.45425370999996,70.174505927],[-92.43065344999992,70.1713727890001],[-92.40990149599992,70.16307200700014],[-92.38857988199996,70.14704010600006],[-92.40404212099989,70.14142487200013],[-92.4342341789999,70.138128973],[-92.44635982999989,70.13031647300004],[-92.4739477199999,70.09857819200006],[-92.53172766799995,70.09336985900016],[-92.5872289699999,70.07880280200014],[-92.56871497299997,70.07440827000006],[-92.53111731699988,70.07758209800012],[-92.51829993399994,70.07135651200015],[-92.49233964799996,70.0508487000001],[-92.47801673099988,70.04559967700011],[-92.46304277299991,70.05145905200006],[-92.45645097599996,70.06871165600008],[-92.31159420499998,70.09430573100015],[-92.11172441299993,70.08860911700008],[-92.05044511599989,70.07672760600012],[-91.9935603509999,70.05552806200002],[-91.9429418609999,70.024115302],[-91.95811926999988,70.01597728100008],[-92.02489173099994,69.99620189000014],[-92.03282630099987,69.9951846370001],[-92.06615149599989,69.99620189000014],[-92.07725989499991,69.99371979400003],[-92.08136959499987,69.987738348],[-92.0828751289999,69.980943101],[-92.08629309799991,69.9756940780001],[-92.2234594389999,69.914780992],[-92.24498450399989,69.9086367860001],[-92.27131100199992,69.90745677299999],[-92.27131100199992,69.90062083500008],[-92.2643936839999,69.89972565300017],[-92.24461829299989,69.89378489800005],[-92.26471920499992,69.87523021000004],[-92.34186764199985,69.86192454600003],[-92.37938391799989,69.84507884300002],[-92.38923092399992,69.84491608300006],[-92.39952551999994,69.84589264500012],[-92.40908769399991,69.84540436400005],[-92.41795813699989,69.84190501500017],[-92.43106035099993,69.83392975500003],[-92.43602454299989,69.83234284100017],[-92.45474199099996,69.83038971600003],[-92.4908748039999,69.82147858299999],[-92.51146399599992,69.81867096600006],[-92.53620357999989,69.81964752800012],[-92.54759680899988,69.81683991100006],[-92.55247962099995,69.80780670800006],[-92.55101477799988,69.80158112200009],[-92.54539954299989,69.78900788],[-92.54564368399991,69.783880927],[-92.55479895699989,69.77220286699999],[-92.56786048099988,69.76459381700006],[-92.58360755099994,69.76239655200006],[-92.60057532499991,69.76683177300013],[-92.64142818899987,69.79096100500004],[-92.64867102799988,69.7941755230001],[-92.67345130099994,69.78082916900009],[-92.67471269399994,69.77427806200002],[-92.65550696499989,69.77024974200005],[-92.68407141799989,69.75694407800002],[-92.8413793609999,69.71002838700018],[-92.86839758999992,69.70880768400013],[-92.86839758999992,69.70197174700014],[-92.53880774599989,69.7150332700001],[-92.53880774599989,69.70880768400013],[-92.62271074099988,69.70538971600014],[-92.64712480399993,69.70005931200008],[-92.71499589799993,69.676703192],[-92.73741614499993,69.67405833500003],[-92.81358801999991,69.6791852890001],[-92.85570227799987,69.68956126500002],[-92.9230037099999,69.68150462400007],[-92.9230037099999,69.67405833500003],[-92.86432857999995,69.66290924700009],[-92.83340410099993,69.66132233300006],[-92.77033443899992,69.66950104400014],[-92.70055091099997,69.65513743700008],[-92.66909745999993,69.6541608740001],[-92.64704342399993,69.66193268400012],[-92.6035863919999,69.68329498900006],[-92.47142493399987,69.69761790600012],[-92.4493708979999,69.68773021000014],[-92.40542558499996,69.68475983300011],[-92.38857988199996,69.68773021000014],[-92.3867895169999,69.69127024900003],[-92.38524329299993,69.69782135600009],[-92.38198808499989,69.70457591400005],[-92.37490800699993,69.70880768400013],[-92.36742102799987,69.708726304],[-92.34019934799997,69.70197174700014],[-92.34019934799997,69.69452545800006],[-92.35094153599988,69.689642645],[-92.36042232999998,69.68390534100003],[-92.36839758999994,69.676743882],[-92.37490800699993,69.66783274900014],[-92.35293535099993,69.66148509300002],[-92.34044348899991,69.66010163000014],[-92.33006751199991,69.66193268400012],[-92.33287512899994,69.66193268400012],[-92.33446204299989,69.66315338700004],[-92.3339737619999,69.66783274900014],[-92.26284745999996,69.66583893400009],[-92.22642981699987,69.65879954600005],[-92.17658443899992,69.63340892100001],[-92.11457271999987,69.63226959800006],[-92.09117591099991,69.62592194200013],[-92.08629309799991,69.61945221600014],[-92.24547278599988,69.63377513200011],[-92.26113847599996,69.63572825700008],[-92.2630916009999,69.63422272300012],[-92.27009029899989,69.64000071800008],[-92.28799394399994,69.64655182500017],[-92.29922441299993,69.64671458500013],[-92.29922441299993,69.64057038000006],[-92.23778235599988,69.60578034100011],[-92.18154863199987,69.59381745000017],[-92.16885331899991,69.58531321800014],[-92.16869055899986,69.59015534100003],[-92.1671443349999,69.5910505230001],[-92.16466223899988,69.58909739800008],[-92.16144771999993,69.58531321800014],[-92.16885331899991,69.57786692900008],[-92.14464270699992,69.57794830900005],[-92.13292395699992,69.57579173400013],[-92.12169348899994,69.57164134300011],[-92.12389075399992,69.56785716399999],[-92.12791907499988,69.55805084800015],[-92.10265051999994,69.55805084800015],[-91.96666419199991,69.533636786],[-91.93712317599994,69.51902903899999],[-91.87401282499985,69.50958893400015],[-91.81940670499998,69.49079010600012],[-91.79832923099988,69.48969147300006],[-91.80272376199994,69.51325104400003],[-91.77456620999996,69.52606842700006],[-91.73619544199994,69.53440989800009],[-91.71019446499986,69.54429759300005],[-91.73745683499995,69.55113353100013],[-91.71344967399992,69.55768463700004],[-91.64810136599993,69.55805084800015],[-91.63206946499993,69.56354401200018],[-91.5980525379999,69.58100006700015],[-91.57921301999997,69.58531321800014],[-91.58751380099994,69.599798895],[-91.59300696499987,69.60655345300005],[-91.60033118399988,69.61261627800002],[-91.58755449099993,69.61884186400009],[-91.55565344999994,69.62787506699999],[-91.54230709499991,69.63682689000002],[-91.53307044199994,69.64105866100014],[-91.51036536399991,69.63996002800009],[-91.50072180899993,69.64362213700007],[-91.4991348949999,69.64732493700008],[-91.49730383999992,69.661078192],[-91.46475175699996,69.66742584800012],[-91.42601477799994,69.66840241100012],[-91.3538712229999,69.661078192],[-91.33385169199993,69.65387604400017],[-91.32140051999994,69.65277741100012],[-91.30549068899992,69.65757884300002],[-91.28986568899983,69.66022370000012],[-91.27717037699996,69.65412018400012],[-91.2649633449999,69.64549388200011],[-91.25084387899997,69.64057038000006],[-91.19505774599989,69.65570709800015],[-91.16759192599994,69.65570709800015],[-91.16832434799997,69.63312409100008],[-91.14997311099992,69.63251373900012],[-91.09325110599994,69.64057038000006],[-91.10655676999994,69.62486399900008],[-91.13182532499991,69.61937083500004],[-91.18879146999993,69.61945221600014],[-91.21890214799996,69.61432526200004],[-91.32428951699985,69.563421942],[-91.35973059799997,69.55292389500012],[-91.5410863919999,69.53375885600018],[-91.57237708199995,69.52326080900009],[-91.55711829299989,69.51182689000014],[-91.54124915299985,69.51304759300017],[-91.52391516799989,69.51947663000009],[-91.50405839799987,69.52326080900009],[-91.34679114499997,69.52326080900009],[-91.33995520699995,69.52610911700005],[-91.31623287699992,69.53978099199999],[-91.30483964799987,69.54429759300005],[-91.18907630099994,69.56419505400014],[-91.17739824099996,69.5612653670001],[-91.16690019399991,69.55402252800009],[-91.14781653599991,69.53685130400005],[-91.10997473899997,69.51329173400002],[-91.08580481699997,69.51129791900017],[-91.00715084499987,69.52716705900009],[-90.97716223899991,69.51593659100008],[-90.89769446499989,69.53685130400005],[-90.88634192599991,69.53172435100005],[-90.88133704299989,69.51923248900012],[-90.88198808499993,69.50372955900004],[-90.88780676999988,69.48969147300006],[-90.75059973899992,69.48969147300006],[-90.75328528599991,69.51911041900014],[-90.72419186099995,69.534165757],[-90.68431555899987,69.53888580900009],[-90.65440833199989,69.53685130400005],[-90.5035701159999,69.50958893400015],[-90.46760006399992,69.49713776200007],[-90.43687903599994,69.49315013200008],[-90.4270727199999,69.48619212400008],[-90.41881262899992,69.47728099200003],[-90.40794837099992,69.46861399900014],[-90.4002986319999,69.46466705900015],[-90.39370683499993,69.46263255400014],[-90.37694251199991,69.46177806200005],[-90.36953691299993,69.4597028670001],[-90.36888587099989,69.45490143400004],[-90.37047278599991,69.44928620000002],[-90.36978105399996,69.44468821800008],[-90.3613988919999,69.44513580900018],[-90.32607988199987,69.45298899900015],[-90.31175696499989,69.45433177300005],[-90.31175696499989,69.4481061870001],[-90.35252844999985,69.43732330900009],[-90.47622636599993,69.4481061870001],[-90.4871313139999,69.44647858300009],[-90.51720130099994,69.43451569200015],[-90.53604081899988,69.43040599199999],[-90.56159420499998,69.42829010600018],[-90.57933508999989,69.42938873900012],[-90.59776770699992,69.43272532800016],[-90.61436926999997,69.4389509140001],[-90.61327063699991,69.44151439000002],[-90.60716712099992,69.44224681200014],[-90.59976152299993,69.4481061870001],[-90.62144934799991,69.45404694200012],[-90.7027888659999,69.45433177300005],[-90.7027888659999,69.4481061870001],[-90.68529212099995,69.44798411700013],[-90.66657467399997,69.44310130400005],[-90.63390051999994,69.42829010600018],[-90.62588456899991,69.42405833500005],[-90.59984290299991,69.42499420800014],[-90.58551998599992,69.420843817],[-90.59666907499985,69.41608307500012],[-90.61864173099988,69.4125430360001],[-90.62645423099988,69.40778229400003],[-90.64952551999991,69.413519598],[-90.67259680899988,69.40770091400003],[-90.69595292899987,69.39838288],[-90.73827063699989,69.39044830900004],[-90.79775956899991,69.36619700700005],[-90.79539954299986,69.36249420800003],[-90.79157467399995,69.35252513200011],[-90.81114661399991,69.34629954600014],[-90.81505286399991,69.33368561400009],[-90.81065833199995,69.32013580900012],[-90.80524654899989,69.31098053600012],[-90.81354732999995,69.30687083499998],[-90.81655839799987,69.30060455900004],[-90.81395423099988,69.29271067900005],[-90.80524654899989,69.28367747600005],[-90.81822669199988,69.27680084800012],[-90.81354732999995,69.27171458500011],[-90.80524654899989,69.256333726],[-90.93553626199994,69.24949778900007],[-90.93553626199994,69.256333726],[-90.9053442049999,69.26817454600005],[-90.89460201699988,69.2700056010001],[-90.90868079299995,69.27057526200018],[-90.94920813699989,69.263128973],[-90.94298255099991,69.263128973],[-90.95067298099994,69.26264069200012],[-90.95750891799995,69.26325104400017],[-90.96373450399992,69.26548899900014],[-90.96971594999994,69.2700056010001],[-90.95107988199992,69.27667877800015],[-90.94298255099991,69.27680084800012],[-90.94298255099991,69.28367747600005],[-90.95604407499988,69.28367747600005],[-90.95604407499988,69.29047272300006],[-90.94273841099997,69.28912995000009],[-90.93065344999988,69.28974030200006],[-90.9210505849999,69.29413483300011],[-90.91510982999995,69.304144598],[-90.93980872299994,69.30329010600012],[-91.0700577459999,69.26813385600006],[-91.08633378799993,69.2700056010001],[-91.09459387899992,69.28510163000011],[-91.06847083199997,69.29682038000001],[-91.01065019399994,69.31098053600012],[-91.00548255099994,69.31708405200011],[-91.00251217399995,69.33209870000006],[-90.99762936099987,69.33893463700015],[-90.98932857999998,69.34312571800008],[-90.95604407499988,69.35252513200011],[-90.95604407499988,69.35936107000013],[-90.9848526679999,69.35883209800006],[-91.0108536449999,69.35016510600015],[-91.08967037699995,69.31199778900002],[-91.15611731699988,69.29332103100002],[-91.18907630099994,69.29047272300006],[-91.25422115799998,69.29869212400015],[-91.44953365799996,69.35936107000013],[-91.44953365799996,69.35252513200011],[-91.39297441299986,69.3257917340001],[-91.25918535099993,69.28367747600005],[-91.18126380099997,69.27399323100009],[-91.16527258999987,69.26658763200003],[-91.1500138009999,69.25678131700006],[-91.13756262899996,69.24607982000005],[-91.12564042899993,69.23883698100003],[-91.03359941299993,69.21954987200009],[-90.85700436099992,69.14463939000002],[-90.82213294199988,69.13816966400013],[-90.80524654899989,69.13279857000008],[-90.7706599599999,69.1088727890001],[-90.76024329299992,69.10553620000016],[-90.73668372299993,69.10313548400005],[-90.67064368399994,69.08820221600008],[-90.65440833199989,69.07819245000009],[-90.66136633999989,69.06183502800009],[-90.7023005849999,69.039740302],[-90.69538326699991,69.02977122600011],[-90.70897376199989,69.00718821800005],[-90.6854548819999,68.998236395],[-90.62022864499991,68.99567291900009],[-90.62645423099988,68.99567291900009],[-90.6121313139999,68.987494208],[-90.5792537099999,68.94786204600015],[-90.59976152299993,68.94786204600015],[-90.59976152299993,68.940375067],[-90.59434973899991,68.9372419290001],[-90.58551998599992,68.92735423400002],[-90.60537675699993,68.92658112200009],[-90.6197810539999,68.92173899900011],[-90.62108313699991,68.91632721600013],[-90.53262285099987,68.91144440300009],[-90.44652258999992,68.88629791900011],[-90.43529212099992,68.8789737000001],[-90.44115149599995,68.87010325700005],[-90.47264563699984,68.86212799700012],[-90.48306230399996,68.85228099199999],[-90.43712317599997,68.85480377800009],[-90.42162024599986,68.85228099199999],[-90.42162024599986,68.84544505400007],[-90.44676673099985,68.84015534100008],[-90.49791419199991,68.84467194200015],[-90.52403723899997,68.83860911700005],[-90.53795325399994,68.83690013200005],[-90.56114661399988,68.82807038],[-90.59976152299993,68.80390045800009],[-90.5635473299999,68.79893626500002],[-90.48184160099993,68.82660553600012],[-90.4421280589999,68.83116282800007],[-90.44749915299988,68.82172272300005],[-90.45494544199994,68.81773509300008],[-90.46353105399987,68.814642645],[-90.47252356699988,68.8075625670001],[-90.47581946499992,68.7964948590001],[-90.46690833199989,68.79132721600008],[-90.45494544199994,68.790025132],[-90.44896399599995,68.79022858300014],[-90.45710201699987,68.777044989],[-90.47411048099991,68.77012767100008],[-90.49217688699993,68.77171458500011],[-90.5035701159999,68.78400299700009],[-90.51036536399994,68.78400299700009],[-90.51317298099988,68.77008698100009],[-90.52765865799992,68.75267161700005],[-90.53087317599989,68.7424177100001],[-90.52623450399994,68.733384507],[-90.51561438699991,68.72455475500013],[-90.50328528599997,68.7178408870001],[-90.48302161399995,68.71104564000017],[-90.48558508999986,68.70111725500006],[-90.49303137899994,68.68878815300002],[-90.50080318899984,68.667669989],[-90.50934811099995,68.66209544500002],[-90.53087317599989,68.653021552],[-90.52647864499991,68.64203522300012],[-90.53530839799994,68.63544342700004],[-90.56501217399997,68.62571849200009],[-90.54698645699995,68.62225983300011],[-90.52550208199992,68.61505768400018],[-90.50499426999997,68.60460032800002],[-90.48989824099995,68.59153880400011],[-90.50169837099995,68.58421458500011],[-90.53026282499994,68.58152903900005],[-90.53831946499986,68.57855866100012],[-90.53990637899989,68.57208893400004],[-90.5377498039999,68.56525299700012],[-90.53319251199994,68.5596784530001],[-90.52745520699997,68.55744049700003],[-90.50816809799994,68.553168036],[-90.48668372299991,68.54376862200009],[-90.47716223899991,68.53440989800005],[-90.4936417309999,68.53009674700014],[-90.4984024729999,68.523871161],[-90.51720130099994,68.49192942899998],[-90.52916419199988,68.48883698100008],[-90.60008704299986,68.46124909100008],[-90.60606848899988,68.45807526200012],[-90.60814368399991,68.45099518400015],[-90.60704505099994,68.44391510600009],[-90.60350501199989,68.44078196800002],[-90.56501217399997,68.43390534100011],[-90.49738521999983,68.41343821800014],[-90.31859290299991,68.37925853100013],[-90.31859290299991,68.37250397300004],[-90.3583064439999,68.37238190300006],[-90.47565670499993,68.33771393400015],[-90.3864639959999,68.35044993700002],[-90.33836829299995,68.35203685100005],[-90.31175696499989,68.33771393400015],[-90.31533769399996,68.33307526200004],[-90.31720943899984,68.33124420800006],[-90.31627356699994,68.32929108300011],[-90.31175696499989,68.32404205900004],[-90.32412675699993,68.30988190300012],[-90.31798255099993,68.29889557500015],[-90.28758704299989,68.2800153670001],[-90.27818762899994,68.26813385600015],[-90.27920488199993,68.25189850500011],[-90.27082271999987,68.24213288],[-90.23704993399988,68.232123114],[-90.19383704299989,68.23578522300006],[-90.15151933499986,68.247748114],[-90.11998450399996,68.26264069200015],[-90.12779700399997,68.26874420800011],[-90.13438880099994,68.27610911700013],[-90.13878333199992,68.28453196800008],[-90.14049231699994,68.29364655200004],[-90.16405188699989,68.30272044500008],[-90.17149817599994,68.307318427],[-90.16413326699987,68.31517161699999],[-90.1112361319999,68.33405182500012],[-90.09947669199991,68.33771393400015],[-90.06997636599993,68.34434642100003],[-90.02354895699989,68.37287018400004],[-90.0001521479999,68.37925853100013],[-89.99657141799995,68.382554429],[-89.99347896999987,68.39020416900003],[-89.98961341099994,68.40599192900008],[-90.00218665299992,68.41327545800007],[-90.00182044199991,68.41941966400007],[-89.98216712099986,68.42772044500005],[-90.00389563699994,68.43390534100011],[-89.97834225199993,68.44562409100008],[-89.92430579299986,68.45160553600003],[-89.90086829299989,68.46124909100008],[-89.91169186099997,68.4698347030001],[-89.91014563699994,68.4796817080001],[-89.90050208199997,68.48639557500015],[-89.88719641799993,68.48545970300007],[-89.87096106699991,68.481878973],[-89.8645727199999,68.48834870000012],[-89.86245683499988,68.49945709800012],[-89.8592830069999,68.50962962400007],[-89.8497615229999,68.52330149900003],[-89.83763587099992,68.536322333],[-89.82095292899987,68.5445417340001],[-89.86668860599988,68.54441966400013],[-89.89614824099988,68.5502383480001],[-89.92076575399997,68.56427643400004],[-89.93830318899992,68.58799876500014],[-89.94595292899996,68.60431549700017],[-89.94493567599987,68.61579010600012],[-89.92918860599994,68.62498607],[-89.90998287699998,68.63324616100009],[-89.89732825399992,68.64386627800012],[-89.90086829299989,68.66046784100017],[-89.8468318349999,68.67731354400017],[-89.83193925699993,68.687201239],[-89.81769771999993,68.70640696800014],[-89.80947831899994,68.71271393400018],[-89.79442298099991,68.71507396000013],[-89.76650956899988,68.70368073100018],[-89.75389563699989,68.67731354400017],[-89.75560462099988,68.647406317],[-89.77057857999992,68.62571849200009],[-89.75450598899994,68.62518952000012],[-89.74063066299996,68.62995026200004],[-89.71593176999988,68.64618561400007],[-89.71544348899991,68.65082428599999],[-89.71662350199992,68.65875885600015],[-89.72057044199991,68.66742584800005],[-89.72215735599994,68.67413971600011],[-89.72687740799995,68.68817780200006],[-89.72549394399996,68.707505601],[-89.71996008999994,68.72638580900012],[-89.71222896999984,68.7389997420001],[-89.70026607999992,68.75324127800008],[-89.69774329299989,68.765326239],[-89.70348059799997,68.777085679],[-89.71593176999988,68.79022858300014],[-89.70547441299989,68.793931382],[-89.69603430899988,68.79954661699999],[-89.68956458199997,68.80744049700013],[-89.68797766799995,68.81749095300013],[-89.69367428299992,68.82916901200004],[-89.7049861319999,68.8327497420001],[-89.73639889199984,68.83116282800007],[-89.72618567599991,68.84507884300014],[-89.72223873599992,68.85297272300012],[-89.72345943899984,68.86192454600014],[-89.7344457669999,68.89142487200003],[-89.74693762899992,68.916245835],[-89.75072180899994,68.9484723980001],[-89.74913489499991,68.95624420800011],[-89.74323482999995,68.96832916900001],[-89.72606360599994,68.99485911699999],[-89.70531165299994,69.02020905200011],[-89.6721899079999,69.04450104400009],[-89.54458574099993,69.09186432500003],[-89.44155839799987,69.15391673400008],[-89.4422908189999,69.16254303600009],[-89.40933183499993,69.17511627800016],[-89.40054277299987,69.18439362200003],[-89.39525305899988,69.21161530200011],[-89.39720618399993,69.21539948100015],[-89.38390051999991,69.21971263200005],[-89.3316951159999,69.24949778900007],[-89.30996660099993,69.254584052],[-89.26349850199998,69.26019928600009],[-89.19871985599988,69.27806224200005],[-89.03587805899984,69.26719798400016],[-88.94196529899989,69.23358795800014],[-88.93618730399993,69.22687409100008],[-88.94127356699994,69.21539948100015],[-88.93285071499992,69.20274485900008],[-88.92100989499994,69.19428131700012],[-88.90729732999992,69.18943919500005],[-88.90029863199993,69.18805573100018],[-88.88683020699995,69.17955149900014],[-88.86217200399994,69.15155670800011],[-88.84569251199987,69.139634507],[-88.72858639199987,69.08392975500009],[-88.55972245999996,69.03038157800007],[-88.52147376199991,69.01280345300012],[-88.44749915299994,68.99713776200015],[-88.24974524599988,68.9315860050001],[-88.02261308499996,68.80866120000017],[-87.98021399599986,68.77122630400005],[-87.94709225199992,68.72968170800006],[-87.92650305899991,68.687201239],[-87.9199112619999,68.6651472030001],[-87.91917883999989,68.65289948100003],[-87.92332923099994,68.64244212400013],[-87.94815019399987,68.60871002800015],[-87.94131425699987,68.58763255400014],[-87.92528235599988,68.56598541900006],[-87.90689042899993,68.54767487200017],[-87.89293372299997,68.53697337400014],[-87.8898005849999,68.51622142100014],[-87.87848873599992,68.49652741100012],[-87.85887610599985,68.47992584800006],[-87.83088131399992,68.46869538000006],[-87.84211178299992,68.45355866100006],[-87.84333248599994,68.44183991100005],[-87.83674068899987,68.43235911700008],[-87.80036373599998,68.40428294500008],[-87.79600989499991,68.38617584800015],[-87.80064856699991,68.36717357000005],[-87.80357825399993,68.34454987200009],[-87.79987545499989,68.33775462400014],[-87.79401607999995,68.33515045800006],[-87.79222571499989,68.33124420800006],[-87.80044511599996,68.32099030200014],[-87.80577551999994,68.31256745000009],[-87.80992591099988,68.30255768400009],[-87.8146052729999,68.29413483300006],[-87.82127844999985,68.29059479400017],[-87.82738196499994,68.28611888200011],[-87.83873450399992,68.26422760600018],[-87.84455318899987,68.2558047550001],[-87.85411536399994,68.24937571800002],[-87.89293372299997,68.23590729400003],[-87.91161048099994,68.22272370000017],[-87.92735755099991,68.20795319199999],[-87.94375566299989,68.20087311400012],[-87.99351966099988,68.22907135600012],[-88.02700761599993,68.23822662999999],[-88.09496008999992,68.24213288],[-88.1019587879999,68.24339427299999],[-88.11685136599993,68.24872467700006],[-88.12633216099994,68.24957916900014],[-88.1304418609999,68.24738190300017],[-88.14150956899994,68.23802317900014],[-88.14614824099995,68.23590729400003],[-88.15843665299991,68.23655833500008],[-88.16974850199992,68.23924388200005],[-88.17955481699994,68.24530670800006],[-88.18712317599989,68.2558047550001],[-88.18838456899991,68.27033112200014],[-88.18000240799992,68.35858795800014],[-88.18154863199987,68.37042877800009],[-88.18712317599989,68.37925853100013],[-88.19937089799996,68.38336823100009],[-88.21190344999984,68.38056061400006],[-88.21727454299992,68.37201569200012],[-88.20832271999987,68.3588320980001],[-88.21711178299995,68.35382721600006],[-88.25548255099997,68.34454987200009],[-88.26805579299985,68.33820221600014],[-88.29698645699995,68.31785716400007],[-88.32038326699984,68.30878327000006],[-88.39842688699989,68.29079824400013],[-88.39879309799991,68.28758372600008],[-88.40127519399994,68.28233470300007],[-88.40684973899992,68.27692291900003],[-88.38756262899989,68.2572695980001],[-88.34211178299992,68.228216864],[-88.32494055899988,68.207993882],[-88.32371985599988,68.20176829600003],[-88.32457434799997,68.19542064000011],[-88.32469641799995,68.18931712400011],[-88.32119706899996,68.18378327],[-88.30382239499995,68.16705963700015],[-88.28331458199992,68.12604401200015],[-88.28286699099993,68.11383698100018],[-88.28628495999993,68.10663483300014],[-88.32998613199993,68.07945384300005],[-88.33458411399997,68.07762278900007],[-88.34276282499988,68.07538483300009],[-88.34194902299996,68.06981028900007],[-88.33836829299989,68.06305573100003],[-88.33796139199985,68.05719635600009],[-88.33511308499992,68.05646393400015],[-88.33275305899988,68.05133698100003],[-88.33482825399992,68.04559967700008],[-88.35204016799992,68.04148997600011],[-88.37385006399987,68.0337588560001],[-88.37954667899996,68.02985260600012],[-88.37938391799989,68.02147044500005],[-88.37267005099994,68.01459381700015],[-88.35846920499992,68.00254954600003],[-88.37364661399991,67.9758161480001],[-88.3644913399999,67.95628489800004],[-88.34727942599991,67.93846263200005],[-88.33161373599995,67.89826080900015],[-88.30337480399987,67.86290110900013],[-88.29698645699995,67.84796784100011],[-88.29255123599998,67.83124420800007],[-88.28099524599986,67.81098053600006],[-88.26537024599989,67.79120514500015],[-88.24860592399995,67.77598704600015],[-88.18480383999992,67.75275299700004],[-88.16348222599996,67.73619212400017],[-88.17349199099992,67.70770905200006],[-88.1529841789999,67.68040599199999],[-88.14053300699996,67.67072174700003],[-88.11266028599991,67.65729401200004],[-88.10179602799994,67.64935944200006],[-88.06932532499985,67.63202545800009],[-87.97813880099994,67.61778392100008],[-87.9407445949999,67.60468170800002],[-87.91250566299993,67.58360423400008],[-87.8680720689999,67.56309642100001],[-87.8548070949999,67.55353424700014],[-87.84142005099987,67.539496161],[-87.81533769399992,67.51947663000011],[-87.71483313699989,67.481146552],[-87.6598201159999,67.43390534100003],[-87.64281165299985,67.42649974200005],[-87.63194739499997,67.42365143400009],[-87.57176673099988,67.39337799700012],[-87.48379472599996,67.36310455900012],[-87.46694902299996,67.35224030200011],[-87.45763098899991,67.33494700700014],[-87.45470130099989,67.27265045800006],[-87.44737708199997,67.26386139500009],[-87.43057206899996,67.26581452000012],[-87.39952551999993,67.27570221600014],[-87.37694251199989,67.27411530200011],[-87.36294511599989,67.26719798400002],[-87.36066646999984,67.256089585],[-87.37279212099993,67.24156321800014],[-87.38052324099993,67.23798248900006],[-87.41315670499989,67.2279727230001],[-87.45470130099989,67.20685455900018],[-87.4922582669999,67.19904205900018],[-87.50194251199986,67.193793036],[-87.51024329299992,67.184271552],[-87.51130123599998,67.17877838700015],[-87.50951087099989,67.17369212400014],[-87.50938880099991,67.16583893400015],[-87.51060950399994,67.15428294500005],[-87.51032467399992,67.14488353100002],[-87.51121985599991,67.13422272300008],[-87.51618404899995,67.11871979400017],[-87.49608313699991,67.12107982000013],[-87.47720292899987,67.126410223],[-87.4597875639999,67.13536204600001],[-87.42796790299988,67.16563548400002],[-87.41454016799989,67.17499420800004],[-87.39793860599991,67.17918528899997],[-87.37218176999988,67.18012116100006],[-87.32778886599996,67.17328522300014],[-87.32481848899994,67.17023346600014],[-87.32331295499988,67.15513743700014],[-87.31468665299988,67.13536204600001],[-87.31090247299997,67.11827220300006],[-87.3042699859999,67.10370514500013],[-87.28929602799988,67.09760163000006],[-87.27696692599991,67.10838450700005],[-87.25548255099989,67.18012116100006],[-87.2493383449999,67.18585846600003],[-87.23399817599994,67.19330475500011],[-87.2281794909999,67.20062897300004],[-87.22988847599989,67.20567454600014],[-87.2364802729999,67.20978424700009],[-87.24217688699989,67.21442291900001],[-87.2412003249999,67.22113678600006],[-87.22813880099991,67.22809479400014],[-87.19591223899997,67.22272370000009],[-87.18040930899986,67.2279727230001],[-87.18126380099997,67.23663971600008],[-87.1625056629999,67.23663971600008],[-87.13719641799986,67.22882721600008],[-87.11831620999993,67.21430084800015],[-87.12462317599997,67.20270416900003],[-87.12254798099985,67.188177802],[-87.11412512899989,67.17894114800013],[-87.10122636599988,67.18353913000009],[-87.08311926999997,67.20612213700004],[-87.07579505099997,67.21808502800017],[-87.07115637899994,67.2279727230001],[-87.07551021999983,67.25311920800006],[-87.07066809799994,67.263373114],[-87.05003821499992,67.25865306200008],[-87.02965247299994,67.25104401200007],[-87.0052384109999,67.246568101],[-86.98086503799993,67.2473005230001],[-86.96068274599992,67.25523509300008],[-86.99754798099988,67.27330149900008],[-87.00780188699991,67.28672923400008],[-86.99478105399993,67.30304596600003],[-87.01170813699991,67.310003973],[-87.04645748599995,67.31708405200006],[-87.06371008999986,67.3241641300001],[-87.07445227799988,67.33136627800015],[-87.08751380099994,67.34263743700014],[-87.09219316299988,67.35309479400003],[-87.07770748599992,67.35765208500008],[-87.03892981699991,67.354925848],[-87.01992753799989,67.34992096600017],[-87.00536048099987,67.34088776200015],[-86.99669348899988,67.33161041900011],[-86.98790442599991,67.32465241100012],[-86.9766739569999,67.32330963700004],[-86.96068274599992,67.33100006700015],[-86.96711178299992,67.3428408870001],[-86.96711178299992,67.35639069200006],[-86.96051998599995,67.36737702000012],[-86.92931067599997,67.37726471600006],[-86.89655514199987,67.40074290600002],[-86.88219153599988,67.40607330900015],[-86.81094316299995,67.41722239799999],[-86.77896074099996,67.41864655200006],[-86.74156653599991,67.40607330900015],[-86.68586178299992,67.37352122600011],[-86.65343176999991,67.36371491100009],[-86.62547766799989,67.37193431200008],[-86.62222245999993,67.402044989],[-86.61514238199987,67.41437409100014],[-86.59752356699994,67.40607330900015],[-86.59459387899992,67.396429755],[-86.59666907499985,67.38316478100008],[-86.60073808499989,67.37107982000006],[-86.60374915299991,67.36505768400013],[-86.58385169199991,67.34918854400003],[-86.55329342399989,67.35215892100014],[-86.52245032499994,67.36517975500014],[-86.50194251199987,67.37938060100005],[-86.51183020699989,67.39085521],[-86.52790279899995,67.41657135600003],[-86.53612219999988,67.42649974200005],[-86.53624426999994,67.43036530200006],[-86.5355525379999,67.44074127800013],[-86.53612219999988,67.447007554],[-86.4962458979999,67.45164622600011],[-86.48082434799994,67.4590518250001],[-86.4746801419999,67.47801341400013],[-86.47996985599985,67.48969147300012],[-86.48940995999988,67.49945709800006],[-86.49303137899994,67.51129791900003],[-86.48086503799993,67.52960846600008],[-86.48766028599988,67.54185618700014],[-86.48688717399995,67.55219147300006],[-86.48314368399991,67.56232330900012],[-86.48086503799993,67.57396067900011],[-86.47240149599992,67.57916901200012],[-86.45767167899993,67.59239329600014],[-86.45295162699992,67.60594310100011],[-86.48884029899992,67.61713288000011],[-86.49290930899986,67.62872955900004],[-86.49274654899988,67.642320054],[-86.49453691299988,67.65314362200009],[-86.5018611319999,67.661322333],[-86.52155514199984,67.67767975500011],[-86.52928626199994,67.68720123900003],[-86.47687740799998,67.71771881700015],[-86.39073645699992,67.80975983300006],[-86.34373938699989,67.84491608300011],[-86.28962154899992,67.86810944200015],[-86.27204342399996,67.88243235900003],[-86.25300045499998,67.89439524900014],[-86.18667558499993,67.91376373900009],[-86.17992102799991,67.91962311400012],[-86.17178300699987,67.93280670800009],[-86.16616777299987,67.93736399900003],[-86.13768469999988,67.95099518400015],[-86.12832597599993,67.95783112200009],[-86.12287350199989,67.96954987200017],[-86.12511145699997,67.98456452],[-86.1314184239999,67.99913157800002],[-86.13825436099992,68.00938548400013],[-86.13060462099992,68.016058661],[-86.12035071499989,68.02118561400012],[-86.10887610599994,68.02208079600003],[-86.09727942599991,68.01618073100018],[-86.10948645699989,68.00238678600006],[-86.10850989499991,67.99140045800011],[-86.09764563699994,67.984076239],[-86.08018958199997,67.9815127620001],[-86.06965084499993,67.98472728100016],[-86.05858313699989,67.99925364799999],[-86.04918372299993,68.00254954600003],[-86.02501380099994,68.00556061400012],[-86.01183020699989,68.00885651200015],[-85.90172278599988,68.05438873900012],[-85.89696204299987,68.06065501500008],[-85.90347245999988,68.06854889500006],[-85.91295325399997,68.08506907800013],[-85.91588294199991,68.09808991100012],[-85.91478430899986,68.11143626500005],[-85.90754146999984,68.12189362200012],[-85.89183508999986,68.12604401200015],[-85.86481686099992,68.12970612200012],[-85.86534583199989,68.13878001500011],[-85.87743079299989,68.15086497600011],[-85.88499915299985,68.16331614800013],[-85.88752193899987,68.17552317900002],[-85.89049231699988,68.1846377620001],[-85.88731848899991,68.19269440300002],[-85.8714086579999,68.20115794500006],[-85.85020911399991,68.20286692900008],[-85.8264867829999,68.20038483300006],[-85.80475826699993,68.20347728100013],[-85.78941809799997,68.22166575700011],[-85.81566321499989,68.2234968120001],[-85.83527584499987,68.23057689000017],[-85.84373938699987,68.24518463700016],[-85.83657792899996,68.26947663000006],[-85.82811438699991,68.27680084800006],[-85.81834876199987,68.27928294499999],[-85.81086178299988,68.28375885600015],[-85.80923417899987,68.29673899900014],[-85.81403561099995,68.30479564000008],[-85.83454342399992,68.316839911],[-85.84406490799992,68.32404205900004],[-85.8204646479999,68.32880280200011],[-85.80345618399991,68.33604564000014],[-85.71715247299989,68.39826080900015],[-85.70628821499992,68.41343821800014],[-85.71983801999997,68.418402411],[-85.73721269399992,68.42772044500005],[-85.74787350199998,68.43671295800006],[-85.74103756399987,68.44078196800002],[-85.70343990799994,68.44293854400003],[-85.68399003799996,68.44708893400015],[-85.66527258999987,68.45441315300015],[-85.7106013659999,68.45978424700003],[-85.73200436099995,68.46539948100012],[-85.74103756399987,68.47858307500015],[-85.7377823559999,68.48456452000008],[-85.73078365799991,68.48961009300002],[-85.72374426999997,68.49616120000009],[-85.7205297519999,68.50629303600006],[-85.72158769399996,68.52985260600009],[-85.7205297519999,68.53697337400014],[-85.72227942599991,68.53961823100003],[-85.7243546209999,68.540757554],[-85.72459876199989,68.54352448100003],[-85.7205297519999,68.55064524900008],[-85.7335098949999,68.55744049700003],[-85.73884029899997,68.56598541900006],[-85.7365616529999,68.57538483300006],[-85.72671464799986,68.58478424700009],[-85.74266516799987,68.61302317900005],[-85.74282792899996,68.62482330900004],[-85.73420162699995,68.63873932500009],[-85.72427324099993,68.64679596600006],[-85.70295162699998,68.6577009140001],[-85.69322669199994,68.66669342700014],[-85.68883216099994,68.67430247600008],[-85.68089758999989,68.69578685100002],[-85.67955481699988,68.70453522300006],[-85.66812089799993,68.72699616100009],[-85.64134680899993,68.7424177100001],[-85.61046301999988,68.74750397300012],[-85.56163489499988,68.73094310100008],[-85.52367102799988,68.73358795800006],[-85.48558508999987,68.74310944200015],[-85.45982825399993,68.75604889500006],[-85.48436438699986,68.76544830900018],[-85.5628555979999,68.78400299700009],[-85.41344153599988,68.7744815120001],[-85.36363684799991,68.76288483300009],[-85.37653561099992,68.75128815300015],[-85.38345292899993,68.74652741100006],[-85.39159094999992,68.7424177100001],[-85.36025956899988,68.73399485900016],[-85.22476152299993,68.72129954600008],[-85.21816972599987,68.732163804],[-85.2332250639999,68.74457428600003],[-85.26121985599991,68.74860260600018],[-85.23936926999997,68.76585521],[-85.19945227799991,68.76422760600015],[-85.1246638659999,68.74860260600018],[-84.95958411399991,68.76288483300009],[-84.93907630099994,68.75971100500003],[-84.89830481699988,68.74559153899999],[-84.80724036399997,68.73423899900011],[-84.78823808499996,68.73558177299999],[-84.78087317599997,68.74030182500009],[-84.75926673099988,68.75824616100014],[-84.75475012899992,68.76288483300009],[-84.76097571499989,68.77814362200006],[-84.77513587099989,68.78440989799999],[-84.78929602799991,68.78766510600003],[-84.79572506399984,68.79364655200006],[-84.8092341789999,68.81407298400002],[-84.84089107999998,68.82310618700014],[-84.9046524729999,68.8249372420001],[-84.92467200399989,68.82282135600008],[-84.96670488199996,68.81342194200009],[-84.98717200399992,68.81126536699999],[-85.14500891799989,68.83478424700003],[-85.17861894399991,68.84715403899997],[-85.1929418609999,68.86933014500012],[-85.17275956899988,68.87738678600009],[-85.04271399599988,68.86591217700011],[-85.05199133999992,68.86957428600009],[-85.05483964799987,68.87266673400016],[-85.05577551999993,68.8789737000001],[-85.02672278599988,68.87848541900003],[-85.01309160099991,68.880316473],[-85.00055904899992,68.88580963700004],[-85.01634680899988,68.89219798400013],[-85.05801347599993,68.89948151200015],[-85.06944739499988,68.90692780200014],[-85.06362870999993,68.91754791900009],[-85.01292883999986,68.915716864],[-85.00055904899992,68.92426178600012],[-85.14513098899997,68.94786204600015],[-85.11872311099998,68.96356842700011],[-85.08071855399987,68.96430084800006],[-84.95518958199992,68.95066966400009],[-84.93944251199989,68.94415924700003],[-84.92096920499995,68.93891022300012],[-84.87938391799987,68.94102610900013],[-84.80431067599994,68.93341705900009],[-84.79572506399984,68.93732330900009],[-84.7979223299999,68.94977448100003],[-84.80443274599992,68.95958079600014],[-84.81509355399994,68.96605052300005],[-84.90534420499995,68.97374095300006],[-84.94115149599989,68.98419830900015],[-84.94591223899988,69.00311920800007],[-84.95669511599988,69.00226471600017],[-84.96727454299992,69.0030378280001],[-84.97760982999995,69.00543854400006],[-84.98745683499995,69.00934479400003],[-84.95311438699991,69.01854075700011],[-84.83665930899986,69.00934479400003],[-84.84064693899983,69.01959870000015],[-84.84349524599989,69.02362702000012],[-84.80809485599988,69.0346133480001],[-84.7245173819999,69.009507554],[-84.66978919199988,69.013902085],[-84.61778723899991,69.00458405200014],[-84.59984290299988,68.99937571800014],[-84.58161373599997,68.99681224200005],[-84.56126868399988,69.00079987200012],[-84.54234778599997,69.01007721600017],[-84.52818762899993,69.02362702000012],[-84.55768795499992,69.02960846600014],[-84.65135657499985,69.02977122600011],[-84.66307532499994,69.03424713700014],[-84.67609615799992,69.04246653899999],[-84.68968665299988,69.04710521],[-84.71483313699986,69.03497955900009],[-84.72984778599988,69.03595612200016],[-84.7443741529999,69.04173411700005],[-84.75475012899992,69.05027903900007],[-84.75536048099987,69.05780670800011],[-84.75084387899992,69.06578196800008],[-84.74828040299991,69.07469310100011],[-84.75475012899992,69.08502838700012],[-84.76720130099994,69.08795807500005],[-84.88931230399986,69.07855866100012],[-84.92174231699997,69.08063385600003],[-84.95274817599989,69.09186432500003],[-84.94798743399988,69.107611395],[-84.9742325509999,69.11473216400005],[-85.02847245999986,69.11920807500012],[-84.98106848899994,69.13328685100005],[-84.96637936099992,69.139634507],[-85.01036536399997,69.14569733300009],[-85.09504146999987,69.11998118700005],[-85.13829505099994,69.126654364],[-85.11384029899992,69.15509674700012],[-85.07119706899988,69.16229889500012],[-85.02440344999991,69.16364166900003],[-84.98745683499995,69.17442454600003],[-85.01227779899992,69.18048737200003],[-85.16808020699995,69.17308177300005],[-85.1929418609999,69.16693756700006],[-85.18187415299987,69.15367259300005],[-85.18594316299993,69.14288971600003],[-85.2002660799999,69.13556549700003],[-85.21996008999986,69.13279857000008],[-85.27025305899991,69.13788483299999],[-85.29417883999989,69.14439524900008],[-85.31647701699993,69.15391673400008],[-85.29039466099994,69.16608307500015],[-85.22484290299991,69.17405833500011],[-85.20661373599995,69.18805573100018],[-85.2525935539999,69.19733307500003],[-85.3468318349999,69.20091380400002],[-85.39159094999992,69.21539948100015],[-85.37791907499991,69.22215403899999],[-85.43252519399996,69.263128973],[-85.44261633999992,69.26715729400017],[-85.46385657499991,69.27204010600003],[-85.47350012899997,69.27680084800012],[-85.47793535099996,69.28160228100005],[-85.48497473899991,69.29389069200009],[-85.49120032499988,69.30101146000014],[-85.50080318899987,69.31834544500013],[-85.48818925699987,69.32636139500006],[-85.46593176999993,69.32689036700005],[-85.42198645699987,69.31317780200011],[-85.39122473899991,69.30853913],[-85.36066646999988,69.30963776200004],[-85.33698482999998,69.31842682500012],[-85.35582434799991,69.32123444200006],[-85.4120173819999,69.33893463700015],[-85.44416256399987,69.34284088700015],[-85.45628821499986,69.34760163000006],[-85.4672745429999,69.35936107000013],[-85.45494544199995,69.36481354400017],[-85.44884192599989,69.36644114799999],[-85.44001217399992,69.36619700700005],[-85.45750891799989,69.37803782800002],[-85.47850501199991,69.38304271000005],[-85.49730383999989,69.39000071800014],[-85.50829016799992,69.40778229400003],[-85.48306230399987,69.41486237200009],[-85.4120173819999,69.41400788],[-85.38524329299992,69.4186872420001],[-85.38125566299993,69.42670319200015],[-85.39268958199997,69.4367536480001],[-85.4120173819999,69.4481061870001],[-85.34439042899996,69.44135163000006],[-85.35753333199992,69.452866929],[-85.37734941299993,69.46141185100011],[-85.39940344999992,69.466742255],[-85.41917883999984,69.46861399900014],[-85.43639075399997,69.46478913000014],[-85.46434485599991,69.44676341400009],[-85.48033606699991,69.44135163000006],[-85.51032467399995,69.4463565120001],[-85.53404700399997,69.46332428600009],[-85.5394587879999,69.48460521000005],[-85.5144750639999,69.50275299700014],[-85.53156490799995,69.52598704600017],[-85.50560462099995,69.53949616100013],[-85.47557532499991,69.54991282800013],[-85.48033606699991,69.56419505400014],[-85.46100826699987,69.57050202000006],[-85.38536536399988,69.56419505400014],[-85.49547278599991,69.61762116100006],[-85.54409745999993,69.65350983300006],[-85.5144750639999,69.68150462400007],[-85.47109941299993,69.681870835],[-85.44933020699997,69.68939850500006],[-85.44001217399992,69.71190013200004],[-85.4496150379999,69.74119700700008],[-85.47191321499994,69.74848053600007],[-85.49689693899987,69.75202057500015],[-85.5144750639999,69.77024974200005],[-85.42902584499987,69.78851959800004],[-85.3978572259999,69.78534577000015],[-85.4120173819999,69.75596751500014],[-85.39167232999992,69.75604889500012],[-85.36986243399986,69.76056549700007],[-85.34951738199987,69.76898834800012],[-85.33356686099995,69.78050364800008],[-85.33315995999996,69.79136790600016],[-85.34268144399992,69.80621979400001],[-85.35700436099992,69.819281317],[-85.37075761599996,69.824896552],[-85.59019934799997,69.83234284100017],[-85.5775447259999,69.85020579600014],[-85.56322180899991,69.85809967700011],[-85.3570857409999,69.85285065300003],[-85.32017981699997,69.84699127800009],[-85.17479407499991,69.79425690300009],[-85.09561113199993,69.77940501500002],[-85.05577551999993,69.77708567900005],[-85.05581620999993,69.79686107],[-85.02928626199989,69.80646393400015],[-84.90733801999991,69.81346263200005],[-84.8792618479999,69.81879303600003],[-84.85716712099992,69.83234284100017],[-84.86510169199988,69.83917877800008],[-84.89810136599992,69.85285065300003],[-84.8628637359999,69.86163971600007],[-84.77432206899987,69.83856842700014],[-84.73395748599992,69.84198639500015],[-84.69465084499993,69.85374583500011],[-84.33983313699994,69.85968659100014],[-84.33104407499988,69.85740794499999],[-84.31895911399997,69.84760163000014],[-84.30606035099996,69.843369859],[-84.29572506399984,69.834336656],[-84.28856360599991,69.83234284100017],[-84.24767005099997,69.83856842700014],[-84.16950436099995,69.82465241100006],[-84.03148352799991,69.76361725500007],[-83.81285559799989,69.73338450700008],[-83.7540583979999,69.71173737200009],[-83.73119055899988,69.70897044500013],[-83.68561764199984,69.70880768400013],[-83.49518795499992,69.68720123900006],[-83.44888261599993,69.69464752800003],[-83.35659745999988,69.68150462400007],[-83.32998613199992,69.685736395],[-83.28087317599991,69.70465729400003],[-83.25328528599988,69.70880768400013],[-83.02057857999995,69.68150462400007],[-82.90416419199988,69.69452545800006],[-82.68830318899984,69.68207428600005],[-82.66421464799993,69.68773021000014],[-82.67414303299992,69.68785228100002],[-82.68317623599992,69.69037506700012],[-82.69131425699993,69.69513580900004],[-82.6983943349999,69.70197174700014],[-82.63027910099986,69.702582098],[-82.59605872299989,69.698675848],[-82.56802324099988,69.68773021000014],[-82.57135982999989,69.68382396000005],[-82.57551021999983,69.67405833500003],[-82.41722571499989,69.64671458500013],[-82.25340735599988,69.64057038000006],[-82.40615800699992,69.61810944200006],[-82.43089758999992,69.62287018400015],[-82.45616614499997,69.63939036700013],[-82.61644446499989,69.64671458500013],[-82.61099199099993,69.64057038000006],[-82.60586503799989,69.63658274900008],[-82.59927324099993,69.63426341400009],[-82.58918209499987,69.63312409100008],[-82.60789954299993,69.62787506699999],[-82.64590410099996,69.62925853100008],[-82.65746008999989,69.61945221600014],[-82.55435136599992,69.59955475500006],[-82.58372962099993,69.58958567900005],[-82.75365149599992,69.57786692900008],[-82.61799068899992,69.57001373900007],[-82.5960180329999,69.56110260600006],[-82.57970130099997,69.54991282800013],[-82.4793188139999,69.50275299700014],[-82.51610266799989,69.49371979400006],[-82.8846939769999,69.525885321],[-83.25328528599988,69.55805084800015],[-83.27285722599996,69.5539411480001],[-83.2899063789999,69.54673899900015],[-83.29381262899992,69.53990306200014],[-83.27407792899987,69.53685130400005],[-83.19212805899994,69.53685130400005],[-82.73684648349996,69.47813548399996],[-82.28156490799995,69.41941966400005],[-82.24567623599998,69.40851471600014],[-82.22545325399994,69.39354075700011],[-82.26781165299984,69.38560618700016],[-82.3899633449999,69.40778229400003],[-82.3899633449999,69.40033600500006],[-82.35855058499996,69.39264557500003],[-82.30524654899989,69.35993073100009],[-82.24217688699987,69.34703196800008],[-82.20262610599993,69.33331940300015],[-82.16588294199994,69.31553782800007],[-82.14346269399994,69.29791901200015],[-82.16991126199991,69.2921003280001],[-82.22545325399994,69.2980817730001],[-82.25340735599988,69.29047272300006],[-82.23009192599987,69.27606842700011],[-82.23989824099989,69.26654694200002],[-82.29430091099991,69.256333726],[-82.26960201699984,69.23822663000006],[-82.2372940749999,69.23521556200016],[-82.02684485599991,69.24949778900007],[-82.03441321499986,69.25377024900017],[-82.03929602799992,69.25853099200008],[-82.0472712879999,69.2700056010001],[-81.99156653599988,69.27802155200006],[-81.75304114499988,69.26788971600011],[-81.63971920499992,69.24823639500015],[-81.49592037699989,69.203558661],[-81.46544348899994,69.20111725500004],[-81.41942298099987,69.20831940300009],[-81.40367591099994,69.20856354400003],[-81.35863196499986,69.19672272300006],[-81.34471594999988,69.19489166900007],[-81.3372289699999,69.18756745000009],[-81.3216853509999,69.139634507],[-81.30068925699987,69.11766185100008],[-81.2857966789999,69.10557689000017],[-81.27330481699991,69.09870026200015],[-81.27330481699991,69.09186432500003],[-81.36286373599998,69.10130442900005],[-81.38939368399994,69.09528229400014],[-81.41258704299989,69.08466217700003],[-81.48216712099986,69.06456126500014],[-81.48753821499992,69.058335679],[-81.55272376199994,69.00315989800008],[-81.58023027299987,68.99298737200003],[-81.60924231699997,68.98859284100006],[-81.63646399599986,68.98883698100018],[-81.66722571499994,68.99485911699999],[-81.68382727799991,68.99445221600008],[-81.69102942599994,68.98541901200015],[-81.6920466789999,68.97711823100009],[-81.6949763659999,68.96857330900015],[-81.69953365799995,68.96080149900017],[-81.70531165299992,68.95469798400008],[-81.72907467399992,68.94505442900011],[-81.88548743399994,68.92963288],[-82.00865637899992,68.89984772300006],[-82.06159420499998,68.8789737000001],[-81.87555904899992,68.90167877800015],[-81.83556067599989,68.91144440300009],[-81.81456458199995,68.91376373900006],[-81.8065486319999,68.91144440300009],[-81.7948298819999,68.90167877800015],[-81.78693600199995,68.89948151200015],[-81.77407792899989,68.90045807500003],[-81.73884029899996,68.90692780200014],[-81.70250403599988,68.90753815300008],[-81.67170162699992,68.90257396000005],[-81.64370683499988,68.89280833500003],[-81.61587480399993,68.8789737000001],[-81.60708574099996,68.87616608300006],[-81.59813391799992,68.87523021000008],[-81.58934485599988,68.8728701840001],[-81.58116614499994,68.86591217700011],[-81.58055579299989,68.86054108300009],[-81.5826309889999,68.85325755400005],[-81.58576412699989,68.84715403899997],[-81.58800208199997,68.84544505400007],[-81.57681230399987,68.83690013200005],[-81.56175696499986,68.83165110900016],[-81.54539954299995,68.83246491100006],[-81.53026282499994,68.84202708500005],[-81.51585852799988,68.85606517100011],[-81.50373287699998,68.86310455900018],[-81.4903051419999,68.86558665600002],[-81.45287024599995,68.8682315120001],[-81.4366755849999,68.87262604400016],[-81.41917883999994,68.87543366100012],[-81.39614824099988,68.87274811400013],[-81.3787735669999,68.86762116100012],[-81.36522376199994,68.86168040600002],[-81.29458574099988,68.81427643400018],[-81.2862849599999,68.81439850500006],[-81.28343665299984,68.803412177],[-81.27578691299993,68.79682038000011],[-81.25251217399992,68.78709544500008],[-81.23302161399994,68.7739118510001],[-81.23643958199995,68.76618073100012],[-81.24950110599991,68.76117584800005],[-81.25894120999993,68.75604889500006],[-81.26329505099991,68.73847077000012],[-81.26549231699991,68.71088288000003],[-81.26357988199996,68.68528880400014],[-81.25593014199993,68.67413971600011],[-81.25059973899997,68.668646552],[-81.25503495999993,68.65643952],[-81.26650956899988,68.63873932500009],[-81.28209387899997,68.63287995000015],[-81.34093176999994,68.62262604400003],[-81.35850989499988,68.60179271000005],[-81.39928137899994,68.59092845300007],[-81.44542395699997,68.58397044499998],[-81.47907467399988,68.57481517100008],[-81.62954667899996,68.51276276200015],[-81.64964758999992,68.508246161],[-81.67406165299985,68.50849030200006],[-81.7655330069999,68.52619049700014],[-81.81456458199995,68.53009674700014],[-81.79841061099998,68.51239655200014],[-81.79645748599992,68.50372955900006],[-81.80431067599991,68.49192942899998],[-81.8255916009999,68.47101471600001],[-81.83629309799991,68.46605052300008],[-81.85553951699987,68.46124909100008],[-81.91869055899984,68.45331452000003],[-81.95372473899994,68.43065013200005],[-81.97374426999991,68.42853424700014],[-82.01659094999987,68.43390534100011],[-82.03233801999994,68.44574616100006],[-82.06305904899995,68.49787018400008],[-82.08853105399992,68.50962962400007],[-82.13605709499984,68.513902085],[-82.22667395699997,68.53270091400005],[-82.27383378799996,68.53697337400014],[-82.27383378799996,68.53009674700014],[-82.24803626199991,68.51500071800014],[-82.21922766799989,68.50287506700015],[-82.18492591099994,68.4960798200001],[-82.17686926999991,68.48810455900015],[-82.18789628799993,68.47178782800013],[-82.22175045499992,68.45811595300002],[-82.26610266799993,68.45811595300002],[-82.42979895699995,68.47589752800009],[-82.47004146999987,68.48480866100012],[-82.5729874339999,68.52716705900004],[-82.61164303299998,68.53021881700012],[-82.63695227799991,68.50962962400007],[-82.63556881399984,68.49713776200015],[-82.62157141799989,68.4943708350001],[-82.58918209499987,68.49542877800015],[-82.57428951699993,68.48810455900015],[-82.5619197259999,68.47919342700011],[-82.54784094999985,68.47178782800013],[-82.49693762899992,68.46393463700015],[-82.51610266799989,68.45368073100003],[-82.55821692599994,68.44391510600009],[-82.5960180329999,68.44078196800002],[-82.62979081899988,68.4486758480001],[-82.64370683499995,68.44733307500009],[-82.65062415299985,68.43390534100011],[-82.64671790299988,68.41974518400018],[-82.63463294199997,68.41124095300013],[-82.61851966099988,68.407090562],[-82.60252844999988,68.40599192900008],[-82.52025305899993,68.41343821800014],[-82.50389563699991,68.4101423200001],[-82.4905492829999,68.40228913000011],[-82.47834225199992,68.39301178600006],[-82.46564693899987,68.38556549700009],[-82.36969967399997,68.35626862200017],[-82.34894771999987,68.33771393400015],[-82.37657630099989,68.31940338700008],[-82.46743730399996,68.32453034100003],[-82.50658118399987,68.31785716400007],[-82.47663326699993,68.29938385600003],[-82.44176184799989,68.28400299700009],[-82.4051000639999,68.27338288000006],[-82.36974036399997,68.26947663000006],[-82.30235755099994,68.29075755400014],[-82.27269446499992,68.29157135600006],[-82.26016191299993,68.26264069200015],[-82.26732337099986,68.24213288],[-82.28477942599991,68.22345612200012],[-82.34479732999992,68.17552317900002],[-82.34398352799991,68.16929759300014],[-82.33189856699991,68.15611399900008],[-82.31484941299996,68.14659251500011],[-82.20653235599994,68.12470123900006],[-82.17479407499988,68.12498607000002],[-82.14427649599995,68.13316478100002],[-82.10875403599995,68.14935944200006],[-82.10362708199995,68.15318431200008],[-82.1017146479999,68.15778229400011],[-82.10191809799994,68.17015208500005],[-82.0990291009999,68.17572663000006],[-82.09227454299989,68.17881907800013],[-82.08446204299989,68.18097565300003],[-82.07835852799991,68.18378327],[-82.05736243399986,68.20722077000006],[-82.04442298099985,68.21735260600003],[-82.02684485599991,68.22166575700011],[-81.99364173099991,68.21503327000006],[-81.98997962099995,68.19822825700004],[-82.01838131399987,68.13047923400002],[-82.04694576699987,68.12067291900009],[-82.10936438699991,68.11180247600005],[-82.12303626199986,68.11180247600005],[-82.09146074099996,68.09332916900003],[-82.08165442599994,68.08246491100014],[-82.10985266799992,68.07391998900012],[-82.12437903599994,68.06476471600003],[-82.13719641799989,68.05333079600008],[-82.14346269399994,68.04291413],[-82.12922115799992,68.04291413],[-82.1422013009999,68.03278229400003],[-82.15086829299992,68.02057526200015],[-82.1609594389999,68.01117584800012],[-82.17764238199993,68.00938548400013],[-82.16852779899992,67.99559153900005],[-82.13548743399988,67.9741071640001],[-82.12303626199986,67.96100495000013],[-82.12922115799992,67.96100495000013],[-82.12702389199984,67.95624420800006],[-82.12555904899997,67.954779364],[-82.1258438789999,67.95319245000013],[-82.12922115799992,67.94794342700008],[-82.11241614499991,67.9230817730001],[-82.10155188699991,67.91038646000005],[-82.08824622299991,67.89952220300007],[-82.06065833199987,67.88682689],[-82.00039628799993,67.87242259300014],[-81.97158769399991,67.86192454600008],[-81.96349036399988,67.85553620000015],[-81.9620662099999,67.84947337400014],[-81.96214758999989,67.84369538],[-81.95856686099992,67.838080145],[-81.94981848899994,67.83319733300011],[-81.88902747299991,67.81207916900011],[-81.82811438699991,67.8068301450001],[-81.81163489499991,67.79730866100012],[-81.82213294199988,67.79645416900001],[-81.83214270699996,67.79393138200011],[-81.84186764199991,67.78965892100011],[-81.81847083199995,67.77277252800012],[-81.78538977799991,67.75739166900017],[-81.75059973899994,67.74620189000014],[-81.72240149599989,67.74188873900006],[-81.70018469999991,67.73533763200008],[-81.64264889199983,67.68720123900003],[-81.58495032499988,67.66327545800006],[-81.45718339799996,67.6284040390001],[-81.40367591099994,67.59788646],[-81.38361568899985,67.576605536],[-81.34422766799989,67.54669830900004],[-81.33145097599996,67.53998444200009],[-81.31090247299991,67.51935455900013],[-81.30109615799998,67.51178620000012],[-81.26646887899989,67.49481842700014],[-81.23794511599988,67.46051666900017],[-81.25523841099988,67.430121161],[-81.29002844999994,67.40123118700008],[-81.31427975199992,67.37193431200008],[-81.30748450399987,67.37193431200008],[-81.31993567599991,67.34129466400007],[-81.35171464799996,67.28375885600018],[-81.36266028599994,67.25523509300008],[-81.37075761599993,67.20189036700013],[-81.3757218089999,67.1869570980001],[-81.41730709499987,67.13231028900013],[-81.41173255099996,67.12372467700011],[-81.41075598899991,67.11823151200018],[-81.41730709499987,67.10443756700009],[-81.40982011599989,67.09760163000006],[-81.41844641799992,67.09446849199998],[-81.42292232999998,67.08946360900013],[-81.42589270699989,67.08356354400011],[-81.43028723899988,67.07770416900014],[-81.43907630099993,67.07013580900012],[-81.4466039699999,67.065863348],[-81.45628821499986,67.06391022300006],[-81.47191321499994,67.06342194200006],[-81.49095618399994,67.06053294500005],[-81.4962458979999,67.05194733300011],[-81.49242102799991,67.01874420800003],[-81.50291907499987,67.0010440120001],[-81.52741451699988,66.99603913000006],[-81.63267981699993,67.0088565120001],[-81.64053300699993,67.00523509300005],[-81.65684973899994,66.98777903899999],[-81.6643774079999,66.98151276200004],[-81.71617591099991,66.97284577000012],[-81.82115637899992,66.99921295800011],[-81.87596594999992,66.99144114800013],[-81.90054277299996,66.98448314000014],[-81.95490475199993,66.97679271000011],[-81.97838294199994,66.96784088700008],[-81.98546301999988,66.96063873900006],[-81.9949438139999,66.94334544500005],[-81.99950110599985,66.93992747600005],[-82.01121985599994,66.93829987200003],[-82.02358964799987,66.93378327000006],[-82.03433183499986,66.92723216399999],[-82.04108639199993,66.91941966400002],[-82.03368079299995,66.91705963700004],[-82.01317298099988,66.90574778900007],[-82.09166419199991,66.85797760600012],[-82.09357662699998,66.85516998900006],[-82.08462480399993,66.84056224200005],[-82.08210201699984,66.83409251500014],[-82.08844967399995,66.82896556200002],[-82.12987219999988,66.81334056200014],[-82.16063391799985,66.79389069200015],[-82.17617753799996,66.78086985900016],[-82.18443762899993,66.7686221370001],[-82.1824438139999,66.74860260600003],[-82.17039954299989,66.7360293640001],[-82.1583552729999,66.72614166900003],[-82.1565649079999,66.71397532800013],[-82.37315833199997,66.72764720300007],[-82.38003495999988,66.72516510600015],[-82.38044186099998,66.71906159100014],[-82.37629146999984,66.703802802],[-82.38166256399988,66.696478583],[-82.4641820949999,66.68024323100006],[-82.4822891919999,66.67072174700014],[-82.4793188139999,66.65192291900009],[-82.5367732409999,66.63568756700006],[-82.55435136599992,66.62523021000008],[-82.56265214799993,66.61705149900017],[-82.58169511599989,66.59113190300015],[-82.59089107999998,66.57086823100015],[-82.63345292899993,66.56329987200012],[-82.85155188699984,66.57050202000015],[-82.9093318349999,66.55487702000006],[-82.99864661399991,66.555161851],[-83.00999915299987,66.55052317900008],[-83.01390540299988,66.54108307500013],[-83.01431230399989,66.525336005],[-83.02741451699987,66.49518463700015],[-83.05882727799988,66.47911204600008],[-83.13044186099992,66.46015045800009],[-83.12360592399989,66.46015045800009],[-83.13780676999991,66.45042552300013],[-83.26260331899994,66.3960635440001],[-83.29954993399988,66.38654205900012],[-83.31533769399994,66.38507721600013],[-83.3275447259999,66.38068268400015],[-83.36937415299991,66.35028717700003],[-83.38634192599989,66.35602448100018],[-83.44676673099991,66.35480377800015],[-83.49962317599989,66.36444733300011],[-83.56053626199989,66.34935130400011],[-83.58910071499989,66.35712311400012],[-83.58307857999995,66.359849351],[-83.56859290299991,66.37140534100003],[-83.63955644399991,66.40412018400006],[-83.65802975199992,66.41917552300008],[-83.65103105399993,66.41868724199998],[-83.63703365799998,66.41954173400008],[-83.6300349599999,66.41917552300008],[-83.6387426419999,66.43553294499999],[-83.6295466789999,66.4413923200001],[-83.61213131399984,66.43956126500014],[-83.59593665299988,66.43280670800002],[-83.59536699099993,66.41571686400006],[-83.57713782499985,66.39878978100008],[-83.55296790299992,66.3869082700001],[-83.5344945949999,66.38507721600013],[-83.52867591099995,66.39691803600012],[-83.54190019399991,66.41282786700013],[-83.56257076699993,66.4268252620001],[-83.59268144399994,66.43829987200003],[-83.64435787699988,66.47443268400018],[-83.65396074099996,66.48688385600008],[-83.66917883999994,66.5166690120001],[-83.67813066299986,66.525336005],[-83.73216712099986,66.53697337400011],[-83.84776770699992,66.54559967700003],[-83.89073645699997,66.57001373900006],[-83.90420488199996,66.59410228100008],[-83.91466223899994,66.59674713700015],[-83.93883216099994,66.58771393400015],[-83.96353105399993,66.58360423400002],[-83.98078365799992,66.59235260600009],[-83.98550370999993,66.60639069200012],[-83.97264563699991,66.61839427300005],[-84.01357988199992,66.63206614799999],[-84.00340735599987,66.64573802300013],[-84.0049942699999,66.65570709800012],[-84.01085364499997,66.66583893400018],[-84.01357988199992,66.67987702000012],[-84.00450598899994,66.69700755400008],[-83.9839574859999,66.70823802300008],[-83.95775305899986,66.71214427300008],[-83.93175208199997,66.70722077],[-83.91462154899995,66.69468821800011],[-83.9143774079999,66.68158600500014],[-83.91763261599993,66.667425848],[-83.9112442699999,66.65192291900009],[-83.89586341099988,66.64732493700016],[-83.87979081899991,66.6574567730001],[-83.86583411399994,66.67344798400002],[-83.85659745999986,66.68671295800006],[-83.88117428299998,66.7081159530001],[-83.89073645699997,66.71397532800013],[-83.90778561099992,66.71812571800008],[-83.92609615799998,66.71959056200014],[-83.94220943899987,66.72349681200014],[-83.9527888659999,66.73509349200005],[-83.94884192599991,66.74144114799999],[-83.95116126199989,66.74335358300014],[-83.95897376199989,66.74811432500003],[-83.94367428299991,66.77094147300006],[-83.90001380099991,66.79087962400014],[-83.88451087099992,66.81708405200008],[-83.88337154899997,66.83873118700016],[-83.89037024599986,66.85724518400018],[-83.90282141799989,66.872788804],[-83.91808020699995,66.88593170800014],[-83.92536373599994,66.87262604400001],[-83.93488521999987,66.84027741100003],[-83.94253495999988,66.82697174700007],[-83.96519934799994,66.81126536700013],[-84.01939856699988,66.79942454600017],[-84.04841061099998,66.78974030200001],[-84.02904212099986,66.78392161700005],[-84.04816646999984,66.77130768400015],[-84.10362708199989,66.74811432500003],[-84.09776770699995,66.71930573100009],[-84.13792883999986,66.71222565300006],[-84.26939856699994,66.72785065300003],[-84.30260169199993,66.74131907800002],[-84.30825761599993,66.76007721600017],[-84.26813717399992,66.78229401200004],[-84.30353756399984,66.80101146],[-84.41193600199995,66.80731842700014],[-84.43944251199989,66.83067454600003],[-84.3893123039999,66.835150458],[-84.2401423819999,66.83067454600003],[-84.2401423819999,66.83751048400013],[-84.37262936099995,66.86737702000012],[-84.41148841099992,66.88593170800014],[-84.41576087099986,66.90778229400009],[-84.4107966789999,66.91632721600011],[-84.3910212879999,66.91941966400002],[-84.40831458199989,66.9350039730001],[-84.43732662699998,66.94074127800015],[-84.49376380099991,66.93992747600005],[-84.51252193899987,66.94501373900006],[-84.56627356699994,66.97064850500014],[-84.5828344389999,66.98151276200004],[-84.5318090489999,66.97907135600009],[-84.41991126199991,66.96161530200011],[-84.37051347599993,66.97406647300015],[-84.80939693899987,67.02928294500006],[-84.84142005099994,67.03681061400012],[-84.91006425699987,67.06187571800002],[-84.93907630099994,67.05597565300009],[-84.9212133449999,67.05109284100001],[-84.90493730399996,67.0429548200001],[-84.9207250639999,67.03758372600005],[-84.92926998599992,67.03607819199999],[-84.93907630099994,67.03681061400012],[-84.91771399599989,67.02802155200004],[-84.84349524599989,67.01500071800008],[-84.85041256399987,67.00568268400002],[-84.85985266799989,67.00023021],[-84.88451087099989,66.994574286],[-84.85399329299995,66.98798248900012],[-84.82530676999988,66.993353583],[-84.79702714799993,67.00287506700009],[-84.7677302729999,67.0088565120001],[-84.73595130099997,67.00787995000003],[-84.7003474599999,67.00263092700014],[-84.66588294199987,66.9936384140001],[-84.63744055899986,66.98151276200004],[-85.00462805899987,66.96808502800003],[-85.2127986319999,66.91941966400002],[-85.19762122299991,66.91303131700006],[-85.16234290299988,66.910834052],[-85.14513098899997,66.90574778900007],[-85.16519120999993,66.8964297550001],[-85.18447831899996,66.88458893400015],[-85.20457923099991,66.87848541900017],[-85.22712154899989,66.88593170800014],[-85.21524003799993,66.86766185100008],[-85.18659420499998,66.85224030200014],[-85.15339107999995,66.8415388040001],[-85.12779700399989,66.83751048400013],[-85.09911048099991,66.84385814000008],[-85.08263098899994,66.84943268400009],[-85.0728653639999,66.8546003280001],[-85.06114661399991,66.85797760600012],[-84.97842363199995,66.859849351],[-84.95775305899993,66.8644880230001],[-84.94066321499989,66.87360260600009],[-84.92198645699992,66.88902415600005],[-84.9107559889999,66.90143463700015],[-84.91038977799991,66.908636786],[-84.92023678299992,66.91185130400005],[-84.98452714799993,66.91539134300002],[-85.00055904899992,66.91941966400002],[-84.97451738199996,66.92914459800015],[-84.91999264199987,66.91600169499998],[-84.89126542899993,66.91941966400002],[-84.8849177729999,66.92649974200005],[-84.88377844999984,66.93537018400009],[-84.88133704299992,66.94293854400014],[-84.87116451699987,66.94611237200003],[-84.76744544199987,66.95555247600014],[-84.75475012899992,66.953558661],[-84.74522864499991,66.94867584800012],[-84.7283422519999,66.93573639500012],[-84.71996008999986,66.93309153900013],[-84.60334225199995,66.93992747600005],[-84.61506100199993,66.92230866100012],[-84.60928300699987,66.91034577],[-84.59121660099996,66.90481191600016],[-84.74730383999994,66.89960358300009],[-84.69505774599992,66.89549388200014],[-84.61656653599991,66.87742747600011],[-84.54360917899987,66.85138580900002],[-84.50837154899992,66.82322825700005],[-84.55329342399995,66.82819245000012],[-84.65208899599989,66.85333893400009],[-84.69269771999987,66.84495677300013],[-84.65013587099992,66.82408274900014],[-84.54857337099992,66.81806061400006],[-84.50088456899996,66.80955638200011],[-84.44123287699998,66.78624095300002],[-84.41832434799997,66.78229401200004],[-84.34337317599991,66.7831891950001],[-84.32213294199994,66.77606842700008],[-84.34813391799992,66.75910065300009],[-84.42194576699984,66.7288272160001],[-84.45246334499987,66.72081126500014],[-84.43321692599991,66.71405670800011],[-84.37051347599993,66.70722077],[-84.35236568899984,66.70091380400005],[-84.32982337099986,66.68463776200004],[-84.31529700399992,66.67987702000012],[-84.30736243399986,66.68170807500012],[-84.27497311099995,66.69696686400009],[-84.26301021999991,66.70014069200015],[-84.25255286399994,66.69871653899999],[-84.24299068899987,66.69554271000001],[-84.23338782499988,66.69354889500006],[-84.16600501199986,66.69208405200003],[-84.14460201699993,66.68671295800006],[-84.14834550699995,66.67719147300014],[-84.14683997299991,66.67112864800005],[-84.14427649599988,66.66583893400018],[-84.14460201699993,66.65875885600012],[-84.15062415299991,66.649359442],[-84.16828365799992,66.62995026200018],[-84.17735755099994,66.61163971600003],[-84.1900935539999,66.60809967700014],[-84.20490475199993,66.60618724199999],[-84.21629798099991,66.60138580900009],[-84.21100826699987,66.59454987200017],[-84.07567298099988,66.52240631700006],[-84.0375056629999,66.51105377800009],[-84.00987708199989,66.49180735900013],[-83.99746660099987,66.48749420800006],[-83.98070227799985,66.4847272810001],[-83.96324622299989,66.47789134300008],[-83.93175208199997,66.46015045800009],[-83.89403235599991,66.43219635600013],[-83.87730872299997,66.4138044290001],[-83.87022864499991,66.39557526200004],[-83.87169348899988,66.35138580900015],[-83.86974036399994,66.32990143400002],[-83.86278235599994,66.31675853100016],[-83.83421790299985,66.30821360900013],[-83.80557206899988,66.3082949890001],[-83.78355872299997,66.30137767100003],[-83.77464758999994,66.27179596600016],[-83.76154537699995,66.25470612200003],[-83.70164954299992,66.227972723],[-83.68529212099992,66.21373118700002],[-83.69078528599994,66.19920482000006],[-83.71153723899992,66.19090403899999],[-83.76105709499987,66.17963288],[-83.80663001199994,66.16319407800002],[-83.8313695949999,66.15839264500003],[-83.85659745999986,66.15851471600008],[-83.84727942599991,66.17243073100015],[-83.83462480399996,66.17963288],[-83.82017981699991,66.18561432500012],[-83.8050837879999,66.19635651200004],[-83.80089270699995,66.198228257],[-83.79133053299998,66.20433177299999],[-83.78522701699988,66.21076080900009],[-83.79141191299995,66.21373118700002],[-83.82896887899994,66.21373118700002],[-83.92223059799987,66.20331452000012],[-83.97118079299986,66.20408763200014],[-83.98009192599989,66.221177476],[-84.00267493399986,66.234076239],[-84.08934485599991,66.24848053600006],[-84.11705481699988,66.25755442900008],[-84.13072669199993,66.26410553600006],[-84.14118404899992,66.27179596600016],[-84.14655514199985,66.28058502800003],[-84.1502579419999,66.2992617860001],[-84.1545304029999,66.30621979400011],[-84.17756100199989,66.31915924700012],[-84.20384680899991,66.32420482000005],[-84.23037675699987,66.32200755400005],[-84.25413977799988,66.31305573100003],[-84.3028051419999,66.30308665600005],[-84.32290605399996,66.29405345300002],[-84.30907141799986,66.28257884300008],[-84.32632402299987,66.27692291900009],[-84.34874426999997,66.277777411],[-84.37083899599986,66.28363678600012],[-84.38731848899992,66.29258860900015],[-84.39781653599991,66.30430735900013],[-84.40086829299992,66.31427643400004],[-84.40151933499996,66.32444896],[-84.40534420499998,66.33722565300003],[-84.42373613199993,66.36139557500002],[-84.44933020699989,66.37592194200006],[-84.4802953769999,66.38304271000011],[-84.51451575399992,66.38507721600013],[-84.50088456899996,66.39927806200016],[-84.53746497299991,66.405218817],[-84.56566321499989,66.38682689000014],[-84.59219316299993,66.36249420800009],[-84.63670813699994,66.34385814000008],[-84.62547766799992,66.32977936400005],[-84.60334225199995,66.31574127800008],[-84.58315995999993,66.30931224199999],[-84.56725012899992,66.30768463700015],[-84.5538630849999,66.30292389500006],[-84.54230709499987,66.29559967700006],[-84.50767981699988,66.267767645],[-84.42516028599988,66.22736237200014],[-84.4017634759999,66.21039459800008],[-84.38174394399994,66.19004954600008],[-84.37832597599993,66.17304108300011],[-84.40465247299994,66.16596100500006],[-84.48009192599997,66.16596100500006],[-84.49233964799993,66.16941966400007],[-84.53502356699997,66.19330475500014],[-84.60741126199991,66.21458567900011],[-84.75206458199995,66.22142161700013],[-84.78302975199998,66.22699616100014],[-84.81623287699988,66.24103424700009],[-84.8541560539999,66.26353587400008],[-84.87083899599995,66.26837799700014],[-84.89118404899995,66.26866282800009],[-84.92540442599991,66.25763580900006],[-84.94249426999995,66.25470612200003],[-84.98371334499993,66.25433991100003],[-85.00137285099993,66.25910065300012],[-85.01793372299991,66.27179596600016],[-85.03774980399993,66.27985260600009],[-85.0637100899999,66.28192780200011],[-85.0831599599999,66.286810614],[-85.0836482409999,66.30308665600005],[-85.08820553299994,66.309271552],[-85.09675045499995,66.31846751500017],[-85.10732988199993,66.32684967700011],[-85.1178279289999,66.33038971600011],[-85.13609778599995,66.32640208500014],[-85.13654537699995,66.31724681200014],[-85.13084876199989,66.30589427299999],[-85.13084876199989,66.29564036700005],[-85.13963782499985,66.28925202000012],[-85.17931067599994,66.26837799700014],[-85.19709225199993,66.26508209800012],[-85.21963456899994,66.26557038000011],[-85.24156653599992,66.27008698100015],[-85.25747636599988,66.27887604400003],[-85.26781165299987,66.28693268400015],[-85.28486781399988,66.33355501100007],[-85.27968221999988,66.36070735400004],[-85.31297021899994,66.37242410800003],[-85.31594566399991,66.38795547000008],[-85.3005784599999,66.40647172800011],[-85.31559848199987,66.44438334900015],[-85.32233588099989,66.47953381600009],[-85.34647915299985,66.50113036900017],[-85.37795533299987,66.51578515100006],[-85.3892108309999,66.53517092200008],[-85.41607263899986,66.566980614],[-85.46547904499992,66.57442544000004],[-85.5296216129999,66.56674862600009],[-85.68227201899991,66.53060816500012],[-85.75156447499991,66.51765504300006],[-85.78286493699989,66.5000948910001],[-85.84032141799989,66.50482819200015],[-85.85252844999988,66.50202057500009],[-85.90583248599992,66.51536692900002],[-86.1388240229999,66.50108470300002],[-86.15493730399986,66.50438060100005],[-86.18952389199987,66.51890696800008],[-86.20714270699989,66.52220286700009],[-86.26475989499997,66.51874420800011],[-86.28286699099988,66.52220286700009],[-86.29824785099989,66.53107330900015],[-86.32652747299997,66.55280182500003],[-86.34373938699989,66.5563418640001],[-86.36131751199991,66.55011627800015],[-86.37205969999994,66.53778717700011],[-86.38093014199987,66.5244815120001],[-86.39273027299996,66.51536692900002],[-86.41661536399991,66.51500071800007],[-86.52562415299987,66.549505927],[-86.57225501199991,66.55577220300013],[-86.59752356699994,66.5563418640001],[-86.58226477799988,66.53965892100008],[-86.57713782499988,66.53587474200005],[-86.62047278599994,66.50694407800012],[-86.68057206899994,66.51597728100016],[-86.74034583199989,66.53156159100014],[-86.78254146999984,66.52220286700009],[-86.74730383999989,66.49603913000007],[-86.63170325399993,66.44025299700009],[-86.66673743399994,66.43097565300002],[-86.78937740799995,66.45392487200003],[-86.80785071499989,66.446275132],[-86.79100501199989,66.4289411480001],[-86.69347083199993,66.36583079600011],[-86.64879309799989,66.32701243700008],[-86.62059485599991,66.3143985050001],[-86.54320227799991,66.31297435100005],[-86.47036699099988,66.29539622600011],[-86.34373938699989,66.2894147810001],[-86.32628333199992,66.28599681200008],[-86.27546139199988,66.26837799700014],[-85.95616614499988,66.19965241100006],[-85.89202065299986,66.1934107310001],[-85.85666193299991,66.16282974700005],[-85.89956212699991,66.14766401200016],[-85.9302976039999,66.12430284200009],[-85.97482921999998,66.09827969500004],[-85.97435462099986,66.07591380400002],[-85.98420162699989,66.06529368700016],[-85.98631751199991,66.05479564000008],[-85.9824926419999,66.044867255],[-85.97435462099986,66.03558991100012],[-86.06334387899997,65.99909088700018],[-86.09414628799992,65.99400462400014],[-86.16173255099991,65.99103424700014],[-86.19424394399987,65.98407623900006],[-86.20147635099994,65.96263205300006],[-86.19896807499985,65.9498723600001],[-86.20494904099985,65.93974746300002],[-86.2267159539999,65.9330383210001],[-86.25992189599987,65.92902809400012],[-86.29259192599991,65.92999909100017],[-86.30955969999991,65.92572663000006],[-86.31598873599988,65.92198314000002],[-86.31867428299998,65.918646552],[-86.32188880099994,65.91535065300015],[-86.33006751199986,65.9120954450001],[-86.34650631399983,65.90778229400011],[-86.3648168609999,65.905218817],[-86.39712480399993,65.90582916900014],[-86.41246497299987,65.90448639500006],[-86.42625891799989,65.89838288],[-86.42129472599993,65.88263580900004],[-86.43932044199997,65.86908600500006],[-86.46288001199991,65.85557689000007],[-86.4746801419999,65.84003327],[-86.47272701699984,65.83771393400004],[-86.46882076699984,65.83628978100016],[-86.4659724599999,65.83429596600003],[-86.4671931629999,65.83014557500017],[-86.4727677069999,65.82648346600003],[-86.49071204299989,65.8183047550001],[-86.49453691299988,65.8158633480001],[-86.48916581899992,65.804144598],[-86.47695878799995,65.79661692900012],[-86.46336829299989,65.79035065300009],[-86.45360266799986,65.78233470300013],[-86.46385657499988,65.77720774900003],[-86.46422278599991,65.77277252800013],[-86.46100826699984,65.76780833500003],[-86.46035722599989,65.76121653900013],[-86.46149654899992,65.754828192],[-86.46153723899991,65.74961985900002],[-86.46450761599993,65.74347565300003],[-86.4746801419999,65.73395416900006],[-86.52232825399994,65.70526764500008],[-86.53612219999988,65.69297923400002],[-86.53864498599998,65.68846263200008],[-86.54108639199993,65.6826846370001],[-86.54442298099994,65.67694733300011],[-86.54979407499991,65.67247142100017],[-86.5591527989999,65.66986725500009],[-86.59072831899994,65.67247142100017],[-86.61514238199987,65.67015208500003],[-86.66388912699988,65.657660223],[-86.68691972599987,65.64826080900015],[-86.70246334499987,65.63873932500017],[-86.72655188699989,65.61688873900012],[-86.74217688699987,65.60728587400014],[-86.7930395169999,65.58409251500002],[-86.80675208199992,65.57318756700015],[-86.82591712099989,65.56163157800002],[-86.84972083199989,65.55638255400012],[-86.89549719999991,65.55516185100011],[-86.97057044199991,65.5418154970001],[-86.9879451159999,65.53534577],[-86.98444576699988,65.5322940120001],[-86.97435462099995,65.52167389500006],[-86.98298092399995,65.51642487200009],[-87.00088456899991,65.51133860900016],[-87.00845292899996,65.50800202000012],[-87.01146399599985,65.50348541900017],[-87.01374264199984,65.496568101],[-87.01500403599994,65.49022044500005],[-87.01528886599988,65.48749420800007],[-87.03441321499994,65.48423899900003],[-87.06696529899992,65.48834870000017],[-87.08421790299991,65.48411692900005],[-87.09308834499987,65.47894928600006],[-87.10435950399994,65.47052643400008],[-87.11412512899989,65.46039459800015],[-87.11831620999993,65.45001862200014],[-87.10997473899997,65.43537018400004],[-87.07282467399995,65.42808665600002],[-87.06371008999986,65.41864655200011],[-87.07860266799992,65.40208567900005],[-87.15583248599995,65.39288971600017],[-87.18350175699993,65.38141510600003],[-87.19505774599989,65.37225983300013],[-87.20986894399994,65.36705149900014],[-87.25942949099988,65.36155833500011],[-87.31012936099995,65.34349192900002],[-87.3807673819999,65.32969798400009],[-87.6541235014999,65.3315697285001],[-87.92747962099989,65.33344147300012],[-88.0638728509999,65.35948314000011],[-88.17039954299986,65.39996979400003],[-88.20547441299993,65.40509674700014],[-88.22191321499994,65.411810614],[-88.23180091099994,65.4199079450001],[-88.24693762899994,65.43866608300009],[-88.25548255099997,65.44651927300005],[-88.29185950399993,65.46430084800015],[-88.30040442599997,65.46702708500011],[-88.30646725199995,65.47138092700003],[-88.32526607999992,65.49058665600016],[-88.33458411399997,65.49494049700014],[-88.35578365799994,65.49994538],[-88.41787675699987,65.52619049700003],[-88.46157792899987,65.55357493700008],[-88.55028235599994,65.58311595300012],[-88.58324133999992,65.58946360900008],[-88.66193600199989,65.595404364],[-88.69115149599993,65.60728587400014],[-88.72179114499994,65.62437571800011],[-88.75861568899992,65.63434479400009],[-88.83141028599988,65.64520905200008],[-88.58458411399991,65.64524974200008],[-88.48062089799996,65.62824127800009],[-88.42088782499988,65.62498607000005],[-88.41368567599994,65.63153717700014],[-88.44810950399989,65.6432966170001],[-88.74299068899984,65.67462799700016],[-88.7838435539999,65.684027411],[-88.80410722599989,65.68614329600011],[-88.81895911399997,65.68992747600014],[-88.84532630099994,65.70380280200011],[-88.85903886599988,65.70294830900012],[-88.87360592399992,65.69953034100011],[-88.97012285099987,65.6965192730001],[-88.9890844389999,65.69981517100014],[-89.05113684799993,65.7202822940001],[-89.10936438699986,65.72846100500011],[-89.12559973899991,65.73395416900006],[-89.13646399599989,65.74290599200008],[-89.14053300699993,65.75214264500012],[-89.14264889199985,65.760931708],[-89.14736894399995,65.76866282800002],[-89.16047115799992,65.77667877800015],[-89.2272029289999,65.79975006700003],[-89.27122962099989,65.80845774900008],[-89.29100501199991,65.80967845300002],[-89.31090247299991,65.81329987200017],[-89.32135982999989,65.82184479400009],[-89.32852128799993,65.83189524900017],[-89.33849036399994,65.84003327],[-89.40843665299994,65.86701080900006],[-89.44806881399987,65.87559642100014],[-89.47569739499995,65.8710798200001],[-89.46930904899995,65.86090729400014],[-89.47826087099989,65.85594310100011],[-89.49445553299991,65.85594310100011],[-89.50983639199985,65.86058177300013],[-89.51984615799995,65.86884186400012],[-89.52790279899989,65.88764069200006],[-89.53718014199987,65.89838288],[-89.55239824099993,65.90513743700002],[-89.63817298099988,65.92316315300015],[-89.67145748599997,65.94074127800009],[-89.68797766799995,65.94684479400017],[-89.70514889199987,65.94623444200003],[-89.75999915299988,65.935980536],[-89.77578691299993,65.94318268400012],[-89.96739661399987,65.9557966170001],[-90.00389563699994,65.94684479400017],[-89.76707923099994,65.89264557500012],[-89.74323482999995,65.87791575700011],[-89.73045813699991,65.85887278900013],[-89.73265540299991,65.84153880400005],[-89.74693762899992,65.82868073100012],[-89.77057857999992,65.822699286],[-89.80109615799998,65.82404205900009],[-89.83747311099995,65.8309186870001],[-89.87205969999985,65.84312571800008],[-89.89745032499988,65.86058177300013],[-89.91014563699994,65.86566803600006],[-89.96914628799988,65.8710798200001],[-90.02623450399996,65.88898346600013],[-90.0442602199999,65.89158763200005],[-90.10789954299989,65.89020416900009],[-90.13853919199988,65.88519928600014],[-90.16779537699992,65.8744977890001],[-90.22866777299993,65.8593610700001],[-90.30223548099991,65.86017487200003],[-90.43529212099992,65.88475169500003],[-90.40339107999998,65.89667389500009],[-90.36652584499993,65.90025462400014],[-90.29100501199987,65.89838288],[-90.22240149599989,65.905218817],[-90.2171117829999,65.90709056200008],[-90.21475175699993,65.91160716400012],[-90.21544348899987,65.91734446800011],[-90.21898352799988,65.92267487200014],[-90.22667395699997,65.92609284100017],[-90.2369685539999,65.92686595300009],[-90.4007869129999,65.905218817],[-90.72321529849991,65.92336660350007],[-91.04564368399984,65.94151439000011],[-91.08592688699994,65.95087311400015],[-91.10627193899992,65.95298899900014],[-91.18199622299991,65.94684479400017],[-91.3102921209999,65.97593821800014],[-91.34679114499997,65.97044505400011],[-91.38320878799993,65.96076080900015],[-91.46344967399995,65.95811595300016],[-91.49730383999992,65.94684479400017],[-91.12051347599991,65.84320709800006],[-91.06285559799997,65.81610748900012],[-91.03164628799989,65.80833567900011],[-91.00446529899997,65.8158633480001],[-91.06590735599988,65.856878973],[-91.09243730399993,65.884466864],[-91.10850989499991,65.89756907800007],[-91.12734941299993,65.905218817],[-91.1076554029999,65.92304108300009],[-91.07046464799988,65.92845286700013],[-90.95506751199991,65.920355536],[-90.8957413399999,65.90375397300015],[-90.70103919199991,65.89158763200005],[-90.52969316299996,65.8819440780001],[-90.30068925699996,65.8403181010001],[-90.09422766799995,65.82115306200016],[-89.95811926999994,65.79429759300008],[-89.85098222599993,65.75157298400016],[-89.77334550699989,65.73883698100012],[-89.73639889199984,65.72772858300009],[-89.64329993399988,65.67247142100017],[-89.63320878799993,65.66819896000005],[-89.61310787699998,65.6494815120001],[-89.60265051999991,65.64520905200008],[-89.5848282539999,65.64264557500017],[-89.49144446499994,65.61579010600009],[-89.46812903599994,65.60590241100009],[-89.45384680899994,65.58869049700014],[-89.44904537699993,65.55890534100014],[-89.44253495999996,65.54474518400004],[-89.4271541009999,65.52745189000002],[-89.40892493399994,65.51154205900012],[-89.39378821499994,65.50116608300011],[-89.25853430899994,65.45648834800015],[-89.2193904289999,65.45160553600009],[-89.2012426419999,65.44660065300002],[-89.18423417899993,65.4389509140001],[-89.1653539699999,65.42466868700002],[-89.15587317599989,65.4199079450001],[-89.15050208199995,65.415228583],[-89.14818274599988,65.409613348],[-89.14891516799992,65.39679596600017],[-89.14736894399995,65.39191315300008],[-89.12913977799988,65.37726471600008],[-89.0858048169999,65.35419342700011],[-89.06786048099985,65.34007396],[-89.03986568899984,65.32819245000006],[-88.96743730399989,65.34296295800011],[-88.93382727799988,65.34349192900002],[-88.89537512899997,65.32672760600016],[-88.87922115799991,65.32245514500005],[-88.61774654899992,65.31391022300015],[-88.54710852799988,65.29918040600015],[-88.12120520699993,65.28038157800002],[-88.0772598949999,65.26776764500012],[-88.04588782499988,65.26805247600005],[-87.97752844999988,65.28412506700015],[-87.94102942599994,65.28827545800009],[-87.8314509759999,65.28204987200003],[-87.77774003799993,65.26911041900003],[-87.75088456899994,65.267523505],[-87.73468990799998,65.28204987200003],[-87.7489314439999,65.28827545800009],[-87.71108964799996,65.30101146000014],[-87.65965735599985,65.30060455900004],[-87.60830644399994,65.29161204600011],[-87.5276586579999,65.26825592700011],[-87.37279212099993,65.27521393400009],[-87.04694576699984,65.23798248900012],[-87.0354711579999,65.22996653899999],[-87.03807532499991,65.21885814000014],[-87.05687415299985,65.20636627800003],[-87.03425045499998,65.19428131700012],[-86.9784236319999,65.17963288000011],[-86.95384680899988,65.16535065300003],[-86.93822180899991,65.14195384300012],[-86.95132402299987,65.13031647300012],[-86.97598222599986,65.12079498900015],[-86.99478105399993,65.10394928600014],[-86.99254309799994,65.08283112200003],[-86.97793535099993,65.06928131700006],[-86.97362219999991,65.05756256700006],[-87.00226803299996,65.04185618700002],[-87.08482825399997,65.01532623900013],[-87.1114802729999,65.00092194200009],[-87.10045325399994,64.99669017100014],[-87.09064693899983,64.99079010600003],[-87.08263098899988,64.98297760600003],[-87.07738196499992,64.97296784100014],[-87.10562089799987,64.951605536],[-87.11831620999993,64.94562409100008],[-87.13581295499998,64.94249095300002],[-87.15274003799995,64.94232819200015],[-87.16881262899994,64.93964264500006],[-87.18350175699993,64.92890045800006],[-87.20262610599991,64.910589911],[-87.24478105399994,64.8805606140001],[-87.27501380099997,64.84996165600002],[-87.30431067599989,64.81260814000017],[-87.31012936099995,64.79857005400011],[-87.30736243399988,64.78790924700017],[-87.29820716099991,64.77061595300007],[-87.30020097599993,64.7643903670001],[-87.31529700399994,64.7588972030001],[-87.35594641799993,64.75779857000005],[-87.37279212099993,64.75385163000006],[-87.41637122299994,64.71991608300011],[-87.44473222599989,64.70758698100015],[-87.47118079299987,64.71629466400005],[-87.4727677069999,64.72589752800003],[-87.46812903599988,64.73615143400015],[-87.46861731699997,64.74433014500006],[-87.48517818899984,64.74766673400008],[-87.4964900379999,64.74323151200012],[-87.51065019399994,64.73301829600008],[-87.52306067599997,64.72142161700008],[-87.52920488199992,64.71287669500003],[-87.52769934799989,64.69932689000008],[-87.5130102199999,64.66315338700007],[-87.50938880099991,64.64769114800013],[-87.51353919199997,64.63410065300017],[-87.52358964799993,64.6257184920001],[-87.5466202459999,64.61359284100001],[-87.55630449099995,64.60260651200015],[-87.56920325399989,64.57929108300006],[-87.57762610599994,64.56952545800011],[-87.59996497299997,64.55817291900014],[-87.76427161399994,64.52240631700012],[-87.8050837879999,64.51996491100009],[-87.8098852199999,64.516058661],[-87.81069902299988,64.50861237200012],[-87.81041419199997,64.49689362200003],[-87.81297766799987,64.48712799700009],[-87.81965084499993,64.480169989],[-87.8382869129999,64.4658877620001],[-87.8503311839999,64.45237864800013],[-87.85887610599985,64.43817780200011],[-87.86392167899987,64.42169830900002],[-87.86563066299988,64.40131256700015],[-87.87486731699994,64.3608259140001],[-87.89952551999994,64.33307526200004],[-88.02074133999989,64.27387116100014],[-88.04173743399994,64.25731028900007],[-88.05060787699998,64.23688385600009],[-87.99640865799992,64.205755927],[-87.98167883999992,64.19151439000011],[-88.04430091099994,64.18431224200008],[-88.06053626199989,64.17511627800009],[-88.0742081369999,64.16303131700009],[-88.09288489499988,64.15058014500005],[-88.11266028599991,64.1408552100001],[-88.12946529899992,64.13690827000012],[-88.22158769399991,64.14435455900012],[-88.23985755099997,64.13890208500008],[-88.27281653599994,64.11505768400009],[-88.29019120999993,64.10956452000006],[-88.30793209499993,64.10728587400008],[-88.48302161399991,64.05076732000008],[-88.50145423099994,64.04828522300015],[-88.55817623599992,64.04808177299999],[-88.56432044199988,64.04205963700018],[-88.55028235599994,64.02765534100003],[-88.59308834499984,64.01854075700011],[-88.66608639199983,64.01146067900008],[-88.6730850899999,64.00433991100012],[-88.67528235599991,63.993353583000065],[-88.6874080069999,63.979234117000125],[-88.70775305899991,63.972723700000024],[-88.73460852799988,63.97235748900011],[-88.78302975199998,63.979234117000125],[-88.8269750639999,63.99103424700009],[-88.83853105399993,63.990098374000105],[-88.84854081899991,63.985052802000084],[-88.85635331899991,63.98228587400003],[-88.86546790299991,63.98248932500018],[-88.87922115799991,63.98668040600011],[-88.87511145699997,63.997056382],[-88.87242591099987,64.000962632],[-88.90363521999986,64.00824616100003],[-88.96703040299991,63.988511460000076],[-89.00275631399992,63.99347565300004],[-89.00234941299992,63.995835679],[-88.9977107409999,64.00604889500012],[-88.99649003799988,64.01060618700016],[-89.00177975199995,64.01483795800009],[-89.01382402299987,64.01801178600014],[-89.05955969999988,64.02509186400003],[-89.10260982999992,64.04389069200006],[-89.14769446499989,64.05613841400013],[-89.17609615799992,64.07550690300006],[-89.19920813699984,64.09918854400014],[-89.20881100199993,64.12046946800014],[-89.2119848299999,64.13178131700012],[-89.22004146999984,64.13963450700003],[-89.24299068899984,64.15119049700003],[-89.24962317599989,64.15574778899999],[-89.25234941299996,64.15892161700005],[-89.25552324099993,64.15985748900012],[-89.26341712099992,64.15802643400006],[-89.2906794909999,64.13690827000012],[-89.27415930899991,64.13141510600009],[-89.23298092399995,64.10557689000008],[-89.21873938699993,64.09312571800017],[-89.1773982409999,64.038519598],[-89.16002356699993,64.02354564000017],[-89.10578365799996,63.98668040600011],[-89.09870357999992,63.97724030199999],[-89.09557044199994,63.96836985900014],[-89.0897517569999,63.96190013200014],[-89.07477779899995,63.959418036000024],[-89.04938717399995,63.960882880000085],[-89.03746497299987,63.95909251500008],[-89.02318274599989,63.952582098000086],[-89.04930579299986,63.94635651200004],[-89.14736894399995,63.952582098000086],[-89.14134680899986,63.95518626500007],[-89.12559973899991,63.96556224199999],[-89.14281165299991,63.97117747599999],[-89.17760169199997,63.97003815300015],[-89.19448808499996,63.973008531000154],[-89.20571855399996,63.97907135600015],[-89.23924719999991,64.00409577000006],[-89.25112870999993,64.00910065300012],[-89.27057857999995,64.01422760600003],[-89.28636633999989,64.01593659100003],[-89.28734290299988,64.01060618700016],[-89.2750544909999,64.004868882],[-89.25987708199992,64.00055573100009],[-89.25084387899992,63.993353583000065],[-89.25719153599994,63.979234117000125],[-89.25226803299996,63.97296784100017],[-89.25088456899991,63.97032298400007],[-89.24974524599986,63.96556224199999],[-89.2898656889999,63.98663971600011],[-89.3347875639999,64.01915110900008],[-89.37905839799993,64.04144928600012],[-89.43862870999996,64.02415599200013],[-89.46104895699997,64.03424713700008],[-89.49620520699992,64.06244538000006],[-89.52660071499989,64.07636139500015],[-89.5455623039999,64.07977936400005],[-89.56505286399991,64.076117255],[-89.55919348899994,64.05723704600017],[-89.56444251199994,64.025620835],[-89.55768795499989,64.00718821800014],[-89.5425512359999,63.99241771000008],[-89.48253333199989,63.952582098000086],[-89.50918535099993,63.952093817],[-89.54035396999993,63.97211334800007],[-89.59239661399997,64.02081940300009],[-89.65562903599992,64.06248607000005],[-89.69424394399991,64.07843659100017],[-89.72215735599994,64.076117255],[-89.71572831899994,64.0713972030001],[-89.70929928299991,64.06415436400006],[-89.70425370999988,64.05512116100006],[-89.70225989499994,64.04503001500011],[-89.70689856699997,64.03168366100009],[-89.71715247299991,64.03782786700008],[-89.73265540299991,64.05870189000005],[-89.75218665299988,64.07245514500015],[-89.82579505099994,64.10956452000006],[-89.81965084499986,64.12091705900004],[-89.8121638659999,64.12815989800005],[-89.80284583199997,64.13292064000014],[-89.79100501199991,64.13690827000012],[-89.75987708199992,64.13641998900015],[-89.7434789699999,64.13853587400014],[-89.73639889199984,64.14777252800012],[-89.73810787699995,64.15595123900012],[-89.74640865799992,64.17011139500013],[-89.74941972599993,64.17853424700009],[-89.75035559799991,64.18768952000009],[-89.74941972599993,64.21637604400014],[-89.75206458199992,64.22532786700008],[-89.75841223899992,64.23187897300015],[-89.77391516799985,64.243353583],[-89.78636633999989,64.25023021000011],[-89.79466712099986,64.24530670800014],[-89.80467688699994,64.22687409100011],[-89.80768795499995,64.21649811400012],[-89.80528723899991,64.20758698100018],[-89.80606035099993,64.20136139500012],[-89.81895911399992,64.19896067900008],[-89.86953691299993,64.205755927],[-89.88719641799993,64.20579661699999],[-89.86847896999987,64.190619208],[-89.84569251199986,64.1853701840001],[-89.82640540299991,64.17743561400006],[-89.8182673819999,64.15460846600006],[-89.83234615799995,64.14142487200009],[-89.8636775379999,64.14618561400007],[-89.91392981699997,64.16486237200014],[-89.93980872299997,64.16852448100012],[-89.97020423099994,64.16779205900018],[-89.99998938699994,64.16303131700009],[-90.04893958199992,64.14427317900014],[-90.12743079299993,64.13007233300011],[-90.07030188699989,64.11583079600011],[-90.05479895699993,64.10651276200015],[-90.04084225199989,64.10020579600003],[-90.02546139199987,64.09996165600008],[-90.01695716099991,64.10728587400008],[-90.02375240799994,64.12388743700014],[-89.96385657499991,64.12242259300008],[-89.93211829299995,64.11749909100001],[-89.91392981699997,64.10337962400008],[-89.93846594999988,64.09638092700011],[-89.94766191299996,64.08368561400015],[-89.94351152299993,64.06867096600003],[-89.92813066299988,64.05499909100008],[-89.92638098899988,64.05621979400011],[-89.90428626199989,64.05499909100008],[-89.89891516799995,64.05316803600012],[-89.89659583199997,64.04905833500005],[-89.89561926999991,64.044663804],[-89.89403235599988,64.04193756700003],[-89.87437903599991,64.03339264500009],[-89.85309811099992,64.02765534100003],[-89.85309811099992,64.02081940300009],[-89.88866126199991,64.022162177],[-89.90599524599989,64.0203718120001],[-89.92076575399997,64.01402415600006],[-89.91368567599991,64.00836823100018],[-89.91197669199991,64.00617096600008],[-89.91299394399988,64.00458405200006],[-89.91392981699997,64.000962632],[-89.88951575399992,63.992905992000075],[-89.8390193349999,63.988023179],[-89.8182673819999,63.973008531000154],[-89.81273352799988,63.960150458000136],[-89.81334387899994,63.9460309920001],[-89.81993567599991,63.93341705900003],[-89.83193925699993,63.924627997000144],[-89.85020911399991,63.92206452000014],[-89.8981827459999,63.925848700000174],[-89.92076575399997,63.924627997000144],[-89.9466039699999,63.918931382000075],[-89.95921790299988,63.918402411],[-89.96808834499993,63.920111395],[-89.99644934799997,63.932074286000145],[-89.9708552729999,63.937852281000104],[-89.95445716099988,63.949164130000085],[-89.95230058499988,63.96373118700002],[-89.96914628799988,63.979234117000125],[-89.99526933499993,63.98956940300003],[-90.01886959499987,63.992621161000116],[-90.02965247299997,63.98554108300006],[-90.01756751199987,63.96556224199999],[-90.03966223899997,63.96482982000005],[-90.06354732999992,63.970282294000086],[-90.08307857999992,63.97016022300012],[-90.09203040299994,63.952582098000086],[-90.11571204299985,63.96397532800015],[-90.14655514199993,63.99412669499999],[-90.16836503799988,64.00718821800014],[-90.19347083199997,64.0131289730001],[-90.22297115799995,64.01447174700017],[-90.25251217399992,64.012152411],[-90.27765865799996,64.00718821800014],[-90.27765865799996,64.000962632],[-90.22337805899994,63.99176666900003],[-90.13695227799984,63.94464752800003],[-90.08584550699987,63.924627997000144],[-90.09520423099991,63.920111395],[-90.10529537699996,63.917914130000106],[-90.11607825399997,63.91742584800012],[-90.12743079299993,63.918402411],[-90.09947669199991,63.904160874000084],[-90.09349524599992,63.885972398000106],[-89.99803626199989,63.84039948100014],[-89.96914628799988,63.82221100500006],[-89.96589107999992,63.813340562000015],[-89.96621660099996,63.80723704600002],[-89.96808834499993,63.80084870000012],[-89.96914628799988,63.79120514500012],[-89.97423255099991,63.77855052300007],[-89.98619544199994,63.77635325700008],[-90.01073157499985,63.78123607000004],[-90.11998450399996,63.78123607000004],[-90.10558020699992,63.77460358300008],[-90.06875566299993,63.763657945000105],[-90.0585017569999,63.753973700000145],[-90.06151282499991,63.74347565300017],[-90.07335364499997,63.73273346600017],[-90.08800208199997,63.723985093000074],[-90.09947669199991,63.71979401200014],[-90.09422766799995,63.705633856000034],[-90.10387122299991,63.69977448100009],[-90.13707434799991,63.69928620000012],[-90.1384171209999,63.69354889500013],[-90.16836503799988,63.65770091400013],[-90.1566055979999,63.64472077000012],[-90.14728756399987,63.630438544000135],[-90.17926998599995,63.62535228100002],[-90.22057044199991,63.61322663000011],[-90.2593888009999,63.60785553600005],[-90.28384355399996,63.62299225500005],[-90.26919511599992,63.62824127800015],[-90.23741614499991,63.63157786699999],[-90.22240149599989,63.63666413],[-90.24327551999994,63.64545319200007],[-90.26960201699987,63.651068427000084],[-90.29629472599987,63.65131256700003],[-90.31859290299991,63.644110419000164],[-90.31314042899986,63.64264557500011],[-90.29808508999986,63.63666413],[-90.34211178299995,63.621527411],[-90.39460201699993,63.61591217700002],[-90.44684811099992,63.620672919000114],[-90.48989824099995,63.63666413],[-90.45641028599991,63.650864976000115],[-90.52538001199986,63.65721263200005],[-90.54454505099991,63.66453685100005],[-90.51219641799992,63.663641669000135],[-90.49665279899992,63.66539134300014],[-90.48306230399996,63.671372789000074],[-90.52098548099987,63.68565501500016],[-90.6068009109999,63.70319245000011],[-90.64818274599995,63.70551178600006],[-90.64175370999993,63.68382396],[-90.65672766799986,63.674994208000115],[-90.68101966099992,63.67100657800015],[-90.7027888659999,63.66453685100005],[-90.68805904899992,63.659043687000015],[-90.6690567699999,63.655625718000024],[-90.64981035099996,63.65497467700005],[-90.63390051999994,63.65770091400013],[-90.61872311099995,63.665472723000114],[-90.61241614499991,63.671738999000084],[-90.6056208979999,63.67609284100017],[-90.58922278599988,63.67759837400003],[-90.57119706899994,63.67072174700003],[-90.55357825399992,63.65350983299999],[-90.54259192599997,63.631537177],[-90.54454505099991,63.60993073100009],[-90.55776933499996,63.598252671000076],[-90.57282467399997,63.59959544499999],[-90.59292558499992,63.60993073100009],[-90.66120357999992,63.602484442000026],[-90.71275794199987,63.58576080900018],[-90.72647050699993,63.57782623900011],[-90.74323482999995,63.575384833000086],[-90.91014563699991,63.56919993700002],[-90.9745173819999,63.57868073100012],[-91.03795325399993,63.602484442000026],[-91.05532792899989,63.61277903900013],[-91.06135006399992,63.61509837400008],[-91.10220292899994,63.621527411],[-91.13414466099997,63.63353099200013],[-91.15038001199991,63.63727448100015],[-91.19591223899988,63.630438544000135],[-91.23452714799993,63.63389720300013],[-91.27135169199991,63.644110419000164],[-91.31493079299995,63.66144440300015],[-91.3328344389999,63.66453685100005],[-91.37271074099996,63.66417064000014],[-91.39175370999996,63.66710032800016],[-91.40851803299998,63.67759837400003],[-91.39093990799995,63.69147370000012],[-91.37246660099993,63.68878815300003],[-91.35317949099988,63.680528062000135],[-91.3328344389999,63.67759837400003],[-91.34552975199995,63.69159577000009],[-91.37096106699997,63.70172760600006],[-91.50755774599986,63.730536200000174],[-91.5354711579999,63.732855536000145],[-91.54824785099991,63.73114655200014],[-91.57921301999997,63.71979401200014],[-91.59162350199988,63.71845123900008],[-91.67341061099987,63.722235419000086],[-91.68224036399994,63.726019598000114],[-91.68272864499991,63.73541901200006],[-91.67536373599992,63.74168528900011],[-91.66454016799992,63.74518463700017],[-91.65493730399996,63.74652741100009],[-91.6655167309999,63.761664130000085],[-91.6815486319999,63.77501048400007],[-91.70055091099991,63.7802188170001],[-91.71979732999995,63.7709821640001],[-91.73643958199989,63.75531647300015],[-91.7488907539999,63.74823639500009],[-91.89891516799989,63.74603913],[-91.94766191299989,63.755723374000134],[-91.99071204299995,63.78123607000004],[-91.9671117829999,63.79193756700006],[-91.88829505099994,63.801703192],[-91.88829505099994,63.809149481000176],[-91.98289954299993,63.821722723000065],[-91.9981583319999,63.81879303600006],[-91.99681555899993,63.80646393400009],[-91.99494381399987,63.80162181200002],[-91.99624589799996,63.79767487200006],[-92.00438391799987,63.7874616560001],[-92.01431230399986,63.77912018400003],[-92.02708899599992,63.77326080900009],[-92.04063880099987,63.76951732000005],[-92.05280514199987,63.7675641950001],[-92.05280514199987,63.76072825699999],[-92.04576575399992,63.75043366100008],[-92.06403561099987,63.74888743700005],[-92.10741126199994,63.753973700000145],[-92.14899654899992,63.753973700000145],[-92.16197669199991,63.75665924700003],[-92.18797766799989,63.76569245000005],[-92.29922441299993,63.78123607000004],[-92.37376868399988,63.77912018400003],[-92.39541581899987,63.78436920800012],[-92.46715247299989,63.818589585],[-92.50625566299993,63.83100006700012],[-92.75108801999997,63.86314524900008],[-92.75084387899992,63.88715241100011],[-92.78624426999994,63.90098704600002],[-92.82884680899988,63.90696849200004],[-92.8504125639999,63.90753815300011],[-92.86318925699993,63.90269603100013],[-92.91616777299987,63.904160874000084],[-92.9340714179999,63.908148505000085],[-92.94188391799992,63.91758860900008],[-92.94688880099994,63.92890045800008],[-92.95653235599994,63.93829987200009],[-92.98721269399994,63.94139232],[-93.06843014199984,63.93235911700007],[-93.0974014959999,63.94196198100014],[-93.12694251199989,63.960801499000084],[-93.16661536399991,63.97394440300014],[-93.31338456899994,63.99347565300004],[-93.36750240799992,64.01154205900006],[-93.41612708199997,64.01634349200013],[-93.44815019399996,64.02313873900006],[-93.47891191299993,64.03392161700008],[-93.5058487619999,64.04816315300017],[-93.54246985599994,64.07501862200014],[-93.55980383999992,64.08226146000007],[-93.60993404899992,64.09690989799999],[-93.62498938699994,64.10651276200015],[-93.63292395699989,64.12510814000017],[-93.61681067599991,64.15448639500006],[-93.63491777299991,64.16486237200014],[-93.65477454299995,64.16596100500011],[-93.69517981699988,64.16217682500009],[-93.71776282499987,64.16828034100017],[-93.74840247299997,64.18964264500012],[-93.76455644399994,64.19647858300014],[-93.77953040299987,64.19151439000011],[-93.6976212229999,64.15119049700003],[-93.68883216099997,64.14512767100003],[-93.68114173099993,64.13853587400014],[-93.67479407499991,64.13141510600009],[-93.66974850199998,64.12388743700014],[-93.66885331899988,64.11570872600014],[-93.67003333199992,64.09410228100013],[-93.66592363199996,64.08970774900014],[-93.64509029899996,64.08226146000007],[-93.60716712099985,64.04938385600008],[-93.58714758999989,64.04193756700003],[-93.57506262899989,64.04144928600012],[-93.56387285099987,64.03900787999999],[-93.55557206899991,64.03363678600012],[-93.55235755099994,64.02423737200012],[-93.6008194649999,64.01402415600006],[-93.58836829299992,64.008734442],[-93.57494055899991,64.00682200700014],[-93.54621334499987,64.00718821800014],[-93.54621334499987,64.000962632],[-93.59679114499994,63.99302806200005],[-93.76593990799992,63.99347565300004],[-93.76024329299992,63.98436107000013],[-93.75963294199997,63.97553131700008],[-93.76366126199994,63.967149156000026],[-93.77208411399988,63.959418036000024],[-93.75593014199993,63.95933665600005],[-93.72557532499985,63.96308014500006],[-93.71068274599989,63.959418036000024],[-93.69937089799993,63.951117255000106],[-93.68883216099997,63.931708075000024],[-93.68024654899995,63.92149485900008],[-93.66234290299988,63.90790436400012],[-93.65762285099987,63.900213934000114],[-93.65607662699995,63.887396552000084],[-93.64728756399987,63.88145579600014],[-93.5331111319999,63.84955475500015],[-93.51439368399991,63.846991278000026],[-93.46450761599996,63.84955475500015],[-93.43065344999991,63.84300364800005],[-93.36851966099988,63.81720612200002],[-93.33385169199991,63.81537506700015],[-93.34528561099987,63.82294342699999],[-93.37246660099987,63.829820054000024],[-93.38170325399993,63.83588288],[-93.38170325399993,63.846299546000076],[-93.36595618399988,63.84723541900017],[-93.30744381399992,63.83250560099999],[-93.27668209499983,63.83262767100013],[-93.2171931629999,63.84271881700012],[-93.2171931629999,63.84955475500015],[-93.28612219999985,63.84955475500015],[-93.30223548099991,63.85260651200004],[-93.33348548099988,63.86627838700014],[-93.35094153599994,63.86937083500005],[-93.36119544199988,63.87384674700011],[-93.39537512899997,63.904160874000084],[-93.4505916009999,63.932074286000145],[-93.43814042899987,63.936997789000095],[-93.43199622299989,63.93854401200004],[-93.42324785099993,63.93829987200009],[-93.44001217399995,63.949937242000104],[-93.45738684799991,63.959418036000024],[-93.40062415299985,63.977362372000144],[-93.33592688699991,63.96128978100007],[-93.2171931629999,63.91095612200003],[-93.14830481699994,63.904160874000084],[-93.13219153599987,63.898138739],[-93.10407467399997,63.88056061400005],[-93.0871475899999,63.87681712400002],[-93.0123591789999,63.86981842700014],[-92.90965735599988,63.84031810100007],[-92.7664688789999,63.83197663],[-92.63491777299996,63.78388092700014],[-92.61095130099991,63.7801374370001],[-92.58775794199997,63.78636302300005],[-92.56297766799992,63.80548737200003],[-92.53506425699996,63.81952545800008],[-92.49937903599994,63.82062409100003],[-92.46385657499985,63.81159088700012],[-92.43639075399992,63.79490794499999],[-92.41934160099994,63.75348541900017],[-92.41246497299993,63.74652741100009],[-92.30260169199997,63.74030182500012],[-92.26402747299989,63.74693431200008],[-92.25080318899987,63.74652741100009],[-92.24107825399992,63.74266185100008],[-92.22126217399989,63.73016998900007],[-92.20982825399993,63.726019598000114],[-92.12751217399997,63.711167710000055],[-92.09996497299994,63.69928620000012],[-92.12149003799988,63.69379303600009],[-92.16869055899986,63.692084052000084],[-92.18932044199988,63.6850446640001],[-92.20872962099989,63.66673411700004],[-92.19985917899993,63.65790436400008],[-92.18065344999988,63.65245189000013],[-92.16885331899991,63.644110419000164],[-92.20311438699989,63.64032623900006],[-92.2765193349999,63.62189362200002],[-92.30601966099997,63.630438544000135],[-92.29303951699987,63.63666413],[-92.3050837879999,63.6526960310001],[-92.32298743399993,63.65143463700017],[-92.34105383999986,63.64122142100014],[-92.35387122299991,63.630438544000135],[-92.37230383999994,63.60614655200005],[-92.38365637899992,63.59613678600008],[-92.40221106699991,63.58942291900003],[-92.5296931629999,63.56439850500011],[-92.54564368399991,63.55475495000014],[-92.46743730399993,63.52838776200015],[-92.45913652299993,63.52671946800014],[-92.4493708979999,63.52741120000009],[-92.44322669199991,63.548529364],[-92.4260147779999,63.55219147300014],[-92.36530514199987,63.549017645000085],[-92.35716712099995,63.5497907570001],[-92.34935462099995,63.55145905200012],[-92.34019934799997,63.55475495000014],[-92.33926347599986,63.55792877800003],[-92.33926347599986,63.56419505400008],[-92.33820553299992,63.570868231000034],[-92.3339737619999,63.57518138200014],[-92.30410722599993,63.57465241100005],[-92.25674394399988,63.54222239800004],[-92.23033606699988,63.54100169500004],[-92.2168676419999,63.55267975500014],[-92.20726477799994,63.57200755400008],[-92.20417232999993,63.59308502800008],[-92.20982825399993,63.60993073100009],[-92.1810196609999,63.62189362200002],[-92.12165279899995,63.62177155200005],[-92.09683183499988,63.63353099200013],[-92.08128821499989,63.645209052000105],[-92.06810462099992,63.647772528000026],[-92.03538977799991,63.644110419000164],[-92.02350826699987,63.647894598],[-91.9835505849999,63.67450592700013],[-91.95514889199987,63.68309153900007],[-91.89541581899991,63.69196198100009],[-91.83462480399996,63.7105573590001],[-91.80687415299988,63.71588776200015],[-91.77843176999997,63.714422919000114],[-91.66087805899988,63.67731354400008],[-91.62767493399984,63.654527085000076],[-91.61998450399994,63.65119049700006],[-91.61510169199997,63.645982164000046],[-91.61335201699987,63.63353099200013],[-91.61530514199993,63.622870184000085],[-91.61823482999995,63.61322663000011],[-91.61782792899992,63.603501694999984],[-91.60993404899995,63.592515367000104],[-91.59837805899994,63.58502838700014],[-91.58674068899984,63.58226146],[-91.53990637899996,63.5800641950001],[-91.52774003799988,63.576157945000105],[-91.50405839799987,63.56220123900011],[-91.40029863199986,63.53082916900008],[-91.38060462099995,63.51373932500014],[-91.38805091099991,63.51141998900008],[-91.40851803299998,63.50006745000012],[-91.39093990799995,63.487738348000065],[-91.37108313699994,63.485052802],[-91.35106360599987,63.489081122000144],[-91.3328344389999,63.49664948100009],[-91.31554114499988,63.50153229400018],[-91.16832434799997,63.49323151200009],[-91.14793860599988,63.48692454600014],[-91.09943600199992,63.459092515000115],[-91.07852128799993,63.45262278900002],[-91.06216386599993,63.45286692900013],[-91.04824785099996,63.45880768400015],[-91.03453528599994,63.46967194200015],[-91.01740475199988,63.471136786000024],[-90.98851477799988,63.465684312000164],[-90.96129309799997,63.45697663],[-90.92674719999988,63.43211497600013],[-90.78473873599992,63.39765045800011],[-90.8051651679999,63.39154694200011],[-90.83438066299993,63.39305247599999],[-90.95197506399984,63.42218659100005],[-90.97647050699996,63.424383856000034],[-90.96458899599992,63.40863678600008],[-90.94538326699987,63.39801666900002],[-90.9227595689999,63.3920759140001],[-90.87267005099989,63.385931708000115],[-90.81851152299993,63.36717357000007],[-90.79124915299994,63.36290110900016],[-90.7083634109999,63.36469147300014],[-90.68911699099996,63.35667552300003],[-90.6824438139999,63.33746979400014],[-90.70181230399992,63.32929108300014],[-90.73021399599995,63.32603587400008],[-90.75059973899992,63.32135651200015],[-90.73631751199994,63.308294989],[-90.74095618399988,63.294378973000036],[-90.72960364499988,63.286607164000095],[-90.71149654899996,63.28135814000002],[-90.69538326699991,63.27476634300013],[-90.71890214799987,63.26097239800005],[-90.71760006399987,63.25348541900018],[-90.70352128799993,63.24616120000017],[-90.68911699099996,63.232611395],[-90.68724524599988,63.22422923400014],[-90.68858801999987,63.21458567899999],[-90.69172115799995,63.20538971600012],[-90.69538326699991,63.198431708000115],[-90.69644120999996,63.19297923400007],[-90.69513912699996,63.188666083000086],[-90.69562740799995,63.18577708500005],[-90.70221920499992,63.18475983300008],[-90.71812903599994,63.18939850500011],[-90.72655188699991,63.19000885600014],[-90.73009192599997,63.18475983300008],[-90.72227942599989,63.17487213700014],[-90.68659420499995,63.16986725500011],[-90.67487545499995,63.16490306200008],[-90.67174231699988,63.15338776200004],[-90.67882239499994,63.14777252800006],[-90.68903561099997,63.1436628280001],[-90.69538326699991,63.136948960000055],[-90.69188391799992,63.12482330900015],[-90.65440833199989,63.08856842700014],[-90.66429602799991,63.088324286],[-90.68911699099996,63.08173248900011],[-90.67747962099986,63.070746161000066],[-90.64362545499989,63.06891510600009],[-90.62645423099988,63.061265367000075],[-90.6449275379999,63.05768463700009],[-90.65880286399988,63.03424713700012],[-90.69196529899992,63.04181549700014],[-90.70189368399991,63.035589911],[-90.71035722599996,63.02427806200002],[-90.72329667899996,63.01410553600008],[-90.68911699099996,63.01410553600008],[-90.70246334499987,63.00336334800006],[-90.71865800699993,62.999375718000074],[-90.7536514959999,62.99982330900017],[-90.75706946499994,62.99583567900011],[-90.74795488199993,62.98704661700005],[-90.7342016269999,62.97789134300013],[-90.72329667899996,62.97308991100005],[-90.73680579299992,62.966986395000085],[-90.75218665299988,62.96503327000011],[-90.78473873599992,62.96564362200009],[-90.77220618399994,62.95319245000017],[-90.78380286399994,62.945054429000045],[-90.82567298099985,62.93834056200002],[-91.03111731699991,62.951402085],[-91.05304928299995,62.944810289000095],[-91.09630286399994,62.92267487200004],[-91.11681067599987,62.917832749000134],[-91.13963782499991,62.916083075000145],[-91.16148841099994,62.91107819200011],[-91.19961503799993,62.89679596600003],[-91.20881100199989,62.876288153000175],[-91.22077389199993,62.862168687000135],[-91.31240800699993,62.83051178600005],[-91.32258053299995,62.82916901200017],[-91.39842688699991,62.82819245000009],[-91.42218990799992,62.82225169499999],[-91.40587317599989,62.81561920800011],[-91.37018795499995,62.809678453000075],[-91.3538712229999,62.801214911000145],[-91.39427649599989,62.78681061400008],[-91.44196529899995,62.78693268400014],[-91.65786699099996,62.811265367000104],[-91.70978756399987,62.825791734000155],[-91.73717200399992,62.82916901200017],[-91.83307857999992,62.82916901200017],[-91.97940019399995,62.84739817900005],[-92.08299719999988,62.87254466400004],[-92.13475501199991,62.87689850500012],[-92.13369706899994,62.871812242000104],[-92.13267981699987,62.87103913],[-92.1309301419999,62.87132396000011],[-92.12791907499988,62.869452216000134],[-92.13499915299985,62.84906647300006],[-92.1192113919999,62.83751048400013],[-92.09732011599995,62.82916901200017],[-92.08629309799991,62.81854889500011],[-92.09886633999992,62.803900458000115],[-92.12779700399992,62.80072663000005],[-92.15998287699998,62.80475495000003],[-92.22842363199993,62.82916901200017],[-92.28038489499991,62.840765692],[-92.33311926999991,62.845160223000065],[-92.42857825399992,62.833563544000135],[-92.45274817599991,62.82493724200005],[-92.46304277299991,62.81146881700006],[-92.45392818899983,62.79393138200013],[-92.43268795499995,62.782782294000114],[-92.40880286399988,62.77387116100009],[-92.39171301999994,62.76329173400002],[-92.35680091099991,62.732245184000085],[-92.31696529899995,62.713242906000104],[-92.22411048099994,62.69196198100003],[-92.22411048099994,62.68451569200015],[-92.24242102799988,62.68585846600014],[-92.25914466099991,62.69000885600017],[-92.27562415299991,62.691351630000085],[-92.29303951699987,62.68451569200015],[-92.2777400379999,62.67877838700018],[-92.20360266799989,62.666815497000144],[-91.96800696499989,62.65501536699998],[-91.89745032499994,62.63971588700012],[-91.88975989499991,62.630723374000105],[-91.88805091099991,62.62042877800017],[-91.8898005849999,62.600165106000176],[-91.89464270699997,62.58885325699999],[-91.90294348899994,62.57908763200006],[-91.91502844999984,62.5715192730001],[-91.94758053299992,62.55878327000015],[-91.95543372299991,62.55048248900006],[-91.9429418609999,62.541083075000145],[-91.96019446499992,62.5339216170001],[-91.9834692049999,62.53160228100013],[-92.02489173099994,62.533677476000044],[-92.0937393869999,62.547308661],[-92.15904700399989,62.543280341000056],[-92.17568925699993,62.547308661],[-92.18675696499989,62.56187571800005],[-92.17552649599988,62.57123444200006],[-92.14150956899994,62.582098700000145],[-92.15050208199993,62.593613999000084],[-92.16563880099993,62.606146552],[-92.18321692599989,62.6125348980001],[-92.21711178299995,62.59686920800014],[-92.25841223899988,62.601426499000084],[-92.2787166009999,62.59577057500009],[-92.24461829299989,62.57465241100009],[-92.2608943349999,62.56260814000016],[-92.28624426999994,62.564398505000064],[-92.31456458199989,62.56964752800003],[-92.34019934799997,62.56842682500012],[-92.33495032499988,62.56346263200008],[-92.3252660799999,62.5519880230001],[-92.31969153599991,62.547308661],[-92.39891516799989,62.538519598000114],[-92.4289444649999,62.541083075000145],[-92.45938066299988,62.547227281000026],[-92.47736568899992,62.55524323100014],[-92.47801673099988,62.56793854400002],[-92.45685787699995,62.588324286000116],[-92.47940019399994,62.599066473000114],[-92.49006100199998,62.59288157800015],[-92.4960017569999,62.58112213700017],[-92.5046280589999,62.57465241100009],[-92.5176488919999,62.575873114],[-92.52476966099994,62.57916901200004],[-92.53038489499994,62.583563544000114],[-92.57664954299995,62.60602448100012],[-92.58849036399991,62.61432526200009],[-92.60505123599985,62.62201569200011],[-92.61851966099994,62.62254466400002],[-92.62132727799991,62.60944245000003],[-92.60863196499994,62.5973981790001],[-92.58763587099989,62.589789130000085],[-92.5733129549999,62.579779364],[-92.58039303299998,62.560980536000145],[-92.56753495999996,62.55792877800015],[-92.55549068899984,62.553168036000145],[-92.54548092399995,62.54547760600003],[-92.53880774599989,62.533677476000044],[-92.55109615799995,62.52757396000008],[-92.55980383999994,62.52195872600007],[-92.56501217399995,62.514390367000125],[-92.56672115799995,62.50263092700013],[-92.55923417899987,62.492783921000026],[-92.54308020699992,62.49774811400009],[-92.5275772779999,62.50767649900016],[-92.52204342399997,62.5131696640001],[-92.50365149599995,62.51654694200012],[-92.50064042899993,62.513128973000036],[-92.50401770699995,62.499579169000135],[-92.50999915299988,62.48997630400007],[-92.51797441299992,62.487534898000135],[-92.52940833199997,62.48582591400013],[-92.54564368399991,62.47837962400014],[-92.53652910099993,62.47260163],[-92.53343665299994,62.46861399900003],[-92.53465735599985,62.46478913],[-92.53880774599989,62.459173895],[-92.53408769399991,62.45246002800014],[-92.53282630099989,62.44953034100002],[-92.53197180899987,62.44489166900012],[-92.54918372299991,62.44798411699998],[-92.59341386599995,62.46478913],[-92.6140844389999,62.46784088700009],[-92.67284094999988,62.46478913],[-92.70494544199994,62.468817450000174],[-92.71833248599987,62.464667059000035],[-92.72374426999991,62.448309637000115],[-92.72533118399994,62.431463934000114],[-92.72166907499988,62.423285223],[-92.71007239499997,62.41075267100011],[-92.71739661399997,62.397406317],[-92.71178137899996,62.38788483299999],[-92.69859778599991,62.38279857],[-92.68276933499988,62.38287995000014],[-92.68276933499988,62.376654364],[-92.70083574099989,62.374375718000024],[-92.73314368399991,62.364610093000074],[-92.7513728509999,62.362372137000094],[-92.79092363199996,62.36273834800012],[-92.80996660099996,62.36078522300006],[-92.82738196499992,62.35553620000009],[-92.80516516799986,62.34943268400009],[-92.73741614499993,62.34931061400012],[-92.66006425699993,62.33104075700006],[-92.63499915299994,62.3282331400001],[-92.61978105399996,62.32286204600014],[-92.60220292899993,62.31114329600013],[-92.5897517569999,62.29942454600016],[-92.59032141799989,62.29405345300002],[-92.59390214799996,62.29120514500006],[-92.59732011599996,62.28449127800003],[-92.59984290299988,62.276434637000094],[-92.60090084499993,62.26988353100002],[-92.63560950399989,62.259955145],[-92.62507076699984,62.25189850500008],[-92.60220292899993,62.24457428600006],[-92.59341386599995,62.23944733300005],[-92.58702551999994,62.22955963700004],[-92.58153235599991,62.20921458500005],[-92.57664954299995,62.20123932500009],[-92.55207271999991,62.186835028000026],[-92.49665279899995,62.169989325000024],[-92.47736568899992,62.15753815300012],[-92.47052975199989,62.15009186400011],[-92.49665279899995,62.15363190300011],[-92.55597896999993,62.17145416900008],[-92.59666907499991,62.16095612200011],[-92.61343339799993,62.172919012000065],[-92.62295488199993,62.19318268400015],[-92.62132727799991,62.211533921000104],[-92.69025631399987,62.23200104400017],[-92.68858801999994,62.23590729400018],[-92.68765214799996,62.238877671000076],[-92.68626868399987,62.241766669000114],[-92.68276933499988,62.24567291900011],[-92.6887914699999,62.25519440300012],[-92.69810950399994,62.26666901200014],[-92.70921790299987,62.276434637000094],[-92.72704016799993,62.282334703000046],[-92.73875891799992,62.291449286000116],[-92.74425208199995,62.29405345300002],[-92.75389563699991,62.29389069200014],[-92.76927649599986,62.28778717700005],[-92.77904212099992,62.286607164000046],[-92.79442298099994,62.28925202000011],[-92.8135473299999,62.29511139500006],[-92.83145097599987,62.30280182500008],[-92.84357662699998,62.31114329600013],[-92.86091061099985,62.31724681200013],[-92.90855872299993,62.31224192900011],[-92.94237219999991,62.32453034100014],[-93.13101152299996,62.34434642100016],[-93.25202389199984,62.36981842700008],[-93.18594316299992,62.346543687000164],[-93.14940344999991,62.33832428600006],[-93.07848059799991,62.33055247600008],[-92.98379472599993,62.29405345300002],[-92.9531957669999,62.28815338700018],[-92.91930091099994,62.286607164000046],[-92.9151098299999,62.28375885600009],[-92.91551673099991,62.277329819999984],[-92.91685950399992,62.270575262000065],[-92.9155981109999,62.26679108300011],[-92.90709387899997,62.26544830900003],[-92.87828528599994,62.26679108300011],[-92.84837805899986,62.263739325000024],[-92.81261145699995,62.25470612200002],[-92.78132076699987,62.239569403000026],[-92.76471920499992,62.21836985900004],[-92.78477942599997,62.214667059000185],[-92.7903539699999,62.20237864800014],[-92.79328365799992,62.18793366100009],[-92.80561275899996,62.178086656000126],[-92.83141028599988,62.178412177000084],[-92.84634355399993,62.18016185100007],[-92.86095130099994,62.18419017100015],[-92.86733964799987,62.188666083],[-92.87218176999994,62.19464752800012],[-92.87840735599991,62.20062897300012],[-92.88890540299987,62.204697984000106],[-92.90184485599988,62.204697984000106],[-92.94347083199995,62.197821356000176],[-92.97923743399988,62.20368073100003],[-92.99681555899991,62.20392487200017],[-93.01178951699984,62.197821356000176],[-92.97081458199992,62.18419017100015],[-92.99217688699989,62.17418040600016],[-93.01813717399997,62.17304108300011],[-93.07355709499984,62.17804596600014],[-93.08283443899988,62.17572663],[-93.09581458199987,62.16596100500006],[-93.10798092399997,62.16376373900005],[-93.11522376199991,62.159735419000086],[-93.12083899599992,62.15037669500008],[-93.12848873599982,62.129584052000084],[-93.08381100199998,62.11741771],[-93.06529700399994,62.11692942900011],[-93.01349850199995,62.12706126500016],[-92.98436438699989,62.12754954600014],[-92.95506751199989,62.124090887000065],[-92.92979895699992,62.116563218000074],[-92.94066321499992,62.10162995000014],[-92.96153723899997,62.08580149900011],[-92.98525956899987,62.07322825700011],[-93.00462805899991,62.06818268400017],[-93.04515540299991,62.07990143400018],[-93.06590735599991,62.08136627800003],[-93.08067786399991,62.06818268400017],[-93.07017981699993,62.06610748900006],[-93.06387285099989,62.062323309000035],[-93.06236731699994,62.056260484000134],[-93.06639563699991,62.04767487200002],[-93.07575436099984,62.04100169499999],[-93.08861243399986,62.03900788000014],[-93.1148168609999,62.04022858300005],[-93.10732988199992,62.04022858300005],[-93.12702389199987,62.04987213700012],[-93.13817298099987,62.053778387000115],[-93.14830481699994,62.05390045799999],[-93.16148841099991,62.04759349200005],[-93.15949459499987,62.04181549700009],[-93.15176347599996,62.03514232000013],[-93.14830481699994,62.026556708000115],[-93.15168209499987,62.010687567],[-93.15819251199986,61.99559153899998],[-93.17015540299988,61.985581773000106],[-93.18993079299992,61.98497142100013],[-93.20689856699988,61.99359772300015],[-93.24449622299989,62.03400299700008],[-93.2608536449999,62.04246653900004],[-93.28473873599987,62.04966868700016],[-93.31086178299992,62.05402252800015],[-93.33385169199991,62.05390045799999],[-93.32225501199989,62.044989325000145],[-93.30988521999987,62.03827545800003],[-93.29930579299992,62.03086985900002],[-93.29295813699989,62.01972077],[-93.41649329299989,62.03400299700008],[-93.41649329299989,62.026556708000115],[-93.2171931629999,61.95831940300011],[-93.2171931629999,61.951483466000084],[-93.36729895699997,61.954901434000085],[-93.38853919199994,61.951483466000084],[-93.3376358709999,61.93268463700003],[-93.32306881399988,61.930365302000084],[-93.30988521999987,61.92613353100016],[-93.29954993399994,61.916449286],[-93.29002844999985,61.90534088700015],[-93.27928626199994,61.896836656000126],[-93.3101293609999,61.893500067000026],[-93.33674068899984,61.89655182500011],[-93.49575761599993,61.93976471600012],[-93.59748287699989,61.95384349200005],[-93.61701412699998,61.95233795799999],[-93.59430904899992,61.93406810100011],[-93.51366126199989,61.90232982000008],[-93.49156653599991,61.889390367000075],[-93.58332271999986,61.88682689000014],[-93.60423743399994,61.87974681200011],[-93.61359615799995,61.86102936400011],[-93.59780839799993,61.85419342700011],[-93.50206458199997,61.85582103100013],[-93.49152584499993,61.845648505],[-93.48131262899996,61.838568427000105],[-93.46792558499988,61.835394598000065],[-93.34752356699994,61.821112372000144],[-93.36717688699989,61.814439195000105],[-93.39049231699991,61.812933661000066],[-93.43691972599994,61.81492747599999],[-93.43691972599994,61.80744049700002],[-93.42296301999988,61.803656317],[-93.39745032499988,61.78998444200006],[-93.38512122299994,61.78697337400016],[-93.33018958199993,61.78697337400016],[-93.2871801419999,61.79413483300002],[-93.27183997299994,61.79315827000011],[-93.25153561099987,61.78803131700012],[-93.2462458979999,61.78375885600012],[-93.25816809799991,61.766546942],[-93.26455644399992,61.74445221600011],[-93.27139238199996,61.73631419499999],[-93.28237870999993,61.74225495000011],[-93.29149329299992,61.74909088700004],[-93.30288652299987,61.751898505000085],[-93.36685136599996,61.75336334800015],[-93.40217037699989,61.759711005000085],[-93.43618730399993,61.77191803600014],[-93.4535212879999,61.77350495000017],[-93.47175045499989,61.766546942],[-93.45250403599992,61.757066147999986],[-93.43838456899991,61.74335358300005],[-93.42186438699994,61.73102448100012],[-93.39537512899997,61.72553131700008],[-93.3347875639999,61.73456452],[-93.31338456899994,61.732367255],[-93.44310462099992,61.690781968000024],[-93.46125240799992,61.68744538],[-93.4997452459999,61.68622467700008],[-93.5188695949999,61.68329498900005],[-93.69017493399994,61.615668036000024],[-93.71572831899994,61.601629950000145],[-93.75959225199998,61.56846751500005],[-93.78575598899994,61.55418528900004],[-93.79507402299987,61.555039781000126],[-93.80675208199997,61.56098053600006],[-93.81826738199989,61.568589585000026],[-93.83356686099987,61.57469310099999],[-93.83804277299993,61.561712958],[-93.87755286399987,61.52057526200012],[-93.89561926999991,61.50580475500015],[-93.9059138659999,61.50067780200011],[-93.92658443899984,61.49595774900011],[-93.93659420499992,61.49152252800003],[-93.98497473899991,61.457993882],[-93.9728897779999,61.45441315300003],[-93.96580969999985,61.44940827000009],[-93.96495520699995,61.44354889500015],[-93.97134355399987,61.43695709800006],[-93.96589107999993,61.42731354400008],[-93.95811926999994,61.419134833],[-93.94823157499994,61.41319407800015],[-93.93659420499992,61.410223700000145],[-93.96108964799996,61.40338776200003],[-93.97134355399987,61.40277741100009],[-93.92609615799995,61.39073314000016],[-93.90929114499993,61.389105536000145],[-93.89500891799995,61.390448309000035],[-93.88255774599992,61.39288971600017],[-93.87059485599988,61.392767645],[-93.85777747299993,61.38605377800015],[-93.82762610599993,61.36273834800014],[-93.82233639199987,61.34992096600011],[-93.84097245999993,61.3412946640001],[-93.83649654899997,61.33197663000005],[-93.83356686099987,61.32831452],[-93.85850989499988,61.317857164000124],[-93.92174231699994,61.303290106000084],[-93.95083574099993,61.30097077000012],[-93.99266516799993,61.30573151200004],[-94.07461503799988,61.326117255000106],[-94.11473548099988,61.32831452],[-94.09581458199997,61.311102606000084],[-94.05223548099985,61.29328034100002],[-94.03282630099994,61.27985260600003],[-94.02936764199987,61.271836656000076],[-94.02554277299993,61.25018952000009],[-94.02285722599996,61.24571360900001],[-94.0140274729999,61.243475653000054],[-94.00682532499988,61.237779039000074],[-94.0015356109999,61.23090241100005],[-93.99864661399995,61.224595445000105],[-94.00694739499994,61.22471751500008],[-94.02660071499989,61.21845123900011],[-94.01707923099988,61.200913804],[-94.04377193899992,61.18891022300006],[-94.08047441299993,61.177923895000035],[-94.10106360599985,61.16319407800002],[-94.04027258999992,61.16319407800002],[-94.05858313699989,61.144029039000074],[-94.06639563699989,61.13353099199999],[-94.06753495999989,61.12217845300002],[-94.05540930899991,61.10797760600009],[-94.03766842399992,61.110093492000104],[-94.01764889199985,61.11644114800005],[-93.99864661399995,61.114732164000046],[-93.98623613199993,61.1006533870001],[-93.99640865799998,61.09019603100001],[-94.01622473899988,61.08368561400012],[-94.03282630099994,61.081244208],[-94.0711156889999,61.08152903900013],[-94.08820553299991,61.079697984000134],[-94.10850989499994,61.07379791900011],[-94.11880449099992,61.07249583500011],[-94.12694251199989,61.06712474200004],[-94.12901770699989,61.06012604400017],[-94.14777584499984,61.04881419499999],[-94.16047115799992,61.033758856000176],[-94.1677139959999,61.01573314000013],[-94.16999264199988,60.995591539000095],[-94.17833411399995,60.98371002800015],[-94.21816972599996,60.94684479400008],[-94.23204505099994,60.93040599200002],[-94.23639889199984,60.91950104400002],[-94.23851477799985,60.9108747420001],[-94.24233964799996,60.90338776200006],[-94.25186113199996,60.895697333000115],[-94.26622473899992,60.890570380000106],[-94.29588782499988,60.88641998900008],[-94.32030188699991,60.87291087400011],[-94.34154212099992,60.86517975499999],[-94.35155188699989,60.85809967700011],[-94.35431881399987,60.85374583500013],[-94.35521399599995,60.84882233300008],[-94.35488847599993,60.83795807500008],[-94.35777747299994,60.83445872600003],[-94.37120520699995,60.8296979840001],[-94.37539628799996,60.827378648000135],[-94.40143795499993,60.78587474200004],[-94.40953528599995,60.76410553600009],[-94.40648352799988,60.74860260600015],[-94.39736894399987,60.727240302000105],[-94.40941321499989,60.709662177000084],[-94.47191321499993,60.668280341000134],[-94.48460852799991,60.65745677300007],[-94.49209550699996,60.649237372000144],[-94.49486243399991,60.63739655200002],[-94.49087480399992,60.63035716400013],[-94.48835201699993,60.62339915600014],[-94.49522864499994,60.611680406000154],[-94.5135798819999,60.59442780200005],[-94.52074133999994,60.584580796000026],[-94.51634680899986,60.58038971600008],[-94.50593014199985,60.575547593000024],[-94.50763912699995,60.5648054060001],[-94.51455644399996,60.55345286700013],[-94.52000891799992,60.54682038000006],[-94.57164466099994,60.5276960310001],[-94.68834387899994,60.55284251500016],[-94.73851477799994,60.539374091000084],[-94.71556555899994,60.53095123900014],[-94.66535396999987,60.521673895000085],[-94.64232337099989,60.51207103100002],[-94.66779537699989,60.494330145000035],[-94.76170813699989,60.50519440300008],[-94.80060787699995,60.49839915600007],[-94.70274817599991,60.48541901200017],[-94.68016516799995,60.474554755],[-94.62987219999988,60.419907945000126],[-94.62767493399987,60.41168854400005],[-94.61782792899994,60.398301499000056],[-94.61558997299987,60.39227936400012],[-94.61880449099993,60.380560614000146],[-94.6328832669999,60.361151434000035],[-94.63609778599994,60.35130442900011],[-94.64346269399994,60.33698151200004],[-94.6758927069999,60.308701890000165],[-94.6876521479999,60.287461656000076],[-94.7118220689999,60.26569245000003],[-94.71092688699991,60.25438060100005],[-94.7049861319999,60.24876536700005],[-94.6971329419999,60.24473704600017],[-94.6907445949999,60.238348700000145],[-94.68272864499994,60.21690501500002],[-94.68163001199991,60.197211005000085],[-94.6867569649999,60.17914459800015],[-94.69758053299992,60.162665106000155],[-94.70270748599992,60.15900299700011],[-94.71446692599991,60.1539167340001],[-94.71800696499989,60.149603583],[-94.71955318899992,60.14142487200009],[-94.71739661399991,60.138413804],[-94.71397864499991,60.13585032800007],[-94.70954342399995,60.12225983300011],[-94.70555579299986,60.11469147300007],[-94.70287024599989,60.10565827000006],[-94.70433508999994,60.09434642100008],[-94.71857662699995,60.07904694200012],[-94.75987708199989,60.068467515000165],[-94.77330481699988,60.05280182500008],[-94.76903235599988,60.051621812000164],[-94.75902258999989,60.04657623900011],[-94.76439368399994,60.041489976000115],[-94.76773027299986,60.035956122000094],[-94.77025305899988,60.030381578000075],[-94.77330481699988,60.02545807500003],[-94.75902258999989,60.019273179000045],[-94.7818497389999,60.016831773000106],[-94.8008520169999,60.01048411699998],[-94.80581620999996,60.00153229400014],[-94.80313066299988,60.00006745000008],[-94.78693600199992,59.99131907800002],[-94.80101477799988,59.979925848000065],[-94.81700598899997,59.96287669500011],[-94.82135982999993,59.948106187000015],[-94.80060787699995,59.94354889500009],[-94.80943762899992,59.92804596600017],[-94.81427975199989,59.92304108300011],[-94.80972245999996,59.91950104400015],[-94.80524654899989,59.91282786699999],[-94.80060787699995,59.909409897999986],[-94.80528723899988,59.88495514500011],[-94.77940833199997,59.838690497000144],[-94.7931208979999,59.82001373900005],[-94.77550208199997,59.79804108300006],[-94.77330481699988,59.789618231000084],[-94.77538001199991,59.777818101000136],[-94.7847794259999,59.757757880000085],[-94.78693600199992,59.74835846600014],[-94.7896622389999,59.74192942900014],[-94.80284583199995,59.725816148000085],[-94.8074438139999,59.71759674700017],[-94.7962133449999,59.66791413000006],[-94.79849199099996,59.65936920800015],[-94.8108617829999,59.655503648000135],[-94.82188880099994,59.65033600500014],[-94.81944739499991,59.63865794500013],[-94.8074438139999,59.61798737200002],[-94.80785071499989,59.61066315300012],[-94.8074438139999,59.60492584800015],[-94.80337480399993,59.598089911000116],[-94.7931208979999,59.587266343000024],[-94.78465735599985,59.58246491100014],[-94.77538001199991,59.58006419500002],[-94.76642818899987,59.57611725500011],[-94.75902258999989,59.566758531000076],[-94.78123938699994,59.56220123900012],[-94.78807532499987,59.550401109000155],[-94.78892981699997,59.53648509300008],[-94.7931208979999,59.525824286000145],[-94.7866918609999,59.515936591000056],[-94.77989661399997,59.51386139500012],[-94.77220618399994,59.51337311400012],[-94.7627660799999,59.50812409100015],[-94.75715084499993,59.50177643400012],[-94.7559301419999,59.49738190300003],[-94.75548255099991,59.492539781000126],[-94.75218665299988,59.484808661000145],[-94.75560462099989,59.483587958000115],[-94.75885982999992,59.47589752800009],[-94.75792395699995,59.46723053600003],[-94.74909420499998,59.46312083500005],[-94.74132239499988,59.46124909100009],[-94.73428300699989,59.456488348],[-94.72850501199986,59.45026276200004],[-94.72423255099994,59.44383372600011],[-94.73298092399992,59.43598053600014],[-94.73468990799992,59.429510809000035],[-94.72996985599991,59.40253327000009],[-94.72590084499987,59.39899323100009],[-94.7213435539999,59.396185614000146],[-94.71800696499989,59.388617255],[-94.71642005099994,59.37535228100007],[-94.71841386599988,59.36668528899998],[-94.72541256399987,59.35875071800002],[-94.73851477799994,59.34772370000014],[-94.72276770699996,59.342271226000136],[-94.7032771479999,59.34784577000011],[-94.68342037699998,59.35667552299999],[-94.66649329299992,59.3613141950001],[-94.66014563699989,59.35875071800002],[-94.67096920499995,59.353257554],[-94.68553626199989,59.34845612200008],[-94.6907445949999,59.34772370000014],[-94.70763098899988,59.332017320000105],[-94.71703040299991,59.326849677],[-94.73167883999992,59.32652415600007],[-94.72687740799992,59.316717841000134],[-94.72423255099994,59.312933661000116],[-94.76032467399989,59.30475495000011],[-94.77220618399994,59.29804108300006],[-94.76646887899997,59.285589911000145],[-94.77554277299986,59.273627020000035],[-94.78038489499994,59.26862213700015],[-94.78693600199992,59.265082098000086],[-94.77700761599992,59.25922272300014],[-94.77428137899994,59.252630927000084],[-94.77782141799995,59.245428778000026],[-94.78693600199992,59.23786041900008],[-94.7796931629999,59.230902411],[-94.7775772779999,59.222886460000055],[-94.77944902299996,59.20368073100009],[-94.7814021479999,59.20347728100014],[-94.78600012899994,59.20018138200011],[-94.79067949099996,59.195054429],[-94.7931208979999,59.18939850500003],[-94.79027258999986,59.18451569200011],[-94.77660071499992,59.174139716000056],[-94.77330481699988,59.16889069200015],[-94.77489173099991,59.16156647300015],[-94.78380286399994,59.14472077000015],[-94.78693600199992,59.13475169500004],[-94.79116777299996,59.10004303600009],[-94.7931208979999,59.09381745000003],[-94.8424373039999,59.08112213700015],[-94.90778561099987,59.086981512000094],[-94.96727454299989,59.08592357000005],[-94.99917558499989,59.05280182500012],[-94.9681697259999,59.061509507000025],[-94.8164770169999,59.06806061400009],[-94.80402584499987,59.063055731000055],[-94.80418860599994,59.059515692000055],[-94.80719967399995,59.04462311400004],[-94.8074438139999,59.0385602890001],[-94.80479895699989,59.03278229400014],[-94.80211341099991,59.029608466000084],[-94.80207271999991,59.02574290600007],[-94.8074438139999,59.018133856000034],[-94.76423092399997,59.01500071800016],[-94.72370357999995,59.00421784100014],[-94.69399980399993,58.98346588700014],[-94.68325761599992,58.95038483300011],[-94.68659420499995,58.931097723000086],[-94.6940811839999,58.91693756700006],[-94.71800696499989,58.88837311400007],[-94.73102779899997,58.88092682500008],[-94.73509680899991,58.877793687000015],[-94.73717200399994,58.87323639500007],[-94.7317602199999,58.866563218000024],[-94.73167883999992,58.861029364],[-94.73721269399994,58.84784577000014],[-94.74596106699991,58.83311595300016],[-94.68252519399991,58.87250397300015],[-94.65001380099991,58.884995835000055],[-94.6081436839999,58.881537177000055],[-94.54515540299988,58.85602448100015],[-94.51195227799988,58.83832428600006],[-94.48525956899994,58.820054429],[-94.46930904899993,58.79734935100013],[-94.4521378249999,58.74310944200009],[-94.43687903599992,58.72382233300005],[-94.39948482999989,58.71246979400017],[-94.36245683499995,58.71893952000009],[-94.29352779899992,58.744370835],[-94.29605058499992,58.7509219420001],[-94.29751542899989,58.753648179000045],[-94.30028235599985,58.75739166900008],[-94.28819739499994,58.765244859000155],[-94.27594967399997,58.78314850500011],[-94.2655330069999,58.792181708000115],[-94.25226803299995,58.79816315300015],[-94.21963456899991,58.80516185100013],[-94.2040909499999,58.806463934000035],[-94.20840410099991,58.7983259140001],[-94.21467037699995,58.792222398000106],[-94.22264563699991,58.788031317],[-94.23204505099994,58.785345770000035],[-94.22411048099987,58.774725653000175],[-94.22720292899996,58.76398346600015],[-94.23428300699993,58.75108470300013],[-94.23827063699991,58.73411692900007],[-94.23330644399994,58.71942780200008],[-94.22223873599992,58.71153392100008],[-94.21056067599991,58.70563385600014],[-94.2040909499999,58.69660065300014],[-94.20799719999991,58.68378327000012],[-94.22008216099991,58.6703962260001],[-94.23525956899991,58.65985748900006],[-94.26378333199989,58.649237372000115],[-94.27643795499998,58.634344794000135],[-94.29694576699991,58.60374583500013],[-94.30850175699996,58.57514069200006],[-94.28770911399997,58.52081940300003],[-94.30064856699997,58.48126862200009],[-94.28799394399991,58.44928620000009],[-94.28661048099991,58.43650950700014],[-94.2978409499999,58.421006578000124],[-94.32632402299993,58.39935944200015],[-94.33438066299996,58.38141510600009],[-94.33433997299997,58.376044012000044],[-94.32945716099991,58.35883209800012],[-94.32823645699997,58.35020579600002],[-94.33031165299991,58.33690013199999],[-94.33922278599994,58.31403229400008],[-94.34459387899989,58.28681061400008],[-94.3614802729999,58.243394273000135],[-94.36856035099994,58.23041413000014],[-94.36172441299993,58.22300853100013],[-94.33910071499987,58.26593659100002],[-94.32237708199993,58.28876373900012],[-94.30337480399992,58.29869212400005],[-94.3031306629999,58.30451080900009],[-94.28661048099991,58.33966705900014],[-94.27700761599993,58.34601471600008],[-94.26524817599994,58.350775458000086],[-94.25894120999993,58.356919664000074],[-94.2655330069999,58.36762116100009],[-94.23794511599988,58.39166901200012],[-94.23204505099994,58.401109117000125],[-94.23094641799989,58.41034577],[-94.23265540299991,58.437119859000106],[-94.23517818899991,58.44269440300011],[-94.2413630849999,58.45115794500004],[-94.23827063699991,58.51471588700004],[-94.23468990799992,58.535834052000055],[-94.23517818899991,58.54515208499999],[-94.24168860599991,58.55573151200014],[-94.24486243399988,58.56391022300006],[-94.24665279899993,58.57713450699999],[-94.24673417899993,58.59080638200014],[-94.24502519399994,58.60032786700013],[-94.22769120999996,58.62339915600011],[-94.18028723899991,58.66107819200006],[-94.16315670499998,58.68292877800011],[-94.16934160099996,58.69367096600002],[-94.17100989499997,58.709784247000094],[-94.16612708199989,58.724310614000146],[-94.15257727799994,58.73069896000006],[-94.14289303299998,58.73680247600006],[-94.15322831899988,58.750962632000075],[-94.1695450509999,58.76707591400005],[-94.1773982409999,58.77912018400015],[-94.14557857999993,58.76976146000011],[-94.11676998599992,58.76805247600011],[-94.05671139199991,58.77167389500009],[-93.88194739499997,58.75739166900008],[-93.86563066299993,58.75804271000013],[-93.85484778599992,58.76190827000012],[-93.83421790299991,58.775376695000105],[-93.81867428299992,58.779852606000176],[-93.80431067599994,58.778021552000105],[-93.79027258999987,58.77391185100005],[-93.77578691299992,58.77167389500009],[-93.75999915299988,58.774603583],[-93.73302161399994,58.788072007],[-93.71743730399993,58.792181708000115],[-93.69054114499997,58.79035065300014],[-93.57274329299992,58.765000718000024],[-93.55577551999994,58.76325104400002],[-93.53258216099991,58.77142975500014],[-93.49600175699986,58.77350495000014],[-93.48473059799989,58.77167389500009],[-93.4734594389999,58.755235093000074],[-93.47191321499986,58.734930731000176],[-93.4647110669999,58.717515367000104],[-93.4363500639999,58.710191148000106],[-93.42100989499993,58.70819733300006],[-93.40908769399991,58.70506419499999],[-93.39801998599987,58.70526764500015],[-93.38512122299994,58.71332428600008],[-93.35728919199988,58.74335358300011],[-93.34752356699994,58.75116608300011],[-93.32648678299991,58.7599551450001],[-93.23444576699993,58.76740143400014],[-93.21125240799996,58.766546942000055],[-93.1895238919999,58.759711005000135],[-93.1700333319999,58.744370835],[-93.15575110599991,58.744370835],[-93.15347245999996,58.72601959800015],[-93.13410396999984,58.683050848000086],[-93.13182532499988,58.67234935100007],[-93.13931230399992,58.65851471600016],[-93.14073645699989,58.63975657800002],[-93.13532467399995,58.60032786700013],[-93.13198808499993,58.590887762000115],[-93.12336178299992,58.57391998900014],[-93.12165279899992,58.56248607],[-93.12743079299989,58.538641669000114],[-93.12848873599982,58.528387762000186],[-93.1234431629999,58.51288483300006],[-93.09801184799989,58.476263739000146],[-93.05077063699991,58.4223493510001],[-93.04198157499985,58.38593170800014],[-93.03258216099994,58.36701080900004],[-93.02135169199994,58.3506940780001],[-92.98403886599996,58.31305573100012],[-92.97447669199997,58.29694245000006],[-92.97081458199992,58.27484772300014],[-92.96296139199984,58.25987376500002],[-92.93468176999988,58.23326243700007],[-92.93724524599988,58.22300853100013],[-92.92105058499993,58.20380280199999],[-92.91270911399995,58.19639720300002],[-92.90192623599987,58.1894391950001],[-92.87425696499989,58.178452867000075],[-92.86168372299997,58.17182038],[-92.85411536399994,58.162095445000055],[-92.86831620999992,58.15355052300013],[-92.86607825399994,58.14594147300009],[-92.85594641799992,58.13776276200018],[-92.84666907499985,58.12738678600009],[-92.8403214179999,58.101507880000085],[-92.83507239499994,58.09080638200005],[-92.8236384759999,58.08641185100008],[-92.80776933499996,58.07575104400003],[-92.80386308499996,58.0504011090001],[-92.80573482999992,57.9976667340001],[-92.76610266799989,57.91099681200017],[-92.7569880849999,57.865912177],[-92.78579667899993,57.83942291900002],[-92.77196204299995,57.83478424700008],[-92.74331620999986,57.83209870000012],[-92.73058020699992,57.82575104400008],[-92.72362219999994,57.81627024900008],[-92.71483313699984,57.79291413],[-92.69469153599994,57.766180731000176],[-92.66909745999993,57.71649811400007],[-92.64500891799992,57.69599030200011],[-92.61595618399994,57.67125071800014],[-92.60773678299995,57.65843333500011],[-92.60118567599997,57.64166901200018],[-92.55923417899987,57.58612702000015],[-92.55833899599989,57.57648346600017],[-92.56135006399988,57.553656317000055],[-92.55923417899987,57.54454173400016],[-92.55020097599996,57.53827545800011],[-92.51960201699984,57.527167059000185],[-92.5077205069999,57.520982164000095],[-92.50202389199993,57.513983466000056],[-92.49665279899995,57.50401439000014],[-92.4925837879999,57.493882554],[-92.48729407499991,57.47483958499999],[-92.47817949099993,57.46649811400012],[-92.46703040299991,57.458726304000116],[-92.45685787699995,57.44896067899999],[-92.45083574099996,57.43260325700008],[-92.44253495999988,57.38764069200008],[-92.42357337099986,57.35443756700006],[-92.42235266799995,57.33417389500014],[-92.4289444649999,57.29132721600017],[-92.43952389199987,57.25328196800017],[-92.45677649599989,57.222967841000084],[-92.54287675699996,57.10578034100011],[-92.5971573559999,57.0483259140001],[-92.66576087099992,57.00055573100015],[-92.68932044199997,56.97081126500014],[-92.70490475199995,56.95538971600011],[-92.72069251199991,56.948716539000046],[-92.7617081369999,56.94358958500014],[-92.84264075399989,56.920518296000076],[-92.88198808499988,56.91453685100008],[-92.85977128799992,56.907538153000175],[-92.72581946499992,56.92743561400009],[-92.67658443899992,56.941880601000136],[-92.53864498599982,57.01890696800011],[-92.49095618399988,57.03807200700008],[-92.2787166009999,57.06537506700006],[-92.24242102799988,57.07469310100002],[-92.23033606699988,57.072821356000034],[-92.21812903599991,57.062811591000134],[-92.22329667899993,57.05390045800011],[-92.2371720039999,57.04743073100012],[-92.25108801999988,57.04490794499999],[-92.27428137899992,57.037176825000174],[-92.34019934799997,56.98285553600006],[-92.3548070949999,56.97675202000006],[-92.37132727799985,56.97247955900015],[-92.40566972599989,56.96918366100011],[-92.42398027299986,56.96544017100008],[-92.45433508999994,56.947699286],[-92.47052975199989,56.941880601000136],[-92.47052975199989,56.9350446640001],[-92.41820227799991,56.94953034100017],[-92.33739173099991,56.95954010600015],[-92.31371008999989,56.96959056200002],[-92.22350012899997,57.0214704450001],[-92.11245683499996,57.044134833000086],[-91.96165930899988,57.060248114000146],[-91.7665909499999,57.11469147300015],[-91.48497473899988,57.16941966399999],[-91.21019446499989,57.229071356000176],[-91.03111731699991,57.26463450700014],[-90.8536677729999,57.26109446800017],[-90.68911699099996,57.229925848000065],[-90.60997473899987,57.233221747000115],[-90.58551998599992,57.229925848000065],[-90.51520748599992,57.20164622600011],[-90.48989824099995,57.19574616100009],[-90.43521074099993,57.192613023000106],[-90.40929114499991,57.18748607000002],[-90.38752193899987,57.174627997000165],[-90.38060462099986,57.154608466000106],[-90.31517493399991,57.14362213700006],[-90.26130123599995,57.11579010600009],[-90.16836503799988,57.09271881700012],[-90.15929114499997,57.082017320000105],[-90.15469316299993,57.079046942],[-90.07225501199991,57.060858466000106],[-90.05793209499984,57.05516185100011],[-89.98778235599988,57.01373932500012],[-89.96296139199993,57.003973700000145],[-89.8727107409999,56.99742259300008],[-89.82701575399997,56.97601959800012],[-89.57469641799986,56.94481028900007],[-89.51276607999988,56.92706940300015],[-89.48253333199989,56.92198314000014],[-89.39378821499994,56.928168036000024],[-89.36701412699992,56.922715562000164],[-89.3157445949999,56.90424225500014],[-89.26561438699987,56.896918036000145],[-89.18834387899996,56.872992255000085],[-89.10728919199994,56.86994049700009],[-89.08836829299992,56.86334870000012],[-89.07506262899989,56.85407135600014],[-89.05614173099988,56.84552643400003],[-89.03624426999997,56.84251536700013],[-89.02013098899991,56.84967682500017],[-89.00348873599995,56.853583075000174],[-88.94697018099991,56.85321686400006],[-88.92076575399992,56.853094794000086],[-88.90168209499993,56.85919830900014],[-88.89118404899993,56.861273505],[-88.87922115799991,56.85993073100009],[-88.87393144399994,56.85557689000011],[-88.86782792899996,56.842230536],[-88.86278235599991,56.839463609000134],[-88.84308834499987,56.838690497000115],[-88.82335364499994,56.83515045800014],[-88.81729081899994,56.82689036700005],[-88.83824622299991,56.812201239000146],[-88.80382239499997,56.79100169500005],[-88.72496497299991,56.75511302300005],[-88.6874080069999,56.72960032800015],[-88.66095943899992,56.704820054],[-88.64395097599996,56.693426825000024],[-88.60741126199991,56.68528880400011],[-88.54405676999988,56.66132233300006],[-88.52375240799998,56.66168854400017],[-88.49551347599993,56.64838288000006],[-88.46666419199988,56.62864817900011],[-88.43659420499995,56.60313548400005],[-88.41234290299988,56.58844635600003],[-88.4031469389999,56.58563873900009],[-88.38719641799989,56.58348216399999],[-88.37877356699994,56.578314520000056],[-88.37319902299991,56.57160065300003],[-88.36587480399993,56.56513092700011],[-88.31135006399984,56.538031317],[-88.10301673099985,56.477240302000055],[-88.04328365799998,56.468247789000046],[-87.9896541009999,56.44944896],[-87.9795629549999,56.44285716400013],[-87.97549394399995,56.43138255400007],[-87.97207597599996,56.42767975500014],[-87.9537654289999,56.39378489799999],[-87.93887285099991,56.379990953000075],[-87.85065670499995,56.322821356000084],[-87.71788489499997,56.19456614799999],[-87.71507727799994,56.18817780200005],[-87.7135310539999,56.17405833500011],[-87.70905514199993,56.16002024900017],[-87.69713294199988,56.15363190300015],[-87.67341061099995,56.14557526200012],[-87.65103105399996,56.12730540600013],[-87.62230383999989,56.09556712400008],[-87.60806230399989,56.08763255400014],[-87.59585527299991,56.08494700700005],[-87.58922278599994,56.07982005400014],[-87.59129798099988,56.06480540600001],[-87.59654700399994,56.05829498900012],[-87.62604732999992,56.030707098],[-87.62165279899995,56.017645575000024],[-87.61856035099996,56.002752997000165],[-87.60338294199997,56.017320054000024],[-87.59341386599988,56.03339264500009],[-87.57900956899991,56.04621002800011],[-87.55036373599995,56.05121491100006],[-87.52599036399988,56.049790757],[-87.50080318899992,56.04486725500011],[-87.48477128799993,56.034613348],[-87.48827063699991,56.017035223000065],[-87.4632869129999,56.010809637000094],[-87.38243567599991,56.010199286000145],[-87.35513261599993,56.00360748900009],[-87.35016842399996,55.98741282800002],[-87.36534583199995,55.948187567],[-87.31627356699991,55.96234772300012],[-87.05687415299985,55.92829010600009],[-86.98009192599991,55.93357982],[-86.95384680899988,55.92829010600009],[-86.95714270699992,55.92381419500005],[-86.95881100199993,55.920396226000136],[-86.96149654899992,55.9174665390001],[-86.96812903599988,55.91461823100015],[-86.95372473899991,55.908555406000076],[-86.89549719999991,55.91461823100015],[-86.87490800699996,55.91132233300011],[-86.81725012899992,55.88670482000013],[-86.77818762899993,55.87754954600013],[-86.73843339799993,55.87372467700013],[-86.71833248599988,55.86900462400002],[-86.68370520699992,55.85167064000014],[-86.58173601099992,55.817034064],[-86.37284432399991,55.76218817100009],[-86.28934617199984,55.72564964800016],[-86.04656974099991,55.68377732000012],[-85.9709489469999,55.67519682000001],[-85.90427336299986,55.66204948700012],[-85.87326853699994,55.64595800299999],[-85.8315879459999,55.638308228000064],[-85.7988318069999,55.626134537],[-85.77009677999983,55.61646709200009],[-85.73126682999995,55.608871620000016],[-85.6964427459999,55.60378366000013],[-85.68261343799992,55.58658418700015],[-85.64908450699994,55.56875222000009],[-85.61127939999994,55.55156621499999],[-85.58061292199991,55.53380118600013],[-85.5565694229999,55.50666323500015],[-85.52313867199987,55.48878374200014],[-85.50316321499992,55.473496812000135],[-85.43916029099995,55.428429553000015],[-85.32152258999986,55.38971588700004],[-85.26406816299992,55.374457098000065],[-85.15200761599988,55.360419012000115],[-85.12791907499985,55.34979889500009],[-85.1178279289999,55.32843659100003],[-85.12661699099995,55.30255768400012],[-85.14810136599988,55.29389069200011],[-85.17471269399994,55.29132721600011],[-85.19912675699987,55.284002997000115],[-85.20787512899994,55.275376695000105],[-85.21296139199987,55.25779857000008],[-85.22028561099998,55.24864329600008],[-85.23216712099992,55.24237702000015],[-85.25963294199997,55.23375071800014],[-85.27179928299995,55.22565338700012],[-85.28693600199995,55.207220770000085],[-85.30931555899988,55.170355536000024],[-85.32266191299988,55.15367259300017],[-85.38902747299991,55.11212799700009],[-85.39842688699986,55.095648505],[-85.39635169199993,55.08991120000003],[-85.38744055899988,55.07611725500011],[-85.38536536399988,55.06769440300015],[-85.38809160099993,55.061875718000024],[-85.40518144399988,55.036363023000106],[-85.41909745999988,55.009711005],[-85.4173070949999,54.999212958000115],[-85.40355383999986,55.003119208000115],[-85.38166256399984,55.01988353100013],[-85.36636308499988,55.038885809000035],[-85.33698482999998,55.10529205900014],[-85.32461503799992,55.123236395000035],[-85.19912675699987,55.24241771000014],[-85.1545304029999,55.26780833500005],[-85.10562089799993,55.28473541900006],[-85.05394446499989,55.29413483300006],[-84.94640051999997,55.29515208500011],[-84.61314856699988,55.245184637000094],[-84.5555313789999,55.24864329600008],[-84.48159745999993,55.2675641950001],[-84.44359290299991,55.27252838700015],[-84.42162024599992,55.281927802],[-84.22716223899991,55.297064520000085],[-84.19351152299988,55.29547760600015],[-84.13117428299992,55.28034088700015],[-84.09809322799988,55.27676015800007],[-84.0790095689999,55.27745189000002],[-83.95726477799988,55.32208893400009],[-83.92906653599991,55.32652415600016],[-83.90440833199992,55.321275132],[-83.8612361319999,55.30512116100011],[-83.76756751199989,55.28131745000003],[-83.72996985599988,55.25950755400007],[-83.72423255099991,55.243638414000046],[-83.73289954299987,55.23187897300006],[-83.73664303299992,55.22455475500006],[-83.71629798099993,55.22190989799999],[-83.71104895699995,55.22589752800015],[-83.70299231699991,55.243841864],[-83.69896399599995,55.24864329600008],[-83.68431555899994,55.248765367000075],[-83.6732478509999,55.242905992000104],[-83.66307532499985,55.235174872000115],[-83.6511938139999,55.229356187000135],[-83.63678951699984,55.228867906000154],[-83.62364661399988,55.23151276200015],[-83.61148027299988,55.2321638040001],[-83.59968014199993,55.22565338700012],[-83.59373938699991,55.21649811400011],[-83.58926347599993,55.206366278000175],[-83.58307857999995,55.19806549700009],[-83.57201087099992,55.19464752800009],[-83.56688391799992,55.19074127800009],[-83.57355709499987,55.18199290600002],[-83.58910071499989,55.167914130000085],[-83.58828691299996,55.15680573100006],[-83.58315995999993,55.147894598],[-83.57396399599989,55.14024485900008],[-83.56114661399994,55.13316478100002],[-83.55492102799988,55.140082098000036],[-83.57237708199995,55.15477122600011],[-83.56899980399993,55.166205145000056],[-83.55931555899987,55.17572663000006],[-83.55801347599987,55.1846784530001],[-83.57599850199992,55.20490143400012],[-83.58104407499994,55.21588776200015],[-83.58287512899992,55.23248932500003],[-83.59288489499991,55.24152252800003],[-83.61579342399989,55.2455915390001],[-83.65802975199992,55.24864329600008],[-83.67467200399997,55.25377024900011],[-83.68809973899997,55.260199286000116],[-83.71324622299993,55.276556708000115],[-83.68952389199984,55.28485748900003],[-83.57530676999997,55.26732005400008],[-83.50035559799991,55.24241771000014],[-83.48363196499987,55.23956940300009],[-83.43830318899987,55.24241771000014],[-83.42446855399987,55.24034251500002],[-83.39956620999992,55.23139069200009],[-83.28123938699991,55.22190989799999],[-83.23949133999989,55.223578192],[-83.22594153599991,55.22190989799999],[-83.21458899599995,55.21747467700003],[-83.19326738199987,55.20429108300006],[-83.18504798099988,55.20148346600011],[-83.15754146999983,55.20429108300006],[-83.08885657499985,55.229356187000135],[-83.03970292899993,55.23895905200014],[-82.97569739499994,55.239081122000115],[-82.92031816299992,55.220526434000085],[-82.8976130849999,55.17413971600003],[-82.9019262359999,55.16844310100005],[-82.91104081899991,55.16388580900009],[-82.92015540299988,55.15668366100009],[-82.92430579299992,55.14341868700013],[-82.92772376199994,55.13776276200015],[-82.95164954299989,55.11273834800015],[-82.92894446499986,55.11692942900008],[-82.89753170499992,55.14940013200005],[-82.87718665299992,55.160508531000076],[-82.86253821499992,55.15989817900014],[-82.83088131399983,55.14948151200004],[-82.8150935539999,55.14683665600013],[-82.76292883999989,55.14512767100014],[-82.74620520699995,55.14683665600013],[-82.67174231699997,55.17072174700003],[-82.6443985669999,55.17413971600003],[-82.61733964799987,55.168809312000164],[-82.56663977799991,55.147894598],[-82.54076087099989,55.14683665600013],[-82.5427139959999,55.15159739800005],[-82.54556230399986,55.16327545800014],[-82.5475968089999,55.167914130000085],[-82.52936764199993,55.16758860900013],[-82.51545162699995,55.15997955900012],[-82.50389563699991,55.151109117000075],[-82.49266516799992,55.14683665600013],[-82.47264563699986,55.14545319200006],[-82.45848548099991,55.14118073100015],[-82.44676673099994,55.13361237200011],[-82.43431555899991,55.122626044000135],[-82.42784583199992,55.11871979400014],[-82.41612708199992,55.11603424700017],[-82.4110408189999,55.11273834800015],[-82.40941321499989,55.10753001500014],[-82.41218014199983,55.102891343000024],[-82.41429602799985,55.098089911000116],[-82.4110408189999,55.092230536],[-82.39403235599994,55.08445872599999],[-82.35374915299988,55.080308335000055],[-82.33531653599994,55.07859935100005],[-82.32103430899994,55.07111237200017],[-82.32445227799985,55.08185455900009],[-82.34276282499991,55.10529205900014],[-82.31139075399997,55.118597723000086],[-82.31696529899997,55.132757880000106],[-82.33861243399988,55.148789781000104],[-82.35582434799989,55.167914130000085],[-82.33092200399994,55.162543036000116],[-82.2970271479999,55.132757880000106],[-82.25226803299995,55.11790599200005],[-82.24876868399986,55.09959544499999],[-82.25670325399992,55.07908763200014],[-82.27863521999984,55.04547760600012],[-82.28270423099991,55.02814362200003],[-82.27790279899992,55.010931708],[-82.25645911399988,54.98309967700014],[-82.2560115229999,54.97626373900012],[-82.25853430899991,54.968817450000145],[-82.26016191299993,54.95783112200009],[-82.26231848899991,54.954575914000046],[-82.26699785099991,54.95274485900016],[-82.27171790299985,54.950181382000046],[-82.27383378799996,54.944525458000086],[-82.27269446499992,54.93781159100003],[-82.27017167899989,54.93256256700014],[-82.26642818899987,54.92772044500007],[-82.25645911399988,54.89293040600001],[-82.25340735599988,54.886175848000065],[-82.2429906889999,54.88194407800015],[-82.2178848949999,54.88023509300014],[-82.20836341099991,54.87592194200015],[-82.19855709499987,54.85578034100011],[-82.20140540299991,54.83392975500006],[-82.26016191299993,54.71564362200006],[-82.31533769399992,54.57746002800012],[-82.37783769399988,54.47907135600009],[-82.39671790299991,54.42682526200018],[-82.41494706899991,54.39984772300012],[-82.41722571499989,54.388983466000056],[-82.42096920499992,54.38385651200012],[-82.43871008999992,54.371446031000104],[-82.44448808499996,54.36542389500009],[-82.43936113199996,54.33702220300016],[-82.44107011599995,54.33185455900015],[-82.42926998599998,54.32770416900003],[-82.42711341099988,54.31769440300003],[-82.43089758999992,54.297186591000084],[-82.43089758999992,54.228216864000146],[-82.42731686099992,54.2123884140001],[-82.42031816299996,54.19904205900009],[-82.41014563699991,54.18663157800016],[-82.37165279899992,54.150580145],[-82.36876380099989,54.13788483300014],[-82.38304602799988,54.125189520000085],[-82.37124589799993,54.12006256700006],[-82.3604223299999,54.12140534100014],[-82.34894771999987,54.12461985900002],[-82.33531653599994,54.125189520000085],[-82.32404537699995,54.12225983300006],[-82.31371008999992,54.11737702],[-82.25633704299992,54.07945384300017],[-82.2425837879999,54.06504954600011],[-82.17784583199997,53.919053453000096],[-82.16026770699995,53.899278062000164],[-82.15453040299987,53.88755931200008],[-82.14244544199997,53.83588288000014],[-82.13296464799996,53.82416413000006],[-82.12604732999995,53.81220123900012],[-82.13068600199988,53.78558991100009],[-82.14346269399994,53.745347397999986],[-82.15025794199994,53.73167552300005],[-82.18789628799993,53.68016185100008],[-82.20079505099993,53.67047760600012],[-82.20775305899986,53.648016669000114],[-82.21255449099993,53.62266673400008],[-82.21922766799989,53.604437567],[-82.2061254549999,53.59007396000011],[-82.2053930329999,53.57469310099999],[-82.20970618399991,53.55902741100003],[-82.2117813789999,53.54356517100008],[-82.20815995999995,53.526597398000106],[-82.20116126199989,53.50853099200002],[-82.19180253799993,53.491644598],[-82.16242428299994,53.454087632],[-82.1487524079999,53.42633698100012],[-82.11558997299989,53.30963776200012],[-82.11440995999995,53.28900788],[-82.11851966099991,53.27728913000011],[-82.14012610599991,53.258734442],[-82.18858801999988,53.23204173400008],[-82.20152747299989,53.228338934000035],[-82.21857662699995,53.22662995000003],[-82.23814856699991,53.22142161700005],[-82.25055904899995,53.21295807500009],[-82.24596106699991,53.20099518400015],[-82.27794348899991,53.141099351000136],[-82.2897029289999,53.11017487200009],[-82.30345618399991,53.0327009140001],[-82.2977188789999,53.01886627800011],[-82.28823808499993,53.006293036000116],[-82.28327389199987,52.991644598000036],[-82.28628495999988,52.977769273000135],[-82.30117753799993,52.96759674700017],[-82.27472896999986,52.95750560100011],[-82.23664303299995,52.925970770000035],[-82.19635982999989,52.916449286000116],[-82.18626868399991,52.910223700000145],[-82.17780514199988,52.903509833000115],[-82.17080644399991,52.89935944200006],[-82.12498938699991,52.891831773000106],[-82.10936438699991,52.88507721600017],[-82.04185950399994,52.84284088700015],[-81.98814856699997,52.79844798400001],[-81.97704016799995,52.782171942],[-81.98582923099991,52.76837799700009],[-81.95978756399984,52.74774811400006],[-81.91820227799985,52.68036530200005],[-81.88621985599985,52.665961005],[-81.85167395699993,52.65643952000009],[-81.81590735599994,52.633653062000164],[-81.71076412699995,52.53363678600003],[-81.67979895699992,52.51093170800006],[-81.64635169199997,52.50153229400006],[-81.56383216099997,52.45624420800011],[-81.55675208199992,52.44440338700015],[-81.56029212099988,52.43016185100005],[-81.57494055899991,52.41209544500013],[-81.56647701699987,52.39581940300008],[-81.55451412699992,52.353094794000086],[-81.54356848899997,52.344427802],[-81.53140214799987,52.33954498900012],[-81.49022376199991,52.314439195000126],[-81.47874915299985,52.30345286699999],[-81.5814509759999,52.316473700000145],[-81.60655676999988,52.313666083000115],[-81.72158769399996,52.27692291900003],[-81.73542232999995,52.27558014500011],[-81.74400794199997,52.25816478100016],[-81.75389563699989,52.251166083000086],[-81.77041581899996,52.25816478100016],[-81.79185950399989,52.26422760600014],[-81.82017981699994,52.25938548400007],[-81.84837805899991,52.2480329450001],[-81.86913001199991,52.23456452000012],[-81.84715735599991,52.23895905200003],[-81.8372289699999,52.242783921000026],[-81.82754472599993,52.24823639500006],[-81.82135982999998,52.240790106000176],[-81.85163326699987,52.22064850500014],[-81.88280188699986,52.193589585000026],[-81.85806230399987,52.19407786699999],[-81.83250891799989,52.19928620000009],[-81.80894934799994,52.20921458499999],[-81.77131100199995,52.23643626500008],[-81.74681555899991,52.24188873900012],[-81.51203365799994,52.23932526200012],[-81.46507727799991,52.22032298400001],[-81.43740800699993,52.19078196800014],[-81.39061438699986,52.12779368700005],[-81.35521399599995,52.10423411699999],[-81.27065995999989,52.09100983300014],[-81.23306230399992,52.07086823100009],[-81.15660559799991,52.042792059000085],[-81.12962805899986,52.04401276200012],[-81.11310787699998,52.05211009300014],[-81.09870357999992,52.05463288000006],[-81.07811438699989,52.03904857000008],[-81.05695553299996,52.02655670800006],[-81.00251217399997,52.014837958000086],[-80.97911536399988,52.001817124000084],[-80.97301184799991,51.99396393400009],[-80.95799719999988,51.96702708500014],[-80.93407141799992,51.939032294000114],[-80.93065344999991,51.92918528900019],[-80.92088782499988,51.90940989800007],[-80.89769446499992,51.896551825000145],[-80.84813391799989,51.88450755400014],[-80.84146074099993,51.88434479400017],[-80.82701575399989,51.885687567000055],[-80.82079016799992,51.88450755400014],[-80.8165583979999,51.880926825000145],[-80.81598873599992,51.87706126500014],[-80.81615149599988,51.873399156000104],[-80.8140356109999,51.87018463700006],[-80.77782141799989,51.85276927299999],[-80.76927649599993,51.847276109000134],[-80.74132239499991,51.82391998900006],[-80.70470130099989,51.80255768400009],[-80.69033769399991,51.79026927300005],[-80.65705318899992,51.754746812000164],[-80.64606686099995,51.74730052299999],[-80.63487708199995,51.74518463700018],[-80.62409420499995,51.73956940300017],[-80.60509192599994,51.723456122000115],[-80.59487870999989,51.711371161],[-80.59361731699991,51.70465729400014],[-80.59532630099991,51.69794342700011],[-80.59430904899993,51.68585846600011],[-80.58527584499984,51.66596100500011],[-80.55882727799985,51.623236395],[-80.54922441299988,51.59105052300005],[-80.51915442599994,51.535020249000105],[-80.50829016799995,51.521673895],[-80.49185136599993,51.50592682500014],[-80.47288977799994,51.49274323100009],[-80.45433508999994,51.48729075700005],[-80.44029700399989,51.47728099199998],[-80.43614661399994,51.45445384300014],[-80.43724524599989,51.41217682500006],[-80.42756100199992,51.37409088700015],[-80.42979895699992,51.35716380400008],[-80.4471736319999,51.35008372600011],[-80.46947180899994,51.34796784100011],[-80.58429928299995,51.315049546000026],[-80.62804114499994,51.295640367000104],[-80.66881262899989,51.271063544000086],[-80.70470130099989,51.240830796000076],[-80.70986894399991,51.233506578000096],[-80.72134355399993,51.21222565300012],[-80.72834225199992,51.202988999000134],[-80.73818925699992,51.193711656000104],[-80.74551347599996,51.18842194200011],[-80.76561438699989,51.17877838700015],[-80.83885657499985,51.15611399900011],[-80.86180579299995,51.14463939000014],[-80.87328040299988,51.13438548400005],[-80.89964758999989,51.10028717700011],[-80.90941321499992,51.092962958000115],[-80.96670488199995,51.07465241100006],[-80.98485266799986,51.06476471600014],[-80.99986731699988,51.05194733300003],[-81.01260331899994,51.03538646000014],[-80.97801673099994,51.039496161],[-80.96019446499986,51.044623114],[-80.94001217399995,51.055609442000055],[-80.93419348899988,51.051865953000046],[-80.9308975899999,51.04405345300013],[-80.93065344999991,51.03538646000014],[-80.93447831899991,51.031683661],[-80.95799719999988,51.01496002800014],[-80.95116126199986,51.00812409100014],[-80.91714433499993,51.03009674700014],[-80.87824459499984,51.095648505],[-80.84813391799989,51.12352122600005],[-80.82347571499992,51.131333726000136],[-80.77017167899993,51.134263414000074],[-80.74510657499985,51.14122142100014],[-80.71214758999987,51.15656159100008],[-80.70103919199993,51.15831126500008],[-80.68976803299995,51.16156647300012],[-80.68244381399984,51.16929759300014],[-80.67662512899989,51.17857493700011],[-80.66999264199991,51.18622467700013],[-80.60484778599991,51.21881745000008],[-80.59430904899993,51.23029205900003],[-80.58629309799987,51.24815501500011],[-80.56737219999988,51.26512278900016],[-80.52599036399994,51.289252020000085],[-80.4523005849999,51.31492747600005],[-80.41002356699988,51.33954498900014],[-80.38512122299994,51.34137604400002],[-80.25112870999996,51.31517161699999],[-80.2246801419999,51.30573151200018],[-80.19701087099989,51.299383856000055],[-80.13613847599987,51.30133698100009],[-80.10826575399992,51.29608795800003],[-80.09658769399994,51.28888580900018],[-80.08039303299998,51.273260809000085],[-80.0672908189999,51.267564195000105],[-80.0089412099999,51.261338609000134],[-79.9859919909999,51.25511302299999],[-79.92332923099991,51.20673248900008],[-79.87779700399994,51.183091539000074],[-79.78408769399994,51.14740631700012],[-79.7445369129999,51.12352122600005],[-79.70592200399994,51.06452057500009],[-79.69367428299995,51.055283921000054],[-79.67593339799987,51.0497907570001],[-79.56916256399998,50.98558177300007],[-79.52082271999986,50.94289785400004],[-79.42300370999989,50.85663483300003],[-79.41441809799987,50.84345123900006],[-79.4010310539999,50.81696198100009],[-79.3919978509999,50.805121161000116],[-79.35838782499988,50.78046295800014],[-79.35411536399994,50.77098216400013],[-79.35423743399991,50.756537177000084],[-79.35285396999984,50.743353583000115],[-79.34703528599988,50.733018296000026],[-79.33429928299992,50.72691478100005],[-79.33454342399997,50.76841868700002],[-79.33958899599992,50.791815497000115],[-79.35753333199995,50.80206940300003],[-79.36921139199987,50.81138743700008],[-79.40933183499988,50.87030670800014],[-79.4434301419999,50.90379466400019],[-79.4639786449999,50.91913483300014],[-79.48135331899991,50.925604559000064],[-79.49791419199997,50.934027411],[-79.52082271999986,50.96548086100001],[-79.52896074099988,50.97675202],[-79.54588782499988,50.99445221600011],[-79.6698298819999,51.05841705900012],[-79.70360266799987,51.09003327],[-79.72565670499995,51.121771552000055],[-79.74266516799992,51.15757884300017],[-79.74714107999989,51.195502020000085],[-79.73151607999992,51.23338450700011],[-79.69395911399991,51.280991929000024],[-79.67951412699995,51.313177802000055],[-79.68683834499987,51.33982982],[-79.69456946499986,51.35167064000014],[-79.69957434799991,51.368353583000086],[-79.70075436099992,51.385443427000105],[-79.69676673099985,51.39850495000012],[-79.69033769399994,51.39948151200018],[-79.64525305899988,51.41901276200015],[-79.62783769399991,51.42438385600011],[-79.60505123599998,51.447821356000084],[-79.59064693899992,51.45311107000008],[-79.5318904289999,51.46173737200017],[-79.52082271999986,51.46670156500012],[-79.51919511599993,51.46739329600017],[-79.51911373599995,51.483506578000124],[-79.5296931629999,51.509711005000085],[-79.5453181629999,51.53672923400001],[-79.56017005099997,51.555528062000164],[-79.51642818899998,51.56028880400007],[-79.46812903599997,51.580186265000165],[-79.34601803299992,51.66181061400005],[-79.32323157499991,51.66697825700008],[-79.27896074099993,51.64203522300015],[-79.25548255099996,51.63873932500012],[-79.24453691299989,51.63092682500012],[-79.25853430899988,51.60394928600006],[-79.28111731699993,51.57208893400003],[-79.28563391799989,51.551988022999986],[-79.27562415299991,51.531602281000104],[-79.26585852799988,51.527777411],[-79.18415279899989,51.52570221600017],[-79.16917883999986,51.52826569200008],[-79.15794837099995,51.53314850500014],[-79.14981035099993,51.53864166900017],[-79.14122473899991,51.54254791900017],[-79.12816321499994,51.54254791900017],[-79.10960852799994,51.530707098],[-79.09406490799991,51.51829661699999],[-79.08275305899986,51.50665924700017],[-79.02912350199995,51.479925848000065],[-79.01154537699992,51.46739329600017],[-79.00658118399988,51.455755927000055],[-79.00719153599994,51.431870835],[-79.00527910099987,51.41901276200015],[-78.99836178299998,51.406805731000176],[-78.97862708199995,51.38914622600008],[-78.97057044199991,51.37742747599999],[-78.9524633449999,51.31159088700012],[-78.93980872299994,51.292669989],[-78.93504798099993,51.281602281000154],[-78.94090735599988,51.272284247000115],[-78.9606013659999,51.25792064000014],[-78.96336829299989,51.247381903000175],[-78.95982825399989,51.23248932500003],[-78.95319576699984,51.21922435099999],[-78.91250566299993,51.18248118700011],[-78.90094967399992,51.17706940300014],[-78.84703528599991,51.16449616100006],[-78.8587133449999,51.17637767100011],[-78.87018795499995,51.192816473],[-78.88292395699989,51.207261460000055],[-78.91429602799994,51.219183661],[-78.91978919199995,51.23297760600012],[-78.91905676999994,51.250596421000054],[-78.91222083199992,51.28917064000011],[-78.90904700399994,51.29608795800003],[-78.90330969999987,51.30438873900009],[-78.88487708199995,51.31968821800014],[-78.86237545499995,51.34418366100009],[-78.84805253799996,51.35089752800003],[-78.82656816299993,51.35008372600011],[-78.84007727799991,51.362901109000134],[-78.87970943899992,51.37449778900015],[-78.88801021999993,51.38764069200012],[-78.88215084499987,51.403265692],[-78.86774654899992,51.413682359000106],[-78.84992428299992,51.42234935099999],[-78.83336341099997,51.432684637000094],[-78.80972245999993,51.46051666900014],[-78.79381262899992,51.47447337400003],[-78.75357011599993,51.48619212400011],[-78.74429277299987,51.48729075700005],[-78.69001217399995,51.48729075700005],[-78.71312415299988,51.50653717700002],[-78.78229732999998,51.50360748900009],[-78.81285559799991,51.51459381700015],[-78.82266191299993,51.53770579600008],[-78.81973222599991,51.56797923400008],[-78.80821692599987,51.595648505000085],[-78.79238847599994,51.61078522300009],[-78.80402584499987,51.613511460000055],[-78.82933508999989,51.61424388200008],[-78.84080969999985,51.617010809000035],[-78.84825598899991,51.624090887000094],[-78.86750240799995,51.646836656000126],[-78.87840735599994,51.65171946800011],[-78.90510006399994,51.653509833],[-78.92926998599995,51.660467841000084],[-78.94249426999991,51.67511627800009],[-78.93639075399992,51.700140692],[-78.96568762899994,51.711127020000056],[-78.98058020699989,51.718573309000035],[-78.99168860599991,51.72687409100011],[-79.0091039699999,51.753526109000134],[-79.01939856699991,51.763169664000095],[-79.03880774599992,51.76850006700009],[-79.02904212099988,51.785711981000084],[-79.01496334499984,51.79612864799999],[-78.9974666009999,51.80125560100002],[-78.97736568899992,51.80255768400009],[-78.96788489499994,51.801459052000055],[-78.94798743399994,51.79657623900008],[-78.93639075399992,51.79572174700017],[-78.92381751199994,51.7982038430001],[-78.90172278599994,51.80792877800015],[-78.8763728509999,51.814886786000145],[-78.85708574099988,51.826890367000075],[-78.84056555899991,51.84227122600011],[-78.83336341099997,51.857163804000045],[-78.83967037699992,51.8682722030001],[-78.86839758999986,51.89032623900009],[-78.87498938699994,51.908677476000136],[-78.89150956899991,51.932074286000116],[-78.89256751199986,51.94676341400013],[-78.87120520699992,51.953436591000084],[-78.82725989499988,51.957871812000135],[-78.74718176999991,51.97687409100014],[-78.73082434799987,51.98741282800002],[-78.71971594999988,52.01398346600017],[-78.7101130849999,52.01500071800005],[-78.7005916009999,52.014349677],[-78.69619706899991,52.018255927000084],[-78.69619706899991,52.029730536000116],[-78.69741777299993,52.03949616100006],[-78.70152747299997,52.04820384300013],[-78.70986894399994,52.056463934000035],[-78.66926021999984,52.055121161000145],[-78.64972896999987,52.05866120000003],[-78.63475501199991,52.069444078000124],[-78.6409399079999,52.07212962400011],[-78.64972896999987,52.07990143400012],[-78.65526282499987,52.08372630400014],[-78.63329016799986,52.09357330900015],[-78.61164303299998,52.09845612200003],[-78.59129798099988,52.10614655200013],[-78.57331295499995,52.124701239000146],[-78.56948808499993,52.133490302000105],[-78.5631404289999,52.15562571800008],[-78.55899003799996,52.16571686400006],[-78.55247962099986,52.17405833500011],[-78.53722083199989,52.188910223000086],[-78.53172766799987,52.199774481000176],[-78.55296790299985,52.23639557500009],[-78.54674231699991,52.24664948100003],[-78.51805579299995,52.255072333000086],[-78.48997962099992,52.25669993700011],[-78.40819251199986,52.240790106000176],[-78.40819251199986,52.24823639500006],[-78.42467200399994,52.25584544500002],[-78.43639075399994,52.264837958000115],[-78.44871985599988,52.27240631700006],[-78.46715247299991,52.27558014500011],[-78.51227779899997,52.27757396000008],[-78.5350642569999,52.275742906000104],[-78.55284583199989,52.26813385600015],[-78.55894934799997,52.28880442900008],[-78.54686438699987,52.30442942900005],[-78.51183020699997,52.33018626500008],[-78.49958248599992,52.35582103100016],[-78.50812740799992,52.367499091000134],[-78.52350826699987,52.37677643400012],[-78.53172766799987,52.395331122000115],[-78.52611243399988,52.39976634300008],[-78.5156957669999,52.41046784100011],[-78.50987708199992,52.42137278899998],[-78.51838131399995,52.426377671000026],[-78.53514563699989,52.43065013200014],[-78.54308020699995,52.44004954600017],[-78.54035396999987,52.44940827],[-78.51357988199987,52.45795319200012],[-78.51203365799991,52.46735260600015],[-78.51598059799991,52.476752020000056],[-78.52147376199994,52.4809431010001],[-78.56647701699984,52.487860419000114],[-78.55894934799997,52.49738190300009],[-78.5510147779999,52.501410223000065],[-78.54539954299992,52.50547923400002],[-78.54539954299992,52.51512278900002],[-78.55166581899996,52.52484772300015],[-78.56305904899992,52.53327057500009],[-78.57579505099997,52.539374091000084],[-78.58633378799993,52.542425848000065],[-78.6326798169999,52.53168366100006],[-78.65282141799995,52.53172435100005],[-78.6490372389999,52.549261786],[-78.66771399599989,52.55597565300003],[-78.68346106699994,52.552557684000035],[-78.69904537699995,52.54584381700008],[-78.71727454299992,52.542425848000065],[-78.71515865799992,52.54694245000003],[-78.71182206899991,52.55821360900001],[-78.70986894399994,52.562933661000116],[-78.72484290299988,52.56244538000014],[-78.75072180899988,52.56854889500012],[-78.76512610599985,52.57037995000012],[-78.76512610599985,52.57721588700012],[-78.74445553299995,52.57750071800014],[-78.71031653599994,52.59442780200014],[-78.69001217399995,52.597723700000174],[-78.69945227799985,52.60541413],[-78.70909583199992,52.611070054],[-78.71939042899993,52.614976304],[-78.73094641799985,52.617539781000104],[-78.73094641799985,52.62498607000008],[-78.70986894399994,52.62498607000008],[-78.71886145699995,52.638251044000086],[-78.72419186099992,52.65228913000006],[-78.74034583199989,52.64667389500015],[-78.75601152299987,52.64647044500002],[-78.77110755099997,52.650824286],[-78.78555253799993,52.659125067000055],[-78.7614639959999,52.68378327000006],[-78.76244055899988,52.69603099200013],[-78.78355872299989,52.70026276200006],[-78.81973222599991,52.700669664000046],[-78.81973222599991,52.706895249000105],[-78.79686438699991,52.70844147300015],[-78.77839107999988,52.71381256700003],[-78.77204342399993,52.724188544000114],[-78.78555253799993,52.741034247000115],[-78.80378170499992,52.74567291900006],[-78.83055579299992,52.74933502800009],[-78.85016842399997,52.75739166900003],[-78.84703528599991,52.77521393400009],[-78.83079993399984,52.78253815300012],[-78.75763912699989,52.78266022300009],[-78.73501542899992,52.789170640000165],[-78.7264705069999,52.798081773000106],[-78.72687740799992,52.81114329600008],[-78.73094641799985,52.83043040600002],[-78.75015214799993,52.820868231000034],[-78.76060950399992,52.817857164000124],[-78.77159583199993,52.816758531000076],[-78.78038489499991,52.81964752800012],[-78.77497311099998,52.8261579450001],[-78.69001217399995,52.88507721600017],[-78.70494544199988,52.88568756700012],[-78.78307044199991,52.87152741100011],[-78.7960098949999,52.87091705900015],[-78.82835852799991,52.87421295799999],[-78.84235592399989,52.87799713700012],[-78.85529537699989,52.88389720300013],[-78.86750240799995,52.89252350500006],[-78.88097083199995,52.91197337400014],[-78.88996334499987,52.92206452000012],[-78.90168209499987,52.926621812000164],[-78.87450110599985,52.93980540600002],[-78.86693274599989,52.94957103100013],[-78.86750240799995,52.96759674700017],[-78.85240637899994,52.96051666900003],[-78.82188880099991,52.967149156000076],[-78.8060603509999,52.96015045799999],[-78.79881751199986,52.964178778000175],[-78.7930395169999,52.96885814000008],[-78.78868567599991,52.97459544500008],[-78.78555253799993,52.98187897300006],[-78.81322180899991,52.98139069200009],[-78.8258357409999,52.9838727890001],[-78.83714758999989,52.99115631700012],[-78.84414628799986,53.00202057500012],[-78.84874426999991,53.011664130000085],[-78.85704505099989,53.017157294000114],[-78.87498938699994,53.01544830900009],[-78.87267005099997,53.01219310100005],[-78.87238521999983,53.01129791900017],[-78.87149003799993,53.010687567],[-78.86750240799995,53.00861237200009],[-78.89305579299985,53.001654364],[-78.92715410099996,53.004990953000046],[-78.96068274599988,53.01512278899999],[-78.98420162699995,53.0284284530001],[-78.96646074099996,53.03131745000003],[-78.94538326699984,53.038519598000065],[-78.92662512899989,53.049546617000104],[-78.91592363199996,53.0638288430001],[-78.92943274599992,53.072211005000085],[-78.94395911399995,53.07269928600005],[-78.95986894399988,53.07025788000011],[-78.97736568899992,53.07001373900009],[-78.91592363199996,53.16620514500012],[-78.93927975199995,53.18036530200014],[-78.93736731699991,53.186712958000086],[-78.92121334499984,53.19139232],[-78.90168209499987,53.20099518400015],[-78.90648352799985,53.20856354400011],[-78.91246497299994,53.21430084800009],[-78.91982988199996,53.218369859000134],[-78.92894446499993,53.220892645000056],[-78.91966712099989,53.224798895000056],[-78.89342200399997,53.22984446800008],[-78.88801021999993,53.23175690300015],[-78.89118404899989,53.242621161000116],[-78.89928137899992,53.24823639500012],[-78.91051184799991,53.249701239],[-78.92271887899989,53.24815501500014],[-78.90330969999987,53.25958893400009],[-78.8954158189999,53.26178620000009],[-78.8954158189999,53.26862213700012],[-78.90591386599986,53.26959870000009],[-78.92027747299994,53.27281321800014],[-78.93419348899994,53.27765534100002],[-78.94322669199994,53.282945054000024],[-78.95201575399992,53.29148997600011],[-78.95372473899991,53.295111395000085],[-78.93980872299994,53.306219794000114],[-78.93736731699991,53.317002671000026],[-78.94627844999994,53.327337958000115],[-78.95811926999988,53.336615302000084],[-78.96434485599985,53.344427802000084],[-78.96202551999988,53.35712311400012],[-78.94688880099989,53.37034739800008],[-78.94322669199994,53.381903387000094],[-78.94493567599994,53.392279364],[-78.94981848899991,53.40228913000008],[-78.95738684799997,53.40973541900014],[-78.96743730399993,53.412665106000176],[-78.97288977799987,53.41852448100003],[-78.98566646999991,53.445746161000116],[-78.99168860599991,53.45359935100011],[-79.00381425699993,53.455796617000104],[-79.01878821499986,53.454046942],[-79.0328669909999,53.44957103100013],[-79.04255123599995,53.44367096600011],[-79.05333411399997,53.43931712400011],[-79.06322180899988,53.44196198100009],[-79.0652563139999,53.447862046000054],[-79.05247962099986,53.45359935100011],[-79.05247962099986,53.46104564000008],[-79.07628333199995,53.46942780200014],[-79.08775794199987,53.48041413],[-79.09703528599994,53.49359772300014],[-79.1145727199999,53.508856512000115],[-79.09459387899992,53.522284247000115],[-79.07005774599989,53.53062571800008],[-79.04206295499995,53.53497955900018],[-79.03001868399986,53.535101630000135],[-79.03823808499996,53.53282298400008],[-79.04625403599991,53.529364325000174],[-79.03880774599992,53.52252838700015],[-79.04625403599991,53.516302802],[-79.02843176999991,53.49909088700018],[-79.00413977799985,53.49766673400002],[-78.97842363199989,53.505479234000106],[-78.95689856699988,53.516302802],[-78.96776282499988,53.52142975500011],[-78.99217688699991,53.52757396],[-79.00157630099993,53.532782294000086],[-79.01390540299988,53.54791901200018],[-79.02106686099992,53.55369700700014],[-79.03258216099997,53.55662669500008],[-79.01952063699989,53.57086823100015],[-78.99986731699994,53.566839911],[-78.97858639199987,53.55597565300012],[-78.9606013659999,53.54979075700005],[-78.93260657499991,53.555121161000116],[-78.92308508999992,53.56671784100003],[-78.9313044909999,53.57859935099999],[-78.95689856699988,53.584580796000076],[-78.95689856699988,53.59076569200006],[-78.95470130099989,53.60008372600011],[-78.96519934799994,53.60895416900014],[-78.98176021999993,53.61542389500006],[-78.99787350199989,53.61810944200011],[-79.02521725199995,53.604437567],[-79.03595943899998,53.60276927299999],[-79.0553279289999,53.601874091000084],[-79.06615149599989,53.59821198100003],[-79.06236731699997,53.609564520000035],[-79.05630449099988,53.620347398000106],[-79.0484106109999,53.63023509300002],[-79.03880774599992,53.63922760600015],[-79.02310136599996,53.632066148000106],[-79.01260331899988,53.637803453000075],[-79.00755774599986,53.647650458],[-79.00841223899994,53.6528181010001],[-79.02281653599991,53.65294017100017],[-79.03376217399988,53.65473053600006],[-79.0414119129999,53.66050853100002],[-79.04625403599991,53.67271556200011],[-79.0362442699999,53.67157623900006],[-79.02350826699985,53.672674872000115],[-79.0133357409999,53.67731354400003],[-79.01154537699992,53.68699778900002],[-79.01927649599995,53.69391510600009],[-79.03302975199995,53.695868231000034],[-79.05931555899987,53.69444407800007],[-79.08527584499987,53.696600653000175],[-79.13048255099991,53.706000067],[-79.15611731699997,53.70807526200012],[-79.14549719999994,53.71942780199999],[-79.1269425119999,53.72284577],[-79.0573624339999,53.72003815300015],[-79.04881751199991,53.725653387000065],[-79.03880774599992,53.74164459800014],[-79.06261145699992,53.744086005000085],[-79.06338456899994,53.75714752800015],[-79.04625403599991,53.79002513200005],[-79.05508378799996,53.791571356000084],[-79.06090247299991,53.794256903000175],[-79.07359778599997,53.803656317],[-79.01891028599994,53.82416413000006],[-79.03514563699987,53.830023505],[-79.04308020699992,53.83112213700003],[-79.05247962099986,53.831000067000055],[-79.05247962099986,53.837836005],[-79.01349850199998,53.84589264500012],[-78.97679602799988,53.83600495000012],[-78.94029700399992,53.82196686400005],[-78.90168209499987,53.81732819200012],[-78.92861894399991,53.84345123900009],[-78.97142493399991,53.855088609000106],[-79.06615149599989,53.857652085],[-79.05890865799995,53.880194403000175],[-79.0665583979999,53.89427317900011],[-79.08446204299986,53.90216705900009],[-79.10773678299995,53.90611399900008],[-79.08014889199987,53.91632721600003],[-79.05077063699986,53.91620514500014],[-79.02090410099986,53.91266510600015],[-78.99168860599991,53.912909247000115],[-79.02228756399995,53.93598053600009],[-79.09919186099995,53.94940827000006],[-79.13508053299995,53.961371161],[-79.07363847599996,53.94855377800014],[-79.04234778599991,53.947211005000085],[-79.02521725199995,53.961371161],[-79.04283606699988,53.96124909100003],[-79.07640540299991,53.967596747000144],[-79.03880774599992,53.967596747000144],[-79.0480037099999,53.97968170800006],[-79.06403561099998,53.98346588700017],[-79.10090084499986,53.98179759300017],[-79.09170488199987,53.9868024760001],[-79.08161373599992,53.98936595300001],[-79.07070878799993,53.98997630400008],[-79.05931555899987,53.98924388200005],[-79.06273352799988,53.99310944200015],[-79.06493079299989,53.99628327000012],[-79.06798255099996,53.99921295800014],[-79.07359778599997,54.00230540600002],[-79.04898027299987,54.01011790600002],[-78.96434485599985,54.00230540600002],[-78.97956295499992,54.019232489],[-79.02350826699985,54.033921617000104],[-79.03258216099997,54.04698314000008],[-79.04369055899988,54.043198960000055],[-79.10773678299995,54.06378815300008],[-79.10358639199984,54.06529368700013],[-79.1007380849999,54.06675853100002],[-79.09406490799991,54.07123444200006],[-79.13711503799988,54.08299388200005],[-79.26935787699993,54.08356354400003],[-79.29263261599988,54.09105052299999],[-79.26646887899994,54.09935130400008],[-79.16917883999986,54.09105052299999],[-79.17503821499989,54.11151764500015],[-79.15680904899992,54.112127997000115],[-79.12938391799986,54.107489325000174],[-79.10773678299995,54.112127997000115],[-79.12409420499998,54.11969635600015],[-79.12865149599992,54.12852610900001],[-79.1226700509999,54.132513739],[-79.10773678299995,54.125189520000085],[-79.10464433499988,54.12901439000011],[-79.10289466099988,54.13190338700004],[-79.10179602799985,54.13495514500012],[-79.10090084499986,54.13947174700017],[-79.11034094999988,54.143133856000034],[-79.12059485599988,54.145493882],[-79.13141842399989,54.14642975500008],[-79.14244544199994,54.14569733300014],[-79.12954667899993,54.15436432500003],[-79.11534583199992,54.15827057500003],[-79.08348548099988,54.159287828000096],[-79.0724991529999,54.16209544500005],[-79.0573624339999,54.17560455900012],[-79.04625403599991,54.18048737200009],[-79.06891842399995,54.18748607000007],[-79.10138912699995,54.18760814000014],[-79.16234290299994,54.18048737200009],[-79.21393795499989,54.16339752800006],[-79.23827063699986,54.16168854400005],[-79.23802649599992,54.18048737200009],[-79.2610570949999,54.17454661700007],[-79.2731013659999,54.17320384300017],[-79.28587805899994,54.17365143400015],[-79.29185950399994,54.18842194200014],[-79.3205460279999,54.196722723000114],[-79.35594641799992,54.19855377800011],[-79.38206946499989,54.19407786700005],[-79.37181555899986,54.206244208000115],[-79.35753333199995,54.215440171000104],[-79.32681230399987,54.228216864000146],[-79.32681230399987,54.235052802000055],[-79.34044348899991,54.24249909100005],[-79.33429928299992,54.248724677],[-79.32225501199991,54.244370835000026],[-79.3054093089999,54.24156321800014],[-79.29088294199988,54.244086005000085],[-79.28587805899994,54.25556061400012],[-79.29320227799985,54.26146067900005],[-79.40811113199996,54.27086009300016],[-79.44351152299987,54.283514716000134],[-79.43089758999989,54.293646552],[-79.42487545499998,54.29596588700015],[-79.41559811099992,54.297186591000084],[-79.42418372299994,54.30695221600003],[-79.43565833199997,54.31049225499999],[-79.4639786449999,54.31016673400008],[-79.45738684799994,54.33087799700009],[-79.46336829299986,54.35333893400018],[-79.47988847599993,54.36969635600009],[-79.50499426999994,54.37225983300003],[-79.50182044199995,54.37579987200009],[-79.49966386599996,54.37933991100006],[-79.49673417899992,54.382676499000084],[-79.49132239499991,54.38585032800015],[-79.49323482999993,54.390448309000085],[-79.49616451699987,54.40192291900014],[-79.49815833199992,54.40635814000002],[-79.48542232999995,54.405747789000074],[-79.47329667899987,54.407334703000096],[-79.45030676999988,54.413804429],[-79.45030676999988,54.42003001500014],[-79.49046790299991,54.426703192],[-79.50499426999994,54.42682526200018],[-79.49425208199992,54.44953034100002],[-79.49063066299996,54.462591864],[-79.49474036399991,54.468451239000146],[-79.50450598899994,54.473008531000104],[-79.51378333199989,54.483384507],[-79.51964270699995,54.494696356000176],[-79.51919511599993,54.50193919500002],[-79.52855383999989,54.50165436400005],[-79.5370987619999,54.50242747599999],[-79.54523678299992,54.50482819200012],[-79.55337480399993,54.50938548400007],[-79.52916419199993,54.51707591400002],[-79.53986568899995,54.535020249000134],[-79.56924394399996,54.55206940300008],[-79.60118567599997,54.55719635600012],[-79.60118567599997,54.56464264500009],[-79.5504044259999,54.569688218000024],[-79.52940833199989,54.57721588700018],[-79.52546139199988,54.59137604400008],[-79.53872636599993,54.60435618700011],[-79.55947831899994,54.60895416900002],[-79.58214270699996,54.60639069200012],[-79.60118567599997,54.598130601000136],[-79.59666907499991,54.59381745000003],[-79.59203040299988,54.59186432500009],[-79.58690344999987,54.59137604400008],[-79.58067786399991,54.59137604400008],[-79.60635331899988,54.580755927000055],[-79.61986243399986,54.57746002800012],[-79.63532467399997,54.57770416900014],[-79.62246660099994,54.593247789000074],[-79.60480709499984,54.60773346600011],[-79.59203040299988,54.62103913000014],[-79.59373938699989,54.63292064000008],[-79.69054114499988,54.63292064000008],[-79.65367591099994,54.64252350500006],[-79.64830481699997,54.64972565300008],[-79.65143795499995,54.66099681200008],[-79.65949459499987,54.66929759300017],[-79.67064368399991,54.67389557500009],[-79.68309485599991,54.67389557500009],[-79.6744685539999,54.658921617000075],[-79.69945227799994,54.65294017100014],[-79.76561438699991,54.652777411],[-79.76561438699991,54.659613348],[-79.74181067599991,54.66229889500009],[-79.67634029899997,54.693793036],[-79.66405188699991,54.69660065300015],[-79.65318762899994,54.69794342700013],[-79.64354407499988,54.700751044000086],[-79.64098059799997,54.71605052300005],[-79.64598548099991,54.72601959800012],[-79.64293372299991,54.73822663000011],[-79.62848873599995,54.7421735700001],[-79.63809160099993,54.73594798400013],[-79.64191646999983,54.72846100500008],[-79.6360570949999,54.71979401200018],[-79.62848873599995,54.71482982000013],[-79.6169327459999,54.71466705900015],[-79.5953669909999,54.72565338700012],[-79.57237708199995,54.730658270000056],[-79.54710852799988,54.7399763040001],[-79.51602128799988,54.74388255400011],[-79.5051977199999,54.74799225500006],[-79.4960017569999,54.752752997000144],[-79.48448645699997,54.75641510600009],[-79.41087805899991,54.76268138200005],[-79.3919978509999,54.77317942900011],[-79.3841446609999,54.77533600500011],[-79.33739173099991,54.77692291900014],[-79.32461503799988,54.77973053600003],[-79.29263261599988,54.79743073100012],[-78.96743730399993,54.85199616100009],[-78.95116126199991,54.85797760600009],[-78.8954158189999,54.899766343000024],[-78.87486731699997,54.907660223],[-78.77306067599991,54.92613353100005],[-78.72667395699995,54.94432200700011],[-78.67760169199991,54.95128001500011],[-78.62926184799991,54.96495189000014],[-78.60374915299991,54.96808502800012],[-78.5782771479999,54.97569407800015],[-78.52965247299993,55.00385163000014],[-78.50438391799989,55.002875067000055],[-78.44977779899995,55.02338288000011],[-78.39224199099993,55.02753327000006],[-78.37808183499992,55.03327057500003],[-78.36461341099994,55.04063548400005],[-78.31261145699997,55.058050848],[-78.2701716789999,55.081651109000134],[-78.2611384759999,55.085394598000065],[-78.23741614499988,55.092230536],[-78.15558834499993,55.140082098000036],[-78.04572506399995,55.18097565300014],[-78.0519099599999,55.18097565300014],[-78.00780188699991,55.188666083000086],[-77.8744197259999,55.24864329600008],[-77.80052649599989,55.264105536000116],[-77.78160559799997,55.273504950000024],[-77.67495683499993,55.36692942900011],[-77.65778561099991,55.372788804000045],[-77.63597571499989,55.37681712400002],[-77.23753821499989,55.591742255],[-77.16462154899993,55.643255927000084],[-77.1380102199999,55.657700914000124],[-77.1129044259999,55.67536041900006],[-77.09300696499992,55.701117255000085],[-77.08869381399992,55.71421946800014],[-77.0957738919999,55.712754624000084],[-77.10912024599989,55.70551178600006],[-77.13939368399988,55.69745514500011],[-77.1699926419999,55.68296946800008],[-77.18919837099986,55.68187083500014],[-77.16380774599995,55.709173895000035],[-77.04454505099994,55.783026434000114],[-76.90119381399992,55.90033600500008],[-76.84190833199995,55.933661200000145],[-76.82201087099995,55.951849677000055],[-76.8170466789999,55.960191148000106],[-76.81334387899994,55.97748444200012],[-76.80870520699992,55.986029364000146],[-76.79698645699992,55.994208075000145],[-76.78184973899992,55.99815501500014],[-76.75035559799991,56.002752997000165],[-76.71153723899991,56.018622137000094],[-76.68154863199993,56.042914130000085],[-76.65868079299995,56.072984117000104],[-76.62205969999991,56.13947174700003],[-76.61876380099997,56.16608307500017],[-76.61554928299992,56.17670319200012],[-76.58885657499991,56.23786041900014],[-76.57848059799991,56.25580475500011],[-76.54515540299991,56.29503001500005],[-76.53575598899988,56.31846751500011],[-76.53156490799995,56.34361399900008],[-76.53062903599988,56.36961497600008],[-76.52623450399989,56.390244859000106],[-76.51842200399989,56.41364166900008],[-76.51512610599985,56.43817780200002],[-76.52440344999991,56.46210358300006],[-76.51695716099994,56.469549872000144],[-76.52245032499988,56.48163483300014],[-76.52603105399993,56.49396393400009],[-76.52696692599991,56.504339911],[-76.52440344999991,56.510484117000075],[-76.52814693899995,56.531805731000034],[-76.52745520699992,56.59446849200013],[-76.50719153599991,56.71149323100015],[-76.51073157499988,56.72960032800015],[-76.50430253799996,56.76410553600009],[-76.50373287699989,56.783758856000034],[-76.51073157499988,56.79783763200008],[-76.50885982999992,56.81456126500011],[-76.52098548099991,56.85553620000012],[-76.52765865799995,56.897894598000036],[-76.54165605399993,56.938666083000086],[-76.54702714799987,56.97972239799999],[-76.55614173099988,57.01605866100005],[-76.55793209499987,57.03123607000005],[-76.55260169199988,57.05320872600008],[-76.53286699099996,57.08722565300009],[-76.53107662699998,57.102769273000106],[-76.53270423099988,57.11530182500009],[-76.53978430899986,57.12474192900011],[-76.5490616529999,57.132066148000106],[-76.55793209499987,57.14109935100013],[-76.5646052729999,57.15350983300006],[-76.56663977799994,57.164007880000106],[-76.56533769399994,57.19200267100014],[-76.58934485599988,57.27130768400009],[-76.65660559799991,57.40436432500012],[-76.66519120999993,57.41648997600002],[-76.67833411399988,57.4216983090001],[-76.68626868399986,57.42719147300012],[-76.70128333199997,57.45355866100011],[-76.70933997299991,57.46263255400011],[-76.70197506399992,57.46263255400011],[-76.69774329299989,57.46263255400011],[-76.69611568899997,57.463446356000034],[-76.69530188699986,57.46580638199999],[-76.69570878799988,57.469427802000055],[-76.7149958979999,57.47333405200013],[-76.73497473899987,57.49986399900012],[-76.76463782499991,57.55882396000006],[-76.79662024599992,57.598618882000046],[-76.80557206899994,57.613470770000035],[-76.80870520699992,57.675523179000045],[-76.86021887899989,57.71991608300008],[-76.89574133999989,57.76292552300014],[-76.90461178299992,57.77049388200008],[-76.91364498599991,57.776434637000094],[-76.92613684799994,57.78998444200006],[-76.93732662699995,57.80512116100006],[-76.94212805899994,57.815863348000065],[-76.94981848899997,57.827826239],[-76.9803767569999,57.84650299700009],[-76.98306230399987,57.85370514500012],[-76.9972224599999,57.85736725500009],[-77.00829016799992,57.86603424700014],[-77.05406653599994,57.929877020000085],[-77.06627356699991,57.943060614000146],[-77.0711156889999,57.949774481000176],[-77.07437089799991,57.95640696800013],[-77.07933508999989,57.96149323100017],[-77.08922278599991,57.96356842699999],[-77.09935462099986,57.964097398000085],[-77.10627193899995,57.96617259300008],[-77.11241614499994,57.970160223000065],[-77.1202693349999,57.976548569999984],[-77.1272680329999,57.98493073100015],[-77.13951575399994,58.007025458000136],[-77.14826412699993,58.01752350500003],[-77.20181230399993,58.05621979400014],[-77.26427161399988,58.08641185100008],[-77.28302975199995,58.09052155200011],[-77.32266191299986,58.094549872000165],[-77.33999589799987,58.10008372600002],[-77.3567602199999,58.111436265000165],[-77.38654537699989,58.138047593000024],[-77.40147864499994,58.14789459800012],[-77.39460201699984,58.14789459800012],[-77.41893469999991,58.14817942900008],[-77.49083411399995,58.168402411],[-77.47264563699989,58.174912828000075],[-77.45396887899989,58.17784251500011],[-77.44505774599986,58.18463776200003],[-77.45604407499991,58.20311107000004],[-77.47061113199992,58.211981512000094],[-77.53180904899997,58.23041413000014],[-77.60069739499994,58.27134837400016],[-77.62315833199995,58.278428453000046],[-77.69627844999991,58.28510163000009],[-77.71524003799993,58.29161204600017],[-77.77074133999989,58.31915924700009],[-77.95628821499994,58.360174872000115],[-78.01203365799995,58.38483307500008],[-78.03148352799994,58.388128973000114],[-78.01585852799984,58.41217682500017],[-78.01447506399998,58.42401764500011],[-78.02798417899996,58.42902252800017],[-78.04491126199994,58.432928778000175],[-78.06777910099991,58.45087311400012],[-78.07876542899989,58.45587799700014],[-78.11119544199988,58.453111070000105],[-78.12767493399987,58.45477936400011],[-78.1344294909999,58.46662018400017],[-78.14370683499988,58.475694078000075],[-78.20274817599991,58.50482819200012],[-78.26732337099986,58.51915110900003],[-78.27847245999988,58.528387762000186],[-78.28282630099997,58.536566473000086],[-78.31261145699997,58.57306549700005],[-78.37189693899995,58.613999742000075],[-78.4093318349999,58.62970612200003],[-78.42992102799992,58.62083567899999],[-78.41738847599993,58.600694078000124],[-78.38337154899992,58.57721588700017],[-78.32005774599986,58.546372789000095],[-78.34455318899998,58.53839752800015],[-78.37238521999984,58.54193756700015],[-78.39879309799994,58.55341217699999],[-78.41905676999994,58.5693220070001],[-78.42808997299994,58.57432689000014],[-78.43822180899991,58.57623932500012],[-78.4464412099999,58.5796979840001],[-78.45225989499997,58.59906647300012],[-78.45872962099986,58.60675690300006],[-78.46760006399992,58.61200592700011],[-78.47740637899994,58.613999742000075],[-78.5268448559999,58.60773346600002],[-78.54881751199991,58.608872789000046],[-78.56647701699984,58.62083567899999],[-78.5709529289999,58.638657945000084],[-78.5636287099999,58.65306224200013],[-78.55943762899994,58.664984442000055],[-78.57331295499995,58.67548248900014],[-78.55663001199991,58.68065013200013],[-78.53579667899993,58.681870835000055],[-78.52000891799989,58.68524811400009],[-78.51805579299995,58.69660065300014],[-78.49819902299993,58.70274485900004],[-78.48704993399991,58.69737376500016],[-78.47508704299989,58.698472398000106],[-78.46857662699989,58.70600006700008],[-78.47370357999989,58.720160223],[-78.48355058499993,58.731390692],[-78.49339758999994,58.73895905200005],[-78.53453528599991,58.75910065300009],[-78.54246985599988,58.76520416900017],[-78.54515540299987,58.77366771000011],[-78.54539954299992,58.78876373900011],[-78.53831946499994,58.79547760600015],[-78.52342688699989,58.791245835000055],[-78.51016191299996,58.78339264500006],[-78.50816809799991,58.77912018400015],[-78.49640865799995,58.78306712400014],[-78.49014238199989,58.79315827],[-78.48851477799988,58.806463934000035],[-78.49079342399993,58.820054429],[-78.4961645169999,58.83185455900015],[-78.50332597599991,58.84044017100017],[-78.52147376199994,58.85736725500014],[-78.53575598899992,58.88092682500008],[-78.54539954299992,58.902044989],[-78.54775956899996,58.91705963700004],[-78.54572506399992,58.923895575000145],[-78.54010982999992,58.929917710000055],[-78.53172766799987,58.942979234000134],[-78.55996660099993,58.94464752800014],[-78.5657445949999,58.9577497420001],[-78.5510961579999,58.968613999000105],[-78.51805579299995,58.96344635600009],[-78.49986731699994,58.95018138200009],[-78.48265540299994,58.93235911699998],[-78.46434485599988,58.91819896000008],[-78.44298255099991,58.91571686400014],[-78.45140540299985,58.93976471600016],[-78.43455969999984,58.95445384300008],[-78.40831458199992,58.96185944200006],[-78.38833574099996,58.96344635600009],[-78.35680091099994,58.95941803600011],[-78.35265051999991,58.951361395],[-78.36115475199995,58.93829987200011],[-78.36725826699984,58.919053453000075],[-78.36180579299989,58.9141706400001],[-78.3496801419999,58.915961005],[-78.31639563699991,58.92552317900008],[-78.31175696499989,58.93256256700014],[-78.31175696499989,58.94065989800008],[-78.31261145699997,58.946722723000065],[-78.30467688699991,58.95994700700011],[-78.28563391799992,58.97435130400007],[-78.24372311099992,58.99823639500015],[-78.27904212099995,58.99518463700015],[-78.29678300699993,58.99091217700014],[-78.31261145699997,58.983954169000135],[-78.31501217399992,58.98729075700008],[-78.31541907499994,58.988389390000016],[-78.32005774599986,58.99140045800011],[-78.30504309799994,59.001532294000086],[-78.29100501199987,59.00849030200008],[-78.27936764199985,59.017157294000164],[-78.27163652299987,59.03233470300016],[-78.27452551999988,59.03327057500003],[-78.27977454299989,59.038641669000086],[-78.28441321499992,59.04608795800008],[-78.28526770699992,59.05280182500012],[-78.27977454299989,59.05841705900012],[-78.26960201699984,59.06439850500014],[-78.25951087099986,59.06883372600011],[-78.25426184799989,59.069932359000134],[-78.24396725199995,59.06297435100008],[-78.22642981699991,59.05548737200009],[-78.21003170499992,59.053452867000075],[-78.20274817599991,59.063055731000055],[-78.2049454419999,59.07367584800009],[-78.22325598899997,59.10809967700011],[-78.20177161399992,59.11265696800017],[-78.17861894399988,59.092230536],[-78.15558834499993,59.09381745000003],[-78.13141842399992,59.10789622600007],[-78.12612870999993,59.12327708500011],[-78.13556881399994,59.139349677],[-78.15558834499993,59.15521881700012],[-78.13744055899991,59.16132233299999],[-78.10472571499989,59.155381578000075],[-78.08665930899988,59.161444403000175],[-78.09264075399989,59.173692124000134],[-78.09748287699993,59.19859446800008],[-78.10655676999997,59.20990631700006],[-78.07555091099994,59.22691478100001],[-77.99840247299989,59.24449290600016],[-77.96629798099991,59.26170482000007],[-77.94981848899994,59.267889716000134],[-77.90656490799995,59.26890696800011],[-77.8782852859999,59.28058502800009],[-77.81920325399996,59.29303620000003],[-77.83657792899993,59.302598374000105],[-77.87547766799995,59.30780670799999],[-77.89488684799994,59.312933661000116],[-77.86929277299987,59.32050202000006],[-77.81094316299988,59.32013580900015],[-77.78502356699988,59.32652415600007],[-77.76732337099989,59.34039948100014],[-77.7701716789999,59.35069407800007],[-77.80614173099988,59.36815013200014],[-77.77790279899992,59.38190338700015],[-77.67516028599991,59.40228913000014],[-77.68748938699986,59.406683661000116],[-77.71182206899991,59.410589911000116],[-77.7235408189999,59.415961005000085],[-77.72679602799985,59.40818919500007],[-77.73216712099992,59.40269603100013],[-77.73924719999987,59.40123118700008],[-77.75340735599988,59.40802643400012],[-77.76496334499993,59.407538153000026],[-77.77074133999989,59.40851471600008],[-77.77082271999987,59.410834052000055],[-77.77301998599995,59.42230866100001],[-77.77448482999992,59.42584870000009],[-77.79295813699994,59.43256256700011],[-77.81484941299988,59.42682526200014],[-77.85391191299993,59.40851471600008],[-77.87022864499993,59.404364325000145],[-77.89061438699994,59.40143463700003],[-77.90802975199992,59.40473053600008],[-77.91539466099991,59.41905345300016],[-77.90794837099992,59.43512604400005],[-77.88971920499995,59.445379950000145],[-77.86729895699995,59.45018138200005],[-77.84707597599993,59.45005931200008],[-77.84707597599993,59.45697663000009],[-77.88117428299992,59.48493073100012],[-77.84154212099989,59.50861237200002],[-77.73721269399994,59.53949616100009],[-77.73033606699994,59.54865143400015],[-77.73216712099992,59.56529368700002],[-77.72667395699996,59.57672760600015],[-77.7161759109999,59.62140534100003],[-77.72594153599994,59.63047923400005],[-77.75348873599998,59.63153717699999],[-77.76768958199989,59.63878001500011],[-77.78490149599992,59.65936920800015],[-77.79332434799994,59.67182038000005],[-77.79869544199991,59.682847398000106],[-77.78343665299985,59.68223704600014],[-77.76891028599991,59.68390534100016],[-77.75568600199993,59.68866608300005],[-77.74404863199996,59.697129624000105],[-77.76089433499996,59.70477936400011],[-77.77818762899994,59.71015045799999],[-77.7062068349999,59.70331452000006],[-77.69469153599988,59.699652411000116],[-77.68106035099993,59.68244049700011],[-77.66852779899995,59.67670319200012],[-77.63048255099994,59.67719147300012],[-77.60505123599992,59.68052806200013],[-77.58983313699986,59.6862653670001],[-77.57774817599994,59.695176499000134],[-77.57030188699989,59.693426825000145],[-77.56314042899992,59.68577708500014],[-77.55223548099985,59.676621812000135],[-77.48753821499992,59.64777252800004],[-77.46214758999987,59.62457916900009],[-77.46971594999985,59.59467194200011],[-77.44298255099994,59.577582098000065],[-77.39976966099994,59.56940338700015],[-77.31273352799987,59.566758531000076],[-77.31273352799987,59.572984117000125],[-77.38609778599991,59.58299388200011],[-77.4258520169999,59.595404364000146],[-77.44981848899992,59.61456940300011],[-77.44318600199988,59.62641022300006],[-77.44456946499986,59.644883531000104],[-77.45197506399995,59.66368235900013],[-77.46288001199991,59.676621812000135],[-77.48058020699992,59.68317291900003],[-77.54548092399992,59.68968333500011],[-77.54600989499988,59.69452545800003],[-77.54466712099989,59.69611237200006],[-77.53799394399994,59.697129624000105],[-77.54548092399992,59.697129624000105],[-77.53307044199988,59.70128001500013],[-77.51813717399995,59.70286692900008],[-77.50316321499992,59.706651109000106],[-77.49083411399995,59.71759674700017],[-77.50739498599992,59.71881745000008],[-77.52025305899986,59.72687409100002],[-77.53197180899994,59.737046617000075],[-77.54548092399992,59.74494049700005],[-77.53538977799985,59.75934479400012],[-77.52188066299988,59.757757880000085],[-77.50731360599985,59.749701239000146],[-77.49396725199992,59.74494049700005],[-77.46841386599993,59.74774811400001],[-77.45962480399987,59.75535716400013],[-77.45702063699989,59.766302802],[-77.44981848899992,59.779038804000045],[-77.43244381399995,59.789618231000084],[-77.41104081899994,59.793402411000116],[-77.3216853509999,59.790472723],[-77.30040442599991,59.79205963700004],[-77.29161536399997,59.799546617000104],[-77.35130774599995,59.866766669000135],[-77.36046301999994,59.885484117000104],[-77.37173417899993,59.90033600500008],[-77.39582271999984,59.908514716000084],[-77.41832434799993,59.91364166900008],[-77.42503821499989,59.919297593000074],[-77.41051184799994,59.92564524900002],[-77.36807206899996,59.925767319999984],[-77.35301673099985,59.92987702000015],[-77.35993404899995,59.93744538],[-77.36782792899993,59.94224681200007],[-77.3770238919999,59.944281317],[-77.38719641799995,59.94354889500009],[-77.36668860599988,59.956488348000086],[-77.34683183499986,59.964951890000016],[-77.32510331899991,59.969468492],[-77.29898027299996,59.970892645000156],[-77.31541907499985,59.97919342700011],[-77.33315995999993,59.9844831400001],[-77.31346594999991,59.99176666900003],[-77.25841223899994,59.998277085000105],[-77.23631751199986,59.99750397300009],[-77.23631751199986,60.00495026200015],[-77.25597083199992,60.00446198100017],[-77.28010006399992,60.007269598000114],[-77.3014216789999,60.01398346600017],[-77.31273352799987,60.02545807500003],[-77.28311113199993,60.02659739800004],[-77.24474036399991,60.03367747600011],[-77.20946204299989,60.04535553600011],[-77.18919837099986,60.06024811400007],[-77.21568762899994,60.05829498900012],[-77.30467688699994,60.036444403000175],[-77.33079993399988,60.03571198100015],[-77.3492732409999,60.04218170800006],[-77.34618079299995,60.06024811400007],[-77.35716712099989,60.064276434000035],[-77.36974036399988,60.06696198100012],[-77.38272050699987,60.06793854400008],[-77.39460201699984,60.06647370000004],[-77.40160071499992,60.062363999000084],[-77.41478430899986,60.04938385600018],[-77.41856848899988,60.04657623900011],[-77.47655188699986,60.05280182500008],[-77.55601966099988,60.05280182500008],[-77.56330318899998,60.05487702000003],[-77.57799231699988,60.064276434000035],[-77.58641516799993,60.06647370000004],[-77.6341853509999,60.06647370000004],[-77.62043209499987,60.075262762000094],[-77.59080969999991,60.086493231000084],[-77.57957923099991,60.09434642100008],[-77.58714758999989,60.09870026200015],[-77.59227454299989,60.10358307500006],[-77.60069739499994,60.114813544000135],[-77.55711829299992,60.130560614],[-77.53359941299996,60.13426341400004],[-77.51406816299988,60.12543366100008],[-77.50690670499995,60.12421295800005],[-77.4940486319999,60.12579987200009],[-77.48102779899992,60.12885163],[-77.47313391799985,60.132269598],[-77.4630427729999,60.13300202000011],[-77.40827389199987,60.12909577000012],[-77.40827389199987,60.13532135600009],[-77.4824926419999,60.15363190300015],[-77.50450598899991,60.162665106000155],[-77.53530839799987,60.18370189000011],[-77.55101477799994,60.19794342700003],[-77.55968176999991,60.21104564000016],[-77.5139867829999,60.207831122000115],[-77.49058997299991,60.209580796000104],[-77.46971594999985,60.217230536000145],[-77.53148352799985,60.25511302300007],[-77.55280514199993,60.26402415600002],[-77.56419837099989,60.26744212400002],[-77.56086178299994,60.27244700700005],[-77.53799394399994,60.28620026200018],[-77.56029212099989,60.28510163000014],[-77.59520423099991,60.269598700000024],[-77.61367753799993,60.26569245000003],[-77.62189693899992,60.27244700700005],[-77.61587480399993,60.28839752800018],[-77.59325110599985,60.32090892100014],[-77.60802161399994,60.333685614],[-77.61644446499989,60.33917877800012],[-77.63329016799987,60.34369538000008],[-77.63341223899997,60.34918854400012],[-77.63141842399992,60.35569896],[-77.6341853509999,60.36127350500003],[-77.65339107999993,60.36847565300003],[-77.69627844999991,60.37584056200013],[-77.7161759109999,60.38239166900003],[-77.74315344999988,60.40424225500006],[-77.74225826699987,60.42584870000015],[-77.72337805899994,60.44627513200014],[-77.69627844999991,60.464911200000024],[-77.59170488199989,60.50263092699999],[-77.56590735599988,60.518906968000024],[-77.5628149079999,60.52460358300003],[-77.56017005099991,60.53681061400008],[-77.55601966099988,60.54315827000004],[-77.54694576699987,60.547430731000034],[-77.41510982999998,60.54682038000006],[-77.43517005099994,60.55857982000005],[-77.4608455069999,60.56659577000009],[-77.54181881399995,60.57566966399998],[-77.57274329299992,60.57416413000014],[-77.58397376199991,60.571112372000144],[-77.60728919199991,60.56183502800009],[-77.61742102799988,60.559881903000054],[-77.66466223899994,60.55658600500003],[-77.68602454299989,60.558294989000025],[-77.77057857999992,60.592474677],[-77.7887263659999,60.60484446800014],[-77.82925370999993,60.643255927000055],[-77.82970130099993,60.649237372000144],[-77.81285559799994,60.65363190300015],[-77.7577205069999,60.684027411000116],[-77.7184138659999,60.69916413000011],[-77.7010798819999,60.708441473000065],[-77.67121334499993,60.73253001500009],[-77.62555904899997,60.75438060100013],[-77.6068416009999,60.759100653000026],[-77.62954667899994,60.77496979400017],[-77.66795813699989,60.77586497600005],[-77.74404863199996,60.76654694200011],[-77.71833248599992,60.7812360700001],[-77.51065019399988,60.834824937000015],[-77.51065019399988,60.84100983300008],[-77.56102454299992,60.838812567],[-77.89488684799994,60.75230540600002],[-77.88898678299992,60.763739325000145],[-77.88048255099989,60.7739118510001],[-77.8600968089999,60.79266998900005],[-77.88166256399992,60.8002790390001],[-77.96996008999989,60.79266998900005],[-77.88068600199995,60.827378648000135],[-77.91942298099988,60.83527252800012],[-77.96288001199991,60.82933177299999],[-78.04572506399995,60.80695221600017],[-78.07982337099986,60.80695221600017],[-78.19652258999994,60.79266998900005],[-78.17076575399992,60.85883209800007],[-78.16551673099991,60.86835358300005],[-78.14045162699992,60.873602606000034],[-78.12193762899992,60.886338609000106],[-78.09414628799993,60.91681549700005],[-78.02236894399994,60.95103587400002],[-78.01097571499989,60.96116771000009],[-78.00275631399998,60.97235748900008],[-77.88792883999986,61.0370954450001],[-77.87100175699987,61.050238348000065],[-77.86168372299994,61.054388739],[-77.8480118479999,61.055243231000084],[-77.82258053299998,61.053941148000106],[-77.80931555899986,61.05707428600008],[-77.80817623599992,61.06513092700011],[-77.81163489499991,61.076117255000085],[-77.81236731699994,61.088080145],[-77.79015051999988,61.14581940300006],[-77.7887263659999,61.155747789000046],[-77.78042558499993,61.16010163000014],[-77.76520748599995,61.1793073590001],[-77.75462805899991,61.18366120000009],[-77.70311438699994,61.19110748900006],[-77.69273841099994,61.20734284100011],[-77.70824133999994,61.218613999000084],[-77.75153561099991,61.23204173400007],[-77.74388587099989,61.24229564000002],[-77.73460852799985,61.24994538000014],[-77.72679602799985,61.25897858300006],[-77.7235408189999,61.2730573590001],[-77.72679602799985,61.27924225500005],[-77.74083411399991,61.290513414000074],[-77.74404863199996,61.297227281000104],[-77.74486243399988,61.34967682500015],[-77.74840247299994,61.37482330900006],[-77.75645911399988,61.39976634300016],[-77.78526770699992,61.45469798400016],[-77.77159583199989,61.46263255400011],[-77.74909420499989,61.45892975500009],[-77.73721269399994,61.45457591399998],[-77.7240291009999,61.43842194200012],[-77.69758053299992,61.43183014500014],[-77.67715410099993,61.439276434000035],[-77.68260657499988,61.4648298200001],[-77.60773678299988,61.46466705900015],[-77.57160396999987,61.47040436400012],[-77.54548092399992,61.48533763200008],[-77.63329016799987,61.50934479400011],[-77.66612708199989,61.52765534100017],[-77.65465247299994,61.55418528900004],[-77.64126542899993,61.56024811400011],[-77.62262936099995,61.56407298400013],[-77.60366777299996,61.56378815300011],[-77.5684301419999,61.547552802000084],[-77.47655188699986,61.53998444200012],[-77.50080318899995,61.56329987200003],[-77.5455623039999,61.57591380400011],[-77.6341853509999,61.582139390000165],[-77.62315833199995,61.59300364800005],[-77.60728919199991,61.59398021000011],[-77.58942623599995,61.59227122600011],[-77.57274329299992,61.59520091400004],[-77.57274329299992,61.601385809000114],[-77.59923255099997,61.60846588700018],[-77.68569902299986,61.608832098000086],[-77.70836341099991,61.61627838700014],[-77.7403865229999,61.64923737200006],[-77.75462805899991,61.656683661000116],[-77.76423092399989,61.665961005000085],[-77.79271399599989,61.701361395000085],[-77.79869544199991,61.701361395000085],[-77.81456458199993,61.69183991100009],[-77.93984941299993,61.693589585000076],[-77.96642005099989,61.701849677000055],[-77.98973548099991,61.71482982000007],[-78.00475012899992,61.732367255],[-78.0069880849999,61.74249909100014],[-78.00682532499984,61.75377024900014],[-78.00475012899992,61.766546942],[-78.00918535099989,61.77826569200008],[-78.01329505099994,61.782700914000046],[-78.01805579299995,61.78571198100014],[-78.02456620999993,61.79315827000011],[-78.02830969999988,61.80060455900012],[-78.03441321499986,61.81854889500006],[-78.03892981699991,61.82794830900017],[-78.04580644399994,61.83771393400012],[-78.06554114499994,61.85582103100013],[-78.07876542899989,61.87311432500003],[-78.08482825399989,61.88804759300016],[-78.08299719999991,61.90399811400008],[-78.07306881399992,61.92413971600003],[-78.08014889199987,61.93768952000009],[-78.08556067599991,61.95811595300016],[-78.09398352799988,61.97687409100002],[-78.12767493399987,61.99327220300002],[-78.13695227799994,62.013495184000035],[-78.14069576699987,62.038560289000046],[-78.1427302729999,62.107285874000056],[-78.14781653599991,62.128607489],[-78.15868079299992,62.14667389500012],[-78.16502844999994,62.16693756700011],[-78.15802975199993,62.18992747600011],[-78.14683997299994,62.21271393400003],[-78.14126542899993,62.23200104400017],[-78.15591386599993,62.27374909100011],[-78.15489661399987,62.29730866100005],[-78.13141842399992,62.30772532800013],[-78.11815344999988,62.309759833000086],[-78.11066646999993,62.31578196800009],[-78.10728919199991,62.32542552300004],[-78.10655676999997,62.338446356000034],[-78.10049394399996,62.34711334800012],[-78.02403723899997,62.391791083],[-78.01097571499989,62.396470445000105],[-77.97687740799998,62.396470445000105],[-77.93561764199993,62.40704987200014],[-77.91661536399991,62.42072174700008],[-77.9054255849999,62.423814194999984],[-77.88784745999988,62.42597077000009],[-77.78465735599985,62.46796295800005],[-77.76455644399991,62.472235419000164],[-77.71422278599997,62.47296784100011],[-77.68700110599985,62.477280992000104],[-77.67516028599991,62.48932526200012],[-77.65660559799989,62.51658763200011],[-77.61412512899992,62.531683661000116],[-77.53799394399994,62.547308661],[-77.52391516799992,62.557440497000144],[-77.50157630099997,62.58002350500014],[-77.49083411399995,62.588324286000116],[-77.47179114499997,62.59381745000005],[-77.40485592399995,62.588324286000116],[-77.40025794199991,62.584662177000055],[-77.39256751199991,62.567084052000105],[-77.38719641799995,62.560980536000145],[-77.37751217399989,62.55756256700012],[-77.3710017569999,62.55792877800015],[-77.36506100199995,62.55988190300008],[-77.3567602199999,62.560980536000145],[-77.27668209499993,62.55365631700011],[-77.25059973899994,62.554144598000114],[-77.24364173099988,62.549383856000034],[-77.16836503799986,62.547308661],[-77.16100012899989,62.54596588700012],[-77.15184485599991,62.54230377800015],[-77.14403235599991,62.53697337400008],[-77.14073645699997,62.530585028000175],[-77.1371150379999,62.52680084800014],[-77.12877356699994,62.52830638200002],[-77.1134333979999,62.533677476000044],[-77.07848059799989,62.53526439000007],[-77.06627356699991,62.533677476000044],[-77.05785071499986,62.52912018400012],[-77.05060787699995,62.522772528000175],[-77.04328365799992,62.51923248900001],[-77.01878821499992,62.53379954600002],[-76.99510657499987,62.54071686400012],[-76.96983801999994,62.543443101000015],[-76.94896399599986,62.541083075000145],[-76.93382727799988,62.534409897999986],[-76.92332923099988,62.52753327000009],[-76.9120173819999,62.522162177000105],[-76.75772050699993,62.51080963700015],[-76.73582923099988,62.50633372599999],[-76.71930904899992,62.49616120000006],[-76.70474199099988,62.48936595300002],[-76.66466223899994,62.48688385600009],[-76.64732825399996,62.47837962400014],[-76.65477454299993,62.472235419000164],[-76.6268611319999,62.46165599200013],[-76.59569251199991,62.45807526200015],[-76.53404700399987,62.459173895],[-76.46446692599987,62.43537018400012],[-76.40147864499997,62.431219794000164],[-76.30467688699986,62.40729401200009],[-76.2193497389999,62.39927806200016],[-76.19058183499988,62.38780345300002],[-76.14989173099987,62.38707103100007],[-76.13341223899991,62.38287995000014],[-76.12535559799997,62.374701239000146],[-76.11595618399994,62.35443756700014],[-76.11290442599994,62.34931061400012],[-76.09854081899996,62.34564850500008],[-76.08438066299993,62.34825267100017],[-76.06993567599989,62.352972723000086],[-76.0548396479999,62.35553620000009],[-76.04133053299992,62.353379624000084],[-76.02318274599992,62.343980210000055],[-76.01390540299985,62.34186432500014],[-75.99762936099991,62.34434642100016],[-75.96678626199986,62.354356187000164],[-75.94904537699995,62.35553620000009],[-75.93858801999988,62.352118231000176],[-75.91429602799991,62.33502838700003],[-75.85558020699989,62.324408270000085],[-75.82974199099988,62.313340562000135],[-75.65859941299988,62.296494859000134],[-75.59215247299994,62.27301666900008],[-75.59215247299994,62.26679108300011],[-75.71642005099991,62.23802317899999],[-75.75348873599992,62.214951890000016],[-75.7709041009999,62.20673248900012],[-75.81236731699991,62.202134507],[-75.82827714799993,62.19444407800016],[-75.84154212099995,62.18585846600015],[-75.89378821499986,62.16376373900005],[-75.83169511599993,62.16376373900005],[-75.81436113199993,62.16844310099999],[-75.7764786449999,62.186957098],[-75.73542232999989,62.19537995000014],[-75.6796768869999,62.21576569200012],[-75.66783606699994,62.222113348000065],[-75.57506262899992,62.24567291900011],[-75.4934789699999,62.295884507],[-75.47028561099995,62.30194733299999],[-75.32774817599994,62.317450262000094],[-75.17442786399992,62.29405345300002],[-75.15050208199997,62.284979559000114],[-75.1421606109999,62.27228424700014],[-75.14460201699984,62.25495026200015],[-75.15330969999991,62.23200104400017],[-75.13304602799991,62.23484935100011],[-75.10391191299993,62.261297919000086],[-75.08503170499992,62.26679108300011],[-75.0924373039999,62.26679108300011],[-75.0517471999999,62.27374909100011],[-75.00609290299988,62.26898834800003],[-74.89037024599985,62.234238999000134],[-74.84089107999992,62.20392487200017],[-74.78966223899988,62.18207428600011],[-74.78335527299993,62.17804596600014],[-74.77965247299989,62.17340729400003],[-74.77033443899995,62.15753815300012],[-74.75853430899988,62.15208567900008],[-74.67296301999988,62.12376536700014],[-74.59825598899997,62.11066315300014],[-74.55809485599988,62.1091169290001],[-74.55809485599988,62.116563218000074],[-74.58478756399998,62.12181224199999],[-74.63735917899993,62.144883531000126],[-74.68419348899988,62.155829169000114],[-74.74107825399992,62.18512604400002],[-74.75601152299987,62.197821356000176],[-74.7550349599999,62.21356842700013],[-74.74229895699995,62.23151276200017],[-74.72354081899987,62.24640534100014],[-74.70490475199989,62.252508856000034],[-74.41685950399993,62.252508856000034],[-74.39256751199989,62.25914134300008],[-74.3782445949999,62.26487864800007],[-74.37189693899994,62.26988353100002],[-74.36497962099986,62.27826569200006],[-74.34894771999987,62.28257884300016],[-74.31786048099985,62.286607164000046],[-74.29564368399991,62.29840729400011],[-74.27839107999989,62.3234723980001],[-74.24400794199994,62.33067454600014],[-74.23058020699995,62.33515045799999],[-74.21678626199986,62.33702220300008],[-74.19151770699987,62.32599518400012],[-74.17357337099986,62.32408274900017],[-74.15469316299993,62.3251813820001],[-74.13906816299993,62.3282331400001],[-74.08698482999989,62.352240302000055],[-74.0182185539999,62.36078522300006],[-73.99791419199991,62.36737702000015],[-73.98204505099997,62.376654364],[-73.95702063699989,62.40538157800013],[-73.94225012899987,62.418402411000145],[-73.90709387899992,62.429673570000126],[-73.88975989499994,62.44293854400015],[-73.87657630099989,62.456854559000035],[-73.87218176999991,62.46478913],[-73.74868730399987,62.472235419000164],[-73.69603430899987,62.48102448100006],[-73.67072506399992,62.482123114],[-73.64631100199998,62.472235419000164],[-73.63304602799985,62.45990631700011],[-73.59479732999988,62.41417064000002],[-73.5714412099999,62.39484284100009],[-73.55235755099991,62.39073314000014],[-73.5313207669999,62.39240143400015],[-73.5023087229999,62.39032623900011],[-73.48985755099989,62.38585032800007],[-73.48155676999991,62.37995026200004],[-73.47508704299989,62.37409088700009],[-73.46812903599991,62.36981842700008],[-73.45018469999988,62.36619700700011],[-73.43683834499987,62.36908600500006],[-73.42369544199988,62.37396881700011],[-73.40636145699992,62.376654364],[-73.37816321499992,62.37046946800002],[-73.35741126199994,62.356268622000115],[-73.33885657499992,62.34015534100014],[-73.31729081899991,62.3282331400001],[-73.24767005099991,62.32160065300003],[-73.20954342399995,62.31281159100017],[-73.2040909499999,62.297471421000026],[-73.21202551999988,62.27631256700012],[-73.19603430899988,62.260565497000144],[-73.08389238199993,62.214951890000016],[-73.07371985599988,62.20579661700004],[-73.06883704299992,62.19578685100005],[-73.06216386599996,62.18756745000014],[-73.04674231699994,62.18419017100015],[-73.00999915299994,62.18126048400002],[-72.96898352799991,62.172919012000065],[-72.9298396479999,62.159979559000035],[-72.89899654899992,62.14325592700011],[-72.9094132149999,62.13361237200014],[-72.92162024599988,62.12950267100008],[-72.93455969999988,62.12714264500015],[-72.94737708199992,62.12274811400006],[-72.82461503799993,62.11705149900017],[-72.7828669909999,62.1091169290001],[-72.7828669909999,62.116563218000074],[-72.82384192599991,62.13580963700004],[-72.80650794199991,62.14256419500007],[-72.75405839799987,62.15009186400011],[-72.73448645699989,62.15009186400011],[-72.71739661399994,62.14463939000008],[-72.68789628799988,62.12665436400006],[-72.62913977799988,62.11688873900011],[-72.62144934799994,62.10187409100008],[-72.63703365799995,62.082017319999984],[-72.6661677729999,62.06134674700017],[-72.6263321609999,62.062933661],[-72.60838782499988,62.05931224200004],[-72.59797115799998,62.04767487200002],[-72.61229407499988,62.04356517100008],[-72.61587480399993,62.036566473],[-72.61050370999988,62.028062242000075],[-72.59797115799998,62.01972077],[-72.60334225199995,62.006781317],[-72.60415605399996,61.98847077000011],[-72.60777747299991,61.9721540390001],[-72.62120520699992,61.965073960000055],[-72.67300370999992,61.95831940300011],[-72.68512936099992,61.951280015000144],[-72.68871008999987,61.94542064000011],[-72.68667558499996,61.927313544000086],[-72.68736731699991,61.910752671000026],[-72.69131425699987,61.90232982000008],[-72.79596920499995,61.835394598000065],[-72.75499426999993,61.835394598000065],[-72.73102779899989,61.84674713700003],[-72.6928604809999,61.87559642100013],[-72.6661677729999,61.883164781000104],[-72.66323808499988,61.85008372600006],[-72.63158118399991,61.82099030199999],[-72.60187740799998,61.81256745000006],[-72.6048070949999,61.841620184000114],[-72.61945553299992,61.86688873900006],[-72.63170325399997,61.89561595300001],[-72.63048255099994,61.922919012000094],[-72.60521399599992,61.94367096600011],[-72.59569251199991,61.943182684000114],[-72.56956946499986,61.93292877800009],[-72.48802649599992,61.92413971600003],[-72.35708574099993,61.889390367000075],[-72.2323298819999,61.88129303600014],[-72.20319576699984,61.865790106000034],[-72.19684811099992,61.85553620000008],[-72.19359290299988,61.846380927000105],[-72.18927975199995,61.83746979400017],[-72.1795955069999,61.82794830900017],[-72.14354407499985,61.809759833],[-72.13182532499988,61.80060455900012],[-72.15054277299993,61.800401109000155],[-72.20628821499992,61.79315827000011],[-72.19277910099996,61.78819407800007],[-72.18700110599988,61.78697337400016],[-72.18700110599988,61.780137437000135],[-72.2115779289999,61.77887604400005],[-72.22468014199987,61.76622142100017],[-72.22370357999989,61.75018952000009],[-72.20628821499992,61.738592841000134],[-72.19469153599991,61.73741282800013],[-72.18236243399987,61.739121812000135],[-72.17088782499991,61.74323151200017],[-72.15111243399991,61.756699937000164],[-72.14110266799992,61.75739166900011],[-72.0762833319999,61.744859117000104],[-72.05748450399997,61.73712799700008],[-72.04238847599996,61.72553131700008],[-72.03807532499985,61.71649811400008],[-72.03718014199987,61.707383531000076],[-72.03453528599988,61.700384833],[-72.0158585279999,61.695664781000104],[-72.00584876199991,61.690781968000024],[-71.9981176419999,61.68406810099999],[-71.99522864499997,61.67711009300008],[-72.00470943899998,61.65989817900007],[-72.02464758999986,61.6415876320001],[-72.0628962879999,61.615668036000024],[-72.08511308499988,61.60626862200008],[-72.1065974599999,61.603257554],[-72.12840735599985,61.60468170800005],[-72.20152747299994,61.617417710000026],[-72.24347896999993,61.61762116100006],[-72.27733313699987,61.60309479400002],[-72.30308997299991,61.56785716399998],[-72.24201412699995,61.59747955900012],[-72.22085527299996,61.601385809000114],[-72.11896725199993,61.589178778000026],[-72.08340410099986,61.588934637000094],[-72.06956946499989,61.59117259300008],[-72.03624426999988,61.601385809000114],[-72.02301998599995,61.60309479400002],[-71.99152584499993,61.601385809000114],[-71.97948157499991,61.60382721600015],[-71.97203528599994,61.61045970300001],[-71.9683324859999,61.62030670800014],[-71.96727454299993,61.63239166900006],[-71.96373450399994,61.64195384300002],[-71.95567786399994,61.646795966000106],[-71.94644120999996,61.65049876500013],[-71.94001217399995,61.656683661000116],[-71.9354141919999,61.670965887000115],[-71.93797766799992,61.67772044500005],[-71.94473222599996,61.68248118700013],[-71.95303300699992,61.690781968000024],[-71.96983801999994,61.70123932500011],[-71.97276770699997,61.708197333],[-71.95677649599989,61.711249091000084],[-71.86363684799991,61.697617906000126],[-71.80907141799986,61.68329498900005],[-71.76065019399996,61.67706940300008],[-71.75133216099991,61.674017645],[-71.73232988199989,61.66539134300011],[-71.67442786399991,61.65631745000009],[-71.6520076159999,61.649847723],[-71.58096269399994,61.61383698100003],[-71.56944739499991,61.601385809000114],[-71.5905655589999,61.601385809000114],[-71.57526607999995,61.596991278000026],[-71.55821692599991,61.587347723000065],[-71.54865475199992,61.574652411],[-71.55577551999995,61.56102122600005],[-71.56712805899994,61.558539130000106],[-71.60732988199993,61.56785716399998],[-71.62389075399992,61.56549713700012],[-71.62783769399991,61.55963776200018],[-71.62913977799991,61.552679755],[-71.63776607999989,61.546820380000135],[-71.69151770699995,61.53925202],[-71.80353756399992,61.54230377800008],[-71.85741126199989,61.53375885600015],[-71.84850012899992,61.52313873900012],[-71.83145097599987,61.52183665600002],[-71.79259192599997,61.526922919000135],[-71.78693600199998,61.522894598000086],[-71.78099524599995,61.513902085000055],[-71.78180904899995,61.50438060100007],[-71.79600989499997,61.49896881700012],[-71.79600989499997,61.49152252800003],[-71.77310136599988,61.48273346600017],[-71.76130123599992,61.479722398000085],[-71.74819902299993,61.47911204600011],[-71.76878821499989,61.460923570000105],[-71.81090247299994,61.44794342700011],[-71.89159094999985,61.43695709800006],[-71.89159094999985,61.430731512000094],[-71.85529537699995,61.42377350500011],[-71.79572506399995,61.42332591400013],[-71.7345271479999,61.410223700000145],[-71.61851966099994,61.41803620000014],[-71.58311926999993,61.410223700000145],[-71.62779700399992,61.39594147300006],[-71.64647376199989,61.39374420800006],[-71.65562903599995,61.38837311400004],[-71.6619766919999,61.38165924700014],[-71.67186438699991,61.375474351],[-71.70726477799991,61.368353583000136],[-71.8226619129999,61.375474351],[-71.80370032499991,61.37010325700014],[-71.79600989499997,61.36924876500013],[-71.79600989499997,61.361802476000044],[-71.81501217399997,61.3559431010001],[-71.8226619129999,61.354966539000046],[-71.80557206899996,61.34784577000009],[-71.7841690749999,61.34617747600008],[-71.74136308499993,61.3481306010001],[-71.72126217399997,61.34532298400007],[-71.6856990229999,61.33466217700014],[-71.66563880099994,61.33445872599999],[-71.67564856699994,61.31915924700003],[-71.69147701699987,61.30809153899999],[-71.72712154899992,61.29352448100015],[-71.72712154899992,61.287298895],[-71.69644120999993,61.27741120000009],[-71.59679114499988,61.25938548400016],[-71.61815344999994,61.23432038000006],[-71.6256404289999,61.221909898000135],[-71.63093014199988,61.20416901200003],[-71.61758378799996,61.20762767100013],[-71.59459387899989,61.22223541900014],[-71.58311926999993,61.224595445000105],[-71.5729060539999,61.22052643400015],[-71.56639563699991,61.21275462400014],[-71.56143144399995,61.20416901200003],[-71.55577551999995,61.19733307500003],[-71.57433020699997,61.17308177300013],[-71.58043372299997,61.16095612200006],[-71.57286536399991,61.155747789000046],[-71.55406653599997,61.156805731000084],[-71.53669186099998,61.15977610900001],[-71.52110755099987,61.164292710000076],[-71.50796464799993,61.16998932500014],[-71.52253170499995,61.182440497000165],[-71.53376217399996,61.19627513200008],[-71.53538977799988,61.21076080900012],[-71.5210668609999,61.224595445000105],[-71.49767005099991,61.23090241100005],[-71.47581946499989,61.226385809000085],[-71.45970618399991,61.213364976000115],[-71.45335852799987,61.194199937000135],[-71.44399980399993,61.184678453000124],[-71.39500891799989,61.149522203000075],[-71.38902747299997,61.14183177300008],[-71.37157141799992,61.12901439000005],[-71.35997473899988,61.12645091400013],[-71.37144934799994,61.149522203000075],[-71.27497311099995,61.155747789000046],[-71.2315160799999,61.16746653900013],[-71.21328691299993,61.167222397999986],[-71.22061113199993,61.149522203000075],[-71.21108964799993,61.13825104400009],[-71.19737708199992,61.12584056200016],[-71.18504798099988,61.12274811400009],[-71.17967688699991,61.13959381700009],[-71.1676326159999,61.141058661000145],[-71.11143958199992,61.12523021000011],[-71.09365800699993,61.125596421000026],[-71.07188880099993,61.13279857000005],[-71.03880774599992,61.131781317],[-70.9554744129999,61.116197007],[-70.93537350199995,61.10663483300012],[-70.9273982409999,61.09271881700012],[-70.93944251199991,61.07379791900011],[-70.84691321499992,61.075425523000135],[-70.8227432929999,61.06757233300005],[-70.81383216099988,61.06134674700008],[-70.80284583199992,61.05711497600008],[-70.78990637899992,61.05475495000012],[-70.77497311099995,61.053941148000106],[-70.76207434799994,61.05670807500014],[-70.76178951699993,61.063055731000084],[-70.7696833979999,61.06976959800015],[-70.78180904899989,61.07379791900011],[-70.76178951699993,61.08580149900003],[-70.72573808499996,61.079046942],[-70.65827389199987,61.053941148000106],[-70.65827389199987,61.04649485900004],[-70.66624915299994,61.04437897300012],[-70.68561764199987,61.032822984000106],[-70.66771399599989,61.02684153899998],[-70.60366777299993,61.032822984000106],[-70.55443274599992,61.01386139500009],[-70.53538977799991,61.01231517100015],[-70.53538977799991,61.019842841000084],[-70.54662024599992,61.02301666900015],[-70.5562231109999,61.028387762000115],[-70.56379146999984,61.03611888200014],[-70.56891842399995,61.04649485900004],[-70.56069902299996,61.045721747000115],[-70.5436091789999,61.04706452],[-70.53538977799991,61.04649485900004],[-70.53742428299995,61.04901764500015],[-70.53917395699995,61.0517438820001],[-70.54161536399997,61.053941148000106],[-70.54161536399997,61.06012604400017],[-70.52668209499991,61.06541575700005],[-70.50767981699994,61.064764716000106],[-70.4884333979999,61.06028880400014],[-70.47272701699993,61.053941148000106],[-70.47105872299991,61.05036041900003],[-70.46996008999986,61.037543036],[-70.46646074099996,61.032822984000106],[-70.45750891799995,61.029608466000056],[-70.42552649599995,61.026597398000135],[-70.43195553299995,61.04022858300009],[-70.44058183499996,61.049994208000115],[-70.44318600199995,61.058294989],[-70.43175208199989,61.06757233300005],[-70.4244685539999,61.06366608300006],[-70.41893469999988,61.061997789000046],[-70.40440833199992,61.06012604400017],[-70.41364498599998,61.07294342700011],[-70.4183650379999,61.07721588700012],[-70.42552649599995,61.081244208],[-70.42552649599995,61.088080145],[-70.40196692599989,61.085923570000105],[-70.36363684799997,61.068793036000066],[-70.34292558499996,61.06757233300005],[-70.34732011599992,61.08307526200015],[-70.33971106699991,61.09479401200014],[-70.32510331899988,61.10040924700014],[-70.30882727799985,61.09772370000017],[-70.29906165299991,61.09422435099999],[-70.26724199099996,61.088080145],[-70.25352942599994,61.07689036700001],[-70.24673417899993,61.07379791900011],[-70.2291560539999,61.07330963700013],[-70.21519934799991,61.07847728100005],[-70.20250403599994,61.08494700700014],[-70.18879146999993,61.088080145],[-70.15534420499995,61.08763255400011],[-70.14403235599988,61.08356354400014],[-70.15119381399992,61.07379791900011],[-70.13914954299992,61.070176499000134],[-70.12437903599994,61.070298570000105],[-70.11270097599991,61.068793036000066],[-70.11021887899992,61.06012604400017],[-70.11632239499991,61.056016343000024],[-70.14248613199993,61.04523346600002],[-70.15119381399992,61.04026927300007],[-70.16006425699987,61.02167389500006],[-70.14899654899995,61.011175848],[-70.12694251199994,61.01023997600011],[-70.10338294199988,61.019842841000084],[-70.09593665299991,61.01231517100015],[-70.10960852799985,61.005072333000115],[-70.11172441299996,60.99607982000002],[-70.10338294199988,60.97821686400011],[-70.09927324099992,60.97235748900008],[-70.09483801999997,60.97081126500014],[-70.0912166009999,60.96881745000012],[-70.08971106699994,60.96116771000009],[-70.0906876289999,60.95563385600014],[-70.09284420499992,60.94953034100016],[-70.09496008999994,60.94513580900017],[-70.09593665299991,60.944688218000074],[-70.1029353509999,60.93309153899998],[-70.10484778599994,60.926092841000084],[-70.09968014199987,60.92295970300002],[-70.09666907499985,60.920518296000076],[-70.09260006399997,60.914740302000105],[-70.0895076159999,60.907904364],[-70.08971106699994,60.90253327000014],[-70.10090084499987,60.895615953000124],[-70.15119381399992,60.88947174700017],[-70.15119381399992,60.88202545799999],[-70.0759985019999,60.88153717700003],[-70.05500240799998,60.87579987200002],[-70.0648494129999,60.85809967700011],[-70.05870520699992,60.85032786700013],[-70.04222571499994,60.84825267100011],[-69.99486243399991,60.84906647300012],[-69.9866837229999,60.84788646],[-69.97923743399991,60.8434919290001],[-69.96349036399995,60.83018626500008],[-69.95596269399991,60.827378648000135],[-69.93236243399987,60.81452057500012],[-69.91588294199988,60.810003973000065],[-69.90103105399993,60.81683991100008],[-69.88825436099998,60.826605536000116],[-69.85838782499988,60.84223053600001],[-69.84951738199993,60.854681708000115],[-69.86986243399994,60.85106028900007],[-69.90782630099994,60.83775462400005],[-69.92833411399991,60.834824937000015],[-69.93871008999992,60.84019603100007],[-69.92149817599987,60.851629950000024],[-69.89745032499984,60.86216868700008],[-69.88707434799994,60.86493561400014],[-69.86066646999987,60.88397858300014],[-69.82054602799985,60.90428294500004],[-69.77696692599994,60.91950104400002],[-69.74030514199993,60.92295970300002],[-69.73936926999994,60.88609446800014],[-69.70262610599994,60.874335028000175],[-69.66234290299985,60.88523997600005],[-69.65094967399989,60.91681549700005],[-69.6612442699999,60.92780182500009],[-69.67870032499988,60.942450262000094],[-69.69172115799995,60.958807684000114],[-69.6884659499999,60.97479889500012],[-69.68468176999988,60.98228587400008],[-69.6815486319999,61.003363348],[-69.67882239499994,61.01231517100015],[-69.67198645699992,61.02216217700005],[-69.65868079299992,61.03196849199999],[-69.65094967399989,61.04026927300007],[-69.65127519399991,61.04734935100013],[-69.65412350199995,61.05646393400012],[-69.65103105399987,61.06427643400012],[-69.63385982999995,61.06757233300005],[-69.62450110599991,61.07078685100011],[-69.60118567599991,61.08490631700015],[-69.58543860599985,61.088080145],[-69.55768795499998,61.08600495000008],[-69.53661048099985,61.079697984000134],[-69.52037512899992,61.069037177000105],[-69.5069473949999,61.053941148000106],[-69.47325598899991,61.000067450000174],[-69.4625544909999,60.99188873900005],[-69.44839433499988,60.98358795799999],[-69.43342037699995,60.963975328000046],[-69.42341061099995,60.94110748900012],[-69.42438717399992,60.92295970300002],[-69.41002356699993,60.92328522300015],[-69.36974036399997,60.91681549700005],[-69.37462317599994,60.90436432500004],[-69.38760331899994,60.88178131700014],[-69.39020748599992,60.86835358300005],[-69.38703365799998,60.854925848000065],[-69.37291419199994,60.831610419000135],[-69.36974036399997,60.82396067900013],[-69.38133704299989,60.79987213700009],[-69.40929114499991,60.78412506700015],[-69.44318600199998,60.77537669500007],[-69.50584876199987,60.769964911000116],[-69.57237708199997,60.75153229400008],[-69.60244706899991,60.738633531000076],[-69.64395097599993,60.70860423400001],[-69.6543676419999,60.703924872000115],[-69.67039954299987,60.70201243700014],[-69.70518958199993,60.69074127800014],[-69.71979732999995,60.684027411000116],[-69.70763098899988,60.676011460000076],[-69.69249426999988,60.66120026200009],[-69.68321692599991,60.64305247599999],[-69.6884659499999,60.625067450000145],[-69.69762122299987,60.60809967699999],[-69.68553626199987,60.60346100500005],[-69.66714433499993,60.59943268400009],[-69.65770423099994,60.58409251500014],[-69.66673743399994,60.567206122000144],[-69.68797766799992,60.55646393400004],[-69.80809485599993,60.53558991100005],[-69.82900956899988,60.525742906000126],[-69.81916256399995,60.51854075700011],[-69.79491126199989,60.49225495000009],[-69.76012122299994,60.473211981000084],[-69.74974524599992,60.46222565300006],[-69.75698808499996,60.44721100500012],[-69.77049719999994,60.43414948100003],[-69.77586829299989,60.424505927000084],[-69.76927649599992,60.41852448100014],[-69.74681555899991,60.416489976000136],[-69.73534094999988,60.41132233300011],[-69.7291560539999,60.38560618700008],[-69.71979732999995,60.37555573100009],[-69.72667395699997,60.362656968000074],[-69.73932857999995,60.346625067],[-69.75328528599991,60.332953192000055],[-69.76988684799997,60.32404205900012],[-69.76549231699988,60.31708405200014],[-69.75328528599991,60.30662669500004],[-69.74453691299993,60.30390045800008],[-69.72154700399993,60.30243561400011],[-69.71231035099989,60.29979075700014],[-69.67198645699992,60.26325104400008],[-69.66515051999991,60.25511302300007],[-69.6569718089999,60.24152252800012],[-69.61693274599986,60.23517487200009],[-69.60244706899991,60.22467682500012],[-69.61278235599994,60.21417877800015],[-69.64073645699995,60.19525788000011],[-69.65094967399989,60.18370189000011],[-69.59943600199992,60.18370189000011],[-69.59557044199991,60.178900458000115],[-69.59959876199987,60.168036200000024],[-69.60993404899989,60.149603583],[-69.60973059799994,60.130560614],[-69.60716712099992,60.113714911],[-69.61099199099993,60.101060289000124],[-69.63044186099995,60.09434642100008],[-69.62804114499991,60.07672760600014],[-69.64647376199994,60.06858958500014],[-69.69530188699994,60.06647370000004],[-69.70612545499992,60.06329987200014],[-69.71426347599993,60.049668687000015],[-69.72288977799985,60.04657623900011],[-69.7355850899999,60.04901764500006],[-69.77440344999994,60.06647370000004],[-69.80504309799993,60.073431708000115],[-69.82628333199992,60.071600653000054],[-69.83873450399994,60.05780670800014],[-69.84268144399994,60.02887604400002],[-69.8255102199999,60.02240631700011],[-69.79271399599989,60.01451243700013],[-69.77306067599994,60.00433991100003],[-69.79491126199989,59.99131907800002],[-69.82164466099991,59.98920319200003],[-69.90103105399993,60.00495026200015],[-70.29515540299991,60.02545807500003],[-70.33617102799991,60.03229401200003],[-70.33617102799991,60.02545807500003],[-70.32835852799994,60.02301666900008],[-70.30943762899992,60.01178620000009],[-70.32945716099997,60.006048895000035],[-70.57192949099996,59.99498118700007],[-70.59679114499991,59.99750397300009],[-70.61514238199996,60.00397370000009],[-70.65074622299991,60.02179596600017],[-70.99620520699997,60.076239325000174],[-71.03506425699987,60.06647370000004],[-70.92125403599991,60.05552806200016],[-70.88149980399993,60.03502024900011],[-70.86278235599985,60.02948639500009],[-70.80797278599994,60.02330149900003],[-70.77301998599992,60.01398346600017],[-70.72158769399994,60.009222723000086],[-70.57770748599992,59.97724030200008],[-70.4801326159999,59.970892645000156],[-70.40729732999995,59.98899974200007],[-70.3845922519999,59.99131907800002],[-70.36921139199987,59.988959052000084],[-70.33828691299992,59.9797223980001],[-70.32249915299988,59.977647203000075],[-70.22663326699987,59.98651764500011],[-70.21324622299996,59.9844831400001],[-70.16486568899995,59.964056708000115],[-70.10680091099991,59.95335521000011],[-70.04503333199989,59.95099518400015],[-69.94200598899994,59.964056708000115],[-69.85806230399996,59.96092357000005],[-69.76976477799991,59.97105540600001],[-69.73509680899991,59.970282294000086],[-69.71979732999995,59.96027252800012],[-69.72130286399991,59.937119859000155],[-69.72777258999992,59.921942450000174],[-69.74225826699985,59.914780992000125],[-69.76756751199991,59.91559479400014],[-69.72374426999994,59.897772528000175],[-69.58983313699994,59.8760847030001],[-69.56151282499991,59.86469147300012],[-69.56566321499994,59.85993073100003],[-69.5926000639999,59.84454987200008],[-69.60065670499992,59.83360423400001],[-69.60114498599992,59.82477448100015],[-69.59825598899988,59.81700267100017],[-69.59630286399994,59.809434312000015],[-69.60789954299986,59.79429759300002],[-69.61217200399997,59.78388092700011],[-69.60619055899986,59.779038804000045],[-69.59142005099997,59.77806224199999],[-69.57567298099991,59.77525462400003],[-69.56053626199991,59.77081940300015],[-69.54784094999985,59.76475657800017],[-69.56476803299995,59.75824616100005],[-69.58592688699994,59.736070054],[-69.6223852199999,59.7274030620001],[-69.64598548099993,59.70929596600009],[-69.65770423099994,59.70331452000006],[-69.64793860599988,59.69928620000011],[-69.63825436099992,59.69749583500011],[-69.61681067599989,59.697129624000105],[-69.60472571499989,59.69554271000009],[-69.60000566299988,59.691839911000116],[-69.59666907499985,59.68707916900002],[-69.58877519399988,59.682847398000106],[-69.53258216099988,59.67963288000005],[-69.52057857999995,59.676621812000135],[-69.51622473899997,59.64927806200008],[-69.5372615229999,59.62274811400012],[-69.56798255099989,59.60260651200018],[-69.5926000639999,59.59467194200011],[-69.62555904899997,59.5900332700001],[-69.65990149599992,59.57782623900012],[-69.69147701699993,59.56114329600017],[-69.74852454299992,59.516099351000015],[-69.75328528599991,59.50812409100015],[-69.75572669199994,59.496649481000084],[-69.75918535099996,59.492621161000116],[-69.75820878799988,59.49046458500014],[-69.74714107999992,59.484808661000145],[-69.73704993399988,59.48273346600003],[-69.69871985599994,59.484808661000145],[-69.70474199099993,59.47215403900007],[-69.69786536399994,59.46637604400011],[-69.68455969999991,59.462876695000105],[-69.67145748599995,59.45697663000009],[-69.66445878799996,59.45014069200006],[-69.65648352799991,59.440130927000084],[-69.64899654899995,59.42829010600011],[-69.64342200399994,59.415961005000085],[-69.6543676419999,59.412909247000165],[-69.66258704299992,59.407538153000026],[-69.66828365799998,59.39948151200017],[-69.67145748599995,59.388617255],[-69.64037024599995,59.388617255],[-69.63206946499986,59.38511790600002],[-69.63414466099987,59.37726471600002],[-69.64342200399994,59.36473216400013],[-69.74950110599988,59.34275950700011],[-69.75743567599994,59.331244208000086],[-69.75511633999987,59.31769440300012],[-69.74030514199993,59.306708075000145],[-69.72468014199984,59.305039781000126],[-69.62706458199992,59.306708075000145],[-69.61925208199992,59.3087018900001],[-69.61457271999993,59.31321849200004],[-69.61091061099995,59.31769440300012],[-69.60619055899986,59.31976959800012],[-69.59683183499993,59.3220075540001],[-69.57648678299992,59.33177317900005],[-69.56525631399992,59.33405182500003],[-69.52651933499989,59.33356354400014],[-69.44546464799996,59.3613141950001],[-69.42259680899994,59.36151764500006],[-69.39769446499992,59.35687897300015],[-69.37425696499992,59.34752024900012],[-69.35606848899994,59.33405182500003],[-69.36949622299994,59.32037995000009],[-69.35871334499993,59.31407298400013],[-69.33731035099987,59.315130927000105],[-69.29767818899995,59.33429596600016],[-69.2740372389999,59.3350690780001],[-69.25479081899988,59.32481517100016],[-69.2468155589999,59.30296458500011],[-69.25279700399994,59.29962799700008],[-69.26301021999987,59.288560289000074],[-69.26598059799989,59.27680084800009],[-69.25023352799994,59.27130768400014],[-69.24437415299988,59.26654694200014],[-69.23863684799991,59.256089585000076],[-69.23253333199992,59.24127838700009],[-69.24339758999992,59.22821686400012],[-69.26817786399988,59.21930573100017],[-69.29482988199989,59.21605052300013],[-69.3116755849999,59.22040436400012],[-69.3411352199999,59.24127838700009],[-69.34923255099991,59.244614976000136],[-69.36522376199991,59.24445221600017],[-69.36994381399991,59.23969147300006],[-69.36937415299985,59.232285874000084],[-69.37075761599993,59.21198151200017],[-69.36693274599992,59.206773179],[-69.36632239499995,59.20343659100014],[-69.37718665299984,59.19684479400009],[-69.38902747299991,59.19419993700011],[-69.40123450399989,59.196112372000144],[-69.4115291009999,59.20001862200014],[-69.41812089799987,59.20368073100009],[-69.42247473899997,59.21051666900003],[-69.42259680899994,59.21824778900013],[-69.42564856699994,59.225409247000165],[-69.43862870999993,59.230414130000106],[-69.44953365799992,59.22850169500004],[-69.52806555899994,59.185980536],[-69.54255123599998,59.1695417340001],[-69.53425045499989,59.15521881700012],[-69.53872636599996,59.151068427000084],[-69.54149329299992,59.147284247000144],[-69.54051673099984,59.14240143400017],[-69.53425045499989,59.13475169500004],[-69.5416560539999,59.127997137000115],[-69.53213456899991,59.11725495000009],[-69.5156957669999,59.10846588700003],[-69.50011145699992,59.106756903000026],[-69.49327551999988,59.11737702000006],[-69.49132239499994,59.12144603100013],[-69.48668372299991,59.12470123900008],[-69.48119055899988,59.127793687000164],[-69.47647050699986,59.131415106000034],[-69.46568762899997,59.13727448100015],[-69.45685787699992,59.13312409100003],[-69.44546464799996,59.12055084800012],[-69.43952389199991,59.11676666900011],[-69.4373673169999,59.11347077000009],[-69.43394934799991,59.11054108300006],[-69.42438717399992,59.10809967700011],[-69.4219457669999,59.11017487200006],[-69.40428626199989,59.118597723000086],[-69.39732825399989,59.12055084800012],[-69.37926184799997,59.11973704600002],[-69.36416581899996,59.11619700700005],[-69.3519587879999,59.10822174700009],[-69.3424373039999,59.09381745000003],[-69.3907364569999,59.07135651200013],[-69.41437740799995,59.05487702000011],[-69.43024654899996,59.025458075000145],[-69.44359290299987,59.02936432500007],[-69.45763098899994,59.03900788000011],[-69.46593176999991,59.0460065780001],[-69.47533118399993,59.057806708000065],[-69.48037675699987,59.066392320000084],[-69.4876195949999,59.07160065300015],[-69.50352942599991,59.07330963700015],[-69.46593176999991,58.935126044000135],[-69.45164954299992,58.902044989],[-69.45164954299992,58.89520905199999],[-69.46694902299987,58.878851630000085],[-69.47874915299985,58.872910874000134],[-69.4901423819999,58.877793687000015],[-69.49852454299989,58.88446686400008],[-69.51130123599992,58.89032623900011],[-69.52293860599991,58.889878648000106],[-69.52798417899996,58.877793687000015],[-69.53062903599994,58.859686591000106],[-69.53799394399994,58.835882880000106],[-69.54967200399994,58.81525299700009],[-69.56525631399992,58.806463934000035],[-69.64207923099985,58.79120514500006],[-69.66515051999991,58.792181708000115],[-69.68390865799995,58.805405992000075],[-69.71979732999995,58.86725495000014],[-69.69115149599989,58.88483307500009],[-69.67845618399994,58.89508698100012],[-69.67145748599995,58.908270575000145],[-69.67186438699986,58.927435614000125],[-69.67967688699994,58.93467845300015],[-69.68838456899994,58.930650132],[-69.69188391799992,58.91571686400014],[-69.7010798819999,58.91807689000011],[-69.70864824099993,58.92222728100013],[-69.71483313699991,58.92820872600005],[-69.71979732999995,58.936143296000026],[-69.70470130099994,58.963080145000085],[-69.72935950399994,58.982977606000176],[-69.76121985599987,58.98810455900009],[-69.76756751199991,58.97089264500006],[-69.79637610599994,58.981309312000164],[-69.83942623599998,59.045640367],[-69.86314856699988,59.05967845300004],[-69.87726803299992,59.051825262000044],[-69.87572180899988,59.03587474200014],[-69.86314856699988,59.00507233300005],[-69.86607825399992,58.98737213700015],[-69.87393144399991,58.9759382180001],[-69.88512122299991,58.968613999000105],[-69.89793860599994,58.96344635600009],[-69.85903886599993,58.96112702000011],[-69.82266191299995,58.94599030200013],[-69.80345618399991,58.919053453000075],[-69.81602942599989,58.881537177000055],[-69.80894934799994,58.870917059000114],[-69.80142167899987,58.85407135600011],[-69.79759680899984,58.837103583000136],[-69.80174719999991,58.82628001500013],[-69.81712805899993,58.82554759300011],[-69.83531653599994,58.83421458500002],[-69.85700436099992,58.85358307500003],[-69.86681067599994,58.86371491100009],[-69.87901770699992,58.87059153899998],[-69.89391028599995,58.87413157800015],[-69.91161048099988,58.87409088700018],[-69.89688066299988,58.84662506700012],[-69.89049231699997,58.83995189000007],[-69.89049231699997,58.83311595300016],[-69.95929928299992,58.81456126500014],[-69.97984778599988,58.8126081400001],[-70.02033443899991,58.81525299700009],[-70.03449459499984,58.8126081400001],[-70.04401607999992,58.807969468000074],[-70.06330318899995,58.794867255000106],[-70.07237708199997,58.792181708000115],[-70.13947506399991,58.78392161700004],[-70.21190344999987,58.78953685100005],[-70.23192298099994,58.78449127800011],[-70.25422115799998,58.77167389500009],[-70.19908606699994,58.778184312000164],[-70.17149817599991,58.77574290600014],[-70.14777584499993,58.76109446800003],[-70.13634192599997,58.75641510600012],[-70.05870520699992,58.75739166900008],[-70.05492102799991,58.75458405200014],[-70.04723059799989,58.74152252800014],[-70.04133053299994,58.737534897999986],[-70.0221248039999,58.73944733300014],[-69.99469967399995,58.747503973000065],[-69.97008216099994,58.75824616100009],[-69.95457923099994,58.77216217700005],[-69.94347083199989,58.775620835000055],[-69.92121334499987,58.77912018400015],[-69.9175512359999,58.77448151200004],[-69.92149817599987,58.76386139500009],[-69.93203691299993,58.744370835],[-69.93224036399991,58.727484442],[-69.92813066299992,58.70298899900017],[-69.91828365799992,58.68638743700002],[-69.90103105399993,58.693182684000035],[-69.88190670499995,58.70823802300004],[-69.86143958199997,58.715033270000085],[-69.84105383999992,58.71515534100014],[-69.80011959499987,58.704901434000035],[-69.79743404899989,58.70075104400009],[-69.80174719999991,58.68976471600003],[-69.80931555899993,58.682318427000055],[-69.82176673099988,58.67572663000008],[-69.83531653599994,58.671006578000075],[-69.84609941299993,58.66925690300017],[-69.8535863919999,58.66559479400003],[-69.87291419199994,58.64911530200014],[-69.87682044199991,58.64472077000006],[-69.87340247299991,58.636948960000055],[-69.86534583199996,58.62787506700006],[-69.84951738199993,58.613999742000075],[-69.83397376199994,58.60407135600014],[-69.81354732999995,58.59650299700012],[-69.79572506399998,58.598456122000144],[-69.78807532499988,58.61741771000009],[-69.77953040299994,58.62962474200004],[-69.74201412699992,58.652777411],[-69.72948157499991,58.670518296000076],[-69.7092992829999,58.68976471600003],[-69.70665442599991,58.69135163000006],[-69.70287024599989,58.69957103100016],[-69.69871985599994,58.70274485900004],[-69.69102942599991,58.703192450000024],[-69.6763809889999,58.69757721600003],[-69.67145748599995,58.69660065300014],[-69.65050208199989,58.70115794500001],[-69.64037024599995,58.71332428600008],[-69.63634192599997,58.72276439000011],[-69.63634192599997,58.73908112200002],[-69.63044186099995,58.737534897999986],[-69.60822506399998,58.76036204600008],[-69.56602942599993,58.77476634300016],[-69.48704993399991,58.792181708000115],[-69.41812089799987,58.82965729400014],[-69.41209876199987,58.84369538000011],[-69.39712480399993,58.85822174700014],[-69.37816321499992,58.86949290600014],[-69.35977128799988,58.87409088700018],[-69.34870357999995,58.87523021000011],[-69.32994544199988,58.880357164000124],[-69.30577551999995,58.883368231000034],[-69.28038489499994,58.89520905199999],[-69.25633704299992,58.89915599199998],[-69.18846594999994,58.89520905199999],[-69.12482662699993,58.90192291900003],[-68.97931881399992,58.902044989],[-68.98444576699984,58.896429755000035],[-68.98985755099989,58.88605377800011],[-68.99299068899995,58.881537177000055],[-68.89476477799991,58.877875067],[-68.78693600199995,58.92247142100008],[-68.77342688699989,58.92169830900014],[-68.76659094999985,58.917669989],[-68.76154537699992,58.91254303600009],[-68.75340735599991,58.908270575000145],[-68.72874915299991,58.90318431200013],[-68.64216061099995,58.89756907800013],[-68.6160375639999,58.891221421000104],[-68.54051673099988,58.861029364],[-68.50829016799995,58.836615302000055],[-68.49986731699988,58.83311595300016],[-68.41026770699992,58.82391998900008],[-68.40233313699986,58.81793854400017],[-68.39793860599988,58.80931224200008],[-68.39028886599993,58.79962799700011],[-68.37120520699995,58.79039134300014],[-68.36156165299988,58.783514716000056],[-68.35619055899994,58.77167389500009],[-68.35928300699993,58.761216539000095],[-68.37832597599989,58.744818427],[-68.38288326699995,58.73411692900007],[-68.38345292899993,58.71161530200008],[-68.3809301419999,58.700995184000035],[-68.3731990229999,58.69660065300014],[-68.33714758999994,58.681870835000055],[-68.32884680899986,58.67548248900014],[-68.32896887899994,58.657904364],[-68.3502091139999,58.621527411000116],[-68.34870357999995,58.60032786700013],[-68.33324133999994,58.58978913000008],[-68.29141191299993,58.598130601000136],[-68.2742406889999,58.58673737200017],[-68.27440344999988,58.567246812000086],[-68.28587805899991,58.549261786000145],[-68.29149329299992,58.53449127800014],[-68.2742406889999,58.52464427300005],[-68.25210527299993,58.527533270000085],[-68.21178137899994,58.54828522300006],[-68.19102942599994,58.546372789000095],[-68.21324622299991,58.50755442900002],[-68.22057044199991,58.484320380000085],[-68.21524003799995,58.46662018400017],[-68.2093806629999,58.45795319200008],[-68.20498613199993,58.445379950000095],[-68.20579993399994,58.434027411000116],[-68.22252356699997,58.425482489],[-68.22468014199995,58.416734117000104],[-68.22581946499992,58.39496491100006],[-68.24327551999997,58.35325755400011],[-68.31517493399991,58.250921942],[-68.33849036399994,58.18602122600011],[-68.34528561099995,58.17584870000014],[-68.3502498039999,58.17051829600011],[-68.34845943899992,58.15904368700013],[-68.34422766799992,58.14817942900008],[-68.34186764199994,58.144476630000106],[-68.34532630099994,58.13190338700004],[-68.35407467399992,58.12372467700011],[-68.3766169909999,58.11314524900017],[-68.47716223899994,58.04364655200005],[-68.52000891799992,58.031195380000135],[-68.71910559799993,58.013739325000174],[-68.84870357999995,57.976385809000035],[-68.97012285099996,57.960394598000114],[-68.98062089799993,57.95286692900008],[-68.98973548099991,57.94367096600008],[-68.99982662699998,57.93561432500014],[-69.04405676999994,57.9194196640001],[-69.04759680899991,57.915106512000094],[-69.14110266799989,57.89866771000011],[-69.22374426999997,57.86204661699999],[-69.36974036399997,57.77049388200008],[-69.14439856699991,57.86973704600011],[-69.12645423099988,57.88410065300017],[-69.10936438699994,57.89337799700003],[-69.04076087099992,57.90827057500009],[-68.94969641799989,57.94102610900002],[-68.7560115229999,57.97296784100003],[-68.68663489499997,57.99371979400011],[-68.60724850199992,57.997544664000124],[-68.46861731699991,58.020371812000135],[-68.41759192599991,58.03864166900003],[-68.40713456899992,58.04645416900011],[-68.40094967399997,58.055609442],[-68.39614824099988,58.06464264500001],[-68.39028886599993,58.07212962400017],[-68.37791907499991,58.07831452000012],[-68.34919186099994,58.0841738950001],[-68.33849036399994,58.08982982000007],[-68.31924394399988,58.108832098000065],[-68.30988521999987,58.12091705900018],[-68.3070369129999,58.13385651200017],[-68.30695553299991,58.17633698100014],[-68.30215410099993,58.20111725500011],[-68.29259192599994,58.22178782800013],[-68.27733313699989,58.23041413000014],[-68.25157630099994,58.23651764500013],[-68.24095618399991,58.251206773000135],[-68.23892167899987,58.26923248900006],[-68.23884029899989,58.28510163000009],[-68.23249264199995,58.30768463700014],[-68.21983801999988,58.32831452000009],[-68.18732662699992,58.36387767100014],[-68.18724524599992,58.37030670800005],[-68.19001217399989,58.380804755000135],[-68.19139563699989,58.390570380000085],[-68.18732662699992,58.39496491100006],[-68.18224036399988,58.398382880000064],[-68.17699133999992,58.40643952],[-68.1726781889999,58.41559479400008],[-68.1705623039999,58.42218659100015],[-68.17666581899988,58.48191966400013],[-68.17393958199992,58.491074937000015],[-68.16344153599994,58.496771552],[-68.1368708979999,58.52338288000014],[-68.12340247299991,58.53204987200002],[-68.11204993399994,58.52496979400017],[-68.0901586579999,58.52000560100011],[-68.06749426999993,58.51776764500011],[-68.04767818899992,58.51841868700008],[-68.02733313699994,58.52171458500011],[-68.02342688699994,58.52558014500011],[-68.02651933499993,58.53424713700012],[-68.02721106699997,58.551947333000115],[-68.00621497299991,58.57953522300015],[-67.97443600199998,58.56981028900001],[-67.95352128799993,58.544378973000086],[-67.96515865799991,58.52464427300005],[-67.96515865799991,58.51841868700008],[-67.95103919199991,58.513169664000095],[-67.9359431629999,58.51105377800009],[-67.90990149599992,58.510972398000106],[-67.88975989499997,58.49872467700014],[-67.89476477799991,58.48407623900012],[-67.90904700399992,58.46836985900016],[-67.91734778599991,58.452948309000035],[-67.92414303299992,58.411688544000086],[-67.92365475199992,58.40497467700014],[-67.92186438699994,58.40025462400003],[-67.91869055899988,58.39630768400006],[-67.91364498599995,58.39154694200015],[-67.90811113199993,58.383490302000105],[-67.90794837099986,58.376654364],[-67.90965735599988,58.37128327000011],[-67.90990149599992,58.36762116100009],[-67.90318762899997,58.360174872000115],[-67.86522376199984,58.33051178600009],[-67.86168372299996,58.32640208500011],[-67.86270097599991,58.309271552],[-67.86839758999992,58.28965892100002],[-67.88243567599997,58.271307684000185],[-67.90025794199994,58.255845445000055],[-67.98314368399988,58.20819733300008],[-68.00267493399994,58.20311107000004],[-68.08242753799989,58.155340887000115],[-68.12352454299989,58.09837474200002],[-68.1295466789999,58.08299388200005],[-68.12059485599984,58.07188548400001],[-68.10033118399994,58.08323802300002],[-68.06818600199998,58.11314524900017],[-68.05182857999998,58.12164948100012],[-68.01569576699993,58.13239166900003],[-67.99925696499994,58.141058661000116],[-67.99071204299992,58.15037669500007],[-67.9725642569999,58.1894391950001],[-67.95327714799987,58.211981512000094],[-67.92577063699994,58.22614166900003],[-67.89411373599995,58.23387278900004],[-67.86270097599991,58.237250067000055],[-67.86461341099991,58.2590192730001],[-67.84455318899992,58.277655341000106],[-67.80064856699991,58.29869212400005],[-67.81786048099991,58.31915924700009],[-67.8235570949999,58.33563873900009],[-67.82079016799995,58.39923737200017],[-67.81773841099994,58.40912506700009],[-67.81224524599992,58.41710032800013],[-67.78697669199997,58.44269440300011],[-67.78587805899991,58.44855377800014],[-67.78831946499986,58.46454498900006],[-67.78697669199997,58.470038153000175],[-67.77350826699998,58.47577545800005],[-67.75601152299993,58.47443268400015],[-67.73851477799988,58.46918366100009],[-67.71886145699992,58.45990631700012],[-67.71483313699986,58.456610419000086],[-67.71255449099988,58.452337958000086],[-67.71190344999994,58.44611237200002],[-67.70840410099996,58.44342682500006],[-67.68455969999988,58.43964264500011],[-67.67544511599988,58.42344798400017],[-67.69310462099989,58.40464915600001],[-67.70824133999989,58.38340892100002],[-67.69139563699989,58.360174872000115],[-67.72956295499995,58.33331940300003],[-67.73208574099996,58.32147858300005],[-67.7180883449999,58.29869212400005],[-67.72272701699993,58.29535553600003],[-67.7323298819999,58.28510163000009],[-67.7132869129999,58.28864166900014],[-67.69383704299992,58.28660716400013],[-67.67552649599986,58.279486395000085],[-67.66002356699994,58.267930406000154],[-67.64903723899988,58.2517764340001],[-67.64801998599992,58.23615143400012],[-67.65465247299989,58.2210554060001],[-67.69408118399984,58.17210521000014],[-67.70173092399989,58.141465562000015],[-67.69277910099996,58.10980866100014],[-67.67027747299997,58.07212962400017],[-67.69050045499989,58.027655341000134],[-67.70099850199995,58.01447174700011],[-67.71524003799996,58.00108470300001],[-67.73033606699997,57.98362864800005],[-67.7401423819999,57.96373118700013],[-67.73859615799995,57.943060614000146],[-67.73379472599987,57.93805573100009],[-67.72435462099986,57.93138255400014],[-67.71349036399995,57.927069403000026],[-67.70441646999987,57.92877838700003],[-67.70132402299988,57.93781159100014],[-67.70441646999987,57.94940827000007],[-67.71190344999994,57.96662018400018],[-67.70665442599994,57.990790106000084],[-67.69343014199993,58.00592682500009],[-67.65664628799993,58.031195380000135],[-67.64183508999986,58.04913971600008],[-67.6390681629999,58.06504954600011],[-67.6459041009999,58.080511786000116],[-67.66002356699994,58.096665757],[-67.66242428299998,58.11595286700013],[-67.64631100199992,58.138739325000145],[-67.6087947259999,58.17584870000014],[-67.5958552729999,58.20075104400011],[-67.57323157499994,58.22638580900015],[-67.56786048099988,58.23041413000014],[-67.56037350199992,58.23191966399998],[-67.54405676999988,58.23065827000009],[-67.53685462099993,58.23383209800014],[-67.50283769399991,58.26349518400018],[-67.48448645699997,58.2758649760001],[-67.46483313699991,58.28510163000009],[-67.43659420499995,58.286363023],[-67.39777584499984,58.28379954600008],[-67.36351477799988,58.28611888200005],[-67.33214270699992,58.323960679],[-67.29474850199998,58.33478424700009],[-67.23208574099988,58.33966705900014],[-67.21800696499994,58.343613999000134],[-67.20482337099989,58.35101959800012],[-67.18089758999992,58.37067291900017],[-67.1602270169999,58.38023509300016],[-67.14191646999984,58.37535228100011],[-67.12584387899997,58.36554596600016],[-67.11196855399987,58.360174872000115],[-67.09927324099989,58.36045970300013],[-67.08690344999988,58.3627790390001],[-67.07599850199988,58.36908600500014],[-67.06761633999994,58.381293036000116],[-67.06419837099992,58.39293040600005],[-67.0664770169999,58.39976634300013],[-67.0725805329999,58.407660223000114],[-67.08063717399992,58.42218659100015],[-67.04063880099989,58.422552802000084],[-67.02342688699989,58.426703192000026],[-67.00617428299995,58.43650950700014],[-66.97077389199995,58.47699616100009],[-66.96519934799993,58.48737213700014],[-66.94664466099994,58.498358466000035],[-66.90998287699992,58.500433661000145],[-66.8836563789999,58.486558335000055],[-66.89631100199998,58.44953034100003],[-66.87242591099991,58.444159247000165],[-66.86046301999988,58.43976471600008],[-66.85533606699997,58.432806708],[-66.8522029289999,58.42503489800002],[-66.84593665299994,58.43305084800015],[-66.84093176999991,58.44501373900009],[-66.84166419199994,58.44953034100003],[-66.8110245429999,58.46491120000017],[-66.8019913399999,58.47772858299999],[-66.80687415299988,58.49799225500011],[-66.71068274599995,58.49799225500011],[-66.66112219999991,58.491074937000015],[-66.63540605399996,58.49091217700005],[-66.61510169199997,58.49799225500011],[-66.65990149599988,58.52545807500014],[-66.66926021999993,58.539984442],[-66.63939368399994,58.546372789000095],[-66.62401282499991,58.55133698100014],[-66.62315833199989,58.56346263200005],[-66.62775631399992,58.578721421000026],[-66.62877356699991,58.59288157800017],[-66.61807206899988,58.60582103100016],[-66.6011449859999,58.618516343000024],[-66.5885310539999,58.631293036000066],[-66.5912166009999,58.64472077000006],[-66.59654700399994,58.655096747000144],[-66.59870357999995,58.6686872420001],[-66.59536699099993,58.67719147300014],[-66.58438066299988,58.67234935100007],[-66.57144120999995,58.669419664000046],[-66.56322180899988,58.682196356000176],[-66.55361894399991,58.710191148000106],[-66.52696692599994,58.71954987200005],[-66.49620520699997,58.71857330900015],[-66.46865800699995,58.72199127800017],[-66.45128333199997,58.744370835],[-66.47581946499989,58.750067450000174],[-66.48473059799994,58.755316473000065],[-66.49095618399988,58.76483795800005],[-66.47468014199995,58.771592515000115],[-66.46336829299989,58.786607164000124],[-66.46104895699992,58.802801825000174],[-66.47175045499995,58.8126081400001],[-66.46117102799988,58.8242048200001],[-66.44391842399997,58.83283112200002],[-66.42418372299994,58.838080145],[-66.40623938699991,58.83995189000007],[-66.40298417899996,58.842027085],[-66.3980199859999,58.84662506700012],[-66.39122473899997,58.85130442900005],[-66.38239498599992,58.85358307500003],[-66.37441972599996,58.852769273000106],[-66.36192786399994,58.84837474200013],[-66.34703528599991,58.84581126500003],[-66.34748287699989,58.841986395],[-66.34972083199996,58.83722565300011],[-66.34756425699987,58.83311595300016],[-66.29466712099992,58.80341217700014],[-66.25251217399997,58.79511139500015],[-66.23664303299995,58.78400299700003],[-66.21043860599991,58.75739166900008],[-66.19395911399994,58.749090887000094],[-66.14574133999989,58.73350657800002],[-66.12877356699991,58.73069896000006],[-66.11583411399991,58.72630442900007],[-66.11034094999988,58.715033270000085],[-66.10716712099992,58.69965241100014],[-66.10118567599989,58.68292877800011],[-66.09251868399991,58.671210028000026],[-66.07884680899988,58.65851471600016],[-66.0627335279999,58.650254624000176],[-66.04653886599993,58.65184153900011],[-66.02700761599996,58.65766022300006],[-66.00747636599988,58.65684642100013],[-65.99714107999998,58.649155992000125],[-66.00499426999994,58.63450755400011],[-65.99030514199994,58.6293806010001],[-65.95750891799995,58.62628815300003],[-65.94416256399992,58.62083567899999],[-65.93716386599996,58.609442450000024],[-65.94025631399992,58.59629954600016],[-65.94933020699995,58.582586981000034],[-65.96031653599991,58.5693220070001],[-65.96666419199994,58.565252997000144],[-65.97227942599991,58.56513092700008],[-65.97614498599992,58.56366608300011],[-65.97765051999988,58.55573151200014],[-65.97948157499988,58.5499128280001],[-65.98399817599991,58.54197825700013],[-65.9896541009999,58.53510163000011],[-66.00674394399994,58.525946356000055],[-66.01447506399994,58.51227448100011],[-66.01821855399989,58.49823639500006],[-66.01862545499989,58.491074937000015],[-66.01488196499989,58.47980377800003],[-66.00226803299996,58.45722077000015],[-65.99282792899987,58.43089427300005],[-65.99876868399991,58.40855540600002],[-66.02074133999992,58.39524974199998],[-66.07225501199989,58.37938060100008],[-66.09496008999994,58.360174872000115],[-66.07518469999991,58.33661530200005],[-66.06509355399994,58.32982005400014],[-66.05337480399996,58.33283112200003],[-66.04621334499993,58.34454987200002],[-66.04214433499996,58.36041901200015],[-66.03514563699989,58.376288153000175],[-66.01862545499989,58.388128973000114],[-65.99852454299986,58.39264557500008],[-65.98253333199995,58.39362213700016],[-65.96922766799995,58.39704010600017],[-65.95718339799993,58.40855540600002],[-65.95620683499993,58.415350653000026],[-65.95738684799997,58.42466868700008],[-65.95759029899992,58.432928778000175],[-65.9537654289999,58.43650950700014],[-65.92756100199998,58.44297923400014],[-65.92300370999993,58.44269440300011],[-65.92544511599996,58.45954010600011],[-65.94635982999992,58.465562242000104],[-65.9710994129999,58.46885814000013],[-65.98509680899986,58.477484442000055],[-65.97956295499995,58.49009837400015],[-65.96263587099986,58.50385163000006],[-65.9205623039999,58.52948639500012],[-65.91173255099994,58.53253815300012],[-65.90518144399996,58.53790924700017],[-65.90257727799985,58.54913971600017],[-65.90217037699995,58.558579819999984],[-65.90038001199989,58.566392319999984],[-65.89622962099992,58.57330963700018],[-65.88890540299991,58.57990143400014],[-65.87352454299989,58.58380768400015],[-65.84357662699992,58.57444896000011],[-65.82750403599994,58.57990143400014],[-65.85716712099986,58.59190501500007],[-65.86164303299992,58.5966250670001],[-65.86424719999994,58.59784577],[-65.87450110599985,58.62315501500013],[-65.87523352799988,58.62828196800016],[-65.8963923819999,58.63898346600008],[-65.91856848899997,58.642401434000085],[-65.9378149079999,58.64891185099999],[-65.94416256399992,58.66925690300017],[-65.94416256399992,58.67548248900014],[-65.96165930899988,58.68805573100003],[-66.01471920499992,58.69025299700003],[-66.03970292899993,58.69660065300014],[-66.03563391799986,58.709784247000094],[-66.03563391799986,58.73029205900015],[-66.03856360599988,58.749090887000094],[-66.04312089799993,58.75739166900008],[-66.09459387899992,58.77252838700018],[-66.10863196499989,58.77912018400015],[-66.09227454299986,58.78900788000005],[-66.03970292899993,58.847398179000045],[-66.02651933499988,58.85846588700009],[-66.01919511599996,58.86119212400014],[-66.01195227799985,58.85700104400002],[-65.97085527299996,58.82628001500013],[-65.94493567599994,58.84149811400011],[-65.85952714799993,58.83283112200002],[-65.82750403599994,58.83995189000007],[-65.80964107999995,58.84760163000003],[-65.7995499339999,58.85358307500003],[-65.79564368399991,58.86347077000012],[-65.80211341099991,58.86729564000014],[-65.88536536399994,58.87189362200008],[-65.93667558499996,58.881537177000055],[-65.96499589799993,58.891058661000145],[-65.98306230399993,58.90485260600014],[-65.98224850199992,58.917181708],[-65.94371497299994,58.924627997000165],[-65.92369544199997,58.934027411],[-65.8708389959999,58.94074127800015],[-65.86164303299992,58.942979234000134],[-65.85391191299993,58.96112702000011],[-65.86880449099988,58.97764720300001],[-65.88613847599996,58.99323151200009],[-65.88548743399991,59.00816478100013],[-65.86925208199997,59.00849030200008],[-65.75625566299993,58.97577545800014],[-65.70482337099992,58.948309637000094],[-65.68659420499995,58.932440497000165],[-65.67735755099997,58.92857493700016],[-65.67096920499995,58.93659088700012],[-65.66881262899994,58.949326890000165],[-65.67259680899987,58.960069078000075],[-65.68065344999991,58.96763743700002],[-65.68879146999984,58.97386302299999],[-65.69815019399996,58.97911204600017],[-65.79332434799993,59.00507233300005],[-65.78429114499993,59.01561107000013],[-65.77057857999992,59.019151109000106],[-65.73810787699992,59.018133856000034],[-65.74746660099996,59.02313873900008],[-65.77904212099995,59.03233470300016],[-65.75413977799991,59.03290436400012],[-65.72907467399992,59.03758372600013],[-65.68346106699997,59.05280182500012],[-65.68346106699997,59.0460065780001],[-65.65485592399988,59.04649485900008],[-65.60558020699989,59.01373932500014],[-65.50706946499989,58.98810455900009],[-65.49168860599985,58.99140045800011],[-65.50194251199989,59.00507233300005],[-65.51549231699994,59.01316966399999],[-65.53148352799994,59.017035223],[-65.54942786399988,59.018133856000034],[-65.56065833199987,59.02171458500011],[-65.59410559799994,59.0460065780001],[-65.58128821499992,59.05206940300008],[-65.54234778599994,59.06427643400015],[-65.52920488199996,59.06651439000013],[-65.51158606699994,59.06561920800005],[-65.50031490799995,59.06293366100008],[-65.47740637899994,59.05280182500012],[-65.44367428299995,59.045111395],[-65.34943600199998,59.03978099200013],[-65.31973222599993,59.0460065780001],[-65.31973222599993,59.05280182500012],[-65.34972083199992,59.06456126500011],[-65.42560787699995,59.06358470300001],[-65.4667862619999,59.08323802300007],[-65.51301021999993,59.09239329600014],[-65.52920488199996,59.09381745000003],[-65.53278561099992,59.09747955900017],[-65.53652910099987,59.10443756700006],[-65.54161536399991,59.10883209800015],[-65.54942786399988,59.10468170800011],[-65.55435136599993,59.09747955900017],[-65.55638587099988,59.09198639500015],[-65.5593155589999,59.086778062000135],[-65.56676184799997,59.08075592700005],[-65.5816951159999,59.075059312000164],[-65.60317949099993,59.07099030200011],[-65.6253962879999,59.069932359000134],[-65.64248613199996,59.07330963700015],[-65.65103105399987,59.083197333000086],[-65.66567949099988,59.11395905200005],[-65.71080481699994,59.151068427000084],[-65.71764075399994,59.15831126500011],[-65.71580969999988,59.17564524900008],[-65.70995032499994,59.18565501500016],[-65.69937089799988,59.19171784100017],[-65.68346106699997,59.19684479400009],[-65.70075436099995,59.20640696800017],[-65.7174373039999,59.21002838700004],[-65.73253333199992,59.21552155200005],[-65.74494381399992,59.230414130000106],[-65.73639889199993,59.241074937000135],[-65.74494381399992,59.25206126500011],[-65.74278723899994,59.26215241100005],[-65.74266516799986,59.267889716000134],[-65.73932857999995,59.27061595300002],[-65.72752844999988,59.27130768400014],[-65.68024654899992,59.26398346600014],[-65.65025794199994,59.24485911700007],[-65.59410559799994,59.18939850500003],[-65.59333248599992,59.20746491100011],[-65.61213131399998,59.249375718000024],[-65.6029353509999,59.257106838000034],[-65.59894771999991,59.25617096600014],[-65.58967037699996,59.25153229400002],[-65.58250891799992,59.246812242000104],[-65.58043372299991,59.244614976000136],[-65.5678604809999,59.24595774900003],[-65.56387285099993,59.248846747000144],[-65.56224524599992,59.25385163],[-65.55622311099992,59.26170482000007],[-65.54332434799991,59.264634507],[-65.51012122299989,59.25389232],[-65.49168860599985,59.25828685100008],[-65.49168860599985,59.265082098000086],[-65.50987708199995,59.27252838700014],[-65.53921464799996,59.29462311400006],[-65.55622311099992,59.29926178600009],[-65.56607011599992,59.30744049700008],[-65.57371985599988,59.32652415600007],[-65.57868404899992,59.348334052000105],[-65.58043372299991,59.36473216400013],[-65.55899003799988,59.37665436400006],[-65.51060950399996,59.358465887000186],[-65.37181555899988,59.28009674700011],[-65.35757402299988,59.28217194200012],[-65.4054255849999,59.34019603100002],[-65.42540442599989,59.34300364800006],[-65.44029700399994,59.35175202000012],[-65.44717363199996,59.36676666900014],[-65.44322669199997,59.388617255],[-65.43293209499984,59.40294017100008],[-65.4192602199999,59.40631745000012],[-65.38182532499988,59.40228913000014],[-65.40672766799992,59.41742584800013],[-65.49791419199991,59.436387437000135],[-65.49791419199991,59.44383372600011],[-65.47057044199994,59.44383372600011],[-65.47057044199994,59.45005931200008],[-65.49290930899987,59.45917389500006],[-65.52037512899992,59.46552155200002],[-65.54531816299993,59.47435130400005],[-65.55992591099997,59.49103424700009],[-65.52635657499994,59.489691473],[-65.45750891799986,59.47235748900011],[-65.42275956899991,59.47056712400005],[-65.38052324099988,59.48297760600015],[-65.36412512899997,59.484808661000145],[-65.2459610669999,59.47276439000002],[-65.20303300699996,59.46312083500005],[-65.19774329299989,59.462876695000105],[-65.19115149599989,59.46348704600017],[-65.18553626199991,59.46312083500005],[-65.18321692599994,59.46002838700017],[-65.18195553299992,59.452582098],[-65.17837480399996,59.444891669000164],[-65.17292232999992,59.43891022300007],[-65.0619197259999,59.388006903000054],[-65.05284583199992,59.38117096600003],[-65.04181881399995,59.38275788000006],[-65.00308183499993,59.37567780199999],[-64.98395748599995,59.38117096600003],[-65.03311113199987,59.39093659100017],[-65.08234615799998,59.41063060100011],[-65.12686113199987,59.43610260600011],[-65.18126380099989,59.475775458000115],[-65.20201575399989,59.482245184000035],[-65.25145423099994,59.49103424700009],[-65.31338456899991,59.50938548400013],[-65.39268958199995,59.51207103100013],[-65.41185462099992,59.51788971600008],[-65.42894446499989,59.532049872000115],[-65.48908443899995,59.62616608300011],[-65.51939856699994,59.70258209800015],[-65.52969316299996,59.71861399900002],[-65.54625403599991,59.73126862200011],[-65.52183997299997,59.75031159100008],[-65.48473059799994,59.760484117000054],[-65.4663793609999,59.77142975500012],[-65.49791419199991,59.792669989],[-65.49168860599985,59.799546617000104],[-65.48961341099994,59.798447984000155],[-65.48424231699997,59.799546617000104],[-65.4594620429999,59.79254791900003],[-65.45376542899993,59.789618231000084],[-65.44591223899994,59.78697337400011],[-65.44025631399995,59.793402411000116],[-65.43268795499989,59.809434312000015],[-65.41771399599986,59.815252997000165],[-65.40054277299993,59.810777085000026],[-65.38316809799997,59.803290106000034],[-65.36754309799997,59.799546617000104],[-65.37393144399991,59.80927155200006],[-65.37938391799995,59.82050202000015],[-65.37897701699993,59.829779364],[-65.36782792899989,59.83368561400001],[-65.3535863919999,59.83592357],[-65.33608964799994,59.84568919500013],[-65.32347571499989,59.847967841000084],[-65.31110592399995,59.84617747600011],[-65.21422278599997,59.82078685099999],[-65.19619706899994,59.813177802000055],[-65.16584225199995,59.792669989],[-65.11400305899986,59.782782294000086],[-65.08409583199996,59.77171458500014],[-65.05150305899991,59.76646556200016],[-64.98395748599995,59.76475657800017],[-64.98395748599995,59.77220286700013],[-65.05313066299993,59.779038804000045],[-65.0641169909999,59.78221263200011],[-65.09325110599985,59.79633209800015],[-65.14146887899989,59.80609772300009],[-65.19505774599989,59.834580796000076],[-65.22419186099995,59.84113190300017],[-65.22419186099995,59.847967841000084],[-65.21849524599989,59.848863022999986],[-65.20303300699996,59.854193427000055],[-65.20864824099993,59.86371491100006],[-65.22638912699995,59.87555573100012],[-65.23094641799987,59.882066148000106],[-65.22972571499987,59.89240143400012],[-65.22337805899994,59.89557526200017],[-65.21556555899986,59.893744208],[-65.20982825399997,59.888902085000105],[-65.19456946499992,59.887518622000144],[-65.1669001939999,59.876776434000035],[-65.1404516269999,59.87132396],[-65.12857011599988,59.885484117000104],[-65.13780676999994,59.900213934000085],[-65.1600642569999,59.90794505400011],[-65.20982825399997,59.91559479400014],[-65.20982825399997,59.92304108300011],[-65.17926998599995,59.921942450000174],[-65.16954505099991,59.92304108300011],[-65.15038001199994,59.929022528000026],[-65.1453344389999,59.92987702000015],[-65.14110266799989,59.931626695000126],[-65.14146887899989,59.93573639500009],[-65.14289303299995,59.940375067000026],[-65.14159094999988,59.94354889500009],[-65.13947506399995,59.94733307500009],[-65.14167232999995,59.95160553600011],[-65.14216061099992,59.955064195000105],[-65.13512122299997,59.95661041900014],[-65.1207169259999,59.95482005400008],[-65.1068416009999,59.95099518400015],[-65.09927324099996,59.94696686400008],[-65.08018958199997,59.92987702000015],[-65.07091223899994,59.94330475500014],[-65.08503170499995,59.956244208000136],[-65.12857011599988,59.977647203000075],[-65.11339270699989,59.98285553600009],[-65.09854081899994,59.98175690300004],[-65.08332271999987,59.97858307500017],[-65.06651770699995,59.977647203000075],[-65.07494055899988,59.98973216399999],[-65.08893795499995,59.99595774900014],[-65.10456295499995,60.00071849200005],[-65.1176651679999,60.008368231000176],[-65.12393144399996,60.018744208000086],[-65.12262936099995,60.03327057500011],[-65.12857011599988,60.03974030200011],[-65.12857011599988,60.04657623900011],[-65.06847083199989,60.046494859000134],[-65.04605058499988,60.05475495000005],[-65.02497311099995,60.08075592700011],[-65.05333411399991,60.087836005],[-65.06529700399992,60.09459056200002],[-65.06309973899994,60.104315497000165],[-65.05264238199996,60.109808661],[-65.03526770699997,60.11627838700009],[-65.01903235599994,60.120184637000094],[-65.0118708979999,60.11823151200014],[-65.00841223899988,60.11115143400009],[-65.00104732999989,60.11627838700009],[-64.99388587099995,60.12498607],[-64.99136308499992,60.12909577000012],[-64.99425208199997,60.130845445000126],[-64.99665279899992,60.13780345300002],[-64.99722245999988,60.146348374000134],[-64.99478105399993,60.152696031000076],[-64.98314368399994,60.15623607000005],[-64.97305253799988,60.15302155199999],[-64.96613521999987,60.154730536],[-64.96349036399988,60.17316315300003],[-64.95152747299994,60.19342682500014],[-64.92418372299989,60.196519273000135],[-64.89415442599994,60.195746161000116],[-64.87409420499998,60.20420970300016],[-64.88036048099991,60.218939520000156],[-64.95726477799992,60.258856512000094],[-64.90615800699996,60.272691148000106],[-64.8843481109999,60.281927802000084],[-64.86412512899997,60.29637278900013],[-64.84691321499984,60.31342194200008],[-64.83702551999994,60.32916901200004],[-64.83971106699994,60.3432070980001],[-64.86046301999993,60.355047919000135],[-64.86046301999993,60.36127350500003],[-64.84878495999993,60.365708726],[-64.83893795499992,60.36522044499999],[-64.82957923099988,60.36273834800007],[-64.8194473949999,60.36127350500003],[-64.7784724599999,60.36127350500003],[-64.75816809799991,60.35753001500016],[-64.72276770699989,60.34418366100006],[-64.7102758449999,60.341376044000114],[-64.68687903599991,60.33502838700018],[-64.6760961579999,60.33392975500015],[-64.68333899599992,60.34357330900009],[-64.68736731699988,60.34564850500011],[-64.69660396999986,60.347601630000085],[-64.69660396999986,60.355047919000135],[-64.67638098899994,60.350043036],[-64.62751217399995,60.34674713700015],[-64.61025956899994,60.33763255400008],[-64.59801184799997,60.32941315300017],[-64.54576575399994,60.30662669500004],[-64.5314021479999,60.30390045800008],[-64.46422278599992,60.291083075000145],[-64.44640051999994,60.28241608300006],[-64.4327693349999,60.26972077],[-64.41661536399994,60.25971100500011],[-64.38060462099989,60.24518463700015],[-64.39883378799996,60.240179755000106],[-64.42577063699991,60.24262116100006],[-64.45343990799992,60.250555731000034],[-64.49510657499988,60.27256907800013],[-64.58674068899998,60.2929548200001],[-64.63654537699995,60.293036200000095],[-64.68106035099996,60.27830638200011],[-64.75865637899989,60.238348700000145],[-64.72931881399997,60.23480866100008],[-64.65176347599993,60.26414622599999],[-64.61709550699996,60.27252838700003],[-64.55736243399988,60.26984284100017],[-64.53892981699994,60.26569245000003],[-64.48534094999994,60.240179755000106],[-64.46324622299994,60.238348700000145],[-64.48302161399988,60.21967194200008],[-64.5429581369999,60.19358958500011],[-64.56627356699991,60.17633698100009],[-64.5152888659999,60.17633698100009],[-64.50413977799988,60.17853424700008],[-64.48631751199991,60.18829987200003],[-64.45970618399988,60.19818756700014],[-64.43797766799992,60.212998765000016],[-64.41616777299996,60.223374742000104],[-64.39492753799996,60.217230536000145],[-64.40510006399992,60.21385325700012],[-64.41490637899994,60.208563544000135],[-64.4232071609999,60.20246002800014],[-64.42906653599997,60.19676341399998],[-64.40998287699996,60.19725169500008],[-64.39981035099993,60.18968333500011],[-64.3921606109999,60.179022528000175],[-64.38060462099989,60.17011139500015],[-64.39924068899995,60.15119049700004],[-64.49791419199994,60.114813544000135],[-64.49791419199994,60.10736725500005],[-64.48668372299994,60.105047919000114],[-64.47695878799988,60.10167064000008],[-64.46898352799994,60.096258856000034],[-64.46324622299994,60.08751048400016],[-64.4911189439999,60.08100006700006],[-64.57306881399992,60.08075592700011],[-64.63243567599991,60.07151927300008],[-64.66295325399994,60.06163157800013],[-64.6760961579999,60.049668687000015],[-64.68919837099986,60.04340241100006],[-64.81248938699994,60.008246161],[-64.82315019399996,60.00120677300013],[-64.82827714799987,59.991156317000055],[-64.82233639199995,59.985459703000075],[-64.81090247299991,59.98346588700003],[-64.80646725199992,59.9844831400001],[-64.58674068899998,60.06024811400007],[-64.55557206899988,60.055365302],[-64.50210527299996,60.05695221600003],[-64.45152747299997,60.0661481790001],[-64.42906653599997,60.08417389500013],[-64.41950436099998,60.102240302000055],[-64.39834550699987,60.120835679000045],[-64.37718665299988,60.12974681200007],[-64.36754309799991,60.11823151200014],[-64.36949622299994,60.09703196800014],[-64.37547766799986,60.081162828000124],[-64.38630123599995,60.076239325000174],[-64.40241451699993,60.08751048400016],[-64.41372636599989,60.071112372000144],[-64.37376868399986,60.04010651200004],[-64.38805091099997,60.02545807500003],[-64.39321855399996,60.01447174700015],[-64.42096920499993,60.00828685099999],[-64.53954016799989,60.01093170800008],[-64.48814856699988,60.00360748900009],[-64.41661536399994,59.985093492000075],[-64.40050208199997,59.976060289000046],[-64.39492753799996,59.95661041900014],[-64.40192623599995,59.941473700000145],[-64.41759192599991,59.93260325700011],[-64.43748938699991,59.929144598],[-64.45030676999994,59.92959219],[-64.50194251199991,59.91209544500004],[-64.51842200399989,59.90253327000006],[-64.49767005099987,59.896958726000044],[-64.47638912699992,59.90049876500014],[-64.43618730399993,59.919297593000074],[-64.42357337099993,59.92328522300006],[-64.40941321499992,59.92418040600016],[-64.38125566299993,59.92304108300011],[-64.36896725199998,59.92743561400001],[-64.36139889199993,59.93699778900002],[-64.35944576699998,59.946600653000175],[-64.36388098899994,59.95099518400015],[-64.36351477799994,59.95799388200014],[-64.3472387359999,59.97357819200012],[-64.32461503799992,59.98944733300005],[-64.30553137899994,59.99750397300009],[-64.24543209499987,59.99498118700007],[-64.22423255099997,59.99750397300009],[-64.22423255099997,60.00495026200015],[-64.2625219389999,60.003119208],[-64.30260169199994,60.009955145],[-64.32896887899992,60.02814362200009],[-64.32603919199991,60.06024811400007],[-64.30288652299987,60.051825262000115],[-64.27733313699989,60.04779694200015],[-64.22052975199992,60.04657623900011],[-64.2171931629999,60.04474518400015],[-64.21519934799994,60.03558991100009],[-64.21056067599994,60.03229401200003],[-64.1847224599999,60.03082916900017],[-64.18260657499991,60.03229401200003],[-64.17088782499991,60.02240631700011],[-64.15721594999988,59.9996198590001],[-64.14785722599993,59.99131907800002],[-64.14785722599993,59.9844831400001],[-64.18122311099992,59.975409247000115],[-64.27440344999985,59.96373118700011],[-64.29873613199993,59.94354889500009],[-64.22931881399998,59.94163646000011],[-64.20335852799991,59.933579819999984],[-64.18260657499991,59.91559479400014],[-64.19440670499998,59.90143463700013],[-64.21251380099997,59.88983795800004],[-64.23448645699987,59.882798570000126],[-64.25772050699993,59.882066148000106],[-64.25772050699993,59.87461985900004],[-64.21857662699998,59.87445709800006],[-64.19904537699989,59.876532294000086],[-64.18260657499991,59.882066148000106],[-64.16982988199996,59.89264557500014],[-64.16193600199996,59.903550523000135],[-64.15318762899992,59.91209544500004],[-64.13792883999994,59.91559479400014],[-64.12637285099993,59.90745677300013],[-64.13597571499989,59.889227606000155],[-64.16218014199993,59.86102936400008],[-64.17027747299994,59.845648505000135],[-64.17430579299992,59.830674546000104],[-64.17585201699995,59.79612864799999],[-64.1925349599999,59.778509833000086],[-64.25938880099994,59.788397528000175],[-64.26455644399994,59.76475657800017],[-64.24640865799992,59.74262116100009],[-64.21226966099994,59.71613190300011],[-64.17503821499986,59.69354889500012],[-64.14785722599993,59.682847398000106],[-64.03799394399996,59.682847398000106],[-63.96231035099989,59.694566148000014],[-63.943023240999935,59.68968333500011],[-63.955799933999884,59.67438385600014],[-63.96979732999995,59.66233958500005],[-63.944488084999904,59.66278717700005],[-63.93276933499993,59.66087474200002],[-63.92198645699991,59.655503648000135],[-63.955962693999936,59.64581940300017],[-63.99474036399988,59.64765045800005],[-64.03160559799993,59.64496491100008],[-64.05972245999993,59.62140534100003],[-64.06651770699996,59.591742255],[-64.07282467399992,59.57444896],[-64.09190833199989,59.560980536000116],[-64.10472571499992,59.547349351000086],[-64.1160375639999,59.53131745000017],[-64.12059485599985,59.51837799700017],[-64.06476803299998,59.545599677000084],[-64.03994706899991,59.56220123900012],[-64.03799394399996,59.58043040600002],[-64.03184973899988,59.58043040600002],[-64.03213456899994,59.61017487200002],[-64.00731360599988,59.62400950700012],[-63.97337805899991,59.62372467699999],[-63.94644120999997,59.611151434000085],[-63.88955644399991,59.617254950000095],[-63.864084438999924,59.61131419500007],[-63.87755286399992,59.58384837400002],[-63.89077714799992,59.57762278900007],[-63.927845831999946,59.572821356000176],[-63.943023240999935,59.566758531000076],[-63.9833878249999,59.525824286000145],[-63.98070227799993,59.506415106000034],[-63.965565558999934,59.511948960000055],[-63.93561764199995,59.53949616100009],[-63.92064368399991,59.549383856000084],[-63.874134894999884,59.572984117000125],[-63.7669164699999,59.54828522300015],[-63.73692786399993,59.532049872000115],[-63.72769120999987,59.519964911],[-63.728138800999965,59.50914134300011],[-63.736398891999954,59.497992255],[-63.757435675999886,59.477850653000154],[-63.78083248599998,59.45005931200008],[-63.781646287999905,59.44383372600011],[-63.78465735599988,59.44041575700011],[-63.78547115799989,59.433050848000114],[-63.78766842399988,59.42560455900003],[-63.79503333199989,59.422186591000035],[-63.99982662699989,59.418524481000176],[-64.03473873599992,59.41050853100013],[-64.06598873599998,59.39545319200011],[-64.06065833199992,59.38727448100012],[-64.05280514199993,59.38239166900014],[-64.04295813699991,59.380438544000086],[-64.03184973899988,59.38117096600003],[-64.03799394399996,59.38117096600003],[-63.99982662699989,59.390326239],[-63.96076412699995,59.390570380000064],[-63.80589758999989,59.37494538000006],[-63.79043535099996,59.378973700000024],[-63.778920050999915,59.384507554000045],[-63.76707923099986,59.38878001500016],[-63.750599738999874,59.388617255],[-63.7564591139999,59.37632884300013],[-63.75934811099995,59.37213776200012],[-63.76488196499988,59.36815013200014],[-63.75226803299989,59.36322663000009],[-63.739125128999916,59.36432526200012],[-63.72508704299988,59.367254950000145],[-63.70962480399996,59.36815013200014],[-63.726389126999976,59.350409247000144],[-63.74278723899989,59.30817291900003],[-63.75405839799987,59.28937409100016],[-63.77481035099987,59.26341380400007],[-63.778553839999915,59.26170482000007],[-63.78457597599989,59.257879950000145],[-63.82575436099998,59.25206126500011],[-63.82575436099998,59.244614976000136],[-63.77489173099985,59.248032945000126],[-63.75035559799994,59.25421784100011],[-63.730132615999906,59.265082098000086],[-63.718169725999864,59.28217194200012],[-63.69835364499997,59.32530345300015],[-63.685780402999875,59.33405182500003],[-63.67491614499988,59.3393415390001],[-63.662180141999926,59.36277903899999],[-63.65168209499986,59.36815013200014],[-63.643299933999906,59.365912177000055],[-63.62970943899995,59.35614655200011],[-63.62401282499987,59.353867906000126],[-63.55353756399998,59.35358307500012],[-63.53156490799994,59.34772370000014],[-63.53319251199988,59.338812567000126],[-63.53034420499994,59.33519114800008],[-63.526193813999896,59.33173248900005],[-63.5240779289999,59.323106187000164],[-63.525257941999904,59.31651439000008],[-63.52782141799992,59.31146881700006],[-63.53156490799994,59.306708075000145],[-63.53319251199988,59.28058502800009],[-63.536773240999956,59.27020905200002],[-63.5451554029999,59.25828685100008],[-63.55256100199992,59.25352610900017],[-63.60977128799996,59.22728099200004],[-63.62486731699996,59.22394440300012],[-63.641428188999924,59.224188544000135],[-63.63512122299991,59.219102281000126],[-63.62897701699992,59.21698639500011],[-63.61412512899994,59.216660874000084],[-63.620269334999925,59.216660874000084],[-63.60204016799986,59.21397532800002],[-63.57201087099992,59.21519603100013],[-63.54393469999991,59.21979401200015],[-63.53156490799994,59.22724030200006],[-63.47984778599993,59.27098216400013],[-63.46637936099995,59.278753973000114],[-63.417836066999875,59.29096100499999],[-63.392567511999935,59.292466539000046],[-63.38072669199997,59.278753973000114],[-63.388295050999915,59.26813385600017],[-63.40721594999985,59.256293036000116],[-63.429921027999875,59.24705638200005],[-63.44904537699995,59.244614976000136],[-63.437001105999855,59.22955963700012],[-63.4435929029999,59.21808502800014],[-63.45636959499986,59.207017320000126],[-63.46324622299996,59.19310130400005],[-63.45628821499989,59.19281647300004],[-63.42186438699986,59.206732489],[-63.408599412999926,59.20990631700006],[-63.40802975199995,59.215399481000084],[-63.398793097999885,59.21885814000008],[-63.38573157499991,59.219590562000015],[-63.37328040299991,59.216660874000084],[-63.365712042999945,59.209540106000055],[-63.360829230999876,59.198228257000046],[-63.36302649599986,59.18773021],[-63.377023891999926,59.183172919000135],[-63.39122473899994,59.17487213700015],[-63.42585201699992,59.13471100500006],[-63.44220943899995,59.12055084800012],[-63.465484178999965,59.114365953000075],[-63.521473761999914,59.10822174700009],[-63.541818813999896,59.09752024900017],[-63.56090247299997,59.08226146],[-63.58177649599995,59.075059312000164],[-63.661610480999876,59.07025788000008],[-63.71987870999987,59.05609772300016],[-63.74718176999997,59.05280182500012],[-63.77574622299994,59.05552806200008],[-63.82433020699992,59.068670966000134],[-63.96288001199985,59.08075592700005],[-63.97354081899988,59.078965562000164],[-63.98473059799989,59.07383860900013],[-63.99347896999986,59.066107489000146],[-63.9970597,59.05621979400003],[-64.00283769399991,59.048936265000016],[-64.02985592399995,59.03758372600013],[-64.03799394399996,59.03233470300016],[-64.03990637899992,59.01793040600007],[-64.02293860599984,59.0195173200001],[-63.96939042899992,59.036688544000135],[-63.95563717399992,59.055405992000104],[-63.94644120999997,59.05967845300004],[-63.89464270699994,59.05967845300004],[-63.89464270699994,59.05280182500012],[-63.916615363999966,59.02680084800012],[-63.90672766799994,58.98981354400008],[-63.882313605999876,58.96198151200004],[-63.86046301999994,58.96344635600009],[-63.859283006999924,58.97858307500009],[-63.867014126999926,58.99595774900017],[-63.88097083199991,59.018133856000034],[-63.870757615999956,59.03318919500004],[-63.85301673099988,59.037176825000024],[-63.83214270699992,59.0385602890001],[-63.81212317599994,59.0460065780001],[-63.78026282499991,59.027411200000095],[-63.763742641999926,59.021063544000135],[-63.74380449099993,59.018133856000034],[-63.72313391799991,59.020127671000076],[-63.66185462099991,59.0385602890001],[-63.617298956999925,59.04096100500006],[-63.535796678999894,59.03632233300011],[-63.5240779289999,59.0385602890001],[-63.516753709999904,59.04319896000014],[-63.512562628999945,59.04975006700012],[-63.507476365999935,59.05597565300017],[-63.497425910999965,59.05967845300004],[-63.46060136599988,59.070868231000034],[-63.45246334499987,59.069932359000134],[-63.437733527999875,59.0632184920001],[-63.4208064439999,59.06500885600009],[-63.40697180899991,59.072699286000116],[-63.401193813999924,59.08384837400003],[-63.3866267569999,59.101996161000116],[-63.35277258999994,59.10443756700006],[-63.28514563699988,59.09381745000003],[-63.28697669199997,59.08917877800009],[-63.289540167999895,59.07786692900011],[-63.29133053299994,59.07330963700015],[-63.25039628799993,59.076727606000176],[-63.23078365799997,59.074164130000085],[-63.21279863199993,59.063055731000055],[-63.191029425999965,59.05963776200003],[-63.15835527299993,59.063096421000054],[-63.13158118399994,59.06232330900013],[-63.127430792999895,59.0460065780001],[-63.16197669199991,59.03001536699999],[-63.33975175699996,59.03233470300016],[-63.33975175699996,59.02558014500012],[-63.25055904899988,59.01373932500014],[-63.22248287699989,59.00507233300005],[-63.269439256999924,58.97931549700004],[-63.288970506999895,58.96417877800003],[-63.30557206899996,58.942979234000134],[-63.28233801999994,58.95128001500002],[-63.241037563999896,58.97569407800015],[-63.21621660099992,58.983954169000135],[-63.20103919199994,58.9854597030001],[-63.183176235999895,58.98436107000005],[-63.16958574099993,58.97789134300014],[-63.16783606699994,58.96344635600009],[-63.176625128999916,58.95746491100009],[-63.19416256399995,58.95355866100008],[-63.22984778599988,58.95038483300011],[-63.22984778599988,58.942979234000134],[-63.21182206899996,58.94306061400011],[-63.19017493399988,58.94000885600011],[-63.17129472599993,58.933417059000064],[-63.16161048099988,58.92247142100008],[-63.18504798099985,58.914984442000026],[-63.236683722999906,58.881537177000055],[-63.2579646479999,58.87413157800015],[-63.32607988199993,58.861029364],[-63.31623287699989,58.85602448100015],[-63.31297766799986,58.85639069200006],[-63.29832923099993,58.851996161],[-63.27525794199988,58.85309479400003],[-63.22984778599988,58.861029364],[-63.19505774599995,58.85911692900013],[-63.18077551999994,58.86481354400002],[-63.16783606699994,58.881537177000055],[-63.15477454299987,58.87409088700018],[-63.17906653599993,58.84149811400011],[-63.1788630849999,58.82843659100014],[-63.15477454299987,58.82628001500013],[-63.139393683999906,58.83319733300014],[-63.124867316999875,58.8467878280001],[-63.11668860599988,58.862127997000144],[-63.120676235999944,58.87409088700018],[-63.09186764199992,58.894964911000145],[-63.05247962099994,58.90228913000005],[-63.01451575399991,58.89740631700009],[-62.989654100999864,58.881537177000055],[-63.0279434889999,58.87653229400011],[-63.04743404899992,58.87079498900014],[-63.05239824099996,58.861029364],[-63.042795376999976,58.85932038],[-62.926909959999904,58.82318756700006],[-62.91462154899995,58.8126081400001],[-62.910023566999904,58.796942450000024],[-62.913319464999944,58.784613348000086],[-62.91722571499995,58.77423737200009],[-62.91462154899995,58.76483795800005],[-62.91551673099994,58.76011790600013],[-62.917632615999935,58.75840892100014],[-62.91812089799992,58.756537177000084],[-62.91462154899995,58.75116608300011],[-63.033314581999974,58.71918366100011],[-63.044911261999886,58.710191148000106],[-63.038685675999915,58.709092515000165],[-63.02448482999992,58.70274485900004],[-63.020659959999904,58.70164622599999],[-62.94562740799995,58.70274485900004],[-62.92003333199989,58.70709870000003],[-62.89549719999988,58.71417877800018],[-62.87287350199989,58.715643622000144],[-62.85313880099997,58.70274485900004],[-62.84459387899995,58.685166734000106],[-62.846506313999896,58.66925690300017],[-62.85667883999986,58.655625718000046],[-62.87295488199987,58.64472077000006],[-62.88621985599991,58.640448309000064],[-62.907826300999915,58.63768138199999],[-62.917632615999935,58.631415106000034],[-62.921131964999944,58.62348053600009],[-62.92027747299995,58.615301825000145],[-62.92251542899991,58.6065534530001],[-62.93537350199995,58.5966250670001],[-63.07835852799985,58.55914948100015],[-63.124663865999935,58.531561591000134],[-63.15477454299987,58.52464427300005],[-63.15949459499987,58.52008698100009],[-63.16307532499985,58.50873444200011],[-63.16783606699994,58.50482819200012],[-63.17564856699994,58.50348541900014],[-63.27855383999992,58.50580475500003],[-63.30557206899996,58.510972398000106],[-63.32689368399994,58.49701569200014],[-63.368641730999876,58.49774811400006],[-63.412953253999916,58.50853099199999],[-63.44220943899995,58.52464427300005],[-63.448801235999916,58.50446198100011],[-63.471424933999884,58.49030182500009],[-63.499867316999904,58.48143138200006],[-63.5240779289999,58.477484442000055],[-63.39126542899993,58.491074937000015],[-63.37490800699993,58.490545966000056],[-63.356068488999874,58.48716868700002],[-63.34194902299995,58.478827216000134],[-63.33975175699996,58.46320221600017],[-63.34707597599996,58.456854559000035],[-63.387562628999895,58.42902252800017],[-63.41030839799993,58.40745677300007],[-63.420765753999916,58.399603583000086],[-63.43529212099995,58.39154694200015],[-63.48741614499988,58.377875067000026],[-63.534779425999915,58.35272858300012],[-63.582142706999946,58.31745026200009],[-63.59300696499995,58.30552806200013],[-63.568186001999884,58.305772203000096],[-63.546538865999906,58.311875718000074],[-63.48851477799994,58.344224351000015],[-63.421701626999884,58.36762116100009],[-63.26402747299988,58.470038153000175],[-63.26402747299988,58.46320221600017],[-63.24787350199991,58.470689195000126],[-63.14411373599992,58.478379624000134],[-63.124908006999874,58.47589752800004],[-63.10667883999988,58.46885814000013],[-63.08584550699991,58.45636627800014],[-63.09801184799991,58.44603099200005],[-63.127430792999895,58.41478099200007],[-63.1571345689999,58.39500560100005],[-63.165679490999935,58.383490302000105],[-63.16161048099988,58.36762116100009],[-63.15477454299987,58.381293036000116],[-63.14053300699995,58.38361237200008],[-63.07909094999989,58.44269440300011],[-63.06330318899992,58.45160553600014],[-63.05166581899993,58.45209381700012],[-63.03062903599991,58.44269440300011],[-63.028920050999886,58.440537828000025],[-63.02733313699986,58.43671295799999],[-63.024159308999884,58.43244049700009],[-63.017648891999904,58.42902252800017],[-63.00967363199993,58.428697007000046],[-62.98346920499991,58.43650950700014],[-62.978016730999876,58.44737376500002],[-62.960804816999946,58.45929596600016],[-62.93773352799988,58.468207098],[-62.91462154899995,58.470038153000175],[-62.85313880099997,58.477484442000055],[-62.84410559799994,58.47532786700008],[-62.8329972,58.47129954600008],[-62.82355709499993,58.47113678600011],[-62.81725012899998,58.48493073100003],[-62.8115128249999,58.49005768400015],[-62.80443274599994,58.494818427000055],[-62.79784094999988,58.49799225500011],[-62.78425045499992,58.49799225500011],[-62.79234778599994,58.48021067900013],[-62.792958136999886,58.465928453000124],[-62.785959438999924,58.45892975500006],[-62.77122962099992,58.46320221600017],[-62.76724199099993,58.46849192900014],[-62.76292883999995,58.48436107000007],[-62.75694739499994,58.491074937000015],[-62.743723110999895,58.49628327],[-62.73208574099988,58.49567291900014],[-62.720082160999965,58.49286530199999],[-62.70567786399992,58.491074937000015],[-62.62059485599988,58.50608958500014],[-62.57860266799992,58.50421784100016],[-62.558257615999906,58.477484442000055],[-62.60676021999989,58.45636627800014],[-62.60204016799988,58.44647858300014],[-62.599232550999915,58.44269440300011],[-62.61558997299994,58.438421942],[-62.630116339999894,58.43170807500014],[-62.65392005099998,58.41478099200007],[-62.62682044199993,58.38617584800009],[-62.61937415299988,58.37083567900013],[-62.63341223899991,58.360174872000115],[-62.626616990999906,58.35191478100002],[-62.62181555899991,58.336859442],[-62.620350714999944,58.320664781000126],[-62.62344316299994,58.309271552],[-62.63451087099986,58.3018659530001],[-62.7091365229999,58.28510163000009],[-62.712513800999915,58.28180573100006],[-62.71548417899993,58.27728913],[-62.72118079299991,58.27317942900014],[-62.73273678299992,58.27134837400016],[-62.855539516999926,58.268662828000075],[-62.872629360999944,58.26190827000015],[-62.886341925999886,58.23749420799999],[-62.89903723899993,58.22614166900003],[-62.907582160999965,58.214341539000074],[-62.901519334999875,58.20311107000004],[-62.88805091099988,58.20282623900012],[-62.878041144999905,58.21515534100017],[-62.87022864499991,58.23004791900003],[-62.8630264959999,58.237250067000055],[-62.85366777299995,58.24022044500008],[-62.8329972,58.25377024900003],[-62.82168535099995,58.25710683800015],[-62.7981664699999,58.25360748900005],[-62.69717363199996,58.25324127800014],[-62.6749568349999,58.261175848000114],[-62.667591925999915,58.27147044500013],[-62.65054277299995,58.269110419000086],[-62.6166072259999,58.25775788000012],[-62.600412563999946,58.25458405200015],[-62.589955206999974,58.24640534100005],[-62.5833227199999,58.235215562000015],[-62.578765428999866,58.22300853100013],[-62.61461341099996,58.21381256700009],[-62.620350714999944,58.20648834800006],[-62.624663865999935,58.19574616100006],[-62.63524329299989,58.18675364800004],[-62.6485896479999,58.17999909100011],[-62.66136633999986,58.17584870000014],[-62.754750128999945,58.17121002800003],[-62.81745357999992,58.17906321800002],[-63.07909094999989,58.155340887000115],[-63.06444251199988,58.14830149900014],[-63.02806555899988,58.144842841000134],[-63.01081295499998,58.141058661000116],[-63.03453528599988,58.118231512000094],[-63.20059160099996,58.06867096600016],[-63.20938066299993,58.06224192900005],[-63.19880123599998,58.05731842699999],[-63.149322068999936,58.06268952000014],[-63.13434811099989,58.06598541900008],[-63.14940344999991,58.042954820000105],[-63.16812089799986,58.02802155200009],[-63.192982550999915,58.019964911000145],[-63.25548255099994,58.01496002800009],[-63.28620357999995,58.007798570000055],[-63.315256313999924,57.997259833],[-63.33975175699996,57.983994859000155],[-63.32176673099991,57.98334381700012],[-63.13825436099999,57.999863999000084],[-63.1195369129999,58.00486888200013],[-63.10326087099989,58.01447174700011],[-63.09943600199997,58.02130768400003],[-63.10106360599988,58.03778717700011],[-63.09951738199996,58.045477606000034],[-63.092437303999894,58.05805084800012],[-63.066395636999914,58.07286204600011],[-63.0357559889999,58.08283112200008],[-62.98908443899989,58.092515367000054],[-62.97972571499988,58.09324778899998],[-62.971424933999884,58.09638092700005],[-62.96987870999995,58.10321686400009],[-62.96987870999995,58.11005280199999],[-62.96442623599992,58.115057684000035],[-62.94880123599992,58.12433502800009],[-62.93399003799996,58.130560614000146],[-62.926177537999955,58.13287995000011],[-62.88947506399995,58.137274481000084],[-62.8525284499999,58.147040106000034],[-62.8326309889999,58.14789459800012],[-62.8326309889999,58.141058661000116],[-62.838002081999974,58.14000071800017],[-62.85313880099997,58.134833075000145],[-62.84080969999991,58.12348053600008],[-62.81883704299992,58.12474192899999],[-62.77122962099992,58.134833075000145],[-62.765207485999916,58.13263580900015],[-62.75861568899995,58.12828196800017],[-62.74958248599992,58.12535228100014],[-62.736439581999974,58.12738678600009],[-62.73525956899993,58.12950267100008],[-62.73493404899991,58.133490302000084],[-62.73346920499994,58.13776276200018],[-62.72899329299989,58.141058661000116],[-62.718861456999946,58.14423248900009],[-62.71418209499992,58.14459870000008],[-62.68114173099988,58.13462962400011],[-62.66559811099995,58.12754954600013],[-62.65123450399988,58.12384674700009],[-62.63341223899991,58.12738678600009],[-62.61534583199988,58.13934967700011],[-62.59780839799995,58.15477122600006],[-62.58116614499991,58.1652692730001],[-62.56574459499986,58.162095445000055],[-62.56053626199988,58.14862702000006],[-62.55899003799993,58.13365306200005],[-62.55211341099994,58.12933991100011],[-62.53099524599992,58.14789459800012],[-62.52570553299995,58.15635814000007],[-62.52472896999988,58.16246165600016],[-62.521717902999875,58.16828034100003],[-62.510487433999884,58.17584870000014],[-62.47101803299989,58.1821963560001],[-62.46206620999987,58.181992906000126],[-62.45099850199992,58.16779205900003],[-62.46532141799991,58.15131256700015],[-62.52415930899991,58.110174872000144],[-62.52940833199989,58.10321686400009],[-62.53099524599992,58.09324778899998],[-62.525380011999914,58.08751048400002],[-62.51537024599994,58.081732489000146],[-62.50975501199994,58.074896552000105],[-62.51732337099988,58.06598541900008],[-62.51732337099988,58.058539130000106],[-62.49632727799985,58.05992259300008],[-62.4908341139999,58.06976959800003],[-62.49176998599989,58.08262767100014],[-62.490061001999884,58.09324778899998],[-62.47972571499989,58.10191478100007],[-62.466135219999835,58.10773346600003],[-62.45067298099991,58.111273505000106],[-62.395985480999876,58.114813544000086],[-62.37669837099992,58.112901109000134],[-62.36652584499989,58.106878973000114],[-62.37132727799988,58.09625885600017],[-62.39020748599989,58.09068431200008],[-62.428578253999916,58.08641185100008],[-62.387033657999915,58.07212962400017],[-62.3958227199999,58.05963776200014],[-62.391184048999975,58.05198802300013],[-62.378488735999916,58.05194733300014],[-62.36310787699997,58.06224192900005],[-62.344593878999945,58.071478583000115],[-62.326893683999856,58.06464264500001],[-62.312855597999906,58.048773505000085],[-62.305043097999906,58.031195380000135],[-62.326893683999856,58.02696360900002],[-62.366444464999915,58.00523509300014],[-62.387033657999915,57.9976667340001],[-62.41828365799989,57.99705638200014],[-62.47866777299993,58.00983307500009],[-62.510487433999884,58.011338609000134],[-62.5344945949999,58.00568268400007],[-62.65562903599989,57.94867584800012],[-62.6749568349999,57.93561432500014],[-62.64391028599987,57.937933661000116],[-62.5923966139999,57.96344635600011],[-62.562001105999855,57.96971263200008],[-62.48664303299997,57.976548569999984],[-62.46934973899988,57.974351304],[-62.4380997389999,57.96519603100002],[-62.42113196499995,57.96356842699999],[-62.4295955069999,57.94904205900015],[-62.42772376199991,57.930731512000094],[-62.42345130099991,57.91498444200012],[-62.42487545499997,57.90827057500009],[-62.42760169199993,57.89996979400011],[-62.427967902999875,57.88336823100015],[-62.420765753999916,57.87067291900009],[-62.40062415299988,57.8741315780001],[-62.39232337099992,57.88373444200006],[-62.38585364499991,57.89935944200014],[-62.37734941299987,57.949774481000176],[-62.36921139199995,57.96141185099999],[-62.3391820949999,57.983994859000155],[-62.327748175999936,57.96784088700009],[-62.324940558999906,57.945746161000116],[-62.33096269399991,57.92552317899999],[-62.34601803299993,57.915106512000094],[-62.32408606699991,57.90904368700002],[-62.30475826699998,57.92051829600014],[-62.27774003799993,57.95673248900009],[-62.26683508999986,57.95001862200002],[-62.242583787999955,57.944566148],[-62.23302161399988,57.93931712400011],[-62.22671464799993,57.930487372000144],[-62.223011847999885,57.92206452],[-62.21833248599998,57.91449616100014],[-62.20885169199997,57.90827057500009],[-62.2005102199999,57.93480052300005],[-62.19517981699994,57.943060614000146],[-62.157338019999884,57.97313060099999],[-62.14085852799991,57.97825755399999],[-62.121937628999895,57.96906159100003],[-62.103627081999925,57.955918687000164],[-62.089019334999904,57.949286200000095],[-62.08153235599993,57.94696686400012],[-62.076283331999946,57.941107489],[-62.07323157499985,57.933294989],[-62.070139126999976,57.91181061400005],[-62.06651770699991,57.904974677000055],[-62.0657445949999,57.89891185100005],[-62.07233639199995,57.88780345300004],[-62.088246222999885,57.87437571800005],[-62.127186652999875,57.851792710000055],[-62.140533006999874,57.83319733300005],[-62.13410396999987,57.83075592700011],[-62.129628058999906,57.827134507000075],[-62.12539628799988,57.823065497000115],[-62.11945553299994,57.818915106000155],[-62.11872311099992,57.797471421000026],[-62.081166144999905,57.78961823100015],[-62.034738735999944,57.78693268400015],[-62.00715084499987,57.78135814000016],[-61.96296139199998,57.73505280200008],[-61.950062628999945,57.709173895000056],[-61.96861731699997,57.69599030200011],[-61.96861731699997,57.68854401200003],[-61.90518144399993,57.67247142100014],[-61.89415442599991,57.67182038000011],[-61.89297441299988,57.66132233300014],[-61.88784745999996,57.64838288000015],[-61.886708136999914,57.63764069200012],[-61.88988196499989,57.62498607000005],[-61.89810136599987,57.62169017100011],[-61.909331834999904,57.62217845300011],[-61.92145748599997,57.62091705900009],[-61.97398841099993,57.60667552299999],[-62.03856360599988,57.59764232],[-62.057443813999924,57.58824290600013],[-62.06859290299994,57.58612702000015],[-62.07681230399993,57.58222077000014],[-62.075347459999875,57.57282135600013],[-62.071441209999875,57.56150950700014],[-62.07233639199995,57.55206940300004],[-62.08967037699995,57.54075755400013],[-62.11534583199992,57.534613348000065],[-62.16417395699992,57.53156159100017],[-62.24372311099989,57.544989325000145],[-62.27033443899995,57.53839752800008],[-62.28921464799986,57.52362702],[-62.328684048999946,57.466050523000135],[-62.34894771999987,57.45774974200004],[-62.37413489499991,57.463202216000084],[-62.42113196499995,57.48309967699999],[-62.51610266799986,57.508978583],[-62.54466712099986,57.51105377800011],[-62.53368079299988,57.49603913],[-62.5150447259999,57.48309967699999],[-62.469553188999924,57.46263255400011],[-62.41490637899989,57.44896067899999],[-62.403879360999916,57.44310130400014],[-62.386341925999886,57.43085358300009],[-62.377064581999946,57.428534247000115],[-62.31501217399991,57.428534247000115],[-62.301380988999966,57.431708075000174],[-62.276926235999916,57.44578685100011],[-62.26378333199995,57.44896067899999],[-62.21031653599994,57.44932689000011],[-62.20201575399994,57.45270416900002],[-62.196115688999924,57.459540106000034],[-62.18224036399994,57.465073960000055],[-62.166371222999906,57.468573309000064],[-62.159372524999924,57.46906159100002],[-62.135487433999856,57.46100495000008],[-62.031320766999954,57.45640696800016],[-61.90038001199986,57.415472723000114],[-61.81704667899994,57.377386786000145],[-61.804798956999974,57.367051499000134],[-61.82347571499986,57.358384507000046],[-61.92764238199996,57.367051499000134],[-61.92764238199996,57.36021556200002],[-61.88646399599988,57.350816148000014],[-61.87149003799993,57.34284088700004],[-61.87677975199992,57.32892487200015],[-61.87901770699991,57.31895579600017],[-61.873605923999946,57.306952216000134],[-61.8707576159999,57.293036200000174],[-61.880482550999965,57.27765534100003],[-61.89395097599996,57.270453192],[-61.93211829299992,57.25901927300005],[-61.94505774599991,57.25714752800017],[-62.023915167999895,57.25714752800017],[-62.018666144999884,57.24957916900003],[-62.0116267569999,57.242987372000144],[-62.00316321499988,57.23838939000002],[-61.99315344999989,57.23668040600001],[-61.965565558999884,57.23668040600001],[-61.96214758999985,57.23456452],[-61.96271725199992,57.225165106000176],[-61.959055141999976,57.22308991100006],[-61.90672766799989,57.21918366100006],[-61.88296464799989,57.21002838700018],[-61.873036261999886,57.19200267100014],[-61.865101691999904,57.17064036700002],[-61.84675045499998,57.17039622600005],[-61.81163489499991,57.188299872000115],[-61.78526770699989,57.19627513200005],[-61.77611243399991,57.19110748900006],[-61.77794348899991,57.17609284100003],[-61.78429114499991,57.15477122600008],[-61.649240688999974,57.23309967700014],[-61.619781053999894,57.229925848000065],[-61.63076738199996,57.223008531000076],[-61.67747962099994,57.18390534100003],[-61.69151770699988,57.174627997000165],[-61.69863847599996,57.17157623900009],[-61.700754360999944,57.164740302000055],[-61.69644120999995,57.157904364000146],[-61.684396938999946,57.15477122600008],[-61.52672278599994,57.16120026200017],[-61.47179114499993,57.15607330900015],[-61.42121334499988,57.14109935100013],[-61.38190670499994,57.12107982000008],[-61.36571204299989,57.10687897300015],[-61.35912024599992,57.08958567900005],[-61.36229407499988,57.08002350500006],[-61.37637285099992,57.066961981000084],[-61.37962805899989,57.05516185100011],[-61.37629146999984,57.04584381700008],[-61.35928300699987,57.033026434000035],[-61.35228430899991,57.023789781000076],[-61.35415605399987,57.024237372000165],[-61.35488847599989,57.01898834800009],[-61.354725714999944,57.0175641950001],[-61.35505123599995,57.01650625200007],[-61.36900794199993,57.01121653899999],[-61.37067623599995,57.00242747600011],[-61.36131751199992,56.99420807500003],[-61.344838019999905,56.98969147300006],[-61.349680141999904,56.981146552000055],[-61.349842902999875,56.97370026200015],[-61.34593665299988,56.96759674700009],[-61.33869381399995,56.96295807500014],[-61.344838019999905,56.95551178600009],[-61.35724850199994,56.96149323100009],[-61.37905839799989,56.98126862200003],[-61.39321855399993,56.98969147300006],[-61.411936001999884,56.98175690300012],[-61.429025844999835,56.98016998900008],[-61.465565558999884,56.98285553600006],[-61.48428300699996,56.98200104400014],[-61.50177975199992,56.97894928600006],[-61.519032355999904,56.972967841000134],[-61.5372615229999,56.96295807500014],[-61.567290818999936,56.9216169290001],[-61.575103318999936,56.91453685100008],[-61.592111782999886,56.91172923400002],[-61.611236131999874,56.90440501500011],[-61.62946529899994,56.89439524900003],[-61.643422003999916,56.88353099200004],[-61.651478644999976,56.86876048400016],[-61.64948482999991,56.85529205900018],[-61.64537512899998,56.84141673400008],[-61.647124803999866,56.825791734000106],[-61.66417395699991,56.808946031000104],[-61.686350063999896,56.80919017100013],[-61.70860755099994,56.81354401200004],[-61.72622636599996,56.80878327000011],[-61.76060950399992,56.792792059000035],[-61.80919348899996,56.788519598000114],[-61.858265753999916,56.79352448100014],[-61.89415442599991,56.80536530200011],[-61.90465247299997,56.793768622000115],[-61.90510006399995,56.77745189000007],[-61.89818274599987,56.761216539000046],[-61.886708136999914,56.75006745000003],[-61.897206183999884,56.738389390000016],[-61.901478644999905,56.72382233299999],[-61.89830481699993,56.710394598],[-61.886708136999914,56.702337958000086],[-61.87621008999985,56.723944403000175],[-61.86473548099991,56.74127838700015],[-61.847157355999876,56.752752997000115],[-61.81847083199991,56.75690338700003],[-61.750803188999974,56.75165436400005],[-61.72081458199992,56.7432722030001],[-61.694935675999915,56.72960032800015],[-61.711333787999905,56.71104564000014],[-61.731922980999855,56.70380280200013],[-61.75633704299988,56.70404694200009],[-61.814076300999936,56.71246979400002],[-61.81993567599997,56.70897044500013],[-61.79051673099988,56.68121979400014],[-61.770619269999884,56.68785228100002],[-61.747181769999905,56.67987702000006],[-61.72248287699992,56.667669989],[-61.67162024599988,56.655462958000115],[-61.65835527299987,56.642157294000086],[-61.66266842399997,56.62824127800011],[-61.688099738999874,56.62034739800004],[-61.70250403599994,56.62156810100008],[-61.74331620999991,56.63397858299999],[-61.86888587099995,56.637274481000034],[-61.902251756999924,56.64317454600017],[-61.92764238199996,56.653876044000086],[-61.89679928299989,56.66852448100009],[-61.905140753999945,56.67841217700011],[-61.92821204299992,56.681992906000076],[-61.9413142569999,56.678086656000076],[-61.95445716099994,56.66526927300005],[-61.9844457669999,56.664414781000126],[-62.03750566299993,56.674994208],[-62.124663865999956,56.70494212400017],[-62.23794511599993,56.71625397300015],[-62.26414954299989,56.72215403899999],[-62.34801184799997,56.75287506700009],[-62.48387610599991,56.77558014500012],[-62.503081834999875,56.78485748900009],[-62.47899329299987,56.798285223000065],[-62.305043097999906,56.81842682500012],[-62.27407792899988,56.82782623900012],[-62.260121222999906,56.828436591000084],[-62.228179490999906,56.81745026200004],[-62.04442298099991,56.825791734000106],[-62.08869381399998,56.8412946640001],[-62.33885657499988,56.84629954600014],[-62.354074673999946,56.84406159100017],[-62.38451087099992,56.83429596600003],[-62.40062415299988,56.83201732000008],[-62.421742316999904,56.83458079600017],[-62.4757380849999,56.853094794000086],[-62.49376380099994,56.85460032800013],[-62.51268469999985,56.85276927300005],[-62.53038489499996,56.84772370000003],[-62.54466712099986,56.839463609000134],[-62.554676886999935,56.82725657800016],[-62.56135006399989,56.81456126500011],[-62.56989498599992,56.80394114800004],[-62.585601365999885,56.79783763200008],[-62.56786048099989,56.795965887000094],[-62.41490637899989,56.75031159100017],[-62.35968990799994,56.72215403899999],[-62.33873450399991,56.71702708500008],[-62.28429114499991,56.71198151200004],[-62.267201300999965,56.70538971600017],[-62.24767005099988,56.69505442900005],[-62.16759192599991,56.678086656000076],[-62.09992428299997,56.650824286],[-62.00715084499987,56.63397858299999],[-61.95848548099992,56.635077216000056],[-61.934681769999905,56.63304271000011],[-61.914051886999886,56.626532294000114],[-61.940174933999856,56.61615631700011],[-62.24299068899996,56.626532294000114],[-62.23839270699995,56.62250397300015],[-62.23888098899991,56.620917059000114],[-62.24299068899996,56.62034739800004],[-62.023915167999895,56.59300364800008],[-62.00096594999987,56.5876325540001],[-61.917713995999954,56.58563873900009],[-61.86969967399994,56.59300364800008],[-61.8539119129999,56.59039948100017],[-61.78180904899989,56.56602610900001],[-61.769642706999925,56.564520575000145],[-61.75641842399997,56.56513092700011],[-61.74632727799991,56.569647528000175],[-61.735340949999845,56.576727606000034],[-61.72370357999995,56.58055247600005],[-61.71202551999993,56.57538483300006],[-61.699208136999914,56.56122467700011],[-61.69237219999991,56.555283921000104],[-61.68126380099997,56.548407294000086],[-61.65884355399995,56.539374091000084],[-61.652658657999886,56.53168366100006],[-61.65396074099988,56.51666901200003],[-61.66759192599994,56.50328196800014],[-61.713978644999905,56.50141022300006],[-61.75658118399994,56.48582591399999],[-61.97740637899994,56.51068756700012],[-62.036773240999906,56.50804271000014],[-62.08592688699991,56.49005768400009],[-62.08592688699991,56.48322174700017],[-62.06330318899996,56.48334381700015],[-62.020090298999946,56.4896100930001],[-61.985096808999856,56.48912181200002],[-61.96996008999986,56.48725006700015],[-61.95616614499994,56.483099677000105],[-61.948801235999944,56.47569407800002],[-61.948068813999924,56.465643622000144],[-61.952748175999936,56.46308014500015],[-61.96043860599985,56.46344635600015],[-62.01012122299996,56.45286692900011],[-62.10342363199987,56.458929755],[-62.1473689439999,56.45526764500015],[-62.12547766799985,56.44285716400013],[-62.10338294199988,56.434393622000165],[-62.08104407499985,56.42955149900011],[-61.975412563999896,56.421861069999984],[-61.96247311099989,56.424505927000084],[-61.95311438699985,56.44220612200017],[-61.93268795499998,56.43659088700014],[-61.91246497299997,56.42230866100009],[-61.90379798099988,56.41429271000014],[-61.84471594999985,56.40973541900008],[-61.81395423099985,56.40338776200015],[-61.79051673099988,56.39378489799999],[-61.81590735599991,56.388617255000085],[-61.845773891999904,56.387030341000134],[-61.8302302729999,56.37689850499999],[-61.776844855999855,56.35968659100016],[-61.77285722599987,56.35521067900011],[-61.77090410099992,56.34943268400003],[-61.766753709999875,56.34361399900008],[-61.75641842399997,56.33917877800012],[-61.74754798099994,56.33942291900014],[-61.72642981699991,56.344916083],[-61.71544348899996,56.34540436400009],[-61.71544348899996,56.33917877800012],[-61.735340949999845,56.33336009300017],[-61.74331620999991,56.332342841000084],[-61.71996008999991,56.32416413],[-61.66539466099993,56.32807038],[-61.6396378249999,56.32554759300017],[-61.6227107409999,56.31810130399999],[-61.60562089799987,56.306830145],[-61.59707597599995,56.29441966399999],[-61.60553951699989,56.283921617000104],[-61.62669837099989,56.28367747600005],[-61.76846269399988,56.31309642100013],[-61.796254035999965,56.31317780200014],[-61.817860480999855,56.30442942900005],[-61.799183722999885,56.297837632],[-61.6607559889999,56.277777411000116],[-61.6607559889999,56.270941473],[-61.74828040299985,56.25633372599999],[-61.79653886599991,56.256822007000075],[-61.8314509759999,56.270941473],[-61.788075324999845,56.26915110900002],[-61.767567511999886,56.272650458000115],[-61.75641842399997,56.283921617000104],[-61.77635657499987,56.290228583000136],[-61.82746334499984,56.297308661],[-61.90746008999991,56.29551829600002],[-61.94688880099988,56.28685130400011],[-61.965565558999884,56.28656647300009],[-61.983387824999845,56.29100169500008],[-62.00031490799992,56.301336981000176],[-62.01793372299994,56.30894603100001],[-62.03840084499992,56.30845774900003],[-62.078480597999935,56.29820384300011],[-62.06720943899995,56.28546784100014],[-62.04629472599989,56.27374909100014],[-62.00401770699997,56.257269598000065],[-62.01618404899995,56.248480536],[-62.00890051999994,56.240464585000055],[-61.93529212099989,56.21735260600012],[-61.9144587879999,56.21662018400018],[-61.882232225999964,56.23436107000008],[-61.86668860599985,56.23224518400015],[-61.850819464999915,56.226019598],[-61.835194464999944,56.22247955900012],[-61.798085089999944,56.22382233300011],[-61.76317298099991,56.22931549700006],[-61.772287563999896,56.21381256700011],[-61.776844855999855,56.20884837400017],[-61.722808397999955,56.20884837400017],[-61.71165930899994,56.21202220300013],[-61.6910701159999,56.22077057500011],[-61.67756100199992,56.22247955900012],[-61.59923255099994,56.22361888200005],[-61.59251868399991,56.22247955900012],[-61.586537238999874,56.21893952000015],[-61.5826716789999,56.21458567900005],[-61.58031165299994,56.210760809000035],[-61.578846808999884,56.20884837400017],[-61.55772864499993,56.20115794500005],[-61.54702714799992,56.200384833000136],[-61.43455969999987,56.21381256700011],[-61.403146938999924,56.22321198100015],[-61.37279212099986,56.228827216000134],[-61.344838019999905,56.22247955900012],[-61.344838019999905,56.216294664000046],[-61.35228430899991,56.205755927],[-61.34439042899992,56.19664134300011],[-61.334339972999935,56.187933661000116],[-61.33519446499986,56.1780866560001],[-61.34996497299994,56.17369212400011],[-61.371734178999894,56.17283763200011],[-61.39150956899993,56.1694196640001],[-61.40005449099993,56.1573347030001],[-61.403960740999935,56.14109935100005],[-61.40941321499989,56.13231028899999],[-61.40672766799992,56.12999095300004],[-61.38646399599989,56.133124091000106],[-61.37718665299994,56.13646067900013],[-61.36986243399994,56.141221421000026],[-61.36131751199992,56.14557526200012],[-61.34854081899997,56.147406317],[-61.33926347599993,56.144598700000145],[-61.33958899599995,56.13825104400011],[-61.345366990999906,56.13133372600011],[-61.35228430899991,56.126898505000135],[-61.35228430899991,56.11945221600017],[-61.338612433999884,56.11102936400012],[-61.34829667899993,56.10297272300009],[-61.42601477799994,56.08201732000013],[-61.44391842399988,56.072577216000106],[-61.455311652999846,56.058050848000065],[-61.42503821499985,56.05011627800012],[-61.400380011999886,56.05048248900011],[-61.344838019999905,56.06480540600001],[-61.31997636599988,56.067206122000144],[-61.291086391999954,56.064032294000086],[-61.261586066999875,56.05589427300008],[-61.23497473899994,56.04376862200017],[-61.2818904289999,56.045599677000055],[-61.305327928999866,56.04405345300002],[-61.32559160099987,56.037543036000116],[-61.31232662699995,56.032538153000175],[-61.2987361319999,56.030625718000024],[-61.27037512899994,56.030707098],[-61.27037512899994,56.02448151200004],[-61.39834550699994,56.032700914000046],[-61.46812903599991,56.029730536000116],[-61.5030818349999,56.010199286000145],[-61.47443600199992,56.01048411699998],[-61.45193437399984,56.00706614800008],[-61.43915768099989,56.005113023000135],[-61.383046027999875,55.9965681010001],[-61.37987219999991,55.99335358300014],[-61.37877356699997,55.986314194999984],[-61.37987219999991,55.979234117000104],[-61.383046027999875,55.97614166900003],[-61.39317786399993,55.97667064000011],[-61.40151933499991,55.978135484000155],[-61.413726365999885,55.982285874000105],[-61.41828365799992,55.9883893900001],[-61.42800859299987,55.995591539000124],[-61.43659420499989,55.99856191600004],[-61.44721432199992,56.002305406000076],[-61.454986131999924,56.003078518],[-61.46214758999989,56.002752997000165],[-61.46141516799994,55.99103424700008],[-61.447132941999946,55.98057689000011],[-61.417469855999904,55.96552155199999],[-61.40274003799993,55.95990631700009],[-61.34544837099988,55.96930573100012],[-61.26292883999989,55.96930573100012],[-61.242746548999946,55.96678294500001],[-61.22972571499986,55.962713934000035],[-61.201486782999886,55.948187567],[-61.17658443899995,55.97606028900004],[-61.13898678299995,55.972154039000046],[-61.10008704299985,55.95136139500006],[-61.07115637899994,55.92829010600009],[-61.07603919199993,55.920599677],[-61.07884680899988,55.91205475500006],[-61.079701300999886,55.90277741100003],[-61.078521287999955,55.892889716000084],[-61.10187740799994,55.900010484000134],[-61.13805091099987,55.90143463700012],[-61.17332923099991,55.89862702000006],[-61.19399980399993,55.892889716000084],[-61.193267381999895,55.879624742000075],[-61.16588294199994,55.86961497599999],[-61.11953691299996,55.859442450000024],[-61.09850012899994,55.84833405200011],[-61.06590735599988,55.84955475500011],[-60.945464647999955,55.870306708000115],[-60.93394934799991,55.869940497000115],[-60.91624915299991,55.86351146],[-60.89586341099993,55.86041901200012],[-60.78160559799997,55.859686591000084],[-60.74681555899991,55.850165106000176],[-60.72850501199986,55.825262762000065],[-60.735991990999935,55.80003489799999],[-60.76105709499993,55.78086985900002],[-60.81786048099988,55.75641510600017],[-60.872670050999886,55.75267161700005],[-60.892974412999905,55.74949778899999],[-60.94928951699995,55.755072333],[-60.968658006999874,55.74949778899999],[-60.95616614499996,55.74567291900017],[-60.950184699999845,55.74262116100009],[-60.94762122299994,55.73961009300017],[-60.94391842399992,55.72980377800003],[-60.935454881999874,55.72984446800002],[-60.92027747299988,55.73651764500009],[-60.905018683999906,55.73663971600014],[-60.86229407499991,55.74274323100006],[-60.77179928299995,55.735541083000115],[-60.7490128249999,55.73651764500009],[-60.726144985999895,55.747626044000114],[-60.69640051999988,55.76976146],[-60.67064368399985,55.794867255000085],[-60.653960740999906,55.825303453000124],[-60.640858527999846,55.82794830900003],[-60.61554928299989,55.825262762000065],[-60.601958787999926,55.81956614800008],[-60.60659745999987,55.80662669500008],[-60.62608801999997,55.783026434000114],[-60.61388098899988,55.77362702],[-60.60716712099994,55.754706122000165],[-60.606556769999884,55.73301829600008],[-60.61241614499991,55.715399481000176],[-60.60558020699991,55.71470774900002],[-60.59654700399988,55.710394598000114],[-60.591379360999895,55.708563544000135],[-60.60216223899991,55.698838609000106],[-60.614898240999935,55.69029368700007],[-60.62877356699994,55.684190171000076],[-60.64256751199986,55.68187083500014],[-60.656239386999886,55.67637767100011],[-60.657053188999896,55.66417064000002],[-60.64891516799989,55.651963609000134],[-60.63605709499987,55.64655182500012],[-60.63125566299996,55.64044830900012],[-60.63735917899996,55.62702057500003],[-60.65343176999994,55.60553620000009],[-60.67711341099994,55.58930084800014],[-60.685129360999895,55.578558661000145],[-60.68130449099988,55.56456126500008],[-60.63267981699993,55.61212799700017],[-60.61554928299989,55.61920807500003],[-60.602202928999894,55.62787506700011],[-60.58999589799992,55.648138739000146],[-60.57144120999991,55.68809642100008],[-60.547271287999905,55.72593821800005],[-60.53551184799992,55.738267319999984],[-60.53075110599991,55.746161200000145],[-60.530100063999974,55.75409577000012],[-60.53050696499989,55.76691315300014],[-60.523793097999935,55.786566473],[-60.50792395699992,55.80402252800015],[-60.48961341099994,55.81049225500006],[-60.475249803999866,55.79734935100011],[-60.46300208199992,55.80158112200003],[-60.45246334499984,55.79368724200005],[-60.440419074999944,55.78253815300003],[-60.423736131999895,55.776841539000046],[-60.41844641799992,55.779120184000035],[-60.40562903599989,55.788804429],[-60.39952551999989,55.790472723],[-60.39061438699986,55.78668854400017],[-60.38190670499997,55.77973053600009],[-60.3722224599999,55.770005601000136],[-60.35704505099992,55.774481512000094],[-60.34390214799987,55.782578843000024],[-60.33470618399988,55.78196849200007],[-60.33128821499989,55.76007721600003],[-60.38589433499993,55.72284577000015],[-60.3722224599999,55.715399481000176],[-60.37694251199991,55.710760809000064],[-60.38194739499996,55.704087632],[-60.38589433499993,55.701117255000085],[-60.373443162999926,55.69135163000014],[-60.375111456999946,55.685492255],[-60.38646399599991,55.68268463700003],[-60.41832434799994,55.67963288000005],[-60.454741990999906,55.66986725500011],[-60.471547003999916,55.667588609000134],[-60.49351966099993,55.660101630000085],[-60.51219641799992,55.64130280200011],[-60.52538001199989,55.616766669000086],[-60.53050696499989,55.59190501500014],[-60.504994269999884,55.61204661699999],[-60.47118079299991,55.63019440300009],[-60.434315558999934,55.634466864],[-60.39952551999989,55.61298248900009],[-60.39439856699988,55.585069078000124],[-60.41136633999986,55.554551499000084],[-60.454741990999906,55.503119208],[-60.428578253999966,55.51080963700012],[-60.40099036399993,55.530340887000094],[-60.35484778599994,55.57514069200012],[-60.34089107999994,55.58270905200008],[-60.326283331999946,55.58319733300006],[-60.31924394399987,55.57611725500003],[-60.3372289699999,55.54779694200006],[-60.333892381999874,55.53990306200008],[-60.3216039699999,55.534979559000035],[-60.30402584499989,55.530462958000086],[-60.30650794199991,55.51935455900003],[-60.30858313699994,55.513617255000085],[-60.31078040299993,55.50934479400014],[-60.332875128999916,55.51850006700014],[-60.343332485999895,55.51597728100002],[-60.351144985999895,55.50523509300011],[-60.3653865229999,55.48944733300006],[-60.386545376999884,55.47492096600003],[-60.454741990999906,55.44786204600008],[-60.454741990999906,55.44102610900016],[-60.444935675999886,55.435777085],[-60.44322669199988,55.42902252800014],[-60.447173631999874,55.42145416900008],[-60.454741990999906,55.41376373900009],[-60.4439998039999,55.40216705900015],[-60.451161261999935,55.384833075000174],[-60.48208574099988,55.3522809920001],[-60.460072394999884,55.356634833],[-60.44147701699998,55.36847565300014],[-60.413238084999925,55.400091864000146],[-60.42845618399992,55.415269273000135],[-60.41893469999991,55.42767975500005],[-60.37970943899998,55.44786204600008],[-60.34813391799989,55.48236725499999],[-60.327707485999916,55.494818427000105],[-60.30402584499989,55.48944733300006],[-60.311756964999915,55.487005927000105],[-60.33128821499989,55.475816148000106],[-60.33023027299993,55.467718817],[-60.35529537699992,55.44635651200004],[-60.3653865229999,55.43488190300009],[-60.35334225199997,55.43431224200013],[-60.34300696499988,55.437567450000174],[-60.33531653599994,55.44456614800005],[-60.33128821499989,55.455308335000055],[-60.31529700399988,55.441229559000114],[-60.30622311099997,55.436631578000075],[-60.293690558999884,55.43488190300009],[-60.2837621739999,55.44061920800005],[-60.28359941299993,55.45392487200009],[-60.29027258999989,55.479234117000125],[-60.2794490229999,55.50120677300005],[-60.254017706999974,55.50495026200018],[-60.224476691999904,55.4983991560001],[-60.2015681629999,55.48944733300006],[-60.20946204299988,55.47398509300013],[-60.21458899599989,55.468369859000134],[-60.20710201699992,55.46336497600002],[-60.20441646999984,55.456976630000085],[-60.206695115999906,55.44940827000011],[-60.21458899599989,55.44102610900016],[-60.19977779899992,55.43598053600014],[-60.194081183999934,55.43488190300009],[-60.194081183999934,55.42743561400012],[-60.19713294199993,55.42540110900008],[-60.2015681629999,55.42121002800015],[-60.22956295499991,55.42780182500003],[-60.2685440749999,55.42145416900008],[-60.36241614499988,55.39044830900018],[-60.37466386599994,55.380682684000035],[-60.382923956999946,55.34577057500012],[-60.39110266799994,55.33392975500006],[-60.413238084999925,55.31134674700017],[-60.391468878999945,55.30512116100011],[-60.403960740999956,55.292181708000115],[-60.428089972999885,55.282782294000086],[-60.441151495999854,55.28709544499999],[-60.44371497299996,55.292425848000065],[-60.45026607999994,55.29576243700008],[-60.45889238199996,55.29734935100011],[-60.467844204999984,55.297064520000085],[-60.46690833199989,55.29328034100014],[-60.49644934799996,55.27326080900009],[-60.50255286399993,55.270371812000164],[-60.505970831999946,55.26373932500009],[-60.508534308999884,55.24664948100015],[-60.512806769999884,55.238999742000125],[-60.52855383999994,55.22528717699999],[-60.534413214999894,55.216864325000145],[-60.53673255099994,55.20490143400012],[-60.547189907999915,55.19806549700009],[-60.61241614499991,55.167914130000085],[-60.56818600199995,55.182074286],[-60.492095506999874,55.22626373900006],[-60.458159959999925,55.235581773000106],[-60.44994055899991,55.231919664000074],[-60.44163977799985,55.224920966000084],[-60.43297278599993,55.22081126500005],[-60.423736131999895,55.22565338700012],[-60.40754146999984,55.24872467700008],[-60.39663652299986,55.25873444200006],[-60.38280188699986,55.26292552299999],[-60.35533606699991,55.259100653000175],[-60.359974738999945,55.24961985900016],[-60.412261522999955,55.21417877800015],[-60.452015753999945,55.198431708000115],[-60.467844204999984,55.18842194200012],[-60.481312628999966,55.17133209800009],[-60.502674933999906,55.13434479400014],[-60.516224738999874,55.11949290600007],[-60.53677324099993,55.10761139500012],[-60.60558020699991,55.085394598000065],[-60.65343176999994,55.057318427000084],[-60.673898891999904,55.050645249000105],[-60.673898891999904,55.04380931200011],[-60.66144771999987,55.037583726000136],[-60.66510982999992,55.02549876500005],[-60.68757076699992,54.99542877800009],[-60.670318162999926,55.009833075000145],[-60.61241614499991,55.036363023000106],[-60.57428951699995,55.07355377800012],[-60.55719967399992,55.085394598000065],[-60.53722083199991,55.09239329600014],[-60.49323482999992,55.10179271000008],[-60.475249803999866,55.11273834800015],[-60.46157792899993,55.15025462400014],[-60.457102016999954,55.15485260600009],[-60.4349259109999,55.16539134300014],[-60.42686926999996,55.167914130000085],[-60.40754146999984,55.168036200000145],[-60.39679928299992,55.16376373900012],[-60.38744055899989,55.161688544000114],[-60.3722224599999,55.167914130000085],[-60.287098761999914,55.23338450700011],[-60.26903235599988,55.24298737200008],[-60.24974524599986,55.25055573100015],[-60.22887122299988,55.25608958500008],[-60.22378495999995,55.25433991100009],[-60.218251105999855,55.24994538],[-60.21198482999989,55.247788804],[-60.204660610999895,55.252386786000116],[-60.19517981699988,55.26337311400009],[-60.1895238919999,55.26829661700005],[-60.17202714799992,55.27525462400003],[-60.16344153599994,55.284613348000065],[-60.15404212099992,55.29022858300006],[-60.13951575399998,55.284002997000115],[-60.17365475199995,55.24241771000014],[-60.16966712099989,55.23163483300011],[-60.1747940749999,55.21991608300014],[-60.194081183999934,55.19464752800009],[-60.170643683999856,55.204087632000025],[-60.13414466099991,55.235581773000106],[-60.08739173099994,55.24860260600009],[-60.04820716099991,55.27354564000002],[-60.02281653599988,55.276556708000115],[-60.029204881999895,55.26141998900012],[-60.042347785999944,55.25377024900011],[-60.05752519399993,55.247259833000115],[-60.07054602799993,55.235581773000106],[-60.07616126199991,55.22370026200015],[-60.08336341099997,55.20075104400017],[-60.09105383999989,55.18842194200012],[-60.17593339799993,55.12396881700015],[-60.18789628799987,55.099066473],[-60.194081183999934,55.099066473],[-60.21686764199996,55.10557689000011],[-60.25226803299997,55.08653392100011],[-60.28429114499997,55.05479564000014],[-60.2971085279999,55.02338288000011],[-60.286366339999894,55.028753973000086],[-60.20140540299985,55.08751048400008],[-60.10757402299995,55.13385651200015],[-60.09850012899994,55.140082098000036],[-60.08861243399985,55.151475328000075],[-60.07551021999986,55.173651434000064],[-60.0404353509999,55.21857330900015],[-60.03087317599991,55.22296784100003],[-60.02086341099994,55.22418854400014],[-60.01622473899991,55.22691478100002],[-60.02281653599988,55.235581773000106],[-59.99644934799997,55.24347565300009],[-59.93919837099992,55.23541901200015],[-59.91295325399988,55.24241771000014],[-59.92003333199995,55.25413646000011],[-59.91828365799995,55.26292552299999],[-59.909575975999864,55.26841868700002],[-59.89614824099988,55.270371812000164],[-59.88499915299988,55.273504950000024],[-59.87775631399995,55.280869859000134],[-59.87205969999988,55.28965892100011],[-59.86571204299991,55.297064520000085],[-59.84703528599994,55.30988190300012],[-59.82412675699996,55.3220075540001],[-59.79967200399991,55.33038971600017],[-59.77635657499991,55.33185455900003],[-59.773793097999906,55.31651439000008],[-59.75743567599988,55.29901764500011],[-59.76207434799991,55.29026927300004],[-59.75584876199985,55.284002997000115],[-59.76207434799991,55.284002997000115],[-59.75816809799991,55.280707098000065],[-59.755604620999925,55.279038804000045],[-59.74840247299988,55.276556708000115],[-59.73477128799993,55.292222398000106],[-59.72020423099991,55.27423737200017],[-59.71642005099988,55.252305406000126],[-59.73542232999998,55.25608958500008],[-59.7392471999999,55.24620189000014],[-59.75584876199985,55.22190989799999],[-59.744252081999946,55.22081126500005],[-59.73680579299986,55.217027085000105],[-59.733754035999965,55.21063873900009],[-59.73542232999998,55.20148346600011],[-59.7418513659999,55.194810289000046],[-59.75011145699988,55.195746161000116],[-59.76207434799991,55.20148346600011],[-59.7751358709999,55.19700755400014],[-59.78087317599997,55.193304755],[-59.78579667899993,55.18842194200012],[-59.802316860999895,55.17767975500011],[-59.81883704299989,55.16962311400009],[-59.848866339999915,55.16404857000008],[-59.86994381399995,55.15680573100006],[-59.89122473899994,55.152329819999984],[-59.9345596999999,55.16181061400009],[-59.95909583199992,55.16120026200003],[-59.97447669199997,55.155951239000146],[-59.968169725999935,55.14683665600013],[-59.975656704999885,55.140082098000036],[-59.963978644999884,55.11713288000011],[-59.95128333199992,55.12046946800014],[-59.93691972599996,55.13532135600012],[-59.9203181629999,55.14683665600013],[-59.9094945949999,55.14606354400003],[-59.8977758449999,55.14158763200008],[-59.88609778599991,55.138861395],[-59.866118943999936,55.14777252800003],[-59.862049933999884,55.14085521000014],[-59.86221269399994,55.129339911],[-59.86571204299991,55.11949290600007],[-59.79995683499994,55.11273834800015],[-59.787953253999916,55.117499091000134],[-59.76512610599991,55.140082098000036],[-59.75584876199985,55.14683665600013],[-59.73566646999993,55.15058014500009],[-59.6770727199999,55.14683665600013],[-59.67072506399995,55.14500560100008],[-59.66038977799986,55.13605377800015],[-59.65221106699994,55.13316478100002],[-59.64342200399998,55.13353099200013],[-59.62901770699991,55.13873932500003],[-59.607655402999846,55.14350006700012],[-59.56407630099994,55.167914130000085],[-59.53840084499986,55.1772321640001],[-59.536122199999916,55.18329498900012],[-59.536122199999916,55.19806549700009],[-59.5305883449999,55.21405670799999],[-59.51781165299985,55.21434153900013],[-59.504017706999946,55.20575592700011],[-59.49522864499996,55.19464752800009],[-59.49364173099994,55.17963288000005],[-59.49819902299989,55.166937567],[-59.50133216099997,55.15436432500012],[-59.49522864499996,55.140082098000036],[-59.46735592399991,55.15074290600013],[-59.44005286399994,55.15184153900002],[-59.43004309799995,55.14203522300006],[-59.45421301999997,55.11949290600007],[-59.48631751199995,55.100897528000175],[-59.49522864499996,55.092230536],[-59.514068162999905,55.067246812000164],[-59.52464758999985,55.05853913],[-59.54303951699989,55.050645249000105],[-59.54279537699994,55.05182526200004],[-59.54865475199992,55.052435614],[-59.55695553299998,55.052069403000175],[-59.56407630099994,55.050645249000105],[-59.62791907499988,55.00055573100009],[-59.639230923999946,54.99542877800009],[-59.64557858,54.99571360900002],[-59.65440833199991,54.997503973],[-59.66079667899996,55.00018952000009],[-59.65965735599991,55.002875067000055],[-59.680165167999895,54.98920319200012],[-59.72252356699996,54.974595445000105],[-59.73542232999998,54.96808502800012],[-59.71812903599987,54.955511786000116],[-59.73200436099997,54.93720123900006],[-59.75865637899992,54.9206403670001],[-59.80125891799994,54.907334703000075],[-59.8277888659999,54.89252350500003],[-59.850087042999945,54.874579169000135],[-59.858306443999936,54.85887278900002],[-59.852772589999915,54.84471263200008],[-59.84504146999993,54.84752024900003],[-59.83531653599997,54.854356187000135],[-59.82412675699996,54.85199616100009],[-59.82005774599989,54.84080638200008],[-59.82770748599992,54.830430406000076],[-59.83849036399994,54.81976959800015],[-59.84398352799985,54.80731842700011],[-59.85777747299997,54.78986237200014],[-59.94766191299996,54.75641510600009],[-59.921986456999925,54.74323151200015],[-59.89976966099994,54.74693431200011],[-59.8783259759999,54.756944078000075],[-59.84398352799985,54.76593659100011],[-59.81899980399993,54.780462958000136],[-59.7919815749999,54.78681061400006],[-59.79230709499993,54.79437897300012],[-59.79889889199989,54.804388739],[-59.80308997299991,54.814520575000145],[-59.80211341099993,54.853013414000046],[-59.79344641799987,54.87596263200013],[-59.76667232999994,54.889471747000115],[-59.74962317599988,54.903998114000146],[-59.73884029899989,54.90729401200017],[-59.69884192599994,54.91425202000009],[-59.69074459499993,54.91693756700006],[-59.67625891799989,54.92694733300014],[-59.62555904899992,54.94818756700011],[-59.447621222999885,55.061957098],[-59.42731686099998,55.066229559000085],[-59.41356360599988,55.05756256700003],[-59.413238084999925,55.03021881700015],[-59.39818274599992,55.03986237200011],[-59.36485755099994,55.099066473],[-59.3095597,55.14683665600013],[-59.308908657999886,55.15001048400001],[-59.3095597,55.16425202000012],[-59.292836066999904,55.17755768400003],[-59.28673255099991,55.185980536],[-59.28294837099989,55.193304755],[-59.27814693899989,55.20042552300004],[-59.26866614499992,55.20831940300003],[-59.25226803299989,55.21588776200015],[-59.23289954299988,55.21991608300014],[-59.21605383999988,55.21820709800012],[-59.20718339799993,55.20831940300003],[-59.21873938699986,55.20197174700009],[-59.22386633999988,55.192694403000026],[-59.22419186099989,55.18109772300012],[-59.221506313999924,55.167914130000085],[-59.20685787699992,55.17735423400008],[-59.18854732999995,55.194810289000046],[-59.17284094999988,55.21332428600006],[-59.159779425999915,55.238714911],[-59.145619269999884,55.23163483300011],[-59.13158118399991,55.21381256700015],[-59.12531490799997,55.19464752800009],[-59.142648891999954,55.154730536000116],[-59.182362433999884,55.131333726000136],[-59.22789466099993,55.11408112200002],[-59.262440558999934,55.092230536],[-59.268055792999945,55.08360423400008],[-59.27692623599989,55.06549713700017],[-59.282866990999906,55.058050848],[-59.29308020699994,55.05280182500012],[-59.317982550999886,55.045762437000135],[-59.38621985599991,55.004584052000084],[-59.392811652999875,54.98920319200012],[-59.38255774599995,54.978013414000124],[-59.365956183999884,54.98912181200013],[-59.34642493399991,55.00706614800002],[-59.32762610599986,55.016546942],[-59.3041072259999,55.01764557500014],[-59.28221594999988,55.02195872600005],[-59.263254360999944,55.03034088700012],[-59.24535071499989,55.047227281000104],[-59.24193274599988,55.048529364],[-59.23859615799994,55.049261786000116],[-59.23517818899995,55.050645249000105],[-59.24083411399994,55.0718854840001],[-59.22541256399993,55.08405182500017],[-59.18053137899989,55.099066473],[-59.16954505099994,55.080308335000055],[-59.15428626199988,55.07428620000005],[-59.14513098899988,55.08055247599999],[-59.152577277999875,55.099066473],[-59.14781653599996,55.10846588700004],[-59.13975989499994,55.119696356000034],[-59.12791907499988,55.127264716000084],[-59.11164303299995,55.12571849200004],[-59.09894771999987,55.11505768400009],[-59.10171464799992,55.103583075000145],[-59.10777747299994,55.09149811400006],[-59.10480709499992,55.07859935100005],[-59.08092200399995,55.0964216170001],[-59.07347571499989,55.108384507000046],[-59.070668097999906,55.129461981000176],[-59.06407630099994,55.14801666900017],[-59.0478409499999,55.15949127800003],[-59.02741451699992,55.16197337400014],[-59.00796464799992,55.15367259300017],[-59.00523841099997,55.14642975500014],[-59.00560462099989,55.13666413000003],[-59.003895636999886,55.12689850500006],[-58.99494381399995,55.11949290600007],[-58.98940995999993,55.12213776200015],[-58.97118079299994,55.13666413000003],[-58.963856574999845,55.140082098000036],[-58.95425370999996,55.131089585],[-58.958241339999944,55.11107005400014],[-58.974436001999884,55.07859935100005],[-59.02594967399997,55.01988353100013],[-59.04088294199991,55.0065778670001],[-59.044789191999904,54.99884674700008],[-59.036244269999884,54.99542877800009],[-59.02953040299985,54.997992255],[-59.016468878999966,55.01109446800017],[-59.00796464799992,55.016546942],[-58.99795488199996,55.020086981000176],[-58.992298956999946,55.02081940300012],[-58.987782355999904,55.0195173200001],[-58.981271938999924,55.016546942],[-58.980580206999974,55.014024156000076],[-58.974436001999884,54.99909088700003],[-58.97252356699993,54.99595774900017],[-58.962228969999934,54.99445221600003],[-58.957386847999935,54.99229564000002],[-58.94269771999985,54.982245184000035],[-58.90794837099988,54.96527741100006],[-58.89248613199996,54.954413153000175],[-58.90855872299995,54.94428131700012],[-58.948109503999895,54.935980536000145],[-58.966949022999934,54.92772044500007],[-58.96080481699994,54.92772044500007],[-58.973459438999924,54.918931382],[-59.01545162699989,54.899766343000024],[-59.01545162699989,54.893011786],[-58.973500128999916,54.89130280199999],[-58.96080481699994,54.893011786],[-58.94029700399989,54.899766343000024],[-58.93626868399991,54.904364325000145],[-58.934722459999875,54.911078192000026],[-58.934315558999884,54.917222397999986],[-58.933461066999875,54.920274156000076],[-58.9056697259999,54.92247142100017],[-58.886708136999886,54.91132233300006],[-58.88410396999989,54.89781321800008],[-58.90558834499993,54.893011786],[-58.90046139199992,54.87811920800014],[-58.906117316999904,54.87091705900009],[-58.915150519999905,54.86534251500011],[-58.91978919199994,54.85545482],[-58.91380774599992,54.84821198100014],[-58.89997311099993,54.845078843000074],[-58.83413652299987,54.84271881700012],[-58.82359778599991,54.844549872000115],[-58.81403561099993,54.85016510600011],[-58.807362433999856,54.85590241100009],[-58.79841061099992,54.85777415600013],[-58.77090410099989,54.846869208000086],[-58.76475989499991,54.842637437000135],[-58.76211503799993,54.8354352890001],[-58.76154537699995,54.821275132],[-58.75829016799992,54.80902741100011],[-58.751291469999835,54.80292389500015],[-58.744292772999955,54.804388739],[-58.73180091099993,54.842474677],[-58.71300208199989,54.849839585],[-58.697987433999884,54.843858140000165],[-58.70010331899987,54.83152903900013],[-58.68146725199989,54.81854889500012],[-58.65217037699997,54.80980052300005],[-58.59772701699995,54.80365631700006],[-58.51573645699994,54.80365631700006],[-58.54356848899991,54.79148997599999],[-58.55508378799993,54.783189195000105],[-58.56289628799993,54.769476630000085],[-58.54771887899994,54.771918036000116],[-58.52220618399985,54.78160228100007],[-58.50523841099987,54.783758856000176],[-58.43936113199993,54.77692291900014],[-58.444203253999916,54.76072825700011],[-58.437408006999874,54.749986069999984],[-58.42235266799985,54.74408600500006],[-58.40217037699992,54.7421735700001],[-58.38695227799985,54.74738190300009],[-58.39000403599993,54.75999583500008],[-58.398182745999854,54.77570221600014],[-58.398426886999886,54.78998444200011],[-58.386341925999886,54.79523346600003],[-58.203521287999905,54.79743073100012],[-58.19444739499991,54.79523346600003],[-58.18765214799987,54.790594794000086],[-58.18529212099992,54.78587474199999],[-58.18956458199992,54.783758856000176],[-58.19908606699994,54.777655341000084],[-58.190093553999894,54.76414622600011],[-58.17341061099995,54.749986069999984],[-58.15949459499989,54.7421735700001],[-58.13849850199995,54.73936595300013],[-58.023548956999946,54.74274323100015],[-58.00552324099994,54.737005927],[-58.00865637899989,54.72166575700005],[-57.992176886999914,54.71678294499999],[-57.97809811099995,54.72471751500013],[-57.96275794199991,54.73627350500006],[-57.94286048099991,54.7421735700001],[-57.86481686099998,54.744940497000144],[-57.8469945949999,54.738714911],[-57.78954016799992,54.693793036],[-57.78722083199994,54.690252997000115],[-57.78774980399994,54.68683502800011],[-57.78726152299993,54.683457749000084],[-57.78209387899991,54.680039781000076],[-57.772938605999855,54.67902252800012],[-57.76622473899991,54.68183014500006],[-57.760609503999916,54.68561432500009],[-57.75479081899993,54.687567450000024],[-57.74437415299986,54.68931712400003],[-57.73680579299992,54.69163646],[-57.72972571499985,54.69013092700014],[-57.720692511999935,54.680039781000076],[-57.7278539699999,54.66331614800005],[-57.71149654899997,54.64866771000014],[-57.68590247299988,54.63792552300013],[-57.667551235999916,54.63344961100015],[-57.6107478509999,54.6397565780001],[-57.58031165299994,54.63959381700015],[-57.57603919199991,54.643174546000104],[-57.573475714999915,54.647284247000144],[-57.56749426999988,54.652777411],[-57.56069902299987,54.65753815300009],[-57.555816209999904,54.659613348],[-57.486439581999946,54.65879954600008],[-57.44981848899993,54.64935944200009],[-57.44627844999985,54.62608470300016],[-57.436634894999884,54.626206773000135],[-57.42829342399992,54.624619859000106],[-57.41218014199992,54.61924876500014],[-57.41218014199992,54.61180247600008],[-57.41783606699993,54.597723700000024],[-57.39956620999995,54.59198639500006],[-57.353505011999914,54.59137604400008],[-57.35041256399992,54.58942291900014],[-57.349476691999946,54.58482493700002],[-57.35008704299991,54.574286200000145],[-57.353179490999906,54.566758531000104],[-57.36058508999988,54.56492747600011],[-57.36961829299988,54.56537506700012],[-57.37743079299988,54.56464264500009],[-57.39037024599989,54.56073639500009],[-57.41698157499994,54.557440497000144],[-57.43199622299994,54.55719635600012],[-57.43199622299994,54.550360419000086],[-57.40514075399997,54.54852936400012],[-57.38320878799993,54.541367906000076],[-57.37547766799991,54.526678778000175],[-57.39102128799993,54.50193919500002],[-57.41161048099988,54.49131907800016],[-57.439442511999914,54.48761627800012],[-57.659779425999936,54.488633531000076],[-57.70702063699991,54.475287177000055],[-57.68663489499991,54.465562242000104],[-57.48302161399993,54.467596747000144],[-57.45262610599989,54.467881578000075],[-57.41901607999995,54.461004950000174],[-57.436675584999875,54.44932689000016],[-57.44985917899993,54.45331452000015],[-57.46222896999995,54.46299876500011],[-57.4840795559999,54.462632554],[-57.500192837999855,54.46381256700012],[-57.53075110599991,54.453558661],[-57.54185950399991,54.44733307500003],[-57.51919511599987,54.43463776200014],[-57.53111731699992,54.42475006700006],[-57.57290605399992,54.41010163000006],[-57.58714758999994,54.400498765000165],[-57.63385982999992,54.383408921000026],[-57.65172278599991,54.37909577000012],[-57.67833411399994,54.37742747600011],[-57.76537024599989,54.38715241100006],[-57.78465735599994,54.39191315300015],[-57.79576575399998,54.392075914000124],[-57.80638587099992,54.38926829600017],[-57.824208136999886,54.38096751500008],[-57.83674068899998,54.37909577000012],[-57.84707597599989,54.37933991100006],[-57.85456295499995,54.38068268400015],[-57.860829230999904,54.38373444200015],[-57.86778723899991,54.388983466000056],[-57.87905839799989,54.39337799700003],[-57.89159094999988,54.391791083],[-57.90416419199988,54.38800690300015],[-58.1861466139999,54.358587958000086],[-58.1875707669999,54.34446849200005],[-58.24229895699991,54.324937242000075],[-58.26130123599992,54.31016673400008],[-58.22052975199995,54.31273021],[-58.13719641799986,54.33148834800014],[-58.097401495999854,54.33185455900015],[-58.11546790299988,54.31932200700005],[-58.159006313999896,54.30601634300014],[-58.179351365999906,54.297186591000084],[-58.19465084499986,54.30341217700014],[-58.212391730999855,54.30133698100012],[-58.247629360999895,54.29026927299999],[-58.24274654899992,54.28327057500009],[-58.22911536399988,54.26768626500011],[-58.22716223899993,54.26300690300009],[-58.23631751199991,54.25621165600016],[-58.2509659499999,54.254339911],[-58.32485917899992,54.253037828000096],[-58.46808834499986,54.233628647999986],[-58.56289628799993,54.20774974199999],[-58.681223110999944,54.157049872000115],[-58.72740637899994,54.14569733300014],[-58.87873287699995,54.14728424700017],[-59.001576300999915,54.120550848000065],[-59.13084876199989,54.107407945000105],[-59.154611782999886,54.101874091000084],[-59.18700110599992,54.08685944200006],[-59.23424231699997,54.08226146000011],[-59.26793372299997,54.06671784100003],[-59.39830481699991,54.049424546000026],[-59.419504360999895,54.05011627800015],[-59.51569576699992,54.06378815300008],[-59.55992591099991,54.056748765000016],[-59.57966061099992,54.050360419000114],[-59.584584113999874,54.043890692],[-59.591420050999915,54.043890692],[-59.58299719999986,54.038397528000175],[-59.532338019999884,54.02680084800015],[-59.5244848299999,54.026353257000046],[-59.52236894399987,54.02171458500013],[-59.52253170499995,54.0053571640001],[-59.51081295499994,54.001166083],[-59.44123287699994,54.01597728100016],[-59.30284583199989,54.018377997000115],[-59.12059485599989,54.054877020000056],[-58.964222785999965,54.074286200000145],[-58.81891842399988,54.11522044499999],[-58.768950975999964,54.125189520000085],[-58.748768683999906,54.12669505400013],[-58.698109503999945,54.12437571800017],[-58.68301347599992,54.12897370000012],[-58.65269934799994,54.14891185099999],[-58.57437089799986,54.17560455900012],[-58.54308020699991,54.19407786700005],[-58.53416907499987,54.19159577000011],[-58.526031053999866,54.19086334800009],[-58.5177302729999,54.191717841000084],[-58.509022589999915,54.193915106000176],[-58.49608313699988,54.193589585000055],[-58.475493943999965,54.195868231000034],[-58.45604407499988,54.2006696640001],[-58.43936113199993,54.20774974199999],[-58.41246497299995,54.230698960000076],[-58.394886847999906,54.23655833500011],[-58.37116451699989,54.228216864000146],[-58.3919978509999,54.219794012000094],[-58.41051184799991,54.209051825000174],[-58.426340298999946,54.195990302],[-58.452748175999915,54.16303131700012],[-58.46410071499988,54.15367259300008],[-58.5021052729999,54.13947174700017],[-58.523101365999935,54.12836334800015],[-58.53551184799996,54.115301825000174],[-58.546498175999915,54.100572007],[-58.56289628799993,54.08482493700002],[-58.603505011999935,54.055894273000106],[-58.62633216099994,54.04429759300011],[-58.65294348899991,54.03644440300003],[-58.70543372299994,54.03270091399999],[-58.85838782499985,54.05011627800015],[-59.04271399599989,54.03021881700006],[-59.04271399599989,54.02277252800009],[-58.91978919199994,54.01597728100016],[-58.963856574999845,53.97837962400014],[-58.974517381999874,53.971502997000144],[-59.001128709999904,53.963731187000135],[-59.011708136999886,53.95762767100017],[-59.03433183499993,53.95246002800015],[-59.10236568899998,53.953111070000105],[-59.11164303299995,53.94708893400009],[-59.13414466099993,53.94684479400014],[-59.21654212099986,53.93073151200018],[-59.26976477799985,53.91258372599999],[-59.30211341099996,53.89427317900011],[-59.34642493399991,53.88536204600008],[-59.36485755099994,53.87938060100008],[-59.42711341099994,53.84454987200003],[-59.44123287699994,53.844671942],[-59.47451738199996,53.82811107000013],[-59.53164628799993,53.82164134300005],[-59.639230923999946,53.82416413000006],[-59.79133053299995,53.84796784100014],[-59.84398352799985,53.844671942],[-59.865956183999884,53.83897532800002],[-59.87608801999994,53.83295319200012],[-59.87877356699991,53.82416413000006],[-59.86827551999994,53.817572333000086],[-59.82750403599988,53.8174909530001],[-59.81395423099991,53.81391022300012],[-59.80719967399997,53.798447984000106],[-59.82298743399991,53.793280341000084],[-59.900013800999886,53.79551829600008],[-60.001576300999886,53.78009674700014],[-60.042347785999944,53.76593659100003],[-60.063710089999915,53.76207103100002],[-60.08299719999985,53.764349677],[-60.13267981699994,53.783148505000135],[-60.13003495999995,53.77574290600016],[-60.12743079299986,53.77399323100014],[-60.12547766799992,53.77521393400018],[-60.1251521479999,53.77635325700011],[-60.10826575399988,53.757676499000056],[-60.0780330069999,53.73737213700003],[-60.04417883999991,53.72101471600003],[-60.01659094999991,53.714300848000065],[-60.01659094999991,53.70807526200012],[-60.069203253999945,53.70929596600002],[-60.09414628799996,53.70038483299999],[-60.10472571499992,53.67645905200014],[-60.10798092399994,53.65220774900014],[-60.112945115999906,53.634222723],[-60.11217200399989,53.61778392100011],[-60.09850012899994,53.59821198100003],[-60.08242753799988,53.582139390000165],[-60.07103430899991,53.56647370000009],[-60.07408606699991,53.55455149900014],[-60.101633266999926,53.54979075700005],[-60.111643032999915,53.54661692899999],[-60.13003495999995,53.53253815300003],[-60.136097785999965,53.529364325000174],[-60.14171301999994,53.53107330900018],[-60.144602016999976,53.535345770000085],[-60.14561926999993,53.54096100499999],[-60.146555141999926,53.554266669000114],[-60.149159308999934,53.55573151200015],[-60.15355383999991,53.55499909100014],[-60.15998287699991,53.55662669500008],[-60.18309485599988,53.56525299700017],[-60.22988847599995,53.57489655200014],[-60.27253170499998,53.59979889500006],[-60.33873450399995,53.62555573100012],[-60.356922980999855,53.64069245000012],[-60.37165279899994,53.65607330900015],[-60.38853919199994,53.66791413000011],[-60.43871008999992,53.677191473000065],[-60.50255286399993,53.70807526200012],[-60.69127356699988,53.738511460000076],[-60.736398891999926,53.75792064000007],[-60.80166581899993,53.772284247000144],[-60.82127844999989,53.779730536000116],[-60.84528561099992,53.820786851000136],[-60.859445766999954,53.83515045800002],[-60.87930253799996,53.831000067000055],[-60.86351477799991,53.81541575700008],[-60.86143958199989,53.795762437000015],[-60.86925208199989,53.77570221600017],[-60.88304602799991,53.75865306200002],[-60.9232071609999,53.73912181200005],[-60.93431555899994,53.72825755400005],[-60.92027747299988,53.714300848000065],[-60.89997311099998,53.71092357000004],[-60.83527584499987,53.727972723],[-60.80500240799995,53.72589752800008],[-60.72227942599991,53.70807526200012],[-60.636708136999914,53.70384349200001],[-60.441151495999854,53.64606354400017],[-60.4107966789999,53.62181224199999],[-60.4029434889999,53.61810944200011],[-60.37767493399985,53.615057684000035],[-60.35631262899988,53.60724518400015],[-60.275746222999935,53.561997789000124],[-60.253651495999854,53.554266669000114],[-60.18150794199994,53.54100169499999],[-60.101633266999926,53.50202057500009],[-60.07038326699995,53.508612372000165],[-60.063710089999915,53.508856512000115],[-60.04979407499994,53.497788804],[-60.041737433999884,53.48016998900006],[-60.03799394399996,53.459580796000026],[-60.03709876199988,53.43992747600008],[-60.05846106699991,53.45160553600006],[-60.08120683499996,53.45970286700001],[-60.10582434799997,53.463242906000076],[-60.13267981699994,53.46104564000008],[-60.201649542999895,53.44025299700009],[-60.23363196499988,53.42011139500006],[-60.285471157999886,53.397202867000075],[-60.30402584499989,53.39276764500009],[-60.3281957669999,53.39020416900017],[-60.34520423099988,53.382391669000086],[-60.356922980999855,53.36957428600006],[-60.3653865229999,53.35179271000008],[-60.38923092399998,53.36461009300011],[-60.392689581999974,53.36823151200015],[-60.397084113999966,53.37010325700013],[-60.40587317599991,53.36603424700017],[-60.412261522999955,53.357977606000034],[-60.4098201159999,53.348089911000116],[-60.39732825399991,53.33991120000012],[-60.38174394399991,53.336981512000094],[-60.25959225199997,53.344427802000084],[-60.20474199099987,53.35455963700004],[-60.18789628799987,53.35179271000008],[-60.181263800999915,53.33637116100014],[-60.208119269999884,53.31976959800009],[-60.27603105399987,53.296576239000146],[-60.347157355999904,53.28135814000016],[-60.42064368399991,53.27545807500003],[-60.42064368399991,53.26862213700012],[-60.30211341099994,53.271795966000084],[-60.247629360999944,53.279974677],[-60.194081183999934,53.296576239000146],[-60.175770636999886,53.30516185100005],[-60.169992641999926,53.30548737200008],[-60.15998287699991,53.30280182500012],[-60.14989173099988,53.29686107],[-60.131947394999905,53.27916087400017],[-60.1289770169999,53.27545807500003],[-60.115386522999955,53.277411200000174],[-60.10326087099986,53.28314850500006],[-60.09447180899988,53.29271067900013],[-60.09105383999989,53.306219794000114],[-60.139759894999905,53.315659898000135],[-60.153146938999924,53.32391998900012],[-60.142648891999926,53.33368561400006],[-60.13133704299986,53.336778062000135],[-60.10472571499992,53.33759186400006],[-60.05968176999993,53.349961656000104],[-60.046986456999974,53.35179271000008],[-60.02904212099991,53.35809967700011],[-59.985991990999906,53.389715887000094],[-59.971913214999866,53.402696031000076],[-59.940297003999966,53.423407294000086],[-59.93712317599991,53.426947333000086],[-59.9288630849999,53.431708075000174],[-59.91014563699985,53.45416901200018],[-59.89928137899994,53.46104564000008],[-59.89122473899994,53.45750560100011],[-59.88223222599989,53.44969310100011],[-59.874908006999895,53.44660065300003],[-59.871937628999895,53.45734284100014],[-59.87596594999985,53.46812571800013],[-59.882679816999904,53.47589752800015],[-59.88402258999988,53.48216380399999],[-59.873117641999926,53.487738348],[-59.85488847599992,53.485825914000046],[-59.832427537999926,53.47850169500005],[-59.809437628999945,53.47443268400018],[-59.78380286399988,53.481512762000065],[-59.78380286399988,53.488348700000145],[-59.80833899599992,53.494859117000075],[-59.86070716099988,53.49970123900014],[-59.882191535999915,53.512559312000164],[-59.89122473899994,53.53058502800009],[-59.879465298999946,53.53815338700004],[-59.856109178999965,53.538763739],[-59.754750128999916,53.52399323100011],[-59.60724850199995,53.53379954600013],[-59.558583136999914,53.54698314000011],[-59.53278561099998,53.54979075700005],[-59.5110977859999,53.55540599200005],[-59.48973548099993,53.568793036000145],[-59.45421301999997,53.59821198100003],[-59.38927161399988,53.62689850499999],[-59.37852942599997,53.635484117000104],[-59.37559973899993,53.64752838700003],[-59.36782792899995,53.65241120000008],[-59.344105597999935,53.6528181010001],[-59.329986131999895,53.657171942],[-59.32567298099991,53.66730377800015],[-59.32384192599994,53.678778387000094],[-59.3170466789999,53.68699778900002],[-59.29515540299988,53.68744538],[-59.26939856699994,53.66535065300009],[-59.251861131999895,53.67645905200014],[-59.24356035099991,53.683050848],[-59.23143469999991,53.68907298400002],[-59.21837317599994,53.69322337400014],[-59.20718339799993,53.69444407800007],[-59.201568162999926,53.690781968000024],[-59.195668097999885,53.68333567900014],[-59.187896287999905,53.67601146000014],[-59.17682857999994,53.67271556200011],[-59.151112433999906,53.674627997000144],[-59.13825436099998,53.677964585],[-59.128732876999884,53.68357982],[-59.11733964799992,53.68781159100011],[-59.08844967399992,53.6843122420001],[-59.0768123039999,53.68699778900002],[-59.07384192599988,53.69371165600013],[-59.06932532499993,53.71625397300012],[-59.066965298999975,53.721136786],[-59.05524654899989,53.72003815300015],[-59.03429114499993,53.71539948100012],[-59.022206183999934,53.714300848000065],[-59.02253170499994,53.72667064000002],[-59.01988684799997,53.73712799700008],[-59.01667232999991,53.7448591170001],[-59.01545162699989,53.74909088700012],[-59.00796464799992,53.74909088700012],[-59.02879798099991,53.750677802000055],[-59.050160285999965,53.75523509300011],[-59.04454505099997,53.76976146000014],[-59.048898891999954,53.78180573100015],[-59.058949347999935,53.79083893400015],[-59.070668097999906,53.79625071800011],[-59.05003821499989,53.813299872000144],[-59.003977016999954,53.82929108300006],[-58.98468990799993,53.841253973],[-58.96825110599991,53.854112046000026],[-58.886830206999974,53.89305247600011],[-58.8802384109999,53.89728424700003],[-58.871408657999915,53.90611399900008],[-58.86595618399991,53.916449286],[-58.8607071609999,53.930121161000116],[-58.853138800999965,53.94196198100009],[-58.84068762899994,53.94708893400009],[-58.74852454299989,53.95384349200004],[-58.65794837099994,53.97284577000015],[-58.52696692599994,54.015082098000065],[-58.32274329299992,54.05247630400011],[-58.30654863199995,54.06037018400018],[-58.289133266999976,54.06659577000015],[-58.240630662999905,54.06297435099999],[-58.220326300999915,54.06378815300008],[-58.15587317599991,54.09381745000014],[-58.12808183499995,54.09788646000002],[-57.818430141999926,54.06610748900006],[-57.79576575399998,54.07123444200006],[-57.795562303999894,54.08356354400003],[-57.819650844999835,54.09430573100003],[-57.85142981699988,54.101874091000084],[-57.87458248599992,54.104681708000115],[-57.95103919199994,54.10126373900012],[-57.97386633999986,54.104681708000115],[-58.037831183999856,54.129461981000084],[-58.15062415299985,54.140570380000106],[-58.179351365999906,54.13947174700017],[-58.225819464999944,54.12836334800015],[-58.24876868399994,54.119208075000174],[-58.26500403599987,54.10846588700015],[-58.27367102799988,54.10032786700005],[-58.28205318899992,54.09503815300015],[-58.29230709499987,54.09198639500006],[-58.30654863199995,54.09105052299999],[-58.32176673099994,54.09284088700014],[-58.32896887899997,54.09772370000006],[-58.33446204299988,54.10443756700009],[-58.344471808999884,54.112127997000115],[-58.39683997299997,54.12754954600013],[-58.41551673099994,54.14044830900015],[-58.409006313999946,54.16303131700012],[-58.39102128799991,54.184312242000104],[-58.37486731699993,54.19965241100006],[-58.35606848899991,54.20958079600013],[-58.330148891999904,54.214544989],[-58.25230872299991,54.20917389500015],[-58.241444464999915,54.21832916900003],[-58.22850501199991,54.2357038430001],[-58.19888261599988,54.240179755000085],[-58.10871334499984,54.233343817000055],[-58.097401495999854,54.228216864000146],[-58.07481848899988,54.23676178600006],[-58.04283606699988,54.24095286700002],[-58.01158606699991,54.23973216399999],[-57.99095618399988,54.23163483300006],[-57.96886145699991,54.220078843000024],[-57.93512936099992,54.21190013200011],[-57.90094967399991,54.20933665600002],[-57.877674933999906,54.214544989],[-57.86168372299991,54.202988999000084],[-57.83071855399987,54.204291083000086],[-57.76781165299994,54.214544989],[-57.78209387899991,54.20774974199999],[-57.77025305899989,54.19733307500009],[-57.74811764199989,54.195786851000044],[-57.69985917899995,54.2003034530001],[-57.60338294199988,54.18732330900009],[-57.60826575399994,54.18219635600009],[-57.61701412699992,54.166815497000144],[-57.59325110599993,54.16998932500012],[-57.57042395699992,54.18121979400002],[-57.548817511999914,54.18695709800009],[-57.528879360999916,54.17365143400015],[-57.46617591099993,54.2003034530001],[-57.457875128999945,54.19013092700005],[-57.42902584499992,54.178697007000025],[-57.39053300699993,54.1540388040001],[-57.387115037999926,54.14598216399999],[-57.3985082669999,54.13263580900015],[-57.37718665299993,54.134711005000085],[-57.35692298099991,54.13947174700017],[-57.35692298099991,54.13263580900015],[-57.36538652299987,54.10850657800013],[-57.34268144399991,54.06732819200009],[-57.288644985999916,54.00230540600002],[-57.26203365799997,53.978013414000046],[-57.24693762899997,53.96747467699999],[-57.23399817599997,53.961371161],[-57.182932094999984,53.957464911],[-57.15802975199995,53.951117255000085],[-57.144642706999946,53.934027411000116],[-57.16368567599994,53.93541087400011],[-57.18268795499994,53.939398505000085],[-57.200754360999944,53.939764716000084],[-57.21694902299993,53.93028392100008],[-57.22264563699991,53.91535065300015],[-57.22126217399991,53.89594147300012],[-57.21344967399992,53.87909577000011],[-57.19985917899987,53.87193431200011],[-57.18468176999988,53.868597723000065],[-57.144642706999946,53.844671942],[-57.12669837099991,53.841131903000026],[-57.10879472599996,53.83966705900014],[-57.0917048819999,53.83555735900002],[-57.07579505099988,53.82416413000006],[-57.10472571499989,53.823431708000115],[-57.11851966099991,53.825262762000094],[-57.130360480999855,53.831000067000055],[-57.12995357999995,53.82636139500014],[-57.13133704299992,53.82489655200008],[-57.134185350999864,53.82481517100011],[-57.13780676999993,53.82416413000006],[-57.12124589799987,53.81541575700008],[-57.10798092399994,53.8040632180001],[-57.10692298099988,53.794256903000175],[-57.15013587099988,53.78453196800002],[-57.1552628249999,53.77204010600011],[-57.145659959999904,53.75828685099999],[-57.12413489499991,53.74909088700012],[-57.12413489499991,53.74164459800014],[-57.15274003799988,53.739935614000146],[-57.20327714799989,53.71942780199999],[-57.2555232409999,53.70880768400006],[-57.336415167999895,53.67271556200011],[-57.457102016999926,53.648627020000056],[-57.51768958199991,53.625799872000144],[-57.54938717399989,53.59076569200006],[-57.4973852199999,53.60358307500009],[-57.44627844999985,53.62555573100012],[-57.44180253799987,53.61774323100011],[-57.441965298999946,53.61066315300014],[-57.44611568899998,53.60423411700005],[-57.45372473899992,53.59821198100003],[-57.41901607999995,53.599229234000106],[-57.39964758999995,53.60252513200014],[-57.3880102199999,53.60785553600003],[-57.37702389199996,53.60724518400015],[-57.339344855999876,53.59044017100014],[-57.32966061099992,53.584580796000076],[-57.31777910099989,53.58519114800005],[-57.32266191299996,53.57282135600012],[-57.34386145699994,53.54356517100008],[-57.319813605999904,53.543158270000085],[-57.306141730999876,53.53449127800009],[-57.30260169199991,53.51825592700014],[-57.30915279899997,53.49518463700018],[-57.324086066999904,53.47455475500006],[-57.36294511599993,53.448431708],[-57.37743079299988,53.43370189000002],[-57.365834113999966,53.43646881700006],[-57.34316972599989,53.445502020000085],[-57.33307857999995,53.44737376500014],[-57.31969153599993,53.445257880000135],[-57.295277472999885,53.438177802000084],[-57.28115800699996,53.43992747600008],[-57.28115800699996,53.44737376500014],[-57.29190019399988,53.46934642100017],[-57.26915442599994,53.489447333000115],[-57.161244269999905,53.54022858300006],[-57.1483455069999,53.54356517100008],[-57.13536536399991,53.550401109000106],[-57.135853644999884,53.563462632],[-57.14688066299993,53.571397203000124],[-57.16576087099986,53.56285228100001],[-57.13499915299988,53.58283112200009],[-57.130360480999855,53.58771393400015],[-57.13524329299992,53.61029694200015],[-57.13312740799992,53.62103913000006],[-57.120716925999886,53.62555573100012],[-57.0985408189999,53.62852610900002],[-57.07457434799997,53.63694896000008],[-57.06065833199989,53.64988841399999],[-57.068959113999966,53.666489976000136],[-57.03840084499993,53.68565501500011],[-57.01207434799994,53.70848216400013],[-56.98346920499995,53.72748444200012],[-56.94603430899991,53.73541901200017],[-56.923329230999876,53.73204173400016],[-56.88585364499993,53.72007884300014],[-56.86412512899997,53.721136786],[-56.83250891799988,53.73334381700006],[-56.81505286399994,53.73338450700005],[-56.79523678299992,53.721136786],[-56.79059811099998,53.73033274900017],[-56.78429114499994,53.733710028000175],[-56.7766820949999,53.732489325000145],[-56.76789303299994,53.727972723],[-56.7572322259999,53.727647203000075],[-56.745228644999884,53.73334381700006],[-56.74282792899993,53.74152252800017],[-56.75426184799988,53.74909088700012],[-56.71540279899989,53.752305406000076],[-56.643299933999884,53.71922435100013],[-56.59601803299992,53.714300848000065],[-56.59601803299992,53.721136786],[-56.60643469999991,53.72553131700009],[-56.62336178299989,53.73749420800003],[-56.631337042999945,53.74164459800014],[-56.631337042999945,53.74909088700012],[-56.61025956899991,53.74909088700012],[-56.61538652299992,53.765122789000095],[-56.61766516799992,53.76951732000002],[-56.61025956899991,53.76951732000002],[-56.594878709999875,53.75657786699998],[-56.57921301999991,53.76048411699999],[-56.562814907999886,53.77061595300013],[-56.54507402299989,53.77635325700011],[-56.52550208199994,53.77720774900002],[-56.51040605399992,53.779730536000116],[-56.4798884759999,53.79002513200005],[-56.43651282499994,53.76752350500005],[-56.42406165299991,53.75340403900013],[-56.43956458199992,53.74164459800014],[-56.43138587099992,53.73887767100008],[-56.41161048099988,53.727972723],[-56.427398240999935,53.72162506700009],[-56.49351966099993,53.721136786],[-56.54405676999993,53.71214427300008],[-56.57982337099986,53.69786204600008],[-56.59019934799997,53.68451569200006],[-56.59601803299992,53.68016185100008],[-56.606190558999856,53.67865631700012],[-56.72691809799991,53.68699778900002],[-56.709095831999946,53.67572663],[-56.63272050699993,53.66034577000006],[-56.5973201159999,53.64557526200017],[-56.43114173099988,53.61737702],[-56.398264126999976,53.617865302],[-56.373768683999856,53.628648179],[-56.34862219999987,53.636419989],[-56.314808722999885,53.62982819200012],[-56.28209387899997,53.61652252800009],[-56.26016191299993,53.604437567],[-56.28099524599992,53.597479559000114],[-56.32738196499988,53.60492584800009],[-56.35016842399992,53.59821198100003],[-56.33039303299989,53.59076569200006],[-56.25023352799994,53.584580796000076],[-56.222320115999906,53.58775462400014],[-56.18236243399985,53.59943268400015],[-56.1583552729999,53.59821198100003],[-56.15001380099994,53.594916083],[-56.14293372299997,53.59039948100014],[-56.13414466099991,53.58637116100009],[-56.12051347599996,53.584580796000076],[-56.058745897999955,53.584580796000076],[-56.03624426999997,53.58043040600016],[-55.97960364499997,53.54979075700005],[-55.97960364499997,53.54356517100008],[-55.9837947259999,53.539862372000144],[-55.989409959999904,53.533026434000035],[-55.99388587099986,53.529364325000174],[-55.99168860599988,53.52610911700013],[-55.9915665359999,53.52509186400006],[-55.99071204299988,53.52440013200011],[-55.98643958199988,53.52252838700015],[-55.996571417999945,53.512315171000026],[-56.0057673819999,53.50560130400008],[-56.01549231699997,53.50401439000014],[-56.0274145169999,53.508856512000115],[-56.02525794199991,53.51251862200017],[-56.02122962099994,53.52252838700015],[-56.03254146999993,53.52167389500015],[-56.043080206999974,53.52220286700013],[-56.05288652299989,53.524603583000086],[-56.06216386599996,53.529364325000174],[-56.05638587099989,53.530340887000065],[-56.041086391999926,53.53620026200009],[-56.06969153599991,53.54576243700008],[-56.197499152999846,53.56028880400011],[-56.239735480999876,53.560410874000084],[-56.263498501999976,53.55365631700015],[-56.240305141999926,53.53620026200009],[-56.05284583199991,53.47850169500005],[-56.03066972599996,53.461249091000056],[-56.03490149599989,53.43370189000002],[-56.016713019999884,53.43024323100011],[-55.96593176999993,53.412665106000176],[-55.96593176999993,53.40643952000012],[-56.005726691999904,53.39435455900012],[-56.02476966099991,53.384995835],[-56.041086391999926,53.371649481000176],[-56.01427161399994,53.365912177],[-55.9928279289999,53.37409088700009],[-55.97329667899993,53.387884833000115],[-55.952300584999904,53.39899323100006],[-55.92467200399989,53.40155670800006],[-55.900746222999906,53.39435455900012],[-55.85676021999989,53.371649481000176],[-55.85676021999989,53.364854234000134],[-55.87401282499991,53.35956452000006],[-55.89024817599994,53.35179271000008],[-55.843088344999956,53.35179271000008],[-55.83088131399998,53.34772370000012],[-55.81651770699992,53.34039948100009],[-55.80772864499993,53.33331940300006],[-55.81208248599992,53.33006419500002],[-55.89533443899995,53.31574127800012],[-55.91136633999986,53.30963776200012],[-55.889881964999944,53.30426666900017],[-55.83828691299988,53.30646393400015],[-55.81920325399988,53.29966868700005],[-55.80821692599994,53.27936432500003],[-55.82188880099997,53.26666901200015],[-55.84520423099988,53.25763580900014],[-55.863596157999915,53.24815501500014],[-55.81078040299993,53.23375071800008],[-55.79466712099986,53.235174872000144],[-55.78148352799991,53.244126694999984],[-55.777699347999885,53.25275299700009],[-55.77306067599997,53.25926341399999],[-55.757435675999886,53.26178620000009],[-55.74547278599993,53.25560130400014],[-55.752797003999945,53.241563218000074],[-55.7772517569999,53.21775950699999],[-55.79474850199995,53.205755927000055],[-55.80825761599993,53.20652903899999],[-55.82274329299989,53.21214427299999],[-55.843088344999956,53.214667059000085],[-55.8360896479999,53.20465729400003],[-55.82445227799988,53.19322337400017],[-55.810943162999905,53.18382396000014],[-55.79841061099989,53.17987702000015],[-55.76789303299994,53.177598374000084],[-55.76081295499989,53.17352936400012],[-55.77415930899991,53.16620514500012],[-55.746896938999924,53.14573802300005],[-55.809071417999945,53.10541413],[-55.82876542899987,53.09735748900014],[-55.85594641799989,53.09849681200007],[-55.91567949099996,53.11631907800016],[-55.94546464799987,53.11847565300015],[-55.94546464799987,53.11102936400009],[-55.92491614499991,53.10956452000011],[-55.902170376999884,53.10240306200008],[-55.88402258999989,53.091009833000115],[-55.87718665299988,53.076849677],[-55.88646399599991,53.053412177000105],[-55.9064021479999,53.036322333000086],[-55.93138587099992,53.025824286],[-55.9557185539999,53.02220286700005],[-55.982045050999915,53.02545807500009],[-56.03237870999996,53.03953685100013],[-56.058745897999955,53.042669989],[-56.16519120999993,53.03587474199999],[-56.16519120999993,53.0284284530001],[-56.14468339799986,53.029038804000045],[-56.082020636999886,53.02220286700005],[-56.092396613999966,53.009100653000175],[-56.10488847599987,52.99677155200011],[-56.11974036399994,52.98847077000015],[-56.137277798999975,52.987494208000086],[-56.12279212099992,52.97308991100003],[-56.1095271479999,52.97081126500014],[-56.09634355399996,52.97691478100001],[-56.06436113199995,52.99957916900017],[-56.05113684799991,53.00433991100009],[-55.94054114499991,52.994614976000136],[-55.90416419199994,52.9835065780001],[-55.88402258999989,52.96015045799999],[-55.892201300999886,52.96015045799999],[-55.89883378799996,52.95823802300005],[-55.904896613999966,52.95575592700011],[-55.91136633999986,52.953965562000135],[-55.88898678299995,52.94273509300005],[-55.85676021999989,52.935370184000035],[-55.83478756399998,52.92357005400008],[-55.843088344999956,52.89935944200006],[-55.812855597999935,52.87702057500006],[-55.80483964799993,52.863470770000085],[-55.80211341099994,52.840684312000135],[-55.81163489499994,52.83043040600002],[-55.833241339999944,52.82868073100003],[-55.8710017569999,52.83043040600002],[-55.87913977799991,52.826727606000176],[-55.89146887899997,52.81891510600009],[-55.89769446499991,52.816758531000076],[-55.908192511999886,52.81574127800003],[-55.96068274599995,52.81614817900014],[-55.97838294199993,52.81329987200008],[-55.99250240799997,52.80695221600014],[-56.00011145699992,52.795721747000144],[-55.92503821499988,52.795721747000144],[-55.94684811099995,52.783799546000026],[-55.97516842399989,52.777899481000176],[-56.00401770699992,52.777655341000056],[-56.0274145169999,52.78266022300009],[-56.061390753999945,52.799017645],[-56.137277798999975,52.816758531000076],[-56.16246497299994,52.8179792340001],[-56.1583552729999,52.80463288],[-56.13683020699989,52.78685130400011],[-56.10997473899991,52.77521393400009],[-56.05939693899989,52.76569245000011],[-56.037749803999894,52.75486888200011],[-56.02122962099994,52.73423899900008],[-56.0274145169999,52.73423899900008],[-56.02676347599996,52.72984446800011],[-56.025054490999935,52.72846100500011],[-56.02448482999998,52.72667064000014],[-56.0274145169999,52.72125885600009],[-56.005197719999956,52.72016022300015],[-55.99087480399995,52.71112702000012],[-55.97956295499998,52.698675848000036],[-55.96593176999993,52.687079169000086],[-55.946522589999915,52.68048737200002],[-55.9271541009999,52.68121979400014],[-55.88711503799988,52.687079169000086],[-55.79841061099989,52.687079169000086],[-55.77757727799991,52.68109772300009],[-55.759022589999915,52.65619538000014],[-55.73940995999996,52.65228913000006],[-55.74640865799992,52.64280833500014],[-55.75658118399988,52.63861725500011],[-55.768422003999945,52.6360944680001],[-55.78038489499996,52.63182200699999],[-55.77269446499986,52.63092682500009],[-55.760650193999936,52.626572984000106],[-55.75373287699995,52.62498607000008],[-55.765614386999886,52.61505768400015],[-55.791005011999914,52.60443756700011],[-55.80211341099994,52.597723700000174],[-55.81729081899993,52.61351146000011],[-55.83897864499991,52.615952867000075],[-55.88402258999989,52.61139557500011],[-55.89439856699988,52.61334870000014],[-55.90416419199994,52.61701080900012],[-55.91319739499994,52.62205638200005],[-55.933257615999906,52.63788483300008],[-55.94029700399997,52.63975657800013],[-55.94733639199992,52.63873932500008],[-55.95913652299989,52.63926829600017],[-56.047678188999924,52.65928782800013],[-56.09723873599995,52.662176825000145],[-56.12425696499989,52.64545319200012],[-56.05272376199986,52.64622630400005],[-56.01699785099993,52.64154694200012],[-55.99014238199993,52.62840403899999],[-55.97813880099991,52.61774323100006],[-55.97594153599991,52.61359284100011],[-56.02790279899989,52.593858140000165],[-56.039906378999916,52.58763255400011],[-56.048491990999935,52.57721588700012],[-56.01154537699997,52.57636139500012],[-55.99624589799993,52.57042064000011],[-55.98643958199988,52.556708075000174],[-56.0006404289999,52.55149974199999],[-56.01695716099994,52.55267975499999],[-56.06810462099988,52.56891510600006],[-56.08340410099996,52.57086823100009],[-56.11709550699996,52.57037995000012],[-56.21816972599996,52.54026927300008],[-56.24372311099995,52.54584381700008],[-56.26707923099994,52.561224677000105],[-56.29849199099988,52.572617906000076],[-56.3631892569999,52.58405182500006],[-56.427316860999944,52.58038971600008],[-56.442616339999915,52.58746979400014],[-56.45376542899993,52.59503815300009],[-56.467518683999856,52.59784577000015],[-56.50035559799994,52.597723700000174],[-56.48338782499988,52.59214915600016],[-56.45006262899989,52.57428620000009],[-56.42870032499994,52.57037995000012],[-56.35260982999994,52.56879303600009],[-56.32970130099994,52.562933661000116],[-56.28758704299989,52.54466380400005],[-56.26671301999991,52.538560289000074],[-56.1630753249999,52.53636302299999],[-56.15094967399992,52.539374091000084],[-56.140695766999976,52.54857005400005],[-56.11729895699991,52.548895575000174],[-56.075795050999915,52.542425848000065],[-56.053578253999945,52.54559967700014],[-56.040638800999936,52.545355536],[-56.03490149599989,52.539374091000084],[-56.03111731699994,52.53294505400008],[-56.02196204299985,52.52488841400013],[-56.01065019399988,52.518011786000116],[-56.00039628799996,52.51512278900002],[-55.91136633999986,52.50767649900002],[-55.82876542899987,52.52195872600011],[-55.83250891799992,52.516343492000104],[-55.843088344999956,52.494614976000136],[-55.768706834999875,52.499212958000086],[-55.74058997299988,52.49290599200013],[-55.75861568899992,52.44953034100017],[-55.72569739499994,52.44700755400005],[-55.67935136599996,52.44953034100017],[-55.647572394999905,52.443182684000035],[-55.64635169199988,52.43016185100005],[-55.66266842399992,52.40391673400005],[-55.64488684799994,52.39288971600008],[-55.64476477799985,52.37909577000006],[-55.65387936099995,52.36505768400012],[-55.67174231699991,52.35809967700013],[-55.68590247299994,52.36041901200009],[-55.70327714799993,52.36676666900003],[-55.71934973899991,52.374701239],[-55.72948157499985,52.38165924700017],[-55.74421139199995,52.387274481000176],[-55.80825761599993,52.38544342700003],[-55.8002009759999,52.374335028000175],[-55.77432206899987,52.361436265000165],[-55.76732337099989,52.35065338700015],[-55.77098548099985,52.33966705900009],[-55.783558722999935,52.33869049700002],[-55.847279425999886,52.349676825000174],[-55.917307094999984,52.372748114000146],[-55.97809811099992,52.38214752800015],[-56.169097459999904,52.44371165600002],[-56.19871985599985,52.446844794000086],[-56.18626868399994,52.43003978100007],[-56.16510982999995,52.41657135600009],[-56.116810675999915,52.39903392100014],[-56.025380011999886,52.39191315300012],[-55.994943813999924,52.37693919500008],[-55.97223873599998,52.37299225499999],[-55.962513800999915,52.36774323100009],[-55.95148678299998,52.35150788000006],[-55.94383704299994,52.34638092700014],[-55.82258053299992,52.33018626500008],[-55.82258053299992,52.322699286000116],[-55.841704881999874,52.31671784100011],[-55.85676021999989,52.309637762000065],[-55.85676021999989,52.30345286699999],[-55.843332485999895,52.30499909100003],[-55.831410285999965,52.307684637000094],[-55.82005774599988,52.30821360900008],[-55.80825761599993,52.30345286699999],[-55.81240800699995,52.30137767100013],[-55.81346594999991,52.30113353100001],[-55.813628709999875,52.30023834800012],[-55.81578528599988,52.2960065780001],[-55.788685675999936,52.297308661],[-55.78038489499996,52.2960065780001],[-55.775217251999976,52.292547919000114],[-55.77318274599994,52.28400299700017],[-55.76732337099989,52.281805731000084],[-55.751454230999876,52.28302643400009],[-55.72484290299994,52.29344310099999],[-55.70933997299991,52.2960065780001],[-55.70677649599991,52.291693427],[-55.71580969999991,52.28204987200003],[-55.73009192599991,52.27244700700005],[-55.74315344999988,52.26813385600015],[-55.75853430899994,52.266709703000075],[-55.77403723899994,52.26215241100014],[-55.78693600199994,52.25377024900016],[-55.79466712099986,52.240790106000176],[-55.77065995999993,52.24351634300014],[-55.728505011999886,52.254380601000136],[-55.70592200399991,52.255072333000086],[-55.686756964999944,52.25006745000003],[-55.61652584499989,52.22032298400001],[-55.63817298099988,52.213120835],[-55.66051184799991,52.21381256700012],[-55.70592200399991,52.22032298400001],[-55.72911536399993,52.21417877800003],[-55.74144446499988,52.21234772300006],[-55.746896938999924,52.21662018400017],[-55.751210089999915,52.22479889500009],[-55.761341925999886,52.22223541900017],[-55.772613084999875,52.214300848],[-55.78038489499996,52.20665110900008],[-55.7591039699999,52.204535223000065],[-55.71743730399993,52.188177802000055],[-55.69225012899997,52.186143296000026],[-55.70287024599991,52.160834052],[-55.70661373599995,52.145982164000124],[-55.70132402299987,52.13267649900011],[-55.68480383999989,52.111680406000154],[-55.71206620999987,52.09064362200002],[-55.74193274599989,52.08934153900013],[-55.77253170499989,52.09223053600006],[-55.80211341099994,52.08372630400014],[-55.79161536399988,52.074571031000126],[-55.76113847599992,52.056463934000035],[-55.785267706999946,52.03497955900012],[-55.810129360999895,52.02252838700009],[-55.863596157999915,52.00804271000014],[-55.887440558999906,52.006903387000094],[-55.93578040299991,52.02045319200006],[-55.96593176999993,52.02167389500009],[-55.948394334999904,52.00828685099999],[-55.90607662699989,51.98289622600007],[-55.89769446499991,51.97044505400005],[-55.9029841789999,51.949530341000084],[-55.9164119129999,51.93500397300015],[-55.934193488999874,51.925238348],[-56.017648891999954,51.900620835000026],[-56.03799394399996,51.89813873900009],[-56.04600989499991,51.894517320000105],[-56.08120683499996,51.870550848000065],[-56.116810675999915,51.86399974199999],[-56.12364661399994,51.860052802],[-56.14476477799985,51.84357330900009],[-56.16844641799986,51.831488348],[-56.1751602859999,51.826768296000076],[-56.192290818999936,51.810736395],[-56.210926886999935,51.79718659100014],[-56.23289954299986,51.78729889500012],[-56.26016191299993,51.782090562000135],[-56.33788001199986,51.782090562000135],[-56.35016842399992,51.77867259300002],[-56.35765540299988,51.76264069200012],[-56.37531490799989,51.74835846600014],[-56.39574133999986,51.73802317900014],[-56.41161048099988,51.73371002800003],[-56.437611456999974,51.74433014500006],[-56.45274817599997,51.7429059920001],[-56.45938066299993,51.723456122000115],[-56.46422278599991,51.71458567900005],[-56.47565670499998,51.70579661699999],[-56.578968878999945,51.657416083],[-56.60338294199991,51.65171946800011],[-56.66856848899994,51.65171946800011],[-56.682484503999916,51.64813873900012],[-56.68785559799996,51.63865794500013],[-56.69277910099993,51.61078522300009],[-56.70006262899994,51.58685944200012],[-56.70759029899989,51.57941315300003],[-56.736805792999945,51.57444896],[-56.74982662699992,51.56895579600014],[-56.760609503999916,51.56207916900014],[-56.76789303299994,51.555528062000164],[-56.76789303299994,51.54938385600009],[-56.77733313699985,51.53754303600011],[-56.796945766999926,51.53229401200004],[-56.810536261999886,51.526800848000036],[-56.80207271999993,51.51459381700015],[-56.82534745999993,51.48997630400014],[-56.859730597999885,51.47565338700015],[-56.89610755099997,51.477240302],[-56.925526495999854,51.500921942],[-56.95287024599992,51.4736188820001],[-56.941395636999886,51.460557359000134],[-56.94090735599991,51.446600653000175],[-56.94985917899993,51.43406810100008],[-56.96654212099986,51.425238348000114],[-56.98717200399989,51.42279694200009],[-57.02928626199986,51.424994208000086],[-57.048451300999915,51.41901276200015],[-57.05675208199989,51.42784251500002],[-57.06822669199994,51.42686595300013],[-57.08283443899995,51.421942450000174],[-57.10033118399991,51.41901276200015],[-57.139515753999945,51.42511627800014],[-57.16201738199993,51.4249128280001],[-57.17198645699992,51.41559479400014],[-57.18980872299991,51.41880931200011],[-57.22423255099994,51.43980540600013],[-57.24632727799991,51.46832916900014],[-57.22720292899993,51.494086005],[-57.24998938699988,51.50828685100002],[-57.28111731699996,51.50678131700014],[-57.3592016269999,51.49225495000012],[-57.3985082669999,51.48041413000006],[-57.41193600199989,51.48139069200012],[-57.42422441299993,51.484605210000076],[-57.43761145699994,51.485703843000024],[-57.45372473899992,51.48041413000006],[-57.44204667899993,51.46788157800013],[-57.44123287699991,51.45673248900011],[-57.44969641799987,51.448675848],[-57.46617591099993,51.445664781000104],[-57.471587693999886,51.449164130000085],[-57.47704016799991,51.46405670800014],[-57.483876105999855,51.46739329600017],[-57.48997962099992,51.46552155199999],[-57.49331620999996,51.46104564000005],[-57.49624589799989,51.45624420800014],[-57.5008845689999,51.45311107000008],[-57.60338294199988,51.432684637000094],[-57.59748287699995,51.44342682500011],[-57.58202063699994,51.45774974200001],[-57.57603919199991,51.46739329600017],[-57.59557044199991,51.46552155199999],[-57.62669837099988,51.44464752800003],[-57.670643683999906,51.43488190300009],[-57.67853756399989,51.43439362200009],[-57.68590247299988,51.43952057500011],[-57.69090735599994,51.44904205900012],[-57.692250128999916,51.46002838700015],[-57.69050045499991,51.47101471600003],[-57.68590247299988,51.48041413000006],[-57.71226966099988,51.47260163000006],[-57.732655402999875,51.47044505400005],[-57.74852454299989,51.463080145000056],[-57.761586066999875,51.43952057500011],[-57.76659094999991,51.417181708000086],[-57.77074133999985,51.408270575000145],[-57.77867591099991,51.40473053600005],[-57.791981574999845,51.40794505400011],[-57.799305792999945,51.416205145],[-57.80064856699993,51.42743561400003],[-57.79576575399998,51.43952057500011],[-57.81346594999988,51.43292877800003],[-57.841786261999914,51.409776109000106],[-57.8768611319999,51.40058014500012],[-57.9260961579999,51.370550848000065],[-57.96857662699997,51.33563873900006],[-57.97765051999997,51.32965729400006],[-58.04015051999991,51.31366608300014],[-58.049631313999924,51.31968821800014],[-58.059722459999875,51.31232330900015],[-58.12474524599992,51.29608795800003],[-58.13365637899997,51.29649485900001],[-58.14712480399996,51.30182526200017],[-58.152007615999935,51.30231354400017],[-58.162424282999915,51.29718659100014],[-58.18187415299991,51.28436920800011],[-58.23403886599993,51.27692291900014],[-58.25177975199992,51.28034088700015],[-58.26130123599992,51.29608795800003],[-58.25951087099995,51.31688060099999],[-58.254790818999936,51.32916901200015],[-58.26032467399994,51.33494700700011],[-58.289173956999974,51.33641185100008],[-58.27122962099992,51.3276227890001],[-58.29914303299998,51.29120514500012],[-58.289173956999974,51.27501048400008],[-58.33332271999988,51.27765534100017],[-58.41226152299989,51.30841705900015],[-58.45368404899992,51.31659577000006],[-58.57091223899988,51.258124091000084],[-58.590240037999905,51.25108470300002],[-58.5958552729999,51.26837799700003],[-58.60871334499985,51.27838776200009],[-58.622670050999915,51.27732982000004],[-58.63182532499988,51.261338609000134],[-58.6283259759999,51.258856512000115],[-58.62169348899993,51.25132884300016],[-58.61660722599989,51.241888739000146],[-58.61815344999985,51.23338450700011],[-58.62743079299988,51.23045482000002],[-58.64110266799995,51.2316755230001],[-58.65367591099993,51.236517645],[-58.65908769399987,51.24424876500011],[-58.66348222599995,51.25714752800012],[-58.67198645699988,51.25568268400015],[-58.67747962099991,51.24420807500012],[-58.67284094999987,51.22724030200014],[-58.656483527999875,51.210923570000105],[-58.635894334999925,51.20050690300003],[-58.590240037999905,51.18622467700013],[-58.60387122299994,51.18357982000004],[-58.61107337099988,51.17401764500006],[-58.61668860599988,51.16181061400009],[-58.625640428999894,51.151475328000075],[-58.6395564439999,51.14630768400015],[-58.6701554029999,51.1418317730001],[-58.68301347599992,51.13438548400005],[-58.70409094999985,51.113959052000055],[-58.71637936099992,51.10651276200018],[-58.77940833199992,51.09336985900002],[-58.789458787999905,51.096869208000115],[-58.79792232999995,51.085394598000065],[-58.80996660099995,51.077582098000065],[-58.82209225199995,51.07770416900014],[-58.830433722999906,51.09003327],[-58.84093176999988,51.081651109000134],[-58.84683183499993,51.07151927299999],[-58.85094153599988,51.055283921000054],[-58.84276282499987,51.05463288],[-58.83633378799996,51.05333079600008],[-58.83218339799993,51.049627997000144],[-58.830433722999906,51.041612046000104],[-58.848133917999924,51.032416083000115],[-58.86461341099991,51.021104234000134],[-58.885975714999866,50.99835846600011],[-58.89248613199996,50.99445221600011],[-58.91201738199993,50.99823639500012],[-58.90684973899994,51.013291734000134],[-58.88508053299997,51.041612046000104],[-58.89549719999987,51.05499909100011],[-58.91331946499994,51.05552806200008],[-58.93272864499993,51.049058335000076],[-58.94774329299989,51.041612046000104],[-58.95474199099994,51.036566473000065],[-58.96564693899992,51.02610911699999],[-58.974436001999884,51.021104234000134],[-58.98228919199988,51.02057526200015],[-58.990061001999976,51.02265045799999],[-58.99836178299994,51.02232493700016],[-59.00796464799992,51.01496002800014],[-58.99665279899994,51.00413646000008],[-58.98656165299988,51.00287506700006],[-58.976185675999886,51.005926825000145],[-58.963856574999845,51.00812409100014],[-58.95457923099988,51.00311920800003],[-58.95669511599991,50.991563218000074],[-58.966949022999934,50.969590562000164],[-58.96825110599991,50.96527741100006],[-58.973500128999916,50.95856354400003],[-58.974436001999884,50.953477281000104],[-58.97109941299996,50.948350328000075],[-58.95742753799993,50.944077867000075],[-58.95396887899991,50.939195054000024],[-58.95400956899991,50.9288190780001],[-58.956206834999904,50.918402411000116],[-58.96056067599991,50.90806712400011],[-58.966949022999934,50.89826080900018],[-58.957386847999935,50.897406317000055],[-58.95091712099995,50.89451732000005],[-58.94029700399989,50.884588934000035],[-58.96751868399989,50.87702057500008],[-58.96861731699994,50.86058177299999],[-58.95897376199988,50.84235260600011],[-58.95396887899991,50.829331773000135],[-58.961333787999926,50.82066478100013],[-58.972889777999846,50.81622955900015],[-58.983469204999885,50.810532944999984],[-58.98810787699991,50.798651434000035],[-58.99327551999995,50.790838934000035],[-59.00527910099995,50.785589911000145],[-59.029652472999906,50.78095123900011],[-59.02538001199991,50.77362702000012],[-59.02155514199998,50.768255927000055],[-59.0162654289999,50.76434967700005],[-59.00796464799992,50.76105377800003],[-59.03774980399993,50.75242747600011],[-59.066965298999975,50.76239655200011],[-59.08910071499985,50.784369208000115],[-59.0979711579999,50.81195709800014],[-59.09325110599991,50.82566966400016],[-59.070708787999905,50.85065338700009],[-59.06322180899985,50.86347077000012],[-59.06232662699995,50.87547435100005],[-59.06566321499989,50.88804759300014],[-59.07384192599988,50.89435455900018],[-59.08775794199997,50.8876813820001],[-59.09825598899994,50.87156810100005],[-59.112172003999916,50.826361395000035],[-59.12531490799997,50.80206940300003],[-59.18602454299992,50.75800202000012],[-59.18667558499987,50.74738190300009],[-59.20278886599994,50.73191966400016],[-59.22057044199993,50.740423895],[-59.2384333979999,50.75580475500014],[-59.25499426999996,50.76105377800003],[-59.26231848899996,50.75470612200009],[-59.26162675699993,50.746201890000165],[-59.259510870999925,50.736558335],[-59.262440558999934,50.72691478100005],[-59.27061926999994,50.718695380000106],[-59.27668209499984,50.71653880400014],[-59.28400631399995,50.71613190300003],[-59.295969204999984,50.71332428600009],[-59.317494269999905,50.70160553600009],[-59.34439042899987,50.67511627800011],[-59.36485755099994,50.66486237200009],[-59.37865149599995,50.66376373900014],[-59.40990149599992,50.66661204600008],[-59.419504360999895,50.66486237200009],[-59.42516028599988,50.65802643400015],[-59.42406165299994,50.65216705900003],[-59.4173477859999,50.647528387000094],[-59.40583248599995,50.64439524900003],[-59.415598110999895,50.63194407800001],[-59.427357550999965,50.63019440300012],[-59.43956458199994,50.631170966000084],[-59.45079505099994,50.627020575000145],[-59.45811926999994,50.61701080900015],[-59.46841386599988,50.59247467700014],[-59.4512635659999,50.58426515500015],[-59.42317944499987,50.584367525000104],[-59.41049697499989,50.57240941800002],[-59.41194038499995,50.55454164100008],[-59.42398420999994,50.540012558000015],[-59.45410587999988,50.53374851200006],[-59.49599634099988,50.537405015],[-59.510109454999935,50.546254540000106],[-59.520317072999944,50.542456346000066],[-59.525461391999954,50.53758372600005],[-59.533273891999954,50.53131745000009],[-59.54417883999994,50.527329820000105],[-59.55663001199986,50.52024974200005],[-59.565256313999946,50.509141343000024],[-59.572621222999935,50.495550848000065],[-59.58153235599991,50.48407623900012],[-59.59447180899991,50.47931549700003],[-59.65221106699994,50.47370026200003],[-59.69408118399985,50.46112702000012],[-59.725331183999906,50.457139390000165],[-59.73497473899988,50.451605536000145],[-59.74388587099991,50.44464752800015],[-59.75584876199985,50.43829987200003],[-59.76805579299992,50.44501373900006],[-59.791005011999914,50.44041575700013],[-59.80308997299991,50.445746161],[-59.82384192599991,50.43052806200002],[-59.86229407499991,50.39105866100005],[-59.88560950399991,50.376898505000106],[-59.88560950399991,50.37067291900017],[-59.87755286399988,50.36994049700006],[-59.858306443999936,50.36383698100015],[-59.863677537999905,50.35191478100002],[-59.862416144999884,50.340521552000055],[-59.85472571499989,50.33185455900015],[-59.84093176999997,50.32843659100014],[-59.840687628999916,50.335557359000106],[-59.83214270699989,50.34894440300009],[-59.822132941999904,50.356634833000115],[-59.81729081899993,50.34642161699999],[-59.82725989499994,50.32807038000011],[-59.85065670499992,50.313584703000075],[-59.89928137899994,50.294907945000105],[-59.922718878999945,50.28880442900011],[-59.93496660099989,50.28416575699999],[-59.94025631399999,50.277899481000034],[-59.944325324999944,50.261094468000024],[-59.95441646999989,50.26422760600009],[-59.96694902299989,50.272406317],[-59.9786677729999,50.27106354400003],[-59.9963272779999,50.255072333000115],[-60.01675370999987,50.244696356000034],[-60.03941809799994,50.24323151200014],[-60.063710089999915,50.253973700000174],[-60.07233639199992,50.24591705900003],[-60.08092200399991,50.24388255400011],[-60.08967037699989,50.243597723000065],[-60.09850012899994,50.24030182500003],[-60.1022029289999,50.23688385600003],[-60.10850989499994,50.22882721600008],[-60.11156165299994,50.22601959800014],[-60.12328040299991,50.21869538000014],[-60.134877081999946,50.21299876500013],[-60.14012610599991,50.21552155200008],[-60.13267981699994,50.23285553600005],[-60.17365475199995,50.23285553600005],[-60.161936001999976,50.24022044500005],[-60.15550696499986,50.250799872000115],[-60.15298417899995,50.262681382000046],[-60.15298417899995,50.28485748900011],[-60.15347245999993,50.28839752800012],[-60.17699133999989,50.28746165600002],[-60.199045376999884,50.27574290600013],[-60.22256425699993,50.25238678600014],[-60.2464900379999,50.23468659100005],[-60.2698461579999,50.24030182500003],[-60.25890051999995,50.24632396000005],[-60.24876868399988,50.253973700000174],[-60.24034583199992,50.26325104400002],[-60.235015428999866,50.27448151200004],[-60.250599738999966,50.26890696800002],[-60.263295050999915,50.27094147300015],[-60.27208411399988,50.279852606000084],[-60.27603105399987,50.294907945000105],[-60.285878058999884,50.284979559000085],[-60.28571529899992,50.25328196800005],[-60.293690558999884,50.246527411],[-60.331654425999915,50.252427476000136],[-60.349842902999875,50.25324127800006],[-60.3653865229999,50.246527411],[-60.35802161399991,50.23993561400012],[-60.35411536399991,50.233587958],[-60.3558650379999,50.228583075000145],[-60.3653865229999,50.22601959800014],[-60.37462317599994,50.22862376500014],[-60.38206946499994,50.243109442],[-60.38927161399996,50.246527411],[-60.39622962099986,50.248724677],[-60.40245520699992,50.252752997000144],[-60.40908769399988,50.25458405200014],[-60.41690019399988,50.25023021000014],[-60.423817511999886,50.244370835],[-60.43077551999997,50.241400458],[-60.43838456899991,50.24180735900008],[-60.44733639199992,50.246527411],[-60.441151495999854,50.260809637000094],[-60.46914628799987,50.25547923400002],[-60.499175584999925,50.253973700000174],[-60.50796464799989,50.249579169000086],[-60.53001868399988,50.23033274900014],[-60.54043535099989,50.22601959800014],[-60.599924282999915,50.21637604400017],[-60.622059699999916,50.223008531000126],[-60.61864173099988,50.253973700000174],[-60.640451626999955,50.23725006700014],[-60.65111243399988,50.231065171000076],[-60.66706295499998,50.22601959800014],[-60.72227942599991,50.22601959800014],[-60.71922766799991,50.230047919000114],[-60.717681443999965,50.23338450700014],[-60.71662350199991,50.236639716000084],[-60.714833136999914,50.24030182500003],[-60.736236131999874,50.24034251500002],[-60.75230872299994,50.23423899900014],[-60.76598059799988,50.22337474200005],[-60.78034420499995,50.20897044499999],[-60.794056769999884,50.204657294000086],[-60.82127844999989,50.22223541900003],[-60.83836829299994,50.21979401200017],[-60.83112545499993,50.23725006700014],[-60.815541144999905,50.24896881700012],[-60.79596920499995,50.256333726000136],[-60.776926235999944,50.260809637000094],[-60.8026423819999,50.267075914000046],[-60.83556067599988,50.256333726000136],[-60.93081620999993,50.20294830900018],[-60.93455969999988,50.199326890000016],[-60.94245357999995,50.201239325000174],[-60.94591223899994,50.20575592700014],[-60.94762122299994,50.2123884140001],[-60.9470108709999,50.21320221600011],[-60.94904537699991,50.215562242000075],[-60.95213782499991,50.21820709800015],[-60.955067511999914,50.21979401200017],[-60.96296139199989,50.21991608300006],[-60.976185675999936,50.21348704600014],[-60.98232988199993,50.2123884140001],[-60.99693762899995,50.216742255],[-61.01097571499988,50.22296784100014],[-61.02611243399988,50.227240302000055],[-61.043812628999895,50.22601959800014],[-61.04869544199996,50.22174713700003],[-61.04991614499989,50.21503327000009],[-61.04987545499989,50.20860423400008],[-61.05064856699991,50.20555247599999],[-61.057932094999934,50.20591868700011],[-61.078521287999955,50.2123884140001],[-61.10586503799993,50.20555247599999],[-61.10586503799993,50.203721421000104],[-61.10802161399994,50.19953034100017],[-61.11253821499989,50.19501373900011],[-61.11953691299996,50.19249095300002],[-61.14858964799993,50.20250071800008],[-61.16063391799985,50.20172760600015],[-61.153065558999906,50.18504466400013],[-61.16588294199994,50.185410874000134],[-61.204579230999876,50.20140208500014],[-61.22541256399996,50.20555247599999],[-61.31135006399998,50.199326890000016],[-61.42772376199995,50.16864655200011],[-61.50625566299987,50.15814850500005],[-61.58503170499995,50.129990953000075],[-61.64077714799992,50.12116120000012],[-61.694935675999915,50.10313548400008],[-61.717884894999884,50.100043036],[-61.78429114499991,50.10313548400008],[-61.78429114499991,50.10993073100012],[-61.764068162999905,50.11127350499999],[-61.73525956899988,50.126654364000146],[-61.71910559799991,50.13043854400014],[-61.70563717399992,50.13214752800015],[-61.61241614499992,50.156683661],[-61.595611131999895,50.158392645],[-61.581654425999915,50.16376373900006],[-61.573801235999916,50.17560455900012],[-61.5760798819999,50.187363999000084],[-61.59251868399991,50.19249095300002],[-61.61091061099995,50.17450592700005],[-61.63744055899991,50.16657135600009],[-61.694935675999915,50.158392645],[-61.747710740999906,50.13825104400014],[-61.776763475999864,50.1341413430001],[-61.804798956999974,50.14411041900008],[-61.79674231699993,50.17206452000012],[-61.815581834999875,50.19074127800012],[-61.839344855999876,50.20502350499999],[-61.845773891999904,50.21979401200017],[-61.86318925699987,50.23016998900009],[-61.88487708199994,50.23371002800015],[-61.92454993399988,50.23285553600005],[-61.93618730399987,50.23517487200003],[-61.94908606699988,50.23944733300014],[-61.961577928999894,50.241278387000115],[-61.972320115999906,50.236558335000026],[-61.98273678299989,50.23053620000009],[-61.99632727799985,50.22736237200003],[-62.023915167999895,50.22601959800014],[-62.13377844999985,50.24030182500003],[-62.21247311099992,50.241766669000086],[-62.23680579299992,50.246527411],[-62.28050696499989,50.263373114],[-62.29979407499994,50.273749091000084],[-62.31501217399991,50.28436920800014],[-62.326975063999924,50.289170640000016],[-62.33967037699989,50.287543036],[-62.35204016799994,50.283514716000056],[-62.36921139199995,50.280218817],[-62.38003495999995,50.27684153900016],[-62.383615688999924,50.277899481000034],[-62.387562628999916,50.285020249000084],[-62.38780676999993,50.29087962400003],[-62.39028886599988,50.294501044000086],[-62.40062415299988,50.294907945000105],[-62.41242428299996,50.290594794000086],[-62.42031816299993,50.28229401200012],[-62.42699133999989,50.273504950000145],[-62.43480383999989,50.26764557500011],[-62.45055091099994,50.26548899900011],[-62.45909583199994,50.27061595300002],[-62.466704881999895,50.277696031000076],[-62.479481574999845,50.28123607000008],[-62.59569251199985,50.277289130000085],[-62.750721808999884,50.28746165600002],[-62.750721808999884,50.294907945000105],[-62.7091365229999,50.30919017100008],[-62.7091365229999,50.31541575700005],[-62.754994269999884,50.30528392100011],[-62.778065558999934,50.302679755],[-62.791656053999894,50.30919017100008],[-62.798654751999976,50.29901764500015],[-62.808461066999904,50.29425690300015],[-62.8326309889999,50.28746165600002],[-62.852447068999936,50.29425690300015],[-62.931630011999914,50.28746165600002],[-62.95962480399992,50.28819407800015],[-62.96983801999997,50.29132721600003],[-62.97972571499988,50.2983259140001],[-62.99307206899988,50.31342194200012],[-63.002023891999926,50.317002671000076],[-63.017648891999904,50.31541575700005],[-63.02855383999989,50.30975983300006],[-63.04466712099994,50.29246653900015],[-63.05239824099996,50.28746165600002],[-63.06798255099994,50.28620026200012],[-63.11042232999992,50.294907945000105],[-63.15827389199995,50.294907945000105],[-63.17666581899991,50.29014720300001],[-63.17516028599994,50.27936432500009],[-63.16600501199986,50.267767645000085],[-63.16161048099988,50.260809637000094],[-63.17711341099991,50.25153229400006],[-63.202870245999925,50.24510325700011],[-63.25064042899987,50.24030182500003],[-63.334787563999896,50.25031159100003],[-63.36021887899992,50.246527411],[-63.37047278599994,50.240464585],[-63.387033657999915,50.224595444999984],[-63.39500891799986,50.21979401200017],[-63.42064368399994,50.218980210000076],[-63.435536261999886,50.22020091400019],[-63.44220943899995,50.222886460000076],[-63.44790605399992,50.24213288000011],[-63.46320553299998,50.255316473000065],[-63.48501542899994,50.26353587400014],[-63.51040605399996,50.26764557500011],[-63.536284959999875,50.266831773000014],[-63.603505011999914,50.253973700000174],[-63.611561652999846,50.257147528000026],[-63.62604732999989,50.271226304],[-63.63768469999991,50.27448151200004],[-63.65086829299987,50.273138739000146],[-63.660755988999966,50.270819403000175],[-63.67039954299995,50.27033112200009],[-63.682362433999884,50.27448151200004],[-63.68854732999992,50.279852606000084],[-63.70030676999991,50.29523346600003],[-63.70962480399996,50.3017438820001],[-63.72215735599985,50.30426666900003],[-63.76797441299996,50.3017438820001],[-63.78001868399988,50.303900458000115],[-63.79979407499988,50.313218492000075],[-63.808990037999955,50.31541575700005],[-63.98916581899996,50.30695221600003],[-64.03441321499989,50.29718659100017],[-64.09585527299987,50.29087962400003],[-64.10692298099991,50.28746165600002],[-64.13442949099993,50.27033112200009],[-64.14476477799985,50.26764557500011],[-64.2474666009999,50.270697333],[-64.34862219999988,50.288031317],[-64.3710017569999,50.2983259140001],[-64.38996334499993,50.3100446640001],[-64.41673743399991,50.31854889500012],[-64.44542395699997,50.32294342700011],[-64.4700414699999,50.32225169499999],[-64.49181067599994,50.31565989800002],[-64.5326228509999,50.298407294000086],[-64.62938391799992,50.284043687000015],[-64.86782792899993,50.27448151200004],[-64.87682044199993,50.27265045800006],[-64.8812556629999,50.272569078000075],[-64.88833574099988,50.27448151200004],[-64.90269934799994,50.28253815300015],[-64.90737870999988,50.28693268400006],[-64.9020076159999,50.28746165600002],[-64.91600501199989,50.28827545800014],[-64.93781490799992,50.282822984000106],[-65.03380286399991,50.28416575699999],[-65.11705481699994,50.29743073100012],[-65.1510310539999,50.298895575000174],[-65.17267818899998,50.291205145000056],[-65.19131425699996,50.28729889500006],[-65.21694902299993,50.29852936400006],[-65.25829016799985,50.32225169499999],[-65.2659399079999,50.32062409100014],[-65.28897050699996,50.31159088700003],[-65.29991614499994,50.30919017100008],[-65.45689856699991,50.3017438820001],[-65.53160559799991,50.284125067],[-65.62433834499987,50.276963609000134],[-65.73717200399994,50.25743235900008],[-65.83849036399988,50.26048411700007],[-65.86164303299992,50.26764557500011],[-65.89366614499991,50.282416083],[-65.92918860599991,50.292832749000084],[-65.96422278599991,50.29319896],[-65.99502519399996,50.277899481000034],[-66.0350642569999,50.23541901200015],[-66.04653886599993,50.22601959800014],[-66.0627335279999,50.22125885600006],[-66.07917232999989,50.22227610900002],[-66.08775794199991,50.23033274900014],[-66.08071855399993,50.246527411],[-66.10338294199987,50.24408600500005],[-66.10521399599986,50.22801341400015],[-66.09654700399997,50.207627671000104],[-66.08751380099994,50.19249095300002],[-66.10936438699991,50.19737376500008],[-66.16185462099986,50.19578685100005],[-66.18004309799994,50.20246002800009],[-66.19505774599989,50.21259186400006],[-66.21288001199994,50.21771881700006],[-66.25202389199998,50.21979401200017],[-66.28807532499984,50.21466705900015],[-66.32323157499991,50.20530833500014],[-66.35704505099989,50.20140208500014],[-66.40444902299993,50.21820709800015],[-66.40941321499986,50.22247955900015],[-66.40623938699991,50.22943756700006],[-66.40444902299993,50.236273505000085],[-66.4058324859999,50.24669017100014],[-66.40908769399994,50.257269598],[-66.41307532499991,50.26422760600009],[-66.42955481699991,50.273138739000146],[-66.44888261599993,50.27354564000014],[-66.46816972599987,50.26850006700003],[-66.49893144399992,50.25250885600011],[-66.52928626199991,50.23033274900014],[-66.54312089799993,50.21613190300003],[-66.54954993399993,50.19830963700015],[-66.54100501199991,50.18439362200017],[-66.51207434799991,50.16461823100014],[-66.49762936099995,50.16950104400002],[-66.4715063139999,50.17413971600014],[-66.44513912699989,50.17588939000014],[-66.43016516799985,50.17206452000012],[-66.42845618399986,50.163397528000026],[-66.43488521999987,50.15753815300009],[-66.45128333199997,50.15094635600012],[-66.46125240799995,50.144761460000055],[-66.46613521999984,50.14268626500002],[-66.4973852199999,50.14630768400009],[-66.53319251199991,50.158392645],[-66.54332434799997,50.15875885600012],[-66.56346594999991,50.15717194200009],[-66.57412675699993,50.158392645],[-66.59093176999994,50.16453685100008],[-66.61807206899988,50.17951080900009],[-66.6356095039999,50.18504466400013],[-66.63630123599995,50.17499420800006],[-66.63434811099992,50.16596100500014],[-66.62975012899997,50.15802643400018],[-66.62254798099994,50.15094635600012],[-66.6439509759999,50.14630768400009],[-66.6659236319999,50.13475169500008],[-66.70107988199996,50.1065534530001],[-66.74592037699989,50.05365631700012],[-66.76593990799994,50.04108307500006],[-66.81395423099993,50.02753327000009],[-66.91209876199994,50.01129791900002],[-66.95091712099995,49.98643626500008],[-66.96768144399995,49.96678294500005],[-66.97508704299986,49.955511786000145],[-66.97887122299997,49.94489166900011],[-66.97541256399998,49.936102606000034],[-66.96857662699995,49.92491282800004],[-66.96593176999997,49.915391343000024],[-66.9913630849999,49.903143622000144],[-67.00389563699989,49.88377513200005],[-67.01488196499994,49.86094798400005],[-67.02660071499994,49.842393296000026],[-67.04491126199989,49.82831452000009],[-67.05565344999991,49.83234284100014],[-67.06802324099993,49.84312571800014],[-67.09117591099988,49.84931061400012],[-67.11290442599994,49.844061591000056],[-67.13145911399995,49.83128489799999],[-67.14622962099995,49.8156598980001],[-67.16588294199991,49.78807200699999],[-67.17471269399996,49.77179596600014],[-67.18154863199987,49.754868882],[-67.18431555899994,49.739365953000075],[-67.18032792899996,49.72272370000003],[-67.17271887899992,49.70905182500008],[-67.16734778599997,49.695176499000084],[-67.17003333199995,49.67796458500008],[-67.17992102799985,49.66551341400007],[-67.21275794199994,49.637396552000055],[-67.22524980399996,49.62335846600003],[-67.23086503799995,49.611558335000055],[-67.24510657499988,49.568101304000024],[-67.23399817599994,49.546087958],[-67.2315974599999,49.51398346600002],[-67.23599199099988,49.481634833000115],[-67.24510657499988,49.458848374000084],[-67.26817786399994,49.43345774900014],[-67.37633216099991,49.33921946800016],[-67.40111243399986,49.32969798400007],[-67.54930579299986,49.331244208000115],[-67.5833227199999,49.32750071800008],[-67.61506100199995,49.314886786],[-67.62897701699993,49.32127513200011],[-67.64488684799994,49.32054271],[-67.67398027299991,49.314886786],[-67.73546301999988,49.314886786],[-67.74592037699995,49.31321849199998],[-67.77464758999992,49.30357493700002],[-67.78355872299994,49.29816315300017],[-67.79430091099997,49.28721751500011],[-67.80308997299993,49.281968492000104],[-67.81407630099989,49.28021881700012],[-67.86139889199993,49.28253815300008],[-67.91771399599992,49.292954819999984],[-67.94465084499987,49.29437897300015],[-67.99583899599992,49.28721751500011],[-68.02643795499995,49.28668854400003],[-68.05455481699994,49.29437897300015],[-68.05846106699993,49.282456773000106],[-68.06566321499989,49.273504950000174],[-68.08242753799989,49.260239976000044],[-68.12238521999984,49.271348374000084],[-68.13585364499991,49.25568268400009],[-68.14317786399992,49.22858307500017],[-68.16437740799992,49.20563385600009],[-68.17198645699995,49.20416901200004],[-68.18968665299988,49.20587799700003],[-68.19786536399997,49.20563385600009],[-68.20604407499988,49.202500718000024],[-68.21979732999989,49.19371165600013],[-68.22887122299991,49.19196198100015],[-68.28368079299992,49.194322007000025],[-68.30089270699992,49.198187567],[-68.30089270699992,49.19196198100015],[-68.25397701699998,49.16705963700012],[-68.23542232999998,49.16400788000011],[-68.20335852799991,49.17035553600006],[-68.19054114499997,49.167466539000095],[-68.18358313699989,49.150987046000026],[-68.18358313699989,49.14354075700005],[-68.18106035099996,49.12445709800006],[-68.21963456899994,49.112005927000055],[-68.32542883999986,49.09845612200009],[-68.3429255849999,49.09015534100011],[-68.3766169909999,49.069037177],[-68.39232337099989,49.06391022300009],[-68.40892493399994,49.06175364799999],[-68.44432532499994,49.06163157800002],[-68.38206946499993,49.099920966000134],[-68.3697810539999,49.11558665600002],[-68.3718969389999,49.140326239],[-68.4064835279999,49.163682359000106],[-68.40330969999992,49.18451569200006],[-68.43325761599989,49.19615306200008],[-68.44432532499994,49.198187567],[-68.43016516799992,49.18390534100003],[-68.41783606699997,49.15839264500012],[-68.4094945949999,49.13397858300006],[-68.40705318899995,49.123032945000105],[-68.41759192599991,49.11985911700005],[-68.45177161399991,49.09577057500011],[-68.48721269399991,49.083685614],[-68.49616451699993,49.07843659100003],[-68.51500403599988,49.069891669000086],[-68.57481848899994,49.060492255000085],[-68.59508216099994,49.05475495000008],[-68.61510169199991,49.03949616100011],[-68.63459225199992,49.01703522300012],[-68.64452063699991,48.99115631700012],[-68.63609778599995,48.96539948100017],[-68.69880123599995,48.94489166900003],[-68.68862870999989,48.93235911700013],[-68.65542558499988,48.92963288000006],[-68.64354407499994,48.91766998900012],[-68.78380286399997,48.91083405200011],[-68.7953181629999,48.907416083],[-68.80284583199997,48.89948151200004],[-68.80866451699993,48.890204169000086],[-68.8148087229999,48.882879950000174],[-68.88312740799998,48.84703196800008],[-68.90680904899992,48.83978913000006],[-68.92467200399997,48.83038971600003],[-68.9496150379999,48.825751044000086],[-68.95417232999993,48.81940338700014],[-68.95514889199993,48.810532945000105],[-68.95946204299992,48.80097077000012],[-68.97443600199995,48.7881940780001],[-68.99111894399991,48.78229401200015],[-69.03734290299991,48.780462958000086],[-69.05573482999995,48.77350495000009],[-69.06956946499994,48.756211656000104],[-69.11790930899986,48.63056061400006],[-69.1444392569999,48.60053131700011],[-69.1915583979999,48.588690497000144],[-69.20059160099993,48.59088776200015],[-69.2106013659999,48.59483470300013],[-69.2205297519999,48.59650299700014],[-69.22948157499994,48.59210846600017],[-69.26781165299988,48.54328034100017],[-69.28062903599991,48.51105377800003],[-69.28783118399994,48.499335028000026],[-69.28937740799998,48.464585679],[-69.3255102199999,48.42527903900016],[-69.40444902299993,48.36273834800015],[-69.4300837879999,48.317694403000175],[-69.44664466099987,48.29621002800015],[-69.46963456899996,48.28705475500006],[-69.49242102799988,48.281927802000055],[-69.51195227799987,48.27000560100011],[-69.52989661399991,48.25617096600003],[-69.54784094999985,48.24542877800009],[-69.55435136599993,48.24469635600014],[-69.56908118399993,48.24669017100011],[-69.57518469999992,48.24542877800009],[-69.5796606109999,48.24042389500006],[-69.58043372299991,48.23480866100006],[-69.58023027299996,48.229437567],[-69.58202063699994,48.225531317],[-69.65453040299988,48.16290924700009],[-69.67601477799991,48.1498884140001],[-69.69871985599994,48.14362213700014],[-69.71275794199988,48.14447663000006],[-69.74714107999992,48.15668366100014],[-69.76170813699986,48.15843333500014],[-69.79832923099988,48.15668366100014],[-69.8198949859999,48.161932684000035],[-69.83690344999988,48.17487213700004],[-69.86314856699988,48.20506419500005],[-69.88231360599984,48.221136786000116],[-69.90257727799988,48.232733466000056],[-69.94513912699992,48.25910065300003],[-69.98509680899988,48.27842845300015],[-70.03758704299992,48.27863190300012],[-70.09365800699993,48.27256907800002],[-70.1443578769999,48.27338288000011],[-70.1673070949999,48.283392645000035],[-70.21100826699988,48.31500885600009],[-70.23346920499998,48.32172272300015],[-70.25902258999987,48.32505931200008],[-70.2835180329999,48.33331940300014],[-70.36921139199987,48.37413157800001],[-70.3928930329999,48.37693919500008],[-70.41494706899988,48.365830796000054],[-70.43517005099991,48.362982489],[-70.63438880099991,48.39683665600016],[-70.67735755099994,48.39154694200009],[-70.69298255099994,48.392808335],[-70.71288001199994,48.40367259300008],[-70.7471817699999,48.42755768400015],[-70.76671301999987,48.43500397300012],[-70.79206295499992,48.437811591000084],[-70.80345618399988,48.436224677000055],[-70.81358801999993,48.433172919000135],[-70.8241267569999,48.43174876500008],[-70.83641516799995,48.43467845300002],[-70.87755286399994,48.44953034100017],[-70.98721269399994,48.46515534100014],[-71.0116267569999,48.462347723],[-71.04796301999988,48.44904205900018],[-71.06981360599994,48.44464752800009],[-70.99767005099994,48.45298899900017],[-70.97362219999991,48.45148346600003],[-70.88760331899991,48.42161692900011],[-70.83263098899994,48.414780992000104],[-70.80589758999992,48.407456773000106],[-70.78848222599991,48.395697333000115],[-70.79206295499992,48.37974681200002],[-70.81139075399994,48.369696356000034],[-70.83853105399994,48.364610093000024],[-70.89167232999995,48.36273834800015],[-70.87877356699994,48.34760163000006],[-70.87385006399998,48.333807684000064],[-70.8656306629999,48.324164130000085],[-70.84325110599988,48.32172272300015],[-70.82677161399988,48.32566966400013],[-70.78180904899989,48.34845612200014],[-70.74449622299991,48.35533274900017],[-70.60049394399994,48.35643138200011],[-70.54527747299991,48.36273834800015],[-70.47752844999991,48.35643138200011],[-70.46275794199991,48.35187409100017],[-70.44322669199994,48.34275950700008],[-70.3924861319999,48.338120835000055],[-70.35960852799991,48.328436591000084],[-70.34585527299987,48.32603587400014],[-70.33429928299995,48.32123444200006],[-70.32384192599997,48.30109284100003],[-70.31126868399988,48.299505927],[-70.29735266799992,48.30267975500006],[-70.28774980399993,48.307481187000135],[-70.23058020699995,48.272772528000175],[-70.16295325399992,48.24506256700009],[-70.09264075399997,48.23484935100005],[-70.02765865799992,48.25287506700009],[-70.00422115799995,48.24201080900009],[-69.95030676999991,48.230821031000076],[-69.92491614499988,48.22186920800005],[-69.9062393869999,48.20726146000014],[-69.87002519399991,48.15668366100014],[-69.84666907499991,48.14276764500006],[-69.81802324099993,48.13471100500011],[-69.76048743399994,48.12995026200003],[-69.73595130099991,48.12250397300015],[-69.74242102799994,48.105536200000174],[-69.77440344999994,48.07477448100009],[-69.7809138659999,48.057725328000124],[-69.79283606699995,48.006293036000145],[-69.79491126199989,47.98871491100003],[-69.80138098899988,47.98383209800012],[-69.81476803299998,47.977525132],[-69.82583574099992,47.96995677300005],[-69.82559160099986,47.96149323100012],[-69.82408606699994,47.95307038000006],[-69.82656816299996,47.93992747600002],[-69.83527584499984,47.917059637000094],[-69.84679114499997,47.90009186400012],[-69.8941951159999,47.85162995000003],[-69.90558834499986,47.83445872600011],[-69.91930091099991,47.79230377800015],[-69.93203691299993,47.77305735900001],[-69.94298255099991,47.765366929],[-69.96768144399991,47.75462474199999],[-69.97984778599988,47.746405341000084],[-70.01695716099991,47.70831940300008],[-70.03449459499984,47.69733307500006],[-70.07530676999988,47.681708075000145],[-70.08629309799994,47.67405833500011],[-70.09972083199995,47.66807689000002],[-70.11510169199987,47.66856517100011],[-70.13060462099989,47.66730377800009],[-70.1443578769999,47.65635814000002],[-70.13711503799986,47.64227936400009],[-70.15514075399992,47.62604401200004],[-70.18163001199987,47.609808661],[-70.19957434799994,47.59552643400009],[-70.20616614499991,47.57977936400014],[-70.20685787699995,47.56574127800009],[-70.20543372299996,47.55280182500009],[-70.20579993399988,47.540269272999986],[-70.2101130849999,47.52838776200004],[-70.21743730399989,47.517035223000065],[-70.23688717399989,47.49559153900013],[-70.2480362619999,47.48956940300003],[-70.27839107999989,47.48212311400014],[-70.30223548099988,47.469427802],[-70.31745357999995,47.4662946640001],[-70.37539628799993,47.46141185100005],[-70.40737870999993,47.453355210000026],[-70.43712317599994,47.44236888200005],[-70.45909583199997,47.43048737200009],[-70.46662350199992,47.43455638200005],[-70.48029537699995,47.44004954600008],[-70.48692786399992,47.444769598],[-70.49705969999988,47.429266669000086],[-70.50690670499992,47.379624742000075],[-70.51740475199996,47.368963934000035],[-70.53376217399989,47.35956452],[-70.54845130099989,47.337591864],[-70.56891842399995,47.29328034100014],[-70.5977270169999,47.249416408000016],[-70.61742102799994,47.22752513200008],[-70.63438880099991,47.21816640800012],[-70.68561764199987,47.14923737200009],[-70.71495520699995,47.11758047100001],[-70.7506404289999,47.09178294499999],[-70.7916560539999,47.07241445500007],[-70.92031816299992,47.03721751500002],[-70.95685787699998,47.02065664300012],[-71.19102942599989,46.858058986000074],[-71.20010331899988,46.84825267100014],[-71.22288977799991,46.814520575000145],[-71.22687740799998,46.81004466400016],[-71.23192298099991,46.79840729400017],[-71.24478105399993,46.788967190000065],[-71.30247962099989,46.75885651200004],[-71.31786048099994,46.75665924700003],[-71.34166419199991,46.74233633000016],[-71.35399329299989,46.73899974200013],[-71.4632055329999,46.734483140000165],[-71.51475989499997,46.72471751500002],[-71.59292558499988,46.70083242400015],[-71.6441951159999,46.693182684000035],[-71.69395911399991,46.674383856000176],[-71.72020423099991,46.670070705000064],[-71.77204342399992,46.670070705000064],[-71.78294837099989,46.672227281000076],[-71.80333411399988,46.681626695000105],[-71.81265214799993,46.683742580000015],[-71.84024003799993,46.686997789000074],[-71.86091061099995,46.69175853100016],[-71.88052324099989,46.690659898000106],[-71.97203528599994,46.62950267100017],[-72.0137426419999,46.60773346600011],[-72.05540930899994,46.594346421000104],[-72.14191646999993,46.58071523600016],[-72.2124731109999,46.56102122600011],[-72.22793535099993,46.553371486000074],[-72.23639889199987,46.53624095300013],[-72.25169837099992,46.48232656500012],[-72.25804602799985,46.47085195500007],[-72.2967830069999,46.45099518400017],[-72.33714758999994,46.443508205000015],[-72.35741126199986,46.436672268000095],[-72.39264889199988,46.41917552300005],[-72.44078528599997,46.41193268400012],[-72.46226966099988,46.40232982000005],[-72.60252844999994,46.30133698100012],[-72.64509029899997,46.28652578300013],[-72.66755123599998,46.28392161700005],[-72.73786373599992,46.28652578300013],[-72.77122962099989,46.280910549000126],[-72.84447180899994,46.264797268000066],[-72.91397050699996,46.242417710000055],[-72.99449622299991,46.21080149900014],[-72.98595130099989,46.19529857000005],[-73.00462805899988,46.14069245000009],[-73.02204342399995,46.10960521],[-73.07164466099997,46.089748440000065],[-73.10635331899994,46.08726634300014],[-73.15855872299993,46.07485586100002],[-73.17931067599994,46.05304596600017],[-73.18211829299989,46.0347761090001],[-73.18687903599991,46.01837799700009],[-73.2040909499999,45.98346588700014],[-73.26231848899994,45.902248440000065],[-73.28990637899994,45.875067450000145],[-73.33446204299995,45.854641018000095],[-73.3558650379999,45.84153880400011],[-73.37254798099994,45.81118398600013],[-73.42027747299989,45.7651227890001],[-73.4954320949999,45.727891343000024],[-73.67739824099988,45.708156643000095],[-73.75544186099992,45.67637767100014],[-73.8627009759999,45.592637437000015],[-73.89264889199987,45.55906810099999],[-73.9024145169999,45.5407575540001],[-73.90953528599997,45.53473541900003],[-73.93423417899993,45.529933986000124],[-73.94579016799986,45.523993231000084],[-73.9564509759999,45.51609935100013],[-73.96467037699989,45.508164781000076],[-73.97923743399991,45.49843984600004],[-74.00108801999997,45.49127838700018],[-74.04344641799985,45.48399485900016],[-74.10484778599997,45.485012111000046],[-74.12555904899995,45.489732164000046],[-74.13597571499984,45.49079010600009],[-74.14745032499991,45.494370835000055],[-74.17381751199989,45.51813385600015],[-74.19009355399993,45.5283063820001],[-74.19904537699995,45.53091054900001],[-74.21475175699993,45.532375393000066],[-74.30695553299998,45.52553945500013],[-74.3216039699999,45.52879466400019],[-74.33486894399992,45.537014065],[-74.35952714799993,45.55947500200009],[-74.37946529899992,45.5616315780001],[-74.36558997299991,45.55284251500002],[-74.35277258999989,45.538234768],[-74.34288489499997,45.52236562700007],[-74.32970130099991,45.50967031500012],[-74.30695553299998,45.504461981000034],[-74.27733313699994,45.502793687000015],[-74.12653561099992,45.46544017100014],[-74.10147050699993,45.46344635600012],[-74.07770748599992,45.45669179900007],[-74.05728105399987,45.444484768],[-74.03770911399991,45.43846263199999],[-74.01610266799989,45.450425523000135],[-74.0086563789999,45.436183986000046],[-74.01471920499992,45.42031484600001],[-74.00194251199989,45.396104234000106],[-73.98078365799995,45.37148672100001],[-73.9615372389999,45.35423411699999],[-73.96841386599993,45.35203685100002],[-73.97150631399991,45.350490627000156],[-73.97516842399997,45.34739817900008],[-74.01349850199988,45.32843659100014],[-74.10936438699991,45.32746002800009],[-74.15330969999985,45.32013580900018],[-74.16893469999992,45.3080101580001],[-74.19961503799993,45.27236562700013],[-74.2113337879999,45.26487864800008],[-74.23375403599994,45.26211172100001],[-74.30711829299995,45.23240794499999],[-74.31383216099991,45.228094794000086],[-74.32144120999993,45.22500234600001],[-74.33454342399989,45.22394440300006],[-74.34618079299992,45.22056712400003],[-74.36400305899987,45.20612213700015],[-74.37547766799992,45.202785549000126],[-74.37889563699994,45.199937242000104],[-74.40249589799987,45.186631578000075],[-74.41340084499986,45.182277736000074],[-74.44416256399992,45.1783714860001],[-74.45433508999989,45.17544179900006],[-74.47305253799993,45.16437409100002],[-74.49364173099988,45.14622630400014],[-74.51024329299995,45.124904690000065],[-74.51699785099987,45.10439687700001],[-74.52627519399994,45.091131903000175],[-74.54796301999991,45.080226955000015],[-74.65306555899988,45.04254791900003],[-74.71296139199993,44.99925364800005]]],[[[-110.47232011599993,72.57330963700007],[-110.54255123599991,72.57208893400004],[-110.57526607999993,72.57965729400009],[-110.59585527299987,72.60065338700012],[-110.5503637359999,72.60219961100016],[-110.52757727799987,72.60049062700014],[-110.50706946499992,72.59381745000009],[-110.49543209499991,72.59259674700009],[-110.4854223299999,72.589016018],[-110.47752844999987,72.58270905200008],[-110.47232011599993,72.57330963700007]]],[[[-110.46922766799987,72.625392971],[-110.39720618399993,72.62051015800004],[-110.38288326699984,72.62164948100015],[-110.36856035099987,72.62103913],[-110.35659745999993,72.61688873900005],[-110.34886633999992,72.60748932500003],[-110.49347896999986,72.62051015800004],[-110.46922766799987,72.625392971]]],[[[-110.30304928299982,72.6332054710001],[-110.33975175699993,72.63202545800004],[-110.41087805899988,72.64223867400001],[-110.38817298099991,72.64874909100008],[-110.36424719999985,72.65277741100006],[-110.31468665299994,72.655218817],[-110.2798966139999,72.64842357000008],[-110.30304928299982,72.6332054710001]]],[[[-95.73228919199994,72.8076846370001],[-95.74950110599988,72.80316803600006],[-95.77326412699998,72.80609772300006],[-95.7982071609999,72.81586334800004],[-95.85578365799996,72.86066315300015],[-95.79320227799985,72.88056061400015],[-95.77977454299986,72.88043854400017],[-95.76634680899988,72.87498607000013],[-95.73350989499997,72.85846588700015],[-95.72105872299994,72.84902578300013],[-95.71178137899987,72.83397044500013],[-95.72028561099982,72.81834544500005],[-95.73228919199994,72.8076846370001]]],[[[-96.70547441299993,72.75202057500009],[-96.73997962099993,72.72842031500015],[-96.75328528599995,72.72410716400005],[-96.77245032499994,72.72394440300009],[-96.82217363199993,72.73777903899999],[-96.84528561099988,72.74013906500012],[-96.91771399599992,72.73777903899999],[-96.9505916009999,72.74127838700018],[-96.97199459499987,72.75055573100003],[-97.01398678299991,72.778753973],[-96.9480688139999,72.79071686400012],[-96.92296301999991,72.80402252800013],[-96.93822180899988,72.82656484600012],[-96.91454016799986,72.84227122600011],[-96.85138912699995,72.85980866100014],[-96.79039466099988,72.88654205900015],[-96.75938880099993,72.89618561400012],[-96.72695878799996,72.897650458],[-96.6918025379999,72.88861725500009],[-96.6887914699999,72.87441640800007],[-96.69831295499988,72.860052802],[-96.7259822259999,72.83397044500013],[-96.6702367829999,72.81419505400002],[-96.64830481699997,72.80093008000007],[-96.65086829299989,72.778753973],[-96.70547441299993,72.75202057500009]]],[[[-96.75942949099993,73.11456940300009],[-96.7310684889999,73.11261627800003],[-96.7034399079999,73.12205638200005],[-96.67658443899992,73.13458893400015],[-96.65086829299989,73.14183177299999],[-96.64264889199987,73.12547435100008],[-96.57896887899992,73.083441473],[-96.5682673819999,73.05247630400005],[-96.57725989499991,73.03681061400009],[-96.59264075399994,73.02562083500008],[-96.60952714799993,73.01593659100003],[-96.62291419199994,73.00470612200012],[-96.62682044199994,72.99799225500006],[-96.63365637899994,72.982326565],[-96.63658606699988,72.97736237200006],[-96.6460668609999,72.96869538000006],[-96.6551000639999,72.96356842700014],[-96.71011308499996,72.94171784100008],[-96.7838435539999,72.93065013200005],[-96.9341527989999,72.92446523600007],[-96.97301184799991,72.92963288],[-97.0586645169999,72.96417877800009],[-97.10033118399986,72.99201080900015],[-97.10952714799993,73.018988348],[-97.13170325399987,73.04389069200015],[-97.14069576699993,73.05890534100017],[-97.14427649599989,73.0763613950001],[-97.1355688139999,73.09520091399999],[-97.11506100199995,73.11041901200007],[-97.09097245999993,73.12409088700018],[-97.07201087099992,73.13812897300012],[-97.04381262899994,73.15558502800009],[-96.9713028639999,73.16913483300006],[-96.90379798099994,73.18964264500003],[-96.85655676999997,73.19415924700017],[-96.80919348899994,73.19208405200006],[-96.77375240799991,73.182806708],[-96.76073157499985,73.18268463700004],[-96.74828040299994,73.17804596600008],[-96.7259822259999,73.16233958500013],[-96.73908443899987,73.14402903899999],[-96.77057857999995,73.12335846600014],[-96.75942949099993,73.11456940300009]]],[[[-114.19664466099995,73.308050848],[-114.02269446499992,73.21185944200006],[-113.98106848899994,73.17597077000009],[-113.96524003799992,73.1572940120001],[-113.9583634109999,73.14012278899999],[-113.96198482999988,73.12287018400015],[-114.00446529899993,73.07160065300003],[-114.00841223899992,73.0630557310001],[-114.00698808499995,73.05121491100006],[-114.00470943899988,73.04279205900009],[-114.00426184799989,73.03522370000015],[-114.00841223899992,73.02578359600012],[-114.01646887899996,73.01732005399998],[-114.03490149599989,73.00584544500005],[-114.04255123599992,72.99848053600006],[-114.0405167309999,72.99697500200001],[-114.04263261599989,72.98493073100009],[-114.04649817599991,72.97272370000012],[-114.04938717399992,72.97052643400004],[-114.04124915299992,72.95571523600012],[-114.03083248599984,72.94570547100007],[-114.0245255199999,72.93447500200007],[-114.02892005099997,72.91596100500006],[-114.0344132149999,72.91181061400003],[-114.04381262899993,72.9070498720001],[-114.05280514199984,72.89984772300008],[-114.05679277299993,72.88861725500009],[-114.05549068899991,72.87791575700005],[-114.05134029899989,72.87132396],[-114.03636633999986,72.86066315300015],[-113.98794511599993,72.839300848],[-113.9695531889999,72.82453034100011],[-113.98106848899994,72.80914948100015],[-114.02310136599992,72.797796942],[-114.24120032499984,72.79242584800012],[-114.2517797519999,72.78896719000012],[-114.28278561099992,72.76508209800005],[-114.33665930899986,72.75560130400005],[-114.35606848899997,72.74628327000012],[-114.34764563699991,72.72724030200011],[-114.34142005099996,72.71845123900006],[-114.33828691299989,72.70111725500009],[-114.33397376199989,72.69310130400011],[-114.31456458199996,72.6857770850001],[-114.2677302729999,72.696234442],[-114.24803626199987,72.689398505],[-114.27061926999994,72.686712958],[-114.3144425119999,72.673773505],[-114.40477454299989,72.657416083],[-114.42613684799994,72.64842357000008],[-114.45636959499986,72.63100820500009],[-114.4729711579999,72.62433502800003],[-114.60423743399993,72.60748932500003],[-114.59805253799996,72.60748932500003],[-114.58551998599987,72.60407135600003],[-114.5728653639999,72.59926992400013],[-114.54967200399994,72.58698151200018],[-114.55797278599994,72.570990302],[-114.54613196499989,72.56781647300012],[-114.51056881399991,72.57330963700007],[-114.40623938699984,72.55902741100006],[-114.36070716099988,72.55890534100008],[-114.3394669259999,72.56378815300013],[-114.32176673099991,72.59178294499999],[-114.30089270699993,72.59821198100009],[-114.25548255099994,72.60065338700012],[-114.1260880199999,72.63670482],[-113.88487708199992,72.66205475500011],[-113.89854895699995,72.64842357000008],[-113.8566788399999,72.63690827000012],[-113.80101477799991,72.64032623900015],[-113.55907141799992,72.69891998900009],[-113.50877844999985,72.70302969000012],[-113.55797278599997,72.67194245000003],[-113.67943274599986,72.638373114],[-113.7340388659999,72.61424388200008],[-113.7116593089999,72.607611395],[-113.68553626199994,72.60805898600002],[-113.65957597599993,72.61310455900004],[-113.63784745999989,72.62051015800004],[-113.63072669199993,72.62592194200005],[-113.62547766799995,72.6332054710001],[-113.6196182929999,72.63947174700003],[-113.61082923099993,72.64223867400001],[-113.58739173099987,72.64447663000009],[-113.47935950399996,72.66665273600013],[-113.4398087229999,72.68524811400015],[-113.4398494129999,72.70990631700012],[-113.42723548099993,72.72247955900004],[-113.42056230399996,72.72719961100013],[-113.4125870429999,72.73037344],[-113.44326738199992,72.75189850500011],[-113.55858313699993,72.75478750200016],[-113.6040746739999,72.76170482000005],[-113.60399329299992,72.77753327000009],[-113.5721329419999,72.797796942],[-113.48379472599993,72.84048086100002],[-113.39093990799992,72.91156647300006],[-113.19245357999985,72.99331289300015],[-113.01500403599992,73.01601797100001],[-112.94220943899987,73.00446198100015],[-112.85887610599985,73.00470612200012],[-112.83975175699989,73.00161367400013],[-112.80638587099989,72.98798248900009],[-112.79185950399996,72.98480866100012],[-112.53425045499996,72.96088288000006],[-112.37315833199996,72.91469961100013],[-112.28042558499992,72.90253327000006],[-112.07730058499993,72.89801666900011],[-112.00910396999991,72.88104889500012],[-111.92153886599988,72.87152741100012],[-111.88048255099996,72.85663483300009],[-111.71422278599994,72.83087799700006],[-111.64781653599991,72.81061432500002],[-111.55223548099994,72.80634186400012],[-111.50739498599992,72.79547760600002],[-111.48379472599989,72.78351471600011],[-111.46605383999989,72.77130768400004],[-111.46524003799988,72.76756419499999],[-111.46694902299988,72.75560130400005],[-111.46605383999989,72.75202057500009],[-111.45616614499997,72.74925364800013],[-111.42829342399992,72.74848053600003],[-111.39183508999987,72.74140045800006],[-111.30842037699996,72.73777903899999],[-111.2196345689999,72.72410716400005],[-111.22472083199993,72.70962148600002],[-111.22801673099988,72.70307038000011],[-111.23330644399995,72.69684479400014],[-111.21300208199995,72.68463776200016],[-111.20885169199991,72.67340729400009],[-111.21694902299993,72.66030508000001],[-111.24571692599997,72.62783437700011],[-111.25377356699991,72.61424388200008],[-111.26178951699985,72.587347723],[-111.26683508999987,72.579535223],[-111.2892960279999,72.56598541900014],[-111.49339758999986,72.51064687700016],[-111.47988847599989,72.507025458],[-111.46068274599993,72.50486888199998],[-111.44399980399989,72.50079987200003],[-111.43814042899994,72.491400458],[-111.44725501199993,72.48383209800006],[-111.56436113199993,72.44114817900014],[-111.85464433499995,72.38141510600015],[-111.88752193899984,72.36774323100002],[-111.90428626199987,72.34674713700018],[-111.88927161399994,72.34577057500012],[-111.87271074099988,72.34174225500014],[-111.84312903599992,72.32965729400001],[-111.8211563789999,72.32391998900006],[-111.79515540299992,72.32444896000013],[-111.7472224599999,72.33307526200004],[-111.68883216099992,72.35590241100006],[-111.65880286399988,72.35952383000004],[-111.64484615799991,72.34052155200011],[-111.6599828769999,72.32404205900004],[-111.72105872299997,72.30255768400009],[-111.72301184799991,72.28872304900001],[-111.72191321499987,72.27155182500009],[-111.74376380099991,72.25446198100003],[-111.77163652299986,72.23810455900004],[-111.78819739499993,72.22321198100013],[-111.77082271999986,72.21084219000012],[-111.75332597599989,72.20709870000009],[-111.73436438699989,72.21328359600007],[-111.71247311099987,72.23065827000015],[-111.70726477799987,72.23891836100013],[-111.70620683499989,72.24599844],[-111.70319576699991,72.252915757],[-111.6829320949999,72.26813385600018],[-111.66470292899992,72.29214101800004],[-111.65070553299986,72.29515208500011],[-111.61864173099988,72.29181549700009],[-111.60265051999997,72.29214101800004],[-111.59068762899994,72.29612864799999],[-111.56334387899996,72.30902741100003],[-111.48053951699984,72.324652411],[-111.41828365799985,72.34674713700018],[-111.43903561099985,72.35382721600014],[-111.46202551999991,72.35126373900012],[-111.5070694649999,72.34052155200011],[-111.55483964799994,72.33917877800003],[-111.57681230399994,72.34349192900014],[-111.5964249339999,72.35419342700006],[-111.60631262899993,72.362209377],[-111.60924231699994,72.36717357000005],[-111.60399329299987,72.3725446640001],[-111.5895889959999,72.38153717700011],[-111.57388261599993,72.38873932500015],[-111.53156490799992,72.40009186400012],[-111.47838294199991,72.40448639500012],[-111.44131425699992,72.41242096600008],[-111.40709387899993,72.426214911],[-111.38011633999987,72.44672272300015],[-111.34727942599997,72.46230703300013],[-111.29523678299992,72.47068919500002],[-111.24185136599995,72.47142161700013],[-111.2053930329999,72.46344635600018],[-111.21263587099993,72.45551178600002],[-111.2205704419999,72.450384833],[-111.23843339799996,72.44196198100006],[-111.34312903599994,72.42332591400007],[-111.36986243399994,72.40818919500008],[-111.3497208319999,72.406724351],[-111.30231686099987,72.40875885600003],[-111.28111731699988,72.4020042990001],[-111.35749264199991,72.37148672100015],[-111.37669837099988,72.35419342700006],[-111.35244706899988,72.34756094],[-111.33429928299988,72.3535016950001],[-111.31676184799991,72.36481354400009],[-111.29474850199993,72.37409088700015],[-111.27989661399997,72.37518952],[-111.2395727199999,72.37164948100012],[-111.22590084499987,72.36717357000005],[-111.21955318899984,72.361802476],[-111.20360266799992,72.34430573100006],[-111.20225989499993,72.34052155200011],[-111.1436661449999,72.33905670800006],[-111.11668860599994,72.33270905200011],[-111.08934485599987,72.31883372600004],[-111.06387285099996,72.29975006700006],[-111.04698645699996,72.29035065300002],[-111.02790279899997,72.28530508000001],[-111.03148352799987,72.31313711100016],[-111.05044511599996,72.33454010600009],[-111.07355709499991,72.35358307500007],[-111.08934485599987,72.37409088700015],[-111.08629309799997,72.40827057500006],[-111.05361894399994,72.42206452000015],[-111.0113826159999,72.43105703300007],[-110.97948157499988,72.450384833],[-111.00251217399995,72.46377187700001],[-110.99518795499995,72.47337474199999],[-110.97052975199996,72.47980377800009],[-110.94147701699988,72.48309967700011],[-110.78766842399996,72.47711823100012],[-110.81623287699996,72.49892812700007],[-110.82787024599988,72.509955145],[-110.83604895699997,72.52488841400005],[-110.72911536399992,72.57127513200011],[-110.70409094999992,72.57880280200008],[-110.67833411399988,72.57916901200008],[-110.6233617829999,72.55923086100002],[-110.59166419199994,72.5541445980001],[-110.52757727799987,72.55219147300012],[-110.4855037099999,72.55829498900012],[-110.47915605399989,72.55560944200015],[-110.48224850199996,72.54450104400003],[-110.49022376199991,72.53847890800002],[-110.59032141799995,72.51349518400009],[-110.60334225199992,72.50438060100002],[-110.59373938699987,72.49428945500013],[-110.57038326699985,72.48309967700011],[-110.54458574099993,72.47402578300004],[-110.52757727799987,72.47028229400009],[-110.5128067699999,72.46954987200014],[-110.45376542899994,72.46051666900014],[-110.42813066299989,72.452093817],[-110.39142818899988,72.44452545800006],[-110.3628637359999,72.43349844],[-110.33429928299988,72.42731354400003],[-110.30785071499992,72.43618398600007],[-110.48570716099995,72.48053620000003],[-110.53441321499989,72.50438060100002],[-110.51398678299992,72.51703522300005],[-110.48615475199995,72.52545807500003],[-110.45799719999987,72.52903880399998],[-110.43687903599995,72.5268415390001],[-110.42926998599992,72.52789948100015],[-110.42125403599988,72.53400299700014],[-110.40721594999992,72.54877350500011],[-110.39439856699988,72.5566266950001],[-110.38052324099989,72.55951569200015],[-110.34951738199987,72.55902741100006],[-110.32656816299989,72.55487702000003],[-110.28652910099994,72.53656647300014],[-110.23989824099993,72.527818101],[-110.16270911399991,72.47968170800011],[-110.1095271479999,72.459947007],[-110.08503170499998,72.45661041900014],[-110.07945716099988,72.45441315300015],[-110.0577286449999,72.43952057500012],[-110.04963131399988,72.43943919500012],[-110.01305091099992,72.45661041900014],[-110.0036921869999,72.45811595300002],[-109.9808243479999,72.46181875200016],[-109.86261959499986,72.44550202000012],[-109.83543860599985,72.43602122600011],[-109.80825761599993,72.43024323100015],[-109.7802628249999,72.43618398600007],[-109.80308997299991,72.45087311400009],[-109.98574785099996,72.48924388200003],[-110.0036921869999,72.49656810100011],[-110.04108639199984,72.51178620000009],[-110.25942949099992,72.55902741100006],[-110.23648027299991,72.57013580900018],[-110.19713294199994,72.57233307500017],[-110.09776770699992,72.56049225500011],[-110.0036921869999,72.52378978100002],[-109.99925696499993,72.52204010600012],[-109.88573157499991,72.49168528900005],[-109.85057532499985,72.48948802300004],[-109.81639563699986,72.49306875200001],[-109.7877091139999,72.50438060100002],[-109.7997126939999,72.51154205900004],[-109.82721920499995,72.53384023600007],[-109.83861243399991,72.53856028899999],[-109.85586503799992,72.54059479400003],[-109.87596594999987,72.54572174700003],[-109.91063391799995,72.55902741100006],[-109.9319555329999,72.57542552300004],[-109.9432266919999,72.59227122600005],[-109.95693925699992,72.60781484600007],[-110.0036921869999,72.62730540600013],[-110.0615942049999,72.65143463700015],[-110.10167395699993,72.66290924700012],[-110.13658606699995,72.658636786],[-110.17503821499986,72.6478539080001],[-110.22207597599987,72.64638906500012],[-110.26573645699995,72.65534088700015],[-110.29426021999987,72.67572663000006],[-110.19676673099993,72.68113841400002],[-110.17072506399985,72.689398505],[-110.19664466099995,72.70514557500003],[-110.20750891799993,72.71816640800004],[-110.19749915299987,72.72711823100013],[-110.11929277299996,72.72980377800003],[-110.04320227799987,72.72113678600013],[-110.0036921869999,72.7104352890001],[-109.87584387899989,72.67572663000006],[-109.83873450399989,72.6710879580001],[-109.81993567599993,72.67218659100017],[-109.81786048099991,72.679429429],[-109.82579505099997,72.68598053600009],[-109.84520423099988,72.69594961100007],[-109.85602779899997,72.70302969000012],[-109.83873450399989,72.71442291900009],[-109.81737219999992,72.71808502800006],[-109.7734268869999,72.71670156500006],[-109.79995683499995,72.73102448100015],[-109.91051184799997,72.73460521000011],[-109.9518936839999,72.74115631699999],[-109.99347896999987,72.75389232000003],[-110.0036921869999,72.75543854400009],[-110.04991614499991,72.7623558610001],[-110.1070043609999,72.76365794500002],[-110.1502172519999,72.75519440300015],[-110.1890356109999,72.74315013200005],[-110.22935950399989,72.73777903899999],[-110.25450598899995,72.73895905200011],[-110.26675370999992,72.74266185100005],[-110.26284745999993,72.749009507],[-110.23961341099991,72.75824616100006],[-110.20213782499987,72.76373932500017],[-110.1817927729999,72.76894765800007],[-110.17072506399985,72.778753973],[-110.17271887899989,72.79132721600008],[-110.19888261599992,72.79922109600007],[-110.20543372299991,72.80914948100015],[-110.23033606699995,72.82428620000015],[-110.48350989499995,72.83917877800003],[-110.52904212099992,72.8492699240001],[-110.56794186099984,72.86749909100017],[-110.6082250639999,72.90086497600004],[-110.63174394399996,72.91583893400018],[-110.68252519399991,72.92877838700018],[-110.7167048819999,72.94505442900011],[-110.74543209499986,72.96556224199999],[-110.75413977799992,72.98480866100012],[-110.73570716099991,73.00136953300006],[-110.70372473899991,73.00910065300009],[-110.3900650709999,73.00242747600005],[-110.07640540299988,72.9957542990001],[-110.0036921869999,72.98505280200006],[-109.90534420499996,72.970607815],[-109.8901261059999,72.96369049700012],[-109.88341223899994,72.95490143400004],[-109.88312740799991,72.94745514500006],[-109.88463294199994,72.9413109400001],[-109.88329016799986,72.93642812700001],[-109.85488847599994,72.92194245000015],[-109.82339433499993,72.923529364],[-109.7591853509999,72.93642812700001],[-109.68895423099985,72.92983633000013],[-109.6226293609999,72.91596100500006],[-109.64273027299994,72.90013255400011],[-109.72744706899994,72.89642975500009],[-109.75234941299988,72.88117096600011],[-109.37621008999992,72.77130768400004],[-109.3841446609999,72.76715729400009],[-109.40416419199995,72.75202057500009],[-109.18325761599988,72.76703522300002],[-109.16331946499989,72.76170482000005],[-109.12922115799986,72.747219143],[-109.1161189439999,72.74457428600012],[-109.12905839799991,72.74054596600013],[-109.14293372299991,72.73786041900017],[-109.15538489499993,72.73354726800007],[-109.16392981699994,72.72410716400005],[-109.05809485599994,72.688869533],[-108.94603430899987,72.673773505],[-108.9407852859999,72.66547272300012],[-108.95738684799994,72.65884023600016],[-109.0335994129999,72.64842357000008],[-109.02122962099988,72.63507721600014],[-109.02521725199995,72.62400950700011],[-109.03831946499992,72.61493561400012],[-109.05406653599988,72.60748932500003],[-109.03429114499994,72.59658437700007],[-109.0267634759999,72.59381745000009],[-109.03213456899995,72.589056708],[-109.04161536399995,72.57794830900018],[-109.04723059799996,72.57330963700007],[-109.0228165359999,72.56806061400006],[-108.93708248599985,72.579535223],[-108.86733964799988,72.5713565120001],[-108.8417862619999,72.57330963700007],[-108.85179602799988,72.58222077000008],[-108.86327063699993,72.58771393400012],[-108.88898678299986,72.59381745000009],[-108.86782792899987,72.60594310099998],[-108.67357337099992,72.57746002800009],[-108.63341223899992,72.56557851800011],[-108.61587480399989,72.54877350500011],[-108.60985266799987,72.53021881700012],[-108.5980118479999,72.51723867400013],[-108.58967037699995,72.50381094000012],[-108.5941462879999,72.48395416900001],[-108.60338294199997,72.47711823100012],[-108.61742102799991,72.47199127800009],[-108.63019771999987,72.46527741100006],[-108.63573157499988,72.45351797100007],[-108.6378474599999,72.44367096600014],[-108.64728756399991,72.42365143400018],[-108.6529841789999,72.39321523600005],[-108.65965735599985,72.377386786],[-108.66307532499985,72.36102936400009],[-108.65684973899988,72.34052155200011],[-108.64386959499988,72.32575104400006],[-108.60732988199996,72.302191473],[-108.5910538399999,72.28872304900001],[-108.53429114499994,72.20246002800016],[-108.53335527299988,72.19586823100009],[-108.53400631399984,72.16885000200016],[-108.53600012899996,72.15778229400011],[-108.54015051999991,72.14874909100011],[-108.51610266799987,72.14093659100011],[-108.48448645699989,72.13808828300007],[-108.46003170499995,72.143988348],[-108.45759029899992,72.16242096600006],[-108.44277910099994,72.163072007],[-108.42833411399988,72.16079336100002],[-108.41466223899992,72.15574778899999],[-108.40241451699988,72.14874909100011],[-108.40973873599988,72.14175039300012],[-108.41820227799992,72.13690827000015],[-108.42756100199995,72.134507554],[-108.4377335279999,72.134466864],[-108.4377335279999,72.127630927],[-108.41348222599991,72.127142645],[-108.40501868399988,72.11587148600002],[-108.40257727799985,72.10004303600009],[-108.39614824099993,72.08608633000001],[-108.39915930899993,72.06696198100003],[-108.40241451699988,72.0587832700001],[-108.39683997299996,72.04559967700008],[-108.40025794199988,72.0264346370001],[-108.41661536399988,71.99046458500013],[-108.35252844999992,71.99262116100012],[-108.3206680979999,71.98883698100012],[-108.29312089799988,71.97626373900012],[-108.3279516269999,71.94285716400005],[-108.3409317699999,71.93585846600017],[-108.31749426999993,71.93553294500005],[-108.2540583979999,71.96360911700005],[-108.22423255099991,71.97003815300015],[-108.19151770699989,71.96295807500009],[-108.18830318899984,71.94953034100011],[-108.22109941299993,71.91168854400013],[-108.24665279899993,71.89789459800006],[-108.27721106699994,71.89085521],[-108.29430091099991,71.88149648600013],[-108.27944902299994,71.86078522300014],[-108.26862545499992,71.85565827000012],[-108.2566625639999,71.8519554710001],[-108.2476293609999,71.84552643400016],[-108.2459610669999,71.83283112200012],[-108.25206458199997,71.82322825700014],[-108.28693600199989,71.798732815],[-108.26683508999986,71.78343333500004],[-108.23924719999985,71.7728539080001],[-108.2096248039999,71.76654694200006],[-108.18390865799985,71.764593817],[-108.17393958199995,71.76154205900012],[-108.17031816299989,71.75409577000012],[-108.17178300699995,71.7451846370001],[-108.17707271999983,71.73725006700012],[-108.1887914699999,71.73322174700014],[-108.2459610669999,71.72296784100006],[-108.19884192599989,71.70600006700006],[-108.0976456369999,71.72337474200005],[-108.04670162699989,71.71674225500009],[-108.01817786399991,71.70246002800009],[-107.99193274599988,71.68341705900009],[-107.97777258999986,71.66058991100009],[-107.98521887899993,71.63483307500003],[-107.9170629549999,71.63092682500003],[-107.85545813699987,71.61041901200018],[-107.83250891799987,71.60822174700007],[-107.81395423099987,71.61310455900015],[-107.8065079419999,71.61310455900015],[-107.78994706899991,71.616888739],[-107.76545162699988,71.61542389500012],[-107.74095618399986,71.618150132],[-107.72451738199996,71.63483307500003],[-107.78587805899987,71.66388580900012],[-107.7999568349999,71.66836172100007],[-107.8194067049999,71.67112864800012],[-107.83307857999992,71.67918528899999],[-107.83873450399992,71.69232819200012],[-107.83438066299993,71.70990631700006],[-107.80113684799991,71.7343610700001],[-107.75609290299985,71.72724030200006],[-107.7088110019999,71.71100495000012],[-107.66844641799993,71.70815664300007],[-107.63076738199996,71.72809479400014],[-107.59845943899984,71.753404039],[-107.5636287099999,71.77521393400006],[-107.51878821499987,71.78436920800011],[-107.25157630099991,71.80613841399997],[-107.27749589799991,71.81842682500015],[-107.31090247299989,71.82672760600003],[-107.37511145699992,71.83283112200012],[-107.3989965489999,71.83828359600015],[-107.44261633999989,71.86212799700003],[-107.47248287699989,71.87026601800014],[-107.4651586579999,71.876166083],[-107.44188391799987,71.88629791900006],[-107.42902584499986,71.88703034100017],[-107.3458552729999,71.87197500200016],[-107.30719967399993,71.87433502800012],[-107.27159583199996,71.88446686400006],[-107.25157630099991,71.90167877800017],[-107.27220618399994,71.90900299700009],[-107.33356686099985,71.91535065300012],[-107.39439856699995,71.92829010600003],[-107.4166560539999,71.92902252800015],[-107.41270911399992,71.943548895],[-107.4141332669999,71.96173737200009],[-107.4227188789999,71.97719961100002],[-107.44001217399989,71.9836286480001],[-107.4811091789999,71.98794179900001],[-107.56411699099989,72.00674062700007],[-107.60480709499987,72.010931708],[-107.61827551999994,72.01902903900012],[-107.63638261599995,72.03766510600012],[-107.65160071499993,72.05841705900009],[-107.65632076699985,72.07298411700005],[-107.64688066299993,72.08173248900003],[-107.6202286449999,72.08612702],[-107.61465410099987,72.09690989800002],[-107.62096106699991,72.10317617400014],[-107.65172278599991,72.11408112200003],[-107.66315670499996,72.12079498900005],[-107.65510006399984,72.12181224200005],[-107.63516191299993,72.127630927],[-107.77916419199991,72.14130280200011],[-107.7728165359999,72.155259507],[-107.77603105399994,72.16437409100008],[-107.78246008999986,72.17153554900013],[-107.78600012899992,72.17914459800006],[-107.78600012899992,72.226996161],[-107.7947891919999,72.25104401200004],[-107.81607011599988,72.26569245000003],[-107.84194902299988,72.27826569200012],[-107.86485755099987,72.29584381700006],[-107.86074785099991,72.30463288000011],[-107.83779863199995,72.30735911700002],[-107.80955969999988,72.30434804900008],[-107.77330481699997,72.28778717700011],[-107.74913489499995,72.28400299700007],[-107.72720292899994,72.28790924700009],[-107.71776282499991,72.30267975500009],[-107.73452714799994,72.32656484600015],[-107.77350826699993,72.33991120000015],[-107.81712805899993,72.34910716400005],[-107.84805253799988,72.36041901200012],[-107.81493079299993,72.367865302],[-107.8038630849999,72.37409088700015],[-107.8065079419999,72.3877627620001],[-107.8181046209999,72.39618561400015],[-107.85114498599987,72.403265692],[-107.86485755099987,72.41193268400009],[-107.87189693899987,72.4348005230001],[-107.8086645169999,72.44277578300016],[-107.78600012899992,72.46344635600018],[-107.84007727799992,72.465521552],[-107.89329993399988,72.47353750200011],[-107.94269771999987,72.49017975499999],[-107.98521887899993,72.51805247600014],[-107.87535559799996,72.52488841400005],[-107.8846736319999,72.53733958500008],[-107.89020748599992,72.5475934920001],[-107.88829505099996,72.55853913000006],[-107.87535559799996,72.57330963700007],[-107.90050208199993,72.59442780200006],[-107.93541419199994,72.6068789730001],[-108.01317298099987,72.62051015800004],[-108.0038956369999,72.63129303600012],[-107.98973548099988,72.63507721600014],[-107.97350012899993,72.63694896000011],[-107.95791581899994,72.64223867400001],[-108.01252193899991,72.6637637390001],[-108.02619381399985,72.67987702000009],[-108.00572669199988,72.70302969000012],[-108.01740475199996,72.71246979400014],[-108.03921464799991,72.72467682500003],[-108.05011959499991,72.73407623900015],[-108.0746964179999,72.74925364800013],[-108.08364824099995,72.76007721600003],[-108.07030188699993,72.76508209800005],[-108.05646725199993,72.77606842700011],[-108.06773841099994,72.80060455900006],[-108.10130774599988,72.84023672100007],[-108.12946529899993,72.86151764500015],[-108.1391495429999,72.87124258000001],[-108.14248613199993,72.88837311400012],[-108.12474524599993,72.8959007830001],[-108.10553951699987,72.90131256700015],[-108.10472571499987,72.91217682500003],[-108.11896725199996,72.9222679710001],[-108.15314693899987,72.93671295800006],[-108.1634008449999,72.94383372600002],[-108.16783606699997,72.9581566430001],[-108.16283118399993,72.970607815],[-108.15123450399992,72.97992584800015],[-108.13609778599991,72.98480866100012],[-108.16820227799988,73.0067813170001],[-108.22565670499989,73.03563060100005],[-108.2346899079999,73.04291413000009],[-108.22484290299988,73.0462914080001],[-108.1892797519999,73.04523346600003],[-108.17178300699995,73.04686107000005],[-108.15656490799988,73.05247630400005],[-108.26545162699996,73.10187409100003],[-108.29832923099987,73.13377513200004],[-108.25894120999988,73.17597077000009],[-108.16494706899992,73.2061221370001],[-108.06753495999989,73.20770905200014],[-107.86790930899987,73.18964264500003],[-107.90453040299991,73.21255117400001],[-108.05353756399992,73.23802317900011],[-108.07030188699993,73.24359772300012],[-108.10533606699993,73.2592634140001],[-108.11872311099984,73.26878489800002],[-108.12132727799991,73.27440013199998],[-108.12083899599995,73.28815338700012],[-108.12242591099988,73.29266998900005],[-108.12987219999987,73.29657623900006],[-108.14834550699989,73.30174388200008],[-108.15656490799988,73.306341864],[-108.12376868399987,73.31598541900017],[-108.01317298099987,73.31317780200011],[-108.02993730399989,73.32623932500009],[-108.0692439439999,73.34170156500012],[-108.08763587099993,73.35415273600013],[-108.01333574099992,73.35488515800007],[-107.79344641799992,73.32623932500009],[-107.66201738199993,73.32843659100008],[-107.51886959499986,73.29572174700014],[-107.45396887899997,73.28864166900011],[-107.33653723899995,73.24945709800006],[-107.29259192599991,73.24111562700001],[-107.2685440749999,73.22699616100006],[-107.22817949099992,73.21845123900013],[-107.17243404899992,73.19501373900006],[-107.0732315749999,73.17804596600008],[-107.03970292899993,73.17869700700005],[-107.01138261599989,73.19708893400009],[-107.0351456369999,73.21108633000016],[-107.12873287699993,73.24428945500007],[-107.09496008999986,73.25946686400006],[-107.08340410099993,73.27106354400017],[-107.08771725199992,73.28583405200006],[-107.06395423099993,73.28856028900013],[-107.02672278599994,73.30170319200009],[-107.00519771999983,73.306341864],[-106.99445553299992,73.30573151200007],[-106.95710201699987,73.29889557500003],[-106.94717363199996,73.30072663000001],[-106.91576087099993,73.31317780200011],[-106.87344316299992,73.31557851800007],[-106.8233943349999,73.30963776200004],[-106.77672278599991,73.29694245000009],[-106.74449622299996,73.27903880400011],[-106.70295162699998,73.24380117400007],[-106.67593339799993,73.22955963700018],[-106.56297766799986,73.213120835],[-106.54246985599991,73.220404364],[-106.53872636599989,73.22748444200006],[-106.53921464799987,73.23309967700006],[-106.5378311839999,73.23672109600004],[-106.52847245999995,73.23802317900011],[-106.51724199099995,73.23712799700002],[-106.50470943899987,73.23436107000008],[-106.49303137899994,73.229925848],[-106.48444576699985,73.223822333],[-106.4776912099999,73.21328359600012],[-106.47545325399993,73.19717031500006],[-106.47077389199991,73.18964264500003],[-106.45840410099987,73.18463776200015],[-106.42296301999997,73.17523834800015],[-106.4055883449999,73.15428294500002],[-106.38267981699988,73.14765045800011],[-106.33983313699991,73.14183177299999],[-106.28355872299993,73.11815013200005],[-106.26842200399993,73.11456940300009],[-106.2613012359999,73.11029694200009],[-106.24592037699995,73.0914981140001],[-106.2339981759999,73.08722565300012],[-106.17951412699992,73.08283112200003],[-106.04893958199993,73.05341217700014],[-106.00841223899991,73.04901764500006],[-105.96300208199992,73.05247630400005],[-105.95099850199989,73.05658600500003],[-105.93960527299993,73.06199778900005],[-105.9280492829999,73.06525299700009],[-105.90029863199993,73.05914948100012],[-105.85008704299986,73.05996328300004],[-105.82933508999986,73.05133698100003],[-105.82848059799994,73.03229401200004],[-105.83071855399993,73.01333242400001],[-105.81932532499988,73.00470612200012],[-105.79869544199994,72.99933502800015],[-105.75405839799988,72.97589752800017],[-105.60680091099994,72.95010000200016],[-105.64093990799986,72.93642812700001],[-105.62173417899989,72.92633698100015],[-105.58169511599996,72.91502513200008],[-105.56578528599992,72.908433335],[-105.55687415299991,72.90102773600002],[-105.54922441299986,72.89276764500012],[-105.5396622389999,72.88548411700009],[-105.52481035099991,72.88117096600011],[-105.53209387899994,72.874660549],[-105.54035396999984,72.87010325700005],[-105.54930579299986,72.86766185100014],[-105.55894934799993,72.86749909100017],[-105.55894934799993,72.86066315300015],[-105.52794348899991,72.86090729400009],[-105.49498450399992,72.85565827],[-105.46324622299996,72.84625885600018],[-105.43610592399995,72.83397044500013],[-105.38898678299986,72.79791901200014],[-105.36717688699991,72.79242584800012],[-105.37340247299996,72.78538646000008],[-105.38133704299993,72.77985260600015],[-105.40127519399992,72.77130768400004],[-105.35448157499985,72.75991445500007],[-105.33250891799993,72.751125393],[-105.31875566299992,72.73777903899999],[-105.34935462099993,72.72980377800003],[-105.36607825399996,72.72842031500015],[-105.38145911399991,72.73037344],[-105.39020748599988,72.73505280200011],[-105.40933183499995,72.74909088700015],[-105.43757076699991,72.76015859600001],[-105.45832271999991,72.77586497600008],[-105.48224850199998,72.78632233300004],[-105.51056881399992,72.778753973],[-105.4286189439999,72.73037344],[-105.43785559799994,72.72492096600014],[-105.44579016799992,72.71873607],[-105.45221920499992,72.71161530200014],[-105.45653235599993,72.70302969000012],[-105.3555395169999,72.67308177300005],[-105.31248938699986,72.66705963700015],[-105.30016028599991,72.66193268400004],[-105.28966223899994,72.65444570500007],[-105.28526770699996,72.6452497420001],[-105.29356848899994,72.63800690300017],[-105.34666907499987,72.62051015800004],[-105.32884680899987,72.609808661],[-105.3157445949999,72.59707265800013],[-105.31110592399988,72.58063385600015],[-105.31875566299992,72.55902741100006],[-105.24958248599992,72.55263906500012],[-105.23062089799991,72.54535553600012],[-105.23399817599993,72.54262929900015],[-105.2436417309999,72.53237539300012],[-105.23696855399994,72.52887604400003],[-105.2284236319999,72.52130768400016],[-105.2232152989999,72.51805247600014],[-105.24836178299991,72.50067780200006],[-105.23961341099992,72.491929429],[-105.19587154899993,72.48395416900001],[-105.20400956899995,72.46092357000005],[-105.21056067599993,72.45331452000012],[-105.22350012899996,72.450384833],[-105.2444962229999,72.45380280200003],[-105.26374264199985,72.46010976800015],[-105.28331458199992,72.46303945500007],[-105.30508378799988,72.45661041900014],[-105.2769262359999,72.44000885600009],[-105.23582923099991,72.40009186400012],[-105.20954342399989,72.38153717700011],[-105.15538489499993,72.35667552299998],[-105.1378067699999,72.34365469],[-105.13320878799993,72.33661530200011],[-105.12975012899994,72.3198102890001],[-105.12702389199988,72.31264883000007],[-105.12169348899991,72.30573151200015],[-105.08967037699993,72.27826569200012],[-105.05939693899984,72.26178620000005],[-105.04503333199996,72.25116608299999],[-105.02668209499991,72.22679271000014],[-105.01378333199989,72.21478913000011],[-104.97980709499986,72.20502350500009],[-104.96629798099988,72.19354889500012],[-104.95958411399994,72.17837148600013],[-104.96251380099996,72.16242096600006],[-104.97988847599993,72.14813873900015],[-105.02501380099989,72.133286851],[-105.03888912699998,72.11395905200006],[-105.02342688699987,72.10740794500008],[-105.01256262899996,72.09666575700005],[-105.01130123599987,72.08437734600001],[-105.02456620999989,72.07298411700005],[-105.00621497299994,72.06915924700003],[-104.96593176999995,72.06537506699999],[-104.94884192599991,72.0587832700001],[-104.93993079299989,72.04962799700006],[-104.92861894399991,72.02871328300007],[-104.92560787699989,72.02460358300011],[-104.90587317599996,72.01764557500006],[-104.88565019399994,72.00088125200003],[-104.84032141799992,71.94643789300012],[-104.83189856699988,71.93170807500003],[-104.82725989499995,71.91469961100007],[-104.82591712099988,71.8911807310001],[-104.81460527299988,71.86188385600009],[-104.78718014199984,71.84479401200004],[-104.75332597599987,71.83633047100001],[-104.68553626199986,71.82953522300006],[-104.66950436099987,71.82404205900006],[-104.65404212099995,71.81232330900015],[-104.64964758999987,71.80390045800002],[-104.64598548099991,71.79246653900005],[-104.64049231699988,71.78245677300008],[-104.63072669199994,71.77822500200016],[-104.60749264199991,71.77277252800012],[-104.58307857999996,71.75975169500013],[-104.54478919199993,71.72980377800015],[-104.53831946499993,71.72142161700002],[-104.5306697259999,71.7041690120001],[-104.52489173099993,71.69627513200011],[-104.51060950399992,71.68634674700012],[-104.48037675699993,71.67450592700006],[-104.38027910099989,71.600043036],[-104.36534583199993,71.57721588700015],[-104.3707576159999,71.5576846370001],[-104.40758216099988,71.51068756700006],[-104.39142818899992,71.49274323100012],[-104.3715714179999,71.48163483299999],[-104.3188370429999,71.46971263200005],[-104.34019934799997,71.437974351],[-104.34508216099994,71.4218610700001],[-104.3362524079999,71.40452708500014],[-104.30016028599994,71.380072333],[-104.28237870999995,71.36395905200011],[-104.28132076699988,71.3502464860001],[-104.3045955069999,71.34577057500003],[-104.40758216099988,71.36733633000013],[-104.43382727799991,71.36640045800004],[-104.46312415299992,71.36050039300012],[-104.48696855399992,71.34760163000003],[-104.4969783189999,71.32575104400014],[-104.48302161399992,71.29873281500004],[-104.45641028599987,71.2753766950001],[-104.44054114499995,71.2490908870001],[-104.45909583199996,71.212795315],[-104.4774063789999,71.19765859600001],[-104.54478919199993,71.160589911],[-104.6002498039999,71.14801666900009],[-104.6274307929999,71.13861725500009],[-104.6478165359999,71.11969635600013],[-104.63536536399997,71.11334870000003],[-104.62409420499996,71.103989976],[-104.60313880099991,71.08246491100006],[-104.5911759109999,71.07318756700003],[-104.30402584499986,70.97288646000011],[-104.23192298099993,70.96503327000015],[-104.20250403599994,70.955267645],[-104.14688066299992,70.92788320500013],[-104.10521399599986,70.89809804900013],[-104.02403723899994,70.78449127800002],[-103.99811764199985,70.76190827000015],[-103.97012285099991,70.75104401200015],[-103.9382218089999,70.74835846600008],[-103.87804114499993,70.75071849200005],[-103.85997473899991,70.74819570500004],[-103.84337317599994,70.743109442],[-103.77765865799986,70.71259186400006],[-103.75121008999989,70.70648834800006],[-103.71544348899995,70.69159577000012],[-103.69347083199995,70.67763906500015],[-103.66136633999987,70.66791412999999],[-103.64728756399984,70.66095612200012],[-103.5990291009999,70.62055084800006],[-103.5718481109999,70.60553620000003],[-103.5377091139999,70.59951406500012],[-103.30846106699993,70.59796784100008],[-103.27204342399996,70.591009833],[-103.24632727799992,70.57534414300012],[-103.2278539699999,70.56110260600003],[-103.18358313699994,70.54266998899999],[-103.13931230399989,70.51056549700003],[-102.96613521999986,70.49359772300015],[-102.92784583199993,70.49909088700015],[-102.92039954299985,70.51764557500017],[-102.94595292899993,70.53164297100012],[-103.03026282499991,70.53725820500013],[-103.06135006399983,70.5482852230001],[-103.08193925699987,70.55927155200006],[-103.10562089799987,70.56610748900006],[-103.12523352799985,70.57607656500006],[-103.13337154899995,70.59613678600012],[-103.13548743399988,70.61237213700015],[-103.14142818899988,70.63153717700011],[-103.15025794199995,70.64915599200003],[-103.16124426999991,70.66095612200012],[-103.13158118399988,70.68231842700008],[-103.08690344999992,70.677476304],[-102.98916581899992,70.65110911699999],[-102.96100826699985,70.63597239799999],[-102.94591223899994,70.62055084800006],[-102.92463131399988,70.61367422100014],[-102.88630123599985,70.60635000200016],[-102.85973059799989,70.59658437700001],[-102.84194902299991,70.58063385600009],[-102.83885657499992,70.55963776200015],[-102.85586503799989,70.53465403900005],[-102.8510636059999,70.51634349199998],[-102.7217911449999,70.493353583],[-102.70079505099997,70.48725006700003],[-102.65656490799991,70.48362864800005],[-102.62022864499991,70.46454498900006],[-102.55797278599992,70.45612213700011],[-102.48908443899987,70.435003973],[-102.40929114499993,70.42552317899998],[-102.24941972599991,70.37299225500004],[-102.19220943899988,70.333441473],[-102.18537350199993,70.33209870000003],[-102.17031816299993,70.33197663000006],[-102.15355383999992,70.33588288000014],[-102.13988196499987,70.34271881700005],[-102.1262100899999,70.34503815300003],[-102.10920162699998,70.33539459800005],[-102.09422766799993,70.32465241100014],[-102.08006751199993,70.31972890800007],[-102.04405676999995,70.31216054900013],[-101.95278886599988,70.26972077000006],[-101.92015540299992,70.26373932500003],[-101.85244706899991,70.2617048200001],[-101.82335364499993,70.27195872600014],[-101.81126868399993,70.30125560100005],[-101.79027258999989,70.30556875200016],[-101.69277910099994,70.30874258000004],[-101.6635636059999,70.30125560100005],[-101.6502579419999,70.29222239800005],[-101.63084876199989,70.284613348],[-101.61070716099994,70.27936432500003],[-101.59496008999989,70.27732981999998],[-101.58405514199991,70.27228424700014],[-101.59605872299993,70.260931708],[-101.62564042899989,70.24384186400015],[-101.64391028599995,70.22483958500014],[-101.64745032499985,70.20441315300015],[-101.63927161399992,70.18390534100003],[-101.62222245999988,70.16437409100003],[-101.58226477799992,70.132513739],[-101.55528723899997,70.11782461100002],[-101.52944902299994,70.11286041900014],[-101.52065995999989,70.11530182500009],[-101.50926673099991,70.12368398600013],[-101.50218665299987,70.12661367400007],[-101.49014238199995,70.1281598980001],[-101.42048092399996,70.12750885600013],[-101.40074622299993,70.13434479400009],[-101.39232337099989,70.15045807500015],[-101.37425696499987,70.17690664300012],[-101.33275305899987,70.17157623900006],[-101.25511633999992,70.14020416900001],[-101.23940995999988,70.13800690300003],[-101.22931881399991,70.13934967700011],[-101.20791581899995,70.14704010600006],[-101.15953528599994,70.15387604400014],[-101.14317786399992,70.16038646000005],[-101.12682044199993,70.17157623900006],[-101.11839758999989,70.18427155200011],[-101.1260473299999,70.19546133000013],[-101.09923255099991,70.20050690300017],[-101.06069902299993,70.19611237200009],[-101.02228756399992,70.18622467700008],[-100.99571692599996,70.1749535180001],[-100.98009192599987,70.16111888199998],[-100.97630774599986,70.14740631700006],[-100.98033606699993,70.13198476800012],[-100.9942113919999,70.09808991100009],[-100.99571692599996,70.08783600500006],[-100.99010169199997,70.07827383000016],[-100.9484757149999,70.04254791900003],[-100.92674719999991,70.016750393],[-100.93228105399993,70.01593659100007],[-100.94725501199989,70.01048411700005],[-100.93415279899992,69.9945742860001],[-100.92853756399991,69.98468659100003],[-100.92674719999991,69.97573476800008],[-100.93346106699988,69.96238841399999],[-100.95604407499984,69.94961172100012],[-100.96092688699991,69.93846263200011],[-100.95885169199988,69.92487213700015],[-100.95262610599993,69.91766998900012],[-100.94176184799996,69.914780992],[-100.92613684799997,69.91425202000012],[-100.91014563699987,69.91160716400013],[-100.90119381399985,69.90485260600009],[-100.89460201699985,69.89606354400003],[-100.8858536449999,69.88694896000013],[-100.88963782499992,69.87099844000012],[-100.87218176999995,69.80780670800006],[-100.87828528599992,69.78294505400011],[-100.89464270699996,69.76113515800016],[-100.91856848899992,69.74640534100013],[-100.94725501199989,69.74298737200014],[-100.94725501199989,69.73615143400004],[-100.9199926419999,69.71971263200014],[-100.92511959499991,69.69969310100007],[-100.96434485599993,69.66445547100012],[-100.97801673099987,69.663234768],[-101.04967200399987,69.66787344000012],[-101.07701575399994,69.66038646000008],[-101.09211178299994,69.66103750200001],[-101.11172441299992,69.66787344000012],[-101.13695227799988,69.68109772300006],[-101.15298417899987,69.69220612200012],[-101.15908769399995,69.69041575700011],[-101.16295325399996,69.68500397300005],[-101.16698157499994,69.68154531500006],[-101.25511633999992,69.66787344000012],[-101.29478919199995,69.67047760600003],[-101.32852128799995,69.67938873900006],[-101.35651607999996,69.69619375200007],[-101.37865149599995,69.72247955900009],[-101.37840735599991,69.73200104400009],[-101.43016516799993,69.76683177300013],[-101.46491451699988,69.824896552],[-101.47154700399994,69.83226146],[-101.45767167899996,69.84910716400002],[-101.4264216789999,69.87954336100013],[-101.42568925699996,69.90106842700008],[-101.43854732999989,69.90924713700018],[-101.45738684799993,69.90615469],[-101.4748429029999,69.89378489800005],[-101.55288652299993,69.79710521000011],[-101.56427975199988,69.76683177300013],[-101.5694473949999,69.74567291900003],[-101.58267167899992,69.73065827],[-101.63805091099992,69.69554271000014],[-101.65160071499987,69.68219635600002],[-101.67345130099993,69.64671458500013],[-101.68382727799992,69.65570709800015],[-101.68757076699987,69.66474030200006],[-101.68936113199995,69.67352936400012],[-101.69395911399988,69.68154531500006],[-101.70677649599992,69.69122955900002],[-101.85065670499992,69.7471377620001],[-101.86522376199994,69.74982330900015],[-101.88093014199991,69.74502187700007],[-101.90005449099989,69.73615143400004],[-101.91978919199991,69.73163483300009],[-101.93724524599986,69.73956940300006],[-101.98155676999993,69.77460358300014],[-102.00340735599987,69.78705475500006],[-102.01268469999991,69.7941755230001],[-102.02208411399994,69.80394114800004],[-102.02476966099991,69.80857982],[-102.02293860599985,69.82176341400013],[-102.02969316299989,69.84723541900003],[-102.04670162699995,69.85529205900015],[-102.06899980399989,69.85162995000012],[-102.1094864569999,69.83478424700012],[-102.1241755849999,69.83209870000003],[-102.15697180899993,69.83234284100017],[-102.16454016799987,69.83608633000001],[-102.17316646999988,69.8447940120001],[-102.17857825399993,69.85488515800016],[-102.17686926999993,69.86273834800012],[-102.16722571499984,69.88320547100001],[-102.17943274599993,69.90176015800002],[-102.20238196499992,69.91526927299999],[-102.2249649729999,69.92047760600018],[-102.2530004549999,69.91250234600012],[-102.25430253799989,69.8935000670001],[-102.23582923099988,69.85285065300003],[-102.29621334499988,69.85317617400014],[-102.32437089799988,69.847398179],[-102.34569251199984,69.83234284100017],[-102.31798255099994,69.81830475500011],[-102.30589758999987,69.80882396000011],[-102.29723059799996,69.79759349200009],[-102.30719967399996,69.78705475500006],[-102.32103430899987,69.77586497600005],[-102.33592688699991,69.7670352230001],[-102.34878495999993,69.76341380400011],[-102.37401282499988,69.76434967700011],[-102.3761287099999,69.76801178600006],[-102.36888587099989,69.77631256700015],[-102.36611894399991,69.790757554],[-102.3727107409999,69.80223216400005],[-102.38426673099993,69.81354401200004],[-102.39537512899994,69.81761302299999],[-102.40029863199992,69.80780670800006],[-102.40074622299991,69.79279205900004],[-102.40371660099991,69.78375885600012],[-102.41169186099988,69.77912018400009],[-102.42699133999992,69.77708567900005],[-102.43321692599989,69.77903880400011],[-102.45262610599991,69.78831614800008],[-102.46178137899989,69.790757554],[-102.47313391799986,69.79120514499999],[-102.48228919199994,69.79022858300011],[-102.49046790299985,69.78693268400018],[-102.52525794199988,69.76032135600003],[-102.53941809799991,69.75446198100008],[-102.58226477799991,69.74347565300003],[-102.59211178299984,69.74298737200014],[-102.60236568899985,69.74526601800012],[-102.62092037699993,69.7540550800001],[-102.64395097599993,69.7604841170001],[-102.65925045499989,69.76797109600007],[-102.6725968089999,69.76943594000012],[-102.68150794199994,69.75600820500013],[-102.61510169199991,69.71426015800002],[-102.5783585279999,69.69794342700008],[-102.48717200399992,69.69065989800006],[-102.49217688699986,69.66840241100012],[-102.50755774599989,69.63548411700013],[-102.49522864499994,69.59955475500006],[-102.50121008999987,69.595404364],[-102.50552324099996,69.59121328300007],[-102.51016191299989,69.58771393400009],[-102.51699785099991,69.58535390800013],[-102.51488196499989,69.58071523600002],[-102.51162675699995,69.56879303600006],[-102.50959225199992,69.56419505400014],[-102.53844153599994,69.5548363300001],[-102.57022050699987,69.548732815],[-102.63487708199993,69.54433828300004],[-102.69408118399993,69.55149974200006],[-102.71499589799988,69.55117422100012],[-102.78384355399994,69.53685130400005],[-102.81794186099985,69.53872304900011],[-102.8735245429999,69.55914948100009],[-103.01081295499992,69.581244208],[-103.02350826699988,69.59210846600017],[-103.0878800119999,69.59601471600017],[-103.1573787099999,69.61688873900012],[-103.2217504549999,69.64777252800009],[-103.27049719999991,69.68154531500006],[-103.29759680899987,69.69452545800006],[-103.32176673099987,69.68976471600017],[-103.34752356699991,69.68081289300012],[-103.37975012899993,69.68154531500006],[-103.38780676999988,69.68671295800009],[-103.3951309889999,69.69513580900004],[-103.40489661399992,69.70355866100009],[-103.42072506399987,69.70880768400013],[-103.43659420499989,69.708156643],[-103.48961341099992,69.69452545800006],[-103.47887122299991,69.67658112200003],[-103.4844864569999,69.65884023600005],[-103.5100805329999,69.61945221600014],[-103.44766191299993,69.61318594],[-103.32819576699988,69.57355377800015],[-103.22077389199984,69.55548737200014],[-103.18838456899994,69.53302643400004],[-103.16539466099995,69.502142645],[-103.13609778599992,69.4498558610001],[-103.12555904899996,69.439886786],[-103.11286373599991,69.44163646],[-103.09544837099992,69.4580752620001],[-103.09316972599987,69.47443268400009],[-103.09772701699991,69.49607982],[-103.09850012899992,69.515082098],[-103.08519446499992,69.52326080900009],[-103.05894934799989,69.52155182500009],[-103.0411270819999,69.51532623900015],[-103.0281876289999,69.50275299700014],[-103.01667232999996,69.48224518400008],[-103.01427161399992,69.4740257830001],[-103.01260331899991,69.45612213700004],[-103.01040605399992,69.44814687700008],[-103.00548255099996,69.44110748900012],[-102.99388587099995,69.43012116100006],[-102.9893285799999,69.420843817],[-103.00055904899989,69.40957265800002],[-103.02472896999991,69.37787506700013],[-103.03709876199994,69.36619700700005],[-103.01927649599988,69.34373607000005],[-103.01634680899986,69.32623932500009],[-103.02350826699988,69.28025950700014],[-103.03831946499986,69.25739166900003],[-103.0727432929999,69.24042389500006],[-103.19493567599991,69.20954010600009],[-103.20840410099989,69.20111725500004],[-103.21397864499991,69.19253164300012],[-103.21336829299986,69.18675364799999],[-103.21031653599995,69.180609442],[-103.20840410099989,69.17072174700007],[-103.21157792899986,69.1594098980001],[-103.21715247299997,69.14964427300008],[-103.2192276679999,69.14020416900013],[-103.2121475899999,69.12970612200009],[-103.1980688139999,69.12030670800006],[-103.18346106699997,69.11587148600007],[-103.16856848899992,69.1175804710001],[-103.15379798099994,69.126654364],[-103.14952551999993,69.13401927299999],[-103.14146887899989,69.15668366100014],[-103.13337154899995,69.16693756700006],[-103.12173417899996,69.17426178600006],[-103.08495032499987,69.19155508000007],[-103.04621334499984,69.20246002800006],[-103.02208411399992,69.22093333500008],[-102.94835364499988,69.29791901200015],[-102.93175208199992,69.30609772300006],[-102.89806067599991,69.31830475500014],[-102.88288326699984,69.32831452000012],[-102.87889563699986,69.33869049700003],[-102.8794652989999,69.35114166900003],[-102.87755286399995,69.36176178600009],[-102.86644446499993,69.36619700700005],[-102.86095130099991,69.36725495000012],[-102.85391191299993,69.36994049700009],[-102.84788977799992,69.37327708500011],[-102.84532630099993,69.3764102230001],[-102.84292558499989,69.38471100500006],[-102.83678137899989,69.38686758000007],[-102.70518958199993,69.3901227890001],[-102.66714433499996,69.40412018400018],[-102.62962805899993,69.41315338700018],[-102.54735266799989,69.413519598],[-102.51699785099991,69.42829010600018],[-102.4837133449999,69.47113678600006],[-102.46422278599992,69.48065827000006],[-102.38442949099988,69.48305898600002],[-102.34569251199984,69.48969147300006],[-102.30382239499994,69.501654364],[-102.28258216099995,69.50364817900005],[-102.2179255849999,69.49030182500003],[-102.08462480399987,69.48969147300006],[-102.05479895699995,69.48444245000009],[-101.96833248599988,69.44135163000006],[-101.93907630099994,69.42064036700005],[-101.94664466099991,69.40591054900005],[-102.03872636599989,69.35740794499999],[-102.11945553299991,69.36652252800017],[-102.16006425699992,69.35936107000013],[-102.17316646999988,69.35252513200011],[-102.16755123599987,69.34511953300012],[-102.17316646999988,69.34511953300012],[-102.17170162699992,69.32640208500005],[-102.17316646999988,69.31842682500012],[-102.16006425699992,69.31867096600013],[-102.13817298099988,69.32807038000009],[-102.12596594999991,69.3314476580001],[-102.11025956899994,69.33295319200015],[-102.10545813699986,69.3314476580001],[-102.10313880099989,69.32566966400013],[-102.0948787099999,69.31468333500008],[-102.07160396999988,69.30239492400001],[-102.0481664699999,69.29669830900004],[-102.0378311839999,69.28803131700015],[-102.05394446499987,69.26654694200002],[-102.07559160099994,69.24725983300009],[-102.09080969999994,69.23997630400005],[-102.10728919199993,69.24510325700008],[-102.13280188699991,69.263128973],[-102.15566972599993,69.27606842700011],[-102.18272864499995,69.28245677300013],[-102.21056067599993,69.27928294500006],[-102.23582923099988,69.263128973],[-102.22394771999993,69.25779857000005],[-102.21654212099993,69.24994538000006],[-102.21519934799993,69.24013906500012],[-102.22154700399987,69.22907135600009],[-102.20881100199993,69.22410716400005],[-102.17983964799991,69.21662018400015],[-102.1666153639999,69.21539948100015],[-102.15794837099989,69.212591864],[-102.13955644399995,69.19489166900007],[-102.1168513659999,69.186224677],[-102.08983313699987,69.18244049700017],[-102.0672094389999,69.18915436400012],[-102.0576879549999,69.21198151200004],[-102.04698645699997,69.229437567],[-102.02232825399989,69.24262116100006],[-101.99469967399996,69.25161367400007],[-101.94888261599988,69.26121653900005],[-101.92747962099993,69.26154205900015],[-101.90855872299991,69.25482819200012],[-101.88975989499995,69.23895905199998],[-101.85399329299993,69.2194684920001],[-101.80939693899985,69.20897044500005],[-101.77155514199991,69.19379303600006],[-101.75601152299991,69.16014232000005],[-101.76838131399987,69.12295156500015],[-101.79735266799986,69.09369538000011],[-101.8658748039999,69.044094143],[-101.85265051999995,69.03534577000012],[-101.83438066299989,69.02789948100003],[-101.81822669199993,69.01911041900017],[-101.81126868399993,69.00625234600014],[-101.82209225199992,68.99599844000012],[-101.84679114499991,68.98834870000009],[-101.96450761599996,68.96963125200013],[-101.9903051419999,68.97337474200008],[-102.00706946499992,68.98159414300007],[-102.02171790299991,68.991400458],[-102.03746497299989,68.99957916900009],[-102.05736243399988,69.00311920800007],[-102.07730058499996,68.99970123900006],[-102.09439042899992,68.99103424700017],[-102.12596594999991,68.96832916900001],[-102.14915930899993,68.95624420800011],[-102.16734778599992,68.95302969000006],[-102.2141007149999,68.95473867400007],[-102.3109024729999,68.940375067],[-102.33653723899997,68.94481028899999],[-102.38243567599994,68.95783112200014],[-102.40713456899994,68.95473867400007],[-102.39806067599993,68.94017161700005],[-102.38605709499991,68.92739492400001],[-102.39565995999989,68.91693756700012],[-102.40827389199987,68.90802643400018],[-102.42174231699995,68.90180084800012],[-102.4501033189999,68.89638906500006],[-102.46275794199995,68.88898346600008],[-102.47476152299988,68.88011302300004],[-102.48908443899987,68.87274811400013],[-102.5230606759999,68.86554596600003],[-102.63487708199993,68.86591217700011],[-102.64415442599989,68.868597723],[-102.69749915299994,68.891546942],[-102.73033606699994,68.89850495000009],[-102.74913489499987,68.89948151200015],[-102.76431230399987,68.89207591399999],[-102.75169837099989,68.87571849200006],[-102.72598222599994,68.85952383000001],[-102.7019750639999,68.85228099199999],[-102.7140193349999,68.8397484400001],[-102.7365616529999,68.83348216400005],[-102.82917232999996,68.83038971600014],[-102.84878495999992,68.82648346600014],[-102.91706295499992,68.80426666900009],[-102.9658910799999,68.79865143400009],[-103.01463782499985,68.801743882],[-103.07115637899994,68.81834544500005],[-103.11221269399995,68.8249372420001],[-103.12067623599991,68.82855866100009],[-103.1314998039999,68.835394598],[-103.13951575399994,68.83860911700005],[-103.16356360599987,68.84296295800014],[-103.33136959499986,68.83120351800005],[-103.34801184799989,68.82428620000015],[-103.36119544199994,68.81346263200008],[-103.36485755099989,68.80133698100018],[-103.35309811099991,68.79022858300014],[-103.38316809799996,68.78229401200018],[-103.41543535099987,68.78327057500015],[-103.44725501199993,68.78949616100012],[-103.5009659499999,68.80621979400013],[-103.54621334499993,68.82713450700003],[-103.56810462099986,68.83120351800005],[-103.58104407499985,68.82904694200006],[-103.6059464179999,68.81964752800003],[-103.61929277299991,68.81753164300012],[-103.7187393869999,68.82648346600014],[-103.76398678299984,68.83860911700005],[-103.78197180899987,68.84088776200012],[-103.83218339799994,68.83860911700005],[-103.86489824099986,68.84284088700015],[-103.92756100199996,68.861721096],[-103.9619848299999,68.86591217700011],[-104.06550045499995,68.8565127620001],[-104.09972083199993,68.85846588700015],[-104.19782467399992,68.88129303600006],[-104.22325598899992,68.893255927],[-104.23355058499995,68.90127187700013],[-104.23656165299987,68.90607330900004],[-104.23802649599992,68.91144440300009],[-104.24779212099985,68.92910390800002],[-104.24962317599993,68.93569570500007],[-104.25357011599992,68.94171784100008],[-104.26423092399995,68.94790273600016],[-104.30524654899995,68.940375067],[-104.29796301999994,68.92987702000012],[-104.27749589799987,68.91787344],[-104.27041581899992,68.90692780200014],[-104.30394446499986,68.90875885600012],[-104.36656653599988,68.929144598],[-104.4468481109999,68.94155508000004],[-104.45909583199996,68.93732330900009],[-104.46373450399989,68.93065013200005],[-104.4683731759999,68.9170596370001],[-104.4731339179999,68.91034577000015],[-104.52961178299984,68.87498607000013],[-104.59361731699993,68.86448802300005],[-104.8583267894999,68.88045888899997],[-105.12303626199991,68.89642975500006],[-105.1555069649999,68.90363190300009],[-105.19701087099989,68.92975495000015],[-105.22516842399996,68.94183991100006],[-105.25479081899992,68.95111725500011],[-105.27782141799989,68.95473867400007],[-105.24738521999984,68.95661041900006],[-105.2219945949999,68.96303945500016],[-105.19977779899995,68.97459544499999],[-105.1788223949999,68.99225495000007],[-105.14659583199995,69.00193919500005],[-105.06484941299988,68.987453518],[-105.03136145699992,69.00311920800007],[-105.04588782499987,69.01414622600011],[-105.05186926999988,69.01679108300011],[-104.96483313699991,69.030259507],[-104.91706295499996,69.0479190120001],[-104.91844641799986,69.075140692],[-104.94098873599984,69.08608633000007],[-104.97252356699994,69.09341054900007],[-105.0807185539999,69.10618724200013],[-105.10130774599993,69.10521067900005],[-105.12702389199988,69.09186432500003],[-105.10362708199989,69.09170156500006],[-105.07730058499988,69.08706289300015],[-105.05382239499993,69.07794830900015],[-105.03888912699998,69.06460195500013],[-105.21393795499996,69.08051178600006],[-105.25715084499987,69.094224351],[-105.45787512899992,69.10114166900007],[-105.46886145699997,69.10614655200014],[-105.49132239499988,69.126654364],[-105.50389563699987,69.13515859600004],[-105.53502356699995,69.15106842700013],[-105.54845130099996,69.15395742400007],[-105.88585364499997,69.17645905200006],[-105.92886308499992,69.16693756700006],[-105.96792558499989,69.14960358300009],[-105.98412024599993,69.14712148600013],[-106.00503495999989,69.14842357000005],[-106.07290605399989,69.16014232000005],[-106.20396887899993,69.1498884140001],[-106.3294978509999,69.1784528670001],[-106.41209876199989,69.18805573100018],[-106.41698157499987,69.19350820500001],[-106.41519120999988,69.2057152360001],[-106.40868079299987,69.22565338700018],[-106.40192623599985,69.23700592700006],[-106.38609778599991,69.24603913000006],[-106.2945450509999,69.27171458500011],[-106.2742406889999,69.28807200700014],[-106.28209387899997,69.31468333500008],[-106.29076087099986,69.32074616100006],[-106.30093339799991,69.32501862200009],[-106.30947831899992,69.331000067],[-106.31309973899988,69.34198639500005],[-106.31993567599991,69.38605377800015],[-106.31989498599984,69.39728424700013],[-106.31753495999988,69.40131256700012],[-106.31981360599985,69.40473053600012],[-106.33360755099994,69.41400788],[-106.35094153599994,69.422512111],[-106.37254798099994,69.42890045800014],[-106.39513098899991,69.4330508480001],[-106.4155167309999,69.43451569200015],[-106.44050045499992,69.44122955900009],[-106.51170813699993,69.48969147300006],[-106.54625403599994,69.500433661],[-106.58389238199993,69.50360748900005],[-106.62051347599996,69.49721914300012],[-106.66539466099997,69.47036367400011],[-106.69538326699984,69.45856354400017],[-106.70665442599991,69.45123932500017],[-106.7145076159999,69.447699286],[-106.7331436839999,69.44830963700007],[-106.74107825399994,69.44472890800007],[-106.74421139199984,69.43915436400006],[-106.7442520819999,69.43325429900013],[-106.74356035099989,69.42715078300013],[-106.74596106699993,69.41063060100008],[-106.74543209499986,69.3993187520001],[-106.74616451699988,69.38849518400009],[-106.75133216099988,69.379868882],[-106.76707923099994,69.375921942],[-106.92121334499987,69.370835679],[-106.96344967399989,69.36273834800014],[-106.99087480399994,69.34511953300012],[-106.9927465489999,69.32721588700015],[-106.95905514199991,69.29682038000001],[-106.94713294199997,69.26373932500015],[-106.94041907499992,69.25421784100017],[-106.92638098899997,69.23895905199998],[-106.92593339799988,69.22744375200006],[-106.93736731699993,69.21564362200009],[-106.95270748599988,69.20604075700011],[-106.96422278599991,69.20111725500004],[-107.0261124339999,69.197943427],[-107.03929602799994,69.18805573100018],[-107.03575598899994,69.17739492400013],[-107.0278214179999,69.16229889500012],[-107.02733313699991,69.15228913000006],[-107.04580644399994,69.15704987200014],[-107.1082250639999,69.16372304900001],[-107.1686905589999,69.13686758000004],[-107.27208411399997,69.05776601800012],[-107.33482825399994,69.02558014500009],[-107.47496497299991,68.99290599200005],[-107.88158118399991,68.95477936400006],[-107.9412328769999,68.94110748900012],[-108.2316788399999,68.93280670800006],[-108.32721920499998,68.95209381700009],[-108.53945878799996,68.94696686400005],[-108.56745357999989,68.93423086100002],[-108.54539954299989,68.92145416900017],[-108.5367325509999,68.9147809920001],[-108.53331458199989,68.90692780200014],[-108.53844153599991,68.89541250200001],[-108.55028235599987,68.88434479400014],[-108.56480872299989,68.87596263200001],[-108.60558020699996,68.86701080900018],[-108.66832434799994,68.83759186400009],[-108.80280514199991,68.79385000200001],[-108.86607825399997,68.78400299700009],[-108.92223059799989,68.75364817900011],[-108.95164954299987,68.7424177100001],[-109.02855383999989,68.72675202000012],[-109.34740149599989,68.69806549700017],[-109.62462317599991,68.64166901200004],[-109.78368079299992,68.63255442900014],[-109.90379798099993,68.63873932500009],[-109.98639889199991,68.62518952000012],[-110.15835527299991,68.63275788],[-110.22866777299994,68.6278750670001],[-110.29426021999987,68.60521067900005],[-110.34703528599995,68.58022695500013],[-110.37608801999991,68.57636139500012],[-110.40029863199992,68.58820221600008],[-110.42145748599984,68.60443756700015],[-110.44456946499987,68.61131419500005],[-110.56944739499988,68.61908600500004],[-110.60513261599992,68.61692942900005],[-110.6579483709999,68.589544989],[-110.69347083199996,68.58535390800016],[-110.76036536399988,68.58478424700009],[-110.98009192599994,68.54840729400011],[-111.04157467399992,68.56427643400004],[-111.02586829299986,68.57160065300003],[-111.00389563699993,68.5782738300001],[-110.84520423099985,68.5951602230001],[-110.8489477199999,68.60272858300014],[-110.86750240799991,68.60993073100015],[-110.89069576699984,68.61212799700014],[-111.0196020169999,68.60293203300009],[-111.08250891799995,68.58478424700009],[-111.10936438699993,68.58071523600013],[-111.36241614499997,68.58738841399999],[-111.41828365799985,68.57855866100012],[-111.37100175699989,68.56232330900009],[-111.25674394399992,68.5582949890001],[-111.2053930329999,68.5506859400001],[-111.25104732999993,68.51968008000016],[-111.34894771999988,68.52057526200007],[-111.5312393869999,68.54376862200009],[-111.88921057849991,68.5298119160001],[-112.24718176999991,68.51585521000014],[-112.26463782499988,68.5186221370001],[-112.28038489499993,68.52350495000016],[-112.29670162699995,68.52553945500001],[-112.3336482409999,68.51203034100003],[-112.3522843089999,68.5073102890001],[-112.3915095689999,68.50287506700015],[-112.58332271999993,68.50967031500006],[-112.6024063789999,68.50775788000011],[-112.61571204299992,68.50287506700015],[-112.65111243399993,68.47833893400004],[-112.65843665299994,68.47492096600003],[-112.67003333199993,68.47304922100015],[-112.69465084499987,68.47435130400005],[-112.74901282499988,68.46308014500006],[-112.8980199859999,68.47492096600003],[-113.24400794199993,68.45441315300015],[-113.28302975199988,68.46059804900013],[-113.30308997299994,68.47492096600003],[-113.29808508999992,68.49103424700009],[-113.26170813699993,68.50287506700015],[-113.2117406889999,68.50446198100018],[-113.06281490799986,68.48859284100013],[-113.03913326699984,68.49494049700007],[-113.05162512899994,68.50958893400009],[-113.10342363199995,68.53701406500015],[-113.14150956899994,68.54840729400011],[-113.2242325509999,68.56191640800006],[-113.2817276679999,68.58169179900001],[-113.35049394399988,68.59153880400011],[-113.36221269399996,68.59760163000011],[-113.38678951699988,68.61570872600014],[-113.39517167899993,68.61953359600015],[-113.41978919199993,68.62750885600009],[-113.44391842399996,68.64655182500009],[-113.45482337099992,68.66893138200011],[-113.4398494129999,68.687201239],[-113.45201575399987,68.70160553600006],[-113.4722387359999,68.71308014499999],[-113.55077063699993,68.74384186400009],[-113.5655818349999,68.75299713700015],[-113.58043372299996,68.76658763200011],[-113.59727942599996,68.77765534100014],[-113.6386612619999,68.79022858300014],[-113.6555069649999,68.80048248900006],[-113.66812089799988,68.8153750670001],[-113.6714981759999,68.82754140800002],[-113.66173255099993,68.83567942900011],[-113.6347550119999,68.83860911700005],[-113.6192113919999,68.84540436400009],[-113.63320878799995,68.86029694200012],[-113.6691788399999,68.88239166900001],[-113.6783748039999,68.8984235700001],[-113.67210852799985,68.90989817900005],[-113.63784745999989,68.92739492400001],[-113.61290442599994,68.94537995000003],[-113.59349524599995,68.95107656500012],[-113.58067786399991,68.95815664300008],[-113.57188880099994,68.96515534100014],[-113.57359778599995,68.96832916900001],[-113.58397376199994,68.97687409100013],[-113.58299719999988,68.99628327000006],[-113.57652747299997,69.01699453300007],[-113.57022050699993,69.02977122600011],[-113.63784745999989,69.02977122600011],[-113.62490800699987,69.04287344000006],[-113.60045325399993,69.04657623900012],[-113.54971269399987,69.044094143],[-113.56924394399994,69.05703359600001],[-113.63731848899991,69.07636139500012],[-113.65217037699996,69.08844635600003],[-113.65416419199991,69.094631252],[-113.66331946499989,69.11090729400003],[-113.6658422519999,69.11920807500012],[-113.66734778599995,69.12124258000011],[-113.67007402299993,69.12295156500015],[-113.67251542899996,69.126166083],[-113.67259680899993,69.13279857000008],[-113.66771399599988,69.13214752800012],[-113.63784745999989,69.139634507],[-113.69225012899987,69.15558502800008],[-113.70055091099997,69.16351959800005],[-113.69709225199995,69.17230866100012],[-113.69074459499984,69.17682526200018],[-113.68736731699993,69.18268463700012],[-113.69310462099989,69.19489166900007],[-113.67174231699994,69.19432200700011],[-113.63369706899994,69.18341705900015],[-113.50877844999985,69.174465236],[-113.54112708199996,69.19074127800015],[-113.58397376199994,69.20123932500002],[-113.88508053299985,69.23114655200003],[-113.89696204299992,69.23672109600001],[-113.91966712099986,69.25291575700008],[-113.94448808499992,69.25893789300005],[-114.02269446499992,69.24949778900007],[-114.13215084499988,69.2506371110001],[-114.20474199099989,69.26634349200008],[-114.23810787699996,69.280462958],[-114.25479081899991,69.28367747600005],[-114.39728756399991,69.28815338700012],[-114.85570227799992,69.25287506700009],[-114.89972896999986,69.263128973],[-114.92650305899986,69.27753327000006],[-114.93993079299995,69.28196849200005],[-115.00645911399995,69.28461334800012],[-115.02940833199993,69.28188711100016],[-115.04678300699992,69.27338288000011],[-115.07762610599988,69.25413646],[-115.1125382149999,69.24518463700015],[-115.18895423099991,69.24266185100005],[-115.58189856699988,69.27142975450012],[-115.97484290299992,69.30019765800004],[-115.98932857999989,69.30585358300011],[-116.0026749339999,69.31354401200004],[-116.01292883999992,69.32184479400003],[-116.02969316299995,69.33087799700003],[-116.05357825399992,69.33600495000003],[-116.1457413399999,69.34105052300008],[-116.43163001199991,69.40371328300007],[-116.5276993479999,69.41388580900012],[-116.6326798169999,69.46181875200004],[-116.6214493479999,69.47695547100004],[-116.60106360599991,69.48533763199998],[-116.55760657499988,69.49591705900004],[-116.57237708199995,69.50641510600008],[-116.5889786449999,69.51365794500013],[-116.60358639199983,69.52228424700003],[-116.61221269399992,69.53685130400005],[-116.58641516799992,69.54417552300008],[-116.5830785799999,69.55402252800009],[-116.59609941299995,69.56395091399999],[-116.61961829299993,69.5716820330001],[-116.76305091099992,69.57786692900008],[-116.74986731699987,69.5682640650001],[-116.70840410099987,69.55117422100012],[-116.73289954299992,69.54376862200014],[-116.76085364499993,69.55011627800009],[-116.81143144399994,69.57477448100018],[-116.90562903599994,69.59259674700014],[-116.92813066299995,69.60578034100011],[-116.86961829299987,69.62042877800012],[-116.84813391799993,69.63279857000005],[-116.85582434799997,69.64765045800011],[-116.85924231699997,69.654201565],[-116.87246660099991,69.66034577000009],[-116.92072506399985,69.66787344000012],[-116.96670488199989,69.68545156500006],[-117.05711829299989,69.694728908],[-117.09740149599986,69.70429108300003],[-117.14362545499986,69.73187897300012],[-117.2108455069999,69.7526309270001],[-117.23599199099988,69.75600820500013],[-117.25206458199996,69.76410553600006],[-117.26512610599994,69.78253815300009],[-117.27379309799993,69.802435614],[-117.27696692599989,69.81492747600011],[-117.28368079299995,69.82941315300015],[-117.32876542899992,69.86957428600006],[-117.3672582669999,69.916937567],[-117.38121497299996,69.95123932500015],[-117.40029863199996,69.96678294500008],[-117.4420466789999,69.98940664300012],[-117.4144180979999,70.01593659100007],[-117.38707434799991,70.033677476],[-117.35806230399993,70.04645416900001],[-117.29967200399994,70.05658600500009],[-117.19505774599988,70.09243398600007],[-116.9650772779999,70.12905508000001],[-116.74351966099995,70.14590078300002],[-116.51146399599988,70.16339752800015],[-116.03270423099985,70.22028229400009],[-115.63707434799991,70.247992255],[-115.23350989499991,70.263861395],[-115.05138098899994,70.28021881700012],[-114.76268469999987,70.29148997600011],[-114.50942949099988,70.31525299700003],[-114.1847224599999,70.31574127800009],[-114.03844153599997,70.28123607],[-113.64268958199996,70.26239655200006],[-113.47687740799982,70.28359609600012],[-113.21963456899996,70.25991445500004],[-112.99339758999992,70.23139069200012],[-112.96690833199995,70.23647695500013],[-112.98232988199989,70.24725983300006],[-112.98741614499991,70.25006745000009],[-112.96467037699996,70.25336334800012],[-112.86449133999986,70.24384186400015],[-112.83055579299989,70.2315127620001],[-112.58625240799984,70.20001862200009],[-112.55085201699984,70.200384833],[-112.52122962099989,70.20848216400013],[-112.53482011599993,70.21507396],[-112.58332271999993,70.22211334800006],[-112.55866451699991,70.23920319200012],[-112.52696692599996,70.24518463700004],[-112.46349036399995,70.24384186400015],[-112.4495336579999,70.24160390800014],[-112.41828365799991,70.23183828300002],[-112.40176347599993,70.22955963700007],[-112.35802161399995,70.23615143400004],[-112.34312903599991,70.23647695500013],[-112.34312903599991,70.24384186400015],[-112.3915095689999,70.25006745000009],[-112.37413489499993,70.26166413000011],[-112.34235592399988,70.26707591400007],[-112.16978919199993,70.26740143400009],[-112.13760331899996,70.27732981999998],[-112.27090410099993,70.28436920800006],[-112.30894934799991,70.29783763200005],[-112.26089433499993,70.30931224199999],[-111.9374080069999,70.26365794500005],[-111.8371475899999,70.27350495000017],[-111.71637936099987,70.26186758000007],[-111.63752193899991,70.28058502800003],[-111.54865475199996,70.26992422100001],[-111.52501380099994,70.27147044500005],[-111.46812903599991,70.28229401200002],[-111.4456274079999,70.29043203300016],[-111.47838294199991,70.30011627800003],[-111.56094316299992,70.29511139500009],[-111.5895889959999,70.31216054900013],[-111.56346594999994,70.31793854400009],[-111.51158606699993,70.32387929900003],[-111.48656165299994,70.33197663000006],[-111.51561438699991,70.35236237200003],[-111.56680253799996,70.35993073100018],[-111.80882727799987,70.35211823100009],[-111.87657630099997,70.36737702000006],[-111.96426347599989,70.37457916900009],[-111.9810684889999,70.37909577000015],[-112.01414954299995,70.39411041900017],[-112.05671139199988,70.40668366100006],[-112.06940670499995,70.41453685100005],[-112.07412675699996,70.4211286480001],[-112.08039303299991,70.43748607000013],[-112.08617102799988,70.44525788000011],[-112.1223852199999,70.47980377800003],[-112.1439509759999,70.49388255399998],[-112.17243404899992,70.5033226580001],[-112.19513912699995,70.5058047550001],[-112.26085364499994,70.5033226580001],[-112.28148352799987,70.50556061400009],[-112.32945716099995,70.52383047100015],[-112.35216223899992,70.52460358300006],[-112.39256751199987,70.5114606790001],[-112.41197669199997,70.510728257],[-112.42414303299986,70.51748281500002],[-112.42943274599993,70.52659739800009],[-112.43716386599995,70.53461334800014],[-112.4564102859999,70.53807200700005],[-112.47215735599984,70.534857489],[-112.49998938699991,70.52073802300008],[-112.51748613199996,70.51764557500017],[-112.5379939439999,70.51862213700015],[-112.58409583199995,70.527085679],[-112.64073645699993,70.55060455900015],[-112.68219967399993,70.56207916900009],[-112.72533118399987,70.56915924700013],[-112.82062740799991,70.57420482],[-112.8460994129999,70.56989166900009],[-112.86656653599997,70.54319896000004],[-112.88825436099987,70.54726797100011],[-112.92589270699995,70.56537506700012],[-113.0535782539999,70.59023672100007],[-113.08665930899994,70.60976797100007],[-113.10594641799987,70.61847565300006],[-113.1309301419999,70.61627838700014],[-113.17918860599993,70.60635000200016],[-113.19302324099992,70.61017487200014],[-113.20482337099989,70.61945221600003],[-113.21068274599993,70.630764065],[-113.20710201699987,70.64052969000012],[-113.20710201699987,70.64793528900013],[-113.36266028599997,70.64736562700016],[-113.4125870429999,70.65412018400008],[-113.49071204299993,70.68183014500009],[-113.50304114499995,70.68378327000012],[-113.51500403599991,70.68146393400015],[-113.52033443899988,70.6764997420001],[-113.52163652299988,70.670111395],[-113.52232825399992,70.66347890800013],[-113.52550208199997,70.65753815300009],[-113.56135006399987,70.64313385600003],[-113.6000870429999,70.65086497600004],[-113.63829505099997,70.666205145],[-113.68716386599995,70.67780182500012],[-113.71959387899996,70.69188060100005],[-113.98839270699993,70.71621328300004],[-114.03636633999986,70.709377346],[-114.14443925699995,70.67251211100013],[-114.1830948559999,70.66779205900004],[-114.34675045499992,70.686509507],[-114.39732825399992,70.67963288],[-114.5062556629999,70.6445173200001],[-114.87340247299994,70.62783437700007],[-115.04356848899995,70.60415273600016],[-115.24144446499986,70.61107005400005],[-115.49559485599985,70.59951406500012],[-115.51235917899986,70.59634023600007],[-115.54588782499991,70.58222077000012],[-115.56069902299988,70.57904694200006],[-115.5809220039999,70.58014557500012],[-115.72891191299995,70.60639069200015],[-116.03856360599988,70.57916901200004],[-116.18748938699993,70.59804922100007],[-116.20767167899994,70.60724518400004],[-116.20421301999995,70.6161156270001],[-116.16714433499993,70.62002187700008],[-116.18976803299991,70.63385651200018],[-116.23338782499991,70.63971588700004],[-116.58332271999993,70.63328685100011],[-116.65021725199993,70.61322663000006],[-116.6828507149999,70.608303127],[-116.98863684799991,70.60248444200015],[-117.23599199099988,70.62002187700008],[-117.33055579299989,70.602687893],[-117.35265051999987,70.61318594000006],[-117.34520423099991,70.62002187700008],[-117.3740942049999,70.62872955900015],[-117.51341712099989,70.62002187700008],[-117.51748613199993,70.61806875200011],[-117.51732337099986,70.61371491100014],[-117.51602128799986,70.60907623900012],[-117.51716061099991,70.60635000200016],[-117.5344945949999,70.60252513200014],[-117.55060787699996,70.60187409100008],[-117.5854386059999,70.60635000200016],[-117.69782467399989,70.63564687700007],[-117.73582923099991,70.66242096600017],[-117.70897376199993,70.69513580900009],[-117.73387610599985,70.71344635600015],[-117.77061926999997,70.72894928600009],[-117.80899003799986,70.73956940300003],[-117.8737686839999,70.74827708500003],[-118.18683834499984,70.83942291900011],[-118.2747696609999,70.87840403899999],[-118.32176673099991,70.90680573100012],[-118.41104081899995,70.97455475500013],[-118.42149817599991,70.99054596600006],[-118.38646399599993,71.0222028670001],[-118.09223385299991,71.09629954650002],[-117.79800370999992,71.17039622600011],[-117.4749242829999,71.18549225500011],[-117.0953669909999,71.24380117400013],[-116.90005449099992,71.24017975500006],[-116.85285396999986,71.24827708499998],[-116.81826738199993,71.26430898600007],[-116.82355709499991,71.26577383000013],[-116.8331599599999,71.26972077000012],[-116.83873450399992,71.27045319200006],[-116.8063044909999,71.29092031500012],[-116.31322180899991,71.3506533870001],[-116.2687882149999,71.36391836100013],[-116.10342363199987,71.37665436400009],[-116.0777888659999,71.36733633000013],[-116.17398027299994,71.353664455],[-116.15367591099994,71.34699127800015],[-116.12686113199995,71.34625885600012],[-116.09972083199995,71.35008372600014],[-116.0506078769999,71.36395905200011],[-115.7646378249999,71.36766185100007],[-115.72891191299995,71.38715241100006],[-115.78726152299996,71.39423248900012],[-115.90392005099996,71.39350006700009],[-116.06631425699987,71.419826565],[-116.2057999339999,71.42621491100012],[-116.21495520699996,71.43561432500003],[-116.1902563139999,71.44452545800009],[-116.04771887899996,71.44464752800015],[-115.74201412699993,71.51068756700006],[-115.76252193899988,71.49701569200012],[-115.74941972599991,71.48480866100006],[-115.72960364499991,71.48371002800012],[-115.61266028599995,71.497951565],[-115.58433997299991,71.49017975500011],[-115.59801184799993,71.48403554900013],[-115.56786048099991,71.472113348],[-115.48912512899993,71.46747467700004],[-115.41901607999988,71.451849677],[-115.38654537699989,71.45897044500013],[-115.35545813699987,71.47052643400013],[-115.32428951699988,71.47654857000008],[-115.20661373599984,71.48322174700003],[-115.14688066299995,71.50462474200008],[-115.05675208199992,71.52496979400014],[-115.10912024599989,71.535589911],[-115.29698645699992,71.49701569200012],[-115.43032792899996,71.48944733300009],[-115.49767005099997,71.49412669500002],[-115.55699622299996,71.51068756700006],[-115.55699622299996,71.517523505],[-115.45466061099992,71.53119538000011],[-115.45466061099992,71.53864166900007],[-115.60802161399994,71.55536530200011],[-115.82359778599994,71.54816315300009],[-115.88695227799987,71.530462958],[-115.98106848899991,71.52753327000006],[-116.0449926419999,71.51471588700004],[-116.1361384759999,71.50897858300006],[-116.18488521999983,71.50031159100017],[-116.55280514199991,71.47919342700006],[-116.63463294199995,71.454779364],[-116.73232988199993,71.45514557500003],[-116.82095292899993,71.43256256700015],[-116.92210852799992,71.42743561400012],[-117.04824785099993,71.43740469000012],[-117.07184811099988,71.43219635600003],[-117.08800208199992,71.42633698100009],[-117.13084876199991,71.41669342700011],[-117.16730709499988,71.41299062700007],[-117.20539303299986,71.40363190300003],[-117.22573808499995,71.40143463700007],[-117.29019120999993,71.40497467700011],[-117.36782792899987,71.38833242400007],[-117.39024817599987,71.38715241100006],[-117.41364498599987,71.38890208500005],[-117.41722571499993,71.39447663000006],[-117.41152910099996,71.40403880400005],[-117.40318762899987,71.42914459800012],[-117.38475501199984,71.4444033870001],[-117.38060462099992,71.45233795800006],[-117.39354407499991,71.45954010600009],[-117.4761856759999,71.45604075700011],[-117.46361243399991,71.46527741100009],[-117.45783443899985,71.467718817],[-117.4488826159999,71.46971263200005],[-117.46760006399988,71.485052802],[-117.50055904899995,71.49575429900003],[-117.5366918609999,71.50202057500017],[-117.56493079299985,71.50385163000006],[-117.56151282499984,71.49957916900003],[-117.55955969999991,71.49628327],[-117.55671139199987,71.4933128930001],[-117.55064856699995,71.49017975500011],[-117.58145097599991,71.48078034100008],[-117.61278235599988,71.47654857000008],[-117.62962805899988,71.47223541900014],[-117.63158118399993,71.462591864],[-117.62246660099994,71.45294830900002],[-117.60655676999993,71.44863515800004],[-117.53433183499995,71.44867584800004],[-117.49828040299987,71.44098541900009],[-117.4830216139999,71.42133209800015],[-117.49160722599991,71.407660223],[-117.51138261599993,71.3920759140001],[-117.5340876939999,71.37938060100005],[-117.55134029899989,71.37417226800007],[-117.70897376199993,71.38715241100006],[-117.70152747299994,71.39398834800006],[-117.71397864499995,71.40350983300006],[-117.72789466099994,71.40444570500016],[-117.74168860599984,71.39931875200013],[-117.76805579299993,71.38019440300015],[-117.7825414699999,71.37543366100005],[-117.79954993399987,71.37409088700018],[-117.84072831899994,71.376166083],[-117.88011633999992,71.385158596],[-117.90103105399989,71.38715241100006],[-118.1619766919999,71.37897370000015],[-118.24315344999991,71.39337799700012],[-118.3088272779999,71.43219635600003],[-118.30825761599992,71.469916083],[-118.25275631399988,71.50242747599998],[-118.12730872299991,71.53864166900007],[-117.93150794199991,71.54547760600012],[-117.78355872299994,71.52887604400014],[-117.75739498599991,71.53864166900007],[-117.82062740799988,71.55158112200009],[-117.83934485599985,71.55849844],[-117.7629288399999,71.56049225500014],[-117.69220943899991,71.55394114800005],[-117.67210852799985,71.55874258000013],[-117.65371660099991,71.57217031500011],[-117.69151770699995,71.58242422100007],[-117.77285722599993,71.58588288000006],[-117.81135006399983,71.59324778900007],[-117.82518469999992,71.60370514500012],[-117.83185787699998,71.606878973],[-117.89683997299993,71.61591217700011],[-117.90746008999987,71.61554596600007],[-117.92121334499991,71.61310455900015],[-117.92747962099986,71.60956452000009],[-117.92910722599989,71.60488515800007],[-117.93195553299991,71.60101959800005],[-117.94172115799985,71.600043036],[-117.95612545499984,71.603461005],[-117.96629798099988,71.61098867400015],[-117.96930904899999,71.62173086100007],[-117.96222896999991,71.63483307500003],[-117.94343014199987,71.6431338560001],[-117.86656653599995,71.641058661],[-117.69530188699989,71.66836172100007],[-117.72150631399994,71.6777204450001],[-118.07632402299991,71.66498444200006],[-118.13182532499985,71.65033600500006],[-118.18195553299986,71.62738678600006],[-118.17389889199991,71.6078148460001],[-118.20494544199994,71.59845612200014],[-118.29771887899997,71.59125397300012],[-118.35602779899997,71.59324778900007],[-118.37490800699992,71.5904808610001],[-118.40933183499993,71.57977936400007],[-118.4289444649999,71.57953522300012],[-118.4219864569999,71.59056224199999],[-118.40074622299991,71.60358307500015],[-118.39419511599995,71.61310455900015],[-118.39826412699989,71.62482330900013],[-118.41417395699992,71.631984768],[-118.45567786399992,71.641058661],[-118.46129309799991,71.6530622420001],[-118.4886368479999,71.65843333500008],[-118.54503333199995,71.66152578300014],[-118.59068762899997,71.66986725500011],[-118.60651607999989,71.66836172100007],[-118.61636308499993,71.663519598],[-118.63263912699995,71.65053945500001],[-118.64403235599993,71.647894598],[-118.65778561099987,71.64956289300012],[-118.67747962099989,71.65802643400015],[-118.68903561099991,71.66152578300014],[-118.8329971999999,71.66290924700003],[-118.8631892569999,71.65892161700008],[-118.85350501199986,71.647894598],[-118.86583411399988,71.63841380400011],[-118.8792618479999,71.63043854400014],[-118.89342200399992,71.62433502800015],[-118.9081111319999,71.62055084800012],[-118.90143795499985,71.61054108300006],[-118.89146887899996,71.603420315],[-118.8671768869999,71.59324778900007],[-118.88857988199993,71.58295319200015],[-118.92715410099991,71.58934153900007],[-118.99689693899985,71.616848049],[-119.01162675699997,71.61994049700009],[-119.03237870999993,71.62197500200001],[-119.05089270699996,71.62677643400009],[-119.05894934799991,71.6379255230001],[-119.09308834499993,71.66836172100007],[-119.10334225199993,71.6885440120001],[-119.12059485599993,71.737005927],[-119.13125566299988,71.75433991100009],[-119.1376033189999,71.77435944200015],[-119.1293839179999,71.7979190120001],[-119.10732988199992,71.83966705900004],[-119.10020911399994,71.88153717700014],[-119.09276282499988,71.89874909100014],[-119.07603919199994,71.91885000200001],[-119.05431067599997,71.93528880400002],[-118.94786536399991,71.991888739],[-118.82502193899985,72.03864166900009],[-118.74754798099988,72.05320872600011],[-118.7163793609999,72.07298411700005],[-118.7098282539999,72.08161041900006],[-118.70665442599993,72.0912946640001],[-118.71003170499985,72.10053131700006],[-118.72313391799992,72.10781484600007],[-118.7064102859999,72.12693919500005],[-118.67821204299993,72.142279364],[-118.5767309239999,72.17942942900002],[-118.44200598899988,72.1828473980001],[-118.12783769399988,72.22724030200014],[-118.10558020699992,72.247748114],[-118.12486731699997,72.309515692],[-118.17446855399989,72.33836497600011],[-118.24205481699994,72.34674713700018],[-118.4289444649999,72.34674713700018],[-118.49738521999988,72.364406643],[-118.51768958199996,72.36717357000005],[-118.54059811099985,72.37319570500016],[-118.56558183499988,72.38800690300003],[-118.58560136599995,72.4079043640001],[-118.59341386599993,72.4286970070001],[-118.56867428299988,72.47776927300005],[-118.5128474599999,72.510443427],[-118.28307044199995,72.589544989],[-118.25015214799987,72.59381745000009],[-118.23843339799988,72.59711334800012],[-118.22606360599987,72.60516998900009],[-118.20579993399993,72.62421295800006],[-118.18980872299993,72.63544342700008],[-118.16958574099992,72.64183177299999],[-118.12730872299991,72.64842357000008],[-118.0408829419999,72.67218659100017],[-118.0029190749999,72.673773505],[-117.86729895699997,72.70148346600007],[-117.80833899599992,72.737738348],[-117.59561113199995,72.79816315300012],[-117.54507402299994,72.83063385600009],[-117.48200436099985,72.85260651200012],[-117.4550675119999,72.86749909100017],[-117.40046139199991,72.90595123900006],[-117.36925208199993,72.91779205900004],[-117.2081599599999,72.92291901200004],[-117.11058508999989,72.94481028899999],[-116.89484615799984,72.96743398600013],[-116.64403235599987,73.03497955900009],[-116.59365800699993,73.06020742400007],[-116.49547278599995,73.06159088700007],[-116.45449785099994,73.06952545800011],[-116.43675696499993,73.07550690300003],[-116.3189591139999,73.09345123900007],[-116.2009171209999,73.118882554],[-116.00816809799993,73.14077383000004],[-115.7638240229999,73.186712958],[-115.57042395699993,73.2018089860001],[-115.39907792899987,73.23346588700014],[-115.38263912699988,73.241156317],[-115.36913001199991,73.24957916900014],[-115.3509822259999,73.25739166900003],[-115.33226477799985,73.263128973],[-115.31680253799993,73.26536692899998],[-115.2300919259999,73.26422760600015],[-115.20787512899992,73.26878489800002],[-115.12608801999995,73.295070705],[-114.9072973299999,73.31981028899999],[-114.73892167899994,73.36640045800003],[-114.67870032499991,73.37759023600002],[-114.58429928299985,73.38458893400009],[-114.40746008999986,73.34747955900009],[-114.26512610599991,73.33567942900011],[-114.19664466099995,73.308050848]]],[[[-107.60850989499991,73.57831452000006],[-107.62808183499989,73.57379791900011],[-107.67613684799996,73.57416413000011],[-107.73151607999993,73.56264883000009],[-107.9939672519999,73.54657623900003],[-108.02623450399992,73.55341217700011],[-108.03184973899994,73.55678945500013],[-108.05353756399992,73.5738792990001],[-108.08324133999994,73.58462148600002],[-108.08763587099993,73.5906436220001],[-108.01402747299994,73.62238190300016],[-107.84886633999989,73.63336823100002],[-107.67617753799995,73.62543366100005],[-107.57994544199993,73.60053131700012],[-107.59186764199987,73.58722565300009],[-107.60850989499991,73.57831452000006]]],[[[-104.59316972599991,73.31317780200011],[-104.6736954419999,73.27301666900003],[-104.74982662699996,73.21747467700008],[-104.76008053299991,73.2004255230001],[-104.73656165299985,73.18964264500003],[-104.76183020699989,73.17300039300007],[-104.83775794199993,73.15493398600013],[-104.86754309799991,73.14183177299999],[-104.92491614499994,73.10578034100003],[-104.99038652299991,73.07977936400015],[-104.9813126289999,73.03571198100003],[-105.01577714799993,73.013861395],[-105.12047278599991,72.98798248900009],[-105.20246334499991,72.94452545800014],[-105.23062089799991,72.93642812700001],[-105.26231848899987,72.94049713700015],[-105.29613196499986,72.95258209800005],[-105.32945716099994,72.95990631700009],[-105.35973059799993,72.95010000200016],[-105.32982337099986,72.94281647300012],[-105.3045141269999,72.93235911700003],[-105.30011959499993,72.9221865910001],[-105.3330785799999,72.91596100500006],[-105.27782141799989,72.88861725500009],[-105.22057044199994,72.87579987200014],[-105.20335852799991,72.86749909100017],[-105.25731360599993,72.86066315300015],[-105.26805579299995,72.85712311400006],[-105.2760310539999,72.85342031500012],[-105.28498287699993,72.85138580900009],[-105.29832923099993,72.85321686400006],[-105.30357825399993,72.86294179900004],[-105.30996660099993,72.87030670800011],[-105.31875566299992,72.87498607000013],[-105.33429928299992,72.87563711100007],[-105.38768469999987,72.86749909100017],[-105.38573157499991,72.87225983300006],[-105.38337154899996,72.88385651200018],[-105.38145911399991,72.88861725500009],[-105.4246720039999,72.89569733300014],[-105.44692949099995,72.90444570500001],[-105.45653235599993,72.91901276200004],[-105.46031653599995,72.93406810100005],[-105.47061113199986,72.94611237200017],[-105.48574785099986,72.95575592700014],[-105.72883053299991,73.045843817],[-105.78551184799989,73.07977936400015],[-105.81191972599989,73.10297272300006],[-105.8265274729999,73.11127350500006],[-105.86339270699996,73.11733633000013],[-105.88243567599996,73.12417226800007],[-105.91588294199993,73.14183177299999],[-105.90807044199993,73.15375397300011],[-105.90269934799997,73.158148505],[-105.89415442599993,73.16233958500013],[-105.90900631399991,73.16644928600009],[-105.92149817599991,73.16559479400009],[-105.93407141799992,73.16315338700004],[-105.94937089799988,73.16233958500013],[-106.10765540299984,73.19708893400009],[-106.09194902299987,73.20172760600012],[-106.06061764199984,73.20473867400004],[-106.04564368399988,73.21076080900004],[-106.05923417899994,73.21698639500009],[-106.04564368399988,73.223822333],[-106.0939835279999,73.24530670800011],[-106.15859941299995,73.261419989],[-106.1761368479999,73.26959870000012],[-106.19579016799995,73.28583405200006],[-106.17662512899989,73.29181549700017],[-106.13902747299989,73.28790924700016],[-106.12071692599991,73.29266998900005],[-106.34658769399995,73.34731679900013],[-106.34972083199992,73.36066315300003],[-106.36815344999987,73.369045315],[-106.3922013009999,73.37335846600008],[-106.41209876199989,73.37466054900001],[-106.42516028599997,73.37824127800015],[-106.44603430899991,73.39581940300009],[-106.45645097599993,73.40253327000015],[-106.50877844999991,73.41412995000015],[-106.6190486319999,73.41986725500014],[-106.66942298099994,73.43292877800012],[-106.70750891799992,73.44822825700007],[-106.79043535099991,73.46800364799999],[-106.98875891799993,73.47036367400015],[-107.03929602799994,73.48444245000009],[-107.0226130849999,73.505560614],[-106.9937231109999,73.52814362200017],[-106.96182206899996,73.54608795800011],[-106.93626868399987,73.55341217700011],[-106.90172278599988,73.55805084800006],[-106.86339270699993,73.57025788000011],[-106.82721920499992,73.5875918640001],[-106.7369685539999,73.65623607000013],[-106.67153886599995,73.6904971370001],[-106.5995987619999,73.71063873900015],[-106.1598608064999,73.72308991100006],[-105.72012285099993,73.73554108300009],[-105.57664954299992,73.76178620000012],[-105.38141842399992,73.77065664300015],[-105.1671443349999,73.75665924700009],[-105.12433834499991,73.74725983300009],[-105.10309811099992,73.74518463700015],[-105.07701575399996,73.7388369810001],[-104.98363196499987,73.69672272300005],[-104.86485755099996,73.67072174700009],[-104.84581458199996,73.65924713700004],[-104.82457434799989,73.63816966400009],[-104.6808975899999,73.62982819200013],[-104.55980383999986,73.59516022300006],[-104.5008438789999,73.56720612200003],[-104.48957271999991,73.53229401200012],[-104.49730383999992,73.52879466400013],[-104.50470943899991,73.52407461100002],[-104.51744544199995,73.51239655200011],[-104.51838131399985,73.49290599200013],[-104.5379532539999,73.47846100500009],[-104.56281490799985,73.46531810100011],[-104.5794978509999,73.44969310100014],[-104.55549068899985,73.43280670800014],[-104.55162512899993,73.42645905200011],[-104.5569962229999,73.41290924700014],[-104.58092200399996,73.39374420800009],[-104.58633378799992,73.38519928600005],[-104.58096269399995,73.36294179900001],[-104.5724991529999,73.34699127800008],[-104.57266191299988,73.33218008000013],[-104.59316972599991,73.31317780200011]]],[[[-80.33421790299994,73.75885651200018],[-80.12559973899991,73.697943427],[-80.10252844999984,73.69733307500003],[-80.07945716099988,73.70229726800007],[-80.06956946499989,73.70844147300014],[-80.0586645169999,73.72406647300012],[-80.0462133449999,73.73151276200011],[-80.02245032499988,73.73407623900012],[-79.99718176999994,73.72776927299999],[-79.95002193899984,73.710394598],[-79.64606686099997,73.68012116100003],[-79.60338294199997,73.66608307500015],[-79.45030676999988,73.63532135600018],[-78.97427324099996,73.63532135600018],[-78.95498613199993,73.63792552300008],[-78.90868079299995,73.65753815300003],[-78.84630286399997,73.6663272160001],[-78.8124080069999,73.66575755400012],[-78.76537024599989,73.65534088700004],[-78.45195471899991,73.66209544450012],[-78.13853919199997,73.66885000200001],[-78.11375891799989,73.66571686400015],[-78.06602942599994,73.652044989],[-77.9996638659999,73.64370351800011],[-77.86351477799991,73.60956452000012],[-77.42813066299988,73.55955638200011],[-77.40583248599992,73.552639065],[-77.34654700399994,73.52204010600009],[-77.32079016799992,73.51471588700016],[-77.21349036399994,73.5108096370001],[-77.20645097599987,73.50698476800007],[-77.20152747299991,73.50234609600015],[-77.19542395699992,73.49811432500003],[-77.16026770699995,73.4843610700001],[-77.14826412699993,73.47768789300015],[-77.15245520699997,73.47492096600008],[-77.15709387899989,73.46857330900015],[-77.16185462099989,73.46401601800004],[-77.09813391799995,73.42926666900014],[-77.03156490799995,73.40253327000015],[-77.04967200399994,73.39435455900004],[-77.05825761599996,73.388902085],[-77.06627356699991,73.38149648600002],[-77.03986568899992,73.35883209800006],[-76.90428626199991,73.32501862200009],[-76.84968014199984,73.33368561400007],[-76.8023168609999,73.33022695500007],[-76.75719153599994,73.32062409100011],[-76.75885982999995,73.32465241100006],[-76.75523841099991,73.32672760600009],[-76.74754798099988,73.327134507],[-76.72476152299996,73.32489655200011],[-76.71442623599992,73.32249583500008],[-76.7064509759999,73.31704336100013],[-76.70197506399992,73.306341864],[-76.75035559799991,73.29889557500003],[-76.72740637899993,73.27777741100012],[-76.69180253799988,73.26129791900003],[-76.61998450399987,73.23802317900011],[-76.58356686099992,73.21922435100008],[-76.58649654899995,73.20453522300006],[-76.63426673099988,73.169826565],[-76.61335201699983,73.1671817080001],[-76.52147376199989,73.12921784100007],[-76.49083411399988,73.12238190300017],[-76.44359290299991,73.11912669500013],[-76.38809160099996,73.10932038],[-76.2716365229999,73.10211823100015],[-76.24327551999995,73.09345123900007],[-76.26207434799991,73.08209870000009],[-76.30492102799991,73.07273997600008],[-76.31895911399995,73.05996328300004],[-76.30968176999991,73.05597565300015],[-76.29954993399986,73.053127346],[-76.28872636599996,73.0518252620001],[-76.27741451699985,73.05247630400005],[-76.28636633999992,73.04262929900013],[-76.29771887899997,73.03774648600007],[-76.32518469999991,73.03266022300014],[-76.31305904899992,73.02142975500014],[-76.27769934799991,73.0090192730001],[-76.26374264199984,72.99848053600006],[-76.31607011599993,72.98159414300007],[-76.33263098899991,72.97052643400004],[-76.26622473899997,72.944281317],[-76.11733964799993,72.94171784100008],[-76.0582576159999,72.90167877800015],[-76.0777074859999,72.89720286699999],[-76.09850012899997,72.88922760600002],[-76.10602779899995,72.87885163000014],[-76.08556067599997,72.86749909100017],[-76.12507076699983,72.84699127800012],[-76.22044837099986,72.83734772300015],[-76.31895911399995,72.81671784100001],[-76.66388912699992,72.82680898600007],[-76.73371334499987,72.84170156500012],[-76.77342688699989,72.84162018400015],[-76.81891842399995,72.83323802299999],[-77.06916256449989,72.844570217],[-77.31940670499992,72.85590241100005],[-77.42332923099988,72.88275788000014],[-77.73182125549992,72.88904450100007],[-78.0403132799999,72.89533112200002],[-78.11693274599986,72.88922760600002],[-78.17088782499988,72.89862702000006],[-78.64167232999992,72.85248444200015],[-78.70958411399991,72.83051178600012],[-78.86851966099992,72.81085846600017],[-78.94286048099991,72.79181549700009],[-79.1754451159999,72.75458405199998],[-79.39093990799992,72.74176666900014],[-79.56843014199987,72.75983307500009],[-79.82778886599993,72.83323802299999],[-79.94863847599987,72.84747955900009],[-79.97980709499987,72.85712311400006],[-80.00182044199994,72.87124258000001],[-80.02599036399997,72.91510651200005],[-80.03661048099991,72.92210521000011],[-80.04405676999988,72.92544179900015],[-80.0594783189999,72.9413109400001],[-80.06700598899997,72.94696686400009],[-80.10826575399992,72.97052643400004],[-80.12181555899988,72.98240794499999],[-80.15607662699995,73.02578359600012],[-80.16966712099992,73.03782786700005],[-80.17613684799991,73.04559967700006],[-80.17259680899994,73.05524323100012],[-80.13780676999988,73.09414297100001],[-80.12254798099991,73.12140534100011],[-80.13613847599987,73.12677643400015],[-80.16616777299993,73.13446686400009],[-80.17658443899992,73.14183177299999],[-80.17992102799994,73.14988841400009],[-80.18016516799989,73.15912506700009],[-80.17686926999994,73.16665273600013],[-80.16974850199989,73.169826565],[-80.13760331899994,73.17357005400014],[-80.11815344999994,73.18447500200001],[-80.11758378799996,73.20148346600017],[-80.14240475199992,73.223822333],[-80.16380774599986,73.233384507],[-80.23265540299994,73.24982330900009],[-80.27253170499992,73.2528343770001],[-80.36750240799992,73.23973216400013],[-80.44163977799988,73.257513739],[-80.5532934239999,73.25787995000003],[-80.71092688699986,73.27903880400011],[-80.77131100199998,73.27912018400009],[-80.79503333199987,73.28534577000005],[-80.8173721999999,73.30263906500006],[-80.82892818899983,73.30914948100013],[-80.86009680899993,73.31899648600006],[-80.8692520819999,73.32623932500009],[-80.87173417899993,73.338364976],[-80.86656653599994,73.34552643400004],[-80.85741126199986,73.35175202],[-80.84813391799989,73.36098867400007],[-80.8959854809999,73.38149648600002],[-80.87214107999995,73.39394765800013],[-80.86921139199993,73.39866771000014],[-80.8692520819999,73.40875885600009],[-80.87344316299993,73.42674388200005],[-80.87877356699991,73.4369570980001],[-80.8783259759999,73.445990302],[-80.84976152299993,73.4753278670001],[-80.83625240799994,73.48541901200015],[-80.81932532499987,73.49070872600004],[-80.79352779899995,73.49135976800008],[-80.7167048819999,73.47890859600007],[-80.69733639199988,73.48444245000009],[-80.7162979809999,73.49363841400007],[-80.77985592399989,73.50495026200004],[-80.79210364499997,73.50995514500009],[-80.85610917899996,73.54490794500002],[-80.8631078769999,73.55170319200012],[-80.87547766799987,73.5738792990001],[-80.87474524599995,73.57444896000005],[-80.88109290299988,73.58978913000011],[-80.88288326699987,73.5906436220001],[-80.88540605399987,73.59381745000017],[-80.90339107999992,73.60736725500014],[-80.83934485599994,73.62384674700003],[-80.80260169199994,73.67072174700009],[-80.8058162099999,73.72040436400009],[-80.86180579299995,73.74518463700015],[-80.86180579299995,73.75136953300002],[-80.78408769399991,73.75263092700011],[-80.75934811099995,73.75885651200018],[-80.74767005099994,73.757554429],[-80.66999264199991,73.75885651200018],[-80.56017005099994,73.77252838700012],[-80.44619706899991,73.77350495000007],[-80.33421790299994,73.75885651200018]]],[[[-86.55842037699989,73.85529205900015],[-86.37385006399992,73.847398179],[-86.01862545499992,73.85488515800016],[-85.74779212099989,73.83193594000006],[-85.27192135299993,73.81826406500012],[-85.2407934239999,73.827093817],[-85.2166235019999,73.81989166900014],[-85.10570227799991,73.81199778899999],[-84.88276119699988,73.74823639500015],[-84.83674068899984,73.74518463700015],[-84.84947669199988,73.73847077],[-84.87767493399988,73.710394598],[-84.88792883999989,73.704779364],[-84.91148841099994,73.69501373900005],[-84.95197506399987,73.667669989],[-85.21277828649987,73.59656403200013],[-85.47358150899996,73.52545807500007],[-85.55345618399988,73.51972077000012],[-85.57721920499998,73.51239655200011],[-85.66462154899995,73.45722077],[-85.7395727199999,73.4433454450001],[-86.0303442049999,73.30243561400003],[-86.12958736899995,73.23305898600006],[-86.21808834499986,73.14850495000003],[-86.24701900899987,73.12946198100002],[-86.29242916599986,73.11615631700012],[-86.29393469999991,73.1046410180001],[-86.28730221299993,73.092962958],[-86.28294837099986,73.08722565300012],[-86.29133053299992,73.07664622600008],[-86.30272376199989,73.07062409100014],[-86.33014889199983,73.05996328300004],[-86.3319799469999,73.04425690300015],[-86.38390051999988,73.02016836100013],[-86.40583248599992,73.00470612200012],[-86.46967525899993,72.9584821640001],[-86.61290442599989,72.89362213700011],[-86.67271887899994,72.84699127800012],[-86.69273841099991,72.82611725500014],[-86.69855709499987,72.81610748900006],[-86.70697994699992,72.76984284100017],[-86.71056067599989,72.76170482000005],[-86.7312719389999,72.74241771000011],[-86.73753821499986,72.73094310100008],[-86.73542232999995,72.71670156500006],[-86.68016516799992,72.68317291900003],[-86.70575924399989,72.66840241100014],[-86.68024654899992,72.64618561400009],[-86.32612057199987,72.50364817900008],[-86.26634680899988,72.46625397300012],[-86.24201412699992,72.42251211100013],[-86.25340735599988,72.3945987000001],[-86.27875729099992,72.37832265800007],[-86.30866451699988,72.366156317],[-86.33385169199997,72.35049062700001],[-86.35517330599991,72.33344147300006],[-86.4019669259999,72.30540599200005],[-86.42292232999995,72.28872304900001],[-86.43248450399994,72.27684153900007],[-86.43586178299995,72.26748281500012],[-86.44001217399992,72.24433014500009],[-86.46043860599988,72.20335521000005],[-86.45649166599989,72.19232819200012],[-86.43940182199995,72.17633698100012],[-86.43378658799995,72.168646552],[-86.44745846299989,72.127630927],[-86.43797766799989,72.11237213700012],[-86.43431555899991,72.09975820500013],[-86.43378658799995,72.07298411700005],[-86.43110104099985,72.0587832700001],[-86.42157955599987,72.031724351],[-86.41950436099995,72.02118561400012],[-86.40819251199987,72.005804755],[-86.3821508449999,71.99848053600007],[-86.35338294199994,71.99408600499999],[-86.33385169199997,71.98704661700013],[-86.32917232999995,71.97671133000001],[-86.32966061099994,71.96454498900012],[-86.32612057199987,71.950873114],[-86.30964107999998,71.93585846600017],[-86.25654049399986,71.90558502800017],[-86.24201412699992,71.894232489],[-86.1902563139999,71.84186432500003],[-86.12755286399991,71.79425690300003],[-86.11103268099993,71.78436920800011],[-86.08849036399992,71.77830638200014],[-86.04295813699989,71.77313873900012],[-86.02843176999994,71.764593817],[-86.00947018099993,71.7512067730001],[-85.96357174399986,71.7394880230001],[-85.94343014199993,71.72638580900006],[-85.9283341139999,71.71344635600003],[-85.84687252499987,71.67096588700015],[-85.82197018099993,71.6625430360001],[-85.79596920499995,71.65717194200006],[-85.76838131399984,71.65534088700008],[-85.75934811099992,71.65257396000011],[-85.72679602799985,71.6379255230001],[-85.72687740799995,71.62433502800015],[-85.72516842399995,71.618150132],[-85.72057044199991,71.61310455900015],[-85.67454993399986,71.59178294500002],[-85.57428951699987,71.56614817900014],[-85.52879798099988,71.54547760600012],[-85.51740475199992,71.53497955900004],[-85.50800533799989,71.52358633000007],[-85.49693762899994,71.5143903670001],[-85.48070227799991,71.51068756700006],[-85.42577063699991,71.517523505],[-85.41600501199987,71.51487864799999],[-85.41401119699995,71.50873444200012],[-85.41454016799992,71.50193919499999],[-85.41209876199989,71.49701569200012],[-85.39069576699984,71.488959052],[-85.37181555899991,71.48737213700015],[-85.32990475199992,71.49017975500011],[-85.31806393099994,71.48700592700006],[-85.30028235599988,71.47288646000011],[-85.28551184799989,71.46971263200005],[-85.24681555899994,71.469875393],[-85.22687740799995,71.467759507],[-85.20665442599994,71.46222565300017],[-85.2055151029999,71.46015045800004],[-85.20502682199992,71.45624420800006],[-85.20343990799998,71.45189036699999],[-85.19920813699986,71.44863515800004],[-85.18586178299995,71.44476959800012],[-85.02464758999986,71.44106679900007],[-84.95966549399989,71.42877838700012],[-84.94762122299989,71.42332591399999],[-84.93419348899988,71.4144961610001],[-84.92320716099994,71.40326569200012],[-84.91869055899987,71.39057038000004],[-84.92292232999989,71.37982819200013],[-84.94172115799995,71.36859772300015],[-84.94599361899986,71.357123114],[-84.94383704299986,71.34438711100013],[-84.93687903599997,71.34247467699998],[-84.9242651029999,71.34528229400014],[-84.90501868399994,71.3468285180001],[-84.88670813699989,71.34357330900004],[-84.87433834499984,71.33673737200003],[-84.85411536399991,71.31582265800016],[-84.83763587099992,71.28656647300012],[-84.85814368399988,71.27610911700005],[-85.19318600199995,71.299302476],[-85.27558346299989,71.28473541900014],[-85.25511633999992,71.27094147300015],[-85.22883053299988,71.27000560100008],[-85.17194576699987,71.27789948100003],[-85.17194576699987,71.27045319200006],[-85.20250403599991,71.26581452000012],[-85.26341712099989,71.2490908870001],[-85.29609127499992,71.24380117400013],[-85.41657467399995,71.25267161699999],[-85.4530736969999,71.24380117400013],[-85.47154700399992,71.22972239799999],[-85.45148678299998,71.22772858300006],[-85.41771399599989,71.22939687700006],[-85.3950902989999,71.22638580900015],[-85.38971920499995,71.20848216400009],[-85.40619869699995,71.19696686400005],[-85.42650305899986,71.194281317],[-85.43260657499985,71.20282623900003],[-85.45567786399991,71.21165599200006],[-85.47077389199988,71.21035390800007],[-85.48302161399988,71.20087311400006],[-85.49775143099987,71.18545156500012],[-85.51598059799994,71.17951080900009],[-85.54320227799984,71.18056875200007],[-85.70014400899993,71.20966217700011],[-85.72496497299989,71.20848216400009],[-85.7957250639999,71.18854401200012],[-85.83665930899994,71.18854401200012],[-85.88141842399997,71.17788320500007],[-85.91315670499992,71.18227773600007],[-85.94530188699989,71.18089427299999],[-85.9746801419999,71.17495351800005],[-85.98749752499992,71.16437409100011],[-86.01891028599997,71.14618561400012],[-86.16661536399988,71.10700104400009],[-86.2140600249999,71.09979889500006],[-86.21198482999998,71.09516022300012],[-86.20917721299992,71.08340078300013],[-86.20722408799989,71.07868073100003],[-86.30842037699995,71.05565013200008],[-86.34382076699987,71.0519880230001],[-86.3860570949999,71.05365631700012],[-86.39903723899988,71.0519880230001],[-86.40440833199995,71.049058335],[-86.4132787749999,71.04035065300012],[-86.41950436099995,71.03774648600002],[-86.4952286449999,71.03774648600002],[-86.80317135299985,71.00043366100006],[-86.8173315089999,70.99054596600006],[-86.82355709499984,70.99054596600006],[-86.6625463529999,70.97626373900015],[-86.2848608059999,71.00625234600001],[-86.25409908799992,71.01520416900003],[-86.2235001289999,71.02045319200012],[-86.19871985599985,71.03457265800013],[-86.16392981699991,71.04116445500004],[-86.12132727799985,71.05605703300007],[-85.88593502499992,71.10504791900004],[-85.81859290299991,71.14126211100016],[-85.7685033839999,71.14940013200008],[-85.54413814999992,71.15546295800009],[-85.52887936099995,71.15863678600014],[-85.5015356109999,71.17145416900017],[-85.48383541599989,71.17511627800003],[-85.19298255099989,71.15444570500001],[-85.19513912699989,71.1496442730001],[-85.19599361899989,71.14956289300012],[-85.19920813699986,71.14760976800008],[-85.18175208199989,71.141058661],[-85.16816158799995,71.14419179900007],[-85.15660559799991,71.15082428600014],[-85.14557857999995,71.15444570500001],[-85.08995520699995,71.15444570500001],[-85.11139889199987,71.16600169500013],[-85.11969967399993,71.17267487200009],[-85.12474524599989,71.18231842700006],[-85.0136205719999,71.16152578300007],[-84.98753821499994,71.16803620000015],[-85.01398678299992,71.17967357000008],[-85.02765865799994,71.18276601800015],[-85.04279537699993,71.18231842700006],[-85.04279537699993,71.18854401200012],[-84.9726049469999,71.19619375200013],[-84.95282955599987,71.19196198100003],[-84.92650305899988,71.17641836100002],[-84.91388912699989,71.17365143400015],[-84.89818274599992,71.17861562700001],[-84.88609778599991,71.17804596600014],[-84.87043209499984,71.17023346600014],[-84.85680091099991,71.15973541900009],[-84.85102291599992,71.1510277360001],[-84.85374915299991,71.14044830900006],[-84.8667699859999,71.1212425800001],[-84.87092037699992,71.11347077],[-84.87450110599991,71.07843659100008],[-84.87767493399988,71.07245514500009],[-84.89313717399988,71.07436758000013],[-84.95966549399989,71.10293203300013],[-84.98228919199994,71.10781484600001],[-85.14521236899995,71.09296295800014],[-85.14521236899995,71.08612702000012],[-84.95966549399989,71.07868073100003],[-84.9652807279999,71.06614817900005],[-84.97297115799992,71.05646393400018],[-84.98265540299988,71.05316803600013],[-84.99445553299995,71.0594750020001],[-85.00121008999989,71.05524323100015],[-85.00804602799991,71.0519880230001],[-85.00519771999987,71.04173411699999],[-85.00804602799991,71.03156159100014],[-84.97496497299994,71.029933986],[-84.94623775899989,71.019273179],[-84.93114173099988,71.00092194200012],[-84.93915768099993,70.97626373900015],[-84.95063229099989,70.9682477890001],[-84.96580969999988,70.96051666900009],[-84.97789466099988,70.95038483300011],[-84.98009192599997,70.93528880400011],[-84.96796627499987,70.92397695500013],[-84.94635982999998,70.92255280200008],[-84.9047338529999,70.92788320500013],[-84.79918372299994,70.92788320500013],[-84.79600989499997,70.933294989],[-84.79303951699987,70.94525788000011],[-84.78795325399992,70.95722077000015],[-84.77839107999995,70.962591864],[-84.75934811099995,70.96645742400001],[-84.75300045499992,70.97589752800003],[-84.7548315089999,71.00047435100005],[-84.76276607999995,71.01251862200014],[-84.77765865799992,71.01801178600009],[-84.78608150899986,71.02411530200008],[-84.77464758999992,71.03774648600002],[-84.81065833199997,71.05573151200015],[-84.8235570949999,71.0665957700001],[-84.82929439999987,71.08612702000012],[-84.82591712099995,71.1004906270001],[-84.80805416599989,71.12881094000012],[-84.80260169199994,71.14077383000007],[-84.80125891799986,71.17470937700001],[-84.79710852799991,71.18488190300015],[-84.78209387899989,71.19537995000003],[-84.75230872299987,71.205023505],[-84.69184322799987,71.21230703300002],[-84.66478430899994,71.22333405200006],[-84.75804602799985,71.25885651200004],[-84.79869544199993,71.28766510600018],[-84.78831946499993,71.31891510600006],[-84.75776119699992,71.36786530200011],[-84.74115963399996,71.38031647300012],[-84.76134192599987,71.407660223],[-84.73900305899986,71.42446523600002],[-84.70051021999987,71.43284739799998],[-84.59093176999991,71.43915436400012],[-84.54723059799994,71.44985586100012],[-84.52826900899993,71.47313060100005],[-84.53368079299989,71.49404531500004],[-84.55760657499994,71.535589911],[-84.56305904899997,71.55536530200011],[-84.57848059799991,71.56273021000011],[-84.61213131399991,71.56997304900013],[-84.64496822799993,71.58429596600003],[-84.65802975199989,71.61310455900015],[-84.64716549399992,71.62254466399999],[-84.60338294199994,71.647894598],[-84.62238521999984,71.66583893400015],[-84.63178463399986,71.67251211100002],[-84.64464270699989,71.6751976580001],[-84.71324622299991,71.68203359600001],[-84.87092037699992,71.6751976580001],[-84.86640377499987,71.66714101800007],[-84.86042232999995,71.66120026200004],[-84.85289466099991,71.65729401200004],[-84.84357662699995,71.65534088700008],[-84.8528539699999,71.6397972680001],[-84.87047278599994,71.63336823100018],[-84.89159094999985,71.63296133000007],[-85.25788326699987,71.66836172100007],[-85.32795162699995,71.68573639500005],[-85.45527096299989,71.758978583],[-85.52879798099988,71.77138906500012],[-85.52196204299985,71.77822500200016],[-85.53734290299991,71.78314850500011],[-85.56830807199992,71.78607819200012],[-85.58344479099992,71.79181549700012],[-85.45396887899989,71.80174388200011],[-85.44074459499987,71.80634186400013],[-85.43781490799992,71.81476471600008],[-85.44941158799986,71.82941315300009],[-85.46324622299994,71.83909739800008],[-85.49274654899992,71.85146719],[-85.54784094999988,71.88678620000002],[-85.5629369779999,71.894232489],[-85.55553137899989,71.90167877800017],[-85.57343502499995,71.907212632],[-85.65192623599997,71.92007070500004],[-85.74726314999992,71.94855377800003],[-86.02135169199988,71.98411692900002],[-86.04210364499988,71.99420807500015],[-86.04877682199995,72.00706614799999],[-86.05064856699991,72.01455312700016],[-86.04584713399993,72.01776764500003],[-86.03071041599992,72.01752350500009],[-86.0247289699999,72.01459381700015],[-86.02228756399987,72.007513739],[-86.01488196499987,71.99774811400015],[-85.99738521999983,71.98981354400009],[-85.97687740799998,71.98476797100015],[-85.96019446499993,71.9836286480001],[-85.96617591099995,71.99457428600009],[-85.98200436099988,72.00381094000015],[-85.98749752499992,72.00409577000009],[-85.98375403599991,72.01593659100006],[-85.98468990799996,72.02236562700016],[-85.98749752499992,72.03143952000015],[-85.96930904899995,72.03066640800012],[-85.95319576699987,72.027777411],[-85.9370824859999,72.02667877800015],[-85.91926021999993,72.03143952000015],[-85.92601477799985,72.03143952000015],[-85.87494869699987,72.031724351],[-85.72057044199991,72.010931708],[-85.73700924399988,72.0209414730001],[-85.77232825399992,72.02659739800008],[-85.78205318899987,72.03888580900004],[-85.74071204299995,72.051947333],[-85.61286373599991,72.05866120000013],[-85.57184811099992,72.05780670800006],[-85.55760657499991,72.0605329450001],[-85.5102026029999,72.07754140800006],[-85.49775143099987,72.07990143400004],[-85.49535071499992,72.08588288000006],[-85.5105688139999,72.09935130400014],[-85.54246985599991,72.12079498900005],[-85.54246985599991,72.127630927],[-85.46735592399989,72.127630927],[-85.43297278599997,72.13670482],[-85.41624915299994,72.13882070500001],[-85.39850826699983,72.134466864],[-85.41356360599985,72.15009186399999],[-85.44395911399991,72.16412995000006],[-85.47907467399989,72.17357005400005],[-85.50837154899992,72.17544179900013],[-85.49970455599991,72.1976585960001],[-85.50092525899993,72.21442291900011],[-85.51435299399992,72.226996161],[-85.54246985599991,72.23688385600009],[-85.51475989499994,72.239935614],[-85.45116126199986,72.22060781500006],[-85.4189346999999,72.217027085],[-85.43309485599994,72.23501211100013],[-85.45262610599991,72.24530670800006],[-85.47581946499994,72.25006745000015],[-85.50092525899993,72.25116608299999],[-85.4764298169999,72.26626211100002],[-85.43748938699991,72.2650820980001],[-85.36371822799988,72.25116608299999],[-85.34430904899997,72.25202057500009],[-85.29609127499992,72.26422760600018],[-85.27647864499995,72.26373932500009],[-85.23945064999994,72.25714752800012],[-85.22032630099997,72.25739166900014],[-85.2407934239999,72.25116608299999],[-85.23261471299992,72.23859284100011],[-85.21837317599991,72.23574453300007],[-85.20173092399997,72.23891836100013],[-85.18622799399986,72.24433014500009],[-85.18622799399986,72.25116608299999],[-85.19298255099989,72.25116608299999],[-85.1804906889999,72.25946686400009],[-85.15904700399994,72.26080963700015],[-85.11420650899993,72.25739166900014],[-85.09923255099989,72.25458405200011],[-85.09190833199989,72.24823639500008],[-85.09479732999992,72.24135976800007],[-85.11054439999987,72.23688385600009],[-85.11054439999987,72.23065827000015],[-85.0711156889999,72.23143138200008],[-85.05585689999992,72.23729075700011],[-85.05585689999992,72.25116608299999],[-85.03583736899986,72.25470612200009],[-85.01768958199995,72.25189850500011],[-84.99986731699988,72.24701569200006],[-84.95702063699991,72.24103424700014],[-84.91279049399995,72.22654857000002],[-84.8913468089999,72.22321198100013],[-84.87767493399988,72.22272370000009],[-84.86200924399989,72.219712632],[-84.84894771999993,72.21271393400009],[-84.84357662699995,72.19965241100012],[-84.83661861899986,72.19334544499998],[-84.68342037699992,72.14496491100009],[-84.60789954299989,72.13873932500003],[-84.57603919199997,72.127630927],[-84.55976314999992,72.12421295800009],[-84.52411861899989,72.12213776200014],[-84.50776119699985,72.11737702000006],[-84.46678626199986,72.09601471600011],[-84.45624752499988,72.09349192899998],[-84.44745846299992,72.08942291900003],[-84.4276830719999,72.06952545800014],[-84.41840572799994,72.06220123900012],[-84.40583248599995,72.05841705900009],[-84.36347408799986,72.0587832700001],[-84.35456295499992,72.05662669500009],[-84.33971106699997,72.0472679710001],[-84.31684322799995,72.04193756700012],[-84.28669186099991,72.027777411],[-84.27131100199989,72.02460358300011],[-84.25670325399997,72.01471588700012],[-84.24596106699997,71.99225495000003],[-84.2376195949999,71.96792226800015],[-84.23033606699988,71.952582098],[-84.20661373599995,71.93854401200007],[-84.1840307279999,71.93817780200014],[-84.17170162699995,71.95099518400015],[-84.17878170499992,71.97626373900012],[-84.17186438699991,71.977240302],[-84.1671850249999,71.97939687700008],[-84.16315670499992,71.98183828300013],[-84.15831458199995,71.9836286480001],[-84.16694088399996,71.99046458500013],[-84.18183346299989,72.00604889500012],[-84.19245357999995,72.010931708],[-84.16454016799992,72.02460358300011],[-84.18000240799992,72.02773672100001],[-84.24604244699994,72.05536530200011],[-84.3153783839999,72.06557851800015],[-84.3313695949999,72.07123444200015],[-84.34284420499993,72.07713450700008],[-84.38520260299993,72.11163971600007],[-84.39659583199989,72.11766185099998],[-84.41156979099992,72.12079498900005],[-84.39354407499991,72.12677643400009],[-84.37743079299995,72.134466864],[-84.48542232999995,72.14248281500015],[-84.59032141799985,72.16242096600006],[-84.61017818899987,72.16860586100002],[-84.74738521999993,72.23065827000015],[-84.70897376199991,72.22972239800008],[-84.69005286399987,72.23139069200009],[-84.67223059799991,72.23688385600009],[-84.68980872299994,72.24404531500015],[-84.71104895699992,72.24591705900012],[-84.75422115799992,72.24433014500009],[-84.77037512899989,72.24656810100008],[-84.81627356699988,72.26422760600018],[-84.91124426999991,72.28091054900001],[-84.93915768099993,72.29214101800004],[-84.92487545499993,72.29897695500013],[-84.88573157499991,72.31004466399999],[-84.87767493399988,72.31574127800013],[-84.87262936099992,72.3219668640001],[-84.81407630099989,72.35761139500006],[-84.78221594999985,72.36212799700003],[-84.56920325399994,72.35419342700006],[-84.53233801999988,72.35700104400011],[-84.4320776029999,72.38153717700011],[-84.45628821499989,72.38703034100014],[-84.53510494699995,72.36717357000005],[-84.82587643099995,72.37982819200012],[-84.86469479099986,72.36717357000005],[-84.87311764199993,72.37368398600012],[-84.8762100899999,72.38182200700005],[-84.87767493399988,72.4020042990001],[-84.85448157499994,72.40517812700016],[-84.82762610599985,72.40595123900009],[-84.80353756399992,72.40989817900008],[-84.78831946499993,72.42251211100013],[-84.80260169199994,72.42251211100013],[-84.77721106699991,72.44741445500007],[-84.7694799469999,72.46043528899999],[-84.78014075399994,72.46165599199999],[-84.82819576699993,72.44481028899999],[-84.8909399079999,72.4378929710001],[-85.02106686099998,72.4020042990001],[-85.01764889199987,72.39590078300002],[-85.01134192599994,72.38011302300005],[-85.00804602799991,72.37409088700015],[-85.07685299399986,72.37596263200011],[-85.09679114499994,72.37067291900014],[-85.12022864499994,72.356105861],[-85.1319067049999,72.35390859600012],[-85.14521236899995,72.36041901200012],[-85.14203854099989,72.37055084800006],[-85.13678951699988,72.37787506700009],[-85.12889563699991,72.38182200700005],[-85.11790930899988,72.38153717700011],[-85.11790930899988,72.3877627620001],[-85.34430904899997,72.41290924700017],[-85.4530736969999,72.450384833],[-85.51451575399989,72.46344635600018],[-85.54588782499992,72.48395416900001],[-85.55235755099991,72.49038320500013],[-85.55992591099988,72.50438060100002],[-85.57001705599993,72.51850006700012],[-85.58372962099986,72.52488841400005],[-85.59113521999987,72.52724844],[-85.60273189999987,72.532904364],[-85.61347408799989,72.53961823100006],[-85.61823482999998,72.54535553600012],[-85.61339270699992,72.55463288000009],[-85.60212154899992,72.5580508480001],[-85.49677486899989,72.56614817900011],[-85.47358150899996,72.57330963700007],[-85.47358150899996,72.579535223],[-85.57884680899991,72.58266836100006],[-85.63280188699991,72.593491929],[-85.70246334499988,72.63471100500014],[-85.7063695949999,72.63849518400015],[-85.70429439999987,72.64655182500009],[-85.69538326699984,72.65875885600018],[-85.69330807199991,72.66547272300012],[-85.68964596299986,72.69147370000009],[-85.69111080599993,72.70327383000007],[-85.70014400899993,72.71670156500006],[-85.69330807199991,72.71670156500006],[-85.70026607999989,72.72284577000015],[-85.71381588399987,72.73777903899999],[-85.70531165299994,72.74599844000008],[-85.69965572799993,72.75438060100005],[-85.69758053299991,72.76292552300008],[-85.70014400899993,72.77130768400004],[-85.69330807199991,72.77130768400004],[-85.69481360599985,72.7856306010001],[-85.68626868399994,72.79926178600006],[-85.67426510299993,72.81273021000014],[-85.66535396999987,72.82656484600012],[-85.67377682199992,72.84210846600014],[-85.66816158799992,72.85260651200012],[-85.6578263009999,72.86115143400004],[-85.65233313699989,72.87124258000001],[-85.6596573559999,72.88519928600006],[-85.67365475199995,72.88922760600002],[-85.6820776029999,72.89362213700011],[-85.67280025899996,72.908433335],[-85.65766354099986,72.91718170800006],[-85.61322994699995,72.93634674700003],[-85.6039526029999,72.94696686400009],[-85.59398352799991,72.96308014500013],[-85.57062740799988,72.97231679900001],[-85.54328365799991,72.97646719000015],[-85.31794186099997,72.96308014500013],[-85.15900631399987,72.948187567],[-84.92064368399991,72.89858633000007],[-84.45795650899989,72.84064362200009],[-84.37157141799989,72.81244538000001],[-84.3062638009999,72.802923895],[-84.25792395699989,72.788763739],[-84.1304418609999,72.778753973],[-83.99140377499987,72.748968817],[-83.95287024599989,72.75824616100006],[-84.07872473899997,72.78754303600006],[-84.2379044259999,72.801214911],[-84.6192113919999,72.90444570500001],[-84.71898352799988,72.91107819200009],[-84.91584225199992,72.96259186400006],[-84.94599361899986,72.96369049700012],[-85.08995520699995,72.98480866100012],[-85.08336341099997,72.985785223],[-85.06269283799995,72.99103424700017],[-85.08222408799992,73.01703522300006],[-85.11803137899993,73.03314850500011],[-85.15705318899992,73.03514232000008],[-85.18622799399986,73.018988348],[-85.17194576699987,73.01154205900004],[-85.53563391799989,73.02578359600012],[-85.52635657499985,73.04124583500005],[-85.46357174399988,73.11188385600012],[-85.44159908799986,73.12938060100005],[-85.41722571499992,73.14057038000009],[-85.39313717399997,73.13996002800012],[-85.37767493399986,73.13300202000012],[-85.36778723899994,73.12567780200011],[-85.34760494699992,73.10398997600014],[-85.3347875639999,73.09479401200015],[-85.20824133999986,73.059271552],[-85.12474524599989,73.05247630400005],[-85.14863033799986,73.07176341400002],[-85.21381588399986,73.11029694200009],[-85.22716223899988,73.13129303600012],[-85.17540442599996,73.14899323100003],[-85.03038489499991,73.13654205900009],[-84.88093014199993,73.10211823100015],[-84.73192298099991,73.08722565300012],[-84.45885169199988,73.06244538000006],[-84.19566809799991,73.047552802],[-84.00202389199993,73.03758372600011],[-83.86131751199989,73.03656647300012],[-83.70543372299993,72.99534739799999],[-83.65733801999987,72.99188873900009],[-83.63756262899994,72.98480866100012],[-83.66254635299987,73.00234609600007],[-83.78095455599987,73.03266022300014],[-83.77472896999993,73.03949616100006],[-83.79474850199998,73.04657623900012],[-83.91987057199992,73.06378815300003],[-84.16510982999998,73.0704613300001],[-84.24229895699992,73.08917877800015],[-84.49189205599995,73.11522044500005],[-84.56920325399994,73.11456940300009],[-85.02106686099998,73.20331452000015],[-85.11249752499991,73.20294830900004],[-85.15807044199988,73.20905182500003],[-85.19298255099989,73.23126862200009],[-85.17625891799986,73.2416039080001],[-85.16087805899991,73.25409577],[-85.14960689999992,73.26972077000009],[-85.14521236899995,73.28925202000006],[-85.13581295499992,73.30939362200009],[-85.11335201699993,73.32184479400001],[-84.83665930899986,73.38906484600007],[-84.79723059799989,73.39093659100003],[-84.75995846299992,73.38336823100018],[-84.73688717399995,73.37177155200006],[-84.68590247299994,73.32623932500009],[-84.65990149599986,73.310288804],[-84.63133704299987,73.29999420800009],[-84.60102291599989,73.29437897300006],[-84.5695287749999,73.29266998900005],[-84.51451575399992,73.27765534100014],[-84.4567358059999,73.24738190300015],[-84.39854895699995,73.22451406500015],[-84.34264075399989,73.23126862200009],[-84.38459225199998,73.257513739],[-84.57258053299996,73.322007554],[-84.59788977799991,73.33559804900013],[-84.59992428299994,73.35073476800012],[-84.59858150899996,73.36497630400014],[-84.61725826699984,73.376410223],[-84.64179439999995,73.38605377800015],[-84.65802975199989,73.39508698100013],[-84.60326087099989,73.41400787999999],[-84.24091549399992,73.47418854400014],[-84.18219967399992,73.47768789300015],[-83.78095455599987,73.43610260600018],[-83.7597143219999,73.42841217700006],[-83.73346920499995,73.41437409100011],[-83.7207738919999,73.4010277360001],[-83.73997962099986,73.39508698100013],[-83.71654212099988,73.36823151200018],[-83.69928951699987,73.34345123900012],[-83.67878170499992,73.32176341400005],[-83.64574133999986,73.30438873900006],[-83.62372799399986,73.29962799700014],[-83.60517330599995,73.30149974200013],[-83.59443111899994,73.310248114],[-83.59601803299998,73.32623932500009],[-83.61188717399989,73.34454987200014],[-83.62950598899991,73.3521996110001],[-83.64252682199992,73.36058177300005],[-83.64439856699988,73.38149648600002],[-83.63801021999987,73.39842357000002],[-83.63105221299986,73.41058991100009],[-83.62995357999992,73.42279694200006],[-83.64098059799997,73.43984609600001],[-83.66523189999994,73.45612213700002],[-84.00751705599993,73.50495026200004],[-83.98485266799989,73.52313873900012],[-83.6411840489999,73.59511953300007],[-83.54662024599992,73.59967682500003],[-83.35651607999989,73.64337799700012],[-83.16307532499987,73.667181708],[-83.1297094389999,73.66669342700011],[-83.05724036399997,73.64940013200011],[-83.03058834499993,73.65924713700004],[-83.00287838399991,73.6779645850001],[-82.89740963399994,73.70734284100011],[-82.86664791599986,73.7264671900001],[-82.85614986899989,73.73151276200011],[-82.83112545499989,73.73672109600001],[-82.44281979099995,73.73053620000006],[-82.05060787699992,73.73773834800006],[-81.87677975199995,73.721625067],[-81.52839107999998,73.71621328300016],[-81.47455807199992,73.70465729400003],[-81.4508764309999,73.68683502800015],[-81.45311438699989,73.66583893400012],[-81.44977779899993,73.66006094000015],[-81.43785559799991,73.64891185100014],[-81.42328854099989,73.63800690300015],[-81.4086401029999,73.63092682500009],[-81.34300696499989,73.61033763200005],[-81.25902258999992,73.56704336100006],[-81.24657141799989,73.55776601800011],[-81.22907467399995,73.53969961100002],[-81.21662350199992,73.517279364],[-81.21190344999991,73.4947777360001],[-81.20970618399991,73.48891836100016],[-81.20478268099987,73.48615143400009],[-81.19989986899989,73.48432038000011],[-81.19762122299991,73.48102448100018],[-81.19867916599989,73.47679271000004],[-81.20319576699984,73.46552155200008],[-81.20445716099994,73.46401601800004],[-81.19318600199995,73.43451569200015],[-81.18773352799991,73.42645905200011],[-81.18407141799986,73.41425202000012],[-81.18207760299993,73.36981842700011],[-81.18464107999992,73.35415273600013],[-81.20848548099991,73.33047109600012],[-81.21503658799989,73.32623932500009],[-81.21747799399992,73.32123444200006],[-81.21812903599988,73.29266998900005],[-81.18757076699984,73.26455312700006],[-81.13353430899986,73.24705638200011],[-80.64277096299992,73.169826565],[-80.61969967399993,73.16010163000006],[-80.5741674469999,73.12482330900012],[-80.54987545499992,73.09479401200015],[-80.57172604099985,73.0690778670001],[-80.59638424399986,73.04637278899999],[-80.58067786399991,73.02578359600012],[-80.59947669199994,73.01227448100015],[-80.64167232999998,72.9957542990001],[-80.65705318899992,72.97736237200006],[-80.64667721299992,72.97113678600009],[-80.63878333199995,72.961615302],[-80.63569088399987,72.95075104400007],[-80.63963782499985,72.94013092700006],[-80.6403295559999,72.92792389500009],[-80.62629146999983,72.91889069200006],[-80.59434973899994,72.908433335],[-80.56517493399987,72.89142487200003],[-80.53233801999988,72.85602448100003],[-80.50621497299991,72.84023672100007],[-80.46007239499991,72.82782623900015],[-80.36485755099994,72.81818268400018],[-80.32062740799998,72.80609772300006],[-80.30858313699986,72.79897695500004],[-80.27965247299994,72.77130768400004],[-80.27326412699995,72.7606468770001],[-80.26850338399993,72.74974192900011],[-80.26073157499994,72.74135976800007],[-80.24547278599997,72.73777903899999],[-80.26891028599994,72.72516510600009],[-80.30235755099991,72.71649811400003],[-80.36530514199984,72.70990631700012],[-80.37547766799989,72.70722077000006],[-80.40998287699989,72.689398505],[-80.45160885299987,72.67767975499999],[-80.46125240799992,72.67230866100014],[-80.47630774599995,72.65961334800006],[-80.49555416599989,72.64740631699999],[-80.51642818899987,72.63833242400001],[-80.53632564999987,72.63471100500014],[-80.55846106699994,72.62759023600007],[-80.55308997299987,72.61090729400014],[-80.5260717439999,72.579535223],[-80.75938880099994,72.52488841400005],[-80.90269934799997,72.46450429900011],[-80.95124264199984,72.45661041900014],[-80.98383541599989,72.44375234600012],[-81.0490616529999,72.38694896000008],[-81.08836829299992,72.37409088700015],[-81.09215247299991,72.37205638200011],[-81.10517330599993,72.35732656500012],[-81.11851966099992,72.34951406500012],[-81.13337154899989,72.34788646000011],[-81.14867102799985,72.3483747420001],[-81.16352291599992,72.34674713700018],[-81.17829342399989,72.34100983300003],[-81.18830318899987,72.33258698100015],[-81.1911514959999,72.32099030200014],[-81.18464107999992,72.30573151200015],[-81.20478268099987,72.29157135600013],[-81.2301733059999,72.28465403900005],[-81.28636633999989,72.27789948100012],[-81.38263912699989,72.24433014500009],[-81.31122799399992,72.24542877800003],[-81.24164791599992,72.26080963700015],[-80.88914954299992,72.43618398600007],[-80.86738033799995,72.44139231999998],[-80.81993567599991,72.44196198100006],[-80.79698645699995,72.44672272300015],[-80.7449438139999,72.467271226],[-80.55553137899992,72.51552969000012],[-80.53693600199992,72.51459381700012],[-80.51984615799998,72.50893789300015],[-80.50621497299991,72.49762604400014],[-80.50251217399989,72.48883698100009],[-80.49937903599991,72.46796295800011],[-80.49531002499995,72.46002838700015],[-80.49364173099994,72.45001862200009],[-80.50157630099991,72.43842194200005],[-80.52265377499992,72.41909414300012],[-80.52619381399988,72.40997955900006],[-80.52354895699992,72.39935944199999],[-80.51793372299991,72.38922760600015],[-80.51239986899989,72.38153717700011],[-80.57624264199991,72.37474192900002],[-80.63776607999998,72.35797760600016],[-80.75230872299996,72.30923086100016],[-80.83161373599992,72.260687567],[-80.8563940089999,72.23061758000016],[-80.83454342399993,72.20962148600002],[-80.86656653599994,72.19965241100012],[-80.97175045499989,72.20335521000005],[-80.75938880099994,72.14130280200011],[-80.73615475199992,72.14101797100008],[-80.71617591099992,72.13593170800004],[-80.67756100199998,72.12079498900005],[-80.61872311099988,72.11005280200006],[-80.57201087099989,72.09137604400009],[-80.56688391799989,72.08226146],[-80.58100338399993,72.069281317],[-80.60260982999992,72.06342194200015],[-80.68708248599995,72.07550690300015],[-80.75800533799986,72.10394928600006],[-81.02631588399987,72.09349192899998],[-81.01659094999991,72.09015534100013],[-81.00776119699987,72.085679429],[-80.99970455599991,72.08002350500003],[-80.99217688699986,72.07298411700005],[-81.01427161399994,72.06565989800013],[-81.08775794199994,72.05255768400013],[-81.05231686099995,72.04116445500001],[-81.00409908799992,72.03611888200008],[-80.95470130099994,72.03705475500006],[-80.84142005099994,72.05434804900015],[-80.80695553299992,72.04629140800002],[-80.80040442599994,72.01776764500003],[-80.80589758999987,72.01496002800015],[-80.81541907499988,72.01504140800013],[-80.82441158799989,72.01227448100009],[-80.82831783799989,72.00104401200018],[-80.82721920499993,71.99469635600015],[-80.82209225199992,71.98509349199999],[-80.82087154899992,71.97992584800006],[-80.82262122299991,71.96702708500005],[-80.82750403599988,71.95734284100007],[-80.84479732999998,71.93927643400016],[-80.87718665299988,71.92426178600006],[-80.96125240799992,71.90867747600004],[-80.98534094999985,71.88808828300004],[-80.83397376199989,71.90786367400015],[-80.76439368399988,71.93720123900006],[-80.75938880099994,71.9836286480001],[-80.6644994779999,72.00731028900005],[-80.56806393099993,72.0135765650001],[-80.54718990799995,72.01776764500003],[-80.51569576699984,72.02985260600012],[-80.4579565089999,72.03595612200012],[-80.39667721299989,72.05011627800002],[-80.35387122299989,72.074896552],[-80.36530514199984,72.11090729400014],[-80.38813229099986,72.123236395],[-80.44147701699988,72.13987864800005],[-80.46458899599986,72.15497467700006],[-80.48285885299993,72.1807315120001],[-80.47484290299988,72.19269440300003],[-80.45051021999993,72.19599030200008],[-80.41991126199991,72.19594961100007],[-80.40636145699993,72.192775783],[-80.38109290299988,72.17865631700009],[-80.36558997299997,72.17544179900013],[-80.35199947799993,72.17670319200012],[-80.33849036399994,72.17991771],[-80.31440182199992,72.18976471600011],[-80.30675208199987,72.19603099200008],[-80.30308997299994,72.20258209800014],[-80.2980443999999,72.20758698100009],[-80.28620357999995,72.20962148600002],[-80.27314205599987,72.20774974200005],[-80.26134192599989,72.2048200540001],[-80.24994869699992,72.20425039300007],[-80.23810787699998,72.20962148600002],[-80.27289791599992,72.23102448100013],[-80.30695553299995,72.25739166900014],[-80.28364010299993,72.28856028900005],[-80.24522864499991,72.29987213700004],[-80.20173092399989,72.29596588700004],[-80.16295325399996,72.28156159100017],[-80.06843014199983,72.21303945500004],[-80.02887936099988,72.20075104400016],[-80.01280676999991,72.18773021],[-80.00531979099995,72.1828473980001],[-79.99372311099992,72.17975495000003],[-79.9688207669999,72.17584870000003],[-79.93700110599985,72.16486237200017],[-79.67638098899997,72.127630927],[-79.6959936189999,72.14716217700008],[-79.73119055899988,72.15753815300015],[-79.83849036399994,72.16644928599999],[-79.93016516799993,72.19594961100007],[-80.03392493399991,72.24664948100006],[-80.04527747299991,72.2555199240001],[-80.06737219999988,72.27789948100012],[-80.15550696499989,72.31085846600008],[-80.16978919199988,72.32632070500001],[-80.16034908799985,72.33974844],[-80.04902096299992,72.39789459800015],[-79.92658443899987,72.40961334800011],[-79.87494869699992,72.4286970070001],[-79.8603002589999,72.44708893400015],[-79.86249752499988,72.46259186400005],[-79.86925208199995,72.47679271],[-79.8681127589999,72.491400458],[-79.84894771999984,72.50336334800012],[-79.81883704299992,72.50641510600003],[-79.78783118399988,72.5035667990001],[-79.76569576699988,72.49762604400014],[-79.78034420499992,72.4865176450001],[-79.78620357999995,72.48395416900001],[-79.77379309799991,72.477240302],[-79.7617895169999,72.47614166900003],[-79.75072180899988,72.47980377800009],[-79.7415258449999,72.48769765800016],[-79.73212643099987,72.48908112200006],[-79.71698971299989,72.4845238300001],[-79.70136471299989,72.47711823100012],[-79.69062252499987,72.47028229400009],[-79.71153723899994,72.458197333],[-79.74254309799994,72.44769928600012],[-79.76805579299986,72.43475983300011],[-79.77253170499992,72.41567617400013],[-79.75300045499995,72.40143463700004],[-79.65583248599992,72.37409088700015],[-79.66124426999997,72.37042877800009],[-79.66478430899986,72.36668528900007],[-79.66746985599994,72.36322663000006],[-79.67015540299991,72.36041901200012],[-79.6472061839999,72.35980866100006],[-79.62958736899988,72.35415273600007],[-79.61310787699992,72.346625067],[-79.59382076699987,72.34052155200011],[-79.60850989499988,72.330308335],[-79.62523352799991,72.30947500200001],[-79.63536536399997,72.2995466170001],[-79.65514075399989,72.28912995000012],[-79.73875891799995,72.26691315300015],[-79.75743567599991,72.258978583],[-79.77354895699989,72.24872467700006],[-79.78001868399988,72.23688385600009],[-79.76801510299987,72.22235748900006],[-79.74250240799995,72.21710846600008],[-79.71491451699987,72.21824778900009],[-79.69684811099992,72.22321198100013],[-79.7111303379999,72.23688385600009],[-79.6966039699999,72.243841864],[-79.64838619699995,72.25739166900014],[-79.62254798099994,72.27000560100005],[-79.60700436099992,72.27529531500004],[-79.58759518099993,72.27789948100012],[-79.5456436839999,72.27509186400005],[-79.52399654899995,72.26972077],[-79.50841223899994,72.26080963700015],[-79.50422115799991,72.25348541900013],[-79.49933834499984,72.23501211100013],[-79.49482174399989,72.226996161],[-79.47675533799985,72.20294830900015],[-79.46418209499987,72.19367096600011],[-79.45038814999987,72.19594961100007],[-79.44831295499995,72.20380280200006],[-79.45124264199985,72.21588776200014],[-79.45628821499992,72.22744375200008],[-79.46031653599988,72.23379140800002],[-79.46747799399992,72.24201080900012],[-79.48192298099988,72.26312897300012],[-79.4914037749999,72.27167389500006],[-79.50507564999992,72.27757396],[-79.53331458199997,72.28473541900003],[-79.54596920499995,72.29214101800004],[-79.51276607999992,72.29865143400012],[-79.49010169199987,72.30060455900013],[-79.49054928299998,72.30341217700011],[-79.49388587099992,72.30756256700015],[-79.4914037749999,72.31264883000007],[-79.48981686099995,72.31509023600002],[-79.4874975249999,72.322943427],[-79.48456783799985,72.32632070500001],[-79.4749242829999,72.32990143400018],[-79.45453854099992,72.33270905200011],[-79.42402096299989,72.347113348],[-79.38947506399995,72.35789622600002],[-79.36408443899995,72.37274811400006],[-79.36847896999993,72.39516836100006],[-79.33161373599994,72.40228913000011],[-79.28339596299992,72.39443594000015],[-79.12677975199995,72.34186432500012],[-79.09251868399988,72.32440827000015],[-79.04242916599989,72.2878278670001],[-79.02550208199989,72.28302643400002],[-78.97154700399987,72.28530508000001],[-78.95722408799989,72.283107815],[-78.95051021999987,72.275824286],[-78.96068274599988,72.26080963700015],[-78.97057044199991,72.25458405200011],[-78.97944088399996,72.25055573100003],[-78.98485266799992,72.24408600500014],[-78.98424231699994,72.23065827000015],[-78.97789466099991,72.22060781500006],[-78.94330807199992,72.19594961100007],[-78.98399817599991,72.17055898600016],[-79.00340735599991,72.15473053600012],[-79.01158606699991,72.13788483300011],[-79.01435299399988,72.12384674700014],[-79.0301407539999,72.08649323100012],[-79.03888912699989,72.07298411700005],[-79.0579320949999,72.061468817],[-79.11603756399995,72.03481679900007],[-79.14252682199992,72.00592682500015],[-79.20946204299992,71.98932526200008],[-79.23066158799992,71.97626373900012],[-79.17369544199991,71.95783112200009],[-79.15245520699992,71.95571523600007],[-79.13019771999987,71.95892975500011],[-79.08946692599989,71.97304922100007],[-79.06651770699992,71.97626373900012],[-78.71894283799995,71.9232852230001],[-78.59186764199987,71.870103257],[-78.54548092399988,71.86163971600014],[-78.50446529899997,71.8744570980001],[-78.52460689999992,71.88442617400007],[-78.56977291599985,71.89411041900001],[-78.59015865799995,71.90485260600006],[-78.59638424399992,71.9118106140001],[-78.59699459499986,71.91742584800012],[-78.59516354099989,71.92365143400009],[-78.59386145699989,71.93244049700014],[-78.60151119699992,71.94257233300011],[-78.61896725199998,71.94765859600012],[-78.76032467399997,71.95954010600009],[-78.81574459499984,71.97231679900013],[-78.86078854099992,71.99046458500013],[-78.89720618399987,72.00348541900003],[-78.91441809799991,72.01414622600005],[-78.91600501199994,72.03143952000015],[-78.90864010299995,72.04230377800002],[-78.89997311099995,72.04734935100008],[-78.89073645699989,72.05125560100008],[-78.88190670499992,72.0587832700001],[-78.87714596299992,72.06745026200012],[-78.87616939999987,72.07538483300009],[-78.87621008999986,72.08368561400006],[-78.87507076699993,72.09349192899998],[-78.87132727799988,72.09821198100008],[-78.8656713529999,72.10199616100012],[-78.86200924399992,72.10590241100012],[-78.87340247299991,72.13035716400007],[-78.87995357999998,72.15086497600011],[-78.88019771999993,72.15900299700003],[-78.87507076699993,72.168646552],[-78.85814368399994,72.17422109600001],[-78.83043372299994,72.17267487200014],[-78.50446529899997,72.1003278670001],[-78.46650143099987,72.0769717470001],[-78.43773352799991,72.04539622600011],[-78.38841712099995,71.97003815300015],[-78.38487708199995,71.9404971370001],[-78.20897376199986,71.82379791900011],[-78.12389075399994,71.81244538000011],[-78.0471899079999,71.787502346],[-77.95213782499991,71.7728539080001],[-77.90864010299987,71.77138906500012],[-77.90864010299987,71.77822500200016],[-77.94172115799992,71.78217194200012],[-78.00580807199988,71.80166250200013],[-78.06586666599989,71.80963776200018],[-78.17125403599991,71.85040924700014],[-78.2269994779999,71.8911807310001],[-78.24775143099988,71.90131256700006],[-78.29881751199987,71.91718170799999],[-78.31269283799985,71.92902252800015],[-78.30833899599986,71.94985586100013],[-78.28148352799988,71.958197333],[-78.17670650899993,71.97247955900009],[-78.15355383999989,71.97239817900011],[-78.13792883999992,71.96662018400013],[-78.13642330599995,71.96181875200007],[-78.1375219389999,71.95579661700005],[-78.1380102199999,71.94916413],[-78.13451087099989,71.94269440300009],[-78.09471594999991,71.92316315300012],[-78.03709876199994,71.90355052300005],[-77.98875891799992,71.87970612200014],[-77.97691809799997,71.847113348],[-77.93163001199986,71.82477448100018],[-77.81965084499987,71.80402252800017],[-77.77082271999987,71.77822500200016],[-77.7555639309999,71.75604889500009],[-77.74762936099992,71.751695054],[-77.74042721299989,71.7827009140001],[-77.73009192599989,71.79621002800009],[-77.7149145169999,71.80670807500015],[-77.69635982999989,71.81232330900015],[-77.71336829299986,71.81924062700016],[-77.73265540299991,71.821234442],[-77.77143307199992,71.81976959800011],[-77.78673255099989,71.82184479400014],[-77.81737219999988,71.83079661699999],[-77.85981197799987,71.83584219000004],[-77.88923092399995,71.84369538],[-77.91779537699993,71.85488515800002],[-77.94212805899991,71.86762116100006],[-78.01789303299998,71.91885000200001],[-78.0916235019999,71.94318268400018],[-78.10663814999995,71.95571523600007],[-78.0988663399999,71.96800364800013],[-78.12486731699994,71.97675202],[-78.18610592399995,71.9836286480001],[-78.25792395699995,71.975572007],[-78.29450436099995,71.97654857000005],[-78.32636471299989,71.99046458500013],[-78.33836829299992,72.00429922100012],[-78.35362708199989,72.05255768400013],[-78.36241614499994,72.0680199240001],[-78.37458248599992,72.08356354400009],[-78.38829505099997,72.09747955900015],[-78.40204830599988,72.10781484600007],[-78.42902584499984,72.11985911699999],[-78.46100826699983,72.12824127800013],[-78.55719967399996,72.138861395],[-78.62079830599995,72.15810781500012],[-78.68378658799989,72.16571686400009],[-78.84943600199995,72.21771881700013],[-78.87507076699993,72.23065827000015],[-78.80443274599986,72.24998607],[-78.76707923099991,72.26520416900014],[-78.75092525899991,72.28530508000001],[-78.75910396999986,72.29938385600002],[-78.77778072799993,72.30426666900011],[-78.79845130099994,72.30638255400011],[-78.8129369779999,72.31264883000007],[-78.81745357999993,72.32273997600014],[-78.81444251199994,72.33173248900006],[-78.8047582669999,72.33808014500009],[-78.78905188699991,72.34052155200011],[-78.73700924399986,72.33299388200005],[-78.71735592399992,72.33307526200004],[-78.6348363919999,72.35419342700006],[-78.60431881399995,72.35781484600004],[-78.56956946499992,72.35565827000012],[-78.53673255099991,72.34589264500009],[-78.51191158799986,72.32632070500001],[-78.52167721299989,72.3233096370001],[-78.52806555899991,72.31891510600003],[-78.5392553379999,72.30573151200015],[-78.52733313699989,72.29035065300002],[-78.52794348899994,72.27948639500015],[-78.53233801999994,72.26813385600018],[-78.53180904899995,72.25116608299999],[-78.52037512899989,72.23525625200007],[-78.50129146999993,72.22842031500006],[-78.47870846299995,72.22443268400009],[-78.45673580599993,72.217027085],[-78.45624752499992,72.19367096600011],[-78.42756100199998,72.17942942900002],[-78.39716549399992,72.17633698100012],[-78.3915502589999,72.18634674700009],[-78.3981420559999,72.19082265800007],[-78.41462154899997,72.19696686400015],[-78.42255611899992,72.20335521000005],[-78.42023678299998,72.20506419500008],[-78.41694088399993,72.21092357000009],[-78.41478430899994,72.217962958],[-78.41572018099993,72.22321198100013],[-78.42817135299993,72.23118724200013],[-78.47655188699994,72.24433014500009],[-78.45567786399997,72.282660223],[-78.45665442599994,72.29726797100012],[-78.47093665299994,72.31883372600004],[-78.40880286399991,72.32904694200009],[-78.02061926999994,72.27960846600003],[-78.00861568899991,72.26935455900009],[-78.0246475899999,72.25116608299999],[-77.94501705599995,72.26341380400008],[-77.91547604099989,72.26422760600018],[-77.78510494699985,72.24433014500009],[-77.69135494699995,72.21662018400009],[-77.65497799399986,72.19424062700007],[-77.66840572799987,72.168646552],[-77.65473385299991,72.16083405200003],[-77.63898678299998,72.15501536700005],[-77.62604732999995,72.14838288],[-77.62059485599994,72.13788483300011],[-77.62580318899992,72.12995026200015],[-77.65131588399993,72.11277903900012],[-77.66095943899998,72.10781484600007],[-77.66095943899998,72.1003278670001],[-77.63971920499989,72.10321686400015],[-77.61839758999994,72.11212799700017],[-77.59984290299992,72.125433661],[-77.58649654899992,72.14130280200011],[-77.6051733059999,72.15497467700006],[-77.61445064999995,72.16412995000006],[-77.62059485599994,72.17544179900013],[-77.5895889959999,72.183294989],[-77.29845130099989,72.18976471600011],[-77.25885982999995,72.184271552],[-77.18024654899995,72.16038646000011],[-76.99742591099994,72.134466864],[-77.13178463399996,72.17267487200014],[-77.27179928299995,72.19594961100007],[-77.54780025899987,72.19920482000013],[-77.62604732999995,72.22797272300006],[-77.6868383449999,72.23631419500005],[-77.82603919199988,72.27789948100012],[-77.94163977799992,72.29214101800004],[-78.00092525899989,72.31012604400014],[-78.22712154899995,72.337591864],[-78.53209387899989,72.42560455900004],[-78.55475826699983,72.44481028899999],[-78.55121822799987,72.46503327],[-78.54487057199992,72.48676178600009],[-78.55907141799995,72.51064687700016],[-78.53514563699989,72.51463450700011],[-78.45673580599993,72.55560944200015],[-78.45067298099994,72.56195709800006],[-78.44847571499994,72.57884349200008],[-78.4430639309999,72.58698151200018],[-78.42743893099988,72.5937360700001],[-78.40998287699995,72.59442780200006],[-78.39191646999993,72.59308502800017],[-78.37474524599989,72.59381745000009],[-78.18891354099992,72.65355052299999],[-78.0246475899999,72.67572663000006],[-78.01349850199989,72.67877838700004],[-77.98936926999988,72.69330475500009],[-77.97712154899992,72.698431708],[-77.79938717399995,72.70416901200015],[-77.72345943899992,72.72748444200006],[-77.65473385299991,72.73777903899999],[-77.60102291599986,72.7558047550001],[-77.2450658844999,72.74964020400013],[-76.88910885299993,72.74347565300013],[-76.78351803299995,72.72947825700011],[-76.68895423099994,72.6971703150001],[-76.67528235599991,72.689398505],[-76.66425533799993,72.67829010600015],[-76.6583959629999,72.666449286],[-76.66242428299998,72.65761953300013],[-76.68150794199994,72.655218817],[-76.65196692599989,72.63873932500012],[-76.19684811099992,72.59926992400013],[-76.16950436099995,72.59113190300003],[-76.15453040299991,72.579535223],[-76.15375729099989,72.56639232000005],[-76.15929114499991,72.55532461100002],[-76.16596432199987,72.54608795800004],[-76.16820227799984,72.53856028899999],[-76.16156979099989,72.52887604400003],[-76.12665768099987,72.491400458],[-76.10297604099995,72.47968170800011],[-76.08246822799988,72.47943756700006],[-76.03722083199995,72.491400458],[-76.04133053299992,72.50006745000009],[-76.07184811099995,72.546332098],[-76.06969153599994,72.55532461100002],[-76.0370580719999,72.56281159100008],[-76.0059301419999,72.58087799700009],[-75.99006100199998,72.58698151200018],[-75.9398901029999,72.59223053600006],[-75.73505611899989,72.58258698100009],[-75.64073645699992,72.56338125200013],[-75.56786048099988,72.55731842700006],[-75.5435684889999,72.55255768400015],[-75.47406979099989,72.52924225500006],[-75.19835364499988,72.49762604400014],[-75.1909887359999,72.49282461100007],[-75.19176184799991,72.48135000200013],[-75.19493567599989,72.46771881700009],[-75.19493567599989,72.45661041900014],[-75.19176184799991,72.45563385600018],[-75.1670629549999,72.43618398600007],[-75.15770423099991,72.42080312700013],[-75.15339107999989,72.41567617400013],[-75.0700170559999,72.35854726800014],[-75.05781002499992,72.33685944200006],[-75.0419408839999,72.32273997600014],[-74.9667455719999,72.27741120000003],[-74.94172115799998,72.25739166900014],[-74.99604244699992,72.23379140800002],[-75.01801510299993,72.21893952000006],[-75.02672278599991,72.217027085],[-75.03034420499998,72.215318101],[-75.02997799399985,72.21133047100004],[-75.02887936099992,72.20677317900007],[-75.02985592399988,72.20335521000005],[-75.06330318899995,72.18646881700006],[-75.24596106699988,72.12848541900009],[-75.28180904899997,72.1240908870001],[-75.47789466099991,72.14704010600009],[-75.63914954299989,72.14508698100015],[-76.02875729099992,72.08869049700009],[-76.06843014199984,72.07587311400006],[-76.08564205599995,72.05565013200004],[-76.0966283839999,72.03449127800006],[-76.12242591099992,72.0104434270001],[-76.15217037699995,71.98908112200013],[-76.17503821499986,71.97626373900012],[-76.28368079299992,71.94550202000012],[-76.31529700399992,71.92560455900004],[-76.35997473899997,71.88808828300004],[-76.40229244699987,71.87079498900012],[-76.41462154899992,71.86078522300014],[-76.38495846299989,71.85150788],[-76.35810299399989,71.85594310100008],[-76.33287512899993,71.87042877800012],[-76.28193111899992,71.91185130400011],[-76.25243079299986,71.92975495000009],[-76.18805904899995,71.95571523600007],[-76.11693274599992,71.97528717700006],[-76.08665930899991,71.988959052],[-76.05833899599989,72.010931708],[-76.03441321499992,72.04389069200006],[-76.02363033799992,72.05255768400013],[-76.00507564999988,72.05939362200009],[-75.65770423099988,72.12433502800015],[-75.51317298099993,72.12555573100015],[-75.24205481699988,72.08344147300004],[-75.22227942599994,72.069281317],[-75.2450658839999,72.05121491100009],[-75.29670162699992,72.039496161],[-75.53913326699984,72.01935455900006],[-75.58539791599992,72.00409577000009],[-75.60773678299995,71.99042389500015],[-75.62250729099992,71.97288646],[-75.63068600199995,71.95136139500009],[-75.63316809799997,71.92560455900004],[-75.63756262899994,71.91046784100013],[-75.64850826699993,71.903753973],[-75.66222083199995,71.90009186400015],[-75.67540442599989,71.894232489],[-75.68370520699997,71.88556549700012],[-75.69249426999994,71.86912669500009],[-75.70209713399993,71.86078522300014],[-75.6918432279999,71.84345123900006],[-75.70543372299994,71.828558661],[-75.74986731699997,71.80613841399997],[-75.76488196499989,71.79498932500017],[-75.80451412699992,71.75775788],[-75.87364661399991,71.72675202000006],[-76.0249731109999,71.7175153670001],[-76.09992428299995,71.70311107000013],[-76.09992428299995,71.69627513200011],[-76.05854244699992,71.69708893400004],[-75.99579830599995,71.70905182500015],[-75.93171139199987,71.70311107000013],[-75.86644446499989,71.70795319200003],[-75.83442135299988,71.71507396000004],[-75.80512447799987,71.72638580900006],[-75.78465735599991,71.73908112200012],[-75.71361243399986,71.79507070500016],[-75.67137610599991,71.81671784100013],[-75.65363521999984,71.83283112200012],[-75.64879309799994,71.84194570500001],[-75.64403235599985,71.86029694200006],[-75.64061438699994,71.86762116100006],[-75.63324947799995,71.87592194200013],[-75.59068762899989,71.90485260600006],[-75.57453365799992,71.91868724200005],[-75.56651770699989,71.93500397300005],[-75.5751440089999,71.952582098],[-75.57416744699991,71.96800364800013],[-75.55064856699997,71.98354726800011],[-75.50194251199994,72.00250885600006],[-75.4606420559999,72.00918203300002],[-75.32640540299985,72.00413646000008],[-75.29308020699997,72.00438060100011],[-75.24347896999986,72.0113792990001],[-75.19603430899994,72.02423737200003],[-75.16392981699997,72.04197825700011],[-75.15697180899988,72.05109284100011],[-75.14366614499994,72.07379791900013],[-75.13658606699987,72.0829531920001],[-75.12743079299992,72.09015534100013],[-75.10492916599992,72.10370514500012],[-75.09565182199987,72.11090729400014],[-75.06318111899989,72.12824127800013],[-75.02021236899992,72.13373444200009],[-74.97594153599997,72.13084544500005],[-74.89232337099992,72.11098867400013],[-74.60397294799995,72.09988027550015],[-74.3156225249999,72.08877187700007],[-74.27875729099992,72.08026764500015],[-74.2540990879999,72.08152903900007],[-74.24225826699985,72.07990143400004],[-74.23680579299992,72.07611725500011],[-74.22687740799991,72.06354401200011],[-74.22175045499989,72.0587832700001],[-74.17393958199997,72.03143952000015],[-74.13642330599995,71.99282461100006],[-74.11803137899992,71.96723053600003],[-74.12242591099988,71.95571523600007],[-74.19379635299985,71.92902252800015],[-74.20909583199992,71.91600169500008],[-74.2074682279999,71.91079336100007],[-74.19587154899989,71.905951239],[-74.18138587099995,71.894232489],[-74.17695064999987,71.88727448100012],[-74.17223059799997,71.87596263200014],[-74.17292232999989,71.86542389500005],[-74.19440670499992,71.85639069200005],[-74.21495520699997,71.8371442730001],[-74.25239010299993,71.82245514500003],[-74.26268469999992,71.81976959800011],[-74.31794186099995,71.81976959800011],[-74.41380774599986,71.80613841399997],[-74.46686764199987,71.80825429900001],[-74.49164791599995,71.81232330900015],[-74.51716061099992,71.81976959800011],[-74.52179928299995,71.82282135600003],[-74.52611243399987,71.82697174700017],[-74.53266354099995,71.83075592699998],[-74.54389400899996,71.83283112200012],[-74.5513809889999,71.8319766300001],[-74.56928463399987,71.82721588700012],[-74.57799231699997,71.82599518400008],[-74.57201087099995,71.81671784100013],[-74.5570776029999,71.80768463700004],[-74.55072994699987,71.798732815],[-74.57465572799993,71.79165273600013],[-74.62763424399985,71.78335195500007],[-74.65343176999991,71.77480703300013],[-74.66779537699998,71.76581452000012],[-74.69196529899989,71.74664948100015],[-74.70990963399993,71.73891836100013],[-74.74242102799991,71.73362864800008],[-74.81171627499987,71.73395416900009],[-74.8449193999999,71.72980377800015],[-74.90453040299988,71.71206289300007],[-74.9274389309999,71.70990631700006],[-75.05158443899995,71.72296784100006],[-75.35179602799988,71.70014069200012],[-75.37775631399998,71.69183991100014],[-75.39423580599987,71.6751976580001],[-75.08507239499991,71.70311107000013],[-75.0098770819999,71.69977448100009],[-74.9700821609999,71.69147370000003],[-74.94172115799998,71.6751976580001],[-74.93976803299992,71.66168854400003],[-74.95653235599985,71.65253327000012],[-75.16913814999995,71.60065338700004],[-75.2648412749999,71.56293366100009],[-75.41405188699989,71.52496979400014],[-75.39472408799995,71.51919179900001],[-75.31163489499988,71.54547760600012],[-75.20185299399989,71.55390045800004],[-75.04552161399997,71.60553620000012],[-74.92426510299993,71.61969635600003],[-74.89863033799986,71.62563711100016],[-74.88377844999991,71.63178131700015],[-74.87511145699987,71.63825104400014],[-74.85578365799996,71.65839264500008],[-74.84284420499995,71.66608307500009],[-74.79950924399989,71.68398672100007],[-74.71556555899991,71.7015648460001],[-74.69440670499992,71.70311107000013],[-74.68073482999998,71.69936758000001],[-74.66429602799988,71.69017161700013],[-74.64940344999994,71.67885976800015],[-74.64008541599989,71.66836172100007],[-74.63520260299991,71.65973541900017],[-74.63459225199995,71.65509674700014],[-74.66132564999987,71.62449778900013],[-74.67731686099997,71.61001211100007],[-74.69050045499992,71.60224030200007],[-74.7204076809999,71.59080638200011],[-74.73224850199995,71.58299388200014],[-74.74669348899991,71.57794830900008],[-74.78840084499987,71.57168203300013],[-74.79710852799985,71.56220123900015],[-74.80732174399989,71.554144598],[-74.83055579299992,71.54926178600013],[-75.01960201699987,71.54271067900005],[-75.05467688699994,71.52806224200005],[-75.07909094999991,71.513128973],[-75.13373775899996,71.49241771],[-75.15339107999989,71.46971263200005],[-75.12791907499991,71.47190989800004],[-75.10704505099991,71.483384507],[-75.0871069,71.49823639500015],[-75.06464596299993,71.51068756700006],[-75.02550208199989,71.52065664300007],[-74.84369869699987,71.52326080900015],[-74.82148189999992,71.51325104400017],[-74.8250219389999,71.49017975500011],[-74.8430883449999,71.47809479400011],[-74.90501868399988,71.45962148600007],[-74.92808997299994,71.45604075700011],[-74.81200110599991,71.4522158870001],[-74.74486243399993,71.44106679900007],[-74.71515865799992,71.41819896000008],[-74.71100826699987,71.40387604400009],[-74.70466061099994,71.39492422100015],[-74.70527096299992,71.38735586100002],[-74.72199459499984,71.37726471600014],[-74.73481197799987,71.37270742400001],[-74.76313229099992,71.36786530200011],[-74.77692623599992,71.36733633000013],[-74.78669186099995,71.36469147300014],[-74.7921850249999,71.35834381700012],[-74.79596920499992,71.35040924700014],[-74.8008520169999,71.34308502800015],[-74.83735104099995,71.3207461610001],[-74.86046301999988,71.30988190300003],[-74.8759252589999,71.30524323100012],[-74.88927161399991,71.29881419500002],[-74.91999264199993,71.270697333],[-74.93797766799986,71.26430898600007],[-74.94920813699986,71.26235586100012],[-74.9788305329999,71.25193919500005],[-75.00059973899997,71.24115631700015],[-75.00450598899994,71.23773834800011],[-75.00682532499991,71.23379140800013],[-75.01313229099986,71.22638580900015],[-75.03209387899997,71.21515534100014],[-75.07856197799993,71.2045759140001],[-75.09874426999993,71.19537995000003],[-75.07677161399994,71.18374258000013],[-75.04588782499988,71.18720123900012],[-74.89329993399988,71.24725983300011],[-74.85834713399987,71.26723867400001],[-74.8250219389999,71.29218170800011],[-74.75385494699987,71.32208893400012],[-74.71943111899992,71.34430573100015],[-74.6715795559999,71.36505768400015],[-74.63097083199989,71.39020416900014],[-74.62950598899994,71.41819896000008],[-74.66401119699995,71.44110748900006],[-74.70091712099992,71.45746491100009],[-74.7304174469999,71.4781761740001],[-74.7425024079999,71.51410553600009],[-74.7282201809999,71.54417552300009],[-74.69404049399988,71.55316803600012],[-74.65326900899993,71.55365631700012],[-74.61896725199998,71.55849844],[-74.60102291599992,71.57111237200009],[-74.53734290299988,71.64484284100001],[-74.53160559799989,71.65501536700008],[-74.52265377499987,71.66258372600011],[-74.50291907499994,71.66836172100007],[-74.41901607999995,71.67121002800012],[-74.31794186099995,71.70990631700006],[-74.29499264199987,71.7279320330001],[-74.28205318899995,71.73456452000006],[-74.13605709499984,71.74347565300009],[-74.12775631399995,71.74286530200013],[-74.11778723899997,71.74095286699999],[-74.10834713399996,71.73786041900009],[-74.1016332669999,71.7334658870001],[-74.09996497299989,71.72801341399999],[-74.10407467399995,71.72370026200015],[-74.10968990799992,71.71918366100012],[-74.1124975249999,71.71332428600006],[-74.12092037699995,71.6881371110001],[-74.14228268099988,71.66974518400015],[-74.1708471339999,71.65680573100015],[-74.23204505099991,71.63751862200012],[-74.2460424469999,71.62567780200006],[-74.24946041599989,71.60879140800016],[-74.24901282499991,71.58299388200014],[-74.23591061099991,71.56574127800003],[-74.2053930329999,71.55145905200011],[-74.17088782499988,71.54173411699999],[-74.14598548099994,71.53864166900007],[-74.19965572799993,71.58966705900009],[-74.21678626199986,71.62091705900015],[-74.18757076699993,71.63483307500003],[-74.14545650899996,71.63939036699999],[-74.11359615799992,71.65273672100008],[-74.08783932199988,71.67422109600002],[-74.06407630099989,71.70311107000013],[-73.99604244699992,71.75421784100011],[-73.90587317599991,71.77562083500005],[-73.72150631399994,71.77822500200016],[-73.70225989499991,71.77338288000007],[-73.68736731699997,71.75885651200004],[-73.68110104099992,71.74201080900004],[-73.68793697799993,71.72980377800015],[-73.68793697799993,71.72296784100006],[-73.68049068899995,71.72296784100006],[-73.65709387899997,71.75885651200004],[-73.62096106699994,71.77252838700015],[-73.59642493399991,71.76390208500005],[-73.60822506399997,71.7334658870001],[-73.62535559799991,71.71930573100009],[-73.64606686099991,71.708929755],[-73.77147376199991,71.66624583500005],[-73.79316158799989,71.66152578300014],[-73.80292721299992,71.65802643400015],[-73.80186926999997,71.64996979400003],[-73.79735266799992,71.641058661],[-73.7965795559999,71.63483307500003],[-73.80540930899986,71.62848541900011],[-73.81676184799991,71.62441640800013],[-73.87665768099987,71.616359768],[-73.88508053299992,71.60980866100012],[-73.88715572799993,71.598334052],[-73.89960689999995,71.57953522300012],[-73.91515051999994,71.57094961100002],[-73.95836341099997,71.55719635600009],[-73.97533118399994,71.54547760600012],[-73.9840795559999,71.53119538000011],[-73.99103756399988,71.51585521000007],[-74.00035559799994,71.50161367400005],[-74.01630611899995,71.49017975500011],[-74.00824947799993,71.48460521],[-73.99998938699991,71.48045482000008],[-73.99140377499992,71.47785065300013],[-73.98212643099995,71.47654857000008],[-73.9961645169999,71.46181875200007],[-74.02216549399989,71.46100495000015],[-74.07465572799995,71.46971263200005],[-74.10236568899992,71.466009833],[-74.15733801999991,71.45066966400005],[-74.18757076699993,71.44863515800004],[-74.1911108059999,71.44330475500006],[-74.26146399599992,71.43138255400011],[-74.31794186099995,71.41510651200018],[-74.29145260299987,71.40827057500013],[-74.2520238919999,71.41498444200003],[-74.18138587099995,71.43561432500003],[-74.02997799399989,71.44236888200008],[-74.02997799399989,71.43561432500003],[-74.04674231699991,71.42601146000005],[-74.06236731699988,71.41315338700004],[-74.07038326699984,71.3976911480001],[-74.06407630099989,71.38031647300012],[-74.06855221299986,71.36347077000012],[-74.06676184799997,71.34829336100013],[-74.07209225199995,71.3373477230001],[-74.12035071499989,71.33112213700012],[-74.18138587099995,71.31268952000009],[-74.18138587099995,71.30524323100012],[-74.1288549469999,71.30756256700006],[-74.10224361899986,71.30499909100017],[-74.09076900899993,71.295355536],[-74.09650631399997,71.28278229400011],[-74.1097305979999,71.27440013200005],[-74.12482662699992,71.26788971600014],[-74.15697180899988,71.24477773600002],[-74.21617591099991,71.21784088700004],[-74.24225826699985,71.20966217700011],[-74.24225826699985,71.20282623900003],[-74.18647213399987,71.21991608300006],[-74.00287838399996,71.32632070500013],[-73.9957983059999,71.33319733300014],[-73.99506588399987,71.34341054900007],[-74.00584876199989,71.3596052100001],[-74.00885982999998,71.37075429900015],[-73.95453854099995,71.43219635600003],[-73.93805904899995,71.43744538000011],[-73.92296301999994,71.44009023600002],[-73.90998287699995,71.44476959800012],[-73.89960689999995,71.45604075700011],[-73.89887447799993,71.46401601800007],[-73.90135657499984,71.47308991100006],[-73.90217037699995,71.48297760600018],[-73.89618893099995,71.49359772300012],[-73.87596594999994,71.50873444200012],[-73.86729895699992,71.51886627800016],[-73.86884518099987,71.52806224200005],[-73.8661596339999,71.53534577000006],[-73.8495987619999,71.54246653900009],[-73.81700598899997,71.55223216400005],[-73.75841223899994,71.58002350500011],[-73.72736568899992,71.5895856790001],[-73.68793697799993,71.59324778900007],[-73.65147864499988,71.59052155199998],[-73.62165279899996,71.583156643],[-73.56379146999987,71.55849844],[-73.57807369699987,71.54441966400006],[-73.60187740799995,71.53131745000009],[-73.61957760299987,71.51723867400015],[-73.61168372299989,71.48574453300013],[-73.62267005099994,71.46918366100005],[-73.65318762899989,71.44236888200008],[-73.63402258999992,71.43598053600006],[-73.60362708199995,71.40786367400005],[-73.58800208199997,71.40143463700007],[-73.58613033799989,71.3955752620001],[-73.63890540299988,71.36050039300012],[-73.60973059799994,71.36359284100011],[-73.55455481699991,71.37726471600014],[-73.52623450399994,71.38031647300012],[-73.51801510299985,71.38593170800013],[-73.50938880099993,71.41518789300007],[-73.5023901029999,71.42877838700012],[-73.48688717399997,71.43610260600003],[-73.46149654899995,71.44188060099998],[-73.43773352799985,71.44367096600017],[-73.42723548099988,71.43903229400014],[-73.42198645699989,71.42084381700006],[-73.40929114499991,71.40900299700009],[-73.39342200399989,71.39923737200013],[-73.37885494699987,71.38715241100006],[-73.42259680899986,71.37702057500009],[-73.4452611969999,71.37433502800002],[-73.46821041599989,71.37417226800007],[-73.48289954299989,71.374009507],[-73.4936010409999,71.37152741100006],[-73.5023901029999,71.36733633000013],[-73.5082901679999,71.36017487200007],[-73.50715084499986,71.35407135600012],[-73.50446529899989,71.34857819200009],[-73.50572669199991,71.34308502800015],[-73.52098548099988,71.33112213700012],[-73.57091223899991,71.31582265800016],[-73.63365637899992,71.28514232000008],[-73.66156979099995,71.26675039300004],[-73.68793697799993,71.24380117400013],[-73.68183346299986,71.23867422100001],[-73.68000240799998,71.23212311400012],[-73.68219967399997,71.22431061400015],[-73.68793697799993,71.2158877620001],[-73.68049068899995,71.20966217700011],[-73.68769283799989,71.20189036700013],[-73.70689856699994,71.18549225500011],[-73.71467037699995,71.17487213700018],[-73.71723385299987,71.161851304],[-73.71235104099989,71.13499583500011],[-73.71467037699995,71.11969635600013],[-73.74750729099986,71.0897484400001],[-73.85590572799987,71.07656484600012],[-73.89960689999995,71.0594750020001],[-73.88084876199989,71.0532901060001],[-73.86713619699985,71.05621979400006],[-73.85423743399986,71.06232330900004],[-73.83771725199998,71.06565989800005],[-73.7636612619999,71.06867096600014],[-73.72728430899994,71.07485586100005],[-73.6941625639999,71.08612702000012],[-73.66710364499997,71.107367255],[-73.66413326699987,71.12970612200003],[-73.66767330599993,71.15436432500003],[-73.66002356699991,71.18231842700006],[-73.65465247299993,71.1891136740001],[-73.63581295499989,71.20624420800011],[-73.63194739499991,71.21222565300002],[-73.62657630099994,71.22606028900005],[-73.62214107999995,71.23322174700017],[-73.60920162699995,71.24209219000012],[-73.55016028599994,71.27045319200006],[-73.54255123599998,71.27871328300013],[-73.5380753249999,71.28563060100005],[-73.53119869699992,71.29043203300013],[-73.50080318899995,71.29319896],[-73.46857662699992,71.3000348980001],[-73.45457923099985,71.30524323100012],[-73.43866939999992,71.31354401200008],[-73.4296768869999,71.3224551450001],[-73.4297582669999,71.33319733300014],[-73.44090735599991,71.3468285180001],[-73.31501217399993,71.34039948100018],[-73.25389563699989,71.33002350500009],[-73.17585201699987,71.30792877800009],[-73.1695450509999,71.30390045800011],[-73.16718502499995,71.295355536],[-73.16075598899994,71.29108307500009],[-73.12010657499985,71.29682038000004],[-73.08202063699986,71.28896719000006],[-73.06489010299993,71.28270091400013],[-73.04987545499989,71.27045319200006],[-73.22712154899989,71.24681224200013],[-73.27643795499998,71.22333405200006],[-73.26121985599988,71.21124909100014],[-73.24811764199993,71.194322007],[-73.24034583199992,71.174750067],[-73.24164791599992,71.15444570500001],[-73.26899166599989,71.12710195500013],[-73.29010982999992,71.09979889500006],[-73.3272192049999,71.08283112200009],[-73.42768307199987,71.05487702000015],[-73.45457923099985,71.03156159100014],[-73.43537350199989,71.02509186400015],[-73.38630123599995,70.99054596600006],[-73.37885494699987,70.98309967700006],[-73.37230383999989,71.00165436400006],[-73.40131588399987,71.02602773600005],[-73.39989173099991,71.045152085],[-73.37336178299995,71.056870835],[-73.28742428299992,71.07160065300017],[-73.26899166599989,71.08954498900012],[-73.26121985599988,71.10553620000003],[-73.24262447799988,71.11839427300005],[-73.20067298099991,71.14077383000007],[-73.18443762899994,71.15550364800008],[-73.17027747299994,71.17145416900017],[-73.1707657539999,71.17763906500012],[-73.18370520699992,71.1967634140001],[-73.18708248599995,71.20624420800011],[-73.16901607999992,71.22728099200005],[-73.12775631399998,71.23334381700015],[-73.05357825399994,71.22947825700005],[-73.03050696499987,71.23261139500012],[-73.01146399599989,71.24127838700012],[-72.99535071499992,71.25421784100003],[-72.98102779899995,71.27045319200006],[-72.97004146999987,71.28729889500006],[-72.96385657499991,71.30353424700012],[-72.96113033799993,71.31964752800017],[-72.96043860599991,71.33624909100003],[-72.96434485599991,71.35862864800005],[-72.97362219999985,71.37421295800004],[-72.98485266799986,71.38873932500009],[-72.99461829299989,71.407660223],[-72.93565833199995,71.419378973],[-72.81183834499988,71.41828034100014],[-72.75507564999992,71.43561432500003],[-72.76854407499991,71.46051666900017],[-72.77778072799987,71.47182851800007],[-72.78949947799987,71.47654857000008],[-72.80256100199993,71.4798037780001],[-72.81794186099998,71.48802317900011],[-72.83104407499985,71.49900950700008],[-72.83759518099993,71.51068756700006],[-72.82416744699992,71.51447174700007],[-72.76866614499988,71.51845937700007],[-72.6389867829999,71.54547760600012],[-72.61823482999989,71.57343170800014],[-72.61327063699994,71.58803945500007],[-72.61164303299992,71.61001211100007],[-72.60863196499992,71.62091705900015],[-72.60077877499992,71.63641998900006],[-72.58954830599993,71.650091864],[-72.58433997299994,71.65534088700008],[-72.54942786399991,71.66510651200004],[-72.51117916599986,71.65884023600007],[-72.4726049469999,71.64728424700013],[-72.19635982999992,71.61078522350005],[-71.92011471299986,71.57428620000015],[-71.78266354099986,71.53461334800012],[-71.58189856699994,71.51508209800015],[-71.54430091099994,71.50511302300005],[-71.52794348899991,71.49054596600001],[-71.5128881499999,71.48875560100005],[-71.4186905589999,71.45604075700011],[-71.42760169199994,71.4404971370001],[-71.43297278599991,71.43561432500003],[-71.38617916599992,71.41469961100007],[-71.28754635299995,71.38434479400011],[-71.14521236899989,71.29417552300008],[-71.11705481699991,71.27045319200006],[-71.15436764199987,71.24404531500006],[-71.24018307199992,71.21515534100014],[-71.29255123599998,71.184230861],[-71.32945716099994,71.17401764500009],[-71.34357662699998,71.16803620000015],[-71.38451087099992,71.13397858300014],[-71.42247473899991,71.092230536],[-71.4450170559999,71.07347239800005],[-71.47052975199989,71.06565989800005],[-71.61994381399992,71.071966864],[-71.7108861969999,71.0968692080001],[-71.86095130099994,71.11347077],[-71.89012610599991,71.11139557500017],[-71.99286861899992,71.08909739800012],[-72.04511471299992,71.08478424700003],[-72.06981360599991,71.07868073100003],[-72.09813391799986,71.06696198100015],[-72.11217200399992,71.05817291900009],[-72.11823482999992,71.04857005400011],[-72.11351477799991,71.04022858300014],[-72.10492916599989,71.02985260600003],[-72.10029049399986,71.02098216400002],[-72.10737057199992,71.01727936400005],[-72.11860104099992,71.014105536],[-72.13072669199991,71.00678131700009],[-72.17247473899994,70.97150299700013],[-72.18244381399994,70.96576569200006],[-72.26915442599997,70.95636627800013],[-72.29735266799986,70.94708893400009],[-72.32367916599986,70.92788320500013],[-72.31126868399994,70.91144440300006],[-72.32001705599988,70.89716217700006],[-72.33861243399991,70.88593170800006],[-72.35627193899992,70.87872955900012],[-72.74848385299995,70.82733795800003],[-72.77611243399986,70.81801992400005],[-72.47687740799992,70.83783600500009],[-72.3031713529999,70.87323639500009],[-72.27643795499989,70.87132396000011],[-72.23163814999987,70.85639069200009],[-72.18464107999995,70.84886302300013],[-72.17206783799995,70.844671942],[-72.1653539699999,70.83974844000012],[-72.16417395699997,70.83038971600011],[-72.16901607999995,70.82680898600013],[-72.17650305899991,70.82514069200012],[-72.18342037699992,70.821722723],[-72.19762122299994,70.81171295800011],[-72.27350826699987,70.775132554],[-72.31672115799998,70.76015859600015],[-72.33726966099991,70.7577985700001],[-72.32917232999988,70.74298737200003],[-72.32380123599992,70.73615143400012],[-72.31623287699998,70.72988515800016],[-72.36461341099988,70.68891022300014],[-72.38434811099992,70.68048737200009],[-72.4903051419999,70.65143463700012],[-72.58250891799986,70.64618561400012],[-72.6247045559999,70.63369375200004],[-72.60863196499992,70.62799713700004],[-72.59227454299992,70.62970612200013],[-72.5750219389999,70.63336823100009],[-72.55638587099992,70.63369375200004],[-72.56135006399995,70.628648179],[-72.57066809799991,70.61318594000006],[-72.55134029899997,70.61273834800006],[-72.53168697799993,70.61709219000006],[-72.51353919199991,70.62543366100012],[-72.49836178299991,70.63711172100012],[-72.47797604099995,70.64642975500009],[-72.39191646999987,70.65412018400008],[-72.35716712099992,70.6630313170001],[-72.32770748599992,70.6748721370001],[-72.30113684799996,70.69013092700006],[-72.27521725199998,70.709377346],[-72.23395748599991,70.74925364799999],[-72.21051998599995,70.76463450700011],[-71.95311438699991,70.79132721600014],[-71.82164466099994,70.82721588700004],[-71.72948157499988,70.83803945500013],[-71.5906469389999,70.87323639500009],[-71.32282467399997,70.88719310100005],[-71.29881751199994,70.88532135600009],[-71.21503658799992,70.85529205900004],[-71.19648189999992,70.8527692730001],[-71.17438717399995,70.85716380400011],[-71.18138587099992,70.86737702000013],[-71.25422115799995,70.90021393400004],[-71.27196204299985,70.90574778900007],[-71.28901119699991,70.90802643400004],[-71.28400631399994,70.92267487200014],[-71.2743627589999,70.93211497600005],[-71.24738521999984,70.94586823100016],[-71.2345678379999,70.95465729400014],[-71.2294408839999,70.96222565300009],[-71.22663326699984,70.97101471600014],[-71.22069251199991,70.98309967700006],[-71.20185299399989,71.00698476800012],[-71.1789037749999,71.02509186400015],[-71.15094967399993,71.03774648600002],[-70.98298092399992,71.07111237200009],[-70.86164303299992,71.109076239],[-70.78722083199995,71.11456940300003],[-70.71357174399989,71.103949286],[-70.6378881499999,71.07868073100003],[-70.62144934799991,71.06932200700011],[-70.58637447799993,71.03461334800012],[-70.58075924399992,71.025336005],[-70.57738196499989,71.00214264500005],[-70.5727026029999,70.99363841400013],[-70.53083248599995,70.959214585],[-70.5164281889999,70.93707916900011],[-70.5211889309999,70.91425202],[-70.54401607999992,70.897447007],[-70.71296139199993,70.83974844000012],[-70.72508704299992,70.83026764500012],[-70.73814856699988,70.81012604400009],[-70.74775143099986,70.79877350500011],[-70.74901282499988,70.75478750200001],[-70.80553137899989,70.72435130400005],[-71.06745357999998,70.67621491100009],[-71.10338294199997,70.66095612200012],[-71.12067623599994,70.64227936400012],[-71.13023841099994,70.622503973],[-71.14146887899993,70.604437567],[-71.16364498599992,70.59076569200005],[-71.21222896999987,70.58185455900012],[-71.26402747299989,70.58356354400003],[-71.52623450399992,70.62051015800007],[-71.57636471299992,70.61318594000006],[-71.58771725199998,70.60895416900014],[-71.59605872299994,70.60301341400013],[-71.59723873599997,70.59442780200011],[-71.58690344999988,70.58218008000013],[-71.57929439999992,70.56952545800009],[-71.5833227199999,70.55768463700012],[-71.59333248599998,70.54791901200014],[-71.60362708199989,70.54144928600006],[-71.72716223899991,70.49705638200005],[-71.73778235599985,70.48932526200004],[-71.74156653599988,70.48175690300009],[-71.74083411399994,70.45954010600003],[-71.7479955719999,70.4488792990001],[-71.76508541599992,70.44367096600007],[-71.88935299399989,70.44245026200018],[-71.93248450399987,70.43675364800002],[-71.96735592399992,70.42137278900007],[-71.93744869699995,70.414699611],[-71.81285559799996,70.435003973],[-71.74144446499992,70.428208726],[-71.72984778599987,70.425482489],[-71.7285863919999,70.41852448100012],[-71.74498450399989,70.35712311400012],[-71.76976477799985,70.32811107000005],[-71.80597896999987,70.30975983299999],[-71.8506973949999,70.29783763200005],[-71.82371985599988,70.29368724200009],[-71.78791256399995,70.30117422100007],[-71.75352942599991,70.31464264500006],[-71.6719457669999,70.37299225500004],[-71.67552649599986,70.39057038],[-71.66584225199989,70.41453685100005],[-71.63780676999988,70.45612213700011],[-71.64325924399992,70.45929596600008],[-71.65196692599991,70.46645742400013],[-71.65888424399992,70.46979401200015],[-71.55821692599991,70.51471588700015],[-71.50804602799991,70.5456403670001],[-71.51488196499994,70.57904694200006],[-71.48509680899993,70.585394598],[-71.4516088529999,70.58661530200011],[-71.41877193899997,70.58234284100011],[-71.3914281889999,70.57160065300009],[-71.43976803299992,70.55853913000011],[-71.4199926419999,70.55247630400011],[-71.34325110599985,70.56537506700012],[-71.31379146999987,70.56220123900006],[-71.25287838399987,70.54808177300013],[-71.2238256499999,70.54486725500009],[-71.20319576699987,70.54507070500013],[-71.1831762359999,70.54311758000007],[-71.1688940089999,70.53510163000014],[-71.16547604099989,70.51764557500017],[-71.24201412699998,70.41819895999998],[-71.26020260299985,70.38776276200004],[-71.27501380099994,70.3425153670001],[-71.29149329299993,70.33576080900015],[-71.31000729099995,70.33136627800009],[-71.3231095039999,70.3183454450001],[-71.32001705599993,70.3048770200001],[-71.30565344999985,70.29189687700004],[-71.27464758999994,70.26992422100001],[-71.31257076699987,70.2258161480001],[-71.32506262899997,70.21686432500009],[-71.37153072799993,70.19546133000013],[-71.3672582669999,70.18036530200014],[-71.37714596299992,70.16974518400009],[-71.39427649599995,70.16339752800015],[-71.41185462099989,70.16132233300014],[-71.41877193899997,70.15692780200006],[-71.43488521999987,70.13515859600001],[-71.43976803299992,70.12661367400007],[-71.43183346299986,70.13174062700008],[-71.42406165299985,70.13397858300004],[-71.40501868399986,70.13397858300004],[-71.42039954299992,70.116197007],[-71.50121008999992,70.08559804900007],[-71.5128881499999,70.07387929900005],[-71.53510494699994,70.03961823100009],[-71.54222571499992,70.024115302],[-71.52265377499992,70.02789948100012],[-71.50788326699987,70.03839752800009],[-71.4813940089999,70.065130927],[-71.4567358059999,70.08136627800005],[-71.35297604099992,70.12327708500004],[-71.34003658799988,70.13279857000005],[-71.33222408799992,70.14606354400017],[-71.3231095039999,70.16754791900009],[-71.30968176999991,70.18878815300009],[-71.29283606699991,70.20278554900013],[-71.24799557199988,70.22211334800006],[-71.24583899599989,70.23358795800011],[-71.21698971299989,70.26032135600003],[-71.21007239499997,70.27122630400011],[-71.2168676419999,70.2768415390001],[-71.22789466099994,70.28266022300006],[-71.2337133449999,70.294134833],[-71.22834225199995,70.30463288000009],[-71.19273841099988,70.33197663000006],[-71.1952611969999,70.33193594000006],[-71.19505774599995,70.339544989],[-71.19273841099988,70.35309479400014],[-71.1797582669999,70.36676666900007],[-71.16633053299988,70.38641998900013],[-71.15741939999987,70.39655182500009],[-71.14838619699995,70.40086497600011],[-71.14362545499995,70.40574778899999],[-71.13316809799997,70.42967357000005],[-71.12791907499987,70.43842194200002],[-71.07555091099991,70.4906680360001],[-71.06244869699995,70.510728257],[-71.06989498599992,70.51764557500017],[-71.05060787699998,70.52383047100015],[-71.00458736899992,70.52387116100014],[-70.98729407499994,70.53123607000013],[-71.00019283799995,70.53742096600011],[-71.05622311099998,70.55170319199999],[-71.04267330599993,70.56964752800006],[-71.02647864499997,70.57973867400001],[-71.01292883999992,70.59198639500006],[-71.00719153599994,70.61660390800007],[-70.98534094999988,70.63369375200004],[-70.84333248599995,70.64793528900013],[-70.69286048099987,70.70376211100002],[-70.64447994699987,70.7119815120001],[-70.62950598899994,70.7180036480001],[-70.61876380099991,70.72479889500012],[-70.61738033799993,70.72988515800016],[-70.55663001199991,70.74188873900007],[-70.51349850199998,70.7418480490001],[-70.49388587099992,70.74697500200001],[-70.4459122389999,70.76894765800002],[-70.3976537749999,70.78449127800002],[-70.23627682199991,70.80097077],[-69.9149877589999,70.87986888200005],[-69.87592525899993,70.88434479400001],[-69.81895911399991,70.87763092700008],[-69.79881751199989,70.87303294500013],[-69.78168697799993,70.86615631700012],[-69.77448482999992,70.85618724200012],[-69.77769934799996,70.84772370000007],[-69.79173743399991,70.83954498900009],[-69.79499264199987,70.82884349200008],[-69.80724036399994,70.81484609600001],[-69.86754309799997,70.7764346370001],[-69.95653235599988,70.7345238300001],[-70.20575924399989,70.656683661],[-70.28221594999991,70.6424828150001],[-70.40807044199988,70.64256419500008],[-70.44867916599989,70.63519928600009],[-70.48021399599989,70.61318594000006],[-70.46727454299989,70.60106028899999],[-70.46080481699997,70.59613678600012],[-70.45295162699989,70.592718817],[-70.45128333199997,70.57221100500006],[-70.40534420499992,70.5408389340001],[-70.40107174399989,70.52753327],[-70.42145748599998,70.51264069200012],[-70.49449622299997,70.48965078300014],[-70.49449622299997,70.48285553600012],[-70.47443600199992,70.47772858300011],[-70.45348059799996,70.47874583499998],[-70.36188717399996,70.50047435100005],[-70.3095190089999,70.5033226580001],[-70.32896887899989,70.53851959800015],[-70.35484778599991,70.56004466400006],[-70.3837377589999,70.57900625200006],[-70.41197669199997,70.60635000200016],[-70.3936254549999,70.61469147300012],[-70.37397213399987,70.61684804900004],[-70.3294164699999,70.61318594000006],[-70.19249426999997,70.62002187700008],[-70.1024877589999,70.61172109600001],[-70.07616126199989,70.61318594000006],[-70.06232662699989,70.63182200700005],[-70.05304928299995,70.63515859600008],[-70.04881751199991,70.61660390800007],[-70.04088294199994,70.596625067],[-70.02183997299997,70.60936107000005],[-69.97992916599986,70.65412018400008],[-69.95673580599991,70.66144440300009],[-69.90135657499985,70.66742584800004],[-69.85594641799986,70.68968333500005],[-69.80125891799992,70.68309153899999],[-69.77448482999992,70.68891022300014],[-69.78331458199995,70.69159577000012],[-69.80866451699988,70.7025820980001],[-69.78217525899993,70.71918366100013],[-69.75767981699991,70.7140973980001],[-69.71239173099988,70.68891022300014],[-69.68183346299995,70.68537018400015],[-69.66657467399997,70.692572333],[-69.65888424399986,70.70819733300009],[-69.65099036399988,70.72988515800016],[-69.63731848899994,70.74868398600002],[-69.61615963399996,70.76361725500006],[-69.59028072799993,70.77342356999998],[-69.47345943899995,70.79132721600014],[-69.40453040299991,70.79132721600014],[-69.40855872299989,70.78091054900015],[-69.41075598899988,70.77704498900015],[-69.27232825399992,70.78660716400005],[-69.20295162699998,70.77936432500012],[-69.12669837099992,70.73285553600009],[-69.09784908799989,70.72308991100012],[-68.73005123599992,70.65369293850013],[-68.36225338399993,70.58429596600013],[-68.33771725199992,70.571966864],[-68.29723059799996,70.55853913000011],[-68.29051673099994,70.55377838700012],[-68.28449459499993,70.54242584800015],[-68.28071041599989,70.5287946640001],[-68.28050696499994,70.51764557500017],[-68.2868139309999,70.50653717700006],[-68.29780025899996,70.49689362200009],[-68.34662838399996,70.47044505400002],[-68.36091061099995,70.46515534100003],[-68.37328040299988,70.46295807500003],[-68.38459225199995,70.457505601],[-68.39338131399992,70.43366120000012],[-68.40400143099986,70.428208726],[-68.43537350199992,70.42243073100012],[-68.44477291599992,70.4081891950001],[-68.44737708199992,70.39020416900017],[-68.45860755099994,70.37299225500004],[-68.48737545499998,70.36920807500003],[-68.52875729099989,70.378363348],[-68.56598873599998,70.39447662999999],[-68.58214270699995,70.41111888200014],[-68.5770971339999,70.42121002800008],[-68.55418860599991,70.435003973],[-68.54804439999992,70.44183991100012],[-68.55219479099988,70.461411851],[-68.56940670499989,70.46816640800013],[-68.59129798099991,70.46698639499999],[-68.60944576699991,70.46295807500003],[-68.63019771999993,70.45514557500006],[-68.65587317599997,70.441148179],[-68.67296301999991,70.42348867400007],[-68.6678360669999,70.40436432500009],[-68.65290279899997,70.38255442900005],[-68.6527807279999,70.36180247600005],[-68.66441809799991,70.34418366100012],[-68.68455969999994,70.33197663000006],[-68.72004146999993,70.32233307500017],[-68.83665930899994,70.31427643400004],[-68.90538489499994,70.29694245000013],[-69.01378333199995,70.3048770200001],[-69.09727942599991,70.28213125200007],[-69.13569088399993,70.27985260600012],[-69.21247311099995,70.2842471370001],[-69.23131262899992,70.28192780200011],[-69.27289791599989,70.272162177],[-69.31244869699991,70.26813385600003],[-69.3635961579999,70.25690338700012],[-69.47020423099991,70.24811432500015],[-69.4871313139999,70.24017975499999],[-69.50458736899985,70.22516510600015],[-69.54454505099991,70.21889883000001],[-69.61689205599987,70.21588776200012],[-69.72455807199987,70.18040599200012],[-69.80833899599988,70.166693427],[-69.82225501199986,70.16132233300014],[-69.83263098899994,70.15277741100012],[-69.83617102799994,70.14443594000015],[-69.83788001199994,70.13572825700005],[-69.8427628249999,70.12661367400007],[-69.86738033799992,70.10773346600014],[-69.90094967399995,70.09324778900002],[-69.9365128249999,70.08348216400003],[-70.08861243399991,70.06826406500006],[-70.1164037749999,70.05459219000012],[-70.15660559799997,70.04547760600015],[-70.17747962099995,70.03253815300006],[-70.17992102799988,70.02045319200015],[-70.1512345039999,70.016750393],[-70.11754309799991,70.02545807500009],[-70.06220455599993,70.057806708],[-70.02769934799991,70.065130927],[-69.95091712099989,70.05923086100007],[-69.8769018219999,70.0440127620001],[-69.85594641799986,70.03253815300006],[-69.82905025899987,70.01190827000012],[-69.81489010299995,69.99201080900004],[-69.83222408799995,69.98314036699999],[-70.00059973899988,69.99624258000013],[-70.0368139309999,69.99115631700012],[-70.11359615799992,69.97089264499999],[-70.14439856699991,69.96954987200003],[-70.19245357999996,69.95750560100011],[-70.20917721299992,69.94871653900005],[-70.21698971299989,69.94790273600013],[-70.22358150899987,69.94562409100014],[-70.22638912699992,69.93846263200011],[-70.22459876199994,69.93447500200013],[-70.22114010299991,69.92959219000006],[-70.21849524599995,69.92462799700003],[-70.2195531889999,69.92047760600018],[-70.24152584499993,69.90729401200004],[-70.26899166599986,69.90021393400015],[-70.32258053299995,69.89378489800005],[-70.3427221339999,69.888373114],[-70.36786861899989,69.8725039730001],[-70.38463294199991,69.86587148600002],[-70.3966772129999,69.86432526200015],[-70.43553626199991,69.86587148600002],[-70.44603430899987,69.86351146000005],[-70.47276770699992,69.84540436400005],[-70.37092037699998,69.84430573100009],[-70.33625240799988,69.85285065300003],[-70.08979244699992,69.95575592700011],[-70.05333411399997,69.96409739799999],[-69.93317623599998,69.96865469000012],[-69.9096166659999,69.96556224200005],[-69.87633216099994,69.9515648460001],[-69.85395260299991,69.95368073100009],[-69.81232662699995,69.96271393400009],[-69.78473873599992,69.96523672100004],[-69.75849361899992,69.97288646000005],[-69.74115963399993,69.98554108300011],[-69.74034583199992,70.00307851800005],[-69.75129146999987,70.01561107000008],[-69.76500403599991,70.02179596600003],[-69.7792455719999,70.0262718770001],[-69.79157467399993,70.03375885600015],[-69.80150305899986,70.04389069200012],[-69.80406653599997,70.04881419499999],[-69.80182857999998,70.06826406500006],[-69.79255123599992,70.0850283870001],[-69.77021236899989,70.10114166900017],[-69.71983801999994,70.12661367400007],[-69.68317623599992,70.13959381700006],[-69.20885169199991,70.19293854400003],[-69.1575414699999,70.18866608300011],[-69.07933508999987,70.16864655200006],[-69.03742428299998,70.16766998900006],[-69.01353919199991,70.18866608300011],[-69.11168372299989,70.20136139500006],[-69.1301977199999,70.21588776200012],[-69.10016842399995,70.22011953300013],[-68.99986731699997,70.20229726800007],[-68.9569799469999,70.19928620000015],[-68.70653235599985,70.20941803600003],[-68.67833411399988,70.20229726800007],[-68.67548580599993,70.19708893400015],[-68.67194576699995,70.1877302100001],[-68.66722571499986,70.17890045800009],[-68.65599524599995,70.17194245000007],[-68.65094967399992,70.164536851],[-68.64362545499992,70.14704010600006],[-68.76032467399992,70.10602448100003],[-68.74677486899995,70.09100983300011],[-68.7323705719999,70.07880280200014],[-68.7905981109999,70.04116445500013],[-68.8649389309999,70.01943594000005],[-69.0851944649999,69.98505280200014],[-69.12226314999995,69.97504303600006],[-69.15741939999992,69.95270416900003],[-69.19343014199987,69.93768952],[-69.22004146999993,69.93048737200014],[-69.24889075399994,69.9117699240001],[-69.28547115799998,69.9025332700001],[-69.30870520699989,69.89044830900004],[-69.37458248599995,69.84292226800012],[-69.40819251199989,69.8292503930001],[-69.44428463399991,69.82123444200015],[-69.48029537699989,69.81867096600006],[-69.71056067599991,69.84463125200013],[-69.75059973899994,69.84247467700011],[-69.78815670499995,69.83234284100017],[-69.84235592399989,69.80670807500012],[-69.86017818899998,69.7941755230001],[-69.86933346299986,69.7803408870001],[-69.88194739499994,69.74982330900015],[-69.89057369699995,69.73615143400004],[-69.9102270169999,69.72150299700003],[-69.95771236899989,69.70307038],[-69.97651119699995,69.69114817900005],[-69.99115963399996,69.67743561400012],[-69.99559485599994,69.67133209800012],[-70.00043697799993,69.661078192],[-70.00255286399994,69.65151601800012],[-70.00324459499987,69.63532135600015],[-70.0078832669999,69.62628815300015],[-69.98204505099997,69.61782461100002],[-69.96373450399992,69.6359723980001],[-69.94945227799991,69.66132233300006],[-69.93553626199994,69.67405833500003],[-69.90387936099995,69.68097565300009],[-69.86522376199991,69.69818756700012],[-69.83002682199995,69.72064850500011],[-69.80866451699988,69.74298737200014],[-69.80976314999995,69.751410223],[-69.81415768099993,69.76284414300007],[-69.81407630099993,69.77285390800012],[-69.79084225199992,69.78139883000007],[-69.76317298099991,69.80019765800002],[-69.74689693899998,69.80438873900015],[-69.60301673099988,69.81159088700018],[-69.55536861899992,69.80438873900015],[-69.50385494699992,69.78620026200015],[-69.48338782499988,69.783880927],[-69.39061438699993,69.783880927],[-69.36668860599988,69.79022858300011],[-69.21165930899986,69.88768138200008],[-69.16112219999985,69.89679596600014],[-69.10289466099994,69.92047760600018],[-69.01353919199991,69.93475983300009],[-68.94994055899991,69.95270416900003],[-68.92817135299987,69.95526764500012],[-68.77940833199989,69.95164622600008],[-68.7058813139999,69.93402741100014],[-68.69513912699989,69.93569570500016],[-68.69139563699986,69.94839101800004],[-68.67756100199995,69.94424062700007],[-68.66327877499987,69.94188060100011],[-68.64915930899994,69.94285716400009],[-68.63617916599995,69.94839101800004],[-68.64281165299991,69.95042552300005],[-68.64899654899997,69.95307038000014],[-68.65562903599992,69.95514557500015],[-68.66413326699995,69.95526764500012],[-68.65900631399995,69.96552155200006],[-68.6575414699999,69.97435130400011],[-68.66120357999995,69.98065827000015],[-68.67149817599997,69.98314036699999],[-68.65180416599992,69.990423895],[-68.6320287749999,69.99022044500005],[-68.61204993399991,69.99233633000013],[-68.5788468089999,70.0153669290001],[-68.54564368399988,70.02562083500005],[-68.53376217399993,70.03717682500017],[-68.55345618399988,70.03709544499999],[-68.56537838399993,70.04450104400016],[-68.5649307929999,70.05341217700011],[-68.54743404899997,70.05760325700005],[-68.53661048099988,70.05670807500013],[-68.51707923099991,70.05243561400015],[-68.46906490799992,70.049953518],[-68.45860755099994,70.05145905200006],[-68.45860755099994,70.05377838700004],[-68.45673580599987,70.06476471600008],[-68.45518958199992,70.06826406500006],[-68.44102942599991,70.07355377800015],[-68.42316646999984,70.07217031500006],[-68.39037024599992,70.065130927],[-68.3369034499999,70.06883372600005],[-68.28425045499998,70.084214585],[-68.19111080599993,70.12661367400007],[-68.21605383999986,70.13434479400009],[-68.32489986899989,70.142482815],[-68.33153235599994,70.14789459800015],[-68.32013912699998,70.15477122600004],[-68.29352779899995,70.16132233300014],[-68.29352779899995,70.16754791900009],[-68.33324133999994,70.16681549700017],[-68.34959876199986,70.17267487200012],[-68.34874426999994,70.18866608300011],[-68.33942623599992,70.19432200700003],[-68.32551021999983,70.193101304],[-68.30951900899993,70.18964264500009],[-68.29352779899995,70.18866608300011],[-68.31635494699995,70.20954010600018],[-68.3230688139999,70.22337474199999],[-68.30809485599988,70.22955963700007],[-68.28913326699995,70.232855536],[-68.23924719999991,70.26032135600003],[-68.1762182279999,70.28302643400018],[-68.14948482999998,70.30011627800003],[-68.15697180899994,70.3183454450001],[-68.07835852799994,70.3270531270001],[-68.05463619699992,70.32514069200012],[-68.04889889199995,70.32172272300012],[-68.03815670499992,70.30902741100006],[-68.03343665299994,70.30467357000008],[-68.02009029899992,70.298570054],[-68.0053604809999,70.294134833],[-67.86436926999994,70.27838776200007],[-67.80854244699987,70.26373932500003],[-67.76659094999988,70.24384186400015],[-67.74120032499985,70.22809479400009],[-67.58649654899995,70.15900299700017],[-67.54609127499992,70.147609768],[-67.49030514199993,70.115668036],[-67.47858639199993,70.10236237200009],[-67.44050045499993,70.07941315300008],[-67.43077551999991,70.07135651200015],[-67.42292232999992,70.07461172100001],[-67.41698157499988,70.07477448100015],[-67.41120357999992,70.07172272300006],[-67.4035131499999,70.065130927],[-67.41710364499997,70.065130927],[-67.38935299399988,70.05243561400015],[-67.37804114499991,70.04511139500012],[-67.36530514199995,70.03375885600015],[-67.36253821499989,70.02944570500016],[-67.3616430329999,70.0244815120001],[-67.36188717399993,70.01361725500011],[-67.35863196499989,70.010687567],[-67.35163326699991,70.00946686400009],[-67.34459387899994,70.00682200699998],[-67.34142005099997,69.99966054900015],[-67.24950110599985,69.96344635600003],[-67.22533118399993,69.94839101800004],[-67.21674557199992,69.92649974199999],[-67.21674557199992,69.87995026200015],[-67.20795650899996,69.86273834800012],[-67.16246497299989,69.82550690300015],[-67.15196692599991,69.80548737200009],[-67.17011471299992,69.790757554],[-67.13878333199997,69.76211172100012],[-67.12458248599995,69.74591705900018],[-67.11546790299988,69.72866445500007],[-67.34691321499992,69.71662018400015],[-67.5547582669999,69.74022044499999],[-67.61656653599991,69.75820547100012],[-67.6632787749999,69.76080963700002],[-67.70258541599989,69.77362702000006],[-67.74718176999997,69.78261953300007],[-68.01305091099994,69.776068427],[-68.05597896999988,69.76898834800012],[-68.07506262899989,69.76341380400011],[-68.08942623599995,69.756984768],[-68.1105443999999,69.74286530199998],[-68.1234838529999,69.73615143400004],[-68.19334876199991,69.72247955900009],[-68.22545325399989,69.71002838700018],[-68.23888098899988,69.68463776200015],[-68.25361080599987,69.66746653900013],[-68.28722083199989,69.65082428600009],[-68.32428951699993,69.63812897300012],[-68.34919186099994,69.63312409100008],[-68.54804439999992,69.63312409100008],[-68.66559811099992,69.64777252800009],[-68.70490475199992,69.645209052],[-68.72614498599992,69.64671458500013],[-68.72431393099993,69.64313385600015],[-68.72834225199992,69.641302802],[-68.75605221299988,69.6395531270001],[-68.80589758999986,69.62348053600003],[-68.96576900899996,69.59955475500006],[-69.01585852799987,69.58063385600003],[-69.03058834499987,69.57786692900008],[-69.10533606699997,69.57314687700016],[-69.14545650899987,69.56590403900005],[-69.21751868399991,69.54100169500002],[-69.26081295499996,69.53489817900011],[-69.7062475249999,69.5716820330001],[-69.79002844999991,69.56659577000006],[-69.94579016799985,69.53685130400005],[-70.00666256399998,69.54303620000002],[-70.02155514199993,69.53685130400005],[-70.01720130099994,69.52606842700006],[-69.98786373599992,69.52118561400009],[-69.95453854099995,69.52016836100002],[-69.88569088399987,69.50714752800003],[-69.84443111899992,69.518988348],[-69.80317135299987,69.535834052],[-69.76398678299992,69.54433828300004],[-69.65815182199992,69.55117422100012],[-69.29051673099991,69.50873444200006],[-69.23859615799992,69.51190827000012],[-69.17951412699989,69.52374909100008],[-69.14386959499984,69.52326080900009],[-69.1323949859999,69.52533600500011],[-69.11082923099987,69.53481679900013],[-69.09886633999986,69.53685130400005],[-69.04149329299993,69.53392161700005],[-69.01195227799988,69.5366071640001],[-68.95384680899991,69.56720612200003],[-68.7655736969999,69.5924339860001],[-68.58747311099992,69.59100983300011],[-68.45514889199991,69.56696198100008],[-68.39769446499992,69.54718659100017],[-68.00511633999989,69.46198151200018],[-67.91742916599989,69.45433177300005],[-67.87267005099993,69.45917389500012],[-67.79149329299992,69.48053620000009],[-67.59227454299992,69.48016998900009],[-67.54588782499984,69.47077057500015],[-67.22760982999992,69.46434153900005],[-66.78803463399993,69.34003327],[-66.7753393219999,69.33270905199998],[-66.73871822799995,69.30158112200012],[-66.72480221299989,69.29364655200014],[-66.7113744779999,69.29047272300006],[-66.69086666599992,69.28286367400011],[-66.67113196499989,69.2643903670001],[-66.65607662699998,69.24201080900008],[-66.64936275899993,69.22215403899999],[-66.65404212099995,69.19977448100015],[-66.66877193899995,69.184556382],[-66.74225826699993,69.13686758000004],[-66.78193111899995,69.13312409100008],[-66.97752844999988,69.17694733300006],[-67.15941321499989,69.184515692],[-67.20421301999993,69.174465236],[-67.20421301999993,69.16693756700006],[-67.19798743399988,69.16364166900003],[-67.18439693899992,69.15395742400007],[-67.21247311099992,69.14793528900007],[-67.25214596299995,69.15615469000006],[-67.32091223899991,69.18439362200003],[-67.35566158799989,69.19281647300006],[-67.39423580599995,69.18829987200003],[-67.46491451699988,69.16693756700006],[-67.50951087099989,69.16083405200008],[-67.67804928299998,69.177191473],[-67.90290279899995,69.23358795800014],[-67.93622799399992,69.24575429900013],[-67.99933834499993,69.256333726],[-68.0456029939999,69.274359442],[-68.09516354099995,69.28107330900013],[-68.19794674399994,69.31098053600012],[-68.23603268099993,69.31244538],[-68.34593665299991,69.29828522300006],[-68.6797379224999,69.32882314650004],[-69.01353919199991,69.35936107000013],[-69.20799719999991,69.3016625020001],[-69.26056881399992,69.27680084800012],[-69.23505611899995,69.26487864800002],[-69.20128333199995,69.27496979400014],[-69.13707434799991,69.304144598],[-68.99921627499992,69.33470286700005],[-68.95246334499984,69.33893463700015],[-68.76996822799987,69.32151927299999],[-68.70189368399994,69.30463288],[-68.41685950399987,69.27570221600008],[-68.21821041599986,69.28449127800015],[-68.17064368399987,69.27680084800012],[-68.15656490799992,69.269232489],[-68.12958736899989,69.24725983300009],[-68.10435950399992,69.23847077],[-68.09093176999991,69.22907135600009],[-68.08250891799989,69.21967194200006],[-68.08564205599995,69.21539948100015],[-68.10163326699995,69.21312083500008],[-68.13837643099993,69.20335521000014],[-68.15729732999995,69.20111725500004],[-68.17870032499991,69.20319245000017],[-68.22345943899995,69.21287669500013],[-68.62633216099991,69.23651764500006],[-68.69334876199991,69.22321198100003],[-68.78465735599988,69.21572500200007],[-68.96406002499995,69.22345612200009],[-68.96214758999992,69.22125885600009],[-68.88373775899996,69.20319245000017],[-68.74421139199984,69.20335521000014],[-68.67638098899994,69.21312083500008],[-68.53193111899986,69.21059804900007],[-68.50702877499992,69.20111725500004],[-68.54161536399991,69.188462632],[-68.65046139199993,69.16693756700006],[-68.6907445949999,69.14500560100005],[-68.7050268219999,69.139634507],[-68.72838294199991,69.13670482000008],[-68.80308997299991,69.139634507],[-68.9219457669999,69.12002187700004],[-69.03551184799991,69.12201569200006],[-69.06989498599995,69.11371491100009],[-69.09605872299991,69.09186432500003],[-69.05109615799991,69.09186432500003],[-69.0446671209999,69.09398021000005],[-69.0343725249999,69.10342031500006],[-69.02717037699995,69.10553620000016],[-68.92475338399996,69.10553620000016],[-68.92808997299987,69.09642161699998],[-68.92817135299987,69.09227122600005],[-68.92658443899992,69.08966705900006],[-68.92475338399996,69.08502838700012],[-68.93512936099995,69.073431708],[-68.9539281889999,69.03742096600006],[-68.96263587099989,69.02977122600011],[-68.95978756399995,69.02431875200007],[-68.96772213399989,69.01178620000016],[-68.98070227799991,68.99803294500005],[-69.01825924399992,68.96841054900001],[-68.97980709499993,68.97431061400015],[-68.93260657499994,68.99616120000009],[-68.93158932199985,69.02362702000012],[-68.92719479099989,69.02659739800005],[-68.91877193899992,69.03058502800002],[-68.89985104099992,69.04633209800006],[-68.89683997299991,69.05027903900007],[-68.89500891799995,69.05512116100014],[-68.89256751199991,69.06720612200014],[-68.89061438699986,69.07200755400012],[-68.87848873599995,69.08466217700003],[-68.8640844389999,69.09162018400009],[-68.76707923099994,69.11139557500003],[-68.67711341099997,69.11444733300011],[-68.63267981699994,69.13979726800015],[-68.46296139199993,69.17405833500011],[-68.37336178299994,69.17959219000012],[-68.20067298099991,69.14984772300012],[-68.15729732999995,69.14712148600013],[-68.14818274599988,69.14533112200014],[-68.11603756399992,69.13279857000008],[-67.73546301999988,69.04010651200012],[-67.70445716099997,69.02362702000012],[-67.74144446499992,69.0124372420001],[-67.95152747299989,69.00568268400016],[-67.97883053299995,68.99567291900009],[-67.96519934799991,68.98200104400014],[-68.00080318899998,68.97199127800017],[-68.0430395169999,68.97223541900003],[-68.24006100199992,69.00560130400002],[-68.39447994699987,69.00702545800009],[-68.43285071499989,68.99762604400014],[-68.46711178299995,68.99551015800013],[-68.47227942599997,68.99225495000007],[-68.47480221299989,68.99127838700012],[-68.48473059799989,68.98358795799999],[-68.48530025899996,68.98200104400014],[-68.49974524599992,68.98118724200003],[-68.53376217399993,68.98883698100018],[-68.5512182279999,68.98407623900009],[-68.55353756399995,68.97329336100006],[-68.54686438699991,68.96442291900003],[-68.53718014199995,68.96527741100012],[-68.51789303299992,68.97247955900015],[-68.30308997299991,68.98525625200001],[-68.29352779899995,68.97516510600006],[-68.26874752499987,68.964544989],[-68.2055151029999,68.95917389500015],[-68.16307532499994,68.947699286],[-68.0402725899999,68.94790273600016],[-68.04938717399995,68.932562567],[-68.05463619699992,68.92739492400001],[-68.04963131399998,68.91913483300011],[-68.05866451699998,68.91193268400018],[-68.07416744699988,68.9074567730001],[-68.08869381399992,68.90692780200014],[-68.07213294199997,68.89988841400007],[-68.03282630099997,68.89752838700012],[-68.01362057199992,68.893255927],[-68.00141354099995,68.88690827000006],[-67.97264563699989,68.86591217700011],[-67.99901282499991,68.85590241100014],[-68.12962805899988,68.869045315],[-68.18431555899991,68.88271719000012],[-68.49278723899991,68.89948151200015],[-68.45575924399989,68.88507721600008],[-68.2750951809999,68.87543366100012],[-68.25727291599992,68.87026601800011],[-68.23924719999991,68.8622093770001],[-68.22105872299991,68.85667552300008],[-68.18248450399994,68.85431549700012],[-68.13316809799994,68.83722565300015],[-67.92760169199991,68.81126536699999],[-67.88963782499991,68.81313711100013],[-67.8706762359999,68.81122467699998],[-67.85594641799992,68.80390045800009],[-67.86896725199989,68.79706452000006],[-67.84577389199994,68.78998444199999],[-67.79596920499998,68.79051341399999],[-67.77338619699991,68.78400299700009],[-67.81932532499988,68.77252838700004],[-67.87775631399995,68.77118561400006],[-68.22301184799993,68.82518138200005],[-68.2747289699999,68.82298411700008],[-68.40058346299986,68.84544505400007],[-68.47406979099995,68.842759507],[-68.52778072799991,68.84951406500012],[-68.58250891799986,68.84992096600003],[-68.60944576699991,68.84544505400007],[-68.60944576699991,68.83860911700005],[-68.54328365799992,68.82672760600009],[-68.50959225199992,68.81606679900005],[-68.49278723899991,68.79706452000006],[-68.60260982999992,68.80390045800009],[-68.60260982999992,68.79706452000006],[-68.60033118399994,68.78815338700004],[-68.6195776029999,68.78620026200018],[-68.64586341099991,68.78876373900009],[-68.66474361899992,68.79364655200006],[-68.68757076699984,68.80337148600002],[-68.71515865799995,68.81110260600012],[-68.74303137899992,68.81366608300011],[-68.79072018099987,68.80243561400012],[-68.83710689999992,68.81622955900004],[-68.86115475199998,68.8159040390001],[-68.88678951699984,68.81126536699999],[-68.96576900899996,68.81753164300012],[-68.98993893099987,68.82477448100015],[-69.0382787749999,68.84739817900011],[-69.06135006399995,68.85228099199999],[-69.16120357999992,68.85382721600003],[-69.30207271999984,68.88275788000011],[-69.36347408799992,68.88108958500011],[-69.3977758449999,68.85846588700015],[-69.26854407499991,68.86033763200011],[-69.20348059799994,68.85293203300013],[-69.15070553299995,68.83120351800005],[-69.35057532499991,68.83494700699998],[-69.38349361899989,68.81753164300012],[-68.98875891799995,68.803412177],[-68.95954342399992,68.79706452000006],[-68.94599361899995,68.78717682500015],[-68.95075436099992,68.7796898460001],[-68.95982825399993,68.77228424700009],[-68.95954342399992,68.76288483300009],[-68.96833248599995,68.75787995000003],[-68.9782201809999,68.75556061400006],[-68.9888402989999,68.75507233300007],[-68.99986731699997,68.75604889500006],[-68.99986731699997,68.74860260600018],[-68.97345943899998,68.74249909100008],[-68.94994055899991,68.7455508480001],[-68.90428626199989,68.76288483300009],[-68.87592525899996,68.76837799700007],[-68.75340735599991,68.76040273600013],[-68.66413326699995,68.7424177100001],[-68.54718990799991,68.75307851800012],[-68.51325436099998,68.7424177100001],[-68.49653072799995,68.73362864800005],[-68.40339107999992,68.73558177299999],[-68.21149654899992,68.71596914300011],[-68.1432999339999,68.701402085],[-68.13398189999995,68.69721100500009],[-68.12852942599991,68.69257233300014],[-68.12193762899993,68.68870677300005],[-68.10920162699989,68.687201239],[-68.04771887899992,68.687201239],[-68.04771887899992,68.68097565300003],[-68.09552975199995,68.66669342700014],[-68.09552975199995,68.67413971600011],[-68.11103268099987,68.67088450700005],[-68.17064368399987,68.67413971600011],[-68.14732825399997,68.66559479400009],[-68.09483801999991,68.65985748900012],[-68.07506262899989,68.64618561400007],[-68.10566158799992,68.63019440300017],[-68.14606686099995,68.63715241100006],[-68.18858801999991,68.65216705900008],[-68.22557532499988,68.66046784100017],[-68.28022213399993,68.65200429900013],[-68.36054439999992,68.62995026200004],[-68.38996334499993,68.63076406500015],[-68.6439916659999,68.66535065300006],[-68.72651119699992,68.65257396],[-68.74750729099989,68.6537946640001],[-68.76744544199997,68.65253327],[-68.78388424399995,68.64248281500012],[-68.78770911399997,68.63947174700003],[-68.80121822799995,68.63255442900014],[-68.80174719999991,68.63019440300017],[-68.80072994699995,68.62189362200009],[-68.80121822799995,68.61953359600015],[-68.82551021999993,68.61302317900005],[-68.88011633999989,68.61273834800012],[-68.90428626199989,68.60521067900005],[-68.88329016799995,68.60309479400014],[-68.84601803299998,68.5937360700001],[-68.82856197799993,68.59153880400011],[-68.79743404899992,68.59284088700004],[-68.76707923099994,68.59780508000007],[-68.73814856699994,68.6102562520001],[-68.71764075399989,68.61522044500005],[-68.69591223899991,68.62933991100009],[-68.68488521999987,68.63255442900014],[-68.62995357999998,68.63873932500009],[-68.48704993399986,68.62250397300006],[-68.47911536399988,68.61953359600015],[-68.47618567599997,68.61302317900005],[-68.4768774079999,68.605902411],[-68.48119055899991,68.60016510600003],[-68.48900305899991,68.59780508000007],[-68.50861568899995,68.59577057500015],[-68.54784094999988,68.58673737200003],[-68.71580969999991,68.58299388200003],[-68.76032467399992,68.57111237200014],[-68.45860755099994,68.56427643400004],[-68.44257564999995,68.56854889500015],[-68.43455969999991,68.576076565],[-68.42926998599992,68.58519114799999],[-68.42137610599985,68.594671942],[-68.40440833199997,68.60000234600007],[-68.37852942599997,68.60097890800012],[-68.35252844999988,68.59882233300014],[-68.33543860599994,68.594671942],[-68.21629798099991,68.58828359600007],[-68.19794674399994,68.57485586100007],[-68.1903783839999,68.57111237200014],[-68.1432999339999,68.57855866100012],[-68.12946529899992,68.57168203300002],[-68.12800045499995,68.56476471600003],[-68.1308080719999,68.55776601800012],[-68.12962805899988,68.5506859400001],[-68.11949622299991,68.54100169500009],[-68.11115475199995,68.53969961100002],[-68.10106360599987,68.541978257],[-68.08564205599995,68.54376862200009],[-68.02354895699992,68.54376862200009],[-68.02025305899988,68.541978257],[-68.01817786399997,68.53327057500012],[-68.01362057199992,68.53009674700014],[-68.00267493399994,68.528998114],[-67.99242102799991,68.5303408870001],[-67.97264563699989,68.53701406500015],[-67.94880123599991,68.55512116100006],[-67.93342037699996,68.5600446640001],[-67.91742916599989,68.5506859400001],[-67.91816158799992,68.54360586100002],[-67.92650305899988,68.53729889500009],[-67.93122311099998,68.52822500200007],[-67.91612708199997,68.50421784100003],[-67.91205807199992,68.48135000200013],[-67.90684973899991,68.47182851800012],[-67.90758216099994,68.45612213700015],[-67.94648189999995,68.41600169500005],[-67.95836341099991,68.3998070330001],[-67.94029700399996,68.40521881700015],[-67.92345130099997,68.41250234600007],[-67.90851803299992,68.42194245000017],[-67.89631100199995,68.43390534100011],[-67.89085852799991,68.44489166900014],[-67.88154049399989,68.47296784100017],[-67.86485755099994,68.49774811400012],[-67.8667699859999,68.50922272300006],[-67.8706762359999,68.52163320500001],[-67.86896725199989,68.53701406500015],[-67.8589574859999,68.5502383480001],[-67.84703528599997,68.54877350500011],[-67.83250891799992,68.54140859600012],[-67.81464596299986,68.53701406500015],[-67.7003881499999,68.55361562700001],[-67.66413326699997,68.56468333500014],[-67.64305579299987,68.56427643400004],[-67.62153072799995,68.55841705900008],[-67.61335201699995,68.55385976800015],[-67.60553951699995,68.54718659100008],[-67.5941869779999,68.54291413000009],[-67.55060787699993,68.5506859400001],[-67.53441321499992,68.55072663000009],[-67.51915442599994,68.54905833500005],[-67.5050756499999,68.5431582700001],[-67.49225826699995,68.53009674700014],[-67.53758704299989,68.51137929900007],[-67.59605872299994,68.50551992400013],[-67.62999426999988,68.493109442],[-67.60212154899995,68.45441315300015],[-67.60313880099991,68.43817780200011],[-67.60948645699993,68.42519765800002],[-67.61896725199993,68.41315338700008],[-67.62254798099991,68.3998070330001],[-67.6165258449999,68.38690827000009],[-67.60627193899998,68.38410065300003],[-67.59471594999985,68.38825104400017],[-67.56053626199989,68.41632721600017],[-67.55077063699991,68.427883205],[-67.54686438699994,68.44415924700003],[-67.55064856699994,68.4564883480001],[-67.5689184239999,68.47638580900018],[-67.57477779899997,68.48859284100013],[-67.54857337099995,68.49225495000009],[-67.45868893099993,68.48859284100013],[-67.43329830599991,68.4957542990001],[-67.41901607999992,68.49725983300014],[-67.40684973899994,68.49192942899998],[-67.39476477799992,68.47980377800008],[-67.38727779899993,68.47614166900003],[-67.37616939999992,68.47492096600003],[-67.37470455599987,68.49237702000006],[-67.35492916599995,68.50079987200003],[-67.32868404899992,68.50145091399999],[-67.30785071499994,68.49542877800015],[-67.30211341099995,68.48655833500011],[-67.29515540299988,68.47207265800007],[-67.28595943899992,68.4589704450001],[-67.27314205599987,68.45441315300015],[-67.26215572799991,68.46450429900013],[-67.25336666599995,68.48143138200011],[-67.24168860599985,68.49087148600002],[-67.22191321499994,68.47858307500015],[-67.21300208199989,68.46360911700013],[-67.2119848299999,68.45282623900012],[-67.20811926999991,68.44379303600012],[-67.19054114499987,68.43390534100011],[-67.19054114499987,68.42772044500005],[-67.27196204299995,68.43280670800006],[-67.31432044199993,68.42938873900006],[-67.34142005099997,68.41347890800013],[-67.12470455599993,68.41331614800008],[-67.10863196499994,68.42023346600017],[-67.10407467399992,68.42804596600014],[-67.09947669199997,68.44700755400008],[-67.09434973899994,68.45441315300015],[-67.11457271999987,68.46649811400006],[-67.12328040299985,68.473334052],[-67.1290990879999,68.482367255],[-67.06395423099988,68.47492096600003],[-67.00934811099992,68.45783112200017],[-66.98875891799989,68.44350820500007],[-66.96869869699992,68.44204336100002],[-66.93049068899998,68.45441315300015],[-66.86335201699993,68.46649811400006],[-66.79503333199992,68.46572500200013],[-66.66356360599985,68.44082265800002],[-66.66356360599985,68.43390534100011],[-66.72834225199995,68.42816803600012],[-66.76427161399994,68.43256256700012],[-66.78803463399993,68.43154531500014],[-66.80382239499988,68.423529364],[-66.80016028599994,68.40599192900008],[-66.83075924399995,68.40888092699998],[-66.86225338399987,68.41766998900006],[-66.89366614499991,68.42243073100015],[-66.92430579299992,68.41347890800013],[-66.91974850199995,68.39362213700004],[-66.93952389199998,68.37929922100012],[-66.96857662699995,68.36994049700012],[-67.02245032499991,68.36155833500004],[-67.05333411399994,68.36200592700004],[-67.11546790299988,68.37250397300004],[-67.18439693899992,68.39301178600006],[-67.33470618399994,68.40184153900013],[-67.37262936099995,68.39227936400015],[-67.40314693899998,68.39695872600005],[-67.41710364499997,68.39301178600006],[-67.41368567599994,68.39081452000008],[-67.41270911399988,68.3906924500001],[-67.4121801419999,68.389837958],[-67.41026770699995,68.38556549700009],[-67.44306393099995,68.37665436400006],[-67.79389400899996,68.33771393400015],[-67.83580481699997,68.32428620000017],[-67.85578365799995,68.31492747600005],[-67.86896725199989,68.30418528900013],[-67.87616939999992,68.28339264500012],[-67.86884518099993,68.26772695500007],[-67.85138912699995,68.26162344000006],[-67.82799231699997,68.26947663000006],[-67.82489986899989,68.27509186400006],[-67.82054602799991,68.29295482000013],[-67.81810462099986,68.29677969000012],[-67.80695553299995,68.29816315300003],[-67.74933834499987,68.31769440300009],[-67.72716223899991,68.32013580900004],[-67.64728756399998,68.31875234600015],[-67.56794186099995,68.33771393400015],[-67.54804439999995,68.34345123900015],[-67.53758704299989,68.34471263200005],[-67.52696692599994,68.34454987200009],[-67.53534908799989,68.33283112200009],[-67.54808508999994,68.32851797100001],[-67.56232662699995,68.32550690300008],[-67.57477779899997,68.31785716400007],[-67.58271236899992,68.30341217700003],[-67.57978268099993,68.294378973],[-67.57428951699998,68.28676992400015],[-67.57477779899997,68.27692291900003],[-67.59483801999994,68.264146226],[-67.69770260299991,68.24957916900014],[-67.69623775899996,68.249457098],[-67.69379635299993,68.24892812700001],[-67.69330807199995,68.2468122420001],[-67.69770260299991,68.24213288],[-67.68224036399991,68.24152252800003],[-67.6368302069999,68.24957916900014],[-67.57884680899994,68.25210195500007],[-67.56114661399992,68.2558047550001],[-67.54930579299986,68.26211172100007],[-67.54255123599992,68.26996491100014],[-67.53319251199989,68.29059479400017],[-67.53620357999989,68.28953685100011],[-67.54051673099991,68.2917341170001],[-67.54303951699993,68.29677969000012],[-67.54063880099997,68.30418528900013],[-67.53636633999986,68.30817291900011],[-67.41942298099991,68.34625885600009],[-67.4035131499999,68.35512929900013],[-67.35651607999998,68.35736725500011],[-67.3314102859999,68.3495954450001],[-67.33519446499992,68.32404205900004],[-67.31505286399988,68.32526276200007],[-67.30040442599997,68.33201732],[-67.27314205599987,68.35138580900009],[-67.25812740799995,68.3570824240001],[-67.24010169199991,68.360052802],[-67.2197973299999,68.36066315300015],[-67.19798743399988,68.3588320980001],[-67.03254146999987,68.32664622600014],[-67.01244055899991,68.31785716400007],[-67.06537838399996,68.30662669500008],[-67.23896236899989,68.29677969000012],[-67.23448645699992,68.29523346600008],[-67.22533118399993,68.29059479400017],[-67.22468014199998,68.28571198100009],[-67.22606360599988,68.28424713700004],[-67.22874915299985,68.28408437700007],[-67.23216712099986,68.283148505],[-67.23896236899989,68.283148505],[-67.27916419199988,68.274115302],[-67.31700598899994,68.25535716400012],[-67.33800208199997,68.22638580900004],[-67.32774817599994,68.18691640800007],[-67.35578365799994,68.16400788000006],[-67.38508053299998,68.15420156500012],[-67.45152747299989,68.15277741100006],[-67.4887182279999,68.15839264500006],[-67.52647864499994,68.1690941430001],[-67.56452389199995,68.17519765800007],[-67.60212154899995,68.16705963700015],[-67.5625707669999,68.15399811400009],[-67.3997289699999,68.1275902360001],[-67.37970943899992,68.12881094],[-67.36530514199995,68.13597239800004],[-67.35033118399991,68.14581940300017],[-67.31529700399992,68.15607330900008],[-67.30040442599997,68.16705963700015],[-67.30785071499994,68.17328522300012],[-67.29845130099991,68.1803246110001],[-67.2847387359999,68.18744538000014],[-67.27476966099991,68.19525788000014],[-67.2765600249999,68.20457591399999],[-67.28266354099989,68.21206289300015],[-67.28742428299998,68.22077057500003],[-67.29100501199994,68.23069896000014],[-67.2936498689999,68.24213288],[-67.13593502499992,68.283148505],[-67.11969967399989,68.28978099200008],[-67.06529700399997,68.29612864799999],[-67.02721106699987,68.29653554900001],[-67.00373287699992,68.29364655200004],[-66.99193274599986,68.29059479400017],[-66.98688717399992,68.2875023460001],[-66.98200436099995,68.28286367400007],[-66.97614498599992,68.278753973],[-66.94420325399992,68.27362702],[-66.89679928299998,68.25910065300015],[-66.78815670499992,68.249416408],[-66.76598059799994,68.24213288],[-66.77387447799991,68.23484935100008],[-66.77521725199992,68.2277692730001],[-66.7753393219999,68.220892645],[-66.77904212099992,68.21426015800013],[-66.7886449859999,68.207993882],[-66.81037350199998,68.20010000200001],[-66.82066809799989,68.19432200700005],[-66.83649654899992,68.17865631700009],[-66.84479732999992,68.16152578300013],[-66.84276282499988,68.14520905200011],[-66.82746334499993,68.132269598],[-66.84874426999987,68.11908600500006],[-66.95750891799992,68.07501862200014],[-66.97077389199995,68.06000397300012],[-66.9714249339999,68.03668854400003],[-66.96015377499992,68.026068427],[-66.9511205719999,68.01923248900006],[-66.94416256399992,68.01618073100018],[-66.93163001199991,68.01984284100003],[-66.92841549399995,68.02875397300006],[-66.92808997299994,68.03986237200009],[-66.92430579299992,68.05036041900017],[-66.90660559799991,68.06468333500005],[-66.82074947799985,68.102972723],[-66.79149329299995,68.11054108300014],[-66.77594967399995,68.11180247600005],[-66.76508541599995,68.11493561400012],[-66.74925696499992,68.1317813170001],[-66.73871822799995,68.13971588700008],[-66.71430416599992,68.14752838700018],[-66.69318600199989,68.14545319200006],[-66.67760169199991,68.13361237200009],[-66.66978919199991,68.11180247600005],[-66.67223059799994,68.112494208],[-66.67711341099991,68.11009349200005],[-66.6819555329999,68.10610586100007],[-66.68407141799992,68.1015485700001],[-66.68305416599993,68.09870026200018],[-66.68065344999991,68.096828518],[-66.67829342399995,68.09406159100014],[-66.67723548099988,68.08820221600011],[-66.67723548099988,68.05036041900017],[-66.68818111899995,68.03204987200012],[-66.70429439999992,68.01459381700015],[-66.72223873599995,67.99966054900001],[-66.73871822799995,67.98895905200008],[-66.70087643099993,67.993597723],[-66.66791744699994,68.00800202000005],[-66.64452063699986,68.03237539300011],[-66.62950598899992,68.10761139500012],[-66.61139889199993,68.13397858300011],[-66.58141028599997,68.14838288],[-66.54010982999992,68.15277741100006],[-66.34601803299992,68.1362165390001],[-66.31354732999995,68.12913646000014],[-66.33409583199989,68.09593333500011],[-66.38206946499989,68.08706289300005],[-66.47801673099988,68.08510976800012],[-66.47801673099988,68.07762278900007],[-66.38923092399995,68.07086823100003],[-66.29987545499992,68.09129466400002],[-66.28612219999991,68.09096914300007],[-66.24836178299992,68.08510976800012],[-66.2403051419999,68.08185455900016],[-66.23875891799986,68.07416413000006],[-66.23957271999987,68.064886786],[-66.23839270699995,68.05719635600009],[-66.22773189999992,68.04092031500015],[-66.21861731699991,68.03359609600015],[-66.18317623599992,68.02301666900007],[-66.18317623599992,68.01618073100018],[-66.21410071499986,68.00507233300006],[-66.29234778599995,67.99428945500013],[-66.32782955599994,67.97528717700014],[-66.35529537699989,67.93976471600014],[-66.36164303299992,67.93427155200014],[-66.37397213399987,67.93036530200014],[-66.3876440089999,67.92096588700012],[-66.40973873599998,67.89956289300007],[-66.39806067599989,67.88947174700009],[-66.40107174399989,67.87832265800007],[-66.41364498599997,67.8691266950001],[-66.43053137899997,67.86542389500006],[-66.50108801999994,67.86310455900009],[-66.63703365799998,67.88605377800009],[-66.69599361899995,67.88979726800012],[-66.74555416599989,67.87909577],[-66.72272701699995,67.87103913000006],[-66.67243404899989,67.868353583],[-66.62592525899996,67.85586172100007],[-66.57188880099997,67.85203685100007],[-66.54999752499992,67.841498114],[-66.51268469999988,67.82973867400013],[-66.42308508999992,67.83584219],[-66.3967179029999,67.81696198100018],[-66.4036352199999,67.79677969000015],[-66.38866126199989,67.78148021],[-66.36725826699993,67.7822940120001],[-66.35448157499987,67.81012604400014],[-66.35456295499993,67.81810130400011],[-66.35627193899995,67.82387929900005],[-66.35981197799995,67.82884349200012],[-66.36534583199995,67.834662177],[-66.36900794199991,67.84194570500001],[-66.36567135299988,67.84739817900014],[-66.35944576699991,67.85248444200006],[-66.35448157499987,67.85854726800007],[-66.34618079299989,67.87132396],[-66.33763587099989,67.88104889500015],[-66.33433997299994,67.89142487200014],[-66.3415014309999,67.90631745000009],[-66.32079016799989,67.91583893400009],[-66.29657955599987,67.94647858300002],[-66.27940833199995,67.96100495000013],[-66.26459713399987,67.96515534100008],[-66.23521887899997,67.96308014500006],[-66.22480221299988,67.96466705900009],[-66.2027074859999,67.97622304900013],[-66.19159908799989,67.98004791900006],[-66.13215084499993,67.98590729400009],[-66.11115475199989,67.99237702000009],[-66.06749426999988,68.01154205900015],[-66.01817786399991,68.02716705900004],[-65.96812903599988,68.03314850500006],[-65.95575924399995,68.04238515800002],[-65.95116126199991,68.05638255400008],[-65.94920813699989,68.083929755],[-65.94452877499995,68.10407135600003],[-65.94420325399992,68.11180247600005],[-65.94892330599993,68.12006256700012],[-65.95649166599989,68.12787506700012],[-65.96271725199995,68.13613515800002],[-65.96344967399997,68.14594147300015],[-65.94884192599994,68.16494375200016],[-65.92817135299993,68.16478099199999],[-65.90741939999992,68.15444570500007],[-65.89240475199992,68.14280833500008],[-65.87092037699998,68.12189362200012],[-65.86713619699987,68.11058177300013],[-65.87861080599988,68.10106028900005],[-65.90265865799995,68.08510976800012],[-65.89195716099991,68.08380768400004],[-65.88219153599988,68.08429596600003],[-65.87413489499994,68.08685944200012],[-65.86851966099994,68.09129466400002],[-65.85480709499993,68.08100006700009],[-65.86229407499988,68.0712344420001],[-65.89240475199992,68.05377838700018],[-65.9105932279999,68.031724351],[-65.92198645699996,68.02090078300007],[-65.93342037699992,68.01618073100018],[-66.03233801999993,67.96100495000013],[-66.03233801999993,67.954779364],[-66.02619381399995,67.954779364],[-66.01593990799992,67.94367096600014],[-65.96100826699993,67.91526927300013],[-65.94420325399992,67.89956289300007],[-65.94587154899995,67.87372467700006],[-65.96552486899989,67.85407135600009],[-65.98969479099989,67.83661530200014],[-66.00507564999992,67.81696198100018],[-66.00568600199989,67.806586005],[-65.99925696499989,67.7883161480001],[-65.99885006399998,67.77602773600016],[-66.00450598899997,67.76325104400011],[-66.02546139199993,67.74062734600015],[-66.03233801999993,67.7282168640001],[-66.02948971299989,67.70897044499999],[-66.01874752499987,67.69025299700012],[-66.01329505099994,67.67169830900009],[-66.02619381399995,67.65314362200009],[-66.01178951699998,67.63662344000004],[-65.99469967399995,67.63678620000017],[-65.98652096299992,67.64862702000012],[-65.99885006399998,67.66673411700005],[-65.97638912699998,67.68183014500006],[-65.96051998599995,67.70246002800017],[-65.95026607999992,67.727484442],[-65.94025631399992,67.77887604400009],[-65.9434301419999,67.78750234600001],[-65.95384680899988,67.80023834800015],[-65.95933997299991,67.817328192],[-65.94603430899991,67.82880280200014],[-65.89195716099991,67.84735748900015],[-65.80894934799991,67.86530182500009],[-65.80024166599995,67.8688011740001],[-65.79515540299991,67.87470123900012],[-65.7930395169999,67.88271719000006],[-65.79010982999998,67.88971588700004],[-65.77057857999992,67.897691148],[-65.76777096299986,67.90949127800015],[-65.77159583199997,67.92328522300005],[-65.77912350199992,67.93427155200014],[-65.79124915299991,67.94318268400015],[-65.81550045499992,67.95661041900014],[-65.82758541599992,67.96841054900013],[-65.80964107999995,67.97492096600001],[-65.79283606699994,67.97353750200013],[-65.77611243399991,67.96963125200016],[-65.75861568899998,67.96841054900013],[-65.74164791599989,67.97182851800011],[-65.69713294199991,67.98895905200008],[-65.65473385299993,67.99811432500015],[-65.51903235599991,67.99510325700005],[-65.50584876199989,67.99559153900005],[-65.48082434799997,68.001857815],[-65.47065182199992,68.002590236],[-65.45189368399986,67.99860260600006],[-65.44684811099992,67.99388255400014],[-65.45494544199994,67.94936758000013],[-65.46528072799995,67.92772044500005],[-65.51903235599991,67.85854726800007],[-65.52948971299989,67.8389346370001],[-65.53791256399995,67.82880280200014],[-65.54950924399986,67.82440827000006],[-65.56163489499997,67.821234442],[-65.58759518099995,67.80711497600005],[-65.61363684799991,67.7995466170001],[-65.61445064999992,67.78945547100015],[-65.60871334499987,67.77781810100005],[-65.6016332669999,67.76923248900012],[-65.58027096299995,67.75568268400015],[-65.51593990799992,67.73224518400009],[-65.46540279899992,67.72304922100001],[-65.44249426999994,67.70978424700009],[-65.42345130099994,67.69220612200014],[-65.40916907499985,67.67357005400007],[-65.37299557199992,67.607367255],[-65.36115475199993,67.59788646],[-65.33165442599989,67.60089752800009],[-65.32494055899994,67.60944245000012],[-65.36473548099994,67.69017161700013],[-65.36762447799995,67.70400625200004],[-65.38036048099991,67.71869538000011],[-65.51768958199992,67.76626211100002],[-65.54466712099989,67.77948639500006],[-65.54950924399986,67.79303620000003],[-65.53766842399992,67.80174388200003],[-65.51109778599997,67.810003973],[-65.4979955719999,67.81696198100018],[-65.49071204299989,67.82396067900005],[-65.47748775899993,67.84491608300011],[-65.42393958199992,67.90395742400015],[-65.41942298099988,67.91376373900009],[-65.38715572799993,67.93024323100015],[-65.37507076699993,67.93427155200014],[-65.29316158799989,67.9404971370001],[-65.18150794199994,67.967230536],[-65.1500951809999,67.98948802300005],[-65.18329830599993,68.01618073100018],[-65.16820227799991,68.03115469],[-65.14911861899992,68.03025950700011],[-65.12804114499991,68.02407461100013],[-65.10692298099988,68.02301666900007],[-65.0973608059999,68.02704498900006],[-65.09190833199997,68.03221263200008],[-65.08726966099994,68.03778717700008],[-65.08027096299985,68.04291413],[-65.05370032499991,68.052435614],[-65.02501380099994,68.05719635600009],[-64.9647924469999,68.052435614],[-64.85020911399991,68.017767645],[-64.77985592399997,68.00828685100011],[-64.74970455599995,68.00071849200005],[-64.71955318899992,67.98517487200014],[-64.75885982999995,67.96539948100003],[-64.88878333199997,67.94037506700012],[-65.01427161399994,67.94855377800003],[-65.06659908799992,67.93427155200014],[-65.03673255099994,67.92544179900007],[-64.97236080599993,67.92479075700011],[-64.94306393099993,67.91376373900009],[-65.00865637899994,67.86888255400008],[-65.04564368399988,67.85175202000012],[-65.08368893099987,67.84491608300011],[-65.08495032499988,67.84723541900017],[-65.09727942599991,67.86196523600007],[-65.10875403599997,67.8666445980001],[-65.11290442599991,67.857123114],[-65.11168372299989,67.84577057500012],[-65.10692298099988,67.84491608300011],[-65.14183508999992,67.80971914300007],[-65.14911861899992,67.79645416900001],[-65.1370743479999,67.79633209800006],[-65.12653561099995,67.79970937700007],[-65.07599850199995,67.82558828300007],[-65.06041419199994,67.82977936400012],[-65.03954016799989,67.83124420800007],[-65.02782141799989,67.82746002800015],[-65.01915442599991,67.81806061400012],[-65.01386471299992,67.80560944199999],[-65.01195227799988,67.79303620000003],[-65.01972408799989,67.78339264500015],[-65.03490149599986,67.78082916900014],[-65.0454809239999,67.77667877800009],[-65.03925533799995,67.76235586100002],[-65.07982337099985,67.75104401200004],[-65.12336178299998,67.74603913],[-65.16405188699989,67.7355410830001],[-65.19627844999991,67.70770905200006],[-65.20075436099998,67.69696686400006],[-65.20270748599992,67.68398672100015],[-65.20311438699994,67.65619538],[-65.19481360599984,67.64374420800006],[-65.1781713529999,67.63947174700014],[-65.16559811099992,67.64423248900006],[-65.1696264309999,67.65936920800006],[-65.15294348899994,67.67450592700006],[-65.14716549399989,67.691066799],[-65.13886471299989,67.70734284100014],[-65.11436926999995,67.72199127800015],[-65.09727942599991,67.725734768],[-65.06383216099997,67.72614166900009],[-65.0467016269999,67.7282168640001],[-65.03758704299995,67.730943101],[-65.02985592399992,67.73444245000017],[-65.0235082669999,67.73822663],[-65.01878821499989,67.74188873900006],[-65.01524817599991,67.74827708500008],[-65.01707923099988,67.75389231999998],[-65.01976477799988,67.7585309920001],[-65.01878821499989,67.76235586100002],[-65.00300045499993,67.7694359400001],[-64.9498998689999,67.77602773600016],[-64.93586178299998,67.78266022300011],[-64.92516028599997,67.78925202],[-64.9131973949999,67.79425690300003],[-64.89525305899988,67.79645416900001],[-64.87568111899992,67.79450104400009],[-64.83429928299998,67.78497955900018],[-64.8161108059999,67.78286367400007],[-64.81427975199992,67.77789948100003],[-64.80903072799993,67.75511302299998],[-64.80650794199991,67.74868398600007],[-64.81749426999997,67.7299665390001],[-64.82367916599995,67.71352773600002],[-64.83482825399994,67.70246002800017],[-64.86054439999992,67.7002627620001],[-64.86054439999992,67.69403717700011],[-64.82636471299992,67.69415924700009],[-64.79564368399994,67.69806549700009],[-64.77342688699989,67.71100495000009],[-64.76496334499993,67.73847077000015],[-64.76142330599995,67.76141998900012],[-64.75499426999994,67.78156159100017],[-64.75202389199991,67.80174388200003],[-64.75873775899987,67.82440827000006],[-64.74079342399992,67.82998281500005],[-64.72435462099992,67.82623932500003],[-64.70787512899994,67.81976959800012],[-64.68980872299991,67.81696198100018],[-64.68150794199994,67.81915924700017],[-64.66559811099992,67.82802969000012],[-64.65571041599992,67.83124420800007],[-64.62397213399996,67.83331940300009],[-64.60704505099997,67.83177317900005],[-64.50348873599995,67.806545315],[-64.45771236899992,67.78925202],[-64.45710201699997,67.76235586100002],[-64.40436764199998,67.77142975500011],[-64.37865149599992,67.77236562700001],[-64.3676244779999,67.758937893],[-64.37157141799989,67.7507184920001],[-64.39500891799995,67.7282168640001],[-64.39610755099989,67.72443268400009],[-64.39484615799998,67.71991608300014],[-64.39460201699993,67.7161319030001],[-64.39875240799998,67.71454498900009],[-64.48957271999987,67.71165599200005],[-64.54478919199988,67.702866929],[-64.59605872299991,67.68793366100014],[-64.64142818899992,67.66673411700005],[-64.62071692599991,67.66714101800015],[-64.44721432199987,67.69537995000002],[-64.39716549399995,67.69660065300002],[-64.37450110599988,67.7002627620001],[-64.35773678299998,67.70840078300002],[-64.32941646999993,67.72980377800015],[-64.31244869699995,67.73505280200014],[-64.28974361899992,67.7294375670001],[-64.26097571499986,67.71430084800011],[-64.2340795559999,67.69594961100007],[-64.21686764199995,67.68040599199999],[-64.20734615799998,67.65424225500014],[-64.22211666599986,67.63617584800012],[-64.2512914699999,67.62653229400014],[-64.28514563699989,67.62518952000006],[-64.25658118399988,67.61570872600005],[-64.22777258999994,67.614243882],[-64.10765540299984,67.62124258000007],[-64.07628333199992,67.61782461100007],[-64.07282467399992,67.60468170800002],[-64.07709713399993,67.58917877800009],[-64.09516354099995,67.56879303600012],[-64.10297604099992,67.55084870000013],[-64.07591712099989,67.54328034100003],[-64.05243893099993,67.54132721600017],[-64.04198157499985,67.53652578300007],[-64.04613196499989,67.52993398600002],[-64.06602942599997,67.52277252800015],[-64.07404537699992,67.52179596600008],[-64.10016842399997,67.52277252800015],[-64.10639400899993,67.51959870000009],[-64.10936438699986,67.50543854400017],[-64.11754309799994,67.50226471600011],[-64.24823971299992,67.46906159100008],[-64.26777096299989,67.46747467700006],[-64.44343014199991,67.481146552],[-64.38756262899997,67.46312083500008],[-64.32677161399994,67.45359935100008],[-64.20319576699993,67.45384349200009],[-64.09760494699987,67.46694570500007],[-64.0448705719999,67.46686432500009],[-63.99714107999992,67.45384349200009],[-63.962269660999915,67.42096588700004],[-63.9475805329999,67.4015567080001],[-63.949940558999934,67.38556549700003],[-63.94159908799989,67.361029364],[-63.954294399999924,67.34320709800012],[-63.97850501199994,67.332993882],[-64.00458736899989,67.33100006700015],[-63.92088782499988,67.318304755],[-63.908395962999855,67.30683014500012],[-63.92341061099997,67.29584381700009],[-63.957590298999975,67.29840729400009],[-64.01825924399992,67.310492255],[-64.3902685214999,67.3366153015],[-64.76227779899995,67.362738348],[-64.79967200399989,67.35146719],[-64.36021887899989,67.30304596600003],[-64.25727291599992,67.30548737200014],[-64.2305395169999,67.29621002800009],[-64.28705807199992,67.27212148600007],[-64.3472387359999,67.25527578300007],[-64.39203854099992,67.25018952000015],[-64.5253393219999,67.2621117210001],[-64.78856360599988,67.22162506700006],[-64.8195287749999,67.20685455900018],[-64.77269446499993,67.19830963700015],[-64.7274877589999,67.20331452],[-64.63520260299995,67.2279727230001],[-64.57489986899992,67.23639557500003],[-64.2979630199999,67.23786041900009],[-64.01170813699986,67.28245677299999],[-63.98424231699991,67.28266022300012],[-63.96296139199992,67.27570221600014],[-63.99962317599994,67.22894928600006],[-64.0214330719999,67.21295807500015],[-64.05268307199987,67.20685455900018],[-64.09137936099991,67.20905182500013],[-64.14655514199995,67.22207265800014],[-64.1657201809999,67.21893952000008],[-64.20319576699993,67.20685455900018],[-64.60912024599989,67.14028554900007],[-64.6644994779999,67.11709219000015],[-64.69664466099994,67.08392975500011],[-64.69530188699986,67.01959870000012],[-64.70038814999987,67.0088565120001],[-64.67365475199995,67.00556061400005],[-64.65843665299988,67.00604889500015],[-64.64509029899997,67.01190827],[-64.63398189999995,67.02122630400014],[-64.62885494699992,67.02692291900001],[-64.61091061099998,67.077582098],[-64.60724850199992,67.08392975500011],[-64.59679114499994,67.09406159100008],[-64.57359778599991,67.10643138200011],[-64.5629369779999,67.11493561400015],[-64.53600012899992,67.12982819199999],[-64.49653072799994,67.13861725500006],[-64.3472387359999,67.1454125020001],[-64.29234778599991,67.15770091400003],[-64.2414037749999,67.16339752800003],[-64.14171301999997,67.1869570980001],[-63.96186275899989,67.18797435100005],[-63.945749477999925,67.19098541900014],[-63.93053137899994,67.19623444200012],[-63.9185684889999,67.2037621110001],[-63.897206183999856,67.23505280200006],[-63.88849850199994,67.24160390800013],[-63.88072669199996,67.24119700700011],[-63.84691321499989,67.23476797100001],[-63.785145636999886,67.24160390800013],[-63.77717037699992,67.238714911],[-63.76549231699994,67.22394440300003],[-63.75788326699998,67.21771881700006],[-63.7434789699999,67.21710846600011],[-63.68927975199995,67.23476797100001],[-63.56749426999993,67.24408600500006],[-63.50487219999985,67.24066803600006],[-63.44908606699994,67.2279727230001],[-63.45396887899992,67.21539948100009],[-63.455922003999966,67.20123932500017],[-63.45588131399999,67.17670319200006],[-63.46312415299992,67.16811758000013],[-63.539051886999935,67.11115143400004],[-63.668527798999975,67.06232330900004],[-63.73749752499989,67.04755280200013],[-63.768055792999945,67.02594635600003],[-63.800404425999936,66.99298737200017],[-63.7958471339999,66.98090241100006],[-63.7711889309999,66.960394598],[-63.77082271999989,66.98541901200012],[-63.76740475199989,67.00336334800006],[-63.75727291599991,67.017035223],[-63.73700924399992,67.02928294500006],[-63.674509243999886,67.05263906500006],[-63.55072994699992,67.07119375200007],[-63.49266516799986,67.09162018400004],[-63.43944251199988,67.12128327000009],[-63.39818274599991,67.15623607],[-63.39850826699995,67.16828034100011],[-63.411610480999904,67.18109772300012],[-63.421457485999944,67.19676341400009],[-63.41209876199991,67.21771881700006],[-63.33238684799994,67.28253815300015],[-63.29649817599997,67.30565013200011],[-63.28522701699995,67.310492255],[-63.26622473899997,67.31256745000012],[-63.212880011999914,67.30304596600003],[-63.20348059799988,67.298773505],[-63.20881100199995,67.28937409100008],[-63.22130286399996,67.27997467700006],[-63.23334713399987,67.27570221600014],[-63.24775143099995,67.27301666900014],[-63.29137122299994,67.25527578300007],[-63.29137122299994,67.24774811400003],[-63.25849361899986,67.24835846600017],[-63.22057044199994,67.25714752800003],[-63.18720455599995,67.2733421900001],[-63.16791744699992,67.29621002800009],[-63.18903561099992,67.30512116100012],[-63.20946204299991,67.31671784100014],[-63.16364498599992,67.33755117400013],[-63.117054816999875,67.33026764500003],[-63.07127844999988,67.31281159100014],[-63.02757727799991,67.30304596600003],[-63.002023891999926,67.28799062700001],[-62.981271938999924,67.25495026200004],[-62.97691809799991,67.22186920799999],[-63.01093502499995,67.20115794499999],[-63.043202277999875,67.17438385600009],[-63.05866451699989,67.16583893400015],[-63.25043697799993,67.13231028900013],[-63.267404751999884,67.12327708500011],[-63.28083248599989,67.11082591400009],[-63.28425045499989,67.09882233300009],[-63.27778072799989,67.09076569200015],[-63.2708227199999,67.086615302],[-63.22992916599986,67.03681061400012],[-63.223459438999946,67.01691315300003],[-63.22284908799992,67.00023021],[-63.22748775899993,66.98602936400007],[-63.2367651029999,66.97406647300015],[-63.285023566999904,66.947455145],[-63.34691321499988,66.93569570500013],[-63.469553188999924,66.92694733300004],[-63.52411861899989,66.91689687700007],[-63.55064856699993,66.90680573100012],[-63.565134243999886,66.8921572940001],[-63.563913540999884,66.88629791900014],[-63.55443274599988,66.87262604400001],[-63.55211341099991,66.86798737200009],[-63.555490688999924,66.85643138200008],[-63.56407630099994,66.84829336100016],[-63.586862758999864,66.83755117400013],[-63.61457271999987,66.82982005400014],[-63.709706183999934,66.82322825700005],[-63.77289791599992,66.83209870000009],[-63.80597896999986,66.83152903900005],[-63.81965084499989,66.81708405200008],[-63.572255011999864,66.80955638200011],[-63.52802486899989,66.81818268400004],[-63.502634243999864,66.82623932500015],[-63.48692786399991,66.83413320500013],[-63.480458136999886,66.84027741100003],[-63.477243618999914,66.84601471600008],[-63.47883053299994,66.85260651200014],[-63.495554165999884,66.87099844],[-63.49592037699991,66.87848541900017],[-63.492746548999946,66.88593170800014],[-63.490671352999925,66.89590078300013],[-63.48680579299992,66.90534088700015],[-63.477487758999864,66.91046784100017],[-63.466013149999924,66.912543036],[-63.45588131399999,66.912583726],[-63.44245357999989,66.910834052],[-63.43614661399993,66.90717194200012],[-63.423817511999914,66.88043854400003],[-63.41551673099991,66.83755117400013],[-63.4146622389999,66.80365631700009],[-63.42365475199995,66.77236562700013],[-63.45588131399999,66.70722077],[-63.428456183999906,66.70783112200014],[-63.41307532499989,66.711615302],[-63.401193813999924,66.72101471600011],[-63.38422604099986,66.73851146000005],[-63.37254798099988,66.7534040390001],[-63.349598761999886,66.79035065300013],[-63.33613033799989,66.8061384140001],[-63.32843990799998,66.83795807500015],[-63.34589596299991,66.86815013200005],[-63.349069790999884,66.89069245000006],[-63.2985326809999,66.89960358300009],[-63.233957485999916,66.90302155199998],[-63.203317837999926,66.9090843770001],[-63.129750128999945,66.93797435100002],[-62.99909420499989,66.94879791900009],[-62.99115963399993,66.95498281500006],[-62.9853002589999,66.96222565300009],[-62.97606360599992,66.96784088700008],[-62.94599361899989,66.97247955900012],[-62.905018683999856,66.9730492210001],[-62.86530514199995,66.9691429710001],[-62.83893795499994,66.960394598],[-62.84459387899995,66.94440338700012],[-62.842966274999924,66.91689687700007],[-62.83600826699993,66.88711172100007],[-62.82591712099986,66.86420319200006],[-62.82213294199993,66.82721588700004],[-62.82274329299991,66.801459052],[-62.82933508999989,66.78974030200001],[-62.83490963399989,66.78534577000012],[-62.860056118999864,66.754339911],[-62.866769985999916,66.73883698100009],[-62.867176886999914,66.72907135600005],[-62.865589972999885,66.72011953300002],[-62.866200324999845,66.70722077],[-62.860056118999864,66.70722077],[-62.875314907999915,66.6908633480001],[-62.89781653599993,66.67279694200005],[-62.9118139309999,66.65477122600005],[-62.90160071499986,66.63825104400014],[-62.88780676999994,66.65143463700012],[-62.84264075399989,66.66941966400005],[-62.82282467399988,66.68329498900013],[-62.821888800999915,66.6908633480001],[-62.831247524999924,66.7119815120001],[-62.83271236899989,66.72085195500013],[-62.82721920499995,66.72736237200006],[-62.8059789699999,66.73956940300012],[-62.79796301999993,66.74811432500003],[-62.805409308999906,66.74811432500003],[-62.787180141999926,66.767767645],[-62.76671301999997,66.77692291900016],[-62.75019283799988,66.78803131699999],[-62.74335689999987,66.81338125200013],[-62.74705969999991,66.81842682500015],[-62.77440344999988,66.8412539730001],[-62.77594967399992,66.85077545800009],[-62.756662563999896,66.8675804710001],[-62.75080318899995,66.87848541900017],[-62.7536108059999,66.88662344000008],[-62.767567511999886,66.90241120000003],[-62.77131100199991,66.912583726],[-62.76939856699993,66.92104726800004],[-62.76366126199988,66.92877838700004],[-62.74705969999991,66.94306061400012],[-62.73017330599993,66.95026276200015],[-62.695627407999915,66.947455145],[-62.681589321999866,66.94989655200014],[-62.665476040999884,66.95477936400003],[-62.60680091099988,66.953558661],[-62.58027096299992,66.94843170800009],[-62.55524654899991,66.938462632],[-62.532826300999886,66.92503489799998],[-62.51398678299994,66.90916575700008],[-62.504709438999896,66.89272695500007],[-62.500681118999914,66.85663483300011],[-62.496937628999916,66.84495677300013],[-62.46996008999994,66.831244208],[-62.43818111899989,66.82758209800015],[-62.411732550999915,66.8178571640001],[-62.40070553299997,66.78603750200007],[-62.32860266799986,66.73615143400008],[-62.31135006399996,66.72768789300007],[-62.30402584499985,66.73346588700004],[-62.296823696999915,66.745266018],[-62.29198157499994,66.75849030200014],[-62.29149329299994,66.7686221370001],[-62.298898891999926,66.77659739800005],[-62.33922278599991,66.7965762390001],[-62.350168423999975,66.80585358300009],[-62.36839758999986,66.82794830900015],[-62.38023841099991,66.83755117400013],[-62.41429602799993,66.84349192900007],[-62.42670650899995,66.84975820500001],[-62.42121334499993,66.86420319200006],[-62.44172115799997,66.89960358300009],[-62.43541419199994,66.90184153900007],[-62.42682857999992,66.90912506700009],[-62.42121334499993,66.912583726],[-62.425038214999944,66.92820872600005],[-62.40802975199997,66.93390534100014],[-62.36314856699997,66.93309153900013],[-62.32274329299992,66.93764883000007],[-62.28400631399999,66.94611237200003],[-62.27204342399994,66.96084219],[-62.27570553299989,66.98086172100007],[-62.298288540999884,67.02252838700004],[-62.291086391999926,67.03412506700013],[-62.28221594999991,67.04218170799999],[-62.27118893099995,67.04718659100003],[-62.257313605999855,67.04979075700011],[-62.249094204999956,67.04922109600015],[-62.23131262899997,67.04425690300009],[-62.22260494699989,67.0429548200001],[-62.21202551999994,67.04368724200005],[-62.201608852999954,67.04580312700013],[-62.18163001199988,67.052923895],[-62.14069576699995,67.06150950700011],[-62.09003658799986,67.0597598330001],[-62.04084225199994,67.05060455900004],[-62.00409908799986,67.03681061400012],[-62.033436652999875,67.013617255],[-62.047596808999884,66.99835846600003],[-62.058094855999855,66.98151276200004],[-62.06000729099992,66.97357819200006],[-62.06244869699995,66.95319245000017],[-62.0648901029999,66.94611237200003],[-62.07323157499985,66.93878815300012],[-62.096140102999954,66.926703192],[-62.10590572799989,66.91941966400002],[-62.08356686099995,66.91225820500016],[-62.05817623599995,66.90851471600003],[-62.03441321499994,66.90859609600001],[-62.01716061099992,66.912583726],[-61.9560033839999,66.96303945500001],[-61.94432532499988,66.96942780200011],[-61.92772376199994,66.97406647300015],[-61.906320766999976,66.97614166900017],[-61.83897864499996,66.97406647300015],[-61.84430904899994,66.96621328300007],[-61.86628170499995,66.94611237200003],[-61.84581458199988,66.93724192900008],[-61.824167446999894,66.94106679900008],[-61.8012182279999,66.9492048200001],[-61.77692623599992,66.953558661],[-61.75361080599992,66.95123932500002],[-61.73924719999985,66.94456614799999],[-61.73607337099989,66.93301015800012],[-61.74653072799986,66.91608307500015],[-61.797108527999846,66.89374420800014],[-61.9313451809999,66.90534088700015],[-61.989491339999944,66.89590078300013],[-62.00829016799989,66.880072333],[-61.99962317599988,66.87205638200004],[-61.97834225199992,66.87262604400001],[-61.9356176419999,66.89158763200012],[-61.80317135299996,66.88906484600004],[-61.77924557199989,66.88361237200009],[-61.75593014199998,66.88165924700003],[-61.700632290999884,66.89386627800012],[-61.60558020699989,66.87164948100015],[-61.62743079299991,66.84601471600008],[-61.65864010299989,66.83413320500013],[-61.72972571499986,66.830715236],[-61.66283118399994,66.81118398600013],[-61.50593014199995,66.80499909100017],[-61.447946743999864,66.7686221370001],[-61.46906490799997,66.76178620000016],[-61.45018469999985,66.75250885600003],[-61.407419399999945,66.7475039730001],[-61.389881964999915,66.73851146000005],[-61.35932369699986,66.71246979400009],[-61.301136847999935,66.67772044500013],[-61.27643795499995,66.65424225500006],[-61.26752682199992,66.6315778670001],[-61.29027258999986,66.61839427300005],[-61.28534908799989,66.61530182500017],[-61.27586829299989,66.60757070500007],[-61.27045650899993,66.60480377800009],[-61.2809545559999,66.59955475500011],[-61.31822669199988,66.59113190300015],[-61.347604946999894,66.57892487200007],[-61.35920162699989,66.57684967700008],[-61.37462317599994,66.57770416900017],[-61.386545376999976,66.5802269550001],[-61.39830481699994,66.58112213700018],[-61.41380774599986,66.57684967700008],[-61.41828365799992,66.57318756700012],[-61.42951412699992,66.56045156500006],[-61.434315558999906,66.5563418640001],[-61.43822180899991,66.5465355490001],[-61.57628333199994,66.55048248900007],[-61.59882564999995,66.5563418640001],[-61.61546790299992,66.56582265800004],[-61.62226314999992,66.57514069200006],[-61.62596594999988,66.58543528899999],[-61.633534308999906,66.59796784100008],[-61.64582271999987,66.60797760600015],[-61.734445766999954,66.64671458500003],[-61.776600714999915,66.65473053600006],[-61.86628170499995,66.65875885600012],[-61.90522213399993,66.66864655200011],[-61.95331783799991,66.68744538000009],[-61.99925696499989,66.69887929900011],[-62.03136145699994,66.68671295800006],[-62.017038540999856,66.6722679710001],[-62.02733313699988,66.65908437700013],[-62.0497533839999,66.64948151200015],[-62.1884252589999,66.63206614799999],[-62.1884252589999,66.62523021000008],[-62.12352454299991,66.61029694200012],[-62.08910071499988,66.60903554900013],[-62.06151282499989,66.62181224200008],[-62.03510494699989,66.63996002800015],[-62.00499426999994,66.64826080900006],[-61.97313391799992,66.649359442],[-61.82152258999991,66.628648179],[-61.794016079999984,66.61469147300004],[-61.77594967399994,66.59910716400013],[-61.66771399599992,66.5257835960001],[-61.64338131399992,66.51349518400004],[-61.60509192599988,66.50556061400006],[-61.59105383999995,66.49795156500012],[-61.58112545499994,66.48798248900015],[-61.58202063699995,66.47785065300008],[-61.59467525899989,66.47020091400005],[-61.613026495999854,66.46499258000016],[-61.647206183999856,66.46015045800009],[-61.704701300999936,66.46238841400007],[-61.72288977799993,66.46015045800009],[-61.73631751199991,66.45384349200005],[-61.76362057199992,66.43646881700006],[-61.77753658799989,66.43280670800002],[-61.79478919199991,66.43496328300002],[-61.82420813699988,66.44440338700004],[-61.838612433999856,66.44647858300014],[-61.87682044199992,66.44647858300014],[-61.8833715489999,66.44456614799999],[-61.89488684799994,66.43573639500012],[-61.90046139199992,66.43280670800002],[-61.98981686099995,66.41917552300008],[-61.98981686099995,66.41233958500005],[-61.959299282999915,66.40448639500006],[-61.92756100199997,66.40631745000003],[-61.86628170499995,66.41917552300008],[-61.564645962999855,66.41917552300008],[-61.549427863999874,66.416449286],[-61.541371222999935,66.40957265800007],[-61.53465735599991,66.40062083500005],[-61.52367102799994,66.39183177299999],[-61.477528449999916,66.37938060100008],[-61.46222896999986,66.37140534100003],[-61.49229895699989,66.36741771000014],[-61.541696743999864,66.34926992400013],[-61.564645962999855,66.34406159100014],[-61.578073696999944,66.34511953300002],[-61.60529537699994,66.350775458],[-61.619862433999884,66.35028717700003],[-61.63060462099988,66.34650299700009],[-61.64989173099994,66.33490631700006],[-61.66083736899989,66.33038971600011],[-61.690134243999914,66.3295759140001],[-61.75389563699986,66.341742255],[-61.784372524999895,66.33722565300003],[-61.80683346299991,66.323960679],[-61.82770748599997,66.30817291900014],[-61.850046352999904,66.29498932500009],[-61.87682044199992,66.28945547100008],[-61.934559699999845,66.28945547100008],[-61.950062628999945,66.29165273600007],[-61.97858639199995,66.30097077000012],[-62.0160619779999,66.30735911700005],[-62.05842037699989,66.32615794499999],[-62.08226477799988,66.33038971600011],[-62.096140102999954,66.32831452],[-62.11286373599998,66.31891510600015],[-62.12641354099995,66.31679922100015],[-62.195261196999915,66.31679922100015],[-62.21165930899991,66.32371653900005],[-62.22008216099988,66.33991120000012],[-62.226511196999894,66.358099677],[-62.23688717399989,66.37140534100003],[-62.21955318899989,66.39716217700006],[-62.25177975199995,66.407375393],[-62.322214321999915,66.40892161700005],[-62.33613033799992,66.41547272300012],[-62.375721808999856,66.41840241100014],[-62.41584225199997,66.42593008000001],[-62.49010169199988,66.42601146],[-62.60737057199995,66.44220612200003],[-62.62665768099989,66.44025299700009],[-62.62238521999987,66.427191473],[-62.610178188999896,66.41608307500017],[-62.60631262899988,66.40839264500005],[-62.62694251199991,66.40550364800013],[-62.64863033799988,66.40888092700006],[-62.671457485999916,66.41498444200012],[-62.69428463399992,66.41803620000003],[-62.716013149999895,66.41233958500005],[-62.691965298999975,66.40102773600015],[-62.653635219999835,66.39093659100008],[-62.61473548099993,66.38739655200011],[-62.58910071499989,66.39557526200004],[-62.56615149599989,66.40696849199999],[-62.53258216099994,66.41095612200014],[-62.49897213399992,66.40810781500012],[-62.47581946499988,66.39931875200016],[-62.47057044199991,66.37002187700013],[-62.41771399599995,66.34357330900015],[-62.35460364499995,66.320990302],[-62.318796352999925,66.30312734600004],[-62.340524868999886,66.299790757],[-62.40070553299997,66.27521393400018],[-62.47992916599995,66.26642487200012],[-62.57380123599992,66.23676178600009],[-62.61554928299994,66.230169989],[-62.63971920499994,66.22296784100017],[-62.66425533799988,66.21963125200013],[-62.688099738999966,66.22736237200014],[-62.69123287699994,66.23639557500015],[-62.742909308999884,66.24648672100012],[-62.76439368399991,66.25470612200003],[-62.76158606699993,66.25849030200006],[-62.757028774999924,66.26837799700014],[-62.76707923099988,66.27065664300012],[-62.774118618999864,66.27521393400018],[-62.779408331999925,66.28164297100008],[-62.78429114499992,66.28945547100008],[-62.784372524999895,66.29535553600012],[-62.779855923999925,66.29889557500009],[-62.779367641999926,66.30451080900009],[-62.791737433999884,66.31679922100015],[-62.81371008999989,66.32819245000003],[-62.840280727999954,66.33441803600009],[-62.89415442599997,66.33722565300003],[-62.89415442599997,66.33038971600011],[-62.869211391999954,66.31932200700008],[-62.848947719999835,66.30687083500005],[-62.81220455599992,66.27521393400018],[-62.81965084499992,66.26837799700014],[-62.801991339999915,66.24494049700007],[-62.77668209499987,66.23383209800006],[-62.74946041599986,66.2254906270001],[-62.72594153599991,66.2103539080001],[-62.69904537699992,66.19814687700001],[-62.66209876199988,66.19928620000013],[-62.538522915999884,66.22736237200014],[-62.524973110999916,66.22426992400005],[-62.50096594999988,66.21010976800015],[-62.4934789699999,66.2069359400001],[-62.451649542999895,66.19537995000015],[-62.37861080599989,66.18537018400015],[-62.35973059799994,66.18577708500008],[-62.35680091099994,66.16868724200012],[-62.32648678299994,66.16071198100018],[-62.137440558999906,66.15452708500011],[-62.10590572799989,66.14484284100014],[-62.15453040299985,66.13149648600013],[-62.1703588529999,66.1207949890001],[-62.15428626199991,66.10390859600012],[-62.1282852859999,66.09857819200006],[-62.065378383999864,66.10578034100008],[-62.03758704299991,66.10390859600012],[-62.03758704299991,66.09764232],[-62.048939581999974,66.096625067],[-62.059681769999884,66.09389883000011],[-62.0696508449999,66.08950429900014],[-62.07856197799993,66.08344147300006],[-62.04246985599988,66.08445872600011],[-62.0250951809999,66.082505601],[-62.01032467399992,66.07591380400002],[-62.03730221299989,66.07001373900006],[-62.09178626199985,66.06610748900006],[-62.11335201699995,66.0560977230001],[-62.09959876199985,66.05011627800017],[-62.08360755099994,66.048285223],[-61.99274654899988,66.05019765800014],[-61.97923743399991,66.04584381700006],[-61.96019446499991,66.03001536700013],[-61.954213019999905,66.01976146],[-61.96564693899995,66.0150820980001],[-62.02399654899994,66.021918036],[-62.05536861899989,66.01837799700002],[-62.11143958199991,66.00043366100006],[-62.14032955599993,66.00458405200011],[-62.17048092399995,66.01215241100005],[-62.19989986899994,66.01056549700003],[-62.30231686099996,65.980902411],[-62.318796352999925,65.980943101],[-62.33173580599993,65.98493073100015],[-62.3582250639999,65.99848053600012],[-62.37031002499989,66.00145091400005],[-62.38316809799994,66.00653717700006],[-62.39683997299997,66.016302802],[-62.410878058999906,66.02301666900014],[-62.44111080599993,66.01264069200015],[-62.460926886999935,66.01577383],[-62.496937628999916,66.02944570500016],[-62.528513149999895,66.03558991100012],[-62.62352454299992,66.02944570500016],[-62.63837643099986,66.03082916900003],[-62.673898891999954,66.03978099200008],[-62.688710089999915,66.04584381700006],[-62.70856686099992,66.05011627800017],[-62.727365688999974,66.04612864799999],[-62.745716925999915,66.03945547100011],[-62.76439368399991,66.03558991100012],[-62.78522701699998,66.03766510600015],[-62.80683346299989,66.044378973],[-62.82685299399996,66.05442942900008],[-62.84264075399989,66.06663646000005],[-62.853505011999886,66.08226146000014],[-62.86742102799988,66.11603424700003],[-62.87987219999987,66.13117096600003],[-62.92365475199994,66.15119049700007],[-62.97215735599991,66.15086497600005],[-63.06550045499992,66.12433502800009],[-63.04755611899989,66.11733633000001],[-63.02428137899995,66.11749909100008],[-62.952137824999845,66.12791575700008],[-62.94074459499989,66.12791575700008],[-62.92829342399997,66.12433502800009],[-62.92039954299992,66.11859772300012],[-62.89789791599992,66.09764232],[-62.886830206999974,66.07001373900006],[-62.87409420499991,66.05101146000005],[-62.84882564999986,66.03925202000009],[-62.83275305899988,66.02509186400006],[-62.82282467399988,66.021918036],[-62.53168697799987,66.00763580900009],[-62.511667446999894,65.99974192900014],[-62.49579830599987,65.98411692900005],[-62.47716223899988,65.97272370000007],[-62.448841925999936,65.97760651200015],[-62.42890377499995,65.978705145],[-62.40937252499987,65.967962958],[-62.394113735999895,65.95066966399999],[-62.38707434799991,65.93256256700009],[-62.45600338399987,65.92572663000006],[-62.443470831999974,65.919134833],[-62.43317623599995,65.91217682500007],[-62.42039954299991,65.906887111],[-62.40070553299997,65.905218817],[-62.38133704299986,65.9120954450001],[-62.36860104099989,65.91478099199999],[-62.35973059799994,65.9120954450001],[-62.35826575399988,65.90375397300015],[-62.36347408799989,65.89655182500012],[-62.37043209499988,65.89203522300006],[-62.37401282499985,65.89158763200005],[-62.371937628999916,65.87616608300011],[-62.36957760299987,65.868109442],[-62.36237545499995,65.86155833500011],[-62.30638587099988,65.82892487200014],[-62.29149329299994,65.822699286],[-62.30211341099987,65.81171295800014],[-62.31773841099988,65.81049225500011],[-62.35289466099994,65.8158633480001],[-62.369252081999946,65.81378815300015],[-62.39985104099986,65.80438873900015],[-62.51032467399992,65.79328034100011],[-62.538522915999884,65.80223216400005],[-62.52485104099994,65.8158633480001],[-62.53779049399995,65.81854889500005],[-62.547189907999986,65.81663646000003],[-62.555653449999916,65.81281159100008],[-62.565785285999965,65.809719143],[-62.58246822799989,65.80780670800006],[-62.64460201699992,65.81077708500005],[-62.7103979159999,65.82754140800007],[-62.71845455599992,65.83197663000006],[-62.732777472999906,65.84686920800003],[-62.74262447799995,65.85382721600008],[-62.755482550999965,65.85932038000011],[-62.76911373599992,65.86298248900009],[-62.780873175999886,65.86432526200015],[-62.79246985599991,65.86701080900006],[-62.796579555999955,65.87392812700013],[-62.79889889199992,65.88279857],[-62.805409308999906,65.89158763200005],[-62.82551021999987,65.90082428600012],[-62.85224361899989,65.90766022300012],[-62.8707983059999,65.90814850500011],[-62.866200324999845,65.89838288],[-62.87169348899988,65.892279364],[-62.87287350199989,65.88934967700008],[-62.8736466139999,65.88475169500003],[-62.82848059799997,65.86774323100018],[-62.81220455599992,65.86432526200015],[-62.815297003999916,65.86025625200001],[-62.817087368999914,65.85667552300005],[-62.81981360599988,65.85358307500015],[-62.82591712099986,65.85065338700004],[-62.82591712099986,65.84320709800006],[-62.806263800999915,65.83930084800006],[-62.74176998599995,65.813625393],[-62.7285863919999,65.81297435100005],[-62.69896399599995,65.8158633480001],[-62.67487545499992,65.8084984400001],[-62.611683722999935,65.776068427],[-62.58226477799985,65.768703518],[-62.57176673099988,65.76260000200001],[-62.57396399599989,65.7487246770001],[-62.5821020169999,65.7336286480001],[-62.58910071499989,65.72402578300013],[-62.60224361899992,65.72333405199998],[-62.65282141799991,65.73273346600003],[-62.68944251199985,65.7445335960001],[-62.82664954299988,65.76801178600006],[-62.84638424399992,65.768703518],[-62.819772915999884,65.73200104400009],[-62.78229732999995,65.719427802],[-62.688099738999966,65.71344635600009],[-62.669789191999904,65.70571523600006],[-62.64073645699991,65.68378327000013],[-62.59801184799991,65.67487213700012],[-62.594186977999904,65.66400788000011],[-62.601429816999904,65.65058014500012],[-62.612985805999955,65.63837311400006],[-62.61823482999991,65.62124258000004],[-62.635609503999916,65.59955475500014],[-62.65717525899993,65.58877187700013],[-62.67503821499989,65.60419342700008],[-62.65326900899992,65.63076406500012],[-62.67516028599997,65.63906484600001],[-62.710560675999965,65.63410065300015],[-62.729074673999975,65.62099844000008],[-62.72594153599991,65.60077545800004],[-62.73066158799991,65.59308502800003],[-62.74705969999991,65.58999258000016],[-62.76695716099991,65.59125397300006],[-62.785104946999915,65.59520091400005],[-62.80235755099991,65.60162995000015],[-62.81965084499992,65.61041901200004],[-62.8248184889999,65.6166039080001],[-62.82640540299985,65.62913646],[-62.83238684799998,65.63153717700014],[-62.84394283799988,65.63178131700009],[-62.85053463399987,65.63328685100014],[-62.854969855999855,65.63743724199999],[-62.860056118999864,65.64520905200008],[-62.86253821499989,65.65477122600008],[-62.866200324999845,65.69643789300011],[-62.87608801999993,65.72394440300015],[-62.90058346299989,65.74774811400015],[-62.93211829299989,65.76056549700009],[-62.96308346299991,65.75507233300004],[-62.93480383999988,65.741888739],[-62.92072506399993,65.73334381700009],[-62.91466223899993,65.72402578300013],[-62.91315670499997,65.69721100500014],[-62.90778561099992,65.67251211100016],[-62.89696204299992,65.64996979400017],[-62.896555141999926,65.64081452],[-62.904733852999925,65.62783437700001],[-62.95966549399992,65.58999258000016],[-62.992258266999954,65.58844635600012],[-63.00133216099988,65.59406159100003],[-63.01085364499996,65.61041901200004],[-63.01044674399986,65.61855703300013],[-63.008534308999906,65.62775299700003],[-63.0137426419999,65.635239976],[-63.160104946999915,65.64923737200014],[-63.16816158799986,65.64496491100012],[-63.16169186099995,65.63153717700014],[-63.19615637899988,65.6337344420001],[-63.216175910999944,65.64960358300006],[-63.231149868999886,65.67182038000011],[-63.25043697799993,65.69301992400001],[-63.30492102799991,65.72284577],[-63.32953854099991,65.74140045800011],[-63.33983313699994,65.76496002800015],[-63.35204016799992,65.78229401200015],[-63.43232174399992,65.84686920800003],[-63.44749915299991,65.873724677],[-63.459909633999956,65.90717194200006],[-63.47642981699992,65.93357982000005],[-63.50125077999988,65.93874746300004],[-63.504709438999974,65.93817780200008],[-63.51008053299992,65.93650950700005],[-63.51427161399997,65.93292877800009],[-63.517933722999906,65.92572663000006],[-63.51048743399994,65.92572663000006],[-63.517933722999906,65.91958242400007],[-63.511586066999875,65.90770091400013],[-63.514475063999924,65.89777252800003],[-63.53160559799994,65.87791575700011],[-63.48326575399994,65.84918854400017],[-63.41193600199995,65.762681382],[-63.367136196999915,65.73395416900006],[-63.37433834499987,65.72919342700014],[-63.38764400899987,65.71344635600009],[-63.37604732999994,65.70661041900017],[-63.36473548099988,65.69672272300006],[-63.3546850249999,65.68488190300009],[-63.34666907499986,65.67251211100016],[-63.375721808999934,65.672308661],[-63.463327602999954,65.6861839860001],[-63.5794164699999,65.67934804900007],[-63.59247799399986,65.66962311400012],[-63.601918097999885,65.66559479400014],[-63.62336178299992,65.67357005400011],[-63.71080481699988,65.68252187700011],[-63.72142493399992,65.67926666900009],[-63.71430416599989,65.66990794500008],[-63.68956458199989,65.65509674700007],[-63.66425533799986,65.64891185100011],[-63.58625240799993,65.658840236],[-63.56159420499992,65.6545270850001],[-63.51960201699992,65.63580963700015],[-63.49750729099995,65.63153717700014],[-63.38422604099986,65.63837311400006],[-63.36656653599993,65.633490302],[-63.3486221999999,65.62181224199999],[-63.31871497299991,65.5967471370001],[-63.32453365799997,65.5949567730001],[-63.32787024599991,65.5928408870001],[-63.331979946999944,65.59096914300012],[-63.33983313699994,65.58999258000016],[-63.33503170499994,65.58063385600003],[-63.33238684799994,65.57689036699999],[-63.35334225199991,65.54682038000006],[-63.36664791599991,65.5383161480001],[-63.480091925999965,65.528509833],[-63.49653072799987,65.53343333500005],[-63.51276607999992,65.54511139500015],[-63.554676886999914,65.58315664300012],[-63.567860480999876,65.591498114],[-63.583607550999915,65.59564850500006],[-63.607370571999915,65.5967471370001],[-63.607370571999915,65.58999258000016],[-63.60175533799992,65.588568427],[-63.586862758999864,65.58315664300012],[-63.586862758999864,65.57689036699999],[-63.58995520699995,65.57050202000005],[-63.58674068899989,65.56366608300006],[-63.57258053299997,65.54897695500013],[-63.59679114499997,65.55280182500015],[-63.60883541599989,65.55215078300002],[-63.62035071499992,65.54897695500013],[-63.60179602799991,65.53245677300008],[-63.54218502499989,65.52171458500004],[-63.52415930899988,65.50116608300011],[-63.53046627499992,65.4855817730001],[-63.518747524999924,65.48240794500005],[-63.48692786399991,65.48749420800007],[-63.45274817599991,65.48761627800015],[-63.439279751999926,65.4855817730001],[-63.29137122299994,65.43976471600003],[-63.29137122299994,65.43231842700006],[-63.31371008999988,65.432562567],[-63.35216223899988,65.43960195500016],[-63.37336178299998,65.43976471600003],[-63.39850826699995,65.43317291900014],[-63.40868079299992,65.43231842700006],[-63.42414303299993,65.43374258000001],[-63.57160396999989,65.4740664730001],[-63.62739010299989,65.48029205900004],[-63.65510006399998,65.46702708500011],[-63.463327602999954,65.40558502800003],[-63.40623938699988,65.40302155200011],[-63.38764400899987,65.39813873900006],[-63.52415930899988,65.39191315300008],[-63.52415930899988,65.38507721600008],[-63.463327602999954,65.38507721600008],[-63.463327602999954,65.377630927],[-63.472889777999846,65.378078518],[-63.48094641799989,65.37669505400011],[-63.49750729099995,65.37083567900008],[-63.470773891999926,65.36066315300003],[-63.469553188999924,65.35716380400014],[-63.44530188699991,65.3530134140001],[-63.37336178299998,65.32982005400007],[-63.38231360599991,65.31378815300017],[-63.38764400899987,65.30878327000012],[-63.36302649599986,65.3089053410001],[-63.35114498599992,65.3067894550001],[-63.33983313699994,65.30255768400018],[-63.36664791599991,65.2960472680001],[-63.41816158799992,65.30044179900005],[-63.44225012899994,65.29572174700014],[-63.456613735999916,65.28489817900005],[-63.44672604099989,65.27899811400012],[-63.426258917999945,65.274400132],[-63.40868079299992,65.26776764500012],[-63.398304816999904,65.27326080900015],[-63.38776607999995,65.27533600500009],[-63.363718227999904,65.27521393400009],[-63.352406378999916,65.27191803600006],[-63.34308834499989,65.26471588700004],[-63.34064693899995,65.25747304900001],[-63.350331183999906,65.25413646],[-63.40546627499995,65.25385163000006],[-63.43342037699997,65.25014883000001],[-63.45588131399999,65.24115631700009],[-63.43407141799992,65.23281484600001],[-63.34691321499988,65.22687409100008],[-63.32380123599995,65.22150299700003],[-63.31330318899998,65.20978424700014],[-63.31773841099993,65.19806549700014],[-63.3395483059999,65.19269440300009],[-63.34845943899993,65.19456614800008],[-63.36237545499991,65.20343659100001],[-63.37336178299998,65.20636627800003],[-63.380075649999924,65.20579661700008],[-63.40868079299992,65.20014069200009],[-63.494577602999925,65.20148346600017],[-63.517933722999906,65.19269440300009],[-63.43602454299989,65.17218659100014],[-63.44660396999993,65.16787344000015],[-63.458241339999944,65.16535065300003],[-63.470651821999866,65.1645368510001],[-63.48322506399996,65.16535065300003],[-63.44847571499988,65.15818919499999],[-63.373483852999954,65.1537946640001],[-63.33983313699994,65.14492422100015],[-63.35521399599989,65.1269391950001],[-63.37934322799989,65.118353583],[-63.40770423099993,65.11277903900002],[-63.43602454299989,65.10394928600014],[-63.42320716099994,65.10049062700011],[-63.417836066999875,65.09320709800012],[-63.41380774599991,65.08612702000006],[-63.40497799399986,65.08283112200003],[-63.39476477799992,65.08104075700014],[-63.37665768099992,65.07233307500015],[-63.367136196999915,65.06915924700009],[-63.38866126199994,65.06195709800006],[-63.413889126999884,65.06024811400006],[-63.463327602999954,65.06232330900015],[-63.463327602999954,65.05548737200014],[-63.38764400899987,65.049302476],[-63.38764400899987,65.04189687700001],[-63.40522213399989,65.03278229400011],[-63.422718878999945,65.03286367400008],[-63.44318600199992,65.03571198100003],[-63.469553188999924,65.0350609400001],[-63.460926886999914,65.01544830900012],[-63.45588131399999,65.00771719],[-63.47248287699995,64.99673086100013],[-63.53160559799994,64.97296784100014],[-63.524728969999835,64.97052643400012],[-63.51060950399991,64.96259186400006],[-63.50434322799987,64.95994700700005],[-63.52558346299994,64.947699286],[-63.533762173999946,64.94049713700015],[-63.53844153599988,64.932603257],[-63.53465735599985,64.92495351800007],[-63.52696692599991,64.913478908],[-63.52411861899989,64.90302155200014],[-63.53502356699997,64.89850495000009],[-63.59076900899987,64.90314362200012],[-63.65510006399998,64.9183617210001],[-63.638742641999954,64.92426178600012],[-63.63459225199991,64.93113841400013],[-63.64240475199991,64.93854401200011],[-63.661936001999884,64.94562409100008],[-63.62083899599991,64.95636627800009],[-63.60517330599993,64.96548086100007],[-63.607370571999915,64.9804141300001],[-63.602406378999966,64.99445221600007],[-63.61274166599989,65.00287506700012],[-63.62975012899994,65.004299221],[-63.644886847999935,64.99750397300005],[-63.65733801999994,64.98940664300015],[-63.70234127499995,64.9804141300001],[-63.73652096299992,64.96792226800004],[-63.756296352999954,64.9658877620001],[-63.76496334499988,64.97671133000006],[-63.77350826699995,64.97943756700005],[-63.82579505099998,64.98663971600008],[-63.82579505099998,64.99408600500006],[-63.82026119699996,64.99721914300012],[-63.81737219999991,65.000474351],[-63.815297003999916,65.00385163],[-63.81220455599993,65.00771719],[-63.81550045499995,65.00804271000014],[-63.82579505099998,65.00771719],[-63.82579505099998,65.01459381700012],[-63.76496334499988,65.01459381700012],[-63.76764889199992,65.01878489800005],[-63.7685440749999,65.01935455900012],[-63.7711889309999,65.02142975500014],[-63.7434789699999,65.0306664080001],[-63.65510006399998,65.04189687700001],[-63.68378658799995,65.05076732000005],[-63.719838019999884,65.05565013200011],[-63.7551977199999,65.05280182500017],[-63.78172766799989,65.0384789080001],[-63.80736243399994,65.02948639500006],[-63.84410559799994,65.03143952000012],[-63.87096106699991,65.04450104400009],[-63.866769985999895,65.06915924700009],[-63.885121222999935,65.08612702000006],[-63.88044186099992,65.10407135600012],[-63.86225338399993,65.12164948100003],[-63.80207271999987,65.16445547100012],[-63.79157467399989,65.1793480490001],[-63.809071417999945,65.18585846600008],[-63.83027096299995,65.18598053600006],[-63.85387122299997,65.1835798200001],[-63.873117641999926,65.17479075700005],[-63.88475501199992,65.14313385600015],[-63.89256751199991,65.14008209800006],[-63.899769660999965,65.14215729400009],[-63.90156002499995,65.14492422100015],[-63.94871985599993,65.10980866100009],[-63.968861456999974,65.10138580900004],[-63.99128170499997,65.09926992400004],[-64.01764889199998,65.10394928600014],[-64.05854244699992,65.12132396000011],[-64.07323157499991,65.12018463700018],[-64.07905025899987,65.1002464860001],[-64.08189856699991,65.077337958],[-64.09162350199995,65.06150950700005],[-64.10973059799997,65.05231354400009],[-64.13801021999993,65.049302476],[-64.15318762899992,65.05536530199998],[-64.21064205599993,65.09650299700014],[-64.20055091099994,65.10236237200012],[-64.19635982999992,65.10394928600014],[-64.19635982999992,65.11009349200009],[-64.21849524599989,65.10858795800006],[-64.23957271999991,65.10187409100003],[-64.25947018099993,65.09764232000002],[-64.27826900899996,65.10394928600014],[-64.25483150899989,65.11847565300017],[-64.20689856699988,65.16229889500012],[-64.17845618399986,65.176703192],[-64.10973059799997,65.18964264499999],[-64.07905025899987,65.20014069200009],[-64.07905025899987,65.20636627800003],[-64.11469479099992,65.20831940300009],[-64.22740637899994,65.20014069200009],[-64.23713131399998,65.19672272300006],[-64.2504369779999,65.18183014500003],[-64.26121985599991,65.17841217700003],[-64.2772924469999,65.17641836100007],[-64.29352779899992,65.17145416900003],[-64.31928463399987,65.15916575700005],[-64.32103430899987,65.15277741100014],[-64.32823645699989,65.15119049700012],[-64.33604895699989,65.15436432500017],[-64.34614010299995,65.17568594000012],[-64.37433834499993,65.17926666900011],[-64.38068600199995,65.18927643400009],[-64.3827611969999,65.19708893400018],[-64.39207923099991,65.216498114],[-64.39500891799995,65.22687409100008],[-64.39549719999994,65.23769765800007],[-64.39452063699986,65.24689362200014],[-64.39203854099992,65.25454336100007],[-64.38813229099995,65.26097239800002],[-64.37743079299992,65.26561107000013],[-64.35395260299995,65.28017812700016],[-64.3382055329999,65.29547760600012],[-64.35057532499994,65.30255768400018],[-64.36656653599994,65.29653554900007],[-64.38548743399986,65.2851423200001],[-64.3999731109999,65.27899811400012],[-64.40245520699992,65.28827545800009],[-64.4086401029999,65.28827545800009],[-64.3921606109999,65.304144598],[-64.33775794199991,65.333197333],[-64.3261205719999,65.34723541900003],[-64.25165768099991,65.39191315300008],[-64.25165768099991,65.39813873900006],[-64.26463782499991,65.40558502800003],[-64.25556393099993,65.41014231999998],[-64.24787350199989,65.4160016950001],[-64.24176998599992,65.42328522300012],[-64.23737545499992,65.43231842700006],[-64.28229732999992,65.43065013200014],[-64.2980443999999,65.423000393],[-64.29259192599994,65.40558502800003],[-64.30732174399995,65.40005117400001],[-64.33617102799988,65.39301178600014],[-64.3472387359999,65.38507721600008],[-64.35411536399991,65.37091705900015],[-64.35383053299998,65.36090729400017],[-64.35700436099995,65.35272858300004],[-64.37450110599988,65.34349192900002],[-64.42186438699994,65.33649323100002],[-64.43598385299987,65.32982005400007],[-64.44611568899992,65.31952545800006],[-64.46772213399993,65.29173411699999],[-64.47752844999985,65.28204987200003],[-64.47752844999985,65.27521393400009],[-64.45575924399988,65.24152252800009],[-64.4622289699999,65.20620351800007],[-64.50483150899993,65.14492422100015],[-64.53673255099993,65.10907623900006],[-64.55711829299992,65.09320709800012],[-64.5663549469999,65.1002464860001],[-64.57331295499996,65.12636953300013],[-64.59125729099992,65.13056061400007],[-64.61542721299995,65.12547435100004],[-64.64142818899992,65.12376536700005],[-64.64142818899992,65.13129303600003],[-64.63434811099995,65.13247304900013],[-64.6211645169999,65.1364199890001],[-64.61347408799989,65.13743724199999],[-64.62372799399992,65.14834219000006],[-64.63487708199995,65.153021552],[-64.63988196499987,65.15790436400005],[-64.61847896999993,65.1835798200001],[-64.61693274599989,65.19245026200015],[-64.62519283799988,65.19546133000016],[-64.64142818899992,65.19269440300009],[-64.64793860599991,65.18789297100001],[-64.65131588399993,65.18097565300012],[-64.65741939999992,65.17487213700004],[-64.68785559799996,65.17011139500012],[-64.71222896999984,65.16095612200014],[-64.73082434799994,65.15916575700005],[-64.71971594999991,65.17552317900007],[-64.71263587099995,65.18943919500005],[-64.7024633449999,65.2000186220001],[-64.68236243399994,65.20636627800003],[-64.71198482999989,65.21979401200004],[-64.71568762899994,65.22719961100002],[-64.70343990799995,65.23737213700015],[-64.69127356699988,65.24225495000003],[-64.66218014199993,65.246771552],[-64.6488744779999,65.24730052300008],[-64.6488744779999,65.25413646],[-64.68915768099987,65.251898505],[-64.70429439999987,65.25653717700011],[-64.71031653599988,65.27155182500015],[-64.71471106699997,65.27431875200001],[-64.72504635299985,65.27594635600003],[-64.73664303299996,65.27627187700016],[-64.74506588399993,65.27521393400009],[-64.75047766799989,65.27163320500013],[-64.76496334499993,65.25413646],[-64.79735266799995,65.23965078300013],[-64.83185787699995,65.2433128930001],[-64.86705481699991,65.25934479400017],[-64.90208899599989,65.28204987200003],[-64.85431881399995,65.28204987200003],[-64.86286373599998,65.29311758000016],[-64.87718665299985,65.29706452000015],[-64.89374752499992,65.29865143400018],[-64.90892493399991,65.30255768400018],[-64.90892493399991,65.30878327000012],[-64.89525305899988,65.30878327000012],[-64.87852942599994,65.31631094],[-64.83613033799986,65.32217031500012],[-64.8195287749999,65.32982005400007],[-64.81004798099991,65.32689036700005],[-64.77802486899992,65.31659577000012],[-64.75873775899987,65.31622955900012],[-64.71808834499987,65.32778554900013],[-64.68236243399994,65.34349192900002],[-64.79222571499992,65.35101959800006],[-64.8917943999999,65.336615302],[-64.91510982999996,65.34349192900002],[-64.88817298099991,65.35553620000012],[-64.81798255099994,65.36957428600006],[-64.7508031889999,65.392767645],[-64.67589270699995,65.400580145],[-64.64142818899992,65.411810614],[-64.61937415299991,65.42597077000003],[-64.60773678299992,65.43056875200016],[-64.50861568899995,65.43231842700006],[-64.48932857999992,65.42934804900013],[-64.47321529899995,65.42389557500009],[-64.45848548099985,65.42108795800014],[-64.44343014199991,65.42609284100008],[-64.43183346299992,65.43768952],[-64.4086401029999,65.48069896000005],[-64.42194576699993,65.48647695500001],[-64.43797766799992,65.48615143400009],[-64.45140540299991,65.47894928600006],[-64.45710201699997,65.46332428600006],[-64.46515865799992,65.44953034100014],[-64.48436438699989,65.4420433610001],[-64.50702877499992,65.44090403900007],[-64.5253393219999,65.44651927300005],[-64.51777096299993,65.44782135600013],[-64.49799557199992,65.45335521000008],[-64.49799557199992,65.45962148600003],[-64.61713619699995,65.45359935100011],[-64.63520260299995,65.46332428600006],[-64.64207923099988,65.47064850500009],[-64.65684973899994,65.46332428600006],[-64.67109127499995,65.45184967700011],[-64.67613684799989,65.44651927300005],[-64.69355221299986,65.43870677300008],[-64.70868893099995,65.43537018400004],[-64.74506588399993,65.43231842700006],[-64.7953588529999,65.42035553600012],[-64.81297766799992,65.41864655200011],[-64.87059485599988,65.428168036],[-64.88499915299985,65.42234935100005],[-64.95506751199994,65.40753815300017],[-64.99030514199998,65.39459870000017],[-64.98399817599994,65.377630927],[-65.01020260299987,65.36937083500011],[-65.04218502499987,65.37457916900011],[-65.07245846299986,65.38825104400014],[-65.08702551999991,65.39813873900006],[-65.13182532499994,65.42499420800014],[-65.14537512899989,65.435980536],[-65.14911861899992,65.448960679],[-65.14399166599992,65.46157461100007],[-65.14557857999995,65.47418854400014],[-65.1696264309999,65.48749420800007],[-65.14513098899994,65.49811432500003],[-65.11473548099988,65.50433991100009],[-65.02501380099994,65.51113515800002],[-64.92939205599987,65.528509833],[-64.93407141799989,65.53778717700014],[-64.93683834499987,65.541489976],[-64.93122311099995,65.54523346600003],[-64.90892493399991,65.55516185100011],[-64.90339107999989,65.55597565300003],[-64.89655514199998,65.55499909100013],[-64.89081783799992,65.55499909100013],[-64.88841712099986,65.55890534100014],[-64.88837643099986,65.56476471600008],[-64.88768469999992,65.56688060100011],[-64.88158118399993,65.56940338700012],[-64.86249752499995,65.58266836100013],[-64.85346432199995,65.58734772300006],[-64.84064693899992,65.58999258000016],[-64.82978268099993,65.58909739800008],[-64.80488033799988,65.58356354400014],[-64.79222571499992,65.58315664300012],[-64.80040442599991,65.59210846600017],[-64.83320064999992,65.60732656500015],[-64.83478756399995,65.61188385600009],[-64.8372289699999,65.62262604400011],[-64.8368627589999,65.6334496110001],[-64.83006751199986,65.63837311400006],[-64.7347305979999,65.64533112200014],[-64.71031653599988,65.65135325700005],[-64.71031653599988,65.658840236],[-64.83006751199986,65.665025132],[-64.85265051999994,65.66083405200006],[-64.86986243399986,65.650336005],[-64.96698971299988,65.55890534100014],[-64.99128170499995,65.54800039300007],[-65.02708899599986,65.54559967700011],[-65.09386145699992,65.54897695500013],[-65.15217037699992,65.544826565],[-65.18073482999992,65.54596588700004],[-65.20990963399996,65.55516185100011],[-65.2221166659999,65.5660667990001],[-65.21113033799989,65.57371653900013],[-65.19286048099991,65.58344147300006],[-65.18329830599993,65.60049062700013],[-65.19591223899991,65.60285065300017],[-65.2935277989999,65.560492255],[-65.31281490799995,65.55581289300007],[-65.32892818899992,65.56134674700009],[-65.34089107999995,65.58315664300012],[-65.32612057199987,65.58600495000017],[-65.31004798099988,65.592027085],[-65.30072994699995,65.60040924700014],[-65.30614173099988,65.61041901200004],[-65.30125891799992,65.62962474199999],[-65.26768958199989,65.63837311400006],[-65.22435462099992,65.63930898600013],[-65.17772376199991,65.63011302300008],[-65.11774654899989,65.63837311400006],[-65.10802161399994,65.64472077],[-65.10362708199995,65.67291901200015],[-65.09044348899991,65.67934804900007],[-65.05052649599995,65.68427155200014],[-64.97740637899997,65.70709870000015],[-64.93683834499987,65.71344635600009],[-64.85912024599995,65.712062893],[-64.8225805329999,65.71527741100006],[-64.79222571499992,65.72772858300009],[-64.82481848899988,65.73655833500014],[-65.00145423099991,65.725043036],[-65.06659908799992,65.71344635600009],[-65.09056555899988,65.70473867400001],[-65.13927161399991,65.67731354400014],[-65.15876217399988,65.66193268400009],[-65.18403072799995,65.65672435100011],[-65.45384680899991,65.67934804900007],[-65.44892330599995,65.68939850500006],[-65.40172278599997,65.74823639500012],[-65.38508053299992,65.76422760600002],[-65.37677975199995,65.774359442],[-65.37507076699993,65.78237539300011],[-65.38499915299992,65.7877464860001],[-65.40001380099997,65.78558991099999],[-65.41527258999994,65.77920156500006],[-65.44163977799994,65.759222723],[-65.46629798099991,65.74481842700011],[-65.49071204299989,65.739691473],[-65.50536048099988,65.75507233300004],[-65.5031225249999,65.76675039300015],[-65.49445553299992,65.77850983300011],[-65.47748775899993,65.79604726800007],[-65.45881100199995,65.83242422100014],[-65.45075436099992,65.84320709800006],[-65.37311764199998,65.890082098],[-65.36078854099995,65.90184153899999],[-65.35334225199995,65.91412995000005],[-65.33580481699991,65.92133209800005],[-65.28315182199992,65.92788320500016],[-65.25580807199992,65.937241929],[-65.21161861899986,65.943304755],[-65.1561986969999,65.96137116100003],[-65.12865149599986,65.96670156500006],[-65.13483639199993,65.96670156500006],[-65.10883541599993,65.96849192900005],[-65.06041419199994,65.98395416900009],[-64.96019446499994,66.00092194200006],[-64.93805904899997,66.0072695980001],[-64.90965735599994,66.00531647300012],[-64.80650794199991,65.97418854400014],[-64.81269283799988,65.97418854400014],[-64.79279537699989,65.97378164300012],[-64.77472896999987,65.97016022300006],[-64.75682532499991,65.96845123900006],[-64.73761959499987,65.97418854400014],[-64.74779212099992,65.98358795800006],[-64.76378333199992,65.99237702000012],[-64.78123938699986,65.998968817],[-64.8122045559999,66.00519440300015],[-64.83983313699991,66.02317942900011],[-64.85431881399995,66.02944570500016],[-64.85431881399995,66.03558991100012],[-64.82664954299986,66.05023834800015],[-64.8000382149999,66.07428620000017],[-64.77818762899997,66.10293203300012],[-64.76496334499993,66.13117096600003],[-64.75483150899987,66.16648997600005],[-64.74067135299995,66.19969310100005],[-64.71723385299987,66.224554755],[-64.63878333199992,66.24384186400015],[-64.56012936099992,66.28603750200007],[-64.51878821499992,66.29564036700005],[-64.47590084499993,66.29946523600007],[-64.42988033799989,66.31024811400006],[-64.38715572799987,66.32746002800009],[-64.35399329299993,66.35028717700003],[-64.36961829299992,66.35398997600005],[-64.37975012899997,66.35016510600003],[-64.38727779899995,66.34308502800016],[-64.39500891799995,66.33722565300003],[-64.4055883449999,66.33295319200012],[-64.41295325399989,66.33112213700004],[-64.42231197799993,66.33038971600011],[-64.42817135299987,66.33250560100011],[-64.43529212099992,66.34194570500011],[-64.43968665299991,66.34406159100014],[-64.45360266799989,66.34341054900001],[-64.46674557199995,66.34113190300003],[-64.52989661399994,66.31972890800007],[-64.54487057199987,66.3174502620001],[-64.5629369779999,66.31679922100015],[-64.5810033839999,66.31346263200011],[-64.61595618399991,66.29897695500007],[-64.71031653599988,66.28261953300007],[-64.76561438699989,66.25568268400009],[-64.79539954299989,66.23468659100014],[-64.81269283799988,66.21377187700001],[-64.80650794199991,66.21377187700001],[-64.81309973899988,66.20734284100008],[-64.82079016799992,66.20433177299999],[-64.82799231699994,66.20237864800013],[-64.83320064999992,66.19944896000011],[-64.83503170499992,66.19660065300017],[-64.83844967399992,66.18903229400003],[-64.85444088399993,66.16437409100003],[-64.85920162699992,66.15119049700007],[-64.85741126199993,66.14175039300007],[-64.85041256399995,66.1200218770001],[-64.87144934799989,66.10748932500009],[-64.92255611899986,66.09764232],[-64.95140540299988,66.08038971600017],[-64.96357174399986,66.07591380400002],[-65.02094479099989,66.07819245000017],[-65.03583736899995,66.07318756700012],[-65.05842037699992,66.06073639500003],[-65.2016088529999,66.02830638200011],[-65.23627682199995,66.0244815120001],[-65.25153561099992,66.03253815300003],[-65.25609290299988,66.03827545800011],[-65.26691646999987,66.04120514500012],[-65.28937740799995,66.04242584800015],[-65.29072018099995,66.03766510600015],[-65.30072994699995,66.0150820980001],[-65.30614173099988,66.00763580900009],[-65.31688391799992,66.00332265800002],[-65.36078854099995,65.99404531500015],[-65.38093014199997,65.98550039300012],[-65.39313717399995,65.98224518400018],[-65.75169837099989,65.970892645],[-65.8241674469999,65.95636627800015],[-65.86139889199998,65.95302969000012],[-65.8994034499999,65.95368073100009],[-65.92511959499984,65.95962148600002],[-65.93968665299988,65.97675202000015],[-65.94420325399992,66.01137929900013],[-65.94892330599993,66.02204010600015],[-65.95807857999992,66.03156159100017],[-65.96430416599989,66.04120514500012],[-65.96039791599988,66.05267975500009],[-65.94725501199991,66.05931224200005],[-65.93000240799992,66.06517161699999],[-65.91856848899997,66.07420482000002],[-65.92308508999992,66.0902367210001],[-65.90392005099994,66.096665757],[-65.86095130099989,66.09967682500009],[-65.84056555899991,66.10390859600012],[-65.67267818899994,66.168402411],[-65.6391495429999,66.1727562520001],[-65.6297094389999,66.18984609600012],[-65.61937415299991,66.20156484600012],[-65.59227454299989,66.21141185100005],[-65.55992591099997,66.23468659100014],[-65.54950924399986,66.24477773600002],[-65.54344641799989,66.25495026200015],[-65.5359594389999,66.2764346370001],[-65.52928626199994,66.28603750200007],[-65.51402747299997,66.29783763200005],[-65.47065182199992,66.31679922100015],[-65.48729407499988,66.32147858300009],[-65.52196204299995,66.31696198100012],[-65.53888912699992,66.32363515800007],[-65.48778235599985,66.3399925800001],[-65.4699193999999,66.35301341399999],[-65.47748775899993,66.37140534100003],[-65.47748775899993,66.37763092700008],[-65.47150631399992,66.38202545800006],[-65.47203528599991,66.38532135600009],[-65.47748775899993,66.39183177299999],[-65.49205481699997,66.38800690300017],[-65.50544186099995,66.37653229400001],[-65.51524817599989,66.36151764499999],[-65.51903235599991,66.34715403900013],[-65.52179928299998,66.34357330900015],[-65.52839107999995,66.34048086100007],[-65.53620357999995,66.33812083500011],[-65.55174719999985,66.33527252800016],[-65.55577551999991,66.33026764500012],[-65.57091223899991,66.28217194200006],[-65.57738196499992,66.27179596600016],[-65.59203040299994,66.25751373900009],[-65.68187415299994,66.19135163],[-65.69347083199993,66.18577708500008],[-65.7359513009999,66.18203359600012],[-65.77912350199992,66.1727562520001],[-65.83136959499984,66.14988841399999],[-65.84430904899995,66.14175039300007],[-65.85993404899992,66.13458893400004],[-65.90949459499987,66.12433502800009],[-65.93468176999994,66.11749909100008],[-65.95905514199998,66.11469147300011],[-66.01191158799986,66.11749909100008],[-66.14777584499993,66.14069245000012],[-66.15070553299992,66.14581940300003],[-66.15123450399992,66.1522891300001],[-66.15587317599994,66.15851471600008],[-66.19477291599995,66.174017645],[-66.20429439999992,66.17963288],[-66.20335852799984,66.18097565300009],[-66.20466061099995,66.18683502800003],[-66.20824133999992,66.1951358090001],[-66.21422278599994,66.20319245000015],[-66.25731360599988,66.2235781920001],[-66.25902258999989,66.22691478100016],[-66.2571508449999,66.22736237200014],[-66.25584876199991,66.22667064000002],[-66.25572669199994,66.22431061400006],[-66.25169837099985,66.22182851800012],[-66.24665279899992,66.2309024110001],[-66.23106848899994,66.24384186400015],[-66.2122289699999,66.25043366100012],[-66.19684811099995,66.24103424700009],[-66.19066321499989,66.24103424700009],[-66.17389889199995,66.26508209800012],[-66.14964758999989,66.28945547100008],[-66.2360326809999,66.25299713700012],[-66.28058834499987,66.24225495000012],[-66.31354732999995,66.262152411],[-66.31061764199993,66.27309804900007],[-66.32575436099992,66.26898834800012],[-66.36200924399992,66.25470612200003],[-66.38206946499989,66.26227448100018],[-66.40184485599991,66.27480703300007],[-66.42218990799992,66.280707098],[-66.44383704299989,66.26837799700014],[-66.41681881399994,66.25771719000012],[-66.38752193899992,66.24201080900015],[-66.37275143099995,66.22406647300004],[-66.38923092399995,66.2069359400001],[-66.42585201699994,66.20132070500007],[-66.4762670559999,66.20477936400009],[-66.5208227199999,66.21869538000006],[-66.54010982999992,66.24477773600002],[-66.54682369699987,66.26752350500004],[-66.54670162699989,66.28261953300007],[-66.53669186099992,66.28945547100008],[-66.48534094999991,66.27749258000016],[-66.47801673099988,66.27887604400003],[-66.47984778599997,66.28921133000013],[-66.48485266799992,66.30170319200015],[-66.49242102799985,66.31232330900009],[-66.50190182199987,66.31679922100015],[-66.51573645699995,66.32037995000003],[-66.50605221299989,66.32859935100011],[-66.47179114499994,66.34406159100014],[-66.47179114499994,66.35028717700003],[-66.54088294199994,66.34650299700009],[-66.57111568899994,66.35199616100003],[-66.57420813699991,66.37140534100003],[-66.55549068899995,66.38153717700008],[-66.44440670499995,66.4018008480001],[-66.43858801999991,66.40753815300015],[-66.44322669199994,66.41425202],[-66.45750891799995,66.41917552300008],[-66.47394771999993,66.41876862200014],[-66.50177975199989,66.40827057500007],[-66.5155736969999,66.40550364800013],[-66.53233801999991,66.40436432500009],[-66.56590735599985,66.39687734600012],[-66.59260006399995,66.38694896000011],[-66.62262936099992,66.37140534100003],[-66.61518307199995,66.37140534100003],[-66.69245357999995,66.36994049700014],[-66.73066158799992,66.37360260600012],[-66.76598059799994,66.38507721600013],[-66.7307836579999,66.389634507],[-66.70848548099985,66.403469143],[-66.69273841099991,66.4268252620001],[-66.67723548099988,66.46015045800009],[-66.70441646999988,66.45840078300007],[-66.71247311099992,66.44879791900011],[-66.71837317599997,66.43793366100012],[-66.73900305899988,66.43280670800002],[-66.75963294199991,66.43524811400013],[-66.78534908799986,66.44204336100007],[-66.80829830599995,66.45282623900009],[-66.82066809799989,66.466986395],[-66.79442298099988,66.47406647300006],[-66.79169674399989,66.49823639500006],[-66.8051244779999,66.5257835960001],[-66.82746334499993,66.54271067900008],[-66.82746334499993,66.53668854400017],[-66.83698482999992,66.53506094000015],[-66.85029049399992,66.53717682500015],[-66.86156165299994,66.54271067900008],[-66.7454320949999,66.57265859600012],[-66.72504635299993,66.59113190300015],[-66.76414954299989,66.59931061400009],[-66.8486221999999,66.59027741100006],[-66.88890540299991,66.59796784100008],[-66.96833248599992,66.63080475499999],[-67.01207434799987,66.641587632],[-67.06025143099995,66.64573802300013],[-67.06025143099995,66.63825104400014],[-66.88267981699994,66.57001373900006],[-66.91681881399992,66.55463288000011],[-66.96129309799994,66.54083893400009],[-67.00446529899995,66.53481679900001],[-67.03416907499988,66.54271067900008],[-67.03705807199992,66.53546784100014],[-67.04035396999986,66.53091054900001],[-67.04389400899993,66.527044989],[-67.04718990799995,66.52220286700009],[-67.07245846299992,66.53416575700005],[-67.10456295499989,66.53876373899999],[-67.13691158799992,66.53668854400017],[-67.1632787749999,66.52846914300007],[-67.1632787749999,66.52220286700009],[-67.09105383999992,66.51837799700012],[-67.08067786399991,66.51194896],[-67.09552975199996,66.49388255400008],[-67.12938391799995,66.48720937700001],[-67.1663305329999,66.48867422100005],[-67.19054114499987,66.49494049700003],[-67.19859778599994,66.50946686400005],[-67.19355221299989,66.52513255400005],[-67.19481360599991,66.53758372600005],[-67.28184973899997,66.55231354400014],[-67.31196041599988,66.56313711100013],[-67.33519446499992,66.57684967700008],[-67.32994544199994,66.59345123900012],[-67.35187740799995,66.59780508000004],[-67.41026770699995,66.59113190300015],[-67.43431555899988,66.57762278900002],[-67.44855709499988,66.573675848],[-67.46178137899992,66.58055247600011],[-67.50910396999987,66.61749909100017],[-67.51740475199995,66.62189362200014],[-67.52782141799993,66.62445709800006],[-67.54377193899995,66.62523021000008],[-67.55585689999995,66.62173086100007],[-67.54938717399995,66.61359284100016],[-67.52696692599994,66.59796784100008],[-67.52045650899991,66.57566966400005],[-67.53892981699997,66.57029857],[-67.56855221299992,66.57538483300011],[-67.58783932199995,66.58429596600014],[-67.59984290299988,66.59072500200007],[-67.6148168609999,66.59564850500011],[-67.63178463399987,66.59829336100002],[-67.64989173099988,66.59796784100008],[-67.6467992829999,66.59332916900014],[-67.64167232999988,66.58270905200011],[-67.6368302069999,66.57684967700008],[-67.69489498599998,66.58348216400005],[-67.72374426999991,66.5824242210001],[-67.74608313699991,66.57001373900006],[-67.70258541599989,66.55975983300011],[-67.37861080599987,66.54922109600007],[-67.36188717399993,66.54271067900008],[-67.30390377499995,66.532660223],[-67.28624426999994,66.52619049700009],[-67.27253170499992,66.51508209800006],[-67.26695716099991,66.49799225500011],[-67.25226803299992,66.47679271000011],[-67.17638098899997,66.45441315300012],[-67.14277096299995,66.44025299700009],[-67.15900631399997,66.43276601800004],[-67.16087805899986,66.4245059270001],[-67.14964758999986,66.40550364800013],[-67.14574133999986,66.39179108299999],[-67.14647376199989,66.37856679900005],[-67.15562903599997,66.36847565300009],[-67.17723548099987,66.36456940300009],[-67.19908606699991,66.37099844],[-67.23237057199992,66.39911530200003],[-67.25230872299991,66.40550364800013],[-67.36188717399993,66.41233958500005],[-67.36188717399993,66.41917552300008],[-67.35187740799995,66.41917552300008],[-67.34589596299995,66.42072174700012],[-67.33519446499992,66.42601146],[-67.35102291599995,66.43292877800017],[-67.37059485599991,66.43463776200018],[-67.41026770699995,66.43280670800002],[-67.39386959499984,66.412543036],[-67.36054439999995,66.39427317900011],[-67.32294674399995,66.38153717700008],[-67.30040442599997,66.37763092700008],[-67.28266354099989,66.36961497600014],[-67.22785396999987,66.35871002800015],[-67.20482337099989,66.35712311400012],[-67.18773352799994,66.35211823100018],[-67.14313717399995,66.32705312700007],[-67.1290990879999,66.31679922100015],[-67.14598548099991,66.30280182500009],[-67.17577063699991,66.30170319200015],[-67.23216712099986,66.30931224199999],[-67.25914466099991,66.30223216400013],[-67.2803442049999,66.28888580900012],[-67.30317135299993,66.2807477890001],[-67.33519446499992,66.28945547100008],[-67.36811275899989,66.31391022300012],[-67.38337154899997,66.3175316430001],[-67.38984127499987,66.29938385600008],[-67.39891516799989,66.29645416900014],[-67.41926021999987,66.30548737200017],[-67.4402563139999,66.3192406270001],[-67.45124264199995,66.33038971600011],[-67.44530188699994,66.333441473],[-67.44225012899994,66.33685944200003],[-67.44013424399992,66.34048086100007],[-67.43696041599986,66.34406159100014],[-67.4817602199999,66.35272858300014],[-67.49225826699995,66.35712311400012],[-67.49665279899995,66.36615631700012],[-67.49543209499983,66.37653229400001],[-67.49779212099989,66.38593170800006],[-67.5133764309999,66.39183177299999],[-67.52818762899994,66.38621653899999],[-67.54662024599989,66.3952497420001],[-67.57477779899997,66.41917552300008],[-67.58161373599998,66.41233958500005],[-67.59422766799989,66.41893138200011],[-67.62958736899989,66.42772044499998],[-67.64305579299987,66.43280670800002],[-67.63312740799995,66.44330475500009],[-67.62938391799995,66.44647858300014],[-67.65306555899986,66.44578685100011],[-67.70099850199995,66.438462632],[-67.80040442599994,66.45856354400014],[-67.8218481109999,66.466986395],[-67.83275305899988,66.48135000200006],[-67.84520423099988,66.51544830900018],[-67.85936438699991,66.52220286700009],[-67.86493893099993,66.517971096],[-67.86974036399991,66.50853099199999],[-67.87694251199993,66.49917226800014],[-67.88975989499997,66.49494049700003],[-67.90363521999987,66.49835846600006],[-67.92353268099995,66.51557038000004],[-67.93785559799994,66.52220286700009],[-67.98456783799995,66.51308828300013],[-67.99250240799988,66.50853099199999],[-67.98420162699992,66.50031159100007],[-67.96784420499992,66.50071849199999],[-67.95189368399991,66.498968817],[-67.94469153599997,66.48436107],[-67.93773352799987,66.47923411700008],[-67.9043676419999,66.46893952000015],[-67.87657630099991,66.4638125670001],[-67.87022864499991,66.455755927],[-67.86774654899997,66.44481028900013],[-67.86278235599991,66.43280670800002],[-67.85737057199987,66.42316315300003],[-67.85578365799995,66.41795482000005],[-67.85240637899992,66.41339752800009],[-67.84166419199991,66.40550364800013],[-67.80186926999991,66.38979726800007],[-67.78368079299992,66.37685781500006],[-67.76337643099993,66.36554596600016],[-67.75910396999993,66.36082591400006],[-67.75890051999997,66.34788646000005],[-67.75682532499994,66.33661530200008],[-67.75080318899992,66.32819245000003],[-67.73863684799994,66.32363515800007],[-67.73949133999986,66.31549713700015],[-67.71190344999994,66.3041445980001],[-67.70445716099997,66.29262929900015],[-67.70966549399995,66.27724844],[-67.72215735599988,66.26740143400009],[-67.75291907499985,66.25470612200003],[-67.73265540299994,66.2448591170001],[-67.68769283799995,66.24079010600005],[-67.67292232999995,66.23383209800006],[-67.6723119779999,66.23200104400009],[-67.67780514199993,66.22736237200014],[-67.64411373599992,66.22256094000006],[-67.56114661399992,66.18577708500008],[-67.47935950399994,66.17340729400006],[-67.4860326809999,66.16596100500006],[-67.4860326809999,66.15851471600008],[-67.48151607999995,66.15558502800015],[-67.47712154899997,66.1537539730001],[-67.4718725249999,66.15277741100012],[-67.47175045499992,66.1522891300001],[-67.43529212099995,66.13837311400015],[-67.31330318899997,66.11933014500006],[-67.2936498689999,66.1113141950001],[-67.28502356699994,66.09845612200009],[-67.27782141799989,66.07990143400016],[-67.26915442599991,66.06329987200003],[-67.25605221299992,66.0560977230001],[-67.24689693899994,66.05394114799999],[-67.22797604099992,66.04458242400015],[-67.21849524599992,66.04242584800015],[-67.1632787749999,66.04242584800015],[-67.1632787749999,66.03558991100012],[-67.23420162699989,66.01166413000009],[-67.27033443899992,66.00421784100007],[-67.3141576809999,66.00145091400005],[-67.30109615799992,65.99616120000015],[-67.27216549399989,65.99213288],[-67.25947018099993,65.9877790390001],[-67.2519018219999,65.9813500020001],[-67.24445553299992,65.96718984600005],[-67.23896236899989,65.96051666900011],[-67.22577877499992,65.9513613950001],[-67.20848548099994,65.94261302300005],[-67.18919837099992,65.93585846600003],[-67.17011471299992,65.93256256700009],[-67.18712317599989,65.91616445500007],[-67.2077123689999,65.91339752800012],[-67.26911373599992,65.9286156270001],[-67.3141576809999,65.92572663000006],[-67.33385169199994,65.92055898600016],[-67.34373938699994,65.919134833],[-67.35191809799994,65.92267487200014],[-67.36168372299989,65.92963288000006],[-67.37425696499989,65.93488190300003],[-67.38764400899986,65.93817780200008],[-67.3997289699999,65.939398505],[-67.40326900899996,65.94086334800006],[-67.40387936099992,65.94403717700011],[-67.40501868399986,65.946722723],[-67.41026770699995,65.94684479400017],[-67.41624915299985,65.94428131700006],[-67.41620846299986,65.94106679900001],[-67.41490637899997,65.937201239],[-67.41710364499997,65.93256256700009],[-67.45018469999991,65.90273672100007],[-67.47297115799992,65.8935407570001],[-67.51768958199997,65.91120026200012],[-67.5457250639999,65.91136302299999],[-67.60212154899995,65.905218817],[-67.6156713529999,65.90619538000007],[-67.62657630099989,65.909125067],[-67.6364233059999,65.91445547100007],[-67.6464330719999,65.92267487200014],[-67.65827389199994,65.92755768400002],[-67.69062252499987,65.92914459800006],[-67.70445716099997,65.93256256700009],[-67.73033606699997,65.95892975500009],[-67.74592037699995,65.9664981140001],[-67.75291907499985,65.94989655200004],[-67.74677486899986,65.93740469000006],[-67.73253333199995,65.92397695500007],[-67.70445716099997,65.905218817],[-67.70445716099997,65.89838288],[-67.75011145699987,65.89679596600014],[-67.77289791599992,65.89179108300011],[-67.79047604099995,65.88133372600014],[-67.81000729099992,65.8784040390001],[-67.92280025899993,65.90322500200007],[-67.93366451699991,65.915228583],[-67.93805904899989,65.93089427300008],[-67.94469153599997,65.94684479400017],[-67.95881100199989,65.95685455900015],[-67.97655188699989,65.96434153900013],[-67.98863684799989,65.97337474200013],[-67.9856664699999,65.9877790390001],[-68.02574622299991,65.99485911700008],[-68.03343665299994,66.00145091400005],[-68.03172766799992,66.01056549700003],[-68.0171606109999,66.03363678599999],[-68.01362057199992,66.04584381700006],[-68.01573645699992,66.04901764500012],[-68.02045650899993,66.05101146000005],[-68.02509518099995,66.053859768],[-68.02729244699995,66.059515692],[-68.02607174399992,66.065578518],[-68.02354895699992,66.06879303600006],[-68.02098548099991,66.07078685099998],[-68.01984615799998,66.07318756700012],[-67.97264563699989,66.08344147300006],[-67.99189205599993,66.09446849200009],[-68.07872473899994,66.11953359600001],[-68.1386205719999,66.12726471600001],[-68.21617591099994,66.145941473],[-68.23888098899988,66.15851471600008],[-68.24559485599994,66.17523834800004],[-68.25055904899997,66.198228257],[-68.25841223899997,66.21857330900009],[-68.27367102799994,66.22736237200014],[-68.3062231109999,66.22687409100017],[-68.33189856699993,66.22256094000006],[-68.34235592399995,66.21019114800013],[-68.32892818899995,66.18577708500008],[-68.34528561099995,66.18260325700011],[-68.37303626199993,66.18260325700011],[-68.39924068899995,66.18683502800003],[-68.41083736899989,66.19635651200004],[-68.41466223899991,66.21230703300013],[-68.43500729099989,66.25433991100003],[-68.44440670499992,66.26837799700014],[-68.45665442599989,66.27875397300006],[-68.47541256399995,66.29010651200004],[-68.49592037699988,66.29930247600011],[-68.5135391919999,66.30312734600004],[-68.52643795499992,66.29677969000008],[-68.51899166599986,66.28213125200007],[-68.49278723899991,66.25470612200003],[-68.47846432199992,66.24363841399999],[-68.47240149599995,66.2367210960001],[-68.47227942599997,66.22736237200014],[-68.48102779899995,66.21942780199998],[-68.49657141799995,66.2128766950001],[-68.51292883999986,66.20848216400013],[-68.52379309799994,66.2069359400001],[-68.82673092399995,66.20099518400015],[-68.84968014199993,66.19330475500014],[-68.7266332669999,66.18056875200007],[-68.71247311099998,66.1727562520001],[-68.68871008999989,66.17454661699999],[-68.67707271999987,66.17763906500006],[-68.6678360669999,66.1826846370001],[-68.65086829299995,66.18821849200009],[-68.63170325399997,66.1839867210001],[-68.61241614499994,66.17658112200012],[-68.59516354099992,66.1727562520001],[-68.58332271999987,66.17352936400003],[-68.57457434799989,66.17609284100003],[-68.5668432279999,66.18121979400003],[-68.55793209499984,66.18952057500012],[-68.54401607999993,66.19501373900013],[-68.48530025899996,66.19330475500014],[-68.49278723899991,66.19330475500014],[-68.45836341099988,66.18854401200004],[-68.4406225249999,66.18374258000013],[-68.42821204299986,66.176174221],[-68.40400143099986,66.148138739],[-68.38935299399986,66.13613515800007],[-68.33490963399996,66.12124258000001],[-68.26109778599994,66.08063385600012],[-68.21906490799995,66.07591380400002],[-68.2219132149999,66.07811107],[-68.21906490799995,66.08344147300006],[-68.23961341099991,66.09910716400005],[-68.25999915299991,66.1113141950001],[-68.25019283799986,66.11591217700006],[-68.23993893099993,66.11660390800007],[-68.22956295499995,66.11469147300011],[-68.21906490799995,66.1113141950001],[-68.21906490799995,66.11749909100008],[-68.22203528599988,66.1281598980001],[-68.19994055899988,66.12807851800012],[-68.15013587099992,66.11749909100008],[-68.13231360599994,66.10789622600002],[-68.10411536399997,66.08592356999998],[-68.09552975199995,66.08344147300006],[-68.08149166599992,66.07758209800002],[-68.04515540299991,66.08307526200004],[-68.02729244699995,66.07591380400002],[-68.03941809799994,66.0733096370001],[-68.05052649599989,66.06647370000007],[-68.06822669199997,66.04926178600006],[-68.05321204299995,66.024115302],[-68.05296790299991,66.00779857000008],[-68.06395423099988,65.99510325700003],[-68.08250891799989,65.980943101],[-68.09520423099994,65.98493073100015],[-68.10151119699987,65.99184804900015],[-68.10155188699986,66.00006745000015],[-68.09552975199995,66.00763580900009],[-68.12397213399987,66.02708567900002],[-68.15855872299997,66.03388092700011],[-68.19062252499995,66.02753327],[-68.21161861899989,66.00763580900009],[-68.15623938699991,65.99713776200002],[-68.13019771999984,65.98627350500006],[-68.11603756399992,65.96670156500006],[-68.14618893099993,65.96662018400008],[-68.1762182279999,65.97280508000007],[-68.28168697799987,66.0170759140001],[-68.30516516799995,66.03070709800006],[-68.32518469999991,66.04584381700006],[-68.33433997299989,66.04930247600004],[-68.34308834499987,66.04633209800015],[-68.34788977799985,66.03978099200008],[-68.34532630099994,66.03253815300003],[-68.30439205599993,65.997748114],[-68.28022213399993,65.98240794500005],[-68.21800696499992,65.96629466399999],[-68.19111080599993,65.95302969000012],[-68.21471106699997,65.94725169499999],[-68.2340795559999,65.95087311400015],[-68.27428137899989,65.96670156500006],[-68.29393469999994,65.96735260600003],[-68.3152563139999,65.96137116100003],[-68.3312475249999,65.94944896000008],[-68.3351537749999,65.93256256700009],[-68.31244869699995,65.91278717700006],[-68.27045650899987,65.91254303600003],[-68.19111080599993,65.92572663000006],[-68.19330807199992,65.92096588700015],[-68.19151770699993,65.9156761740001],[-68.18610592399989,65.91030508000013],[-68.1774389309999,65.905218817],[-68.17125403599994,65.91120026200012],[-68.15916907499994,65.92885976800012],[-68.14671790299991,65.93256256700009],[-68.1367895169999,65.92658112200014],[-68.13756262899992,65.91315338700015],[-68.14557857999998,65.89923737200009],[-68.15697180899994,65.89158763200005],[-68.15245520699997,65.8797875020001],[-68.16034908799986,65.87197500200001],[-68.17511959499984,65.86713288000011],[-68.19111080599993,65.86432526200015],[-68.12962805899988,65.8369815120001],[-68.09447180899991,65.83685944200012],[-68.08226477799994,65.83283112200014],[-68.09552975199995,65.822699286],[-68.10887610599988,65.81948476800015],[-68.15697180899994,65.8158633480001],[-68.20539303299992,65.80223216400005],[-68.20539303299992,65.79604726800007],[-68.12421627499992,65.79840729400003],[-68.09552975199995,65.79604726800007],[-68.0382787749999,65.78196849200013],[-68.00755774599992,65.78070709800011],[-67.98224850199998,65.79254791900009],[-67.96088619699992,65.79779694200006],[-67.90168209499993,65.79230377800003],[-67.88947506399995,65.79913971600014],[-67.88109290299988,65.81964752800012],[-67.86091061099995,65.82697174700012],[-67.83617102799988,65.82453034100007],[-67.81432044199994,65.8158633480001],[-67.82966061099998,65.80963776200004],[-67.83454342399995,65.79938385600009],[-67.82929439999985,65.78900788],[-67.81432044199994,65.78237539300011],[-67.84471594999991,65.76251862200003],[-67.92487545499995,65.75678131700006],[-67.95836341099991,65.74079010600015],[-67.95360266799992,65.72524648600015],[-67.97435462099989,65.70962148600007],[-67.96519934799991,65.69985586100013],[-67.94871985599994,65.69643789300011],[-67.92621822799993,65.69721100500014],[-67.90424557199992,65.70087311399999],[-67.88947506399995,65.706000067],[-67.88361568899988,65.70209381700003],[-67.87816321499986,65.69745514500009],[-67.87328040299988,65.69208405200011],[-67.86896725199989,65.6861839860001],[-67.88414466099988,65.67963288000011],[-67.88756262899989,65.66738515800013],[-67.88166256399995,65.654242255],[-67.86896725199989,65.64520905200008],[-67.87507076699998,65.635239976],[-67.88520260299993,65.62689850500011],[-67.89745032499991,65.62083567900011],[-67.90998287699989,65.61790599200002],[-67.92699133999986,65.620103257],[-67.96519934799991,65.63837311400006],[-67.99156653599991,65.63361237200013],[-67.97175045499989,65.62205638200014],[-67.91742916599989,65.60419342700008],[-67.94477291599995,65.591498114],[-67.95466061099995,65.58999258000016],[-67.96532141799989,65.59227122600014],[-67.97065182199995,65.59731679900007],[-67.97406979099986,65.60224030200011],[-67.97883053299995,65.60419342700008],[-67.99531002499995,65.59979889500009],[-68.06073971299992,65.56940338700012],[-68.04267330599988,65.56411367400013],[-68.02476966099994,65.562201239],[-68.00873775899993,65.56484609600005],[-67.99592037699992,65.57318756700015],[-67.98468990799992,65.578558661],[-67.96991939999992,65.57819245000009],[-67.95689856699994,65.57265859600007],[-67.95091712099992,65.56264883000007],[-67.96153723899995,65.548732815],[-68.01435299399995,65.50625234600012],[-68.03343665299994,65.49494049700014],[-68.03343665299994,65.48749420800007],[-68.01610266799995,65.48749420800007],[-68.00141354099995,65.4933942730001],[-67.98827063699989,65.50405508000013],[-67.97577877499987,65.51788971600014],[-67.90619869699987,65.55369700700005],[-67.88031979099986,65.57607656500006],[-67.86896725199989,65.58315664300012],[-67.8499242829999,65.58612702000015],[-67.80907141799995,65.58588288000003],[-67.79389400899996,65.58999258000016],[-67.79271399599995,65.60040924700014],[-67.77704830599995,65.61668528899999],[-67.75519771999991,65.63178131700009],[-67.73554439999985,65.63837311400006],[-67.54393469999991,65.66233958500011],[-67.51793372299991,65.65912506700006],[-67.4959610669999,65.64826080900015],[-67.48627682199995,65.6459821640001],[-67.4800512359999,65.65403880400014],[-67.47569739499991,65.66535065300012],[-67.47175045499992,65.67251211100016],[-67.45490475199992,65.6788597680001],[-67.43561764199998,65.68060944200009],[-67.39598548099985,65.67934804900007],[-67.4035131499999,65.67934804900007],[-67.36945553299998,65.67446523600002],[-67.27314205599987,65.64520905200008],[-67.27306067599989,65.63214752800009],[-67.25422115799995,65.608384507],[-67.26317298099987,65.60419342700008],[-67.28111731699994,65.60199616100009],[-67.34142005099997,65.58315664300012],[-67.34142005099997,65.57689036699999],[-67.32872473899991,65.57151927300013],[-67.29755611899992,65.56378815300003],[-67.28368079299995,65.56264883000007],[-67.27562415299991,65.55927155200006],[-67.27049719999988,65.55149974200008],[-67.26593990799995,65.54242584800006],[-67.25947018099993,65.53534577],[-67.34052486899989,65.54462311400006],[-67.37824459499987,65.54352448100012],[-67.41710364499997,65.528509833],[-67.40314693899998,65.52277252800012],[-67.39195716099988,65.52094147300012],[-67.34125729099992,65.52191803600003],[-67.3310033839999,65.51805247600011],[-67.32774817599994,65.50800202000012],[-67.34711666599986,65.50145091400005],[-67.43305416599985,65.50364817900014],[-67.45868893099993,65.50800202000012],[-67.45868893099993,65.50116608300011],[-67.38084876199986,65.47833893400009],[-67.35505123599992,65.46702708500011],[-67.34459387899994,65.45868561400015],[-67.34076900899991,65.45270416900001],[-67.33551998599995,65.45050690300003],[-67.32091223899991,65.45335521000008],[-67.30927486899992,65.45905182500015],[-67.30028235599991,65.466253973],[-67.28966223899994,65.47215403900013],[-67.27314205599987,65.47386302300013],[-67.26109778599997,65.47142161700002],[-67.23790442599994,65.46255117400015],[-67.22533118399993,65.45962148600003],[-67.20881100199993,65.45917389500012],[-67.1395971339999,65.46963125200001],[-67.11200924399986,65.47044505400011],[-67.08429928299998,65.46771881700006],[-67.06025143099995,65.45962148600003],[-67.06025143099995,65.45335521000008],[-67.10480709499984,65.44464752800009],[-67.11546790299988,65.43976471600003],[-67.10407467399992,65.43622467700014],[-67.07050533799989,65.43585846600003],[-67.06025143099995,65.43231842700006],[-67.05988521999993,65.42405833500005],[-67.07636471299992,65.4052595070001],[-67.08067786399991,65.39508698100015],[-67.09125729099985,65.38060130400011],[-67.11628170499998,65.37099844000011],[-67.14586341099994,65.36566803600006],[-67.3141576809999,65.36741771000004],[-67.32701575399992,65.35537344000015],[-67.41710364499997,65.35101959800006],[-67.40632076699995,65.3373884140001],[-67.38646399599995,65.32859935100005],[-67.36400305899986,65.32387929900013],[-67.34516354099992,65.32245514500005],[-67.33417721299995,65.32294342700006],[-67.32616126199991,65.32440827000012],[-67.31989498599995,65.32672760600016],[-67.3141576809999,65.32982005400007],[-67.30695553299995,65.3370628930001],[-67.30150305899991,65.346096096],[-67.29487057199995,65.3539085960001],[-67.28368079299995,65.35716380400014],[-67.24242102799988,65.34967682500017],[-67.16429602799988,65.31932200699998],[-67.12230383999989,65.31622955900012],[-67.1547338529999,65.28571198100018],[-67.16881262899992,65.26854075700005],[-67.1601456369999,65.26097239800002],[-67.14891516799992,65.26325104400016],[-67.12572180899988,65.27521393400009],[-67.1192113919999,65.27301666900011],[-67.11436926999991,65.26325104400016],[-67.10863196499994,65.26097239800002],[-67.10057532499991,65.26044342700011],[-67.08067786399991,65.25413646],[-67.08067786399991,65.24730052300008],[-67.13447018099987,65.24689362200014],[-67.15770423099988,65.2411156270001],[-67.17011471299992,65.22687409100008],[-67.15229244699995,65.23078034100008],[-67.1381322909999,65.23167552299998],[-67.12629146999986,65.2284610050001],[-67.11546790299988,65.21995677299999],[-67.11994381399991,65.20954010600009],[-67.11192786399987,65.20335521000014],[-67.09797115799992,65.20307038],[-67.06895911399994,65.21922435100005],[-67.0486547519999,65.22406647300012],[-67.02814693899998,65.22431061400007],[-67.01244055899991,65.21995677299999],[-67.01732337099989,65.2100283870001],[-67.01988684799989,65.20636627800003],[-66.99449622299997,65.20132070500001],[-66.9745580719999,65.2100283870001],[-66.93732662699989,65.24115631700009],[-66.93586178299992,65.215969143],[-66.95164954299989,65.12905508000013],[-66.96153723899988,65.11009349200009],[-67.03205318899995,65.11343008000013],[-67.0534154939999,65.11009349200009],[-67.06904049399992,65.10077545800009],[-67.09101314999992,65.075628973],[-67.10863196499994,65.06915924700009],[-67.10863196499994,65.06232330900015],[-67.08360755099994,65.06419505400014],[-67.01988684799989,65.08283112200003],[-66.99596106699991,65.08673737200003],[-66.96747799399992,65.08661530200006],[-66.95152747299991,65.0794945330001],[-66.96528072799993,65.06232330900015],[-66.95783443899995,65.06232330900015],[-66.90623938699989,65.071234442],[-66.88739986899995,65.08161041900011],[-66.89635169199997,65.10394928600014],[-66.83702551999991,65.14590078300013],[-66.82404537699992,65.15176015800007],[-66.79975338399993,65.15741608300006],[-66.75165768099995,65.18158600500009],[-66.72504635299993,65.18585846600008],[-66.72504635299993,65.17841217700003],[-66.73729407499988,65.16925690300003],[-66.74567623599995,65.15591054900001],[-66.75226803299992,65.14199453300013],[-66.75922604099992,65.13129303600003],[-66.75877844999991,65.11570872600011],[-66.80919348899994,65.10248444200009],[-66.82746334499993,65.090277411],[-66.79271399599986,65.090277411],[-66.81135006399995,65.06256745000012],[-66.89093990799992,65.06586334800015],[-66.91681881399992,65.049302476],[-66.86542721299992,65.04083893400004],[-66.8512670559999,65.03611888200012],[-66.8301488919999,65.04169342700006],[-66.75922604099992,65.06915924700009],[-66.77086341099991,65.05121491100014],[-66.77802486899986,65.04279205900008],[-66.78648841099991,65.0350609400001],[-66.77839107999998,65.03363678600003],[-66.77460689999995,65.03164297100007],[-66.77167721299992,65.02948639500006],[-66.76598059799994,65.02757396000011],[-66.77424068899992,65.02358633000013],[-66.77863521999993,65.01650625200007],[-66.77843176999997,65.008246161],[-66.77281653599997,65.00092194200009],[-66.76191158799989,64.9991722680001],[-66.75348873599992,65.00482819200009],[-66.74628658799992,65.00678131700012],[-66.73871822799995,64.99408600500006],[-66.74339758999989,64.96820709800015],[-66.77159583199995,64.95652903900005],[-66.83429928299992,64.94562409100008],[-66.75116939999987,64.93170807500009],[-66.72504635299993,64.9183617210001],[-66.73114986899992,64.90273672100001],[-66.73871822799995,64.8920352230001],[-66.74970455599991,64.88434479400014],[-66.76598059799994,64.87738678600006],[-66.76598059799994,64.87055084800015],[-66.74738521999987,64.86619700700005],[-66.73680579299989,64.85301341400009],[-66.73399817599994,64.83665599200002],[-66.73871822799995,64.82273997600011],[-66.72704016799986,64.81981028900002],[-66.72004146999987,64.81391022300006],[-66.7189428379999,64.80548737200012],[-66.72504635299993,64.79486725500006],[-66.70539303299994,64.78937409100006],[-66.69774329299993,64.78864166900011],[-66.70225989499988,64.78384023600002],[-66.70685787699992,64.77728913000014],[-66.71076412699992,64.77435944200003],[-66.70807857999995,64.77065664300007],[-66.70518958199992,64.7687848980001],[-66.69774329299993,64.767523505],[-66.6806127589999,64.76764557500015],[-66.6356908839999,64.78119538000011],[-66.64940344999994,64.79271067900008],[-66.66791744699994,64.80036041900009],[-66.68403072799993,64.80963776200007],[-66.69090735599991,64.82615794500013],[-66.68932044199988,64.84674713700015],[-66.68492591099991,64.86444733300006],[-66.65387936099998,64.93353913000009],[-66.65038001199991,64.94940827],[-66.64936275899993,64.96991608300006],[-66.6581518219999,64.98676178600006],[-66.69404049399989,65.01772695500009],[-66.69774329299993,65.0350609400001],[-66.68219967399995,65.04417552300008],[-66.59382076699998,65.02558014500006],[-66.57347571499989,65.01658763200005],[-66.56366939999985,65.01459381700012],[-66.54780025899993,65.0147158870001],[-66.53937740799998,65.013373114],[-66.5354711579999,65.00751373900006],[-66.5332738919999,64.99408600500006],[-66.54096432199992,64.96576569200012],[-66.53709876199991,64.95840078300002],[-66.50560462099992,64.98379140800013],[-66.49323482999995,64.98753489799999],[-66.48253333199995,64.98598867400013],[-66.47801673099988,64.97671133000006],[-66.4801733059999,64.96893952000009],[-66.49848385299994,64.94562409100008],[-66.47948157499985,64.93585846600006],[-66.45368404899992,64.9295921900001],[-66.37323971299995,64.91950104400003],[-66.36143958199997,64.92462799700003],[-66.36876380099997,64.94562409100008],[-66.34687252499992,64.94525788000006],[-66.33446204299992,64.934759833],[-66.32367916599992,64.92137278899999],[-66.30671139199993,64.91217682500003],[-66.31354732999995,64.90473053600014],[-66.30671139199993,64.90473053600014],[-66.31659908799995,64.89476146000005],[-66.32115637899987,64.88361237200003],[-66.31855221299988,64.87441640800016],[-66.30671139199993,64.87055084800015],[-66.29242916599995,64.87490469000015],[-66.28595943899992,64.88495514500012],[-66.28123938699991,64.89638906500006],[-66.27257239499994,64.90473053600014],[-66.24445553299995,64.90623607],[-66.20856686099995,64.89704010600003],[-66.14964758999989,64.87055084800015],[-66.16462154899992,64.86269765800007],[-66.17528235599985,64.850002346],[-66.18492591099991,64.83576080900009],[-66.19684811099995,64.82273997600011],[-66.18260657499985,64.81256745000017],[-66.18122311099998,64.79612864800008],[-66.19025631399998,64.78099192900008],[-66.20738684799991,64.77435944200003],[-66.3415014309999,64.77435944200003],[-66.32127844999988,64.76117584800006],[-66.28327389199995,64.75787995000003],[-66.2105199859999,64.76129791900003],[-66.22020423099985,64.74884674700012],[-66.21894283799995,64.7402204450001],[-66.21344967399992,64.733343817],[-66.2105199859999,64.72589752800003],[-66.2109268869999,64.71287669500003],[-66.21288001199994,64.7043317730001],[-66.21796627499987,64.69245026200015],[-66.17088782499988,64.68341705900015],[-66.15526282499988,64.70929596600017],[-66.14952551999991,64.74396393400006],[-66.1248266269999,64.76984284100014],[-66.10094153599994,64.80744049700014],[-66.09129798099987,64.8159040390001],[-66.07457434799994,64.82135651200004],[-66.01866614499987,64.85757070500016],[-66.0091039699999,64.83234284100007],[-66.01056881399995,64.80646393400018],[-66.02045650899987,64.78278229400014],[-66.03608150899996,64.7643903670001],[-66.04841061099992,64.7416039080001],[-66.04137122299993,64.71942780200011],[-66.02245032499991,64.70697663000003],[-65.99885006399998,64.71287669500003],[-66.00523841099991,64.72256094],[-66.01178951699998,64.73895905200003],[-66.0126440089999,64.75446198100012],[-66.00194251199986,64.76129791900003],[-65.9918920559999,64.76333242400007],[-65.98005123599992,64.76715729400016],[-65.96788489499994,64.76968008000009],[-65.95726477799991,64.767523505],[-65.95055091099995,64.75950755400005],[-65.95164954299992,64.75092194200012],[-65.95478268099987,64.74290599199999],[-65.95384680899988,64.7368024760001],[-65.90802975199989,64.67865631700006],[-65.86558997299991,64.662583726],[-65.85114498599994,64.65485260600015],[-65.8397924469999,64.64594147300012],[-65.82298743399988,64.637884833],[-65.80736243399988,64.6374372420001],[-65.79963131399998,64.65143463700015],[-65.80683346299992,64.6572940120001],[-65.85423743399994,64.68561432500013],[-65.8773901029999,64.70807526200015],[-65.89557857999998,64.73248932500009],[-65.89301510299987,64.75055573100012],[-65.85423743399994,64.75385163000006],[-65.85423743399994,64.76129791900003],[-65.87543697799993,64.76801178600009],[-65.90160071499989,64.77973053600006],[-65.92475338399993,64.79425690300012],[-65.93675696499994,64.80914948100015],[-65.9226781889999,64.80833567900005],[-65.90619869699992,64.81000397300005],[-65.89293372299989,64.81631094],[-65.88898678299988,64.82957591400013],[-65.93342037699992,64.86066315300003],[-65.95213782499988,64.88450755400011],[-65.94245357999992,64.89175039300015],[-65.91710364499991,64.887640692],[-65.88898678299988,64.87738678600006],[-65.87336178299992,64.86977773600013],[-65.86681067599994,64.86920807500015],[-65.85423743399994,64.87055084800015],[-65.85411536399997,64.872503973],[-65.85216223899994,64.87685781500008],[-65.84788977799991,64.88141510600003],[-65.84056555899991,64.8842227230001],[-65.83222408799995,64.88434479400014],[-65.82404537699992,64.88275788000011],[-65.81651770699997,64.87929922100012],[-65.81017005099994,64.87396881700006],[-65.79747473899988,64.86566803600009],[-65.78770911399994,64.86489492400015],[-65.78136145699992,64.86180247600008],[-65.77912350199992,64.84666575700008],[-65.79340572799993,64.80914948100015],[-65.77611243399991,64.80438873900006],[-65.76268469999994,64.81614817900014],[-65.75072180899991,64.83388906500012],[-65.73786373599997,64.84666575700008],[-65.71678626199986,64.84422435100005],[-65.68919837099993,64.83002350500011],[-65.66881262899994,64.811957098],[-65.66926021999987,64.79857005400011],[-65.70909583199995,64.77960846600008],[-65.72614498599998,64.76699453300002],[-65.73814856699991,64.74770742400007],[-65.73884029899995,64.73407623900012],[-65.73200436099992,64.72174713700018],[-65.71027584499987,64.69245026200015],[-65.70335852799988,64.69245026200015],[-65.70295162699993,64.754584052],[-65.64659583199989,64.77338288000014],[-65.58283443899995,64.75682200700008],[-65.56000729099995,64.71287669500003],[-65.56440182199992,64.71051666900009],[-65.58214270699992,64.70453522300006],[-65.58735104099992,64.69928620000009],[-65.58665930899988,64.69098541900011],[-65.58210201699993,64.68406810100011],[-65.57685299399995,64.67963288000014],[-65.57428951699993,64.67877838700004],[-65.57856197799995,64.65997955900016],[-65.58649654899992,64.649115302],[-65.61461341099991,64.6344261740001],[-65.65306555899991,64.60675690300009],[-65.66926021999987,64.60301341400007],[-65.71344967399992,64.60358307500003],[-65.7343236969999,64.59992096600008],[-65.75243079299992,64.59003327000006],[-65.73420162699992,64.58429596600007],[-65.72252356699994,64.575628973],[-65.71715247299997,64.56207916900006],[-65.71772213399993,64.54157135600018],[-65.72240149599986,64.52440013200005],[-65.72606360599991,64.51520416900009],[-65.72288977799994,64.50625234600014],[-65.70685787699995,64.49005768400009],[-65.69111080599988,64.48798248900009],[-65.61461341099991,64.50063711100016],[-65.50536048099988,64.50063711100016],[-65.50947018099991,64.49542877800015],[-65.5148412749999,64.485337632],[-65.51903235599991,64.480169989],[-65.49274654899992,64.47565338700004],[-65.45592200399992,64.48802317900008],[-65.42060299399989,64.50755442900005],[-65.39863033799989,64.52456289300011],[-65.38837643099995,64.52753327000012],[-65.35069739499997,64.52985260600009],[-65.34089107999995,64.52798086100013],[-65.33775794199997,64.51264069200009],[-65.34833736899992,64.50104401200015],[-65.40094967399995,64.47211334800006],[-65.41161048099988,64.46234772300012],[-65.41600501199986,64.44912344000008],[-65.40782630099994,64.44537995000013],[-65.38975989499994,64.45429108300009],[-65.36420650899996,64.47272370000012],[-65.35627193899998,64.47492096600011],[-65.34056555899991,64.48476797100012],[-65.33409583199992,64.48700592700011],[-65.32420813699991,64.48505280200006],[-65.30760657499985,64.47577545800011],[-65.29999752499992,64.47272370000012],[-65.28693600199992,64.4710147160001],[-65.27448482999992,64.47150299700009],[-65.26947994699987,64.47622304900001],[-65.2788793609999,64.48700592700011],[-65.27546139199998,64.50360748900006],[-65.27179928299992,64.51251862200012],[-65.26520748599995,64.52114492400001],[-65.25438391799986,64.52773672100008],[-65.23045813699991,64.532904364],[-65.22052975199989,64.53815338700018],[-65.21137447799993,64.54140859600012],[-65.20490475199992,64.53595612200009],[-65.20262610599994,64.52667877800003],[-65.20653235599993,64.51801178600013],[-65.23228919199988,64.49579498900009],[-65.23790442599997,64.48700592700011],[-65.20575924399992,64.49160390800013],[-65.14525305899991,64.51601797100001],[-65.11436926999995,64.51496002800006],[-65.12604732999995,64.504380601],[-65.16755123599995,64.48753489799998],[-65.17577063699986,64.480169989],[-65.16315670499996,64.47418854400017],[-65.10069739499994,64.480169989],[-65.08967037699998,64.48647695500013],[-65.08104407499988,64.47919342700011],[-65.0753881499999,64.46466705900018],[-65.07343502499995,64.44912344000008],[-65.07933508999989,64.42926666900017],[-65.09422766799992,64.419663804],[-65.15461178299995,64.406683661],[-65.23859615799992,64.40558502800015],[-65.24836178299995,64.39964427300013],[-65.26520748599995,64.38397858300006],[-65.1989233059999,64.36603424700012],[-65.17841549399994,64.34747955900009],[-65.19627844999991,64.31500885600012],[-65.22704016799989,64.30052317900008],[-65.26891028599991,64.2956403670001],[-65.52586829299993,64.3293317730001],[-65.54552161399988,64.32900625200007],[-65.56220455599993,64.32550690300009],[-65.59418697799993,64.31500885600012],[-65.6579476169999,64.30922971600013],[-65.65684973899994,64.30756256700015],[-65.65705318899998,64.30483633000007],[-65.6561986969999,64.30141836100016],[-65.47118079299989,64.30841705900004],[-65.43549557199995,64.30508047100001],[-65.41600501199986,64.28839752800017],[-65.43940182199995,64.29441966399999],[-65.45173092399989,64.29588450700014],[-65.46442623599995,64.29523346600008],[-65.45909583199989,64.28912995000012],[-65.45246334499993,64.2833926450001],[-65.4447729159999,64.2783877620001],[-65.43651282499991,64.27411530200008],[-65.46784420499995,64.26654694200012],[-65.53526770699995,64.26211172100015],[-65.56684322799995,64.25421784100008],[-65.54889889199988,64.24664948100003],[-65.52452551999994,64.24433014500005],[-65.35753333199989,64.25405508000004],[-65.3436986969999,64.2533226580001],[-65.33906002499987,64.24681224200009],[-65.34528561099992,64.23891836100005],[-65.36078854099995,64.23379140800002],[-65.36078854099995,64.22687409100011],[-65.29393469999991,64.22675202000015],[-65.26231848899994,64.21893952000015],[-65.24469967399992,64.19896067900008],[-65.28844153599988,64.1974551450001],[-65.30736243399991,64.19342682500015],[-65.37690182199992,64.162583726],[-65.39549719999991,64.15802643400006],[-65.39549719999991,64.15119049700003],[-65.34813391799989,64.15053945500007],[-65.33409583199992,64.15460846600006],[-65.30064856699997,64.175523179],[-65.29283606699997,64.17853424700009],[-65.26378333199989,64.18085358300004],[-65.25153561099992,64.17853424700009],[-65.19627844999991,64.15119049700003],[-65.19688880099997,64.14057038],[-65.18915768099995,64.13833242400001],[-65.1621801419999,64.14435455900012],[-65.1621801419999,64.13690827000012],[-65.16840572799987,64.134466864],[-65.18329830599993,64.12392812700013],[-65.16698157499991,64.11904531500006],[-65.13166256399995,64.11444733300011],[-65.11436926999995,64.10956452000006],[-65.19627844999991,64.076117255],[-65.11774654899989,64.08454010600015],[-65.07673092399997,64.083441473],[-65.05292721299988,64.06867096600003],[-65.07245846299986,64.067084052],[-65.12865149599986,64.04816315300017],[-65.17585201699993,64.04254791900017],[-65.22423255099994,64.04193756700003],[-65.21336829299986,64.02789948100015],[-65.19310462099993,64.02191803600013],[-65.08027096299985,64.01406484600007],[-65.0706274079999,64.01463450700014],[-65.03925533799995,64.02081940300009],[-64.92255611899986,64.01406484600007],[-64.92841549399989,63.99982330900015],[-64.93866939999992,63.98932526200018],[-64.96357174399986,63.97304922100015],[-64.92027747299989,63.97907135600015],[-64.89976966099994,63.98460521000008],[-64.88158118399993,63.99347565300004],[-64.85187740799991,64.01557038000011],[-64.83580481699994,64.02326080900004],[-64.79356848899991,64.03095123900006],[-64.78461666599989,64.03095123900006],[-64.77171790299988,64.02765534100003],[-64.76463782499991,64.021673895],[-64.76402747299994,64.01463450700014],[-64.76219641799989,64.00897858300014],[-64.7512914699999,64.00722890800012],[-64.73326575399997,64.01675039300012],[-64.71471106699997,64.03424713700008],[-64.69477291599989,64.04608795800006],[-64.67243404899995,64.038519598],[-64.66612708199992,64.03261953300007],[-64.66303463399991,64.027818101],[-64.66197669199997,64.02142975500006],[-64.66185462099989,64.01064687700016],[-64.65778561099992,64.00120677300013],[-64.63935299399989,63.99103424700009],[-64.63520260299995,63.98297760600014],[-64.64667721299992,63.9754906270001],[-64.7996313139999,63.936916408],[-64.8161108059999,63.9283714860001],[-64.83381100199989,63.91624583499999],[-64.89525305899988,63.89736562700006],[-64.88512122299991,63.88051992400006],[-64.89277096299995,63.86839427300008],[-64.91010494699995,63.860541083],[-64.92939205599987,63.85639069200015],[-64.96739661399988,63.852728583],[-64.9780981109999,63.846096096000124],[-64.99144446499992,63.82843659100003],[-64.97411048099994,63.80442942900007],[-64.95466061099992,63.78766510600014],[-64.92951412699995,63.77765534100017],[-64.76398678299994,63.74925364800005],[-64.70677649599989,63.76227448100003],[-64.69635982999992,63.75804271000011],[-64.68773352799991,63.74921295800006],[-64.67613684799989,63.74030182500012],[-64.54320227799985,63.6864281270001],[-64.52232825399997,63.669094143],[-64.50483150899993,63.644110419000164],[-64.51732337099993,63.62376536699999],[-64.52607174399992,63.61408112200002],[-64.5352270169999,63.60993073100009],[-64.56659908799995,63.61603424700017],[-64.57970130099991,63.61469147300009],[-64.58678137899996,63.602484442000026],[-64.56525631399995,63.595648505],[-64.54450436099995,63.58291250200013],[-64.53815670499992,63.569891669000135],[-64.55943762899989,63.56220123900011],[-64.54552161399991,63.55459219],[-64.53473873599992,63.545558986000074],[-64.52782141799992,63.533677476000136],[-64.5253393219999,63.5174828150001],[-64.52513587099992,63.50043366100011],[-64.52708899599989,63.49042389500015],[-64.53510494699992,63.482855536],[-64.55260169199997,63.472805080000036],[-64.52070064999995,63.46190013200005],[-64.50483150899993,63.44318268400017],[-64.50755774599989,63.422064520000056],[-64.53156490799995,63.40387604400017],[-64.56281490799992,63.400702216000106],[-64.60956783799989,63.422552802000055],[-64.63520260299995,63.41815827000006],[-64.60594641799992,63.38540273600013],[-64.52228756399998,63.37665436400008],[-64.50483150899993,63.345851955],[-64.50446529899992,63.335923570000105],[-64.50556393099995,63.324530341000056],[-64.5114233059999,63.31443919500007],[-64.5253393219999,63.308294989],[-64.5519913399999,63.31118398600004],[-64.57697506399992,63.32200755400011],[-64.60163326699993,63.32929108300014],[-64.62775631399998,63.32135651200015],[-64.59296627499992,63.306952216000106],[-64.51789303299991,63.298773505],[-64.48436438699989,63.28778717700014],[-64.49433346299986,63.283433335000055],[-64.51557369699995,63.27871328300012],[-64.5253393219999,63.27480703300013],[-64.53144283799989,63.26764557500008],[-64.53254146999993,63.26056549700005],[-64.53681393099993,63.25519440300017],[-64.55260169199997,63.25307851800006],[-64.56639563699989,63.25535716400004],[-64.57819576699994,63.2599144550001],[-64.59089107999992,63.262884833],[-64.60724850199992,63.260484117000075],[-64.61632239499994,63.25519440300017],[-64.6233617829999,63.248195705000015],[-64.63097083199995,63.24201080900003],[-64.64203854099989,63.239406643000116],[-64.65033932199995,63.24266185099999],[-64.65904700399994,63.25023021000014],[-64.66588294199997,63.258490302000105],[-64.66869055899991,63.26390208500008],[-64.67511959499991,63.27114492400009],[-64.70612545499995,63.27741120000005],[-64.71711178299988,63.2809919290001],[-64.72130286399992,63.28847890800007],[-64.72040768099993,63.2961286480001],[-64.72105872299989,63.303941148000106],[-64.7304581369999,63.31171295799999],[-64.77171790299988,63.328802802000055],[-64.76630611899992,63.34406159100003],[-64.77253170499998,63.35614655200011],[-64.77509518099988,63.36823151200012],[-64.75873775899987,63.38336823100012],[-64.79149329299989,63.39288971600003],[-64.79967200399989,63.39765045800011],[-64.80199133999986,63.402777411000116],[-64.80772864499994,63.42047760600003],[-64.84064693899992,63.4858259140001],[-64.83958899599986,63.48956940300006],[-64.83576412699995,63.49298737200014],[-64.83344479099989,63.49738190300004],[-64.83690344999988,63.50385163000014],[-64.84101314999992,63.507310289000046],[-64.84325110599991,63.508693752],[-64.84496008999992,63.510077216000084],[-64.85126705599995,63.518377997000165],[-64.87108313699989,63.53758372600014],[-64.89106197799995,63.552069403000175],[-64.93171139199993,63.57135651200012],[-64.94306393099993,63.58942291900003],[-64.94273841099988,63.598944403000026],[-64.93525143099993,63.612209377000156],[-64.93683834499987,63.62299225500005],[-64.94269771999988,63.632717190000044],[-64.95030676999994,63.63861725500005],[-64.9993383449999,63.65729401200004],[-65.0551244779999,63.67055898600015],[-65.08027096299985,63.6850446640001],[-65.09080969999991,63.69647858300006],[-65.11774654899989,63.73655833499999],[-65.13768469999988,63.748968817000026],[-65.18805904899992,63.76414622600002],[-65.20990963399996,63.78123607000004],[-65.19371497299991,63.78148021],[-65.14911861899992,63.77440013200011],[-65.1730443999999,63.793280341000134],[-65.20006262899994,63.80369700700005],[-65.22895260299995,63.808172919000114],[-65.25837154899995,63.809149481000176],[-65.28779049399992,63.81329987200003],[-65.30243893099995,63.812730210000055],[-65.3030492829999,63.80548737200003],[-65.29332434799994,63.797308661000116],[-65.20990963399996,63.753973700000145],[-65.18976803299992,63.736273505000064],[-65.1781713529999,63.72894928600014],[-65.16246497299994,63.726019598000114],[-65.13756262899992,63.71784088700012],[-65.12165279899997,63.69855377800017],[-65.10895748599991,63.675930080000015],[-65.09386145699992,63.65770091400013],[-65.04588782499991,63.63349030200013],[-65.00169837099995,63.61676666900012],[-64.99437415299994,63.612494208],[-64.98749752499992,63.603094794000164],[-64.98420162699989,63.593736070000126],[-64.98774166599989,63.58942291900003],[-65.05292721299988,63.57518138200014],[-65.09931393099995,63.549505927000084],[-65.08613033799992,63.516913153000125],[-65.05805416599989,63.48265208500014],[-65.0597631499999,63.45233795800005],[-65.08079993399994,63.445705471000096],[-65.13276119699992,63.44452545800005],[-65.14911861899992,63.43121979400014],[-65.10240637899993,63.43134186400012],[-65.0467016269999,63.43866608300011],[-65.05793209499993,63.42552317900008],[-65.07856197799994,63.416571356000034],[-65.12116451699988,63.40387604400017],[-65.08385169199994,63.39956289300006],[-65.04723059799991,63.40322500200013],[-65.0126440089999,63.401109117000104],[-64.97301184799989,63.37319570500007],[-64.95429439999992,63.364813544000114],[-64.94648189999992,63.35980866100009],[-64.94310462099992,63.35342031500015],[-64.94306393099993,63.33836497600013],[-64.93993079299995,63.33193594000012],[-64.93049068899991,63.320298570000105],[-64.91584225199992,63.296616929],[-64.90892493399991,63.28778717700014],[-64.9124242829999,63.28473541900014],[-64.91881262899992,63.277655341000084],[-64.92255611899986,63.27480703300013],[-64.90208899599989,63.239406643000116],[-64.93342037699993,63.24335358300011],[-64.95299231699991,63.253892319999984],[-64.99144446499992,63.28778717700014],[-65.0100805329999,63.29901764500015],[-65.03636633999992,63.311224677000105],[-65.06065833199989,63.316839911000116],[-65.07343502499995,63.308294989],[-65.05614173099994,63.30206940300003],[-65.00511633999986,63.27480703300013],[-65.02806555899994,63.24966054900007],[-65.07079016799986,63.262681382000046],[-65.11676998599992,63.28510163000006],[-65.14911861899992,63.28778717700014],[-65.10692298099988,63.24575429900006],[-65.09727942599991,63.239406643000116],[-65.00511633999986,63.239406643000116],[-64.97777258999989,63.2279320330001],[-64.97618567599994,63.21185944200003],[-64.9906713529999,63.200262762000094],[-65.01195227799988,63.202134507000046],[-65.02997799399989,63.21112702000009],[-65.05317135299993,63.219305731000084],[-65.07453365799998,63.21987539300015],[-65.08702551999991,63.20587799700008],[-65.07612057199992,63.20416901200009],[-65.0467016269999,63.19159577],[-65.05304928299995,63.187567450000024],[-65.0597631499999,63.18475983300008],[-65.0597631499999,63.17792389500006],[-64.93126380099994,63.183905341000084],[-64.88813229099992,63.17365143400014],[-64.86054439999992,63.171128648000135],[-64.86908932199992,63.162054755000135],[-64.88316809799997,63.15839264500009],[-64.89635169199991,63.156805731000155],[-64.90208899599989,63.15403880399999],[-64.8964330719999,63.14484284100003],[-64.88263912699989,63.14191315300008],[-64.81928463399996,63.14191315300008],[-64.80577551999988,63.138088283000066],[-64.79222571499992,63.130113023000135],[-64.7836401029999,63.11937083500011],[-64.77855383999989,63.10858795800012],[-64.77000891799986,63.10150788000005],[-64.7512914699999,63.102240302000084],[-64.77961178299995,63.09442780199999],[-64.84040279899997,63.10138580900017],[-64.86790930899991,63.09601471600003],[-64.84345455599987,63.08246491100006],[-64.77826900899996,63.07436758000012],[-64.76496334499993,63.05508047100009],[-64.76878821499994,63.041164455000015],[-64.7785131499999,63.04266998900005],[-64.79096432199992,63.05044179900006],[-64.8030899729999,63.05508047100009],[-64.81261145699992,63.05072663],[-64.80638587099995,63.041205145],[-64.79242916599989,63.03168366100003],[-64.77855383999989,63.02708567900007],[-64.77855383999989,63.02024974200005],[-64.78840084499988,63.01471588700004],[-64.78746497299991,63.00678131700006],[-64.78034420499998,62.998928127000106],[-64.77171790299988,62.99359772300012],[-64.77171790299988,62.986151434000064],[-64.7896215489999,62.98094310100005],[-64.82843990799995,62.977280992000104],[-64.84748287699992,62.97308991100005],[-64.82591712099992,62.96527741100008],[-64.77924557199991,62.958929755000135],[-64.75873775899987,62.951402085],[-64.7347305979999,62.928859768],[-64.7179662749999,62.92129140800016],[-64.71031653599988,62.9349632830001],[-64.71540279899989,62.95050690300009],[-64.71320553299992,62.956488348],[-64.70038814999987,62.958807684000185],[-64.69359290299985,62.95697663],[-64.62775631399998,62.91107819200011],[-64.64183508999992,62.89716217700013],[-64.66234290299988,62.89622630400005],[-64.70343990799995,62.904242255],[-64.72150631399997,62.90021393400004],[-64.73167883999994,62.890529690000065],[-64.73969479099989,62.87905508000013],[-64.7512914699999,62.869452216000134],[-64.78343665299984,62.86424388200005],[-64.88707434799997,62.86937083500008],[-64.91881262899992,62.880316473000114],[-64.94635982999995,62.895209052],[-65.01353919199991,62.911525783],[-65.05646725199998,62.93618398600001],[-65.0871068999999,62.947455145],[-65.10069739499994,62.958807684000185],[-65.10578365799995,62.96995677299999],[-65.10846920499992,62.98175690300014],[-65.11432857999998,62.992336330000015],[-65.12865149599986,62.99982330900017],[-65.14745032499991,62.980617580000136],[-65.14561926999994,62.96564362200009],[-65.13349361899995,62.94891998900005],[-65.12116451699988,62.924750067000055],[-65.14293372299993,62.931586005000085],[-65.18232174399995,62.95404694200009],[-65.23619544199997,62.96503327000011],[-65.24779212099989,62.979437567],[-65.25519771999987,62.99551015800007],[-65.27204342399997,63.00665924700009],[-65.28526770699992,62.98407623900012],[-65.25177975199998,62.95945872600011],[-65.20612545499992,62.937079169000114],[-65.18329830599993,62.92129140800016],[-65.18919837099995,62.90973541900002],[-65.19965572799993,62.9037946640001],[-65.20368404899989,62.89557526200009],[-65.19013424399992,62.87689850500012],[-65.17609615799998,62.86591217700008],[-65.12116451699988,62.83535390800012],[-65.0891820949999,62.79975006700009],[-65.07685299399995,62.794378973000114],[-65.0645238919999,62.78681061400008],[-65.02680416599992,62.75218333499999],[-65.01878821499989,62.74249909100003],[-65.01512610599994,62.73541901200015],[-65.00678463399987,62.73167552300013],[-64.99762936099998,62.72915273600002],[-64.99144446499992,62.72549062700006],[-64.98713131399992,62.71572500200013],[-64.9855443999999,62.70612213700015],[-64.98517818899995,62.69782135600017],[-64.98399817599994,62.69196198100003],[-64.97516842399997,62.677069403000175],[-64.96247311099992,62.66266510600013],[-64.9469701809999,62.65070221600016],[-64.92939205599987,62.64354075700014],[-64.93952389199991,62.63104889500011],[-64.95502682199995,62.63300202000006],[-64.97313391799986,62.64020416900011],[-64.99144446499992,62.64354075700014],[-64.99058997299991,62.62783437700007],[-65.00812740799995,62.614569403000026],[-65.08027096299985,62.58441803600011],[-65.10912024599989,62.575995184000156],[-65.13902747299997,62.570624091000106],[-65.1696264309999,62.56842682500012],[-65.2110082669999,62.578762111000046],[-65.2459610669999,62.605861721000146],[-65.29999752499992,62.678290106000084],[-65.26520748599995,62.69818756700009],[-65.30109615799995,62.69944896],[-65.31883704299995,62.69790273600015],[-65.33409583199992,62.69196198100003],[-65.32872473899997,62.676459052000105],[-65.33551998599998,62.67157623900014],[-65.34662838399993,62.67503489800005],[-65.35456295499998,62.68451569200015],[-65.35529537699992,62.69692617400007],[-65.35016842399989,62.707098700000024],[-65.31615149599989,62.74502187700015],[-65.29596920499995,62.75910065300009],[-65.24469967399992,62.78009674700003],[-65.27240963399989,62.787787177000055],[-65.34247799399989,62.775132554],[-65.37507076699993,62.78693268400014],[-65.36286373599995,62.80174388200011],[-65.36042232999992,62.81525299700008],[-65.35590572799987,62.82526276200018],[-65.33751380099991,62.82916901200017],[-65.29393469999991,62.826483466000084],[-65.27363033799992,62.82782623900008],[-65.25153561099992,62.83535390800012],[-65.27745520699992,62.83958567900007],[-65.30353756399998,62.840277411],[-65.32599850199989,62.84369538000011],[-65.34089107999995,62.85578034100003],[-65.34284420499989,62.86847565300017],[-65.34154212099989,62.88837311400008],[-65.33653723899994,62.90753815300003],[-65.32725989499991,62.91787344000015],[-65.34504146999988,62.92584870000008],[-65.3683568999999,62.89288971600002],[-65.39863033799989,62.82916901200017],[-65.40721594999991,62.827337958],[-65.41600501199986,62.82379791900003],[-65.42560787699995,62.82123444200003],[-65.43651282499991,62.82225169499999],[-65.43879146999988,62.82762278900013],[-65.43927975199998,62.83710358300014],[-65.44355221299989,62.845851955000015],[-65.45697994699988,62.84894440300008],[-65.46165930899991,62.845160223000065],[-65.47101803299992,62.828029690000115],[-65.47748775899993,62.82225169499999],[-65.52830969999988,62.8285993510001],[-65.5606176419999,62.821275132000025],[-65.6038305329999,62.825140692],[-65.64061438699989,62.841986395],[-65.6561986969999,62.8731957050001],[-65.66144771999987,62.891791083000086],[-65.66242428299992,62.90053945500015],[-65.66588294199994,62.912258205000136],[-65.67365475199995,62.90961334800006],[-65.68663489499994,62.89679596600003],[-65.70506751199989,62.899481512000094],[-65.72065182199987,62.90631745000004],[-65.75243079299992,62.924750067000055],[-65.74152584499993,62.94269440300008],[-65.72504635299995,62.95962148600007],[-65.68976803299991,62.986151434000064],[-65.69713294199991,62.99359772300012],[-65.69005286399994,62.995672919000135],[-65.68736731699995,62.99705638200011],[-65.68354244699995,62.99982330900017],[-65.69086666599993,63.00653717700011],[-65.70551510299987,63.01618073100009],[-65.71027584499987,63.02024974200005],[-65.71235104099988,63.03046295799999],[-65.71064205599987,63.04181549700014],[-65.71222896999988,63.051214911],[-65.72419186099995,63.05508047100009],[-65.73884029899995,63.04865143400018],[-65.75190182199992,63.03318919500007],[-65.75727291599989,63.01410553600008],[-65.74872799399985,62.9967308610001],[-65.7420548169999,62.97638580900009],[-65.76569576699993,62.962632554],[-65.81663977799985,62.9483096370001],[-65.82685299399989,62.92837148600001],[-65.81220455599986,62.915920315000015],[-65.79035396999993,62.904242255],[-65.77912350199992,62.88686758000004],[-65.78815670499995,62.8731957050001],[-65.80842037699995,62.882757880000085],[-65.84056555899991,62.91107819200011],[-65.87584387899994,62.928941147999986],[-65.8855688139999,62.93154531500009],[-65.92988033799993,62.923244533000016],[-65.94420325399992,62.924750067000055],[-65.96349036399997,62.9374860700001],[-65.95311438699986,62.950344143000116],[-65.90949459499987,62.97308991100005],[-65.88593502499992,63.002386786],[-65.87873287699998,63.00665924700009],[-65.86864173099991,63.008856512000094],[-65.84386145699995,63.021144924000154],[-65.83433997299994,63.02708567900007],[-65.83433997299994,63.03335195500004],[-65.86628170499993,63.03213125200001],[-65.89838619699992,63.02350495000009],[-65.95726477799991,62.99982330900017],[-65.95726477799991,62.99359772300012],[-65.95335852799991,62.99046458500006],[-65.94884192599994,62.98395416900014],[-65.94420325399992,62.97931549700002],[-66.00230872299997,62.980292059000085],[-66.02936764199993,62.986151434000064],[-66.05345618399993,62.99982330900017],[-66.06110592399997,63.00690338700004],[-66.06745357999988,63.01447174700009],[-66.07172604099992,63.02240631700006],[-66.07331295499995,63.03021881700014],[-66.06781979099992,63.03196849200005],[-66.05744381399992,63.04071686400011],[-66.05174719999994,63.05048248900006],[-66.06029212099986,63.05508047100009],[-66.08018958199995,63.04930247600013],[-66.09801184799994,63.0390485700001],[-66.11750240799991,63.03497955900007],[-66.14220130099991,63.04755280200014],[-66.14911861899988,63.06012604400003],[-66.1555883449999,63.07843659100008],[-66.16478430899988,63.09503815300014],[-66.18012447799993,63.102240302000084],[-66.2078751289999,63.10765208500011],[-66.25739498599995,63.13153717699999],[-66.2831518219999,63.136948960000055],[-66.29088294199991,63.12897370000009],[-66.26585852799988,63.11163971600012],[-66.21796627499987,63.08856842700014],[-66.21263587099992,63.08014557500008],[-66.21056067599989,63.071437893],[-66.2105199859999,63.05133698100014],[-66.20600338399993,63.040472723000065],[-66.1953832669999,63.03392161699999],[-66.18309485599994,63.02924225500008],[-66.15290279899992,63.011948960000076],[-66.10423743399988,62.996771552],[-66.08759518099993,62.97931549700002],[-66.0934545559999,62.97821686400009],[-66.1028539699999,62.97418854400011],[-66.10871334499987,62.97308991100005],[-66.10387122299997,62.95160553600014],[-66.12913977799992,62.943345445000055],[-66.16466223899991,62.94456614800008],[-66.19066321499989,62.951402085],[-66.21027584499986,62.96796295800006],[-66.2226049469999,62.9759789080001],[-66.23810787699992,62.97931549700002],[-66.24571692599994,62.97833893400015],[-66.26032467399997,62.97406647300016],[-66.26886959499988,62.97308991100005],[-66.27643795499995,62.97614166900014],[-66.27830969999991,62.98285553600003],[-66.27814693899995,62.989813544000086],[-66.27940833199995,62.99359772300012],[-66.30732174399989,62.99799225500003],[-66.36750240799995,62.99713776200009],[-66.3967179029999,62.99982330900017],[-66.4184057279999,63.007513739],[-66.46222896999984,63.034613348000114],[-66.47801673099988,63.04755280200014],[-66.47179114499994,63.061265367000075],[-66.50279700399994,63.06452057500012],[-66.51923580599995,63.077337958000136],[-66.5167944,63.08893463700014],[-66.49103756399998,63.08856842700014],[-66.50279700399994,63.09804922100015],[-66.52582760299991,63.123358466000084],[-66.56501217399995,63.150824286000145],[-66.57420813699991,63.16494375200007],[-66.55085201699993,63.186712958000115],[-66.55024166599988,63.19818756700008],[-66.56366939999985,63.215806382],[-66.58051510299987,63.228094794000135],[-66.61742102799994,63.245672919000086],[-66.63227291599989,63.25678131700012],[-66.64924068899995,63.26544830900012],[-66.67125403599997,63.2714704450001],[-66.6884252589999,63.281398830000015],[-66.69090735599991,63.301459052000084],[-66.68207760299987,63.31256745000012],[-66.64818274599992,63.34003327000014],[-66.6356908839999,63.35667552300003],[-66.64313717399997,63.35667552300003],[-66.63837643099987,63.364650783000165],[-66.63874264199998,63.37067291900014],[-66.64366614499994,63.374579169000135],[-66.65278072799994,63.37592194200015],[-66.66535396999984,63.37348053600003],[-66.6676733059999,63.36701080900009],[-66.6668188139999,63.35838450700002],[-66.66978919199991,63.34926992400001],[-66.68744869699992,63.33454010600012],[-66.7285863919999,63.30857982000013],[-66.73871822799995,63.294012762000094],[-66.73359127499995,63.27879466400013],[-66.71678626199994,63.265570380000085],[-66.65477454299989,63.23859284100003],[-66.63227291599989,63.232611395],[-66.6253149079999,63.229641018],[-66.61046301999994,63.216213283000016],[-66.60090084499987,63.21206289300007],[-66.61823482999995,63.18060944200015],[-66.62303626199991,63.16449616100009],[-66.60741126199994,63.15428294500013],[-66.59321041599992,63.14020416900009],[-66.58446204299985,63.136948960000055],[-66.58088131399998,63.132635809000064],[-66.5872696609999,63.11090729400017],[-66.58788001199986,63.102240302000084],[-66.58014889199994,63.09772370000003],[-66.56883704299989,63.09662506700009],[-66.5600479809999,63.09324778900007],[-66.55992591099992,63.08173248900011],[-66.56757564999987,63.07697174700003],[-66.60151119699991,63.068060614],[-66.62336178299995,63.07347239800013],[-66.66185462099995,63.09711334800006],[-66.68407141799992,63.102240302000084],[-66.67381751199989,63.08759186400005],[-66.66124426999988,63.074286200000145],[-66.64631100199995,63.06220123900014],[-66.62913977799991,63.05133698100014],[-66.56956946499992,63.03021881700014],[-66.55370032499988,63.02024974200005],[-66.54377193899995,63.00409577],[-66.55040442599994,62.99628327],[-66.56639563699994,62.99799225500003],[-66.59870357999995,63.019964911000116],[-66.65619869699995,63.04075755400011],[-66.65619869699995,63.03335195500004],[-66.64936275899993,63.03335195500004],[-66.64936275899993,63.02708567900007],[-66.67511959499987,63.0287132830001],[-66.69786536399991,63.03851959800012],[-66.75877844999991,63.081854559000085],[-66.76866614499991,63.09064362200014],[-66.77281653599997,63.09906647300003],[-66.76703854099989,63.12006256700006],[-66.7653295559999,63.13178131700014],[-66.76939856699994,63.136948960000055],[-66.78050696499989,63.14191315300008],[-66.77802486899986,63.15249258000016],[-66.7704565089999,63.162298895000085],[-66.76598059799994,63.16494375200007],[-66.76414954299989,63.18374258],[-66.76683508999994,63.19037506700009],[-66.80357825399994,63.23529694200009],[-66.81151282499991,63.25470612200009],[-66.80695553299995,63.27480703300013],[-66.83393307199992,63.27167389500006],[-66.84593665299994,63.25202057500012],[-66.84638424399994,63.22996653900013],[-66.83800208199996,63.21954987200002],[-66.81371008999992,63.21002838700004],[-66.80467688699989,63.18842194200012],[-66.81135006399995,63.16518789300002],[-66.83429928299992,63.15070221600017],[-66.86066646999984,63.15143463700009],[-66.88646399599986,63.162054755000135],[-66.90953528599994,63.178045966000056],[-66.9274389309999,63.19501373900003],[-66.94867916599986,63.208400783000016],[-67.00340735599991,63.22699616100003],[-67.01988684799989,63.239406643000116],[-67.01911373599995,63.26162344],[-66.99433346299988,63.271877346000124],[-66.96507727799988,63.27871328300012],[-66.95099850199992,63.29092031500004],[-66.96198482999998,63.303697007000046],[-66.98497473899997,63.310126044000164],[-67.00483150899987,63.31976959800012],[-67.00621497299994,63.34247467699999],[-66.97919674399988,63.377386786],[-66.97398841099991,63.395900783000016],[-66.99535071499986,63.40387604400017],[-67.01292883999989,63.40273672100012],[-67.01691646999987,63.39862702000009],[-67.01703854099993,63.39118073100012],[-67.02741451699995,63.37173086100002],[-67.03779049399995,63.3432477890001],[-67.03974361899989,63.335028387000094],[-67.0363256499999,63.32404205900015],[-67.01244055899991,63.28778717700014],[-67.03819739499994,63.28339264500006],[-67.11204993399984,63.28778717700014],[-67.13105221299986,63.29262929900003],[-67.16254635299987,63.314764716000084],[-67.18439693899992,63.32135651200015],[-67.18439693899992,63.31513092700011],[-67.16584225199992,63.306586005],[-67.15302486899989,63.29515208500014],[-67.15412350199992,63.28522370000003],[-67.17723548099987,63.2809919290001],[-67.20112057199995,63.28847890800007],[-67.23981686099998,63.32135651200015],[-67.34019934799994,63.37409088700015],[-67.35712643099991,63.387762762000094],[-67.37140865799992,63.404364325000145],[-67.3823949859999,63.424383856000034],[-67.38678951699998,63.45221588700017],[-67.38984127499987,63.45913320500009],[-67.40082760299993,63.465521552000105],[-67.41462154899995,63.46796295800014],[-67.42353268099987,63.465073960000105],[-67.42023678299992,63.45571523600007],[-67.41783606699988,63.43626536699999],[-67.41466223899994,63.424994208],[-67.41026770699995,63.424383856000034],[-67.41877193899998,63.414048570000105],[-67.42357337099985,63.41522858300014],[-67.42931067599994,63.42096588700012],[-67.45209713399996,63.42666250200001],[-67.47809811099995,63.43642812700013],[-67.48912512899989,63.43866608300011],[-67.50068111899992,63.442816473000065],[-67.50361080599993,63.452582098],[-67.50352942599994,63.463934637000186],[-67.5059301419999,63.472805080000036],[-67.53998775899993,63.49298737200014],[-67.54906165299991,63.505926825000145],[-67.53319251199989,63.52118561400012],[-67.56029212099992,63.535956122000115],[-67.59203040299988,63.54474518400018],[-67.61839758999989,63.558010158000016],[-67.62938391799995,63.58576080900018],[-67.64439856699997,63.603338934000114],[-67.6728002589999,63.61692942900007],[-67.68968665299987,63.632879950000174],[-67.67035885299994,63.65770091400013],[-67.69623775899996,63.65448639500009],[-67.74376380099997,63.639960028000026],[-67.76630611899995,63.63666413],[-67.78571529899995,63.644761460000105],[-67.79185950399994,63.66351959800009],[-67.79552161399988,63.68451569200012],[-67.8075658839999,63.69928620000012],[-67.81781979099992,63.6928571640001],[-67.82725989499994,63.691799221000124],[-67.83539791599985,63.696030992000075],[-67.84166419199991,63.70551178600006],[-67.8391820949999,63.72329336100015],[-67.86554928299998,63.74144114800005],[-67.92418372299991,63.7675641950001],[-67.91596432199992,63.74518463700017],[-67.86998450399994,63.71381256700014],[-67.86591549399989,63.70237864799999],[-67.86864173099988,63.6864281270001],[-67.85216223899988,63.67234935100006],[-67.81432044199994,63.650864976000115],[-67.80658932199992,63.62978750200009],[-67.81952877499992,63.59235260600014],[-67.81098385299988,63.571478583],[-67.80353756399992,63.561468817],[-67.79222571499993,63.54140859600015],[-67.78364010299991,63.53082916900008],[-67.71764075399992,63.47264232000008],[-67.68468176999994,63.43333567900006],[-67.67035885299994,63.39476146],[-67.69770260299991,63.369696356000176],[-67.73127193899995,63.369696356000176],[-67.78612219999988,63.39671458500014],[-67.81810462099986,63.40387604400017],[-67.8269750639999,63.407904364000146],[-67.8344213529999,63.417181708],[-67.8450821609999,63.43488190300009],[-67.86078854099989,63.45555247600011],[-67.86888587099992,63.46369049700003],[-67.94469153599997,63.507513739],[-68.00169837099989,63.5273298200001],[-68.01667232999992,63.53758372600014],[-68.03388424399992,63.54677969],[-68.07469641799989,63.549017645000085],[-68.09211178299995,63.558417059000114],[-68.10260982999992,63.57391998900012],[-68.1105443999999,63.58942291900003],[-68.1204320949999,63.60236237200005],[-68.13715572799993,63.60993073100009],[-68.13044186099998,63.58803945500016],[-68.1432999339999,63.58161041900014],[-68.1614477199999,63.58502838700014],[-68.17064368399987,63.592515367000104],[-68.18110104099995,63.60618724200004],[-68.23045813699994,63.59662506700006],[-68.24640865799995,63.60993073100009],[-68.22431393099995,63.617377020000056],[-68.22297115799995,63.631537177],[-68.23334713399996,63.648423569999984],[-68.25727291599992,63.67841217700014],[-68.27057857999993,63.69098541900002],[-68.28892981699991,63.69912344000014],[-68.3152563139999,63.69928620000012],[-68.3152563139999,63.691839911000116],[-68.29010982999992,63.66258372600011],[-68.28010006399995,63.64468008000012],[-68.28697669199994,63.63666413],[-68.31383216099994,63.639960028000026],[-68.36339270699997,63.65448639500009],[-68.3866674469999,63.65770091400013],[-68.40033932199992,63.66404857000008],[-68.41490637899994,63.67890045800011],[-68.42658443899994,63.69599030200008],[-68.43134518099993,63.708929755000085],[-68.44074459499987,63.71625397300009],[-68.48383541599988,63.73615143400017],[-68.49620520699992,63.74030182500012],[-68.50702877499992,63.74144114800005],[-68.52875729099989,63.74607982],[-68.54059811099995,63.74652741100009],[-68.54108639199995,63.74428945500011],[-68.54023189999995,63.73956940300008],[-68.54051673099988,63.73493073100014],[-68.54426021999988,63.732855536000145],[-68.57530676999991,63.732855536000145],[-68.73082434799994,63.777248440000065],[-68.74876868399988,63.77977122599999],[-68.74604244699992,63.7675641950001],[-68.73827063699991,63.76227448100003],[-68.71747799399992,63.75299713700017],[-68.71247311099998,63.74652741100009],[-68.71519934799994,63.73566315300009],[-68.72504635299987,63.732611395],[-68.73692786399991,63.73501211100014],[-68.74604244699992,63.74030182500012],[-68.77367102799991,63.73065827000015],[-68.88471432199992,63.74872467700008],[-68.91246497299991,63.7585309920001],[-68.92817135299987,63.76072825699999],[-68.99303137899994,63.76072825699999],[-68.99828040299994,63.74994538],[-68.9902237619999,63.74042389500009],[-68.91966712099992,63.70502350500008],[-68.88316809799997,63.67763906500013],[-68.82774817599991,63.65070221600014],[-68.8148901029999,63.63666413],[-68.8144018219999,63.62474192900005],[-68.84601803299998,63.62083567900008],[-68.86335201699987,63.60993073100009],[-68.84919186099995,63.60390859600009],[-68.83222408799986,63.59943268400012],[-68.79784094999994,63.595648505],[-68.78624426999991,63.590643622000144],[-68.77680416599989,63.578802802],[-68.76842200399994,63.565130927000055],[-68.76032467399992,63.55475495000014],[-68.71467037699998,63.525702216000084],[-68.68683834499991,63.51288483300014],[-68.64472408799986,63.50153229400018],[-68.5818985669999,63.47272370000006],[-68.55174719999988,63.44936758000012],[-68.5136205719999,63.4444033870001],[-68.44440670499992,63.44489166900008],[-68.45323645699997,63.43378327000014],[-68.4669083319999,63.430121161],[-68.49958248599995,63.43121979400014],[-68.49323482999992,63.422308661000024],[-68.44871985599991,63.39166901200009],[-68.40339107999992,63.37592194200015],[-68.37909908799992,63.36041901200003],[-68.33722896999993,63.322577216000084],[-68.30077063699986,63.31195709800015],[-68.28962154899995,63.30426666900002],[-68.28014075399994,63.29523346600002],[-68.27428137899989,63.28778717700014],[-68.27619381399995,63.284328518000116],[-68.28205318899998,63.27948639500006],[-68.28730221299989,63.27362702000011],[-68.28734290299988,63.26727936400009],[-68.28034420499998,63.26166413],[-68.26378333199992,63.26044342700008],[-68.24583899599989,63.25214264500009],[-68.21373450399992,63.24160390800013],[-68.20539303299992,63.232611395],[-68.20710201699991,63.21865469000012],[-68.21739661399994,63.21210358300005],[-68.23200436099998,63.21076080900015],[-68.24640865799995,63.21206289300007],[-68.2298070949999,63.19928620000003],[-68.19005286399987,63.189886786],[-68.17402096299989,63.18134186400009],[-68.15925045499992,63.16779205900013],[-68.14692135299985,63.16063060100008],[-68.13280188699994,63.157904364],[-68.1126195949999,63.157456773000106],[-68.0595190089999,63.16620514500009],[-68.01414954299989,63.15228913],[-67.94574947799991,63.14374420800008],[-67.91742916599989,63.1432152360001],[-67.92589270699992,63.13393789300015],[-67.93708248599992,63.12970612200003],[-67.94676673099988,63.12470123900009],[-67.95466061099995,63.103583075000174],[-67.9856664699999,63.07550690300014],[-67.96922766799989,63.068060614],[-67.94908606699994,63.06940338700017],[-67.92829342399995,63.07713450699999],[-67.90998287699989,63.08856842700014],[-67.91742916599989,63.106024481000084],[-67.89574133999989,63.118475653000026],[-67.86152096299992,63.12034739799999],[-67.79865475199993,63.088853257000075],[-67.75739498599992,63.088690497000115],[-67.67780514199993,63.102240302000084],[-67.63255774599989,63.10321686400005],[-67.61131751199991,63.09711334800006],[-67.60212154899995,63.08173248900011],[-67.61091061099992,63.066799221000096],[-67.63219153599988,63.060980536000116],[-67.71357174399995,63.06085846600014],[-67.73114986899988,63.05597565300008],[-67.73863684799994,63.044134833000115],[-67.7470596999999,63.03465403900013],[-67.78718014199993,63.02362702000006],[-67.80072994699988,63.01410553600008],[-67.76659094999988,63.01410553600008],[-67.77094479099989,63.001125393000095],[-67.76557369699992,62.99152252800009],[-67.75373287699995,62.98623281500012],[-67.73863684799994,62.986151434000064],[-67.73863684799994,62.97931549700002],[-67.75043697799993,62.978461005000106],[-67.76060950399996,62.97500234600012],[-67.76850338399991,62.968573309000114],[-67.77338619699991,62.958807684000185],[-67.74278723899988,62.95697663],[-67.72606360599985,62.95770905200011],[-67.71503658799992,62.96222565300017],[-67.71320553299992,62.971258856000084],[-67.71873938699986,62.98212311400008],[-67.72834225199992,62.99249909100017],[-67.73863684799994,62.99982330900017],[-67.67686926999994,63.028021552000055],[-67.66352291599992,63.04075755400011],[-67.63792883999986,63.039496161],[-67.61485755099989,63.03546784100003],[-67.59308834499984,63.03676992400012],[-67.57135982999995,63.05133698100014],[-67.55768795499992,63.05296458499999],[-67.53693600199992,63.04498932500003],[-67.51703854099992,63.032375393000144],[-67.5059301419999,63.02024974200005],[-67.51020260299991,63.00775788000014],[-67.52936764199998,62.99949778900008],[-67.55488033799989,62.9950218770001],[-67.57819576699998,62.99359772300012],[-67.59955807199992,62.9897321640001],[-67.62934322799995,62.98041413000008],[-67.64976966099991,62.96906159100011],[-67.64305579299987,62.958807684000185],[-67.66388912699995,62.952215887000094],[-67.67255611899995,62.94721100500005],[-67.67780514199993,62.93838125200001],[-67.67658443899991,62.92869700700014],[-67.66901607999995,62.92487213700003],[-67.66063391799992,62.92430247600005],[-67.65672766799992,62.924750067000055],[-67.65672766799992,62.91787344000015],[-67.64232337099995,62.934027411000024],[-67.58995520699995,62.95783112200008],[-67.56794186099995,62.97308991100005],[-67.55097408799989,62.96356842700009],[-67.52594967399997,62.96873607],[-67.47858639199993,62.986151434000064],[-67.46239173099988,62.98623281500012],[-67.44269771999984,62.983832098000086],[-67.42381751199991,62.979437567],[-67.39728756399995,62.96841054900016],[-67.39423580599995,62.96385325700011],[-67.3997289699999,62.955145575000024],[-67.41075598899994,62.94476959800012],[-67.41657467399997,62.94106679900007],[-67.4233292309999,62.93838125200001],[-67.4203588529999,62.93744538000011],[-67.41783606699988,62.937323309000064],[-67.41657467399997,62.93598053600006],[-67.41710364499997,62.93154531500009],[-67.39024817599997,62.938625393000144],[-67.37218176999994,62.9409040390001],[-67.35614986899986,62.93683502800015],[-67.2937719389999,62.90005117400007],[-67.27171790299991,62.89264557500008],[-67.24518795499995,62.88996002800011],[-67.24518795499995,62.88373444200014],[-67.36872311099995,62.86322663],[-67.36872311099995,62.85578034100003],[-67.32233639199997,62.85407135600012],[-67.29918372299993,62.855902411],[-67.27997799399989,62.86322663],[-67.28734290299988,62.85578034100003],[-67.24872799399992,62.87474192900014],[-67.22236080599993,62.88104889500006],[-67.19798743399988,62.87689850500012],[-67.17479407499994,62.8544782570001],[-67.19111080599995,62.83893463700012],[-67.22260494699987,62.82697174700009],[-67.24518795499995,62.81484609600009],[-67.23029537699988,62.816107489],[-67.19200598899994,62.82493724200005],[-67.18439693899992,62.82575104400018],[-67.17577063699991,62.81500885600015],[-67.15632076699993,62.8165550800001],[-67.12230383999989,62.82916901200017],[-67.10212154899995,62.81500885600015],[-67.09235592399992,62.806097723000036],[-67.08820553299998,62.79779694200012],[-67.09308834499984,62.78685130400007],[-67.11558997299994,62.768866278000026],[-67.12230383999989,62.75958893400017],[-67.1059057279999,62.76093170800005],[-67.0772598949999,62.773016669000164],[-67.03974361899989,62.77387116100009],[-67.03929602799991,62.76911041900017],[-67.04084225199995,62.76788971600014],[-67.04369055899988,62.768011786000116],[-67.04718990799995,62.76703522300014],[-67.0423070949999,62.76642487200009],[-67.04161536399997,62.76455312700012],[-67.04718990799995,62.75958893400017],[-67.02318274599992,62.745306708000086],[-67.01471920499998,62.73745351800002],[-67.01618404899995,62.729193427000105],[-67.02692623599995,62.719794012000186],[-67.06025143099995,62.69818756700009],[-67.0534154939999,62.69196198100003],[-67.01756751199991,62.70099518400003],[-66.98200436099995,62.70307038000006],[-66.91002356699991,62.69818756700009],[-66.9191381499999,62.693915106000176],[-66.95783443899995,62.68451569200015],[-66.97187252499988,62.679266669000164],[-66.98436438699991,62.67291901200004],[-67.00621497299994,62.65717194200008],[-66.98094641799989,62.65774160400006],[-66.7597143219999,62.68390534100008],[-66.72504635299993,62.67084381700012],[-66.73961341099992,62.66689687700013],[-66.75397701699993,62.660589911],[-66.76581783799989,62.65082428600014],[-66.77281653599997,62.636664130000106],[-66.69037838399991,62.64996979400014],[-66.66978919199991,62.64354075700014],[-66.68272864499991,62.63800690300012],[-66.71821041599989,62.629217841000134],[-66.70771236899992,62.62189362200014],[-66.6957494779999,62.61676666900003],[-66.68317623599991,62.61546458500013],[-66.65489661399992,62.623358466000106],[-66.63975989499993,62.62103913000014],[-66.62446041599989,62.616929429],[-66.60834713399993,62.615627346000096],[-66.61156165299988,62.612372137000065],[-66.61412512899989,62.609076239000025],[-66.61742102799994,62.60569896],[-66.62262936099992,62.602606512000094],[-66.60517330599995,62.582953192000055],[-66.55146236899988,62.560736395],[-66.54010982999992,62.53733958500011],[-66.52533932199992,62.51902903900004],[-66.49730383999992,62.51341380400005],[-66.48029537699995,62.505072333000086],[-66.49848385299994,62.47842031500016],[-66.49596106699994,62.46320221600016],[-66.51512610599991,62.43659088700003],[-66.5121557279999,62.423814194999984],[-66.4964493479999,62.42072174700008],[-66.47606360599994,62.428656317000055],[-66.4559220039999,62.439520575000145],[-66.44074459499993,62.44489166900012],[-66.35822506399992,62.45172760600003],[-66.35240637899994,62.44745514500003],[-66.36664791599986,62.43805573100009],[-66.3967179029999,62.423814194999984],[-66.32782955599994,62.39032623900011],[-66.3371068999999,62.380560614],[-66.34626217399997,62.37811920800006],[-66.35639400899991,62.378363348],[-66.3903295559999,62.37213776200004],[-66.39586341099991,62.368882554],[-66.40632076699998,62.35895416900008],[-66.41698157499991,62.354396877000156],[-66.44505774599992,62.35639069200009],[-66.46296139199995,62.355292059000035],[-66.46971594999991,62.35602448100017],[-66.47553463399996,62.35565827000006],[-66.47801673099988,62.352443752],[-66.47789466099991,62.346502997000165],[-66.47679602799988,62.34088776200017],[-66.47386633999994,62.33665599200005],[-66.42975826699995,62.32135651200009],[-66.34382076699995,62.270697333000115],[-66.30671139199993,62.27301666900008],[-66.34833736899989,62.30988190300015],[-66.36327063699994,62.33197663000014],[-66.34455318899998,62.34186432500014],[-66.30195064999992,62.351060289000124],[-66.28685462099992,62.34931061400012],[-66.27497311099998,62.343247789000124],[-66.25739498599995,62.328517971000124],[-66.24461829299992,62.32143789300006],[-66.23810787699992,62.34052155200005],[-66.23253333199989,62.34951406500009],[-66.22455807199995,62.34951406500009],[-66.2105199859999,62.34186432500014],[-66.2078751289999,62.33710358300006],[-66.20673580599987,62.33026764500011],[-66.20331783799986,62.32404205900017],[-66.18512936099994,62.31948476800012],[-66.16576087099995,62.310370184000035],[-66.15587317599994,62.307766018000116],[-66.16014563699986,62.30414459800009],[-66.16388912699998,62.29962799700003],[-66.16722571499992,62.29389069200014],[-66.17015540299994,62.286607164000046],[-66.15782630099987,62.27338288],[-66.15587317599994,62.26992422100001],[-66.15428626199991,62.26536692900005],[-66.15265865799998,62.25462474200005],[-66.15526282499988,62.24811432500015],[-66.1667374339999,62.25625234600007],[-66.1854955719999,62.2651227890001],[-66.21308346299989,62.26797109600015],[-66.26512610599985,62.26679108300011],[-66.18004309799994,62.242010809000156],[-66.05915279899992,62.22809479400017],[-66.03978430899991,62.23944733300005],[-66.04662024599992,62.23944733300005],[-66.01842200399994,62.25047435100002],[-65.98713131399997,62.24209219000012],[-65.93000240799992,62.2047386740001],[-65.93000240799992,62.197821356000176],[-66.01207434799991,62.174058335],[-66.03608150899996,62.16063060099999],[-66.04828854099995,62.150702216000084],[-66.05321204299989,62.14533112200003],[-66.05394446499992,62.13898346600011],[-66.05345618399993,62.12616608300005],[-66.04902096299986,62.11937083500013],[-66.03107662699992,62.098456122000165],[-66.02924557199995,62.09174225500014],[-66.03766842399989,62.08075592700008],[-66.04002844999984,62.07526276200006],[-66.04466712099989,62.073797919000086],[-66.06029212099986,62.07493724200013],[-66.08385169199991,62.08392975500014],[-66.08759518099993,62.08490631700012],[-66.0929662749999,62.08905670800006],[-66.11896725199998,62.087876695000126],[-66.12852942599997,62.088609117000075],[-66.15839596299985,62.12457916900002],[-66.17870032499985,62.134670315],[-66.20429439999992,62.11660390800007],[-66.19989986899995,62.11298248900012],[-66.19355221299992,62.10980866100005],[-66.18647213399996,62.10907623900011],[-66.17304439999987,62.11749909100017],[-66.16877193899994,62.11383698100011],[-66.1659643219999,62.107001044000114],[-66.16331946499992,62.10228099200002],[-66.10749264199993,62.05019765800013],[-66.1028539699999,62.042914130000135],[-66.10126705599987,62.030259507000046],[-66.10663814999992,62.02366771],[-66.13280188699989,62.016791083000086],[-66.14220130099991,62.01288483300008],[-66.11860104099986,62.00653717700005],[-66.08873450399997,62.00242747600011],[-66.06517493399994,61.996649481000034],[-66.06029212099986,61.98501211100013],[-66.04377193899998,61.96238841400007],[-66.03978430899991,61.95831940300011],[-66.02684485599991,61.95831940300011],[-65.9997045559999,61.96649811400012],[-65.9882706369999,61.96165599200005],[-65.9862768219999,61.95258209800012],[-65.98859615799995,61.94220612200005],[-65.98725338399994,61.933823960000076],[-65.96361243399994,61.927313544000086],[-65.9541723299999,61.919501044000086],[-65.94884192599994,61.908758856000176],[-65.95042883999989,61.896877346000124],[-65.97126217399995,61.886379299000154],[-66.03355872299994,61.889349677000084],[-66.04662024599992,61.8797875020001],[-66.06309973899991,61.87494538000003],[-66.17015540299994,61.87641022300007],[-66.27448482999989,61.85809967700003],[-66.3375951809999,61.87523021000014],[-66.40571041599992,61.877142645],[-66.43769283799992,61.88320547100009],[-66.48615475199992,61.89826080900012],[-66.51044674399989,61.901922919000135],[-66.53978430899988,61.90302155200011],[-66.55524654899992,61.90737539300002],[-66.57941646999993,61.92609284100016],[-66.59129798099988,61.930365302000084],[-66.60407467399992,61.92792389500014],[-66.61542721299989,61.92348867400007],[-66.62763424399986,61.92084381700008],[-66.64313717399997,61.92413971600003],[-66.66242428299992,61.93756745000012],[-66.65607662699998,61.94782135600003],[-66.61518307199995,61.965073960000055],[-66.63621985599988,61.97158437700013],[-66.67784583199995,61.96466705900003],[-66.69774329299993,61.965073960000055],[-66.70502682199995,61.96906159100002],[-66.7113744779999,61.9755720070001],[-66.7216283839999,61.98871491100008],[-66.72724361899992,61.99213288],[-66.75177975199992,61.999253648000135],[-66.74925696499992,62.00299713700014],[-66.74555416599989,62.01288483300008],[-66.77354895699989,62.01723867400007],[-66.85541744699995,62.01972077],[-66.92015540299987,62.04425690300003],[-66.94355221299995,62.04767487200002],[-66.92463131399992,62.036525783000016],[-66.91681881399992,62.03400299700008],[-66.93757076699993,62.014471747000115],[-66.96934973899988,62.02374909100017],[-67.02326412699992,62.05390045799999],[-67.03925533799992,62.050767320000105],[-67.07050533799989,62.037176825000145],[-67.08751380099994,62.03400299700008],[-67.10749264199993,62.036688544000164],[-67.12433834499993,62.04336172100012],[-67.22455807199992,62.09833405200011],[-67.23595130099989,62.10187409100008],[-67.24518795499995,62.10228099200002],[-67.24779212099995,62.09861888200014],[-67.25348873599992,62.084377346000124],[-67.25605221299992,62.08124420800006],[-67.31745357999992,62.07322825700011],[-67.32774817599994,62.07807038],[-67.32970130099987,62.08690013200005],[-67.33470618399994,62.10032786700005],[-67.34150143099995,62.11371491100014],[-67.34882564999987,62.12274811400006],[-67.3313695949999,62.125677802000084],[-67.32921301999991,62.13271719000014],[-67.33775794199991,62.139960028000175],[-67.40062415299988,62.1498070330001],[-67.4899389309999,62.145209052000055],[-67.52228756399991,62.15058014500011],[-67.55060787699993,62.16718170800008],[-67.58128821499986,62.18109772300015],[-67.61290442599994,62.17601146000014],[-67.6442358059999,62.16425202000015],[-67.67406165299991,62.15753815300012],[-67.75531979099989,62.163397528000154],[-67.83490963399987,62.17804596600014],[-67.83079993399991,62.18585846600015],[-67.82469641799995,62.19183991100006],[-67.81684322799995,62.19586823100003],[-67.8075658839999,62.197821356000176],[-67.8075658839999,62.2047386740001],[-67.82005774599992,62.208929755000106],[-67.83100338399987,62.20905182500008],[-67.84845943899992,62.2047386740001],[-67.84972083199995,62.202785549000126],[-67.85826575399997,62.19358958500005],[-67.86278235599991,62.191066799000154],[-67.87262936099995,62.190863348],[-67.8883764309999,62.196437893],[-67.98094641799989,62.21185944200011],[-68.00617428299992,62.211574611000096],[-68.03302975199992,62.207586981000034],[-68.04588782499985,62.20815664300009],[-68.06073971299992,62.211574611000096],[-68.06371008999992,62.214992580000015],[-68.06806393099993,62.22162506700008],[-68.07416744699988,62.22833893400012],[-68.08250891799989,62.23200104400017],[-68.08832760299993,62.23021067899999],[-68.10228430899987,62.220607815],[-68.10920162699989,62.21841054900004],[-68.55365963399993,62.24974192900007],[-68.61107337099995,62.26557038000002],[-68.6286108059999,62.275091864],[-68.6566869779999,62.28485748900014],[-68.67833411399988,62.28937409100008],[-68.71650143099995,62.302720445000105],[-68.72614498599992,62.307766018000116],[-68.72614498599992,62.31460195500016],[-68.71080481699997,62.320054429],[-68.7050268219999,62.32143789300006],[-68.7050268219999,62.3282738300001],[-68.8152563139999,62.34186432500014],[-68.8242895169999,62.349554755000085],[-68.82872473899988,62.36579010600012],[-68.83844967399992,62.38027578300015],[-68.86335201699987,62.38287995000014],[-68.88219153599991,62.36619700700011],[-68.89061438699986,62.362372137000094],[-68.90233313699994,62.36322663000003],[-68.9171850249999,62.36749909100003],[-68.93146725199989,62.3735212260001],[-68.94151770699996,62.37978750200007],[-68.9617406889999,62.387193101000044],[-69.00340735599985,62.37653229400003],[-69.02717037699995,62.37978750200007],[-69.19749915299994,62.444525458],[-69.28827877499991,62.49363841400013],[-69.30833899599989,62.541083075000145],[-69.3151749339999,62.541083075000145],[-69.2758276029999,62.617377020000085],[-69.28107662699989,62.62368398600013],[-69.29194088399987,62.627752997000094],[-69.30463619699995,62.629217841000134],[-69.31501217399995,62.599554755000106],[-69.31891842399995,62.591986395000056],[-69.32738196499987,62.58470286700005],[-69.34284420499989,62.574286200000145],[-69.3493139309999,62.56842682500012],[-69.35590572799987,62.55760325700012],[-69.35887610599987,62.548570054000116],[-69.36408443899998,62.54083893400009],[-69.37726803299992,62.533677476000044],[-69.38585364499994,62.540025132],[-69.38739986899989,62.54629140800013],[-69.38703365799998,62.552964585],[-69.39024817599991,62.560980536000145],[-69.39622962099995,62.565822658000016],[-69.40294348899988,62.56956614800005],[-69.4085180329999,62.57518138200005],[-69.41075598899988,62.58515045800014],[-69.40912838399996,62.5956891950001],[-69.40656490799995,62.601060289000074],[-69.4070938789999,62.60529205900017],[-69.41449947799993,62.61249420800012],[-69.4240616529999,62.618231512000094],[-69.45917721299989,62.629217841000134],[-69.45417232999992,62.61725495000011],[-69.4469701809999,62.61066315300006],[-69.4391576809999,62.605047919000135],[-69.43187415299991,62.59577057500009],[-69.43126380099994,62.584662177000055],[-69.43586178299998,62.57538483300004],[-69.43651282499991,62.56753164300012],[-69.42442786399991,62.560980536000145],[-69.44505774599993,62.55353424700014],[-69.46051998599995,62.56427643400017],[-69.47260494699987,62.58014557500012],[-69.48338782499988,62.588324286000116],[-69.50157630099997,62.5931664080001],[-69.52037512899992,62.604925848000065],[-69.55162512899997,62.63300202000006],[-69.58678137899994,62.657700914000074],[-69.58946692599991,62.6669782570001],[-69.56904049399995,62.678290106000084],[-69.54515540299988,62.682847398000135],[-69.47345943899995,62.678290106000084],[-69.47345943899995,62.68451569200015],[-69.47846432199992,62.68768952000012],[-69.4871313139999,62.69818756700009],[-69.45396887899996,62.697088934000035],[-69.44001217399992,62.70091380400005],[-69.43187415299991,62.71246979400009],[-69.49335689999987,62.71246979400009],[-69.53246008999992,62.70673248900003],[-69.55089270699993,62.70868561400005],[-69.56904049399995,62.71930573100009],[-69.53742428299994,62.73908112200003],[-69.49872799399992,62.746527411],[-69.41759192599991,62.74591705900003],[-69.40400143099995,62.747626044000135],[-69.39081783799989,62.752101955000015],[-69.38414466099994,62.75885651200006],[-69.39024817599991,62.76703522300014],[-69.40693111899986,62.77041250200007],[-69.46263587099989,62.75958893400017],[-69.47919674399995,62.763169664000046],[-69.49396725199992,62.77008698100014],[-69.50934811099995,62.77448151200004],[-69.54780025899987,62.765082098],[-69.56708736899989,62.76740143400015],[-69.6124975249999,62.784735419000135],[-69.61969967399992,62.789374091000084],[-69.62694251199986,62.7910016950001],[-69.63731848899994,62.78693268400014],[-69.63874264199993,62.78119538000008],[-69.63654537699992,62.763373114],[-69.6404516269999,62.75958893400017],[-69.65416419199994,62.75702545800008],[-69.68195553299992,62.74673086100015],[-69.69880123599992,62.74591705900003],[-69.67890377499992,62.78009674700003],[-69.72162838399993,62.78375885600017],[-69.76207434799997,62.793850002000156],[-69.80003821499989,62.80931224200007],[-69.83531653599994,62.82916901200017],[-69.84418697799987,62.82428620000012],[-69.84959876199991,62.82225169499999],[-69.84321041599988,62.813869533000016],[-69.81920325399994,62.79067617400009],[-69.80622311099995,62.782375393],[-69.79035396999984,62.778062242000104],[-69.77607174399995,62.77236562700005],[-69.7676488919999,62.75958893400017],[-69.77204342399996,62.758612372000115],[-69.78132076699991,62.75336334800013],[-69.77656002499992,62.74941640800012],[-69.76732337099985,62.73871491100004],[-69.76085364499997,62.73289622600005],[-69.78107662699996,62.731105861000074],[-69.79246985599994,62.73574453300011],[-69.81232662699995,62.756537177],[-69.82860266799989,62.76487864800005],[-69.84410559799989,62.765041408],[-69.8769018219999,62.75958893400017],[-69.89635169199991,62.7638207050001],[-69.91169186099995,62.77407461100004],[-69.93895423099994,62.801214911000145],[-69.97594153599988,62.774644272999986],[-69.99555416599995,62.765936591000106],[-70.06977291599986,62.747626044000135],[-70.08299719999991,62.74591705900003],[-70.10175533799986,62.74811432500003],[-70.14329993399986,62.75747304900006],[-70.16181393099987,62.75958893400017],[-70.2403051419999,62.75409577000015],[-70.26732337099995,62.75958893400017],[-70.33808346299989,62.79075755400008],[-70.36725826699993,62.794378973000114],[-70.38337154899989,62.80076732000005],[-70.4265844389999,62.82892487200003],[-70.45868893099987,62.83795807500006],[-70.47118079299989,62.84430573100017],[-70.48228919199991,62.85224030200014],[-70.48700924399992,62.85952383000016],[-70.49323482999998,62.866603908],[-70.50751705599987,62.86908600500014],[-70.5354711579999,62.869452216000134],[-70.68565833199995,62.88996002800011],[-70.80158443899992,62.89345937700009],[-70.82966061099992,62.904242255],[-70.82966061099992,62.89679596600003],[-70.88447018099993,62.911769924000154],[-70.89854895699997,62.91787344000015],[-70.86790930899986,62.92796458500011],[-70.80162512899992,62.92747630400011],[-70.76825924399992,62.93154531500009],[-70.80426998599998,62.93366120000008],[-70.87437903599997,62.94798411699999],[-70.91222083199992,62.951402085],[-70.95575924399992,62.94464752800015],[-71.02550208199989,62.95331452000014],[-71.0419408839999,62.958807684000185],[-71.0419408839999,62.96564362200009],[-71.01801510299993,62.96938711100004],[-70.95612545499993,62.96503327000011],[-70.9395238919999,62.97308991100005],[-70.9429418609999,62.98847077],[-70.95636959499988,62.99843984600001],[-70.95966549399992,63.00747304900001],[-70.93272864499997,63.02024974200005],[-70.94623775899993,63.032782294000135],[-70.96703040299991,63.034613348000114],[-70.98932857999995,63.02924225500008],[-71.00719153599994,63.02024974200005],[-71.01008053299995,63.013128973],[-71.00841223899992,63.00433991100014],[-71.00983639199993,62.996771552],[-71.02179928299995,62.99359772300012],[-71.03205318899998,62.99241771],[-71.05134029899992,62.987290757],[-71.11253821499994,62.983099677000055],[-71.14207923099991,62.984808661000066],[-71.15802975199992,62.99359772300012],[-71.15546627499992,63.00511302300005],[-71.14439856699995,63.018255927000105],[-71.13084876199991,63.02895742400012],[-71.12079830599991,63.03335195500004],[-71.03205318899998,63.02708567900007],[-71.02306067599994,63.03066640800012],[-71.0082494779999,63.04824453300007],[-71.00096594999988,63.05508047100009],[-70.99132239499991,63.05866120000014],[-70.96991939999995,63.06305573100015],[-70.96003170499995,63.068060614],[-70.95539303299992,63.07347239800013],[-70.95360266799992,63.08466217700005],[-70.94977779899992,63.09227122599999],[-70.94054114499994,63.09882233300008],[-70.91633053299995,63.102484442000126],[-70.8954565089999,63.109767971000124],[-70.86384029899992,63.11652252800017],[-70.83458411399997,63.12872955900014],[-70.82282467399989,63.130113023000135],[-70.82282467399989,63.13467031500007],[-70.82420813699989,63.1376000020001],[-70.82966061099992,63.1432152360001],[-70.86449133999986,63.14020416900009],[-70.89171301999994,63.130113023000135],[-70.91108150899986,63.12002187700006],[-70.92206783799992,63.11611562700007],[-70.93272864499997,63.11652252800017],[-70.93480383999987,63.12067291900012],[-70.93793697799994,63.129136460000055],[-70.94334876199991,63.13800690300009],[-70.95258541599986,63.1432152360001],[-70.93769283799992,63.14891185099999],[-70.90880286399991,63.15591054900015],[-70.89854895699997,63.16494375200007],[-70.92646236899992,63.172552802000105],[-70.96715247299989,63.162990627000035],[-70.99823971299989,63.14305247600013],[-70.99726314999992,63.11994049700009],[-70.99254309799991,63.106024481000084],[-71.00450598899994,63.09511953300013],[-71.02074133999987,63.08633047100007],[-71.02892005099991,63.078599351000044],[-71.11082923099994,63.07550690300014],[-71.12958736899989,63.08014557500008],[-71.13898678299991,63.08881256700009],[-71.14452063699993,63.09760163000006],[-71.15180416599986,63.102240302000084],[-71.15965735599993,63.09780508],[-71.19648189999992,63.06464264500009],[-71.19953365799992,63.055650132000046],[-71.20702063699989,63.01715729400017],[-71.21617591099997,63.0087751320001],[-71.23713131399992,63.00722890800007],[-71.25983639199987,63.009833075000145],[-71.27464758999994,63.01410553600008],[-71.27464758999994,63.02024974200005],[-71.25251217399995,63.027289130000106],[-71.2609350249999,63.035834052000055],[-71.2847387359999,63.04352448100014],[-71.3089086579999,63.04755280200014],[-71.37262936099995,63.04852936400003],[-71.40204830599995,63.05556875200007],[-71.42613684799997,63.07550690300014],[-71.40819251199991,63.08486562700001],[-71.39411373599998,63.10106028900004],[-71.39179439999992,63.116441147999986],[-71.40876217399989,63.123358466000084],[-71.41669674399986,63.121242580000064],[-71.44225012899994,63.110500393000066],[-71.44977779899992,63.10594310100011],[-71.46051998599992,63.10480377800009],[-71.49779212099989,63.123358466000084],[-71.55793209499987,63.12848541900011],[-71.61790930899987,63.1432152360001],[-71.68846594999988,63.173773505000106],[-71.71349036399997,63.17792389500006],[-71.70575924399986,63.18919505400005],[-71.69176184799991,63.192938544000086],[-71.65888424399992,63.19159577],[-71.65888424399992,63.198431708000115],[-71.7073461579999,63.21954987200002],[-71.75129146999993,63.2279320330001],[-71.76195227799985,63.232611395],[-71.75019283799988,63.24335358300011],[-71.73591061099998,63.2473005230001],[-71.66783606699993,63.248683986000096],[-71.64911861899986,63.25364817900013],[-71.64867102799988,63.26390208500008],[-71.67088782499992,63.27212148600016],[-71.7687475249999,63.260484117000075],[-71.7687475249999,63.26727936400009],[-71.76020260299987,63.26764557500008],[-71.74083411399994,63.27480703300013],[-71.76646887899992,63.2841250670001],[-71.7678116529999,63.29409414300009],[-71.7626440089999,63.305975653000026],[-71.7687475249999,63.32135651200015],[-71.79674231699991,63.33763255400011],[-71.82274329299989,63.34926992400001],[-71.7726537749999,63.347113348],[-71.74738521999993,63.34894440300009],[-71.72716223899991,63.35667552300003],[-71.73289954299989,63.35761139500009],[-71.74828040299991,63.362941799000154],[-71.74718176999997,63.38117096600002],[-71.76134192599991,63.40265534100014],[-71.78087317599997,63.41449616100011],[-71.79609127499995,63.40387604400017],[-71.8010961579999,63.3912621110001],[-71.82685299399995,63.38768138200012],[-71.93700110599985,63.39447663000006],[-71.96259518099993,63.403753973],[-71.97797604099986,63.42902252800014],[-71.98753821499986,63.431789455],[-71.99714107999992,63.42934804900007],[-72.00153561099992,63.42121002800015],[-72.00145423099994,63.40326569200012],[-72.00536048099994,63.398993231000084],[-72.01520748599995,63.39765045800011],[-72.08039303299995,63.40387604400017],[-72.08417721299988,63.40619538000014],[-72.08116614499988,63.41132233300005],[-72.07335364499988,63.41620514500012],[-72.06297766799989,63.41815827000006],[-72.06297766799989,63.424383856000034],[-72.09227454299992,63.427150783000094],[-72.12519283799989,63.43748607000002],[-72.14232337099992,63.448309637000094],[-72.12576249899986,63.45205312700013],[-72.10065670499996,63.45083242400001],[-72.08429928299995,63.447251695000126],[-72.07721920499989,63.44171784100002],[-72.07135982999995,63.43154531500006],[-72.05809485599991,63.436224677],[-72.03632564999987,63.45233795800005],[-72.02009029899992,63.45331452000011],[-71.96711178299998,63.44489166900008],[-71.8711645169999,63.44489166900008],[-71.68622799399989,63.424383856000034],[-71.6144506499999,63.426906643000144],[-71.57990475199989,63.435736395],[-71.56330318899992,63.45233795800005],[-71.57408606699993,63.463934637000186],[-71.55394446499989,63.471909898000135],[-71.41779537699992,63.487453518000116],[-71.3988744779999,63.50006745000012],[-71.40269934799991,63.50307851800003],[-71.40758216099995,63.509588934000114],[-71.41254635299993,63.51373932500014],[-71.38390051999994,63.528509833000115],[-71.31989498599995,63.540472723000065],[-71.27717037699995,63.566148179000116],[-71.27464758999994,63.571478583],[-71.27769934799991,63.57733795800011],[-71.28913326699988,63.58445872599999],[-71.28901119699991,63.58942291900003],[-71.27782141799987,63.59837474200007],[-71.26215572799993,63.602118231000084],[-71.22691809799997,63.602484442000026],[-71.25243079299987,63.616359768],[-71.28913326699988,63.619086005000085],[-71.3218888009999,63.609320380000106],[-71.33613033799992,63.58576080900018],[-71.33421790299985,63.57758209800006],[-71.3322647779999,63.57200755400008],[-71.33592688699986,63.56879303600004],[-71.38642330599987,63.56732819200015],[-71.40339107999995,63.56940338700015],[-71.4186905589999,63.57518138200014],[-71.37218176999997,63.599839585000105],[-71.36408443899992,63.60993073100009],[-71.36713619699992,63.62592194200008],[-71.38129635299995,63.63373444200008],[-71.40058346299989,63.63641998900006],[-71.4186905589999,63.63666413],[-71.40990149599992,63.62164948100017],[-71.40501868399986,63.61676666900012],[-71.41755123599995,63.61229075700014],[-71.43097896999987,63.610296942],[-71.45966549399992,63.60993073100009],[-71.45360266799992,63.599514065],[-71.44965572799993,63.59756094000014],[-71.43976803299992,63.595648505],[-71.43976803299992,63.58942291900003],[-71.46556555899984,63.58368561400005],[-71.51447506399992,63.57973867400006],[-71.56187903599995,63.581488348000065],[-71.58320064999992,63.592515367000104],[-71.57286536399991,63.62083567900008],[-71.54767818899995,63.6275902360001],[-71.51634680899991,63.62628815300009],[-71.48761959499984,63.630438544000135],[-71.50621497299994,63.64321523600007],[-71.5695287749999,63.64386627800003],[-71.58320064999992,63.65436432500012],[-71.58104407499994,63.66120026200012],[-71.57172604099988,63.671454169000135],[-71.5695287749999,63.68134186400006],[-71.56562252499988,63.69082265800007],[-71.55638587099992,63.69814687700007],[-71.54511471299995,63.703070380000135],[-71.53538977799988,63.70551178600006],[-71.53538977799988,63.712347723000086],[-71.54979407499985,63.712347723000086],[-71.57184811099995,63.70205312700006],[-71.58356686099995,63.69928620000012],[-71.59479732999995,63.702093817000055],[-71.5954076809999,63.70844147300009],[-71.58995520699995,63.71527741100003],[-71.58320064999992,63.71979401200014],[-71.60676021999987,63.72357819200009],[-71.62755286399997,63.72431061400011],[-71.64606686099998,63.7201195330001],[-71.6623022129999,63.708929755000085],[-71.66124426999997,63.698472398000014],[-71.62885494699987,63.674709377000106],[-71.61790930899987,63.66453685100005],[-71.61591549399995,63.650824286000116],[-71.62604732999992,63.64988841400004],[-71.65550696499989,63.65770091400013],[-71.65807044199991,63.66054922100007],[-71.67939205599987,63.67763906500013],[-71.72040768099987,63.691839911000116],[-71.72040768099987,63.69928620000012],[-71.70140540299987,63.700873114000146],[-71.69391842399992,63.71328359600007],[-71.68940182199995,63.72894928600014],[-71.67939205599987,63.74030182500012],[-71.69806881399995,63.75340403899999],[-71.72093665299984,63.73607005399999],[-71.75450598899988,63.691839911000116],[-71.7614233059999,63.69623444200012],[-71.76667232999995,63.700588283000016],[-71.77110755099994,63.705633856000034],[-71.77558346299992,63.712347723000086],[-71.7659805979999,63.72992584800012],[-71.77586829299995,63.745794989000146],[-71.82758541599986,63.77960846600003],[-71.83686275899993,63.783636786],[-71.8506973949999,63.787502346000096],[-71.89427649599995,63.78961823100009],[-71.90534420499998,63.79490794499999],[-71.90001380099991,63.79808177300004],[-71.89049231699991,63.80613841399998],[-71.88544674399989,63.809149481000176],[-71.92284094999994,63.81964752800014],[-71.95775305899994,63.80683014500012],[-71.98725338399993,63.78143952],[-72.0083715489999,63.753973700000145],[-72.00348873599995,63.75169505399999],[-71.99531002499995,63.74652741100009],[-71.97516842399992,63.75372955900012],[-71.9475805329999,63.7723656270001],[-71.92646236899989,63.77440013200011],[-71.92878170499995,63.76752350500011],[-71.93260657499988,63.76072825699999],[-71.91144771999987,63.758693752000156],[-71.86750240799992,63.766506252000156],[-71.84447180899986,63.76072825699999],[-71.85444088399994,63.75218333500008],[-71.86884518099993,63.72549062700013],[-71.8745824859999,63.71979401200014],[-71.88988196499986,63.71552155200005],[-71.89545650899996,63.70547109600007],[-71.8914281889999,63.69391510600014],[-71.87800045499989,63.6850446640001],[-71.90001380099991,63.67450592700013],[-71.91474361899988,63.66254303600011],[-71.92979895699992,63.65501536700005],[-71.95311438699991,63.65770091400013],[-71.96711178299998,63.65412018400015],[-71.97398841099988,63.65542226800006],[-71.9735815089999,63.66453685100005],[-71.96930904899997,63.67023346600002],[-71.96332760299995,63.67316315300015],[-71.95746822799991,63.67511627800009],[-71.9433080719999,63.682440497000115],[-71.93146725199992,63.68691640800008],[-71.92621822799995,63.694525458000115],[-71.9363500639999,63.708929755000085],[-71.95299231699994,63.72304922100001],[-71.96320553299998,63.725734768000095],[-72.02301998599995,63.67609284100017],[-72.04161536399994,63.67072174700003],[-72.05553137899992,63.6850446640001],[-72.05028235599994,63.69647858300006],[-72.05134029899989,63.71035390800013],[-72.05626380099994,63.72357819200009],[-72.06297766799989,63.732855536000145],[-72.07616126199993,63.74066803600011],[-72.08348548099985,63.73505280200013],[-72.09345455599993,63.72516510600012],[-72.11449133999989,63.71979401200014],[-72.13093014199987,63.72394440300008],[-72.14818274599989,63.73383209800003],[-72.17625891799987,63.75731028899998],[-72.19123287699992,63.774481512000094],[-72.20063229099993,63.780422268000116],[-72.21007239499994,63.777818101000136],[-72.21467037699989,63.76911041900015],[-72.21454830599993,63.7585309920001],[-72.21125240799998,63.74811432500012],[-72.2063695949999,63.74030182500012],[-72.21698971299993,63.722235419000086],[-72.2215063139999,63.71165599200004],[-72.22028561099998,63.6996931010001],[-72.2138158839999,63.67763906500013],[-72.23151607999989,63.67548248900012],[-72.31757564999987,63.67885976800013],[-72.32262122299991,63.685980536],[-72.32445227799988,63.74420807500011],[-72.33604895699989,63.75454336100002],[-72.36461341099988,63.753973700000145],[-72.36461341099988,63.76072825699999],[-72.34361731699993,63.77350495000003],[-72.33055579299987,63.77903880400005],[-72.31985429599985,63.78070709800006],[-72.30219479099992,63.77814362200015],[-72.26252193899992,63.764105536000024],[-72.24852454299986,63.7675641950001],[-72.26060950399994,63.77912018400003],[-72.27167721299988,63.79507070500013],[-72.27363033799995,63.80927155200005],[-72.2582494779999,63.81537506700015],[-72.2499893869999,63.82318756700012],[-72.2206518219999,63.86937083500005],[-72.20457923099991,63.87799713700015],[-72.18708248599998,63.882228908000066],[-72.14863033799989,63.88369375200012],[-72.13133704299989,63.886419989],[-72.09032141799986,63.91095612200003],[-72.16181393099993,63.89801666900003],[-72.18708248599998,63.89736562700006],[-72.20917721299986,63.90082428600006],[-72.22724361899989,63.90859609600007],[-72.2336319649999,63.91937897300006],[-72.2206518219999,63.932074286000145],[-72.24176998599992,63.959418036000024],[-72.26451575399994,63.93943919500013],[-72.26903235599991,63.932074286000145],[-72.27074133999992,63.930324611000124],[-72.2733861969999,63.92820872600013],[-72.27538001199994,63.92475006700012],[-72.27521725199998,63.918402411],[-72.2711889309999,63.91128164300015],[-72.25804602799985,63.90119049700008],[-72.2548315089999,63.89736562700006],[-72.25792395699997,63.88401927300004],[-72.27192135299993,63.88410065300003],[-72.2910863919999,63.89252350499999],[-72.31000729099992,63.90420156500009],[-72.32762610599985,63.87372467700013],[-72.35191809799991,63.857977606000176],[-72.37913977799994,63.846340236000074],[-72.4055883449999,63.82843659100003],[-72.37926184799991,63.818426825000024],[-72.3688451809999,63.81102122600005],[-72.36461341099988,63.79832591399998],[-72.3684789699999,63.785223700000024],[-72.37824459499984,63.78253815300006],[-72.4055883449999,63.787502346000096],[-72.47553463399993,63.78620026200009],[-72.5131729809999,63.78974030200008],[-72.53595943899992,63.801703192],[-72.5191544259999,63.80727773600002],[-72.47321529899995,63.80988190300012],[-72.46080481699994,63.82221100500006],[-72.4893285799999,63.826849677],[-72.57380123599998,63.85297272300014],[-72.59809322799995,63.86713288000006],[-72.6207983059999,63.862982489000125],[-72.64301510299987,63.85468170800014],[-72.66624915299988,63.85639069200015],[-72.64106197799993,63.88051992400006],[-72.6403295559999,63.89520905200008],[-72.65257727799984,63.90949127800015],[-72.66624915299988,63.932074286000145],[-72.62901770699989,63.940741278000026],[-72.61200924399992,63.94953034100008],[-72.60484778599991,63.962469794000114],[-72.6066381499999,63.97313060100013],[-72.61017818899994,63.98094310100013],[-72.61278235599985,63.989162502000134],[-72.61164303299992,64.000962632],[-72.59117591099997,64.02765534100003],[-72.6121313139999,64.03217194200006],[-72.65339107999995,64.01410553600006],[-72.66974850199998,64.01740143400009],[-72.67784583199989,64.03241608300011],[-72.67308508999992,64.04498932500012],[-72.66388912699992,64.05914948100003],[-72.65880286399991,64.0791690120001],[-72.66319739499988,64.083929755],[-72.67280025899987,64.08844635600013],[-72.68236243399986,64.08820221600011],[-72.68675696499994,64.0791690120001],[-72.68907630099991,64.06085846600003],[-72.69359290299985,64.04193756700003],[-72.69758053299992,64.03302643400018],[-72.70282955599991,64.02460358300011],[-72.70588131399991,64.01703522300006],[-72.70356197799995,64.01064687700016],[-72.69127356699988,64.00421784100014],[-72.67853756399992,64.00202057500015],[-72.66710364499988,63.998114325000145],[-72.65880286399991,63.98672109600009],[-72.67060299399989,63.979315497000115],[-72.68504798099994,63.972235419000135],[-72.70026607999992,63.967189846],[-72.71406002499992,63.96556224199999],[-72.73424231699994,63.96987539300009],[-72.74006100199989,63.977972723000036],[-72.74144446499989,63.98871491100011],[-72.74823971299992,64.000962632],[-72.77892005099991,64.01593659100003],[-72.85492916599992,64.022162177],[-72.88597571499994,64.03510163],[-72.8731176419999,64.04035065300017],[-72.86664791599992,64.04205963700018],[-72.85810299399989,64.04193756700003],[-72.85810299399989,64.04816315300017],[-72.8753149079999,64.05121491100006],[-72.91901607999988,64.05072663000009],[-72.93382727799985,64.05499909100008],[-72.94188391799989,64.06793854400009],[-72.93492591099991,64.07770416900003],[-72.92035885299987,64.08466217700011],[-72.90587317599991,64.08974844000015],[-72.89378821499992,64.091253973],[-72.88300533799992,64.09100983300006],[-72.8753149079999,64.09422435100011],[-72.87238521999987,64.10651276200015],[-72.87572180899991,64.1158714860001],[-72.88361568899998,64.1180687520001],[-72.89252682199992,64.1188418640001],[-72.89903723899991,64.12392812700013],[-72.90351314999987,64.14126211100005],[-72.90294348899991,64.15412018400015],[-72.9055883449999,64.16559479400007],[-72.91950436099998,64.17853424700009],[-72.93976803299996,64.18691640800016],[-72.96544348899994,64.19139232000013],[-73.01569576699993,64.1915550800001],[-73.05878658799995,64.18178945500013],[-73.07823645699995,64.183294989],[-73.08466549399995,64.19896067900008],[-73.07648678299995,64.20856354400014],[-73.06248938699989,64.216986395],[-73.05431067599996,64.22842031500015],[-73.06354732999995,64.24677155200011],[-73.11156165299994,64.25584544500009],[-73.12385006399998,64.26439036700013],[-73.13178463399996,64.26788971600003],[-73.12714596299992,64.27619049700009],[-73.12214107999998,64.28034088700004],[-73.11510169199991,64.28172435100011],[-73.10448157499988,64.28148021000008],[-73.13007564999995,64.29169342700011],[-73.21625729099989,64.29905833500011],[-73.22569739499991,64.32599518400018],[-73.23334713399993,64.33405182500012],[-73.24335689999992,64.33612702000012],[-73.25531979099986,64.3293317730001],[-73.24909420499989,64.322455145],[-73.25963294199997,64.31415436400012],[-73.27448482999992,64.31305573100015],[-73.31053626199989,64.31500885600012],[-73.31053626199989,64.30882396000005],[-73.2902318999999,64.30426666900011],[-73.27489173099994,64.29132721600008],[-73.27045650899996,64.27509186400006],[-73.28266354099992,64.26044342700014],[-73.30833899599989,64.25527578300012],[-73.34068762899992,64.25873444200015],[-73.36994381399992,64.26829661700013],[-73.38630123599995,64.28148021000008],[-73.38739986899989,64.28994375200001],[-73.38548743399994,64.3094750020001],[-73.39509029899992,64.329738674],[-73.39207923099991,64.33600495000015],[-73.37885494699987,64.34296295800014],[-73.37043209499993,64.34593333500005],[-73.35895748599998,64.3475609400001],[-73.34898841099988,64.35122304900013],[-73.34467525899987,64.36033763200011],[-73.3433324859999,64.36603424700012],[-73.33954830599986,64.37396881700006],[-73.33397376199986,64.38092682500015],[-73.32734127499988,64.38397858300006],[-73.32176673099988,64.38129303600009],[-73.30467688699994,64.36859772300004],[-73.29625403599988,64.36408112200014],[-73.28290768099987,64.36245351800011],[-73.27183997299994,64.36489492400007],[-73.26545162699992,64.36839427300008],[-73.2655736969999,64.37030670800011],[-73.27802486899989,64.37567780200008],[-73.31855221299992,64.39960358300014],[-73.34125729099986,64.40509674700017],[-73.35997473899994,64.39960358300014],[-73.37494869699987,64.37567780200008],[-73.39313717399995,64.37030670800011],[-73.41669674399992,64.37409088700004],[-73.48188229099992,64.40509674700017],[-73.4496557279999,64.44220612200017],[-73.4292699859999,64.45416901200012],[-73.40953528599995,64.44912344000008],[-73.3839818999999,64.43842194200006],[-73.35431881399994,64.44245026200011],[-73.32567298099988,64.45571523600016],[-73.30308997299991,64.47272370000012],[-73.32542883999994,64.47919342700011],[-73.34557044199997,64.47378164300007],[-73.36603756399992,64.46454498900003],[-73.38939368399994,64.45966217700014],[-73.41840572799993,64.46503327],[-73.4171850249999,64.47736237200014],[-73.39769446499992,64.49111562700014],[-73.29169674399995,64.52456289300011],[-73.27269446499994,64.52798086100013],[-73.26878821499994,64.53204987200009],[-73.25763912699992,64.55174388200014],[-73.25531979099986,64.55898672100015],[-73.24811764199993,64.56464264500015],[-73.20067298099991,64.56952545800011],[-73.18036861899988,64.57575104400017],[-73.17255611899992,64.58112213700004],[-73.16718502499995,64.59003327000006],[-73.16706295499998,64.59723541900011],[-73.16938229099995,64.60830312700013],[-73.17467200399992,64.61611562700013],[-73.18358313699986,64.61359284100001],[-73.2016088529999,64.60114166900009],[-73.22447669199991,64.59174225500009],[-73.24836178299995,64.589056708],[-73.26899166599989,64.596869208],[-73.27635657499988,64.60439687700011],[-73.27607174399985,64.6084658870001],[-73.27403723899994,64.61359284100001],[-73.27643795499998,64.62417226800007],[-73.2827042309999,64.6403262390001],[-73.28742428299992,64.64813873900012],[-73.29609127499992,64.6533877620001],[-73.29893958199995,64.662583726],[-73.30308997299991,64.66571686400006],[-73.3087052069999,64.66559479400009],[-73.31244869699992,64.66290924700012],[-73.31586666599995,64.65981679900004],[-73.32050533799989,64.65827057500017],[-73.3302709629999,64.65643952],[-73.33885657499992,64.65167877800009],[-73.34605872299993,64.64500560100005],[-73.3515111969999,64.637844143],[-73.32921301999994,64.618841864],[-73.30943762899994,64.59365469000012],[-73.30138098899991,64.56557851800012],[-73.31395423099988,64.53815338700018],[-73.33031165299991,64.53091054900015],[-73.42487545499992,64.51752350500006],[-73.4452611969999,64.51105377800015],[-73.4642227859999,64.50800202000015],[-73.48188229099992,64.51496002800006],[-73.46886145699993,64.52985260600009],[-73.46845455599993,64.54612864800013],[-73.47651119699987,64.56045156500004],[-73.48871822799995,64.56952545800011],[-73.48871822799995,64.57575104400017],[-73.47492428299992,64.57534414300007],[-73.46100826699987,64.57196686400015],[-73.44806881399994,64.56631094000006],[-73.42231197799993,64.55101146],[-73.41218014199985,64.55304596600003],[-73.4042455719999,64.55878327],[-73.39618893099995,64.56207916900006],[-73.39533443899995,64.56513092700014],[-73.44090735599991,64.58258698100009],[-73.45234127499987,64.59149811400012],[-73.45323645699995,64.59821198100018],[-73.44452877499987,64.60224030200014],[-73.42723548099988,64.60301341400007],[-73.45026607999995,64.61640045800006],[-73.47362219999994,64.61469147300006],[-73.51537024599989,64.596869208],[-73.53722083199992,64.59247467700003],[-73.56432044199994,64.59149811400012],[-73.5825902989999,64.59650299700016],[-73.57807369699987,64.61050039300011],[-73.58808346299995,64.62494538],[-73.60374915299991,64.64313385600018],[-73.62364661399991,64.65875885600015],[-73.64635169199997,64.66571686400006],[-73.66901607999992,64.66396719000006],[-73.67145748599995,64.6568871110001],[-73.66474361899992,64.64472077000003],[-73.66002356699991,64.62759023600007],[-73.66295325399992,64.61351146000014],[-73.67035885299988,64.60325755400011],[-73.67951412699988,64.59389883000007],[-73.68793697799993,64.58258698100009],[-73.66649329299992,64.58055247600008],[-73.64635169199997,64.57575104400017],[-73.66405188699989,64.5635440120001],[-73.74815833199992,64.55585358300009],[-73.74909420499988,64.55329010600018],[-73.74799557199995,64.5484072940001],[-73.74787350199998,64.543687242],[-73.75190182199991,64.54157135600018],[-73.75922604099995,64.54266998900012],[-73.77265377499992,64.54730866100006],[-73.77948971299985,64.5484072940001],[-73.7909643219999,64.55170319200015],[-73.81037350199992,64.56622955900016],[-73.83747311099992,64.57591380400014],[-73.87254798099991,64.60407135600012],[-73.89277096299993,64.61050039300011],[-73.92170162699995,64.60927969000004],[-73.93317623599998,64.60325755400011],[-73.9343969389999,64.59003327000006],[-73.92650305899994,64.58356354400017],[-73.88597571499992,64.57575104400017],[-73.89159094999991,64.55418528900007],[-73.87865149599992,64.54096100500011],[-73.86078854099995,64.530707098],[-73.85179602799991,64.51801178600013],[-73.84471594999985,64.50454336100016],[-73.82823645699997,64.49970123900009],[-73.80976314999995,64.49787018400009],[-73.7965795559999,64.493150132],[-73.80341549399992,64.50063711100016],[-73.79670162699998,64.49624258000007],[-73.79169674399992,64.49188873900009],[-73.78734290299994,64.48680247600005],[-73.78290768099987,64.480169989],[-73.79369055899988,64.47223541900003],[-73.80500240799994,64.4676781270001],[-73.81651770699989,64.468451239],[-73.84129798099985,64.48769765800016],[-73.85789954299992,64.49628327000006],[-73.87401282499988,64.499172268],[-73.88597571499992,64.493150132],[-73.88292395699992,64.48566315300003],[-73.87580318899994,64.47443268400012],[-73.87629146999987,64.46417877800009],[-73.89618893099995,64.45966217700014],[-73.91466223899995,64.46283600500003],[-73.94452877499987,64.47687409100014],[-73.96165930899987,64.480169989],[-73.95649166599989,64.45709870000003],[-73.96491451699984,64.44139232000008],[-73.96642005099989,64.42780182500012],[-73.94054114499988,64.41128164300012],[-73.95148678299995,64.40387604400014],[-73.96393795499995,64.39801666900011],[-73.98961341099994,64.39077383000007],[-73.98961341099994,64.38397858300006],[-73.98802649599989,64.37543366100012],[-73.98839270699992,64.357855536],[-73.99095618399991,64.33966705900012],[-73.9957983059999,64.3293317730001],[-74.01512610599991,64.3272158870001],[-74.03636633999992,64.33490631700003],[-74.05781002499995,64.33966705900012],[-74.07774817599991,64.3293317730001],[-74.07152258999989,64.33681875200007],[-74.08503170499995,64.3344587260001],[-74.10228430899986,64.33588288],[-74.11436926999994,64.341009833],[-74.1124975249999,64.34979889500006],[-74.12889563699989,64.35561758000001],[-74.14708411399988,64.35602448100003],[-74.16340084499988,64.35838450700008],[-74.17393958199997,64.37030670800011],[-74.13398189999992,64.3686384140001],[-74.11445064999992,64.37055084800006],[-74.09821529899988,64.37775299700009],[-74.10606848899988,64.38385651200018],[-74.1103002589999,64.3924828150001],[-74.1124975249999,64.40509674700017],[-74.07905025899993,64.42059967700008],[-74.10260982999998,64.43598053600012],[-74.14647376199991,64.45111725500011],[-74.17393958199997,64.4658877620001],[-74.09447180899986,64.45966217700014],[-74.07140051999991,64.44074127800012],[-74.05589758999989,64.43447500200007],[-74.04356848899994,64.44599030200003],[-74.05134029899993,64.46930573100012],[-74.12616939999992,64.54157135600018],[-74.08234615799995,64.53660716400013],[-73.9996231759999,64.51666901200007],[-73.95482337099989,64.51496002800006],[-73.95482337099989,64.52114492400001],[-73.97529049399995,64.53449127800003],[-73.99791419199991,64.54344310100005],[-74.08934485599985,64.5678571640001],[-74.1016332669999,64.56952545800011],[-74.15282141799986,64.56415436400006],[-74.16710364499993,64.56952545800011],[-74.16710364499993,64.57575104400017],[-74.13141842399992,64.59007396000005],[-74.00263424399992,64.58258698100009],[-74.0187475249999,64.60053131700015],[-74.0723363919999,64.62079498900015],[-74.0839330719999,64.64093659100008],[-74.08079993399991,64.64728424700003],[-74.06720943899995,64.66864655200008],[-74.06281490799998,64.69159577000006],[-74.05488033799992,64.71539948100015],[-74.04979407499991,64.72589752800003],[-74.0635473299999,64.73802317900011],[-74.08173580599988,64.748480536],[-74.10114498599992,64.75299713700015],[-74.11872311099995,64.74770742400007],[-74.12824459499984,64.731594143],[-74.1085912749999,64.70473867400013],[-74.11872311099995,64.68561432500013],[-74.12909908799995,64.6814639340001],[-74.15253658799992,64.68646881700015],[-74.16710364499993,64.68561432500013],[-74.18932044199991,64.66840241100012],[-74.2023412749999,64.66522858300006],[-74.21495520699997,64.67877838700004],[-74.22687740799991,64.6681175800001],[-74.23249264199993,64.65643952],[-74.23176021999988,64.64484284100008],[-74.21418209499987,64.61945221600014],[-74.21589107999995,64.6088727890001],[-74.24225826699985,64.58258698100009],[-74.27631588399987,64.6066755230001],[-74.29255123599992,64.62221914300012],[-74.29377193899992,64.6344261740001],[-74.27110755099989,64.64362213700015],[-74.26231848899991,64.65094635600016],[-74.26642818899995,64.662014065],[-74.27513587099995,64.6690127620001],[-74.2874242829999,64.67674388200003],[-74.30028235599994,64.68305084800015],[-74.31078040299991,64.68561432500013],[-74.3255102199999,64.6781273460001],[-74.32433020699993,64.64264557500009],[-74.33844967399989,64.6310082050001],[-74.35973059799997,64.633978583],[-74.39936275899989,64.66010163000006],[-74.42035885299993,64.66571686400006],[-74.40855872299997,64.64712148600016],[-74.38768469999991,64.626695054],[-74.36412512899994,64.60858795800009],[-74.34459387899997,64.596869208],[-74.36860104099992,64.57660553600009],[-74.39447994699992,64.57684967700011],[-74.4179174469999,64.59048086100016],[-74.43464107999992,64.61050039300011],[-74.42194576699987,64.61334870000017],[-74.41478430899994,64.62042877800003],[-74.41584225199989,64.62763092700008],[-74.42747962099989,64.6310082050001],[-74.44469153599991,64.62872955900012],[-74.47740637899993,64.61896393400018],[-74.49608313699991,64.616644598],[-74.52460689999992,64.62152741100009],[-74.54076087099989,64.62616608300003],[-74.55072994699987,64.6310082050001],[-74.55443274599992,64.63800690300015],[-74.55846106699988,64.65717194200012],[-74.56432044199991,64.66571686400006],[-74.58055579299986,64.67316315300003],[-74.6254369779999,64.68471914300015],[-74.64313717399989,64.69586823100018],[-74.6577856109999,64.70897044500005],[-74.70836341099988,64.7402204450001],[-74.69566809799991,64.7475446640001],[-74.68968665299991,64.75226471600003],[-74.68724524599989,64.75763580900018],[-74.68390865799995,64.76219310100014],[-74.67621822799993,64.76186758000001],[-74.6673070949999,64.76032135600015],[-74.66051184799997,64.76129791900003],[-74.65363521999986,64.77069733300006],[-74.64891516799995,64.78180573100009],[-74.6422826809999,64.79100169500008],[-74.60692298099988,64.803412177],[-74.57066809799994,64.84125397300012],[-74.55361894399991,64.84882233300009],[-74.51158606699994,64.837062893],[-74.4866430329999,64.83665599200002],[-74.48180091099991,64.850083726],[-74.50190182199987,64.86277903900005],[-74.5622452459999,64.86416250200013],[-74.57799231699997,64.87738678600006],[-74.56676184799994,64.88019440300012],[-74.55719967399997,64.88385651200015],[-74.54950924399995,64.88947174700017],[-74.54389400899996,64.89850495000009],[-74.56867428299991,64.89740631700012],[-74.64631100199995,64.90473053600014],[-74.66075598899991,64.89972565300009],[-74.65697180899988,64.88963450700014],[-74.64622962099986,64.87689850500009],[-74.64008541599989,64.86371491100012],[-74.66209876199989,64.86888255400014],[-74.72541256399995,64.86371491100012],[-74.74286861899989,64.857855536],[-74.74018307199992,64.84454987200016],[-74.72199459499984,64.82273997600011],[-74.70982825399994,64.80304596600017],[-74.70933997299997,64.791693427],[-74.71857662699992,64.77777741100012],[-74.73143469999985,64.77216217700011],[-74.74571692599994,64.775295315],[-74.79316158799986,64.80158112200012],[-74.80626380099994,64.80695221600017],[-74.8216039699999,64.80914948100015],[-74.82319088399993,64.805161851],[-74.82957923099993,64.79612864800008],[-74.83979244699987,64.78676992400013],[-74.85236568899995,64.78119538000011],[-74.86860104099992,64.78314850500009],[-74.90501868399988,64.79857005400011],[-74.92088782499991,64.80231354400014],[-74.97114010299987,64.80451080900004],[-74.98888098899997,64.80231354400014],[-74.96491451699991,64.77513255400014],[-74.92524166599989,64.76654694200012],[-74.88239498599992,64.76288483300004],[-74.84862219999994,64.75079987200014],[-74.84382076699984,64.744574286],[-74.84125729099992,64.73200104400011],[-74.83808346299986,64.72589752800003],[-74.83226477799991,64.72060781500015],[-74.8209936189999,64.71442291900009],[-74.81480872299994,64.70978424700013],[-74.79657955599987,64.7008731140001],[-74.74982662699989,64.69489166900011],[-74.72883053299994,64.68903229400014],[-74.59166419199991,64.6310082050001],[-74.46873938699994,64.56207916900006],[-74.50409908799986,64.54661692900011],[-74.52147376199994,64.54218170800014],[-74.54389400899996,64.54157135600018],[-74.59752356699994,64.5502383480001],[-74.6254369779999,64.5488141950001],[-74.64631100199995,64.53473541900017],[-74.58356686099995,64.53266022300015],[-74.5531713529999,64.52480703300016],[-74.53644771999987,64.50747304900007],[-74.55744381399992,64.50116608300014],[-74.57201087099995,64.50678131700012],[-74.5860082669999,64.51618073100013],[-74.60529537699995,64.52114492400001],[-74.61921139199993,64.5165062520001],[-74.61725826699987,64.50592682500003],[-74.6076554029999,64.49437083500011],[-74.5985001289999,64.48700592700011],[-74.57774817599991,64.47943756700006],[-74.53193111899992,64.47540924700009],[-74.50999915299991,64.46930573100012],[-74.50568600199989,64.46173737200013],[-74.52143307199995,64.45612213700015],[-74.5380753249999,64.44769928600003],[-74.53644771999987,64.43170807500012],[-74.55988521999987,64.42739492400001],[-74.59089107999998,64.42926666900017],[-74.61359615799992,64.42723216400005],[-74.61217200399994,64.41128164300012],[-74.66112219999991,64.40468984600007],[-74.68476314999995,64.39777252800015],[-74.68101966099991,64.38397858300006],[-74.68101966099991,64.37775299700009],[-74.71308346299989,64.38202545800003],[-74.75776119699987,64.40078359600007],[-74.79088294199988,64.40509674700017],[-74.78880774599989,64.40033600500007],[-74.78559322799993,64.38865794500008],[-74.78343665299991,64.38397858300006],[-74.81480872299994,64.38572825700005],[-74.85138912699988,64.39630768400009],[-74.88569088399996,64.41181061400012],[-74.9101049469999,64.42829010600009],[-74.9260961579999,64.434759833],[-74.94225012899994,64.43036530200011],[-74.95787512899994,64.42234935100007],[-74.97211666599993,64.41811758000016],[-74.98896236899995,64.42243073100015],[-75.01911373599997,64.44163646000011],[-75.11302649599995,64.4658877620001],[-75.14024817599994,64.48590729400017],[-75.1568090489999,64.49437083500011],[-75.17450924399992,64.493150132],[-75.18866939999992,64.48240794499999],[-75.18085689999995,64.47577545800011],[-75.16462154899989,64.4710147160001],[-75.15339107999989,64.4658877620001],[-75.14887447799995,64.45184967700006],[-75.16051184799994,64.44879791900014],[-75.17902584499987,64.44940827000003],[-75.19493567599989,64.44599030200003],[-75.18748938699991,64.43854401200004],[-75.19770260299994,64.43284739800005],[-75.20856686099992,64.43170807500012],[-75.21943111899992,64.43402741100009],[-75.22972571499994,64.43854401200004],[-75.23822994699987,64.4550641950001],[-75.24274654899992,64.45966217700014],[-75.25007076699993,64.46246979400009],[-75.26292883999986,64.46405670800011],[-75.31183834499984,64.47996653900005],[-75.32530676999991,64.48700592700011],[-75.35834713399987,64.51154205900004],[-75.36969967399995,64.51496002800006],[-75.39940344999988,64.51911041900009],[-75.45604407499985,64.53742096600013],[-75.48578854099989,64.54157135600018],[-75.54108639199987,64.54205963700015],[-75.5651342439999,64.55170319200015],[-75.57172604099989,64.57575104400017],[-75.61778723899994,64.56679922100014],[-75.66279049399992,64.56854889500015],[-75.70685787699992,64.57925039300007],[-75.79303951699987,64.61701080900004],[-75.82001705599993,64.62221914300012],[-75.84235592399995,64.61359284100001],[-75.84125729099992,64.60150788000011],[-75.82323157499987,64.58942291900011],[-75.80024166599989,64.57990143400012],[-75.78400631399995,64.57575104400017],[-75.78400631399995,64.56952545800011],[-75.81322180899991,64.570054429],[-75.82685299399995,64.56801992400007],[-75.83922278599988,64.56207916900006],[-75.82819576699984,64.55975983300009],[-75.82441158799992,64.55247630400005],[-75.82209225199993,64.5423851580001],[-75.8153783839999,64.53139883000013],[-75.80085201699987,64.52366771000011],[-75.77940833199992,64.5186221370001],[-75.73932857999989,64.51496002800006],[-75.69465084499984,64.48700592700011],[-75.6619360019999,64.47719961100007],[-75.64716549399992,64.47052643400004],[-75.63316809799997,64.45966217700014],[-75.63914954299989,64.45453522300012],[-75.64561926999988,64.452093817],[-75.65282141799992,64.45148346600001],[-75.66112219999991,64.45221588700015],[-75.65363521999984,64.45221588700015],[-75.67731686099995,64.45563385600018],[-75.72309322799995,64.47150299700009],[-75.74303137899993,64.4658877620001],[-75.72105872299991,64.45522695500006],[-75.69465084499984,64.44599030200003],[-75.71019446499994,64.44155508000013],[-75.72370357999992,64.44501373900012],[-75.74986731699997,64.45966217700014],[-75.86591549399988,64.48908112200003],[-75.89342200399994,64.49262116100012],[-75.92182369699987,64.48700592700011],[-75.91266842399989,64.4826520850001],[-75.89647376199994,64.48200104400017],[-75.88642330599995,64.480169989],[-75.8573705719999,64.46771881700009],[-75.84919186099997,64.4658877620001],[-75.84015865799995,64.46214427300008],[-75.81126868399984,64.44456614800013],[-75.79828854099986,64.43854401200004],[-75.80475826699987,64.43480052299999],[-75.81114661399987,64.43276601800007],[-75.81781979099992,64.43187083500008],[-75.82494055899988,64.43170807500012],[-75.81871497299991,64.43170807500012],[-75.80882727799991,64.42182038],[-75.71576900899996,64.38397858300006],[-75.73603268099987,64.37246328300002],[-75.77098548099988,64.3742536480001],[-75.83177649599992,64.38397858300006],[-75.83771725199992,64.37946198100009],[-75.84186764199987,64.37201569200012],[-75.84715735599985,64.36806875200013],[-75.86213131399998,64.37763092700011],[-75.90485592399989,64.38837311400015],[-75.91926021999986,64.38906484600007],[-75.93297278599988,64.38556549700009],[-75.94908606699994,64.37775299700009],[-75.95299231699993,64.40753815300008],[-75.97834225199989,64.40648021000005],[-76.02733313699986,64.38397858300006],[-76.04369055899986,64.37982819200012],[-76.05663001199989,64.37177155200008],[-76.0712377589999,64.36640045800011],[-76.09247799399986,64.37030670800011],[-76.09955807199992,64.37710195500013],[-76.10334225199995,64.38580963700004],[-76.11021887899997,64.39183177300012],[-76.12665768099987,64.39077383000007],[-76.1204320949999,64.39077383000007],[-76.17503821499986,64.37775299700009],[-76.16559811099995,64.3776716170001],[-76.15684973899988,64.376410223],[-76.14867102799988,64.37396881700006],[-76.14093990799994,64.37030670800011],[-76.16767330599987,64.35529205900009],[-76.23326575399989,64.36835358300009],[-76.28636633999992,64.35106028899999],[-76.35260982999998,64.36237213700015],[-76.37983150899987,64.35663483300009],[-76.35619055899994,64.346625067],[-76.32115637899994,64.32111237200012],[-76.29792232999992,64.31500885600012],[-76.23786373599991,64.32184479400003],[-76.20775305899988,64.31924062700013],[-76.18805904899995,64.30141836100016],[-76.31761633999989,64.28082916900001],[-76.3498022129999,64.29181549700009],[-76.37836666599992,64.30853913000011],[-76.42003333199997,64.320746161],[-76.46165930899994,64.32436758000016],[-76.48969479099995,64.31500885600012],[-76.47516842399992,64.31004466400007],[-76.44440670499992,64.31061432500003],[-76.42829342399995,64.30882396000005],[-76.4160863919999,64.30353424700017],[-76.39399166599989,64.29071686400015],[-76.37983150899987,64.28839752800017],[-76.40672766799993,64.27423737200014],[-76.45470130099994,64.26996491100013],[-76.49628658799992,64.27806224200008],[-76.50397701699984,64.30141836100016],[-76.55488033799986,64.30882396000005],[-76.56855221299989,64.30182526200015],[-76.5758764309999,64.29987213700012],[-76.58116614499988,64.30780670800009],[-76.58600826699985,64.31110260600012],[-76.59162350199995,64.31391022300005],[-76.5961807929999,64.31500885600012],[-76.60521399599992,64.31122467699998],[-76.6269018219999,64.28839752800017],[-76.64085852799988,64.28363678600009],[-76.68895423099994,64.28148021000008],[-76.68407141799986,64.29140859600007],[-76.68150794199994,64.29523346600008],[-76.71092688699986,64.30536530200006],[-76.72789466099991,64.29612864799999],[-76.73033606699994,64.27627187700007],[-76.71625729099992,64.25421784100008],[-76.71825110599985,64.24135976800007],[-76.7064102859999,64.23289622600011],[-76.68834387899997,64.22833893400018],[-76.67157955599995,64.22687409100011],[-76.6566869779999,64.2213402360001],[-76.65741939999992,64.20905182500003],[-76.66950436099992,64.19684479400014],[-76.68895423099994,64.1915550800001],[-76.70783443899995,64.19391510600003],[-76.74376380099994,64.203599351],[-76.76410885299993,64.20579661699999],[-76.84662838399993,64.20579661699999],[-76.82994544199991,64.21442291900009],[-76.8118383449999,64.21942780200014],[-76.82123775899993,64.22504303600014],[-76.82551021999984,64.22638580900004],[-76.83234615799995,64.22687409100011],[-76.82551021999984,64.23379140800002],[-76.86290442599997,64.2350528020001],[-76.89863033799992,64.24371979400011],[-76.96271725199998,64.27411530200008],[-76.98200436099991,64.25751373900012],[-77.01744544199991,64.25901927300006],[-77.08556067599993,64.28148021000008],[-77.11583411399992,64.29710521000005],[-77.13324947799991,64.30109284100006],[-77.14081783799985,64.29181549700009],[-77.15221106699991,64.28465403900005],[-77.22337805899986,64.27411530200008],[-77.35081946499986,64.24111562700001],[-77.38105221299985,64.24677155200011],[-77.38011633999989,64.25511302299999],[-77.36668860599988,64.277085679],[-77.37018795499998,64.28148021000008],[-77.37755286399988,64.28343333500011],[-77.39338131399991,64.29254791900011],[-77.40156002499992,64.29523346600008],[-77.41270911399994,64.29409414300015],[-77.42402096299992,64.29096100500009],[-77.43622799399989,64.28998444199999],[-77.44989986899992,64.29523346600008],[-77.43232174399989,64.30084870000009],[-77.39716549399992,64.3060570330001],[-77.38105221299985,64.31500885600012],[-77.40485592399995,64.327582098],[-77.41173255099997,64.3293317730001],[-77.42100989499991,64.32713450700011],[-77.42796790299991,64.32233307500003],[-77.43565833199992,64.31500885600012],[-77.5455216139999,64.31500885600012],[-77.5455216139999,64.322455145],[-77.51805579299986,64.33437734600012],[-77.49091549399995,64.34979889500006],[-77.51105709499987,64.35724518400004],[-77.55610104099986,64.35781484600001],[-77.64093990799992,64.38760000200001],[-77.65473385299991,64.39077383000007],[-77.66234290299988,64.3773460960001],[-77.65058346299989,64.35419342700006],[-77.64704342399992,64.33222077000012],[-77.67894446499992,64.322455145],[-77.6829320949999,64.32477448100015],[-77.68883216099994,64.33454010600009],[-77.69261633999986,64.33681875200007],[-77.72362219999988,64.34296295800014],[-77.73204505099994,64.34284088700018],[-77.73973548099985,64.34129466400013],[-77.74799557199995,64.34056224200009],[-77.75780188699989,64.34296295800014],[-77.76142330599993,64.34699127800012],[-77.77000891799986,64.36107005400005],[-77.77452551999991,64.36408112200014],[-77.8539932929999,64.37030670800011],[-77.87104244699985,64.37750885600015],[-77.90864010299987,64.40509674700017],[-77.89545650899991,64.40867747600014],[-77.87189693899995,64.404974677],[-77.86017818899997,64.40509674700017],[-77.85167395699995,64.40867747600014],[-77.83967037699992,64.41547272300006],[-77.83202063699991,64.42194245000017],[-77.83661861899992,64.4248721370001],[-77.8821508449999,64.42470937700011],[-77.92914791599992,64.41811758000016],[-77.9520157539999,64.41156647300006],[-77.96263587099989,64.41128164300012],[-77.97272701699983,64.41400788000003],[-77.99058997299991,64.42291901200002],[-78.00108801999997,64.4248721370001],[-78.01097571499989,64.42820872600011],[-78.01740475199989,64.43545156500015],[-78.01817786399991,64.44277578300013],[-78.01130123599992,64.44599030200003],[-78.00328528599995,64.44757721600006],[-77.97004146999987,64.45966217700014],[-77.97004146999987,64.4658877620001],[-78.04723059799989,64.49652741100003],[-78.0774633449999,64.517279364],[-78.06562252499992,64.53473541900017],[-78.06562252499992,64.54157135600018],[-78.08759518099995,64.54946523600016],[-78.14439856699991,64.55731842700014],[-78.16930091099994,64.56952545800011],[-78.1738988919999,64.57257721600011],[-78.18219967399993,64.57965729400017],[-78.18476314999987,64.58673737200003],[-78.17243404899992,64.59003327000006],[-78.12836666599992,64.59003327000006],[-78.12836666599992,64.596869208],[-78.14598548099994,64.60236237200012],[-78.16209876199991,64.60956452000015],[-78.16966712099986,64.62067291900017],[-78.16185462099986,64.637844143],[-78.16889400899993,64.64533112200017],[-78.17699133999986,64.65009186400006],[-78.18626868399991,64.6520856790001],[-78.19660396999993,64.65143463700015],[-78.18993079299987,64.67088450700005],[-78.18305416599986,64.68158600500009],[-78.15562903599991,64.69928620000009],[-78.18659420499995,64.70864492400004],[-78.29902096299992,64.70673248900006],[-78.27192135299988,64.7152367210001],[-78.18297278599988,64.72589752800003],[-78.18744869699995,64.728216864],[-78.18976803299992,64.72996653899999],[-78.18871008999986,64.731594143],[-78.18297278599988,64.733384507],[-78.18793697799993,64.75299713700015],[-78.17463131399992,64.76805247600008],[-78.15257727799991,64.77777741100012],[-78.13145911399991,64.78119538000011],[-78.12303626199986,64.78449127800015],[-78.11664791599992,64.79173411699999],[-78.1141251289999,64.799017645],[-78.11750240799992,64.80231354400014],[-78.12128658799986,64.80438873900006],[-78.11913001199986,64.80914948100015],[-78.11359615799992,64.81378815300009],[-78.10724850199992,64.8159040390001],[-78.07310950399992,64.8159040390001],[-78.07713782499988,64.82880280200011],[-78.07380123599995,64.83926015800009],[-78.06562252499992,64.850083726],[-78.07347571499992,64.85936107000005],[-78.08698482999989,64.86823151200018],[-78.10277258999994,64.87482330900015],[-78.11750240799992,64.87738678600006],[-78.12531490799992,64.88532135600003],[-78.13288326699987,64.90371328300007],[-78.14338131399995,64.94708893400004],[-78.14557857999992,64.95184967700013],[-78.14399166599989,64.95726146],[-78.13451087099989,64.96678294499999],[-78.12059485599991,64.97418854400017],[-78.08906002499992,64.98236725500007],[-78.0679418609999,64.99624258000007],[-78.04548092399989,65.00462474200013],[-78.02192135299995,65.01821523600007],[-77.99079342399995,65.02252838700018],[-77.97691809799997,65.02757396000011],[-77.97541256399991,65.03131745000015],[-77.97533118399994,65.03742096600003],[-77.97431393099987,65.04413483300009],[-77.97004146999987,65.049302476],[-77.96361243399986,65.05194733300009],[-77.89183508999984,65.06761302300005],[-77.87755286399997,65.06915924700009],[-77.81684322799991,65.09149811400012],[-77.75780188699989,65.09650299700014],[-77.70494544199991,65.11054108300011],[-77.67768307199992,65.12132396000011],[-77.65782630099991,65.13434479400011],[-77.62946529899997,65.14842357000005],[-77.5926000639999,65.15070221600003],[-77.51756751199989,65.14492422100015],[-77.48643958199996,65.14809804900003],[-77.43199622299997,65.16225820500013],[-77.37653561099992,65.16836172100012],[-77.3519994779999,65.17609284100014],[-77.33002682199987,65.18720123900006],[-77.31281490799994,65.20014069200009],[-77.38105221299985,65.24730052300008],[-77.43683834499987,65.27383047100012],[-77.46747799399985,65.29629140800003],[-77.50059973899991,65.31517161700005],[-77.51414954299986,65.32611725500011],[-77.5075170559999,65.33592357000005],[-77.46983801999991,65.37494538000011],[-77.45612545499989,65.38507721600008],[-77.31403561099998,65.362494208],[-77.29169674399995,65.38141510600003],[-77.31200110599985,65.39813873900006],[-77.40680904899992,65.4386253930001],[-77.43565833199992,65.45962148600003],[-77.39159094999994,65.47308991100003],[-77.23639889199984,65.47386302300013],[-77.24498450399994,65.47020091399999],[-77.25287838399993,65.467922268],[-77.26130123599998,65.46686432500015],[-77.27179928299995,65.46702708500011],[-77.27179928299995,65.45962148600003],[-77.19395911399997,65.45530833500011],[-77.12035071499989,65.43976471600003],[-77.11676998599992,65.42438385600018],[-77.08954830599993,65.4160016950001],[-76.96637936099992,65.41168854400003],[-76.95649166599992,65.415228583],[-76.94933020699997,65.428697007],[-76.93219967399995,65.43333567900011],[-76.83092200399997,65.43109772300012],[-76.8118383449999,65.42609284100008],[-76.77965247299994,65.40778229400003],[-76.76777096299989,65.40558502800003],[-76.67686926999994,65.41107819200006],[-76.39865068249986,65.34967682499997],[-76.1204320949999,65.28827545800009],[-76.0940649079999,65.28579336100016],[-76.04157467399995,65.28628164300011],[-76.01740475199995,65.28204987200003],[-75.99006100199998,65.26439036700009],[-75.98277747299994,65.261379299],[-75.93480383999986,65.26097239800002],[-75.9112035799999,65.25787995000012],[-75.86827551999994,65.24420807500017],[-75.82294674399995,65.23871491100006],[-75.79792232999993,65.23232656500012],[-75.77485104099989,65.22353750200007],[-75.75731360599994,65.21381256700003],[-75.76207434799994,65.20856354400003],[-75.77033443899992,65.19269440300009],[-75.75531979099989,65.18838125200001],[-75.74726314999987,65.176743882],[-75.74299068899995,65.16474030200008],[-75.73932857999989,65.15916575700005],[-75.65363521999984,65.14492422100015],[-75.59797115799992,65.12636953300013],[-75.56220455599988,65.12148672100007],[-75.52391516799986,65.11009349200009],[-75.45234127499992,65.07855866100012],[-75.4407445949999,65.06574127800017],[-75.43248450399992,65.0479190120001],[-75.41864986899992,65.03046295800013],[-75.41584225199995,65.01605866100009],[-75.4407445949999,65.00771719],[-75.43158932199992,65.00116608300011],[-75.41405188699989,64.9804141300001],[-75.42528235599988,64.97247955900015],[-75.44013424399995,64.96596914300007],[-75.45567786399994,64.96157461100006],[-75.48216712099992,64.95726146],[-75.50226803299995,64.944281317],[-75.51716061099992,64.9394391950001],[-75.55504309799994,64.94049713700015],[-75.63304602799991,64.95351797100015],[-75.66791744699991,64.94562409100008],[-75.65387936099998,64.93598053600003],[-75.6385391919999,64.92841217700006],[-75.60651607999992,64.9183617210001],[-75.61266028599991,64.9183617210001],[-75.6066381499999,64.90802643400016],[-75.60431881399995,64.88182200700012],[-75.59898841099988,64.87055084800015],[-75.58051510299995,64.85781484600001],[-75.5604955719999,64.85447825700008],[-75.49132239499988,64.85675690300006],[-75.47838294199987,64.85455963700015],[-75.46869869699992,64.850083726],[-75.46027584499987,64.84308502800012],[-75.45872962099995,64.84015534100008],[-75.46043860599994,64.83612702000012],[-75.4619034499999,64.82615794500013],[-75.46821041599993,64.81305573100015],[-75.48399817599989,64.80833567900005],[-75.52391516799986,64.80914948100015],[-75.52448482999992,64.80438873900006],[-75.52293860599988,64.80320872600012],[-75.52025305899991,64.80329010600012],[-75.51716061099992,64.80231354400014],[-75.52806555899988,64.79751211100016],[-75.53302975199995,64.793890692],[-75.53758704299987,64.78864166900011],[-75.53075110599988,64.78864166900011],[-75.53758704299987,64.78119538000011],[-75.50995846299989,64.77586497600008],[-75.47887122299997,64.77594635600006],[-75.44969641799992,64.77179596600011],[-75.42772376199991,64.75385163000006],[-75.43394934799997,64.75385163000006],[-75.43394934799997,64.74770742400007],[-75.41730709499993,64.74725983300009],[-75.40143795499989,64.74225495000005],[-75.39513098899994,64.73452383000013],[-75.40721594999985,64.72589752800003],[-75.37873287699995,64.72158437700013],[-75.33360755099989,64.724310614],[-75.29698645699996,64.73407623900012],[-75.29401607999995,64.75079987200014],[-75.30658932199994,64.75901927300008],[-75.33515377499991,64.77244700700005],[-75.34581458199997,64.78119538000011],[-75.35309811099997,64.79336172100001],[-75.35643469999991,64.80459219000004],[-75.35944576699993,64.82273997600011],[-75.35265051999988,64.82957591400013],[-75.36729895699989,64.83454010600018],[-75.37311764199987,64.8358421900001],[-75.36839758999994,64.85228099199999],[-75.36119544199991,64.86615631700006],[-75.35142981699997,64.87689850500009],[-75.33897864499993,64.8842227230001],[-75.35212154899992,64.89175039300015],[-75.35688229099992,64.90180084800012],[-75.35444088399987,64.91327545800006],[-75.34581458199997,64.92519765800002],[-75.37022864499991,64.92389557500012],[-75.38719641799989,64.919582424],[-75.44591223899991,64.88304271000005],[-75.45942135299987,64.87714264500012],[-75.46869869699992,64.87738678600006],[-75.49522864499988,64.88312409100014],[-75.50999915299988,64.8842227230001],[-75.54112708199997,64.87970612200003],[-75.55573482999989,64.87909577000006],[-75.57172604099989,64.8842227230001],[-75.54686438699994,64.89345937700014],[-75.48456783799986,64.904445705],[-75.48228919199988,64.9183617210001],[-75.46825110599994,64.93895091400013],[-75.44526119699995,64.95148346600003],[-75.41694088399989,64.95791250200013],[-75.3867895169999,64.95994700700005],[-75.39301510299995,64.98248932500015],[-75.3711645169999,64.98468659100006],[-75.32160396999987,64.97296784100014],[-75.2816055979999,64.95880768400004],[-75.26256262899994,64.95701732000005],[-75.2712296209999,64.97402578300002],[-75.28205318899992,64.981390692],[-75.29210364499991,64.98997630400011],[-75.29051673099988,65.00092194200009],[-75.27550208199995,65.00861237200009],[-75.25987708199995,65.0090192730001],[-75.24767005099989,65.01487864800005],[-75.24274654899992,65.0384789080001],[-75.23530025899991,65.05585358300006],[-75.21886145699995,65.0635440120001],[-75.20246334499983,65.06720612200006],[-75.19493567599989,65.07265859600007],[-75.1948949859999,65.0946312520001],[-75.1987198559999,65.10569896000014],[-75.21263587099989,65.10968659100011],[-75.25389563699994,65.10862864800005],[-75.26178951699993,65.09845612200012],[-75.26353919199991,65.082993882],[-75.26325436099998,65.06574127800017],[-75.27021236899986,65.04938385600015],[-75.28697669199988,65.03522370000006],[-75.30724036399991,65.02521393400015],[-75.33922278599991,65.01772695500009],[-75.35081946499992,65.01093170800004],[-75.36314856699993,65.00763580900004],[-75.37995357999995,65.01459381700012],[-75.38666744699992,65.02342357],[-75.40046139199993,65.05219147300004],[-75.40721594999985,65.06232330900015],[-75.43700110599988,65.08600495000009],[-75.49925696499986,65.12531159100008],[-75.52733313699986,65.14834219000006],[-75.56212317599991,65.168931382],[-75.64488684799994,65.18488190300012],[-75.68163001199986,65.20014069200009],[-75.6929825509999,65.19159577000006],[-75.70567786399988,65.1887067730001],[-75.71821041599989,65.19155508000007],[-75.7294408839999,65.20014069200009],[-75.72284908799992,65.20254140800002],[-75.71857662699989,65.20575592700008],[-75.71454830599993,65.20962148600006],[-75.70893307199992,65.21381256700003],[-75.75072180899986,65.23639557500007],[-75.80024166599989,65.25092194200012],[-75.90815182199991,65.26097239800002],[-75.89740963399993,65.27008698100009],[-75.89801998599998,65.27887604400014],[-75.9069311189999,65.285589911],[-75.93464107999989,65.291693427],[-75.93952389199987,65.30011627800003],[-75.94225012899994,65.31122467700008],[-75.94908606699994,65.32245514500005],[-75.71540279899995,65.30878327000012],[-75.70335852799991,65.31093984600012],[-75.67853756399995,65.32245514500005],[-75.66502844999991,65.325384833],[-75.6551000639999,65.33197663000006],[-75.64732825399989,65.3390973980001],[-75.64061438699994,65.34349192900002],[-75.62055416599989,65.34341054900004],[-75.60350501199994,65.33462148600016],[-75.5980932279999,65.32160065300015],[-75.61266028599991,65.30878327000012],[-75.58372962099992,65.286118882],[-75.54979407499987,65.27708567900008],[-75.30479895699995,65.26776764500012],[-75.21544348899994,65.25413646],[-75.19318600199988,65.25629303600009],[-75.15046139199987,65.26569245000012],[-75.12983150899996,65.26776764500012],[-75.10558020699995,65.27850983300013],[-75.08397376199986,65.30272044500005],[-75.07416744699992,65.32835521000003],[-75.08507239499991,65.34349192900002],[-75.09874426999993,65.377630927],[-75.10553951699985,65.38861725500006],[-75.10973059799991,65.39386627800005],[-75.10505123599998,65.39614492400001],[-75.08507239499991,65.39813873900006],[-75.06550045499995,65.39765045800006],[-74.9784643219999,65.3784854190001],[-74.9684545559999,65.377630927],[-74.9602758449999,65.37995026200015],[-74.94566809799997,65.3897158870001],[-74.93797766799986,65.39191315300008],[-74.87218176999987,65.39813873900006],[-74.8539526029999,65.39614492400001],[-74.82042395699993,65.387152411],[-74.8008520169999,65.38507721600008],[-74.78595943899992,65.38654205900004],[-74.76927649599988,65.39085521000014],[-74.75560462099986,65.39826080900004],[-74.74994869699987,65.40875885600009],[-74.74592037699989,65.4256859400001],[-74.73631751199991,65.43329498900012],[-74.71515865799992,65.43976471600003],[-74.70836341099988,65.43231842700006],[-74.68590247299989,65.43305084800006],[-74.67536373599992,65.43138255400005],[-74.67357337099995,65.42609284100008],[-74.67442786399994,65.42007070500007],[-74.6832983059999,65.41526927299999],[-74.70836341099988,65.40558502800003],[-74.68012447799993,65.40070221600014],[-74.66820227799988,65.39533112200012],[-74.66051184799997,65.38507721600008],[-74.67162024599989,65.3856875670001],[-74.68089758999994,65.38458893400008],[-74.68854732999998,65.382025458],[-74.69469153599992,65.377630927],[-74.66136633999986,65.35073476800012],[-74.60875403599992,65.33588288000006],[-74.55121822799995,65.33340078300012],[-74.50291907499994,65.34349192900002],[-74.43403072799985,65.38141510600003],[-74.41181393099993,65.39032623900006],[-74.36571204299987,65.40208567900005],[-74.34459387899997,65.411810614],[-74.32481848899994,65.45148346600011],[-74.30675208199992,65.471869208],[-74.28693600199992,65.48069896000005],[-74.17662512899994,65.487005927],[-74.15343176999991,65.49494049700014],[-74.1742651029999,65.50568268400015],[-74.18427486899989,65.513413804],[-74.18757076699993,65.52167389500006],[-74.17926998599992,65.528509833],[-74.14561926999991,65.529771226],[-74.13263912699992,65.531927802],[-74.11835689999992,65.53709544500002],[-74.10566158799986,65.53774648600013],[-74.07774817599991,65.53534577],[-74.05113684799989,65.53668854400009],[-74.04356848899994,65.53534577],[-74.0390111969999,65.53221263200011],[-74.02997799399989,65.52167389500006],[-73.98375403599988,65.50682200700003],[-73.95795650899996,65.50641510600009],[-73.91295325399997,65.53241608300009],[-73.88036048099991,65.5357119810001],[-73.77607174399995,65.52484772300012],[-73.7390844389999,65.516791083],[-73.74022376199994,65.51251862200009],[-73.74193274599995,65.49803294500005],[-73.73375403599994,65.4877790390001],[-73.71434485599994,65.47589752800015],[-73.69172115799995,65.46552155200006],[-73.67365475199995,65.45962148600003],[-73.6491186189999,65.46161530200006],[-73.59471594999991,65.47601959800012],[-73.57433020699992,65.47044505400011],[-73.55414791599989,65.45990631700006],[-73.52558346299992,65.45380280200008],[-73.49640865799995,65.4532738300001],[-73.47443600199995,65.45962148600003],[-73.5023901029999,65.48069896000005],[-73.49632727799988,65.48843008000016],[-73.49604244699995,65.49396393400018],[-73.50055904899992,65.49799225500006],[-73.50914466099991,65.50116608300011],[-73.5023901029999,65.50116608300011],[-73.53632564999992,65.52985260600018],[-73.58991451699993,65.58877187700013],[-73.63267981699994,65.61041901200004],[-73.63267981699994,65.61790599200002],[-73.62242591099991,65.62238190300015],[-73.61347408799989,65.62946198100003],[-73.60883541599995,65.639146226],[-73.61156165299991,65.65135325700005],[-73.62482662699995,65.66181061400012],[-73.64338131399995,65.66364166900011],[-73.66331946499994,65.6628278670001],[-73.68049068899995,65.665025132],[-73.68663489499994,65.66962311400012],[-73.69428463399987,65.678412177],[-73.7001846999999,65.689154364],[-73.70160885299987,65.69985586100013],[-73.69554602799988,65.71458567900011],[-73.68565833199997,65.72040436400007],[-73.65318762899989,65.7202822940001],[-73.66987057199992,65.73086172100015],[-73.68769283799989,65.73725006700009],[-73.7019750639999,65.74632396000008],[-73.70775305899986,65.76496002800015],[-73.71784420499992,65.77460358300011],[-73.78290768099987,65.79604726800007],[-73.82469641799989,65.815375067],[-73.84581458199992,65.82078685100005],[-73.89911861899986,65.82587311400006],[-73.95079505099991,65.84003327],[-73.9750463529999,65.84320709800006],[-74.01231848899997,65.85512929900001],[-74.08141028599988,65.90761953300013],[-74.13044186099992,65.92357005400005],[-74.18138587099995,65.95302969000012],[-74.2062475249999,65.98053620000017],[-74.22077389199984,65.99115631700012],[-74.24225826699985,65.99404531500015],[-74.23603268099988,65.99404531500015],[-74.42035885299993,66.08344147300006],[-74.4585668609999,66.11204661700005],[-74.47370357999989,66.13141510600015],[-74.47215735599985,66.14858633000006],[-74.45722408799992,66.162339585],[-74.42027747299994,66.18720123900013],[-74.3454076809999,66.2258161480001],[-74.08202063699994,66.3002383480001],[-74.05138098899994,66.31964752800009],[-74.03827877499987,66.3252627620001],[-74.0243627589999,66.32904694200012],[-74.01256262899992,66.33038971600011],[-74.00157630099994,66.33417389500012],[-73.97468014199988,66.35154857000009],[-73.96165930899987,66.35712311400012],[-73.9482315749999,66.358587958],[-73.90644283799989,66.35712311400012],[-73.91100012899992,66.36749909100001],[-73.9132787749999,66.37140534100003],[-73.90058346299992,66.37970612200009],[-73.88695227799988,66.38471100500014],[-73.85798092399988,66.39183177299999],[-73.81305904899989,66.40981679900013],[-73.7802221339999,66.41840241100014],[-73.71467037699995,66.46015045800009],[-73.45563717399989,66.55060455900006],[-73.43085689999992,66.56378815300008],[-73.4113663399999,66.60838450700008],[-73.3899633449999,66.62954336100006],[-73.36481686099992,66.64752838700012],[-73.34467525899987,66.65875885600012],[-73.33214270699997,66.66339752800006],[-73.27289791599989,66.67755768400015],[-73.23554439999992,66.6908633480001],[-73.18879146999987,66.69839101800015],[-73.1289770169999,66.72077057500013],[-73.09833736899989,66.72768789300007],[-73.0104874339999,66.72589752800017],[-72.94896399599985,66.73456452000006],[-72.97459876199991,66.759995835],[-73.00548255099997,66.77920156500015],[-73.0058080719999,66.81769440300003],[-72.96540279899995,66.866644598],[-72.91331946499992,66.90875885600015],[-72.87852942599994,66.92694733300004],[-72.88499915299985,66.92743561400015],[-72.88630123599995,66.928900458],[-72.88597571499994,66.93309153900013],[-72.86192786399991,66.95213450700011],[-72.82835852799988,67.01813385600015],[-72.80345618399994,67.0429548200001],[-72.73847408799986,67.06830475500014],[-72.67149817599997,67.08026764500006],[-72.47667395699993,67.08763255400008],[-72.41181393099987,67.09918854400009],[-72.35090084499987,67.11945221600011],[-72.28888912699992,67.16205475500014],[-72.28083248599998,67.16917552299999],[-72.27521725199998,67.18012116100006],[-72.27582760299993,67.18854401200011],[-72.28270423099994,67.20966217700011],[-72.28266354099995,67.22113678600006],[-72.26903235599991,67.24420807500003],[-72.2457169259999,67.25958893400015],[-72.19334876199991,67.27570221600014],[-72.31419837099986,67.30589427300004],[-72.36982174399989,67.33079661699999],[-72.35716712099992,67.36505768400013],[-72.37018795499989,67.37352122600011],[-72.39814205599993,67.41290924700009],[-72.42780514199987,67.44061920800009],[-72.43500729099988,67.45530833500008],[-72.43354244699992,67.47500234600004],[-72.50800533799992,67.50226471600011],[-72.48896236899992,67.51520416900003],[-72.43610592399995,67.53148021000004],[-72.42609615799995,67.54328034100003],[-72.43146725199992,67.55353424700014],[-72.44249426999997,67.55756256700003],[-72.45555579299995,67.55947500200006],[-72.46703040299988,67.56370677299999],[-72.47504635299993,67.57208893400015],[-72.48741614499997,67.59137604400009],[-72.4949845039999,67.59788646],[-72.48204505099991,67.61758047100012],[-72.49644934799997,67.63043854400014],[-72.52387447799993,67.63739655200013],[-72.59142005099991,67.63947174700014],[-72.59801184799997,67.64252350500006],[-72.59996497299991,67.650132554],[-72.60517330599993,67.65802643400015],[-72.6126195949999,67.66425202000012],[-72.64350338399996,67.67182038000009],[-72.66295325399994,67.68480052300008],[-72.67280025899987,67.70258209800015],[-72.66624915299988,67.72199127800015],[-72.64789791599992,67.73065827000006],[-72.59654700399992,67.7451846370001],[-72.59117591099997,67.75551992400001],[-72.59569251199991,67.76683177299999],[-72.60102291599989,67.77692291900014],[-72.60822506399992,67.78628164300008],[-72.61888587099995,67.79547760600015],[-72.63154049399992,67.8031273460001],[-72.64606686099995,67.808294989],[-72.66258704299992,67.81012604400014],[-72.67638098899992,67.813462632],[-72.69078528599991,67.82135651200015],[-72.71406002499992,67.838080145],[-72.73668372299989,67.85004303600012],[-72.74103756399998,67.85626862200009],[-72.73456783799989,67.86542389500006],[-72.76374264199993,67.88043854400009],[-72.78791256399992,67.87250397300012],[-72.81110592399993,67.85740794500009],[-72.83759518099993,67.85114166900017],[-72.85741126199994,67.860541083],[-72.88935299399995,67.895941473],[-72.91331946499992,67.90631745000009],[-72.90404212099986,67.91608307500005],[-72.87852942599994,67.93427155200014],[-72.89753170499993,67.93585846600017],[-72.92463131399997,67.93162669500005],[-72.94404049399989,67.9322777360001],[-72.94001217399992,67.94794342700008],[-72.91136633999986,67.95823802299999],[-72.90587317599991,67.96100495000013],[-72.90436764199987,67.97040436400006],[-72.90733801999988,67.97907135600015],[-72.91144771999984,67.98720937700006],[-72.91331946499992,67.99510325700005],[-72.91071529899992,68.00413646000005],[-72.90107174399995,68.01349518400009],[-72.89903723899991,68.02301666900007],[-72.90229244699987,68.02594635600012],[-72.90929114499993,68.02924225500004],[-72.91633053299992,68.03359609600015],[-72.91950436099998,68.03974030200011],[-72.91803951699993,68.04409414300004],[-72.91502844999991,68.04816315300017],[-72.9127904939999,68.052476304],[-72.91331946499992,68.05719635600009],[-72.92365475199992,68.07127513200011],[-72.9492895169999,68.09747955900015],[-72.96043860599991,68.11180247600005],[-72.97541256399992,68.13983795800006],[-72.98839270699992,68.17328522300012],[-72.99058997299991,68.18976471600011],[-72.99140377499991,68.2257347680001],[-72.99461829299989,68.23590729400003],[-73.00544186099998,68.24209219],[-73.01891028599997,68.24359772300015],[-73.03254146999991,68.24127838700018],[-73.04364986899995,68.23590729400003],[-73.04503333199992,68.22866445500001],[-73.03905188699991,68.22040436400012],[-73.03742428299998,68.21161530200006],[-73.05182857999993,68.20294830900015],[-73.07262122299993,68.20746491100003],[-73.09430904899992,68.22284577000015],[-73.11729895699989,68.23208242400001],[-73.1423233709999,68.21796295800009],[-73.14952551999994,68.21727122600005],[-73.16710364499997,68.23688385600009],[-73.17711341099997,68.24213288],[-73.1903783839999,68.24017975500014],[-73.20262610599985,68.23700592700008],[-73.21483313699991,68.23631419500013],[-73.22801673099988,68.24213288],[-73.21544348899988,68.2425804710001],[-73.20470130099997,68.24664948100003],[-73.19725501199989,68.25446198100003],[-73.19452877499992,68.26605866100006],[-73.20026607999989,68.275295315],[-73.21397864499991,68.278021552],[-73.22992916599992,68.27822500200013],[-73.24229895699997,68.2800153670001],[-73.25609290299988,68.284857489],[-73.28864498599995,68.29026927300005],[-73.30308997299991,68.29059479400017],[-73.31456458199993,68.287054755],[-73.32884680899994,68.279771226],[-73.33808346299992,68.27265045800011],[-73.33446204299995,68.26947663000006],[-73.32335364499991,68.2666690120001],[-73.32843990799991,68.260199286],[-73.34068762899992,68.25348541900014],[-73.3515111969999,68.24957916900014],[-73.36384029899995,68.24823639500006],[-73.37568111899989,68.24921295800006],[-73.38658606699988,68.25275299700003],[-73.41779537699995,68.27216217700014],[-73.44237219999988,68.277044989],[-73.49494381399988,68.27692291900003],[-73.48029537699989,68.28595612200013],[-73.46178137899997,68.292141018],[-73.44208736899992,68.29559967700011],[-73.42381751199986,68.29677969000012],[-73.42011471299992,68.29987213700004],[-73.41527258999994,68.31391022300006],[-73.41295325399997,68.31785716400007],[-73.40575110599985,68.32025788000003],[-73.37885494699987,68.32404205900004],[-73.34211178299998,68.32054271000014],[-73.3290502589999,68.322455145],[-73.30565344999991,68.33047109600012],[-73.29967200399989,68.3315290390001],[-73.29206295499995,68.33588288],[-73.29340572799995,68.34552643400015],[-73.30223548099991,68.3549258480001],[-73.31737219999991,68.3588320980001],[-73.29889889199987,68.37494538000006],[-73.27147376199991,68.38056061400006],[-73.21373450399989,68.37929922100012],[-73.25593014199993,68.395493882],[-73.27912350199995,68.39972565300012],[-73.31737219999991,68.3998070330001],[-73.30357825399989,68.388576565],[-73.29625403599988,68.38556549700009],[-73.31379146999993,68.38178131700006],[-73.33421790299991,68.3803571640001],[-73.35126705599994,68.3756371110001],[-73.35834713399993,68.36196523600016],[-73.35240637899987,68.34393952000012],[-73.35553951699987,68.33527252800003],[-73.37201900899996,68.3315290390001],[-73.4331762359999,68.33486562700013],[-73.46532141799986,68.33319733300011],[-73.48188229099992,68.32404205900004],[-73.47752844999994,68.32294342699998],[-73.46821041599989,68.31785716400007],[-73.53595943899991,68.28790924700009],[-73.57127844999994,68.27777741100014],[-73.61156165299991,68.27692291900003],[-73.61156165299991,68.26947663000006],[-73.60444088399987,68.26650625200013],[-73.59947669199991,68.262884833],[-73.59174557199988,68.2558047550001],[-73.61908932199985,68.24957916900014],[-73.62690182199987,68.25226471600014],[-73.63243567599989,68.25653717700006],[-73.6363012359999,68.26056549700003],[-73.63890540299988,68.26264069200015],[-73.68793697799993,68.27692291900003],[-73.65245520699995,68.293890692],[-73.63890540299988,68.29677969000012],[-73.62328040299991,68.29535553600006],[-73.60956783799989,68.29205963700004],[-73.59687252499992,68.29291413000014],[-73.58429928299992,68.30418528900013],[-73.64122473899994,68.310736395],[-73.70099850199992,68.31037018400008],[-73.72801673099988,68.31366608300011],[-73.83128821499986,68.34393952000012],[-73.84443111899992,68.3495954450001],[-73.86884518099987,68.37588125200013],[-73.88654537699998,68.38959381700006],[-73.90623938699991,68.39923737200003],[-73.94737708199989,68.41347890800013],[-73.93073482999995,68.42475006700012],[-73.91038977799984,68.43427155200011],[-73.89317786399994,68.44623444200006],[-73.87873287699989,68.48427969000015],[-73.86095130099991,68.49819570500013],[-73.83869381399995,68.50678131700015],[-73.81761633999992,68.50967031500006],[-73.76227779899995,68.51048411699999],[-73.73863684799991,68.51923248900005],[-73.72887122299996,68.54035065300017],[-73.74095618399988,68.5467796900001],[-73.81700598899997,68.57111237200014],[-73.75841223899994,68.58161041900003],[-73.74506588399993,68.58820221600008],[-73.72504635299995,68.61383698100015],[-73.72150631399994,68.61579010600012],[-73.73566646999988,68.62636953300007],[-73.76789303299992,68.62641022300006],[-73.82453365799991,68.61953359600015],[-73.82453365799991,68.62571849200009],[-73.73407955599987,68.6464704450001],[-73.70775305899986,68.66046784100017],[-73.77485104099992,68.66738515800007],[-73.7965795559999,68.66669342700014],[-73.78697669199991,68.67519765800007],[-73.7757462229999,68.68060944200003],[-73.75560462099989,68.687201239],[-73.84015865799992,68.69594961100016],[-73.88829505099997,68.7140160180001],[-73.95152747299994,68.70498281500006],[-73.98212643099995,68.70766836100013],[-73.99095618399991,68.71503327000015],[-73.99754798099988,68.7246768250001],[-74.00670325399997,68.73029205900012],[-74.03766842399992,68.72125885600009],[-74.08796139199985,68.72199127800003],[-74.09825598899988,68.72406647300006],[-74.12352454299995,68.733384507],[-74.13914954299992,68.73558177299999],[-74.17027747299991,68.72955963700018],[-74.18757076699993,68.72939687700004],[-74.16633053299991,68.70636627800013],[-74.15973873599995,68.701402085],[-74.14728756399992,68.69749583500001],[-74.09821529899988,68.69399648600002],[-74.08385169199991,68.68964264500012],[-74.04364986899992,68.66669342700014],[-74.04511471299989,68.66453685100014],[-74.04694576699987,68.65985748900012],[-74.04548092399989,68.655218817],[-74.03034420499989,68.6518008480001],[-74.02513587099992,68.64866771000003],[-74.01630611899995,68.63873932500009],[-74.02098548099987,68.63654205900012],[-74.02110755099994,68.63564687700001],[-74.02306067599989,68.63255442900014],[-73.99677486899986,68.62693919500013],[-73.97838294199991,68.61603424700014],[-73.94054114499988,68.58478424700009],[-73.89521236899986,68.57099030199998],[-73.88597571499992,68.56427643400004],[-73.8852026029999,68.55487702],[-73.89012610599985,68.54865143400015],[-73.89655514199987,68.54425690300013],[-73.91218014199984,68.52240631700012],[-73.94029700399994,68.50812409100003],[-73.98582923099991,68.49542877800015],[-74.01813717399992,68.49848053600006],[-74.02489173099985,68.507025458],[-74.01646887899992,68.52016836100013],[-74.00263424399992,68.53701406500015],[-74.14972896999987,68.53009674700014],[-74.19684811099995,68.51740143400018],[-74.2200414699999,68.51581452000015],[-74.22175045499989,68.53009674700014],[-74.25434322799985,68.53986237200009],[-74.37254798099991,68.54376862200009],[-74.3855688139999,68.548041083],[-74.3942358059999,68.55744049700003],[-74.39989173099988,68.56683991100014],[-74.40355383999992,68.57111237200014],[-74.41315670499992,68.57404205900018],[-74.43761145699995,68.58755117400014],[-74.44823157499988,68.59153880400011],[-74.50462805899993,68.5995140650001],[-74.52318274599995,68.61082591400007],[-74.53022213399993,68.63568756699999],[-74.5315649079999,68.65322500200016],[-74.53754635299993,68.6651878930001],[-74.55089270699992,68.67202383000001],[-74.57457434799994,68.67413971600011],[-74.59589596299992,68.679388739],[-74.66742916599986,68.71507396000013],[-74.71027584499984,68.726019598],[-74.72077389199993,68.73554108299999],[-74.72199459499984,68.75604889500006],[-74.72052975199998,68.769232489],[-74.7177628249999,68.7739118510001],[-74.61896725199998,68.78400299700009],[-74.59520423099988,68.79165273600002],[-74.57860266799992,68.80133698100018],[-74.55072994699987,68.8249372420001],[-74.57445227799988,68.84186432500009],[-74.6137182279999,68.85024648600016],[-74.65550696499992,68.85097890800007],[-74.68724524599989,68.84544505400007],[-74.68309485599994,68.83510976800007],[-74.68101966099991,68.83120351800005],[-74.69884192599989,68.83169179900015],[-74.71739661399991,68.82953522300015],[-74.7350561189999,68.82485586100013],[-74.74994869699987,68.81753164300012],[-74.71764075399994,68.81696198100015],[-74.68659420499992,68.82025787999999],[-74.65790768099987,68.81883372600011],[-74.63263912699992,68.80390045800009],[-74.65001380099989,68.79140859600007],[-74.8250219389999,68.77655670800002],[-74.83482825399992,68.77973053600009],[-74.83503170499998,68.78681061400012],[-74.83442135299993,68.79385000200001],[-74.84150143099987,68.79706452000006],[-74.89329993399988,68.79706452000006],[-74.95933997299991,68.81098053600014],[-74.9827367829999,68.81126536699999],[-74.95323645699992,68.8214785830001],[-74.87885494699992,68.82550690300017],[-74.8449193999999,68.83120351800005],[-74.85236568899995,68.83860911700005],[-74.78937740799994,68.85431549700012],[-74.72199459499984,68.85846588700015],[-74.70063229099989,68.86493561400006],[-74.68480383999994,68.879828192],[-74.68248450399997,68.89606354400014],[-74.70152747299997,68.90692780200014],[-74.68903561099995,68.9170596370001],[-74.68293209499987,68.91958242400001],[-74.67357337099995,68.92112864800005],[-74.7031957669999,68.93756745000015],[-74.75511633999989,68.94009023600016],[-74.89720618399988,68.91498444200006],[-75.0441381499999,68.90692780200014],[-75.02228756399992,68.91518789300012],[-74.86998450399989,68.93268463700018],[-74.8449193999999,68.940375067],[-74.89427649599986,68.947658596],[-75.00108801999994,68.92796458500008],[-75.0441381499999,68.93423086100002],[-74.85920162699998,68.96832916900001],[-74.93427486899992,68.96214427300005],[-74.97992916599993,68.94965241100006],[-75.00336666599992,68.94745514500006],[-75.02367102799991,68.95473867400007],[-75.01134192599997,68.96698639500012],[-74.94066321499992,68.99774811400012],[-74.92613684799989,69.00165436400012],[-74.72883053299994,69.02362702000012],[-74.78673255099994,69.004339911],[-74.80455481699994,68.99567291900009],[-74.78473873599992,68.99640534100003],[-74.74604244699987,69.00678131700012],[-74.72541256399995,69.00934479400003],[-74.6797582669999,69.00771719],[-74.65746008999989,69.01146067900005],[-74.64008541599989,69.02362702000012],[-74.65351314999988,69.04059479400011],[-74.66803951699993,69.04759349199999],[-74.70836341099988,69.05027903900007],[-74.72748775899987,69.05434804900004],[-74.78343665299991,69.07819245000009],[-74.80907141799989,69.08331940300012],[-74.83018958199989,69.08051178600006],[-74.85008704299989,69.07510000200001],[-74.89146887899992,69.06989166900003],[-74.93773352799991,69.0574404970001],[-74.94794674399995,69.05027903900007],[-74.96178137899994,69.04913971600003],[-74.97057044199991,69.044094143],[-74.98578854099989,69.02667877800003],[-74.99860592399992,69.02065664300004],[-75.03600012899997,69.01496002800003],[-75.05158443899995,69.00934479400003],[-75.03929602799991,68.99583567900005],[-75.04271399599992,68.98615143400008],[-75.05549068899995,68.97943756700006],[-75.07148189999995,68.97516510600006],[-75.05988521999984,68.95522695500016],[-75.07367916599995,68.93545156500012],[-75.1061905589999,68.91034577000015],[-75.11603756399994,68.89297109600007],[-75.13914954299989,68.88873932500015],[-75.18781490799992,68.893255927],[-75.20197506399994,68.89679596600008],[-75.24274654899992,68.92112864800005],[-75.29743404899995,68.93423086100002],[-75.36359615799995,68.97158437700007],[-75.37995357999995,68.97516510600006],[-75.3957006499999,68.98346588700004],[-75.4247533839999,69.00751373900005],[-75.4407445949999,69.01679108300011],[-75.46381588399996,69.02236562700004],[-75.48639889199984,69.02204010600009],[-75.50873775899987,69.017238674],[-75.53075110599988,69.00934479400003],[-75.57042395699989,68.98651764500012],[-75.56366939999995,68.970648505],[-75.49665279899993,68.93423086100002],[-75.54841061099998,68.90570709800012],[-75.60651607999992,68.88580963700004],[-75.73253333199997,68.86273834800006],[-75.80601966099997,68.83649323100003],[-75.93464107999989,68.8249372420001],[-75.95588131399998,68.81879303600012],[-76.00121008999989,68.788234768],[-76.02363033799992,68.77655670800002],[-76.32555091099994,68.69847239799999],[-76.53901119699992,68.67475006700005],[-76.62498938699994,68.6823591170001],[-76.68150794199994,68.72939687700004],[-76.6731664699999,68.76581452],[-76.57294674399989,68.82094961100013],[-76.53754635299985,68.85228099199999],[-76.53380286399992,68.88141510600003],[-76.55658932199987,68.88613515800013],[-76.59129798099993,68.88499583500011],[-76.6234838529999,68.89638906500006],[-76.64464270699989,68.91693756700012],[-76.65221106699994,68.93183014500005],[-76.64631100199989,68.94700755400005],[-76.6269018219999,68.96832916900001],[-76.63853919199991,68.97980377800017],[-76.64268958199993,68.99848053600006],[-76.63813229099989,69.01593659100011],[-76.6234838529999,69.02362702000012],[-76.60932369699987,69.02529531500015],[-76.5654190749999,69.03725820500007],[-76.42247473899991,69.05988190300003],[-76.16071529899997,69.0449079450001],[-76.13068600199992,69.03758372600002],[-76.08649654899993,69.01357656500006],[-76.05955969999988,69.00873444200009],[-75.98985755099991,69.01089101800005],[-75.97980709499984,69.01463450700011],[-75.96275794199988,69.02362702000012],[-75.89049231699991,69.04730866100006],[-75.82567298099991,69.05731842700013],[-75.81159420499998,69.08307526200015],[-75.78160559799991,69.089016018],[-75.71540279899995,69.09186432500003],[-75.6508276029999,69.08584219000012],[-75.62096106699988,69.08795807500005],[-75.59557044199997,69.10211823100015],[-75.59467525899987,69.10907623900006],[-75.60387122299994,69.12856679900011],[-75.60651607999992,69.13621653899999],[-75.6010636059999,69.14484284100008],[-75.57713782499994,69.1512718770001],[-75.57172604099989,69.15704987200014],[-75.59858150899986,69.21922435100008],[-75.59557044199997,69.22907135600009],[-75.60191809799991,69.23574453300013],[-75.68744869699988,69.28705475500004],[-75.75035559799993,69.30463288],[-75.80626380099991,69.32721588700015],[-75.87535559799991,69.34296295800011],[-75.90754146999987,69.34511953300012],[-75.91649329299989,69.34813060100014],[-75.94404049399992,69.36347077000009],[-75.95221920499992,69.36961497600005],[-75.96214758999994,69.37348053600006],[-76.05101477799988,69.383734442],[-76.16820227799984,69.41400788],[-76.21715247299991,69.41738515800002],[-76.3597305979999,69.40033600500006],[-76.39130611899992,69.4053408870001],[-76.40436764199988,69.41803620000015],[-76.41218014199988,69.43545156500012],[-76.42829342399995,69.45433177300005],[-76.45213782499992,69.46889883000007],[-76.60289466099994,69.52887604400011],[-76.62958736899985,69.54596588700007],[-76.63434811099995,69.5716820330001],[-76.61628170499995,69.591986395],[-76.58604895699995,69.60431549700014],[-76.55256100199989,69.61395905200011],[-76.4695531889999,69.65761953300002],[-76.45124264199984,69.6603050800001],[-76.38548743399986,69.64671458500013],[-76.33405514199987,69.64264557500017],[-76.22838294199991,69.61933014500006],[-76.20978756399992,69.61945221600014],[-76.20978756399992,69.62628815300015],[-76.22919674399992,69.63760000200013],[-76.21979732999992,69.64972565300003],[-76.18187415299988,69.66787344000012],[-76.36127682199987,69.67084381700015],[-76.38646399599995,69.67633698100018],[-76.40156002499995,69.68773021000014],[-76.3974096339999,69.69623444200006],[-76.40314693899998,69.70136139500009],[-76.41466223899991,69.70229726800007],[-76.44770260299987,69.69269440300009],[-76.58454342399989,69.69464752800003],[-76.62205969999991,69.68866608300011],[-76.64057369699992,69.67405833500003],[-76.54344641799992,69.67548248900009],[-76.53123938699994,69.67377350500009],[-76.51703854099992,69.66787344000012],[-76.5343725249999,69.64765045800011],[-76.55243893099991,69.63287995000003],[-76.57526607999995,69.62348053600003],[-76.60639400899993,69.61945221600014],[-76.61554928299992,69.62140534100008],[-76.62519283799989,69.62531159100008],[-76.63483639199987,69.62714264500006],[-76.64399166599995,69.62287018400015],[-76.64549719999988,69.61810944200006],[-76.64281165299991,69.61367422100007],[-76.64057369699992,69.608832098],[-76.64399166599995,69.60268789300012],[-76.68150794199994,69.5716820330001],[-76.70299231699988,69.56500885600003],[-76.8350317049999,69.57591380400011],[-76.88215084499991,69.5907250020001],[-76.88556881399992,69.59739817900005],[-76.87328040299988,69.61261627800002],[-76.8618057929999,69.61871979400011],[-76.83165442599991,69.62579987200017],[-76.81867428299991,69.63312409100008],[-76.84483801999994,69.62457916900014],[-76.90684973899991,69.62152741100006],[-76.95282955599987,69.60004303600012],[-76.98375403599991,69.59723541900007],[-77.01545162699998,69.59951406500006],[-77.03840084499987,69.60578034100011],[-77.04527747299997,69.61371491100005],[-77.0460912749999,69.62274811400009],[-77.04902096299992,69.630072333],[-77.06232662699992,69.63312409100008],[-77.11384029899992,69.62628815300015],[-77.13532467399992,69.6283226580001],[-77.20287024599989,69.64671458500013],[-77.18077551999991,69.67446523600002],[-77.13666744699992,69.6861839860001],[-77.04523678299996,69.68773021000014],[-77.03526770699989,69.69106679900007],[-77.01842200399989,69.70551178600012],[-77.00739498599991,69.70880768400013],[-76.99653072799995,69.70661041900017],[-76.98359127499995,69.69684479400003],[-76.97325598899994,69.69452545800006],[-76.95396887899992,69.6987165390001],[-76.92100989499993,69.71482982000006],[-76.90123450399992,69.7150332700001],[-76.90904700399989,69.70502350500014],[-76.91889400899993,69.69647858300011],[-76.94220943899992,69.68154531500006],[-76.87348385299993,69.68724192900005],[-76.83539791599995,69.69464752800003],[-76.79478919199994,69.72247955900009],[-76.79474850199995,69.725572007],[-76.79295813699986,69.73309967700013],[-76.78954016799986,69.74213288000006],[-76.78453528599991,69.74982330900015],[-76.81684322799991,69.75861237200003],[-76.85199947799988,69.75482819200003],[-76.88263912699992,69.755316473],[-76.90123450399992,69.77708567900005],[-76.88910885299993,69.80170319200006],[-76.84642493399988,69.80731842700004],[-76.79523678299992,69.80817291900017],[-76.75727291599992,69.81867096600006],[-76.77672278599991,69.83608633000001],[-76.80524654899992,69.83413320500016],[-76.83881588399996,69.82453034100008],[-76.87328040299988,69.81867096600006],[-77.07258053299994,69.81867096600006],[-77.07258053299994,69.824896552],[-77.03266354099989,69.83771393400004],[-77.01301021999984,69.8463809270001],[-76.99742591099994,69.85968659100014],[-77.05011959499987,69.85757070500011],[-77.07689368399984,69.85285065300003],[-77.09984290299985,69.84540436400005],[-77.1320287749999,69.82562897300012],[-77.15046139199984,69.81818268400015],[-77.19794674399995,69.832709052],[-77.29291744699987,69.83600495000003],[-77.31281490799994,69.84198639500015],[-77.29255123599995,69.86774323100018],[-77.11778723899988,69.90778229400003],[-77.01366126199989,69.91974518400005],[-76.97638912699992,69.94220612200014],[-77.06647701699987,69.93622467700014],[-77.21629798099988,69.90582916900017],[-77.23700924399989,69.89720286700008],[-77.25739498599998,69.89301178600012],[-77.30451412699998,69.89227936399999],[-77.32237708199995,69.883246161],[-77.35423743399988,69.87392812700016],[-77.49091549399995,69.86273834800012],[-77.50995846299992,69.84491608300006],[-77.63426673099988,69.824896552],[-77.6047257149999,69.81964752800012],[-77.58946692599993,69.81952545800014],[-77.5364884109999,69.83222077],[-77.51899166599995,69.83209870000003],[-77.50458736899989,69.824896552],[-77.51756751199989,69.81867096600006],[-77.49958248599992,69.81004466400003],[-77.46100826699987,69.80190664300004],[-77.44245357999995,69.790757554],[-77.46141516799986,69.790716864],[-77.51756751199989,69.79759349200009],[-77.51793372299989,69.77301666900011],[-77.54576575399994,69.75409577000009],[-77.58372962099986,69.7432315120001],[-77.61436926999997,69.74298737200014],[-77.63975989499988,69.75787995000012],[-77.65265865799992,69.77985260600003],[-77.66352291599989,69.80390045800006],[-77.68268795499995,69.824896552],[-77.66820227799991,69.85480377800017],[-77.67096920499998,69.89948151200004],[-77.68297278599991,69.94301992400007],[-77.68891354099992,69.96954987200003],[-77.6977026029999,69.99445221600013],[-77.68932044199991,70.0172386740001],[-77.67564856699988,70.03900788000004],[-77.66840572799987,70.06134674700017],[-77.66987057199991,70.08991120000015],[-77.67450924399995,70.11123281500012],[-77.69635982999989,70.15387604400014],[-77.6825658839999,70.18366120000016],[-77.70392818899995,70.20123932500009],[-77.74103756399995,70.21491120000003],[-77.77452551999991,70.23297760600015],[-77.79108639199985,70.247992255],[-77.79820716099994,70.25112539300005],[-77.80634518099993,70.247951565],[-77.82603919199988,70.24384186400015],[-77.84776770699993,70.24567291900003],[-77.87677975199995,70.26019928600006],[-77.89155025899993,70.26373932500003],[-77.9330541659999,70.25722890800013],[-78.01728268099993,70.22866445500016],[-78.05573482999992,70.22211334800006],[-78.07001705599993,70.2258161480001],[-78.12092037699995,70.25006745000009],[-78.1582738919999,70.25617096600008],[-78.19660396999993,70.25690338700012],[-78.19660396999993,70.25006745000009],[-78.18183346299995,70.245794989],[-78.15143795499998,70.23240794499999],[-78.13792883999992,70.22955963700007],[-78.13402258999992,70.22532786700013],[-78.13902747299994,70.21588776200012],[-78.14704342399989,70.20652903899999],[-78.15221106699991,70.20229726800007],[-78.21564693899992,70.2047386740001],[-78.24152584499984,70.21263255400008],[-78.23078365799992,70.22955963700007],[-78.29902096299992,70.22211334800006],[-78.30805416599992,70.21898021],[-78.32172604099985,70.20538971600014],[-78.3297826809999,70.20229726800007],[-78.3505346339999,70.20526764500006],[-78.38910885299987,70.21637604400009],[-78.40827389199984,70.21588776200012],[-78.4046117829999,70.21893952],[-78.3946020169999,70.22955963700007],[-78.42747962099989,70.25739166900011],[-78.46186275899993,70.278998114],[-78.5392553379999,70.31216054900013],[-78.52936764199993,70.31533437700001],[-78.5089819,70.31810130400005],[-78.49767005099994,70.3183454450001],[-78.48973548099988,70.32046133000001],[-78.47797604099992,70.32990143400004],[-78.47004146999983,70.33197663000006],[-78.42719479099986,70.33038971600003],[-78.40575110599991,70.33218008000001],[-78.38841712099995,70.33881256700006],[-78.48619544199991,70.35492584800012],[-78.5358780589999,70.35659414300014],[-78.58018958199995,70.345648505],[-78.58641516799992,70.33881256700006],[-78.57868404899992,70.33527252800008],[-78.55907141799995,70.3183454450001],[-78.58165442599991,70.3144391950001],[-78.66279049399995,70.35309479400014],[-78.65644283799992,70.36017487200003],[-78.64106197799987,70.37311432500002],[-78.6348363919999,70.37978750200007],[-78.68480383999994,70.37824127800003],[-78.69965572799988,70.38251373900006],[-78.74156653599991,70.427679755],[-78.74823971299986,70.44135163000014],[-78.74469967399989,70.45612213700011],[-78.77509518099995,70.45551178600006],[-78.83332271999987,70.44708893400009],[-78.86078854099992,70.45612213700011],[-78.87262936099998,70.47467682500003],[-78.88097083199995,70.48240794500013],[-78.89179439999994,70.47972239800004],[-78.89696204299995,70.47308991099999],[-78.9036352199999,70.45697663000011],[-78.90912838399993,70.44871653900013],[-78.89362545499992,70.44318268400012],[-78.88520260299987,70.43406810100011],[-78.87848873599992,70.423773505],[-78.86754309799994,70.41453685100005],[-78.89704342399992,70.4168968770001],[-78.91926021999988,70.4289411480001],[-78.9399307929999,70.44428131700006],[-78.96442623599992,70.45612213700011],[-78.98188229099989,70.45929596600008],[-79.0258682929999,70.45612213700011],[-79.03453528599991,70.45880768400009],[-79.07367916599995,70.47662995000017],[-79.04633541599989,70.48965078300014],[-79.06110592399995,70.48871491100009],[-79.07567298099987,70.489935614],[-79.08930416599992,70.49445221600014],[-79.10094153599994,70.5033226580001],[-79.08454342399995,70.50275299700003],[-79.06810462099993,70.505031643],[-79.05268307199992,70.50995514500006],[-79.03888912699989,70.51764557500017],[-79.04718990799996,70.52570221600003],[-79.0570776029999,70.53066640800007],[-79.06806393099995,70.53241608300006],[-79.07990475199992,70.53123607000013],[-79.07990475199992,70.53807200700005],[-78.92650305899991,70.53851959800015],[-78.88190670499992,70.55170319199999],[-78.90387936099994,70.55760325700014],[-78.9560033839999,70.55442942900008],[-78.9706518219999,70.55853913000011],[-78.97520911399994,70.555609442],[-78.98131262899992,70.55463288000011],[-78.98888098899988,70.555609442],[-78.99791419199988,70.55853913000011],[-78.99791419199988,70.56537506700012],[-78.95759029899992,70.56940338700008],[-78.88178463399996,70.60077545800014],[-78.84089107999992,70.59951406500012],[-78.82738196499986,70.59308502800003],[-78.81908118399988,70.58515045800006],[-78.81147213399991,70.575913804],[-78.79991614499991,70.56537506700012],[-78.78172766799992,70.55634186400012],[-78.76081295499995,70.55243561400012],[-78.71735592399992,70.55170319199999],[-78.76264400899993,70.56452057500003],[-78.78364010299987,70.57705312700013],[-78.80016028599992,70.60944245000003],[-78.81834876199994,70.62400950700005],[-78.83991451699987,70.63568756700006],[-78.85765540299985,70.64052969000012],[-78.86449133999986,70.63825104400017],[-78.86908932199988,70.63336823100009],[-78.87474524599988,70.62848541900003],[-78.88495846299992,70.62620677300005],[-78.9364721339999,70.62620677300005],[-78.95905514199987,70.630804755],[-78.97923743399991,70.63816966399999],[-78.9953100249999,70.64996979400014],[-79.00536048099985,70.66779205900004],[-78.99791419199988,70.67462799700014],[-79.01581783799995,70.68211497600011],[-79.03270423099994,70.68113841400005],[-79.12385006399992,70.64663320500013],[-79.13886471299986,70.63711172100012],[-79.14745032499988,70.6329613300001],[-79.15546627499992,70.63178131700006],[-79.15949459499988,70.62905508000009],[-79.15619869699994,70.62002187700008],[-79.12791907499991,70.61318594000006],[-79.02277584499984,70.63043854400017],[-79.01317298099985,70.63100820500013],[-79.00536048099985,70.62620677300005],[-79.00324459499987,70.61859772300004],[-79.00873775899987,70.61448802300006],[-79.01667232999995,70.61204661700013],[-79.02216549399986,70.60976797100007],[-79.03282630099991,70.594916083],[-79.04010982999992,70.58734772300015],[-79.05256100199995,70.57904694200006],[-79.0988256499999,70.557318427],[-79.11119544199997,70.5482852230001],[-79.11558997299994,70.542181708],[-79.12315833199989,70.52814362200014],[-79.12824459499993,70.52383047100015],[-79.14024817599994,70.521389065],[-79.16429602799988,70.52212148600013],[-79.17609615799995,70.51764557500017],[-79.14252682199992,70.510728257],[-79.14582271999987,70.50665924700003],[-79.1474096339999,70.50324127800012],[-79.1499731109999,70.50014883000013],[-79.15619869699994,70.49705638200005],[-79.14720618399994,70.47455475500006],[-79.14610755099989,70.46539948100015],[-79.14875240799998,70.45612213700011],[-79.15990149599989,70.44310130400014],[-79.1741430329999,70.43671295800003],[-79.18854732999995,70.43219635600015],[-79.20026607999995,70.42479075700008],[-79.21336829299992,70.4208031270001],[-79.23224850199995,70.42450592700014],[-79.26545162699998,70.43842194200002],[-79.2852270169999,70.443264065],[-79.32697506399992,70.44269440300002],[-79.34675045499995,70.44871653900013],[-79.3344213529999,70.45547109600007],[-79.3253881499999,70.45307038000011],[-79.31684322799987,70.44855377800015],[-79.30577551999994,70.44871653900013],[-79.29308020699997,70.45522695500004],[-79.29450436099995,70.45990631700015],[-79.3015844389999,70.46503327000006],[-79.30577551999994,70.47321198100015],[-79.29625403599992,70.49380117400001],[-79.27363033799989,70.5058047550001],[-79.24669348899991,70.51605866100014],[-79.22447669199994,70.53123607000013],[-79.22874915299987,70.53392161700009],[-79.23322506399992,70.540472723],[-79.23810787699989,70.54486725500009],[-79.23534094999994,70.54877350500009],[-79.23066158799992,70.55853913000011],[-79.25165768099987,70.55780670799999],[-79.31322180899991,70.54486725500009],[-79.30370032499991,70.54140859600007],[-79.29511471299992,70.53693268400012],[-79.28697669199988,70.53107330900015],[-79.27904212099992,70.52383047100015],[-79.29723059799991,70.514146226],[-79.3054093089999,70.49819570500007],[-79.31659908799992,70.48322174700014],[-79.34361731699988,70.47662995000017],[-79.35895748599992,70.47980377800003],[-79.39093990799992,70.49396393400015],[-79.40880286399991,70.49705638200005],[-79.42430579299992,70.49225495000015],[-79.4182836579999,70.48126862200009],[-79.40253658799995,70.46967194200009],[-79.38898678299996,70.46295807500003],[-79.40644283799995,70.4398460960001],[-79.41645260299991,70.43793366100012],[-79.43744869699987,70.44183991100012],[-79.4796850249999,70.45709870000009],[-79.5038549469999,70.46067942900005],[-79.5363256499999,70.44464752800017],[-79.57506262899992,70.4362246770001],[-79.58759518099993,70.428208726],[-79.59125729099986,70.411322333],[-79.58189856699994,70.39838288000009],[-79.56513424399992,70.39020416900017],[-79.46930904899988,70.37103913000003],[-79.45661373599992,70.36302317900005],[-79.45014400899993,70.35272858300014],[-79.43586178299991,70.35529205900015],[-79.42174231699991,70.36269765800012],[-79.41563880099991,70.36676666900007],[-79.3742162749999,70.37311432500002],[-79.33141028599991,70.36847565300009],[-79.28978430899994,70.35590241100003],[-79.25861568899995,70.33881256700006],[-79.22472083199989,70.320990302],[-79.1775610019999,70.31061432500009],[-79.12804114499997,70.30923086100002],[-79.08726966099991,70.3183454450001],[-79.08417721299992,70.34105052300005],[-79.04633541599989,70.3425153670001],[-78.9706518219999,70.32514069200012],[-78.94574947799995,70.31411367400007],[-78.92536373599998,70.30206940300015],[-78.86799068899995,70.254828192],[-78.76691646999984,70.19139231999998],[-78.75568600199995,70.18219635600012],[-78.75092525899991,70.17121002800015],[-78.75218665299984,70.14264557500013],[-78.75092525899991,70.13397858300004],[-78.74653072799987,70.12710195500016],[-78.73412024599992,70.11810944200015],[-78.73102779899995,70.11286041900014],[-78.73176021999987,70.10712311400009],[-78.73786373599995,70.09243398600007],[-78.73664303299995,70.08218008000016],[-78.73664303299995,70.07770416900009],[-78.73204505099991,70.07379791900009],[-78.70917721299992,70.06098053600006],[-78.69648189999995,70.05585358300006],[-78.69005286399992,70.05145905200006],[-78.68687903599995,70.04779694200003],[-78.68614661399994,70.04490794499999],[-78.6857397129999,70.04169342700011],[-78.68321692599991,70.03717682500017],[-78.67011471299995,70.02220286700005],[-78.66510982999989,70.01382070500007],[-78.66649329299989,69.99949778899999],[-78.66222083199997,69.97638580900004],[-78.66584225199992,69.9661319030001],[-78.70002193899992,69.93134186400005],[-78.71576900899987,69.92194245000003],[-78.73761959499991,69.91437409100008],[-78.76032467399997,69.90932851800005],[-78.77879798099988,69.90745677299999],[-78.78571529899988,69.90375397300015],[-78.79511471299992,69.8858096370001],[-78.79991614499991,69.87954336100013],[-78.82664954299992,69.87954336100013],[-78.84190833199989,69.8814151060001],[-78.87120520699992,69.89057038],[-78.8880509109999,69.89378489800005],[-79.16024736249997,69.88873932500003],[-79.43244381399992,69.88369375200008],[-79.6808569,69.84857819200012],[-79.71418209499993,69.86273834800012],[-79.72789466099994,69.87189362200003],[-79.75824947799991,69.88035716400007],[-79.77253170499992,69.88694896000013],[-79.78412838399993,69.89809804900015],[-79.79820716099988,69.92316315300015],[-79.8067113919999,69.93475983300009],[-79.81891842399989,69.94440338700004],[-79.83515377499991,69.95343659100014],[-79.85252844999991,69.960109768],[-79.86847896999993,69.96271393400009],[-79.88121497299997,69.96735260600003],[-79.89289303299995,69.9765485700001],[-79.90607662699992,69.98309967699998],[-79.9234106109999,69.9794375670001],[-79.98127193899992,69.95075104400016],[-80.01154537699992,69.94562409100014],[-80.04002844999991,69.95526764500012],[-80.04560299399992,69.96698639500003],[-80.05370032499985,69.96954987200003],[-80.04320227799988,69.98143138200008],[-80.03327389199987,69.99624258000013],[-80.06834876199986,70.00413646000011],[-80.2047826809999,70.01146067900011],[-80.24604244699992,70.00775788000009],[-80.26598059799991,70.00307851800005],[-80.28937740799992,69.99115631700012],[-80.29637610599988,69.98940664300012],[-80.36652584499987,69.99404531500015],[-80.54950924399992,70.04751211100007],[-80.82591712099995,70.05560944199999],[-80.89647376199991,70.07367584800012],[-80.93757076699988,70.07135651200015],[-80.96796627499985,70.065619208],[-81.00914466099994,70.06264883000007],[-81.04548092399992,70.07005442900004],[-81.06110592399992,70.09552643400015],[-81.07152258999992,70.09926992400001],[-81.13617916599995,70.08559804900007],[-81.15827389199991,70.08730703300007],[-81.20250403599988,70.09658437700004],[-81.5653783839999,70.108343817],[-81.60920162699998,70.1203473980001],[-81.70002193899985,70.13361237200013],[-81.73204505099994,70.13397858300004],[-81.75670325399993,70.12970612200014],[-81.76244055899991,70.12287018400004],[-81.7538549469999,70.11196523600016],[-81.73546301999994,70.09552643400015],[-81.68748938699986,70.07412344000012],[-81.57489986899992,70.06867096600008],[-81.53343665299991,70.05145905200006],[-81.45836341099988,70.024115302],[-81.45189368399988,70.01699453300013],[-81.45002193899988,70.00995514500005],[-81.44526119699992,70.00482819200006],[-81.43036861899986,70.00307851800005],[-81.39972896999984,70.01089101800015],[-81.33759518099993,70.03709544499999],[-81.30719967399995,70.03375885600015],[-81.19322669199994,70.00079987200009],[-81.16352291599992,69.98314036699999],[-81.15636145699996,69.973130601],[-81.14696204299995,69.94965241100012],[-81.13959713399996,69.93846263200011],[-81.12458248599992,69.92902252800009],[-81.08686275899996,69.91950104400011],[-81.05394446499987,69.90208567900012],[-80.98534094999985,69.88694896000013],[-80.82787024599989,69.80369700700003],[-80.77818762899989,69.79315827000015],[-80.7703344389999,69.78229401200015],[-80.77155514199993,69.768703518],[-80.77989661399988,69.75600820500013],[-80.79352779899995,69.7471377620001],[-80.83202063699991,69.73309967700013],[-80.92931067599991,69.71482982000006],[-80.95124264199984,69.7150332700001],[-80.96678626199994,69.71918366100006],[-80.97105872299994,69.72455475500011],[-80.96544348899992,69.73053620000003],[-80.95124264199984,69.73615143400004],[-81.08141028599991,69.76679108300014],[-81.12254798099988,69.790757554],[-81.15660559799991,69.81964752800012],[-81.17589270699993,69.82892487200014],[-81.22504635299985,69.83413320500016],[-81.2770889959999,69.84528229400007],[-81.3000382149999,69.85285065300003],[-81.34162350199989,69.87641022300006],[-81.35370846299989,69.88056061400012],[-81.37775631399984,69.88593170800009],[-81.44294186099995,69.91380442900011],[-81.48839270699992,69.92572663000006],[-81.55390377499987,69.92792389500006],[-81.57905025899996,69.93256256700009],[-81.59325110599984,69.94367096600011],[-81.59129798099991,69.95734284100014],[-81.5675756499999,69.96954987200003],[-81.60004635299988,69.9774437520001],[-81.72553463399994,69.96954987200003],[-81.75255286399991,69.97333405200006],[-81.9102270169999,70.03717682500017],[-81.93610592399992,70.040961005],[-81.94493567599997,70.0440127620001],[-81.95103919199997,70.04800039300007],[-81.95417232999992,70.05182526200018],[-81.95612545499998,70.05512116100012],[-81.95860755099991,70.05760325700005],[-82.11823482999995,70.11688873900012],[-82.16759192599994,70.12152741100006],[-82.19139563699994,70.12661367400007],[-82.23505611899992,70.14598216399999],[-82.25348873599995,70.14704010600006],[-82.28661048099991,70.14227936400015],[-82.30406653599997,70.1429710960001],[-82.33311926999994,70.15940989799999],[-82.35472571499994,70.16461823100018],[-82.44318600199993,70.17340729400014],[-82.4689835279999,70.17902252800006],[-82.48619544199991,70.18488190300009],[-82.5064591139999,70.18886953300007],[-82.55394446499994,70.18561432500003],[-82.5718481109999,70.19208405200011],[-82.60309811099995,70.21059804900013],[-82.84455318899988,70.2574730490001],[-82.92162024599995,70.29108307500012],[-82.9628393219999,70.30304596600014],[-83.00556393099993,70.30996328300013],[-83.04792232999992,70.31216054900013],[-82.86204993399993,70.23688385600015],[-82.84382076699987,70.23265208500014],[-82.83564205599993,70.22955963700007],[-82.82966061099992,70.22459544500002],[-82.82017981699991,70.21214427299999],[-82.81517493399987,70.20848216400013],[-82.79222571499989,70.20526764500006],[-82.74262447799987,70.20945872600002],[-82.71894283799995,70.20848216400013],[-82.66108150899993,70.19098541900017],[-82.2460424469999,70.11286041900014],[-82.12824459499987,70.07037995000009],[-82.05870520699995,70.05902741100012],[-81.97227942599994,70.01048411700005],[-81.96898352799991,70.0058454450001],[-81.96947180899988,70.00120677299999],[-81.96703040299985,69.99762604400003],[-81.95518958199989,69.99624258000013],[-81.9426977199999,69.99603913],[-81.93675696499986,69.99506256700012],[-81.8942358059999,69.97549062700013],[-81.8761693999999,69.970933335],[-81.77806555899988,69.96255117400013],[-81.73863684799991,69.95180898600005],[-81.71153723899988,69.93475983300009],[-81.7667943999999,69.90745677299999],[-81.7667943999999,69.90062083500008],[-81.75788326699987,69.89785390800002],[-81.73888098899997,69.88694896000013],[-81.73888098899997,69.87954336100013],[-81.75934811099992,69.87592194199999],[-81.80748450399989,69.89288971600014],[-81.82966061099994,69.8879255230001],[-81.85558020699995,69.88694896000013],[-81.85558020699995,69.87954336100013],[-81.85753333199989,69.86493561400012],[-81.96483313699989,69.84540436400005],[-81.9741918609999,69.86847565300012],[-81.99762936099998,69.87661367400013],[-82.02525794199988,69.874212958],[-82.04735266799987,69.86587148600002],[-82.07542883999989,69.84202708500014],[-82.08149166599986,69.83856842700014],[-82.11436926999997,69.83539459800006],[-82.13007564999992,69.83112213700015],[-82.14354407499991,69.824896552],[-82.12995357999995,69.82306549700003],[-82.1258438789999,69.81806061400007],[-82.1332494779999,69.789536851],[-82.1383764309999,69.78595612200012],[-82.2555639309999,69.80695221600014],[-82.30125891799992,69.80438873900015],[-82.30125891799992,69.81122467700006],[-82.29047604099992,69.81240469000008],[-82.2799779939999,69.81513092700006],[-82.26988684799997,69.819281317],[-82.26024329299992,69.824896552],[-82.27643795499995,69.83079661700013],[-82.29369055899986,69.83226146],[-82.31126868399988,69.8300235050001],[-82.3285619779999,69.824896552],[-82.3285619779999,69.83234284100017],[-82.2965795559999,69.83746979400009],[-82.23237057199995,69.82843659100008],[-82.20502682199988,69.83234284100017],[-82.32563229099985,69.85932038000011],[-82.39447994699992,69.86444733300014],[-82.42475338399993,69.84910716400002],[-82.44147701699987,69.84406159100014],[-82.6444799469999,69.89378489800005],[-82.66401119699987,69.909613348],[-82.69896399599988,69.923041083],[-82.73045813699987,69.92698802300008],[-82.7394506499999,69.91425202000012],[-82.7758276029999,69.92023346600003],[-82.84589596299985,69.943304755],[-82.9102270169999,69.95359935100011],[-83.00011145699997,69.98940664300012],[-83.00934811099995,69.98981354400003],[-83.01952063699989,69.98895905200011],[-83.02928626199991,69.98916250200006],[-83.03734290299988,69.99282461100013],[-83.04047604099995,69.99787018400015],[-83.04246985599988,70.00364817900014],[-83.04548092399997,70.00844961100002],[-83.05162512899994,70.01048411700005],[-83.13695227799991,70.00307851800005],[-83.14549719999994,70.00495026200004],[-83.15599524599992,70.01398346600006],[-83.16523189999987,70.016750393],[-83.17450924399992,70.01642487200017],[-83.23521887899997,70.00315989800005],[-83.24803626199991,70.00397370000015],[-83.25336666599986,70.01361725500011],[-83.26716061099998,70.01654694200015],[-83.35020911399995,69.98314036699999],[-83.48578854099989,69.9738630230001],[-83.57371985599994,69.95359935100011],[-83.6728002589999,69.9463565120001],[-84.02765865799998,69.97785065300009],[-84.05528723899988,69.98940664300012],[-84.07689368399988,69.98639557500003],[-84.3681127589999,69.98749420800006],[-84.53510494699995,70.01048411700005],[-84.69477291599989,70.00657786700005],[-84.74115963399996,70.02024974199999],[-84.8196508449999,70.03034088700015],[-84.83381100199992,70.03595612200014],[-84.84764563699991,70.04938385600006],[-84.87092037699992,70.07880280200014],[-84.81635494699985,70.08909739800005],[-84.79035396999987,70.09955475500014],[-84.78831946499993,70.11286041900014],[-84.81171627499992,70.11871979400007],[-84.84150143099993,70.10944245000015],[-84.8913468089999,70.08218008000016],[-84.95197506399987,70.06655508000006],[-85.14557857999995,70.08559804900007],[-85.15392005099994,70.08746979400003],[-85.17023678299995,70.09601471600014],[-85.17939205599993,70.09857819200006],[-85.19139563699986,70.09845612200009],[-85.22716223899988,70.09243398600007],[-85.27293860599988,70.09422435100008],[-85.34093176999994,70.1088320980001],[-85.36933346299989,70.1092796900001],[-85.44554602799985,70.09662506700002],[-85.51854407499985,70.10602448100003],[-85.80036373599991,70.09983958500008],[-85.8566381499999,70.08954498900006],[-85.87482662699989,70.0719668640001],[-85.85358639199991,70.04987213700004],[-85.82689368399988,70.04987213700004],[-85.79503333199997,70.05923086100007],[-85.60944576699993,70.07843659100003],[-85.53888912699993,70.06150950700014],[-85.48969479099992,70.05760325700005],[-85.4050186839999,70.03864166900003],[-85.3468725249999,70.0322940120001],[-85.23460852799988,69.99624258000013],[-85.2548315089999,69.98891836100013],[-85.59089107999992,70.01683177299999],[-85.73322506399987,69.99485911700008],[-85.78290768099987,69.9951846370001],[-86.0263158844999,70.05432770350014],[-86.26972408799992,70.11347077000003],[-86.52110755099994,70.23065827],[-86.54987545499998,70.23647695500013],[-86.55451412699992,70.247503973],[-86.55370032499991,70.27269114800008],[-86.55793209499993,70.30027903899999],[-86.57721920499995,70.3183454450001],[-86.55671139199988,70.327866929],[-86.55378170499998,70.3424746770001],[-86.56598873599995,70.35529205900015],[-86.5908096999999,70.35932038000011],[-86.5908096999999,70.36676666900007],[-86.57636471299995,70.37303294500005],[-86.51878821499989,70.41795482000005],[-86.4952286449999,70.42963288000006],[-86.36335201699984,70.45262278900013],[-86.32689368399988,70.46303945500001],[-86.29698645699992,70.47744375200007],[-86.29259192599991,70.493353583],[-86.31232662699995,70.50739166900014],[-86.34125729099986,70.51984284100017],[-86.37092037699989,70.52659739800009],[-86.39281165299992,70.52383047100015],[-86.35077877499994,70.50128815300015],[-86.3375951809999,70.48965078300014],[-86.37055416599989,70.47622304900007],[-86.38788814999987,70.47207265800004],[-86.40583248599992,70.46979401200015],[-86.4051000639999,70.46491120000009],[-86.41161048099988,70.46255117400011],[-86.46971594999992,70.44989655200006],[-86.50365149599989,70.43732330900015],[-86.55699622299994,70.42914459800005],[-86.5808813139999,70.428208726],[-86.63178463399993,70.39411041900017],[-86.63471432199995,70.39093659100011],[-86.63707434799991,70.38605377800003],[-86.64106197799987,70.38178131700012],[-86.66376705599993,70.3801130230001],[-86.67210852799988,70.37177155200014],[-86.66454016799995,70.35602448100016],[-86.65269934799989,70.33856842700011],[-86.63923092399989,70.32514069200012],[-86.85822506399992,70.32514069200012],[-86.88349361899986,70.335638739],[-86.89867102799985,70.35932038000011],[-86.86017818899987,70.36863841400007],[-86.77851314999987,70.3758812520001],[-86.74164791599989,70.38719310100008],[-86.79023189999995,70.39484284100008],[-86.90184485599991,70.38507721600014],[-86.94025631399984,70.40770091400013],[-86.87193762899993,70.40770091400013],[-86.89325924399992,70.422552802],[-86.96788489499994,70.42304108300007],[-86.9948624339999,70.435003973],[-86.97577877499992,70.44147370000012],[-86.93451900899987,70.44944896000005],[-86.91978919199997,70.45612213700011],[-86.91978919199997,70.46295807500003],[-86.97459876199989,70.47272370000017],[-87.03144283799992,70.46849192900005],[-87.13886471299988,70.44183991100012],[-87.13463294199994,70.41657135600015],[-87.16942298099991,70.40473053600003],[-87.24872799399995,70.39411041900017],[-87.24054928299995,70.38141510600009],[-87.22826087099989,70.37962474200009],[-87.20030676999994,70.38719310100008],[-87.04743404899992,70.384466864],[-87.00975501199986,70.37445709800004],[-86.97443600199992,70.35309479400014],[-86.98289954299986,70.34186432500015],[-86.9852188789999,70.33071523600013],[-86.98058020699992,70.32200755400005],[-86.96821041599986,70.3183454450001],[-86.97447669199991,70.31378815300015],[-86.98802649599989,70.29783763200005],[-86.98383541599995,70.29559967700004],[-86.97923743399991,70.29230377800003],[-86.97443600199992,70.29043203300016],[-87.00495357999995,70.28327057500003],[-87.42503821499994,70.31525299700003],[-87.48875891799992,70.32884349199999],[-87.77973385299987,70.33197663000006],[-87.78766842399992,70.32884349199999],[-87.79499264199984,70.32208893400004],[-87.79816646999988,70.31525299700003],[-87.79369055899994,70.31216054900013],[-87.64098059799997,70.29889557500009],[-87.61188717399992,70.29043203300016],[-87.61188717399992,70.2842471370001],[-87.76862545499992,70.247951565],[-87.85252844999991,70.237982489],[-87.93394934799997,70.25006745000009],[-87.93158932199992,70.25283437700007],[-87.9290665359999,70.25633372600005],[-87.92560787699992,70.26019928600006],[-87.92035885299993,70.26373932500003],[-87.94123287699989,70.2667910830001],[-88.0302221339999,70.29490794500013],[-88.15038001199989,70.30011627800003],[-88.19599361899992,70.31635163000006],[-88.24156653599988,70.32391998900003],[-88.26292883999994,70.33197663000006],[-88.22785396999986,70.35049062700007],[-88.2185766269999,70.35309479400014],[-88.19469153599994,70.35309479400014],[-88.19440670499989,70.35081614799999],[-88.19489498599998,70.34113190300003],[-88.19469153599994,70.33881256700006],[-88.16844641799992,70.33551666900003],[-88.08454342399992,70.33881256700006],[-88.06147213399996,70.33454010600015],[-88.00226803299995,70.30467357000008],[-87.97215735599994,70.30076732000008],[-87.93980872299991,70.30292389500006],[-87.8793839179999,70.3183454450001],[-87.9040014309999,70.3287621110001],[-87.95726477799988,70.33478424700009],[-88.14130611899988,70.39590078300016],[-88.33714758999986,70.42544179900001],[-88.40501868399986,70.45132070500013],[-88.41742916599989,70.44940827000006],[-88.42890377499992,70.44456614799999],[-88.44452877499992,70.44183991100012],[-88.69408118399986,70.46503327000006],[-88.7687475249999,70.48403554900015],[-88.90721594999992,70.54486725500009],[-88.93061275899991,70.56183502800015],[-89.00230872299994,70.63426341399997],[-89.00361080599993,70.64276764500012],[-89.00397701699984,70.65094635600003],[-89.01024329299987,70.66095612200012],[-89.0219213529999,70.66791412999999],[-89.06489010299995,70.68146393400015],[-89.06871497299997,70.686468817],[-89.07148189999992,70.69354889500005],[-89.07599850199998,70.69985586100002],[-89.08531653599991,70.7025820980001],[-89.09166419199993,70.70368073100003],[-89.13121497299991,70.71881745000003],[-89.16954505099991,70.72679271000008],[-89.29845130099989,70.77741120000015],[-89.33177649599989,70.79877350500011],[-89.36628170499989,70.818793036],[-89.41547604099992,70.87885163],[-89.44908606699994,70.90802643400004],[-89.4276830719999,70.92234935100011],[-89.40245520699992,70.92523834800015],[-89.37633216099997,70.92544179900001],[-89.3217667309999,70.93988678600006],[-89.20885169199994,70.94212474200005],[-89.20885169199994,70.94961172100001],[-89.21568762899993,70.94961172100001],[-89.21568762899993,70.95579661699999],[-89.19615637899996,70.96165599200013],[-89.18842525899996,70.962591864],[-89.20470130099989,70.9747582050001],[-89.22642981699995,70.98273346600014],[-89.33075924399992,71.00287506700009],[-89.46471106699991,71.05565013200008],[-89.4894506499999,71.0594750020001],[-89.50658118399994,71.06435781500006],[-89.53803463399996,71.08661530200003],[-89.55772864499988,71.09296295800014],[-89.22760982999989,71.077093817],[-89.20885169199994,71.06565989800005],[-89.21324622299991,71.06281159100001],[-89.21727454299989,71.05678945500001],[-89.22191321499992,71.0519880230001],[-89.17597408799995,71.03754303600006],[-89.15318762899992,71.03314850500009],[-89.12633216099994,71.03156159100014],[-88.92088782499988,71.05255768400009],[-88.90192623599995,71.05023834800011],[-88.8701879549999,71.04222239799999],[-88.8383276029999,71.03774648600002],[-88.80711829299992,71.038275458],[-88.74848385299987,71.04922109600007],[-88.64240475199992,71.05459219000004],[-88.61921139199988,71.0519880230001],[-88.57221432199987,71.03969961100016],[-88.45990963399996,71.03522370000009],[-88.41051184799989,71.02741120000012],[-88.37287350199989,71.01105377800008],[-88.36615963399996,71.00259023600013],[-88.35997473899987,70.981594143],[-88.35541744699992,70.97260163],[-88.34162350199992,70.96246979400003],[-88.32494055899988,70.95844147300006],[-87.89301510299995,70.93528880400011],[-87.81391354099995,70.95311107000009],[-87.78685462099992,70.95579661699999],[-87.72565670499998,70.95449453300007],[-87.70771236899992,70.959173895],[-87.68809973899997,70.96185944200009],[-87.62535559799989,70.957424221],[-87.58674068899992,70.94847239799999],[-87.52928626199991,70.95579661699999],[-87.35859127499992,70.94961172100001],[-87.37909908799989,70.94961172100001],[-87.35883541599986,70.94912344000012],[-87.34618079299989,70.95868561400003],[-87.32787024599995,70.98680247600011],[-87.3068334629999,71.00226471600003],[-87.28241939999995,71.00934479400009],[-87.22826087099989,71.01105377800008],[-87.05903072799995,70.99005768400015],[-87.02806555899991,70.99005768400015],[-87.00230872299997,70.996771552],[-87.04926510299988,71.00995514500015],[-87.33027096299989,71.03969961100016],[-87.33136959499993,71.04413483300013],[-87.33128821499994,71.04901764499999],[-87.33751380099991,71.0519880230001],[-87.34723873599994,71.05149974200013],[-87.36579342399995,71.04629140800013],[-87.37287350199992,71.045152085],[-87.39350338399996,71.04889557500002],[-87.40501868399988,71.0558942730001],[-87.41401119699988,71.06439850500006],[-87.4268692699999,71.07245514500009],[-87.50385494699992,71.07904694200006],[-87.51622473899994,71.08246491100006],[-87.54120846299986,71.09503815300015],[-87.65253658799989,71.11786530200008],[-87.68012447799991,71.11969635600013],[-87.69176184799991,71.12661367400015],[-87.74901282499988,71.14077383000007],[-87.83885657499988,71.18626536700005],[-87.85029049399992,71.19403717700006],[-87.85212154899992,71.20262278900007],[-87.82648678299995,71.22166575700005],[-87.82526607999992,71.231390692],[-87.83202063699986,71.23948802300013],[-87.84459387899994,71.24380117400013],[-87.82575436099992,71.25507233300011],[-87.81794186099992,71.25747304900007],[-87.86412512899993,71.27484772300015],[-87.92064368399986,71.27000560100008],[-88.02269446499994,71.237005927],[-88.06696529899989,71.212836005],[-88.08112545499992,71.20966217700011],[-88.1054174469999,71.212347723],[-88.18101966099991,71.22947825700005],[-88.51105709499993,71.24591705900004],[-88.61579342399996,71.237005927],[-89.01500403566655,71.26767270200004],[-89.41421464733324,71.29833947700016],[-89.81342525899993,71.32900625200001],[-89.85313880099991,71.3393415390001],[-89.88141842399996,71.35130442900005],[-89.89875240799998,71.36253489800005],[-89.91120357999989,71.37759023600006],[-89.92450924399992,71.400824286],[-89.93199622299997,71.40704987200014],[-89.95380611899992,71.41107819200012],[-89.9630020819999,71.41510651200018],[-89.96552486899992,71.41844310100011],[-89.96703040299988,71.42523834800012],[-89.98082434799996,71.44529857000002],[-89.98863684799997,71.45156484600015],[-90.00397701699993,71.45604075700011],[-89.99669348899991,71.46576569200006],[-89.99225826699984,71.46824778899999],[-89.98224850199995,71.46971263200005],[-89.98680579299989,71.4949404970001],[-89.99339758999987,71.50641510600015],[-90.0102026029999,71.517523505],[-89.97386633999989,71.51813385600003],[-89.95710201699987,71.52313873900009],[-89.95929928299995,71.53489817900005],[-89.98969479099992,71.56590403899999],[-89.99091549399995,71.57562897300012],[-90.03388424399989,71.58600495000003],[-90.04491126199994,71.59666575700008],[-90.03876705599987,71.6042341170001],[-89.99681555899988,71.61001211100007],[-89.98859615799998,71.61725495000009],[-89.99315344999992,71.62360260600002],[-90.00141354099992,71.629380601],[-90.00397701699993,71.63483307500003],[-89.97663326699987,71.657945054],[-89.90326900899993,71.68056875200016],[-89.87299557199992,71.70311107000013],[-89.88048255099991,71.70990631700006],[-89.83507239499991,71.72231679900008],[-89.82030188699991,71.73224518400009],[-89.83202063699991,71.74347565300009],[-89.83202063699991,71.75092194200006],[-89.8224584629999,71.75104401200004],[-89.79792232999992,71.75775788],[-89.79792232999992,71.764593817],[-89.82896887899992,71.76740143400015],[-89.85907955599994,71.7750511740001],[-89.91401119699995,71.798732815],[-89.90538489499993,71.80133698100009],[-89.88048255099991,71.81232330900015],[-89.89728756399992,71.81883372600005],[-89.93635006399987,71.81704336100007],[-89.9521378249999,71.82290273600002],[-89.95771236899992,71.83209870000007],[-89.95685787699992,71.84039948100015],[-89.95441646999988,71.84760163],[-89.95555579299992,71.85325755399998],[-89.96812903599991,71.85911692900014],[-90.00300045499995,71.868353583],[-90.0102026029999,71.87783437700001],[-90.01435299399992,71.89052969000006],[-90.02485104099989,71.89419179900001],[-90.03840084499987,71.89468008000001],[-90.10468502499992,71.91632721600008],[-90.11860104099989,71.9288597680001],[-90.09923255099997,71.94611237200009],[-90.08946692599994,71.94916413],[-90.07909094999992,71.95010000200007],[-90.05797278599994,71.94953034100011],[-90.0520727199999,71.950873114],[-90.0507299469999,71.954250393],[-90.04967200399994,71.958685614],[-90.04491126199994,71.96320221600014],[-90.01085364499994,71.98533763200011],[-89.99653072799995,71.99046458500013],[-90.00531979099992,72.00600820500013],[-90.0102026029999,72.010931708],[-89.99653072799995,72.01776764500003],[-90.00397701699993,72.02460358300011],[-89.96922766799986,72.03888580900004],[-89.99872799399992,72.06488678600003],[-89.99254309799997,72.07160065300015],[-89.76170813699987,72.12555573100015],[-89.73615475199989,72.127630927],[-89.71564693899987,72.12287018400009],[-89.6942846339999,72.11481354400014],[-89.67328854099995,72.1132673200001],[-89.65392005099994,72.127630927],[-89.65644283799995,72.13922760600009],[-89.5982559889999,72.15110911700005],[-89.57819576699985,72.16242096600006],[-89.58576412699992,72.17914459800006],[-89.61762447799993,72.18471914300005],[-89.68122311099992,72.1828473980001],[-89.67503821499994,72.1828473980001],[-89.7706192699999,72.16242096600006],[-89.79242916599989,72.16429271000003],[-89.83250891799992,72.17926666900006],[-89.90094967399993,72.18976471600011],[-89.90229244699995,72.195054429],[-89.8998510409999,72.21133047100004],[-89.90094967399993,72.217027085],[-89.91437740799995,72.23037344],[-89.92857825399997,72.24070872600011],[-89.9630020819999,72.25739166900014],[-89.93805904899997,72.26422760600018],[-89.93285071499987,72.27049388200011],[-89.95331783799995,72.30646393400009],[-89.95555579299992,72.31232330900006],[-89.95067298099985,72.333726304],[-89.93822180899994,72.34686920800006],[-89.90436764199985,72.37067291900014],[-89.89012610599988,72.37811920800011],[-89.85273189999992,72.38666413000014],[-89.83885657499992,72.39516836100006],[-89.83307857999998,72.40298086100007],[-89.8345434239999,72.40509674700017],[-89.84174557199987,72.40550364799999],[-89.89952551999988,72.41730377800015],[-89.91295325399989,72.42597077000015],[-89.90094967399993,72.44293854400003],[-89.89911861899989,72.43850332200005],[-89.88711503799996,72.4291852890001],[-89.87885494699988,72.42658112200012],[-89.84886633999992,72.42393626500002],[-89.7875056629999,72.42426178600014],[-89.78425045499998,72.4286970070001],[-89.87079830599991,72.43036530200011],[-89.88235429599986,72.43260325700011],[-89.8887426419999,72.44009023600007],[-89.88768469999994,72.44908274900008],[-89.87433834499991,72.45368073100002],[-89.8144018219999,72.45921458500004],[-89.80060787699998,72.4658877620001],[-89.79063880099989,72.47467682500017],[-89.78425045499998,72.48395416900001],[-89.77656002499995,72.5074730490001],[-89.7736710279999,72.52114492400004],[-89.77399654899995,72.52863190300009],[-89.78172766799985,72.53929271000011],[-89.78612219999994,72.55052317900011],[-89.78705807199992,72.56199778900006],[-89.78425045499998,72.57330963700007],[-89.75324459499983,72.61082591400007],[-89.73505611899995,72.62124258000016],[-89.70954342399995,72.62897370000015],[-89.68285071499994,72.63369375200007],[-89.66136633999992,72.63471100500014],[-89.61375891799992,72.62103913],[-89.58747311099992,72.61664459800012],[-89.56822669199997,72.62421295800006],[-89.54853268099993,72.640082098],[-89.54841061099995,72.64887116100006],[-89.56513424399989,72.66205475500011],[-89.54487057199987,72.6690127620001],[-89.49311275899994,72.66400788000006],[-89.46833248599998,72.66889069200012],[-89.49852454299989,72.68512604400017],[-89.56696529899993,72.70010000200001],[-89.58564205599993,72.72410716400005],[-89.57758541599988,72.73265208500008],[-89.57188880099991,72.74453359600012],[-89.56452389199993,72.75641510600018],[-89.55150305899993,72.76508209800005],[-89.57233639199993,72.7853050800001],[-89.57819576699985,72.79242584800012],[-89.5585424469999,72.78766510600003],[-89.50304114499993,72.78558991100012],[-89.48253333199989,72.78213125200004],[-89.42735755099997,72.76508209800005],[-89.40697180899988,72.76312897300012],[-89.36676998599998,72.76585521],[-89.34540768099993,72.76508209800005],[-89.31126868399993,72.75495026200012],[-89.29438229099995,72.75263092700006],[-89.27656002499987,72.75824616100006],[-89.28180904899995,72.76341380400005],[-89.29076087099989,72.778753973],[-89.27961178299994,72.78046295800003],[-89.26939856699991,72.78318919499998],[-89.25971432199987,72.78709544499999],[-89.24982662699995,72.79242584800012],[-89.2708227199999,72.793931382],[-89.33177649599989,72.80609772300006],[-89.37446041599992,72.807318427],[-89.39391028599991,72.8115908870001],[-89.41059322799995,72.82318756700012],[-89.41364498599992,72.83087799700006],[-89.40900631399992,72.83661530200011],[-89.40094967399997,72.84149811400009],[-89.39386959499993,72.84699127800012],[-89.3930557929999,72.84686920800014],[-89.37999426999991,72.85919830900009],[-89.38019771999987,72.86066315300015],[-89.33665930899986,72.87270742400007],[-89.3208715489999,72.88231028900005],[-89.33177649599989,72.89545319199999],[-89.30585689999988,72.91030508000016],[-89.29804439999988,72.92072174700014],[-89.29828854099992,72.93642812700001],[-89.30724036399997,72.94672272300012],[-89.34113521999993,72.95856354400007],[-89.35566158799985,72.96710846600003],[-89.3606664699999,72.98016998899999],[-89.35383053299996,72.99290599200003],[-89.34019934799994,73.0038923200001],[-89.32494055899988,73.01154205900004],[-89.30146236899989,73.0186221370001],[-89.27782141799989,73.02240631700012],[-89.25385494699992,73.02265045800006],[-89.22935950399989,73.018988348],[-89.23216712099995,73.0147158870001],[-89.23517818899984,73.0129255230001],[-89.2430313789999,73.01154205900004],[-89.22370357999989,73.00991445500001],[-89.21491451699991,73.01325104400003],[-89.21808834499988,73.01972077000012],[-89.23468990799995,73.0275739600001],[-89.31187903599988,73.0462914080001],[-89.30443274599992,73.0462914080001],[-89.31187903599988,73.05247630400005],[-89.30085201699984,73.06183502800009],[-89.27611243399988,73.07200755400014],[-89.26349850199998,73.07977936400015],[-89.25719153599994,73.08746979400014],[-89.24864661399991,73.10602448100015],[-89.2430313789999,73.11456940300009],[-89.2184545559999,73.131740627],[-89.18980872299994,73.13914622600002],[-89.12568111899989,73.14809804900013],[-89.13996334499987,73.14813873900012],[-89.18089758999992,73.1555036480001],[-89.1734513009999,73.16657135600015],[-89.16173255099994,73.177639065],[-89.14753170499992,73.18622467700003],[-89.11432857999992,73.19196198100018],[-89.10619055899988,73.19757721600007],[-89.10118567599994,73.20453522300006],[-89.09223385299993,73.21076080900004],[-89.04120846299992,73.21893952000012],[-88.9368383449999,73.20880768400018],[-88.88670813699989,73.21698639500009],[-88.9074193999999,73.22500234600011],[-88.9574682279999,73.22280508000013],[-88.98094641799989,73.22573476800007],[-89.03343665299994,73.24103424700003],[-89.05121822799993,73.25169505400005],[-88.9618627589999,73.28974030200006],[-88.91588294199994,73.30182526200015],[-88.8628637359999,73.306341864],[-88.85212154899989,73.30418528900009],[-88.83320064999987,73.29482656500006],[-88.82123775899993,73.29266998900005],[-88.74958248599992,73.29266998900005],[-88.64875240799995,73.28070709800012],[-88.61921139199988,73.28583405200006],[-88.6481420559999,73.29621002800015],[-88.83324133999986,73.32355377800003],[-88.8594457669999,73.33368561400007],[-88.84284420499992,73.34780508000001],[-88.78404700399994,73.36546458500011],[-88.76012122299997,73.378078518],[-88.7255346339999,73.40257396000013],[-88.68748938699989,73.42304108299999],[-88.58775794199997,73.45404694200012],[-88.51805579299989,73.46116771000008],[-88.4977514309999,73.46649811400013],[-88.48888098899994,73.47418854400014],[-88.48615475199998,73.48069896000005],[-88.4796036449999,73.48867422100001],[-88.47179114499991,73.49534739800008],[-88.45482337099992,73.50185781500006],[-88.41376705599993,73.52545807500007],[-87.99543209499984,73.65574778900005],[-87.85374915299994,73.68390534100003],[-87.7644750639999,73.71674225500014],[-87.58617102799985,73.73725006700009],[-87.43464107999992,73.76544830900015],[-87.29828854099989,73.77033112200003],[-87.13410396999987,73.80272044500013],[-86.87608801999988,73.81879303600012],[-86.71418209499986,73.847398179],[-86.55842037699989,73.85529205900015]]],[[[-99.8309539479999,73.89691803600014],[-99.8002736099999,73.87832265800012],[-99.78904314099991,73.868068752],[-99.77305192999991,73.87677643400009],[-99.75803728199989,73.872056382],[-99.72898454699991,73.85309479400017],[-99.70127458599991,73.84764232000005],[-99.5147104589999,73.83392975500011],[-99.49509782899993,73.82697174700003],[-99.46417334899989,73.80776601800007],[-99.4463917739999,73.79975006700012],[-99.4277963959999,73.79791901200007],[-99.41038103199993,73.80019765800002],[-99.39312842799984,73.79954661700008],[-99.35504248999985,73.77692291900011],[-99.21840511999996,73.73944733300009],[-99.20619808899988,73.73151276200011],[-99.2096160579999,73.71930573100002],[-99.22288103199993,73.71112702000012],[-99.23826189099988,73.70441315300009],[-99.24778337499986,73.69672272300005],[-99.22837419599995,73.69635651200015],[-99.19122413099986,73.69025299700014],[-99.17954607099995,73.6905785180001],[-99.16339209899988,73.69537995000017],[-99.15859066699991,73.70848216400005],[-99.15655616199989,73.72553131699999],[-99.14854021099984,73.7414411480001],[-99.12864274999994,73.75177643400004],[-99.10325212499991,73.75429922100012],[-99.05417985999986,73.75136953300002],[-98.91469418299995,73.76398346600011],[-98.83860368799986,73.76166413000014],[-98.79596045899993,73.73773834800006],[-98.7891245209999,73.73773834800006],[-98.77455746399988,73.753607489],[-98.74741716499994,73.76487864799999],[-98.71628923499986,73.77130768400009],[-98.68984066699988,73.772650458],[-98.68609717799987,73.77252838700012],[-98.67917985999985,73.77741120000009],[-98.60313005499987,73.78058502800015],[-98.53489274999995,73.79413483300011],[-98.0965382579999,73.81830475500011],[-98.04612321899987,73.83710358300009],[-97.97690935199998,73.84857819200012],[-97.95204769799992,73.86554596600008],[-97.9301564219999,73.88568756700012],[-97.89841814099995,73.90224844],[-97.90464372699988,73.90224844],[-97.77390642199995,73.91889069200015],[-97.73329769799993,73.90900299700006],[-97.75791521099987,73.89744700700011],[-97.81182959899988,73.881048895],[-97.83575538099983,73.868068752],[-97.80381364899992,73.85936107000012],[-97.76829118799986,73.86326732000013],[-97.69919939099994,73.8823102890001],[-97.6133839609999,73.89545319200009],[-97.57045590199994,73.89370351800008],[-97.4612436619999,73.86517975500009],[-97.26035661799992,73.861232815],[-97.19370622699992,73.84747955900018],[-97.16135759399992,73.83470286700013],[-97.06882829699992,73.770453192],[-97.0412404069999,73.75885651200018],[-96.9834604589999,73.74884674700012],[-96.95640153999993,73.73729075700008],[-96.94504899999987,73.71381256700003],[-96.93931169599989,73.6948102890001],[-96.93821306299986,73.68683502800015],[-96.9730031019999,73.66266510600015],[-96.9695851329999,73.64081452],[-96.99473161799997,73.62592194200015],[-97.17197771099987,73.58926015800013],[-97.1778370859999,73.5738792990001],[-97.22003272399994,73.55597565300002],[-97.2776906019999,73.55475495000002],[-97.42478532899986,73.584662177],[-97.44858903999994,73.58515045799999],[-97.45896501599995,73.577297268],[-97.45546566699994,73.56452057500013],[-97.43833513299992,73.5436058610001],[-97.43170264599985,73.53229401200012],[-97.48459978199992,73.52106354400003],[-97.59194027699996,73.54266998900012],[-97.64394222999992,73.53969961100002],[-97.6310841569999,73.52602773600007],[-97.63539730799991,73.5163028020001],[-97.6474415789999,73.50787995000015],[-97.65757341499997,73.49811432500003],[-97.66355485999989,73.490464585],[-97.6682749119999,73.48631419500005],[-97.66851905299984,73.48212311400012],[-97.66135759399988,73.47418854400014],[-97.64805192999988,73.46564362200006],[-97.63222347999994,73.46039459800006],[-97.61570329699987,73.45783112200014],[-97.59983415699995,73.45718008000001],[-97.55173845399989,73.46800364799999],[-97.49827165699995,73.48908112200003],[-97.44504899999987,73.502630927],[-97.39752295899986,73.49135976800008],[-97.40500993799992,73.48444245000009],[-97.37847998999987,73.47329336100006],[-97.34804379199991,73.46954987200003],[-97.22019548499989,73.47748444199999],[-97.18320817999987,73.472357489],[-97.16477556299992,73.44969310100014],[-97.18642269799992,73.44432200700008],[-97.25413103199995,73.43610260600018],[-97.23130388299984,73.42792389500006],[-97.18381853199992,73.42137278899999],[-97.16477556299992,73.40875885600009],[-97.17100114899996,73.40875885600009],[-97.1648569429999,73.40595123900006],[-97.15049333599983,73.39508698100013],[-97.1588348079999,73.39093659100003],[-97.16526384399992,73.38617584800012],[-97.1778370859999,73.37466054900001],[-97.1727101329999,73.35895416900003],[-97.19366553699984,73.35126373900003],[-97.22304379199994,73.35097890800007],[-97.2656056409999,73.36737702000009],[-97.29514665699986,73.36644114800002],[-97.58909196899992,73.32005442900014],[-97.66510108399983,73.32062409100011],[-97.6578582449999,73.31240469],[-97.67856950799992,73.309068101],[-97.73329769799993,73.306341864],[-97.82826840199988,73.278265692],[-97.84999691699994,73.26536692899998],[-97.85382178699987,73.25861237200014],[-97.85532732099992,73.25043366100014],[-97.85903011999994,73.24249909100008],[-97.86899919599995,73.23627350500011],[-98.18931169599992,73.11676666900009],[-98.23158871399994,73.08832428600006],[-98.34861345399986,73.043646552],[-98.4105437919999,73.03656647300012],[-98.4940398859999,73.01788971600014],[-98.51475114899992,73.00470612200012],[-98.47491553699993,73.00161367400013],[-98.45538428699984,72.9957542990001],[-98.4452931409999,72.98480866100012],[-98.44785661799989,72.979681708],[-98.47320655299993,72.96369049700012],[-98.4422413829999,72.95221588700015],[-98.43162126599995,72.94342682500007],[-98.43906755499992,72.933050848],[-98.4491993909999,72.92381419500013],[-98.45298357099989,72.91225820500001],[-98.45273942999987,72.88491445500011],[-98.44618832299997,72.872503973],[-98.43194678699987,72.86302317900002],[-98.4175831799999,72.86102936400006],[-98.41111345399987,72.87124258000001],[-98.40924170899993,72.88540273600002],[-98.40378923499988,72.89618561400012],[-98.39532569299983,72.90485260600003],[-98.38413591499993,72.91217682500003],[-98.31553239899992,72.94383372600002],[-98.26772152699988,72.97736237200006],[-98.22304379199991,72.99237702000006],[-98.12668962499993,73.01284414300012],[-98.09023129199994,73.03266022300014],[-98.07476905299983,73.02448151200004],[-98.05479021099985,73.02627187700004],[-98.01389665699992,73.03949616100006],[-97.98516944299988,73.044134833],[-97.87437028999992,73.04775625200016],[-97.83681332299989,73.04140859600004],[-97.66074724299995,73.03668854400011],[-97.25596208599993,72.9620628930001],[-97.22621761999991,72.93642812700001],[-97.24070329699995,72.938137111],[-97.25071306299992,72.93500397300015],[-97.25364274999995,72.927476304],[-97.24668474299997,72.91596100500006],[-97.26267595399986,72.88849518400009],[-97.27382504199987,72.87872955900015],[-97.29111833599988,72.87498607000013],[-97.41860043299988,72.86749909100017],[-97.41860043299988,72.86066315300015],[-97.26625668299994,72.854437567],[-97.21938168299988,72.84023672100007],[-97.20806983399989,72.833726304],[-97.17722673499993,72.811224677],[-97.17100114899996,72.80231354400014],[-97.1648976329999,72.78514232000013],[-97.14963884399992,72.78156159100014],[-97.1095184019999,72.78558991100012],[-97.09080095399995,72.782660223],[-97.07769873999987,72.77728913000014],[-97.0348927499999,72.74127838700018],[-97.02561540699992,72.72947825700011],[-97.03098649999988,72.72410716400005],[-97.11293636999991,72.69993724200005],[-97.12803239899992,72.690578518],[-97.18528337499987,72.66889069200012],[-97.1761281019999,72.65326569200015],[-97.17100114899996,72.64842357000008],[-97.1766163829999,72.647447007],[-97.18666683899994,72.64362213700018],[-97.19211931299989,72.64223867400001],[-97.18788754199997,72.64061107],[-97.1778370859999,72.63471100500014],[-97.1939096779999,72.61505768400009],[-97.15940446899985,72.60736725500006],[-97.10683285499994,72.60822174700017],[-97.06858415699988,72.61424388200008],[-96.93202816699987,72.67572663000006],[-96.71051123999985,72.71482982000002],[-96.65907894799994,72.7140160180001],[-96.6368621519999,72.720404364],[-96.6027638439999,72.73749420800006],[-96.59657894799992,72.74628327000012],[-96.61611019799989,72.75202057500009],[-96.53757829699987,72.75202057500009],[-96.52968441699991,72.73932526200004],[-96.5219532969999,72.72988515800002],[-96.51365251599991,72.72410716400005],[-96.53086442999984,72.71588776200015],[-96.57053728199995,72.70465729400014],[-96.58876644799992,72.69684479400014],[-96.57265316699994,72.68854401200018],[-96.45225114899992,72.64223867400001],[-96.45872087499993,72.61985911699998],[-96.44871110999993,72.59638092700011],[-96.42832536799995,72.57672760600015],[-96.40378923499992,72.56586334800006],[-96.41363623999987,72.55731842700006],[-96.43186540699993,72.54779694200006],[-96.43857927399998,72.53856028899999],[-96.42690121399987,72.53937409100011],[-96.39902849299995,72.54511139500006],[-96.39019873999986,72.54535553600012],[-96.37929379199991,72.54010651200002],[-96.37343441699994,72.53339264500009],[-96.36895850599988,72.52594635600012],[-96.36220394799994,72.51805247600014],[-96.33469743799992,72.49823639500012],[-96.32501319299988,72.48598867400015],[-96.3212697039999,72.46686432500009],[-96.31541032899987,72.44879791900014],[-96.30556332299997,72.43667226800007],[-96.30361019799992,72.42674388200008],[-96.3212697039999,72.41567617400013],[-96.33925472999996,72.41217682500003],[-96.37929379199991,72.41347890800013],[-96.39849952099988,72.4101423200001],[-96.40761410499994,72.40521881700015],[-96.41371761999994,72.39911530200004],[-96.41860043299991,72.39301178600009],[-96.4242970469999,72.3877627620001],[-96.44114274999988,72.37726471600003],[-96.45994157899995,72.36904531500012],[-96.4687306409999,72.36713288000006],[-96.49631853199992,72.36717357000005],[-96.50522966499994,72.365668036],[-96.5098683359999,72.36200592700006],[-96.5137745859999,72.35773346600006],[-96.52048845399992,72.35419342700006],[-96.66440935199992,72.31826406500006],[-96.68809099299995,72.31745026200015],[-96.7402150159999,72.32632070500001],[-96.87681169599995,72.32632070500001],[-96.84165544599988,72.312933661],[-96.7184864999999,72.2995466170001],[-96.64585466499992,72.27773672100015],[-96.60658871399991,72.27240631700009],[-96.58193051099991,72.28530508000001],[-96.57224626599995,72.28213125200013],[-96.56500342799993,72.27806224199998],[-96.55942888299992,72.2723656270001],[-96.55466814099992,72.26422760600018],[-96.57037452099988,72.25861237200017],[-96.61611019799989,72.25116608299999],[-96.59128923499995,72.24188873900015],[-96.57411801099991,72.23834870000013],[-96.55747575799985,72.23956940300009],[-96.53416032899986,72.24433014500009],[-96.53375342799987,72.22459544500005],[-96.52659196899992,72.19700755400014],[-96.51471045899987,72.17072174700003],[-96.49998064099985,72.15497467700006],[-96.50689795899987,72.15497467700006],[-96.48980811499992,72.14557526200004],[-96.48484392199985,72.12848541900009],[-96.4891163829999,72.10927969000012],[-96.49998064099985,72.09349192899998],[-96.52842302399989,72.08161041900006],[-96.8692840269999,72.04511139500009],[-96.84434099299996,72.03831614800005],[-96.8231007579999,72.03693268400018],[-96.77716163099991,72.03888580900004],[-96.74912614899992,72.035589911],[-96.6939096779999,72.02106354400014],[-96.6645314219999,72.01776764500003],[-96.51576840199989,72.04218170800004],[-96.49322608399983,72.02802155200014],[-96.49884131799985,71.99640534100013],[-96.51499528999987,71.97101471600003],[-96.54075212499991,71.95453522300014],[-96.57509457299987,71.94953034100011],[-96.58770850599987,71.95197174700006],[-96.61236670899987,71.96116771000011],[-96.62632341499994,71.96320221600014],[-96.6394663179999,71.96100495000015],[-96.66465349299995,71.95160553600012],[-96.69993181299989,71.94647858300011],[-96.76694841499989,71.92226797100001],[-96.76694841499989,71.91535065300012],[-96.71738786799993,71.90436432500013],[-96.66656592799993,71.91303131700006],[-96.61456397399985,71.927923895],[-96.56150407899995,71.93585846600017],[-96.51890153999989,71.93707916900009],[-96.50132341499994,71.93146393400009],[-96.49322608399983,71.91535065300012],[-96.55967302399995,71.83982982],[-96.58876644799992,71.82074616100003],[-96.62392269799989,71.80975983300006],[-96.71641130499988,71.79743073100009],[-96.73765153999997,71.79905833500011],[-96.74644060199992,71.81610748900009],[-96.7383839609999,71.828558661],[-96.71921892199992,71.83454010600012],[-96.67755225599987,71.83966705900004],[-96.7085581149999,71.85464101800007],[-96.73964535499991,71.85236237200009],[-96.7691049899999,71.84039948100015],[-96.79482113599994,71.82599518400008],[-96.82940772399994,71.81313711100006],[-96.86431983399987,71.80963776200018],[-96.93516130499987,71.81232330900015],[-96.96156918299994,71.80683014500012],[-96.98057146099987,71.79303620000002],[-97.01397803699993,71.75775788],[-97.0580861099999,71.73379140800013],[-97.0798146249999,71.717962958],[-97.0828663829999,71.70311107000013],[-97.21189470399992,71.66648997600011],[-97.30161638299985,71.6569684920001],[-97.43853858399987,71.62055084800012],[-97.4612436619999,71.61737702000005],[-97.68528337499987,71.61839427300005],[-97.70566911799995,71.62396881700015],[-97.72402035499991,71.6327985700001],[-97.76381527699989,71.64590078300007],[-97.90574235999995,71.64996979400003],[-97.94854834899985,71.65936920800006],[-97.9698292739999,71.66152578300014],[-98.10040381799989,71.64777252800003],[-98.1448781019999,71.647894598],[-98.21982927399995,71.65863678600012],[-98.25278825799982,71.66998932500009],[-98.33608090199996,71.71308014500012],[-98.34967139599989,71.72296784100006],[-98.35927426099987,71.7343610700001],[-98.35601905299983,71.73920319200009],[-98.3479624119999,71.74551015800002],[-98.33652849299995,71.78986237200014],[-98.31858415699992,71.81175364799999],[-98.22125342799984,71.87278880400008],[-98.2131154069999,71.881252346],[-98.21523129199991,71.8937848980001],[-98.2286590269999,71.8954531920001],[-98.24615577099988,71.89516836100007],[-98.2603159279999,71.90167877800017],[-98.25836280299984,71.90350983300006],[-98.25722347999991,71.903753973],[-98.25632829699992,71.90452708500011],[-98.2547413829999,71.90790436400015],[-98.29502458599987,71.90167877800017],[-98.26674496399991,71.87799713700015],[-98.2603159279999,71.86762116100006],[-98.28147478199989,71.86566803600012],[-98.32310075799987,71.86627838700015],[-98.34348649999993,71.86078522300014],[-98.33665056299992,71.86078522300014],[-98.43837582299989,71.80361562700007],[-98.47996110999986,71.7672386740001],[-98.50046892199992,71.72296784100006],[-98.49648129199994,71.719671942],[-98.4922902109999,71.71775950700005],[-98.4871225679999,71.71771881700006],[-98.46563819299988,71.7240257830001],[-98.45619808899994,71.72235748900009],[-98.44773454699991,71.7187360700001],[-98.41563005499987,71.71417877800017],[-98.39792985999995,71.70815664300007],[-98.39296566699988,71.70132070500013],[-98.41111345399987,71.69627513200011],[-98.3942677499999,71.67975495000003],[-98.38629248999983,71.66412995000015],[-98.37538754199994,71.65241120000015],[-98.34995622699995,71.647894598],[-98.32126970399989,71.64606354400001],[-98.30723161799992,71.641099351],[-98.30125017199992,71.631048895],[-98.29758806299986,71.61741771000005],[-98.28814795899984,71.61351146000008],[-98.27524919599992,71.61310455900015],[-98.26121110999989,71.61001211100007],[-98.23362321899987,71.59324778900007],[-98.2200327239999,71.59064362200014],[-98.19077653999989,71.58954498900012],[-98.17836605799994,71.58641185100005],[-98.15964860999989,71.56020742400001],[-98.15102230799988,71.55223216400005],[-98.14223324499991,71.54702383000016],[-98.13438005499984,71.54368724200013],[-98.1246144299999,71.54295482000002],[-98.11008806299986,71.54547760600012],[-98.10422868799992,71.54071686400012],[-98.06040544599995,71.53644440300009],[-98.04181006799986,71.53119538000011],[-98.06012061499993,71.52147044500008],[-98.0982065529999,71.49469635600015],[-98.1305958749999,71.46588776200004],[-98.1716928809999,71.43992747600005],[-98.18927100599984,71.42503489799999],[-98.21519060199992,71.4094098980001],[-98.31553239899992,71.38715241100006],[-98.40049333599987,71.34625885600012],[-98.41111345399987,71.3393415390001],[-98.44150896099987,71.33502838700012],[-98.50942074499994,71.30280182500017],[-98.54148454699991,71.29218170800011],[-98.66355485999986,71.29889557500017],[-98.6997690529999,71.29218170800011],[-98.69675798499989,71.28831614800013],[-98.6940724379999,71.28119538000009],[-98.69228207299992,71.27789948100003],[-98.71787614899989,71.27167389500009],[-98.72996110999989,71.27171458500008],[-98.74070329699992,71.27789948100003],[-98.78501482099995,71.28363678600002],[-98.8276173599999,71.30048248900003],[-98.94626970399995,71.37392812700001],[-98.96763200799988,71.38324616100006],[-98.9939585059999,71.38715241100006],[-99.02085466499987,71.38410065300013],[-99.0916554459999,71.35541413],[-99.11903988599995,71.34975820500001],[-99.21335954699992,71.3468285180001],[-99.2350880629999,71.34959544500005],[-99.24102881799993,71.35732656500006],[-99.24257504199997,71.36904531500015],[-99.25120134399988,71.38373444200015],[-99.25820004199996,71.38886139500006],[-99.28196306299986,71.40143463700007],[-99.2870086359999,71.407660223],[-99.29189144799996,71.42133209800015],[-99.29563493799989,71.42877838700012],[-99.31768897399988,71.4487165390001],[-99.32358903999992,71.46063873900015],[-99.31606136999996,71.47654857000008],[-99.36631364899993,71.50861237200014],[-99.4122527769999,71.54547760600012],[-99.39613949499993,71.54498932500002],[-99.38315935199994,71.55060455900004],[-99.37449235999993,71.56126536700008],[-99.37131853199988,71.57587311400009],[-99.38523454699995,71.58584219000006],[-99.51275733399984,71.60541413000014],[-99.56166683899993,71.62006256700006],[-99.59950863599997,71.64179108300011],[-99.60471696899987,71.66836172100007],[-99.61065772399989,71.67829010600018],[-99.61436052399993,71.68829987200014],[-99.62001644799992,71.69879791900003],[-99.63197933899995,71.70990631700006],[-99.64312842799988,71.71478913000011],[-99.66607764599986,71.71963125200001],[-99.67608741199984,71.72638580900006],[-99.67836605799992,71.73236725500006],[-99.67783708599985,71.73920319200009],[-99.67563982099995,71.74396393400018],[-99.67295427399996,71.74347565300009],[-99.68296403999994,71.75775788],[-99.69346208599991,71.76715729400011],[-99.70733741199992,71.7733421900001],[-99.74762061499989,71.7823753930001],[-99.7682911879999,71.78436920800011],[-99.7817189219999,71.78778717700014],[-99.80694678699987,71.802679755],[-99.82013038099991,71.80613841399997],[-99.82871599299992,71.81207916900003],[-99.84706722999988,71.85024648600007],[-99.86436052399996,71.85944245000015],[-100.03546241199989,71.86762116100006],[-100.05776058899991,71.87274811400009],[-100.09820655299987,71.88873932500017],[-100.11863298499993,71.894232489],[-100.14386084899989,71.92487213700012],[-100.18756202099988,71.94245026200004],[-100.27569678699989,71.96662018400013],[-100.3067026459999,71.986232815],[-100.35349626599988,72.024359442],[-100.3849090269999,72.03888580900004],[-100.37872413099984,72.03888580900004],[-100.39561052399993,72.04193756700012],[-100.44700212499994,72.0587832700001],[-100.43088884399987,72.06460195500007],[-100.4255991309999,72.073187567],[-100.42421566699991,72.08323802300008],[-100.42026872699992,72.09349192899998],[-100.44407243799992,72.10008372600008],[-100.47239274999987,72.09552643400012],[-100.49839372699994,72.09666575700005],[-100.51523942999985,72.12079498900005],[-100.50706071899992,72.121527411],[-100.48793636999996,72.127630927],[-100.5461232189999,72.13646067900005],[-100.56361996399994,72.14130280200011],[-100.57826840199995,72.15033600500014],[-100.59092302399993,72.16063060100005],[-100.60520524999993,72.16815827],[-100.62510271099991,72.168646552],[-100.63653663099988,72.18646881700006],[-100.79913428699986,72.21133047100004],[-100.82110694299986,72.20697663000011],[-100.8416961359999,72.19969310100011],[-100.86130876599987,72.19594961100007],[-100.86749366199992,72.19794342700011],[-100.87970069299989,72.20722077000006],[-100.88584489899998,72.20962148600002],[-100.89630225599986,72.20929596600008],[-100.92673845399992,72.20335521000005],[-100.92185564099994,72.19985586100007],[-100.91314795899986,72.18976471600011],[-100.92979021099991,72.19086334800006],[-100.94077653999994,72.185492255],[-100.95164079699994,72.17865631700009],[-100.96775407899992,72.17544179900013],[-100.98057146099985,72.17902252800009],[-101.02919613599991,72.20335521000005],[-101.02854509399994,72.21133047100004],[-101.03456722999995,72.21991608300011],[-101.0448211359999,72.22858307500003],[-101.05710954699994,72.23688385600009],[-101.03196306299985,72.24892812700001],[-101.02301123999985,72.25116608299999],[-101.02301123999985,72.25739166900014],[-101.03867692999991,72.25958893400015],[-101.06968278999993,72.25739166900014],[-101.08384294599995,72.26422760600018],[-101.06069027699992,72.27383047100014],[-101.04856462499991,72.27655670800011],[-101.03599138299984,72.27789948100012],[-101.06577653999993,72.288804429],[-101.13450212499991,72.29555898600005],[-101.16697282899992,72.30573151200015],[-101.2007863049999,72.32965729400001],[-101.21616716499992,72.33470286700008],[-101.22898454699987,72.335394598],[-101.29327491199989,72.3254255230001],[-101.35618181299994,72.30573151200015],[-101.40321957299993,72.27928294499998],[-101.39976091499994,72.25116608299999],[-101.42201840199989,72.24518463700018],[-101.44862972999994,72.24213287999999],[-101.4746713959999,72.24359772300015],[-101.49534196899992,72.25116608299999],[-101.48492530299984,72.25063711100002],[-101.4764210709999,72.25307851800005],[-101.47068376599994,72.25873444200015],[-101.46860857099992,72.26797109600001],[-101.47397966499996,72.27289459800006],[-101.50962419599992,72.28530508000001],[-101.50217790699995,72.28530508000001],[-101.52911475599991,72.29612864799999],[-101.60227556299988,72.31102122600004],[-101.6324676199999,72.31264883000007],[-101.65321957299989,72.30687083500011],[-101.67470394799992,72.29718659100014],[-101.69578142199994,72.29193756700006],[-101.71506853199988,72.2995466170001],[-101.70762224299989,72.30573151200015],[-101.71763200799988,72.31142812700016],[-101.72471208599984,72.31077708500003],[-101.73179216499989,72.30760325700014],[-101.7417612399999,72.30573151200015],[-101.77040707299994,72.30670807500013],[-101.78204444299988,72.30878327000006],[-101.84014991199993,72.32648346600017],[-101.85219418299992,72.33307526200004],[-101.86252946899995,72.34210846600014],[-101.87046403999992,72.35089752800003],[-101.87949724299992,72.35761139500006],[-101.89316911799996,72.36041901200012],[-101.89365739899993,72.36481354400009],[-101.89243669599993,72.36635976800012],[-101.88633317999984,72.36717357000005],[-101.89316911799996,72.36717357000005],[-101.87876482099989,72.37270742400007],[-101.87278337499987,72.38108958500014],[-101.8770558359999,72.38963450700004],[-101.89316911799996,72.39516836100006],[-101.86627295899989,72.39964427300005],[-101.7922983489999,72.39354075700005],[-101.77646989899996,72.39516836100006],[-101.79425147399986,72.41205475500006],[-101.83966163099986,72.41437409100001],[-101.9198211359999,72.40818919500008],[-101.9163217869999,72.41132233300014],[-101.90977067999992,72.41909414300012],[-101.90623064099994,72.42251211100013],[-101.92006527699992,72.43561432500012],[-101.9522104589999,72.45807526200012],[-101.96148780299986,72.47028229400009],[-101.90623064099994,72.47028229400009],[-101.9339812919999,72.4865176450001],[-101.96653337499987,72.497056382],[-102.00071306299988,72.50267161700002],[-102.0334279069999,72.50438060100002],[-102.06532894799992,72.51235586100016],[-102.1393035579999,72.54108307500012],[-102.16754248999987,72.53856028899999],[-102.15574235999989,72.53099192900005],[-102.16420590199994,72.52903880399998],[-102.19480485999985,72.53237539300012],[-102.1976531669999,72.53473541900017],[-102.20103044599992,72.53921133000013],[-102.20619808899991,72.54344310100005],[-102.21470232099995,72.54535553600012],[-102.24200538099984,72.54482656500012],[-102.25669450799984,72.54767487200009],[-102.26308285499995,72.55560944200015],[-102.3419402769999,72.579535223],[-102.38116553699992,72.57758209800006],[-102.39280290699993,72.579535223],[-102.40175472999995,72.5847028670001],[-102.40745134399994,72.59145742400015],[-102.41086931299995,72.59756094000012],[-102.4133107189999,72.60065338700012],[-102.61423845399989,72.66132233300009],[-102.6551726979999,72.681097723],[-102.6880503029999,72.70498281500005],[-102.72719418299994,72.71808502800006],[-102.74229021099984,72.73037344],[-102.73443702099988,72.73419830900012],[-102.72792660499987,72.73924388200005],[-102.71498715199988,72.75202057500009],[-102.73297217799991,72.75824616100006],[-102.7437143649999,72.75967031500012],[-102.7503468519999,72.76390208500014],[-102.7559620859999,72.778753973],[-102.7559620859999,72.78929271000005],[-102.75278825799992,72.7982445330001],[-102.75128272399988,72.80585358300011],[-102.7559620859999,72.81232330900004],[-102.73203630499984,72.83201732],[-102.66929216499993,72.86066315300015],[-102.60203142199991,72.91217682500003],[-102.59690446899988,72.923570054],[-102.59584652699992,72.936509507],[-102.59625342799986,72.94765859600001],[-102.5955210059999,72.95351797100007],[-102.58746436499989,72.96369049700012],[-102.57582699499997,72.98460521000005],[-102.5678517349999,72.99477773600002],[-102.55702816699991,73.00226471600008],[-102.53037614899989,73.01479726800007],[-102.52008155299988,73.02236562700013],[-102.48476254199994,73.04124583500005],[-102.39264014599988,73.04751211100002],[-102.35190935199988,73.05996328300004],[-102.38230485999986,73.062201239],[-102.39280290699993,73.066107489],[-102.36167497699994,73.0704613300001],[-102.29758806299986,73.06533437700007],[-102.2693491309999,73.07294342700011],[-102.28293962499995,73.08722565300012],[-102.20603532899986,73.07868073100009],[-102.11431983399989,73.08881256700015],[-102.07997738599992,73.08820221600008],[-102.04620459899985,73.08030833500011],[-101.94781592799991,73.09345123900007],[-101.94781592799991,73.08722565300012],[-101.95774431299992,73.08348216399999],[-101.98130388299987,73.066107489],[-101.96287126599992,73.05365631700009],[-101.9400848079999,73.05329010600015],[-101.90623064099994,73.05996328300004],[-101.89927263299985,73.04083893400015],[-101.88547868799994,73.02924225500014],[-101.86676123999987,73.02277252800003],[-101.84478858399986,73.018988348],[-101.82314144799996,73.01772695500001],[-101.80381364899993,73.018988348],[-101.7836720469999,73.02423737200009],[-101.7737436619999,73.02472565300017],[-101.76283871399993,73.018988348],[-101.76841325799982,73.01097239800008],[-101.77354021099985,73.00136953300006],[-101.77992855799997,72.99201080900015],[-101.78953142199994,72.98480866100012],[-101.75933936499993,72.98484935100011],[-101.74607439099991,72.98078034100014],[-101.73492530299988,72.97052643400004],[-101.80125017199991,72.97687409100014],[-101.81748552399996,72.97052643400004],[-101.73923845399989,72.92767975500014],[-101.68967790699985,72.91474030200013],[-101.65781755499984,72.90078359600007],[-101.62872413099987,72.89232005400011],[-101.61204118799992,72.90167877800015],[-101.61781918299987,72.91205475500006],[-101.5978810319999,72.9222679710001],[-101.56785173499995,72.92731354400003],[-101.54376319299992,72.92210521000011],[-101.5580861099999,72.9221865910001],[-101.57216488599994,72.91998932500003],[-101.5857553809999,72.91543203300006],[-101.59836931299989,72.908433335],[-101.58347673499992,72.90119049700017],[-101.53627621399994,72.88861725500009],[-101.52227881799988,72.880804755],[-101.49534196899992,72.85321686400006],[-101.4634816179999,72.83079661700008],[-101.45546566699996,72.81769440300009],[-101.46860857099992,72.80609772300006],[-101.4388641049999,72.79462311400012],[-101.39727881799992,72.78343333500011],[-101.3550831799999,72.77850983300006],[-101.32403663099986,72.78558991100012],[-101.33396501599988,72.79169342700011],[-101.3554493909999,72.79975006700013],[-101.3649708749999,72.80609772300006],[-101.34055681299995,72.80613841400007],[-101.31703793299988,72.80093008000007],[-101.29551286799996,72.79144928600006],[-101.27683610999989,72.778753973],[-101.29132178699984,72.76699453300004],[-101.30035498999986,72.75592682500007],[-101.31109717799987,72.7477074240001],[-101.33087256799989,72.74457428600012],[-101.34006853199986,72.74677155200003],[-101.35610043299994,72.75608958500005],[-101.36871436499993,72.75824616100006],[-101.41339209899988,72.75202057500009],[-101.39890642199994,72.75018952000003],[-101.33355811499987,72.72479889499999],[-101.29624528999989,72.71857330900004],[-101.13442074499994,72.71161530200014],[-101.07224626599994,72.69310130400011],[-101.05601091499989,72.69086334800015],[-101.04018246399994,72.69310130400011],[-101.0226857189999,72.69993724200005],[-101.00347998999986,72.70368073100018],[-100.98427426099988,72.69985586100016],[-100.96547543299995,72.69342682500015],[-100.94724626599987,72.689398505],[-100.91217139599989,72.69000885600003],[-100.87461442999987,72.696193752],[-100.8390105889999,72.70770905200004],[-100.81012061499989,72.72410716400005],[-100.82517595399992,72.72947825700011],[-100.87217302399993,72.73777903899999],[-100.87217302399993,72.74457428600012],[-100.86163428699987,72.74526601800015],[-100.85626319299992,72.74689362200017],[-100.85520524999987,72.75071849199999],[-100.85789079699994,72.75824616100006],[-100.8464161879999,72.76312897300012],[-100.83608090199988,72.764146226],[-100.8264780369999,72.76219310100014],[-100.81687517199992,72.75824616100006],[-100.83054704699988,72.75824616100006],[-100.75575863599988,72.75039297100005],[-100.59096371399993,72.7587344420001],[-100.5102345469999,72.75234609600001],[-100.50266618799985,72.75263092700006],[-100.49644060199988,72.75214264500006],[-100.49151709899994,72.74974192900011],[-100.48793636999996,72.74457428600012],[-100.48175147399989,72.75202057500009],[-100.47459001599995,72.74677155200003],[-100.46641130499984,72.74262116100006],[-100.45762224299997,72.73973216400005],[-100.44834489899992,72.73810455900012],[-100.43121436499989,72.74042389500006],[-100.4173390399999,72.74632396000011],[-100.39174496399993,72.76170482000005],[-100.34800310199995,72.77655670800011],[-100.3292449639999,72.78693268400012],[-100.3166310319999,72.80609772300006],[-100.3291635839999,72.84194570500007],[-100.33339535499992,72.85016510600018],[-100.35479834899988,72.86054108300009],[-100.40077816699993,72.86615631700009],[-100.42026872699992,72.87498607000013],[-100.39304704699992,72.89179108300013],[-100.39662777699989,72.902818101],[-100.44700212499994,72.92210521000011],[-100.43394060199995,72.93207428600012],[-100.39239600599988,72.95010000200016],[-100.41831560199996,72.95600006700009],[-100.4852101329999,72.953802802],[-100.50225928699986,72.96369049700012],[-100.44700212499994,73.00470612200012],[-100.4523732189999,73.00775788000003],[-100.4623016049999,73.01593659100003],[-100.46742855799991,73.018988348],[-100.43691097999988,73.0336774760001],[-100.42197771099984,73.036322333],[-100.40598649999993,73.03266022300014],[-100.42026872699992,73.03949616100006],[-100.41282243799995,73.03949616100006],[-100.39296566699993,73.02777741100009],[-100.39239600599988,73.02578359600012],[-100.38344418299994,73.02765534100011],[-100.37864274999995,73.03180573100003],[-100.37559099299996,73.03636302299999],[-100.36928402699992,73.041937567],[-100.36676123999989,73.04596588700014],[-100.3616342869999,73.04987213700015],[-100.35138038099987,73.05247630400005],[-100.34202165699992,73.05097077],[-100.32997738599992,73.04612864800013],[-100.31842139599989,73.03949616100006],[-100.31040544599993,73.03266022300014],[-100.32257178699984,73.02277252800003],[-100.33970232099996,73.01581452000015],[-100.35935564099992,73.01178620000017],[-100.37827653999993,73.0112572290001],[-100.37904965199996,73.0112165390001],[-100.38088070599993,73.01166412999999],[-100.3827931409999,73.01186758000014],[-100.38466488599995,73.01203034100003],[-100.38853044599996,73.0125593120001],[-100.39255876599994,73.01365794500005],[-100.39561052399993,73.01496002800003],[-100.40500993799986,73.01923248900005],[-100.40598649999993,73.018988348],[-100.39748226899988,73.01443105700015],[-100.3926401459999,73.0125593120001],[-100.38914079699991,73.01133860900008],[-100.38307797199992,73.01060618700014],[-100.38140967799991,73.00967031500006],[-100.38210140899986,73.00922272300006],[-100.41469418299991,72.987494208],[-100.41656592799988,72.9783389340001],[-100.39854021099984,72.96369049700012],[-100.37302751599987,72.95136139500006],[-100.34332373999993,72.94285716400012],[-100.31223649999993,72.93797435100005],[-100.28253272399989,72.93642812700001],[-100.3062957449999,72.95062897300012],[-100.2938038829999,72.96230703300004],[-100.26877946899988,72.96002838700014],[-100.25518897399992,72.933050848],[-100.26499528999994,72.92283763200005],[-100.31264340199994,72.91876862200009],[-100.3296925549999,72.908433335],[-100.33250017199994,72.89496491100003],[-100.32696631799992,72.88434479400016],[-100.3166310319999,72.87742747600008],[-100.30479021099984,72.87498607000013],[-100.20054216499997,72.88117096600011],[-100.13531592799987,72.89618561400012],[-100.08652849299995,72.88792552300005],[-100.07175798499988,72.8885765650001],[-100.0633758229999,72.89545319199999],[-100.0643523859999,72.90102773600002],[-100.06874691699997,72.90631745000009],[-100.0738331799999,72.90940989800008],[-100.07704769799993,72.908433335],[-100.07883806299992,72.91437409100003],[-100.08583676099992,72.91596100500006],[-100.0884409279999,72.91901276200004],[-100.07704769799993,72.92963288],[-100.0690724379999,72.93244049700003],[-100.03546241199989,72.93642812700001],[-100.03546241199989,72.94383372600002],[-100.05597022399994,72.95010000200016],[-100.05320329699988,72.95384349199998],[-100.05186052399998,72.95677317900011],[-100.04970394799989,72.96369049700012],[-100.1800750419999,72.99103424700017],[-100.1692921649999,73.00381094000012],[-100.1512257579999,73.00495026200015],[-100.11118669599995,72.99848053600006],[-100.12400407899989,73.00726959800012],[-100.12803239899995,73.01536692900005],[-100.12363786799996,73.02362702000012],[-100.11118669599995,73.03266022300014],[-100.15216163099986,73.03266022300014],[-100.14654639599988,73.03571198100003],[-100.13169450799991,73.0462914080001],[-100.1533009539999,73.05255768400002],[-100.20391944299989,73.0463320980001],[-100.22788591499994,73.05247630400005],[-100.20286149999994,73.06858958500011],[-100.1732391049999,73.07977936400015],[-100.20782569299989,73.098089911],[-100.28920590199995,73.09223053600006],[-100.32346696899992,73.10089752800015],[-100.30918474299993,73.10614655200014],[-100.2778126719999,73.10976797100001],[-100.26202491199986,73.11456940300009],[-100.29612321899995,73.12140534100011],[-100.27976579699994,73.12738678600012],[-100.24436540699993,73.12889232],[-100.22788591499994,73.1344261740001],[-100.26454769799994,73.141791083],[-100.31492204699991,73.141750393],[-100.36362810199994,73.133937893],[-100.40806169599995,73.11180247600014],[-100.42527360999988,73.1080589860001],[-100.44041032899987,73.10236237200012],[-100.44700212499994,73.09031810100002],[-100.45835466499992,73.08616771000005],[-100.4842335709999,73.08661530200006],[-100.52952165699992,73.09345123900007],[-100.5193491309999,73.11603424700014],[-100.54575700799988,73.13080475500011],[-100.61147152699988,73.14809804900013],[-100.60040381799985,73.1555036480001],[-100.58689470399987,73.17230866100012],[-100.57729183899988,73.179388739],[-100.56475928699989,73.18309153900013],[-100.52207536799996,73.182806708],[-100.52268571899992,73.19147370000007],[-100.5068165789999,73.196234442],[-100.46742855799991,73.20331452000015],[-100.48622738599995,73.21246979400003],[-100.5098276459999,73.21979401200004],[-100.5344044689999,73.22406647300015],[-100.55625505499987,73.223822333],[-100.55625505499987,73.23126862200009],[-100.47349138299991,73.23834870000006],[-100.44700212499994,73.24428945500007],[-100.44862972999994,73.24762604400009],[-100.45090837499991,73.25409577],[-100.45375668299987,73.25787995000003],[-100.42747087499995,73.267035223],[-100.38132829699994,73.29035065300012],[-100.35138038099987,73.29266998900005],[-100.3650522559999,73.28583405200006],[-100.35654802399996,73.27399323100009],[-100.34145199499994,73.27317942899998],[-100.30824886999993,73.28412506700015],[-100.29229834899985,73.28497955900015],[-100.27366228199986,73.28034088700004],[-100.24155778999989,73.26536692899998],[-100.21311540699988,73.24591705900008],[-100.19952491199992,73.24017975500011],[-100.18031918299995,73.23802317900011],[-100.10435075799984,73.24428945500007],[-100.12188819299988,73.23533763200014],[-100.13853044599992,73.223822333],[-100.03867692999982,73.19367096600008],[-99.99395850599988,73.19009023600002],[-99.81113786799989,73.19513580900004],[-99.76861670899984,73.21076080900004],[-99.8189096779999,73.21796295800006],[-99.9260060319999,73.21377187700013],[-99.99814958599991,73.23558177299999],[-100.05356950799988,73.24518463700015],[-100.09120785499988,73.26557038000014],[-100.15956722999995,73.29266998900005],[-100.17222185199992,73.30231354400006],[-100.1970021249999,73.32640208500005],[-100.20676774999993,73.33368561400007],[-100.26202491199986,73.35285065300006],[-100.29107764599992,73.371975002],[-100.3438934019999,73.39508698100013],[-100.36289567999991,73.39960358300011],[-100.38352556299992,73.40005117400004],[-100.39312842799991,73.3945173200001],[-100.37872413099984,73.38149648600002],[-100.39792985999989,73.37018463700002],[-100.40598649999993,73.36782461100007],[-100.39036149999994,73.34418366100006],[-100.38865251599994,73.340521552],[-100.37579444299992,73.3392601580001],[-100.34788103199988,73.33136627800012],[-100.33713884399987,73.32623932500009],[-100.47764177399995,73.32330963700018],[-100.65806169599989,73.28107330900015],[-100.85789079699994,73.26284414300007],[-100.97402035499987,73.28196849200005],[-101.03159685199994,73.30243561400003],[-101.04237972999995,73.31126536700008],[-101.02919613599991,73.32062409100011],[-101.02919613599991,73.32623932500009],[-101.0667937919999,73.32501862200009],[-101.2889617609999,73.36005280200008],[-101.31777035499992,73.37466054900001],[-101.3148406669999,73.40045807500002],[-101.3498341569999,73.41242096600014],[-101.43048194299985,73.41559479400003],[-101.44651384399992,73.41990794500013],[-101.47092790699988,73.43915436400006],[-101.4850880629999,73.44354889500006],[-101.56321306299992,73.44953034100017],[-101.58469743799995,73.45718008000001],[-101.57456560199988,73.46051666900003],[-101.5672006929999,73.46165599200008],[-101.56003923499986,73.46059804900001],[-101.55059913099984,73.45718008000001],[-101.56158545899989,73.46857330900015],[-101.58282569299988,73.4787051450001],[-101.62563168299987,73.49135976800008],[-101.60569353199989,73.49628327000015],[-101.56992692999987,73.49160390800013],[-101.55059913099984,73.49135976800008],[-101.53159685199994,73.49555084800012],[-101.52537126599988,73.50079987200012],[-101.52146501599988,73.507269598],[-101.47035824499991,73.54083893400002],[-101.45587256799985,73.54783763200011],[-101.4371551199999,73.55341217700011],[-101.41786801099995,73.5570335960001],[-101.37864274999993,73.55955638200011],[-101.30352881799992,73.55223216400009],[-101.26938982099992,73.56004466400002],[-101.25510759399992,73.5906436220001],[-101.22983903999996,73.60614655200011],[-100.97800798499995,73.59438711100013],[-100.9185597429999,73.60297272300005],[-100.89947608399993,73.60053131700012],[-100.88523454699991,73.59393952000015],[-100.84482927399996,73.56704336100006],[-100.82615251599988,73.56012604400016],[-100.7691456799999,73.54588450700008],[-100.72133480799995,73.51239655200011],[-100.71360368799994,73.50405508000016],[-100.70115251599992,73.48550039300015],[-100.69399105799987,73.47768789300015],[-100.65427751599988,73.46149323100009],[-100.55767920899993,73.45355866100014],[-100.52207536799996,73.43610260600018],[-100.51768083599987,73.42316315300017],[-100.48142595399986,73.41156647300006],[-100.44004411799995,73.40810781500006],[-100.42026872699992,73.41925690300017],[-100.43931169599992,73.43952057500007],[-100.48264665699989,73.45831940300003],[-100.58921403999993,73.48379140800013],[-100.60431006799992,73.49876536699999],[-100.60313005499991,73.51780833500007],[-100.58355811499983,73.53603750200016],[-100.57236833599993,73.54238515800007],[-100.54921566699988,73.55906810100011],[-100.54319353199988,73.56704336100006],[-100.54311215199989,73.57770416900011],[-100.5491749769999,73.58307526200015],[-100.55377295899993,73.5888125670001],[-100.54941911799993,73.60053131700012],[-100.61619157899989,73.59739817900005],[-100.64780778999996,73.60073476800007],[-100.67690121399993,73.61823151200002],[-100.69146827099986,73.6244164080001],[-100.71140642199994,73.62417226800014],[-100.7311004329999,73.61920807500012],[-100.74493506799988,73.61115143400015],[-100.76072282899993,73.60504791900009],[-100.7812306409999,73.60740794500013],[-100.80263363599994,73.61253489800005],[-100.82139177399989,73.61469147300015],[-100.87473649999994,73.61863841400005],[-100.90012712499988,73.62531159100007],[-100.91314795899986,73.63532135600018],[-100.89426774999993,73.63715241100006],[-100.87725928699987,73.64272695500016],[-100.86440121399994,73.6528994810001],[-100.85789079699994,73.66885000200001],[-100.87815446899987,73.66901276200018],[-100.93707373999992,73.67625560100011],[-101.01617530299991,73.67625560100011],[-101.04791358399987,73.68256256700015],[-101.05723161799992,73.69599030200014],[-101.04600114899992,73.70799388200005],[-101.01617530299991,73.710394598],[-101.01617530299991,73.71723053600012],[-101.02952165699993,73.71881745000015],[-101.05247087499991,73.72907135600018],[-101.06361996399994,73.73151276200011],[-101.10410661799995,73.72418854400011],[-101.11855160499992,73.72406647300012],[-101.09503272399988,73.74249909100017],[-101.01186215199992,73.75413646000008],[-100.98142595399986,73.77252838700012],[-101.00665381799992,73.7721621770001],[-101.01829118799992,73.77387116100012],[-101.02919613599991,73.7787132830001],[-101.0049448339999,73.80239492400001],[-100.96816097999992,73.81248607],[-100.88584489899998,73.81403229400003],[-100.88584489899998,73.83209870000003],[-100.8637501719999,73.83161041900014],[-100.81687517199992,73.82025788000009],[-100.82379248999983,73.82025788000009],[-100.7582814219999,73.81439850500013],[-100.7227996519999,73.81736888200005],[-100.69712419599995,73.830511786],[-100.67218116199993,73.847357489],[-100.64141944299985,73.85431549700009],[-100.41493832299996,73.84365469000006],[-100.30271501599991,73.80951569200006],[-100.1727101329999,73.79999420800006],[-100.06992692999991,73.77301666900011],[-100.0633758229999,73.76902903900013],[-100.06117855799992,73.76044342700011],[-100.05572608399989,73.7540550800001],[-100.04229834899989,73.74518463700015],[-100.02329607099989,73.73777903900007],[-100.01401872699992,73.7433128930001],[-100.01572771099985,73.75486888200011],[-100.0292775159999,73.76561107000012],[-100.01987810199996,73.77293528900012],[-100.00055030299987,73.7826602230001],[-99.9869191179999,73.79157135600012],[-99.9787404069999,73.79413483300011],[-99.97434587499993,73.79608795800009],[-99.96982927399996,73.80084870000017],[-99.96921892199991,73.8058942730001],[-99.96954444299993,73.81061432500012],[-99.96783545899993,73.81403229400003],[-99.94317725599984,73.82314687700001],[-99.88173519799993,73.834458726],[-99.86106462499994,73.84446849199999],[-99.85361833599987,73.855169989],[-99.8460906669999,73.87230052300013],[-99.8460906669999,73.88833242400013],[-99.86106462499994,73.89541250200008],[-99.88279314099991,73.896185614],[-99.88877458599993,73.89541250200008],[-99.87847998999989,73.868068752],[-99.9143686619999,73.88825104400014],[-99.95408220399992,73.87946198100018],[-100.0292775159999,73.84137604400009],[-100.08604021099988,73.83177317900011],[-100.26202491199986,73.84137604400009],[-100.25864763299984,73.845607815],[-100.25649105799992,73.84894440300003],[-100.2535613699999,73.8519961610001],[-100.24770199499994,73.85504791900003],[-100.26112972999995,73.85960521000007],[-100.2747609149999,73.86131419499998],[-100.30295915699986,73.861232815],[-100.27866716499989,73.88955312700013],[-100.24924821899991,73.90875885600009],[-100.2141733489999,73.91986725500011],[-100.15419613599988,73.92641836100002],[-100.11554053699986,73.94009023600013],[-100.0941375419999,73.94318268400004],[-100.02415056299989,73.94546133],[-100.00132341499997,73.95001862200014],[-99.80271501599994,73.93695709800005],[-99.81089372699995,73.93024323100003],[-99.82297868799995,73.92255280200003],[-99.83363949499987,73.91331614800005],[-99.8374643649999,73.90224844],[-99.8309539479999,73.89691803600014]]],[[[-97.64321855399993,74.07221100500009],[-97.69294186099992,74.03294505400005],[-97.80846106699988,73.9779320330001],[-97.90021725199993,73.95563385600015],[-97.99339758999989,73.94318268400004],[-98.0071508449999,73.93915436400006],[-98.03331458199995,73.92609284100008],[-98.04181881399987,73.92328522300012],[-98.05166581899991,73.9217796900001],[-98.05711829299992,73.91771067900011],[-98.06541907499991,73.90558502800003],[-98.07437089799991,73.89887116100009],[-98.08332271999987,73.89655182500003],[-98.09276282499988,73.89541250200008],[-98.12368730399993,73.88344961100016],[-98.14342200399994,73.87840403900013],[-98.39742997949992,73.85647207250004],[-98.65143795499989,73.83454010600018],[-98.71837317599991,73.86522044500008],[-98.74303137899989,73.85468170800011],[-98.74852454299992,73.83641185100014],[-98.72020423099988,73.827093817],[-98.74083411399991,73.81891510600009],[-98.76317298099993,73.81659577000012],[-98.83600826699988,73.82184479400011],[-98.89704342399995,73.81867096600014],[-98.9512833319999,73.80711497600011],[-99.14338131399985,73.82160065300013],[-99.1721085279999,73.83392975500011],[-99.14537512899989,73.84100983300009],[-98.82624264199984,73.83209870000003],[-98.81920325399996,73.83763255400005],[-98.84398352799992,73.85224030200008],[-98.8760473299999,73.856878973],[-99.24742591099997,73.85504791900003],[-99.35513261599993,73.86615631700005],[-99.4113663399999,73.88271719000012],[-99.44025631399985,73.90900299700006],[-99.38971920499992,73.92373281500012],[-99.09699459499988,73.95746491100012],[-98.99933834499988,73.95050690300003],[-98.97350012899994,73.95746491100012],[-98.98713131399991,73.96088288000014],[-98.99998938699993,73.9667015650001],[-99.01170813699991,73.97479889500003],[-99.02188066299996,73.98476797100001],[-98.98277747299991,73.99591705900004],[-98.84260006399984,74.00739166900017],[-98.76992753799988,74.03107330900009],[-98.75251217399989,74.033636786],[-98.52920488199987,74.03339264500015],[-98.17300370999989,74.09772370000015],[-97.72524980399992,74.12164948100002],[-97.68871008999989,74.116156317],[-97.65758216099991,74.10138580900012],[-97.64321855399993,74.07221100500009]]],[[[-92.74705969999991,74.0851097680001],[-92.72272701699984,74.08340078300007],[-92.71751868399994,74.08779531500006],[-92.66661536399991,74.10150788],[-92.64281165299994,74.10297272300015],[-92.51707923099994,74.07005442900008],[-92.43016516799995,74.06240469000012],[-92.37295488199987,74.0479190120001],[-92.31895911399988,74.02440013200014],[-92.27131100199992,73.99217357],[-92.28457597599993,73.97809479400014],[-92.3339737619999,73.95001862200014],[-92.32652747299991,73.95001862200014],[-92.3339737619999,73.94318268400004],[-92.1309301419999,73.95083242400014],[-92.11424719999985,73.95746491100012],[-92.12169348899994,73.95746491100012],[-92.1174210279999,73.96482982000009],[-92.11375891799986,73.98432038000011],[-92.10741126199994,73.99217357],[-92.09764563699989,73.99445221600017],[-92.05899003799993,73.99217357],[-92.04454505099989,73.99445221600017],[-92.01805579299992,74.0020205750001],[-91.81452389199993,74.02875397300012],[-91.77578691299988,74.01654694200015],[-91.57237708199995,74.03314850500011],[-91.37047278599988,74.01528554900013],[-90.9938858709999,74.00592682500012],[-90.63585364499988,73.95246002800017],[-90.34968014199993,73.91583893400015],[-90.33910071499986,73.92641836100002],[-90.33263098899997,73.93024323100003],[-90.29100501199987,73.92328522300012],[-90.26744544199994,73.92153554900013],[-90.2420955069999,73.91681549700003],[-90.19570878799993,73.90224844],[-90.23900305899994,73.85846588700004],[-90.26414954299992,73.84479401200008],[-90.29124915299994,73.84760163000006],[-90.30166581899994,73.85545482000013],[-90.30699622299989,73.86383698100009],[-90.31297766799992,73.87103913000011],[-90.32542883999992,73.87547435100002],[-90.34186764199993,73.87425364799999],[-90.36168372299994,73.86786530200006],[-90.37889563699984,73.85838450700005],[-90.38752193899987,73.84760163000006],[-90.36929277299987,73.84064362200014],[-90.36164303299995,73.82689036700005],[-90.36327063699989,73.80971914300004],[-90.37319902299987,73.79238515800013],[-90.44343014199993,73.7453473980001],[-90.47594153599991,73.73037344000008],[-90.51073157499985,73.697943427],[-90.58836829299989,73.65778229400017],[-90.63390051999994,73.64150625200013],[-90.78636633999986,73.55683014500012],[-90.84593665299988,73.54588450700008],[-90.93895423099994,73.54588450700008],[-90.9503474599999,73.54804108300009],[-90.97101803299992,73.55744049700009],[-90.98338782499988,73.55955638200011],[-90.99596106699994,73.55121491100013],[-90.97398841099994,73.53204987200017],[-90.92125403599992,73.49811432500003],[-90.93512936099984,73.48395416900011],[-91.03262285099987,73.44415924700012],[-91.03795325399993,73.43984609600001],[-91.03831946499994,73.4299177100001],[-91.03994706899996,73.4238141950001],[-91.04417883999989,73.419663804],[-91.05223548099994,73.41559479400003],[-91.04478919199994,73.41559479400003],[-91.05988521999986,73.41396719],[-91.07559160099993,73.40766022300006],[-91.08812415299991,73.39765045800009],[-91.09325110599994,73.38519928600005],[-91.10407467399992,73.37734609600007],[-91.17577063699994,73.35415273600013],[-91.20006262899992,73.33478424700003],[-91.23619544199994,73.289984442],[-91.25767981699988,73.2722028670001],[-91.2788793609999,73.26268138200011],[-91.30431067599989,73.25592682500017],[-91.33079993399986,73.25324127800009],[-91.3790583979999,73.25812409100017],[-91.46129309799996,73.24428945500007],[-91.59557044199988,73.24359772300012],[-91.63385982999992,73.23126862200009],[-91.37730872299991,73.21344635600009],[-91.37633216099994,73.20319245000016],[-91.47370357999989,73.1344261740001],[-91.47427324099996,73.12954336100002],[-91.49730383999992,73.10089752800015],[-91.52749589799993,73.08193594000012],[-91.58942623599992,73.05499909100016],[-91.62905839799993,73.02920156500015],[-91.63890540299985,73.02704498900015],[-91.64561926999991,73.02236562700013],[-91.64810136599993,73.00812409100003],[-91.64854895699992,72.99241771000005],[-91.65147864499994,72.98468659100014],[-91.65953528599988,72.9792341170001],[-91.77155514199987,72.92291901200004],[-91.79523678299998,72.90509674700014],[-91.83470618399993,72.86399974199999],[-91.85765540299994,72.84796784100008],[-92.01183020699995,72.79857005400011],[-92.03302975199995,72.78742096600007],[-92.07298743399991,72.75519440300015],[-92.09581458199992,72.74624258000013],[-92.16885331899991,72.73037344],[-92.38487708199992,72.70990631700012],[-92.46719316299988,72.72190989800005],[-92.58315995999993,72.72630442900005],[-92.62865149599992,72.74038320500007],[-93.04820716099991,72.76919179900001],[-93.0931697259999,72.782660223],[-93.11449133999987,72.78558991100012],[-93.21100826699984,72.78558991100012],[-93.23184160099993,72.78815338700002],[-93.27928626199994,72.81232330900004],[-93.30101477799991,72.81834544500005],[-93.31802324099996,72.81732819200009],[-93.3528946609999,72.80414459800012],[-93.40322831899994,72.79433828300009],[-93.50316321499992,72.797796942],[-93.59870357999992,72.78465403900005],[-93.87718665299997,72.77798086150013],[-94.15566972599993,72.77130768400004],[-94.24181067599989,72.78119538000014],[-94.28661048099991,72.78034088700002],[-94.3207901679999,72.76508209800005],[-94.32843990799991,72.75592682500007],[-94.33311926999994,72.7455101580001],[-94.33356686099985,72.73468659100011],[-94.32823645699997,72.72410716400005],[-94.31432044199991,72.71662018400018],[-94.29751542899989,72.71845123900006],[-94.2655330069999,72.73037344],[-94.22716223899997,72.73696523600006],[-94.1859431629999,72.73680247600011],[-94.0195206369999,72.71246979400014],[-93.8758031889999,72.70990631700012],[-93.87360592399988,72.71161530200014],[-93.84780839799987,72.72410716400005],[-93.8394262359999,72.72675202000012],[-93.83421790299991,72.7272809920001],[-93.8299047519999,72.72870514500009],[-93.82396399599989,72.73407623900015],[-93.81281490799994,72.74168528899999],[-93.79954993399994,72.74420807500009],[-93.78742428299994,72.74070872600011],[-93.77953040299987,72.73037344],[-93.79649817599994,72.72785065300009],[-93.79954993399994,72.7182477890001],[-93.79320227799991,72.69310130400011],[-93.80040442599994,72.67934804900001],[-93.81432044199991,72.66876862200014],[-93.82359778599997,72.65851471600003],[-93.81680253799993,72.6452497420001],[-93.78359941299992,72.63007233300011],[-93.66222083199992,72.61424388200008],[-93.62832597599996,72.6012230490001],[-93.5602921209999,72.56598541900014],[-93.50059973899991,72.51601797100001],[-93.46422278599994,72.46344635600018],[-93.47175045499989,72.46344635600018],[-93.46422278599994,72.45661041900014],[-93.47508704299992,72.44196198100006],[-93.49205481699991,72.43353913],[-93.51219641799995,72.42963287999999],[-93.53229732999998,72.4286970070001],[-93.54922441299996,72.42548248900006],[-93.55923417899996,72.41742584800012],[-93.57408606699991,72.39516836100006],[-93.59813391799995,72.37246328300013],[-93.62279212099995,72.35785553600003],[-93.68488521999986,72.3350283870001],[-93.72752844999991,72.32648346600017],[-93.7703344389999,72.32404205900004],[-93.81102454299989,72.31631094000011],[-93.84780839799987,72.29214101800004],[-93.86652584499983,72.27204010600015],[-93.87466386599993,72.26569245000003],[-93.88878333199997,72.25739166900014],[-93.91673743399991,72.24530670800006],[-93.92658443899984,72.23822663],[-93.93040930899986,72.226996161],[-93.94318600199988,72.20962148600002],[-94.02660071499989,72.15497467700006],[-94.03429114499991,72.14630768400013],[-94.03844153599994,72.13959381700012],[-94.0464574859999,72.12079498900005],[-94.04723059799991,72.11603424700016],[-94.04576575399994,72.105169989],[-94.0464574859999,72.1003278670001],[-94.05101477799994,72.09418366100012],[-94.0581762359999,72.08808014500015],[-94.06468665299988,72.08372630400005],[-94.06753495999989,72.0829531920001],[-94.08775794199993,72.06354401200011],[-94.21837317599991,72.05255768400013],[-94.23387610599991,72.03241608300011],[-94.20653235599985,72.02326080900004],[-94.16274980399987,72.02179596600008],[-94.12901770699989,72.02460358300011],[-94.1034236319999,72.03485748900005],[-94.08092200399992,72.04999420800004],[-94.0567927729999,72.06264883000013],[-94.02660071499989,72.06557851800015],[-94.07380123599987,72.02460358300011],[-94.03282630099994,72.00409577000009],[-94.04849199099993,72.00023021000008],[-94.06753495999989,71.997951565],[-94.06578528599991,71.99457428600009],[-94.06322180899991,71.98761627800009],[-94.06012936099984,71.9836286480001],[-94.0882869129999,71.97939687700008],[-94.12389075399996,71.98525625200013],[-94.19041907499988,72.00409577000009],[-94.29133053299992,72.00291575700005],[-94.3449600899999,72.025620835],[-94.57827714799993,72.0194766300001],[-94.60195878799993,72.010931708],[-94.60195878799993,72.01776764500003],[-94.61900794199988,72.01508209800012],[-94.74950110599988,72.01532623900009],[-95.14525305899991,71.96588776200012],[-95.17275956899994,71.97329336100002],[-95.16002356699987,71.98069896],[-95.10903886599988,71.99046458500013],[-95.10903886599988,71.997951565],[-95.19737708199995,71.99237702],[-95.21149654899996,71.99420807500015],[-95.2082413399999,72.00820547100012],[-95.19420325399997,72.02920156500005],[-95.19102942599991,72.04197825700011],[-95.19225012899992,72.04926178600012],[-95.19269771999993,72.059719143],[-95.18708248599992,72.06899648600016],[-95.15021725199995,72.07587311400006],[-95.08861243399991,72.1003278670001],[-95.19391842399995,72.09992096600011],[-95.20124264199987,72.11090729400014],[-95.1876521479999,72.11595286699999],[-95.12950598899992,72.11395905200006],[-95.10993404899997,72.11847565300012],[-95.07921301999988,72.13019440300009],[-94.79043535099991,72.1599388690001],[-94.84068762899989,72.16644928599999],[-95.11302649599986,72.13898346600014],[-95.17674719999991,72.15497467700006],[-95.16136633999989,72.16071198100003],[-95.16852779899992,72.16771067900011],[-95.19473222599996,72.17914459800006],[-95.21182206899991,72.196722723],[-95.21385657499994,72.20477936400012],[-95.21149654899996,72.217027085],[-95.20555579299995,72.23021067900005],[-95.19888261599989,72.24013906500015],[-95.1932673819999,72.25116608299999],[-95.19102942599991,72.26797109600001],[-95.18781490799995,72.27496979400007],[-95.17369544199991,72.28107330900016],[-95.17052161399995,72.28872304900001],[-95.17149817599994,72.29596588700004],[-95.17674719999991,72.30923086100016],[-95.17430579299989,72.3231875670001],[-95.16462154899992,72.34393952000012],[-95.16368567599994,72.35419342700006],[-95.17080644399991,72.36920807500009],[-95.18309485599985,72.3778343770001],[-95.1975805329999,72.38475169499999],[-95.21149654899996,72.39516836100006],[-95.22911536399991,72.41811758000007],[-95.23570716099997,72.4308942730001],[-95.23534094999985,72.43952057500012],[-95.21857662699995,72.44415924700003],[-95.14317786399987,72.43618398600007],[-95.1568904289999,72.44281647300015],[-95.19847571499989,72.45661041900014],[-95.16624915299984,72.45612213700015],[-95.15062415299988,72.45799388200014],[-95.1357315749999,72.46344635600018],[-95.16950436099988,72.48167552300005],[-95.18468176999988,72.49249909100013],[-95.1980688139999,72.5229352890001],[-95.21524003799989,72.53241608300011],[-95.23664303299995,72.5372582050001],[-95.28587805899986,72.53807200700003],[-95.30020097599996,72.53998444200006],[-95.31387285099989,72.54535553600012],[-95.31969153599994,72.551947333],[-95.32754472599993,72.56972890800007],[-95.33128821499986,72.57330963700007],[-95.33527584499993,72.575628973],[-95.34154212099988,72.58112213700004],[-95.34699459499993,72.58787669499999],[-95.34862219999992,72.59381745000009],[-95.34398352799991,72.59931061400012],[-95.33503170499998,72.60276927300012],[-95.31387285099989,72.60748932500003],[-95.33385169199995,72.61733633000016],[-95.36318925699987,72.63971588700018],[-95.38280188699994,72.64842357000008],[-95.43651282499991,72.65704987200017],[-95.44737708199987,72.66364166900014],[-95.44908606699988,72.67088450700008],[-95.44831295499998,72.67780182500015],[-95.45173092399997,72.68317291900003],[-95.54674231699988,72.68964264500012],[-95.59268144399996,72.69944896000005],[-95.58824622299989,72.72410716400005],[-95.59487870999995,72.72467682500003],[-95.6093643869999,72.73037344],[-95.59040279899989,72.74339427299999],[-95.56493079299989,72.74457428600012],[-95.51309160099986,72.73777903899999],[-95.53014075399994,72.74384186400009],[-95.57457434799994,72.77130768400004],[-95.55724036399997,72.78229401200018],[-95.56358801999987,72.78628164300007],[-95.6218969389999,72.78644440300002],[-95.64785722599989,72.79096100500009],[-95.66893469999991,72.8021507830001],[-95.67760169199991,72.82318756700012],[-95.67381751199989,72.85211823100003],[-95.66299394399987,72.88491445500011],[-95.64586341099994,72.91339752800006],[-95.62295488199996,72.92963288],[-95.63829505099991,72.93675364800005],[-95.65135657499987,72.94635651200012],[-95.66051184799996,72.95856354400007],[-95.66397050699996,72.97394440300002],[-95.67487545499995,72.98281484600007],[-95.69766191299995,72.98908112200002],[-95.71739661399991,72.99713776200015],[-95.71922766799989,73.01154205900004],[-95.70592200399994,73.01752350500006],[-95.6854548819999,73.01825592700008],[-95.66470292899989,73.02260976800005],[-95.65029863199993,73.03949616100006],[-95.64875240799998,73.05744049700012],[-95.65782630099989,73.06712474200006],[-95.67341061099988,73.07489655200008],[-95.69127356699994,73.08722565300012],[-95.65160071499992,73.11859772300006],[-95.63467363199993,73.12641022300014],[-95.60094153599994,73.13068268400013],[-95.53189042899993,73.12636953300016],[-95.51325436099984,73.13373444200006],[-95.52261308499988,73.13715241100005],[-95.52977454299992,73.143540757],[-95.53701738199993,73.15180084800006],[-95.54605058499996,73.15639883000001],[-95.57091223899991,73.15839264500015],[-95.58202063699991,73.16233958500013],[-95.58047441299988,73.18378327000006],[-95.58885657499985,73.210394598],[-95.58853105399993,73.23021067900011],[-95.56090247299991,73.23126862200009],[-95.56090247299991,73.23802317900011],[-95.57730058499993,73.239406643],[-95.58975175699993,73.24673086100002],[-95.59459387899992,73.25820547100015],[-95.58824622299989,73.2722028670001],[-95.59723873599988,73.279933986],[-95.59569251199986,73.28807200700014],[-95.5912166009999,73.29588450700011],[-95.59166419199991,73.30263906500006],[-95.60741126199986,73.31244538],[-95.6414281889999,73.32265859600012],[-95.65029863199993,73.33368561400007],[-95.64049231699991,73.33380768400015],[-95.63133704299992,73.33616771000003],[-95.62291419199997,73.34072500200016],[-95.61554928299995,73.34731679900013],[-95.62197831899988,73.359076239],[-95.61851966099988,73.36855703300002],[-95.60191809799991,73.388902085],[-95.62653561099992,73.39301178600006],[-95.64427649599992,73.40546295800006],[-95.67389889199987,73.43984609600001],[-95.68517005099994,73.46320221600011],[-95.67479407499985,73.48208242400011],[-95.65274003799996,73.49616120000017],[-95.6292211579999,73.50495026200004],[-95.64146887899997,73.5099144550001],[-95.6477758449999,73.51166413],[-95.65648352799991,73.51239655200011],[-95.63585364499997,73.52814362200017],[-95.65143795499993,73.54071686400005],[-95.70494544199988,73.55955638200011],[-95.67349199099995,73.55951569200012],[-95.65831458199997,73.56159088700004],[-95.6434626939999,73.56704336100006],[-95.65217037699989,73.57123444199999],[-95.65916907499987,73.57636139500012],[-95.67015540299994,73.586859442],[-95.63292395699995,73.59454987200012],[-95.61294511599995,73.596380927],[-95.5985001289999,73.5906436220001],[-95.58584550699993,73.581244208],[-95.56989498599984,73.57542552300013],[-95.55370032499988,73.57477448100009],[-95.54043535099994,73.58071523600002],[-95.55553137899994,73.59369538000003],[-95.59943600199989,73.614976304],[-95.64232337099989,73.63031647300012],[-95.72541256399984,73.64150625200013],[-95.68455969999991,73.66791413000014],[-95.68968665299991,73.67617422100012],[-95.71922766799989,73.6905785180001],[-95.70295162699995,73.6943220070001],[-95.6703181629999,73.69773997600014],[-95.65648352799991,73.70416901200002],[-95.66429602799988,73.70661041900017],[-95.6844376289999,73.71723053600012],[-95.66234290299994,73.73094310100004],[-95.63849850199995,73.73517487200017],[-95.58202063699991,73.73773834800006],[-95.44640051999991,73.77411530200006],[-95.43199622299993,73.77619049700017],[-95.41173255099994,73.77643463700012],[-95.3919978509999,73.77423737200003],[-95.37938391799992,73.76902903900013],[-95.37214107999988,73.76162344000015],[-95.36384029899992,73.7549502620001],[-95.3539119129999,73.751857815],[-95.30821692599987,73.76764557500015],[-95.27721106699997,73.76813385600003],[-95.24592037699992,73.759711005],[-95.08812415299994,73.69082265800012],[-95.02135169199988,73.67059967700011],[-94.80370032499985,73.64891185100014],[-94.62242591099991,73.65574778900005],[-94.68480383999986,73.6850039730001],[-94.84019934799991,73.69159577000015],[-94.91047115799995,73.710394598],[-94.92625891799989,73.71869538000009],[-94.98680579299989,73.74176666900013],[-95.00690670499992,73.7553571640001],[-95.0176895819999,73.76064687700006],[-95.07428951699991,73.778265692],[-95.1004125639999,73.79279205900004],[-95.1158748039999,73.81403229400003],[-94.95763098899994,73.83392975500011],[-94.95763098899994,73.84137604400009],[-94.98005123599984,73.84503815300005],[-95.02342688699991,73.85838450700005],[-95.04759680899991,73.861232815],[-95.07896887899994,73.85708242400014],[-95.10903886599988,73.84760163000006],[-95.11554928299998,73.84275950700008],[-95.12393144399994,73.83071523600016],[-95.12950598899992,73.827093817],[-95.15538489499995,73.82729726800015],[-95.20091712099992,73.84931061400006],[-95.24705969999985,73.85858795800003],[-95.27375240799995,73.86762116100012],[-95.29918372299987,73.87954336100016],[-95.31761633999992,73.89199453300007],[-95.33092200399993,73.91746653899999],[-95.32750403599994,73.946722723],[-95.31309973899997,73.97370026200015],[-95.29336503799993,73.99217357],[-95.24864661399988,74.0099144550001],[-95.04161536399988,74.0267601580001],[-94.94668535099996,74.04767487200014],[-94.85936438699987,74.05683014500012],[-94.81655839799987,74.06683991100012],[-94.73884029899995,74.09772370000015],[-94.72057044199988,74.10138580900012],[-94.65290279899995,74.09398021000014],[-94.46231035099994,74.09756094],[-94.43687903599992,74.10138580900012],[-94.42544511599988,74.107123114],[-94.40819251199989,74.12254466400013],[-94.39586341099994,74.12872955900009],[-94.37393144399991,74.13226959800006],[-93.91901607999998,74.14008209800006],[-93.88304602799991,74.12913646],[-93.82652747299989,74.08795807500003],[-93.79320227799991,74.07802969000012],[-93.75723222599993,74.07713450700012],[-93.7249242829999,74.08779531500006],[-93.75011145699997,74.09454987200009],[-93.75357011599988,74.10700104400003],[-93.75300045499992,74.12189362200017],[-93.76593990799992,74.13556549700012],[-93.72984778599997,74.16083405200006],[-93.6675512359999,74.17283763199998],[-93.46129309799991,74.177964585],[-93.27257239499988,74.177964585],[-93.0176488919999,74.14154694200012],[-92.79995683499996,74.13182200700008],[-92.76976477799985,74.12372467700006],[-92.75108801999997,74.10830312700001],[-92.76500403599994,74.093207098],[-92.74705969999991,74.0851097680001]]],[[[-121.5807999339999,74.55585358300014],[-121.42951412699989,74.53025950700008],[-121.27733313699993,74.53278229400007],[-121.25723222599987,74.53025950700008],[-121.2108455069999,74.51235586100002],[-121.13239498599985,74.50995514500006],[-121.01158606699993,74.47040436400012],[-120.9843643869999,74.45087311400015],[-120.98151607999988,74.44472890800016],[-120.97752844999991,74.42357005400005],[-120.9688614569999,74.42153554900013],[-120.9347224599999,74.42357005400005],[-120.54564368399986,74.351284084],[-120.1565649079999,74.27899811400012],[-119.98086503799995,74.27033112200003],[-119.94107011599996,74.26316966399999],[-119.85952714799991,74.23651764500015],[-119.56558183499995,74.23895905200008],[-119.51829993399988,74.231146552],[-119.55378170499989,74.22418854400009],[-119.6288956369999,74.2315127620001],[-119.6622208319999,74.225002346],[-119.6474503249999,74.19521719],[-119.68504798099993,74.16571686400012],[-119.81798255099994,74.10431549700006],[-119.8294571609999,74.09137604400003],[-119.83360755099991,74.07074616100003],[-119.82201087099992,74.05540599200008],[-119.79523678299991,74.04319896],[-119.76524817599993,74.03534577],[-119.73672441299993,74.03314850500011],[-119.73013261599988,74.04645416900003],[-119.7382706369999,74.05707428600009],[-119.75072180899991,74.06671784100014],[-119.75723222599991,74.07721588700012],[-119.74693762899987,74.09731679900015],[-119.72248287699993,74.110012111],[-119.62120520699987,74.13434479400009],[-119.57921301999991,74.15534088700004],[-119.54165605399989,74.18256256700012],[-119.5074356759999,74.21409739800013],[-119.47988847599989,74.22614166900014],[-119.44343014199983,74.22606028900007],[-119.37425696499992,74.21747467700006],[-119.23721269399994,74.22728099199999],[-119.14435787699993,74.20905182500009],[-119.12462317599991,74.20184967700007],[-119.10732988199992,74.184027411],[-119.09797115799986,74.16429271000005],[-119.10065670499986,74.15204498899999],[-119.13467363199987,74.12872955900009],[-119.09504146999986,74.12506745000003],[-119.07677161399987,74.11994049700003],[-119.06639563699987,74.10830312700001],[-119.06924394399994,74.09052155200014],[-119.08519446499992,74.08104075700011],[-119.12100175699993,74.07416413000011],[-119.13963782499994,74.06769440300012],[-119.14915930899991,74.05963776200018],[-119.16197669199994,74.03314850500011],[-119.1691788399999,74.0233421900001],[-119.17756100199995,74.01447174700003],[-119.18496660099993,74.00470612200009],[-119.18932044199993,73.99217357],[-119.14781653599992,73.99526601800007],[-119.06895911399988,74.01862213700015],[-119.02481035099991,74.01886627800012],[-118.99644934799996,74.00910065300017],[-118.98257402299988,74.007269598],[-118.96336829299993,74.01211172100007],[-118.9518936839999,74.0175641950001],[-118.92739824099993,74.03400299700012],[-118.9085587229999,74.05316803600009],[-118.87767493399987,74.07721588700012],[-118.8610733709999,74.08441803600014],[-118.82209225199992,74.08991120000017],[-118.80508378799993,74.10138580900012],[-118.79552161399995,74.12759023600016],[-118.81590735599985,74.13959381700009],[-118.84813391799989,74.14793528900005],[-118.87393144399992,74.16290924700017],[-118.88174394399992,74.17304108300014],[-118.88316809799987,74.17869700700011],[-118.87633216099997,74.18329498900006],[-118.85973059799991,74.19017161700008],[-118.83849036399992,74.19554271000011],[-118.7923884759999,74.20050690300017],[-118.7254125639999,74.22077057500009],[-118.62531490799985,74.22711823100012],[-118.55577551999994,74.241929429],[-118.45677649599988,74.2470156920001],[-118.40274003799995,74.25682200700005],[-118.06598873599991,74.28070709800012],[-117.74124101449989,74.25659821150005],[-117.41649329299992,74.23248932500017],[-117.14175370999988,74.1600202495001],[-116.86701412699996,74.08755117400003],[-116.62669837149994,73.99443187050012],[-116.3863826159999,73.90131256700012],[-116.3626602859999,73.885443427],[-116.32896887899987,73.86884186400012],[-116.24567623599987,73.86107005400014],[-116.18219967399993,73.82648346600006],[-115.97642981699995,73.76569245000012],[-115.92300370999993,73.73004791900014],[-115.7351781889999,73.68309153900013],[-115.64635169199995,73.67649974200003],[-115.61904863199989,73.66885000200001],[-115.60985266799992,73.66351959800015],[-115.58433997299991,73.64150625200013],[-115.56895911399998,73.63446686400009],[-115.53278561099985,73.62543366100005],[-115.49437415299992,73.6027285830001],[-115.39940344999991,73.56704336100006],[-115.35631262899987,73.54181549700012],[-115.33356686099984,73.5241153020001],[-115.32363847599994,73.50869375200007],[-115.3190811839999,73.4882673200001],[-115.32054602799987,73.48065827000006],[-115.33079993399988,73.47768789300015],[-115.34959876199994,73.47654857000009],[-115.40127519399987,73.467962958],[-115.41673743399988,73.46059804900001],[-115.45002193899988,73.43431224199999],[-115.45775305899991,73.42987702000012],[-115.5372615229999,73.424790757],[-115.55736243399988,73.41925690300017],[-115.5909317699999,73.40424225500006],[-115.75377356699991,73.35748932500017],[-115.97984778599988,73.32485586100002],[-116.21849524599985,73.28465403900012],[-116.4590551419999,73.26117584800005],[-116.5030004549999,73.23802317900011],[-116.71271725199998,73.201320705],[-116.76862545499984,73.17877838700004],[-116.78880774599986,73.17365143400012],[-116.85179602799988,73.16657135600015],[-116.90705318899991,73.14183177299999],[-116.98322506399988,73.11969635600009],[-117.14720618399993,73.09345123900007],[-117.19994055899991,73.06952545800011],[-117.21548417899993,73.066107489],[-117.3902074859999,73.05548737200014],[-117.68529212099989,72.98114655200004],[-117.76109778599995,72.97174713700004],[-117.87287350199988,72.92963288],[-117.98859615799991,72.90493398600002],[-118.04214433499992,72.885891018],[-118.23802649599989,72.85757070500007],[-118.43106035099991,72.80849844000012],[-118.46129309799991,72.79531484600007],[-118.48696855399987,72.77505117400007],[-118.52196204299987,72.75771719000006],[-118.57298743399987,72.75128815300015],[-118.7176407539999,72.74876536700005],[-118.76789303299986,72.73948802299999],[-118.90538489499994,72.68870677300005],[-119.12319902299993,72.63703034100011],[-119.14460201699988,72.63471100500014],[-119.16388912699993,72.62982819200006],[-119.1726781889999,72.61790599200013],[-119.17760169199994,72.60333893400009],[-119.18561764199988,72.59031810100011],[-119.18980872299991,72.5790469420001],[-119.1800024079999,72.55239492400008],[-119.18187415299987,72.53856028899999],[-119.19359290299984,72.53025950700011],[-119.23460852799987,72.5147972680001],[-119.25072180899991,72.50438060100002],[-119.24624589799987,72.48566315300003],[-119.26280676999993,72.47260163000006],[-119.28697669199993,72.46198151200012],[-119.30532792899987,72.450384833],[-119.31550045499985,72.4339867210001],[-119.32652747299989,72.40818919500008],[-119.32957923099988,72.38446686400006],[-119.31590735599994,72.37409088700015],[-119.30479895699992,72.37006256700009],[-119.3130997389999,72.36107005400007],[-119.32876542899986,72.3517927100001],[-119.34015865799984,72.34674713700018],[-119.38638261599992,72.33584219],[-119.43659420499989,72.31818268400009],[-119.65099036399988,72.27387116100014],[-119.77281653599991,72.2295596370001],[-119.8056534499999,72.22321198100013],[-119.83039303299988,72.22284577000006],[-119.90184485599994,72.23065827000015],[-119.92682857999986,72.23045482],[-119.97598222599989,72.22467682500003],[-120.17609615799986,72.23566315300009],[-120.1966853509999,72.24433014500009],[-120.13951575399992,72.25421784100008],[-120.12779700399993,72.26422760600018],[-120.15396074099989,72.2709821640001],[-120.1919652989999,72.27399323100012],[-120.2295629549999,72.27122630400005],[-120.25475012899996,72.26080963700015],[-120.26121985599988,72.24184804900015],[-120.24331620999992,72.23065827000015],[-120.1966853509999,72.217027085],[-120.18346106699995,72.20429108300004],[-120.17788652299994,72.19122955900015],[-120.17389889199988,72.17820872599998],[-120.15465247299993,72.15143463700018],[-120.15274003799986,72.13996002800003],[-120.15807044199994,72.12836334800012],[-120.16877193899987,72.11395905200006],[-120.19774329299987,72.08502838700005],[-120.30654863199989,72.01776764500003],[-120.34919186099991,71.99900950700005],[-120.39476477799985,71.98444245000003],[-120.43399003799988,71.9643008480001],[-120.45738684799997,71.92902252800015],[-120.41047115799982,71.89996979400017],[-120.3880916009999,71.88231028900007],[-120.3915909499999,71.8744570980001],[-120.40343176999994,71.86383698100003],[-120.40672766799989,71.83930084800004],[-120.40680904899997,71.811672268],[-120.40892493399988,71.79181549700012],[-120.41991126199986,71.76434967700006],[-120.42162024599985,71.74921295800006],[-120.41266842399992,71.73574453300006],[-120.3915909499999,71.71332428600006],[-120.3833715489999,71.70148346600011],[-120.3824356759999,71.69171784100017],[-120.38780676999988,71.68235911700005],[-120.40607662699993,71.66327545800006],[-120.42259680899993,71.63483307500003],[-120.51553300699992,71.54319896000014],[-120.63524329299992,71.4914411480001],[-120.76414954299987,71.47329336100002],[-120.99250240799985,71.428859768],[-121.20555579299993,71.41107819200012],[-121.42316646999988,71.38031647300012],[-121.60814368399986,71.40143463700007],[-121.5452774729999,71.41998932500015],[-121.5379532539999,71.430650132],[-121.56680253799992,71.45233795800006],[-121.60350501199993,71.46442291900016],[-121.65192623599982,71.46971263200005],[-121.70055091099988,71.46808502800003],[-121.73786373599985,71.45917389500009],[-121.85456295499984,71.407660223],[-121.93106035099991,71.36050039300012],[-121.9803767569999,71.34686920800007],[-122.06061764199985,71.29840729400009],[-122.1229548819999,71.27081940300016],[-122.15607662699996,71.261175848],[-122.23302161399997,71.25311920800007],[-122.31989498599985,71.23383209800012],[-122.4017227859999,71.22601959800015],[-122.62954667899989,71.17495351800005],[-122.67198645699995,71.14948151200015],[-122.6969294909999,71.13910553600006],[-122.72752844999991,71.11408112200014],[-122.75328528599994,71.09979889500006],[-122.79775956899995,71.08779531500012],[-123.09992428299982,71.08462148600007],[-123.14989173099985,71.09296295800014],[-123.25527910099989,71.13043854400014],[-123.35236568899991,71.18284739800012],[-123.43569902299993,71.24860260600012],[-123.55671139199993,71.39813873900003],[-123.62352454299985,71.46222565300017],[-123.66917883999987,71.49481842700013],[-123.71849524599986,71.52122630400011],[-123.73452714799986,71.52716705900015],[-123.79792232999988,71.53864166900007],[-123.80821692599991,71.54254791900009],[-123.81843014199985,71.55182526200004],[-123.83511308499988,71.57217031500011],[-123.93952389199991,71.65326569200006],[-124.06456458199987,71.70038483300006],[-124.36312822149993,71.75250885650014],[-124.66169186099988,71.80463288000014],[-124.87319902299993,71.85561758000013],[-124.96861731699997,71.89057038000006],[-125.23228919199994,71.94131094],[-125.25340735599987,71.95571523600007],[-125.02749589799994,71.96320221600014],[-125.01183020699995,71.95905182500009],[-124.98200436099987,71.94550202000012],[-124.96788489499993,71.94269440300009],[-124.94806881399992,71.94456614800005],[-124.9402970039999,71.94989655200011],[-124.94420325399993,71.95750560100005],[-124.95889238199992,71.96662018400013],[-125.00670325399993,71.978989976],[-125.27196204299986,71.98078034100017],[-125.56663977799987,71.973781643],[-125.79043535099989,71.94916413],[-125.87755286399991,71.96401601800015],[-125.80833899599993,71.97626373900012],[-125.78498287699985,71.98725006700009],[-125.76060950399987,72.00385163000014],[-125.7415665359999,72.02484772300006],[-125.7307836579999,72.0587832700001],[-125.72443600199985,72.06854889500006],[-125.71934973899992,72.07965729400009],[-125.72020423099993,72.09349192899998],[-125.73224850199983,72.10993073100009],[-125.75064042899987,72.11554596600008],[-125.79527747299996,72.11395905200006],[-125.75206458199996,72.14769114800004],[-125.69017493399987,72.16840241100006],[-125.62441972599989,72.1772321640001],[-125.56940670499984,72.17544179900013],[-125.56940670499984,72.1828473980001],[-125.6299535799999,72.185492255],[-125.65664628799992,72.1937523460001],[-125.65754146999984,72.20962148600002],[-125.66608639199985,72.21271393400009],[-125.6714981759999,72.21723053600006],[-125.67926998599991,72.23065827000015],[-125.67088782499984,72.23745351800007],[-125.6602677069999,72.25409577000012],[-125.65099036399994,72.25739166900014],[-125.57282467399993,72.24872467700006],[-125.54857337099985,72.25421784100008],[-125.50234941299993,72.2748884140001],[-125.49054928299988,72.27789948100012],[-125.4827367829999,72.28558991100012],[-125.4809464179999,72.30036041900003],[-125.48737545499992,72.31024811400012],[-125.5038956369999,72.30267975500009],[-125.51720130099991,72.29376862200006],[-125.5276586579999,72.29222239800002],[-125.53237870999989,72.29840729400017],[-125.5284317699999,72.31264883000007],[-125.52037512899997,72.3229027360001],[-125.50845292899993,72.33291250200006],[-125.4874161449999,72.34674713700018],[-125.47256425699995,72.35260651200002],[-125.4394425119999,72.36090729400011],[-125.42471269399992,72.36717357000005],[-125.41641191299993,72.37417226800012],[-125.39061438699991,72.4020042990001],[-125.40282141799989,72.40656159100006],[-125.42711341099994,72.40989817900008],[-125.43838456899994,72.41567617400013],[-125.4156794909999,72.42161692900005],[-125.34284420499986,72.42251211100013],[-125.36314856699994,72.43886953300016],[-125.35383053299991,72.44887929900013],[-125.30870520699995,72.46344635600018],[-125.31135006399984,72.478949286],[-125.29918372299996,72.48908112200006],[-125.25914466099994,72.5004336610001],[-125.22032630099991,72.50507233300014],[-125.17540442599991,72.51813385600012],[-125.06065833199995,72.56561920800011],[-125.03270423099993,72.56826406500004],[-124.97288977799988,72.56586334800006],[-124.95238196499992,72.56964752800009],[-124.97533118399991,72.59271881700006],[-124.96605383999986,72.60748932500003],[-125.0388077459999,72.609808661],[-125.0718481109999,72.61774323100015],[-125.10260982999985,72.63471100500014],[-125.08267167899987,72.639593817],[-125.05923417899989,72.640082098],[-125.03868567599994,72.64301178600012],[-125.02749589799994,72.655218817],[-125.03473873599985,72.65656159100008],[-125.04820716099995,72.66107819200012],[-125.05540930899988,72.66205475500011],[-125.0445450509999,72.67304108300006],[-125.0264379549999,72.67267487200014],[-125.00560462099989,72.66868724199999],[-124.98648027299991,72.66889069200012],[-124.97374426999988,72.67450592700011],[-124.96304277299996,72.68260325700005],[-124.94554602799991,72.70302969000012],[-124.96035722599989,72.70892975500006],[-125.02065995999992,72.70302969000012],[-125.00942949099992,72.71735260600012],[-124.98932857999986,72.73086172100008],[-124.97386633999984,72.74518463700015],[-124.97663326699991,72.76170482000005],[-124.98623613199987,72.76947663000006],[-125.00706946499986,72.78021881700005],[-125.01756751199994,72.78900788000011],[-125.0215551419999,72.79759349200005],[-125.02269446499986,72.8172875020001],[-125.02749589799994,72.82656484600012],[-125.0384415359999,72.83246491100009],[-125.08275305899984,72.84023672100007],[-125.10789954299993,72.854437567],[-125.11827551999993,72.86347077],[-125.11343339799994,72.86749909100017],[-125.09951738199989,72.87173086100007],[-125.08433997299987,72.87970612200006],[-125.06822669199991,72.88418203300002],[-125.03473873599985,72.87201569200012],[-124.99120032499985,72.87002187700007],[-124.97663326699991,72.86408112200014],[-124.95148678299982,72.85708242400007],[-124.77700761599989,72.89545319199999],[-124.70726477799985,72.88792552300005],[-124.5757543609999,72.90827057500003],[-124.52476966099988,72.92267487200009],[-124.49038652299994,72.92511627800003],[-124.47598222599989,72.933050848],[-124.47923743399991,72.93976471600014],[-124.52721106699991,72.95685455900009],[-124.51935787699985,72.96271393400004],[-124.4974666009999,72.97353750200013],[-124.49307206899992,72.97736237200006],[-124.5000707669999,72.984116929],[-124.51561438699989,72.98607005400011],[-124.54430091099995,72.98480866100012],[-124.56676184799994,72.98761627800015],[-124.59434973899987,72.99506256700015],[-124.62018795499989,73.00600820500001],[-124.63707434799989,73.018988348],[-124.62340247299996,73.02578359600012],[-124.71906490799992,73.02578359600012],[-124.70441646999991,73.01447174700014],[-124.69855709499988,73.01154205900004],[-124.72630774599995,73.00877513200008],[-124.75475012899996,73.01752350500006],[-124.85069739499995,73.0635440120001],[-124.86538652299994,73.07550690300003],[-124.85993404899992,73.09031810100002],[-124.84968014199991,73.09552643400009],[-124.8211156889999,73.1063500020001],[-124.81525631399987,73.11082591400003],[-124.81240800699992,73.12103913],[-124.80549068899992,73.130072333],[-124.79637610599991,73.13715241100005],[-124.78726152299993,73.14183177299999],[-124.6664119129999,73.15448639500015],[-124.6439102859999,73.169826565],[-124.65013587099986,73.17112864800002],[-124.65929114499995,73.1742210960001],[-124.66783606699988,73.17829010600003],[-124.67186438699994,73.182806708],[-124.67096920499986,73.19367096600008],[-124.66584225199985,73.19757721600007],[-124.65831458199999,73.19928620000009],[-124.65013587099986,73.20331452000015],[-124.59837805899986,73.23851146000003],[-124.58584550699995,73.24428945500007],[-124.57412675699996,73.25120677300008],[-124.54088294199995,73.29889557500003],[-124.4893692699999,73.34389883000001],[-124.46922766799993,73.35317617400007],[-124.41779537699985,73.36383698100009],[-124.4037166009999,73.37466054900001],[-124.40562903599995,73.39004140800013],[-124.43724524599993,73.40668366099999],[-124.44530188699989,73.41925690300017],[-124.43431555899991,73.42853424700003],[-124.40916907499994,73.43768952],[-124.3065079419999,73.46019114800009],[-124.29181881399988,73.46800364799999],[-124.31493079299995,73.47768789300015],[-124.27847245999989,73.4843610700001],[-124.1812231109999,73.48395416900011],[-124.15729732999984,73.50495026200004],[-124.17096920499985,73.50495026200004],[-124.15257727799991,73.51935455900012],[-124.09007727799988,73.52667877800012],[-124.06794186099991,73.53969961100002],[-124.0684301419999,73.5444196640001],[-124.0747777989999,73.57046133000007],[-124.07022050699987,73.57807038000011],[-124.04841061099984,73.58698151200015],[-124.04059811099984,73.59438711100013],[-124.0519099599999,73.60081614800005],[-124.06558183499995,73.61115143400015],[-124.07701575399989,73.62323639500006],[-124.08161373599985,73.63532135600018],[-124.07384192599993,73.65277741100014],[-124.05614173099993,73.66185130400014],[-124.01329505099993,73.66885000200001],[-123.91710364499991,73.69672272300005],[-123.86579342399988,73.69717031500005],[-123.84142005099993,73.70111725500006],[-123.82835852799985,73.71723053600012],[-123.8484594389999,73.72968170800013],[-123.82909094999987,73.74404531500004],[-123.77375240799988,73.76561107000012],[-123.7923477859999,73.78095123900009],[-123.82249915299991,73.814195054],[-123.84264075399993,73.827093817],[-123.88280188699986,73.8387718770001],[-124.14533443899988,73.85106028900005],[-124.18521074099995,73.86465078300002],[-124.21324622299987,73.87921784100003],[-124.22508704299992,73.89044830900004],[-124.22008216099988,73.90346914300012],[-124.1976212229999,73.92328522300012],[-124.20889238199989,73.92597077000003],[-124.23957271999988,73.94009023600013],[-124.24754798099993,73.94599030200007],[-124.26105709499991,73.96116771000008],[-124.26716061099991,73.96430084800015],[-124.27940833199996,73.96613190300012],[-124.30703691299988,73.97504303600006],[-124.35496985599988,73.98395416900009],[-124.35993404899992,73.98826732000002],[-124.34227454299992,73.99217357],[-124.35582434799987,74.00787995000015],[-124.38927161399994,74.03070709800005],[-124.3838598299999,74.03937409100017],[-124.4035538399999,74.05296458500011],[-124.44579016799986,74.06484609600007],[-124.46580969999991,74.07416413000011],[-124.4521378249999,74.080308335],[-124.4628800119999,74.09308502800003],[-124.47256425699986,74.10830312700001],[-124.45230058499993,74.107123114],[-124.43932044199995,74.11058177299998],[-124.43464107999985,74.11961497600002],[-124.43907630099991,74.13556549700012],[-124.44945227799991,74.148138739],[-124.46275794199994,74.15444570500013],[-124.47679602799988,74.15900299700009],[-124.4893692699999,74.16632721600008],[-124.49681555899986,74.17739492400013],[-124.49958248599991,74.18842194200009],[-124.50328528599995,74.19863515800002],[-124.5139054029999,74.20722077000012],[-124.53140214799994,74.21767812700001],[-124.52989661399991,74.22264232000005],[-124.52212480399989,74.22776927300008],[-124.52106686099984,74.23859284100017],[-124.54564368399984,74.26512278900013],[-124.58177649599988,74.27081940300012],[-124.66441809799996,74.26593659100006],[-124.69391842399992,74.27570221600017],[-124.67247473899991,74.28961823100015],[-124.60293535099989,74.31370677299999],[-124.64810136599993,74.32493724199999],[-124.75137285099994,74.3163109400001],[-124.78726152299993,74.33421458500013],[-124.75568600199985,74.34857819200003],[-124.68321692599991,74.3517113300001],[-124.41002356699993,74.373277085],[-124.23127193899991,74.383246161],[-124.12132727799985,74.37636953300007],[-124.10265051999995,74.38263580900004],[-124.10464433499992,74.39862702000012],[-124.08682206899994,74.40403880400008],[-123.73062089799986,74.41201406500011],[-123.68350175699986,74.42597077],[-123.47740637899996,74.426459052],[-123.3035375639999,74.44940827000009],[-122.98623613199992,74.45237864799998],[-122.62319902299994,74.46308014500003],[-122.3974503249999,74.47833893400018],[-122.11681067599994,74.49664948100006],[-121.78595943899991,74.54319896000008],[-121.5807999339999,74.55585358300014]]],[[[-97.27562415299988,74.6048851580001],[-97.26036536399991,74.59796784100008],[-97.26943925699993,74.58144765800002],[-97.29100501199991,74.56403229400014],[-97.37706458199992,74.51235586100002],[-97.39606686099992,74.50836823100003],[-97.45213782499992,74.51235586100002],[-97.48631751199991,74.50617096600014],[-97.63621985599994,74.45994700700014],[-97.67870032499991,74.45709870000009],[-97.69375566299992,74.45962148600002],[-97.72345943899987,74.469224351],[-97.73680579299985,74.471380927],[-97.76927649599995,74.4757347680001],[-97.78648841099997,74.48200104400003],[-97.79478919199994,74.49188873900015],[-97.75723222599993,74.51976146],[-97.6346736319999,74.546616929],[-97.62002519399988,74.55707428600005],[-97.61807206899992,74.57404205900004],[-97.54198157499985,74.58958567900012],[-97.51366126199991,74.60175202000012],[-97.53408769399988,74.60175202000012],[-97.50304114499994,74.62303294500002],[-97.4583634109999,74.63056061400006],[-97.37022864499988,74.62905508000001],[-97.27562415299988,74.6048851580001]]],[[[-95.36229407499988,74.59080638200005],[-95.2667537099999,74.54360586100007],[-95.25560462099986,74.5187848980001],[-95.31387285099989,74.49803294500013],[-95.34959876199991,74.49591705900012],[-95.71760006399987,74.53253815300003],[-95.77668209499987,74.55316803600006],[-95.8418676419999,74.56488678600006],[-95.87002519399988,74.58124420800006],[-95.81582597599991,74.59625885600008],[-95.7955623039999,74.59870026200004],[-95.75462805899988,74.58881256700012],[-95.73281816299993,74.58746979400003],[-95.75210527299987,74.61448802300008],[-95.7122289699999,74.63202545800011],[-95.65664628799996,74.64109935100011],[-95.56322180899988,74.64288971600011],[-95.49258378799993,74.63336823100009],[-95.42357337099989,74.61554596600003],[-95.36229407499988,74.59080638200005]]],[[[-103.74522864499994,75.28790924700003],[-103.74693762899994,75.239243882],[-103.72158769399994,75.22882721600011],[-103.66710364499994,75.2180036480001],[-103.66665605399994,75.21580638200011],[-103.66759192599993,75.20726146],[-103.66710364499994,75.20502350500011],[-103.66104081899995,75.20327383],[-103.63841712099988,75.19953034100007],[-103.5994766919999,75.18121979400003],[-103.58580481699995,75.17715078300014],[-103.60411536399992,75.15546295800009],[-103.6422419909999,75.13572825700004],[-103.76268469999992,75.09064362200017],[-103.86725826699991,75.06443919500005],[-104.16364498599982,75.03725820500013],[-104.22948157499988,75.01886627800009],[-104.2571915359999,75.01850006700009],[-104.33934485599988,75.03245677300005],[-104.4693497389999,75.03510163000014],[-104.52122962099989,75.0446638040001],[-104.59585527299991,75.04946523600002],[-104.70555579299992,75.06903717700008],[-104.78856360599991,75.09808991100006],[-104.90648352799992,75.12409088700002],[-104.92955481699987,75.14109935100011],[-104.90929114499997,75.158392645],[-104.87002519399994,75.17177969],[-104.81436113199995,75.18231842700006],[-104.79991614499988,75.19501373900012],[-104.77814693899992,75.22553131700006],[-104.77139238199989,75.22894928600009],[-104.75377356699994,75.23285553600005],[-104.75023352799988,75.23550039300015],[-104.74982662699996,75.24494049700017],[-104.7480362619999,75.24909088700012],[-104.74400794199993,75.252183335],[-104.73062089799993,75.25633372600012],[-104.70213782499991,75.26154205900004],[-104.6887914699999,75.26650625200006],[-104.70856686099984,75.26581452000015],[-104.73106848899992,75.26845937700013],[-104.75291907499985,75.27338288],[-104.77065995999995,75.27952708500007],[-104.77065995999995,75.28701406500012],[-104.75108801999987,75.28937409100008],[-104.72838294199993,75.295803127],[-104.71491451699987,75.30459219000006],[-104.72288977799991,75.31427643400004],[-104.70225989499988,75.33315664300015],[-104.67686926999994,75.34601471600008],[-104.48180091099991,75.41494375200013],[-104.4032283189999,75.43260325700014],[-104.13093014199991,75.43561432500015],[-104.07241777299994,75.41669342700011],[-103.96882076699993,75.409857489],[-103.94896399599992,75.40314362200014],[-103.8936661449999,75.37567780200011],[-103.82054602799994,75.3666852890001],[-103.80492102799985,75.35521067900005],[-103.81143144399992,75.33698151200015],[-103.74522864499994,75.28790924700003]]],[[[-94.39391028599988,75.60423411700012],[-94.05150305899991,75.47418854400003],[-94.01915442599991,75.45148346600017],[-93.98741614499994,75.43927643400009],[-93.88878333199997,75.41669342700011],[-93.78612219999994,75.374416408],[-93.69017493399994,75.364976304],[-93.6765030589999,75.36204661700008],[-93.66869055899991,75.35480377800015],[-93.65660559799991,75.33466217700011],[-93.64924068899992,75.327866929],[-93.67975826699987,75.317816473],[-93.72215735599994,75.31342194200012],[-93.80003821499992,75.31427643400004],[-93.80003821499992,75.30744049700012],[-93.66783606699991,75.30267975500011],[-93.49937903599991,75.26801178600012],[-93.4972224599999,75.25934479400006],[-93.5089412099999,75.24225495000009],[-93.5227758449999,75.23086172100012],[-93.58031165299988,75.20502350500011],[-93.55850175699993,75.1890322940001],[-93.48473059799989,75.15322500200008],[-93.46226966099988,75.13507721600008],[-93.46703040299988,75.1198591170001],[-93.48741614499995,75.10683828300013],[-93.51203365799996,75.09516022300012],[-93.5058487619999,75.09031810100004],[-93.49156653599991,75.0740420590001],[-93.51130123599984,75.07225169500013],[-93.54991614499991,75.06268952000015],[-93.60777747299991,75.05532461100016],[-93.6263728509999,75.04889557500006],[-93.64240475199989,75.039943752],[-93.62214107999989,75.034369208],[-93.55288652299993,75.04677969000012],[-93.53453528599997,75.0446638040001],[-93.52204342399995,75.03880442900007],[-93.49840247299991,75.01886627800009],[-93.44884192599989,74.98786041900017],[-93.43097896999993,74.967474677],[-93.43691972599994,74.94432200700014],[-93.41877193899985,74.91836172100015],[-93.4121801419999,74.90436432500009],[-93.40900631399992,74.88910553600012],[-93.41136633999989,74.874457098],[-93.42015540299994,74.85004303600006],[-93.41649329299989,74.84072500200001],[-93.44041907499985,74.78864166900017],[-93.44310462099992,74.76927317900005],[-93.45889238199987,74.7499860700001],[-93.49543209499993,74.74339427300005],[-93.56663977799994,74.74510325700005],[-93.50413977799991,74.7409528670001],[-93.4722387359999,74.73444245000012],[-93.45738684799991,74.71775950700008],[-93.46666419199997,74.70376211100002],[-93.4893285799999,74.68939850500014],[-93.5331111319999,74.67059967699998],[-93.60765540299994,74.65420156500008],[-93.90143795499995,74.64520905200006],[-94.19522050699996,74.63621653900005],[-94.23204505099994,74.64264557500015],[-94.2680557929999,74.65460846600008],[-94.28624426999991,74.6576602230001],[-94.42463131399987,74.64020416900003],[-94.45116126199994,74.62905508000001],[-94.72419186099987,74.63178131700006],[-94.77330481699988,74.65257396000005],[-94.79010982999989,74.67454661699999],[-94.82860266799989,74.68512604400003],[-94.87120520699992,74.68455638200005],[-94.92100989499991,74.66376373900006],[-94.94562740799988,74.66596100500006],[-94.99547278599997,74.67682526200005],[-95.04385331899996,74.67804596600017],[-95.06696529899992,74.6820742860001],[-95.08861243399991,74.69049713700018],[-95.07994544199991,74.70197174700003],[-95.06094316299989,74.71845123900012],[-95.05382239499997,74.73143138200011],[-95.30540930899994,74.80548737200017],[-95.3207087879999,74.80719635600018],[-95.33560136599996,74.80438873900012],[-95.34642493399986,74.798041083],[-95.3547257149999,74.79096100500014],[-95.36229407499988,74.78607819200006],[-95.3849991529999,74.77924225500014],[-95.41372636599986,74.77383047100001],[-95.44245357999992,74.7729352890001],[-95.46471106699997,74.77985260600009],[-95.38280188699994,74.799750067],[-95.38280188699994,74.80719635600018],[-95.43333899599995,74.8080101580001],[-95.46043860599988,74.80426666900014],[-95.47838294199991,74.79352448100003],[-95.48021399599989,74.78131745000015],[-95.47321529899992,74.76813385600012],[-95.45173092399997,74.74510325700005],[-95.51134192599989,74.743597723],[-95.54015051999991,74.75120677300013],[-95.54662024599992,74.77301666900009],[-95.49205481699994,74.799750067],[-95.50243079299995,74.80988190300015],[-95.51488196499986,74.81411367400007],[-95.63239498599985,74.81268952],[-95.67642167899986,74.81891510600015],[-95.71178137899987,74.84072500200001],[-95.70494544199988,74.84072500200001],[-95.71890214799994,74.84658437700016],[-95.73412024599992,74.8437360700001],[-95.74327551999991,74.83612702000009],[-95.7390844389999,74.82762278900005],[-95.7390844389999,74.82078685100014],[-95.89757239499991,74.82587311400006],[-95.92467200399992,74.83441803600009],[-95.90819251199994,74.83392975499999],[-95.89146887899992,74.83588288000014],[-95.87759355399992,74.84223053600006],[-95.87002519399988,74.85496653900013],[-95.91633053299994,74.85516998900009],[-95.96231035099991,74.86322663000011],[-96.00479081899987,74.87742747600011],[-96.04067949099988,74.89594147300012],[-96.0332738919999,74.89594147300012],[-96.09430904899997,74.90591054900013],[-96.12059485599988,74.91771067900002],[-96.13687089799993,74.93691640800014],[-96.11314856699991,74.9452578800001],[-96.0332738919999,74.9505882830001],[-96.03897050699987,74.96417877800015],[-96.04552161399997,74.97077057500003],[-96.05455481699997,74.97272370000017],[-96.06802324099996,74.97223541900009],[-96.07774817599991,74.9699567730001],[-96.09801184799991,74.96084219000012],[-96.10899817599997,74.95799388200008],[-96.14313717399996,74.95799388200008],[-96.12816321499994,74.97528717700008],[-96.1049698559999,74.99176666900014],[-96.07860266799992,75.00495026200012],[-96.05435136599989,75.01264069200012],[-96.06460527299996,75.0235863300001],[-96.09117591099991,75.02460358300006],[-96.15054277299996,75.01886627800009],[-96.14525305899988,75.00812409100017],[-96.15518144399988,74.99648672100007],[-96.15054277299996,74.98529694200006],[-96.19615637899992,74.96377187700013],[-96.19835364499988,74.95799388200008],[-96.20449785099987,74.95209381700015],[-96.20421301999994,74.94599030200006],[-96.20278886599996,74.93903229400017],[-96.20579993399988,74.93065013200011],[-96.21727454299992,74.92007070500016],[-96.23127193899987,74.91425202],[-96.26667232999998,74.90961334800006],[-96.34850012899993,74.90997955900009],[-96.38756262899992,74.9186058610001],[-96.40379798099985,74.93691640800014],[-96.38988196499989,74.94611237200003],[-96.38414466099991,74.959173895],[-96.38670813699991,74.97321198100015],[-96.39761308499988,74.98529694200006],[-96.35545813699994,74.97744375200007],[-96.33169511599993,74.978257554],[-96.32127844999985,74.98843008000013],[-96.32945716099994,75.00413646],[-96.34943600199992,75.00869375200013],[-96.51984615799988,75.00580475500011],[-96.54295813699994,75.00055573100003],[-96.56590735599994,74.99066803600012],[-96.58983313699989,74.98480866100009],[-96.61611894399991,74.99152252800012],[-96.60582434799989,75.00128815300015],[-96.59854081899988,75.0127627620001],[-96.58877519399994,75.03245677300005],[-96.59968014199993,75.05027903900013],[-96.60456295499988,75.06484609600015],[-96.5980525379999,75.07550690300017],[-96.57510331899991,75.081488348],[-96.57921301999994,75.09149811400009],[-96.58193925699993,75.09516022300012],[-96.52977454299989,75.1232770850001],[-96.5088598299999,75.13947174700017],[-96.4769587879999,75.17011139500009],[-96.47581946499989,75.17715078300014],[-96.47223873599992,75.18024323100005],[-96.47142493399991,75.18732330900008],[-96.46934973899987,75.19440338700015],[-96.46214758999994,75.19757721600003],[-96.43797766799995,75.19586823100003],[-96.41685950399992,75.19074127800012],[-96.3880102199999,75.1799990910001],[-96.37730872299987,75.18244049700003],[-96.36969967399995,75.19757721600003],[-96.37889563699991,75.19940827],[-96.38780676999994,75.2023786480001],[-96.39622962099989,75.20636627800009],[-96.40379798099985,75.21124909100017],[-96.35411536399992,75.22467682500015],[-96.1321915359999,75.24534739799999],[-96.07843990799995,75.23676178600006],[-95.98607337099992,75.252183335],[-96.00767981699991,75.25946686400003],[-96.02855383999989,75.2586937520001],[-96.07144120999996,75.252183335],[-96.08828691299996,75.2547875020001],[-96.09398352799985,75.26097239800008],[-96.08958899599986,75.26850006700012],[-96.07640540299991,75.27496979400003],[-96.03335527299986,75.281887111],[-95.94493567599994,75.2836774760001],[-95.90355383999992,75.29315827000003],[-95.93370520699995,75.30288320500016],[-96.17105058499989,75.28701406500012],[-96.15737870999986,75.29999420800011],[-96.16148841099994,75.30158112200014],[-96.17105058499989,75.30744049700012],[-96.13280188699986,75.30866120000002],[-96.02700761599993,75.327866929],[-95.96178137899994,75.376166083],[-95.92052161399987,75.389634507],[-95.88988196499989,75.36888255399998],[-95.90221106699994,75.366644598],[-95.93765214799993,75.35521067900005],[-95.93765214799993,75.34845612200012],[-95.80296790299991,75.37010325700011],[-95.7800186839999,75.38251373900012],[-96.03888912699988,75.404771226],[-96.06110592399995,75.40257396],[-96.07506262899992,75.4037946640001],[-96.08165442599991,75.403021552],[-96.08202063699991,75.40078359600001],[-96.08136959499987,75.39158763200014],[-96.08165442599991,75.38934967700006],[-96.12995357999992,75.37860748900015],[-96.1551000639999,75.37775299700003],[-96.17788652299993,75.38251373900012],[-96.15550696499992,75.40802643400004],[-96.11424719999985,75.41950104400017],[-96.0332738919999,75.42413971600011],[-96.01764889199993,75.41787344000015],[-96.0098770819999,75.41779205900015],[-96.00658118399988,75.42723216399999],[-96.0003962879999,75.4352481140001],[-95.98607337099992,75.43821849200005],[-95.90542558499988,75.43431224200005],[-95.88060462099992,75.42829010600003],[-95.8626195949999,75.41669342700011],[-95.86461341099992,75.404730536],[-95.84203040299984,75.4003766950001],[-95.7792048819999,75.39642975500011],[-95.76768958199993,75.39765045800011],[-95.74592037699989,75.403021552],[-95.70494544199988,75.403021552],[-95.67951412699995,75.41351959800006],[-95.68789628799993,75.42218659100014],[-95.71361243399987,75.42816803600006],[-95.77090410099993,75.43146393400009],[-95.80016028599994,75.43622467700003],[-95.82469641799986,75.44676341400007],[-95.84211178299991,75.46507396000011],[-95.79149329299995,75.5010440120001],[-95.59056555899986,75.54889557500003],[-95.5211482409999,75.55459219],[-95.44928951699983,75.57257721600014],[-95.43138587099989,75.57221100500014],[-95.41071529899997,75.56818268400013],[-95.38670813699991,75.556341864],[-95.3734431629999,75.55499909100003],[-95.35887610599988,75.56439850500014],[-95.34601803299995,75.5814476580001],[-95.33995520699995,75.58734772300012],[-95.32754472599993,75.5947940120001],[-95.31175696499989,75.60130442900002],[-95.29759680899986,75.603949286],[-95.28473873599992,75.60374583500014],[-95.23249264199993,75.59389883000001],[-95.19212805899986,75.59088776200012],[-95.15119381399984,75.59316640800006],[-95.10903886599988,75.60162995000003],[-95.09593665299991,75.607326565],[-95.07445227799988,75.620266018],[-95.06065833199997,75.62274811400015],[-94.98180091099994,75.62274811400015],[-94.96788489499994,75.62482330900015],[-94.92259680899993,75.64130280200014],[-94.89952551999995,75.64472077000015],[-94.64671790299988,75.6244774435],[-94.39391028599988,75.60423411700012]]],[[[-96.28693600199988,75.65033600500004],[-96.13121497299994,75.6095238300001],[-96.07213294199991,75.61420319200012],[-96.04503333199997,75.61220937700007],[-96.02700761599993,75.60162995000003],[-96.02700761599993,75.609076239],[-95.99791419199988,75.5965843770001],[-95.93614661399988,75.58038971600013],[-95.91038977799994,75.5606957050001],[-95.93651282499988,75.54677969000012],[-95.94904537699989,75.54197825700014],[-96.03014075399992,75.53314850500009],[-96.0475154289999,75.52716705900015],[-96.0332738919999,75.51972077000009],[-96.04857337099986,75.50934479400009],[-96.0685929029999,75.50263092700014],[-96.10875403599994,75.49420807500009],[-96.12413489499997,75.48822663000009],[-96.14976966099994,75.47199127800002],[-96.1642146479999,75.46507396000011],[-96.2057185539999,75.45799388200007],[-96.23574785099991,75.4660505230001],[-96.26260331899994,75.48102448100002],[-96.29466712099992,75.49420807500009],[-96.36872311099985,75.50897858300006],[-96.40855872299994,75.52228424700009],[-96.4243057929999,75.54022858300014],[-96.41535396999987,75.55145905200014],[-96.39785722599991,75.556341864],[-96.37901770699987,75.55927155200011],[-96.36595618399991,75.56439850500014],[-96.36461341099991,75.57599518400015],[-96.3831680979999,75.58075592700006],[-96.4243057929999,75.58120351800015],[-96.41954505099991,75.57176341400005],[-96.41685950399992,75.56818268400013],[-96.48253333199992,75.55906810100007],[-96.51500403599991,75.55023834800012],[-96.54100501199989,75.53339264500012],[-96.55207271999984,75.51666901200018],[-96.54893958199995,75.50495026200008],[-96.52049719999985,75.47874583500004],[-96.51512610599988,75.47573476800007],[-96.50560462099989,75.46869538],[-96.50267493399988,75.46157461100012],[-96.53115800699987,75.45551178600014],[-96.56078040299991,75.44220612200003],[-96.57510331899991,75.43773021000005],[-96.67568925699993,75.43650950700014],[-96.70547441299993,75.42413971600011],[-96.68773352799994,75.4128278670001],[-96.66624915299991,75.40863678599999],[-96.64370683499993,75.406927802],[-96.62291419199994,75.403021552],[-96.65672766799992,75.38857656500012],[-96.78115800699993,75.37567780200011],[-96.84382076699993,75.35858795800007],[-96.87271074099992,75.35736725500006],[-96.86929277299993,75.37567780200011],[-96.89777584499984,75.381740627],[-96.95958411399994,75.38471100500011],[-96.98668372299994,75.39679596600003],[-96.97687740799992,75.39667389500006],[-96.96637936099987,75.39801666900014],[-96.95641028599997,75.40110911700013],[-96.94847571499989,75.40643952],[-96.94737708199995,75.41437409100014],[-96.95767167899987,75.41925690300003],[-96.97923743399987,75.42413971600011],[-97.00511633999989,75.44635651200015],[-97.0184220039999,75.455308335],[-97.03441321499992,75.45831940300009],[-97.03441321499992,75.46507396000011],[-97.01402747299991,75.47174713700018],[-97.0201716789999,75.48126862200017],[-97.05492102799987,75.49921295800011],[-96.70547441299993,75.56818268400013],[-96.66991126199986,75.55451080900004],[-96.53075110599988,75.58120351800015],[-96.43618730399996,75.58779531500012],[-96.41685950399992,75.5947940120001],[-96.41543535099996,75.60358307500017],[-96.4243057929999,75.62482330900015],[-96.4243057929999,75.63580963700012],[-96.37511145699989,75.65997955900012],[-96.28693600199988,75.65033600500004]]],[[[-121.0921117829999,75.73411692900008],[-121.16820227799987,75.73371002800015],[-121.25682532499987,75.74583567900005],[-121.29344641799989,75.75995514500009],[-121.25243079299989,75.77728913000007],[-121.11681067599996,75.80247630400005],[-121.08531653599995,75.812201239],[-121.0725805329999,75.81403229400017],[-121.05345618399993,75.81452057500015],[-121.03612219999985,75.81704336100006],[-121.02261308499986,75.82347239799999],[-121.01939856699991,75.83226146000005],[-121.03278561099991,75.84186432500003],[-121.02232825399993,75.84788646000014],[-120.99795488199987,75.86981842700006],[-121.00869706899988,75.8783226580001],[-121.04637610599987,75.89647044499999],[-121.0436905589999,75.90827057500013],[-121.03001868399986,75.91828034100014],[-120.99795488199987,75.930609442],[-120.96483313699993,75.93720123900006],[-120.92088782499991,75.94114817900005],[-120.88292395699992,75.93642812700013],[-120.86827551999988,75.91693756700006],[-120.8734024729999,75.91046784100014],[-120.87498938699993,75.90184153900005],[-120.87315833199993,75.89240143400002],[-120.86827551999988,75.88279857000005],[-120.8755590489999,75.87392812700001],[-120.89769446499989,75.8375918640001],[-120.90241451699988,75.82510000200001],[-120.91413326699987,75.810451565],[-120.99111894399995,75.76300690300017],[-121.0587052069999,75.73944733300011],[-121.0921117829999,75.73411692900008]]],[[[-102.07070878799989,75.97223541900014],[-102.0892634759999,75.96271393400015],[-102.0862524079999,75.95880768400015],[-102.00015214799991,75.95575592700007],[-101.98131262899997,75.95172760600009],[-101.98521887899997,75.94822825700011],[-101.98664303299985,75.94464752800006],[-101.98721269399991,75.94098541900009],[-101.98875891799985,75.9374453800001],[-102.09337317599994,75.91535065300003],[-102.38866126199991,75.89036692900011],[-102.44127356699993,75.86981842700006],[-102.45335852799994,75.85895416900017],[-102.47541256399984,75.82135651200018],[-102.48957271999986,75.80780670800011],[-102.5045059889999,75.79905833500014],[-102.60480709499988,75.77260976800015],[-102.66714433499996,75.76609935100008],[-102.70946204299987,75.77830638200014],[-102.73151607999996,75.77806224200002],[-102.72862708199993,75.75995514500009],[-102.7680557929999,75.75828685100008],[-102.78774980399993,75.75983307500012],[-102.8043513659999,75.76609935100008],[-102.79694576699993,75.77358633000013],[-102.87328040299985,75.76609935100008],[-102.86583411399988,75.75995514500009],[-102.89464270699992,75.7508812520001],[-103.32746334499986,75.7508812520001],[-103.38658606699995,75.76609935100008],[-103.27110755099989,75.79238515800007],[-103.24937903599992,75.80707428600009],[-103.31086178299988,75.80707428600009],[-103.25405839799993,75.82965729400014],[-103.18517005099997,75.83706289300012],[-103.05138098899992,75.83441803600006],[-103.0775040359999,75.84137604400014],[-103.11241614499991,75.844224351],[-103.13727779899996,75.8510602890001],[-103.13337154899995,75.86981842700006],[-103.10993404899989,75.88629791900014],[-103.07823645699992,75.898179429],[-103.04491126199993,75.90615469000015],[-102.76750647699993,75.93773021049999],[-102.49010169199993,75.96930573100002],[-102.40611731699997,75.96898021000011],[-102.21467037699996,75.99266185100014],[-102.07070878799989,75.97223541900014]]],[[[-94.31651770699989,75.76434967700008],[-94.65778561099992,75.74648672100001],[-94.7438044909999,75.76154205900012],[-94.79336503799992,75.78270091400012],[-94.82335364499991,75.810492255],[-94.83454342399992,75.84564850500006],[-94.82787024599986,75.88898346600003],[-94.85252844999985,75.8937848980001],[-94.87873287699996,75.90350983300006],[-94.90013587099992,75.91803620000009],[-94.91047115799995,75.9374453800001],[-94.8523656889999,75.95319245000015],[-94.66344153599991,75.96539948100003],[-94.53990637899987,75.98924388200011],[-94.53233801999994,75.99803294499999],[-94.51520748599992,75.99445221600003],[-94.48525956899994,75.97842031500012],[-94.45750891799986,75.96588776200004],[-94.45116126199994,75.95270416900017],[-94.45327714799994,75.93707916900009],[-94.45116126199994,75.91693756700006],[-94.42320716099991,75.88898346600003],[-94.42247473899997,75.88605377800009],[-94.42320716099991,75.87287018400015],[-94.4197485019999,75.87079498900012],[-94.39586341099994,75.86237213700018],[-94.31924394399996,75.81928131700006],[-94.30028235599985,75.80093008000001],[-94.29458574099996,75.77570221600014],[-94.31651770699989,75.76434967700008]]],[[[-102.32799231699994,76.065415757],[-102.31851152299994,76.04413483300011],[-102.32681230399992,76.02277252800015],[-102.35594641799989,76.013128973],[-102.57164466099995,75.99266185100014],[-102.94497636666654,75.9581023893334],[-103.31830807233321,75.92354292766674],[-103.69163977799987,75.88898346600003],[-103.80150305899993,75.90326569200012],[-103.8889867829999,75.89862702],[-103.91417395699996,75.90326569200012],[-103.93150794199994,75.92719147300008],[-103.94115149599992,75.93227773600002],[-103.96519934799996,75.93781159100003],[-103.9762263659999,75.94428131700012],[-103.82103430899993,75.94798411700008],[-103.72545325399994,75.97833893400006],[-103.4979141919999,75.98236725500011],[-103.31891842399992,76.02285390800013],[-103.2326554029999,76.02065664300015],[-103.20677649599988,76.02366771000005],[-103.13951575399994,76.04730866100009],[-103.11302649599988,76.05036041900017],[-103.02965247299996,76.04730866100009],[-102.73674475799994,76.0686099305001],[-102.44383704299993,76.08991120000003],[-102.35191809799991,76.07526276200011],[-102.32799231699994,76.065415757]]],[[[-117.65973873599991,76.125881252],[-117.62637285099994,76.11562734600007],[-117.58568274599985,76.11570872600005],[-117.5423477859999,76.10932038000014],[-117.46251380099996,76.08828359600001],[-117.48208574099992,76.08185455900009],[-117.49132239499991,76.07241445500007],[-117.50352942599996,76.04730866100009],[-117.51927649599992,76.03148021000005],[-117.53722083199996,76.02142975500009],[-117.57860266799989,76.00633372600008],[-117.57404537699995,75.99030182500017],[-117.58409583199992,75.97833893400006],[-117.6014705069999,75.96967194200015],[-117.61872311099991,75.96344635600009],[-117.6356095039999,75.95465729400003],[-117.66567949099993,75.93219635600003],[-117.68101966099988,75.92377350500009],[-117.75861568899984,75.90827057500013],[-117.7847387359999,75.89647044499999],[-117.83161373599985,75.86660390800002],[-117.83934485599985,75.85553620000015],[-117.8300675119999,75.85415273600007],[-117.82677161399995,75.85154857],[-117.82445227799988,75.84760163],[-117.81822669199993,75.84186432500003],[-117.83641516799992,75.83519114800008],[-117.8763321609999,75.82807038000011],[-117.89460201699985,75.82135651200018],[-117.8870743479999,75.81452057500015],[-117.89976966099997,75.80451080900018],[-117.92955481699995,75.79498932500016],[-117.94172115799985,75.78725820500007],[-117.95148678299991,75.77448151200012],[-117.95055091099992,75.76874420800006],[-117.94522050699995,75.76349518400015],[-117.94172115799985,75.75250885600012],[-117.93773352799987,75.74628327000015],[-117.93248450399989,75.73981354400014],[-117.9354548819999,75.73468659100003],[-117.97329667899994,75.73016998900009],[-117.98778235599988,75.72431061400012],[-118.0106095039999,75.71149323100009],[-118.27065995999993,75.61591217700011],[-118.2180069649999,75.60838450700005],[-118.20238196499993,75.60162995000003],[-118.25251217399993,75.5956485050001],[-118.6139216789999,75.50372955900018],[-118.66079667899994,75.50259023600013],[-118.70787512899994,75.50824616100014],[-118.79503333199997,75.53082916900011],[-118.94163977799985,75.53339264500012],[-118.93049068899983,75.54547760600012],[-118.91234290299994,75.54865143400016],[-118.89191646999987,75.54930247600014],[-118.87393144399992,75.55390045800009],[-118.93651282499994,75.56268952000012],[-118.96467037699992,75.56171295800006],[-118.9966527989999,75.55560944200009],[-119.01073157499987,75.55556875200008],[-119.05894934799991,75.56818268400013],[-119.09325110599987,75.57294342700004],[-119.19835364499994,75.56439850500014],[-119.40904700399989,75.60162995000003],[-119.40880286399994,75.6065127620001],[-119.40754146999984,75.60976797100012],[-119.4016007149999,75.61591217700011],[-119.40904700399989,75.61591217700011],[-119.33210201699991,75.66079336100013],[-119.05256100199998,75.75165436399999],[-118.9920548169999,75.76154205900012],[-118.9721573559999,75.77033112200009],[-118.92178300699995,75.80402252800009],[-118.84203040299991,75.83539459800012],[-118.7993057929999,75.84552643400018],[-118.75731360599991,75.848089911],[-118.7412817049999,75.873968817],[-118.6861059239999,75.90086497600007],[-118.62120520699992,75.92206452000006],[-118.31908118399991,75.97223541900014],[-118.20938066299992,75.96857330900009],[-118.17446855399989,75.97223541900014],[-118.15412350199989,75.97866445500007],[-118.14077714799991,75.98822663000006],[-118.11644446499993,76.01691315300012],[-118.08706620999992,76.03546784100003],[-118.05418860599991,76.03945547100001],[-118.01992753799996,76.03888580900004],[-117.8870743479999,76.06777578300012],[-117.88996334499983,76.071478583],[-117.89460201699985,76.08148834800006],[-117.79869544199995,76.11163971600008],[-117.65973873599991,76.125881252]]],[[[-79.01109778599994,76.12889232000009],[-78.90168209499987,76.12299225500009],[-78.8954158189999,76.12299225500009],[-78.8738500639999,76.11115143400012],[-78.81257076699987,76.10004303600009],[-78.79987545499992,76.0848656270001],[-78.80760657499994,76.0736758480001],[-78.82555091099988,76.06224192900014],[-78.86070716099994,76.04730866100009],[-79.14411373599994,75.98029205900009],[-79.16539466099994,75.97040436400009],[-79.17601477799988,75.95795319200006],[-79.16966712099993,75.9374860700001],[-79.14806067599994,75.924953518],[-79.01121985599991,75.88580963700014],[-78.95059160099993,75.879584052],[-78.87498938699994,75.85553620000015],[-78.89647376199986,75.84259674700014],[-78.92121334499984,75.84137604400014],[-78.97142493399991,75.848089911],[-79.05052649599992,75.84113190300009],[-79.07359778599997,75.848089911],[-79.05060787699989,75.86098867400001],[-79.02521725199995,75.86981842700006],[-79.04662024599992,75.876166083],[-79.11314856699991,75.86981842700006],[-79.27916419199991,75.87653229400011],[-79.32957923099994,75.87091705900009],[-79.42983964799993,75.848089911],[-79.41030839799996,75.83624909100001],[-79.38752193899992,75.8333194030001],[-79.36359615799995,75.832953192],[-79.34044348899991,75.82880280200006],[-79.4252009759999,75.79629140800007],[-79.4381404289999,75.795355536],[-79.45653235599985,75.80093008000001],[-79.45702063699994,75.80320872600008],[-79.45604407499988,75.812201239],[-79.45653235599985,75.81452057500015],[-79.4671117829999,75.81834544500008],[-79.47695878799993,75.82046133000007],[-79.59373938699989,75.82135651200018],[-79.58617102799985,75.82880280200006],[-79.57713782499994,75.832464911],[-79.56956946499989,75.83649323100018],[-79.56639563699991,75.8449567730001],[-79.57249915299991,75.85553620000015],[-79.58690344999987,75.86155833500007],[-79.61632239499997,75.8678653020001],[-79.6511938139999,75.87002187700001],[-79.68814042899996,75.86318594],[-79.72313391799985,75.86237213700018],[-79.75202389199987,75.88279857000005],[-79.71764075399992,75.88251373900012],[-79.63296464799993,75.893052476],[-79.60118567599997,75.90326569200012],[-79.58311926999994,75.91608307500013],[-79.58348548099988,75.92479075700012],[-79.59093176999994,75.9313418640001],[-79.59373938699989,75.9374453800001],[-79.58348548099988,75.94814687700013],[-79.56786048099988,75.95441315300017],[-79.50218665299987,75.96198151200002],[-79.42983964799993,75.99884674700009],[-79.40977942599996,76.00470612200014],[-79.32022050699989,76.0160586610001],[-79.28416907499992,76.029486395],[-79.26475989499993,76.03363678600014],[-79.26915442599991,76.04352448100015],[-79.27220618399991,76.04730866100009],[-79.25300045499993,76.05874258000011],[-79.18431555899986,76.06972890800009],[-79.1456599599999,76.0830752620001],[-79.12905839799993,76.09162018400004],[-79.11115475199998,76.10565827000009],[-79.06818600199992,76.12470123900009],[-79.01109778599994,76.12889232000009]]],[[[-81.32795162699995,76.14972565300017],[-81.35993404899995,76.1488304710001],[-81.43614661399991,76.15473053600012],[-81.46507727799991,76.16400788000009],[-81.4539281889999,76.16913483299999],[-81.36839758999989,76.18964264500015],[-81.31086178299992,76.1963565120001],[-81.25332597599993,76.19537995000012],[-81.20441646999984,76.18447500200013],[-81.22777258999994,76.17153554900013],[-81.26301021999988,76.16083405200011],[-81.32795162699995,76.14972565300017]]],[[[-102.6418350899999,76.27106354400011],[-102.62580318899984,76.2580020200001],[-102.54157467399992,76.23135000200008],[-102.5403539699999,76.219712632],[-102.58527584499991,76.18447500200013],[-102.54308020699996,76.16535065300013],[-102.53062903599995,76.15717194200006],[-102.6262100899999,76.15717194200006],[-102.62254798099988,76.15412018400015],[-102.6125382149999,76.14350006700012],[-102.68301347599989,76.11701080900015],[-102.8376358709999,76.08063385600018],[-103.24323482999993,76.04730866100009],[-103.23639889199993,76.04730866100009],[-103.52391516799989,76.04047272350012],[-103.81143144399992,76.03363678600014],[-103.9443253249999,76.04075755400002],[-103.88621985599993,76.0489769550001],[-103.87315833199996,76.054144598],[-104.06541907499987,76.06732819200013],[-104.08608964799988,76.06159088700018],[-104.07860266799992,76.054144598],[-104.36774654899989,76.07636139500006],[-104.3945206369999,76.08148834800006],[-104.4108780589999,76.08966705900018],[-104.45230058499993,76.12616608300014],[-104.47687740799985,76.14028554900007],[-104.47813880099994,76.14704010600009],[-104.46593176999988,76.16058991100006],[-104.44432532499987,76.17182038000009],[-104.41600501199993,76.17670319200015],[-104.35960852799987,76.17767975500011],[-104.3422745429999,76.18305084800006],[-104.32746334499993,76.20697663000014],[-104.3120011059999,76.21238841399999],[-104.20254472599993,76.22540924700017],[-104.12954667899993,76.21954987200003],[-104.10968990799992,76.22199127800015],[-104.0821427069999,76.2295596370001],[-103.91177324099992,76.24412669500013],[-103.85708574099986,76.25690338700018],[-103.79385331899991,76.25531647300015],[-103.70889238199986,76.26239655200011],[-103.58958899599989,76.25901927299999],[-103.52538001199994,76.27252838700015],[-103.49722245999996,76.27057526200012],[-103.4832250639999,76.27163320500007],[-103.4469294909999,76.27814362200014],[-103.08678137899994,76.29688141500013],[-102.7266332669999,76.315619208],[-102.6535538399999,76.29433828300002],[-102.6418350899999,76.27106354400011]]],[[[-89.52497311099998,76.48041413000004],[-89.50300045499995,76.47186920800011],[-89.49620520699992,76.47870514500013],[-89.46930904899995,76.46576569200015],[-89.38011633999989,76.44513580900012],[-89.4073787099999,76.43793366100007],[-89.59642493399994,76.44367096600013],[-89.62653561099995,76.45136139500009],[-89.56191972599993,76.47345612200014],[-89.52497311099998,76.48041413000004]]],[[[-83.9739477199999,76.4283714860001],[-83.99225826699987,76.42536041900009],[-84.05679277299993,76.44220612200009],[-84.1234431629999,76.45136139500009],[-84.10631262899996,76.47516510600015],[-84.10362708199989,76.48240794499999],[-84.10850989499997,76.4893252620001],[-84.13101152299987,76.5038923200001],[-84.13780676999988,76.51406484600005],[-84.09618079299992,76.51406484600005],[-84.07054602799985,76.50600820500013],[-84.01341712099989,76.50336334800015],[-83.98729407499991,76.49603913000014],[-83.9684138659999,76.48777903900005],[-83.9112442699999,76.47186920800011],[-83.95026607999989,76.44204336100013],[-83.9739477199999,76.4283714860001]]],[[[-103.93561764199991,76.62201569200009],[-104.05817623599985,76.56806061400005],[-104.02448482999993,76.56207916900014],[-103.94546464799993,76.57733795800011],[-103.8829646479999,76.57786692900002],[-103.85342363199993,76.610296942],[-103.82534745999992,76.62270742400013],[-103.79613196499989,76.62311432500003],[-103.76732337099986,76.61627838700012],[-103.67796790299992,76.57713450700008],[-103.6392309239999,76.57005442900011],[-103.55793209499991,76.56806061400005],[-103.5821427069999,76.55483633000011],[-103.59080969999991,76.54669830900012],[-103.59203040299992,76.53335195500001],[-103.57974199099996,76.5268415390001],[-103.38735917899989,76.49664948100009],[-103.30483964799988,76.499741929],[-103.26207434799989,76.50885651200015],[-103.24937903599992,76.5065778670001],[-103.24535071499984,76.50202057500015],[-103.24376380099991,76.49591705900015],[-103.24498450399992,76.49152252800017],[-103.24937903599992,76.4923363300001],[-103.24608313699989,76.48761627800009],[-103.24632727799992,76.48322174700012],[-103.2442520819999,76.47858307500016],[-103.23424231699993,76.4736188820001],[-103.21934973899995,76.47085195500007],[-103.07005774599992,76.4645856790001],[-103.0207413399999,76.45010000200007],[-103.01040605399992,76.42348867400013],[-103.02261308499989,76.41559479400014],[-103.3362524079999,76.33173248900006],[-103.60830644449989,76.32434723500008],[-103.88036048099988,76.31696198100018],[-103.94985917899992,76.32636139499999],[-104.37767493399988,76.32485586100016],[-104.40758216099988,76.33527252800006],[-104.38996334499987,76.34438711100013],[-104.3456925119999,76.35748932500009],[-104.33311926999991,76.36945221600003],[-104.34813391799993,76.38165924700012],[-104.35594641799993,76.38605377800009],[-104.36660722599987,76.3898786480001],[-104.3902481759999,76.39276764500012],[-104.43854732999992,76.39081452000009],[-104.46222896999984,76.39671458500011],[-104.43419348899992,76.40517812700007],[-104.4036759109999,76.42072174700017],[-104.38638261599988,76.44232819200006],[-104.39801998599988,76.46873607000005],[-104.41413326699987,76.47923411700013],[-104.43903561099991,76.49111562700007],[-104.46393795499993,76.49860260600006],[-104.47988847599993,76.49603913000014],[-104.4986466139999,76.48631419499999],[-104.5254613919999,76.48322174700012],[-104.55247962099995,76.48558177300005],[-104.5720922519999,76.4923363300001],[-104.56590735599994,76.499741929],[-104.57445227799985,76.50364817900008],[-104.58145097599994,76.508734442],[-104.59316972599991,76.52020905200014],[-104.58438066299996,76.52020905200014],[-104.5777481759999,76.52236562700013],[-104.57192949099995,76.52509186400012],[-104.56590735599994,76.52708567900005],[-104.58836829299995,76.53953685100008],[-104.6437882149999,76.5475934920001],[-104.66828365799985,76.55499909100008],[-104.64098059799996,76.581732489],[-104.6641739569999,76.58926015800016],[-104.67393958199992,76.59479401200018],[-104.68130449099993,76.60219961100007],[-104.65200761599992,76.60203685100011],[-104.35240637899994,76.66331614800013],[-104.0246475899999,76.67047760600013],[-103.96686764199988,76.66168854400011],[-103.92471269399992,76.640082098],[-103.93561764199991,76.62201569200009]]],[[[-98.40802975199992,76.6676699890001],[-98.40713456899994,76.65814850500011],[-98.43049068899992,76.64223867400001],[-98.43285071499989,76.63007233300011],[-98.42162024599989,76.62547435099998],[-98.33185787699995,76.60651276200015],[-98.22752844999991,76.60004303600006],[-98.17764238199993,76.59064362200014],[-98.1510310539999,76.58856842700011],[-98.27830969999985,76.581732489],[-98.2940974599999,76.58368561400006],[-98.34349524599986,76.59601471600011],[-98.40489661399994,76.59601471600011],[-98.36790930899991,76.57050202],[-98.3216446609999,76.56427643400006],[-98.27285722599989,76.56484609600001],[-98.22834225199992,76.55963776200012],[-98.19815019399991,76.54840729400003],[-98.18586178299991,76.54755280200011],[-98.17979895699993,76.54987213700018],[-98.1756892569999,76.5545921900001],[-98.16966712099989,76.55914948100002],[-98.15811113199996,76.56122467700006],[-98.1367895169999,76.55687083500005],[-98.09764563699986,76.53766510600008],[-98.07575436099991,76.53335195500001],[-97.80630449099988,76.51642487200003],[-97.66510982999995,76.48615143400004],[-97.6817113919999,76.47455475500011],[-97.69920813699986,76.46564362200017],[-97.68968665299988,76.45612213700018],[-97.67495683499988,76.44501373900015],[-97.66478430899991,76.43292877800006],[-97.66844641799989,76.42035553600006],[-97.68643144399991,76.41266510600003],[-97.71275794199991,76.40493398600002],[-97.73306230399992,76.39557526200018],[-97.73330644399996,76.38312409100017],[-97.73680579299985,76.37824127800009],[-97.74575761599988,76.36066315300015],[-97.74762936099987,76.35236237200009],[-97.75267493399988,76.34381745000013],[-97.77822831899988,76.32982005400011],[-97.78856360599988,76.32225169500005],[-97.7715958319999,76.31806061400012],[-97.73668372299987,76.313421942],[-97.7197159499999,76.30801015800016],[-97.72378495999988,76.302679755],[-97.72899329299985,76.29218170800011],[-97.73330644399996,76.28685130400005],[-97.70885169199994,76.27081940300015],[-97.55406653599994,76.22553131700015],[-97.52769934799993,76.21039459800015],[-97.50674394399991,76.1906598980001],[-97.51366126199991,76.1906598980001],[-97.50039628799986,76.15729401200004],[-97.50145423099991,76.14378489800005],[-97.51732337099986,76.12616608300014],[-97.52985592399995,76.11733633000007],[-97.56859290299987,76.0991071640001],[-97.58242753799988,76.08917877800009],[-97.58739173099994,76.07982005400005],[-97.58995520699993,76.05239492400001],[-97.5919490229999,76.04393138200008],[-97.59679114499997,76.03363678600014],[-97.60407467399997,76.02635325700014],[-97.61290442599994,76.02081940300012],[-97.6203507149999,76.01386139500012],[-97.62694251199989,75.9932315120001],[-97.63532467399995,75.98981354400009],[-97.64557857999998,75.98769765800007],[-97.65453040299991,75.98212311400006],[-97.65477454299993,75.97435130400008],[-97.64818274599986,75.96698639500006],[-97.64395097599996,75.95954010600009],[-97.65143795499992,75.95172760600009],[-97.64513098899988,75.94147370000017],[-97.63780676999997,75.931870835],[-97.62002519399988,75.91388580900015],[-97.57506262899989,75.88279857000005],[-97.5702205069999,75.86522044500013],[-97.58877519399991,75.85016510600012],[-97.6446020169999,75.82510000200001],[-97.65453040299991,75.81720612200003],[-97.65982011599988,75.80955638200011],[-97.66763261599996,75.80243561400006],[-97.73753821499989,75.78168366100006],[-97.80211341099994,75.77741120000015],[-97.89810136599993,75.75995514500009],[-97.93936113199987,75.74567291900009],[-97.89732825399992,75.73712799700017],[-97.67186438699989,75.725775458],[-97.6549373039999,75.72117747600005],[-97.62010657499988,75.70750560100011],[-97.60317949099988,75.70465729400007],[-97.42487545499995,75.6984723980001],[-97.37751217399992,75.67983633000013],[-97.37022864499988,75.6742617860001],[-97.37254798099985,75.65936920800006],[-97.37865149599995,75.65436432500003],[-97.38735917899993,75.65167877800006],[-97.39753170499998,75.643255927],[-97.40640214799991,75.6263695330001],[-97.40933183499992,75.60956452000009],[-97.41120357999992,75.57436758000013],[-97.40982011599993,75.57562897300015],[-97.4077856109999,75.57265859600012],[-97.40583248599987,75.568060614],[-97.40501868399994,75.56439850500014],[-97.40709387899994,75.55890534100011],[-97.4116918609999,75.55605703300007],[-97.41860917899989,75.55390045800009],[-97.4246313139999,75.52952708500011],[-97.42487545499995,75.51972077000009],[-97.40892493399994,75.47158437700004],[-97.37340247299993,75.44163646000005],[-97.28087317599997,75.403021552],[-97.3050024079999,75.39516836100002],[-97.33161373599984,75.39655182500009],[-97.47227942599997,75.42450592700011],[-97.49315344999985,75.43773021000005],[-97.49754798099994,75.44562409100003],[-97.49876868399986,75.45453522300006],[-97.49315344999985,75.46507396000011],[-97.49950110599988,75.47528717700006],[-97.49828040299985,75.48322174700003],[-97.49107825399992,75.48883698100003],[-97.4794815749999,75.49237702],[-97.72423255099996,75.57221100500014],[-97.76060950399993,75.57436758000013],[-97.74982662699995,75.5477562520001],[-97.78302975199995,75.547308661],[-97.82884680899984,75.5538597680001],[-97.85627193899992,75.54767487200012],[-97.85130774599986,75.537787177],[-97.79548092399997,75.52342357000013],[-97.77179928299995,75.5088565120001],[-97.76121985599991,75.50006745000003],[-97.75072180899994,75.48867422100007],[-97.74742591099991,75.47540924700003],[-97.75772050699993,75.46588776200002],[-97.7738337879999,75.46015045800006],[-97.78819739499997,75.45831940300009],[-97.80964107999989,75.4600283870001],[-97.82315019399988,75.46503327000012],[-97.83299719999991,75.4733747420001],[-97.84316972599991,75.48493073100003],[-97.84593665299991,75.49030182500009],[-97.8485001289999,75.50299713700015],[-97.85000566299996,75.5067406270001],[-97.86143958199992,75.51243724200008],[-97.92369544199991,75.51959870000012],[-97.94456946499989,75.51634349200008],[-97.95563717399992,75.50763580900018],[-97.94562740799991,75.49237702],[-98.02106686099987,75.49192942900011],[-98.04181881399987,75.48493073100003],[-98.01805579299987,75.47907135600009],[-97.96861731699991,75.47882721600014],[-97.94562740799991,75.47134023600007],[-97.97280839799993,75.46295807500012],[-98.0274958979999,75.46222565300009],[-98.0554906889999,75.45831940300009],[-98.02037512899994,75.44912344000012],[-97.94249426999994,75.45441315300009],[-97.80443274599992,75.43382396000005],[-97.77428137899989,75.42413971600011],[-97.78140214799993,75.42316315300003],[-97.78587805899991,75.42129140800016],[-97.78966223899994,75.41901276200018],[-97.79478919199994,75.41669342700011],[-97.80508378799996,75.41437409100014],[-97.81224524599988,75.41486237200014],[-97.81944739499994,75.41620514500012],[-98.03530839799986,75.4155134140001],[-98.06232662699992,75.403021552],[-98.0269669259999,75.39411041900014],[-97.88711503799988,75.38011302299999],[-97.8799942699999,75.37433502800003],[-97.88857988199992,75.3675804710001],[-97.91148841099994,75.36204661700008],[-97.99339758999989,75.35521067900005],[-97.99128170499995,75.35797760600012],[-97.99079342399996,75.35903554900007],[-97.98985755099989,75.35993073100015],[-97.98656165299985,75.36204661700008],[-97.98656165299985,75.36888255399998],[-98.01203365799994,75.3662783870001],[-98.05825761599996,75.355902411],[-98.0828344389999,75.35521067900005],[-98.06232662699992,75.37567780200011],[-98.09683183499993,75.37433502800003],[-98.1229548819999,75.36863841400005],[-98.14435787699995,75.35610586100013],[-98.16470292899993,75.3341738950001],[-98.1536352199999,75.32957591399999],[-98.1419571609999,75.327826239],[-98.11693274599989,75.327866929],[-98.13744055899994,75.3341738950001],[-98.12303626199989,75.34100983300014],[-98.10631262899994,75.34235260600003],[-98.08983313699986,75.33803945500013],[-98.07599850199995,75.327866929],[-98.08853105399996,75.32050202000009],[-98.10228430899988,75.31557851800012],[-98.11660722599987,75.31342194200012],[-98.13121497299987,75.31427643400004],[-98.11668860599985,75.2980003930001],[-98.08824622299991,75.28856028899999],[-98.0572403639999,75.28681061400009],[-98.03502356699994,75.29315827000003],[-98.04181881399987,75.29315827000003],[-98.01317298099991,75.31452057500017],[-97.97362219999985,75.33258698100009],[-97.93053137899992,75.33954498900009],[-97.89098059799987,75.327866929],[-97.95303300699993,75.31427643400004],[-97.94562740799991,75.30744049700012],[-97.9617406889999,75.30255768400002],[-98.00084387899993,75.27952708500007],[-97.93407141799992,75.26654694200006],[-97.91148841099994,75.26650625200006],[-97.91148841099994,75.27334219],[-97.92491614499991,75.28717682500007],[-97.91710364499994,75.30072663000006],[-97.8977758449999,75.30548737200014],[-97.87669837099989,75.29315827000003],[-97.88414466099997,75.28701406500012],[-97.85142981699993,75.26471588700008],[-97.75999915299988,75.23794179900008],[-97.73330644399996,75.21124909100017],[-97.77367102799994,75.21320221600003],[-97.79165605399987,75.20962148600013],[-97.80223548099991,75.19757721600003],[-97.76626542899993,75.1908633480001],[-97.69505774599992,75.19236888200014],[-97.65758216099991,75.18329498900015],[-97.66999264199993,75.18398672100007],[-97.67634029899993,75.18195221600014],[-97.68492591099995,75.17023346600014],[-97.61449133999986,75.15412018400009],[-97.59679114499997,75.15664297100001],[-97.61660722599986,75.16339752800006],[-97.61660722599986,75.17023346600014],[-97.60204016799993,75.17011139500009],[-97.58820553299995,75.1666527360001],[-97.57673092399992,75.15985748900006],[-97.56883704299992,75.1498070330001],[-97.64362545499992,75.126410223],[-97.72765051999987,75.11334870000003],[-97.81285559799994,75.11310455900016],[-98.01329505099997,75.15957265800013],[-98.03502356699994,75.17715078300014],[-98.03359941299988,75.18671295800014],[-98.02061926999988,75.20184967700014],[-98.02135169199991,75.21124909100017],[-98.03587805899986,75.22044505400014],[-98.0598852199999,75.22459544499999],[-98.10326087099986,75.22553131700006],[-98.07994544199994,75.20758698100012],[-98.09243730399996,75.19806549700003],[-98.1510310539999,75.18329498900015],[-98.14403235599991,75.182562567],[-98.1237686839999,75.17715078300014],[-98.14264889199983,75.17104726800007],[-98.1510310539999,75.17023346600014],[-98.13141842399995,75.15363190300009],[-98.10338294199991,75.14105866100012],[-98.02887936099987,75.120794989],[-97.98989824099988,75.11717357000005],[-97.97325598899994,75.11196523600013],[-97.96597245999992,75.10541413000006],[-97.95897376199994,75.09027741100006],[-97.95246334499987,75.08462148600007],[-97.94432532499994,75.07245514500009],[-97.94432532499994,75.05255768400009],[-97.95010331899991,75.03229401200018],[-97.95929928299995,75.01886627800009],[-97.97581946499994,75.01447174700012],[-98.03502356699994,75.02627187700007],[-98.39262854749991,75.0073509785001],[-98.75023352799994,74.98843008000013],[-98.78913326699993,74.998968817],[-98.74693762899989,75.01264069200012],[-98.77310136599993,75.01850006700009],[-98.83055579299993,75.01089101800012],[-98.85680091099995,75.01886627800009],[-98.84312903599991,75.02627187700007],[-98.84825598899994,75.029201565],[-98.85814368399986,75.03705475500009],[-98.86363684799989,75.039943752],[-98.85195878799989,75.05048248900009],[-98.84618079299992,75.05304596600008],[-98.83690344999988,75.0541852890001],[-98.8604223299999,75.06525299700014],[-98.90021725199992,75.06708405200014],[-98.94078528599992,75.06061432500002],[-98.96666419199994,75.04677969000012],[-98.94155839799994,75.03046295800003],[-98.9387100899999,75.017482815],[-98.95417232999992,75.0089378930001],[-99.3742569649999,74.98920319200006],[-99.40550696499989,74.998968817],[-99.39879309799993,75.00128815300015],[-99.37816321499992,75.01264069200012],[-99.39098059799994,75.029201565],[-99.37832597599986,75.0468610700001],[-99.29576575399997,75.09731679900013],[-99.28075110599985,75.1100121110001],[-99.28197180899986,75.122503973],[-99.30577551999994,75.13129303600009],[-99.33136959499984,75.12140534100014],[-99.3747452459999,75.08462148600007],[-99.38963782499985,75.07615794500013],[-99.44640051999991,75.06037018400018],[-99.48766028599997,75.03558991100012],[-99.50104732999996,75.03245677300005],[-99.4871313139999,75.01557038000006],[-99.44090735599988,75.00600820500007],[-99.42593339799996,74.99152252800012],[-99.47911536399994,74.99640534100008],[-99.49592037699995,74.99347565300013],[-99.52871660099987,74.98281484600012],[-99.64541581899995,74.976019598],[-99.98780270049997,74.995042222],[-100.33018958199989,75.01406484600001],[-100.36876380099996,75.02309804900001],[-100.39240475199988,75.039943752],[-100.3979386059999,75.05882396000014],[-100.39464270699995,75.07416413],[-100.38833574099992,75.08856842700006],[-100.38491777299993,75.10480377800009],[-100.38756262899992,75.12059153900005],[-100.39598548099987,75.12962474200008],[-100.43333899599992,75.1498070330001],[-100.41673743399987,75.15595123900006],[-100.4083552729999,75.15721263200008],[-100.39854895699996,75.15664297100001],[-100.39854895699996,75.16339752800006],[-100.45409094999991,75.18146393400015],[-100.51504472599991,75.18707916900013],[-100.53498287699989,75.19367096600006],[-100.54942786399995,75.20502350500011],[-100.48814856699993,75.22711823100009],[-100.41649329299992,75.23456452000006],[-100.01748613199993,75.22931549700009],[-99.9870499339999,75.23859284100014],[-100.0091446609999,75.24697500200001],[-100.06187903599988,75.2460798200001],[-100.11461341099988,75.25372955900004],[-100.17174231699995,75.25360748900006],[-100.25226803299992,75.26300690300008],[-100.35374915299994,75.25682200700011],[-100.40599524599995,75.27334219],[-100.36522376199989,75.27936432500012],[-100.32087154899995,75.28095123900015],[-100.27944902299993,75.28900788000007],[-100.24771074099986,75.31427643400004],[-100.50291907499991,75.29262929900013],[-100.53770911399995,75.29816315300015],[-100.67577063699991,75.33649323100018],[-100.74852454299987,75.34471263199998],[-100.7821345689999,75.35521067900005],[-100.76309160099989,75.36261627800003],[-100.64924068899985,75.38344961100002],[-100.62629146999987,75.38263580900009],[-100.60464433499986,75.37567780200011],[-100.62726803299994,75.37531159100011],[-100.67918860599991,75.36880117400001],[-100.70026607999993,75.36204661700008],[-100.67003333199992,75.35407135600012],[-100.62417558499995,75.34935130400011],[-100.58556067599989,75.35268789300012],[-100.57673092399992,75.36888255399998],[-100.49901282499991,75.36676666900017],[-100.46011308499992,75.37034739800005],[-100.42650305899988,75.38251373900012],[-100.45319576699993,75.38922760600018],[-100.51659094999985,75.39459870000003],[-100.53575598899991,75.409857489],[-100.52208411399988,75.409857489],[-100.56847083199995,75.42706940300003],[-100.61929277299988,75.43260325700014],[-100.72134355399987,75.43036530200006],[-100.72134355399987,75.43773021000005],[-100.3812556634999,75.44747549],[-100.04116777299988,75.45722077000015],[-100.00877844999988,75.47134023600007],[-100.31041419199995,75.47874583500004],[-100.22288977799992,75.48973216400013],[-100.03917395699993,75.48021067900011],[-99.95352128799995,75.49921295800011],[-100.28254146999991,75.51972077000009],[-100.28254146999991,75.52716705900015],[-99.82998613199995,75.54767487200012],[-99.8557022779999,75.55491771000014],[-99.93643144399991,75.54767487200012],[-100.01634680899991,75.55438873900006],[-100.04230709499991,75.55390045800009],[-100.04230709499991,75.5606957050001],[-99.99152584499987,75.56175364800005],[-99.79893958199992,75.58852773600015],[-99.75023352799991,75.5893008480001],[-99.70368404899997,75.5952009140001],[-99.66551673099991,75.61591217700011],[-99.86412512899993,75.61591217700011],[-99.86412512899993,75.62274811400015],[-99.84947669199994,75.62449778900013],[-99.80955969999988,75.63580963700012],[-99.81826738199996,75.65119049700014],[-99.8232315749999,75.65623607],[-99.3918350904999,75.67023346550009],[-98.96043860599988,75.68423086100002],[-98.91136633999992,75.69179922100015],[-98.89419511599989,75.69965241100014],[-98.90672766799992,75.7097028670001],[-98.93122311099985,75.71417877800017],[-99.29836992099987,75.69607168150013],[-99.66551673099991,75.67796458500005],[-99.64118404899993,75.6869164080001],[-99.5562638009999,75.6984723980001],[-99.8897598949999,75.68258291250014],[-100.22325598899994,75.66669342700008],[-100.27424068899984,75.65159739800008],[-100.3006892569999,75.65119049700014],[-100.35448157499987,75.65623607],[-100.4792374339999,75.64191315300009],[-100.5534561839999,75.65009186400003],[-100.80781002499995,75.63269684450007],[-101.06216386599989,75.61530182500015],[-101.1019180979999,75.60333893400004],[-101.11729895699993,75.60114166900006],[-101.15269934799994,75.60162995000003],[-101.22948157499988,75.58803945500007],[-101.28954016799987,75.59162018400004],[-101.3611547519999,75.57831452000012],[-101.39232337099989,75.58860911700005],[-101.37181555899993,75.5947940120001],[-101.40615800699987,75.60683828300002],[-101.44937089799988,75.60765208500014],[-101.75658118399988,75.57766347850013],[-102.0637914699999,75.54767487200012],[-102.20787512899993,75.55390045800009],[-102.40029863199992,75.54022858300014],[-102.63341223899997,75.49811432500017],[-102.66787675699989,75.50413646],[-102.66714433499996,75.52716705900015],[-102.68586178299984,75.53668854400014],[-102.70909583199995,75.54035065300012],[-102.75963294199994,75.54022858300014],[-102.77611243399994,75.54498932500003],[-102.7650447259999,75.55589427300009],[-102.72862708199993,75.57436758000013],[-102.75649980399989,75.58576080900009],[-102.84683183499988,75.59983958500014],[-102.87433834499991,75.61029694200012],[-102.88166256399991,75.61782461100007],[-102.8709203769999,75.62482330900015],[-102.84398352799994,75.63397858300014],[-102.82140051999994,75.63739655200006],[-102.80199133999986,75.6342227230001],[-102.76964270699993,75.62274811400015],[-102.73595130099993,75.61701080900015],[-102.63304602799985,75.61591217700011],[-102.64509029899995,75.62702057500015],[-102.6846817699999,75.63003164300015],[-102.7019750639999,75.63580963700012],[-102.69383704299989,75.64081452000006],[-102.68517005099989,75.644924221],[-102.67625891799986,75.64801666900009],[-102.66714433499996,75.65009186400003],[-102.68765214799991,75.67796458500005],[-102.67015540299987,75.67951080900009],[-102.63727779899995,75.68878815300015],[-102.6198624339999,75.69106679900013],[-102.57380123599987,75.68911367400007],[-102.55052649599995,75.69090403900007],[-102.53062903599995,75.6984723980001],[-102.54279537699993,75.70571523600013],[-102.5563044909999,75.71002838700004],[-102.57070878799988,75.71173737200014],[-102.58527584499991,75.71149323100009],[-102.56187903599992,75.72553131700013],[-102.5226130849999,75.72919342700001],[-102.24673417899994,75.72443268400009],[-102.10606848899991,75.69798411700012],[-102.07526607999992,75.69745514500015],[-102.00926673099991,75.70465729400007],[-102.00926673099991,75.71149323100009],[-102.03673255099993,75.71015045800011],[-102.06468665299988,75.70526764500015],[-102.09239661399997,75.70351797100014],[-102.11913001199989,75.71149323100009],[-102.09911048099991,75.717962958],[-102.09117591099994,75.71893952000009],[-102.1172989569999,75.73749420800009],[-102.20543372299991,75.73712799700017],[-102.23582923099988,75.74567291900009],[-102.22272701699991,75.7582054710001],[-102.09117591099994,75.78725820500007],[-102.1189672519999,75.79950592700014],[-102.32583574099995,75.78375885600018],[-102.34569251199984,75.78725820500007],[-102.36607825399993,75.8014183610001],[-102.37413489499997,75.810492255],[-102.36310787699992,75.81879303600006],[-102.3441462879999,75.8375918640001],[-102.33482825399996,75.84186432500003],[-102.31676184799994,75.84625885600012],[-102.28140214799993,75.86542389500009],[-102.26227779899995,75.86981842700006],[-101.8329971999999,75.90582916900001],[-101.8174942699999,75.90326569200012],[-101.80479895699993,75.89549388200011],[-101.78160559799989,75.87421295800014],[-101.76626542899994,75.86981842700006],[-101.75283769399995,75.86798737200007],[-101.70763098899991,75.85553620000015],[-101.63609778599995,75.84601471600017],[-101.57664954299993,75.828599351],[-101.49278723899994,75.81443919499999],[-101.45441646999991,75.81452057500015],[-101.45860755099994,75.81244538000014],[-101.4621475899999,75.80980052300005],[-101.46532141799987,75.806097723],[-101.46861731699993,75.80093008000001],[-101.46397864499988,75.79266998900012],[-101.46320553299998,75.7866071640001],[-101.46666419199988,75.78091054900013],[-101.4748429029999,75.77358633000013],[-101.44591223899988,75.76410553600012],[-101.41519120999989,75.75763580900012],[-101.27578691299993,75.74567291900009],[-101.25869706899991,75.74774811400003],[-101.2479548819999,75.7528750670001],[-101.23912512899993,75.759507554],[-101.22785396999986,75.76609935100008],[-101.15111243399991,75.78359609600001],[-100.98814856699993,75.79067617400007],[-100.91315670499996,75.81452057500015],[-101.04967200399987,75.80707428600009],[-101.0292048819999,75.80093008000001],[-101.06444251199987,75.79035065300015],[-101.14883378799992,75.78986237200014],[-101.22899329299989,75.77838776200012],[-101.35875403599995,75.77973053600003],[-101.35195878799992,75.7901878930001],[-101.32974199099996,75.81146881700006],[-101.3274633449999,75.81793854400017],[-101.34870357999998,75.83690013200008],[-101.37181555899993,75.85179271000014],[-101.41494706899994,75.86237213700018],[-101.50743567599994,75.85708242400001],[-101.55060787699995,75.86981842700006],[-101.54454505099996,75.88507721600003],[-101.55321204299986,75.89736562700008],[-101.56908118399988,75.90680573100009],[-101.58470618399987,75.91388580900015],[-101.58946692599996,75.92450592700003],[-101.56895911399991,75.93512604400014],[-101.48713131399985,75.95917389500009],[-101.4268692699999,75.96698639500006],[-101.3991593089999,75.97528717700004],[-101.36709550699992,75.99624258000001],[-101.35472571499989,75.99884674700009],[-101.34068762899993,76.00043366100012],[-101.3270157539999,76.00478750200013],[-101.31436113199993,76.01166413000014],[-101.30353756399984,76.02065664300015],[-101.3438614569999,76.02122630400011],[-101.41356360599987,76.003607489],[-101.70995032499988,75.98969147300012],[-101.77993730399989,76.0026716170001],[-101.8438207669999,76.0270042990001],[-101.89631100199995,76.06468333500005],[-101.90884355399994,76.08722565300015],[-101.90290279899992,76.10590241100012],[-101.88585364499997,76.12103913000011],[-101.86522376199994,76.13263580900002],[-101.84715735599993,76.139349677],[-101.80821692599993,76.14935944200006],[-101.78954016799986,76.15717194200006],[-101.75666256399987,76.17853424700012],[-101.74233964799988,76.18447500200013],[-101.54356848899988,76.21043528900012],[-101.38548743399986,76.253363348],[-101.78673255099991,76.21857330900013],[-101.8079727859999,76.22064850500009],[-101.84992428299998,76.2296410180001],[-102.10277258999987,76.22077057500006],[-102.16755123599987,76.23908112200012],[-102.1385391919999,76.24848053600012],[-102.09951738199992,76.25145091400005],[-102.06700598899992,76.25861237200009],[-102.0576879549999,76.28001536700012],[-102.07787024599992,76.29376862200014],[-102.11807206899991,76.29743073100009],[-102.19481360599987,76.29433828300002],[-102.16966712099989,76.30133698100009],[-102.08519446499992,76.31297435100011],[-102.05211341099988,76.32306549700017],[-102.04995683499988,76.32977936400012],[-102.09862219999991,76.34902578300014],[-102.06200110599991,76.3561465520001],[-101.9855037099999,76.35578034100008],[-101.95466061099984,76.36945221600003],[-101.97984778599992,76.377386786],[-102.03457597599993,76.3842634140001],[-102.0576879549999,76.39671458500011],[-102.03514563699991,76.41278717700001],[-102.00401770699992,76.41852448100018],[-101.9708552729999,76.42047760600003],[-101.9423721999999,76.42536041900009],[-101.84654700399996,76.45477936400009],[-101.81126868399993,76.45880768400015],[-101.41340084499991,76.43768952000015],[-101.3986710279999,76.43256256700012],[-101.37181555899993,76.41974518400009],[-101.32164466099992,76.41453685100002],[-101.30679277299988,76.41058991100012],[-101.21572831899995,76.3705508480001],[-101.08617102799994,76.34198639500009],[-101.05711829299986,76.32843659100003],[-101.07046464799987,76.32566966400006],[-101.08189856699993,76.31976959800012],[-101.09117591099988,76.31122467700011],[-101.09805253799989,76.300523179],[-101.0906469389999,76.300523179],[-101.12767493399993,76.26032135600009],[-101.13206946499992,76.2451846370001],[-101.10533606699988,76.23908112200012],[-100.96076412699995,76.23183828300007],[-100.84626217399995,76.2105980490001],[-100.75308183499992,76.18089427300008],[-100.71715247299993,76.17401764500006],[-100.70555579299992,76.1656761740001],[-100.69566809799991,76.15631745000013],[-100.6865942049999,76.14972565300017],[-100.65038001199987,76.14264557500003],[-100.63414466099994,76.13666413000003],[-100.62511145699993,76.12299225500009],[-100.71507727799991,76.10635000200003],[-100.74120032499987,76.09568919499999],[-100.42027747299994,76.12299225500009],[-100.45563717399993,76.10154857000013],[-100.62511145699993,76.08828359600001],[-100.62511145699993,76.08148834800006],[-100.3539119129999,76.06557851800015],[-100.31041419199995,76.04389069200009],[-100.29674231699993,76.03481679900007],[-100.20592200399994,75.99433014500015],[-100.19611568899991,75.98847077],[-100.18004309799991,75.97052643400013],[-100.16779537699996,75.96344635600009],[-100.14427649599992,75.95709870000015],[-100.07022050699995,75.95172760600009],[-100.08259029899989,75.93553294500003],[-100.1053767569999,75.92963288000011],[-100.13109290299987,75.92601146000005],[-100.15217037699989,75.91693756700006],[-100.12852942599994,75.91046784100014],[-100.0992732409999,75.90940989800002],[-100.0695694649999,75.91266510600006],[-100.01561438699989,75.92560455900015],[-99.9995824859999,75.92666250200001],[-99.9870499339999,75.92377350500009],[-99.9822891919999,75.91990794500008],[-99.97565670499993,75.91290924700009],[-99.97227942599991,75.90631745000012],[-99.98167883999994,75.90058014500015],[-99.98082434799994,75.89435455900018],[-99.97740637899992,75.88743724199998],[-99.97398841099992,75.88279857000005],[-99.96141516799993,75.87579987200017],[-99.94709225199995,75.87518952000012],[-99.91942298099985,75.88279857000005],[-99.8655899729999,75.90790436400015],[-99.7238663399999,75.91693756700006],[-99.71349036399991,75.91917552300013],[-99.68447831899992,75.93569570500001],[-99.67003333199996,75.93817780200014],[-99.63975989499997,75.93756745000017],[-99.60228430899993,75.94245026200015],[-99.5942276679999,75.9461937520001],[-99.59113521999993,75.954779364],[-99.58470618399991,75.96320221600014],[-99.5700577459999,75.96588776200004],[-99.55382239499994,75.96478913000007],[-99.52041581899988,75.95701731999998],[-99.49136308499992,75.95917389500009],[-99.44025631399985,75.97223541900014],[-99.4914444649999,75.98330312700008],[-99.81843014199993,75.95123932500012],[-99.86412512899993,75.9374453800001],[-99.86668860599985,75.95018138200005],[-99.87661699099995,75.95160553600012],[-99.8898005849999,75.95026276200004],[-99.90200761599988,75.954779364],[-99.90440833199992,75.96417877800003],[-99.89561926999994,75.97142161700005],[-99.8824356759999,75.97630442900011],[-99.8716527989999,75.97842031500012],[-99.89073645699989,75.98948802300008],[-99.91388912699993,75.99042389500015],[-99.93846594999984,75.98847077],[-99.96222896999986,75.99091217700014],[-99.96764075399989,75.99469635600013],[-99.96849524599988,75.99966054900001],[-99.97004146999984,76.00495026200018],[-99.97740637899992,76.00975169499999],[-99.99144446499989,76.01300690300003],[-100.03547115799988,76.013128973],[-100.02220618399987,76.01707591399999],[-100.01032467399992,76.02236562700016],[-100.00080318899991,76.02977122600005],[-99.99449622299997,76.04047272300005],[-100.06017005099997,76.04254791900009],[-100.08372962099992,76.05263906500014],[-100.10435950399993,76.07526276200011],[-100.1093643869999,76.086615302],[-100.11156165299988,76.09589264500015],[-100.11660722599991,76.10370514500012],[-100.13019771999987,76.11054108300006],[-100.1996150379999,76.12677643400009],[-100.22105872299994,76.13605377800015],[-100.11864173099985,76.13605377800015],[-100.12218176999993,76.14581940300009],[-100.12486731699991,76.14972565300017],[-100.0838516919999,76.16054922100007],[-100.03913326699985,76.159125067],[-99.95352128799995,76.14350006700012],[-99.81012936099985,76.13812897300006],[-99.72248287699992,76.12433502800015],[-99.68374589799988,76.12376536699999],[-99.55842037699989,76.14451732],[-99.46080481699988,76.150132554],[-99.41852779899996,76.16400788000009],[-99.69961503799992,76.141058661],[-99.72565670499989,76.14516836100013],[-99.76170813699986,76.15839264500009],[-99.77818762899993,76.16250234600012],[-99.88068600199992,76.173000393],[-99.97183183499992,76.20221588700004],[-99.99421139199985,76.204982815],[-100.16869055899987,76.19041575700008],[-100.47874915299991,76.23383209800011],[-100.51097571499986,76.24994538],[-100.49510657499992,76.27016836100002],[-100.44456946499992,76.28375885600015],[-100.07705644399996,76.27326080900008],[-100.07705644399996,76.28001536700012],[-100.09093176999995,76.28021881700009],[-100.1317032539999,76.28685130400005],[-100.12486731699991,76.29433828300002],[-100.19546464799987,76.30076732000013],[-100.21422278599992,76.30801015800016],[-100.17808997299989,76.31757233300014],[-100.13947506399992,76.30882396000005],[-100.10045325399994,76.29450104400017],[-100.0630997389999,76.28685130400005],[-99.89696204299995,76.27692291900014],[-99.84365800699989,76.28685130400005],[-99.9965714179999,76.29881419499998],[-100.02183997299994,76.30801015800016],[-99.99889075399996,76.30866120000009],[-99.94880123599985,76.315619208],[-99.92686926999993,76.32225169500005],[-99.95799719999992,76.33002350500006],[-100.02916419199995,76.32575104400014],[-100.06338456899994,76.32843659100003],[-100.18008378799992,76.36322663000009],[-100.17048092399995,76.36937083500005],[-100.13853919199994,76.38312409100017],[-100.16600501199989,76.38141510600015],[-100.22191321499994,76.37042877800012],[-100.24771074099986,76.36945221600003],[-100.32135982999993,76.38898346600011],[-100.67528235599993,76.38104889500015],[-100.96304277299993,76.48029205900018],[-100.98818925699992,76.5065778670001],[-100.73159745999988,76.53196849200013],[-100.70026607999993,76.540716864],[-100.71007239499997,76.54311758000013],[-100.7181697259999,76.54718659100011],[-100.72427324099989,76.55329010600009],[-100.7281388009999,76.56122467700006],[-100.70881100199996,76.56342194200013],[-100.65306555899987,76.581732489],[-100.57892818899992,76.58844635600015],[-100.42516028599991,76.62921784100003],[-100.38491777299993,76.63007233300011],[-100.33259029899993,76.64472077000012],[-100.2696427069999,76.649562893],[-99.85130774599992,76.60993073100018],[-99.8302302729999,76.61147695500004],[-99.76598059799996,76.63287995000016],[-99.74128170499996,76.63694896000011],[-99.6409399079999,76.6374372420001],[-99.5899552069999,76.62856679900007],[-99.54946855399987,76.60960521000005],[-99.58006751199989,76.6011416690001],[-99.6521703769999,76.6068382830001],[-99.68663489499993,76.60219961100007],[-99.52301998599988,76.59088776200018],[-99.29108639199987,76.50336334800015],[-99.25462805899988,76.499741929],[-99.25462805899988,76.5065778670001],[-99.26146399599992,76.5065778670001],[-99.26146399599992,76.51406484600005],[-99.1966853509999,76.51707591400007],[-99.16368567599994,76.51349518400008],[-99.13853919199995,76.499741929],[-99.2217911449999,76.48322174700012],[-99.25731360599988,76.46893952],[-99.24103756399985,76.44822825700003],[-99.15876217399989,76.41571686400012],[-99.11778723899997,76.407171942],[-99.07030188699984,76.4042015650001],[-99.07030188699984,76.41038646000004],[-99.10920162699995,76.42829010600012],[-99.1297094389999,76.44171784100011],[-99.13853919199995,76.4550641950001],[-99.12267005099993,76.46491120000006],[-99.04710852799992,76.45538971600014],[-99.02188066299996,76.45880768400015],[-99.03490149599995,76.45880768400015],[-99.03490149599995,76.46564362200017],[-99.01235917899986,76.47064850500011],[-98.97923743399993,76.47280508000001],[-98.9534805979999,76.467718817],[-98.95299231699991,76.45136139500009],[-98.93089758999992,76.43952057500012],[-98.9042048819999,76.43585846600017],[-98.85057532499991,76.43768952000015],[-98.85057532499991,76.44513580900012],[-98.86164303299994,76.44440338700018],[-98.8721817699999,76.44546133000013],[-98.89150956899994,76.45136139500009],[-98.85680091099995,76.46564362200017],[-98.87808183499993,76.47939687700008],[-98.9059138659999,76.49262116100012],[-98.9349259109999,76.5026716170001],[-98.9598282539999,76.5065778670001],[-98.9728897779999,76.51019928600006],[-98.98127193899987,76.51850006700015],[-98.98741614499994,76.52749258000014],[-98.99396725199992,76.53335195500001],[-99.00938880099994,76.53644440300009],[-99.04133053299995,76.53660716400005],[-99.05601966099995,76.540716864],[-99.0428360669999,76.55158112200009],[-99.03758704299993,76.56244538000009],[-99.0415746739999,76.57290273600013],[-99.05601966099995,76.581732489],[-99.04527747299994,76.58087799700012],[-99.03482011599995,76.581732489],[-99.02476966099988,76.58429596600011],[-99.01504472599993,76.58856842700011],[-99.01862545499992,76.59162018400012],[-99.0251358709999,76.59894440300003],[-99.02871660099989,76.60219961100007],[-98.9754939439999,76.61688873900006],[-98.90469316299989,76.62441640800012],[-98.83409583199992,76.62262604400014],[-98.78164628799996,76.60960521000005],[-98.77989661399997,76.58974844000015],[-98.75182044199997,76.58222077],[-98.72667395699996,76.59015534100014],[-98.73387610599991,76.61644114800008],[-98.61359615799995,76.61054108300014],[-98.54820716099988,76.615464585],[-98.5079646479999,76.63694896000011],[-98.5326228509999,76.64288971600014],[-98.54149329299995,76.64321523600007],[-98.52969316299995,76.64923737200009],[-98.51642818899984,76.651312567],[-98.48745683499992,76.65062083500004],[-98.48745683499992,76.657416083],[-98.5646052729999,76.66571686400006],[-98.67926998599987,76.65062083500004],[-98.77741451699984,76.65078359600012],[-98.82884680899993,76.65843333500004],[-98.85680091099995,76.67792389500015],[-98.45531165299988,76.68207428600009],[-98.42715410099989,76.67755768400004],[-98.40802975199992,76.6676699890001]]],[[[-100.33348548099993,76.71454498900005],[-100.74661210849987,76.64813873900013],[-101.15973873599991,76.581732489],[-101.33812415299991,76.56122467700006],[-101.68712317599996,76.58856842700011],[-101.66685950399994,76.5960960960001],[-101.59837805899988,76.60219961100007],[-101.53034420499993,76.62815989800008],[-101.43346106699994,76.64166901200004],[-101.2427465489999,76.64655182500012],[-101.19212805899991,76.65582916900014],[-101.13756262899994,76.6840274110001],[-101.0901993479999,76.68622467700011],[-101.05870520699987,76.69131094000015],[-101.05052649599989,76.691107489],[-101.04491126199989,76.693304755],[-101.04283606699995,76.70184967700011],[-101.03986568899985,76.70892975500007],[-101.03254146999986,76.71454498900005],[-101.02375240799998,76.71881745000016],[-100.97248287699995,76.73554108300011],[-100.62852942599994,76.75983307500009],[-100.24771074099986,76.73940664300004],[-100.33348548099993,76.71454498900005]]],[[[-89.71251380099997,76.52094147300006],[-89.67495683499995,76.5065778670001],[-89.71239173099991,76.50454336100007],[-89.78701738199993,76.48590729400009],[-89.82579505099994,76.48615143400004],[-89.88744055899988,76.5091820330001],[-89.91958574099993,76.51581452000006],[-89.94863847599991,76.5065778670001],[-89.93862870999993,76.48334381700009],[-89.97736568899988,76.47772858300009],[-90.06476803299995,76.48615143400004],[-90.1578263009999,76.50608958500011],[-90.20433508999986,76.5242373720001],[-90.26618404899995,76.57461172100015],[-90.56802324099988,76.71564362200012],[-90.5899958979999,76.73236725500014],[-90.59447180899988,76.75088125200016],[-90.5718481109999,76.77350495000003],[-90.52953040299991,76.792181708],[-90.33047441299996,76.82379791900009],[-90.1988826159999,76.83616771000011],[-89.98216712099986,76.84235260600009],[-89.93927975199989,76.82908763200004],[-89.84874426999994,76.81366608300011],[-89.69635982999992,76.75348541900014],[-89.67495683499995,76.73261139500009],[-89.68838456899996,76.72724030200014],[-89.69326738199992,76.72109609600014],[-89.6890356109999,76.71552155200014],[-89.67495683499995,76.71206289300014],[-89.69420325399992,76.69261302300005],[-89.72594153599997,76.67999909100017],[-89.81615149599989,76.6676699890001],[-89.83580481699993,76.65745677299999],[-89.85008704299995,76.64036692900014],[-89.8592830069999,76.61644114800008],[-89.85822506399987,76.60028717700011],[-89.84947669199997,76.58315664300007],[-89.82209225199992,76.55125560100005],[-89.79157467399997,76.53436920800006],[-89.71251380099997,76.52094147300006]]],[[[-108.66738847599996,76.82485586100013],[-108.64940344999991,76.81452057500003],[-108.66974850199992,76.79962799700017],[-108.68724524599988,76.78375885600015],[-108.69001217399992,76.77114492400005],[-108.67003333199995,76.76654694200012],[-108.53233801999991,76.76699453300013],[-108.48550370999993,76.7571475280001],[-108.45079505099989,76.73261139500009],[-108.44408118399994,76.70331452000006],[-108.46861731699995,76.6862653670001],[-108.54015051999991,76.66425202],[-108.57652747299989,76.64598216400005],[-108.59727942599989,76.6430524760001],[-108.6490779289999,76.653469143],[-108.67788652299993,76.65277741100005],[-108.73192298099993,76.64321523600007],[-108.69127356699993,76.60822174700017],[-108.68724524599988,76.60219961100007],[-108.66274980399993,76.59796784100013],[-108.62865149599992,76.5791690120001],[-108.60863196499984,76.574896552],[-108.56159420499993,76.57005442900011],[-108.53868567599994,76.56175364800013],[-108.53331458199989,76.54755280200011],[-108.54832923099991,76.5394554710001],[-108.60651607999995,76.53070709800002],[-108.62889563699987,76.52020905200014],[-108.60334225199998,76.51512278900013],[-108.54824785099993,76.52045319200009],[-108.52586829299992,76.51406484600005],[-108.56631425699995,76.50250885600003],[-108.58682206899991,76.49258047100011],[-108.5910538399999,76.48240794499999],[-108.56940670499993,76.47174713700015],[-108.50959225199998,76.46938711100002],[-108.48493404899989,76.45880768400015],[-108.51732337099989,76.44936758000013],[-108.58722896999991,76.44318268400015],[-108.61587480399989,76.42348867400013],[-108.58971106699994,76.41022370000009],[-108.56012936099988,76.411118882],[-108.53001868399984,76.41583893400009],[-108.50230872299996,76.41380442900008],[-108.47130286399994,76.40692780200006],[-108.3422745429999,76.402085679],[-108.31883704299992,76.396389065],[-108.26333574099996,76.37152741100005],[-108.24559485599988,76.35919830900008],[-108.23851477799991,76.35578034100008],[-108.22240149599993,76.354437567],[-108.19107011599989,76.35521067900014],[-108.17707271999983,76.34902578300014],[-108.18980872299987,76.34845612200009],[-108.20213782499992,76.34638092700008],[-108.21373450399993,76.34210846600014],[-108.22423255099991,76.33527252800006],[-108.0808813139999,76.28685130400005],[-108.0808813139999,76.28001536700012],[-108.12865149599993,76.28001536700012],[-108.12865149599993,76.27326080900008],[-108.1149796209999,76.27326080900008],[-108.13849850199993,76.25910065300017],[-108.21153723899995,76.26691315300015],[-108.2316788399999,76.253363348],[-108.21422278599994,76.23908112200012],[-108.08763587099993,76.22540924700017],[-108.11994381399985,76.210109768],[-108.33641516799986,76.1864281270001],[-108.37755286399994,76.17377350500011],[-108.40977942599997,76.14972565300017],[-108.39688066299996,76.13202545800009],[-108.4122615229999,76.12034739799998],[-108.43838456899994,76.11155833500011],[-108.45759029899992,76.10252513200011],[-108.44009355399994,76.097398179],[-108.40172278599994,76.0960960960001],[-108.38247636599989,76.08828359600001],[-108.4109594389999,76.08344147300012],[-108.44839433499993,76.07119375200016],[-108.48216712099992,76.05548737200009],[-108.49917558499988,76.04047272300005],[-108.3552139959999,76.054144598],[-108.16197669199993,76.04791901200002],[-108.03986568899988,76.06777578300012],[-107.88902747299989,76.06777578300012],[-107.85757402299987,76.0658633480001],[-107.73070227799992,76.03900788000003],[-107.71776282499991,76.03363678600014],[-107.70067298099988,76.02122630400011],[-107.69009355399992,76.01557038000011],[-107.65025794199994,76.005764065],[-107.6401261059999,75.98924388200011],[-107.64830481699988,75.97284577000012],[-107.67674719999992,75.96539948100003],[-107.7049454419999,75.96149323100006],[-107.79344641799992,75.930609442],[-107.78034420499992,75.92511627800015],[-107.75234941299992,75.92194245000009],[-107.7381892569999,75.91693756700006],[-107.78815670499993,75.90257396000008],[-107.89736894399995,75.9011091170001],[-107.9442439439999,75.87596263200014],[-107.94102942599996,75.87213776200012],[-107.9395645819999,75.86904531500012],[-107.93858801999991,75.86603424700003],[-107.93683834499993,75.86237213700018],[-107.96906490799988,75.85956452000012],[-107.99937903599995,75.84442780200014],[-108.04670162699989,75.80707428600009],[-108.03880774599993,75.80499909100014],[-108.01878821499987,75.7940941430001],[-108.02623450399992,75.78725820500007],[-107.97862708199995,75.7807070980001],[-107.9214574859999,75.79067617400007],[-107.86530514199987,75.81069570500011],[-107.82079016799987,75.83441803600006],[-107.7709854809999,75.86937083500005],[-107.75340735599988,75.877834377],[-107.72057044199988,75.88580963700014],[-107.36717688699987,75.91864655200006],[-107.29747473899988,75.91299062700007],[-107.2160538399999,75.91583893400012],[-107.15025794199995,75.89862702],[-107.07599850199995,75.89940013200011],[-107.04613196499986,75.88898346600003],[-107.0822647779999,75.87750885600018],[-107.0939021479999,75.86981842700006],[-107.09772701699991,75.86334870000015],[-107.1017146479999,75.84788646000014],[-107.10757402299994,75.84186432500003],[-107.0770157539999,75.81525299700009],[-107.03770911399991,75.80756256700006],[-106.99575761599992,75.80508047100012],[-106.95677649599993,75.7940941430001],[-106.97476152299988,75.79413483300009],[-107.0005997389999,75.79120514500015],[-107.0235082669999,75.78465403900007],[-107.03307044199987,75.77358633000013],[-107.02208411399992,75.76740143400015],[-106.94994055899991,75.75250885600012],[-106.96703040299987,75.73509349200005],[-106.96165930899991,75.71039459800015],[-106.94517981699991,75.68626536700005],[-106.92943274599988,75.67055898600006],[-106.91519120999996,75.66046784100011],[-106.89663652299996,75.65078359600015],[-106.88093014199988,75.64923737200012],[-106.8748673169999,75.66372304900015],[-106.88145911399995,75.67186107000008],[-106.8942764959999,75.67670319200015],[-106.9042048819999,75.68374258000004],[-106.90217037699996,75.6984723980001],[-106.9090063139999,75.6984723980001],[-106.89671790299992,75.71539948100009],[-106.88927161399995,75.73159414300015],[-106.87970943899988,75.746568101],[-106.86119544199995,75.75995514500009],[-106.88231360599987,75.76609935100008],[-106.81851152299993,75.78534577],[-106.75401770699996,75.79584381700009],[-106.61481686099987,75.80093008000001],[-106.66417395699995,75.814398505],[-106.86229407499991,75.8256289730001],[-106.88589433499993,75.83820221600017],[-106.89102128799995,75.85846588700016],[-106.87144934799989,75.88593170800011],[-106.86856035099994,75.90265534100014],[-106.88231360599987,75.92059967700011],[-106.89142818899985,75.94110748900006],[-106.8748673169999,75.96539948100003],[-106.84129798099987,75.98212311400006],[-106.71865800699995,76.01508209800015],[-106.70099850199993,76.02313873900009],[-106.65542558499988,76.05072663],[-106.63174394399995,76.05853913],[-106.60684160099991,76.06159088700018],[-106.33983313699991,76.06159088700018],[-106.04987545499992,76.02588532100005],[-105.75991777299991,75.99017975500003],[-105.60680091099994,75.9374453800001],[-105.51183020699992,75.89057038000004],[-105.4665421209999,75.85773346600014],[-105.44294186099987,75.82135651200018],[-105.46344967399993,75.80121491100014],[-105.4571020169999,75.782375393],[-105.42243404899992,75.74567291900009],[-105.46336829299993,75.73261139500003],[-105.4419652989999,75.725734768],[-105.41974850199992,75.71173737200014],[-105.4022110669999,75.69358958500014],[-105.39513098899992,75.6742617860001],[-105.39338131399985,75.66559479400001],[-105.39049231699991,75.6596540390001],[-105.38996334499984,75.65338776200007],[-105.39513098899992,75.643255927],[-105.41006425699987,75.63117096600008],[-105.44640051999995,75.624212958],[-105.46336829299993,75.61591217700011],[-105.47622636599988,75.59861888200011],[-105.48302161399988,75.581040757],[-105.49364173099993,75.56549713700018],[-105.51805579299989,75.55390045800009],[-105.54112708199995,75.55084870000017],[-105.58971106699991,75.55011627800015],[-105.68932044199995,75.52716705900015],[-105.68932044199995,75.51972077000009],[-105.68016516799987,75.51825592700011],[-105.67418372299996,75.51569245000012],[-105.66136633999992,75.5067406270001],[-105.68537350199996,75.50608958500013],[-105.72956295499993,75.49966054900013],[-105.75080318899984,75.49237702],[-105.7150772779999,75.48411692900011],[-105.61986243399993,75.48126862200017],[-105.59312903599992,75.46507396000011],[-105.60977128799996,75.46206289300012],[-105.64321855399993,75.44065989799999],[-105.66161048099985,75.4323184270001],[-105.70905514199988,75.41974518400012],[-105.70872962099986,75.41038646],[-105.68248450399992,75.393052476],[-105.66649329299993,75.38495514500006],[-105.65534420499992,75.37759023600007],[-105.65245520699987,75.36847565300017],[-105.66136633999992,75.35521067900005],[-105.68024654899995,75.34723541900009],[-105.70506751199991,75.342922268],[-105.72183183499993,75.33783600500009],[-105.71666419199993,75.327866929],[-105.73558508999986,75.31403229400009],[-105.8122452459999,75.29999420800011],[-105.86766516799989,75.27094147300015],[-105.88451087099989,75.26650625200006],[-105.89582271999987,75.25910065300009],[-105.93944251199987,75.21466705900018],[-105.92861894399988,75.20669179900013],[-105.83950761599989,75.18329498900015],[-105.87450110599988,75.175238348],[-105.88849850199995,75.16689687700013],[-105.88451087099989,75.15322500200008],[-105.89159094999984,75.14569733300014],[-106.01040605399994,75.13418203300002],[-106.04710852799987,75.12409088700002],[-106.05980383999992,75.116888739],[-106.07380123599988,75.10455963700015],[-106.07917232999992,75.09296295800014],[-106.06607011599995,75.08771393400015],[-106.0244034499999,75.08209870000015],[-106.00332597599989,75.073675848],[-105.99779212099988,75.06037018400018],[-106.0089005199999,75.05662669500005],[-106.38457190649991,75.02981191600016],[-106.76024329299992,75.00299713700015],[-106.7724503249999,74.998968817],[-106.77843176999991,74.99518463700015],[-106.78189042899992,74.99103424700002],[-106.78404700399992,74.98745351800007],[-106.78604081899994,74.98529694200006],[-107.00519771999983,74.92381419499999],[-107.23102779899996,74.92011139500015],[-107.3141983709999,74.93378327000009],[-107.51260331899991,74.94342682500015],[-107.6862686839999,74.98224518400015],[-107.6898087229999,74.998968817],[-107.72032630099993,75.01605866100014],[-107.72451738199996,75.02252838700004],[-107.71816972599993,75.03196849200008],[-107.69001217399995,75.03969961100007],[-107.68358313699993,75.05048248900009],[-107.69253495999996,75.07587311399999],[-107.71483313699989,75.09198639500006],[-107.74351966099995,75.10000234600001],[-107.77171790299994,75.10138580900008],[-107.78600012899992,75.09516022300012],[-107.78038489499993,75.09393952000012],[-107.76553300699987,75.08771393400015],[-107.7731827459999,75.07538483300011],[-107.7546280589999,75.0650902360001],[-107.74356035099996,75.05272044500005],[-107.77391516799992,75.03440989799998],[-107.85391191299992,75.01373932500017],[-107.93683834499993,75.00580475500011],[-107.92638098899992,75.00800202],[-107.92137610599991,75.00967031500012],[-107.91637122299996,75.01264069200012],[-107.93248450399992,75.01780833500014],[-107.95457923099993,75.02106354400009],[-107.97638912699996,75.02008698100012],[-107.99144446499989,75.01264069200012],[-107.99722245999995,75.000677802],[-107.99079342399993,74.99494049700003],[-107.96475175699987,74.98843008000013],[-107.94713294199994,74.972113348],[-107.96670488199992,74.96190013200007],[-108.01878821499987,74.9505882830001],[-107.99986731699994,74.94586823100018],[-107.96214758999987,74.9432640650001],[-107.9442439439999,74.93691640800014],[-107.97158769399988,74.929429429],[-108.05695553299984,74.93691640800014],[-108.41661536399988,74.91705963700015],[-108.49547278599994,74.93427155200008],[-108.52277584499991,74.93691640800014],[-108.53990637899996,74.94122955900015],[-108.56847083199995,74.96051666900007],[-108.80703691299993,74.98529694200006],[-108.80703691299993,74.99152252800012],[-108.51219641799987,74.97846100500014],[-108.54686438699984,75.01268138200011],[-108.59654700399994,75.03847890800016],[-108.6520889959999,75.05475495000009],[-108.82420813699987,75.0715192730001],[-108.92418372299993,75.05414459800012],[-108.94420325399989,75.04677969000012],[-108.95124264199987,75.04144928600006],[-108.97154700399996,75.01886627800009],[-108.96182206899991,75.01886627800009],[-108.95274817599991,75.01666901200008],[-108.94456946499992,75.0123558610001],[-108.93736731699988,75.00580475500011],[-109.0335994129999,75.00580475500011],[-108.9925837879999,74.99152252800012],[-109.07530676999995,74.98867422100007],[-109.35716712099992,74.9467227230001],[-109.38048255099993,74.93671295799999],[-109.40074622299993,74.92348867400005],[-109.41030839799993,74.90961334800006],[-109.40444902299988,74.90851471600003],[-109.38988196499986,74.90338776200011],[-109.42760169199993,74.89964427299999],[-109.5323380199999,74.86701080900004],[-109.5819392569999,74.85814036699999],[-109.88385982999993,74.87055084800002],[-109.99795488199993,74.854193427],[-110.0036921869999,74.85260651200015],[-110.01988684799996,74.84813060100011],[-110.05337480399992,74.82908763200011],[-110.06981360599991,74.82363515800006],[-110.08820553299984,74.82762278900005],[-110.08189856699991,74.83441803600009],[-110.08820553299984,74.84072500200001],[-110.15493730399989,74.827866929],[-110.30785071499992,74.85219961100015],[-110.37677975199996,74.84072500200001],[-110.36632239499988,74.83885325700005],[-110.36139889199993,74.837347723],[-110.3563126289999,74.83441803600009],[-110.37022864499987,74.83490631700006],[-110.38402258999989,74.83348216400002],[-110.41087805899988,74.82762278900005],[-110.41087805899988,74.82078685100014],[-110.3390193349999,74.80784739800013],[-110.31468665299994,74.80719635600018],[-110.34398352799987,74.79657623900012],[-110.60334225199992,74.78607819200006],[-110.64614824099993,74.79437897300014],[-110.6661270819999,74.79132721600014],[-110.67096920499998,74.77301666900009],[-110.65855872299996,74.7591820330001],[-110.6340225899999,74.74481842700011],[-110.58901933499995,74.72528717700014],[-110.61676998599984,74.70530833500005],[-110.77403723899994,74.68366120000015],[-110.83604895699997,74.65631745000009],[-110.85895748599988,74.65135325700014],[-110.9500219389999,74.6463890650001],[-110.95982825399992,74.63987864800002],[-110.96715247299994,74.63129303600009],[-110.97948157499988,74.6222191430001],[-111.00096594999992,74.61635976800012],[-111.07502193899988,74.61542389500006],[-111.15697180899991,74.59422435100008],[-111.22842363199989,74.59406159100011],[-111.25377356699991,74.58746979400003],[-111.30402584499988,74.56378815300012],[-111.32249915299991,74.56073639500003],[-111.41104081899992,74.56989166900009],[-111.57420813699986,74.53196849200008],[-111.65754146999986,74.50120677299999],[-111.94827226449993,74.47479889550006],[-112.23900305899991,74.448391018],[-112.30894934799991,74.43036530199998],[-112.38829505099996,74.42401764500015],[-112.43740800699989,74.41351959800008],[-112.63487708199989,74.41315338700015],[-113.02379309799989,74.39594147300015],[-113.22105872299993,74.40460846600014],[-113.45270748599992,74.41889069200015],[-113.6930232409999,74.44448476800002],[-113.76561438699991,74.47113678600014],[-114.17349199099992,74.56696198100018],[-114.17414303299988,74.57184479400013],[-114.17267818899991,74.57343170800009],[-114.16978919199995,74.57367584800011],[-114.16608639199984,74.57440827000015],[-114.19294186099992,74.57583242400004],[-114.39232337099988,74.63930898600013],[-114.43077551999997,74.65790436400012],[-114.44066321499987,74.6687686220001],[-114.43980872299989,74.68366120000015],[-114.42235266799993,74.70311107000008],[-114.39500891799986,74.71466705900009],[-114.30992591099994,74.73212311400013],[-114.23436438699993,74.758734442],[-113.97191321499987,74.807603257],[-113.82949785099993,74.81403229400009],[-113.7518611319999,74.83429596600011],[-113.62682044199993,74.84275950700005],[-113.49559485599988,74.83917877800017],[-113.42137610599988,74.85675690300012],[-113.3361710279999,74.8623721370001],[-113.25796464799988,74.84788646000005],[-113.21760006399984,74.84589264500012],[-113.19286048099987,74.8623721370001],[-113.26016191299989,74.876654364],[-113.32998613199993,74.88287995000015],[-113.30663001199991,74.88861725500014],[-113.29442298099987,74.88979726800007],[-113.28408769399995,74.88922760600009],[-113.20775305899991,74.89081452000012],[-113.18602454299995,74.89594147300012],[-113.17955481699993,74.90086497600002],[-113.16612708199993,74.91705963700015],[-113.11095130099991,74.94171784100014],[-113.0129288399999,74.95319245000009],[-112.9588923819999,74.96670156500006],[-112.79784094999988,74.98505280200011],[-112.69782467399992,74.97931549700014],[-112.54914303299984,74.99933502800012],[-112.27179928299992,74.99933502800012],[-112.06305904899992,75.00796133000001],[-111.90868079299995,74.99713776200012],[-111.7770889959999,74.98505280200011],[-111.6712540359999,75.00397370000003],[-111.58580481699995,75.00641510600018],[-111.5554906889999,75.01264069200012],[-111.5018611319999,75.03961823100009],[-111.47972571499992,75.04677969000012],[-111.50487219999991,75.05874258000016],[-111.55483964799994,75.04767487200003],[-111.57591712099986,75.06037018400018],[-111.54295813699989,75.07290273600007],[-111.5091853509999,75.07147858300011],[-111.44188391799989,75.06037018400018],[-111.40294348899988,75.06329987200012],[-111.28795325399989,75.08771393400015],[-111.30260169199991,75.09853750200016],[-111.32298743399988,75.10512929900013],[-111.34471594999987,75.10822174700012],[-111.36363684799987,75.10822174700012],[-111.33950761599996,75.115668036],[-111.29165605399994,75.10757070500014],[-111.26683508999987,75.10822174700012],[-111.26203365799991,75.11127350500003],[-111.26097571499994,75.11591217700014],[-111.26113847599991,75.12018463700004],[-111.25999915299988,75.122503973],[-111.19098873599985,75.13544342700011],[-111.1625870429999,75.13613515800016],[-111.15160071499986,75.13825104400014],[-111.13272050699993,75.147650458],[-111.10057532499985,75.15273672100001],[-111.02790279899997,75.17715078300014],[-111.0688370429999,75.19074127800012],[-111.05378170499989,75.19623444200015],[-111.02159583199995,75.2023379580001],[-111.00674394399988,75.21124909100017],[-111.0135798819999,75.2180036480001],[-110.99038652299987,75.22426992400015],[-110.93675696499989,75.22284577000009],[-110.9180395169999,75.23236725500009],[-110.92430579299986,75.24286530200006],[-110.95075436099985,75.25161367400013],[-111.10269120999988,75.27334219],[-111.2435196609999,75.26650625200006],[-111.25059973899994,75.2608096370001],[-111.27476966099995,75.23265208500011],[-111.28795325399989,75.22182851800012],[-111.3121638659999,75.20966217700014],[-111.37218176999991,75.18724192900011],[-111.42861894399995,75.17967357],[-111.48875891799993,75.16502513200008],[-111.52065995999995,75.16339752800006],[-111.57262122299993,75.1708438170001],[-111.59923255099994,75.17096588700008],[-111.62433834499984,75.16339752800006],[-111.57575436099988,75.15615469000011],[-111.56163489499995,75.1498070330001],[-111.67833411399995,75.1498070330001],[-111.69880123599992,75.15863678600013],[-111.73289954299993,75.18488190300017],[-111.75348873599987,75.19074127800012],[-111.76333574099989,75.1894391950001],[-111.7718806629999,75.18585846600014],[-111.77989661399995,75.18130117400001],[-111.89736894399996,75.139837958],[-111.92345130099993,75.13641998900009],[-112.05915279899993,75.1498070330001],[-112.21458899599986,75.12799713700004],[-112.34605872299993,75.12152741100012],[-112.41820227799994,75.12824127800016],[-112.47345943899985,75.1498070330001],[-112.45360266799995,75.15859609600015],[-112.42926998599988,75.16498444200008],[-112.36164303299992,75.1738955750001],[-112.3107804029999,75.19415924700003],[-112.29527747299987,75.20502350500011],[-112.31798255099993,75.21124909100017],[-112.3915095689999,75.21124909100017],[-112.3915095689999,75.2180036480001],[-112.36359615799988,75.2180036480001],[-112.34996497299993,75.22052643400012],[-112.33690344999985,75.22553131700006],[-112.39037024599986,75.2435570330001],[-112.40489661399991,75.24603913000011],[-112.42174231699991,75.24262116100003],[-112.44351152299988,75.23407623900009],[-112.46141516799992,75.22280508000009],[-112.46662350199993,75.21124909100017],[-112.4611710279999,75.20962148600013],[-112.45018469999994,75.20840078300013],[-112.43887285099994,75.20514557500017],[-112.43248450399993,75.19757721600003],[-112.43635006399983,75.18732330900008],[-112.4495336579999,75.18329498900015],[-112.58950761599988,75.18329498900015],[-112.61949622299994,75.19188060100005],[-112.63255774599993,75.19916413000006],[-112.63792883999989,75.2081566430001],[-112.63243567599996,75.21946849200008],[-112.61953691299992,75.22581614800002],[-112.60472571499987,75.23016998899999],[-112.59325110599993,75.23550039300015],[-112.59520423099988,75.24990469000011],[-112.62132727799992,75.26459381700012],[-112.65485592399996,75.27570221600014],[-112.6788630849999,75.27952708500007],[-112.67218990799985,75.27594635600009],[-112.66519120999986,75.27334219],[-112.66519120999986,75.26650625200006],[-112.69977779899996,75.26194896000014],[-112.7151993479999,75.24941640800013],[-112.72472083199989,75.22996653900005],[-112.74095618399993,75.20502350500011],[-112.70641028599994,75.1874046900001],[-112.69595292899996,75.18024323100005],[-112.69351152299993,75.17267487200009],[-112.70079505099993,75.15330638200008],[-112.69937089799987,75.14232005400011],[-112.73009192599996,75.141546942],[-112.85708574099995,75.10984935100012],[-113.02293860599988,75.09479401200012],[-113.05459550699996,75.09739817900011],[-113.08360755099994,75.10822174700012],[-113.12075761599995,75.14142487200003],[-113.13817298099991,75.1498070330001],[-113.16177324099995,75.11115143400004],[-113.17983964799988,75.09463125200016],[-113.2064509759999,75.08771393400015],[-113.34972083199996,75.08063385600009],[-113.44692949099996,75.08515045800006],[-113.62165279899992,75.06728750200008],[-113.6459854809999,75.07099030200011],[-113.65196692599991,75.06854889499999],[-113.65632076699991,75.06415436400003],[-113.6658422519999,75.06037018400018],[-113.88662675699989,75.05817291900009],[-113.95763098899997,75.07444896000011],[-113.95376542899987,75.122503973],[-113.93932044199991,75.13816966399999],[-113.9290258449999,75.14427317900008],[-113.91283118399993,75.1498070330001],[-113.64533443899985,75.19074127800012],[-113.67979895699995,75.19879791900014],[-113.71719316299992,75.19700755400008],[-113.86611894399995,75.16860586100013],[-113.90684973899991,75.16864655200011],[-113.93952389199985,75.18329498900015],[-113.87608801999994,75.24974192900005],[-113.83641516799993,75.30166250200013],[-113.81297766799993,75.32391998899999],[-113.7842911449999,75.33966705900015],[-113.67857825399993,75.35952383000016],[-113.60138912699992,75.3653832050001],[-113.53066972599989,75.38727448100002],[-113.37564042899994,75.41644928600009],[-113.32315019399991,75.41669342700011],[-113.32315019399991,75.42413971600011],[-113.34544837099995,75.41669342700011],[-113.41958574099988,75.42413971600011],[-113.46153723899988,75.41868724200008],[-113.47630774599986,75.42186107000013],[-113.47398841099991,75.43773021000005],[-113.51821855399996,75.41925690300003],[-113.87393144399994,75.37376536700008],[-113.89854895699995,75.37567780200011],[-113.92064368399993,75.38800690300015],[-113.96670488199987,75.428900458],[-114.03551184799994,75.46576569200005],[-114.07066809799991,75.47492096600014],[-114.09093176999993,75.45831940300009],[-114.07607988199996,75.4543317730001],[-114.07762610599991,75.44525788000011],[-114.08592688699989,75.43414948100018],[-114.09093176999993,75.42413971600011],[-114.08853105399989,75.40884023600013],[-114.08104407499991,75.40216705900018],[-114.06908118399988,75.396918036],[-114.05308997299989,75.38593170800014],[-114.04645748599992,75.36644114800005],[-114.05821692599989,75.34601471600008],[-114.09093176999993,75.31427643400004],[-114.1182755199999,75.27334219],[-114.12677975199992,75.26471588700008],[-114.15583248599991,75.24225495000009],[-114.19579016799986,75.22516510600013],[-114.2526749339999,75.22675202000009],[-114.30988521999984,75.2404238950001],[-114.35098222599993,75.25967031500006],[-114.35191809799993,75.26337311399999],[-114.35016842399993,75.27582428600012],[-114.35098222599993,75.27952708500007],[-114.3619278639999,75.28485748900012],[-114.49437415299987,75.30369700700008],[-114.51121985599987,75.31696198100009],[-114.54930579299995,75.31199778900005],[-114.5901586579999,75.29779694200013],[-114.6151423819999,75.28327057500009],[-114.61620032499987,75.27309804900015],[-114.60167395699995,75.26829661700008],[-114.5819392569999,75.2677269550001],[-114.54698645699997,75.27342357],[-114.4483943349999,75.26361725500006],[-114.4258927069999,75.25836823100015],[-114.40941321499992,75.24909088700012],[-114.38516191299993,75.2180036480001],[-114.35570227799985,75.20282623900012],[-114.32347571499992,75.19391510600018],[-114.30329342399996,75.1817894550001],[-114.31004798099991,75.15664297100001],[-114.32998613199989,75.13792552300013],[-114.38158118399987,75.10814036700012],[-114.40290279899993,75.0914574240001],[-114.44082597599994,75.06793854400003],[-114.69965572849992,75.019232489],[-114.95848548099985,74.97052643400018],[-115.05768795499989,74.96674225500004],[-115.15477454299993,74.98354726800007],[-115.18004309799996,74.99249909100008],[-115.1959529289999,75.002427476],[-115.20636959499987,75.01699453300004],[-115.21499589799991,75.039943752],[-115.22581946499987,75.06049225500004],[-115.22516842399993,75.06854889499999],[-115.21499589799991,75.081488348],[-115.20083574099995,75.08901601800015],[-115.18366451699984,75.09406159100008],[-115.17341061099991,75.09951406500012],[-115.18028723899992,75.10822174700012],[-115.18321692599994,75.12579987200014],[-115.20384680899986,75.15102773600002],[-115.23326575399996,75.173570054],[-115.26280676999993,75.18329498900015],[-115.25487219999988,75.16583893400018],[-115.27403723899992,75.149400132],[-115.40575110599994,75.10293203300013],[-115.44806881399985,75.10024648600015],[-115.52415930899994,75.12506745000012],[-115.65343176999993,75.15143463700011],[-115.66657467399996,75.14850495000009],[-115.66820227799991,75.14044830900013],[-115.6526586579999,75.12872955900015],[-115.63719641799987,75.12421295800011],[-115.60533606699995,75.12148672100012],[-115.59117591099994,75.11562734600001],[-115.6059464179999,75.10504791900014],[-115.58763587099993,75.08515045800006],[-115.55752519399991,75.06150950700011],[-115.53718014199991,75.039943752],[-115.5433650379999,75.039943752],[-115.5502823559999,75.01605866100014],[-115.58433997299991,74.9954287780001],[-115.62706458199993,74.98016998900013],[-115.66006425699989,74.97223541900009],[-115.71544348899997,74.970363674],[-115.92723548099985,74.99787018400015],[-116.02550208199992,75.02606842700011],[-116.1664119129999,75.04018789300015],[-116.25593014199988,75.06037018400018],[-116.25593014199988,75.06728750200008],[-116.14216061099991,75.08380768400015],[-116.08446204299986,75.09870026200012],[-116.0436905589999,75.12872955900015],[-116.08193925699995,75.12738678600009],[-116.26968339799991,75.10049062700001],[-116.30850175699992,75.10260651200012],[-116.3384903639999,75.11562734600001],[-116.28160559799993,75.14252350500009],[-116.24966386599993,75.16242096600017],[-116.24600175699989,75.18024323100005],[-116.24937903599991,75.19009023600016],[-116.24522864499995,75.20018138200014],[-116.24404863199995,75.2080752620001],[-116.25649980399997,75.21124909100017],[-116.46703040299994,75.18439362200007],[-116.52061926999994,75.18878815300015],[-116.54548092399997,75.18524811400009],[-116.59593665299992,75.17059967700008],[-116.61221269399992,75.16339752800006],[-116.66803951699993,75.12718333500011],[-116.6878962879999,75.122503973],[-116.76724199099996,75.12221914300007],[-116.89395097599994,75.14232005400011],[-116.95148678299992,75.16185130400001],[-116.9654027989999,75.15997955900004],[-116.98867753799992,75.14960358300013],[-117.01716061099991,75.14948151200014],[-117.51008053299988,75.20111725500011],[-117.59268144399994,75.22728099200008],[-117.6463110019999,75.23647695500013],[-117.67080644399995,75.24453359600007],[-117.68846594999987,75.25967031500006],[-117.66909745999993,75.26801178600012],[-117.66051184799994,75.27326080900012],[-117.65371660099991,75.27952708500007],[-117.65990149599989,75.28204987200009],[-117.67487545499992,75.29315827000003],[-117.65143795499985,75.3057315120001],[-117.62022864499994,75.31244538000006],[-117.55817623599994,75.31427643400004],[-117.57673092399992,75.33661530200006],[-117.5543106759999,75.3580589860001],[-117.30426998599988,75.45831940300009],[-117.2022192049999,75.48078034100008],[-116.82485917899992,75.47913239150004],[-116.44749915299985,75.47748444200006],[-116.36921139199987,75.48916250200016],[-116.14952551999991,75.47719961100002],[-116.04190019399992,75.48480866100006],[-115.58971106699997,75.58795807500009],[-115.26280676999993,75.60162995000003],[-115.28441321499992,75.61969635600006],[-115.28351803299982,75.62714264500012],[-115.2727758449999,75.63955312700016],[-115.25487219999988,75.64923737200012],[-115.1121313139999,75.68829987200017],[-115.0239151679999,75.69358958500014],[-115.00210527299996,75.6984723980001],[-115.05223548099987,75.71027252800016],[-115.37222245999992,75.66058991100009],[-115.69749915299992,75.64581940300009],[-115.77476966099992,75.62702057500015],[-115.98273678299991,75.61139557500015],[-116.10142981699993,75.58576080900009],[-116.11563066299995,75.57778554900011],[-116.47652476033325,75.57702600033333],[-116.83741885766655,75.5762664516668],[-117.19831295499992,75.57550690300017],[-117.23900305899988,75.58270905200003],[-117.24901282499987,75.609076239],[-117.22801673099994,75.63349030200006],[-116.96564693899985,75.76137929900015],[-116.88536536399992,75.78900788000006],[-116.52379309833324,75.80414459866672],[-116.16222083266653,75.81928131733339],[-115.80064856699994,75.83441803600006],[-115.7875056629999,75.84048086100013],[-115.77611243399993,75.85252513200005],[-115.76231848899992,75.8617617860001],[-115.74229895699995,75.85895416900017],[-115.72691809799991,75.85419342700008],[-115.57811438699984,75.83441803600006],[-115.22655188699991,75.85089752800003],[-114.87498938699987,75.86737702000012],[-114.82738196499989,75.87938060100005],[-114.80597896999984,75.89227936400006],[-114.81248938699994,75.90216705900018],[-114.83409583199993,75.90851471600011],[-114.85773678299988,75.91079336100006],[-115.2776993479999,75.89872874550012],[-115.69766191299989,75.88666413000006],[-115.76162675699989,75.89606354400009],[-116.20254472599993,75.86806875200007],[-116.21857662699993,75.86957428600012],[-116.22179114499988,75.87596263200014],[-116.24437415299985,75.86953359600012],[-116.70811926999994,75.89956289300007],[-116.72345943899991,75.90802643400012],[-116.73399817599996,75.92108795799999],[-116.73631751199991,75.9374453800001],[-116.72850501199993,75.95416901200004],[-116.71385657499994,75.96124909100011],[-116.61611894399994,75.97626373900012],[-116.55736243399991,75.97842031500012],[-116.4849747389999,75.9721133480001],[-116.46133378799993,75.97842031500012],[-116.47569739499991,75.99241771],[-116.51642818899991,76.0014509140001],[-116.5302628249999,76.013128973],[-116.52131100199998,76.01532623900009],[-116.4961645169999,76.02680084800012],[-116.54198157499988,76.03534577000015],[-116.65831458199995,76.01992422100012],[-116.70156816299995,76.04047272300005],[-116.7071020169999,76.05036041900017],[-116.70588131399987,76.05780670800006],[-116.6878962879999,76.07526276200011],[-116.64614824099989,76.10106028900005],[-116.64696204299989,76.10871002800017],[-116.63027910099994,76.12042877800015],[-116.61082923099985,76.12384674700017],[-116.59048417899986,76.12490469000012],[-116.57119706899994,76.12921784100003],[-116.55475826699984,76.13947174700014],[-116.5410863919999,76.15082428600012],[-116.52623450399993,76.16014232000008],[-116.16270911399995,76.20384349200008],[-115.94644120999992,76.20209381700005],[-115.84113521999988,76.18496328300013],[-115.67198645699993,76.18048737200013],[-115.45225989499988,76.18821849199999],[-115.16051184799989,76.16705963700015],[-115.04308020699997,76.16400788000009],[-115.04010982999985,76.15884023600006],[-114.94981848899994,76.1639671900001],[-114.82713782499984,76.14931875200007],[-114.7110489569999,76.15420156500015],[-114.6669815749999,76.16400788000009],[-114.70628821499992,76.17438385600018],[-114.7949926419999,76.16795482000008],[-114.87832597599989,76.17743561400006],[-114.97533118399986,76.17731354400009],[-115.04027258999992,76.208441473],[-115.2792862619999,76.23704661699999],[-115.52936764249988,76.23716868700014],[-115.77944902299994,76.23729075700011],[-115.8773087229999,76.25324127800003],[-115.89281165299992,76.25958893400015],[-115.91738847599994,76.28148021],[-115.92699133999992,76.28685130400005],[-115.90990149599988,76.29926178600009],[-115.85187740799991,76.32225169500005],[-115.86339270699992,76.33258698100015],[-115.8976944649999,76.34235260600009],[-115.91331946499987,76.34902578300014],[-115.87486731699988,76.36359284100008],[-115.51231848899987,76.45620351800015],[-115.02147376199987,76.47907135600015],[-114.98167883999987,76.48615143400004],[-114.90489661399994,76.51675039300015],[-114.87242591099997,76.52020905200014],[-114.70051021999986,76.52020905200014],[-114.71300208199996,76.51044342700003],[-114.74693762899992,76.50018952000008],[-114.76256262899989,76.4923363300001],[-114.45079505099994,76.500921942],[-114.20592200399992,76.47101471600003],[-114.15925045499992,76.45880768400015],[-114.13263912699996,76.4457054710001],[-114.11579342399995,76.43060944200008],[-114.09093176999993,76.3898786480001],[-114.1182755199999,76.36945221600003],[-114.10460364499995,76.36322663000009],[-114.12205969999992,76.35675690300017],[-114.14102128799993,76.35480377800003],[-114.17975826699985,76.35578034100008],[-114.16877193899991,76.34406159100011],[-114.15050208199993,76.34023672100008],[-114.11082923099993,76.34149811399999],[-114.11799068899985,76.33738841400005],[-114.13878333199995,76.32225169500005],[-114.13581295499985,76.31818268400009],[-114.13272050699995,76.31647370000009],[-114.12511145699992,76.31484609600007],[-114.13194739499993,76.31484609600007],[-114.08356686099984,76.29433828300002],[-114.00841223899992,76.27326080900008],[-113.98485266799987,76.25592682500012],[-114.00096594999984,76.24380117400001],[-114.03465735599985,76.23273346600017],[-114.06362870999993,76.21857330900013],[-114.0257869129999,76.21206289300015],[-113.9946182929999,76.19928620000012],[-113.96304277299993,76.19061920800011],[-113.87376868399987,76.20648834800015],[-113.71353105399996,76.204982815],[-113.56822669199988,76.23468659100003],[-113.51903235599988,76.23908112200012],[-113.46784420499992,76.23822663],[-113.4428604809999,76.24115631700012],[-113.39989173099985,76.25763580900012],[-113.35435950399989,76.26605866100006],[-113.21983801999991,76.26430898600015],[-113.18004309799993,76.25531647300015],[-113.15900631399988,76.253363348],[-112.99421139199984,76.27326080900008],[-112.91104081899988,76.2641055360001],[-112.86856035099991,76.25031159100011],[-112.85020911399995,76.22858307500003],[-112.83079993399986,76.21922435100002],[-112.75617428299992,76.22190989799999],[-112.75462805899988,76.21238841399999],[-112.75462805899988,76.204982815],[-112.61953691299992,76.20530833500011],[-112.54076087099988,76.18797435100012],[-112.46467037699996,76.18065013200011],[-112.43248450399993,76.170843817],[-112.42564856699991,76.170843817],[-112.44937089799993,76.16193268400015],[-112.48053951699991,76.15546295800006],[-112.50279700399996,76.14468008000016],[-112.50015214799986,76.12299225500009],[-112.52574622299994,76.12099844000012],[-112.51545162699993,76.11001211100007],[-112.44717363199992,76.07977936400006],[-112.43797766799986,76.07001373900012],[-112.43114173099993,76.06012604400003],[-112.4188126289999,76.05072663],[-112.36461341099992,76.03363678600014],[-112.1180313789999,76.01239655200006],[-111.85553951699985,75.9535179710001],[-111.76927649599992,75.947414455],[-111.74620520699993,75.93707916900009],[-111.72679602799994,75.91693756700006],[-111.78140214799991,75.90053945500016],[-112.07274329299989,75.87563711100002],[-112.18610592399995,75.848089911],[-112.16266842399996,75.8398298200001],[-112.13760331899996,75.83441803600006],[-112.20775305899994,75.82241445500013],[-112.22704016799986,75.81452057500015],[-112.19692949099993,75.80760325700005],[-112.1595352859999,75.808294989],[-112.0899145169999,75.82135651200018],[-112.07677161399995,75.82697174700017],[-112.06480872299991,75.83372630400011],[-112.05158443899988,75.83942291900009],[-112.0346573559999,75.84186432500003],[-112.02074133999992,75.84039948100015],[-111.99421139199987,75.834662177],[-111.98005123599984,75.83441803600006],[-111.99453691299989,75.83063385600003],[-112.02236894399992,75.82672760600003],[-112.03526770699995,75.82135651200018],[-111.94896399599992,75.80707428600009],[-111.92833411399991,75.810492255],[-111.88809160099991,75.82538483300013],[-111.86733964799991,75.82880280200006],[-111.45905514199991,75.84186432500003],[-111.44668535099987,75.8375918640001],[-111.45628821499994,75.82819245000009],[-111.47590084499991,75.81879303600006],[-111.49327551999988,75.81452057500015],[-111.57388261599993,75.8190778670001],[-111.5964249339999,75.81452057500015],[-111.45889238199995,75.7888044290001],[-111.43195553299988,75.76609935100008],[-111.44005286399991,75.76312897300015],[-111.4478653639999,75.75775787999999],[-111.45189368399987,75.75063711100013],[-111.4487198559999,75.74225495000017],[-111.43248450399994,75.73602936400012],[-111.3882543609999,75.73932526200015],[-111.36986243399994,75.73261139500003],[-111.3614395819999,75.71523672100012],[-111.37588456899995,75.705023505],[-111.39753170499993,75.69501373900012],[-111.41079667899987,75.67796458500005],[-111.40241451699991,75.67499420800014],[-111.39098059799996,75.66917552299999],[-111.38097083199997,75.66160716400005],[-111.37669837099988,75.65314362200012],[-111.38093014199987,75.643255927],[-111.41079667899987,75.61591217700011],[-111.39659583199996,75.61456940300003],[-111.38475501199989,75.60838450700005],[-111.35130774599992,75.57977936400009],[-111.33580481699993,75.57485586100002],[-111.29474850199993,75.57436758000013],[-111.29474850199993,75.56818268400013],[-111.3022354809999,75.56439850500014],[-111.30890865799986,75.55988190300009],[-111.3220922519999,75.54767487200012],[-111.29784094999991,75.54531484600015],[-111.28111731699988,75.54022858300014],[-111.27965247299993,75.53790924700017],[-111.27953040299985,75.53424713700012],[-111.27843176999991,75.53034088700012],[-111.27428137899994,75.52716705900015],[-111.25084387899989,75.5218773460001],[-111.22935950399996,75.52240631700006],[-111.20897376199989,75.52533600500009],[-111.01374264199985,75.53143952000006],[-110.85606848899995,75.55744049700014],[-110.51357988199992,75.57330963700018],[-110.43101966099991,75.55951569200006],[-110.42686926999997,75.55613841400005],[-110.42495683499992,75.55084870000017],[-110.4245499339999,75.54389069200009],[-110.41869055899986,75.53986237200003],[-110.21861731699995,75.53583405200006],[-110.1578669909999,75.54694245000016],[-110.11607825399989,75.54022858300014],[-110.06826738199996,75.54767487200012],[-110.0036921869999,75.54466380400011],[-109.51453609949986,75.52169424050008],[-109.02538001199991,75.49872467700013],[-108.93748938699986,75.47744375200007],[-108.9099828769999,75.47874583500004],[-108.89639238199996,75.49237702],[-108.90147864499988,75.49567291900013],[-108.92682857999992,75.53025950700014],[-108.95103919199991,75.54266998900005],[-109.01097571499994,75.54767487200012],[-109.0335994129999,75.55390045800009],[-108.99413001199993,75.568101304],[-108.94741777299996,75.56899648600007],[-108.85545813699993,75.5606957050001],[-108.85545813699993,75.56818268400013],[-108.86758378799993,75.56879303600012],[-108.87865149599988,75.57269928600012],[-108.88829505099991,75.57949453300013],[-108.89639238199996,75.58860911700005],[-108.88084876199987,75.60053131700008],[-108.8452856109999,75.61237213700004],[-108.83495032499988,75.62274811400015],[-108.90827389199991,75.66608307500012],[-108.93736731699988,75.67796458500005],[-108.93443762899996,75.68109772300012],[-108.93150794199994,75.68268463700015],[-108.92491614499995,75.68398672100005],[-108.87474524599986,75.68154531500012],[-108.84992428299992,75.68341705900008],[-108.82811438699986,75.69106679900013],[-108.85765540299992,75.7002627620001],[-108.95787512899992,75.70465729400007],[-108.98058020699997,75.71552155200008],[-108.9925837879999,75.71893952000009],[-109.01081295499996,75.72089264500012],[-109.06773841099991,75.71893952000009],[-109.06590735599993,75.72333405200006],[-109.06330318899984,75.73432038000011],[-109.06151282499985,75.73883698100018],[-109.10204016799987,75.75006745000017],[-109.4082738919999,75.77879466400013],[-109.46434485599991,75.7940941430001],[-109.44904537699996,75.79389069200012],[-109.40416419199995,75.80093008000001],[-109.69151770699995,75.80707428600009],[-109.68146725199998,75.81801992400015],[-109.64586341099991,75.82599518400009],[-109.62946529899992,75.83441803600006],[-109.64696204299987,75.84186432500003],[-109.68691972599991,75.84194570500001],[-109.70518958199989,75.848089911],[-109.68248450399994,75.85993073100015],[-109.65737870999993,75.86981842700006],[-109.67454993399988,75.87571849200002],[-109.70107988199992,75.88035716400013],[-109.72789466099994,75.88214752800012],[-109.74583899599988,75.87938060100005],[-109.78864498599987,75.86424388200005],[-109.80467688699987,75.86371491100009],[-109.83958899599988,75.87091705900009],[-109.89338131399984,75.85224030200011],[-109.95173092399992,75.86054108300003],[-110.0036921869999,75.8786888690001],[-110.05459550699993,75.89647044499999],[-110.0036921869999,75.91144440300003],[-109.97618567599997,75.91950104400014],[-109.6856990229999,75.94782135600012],[-109.65330969999988,75.95697663],[-109.58698482999993,75.98387278900006],[-109.53840084499988,75.99388255400005],[-109.4333389959999,76.003607489],[-109.38988196499986,76.02065664300015],[-109.42540442599993,76.03143952000005],[-109.4376521479999,76.03363678600014],[-109.39948482999993,76.04132721600017],[-109.29735266799987,76.03912995000017],[-109.2725723949999,76.054144598],[-109.30182857999993,76.056301174],[-109.3605850899999,76.06704336100002],[-109.38988196499986,76.06777578300012],[-109.3836563789999,76.07908763200012],[-109.38296464799996,76.08209870000003],[-109.38243567599989,76.08828359600001],[-109.3260798819999,76.097357489],[-109.30797278599991,76.10252513200011],[-109.32306881399992,76.11538320500013],[-109.34439042899987,76.12177155200006],[-109.36799068899991,76.12604401200015],[-109.42174231699988,76.14240143400018],[-109.48936926999993,76.151800848],[-109.51960201699983,76.16400788000009],[-109.52049719999992,76.16718170800013],[-109.51935787699988,76.17218659100008],[-109.5201716789999,76.17816803599999],[-109.5270889959999,76.18447500200013],[-109.5422257149999,76.18943919499999],[-109.69957434799989,76.195013739],[-109.7250056629999,76.204982815],[-109.71418209499991,76.20473867400015],[-109.69957434799989,76.20612213700004],[-109.68748938699989,76.21039459800015],[-109.68407141799987,76.21857330900013],[-109.69546464799994,76.22467682500003],[-109.83189856699995,76.24079010600012],[-109.86961829299992,76.23981354400003],[-109.90379798099993,76.23163483300011],[-109.90029863199993,76.22475820500001],[-109.88695227799992,76.20701732000013],[-109.88329016799986,76.204982815],[-109.89338131399984,76.19749583500011],[-109.90973873599984,76.196722723],[-109.92686926999988,76.19965241100012],[-110.0036921869999,76.22642649900003],[-110.14696204299986,76.27631256700008],[-110.38361568899988,76.300523179],[-110.37539628799989,76.31476471600008],[-110.34284420499992,76.32973867400013],[-110.32835852799988,76.34149811399999],[-110.34142005099993,76.3458519550001],[-110.35606848899995,76.348863023],[-110.36888587099989,76.35370514500009],[-110.37677975199996,76.36322663000009],[-110.36351477799994,76.37164948100003],[-110.36949622299994,76.37938060100014],[-110.38426673099993,76.38739655200008],[-110.39720618399993,76.39671458500011],[-110.38707434799989,76.40232982000013],[-110.38133704299992,76.41038646000004],[-110.38019771999988,76.42011139499999],[-110.38361568899988,76.43085358300011],[-110.36290442599997,76.43158600500006],[-110.3563126289999,76.43085358300011],[-110.36245683499989,76.43085358300011],[-110.32127844999991,76.42877838700008],[-110.11278235599987,76.45380280200011],[-110.04893958199993,76.47671133000001],[-110.00682532499988,76.48615143400004],[-110.0036921869999,76.48615143400004],[-109.9168595039999,76.48615143400004],[-109.87987219999987,76.49575429900001],[-109.8615616529999,76.49819570500013],[-109.80825761599993,76.49164459800015],[-109.77196204299993,76.50018952000008],[-109.70518958199989,76.52708567900005],[-109.73346920499993,76.53546784100011],[-109.84919186099985,76.53335195500001],[-109.84919186099985,76.540716864],[-109.8265681629999,76.54437897300015],[-109.80174719999984,76.55170319200006],[-109.77830969999987,76.5619570980001],[-109.75983639199985,76.574896552],[-109.76854407499992,76.57949453300004],[-109.77318274599985,76.58421458500013],[-109.7802628249999,76.59601471600011],[-109.65054277299993,76.58856842700011],[-109.65392005099994,76.59463125200003],[-109.66022701699988,76.61025625200001],[-109.66356360599993,76.61644114800008],[-109.5811661449999,76.63031647300006],[-109.5543106759999,76.63007233300011],[-109.56029212099992,76.65497467700006],[-109.55207271999993,76.67487213700015],[-109.53302975199992,76.68952057500015],[-109.50658118399986,76.698431708],[-109.49445553299986,76.72284577000015],[-109.4406632149999,76.73989492400001],[-109.3352758449999,76.75983307500009],[-109.3387345039999,76.76300690300015],[-109.3452042309999,76.77033112200013],[-109.34894771999983,76.77350495000003],[-109.32510331899995,76.78888580900015],[-109.30394446499993,76.79490794500008],[-109.25332597599994,76.80145905200006],[-109.19994055899991,76.82005442900005],[-109.17699133999992,76.82192617400004],[-109.1844376289999,76.82192617400004],[-109.00625566299993,76.82876211100013],[-108.93578040299985,76.81769440300009],[-108.90123450399994,76.81614817900005],[-108.82079016799986,76.83441803600012],[-108.81452389199991,76.83901601800007],[-108.80846106699991,76.85244375200016],[-108.7938126289999,76.86074453300013],[-108.77562415299991,76.86416250200013],[-108.7592667309999,76.86294179900013],[-108.74811764199988,76.85871002800012],[-108.72508704299989,76.84235260600009],[-108.66738847599996,76.82485586100013]]],[[[-113.7340388659999,76.88336823100009],[-113.5863337879999,76.84662506699999],[-113.53612219999992,76.84235260600009],[-113.51036536399988,76.83633047100008],[-113.48428300699992,76.82037995000017],[-113.46349036399992,76.7982445330001],[-113.45348059799994,76.77350495000003],[-113.48851477799994,76.76776764500015],[-113.5565486319999,76.73916250200007],[-113.60464433499996,76.72870514499999],[-113.6360977859999,76.71084219000012],[-113.65217037699996,76.70526764500012],[-113.6731664699999,76.70425039300015],[-113.83055579299989,76.72553131700012],[-114.12625077999985,76.72760651250009],[-114.42194576699993,76.72968170800004],[-114.5106501939999,76.74481842700004],[-114.81777910099991,76.75983307500009],[-114.83702551999995,76.75983307500009],[-114.84463456899992,76.76512278900007],[-114.8667699859999,76.76268138200012],[-114.87857011599993,76.76727936400006],[-114.85875403599992,76.80145905200006],[-114.84048417899994,76.80939362200003],[-114.63158118399991,76.86163971600003],[-114.43455969999991,76.88239166900003],[-114.23713131399988,76.87909577000009],[-114.19273841099997,76.89081452000009],[-113.8460587229999,76.89887116100012],[-113.7340388659999,76.88336823100009]]],[[[-95.23875891799985,77.01365794500003],[-95.1915583979999,77.00405508000006],[-95.0027563139999,76.99697500200001],[-94.95470130099991,76.98273346600011],[-94.93032792899993,76.97894928600009],[-94.5079646479999,76.971177476],[-94.49828040299994,76.9658877620001],[-94.49474036399994,76.95962148600016],[-94.49681555899988,76.95404694200015],[-94.49962317599991,76.94928620000015],[-94.49828040299994,76.94481028899999],[-94.48745683499993,76.936957098],[-94.47223873599987,76.92820872600011],[-94.45547441299993,76.92108795800009],[-94.44029700399994,76.91815827000015],[-94.30728105399993,76.92169830900004],[-94.2655330069999,76.91128164300011],[-94.25938880099991,76.90688711100016],[-94.25674394399992,76.90192291900011],[-94.25308183499988,76.89691803600006],[-94.24372311099984,76.8924828150001],[-94.23399817599989,76.89061107000013],[-94.11359615799995,76.88776276200018],[-94.03807532499994,76.90509674700017],[-94.0057673819999,76.92572663],[-93.9855037099999,76.93260325700011],[-93.96401933499988,76.93650950700003],[-93.91881262899994,76.93903229400003],[-93.8215225899999,76.922349351],[-93.70091712099985,76.9209658870001],[-93.67015540299988,76.91461823100015],[-93.64346269399996,76.90208567900008],[-93.61815344999991,76.8799502620001],[-93.58531653599991,76.86102936400006],[-93.50645911399997,76.84979889500006],[-93.46336829299993,76.82660553600013],[-93.43000240799995,76.82436758000016],[-93.41649329299989,76.82192617400004],[-93.40819251199991,76.816799221],[-93.39419511599993,76.80402252800015],[-93.38853919199994,76.80145905200006],[-93.33576412699995,76.79535553600006],[-93.28551184799989,76.78034088700004],[-93.29914303299994,76.77350495000003],[-93.29914303299994,76.76727936400006],[-93.27277584499984,76.75287506699999],[-93.25885982999995,76.74843984600012],[-93.24168860599994,76.7468122420001],[-93.20494544199994,76.75356679900013],[-93.19676673099994,76.75307851800015],[-93.18512936099992,76.739976304],[-93.17902584499984,76.71991608300011],[-93.17625891799987,76.68105703300002],[-93.18761145699995,76.66697825700008],[-93.26158606699994,76.62641022300006],[-93.26252193899992,76.62128327000015],[-93.26227779899997,76.60342031500008],[-93.26500403599992,76.59601471600011],[-93.28132076699987,76.58685944200012],[-93.30186926999991,76.57929108300009],[-93.31261145699992,76.56981028900007],[-93.29914303299994,76.55499909100008],[-93.33726966099991,76.53750234600012],[-93.4241837229999,76.51544830900005],[-93.46422278599994,76.499741929],[-93.47801673099994,76.48965078300002],[-93.48473059799989,76.48615143400004],[-93.50145423099991,76.481146552],[-93.63182532499985,76.45669179900013],[-93.65607662699995,76.44513580900012],[-93.61229407499988,76.41583893400009],[-93.5606990229999,76.39516836100007],[-93.5072322259999,76.3907738300001],[-93.45738684799991,76.41038646000004],[-93.52599036399994,76.41063060100011],[-93.56090247299997,76.41453685100002],[-93.58031165299988,76.43085358300011],[-93.50519771999986,76.45441315300016],[-93.38125566299993,76.46698639500006],[-93.36188717399992,76.47186920800011],[-93.35118567599989,76.47785065300015],[-93.33128821499992,76.493597723],[-93.3196508449999,76.499741929],[-93.2639054029999,76.51593659100003],[-93.24510657499985,76.52366771000014],[-93.23668372299989,76.53143952000015],[-93.22472083199995,76.55109284100007],[-93.21784420499995,76.55499909100008],[-93.18480383999992,76.55853913000009],[-93.15294348899995,76.56781647300012],[-93.0936580069999,76.59601471600011],[-93.09935462099988,76.59955475500009],[-93.1148168609999,76.61644114800008],[-93.07925370999993,76.627630927],[-92.95030676999997,76.63007233300011],[-92.91759192599993,76.62205638200007],[-92.8131404289999,76.61644114800008],[-92.72350012899994,76.59845612200003],[-92.6930232409999,76.59601471600011],[-92.52383378799996,76.62221914300012],[-92.46304277299991,76.61644114800008],[-92.39932206899988,76.60162995000009],[-92.36896725199992,76.59910716399999],[-92.3339737619999,76.60219961100007],[-92.23534094999994,76.62311432500003],[-92.15465247299991,76.61920807500003],[-92.01183020699995,76.657416083],[-92.00438391799987,76.66425202],[-91.72272701699995,76.6789614930001],[-91.44107011599992,76.6936709660001],[-91.13963782499991,76.67129140800006],[-91.09186764199987,76.66022370000006],[-91.01065019399994,76.657416083],[-90.92113196499989,76.64329661700006],[-90.8759659499999,76.62815989800008],[-90.8427628249999,76.60590241100012],[-90.80638587099992,76.58746979400017],[-90.57168535099993,76.56403229400011],[-90.53270423099985,76.55052317900014],[-90.49738521999983,76.52708567900005],[-90.50495357999998,76.5204125020001],[-90.51329505099994,76.51459381700015],[-90.5220841139999,76.50995514500012],[-90.53087317599989,76.5065778670001],[-90.51846269399996,76.49555084800015],[-90.5030004549999,76.49115631700006],[-90.4693904289999,76.48615143400004],[-90.4927465489999,76.46832916900014],[-90.65343176999991,76.45677317900011],[-90.92503821499986,76.48615143400004],[-90.94806881399983,76.49575429900001],[-90.97671464799988,76.51288483300014],[-91.00450598899997,76.52008698100018],[-91.02497311099982,76.499741929],[-91.02041581899991,76.49835846600011],[-91.01065019399994,76.4923363300001],[-91.0735570949999,76.48061758000001],[-91.14513098899994,76.48061758000001],[-91.34943600199995,76.51691315300012],[-91.56554114499993,76.5065778670001],[-91.56554114499993,76.499741929],[-91.51732337099988,76.49575429900001],[-91.46996008999986,76.48615143400004],[-91.45181230399996,76.48012929900004],[-91.41856848899992,76.46405670800014],[-91.40111243399988,76.45880768400015],[-90.9901423819999,76.45136139500009],[-90.96019446499992,76.43952057500012],[-90.95262610599988,76.43768952000015],[-90.80524654899989,76.43439362200012],[-90.72887122299997,76.42080312700016],[-90.64073645699995,76.41722239799999],[-90.57738196499992,76.39158763200011],[-90.5585017569999,76.39329661700009],[-90.51032467399995,76.40692780200006],[-90.44782467399992,76.41132233300014],[-90.06441538566655,76.37438928166672],[-89.68100609733324,76.33745623033342],[-89.29759680899988,76.300523179],[-89.29190019399991,76.29889557500015],[-89.28892981699991,76.2905134140001],[-89.28392493399984,76.28685130400005],[-89.21784420499993,76.26605866100006],[-89.19444739499997,76.2481957050001],[-89.20881100199993,76.22540924700017],[-89.22057044199991,76.22284577000006],[-89.25064042899996,76.22622304900007],[-89.26341712099992,76.22540924700017],[-89.27135169199997,76.22125885600003],[-89.28392493399984,76.20954010600003],[-89.2906794909999,76.204982815],[-89.3126521479999,76.1967634140001],[-89.38011633999989,76.18447500200013],[-89.73888098866664,76.18220991966679],[-90.09764563733327,76.17994483733344],[-90.45641028599991,76.17767975500011],[-90.42674719999988,76.16282786700005],[-90.09788977799988,76.150091864],[-90.05109615799991,76.13605377800015],[-90.09373938699994,76.1249860700001],[-90.14297441299996,76.12783437700016],[-90.23668372299997,76.14350006700012],[-90.69908606699994,76.170823472],[-91.16148841099994,76.19814687700007],[-91.23721269399991,76.22540924700017],[-91.61335201699987,76.26703522300012],[-91.58535722599996,76.25617096600013],[-91.52843176999991,76.25275299700006],[-91.49876868399988,76.25141022300015],[-91.46784420499993,76.24192942900005],[-91.27367102799988,76.21173737200003],[-91.25767981699988,76.2015648460001],[-91.27000891799992,76.18919505400005],[-91.3538712229999,76.17767975500011],[-91.35460364499994,76.17064036700005],[-91.40851803299998,76.15717194200006],[-91.40851803299998,76.14972565300017],[-91.36705481699997,76.14484284100011],[-91.24364173099993,76.16400788000009],[-90.78868567599991,76.13251373900005],[-90.74128170499989,76.12409088700012],[-90.6907445949999,76.12335846600007],[-90.66808020699992,76.11562734600007],[-90.68358313699994,76.110785223],[-90.71519934799991,76.11176178600006],[-90.73009192599997,76.10871002800017],[-90.73745683499988,76.10325755400012],[-90.73997962099989,76.097357489],[-90.7408748039999,76.09198639500015],[-90.74376380099991,76.08828359600001],[-90.77232825399992,76.07843659100008],[-90.80321204299986,76.07477448100003],[-90.86668860599988,76.07526276200011],[-90.86668860599988,76.06777578300012],[-90.71930904899997,76.056382554],[-90.6854141919999,76.06468333500005],[-90.65811113199993,76.07835521],[-90.62035071499989,76.08803945500016],[-90.55199133999989,76.09568919499999],[-90.18822180899987,76.06777578300012],[-90.22980709499986,76.0424665390001],[-90.29124915299994,76.03180573100018],[-90.69794674399992,76.03320953950002],[-91.1046443349999,76.03461334800012],[-91.16148841099994,76.02065664300015],[-91.1107478509999,76.01251862200003],[-90.98924719999991,76.0209414730001],[-90.94298255099991,76.00633372600008],[-90.9732966789999,75.9971377620001],[-91.04076087099989,75.99994538000014],[-91.07213294199991,75.99266185100014],[-91.05052649599992,75.985052802],[-91.00161699099993,75.97394440300015],[-90.97834225199992,75.97223541900014],[-90.95832271999987,75.9667829450001],[-90.94627844999985,75.954779364],[-90.94717363199993,75.94285716400007],[-90.9659724599999,75.9374453800001],[-91.0117895169999,75.93569570500001],[-91.10578365799992,75.9192569030001],[-91.14781653599991,75.90326569200012],[-91.14024817599994,75.89325592700014],[-91.12657630099991,75.88125234600001],[-91.12051347599991,75.86981842700006],[-91.13125566299993,75.84511953300007],[-91.1288142569999,75.83612702000006],[-91.1068416009999,75.848089911],[-91.1068416009999,75.84186432500003],[-91.08678137899994,75.84943268400018],[-91.06847083199997,75.87518952000012],[-91.05223548099994,75.88279857000005],[-91.0622452459999,75.8934593770001],[-91.06590735599988,75.89647044499999],[-91.04161536399988,75.904242255],[-90.93175208199992,75.92340729400013],[-90.85301673099994,75.954779364],[-90.83592688699989,75.96552155200011],[-90.80923417899996,75.99079010600015],[-90.79775956899991,75.99884674700009],[-90.77135169199994,76.00242747600008],[-90.73395748599998,75.99900950700004],[-90.69774329299985,75.99042389500015],[-90.67487545499995,75.97842031500012],[-90.70787512899992,75.97858307500009],[-90.72301184799991,75.97500234600004],[-90.73631751199994,75.96539948100003],[-90.70034745999996,75.95673248900015],[-90.6612849599999,75.96002838700016],[-90.55186926999991,75.98602936400006],[-90.50975501199989,75.98729075700008],[-90.46812903599991,75.98257070500007],[-90.42845618399988,75.97223541900014],[-90.4552302729999,75.96173737200007],[-90.48973548099991,75.95319245000015],[-90.51915442599987,75.94037506700012],[-90.53087317599989,75.91693756700006],[-90.51854407499994,75.89883047100015],[-90.49168860599985,75.90615469000015],[-90.4356990229999,75.93569570500001],[-90.35887610599987,75.94863515800002],[-90.34654700399994,75.954779364],[-90.33706620999993,75.96979401200012],[-90.31484941299986,75.97435130400008],[-90.24522864499988,75.96954987200017],[-90.22911536399991,75.96279531500015],[-90.19570878799993,75.94428131700012],[-90.17662512899997,75.93911367400013],[-90.11375891799992,75.9374453800001],[-90.11021887899994,75.95498281500015],[-90.08063717399997,75.97955963700014],[-90.07896887899997,75.99266185100014],[-90.04857337099989,76.01068756700006],[-90.00706946499992,76.01797109600005],[-89.96377519399994,76.01601797100012],[-89.92813066299988,76.00633372600008],[-89.94566809799991,75.99957916900001],[-89.9583227199999,75.98802317900011],[-89.95929928299995,75.97703685100005],[-89.9418025379999,75.97223541900014],[-89.84780839799996,75.96784088700018],[-89.82884680899986,75.9616559920001],[-89.81798255099997,75.94879791900009],[-89.80866451699993,75.94000885600012],[-89.79613196499992,75.93305084800012],[-89.77578691299993,75.92560455900015],[-89.68797766799995,75.90326569200012],[-89.71019446499992,75.88117096600003],[-89.77025305899991,75.84365469000004],[-89.78416907499988,75.82135651200018],[-89.77700761599993,75.81858958500011],[-89.75690670499989,75.80707428600009],[-89.76268469999988,75.804388739],[-89.77733313699989,75.7940941430001],[-89.7646378249999,75.79067617400007],[-89.74754798099988,75.78949616100014],[-89.72996985599993,75.79067617400007],[-89.71593176999988,75.7940941430001],[-89.70592200399989,75.80027903900005],[-89.68146725199995,75.82135651200018],[-89.66820227799994,75.82347239799999],[-89.61823482999989,75.83991120000017],[-89.59951738199992,75.84174225500006],[-89.5788468089999,75.84039948100015],[-89.5611059239999,75.84271881700012],[-89.55142167899996,75.85553620000015],[-89.61969967399995,75.85553620000015],[-89.61266028599988,75.85993073100015],[-89.60545813699994,75.86204661700008],[-89.59772701699983,75.862697658],[-89.58942623599995,75.86237213700018],[-89.51480058499992,75.85932038],[-89.44155839799987,75.848089911],[-89.31867428299992,75.80707428600009],[-89.19766191299993,75.79629140800007],[-89.17096920499988,75.78351471600003],[-89.16250566299995,75.76520416900017],[-89.16771399599995,75.75055573100015],[-89.19448808499996,75.725775458],[-89.20738684799997,75.71084219000014],[-89.23546301999997,75.66372304900015],[-89.25609290299991,75.63914622600005],[-89.25719153599994,75.63580963700012],[-89.27354895699995,75.63222890800012],[-89.30614173099991,75.63629791900011],[-89.40339107999992,75.6173363300001],[-89.64720618399988,75.62238190300003],[-89.66454016799989,75.60578034100017],[-89.69619706899994,75.59247467700013],[-89.73241126199989,75.58392975500011],[-89.76305091099988,75.58120351800015],[-89.71157792899989,75.57298411700005],[-89.59845943899987,75.59381745000003],[-89.54458574099993,75.57436758000013],[-89.5814509759999,75.56366608300011],[-89.66942298099993,75.56997304900015],[-89.70840410099991,75.5606957050001],[-89.67552649599992,75.54962799700014],[-89.54116777299993,75.55390045800009],[-89.5092667309999,75.55927155200011],[-89.44871985599991,75.583197333],[-89.41445878799993,75.58860911700005],[-89.20848548099991,75.58600495000006],[-89.1874080069999,75.5775820980001],[-89.1717423169999,75.56264883000011],[-89.14476477799988,75.52708567900008],[-89.13776607999998,75.5217959660001],[-89.11143958199996,75.51675039300007],[-89.1074926419999,75.50910065300003],[-89.1070043609999,75.49909088700015],[-89.10236568899987,75.48867422100007],[-89.07697506399987,75.48090241100005],[-88.9933162099999,75.47239817900014],[-88.97883053299995,75.468207098],[-88.98639889199993,75.44916413000011],[-88.96812903599994,75.43764883000007],[-88.94001217399995,75.4318708350001],[-88.9173884759999,75.43036530200006],[-88.76378333199992,75.43773021000005],[-88.76593990799992,75.44806549700014],[-88.74990800699993,75.47068919500013],[-88.75291907499985,75.48187897300012],[-88.79043535099996,75.52716705900015],[-88.81554114499994,75.55076732000002],[-88.90029863199993,75.609076239],[-88.80264238199993,75.62815989799999],[-88.75649980399993,75.64581940300009],[-88.75633704299986,75.67796458500005],[-88.72240149599992,75.68610260600018],[-88.68455969999988,75.68280670800014],[-88.61335201699984,75.66380442900014],[-88.57994544199997,75.65851471600014],[-88.48200436099995,75.609076239],[-88.33116614499993,75.5606957050001],[-88.22264563699986,75.54498932500003],[-88.20140540299987,75.53339264500012],[-88.20010331899988,75.51837799700009],[-88.21129309799989,75.51325104400017],[-88.2423396479999,75.51288483300006],[-88.28742428299998,75.500677802],[-88.30382239499995,75.49921295800011],[-88.30382239499995,75.49237702],[-88.24535071499992,75.47842031500012],[-88.22813880099989,75.47134023600007],[-88.22813880099989,75.47874583500004],[-88.21251380099991,75.473822333],[-88.20213782499991,75.477728583],[-88.19294186099992,75.485541083],[-88.1809789699999,75.49237702],[-87.99535071499986,75.53339264500012],[-88.00218665299988,75.53339264500012],[-87.99327551999994,75.53900788000011],[-87.9817602199999,75.54409414300012],[-87.96837317599991,75.547308661],[-87.9537654289999,75.54767487200012],[-87.96125240799995,75.54767487200012],[-87.75084387899994,75.58087799700002],[-87.66942298099988,75.56867096600014],[-87.63341223899994,75.555121161],[-87.62913977799991,75.53681061400012],[-87.61587480399989,75.52448151200016],[-87.52708899599992,75.49681224199999],[-87.49571692599989,75.49237702],[-87.5121150379999,75.47508372600011],[-87.54283606699988,75.46454498900015],[-87.57746334499986,75.45937734600015],[-87.60558020699996,75.45831940300009],[-87.60558020699996,75.45148346600017],[-87.51671301999994,75.4503848330001],[-87.46690833199995,75.45600006700012],[-87.4330134759999,75.47134023600007],[-87.42365475199998,75.50079987200014],[-87.45225989499994,75.51699453300002],[-87.49034583199995,75.52855052300012],[-87.50938880099991,75.54389069200009],[-87.50747636599996,75.56126536700008],[-87.5003962879999,75.56663646000011],[-87.46092688699994,75.56818268400013],[-87.44652258999989,75.5724144550001],[-87.41592363199995,75.58576080900009],[-87.40290279899997,75.58860911700005],[-87.39867102799985,75.59292226800011],[-87.39126542899996,75.60224030199998],[-87.38044186099995,75.61163971600011],[-87.3656306629999,75.61591217700011],[-87.26573645699992,75.62303294500008],[-87.1114802729999,75.5947940120001],[-87.0980525379999,75.58808014500006],[-87.09154212099992,75.58014557500009],[-87.08641516799992,75.5710309920001],[-87.07738196499992,75.5606957050001],[-87.06017005099989,75.551174221],[-86.77782141799992,75.476019598],[-86.57990475199992,75.47760651200004],[-86.51671301999994,75.46832916900016],[-86.39509029899989,75.43134186400012],[-86.3648168609999,75.43036530200006],[-86.39313717399995,75.41429271000008],[-86.4193416009999,75.40521881700009],[-86.61803137899992,75.36888255399998],[-86.40160071499989,75.37628815300016],[-86.19635982999989,75.41535065300003],[-85.9928279289999,75.42218659100014],[-85.81623287699995,75.40839264500015],[-85.52188066299988,75.403021552],[-85.52188066299988,75.409857489],[-85.5421443349999,75.41474030200008],[-85.54971269399994,75.4141299500001],[-85.55549068899988,75.409857489],[-85.58088131399984,75.41966380400012],[-85.79190019399991,75.43036530200006],[-85.8329158189999,75.43976471600008],[-85.90794837099995,75.46727122600011],[-86.11095130099994,75.48493073100003],[-86.12523352799984,75.49013906500011],[-86.14293372299993,75.49966054900013],[-86.15168209499983,75.50877513200011],[-86.1388240229999,75.51288483300006],[-86.09630286399994,75.51715729400017],[-86.01036536399994,75.53587474200005],[-85.71646074099993,75.55731842700008],[-85.59194902299987,75.59711334800006],[-85.52871660099989,75.60162995000003],[-85.56322180899991,75.58218008000013],[-85.56810462099989,75.57233307500012],[-85.54580644399994,75.56818268400013],[-85.45885169199997,75.56118398600007],[-85.38695227799991,75.57355377800003],[-85.22712154899989,75.5606957050001],[-85.22712154899989,75.56818268400013],[-85.29906165299985,75.5749372420001],[-85.32266191299988,75.57436758000013],[-85.31818600199992,75.57876211100002],[-85.31867428299992,75.5805117860001],[-85.30284583199997,75.58730703300013],[-85.29234778599991,75.58869049700003],[-85.28172766799986,75.58860911700005],[-85.29173743399993,75.59365469000006],[-85.29600989499994,75.5947940120001],[-85.29600989499994,75.60162995000003],[-85.21344967399993,75.60162995000003],[-85.20018469999994,75.6046817080001],[-85.19432532499988,75.61196523600013],[-85.1895238919999,75.62091705900015],[-85.17931067599994,75.62897370000007],[-85.16148841099988,75.63251373900009],[-85.09723873599994,75.62897370000007],[-85.07559160099987,75.63117096600008],[-85.03522701699988,75.64081452000006],[-85.01480058499993,75.643255927],[-85.01480058499993,75.65009186400003],[-85.02985592399995,75.654038804],[-85.04491126199986,75.65582916900009],[-84.80247962099986,75.65623607],[-84.57607988199995,75.62425364799998],[-84.50088456899996,75.63580963700012],[-84.5387263659999,75.64354075700011],[-84.61888587099986,75.64419179900007],[-84.65794837099992,75.65009186400003],[-84.64037024599988,75.65997955900012],[-84.64175370999996,75.67047760600009],[-84.66470292899996,75.69106679900013],[-84.28962154899993,75.7132835960001],[-84.21149654899995,75.75299713700008],[-84.17804928299998,75.76284414300004],[-84.01915442599994,75.77220286700003],[-83.93325761599993,75.8031273460001],[-83.91808020699995,75.81452057500015],[-83.98436438699991,75.82119375200001],[-84.00059973899994,75.82880280200006],[-83.83922278599988,75.81452057500015],[-83.73623613199993,75.82660553600006],[-83.69896399599995,75.82135651200018],[-83.71178137899989,75.81663646000008],[-83.75422115799995,75.80707428600009],[-83.6822810539999,75.79181549700012],[-83.52049719999985,75.79865143400002],[-83.4308162099999,75.75580475500013],[-83.3958634109999,75.7486026060001],[-83.26671301999988,75.74412669500005],[-83.19786536399991,75.75495026200004],[-83.17210852799987,75.75458405200011],[-83.11953691299993,75.74005768400009],[-83.08897864499991,75.74030182500003],[-82.62450110599991,75.82070547100012],[-82.54076087099989,75.82135651200018],[-82.50523841099991,75.82900625200001],[-82.41808020699997,75.83014557500006],[-82.3310440749999,75.84357330900004],[-81.92507890566654,75.82208893400009],[-81.51911373633324,75.80060455900018],[-81.11314856699997,75.77912018400015],[-81.10155188699986,75.77338288000009],[-81.09512285099991,75.75995514500009],[-81.10631262899993,75.755560614],[-81.12621008999994,75.74176666900009],[-81.13646399599989,75.73883698100018],[-81.15208899599985,75.73672109600007],[-81.16860917899993,75.73163483300013],[-81.24181067599989,75.69476959800006],[-81.2862849599999,75.66372304900015],[-81.2521052729999,75.653998114],[-81.17577063699989,75.65761953300007],[-81.13951575399997,75.65314362200012],[-81.10069739499994,75.64394765800013],[-81.01524817599991,75.63629791900011],[-80.75932776599994,75.64893219599999],[-80.50340735599988,75.66156647300015],[-80.46450761599988,75.65623607],[-80.46007239499991,75.65387604400003],[-80.45002193899984,75.64622630400011],[-80.44343014199985,75.643255927],[-80.41755123599995,75.63641998900009],[-80.33653723899991,75.63788483300014],[-80.22142493399994,75.61863841399999],[-80.17658443899992,75.60162995000003],[-80.11143958199989,75.5943871110001],[-80.07860266799989,75.58608633000003],[-80.05988521999993,75.56818268400013],[-80.06973222599993,75.56663646000011],[-80.07803300699993,75.56264883000011],[-80.0841365229999,75.55630117400001],[-80.08775794199997,75.54767487200012],[-80.05370032499985,75.54352448100018],[-79.97866777299993,75.5498721370001],[-79.95002193899984,75.54022858300014],[-79.99547278599994,75.52423737200003],[-80.34178626199989,75.48285553600012],[-80.3758031889999,75.46507396000011],[-80.01280676999991,75.46743398600007],[-79.64981035099991,75.46979401200004],[-79.59459387899989,75.459214585],[-79.57384192599991,75.45148346600017],[-79.63109290299985,75.45359935099998],[-79.65973873599992,75.45001862200012],[-79.68309485599991,75.43773021000005],[-79.62559973899991,75.4110781920001],[-79.59650631399995,75.40192291900013],[-79.56017005099997,75.39679596600003],[-79.52061926999991,75.39569733300009],[-79.50104732999993,75.39191315300015],[-79.49132239499991,75.38251373900012],[-79.4934789699999,75.36810944200006],[-79.5043025379999,75.36200592700008],[-79.51903235599988,75.35932038],[-79.53286699099988,75.35521067900005],[-79.5276586579999,75.35382721600017],[-79.51720130099991,75.349839585],[-79.51183020699995,75.34845612200012],[-79.53258216099994,75.327337958],[-79.6002498039999,75.3187523460001],[-79.61485755099991,75.30369700700008],[-79.59105383999992,75.28994375200016],[-79.44351152299987,75.28701406500012],[-79.45201575399989,75.27533600500014],[-79.45335852799988,75.27244700700011],[-79.49754798099984,75.25958893400018],[-79.51183020699995,75.252183335],[-79.51691646999987,75.22923411700009],[-79.6058650379999,75.19782135600016],[-79.62848873599995,75.18024323100005],[-79.75133216099994,75.17023346600014],[-79.79987545499989,75.17682526200004],[-79.81346594999985,75.17715078300014],[-79.82534745999989,75.17548248900015],[-79.83364824099988,75.17316315300017],[-79.83706620999988,75.16941966400005],[-79.83458411399995,75.16339752800006],[-79.84825598899991,75.15501536699999],[-79.86457271999993,75.15159739800008],[-79.90282141799985,75.1498070330001],[-79.92202714799993,75.14663320500004],[-79.93553626199989,75.14126211100016],[-79.94615637899994,75.13324616100012],[-79.95742753799993,75.122503973],[-79.96271725199992,75.11237213700015],[-79.96328691299988,75.10366445500007],[-79.96865800699992,75.09747955900009],[-80.28783118399988,75.062933661],[-80.3235570949999,75.04417552300013],[-80.34479732999998,75.039943752],[-80.44343014199985,75.039943752],[-80.34984290299991,75.01422760600015],[-80.32087154899992,75.002386786],[-80.2872615229999,74.99384186400009],[-80.21153723899991,74.99420807500009],[-80.17658443899992,74.98529694200006],[-80.25792395699989,74.97711823100013],[-80.27619381399987,74.96857330900002],[-80.27464758999992,74.95648834800012],[-80.24913489499991,74.95351797100001],[-80.19701087099989,74.95799388200008],[-80.13817298099991,74.97060781500006],[-80.10631262899997,74.97370026200004],[-80.08092200399994,74.96857330900002],[-80.05931555899986,74.9609235700001],[-80.04385331899994,74.96377187700013],[-80.0314021479999,74.97313060100008],[-80.01891028599991,74.98529694200006],[-80.02570553299991,74.98529694200006],[-79.7799373039999,75.03245677300005],[-79.74413001199989,75.032619533],[-79.6421606109999,75.01886627800009],[-79.59203040299988,75.0205752620001],[-79.50499426999994,74.998968817],[-79.5332738919999,74.99917226800015],[-79.5470271479999,74.99664948100003],[-79.56017005099997,74.99152252800012],[-79.53917395699992,74.97662995000015],[-79.48875891799989,74.95612213700012],[-79.43932044199994,74.92304108300006],[-79.33429928299992,74.90338776200011],[-79.35631262899994,74.88556549700006],[-79.39517167899996,74.87628815300009],[-79.81578528599991,74.83535390800016],[-79.87515214799986,74.81732819200012],[-79.90904700399992,74.8139509140001],[-79.94758053299992,74.81753164300008],[-80.15770423099988,74.85944245000007],[-80.16673743399988,74.86334870000017],[-80.17048092399992,74.86823151200014],[-80.16974850199989,74.87543366100009],[-80.15941321499989,74.89061107000006],[-80.14696204299986,74.90517812700001],[-80.14586341099991,74.92023346600003],[-80.16974850199989,74.93691640800014],[-80.19660396999986,74.94342682500015],[-80.20547441299993,74.93451569200003],[-80.20164954299992,74.91657135600015],[-80.19017493399988,74.89594147300012],[-80.23839270699992,74.87787506700012],[-80.26203365799992,74.87938060100008],[-80.2864477199999,74.89594147300012],[-80.27961178299995,74.89594147300012],[-80.29234778599991,74.916449286],[-80.3002009759999,74.9337425800001],[-80.3131404289999,74.94155508000007],[-80.39940344999985,74.91425202],[-80.41055253799996,74.9018008480001],[-80.38878333199992,74.88287995000015],[-80.35553951699988,74.8702660180001],[-80.10081946499993,74.82762278900005],[-80.10081946499993,74.82078685100014],[-80.10802161399988,74.82037995000002],[-80.11278235599988,74.81875234600001],[-80.12254798099991,74.8139509140001],[-80.11676998599995,74.80931224199999],[-80.10667883999989,74.79808177299999],[-80.10081946499993,74.79352448100003],[-80.13536536399992,74.782904364],[-80.2154841789999,74.77505117400001],[-80.24543209499987,74.758734442],[-80.15314693899983,74.73285553600009],[-80.12877356699988,74.71775950700008],[-80.15314693899983,74.70628489800013],[-80.18203691299993,74.70331452000012],[-80.2047419909999,74.69733307500007],[-80.21068274599992,74.67682526200005],[-80.18545488199996,74.66543203300007],[-80.17658443899992,74.66315338700012],[-80.18285071499986,74.65851471600008],[-80.19701087099989,74.64264557500015],[-80.15623938699991,74.6368675800001],[-80.16173255099994,74.62376536700013],[-80.19359290299988,74.60984935100005],[-80.23180091099994,74.60175202000012],[-80.21751868399994,74.58746979400003],[-80.26504472599993,74.57786692900004],[-80.42275956899994,74.58746979400003],[-80.44749915299991,74.58612702000012],[-80.46979732999995,74.5824242210001],[-80.51382402299987,74.5689151060001],[-80.54185950399997,74.56354401200015],[-80.82860266799992,74.57123444200018],[-81.11534583199993,74.57892487200012],[-81.32022050699993,74.56183502800015],[-81.43781490799991,74.52602773600013],[-81.50999915299994,74.51780833500005],[-81.56139075399994,74.50136953300014],[-81.62214107999998,74.50088125200007],[-81.73839270699996,74.4662132830001],[-81.78868567599994,74.4584007830001],[-81.84699459499984,74.46572500200001],[-81.88451087099986,74.46369049700017],[-81.97052975199995,74.47679271000014],[-82.06798255099987,74.47711823100015],[-82.19570878799993,74.50031159100008],[-82.22618567599989,74.51007721600006],[-82.42170162699995,74.51833730700012],[-82.42162024599986,74.52073802300008],[-82.40265865799995,74.52529531500004],[-82.38841712099995,74.5335960960001],[-82.38304602799988,74.54645416900003],[-82.39509029899988,74.56452057500002],[-82.42149817599989,74.57269928600014],[-82.45091712099988,74.57135651200015],[-82.47183183499993,74.56073639500003],[-82.46812903599991,74.55914948100018],[-82.4581599599999,74.55329010600003],[-82.4641820949999,74.54759349200005],[-82.47085527299987,74.54336172100012],[-82.4793188139999,74.53900788000014],[-82.57412675699996,74.51532623900012],[-82.60619055899994,74.51235586100002],[-82.64268958199987,74.51593659100008],[-82.67943274599989,74.52435944200012],[-82.69981848899988,74.52667877800008],[-82.74058997299994,74.52195872599998],[-82.91999264199991,74.55149974200005],[-82.95067298099991,74.5639102230001],[-83.08495032499985,74.63849518400012],[-83.11725826699987,74.66937897300006],[-83.13044186099992,74.70783112200016],[-83.12669837099988,74.72052643400002],[-83.11774654899993,74.73749420800003],[-83.10631262899992,74.75238678600006],[-83.09561113199987,74.758734442],[-83.05968176999988,74.76414622600014],[-83.03750566299993,74.77610911700008],[-83.04108639199988,74.78807200700003],[-83.08193925699992,74.79352448100003],[-83.07848059799994,74.81582265800007],[-83.09878495999993,74.82807038000014],[-83.12828528599991,74.8320987000001],[-83.18927975199989,74.82428620000003],[-83.35879472599987,74.85635000200001],[-83.42479407499991,74.8871117210001],[-83.49168860599991,74.90949127800009],[-83.55459550699996,74.89964427299999],[-83.56248938699994,74.89232005400007],[-83.56017005099997,74.88662344],[-83.55345618399991,74.8813337260001],[-83.52391516799986,74.84442780200006],[-83.50202389199991,74.830023505],[-83.47085527299993,74.81712474199999],[-83.41152910099987,74.799750067],[-83.35570227799988,74.79157135600009],[-83.33193925699989,74.7819278020001],[-83.32217363199993,74.762152411],[-83.33116614499997,74.74721914300015],[-83.39110266799989,74.70408763200014],[-83.3836563789999,74.69733307500007],[-83.39598548099987,74.68414948100015],[-83.42931067599994,74.67377350500006],[-83.44566809799997,74.66315338700012],[-83.43830318899987,74.65631745000009],[-83.45702063699994,74.63190338700004],[-83.46324622299991,74.61200592700006],[-83.47085527299993,74.59467194200006],[-83.49351966099991,74.57782623900006],[-83.51463782499991,74.57111237200012],[-83.56061764199987,74.564683335],[-83.60041256399987,74.54950592700011],[-83.62035071499994,74.54555898600005],[-83.64098059799997,74.54555898600005],[-83.68565833199992,74.55442942900008],[-84.04393469999991,74.54315827000009],[-84.14622962099995,74.518011786],[-84.25829016799992,74.50649648600016],[-84.50047766799986,74.512844143],[-84.61286373599995,74.502915757],[-84.63805091099991,74.50897858299999],[-84.65729732999995,74.51764557500007],[-84.67642167899993,74.52374909100017],[-84.69676673099994,74.52667877800008],[-84.74327551999997,74.52334219000006],[-84.84365800699992,74.50478750200016],[-84.91486568899987,74.51235586100002],[-84.92096920499995,74.51630280199998],[-84.92894446499992,74.52545807500017],[-84.93602454299986,74.53558991100012],[-84.94570878799993,74.555609442],[-84.96084550699993,74.56146881700013],[-84.97716223899992,74.56582265800013],[-84.98745683499995,74.57440827000015],[-84.98778235599988,74.58429596600014],[-84.97679602799994,74.60162995000015],[-84.97386633999992,74.61163971600003],[-84.97614498599997,74.6222191430001],[-84.99437415299985,74.64887116100012],[-84.96165930899994,74.66290924700017],[-84.95718339799987,74.68109772300005],[-84.9747615229999,74.69696686400009],[-85.00796464799993,74.70408763200014],[-85.00157630099987,74.68256256700012],[-85.02090410099993,74.66958242400013],[-85.0508520169999,74.65839264500003],[-85.07624264199993,74.64264557500015],[-85.05565344999988,74.63051992400007],[-85.04906165299991,74.62018463700015],[-85.05272376199986,74.60724518400015],[-85.06261145699997,74.58746979400003],[-85.05516516799989,74.583726304],[-85.05068925699993,74.579820054],[-85.04271399599988,74.56696198100018],[-85.0464574859999,74.56561920800009],[-85.05577551999993,74.56073639500003],[-85.05040442599989,74.55573151200015],[-85.04088294199991,74.54389069200002],[-85.03526770699989,74.53900788000014],[-85.07140051999994,74.51312897300012],[-85.12596594999991,74.499009507],[-85.18492591099997,74.49310944200006],[-85.33283443899984,74.49599844],[-85.35741126199994,74.50556061400007],[-85.3675837879999,74.51723867400007],[-85.36603756399987,74.52505117400007],[-85.36168372299994,74.53327057500017],[-85.36363684799991,74.54645416900003],[-85.37621008999989,74.56037018400009],[-85.41258704299989,74.57786692900004],[-85.42634029899989,74.58746979400003],[-85.46979732999992,74.66282786699999],[-85.48029537699992,74.67426178600014],[-85.49461829299987,74.68366120000015],[-85.51252193899987,74.68870677300002],[-85.53368079299986,74.69009023600007],[-85.54564368399988,74.68500397300015],[-85.5355525379999,74.67059967699998],[-85.54084225199989,74.66913483300011],[-85.55040442599989,74.66478099200013],[-85.55549068899988,74.66315338700012],[-85.53624426999994,74.6576195330001],[-85.53038489499991,74.64647044500008],[-85.53042558499989,74.63178131700006],[-85.52871660099989,74.61542389500006],[-85.52257239499991,74.60122304900013],[-85.48493404899992,74.553900458],[-85.48228919199993,74.54535553600009],[-85.48916581899992,74.53729889500012],[-85.53026282499985,74.51569245000003],[-85.55426998599998,74.50747304900013],[-85.60387122299991,74.49803294500013],[-85.86424719949991,74.49119700750005],[-86.12462317599989,74.48436107],[-86.08259029899992,74.53742096600011],[-86.08018958199997,74.54987213700004],[-86.10358639199987,74.56525299700017],[-86.15599524599992,74.58112213700008],[-86.17926998599995,74.59422435100008],[-86.16038977799991,74.59955475500011],[-86.15379798099993,74.60789622600002],[-86.15998287699992,74.6164411480001],[-86.17926998599995,74.6222191430001],[-86.2005916009999,74.62107982000005],[-86.22398841099991,74.613918361],[-86.23790442599997,74.60138580900009],[-86.23106848899997,74.58437734600012],[-86.22398841099991,74.55512116100012],[-86.25133216099997,74.5283877620001],[-86.28990637899993,74.5080427100001],[-86.31639563699991,74.49803294500013],[-86.38003495999986,74.48749420800006],[-86.44082597599993,74.48981354400003],[-86.66144771999987,74.53754303600009],[-86.71076412699993,74.5585798200001],[-86.72105872299997,74.58124420800006],[-86.74176998599995,74.58128489800005],[-86.75694739499994,74.58746979400003],[-86.76121985599988,74.59906647300015],[-86.74901282499991,74.61542389500006],[-86.76183020699992,74.61933014500015],[-86.7752986319999,74.62181224199998],[-86.7891332669999,74.62287018400004],[-86.80304928299988,74.6222191430001],[-86.80304928299988,74.61542389500006],[-86.79185950399997,74.59870026200004],[-86.79816646999993,74.57298411699999],[-86.80101477799984,74.54938385600002],[-86.77940833199995,74.53900788000014],[-86.73631751199994,74.52871328300004],[-86.65013587099988,74.48529694200006],[-86.60374915299991,74.47821686400003],[-86.60374915299991,74.471380927],[-86.9110408189999,74.46454498900009],[-86.93659420499998,74.46767812700016],[-87.00226803299996,74.49803294500013],[-87.00597083199992,74.5033633480001],[-87.00804602799985,74.51032135600018],[-87.01406816299996,74.51398346600003],[-87.02961178299994,74.50897858299999],[-87.03921464799991,74.50234609600012],[-87.04206295499998,74.49599844],[-87.03856360599988,74.489935614],[-87.02961178299994,74.48436107],[-87.04991614499994,74.47736237200012],[-87.07225501199989,74.47345612200012],[-87.11831620999993,74.471380927],[-87.1114802729999,74.471380927],[-87.2592667309999,74.46816640800012],[-87.33470618399986,74.48309967700008],[-87.37279212099993,74.52602773600013],[-87.3319392569999,74.52997467700014],[-87.31208248599998,74.53579336100007],[-87.29649817599989,74.54645416900003],[-87.36864173099991,74.544867255],[-87.40265865799992,74.53709544499998],[-87.4330134759999,74.51976146],[-87.43956458199989,74.51105377800012],[-87.44627844999994,74.49921295800006],[-87.4542537099999,74.48891836100013],[-87.46434485599985,74.48436107],[-87.55036373599995,74.471380927],[-87.54283606699988,74.471380927],[-87.64362545499995,74.45831940300012],[-87.69920813699991,74.45978424700016],[-87.7383927069999,74.474798895],[-87.7484431629999,74.48407623900006],[-87.75112870999988,74.48871491100009],[-87.7489314439999,74.50897858299999],[-87.7557673819999,74.51992422100015],[-87.77163652299993,74.51898834800006],[-87.84105383999989,74.49013906500015],[-87.87734941299986,74.48187897300006],[-88.06041419199991,74.47736237200012],[-88.11290442599994,74.48493073100015],[-88.1529841789999,74.50556061400007],[-88.14671790299992,74.50926341400013],[-88.14915930899988,74.51190827000003],[-88.1697891919999,74.505072333],[-88.20978756399984,74.48639557500012],[-88.24205481699997,74.48139069200009],[-88.51781165299985,74.50120677299999],[-88.53457597599987,74.50918203300013],[-88.54751542899987,74.52167389500015],[-88.55768795499992,74.53900788000014],[-88.56480872299997,74.55487702000006],[-88.56688391799989,74.56443919500005],[-88.56436113199987,74.57343170800009],[-88.54417883999986,74.61603424700012],[-88.53246008999984,74.6299502620001],[-88.51642818899987,74.63589101800011],[-88.50523841099997,74.64166901200018],[-88.47500566299996,74.67007070500001],[-88.44701087099995,74.68927643400015],[-88.43443762899994,74.70111725500011],[-88.42857825399992,74.71381256700009],[-88.4341934889999,74.72528717700014],[-88.42369544199994,74.7276065120001],[-88.41559811099992,74.73118724200008],[-88.41169186099992,74.73676178600009],[-88.41368567599994,74.74510325700005],[-88.40762285099996,74.75275299700017],[-88.4117732409999,74.75897858300014],[-88.4341934889999,74.7655703800001],[-88.29698645699995,74.77301666900009],[-88.29698645699995,74.77985260600009],[-88.3208715489999,74.78571198100015],[-88.43761145699992,74.78607819200006],[-88.45030676999997,74.78754303600012],[-88.4752498039999,74.79328034100008],[-88.48884029899995,74.79352448100003],[-88.48350989499988,74.80735911700005],[-88.47496497299997,74.81972890800007],[-88.46304277299993,74.82925039300007],[-88.44782467399995,74.83441803600009],[-88.45995032499984,74.84735748900007],[-88.52830969999994,74.89891185100005],[-88.53945878799993,74.90375397300012],[-88.57477779899997,74.90338776200011],[-88.57876542899994,74.89606354400011],[-88.5672501289999,74.87995026200004],[-88.54405676999988,74.85496653900013],[-88.55492102799988,74.84088776200018],[-88.57827714799996,74.83063385600015],[-88.61913001199991,74.82078685100014],[-88.6148168609999,74.83014557500013],[-88.61432857999992,74.83966705900015],[-88.61799068899987,74.84833405200006],[-88.62596594999994,74.85496653900013],[-88.64671790299991,74.85911692900005],[-88.66128495999996,74.8515485700001],[-88.68374589799996,74.82318756700009],[-88.68565833199992,74.81842682500017],[-88.68854732999993,74.813177802],[-88.69489498599998,74.80719635600018],[-88.70531165299988,74.80206940300015],[-88.7259008449999,74.79816315300015],[-88.73582923099991,74.79352448100003],[-88.74449622299989,74.78595612200009],[-88.75255286399994,74.775620835],[-88.75649980399993,74.76487864800008],[-88.75291907499985,74.75560130400011],[-88.74730383999994,74.73505280200008],[-88.76455644399992,74.715521552],[-88.80475826699987,74.69049713700018],[-88.81883704299989,74.67885976800007],[-88.83202063699994,74.67031484600015],[-88.84764563699991,74.66498444200009],[-88.86929277299991,74.66315338700012],[-88.88463294199995,74.66673411699999],[-88.89061438699989,74.67499420800007],[-88.88841712099989,74.68423086100013],[-88.87922115799991,74.69049713700018],[-88.88634192599997,74.6986758480001],[-88.90607662699989,74.71027252800012],[-88.91397050699987,74.71775950700008],[-88.9182022779999,74.72671133000001],[-88.91763261599992,74.7319196640001],[-88.91527258999987,74.73525625200013],[-88.91397050699987,74.73826732000013],[-88.91270911399997,74.754868882],[-88.90982011599992,74.76601797100001],[-88.9107966789999,74.77521393400018],[-88.92076575399992,74.78607819200006],[-88.94041907499985,74.79523346600014],[-89.01699785099993,74.8139509140001],[-89.07738196499986,74.83657461100007],[-89.09894771999987,74.84072500200001],[-89.08470618399986,74.81989166900006],[-89.06248938699991,74.80243561400009],[-89.03628495999996,74.79043203300016],[-89.0101619129999,74.78607819200006],[-89.0391332669999,74.74066803600009],[-89.0602921209999,74.72223541900006],[-89.08372962099989,74.71971263200011],[-89.10802161399997,74.72606028900005],[-89.15770423099988,74.73289622600008],[-89.24421139199987,74.75665924700017],[-89.2702530589999,74.758734442],[-89.25194251199986,74.750962632],[-89.20881100199993,74.72150299700012],[-89.11363684799997,74.6972516950001],[-89.09894771999987,74.68707916900017],[-89.10448157499988,74.6670596370001],[-89.11778723899991,74.6429710960001],[-89.13369706899994,74.62103913000006],[-89.14736894399995,74.60789622600002],[-89.19591223899994,74.58881256700012],[-89.24811764199984,74.58348216400005],[-89.38182532499991,74.58771393400015],[-89.39338131399992,74.58510976800007],[-89.40396074099988,74.57782623900006],[-89.4147029289999,74.561712958],[-89.42174231699997,74.55573151200015],[-89.43443762899992,74.55329010600003],[-89.57811438699989,74.54645416900003],[-89.57127844999984,74.55329010600003],[-89.59569251199991,74.55801015800013],[-89.61913001199989,74.55532461100016],[-89.66771399599995,74.540961005],[-89.70116126199991,74.53595612200014],[-89.80809485599985,74.53900788000014],[-89.91852779899989,74.52728913000006],[-89.94863847599991,74.53278229400007],[-89.96027584499984,74.54409414300007],[-89.97402910099996,74.57489655200013],[-89.98277747299991,74.58437734600012],[-90.00865637899994,74.59064362200009],[-90.03001868399988,74.58661530200011],[-90.06476803299995,74.56696198100018],[-90.08820553299992,74.55744049700017],[-90.1107478509999,74.55467357000009],[-90.37319902299987,74.60175202000012],[-90.32437089799987,74.61835358300009],[-90.31175696499989,74.62905508000001],[-90.47297115799998,74.6049258480001],[-90.56379146999986,74.60858795800014],[-90.70132402299993,74.64614492400015],[-90.73009192599997,74.66315338700012],[-90.73875891799987,74.676214911],[-90.74356035099996,74.69114817900014],[-90.75007076699985,74.70575592700006],[-90.76366126199991,74.71775950700008],[-90.73741614499988,74.72284577],[-90.72740637899992,74.72776927300005],[-90.72329667899996,74.73826732000013],[-90.73322506399985,74.73639557500013],[-90.74144446499986,74.73602936400015],[-90.7568253249999,74.73826732000013],[-90.77318274599992,74.73114655200008],[-90.82310950399993,74.72955963700004],[-90.84618079299992,74.72528717700014],[-90.85643469999994,74.71893952],[-90.86318925699987,74.71116771],[-90.86847896999987,74.70343659100007],[-90.87413489499994,74.69733307500007],[-90.90550696499989,74.686957098],[-90.94627844999985,74.68842194200006],[-91.02497311099982,74.70408763200014],[-90.99229895699989,74.7383487000001],[-90.89411373599992,74.7608910180001],[-90.84959876199991,74.782945054],[-90.81480872299997,74.81736888200011],[-90.80296790299991,74.8230654970001],[-90.76968339799993,74.82859935100011],[-90.7568253249999,74.83441803600009],[-90.74714107999992,74.85065338700012],[-90.75169837099989,74.86343008000016],[-90.75885982999992,74.87384674700014],[-90.7568253249999,74.88287995000015],[-90.77131100199995,74.88792552299999],[-90.78677324099996,74.889634507],[-90.81822669199988,74.88910553600012],[-90.81143144399996,74.88910553600012],[-90.84129798099993,74.88214752800002],[-90.86180579299989,74.87051015800004],[-90.90143795499992,74.84072500200001],[-91.09943600199992,74.75250885600003],[-91.12047278599994,74.74868398600002],[-91.13646399599993,74.7513695330001],[-91.15151933499996,74.75625234600007],[-91.17015540299994,74.758734442],[-91.18285071499992,74.75665924700017],[-91.22109941299993,74.74469635600003],[-91.2303767569999,74.73826732000013],[-91.22777258999992,74.72479889500013],[-91.21349036399991,74.71751536700013],[-91.19562740799994,74.71210358300009],[-91.18199622299991,74.70408763200014],[-91.1815079419999,74.68720123900015],[-91.11904863199996,74.64874909100014],[-91.09943600199992,74.62905508000001],[-91.28563391799992,74.63589101800011],[-91.27818762899994,74.64264557500015],[-91.30483964799987,74.66315338700012],[-91.28209387899994,74.67869700700011],[-91.29527747299989,74.70522695500007],[-91.33043372299994,74.72093333500014],[-91.37376868399991,74.70408763200014],[-91.35057532499988,74.69830963700018],[-91.33946692599994,74.68878815300017],[-91.33869381399984,74.67670319200008],[-91.34650631399992,74.66315338700012],[-91.36847896999984,74.64858633000007],[-91.39712480399989,74.64280833500011],[-91.51349850199998,74.64472077000009],[-91.63499915299988,74.66498444200009],[-91.68907630099994,74.68366120000015],[-91.67345130099997,74.69009023600007],[-91.63292395699995,74.70014069200015],[-91.62083899599995,74.711615302],[-91.66600501199989,74.72675202],[-91.71458899599995,74.73139069200012],[-91.81261145699995,74.72528717700014],[-91.80060787699993,74.70701732000008],[-91.82103430899991,74.70172760600016],[-91.85435950399987,74.70482005400007],[-91.88084876199989,74.711615302],[-91.86449133999986,74.7237816430001],[-91.80577551999994,74.73826732000013],[-91.86042232999989,74.75250885600003],[-91.86042232999989,74.74510325700005],[-91.90941321499986,74.75897858300014],[-92.01846269399991,74.77749258000016],[-92.06273352799988,74.80341217700004],[-92.06602942599991,74.81610748900012],[-92.05650794199991,74.82855866100012],[-92.03164628799996,74.84813060100011],[-92.02489173099994,74.85195547100004],[-92.01846269399991,74.85236237200003],[-92.01374264199993,74.85504791900011],[-92.01183020699995,74.86554596600017],[-92.01146399599995,74.873236395],[-92.01032467399992,74.878363348],[-92.00438391799987,74.88910553600012],[-92.0116267569999,74.89720286700005],[-92.01402747299994,74.9017601580001],[-92.01341712099988,74.90501536700005],[-92.01183020699995,74.90961334800006],[-92.02570553299994,74.92182038000006],[-92.04279537699989,74.92829010600015],[-92.07945716099991,74.93691640800014],[-92.04865475199992,74.94818756700015],[-92.06114661399994,74.96283600500006],[-92.19538326699987,75.0244815120001],[-92.22411048099994,75.03245677300005],[-92.22411048099994,75.039943752],[-92.21027584499991,75.04108307500015],[-92.20299231699991,75.04669830900013],[-92.20079505099991,75.05573151200014],[-92.20238196499984,75.06728750200008],[-92.21743730399987,75.06712474200013],[-92.22712154899992,75.06854889499999],[-92.23033606699988,75.0740420590001],[-92.22411048099994,75.08104075700003],[-92.21336829299992,75.08222077000012],[-92.20164954299992,75.08185455900012],[-92.15477454299989,75.096625067],[-92.05386308499993,75.08783600500011],[-92.01183020699995,75.10138580900008],[-92.0920304029999,75.12156810100011],[-92.11424719999985,75.13613515800016],[-92.05947831899994,75.14647044500006],[-92.05589758999984,75.15322500200008],[-92.07396399599988,75.15973541900009],[-92.2383927069999,75.14057038000011],[-92.28229732999995,75.14081452000006],[-92.32652747299991,75.1498070330001],[-92.32591712099986,75.166205145],[-92.34264075399989,75.17177969],[-92.36685136599989,75.17304108300011],[-92.38857988199996,75.17715078300014],[-92.38565019399994,75.18097565300017],[-92.38109290299991,75.19074127800012],[-92.41246497299993,75.19399648600016],[-92.47207597599991,75.21531810100014],[-92.50401770699995,75.2180036480001],[-92.49518795499989,75.22947825700004],[-92.46617591099991,75.2418480490001],[-92.45685787699995,75.252183335],[-92.45693925699992,75.26447174700014],[-92.46202551999997,75.27728913],[-92.47052975199989,75.29315827000003],[-92.44078528599988,75.33038971600008],[-92.4289444649999,75.34153880400011],[-92.40599524599995,75.35309479400014],[-92.35240637899994,75.36542389500009],[-92.32652747299991,75.37567780200011],[-92.3594457669999,75.37954336100002],[-92.43252519399991,75.3717715520001],[-92.46304277299991,75.37567780200011],[-92.38076738199987,75.4561221370001],[-92.30003821499986,75.51251862200014],[-92.25682532499984,75.52521393400012],[-92.23778235599988,75.53339264500012],[-92.21104895699995,75.55036041900007],[-92.19579016799989,75.55670807500002],[-92.08625240799991,75.57070547100008],[-92.04369055899987,75.58161041900014],[-92.00438391799987,75.60162995000003],[-92.0245662099999,75.60944245000012],[-92.07144120999996,75.61871979400017],[-92.07945716099991,75.62897370000007],[-92.06969153599997,75.63959381700013],[-92.01183020699995,75.66372304900015],[-92.02977454299992,75.669663804],[-92.0453181629999,75.67796458500005],[-92.05768795499993,75.6933454450001],[-92.15306555899988,75.72939687700016],[-92.17568925699993,75.75250885600012],[-92.17015540299991,75.75926341400005],[-92.1210017569999,75.79254791900014],[-92.11139889199993,75.802679755],[-92.10472571499986,75.81452057500015],[-92.09996497299994,75.82880280200006],[-92.11644446499994,75.86237213700018],[-92.12682044199994,75.87384674700003],[-92.14834550699996,75.88593170800011],[-92.18455969999988,75.89492422100015],[-92.26667232999998,75.89789459800006],[-92.41283118399986,75.92645905200006],[-92.4398087229999,75.94086334800012],[-92.45250403599997,75.95770905200011],[-92.46117102799987,75.96320221600014],[-92.47736568899992,75.96539948100003],[-92.51329505099991,75.96556224200009],[-92.53026282499988,75.96930573100002],[-92.54564368399991,75.97842031500012],[-92.54161536399994,75.99030182500017],[-92.55426998599992,76.00153229400017],[-92.57469641799989,76.00991445500013],[-92.59406490799992,76.013128973],[-92.61974036399997,76.01459381700006],[-92.62979081899994,76.02033112200003],[-92.63560950399989,76.054144598],[-92.63833574099996,76.06073639500009],[-92.64683997299991,76.07591380400008],[-92.64867102799988,76.08148834800006],[-92.64635169199991,76.08624909100017],[-92.63678951699991,76.09723541900003],[-92.63560950399989,76.10252513200011],[-92.64671790299994,76.11994049700017],[-92.66612708199995,76.13507721600017],[-92.68976803299995,76.14569733300011],[-92.73631751199989,76.15379466400005],[-92.75991777299993,76.16486237200017],[-92.77839107999995,76.18138255400005],[-92.78579667899993,76.2015648460001],[-92.80093339799993,76.21434153900013],[-92.83556067599991,76.22382233300014],[-92.92747962099995,76.237005927],[-93.00495357999992,76.28001536700012],[-93.04845130099994,76.29539622600008],[-93.06847083199992,76.30634186400013],[-93.08067786399991,76.32225169500005],[-93.07282467399992,76.32461172100001],[-93.05272376199989,76.33527252800006],[-93.05606035099989,76.34031810100008],[-93.05923417899996,76.3439395200001],[-93.06261145699997,76.34662506700012],[-93.06639563699991,76.34902578300014],[-93.06017005099994,76.34902578300014],[-93.12832597599987,76.37018463700015],[-93.20848548099991,76.37547435100014],[-93.28990637899997,76.36920807500009],[-93.59105383999989,76.29970937700007],[-93.66974850199998,76.300523179],[-93.65758216099988,76.30589427300005],[-93.63316809799994,76.31069570500013],[-93.6212458979999,76.31484609600007],[-93.63491777299991,76.32843659100003],[-93.67731686099992,76.32705312700013],[-93.69737708199997,76.32306549700017],[-93.71743730399993,76.31484609600007],[-93.75328528599994,76.29108307500016],[-93.76593990799992,76.28685130400005],[-93.73460852799988,76.27338288000006],[-93.66441809799991,76.27020905199998],[-93.63491777299991,76.25958893400015],[-93.7037247389999,76.25153229400003],[-93.84268144399994,76.26996491100006],[-93.94286048099987,76.2611351580001],[-94.00841223899991,76.2650820980001],[-94.06761633999989,76.2594261740001],[-94.1863907539999,76.2840843770001],[-94.60366777299993,76.27374909100008],[-94.66344153599991,76.28685130400005],[-94.64793860599991,76.29291413000014],[-94.64232337099989,76.29433828300002],[-94.66201738199993,76.30524323100009],[-94.66958574099986,76.30801015800016],[-94.66344153599991,76.31484609600007],[-94.74909420499998,76.31484609600007],[-94.75987708199989,76.31069570500013],[-94.80028235599994,76.28351471600003],[-94.84813391799986,76.26923248900012],[-94.99917558499989,76.253363348],[-95.0191137359999,76.24502187700013],[-95.04206295499996,76.23004791900009],[-95.06065833199997,76.22540924700017],[-95.08674068899985,76.2257347680001],[-95.16392981699988,76.23908112200012],[-95.39024817599991,76.23908112200012],[-95.38597571499989,76.2481957050001],[-95.38442949099996,76.25299713700018],[-95.38585364499991,76.25779857000008],[-95.39024817599991,76.26703522300012],[-95.38361568899984,76.28351471600003],[-95.37450110599985,76.29832591400002],[-95.3577774729999,76.30512116100012],[-95.29019120999996,76.28803131700009],[-95.09894771999993,76.30719635600003],[-95.07494055899988,76.31484609600007],[-95.07274329299989,76.31850820500004],[-95.07506262899993,76.32298411699999],[-95.07551021999984,76.326849677],[-95.03132076699987,76.334173895],[-94.88084876199989,76.33397044500005],[-94.84154212099989,76.32225169500005],[-94.84894771999986,76.31932200700014],[-94.85399329299992,76.315619208],[-94.86204993399994,76.30801015800016],[-94.84341386599995,76.30731842700011],[-94.82583574099993,76.30914948100009],[-94.81094316299988,76.31541575700014],[-94.80060787699995,76.32843659100003],[-94.84117591099988,76.34027741100009],[-95.12584387899989,76.36749909100008],[-95.15684973899991,76.35578034100008],[-95.17638098899991,76.34955475500014],[-95.19737708199995,76.35382721600014],[-95.23729407499991,76.37140534100007],[-95.25251217399997,76.37555573100012],[-95.26862545499995,76.37775299700012],[-95.30089270699989,76.37689850500011],[-95.31358801999994,76.3742536480001],[-95.34186764199988,76.36322663000009],[-95.39899654899996,76.35785553600012],[-95.43236243399986,76.36005280200011],[-95.45173092399997,76.36945221600003],[-95.44660396999987,76.38202545800011],[-95.42223059799991,76.388617255],[-95.39370683499989,76.39240143400012],[-95.3759659499999,76.39671458500011],[-95.42052161399991,76.40094635600006],[-95.5541072259999,76.38312409100017],[-95.82331295499998,76.39911530200008],[-95.8457738919999,76.4042015650001],[-95.8946020169999,76.42255280200013],[-95.97378495999996,76.43593984600015],[-96.04116777299987,76.46259186400009],[-96.10899817599997,76.499741929],[-96.08193925699993,76.51764557500003],[-96.05728105399992,76.52399323100015],[-95.79450436099987,76.52106354400014],[-95.75767981699997,76.52732982000002],[-95.72179114499988,76.53790924700014],[-95.60391191299995,76.59479401200018],[-95.58824622299989,76.60960521000005],[-95.62092037699992,76.60765208500011],[-95.64830481699987,76.60203685100011],[-95.75210527299987,76.55947500200016],[-95.7840063139999,76.55467357000008],[-95.80113684799991,76.56122467700006],[-95.80113684799991,76.56806061400005],[-95.82872473899994,76.56854889500006],[-95.91714433499986,76.55499909100008],[-96.02700761599993,76.55499909100008],[-96.02220618399986,76.565415757],[-96.01427161399991,76.57298411700013],[-96.00397701699987,76.57827383000001],[-95.99229895699997,76.581732489],[-96.02863521999986,76.58917877800017],[-96.10480709499984,76.57953522300004],[-96.14224199099988,76.5834821640001],[-96.16515051999988,76.59271881700006],[-96.17349199099993,76.59837474200005],[-96.18101966099991,76.60590241100012],[-96.1944880849999,76.61489492400013],[-96.24673417899989,76.62270742400013],[-96.23924719999994,76.62604401200015],[-96.22569739499997,76.63694896000011],[-96.3724259109999,76.63764069200005],[-96.41901607999992,76.64866771000011],[-96.4484757149999,76.66038646000001],[-96.46043860599994,76.66925690300015],[-96.46524003799993,76.68105703300002],[-96.47569739499991,76.69049713700004],[-96.49962317599996,76.69574616100012],[-96.68187415299991,76.71173737200003],[-96.76695716099991,76.698431708],[-96.8714900379999,76.70319245000009],[-96.92516028599991,76.71613190300009],[-96.96556555899994,76.73940664300004],[-96.93561764199985,76.74030182500012],[-96.90099036399988,76.74677155200011],[-96.86790930899994,76.75804271000003],[-96.84264075399989,76.77350495000003],[-96.8598526679999,76.77423737200014],[-96.8823949859999,76.7779808610001],[-96.90038001199991,76.78636302300005],[-96.90412350199995,76.80145905200006],[-96.89049231699991,76.81244538000011],[-96.86750240799992,76.81366608300011],[-96.81602942599994,76.80634186400012],[-96.7967830069999,76.79718659100014],[-96.78742428299995,76.793931382],[-96.77574622299997,76.79319896000007],[-96.75182044199991,76.79486725500007],[-96.74022376199989,76.793931382],[-96.67756100199989,76.77350495000003],[-96.69005286399991,76.76337311400006],[-96.68195553299998,76.7572289080001],[-96.66295325399996,76.75413646000011],[-96.64342200399987,76.75307851800015],[-96.57249915299991,76.76723867400007],[-96.53563391799995,76.77000560100012],[-96.50690670499989,76.75983307500009],[-96.50690670499989,76.76727936400006],[-96.40623938699989,76.74673086100002],[-96.35049394399988,76.74607982000006],[-96.30821692599997,76.75983307500009],[-96.32469641799986,76.76349518400004],[-96.37588456899991,76.75983307500009],[-96.39264889199984,76.76243724199999],[-96.42491614499997,76.77155182500017],[-96.49494381399987,76.78009674700009],[-96.51366126199991,76.78034088700004],[-96.56493079299985,76.77301666900006],[-96.58193925699993,76.77350495000003],[-96.58193925699993,76.78034088700004],[-96.56334387899992,76.78436920800011],[-96.50690670499989,76.78717682500015],[-96.50690670499989,76.793931382],[-96.52672278599991,76.80145905200006],[-96.51886959499993,76.80597565300012],[-96.5114639959999,76.80805084800012],[-96.49323482999995,76.80829498900009],[-96.47891191299996,76.80589427300013],[-96.45641028599988,76.79612864799998],[-96.4454239569999,76.793931382],[-96.34300696499992,76.79865143400009],[-96.31444251199991,76.80829498900009],[-96.59911048099985,76.84080638200005],[-96.61611894399991,76.8491885440001],[-96.68472245999993,76.86676666900014],[-96.71202551999991,76.86908600500003],[-96.78522701699987,76.86627838700015],[-96.81956946499992,76.87201569200012],[-96.85008704299986,76.89081452000009],[-96.86611894399996,76.91730377800015],[-96.85114498599992,76.92963287999999],[-96.76976477799985,76.94306061400007],[-96.71231035099994,76.938625393],[-96.65770423099988,76.95229726800015],[-96.6978653639999,76.96474844000005],[-96.74136308499993,76.97077057500017],[-96.82835852799991,76.97280508000001],[-96.8184301419999,76.98338450700004],[-96.80235755099991,76.98696523600005],[-96.76695716099991,76.985785223],[-96.77375240799991,76.985785223],[-96.47956295499992,76.97280508000001],[-96.48574785099989,76.95913320500007],[-96.47297115799994,76.95921458500005],[-96.46568762899992,76.96312083500014],[-96.4600723949999,76.96845123900003],[-96.45225989499994,76.97280508000001],[-96.39810136599996,76.98094310100011],[-96.37913977799985,76.98944733300006],[-96.34976152299996,76.99241771000004],[-96.30614173099985,76.98655833500011],[-96.26695716099991,76.98712799700009],[-96.24673417899989,77.00629303600006],[-96.30821692599997,77.00629303600006],[-96.30821692599997,77.01365794500003],[-96.30138098899992,77.01365794500003],[-96.32188880099991,77.02431875200007],[-96.36782792899987,77.02830638200005],[-96.3902074859999,77.03424713700018],[-96.00129146999988,77.05036041900014],[-95.8919164699999,77.06976959800006],[-95.77074133999986,77.07672760600015],[-95.66734778599988,77.06256745000003],[-95.42373613199996,77.06146881700009],[-95.40151933499989,77.05744049700012],[-95.35631262899993,77.04389069200015],[-95.31094316299996,77.03774648600007],[-95.23875891799985,77.01365794500003]]],[[[-116.12559973899995,77.472398179],[-116.08665930899987,77.46027252800009],[-115.89199785099991,77.44135163000009],[-115.85020911399988,77.42934804900015],[-115.80003821499989,77.43158600500011],[-115.77651933499993,77.42983633000013],[-115.65835527299987,77.38922760600002],[-115.57526607999992,77.378078518],[-115.48961341099994,77.353949286],[-115.4478246739999,77.34886302300008],[-115.45079505099991,77.3452822940001],[-115.45287024599992,77.34198639500006],[-115.4556778639999,77.338812567],[-115.46080481699991,77.33588288000009],[-115.4435929029999,77.32811107],[-115.40416419199991,77.31842682500012],[-115.39256751199989,77.30792877800015],[-115.45807857999985,77.30792877800015],[-115.47061113199993,77.30585358300011],[-115.49429277299996,77.29645416900011],[-115.5057673819999,77.29425690300012],[-115.50885982999989,77.29169342700003],[-115.51748613199989,77.27899811400015],[-115.52285722599994,77.27440013200011],[-115.53709876199994,77.26947663000013],[-115.6829320949999,77.26154205900018],[-115.72972571499987,77.25307851800011],[-115.77611243399993,77.25332265800007],[-115.81452389199985,77.24091217700004],[-115.85187740799991,77.23480866100005],[-115.90245520699989,77.216498114],[-115.92780514199993,77.21234772300005],[-116.2472224599999,77.19594961100015],[-116.2745255199999,77.18984609600005],[-116.27643795499984,77.17816803600009],[-116.28384355399993,77.17072174700009],[-116.27643795499984,77.16453685100014],[-116.30182857999989,77.14826080900009],[-116.37149003799995,77.14549388200014],[-116.40054277299991,77.13727448100003],[-116.37873287699995,77.12824127800003],[-116.30418860599993,77.11810944200009],[-116.28990637899993,77.11188385600012],[-116.28685462099993,77.10443756700015],[-116.28734290299992,77.09503815300012],[-116.28384355399993,77.08266836100006],[-116.2576798169999,77.05589427300008],[-116.22166907499992,77.04165273600007],[-115.83136959499986,76.97280508000001],[-115.7784317699999,76.97040436400005],[-115.75365149599993,76.96478913000006],[-115.73204505099993,76.94855377800012],[-115.75104732999984,76.93309153900002],[-115.90709387899992,76.89704010600003],[-116.02403723899995,76.89874909100014],[-116.25658118399993,76.94049713700018],[-116.32579505099991,76.9455427100001],[-116.36579342399996,76.9317894550001],[-116.3570043609999,76.9076195330001],[-116.3137914699999,76.890326239],[-116.26309160099993,76.87726471600011],[-116.17491614499993,76.84174225500013],[-116.04015051999991,76.82831452000015],[-115.99522864499991,76.793931382],[-115.99746660099991,76.78384023600013],[-115.99779212099993,76.77521393400004],[-115.99522864499991,76.76727936400006],[-115.96349036399997,76.75177643400015],[-115.90558834499988,76.71279531500006],[-115.89281165299992,76.698431708],[-115.91161048099988,76.69489166900003],[-115.97813880099997,76.68968333500011],[-116.00023352799988,76.6828473980001],[-116.00951087099992,76.67792389500015],[-116.01252193899992,76.67450592700014],[-116.01447506399988,76.66705963700015],[-116.01634680899994,76.66425202],[-116.04971269399992,76.64329661700006],[-116.08315995999988,76.62946198100015],[-116.32481848899995,76.581732489],[-116.45132402299988,76.5795759140001],[-116.49714107999988,76.57021719000006],[-116.52000891799989,76.56806061400005],[-116.76207434799996,76.57314687700008],[-116.78408769399996,76.56903717700014],[-116.80459550699992,76.56122467700006],[-116.8301488919999,76.544582424],[-116.84483801999991,76.54026927300009],[-116.9597875639999,76.55573151200012],[-117.00792395699995,76.55215078300016],[-117.07477779899989,76.52606842699998],[-117.07762610599991,76.51959870000007],[-117.07152258999994,76.5065778670001],[-117.0578507149999,76.49469635600015],[-117.03990637899996,76.48916250200013],[-117.02057857999984,76.48533763200011],[-117.0025935539999,76.47870514500013],[-117.01008053299985,76.47186920800011],[-116.98643958199992,76.46238841400013],[-116.98949133999992,76.45075104400003],[-116.99852454299993,76.43683502800003],[-116.9930313789999,76.42035553600006],[-116.95620683499993,76.40180084800015],[-116.94188391799995,76.3898786480001],[-116.94798743399993,76.37689850500011],[-116.94391842399997,76.37164948100003],[-116.93846594999994,76.36115143400015],[-116.9343155589999,76.35578034100008],[-116.94920813699984,76.34609609600012],[-116.96825110599993,76.33978913],[-116.98839270699997,76.33633047100001],[-117.00633704299992,76.33527252800006],[-117.02627519399992,76.33185455900004],[-117.13634192599994,76.29022858300006],[-117.27696692599989,76.28001536700012],[-117.33055579299989,76.26178620000015],[-117.35244706899992,76.25958893400015],[-117.57140051999995,76.27163320500007],[-117.63963782499988,76.290920315],[-117.66051184799994,76.29433828300002],[-117.65127519399988,76.31679922100004],[-117.6762589179999,76.32660553600014],[-117.81859290299985,76.32514069200009],[-117.85802161399992,76.33047109600015],[-117.8802384109999,76.34902578300014],[-117.86656653599995,76.34902578300014],[-118.00698808499995,76.40249258000009],[-118.05842037699995,76.41038646000004],[-118.05337480399992,76.41571686400012],[-118.04678300699995,76.42108795800009],[-118.03107662699999,76.43085358300011],[-118.03677324099996,76.43414948100015],[-118.05158443899984,76.44513580900012],[-117.99010169199995,76.46564362200017],[-118.00951087099986,76.47846100500003],[-118.02000891799995,76.48305898600013],[-118.03107662699999,76.48615143400004],[-118.01012122299991,76.50503164300015],[-117.90758216099995,76.53335195500001],[-117.91795813699986,76.54531484600012],[-117.9553930329999,76.56806061400005],[-117.94273841099992,76.57221100500011],[-117.91881262899996,76.57689036700013],[-117.90758216099995,76.581732489],[-117.96129309799993,76.59210846600011],[-117.9764705069999,76.60219961100007],[-117.93736731699997,76.61969635600012],[-117.90074622299996,76.64321523600007],[-117.9085994129999,76.647894598],[-117.91808020699992,76.6561546900001],[-117.92564856699988,76.66657135600018],[-117.92808997299991,76.67792389500015],[-117.91856848899992,76.69334544499999],[-117.89940344999987,76.70050690300012],[-117.85948645699987,76.70868561400012],[-117.76423092399992,76.75706614800013],[-117.73623613199992,76.78034088700004],[-117.77301998599992,76.81098053600006],[-117.81851152299988,76.824693101],[-117.86579342399992,76.8233096370001],[-117.90758216099995,76.80829498900009],[-117.9566544259999,76.78188711100007],[-117.98102779899996,76.77326080900018],[-118.0106095039999,76.76727936400006],[-118.0470271479999,76.76430898600016],[-118.33983313699991,76.77130768400004],[-118.33788001199989,76.76512278900007],[-118.31777910099993,76.75556061400009],[-118.3054093089999,76.74310944200006],[-118.30724036399997,76.72113678600014],[-118.31427975199993,76.71149323100016],[-118.3286840489999,76.70994700700014],[-118.49665279899993,76.71889883000016],[-118.48892167899992,76.71198151200015],[-118.48053951699987,76.70612213700012],[-118.47154700399993,76.70148346600008],[-118.46247311099985,76.698431708],[-118.46617591099988,76.69513580900015],[-118.4725642569999,76.68732330900015],[-118.4761449859999,76.68414948100009],[-118.43297278599995,76.66913483300009],[-118.38597571499994,76.660834052],[-118.34821529899988,76.64459870000015],[-118.32599850199993,76.58978913000014],[-118.30211341099995,76.56769440300013],[-118.3054093089999,76.55499909100008],[-118.32778886599992,76.549750067],[-118.43517005099996,76.55499909100008],[-118.47984778599994,76.54523346600014],[-118.49038652299988,76.540716864],[-118.49522864499994,76.53440989800005],[-118.49449622299993,76.52887604400006],[-118.49518795499986,76.52265045800009],[-118.50405839799993,76.51406484600005],[-118.53490149599989,76.50381094000012],[-118.67300370999992,76.51068756700015],[-118.69351152299988,76.52049388200008],[-118.72996985599993,76.54413483300003],[-118.7559708319999,76.55198802299999],[-118.79287675699989,76.55768463700015],[-118.82921301999997,76.55939362200017],[-118.85350501199986,76.55499909100008],[-118.83755449099993,76.54686106999998],[-118.81769771999983,76.54035065300017],[-118.77774003799988,76.53335195500001],[-118.82526607999989,76.52826569200009],[-118.8886612619999,76.52977122600012],[-118.94627844999988,76.52285390800013],[-118.9764298169999,76.4923363300001],[-118.94277910099989,76.485785223],[-118.84044348899995,76.47870514500013],[-118.83185787699996,76.47435130400005],[-118.82481848899991,76.46759674700003],[-118.82022050699995,76.46149323100003],[-118.81871497299991,76.45880768400015],[-118.79865475199995,76.45612213700018],[-118.73338782499985,76.45880768400015],[-118.70445716099994,76.45563385600009],[-118.6743057929999,76.44660065300017],[-118.64639238199989,76.43244049700014],[-118.5970759759999,76.38784414300007],[-118.59483801999991,76.37636953300012],[-118.6139216789999,76.36945221600003],[-118.57135982999985,76.35162995000015],[-118.56895911399991,76.34520091400003],[-118.57994544199994,76.33600495000017],[-118.60509192599994,76.32119375200001],[-118.61729895699992,76.31142812700016],[-118.65160071499987,76.29108307500016],[-118.69277910099993,76.28449127800009],[-118.86046301999994,76.28481679900004],[-118.89972896999987,76.27509186400006],[-118.92857825399996,76.253363348],[-118.93691972599993,76.22968170800009],[-118.93163001199986,76.20612213700004],[-118.91445878799995,76.1889509140001],[-118.88760331899996,76.18447500200013],[-118.90103105399994,76.17226797100007],[-118.94444739499991,76.1712914080001],[-118.96336829299993,76.16400788000009],[-118.96743730399987,76.15200429900015],[-118.9617813789999,76.14301178600013],[-118.96353105399989,76.13572825700011],[-118.99006100199995,76.12921784100003],[-119.0369360019999,76.12897370000009],[-119.05866451699988,76.1264102230001],[-119.07945716099994,76.11562734600007],[-119.08039303299985,76.110785223],[-119.07852128799989,76.10358307500015],[-119.07542883999989,76.097398179],[-119.07262122299994,76.09568919499999],[-119.08385169199993,76.08958567900002],[-119.09532630099989,76.088324286],[-119.12059485599993,76.09373607000005],[-119.16071529899995,76.1076520850001],[-119.18097896999988,76.1120466170001],[-119.22199459499988,76.10944245000012],[-119.24486243399988,76.11318594000012],[-119.2672419909999,76.120306708],[-119.28551184799997,76.12921784100003],[-119.30256100199993,76.14931875200007],[-119.30333411399994,76.18744538000006],[-119.31749426999998,76.19989655200008],[-119.33405514199984,76.20734284100014],[-119.36359615799991,76.22589752800015],[-119.37954667899992,76.23358795800009],[-119.44249426999994,76.25079987200009],[-119.45958411399988,76.2633324240001],[-119.46849524599992,76.27875397300012],[-119.48082434799998,76.35516998900015],[-119.4863175119999,76.36107005400008],[-119.5005997389999,76.36322663000009],[-119.5226130849999,76.36163971600014],[-119.5285538399999,76.35691966400013],[-119.5291235019999,76.34910716400005],[-119.53502356699993,76.33836497600014],[-119.57591712099988,76.320746161],[-119.67145748599987,76.33885325700011],[-119.71686764199985,76.33527252800006],[-119.71686764199985,76.32843659100003],[-119.6976212229999,76.32843659100003],[-119.67756100199993,76.32440827000006],[-119.6617732409999,76.31460195500013],[-119.65542558499986,76.29743073100009],[-119.66038977799992,76.27773672100015],[-119.67324785099994,76.27090078300013],[-119.71068274599989,76.26703522300012],[-119.6963598299999,76.25702545800006],[-119.59715735599985,76.20246002800017],[-119.57730058499996,76.19619375200013],[-119.57433020699992,76.19147370000003],[-119.57217363199993,76.18585846600003],[-119.56916256399983,76.18109772300012],[-119.56460527299988,76.17182038000009],[-119.5723363919999,76.16705963700015],[-119.62002519399995,76.16176992400008],[-119.67528235599987,76.16596100500011],[-119.7032364569999,76.16400788000009],[-119.67577063699986,76.14134349200013],[-119.63418535099987,76.13426341400007],[-119.58946692599993,76.1319033870001],[-119.55239824099989,76.12299225500009],[-119.57770748599985,76.11196523600002],[-119.8056534499999,76.11562734600007],[-119.78685462099988,76.10578034100014],[-119.76183020699995,76.09967682500015],[-119.68415279899993,76.09357330900018],[-119.52334550699992,76.05255768400015],[-119.49168860599987,76.0368513040001],[-119.47728430899988,76.00633372600008],[-119.48595130099987,75.97492096600006],[-119.51113847599994,75.96723053600012],[-119.54332434799991,75.97402578300012],[-119.59532630099996,75.99437083500013],[-119.61571204299986,75.997992255],[-119.6353246739999,75.99555084800006],[-119.65542558499986,75.9858259140001],[-119.7032364569999,75.94428131700012],[-119.64867102799992,75.93773021000014],[-119.62100175699993,75.92963288000011],[-119.60700436099988,75.91693756700006],[-119.62633216099992,75.917141018],[-119.68203691299989,75.92377350500009],[-119.70201575399989,75.92177969000012],[-119.7136124339999,75.91640859600007],[-119.7373754549999,75.8998884140001],[-119.77574622299993,75.88312409100007],[-119.86294511599993,75.85911692900014],[-120.04434160099987,75.84267812700013],[-120.08063717399996,75.85553620000015],[-120.08543860599984,75.86347077000012],[-120.08971106699994,75.87470123900012],[-120.09699459499988,75.88467031500012],[-120.11070716099991,75.88898346600003],[-120.13003495999993,75.89252350500001],[-120.14561926999991,75.898138739],[-120.16087805899988,75.89834219000006],[-120.17931067599991,75.88593170800011],[-120.20274817599989,75.86546458500008],[-120.22972571499987,75.84760163],[-120.25967363199993,75.83274974200003],[-120.2923070949999,75.82135651200018],[-120.33486894399994,75.81199778900005],[-120.38744055899986,75.80670807500015],[-120.43879146999988,75.81053294499999],[-120.47785396999983,75.82880280200006],[-120.48900305899986,75.84707265800004],[-120.48542232999989,75.8636742210001],[-120.46353105399994,75.89647044499999],[-120.46104895699993,75.90672435100011],[-120.4615779289999,75.91559479400017],[-120.46060136599993,75.92430247600005],[-120.45368404899993,75.934027411],[-120.43724524599993,75.94456614800008],[-120.40078691299986,75.96108633000013],[-120.38849850199992,75.97223541900014],[-120.44163977799991,75.97866445500007],[-120.4498591789999,75.98212311400006],[-120.44692949099989,75.98908112200014],[-120.43569902299988,76.00018952000009],[-120.4356583319999,76.00633372600008],[-120.46031653599988,76.01544830900015],[-120.58023027299993,76.00633372600008],[-120.57530676999988,76.00356679900001],[-120.56517493399994,75.995794989],[-120.55972245999988,75.99266185100014],[-120.59618079299985,75.98688385600013],[-120.64045162699989,75.99213288000006],[-120.68374589799988,76.00617096600011],[-120.7174373039999,76.02680084800012],[-120.7324926419999,76.0550804710001],[-120.71377519399992,76.07440827000003],[-120.6491593089999,76.10252513200011],[-120.67223059799996,76.10565827000009],[-120.73448645699996,76.09373607000005],[-120.7515763009999,76.10252513200011],[-120.7451065749999,76.12368398600002],[-120.71662350199998,76.13349030200014],[-120.6832576159999,76.13812897300006],[-120.66222083199995,76.14350006700012],[-120.69163977799987,76.15981679900015],[-120.79454505099993,76.17584870000003],[-120.84715735599988,76.19814687700007],[-120.86497962099995,76.20099518400012],[-120.87995357999989,76.19863515800016],[-120.94701087099988,76.18040599199999],[-120.98875891799992,76.16400788000009],[-121.01121985599991,76.138861395],[-120.99795488199987,76.10252513200011],[-121.01353919199995,76.09760163000013],[-121.02131100199995,76.08710358300009],[-121.0242406889999,76.07412344000008],[-121.02529863199993,76.06159088700018],[-120.9865616529999,76.03237539300012],[-120.97069251199989,76.02374909100006],[-120.9636938139999,76.01325104400017],[-120.95881100199995,75.995794989],[-120.95225989499993,75.979437567],[-120.93993079299989,75.97223541900014],[-120.9390763009999,75.96784088700018],[-120.95348059799996,75.95819733300003],[-120.97398841099992,75.94863515800002],[-120.99111894399995,75.94428131700012],[-121.01414954299993,75.95038483300011],[-121.01732337099989,75.96405670800006],[-121.00572669199987,75.97825755400008],[-120.9843643869999,75.9858259140001],[-121.03429114499995,76.00356679900001],[-121.11778723899992,76.0001488300001],[-121.20319576699987,75.98452383000001],[-121.25869706899994,75.96539948100003],[-121.26984615799986,75.9526227890001],[-121.28384355399992,75.92088450700014],[-121.29967200399994,75.91079336100006],[-121.31069902299988,75.91266510600006],[-121.35509192599993,75.93244049700017],[-121.41771399599992,75.93781159100003],[-121.43683834499993,75.94428131700012],[-121.42959550699989,75.947007554],[-121.41633053299986,75.95795319200006],[-121.45124264199987,75.96588776200004],[-121.4684138659999,75.97304922100007],[-121.48151607999986,75.98212311400006],[-121.49486243399987,75.98761627800009],[-121.55288652299993,75.99266185100014],[-121.68504798099987,76.01862213700012],[-121.81989498599985,76.02968984600007],[-121.84707597599989,76.04523346600017],[-122.04637610599985,76.03363678600014],[-122.09870357999984,76.04096100500006],[-122.12547766799993,76.041205145],[-122.14997311099988,76.03363678600014],[-122.1446833979999,76.03229401200015],[-122.13442949099995,76.02806224200005],[-122.12889563699986,76.02680084800012],[-122.14517167899987,76.00726959800015],[-122.1490372389999,75.9971377620001],[-122.13914954299986,75.99266185100014],[-122.13272050699996,75.99127838700015],[-122.13084876199989,75.98777903900007],[-122.13223222599989,75.98309967700014],[-122.13573157499985,75.97842031500012],[-122.14533443899985,75.97626373900012],[-122.19098873599988,75.97842031500012],[-122.37531490799992,75.9374453800001],[-122.4258927069999,75.93280670800009],[-122.61888587099986,75.94196198100015],[-122.73155676999988,75.97842031500012],[-122.68748938699989,75.98065827],[-122.64167232999988,75.98847077],[-122.59797115799991,76.00336334800015],[-122.56029212099992,76.02680084800012],[-122.57778886599996,76.02558014500003],[-122.60948645699993,76.0156110700001],[-122.62572180899986,76.013128973],[-122.69806881399984,76.02065664300015],[-122.67467200399994,76.026556708],[-122.6018774079999,76.03363678600014],[-122.52611243399991,76.06159088700018],[-122.5335587229999,76.06777578300012],[-122.50397701699984,76.08417389500015],[-122.4829809239999,76.10236237200014],[-122.48371334499984,76.11701080900015],[-122.51903235599987,76.12299225500009],[-122.70490475199993,76.11562734600007],[-122.68602454299992,76.123724677],[-122.49258378799989,76.14350006700012],[-122.51170813699984,76.14948151200004],[-122.53262285099991,76.15106842700008],[-122.57453365799991,76.14972565300017],[-122.57530676999994,76.16766998900012],[-122.60582434799996,76.174261786],[-122.6701554029999,76.17767975500011],[-122.77009029899997,76.15363190300017],[-122.80386308499995,76.14972565300017],[-122.82835852799987,76.15428294500013],[-122.8377579419999,76.15208567900014],[-122.84142005099994,76.1397972680001],[-122.84780839799987,76.13300202000015],[-122.88988196499993,76.10871002800017],[-122.92540442599991,76.09707265800007],[-122.96373450399994,76.09100983300009],[-123.04067949099992,76.08828359600001],[-123.02501380099996,76.09369538000006],[-122.99339758999989,76.10016510600015],[-122.97923743399986,76.10871002800017],[-122.99917558499996,76.12051015800013],[-123.00649980399996,76.12299225500009],[-122.95860755099993,76.13202545800009],[-122.95128333199993,76.1397972680001],[-122.94717363199987,76.15127187700013],[-122.93700110599993,76.1569684920001],[-122.92369544199991,76.15843333500008],[-122.91030839799991,76.15717194200006],[-122.91722571499992,76.16502513200014],[-122.92536373599984,76.17121002800012],[-122.93447831899992,76.17548248900012],[-122.9444880849999,76.17767975500011],[-122.92467200399987,76.1889509140001],[-122.8921606109999,76.18317291900014],[-122.86172441299995,76.18235911700013],[-122.83165442599991,76.23729075700011],[-122.79246985599988,76.23826732],[-122.7469783189999,76.23016998900006],[-122.7110896479999,76.23163483300011],[-122.7254125639999,76.23163483300011],[-122.71157792899989,76.24689362200009],[-122.68879146999988,76.255072333],[-122.64126542899987,76.2650820980001],[-122.63438880099994,76.27260976800015],[-122.63524329299986,76.28375885600015],[-122.64122473899988,76.29450104400017],[-122.64964758999992,76.300523179],[-122.63434811099988,76.32689036699999],[-122.61725826699983,76.343207098],[-122.59398352799991,76.35382721600014],[-122.45140540299991,76.38182200700007],[-122.40322831899995,76.4042015650001],[-122.3806046209999,76.40851471600008],[-121.96324622299989,76.43732330900004],[-121.78140214799986,76.42519765800013],[-121.55357825399987,76.4369977890001],[-121.51187089799993,76.44822825700003],[-121.50523841099987,76.45359935100005],[-121.50300045499989,76.45970286700005],[-121.50348873599987,76.46442291900014],[-121.50511633999989,76.46564362200017],[-121.49889075399993,76.46963125200016],[-121.42369544199994,76.50043366100012],[-121.40884355399989,76.51406484600005],[-121.41356360599991,76.55426666900014],[-121.37002519399996,76.56972890800007],[-121.32217363199996,76.57782623900003],[-121.31395423099987,76.59601471600011],[-121.25422115799986,76.60952383000007],[-121.22801673099991,76.62116120000017],[-121.21711178299985,76.640082098],[-121.2139786449999,76.66205475500011],[-121.20425370999995,76.678208726],[-121.18732662699995,76.68817780200008],[-121.16270911399992,76.69159577000009],[-121.14663652299987,76.68968333500011],[-121.10700436099985,76.6729190120001],[-121.08934485599993,76.6707217470001],[-121.03897050699987,76.68414948100009],[-120.9195450509999,76.6954613300001],[-120.81411699099992,76.73371002800003],[-120.55190995999989,76.7594261740001],[-120.52399654899995,76.76837799700012],[-120.51203365799982,76.78375885600015],[-120.36799068899985,76.81452057500003],[-120.3730362619999,76.81777578300007],[-120.38255774599989,76.82566966400005],[-120.38849850199992,76.82876211100013],[-120.3834122389999,76.83197663],[-120.37368730399994,76.83954498900015],[-120.36799068899985,76.84235260600009],[-120.3843481109999,76.84560781500012],[-120.40046139199985,76.85154857000008],[-120.41563880099991,76.85968659100008],[-120.42943274599995,76.86908600500003],[-120.36974036399995,76.89276764500012],[-120.22809811099984,76.90265534100006],[-120.16877193899987,76.9317894550001],[-120.18150794199993,76.9343122420001],[-120.18854732999988,76.94049713700018],[-120.18736731699995,76.94794342700006],[-120.17536373599985,76.95404694200015],[-120.11351477799987,76.9658877620001],[-120.09361731699994,76.9658877620001],[-120.10423743399988,76.98944733300006],[-120.09113521999984,77.00560130400011],[-120.06541907499988,77.01577383000016],[-120.03840084499984,77.02057526200005],[-119.96629798099994,77.01593659100003],[-119.93081620999993,77.02008698100015],[-119.90868079299985,77.0410016950001],[-119.92235266799989,77.04726797100007],[-119.90086829299986,77.05219147300012],[-119.85435950399993,77.05483633000001],[-119.83665930899991,77.06525299700012],[-119.83311926999995,77.07672760600015],[-119.83299719999988,77.08885325700005],[-119.82697506399985,77.098578192],[-119.72374426999995,77.11615631700012],[-119.65070553299986,77.11644114800008],[-119.6280818349999,77.12360260600009],[-119.62706458199993,77.14252350500011],[-119.59927324099995,77.15184153900007],[-119.42520097599994,77.18056875200004],[-119.38731848899991,77.19253164300015],[-119.37267005099989,77.20416901200015],[-119.34142005099993,77.23908112200016],[-119.32957923099988,77.24648672100007],[-119.32396399599989,77.25128815300013],[-119.2897029289999,77.28880442900008],[-119.2681778639999,77.29633209800012],[-119.22964433499992,77.30487702000015],[-119.19562740799988,77.31757233300011],[-119.1627091139999,77.32489655200011],[-119.12905839799988,77.32827383000013],[-118.96629798099984,77.31964752800002],[-118.87677975199996,77.33685944200015],[-118.85973059799991,77.34267812700001],[-118.83315995999996,77.35781484600001],[-118.82054602799988,77.36102936400006],[-118.78294837099989,77.3543154970001],[-118.75983639199993,77.3543154970001],[-118.7002660799999,77.3643252620001],[-118.4395238924999,77.36229075700008],[-118.1787817049999,77.36025625200013],[-118.1022843089999,77.38035716399999],[-117.85236568899985,77.39044830900013],[-117.85236568899985,77.38361237200003],[-117.87979081899988,77.38336823100009],[-117.93455969999991,77.37140534100014],[-117.96222896999991,77.37002187700007],[-117.93492591099994,77.36139557500017],[-117.79918372299994,77.3720563820001],[-117.7847387359999,77.37002187700007],[-117.77330481699993,77.36444733300006],[-117.7535701159999,77.34808991100006],[-117.74372311099987,77.34267812700001],[-117.72935950399989,77.34039948100003],[-117.6817520819999,77.34267812700001],[-117.6636449859999,77.34088776200012],[-117.61339270699995,77.32904694200006],[-117.47435462099992,77.33588288000009],[-117.46930904899989,77.333197333],[-117.4619034499999,77.32001373900015],[-117.4550675119999,77.31537506700012],[-117.43757076699985,77.312933661],[-117.38060462099992,77.31537506700012],[-117.32005774599993,77.30630117400011],[-117.26178951699991,77.28925202000005],[-117.2311091789999,77.28571198100009],[-117.13361568899988,77.30170319200009],[-117.03921464799991,77.29279205900015],[-117.01008053299985,77.30170319200009],[-117.06566321499989,77.33364492400008],[-117.09727942599987,77.3434512390001],[-117.13988196499993,77.33641185100005],[-117.15819251199987,77.3366559920001],[-117.17438717399993,77.34056224200002],[-117.1813858709999,77.34886302300008],[-117.17373613199989,77.35968659100017],[-117.15587317599991,77.36383698100012],[-117.03331458199987,77.35293203300013],[-116.86021887899994,77.31826406500014],[-116.81309973899994,77.31659577000013],[-116.77733313699993,77.32904694200006],[-116.78693600199992,77.33120351800007],[-116.81086178299986,77.34267812700001],[-116.76984615799986,77.35521067900011],[-116.68252519399996,77.37059153900003],[-116.64696204299989,77.39044830900013],[-116.67650305899986,77.39740631700015],[-116.74632727799991,77.40082428600014],[-116.77733313699993,77.39728424700017],[-116.82652747299994,77.38349030200006],[-116.85191809799994,77.38401927300013],[-116.85240637899993,77.40412018400018],[-116.94322669199993,77.39744700700014],[-116.99400794199988,77.39956289300012],[-117.01626542899992,77.41469961100013],[-117.03457597599989,77.43138255400008],[-117.15404212099995,77.45872630400005],[-117.13341223899992,77.46816640800016],[-117.11009680899993,77.47459544499999],[-117.06468665299994,77.47988515800016],[-117.07152258999994,77.46621328300002],[-117.05532792899992,77.462347723],[-117.03844153599991,77.46308014500015],[-117.0034887359999,77.47077057500015],[-116.98119055899986,77.47304922100012],[-116.93569902299988,77.47138092700011],[-116.91364498599987,77.47431061400015],[-116.75682532499987,77.51337311399999],[-116.7740372389999,77.51968008000013],[-116.92813066299995,77.52765534100008],[-116.90074622299996,77.53636302299999],[-116.4067276679999,77.56240469000015],[-116.41234290299988,77.55923086100009],[-116.42723548099985,77.54816315300015],[-116.3384903639999,77.54071686400009],[-116.35387122299993,77.53058502800012],[-116.3596085279999,77.52765534100008],[-116.24693762899997,77.52704498900015],[-116.21568762899989,77.52216217700008],[-116.10024980399992,77.49066803600006],[-116.06411699099989,77.48672109600007],[-116.11091061099985,77.47809479400016],[-116.12559973899995,77.472398179]]],[[[-85.04893958199992,77.45872630400005],[-85.16222083199992,77.45872630400005],[-85.17894446499994,77.46417877800009],[-85.17027747299994,77.47675202000009],[-85.13829505099994,77.49970123900006],[-85.15485592399992,77.51251862200009],[-85.17642167899992,77.51675039300012],[-85.19945227799991,77.51845937700013],[-85.24437415299991,77.53245677299999],[-85.54238847599993,77.54071686400009],[-85.5252986319999,77.5483259140001],[-85.4672745429999,77.55491771],[-85.44981848899997,77.55951569200012],[-85.41478430899987,77.57269928600009],[-85.3797094389999,77.57758209800015],[-85.34268144399992,77.58698151200015],[-85.32331295499992,77.58909739799999],[-85.0183813139999,77.58348216399999],[-84.99087480399987,77.57200755400014],[-84.94627844999988,77.53522370000015],[-84.93285071499989,77.52765534100008],[-84.90318762899994,77.52147044500013],[-84.87311764199993,77.5202497420001],[-84.84365800699992,77.5158145200001],[-84.81623287699988,77.49970123900006],[-84.87047278599994,77.48273346600007],[-85.04893958199992,77.45872630400005]]],[[[-90.30410722599996,77.62938060100005],[-90.22769120999993,77.61151764500008],[-90.21719316299988,77.60639069200009],[-90.21296139199987,77.601996161],[-90.2097875639999,77.59747955900004],[-90.20250403599988,77.59251536699999],[-90.18472245999989,77.586859442],[-90.1453344389999,77.58331940300012],[-89.77574622299994,77.48639557500015],[-89.71593176999988,77.45872630400005],[-89.72394771999993,77.44379303599999],[-89.71947180899984,77.42470937700004],[-89.70807857999989,77.40550364800006],[-89.69481360599988,77.39044830900013],[-89.70352128799996,77.38947174700017],[-89.71239173099991,77.38597239799998],[-89.71768144399987,77.37958405200006],[-89.71593176999988,77.37002187700007],[-89.70421301999987,77.35956452],[-89.6898494129999,77.35797760600015],[-89.67491614499997,77.35895416900006],[-89.66128495999993,77.35635000200013],[-89.64452063699991,77.34341054900013],[-89.64500891799989,77.33307526200004],[-89.65713456899988,77.32416413],[-89.79088294199994,77.27069733300006],[-90.0939021479999,77.20408763200008],[-90.1651912099999,77.213039455],[-90.20091712099995,77.21124909100003],[-90.23607337099992,77.20547109600015],[-90.36253821499994,77.19891998900009],[-90.40501868399991,77.20319245000007],[-90.41820227799985,77.20892975500006],[-90.41710364499991,77.21381256700012],[-90.39476477799988,77.22410716400005],[-90.38752193899987,77.233384507],[-90.65599524649988,77.2702090515001],[-90.9244685539999,77.30703359600015],[-91.05508378799996,77.35293203300013],[-91.10220292899994,77.36249420800011],[-91.11701412699993,77.372503973],[-91.13219153599994,77.38544342700011],[-91.17951412699998,77.3941917990001],[-91.19961503799993,77.40786367400004],[-91.20205644399996,77.419663804],[-91.1936742829999,77.43235911700003],[-91.18040930899987,77.44403717700006],[-91.16832434799997,77.45254140800007],[-91.19517981699994,77.50897858300011],[-91.20929928299998,77.52020905200011],[-91.19701087099992,77.53310781500012],[-91.1902563139999,77.53750234600004],[-91.18199622299991,77.54071686400009],[-91.18659420499992,77.55125560100014],[-91.20929928299998,77.57538483300006],[-91.20067298099988,77.58022695500013],[-91.19286048099988,77.58852773600002],[-91.18639075399997,77.59882233300011],[-91.18199622299991,77.60956452000015],[-91.16869055899988,77.6174990910001],[-91.12051347599991,77.62323639500009],[-91.09162350199992,77.61684804900015],[-91.05532792899989,77.62156810100008],[-90.95547441299993,77.65131256700009],[-90.88170325399989,77.65770091400009],[-90.59290523999994,77.64354075750013],[-90.30410722599996,77.62938060100005]]],[[[-105.0158585279999,77.41461823100013],[-105.00064042899993,77.41160716400005],[-104.79234778599994,77.42202383000013],[-104.74852454299987,77.41766998900013],[-104.72972571499993,77.39386627800015],[-104.7039281889999,77.3827578800001],[-104.54328365799988,77.34430573100003],[-104.50495357999995,77.32632070500009],[-104.48957271999991,77.32160065300017],[-104.43716386599993,77.31488678600013],[-104.42125403599992,77.30792877800015],[-104.4365128249999,77.30410390800013],[-104.45148678299992,77.3019880230001],[-104.46507727799988,77.297837632],[-104.47647050699993,77.28742096600008],[-104.44566809799996,77.27802155200008],[-104.41909745999992,77.27741120000012],[-104.39720618399988,77.27326080900015],[-104.38027910099989,77.25332265800007],[-104.37108313699993,77.23476797100007],[-104.37385006399988,77.23151276200004],[-104.3945206369999,77.19253164300015],[-104.45002193899987,77.1517601580001],[-104.51357988199995,77.14069245000015],[-104.6478165359999,77.13727448100003],[-104.7540177069999,77.11123281500006],[-104.79116777299991,77.10993073100015],[-104.8257950509999,77.11566803600014],[-104.85619055899987,77.12616608300011],[-104.91535396999987,77.15399811400006],[-104.95807857999998,77.167710679],[-105.00576738199995,77.17495351800012],[-105.09968014199991,77.17816803600009],[-105.1831762359999,77.16600169499999],[-105.22459876199989,77.16449616100014],[-105.26414954299985,77.17816803600009],[-105.25031490799986,77.19891998900009],[-105.2436417309999,77.20551178600014],[-105.27806555899993,77.21503327000015],[-105.35777747299987,77.21185944200009],[-105.39513098899992,77.21918366100009],[-105.39513098899992,77.226019598],[-105.37743079299993,77.21954987200007],[-105.35627193899984,77.21723053600014],[-105.33551998599982,77.21922435100008],[-105.31875566299992,77.226019598],[-105.35212154899989,77.24567291900014],[-105.39077714799994,77.2589378930001],[-105.4695938789999,77.27440013200011],[-105.45604407499984,77.28021881700006],[-105.44050045499993,77.28180573100008],[-105.40819251199991,77.28058502800017],[-105.40819251199991,77.28742096600008],[-105.49046790299988,77.2948265650001],[-105.53628495999988,77.30442942900005],[-105.56578528599992,77.32160065300017],[-105.57184811099985,77.3319359400001],[-105.57225501199986,77.3392601580001],[-105.56578528599992,77.35635000200013],[-105.55003821499989,77.3659528670001],[-105.54405676999997,77.37083567899998],[-105.55150305899986,77.37002187700007],[-105.57135982999995,77.38080475500009],[-105.60138912699989,77.38446686400012],[-105.66136633999992,77.38361237200003],[-105.65615800699993,77.39252350500009],[-105.6488337879999,77.39769114800006],[-105.62783769399988,77.40412018400018],[-105.64134680899987,77.41103750200008],[-105.68932044199995,77.425238348],[-105.65973873599991,77.44098541900014],[-105.68106035099987,77.45307038000006],[-105.76504472599991,77.46621328300002],[-105.75548255099994,77.47955963700004],[-105.74132239499993,77.48541901200014],[-105.72520911399995,77.48847077000006],[-105.7098282539999,77.4934756530001],[-105.68862870999992,77.50714752800006],[-105.68163001199993,77.51618073100015],[-105.69273841099997,77.52020905200011],[-105.71324622299991,77.52244700700003],[-105.75641842399993,77.53221263200014],[-105.84203040299991,77.54157135600016],[-105.8606664699999,77.54816315300015],[-105.82656816299989,77.56024811400006],[-105.82103430899988,77.56793854400017],[-105.83950761599989,77.57538483300006],[-105.82624264199987,77.59568919500003],[-105.8442276679999,77.62026601800007],[-105.87572180899991,77.64252350500011],[-105.90314693899988,77.65607330900018],[-106.05016028599995,77.69497304900005],[-106.0896703769999,77.71637604400003],[-106.09365800699987,77.72964101800014],[-106.07721920499989,77.73859284100008],[-105.90876217399996,77.76788971600011],[-105.64834550699993,77.75421784100017],[-105.60265051999991,77.73965078300013],[-105.50304114499995,77.72109609600012],[-105.24956214099993,77.62909577050009],[-104.99608313699987,77.5370954450001],[-104.9662166009999,77.51679108300011],[-104.95201575399989,77.48700592700003],[-104.9765518869999,77.47207265800016],[-105.00621497299994,77.46084219000005],[-105.00747636599995,77.44196198100003],[-105.00690670499996,77.43203359600012],[-105.01378333199989,77.42210521000011],[-105.0158585279999,77.41461823100013]]],[[[-95.40322831899991,77.78148021000005],[-95.41258704299993,77.75942617400015],[-95.40151933499989,77.74681224199999],[-95.37946529899992,77.74127838700014],[-95.35545813699986,77.73993561400005],[-95.3341365229999,77.74750397300011],[-95.31427975199989,77.76162344000015],[-95.29356848899988,77.769232489],[-95.24095618399986,77.74591705900018],[-95.19961503799993,77.74591705900018],[-95.08535722599986,77.75861237200014],[-94.98493404899992,77.787746486],[-94.94835364499997,77.79144928600014],[-94.6516210604999,77.7827619485001],[-94.35488847599993,77.77407461100007],[-94.36856035099994,77.76044342700011],[-94.30028235599985,77.76044342700011],[-94.31021074099996,77.77090078300002],[-94.31395423099988,77.77407461100007],[-94.1773982409999,77.76044342700011],[-94.13923092399992,77.76072825700004],[-94.06297766799989,77.77338288000011],[-94.02599036399994,77.76410553600009],[-94.00885982999989,77.75731028900005],[-93.97337805899991,77.74933502800009],[-93.9400121739999,77.73725006699999],[-93.92955481699994,77.73916250200016],[-93.92113196499989,77.74396393400004],[-93.90957597599987,77.746771552],[-93.84797115799992,77.73749420800014],[-93.8273005849999,77.73993561400005],[-93.81700598899991,77.74628327],[-93.80752519399987,77.75568268400004],[-93.7958064439999,77.76410553600009],[-93.77887936099992,77.76788971600011],[-93.60802161399997,77.78148021000005],[-93.56908118399988,77.77757396000005],[-93.45738684799991,77.75421784100017],[-93.42292232999988,77.75739166900003],[-93.40697180899988,77.75714752800009],[-93.3688044909999,77.742865302],[-93.34854081899991,77.73993561400005],[-93.27017167899993,77.73851146],[-93.23827063699991,77.733343817],[-93.20791581899994,77.72296784100007],[-93.17625891799987,77.70579661700008],[-93.16038977799985,77.69281647300006],[-93.10114498599985,77.6642113300001],[-93.21174068899987,77.64411041900014],[-93.25202389199984,77.64435455900009],[-93.33617102799988,77.64472077],[-93.37466386599996,77.633978583],[-93.40900631399992,77.60956452000015],[-93.39989173099991,77.60651276200007],[-93.3909399079999,77.60187409100003],[-93.38243567599997,77.59601471600017],[-93.37486731699991,77.58909739799999],[-93.47789466099997,77.55866120000002],[-93.48131262899996,77.55198802300008],[-93.48790442599994,77.54804108300007],[-93.49201412699992,77.54413483300009],[-93.48184160099996,77.52777741100006],[-93.48477128799988,77.51976146000011],[-93.49372311099992,77.51300690300009],[-93.5058487619999,77.50714752800006],[-93.47842363199996,77.48810455900015],[-93.50153561099988,77.46405670800011],[-93.54552161399991,77.44481028900007],[-93.58096269399991,77.44017161700003],[-93.64557857999995,77.45282623900012],[-93.67747962099989,77.45282623900012],[-93.71043860599985,77.44749583500005],[-93.74156653599994,77.44578685100005],[-93.80882727799988,77.45758698100012],[-93.84097245999993,77.45872630400005],[-93.82518469999991,77.45254140800007],[-93.78400631399984,77.44562409100008],[-93.76593990799992,77.44574616100006],[-93.78453528599991,77.43773021000011],[-93.80768795499995,77.43870677299999],[-93.85407467399992,77.44574616100006],[-93.95767167899993,77.43829987200017],[-93.95612545499989,77.44208405199998],[-93.95518958199992,77.44525788000006],[-93.95376542899993,77.44855377800009],[-93.95083574099993,77.45254140800007],[-93.97557532499991,77.4598656270001],[-94.00479081899994,77.46137116100014],[-94.08849036399997,77.45050690300015],[-94.22769120999996,77.45746491100014],[-94.33079993399988,77.477484442],[-94.74500484924984,77.47788117050011],[-95.15920976449993,77.47827789900013],[-95.5734146797499,77.47867462750004],[-95.98761959499987,77.47907135600003],[-96.07640540299991,77.49811432500002],[-96.09040279899997,77.50421784100001],[-96.12267005099991,77.52765534100008],[-96.30247962099989,77.59332916900009],[-96.32872473899991,77.60956452000015],[-96.30772864499987,77.61078522300006],[-96.28477942599989,77.61554596600013],[-96.27505449099993,77.62238190300017],[-96.29393469999988,77.630072333],[-96.2860408189999,77.63776276200012],[-96.28246008999992,77.64350006700009],[-96.28302975199989,77.6495628930001],[-96.2877498039999,77.65802643400004],[-96.25739498599984,77.65745677300005],[-96.25328528599987,77.66644928600009],[-96.2595922519999,77.67963288000011],[-96.26040605399993,77.69147370000007],[-96.23546301999991,77.70551178600014],[-96.12950598899994,77.71328359600012],[-96.0401505199999,77.73688385600018],[-95.97834225199992,77.74274323100012],[-95.89671790299991,77.76044342700011],[-95.72354081899987,77.77163320500013],[-95.69151770699989,77.77952708500011],[-95.67516028599995,77.78025950700014],[-95.6414281889999,77.77366771000005],[-95.62409420499989,77.77594635600003],[-95.5064998039999,77.81073639500009],[-95.44416256399984,77.81126536700008],[-95.40322831899991,77.78148021000005]]],[[[-77.7638240229999,77.795152085],[-77.8526098299999,77.77924225500009],[-77.88121497299991,77.78461334800012],[-77.92031816299996,77.80829498900015],[-77.95628821499994,77.83612702],[-77.88927161399994,77.85285065300003],[-77.65050208199992,77.87091705900015],[-77.59520423099991,77.86367422100012],[-77.57274329299992,77.85663483300006],[-77.5870662099999,77.84495677300008],[-77.59325110599985,77.84235260600013],[-77.59325110599985,77.83612702],[-77.58128821499992,77.82611725500011],[-77.59658769399988,77.81659577000012],[-77.67178300699987,77.79661692900005],[-77.7638240229999,77.795152085]]],[[[-100.93199622299991,77.74453359600001],[-100.96068274599988,77.72850169500009],[-100.98672441299995,77.72638580900009],[-101.04259192599991,77.73086172100007],[-101.14757239499993,77.71979401200004],[-101.34166419199991,77.73012929900013],[-101.39891516799986,77.72138092700006],[-101.44635982999998,77.72052643400015],[-101.50279700399992,77.72898997600011],[-101.55797278599995,77.73069896000011],[-101.62096106699995,77.70087311400003],[-101.79059811099991,77.67938873900009],[-102.17634029899993,77.69513580900004],[-102.29043535099993,77.71942780200011],[-102.44871985599991,77.73309967700006],[-102.44871985599991,77.73993561400005],[-102.43614661399991,77.73916250200016],[-102.42564856699994,77.74241771],[-102.41783606699994,77.74949778900007],[-102.4133194649999,77.76044342700011],[-102.43708248599991,77.76243724200008],[-102.46890214799993,77.77057526200018],[-102.4988907539999,77.78237539300015],[-102.51699785099991,77.795152085],[-102.49913489499994,77.80927155200011],[-102.50080318899987,77.819322007],[-102.53062903599995,77.83612702],[-102.49518795499995,77.86473216399999],[-102.44847571499986,77.88129303600006],[-102.3981827459999,77.888861395],[-102.10179602749994,77.89213694850008],[-101.80540930899988,77.8954125020001],[-101.72520911399992,77.90648021000011],[-101.6981095039999,77.90521881700012],[-101.64517167899987,77.89032623900006],[-101.21434485599988,77.84072500200013],[-100.95815995999995,77.76032135600015],[-100.93199622299991,77.74453359600001]]],[[[-114.31688391799992,78.01422760600009],[-114.2578018869999,77.98944733300011],[-114.11461341099994,78.00043366100009],[-114.06362870999993,77.9726423200001],[-114.0698949859999,77.9726423200001],[-113.98741614499988,77.93744538000006],[-113.97427324099992,77.92829010600018],[-113.95132402299993,77.91885000200007],[-113.73729407499987,77.90167877800002],[-113.70152747299994,77.89036692900005],[-113.68626868399988,77.86660390800016],[-113.6714981759999,77.84593333500014],[-113.60094153599992,77.83242422100007],[-113.57701575399996,77.81500885600009],[-113.60423743399987,77.81085846600014],[-113.72248287699989,77.769232489],[-114.16258704299993,77.70673248900005],[-114.30068925699989,77.71328359600012],[-114.47960364499997,77.75141022300004],[-114.6213272779999,77.75682200700005],[-114.65269934799991,77.76788971600011],[-114.62287350199992,77.77411530200006],[-114.51610266799993,77.76044342700011],[-114.53799394399996,77.78302643400009],[-114.5819392569999,77.79645416900009],[-114.6669815749999,77.80817291900017],[-114.79824785099991,77.85032786700013],[-114.85781816299995,77.85980866100012],[-115.11823482999989,77.95966217700011],[-115.0970759759999,77.96613190300003],[-115.06932532499991,77.96893952000006],[-115.04067949099993,77.96824778900013],[-114.99071204299989,77.95799388200011],[-114.96833248599987,77.956773179],[-114.94762122299997,77.95966217700011],[-114.89891516799993,77.973578192],[-114.79507402299986,77.98285553600006],[-114.76732337099988,77.99005768400018],[-114.74111894399995,77.99994538],[-114.67967688699989,78.03449127800008],[-114.50186113199993,78.04840729400007],[-114.38882402299987,78.07660553600006],[-114.32725989499991,78.08079661699999],[-114.28278561099992,78.06207916900003],[-114.29385331899996,78.05231354400017],[-114.35098222599993,78.03473541900014],[-114.33193925699995,78.02741120000006],[-114.26911373599988,78.01422760600009],[-114.31688391799992,78.01422760600009]]],[[[-109.60366777299988,78.07391998900009],[-109.58153235599991,78.05410390800016],[-109.60155188699987,78.03204987200017],[-109.66051184799993,77.99689362200012],[-109.67625891799987,77.97699616100003],[-109.6861466139999,77.97138092700011],[-109.78685462099989,77.94977448100012],[-110.0036921869999,77.93138255400008],[-110.12393144399988,77.9212100280001],[-110.22476152299994,77.89801666900009],[-110.53311113199987,77.88391754800016],[-110.84146074099992,77.8698184270001],[-110.90371660099993,77.85321686400006],[-110.88036048099993,77.82123444200006],[-110.77749589799993,77.80365631700012],[-110.75413977799992,77.78461334800012],[-110.71996008999994,77.76618073100009],[-110.40827389199988,77.77338288000011],[-110.34463456899991,77.78485748900009],[-110.1295059889999,77.78148021000005],[-110.10789954299989,77.77619049700017],[-110.08824622299994,77.76447174700009],[-110.08079993399987,77.75250885600015],[-110.09557044199994,77.746771552],[-110.0908910799999,77.73696523600016],[-110.08820553299984,77.73309967700006],[-110.11192786399995,77.70766836100013],[-110.11607825399989,77.70579661700008],[-110.11070716099994,77.69245026200015],[-110.09801184799987,77.68333567900008],[-110.06826738199996,77.671616929],[-110.07184811099984,77.66844310100011],[-110.07823645699993,77.66111888200011],[-110.08189856699991,77.65802643400004],[-110.07249915299988,77.65200429900004],[-110.06240800699992,77.64765045800011],[-110.05190995999993,77.64516836100009],[-110.04100501199987,77.64435455900009],[-110.0558975899999,77.63202545800014],[-110.07823645699993,77.62482330900012],[-110.12352454299987,77.61701080900012],[-110.14818274599986,77.60936107],[-110.16368567599989,77.60016510600012],[-110.16079667899993,77.59235260600003],[-110.10777747299991,77.58746979400014],[-110.09215247299993,77.58197663000011],[-110.08682206899995,77.57147858300006],[-110.09557044199994,77.55491771],[-110.11388098899991,77.5427106790001],[-110.1623429029999,77.53180573100003],[-110.23542232999998,77.50421784100001],[-110.57262122299993,77.45530833500014],[-110.7093806629999,77.45282623900012],[-110.74718176999994,77.44501373900012],[-110.7880753249999,77.44574616100006],[-110.79898027299994,77.4433047550001],[-110.8286026679999,77.425238348],[-110.88072669199994,77.41242096600017],[-111.19322669199993,77.42108795800006],[-111.25096594999987,77.43268463700018],[-111.28111731699988,77.43146393400015],[-111.40123450399989,77.40350983300011],[-111.88385982999989,77.35317617400005],[-111.99083411399994,77.329291083],[-112.10924231699994,77.32575104400001],[-112.46930904899989,77.37059153900003],[-112.4939672519999,77.38027578300002],[-112.50633704299993,77.38800690300012],[-112.53490149599993,77.41160716400005],[-112.60057532499992,77.45368073100012],[-112.6374405589999,77.46405670800011],[-112.67906653599995,77.460679429],[-112.72858639199991,77.4511172550001],[-112.77782141799992,77.44843170800011],[-112.92760169199994,77.46478913000014],[-112.95498613199992,77.47101471600011],[-112.96690833199995,77.48330312700016],[-112.97427324099995,77.50189850500006],[-112.99233964799987,77.51105377800003],[-113.03506425699989,77.51845937700013],[-113.16588294199991,77.515082098],[-113.1996150379999,77.52765534100008],[-113.20840410099996,77.54368724199999],[-113.21178137899997,77.56159088700002],[-113.2194718089999,77.5760765650001],[-113.24128170499986,77.58226146000004],[-113.21613521999988,77.60040924700013],[-113.1235245429999,77.61440664300012],[-113.0897517569999,77.62323639500009],[-113.10997473899992,77.63206614800013],[-113.17918860599993,77.65058014500013],[-113.1723526679999,77.65058014500013],[-113.19029700399994,77.65843333500014],[-113.23371334499991,77.66400788000014],[-113.25426184799994,77.671616929],[-113.23814856699988,77.67450592700011],[-113.21922766799985,77.68203359600007],[-113.20677649599992,77.69379303600014],[-113.21019446499994,77.70954010600008],[-113.23086503799996,77.72304922100007],[-113.23379472599989,77.72687409100008],[-113.22667395699993,77.73444245000006],[-113.21275794199994,77.73834870000003],[-113.18602454299995,77.73993561400005],[-113.26781165299991,77.75983307500015],[-113.30557206899988,77.77684153900013],[-113.32315019399991,77.80817291900017],[-113.31212317599996,77.83877187700008],[-113.2821345689999,77.86237213700004],[-113.21328691299993,77.89077383000016],[-113.24128170499986,77.90497467700008],[-113.14110266799993,77.92251211100002],[-113.0851130849999,77.92267487200017],[-113.04539954299987,77.90814850500014],[-113.02855383999987,77.89935944200009],[-113.00609290299988,77.89614492400004],[-112.98151607999996,77.8976097680001],[-112.95824133999986,77.9030622420001],[-112.94570878799995,77.91107819200006],[-112.9365128249999,77.9212914080001],[-112.92491614499997,77.92959219000008],[-112.90542558499989,77.93170807500009],[-112.91169186099984,77.93170807500009],[-112.59129798099988,77.97351715700002],[-112.27090410099993,78.01532623900015],[-112.22459876199994,78.00922272300015],[-112.1690567699999,78.00787995000015],[-112.05630449099989,78.02407461100002],[-111.95055091099995,78.02130768400015],[-111.8241267569999,78.052639065],[-111.79914303299991,78.05174388200011],[-111.78819739499993,78.03815338700015],[-111.7748917309999,78.02952708500005],[-111.74453691299993,78.02741120000006],[-111.71165930899994,78.02924225500011],[-111.6906632149999,78.03278229400009],[-111.63947506399984,78.04816315300003],[-111.52717037699992,78.06708405200006],[-111.39195716099994,78.07196686400012],[-111.2780655589999,78.09003327000015],[-111.20653235599994,78.082464911],[-111.00763912699996,78.09686920800006],[-111.00137285099993,78.09516022300006],[-111.00031490799988,78.09080638200008],[-111.00011145699992,78.08515045800009],[-110.99681555899988,78.07916901200015],[-110.9798884759999,78.07322825700014],[-110.86050370999992,78.06875234600007],[-110.82290605399993,78.07416413000011],[-110.71174068899985,78.10382721600013],[-110.35771643799988,78.10156891499999],[-110.0036921869999,78.099310614],[-109.69717363199995,78.09735748900006],[-109.60366777299988,78.07391998900009]]],[[[-103.0472305979999,78.12702057500007],[-103.0865372389999,78.12238190300015],[-103.23424231699993,78.12807851800015],[-103.26911373599985,78.13922760600015],[-103.28416907499987,78.16136302300005],[-103.27285722599989,78.17942942900004],[-103.2468155589999,78.19529857],[-103.06505286399988,78.26129791900011],[-103.02424068899992,78.26984284100006],[-102.90054277299994,78.274359442],[-102.83446204299993,78.26609935100011],[-102.79918372299989,78.25665924700009],[-102.78384355399994,78.23704661700013],[-102.78209387899996,78.22728099199999],[-102.77912350199995,78.22077057500007],[-102.7784724599999,78.21478913000007],[-102.78384355399994,78.20673248900015],[-102.79918372299989,78.20014069200006],[-102.86949622299993,78.18903229400006],[-103.0472305979999,78.12702057500007]]],[[[-88.0574438139999,78.45246002800017],[-88.04674231699995,78.42324453300013],[-88.08039303299998,78.39956289300004],[-88.16047115799995,78.36371491100012],[-88.15221106699997,78.34003327],[-88.16486568899984,78.31683991100006],[-88.18724524599986,78.29657623900015],[-88.20832271999987,78.28180573100015],[-88.24620520699992,78.260931708],[-88.28880774599993,78.24677155200008],[-88.33385169199994,78.24103424700012],[-88.37913977799985,78.24542877800009],[-88.40558834499993,78.25897858300006],[-88.41144771999987,78.27936432500003],[-88.40127519399994,78.30109284100011],[-88.37954667899996,78.31903717700004],[-88.33812415299994,78.33722565300006],[-88.29434160099987,78.34894440300003],[-88.20140540299987,78.356878973],[-88.20612545499998,78.36391836100016],[-88.21304277299988,78.36782461100015],[-88.22191321499994,78.36953359600005],[-88.23216712099986,78.36994049700017],[-88.24742591099994,78.37262604400014],[-88.2466934889999,78.37885163000011],[-88.23497473899991,78.39105866100009],[-88.23542232999992,78.40497467700006],[-88.23444576699984,78.41592031500012],[-88.23045813699986,78.42475006700009],[-88.22191321499994,78.43260325700008],[-88.20791581899996,78.43838125200013],[-88.19200598899994,78.43992747600008],[-88.16026770699989,78.43886953300002],[-88.14976966099992,78.44098541900003],[-88.13097083199997,78.45038483300006],[-88.0881241529999,78.45799388199998],[-88.07140051999997,78.45872630400011],[-88.0574438139999,78.45246002800017]]],[[[-110.39720618399993,78.75348541900011],[-110.36632239499988,78.74412669499999],[-110.23766028599995,78.72785065300006],[-110.13658606699995,78.69891998900015],[-110.03026282499987,78.69253164300004],[-110.0036921869999,78.68691640800002],[-109.96043860599991,78.67780182500003],[-109.88727779899995,78.67593008000016],[-109.85602779899997,78.6653506530001],[-109.85802161399992,78.64679596600011],[-109.84015865799985,78.63629791900003],[-109.81379146999986,78.63165924700012],[-109.75938880099994,78.62824127800009],[-109.66356360599993,78.60394928600012],[-109.6710098949999,78.597113348],[-109.63345292899989,78.58681875200007],[-109.50450598899992,78.58958567900014],[-109.49315344999985,78.58649323100013],[-109.47935950399993,78.57233307500003],[-109.46540279899997,78.56915924700017],[-109.44611568899985,78.56793854400014],[-109.40689042899992,78.55902741100012],[-109.34666907499985,78.53534577],[-109.3352758449999,78.52822500200013],[-109.3291723299999,78.51699453300013],[-109.33210201699983,78.50910065300013],[-109.33275305899988,78.50267161700005],[-109.31965084499991,78.49579498900013],[-109.3028865229999,78.49457428600012],[-109.28307044199987,78.495550848],[-109.26646887899992,78.49359772300015],[-109.25951087099993,78.4835472680001],[-109.26593990799985,78.476996161],[-109.27651933499988,78.47134023600002],[-109.27871660099989,78.46572500200001],[-109.25951087099993,78.45929596600008],[-109.31745357999992,78.44196198100009],[-109.3343399729999,78.42837148600013],[-109.31411699099989,78.4108747420001],[-109.34618079299987,78.3969587260001],[-109.35570227799985,78.39105866100009],[-109.32510331899995,78.37384674700017],[-109.33893795499995,78.354681708],[-109.40416419199995,78.322739976],[-109.4078263009999,78.31785716400013],[-109.40632076699985,78.3132184920001],[-109.4086807929999,78.30988190300016],[-109.42393958199997,78.3084984400001],[-109.50792395699993,78.31647370000015],[-109.82323157499988,78.29539622600011],[-109.8719376289999,78.302435614],[-109.96043860599991,78.32908763200011],[-110.0036921869999,78.32900625200013],[-110.01305091099992,78.32900625200013],[-110.33242753799993,78.28595612200012],[-110.58637447799987,78.30056386949998],[-110.8403214179999,78.31517161700005],[-110.8627823559999,78.322739976],[-110.86290442599994,78.33905670800011],[-110.8882950509999,78.34552643400012],[-110.94591223899994,78.35004303600009],[-111.0261124339999,78.37490469000012],[-111.15461178299986,78.39052969],[-111.21841386599989,78.381537177],[-111.28892981699997,78.37982819200009],[-111.31525631399988,78.36994049700017],[-111.29938717399995,78.35887278900013],[-111.27904212099988,78.34829336100006],[-111.25804602799992,78.34007396],[-111.24010169199997,78.33637116100014],[-111.27867591099994,78.32184479400011],[-111.41148841099991,78.32982005400005],[-111.43195553299988,78.3084984400001],[-111.4258520169999,78.30280182500012],[-111.40831458199995,78.30011627800003],[-111.40461178299991,78.29197825700011],[-111.40929114499993,78.28180573100015],[-111.4205623039999,78.2765160180001],[-111.4339900379999,78.27460358300014],[-111.77847245999989,78.27020905200006],[-111.8362930979999,78.28522370000017],[-111.87075761599992,78.30223216400005],[-111.87755286399994,78.30882396000011],[-111.89061438699993,78.32900625200013],[-111.91246497299996,78.33584219000006],[-111.97044837099986,78.34593333500011],[-111.98005123599984,78.35004303600009],[-112.02867591099988,78.35187409100013],[-112.1755264959999,78.37738678600014],[-112.46560624899996,78.35187409050009],[-112.75568600199993,78.32636139500006],[-112.7774552069999,78.319281317],[-112.7860408189999,78.30866120000015],[-112.7682999339999,78.29539622600011],[-112.80443274599993,78.30780670800006],[-112.8396703769999,78.30646393400015],[-113.06151282499987,78.274359442],[-113.18517005099994,78.27358633000007],[-113.24828040299994,78.28497955900004],[-113.29527747299996,78.315334377],[-113.28221594999988,78.322739976],[-113.3361710279999,78.33637116100014],[-113.2207738919999,78.36371491100012],[-113.22301184799989,78.37466054900007],[-113.22248287699989,78.38434479400004],[-113.22435462099988,78.39240143400018],[-113.23379472599989,78.39850495000015],[-113.21422278599992,78.40656159100007],[-113.14981035099993,78.40989817900011],[-113.1335343089999,78.41453685100005],[-113.10179602799994,78.42767975500011],[-112.7808731759999,78.47313060099998],[-112.68203691299988,78.49827708500008],[-112.49274654899997,78.51203034100008],[-112.35460364499995,78.54002513200011],[-112.15005449099989,78.55703359600007],[-112.0355118479999,78.55174388199998],[-111.92674719999988,78.56069570500013],[-111.81602942599989,78.54889557500015],[-111.42015540299991,78.60663483299999],[-111.37669837099988,78.62376536700012],[-111.43814042899994,78.644232489],[-111.31436113199989,78.64842357000013],[-111.29474850199993,78.66168854400014],[-111.27562415299987,78.67023346600017],[-111.1644180979999,78.69891998900015],[-111.13170325399996,78.69159577000012],[-110.97964433499995,78.72003815300015],[-110.84406490799984,78.73061758000001],[-110.79442298099991,78.74428945500011],[-110.76012122299994,78.74957916900011],[-110.74095618399988,78.75796133000007],[-110.73302161399991,78.75726959800011],[-110.72411048099988,78.75405508000007],[-110.71467037699996,78.753078518],[-110.42690995999995,78.76634349200013],[-110.39720618399993,78.75348541900011]]],[[[-74.24022376199991,78.69000885600009],[-74.33112545499989,78.678412177],[-74.69229081899991,78.72166575700008],[-74.70360266799989,78.72687409100017],[-74.70518958199992,78.7354190120001],[-74.69465084499987,78.74725983300006],[-74.68781490799995,78.74957916900011],[-74.66820227799988,78.75128815300012],[-74.66047115799998,78.75348541900011],[-74.65404212099986,78.75922272300008],[-74.64712480399996,78.77244700700011],[-74.64305579299992,78.77830638200008],[-74.62718665299987,78.78400299700014],[-74.55809485599988,78.78143952000015],[-74.51203365799992,78.77098216400007],[-74.3155818349999,78.75629303600006],[-74.16706295499995,78.72679271],[-74.19269771999993,78.70502350500011],[-74.24022376199991,78.69000885600009]]],[[[-96.89419511599996,78.70294830900008],[-96.70494544199993,78.68626536700008],[-96.59776770699993,78.69403717700008],[-96.54308020699992,78.68561432500012],[-96.34040279899992,78.62555573100012],[-96.31387285099996,78.62075429900013],[-96.28937740799992,78.62205638200011],[-96.23936926999991,78.63060130400005],[-96.21963456899996,78.630764065],[-96.1642146479999,78.62376536700012],[-96.15729732999989,78.619574286],[-96.16673743399991,78.61041901200012],[-96.1839900379999,78.60126373900015],[-96.21214758999992,78.59308502800003],[-96.21446692599997,78.58348216400005],[-96.21434485599988,78.57192617400011],[-96.21886145699995,78.561712958],[-96.23277747299991,78.55508047100012],[-96.24917558499993,78.55182526200016],[-96.26402747299989,78.54682038000014],[-96.27350826699988,78.53506094000006],[-95.90697180899991,78.48725006700012],[-95.86827551999988,78.49103424700014],[-95.74592037699989,78.52073802300008],[-95.69981848899997,78.52610911700013],[-95.46108964799993,78.5111351580001],[-95.26341712099986,78.46893952000005],[-95.11872311099987,78.45465729400017],[-94.93468176999993,78.40306224200009],[-94.87291419199994,78.39508698100015],[-94.8574112619999,78.38641998900006],[-94.82787024599986,78.36371491100012],[-94.85000566299993,78.34613678600009],[-94.88133704299989,78.33490631700009],[-95.3699438139999,78.24677155200008],[-95.40322831899991,78.23334381700009],[-95.33307857999995,78.2164574240001],[-95.18163001199989,78.20783112200009],[-95.10903886599988,78.19236888200008],[-95.0917048819999,78.16461823100009],[-94.88931230399993,78.10927969],[-94.92418372299997,78.08673737200012],[-94.9183650379999,78.07933177300013],[-94.88931230399993,78.06891510600003],[-94.88931230399993,78.06207916900003],[-94.90623938699991,78.06199778900005],[-94.92247473899995,78.05857982000013],[-94.93748938699989,78.0518252620001],[-94.95079505099991,78.04157135600015],[-94.93773352799992,78.04157135600015],[-94.98997962099995,78.01976146000011],[-95.0277400379999,77.98908112200012],[-95.0423884759999,77.9804548200001],[-95.06065833199997,77.9726423200001],[-95.11310787699995,77.96067942899998],[-95.16258704299989,77.96067942899998],[-95.26671301999991,77.9726423200001],[-95.37743079299989,77.9726423200001],[-95.39932206899991,77.96942780200006],[-95.45173092399997,77.94599030199998],[-95.47516842399995,77.9445661480001],[-95.52521725199998,77.94806549700012],[-95.56944739499994,77.93451569200015],[-95.70457923099987,77.92633698100003],[-95.8085017569999,77.90298086100013],[-96.08702551999994,77.88298167500007],[-96.36554928299988,77.862982489],[-96.38829505099994,77.86701080900015],[-96.41063391799985,77.87714264500012],[-96.41136633999989,77.88060130400011],[-96.40827389199993,77.88556549700017],[-96.40640214799996,77.89142487200012],[-96.41063391799985,77.8976097680001],[-96.42113196499993,77.9018415390001],[-96.49616451699987,77.90607330900012],[-96.53062903599991,77.90224844],[-96.59561113199996,77.88328685099998],[-96.63219153599991,77.87738678600006],[-96.70860755099991,77.8803164730001],[-96.74022376199989,77.870306708],[-96.68748938699989,77.85252513200011],[-96.61827551999991,77.85195547100015],[-96.5484106109999,77.86225006700006],[-96.49323482999995,77.87714264500012],[-96.49323482999995,77.870306708],[-96.57510331899991,77.85663483300006],[-96.51366126199991,77.85663483300006],[-96.5249731109999,77.84638092700014],[-96.54352779899992,77.84174225500011],[-96.56436113199989,77.84145742400007],[-96.60635331899988,77.84747955900018],[-96.72667395699992,77.83681875200016],[-96.79987545499989,77.8128929710001],[-96.84264075399989,77.80817291900017],[-96.83507239499994,77.80829498900015],[-96.82803300699987,77.80735911700008],[-96.82135982999992,77.80516185100008],[-96.81476803299994,77.80141836100013],[-96.83796139199987,77.79148997600014],[-96.86139889199987,77.78896719000012],[-96.91030839799991,77.795152085],[-97.04124915299994,77.80817291900017],[-97.09288489499988,77.80581289300012],[-97.10334225199995,77.80817291900017],[-97.1048884759999,77.81517161700006],[-97.10220292899993,77.82294342700004],[-97.09825598899992,77.82843659100008],[-97.0958552729999,77.82868073100003],[-97.09447180899991,77.834377346],[-97.09040279899995,77.83779531500012],[-97.08731035099987,77.84198639500015],[-97.08901933499986,77.84979889500015],[-97.09658769399991,77.85663483300006],[-97.10716712099989,77.86050039300007],[-97.11729895699992,77.86579010600005],[-97.12385006399992,77.87714264500012],[-97.09398352799991,77.88141510600003],[-97.05288652299993,77.893255927],[-97.01475989499994,77.90900299700013],[-96.99347896999988,77.92487213700015],[-97.34325110599993,77.95941803600007],[-97.43480383999986,77.99363841400006],[-97.67186438699989,78.02728913000009],[-97.72614498599984,78.02553945500007],[-97.75279700399993,78.02863190300015],[-97.77428137899989,78.04157135600015],[-97.74233964799987,78.04230377800008],[-97.68016516799986,78.05451080900015],[-97.65143795499992,78.05585358300006],[-97.65876217399992,78.05980052300005],[-97.67520097599993,78.07119375200001],[-97.68492591099995,78.07566966399999],[-97.65689042899996,78.09707265800002],[-97.29725094299988,78.08905670750012],[-96.93761145699992,78.08104075700014],[-96.89513098899994,78.09129466400007],[-96.8563126289999,78.10927969],[-96.87067623599988,78.10809967700008],[-96.88467363199995,78.10907623900015],[-96.89647376199994,78.11367422100005],[-96.90412350199995,78.12348053600003],[-96.89439856699991,78.12384674700003],[-96.88516191299993,78.12620677299999],[-96.87686113199987,78.13076406500012],[-96.86929277299993,78.13715241100014],[-96.89704342399989,78.14679596600011],[-96.97740637899992,78.15558502800017],[-97.03774980399993,78.15241120000012],[-97.17564856699991,78.176214911],[-97.2283829419999,78.19497304900007],[-97.39415442599994,78.2128766950001],[-97.5351456369999,78.20673248900015],[-97.82957923099988,78.22650788000006],[-97.88975989499997,78.21893952000012],[-97.91954505099996,78.22028229400011],[-97.92516028599995,78.23334381700009],[-97.92210852799988,78.244045315],[-97.88902747299994,78.24388255400005],[-97.82209225199992,78.23334381700009],[-97.82209225199992,78.24079010600015],[-97.81529700399987,78.23334381700009],[-97.80736243399994,78.24022044499998],[-97.78018144399991,78.24249909100017],[-97.7668350899999,78.24701569200012],[-97.83877519399995,78.27533600500006],[-97.9137263659999,78.29214101800005],[-98.06847083199992,78.3084984400001],[-98.0598852199999,78.32176341400013],[-98.04576575399994,78.32794830900009],[-98.02936764199985,78.33136627800009],[-98.01390540299994,78.33637116100014],[-98.0304255849999,78.34723541900003],[-98.07103430899991,78.3651390650001],[-98.09024003799996,78.36994049700017],[-98.08202063699989,78.38397858300011],[-98.06729081899987,78.390082098],[-98.05016028599994,78.39321523600007],[-98.03502356699994,78.39850495000015],[-98.0693253249999,78.40509674700003],[-98.21666419199991,78.415187893],[-98.3597305979999,78.45172760600006],[-98.37157141799986,78.45697663000011],[-98.38442949099988,78.46613190300012],[-98.40729732999989,78.48818594],[-98.41112219999991,78.49408600500014],[-98.40282141799992,78.51300690300015],[-98.37905839799993,78.52057526200012],[-98.32298743399991,78.52073802300008],[-98.35655676999993,78.53506094000006],[-98.3399145169999,78.54364655200008],[-98.3216446609999,78.54315827000009],[-98.28823808499993,78.53506094000006],[-98.07575436099991,78.53506094000006],[-98.05190995999992,78.5382754580001],[-98.03050696499989,78.54547760600015],[-98.02497311099987,78.55255768400012],[-98.04865475199988,78.55548737200003],[-98.04865475199988,78.561712958],[-98.04149329299995,78.56256745000009],[-98.02757727799988,78.56915924700017],[-98.05431067599987,78.58051178600013],[-98.13756262899992,78.60211823100003],[-98.16515051999994,78.604437567],[-98.22313391799992,78.60244375200006],[-98.24730383999992,78.61017487200017],[-98.23363196499989,78.62376536700012],[-98.25413977799994,78.63279857000005],[-98.3160701159999,78.64622630400014],[-98.32921301999995,78.65485260600002],[-98.32921301999995,78.68329498900006],[-98.32534745999996,78.6956240910001],[-98.3155411449999,78.70636627800012],[-98.35802161399991,78.7180036480001],[-98.37018795499998,78.72679271],[-98.3562719389999,78.73126862200014],[-98.32945716099991,78.74310944200003],[-98.3155411449999,78.74725983300006],[-98.34654700399994,78.7574730490001],[-98.36188717399989,78.76618073100018],[-98.3558650379999,78.773911851],[-98.14907792899996,78.81867096600003],[-97.80005856049988,78.80788808800011],[-97.45103919199988,78.79710521000011],[-97.34508216099991,78.77326080900004],[-96.95933997299987,78.7336286480001],[-96.89419511599996,78.70294830900008]]],[[[-103.6569718089999,79.34129466399999],[-103.37242591099994,79.30093008000001],[-103.29035396999984,79.3096377620001],[-103.12092037699995,79.2906761740001],[-103.07127844999992,79.27488841400005],[-103.0161026679999,79.24713776200014],[-102.9961645169999,79.24070872600005],[-102.96703040299985,79.23834870000009],[-102.90843665299992,79.2396914730001],[-102.8794652989999,79.23330312700007],[-102.89268958199995,79.23139069200002],[-102.90538489499993,79.22748444200012],[-102.91722571499987,79.22158437700007],[-102.92784583199993,79.21344635600015],[-102.91661536399992,79.20282623900012],[-102.90343176999987,79.18048737200009],[-102.89370683499992,79.17186107],[-102.87852942599994,79.16771067900005],[-102.84105383999992,79.16738515800004],[-102.82485917899996,79.16502513200008],[-102.79320227799988,79.14740631700015],[-102.76964270699993,79.14280833500011],[-102.76398678299985,79.13719310100011],[-102.75877844999987,79.130275783],[-102.74974524599995,79.12409088700004],[-102.73778235599991,79.12051015800007],[-102.71825110599993,79.11798737200014],[-102.70848548099988,79.11416250200013],[-102.68635006399991,79.10895416900014],[-102.62694251199986,79.10272858299999],[-102.61876380099996,79.09674713700015],[-102.60716712099993,79.07648346600014],[-102.61851966099991,79.0598005230001],[-102.63703365799984,79.04181549700007],[-102.6467179029999,79.01788971600001],[-102.66490637899997,78.98598867400001],[-102.74998938699989,78.9682477890001],[-102.77643795499996,78.94594961100007],[-102.7288305329999,78.94013092700011],[-102.71564693899984,78.94253164300005],[-102.70205644399988,78.94676341399999],[-102.66429602799992,78.95254140800013],[-102.58844967399996,78.95050690300012],[-102.57164466099995,78.94594961100007],[-102.57213294199993,78.94131094000015],[-102.57298743399986,78.94037506700006],[-102.57469641799986,78.94049713700004],[-102.57778886599992,78.93911367400015],[-102.57164466099995,78.93162669499999],[-102.6262100899999,78.90497467700006],[-102.61937415299991,78.89704010600009],[-102.61131751199989,78.89105866100009],[-102.6021622389999,78.8869489600001],[-102.59211178299984,78.88507721600014],[-102.59894771999984,78.87763092700008],[-102.53718014199984,78.87763092700008],[-102.52562415299991,78.88027578300007],[-102.49522864499994,78.89813873900012],[-102.40274003799995,78.93480052300005],[-102.37979081899995,78.95335521000005],[-102.38072669199994,78.95815664300015],[-102.38149980399986,78.95954010600003],[-102.38141842399989,78.96133047100001],[-102.37979081899995,78.966986395],[-102.39134680899988,78.97614166900009],[-102.4119766919999,78.99966054900011],[-102.42699133999992,79.00800202],[-102.40713456899994,79.01422760600013],[-102.42076575399996,79.01422760600013],[-102.2953181629999,79.02069733300009],[-102.28083248599987,79.02440013200011],[-102.28294837099988,79.0353050800001],[-102.12051347599987,79.04266998900009],[-101.95775305899993,79.08649323100006],[-101.91030839799991,79.09121328300016],[-101.6484268869999,79.08100006700012],[-101.63780676999997,79.07855866100009],[-101.63267981699995,79.07469310100007],[-101.63036048099988,79.06932200700011],[-101.62694251199989,79.064642645],[-101.61864173099991,79.06264883000016],[-101.57664954299993,79.05780670800009],[-101.38996334499984,79.00299713700015],[-101.34723873599992,78.99628327000012],[-101.3054093089999,78.97748444200006],[-101.16710364499991,78.95831940300012],[-101.15689042899987,78.95929596600008],[-101.1489965489999,78.96332428600014],[-101.14582271999983,78.96869538000003],[-101.14366614499993,78.97451406500006],[-101.14045162699995,78.97846100500014],[-101.13369706899992,78.978257554],[-101.01423092399989,78.95050690300012],[-100.98818925699992,78.93162669499999],[-101.01829993399994,78.9208031270001],[-101.11266028599991,78.87254466400007],[-101.16258704299986,78.837795315],[-101.20791581899995,78.82245514500013],[-101.18517005099993,78.80744049700003],[-101.15831458199992,78.801906643],[-101.0353897779999,78.80385976800015],[-101.00499426999993,78.798041083],[-101.00186113199995,78.78143952000015],[-100.90636145699995,78.77374909100003],[-100.83804277299996,78.79148997600011],[-100.76463782499985,78.80158112200017],[-100.5954483709999,78.80084870000015],[-100.52122962099988,78.82391998900003],[-100.39854895699996,78.82990143400004],[-100.34976152299996,78.82371653900006],[-100.32681230399987,78.81427643400004],[-100.32656816299992,78.79913971600014],[-100.31639563699987,78.7841657570001],[-100.2739151679999,78.7721214860001],[-99.99038652299991,78.73607005400014],[-99.89207923099988,78.69891998900015],[-99.92772376199993,78.67845286699999],[-100.03433183499993,78.65696849200005],[-100.06338456899994,78.63808828300002],[-100.00177975199989,78.62661367400007],[-99.93643144399991,78.62376536700012],[-99.82982337099989,78.6393496770001],[-99.79527747299989,78.63060130400005],[-99.78502356699995,78.62274811400006],[-99.77721106699995,78.61399974199999],[-99.76919511599992,78.60687897300012],[-99.75837154899992,78.60394928600012],[-99.69871985599993,78.60297272300015],[-99.64541581899995,78.6087914080001],[-99.60094153599995,78.60675690300015],[-99.55793209499991,78.59870026200004],[-99.52839107999993,78.58344147300006],[-99.5558162099999,78.56598541900011],[-99.62608801999993,78.55902741100012],[-99.65192623599987,78.54246653900003],[-99.62295488199995,78.54295482000013],[-99.60968990799992,78.540961005],[-99.5972794259999,78.53506094000006],[-99.6124161449999,78.52643463700015],[-99.64403235599988,78.51479726800015],[-99.65933183499992,78.50706614800013],[-99.66771399599989,78.49892812700004],[-99.6715388659999,78.49115631700012],[-99.67784583199993,78.48411692900005],[-99.69351152299993,78.47817617400011],[-99.8336482409999,78.45758698100009],[-99.8716527989999,78.43886953300002],[-99.79796301999995,78.42194245000002],[-99.76292883999986,78.405218817],[-99.7481176419999,78.38080475500006],[-99.7549942699999,78.3646507830001],[-99.78921464799988,78.3202171900001],[-99.80272376199986,78.3084984400001],[-99.77025305899987,78.29441966400003],[-99.57062740799996,78.29531484600012],[-99.53392493399987,78.28839752800006],[-99.50446529899996,78.27094147300008],[-99.47061113199992,78.24038320500016],[-99.43276933499986,78.2128766950001],[-99.40298417899987,78.20319245000015],[-99.2956436839999,78.18553294500003],[-99.04450436099984,78.08185455900004],[-98.99254309799994,78.069525458],[-98.94615637899989,78.06891510600003],[-98.96397864499995,78.045355536],[-98.96666419199994,78.03815338700015],[-98.96580969999992,78.02008698100003],[-98.96666419199994,78.01093170800006],[-98.97008216099995,78.00405508000013],[-98.9984024729999,77.98883698100015],[-99.07237708199997,77.97699616100003],[-99.1038305329999,77.96588776200018],[-99.07030188699984,77.9385440120001],[-99.08039303299992,77.92963288000009],[-99.07233639199987,77.920843817],[-99.04234778599992,77.90497467700008],[-99.0247289699999,77.89850495000016],[-99.01724199099993,77.89378489800006],[-99.01846269399995,77.88703034100003],[-99.0290421209999,77.88271719000012],[-99.07787024599989,77.878078518],[-99.11945553299998,77.86611562700007],[-99.15843665299987,77.84979889500015],[-99.18224036399995,77.84369538000006],[-99.4894913404999,77.8315493835001],[-99.79674231699994,77.81940338700018],[-99.8232315749999,77.81500885600009],[-99.84068762899996,77.80780670800006],[-99.8677465489999,77.79218170800009],[-99.88536536399992,77.786078192],[-99.93858801999991,77.78290436400012],[-100.11119544199997,77.81500885600009],[-100.27953040299991,77.81903717700006],[-100.38902747299997,77.84398021],[-100.61001542899993,77.86395905200008],[-100.62511145699993,77.870306708],[-100.60484778599991,77.88385651200015],[-100.61628170499998,77.900620835],[-100.64248613199992,77.91669342700004],[-100.78184973899995,77.97260163000011],[-100.81354732999992,77.99689362200012],[-100.83067786399995,78.01532623900015],[-100.83560136599992,78.02496979400011],[-100.83739173099991,78.03815338700015],[-100.82848059799997,78.05499909100014],[-100.80736243399987,78.05805084800015],[-100.78270423099987,78.05707428600009],[-100.76292883999994,78.06207916900003],[-100.76207434799994,78.08299388200008],[-100.80528723899994,78.09613678600014],[-100.96890214799988,78.12482330900009],[-101.00230872299994,78.13800690300015],[-101.02301998599984,78.15827057500015],[-101.02383378799996,78.16917552300013],[-101.02033443899988,78.17780182500003],[-101.02139238199993,78.18695709800012],[-101.03600012899993,78.19920482],[-101.05972245999995,78.2055117860001],[-101.09203040299987,78.20563385600008],[-101.26256262899992,78.18553294500003],[-101.2902725899999,78.18793366099999],[-101.49836178299994,78.23777903900007],[-101.8295588859999,78.26304759349996],[-102.16075598899994,78.28831614800008],[-102.5428767569999,78.24258047100015],[-102.59251868399993,78.24445221600011],[-102.76500403599991,78.27407461100015],[-102.80223548099988,78.287787177],[-102.81798255099994,78.31191640800009],[-102.79718990799986,78.32876211100009],[-102.66714433499996,78.36371491100012],[-102.74413001199994,78.38056061400012],[-103.03933671799993,78.36438629750002],[-103.3345434239999,78.34821198100009],[-103.37975012899993,78.33637116100014],[-103.44123287699992,78.334418036],[-103.49803626199987,78.32477448100003],[-103.65880286399997,78.32111237200017],[-103.74339758999989,78.31012604400011],[-103.88019771999984,78.27631256700015],[-103.91417395699996,78.274359442],[-103.9045304029999,78.25299713700004],[-103.94652258999989,78.2428246110001],[-104.20610510949996,78.25873444199999],[-104.46568762899993,78.27464427300012],[-104.67568925699993,78.322739976],[-104.73127193899988,78.34674713700004],[-104.75088456899994,78.35004303600009],[-104.77472896999991,78.35097890800016],[-104.79832923099984,78.35447825700005],[-104.81956946499993,78.36163971600008],[-104.86876380099994,78.39679596600014],[-104.99038652299991,78.43886953300002],[-105.00096594999985,78.44623444200012],[-105.04332434799996,78.49534739800005],[-105.04637610599984,78.50478750200007],[-105.03848222599989,78.51276276200012],[-105.01773027299988,78.52448151200008],[-104.9753311839999,78.54002513200011],[-104.88215084499986,78.55735911700009],[-104.81916256399984,78.57802969000004],[-104.64098059799996,78.58344147300006],[-104.33934485599997,78.55208974800001],[-104.03770911399988,78.52073802300008],[-103.72183183499989,78.52431875200013],[-103.58356686099988,78.50238678600012],[-103.53954016799987,78.5003929710001],[-103.49718176999997,78.50653717700004],[-103.46568762899994,78.52448151200008],[-103.45360266799986,78.53961823100008],[-103.45303300699989,78.54743073100009],[-103.46275794199993,78.55194733300006],[-103.48127193899985,78.55711497600005],[-103.49429277299994,78.56614817900008],[-103.47647050699996,78.57282135600012],[-103.42813066299995,78.58344147300006],[-103.42007402299991,78.57802969000004],[-103.40737870999995,78.57904694200009],[-103.37975012899993,78.58958567900014],[-103.39150956899992,78.597113348],[-103.40534420499992,78.60195547100007],[-103.4201554029999,78.60415273600007],[-103.43496660099987,78.60394928600012],[-103.41673743399988,78.60932038000009],[-103.4002172519999,78.61692942900011],[-103.43936113199993,78.62518952],[-103.72500566299995,78.62268707850005],[-104.01065019399994,78.62018463700015],[-104.04450436099991,78.63060130400005],[-103.98135331899992,78.65517812700016],[-103.91030839799987,78.66876862200012],[-103.4827774729999,78.67157623900006],[-103.51964270699996,78.69594961100005],[-103.53058834499984,78.70636627800012],[-103.49474036399994,78.71662018400004],[-103.45958411399995,78.72064850500011],[-103.34797115799991,78.72174713700015],[-103.3272598949999,78.72679271],[-103.31826738199987,78.73704661700009],[-103.32579505099993,78.74754466399999],[-103.35855058499995,78.74860260600002],[-103.38402258999986,78.77460358300011],[-103.42495683499989,78.78388092700008],[-103.49844316299988,78.78827545800006],[-103.52599036399991,78.77871328300007],[-103.5535782539999,78.75983307500006],[-103.58210201699991,78.74652741100012],[-103.61253821499987,78.75348541900011],[-103.6068416009999,78.75665924700017],[-103.59203040299992,78.767767645],[-103.61607825399994,78.77289459800012],[-103.6430557929999,78.77179596600017],[-103.75519771999987,78.74673086100007],[-103.81794186099985,78.74046458500011],[-103.79600989499991,78.75787995000009],[-103.76134192599993,78.77440013200008],[-103.69505774599988,78.79572174700003],[-103.7209366529999,78.80646393400015],[-103.75104732999992,78.803615627],[-103.78229732999989,78.79682038000007],[-103.81175696499987,78.79572174700003],[-103.86237545499993,78.80923086100002],[-103.88914954299986,78.809759833],[-103.90733801999993,78.79572174700003],[-103.9028214179999,78.79287344],[-103.8985082669999,78.7863223330001],[-103.8936661449999,78.78143952000015],[-103.93700110599988,78.76601797100001],[-103.99229895699987,78.75739166900011],[-104.04816646999987,78.75739166900011],[-104.09288489499991,78.767767645],[-104.07860266799992,78.767767645],[-104.09996497299997,78.77716705900004],[-104.18805904899989,78.77667877800006],[-104.22325598899992,78.78827545800006],[-104.14903723899991,78.82436758000001],[-103.85627193899987,78.88255442900014],[-103.83161373599988,78.89142487200009],[-103.83218339799994,78.90497467700006],[-103.85582434799996,78.91461823100012],[-104.02586829299992,78.94415924700009],[-104.04458574099988,78.9531110700001],[-104.04938717399997,78.96185944200009],[-104.05044511599993,78.97064850500006],[-104.05817623599985,78.98004791900017],[-104.07762610599994,78.98627350500014],[-104.24722245999988,78.99705638200014],[-104.27106686099987,78.99066803600012],[-104.28180904899989,78.97919342700008],[-104.28799394399995,78.96653880400011],[-104.29942786399991,78.95868561400012],[-104.37018795499993,78.96898021000014],[-104.41559811099984,78.9679222680001],[-104.4562882149999,78.9569766300001],[-104.48643958199992,78.93537018400012],[-104.52928626199991,78.89301178600012],[-104.55431067599993,78.87523021000014],[-104.5794978509999,78.86334870000007],[-104.6887914699999,78.843491929],[-104.78498287699993,78.80878327000003],[-104.83535722599987,78.79979075699998],[-104.95543372299989,78.79816315300016],[-105.00560462099989,78.80711497600002],[-105.03184973899991,78.82615794499999],[-105.00999915299987,78.84511953300002],[-104.87376868399988,78.89069245000015],[-104.86388098899988,78.89691803600012],[-104.85553951699991,78.90399811400009],[-104.84601803299992,78.90957265800009],[-104.83275305899987,78.91181061400005],[-104.8170466789999,78.9401716170001],[-104.76329505099996,78.973089911],[-104.67853756399988,79.01113515800007],[-104.70840410099986,79.03107330900015],[-104.74559485599987,79.03896719000015],[-104.95335852799988,79.053859768],[-105.40249589799993,79.01288483300009],[-105.56346594999988,79.02594635600015],[-105.59178626199991,79.0378278670001],[-105.60704505099989,79.05540599200005],[-105.59312903599992,79.07684967700008],[-105.5966690749999,79.08478424700006],[-105.59675045499996,79.09259674700003],[-105.5983780589999,79.0991885440001],[-105.60680091099994,79.10358307500009],[-105.59996497299993,79.1104190120001],[-105.60586503799988,79.11859772300004],[-105.6246638659999,79.15314362200003],[-105.62783769399988,79.16502513200008],[-105.61758378799995,79.17926666900017],[-105.58116614499988,79.2050235050001],[-105.56078040299991,79.23550039300007],[-105.53197180899987,79.24896881700013],[-105.44904537699996,79.26947663],[-105.43700110599985,79.27529531500015],[-105.42552649599989,79.28510163000009],[-105.42564856699987,79.29637278899999],[-105.4445694649999,79.30133698100003],[-105.4838761059999,79.30219147300012],[-105.45689856699994,79.32929108300004],[-105.40811113199993,79.33429596600008],[-105.15684973899988,79.29987213700015],[-104.67842905733329,79.32103099133342],[-104.20000837566661,79.34218984566674],[-103.72158769399994,79.36334870000017],[-103.6569718089999,79.34129466399999]]],[[[-99.44888261599993,80.11249420799999],[-99.42284094999987,80.11098867400015],[-99.11969967399992,80.13373444200009],[-99.06285559799987,80.12523021000005],[-98.95958411399988,80.09552643400004],[-98.87376868399994,80.08380768400002],[-98.85057532499991,80.07001373900012],[-98.85781816299993,80.06732819200006],[-98.87132727799991,80.0593122420001],[-98.87791907499988,80.056341864],[-98.85505123599988,80.045599677],[-98.78693600199992,80.02216217700011],[-98.77822831899994,80.01194896000008],[-98.7779841789999,79.99701569200012],[-98.75548255099991,79.98432038000006],[-98.70596269399988,79.96698639500009],[-98.72549394399994,79.96112702000012],[-98.74364173099984,79.95189036700008],[-98.7586156889999,79.93992747600014],[-98.76866614499997,79.92597077000006],[-98.77505449099988,79.9046898460001],[-98.7680557929999,79.89545319200012],[-98.72704016799987,79.88499583500005],[-98.69570878799993,79.86774323100005],[-98.67194576699984,79.84406159100003],[-98.65664628799988,79.81769440300002],[-98.6513565749999,79.7922223980001],[-98.66002356699991,79.78082916900013],[-98.67992102799991,79.76854075700003],[-98.70197506399988,79.75873444200006],[-98.71678626199987,79.75462474200013],[-98.72630774599986,79.748277085],[-98.73761959499984,79.73419830900013],[-98.75230872299994,79.720160223],[-98.77171790299985,79.71369049700009],[-98.78050696499992,79.708441473],[-98.79539954299987,79.68374258000013],[-98.80280514199987,79.67584870000015],[-98.82380123599991,79.66925690300017],[-98.84019934799991,79.66986725500014],[-98.87791907499988,79.67894114800013],[-98.87336178299994,79.69830963700015],[-98.8847550119999,79.70962148600013],[-98.95885169199994,79.72817617400013],[-99.30011959499987,79.75942617400001],[-99.33039303299996,79.76829661700008],[-99.31090247299997,79.78497955900009],[-99.3030492829999,79.78880442900011],[-99.31232662699995,79.79266998900012],[-99.32917232999993,79.80292389500015],[-99.33653723899994,79.80927155200008],[-99.31578528599994,79.81098053600009],[-99.2956436839999,79.816107489],[-99.30158443899984,79.83340078300009],[-99.30353756399988,79.84259674700014],[-99.31183834499987,79.84837474200013],[-99.58360755099996,79.89866771],[-99.61510169199988,79.89858633],[-99.70514889199984,79.88499583500005],[-100.07022050699995,79.87815989800013],[-100.09825598899994,79.88523997599998],[-100.15379798099991,79.90680573100009],[-100.18008378799992,79.91168854400017],[-100.17149817599991,79.92304108300013],[-100.14427649599992,79.94074127800015],[-100.13853919199994,79.94989655200014],[-100.13805091099995,79.95746491100009],[-100.13727779899993,79.96185944200006],[-100.13711503799988,79.96629466400005],[-100.13853919199994,79.97443268400015],[-100.14159094999994,79.98041413000009],[-100.14614824099988,79.98493073100003],[-100.15029863199992,79.99017975500011],[-100.15217037699989,79.997992255],[-100.16258704299987,80.01044342700011],[-100.18219967399993,80.02118561400012],[-100.19371497299997,80.03229401200015],[-100.17979895699989,80.04580312700013],[-100.16685950399989,80.04999420800006],[-100.13902747299993,80.05483633000013],[-100.12515214799993,80.05947500200007],[-100.11847896999988,80.06427643400015],[-100.10619055899993,80.07770416900014],[-100.09691321499987,80.08364492400007],[-100.10435950399993,80.07684967700006],[-100.06029212099995,80.096177476],[-99.77936764199987,80.15078359600012],[-99.57030188699994,80.14215729400006],[-99.44888261599993,80.11249420799999]]],[[[-95.47769120999988,80.7084414730001],[-95.4231664699999,80.6975772160001],[-95.16368567599994,80.70001862200003],[-95.06749426999991,80.68695709800006],[-95.05589758999989,80.683294989],[-95.04214433499996,80.67690664300008],[-95.03066972599993,80.66937897300012],[-95.02586829299995,80.66274648600016],[-94.98228919199991,80.64801666900017],[-94.97130286399997,80.63914622600011],[-95.18687903599995,80.6129417990001],[-95.48371334499987,80.62986888200008],[-95.62857011599996,80.65729401200012],[-95.85236568899987,80.65277741100006],[-96.15054277299996,80.66583893400006],[-96.11046301999994,80.68573639500015],[-96.05589758999986,80.69367096600011],[-95.71922766799989,80.69379303600009],[-95.72541256399984,80.70001862200003],[-95.5333552729999,80.70001862200003],[-95.47769120999988,80.7084414730001]]],[[[-92.77293860599991,81.31769440300009],[-92.70641028599991,81.30182526200015],[-92.48843339799996,81.28587474200005],[-92.37083899599989,81.26357656500004],[-92.23692786399995,81.256333726],[-91.82909094999984,81.16193268400002],[-91.79832923099988,81.15924713700015],[-91.81045488199996,81.15021393400015],[-91.83604895699995,81.13593170800006],[-91.84732011599993,81.12518952000015],[-91.8137914699999,81.11245351800008],[-91.79832923099988,81.10350169500008],[-91.78526770699989,81.09100983300006],[-91.81407630099991,81.08222077000009],[-91.91502844999984,81.08417389500012],[-91.91502844999984,81.0773786480001],[-91.70807857999993,81.03803131700003],[-91.52456620999992,80.9780134140001],[-91.52708899599995,80.963324286],[-91.53010006399983,80.95400625200016],[-91.52700761599996,80.94635651200004],[-91.5113012359999,80.93675364800005],[-91.48692786399992,80.92617422100001],[-91.4307755199999,80.908880927],[-91.36107337099986,80.89960358300014],[-91.32437089799996,80.88349030200008],[-91.25739498599987,80.84088776200004],[-91.2364802729999,80.833726304],[-91.19029700399997,80.82965729400003],[-91.16832434799997,80.82412344000004],[-91.14708411399988,80.81305573100018],[-91.14610755099991,80.80719635600003],[-91.15265865799998,80.80121491100012],[-91.15404212099986,80.78998444200012],[-91.13027910099987,80.76471588700015],[-91.08885657499985,80.74860260600009],[-90.7097875639999,80.70331452000006],[-90.61363684799994,80.65582916900014],[-90.60716712099992,80.65379466400013],[-90.59292558499992,80.65277741100006],[-90.61876380099994,80.6319033870001],[-90.7503149079999,80.59418366100012],[-90.76618404899992,80.57623932500016],[-90.73106848899994,80.56671784100008],[-90.67772376199991,80.56452057500007],[-90.6392309239999,80.56850820500007],[-90.57542883999989,80.56460195500007],[-90.56501217399997,80.57367584800006],[-90.55483964799991,80.57876211100009],[-90.49176998599992,80.56342194200015],[-90.0066625639999,80.54193756700012],[-89.94481360599991,80.51581452000006],[-89.92446855399992,80.51023997600005],[-89.90396074099996,80.50824616100012],[-89.77432206899996,80.46409739800012],[-89.73981686099995,80.47093333500005],[-89.7474666009999,80.48248932500016],[-89.81102454299989,80.51504140800013],[-89.83193925699993,80.52928294500003],[-89.71593176999988,80.53676992400001],[-89.65855872299993,80.53058502800015],[-89.63133704299986,80.531724351],[-89.62653561099995,80.54291413],[-89.3248591789999,80.53676992400001],[-89.05797278599994,80.46784088700015],[-89.09601803299995,80.44794342700008],[-89.10863196499992,80.44326406500015],[-89.22935950399989,80.41518789300014],[-89.25719153599994,80.39899323100009],[-89.21385657499988,80.39288971600011],[-89.12083899599989,80.40961334800015],[-89.0784805979999,80.39899323100009],[-89.12169348899991,80.36937083500005],[-89.13019771999984,80.35561758000013],[-89.10578365799996,80.34369538],[-89.12946529899992,80.32957591400007],[-89.16567949099992,80.31883372600005],[-89.26048743399988,80.30365631700006],[-89.25584876199986,80.28974030199998],[-89.23534094999991,80.27383047100007],[-89.1588435539999,80.23248932500003],[-89.04002844999991,80.19375234600001],[-88.6023656889999,80.11847565300012],[-88.57135982999995,80.10724518400012],[-88.53844153599987,80.0991071640001],[-88.49307206899988,80.0982933610001],[-88.44741777299996,80.10276927300004],[-88.41368567599994,80.11098867400015],[-88.47118079299995,80.13519928600014],[-88.48200436099995,80.14508698100015],[-88.39281165299988,80.14199453300007],[-88.27489173099988,80.12181224200005],[-88.2449438139999,80.10691966400002],[-88.14614824099995,80.09731679900001],[-88.14614824099995,80.103461005],[-88.17918860599991,80.10927969000015],[-88.31867428299995,80.15965403899999],[-88.39932206899988,80.1752383480001],[-88.42735755099989,80.1928571640001],[-88.37865149599986,80.19245026200008],[-88.33116614499993,80.18671295800011],[-88.29308020699993,80.17397695500007],[-88.27440344999988,80.17405833500004],[-88.25548255099997,80.18671295800011],[-88.3102107409999,80.21198151200016],[-88.50926673099994,80.22077057500015],[-88.59337317599997,80.23826732000002],[-88.61913001199991,80.24811432500012],[-88.62857011599993,80.25372955900012],[-88.6385798819999,80.26337311400009],[-88.64647376199989,80.26862213700015],[-88.67674719999988,80.28107330900009],[-88.70856686099991,80.28974030199998],[-88.65770423099988,80.3217227230001],[-88.65005449099993,80.3389346370001],[-88.68057206899988,80.36107005400008],[-88.68114173099985,80.37750885600018],[-88.64415442599991,80.39667389500012],[-88.59634355399987,80.41274648600002],[-88.54039466099994,80.42259349200005],[-88.49331620999993,80.43671295800009],[-88.46898352799984,80.43988678600014],[-88.08476721949991,80.426235256],[-87.70055091099987,80.41258372600005],[-87.67430579299986,80.403753973],[-87.65697180899988,80.38837311400006],[-87.62230383999989,80.347113348],[-87.61188717399992,80.32851797100001],[-87.61782792899993,80.2901065120001],[-87.61180579299992,80.26862213700015],[-87.59386145699997,80.24982330900012],[-87.57909094999991,80.24054596600017],[-87.5721736319999,80.22817617400013],[-87.57762610599994,80.20034414300007],[-87.5751846999999,80.19733307500017],[-87.5690811839999,80.19452545800011],[-87.56476803299992,80.19041575700008],[-87.56769771999984,80.1832949890001],[-87.57555091099991,80.17959219000006],[-87.58690344999988,80.178656317],[-87.60830644399994,80.17987702],[-87.62889563699989,80.17658112200017],[-87.66942298099988,80.16205475500014],[-88.02464758999989,80.13849518400018],[-88.06362870999996,80.12523021000005],[-88.04491126199989,80.11969635600003],[-88.00706946499986,80.1171735700001],[-87.98912512899992,80.11098867400015],[-87.99400794199997,80.09833405200008],[-87.98668372299997,80.09414297100015],[-87.97362219999991,80.09320709800006],[-87.96125240799995,80.0904808610001],[-87.95726477799988,80.0865746110001],[-87.95270748599992,80.080511786],[-87.9459529289999,80.07379791900014],[-87.93541419199994,80.06806061400009],[-87.89867102799992,80.05939362200007],[-87.86335201699991,80.05902741100009],[-87.71410071499986,80.07957591400013],[-87.2393692699999,80.07037995000015],[-87.20026607999993,80.03925202000015],[-87.19082597599996,80.02374909100014],[-87.16881262899994,80.00844961100006],[-87.12511145699995,79.98802317900011],[-87.03579667899993,79.96662018400015],[-87.00845292899996,79.95331452000015],[-87.03522701699987,79.93903229400014],[-87.1002498039999,79.936224677],[-87.16344153599988,79.92511627800015],[-87.19688880099994,79.92377350500009],[-87.22931881399984,79.918931382],[-87.28502356699994,79.883937893],[-87.31212317599997,79.87372467700006],[-87.43785559799987,79.861070054],[-87.47118079299987,79.85382721600017],[-87.48827063699991,79.8372256530001],[-87.44041907499988,79.8372256530001],[-87.34679114499994,79.84251536699999],[-87.0323787099999,79.9125023460001],[-86.99046790299991,79.91632721600011],[-86.96202551999991,79.90875885600015],[-86.97126217399995,79.88157786700005],[-87.04942786399997,79.816107489],[-87.06456458199997,79.79462311400006],[-87.06554114499993,79.77830638200014],[-87.06037350199995,79.76146067900014],[-87.05687415299985,79.7379417990001],[-87.06700598899991,79.72492096600008],[-87.13133704299992,79.67279694200006],[-87.13219153599991,79.66937897300015],[-87.13133704299992,79.65509674700014],[-87.13581295499998,79.64948151200014],[-87.15794837099986,79.63873932500006],[-87.18871008999994,79.62783437700007],[-87.41071529899995,79.59039948100003],[-87.44733639199988,79.56907786700008],[-87.44188391799995,79.560777085],[-87.4446508449999,79.55206940300009],[-87.45205644399991,79.54360586100016],[-87.46092688699994,79.53558991100012],[-87.40172278599994,79.5170759140001],[-87.34117591099997,79.50824616100014],[-87.28058834499987,79.51219310100014],[-87.2213435539999,79.532171942],[-87.2044164699999,79.54303620000009],[-87.17446855399993,79.56757233300011],[-87.15929114499993,79.57656484600012],[-87.12718665299988,79.58543528899999],[-86.9910375639999,79.60346100500003],[-86.8448380199999,79.5931664080001],[-86.82087154899995,79.58413320500007],[-86.82725989499988,79.56598541900017],[-86.83788001199991,79.54975006700012],[-86.82135982999995,79.54669830900004],[-86.79507402299993,79.55084870000017],[-86.77635657499988,79.55609772300005],[-86.77586829299989,79.55829498900006],[-86.77676347599987,79.56683991100009],[-86.77635657499988,79.56907786700008],[-86.76895097599987,79.57037995000015],[-86.69375566299988,79.56907786700008],[-86.71202551999994,79.59202708500004],[-86.74697831899996,79.60350169500002],[-86.81725012899992,79.61749909100013],[-86.71934973899995,79.64248281500005],[-86.62035071499989,79.65204498900006],[-86.30907141799992,79.64809804900007],[-86.25649980399987,79.63898346600007],[-86.16685950399992,79.60561758000001],[-86.0809626939999,79.58368561400009],[-86.04206295499989,79.56907786700008],[-86.05646725199995,79.56354401200002],[-86.06314042899993,79.56293366100009],[-86.05528723899992,79.55585358300011],[-86.04987545499989,79.55194733300011],[-86.04206295499989,79.54857005400011],[-86.0602107409999,79.54116445500004],[-86.08812415299994,79.53465403900013],[-86.13825436099992,79.528753973],[-86.13825436099992,79.52191803600009],[-86.12242591099991,79.52073802300004],[-86.08389238199992,79.51288483300006],[-86.06940670499998,79.50763580900018],[-86.06822669199994,79.5049502620001],[-86.06798255099991,79.50014883000001],[-86.06688391799986,79.49481842700006],[-86.06285559799989,79.49054596600006],[-86.05455481699991,79.48676178600012],[-86.04605058499986,79.48387278899999],[-86.03742428299998,79.48191966400013],[-86.02839107999993,79.48094310100005],[-86.0624080069999,79.4747582050001],[-86.13605709499984,79.47174713700018],[-86.16616777299987,79.45986562700013],[-86.12498938699991,79.44415924700017],[-86.0675349599999,79.43618398600002],[-86.01060950399997,79.4391543640001],[-85.97101803299995,79.45644765800013],[-85.94481360599991,79.48118724200009],[-85.92955481699994,79.49038320500007],[-85.89443925699995,79.49896881700009],[-85.89175370999986,79.51080963700007],[-85.89867102799988,79.53558991100012],[-85.86180579299992,79.59300364800013],[-85.78648841099994,79.61737702000009],[-85.69871985599984,79.61798737200014],[-85.62433834499987,79.60382721600003],[-85.5637914699999,79.57977936400009],[-85.54918372299997,79.56907786700008],[-85.54161536399991,79.5572777360001],[-85.53937740799992,79.54852936400012],[-85.53506425699993,79.54083893400008],[-85.52159583199993,79.532171942],[-85.45213782499991,79.506333726],[-85.41917883999984,79.48786041900014],[-85.40518144399988,79.46356842700008],[-85.39443925699987,79.45331452000015],[-85.32461503799992,79.43805573100018],[-85.30443274599992,79.42853424700009],[-85.26646887899989,79.40534088700015],[-85.24689693899992,79.39704010600016],[-85.10362708199997,79.37189362200009],[-85.05577551999993,79.35683828300006],[-85.00055904899992,79.33014557500015],[-84.93602454299986,79.307074286],[-84.9186091789999,79.29596588700015],[-84.91258704299987,79.27069733300011],[-84.94815019399995,79.26007721600017],[-85.19595292899989,79.23395416900003],[-85.24754798099988,79.22028229400007],[-85.29556230399996,79.19635651200012],[-85.31647701699993,79.19232819200015],[-85.40477454299989,79.19061920800014],[-85.4552302729999,79.17511627800002],[-85.51048743399991,79.16620514499999],[-85.63304602799985,79.16258372600014],[-85.67650305899991,79.14964427300013],[-86.09019934799986,79.10915761950007],[-86.50389563699991,79.06867096600017],[-86.56281490799998,79.04897695500013],[-86.55199133999989,79.03986237200003],[-86.55939693899987,79.02781810100011],[-86.58454342399995,79.00800202],[-86.5877579419999,79.00165436400009],[-86.59215247299987,78.98615143400015],[-86.59752356699994,78.98004791900017],[-86.61461341099991,78.97418854400003],[-86.74665279899995,78.95905182500003],[-86.77721106699997,78.96222565300009],[-86.81045488199987,78.97321198100015],[-86.91201738199987,79.01959870000003],[-86.92357337099988,79.03156159100014],[-86.94359290299988,79.05890534100003],[-86.95335852799991,79.06317780200014],[-86.96825110599985,79.06419505400011],[-86.98200436099998,79.06098053600014],[-86.9879451159999,79.05206940300012],[-86.98957271999993,79.0274925800001],[-86.9879451159999,79.02846914300007],[-87.00084387899992,79.00063711100002],[-87.00112870999993,78.99005768400013],[-86.98591061099995,78.96808502800015],[-86.98546301999997,78.96088288000011],[-86.98639889199985,78.95482005400011],[-86.98485266799992,78.9496524110001],[-86.97492428299992,78.941107489],[-86.95091712099986,78.92743561400006],[-86.94017493399984,78.9186058610001],[-87.03612219999985,78.8744977890001],[-87.22179114499988,78.82172272300012],[-87.30980383999992,78.80931224199999],[-87.33983313699989,78.79279205900012],[-87.39207923099988,78.75348541900011],[-87.4956762359999,78.71088288000007],[-87.52920488199992,78.69269440300017],[-87.53083248599995,78.68903229400003],[-87.53111731699991,78.68317291900009],[-87.53233801999991,78.67682526200015],[-87.53669186099991,78.67157623900006],[-87.55308997299991,78.6640485700001],[-87.62157141799986,78.64573802300005],[-87.64924068899987,78.64301178600009],[-87.67227128799993,78.64618561400015],[-87.85879472599987,78.69269440300017],[-87.88792883999992,78.7064883480001],[-87.91641191299992,78.72626373900002],[-87.98452714799986,78.79287344],[-87.99754798099985,78.81122467700006],[-88.00023352799994,78.83112213700004],[-87.98912512899992,78.8571231140001],[-87.95579993399991,78.90648021000003],[-87.95946204299989,78.92890045800011],[-87.98912512899992,78.95954010600003],[-87.98473059799991,78.96430084800012],[-87.97996985599991,78.96649811400012],[-87.97545325399997,78.967027085],[-87.95685787699998,78.97260163],[-87.88744055899994,78.98187897300015],[-87.79735266799989,79.00800202],[-87.80638587099989,79.01520416900014],[-87.81639563699989,79.02094147300004],[-87.82713782499991,79.02533600499999],[-87.8382869129999,79.02846914300007],[-87.81029212099989,79.039984442],[-87.77586829299986,79.04889557500015],[-87.74522864499994,79.06134674700014],[-87.72842363199993,79.08307526200004],[-87.76390540299994,79.08860911700005],[-87.80549068899988,79.07904694200006],[-87.87865149599989,79.04523346600008],[-87.89224199099993,79.03436920800003],[-87.89858964799996,79.02423737200014],[-87.90746008999992,79.01561107000003],[-87.92857825399992,79.00897858300009],[-88.12559973899991,79.00560130400008],[-88.17373613199987,78.99559153899999],[-88.20832271999987,78.97321198100015],[-88.21654212099989,78.95286692900008],[-88.20885169199994,78.93781159100014],[-88.19566809799991,78.92332591400009],[-88.18712317599989,78.90497467700006],[-88.19090735599991,78.88385651200004],[-88.21825110599988,78.84870026200018],[-88.22813880099989,78.82990143400004],[-88.2289119129999,78.80451080900009],[-88.21996008999989,78.782945054],[-88.2047419909999,78.76422760600003],[-88.14427649599989,78.70677317900011],[-88.13621985599988,78.68691640800002],[-88.1602270169999,78.678412177],[-88.32258053299991,78.67324453300007],[-88.35846920499992,78.65790436400012],[-88.34162350199992,78.65452708500011],[-88.3340551419999,78.65517812700016],[-88.32494055899988,78.65790436400012],[-88.32494055899988,78.65176015800016],[-88.27717037699993,78.66494375200001],[-88.06720943899984,78.66290924700017],[-88.02204342399989,78.65460846600007],[-87.9790746739999,78.63971588700002],[-87.93390865799996,78.61692942900011],[-87.9070531889999,78.59601471600014],[-87.89867102799992,78.57416413000011],[-87.90973873599997,78.55243561400015],[-88.00743567599997,78.49371979400003],[-88.04214433499993,78.47931549700014],[-88.2285050119999,78.46356842700003],[-88.27651933499989,78.47662995000017],[-88.54405676999988,78.58958567900014],[-88.5487361319999,78.5939395200001],[-88.55260169199991,78.60561758000013],[-88.55768795499992,78.61017487200017],[-88.56956946499989,78.61253489800013],[-88.61253821499993,78.61017487200017],[-88.76740475199989,78.61798737200017],[-88.78693600199998,78.616197007],[-88.80475826699987,78.61017487200017],[-88.7643123039999,78.5983747420001],[-88.75739498599992,78.58905670800006],[-88.77741451699987,78.57599518400018],[-88.76333574099992,78.57343170800009],[-88.75348873599992,78.56850820500001],[-88.75035559799994,78.5604515650001],[-88.75633704299986,78.548732815],[-88.59870357999992,78.45929596600008],[-88.57579505099994,78.44668203300002],[-88.55117753799993,78.43280670800011],[-88.54002844999991,78.41689687700001],[-88.55768795499992,78.39105866100009],[-88.57095292899994,78.3806013040001],[-88.67373613199987,78.322739976],[-88.67764238199996,78.31614817900011],[-88.68260657499991,78.2975934920001],[-88.6874080069999,78.28864166900009],[-88.69579016799985,78.2812360700001],[-88.70494544199994,78.27513255400011],[-88.71231035099993,78.26801178600006],[-88.72166907499988,78.23700592700014],[-88.7367244129999,78.21625397300012],[-88.77000891799989,78.18553294500003],[-88.81126868399994,78.16543203300009],[-88.85435950399996,78.16006094000015],[-88.99885006399984,78.16917552300013],[-89.0499568349999,78.18170807500003],[-89.24592037699995,78.26211172100012],[-89.2859594389999,78.29490794500013],[-89.31505286399994,78.30874258000011],[-89.3282771479999,78.31903717700004],[-89.34080969999991,78.3312848980001],[-89.35204016799987,78.33905670800011],[-89.38011633999989,78.35004303600009],[-89.49083411399995,78.375433661],[-89.50601152299996,78.38300202000015],[-89.53355872299987,78.40204498900013],[-89.55142167899996,78.4108747420001],[-89.62197831899994,78.4307315120001],[-89.64517167899996,78.43260325700008],[-89.6574600899999,78.43573639500015],[-89.80426998599991,78.50389232000008],[-89.81541907499985,78.51337311400009],[-89.83535722599993,78.538763739],[-89.84923255099994,78.54718659100014],[-89.90086829299989,78.561712958],[-89.95547441299993,78.597113348],[-89.94863847599991,78.60394928600012],[-89.9734594389999,78.61200592700006],[-90.00617428299992,78.61375560100005],[-90.03966223899997,78.61107005400008],[-90.0667211579999,78.60553620000015],[-90.08580481699988,78.59324778900002],[-90.0831599599999,78.56785716400007],[-90.09947669199991,78.561712958],[-90.09203040299994,78.55003489799998],[-90.07957923099991,78.5414085960001],[-90.05109615799991,78.52822500200013],[-90.06257076699987,78.518052476],[-90.05866451699987,78.50922272300011],[-90.02769934799994,78.48680247600014],[-90.0113419259999,78.48273346600017],[-90.00389563699994,78.47980377800015],[-90.00072180899988,78.47451406500006],[-90.00023352799988,78.46845123900009],[-89.99608313699993,78.46466705900015],[-89.98216712099986,78.46613190300012],[-89.9888402989999,78.44867584800015],[-89.9763077459999,78.43943919499999],[-89.7871801419999,78.39838288],[-89.59923255099989,78.28522370000017],[-89.58918209499993,78.27619049700017],[-89.56818600199998,78.23704661700013],[-89.5425512359999,78.219875393],[-89.47203528599994,78.1861839860001],[-89.45518958199992,78.16449616100012],[-89.49567623599995,78.15607330900015],[-89.53538977799988,78.1524925800001],[-89.57481848899994,78.15444570500011],[-89.61436926999988,78.1628278670001],[-89.62612870999996,78.16766998900009],[-89.63658606699994,78.17479075700012],[-89.64415442599989,78.18414948100015],[-89.6470434239999,78.19578685100008],[-89.65192623599988,78.20888906500015],[-89.66405188699989,78.21649811400009],[-89.69522050699987,78.22455475500011],[-89.71349036399994,78.22614166900014],[-89.90135657499988,78.22117747600002],[-89.93643144399992,78.22874583500005],[-89.96035722599993,78.24355703300002],[-89.95547441299993,78.26752350500009],[-90.04649817599997,78.30463288],[-90.13878333199992,78.32526276200011],[-90.3320206369999,78.33637116100014],[-90.53831946499986,78.322739976],[-90.70543372299987,78.33543528900006],[-90.75059973899992,78.322739976],[-90.70425370999996,78.30573151200002],[-90.59459387899994,78.291205145],[-90.37254798099991,78.28750234600015],[-90.32542883999992,78.274359442],[-90.35716712099989,78.26459381700015],[-90.37035071499994,78.25629303600009],[-90.37319902299987,78.24079010600015],[-90.36217200399992,78.22744375200016],[-90.3410538399999,78.21735260600016],[-90.29991614499994,78.20473867400001],[-90.27594967399996,78.18646881700012],[-90.28795325399992,78.16738515800013],[-90.31920325399997,78.15192291900003],[-90.35269120999992,78.14459870000003],[-90.60362708199995,78.15387604400016],[-90.88414466099994,78.14459870000003],[-91.18464107999998,78.1754417990001],[-91.60440019399992,78.19086334800004],[-91.76585852799988,78.23065827],[-91.82005774599995,78.23574453300013],[-91.8595271479999,78.24388255400005],[-91.96987870999996,78.23086172100015],[-91.99201412699995,78.21792226800014],[-92.00438391799987,78.2128766950001],[-92.02452551999991,78.21067942900014],[-92.06651770699989,78.21552155200011],[-92.11632239499997,78.22695547100007],[-92.19615637899987,78.26129791900011],[-92.18740800699993,78.27692291900009],[-92.20128333199992,78.28253815300008],[-92.30793209499993,78.28294505400011],[-92.32652747299991,78.28864166900009],[-92.29491126199994,78.304144598],[-92.21198482999992,78.30768463700018],[-92.17568925699993,78.315334377],[-92.21983801999991,78.33226146],[-92.27867591099991,78.32843659100017],[-92.38857988199996,78.3084984400001],[-92.50340735599988,78.31317780200011],[-92.61388098899994,78.33637116100014],[-92.6057836579999,78.35187409100013],[-92.60090084499993,78.356878973],[-92.62425696499992,78.36493561400012],[-92.67804928299998,78.36835358300014],[-92.82192949099986,78.40155670800006],[-92.87035071499989,78.405259507],[-92.95274817599991,78.43671295800011],[-92.99128170499998,78.46613190300012],[-92.96906490799992,78.48956940300009],[-92.93517005099997,78.49705638200004],[-92.8753962879999,78.49599844],[-92.87979081899988,78.49925364800005],[-92.88198808499988,78.50706614800013],[-92.62816321499992,78.49408600500014],[-92.63560950399989,78.49408600500014],[-92.55939693899984,78.49359772300015],[-92.51943925699987,78.49933502800002],[-92.49095618399988,78.51455312700001],[-92.56672115799995,78.52073802300008],[-92.54271399599989,78.52741120000003],[-92.51886959499993,78.52728913000006],[-92.47052975199989,78.52073802300008],[-92.1572566399999,78.53534577050014],[-91.8439835279999,78.549953518],[-91.72618567599994,78.53925202000009],[-91.69741777299993,78.53327057500017],[-91.65396074099988,78.52985260600015],[-91.63878333199989,78.54645416900003],[-91.64915930899988,78.56500885600003],[-91.68248450399997,78.56728750200001],[-91.73729407499988,78.55947500200001],[-92.19660397049995,78.58567942900005],[-92.6559138659999,78.61188385600018],[-92.73302161399994,78.6295433610001],[-92.81135006399992,78.63808828300002],[-92.85045325399997,78.6354841170001],[-92.90941321499994,78.62494538000006],[-92.93004309799994,78.62376536700012],[-92.93659420499995,78.6221377620001],[-92.93761145699992,78.61823151200012],[-92.9381404289999,78.61359284100008],[-92.94347083199995,78.61017487200017],[-92.97679602799994,78.60431549700003],[-93.21621660099991,78.58958567900014],[-93.28172766799989,78.59471263200005],[-93.3468318349999,78.608343817],[-93.47175045499989,78.65176015800016],[-93.47175045499989,78.65790436400012],[-93.44391842399995,78.65802643400009],[-93.37291419199997,78.66913483300011],[-93.34752356699994,78.678412177],[-93.37368730399989,78.68829987200009],[-93.52281653599988,78.67674388200008],[-93.53937740799994,78.678412177],[-93.55386308499989,78.68317291900009],[-93.58238684799989,78.69623444200006],[-93.65184485599991,78.70880768400015],[-93.75938880099991,78.75438060100011],[-93.81309973899991,78.767767645],[-93.77745520699995,78.78266022300006],[-93.56615149599993,78.78628164300012],[-93.16258704299995,78.73989492400015],[-93.06480872299997,78.74184804900001],[-93.0504451159999,78.74579498899999],[-93.04246985599994,78.75226471600008],[-93.04588782499985,78.76097239799999],[-93.03844153599997,78.767767645],[-93.08116614499988,78.77838776200007],[-93.3062231109999,78.8041445980001],[-93.3670955069999,78.82046133000001],[-93.5469457669999,78.83856842700011],[-93.77281653599991,78.83124420800011],[-93.87458248599987,78.83397044499999],[-93.90587317599991,78.84690989799999],[-93.93057206899991,78.86701080900004],[-93.96027584499984,78.88328685100008],[-93.99278723899991,78.89419179900015],[-94.06265214799996,78.9022484400001],[-94.2715551419999,78.96820709800012],[-94.29352779899992,78.98688385600009],[-94.21031653599997,79.00763580900009],[-94.02098548099988,79.02643463700004],[-93.93175208199995,79.04340241100012],[-93.80646725199992,79.047796942],[-93.68639075399992,79.05975983300011],[-93.64561926999994,79.05414459800012],[-93.62706458199995,79.05410390800013],[-93.60924231699997,79.056870835],[-93.59398352799991,79.06264883000016],[-93.5758357409999,79.08397044500013],[-93.47004146999988,79.12006256700009],[-93.46422278599994,79.13833242400015],[-93.43297278599997,79.15648021000004],[-93.38341223899994,79.16657135600012],[-93.3304744129999,79.1709658870001],[-93.22911536399994,79.17121002800003],[-93.08433997299994,79.152818101],[-93.0011287099999,79.15949127800013],[-92.8404434889999,79.14516836100016],[-92.81725012899994,79.14899323100016],[-92.77440344999988,79.16132233300011],[-92.75108801999997,79.16502513200008],[-92.52733313699986,79.16771067900005],[-92.29027258999992,79.15306224200005],[-91.88121497299989,79.16351959800012],[-91.57494055899986,79.18036530200011],[-91.37559973899991,79.19501373900012],[-91.2393285799999,79.19285716400013],[-90.96971594949997,79.20547109600001],[-90.7001033189999,79.21808502800009],[-90.52814693899992,79.220160223],[-90.38776607999989,79.23956940300012],[-90.36636308499996,79.24754466399999],[-90.37319902299987,79.24754466399999],[-90.41657467399995,79.2608096370001],[-90.76305091099994,79.24945709800012],[-91.04417883999989,79.25165436400012],[-91.35464433499992,79.23004791900003],[-91.74498450399992,79.217230536],[-91.88536536399991,79.220160223],[-92.08629309799991,79.20600006700009],[-92.35682125549995,79.22571442250008],[-92.6273494129999,79.24542877800015],[-92.67080644399994,79.25348541900009],[-92.69587154899995,79.26740143400018],[-92.66856848899997,79.2746035830001],[-92.60065670499998,79.30414459800006],[-92.56444251199989,79.31037018400004],[-92.13475501199991,79.30219147300012],[-92.13475501199991,79.3096377620001],[-92.15835527299996,79.31549713700007],[-92.17080644399996,79.31655508000001],[-92.18317623599988,79.31586334800006],[-92.16649329299986,79.320013739],[-92.14273027299996,79.32111237200014],[-92.11945553299994,79.3187523460001],[-92.08486894399994,79.3036156270001],[-92.06248938699994,79.30076732000005],[-91.91502844999984,79.30219147300012],[-91.84845943899987,79.31513092700014],[-91.82628333199989,79.31586334800006],[-91.83307857999992,79.31586334800006],[-91.65884355399993,79.33559804900008],[-91.49551347599993,79.33543528900013],[-91.17027747299991,79.35439687700013],[-91.14781653599991,79.36424388200008],[-91.14781653599991,79.35683828300006],[-91.14610755099991,79.35927969000004],[-91.14488684799989,79.36273834800004],[-91.14171301999991,79.36505768400018],[-91.13414466099997,79.36424388200008],[-91.13776607999992,79.36725495000017],[-91.14419511599993,79.37433502800003],[-91.14781653599991,79.37726471600014],[-91.12755286399991,79.3886579450001],[-91.12051347599991,79.39158763200014],[-91.16283118399994,79.39594147300012],[-91.32949785099996,79.3796247420001],[-91.46165930899988,79.3796247420001],[-91.7437231109999,79.36424388200008],[-91.80744381399987,79.34577057500006],[-91.83031165299988,79.34316640800013],[-92.05117753799993,79.35398997600014],[-92.16860917899986,79.35236237200012],[-92.39854895699993,79.37103913],[-92.49535071499986,79.365423895],[-92.54775956899994,79.36859772300005],[-92.58039303299998,79.3847516950001],[-92.56163489499991,79.39150625200014],[-92.49787350199998,79.39899323100002],[-92.4229630199999,79.417710679],[-92.39956620999993,79.42023346600011],[-92.35147050699995,79.41803620000012],[-92.27977454299995,79.42999909100014],[-92.23033606699988,79.43256256700006],[-92.24982662699998,79.44953034100003],[-92.28746497299997,79.45750560099998],[-92.60631262899997,79.45062897300006],[-92.84723873599992,79.41266510600015],[-92.9238175119999,79.41600169499999],[-92.95815995999996,79.42503489800002],[-93.0535375639999,79.48016998900015],[-93.06761633999992,79.48529694200015],[-93.08665930899991,79.48712799700003],[-93.11790930899988,79.48590729400011],[-93.13451087099995,79.48297760600009],[-93.14517167899987,79.47724030200011],[-93.14696204299986,79.46625397300006],[-93.13609778599997,79.45892975500006],[-93.11107337099985,79.44989655200013],[-93.08531653599992,79.43463776200018],[-93.02546139199985,79.40843333500014],[-93.00495357999992,79.39158763200014],[-93.09235592399989,79.37083567900012],[-93.38853919199994,79.34316640800013],[-93.37132727799994,79.35492584800012],[-93.31338456899994,79.37726471600014],[-93.26325436099985,79.40814850500001],[-93.23436438699994,79.41815827000009],[-93.23997962099992,79.43048737200002],[-93.25572669199988,79.44358958500003],[-93.27220618399988,79.451361395],[-93.29800370999989,79.45441315300008],[-93.32103430899988,79.45205312700013],[-93.34190833199995,79.44550202000006],[-93.37706458199992,79.43032461100007],[-93.41246497299991,79.41933828300002],[-93.42638098899991,79.40892161700013],[-93.43789628799993,79.39655182500009],[-93.4496150379999,79.38686758000013],[-93.49510657499987,79.36017487200012],[-93.5058487619999,79.35683828300006],[-93.5218806629999,79.35492584800012],[-93.57306881399985,79.35683828300006],[-93.62677975199992,79.365423895],[-93.65440833199992,79.36652252800003],[-93.6765030589999,79.35683828300006],[-93.66222083199992,79.35000234600007],[-93.66901607999995,79.34882233300013],[-93.68394934799989,79.34316640800013],[-93.6695857409999,79.339056708],[-93.65493730399989,79.33661530200004],[-93.64098059799994,79.33234284100014],[-93.62873287699995,79.32269928600009],[-93.65892493399988,79.31195709800006],[-93.72227942599991,79.30231354400009],[-93.78600012899997,79.28058502800003],[-93.92979895699989,79.25918203300007],[-94.0464574859999,79.2612165390001],[-94.13499915299991,79.27993398600007],[-94.15269934799991,79.28123607],[-94.21092688699994,79.27488841400005],[-94.19737708199997,79.28221263200005],[-94.17609615799988,79.2889671900001],[-94.16112219999985,79.29808177299999],[-94.16657467399989,79.31273021],[-94.16543535099996,79.32550690300003],[-94.1441137359999,79.33685944199999],[-94.00975501199989,79.37254466400003],[-93.87401282499991,79.391750393],[-93.84097245999993,79.39158763200014],[-93.84097245999993,79.39899323100002],[-94.09190833199997,79.391791083],[-94.48009192599994,79.42666250200004],[-94.5125626289999,79.41950104400016],[-94.49950110599985,79.41327545800011],[-94.49071204299989,79.40497467700014],[-94.48924719999991,79.395209052],[-94.49828040299994,79.3847516950001],[-94.48436438699984,79.37958405200011],[-94.47240149599992,79.38255442900014],[-94.46060136599992,79.38837311400009],[-94.44709225199998,79.39158763200014],[-94.4322810539999,79.38971588700015],[-94.41665605399993,79.38495514500005],[-94.38841712099986,79.37103913],[-94.4344376289999,79.36619700700011],[-94.52977454299995,79.34247467700003],[-94.96068274599992,79.29157135600018],[-94.98273678299992,79.27191803600012],[-95.00230872299989,79.26740143400018],[-95.11929277299993,79.28172435100008],[-95.2110082669999,79.28095123900015],[-95.23875891799985,79.2885195980001],[-95.22838294199997,79.29694245000006],[-95.21670488199987,79.30304596600003],[-95.20409094999988,79.30727773600013],[-95.19102942599991,79.3096377620001],[-95.19102942599991,79.31586334800006],[-95.22227942599997,79.31500885600015],[-95.25788326699984,79.317816473],[-95.29255123599992,79.32501862200014],[-95.32135982999995,79.33698151200018],[-95.29800370999996,79.34186432500015],[-95.27550208199995,79.34210846600008],[-95.25324459499993,79.33844635600002],[-95.23045813699989,79.33193594000015],[-95.2135310539999,79.33063385600006],[-95.19664466099991,79.33563873900009],[-95.16368567599994,79.35000234600007],[-95.18126380099997,79.35687897300006],[-95.28062903599988,79.35781484600015],[-95.29015051999997,79.3619652360001],[-95.28038489499994,79.37103913],[-95.28465735599994,79.37982819200006],[-95.29063880099994,79.38629791900014],[-95.29841061099987,79.39020416900014],[-95.30768795499992,79.39158763200014],[-95.29991614499991,79.39423248900012],[-95.28038489499994,79.40521881700009],[-95.3522029289999,79.40668366100014],[-95.38597571499989,79.39984772300012],[-95.39024817599991,79.37726471600014],[-95.56639563699994,79.39150625200014],[-95.64598548099991,79.39427317900011],[-95.67076575399989,79.40216705900009],[-95.6979060539999,79.40713125200013],[-95.75536048099991,79.40623607000005],[-95.7800186839999,79.41950104400016],[-95.77257239499994,79.42035553600009],[-95.75275631399992,79.42572663000013],[-95.77301998599992,79.43146393400012],[-95.7800186839999,79.43256256700006],[-95.75267493399993,79.43854401200015],[-95.69692949099993,79.44009023600002],[-95.67015540299994,79.44684479400013],[-95.70750891799987,79.46478913],[-95.71861731699991,79.46727122600011],[-95.73277747299994,79.468207098],[-95.76646887899994,79.47500234600012],[-95.7800186839999,79.48094310100005],[-95.75926673099991,79.48126862200009],[-95.73900305899991,79.485500393],[-95.72044837099989,79.49408600500011],[-95.70494544199988,79.50763580900018],[-95.72325598899994,79.5222028670001],[-95.73273678299995,79.53156159100013],[-95.7390844389999,79.54242584800012],[-95.69709225199988,79.54364655200006],[-95.6114802729999,79.559027411],[-95.16958574149993,79.58476390200003],[-94.72769120999993,79.61050039300007],[-94.63638261599996,79.63617584800012],[-94.34064693899992,79.68622467700006],[-94.32823645699997,79.69696686400006],[-94.33267167899996,79.70563385600015],[-94.3541153639999,79.72455475500009],[-94.36172441299993,79.73419830900013],[-94.30988521999993,79.74778880400011],[-94.29344641799995,79.75873444200006],[-94.30028235599985,79.77521393400015],[-94.31908118399991,79.78388092700006],[-94.34512285099987,79.78742096600003],[-94.37083899599992,79.78485748900012],[-94.38841712099986,79.77521393400015],[-94.38320878799996,79.77387116100006],[-94.36856035099994,79.76829661700008],[-94.41649329299986,79.75287506700012],[-94.57384192599994,79.74310944200009],[-94.5882869129999,79.73672109600007],[-94.60362708199995,79.71820709800015],[-94.6154679029999,79.71190013200011],[-94.69399980399993,79.70636627800009],[-94.71800696499989,79.70062897300012],[-94.7701716789999,79.68211497600011],[-95.14415442599994,79.65643952000015],[-95.1932673819999,79.64740631700012],[-95.52350826749992,79.6499087585001],[-95.85374915299992,79.65241120000016],[-96.13385982999992,79.73725006700013],[-96.1788630849999,79.74164459800012],[-96.21910559799989,79.73993561400012],[-96.23814856699987,79.7433942730001],[-96.25300045499995,79.75462474200013],[-96.25059973899991,79.76837799700006],[-96.25023352799987,79.77960846600013],[-96.25300045499995,79.78880442900011],[-96.26593990799995,79.79865143400004],[-96.2852270169999,79.80646393400004],[-96.4066462879999,79.83222077000006],[-96.49323482999995,79.8372256530001],[-96.46983801999997,79.8485375020001],[-96.41588294199994,79.85553620000017],[-96.3902074859999,79.864488023],[-96.43757076699984,79.86945221600014],[-96.54271399599989,79.84837474200013],[-96.58877519399994,79.85712311399999],[-96.58193925699993,79.864488023],[-96.58983313699989,79.87128327000012],[-96.59829667899993,79.87714264500006],[-96.60724850199995,79.88174062700001],[-96.61611894399991,79.88499583500005],[-96.59919186099984,79.8959821640001],[-96.58079993399988,79.90232982000005],[-96.56126868399991,79.90509674700007],[-96.50706946499986,79.90692780200008],[-96.47956295499992,79.91168854400017],[-96.40640214799996,79.91331614800002],[-96.3772680329999,79.90497467700011],[-96.3902074859999,79.88499583500005],[-96.36270097599996,79.88666413000006],[-96.30858313699989,79.90180084800006],[-96.28066972599993,79.9055036480001],[-96.17039954299986,79.90371328300002],[-96.13687089799993,79.91168854400017],[-96.20738684799991,79.93374258000007],[-96.55793209499987,79.94855377800006],[-96.59561113199996,79.96015045800006],[-96.61693274599992,79.97329336100002],[-96.65343176999988,80.00210195500016],[-96.67756100199989,80.015366929],[-96.64403235599985,80.02765534100006],[-96.3902074859999,80.04889557500003],[-96.56456458199993,80.05219147300005],[-96.6231176419999,80.04433828300007],[-96.66515051999997,80.04389069200009],[-96.72130286399997,80.054144598],[-96.7730199859999,80.07269928600012],[-96.80166581899988,80.09731679900001],[-96.78270423099985,80.10049062700007],[-96.77110755099994,80.11367422100012],[-96.7613419259999,80.129339911],[-96.7479548819999,80.14008209800012],[-96.71056067599994,80.14813873900006],[-96.36392167899987,80.1415062520001],[-96.01854407499991,80.07200755400008],[-95.70396887899992,80.05687083500008],[-95.67015540299994,80.04889557500003],[-95.67760169199991,80.04889557500003],[-95.46735592399995,80.04804108300011],[-95.16934160099993,80.03400299700017],[-94.95836341099997,80.04588450700011],[-94.84569251199994,80.04539622600012],[-94.42284094999988,79.98224518400006],[-94.3822322259999,79.98802317900011],[-94.42446855399989,80.00653717700011],[-94.44859778599994,80.01288483300006],[-94.50133216099994,80.01968008000007],[-94.56151282499991,80.03839752800015],[-94.64541581899987,80.05101146000014],[-94.75226803299995,80.08576080900009],[-94.8074438139999,80.0904808610001],[-94.8074438139999,80.09731679900001],[-94.54576575399994,80.15766022300014],[-94.0874731109999,80.17987702],[-94.10676021999983,80.18707916900014],[-94.49209550699996,80.2071800800001],[-94.50279700399989,80.21930573100018],[-94.54076087099989,80.22553131700015],[-94.5856827459999,80.22638580900006],[-94.61709550699993,80.2226016300001],[-94.69343014199985,80.18821849199999],[-94.95982825399992,80.14227936400003],[-95.40151933499989,80.12665436400012],[-95.65587317599993,80.176947333],[-95.69810950399994,80.17987702],[-95.67625891799992,80.19257233300009],[-95.5591934889999,80.21002838700004],[-95.33714758999989,80.20941803600007],[-95.28172766799992,80.21930573100018],[-95.23200436099984,80.2412783870001],[-95.26357988199993,80.25096263200004],[-95.30260169199988,80.24583567900005],[-95.3759659499999,80.22768789300014],[-95.56273352799988,80.22768789300014],[-95.57559160099993,80.23078034100003],[-95.59691321499989,80.24494049700014],[-95.61245683499988,80.24811432500012],[-95.88243567599991,80.20034414300007],[-95.96914628799993,80.2013613950001],[-96.32160396999987,80.2616234400001],[-96.5682673819999,80.27606842700006],[-96.56151282499985,80.2822940120001],[-96.48151607999995,80.31037018400012],[-96.46524003799993,80.32318756700015],[-96.49132239499988,80.32933177300009],[-96.57485917899996,80.33002350500004],[-96.68496660099986,80.34369538],[-96.63219153599991,80.364447333],[-96.57453365799992,80.36074453300014],[-96.51561438699989,80.34845612200009],[-96.45909583199995,80.34369538],[-96.45352128799992,80.35736725500013],[-96.42296301999991,80.35635000200006],[-96.32970130099989,80.33982982],[-96.24815833199997,80.33657461100013],[-96.21886145699995,80.34369538],[-96.26414954299986,80.36074453300014],[-96.28034420499992,80.36420319200015],[-96.25479081899994,80.37392812700001],[-96.16462154899989,80.38491445500014],[-96.14073645699992,80.38178131700009],[-96.10244706899988,80.38959381700009],[-95.94896399599992,80.39154694200012],[-95.80992591099988,80.36945221600006],[-95.66844641799992,80.37164948100003],[-95.56427975199992,80.35248444200006],[-95.4374080069999,80.34369538],[-95.44640051999991,80.35244375200007],[-95.46515865799998,80.36469147300011],[-95.47215735599985,80.37164948100003],[-95.4667048819999,80.37299225500011],[-95.45173092399997,80.37848541900014],[-95.48387610599994,80.38996002800009],[-95.56407630099997,80.39004140800007],[-95.68614661399992,80.40428294499999],[-95.72996985599987,80.41535065300012],[-95.79222571499987,80.45136139500008],[-96.05870520699992,80.4819196640001],[-96.10216223899994,80.49457428600009],[-95.96458899599988,80.50946686400012],[-95.95441646999983,80.51284414300015],[-95.93765214799993,80.52244700700014],[-95.93175208199989,80.53538646000014],[-95.92194576699987,80.542425848],[-95.90355383999992,80.54291413],[-95.97321529899989,80.55304596600014],[-96.00739498599988,80.5641136740001],[-96.02700761599993,80.583929755],[-95.62633216099997,80.59149811400013],[-95.2960098949999,80.58763255400005],[-95.05516516799986,80.60236237200002],[-94.98151607999989,80.60374583500011],[-94.76170813699989,80.56924062700001],[-94.57599850199995,80.5553653020001],[-94.28677324099988,80.56655508000004],[-94.03205318899992,80.54873281500015],[-94.01573645699992,80.55292389500009],[-94.00332597599987,80.55792877800012],[-93.98656165299984,80.55817291900014],[-93.96983801999991,80.55499909100008],[-93.95767167899993,80.54975006700003],[-93.97134355399987,80.54291413],[-93.93488521999993,80.52191803600006],[-93.88365637899996,80.520493882],[-93.78575598899994,80.52928294500003],[-93.78575598899994,80.53676992400001],[-94.00548255099997,80.59137604400016],[-94.37539628799996,80.61741771000005],[-94.52106686099985,80.60492584800015],[-94.54279537699992,80.60789622600004],[-94.56143144399991,80.61505768400009],[-94.57774817599993,80.62832265800013],[-94.6008194649999,80.6418317730001],[-94.65599524599992,80.65204498900015],[-94.67707271999986,80.66583893400006],[-94.65343176999991,80.68378327],[-94.62018795499992,80.69342682500015],[-94.3469945954999,80.70042552300005],[-94.07380123599987,80.70742422100012],[-94.12877356699994,80.72821686400002],[-94.25503495999993,80.72321198100015],[-94.31395423099988,80.72728099200012],[-94.31395423099988,80.7347679710001],[-94.31061764199987,80.74583567900014],[-94.33429928299998,80.74957916900017],[-94.3890681629999,80.74843984600012],[-94.47508704299989,80.73151276200007],[-94.49209550699996,80.7347679710001],[-94.5139867829999,80.72589752800015],[-94.69517981699997,80.73411692900005],[-95.02476966099988,80.77142975500011],[-95.04015051999994,80.78253815300003],[-94.8972875639999,80.79588450700005],[-94.85582434799989,80.80988190300012],[-94.88744055899988,80.81976959800012],[-94.9283748039999,80.82005442900005],[-95.13914954299992,80.79726797100012],[-95.49974524599986,80.80801015800013],[-95.53359941299993,80.82412344000004],[-95.51935787699992,80.83095937700011],[-95.52676347599993,80.8371442730001],[-95.48070227799987,80.84931061400009],[-95.19225012899992,80.87238190300015],[-95.15001380099991,80.88556549700009],[-95.4352107409999,80.88841380400014],[-95.48521887899992,80.90607330900013],[-95.2991430329999,80.94839101800015],[-95.27114824099995,80.96181875200016],[-95.23184160099987,81.01532623900006],[-95.16783606699988,81.02912018400018],[-95.03868567599997,81.03522370000015],[-94.90298417899987,81.06370677300008],[-94.86314856699988,81.06460195500016],[-94.54556230399989,81.0332705750001],[-94.5265193349999,81.02582428600014],[-94.50910396999993,81.02179596600017],[-94.47350012899996,81.02195872600014],[-94.4573461579999,81.01532623900006],[-94.50523841099991,80.99730052300013],[-94.5125626289999,80.987982489],[-94.50422115799995,80.97874583500014],[-94.48452714799993,80.97235748900003],[-94.44709225199998,80.96751536700012],[-94.40831458199993,80.96918366100014],[-94.37067623599987,80.97492096600003],[-94.33446204299995,80.98550039300007],[-94.30028235599985,81.00165436400012],[-94.30003821499992,81.01300690300009],[-94.27863521999987,81.017767645],[-94.25182044199997,81.01703522300006],[-94.21540279899989,81.0057640650001],[-94.18248450399992,81.00556061400012],[-94.14932206899987,81.00942617400011],[-94.12901770699989,81.01532623900006],[-94.10496985599985,81.03058502800003],[-93.93659420499992,81.02277252800006],[-93.93659420499992,81.02895742400001],[-94.07380123599987,81.04262929900015],[-94.03880774599986,81.0523949240001],[-93.90929114499993,81.04262929900015],[-93.97020423099994,81.05809153900007],[-94.17015540299988,81.06370677300008],[-94.18150794199993,81.06586334800006],[-94.20392818899987,81.0752627620001],[-94.2356664699999,81.07949453300002],[-94.2716365229999,81.08893463700004],[-94.34422766799989,81.09813060100011],[-94.35993404899995,81.10472239799999],[-94.34129798099985,81.111517645],[-94.30239824099996,81.12270742400001],[-94.15566972599993,81.09784577000006],[-93.82355709499987,81.10472239799999],[-93.49156653599991,81.06997304900004],[-93.49156653599991,81.0773786480001],[-93.50104732999992,81.07884349200008],[-93.50670325399992,81.08124420800011],[-93.5188695949999,81.09100983300006],[-93.31354732999992,81.08665599200008],[-93.15575110599991,81.09784577000006],[-93.16974850199998,81.10008372600005],[-93.17650305899991,81.10236237200003],[-93.18309485599991,81.10529205900006],[-93.1680395169999,81.109849351],[-93.13727779899989,81.11424388200008],[-93.12165279899992,81.11831289300012],[-93.13508053299992,81.12759023600007],[-93.15025794199991,81.13214752800003],[-93.16641191299995,81.13344961100012],[-93.18309485599991,81.13263580900012],[-93.16006425699993,81.1452497420001],[-93.12437903599988,81.149603583],[-93.10000566299992,81.15643952],[-93.11107337099985,81.17670319200012],[-93.1441951159999,81.19114817900008],[-93.21735592399996,81.19065989799999],[-93.25202389199984,81.20026276200015],[-93.2262263659999,81.21198151200015],[-93.2171931629999,81.21454498900006],[-93.57896887899997,81.22406647300005],[-93.77660071499994,81.20709870000007],[-93.92056230399993,81.20954010600012],[-94.16637122299993,81.22321198100015],[-94.33372962099992,81.24384186400009],[-94.39586341099994,81.26170482000005],[-94.37987219999994,81.280951239],[-94.36025956899996,81.29291413000011],[-94.2503962879999,81.32245514500009],[-94.24478105399989,81.32925039300004],[-94.25446529899993,81.33637116100006],[-94.2694392569999,81.34198639500006],[-94.27985592399997,81.34422435100005],[-94.24278723899997,81.36078522300012],[-94.18846594999994,81.36664459800006],[-93.92804928299988,81.35854726800011],[-93.66429602799992,81.33942291900014],[-93.59552975199995,81.31696198100015],[-93.55980383999992,81.31012604400014],[-93.56663977799994,81.30329010600003],[-93.55304928299998,81.30829498900006],[-93.52293860599985,81.31574127800006],[-93.50865637899993,81.31696198100015],[-93.4967341789999,81.32025788],[-93.48753821499993,81.32746002800003],[-93.48546301999991,81.33478424700003],[-93.49498450399992,81.33808014500006],[-93.51402747299991,81.34170156500012],[-93.53380286399994,81.35122304900013],[-93.5520727199999,81.36432526200008],[-93.56663977799994,81.3790550800001],[-93.5477595689999,81.3849958350001],[-93.5266820949999,81.38711172100012],[-93.25767981699993,81.3734398460001],[-93.09630286399988,81.34747955900009],[-92.77293860599991,81.31769440300009]]],[[[-69.68753007699993,83.11652252800009],[-69.65774492099993,83.10521067900011],[-69.67756100199995,83.10529205900009],[-69.69635982999996,83.10297272300012],[-69.73346920499989,83.09214915600013],[-69.71719316299996,83.08576080900012],[-69.68260657499988,83.08270905200011],[-69.6651912099999,83.07786692900005],[-69.69265702999985,83.07037995000017],[-69.75735429599987,83.06346263200008],[-69.77444413999993,83.05121491100012],[-69.69876054599993,83.05121491100012],[-69.70189368399991,83.04889557500015],[-69.67617753799996,83.04503001500012],[-69.48338782499988,83.0456403670001],[-69.45169023299991,83.03697337400011],[-69.50300045499992,83.03290436400015],[-69.60574296799987,83.00596751500007],[-69.65774492099993,83.00279368700002],[-69.61701412699995,82.989935614],[-69.21438554599993,83.01349518400004],[-69.03929602799985,83.04576243700008],[-68.99990800699995,83.04234446800017],[-68.97634843699993,83.02647532800013],[-68.98615475199995,82.99595774900011],[-68.95368404899995,82.98314036700008],[-68.67943274599992,82.98314036700008],[-68.6299128899999,82.98973216400005],[-68.63613847599996,82.98973216400005],[-68.53372148299985,83.00962962400006],[-68.1717830069999,82.99913157800016],[-68.1432999339999,82.98973216400005],[-68.1675105459999,82.97081126500002],[-68.19107011599993,82.94818756700006],[-68.13186601499984,82.93317291900003],[-68.06619218699984,82.9398054060001],[-67.99958248599995,82.95396556200002],[-67.59683183499996,82.97117747600012],[-67.18024654899996,82.933294989],[-67.11546790299988,82.94818756700006],[-67.1179499989999,82.95990631700015],[-67.09772701699995,82.963568427],[-66.9372859369999,82.95433177300013],[-66.96930904899989,82.94078196800015],[-66.97891191299996,82.93451569200012],[-66.89533443899992,82.92540110900005],[-66.85244706899994,82.92601146],[-66.78506425699993,82.95836009300011],[-66.74002031199987,82.95600006700015],[-66.65615800699995,82.94135163000013],[-66.40286210799988,82.94322337400011],[-66.36270097599987,82.93370189000011],[-66.32119706899988,82.93736399900014],[-66.29983476499993,82.93451569200012],[-66.31810462099988,82.9268659530001],[-66.38919023299985,82.92088450700008],[-66.37795976499984,82.91539134300014],[-66.36611894399987,82.91148509300014],[-66.3414607409999,82.90721263200014],[-66.36278235599985,82.89411041900017],[-66.80691484299987,82.83148834800006],[-66.80011959499984,82.82465241100014],[-66.84626217399996,82.81211985900012],[-67.15046139199995,82.79266998900015],[-67.24665279899992,82.77020905200014],[-67.4881892569999,82.75926341399999],[-67.54010982999989,82.75018952000009],[-67.59959876199991,82.75226471600007],[-67.67971757699988,82.73859284100014],[-67.78783118399988,82.73729075700005],[-67.8684382799999,82.72101471600003],[-68.14834550649988,82.70290761949998],[-68.42825273299985,82.6848005230001],[-68.48525956899996,82.67027415600008],[-68.63727779899997,82.653306382],[-68.67145748599998,82.63971588700004],[-68.61770585799991,82.63043854400009],[-68.22581946499992,82.63977014099999],[-67.8339330719999,82.64910173800011],[-67.4420466789999,82.65843333500011],[-67.26235917899987,82.693101304],[-67.14631100199992,82.69786204600008],[-67.10232499899989,82.71080149900008],[-66.86013749899988,82.72418854400009],[-66.6676326159999,82.71185944200015],[-66.63565019399991,82.72162506700009],[-66.64529374899988,82.72654857000005],[-66.6555476549999,82.72935618700009],[-66.66616777299996,82.73021067900002],[-66.67723548099988,82.72907135600015],[-66.66022701699993,82.74803294499998],[-66.62946529899995,82.75828685100011],[-66.24052893799995,82.80031972850013],[-65.85159257699988,82.84235260600015],[-65.49250240799995,82.84308502800017],[-65.4569392569999,82.83148834800006],[-65.47341874899988,82.82261790600002],[-65.52586829299993,82.803574937],[-65.4928279289999,82.78534577000015],[-65.4448542959999,82.77745189000015],[-65.1553035149999,82.770005601],[-65.20315507699993,82.78306712400017],[-65.30728105399993,82.78819407800006],[-65.35452226499989,82.803574937],[-65.32111568899992,82.80857982000008],[-65.1946101549999,82.84699127800017],[-65.16445878799988,82.85101959800015],[-65.10065670499995,82.85199616100012],[-65.14480546799993,82.86676666900009],[-65.25763912699992,82.8632673200001],[-65.30614173099988,82.87242259300008],[-65.27611243399994,82.87872955900004],[-65.20169023299988,82.881048895],[-65.1323949859999,82.89940013200005],[-64.69668535099993,82.90977610900013],[-64.65566972599993,82.9003766950001],[-64.6808162099999,82.88523997600011],[-64.71524003799993,82.87950267100014],[-64.90314693899994,82.88287995000017],[-64.93679765499988,82.87242259300008],[-64.8865046869999,82.86009349200005],[-64.7102758449999,82.85875071800014],[-64.71914628799993,82.84979889500012],[-64.75125077999989,82.83148834800006],[-64.71019446499992,82.81480540600002],[-64.57681230399987,82.79425690300017],[-64.48904374899988,82.76756419500005],[-64.44290117099986,82.76048411700002],[-64.40241451699993,82.770005601],[-64.40729732999989,82.77313873900006],[-64.41673743399991,82.78082916900009],[-64.42227128799993,82.78367747600012],[-64.39305579299989,82.79222239800005],[-64.32843990799995,82.79083893400015],[-64.13626054599993,82.8373884140001],[-63.79167639899987,82.83205801000004],[-63.44709225199991,82.82672760600015],[-63.40802975199995,82.81822337400003],[-63.380767381999966,82.803574937],[-63.38988196499986,82.79588450700003],[-63.392608201999934,82.78742096600014],[-63.38939368399988,82.7785505230001],[-63.380767381999966,82.770005601],[-63.433990037999926,82.75145091399999],[-63.490020311999864,82.74103424700009],[-63.85305742099987,82.72162506700009],[-63.651519334999904,82.71775950699998],[-63.5768123039999,82.70246002800003],[-63.53840084499989,82.70115794500013],[-63.54385331899991,82.696519273],[-63.55361894399996,82.68541087400015],[-63.558867967999845,82.68065013200008],[-63.53933671799987,82.6757673200001],[-63.48318437399987,82.68065013200008],[-63.464426235999895,82.6787783870001],[-63.43215898299988,82.66917552300013],[-63.32168535099993,82.66229889500012],[-63.229888475999864,82.64655182500015],[-63.26248124899985,82.62938060100012],[-63.30203202999988,82.62364329600017],[-63.380767381999966,82.62535228100016],[-63.370635545999896,82.6117617860001],[-62.96267656199992,82.59349192900014],[-62.92825273299988,82.57078685099998],[-62.959868943999965,82.56981028900013],[-63.000721808999906,82.56358470300016],[-63.0395808579999,82.55255768400012],[-63.06545976499984,82.53729889500015],[-63.06668046799984,82.5301374370001],[-63.06265214799989,82.52326080900009],[-63.06159420499991,82.51557038000009],[-63.082427537999905,82.49766673400002],[-63.08967037699992,82.48899974200013],[-63.10024980399987,82.48289622600014],[-63.120676235999944,82.48204173400013],[-63.120676235999944,82.47581614800008],[-63.09333248599997,82.47581614800008],[-63.09333248599997,82.4683698590001],[-63.309478318999965,82.4609235700001],[-63.34695390499988,82.45514557500015],[-63.3733210929999,82.44102610900002],[-63.03498287699989,82.456732489],[-62.989735480999855,82.4683698590001],[-62.9013972649999,82.51146067900011],[-62.869903123999904,82.516791083],[-62.84105383999986,82.51817454600017],[-62.8326716789999,82.516791083],[-62.82770748599995,82.51264069200015],[-62.824370897999934,82.50071849200009],[-62.819610154999936,82.4963239600001],[-62.79775956899987,82.49009837400017],[-62.72903398299988,82.48887767100014],[-62.73574785099993,82.49705638200005],[-62.74380449099988,82.50299713700018],[-62.75324459499989,82.507269598],[-62.76439368399991,82.50995514500006],[-62.73928788999993,82.52342357000005],[-62.45700029199995,82.5266380880001],[-62.17471269399987,82.52985260600013],[-62.17471269399987,82.52362702],[-62.301177537999905,82.52122630400008],[-62.33181718699992,82.50995514500006],[-62.32559160099995,82.50250885600009],[-62.334787563999924,82.49827708500007],[-62.34170488199993,82.49351634300007],[-62.35228430899988,82.48204173400013],[-62.25739498599992,82.48969147300006],[-62.2368464829999,82.50250885600009],[-62.2431534499999,82.50401439000014],[-62.257313605999855,82.50995514500006],[-62.09902910099989,82.50995514500006],[-62.101592576999906,82.50617096600014],[-62.105865037999905,82.4963239600001],[-61.84237626849992,82.49260081550013],[-61.57888749899987,82.48887767100014],[-61.57022050699987,82.48509349200013],[-61.34121660099988,82.45018138200011],[-61.13699296799994,82.3823102890001],[-61.10570227799988,82.36143626500014],[-61.085479295999846,82.33116282800012],[-61.086171027999875,82.30711497600011],[-61.09890702999985,82.28021881700015],[-61.118682420999875,82.25836823100009],[-61.140410936999835,82.2492536480001],[-61.16047115799989,82.24595774900017],[-61.312408006999924,82.19721100500006],[-61.67186438699994,82.16830068600012],[-62.031320766999954,82.13939036700012],[-61.99294999899985,82.12938060100005],[-61.91079667899996,82.12425364800013],[-61.87307695199988,82.112738348],[-61.913563605999904,82.09784577000015],[-62.002349412999955,82.08665599200013],[-62.08592688699991,82.05963776200016],[-62.257639126999976,82.02354564000014],[-62.39041093699987,82.01585521000011],[-62.47581946499988,82.02277252800012],[-62.497873501999884,82.01963939000014],[-62.51223710799987,82.01268138200004],[-62.51195227799994,82.00584544500013],[-62.490061001999884,82.00287506700012],[-62.51480058499987,81.98704661699998],[-62.77987626849988,81.95028310750014],[-63.04495195199988,81.913519598],[-63.038116014999865,81.913519598],[-63.11693274599991,81.91132233300011],[-63.51856441949991,81.8550072285001],[-63.92019609299993,81.79869212400017],[-64.1229548819999,81.80316803600014],[-64.28604081899996,81.83116282800016],[-64.3260798819999,81.83091868700002],[-64.30825761599993,81.81952545800006],[-64.12063554599985,81.76947663000013],[-64.14614824099992,81.75324127800009],[-64.1865535149999,81.74498118700009],[-64.30174719999994,81.73847077000002],[-64.37258867099993,81.72496165600012],[-64.78058834499993,81.73102448100003],[-64.88113359299984,81.75360748900002],[-64.92214921799987,81.75792064000002],[-65.04629472599993,81.74900950700008],[-65.37503007699985,81.76268138200011],[-65.36497962099989,81.75975169499999],[-65.35594641799986,81.75531647300004],[-65.34793046799993,81.74913157800012],[-65.34085038999987,81.74156321800011],[-65.36123613199993,81.73436107000008],[-65.70392818899992,81.71438222850004],[-66.04662024599992,81.69440338700012],[-66.00576738199987,81.68296946800014],[-65.8686824209999,81.69440338700012],[-65.70742753799993,81.68012116100012],[-65.34085038999987,81.69440338700012],[-65.37405351499986,81.68052806200002],[-65.85814368399994,81.62726471600013],[-65.92996171799993,81.63975657800016],[-65.94603430899991,81.65391673400008],[-65.99974524599989,81.65436432500016],[-66.15066484299984,81.627875067],[-66.3898005849999,81.62034739800005],[-66.6249080069999,81.62287018400015],[-67.07249915299991,81.61102936399999],[-67.37281246649988,81.60219961150001],[-67.6731257799999,81.5933698590001],[-67.94316565649987,81.5782941755001],[-68.21320553299991,81.56321849200008],[-68.57825002066659,81.61603424700006],[-68.94329450833322,81.66885000200011],[-69.30833899599989,81.72166575700003],[-69.2512914699999,81.70030345300013],[-68.8203425769999,81.63346995650006],[-68.38939368399986,81.56663646000007],[-68.35623124899993,81.54295482000008],[-68.8558650379999,81.55036041900014],[-68.8558650379999,81.54295482000008],[-68.58055579299992,81.51609935100008],[-68.14331349699987,81.53453196833334],[-67.70607120099993,81.55296458566671],[-67.26882890499986,81.57139720300007],[-66.9638972644999,81.55131663649998],[-66.6589656239999,81.53123607000008],[-66.60830644399994,81.51622142100014],[-66.65408281199984,81.49986399900003],[-66.94880123599992,81.47565338700004],[-67.11367753799988,81.46385325700008],[-67.2843318349999,81.44249095300002],[-67.66458085849993,81.40792470950005],[-68.0448298819999,81.3733584660001],[-68.14504960799991,81.35069407800016],[-68.25503495999993,81.34459056200016],[-68.44066321499989,81.31134674700014],[-68.57526607999992,81.30333079600003],[-68.56843014199993,81.30333079600003],[-68.62173417899987,81.29401276200015],[-68.73363196499989,81.29197825700014],[-68.81647701699993,81.27619049700009],[-68.87946529899995,81.27879466400002],[-68.93561764199984,81.26780833500014],[-69.02029374899985,81.26178620000002],[-69.42507890499988,81.27671946800017],[-69.47341874899986,81.26178620000002],[-69.43626868399987,81.25169505400008],[-69.35171464799996,81.25181712400006],[-69.3151749339999,81.24192942900011],[-69.36676998599994,81.24046458500005],[-69.58006751199991,81.21190013200008],[-69.70002193899992,81.21202220300013],[-69.92373613199995,81.18817780200006],[-70.16482499899988,81.19371165600008],[-70.21328691299996,81.17987702000009],[-70.07103430899988,81.16205475500011],[-69.63727779899993,81.17987702000009],[-69.66112219999992,81.17173899900015],[-69.74006100199998,81.1611188820001],[-69.81753495999993,81.14122142100003],[-69.99978593699987,81.1161563170001],[-70.02025305899994,81.105943101],[-69.63231360599991,81.13865794500012],[-69.5342097649999,81.17454661700009],[-69.48220781199984,81.18480052300005],[-69.05841020449992,81.21785106000014],[-68.63461259699992,81.25090159700015],[-68.21081498949988,81.28395213400013],[-67.78701738199996,81.31700267100014],[-67.77928626199994,81.32135651200004],[-67.49067135299993,81.34841543150013],[-67.20205644399994,81.37547435100011],[-66.83722896999987,81.39667389500002],[-66.52794348849989,81.42141347850004],[-66.2186580069999,81.44615306200016],[-65.95950273299988,81.46385325700008],[-65.73574785099987,81.49327220300016],[-65.24697831899988,81.51093170800009],[-64.9348852199999,81.53453196800011],[-64.5460505849999,81.55036041900014],[-64.53075110599993,81.54686107000003],[-64.5205378899999,81.53843821800011],[-64.51097571499992,81.52830638200005],[-64.4976293609999,81.51935455900012],[-64.46174068899988,81.50592682500003],[-64.44701087099992,81.49669017100017],[-64.43594316299988,81.48151276200018],[-64.44900468699986,81.47052643400012],[-64.46816972599993,81.46141185100014],[-64.69212805899988,81.39081452000006],[-65.1163630849999,81.33283112200009],[-65.40005449099996,81.26951732000005],[-65.57673092399997,81.25181712400006],[-65.67092851499987,81.2570661480001],[-65.87136796799987,81.22960032800007],[-65.98892167899987,81.22825755399998],[-66.10635331899991,81.19749583500011],[-66.24783281199987,81.17816803600009],[-66.27253170499995,81.16270579600014],[-66.29670162699995,81.15269603100008],[-66.46393795499995,81.121568101],[-66.4805395169999,81.11273834800012],[-66.5121150379999,81.09105052300005],[-66.53001868399984,81.08246491100012],[-66.67210852799987,81.03986237200009],[-66.87165279899989,81.01365794500005],[-67.23493404899992,80.94049713700018],[-67.56301835799991,80.94599030200011],[-67.60887610599988,80.9334170590001],[-67.5915828119999,80.92291901200015],[-67.53319251199989,80.89866771000005],[-67.56672115799992,80.88361237200014],[-67.6057836579999,80.87120189],[-67.6839900379999,80.85765208500005],[-67.78091386599996,80.85887278899999],[-67.83275305899988,80.85394928600012],[-67.86278235599991,80.83722565300017],[-67.84333248599992,80.8293317730001],[-67.85374915299991,80.82282135600012],[-67.92845618399991,80.81329987200003],[-67.98501542899993,80.79645416900003],[-68.27936764199993,80.75987376500008],[-68.40335038999993,80.72117747600012],[-68.47606360599988,80.71067942900008],[-68.58454342399989,80.6828473980001],[-68.65330969999988,80.67613353100016],[-68.77326412699992,80.63922760600009],[-68.9725642569999,80.61749909100001],[-68.9538874989999,80.60761139500012],[-68.93362382699989,80.60398997600005],[-68.89061438699986,80.60447825700005],[-68.92601477799988,80.58336009300005],[-69.13296464799987,80.53624095300013],[-69.16812089799993,80.52208079600001],[-69.21621660099989,80.48908112200014],[-69.26707923099994,80.47101471600003],[-69.27920488199993,80.46190013200014],[-69.28604081899994,80.45103587400014],[-69.29104570199988,80.43992747600012],[-69.29775956899994,80.43003978100002],[-69.33177649599986,80.4089216170001],[-69.37417558499993,80.39740631700006],[-69.6660050119999,80.35521067900012],[-69.98774166549988,80.35661448750014],[-70.30947831899991,80.35801829600008],[-70.29495195199988,80.37457916900014],[-70.23810787699992,80.40326569200002],[-70.2195124989999,80.41950104400014],[-70.26952063699994,80.4534772810001],[-70.3339737619999,80.47654857000005],[-70.7882380849999,80.57050202],[-70.80768795499989,80.57086823100002],[-70.82445227799991,80.56696198100003],[-70.82961992099993,80.55601634300017],[-70.81908118399986,80.54901764500009],[-70.7748103509999,80.53843821800001],[-70.72191321499994,80.5337995460001],[-70.68301347599994,80.52574290600016],[-70.57900956899991,80.48725006700009],[-70.51101640499985,80.47349681200016],[-70.48021399599989,80.46043528899999],[-70.45482337099986,80.43638743700014],[-70.44607499899988,80.4330915390001],[-70.42849687399985,80.43101634300008],[-70.37035071499992,80.41266510600003],[-70.43997148299991,80.39752838700004],[-70.45913652299996,80.38532135600015],[-70.46853593699988,80.37193431200016],[-70.47126217399995,80.35887278899999],[-70.4646296869999,80.34874095300013],[-70.44607499899988,80.34373607],[-70.4529109369999,80.34373607],[-70.01589921799984,80.28453196800008],[-69.95946204299989,80.26182689000014],[-69.99738521999993,80.243882554],[-70.08206132699993,80.23057689000008],[-70.15908769399991,80.1924909530001],[-70.21076412699993,80.188177802],[-70.47923743399991,80.19769928600009],[-70.74771074099988,80.20722077000009],[-71.10037187399988,80.186021226],[-71.35378984299993,80.15228913],[-71.5007624989999,80.12128327000006],[-71.73460852799988,80.11786530200006],[-71.84072831899994,80.13829173400013],[-71.85354570199988,80.14293040600016],[-71.9053035149999,80.17247142100003],[-71.93521074099996,80.18146393400004],[-71.99787350199995,80.19163646],[-72.16458085799988,80.19452545800011],[-72.33283443899995,80.22984446800014],[-72.37946529899995,80.22776927300013],[-72.4198298819999,80.21344635600003],[-72.0235896479999,80.1508649760001],[-71.92943274599988,80.12169017100017],[-71.89846757699988,80.11786530200006],[-71.89846757699988,80.11102936400015],[-72.10732988199992,80.08592357000005],[-72.39187577999986,80.090521552],[-72.39187577999986,80.08368561400005],[-72.32363847599986,80.08368561400005],[-72.33914140499988,80.07404205900009],[-72.34695390499988,80.07139720300002],[-72.35716712099992,80.07005442900011],[-72.34203040299991,80.06256745000015],[-72.16787675699993,80.05646393400015],[-71.84231523299988,80.06236399900011],[-71.71279863199993,80.07408274900007],[-71.52432206899994,80.06822337400014],[-71.32412675699986,80.09178294500002],[-71.00666256399995,80.1225039730001],[-70.64822343699988,80.14288971600017],[-70.60716712099992,80.12840403900012],[-70.58918209499987,80.11827220300016],[-70.56362870999986,80.11041901200018],[-70.53669186099992,80.10533274900014],[-70.5143123039999,80.10350169499999],[-70.5034480459999,80.09837474200006],[-70.49697831899991,80.07273997600011],[-70.48696855399993,80.06260814000014],[-70.52928626199991,80.04389069200009],[-70.63565019399991,80.0402692730001],[-70.67878170499992,80.01544830900015],[-70.67194576699993,80.00861237200014],[-70.70535234299987,79.99156321800008],[-71.04067949149993,79.9669457050001],[-71.37600663999987,79.94232819200009],[-71.4148249989999,79.93138255400011],[-71.44876054599985,79.91608307500015],[-71.45962480399993,79.89874909100017],[-71.42874101499987,79.88776276200012],[-71.17853756399998,79.9163679060001],[-70.91161048099985,79.89256419500009],[-70.93325761599993,79.87999095300002],[-70.9895727199999,79.85565827000015],[-71.00096594999988,79.8406843120001],[-71.01882890499994,79.82294342700011],[-71.08820553299998,79.81561920800003],[-71.09032141799987,79.8018659530001],[-71.14240475199995,79.78949616100006],[-71.38259843699987,79.76300690300017],[-71.48257402299993,79.73777903900013],[-71.94050045499995,79.7020124370001],[-72.01878821499992,79.68467845300002],[-72.12702389199987,79.68065013200014],[-72.23167883999986,79.6625837260001],[-72.39187577999986,79.68646881699999],[-72.62840735599994,79.67902252800012],[-72.9201960929999,79.70958079600014],[-72.95034745999993,79.72162506700006],[-72.94741777299993,79.7416852890001],[-72.96169999899989,79.75254954600011],[-72.99868730399996,79.76178620000015],[-73.01565507699993,79.76837799700006],[-73.02782141799992,79.7789167340001],[-73.0364070299999,79.78990306200016],[-73.04666093699984,79.79840729400009],[-73.06350663999984,79.8018659530001],[-73.06350663999984,79.80931224200008],[-72.94302324099993,79.80845774900017],[-72.90583248599992,79.816148179],[-72.93097896999993,79.82359446800017],[-73.19090735599987,79.82322825700004],[-73.38516191299989,79.83860911699999],[-73.81326249899985,79.82233307500015],[-73.86546790299985,79.83726634300011],[-73.83682206899988,79.84662506700012],[-73.80508378799993,79.850287177],[-73.74193274599995,79.85032786699999],[-73.76858476499987,79.864976304],[-74.22777258999992,79.89569733300009],[-74.3259578119999,79.8744570980001],[-74.58541826099994,79.86239248250003],[-74.8448787099999,79.85032786699999],[-74.79202226499993,79.844183661],[-74.76854407499988,79.83763255400011],[-74.77033443899995,79.82359446800017],[-74.6965632799999,79.79844798400008],[-74.67015540299994,79.79572174700012],[-74.35204016799986,79.80931224200008],[-73.96814938049985,79.78514232000008],[-73.58425859299984,79.76097239800005],[-73.48184160099993,79.76097239800005],[-73.38333085799994,79.77562083500005],[-73.3514705069999,79.76837799700006],[-73.3769832019999,79.75682200700011],[-73.38626054599987,79.75470612200012],[-73.38084876199991,79.7469343120001],[-73.36502031199987,79.73472728100005],[-73.35830644399994,79.72740306200002],[-73.36001542899993,79.7171491560001],[-73.33934485599991,79.71031321800008],[-73.29006913999991,79.7006696640001],[-73.2962133449999,79.69330475500011],[-73.2667537099999,79.682603257],[-73.20042883999986,79.67064036700006],[-73.17336992099993,79.65855540600016],[-73.16380774599995,79.64463939000007],[-73.16193600199998,79.62620677300005],[-73.16926021999987,79.6086286480001],[-73.18704179599987,79.59703196800008],[-73.14606686099995,79.58567942900011],[-73.1323949859999,79.58002350500011],[-73.12710527299993,79.57432689000014],[-73.12531490799995,79.56635163],[-73.12783769399996,79.55919017100014],[-73.13548743399988,79.55613841400007],[-73.14850826699987,79.552923895],[-73.1738582019999,79.53880442900008],[-73.18724524599992,79.53563060100011],[-73.20360266799992,79.53424713700012],[-73.31688391799992,79.50914134300005],[-73.4629613919999,79.49986399900008],[-73.59548906199983,79.50792064000002],[-73.73371334499984,79.49616120000003],[-73.79653886599989,79.51109446800008],[-73.90469316299988,79.55442942900005],[-73.96580969999994,79.56358470300013],[-74.00259355399993,79.54246653900013],[-73.98440507699993,79.53143952000006],[-73.97150631399991,79.519232489],[-73.95107988199993,79.48749420800014],[-73.95954342399989,79.47154368700014],[-73.99221757699993,79.45868561400003],[-74.03026282499991,79.4500593120001],[-74.28201249899988,79.43992747600005],[-74.39240475199992,79.45172760600012],[-74.69611568899992,79.4500186220001],[-74.79067949099993,79.47553131700003],[-74.91323808499988,79.48875560100005],[-74.94790605399996,79.50153229400009],[-74.9416804679999,79.50254954600014],[-74.92804928299995,79.50767649900017],[-74.95824133999986,79.51532623899999],[-74.99636796799984,79.51341380400004],[-75.0345759759999,79.50523509300014],[-75.06460527299996,79.49408600500011],[-75.05374101499987,79.48570384300014],[-75.0151667959999,79.47553131700003],[-75.01016191299993,79.47105540600013],[-75.01016191299993,79.46592845300012],[-75.00967363199996,79.46165599200012],[-74.99404863199986,79.45836009300008],[-74.96902421799987,79.44688548400013],[-74.9226374989999,79.43565501500014],[-74.90697180899991,79.42918528900005],[-74.89093990799992,79.4202741560001],[-74.88857988199987,79.41563548400008],[-74.90632076699987,79.40525950700008],[-74.9615779289999,79.38060130399998],[-75.02798417899993,79.37327708500008],[-75.51244055899991,79.39618561400009],[-75.62246660099993,79.41893138200011],[-75.6485896479999,79.42991771000008],[-75.6749568349999,79.43394603100013],[-75.70205644399994,79.41954173400016],[-75.69461015499985,79.41270579600014],[-75.75564531199993,79.41404857000005],[-75.78713945199993,79.41978587400011],[-75.80447343699991,79.43260325700005],[-75.79873613199996,79.43976471600008],[-75.80060787699992,79.4452985700001],[-75.80793209499993,79.44957103100002],[-75.81867428299992,79.4530703800001],[-75.84243730399993,79.45384349200013],[-75.91502844999994,79.43077220300007],[-75.96125240799994,79.42731354400017],[-76.0094294909999,79.43577708500011],[-76.1952205069999,79.49351634300014],[-76.62008622949992,79.50773753450001],[-77.04495195199985,79.52195872600008],[-77.06737219999985,79.5261091170001],[-77.10968990799995,79.54450104400014],[-77.13377844999988,79.54865143400009],[-77.1496882799999,79.54661692900005],[-77.16502844999985,79.54075755400011],[-77.17935136599993,79.5312360700001],[-77.19237219999994,79.51825592700011],[-77.18850663999993,79.50840892100011],[-77.16771399599995,79.50079987200014],[-77.12710527299993,79.49408600500011],[-76.94481360599991,79.49408600500011],[-76.85407467399992,79.48265208500005],[-76.7573949859999,79.49408600500011],[-76.57693437399988,79.47565338700016],[-76.44855709499987,79.48285553600012],[-76.19359290299988,79.47028229400003],[-76.14089921799987,79.44688548400013],[-76.19017493399986,79.43638743700016],[-76.20754960799985,79.42991771000008],[-76.19367428299995,79.42121002800017],[-76.17609615799992,79.41282786700013],[-76.16486568899992,79.40314362200014],[-76.15233313699991,79.39500560100005],[-76.01056881399992,79.37107982],[-75.9099828769999,79.36595286700008],[-75.88015702999989,79.35687897300006],[-75.91405188699986,79.34703196800014],[-76.15453040299991,79.33702220300016],[-76.23574785099993,79.34845612200003],[-76.53524736249986,79.352016506],[-76.8347468739999,79.35557689000015],[-76.86160234299987,79.35057200700014],[-76.87328040299988,79.35004303600006],[-76.88646399599992,79.35289134300008],[-76.91189531199984,79.36229075700011],[-76.94863847599993,79.36656321800001],[-77.0870662099999,79.40607330900018],[-77.10354570199988,79.41612376500015],[-77.10846920499995,79.42462799700009],[-77.11156165299994,79.43659088700012],[-77.11351477799988,79.45648834800012],[-77.12450110599994,79.46893952000012],[-77.14915930899994,79.46759674700014],[-77.19009355399996,79.45482005400011],[-77.24299068899992,79.44981517100017],[-77.35293535099986,79.46421946800002],[-77.40151933499993,79.4530703800001],[-77.38076738199993,79.43650950700014],[-77.31509355399992,79.39891185100005],[-77.27912350199995,79.3882917340001],[-77.26455644399994,79.38023509300017],[-77.24006100199989,79.3605817730001],[-77.2209773429999,79.34996165600008],[-77.17800859299987,79.34214915600006],[-77.1618953119999,79.33018626500014],[-77.18362382699983,79.33030833500011],[-77.22508704299985,79.32477448100009],[-77.5058080719999,79.3394839540001],[-77.78652910099993,79.354193427],[-77.88239498599995,79.37034739800005],[-77.92349199099993,79.37099844],[-77.99075273299988,79.36778392100013],[-78.05939693899998,79.35687897300006],[-78.05939693899998,79.35004303600006],[-77.83352617099985,79.31769440300003],[-77.6332087879999,79.32103099200008],[-77.36506100199995,79.28135814000012],[-77.32575436099995,79.26744212400017],[-77.36648515499992,79.26019928600014],[-77.45661373599997,79.25987376500002],[-77.49705969999991,79.24762604400014],[-77.0891414049999,79.26740143400018],[-76.78298906199987,79.27916087400014],[-76.51211503799995,79.26072825700011],[-76.30402584499993,79.26349518400018],[-76.2055964829999,79.27716705900012],[-76.15339107999998,79.275132554],[-75.94815019399988,79.23716868700008],[-75.64419511599989,79.23509349150011],[-75.34024003799995,79.23301829600005],[-75.0517471999999,79.23106517100008],[-74.79849199099993,79.24384186400012],[-74.46873938699994,79.22715892100007],[-74.49250240799995,79.2120222030001],[-74.59353593699986,79.19456614800013],[-74.78335527299993,79.19318268400015],[-74.8249812489999,79.17930735900016],[-74.77981523299985,79.15997955900002],[-74.65982011599993,79.16547272300006],[-74.61213131399995,79.15135325700014],[-74.62547766799989,79.14716217700003],[-74.63923092399989,79.14500560100011],[-74.66738847599986,79.14520905200006],[-74.65457109299984,79.13434479400017],[-74.63137773299991,79.12791575700005],[-74.56436113199989,79.12103913000006],[-74.5527644519999,79.11347077],[-74.54214433499996,79.10386790600002],[-74.52489173099985,79.09503815300015],[-74.47854570199986,79.08543528899997],[-74.45392818899995,79.07684967700008],[-74.4408259759999,79.06268952000015],[-74.44725501199991,79.04987213700012],[-74.4676000639999,79.04136790600008],[-74.4923396479999,79.03672923400016],[-74.79263261599988,79.04795970300016],[-75.08698482999995,79.03184642100008],[-75.5051570299999,79.07481517100014],[-75.75715084499986,79.08421458500008],[-75.76345781199993,79.08653392100005],[-75.76724199099993,79.09629954600017],[-75.77635657499992,79.10142649900008],[-75.78742428299995,79.10333893400006],[-75.89382890499985,79.10362376500008],[-75.85968990799995,79.11790599199999],[-75.86660722599993,79.12042877800008],[-75.87966874899993,79.12803782800013],[-75.88638261599996,79.13092682500015],[-75.87938391799989,79.13658274900014],[-75.87124589799987,79.14085521000005],[-75.86229407499985,79.14378489799999],[-75.85285396999993,79.14520905200006],[-75.85501054599993,79.15294017100017],[-75.85667883999994,79.154527085],[-75.85968990799995,79.15135325700014],[-75.89362545499989,79.169663804],[-76.08877519399994,79.20469798400008],[-76.34459387899992,79.20359935100005],[-76.60041256399992,79.20250071800011],[-76.98318437399985,79.19078196800011],[-77.20702063699994,79.19977448100003],[-77.69471188049994,79.19759756050009],[-78.1824031239999,79.19542064000012],[-78.22488359299987,79.18805573100003],[-78.25739498599995,79.17194245000017],[-78.2126765619999,79.15989817900005],[-78.16022701699984,79.16282786699999],[-78.05939693899998,79.17930735900016],[-77.7067764963333,79.16924334000014],[-77.35415605366657,79.15917932100008],[-77.0015356109999,79.14911530200006],[-76.74172929599993,79.14964427300013],[-76.49465898299991,79.13450755400014],[-76.1334529289999,79.12413157800013],[-76.13662675699996,79.12022532800013],[-76.13817298099991,79.11705149900017],[-76.13914954299989,79.11399974199999],[-76.14089921799987,79.1104597030001],[-76.09951738199993,79.10301341400013],[-76.08560136599995,79.10362376500008],[-76.1147761709999,79.08490631700003],[-76.16869055899994,79.07733795800006],[-76.38845781199987,79.07599518400018],[-76.7064509759999,79.09068431200008],[-76.96548417899993,79.07245514499999],[-77.15908769399994,79.07123444200009],[-77.53392493399988,79.02387116100014],[-77.61404374899985,79.03424713700004],[-77.6963191399999,79.03534577000009],[-77.72052975199989,79.04246653900013],[-77.76882890499992,79.06476471600017],[-77.79190019399988,79.0694440780001],[-78.09618079299986,79.08482493700005],[-78.33169511599996,79.08482493700005],[-78.61359615799992,79.07713450750006],[-78.89549719999988,79.0694440780001],[-78.86636308499993,79.06175364800008],[-78.42585201699987,79.059068101],[-78.17046057849993,79.05748118699996],[-77.91506913999987,79.05589427300013],[-77.7659399079999,79.03648509300002],[-77.73224850199989,79.02472565300003],[-77.70315507699993,79.00804271],[-77.73672441299996,79.00519440300013],[-77.95632890499992,78.95958079600003],[-77.97712154899992,78.94135163000014],[-78.14134680899991,78.87767161700008],[-78.21646074099993,78.82994212400001],[-78.28123938699994,78.8066266950001],[-78.29898027299993,78.79576243700002],[-78.27114824099988,78.7742373720001],[-78.22683671799992,78.77220286699999],[-78.18191484299993,78.782904364],[-78.15217037699992,78.79918040600012],[-78.12596594999988,78.82123444200012],[-78.06265214799993,78.85777415600008],[-77.82144120999992,78.94586823100009],[-77.71800696499987,78.96971263200008],[-77.2254125639999,79.00322093300012],[-76.73281816299988,79.03672923400016],[-76.25678463449988,79.00936513900008],[-75.7807511059999,78.98200104400003],[-75.72191321499992,78.967027085],[-75.74299068899995,78.96238841400007],[-75.79824785099987,78.93170807500015],[-75.82762610599988,78.92609284100017],[-76.26838131399995,78.90464915600005],[-76.44119218699986,78.87128327000015],[-76.4596248039999,78.860296942],[-76.45921790299991,78.84935130400011],[-76.43447831899994,78.84723541900011],[-76.39407304599987,78.85040924700017],[-76.25625566299988,78.87970612200009],[-75.84597734299993,78.88047923400002],[-75.74429277299996,78.89716217700006],[-75.55215410099991,78.88719310100008],[-75.30492102799994,78.88462962400014],[-75.07502193899991,78.86265696800012],[-74.91506913999987,78.85435618700016],[-74.8789770169999,78.83673737200014],[-74.88174394399996,78.83274974200006],[-74.88646399599989,78.82249583500014],[-74.8141169909999,78.83421458500011],[-74.77375240799995,78.83482493700008],[-74.75609290299985,78.81932200700008],[-74.77761796799987,78.80548737200017],[-74.87710527299993,78.79478587400014],[-74.90632076699987,78.78831614800005],[-74.87189693899995,78.78327057500012],[-74.78620357999996,78.78270091400003],[-74.76296952999985,78.767808335],[-74.8133031889999,78.75006745000009],[-74.8318578769999,78.74730052300005],[-74.81078040299988,78.73484935100011],[-74.74710038999993,78.71539948100003],[-74.72195390499985,78.71263255400008],[-74.75121008999989,78.70026276200004],[-74.81419837099989,78.70286692900011],[-74.8448787099999,78.69896067900014],[-74.86587480399993,78.68756745000013],[-74.86628170499995,78.67711009300008],[-74.85277258999987,78.66734446800014],[-74.8318578769999,78.65794505400011],[-74.8413793609999,78.65228913000011],[-74.85147050699987,78.64805735900002],[-74.86196855399993,78.64537181200005],[-74.87283281199993,78.644273179],[-74.84231523299988,78.63267649900017],[-74.80858313699989,78.62665436400006],[-74.77395585799991,78.62571849199999],[-74.74103756399991,78.629584052],[-74.71605383999992,78.62767161700013],[-74.6854548819999,78.61705149900008],[-74.63259843699991,78.5896670590001],[-74.80231686099995,78.58860911700008],[-75.00877844999988,78.5378278670001],[-75.03091386599993,78.53510163000006],[-75.18464107999995,78.54157135600015],[-75.39810136599996,78.51561107000008],[-75.76557369666659,78.5262311870001],[-76.13304602733322,78.53685130400005],[-76.50051835799984,78.54747142100008],[-76.58352617099993,78.53306712400003],[-76.63577226499984,78.5318464210001],[-76.66161048099985,78.52826569200012],[-76.68757076699987,78.51972077],[-76.6908259759999,78.51304759300014],[-76.67585201699987,78.50865306200015],[-76.28176835799988,78.51951732000003],[-76.15021725199992,78.50694407800016],[-76.12661699099988,78.50096263200005],[-76.11465410099993,78.49119700700011],[-76.10720781199987,78.47972239800008],[-76.09744218699993,78.47020091400007],[-76.07860266799989,78.46617259300011],[-75.59314938049988,78.420823472],[-75.10769609299987,78.375474351],[-75.0871882799999,78.36387767100017],[-75.07249915299991,78.35089752800017],[-75.05593827999985,78.34031810100014],[-75.02981523299991,78.33641185100014],[-75.07079016799992,78.31492747600011],[-75.11978105399987,78.30491771000011],[-75.2168269519999,78.30231354400003],[-75.3145238919999,78.31098053600012],[-75.36986243399991,78.30731842700006],[-75.41067460799985,78.26788971600008],[-75.44839433499993,78.24738190300003],[-75.51711992099993,78.21918366100006],[-75.57095292899987,78.20636627800003],[-75.62621008999989,78.19981517100014],[-75.90994218649996,78.22343577650012],[-76.19367428299995,78.24705638200011],[-76.3594457669999,78.23179759300014],[-76.6047664049999,78.25519440300003],[-76.63430742099987,78.25389232000013],[-76.68923906199986,78.24237702],[-76.8883357409999,78.223334052],[-76.91543535099993,78.20677317900014],[-76.8757624989999,78.191758531],[-76.82347571499992,78.18577708499998],[-76.72345943899995,78.18561432500003],[-76.71401933499993,78.18378327000015],[-76.69774329299989,78.17487213700012],[-76.68895423099994,78.17198314000008],[-76.64822343699987,78.17255280200006],[-76.61184648299988,78.16453685100011],[-76.29458574099989,78.15277741100012],[-76.19098873599997,78.13300202],[-75.92973792199992,78.13515859550016],[-75.66848710799991,78.13731517100011],[-75.61758378799988,78.13096751500008],[-75.58193925699993,78.11302317900014],[-75.58836829299995,78.09528229400001],[-75.68838456899988,78.05589427300005],[-75.68163001199986,78.04844798400008],[-75.8391820949999,78.00067780200011],[-75.90135657499991,77.967881578],[-75.93399003799993,77.95860423400016],[-75.9682917959999,77.96592845300007],[-75.9721980459999,77.97894928600005],[-75.98916581899987,77.98456452000006],[-76.09817460799985,77.99628327000015],[-76.12661699099988,78.00751373900015],[-76.17853756399995,78.01829661700005],[-76.23241126199989,78.0211042340001],[-76.46389726499991,77.99095286699999],[-76.47732499899989,77.98468659100003],[-76.50055904899992,77.96275462400011],[-76.53897050699993,77.94566478100016],[-76.74624589799987,77.93414948100003],[-76.88068600199995,77.90501536700008],[-77.0632624989999,77.91486237200009],[-77.15379798099984,77.94867584800005],[-77.51716061099987,77.9457054705001],[-77.88052324099988,77.94273509300014],[-78.2165828119999,78.00254954600008],[-78.27171790299985,77.98704661699999],[-78.27171790299985,77.98021067900007],[-78.2247615229999,77.98130931200002],[-78.2019343739999,77.977525132],[-78.1829320949999,77.96592845300007],[-78.37881425699996,77.93650950700008],[-78.40802975199989,77.92670319200015],[-78.42996171799993,77.91132233300002],[-78.41287187399986,77.90131256700012],[-78.36107337099986,77.89081452000015],[-78.34593665299988,77.88340892100017],[-78.33389238199996,77.87571849200005],[-78.3198949859999,77.87046946800017],[-78.29898027299993,77.87034739799999],[-78.30581620999996,77.87034739799999],[-78.28132076699993,77.86412181200005],[-78.15676835799985,77.86424388200003],[-78.13857988199996,77.8586286480001],[-78.14134680899991,77.84239329600014],[-77.98070227799988,77.81671784100011],[-77.9494929679999,77.79523346600017],[-77.96263587099989,77.79523346600017],[-77.95824133999987,77.786118882],[-77.94212805899991,77.7604841170001],[-77.9629207019999,77.7549502620001],[-77.97000077999988,77.75425853100016],[-77.96263587099989,77.75425853100016],[-78.0078832669999,77.74632396],[-78.05199133999987,77.73314036700005],[-78.03408769399994,77.73045482000006],[-78.00942949099993,77.72325267100003],[-77.98997962099993,77.71336497600011],[-77.98745683499993,77.70246002800005],[-78.00808671799986,77.6913923200001],[-78.05809485599987,77.68907298400013],[-78.07986406199984,77.67853424700017],[-78.02635657499992,77.66840241100012],[-77.91274980399993,77.67503489799999],[-77.8601374989999,77.65806712400001],[-77.85610917899993,77.65501536700013],[-77.85427812399985,77.65196360900005],[-77.8539932929999,77.64069245000003],[-77.84740149599995,77.63239166900014],[-77.8320613269999,77.62950267100003],[-77.75641842399989,77.62730540600012],[-77.73664303299998,77.62116120000015],[-77.7162166009999,77.60960521000014],[-77.73680579299995,77.60081614800008],[-77.90859941299988,77.56867096600011],[-77.95535234299987,77.56549713700004],[-77.97647050699987,77.56024811400006],[-77.98436438699994,77.54820384300014],[-77.97830156199984,77.541978257],[-77.94212805899991,77.513413804],[-78.01846269399994,77.47199127800016],[-78.19733639199987,77.45246002800008],[-78.27855383999986,77.43150462400014],[-78.23074296799993,77.40416087400017],[-78.2521052729999,77.38707103100013],[-78.28913326699993,77.37754954600005],[-78.50096594999987,77.36517975499999],[-78.68968665299991,77.31907786700006],[-78.7657771479999,77.31089915600016],[-78.84085038999984,77.31541575700011],[-78.75210527299987,77.35919830900018],[-78.72419186099992,77.376898505],[-78.74665279899992,77.38243235900009],[-78.7710261709999,77.38495514500012],[-78.81981360599991,77.38365306200002],[-78.8440242179999,77.37828196800017],[-78.89358476499991,77.36029694200012],[-78.92926998599995,77.3526472030001],[-78.97736568899992,77.32538483300003],[-79.00247148299994,77.31688060100008],[-79.05467688699986,77.31207916900009],[-79.13320878799988,77.29132721600008],[-79.38939368399988,77.30648427950001],[-79.64557857999989,77.32164134300017],[-79.84414628799993,77.31126536699999],[-79.94627844999991,77.28306712400011],[-79.97122148299994,77.28062571800017],[-80.19725501199991,77.28746165600008],[-80.29987545499998,77.30174388200008],[-80.3913874989999,77.29515208500003],[-80.46434485599991,77.30646393400018],[-80.55142167899987,77.30980052300009],[-80.63833574099992,77.325913804],[-80.77985592399989,77.33592357000008],[-80.97451738199996,77.38043854400017],[-81.01296952999985,77.38365306200002],[-81.01821855399993,77.38646067900008],[-81.02969316299988,77.3996442730001],[-81.03994706899991,77.40416087400017],[-81.0331111319999,77.40416087400017],[-81.21564693899987,77.4191755230001],[-81.29686438699986,77.436509507],[-81.30752519399988,77.44261302299999],[-81.32795162699995,77.45880768400004],[-81.36115475199998,77.47654857000013],[-81.39899654899992,77.48936595300016],[-81.43814042899996,77.49713776200015],[-81.49734452999985,77.50189850500006],[-81.5416560539999,77.51129791900009],[-81.56472734299987,77.513413804],[-81.58226477799991,77.51695384300017],[-81.58568274599992,77.52525462400014],[-81.57933508999989,77.53440989800013],[-81.5675349599999,77.54075755400008],[-81.58877519399991,77.55442942900002],[-81.67056230399987,77.56867096600011],[-81.67056230399987,77.57542552300005],[-81.6389460929999,77.57489655200004],[-81.62360592399995,77.57664622600005],[-81.60916093699987,77.58234284100014],[-81.64045162699995,77.59837474200013],[-81.82477779899996,77.62494538000007],[-81.84740149599993,77.63633860900012],[-81.83446204299995,77.65806712400001],[-81.85553951699987,77.67377350500009],[-81.8860164049999,77.68561432500006],[-81.91641191299988,77.69049713700012],[-81.93748938699989,77.68537018400008],[-81.93460038999987,77.67706940300012],[-81.93740800699989,77.67401764500012],[-81.9421687489999,77.67137278900005],[-81.94489498599998,77.66425202000009],[-81.94603430899991,77.65428294499999],[-81.94375566299993,77.6533877620001],[-81.9261775379999,77.62986888200014],[-81.91095943899984,77.6179059920001],[-81.8938695949999,77.60895416900009],[-81.87661699099988,77.60346100500006],[-81.8040258449999,77.59727610900008],[-81.78384355399996,77.58576080900015],[-81.7732234369999,77.57709381700006],[-81.74270585799987,77.55967845300007],[-81.6929011709999,77.53953685100005],[-81.67300370999989,77.52366771000011],[-81.67438717399989,77.5051130230001],[-81.70474199099995,77.48334381700015],[-81.73098710799988,77.46934642100008],[-81.74185136599988,77.46002838700007],[-81.74632727799994,77.44916413000006],[-81.73721269399994,77.43480052299999],[-81.71589107999998,77.42792389500009],[-81.67398027299987,77.42157623900015],[-81.5796199209999,77.39293040600008],[-81.48001054599987,77.37592194200002],[-81.20706132699993,77.37413157800005],[-81.18106035099996,77.36347077],[-81.17092851499989,77.33250560100005],[-81.19973710799992,77.32335032800007],[-81.52430172399991,77.30668773000004],[-81.84886633999992,77.290025132],[-82.15192623599995,77.31590403900009],[-82.19815019399988,77.30174388200008],[-82.02004960799988,77.267035223],[-81.94119218699984,77.26129791900006],[-81.9176326159999,77.25336334800006],[-81.9063207669999,77.24388255400008],[-81.89574133999986,77.22569407800007],[-81.88284257699985,77.21922435100008],[-81.89509029899992,77.20941803600014],[-81.90094967399995,77.20677317900005],[-81.91018632699989,77.20555247600012],[-81.89183508999986,77.18272532800002],[-81.85769609299986,77.17047760600015],[-81.81908118399991,77.1655134140001],[-81.75271562399988,77.16657135600013],[-81.62043209499987,77.20176829600003],[-81.52586829299986,77.2087263040001],[-81.47817949099989,77.22288646000011],[-81.10301673099991,77.28746165600008],[-80.73932857999989,77.25899892800017],[-80.37564042899993,77.23053620000015],[-80.3274226549999,77.21922435100008],[-80.3187556629999,77.21812571800002],[-80.14541581899994,77.21112702000015],[-80.11514238199993,77.20555247600012],[-80.14578202999985,77.18878815300012],[-80.23932857999989,77.167710679],[-80.2790828119999,77.12437571800002],[-80.37547766799989,77.10069407800002],[-80.4099421869999,77.08270905200008],[-80.37246660099986,77.07469310100011],[-80.32131913999991,77.08124420800003],[-80.02639726499986,77.18903229400013],[-79.7178035149999,77.24339427299999],[-79.43240312399993,77.23859284100008],[-79.3435359369999,77.21885814000017],[-79.24852454299989,77.21592845300012],[-79.20242265499984,77.20734284100003],[-79.1045222649999,77.17479075700005],[-79.05540930899988,77.16791413000006],[-79.03262285099996,77.15717194200012],[-79.03958085799985,77.149603583],[-79.04759680899988,77.14366282800016],[-79.05646725199992,77.13951243700002],[-79.0661921869999,77.13731517100003],[-79.01785234299986,77.11815013200007],[-79.0064998039999,77.10472239800008],[-79.02717037699992,77.09064362200003],[-79.09406490799991,77.07518138200011],[-79.34670976499987,76.9792341170001],[-79.37966874899985,76.95758698100003],[-79.38727779899997,76.95628489800013],[-79.39289303299998,76.9528669290001],[-79.39509029899996,76.94175853100008],[-79.3893123039999,76.93036530200011],[-79.37564042899987,76.92564524900003],[-79.1205134759999,76.93024323100015],[-79.10098222599993,76.92633698100015],[-79.08181718699987,76.925238348],[-79.01895097599993,76.93866608299999],[-78.98098710799991,76.94049713700018],[-78.90306555899994,76.93419017100014],[-78.86750240799995,76.92442454600011],[-78.87376868399991,76.91791413000003],[-78.88166256399998,76.91124095300013],[-78.89037024599989,76.90599192900008],[-78.90648352799985,76.90131256700015],[-78.90794837099992,76.89524974200005],[-78.90737870999993,76.88837311400015],[-78.90908769399994,76.88340892100007],[-78.94163977799991,76.86701080900018],[-78.9559626939999,76.85712311400007],[-78.96438554599985,76.84239329600008],[-78.7203669909999,76.827582098],[-78.69627844999988,76.84239329600008],[-78.71194413999987,76.86229075700008],[-78.72419186099992,76.88340892100007],[-78.62551835799988,76.88340892100007],[-78.59365800699993,76.88890208500011],[-78.56712805899988,76.89732493700016],[-78.5648494129999,76.903265692],[-78.57022050699996,76.9126651060001],[-78.56647701699984,76.93183014500009],[-78.5342097649999,76.95396556200016],[-78.43020585799988,76.96177806200012],[-78.38841712099995,76.97284577],[-78.39484615799995,76.9753278670001],[-78.40916907499994,76.98338450700004],[-78.41567949099993,76.98582591399999],[-78.4002986319999,76.99803294500008],[-78.38442949099996,77.00409577000006],[-78.36709550699987,77.006089585],[-78.34740149599992,77.00633372600004],[-78.33307857999995,77.01264069200008],[-78.13174394399994,77.02525462400017],[-78.09085038999989,77.02281321800001],[-77.91543535099989,76.9659284530001],[-77.88923092399995,76.94977448100003],[-77.88919023299988,76.93736399900011],[-77.89895585799991,76.92735423400002],[-77.9023738269999,76.91819896000013],[-77.89647376199989,76.91209544500005],[-77.85228430899991,76.89948151200015],[-77.83352617099985,76.89085521000008],[-77.89492753799993,76.86912669500002],[-77.87234452999988,76.85980866100006],[-77.7987361319999,76.8492292340001],[-77.7162166009999,76.82196686400003],[-77.7538142569999,76.80931224200005],[-77.77200273299988,76.79987213700012],[-77.78506425699987,76.78721751500014],[-77.78978430899988,76.77631256700009],[-77.78799394399988,76.76862213700015],[-77.78302975199995,76.76011790600002],[-77.77822831899994,76.74689362200009],[-77.76650956899996,76.73423899900011],[-77.7663874989999,76.72789134300007],[-77.78164628799996,76.72516510600012],[-77.78888912699998,76.72300853100002],[-77.79857337099995,76.71775950700011],[-77.80744381399998,76.71124909100003],[-77.81240800699992,76.70530833500011],[-77.81277421799987,76.68809642100008],[-77.80203202999985,76.67796458500013],[-77.77078202999988,76.66429271],[-77.82778886599986,76.6409772810001],[-77.88792883999986,76.63373444200006],[-78.01260331899991,76.63703034100011],[-78.03229732999995,76.63340892100014],[-78.08836829299989,76.61456940300012],[-78.10350501199989,76.60594310100011],[-78.12271074099992,76.591253973],[-78.1682429679999,76.5752627620001],[-78.18972734299993,76.56126536700005],[-78.15925045499998,76.55003489800005],[-78.14712480399987,76.54124583500008],[-78.14134680899991,76.52716705900004],[-78.35562089799993,76.4983991560001],[-78.38052324099996,76.48619212400001],[-78.36725826699984,76.46568431200016],[-78.49978593699987,76.45933665600013],[-78.56460527299987,76.47044505400005],[-78.62173417899993,76.49982330900015],[-78.60305742099987,76.50767649900014],[-78.59439042899986,76.5131289730001],[-78.58641516799992,76.52024974200013],[-78.59414628799993,76.52623118700014],[-78.60187740799992,76.534613348],[-78.60887610599991,76.54441966400005],[-78.61428788999987,76.55503978100008],[-78.56647701699984,76.56126536700005],[-78.56647701699984,76.56810130400005],[-78.68317623599992,76.56810130400005],[-78.74319413999984,76.57689036700013],[-78.77424068899995,76.57733795800011],[-78.79987545499992,76.56810130400005],[-78.79246985599994,76.56810130400005],[-78.81314042899993,76.55243561400009],[-78.85602779899992,76.529486395],[-78.87503007699993,76.51410553600006],[-78.91869055899991,76.46556224199999],[-78.93643144399991,76.45140208500007],[-78.97012285099993,76.43492259300008],[-79.0090632799999,76.42442454600011],[-79.14944413999991,76.41547272300008],[-79.16921952999984,76.41046784100014],[-79.1827693349999,76.40399811400015],[-79.1948949859999,76.39549388200011],[-79.19583085799988,76.38926829600014],[-79.17605546799987,76.38996002800009],[-79.17605546799987,76.38316478100016],[-79.20730546799993,76.3777936870001],[-79.24494381399992,76.36192454600017],[-79.26711992099986,76.34149811399999],[-79.25173906199984,76.32233307500003],[-79.29324296799983,76.30235423400016],[-79.34772701699984,76.29686107000013],[-79.50129146999988,76.31769440300012],[-79.55028235599985,76.31696198100018],[-79.82327226499987,76.27242666200016],[-80.09626217399989,76.22789134300008],[-80.18997148299991,76.24669017100014],[-80.23884029899992,76.24420807500012],[-80.37918046799993,76.21869538000011],[-80.42332923099991,76.20160553600009],[-80.4431860019999,76.19773997600008],[-80.58747311099992,76.20087311400015],[-80.60855058499993,76.19818756700006],[-80.62401282499988,76.189886786],[-80.64907792899987,76.16840241100006],[-80.66722571499986,76.16404857000008],[-80.7901912099999,76.16404857000008],[-80.85427812399988,76.17283763200012],[-80.8878474599999,76.173041083],[-80.9393611319999,76.146226304],[-81.07249915299988,76.12913646000005],[-81.0828344389999,76.13739655200014],[-81.0802302729999,76.15062083500008],[-81.06729081899988,76.16404857000008],[-81.04246985599991,76.17597077],[-80.95803788999987,76.19074127800009],[-80.95803788999987,76.19818756700006],[-80.99136308499996,76.20416901200018],[-81.0649714829999,76.207953192],[-81.09520423099991,76.21861399900014],[-81.0520727199999,76.23008860900008],[-81.04312089799987,76.23582591400007],[-81.04385331899991,76.24286530200011],[-81.04568437399988,76.25079987200009],[-81.03994706899991,76.25962962400014],[-81.02692623599992,76.26483795800014],[-80.95974687399988,76.275742906],[-80.9505916009999,76.28160228100016],[-80.89321855399987,76.33551666900009],[-80.8791804679999,76.341538804],[-80.85525468699986,76.34605540600013],[-80.82526607999989,76.35736725500011],[-80.79662024599992,76.37193431200016],[-80.77643795499989,76.38654205900018],[-80.7724910149999,76.41998932500002],[-80.82510331899994,76.43638743700014],[-80.89456132699985,76.44676341400003],[-80.94094804599993,76.46226634300014],[-80.96853593699983,76.48021067900002],[-80.99779212099985,76.48607005400004],[-81.02810624899985,76.48814524900017],[-81.09646562399993,76.50206126500014],[-81.2180883449999,76.49982330900015],[-81.20877031199984,76.50999583500011],[-81.17715410099996,76.533392645],[-81.20685787699998,76.56358470300002],[-81.24771074099993,76.55064524900011],[-81.28921464799993,76.52232493700014],[-81.32111568899984,76.50665924700017],[-81.3476863269999,76.50230540600006],[-81.40233313699994,76.48309967700014],[-81.53811601499993,76.47300853100016],[-81.9352921209999,76.49498118700006],[-82.05569413999983,76.516465562],[-82.08210201699984,76.52716705900004],[-82.04446367099985,76.54783763200005],[-82.01321367099987,76.57493724199999],[-82.00348873599992,76.578802802],[-81.99225826699993,76.58026764500015],[-81.98639889199987,76.58429596600011],[-81.99270585799991,76.5960554060001],[-82.06159420499998,76.61652252800015],[-82.02041581899991,76.619330145],[-81.9033503899999,76.65070221600014],[-81.85521399599995,76.65167877800012],[-81.83112545499992,76.65586985900013],[-81.81118730399993,76.66771067900011],[-81.80378170499995,76.67064036700013],[-81.79348710799991,76.67186107000003],[-81.78441321499992,76.67442454600014],[-81.78042558499993,76.681097723],[-81.7832332019999,76.6884626320001],[-81.79010982999989,76.6915143900001],[-81.79857337099995,76.6915143900001],[-81.89053300699995,76.66889069200012],[-82.17788652299987,76.6301130230001],[-82.27627519399991,76.63487376500011],[-82.32534745999993,76.64402903899999],[-82.44456946499993,76.69163646000008],[-82.45929928299992,76.70152415600008],[-82.49299068899984,76.73265208500008],[-82.50723222599991,76.74009837400014],[-82.55471757699983,76.75645579600017],[-82.5658259759999,76.7645124370001],[-82.5765681629999,76.77476634300005],[-82.58934485599994,76.7834333350001],[-82.64822343699993,76.79503001500014],[-82.68871008999994,76.81041087400008],[-82.72976640499985,76.82099030200014],[-82.77350826699993,76.81456126500002],[-82.7403051419999,76.80882396000005],[-82.69863847599996,76.79657623900009],[-82.66030839799991,76.7796084660001],[-82.6369929679999,76.75987376500008],[-82.65066484299984,76.75311920800014],[-82.62677975199998,76.743882554],[-82.57795162699996,76.73517487200009],[-82.55443274599992,76.72516510600012],[-82.56126868399994,76.69261302300005],[-82.51187089799987,76.66229889500006],[-82.38182532499988,76.61961497600014],[-82.2956843739999,76.6146100930001],[-82.08210201699984,76.56810130400005],[-82.20946204299986,76.54218170800006],[-82.22549394399994,76.52024974200013],[-82.21145585799991,76.50128815300003],[-82.13304602799992,76.45514557500009],[-82.13817298099985,76.4387067730001],[-82.17284094999994,76.42462799700014],[-82.28201249899988,76.40049876500014],[-82.54143225799993,76.39522939650011],[-82.8008520169999,76.38996002800009],[-82.8181453119999,76.39618561400015],[-82.85277258999989,76.41364166900011],[-83.00104732999995,76.43626536700008],[-83.10252844999987,76.46568431200016],[-83.09622148299994,76.47776927300008],[-83.0859675769999,76.4866804060001],[-83.06155351499987,76.49982330900015],[-83.07453365799995,76.50706614799999],[-83.08470618399991,76.51585521000005],[-83.08669999899985,76.52501048400012],[-83.0752253899999,76.533392645],[-83.1050512359999,76.57733795800011],[-83.11611894399994,76.5886091170001],[-83.12734941299993,76.59459056200005],[-83.19041907499994,76.60655345300015],[-83.19937089799987,76.60968659100006],[-83.19985917899996,76.61192454600003],[-83.1988012359999,76.62034739800008],[-83.19937089799987,76.62274811400012],[-83.22248287699992,76.63251373900006],[-83.37234452999994,76.66954173400008],[-83.39114335799988,76.67796458500013],[-83.38752193899992,76.68516673400015],[-83.40217037699992,76.70726146000005],[-83.40481523299991,76.71893952000015],[-83.39724687399988,76.72882721600017],[-83.38312740799995,76.73887767100014],[-83.35635331899994,76.75311920800014],[-83.38101152299993,76.76133860900013],[-83.40143795499989,76.76154205900008],[-83.42166093699993,76.75499095300002],[-83.44546464799993,76.74315013200004],[-83.51667232999992,76.72227610900008],[-83.5276586579999,76.70872630400011],[-83.51956132699986,76.69212474200008],[-83.50055904899995,76.6811384140001],[-83.4044490229999,76.65403880400008],[-83.39769446499987,76.64866771000011],[-83.38528398299985,76.63312409100011],[-83.37653561099995,76.62645091400007],[-83.3491918609999,76.615464585],[-83.29279537699995,76.59983958500011],[-83.26699785099993,76.5886091170001],[-83.25161699099988,76.57725657800013],[-83.2458796869999,76.56688060100005],[-83.24649003799996,76.53709544500012],[-83.23688717399989,76.5186628280001],[-83.21580969999988,76.51166413000011],[-83.19465084499987,76.50706614799999],[-83.18508867099987,76.49607982000013],[-83.19334876199984,76.49030182500015],[-83.23306230399987,76.46910228100008],[-83.24649003799996,76.45884837400014],[-83.24002031199987,76.45477936400009],[-83.23330644399991,76.45233795800006],[-83.22549394399991,76.45123932500012],[-83.21442623599998,76.44749583500008],[-83.18508867099987,76.4308942730001],[-83.22366288999984,76.41136302300013],[-83.27932695199988,76.40619538000011],[-83.69461015499985,76.43146393400018],[-83.71279863199993,76.43504466400005],[-83.7194718089999,76.43773021000014],[-83.72541256399984,76.44334544500012],[-83.72903398299988,76.44981517100005],[-83.73147538999993,76.4555524760001],[-83.7337133449999,76.45884837400014],[-83.77782141799989,76.4758161480001],[-83.87311764199984,76.48619212400001],[-83.89761308499988,76.50665924700017],[-84.00198320199993,76.53180573100015],[-84.05056718699987,76.55333079600008],[-84.04841061099998,76.57493724199999],[-84.07925370999993,76.62034739800008],[-84.10134843699991,76.63483307500012],[-84.23855546799987,76.66087474199999],[-84.29295813699989,76.66380442900011],[-84.3296199209999,76.65070221600014],[-84.3044327459999,76.64024485900016],[-84.2726130849999,76.63129303600014],[-84.21267656199987,76.62274811400012],[-84.19725501199993,76.61810944200009],[-84.19631913999984,76.60700104400013],[-84.20364335799985,76.593451239],[-84.24783281199993,76.54515208500007],[-84.25104732999998,76.53709544500012],[-84.23355058499993,76.52460358300011],[-84.18972734299987,76.50071849200005],[-84.17874101499993,76.48619212400001],[-84.18911699099989,76.48118724199999],[-84.19326738199996,76.473334052],[-84.19534257699986,76.46507396000003],[-84.19924882699988,76.45884837400014],[-84.21589107999992,76.45079173400002],[-84.2350154289999,76.44676341400003],[-84.54885820199988,76.43345774900003],[-84.6333715489999,76.43903229400003],[-84.71670488199993,76.45416901200004],[-84.79572506399984,76.47874583500014],[-84.79946855399987,76.50340403900013],[-84.84451249899985,76.53538646000014],[-84.90103105399994,76.56309642100003],[-84.98745683499995,76.58604564000011],[-85.01292883999986,76.5873884140001],[-85.0353083979999,76.57493724199999],[-85.0407608709999,76.563666083],[-85.0469050769999,76.5341657570001],[-85.05581620999993,76.52024974200013],[-85.0363663399999,76.51129791900011],[-85.02171790299994,76.499741929],[-85.01732337099995,76.48631419499999],[-85.02855383999986,76.47190989800009],[-85.01760820199988,76.45860423400009],[-85.00344804599987,76.45298899900011],[-84.98900305899991,76.44920482],[-84.9769587879999,76.44147370000015],[-84.96060136599988,76.42820872600012],[-84.94204667899987,76.422349351],[-84.67098954999989,76.38084544500002],[-84.39993242099993,76.3393415390001],[-84.38361568899988,76.32847728100002],[-84.38809160099987,76.31513092700003],[-84.41018632699985,76.30927155200006],[-84.80679277249993,76.29677969000015],[-85.2033992179999,76.28428782800013],[-85.22744706899991,76.29063548400008],[-85.2331843739999,76.29539622600008],[-85.23420162699995,76.30015696800017],[-85.2344457669999,76.30540599200005],[-85.23770097599996,76.31146881700015],[-85.24909420499992,76.31610748900009],[-85.43260657499985,76.30805084800014],[-85.46198482999995,76.31378815300012],[-85.51984615799995,76.3315290390001],[-85.5494685539999,76.33531321800005],[-85.58413652299987,76.33612702000015],[-85.72329667899987,76.35472239800005],[-85.86213131399984,76.35679759300017],[-85.99905351499987,76.37669505400005],[-86.07339433499993,76.37059153900007],[-86.21735592399992,76.37498607000005],[-86.2822566399999,76.38654205900018],[-86.34740149599993,76.38853587400003],[-86.37848873599995,76.39679596600011],[-86.37108313699986,76.39679596600011],[-86.4054255849999,76.40668366100012],[-86.4126684239999,76.41046784100014],[-86.41608639199983,76.41734446800014],[-86.41486568899992,76.4226748720001],[-86.41250566299988,76.42869700700011],[-86.4126684239999,76.43773021000014],[-86.41946367099987,76.459947007],[-86.4175512359999,76.47166575700008],[-86.40579179599992,76.48248932500017],[-86.23721269399994,76.50787995000009],[-86.2071833979999,76.52716705900004],[-86.2322078119999,76.54869212400014],[-86.40432695199988,76.58356354400009],[-86.5169978509999,76.62689850500006],[-86.57795162699998,76.64166901200004],[-86.63174394399994,76.63703034100011],[-86.3082576159999,76.53526439000017],[-86.30288652299993,76.52769603100002],[-86.31997636599988,76.52094147300006],[-86.59186764199987,76.48082103100016],[-86.61847896999988,76.48033274900017],[-86.6427302729999,76.47715892100011],[-86.65908769399991,76.46568431200016],[-86.63426673099985,76.46104564000014],[-86.6354060539999,76.44920482],[-86.68366451699991,76.40867747600005],[-86.71365312399988,76.36326732000008],[-86.71694902299993,76.35639069200006],[-86.71804765499988,76.35081614800005],[-86.72195390499984,76.3483747420001],[-86.75300045499996,76.35472239800005],[-86.79238847599996,76.3570417340001],[-86.84854081899996,76.369492906],[-87.09243730399992,76.38145579600014],[-87.13137773299991,76.38996002800009],[-87.15583248599995,76.40403880400014],[-87.14309648299991,76.41185130400011],[-87.12205969999988,76.41990794500005],[-87.12181555899991,76.43431224200013],[-87.15139726499986,76.448675848],[-87.4010310539999,76.45567454600007],[-87.43309485599987,76.46568431200016],[-87.40322831899991,76.48460521],[-87.39207923099988,76.49669017100008],[-87.3957820299999,76.51036204600001],[-87.42113196499986,76.52232493700014],[-87.48460852799988,76.53306712400017],[-87.50198320199985,76.5475934920001],[-87.4834692049999,76.55040110900016],[-87.4744360019999,76.56236399900008],[-87.46890214799988,76.57721588700015],[-87.46096757699993,76.5886091170001],[-87.4866023429999,76.60142649900014],[-87.52562415299987,76.6146914730001],[-87.56301835799991,76.6201846370001],[-87.5838923819999,76.60968659100006],[-87.58324133999994,76.60289134300011],[-87.5781550769999,76.59752024900013],[-87.57274329299986,76.59300364800002],[-87.57083085799991,76.5886091170001],[-87.57766679599992,76.56810130400005],[-87.5851130849999,76.55503978100008],[-87.5946345689999,76.54551829600008],[-87.59528561099994,76.5375430360001],[-87.57616126199989,76.52875397300005],[-87.50633704299995,76.51365794500008],[-87.49575761599988,76.50324127800017],[-87.5025935539999,76.49481842700011],[-87.5466609369999,76.46881745000003],[-87.54739335799994,76.44904205900012],[-87.51048743399987,76.43638743700014],[-87.43309485599987,76.42352936400012],[-87.43337968699993,76.41917552300013],[-87.4347224599999,76.41612376500005],[-87.44045976499987,76.41046784100014],[-87.43309485599987,76.40424225500009],[-87.4485570949999,76.3972028670001],[-87.50198320199985,76.38316478100016],[-87.47781327999994,76.37974681200012],[-87.45181230399996,76.37327708500005],[-87.4063207669999,76.35582103100008],[-87.42707271999987,76.349351304],[-87.45051021999987,76.35130442900012],[-87.53970292899989,76.37079498900012],[-87.56057695199988,76.37144603100008],[-87.5838923819999,76.369492906],[-87.57986406199993,76.36436595300002],[-87.57477779899989,76.354356187],[-87.57083085799991,76.34906647300015],[-87.62991288999984,76.33555735900008],[-87.70669511599996,76.33958567900005],[-87.77733313699991,76.362168687],[-87.81790117099993,76.40424225500009],[-87.80361894399994,76.40424225500009],[-87.81688391799986,76.41620514500003],[-87.8370662099999,76.4179548200001],[-87.8793839179999,76.41046784100014],[-87.87063554599993,76.40001048400016],[-87.86571204299985,76.39679596600011],[-87.8772680329999,76.39118073100009],[-87.8918757799999,76.37543366100014],[-87.89981035099986,76.369492906],[-87.9178767569999,76.36408112200017],[-88.40355383999989,76.39366282800013],[-88.4342341789999,76.40424225500009],[-88.41844641799995,76.41828034100001],[-88.39932206899988,76.4249128280001],[-88.37869218699987,76.42955149900003],[-88.35846920499992,76.43773021000014],[-88.37043209499987,76.43797435100008],[-88.3780818349999,76.44163646000011],[-88.38980058499986,76.45514557500009],[-88.39940344999984,76.46027252800012],[-88.41380774599992,76.46324290600005],[-88.44107011599989,76.46568431200016],[-88.38345292899996,76.48033274900017],[-88.35895748599991,76.48997630400014],[-88.36595618399991,76.49982330900015],[-88.3543188139999,76.51911041900009],[-88.37124589799987,76.52940501500002],[-88.3992406889999,76.536851304],[-88.4211726549999,76.5475934920001],[-88.4234106109999,76.55426666900014],[-88.4247126939999,76.57416413000004],[-88.42739824099988,76.581773179],[-88.44001217399995,76.59275950700005],[-88.45364335799991,76.59752024900013],[-88.4678442049999,76.60044993700008],[-88.50930742099992,76.61522044500005],[-88.51956132699985,76.62144603100002],[-88.52358964799993,76.63361237200009],[-88.5171199209999,76.63898346600014],[-88.48851477799992,76.65045807500009],[-88.48200436099995,76.66087474199999],[-88.49266516799989,76.68296946800008],[-88.53962154899992,76.70787181200002],[-88.55032304599993,76.72203196800014],[-88.55166581899991,76.74046458500008],[-88.4881892569999,76.76886627800009],[-88.48200436099995,76.77696360900002],[-88.48322506399985,76.80133698100018],[-88.4900203119999,76.81781647300006],[-88.50698808499996,76.8237165390001],[-88.53880774599989,76.81647370000017],[-88.5551651679999,76.80866120000009],[-88.5707087879999,76.797837632],[-88.60212154899995,76.7704531920001],[-88.62946529899992,76.75486888200012],[-88.6892390619999,76.73350657800007],[-88.70856686099991,76.71210358300014],[-88.67349199099993,76.7005475930001],[-88.58503170499989,76.63703034100011],[-88.59129798099985,76.63703034100011],[-88.59536699099989,76.62547435099998],[-88.6601863269999,76.60224030200006],[-88.62185624899988,76.58832428600009],[-88.57591712099992,76.58812083500011],[-88.53107662699996,76.58136627800009],[-88.49632727799994,76.5475934920001],[-88.5119929679999,76.53925202000012],[-88.51296952999988,76.52802155200014],[-88.50373287699992,76.51634349200003],[-88.48884029899995,76.50665924700017],[-88.58291581899988,76.467759507],[-88.62157141799993,76.43817780200011],[-88.59870357999992,76.41046784100014],[-88.61839758999989,76.40440501500014],[-88.6429744129999,76.40159739799999],[-88.66779537699995,76.40245189000011],[-88.68777421799992,76.40733470300016],[-88.69583085799985,76.41526927300013],[-88.69294186099992,76.42418040600016],[-88.68065344999987,76.43773021000014],[-88.66901607999995,76.46006907800016],[-88.65774492099987,76.475083726],[-88.64089921799986,76.48350657800013],[-88.61294511599993,76.48619212400001],[-88.62600663999993,76.49498118700006],[-88.68065344999987,76.52374909100003],[-88.67654374899993,76.53803131700012],[-88.66633053299998,76.54893626500011],[-88.65298417899986,76.55658600500011],[-88.63967851499986,76.56126536700005],[-88.65851803299988,76.57884349199999],[-88.68337968699983,76.59357330900015],[-88.71047929599986,76.60081614799999],[-88.7358699209999,76.5960554060001],[-88.74050859299993,76.59141673400015],[-88.74221757699992,76.58502838700004],[-88.74209550699995,76.57151927300008],[-88.74925696499989,76.56403229400011],[-88.79735266799986,76.55503978100008],[-88.77859452999989,76.53563060100008],[-88.78831946499984,76.52252838700008],[-88.83145097599986,76.49982330900015],[-88.79743404899993,76.48456452],[-88.7872615229999,76.4741071640001],[-88.79051673099994,76.45884837400014],[-88.80789140499994,76.44737376500011],[-88.88670813699989,76.4308942730001],[-88.89334062399983,76.42552317900004],[-88.8953344389999,76.41868724200005],[-88.89895585799985,76.41294993700015],[-88.91063391799995,76.41046784100014],[-88.99518795499998,76.41217682500013],[-89.01943925699996,76.41730377800015],[-89.03563391799992,76.42584870000017],[-89.03066972599987,76.43773021000014],[-89.04678300699993,76.45030345300002],[-89.06619218699984,76.44769928600012],[-89.10427812399993,76.42894114800008],[-89.13381913999989,76.42369212400008],[-89.17019609299987,76.42418040600016],[-89.2063695949999,76.42930735900008],[-89.23550370999996,76.43773021000014],[-89.2525935539999,76.45579661700005],[-89.2604060539999,76.45884837400014],[-89.41653398299988,76.49217357000013],[-89.43480383999994,76.49982330900015],[-89.4298396479999,76.51072825700014],[-89.4158422519999,76.51915110900008],[-89.40526282499988,76.52899811400003],[-89.41055253799995,76.54417552300002],[-89.42434648299988,76.55768463700015],[-89.44180253799993,76.56944407800013],[-89.46157792899992,76.57550690300013],[-89.48289954299992,76.57151927300008],[-89.52102617099989,76.54816315300016],[-89.54385331899991,76.54291413],[-89.59854081899994,76.56012604400011],[-89.65672766799989,76.565415757],[-89.68118242099992,76.57493724199999],[-89.66604570199992,76.5795759140001],[-89.63361568899984,76.58209870000003],[-89.61969967399995,76.5886091170001],[-89.61453202999985,76.59715403900005],[-89.6168513659999,76.60460032800002],[-89.62059485599994,76.61102936400012],[-89.61969967399995,76.61652252800015],[-89.59959876199991,76.62901439000017],[-89.44758053299998,76.65912506699999],[-89.42731686099998,76.6711286480001],[-89.4189753899999,76.68748607000013],[-89.4280085929999,76.69721100500009],[-89.44367428299998,76.70726146000005],[-89.45523027299993,76.72516510600012],[-89.43773352799988,76.72577545800009],[-89.40412350199995,76.73253001500011],[-89.38638261599993,76.73265208500008],[-89.39150956899996,76.73554108300011],[-89.39671790299985,76.73729075700011],[-89.40750077999988,76.73944733300002],[-89.40062415299985,76.73944733300002],[-89.4225154289999,76.74217357],[-89.4504695299999,76.75031159100008],[-89.4704890619999,76.76312897300012],[-89.4682917959999,76.78038157800013],[-89.48391679599987,76.79938385600003],[-89.49266516799995,76.80744049700017],[-89.50300045499995,76.81456126500002],[-89.5023494129999,76.82664622600014],[-89.51126054599985,76.83836497600011],[-89.53718014199987,76.85675690300015],[-89.4730525379999,76.88117096600011],[-88.99787350199995,76.9550235050001],[-88.97541256399987,76.97284577],[-88.99494381399984,76.97764720300007],[-88.99046790299988,76.98179759300002],[-88.71951249899986,77.01410553600014],[-88.64150956899994,77.04462311400009],[-88.53514563699994,77.07359446800008],[-88.50051835799985,77.07591380400014],[-88.45864824099993,77.07383860900002],[-88.41950436099988,77.07880280200008],[-88.3932185539999,77.102525132],[-88.4311824209999,77.09886302300013],[-88.54409745999986,77.102525132],[-88.4946182929999,77.1141218120001],[-88.39309648299991,77.119330145],[-88.29360917899993,77.13633860900016],[-88.13255774599992,77.12982819200006],[-88.13255774599992,77.12364329600008],[-88.1424047519999,77.12372467700008],[-88.15066484299993,77.12242259300008],[-88.16730709499987,77.1161970070001],[-88.12930253799996,77.10899485900008],[-87.86481686099998,77.13731517100003],[-87.7735082669999,77.12791575700011],[-87.67752031199991,77.13731517100003],[-87.64541581899994,77.13255442900014],[-87.61864173099994,77.1161970070001],[-87.61563066299993,77.10077545799999],[-87.58572343699987,77.09772370000009],[-87.47459876199989,77.11139557500003],[-87.3801163399999,77.10569896000005],[-87.33747311099992,77.1161970070001],[-87.46096757699993,77.12982819200006],[-87.46096757699993,77.13731517100003],[-87.39118404899997,77.16917552300005],[-87.36156165299994,77.17649974200008],[-87.08348548099988,77.18903229400013],[-87.02277584499984,77.17820872600008],[-87.02961178299994,77.17076243700006],[-87.00861568899992,77.16795482000003],[-86.98029537699998,77.16832103100016],[-86.95767167899989,77.16502513200011],[-86.95388749899988,77.15094635600018],[-86.91934160099987,77.1391462260001],[-86.87108313699994,77.13096751500011],[-86.82323157499991,77.12933991100009],[-86.79002844999991,77.13731517100003],[-86.86599687399993,77.16233958500014],[-86.8924047519999,77.16461823100012],[-86.8924047519999,77.17076243700006],[-86.6037898429999,77.17820872600008],[-86.6767878899999,77.19346751500012],[-86.82839921799993,77.18016185100011],[-86.90029863199986,77.19053782800002],[-86.92898515499985,77.19806549700017],[-87.1326391269999,77.21360911699998],[-87.15933183499993,77.20555247600012],[-87.1456599599999,77.19871653900013],[-87.18130449099996,77.20018138199998],[-87.19782467399992,77.20420970300013],[-87.21458899599995,77.21238841400007],[-87.20173092399992,77.21385325700011],[-87.14386959499993,77.23887767100003],[-87.12507076699987,77.24424876500008],[-87.00853430899994,77.26080963700015],[-86.93553626199991,77.26048411700013],[-86.91291256399987,77.267035223],[-86.95193437399993,77.27671946800017],[-86.99364173099988,77.28156159100014],[-87.17080644399988,77.27452220300007],[-87.21731523299991,77.28233470300007],[-87.24868730399996,77.30796946800014],[-87.19644120999996,77.31378815300009],[-87.09496008999994,77.34235260600018],[-87.04181881399984,77.34894440300015],[-86.93337968699991,77.342718817],[-86.83096269399994,77.35639069200012],[-86.85037187399985,77.36387767100011],[-87.12332109299987,77.36871979400017],[-87.34866288999993,77.3339704450001],[-87.68122311099994,77.35337962400003],[-87.72101803299995,77.37006256700006],[-87.70059160099987,77.39732493700016],[-87.7224828769999,77.400620835],[-87.75169837099995,77.408433335],[-87.77594967399995,77.42100657800007],[-87.78311113199987,77.43834056200015],[-87.7579646479999,77.4581159530001],[-87.66958574099996,77.4680036480001],[-87.6465551419999,77.48676178600006],[-87.65139726499987,77.49567291900009],[-87.66462154899992,77.50348541900009],[-87.6875300769999,77.513413804],[-87.69302324099993,77.52086009300017],[-87.69627844999987,77.53489817900011],[-87.70059160099987,77.54075755400008],[-87.71833248599998,77.54759349199998],[-87.78311113199987,77.54820384300014],[-87.81961015499992,77.55267975500003],[-87.83722896999987,77.558294989],[-87.85204016799992,77.56867096600011],[-87.8412979809999,77.568304755],[-87.83071855399996,77.56928131700006],[-87.82046464799993,77.571722723],[-87.81045488199995,77.57542552300005],[-87.8262019519999,77.58189524900014],[-87.84475663999993,77.58372630400011],[-87.8823949859999,77.58234284100014],[-87.90518144399994,77.58421458500011],[-88.01065019399994,77.61456940300017],[-88.18830318899991,77.64036692900011],[-88.21149654899995,77.65033600500003],[-88.22195390499994,77.66425202000009],[-88.21462968699993,77.68048737200003],[-88.19554602799994,77.695746161],[-88.15306555899988,77.7194684920001],[-88.16047115799995,77.72691478100008],[-88.15387936099998,77.7338320980001],[-88.15330969999991,77.74237702],[-88.15798906199993,77.75157298400006],[-88.16730709499987,77.7604841170001],[-88.18529212099992,77.7643903670001],[-88.20604407499991,77.76158274900014],[-88.22439531199987,77.76158274900014],[-88.2350154289999,77.77411530200006],[-88.1836238269999,77.77558014500012],[-88.16852779899988,77.78343333500003],[-88.1809789699999,77.80145905200014],[-88.12356523299991,77.80943431200008],[-88.10525468699991,77.81504954600007],[-88.1152644519999,77.82017649900011],[-88.22195390499994,77.85667552300005],[-88.22195390499994,77.86286041900003],[-88.20059160099987,77.85700104400017],[-88.13255774599992,77.85667552300005],[-88.13577226499986,77.85309479400009],[-88.13894609299993,77.85154857000003],[-88.14622962099995,77.84983958500013],[-88.11652584499993,77.83482493700002],[-88.08108476499993,77.82640208500005],[-88.04222571499992,77.82273997600011],[-87.6171361969999,77.86363353050008],[-87.19204667899987,77.90452708500008],[-86.8467097649999,77.88947174700014],[-86.66413326699983,77.85419342700011],[-86.4521785149999,77.83641185100004],[-86.21556555899986,77.79328034100003],[-86.0726619129999,77.73387278899997],[-85.97439531199987,77.71332428600012],[-85.9569392569999,77.69114817900005],[-85.91567949099992,77.65660228100016],[-85.89187577999984,77.64069245000003],[-85.88137773299988,77.63153717700006],[-85.87694251199991,77.62095774900011],[-85.87393144399991,77.61005280200011],[-85.8679499989999,77.59971751500002],[-85.85769609299987,77.59345123900006],[-85.8453669909999,77.58844635600003],[-85.83836829299995,77.58295319199999],[-85.84406490799992,77.57542552300005],[-85.80931555899986,77.52769603100008],[-85.79588782499988,77.5129255230001],[-85.78180904899992,77.504380601],[-85.74242102799985,77.49176666900011],[-85.71853593699987,77.47447337400011],[-85.73558508999992,77.45701732000005],[-85.7956843739999,77.42527903899999],[-85.75202389199993,77.42597077000012],[-85.59471594999994,77.46088288000006],[-85.5506892569999,77.46226634300002],[-85.52879798099988,77.466253973],[-85.52660071499989,77.46959056200014],[-85.52944902299993,77.47422923400016],[-85.52944902299993,77.47821686400013],[-85.51854407499985,77.47992584800014],[-85.50808671799987,77.47911204600003],[-85.49819902299987,77.47662995000012],[-85.4888402989999,77.472398179],[-85.4803767569999,77.466253973],[-85.49307206899994,77.45897044499999],[-85.5066625639999,77.45404694200012],[-85.52098548099988,77.45176829600013],[-85.53563391799989,77.45258209800005],[-85.52737382699989,77.44346751500008],[-85.51406816299989,77.43687571800011],[-85.49860592399997,77.43284739800013],[-85.48412024599992,77.43150462400014],[-85.47150631399984,77.42890045800006],[-85.43455969999988,77.40965403900009],[-85.40225175699987,77.40074290600016],[-85.00055904899992,77.38365306200002],[-84.93854732999998,77.37400950700005],[-84.76101640499986,77.32164134300017],[-84.4661352199999,77.30174388200008],[-84.48452714799996,77.32050202000012],[-84.54808508999994,77.33726634300014],[-84.57599850199998,77.34894440300015],[-84.56545976499993,77.36314524900017],[-84.57644609299987,77.37364329600014],[-84.59756425699989,77.38060130400014],[-84.61701412699989,77.38365306200002],[-84.57331295499989,77.406683661],[-84.49710038999984,77.40684642100014],[-84.35627193899984,77.39048899900014],[-84.06208248599992,77.40416087400017],[-83.76414954349991,77.37655263850012],[-83.46621660099989,77.34894440300015],[-83.47223873599992,77.36200592700014],[-83.48753821499989,77.38495514500012],[-83.48416093699987,77.39142487200003],[-83.7998347649999,77.42902252800003],[-83.83617102799991,77.45880768400004],[-83.80370032499991,77.47276439000011],[-83.62385006399984,77.47247955900015],[-83.57473710799991,77.481431382],[-83.50422115799992,77.5025088560001],[-83.42463131399984,77.50718821800005],[-83.3889460929999,77.51410553600012],[-83.3733617829999,77.51927317900014],[-83.35635331899994,77.52769603100008],[-83.31692460799988,77.558335679],[-83.30174719999988,77.56244538000014],[-83.25906327999985,77.567816473],[-83.02432206899988,77.67186107000013],[-82.98611406199993,77.67853424700017],[-82.97297115799995,77.68394603100005],[-82.96483313699994,77.69590892100014],[-82.95877031199984,77.70787181200008],[-82.95230058499993,77.71332428600012],[-82.93411210799985,77.71527741100009],[-82.88088945199988,77.72797272300012],[-82.78034420499995,77.79523346600017],[-82.78811601499984,77.7959658870001],[-82.80833899599986,77.80145905200014],[-82.7696833979999,77.81529368700005],[-82.68431555899986,77.83331940300013],[-82.65066484299984,77.85667552300005],[-82.6439509759999,77.86924876500012],[-82.6453344389999,77.88617584800012],[-82.64069576699987,77.89423248900005],[-82.61921139199984,77.90611399900011],[-82.54080156199986,77.92491282800016],[-82.58177649599989,77.94603099199999],[-82.56436113199993,77.9506696640001],[-82.5298559239999,77.95347728100013],[-82.5134578119999,77.9597028670001],[-82.52786210799988,77.96556224200005],[-82.5527644519999,77.97960032800002],[-82.5619197259999,77.98704661699999],[-82.55402584499993,77.98814524900003],[-82.55085201699987,77.98961009300008],[-82.5476374989999,77.99323151200015],[-82.5852758449999,78.01194896000011],[-82.5960180329999,78.02118561400007],[-82.54470781199987,78.03876373900012],[-82.4858699209999,78.04417552300008],[-82.37010657499988,78.04161204600014],[-82.37185624899988,78.05540599200008],[-82.35570227799991,78.06285228100013],[-82.33450273299991,78.07001373900009],[-82.32107499899993,78.08258698100018],[-82.50906327999989,78.08026764499999],[-82.65746008999989,78.06175364799998],[-82.76488196499992,78.02769603100008],[-82.78408769399988,78.01768626500008],[-82.7929988269999,77.98899974200013],[-82.76785234299993,77.96674225500007],[-82.73879960799985,77.94761790600002],[-82.73599199099989,77.92833079600017],[-82.75894120999989,77.91620514500009],[-82.93602454299992,77.88190338700012],[-82.95913652299987,77.87034739799999],[-82.95563717399997,77.86286041900003],[-82.96511796799987,77.855210679],[-82.97988847599996,77.8465436870001],[-82.99266516799992,77.83616771],[-82.98639889199987,77.83616771],[-83.00072180899994,77.8261579450001],[-83.07107499899988,77.81065501500011],[-83.1084285149999,77.79645416900009],[-83.12360592399989,77.787787177],[-83.18508867099987,77.72321198100003],[-83.20189368399988,77.70954010600008],[-83.2398168609999,77.69489166900009],[-83.32656816299993,77.671616929],[-83.39114335799988,77.62327708500007],[-83.42251542899992,77.60728587400017],[-83.67849687399988,77.53453196800011],[-83.9182429679999,77.49351634300011],[-83.92617753799996,77.496568101],[-83.9221492179999,77.50336334800012],[-83.91283118399986,77.51011790600016],[-83.9044490229999,77.513413804],[-84.0841365229999,77.509507554],[-84.33421790299994,77.53257884300014],[-84.76101640499986,77.5202497420001],[-84.78482011599995,77.52464427299999],[-84.84544837099992,77.54319895999998],[-84.86465410099987,77.55499909100017],[-84.8572078119999,77.56244538000014],[-84.86819413999986,77.57347239799999],[-84.85647538999987,77.58307526200015],[-84.83486894399988,77.59088776200015],[-84.65363521999993,77.62327708500007],[-84.6312556629999,77.63011302299999],[-84.59292558499996,77.65387604400009],[-84.50641842399989,77.67723216399999],[-84.47256425699993,77.69183991099999],[-84.43358313699994,77.72516510600009],[-84.4350886709999,77.72858307500009],[-84.44261633999986,77.73655833500004],[-84.45205644399995,77.74363841400009],[-84.4648738269999,77.74876536700013],[-84.47923743399988,77.75214264500015],[-84.49364173099994,77.75397370000003],[-84.4942927729999,77.75397370000003],[-84.4960017569999,77.75429922100015],[-84.49880937399985,77.75474681200014],[-84.50177975199995,77.75507233300006],[-84.50503495999989,77.75486888200011],[-84.50837154899992,77.75425853100016],[-84.49583899599992,77.75328196800008],[-84.49339758999987,77.7527936870001],[-84.49233964799993,77.75254954600014],[-84.47923743399988,77.74302806200014],[-84.47362219999988,77.73997630400005],[-84.48660234299987,77.7194684920001],[-84.49258378799988,77.71360911700008],[-84.50967363199992,77.70250071800005],[-84.5179744129999,77.6952985700001],[-84.54450436099995,77.68089427300013],[-84.62010657499988,77.669378973],[-84.71572831899994,77.639634507],[-84.94302324099993,77.60272858300011],[-84.96312415299988,77.60789622600012],[-85.00055904899992,77.62327708500007],[-85.28246008999989,77.65965403900005],[-85.30715898299988,77.671087958],[-85.30060787699989,77.68382396000005],[-85.28148352799991,77.69786204600011],[-85.26809648299991,77.71332428600012],[-85.3381648429999,77.73033274900007],[-85.35061601499993,77.73997630400005],[-85.2106013659999,77.75877513200011],[-85.20173092399997,77.77000560100011],[-85.19798743399994,77.784369208],[-85.1895238919999,77.79832591400007],[-85.16413326699987,77.80621979400003],[-85.05581620999993,77.80145905200014],[-84.96963456899988,77.81879303600012],[-84.94595292899987,77.82872142100003],[-84.97142493399988,77.84373607000003],[-85.00881913999991,77.84418366100014],[-85.04743404899997,77.83604564000002],[-85.09243730399987,77.82103099200009],[-85.14517167899996,77.8218854840001],[-85.26003984299987,77.80390045800006],[-85.32494055899986,77.80390045800006],[-85.37991288999984,77.81329987200009],[-85.39736894399991,77.82090892100003],[-85.4016820949999,77.83165110900013],[-85.3847957019999,77.84605540600002],[-85.32022050699995,77.872056382],[-85.25051835799988,77.885443427],[-85.17926998599995,77.88841380400011],[-85.03579667899987,77.87852610900009],[-84.9596248039999,77.88336823100016],[-84.8982234369999,77.89655182500003],[-84.86750240799991,77.89842356999998],[-84.83669999899985,77.89081452000015],[-84.84353593699987,77.89081452000015],[-84.88796952999988,77.85968659100014],[-84.9068904289999,77.84080638200011],[-84.89110266799986,77.83783600500011],[-84.67682857999993,77.90770091400005],[-84.35676021999993,77.88829173400013],[-84.31533769399991,77.89765045800009],[-84.54983476499984,77.92808665600005],[-84.89299475849987,77.91903310750017],[-85.23615475199992,77.90997955900012],[-85.35232499899993,77.88458893400009],[-85.47264563699989,77.872056382],[-85.49347896999987,77.87323639500012],[-85.50833085799991,77.88336823100016],[-85.5122371079999,77.89459870000017],[-85.50959225199992,77.90350983300011],[-85.50121008999986,77.90936920800004],[-85.48782304599987,77.91132233300002],[-85.65233313699989,77.91905345300002],[-85.67959550699987,77.93516673400008],[-85.66055253799989,77.95014069200012],[-85.36166337799986,78.00641510600009],[-85.06277421799993,78.06268952000009],[-85.01667232999989,78.05980052300005],[-84.92544511599989,78.04161204600014],[-84.70669511599993,78.03477610900013],[-84.6891169909999,78.03758372599998],[-84.59646562399985,78.0651716170001],[-84.53860429599985,78.07453034100006],[-84.33816484299993,78.07054271000004],[-84.2886042959999,78.08258698100018],[-84.5892634759999,78.08055247600005],[-84.73810787699995,78.05853913000014],[-84.8519587879999,78.05772532800005],[-85.09740149599992,78.10309479400003],[-85.0413305329999,78.1269391950001],[-84.99441484299984,78.15831126500014],[-84.99714107999992,78.16551341399999],[-85.00588945199989,78.17059967700003],[-85.01911373599992,78.17295970300016],[-85.0353083979999,78.17198314000008],[-85.0353083979999,78.1788190780001],[-84.8421117829999,78.168931382],[-84.62356523299988,78.20319245000015],[-84.39329993399986,78.1909040390001],[-84.20881100199995,78.15953196800015],[-84.0279841789999,78.1788190780001],[-84.0279841789999,78.18561432500003],[-84.22317460799994,78.18561432500003],[-84.42520097599987,78.21295807500007],[-84.75275631399987,78.21812571800011],[-84.87075761599996,78.19928620000015],[-84.94851640499986,78.20123932500012],[-84.96833248599998,78.21405670800014],[-84.94937089799987,78.24396393400004],[-84.93439693899984,78.25482819200003],[-84.88455156199986,78.2781436220001],[-84.87352454299992,78.28563060099998],[-84.85098222599991,78.30853913000007],[-84.80882727799991,78.32652415600002],[-84.58816484299987,78.34373607000013],[-84.57599850199998,78.35350169499999],[-84.5833227199999,78.36688873900009],[-84.60073808499996,78.37213776200015],[-84.62136796799987,78.37140534100003],[-84.63809160099989,78.36688873900009],[-84.66795813699991,78.35496653900003],[-84.69766191299993,78.3469098980001],[-84.72826087099995,78.34296295800011],[-84.76101640499986,78.34324778900005],[-84.7884822259999,78.34833405200008],[-84.84268144399996,78.36534251500012],[-84.87087968699984,78.36998118700016],[-84.86473548099985,78.37523021000005],[-84.85818437399988,78.37921784100003],[-84.8511449859999,78.38206614800008],[-84.85098222599991,78.38426341400007],[-84.83877519399996,78.39451731999998],[-84.82754472599987,78.41160716400013],[-84.81936601499987,78.4311384140001],[-84.81623287699988,78.44908274900014],[-84.80374101499987,78.46710846600007],[-84.78066972599993,78.47711823100015],[-84.76834062399986,78.48761627800003],[-84.78831946499993,78.50714752800012],[-84.71784420499995,78.53282298400008],[-84.65892493399988,78.57261790600016],[-84.63760331899994,78.58360423400002],[-84.61701412699989,78.5896670590001],[-84.64696204299986,78.599351304],[-84.6795955069999,78.59100983300011],[-84.7405085929999,78.55866120000009],[-84.83291581899994,78.52191803599999],[-84.8572078119999,78.50714752800012],[-84.8585505849999,78.49677155200011],[-84.86351477799985,78.48065827000013],[-84.87287350199998,78.46588776200015],[-84.88792883999989,78.45933665600008],[-84.89940344999994,78.456162828],[-84.9181208979999,78.44029368700008],[-84.9318741529999,78.43427155199998],[-84.96060136599988,78.42833079600014],[-84.97232011599995,78.42222728100008],[-84.98005123599998,78.41095612200016],[-84.97101803299995,78.40949127800012],[-84.9652400379999,78.40709056200008],[-84.95278886599986,78.39854564000014],[-84.96401933499988,78.38902415600016],[-84.97248287699992,78.37482330900004],[-84.97280839799996,78.360337632],[-84.9596248039999,78.35008372600008],[-84.97634843699984,78.33881256700009],[-85.02863521999984,78.319281317],[-85.04898027299993,78.315375067],[-85.04670162699995,78.30573151200002],[-85.04324296799984,78.300238348],[-85.03750566299986,78.29730866100009],[-85.02855383999986,78.29547760600009],[-85.02855383999986,78.28868235900008],[-85.05874589799986,78.28510163000003],[-85.0849503249999,78.27850983300011],[-85.19839433499993,78.22764720300009],[-85.23778235599994,78.20123932500012],[-85.36131751199994,78.15977610900002],[-85.3847957019999,78.14744700700005],[-85.39163163999993,78.13719310100014],[-85.4914851549999,78.10606517100014],[-85.52879798099988,78.10309479400003],[-85.52879798099988,78.10932037999999],[-85.51829993399991,78.10948314000012],[-85.5079646479999,78.11090729400003],[-85.48782304599987,78.11668528899999],[-85.85775712799986,78.08940257400008],[-86.22769120999993,78.06211985900002],[-86.24559485599991,78.06480540600008],[-86.27102617099989,78.07184479400014],[-86.28937740799995,78.08336009300008],[-86.28604081899994,78.09996165600013],[-86.26610266799985,78.12413157800016],[-86.25283769399991,78.1338972030001],[-86.23452714799996,78.13719310100014],[-86.23452714799996,78.14463939000002],[-86.2412410149999,78.148138739],[-86.2503149079999,78.15513743700006],[-86.25560462099989,78.15831126500014],[-86.22415117099987,78.16636790600008],[-86.11799068899984,78.17198314000008],[-86.09670976499987,78.17735423400013],[-86.02224687399988,78.21295807500007],[-85.93919837099992,78.23737213700014],[-85.92601477799985,78.25047435100011],[-85.9201960929999,78.26776764500012],[-85.90652421799987,78.27610911699999],[-85.89061438699986,78.28282298400013],[-85.8782039049999,78.29547760600009],[-85.8869929679999,78.29539622600011],[-85.89346269399988,78.2972272810001],[-85.90554765499989,78.30231354400003],[-85.8773494129999,78.319322007],[-85.85000566299993,78.32872142100011],[-85.83657792899996,78.34178294499999],[-85.85033118399988,78.36998118700016],[-85.84426835799988,78.371568101],[-85.83039303299996,78.37742747600012],[-85.84402421799993,78.38397858300011],[-85.86025956899987,78.38556549700014],[-85.87694251199991,78.38304271000014],[-85.89187577999984,78.37742747600012],[-85.88503984299984,78.37742747600012],[-85.8929744129999,78.36998118700016],[-85.89651445199988,78.36444733300014],[-85.89598548099991,78.35850657800002],[-85.89187577999984,78.35008372600008],[-85.90859941299988,78.34227122600008],[-85.94798743399988,78.33079661700013],[-85.97964433499993,78.32721588700015],[-85.9884333979999,78.32310618700002],[-85.99514726499987,78.31854889500006],[-86.00112870999988,78.315375067],[-86.04568437399988,78.30707428600012],[-86.05638587099989,78.30231354400003],[-86.06228593699993,78.29307689000017],[-86.06484941299993,78.27159251500005],[-86.06940670499998,78.2613386090001],[-86.08332271999987,78.251898505],[-86.14378821499986,78.238959052],[-86.2364802729999,78.20506419500012],[-86.28766842399995,78.19525787999999],[-86.35525468699993,78.20945872600011],[-86.43997148299991,78.20677317900014],[-86.4853816399999,78.2155622420001],[-86.50625566299988,78.21519603100008],[-86.52932695199993,78.20677317900014],[-86.56916256399992,78.18077220300013],[-86.72500566299993,78.12872955900009],[-86.76976477799988,78.12042877800012],[-87.1288142569999,78.12380605649999],[-87.48786373599992,78.12718333500005],[-87.51667232999993,78.13353099199999],[-87.53669186099991,78.14463939000002],[-87.4925837879999,78.17027415600006],[-87.43553626199991,78.18711985900008],[-87.09105383999994,78.20677317900014],[-87.09105383999994,78.21295807500007],[-87.20026607999993,78.21918366100006],[-87.27835038999989,78.2354190120001],[-87.3470759759999,78.22117747600002],[-87.4192602199999,78.21617259300014],[-87.48843339799986,78.21898021000011],[-87.52301998599998,78.23338450700008],[-87.5207820299999,78.2444929060001],[-87.50064042899994,78.26670970300016],[-87.49575761599988,78.2781436220001],[-87.49893144399992,78.29258860900008],[-87.5130102199999,78.31517161700005],[-87.51618404899995,78.32591380400005],[-87.50926673099985,78.35240306200005],[-87.4986873039999,78.3744977890001],[-87.50015214799987,78.39350006700012],[-87.52928626199991,78.41095612200016],[-87.51130123599998,78.43537018400004],[-87.48245195199988,78.45197174700009],[-87.15725663999993,78.54930247600008],[-86.85830644399991,78.548773505],[-86.8591609369999,78.55577220300016],[-86.8586726549999,78.56793854400014],[-86.85830644399991,78.56919993700016],[-86.9035538399999,78.58295319200009],[-87.05508378799996,78.56919993700016],[-87.10155188699991,78.57526276200015],[-87.1223445299999,78.5828718120001],[-87.11839758999992,78.59345123900015],[-86.98875891799992,78.648179429],[-86.96865800699996,78.66771067900005],[-86.96072343699988,78.69586823100005],[-86.9404597649999,78.71417877800012],[-86.60985266799989,78.809271552],[-86.58096269399988,78.81199778900007],[-86.55231686099992,78.81114329600017],[-86.50593014199987,78.80223216400012],[-86.01589921799987,78.83787669499999],[-85.75731360599991,78.83165110900002],[-85.49242102799991,78.87596263200008],[-85.38381913999984,78.88385651200004],[-85.24612382699989,78.9168561870001],[-85.22048906199984,78.91974518400004],[-85.16543535099987,78.91193268400002],[-85.03107662699995,78.92186107000005],[-84.70612545499995,78.87083567900005],[-84.22588050049995,78.85484446799997],[-83.74563554599985,78.83885325700004],[-83.54946855399993,78.79234446800002],[-83.32217363199993,78.77195872600012],[-83.2601619129999,78.74730052300005],[-83.16169186099997,78.72443268400002],[-82.78783118399991,78.69273509300017],[-82.75711015499989,78.68170807500003],[-82.70409094999988,78.67039622600014],[-82.69098873599992,78.66539134300011],[-82.70531165299991,78.65794505400011],[-82.69070390499986,78.64988841399997],[-82.64338131399984,78.64268626500014],[-82.62918046799993,78.63731517100008],[-82.62417558499986,78.63096751500017],[-82.62018795499989,78.62409088700015],[-82.60903886599986,78.61701080900008],[-82.5791316399999,78.6070417340001],[-82.50723222599991,78.59210846600014],[-82.44241288999984,78.58612702000015],[-82.3767797519999,78.57135651200014],[-82.34280351499989,78.56919993700016],[-82.26431230399996,78.5871442730001],[-82.2390844389999,78.5896670590001],[-82.2390437489999,78.59434642100014],[-82.2403865229999,78.59772370000015],[-82.2460017569999,78.60398997600011],[-82.51467851499993,78.6688093120001],[-82.5960180329999,78.70640696800011],[-82.49771074099993,78.71739329600017],[-82.4719132149999,78.72687409100017],[-82.4793188139999,78.73371002800009],[-82.24730383999989,78.71991608300007],[-82.21926835799988,78.72687409100017],[-82.26248124899988,78.75132884300011],[-82.33942623599998,78.75922272300008],[-82.77346757699993,78.73371002800009],[-82.80500240799992,78.73749420800011],[-82.89020748599992,78.767808335],[-82.9261775379999,78.77317942900005],[-83.00015214799987,78.773911851],[-83.03571529899995,78.7798932960001],[-83.07888749899985,78.79918040600012],[-83.09813391799989,78.80316803600012],[-83.2108455069999,78.803656317],[-83.22756913999983,78.80719635600016],[-83.23440507699988,78.81211985900013],[-83.25015214799991,78.83006419499999],[-83.2601619129999,78.83673737200014],[-83.20925859299986,78.8511823590001],[-82.98371334499987,78.85521067900008],[-82.64810136599992,78.83551666900003],[-82.40143795499992,78.8286807310001],[-82.35586503799988,78.83673737200014],[-82.32453365799992,78.84747955900015],[-82.01797441299986,78.86701080900004],[-81.77171790299984,78.865912177],[-81.73884029899996,78.85716380400011],[-81.80728105399993,78.84752024900013],[-81.75369218699984,78.84300364799999],[-81.7100317049999,78.84910716399999],[-81.70535234299993,78.87083567900005],[-81.69163977799988,78.87071360900008],[-81.67926998599995,78.87494538],[-81.65689042899993,78.89073314000014],[-81.67967688699984,78.90245189000014],[-81.75999915299988,78.918646552],[-81.74640865799992,78.9297549500001],[-81.71222896999993,78.94944896000005],[-81.6985570949999,78.97850169500013],[-81.68333899599992,78.989447333],[-81.66702226499989,78.995062567],[-81.65689042899993,78.99437083500004],[-81.6401667959999,79.00397370000006],[-81.47878984299984,79.04901764500012],[-81.4962458979999,79.05748118700016],[-81.53547115799992,79.06285228100002],[-81.54702714799996,79.0694440780001],[-81.56216386599996,79.06102122600014],[-81.88137773299988,79.01886627800009],[-81.94070390499984,79.00397370000006],[-81.97223873599995,78.98008860900016],[-81.95856686099992,78.98008860900016],[-81.97345943899985,78.96979401200015],[-82.03368079299995,78.95343659100006],[-82.10228430899986,78.92210521],[-82.1224666009999,78.916489976],[-82.53457597599993,78.88511790600012],[-82.5605769519999,78.888413804],[-82.6116023429999,78.90196360900013],[-82.96780351499987,78.94078196800017],[-83.33120683499996,78.93174876500014],[-83.66909745999996,78.93366120000012],[-83.96125240799995,78.96202220300013],[-84.27928626199986,78.95530833500003],[-84.50951087099986,79.01536692900011],[-84.75210527299993,79.03892649900014],[-84.78278561099991,79.05280182500005],[-84.7820531889999,79.07689036700008],[-84.76593990799992,79.087103583],[-84.70018469999985,79.09678782800016],[-84.65558834499987,79.11265696800008],[-84.50576738199993,79.14679596600008],[-84.45291093699987,79.14830149900014],[-84.34064693899987,79.13226959800015],[-84.16454016799992,79.13092682500015],[-84.05085201699993,79.10468170800014],[-84.04832923099991,79.10289134300014],[-84.0577693349999,79.09813060100005],[-84.06887773299985,79.08311595300005],[-84.04979407499985,79.08307526200004],[-84.0305476549999,79.07990143400015],[-84.01345781199987,79.07489655200011],[-84.00064042899993,79.0694440780001],[-83.99929765499985,79.06708405200014],[-83.99880937399988,79.06309642100014],[-83.9977107409999,79.05870189000008],[-83.99441484299987,79.05524323100016],[-83.98249264199984,79.05109284100006],[-83.71495520749991,79.04004547750004],[-83.44741777299987,79.02899811400015],[-83.39944413999987,79.03660716399999],[-83.36318925699996,79.05524323100016],[-83.40697180899991,79.06574127800015],[-83.49710038999987,79.04661692900008],[-83.54092363199993,79.04706452000006],[-83.69241288999987,79.07001373900006],[-83.71328691299993,79.07689036700008],[-83.69912675699989,79.08226146000011],[-83.69277910099987,79.08311595300005],[-83.72744706899996,79.09662506699999],[-83.87995357999995,79.12303294499999],[-83.96121171799987,79.1276309270001],[-83.99441484299987,79.13837311400015],[-83.98875891799987,79.14142487200003],[-83.9856664699999,79.14439524900014],[-83.9835505849999,79.14752838700012],[-83.98013261599988,79.15135325700014],[-83.99242102799994,79.15062083500003],[-84.00466874899989,79.15159739799999],[-84.01659094999985,79.15428294500005],[-84.0279841789999,79.158880927],[-84.00894120999989,79.17100657800007],[-83.9826960929999,79.18036530200011],[-83.93179277299987,79.19236888200012],[-83.96247311099995,79.22040436400005],[-84.00027421799992,79.22300853100013],[-84.08405514199984,79.194322007],[-84.14281165299992,79.18268463700018],[-84.3296199209999,79.19236888200012],[-84.31765702999988,79.20355866100006],[-84.32217363199992,79.218369859],[-84.33547929599985,79.23395416900003],[-84.35008704299985,79.24762604400014],[-84.33584550699996,79.24762604400014],[-84.34695390499988,79.2629255230001],[-84.3675837879999,79.27000560100008],[-84.3905330069999,79.27525462400013],[-84.41633053299992,79.29071686400009],[-84.42398027299987,79.29332103100008],[-84.42971757699993,79.29710521000003],[-84.43350175699996,79.31553782800013],[-84.43708248599992,79.31883372600008],[-84.44155839799988,79.32164134300002],[-84.44570878799993,79.33018626500014],[-84.44900468699987,79.3619245460001],[-84.45246334499987,79.37107982],[-84.46149654899997,79.37632884300017],[-84.47280839799987,79.37718333500007],[-84.48249264199993,79.3792585310001],[-84.48660234299987,79.38825104400011],[-84.48582923099985,79.40875885600015],[-84.48660234299987,79.41270579600014],[-84.50637773299991,79.42125071800017],[-84.58975175699989,79.44004954600003],[-84.68895423099994,79.44769928600006],[-84.8793025379999,79.48741282800016],[-84.89598548099994,79.49791087400003],[-84.88455156199986,79.51451243700006],[-84.89972896999987,79.51963939000011],[-84.93065344999991,79.52403392100008],[-84.96833248599998,79.53839752800015],[-84.9739070299999,79.54246653900013],[-84.9743953119999,79.54649485900008],[-84.97166907499991,79.55088939000017],[-84.96637936099992,79.55613841400007],[-84.98298092399989,79.56871165600012],[-85.00344804599987,79.57782623900015],[-85.04898027299993,79.59080638200014],[-85.03661048099988,79.60407135600015],[-85.02102617099989,79.61753978100013],[-85.17434648299991,79.65025462400017],[-85.32156327999985,79.67967357000008],[-85.62783769399996,79.70909251500017],[-85.86278235599988,79.6981061870001],[-86.15778561099992,79.73273346600007],[-86.44985917899993,79.75421784100001],[-86.4746801419999,79.76097239800005],[-86.48989824099996,79.76976146000011],[-86.4961238269999,79.77757396000011],[-86.4966121079999,79.78583405199998],[-86.48953202999985,79.81346263200011],[-86.4819229809999,79.82164134300002],[-86.46873938699986,79.82371653900013],[-86.37848873599995,79.82359446800017],[-86.3967992829999,79.82994212400008],[-86.43618730399989,79.83824290600006],[-86.45364335799985,79.85032786699999],[-86.45986894399991,79.86029694200006],[-86.46776282499988,79.8822695980001],[-86.4746801419999,79.89256419500009],[-86.4632869129999,79.90745677300005],[-86.45710201699985,79.922796942],[-86.44928951699987,79.93724192900005],[-86.43313554599989,79.94993724200013],[-86.39627031199993,79.96299876500011],[-86.31179765499988,79.97374095300002],[-85.96548417899993,79.95575592700008],[-85.87889563699986,79.94147370000017],[-85.53457597599991,79.93549225500006],[-85.4189346999999,79.90558502800009],[-85.33259029899989,79.90013255400005],[-85.28709876199991,79.90696849200008],[-85.25381425699992,79.92601146000004],[-85.42483476499984,79.93394603100002],[-85.52139238199989,79.96544017100005],[-85.87262936099992,79.977728583],[-85.95238196499986,79.99168528900007],[-86.44107011599996,80.00763580900013],[-86.53465735599991,80.0308698590001],[-86.57892818899987,80.047308661],[-86.58377031199984,80.05048248900005],[-86.5847875639999,80.05516185100008],[-86.58511308499993,80.0606550150001],[-86.58767656199983,80.06635163000009],[-86.60208085799991,80.07904694200013],[-86.6332087879999,80.09800853100016],[-86.64541581899996,80.11102936400015],[-86.65379798099994,80.13694896000014],[-86.64309648299991,80.15318431200008],[-86.58975175699996,80.19013092700014],[-86.55679277299987,80.20494212400011],[-86.5498347649999,80.21031321800017],[-86.5471899079999,80.2204450540001],[-86.54051673099985,80.23004791900007],[-86.53152421799993,80.23749420800009],[-86.52188066299996,80.2413190780001],[-86.52932695199993,80.24815501500011],[-86.52041581899991,80.25836823100006],[-86.51602128799989,80.26817454600017],[-86.50881913999987,80.28978099199999],[-86.51174882699989,80.28856028900007],[-86.51492265499986,80.2922223980001],[-86.51675370999993,80.29795970300007],[-86.5156550769999,80.30280182500015],[-86.5039363269999,80.30906810100011],[-86.47341874899988,80.31037018400012],[-86.43773352799994,80.32001373900009],[-86.16553707599994,80.3291893575001],[-85.8933406239999,80.33836497600014],[-85.72708085799991,80.3151716170001],[-85.3157039049999,80.268540757],[-84.97122148349987,80.27360667500004],[-84.62673906199984,80.27867259300014],[-84.33230546799987,80.27360667500004],[-84.0378718739999,80.268540757],[-83.78787187399988,80.25092194200006],[-83.34382076699984,80.14598216400005],[-83.11331132699988,80.07420482000006],[-82.67756100199992,79.99180735900013],[-82.4242244134999,79.93034495650001],[-82.17088782499987,79.86888255399998],[-82.10472571499989,79.84227122600014],[-82.07469641799995,79.82359446800017],[-82.01488196499989,79.77488841400013],[-81.98037675699987,79.75779857],[-81.96483313699989,79.74730052300009],[-81.97256425699987,79.74420807500003],[-81.97728430899988,79.74009837400008],[-81.9858699209999,79.72740306200002],[-81.91144771999991,79.70298899900017],[-81.83112545499992,79.69342682500009],[-81.67056230399987,79.69330475500011],[-81.68655351499987,79.66551341400005],[-81.67747962099986,79.64838288000011],[-81.61595618399991,79.62437571800017],[-81.63508053299998,79.61778392100008],[-81.65900631399983,79.61225006700006],[-81.68366451699984,79.6102969420001],[-81.70474199099995,79.61448802300004],[-81.72533118399988,79.62169017100008],[-81.75072180899991,79.62632884300002],[-81.7737117179999,79.62425364799999],[-81.78726152299987,79.61139557500017],[-81.65164140499985,79.59422435100005],[-81.58698482999992,79.60130442900011],[-81.45315507699988,79.64170970300016],[-81.37800045499998,79.64293040600008],[-80.98273678299995,79.60604482650014],[-80.58747311099992,79.56915924700014],[-80.5996801419999,79.57859935100005],[-80.61351477799991,79.58311595300002],[-80.62808183499992,79.58616771000011],[-80.64273027299993,79.59080638200014],[-80.62010657499988,79.60407135600015],[-80.35230465399985,79.62765127150004],[-80.08450273299991,79.65123118700014],[-79.95303300699993,79.64561595300012],[-79.91958574099988,79.64854564000017],[-79.75202389199987,79.70697663000006],[-80.07603919149992,79.69832998250011],[-80.40005449099989,79.68968333500005],[-80.44461015499988,79.67503489800004],[-80.8810115229999,79.65391673400005],[-81.32217363199989,79.720648505],[-81.50324459499988,79.71482982000013],[-81.52342688699991,79.71800364800002],[-81.53343665299991,79.72125885600006],[-81.51089433499993,79.744818427],[-81.50609290299994,79.75470612200012],[-81.56692460799985,79.76524485900016],[-81.6289770169999,79.76837799700006],[-81.58645585799994,79.78953685100005],[-81.56558183499996,79.80662669499998],[-81.57127844999985,79.82672760600002],[-81.60423743399991,79.8613955750001],[-81.62454179599993,79.87803782800016],[-81.65896562399985,79.88926829600017],[-81.6643774079999,79.89842357000005],[-81.66169186099992,79.90757884300002],[-81.64981035099987,79.91172923400016],[-81.5675349599999,79.92601146000004],[-81.44229081899991,79.926743882],[-81.40371660099991,79.939683335],[-81.45726477799992,79.95416901200004],[-81.72822018149989,79.97260162950012],[-81.99917558499993,79.99103424700012],[-82.07034257699985,80.01007721600011],[-82.16873124899988,80.0182966170001],[-82.51858476499993,80.11546458500011],[-82.94237219999984,80.244370835],[-83.00169837099992,80.27964915600002],[-83.20555579299995,80.31708405200006],[-83.20555579299995,80.32322825700014],[-83.15920976499987,80.33543528900009],[-82.8477066724999,80.35500722899997],[-82.53620357999995,80.37457916900014],[-82.26239986899989,80.3892886415001],[-81.98859615799995,80.40399811400015],[-81.61213131399988,80.41099681200002],[-81.19219587566658,80.43154531466674],[-80.77226043733314,80.45209381733343],[-80.35232499899985,80.47264232000005],[-80.29263261599996,80.48838939000002],[-80.30996660099993,80.49388255400014],[-80.34573320199988,80.49774811400013],[-80.36156165299991,80.50828685100011],[-80.05117753799993,80.52757396000013],[-79.7804255849999,80.53280263850009],[-79.50967363199996,80.53803131700012],[-79.42971757699985,80.55280182500012],[-79.04031327999988,80.54979075700003],[-78.92752031199987,80.5644391950001],[-78.81322180899991,80.55552806200008],[-78.6996150379999,80.57029857000005],[-78.40451005749986,80.56698232650008],[-78.1094050769999,80.563666083],[-78.05231686099992,80.56907786700005],[-78.03152421799993,80.57713450700008],[-78.03604081899988,80.57884349199999],[-78.0389705069999,80.58397044499998],[-78.03152421799993,80.58397044499998],[-78.02798417899996,80.58677806200014],[-78.02546139199984,80.58946360900002],[-78.02269446499989,80.591253973],[-78.0178523429999,80.59141673400016],[-78.0178523429999,80.59699127800017],[-78.40149898999991,80.60645172750004],[-78.7851456369999,80.615912177],[-79.27383378799993,80.60997142100017],[-79.61908932199992,80.61062246300013],[-79.96434485599994,80.61127350500009],[-79.96434485599994,80.61749909100001],[-79.91144771999987,80.63121165600016],[-79.56838945199986,80.66429271000001],[-79.39163163999987,80.69835032800002],[-79.07884680899984,80.71153392100017],[-78.84992428299992,80.74546946800002],[-78.63825436099992,80.75397370000015],[-78.53189042899993,80.78074778900005],[-78.33844967399989,80.78294505400005],[-78.23318437399986,80.79307689000011],[-78.18927975199992,80.8060163430001],[-77.73102779899997,80.81745026200015],[-77.50731360599985,80.83380768400018],[-77.1358943349999,80.83226146000014],[-76.85250810449992,80.83928050300001],[-76.56912187399988,80.84629954600008],[-76.51528886599992,80.85606517100001],[-76.48346920499989,80.87877024900017],[-76.58918209499993,80.90241120000009],[-76.77627519399994,80.9028181010001],[-77.0244441399999,80.88678620000012],[-77.38947506399992,80.90448639500012],[-77.6935318674999,80.90527985200013],[-77.99758867099987,80.90607330900013],[-78.11595618399988,80.88829173400016],[-78.48188229099992,80.87297190950007],[-78.84780839799993,80.85765208500005],[-78.87336178299992,80.85948314000005],[-78.89431718699987,80.86412181200016],[-78.93643144399991,80.87877024900017],[-78.91238359299987,80.89854564000008],[-78.88044186099995,80.90989817900008],[-78.86196855399993,80.92540110900006],[-78.87844804599992,80.95762767100003],[-78.89907792899996,80.97081126500017],[-78.9192195299999,80.9780134140001],[-78.92666581899988,80.98607005400014],[-78.90908769399994,81.00169505400011],[-78.88577226499984,81.01182689000008],[-78.46971594999991,81.10435618700016],[-78.42430579299992,81.12201569200009],[-78.39456132699989,81.14630768400015],[-78.47655188699994,81.15192291900014],[-78.44416256399992,81.17051829600014],[-78.38003495999988,81.17857493700008],[-78.26455644399991,81.17987702000009],[-78.15973873599994,81.19293854400014],[-78.05744381399992,81.219183661],[-77.99050859299993,81.24872467700006],[-77.84207109299987,81.28440989799999],[-77.66600501199991,81.30662669500005],[-77.6241755849999,81.32115306200008],[-77.36595618399986,81.34019603100008],[-77.19579016799995,81.37653229400017],[-77.07152258999989,81.37555573100009],[-76.96670488199996,81.40619538000011],[-76.7591039699999,81.43309153899999],[-76.74417070199985,81.44049713700015],[-76.79173743399986,81.4520124370001],[-76.85391191299995,81.45530833500014],[-77.31700598849994,81.40654124549997],[-77.78010006399992,81.35777415600002],[-77.87474524599992,81.3357608090001],[-78.19172115799995,81.30516185099998],[-78.48294023299987,81.22557200700011],[-78.5937800769999,81.21234772300006],[-78.68289140499988,81.19175853100013],[-78.7096248039999,81.17930735900002],[-78.73298092399989,81.16246165600002],[-78.75763912699989,81.13886139500009],[-78.7247615229999,81.12775299700014],[-78.70759029899997,81.12474192900005],[-78.69001217399995,81.12523021000014],[-78.73684648299991,81.11363353100002],[-78.94412187399993,81.10736725500006],[-79.22457841699992,81.15383535400012],[-79.50503495999993,81.20030345300015],[-79.4631648429999,81.17536041900003],[-79.15322831899994,81.10297272300008],[-79.09451249899993,81.09910716399999],[-79.0661921869999,81.09105052300005],[-79.10696367099985,81.070990302],[-79.21198482999995,81.07147858300009],[-79.25857499899986,81.06378815300015],[-79.32396399599992,81.02586497600014],[-79.33206132699985,81.0186628280001],[-79.34670976499987,81.00169505400011],[-79.31521562399985,80.99217357000013],[-79.28010006399997,80.98741282800005],[-79.24429277299987,80.98773834800014],[-79.1827693349999,80.9957136090001],[-79.16836503799993,80.98753489800002],[-79.17117265499988,80.9737409530001],[-79.19497636599988,80.95941803599999],[-79.27936764199985,80.92955149900003],[-79.30980383999992,80.92658112200012],[-79.37759355399993,80.92857493700014],[-79.41120357999995,80.92304108300011],[-79.43740800699987,80.90611399900014],[-79.44269771999987,80.884711005],[-79.48289954299995,80.86619700700008],[-79.61449133999989,80.8276227890001],[-79.92747962099986,80.79767487200003],[-80.05703691299988,80.76312897300012],[-80.19245357999995,80.75128815300017],[-80.35741126199986,80.73956940300016],[-80.63410396999983,80.70420970300015],[-80.87555904899995,80.66294993700002],[-81.21711178299992,80.62767161699999],[-81.55280514199993,80.62181224200013],[-81.81191972599994,80.59825267100008],[-82.07538815049992,80.58260732600012],[-82.33885657499991,80.56696198100003],[-82.37629146999984,80.55601634300017],[-82.38963782499985,80.55809153899999],[-82.7247615229999,80.55345286700003],[-82.9131160149999,80.5394147810001],[-83.12039140499984,80.54783763200005],[-83.16567949099996,80.5610212260001],[-83.16828365799995,80.58771393400004],[-83.1460668609999,80.61131419500008],[-83.11904863199996,80.63218821800005],[-83.08698482999998,80.64716217700008],[-83.04971269399991,80.65281810100005],[-82.94631913999993,80.65208567900014],[-82.8902888659999,80.65863678600012],[-82.83486894399991,80.68455638200011],[-82.49213619699992,80.70571523650007],[-82.14940344999985,80.72687409100003],[-82.02725175699993,80.75450267100003],[-81.9422094389999,80.76141998900012],[-81.75999915299988,80.81671784100003],[-81.78091386599993,80.82530345300012],[-81.86237545499998,80.82416413000003],[-81.97028561099988,80.83722565300017],[-82.02375240799992,80.83197663],[-82.12865149599986,80.80890534100006],[-82.37385006399992,80.78558991100012],[-82.42243404899997,80.77281321800008],[-82.48074296799987,80.77460358300009],[-82.50812740799992,80.77118561400006],[-82.52566484299987,80.76312897300012],[-82.54051673099994,80.7533633480001],[-82.5567113919999,80.74510325700003],[-82.5786433579999,80.741644598],[-83.00153561099994,80.723008531],[-83.30178788999987,80.698431708],[-83.49901282499991,80.70123932500015],[-83.52594967399989,80.70538971600008],[-83.54816646999984,80.71430084800012],[-83.5276586579999,80.72117747600012],[-83.53718014199988,80.72728099200012],[-83.5686335929999,80.741644598],[-83.52643795499998,80.75804271000011],[-83.35635331899994,80.76951732000005],[-83.14989173099991,80.81773509300008],[-83.12360592399989,80.83100006700012],[-83.27371171799987,80.84650299700003],[-83.32225501199991,80.83722565300017],[-83.36697343699987,80.81549713700012],[-83.38369706899991,80.80992259300011],[-83.53201249899988,80.78449127800009],[-83.57888749899985,80.78257884300002],[-83.60098222599993,80.77936432500017],[-83.65802975199992,80.75523509300014],[-83.70612545499989,80.74864329600007],[-83.86282304599993,80.76207103100006],[-83.84280351499987,80.75450267100003],[-83.77468827999994,80.741644598],[-83.80988521999987,80.73883698100015],[-83.82917232999992,80.72618235900008],[-83.82669023299988,80.70884837400008],[-83.79653886599996,80.69200267100008],[-83.77334550699993,80.68231842700013],[-83.75003007699993,80.66803620000003],[-83.73070227799991,80.65074290600013],[-83.7194718089999,80.63178131700012],[-83.74242102799988,80.61790599200005],[-83.7799373039999,80.57721588700015],[-83.80174719999988,80.559759833],[-83.84601803299992,80.54405345300013],[-83.89871171799992,80.53754303600014],[-84.0794978509999,80.53611888200008],[-84.39704342399988,80.50999583500011],[-84.69115149599992,80.53168366099999],[-84.92707271999984,80.53001536699999],[-85.12136796799987,80.50409577000009],[-85.5506078769999,80.52549876500002],[-85.65090898299991,80.54124583500008],[-85.7970271479999,80.5303815780001],[-85.86453202999986,80.54295482],[-85.7957250639999,80.57457103100016],[-85.63451087099992,80.60089752800017],[-85.5628962879999,80.6249453800001],[-85.78530839799993,80.60175202000009],[-86.05020097599993,80.53782786700008],[-86.11782792899987,80.536810614],[-86.43344072199992,80.57064443550003],[-86.7490535149999,80.60447825700005],[-86.68826249899985,80.65098704600008],[-86.55174719999984,80.71617259300011],[-86.17511959549986,80.83122386250012],[-85.79849199099996,80.94627513200005],[-85.62246660099989,80.98029205900016],[-85.50763912699998,80.98505280200007],[-85.45164954299995,80.99473704600003],[-85.3636775379999,80.99546946800017],[-85.23363196499989,81.01072825700014],[-85.20954342399995,81.02049388200008],[-85.19607499899986,81.02281321800005],[-85.00055904899992,81.02899811399999],[-85.01488196499992,81.03644440300017],[-84.99771074099988,81.04230377800003],[-84.9773249989999,81.04511139500006],[-84.95677649599986,81.04437897300015],[-84.91238359299984,81.03095123900015],[-84.88406327999988,81.0280622420001],[-84.55178788949993,81.04305654500014],[-84.21951249899988,81.0580508480001],[-84.14207923099991,81.07249583500014],[-83.6789715919999,81.09357330900006],[-83.21586395299983,81.11465078300007],[-82.75275631399992,81.13572825700003],[-82.69920813699991,81.14887116100006],[-82.4590144519999,81.16063060100014],[-82.36327063699986,81.17987702000009],[-82.38483639199985,81.18541087400011],[-82.83954830624985,81.16298045425016],[-83.29426022049986,81.14055003450012],[-83.74897213474995,81.11811961475011],[-84.20368404899993,81.09568919500008],[-84.25755774599989,81.10008372600005],[-84.7174779934999,81.08451976100015],[-85.1773982409999,81.06895579600014],[-85.27981523299991,81.05125560100005],[-85.39309648299988,81.06024811400006],[-85.49103756399992,81.0510114600001],[-85.78099524599992,81.03404368700012],[-86.11156165299991,80.99290599200005],[-86.36693274599992,80.92723216400005],[-86.44058183499988,80.89524974200005],[-86.46190344999994,80.888617255],[-86.56305904899992,80.87461985900005],[-86.62551835799988,80.84467194200006],[-86.61807206899991,80.83722565300017],[-87.06387285099993,80.73358795800006],[-87.0842585929999,80.72117747600012],[-87.09911048099987,80.6914737000001],[-87.1647029289999,80.66429271000001],[-87.27603105399993,80.63178131700012],[-87.46511796799987,80.63365306200009],[-87.70653235599991,80.64545319200006],[-87.8949275379999,80.67491282800013],[-88.10106360599991,80.6807722030001],[-88.37783769399994,80.72199127800015],[-88.62515214799993,80.76902903900007],[-88.93138587099995,80.79852936400015],[-89.18455969999985,80.85154857000008],[-89.38638261599993,80.87889232000005],[-89.45120195199985,80.90692780200006],[-89.46214758999992,80.91478099200013],[-89.45754960799987,80.92125071800014],[-89.43435624899985,80.92841217700008],[-89.34650631399985,80.9364688170001],[-89.27188066299993,80.95319245000015],[-89.02554277299996,80.95738353100008],[-88.8606664699999,80.98106517100008],[-88.41315670499998,80.9987653670001],[-88.12466386599993,80.9987653670001],[-87.8301488919999,80.9987653670001],[-87.61864173099994,80.9814313820001],[-87.13809160099996,80.989691473],[-87.02912350199998,81.00584544500006],[-86.69920813699991,81.00543854400014],[-86.4580785799999,81.02818431200008],[-86.2814021479999,81.06944407800013],[-86.0156957669999,81.08380768400012],[-85.85830644399994,81.07603587400003],[-85.83039303299996,81.08421458500011],[-85.87783769399991,81.092962958],[-85.9016414049999,81.10016510600003],[-85.91921952999994,81.111558335],[-85.89305579299989,81.12474192900005],[-85.8575740229999,81.1331647810001],[-85.75104732999995,81.14313385600009],[-85.67560787699992,81.16193268400002],[-85.60281327999985,81.17047760600013],[-85.53302975199989,81.18919505400014],[-85.18618730399987,81.23432038],[-84.84133867099987,81.26129791900013],[-84.76834062399986,81.27916087400011],[-84.73367265499989,81.28351471600011],[-84.74868730399992,81.296006578],[-84.77419999899989,81.29962799700017],[-84.80203202999988,81.29722728100005],[-84.82412675699995,81.29161204600001],[-84.84854081899991,81.29051341399999],[-84.93911699099993,81.31016673400013],[-85.00918535099993,81.30345286699999],[-85.24502519399994,81.29905833500003],[-85.56008867099993,81.26963939000002],[-85.87515214799993,81.2402204450001],[-86.20018469999991,81.18903229400017],[-86.2936091789999,81.15216705900009],[-86.52188066299996,81.12523021000014],[-86.5156550769999,81.12523021000014],[-86.93512936099992,81.11102936400012],[-87.3884985019999,81.06944407800013],[-87.85964921799987,81.07969798400016],[-88.35127722899986,81.06303538625015],[-88.84290523999991,81.04637278850014],[-89.33453325099988,81.02971019075001],[-89.82616126199989,81.01304759300007],[-89.94432532499994,81.02598704600011],[-89.99836178299992,81.03904857],[-90.08218339799993,81.04637278899999],[-90.18211829299987,81.07001373900002],[-90.20486406199993,81.081773179],[-90.2486873039999,81.11212799700014],[-90.31891842399995,81.14166901200004],[-90.34007727799994,81.15562571800011],[-90.35277258999992,81.17365143400004],[-90.33918209499984,81.17711009300002],[-90.29812577999985,81.19346751500014],[-89.98363196499992,81.24986399900008],[-89.96141516799989,81.24852122600002],[-89.91673743399991,81.2402204450001],[-89.84255937399988,81.24872467700006],[-89.79328365799998,81.24677155200003],[-89.6044001939999,81.21051666900009],[-89.55858313699989,81.20856354400014],[-89.24622555249994,81.22864411050016],[-88.93386796799987,81.24872467700006],[-88.99469967399989,81.26605866100013],[-89.38735917899993,81.25177643400006],[-89.57404537699992,81.28575267100008],[-89.83132890499988,81.30369700700014],[-89.95555579299992,81.33063385600009],[-89.92446855399992,81.34223053600012],[-89.60855058499992,81.36387767100011],[-89.45364335799988,81.40635814000017],[-89.24343827999994,81.41095612200012],[-88.99087480399987,81.46934642100008],[-88.88613847599993,81.45518626500017],[-88.84976152299993,81.45445384300012],[-88.81786048099991,81.46104564],[-88.8478083979999,81.46299876500017],[-88.90485592399997,81.47813548400016],[-88.93386796799987,81.48151276200018],[-88.91323808499993,81.495306708],[-88.88894609299986,81.500474351],[-88.49559485599991,81.52281321800002],[-88.30736243399986,81.52232493700014],[-87.9407445949999,81.53611888200012],[-87.9407445949999,81.52989329600008],[-87.95140540299994,81.53062571800001],[-87.95978756399988,81.52964915600013],[-87.96735592399993,81.52696360900015],[-87.97557532499994,81.52244700700011],[-87.93899492099989,81.51329173400002],[-87.8928523429999,81.5108096370001],[-87.78734290299991,81.52366771000011],[-87.72191321499993,81.51622142100014],[-87.52635657499991,81.51691315300009],[-87.2839656239999,81.4860700540001],[-87.24868730399996,81.49510325700014],[-87.25999915299994,81.49591705900006],[-87.27057857999989,81.49839915600008],[-87.28058834499987,81.50275299700014],[-87.28962154899989,81.50877513200008],[-87.31350663999987,81.51793040600013],[-87.68055172449988,81.544114488],[-88.04759680899988,81.57029857000013],[-88.13597571499992,81.55723704600013],[-88.24860592399995,81.5634626320001],[-88.2350154289999,81.57090892100007],[-88.2825414699999,81.58600495000009],[-88.34268144399988,81.59052155200006],[-88.40363521999987,81.58653392100017],[-88.50527910099996,81.563910223],[-88.61286373599994,81.55369700700008],[-88.97850501199993,81.54051341400013],[-89.30825761599993,81.50519440300009],[-89.51431230399993,81.48753489799999],[-89.78522701699984,81.44627513200014],[-90.25820878799988,81.39781321800014],[-90.3502498039999,81.3759626320001],[-90.4214167959999,81.36851634300001],[-90.4923396479999,81.370835679],[-90.55203202999986,81.38523997600005],[-90.48314368399993,81.39891185099998],[-90.85989335799994,81.44733307500009],[-90.83356686099992,81.46434153900005],[-90.4617406889999,81.51713694900003],[-90.08991451699984,81.56993235900002],[-89.97598222599989,81.56761302300005],[-89.95555579299992,81.57090892100007],[-89.94635982999995,81.57603587400011],[-89.92902584499987,81.59056224200005],[-89.91482499899985,81.596380927],[-89.64150956899991,81.60167064000017],[-89.58560136599992,81.63231028899999],[-89.83885657499992,81.63231028899999],[-90.09207109299993,81.62608470300002],[-90.07949785099993,81.63658274900008],[-90.06200110599988,81.64024485900012],[-90.04246985599991,81.64183177299999],[-90.02375240799994,81.6459821640001],[-90.04914303299994,81.65391673400008],[-90.1064346999999,81.65525950700008],[-90.13361568899992,81.66022370000003],[-90.23656165299991,81.69599030200014],[-90.29865475199992,81.70408763200008],[-90.33226477799985,81.70184967699998],[-90.35647538999984,81.69065989799999],[-90.3544815749999,81.67808665600008],[-90.33405514199983,81.66498444200012],[-90.29128984299993,81.6459821640001],[-90.31761633999994,81.646836656],[-90.39378821499992,81.66022370000003],[-90.48745683499993,81.65818919499999],[-90.68276933499993,81.67711009300002],[-90.71589107999993,81.67430247600008],[-90.7805883449999,81.641791083],[-90.8297419909999,81.63389720300002],[-90.9287410149999,81.63231028899999],[-90.97085527299996,81.62584056200008],[-90.99209550699993,81.61884186399999],[-91.00759843699987,81.60838450700011],[-91.00466874899993,81.59821198100018],[-90.96231035099993,81.5634626320001],[-90.98664303299992,81.56366608300006],[-91.0152074859999,81.56085846600003],[-91.04299882699988,81.55512116100014],[-91.08259029899992,81.54132721600006],[-91.10122636599989,81.539780992],[-91.11038163999987,81.54258860900013],[-91.09943600199992,81.55036041900014],[-91.14386959499993,81.56000397300002],[-91.47000077999985,81.52989329600008],[-91.41706295499989,81.54393138200014],[-91.40851803299998,81.55036041900014],[-91.41437740799992,81.55369700700008],[-91.44204667899993,81.585150458],[-91.48171952999994,81.59617747600005],[-91.7515356109999,81.60480377800015],[-91.8120417959999,81.62067291900017],[-91.88088945199988,81.61863841400005],[-91.94920813699994,81.63231028899999],[-91.93655351499987,81.6439883480001],[-91.91380774599995,81.64756907800013],[-91.86721757699993,81.6459821640001],[-91.8854060539999,81.65350983300009],[-91.9096980459999,81.65790436400005],[-91.95661373599982,81.66022370000003],[-91.91258704299992,81.67015208500011],[-91.81924394399994,81.66270579600014],[-91.77163652299993,81.66705963700002],[-91.81265214799996,81.68012116100012],[-91.79491126199986,81.68650950700014],[-91.75649980399993,81.68992747600005],[-91.73753821499994,81.69440338700012],[-91.75121008999989,81.70054759300008],[-91.72305253799988,81.71360911700008],[-91.71727454299992,81.72089264500009],[-91.7307429679999,81.7285016950001],[-91.70852617099985,81.73436107000008],[-91.6179906889999,81.73663971600004],[-91.57107499899988,81.75360748900002],[-91.48444576699988,81.77179596600011],[-91.3980199859999,81.77692291900011],[-91.20653235599991,81.76268138200011],[-91.11717688699991,81.76947663000013],[-91.05081132699988,81.76500071800017],[-91.0311580069999,81.76947663000013],[-91.12507076699987,81.7907168640001],[-91.15408281199986,81.80365631700012],[-91.09133867099987,81.83043040600013],[-91.0139054029999,81.842271226],[-90.73232988199996,81.8393008480001],[-90.69603430899986,81.84800853100016],[-90.69090735599985,81.85154857000005],[-90.68952389199987,81.85460032800013],[-90.68887285099993,81.8577741560001],[-90.6854548819999,81.86200592700011],[-90.67747962099986,81.86546458500011],[-90.6583552729999,81.86554596600011],[-90.61286373599992,81.87669505400011],[-90.24290930899991,81.89984772300005],[-89.93508867099987,81.88556549700017],[-89.95510820199993,81.89708079600011],[-89.98306230399996,81.902777411],[-89.89240475199995,81.90110911699998],[-89.7646378249999,81.92198314000014],[-89.72175045499992,81.92332591400013],[-89.68118242099992,81.913519598],[-89.69579016799995,81.90729401200002],[-89.72777258999994,81.904486395],[-89.74323482999995,81.89984772300005],[-89.70815995999988,81.88983795800009],[-89.64476477799985,81.86399974200008],[-89.53408769399996,81.84459056200014],[-89.49616451699984,81.84605540600002],[-89.4776098299999,81.84430573100012],[-89.46206620999993,81.83775462400006],[-89.46768144399994,81.83466217700004],[-89.4825740229999,81.82408274900011],[-89.45217851499993,81.82550690300016],[-89.36990312399986,81.81964752800003],[-89.33535722599996,81.80902741100007],[-89.35081946499987,81.81858958500008],[-89.35220292899996,81.82099030200011],[-89.34097245999996,81.83051178600012],[-89.26878821499986,81.84275950700008],[-89.17902584499983,81.87828196800014],[-89.14745032499994,81.88556549700017],[-89.17634029899995,81.90045807500003],[-89.37913977799991,81.90684642100014],[-89.40591386599992,81.9108747420001],[-89.42113196499992,81.92027415600013],[-89.41323808499993,81.92955149900008],[-89.38906816299993,81.93736399900008],[-89.34447180899994,81.94647858300009],[-89.25210527299993,81.94871653900007],[-89.07925370999992,81.91412995000015],[-88.9890844389999,81.92772044500009],[-89.00275631399992,81.94017161700013],[-88.99587968699993,81.94310130400004],[-88.9890844389999,81.94761790600002],[-89.05801347599993,81.98859284100003],[-89.00739498599995,82.00682200700011],[-88.68073482999995,82.05841705900015],[-88.23656165299994,82.08079661699998],[-88.16820227799987,82.09186432500002],[-88.1291804679999,82.09162018400018],[-88.11770585799985,82.09336985900008],[-88.10065670499989,82.10211823100013],[-88.0915828119999,82.1052920590001],[-88.0704646479999,82.10728587400014],[-87.99909420499988,82.1052920590001],[-87.7933650379999,82.07737864799999],[-87.58792070199985,82.09162018400018],[-87.37283281199993,82.07737864799999],[-87.19359290299991,82.03062571800011],[-87.17361406199984,82.01585521000011],[-87.31761633999992,81.97557200700014],[-87.28958085799991,81.964463609],[-87.00875810449992,81.92873769750004],[-86.72793535099986,81.89301178600014],[-86.75658118399994,81.91522858300002],[-86.81403561099995,81.93174876500008],[-87.08975175699993,81.95604075700005],[-87.13137773299991,81.97557200700014],[-86.8440242179999,81.98859284100003],[-86.8440242179999,81.99542877800015],[-86.87026933499993,81.99705638200008],[-86.99266516799992,82.02448151200012],[-87.0013728509999,82.03204987200017],[-86.98802649599989,82.04380931200014],[-86.96475175699987,82.05149974200008],[-86.62893632699988,82.05870189000011],[-86.25772050699989,82.04657623900003],[-86.1621394519999,82.04584381700009],[-86.11184648299985,82.032416083],[-85.97883053299991,82.01646556200008],[-85.70409094949997,81.93827952699998],[-85.42935136599989,81.86009349200008],[-85.39932206899994,81.8569196640001],[-85.37112382699988,81.86509837400011],[-85.4060359369999,81.88739655200006],[-85.64020748599988,81.94859446800008],[-85.73420162699995,81.98859284100003],[-85.68374589799993,82.00779857],[-85.26789303299994,82.00800202000012],[-85.20002193899987,81.99738190300009],[-85.02102617099989,81.92027415600013],[-84.91047115799998,81.89512767100014],[-84.79572506399984,81.88556549700017],[-84.93948320199986,81.930853583],[-85.06948808499988,81.98859284100003],[-85.03201249899985,81.9990908870001],[-84.8658748039999,81.99351634300008],[-84.83767656199991,81.98570384300011],[-84.82327226499987,81.96893952000009],[-84.82925370999988,81.94017161700013],[-84.77448482999995,81.91864655200011],[-84.72004146999984,81.903916734],[-84.60334225199995,81.89301178600014],[-84.62185624899986,81.90355052300009],[-84.68557695199993,81.92405833500005],[-84.69220943899988,81.93138255400008],[-84.70498613199993,81.95689524900017],[-84.71320553299991,81.96812571800017],[-84.75243079299985,81.9911970070001],[-85.2463679674999,82.02775706575012],[-85.74030514199993,82.06431712449996],[-86.23424231649997,82.10087718324998],[-86.7281794909999,82.13743724199999],[-86.85940507699985,82.19025299700014],[-86.87873287699998,82.20831940300017],[-86.8479711579999,82.22056712400014],[-86.55825761599993,82.24127838700014],[-86.35781816299993,82.23082103100008],[-86.01516679599993,82.23790110900013],[-85.67251542899992,82.2449811870001],[-85.56273352799992,82.27464427300013],[-85.51073157499988,82.28009674700017],[-85.40103105399996,82.27704498900009],[-85.35061601499993,82.2902692730001],[-85.45913652299988,82.31175364800005],[-85.49465898299988,82.32371653899999],[-85.47744706899996,82.33177317900011],[-85.43801835799987,82.34324778900005],[-85.4189346999999,82.35167064000011],[-85.51565507699993,82.35203685100011],[-85.5352270169999,82.36570872600005],[-85.50088456899994,82.40013255399998],[-85.54836992099985,82.41575755400008],[-85.7063289049999,82.41380442900011],[-85.78726152299987,82.42621491100006],[-85.89565995999988,82.42670319200015],[-85.91921952999994,82.43357982000005],[-85.9011938139999,82.44468821800008],[-85.87966874899986,82.44810618700008],[-85.85696367099985,82.44920482000013],[-85.76187089799993,82.46747467700003],[-85.41071529899992,82.4726558833335],[-85.05955969999988,82.4778370896668],[-84.70840410099993,82.4830182960001],[-84.6596573559999,82.47386302300012],[-84.62352454299989,82.45250071800015],[-84.64696204299986,82.44310130400005],[-84.90029863199993,82.43834056200014],[-84.94595292899987,82.42743561400005],[-84.52057857999992,82.39976634300017],[-84.38361568899988,82.37278880400011],[-84.39110266799987,82.3659528670001],[-84.34740149599989,82.35325755400014],[-84.19855709499984,82.37278880400011],[-83.93671627499992,82.36088694850012],[-83.67487545499992,82.34898509300002],[-83.42682857999992,82.30296458500008],[-83.38369706899991,82.28278229400014],[-83.37002519399988,82.27195872600005],[-83.36965898299984,82.2670352230001],[-83.37279212099992,82.26158274900014],[-83.36941484299989,82.2492536480001],[-83.35594641799992,82.23619212400003],[-83.33617102799991,82.22825755400008],[-83.03396562399983,82.17161692900007],[-83.01528886599996,82.163804429],[-82.96902421799987,82.13255442900011],[-82.95169023299988,82.12579987200017],[-82.97923743399991,82.099351304],[-83.02887936099991,82.08482493700016],[-83.13044186099992,82.07737864799999],[-83.13044186099992,82.07115306200002],[-82.7875734799999,82.06728750200001],[-82.44470509899989,82.06342194200002],[-82.10183671799987,82.0595563820001],[-81.9470515619999,82.03522370000003],[-81.90774492099987,82.03461334800008],[-81.87661699099988,82.04380931200014],[-81.89509029899992,82.04783763200011],[-81.94489498599998,82.07115306200002],[-82.11196855399993,82.099351304],[-82.58425859299993,82.09483470300013],[-82.62702389199993,82.10374583500008],[-82.83714758999989,82.18707916900009],[-83.00869706899991,82.23053620000003],[-83.01846269399994,82.23619212400003],[-83.02074133999992,82.24522532800012],[-83.02057857999995,82.26292552300005],[-83.02497311099992,82.28522370000017],[-83.01968339799996,82.2898623720001],[-82.99990800699993,82.29527415600015],[-82.96987870999988,82.298447984],[-82.57160396999984,82.24717845300007],[-82.40078691299988,82.24717845300007],[-82.12966874899992,82.19017161699999],[-81.85543779199989,82.15487295150011],[-81.58120683499993,82.11957428600012],[-81.58804277299987,82.11957428600012],[-81.10140947199989,82.06771474800001],[-80.6147761709999,82.01585521000011],[-80.6087947259999,82.002183335],[-80.56818600199989,81.99607982000002],[-80.51809648299988,81.99616120000016],[-80.44025631399988,82.00800202000012],[-80.02127031199987,81.96759674700007],[-79.61522376199991,81.859116929],[-79.56875566299988,81.83177317900011],[-79.52912350199995,81.82404205900012],[-79.23062089799993,81.81785716400005],[-79.68089758999992,81.93577708500004],[-79.71108964799993,81.95445384300002],[-79.70364335799988,81.96128978100013],[-79.7566218739999,81.97345612200003],[-79.8697810539999,81.97544993700016],[-79.92336992099989,81.98859284100003],[-79.90249589799993,81.99803294500005],[-79.8556208979999,82.00824616100009],[-79.83462480399996,82.01585521000011],[-79.86367753799993,82.02692291900014],[-80.22033986433328,82.05259837466667],[-80.57700219066653,82.0782738303334],[-80.9336645169999,82.10394928600012],[-80.96487382699988,82.11957428600012],[-80.97378495999993,82.12946198100003],[-80.97419186099992,82.13458893400004],[-80.9664607409999,82.13755931200014],[-80.8869929679999,82.15314362200014],[-80.8692927729999,82.159898179],[-81.29190019399991,82.1628278670001],[-81.76512610566655,82.23570384333345],[-82.23835201733328,82.30857981966675],[-82.71157792899994,82.3814557960001],[-82.72573808499988,82.39264557500003],[-82.73147538999983,82.40489329600008],[-82.73013261599996,82.41050853100008],[-82.68093827999985,82.43931712400001],[-82.49730383999994,82.5093854840001],[-81.99864661349989,82.50356679900015],[-81.49998938699994,82.497748114],[-81.47878984299984,82.50250885600009],[-81.50413977799987,82.50975169500009],[-81.57778886599993,82.50250885600009],[-81.91364498599992,82.52464427300008],[-81.92381751199986,82.52985260600013],[-82.2943416009999,82.58445872600014],[-82.3967585929999,82.61920807500009],[-82.37100175699987,82.64606354400017],[-82.3280330069999,82.65916575700014],[-82.06997636599993,82.67430247600014],[-81.74319413949989,82.65279775600011],[-81.41641191299988,82.631293036],[-81.1516820954999,82.58313629750006],[-80.8869522779999,82.53497955900018],[-80.58063717399992,82.54344310100011],[-80.60061601499987,82.55882396000005],[-80.84888668549988,82.615769761],[-81.09715735599988,82.6727155620001],[-81.12995357999998,82.68809642100014],[-81.12254798099988,82.69432200700011],[-81.1600642569999,82.71714915600002],[-81.26870683499988,82.72772858300009],[-81.36636308499988,82.75580475500009],[-81.47826087099989,82.76585521000004],[-81.57616126199991,82.79124583500008],[-81.58454342399996,82.80052317900012],[-81.56786048099994,82.81476471600003],[-81.54076087099992,82.82371653900007],[-81.47394771999987,82.83030833500014],[-81.0877715049999,82.81568702433349],[-80.70159528999986,82.80106571366682],[-80.31541907499988,82.78644440300009],[-80.27961178299995,82.770005601],[-80.28311113199995,82.76691315300012],[-80.28921464799996,82.75950755400011],[-80.29263261599996,82.75641510600003],[-80.17731686099995,82.73607005400005],[-80.14240475199992,82.72162506700009],[-80.16185462099992,82.70880768400015],[-80.1722712879999,82.70416901200004],[-80.18337968699984,82.70115794500013],[-80.15200761599989,82.68077220300013],[-80.10163326699985,82.670111395],[-79.92267818899987,82.65635814000008],[-79.87429765499988,82.64622630400014],[-79.8469539049999,82.6437848980001],[-79.82030188699986,82.64561595300007],[-79.79922441299992,82.653306382],[-79.94216874899988,82.67918528900009],[-79.9847712879999,82.69432200700011],[-79.9514460929999,82.71128978100008],[-79.90078691299992,82.71788157800016],[-79.51362057199992,82.69350820550015],[-79.12645423099994,82.66913483300014],[-79.03815670499998,82.68134186400003],[-78.94094804599987,82.670599677],[-78.54792232999992,82.67601146000014],[-78.50442460799988,82.68809642100014],[-78.96795271133318,82.713812567],[-79.43148081466657,82.73952871300003],[-79.89500891799989,82.7652448590001],[-79.93093827999988,82.77936432500003],[-79.92336992099989,82.79795970300002],[-79.99844316299993,82.803574937],[-79.92349199099986,82.8222516950001],[-79.67634029899997,82.82465241100014],[-79.67634029899997,82.83148834800006],[-80.01427161399988,82.84796784050009],[-80.35220292899987,82.86444733300013],[-80.40119381399983,82.87958405200014],[-80.42983964799988,82.9003766950001],[-80.39126542899993,82.90586985900012],[-80.31143144399991,82.90766022300012],[-80.25706946499989,82.9190127620001],[-80.22248287699988,82.91966380400005],[-80.20539303299995,82.92247142100011],[-80.15811113199989,82.93927643400012],[-79.74929765549993,82.95740387550008],[-79.3404841789999,82.97553131700012],[-79.3236384759999,82.97113678600014],[-79.28933671799984,82.95811595300016],[-79.2722468739999,82.95433177300013],[-79.19070390499988,82.95404694199999],[-79.19994055899994,82.95213450700014],[-79.20799719999988,82.948431708],[-79.21414140499985,82.94261302300004],[-79.21768144399994,82.93451569200012],[-79.17870032499984,82.93223704600014],[-79.12352454299992,82.92222728100016],[-79.07937577999994,82.90473053600012],[-79.07363847599996,82.87986888200008],[-79.00902258999992,82.87474192900005],[-78.98973548099987,82.87791575700011],[-78.79279537699995,82.94367096600011],[-78.7009578119999,82.94859446800015],[-78.60598710799988,82.94358958500011],[-78.52444413999987,82.92743561400006],[-78.50894120999993,82.92137278900007],[-78.50442460799988,82.90721263200014],[-78.51244055899994,82.89769114800005],[-78.55907141799995,82.86627838700012],[-78.51870683499986,82.8460554060001],[-78.47052975199992,82.85578034100014],[-78.42056230399989,82.8723005230001],[-78.37474524599989,82.87242259300008],[-78.3656306629999,82.85691966399999],[-78.32986406199988,82.85203685100011],[-78.25780188699986,82.85020579600003],[-78.17544511599993,82.83148834800006],[-78.10659745999996,82.83148834800006],[-78.10659745999996,82.83832428600009],[-78.13821367099985,82.83832428600009],[-78.17910722599987,82.84300364800002],[-78.21800696499989,82.85236237200002],[-78.24372311099992,82.86627838700012],[-78.20197506399997,82.87836334800004],[-78.05874589799993,82.85875071800014],[-78.02399654899997,82.86094798400013],[-78.01878821499989,82.86615631700015],[-78.03180904899995,82.8762067730001],[-78.05007890499994,82.88239166900009],[-78.11404374899993,82.89293040600013],[-78.08181718699988,82.90460846600014],[-77.85220292899993,82.92601146],[-77.49543209549995,82.89645009950009],[-77.13866126199986,82.86688873900006],[-76.95022538999987,82.80621979400011],[-76.92853756399998,82.79051341400005],[-76.95384680899994,82.77891673400005],[-76.9626765619999,82.77623118700014],[-76.92894446499989,82.76793040600008],[-76.78884843699993,82.75840892100017],[-76.73110917899987,82.743597723],[-76.5569148429999,82.67548248900005],[-76.4324031239999,82.66478099200005],[-76.3961482409999,82.6562360700001],[-76.38044186099992,82.64996979400017],[-76.36392167899994,82.64586009300002],[-76.32852128799993,82.64695872600008],[-76.28099524599995,82.63511790600002],[-76.16673743399988,82.63287995000003],[-75.96133378799993,82.60040924700006],[-75.89382890499985,82.59874095300005],[-75.91702226499987,82.58690013200008],[-75.9429011709999,82.57957591400007],[-75.99624589799991,82.57078685099998],[-76.08031165299988,82.54169342700011],[-76.1511531239999,82.53143952],[-76.19290117099993,82.51593659100008],[-76.23078365799995,82.493882554],[-76.26374264199984,82.4683698590001],[-76.25007076699988,82.4683698590001],[-76.21833248599994,82.45209381700006],[-76.17357337099992,82.45600006700006],[-75.92080644399991,82.52484772350009],[-75.66803951699988,82.59369538],[-75.46149654899989,82.60081614800005],[-75.40042070199993,82.61920807500009],[-75.43997148299988,82.63047923400008],[-75.77304033099989,82.65928782750017],[-76.10610917899993,82.68809642100014],[-76.10049394399991,82.69159577000012],[-76.09732011599993,82.69481028900002],[-76.09243730399987,82.70115794500013],[-76.14639238199989,82.70042552299999],[-76.21182206899994,82.70836009300014],[-76.27236894399994,82.72642649900017],[-76.31155351499987,82.75641510600003],[-76.23074296799987,82.77415599200013],[-76.05638587099992,82.77024974200013],[-75.9757380849999,82.79051341400005],[-76.37360592399992,82.79051341400005],[-76.53962154899989,82.82298411700012],[-76.66779537699992,82.87986888200008],[-77.02751624249993,82.93480052300005],[-77.38723710799994,82.98973216400005],[-77.3635554679999,83.00438060100005],[-77.33503170499992,83.01325104400009],[-77.13402258999994,83.03697337400011],[-77.14273027299991,83.02952708500014],[-77.15261796799993,83.02476634300005],[-77.16340084499984,83.02265045800011],[-77.17495683499996,83.02330149900017],[-77.13036048099988,83.01060618700002],[-76.68346106699991,83.02279287300007],[-76.23656165299994,83.03497955900015],[-76.13548743399991,83.05369700700014],[-75.78339596249995,83.04690175950014],[-75.43130449099988,83.04010651200018],[-75.38475501199984,83.03172435100011],[-75.3020320299999,83.03148021000008],[-75.29116777299993,83.02948639500015],[-75.29051673099988,83.02330149900017],[-75.1870417959999,83.02313873900003],[-75.1533503899999,83.03074778900005],[-75.1607966789999,83.03074778900005],[-75.05687415299994,83.04210032800002],[-74.62844804599987,83.0221214865001],[-74.20002193899992,83.00214264500005],[-74.0528865229999,82.96369049700017],[-74.01626542899996,82.961859442],[-74.02114824099993,82.94965241100012],[-74.01561438699991,82.94249095300006],[-74.00373287699995,82.9398054060001],[-73.9957576159999,82.93451569200012],[-73.97655188699986,82.93492259300002],[-73.95759029899995,82.9319929060001],[-73.90249589799988,82.91343821800011],[-73.89004472599987,82.90562571800011],[-73.86546790299985,82.88609446800002],[-73.82839921799984,82.86570872600004],[-73.41597788533318,82.8108584656667],[-73.00355655266654,82.75600820533346],[-72.59113521999987,82.70115794500013],[-72.60521399599992,82.70701732000008],[-72.61160234299993,82.7086042340001],[-72.61160234299993,82.71544017100003],[-72.50173906199987,82.72162506700009],[-72.50173906199987,82.72907135600015],[-72.80803382099987,82.76028066600004],[-73.11432857999989,82.79148997600011],[-73.32583574099993,82.84385814000011],[-73.37295488199992,82.84796784100014],[-73.35830644399994,82.85875071800014],[-73.4193416009999,82.8913028020001],[-73.4530330069999,82.90269603100008],[-73.57160396999987,82.91136302299999],[-73.6531469389999,82.92711009300005],[-73.6197810539999,82.946275132],[-73.5735164049999,82.95917389500003],[-73.43606523299994,82.97190989800008],[-73.2478328119999,83.02073802300008],[-72.93268795499992,83.04454173400016],[-72.88597571499994,83.05805084800012],[-73.00885982999989,83.05805084800012],[-72.97223873599995,83.07298411699998],[-72.7879939439999,83.08234284100011],[-72.70205644399991,83.09654368700002],[-72.59162350199995,83.10236237200017],[-72.57062740799992,83.09959544500009],[-72.52253170499995,83.08051178600012],[-72.50173906199987,83.07786692900005],[-72.27383378799989,83.10875071800011],[-71.95071367099987,83.10604482600003],[-71.62759355399996,83.10333893400015],[-71.58315995999993,83.09214915600013],[-71.6282445949999,83.08441803600012],[-71.76667232999995,83.04246653900003],[-71.79605058499996,83.02012767100011],[-71.7652074859999,83.00165436400009],[-71.5694880849999,82.961859442],[-71.57209225199989,82.95868561400012],[-71.5742081369999,82.95530833500011],[-71.5773005849999,82.95176829600001],[-71.58315995999993,82.94818756700006],[-71.21011308499996,82.91714101750009],[-70.8370662099999,82.88609446800002],[-70.86717688699994,82.90509674700003],[-71.30886796799989,82.98973216400005],[-71.45474199099996,82.99961985900012],[-71.50121008999992,83.00962962400006],[-71.48062089799987,83.02240631700009],[-71.26907304599993,83.06053294500003],[-71.11160234299987,83.07029857000002],[-71.09032141799987,83.07786692900005],[-71.10155188699989,83.08055247600011],[-71.11160234299987,83.08482493700014],[-71.11965898299991,83.09113190300017],[-71.1244197259999,83.09959544500009],[-71.01292883999992,83.10154857000006],[-70.94570878799996,83.08543528900002],[-70.90811113199995,83.08177317900014],[-70.87043209499987,83.083726304],[-70.8370662099999,83.09214915600013],[-70.85033118399994,83.09581126500008],[-70.87795976499984,83.09983958500004],[-70.89167232999995,83.09959544500009],[-70.81741288999984,83.11107005400005],[-70.44078528566658,83.11288754533332],[-70.0641576813332,83.11470503666685],[-69.68753007699993,83.11652252800009]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Cayman Islands","adm0_a3":"CYM","geou_dif":0,"geounit":"Cayman Islands","gu_a3":"CYM","su_dif":0,"subunit":"Cayman Islands","su_a3":"CYM","brk_diff":0,"name":"Cayman Is.","name_long":"Cayman Islands","brk_a3":"CYM","brk_name":"Cayman Is.","brk_group":null,"abbrev":"Cym. Is.","postal":"KY","formal_en":"Cayman Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Cayman Islands","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":49035,"gdp_md_est":1939,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"CJ","iso_a2":"KY","iso_a3":"CYM","iso_n3":"136","un_a3":"136","wb_a2":"KY","wb_a3":"CYM","woe_id":23424783,"woe_id_eh":23424783,"woe_note":"Exact WOE match as country","adm0_a3_is":"CYM","adm0_a3_us":"CYM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":10,"long_len":14,"abbrev_len":8,"tiny":2,"homepart":-99,"filename":"CYM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.36404493099991,19.31994567],[-81.34971793699995,19.302114496000073],[-81.32243823399995,19.302250520000072],[-81.30349769499988,19.309054671000027],[-81.30125891799995,19.320624091000084],[-81.29381262899994,19.334377346],[-81.28807532499988,19.33136627800009],[-81.27330481699991,19.327582098000093],[-81.27342688699989,19.33209870000003],[-81.27489173099994,19.33527252800009],[-81.27953040299988,19.34178294500019],[-81.27330481699991,19.334377346],[-81.27521725199995,19.33856842700014],[-81.27769934799989,19.341376044000086],[-81.27798417899993,19.34406159100017],[-81.27330481699991,19.348049221000124],[-81.27790279899995,19.35187409100014],[-81.28075110599988,19.356268622000055],[-81.2862849599999,19.368475653000118],[-81.26813717399989,19.366278387000037],[-81.23155676999997,19.351548570000134],[-81.21182206899992,19.348049221000124],[-81.15778561099992,19.35504791900003],[-81.13609778599997,19.354885158000158],[-81.11754309799994,19.35276927300005],[-81.09951738199993,19.347316799000012],[-81.08950761599993,19.335394598000065],[-81.08658644399992,19.30992672000015],[-81.10667716099991,19.295317337000156],[-81.13510021899992,19.29074154700011],[-81.16950382599985,19.299563356000036],[-81.19319154199988,19.296114063000104],[-81.21450913599995,19.29267167400012],[-81.23345773399987,19.289234224],[-81.24882112299989,19.27909690600002],[-81.26646887899989,19.266058661000116],[-81.27635657499991,19.264837958],[-81.34127167199992,19.27306034500016],[-81.35788245399993,19.274093584000024],[-81.3757218089999,19.272284247000172],[-81.38748616699985,19.26386361500012],[-81.39793860599985,19.274155992000047],[-81.39592479999995,19.289561692000106],[-81.39240029899992,19.296295951000147],[-81.38889892799995,19.307506249000156],[-81.38542649799986,19.32431103300014],[-81.3855032479999,19.338858201000118],[-81.39032561899995,19.352260298000047],[-81.40581841499991,19.36336976900016],[-81.41654202099991,19.37002762100009],[-81.41423831499989,19.38234888],[-81.40834634899991,19.39021230700014],[-81.39412368799987,19.394760508000147],[-81.3757218089999,19.38898346600017],[-81.37858544199989,19.375817494000056],[-81.3689985609999,19.35908261800007],[-81.36059002799996,19.340103959000157],[-81.36404493099991,19.31994567]]],[[[-79.96426347599994,19.70490143400015],[-79.96816972599993,19.703192450000145],[-79.9779353509999,19.69745514500009],[-80.00391779199991,19.690270050000137],[-80.07796825799988,19.65402043700011],[-80.11315546199992,19.65866019300013],[-80.09855259899986,19.6768569420001],[-80.08154331799992,19.68592905900014],[-80.06208774699991,19.700681524000128],[-80.03782980299991,19.70403532200008],[-80.00873641399993,19.703951043000032],[-79.98102779899997,19.714300848000093],[-79.96426347599994,19.70490143400015]]],[[[-79.85500065699992,19.690916740000162],[-79.89375366899995,19.679672759000127],[-79.87188918099991,19.704636140000147],[-79.80283746799992,19.732826662000022],[-79.76889869799987,19.75203648300014],[-79.74589952199993,19.757630837000093],[-79.73151607999992,19.75210195500013],[-79.72664269199993,19.737063377000183],[-79.7738926379999,19.713364056000117],[-79.85500065699992,19.690916740000162]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Dominica","sov_a3":"DMA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Dominica","adm0_a3":"DMA","geou_dif":0,"geounit":"Dominica","gu_a3":"DMA","su_dif":0,"subunit":"Dominica","su_a3":"DMA","brk_diff":0,"name":"Dominica","name_long":"Dominica","brk_a3":"DMA","brk_name":"Dominica","brk_group":null,"abbrev":"D'inca","postal":"DM","formal_en":"Commonwealth of Dominica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Dominica","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":2,"mapcolor13":12,"pop_est":72660,"gdp_md_est":719.6,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"DO","iso_a2":"DM","iso_a3":"DMA","iso_n3":"212","un_a3":"212","wb_a2":"DM","wb_a3":"DMA","woe_id":23424798,"woe_id_eh":23424798,"woe_note":"Exact WOE match as country","adm0_a3_is":"DMA","adm0_a3_us":"DMA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":6,"tiny":4,"homepart":1,"filename":"DMA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-61.36286373599995,15.20180898600003],[-61.37409420499994,15.204820054000038],[-61.376128709999904,15.21283600500007],[-61.37279212099986,15.237209377000042],[-61.37328040299985,15.266424872000071],[-61.37279212099986,15.270697333000086],[-61.37828528599987,15.282049872000057],[-61.39093990799995,15.296291408000059],[-61.39321855399993,15.308294989000089],[-61.39500891799991,15.333075262000051],[-61.39956620999996,15.35114166900007],[-61.413726365999885,15.38056061400006],[-61.41567949099993,15.387640692000033],[-61.418080206999974,15.405951239000087],[-61.42121334499988,15.414740302000054],[-61.444203253999945,15.43683502800013],[-61.447865363999874,15.445135809000105],[-61.44977779899994,15.4546572940001],[-61.454253709999904,15.46482982000006],[-61.460031704999984,15.472886460000096],[-61.465565558999884,15.476141669000043],[-61.4720759759999,15.48139069200002],[-61.47427324099988,15.493475653000132],[-61.47520911399996,15.517767645000104],[-61.47935950399988,15.525458075000131],[-61.48485266799992,15.530340887000108],[-61.4889216789999,15.535711981000047],[-61.4888809889999,15.545070705000086],[-61.48399817599991,15.551581122000073],[-61.46727454299988,15.562974351000037],[-61.46214758999989,15.572984117000116],[-61.46906490799997,15.574286200000131],[-61.48119055899988,15.578558661000043],[-61.4888809889999,15.579250393000079],[-61.48062089799989,15.59100983300007],[-61.4689835279999,15.633856512000136],[-61.44920813699989,15.633083401000107],[-61.43724524599994,15.632635809000107],[-61.42593339799995,15.628485419000071],[-61.413726365999885,15.619574286000043],[-61.397572394999905,15.596625067000048],[-61.38463294199991,15.588364976000063],[-61.369740363999966,15.595933335000012],[-61.35732988199993,15.59829336100006],[-61.30768795499991,15.579250393000079],[-61.30589758999994,15.572455145000047],[-61.299549933999906,15.557196356000075],[-61.28962154899991,15.54096100500004],[-61.28404700399989,15.531398830000056],[-61.26862545499995,15.509914455000027],[-61.267160610999895,15.507798570000118],[-61.257679816999904,15.472601630000069],[-61.2560115229999,15.435939846000053],[-61.26292883999989,15.407904364000034],[-61.258371548999946,15.4063174500001],[-61.25422115799989,15.402980861000074],[-61.24925696499995,15.401068427000027],[-61.2555232409999,15.364569403000061],[-61.25405839799993,15.332668361000046],[-61.25373287699992,15.324693101000094],[-61.256662563999924,15.28534577000009],[-61.277211066999875,15.250230210000026],[-61.28441321499991,15.244818427000068],[-61.289296027999875,15.243597723000063],[-61.29320227799988,15.243882554000095],[-61.30337480399994,15.242580471000096],[-61.31187903599996,15.24453359600004],[-61.318186001999884,15.243394273000106],[-61.32359778599993,15.238592841000113],[-61.328724738999966,15.22557200700004],[-61.342681443999936,15.21967194200009],[-61.34593665299988,15.212347723000093],[-61.346384243999864,15.211696682000138],[-61.35073808499996,15.20514557500006],[-61.36286373599995,15.20180898600003]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Dominican Republic","sov_a3":"DOM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Dominican Republic","adm0_a3":"DOM","geou_dif":0,"geounit":"Dominican Republic","gu_a3":"DOM","su_dif":0,"subunit":"Dominican Republic","su_a3":"DOM","brk_diff":0,"name":"Dominican Rep.","name_long":"Dominican Republic","brk_a3":"DOM","brk_name":"Dominican Rep.","brk_group":null,"abbrev":"Dom. Rep.","postal":"DO","formal_en":"Dominican Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Dominican Republic","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":5,"mapcolor13":7,"pop_est":9650054,"gdp_md_est":78000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"DR","iso_a2":"DO","iso_a3":"DOM","iso_n3":"214","un_a3":"214","wb_a2":"DO","wb_a3":"DOM","woe_id":23424800,"woe_id_eh":23424800,"woe_note":"Exact WOE match as country","adm0_a3_is":"DOM","adm0_a3_us":"DOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":14,"long_len":18,"abbrev_len":9,"tiny":-99,"homepart":1,"filename":"DOM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.50739498599995,17.55125560100008],[-71.52448482999992,17.545558986000074],[-71.54116777299996,17.55463288000008],[-71.54137122299991,17.57615794500019],[-71.53221594999994,17.601304429],[-71.5210668609999,17.621283270000063],[-71.50694739499997,17.61367422100004],[-71.4925837879999,17.60366445500013],[-71.4671117829999,17.58026764500015],[-71.48253333199992,17.57562897300012],[-71.50739498599995,17.55125560100008]]],[[[-68.71076412699998,18.17536041900003],[-68.66405188699989,18.169338283000044],[-68.61237545499993,18.1708031270001],[-68.5987849599999,18.16620514500015],[-68.58869381399992,18.153387762000122],[-68.57750403599991,18.133734442000062],[-68.57017981699991,18.115708726000136],[-68.57184811099992,18.107855536000056],[-68.58702551999991,18.11107005400011],[-68.61929277299996,18.125148830000153],[-68.63609778599995,18.128363348],[-68.65392005099994,18.126288153000086],[-68.68488521999987,18.11688873900006],[-68.70189368399994,18.114691473000065],[-68.73704993399988,18.12360260600012],[-68.76207434799991,18.145168361000017],[-68.77818762899996,18.172023830000015],[-68.78693600199995,18.1966820330001],[-68.77208411399988,18.200873114000114],[-68.75454667899993,18.197658596000068],[-68.73717200399997,18.189520575000145],[-68.7223201159999,18.17926666900003],[-68.71076412699998,18.17536041900003]]],[[[-70.96617591099991,19.89671458500008],[-70.94688880099989,19.889308986000074],[-70.93944251199991,19.889308986000074],[-70.94444739499994,19.904730536000116],[-70.94688880099989,19.910345770000035],[-70.8985082669999,19.902899481000034],[-70.88426673099988,19.904282945000105],[-70.85472571499992,19.910834052],[-70.84325110599988,19.910345770000035],[-70.83096269399991,19.90253327000012],[-70.78697669199988,19.852850653000033],[-70.78331458199993,19.84332916900003],[-70.7886449859999,19.834051825000174],[-70.75096594999994,19.833807684000035],[-70.73656165299984,19.82709381700009],[-70.69847571499989,19.79682038],[-70.66222083199995,19.77936432500003],[-70.62368730399987,19.766546942],[-70.57909094999991,19.76019928600006],[-70.51870683499988,19.759751695000162],[-70.51366126199994,19.762640692],[-70.50853430899994,19.769354559000035],[-70.49644934799991,19.777248440000037],[-70.48277747299989,19.783880927],[-70.47272701699993,19.786851304],[-70.43370520699995,19.775213934000092],[-70.37271074099996,19.714178778000118],[-70.33617102799991,19.677639065000065],[-70.31956946499986,19.66644928600006],[-70.30134029899997,19.657660223],[-70.28083248599992,19.65180084800015],[-70.23521887899997,19.647202867000104],[-70.19855709499987,19.634670315],[-70.13141842399992,19.622137762000122],[-70.11644446499989,19.622381903000147],[-70.10643469999988,19.625921942000115],[-70.09752356699994,19.633205471000153],[-70.06102454299989,19.670111395],[-70.04210364499995,19.67845286700016],[-69.9866837229999,19.677639065000065],[-69.95954342399997,19.680121161],[-69.94725501199991,19.67865631700012],[-69.93203691299993,19.670152085],[-69.89793860599994,19.635972398000106],[-69.88719641799992,19.61273834800009],[-69.88776607999989,19.587347723000065],[-69.90416419199991,19.532375393000095],[-69.88414466099994,19.52440013200014],[-69.87653561099998,19.50665924700003],[-69.87682044199991,19.46100495000009],[-69.87437903599987,19.441148179],[-69.86799068899995,19.42527903900016],[-69.80138098899988,19.33087799700003],[-69.77147376199991,19.3032494160001],[-69.76768958199997,19.29975006700012],[-69.73346920499989,19.286566473000065],[-69.71320553299998,19.28974030200014],[-69.67438717399997,19.303859768000063],[-69.6543676419999,19.30703359600012],[-69.60936438699991,19.30878327000012],[-69.58942623599992,19.312811591000084],[-69.56895911399997,19.320705471000068],[-69.53941809799991,19.339422919000057],[-69.52798417899996,19.34178294500019],[-69.51764889199984,19.339667059000178],[-69.49644934799994,19.329779364000057],[-69.48330644399991,19.327582098000093],[-69.45909583199989,19.333319403000147],[-69.44859778599994,19.334377346],[-69.44277910099987,19.334173895000063],[-69.4373673169999,19.332953192000115],[-69.43342037699995,19.329901434000035],[-69.43179277299993,19.324123440000093],[-69.42861894399994,19.319240627000013],[-69.42170162699995,19.321112372000172],[-69.41071529899989,19.327582098000093],[-69.35269120999993,19.305121161000088],[-69.33560136599988,19.293402411],[-69.3242895169999,19.315090236000074],[-69.3058975899999,19.331122137000147],[-69.26048743399986,19.354885158000158],[-69.23127193899992,19.36334870000009],[-69.2243546209999,19.351792710000083],[-69.23208574099993,19.327948309000092],[-69.2468155589999,19.299627997000144],[-69.22687740799992,19.29266998900006],[-69.20433508999986,19.292792059000035],[-69.18244381399992,19.298163153000086],[-69.16429602799991,19.30703359600012],[-69.1583552729999,19.285101630000113],[-69.17137610599988,19.267889716000084],[-69.18932044199994,19.25226471600011],[-69.19839433499993,19.235052802],[-69.20270748599992,19.21694570500007],[-69.21434485599994,19.200628973000065],[-69.23180091099991,19.188666083000115],[-69.25365149599995,19.183539130000113],[-69.33214270699997,19.197211005000057],[-69.41812089799987,19.190985419000082],[-69.43838456899988,19.196478583000115],[-69.4754532539999,19.214016018000063],[-69.6029353509999,19.22898997599999],[-69.61729895699996,19.22524648600016],[-69.62279212099992,19.211859442000062],[-69.62604732999995,19.164292710000083],[-69.63353430899991,19.123683986000074],[-69.63044186099995,19.10846588700009],[-69.62087968699987,19.10195547100001],[-69.60846920499992,19.09345123900006],[-69.55329342399989,19.10146719],[-69.53425045499989,19.09479401200015],[-69.51048743399991,19.10203685099999],[-69.46344967399989,19.08470286700019],[-69.43862870999993,19.087347723000065],[-69.44473222599991,19.09235260600012],[-69.45274817599997,19.096909898000078],[-69.46231035099996,19.100287177],[-69.47337805899988,19.101629950000174],[-69.47337805899988,19.10846588700009],[-69.41999264199984,19.11115143400015],[-69.40444902299993,19.10846588700009],[-69.38670813699994,19.096096096000153],[-69.37295488199993,19.06537506700006],[-69.35606848899994,19.05320872599999],[-69.33897864499988,19.048895575000174],[-69.30459550699996,19.044867255000025],[-69.21174068899992,19.020982164000046],[-69.17324785099996,19.011135158000016],[-69.15746008999992,19.01219310100008],[-69.13866126199986,19.02228424700003],[-69.14488684799991,19.029608466000052],[-69.15733801999994,19.036688544000086],[-69.15746008999992,19.046372789000074],[-69.13951575399993,19.05121491100014],[-69.12389075399997,19.037787177000055],[-69.10285396999984,19.005357164000042],[-69.0892634759999,18.997870184000178],[-69.0741267569999,18.993557033000073],[-69.06118730399987,18.988185940000122],[-69.05443274599995,18.977484442],[-69.04246985599991,18.986761786000056],[-69.01805579299986,18.997463283000073],[-69.0065811839999,19.005357164000042],[-69.01423092399995,19.013413804],[-69.0105688139999,19.015366929000137],[-69.00157630099997,19.015611070000162],[-68.99299068899995,19.018459377000013],[-68.98253333199997,19.02879466400013],[-68.9793595039999,19.032863674000097],[-68.97541256399992,19.033148505000113],[-68.93956458199992,19.03131745000006],[-68.91860917899987,19.027289130000085],[-68.89981035099993,19.020900783000158],[-68.88312740799998,19.01219310100008],[-68.88121497299993,19.009426174000012],[-68.88117428299995,19.005804755000057],[-68.88036048099994,19.002020575000028],[-68.87629146999987,18.99860260600012],[-68.85582434799991,18.991766669000086],[-68.85399329299992,18.992092190000122],[-68.81822669199991,18.984930731000176],[-68.79588782499988,18.984116929000077],[-68.78685462099986,18.981024481000173],[-68.78514563699986,18.97988515800013],[-68.77696692599994,18.97435130400011],[-68.76781165299987,18.969468492000047],[-68.74998938699991,18.968085028000175],[-68.73973548099988,18.96442291900003],[-68.62352454299986,18.861883856000148],[-68.58079993399986,18.812567450000145],[-68.52049719999991,18.768866278000175],[-68.47728430899991,18.740220445000105],[-68.46499589799996,18.735012111000017],[-68.45856686099995,18.731024481000034],[-68.4134008449999,18.689601955000043],[-68.35619055899994,18.65656159100017],[-68.32860266799992,18.616522528000033],[-68.33405514199994,18.577297268],[-68.4280492829999,18.441229559000092],[-68.43468176999997,18.435777085000055],[-68.44127356699994,18.429022528000033],[-68.44432532499994,18.41950104400003],[-68.44249426999995,18.384751695000162],[-68.44432532499994,18.37482330900015],[-68.45567786399991,18.357855536],[-68.47215735599991,18.349839585000055],[-68.4928279289999,18.347479559000092],[-68.5165909499999,18.347479559000092],[-68.53490149599989,18.353338934000035],[-68.57453365799988,18.37815989800019],[-68.58893795499998,18.38226959800015],[-68.60545813699994,18.371730861000074],[-68.60285396999987,18.35565827],[-68.59752356699988,18.336615302000112],[-68.60602779899992,18.31708405200014],[-68.61831620999988,18.301459052000055],[-68.62608801999997,18.283351955000125],[-68.64150956899991,18.22516510600009],[-68.64708411399991,18.21482982000019],[-68.65843665299988,18.21092357000019],[-68.74299068899992,18.204535223000093],[-68.76024329299992,18.21035390800013],[-68.7625219389999,18.246975002000156],[-68.78685462099986,18.29539622600005],[-68.82013912699995,18.342474677000055],[-68.84959876199994,18.37482330900015],[-68.88097083199989,18.395493882],[-68.92251542899987,18.412298895],[-68.96434485599988,18.41795482000019],[-69.01256262899994,18.399115302000055],[-69.08543860599987,18.3959007830001],[-69.10435950399989,18.399115302000055],[-69.14818274599995,18.413234768000095],[-69.16803951699987,18.416327216000166],[-69.18529212099985,18.421698309000035],[-69.21422278599997,18.445135809000092],[-69.23631751199986,18.450506903000147],[-69.25560462099989,18.446682033000126],[-69.27521725199995,18.440334377000013],[-69.29503333199995,18.439032294000114],[-69.31509355399993,18.450506903000147],[-69.3360082669999,18.432074286000116],[-69.46593176999991,18.422552802000112],[-69.50475012899992,18.40892161700016],[-69.52525794199987,18.408433335],[-69.57998613199993,18.444484768000148],[-69.60212154899989,18.45571523600013],[-69.61681067599989,18.45734284100017],[-69.62315833199992,18.447984117000043],[-69.62262936099995,18.43675364800005],[-69.62083899599986,18.425482489000142],[-69.62360592399992,18.416327216000166],[-69.63255774599993,18.413519598000036],[-69.64659583199992,18.413560289000102],[-69.65949459499993,18.415920315000065],[-69.66515051999991,18.41950104400003],[-69.68195553299992,18.44676341400013],[-69.68993079299989,18.45408763200011],[-69.69737708199995,18.45636627800009],[-69.8514705069999,18.47247955900015],[-69.87938391799992,18.471218166000153],[-69.88365637899993,18.471014716000113],[-69.8998103509999,18.46645742400007],[-69.93122311099992,18.45197174700003],[-69.95710201699984,18.435288804],[-69.96690833199997,18.430812893],[-69.99351966099991,18.422552802000112],[-70.00401770699989,18.4174665390001],[-70.01659094999988,18.411363023000106],[-70.03892981699991,18.392482815000093],[-70.05577551999991,18.36725495000003],[-70.06240800699987,18.337225653000175],[-70.06769771999987,18.329087632000054],[-70.0906876289999,18.317531643000123],[-70.09593665299991,18.310248114000117],[-70.10000566299988,18.299221096000068],[-70.13377844999985,18.269273179],[-70.15807044199994,18.242621161000056],[-70.17178300699995,18.231431382000054],[-70.17788652299994,18.23419830900012],[-70.20213782499994,18.233547268000066],[-70.22077389199993,18.23053620000014],[-70.23314368399986,18.22394440300009],[-70.25080318899998,18.23432038],[-70.26960201699993,18.23810455900012],[-70.39757239499991,18.237616278000033],[-70.41905676999994,18.231146552000112],[-70.46019446499992,18.208929755000057],[-70.4835505849999,18.20408763199999],[-70.55284583199997,18.20425039300015],[-70.56891842399995,18.21035390800013],[-70.57030188699994,18.21893952000015],[-70.5630590489999,18.225653387000094],[-70.55370032499988,18.231512762000037],[-70.54906165299984,18.237616278000033],[-70.5519099599999,18.24843984600004],[-70.55870520699992,18.25438060100005],[-70.5657445949999,18.258205471000153],[-70.57331295499995,18.268011786],[-70.5924373039999,18.279852606000148],[-70.59679114499991,18.28912995000009],[-70.59434973899997,18.299058335000023],[-70.58844967399995,18.303615627000156],[-70.58165442599991,18.30707428600014],[-70.57640540299991,18.313950914000074],[-70.5717667309999,18.334051825000117],[-70.57115637899994,18.355169989000117],[-70.5738826159999,18.37368398600013],[-70.57945716099991,18.38564687700007],[-70.60142981699994,18.411851304000024],[-70.61465410099987,18.42084381700012],[-70.63780676999991,18.429388739000146],[-70.65754146999984,18.43378327000012],[-70.68248450399997,18.435614325000085],[-70.70384680899994,18.430121161000088],[-70.71288001199994,18.41266510600012],[-70.70946204299992,18.39175039300015],[-70.71198482999995,18.38336823100009],[-70.74168860599988,18.355414130000057],[-70.74986731699988,18.35040924700003],[-70.76065019399988,18.347479559000092],[-70.77232825399997,18.347886460000026],[-70.79312089799987,18.354071356000176],[-70.80231686099995,18.354925848000065],[-70.81004798099985,18.35203685100005],[-70.8239639959999,18.342678127000013],[-70.83332271999987,18.340643622000083],[-70.84601803299992,18.342189846000124],[-70.85045325399992,18.33958567900011],[-70.8603409499999,18.330715236000074],[-70.86310787699998,18.326971747000144],[-70.86937415299991,18.314601955000015],[-70.87059485599994,18.310248114000117],[-70.87328040299991,18.306301174000126],[-70.88670813699991,18.302069403000118],[-70.89167232999995,18.299709377000152],[-70.91828365799988,18.26959870000003],[-70.93248450399992,18.261542059000178],[-70.95620683499993,18.25873444200012],[-70.96580969999991,18.26215241100014],[-70.97203528599997,18.27024974200016],[-70.97728430899986,18.280259507000054],[-70.98379472599993,18.28912995000009],[-70.99425208199992,18.29661692900008],[-71.00487219999988,18.301011460000055],[-71.04824785099993,18.310003973000065],[-71.06834876199989,18.310370184000174],[-71.08397376199986,18.30438873900006],[-71.0902400379999,18.28912995000009],[-71.09235592399992,18.280707098000146],[-71.10122636599996,18.266099351000136],[-71.10334225199998,18.254950262000122],[-71.10142981699991,18.242132880000085],[-71.09654700399994,18.235093492000104],[-71.0899145169999,18.22870514500009],[-71.08283443899992,18.21771881700012],[-71.06651770699989,18.163316148000106],[-71.06126868399991,18.15399811400009],[-71.06110592399995,18.14207591400013],[-71.08055579299995,18.113918361000128],[-71.09715735599991,18.073716539000046],[-71.1918025379999,17.941799221000096],[-71.20010331899988,17.919175523000106],[-71.20425370999993,17.91111888199999],[-71.21373450399992,17.904852606000034],[-71.23363196499992,17.894964911000116],[-71.24592037699998,17.885077216000113],[-71.25470943899995,17.875311591000166],[-71.26154537699995,17.863226630000057],[-71.26781165299991,17.846584377000013],[-71.27521725199989,17.84906647300015],[-71.27806555899994,17.85077545800014],[-71.28209387899992,17.853989976000108],[-71.28359941299996,17.84674713700018],[-71.28514563699991,17.844183661000088],[-71.28892981699994,17.84100983300003],[-71.28209387899992,17.84100983300003],[-71.28612219999988,17.832586981000148],[-71.29133053299998,17.82615794500005],[-71.29771887899989,17.821966864000117],[-71.30565344999985,17.82050202000015],[-71.30931555899991,17.816392320000105],[-71.3158259759999,17.796454169000025],[-71.31965084499993,17.789211330000096],[-71.33185787699989,17.77240631700009],[-71.3655492829999,17.67841217700014],[-71.37588456899991,17.660142320000162],[-71.41722571499994,17.604803778000175],[-71.4272354809999,17.609279690000122],[-71.43586178299992,17.617092190000122],[-71.43635006399992,17.621283270000063],[-71.44611568899994,17.629339911],[-71.51488196499994,17.737779039000188],[-71.53160559799997,17.755072333],[-71.56525631399998,17.767523505000113],[-71.64513098899991,17.757269598000093],[-71.67931067599989,17.765285549000126],[-71.66966712099992,17.77240631700009],[-71.63776607999989,17.804022528000147],[-71.63093014199988,17.81679922100001],[-71.63239498599995,17.838324286000116],[-71.63658606699997,17.853461005000113],[-71.6520076159999,17.88198476800012],[-71.66283118399991,17.89769114800019],[-71.66494706899991,17.903469143000148],[-71.66563880099994,17.915472723000065],[-71.65880286399992,17.95331452000012],[-71.66624915299991,17.970770575000174],[-71.68382727799994,17.990179755],[-71.72032630099989,18.019110419000082],[-71.77623450399994,18.03925202000012],[-71.76427119999995,18.069492493000055],[-71.7606538499999,18.086804097000154],[-71.7628759359999,18.115846253000043],[-71.76220414199992,18.13248606400016],[-71.76458125799988,18.1436740110001],[-71.77532995599998,18.172328593000188],[-71.7768285729999,18.181785380000164],[-71.77403804599993,18.2014741010001],[-71.7661315519999,18.220258484000013],[-71.72170877299996,18.292996237000168],[-71.72111173599987,18.29397382300014],[-71.70933915199996,18.313250224000072],[-71.71150956299994,18.316144105000163],[-71.72070796799994,18.323973083000098],[-71.73497066299993,18.332938945000038],[-71.7887141529999,18.35221425400006],[-71.82643794799989,18.376166281000064],[-71.83455114799997,18.385080465],[-71.84974401899989,18.406448670000103],[-71.85816727799991,18.41355417900003],[-71.8971829839999,18.42288177500008],[-71.91216914899988,18.43073659300002],[-71.9181636159999,18.44923675500003],[-71.91439123599989,18.4602179970001],[-71.90689815299993,18.46430043600013],[-71.9015754799999,18.46977813800011],[-71.90405594999996,18.48479014100009],[-71.91051550299991,18.494272766000066],[-72.00094925999989,18.582458598000027],[-72.00983760599989,18.598814189000063],[-71.99262935399992,18.61113901800003],[-71.955474,18.618606262000142],[-71.880284791,18.605402934000054],[-71.84157914199997,18.61798614500016],[-71.82855668099994,18.631292827],[-71.80798946099995,18.664649964000077],[-71.79434688399996,18.679171041000117],[-71.79177913299995,18.68068169800013],[-71.7848976379999,18.684730213000176],[-71.7580700279999,18.700513407000113],[-71.74406571499989,18.711442973000157],[-71.73207678299993,18.73007232700003],[-71.72525549299986,18.74697052000012],[-71.72034623299996,18.765444845000147],[-71.71884761599993,18.784229228000143],[-71.72690913999992,18.82352915500003],[-71.7279426689999,18.864069316000055],[-71.7334720469999,18.882569479000082],[-71.74091345299993,18.89161285400003],[-71.76380611199993,18.911508281000053],[-71.77295283999993,18.921714376000107],[-71.78711218299989,18.950033061000013],[-71.79625891099997,18.95706105600011],[-71.81966833499993,18.957810364000025],[-71.84452469899989,18.94974884100013],[-71.86245642199995,18.947087504000095],[-71.86540197799988,18.964424948000115],[-71.84814204899996,18.975483704000013],[-71.79682735199992,18.98860951800016],[-71.78370153799995,18.996309306000068],[-71.74034501199989,19.041887919000075],[-71.71042435699994,19.08165293400016],[-71.69528316199992,19.094546204000082],[-71.66138342299993,19.11759389300012],[-71.64877437399991,19.13529307100005],[-71.64365840699992,19.152475484000107],[-71.63911088099988,19.212110088000102],[-71.6517327169999,19.21792388400011],[-71.71652217699992,19.247766825],[-71.74951707699991,19.27970772300013],[-71.7537292069999,19.283785299],[-71.77155757699995,19.307556457000047],[-71.7765185149999,19.327503561000142],[-71.76995560799992,19.333808085000086],[-71.74298050899998,19.34838083900003],[-71.7334720469999,19.35546051100006],[-71.72081132099994,19.385949606000125],[-71.71528194299998,19.391659851],[-71.70386145099988,19.414630025000136],[-71.70318965699997,19.45927846300016],[-71.71512691299992,19.537464905000107],[-71.74308386299992,19.60007090300003],[-71.74768306499996,19.622782695000083],[-71.74604140899993,19.649017002],[-71.74504756699994,19.66489898700003],[-71.74861324099993,19.68259816500013],[-71.75743567599991,19.71010976800015],[-71.73827063699994,19.70612213700018],[-71.72032630099989,19.69745514500009],[-71.72411048099991,19.717189846],[-71.7418513659999,19.755804755000085],[-71.74079342399995,19.765692450000085],[-71.74079342399995,19.77317942900005],[-71.76764889199984,19.77448151200015],[-71.77106686099995,19.78514232000019],[-71.76024329299986,19.80093008000013],[-71.74449622299991,19.817206122000172],[-71.73997962099995,19.820257880000057],[-71.73485266799992,19.821275132000107],[-71.72370357999992,19.820990302],[-71.71690833199997,19.82363515800007],[-71.70579993399984,19.83649323100009],[-71.69981848899994,19.841498114000146],[-71.6878962879999,19.846014716000113],[-71.67902584499987,19.848089911000116],[-71.67027747299997,19.851996161000116],[-71.65880286399992,19.861965236000017],[-71.66563880099994,19.874497789000102],[-71.66673743399988,19.88568756700012],[-71.66144771999993,19.893622137000175],[-71.6485896479999,19.89671458500008],[-71.64085852799988,19.895575262000037],[-71.62889563699984,19.890448309000117],[-71.62124589799993,19.889308986000074],[-71.61790930899987,19.891424872000087],[-71.61095130099991,19.900824286000116],[-71.60732988199993,19.902899481000034],[-71.5046280589999,19.910345770000035],[-71.47850501199986,19.906887111000017],[-71.45270748599992,19.898098049000154],[-71.35724850199992,19.851263739],[-71.3292130199999,19.84589264500012],[-71.30260169199997,19.855698960000055],[-71.28246008999992,19.841782945000162],[-71.26805579299986,19.83551666900003],[-71.22374426999991,19.834051825000174],[-71.21206620999989,19.837103583000054],[-71.20933997299994,19.84479401200018],[-71.20881100199998,19.85496653900013],[-71.2035212879999,19.865383205000015],[-71.19176184799991,19.86969635600003],[-71.18333899599986,19.86041901200015],[-71.17223059799994,19.834051825000174],[-71.16441809799994,19.838609117000104],[-71.15851803299992,19.84349192899999],[-71.15440833199995,19.849107164000188],[-71.15172278599988,19.855698960000055],[-71.16022701699993,19.858221747000172],[-71.1620173819999,19.85944245000009],[-71.16218014199985,19.86204661700019],[-71.16539466099991,19.868801174000126],[-71.14972896999984,19.863023179000077],[-71.13658606699988,19.863714911],[-71.12319902299988,19.86688873900006],[-71.10704505099991,19.868801174000126],[-71.09679114499988,19.876206773000106],[-71.07827714799987,19.909125067],[-71.0660701159999,19.916571356000176],[-71.05085201699993,19.920233466000028],[-71.01842200399992,19.935492255],[-71.00088456899988,19.93768952000009],[-70.98473059799991,19.933742580000015],[-70.96934973899987,19.925197658000073],[-70.96104895699992,19.912665106000176],[-70.96617591099991,19.89671458500008]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Grenada","sov_a3":"GRD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Grenada","adm0_a3":"GRD","geou_dif":0,"geounit":"Grenada","gu_a3":"GRD","su_dif":0,"subunit":"Grenada","su_a3":"GRD","brk_diff":0,"name":"Grenada","name_long":"Grenada","brk_a3":"GRD","brk_name":"Grenada","brk_group":null,"abbrev":"Gren.","postal":"GD","formal_en":"Grenada","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Grenada","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":3,"mapcolor13":6,"pop_est":90739,"gdp_md_est":1161,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"GJ","iso_a2":"GD","iso_a3":"GRD","iso_n3":"308","un_a3":"308","wb_a2":"GD","wb_a3":"GRD","woe_id":23424826,"woe_id_eh":23424826,"woe_note":"Exact WOE match as country","adm0_a3_is":"GRD","adm0_a3_us":"GRD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"GRD.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.631581183999884,12.044094143000152],[-61.67442786399993,12.022040106000148],[-61.67442786399993,12.029486395000133],[-61.68297278599988,12.025376695000176],[-61.689361131999895,12.019761460000083],[-61.69343014199995,12.01227448100012],[-61.694935675999915,12.002834377000099],[-61.704253709999925,12.004543361000103],[-61.71324622299997,12.007269598000079],[-61.721750454999885,12.011053778000102],[-61.729644334999875,12.015814520000092],[-61.73997962099988,12.00690338700015],[-61.75694739499994,12.00340403900016],[-61.77554277299995,12.004339911000145],[-61.79051673099988,12.00836823100012],[-61.755848761999914,12.030259507000054],[-61.74950110599988,12.036322333000143],[-61.745961066999904,12.050930080000157],[-61.74885006399993,12.062648830000157],[-61.75377356699988,12.0741641300001],[-61.75641842399997,12.087836005000128],[-61.75104732999992,12.110093492000175],[-61.73029537699992,12.149318752000099],[-61.729644334999875,12.166652736000088],[-61.67145748599993,12.236070054000123],[-61.65050208199988,12.239732164000173],[-61.62767493399989,12.23672109600008],[-61.606027798999975,12.22337474200016],[-61.606678839999915,12.220282294000171],[-61.61294511599988,12.214422919000128],[-61.60456295499992,12.197455145000147],[-61.602772589999944,12.182928778000118],[-61.60631262899992,12.133775132000096],[-61.60871334499986,12.12677643400012],[-61.61310787699994,12.119859117000118],[-61.619781053999894,12.10455963700015],[-61.61945553299998,12.096747137000165],[-61.613840298999975,12.08038971600014],[-61.616363084999904,12.077297268000066],[-61.621571417999895,12.074937242000118],[-61.624501105999904,12.069037177000082],[-61.62572180899992,12.061224677000084],[-61.62604732999995,12.05304596600017],[-61.631581183999884,12.044094143000152]]],[[[-61.42332923099986,12.49518463700015],[-61.4273982409999,12.47540924700013],[-61.42804928299994,12.454657294000128],[-61.445668097999885,12.459784247000144],[-61.46255449099987,12.455145575000117],[-61.479237433999906,12.446722723000079],[-61.4962458979999,12.440375067000131],[-61.49278723899989,12.446478583000129],[-61.48607337099995,12.462225653000175],[-61.48265540299993,12.468329169000171],[-61.48574785099993,12.46881745000016],[-61.4962458979999,12.468329169000171],[-61.49478105399993,12.47231679900014],[-61.48888098899988,12.482001044000114],[-61.46727454299988,12.475572007000096],[-61.45433508999989,12.492824611000103],[-61.44347083199988,12.516546942000119],[-61.42804928299994,12.529730536000073],[-61.42162024599986,12.513373114000144],[-61.42332923099986,12.49518463700015]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Guatemala","sov_a3":"GTM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guatemala","adm0_a3":"GTM","geou_dif":0,"geounit":"Guatemala","gu_a3":"GTM","su_dif":0,"subunit":"Guatemala","su_a3":"GTM","brk_diff":0,"name":"Guatemala","name_long":"Guatemala","brk_a3":"GTM","brk_name":"Guatemala","brk_group":null,"abbrev":"Guat.","postal":"GT","formal_en":"Republic of Guatemala","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guatemala","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":3,"mapcolor13":6,"pop_est":13276517,"gdp_md_est":68580,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"GT","iso_a2":"GT","iso_a3":"GTM","iso_n3":"320","un_a3":"320","wb_a2":"GT","wb_a3":"GTM","woe_id":23424834,"woe_id_eh":23424834,"woe_note":"Exact WOE match as country","adm0_a3_is":"GTM","adm0_a3_us":"GTM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":5,"tiny":4,"homepart":1,"filename":"GTM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-89.16049617499996,17.814314270000068],[-89.15621739539208,17.598243348485624],[-89.1507278741021,17.321032079732134],[-89.1492048451793,17.03627080633359],[-89.16606739756634,16.77700906338319],[-89.18435270612271,16.495872444329763],[-89.1931396713585,16.392625602808778],[-89.20851686052119,16.186131919766666],[-89.23413509199997,15.954944560000056],[-89.23602227599987,15.906493168000052],[-89.23651220799991,15.893914693000083],[-89.22824397799988,15.880840556000122],[-89.22599605399995,15.884044495000095],[-89.21653926699989,15.888643697000047],[-89.20483455399992,15.892416077000064],[-89.19576533999995,15.892932841000116],[-89.17744604499987,15.900270894000101],[-89.10091324899997,15.896808574000062],[-89.07238785899992,15.90151112900014],[-89.04032263199991,15.901717834000094],[-88.95187841899987,15.879651999000089],[-88.91397050699987,15.893947658000057],[-88.9000138009999,15.887844143000052],[-88.86620032499994,15.86033763200004],[-88.83161373599992,15.868638414000117],[-88.78734290299988,15.859076239000018],[-88.75328528599997,15.83978913000007],[-88.74950110599994,15.818793036000047],[-88.72679602799991,15.81517161700009],[-88.62596594999994,15.753892320000062],[-88.63829505099997,15.708807684000107],[-88.63621985599985,15.702093817000046],[-88.60924231699991,15.702093817000046],[-88.59837805899991,15.706122137000108],[-88.59520423099994,15.714667059000133],[-88.5963435539999,15.722154039000115],[-88.59870357999995,15.723211981000077],[-88.59898841099997,15.727362372000101],[-88.6023656889999,15.730902411000072],[-88.60558020699995,15.735541083000015],[-88.60545813699989,15.743068752000056],[-88.60045325399994,15.744574286000017],[-88.59117591099988,15.743557033000059],[-88.58218339799996,15.745021877000111],[-88.5781957669999,15.753892320000062],[-88.57433020699997,15.769964911000045],[-88.56550045499992,15.780951239000101],[-88.55606035099989,15.789496161000017],[-88.55028235599994,15.798285223000077],[-88.54906165299992,15.813666083000046],[-88.55671139199987,15.83734772300005],[-88.55768795499992,15.852932033000057],[-88.55028235599994,15.852932033000057],[-88.55064856699995,15.84247467700007],[-88.55028235599994,15.839260158000116],[-88.54405676999988,15.839260158000116],[-88.53213456899994,15.84682851800005],[-88.50304114499997,15.8413760440001],[-88.48884029899995,15.84674713700008],[-88.51195227799991,15.867580471000053],[-88.52481035099993,15.877020575000076],[-88.54328365799994,15.885158596000082],[-88.55101477799988,15.895168361000062],[-88.55768795499992,15.906561591000125],[-88.56452389199987,15.914984442000076],[-88.6075740229999,15.938421942000048],[-88.61986243399994,15.953273830000029],[-88.60545813699989,15.969631252000028],[-88.59019934799991,15.961004950000131],[-88.56183834499986,15.949042059000107],[-88.55028235599994,15.94232819200005],[-88.52122962099986,15.912746486000088],[-88.50023352799994,15.90106842700001],[-88.44790605399993,15.858710028000102],[-88.34483801999987,15.811957098000022],[-88.31102454299992,15.782416083000072],[-88.30040442599997,15.777818101000037],[-88.25633704299989,15.740383205000086],[-88.22154700399992,15.725897528000049],[-88.22093665299988,15.725653387000108],[-88.22092213512124,15.725647337926148],[-88.23261999599994,15.721418762000013],[-88.23574641999998,15.712427063000064],[-88.23491959699996,15.70157501300011],[-88.24158585599989,15.688242493000102],[-88.24776119099997,15.6956838990001],[-88.26499527999994,15.688604228000086],[-88.27969722499995,15.68074941000006],[-88.29558772899993,15.67501332600011],[-88.31667171299998,15.674599914000082],[-88.32230444399991,15.6672618610001],[-88.35256099499995,15.616903178000115],[-88.39899226999994,15.572797343000047],[-88.4674339359999,15.52073966600008],[-88.500019694,15.49595448900004],[-88.500019694,15.495902812000054],[-88.58737870299993,15.430299581000014],[-88.67419510899992,15.365058086000088],[-88.76089940199998,15.299961814000085],[-88.8470269369999,15.235298564000116],[-88.97342749099994,15.140394796000137],[-89.0082832439999,15.1244009400001],[-89.1098274339999,15.091457214000044],[-89.14052323499993,15.076393534000147],[-89.14694031899992,15.071284391000091],[-89.16080623499994,15.060244649000069],[-89.17276932899998,15.042209575000074],[-89.188582317,14.99608835900004],[-89.1691003009999,14.978415019000122],[-89.1691519779999,14.95206003800007],[-89.18152848299988,14.923663839000142],[-89.18921495599992,14.913059034000128],[-89.19881425,14.899815165000076],[-89.22361893799989,14.879015401000117],[-89.23144791699994,14.867310690000139],[-89.2324297689999,14.84850046800004],[-89.22767553799991,14.834573670000054],[-89.21896805899993,14.821680400000048],[-89.19881425,14.798090108000038],[-89.18940913999992,14.783000590000126],[-89.17054724099998,14.738791403000121],[-89.15966935299994,14.7251229860001],[-89.15052262499994,14.717294007000076],[-89.1462132339999,14.710857664000086],[-89.1445023199999,14.708302308000043],[-89.14269364499992,14.691274923000023],[-89.14522578999993,14.68344594300008],[-89.15584529599998,14.67225799500005],[-89.15941097099997,14.665979309000138],[-89.1552251799999,14.61559478800005],[-89.15574194399997,14.597843934000126],[-89.16039282299994,14.581281637000119],[-89.17214921099992,14.570403747000071],[-89.18369889399997,14.569525248000035],[-89.2088136399999,14.577948507000116],[-89.22108679199994,14.580093079000108],[-89.23811417699994,14.577948507000116],[-89.24568477499992,14.57298757000008],[-89.25054235899992,14.565184428000052],[-89.2596115719999,14.554254862000077],[-89.29092749,14.528003235000142],[-89.30485428899999,14.513352966000069],[-89.31480200199988,14.495963847000056],[-89.32304439299992,14.487463074000132],[-89.34526525899997,14.481959534000039],[-89.35549719299993,14.47544830300008],[-89.36198258499991,14.462400004000116],[-89.36379125999991,14.446561178000124],[-89.36162085,14.415477804000076],[-89.39061132899987,14.435993348000054],[-89.39169653399998,14.433719585000132],[-89.39686417699996,14.426045635000051],[-89.39818192599995,14.4453726200001],[-89.408362183,14.441522726000057],[-89.43109981299997,14.41870758000006],[-89.44683528699996,14.415529481000092],[-89.45812658699992,14.419586080000085],[-89.4694178869999,14.425373840000061],[-89.48528255199992,14.427389222000114],[-89.49614812999991,14.422897484000073],[-89.50303340699992,14.420051168000029],[-89.52776057999995,14.391060689000142],[-89.54135148099994,14.381526387000049],[-89.54424536199994,14.400052388000093],[-89.555174927,14.410826925000025],[-89.5698768719999,14.41201548300013],[-89.58406205299994,14.40180938700007],[-89.59057328399993,14.385970561000065],[-89.58628413999995,14.374679261000095],[-89.57897192399997,14.364783223000101],[-89.57607804399997,14.353130189000124],[-89.58240840699999,14.343363343000078],[-89.59243363499994,14.33638702400009],[-89.59835058699994,14.32798960400011],[-89.59217525299994,14.313830261000064],[-89.57127213599998,14.311143087000119],[-89.564373332,14.308145853000113],[-89.5585855719999,14.302823182000068],[-89.55569169099994,14.299024963000136],[-89.54987809299996,14.28827626500002],[-89.548586182,14.283599549000144],[-89.54677750699992,14.26832916300009],[-89.54491715599991,14.261817932000028],[-89.5405504969999,14.257606303000088],[-89.52786393199996,14.251456808000114],[-89.5246599939999,14.247374369000099],[-89.52450496499995,14.231768087000146],[-89.5309386799999,14.225566915000073],[-89.6383223069999,14.200555522000087],[-89.66462561099992,14.188850810000105],[-89.68984371,14.170014750000078],[-89.70986832699992,14.148724060000092],[-89.75260473699993,14.075240174000042],[-89.75544693999993,14.067075297000114],[-89.75446508799993,14.059401347000119],[-89.74801006799993,14.044894904000046],[-89.74725622599998,14.043200785000124],[-89.74764379899997,14.037645569000118],[-89.76226822999988,14.029997457000135],[-89.77694433599996,14.035785218000115],[-89.80296341999991,14.055473938000148],[-89.82110184699994,14.060073141000103],[-89.83585546899995,14.059091289000051],[-89.88011633299999,14.042684021000085],[-89.8907875169999,14.03588857000004],[-89.91207820699996,14.015192159000023],[-90.00817053299997,13.949692281000111],[-90.02297583099991,13.93695404100015],[-90.0314766029999,13.922923889000044],[-90.0380911869999,13.908376974000092],[-90.04736710699993,13.894295146000074],[-90.05964025899996,13.884709167000068],[-90.08708044399991,13.870472310000096],[-90.09904353899998,13.858509216000142],[-90.10697587099992,13.844065654000119],[-90.11229854299987,13.828252666000125],[-90.11477901199996,13.812000428000104],[-90.11431392499992,13.796264954000035],[-90.09298172804961,13.728903047894377],[-90.09832812399992,13.731414130000104],[-90.24555320799993,13.790725711000022],[-90.40115945399988,13.858588018000091],[-90.50020878599989,13.894699659000054],[-90.58041288799987,13.913267343000072],[-90.63801879499991,13.922358034000041],[-90.70727773599987,13.928888581000095],[-90.78461482599991,13.921538447000088],[-90.79624657599987,13.918160508000097],[-90.9103332009999,13.911135082000042],[-91.04374042399985,13.913584837000144],[-91.16576087099986,13.92670319200002],[-91.31646125199993,13.955679359000058],[-91.55186926999991,14.057277736000103],[-91.63711503799988,14.10443756700009],[-91.76255767099988,14.1801741120001],[-91.90819251199994,14.283840236000074],[-92.04959062399993,14.40802643400012],[-92.24623383208247,14.54628292436429],[-92.22609716799991,14.549345602000143],[-92.2080620939999,14.570507101000102],[-92.18607377099994,14.629573263000054],[-92.16473140499994,14.66814972000013],[-92.16080399699986,14.683497620000095],[-92.16173417199991,14.702333679000121],[-92.1793816729999,14.751581320000101],[-92.18010514399992,14.758790182000054],[-92.17881323299994,14.773388774000125],[-92.1793816729999,14.781243591000065],[-92.18865759299993,14.805893249000064],[-92.19082800299992,14.814238993000117],[-92.19165482699995,14.835297140000135],[-92.18679724199993,14.8472602330001],[-92.16602331599996,14.870824687000095],[-92.1546803389999,14.900797018000048],[-92.15757421899988,14.96304128000014],[-92.15421525099998,14.995933329000096],[-92.14235550999996,15.007483012000122],[-92.12987565099996,15.010945333000064],[-92.11698238099986,15.012392274000149],[-92.10383072999988,15.017869975000051],[-92.0935987959999,15.029419658000094],[-92.0738067219999,15.073706360000115],[-92.20335953799992,15.237158915000121],[-92.2109301349999,15.253359477000132],[-92.2112918709999,15.272066345000026],[-92.20465144899998,15.289507141000056],[-92.18617712399994,15.320383810000052],[-92.1374462489999,15.401825866000081],[-92.10593123099997,15.45446906200007],[-92.06853572599998,15.516935120000056],[-91.98959997599994,15.64896840400013],[-91.91056087199988,15.780950013000078],[-91.84167618899994,15.896085103000074],[-91.79297115099993,15.977578837000095],[-91.7744709879999,16.008429667000087],[-91.75188838699995,16.046308492000094],[-91.73984777899996,16.06098459900008],[-91.72377640899992,16.06878774000009],[-91.6784045009999,16.06889109300002],[-91.54048010299991,16.069149475000103],[-91.40260738199996,16.069304505000048],[-91.26478633699992,16.069511210000087],[-91.12691361599994,16.069769593000075],[-90.9947978319999,16.06986859300008],[-90.98898921799989,16.06987294600009],[-90.85111649699991,16.07013132700007],[-90.71329545199987,16.070338034000116],[-90.57547440599993,16.070596415000097],[-90.48573828199994,16.07069976800011],[-90.4661529139999,16.072921855000118],[-90.44819509699991,16.07925990800007],[-90.44814367699993,16.079278056000046],[-90.44784120199994,16.079686593000105],[-90.44416459199992,16.084652405000014],[-90.4374208169999,16.098863424000058],[-90.4344752609999,16.107183330000026],[-90.44021134499988,16.10485789000009],[-90.44274348999994,16.10418609600012],[-90.44452632699995,16.103255920000066],[-90.44814367699993,16.099741924000114],[-90.45558508399995,16.099741924000114],[-90.4594866539999,16.116795146000044],[-90.43530208399994,16.136277161000038],[-90.44814367699993,16.148214417000077],[-90.44814367699993,16.154415589000052],[-90.42612951699992,16.163148906000032],[-90.43271826199992,16.173225810000076],[-90.46181209399992,16.189142151000084],[-90.46558447299995,16.208107402000053],[-90.45850480199992,16.221749980000055],[-90.44623164899991,16.23084503200002],[-90.4344752609999,16.23632273400011],[-90.44798864799988,16.24149037700002],[-90.45783300899987,16.249138489000103],[-90.45943497799999,16.259060364000074],[-90.44814367699993,16.271100973000074],[-90.44372534299993,16.266863505000117],[-90.44062475599988,16.26531321200008],[-90.42767980999997,16.26360789000003],[-90.43142635099989,16.268930563000083],[-90.43752416999993,16.280040996000082],[-90.44129654999995,16.28536366800003],[-90.43674902399994,16.28484690400009],[-90.4355087889999,16.286242168000086],[-90.4355087889999,16.288774312000072],[-90.4344752609999,16.29156484000012],[-90.42855830999991,16.287637431000064],[-90.42023840399995,16.28536366800003],[-90.41406306999997,16.287844137],[-90.41401139299994,16.29838612900008],[-90.42018672799992,16.29600901300003],[-90.43473364299987,16.30122833300004],[-90.44488806199993,16.30835968000008],[-90.43788590499993,16.312080383000108],[-90.41946325699993,16.317816467000057],[-90.40468379799992,16.331510722000075],[-90.39879268399991,16.34758209200004],[-90.4071901049999,16.360449524000046],[-90.41401139299994,16.360449524000046],[-90.41401139299994,16.353008118000016],[-90.42080684399991,16.353008118000016],[-90.41822302299998,16.367167461000065],[-90.4087403979999,16.37233510300007],[-90.39512365699991,16.3714049270001],[-90.37985327199996,16.36727081300009],[-90.3913771169999,16.38597768100007],[-90.39269486499987,16.391713766000038],[-90.39290157099991,16.4048395800001],[-90.39491695199987,16.41920562700011],[-90.40060135999991,16.42054921500008],[-90.4094638679999,16.416673483000125],[-90.42080684399991,16.415123190000088],[-90.42669795799988,16.41770701100009],[-90.43411352599992,16.422409566000084],[-90.44437129799991,16.426802063000082],[-90.47584224499994,16.430729472000053],[-90.47842606699996,16.43641387900007],[-90.47708247899998,16.444992167000095],[-90.48230179899991,16.456050924000124],[-90.4882187509999,16.4615803020001],[-90.4977530529999,16.468039856000075],[-90.50891516199994,16.471088765000104],[-90.53289302599995,16.45992665600008],[-90.53906835999992,16.468866679000087],[-90.5437192389999,16.490209045000086],[-90.55340856999992,16.4902607220001],[-90.57935013899996,16.482767639000087],[-90.58472448799992,16.480235495000073],[-90.59061560099994,16.48338775700006],[-90.60467159099993,16.48617828400009],[-90.62074296199992,16.486746725000046],[-90.63309362799998,16.48333608000013],[-90.62787430799995,16.49289622000012],[-90.61898596199995,16.500079244000087],[-90.61206131999987,16.507624003000046],[-90.61262976099991,16.51811431900009],[-90.62415360499995,16.524935608000135],[-90.63950150599993,16.525865784000075],[-90.64818314699995,16.529586487000103],[-90.63996659299994,16.54483103400014],[-90.6435322679999,16.561005758000135],[-90.63702103799994,16.577903952000042],[-90.63376542199987,16.592166646000095],[-90.64735632399996,16.600073140000063],[-90.65025020399995,16.593406881000135],[-90.65360917199995,16.590099590000136],[-90.65882849199996,16.588445943000096],[-90.66720007399994,16.586999003000102],[-90.66720007399994,16.593200175000078],[-90.65402258299997,16.616609599000043],[-90.66771683799999,16.652576396000114],[-90.73530961099993,16.746575826000054],[-90.74977901199989,16.75768625900008],[-90.78559078,16.774997864000085],[-90.80037023999992,16.78683176700008],[-90.79695959599991,16.798665670000105],[-90.79695959599991,16.805435283000037],[-90.810602173,16.81292836500009],[-90.81995560699993,16.805331930000108],[-90.83173783399994,16.805435283000037],[-90.90062251899997,16.82600250300004],[-90.91907100399996,16.83633778900014],[-90.94816483599998,16.86470815000004],[-90.9688870859999,16.874371643000075],[-90.95276403799994,16.89090810200008],[-90.95519283099989,16.89876291900009],[-90.96883540899998,16.90103668200004],[-90.98625036699994,16.90108835900014],[-90.9879556889999,16.896902568000087],[-90.98428666299989,16.887755840000096],[-90.98325313399991,16.878609110000127],[-90.99307165599998,16.874371643000075],[-90.9983426519999,16.877162170000133],[-91.01090002499993,16.89028798400011],[-91.0166877849999,16.894835511000053],[-91.054928346,16.908013],[-91.06686560099992,16.918193258000088],[-91.07130977499995,16.938915507000015],[-91.07694250499998,16.949509176000078],[-91.11223750899987,16.99048858700013],[-91.11611324099991,16.999273580000107],[-91.1212292079999,17.018393860000117],[-91.12655187999994,17.024595032000093],[-91.13714554899994,17.02650706000011],[-91.16122676599988,17.023974915000025],[-91.17120031799999,17.028005677000124],[-91.20675370399992,17.06536773700006],[-91.21595210799995,17.07921702100012],[-91.22024125199991,17.089293925000078],[-91.2253572189999,17.107018942000078],[-91.22959468599996,17.11399526000008],[-91.23879309099993,17.1192145790001],[-91.2592052819999,17.124330547000085],[-91.26313269099985,17.13073842400013],[-91.26514807199989,17.14624135400004],[-91.27083247999992,17.164276428000047],[-91.2795141199999,17.180089416000044],[-91.29041784699987,17.189081116000096],[-91.31775468,17.190476380000064],[-91.34452307199987,17.186342265000032],[-91.3648835859999,17.189752910000063],[-91.372945109,17.213575745000043],[-91.38834468599998,17.221585592000025],[-91.41924719299995,17.2277350870001],[-91.4425015869999,17.23796702000007],[-91.43826411999996,17.253676657000142],[-91.43077103699991,17.254968567000077],[-90.9919864499999,17.25191965800005],[-90.99144384799993,17.526941630500033],[-90.99090124599991,17.80196360300002],[-90.98283972199991,17.810541890000138],[-90.9622208259999,17.816019593000135],[-90.91912268099988,17.816019593000135],[-90.69923946199995,17.815812887000074],[-90.47945959499992,17.815606181000106],[-90.25965389099991,17.81534779900005],[-90.03977067099994,17.81514109300008],[-89.82001664299995,17.81498606400004],[-89.60015926199992,17.81472768100008],[-89.3803018809999,17.81452097600004],[-89.16049617499996,17.814314270000068]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Haiti","sov_a3":"HTI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Haiti","adm0_a3":"HTI","geou_dif":0,"geounit":"Haiti","gu_a3":"HTI","su_dif":0,"subunit":"Haiti","su_a3":"HTI","brk_diff":0,"name":"Haiti","name_long":"Haiti","brk_a3":"HTI","brk_name":"Haiti","brk_group":null,"abbrev":"Haiti","postal":"HT","formal_en":"Republic of Haiti","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Haiti","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":7,"mapcolor13":2,"pop_est":9035536,"gdp_md_est":11500,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"HA","iso_a2":"HT","iso_a3":"HTI","iso_n3":"332","un_a3":"332","wb_a2":"HT","wb_a3":"HTI","woe_id":23424839,"woe_id_eh":23424839,"woe_note":"Exact WOE match as country","adm0_a3_is":"HTI","adm0_a3_us":"HTI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"HTI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.69424394399988,18.106878973000093],[-73.68785559799994,18.100490627000156],[-73.67638098899991,18.108099677],[-73.67088782499988,18.105373440000122],[-73.66690019399991,18.098578192],[-73.6599828769999,18.094224351000108],[-73.62889563699991,18.094224351000108],[-73.61204993399991,18.09324778900013],[-73.59227454299989,18.089341539000046],[-73.57799231699988,18.081122137000037],[-73.57799231699988,18.06696198100012],[-73.59044348899991,18.059393622000172],[-73.61082923099988,18.057562567],[-73.6497289699999,18.059475002000156],[-73.66722571499994,18.063137111000103],[-73.68252519399991,18.072007554000052],[-73.70767167899987,18.094224351000108],[-73.7044571609999,18.104193427],[-73.69994055899986,18.108303127000156],[-73.69424394399988,18.106878973000093]]],[[[-73.71458899599989,18.60130442900005],[-73.73761959499984,18.588202216000084],[-73.76952063699986,18.58836497600005],[-73.79442298099991,18.601874091000028],[-73.79649817599991,18.628648179000137],[-73.7726944649999,18.639349677000055],[-73.73997962099989,18.63686758000013],[-73.71495520699989,18.623480536000113],[-73.71458899599989,18.60130442900005]]],[[[-72.8204646479999,18.70066966400016],[-72.8311254549999,18.696437893000123],[-72.8382055329999,18.70258209800012],[-72.8471573559999,18.72052643400015],[-72.85570227799994,18.727687893],[-72.86335201699987,18.729641018000066],[-72.88589433499996,18.731024481000034],[-72.97500566299993,18.749904690000065],[-73.00544186099998,18.75214264500015],[-73.03742428299998,18.759588934000035],[-73.12555904899989,18.813625393000123],[-73.21458899599989,18.836615302],[-73.23851477799985,18.851507880000057],[-73.25865637899989,18.878485419000114],[-73.27733313699986,18.89109935099999],[-73.28258216099992,18.895493882000082],[-73.28990637899994,18.904201565000065],[-73.2965388659999,18.914496161000088],[-73.2996313139999,18.92552317900011],[-73.2962133449999,18.936509507],[-73.28384355399996,18.949693101000136],[-73.2663468089999,18.96084219000015],[-73.24596106699991,18.968410549000012],[-73.22447669199991,18.971258856000034],[-73.20079505099997,18.968695380000142],[-73.06191972599993,18.91331614800005],[-72.99339758999989,18.892035223000065],[-72.9172257149999,18.85545482000005],[-72.84609941299996,18.827093817],[-72.8170466789999,18.79311758000007],[-72.80947831899994,18.771470445000162],[-72.80589758999986,18.745672919000143],[-72.8087458979999,18.720404364],[-72.8204646479999,18.70066966400016]]],[[[-72.77603105399987,19.943915106000063],[-72.6739802729999,19.92137278900016],[-72.6488337879999,19.906642971000068],[-72.62804114499991,19.897284247000027],[-72.56871497299994,19.879868882000082],[-72.56517493399988,19.875718492000132],[-72.5443416009999,19.851263739],[-72.51756751199989,19.834133205000157],[-72.48973548099994,19.824652411000145],[-72.47443600199998,19.834051825000174],[-72.4562068349999,19.824855861000103],[-72.4259333979999,19.813788153000143],[-72.39757239499997,19.80695221600014],[-72.38508053299994,19.810451565000122],[-72.37873287699992,19.794663804],[-72.3304337229999,19.75210195500013],[-72.3304337229999,19.745835679],[-72.33519446499989,19.74787018400012],[-72.35090084499987,19.75210195500013],[-72.33824622299989,19.722967841000084],[-72.33385169199991,19.718573309000092],[-72.31615149599992,19.714829820000077],[-72.31240800699987,19.716131903000147],[-72.31615149599992,19.724798895000063],[-72.30308997299991,19.739081122000144],[-72.30638587099986,19.73924388200011],[-72.31289628799996,19.738755601000108],[-72.31615149599992,19.739081122000144],[-72.31590735599985,19.74030182500014],[-72.31383216099994,19.744533596000096],[-72.31139075399992,19.747788804000134],[-72.30992591099994,19.745835679],[-72.30992591099994,19.75210195500013],[-72.3122452459999,19.755194403000033],[-72.31615149599992,19.765692450000085],[-72.30992591099994,19.765692450000085],[-72.29507402299988,19.758042710000055],[-72.27464758999992,19.756252346000068],[-72.2564184239999,19.76186758000007],[-72.24844316299988,19.776597398000078],[-72.23839270699989,19.78644440300009],[-72.21865800699996,19.786932684000178],[-72.20523027299987,19.776190497000144],[-72.21373450399992,19.75210195500013],[-72.19676673099994,19.74249909100014],[-72.1804093089999,19.74087148600013],[-72.14085852799988,19.747463283000016],[-72.13744055899986,19.747219143000066],[-72.13182532499988,19.745835679],[-72.12490800699996,19.741441148000106],[-72.11050370999989,19.727687893000095],[-72.10081946499994,19.724798895000063],[-72.06631425699993,19.724798895000063],[-72.05821692599989,19.72264232000005],[-72.05378170499992,19.717962958000143],[-72.05060787699993,19.71328359600004],[-72.04124915299991,19.708970445000105],[-72.02765865799995,19.699611721000096],[-72.01854407499988,19.69745514500009],[-72.01081295499995,19.700873114],[-72.00572669199994,19.708319403000147],[-71.99933834499993,19.71556224200019],[-71.98786373599998,19.718573309000092],[-71.96886145699997,19.732326565],[-71.94050045499995,19.73212311400006],[-71.89159094999985,19.718573309000092],[-71.86473548099987,19.715073960000026],[-71.85757402299993,19.71002838700015],[-71.86363684799991,19.69745514500009],[-71.87230383999992,19.692124742000104],[-71.88418535099987,19.69025299700014],[-71.91209876199991,19.690619208000058],[-71.90160071499994,19.672308661],[-71.88426673099984,19.67039622600005],[-71.86546790299991,19.675360419000086],[-71.85065670499992,19.677639065000065],[-71.83259029899992,19.663275458],[-71.8214412099999,19.656683661000116],[-71.81651770699992,19.65985748900009],[-71.81114661399995,19.67357005400011],[-71.81330318899998,19.68073151200015],[-71.83535722599986,19.686183986000103],[-71.84243730399993,19.692328192000062],[-71.8460180329999,19.701117255000142],[-71.84439042899987,19.71112702000012],[-71.83674068899995,19.717352606000176],[-71.8253067699999,19.716620184000064],[-71.79942786399987,19.71112702000012],[-71.75743567599991,19.71010976800015],[-71.74861324099993,19.68259816500013],[-71.74504756699994,19.66489898700003],[-71.74604140899993,19.649017002],[-71.74768306499996,19.622782695000083],[-71.74308386299992,19.60007090300003],[-71.71512691299992,19.537464905000107],[-71.70318965699997,19.45927846300016],[-71.70386145099988,19.414630025000136],[-71.71528194299998,19.391659851],[-71.72081132099994,19.385949606000125],[-71.7334720469999,19.35546051100006],[-71.74298050899998,19.34838083900003],[-71.76995560799992,19.333808085000086],[-71.7765185149999,19.327503561000142],[-71.77155757699995,19.307556457000047],[-71.7537292069999,19.283785299],[-71.74951707699991,19.27970772300013],[-71.71652217699992,19.247766825],[-71.6517327169999,19.21792388400011],[-71.63911088099988,19.212110088000102],[-71.64365840699992,19.152475484000107],[-71.64877437399991,19.13529307100005],[-71.66138342299993,19.11759389300012],[-71.69528316199992,19.094546204000082],[-71.71042435699994,19.08165293400016],[-71.74034501199989,19.041887919000075],[-71.78370153799995,18.996309306000068],[-71.79682735199992,18.98860951800016],[-71.84814204899996,18.975483704000013],[-71.86540197799988,18.964424948000115],[-71.86245642199995,18.947087504000095],[-71.84452469899989,18.94974884100013],[-71.81966833499993,18.957810364000025],[-71.79625891099997,18.95706105600011],[-71.78711218299989,18.950033061000013],[-71.77295283999993,18.921714376000107],[-71.76380611199993,18.911508281000053],[-71.74091345299993,18.89161285400003],[-71.7334720469999,18.882569479000082],[-71.7279426689999,18.864069316000055],[-71.72690913999992,18.82352915500003],[-71.71884761599993,18.784229228000143],[-71.72034623299996,18.765444845000147],[-71.72525549299986,18.74697052000012],[-71.73207678299993,18.73007232700003],[-71.74406571499989,18.711442973000157],[-71.7580700279999,18.700513407000113],[-71.7848976379999,18.684730213000176],[-71.79177913299995,18.68068169800013],[-71.79434688399996,18.679171041000117],[-71.80798946099995,18.664649964000077],[-71.82855668099994,18.631292827],[-71.84157914199997,18.61798614500016],[-71.880284791,18.605402934000054],[-71.955474,18.618606262000142],[-71.99262935399992,18.61113901800003],[-72.00983760599989,18.598814189000063],[-72.00094925999989,18.582458598000027],[-71.91051550299991,18.494272766000066],[-71.90405594999996,18.48479014100009],[-71.9015754799999,18.46977813800011],[-71.90689815299993,18.46430043600013],[-71.91439123599989,18.4602179970001],[-71.9181636159999,18.44923675500003],[-71.91216914899988,18.43073659300002],[-71.8971829839999,18.42288177500008],[-71.85816727799991,18.41355417900003],[-71.84974401899989,18.406448670000103],[-71.83455114799997,18.385080465],[-71.82643794799989,18.376166281000064],[-71.7887141529999,18.35221425400006],[-71.73497066299993,18.332938945000038],[-71.72070796799994,18.323973083000098],[-71.71150956299994,18.316144105000163],[-71.70933915199996,18.313250224000072],[-71.72111173599987,18.29397382300014],[-71.72170877299996,18.292996237000168],[-71.7661315519999,18.220258484000013],[-71.77403804599993,18.2014741010001],[-71.7768285729999,18.181785380000164],[-71.77532995599998,18.172328593000188],[-71.76458125799988,18.1436740110001],[-71.76220414199992,18.13248606400016],[-71.7628759359999,18.115846253000043],[-71.7606538499999,18.086804097000154],[-71.76427119999995,18.069492493000055],[-71.77623450399994,18.03925202000012],[-71.79259192599997,18.04987213700015],[-71.86245683499989,18.13654205900012],[-71.89297441299993,18.16278717700014],[-71.9280899729999,18.18378327000009],[-72.00674394399991,18.209458726000133],[-72.03929602799988,18.225653387000094],[-72.07176673099985,18.23753489800005],[-72.11070716099992,18.237616278000033],[-72.19054114499997,18.224839585000083],[-72.29454505099991,18.225775458000058],[-72.44029700399997,18.22394440300009],[-72.51878821499992,18.21035390800013],[-72.53888912699995,18.220445054],[-72.55093339799987,18.2247582050001],[-72.55630449099993,18.220851955000015],[-72.54954993399988,18.182359117000104],[-72.5589900379999,18.172552802000084],[-72.57066809799991,18.17230866100014],[-72.59797115799998,18.182359117000104],[-72.61327063699994,18.185003973],[-72.73086503799993,18.17470937700007],[-72.75499426999993,18.176174221000124],[-72.75300045499992,18.171576239],[-72.75011145699997,18.160305080000015],[-72.74815833199992,18.155707098000093],[-72.7630102199999,18.15672435100005],[-72.76895097599993,18.15827057500009],[-72.77603105399987,18.16315338700015],[-72.80370032499987,18.146144924000097],[-72.85887610599991,18.151312567],[-72.88589433499996,18.141424872000087],[-72.91218014199987,18.155910549000126],[-72.94749915299991,18.169094143000095],[-72.98534094999994,18.178656317000062],[-73.09080969999992,18.189846096000068],[-73.1172582669999,18.188625393000066],[-73.12555904899989,18.189846096000068],[-73.15465247299994,18.20750560099999],[-73.16340084499984,18.21035390800013],[-73.2962133449999,18.230780341000113],[-73.3558650379999,18.22492096600014],[-73.36510169199994,18.227362372000083],[-73.35985266799986,18.24038320500007],[-73.34658769399994,18.245347398000135],[-73.3104548819999,18.245062567],[-73.3104548819999,18.251288153000147],[-73.37726803299992,18.258124091000166],[-73.45824133999987,18.257513739000117],[-73.48180091099994,18.251288153000147],[-73.5139867829999,18.233140367000075],[-73.52619381399995,18.230780341000113],[-73.53416907499994,18.234767971000096],[-73.54279537699992,18.253119208000143],[-73.55011959499984,18.25873444200012],[-73.56346594999985,18.25104401200012],[-73.57070878799988,18.231512762000037],[-73.57811438699986,18.21686432500003],[-73.59166419199991,18.22394440300009],[-73.59788977799988,18.22394440300009],[-73.60968990799995,18.21678294500005],[-73.61961829299986,18.22190989800005],[-73.62401282499994,18.234849351000076],[-73.61900794199988,18.251288153000147],[-73.63320878799989,18.247259833],[-73.64561926999994,18.221096096000153],[-73.6599828769999,18.21035390800013],[-73.65929114499997,18.223822333000115],[-73.65599524599992,18.235825914000046],[-73.64631100199998,18.25873444200012],[-73.65416419199994,18.252671617000047],[-73.66543535099996,18.23851146000011],[-73.67357337099986,18.230780341000113],[-73.67438717399997,18.23322174700006],[-73.68024654899992,18.235419012000037],[-73.69098873599992,18.237616278000033],[-73.69456946499992,18.23590729400003],[-73.6941625639999,18.231919664000046],[-73.69298255099997,18.22744375200007],[-73.6940811839999,18.22394440300009],[-73.73778235599991,18.190741278000175],[-73.80931555899984,18.159165757000082],[-73.82746334499987,18.14203522300015],[-73.84487870999992,18.114691473000065],[-73.80280514199987,18.07192617400007],[-73.79649817599991,18.05634186400009],[-73.7914119129999,18.03668854400003],[-73.79381262899994,18.028998114],[-73.80703691299986,18.02594635600012],[-73.87328040299985,18.026190497000144],[-73.8829646479999,18.027736721000096],[-73.89268958199995,18.032171942000062],[-73.89997311099994,18.039129950000145],[-73.90379798099988,18.05385976800015],[-73.96776282499987,18.141424872000087],[-73.97093665299985,18.14370351800015],[-73.97850501199989,18.146877346000124],[-73.98204505099997,18.14887116100006],[-73.98558508999986,18.152655341000084],[-73.98639889199987,18.155707098000093],[-73.98688717399995,18.15888092700014],[-73.98957271999984,18.16315338700015],[-74.00820878799992,18.179754950000117],[-74.10505123599992,18.247626044000114],[-74.12242591099988,18.255682684000035],[-74.15294348899994,18.260565497000115],[-74.16576087099986,18.26561107000005],[-74.17666581899994,18.273179429],[-74.18130449099996,18.282619533000016],[-74.18342037699998,18.29328034100014],[-74.18907630099997,18.296535549000097],[-74.1975805329999,18.297064520000063],[-74.20799719999988,18.299709377000152],[-74.23379472599993,18.30927155200014],[-74.24217688699989,18.313950914000074],[-74.24893144399991,18.30654531500006],[-74.26781165299985,18.31297435099999],[-74.28783118399991,18.304917710000055],[-74.30894934799991,18.29246653900013],[-74.33092200399994,18.28603750200001],[-74.34935462099989,18.289699611000074],[-74.37218176999988,18.298488674000126],[-74.39159094999991,18.30878327000015],[-74.39976966099991,18.31708405200014],[-74.40831458199992,18.328273830000125],[-74.44591223899994,18.346380927000055],[-74.45441646999987,18.364813544000086],[-74.45665442599994,18.38434479400017],[-74.46320553299992,18.398179429000077],[-74.48916581899991,18.429388739000146],[-74.45441646999987,18.47776927300005],[-74.45742753799996,18.481756903000033],[-74.46182206899994,18.491441148000163],[-74.4435115229999,18.503810940000122],[-74.43175208199992,18.55011627800009],[-74.41685950399993,18.560370184000035],[-74.4141332669999,18.565578518000123],[-74.41584225199989,18.577297268],[-74.41978919199997,18.589829820000105],[-74.42369544199997,18.597601630000113],[-74.42625891799987,18.60822174700014],[-74.41852779899993,18.617499091000113],[-74.38463294199991,18.636297919000143],[-74.34019934799989,18.653387762000094],[-74.32127844999988,18.65656159100017],[-74.29820716099991,18.651190497000115],[-74.28799394399988,18.651516018000123],[-74.28376217399995,18.659654039000046],[-74.27879798099991,18.666571356000148],[-74.26768958199997,18.669623114000146],[-74.2559301419999,18.670314846000096],[-74.19977779899989,18.667303778000086],[-74.15998287699989,18.659165757000082],[-74.02912350199998,18.603745835],[-73.97154700399992,18.60130442900005],[-73.96947180899988,18.599798895],[-73.9629613919999,18.592840887000122],[-73.9615779289999,18.590765692],[-73.95929928299994,18.582993882],[-73.95372473899994,18.583563544000143],[-73.94676673099994,18.586981512000147],[-73.94050045499989,18.58763255400011],[-73.91144771999993,18.573187567000062],[-73.89854895699989,18.568793036000088],[-73.8535863919999,18.567206122000144],[-73.84292558499988,18.565252997000083],[-73.83120683499986,18.560370184000035],[-73.80968176999997,18.542792059000092],[-73.80333411399994,18.53925202000012],[-73.79303951699991,18.538519598000093],[-73.78807532499987,18.541327216000056],[-73.78473873599992,18.54486725500011],[-73.77940833199997,18.546698309000092],[-73.76943925699987,18.54515208500005],[-73.75706946499994,18.539374091000084],[-73.74811764199993,18.53925202000012],[-73.74201412699992,18.541937567],[-73.72923743399988,18.550930080000015],[-73.72508704299995,18.552923895000063],[-73.72386633999992,18.555324611000103],[-73.71117102799988,18.570257880000142],[-73.7044571609999,18.57347239800019],[-73.69652258999986,18.57379791900003],[-73.68830318899995,18.57314687700007],[-73.68040930899988,18.57343170800003],[-73.63508053299998,18.585923570000105],[-73.62205969999988,18.58763255400011],[-73.58641516799995,18.57916901200018],[-73.58584550699987,18.561997789000046],[-73.60610917899987,18.549017645000063],[-73.63263912699993,18.552923895000063],[-73.63263912699993,18.546698309000092],[-73.65420488199993,18.5536156270001],[-73.67345130099989,18.55609772300012],[-73.69277910099993,18.554022528000086],[-73.71458899599989,18.546698309000092],[-73.70799719999991,18.542425848000093],[-73.69139563699994,18.53400299700003],[-73.67491614499994,18.530178127000013],[-73.67381751199991,18.52431875200007],[-73.6742244129999,18.516669012000037],[-73.66982988199993,18.50885651200015],[-73.65221106699991,18.501369533000073],[-73.62043209499987,18.505764065000065],[-73.60472571499989,18.498277085],[-73.56965084499993,18.51837799700014],[-73.52668209499987,18.52350495000014],[-73.36851966099997,18.51194896000014],[-73.34829667899993,18.507635809000035],[-73.30846106699995,18.48834870000009],[-73.28624426999991,18.484035549],[-73.20612545499993,18.48680247600005],[-73.16698157499991,18.483547268],[-73.13170325399997,18.471014716000113],[-73.11314856699997,18.460760809000178],[-73.09801184799997,18.455267645000063],[-73.08116614499997,18.454169012000094],[-73.0559382799999,18.45844147300012],[-72.98558508999989,18.47040436400006],[-72.89899654899992,18.450506903000147],[-72.90416419199991,18.434149481000034],[-72.88508053299995,18.43768952000012],[-72.85830644399994,18.446682033000126],[-72.84064693899992,18.44676341400013],[-72.82603919199991,18.4408226580001],[-72.75499426999993,18.429388739000146],[-72.71646074099996,18.43773021000011],[-72.68932044199994,18.45966217700014],[-72.66934160099987,18.49046458500011],[-72.65257727799984,18.52558014500009],[-72.62828528599997,18.554144598000065],[-72.59654700399992,18.560858466000028],[-72.42975826699993,18.546698309000092],[-72.42369544199991,18.548814195000105],[-72.4211319649999,18.553534247000115],[-72.41950436099998,18.55825429900004],[-72.41608639199987,18.560370184000035],[-72.40982011599993,18.55914948100012],[-72.4068904289999,18.556626695000187],[-72.40493730399996,18.554103908000073],[-72.4017634759999,18.552923895000063],[-72.38097083199992,18.530707098],[-72.37140865799992,18.52558014500009],[-72.35383053299998,18.53009674700003],[-72.34569251199987,18.54686107000005],[-72.3434138659999,18.57013580900015],[-72.34508216099991,18.63100820500007],[-72.3434138659999,18.64227936400009],[-72.3364151679999,18.655829169000057],[-72.32868404899992,18.663885809000178],[-72.32506262899994,18.671372789000046],[-72.3304337229999,18.68329498900009],[-72.33942623599992,18.689439195000077],[-72.38508053299994,18.71059804900007],[-72.39736894399991,18.712632554],[-72.42170162699998,18.713364976000108],[-72.43346106699994,18.71678294500013],[-72.45372473899997,18.733343817],[-72.47175045499989,18.75409577],[-72.49107825399992,18.768500067000062],[-72.51537024599989,18.76581452000009],[-72.54954993399988,18.785630601000022],[-72.55809485599991,18.794623114000117],[-72.56651770699995,18.813625393000123],[-72.61778723899991,18.889349677],[-72.63194739499991,18.903062242000132],[-72.65196692599989,18.918605861000046],[-72.67300370999992,18.931301174000097],[-72.69009355399987,18.936509507],[-72.70872962099986,18.94554271],[-72.81354732999989,19.05292389500015],[-72.81834876199989,19.078558661000027],[-72.77603105399987,19.09479401200015],[-72.73766028599997,19.097235419000086],[-72.71646074099996,19.103949286000116],[-72.7071833979999,19.118638414000042],[-72.71312415299994,19.13743724200016],[-72.72769120999996,19.147202867000132],[-72.74583899599986,19.153794664000102],[-72.7624405589999,19.163072007000054],[-72.77301998599998,19.175767320000105],[-72.79702714799991,19.216009833],[-72.80337480399996,19.231919664000102],[-72.79653886599993,19.236558335000055],[-72.79576575399992,19.23834870000003],[-72.79686438699986,19.240301825000174],[-72.79596920499995,19.245591539000046],[-72.78620357999992,19.254299221000124],[-72.77521725199995,19.277329820000105],[-72.76862545499989,19.286566473000065],[-72.75767981699991,19.29169342699999],[-72.74181067599989,19.294663804],[-72.72569739499991,19.295314846000153],[-72.71397864499994,19.293402411],[-72.7283422519999,19.320379950000145],[-72.73867753799993,19.32587311400009],[-72.75869706899988,19.327582098000093],[-72.77057857999995,19.33616771],[-72.77448482999992,19.35569896000008],[-72.77293860599988,19.37645091400016],[-72.76862545499989,19.38898346600017],[-72.76231848899992,19.382757880000113],[-72.7539770169999,19.377346096000064],[-72.74437415299991,19.37445709800012],[-72.73448645699989,19.375921942],[-72.72345943899995,19.38349030200014],[-72.72288977799988,19.39081452000015],[-72.72642981699994,19.399074611000128],[-72.72809811099994,19.422064520000035],[-72.73062089799988,19.426418361000014],[-72.7283422519999,19.425604559000092],[-72.71397864499994,19.423163153000147],[-72.70897376199989,19.420152085000055],[-72.70197506399992,19.414496161000056],[-72.69237219999994,19.40973541900017],[-72.67983964799993,19.409491278000033],[-72.69912675699987,19.44586823100009],[-72.70921790299994,19.451239325000145],[-72.76089433499988,19.45433177300005],[-72.77399654899995,19.46336497600005],[-72.78278561099992,19.47671133000007],[-72.79596920499995,19.492010809000035],[-72.81476803299991,19.504828192000062],[-72.87848873599995,19.532375393000095],[-72.9315486319999,19.563462632],[-72.9505102199999,19.5677757830001],[-72.96690833199992,19.57501862200003],[-73.00218665299994,19.60346100500014],[-73.00885982999989,19.604966539000188],[-73.01886959499987,19.600734768000066],[-73.08079993399986,19.622381903000147],[-73.09105383999987,19.623480536],[-73.11074785099993,19.628119208000115],[-73.1207983059999,19.62909577],[-73.12214107999998,19.62921784100017],[-73.12718665299991,19.626939195000105],[-73.13182532499994,19.62205638200014],[-73.13841712099992,19.617132880000085],[-73.14907792899993,19.61493561400009],[-73.16392981699991,19.61839427299999],[-73.18602454299987,19.62710195500007],[-73.20759029899992,19.63841380400005],[-73.22109941299988,19.64964427300005],[-73.24128170499992,19.63104889500015],[-73.28425045499995,19.62571849200016],[-73.3795466789999,19.63027578300013],[-73.39842688699994,19.63495514500015],[-73.40949459499987,19.635972398000106],[-73.41657467399995,19.640326239],[-73.43423417899996,19.65908437700007],[-73.44395911399991,19.66331614799999],[-73.4578344389999,19.672186591000028],[-73.46336829299992,19.692124742000104],[-73.46524003799988,19.713080145000063],[-73.46812903599991,19.724798895000063],[-73.43244381399995,19.77895742400004],[-73.4271541009999,19.790269273000106],[-73.41734778599997,19.790513414000046],[-73.36510169199994,19.813544012000122],[-73.36510169199994,19.820990302],[-73.42031816299988,19.820990302],[-73.40416419199991,19.832505601000133],[-73.38512122299991,19.834418036],[-73.36473548099994,19.832831122000144],[-73.34459387899989,19.834051825000174],[-73.22276770699989,19.88694896000011],[-73.18712317599994,19.911444403000147],[-73.16710364499997,19.93768952000009],[-73.15514075399994,19.923976955000157],[-73.1437068349999,19.920314846],[-73.11530514199987,19.923407294000086],[-73.10069739499994,19.92137278900016],[-73.07433020699995,19.912339585000055],[-73.06037350199998,19.910345770000035],[-73.04845130099994,19.910589911000056],[-73.04181881399995,19.911525783000126],[-73.02183997299989,19.916571356000176],[-73.00706946499992,19.91840241100006],[-72.99176998599995,19.917181708000115],[-72.97789466099997,19.912298895000063],[-72.96727454299992,19.902899481000034],[-72.96011308499988,19.91840241100006],[-72.94127356699994,19.928045966000028],[-72.91832434799993,19.930161851000136],[-72.89899654899992,19.923407294000086],[-72.87230383999989,19.93378327],[-72.84044348899997,19.94163646000008],[-72.80711829299989,19.94562409100014],[-72.77603105399987,19.943915106000063]]],[[[-72.7624405589999,20.067368882000082],[-72.6677953769999,20.03229401200009],[-72.62755286399994,20.00824616100006],[-72.63890540299991,19.98484935100008],[-72.65514075399993,19.991400458000058],[-72.73985755099993,20.002427476000108],[-72.77916419199994,20.01699453300013],[-72.8277481759999,20.02732982000005],[-72.84430904899997,20.03449127800009],[-72.85578365799992,20.032416083000058],[-72.86766516799989,20.028225002000127],[-72.87848873599995,20.026434637000065],[-72.89940344999994,20.030422268000123],[-72.92389889199987,20.038153387000037],[-72.94611568899992,20.048773505000085],[-72.96035722599991,20.061224677],[-72.95596269399994,20.061183986000017],[-72.95319576699987,20.062486070000105],[-72.94737708199992,20.067368882000082],[-72.90111243399994,20.082017320000162],[-72.85057532499994,20.088527736000074],[-72.8216853509999,20.08978913],[-72.80239824099988,20.087225653000175],[-72.78514563699989,20.080023505000053],[-72.7624405589999,20.067368882000082]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Jamaica","sov_a3":"JAM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Jamaica","adm0_a3":"JAM","geou_dif":0,"geounit":"Jamaica","gu_a3":"JAM","su_dif":0,"subunit":"Jamaica","su_a3":"JAM","brk_diff":0,"name":"Jamaica","name_long":"Jamaica","brk_a3":"JAM","brk_name":"Jamaica","brk_group":null,"abbrev":"Jam.","postal":"J","formal_en":"Jamaica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Jamaica","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":4,"mapcolor13":10,"pop_est":2825928,"gdp_md_est":20910,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"JM","iso_a2":"JM","iso_a3":"JAM","iso_n3":"388","un_a3":"388","wb_a2":"JM","wb_a3":"JAM","woe_id":23424858,"woe_id_eh":23424858,"woe_note":"Exact WOE match as country","adm0_a3_is":"JAM","adm0_a3_us":"JAM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"JAM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-76.26374264199984,18.01235586100009],[-76.25678463399996,17.996323960000012],[-76.24876868399991,17.977850653000075],[-76.2340388659999,17.95392487200013],[-76.21524003799996,17.934963283000116],[-76.18797766799987,17.91547272300002],[-76.19839433499996,17.907416083000072],[-76.25007076699988,17.894964911000073],[-76.28648841099988,17.875881252000084],[-76.30736243399994,17.87010325700004],[-76.32518469999991,17.87449778900009],[-76.31822669199994,17.879299221000082],[-76.31541907499988,17.882717190000108],[-76.31151282499987,17.894964911000073],[-76.32957923099991,17.88865794500012],[-76.3456111319999,17.86587148600009],[-76.36302649599986,17.86082591400006],[-76.37852942599997,17.865057684000078],[-76.3965551419999,17.872992255000042],[-76.41490637899994,17.877508856000105],[-76.44493567599991,17.8667666690001],[-76.52354895699992,17.860256252000084],[-76.57900956899988,17.868312893000052],[-76.5870662099999,17.8679873720001],[-76.59459387899997,17.86660390800003],[-76.60277258999989,17.867621161000102],[-76.61314856699988,17.87449778900009],[-76.61766516799995,17.883530992000118],[-76.61969967399995,17.895086981000134],[-76.62271074099996,17.905015367000146],[-76.63052324099996,17.90924713700005],[-76.6385798819999,17.911607164000117],[-76.64395097599996,17.91722239800012],[-76.64858964799987,17.923895575000074],[-76.65477454299993,17.92914459800005],[-76.68480383999989,17.936021226000065],[-76.69229081899996,17.940008856000045],[-76.7076716789999,17.94594961100006],[-76.72842363199989,17.94476959800005],[-76.76463782499991,17.936590887000136],[-76.78010006399995,17.93480052300015],[-76.83226477799988,17.936590887000136],[-76.83226477799988,17.943426825000046],[-76.72240149599989,17.949611721000025],[-76.7293188139999,17.955959377000053],[-76.73436438699991,17.960598049000083],[-76.7474666009999,17.963446356000105],[-76.77765865799992,17.96385325700004],[-76.79816383499991,17.96341979500005],[-76.81905589499988,17.975272920000066],[-76.83682900899996,17.98635859600006],[-76.8499673899999,17.992276476000054],[-76.8530687729999,17.98196832600007],[-76.85776052599988,17.971398026000088],[-76.8701728939999,17.95804977500009],[-76.87400457499983,17.95034906900011],[-76.88715631699992,17.951856130000095],[-76.8910374889999,17.944502400000147],[-76.8949439559999,17.92168102600007],[-76.91282793799994,17.86128743200007],[-76.92609615799995,17.8433291690001],[-76.94212805899994,17.83356354400007],[-76.95531165299991,17.833441473000107],[-76.96401933499988,17.837225653000132],[-76.97207597599991,17.84243398600003],[-76.98306230399987,17.846584377000056],[-77.03831946499989,17.846584377000056],[-77.03831946499989,17.853989976000065],[-77.01720130099997,17.86082591400006],[-77.02798417899987,17.869818427000098],[-77.04149329299995,17.887152411000073],[-77.05199133999992,17.894964911000073],[-77.06419837099989,17.899481512000108],[-77.09300696499992,17.90249258000003],[-77.11910936299995,17.89380331600006],[-77.14165204099987,17.881133913000014],[-77.15807908699989,17.849874593000067],[-77.16197669199997,17.84076569200002],[-77.15440833199992,17.813055731000105],[-77.16169186099991,17.810288804000066],[-77.17438717399989,17.802923895000077],[-77.18171139199988,17.79999420800004],[-77.1791072259999,17.79474518400005],[-77.17735755099991,17.784613348000107],[-77.17491614499997,17.778265692000076],[-77.1856176419999,17.7829043640001],[-77.19635982999992,17.783392645000077],[-77.20677649599988,17.7798526060001],[-77.21646074099996,17.77212148600009],[-77.19888261599992,17.761786200000074],[-77.18032792899993,17.757879950000103],[-77.16087805899991,17.759426174000026],[-77.14073645699997,17.765285549000083],[-77.13060462099992,17.72768789300008],[-77.13365637899992,17.71043528900006],[-77.15811113199996,17.703192450000046],[-77.17894446499994,17.704169012000108],[-77.19758053299992,17.7081973330001],[-77.21605383999984,17.716701565000022],[-77.30288652299994,17.790838934000078],[-77.32087154899989,17.81244538000007],[-77.39561926999991,17.853949286000073],[-77.41771399599989,17.861721096000053],[-77.44102942599989,17.864650783000087],[-77.45946204299992,17.857407945000062],[-77.48062089799993,17.84373607000012],[-77.50182044199991,17.84194570500003],[-77.54548092399992,17.853989976000065],[-77.58836829299989,17.860988674000026],[-77.72386633999994,17.853583075000046],[-77.73070227799985,17.854803778000075],[-77.75153561099991,17.868312893000052],[-77.78673255099989,17.884955145000074],[-77.79556230399993,17.891546942000048],[-77.79991614499994,17.899115302000013],[-77.81029212099992,17.924750067000073],[-77.81236731699994,17.932847398000092],[-77.81615149599989,17.939195054000034],[-77.83405514199984,17.94529857000012],[-77.83967037699992,17.949611721000025],[-77.8411352199999,17.97060781500005],[-77.83934485599991,17.995835679000038],[-77.84557044199997,18.017035223000022],[-77.87100175699987,18.02594635600005],[-77.94033769399994,18.026516018000024],[-77.95628821499994,18.03217194200002],[-77.97996985599988,18.084458726],[-77.98786373599992,18.095363674000083],[-77.99644934799994,18.10101959800008],[-78.00641842399995,18.105861721000053],[-78.0143936839999,18.107855536000102],[-78.02057857999995,18.113104559000078],[-78.02538001199986,18.125189520000077],[-78.03148352799994,18.148871161000017],[-78.05028235599988,18.1851260440001],[-78.07518469999994,18.198431708000044],[-78.14879309799987,18.19668203300006],[-78.1937556629999,18.203924872000073],[-78.21019446499989,18.20408763200004],[-78.21959387899992,18.195868231000134],[-78.22728430899994,18.191839911000073],[-78.23403886599996,18.193182684000046],[-78.25865637899997,18.20262278900006],[-78.2611384759999,18.20408763200004],[-78.27513587099986,18.20624420800004],[-78.30589758999994,18.215643622000044],[-78.32315019399994,18.217718817000073],[-78.34072831899988,18.221869208000015],[-78.35773678299995,18.2327334660001],[-78.37026933499993,18.248114325000046],[-78.37466386599993,18.265570380000096],[-78.36913001199991,18.273871161000073],[-78.35431881399992,18.28384023600006],[-78.34732011599993,18.29222239800012],[-78.34439042899993,18.305365302000094],[-78.34581458199989,18.3355166690001],[-78.34390214799993,18.344061591000038],[-78.33629309799991,18.355902411000102],[-78.33543860599991,18.363430080000057],[-78.3319392569999,18.36737702000005],[-78.31639563699991,18.36859772300005],[-78.30663001199989,18.374660549000055],[-78.29869544199991,18.386379299000055],[-78.2884008449999,18.394354559000103],[-78.27163652299987,18.389064846000025],[-78.26130123599995,18.417385158000055],[-78.23062089799996,18.444240627000056],[-78.1949763659999,18.455471096000053],[-78.16926021999986,18.436835028000075],[-78.15440833199989,18.45351797100011],[-78.13853919199997,18.453843492000114],[-78.11998450399994,18.447333075000046],[-78.09723873599992,18.443060614000014],[-78.0325414699999,18.45062897300008],[-78.01097571499989,18.4505069030001],[-78.00015214799988,18.446682033000087],[-77.99242102799988,18.443996486000117],[-77.98135331899994,18.441351630000014],[-77.96996008999989,18.443060614000014],[-77.95982825399992,18.44989655200004],[-77.95885169199994,18.45644765800003],[-77.9591365229999,18.464097398000064],[-77.95295162699992,18.474432684000078],[-77.93028723899997,18.502020575000074],[-77.91999264199984,18.51117584800005],[-77.90233313699994,18.518784898000092],[-77.86188717399988,18.525091864000046],[-77.8160701159999,18.52342357000012],[-77.73554439999992,18.506699937000093],[-77.66454016799986,18.49192942900001],[-77.56725012899997,18.490179755000014],[-77.5242813789999,18.480210679000034],[-77.45498613199996,18.47532786700006],[-77.4288630849999,18.469224351000065],[-77.40827389199987,18.457342841000127],[-77.37653561099992,18.4651553410001],[-77.32530676999997,18.46503327000005],[-77.27261308499995,18.459377346000053],[-77.23631751199986,18.4505069030001],[-77.2318416009999,18.446030992000118],[-77.22813880099994,18.433661200000103],[-77.22329667899987,18.429388739000075],[-77.21743730399993,18.429348049000083],[-77.21202551999988,18.43178945500003],[-77.20885169199991,18.434963283000087],[-77.20962480399993,18.436835028000075],[-77.16494706899988,18.429388739000075],[-77.15941321499986,18.426214911000017],[-77.14256751199986,18.41209544500009],[-77.13735917899996,18.408921617000114],[-77.10472571499992,18.407863674000083],[-77.07034257699986,18.41335683800008],[-77.05199133999992,18.4163272160001],[-77.04002844999988,18.41347890800006],[-77.0191544259999,18.404120184000135],[-77.00731360599984,18.40208567900001],[-76.94815019399994,18.404486395000045],[-76.93661516099988,18.410295018000053],[-76.92033834599997,18.4121954660001],[-76.90711820799993,18.411205408000086],[-76.89491886399986,18.409251286000142],[-76.88782656899986,18.40055241300007],[-76.89091562999994,18.389946614000053],[-76.89094812399985,18.376440534000064],[-76.87978282499992,18.366768827000072],[-76.84421063799991,18.345446595000055],[-76.81275421399991,18.328009665000078],[-76.80762233099995,18.318308300000126],[-76.7983292309999,18.29205963700008],[-76.7923884759999,18.283392645000077],[-76.78282630099991,18.277818101000065],[-76.76463782499991,18.27301666900007],[-76.71288001199991,18.269191799000055],[-76.69570878799988,18.265570380000096],[-76.68101966099997,18.258124091000127],[-76.66197669199988,18.23981354400007],[-76.64732825399996,18.230780341000038],[-76.63036048099991,18.225734768000024],[-76.59715816799985,18.22774776300014],[-76.57977010499994,18.216029546000097],[-76.57420813699989,18.214667059000075],[-76.56920325399994,18.210109768000052],[-76.56305904899997,18.205959377000084],[-76.55479895699996,18.20408763200004],[-76.47972571499984,18.20408763200004],[-76.47447669199997,18.201076565000022],[-76.46662350199989,18.18675364800012],[-76.46300208199992,18.18235911700006],[-76.38939368399986,18.169175523000092],[-76.35114498599992,18.155991929000066],[-76.34626217399995,18.135199286000073],[-76.31786048099991,18.10927969000008],[-76.2958064439999,18.079169012000136],[-76.26374264199984,18.01235586100009]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Honduras","sov_a3":"HND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Honduras","adm0_a3":"HND","geou_dif":0,"geounit":"Honduras","gu_a3":"HND","su_dif":0,"subunit":"Honduras","su_a3":"HND","brk_diff":0,"name":"Honduras","name_long":"Honduras","brk_a3":"HND","brk_name":"Honduras","brk_group":null,"abbrev":"Hond.","postal":"HN","formal_en":"Republic of Honduras","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Honduras","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":2,"mapcolor13":5,"pop_est":7792854,"gdp_md_est":33720,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"HO","iso_a2":"HN","iso_a3":"HND","iso_n3":"340","un_a3":"340","wb_a2":"HN","wb_a3":"HND","woe_id":23424841,"woe_id_eh":23424841,"woe_note":"Exact WOE match as country","adm0_a3_is":"HND","adm0_a3_us":"HND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"HND.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62433834499993,13.252915757000096],[-87.6465551419999,13.249172268000066],[-87.6585587229999,13.250962632000054],[-87.66274980399993,13.25275299700013],[-87.66706295499995,13.256008205000084],[-87.66706295499995,13.262193101000065],[-87.66014563699994,13.262193101000065],[-87.66397050699995,13.267482815000122],[-87.67003333199995,13.278550523000163],[-87.67381751199987,13.283880927000125],[-87.65762285099993,13.289129950000117],[-87.64484615799998,13.29083893400012],[-87.61514238199996,13.290106512000179],[-87.6119685539999,13.282863674000069],[-87.61388098899994,13.267320054000066],[-87.62433834499993,13.252915757000096]]],[[[-87.62230383999989,13.368882554000066],[-87.61241614499988,13.366034247000115],[-87.58543860599994,13.371730861000103],[-87.5707901679999,13.372015692000133],[-87.5707901679999,13.36587148600016],[-87.58812415299991,13.357977606000176],[-87.57628333199995,13.318548895000106],[-87.59129798099988,13.304388739000089],[-87.63756262899997,13.319159247000158],[-87.6590063139999,13.331691799000069],[-87.65648352799988,13.34906647300015],[-87.64346269399991,13.367743231000118],[-87.6344294909999,13.373480536000102],[-87.62230383999989,13.368882554000066]]],[[[-85.68960527299987,15.94643789300015],[-85.68700110599988,15.935492255],[-85.67955481699988,15.935492255],[-85.68008378799988,15.94220612200003],[-85.67804928299994,15.945379950000088],[-85.67503821499994,15.947088934000094],[-85.67271887899996,15.949164130000113],[-85.65622070299995,15.948768477000057],[-85.64733440599991,15.935942688000138],[-85.6295631159999,15.922042590000059],[-85.60846394299995,15.907071985000028],[-85.56405479299991,15.888874601000012],[-85.48857766799995,15.869566580000125],[-85.43639440699991,15.87376296000015],[-85.36199054199994,15.88111003400009],[-85.25425015699992,15.88408499800012],[-85.19635478099985,15.907447770000045],[-85.12378296899993,15.958574594000181],[-85.07578023599984,15.986247321000107],[-84.99994869699987,15.987941799000154],[-84.9507741829999,15.972006975000012],[-84.85446430099992,15.9297506540001],[-84.73358944199992,15.89502935000017],[-84.67655175099986,15.876203025000066],[-84.66227681599995,15.865637092000055],[-84.66848061599987,15.853211763000061],[-84.68085407899986,15.83491673900012],[-84.6809392349999,15.819181622000187],[-84.68107992599988,15.79426675899999],[-84.66005391399995,15.774494092000124],[-84.64029712899989,15.771775004000018],[-84.61571324599988,15.779518356000084],[-84.61218850599994,15.799820681000185],[-84.60940910599993,15.808983062000108],[-84.5998703269999,15.808277578000016],[-84.59312922499993,15.79578789200009],[-84.57548515299996,15.783895482000117],[-84.55025536699992,15.787693059],[-84.52643280699988,15.784936377000108],[-84.47743654599992,15.778755998000136],[-84.46851640499992,15.789188903000152],[-84.45281117099998,15.795647751000145],[-84.4738673379999,15.80429307300004],[-84.4990332049999,15.80968325900015],[-84.57797454099995,15.822580437000042],[-84.60788738999986,15.835195009000145],[-84.63305496699991,15.84712532100015],[-84.64182970999985,15.862907079000037],[-84.60164559299987,15.854824790000023],[-84.4641675819999,15.829792031000053],[-84.37431545799993,15.820715618000108],[-84.31504191199986,15.817703802000109],[-84.29463838299992,15.811010146000157],[-84.24039439199989,15.767350999000186],[-84.16707050899991,15.709697431000123],[-84.05830609199992,15.620248106000176],[-83.95293320699994,15.532886512000104],[-83.89417073999991,15.485180693000146],[-83.8175349599999,15.439886786000088],[-83.79906165299988,15.429348049000126],[-83.78087317599989,15.421535549000126],[-83.74567623599992,15.41583893400015],[-83.73680579299989,15.411322333000099],[-83.72996985599988,15.401556708000143],[-83.72935950399992,15.39374420800007],[-83.7359106109999,15.38861725500014],[-83.75080318899987,15.38678620000016],[-83.76829993399991,15.393377997000144],[-83.80622311099992,15.422349351000136],[-83.83446204299989,15.431789455000157],[-83.85342363199989,15.444769598000148],[-83.86278235599994,15.448879299000012],[-83.89313717399992,15.449164130000142],[-83.90636145699995,15.451971747000087],[-83.91808020699995,15.463120835000112],[-83.91340084499991,15.464829820000105],[-83.90916907499991,15.467840887000122],[-83.90440833199992,15.46938711100016],[-83.9130753249999,15.481838283000071],[-83.9459529289999,15.517767645000063],[-83.9527888659999,15.517767645000063],[-83.96373450399997,15.512518622000172],[-83.97716223899997,15.520209052],[-83.99120032499991,15.531683661000145],[-84.00401770699995,15.537583726000078],[-84.02452551999991,15.535101630000055],[-84.03392493399993,15.528876044000086],[-84.04116777299996,15.520209052],[-84.05524654899989,15.510931708000141],[-84.06159420499992,15.515082098000091],[-84.08934485599991,15.524603583000086],[-84.07656816299996,15.535549221000153],[-84.07115637899992,15.541652736000131],[-84.06883704299986,15.548163153000033],[-84.07363847599993,15.550482489],[-84.08438066299996,15.552191473],[-84.09618079299992,15.552639065000093],[-84.10362708199989,15.551214911000116],[-84.10643469999985,15.540432033000016],[-84.10000566299993,15.52326080900009],[-84.08836829299992,15.504868882000054],[-84.07575436099995,15.49042389500009],[-84.07823645699997,15.48822663],[-84.07933508999992,15.487534898000048],[-84.08031165299991,15.48639557500003],[-84.08250891799989,15.48297760600012],[-84.08934485599991,15.48297760600012],[-84.11929277299987,15.539292710000083],[-84.13036048099991,15.551214911000116],[-84.14175370999988,15.553127346000068],[-84.15489661399994,15.55068594000015],[-84.1719457669999,15.545070705000128],[-84.18382727799994,15.545884507000052],[-84.20099850199995,15.549872137000039],[-84.21288001199991,15.551214911000116],[-84.20514889199988,15.528509833000086],[-84.19871985599988,15.520738023000161],[-84.18040930899994,15.51447174700003],[-84.18016516799989,15.506170966000141],[-84.18346106699991,15.494940497000144],[-84.18553626199994,15.48297760600012],[-84.17870032499994,15.48297760600012],[-84.17560787699995,15.498277085000085],[-84.15558834499987,15.507391669000143],[-84.14655514199985,15.535101630000055],[-84.13711503799993,15.538072007000054],[-84.1277970039999,15.532619533000044],[-84.11424719999984,15.49990469],[-84.0980525379999,15.473456122000115],[-84.09215247299994,15.450913804000137],[-84.1135961579999,15.441392320000134],[-84.12417558499993,15.430243231000118],[-84.11652584499993,15.404974677000068],[-84.09951738199996,15.377590236000103],[-84.08250891799989,15.360093492000146],[-84.05671139199987,15.346828518000123],[-84.03538977799988,15.34186432500016],[-84.02586829299989,15.351223049000096],[-84.03538977799988,15.38056061400012],[-84.02196204299989,15.370306708000086],[-84.01008053299994,15.356756903000116],[-84.00536048099994,15.341294664000188],[-84.01357988199992,15.325344143000095],[-83.9999080069999,15.308823960000112],[-83.98062089799986,15.30573151200012],[-83.93175208199997,15.31167226800015],[-83.93175208199997,15.304877020000118],[-83.94139563699994,15.305243231000132],[-83.94790605399993,15.30341217700007],[-83.95897376199989,15.298041083000115],[-83.95897376199989,15.291815497000144],[-83.95067298099991,15.274807033000087],[-83.93838456899994,15.259222723000093],[-83.92198645699993,15.247870184000119],[-83.9009903639999,15.243394273000147],[-83.8828018869999,15.245550848000148],[-83.85952714799988,15.25128815300013],[-83.83714758999989,15.259995835000112],[-83.82188880099991,15.270697333000127],[-83.83454342399996,15.282619533000085],[-83.87706458199992,15.304877020000118],[-83.88426673099988,15.311712958000143],[-83.88760331899991,15.318345445000103],[-83.89167232999995,15.323391018000136],[-83.9009903639999,15.325344143000095],[-83.91173255099991,15.326117255000112],[-83.9881485669999,15.352362372000128],[-84.00059973899994,15.360093492000146],[-84.02379309799997,15.392564195000134],[-84.03538977799988,15.401068427000068],[-84.02651933499993,15.408677476000108],[-84.01671301999991,15.41372304900014],[-83.99437415299988,15.421535549000126],[-83.90514075399994,15.383530992000118],[-83.89073645699997,15.363226630000126],[-83.88508053299998,15.352606512000179],[-83.87132727799985,15.342840887000136],[-83.85440019399988,15.33559804900011],[-83.82591712099986,15.329738674000083],[-83.81407630099991,15.32168203300013],[-83.80386308499988,15.310492255000126],[-83.79515540299988,15.298041083000115],[-83.80182857999995,15.293687242000118],[-83.80992591099997,15.286688544000127],[-83.81566321499994,15.284369208000072],[-83.81566321499994,15.278143622000114],[-83.79922441299993,15.274603583000127],[-83.78530839799987,15.284409898000163],[-83.77452551999997,15.285711981000162],[-83.76720130099994,15.256415106000132],[-83.76943925699993,15.219224351000049],[-83.76720130099994,15.209295966000141],[-83.75983639199987,15.202093817000119],[-83.75226803299992,15.202541408000116],[-83.74718176999988,15.209702867000145],[-83.74738521999983,15.222886460000096],[-83.73989824099988,15.222886460000096],[-83.73102779899992,15.203436591000099],[-83.72264563699987,15.20807526200012],[-83.70579993399988,15.237209377000084],[-83.69025631399987,15.245917059000163],[-83.66954505099994,15.251898505000085],[-83.63377844999994,15.256415106000132],[-83.62938391799986,15.261135158000142],[-83.63145911399995,15.283840236000103],[-83.6300349599999,15.291815497000144],[-83.62336178299995,15.29608795800007],[-83.6170141269999,15.295599677000085],[-83.60948645699995,15.293280341000111],[-83.54466712099986,15.280991929000065],[-83.5276586579999,15.284369208000072],[-83.5276586579999,15.278143622000114],[-83.5335994129999,15.272162177000098],[-83.53294837099986,15.268133856000134],[-83.52965247299994,15.263739325000145],[-83.5276586579999,15.256415106000132],[-83.5276586579999,15.226304429000109],[-83.53286699099986,15.211249091000097],[-83.54442298099991,15.204982815000134],[-83.55589758999986,15.209295966000141],[-83.56114661399994,15.226304429000109],[-83.56480872299989,15.231390692000133],[-83.57347571499989,15.234767971000153],[-83.58385169199988,15.236639716000113],[-83.59251868399987,15.237209377000084],[-83.59850012899989,15.233099677000139],[-83.60391191299993,15.224025783000128],[-83.61021887899989,15.209295966000141],[-83.61473548099994,15.204087632000052],[-83.61913001199991,15.200873114000103],[-83.62246660099996,15.195949611000131],[-83.62385006399984,15.185370184000176],[-83.62144934799989,15.176174221000108],[-83.61579342399989,15.174505927000096],[-83.60899817599997,15.177394924000126],[-83.60338294199997,15.18195221600017],[-83.60846920499989,15.19041575700011],[-83.60948645699995,15.196926174000113],[-83.60749264199993,15.202826239000144],[-83.60338294199997,15.209295966000141],[-83.59593665299988,15.209295966000141],[-83.59386145699996,15.184759833000127],[-83.58702551999994,15.1671817080001],[-83.57445227799987,15.160467841000141],[-83.55492102799988,15.168280341000141],[-83.54954993399991,15.174017645000106],[-83.54043535099993,15.188666083000115],[-83.5344945949999,15.195013739000146],[-83.52660071499994,15.199896552000125],[-83.48180091099991,15.21556224200019],[-83.48216712099992,15.219061591000086],[-83.48668372299997,15.22972239800012],[-83.4908748039999,15.235907294000086],[-83.49657141799989,15.240464585000124],[-83.50230872299994,15.246283270000092],[-83.5064998039999,15.256415106000132],[-83.50987708199992,15.270575262000165],[-83.51720130099991,15.289699611000131],[-83.52961178299995,15.301011460000126],[-83.54816646999984,15.291815497000144],[-83.57787024599989,15.309068101000065],[-83.59264075399994,15.312241929000123],[-83.61021887899989,15.304877020000118],[-83.61636308499996,15.31167226800015],[-83.61412512899989,15.315415757000096],[-83.61021887899989,15.325344143000095],[-83.62633216099997,15.327460028000104],[-83.66958574099993,15.342922268000123],[-83.67845618399987,15.349269924000152],[-83.68895423099988,15.360581773000135],[-83.70982825399994,15.367092190000122],[-83.72533118399986,15.375881252000097],[-83.71939042899993,15.394232489000146],[-83.70299231699991,15.402004299000138],[-83.68740800699993,15.39374420800007],[-83.67332923099988,15.380601304000107],[-83.66136633999986,15.373765367000175],[-83.65062415299994,15.370306708000086],[-83.54259192599994,15.315741278000118],[-83.40802975199996,15.266424872000128],[-83.35631262899993,15.22972239800012],[-83.34455318899987,15.210882880000083],[-83.3284399079999,15.14663320500014],[-83.31086178299995,15.106431382000054],[-83.28429114499991,15.06834544500016],[-83.25381425699987,15.044623114000144],[-83.13044186099992,14.997015692000074],[-83.13044447249342,14.997012021304869],[-83.14365413499993,14.994899801000159],[-83.1773988439999,14.996811829000178],[-83.19132564299989,14.994253845000172],[-83.21773230099987,14.982497457000179],[-83.26201900299988,14.983195089000091],[-83.26615311699993,14.982497457000179],[-83.27832291699994,14.987122498000149],[-83.28566097099991,14.992109274000198],[-83.2848858239999,14.99738026900013],[-83.27297440599997,15.003038839000167],[-83.31705440299996,15.00756052600019],[-83.33423681699992,15.006449483000095],[-83.34935217299991,14.996811829000178],[-83.35454565399993,15.010066834000085],[-83.36498429399987,15.016345521000176],[-83.37782588699997,15.021254781000122],[-83.39030574599994,15.030969950000156],[-83.39989172399996,15.013632508000143],[-83.41547216799998,14.996941020000122],[-83.4357293299999,14.985184631000124],[-83.45919042999996,14.982497457000179],[-83.46838883499996,14.987406719000118],[-83.48055863499988,15.005545146000143],[-83.48585546899992,15.010480245000096],[-83.49900712099988,15.01265065500017],[-83.50908402499992,15.011539612000178],[-83.51246883199994,15.006501160000196],[-83.50572505699992,14.996811829000178],[-83.51099605299996,14.990171407000075],[-83.51262386099997,14.984021911000113],[-83.51321813999994,14.968854879000089],[-83.52303666199992,14.977691548000095],[-83.52861771699995,14.973402405000114],[-83.5299096279999,14.961775207000157],[-83.52686071799997,14.948365174000115],[-83.5324934489999,14.951026509000144],[-83.54735042399992,14.955212301000174],[-83.54512833699991,14.95216339100014],[-83.5424411619999,14.945083720000126],[-83.54047745899996,14.941569723000072],[-83.55486934399997,14.937409770000144],[-83.57977738499994,14.918108623000194],[-83.60427201399996,14.909194437000167],[-83.60918127499991,14.898368225000127],[-83.61130000899989,14.884906514000164],[-83.61561499099987,14.872685038000157],[-83.62305639699989,14.872685038000157],[-83.63155717,14.883201192000115],[-83.6499539799999,14.888498027000153],[-83.67214900799993,14.889634908000163],[-83.69196691899992,14.886973572000128],[-83.71062211099988,14.87834360700019],[-83.71449784399994,14.867233175000166],[-83.70501521899988,14.838526917000166],[-83.71243078599989,14.838526917000166],[-83.7162031659999,14.847053528000087],[-83.72361873399993,14.851575216000114],[-83.73392818199991,14.852970480000094],[-83.74656306999995,14.852195333000097],[-83.7445218519999,14.836666565000158],[-83.76529577699995,14.82878590900013],[-83.8210546469999,14.825478618000133],[-83.81392329999994,14.81377390600015],[-83.80898819999989,14.808890483000125],[-83.80121089699989,14.803774516000132],[-83.81965938399992,14.803619486000086],[-83.83950313299991,14.797418315000101],[-83.85730566499993,14.787780661000083],[-83.86947546399995,14.77710947700018],[-83.87526322499991,14.784266663000125],[-83.87875138399997,14.786747132000102],[-83.88267879199992,14.787832337000097],[-83.88993933099991,14.790726216000095],[-83.88500423199989,14.781346944000134],[-83.88376399799992,14.77710947700018],[-83.89655391499991,14.780442606000177],[-83.91265112299996,14.797185771000143],[-83.92471756999996,14.803774516000132],[-83.92965266999991,14.780881857000109],[-83.92985937599994,14.7716576130001],[-83.92471756999996,14.76344106100008],[-84.02357458499992,14.758325094000085],[-84.04075699899997,14.760340474000131],[-84.04266902699989,14.768066101000128],[-84.04781083299991,14.770804952000162],[-84.0646831869999,14.77026234900012],[-84.07519934099994,14.771631775000102],[-84.07897172099987,14.77517161100016],[-84.08155554199996,14.779796651000112],[-84.1044482019999,14.793930156000158],[-84.11176041699989,14.793413392000119],[-84.12271582099994,14.784525045000107],[-84.1111144619999,14.761038106000113],[-84.10418981999992,14.751865540000123],[-84.09543066399993,14.743597310000085],[-84.09543066399993,14.736104228000142],[-84.10227779199991,14.7318667600001],[-84.10651525899996,14.732331848000115],[-84.11121781499992,14.734708964000163],[-84.11961523499991,14.736104228000142],[-84.1287361249999,14.734192200000123],[-84.1338520919999,14.730032247000096],[-84.13788285399997,14.725226339000187],[-84.1437998049999,14.72186737100017],[-84.16819108199991,14.714968567000197],[-84.18289302699992,14.713857523000101],[-84.1950111489999,14.718715108000126],[-84.21867895599993,14.74344228200013],[-84.22637874399993,14.749772644000158],[-84.23539628099988,14.754733582000199],[-84.24921972699994,14.759410298000178],[-84.26180293899995,14.758531799000137],[-84.26733231699987,14.746672058000115],[-84.26216467299994,14.699749858000159],[-84.26728063999994,14.67773569800009],[-84.28779618399992,14.667219544000131],[-84.29888077799993,14.667994690000143],[-84.32316870199992,14.67331736300018],[-84.33838741099994,14.674686788000159],[-84.34603552299993,14.679983622000092],[-84.35319270899997,14.705976868000148],[-84.36293371599993,14.715614523000168],[-84.37613704499992,14.696726787000143],[-84.39001216699998,14.671482849000185],[-84.40843481499988,14.64941701300009],[-84.44571936099993,14.636678772000124],[-84.47160925299994,14.62262278300011],[-84.48269384799997,14.619470520000148],[-84.49801590999992,14.62391469300016],[-84.50848038799987,14.632622172000127],[-84.51904821799994,14.63828074200016],[-84.53421525099995,14.633733215000133],[-84.53121801799995,14.653318583000143],[-84.5274197999999,14.660398254000171],[-84.60043859899994,14.662516989000151],[-84.62296952399997,14.667219544000131],[-84.66170100999992,14.683445943000137],[-84.6808471279999,14.685461325000176],[-84.69932145199994,14.674686788000159],[-84.71441097099992,14.708922424000148],[-84.7248496099999,14.725639750000198],[-84.74528763799992,14.73910146100016],[-84.74427994799993,14.752408142000164],[-84.74704463799988,14.764474590000148],[-84.7669400639999,14.766903381000121],[-84.76639746199996,14.768867086000142],[-84.75856848199993,14.778659770000102],[-84.75546789599989,14.78147613500016],[-84.77016984099996,14.805143942000198],[-84.79213232499993,14.821060283000122],[-84.81809973199998,14.828656718000088],[-84.84442887399996,14.827545675000179],[-84.90421850699991,14.81697784400012],[-84.92062577299995,14.807701925000101],[-84.9664627689999,14.764629618000187],[-84.98436865199997,14.752227275000124],[-84.99994828999994,14.74201598800016],[-85.00199031699995,14.740677592000097],[-85.01565873299987,14.72817189600009],[-85.02454707899997,14.712539775000138],[-85.02979223699992,14.675539449000096],[-85.0330478519999,14.66957082100008],[-85.03821549499992,14.667219544000131],[-85.05392513099989,14.663059591000192],[-85.048524944,14.653318583000143],[-85.02020625799992,14.633733215000133],[-85.0422204189999,14.61347605400013],[-85.0481632079999,14.605776266000134],[-85.02222163999994,14.605802104000135],[-85.02365718199988,14.602540872000134],[-85.02963720699998,14.588955587000157],[-85.06524226899987,14.554254862000134],[-85.08637792999988,14.544539693000104],[-85.1033536379999,14.556864522000138],[-85.11932165599993,14.573969422000088],[-85.1375375989999,14.578491109000124],[-85.14546992999993,14.564254252000156],[-85.14981075099992,14.536504008000108],[-85.15182613199995,14.485964457000177],[-85.15539180599993,14.479479065000122],[-85.1784911709999,14.455604553000128],[-85.17967972899993,14.449248352000112],[-85.1773542889999,14.433977966000157],[-85.1784911709999,14.427647603000139],[-85.20582800299994,14.407157899000168],[-85.18973079499997,14.396848450000164],[-85.17187658799992,14.381009623000152],[-85.15903499399994,14.361062520000145],[-85.15802730299995,14.338273214000154],[-85.16962866299991,14.321762594000162],[-85.190195883,14.309644470000165],[-85.2152072749999,14.301582947000085],[-85.23996028699992,14.29731964100013],[-85.2778132739999,14.29731964100013],[-85.28820023699993,14.295149231000138],[-85.31197139499997,14.283651225000199],[-85.32135066699993,14.281325786000167],[-85.32682836999992,14.275744731000158],[-85.33088496899992,14.269000957000129],[-85.33796463999994,14.260681050000159],[-85.34080684399993,14.253368836000092],[-85.34362320999989,14.250113221000106],[-85.34780900099992,14.249234721000148],[-85.35853186099993,14.250888367000115],[-85.3628726809999,14.250113221000106],[-85.37251033599992,14.241095683000138],[-85.38400834199987,14.226445414000167],[-85.39362015799996,14.2107616170001],[-85.40088069699993,14.185181783000145],[-85.40912308799997,14.16616485600018],[-85.42015600599987,14.14686370800014],[-85.43173152699991,14.132833557000126],[-85.45762141999987,14.113041483000146],[-85.47467464199987,14.10340382900013],[-85.51064143899994,14.093792013000126],[-85.51640336199992,14.080537008000121],[-85.51862544799994,14.064594828000097],[-85.52795304399987,14.050900574000165],[-85.54663407499991,14.044906108000134],[-85.56314591299994,14.042012281000154],[-85.57169714399996,14.04051361100015],[-85.59360795099991,14.033459778000136],[-85.60306473799997,14.01953298000015],[-85.61280574599994,14.009740295000185],[-85.64786820499995,13.999301657000146],[-85.64461258999995,13.988785503000187],[-85.64766149999988,13.987803650000131],[-85.65040035099994,13.987855327000133],[-85.65195064399987,13.986692607000123],[-85.65148555599993,13.98199005200014],[-85.65766088899991,13.98199005200014],[-85.66618750099994,13.984470520000116],[-85.68649633799996,13.967339783000154],[-85.69923457899992,13.961500346000077],[-85.71698543399992,13.962688904000103],[-85.72734655799994,13.965014344000137],[-85.73220414299995,13.95953664100014],[-85.73339269999988,13.937625834000187],[-85.74328873799996,13.907550151000123],[-85.74744868999991,13.888274842000085],[-85.7436763099999,13.879567363000206],[-85.72869014499992,13.875019837000181],[-85.72300573799996,13.863418478000128],[-85.72512447199995,13.847941386000128],[-85.73339269999988,13.831792501000137],[-85.7402931119999,13.825639142000112],[-85.74246191399996,13.82370513900014],[-85.74311460299995,13.823958222000115],[-85.74499405999993,13.82468699100019],[-85.75830074099994,13.83928558400008],[-85.77866125499989,13.840939230000117],[-85.80201900199992,13.84021576000012],[-85.82416235399987,13.847683004000146],[-85.84010453299999,13.866570740000085],[-85.84987137899992,13.887086283000158],[-85.86160192899992,13.904423727000164],[-85.8835644129999,13.913854675000138],[-85.8972069909999,13.913027853000116],[-85.90630204299995,13.909358826000116],[-85.91550044799995,13.90744679800018],[-85.92940140799993,13.912097677000146],[-85.93611934499994,13.91819549600011],[-85.95777176899995,13.946100769000097],[-86.02841345299996,13.99607187900017],[-86.03125565599993,14.02258188900008],[-86.02045528199996,14.04407928400012],[-86.02019689999992,14.055163879000133],[-86.0967296959999,14.04407928400012],[-86.11047562699994,14.03712880500012],[-86.1216894129999,14.027206930000133],[-86.12690873199992,14.01855112700018],[-86.13083614199986,14.008913473000161],[-86.13801916599994,13.996175232000098],[-86.14969803999989,13.984263815000162],[-86.16179032499988,13.978114319000099],[-86.17357255099996,13.973670146000174],[-86.18406286699994,13.966874695000143],[-86.21858272299991,13.914371440000167],[-86.28410843999993,13.845719299000123],[-86.29992142799992,13.821328023000191],[-86.30777624499987,13.791691589000138],[-86.31356400599991,13.776602072000143],[-86.32519120299989,13.763760478000151],[-86.34012569199993,13.75665496800012],[-86.35847082599992,13.752262472000126],[-86.41009558099994,13.749032695000153],[-86.41707189999994,13.750014547000205],[-86.4265286869999,13.752985942000123],[-86.43247147699992,13.757120056000147],[-86.4482327889999,13.772958883000143],[-86.46285721899997,13.770943502000192],[-86.47629309199993,13.764018860000121],[-86.49081416899989,13.759497172000179],[-86.5085391849999,13.764380595000205],[-86.5416637779999,13.782131450000136],[-86.58114457199991,13.779857687000131],[-86.66268998299998,13.764690654000105],[-86.70630489199992,13.770013326000154],[-86.72723384699992,13.768256327000174],[-86.74991979999989,13.757120056000147],[-86.76144364499991,13.749342753000134],[-86.7661978769999,13.745260315000124],[-86.76790319899996,13.739162496000162],[-86.7702286379999,13.725235698000176],[-86.77116759299989,13.707890404000139],[-86.77405269399995,13.654594015000098],[-86.77214066599993,13.645524801000121],[-86.76821325699987,13.640357158000128],[-86.76412956499993,13.637335555000133],[-86.75539750199997,13.63087453200015],[-86.75157344599992,13.62441497800009],[-86.75090165199995,13.608421122000138],[-86.75710282399993,13.57640757300014],[-86.7565860599999,13.559380188000205],[-86.7242882899999,13.439413351000127],[-86.72594193599988,13.423832906000186],[-86.7386543379999,13.396211853000182],[-86.74020463099995,13.381923320000112],[-86.73638057499991,13.371949768000192],[-86.7304377849999,13.36890085800016],[-86.72361649699994,13.367324727000137],[-86.71715694199989,13.361640320000092],[-86.70992224199992,13.348902079000126],[-86.70780350799991,13.342830099000182],[-86.70186071799992,13.314201355000193],[-86.70403112899993,13.298827616000125],[-86.71178259299992,13.285675965000152],[-86.72547684799994,13.273299459000098],[-86.73271527199994,13.268469503000148],[-86.73984289599994,13.263713481000181],[-86.7492996829999,13.26128468800013],[-86.75865311799996,13.264178569000109],[-86.81622066299991,13.291928813000155],[-86.83342891499987,13.293349915000135],[-86.84950028499995,13.28882822700011],[-86.86272945199994,13.279939880000185],[-86.91078853399998,13.239580587000134],[-86.91885005799988,13.229762065000159],[-86.92598140499993,13.216352031000111],[-86.9332161049999,13.188188375000067],[-86.93492142799994,13.185527038000146],[-86.93306107699992,13.179713440000157],[-86.92551631799996,13.163642070000094],[-86.9237076419999,13.161135763000118],[-86.93233760599995,13.108529155000127],[-86.92980546099994,13.102224630000194],[-86.92417272999992,13.099795838000148],[-86.92024532099995,13.096178487000158],[-86.922932495,13.086385804000201],[-86.92799678599997,13.081243998000105],[-86.94272456899998,13.074060975000151],[-86.94840897699993,13.069694316000081],[-86.97181840099998,13.033882548000136],[-86.98318721499996,13.021867777000168],[-87.0087670499999,13.006080628000175],[-87.02961848999986,12.996081238000158],[-87.03504451599994,12.979777324000139],[-87.0468525799999,12.980552470000148],[-87.06984859299989,12.994375915000191],[-87.08465389099992,12.99592620900013],[-87.31403245531774,12.981555662238932],[-87.31362870999993,12.98183828300013],[-87.30394446499989,12.988470770000104],[-87.3008113269999,13.00124746300014],[-87.29356848899995,13.011053778000159],[-87.28282630099994,13.018215236000117],[-87.26915442599991,13.023220119000158],[-87.26915442599991,13.029445705000112],[-87.29678300699993,13.030340887000106],[-87.31668046799993,13.034206447000116],[-87.33177649599992,13.042669989000144],[-87.34483801999991,13.05731842700007],[-87.3513484369999,13.067206122000172],[-87.35281327999986,13.072536526000135],[-87.35106360599988,13.08840566600017],[-87.34471594999994,13.090765692000119],[-87.31407630099991,13.095404364000146],[-87.30394446499989,13.098334052000084],[-87.36180579299989,13.113348700000103],[-87.3945613269999,13.116848049000097],[-87.4131160149999,13.111354885000154],[-87.41934160099987,13.111354885000154],[-87.42210852799994,13.149929104000137],[-87.43578040299988,13.189398505000097],[-87.45506751199991,13.224310614000116],[-87.47459876199989,13.249172268000066],[-87.48082434799994,13.265163479000165],[-87.48204505099994,13.265936591000083],[-87.4845271479999,13.27008698100012],[-87.49034583199995,13.269720770000104],[-87.49697831899991,13.268337307000124],[-87.50194251199986,13.269598700000131],[-87.50890051999994,13.278631903000147],[-87.51223710799988,13.286688544000171],[-87.51048743399987,13.294948635000166],[-87.50194251199986,13.304388739000089],[-87.4934382799999,13.309759833000143],[-87.47667395699989,13.31732819200009],[-87.46776282499988,13.32489655200014],[-87.44778398299987,13.35256582200013],[-87.44041907499988,13.35903554900014],[-87.4269099599999,13.356024481000132],[-87.41112219999988,13.359808661000073],[-87.37901770699989,13.372015692000133],[-87.38040117099987,13.380438544000086],[-87.38036048099988,13.386297919000128],[-87.37901770699989,13.393133856000148],[-87.39378821499989,13.406439520000076],[-87.40062415299991,13.411159572000173],[-87.40977942599997,13.413031317000147],[-87.42983964799993,13.4093692080001],[-87.4377742179999,13.411037502000113],[-87.4472957019999,13.42047760600012],[-87.46438554599985,13.408270575000145],[-87.46963456899994,13.40298086100016],[-87.47459876199989,13.393133856000148],[-87.47642981699994,13.379706122000158],[-87.47305253799993,13.37246328300013],[-87.47227942599991,13.367010809000092],[-87.48204505099994,13.35903554900014],[-87.48827063699991,13.358303127000113],[-87.52297929599987,13.35903554900014],[-87.53860429599986,13.355292059000107],[-87.54759680899988,13.355007229000165],[-87.55715898299988,13.35903554900014],[-87.55715898299988,13.36587148600016],[-87.54283606699988,13.36587148600016],[-87.54283606699988,13.372015692000133],[-87.5617976549999,13.376003322000116],[-87.58132890499988,13.382879950000117],[-87.59886633999992,13.384344794000171],[-87.61180579299992,13.372015692000133],[-87.61856035099996,13.372015692000133],[-87.6167292959999,13.381862697000159],[-87.60558020699996,13.406805731000176],[-87.6192520819999,13.41201406500008],[-87.62242591099997,13.423000393000137],[-87.61856035099996,13.451198635000111],[-87.62401282499991,13.46625397300012],[-87.63646399599992,13.463690497000115],[-87.65038001199991,13.452297268000152],[-87.66014563699994,13.440944729000178],[-87.65099036399997,13.41254303600006],[-87.66567949099996,13.386013088000183],[-87.69277910099989,13.366481838000112],[-87.72097734299987,13.35903554900014],[-87.73888098899991,13.362372137000165],[-87.7622371079999,13.37636953300013],[-87.78136145699989,13.382595119000186],[-87.78294837099992,13.38943105700011],[-87.78294837099992,13.396266994000129],[-87.78648841099991,13.399359442000103],[-87.79625403599994,13.399847723000091],[-87.80300859299986,13.40139394700013],[-87.81715873492499,13.406557936205274],[-87.73841243499996,13.441687113000143],[-87.72115250699996,13.460833232000141],[-87.71880122899995,13.47367482500013],[-87.72058406599993,13.486981507000152],[-87.72572587199991,13.498970439000104],[-87.7334256599999,13.507703756000167],[-87.74797257499995,13.513233135000178],[-87.76915991199994,13.506360168000114],[-87.7794693609999,13.509977519000188],[-87.78993383899987,13.532818502000111],[-87.78406856399997,13.560465394000119],[-87.76009069899996,13.616947734000163],[-87.75781693599993,13.635163676000118],[-87.75864375799995,13.672267355000187],[-87.75502640799995,13.689914857000176],[-87.74631892999992,13.702188009000125],[-87.73629370099991,13.711463929000146],[-87.73135860299996,13.722212627000161],[-87.73784399399992,13.738774923000163],[-87.73280554199994,13.755104676000187],[-87.71262589599988,13.800450745000205],[-87.70360835799991,13.814997661000161],[-87.7212041839999,13.821896464000147],[-87.74952872299993,13.845627388000153],[-87.76533585599988,13.858870952000188],[-87.77143367499994,13.862126567000175],[-87.78541215099995,13.867397562000107],[-87.79060563199992,13.870472310000139],[-87.79871883199996,13.88233205100016],[-87.8084598399999,13.908635356000119],[-87.81789078799997,13.915870057000177],[-87.83290279199994,13.915249939000205],[-87.84295385799996,13.90711090100011],[-87.85122208799993,13.896878968000124],[-87.86091141799994,13.890186870000106],[-87.87054907299998,13.889566752000135],[-87.89010860299999,13.893545837000204],[-87.9001079919999,13.894140117000175],[-87.90788529499991,13.891530457000156],[-87.9207527259999,13.881866963000135],[-87.92532609099996,13.879619039000133],[-87.9321732179999,13.881556905000153],[-87.9469268399999,13.890910339000186],[-87.95259489399992,13.892029035000121],[-87.95478165699987,13.892460633000127],[-87.96974198499991,13.888533223000152],[-88.01532059799989,13.866364035000132],[-88.02364050299988,13.89116872200016],[-88.039970256,13.910133972000125],[-88.0583929039999,13.926489563000159],[-88.07288814399993,13.943413595000067],[-88.08753841199993,13.980543112000149],[-88.09903641799993,13.989819031000167],[-88.12539139799992,13.991265971000159],[-88.17753291899999,13.985193990000113],[-88.19347509799991,13.985555725000111],[-88.2176588129999,13.99079670500015],[-88.22006262299993,13.991317647000173],[-88.23507462599991,13.9928679410001],[-88.24489314799987,13.989250591000115],[-88.24535823599989,13.98589162200011],[-88.24437638399993,13.96609954800013],[-88.24230932699999,13.962533875000162],[-88.23336930399995,13.95449819000008],[-88.23158646699996,13.951811015000146],[-88.23636653699995,13.93814259900013],[-88.2427744149999,13.936695658000133],[-88.2516369219999,13.938090922000114],[-88.26360001599997,13.933104146000161],[-88.27016292299996,13.926024475000133],[-88.27417077299992,13.919119724000112],[-88.27752681499996,13.913337911000099],[-88.2854333089999,13.905974019000098],[-88.29631119799987,13.902356669000199],[-88.30842932199994,13.901478170000159],[-88.3192555339999,13.897602437000117],[-88.32620601499988,13.885070903000111],[-88.33261389199993,13.88770640100013],[-88.34057206299988,13.89003184000016],[-88.34855607199995,13.891375427000128],[-88.35506730199991,13.890962016000117],[-88.35819372599988,13.887396343000148],[-88.35891719599996,13.881195170000153],[-88.35891719599996,13.875278219000151],[-88.3601057539999,13.872384338000158],[-88.36741796899987,13.87310780900016],[-88.38336014899991,13.879257304000134],[-88.3929461269999,13.879774068000174],[-88.43322790599987,13.871066590000112],[-88.45144384799991,13.863573507000169],[-88.47015071599988,13.852488912000155],[-88.49681575499994,13.851197002000106],[-88.48800492399994,13.865330506000149],[-88.4886767169999,13.881350200000098],[-88.49950293099997,13.907601827000134],[-88.5022934579999,13.917110291000112],[-88.50022639999993,13.931863912000125],[-88.49681575499994,13.944033712000133],[-88.49609228599994,13.955686747000186],[-88.50119810599998,13.9666004380001],[-88.5022934579999,13.968941752000191],[-88.49818257699997,13.968409755000138],[-88.49790096099991,13.968373311000148],[-88.49708534899995,13.969068092000072],[-88.49650569699993,13.969561870000163],[-88.49619563899995,13.971990662000124],[-88.49542049199992,13.975142924000181],[-88.50436051499989,13.983695374000206],[-88.5140498459999,13.987648621000174],[-88.55810400399987,13.990904236000162],[-88.63386165399996,14.014468689000166],[-88.65933813599989,14.016122335000205],[-88.68481461599991,14.012298279000092],[-88.69093827299989,14.009998678000159],[-88.690811758,14.011789871000119],[-88.69044734699995,14.016949157000141],[-88.69269527299994,14.025294902000113],[-88.6976562099999,14.03201283800014],[-88.70486507199988,14.038033142000174],[-88.70951595099993,14.039686788000125],[-88.73096166999994,14.042477316000173],[-88.74664546699992,14.052476705000103],[-88.74607702699987,14.066558533000117],[-88.74005672299992,14.083017477000098],[-88.73922989999998,14.099941508000184],[-88.74638708599994,14.1113361620001],[-88.7551204019999,14.110457662000142],[-88.76542985099991,14.104256490000166],[-88.77734126899993,14.09973480200014],[-88.82118872099997,14.102938741000116],[-88.83875870799994,14.100406596000125],[-88.84532161499992,14.128621928000186],[-88.8603336189999,14.15851674400011],[-88.8812625729999,14.18419993100018],[-88.90601558499992,14.199573670000163],[-88.92164770499996,14.199883728000145],[-88.93562618099995,14.194018453000153],[-88.94748592199996,14.187274679000126],[-88.95717525299992,14.185181783000145],[-88.965986084,14.191382955000137],[-88.96924169999998,14.202002462000124],[-88.97022847599993,14.210176262000175],[-88.9707919919999,14.214844056000116],[-88.97456437199995,14.227375590000122],[-88.98353023299987,14.242129211000131],[-88.99275447599987,14.252955424000163],[-89.01812760499988,14.271688131000161],[-89.0226234539999,14.280653992000095],[-89.02660253999997,14.311298117000204],[-89.0329845789999,14.323674622000084],[-89.04897843499995,14.331451925000096],[-89.08308487999992,14.335327657000148],[-89.09447953299991,14.34486195900014],[-89.09055212399994,14.354706320000119],[-89.0896736249999,14.364886577000092],[-89.09184403599991,14.374834290000178],[-89.09683081099988,14.384006856000084],[-89.10256689499991,14.391525777000126],[-89.10747615599996,14.395969951000124],[-89.11334143099995,14.39705515600012],[-89.12217810099995,14.394678040000173],[-89.13011043299991,14.386745707000115],[-89.1445023199999,14.359718933000167],[-89.15398494499999,14.351295675000186],[-89.20015783699992,14.36467987000013],[-89.22553096599992,14.38214650500008],[-89.27653560499999,14.39274017300015],[-89.30756730199991,14.40705454600014],[-89.34620628999991,14.413075726000157],[-89.36162085,14.415477804000131],[-89.36379125999989,14.446561178000165],[-89.36198258499991,14.462400004000173],[-89.35549719299993,14.475448303000121],[-89.34526525899994,14.481959534000097],[-89.32304439299992,14.487463074000173],[-89.31480200199988,14.495963847000096],[-89.30485428899996,14.513352966000127],[-89.29092749,14.528003235000197],[-89.2596115719999,14.554254862000134],[-89.25054235899992,14.565184428000109],[-89.24568477499992,14.572987570000121],[-89.23811417699994,14.577948507000173],[-89.22108679199991,14.580093079000152],[-89.2088136399999,14.577948507000173],[-89.18369889399995,14.569525248000089],[-89.17214921099992,14.570403747000128],[-89.16039282299994,14.581281637000172],[-89.15574194399997,14.597843934000167],[-89.1552251799999,14.615594788000108],[-89.15941097099997,14.665979309000178],[-89.15584529599998,14.672257995000095],[-89.14522578999988,14.683445943000137],[-89.14269364499992,14.691274923000064],[-89.1445023199999,14.708302308000102],[-89.1462132339999,14.710857664000144],[-89.15052262499994,14.717294007000133],[-89.15966935299994,14.725122986000159],[-89.17054724099998,14.738791403000162],[-89.18940913999992,14.783000590000185],[-89.19881425,14.798090108000094],[-89.21896805899993,14.821680400000105],[-89.22767553799991,14.834573670000095],[-89.2324297689999,14.848500468000081],[-89.23144791699994,14.867310690000181],[-89.22361893799989,14.879015401000174],[-89.19881425,14.89981516500012],[-89.18921495599992,14.913059034000185],[-89.18152848299988,14.923663839000199],[-89.1691519779999,14.952060038000127],[-89.1691003009999,14.978415019000181],[-89.18858231699997,14.996088359000082],[-89.17276932899998,15.042209575000115],[-89.16080623499994,15.060244649000111],[-89.14694031899992,15.071284391000148],[-89.14052323499993,15.076393534000188],[-89.1098274339999,15.091457214000101],[-89.0082832439999,15.124400940000141],[-88.97342749099994,15.14039479600018],[-88.8470269369999,15.235298564000175],[-88.76089940199998,15.299961814000142],[-88.67419510899992,15.365058086000133],[-88.58737870299993,15.430299581000055],[-88.500019694,15.495902812000095],[-88.500019694,15.495954489000027],[-88.4674339359999,15.520739666000125],[-88.39899226999994,15.57279734300009],[-88.35256099499995,15.616903178000157],[-88.32230444399991,15.667261861000055],[-88.31667171299998,15.674599914000126],[-88.29558772899993,15.675013326000155],[-88.27969722499995,15.680749410000105],[-88.26499527999994,15.688604228000045],[-88.24776119099997,15.695683899000173],[-88.24158585599989,15.688242493000146],[-88.23491959699996,15.70157501300015],[-88.23574641999998,15.71242706300002],[-88.23261999599994,15.721418762000056],[-88.22092213512124,15.725647337926107],[-88.21507727799991,15.723211981000118],[-88.16974850199992,15.69196198100015],[-88.14525305899988,15.68451569200006],[-88.11888587099989,15.695868231000064],[-88.06090247299989,15.755764065000093],[-88.0362849599999,15.770941473000065],[-88.04161536399997,15.786688544000029],[-88.03160559799996,15.789862372000087],[-87.9922582669999,15.784613348],[-87.93390865799996,15.818793036],[-87.92666581899996,15.83234284100014],[-87.92454993399986,15.842189846000094],[-87.93016516799995,15.846747137000035],[-87.94131425699987,15.849839585000112],[-87.95042883999984,15.85691966400016],[-87.95457923099991,15.863999742000132],[-87.95099850199992,15.86717357000019],[-87.90876217399992,15.8680687520001],[-87.89195716099991,15.872951565000063],[-87.87555904899989,15.884263414000046],[-87.84605872299991,15.893866278000033],[-87.76008053299992,15.899562893],[-87.74209550699987,15.904486395000063],[-87.73631751199991,15.918605861000103],[-87.72834225199995,15.921006578000132],[-87.72215735599988,15.922919012000094],[-87.70433508999992,15.920721747000115],[-87.68748938699991,15.914984442000119],[-87.64305579299989,15.889227606000091],[-87.62604732999992,15.887681382000054],[-87.62604732999992,15.893947658000016],[-87.63630123599995,15.903509833],[-87.62596594999985,15.914943752000125],[-87.59129798099988,15.935492255],[-87.61042232999993,15.910101630000058],[-87.61729895699993,15.894598700000145],[-87.60863196499984,15.887681382000054],[-87.60313880099994,15.88076406500015],[-87.50963294199997,15.79865143400015],[-87.47940019399995,15.786037502000068],[-87.44733639199988,15.792141018000065],[-87.44176184799997,15.79775625200007],[-87.43154863199993,15.813950914000102],[-87.42682857999992,15.818793036],[-87.41714433499988,15.819525458000115],[-87.39118404899997,15.818426825000172],[-87.38585364499991,15.82249583500014],[-87.37995357999998,15.839504299000012],[-87.36497962099993,15.848334052000055],[-87.34508216099992,15.850327867000187],[-87.24176998599995,15.827378648000106],[-87.15172278599991,15.796861070000162],[-87.05899003799995,15.78701406500015],[-86.95250403599991,15.763332424000126],[-86.91685950399994,15.760402736000016],[-86.87873287699998,15.764146226000049],[-86.81737219999988,15.781887111000131],[-86.7996313139999,15.784613348],[-86.79686438699991,15.787583726000108],[-86.78018144399988,15.800197658000101],[-86.77635657499988,15.801988023000163],[-86.77065995999988,15.80654531500012],[-86.7584529289999,15.802313544000114],[-86.74644934799989,15.795599677000054],[-86.74156653599991,15.792141018000065],[-86.69908606699994,15.78864166900017],[-86.50381425699992,15.805080471000068],[-86.47057044199994,15.804185289000158],[-86.43993079299992,15.792141018000065],[-86.43785559799991,15.790838934000147],[-86.41466223899997,15.776434637000092],[-86.39903723899988,15.772406317000117],[-86.3747452459999,15.770941473000065],[-86.35496985599987,15.773993231000148],[-86.33828691299993,15.781398830000155],[-86.24323482999995,15.838609117000104],[-86.21849524599986,15.86505768400009],[-86.20714270699989,15.87400950700011],[-86.17259680899988,15.887518622000085],[-86.13780676999994,15.895656643],[-85.9948624339999,15.90070221600014],[-85.98228919199994,15.904201565000122],[-85.97215735599988,15.90916575699999],[-85.93325761599988,15.936672268000038],[-85.91218014199987,15.959295966000084],[-85.90318762899994,15.983465887000179],[-85.91917883999994,16.003729559000092],[-85.9824926419999,16.012518622000144],[-86.01276607999998,16.019964911000145],[-86.00792395699989,16.03107330900015],[-85.98184160099993,16.033148505],[-85.9045515579999,16.0183833600001],[-85.8510048799999,16.008733665000147],[-85.81346594999991,16.004543361000017],[-85.76633174499992,15.991582225000075],[-85.71934973899988,15.979722398000048],[-85.70319576699993,15.97646719],[-85.69204667899989,15.971502997000142],[-85.68944251199991,15.960028387000122],[-85.68960527299987,15.94643789300015]]],[[[-86.88117428299992,16.10455963700015],[-86.87873287699998,16.0931664080001],[-86.89757239499991,16.093817450000145],[-86.9131973949999,16.090155341000084],[-86.94017493399984,16.079494533000155],[-86.96372050999989,16.06638783400008],[-86.97893522999995,16.077789236000015],[-86.99740469899993,16.083959264],[-86.98873517399991,16.095466383000158],[-86.9442512039999,16.116508342000156],[-86.9183650379999,16.12205638200011],[-86.90392005099994,16.12417226800012],[-86.89053300699993,16.12783437700007],[-86.87873287699998,16.127264716000113],[-86.87254798099991,16.12099844000006],[-86.88117428299992,16.10455963700015]]],[[[-86.20220896699986,16.422471073000153],[-86.22387007099988,16.412101045000114],[-86.24311217599993,16.41788107600017],[-86.2731858379999,16.410972052000048],[-86.29434160099993,16.41526927300005],[-86.31212317599991,16.41250234600001],[-86.3189184239999,16.409328518000123],[-86.33267167899993,16.40045807500009],[-86.33885657499991,16.397853908000098],[-86.34776770699995,16.39752838700015],[-86.36220588899988,16.394254366000055],[-86.38025356899993,16.38155760100007],[-86.41695974099991,16.364231547000102],[-86.45307127299986,16.351511373000122],[-86.49102177799992,16.32548782000005],[-86.52526554799988,16.31521238400002],[-86.5481526879999,16.312852734],[-86.56379927799989,16.29839045300004],[-86.58064996199994,16.28276700000019],[-86.60050418499992,16.269449111000043],[-86.60654222099988,16.285029102000024],[-86.5993328879999,16.309298272000163],[-86.57044680699994,16.33244040100014],[-86.53068158299993,16.356180794000025],[-86.4999998019999,16.368908871000045],[-86.44039043099994,16.396545291000095],[-86.37544422599993,16.41733268900016],[-86.33212549499987,16.42944809300012],[-86.30204736799996,16.4329033180001],[-86.26235147699988,16.43058202800016],[-86.23107686599994,16.428835329000137],[-86.18175088099986,16.42822514300009],[-86.20220896699986,16.422471073000153]]],[[[-85.89569953599997,16.436496074],[-85.94706822099994,16.403189644000136],[-85.95084725299998,16.41230787300016],[-85.94067911899995,16.429902700000167],[-85.92669127699989,16.45478223000016],[-85.91147268399996,16.462042911000154],[-85.8955698319999,16.488744596000046],[-85.88414466099994,16.5028343770001],[-85.8511312089999,16.517217619000107],[-85.83212822699994,16.510497688],[-85.81694999599993,16.498308834000014],[-85.8220611139999,16.48616301000014],[-85.84425413999995,16.483778923000145],[-85.84936685799994,16.469205087000162],[-85.86272049099992,16.452220959000087],[-85.88236256199994,16.451046980000015],[-85.89569953599997,16.436496074]]],[[[-83.91234290299988,17.411118882],[-83.92194576699984,17.40908437700007],[-83.9303279289999,17.40940989800019],[-83.93687903599987,17.41254303600006],[-83.94115149599989,17.418646552000055],[-83.93358313699986,17.417873440000122],[-83.92613684799997,17.416327216000084],[-83.91893469999985,17.414048570000105],[-83.91234290299988,17.411118882]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Country","admin":"Greenland","adm0_a3":"GRL","geou_dif":0,"geounit":"Greenland","gu_a3":"GRL","su_dif":0,"subunit":"Greenland","su_a3":"GRL","brk_diff":0,"name":"Greenland","name_long":"Greenland","brk_a3":"GRL","brk_name":"Greenland","brk_group":null,"abbrev":"Grlnd.","postal":"GL","formal_en":"Greenland","formal_fr":null,"note_adm0":"Den.","note_brk":null,"name_sort":"Greenland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":57600,"gdp_md_est":1100,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"GL","iso_a2":"GL","iso_a3":"GRL","iso_n3":"304","un_a3":"304","wb_a2":"GL","wb_a3":"GRL","woe_id":23424828,"woe_id_eh":23424828,"woe_note":"Exact WOE match as country","adm0_a3_is":"GRL","adm0_a3_us":"GRL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":6,"tiny":-99,"homepart":-99,"filename":"GRL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-43.7066951159999,59.90253327000006],[-43.65916907499991,59.883205471000124],[-43.639515753999945,59.869126695000105],[-43.644642706999974,59.854193427000055],[-43.657622850999864,59.8513858090001],[-43.669300910999965,59.85687897300012],[-43.67882239499997,59.86456940300015],[-43.685902472999906,59.86847565300014],[-43.69493567599994,59.865057684000035],[-43.72720292899987,59.84113190300017],[-43.73265540299991,59.841498114],[-43.73818925699993,59.84516022300015],[-43.74425208199991,59.84760163000008],[-43.75112870999993,59.84454987200008],[-43.75340735599991,59.83974844],[-43.75499426999994,59.82941315300008],[-43.75829016799988,59.82746002800006],[-43.77013098899994,59.82387929900006],[-43.780913865999935,59.81769440300009],[-43.79149329299989,59.81647370000009],[-43.80296790299994,59.82746002800006],[-43.796701626999976,59.839911200000145],[-43.79796301999988,59.84271881700003],[-43.80296790299994,59.847967841000084],[-43.783314581999974,59.86151764500006],[-43.768381313999924,59.87824127800009],[-43.767201300999915,59.89008209800015],[-43.78868567599994,59.888902085000105],[-43.80736243399991,59.879584052000084],[-43.825021938999924,59.863836981000034],[-43.834706183999884,59.84520091400005],[-43.82966061099995,59.82746002800006],[-43.84658769399993,59.81146881700015],[-43.87083899599992,59.79877350500008],[-43.89671790299994,59.79262929900001],[-43.91905676999997,59.79612864799999],[-43.932769334999904,59.80996328300011],[-43.93130449099993,59.82648346600017],[-43.905873175999915,59.87103913000006],[-43.90111243399991,59.87661367400006],[-43.90021725199992,59.88141510600015],[-43.90538489499993,59.888902085000105],[-43.91624915299991,59.89667389500012],[-43.92162024599988,59.89150625200004],[-43.924712693999965,59.88068268400004],[-43.92894446499988,59.87152741100014],[-43.94481360599991,59.86371491100006],[-43.964955206999946,59.85732656500012],[-43.97817949099987,59.84870026200004],[-43.97362219999994,59.83368561400001],[-44.00767981699997,59.817857164000074],[-44.053863084999875,59.80609772300009],[-44.096099412999905,59.80809153900013],[-44.11827551999997,59.83368561400001],[-44.1154679029999,59.84202708500008],[-44.11339270699989,59.86033763200013],[-44.11082923099988,59.86847565300014],[-44.104725714999915,59.87718333500013],[-44.07079016799986,59.906805731000176],[-44.026112433999884,59.93353913],[-44.01183020699989,59.94721100500011],[-43.96133378799988,59.97817617400006],[-43.91331946499989,59.971136786],[-43.86400305899991,59.949693101000044],[-43.80980383999986,59.93732330900012],[-43.78205318899998,59.9343122420001],[-43.75560462099989,59.92633698100015],[-43.7066951159999,59.90253327000006]]],[[[-44.51528886599988,59.95604075699999],[-44.54271399599995,59.94489166900017],[-44.57701575399991,59.946600653000175],[-44.59801184799994,59.964056708000115],[-44.58751380099997,59.977972723],[-44.55842037699991,59.986639716000106],[-44.52830969999988,59.98729075700006],[-44.51488196499988,59.97768789300006],[-44.51528886599988,59.95604075699999]]],[[[-43.22899329299986,59.98383209800015],[-43.20645097599989,59.970892645000156],[-43.2189021479999,59.97174713700015],[-43.231190558999856,59.971136786],[-43.24303137899991,59.96869538000006],[-43.254261847999906,59.964056708000115],[-43.22012285099993,59.95099518400015],[-43.236887173999946,59.94318268400015],[-43.27037512899988,59.94578685100005],[-43.285267706999946,59.940415757000025],[-43.299387173999975,59.92865631700011],[-43.30199133999989,59.92894114800005],[-43.302316860999895,59.93764883000013],[-43.309478318999936,59.95099518400015],[-43.30772864499994,59.95795319200014],[-43.31004798099991,59.96214427300007],[-43.31944739499993,59.964056708000115],[-43.32640540299991,59.96157461100001],[-43.32945716099991,59.955389716000056],[-43.3299861319999,59.940415757000025],[-43.3338923819999,59.927801825000024],[-43.343861456999974,59.91791413000011],[-43.357085740999935,59.913072007000146],[-43.37096106699991,59.91559479400014],[-43.3710017569999,59.920558986000096],[-43.369374152999875,59.92365143400018],[-43.36351477799994,59.92987702000015],[-43.32921301999997,59.99583567900008],[-43.316029425999915,60.00495026200015],[-43.29027258999989,60.00214264500012],[-43.25914466099988,59.99477773600001],[-43.22899329299986,59.98383209800015]]],[[[-44.00841223899988,59.99135976800002],[-44.06777910099996,59.95579661700004],[-44.0865779289999,59.95099518400015],[-44.102406378999945,59.94440338700018],[-44.13499915299991,59.91331614800007],[-44.151275193999936,59.90289948100017],[-44.16258704299991,59.91315338700012],[-44.16234290299988,59.926418361000124],[-44.15176347599993,59.964056708000115],[-44.15282141799989,59.98602936400015],[-44.15965735599988,59.984930731000084],[-44.16612708199989,59.97011953300012],[-44.1660863919999,59.95099518400015],[-44.185047980999904,59.912258205000015],[-44.19273841099994,59.90253327000006],[-44.20763098899988,59.89789459800015],[-44.24937903599993,59.89301178600008],[-44.279286261999914,59.87885163000006],[-44.30052649599989,59.875677802],[-44.34044348899994,59.87466054900004],[-44.35155188699988,59.87909577],[-44.39879309799994,59.909409897999986],[-44.371571417999945,59.91811758000016],[-44.34984290299988,59.93195221600014],[-44.31004798099988,59.964056708000115],[-44.27452551999991,59.98102448100009],[-44.26846269399991,59.98794179900001],[-44.26366126199991,60.00332265800012],[-44.252023891999926,60.010809637000115],[-44.23737545499989,60.01544830900003],[-44.22374426999994,60.02240631700011],[-44.200103318999936,60.02789948100015],[-44.02513587099992,60.018052476000136],[-43.99738521999993,60.010077216000084],[-44.00841223899988,59.99135976800002]]],[[[-43.372303839999915,59.95872630400009],[-43.39460201699992,59.938788153000175],[-43.41535396999993,59.92987702000015],[-43.43146725199992,59.93402741100009],[-43.43773352799985,59.94318268400015],[-43.44054114499991,59.95233795800014],[-43.44603430899994,59.95661041900014],[-43.459828253999945,59.95237864800013],[-43.47134355399987,59.94179922100009],[-43.47716223899994,59.92829010600012],[-43.47337805899991,59.91559479400014],[-43.49372311099989,59.911281643000144],[-43.514963344999984,59.909409897999986],[-43.507476365999906,59.91559479400014],[-43.50446529899992,59.929022528000026],[-43.487049933999934,59.964056708000115],[-43.49449622299991,59.970892645000156],[-43.4825740229999,59.9845238300001],[-43.477894660999965,60.005804755000085],[-43.46934973899994,60.026800848],[-43.44603430899994,60.03974030200011],[-43.41340084499998,60.036607164000046],[-43.37169348899994,60.02411530200013],[-43.35000566299996,60.00722890800013],[-43.37718665299988,59.99135976800002],[-43.362049933999884,59.979681708000115],[-43.372303839999915,59.95872630400009]]],[[[-44.23936926999993,60.09536367400012],[-44.22008216099991,60.06647370000004],[-44.21080481699994,60.058050848000086],[-44.20368404899989,60.05316803600004],[-44.20225989499994,60.04730866100006],[-44.21043860599994,60.03603750200007],[-44.21983801999996,60.031683661000095],[-44.2616267569999,60.02545807500003],[-44.29954993399991,60.00495026200015],[-44.30186926999997,60.000921942],[-44.30394446499989,59.991888739],[-44.308216925999915,59.98257070500013],[-44.31688391799991,59.97768789300006],[-44.328928188999924,59.97996653900004],[-44.33714758999991,59.98773834800014],[-44.34203040299988,59.99811432500014],[-44.34357662699992,60.008368231000176],[-44.338734503999945,60.01308828300007],[-44.31651770699989,60.02936432500012],[-44.31004798099988,60.03974030200011],[-44.339955206999946,60.033148505000135],[-44.36681067599994,60.01361725500005],[-44.375477667999945,59.99331289300006],[-44.3509822259999,59.9845238300001],[-44.36921139199998,59.965887762000094],[-44.399281378999945,59.95331452000011],[-44.42568925699993,59.95636627800011],[-44.43297278599993,59.9845238300001],[-44.42882239499991,59.99408600500008],[-44.41535396999993,60.014593817000126],[-44.409494594999956,60.044989325000095],[-44.40160071499989,60.05752187700001],[-44.37828528599991,60.08075592700011],[-44.408314581999946,60.076564846000096],[-44.424956834999904,60.054510809000085],[-44.43724524599995,60.02753327000014],[-44.454009568999965,60.008368231000176],[-44.471547003999916,60.00263092700003],[-44.48607337099995,60.00360748900009],[-44.494699673999946,60.01117584800012],[-44.49437415299993,60.02545807500003],[-44.48591061099998,60.03900788],[-44.46507727799991,60.05512116100006],[-44.460845506999895,60.07013580900018],[-44.46007239499997,60.09613678600006],[-44.455311652999875,60.11937083499999],[-44.44294186099992,60.13788483299999],[-44.41930091099991,60.149603583],[-44.3868708979999,60.149318752000156],[-44.337961391999926,60.14142487200009],[-44.29198157499987,60.128973700000145],[-44.26846269399991,60.114813544000135],[-44.25194251199994,60.108099677],[-44.23936926999993,60.09536367400012]]],[[[-44.00841223899988,60.04657623900011],[-44.0326228509999,60.04047272300015],[-44.13866126199994,60.04132721600014],[-44.153675910999965,60.046698309000085],[-44.16270911399988,60.057074286],[-44.18517005099988,60.093980210000055],[-44.19371497299991,60.103461005000085],[-44.20360266799992,60.10736725500005],[-44.21275794199991,60.10984935099999],[-44.24058997299994,60.12295156500006],[-44.24803626199994,60.12909577000012],[-44.244984503999945,60.147365627],[-44.22858639199992,60.16644928600001],[-44.20811926999997,60.17527903900004],[-44.19273841099994,60.162665106000155],[-44.17967688699986,60.156561591000084],[-44.17015540299985,60.146795966000134],[-44.16698157499991,60.134711005000135],[-44.17292232999992,60.12164948100015],[-44.16136633999989,60.108303127000156],[-44.14708411399991,60.09589264500012],[-44.11082923099988,60.073919989],[-44.08556067599994,60.06541575700008],[-44.032093878999916,60.05548737200018],[-44.00841223899988,60.04657623900011]]],[[[-43.62250729099989,60.12512848500016],[-43.17170162699992,60.073919989],[-43.15074622299997,60.07151927300008],[-43.130767381999895,60.06647370000004],[-43.13585364499991,60.060288804000045],[-43.14244544199991,60.05475495000005],[-43.15013587099991,60.0501976580001],[-43.158680792999945,60.04657623900011],[-43.140980597999935,60.03221263200005],[-43.15713456899991,60.01243724200013],[-43.1895238919999,59.99591705900015],[-43.22012285099993,59.99135976800002],[-43.23672441299988,59.99640534100014],[-43.246205206999974,60.00324127800015],[-43.25462805899994,60.01105377800015],[-43.26793372299994,60.019273179000045],[-43.28473873599995,60.02362702000015],[-43.32022050699996,60.026434637000094],[-43.33617102799988,60.03229401200003],[-43.34219316299996,60.039618231000055],[-43.34483801999993,60.04816315300014],[-43.35000566299996,60.05573151200012],[-43.36351477799994,60.06024811400007],[-43.36974036399991,60.05658600500011],[-43.375355597999885,60.048285223000114],[-43.38117428299995,60.041693427000055],[-43.388050910999965,60.04315827000012],[-43.395375128999945,60.04710521000011],[-43.42560787699995,60.05280182500008],[-43.50169837099986,60.07770416900003],[-43.54206295499992,60.08519114800002],[-43.57640540299988,60.08075592700011],[-43.57640540299988,60.073919989],[-43.52525794199991,60.069810289000074],[-43.49669348899991,60.06297435100013],[-43.480824347999885,60.05280182500008],[-43.481434699999845,60.03925202000011],[-43.488758917999945,60.02081940300009],[-43.49795488199993,60.00458405200005],[-43.504383917999945,59.99750397300009],[-43.518910285999965,59.991156317000055],[-43.52293860599994,59.96295807500009],[-43.541900193999936,59.95661041900014],[-43.552235480999855,59.95038483299999],[-43.55577551999994,59.937201239000146],[-43.564442511999935,59.925360419000086],[-43.59007727799991,59.92304108300011],[-43.60260982999989,59.92519765800005],[-43.61363684799994,59.928371486000096],[-43.623890753999966,59.933172919000164],[-43.63414466099991,59.940415757000025],[-43.640248175999886,59.94684479400011],[-43.64134680899994,59.951239325000095],[-43.641468878999916,59.95612213700014],[-43.647368943999936,59.973293361000096],[-43.64688066299996,59.98078034100014],[-43.64879309799991,59.98749420800003],[-43.658924933999884,59.994452216000084],[-43.670643683999856,59.99843984600007],[-43.67902584499993,59.9977888040001],[-43.68394934799997,59.992173570000126],[-43.685658331999974,59.98110586100007],[-43.68468176999991,59.96613190300015],[-43.686146613999966,59.956935940000086],[-43.6959529289999,59.95229726800015],[-43.720366990999935,59.95099518400015],[-43.77098548099994,59.95555247600002],[-43.79539954299989,59.96173737200017],[-43.8165583979999,59.970892645000156],[-43.84015865799992,59.97492096600002],[-43.89976966099994,59.992173570000126],[-43.91905676999997,60.00495026200015],[-43.881703253999916,60.02309804900006],[-43.862049933999856,60.029689846000124],[-43.77391516799986,60.048041083],[-43.76817786399988,60.04657623900011],[-43.72248287699995,60.06281159100017],[-43.79401607999992,60.06264883],[-43.82359778599996,60.05345286700005],[-43.85680091099988,60.05927155199999],[-43.87189693899998,60.06024811400007],[-43.910796678999866,60.04779694200015],[-43.9258520169999,60.04657623900011],[-43.94082597599993,60.04857005400008],[-43.95409094999987,60.05304596600006],[-43.96605383999989,60.06012604400008],[-43.97704016799994,60.07013580900018],[-43.98884029899992,60.07640208500015],[-44.02122962099992,60.08022695500012],[-44.090687628999945,60.100775458],[-44.11253821499988,60.11225006700012],[-44.11082923099988,60.12909577000012],[-44.12962805899994,60.14203522300014],[-44.12214107999998,60.15766022300012],[-44.099598761999886,60.1708031270001],[-44.07331295499998,60.17633698100009],[-43.62250729099989,60.12512848500016]]],[[[-45.262440558999884,60.13776276200003],[-45.28416907499985,60.136419989000146],[-45.30378170499992,60.14215729400011],[-45.29015051999997,60.16571686400006],[-45.2696833979999,60.18451569200003],[-45.245716925999936,60.189113674000154],[-45.22126217399992,60.17011139500015],[-45.22175045499989,60.16571686400006],[-45.22325598899994,60.161200262000094],[-45.22378495999993,60.156073309000085],[-45.22126217399992,60.149603583],[-45.262440558999884,60.13776276200003]]],[[[-45.287220831999946,60.38617584800015],[-45.24852454299989,60.36127350500003],[-45.232085740999906,60.381496486000046],[-45.20791581899991,60.39004140800014],[-45.18016516799992,60.38939036700011],[-45.15294348899991,60.38239166900003],[-45.13695227799991,60.36102936400006],[-45.14268958199989,60.34373607000008],[-45.17284094999991,60.31346263200008],[-45.180897589999944,60.27806224200007],[-45.18333899599988,60.27252838700003],[-45.19640051999997,60.26919179900001],[-45.22459876199994,60.25470612200017],[-45.2701309889999,60.24286530200011],[-45.31810462099989,60.20530833499999],[-45.34410559799997,60.19676341399998],[-45.40099036399991,60.18964264500012],[-45.411366339999915,60.194525458],[-45.38573157499985,60.217230536000145],[-45.39293372299996,60.23078034100011],[-45.38906816299988,60.247259833],[-45.37144934799994,60.278713283000016],[-45.36558997299991,60.29242584800012],[-45.36156165299994,60.30756256700012],[-45.35680091099993,60.374335028000175],[-45.34976152299986,60.38947174700017],[-45.33385169199994,60.39598216399998],[-45.30785071499989,60.39345937700015],[-45.287220831999946,60.38617584800015]]],[[[-45.041249152999875,60.38865794500008],[-45.05614173099991,60.38239166900003],[-45.09609941299988,60.38247304900001],[-45.11603756399995,60.38812897300009],[-45.13182532499991,60.40216705900003],[-45.13215084499992,60.43378327000011],[-45.09406490799995,60.447821356000176],[-45.00210527299993,60.450628973000114],[-45.00210527299993,60.44623444200014],[-45.00348873599989,60.44318268400014],[-45.008371548999975,60.436957098000086],[-45.02757727799994,60.40375397300006],[-45.041249152999875,60.38865794500008]]],[[[-45.06427975199995,60.32037995000017],[-45.09618079299986,60.31126536699998],[-45.11823482999995,60.31346263200008],[-45.1037491529999,60.32074616100008],[-45.089507615999906,60.33014557500012],[-45.08112545499995,60.34162018400014],[-45.084095831999946,60.355047919000135],[-45.056223110999895,60.35895416900014],[-45.0272517569999,60.36880117400007],[-45.004505988999966,60.38617584800015],[-44.995269334999904,60.41307200700011],[-44.989003058999856,60.43716054900012],[-44.97264563699994,60.45172760600018],[-44.95042883999989,60.45294830900009],[-44.92638098899994,60.436957098000086],[-44.93065344999988,60.43390534100008],[-44.93211829299992,60.43060944200006],[-44.93244381399995,60.42715078300016],[-44.93382727799994,60.42332591400004],[-44.93932044199993,60.41331614800008],[-44.95002193899998,60.402533270000056],[-44.971099412999905,60.385443427000105],[-44.99754798099988,60.356634833000086],[-45.008371548999975,60.347601630000085],[-45.06427975199995,60.32037995000017]]],[[[-45.39533443899992,60.42719147300015],[-45.406971808999934,60.42470937700013],[-45.425038214999944,60.42682526200003],[-45.440297003999916,60.430812893],[-45.430978969999956,60.43895091400013],[-45.41722571499986,60.443793036000024],[-45.404774542999945,60.44977448100003],[-45.39427649599986,60.47089264500012],[-45.382435675999915,60.47809479400017],[-45.36876380099997,60.481024481000084],[-45.35838782499988,60.477972723000015],[-45.352284308999884,60.45774974199999],[-45.36099199099996,60.44940827],[-45.37873287699995,60.44505442900011],[-45.39940344999988,60.436957098000086],[-45.39533443899992,60.42719147300015]]],[[[-45.79222571499989,60.65289948100012],[-45.80797278599994,60.64370351800015],[-45.825795050999915,60.639837958000136],[-45.84129798099991,60.64618561400006],[-45.85317949099996,60.64569733300008],[-45.91331946499994,60.62872955900012],[-45.94933020699992,60.62287018400014],[-45.97850501199985,60.62327708500008],[-45.99038652299993,60.63670482000008],[-45.97472083199994,60.669745184000114],[-45.97862708199994,60.68048737200002],[-45.955189581999946,60.68195221600008],[-45.811634894999884,60.67182038000014],[-45.78294837099992,60.66290924700009],[-45.79222571499989,60.65289948100012]]],[[[-46.04466712099995,60.65961334800006],[-46.06407630099994,60.649237372000144],[-46.08942623599989,60.64288971600002],[-46.10118567599997,60.642157294000114],[-46.11192786399988,60.64305247599999],[-46.122425910999965,60.64679596600003],[-46.13011633999989,60.65497467700013],[-46.139230923999975,60.656683661000145],[-46.149566209999875,60.65521881700008],[-46.165272589999944,60.64915599199999],[-46.173939581999946,60.649237372000144],[-46.19871985599991,60.67108795800003],[-46.20750891799986,60.67658112200003],[-46.17686926999994,60.68805573100017],[-45.90835527299989,60.70429108300011],[-45.90038001199994,60.70209381700012],[-45.89281165299991,60.697699286000145],[-45.968658006999924,60.697088934000085],[-45.98973548099988,60.69456614800008],[-46.007923956999946,60.68768952000006],[-46.04466712099995,60.65961334800006]]],[[[-46.569488084999904,60.74079010600017],[-46.63731848899991,60.73550039300002],[-46.642648891999954,60.738959052],[-46.63267981699997,60.752346096],[-46.605132615999935,60.76788971600012],[-46.56834876199985,60.774359442],[-46.53286699099996,60.769720770000085],[-46.509144660999965,60.752346096],[-46.53709876199988,60.752346096],[-46.553578253999966,60.74481842700014],[-46.569488084999904,60.74079010600017]]],[[[-46.31655839799993,60.73761627800012],[-46.3568416009999,60.718980210000105],[-46.398833787999905,60.725775458000065],[-46.42039954299989,60.718166408000016],[-46.40123450399994,60.71385325700011],[-46.34528561099998,60.69017161699999],[-46.34528561099998,60.669745184000114],[-46.44566809799994,60.677313544000164],[-46.45348059799994,60.67999909100015],[-46.45913652299993,60.68524811400012],[-46.46133378799993,60.69399648600002],[-46.46678626199986,60.6987165390001],[-46.479237433999884,60.70148346600016],[-46.50234941299993,60.703924872000115],[-46.461781378999916,60.73330312700001],[-46.39085852799994,60.76422760600015],[-46.319203253999916,60.782212632],[-46.27635657499994,60.77277252800017],[-46.26695716099991,60.770453192000026],[-46.25934811099995,60.76634349200007],[-46.25324459499998,60.76032135600014],[-46.248443162999905,60.752346096],[-46.31655839799993,60.73761627800012]]],[[[-47.31248938699994,60.80174388200008],[-47.30016028599991,60.79987213700009],[-47.2845759759999,60.80133698100014],[-47.269520636999886,60.80011627800014],[-47.2223201159999,60.78644440300011],[-47.244496222999885,60.768866278000175],[-47.28538977799991,60.77358633000009],[-47.35887610599991,60.79266998900005],[-47.350493943999936,60.80149974200013],[-47.34019934799994,60.80695221600017],[-47.31794186099998,60.81313711100013],[-47.31248938699994,60.80174388200008]]],[[[-46.98680579299992,60.77631256700006],[-47.00259355399996,60.77277252800017],[-47.01622473899991,60.776841539000124],[-47.037464972999885,60.79498932500003],[-47.05101477799985,60.80011627800014],[-47.04283606699994,60.81053294500013],[-47.03034420499995,60.814154364],[-47.016102667999945,60.81240469],[-47.00259355399996,60.80695221600017],[-46.99046790299988,60.79657623900006],[-46.98399817599997,60.78534577000006],[-46.98680579299992,60.77631256700006]]],[[[-47.160145636999914,60.80329010600011],[-47.18317623599998,60.79930247600013],[-47.20685787699989,60.802232164000074],[-47.2223201159999,60.81313711100013],[-47.21865800699996,60.82591380400008],[-47.19505774599992,60.82705312700001],[-47.166086391999926,60.82111237200008],[-47.14659583199994,60.81313711100013],[-47.160145636999914,60.80329010600011]]],[[[-46.36530514199995,60.78485748900008],[-46.40501868399985,60.78270091399999],[-46.42723548099991,60.80011627800014],[-46.35716712099992,60.82575104400011],[-46.33104407499988,60.827378648000135],[-46.32335364499994,60.826808986000074],[-46.316395636999886,60.825344143],[-46.30308997299994,60.820542710000105],[-46.32555091099994,60.79970937700013],[-46.36530514199995,60.78485748900008]]],[[[-47.913726365999906,60.820542710000105],[-47.89891516799994,60.801947333000115],[-47.88280188699986,60.80402252800006],[-47.865956183999856,60.81439850500014],[-47.84862219999988,60.820542710000105],[-47.77232825399991,60.81289297100009],[-47.756743943999936,60.80695221600017],[-47.76524817599997,60.79677969000012],[-47.77562415299988,60.78929271000005],[-47.79832923099991,60.779608466000084],[-47.78575598899991,60.7739118510001],[-47.77953040299988,60.77240631700006],[-47.77037512899997,60.77277252800017],[-47.77037512899997,60.76654694200011],[-47.80150305899988,60.76837799700008],[-47.81802324099996,60.767523505],[-47.82872473899988,60.76288483300006],[-47.827748175999915,60.75165436400005],[-47.80899003799993,60.74616120000003],[-47.773793097999885,60.741685289000074],[-47.75987708199991,60.73529694200015],[-47.74828040299991,60.74046458500005],[-47.73648027299993,60.75067780199999],[-47.722035285999965,60.759100653000026],[-47.70616614499994,60.76154205900018],[-47.65306555899994,60.759100653000026],[-47.684315558999906,60.74237702],[-47.71922766799992,60.729437567],[-47.755686001999976,60.72113678600011],[-47.80646725199992,60.71662018400014],[-47.82286536399994,60.712632554],[-47.83788001199986,60.707098700000174],[-47.8619685539999,60.69318268400009],[-47.88121497299994,60.686346747000165],[-47.90046139199998,60.68244049700017],[-47.913726365999906,60.684027411000116],[-47.90758216099994,60.69599030200014],[-47.89875240799998,60.70547109600015],[-47.88711503799996,60.711004950000174],[-47.87279212099989,60.71137116100009],[-47.89427649599992,60.730047919000135],[-47.921213344999956,60.72308991100008],[-47.948109503999945,60.70673248900006],[-47.96934973899994,60.697699286000145],[-48.03799394399993,60.695379950000095],[-48.070668097999885,60.70087311400012],[-48.07201087099989,60.718166408000016],[-48.086008266999926,60.71735260600009],[-48.10008704299989,60.718329169000164],[-48.11384029899989,60.720933335000076],[-48.12669837099992,60.725002346000124],[-48.11974036399994,60.732652085000055],[-48.111643032999886,60.73749420800014],[-48.102284308999884,60.739447333],[-48.091908331999974,60.73867422100006],[-48.09723873599992,60.74652741100015],[-48.10289466099993,60.749212958000115],[-48.109201626999976,60.75092194200012],[-48.11644446499989,60.755764065],[-48.12657630099994,60.76080963700003],[-48.13377844999988,60.75625234600001],[-48.13988196499989,60.74872467700014],[-48.14655514199992,60.74481842700014],[-48.16527258999989,60.74652741100015],[-48.169260219999956,60.75128815300014],[-48.16885331899996,60.75975169499999],[-48.17446855399996,60.77277252800017],[-48.18736731699988,60.78115469000012],[-48.23595130099994,60.80011627800014],[-48.22496497299997,60.807074286000145],[-48.20311438699994,60.808783270000156],[-48.16454016799986,60.80695221600017],[-48.013661261999886,60.82371653899998],[-47.983265753999916,60.837876695000105],[-47.96934973899994,60.84100983300008],[-47.92926998599992,60.83673737200017],[-47.91356360599994,60.83038971600014],[-47.913726365999906,60.820542710000105]]],[[[-47.08568274599995,60.837469794000114],[-47.1173396479999,60.82684967700006],[-47.16022701699998,60.83014557500008],[-47.19440670499998,60.84100983300008],[-47.17174231699991,60.852240302],[-47.10114498599995,60.868841864000146],[-47.08454342399989,60.86835358300005],[-47.08568274599995,60.837469794000114]]],[[[-47.22004146999993,60.85211823100012],[-47.244699673999946,60.84463125200013],[-47.25584876199986,60.85126373900003],[-47.247670050999936,60.868841864000146],[-47.22789466099994,60.87921784100014],[-47.2033585279999,60.88178131700014],[-47.18138587099989,60.87579987200002],[-47.194569464999944,60.865301825000145],[-47.22004146999993,60.85211823100012]]],[[[-42.64610755099994,60.881903387000115],[-42.69115149599995,60.87107982000013],[-42.768299933999884,60.86155833500011],[-42.90892493399994,60.87604401200018],[-42.95262610599991,60.87579987200002],[-42.94456946499989,60.87840403900013],[-42.92467200399989,60.88947174700017],[-42.90514075399991,60.89109935099999],[-42.85020911399994,60.90253327000014],[-42.77476966099988,60.90253327000014],[-42.624256964999915,60.895697333000115],[-42.64610755099994,60.881903387000115]]],[[[-47.149037238999966,60.88344961100015],[-47.17393958199991,60.88202545799999],[-47.15802975199989,60.896389065000065],[-47.13337154899989,60.904689846000146],[-47.11359615799997,60.913763739000146],[-47.11245683499993,60.93040599200002],[-47.071522589999915,60.93040599200002],[-47.08454342399989,60.91681549700005],[-47.09805253799988,60.899155992000125],[-47.1216934889999,60.88861725500006],[-47.149037238999966,60.88344961100015]]],[[[-47.029408331999946,60.90346914300012],[-47.05101477799985,60.895697333000115],[-47.03677324099996,60.91217682500012],[-47.01187089799993,60.926336981000034],[-46.98424231699991,60.93378327000003],[-46.96165930899994,60.93040599200002],[-46.961048956999974,60.92548248900012],[-46.962554490999935,60.924017645000056],[-46.965443488999966,60.92389557500008],[-46.96910559799991,60.923000393],[-46.98888098899994,60.91107819200006],[-47.029408331999946,60.90346914300012]]],[[[-46.17516028599994,60.90094635600012],[-46.306630011999914,60.85374583500013],[-46.33812415299994,60.84788646],[-46.39159094999988,60.860785223],[-46.39989173099994,60.85809967700011],[-46.402333136999886,60.8508161480001],[-46.4082738919999,60.84662506700009],[-46.41515051999991,60.84393952],[-46.42349199099988,60.83901601800015],[-46.434071417999945,60.827378648000135],[-46.45421301999997,60.815008856000084],[-46.466297980999876,60.8098005230001],[-46.48180091099987,60.80695221600017],[-46.51976477799991,60.80731842700008],[-46.538563605999855,60.80483633000015],[-46.553863084999904,60.79633209800012],[-46.56712805899994,60.78986237200002],[-46.58617102799994,60.787014065000086],[-46.62271074099988,60.78644440300011],[-46.63451087099995,60.78807200700014],[-46.641468878999945,60.79144928600006],[-46.64830481699994,60.7938500020001],[-46.66002356699994,60.79266998900005],[-46.6666560539999,60.78986237200002],[-46.66779537699995,60.7865257830001],[-46.664906378999916,60.783026434000085],[-46.66002356699994,60.779608466000084],[-46.70067298099994,60.76569245000012],[-46.75804602799985,60.75405508],[-46.81265214799993,60.753404039000074],[-46.84557044199991,60.77277252800017],[-46.687896287999905,60.827378648000135],[-46.551503058999856,60.853949286],[-46.483509894999884,60.890122789000095],[-46.20128333199992,60.95087311400006],[-46.21939042899993,60.93939850500011],[-46.20856686099992,60.934393622000165],[-46.186268683999884,60.93146393400014],[-46.170277472999885,60.92670319200014],[-46.16413326699989,60.91144440300017],[-46.17516028599994,60.90094635600012]]],[[[-46.4510798819999,60.92617422100006],[-46.48802649599994,60.92495351800015],[-46.5165909499999,60.9372419290001],[-46.50926673099993,60.95164622599999],[-46.51211503799988,60.96576569200003],[-46.52965247299991,60.99188873900005],[-46.5060115229999,60.999172268000095],[-46.47948157499994,60.994330145],[-46.42723548099991,60.97821686400011],[-46.43073482999992,60.976507880000106],[-46.43639075399989,60.97284577000006],[-46.44029700399989,60.97138092700011],[-46.426258917999945,60.93805573100003],[-46.4510798819999,60.92617422100006]]],[[[-48.10069739499993,61.08539459800013],[-48.044097459999925,61.06757233300005],[-48.062489386999886,61.06085846600011],[-48.08250891799994,61.05890534100014],[-48.1232804029999,61.06012604400017],[-48.15330969999988,61.055975653000026],[-48.16112219999985,61.05707428600008],[-48.18382727799991,61.066107489],[-48.19591223899991,61.067775783000016],[-48.23509680899994,61.054999091000134],[-48.28351803299992,61.05451080900018],[-48.33145097599993,61.0595563820001],[-48.360096808999906,61.06757233300005],[-48.355580206999946,61.07290273600001],[-48.35631262899997,61.076117255000085],[-48.36217200399991,61.07859935100002],[-48.373117641999976,61.081244208],[-48.34727942599997,61.096991278000054],[-48.29698645699992,61.10285065300009],[-48.24193274599994,61.101223049000076],[-48.16193600199995,61.08893463700009],[-48.11986243399991,61.088080145],[-48.10069739499993,61.08539459800013]]],[[[-48.893869594999984,61.259426174000154],[-48.927072719999984,61.254584052000084],[-48.94347083199989,61.25495026200017],[-48.955922003999916,61.259426174000154],[-48.95018469999985,61.2604841170001],[-48.93480383999991,61.265611070000105],[-48.91319739499991,61.28974030200013],[-48.84703528599991,61.30459219],[-48.77183997299991,61.30695221600014],[-48.72313391799989,61.29352448100015],[-48.73680579299992,61.287298895],[-48.820871548999975,61.285956122000115],[-48.84666907499991,61.27985260600003],[-48.878732876999976,61.26333242400015],[-48.893869594999984,61.259426174000154]]],[[[-48.51553300699993,61.3365746110001],[-48.53319251199994,61.32542552299999],[-48.586008266999926,61.31403229400011],[-48.583892381999895,61.318670966000134],[-48.580637173999975,61.32977936400006],[-48.57852128799996,61.33445872599999],[-48.63060462099992,61.31745026200012],[-48.64745032499991,61.31403229400011],[-48.666005011999914,61.31517161700004],[-48.715687628999916,61.33445872599999],[-48.776844855999855,61.327093817],[-48.812245245999854,61.327093817],[-48.83299719999988,61.3412946640001],[-48.72769120999993,61.36692942900007],[-48.68871008999986,61.36928945500012],[-48.55894934799988,61.372870184000085],[-48.52391516799989,61.361802476000044],[-48.51553300699993,61.3365746110001]]],[[[-42.44432532499985,61.45482005400014],[-42.468088344999956,61.43886953300004],[-42.49388587099989,61.45115794499999],[-42.48216712099989,61.464789130000106],[-42.44904537699995,61.48615143400017],[-42.41234290299985,61.498602606000084],[-42.39028886599996,61.48533763200008],[-42.41942298099991,61.47752513200008],[-42.44432532499985,61.45482005400014]]],[[[-49.09691321499989,61.63287995000003],[-49.12035071499986,61.62872955900018],[-49.144520636999886,61.63157786700013],[-49.216623501999976,61.656683661000116],[-49.19908606699993,61.66449616100003],[-49.18586178299989,61.67593008000015],[-49.164784308999884,61.701361395000085],[-49.150380011999914,61.70237864800004],[-49.12559973899993,61.69578685100008],[-49.10065670499991,61.68598053600014],[-49.08568274599989,61.67715078300008],[-49.08429928299992,61.65790436400012],[-49.08649654899989,61.64288971600011],[-49.09691321499989,61.63287995000003]]],[[[-42.16307532499985,61.79458242400001],[-42.149322068999936,61.79364655200011],[-42.13402258999989,61.79531484600012],[-42.12022864499996,61.79010651200004],[-42.117543097999885,61.778794664000074],[-42.13239498599995,61.77411530200014],[-42.16437740799995,61.77334219000012],[-42.2626846999999,61.75311920799999],[-42.28791256399995,61.759711005000085],[-42.27700761599988,61.761704820000105],[-42.24689693899995,61.77334219000012],[-42.17861894399993,61.821112372000144],[-42.186024542999945,61.82794830900017],[-42.17955481699994,61.83038971600003],[-42.16437740799995,61.841620184000114],[-42.1654353509999,61.85708242400012],[-42.14053300699996,61.86994049700014],[-42.107045050999915,61.877386786000145],[-42.082386847999906,61.87641022300007],[-42.09512285099987,61.86155833500002],[-42.09349524599995,61.847316799],[-42.089833136999886,61.83454010600015],[-42.0963435539999,61.82453034100018],[-42.11473548099994,61.817531643000095],[-42.17178300699993,61.80744049700002],[-42.16307532499985,61.79458242400001]]],[[[-42.27415930899994,62.56842682500012],[-42.23167883999989,62.55145905200014],[-42.160145636999914,62.58022695500009],[-42.12340247299991,62.560980536000145],[-42.13809160099993,62.54360586100015],[-42.142648891999954,62.52741120000012],[-42.137440558999884,62.51264069200012],[-42.12340247299991,62.499579169000135],[-42.148060675999915,62.49811432500008],[-42.17027747299997,62.49066803600011],[-42.192982550999915,62.48582591400013],[-42.21959387899997,62.492743231000034],[-42.21275794199994,62.499579169000135],[-42.22520911399996,62.50576406500013],[-42.26439368399991,62.51137929900003],[-42.28038489499991,62.5200056010001],[-42.28600012899989,62.530462958],[-42.2955623039999,62.56175364800008],[-42.302113410999965,62.57465241100009],[-42.28966223899994,62.58112213700017],[-42.27525794199988,62.58283112200008],[-42.26219641799992,62.57892487200009],[-42.25373287699995,62.56842682500012],[-42.27415930899994,62.56842682500012]]],[[[-42.34935462099995,62.813299872000144],[-42.298410610999916,62.801214911000145],[-42.236398891999976,62.80801015800007],[-42.006581183999856,62.782375393],[-41.98619544199988,62.76703522300014],[-42.03526770699992,62.76703522300014],[-41.99347896999998,62.75047435099999],[-41.863270636999914,62.74591705900003],[-41.863270636999914,62.73908112200003],[-41.884022589999915,62.73720937700015],[-41.9252009759999,62.72760651200017],[-41.94591223899991,62.72549062700006],[-41.967355923999946,62.72955963700003],[-42.00621497299994,62.748277085],[-42.027821417999945,62.75336334800013],[-42.1861466139999,62.73932526200016],[-42.205922003999916,62.73289622600005],[-42.17788652299993,62.724025783],[-42.14289303299992,62.721502997000094],[-42.076242641999926,62.72549062700006],[-42.04718990799994,62.732082424000126],[-42.03075110599988,62.73261139500011],[-42.02090410099996,62.72549062700006],[-42.022084113999966,62.71499258000009],[-42.03156490799998,62.70868561400005],[-42.044097459999875,62.70400625200012],[-42.054514126999976,62.69818756700009],[-42.04906165299994,62.69501373900012],[-42.03526770699992,62.68451569200015],[-42.11656653599991,62.68451569200015],[-42.13320878799996,62.68886953300012],[-42.16392981699993,62.70807526200009],[-42.1822810539999,62.71246979400009],[-42.21076412699992,62.71336497600008],[-42.21959387899997,62.71246979400009],[-42.22752844999994,62.70917389500015],[-42.23460852799988,62.704291083000086],[-42.23908443899995,62.699896552],[-42.239409959999875,62.69818756700009],[-42.25942949099993,62.69765859600001],[-42.27135169199988,62.70343659100016],[-42.274240688999924,62.715399481000084],[-42.267404751999884,62.73289622600005],[-42.31574459499993,62.70453522300012],[-42.33568274599989,62.69818756700009],[-42.337880011999886,62.69920482000005],[-42.34105383999986,62.7020531270001],[-42.34496008999986,62.70477936400006],[-42.34935462099995,62.70563385600015],[-42.35391191299988,62.703029690000065],[-42.36172441299988,62.693915106000176],[-42.36729895699997,62.69196198100003],[-42.37743079299994,62.68988678600003],[-42.38605709499993,62.68720123900012],[-42.39464270699994,62.688299872000165],[-42.40453040299988,62.69818756700009],[-42.40217037699992,62.701605536],[-42.41201738199993,62.70547109600001],[-42.41982988199993,62.71430084800006],[-42.42564856699988,62.72549062700006],[-42.41112219999994,62.746649481000176],[-42.40453040299988,62.75336334800013],[-42.445546027999875,62.75336334800013],[-42.405100063999924,62.78583405200002],[-42.363880988999966,62.81146881700006],[-42.34935462099995,62.813299872000144]]],[[[-41.87877356699994,62.81708405200008],[-41.891184048999975,62.815130927000105],[-41.905018683999884,62.81659577000009],[-41.91795813699988,62.81484609600009],[-41.86693274599989,62.803941148000106],[-41.84251868399994,62.8036156270001],[-41.81554114499997,62.80801015800007],[-41.83674068899995,62.789292710000026],[-41.87669837099992,62.778631903000175],[-41.91690019399991,62.779242255000106],[-41.939035610999895,62.794378973000114],[-41.952381964999915,62.81683991100011],[-41.95750891799992,62.829250393000144],[-41.95579993399991,62.83844635600003],[-41.93789628799996,62.84430573100017],[-41.91340084499993,62.84088776200014],[-41.87010657499985,62.82916901200017],[-41.87877356699994,62.81708405200008]]],[[[-41.506988084999875,62.93838125200001],[-41.51911373599998,62.92658112200003],[-41.544545050999886,62.893377997000115],[-41.553130662999905,62.88670482000007],[-41.56822669199991,62.878078518000144],[-41.58250891799992,62.87543366100006],[-41.58897864499991,62.88686758000004],[-41.58202063699991,62.900824286],[-41.547596808999884,62.921087958],[-41.53433183499996,62.93154531500009],[-41.556630011999886,62.93183014500011],[-41.596547003999945,62.91136302300005],[-41.612172003999945,62.91742584800015],[-41.6109919909999,62.918890692000026],[-41.6109919909999,62.92157623900001],[-41.61009680899991,62.924750067000055],[-41.58617102799985,62.95921458500008],[-41.58275305899994,62.96938711100004],[-41.58495032499993,62.978013414000124],[-41.58877519399993,62.98826732000005],[-41.590443488999966,62.99933502800009],[-41.58584550699993,63.01040273600013],[-41.56187903599988,63.01862213700003],[-41.52033443899998,63.0213890650001],[-41.47801673099988,63.01959870000011],[-41.451771613999966,63.01410553600008],[-41.46996008999994,62.98749420800014],[-41.47044837099995,62.975083726000115],[-41.451771613999966,62.97308991100005],[-41.506988084999875,62.93838125200001]]],[[[-50.66270911399994,63.04922109600015],[-50.679269985999895,63.02366771000005],[-50.69806881399995,63.03876373900006],[-50.75841223899988,63.068060614],[-50.74083411399994,63.076564846000124],[-50.703114386999886,63.088324286],[-50.68610592399991,63.09906647300003],[-50.66746985599991,63.10635000200012],[-50.645375128999945,63.104234117000104],[-50.63072669199994,63.09369538000005],[-50.634266730999904,63.07550690300014],[-50.647938605999855,63.06688060100008],[-50.66270911399994,63.04922109600015]]],[[[-41.33543860599988,63.054185289000095],[-41.38548743399991,63.04734935099999],[-41.43968665299985,63.05101146000013],[-41.49242102799985,63.06366608300003],[-41.50422115799992,63.068060614],[-41.52749589799993,63.08173248900011],[-41.503895636999886,63.097398179000024],[-41.46971594999991,63.1081403670001],[-41.40396074099993,63.11652252800017],[-41.37364661399994,63.11115143400012],[-41.331898566999904,63.08445872599999],[-41.30842037699992,63.07550690300014],[-41.33543860599988,63.054185289000095]]],[[[-50.69050045499989,63.113226630000135],[-50.69969641799986,63.110785223],[-50.71068274599992,63.11115143400012],[-50.72362219999994,63.10968659100015],[-50.744536912999905,63.10272858300005],[-50.765248175999886,63.09227122599999],[-50.789784308999906,63.08437734600001],[-50.81720943899995,63.08405182500009],[-50.843413865999906,63.091376044000086],[-50.86424719999988,63.10594310100011],[-50.87877356699991,63.12518952000006],[-50.88003495999993,63.138413804000116],[-50.86754309799991,63.14834219],[-50.81847083199997,63.16290924700006],[-50.81090247299994,63.166652736000074],[-50.79328365799992,63.18402741100006],[-50.78331458199992,63.190659898000106],[-50.771962042999945,63.19183991100014],[-50.7306208979999,63.17194245000015],[-50.71117102799991,63.134588934000085],[-50.68268795499989,63.123358466000084],[-50.69050045499989,63.113226630000135]]],[[[-50.60753333199989,63.11969635600003],[-50.6243383449999,63.11652252800017],[-50.63809160099993,63.11741771000008],[-50.65294348899988,63.120591539000124],[-50.666371222999885,63.12689850500009],[-50.67585201699998,63.136948960000055],[-50.679798956999974,63.148504950000174],[-50.676014777999846,63.15403880399999],[-50.65469316299988,63.16494375200007],[-50.60220292899993,63.20465729400017],[-50.571441209999925,63.212836005],[-50.53929602799988,63.198431708000115],[-50.53335527299986,63.1872419290001],[-50.52403723899991,63.18235911700005],[-50.51195227799991,63.17959219000009],[-50.497670050999915,63.174505927000055],[-50.48595130099994,63.167629299000154],[-50.4727270169999,63.15704987200008],[-50.46934973899988,63.14740631700012],[-50.487456834999875,63.1432152360001],[-50.57754472599992,63.13385651200015],[-50.60753333199989,63.11969635600003]]],[[[-41.212147589999915,63.16494375200007],[-41.212147589999915,63.157456773000106],[-41.32201087099989,63.16494375200007],[-41.296457485999895,63.147894598000036],[-41.216786261999935,63.133734442],[-41.1849259109999,63.123358466000084],[-41.24632727799991,63.123358466000084],[-41.27887936099995,63.12685781500009],[-41.35212154899992,63.125921942],[-41.38385982999998,63.13353099200005],[-41.43736731699988,63.156317450000145],[-41.46275794199991,63.17487213700014],[-41.462025519999884,63.19501373900003],[-41.435170050999915,63.210191148000014],[-41.40282141799989,63.21332428600008],[-41.301991339999915,63.19977448100011],[-41.212147589999915,63.16494375200007]]],[[[-41.53433183499996,63.414740302000055],[-41.51813717399988,63.41185130400014],[-41.48399817599991,63.41828034100014],[-41.465728318999936,63.414740302000055],[-41.42536373599995,63.39614492400007],[-41.41763261599996,63.390204169000064],[-41.413238084999875,63.37425364800014],[-41.41832434799991,63.364447333],[-41.44554602799991,63.34926992400001],[-41.28083248599992,63.34926992400001],[-41.26309160099993,63.346747137000094],[-41.23786373599995,63.34003327000014],[-41.21519934799991,63.33014557500003],[-41.19737708199992,63.30731842700011],[-41.147043423999975,63.284369208000115],[-41.10558020699997,63.24201080900003],[-41.0989884109999,63.22223541900011],[-41.12279212099989,63.21206289300007],[-41.158802863999966,63.218817450000095],[-41.18789628799993,63.239406643000116],[-41.24010169199993,63.28778717700014],[-41.232411261999914,63.25901927300002],[-41.21812903599994,63.23761627800015],[-41.21983801999993,63.22418854400014],[-41.260324673999946,63.21954987200002],[-41.29015051999996,63.233587958000086],[-41.342193162999905,63.28473541900014],[-41.36986243399991,63.2809919290001],[-41.352853969999956,63.27118561400009],[-41.34532630099988,63.257269598],[-41.348500128999945,63.24310944200009],[-41.36363684799994,63.232611395],[-41.38898678299998,63.22858307500005],[-41.41478430899991,63.2321638040001],[-41.43871008999989,63.241034247000144],[-41.458607550999965,63.25307851800006],[-41.48619544199988,63.26593659100008],[-41.55479895699992,63.31171295799999],[-41.671498175999915,63.362941799000154],[-41.719309048999946,63.390204169000064],[-41.73696855399996,63.395005601000136],[-41.77721106699994,63.401109117000104],[-41.84740149599988,63.43292877800015],[-41.86693274599989,63.45075104400002],[-41.863270636999914,63.472805080000036],[-41.83893795499995,63.48786041900006],[-41.80357825399994,63.496039130000135],[-41.700021938999896,63.499823309000156],[-41.68138587099992,63.496812242000075],[-41.65493730399993,63.480943101000136],[-41.623036261999914,63.47272370000006],[-41.61009680899991,63.46653880400008],[-41.606271938999896,63.46100495000014],[-41.600453253999945,63.4448102890001],[-41.596424933999884,63.43866608300011],[-41.58299719999988,63.430080471],[-41.53433183499996,63.414740302000055]]],[[[-51.246083136999914,63.48358795800011],[-51.395863410999965,63.46653880400008],[-51.395863410999965,63.472805080000036],[-51.35716712099991,63.48647695500016],[-51.34740149599989,63.49323151200009],[-51.34520423099988,63.49892812700007],[-51.34288489499991,63.51593659100014],[-51.34064693899992,63.52118561400012],[-51.31639563699985,63.52985260600012],[-51.28307044199997,63.52985260600012],[-51.24913489499991,63.52374909100003],[-51.2232966789999,63.51373932500014],[-51.21751868399994,63.51190827000006],[-51.21239173099991,63.509426174000154],[-51.207875128999945,63.505560614000146],[-51.2040909499999,63.50006745000012],[-51.246083136999914,63.48358795800011]]],[[[-40.6634822259999,63.644110419000164],[-40.68911699099996,63.62225983300014],[-40.7057185539999,63.61351146000005],[-40.72557532499991,63.60993073100009],[-40.79971269399996,63.609808661000116],[-40.821766730999855,63.61676666900012],[-40.83812415299988,63.63434479400006],[-40.82371985599991,63.64264557500011],[-40.796254035999965,63.64484284100011],[-40.77334550699996,63.644110419000164],[-40.68130449099996,63.65448639500009],[-40.6634822259999,63.644110419000164]]],[[[-51.932067112999896,64.13409389400006],[-51.99390585299991,64.12183051000012],[-52.02925852599989,64.12627739700018],[-52.0447347139999,64.10488349000008],[-52.083428745999925,64.12824889700015],[-52.066761847999885,64.16486237200014],[-52.02765865799995,64.18138255400014],[-51.93858801999994,64.1853701840001],[-51.89549719999994,64.1915550800001],[-51.88166539999989,64.16751398500018],[-51.932067112999896,64.13409389400006]]],[[[-40.71861731699994,64.22768789300012],[-40.707142706999974,64.22638580900004],[-40.66307532499988,64.22907135600008],[-40.65941321499991,64.22768789300012],[-40.67100989499994,64.21942780200014],[-40.65855872299991,64.2156436220001],[-40.64635169199994,64.21625397300006],[-40.634266730999855,64.22044505400002],[-40.622547980999855,64.22687409100011],[-40.63133704299992,64.20648834800012],[-40.65078691299993,64.20380280200006],[-40.69798743399991,64.21320221600017],[-40.9313044909999,64.21320221600017],[-41.01781165299988,64.20160553600006],[-41.034047003999916,64.20579661699999],[-41.046783006999874,64.21906159100003],[-41.05382239499994,64.22382233300011],[-41.062001105999855,64.22687409100011],[-41.062001105999855,64.23379140800002],[-41.050404425999936,64.23517487200007],[-41.04336503799987,64.23883698100006],[-41.04206295499998,64.245062567],[-41.04771887899997,64.25421784100008],[-41.03563391799986,64.25820547100007],[-41.011463995999854,64.26040273600016],[-40.99990800699993,64.264105536],[-40.99132239499991,64.27045319200012],[-40.980539516999926,64.283107815],[-40.972645636999935,64.28839752800017],[-40.950754360999895,64.29580312700016],[-40.82713782499991,64.31378815300008],[-40.72301184799991,64.3060570330001],[-40.677805141999954,64.29523346600008],[-40.6888321609999,64.29010651200018],[-40.69701087099992,64.2813988300001],[-40.71198482999994,64.26044342700014],[-40.70645097599992,64.25747304900013],[-40.696522589999944,64.24966054900013],[-40.6914770169999,64.24677155200011],[-40.711496548999975,64.23875560100008],[-40.73241126199994,64.23379140800002],[-40.71861731699994,64.22768789300012]]],[[[-51.12682044199991,64.30556875200001],[-51.13866126199988,64.26373932500016],[-51.15534420499992,64.25421784100008],[-51.181263800999915,64.24876536700005],[-51.230539516999926,64.22492096600017],[-51.258046027999846,64.21942780200014],[-51.28209387899989,64.22264232],[-51.31460527299987,64.23175690300017],[-51.33861243399991,64.24579498900012],[-51.33682206899991,64.264105536],[-51.30964107999992,64.27435944200012],[-51.24657141799992,64.25698476800015],[-51.21711178299992,64.26044342700014],[-51.22728430899988,64.26984284100016],[-51.239084438999924,64.2757835960001],[-51.26488196499989,64.28148021000008],[-51.24742591099991,64.29913971600008],[-51.21910559799997,64.30060455900015],[-51.18789628799987,64.29755280200006],[-51.16185462099992,64.30141836100016],[-51.19298255099991,64.32416413],[-51.20677649599992,64.33722565300017],[-51.19579016799986,64.34625885600018],[-51.19082597599989,64.3535016950001],[-51.18443762899989,64.36078522300011],[-51.17544511599996,64.36408112200014],[-51.16356360599991,64.36522044500002],[-51.15290279899989,64.36871979400009],[-51.14342200399997,64.37490469000015],[-51.13512122299991,64.38397858300006],[-51.145253058999856,64.39069245000009],[-51.156849738999966,64.39520905200006],[-51.16930091099987,64.39752838700012],[-51.1822810539999,64.397650458],[-51.1575414699999,64.41083405200014],[-51.118316209999904,64.42584870000015],[-51.08731035099987,64.44379303600012],[-51.08731035099987,64.4658877620001],[-51.07746334499993,64.484116929],[-51.06285559799991,64.49827708500003],[-51.02525794199991,64.52114492400001],[-51.03010006399989,64.52798086100013],[-51.033355272999955,64.53974030200011],[-51.03172766799991,64.55093008000001],[-51.02183997299991,64.55585358300009],[-50.86558997299997,64.55719635600015],[-50.82982337099986,64.54950592700006],[-50.80553137899997,64.52798086100013],[-50.82237708199997,64.48517487200003],[-50.86217200399997,64.46214427300008],[-50.956410285999965,64.43170807500012],[-50.999989386999886,64.40412018400009],[-51.03892981699997,64.37030670800011],[-51.0650528639999,64.33466217700008],[-51.082183397999955,64.320746161],[-51.1074926419999,64.31500885600012],[-51.12682044199991,64.30556875200001]]],[[[-51.26284745999993,64.39899323100018],[-51.29930579299992,64.38080475499999],[-51.31908118399991,64.37612539300007],[-51.34406490799995,64.37523021000008],[-51.36815344999988,64.37881094000015],[-51.4034724599999,64.39716217700003],[-51.424631313999896,64.39728424700017],[-51.50511633999989,64.38397858300006],[-51.51553300699996,64.38719310100011],[-51.515207485999916,64.39447663000011],[-51.50804602799991,64.40176015800013],[-51.49828040299985,64.40509674700017],[-51.45376542899996,64.40741608300011],[-51.43146725199991,64.41331614800008],[-51.41567949099987,64.4248721370001],[-51.42137610599985,64.42812734600012],[-51.42442786399994,64.431341864],[-51.42674719999991,64.43480052299999],[-51.43000240799995,64.43854401200004],[-51.38369706899988,64.44204336100002],[-51.34064693899992,64.45221588700015],[-51.35049394399996,64.47968170800003],[-51.276112433999884,64.53424713700018],[-51.26488196499989,64.56207916900006],[-51.09414628799987,64.56952545800011],[-51.09414628799987,64.56207916900006],[-51.09850012899997,64.56191640800007],[-51.10130774599992,64.56045156500004],[-51.10383053299995,64.55825429900013],[-51.1407771479999,64.53510163000009],[-51.15648352799985,64.52236562700013],[-51.16869055899994,64.50747304900007],[-51.171213344999956,64.4975039730001],[-51.172434048999946,64.4710147160001],[-51.17613684799991,64.45966217700014],[-51.2102758449999,64.44599030200003],[-51.24714107999998,64.41014232000009],[-51.26284745999993,64.39899323100018]]],[[[-40.45864824099988,64.72589752800003],[-40.473378058999884,64.72223541900017],[-40.48615475199992,64.72313060100008],[-40.49876868399991,64.72553131700003],[-40.51329505099994,64.72589752800003],[-40.526112433999884,64.72247955900012],[-40.541005011999914,64.71588776200004],[-40.548166469999956,64.7096214860001],[-40.5099991529999,64.70123932500003],[-40.46080481699988,64.67739492400015],[-40.40713456899991,64.66644928600009],[-40.39443925699993,64.65265534100017],[-40.38719641799992,64.63471100500011],[-40.376128709999875,64.616644598],[-40.38683020699991,64.61591217700008],[-40.40721594999988,64.61082591400007],[-40.41710364499991,64.61050039300011],[-40.42796790299988,64.61456940300009],[-40.4486384759999,64.62807851800007],[-40.45864824099988,64.6310082050001],[-40.48338782499988,64.62759023600007],[-40.48204505099997,64.618841864],[-40.45128333199989,64.596869208],[-40.45929928299992,64.594671942],[-40.47911536399994,64.58258698100009],[-40.44347083199989,64.56574127800009],[-40.39492753799993,64.5553246110001],[-40.26463782499988,64.54279205900009],[-40.21890214799987,64.52830638200004],[-40.17552649599992,64.50849030200014],[-40.143422003999945,64.48700592700011],[-40.15526282499991,64.48090241100012],[-40.182199673999946,64.46246979400009],[-40.19176184799994,64.45221588700015],[-40.17711341099994,64.44061920800014],[-40.183664516999926,64.43414948100006],[-40.19774329299985,64.43427155200011],[-40.205433722999885,64.44232819200013],[-40.216053839999915,64.44912344000008],[-40.32095292899996,64.45368073100003],[-40.410552537999905,64.46702708500014],[-40.44505774599992,64.480169989],[-40.458566860999895,64.48191966399999],[-40.47671464799989,64.48663971600008],[-40.49278723899988,64.49408600500009],[-40.499623175999915,64.50405508000007],[-40.49644934799994,64.51585521000014],[-40.4823298819999,64.52912018400015],[-40.47911536399994,64.53815338700018],[-40.48525956899993,64.54730866100006],[-40.49950110599994,64.553208726],[-40.51549231699994,64.55756256700008],[-40.52696692599997,64.56207916900006],[-40.53502356699991,64.56891510600015],[-40.54051673099994,64.57636139500012],[-40.544545050999915,64.58527252800017],[-40.54808508999989,64.596869208],[-40.51984615799992,64.59613678600006],[-40.51178951699998,64.60297272300006],[-40.520130988999966,64.61432526200007],[-40.555043097999885,64.637884833],[-40.56212317599994,64.64984772300012],[-40.567290818999936,64.66351959800006],[-40.575347459999875,64.67877838700004],[-40.56794186099989,64.67877838700004],[-40.576527472999906,64.68943919500008],[-40.58812415299991,64.696275132],[-40.61632239499991,64.70673248900006],[-40.60204016799992,64.71287669500003],[-40.60204016799992,64.71971263200005],[-40.621205206999974,64.72308991100009],[-40.673003709999875,64.74632396],[-40.70628821499989,64.77301666900003],[-40.77334550699996,64.80231354400014],[-40.806263800999936,64.83002350500011],[-40.82237708199992,64.84857819200012],[-40.82518469999988,64.86066315300003],[-40.82628333199992,64.87152741100012],[-40.840728318999965,64.88515859600007],[-40.869536912999905,64.90473053600014],[-40.82872473899993,64.92902252800003],[-40.77281653599988,64.938666083],[-40.71654212099991,64.93227773600007],[-40.65575110599988,64.89687734600007],[-40.609974738999966,64.88544342700003],[-40.57201087099986,64.85887278900005],[-40.499623175999915,64.82957591400013],[-40.51073157499994,64.82733795800006],[-40.51984615799992,64.82330963700016],[-40.52765865799992,64.81732819200006],[-40.53441321499986,64.80914948100015],[-40.52281653599994,64.79979075700011],[-40.49762936099995,64.7903506530001],[-40.48599199099996,64.78119538000011],[-40.493397589999944,64.77435944200003],[-40.448475714999944,64.752427476],[-40.43919837099989,64.74087148600016],[-40.45864824099988,64.72589752800003]]],[[[-39.7318416009999,65.35716380400014],[-39.70982825399989,65.35065338700004],[-39.60830644399987,65.35101959800006],[-39.594878709999875,65.34886302300005],[-39.56338456899988,65.33934153900007],[-39.546864386999886,65.33665599199999],[-39.51374264199995,65.33779531500012],[-39.49986731699997,65.33413320500007],[-39.4916072259999,65.32245514500005],[-39.535755988999966,65.31785716400005],[-39.54723059799991,65.31932200699998],[-39.55931555899991,65.32269928600012],[-39.57209225199995,65.32306549700003],[-39.58446204299988,65.32074616100006],[-39.595326300999886,65.31622955900012],[-39.56798255099991,65.29572174700014],[-39.572987433999856,65.28880442900004],[-39.570668097999885,65.28705475500006],[-39.537953253999945,65.28998444200009],[-39.52367102799988,65.29352448100015],[-39.50902258999986,65.29450104400006],[-39.4916072259999,65.28827545800009],[-39.519439256999924,65.27952708500003],[-39.54332434799991,65.27488841399999],[-39.56883704299992,65.27553945500013],[-39.72500566299988,65.31622955900012],[-39.7936091789999,65.32245514500005],[-39.80247962099995,65.32636139500006],[-39.80337480399993,65.33462148600016],[-39.79605058499993,65.34202708500014],[-39.78026282499987,65.34349192900002],[-39.78018144399991,65.36627838700004],[-39.752797003999945,65.37689850500009],[-39.726958787999905,65.37433502800015],[-39.7318416009999,65.35716380400014]]],[[[-37.05089270699991,65.57758209800012],[-37.025013800999915,65.55206940300003],[-37.032866990999906,65.53754303599999],[-37.051625128999945,65.54043203300004],[-37.07412675699993,65.54987213700004],[-37.093332485999895,65.55516185100011],[-37.12043209499993,65.54987213700004],[-37.16926021999993,65.5327009140001],[-37.19635982999994,65.53534577],[-37.1900935539999,65.53534577],[-37.20445716099988,65.540920315],[-37.214019334999875,65.5500348980001],[-37.21507727799993,65.56037018400012],[-37.20376542899993,65.56940338700012],[-37.20836341099988,65.57221100500007],[-37.21275794199997,65.57831452000005],[-37.217437303999866,65.58315664300012],[-37.17487545499992,65.59129466400005],[-37.11009680899991,65.59007396000014],[-37.05089270699991,65.57758209800012]]],[[[-52.99510657499985,65.55882396000008],[-53.03709876199994,65.54328034100017],[-53.05846106699988,65.54531484600001],[-53.127674933999884,65.55434804900001],[-53.16567949099988,65.56028880400014],[-53.19082597599996,65.57689036699999],[-53.22447669199997,65.59292226800007],[-53.23078365799992,65.60224030200011],[-53.21816972599993,65.61416250200007],[-53.19619706899991,65.6244164080001],[-53.17536373599992,65.6308454450001],[-52.93761145699994,65.658840236],[-52.885975714999915,65.66071198100009],[-52.85960852799991,65.65619538000014],[-52.84825598899994,65.64179108300006],[-52.85309811099992,65.62421295800014],[-52.86514238199993,65.60980866100006],[-52.880848761999886,65.59845612200009],[-52.954416469999956,65.56598541900011],[-52.99510657499985,65.55882396000008]]],[[[-36.99962317599988,65.59625885600009],[-37.00401770699997,65.58771393400018],[-37.025013800999915,65.58999258000016],[-37.04686438699986,65.59821198100015],[-37.093739386999914,65.608832098],[-37.115061001999976,65.61790599200002],[-37.0782771479999,65.63222890800007],[-37.06663977799988,65.63837311400006],[-37.08128821499988,65.64569733300006],[-37.106271938999896,65.64960358300006],[-37.152251756999874,65.65135325700005],[-37.1568497389999,65.65363190300003],[-37.17613684799994,65.66876862200003],[-37.18903561099995,65.67291901200015],[-37.200062628999916,65.67352936400012],[-37.20946204299992,65.67609284100003],[-37.217437303999866,65.6861839860001],[-37.10789954299992,65.71686432500009],[-37.08763587099992,65.73037344000006],[-37.07534745999996,65.73407623900003],[-37.05947831899993,65.73086172100015],[-37.0091039699999,65.70880768400015],[-36.9908748039999,65.706000067],[-36.99518795499992,65.6965192730001],[-36.997710740999935,65.69301992400001],[-36.93626868399985,65.67934804900007],[-36.956288214999915,65.6693789730001],[-36.94953365799998,65.66250234600007],[-36.90900631399995,65.65135325700005],[-36.92528235599988,65.63646067900002],[-36.95368404899992,65.62824127800009],[-37.01138261599996,65.62409088700015],[-37.004505988999966,65.61017487200009],[-36.99962317599988,65.59625885600009]]],[[[-36.82811438699988,65.74237702],[-36.848459438999946,65.73822663000006],[-36.86803137899994,65.74823639500012],[-36.879261847999935,65.76593659100006],[-36.899037238999966,65.77269114799999],[-36.92194576699995,65.77578359600007],[-36.94249426999991,65.78237539300011],[-36.933949347999885,65.78522370000017],[-36.92650305899991,65.78945547100001],[-36.92039954299992,65.7950707050001],[-36.91576087099989,65.80223216400005],[-36.95836341099994,65.80442942900012],[-36.97813880099994,65.80857982000008],[-36.997710740999935,65.8158633480001],[-36.970814581999946,65.8163109400001],[-36.941517706999946,65.82086823100003],[-36.88849850199992,65.8369815120001],[-36.839100714999944,65.86615631700015],[-36.81273352799994,65.87571849200013],[-36.785511847999935,65.8710798200001],[-36.76390540299994,65.85390859600007],[-36.77122962099994,65.84271881700005],[-36.79088294199991,65.83368561400005],[-36.8059789699999,65.822699286],[-36.80443274599986,65.81281159100008],[-36.785511847999935,65.76121653900013],[-36.82811438699988,65.74237702]]],[[[-37.39688066299996,65.823228257],[-37.36709550699993,65.78799062700013],[-37.27208411399994,65.76121653900013],[-37.29320227799985,65.75556061400015],[-37.40127519399993,65.75775788000011],[-37.42096920499997,65.76532623900009],[-37.43809973899991,65.77716705900004],[-37.45396887899994,65.79254791900009],[-37.461659308999856,65.79783763200005],[-37.47484290299991,65.80438873900015],[-37.488392706999974,65.8092715520001],[-37.4973852199999,65.809719143],[-37.49885006399995,65.80337148600007],[-37.4896134109999,65.7958438170001],[-37.47744706899991,65.78839752800003],[-37.47008216099991,65.78237539300011],[-37.46861731699994,65.77240631700015],[-37.47248287699995,65.76532623900009],[-37.47520911399994,65.75824616100012],[-37.47008216099991,65.74823639500012],[-37.45929928299992,65.74237702],[-37.415394660999965,65.73395416900006],[-37.47874915299991,65.72662995000003],[-37.4973852199999,65.7202822940001],[-37.47227942599991,65.70734284100008],[-37.383208787999905,65.71898021000003],[-37.35057532499987,65.70970286700005],[-37.33836829299989,65.70408763200005],[-37.323109503999916,65.7013207050001],[-37.31224524599995,65.69513580900004],[-37.313059048999946,65.67934804900007],[-37.32506262899997,65.66681549700017],[-37.35985266799992,65.66205475500009],[-37.37450110599994,65.65135325700005],[-37.37100175699993,65.64057038000006],[-37.38499915299991,65.63458893400004],[-37.42292232999992,65.63153717700014],[-37.41624915299988,65.64606354400009],[-37.42479407499991,65.65493398600005],[-37.44090735599988,65.65704987200003],[-37.457020636999935,65.65135325700005],[-37.45299231699996,65.64866771000008],[-37.44810950399989,65.64272695500016],[-37.443348761999914,65.63837311400006],[-37.470692511999886,65.63361237200013],[-37.47752844999988,65.63153717700014],[-37.47984778599994,65.6264509140001],[-37.479318813999974,65.61937083500005],[-37.48119055899994,65.6131859400001],[-37.49083411399991,65.61041901200004],[-37.51040605399987,65.61416250200007],[-37.5176488919999,65.62262604400011],[-37.52000891799986,65.63202545800011],[-37.52529863199993,65.63837311400006],[-37.54588782499988,65.6373558610001],[-37.555816209999875,65.6205101580001],[-37.56944739499991,65.60211823100013],[-37.60106360599991,65.5967471370001],[-37.59190833199992,65.61261627800003],[-37.586781378999916,65.61790599200002],[-37.59483801999994,65.62030670800013],[-37.61465410099996,65.63153717700014],[-37.60106360599991,65.63837311400006],[-37.61375891799986,65.644232489],[-37.6270238919999,65.64740631700006],[-37.69277910099987,65.6549746770001],[-37.711293097999885,65.654201565],[-37.71397864499997,65.64826080900015],[-37.70140540299988,65.63361237200013],[-37.692982550999915,65.62689850500011],[-37.68297278599994,65.62409088700015],[-37.667307094999956,65.62319570500007],[-37.65111243399991,65.620062567],[-37.637196417999945,65.61395905200011],[-37.6283259759999,65.60419342700008],[-37.70665442599997,65.57330963700012],[-37.73790442599994,65.56940338700012],[-37.75649980399992,65.57265859600007],[-37.79161536399991,65.58673737200012],[-37.843006964999915,65.59438711100013],[-37.85472571499989,65.59296295800006],[-37.847482876999976,65.58315664300012],[-37.875721808999934,65.57709381700015],[-37.90689042899993,65.58779531500006],[-37.934071417999945,65.60639069200006],[-37.949818488999874,65.62409088700015],[-37.94688880099997,65.63483307500017],[-37.948068813999896,65.648179429],[-37.95201575399989,65.661566473],[-37.95734615799995,65.67251211100016],[-37.961781378999916,65.67890045800009],[-37.964507615999906,65.68146393400009],[-37.967925584999904,65.68378327000013],[-37.98159745999993,65.69550202000012],[-37.985991990999906,65.69818756700012],[-37.98729407499991,65.70058828300016],[-37.97052975199989,65.73712799700012],[-37.96589107999998,65.7526716170001],[-37.964182094999956,65.77179596600008],[-37.95433508999994,65.79637278900002],[-37.93073482999992,65.80231354400003],[-37.901519334999875,65.80052317900014],[-37.87535559799991,65.80223216400005],[-37.85985266799992,65.81647370000006],[-37.837757941999904,65.86151764500012],[-37.8235570949999,65.8710798200001],[-37.80833899599991,65.87287018400009],[-37.75869706899991,65.88475169500003],[-37.69664466099987,65.89158763200005],[-37.69566809799991,65.894029039],[-37.69676673099985,65.89874909100011],[-37.696888800999915,65.90326569200005],[-37.693186001999976,65.905218817],[-37.64118404899992,65.90501536700005],[-37.60362708199992,65.90070221600014],[-37.58702551999994,65.89496491100009],[-37.52183997299994,65.85431549700009],[-37.4973852199999,65.84320709800006],[-37.43150794199994,65.83283112200014],[-37.39688066299996,65.823228257]]],[[[-36.19786536399994,65.872015692],[-36.219553188999924,65.85871002800015],[-36.239857550999915,65.85325755400014],[-36.25104732999992,65.86432526200015],[-36.261789516999926,65.85980866100012],[-36.27354895699992,65.85708242400013],[-36.286000128999945,65.85610586100007],[-36.298817511999886,65.856878973],[-36.29426021999993,65.84686920800003],[-36.291981574999845,65.84320709800006],[-36.3349503249999,65.82306549700003],[-36.35960852799991,65.82135651200012],[-36.38072669199991,65.8369815120001],[-36.38072669199991,65.86774323100018],[-36.37401282499988,65.88129303600014],[-36.358021613999966,65.887193101],[-36.32616126199994,65.89158763200005],[-36.30626380099994,65.89948151200004],[-36.29906165299991,65.90501536700005],[-36.28864498599992,65.91583893400006],[-36.2774958979999,65.92047760600018],[-36.229969855999904,65.91958242400007],[-36.2342830069999,65.90395742400001],[-36.221791144999905,65.89569733300003],[-36.18276933499993,65.88475169500003],[-36.19786536399994,65.872015692]]],[[[-36.52183997299994,65.91136302299999],[-36.56602942599994,65.88816966400005],[-36.58067786399994,65.88662344],[-36.594960089999944,65.88987864800005],[-36.60680091099991,65.8897158870001],[-36.614125128999916,65.87791575700011],[-36.61192786399991,65.86945221600008],[-36.60407467399992,65.86151764500012],[-36.58682206899991,65.85065338700004],[-36.593129035999965,65.84186432500015],[-36.59609941299988,65.8330752620001],[-36.594471808999856,65.82428620000003],[-36.58682206899991,65.8158633480001],[-36.62193762899989,65.798570054],[-36.63524329299991,65.79604726800007],[-36.6465551419999,65.80654531500012],[-36.737049933999856,65.80223216400005],[-36.72789466099988,65.818793036],[-36.68342037699995,65.84039948100009],[-36.685536261999886,65.85374583500011],[-36.69249426999996,65.86082591399999],[-36.706654425999886,65.88133372600014],[-36.71593176999993,65.88861725500006],[-36.750721808999884,65.905218817],[-36.70881100199989,65.93085358300009],[-36.627837693999936,65.95319245000009],[-36.54674231699991,65.96344635600003],[-36.50426184799991,65.95302969000012],[-36.504750128999916,65.92975495000003],[-36.52183997299994,65.91136302299999]]],[[[-35.48448645699992,66.18488190300009],[-35.52086341099991,66.18048737200009],[-35.55833899599995,66.19330475500014],[-35.55435136599996,66.196437893],[-35.55308997299994,66.19965241100006],[-35.552805141999926,66.20307038000009],[-35.55150305899991,66.2069359400001],[-35.527902798999975,66.2296817080001],[-35.48216712099986,66.24213288000014],[-35.38703365799998,66.24848053600006],[-35.39679928299992,66.23786041900003],[-35.42064368399991,66.22931549700009],[-35.41494706899991,66.221177476],[-35.4491267569999,66.20050690300013],[-35.48448645699992,66.18488190300009]]],[[[-33.90733801999991,66.830715236],[-33.89606686099992,66.8243675800001],[-33.88353430899991,66.81976959800005],[-33.87075761599988,66.81879303600009],[-33.86571204299986,66.82322825700005],[-33.856271938999924,66.82941315300003],[-33.847727016999926,66.830023505],[-33.84142005099997,66.82469310100011],[-33.83901933499993,66.81338125200013],[-33.84605872299991,66.80190664300008],[-33.86290442599991,66.79706452],[-33.95225989499991,66.79523346600001],[-33.970773891999926,66.80463288000006],[-33.97565670499992,66.830715236],[-33.966460740999935,66.85480377800015],[-33.951283331999946,66.85211823100015],[-33.93370520699992,66.83877187700016],[-33.91759192599994,66.830715236],[-33.9121801419999,66.84235260600002],[-33.91319739499997,66.86517975500006],[-33.905140753999916,66.88100820500007],[-33.87254798099988,66.87164948100015],[-33.866118943999965,66.85895416900009],[-33.874175584999904,66.845892645],[-33.89012610599991,66.83543528900012],[-33.90733801999991,66.830715236]]],[[[-33.41047115799989,67.152777411],[-33.4498591789999,67.14150625200001],[-33.48281816299996,67.152818101],[-33.46304277299993,67.16559479400003],[-33.452381964999915,67.17023346600014],[-33.44115149599992,67.17328522300014],[-33.4752498039999,67.1869570980001],[-33.44611568899995,67.19725169500002],[-33.370269334999904,67.2080752620001],[-33.33812415299985,67.20685455900018],[-33.37291419199991,67.17609284100007],[-33.41047115799989,67.152777411]]],[[[-33.24649003799996,67.30560944200012],[-33.25609290299994,67.29775625200013],[-33.28351803299998,67.30304596600003],[-33.331288214999915,67.33783600500006],[-33.31484941299993,67.35268789300012],[-33.29027258999991,67.36859772300015],[-33.265614386999914,67.37596263200014],[-33.24937903599988,67.36505768400013],[-33.25511633999986,67.36054108300003],[-33.25495357999989,67.35919830900012],[-33.252023891999954,67.35895416900016],[-33.24937903599988,67.35765208500008],[-33.248036261999886,67.35407135600009],[-33.24742591099994,67.3506533870001],[-33.24608313699985,67.34731679900007],[-33.24254309799997,67.34398021000014],[-33.276722785999965,67.33100006700015],[-33.25377356699997,67.31924062700007],[-33.24649003799996,67.30560944200012]]],[[[-29.836252407999947,68.14594147300015],[-29.86725826699998,68.14297109600012],[-29.899159308999913,68.14541250200007],[-29.93065344999991,68.15151601800007],[-29.986317511999943,68.16889069200012],[-30.00133216099997,68.17902252800009],[-30.009388800999886,68.19310130400014],[-30.014393683999938,68.21426015800013],[-29.98159745999993,68.22898997600014],[-29.94774329299986,68.23745351800007],[-29.87413489499991,68.24213288],[-29.816721157999975,68.23061758000016],[-29.7276912099999,68.22711823100015],[-29.712717251999948,68.22166575700011],[-29.7013240229999,68.21832916900009],[-29.69497636599996,68.21287669500005],[-29.695912238999934,68.20673248900009],[-29.706532355999883,68.20115794500006],[-29.705189581999885,68.18707916900003],[-29.71593176999991,68.17633698100012],[-29.73314368399991,68.1694196640001],[-29.776966925999886,68.16449616100006],[-29.836252407999947,68.14594147300015]]],[[[-52.94717363199993,68.46613190300015],[-52.92853756399995,68.44969310100005],[-52.90290279899989,68.45441315300015],[-52.90973873599992,68.46124909100008],[-52.89199785099993,68.45892975500011],[-52.87401282499988,68.452093817],[-52.86009680899991,68.44049713700018],[-52.85448157499991,68.424017645],[-52.864165818999965,68.41006094000012],[-52.88630123599992,68.39915599200003],[-52.91063391799992,68.390326239],[-52.950347459999904,68.36859772300012],[-52.97687740799997,68.36383698100003],[-53.091786261999886,68.36102936400006],[-53.114898240999935,68.36448802300006],[-53.11514238199987,68.37929922100012],[-53.125152147999955,68.38226959800006],[-53.15611731699988,68.38556549700009],[-53.196888800999936,68.39793528900013],[-53.20791581899991,68.3998070330001],[-53.20563717399992,68.414496161],[-53.2096248039999,68.42597077000015],[-53.22500566299993,68.43390534100011],[-53.192128058999856,68.43707916900016],[-53.13109290299988,68.45123932500009],[-53.09805253799993,68.45441315300015],[-53.063628709999904,68.44847239800013],[-53.03237870999993,68.43744538],[-53.00243079299985,68.43154531500014],[-52.97179114499994,68.44082265800002],[-52.991525844999984,68.44696686400009],[-53.035552537999905,68.46662018400004],[-53.05060787699992,68.47858307500015],[-53.04991614499997,68.49079010600003],[-53.02916419199996,68.49542877800015],[-52.99225826699992,68.49542877800015],[-52.966135219999956,68.48696523600005],[-52.94717363199993,68.46613190300015]]],[[[-51.84463456899991,68.60883209800012],[-51.83409583199994,68.60521067900005],[-51.85899817599997,68.60659414300012],[-51.88634192599994,68.60480377800015],[-51.86392167899993,68.61212799700014],[-51.84463456899991,68.60883209800012]]],[[[-52.03278561099995,68.58502838700004],[-52.09845943899995,68.56574127800009],[-52.11489824099996,68.56427643400004],[-52.130970831999946,68.56659577],[-52.15387936099992,68.57900625200013],[-52.169260219999956,68.58478424700009],[-52.207386847999935,68.5885684270001],[-52.32750403599994,68.57855866100012],[-52.3592830069999,68.58307526200018],[-52.36815344999985,68.58169179900001],[-52.39842688699994,68.56622955900018],[-52.40908769399987,68.56427643400004],[-52.417551235999916,68.568833726],[-52.42218990799995,68.57929108300006],[-52.423736131999874,68.59056224200005],[-52.42308508999994,68.59780508000007],[-52.40123450399988,68.61688873900006],[-52.36782792899993,68.62197500200007],[-52.30016028599988,68.61953359600015],[-52.26866614499996,68.62539297100008],[-52.20946204299988,68.64337799700003],[-52.17662512899997,68.64618561400007],[-52.059722459999925,68.63564687700001],[-52.0326228509999,68.62571849200009],[-52.05353756399995,68.61786530200014],[-52.10142981699996,68.609849351],[-52.11461341099991,68.59780508000007],[-52.10586503799993,68.59223053600006],[-52.09585527299987,68.587347723],[-52.08495032499987,68.58441803600009],[-52.0735977859999,68.58478424700009],[-52.0735977859999,68.59113190300003],[-52.05996660099987,68.59699127800015],[-51.98338782499988,68.61102936400012],[-51.96471106699991,68.61896393400018],[-51.95689856699991,68.63568756699999],[-51.94082597599993,68.64667389500006],[-51.82335364499991,68.63727448100003],[-51.806752081999974,68.63255442900014],[-51.806752081999974,68.62571849200009],[-51.895008917999945,68.62539297100008],[-51.92275956899991,68.61953359600015],[-51.91844641799992,68.61163971600017],[-51.91218014199995,68.60687897300006],[-51.90428626199988,68.60447825700014],[-52.03278561099995,68.58502838700004]]],[[[-52.14769446499986,68.701849677],[-52.1583552729999,68.70087311400012],[-52.169260219999956,68.701402085],[-52.20490475199991,68.69505442900008],[-52.21393795499992,68.690619208],[-52.24144446499989,68.66962311400006],[-52.27074133999989,68.658677476],[-52.29784094999991,68.64345937700001],[-52.32591712099992,68.63373444200006],[-52.35106360599991,68.64248281500012],[-52.37132727799991,68.6572940120001],[-52.39366614499994,68.66327545800011],[-52.419585740999935,68.66156647300012],[-52.48452714799992,68.64337799700003],[-52.63414466099988,68.6278750670001],[-52.64903723899994,68.62262604400003],[-52.66942298099991,68.61831289300012],[-52.73525956899988,68.62571849200009],[-52.936634894999884,68.60565827000006],[-53.05964107999992,68.57754140800007],[-53.121937628999916,68.57111237200014],[-53.096058722999885,68.60700104400014],[-53.065663214999915,68.63011302300002],[-53.02574622299997,68.64248281500012],[-52.825754360999944,68.65485260600018],[-52.765695766999954,68.66669342700014],[-52.78286699099988,68.67365143400002],[-52.84825598899994,68.66669342700014],[-52.84825598899994,68.67413971600011],[-52.63247636599988,68.70038483300013],[-52.63841712099988,68.701849677],[-52.64338131399995,68.70477936400012],[-52.6471248039999,68.70905182500003],[-52.649647589999915,68.71507396000013],[-52.526112433999884,68.71507396000013],[-52.53083248599989,68.71320221600017],[-52.534779425999886,68.71035390800013],[-52.5377498039999,68.70648834800011],[-52.53978430899991,68.701402085],[-52.25890051999994,68.70766836100013],[-52.24681555899991,68.71019114800008],[-52.22687740799995,68.7194684920001],[-52.217355923999946,68.71849192900005],[-52.196400519999884,68.71133047100001],[-52.17463131399992,68.70819733300011],[-52.128285285999965,68.70766836100013],[-52.1376033189999,68.70416901200015],[-52.14769446499986,68.701849677]]],[[[-23.2403865229999,69.65330638200011],[-23.277740037999877,69.64655182500017],[-23.480376756999874,69.65534088700004],[-23.544545050999915,69.67568594000012],[-23.593373175999915,69.7150332700001],[-23.55923417899993,69.72748444200015],[-23.517486131999874,69.73615143400004],[-23.43968665299988,69.74298737200014],[-23.347320115999874,69.7465274110001],[-23.29857337099986,69.74290599199999],[-23.25816809799988,69.72866445500007],[-23.227772589999912,69.68390534100003],[-23.2240291009999,69.67096588700012],[-23.2403865229999,69.65330638200011]]],[[[-51.00475012899997,69.92047760600018],[-50.92943274599989,69.89813873900015],[-50.9017634759999,69.89378489800005],[-50.836659308999884,69.90062083500008],[-50.803944464999944,69.90037669500013],[-50.77822831899991,69.88694896000013],[-50.785552537999905,69.88202545800009],[-50.79938717399988,69.86587148600002],[-50.68053137899991,69.870306708],[-50.662180141999954,69.85626862200003],[-50.661366339999944,69.84284088700004],[-50.66185462099992,69.83515045800011],[-50.667591925999886,69.82933177300008],[-50.766835089999915,69.783880927],[-50.791086391999926,69.76837799700017],[-50.80553137899997,69.76341380400011],[-50.8265681629999,69.7635765650001],[-50.85879472599996,69.77513255400011],[-50.87441972599993,69.77708567900005],[-50.88914954299992,69.77204010600003],[-50.93590247299991,69.74298737200014],[-50.96214758999991,69.73041413000006],[-50.97150631399995,69.71954987200017],[-50.963734503999945,69.69721100500004],[-50.96255449099993,69.68496328300007],[-50.96369381399995,69.67267487200003],[-50.96690833199992,69.66445547100012],[-50.98534094999987,69.64350006700009],[-50.987172003999945,69.63410065300015],[-50.98436438699988,69.61945221600014],[-50.955433722999885,69.57880280200006],[-50.9510798819999,69.55939362200006],[-50.97716223899994,69.55117422100012],[-50.99852454299992,69.54995351800012],[-51.04670162699995,69.54083893400004],[-51.116078253999916,69.51276276200002],[-51.13512122299991,69.50958893400015],[-51.16746985599991,69.5119489600001],[-51.212513800999886,69.52179596600014],[-51.24535071499989,69.5383161480001],[-51.24132239499991,69.56110260600006],[-51.23753821499988,69.56419505400014],[-51.28563391799986,69.607082424],[-51.299631313999924,69.62628815300015],[-51.3226619129999,69.67536041900011],[-51.333119269999884,69.68773021000014],[-51.37002519399993,69.69513580900004],[-51.386789516999954,69.70115794500013],[-51.38499915299988,69.71190013200004],[-51.36449133999991,69.73041413000006],[-51.352772589999915,69.73834870000003],[-51.34064693899992,69.74298737200014],[-51.28701738199993,69.74042389500015],[-51.26406816299996,69.7471377620001],[-51.27171790299988,69.77024974200005],[-51.21666419199994,69.80438873900015],[-51.18321692599997,69.81891510600018],[-51.11945553299992,69.83152903900007],[-51.03111731699997,69.868109442],[-51.00475012899997,69.88694896000013],[-51.046050584999904,69.88426341400006],[-51.085926886999886,69.87689850500004],[-51.16185462099992,69.85285065300003],[-51.21214758999988,69.84296295800011],[-51.36107337099992,69.85285065300003],[-51.319935675999915,69.86945221600008],[-51.21092688699986,69.888373114],[-51.1822810539999,69.90745677299999],[-51.19359290299988,69.90656159100008],[-51.204213019999905,69.90713125200007],[-51.2141820949999,69.90949127800003],[-51.2232966789999,69.91425202000012],[-51.19465084499993,69.92194245000003],[-51.13658606699997,69.91852448100003],[-51.082102016999954,69.9269066430001],[-51.01496334499989,69.92536041900014],[-51.00475012899997,69.92047760600018]]],[[[-52.72809811099995,69.92865631700009],[-52.630930141999926,69.91315338700015],[-52.51891028599996,69.88068268400009],[-52.432362433999884,69.871527411],[-52.31126868399991,69.84357330900016],[-52.210194464999915,69.83856842700014],[-52.21764075399997,69.83856842700014],[-51.998158331999974,69.80508047100008],[-51.93651282499994,69.77708567900005],[-51.91348222599987,69.75731028900005],[-51.90855872299991,69.7428246110001],[-51.91755123599992,69.72992584800006],[-51.96251380099991,69.69098541900007],[-51.96784420499989,69.68773021000014],[-51.98155676999991,69.68671295800009],[-52.01402747299991,69.67951080900004],[-52.02586829299986,69.67405833500003],[-51.89183508999989,69.64012278900007],[-51.85456295499989,69.64671458500013],[-51.85081946499989,69.65045807500015],[-51.83747311099995,69.64362213700007],[-51.83641516799992,69.631781317],[-51.85265051999994,69.62181224200002],[-51.885568813999924,69.60919830900012],[-51.90762285099992,69.59100983300011],[-52.02570553299989,69.52033112200009],[-52.05402584499993,69.51410553600012],[-52.09862219999991,69.4990908870001],[-52.14159094999988,69.47728099200003],[-52.277699347999885,69.44647858300009],[-52.34048417899996,69.44814687700008],[-52.820301886999914,69.35252513200011],[-52.88853919199991,69.35272858300006],[-52.90290279899989,69.34511953300012],[-52.934803839999915,69.35073476800012],[-53.20645097599993,69.31443919500013],[-53.284169074999845,69.28742096600008],[-53.512928839999915,69.25214264500015],[-53.55215410099993,69.2359072940001],[-53.57445227799988,69.23525625200016],[-53.587391730999876,69.23908112200017],[-53.622873501999976,69.256333726],[-53.63955644399991,69.26056549700009],[-53.72826087099989,69.25556061400005],[-53.844634568999936,69.26504140800016],[-53.869252081999946,69.28025950700014],[-53.885853644999905,69.30914948100015],[-53.9252009759999,69.32221100500011],[-54.14854895699992,69.33783600500011],[-54.21735592399989,69.36310455900015],[-54.22801673099994,69.37107982000009],[-54.23232988199993,69.38296133000007],[-54.23839270699992,69.38336823100018],[-54.26573645699989,69.3954125020001],[-54.27334550699993,69.40033600500006],[-54.2656957669999,69.41766998900015],[-54.25438391799992,69.42601146000011],[-54.21934973899993,69.43451569200015],[-54.22663326699995,69.43748607000005],[-54.246001756999874,69.44814687700008],[-54.2246801419999,69.45368073100009],[-54.204579230999855,69.4523786480001],[-54.16413326699992,69.44135163000006],[-54.14329993399994,69.43829987200014],[-54.007435675999965,69.443793036],[-53.79869544199988,69.42625560100005],[-53.68219967399994,69.44065989800009],[-53.66193600199992,69.44961172100015],[-53.648345506999874,69.44782135600015],[-53.63463294199993,69.44367096600003],[-53.62222245999993,69.44135163000006],[-53.40298417899996,69.43919505400005],[-53.375843878999945,69.44814687700008],[-53.539377407999886,69.45425039300007],[-53.58189856699994,69.46865469000012],[-53.58189856699994,69.47606028900013],[-53.57331295499995,69.48163483300014],[-53.55394446499991,69.50958893400015],[-53.543283657999886,69.52094147300012],[-53.50926673099988,69.54779694200012],[-53.47301184799994,69.56696198100008],[-53.38988196499989,69.571234442],[-53.34911048099994,69.57786692900008],[-53.34911048099994,69.58535390800013],[-53.424956834999875,69.58490631700012],[-53.564442511999886,69.56891510600003],[-53.59357662699994,69.55556875200013],[-53.608550584999904,69.55117422100012],[-53.59349524599989,69.53148021],[-53.61851966099988,69.50751373900015],[-53.657541469999956,69.486558335],[-53.68431555899985,69.47606028900013],[-53.77285722599987,69.45880768400012],[-53.81663977799994,69.45856354400017],[-53.86241614499993,69.46865469000012],[-53.75959225199992,69.49994538],[-53.73273678299995,69.51703522300014],[-53.76471920499994,69.52480703300012],[-53.93936113199993,69.48956940300009],[-53.97276770699989,69.48908112200012],[-53.999623175999886,69.50275299700014],[-53.96898352799988,69.52362702000012],[-53.91966712099989,69.54181549700012],[-53.88109290299991,69.56110260600006],[-53.88292395699989,69.58535390800013],[-53.90111243399988,69.5946312520001],[-53.93008378799988,69.60394928600012],[-53.95946204299989,69.60993073100006],[-53.97883053299989,69.60919830900012],[-53.98814856699994,69.60317617400001],[-53.99132239499991,69.59686920800006],[-53.989125128999916,69.58978913000003],[-53.98224850199992,69.58161041900009],[-53.97956295499992,69.57465241100003],[-53.9826554029999,69.56769440300003],[-53.98839270699989,69.56183502800017],[-53.99327551999994,69.55801015800016],[-54.12999426999991,69.55117422100012],[-54.24669348899991,69.56879303600006],[-54.27334550699993,69.5716820330001],[-54.33999589799992,69.561712958],[-54.73737545499995,69.58905670800009],[-54.77196204299994,69.598130601],[-54.82823645699992,69.61945221600014],[-54.82339433499993,69.62466054900011],[-54.81460527299986,69.64057038000006],[-54.85850989499991,69.64472077],[-54.91274980399987,69.65680573100009],[-54.96247311099995,69.67609284100003],[-54.992746548999946,69.70197174700014],[-54.98375403599994,69.70197174700014],[-54.97765051999994,69.70376211100013],[-54.972279425999886,69.70644765800002],[-54.965443488999966,69.70880768400013],[-54.975087042999945,69.72357819200015],[-54.96349036399991,69.732896226],[-54.89281165299988,69.75116608300006],[-54.86266028599996,69.75409577000009],[-54.832508917999945,69.751410223],[-54.80093339799993,69.74298737200014],[-54.78294837099991,69.74957916900003],[-54.68488521999989,69.75600820500013],[-54.6614477199999,69.75299713700004],[-54.644032355999855,69.74518463700004],[-54.60912024599992,69.72247955900009],[-54.58128821499989,69.71271393400015],[-54.49307206899988,69.70197174700014],[-54.44074459499989,69.68048737200003],[-54.41307532499991,69.67426178600006],[-54.389393683999884,69.68154531500006],[-54.49925696499985,69.72866445500007],[-54.555775519999884,69.73810455900018],[-54.57135983,69.74640534100013],[-54.58336341099991,69.75503164300005],[-54.619862433999856,69.77358633000007],[-54.63341223899991,69.77708567900005],[-54.81615149599992,69.79364655200011],[-54.91185462099989,69.82062409100008],[-54.93195553299992,69.86587148600002],[-54.89028886599996,69.87734609600007],[-54.87328040299991,69.87954336100013],[-54.79409745999993,69.87954336100013],[-54.83462480399993,69.89850495000015],[-54.848744269999884,69.90745677299999],[-54.85912024599989,69.91803620000005],[-54.86705481699994,69.93158600500003],[-54.86497962099992,69.94342682500015],[-54.826283331999974,69.95136139500012],[-54.786610480999855,69.96531810100002],[-54.76675370999996,69.96954987200003],[-54.663441535999965,69.97345612200003],[-54.62083899599991,69.95831940300003],[-54.245961066999875,69.91388580900009],[-54.22492428299995,69.92047760600018],[-54.25560462099995,69.93732330900018],[-54.293527798999975,69.94806549700009],[-54.511708136999886,69.96893952000006],[-54.761341925999915,70.03510163000006],[-54.79409745999993,70.05145905200006],[-54.82787024599992,70.080755927],[-54.831939256999874,70.08559804900007],[-54.841908331999946,70.1749535180001],[-54.82917232999992,70.20083242400001],[-54.80663001199991,70.21718984600001],[-54.78050696499989,70.23041413000006],[-54.75690670499992,70.247015692],[-54.740793423999946,70.25446198100009],[-54.64806067599991,70.26520416900009],[-54.45303300699996,70.31329987200017],[-54.32974199099988,70.32404205900018],[-54.30125891799988,70.3183454450001],[-53.90343176999994,70.29043203300016],[-53.77204342399994,70.26080963700012],[-53.490345831999946,70.24249909100013],[-53.373605923999946,70.21881745000002],[-53.3353165359999,70.20587799700003],[-53.26598059799996,70.20229726800007],[-53.199208136999914,70.1730410830001],[-53.121937628999916,70.15387604400014],[-53.070220506999874,70.13007233300009],[-53.03148352799994,70.11904531500012],[-53.006214972999885,70.10138580900012],[-52.9642634759999,70.065130927],[-52.9322810539999,70.04385000200013],[-52.83397376199994,69.99624258000013],[-52.765288865999935,69.94843170800002],[-52.72809811099995,69.92865631700009]]],[[[-54.6542048819999,70.38287995000015],[-54.667144334999904,70.37775299700014],[-54.71898352799991,70.37978750200007],[-54.85676021999993,70.36896393400009],[-54.926503058999884,70.37474192900005],[-54.985829230999855,70.40086497600011],[-54.99746660099995,70.411322333],[-55.00853430899991,70.42430247599998],[-55.01683508999989,70.43854401200018],[-55.02635657499988,70.47675202000015],[-55.02745520699992,70.48627350500014],[-55.01984615799998,70.48956940300017],[-54.798654751999976,70.457993882],[-54.68211829299994,70.41396719000006],[-54.66441809799994,70.40086497600011],[-54.6542048819999,70.38287995000015]]],[[[-26.14671790299991,70.53123607000013],[-26.09626217399989,70.529242255],[-26.074208136999886,70.52383047100015],[-26.099842902999853,70.51390208500005],[-26.106678839999887,70.50820547100007],[-26.107736782999922,70.50018952000012],[-26.101551886999857,70.48965078300014],[-26.16002356699994,70.46507396000005],[-26.189523891999897,70.4584414730001],[-26.26545162699992,70.45644765800013],[-26.288807745999918,70.45941803600006],[-26.303863084999932,70.46637604400014],[-26.32168535099993,70.47809479400003],[-26.362904425999886,70.48379140800002],[-26.38267981699991,70.48965078300014],[-26.377756313999953,70.49282461100002],[-26.368234829999945,70.50047435100005],[-26.362172003999945,70.5033226580001],[-26.368397589999915,70.50804271],[-26.38267981699991,70.52383047100015],[-26.361398891999926,70.5248884140001],[-26.325306769999884,70.54051341399997],[-26.306996222999913,70.54486725500009],[-26.289173956999942,70.54266998899999],[-26.252349412999877,70.53221263200011],[-26.232533331999946,70.53123607000013],[-26.232533331999946,70.53807200700005],[-26.2413630849999,70.54010651200018],[-26.265980597999913,70.55170319199999],[-26.252919074999852,70.55805084800012],[-26.238880988999878,70.56224192900005],[-26.224029100999925,70.564642645],[-26.208322719999956,70.56537506700012],[-26.193348761999914,70.56415436400012],[-26.18455969999985,70.56000397300006],[-26.16706295499989,70.54144928600006],[-26.14671790299991,70.53123607000013]]],[[[-51.50511633999989,70.67462799700014],[-51.53380286399993,70.654974677],[-51.58340410099996,70.65814850500006],[-51.86131751199994,70.72304922100012],[-51.85635331899988,70.73647695500013],[-51.84732011599987,70.7435570330001],[-51.82042395699992,70.75039297100001],[-51.80064856699988,70.7440453150001],[-51.71336829299988,70.734076239],[-51.67870032499991,70.72504303600009],[-51.66307532499991,70.72304922100012],[-51.62474524599988,70.71771881700009],[-51.50511633999989,70.67462799700014]]],[[[-27.517079230999883,70.88890208500005],[-27.49315344999991,70.8869082700001],[-27.239857550999943,70.89435455900009],[-27.24828040299988,70.88857656500012],[-27.25617428299995,70.884507554],[-27.264312303999873,70.88190338700018],[-27.273426886999857,70.88068268400013],[-27.284575975999896,70.8723005230001],[-27.321848110999948,70.8527692730001],[-27.35676022,70.82514069200012],[-27.369618292999917,70.81801992400005],[-27.410755988999878,70.80499909100008],[-27.498402472999913,70.79075755400008],[-27.581450975999868,70.76064687700013],[-27.671620245999918,70.73847077000006],[-27.697417772999927,70.735296942],[-27.719064907999922,70.73981354400013],[-27.739857550999915,70.75409577000005],[-27.748890753999913,70.76911041900007],[-27.74815833199989,70.78758372600011],[-27.739572719999984,70.81244538000006],[-27.749623175999943,70.825628973],[-27.75763912699992,70.84149811400012],[-27.759999152999853,70.858099677],[-27.753163214999944,70.87323639500009],[-27.722767706999974,70.88857656500012],[-27.676177537999962,70.896918036],[-27.58934485599985,70.90119049700003],[-27.565337693999904,70.89887116100006],[-27.517079230999883,70.88890208500005]]],[[[-51.56582597599992,70.87970612200009],[-51.593820766999954,70.85960521000014],[-51.631214972999885,70.84784577000005],[-51.665353969999984,70.84552643400009],[-51.8411352199999,70.8527692730001],[-51.93024654899989,70.86640045800006],[-52.09520423099991,70.86066315300009],[-52.142486131999874,70.87323639500009],[-52.161366339999915,70.89166901200012],[-52.156809048999946,70.90973541900006],[-52.143422003999945,70.929388739],[-52.13573157499994,70.95270416900009],[-52.113921678999866,70.96963125200007],[-52.06452389199992,70.97858307500012],[-52.01109778599988,70.98053620000013],[-51.938303188999924,70.974310614],[-51.856922980999855,70.94863515800013],[-51.81663977799988,70.94212474200005],[-51.77806555899991,70.93602122600005],[-51.669545050999915,70.89435455900009],[-51.58775794199994,70.88825104400011],[-51.56582597599992,70.87970612200009]]],[[[-25.478016730999883,70.771226304],[-25.461008266999897,70.76845937700013],[-25.357533331999946,70.76894765800002],[-25.32176673099991,70.76178620000017],[-25.317250128999884,70.74697500200001],[-25.31468665299988,70.73338450700005],[-25.29820716099988,70.71369049700012],[-25.283518032999893,70.690863348],[-25.285959438999924,70.66779205900004],[-25.301136847999913,70.65729401200015],[-25.321522589999887,70.65387604400013],[-25.362294074999852,70.65412018400008],[-25.418812628999973,70.64232005400011],[-25.570139126999948,70.63410065300003],[-25.652821417999917,70.60911692900011],[-25.69688880099991,70.60464101800014],[-25.786854620999886,70.60635000200016],[-25.825306769999884,70.60126373900012],[-25.964751756999927,70.54230377800017],[-25.999745245999918,70.53510163000014],[-26.071156378999888,70.53123607000013],[-26.074208136999886,70.53339264500012],[-26.076893683999884,70.53807200700005],[-26.080881313999953,70.54279205900015],[-26.08820553299995,70.54486725500009],[-26.132883266999926,70.54486725500009],[-26.14053300699993,70.54970937700016],[-26.16356360599991,70.57904694200006],[-26.19456946499986,70.587591864],[-26.237945115999906,70.58926015800002],[-26.281809048999946,70.58486562700004],[-26.34825598899988,70.56366608300011],[-26.500355597999885,70.54791901200014],[-26.547678188999924,70.52977122600007],[-26.575103318999876,70.52383047100015],[-26.924549933999913,70.51764557500017],[-26.941761847999913,70.52130768400002],[-26.955067511999943,70.52606842700011],[-26.968495245999918,70.52806224200008],[-26.985991990999878,70.52383047100015],[-26.99388587099986,70.51854075700008],[-27.000884568999933,70.51170482000005],[-27.00902258999986,70.5058047550001],[-27.01984615799995,70.5033226580001],[-27.369130011999914,70.4791256093334],[-27.718413865999963,70.4549285606668],[-28.067697719999956,70.4307315120001],[-28.116118943999936,70.43707916900003],[-28.13735917899993,70.45954010600003],[-28.126820441999968,70.475287177],[-28.10167395699989,70.48704661700008],[-28.01402747299997,70.51373932500009],[-27.995106574999852,70.521877346],[-27.986561652999935,70.53123607000013],[-27.994618292999856,70.54181549700009],[-28.048003709999904,70.55853913000011],[-28.06432044199994,70.58161041900017],[-28.046254035999908,70.5953636740001],[-28.014515753999945,70.60516998900012],[-27.96336829299989,70.6312523460001],[-27.927316860999923,70.63825104400017],[-27.678089972999913,70.65412018400008],[-27.65135657499991,70.66087474200013],[-27.58250891799994,70.709377346],[-27.55565344999985,70.72256094000006],[-27.490834113999938,70.74616120000009],[-27.453684048999946,70.75348541900009],[-27.428578253999945,70.76764557500003],[-27.41462154899989,70.77081940300009],[-27.395497199999905,70.77244700700011],[-27.27171790299985,70.79889557500009],[-27.242014126999916,70.8135440120001],[-27.215402798999886,70.83600495000009],[-27.149647589999912,70.87783437700004],[-27.067494269999912,70.893540757],[-26.662505662999934,70.8964704450001],[-26.30890865799989,70.93854401200015],[-26.28722083199989,70.94660065300012],[-26.246205206999885,70.96881745000015],[-26.2272029289999,70.97455475500013],[-26.082997199999852,70.99339427299999],[-26.02212480399993,71.01455312700007],[-25.70376542899993,71.0858421900001],[-25.676991339999915,71.08612702000012],[-25.676991339999915,71.07868073100003],[-25.683257615999878,71.07811107],[-25.684193488999938,71.075384833],[-25.68333899599986,71.07099030200011],[-25.684437628999888,71.06565989800005],[-25.681752081999914,71.0558942730001],[-25.678537563999953,71.02781810100011],[-25.676991339999915,71.02411530200008],[-25.686838344999927,71.01105377800008],[-25.697865363999878,71.00478750200013],[-25.710682745999918,70.99982330900009],[-25.725453253999916,70.99054596600006],[-25.677642381999874,70.97626373900015],[-25.50877844999985,70.96881745000015],[-25.48534094999988,70.9635277360001],[-25.410064256999902,70.92475006700006],[-25.397572394999884,70.91425202],[-25.37535559799991,70.87323639500009],[-25.384632941999882,70.865912177],[-25.39468339799987,70.859808661],[-25.405425584999875,70.85541413000011],[-25.416900193999908,70.8527692730001],[-25.399159308999913,70.84345123900009],[-25.35533606699994,70.83576080900015],[-25.341175910999937,70.82542552300005],[-25.341786261999886,70.8097191430001],[-25.359730597999942,70.80182526200012],[-25.451527472999885,70.79759349199999],[-25.475005662999877,70.79238515800009],[-25.485218878999888,70.780707098],[-25.478016730999883,70.771226304]]],[[[-25.567128058999852,71.11347077],[-25.561919725999957,71.10716380400005],[-25.538441535999876,71.11139557500017],[-25.510894334999875,71.111761786],[-25.46475175699993,71.10602448100012],[-25.452137824999852,71.10016510600015],[-25.4342341789999,71.08388906500012],[-25.423736131999927,71.07868073100003],[-25.403187628999888,71.07855866100006],[-25.383371548999975,71.08307526200004],[-25.36302649599989,71.0853945980001],[-25.341175910999937,71.07868073100003],[-25.35509192599991,71.07465241100007],[-25.368885870999918,71.06541575700011],[-25.37559973899988,71.05613841400006],[-25.368804490999935,71.0519880230001],[-25.350819464999915,71.04970937700013],[-25.331776495999918,71.04287344000012],[-25.315988735999948,71.03192780200006],[-25.307687954999892,71.01727936400005],[-25.332671678999898,71.01919179900001],[-25.353586391999954,71.024847723],[-25.3958227199999,71.045152085],[-25.400502081999917,71.02627187700007],[-25.413970506999902,71.02741120000012],[-25.430531378999945,71.03921133000007],[-25.444203253999888,71.0519880230001],[-25.444488084999932,71.061224677],[-25.456166144999912,71.0749372420001],[-25.47215735599991,71.08746979400011],[-25.485218878999888,71.09296295800014],[-25.537098761999886,71.08612702000012],[-25.560943162999877,71.08893463700015],[-25.580799933999884,71.10602448100012],[-25.576161261999857,71.10675690300006],[-25.573394334999904,71.10862864800009],[-25.570871548999886,71.11102936400005],[-25.567128058999852,71.11347077]]],[[[-53.51244055899994,71.03774648600002],[-53.66771399599989,71.03168366100012],[-53.87433834499998,71.07404205900012],[-53.89659583199992,71.08246491100006],[-53.96377519399988,71.10211823100012],[-53.9857071609999,71.11774323100009],[-53.97850501199988,71.14760976800008],[-53.954009568999936,71.17064036700008],[-53.9212947259999,71.18756745000006],[-53.8556208979999,71.212795315],[-53.80626380099994,71.240423895],[-53.766346808999884,71.24738190300009],[-53.74649003799996,71.256089585],[-53.647043423999975,71.31395091400002],[-53.611805792999945,71.321722723],[-53.56940670499995,71.29437897300012],[-53.47940019399988,71.22199127800017],[-53.43114173099985,71.19245026200012],[-53.4093318349999,71.17487213700018],[-53.391346808999856,71.15485260600012],[-53.382069464999915,71.13662344000012],[-53.38402258999986,71.11774323100009],[-53.3997289699999,71.09638092700006],[-53.42235266799989,71.07583242400001],[-53.44908606699988,71.056870835],[-53.47940019399988,71.04311758000007],[-53.51244055899994,71.03774648600002]]],[[[-52.66161048099994,71.16840241100007],[-52.95742753799988,71.15444570500001],[-52.975005662999905,71.15761953300007],[-53.0872289699999,71.19944896],[-53.10460364499991,71.20282623900003],[-53.11974036399991,71.212836005],[-53.13508053299995,71.23590729400013],[-53.169545050999886,71.30312734600001],[-53.17747962099994,71.32762278900013],[-53.16974850199994,71.34625885600012],[-53.13630123599997,71.353664455],[-53.09630286399994,71.35785553600012],[-52.97179114499994,71.38715241100006],[-52.6904394194999,71.37040843300004],[-52.40908769399987,71.353664455],[-52.38805091099993,71.34564850500006],[-52.35142981699991,71.30902741100012],[-52.32750403599994,71.29840729400009],[-52.351958787999905,71.276353257],[-52.39696204299989,71.26650625200007],[-52.484852667999945,71.26430898600007],[-52.51911373599992,71.26089101800005],[-52.56212317599994,71.25145091400007],[-52.6034236319999,71.23729075700012],[-52.63223222599993,71.21954987200006],[-52.639515753999945,71.20718008000001],[-52.63906816299993,71.1963565120001],[-52.636830206999974,71.18683502800012],[-52.63906816299993,71.17861562700001],[-52.66161048099994,71.16840241100007]]],[[[-53.07689368399991,71.66022370000015],[-53.055490688999974,71.65932851800007],[-52.99478105399992,71.66779205900009],[-52.77721106699988,71.66543203300016],[-52.75951087099989,71.66152578300014],[-52.809315558999856,71.637152411],[-52.909331834999904,71.60956452000009],[-53.07359778599988,71.586615302],[-53.10147050699993,71.57217031500011],[-53.10179602799988,71.567531643],[-53.0995173819999,71.560288804],[-53.09821529899989,71.55231354400003],[-53.10147050699993,71.54547760600012],[-53.112456834999904,71.54096100500006],[-53.162953253999916,71.53119538000011],[-53.229359503999945,71.53017812700016],[-53.29385331899991,71.53864166900007],[-53.40562903599994,71.54669830900004],[-53.43724524599992,71.55849844],[-53.45409094999994,71.57941315300015],[-53.466908331999974,71.63410065300009],[-53.47826087099995,71.65534088700008],[-53.43724524599992,71.66836172100007],[-53.39867102799985,71.67438385600018],[-53.139393683999856,71.67108795800014],[-53.07689368399991,71.66022370000015]]],[[[-55.56086178299998,71.82143789300015],[-55.60977128799996,71.82143789300015],[-55.69815019399991,71.83266836100013],[-55.726389126999976,71.84332916900009],[-55.76475989499988,71.86774323100003],[-55.78302975199994,71.876166083],[-55.80825761599993,71.881252346],[-55.787098761999914,71.89988841400002],[-55.6869197259999,71.91718170799999],[-55.64732825399997,71.92731354400014],[-55.60423743399994,71.93292877800015],[-55.561024542999945,71.93357982000002],[-55.463612433999884,71.91771067900008],[-55.43578040299991,71.908107815],[-55.41104081899993,71.894232489],[-55.44908606699994,71.86286041900014],[-55.503081834999925,71.83690013200008],[-55.56086178299998,71.82143789300015]]],[[[-55.04796301999997,72.31883372600004],[-55.03966223899991,72.30809153900013],[-55.034738735999916,72.30353424700009],[-55.02745520699992,72.2995466170001],[-55.04450436099998,72.30019765800016],[-55.07323157499994,72.31159088700012],[-55.08893795499989,72.31264883000007],[-55.103505011999914,72.30585358300014],[-55.11221269399991,72.29458242400015],[-55.119536912999905,72.28196849199999],[-55.12987219999991,72.27167389500006],[-55.15099036399994,72.26422760600018],[-55.19839433499996,72.25885651200012],[-55.21930904899991,72.25116608299999],[-55.23167883999986,72.24054596600014],[-55.25365149599989,72.21572500200001],[-55.26707923099988,72.20648834800012],[-55.33910071499988,72.17670319200012],[-55.37612870999993,72.16722239800012],[-55.43537350199992,72.1598574890001],[-55.4686580069999,72.15070221600014],[-55.48619544199993,72.14874909100011],[-55.50487219999994,72.15232982],[-55.534331834999904,72.1694196640001],[-55.555083787999905,72.17544179900013],[-55.64704342399991,72.17902252800009],[-55.68293209499992,72.19000885600015],[-55.67174231699991,72.217027085],[-55.63760331899991,72.23330312700013],[-55.449859178999866,72.25885651200012],[-55.43464107999989,72.26797109600001],[-55.43569902299992,72.28066640800007],[-55.459868943999936,72.283148505],[-55.53164628799993,72.27521393400004],[-55.602853969999956,72.27789948100012],[-55.62718665299993,72.28339264500015],[-55.63312740799995,72.294378973],[-55.62393144399988,72.3026390650001],[-55.602853969999956,72.30573151200015],[-55.58372962099989,72.29962799700009],[-55.41852779899992,72.29214101800004],[-55.38072669199997,72.29987213700004],[-55.30663001199991,72.32558828300006],[-55.26768958199992,72.33307526200004],[-55.2090551419999,72.33307526200004],[-55.19981848899994,72.33519114800004],[-55.14769446499989,72.36981842700014],[-55.13304602799988,72.37409088700015],[-55.044056769999884,72.38336823100009],[-55.01317298099991,72.38153717700011],[-55.013417120999854,72.36640045800011],[-55.01683508999989,72.345445054],[-55.027007615999935,72.32684967699998],[-55.04796301999997,72.31883372600004]]],[[[-55.67442786399991,72.7705752620001],[-55.69090735599988,72.76463450700008],[-55.69758053299992,72.75543854400009],[-55.68480383999989,72.74457428600012],[-55.698841925999936,72.73273346600014],[-55.71092688699986,72.71678294500005],[-55.726226365999906,72.70282623900009],[-55.75031490799992,72.69684479400014],[-55.763905402999875,72.69501373900009],[-55.786284959999904,72.68870677300005],[-55.80211341099994,72.689398505],[-55.83958899599989,72.69741445500011],[-55.87718665299988,72.70990631700012],[-55.85676021999989,72.71670156500006],[-55.876576300999915,72.72288646000014],[-55.903065558999884,72.72345612200009],[-55.92682858,72.71723053600014],[-55.93862870999996,72.70302969000012],[-55.93565833199994,72.68915436400015],[-55.92471269399987,72.679388739],[-55.89769446499991,72.66205475500011],[-55.91787675699996,72.66225820500007],[-55.953846808999934,72.67291901200008],[-55.97280839799993,72.67572663000006],[-55.99592037699989,72.67234935100012],[-56.03815670499991,72.65802643400004],[-56.06216386599996,72.655218817],[-56.153797980999855,72.66095612200014],[-56.17821204299992,72.66889069200012],[-56.188343878999945,72.67755768400004],[-56.19835364499994,72.68878815300003],[-56.21019446499991,72.69867584800012],[-56.22598222599996,72.70302969000012],[-56.22598222599996,72.70990631700012],[-56.19546464799993,72.71605052300009],[-56.12718665299991,72.713120835],[-56.09666907499987,72.720404364],[-56.07079016799986,72.73037344],[-56.00096594999994,72.74457428600012],[-55.97280839799993,72.74457428600012],[-55.98371334499993,72.75763580900008],[-55.99010169199994,72.76162344000006],[-56.00011145699992,72.76508209800005],[-55.97203528599991,72.773138739],[-55.86388098899994,72.77130768400004],[-55.7721248039999,72.78204987200004],[-55.746896938999924,72.78558991100012],[-55.73940995999996,72.778753973],[-55.74388587099992,72.76947663000006],[-55.72618567599991,72.77252838700004],[-55.68480383999989,72.78558991100012],[-55.66576087099989,72.78538646000008],[-55.64696204299986,72.78148021000007],[-55.64024817599991,72.77594635600015],[-55.657460089999915,72.77130768400004],[-55.67442786399991,72.7705752620001]]],[[[-54.977935350999864,72.8046735700001],[-55.045033331999946,72.79022858300006],[-55.06847083199992,72.778753973],[-55.07555091099988,72.7648786480001],[-55.08112545499989,72.748968817],[-55.09068762899989,72.73578522300015],[-55.109730597999885,72.73037344],[-55.12441972599987,72.728216864],[-55.15343176999997,72.71881745000017],[-55.223784959999875,72.71185944200009],[-55.239409959999875,72.70648834800012],[-55.28075110599991,72.6862246770001],[-55.28978430899991,72.67865631700006],[-55.29149329299991,72.66998932500017],[-55.2911677729999,72.66168854400009],[-55.29434160099996,72.655218817],[-55.31802324099988,72.64321523600006],[-55.339466925999915,72.63833242400001],[-55.357329881999874,72.63165924700014],[-55.37010657499991,72.61424388200008],[-55.36876380099994,72.605902411],[-55.364898240999935,72.59699127800015],[-55.36705481699993,72.58991120000012],[-55.383778449999845,72.58698151200018],[-55.39635169199993,72.587795315],[-55.40318762899997,72.59088776200016],[-55.40363521999995,72.59711334800012],[-55.39679928299995,72.60748932500003],[-55.42682857999989,72.6163597680001],[-55.44810950399997,72.6029727230001],[-55.466216600999864,72.58340078300002],[-55.4864802729999,72.57330963700007],[-55.50031490799989,72.56952545800011],[-55.52892005099997,72.55524323100003],[-55.541127081999946,72.55560944200015],[-55.56737219999988,72.56769440300015],[-55.57921301999994,72.57538483300006],[-55.5892227859999,72.58698151200018],[-55.56729081899988,72.59711334800012],[-55.479969855999904,72.61424388200008],[-55.50743567599994,72.61953359600015],[-55.5892227859999,72.62051015800004],[-55.61237545499994,72.63068268400015],[-55.63011633999986,72.64476146000011],[-55.648060675999886,72.65371328300013],[-55.67174231699991,72.64842357000008],[-55.67613684799991,72.64362213700018],[-55.67642167899992,72.637884833],[-55.676177537999905,72.632269598],[-55.678578253999945,72.62791575700011],[-55.69310462099989,72.61961497600014],[-55.70677649599991,72.61538320500001],[-55.72158769399988,72.61395905200014],[-55.73940995999996,72.61424388200008],[-55.8209529289999,72.617621161],[-55.849273240999935,72.61424388200008],[-55.83458411399994,72.63939036700005],[-55.81541907499988,72.65631745000002],[-55.791005011999914,72.66583893400004],[-55.67878170499989,72.67658112200014],[-55.63634192599991,72.68903229400017],[-55.60968990799998,72.70990631700012],[-55.60529537699989,72.73297760600009],[-55.61082923099991,72.74884674700003],[-55.60724850199994,72.75901927300008],[-55.57555091099988,72.76508209800005],[-55.508290167999945,72.76715729400009],[-55.447255011999886,72.78131745000012],[-55.40420488199993,72.78558991100012],[-55.378041144999884,72.80426666900009],[-55.24657141799992,72.819769598],[-55.14073645699992,72.79987213700011],[-55.125477667999945,72.79913971600008],[-55.109445766999954,72.80609772300006],[-55.19945227799991,72.81732819200009],[-55.2267146479999,72.82656484600012],[-55.23289954299989,72.84023672100007],[-55.21621660099993,72.844875393],[-55.19884192599994,72.84699127800012],[-54.98460852799994,72.8233096370001],[-54.965443488999966,72.81232330900004],[-54.977935350999864,72.8046735700001]]],[[[-23.930409308999913,72.88153717700011],[-23.80064856699994,72.85956452],[-23.715443488999878,72.86009349199998],[-23.633168097999913,72.83795807500009],[-23.146799282999947,72.84019603100008],[-23.137033657999922,72.84003327000012],[-23.12726803299989,72.83661530200011],[-23.119496222999885,72.829820054],[-23.114165818999908,72.819769598],[-23.103871222999913,72.81561920800009],[-23.067005988999938,72.79425690300012],[-23.04515540299988,72.75995514500006],[-23.014800584999904,72.74673086100002],[-22.984527147999927,72.73749420800006],[-22.97081458199989,72.72724030200011],[-22.95140540299988,72.71686432500002],[-22.866078253999916,72.70722077000006],[-22.84666907499991,72.6862246770001],[-22.729603644999912,72.66795482000003],[-22.7032771479999,72.64842357000008],[-22.709299282999922,72.6452497420001],[-22.71231035099993,72.64199453300016],[-22.714344855999855,72.63849518400015],[-22.717518683999913,72.63471100500014],[-22.58674068899998,72.607611395],[-22.552357550999943,72.608547268],[-22.518299933999913,72.61424388200008],[-22.491851365999935,72.62628815300009],[-22.48151607999992,72.62645091400005],[-22.476714647999927,72.61424388200008],[-22.465402798999946,72.60333893400009],[-22.44587154899989,72.59564850500009],[-22.401275193999904,72.59381745000009],[-22.376535610999923,72.58942291900003],[-22.32453365799995,72.57021719000006],[-22.182484503999913,72.54535553600012],[-22.164906378999888,72.53839752800002],[-22.151926235999895,72.52846914300012],[-22.150624152999907,72.51837799700014],[-22.168202277999853,72.51064687700016],[-22.174549933999884,72.50812409100003],[-22.187123175999943,72.503119208],[-22.197092251999948,72.49518463700004],[-22.202300584999932,72.48395416900001],[-22.02830969999991,72.50438060100002],[-21.98656165299988,72.5004336610001],[-21.951730923999918,72.48810455900015],[-21.93537350199992,72.46686432500009],[-21.94908606699994,72.43618398600007],[-21.94908606699994,72.4286970070001],[-21.935047980999883,72.41347890800013],[-21.92861894399988,72.40818919500008],[-21.96190344999988,72.39008209800015],[-22.005726691999936,72.386419989],[-22.0521541009999,72.39207591399999],[-22.15770423099988,72.42031484600015],[-22.252756313999953,72.42829010600012],[-22.271311001999976,72.43618398600007],[-22.26598059799991,72.43964264500009],[-22.2630102199999,72.44285716400005],[-22.26085364499988,72.44635651200002],[-22.257639126999948,72.450384833],[-22.284331834999875,72.44904205900009],[-22.332875128999916,72.43280670800006],[-22.36034094999988,72.4286970070001],[-22.64142818899992,72.465521552],[-22.675933397999927,72.46344635600018],[-22.725900844999956,72.45351797100007],[-22.76012122299994,72.44106679900015],[-22.76130123599998,72.436957098],[-22.7551977199999,72.43301015800002],[-22.749338344999956,72.4230410830001],[-22.740549282999893,72.41913483300011],[-22.73680579299986,72.41567617400013],[-22.7356664699999,72.41083405200006],[-22.73839270699989,72.408880927],[-22.74229895699989,72.40770091399999],[-22.744211391999926,72.40509674700017],[-22.740956183999884,72.39179108300006],[-22.732818162999873,72.38369375200013],[-22.675160285999908,72.36163971600003],[-22.327381964999887,72.31045156500008],[-22.29857337099986,72.29214101800004],[-22.3196508449999,72.26422760600018],[-22.303049282999922,72.2572695980001],[-22.281564907999893,72.25592682500009],[-22.25999915299988,72.26056549700003],[-22.243397589999944,72.27167389500006],[-22.246978318999908,72.28253815300003],[-22.221018032999922,72.28729889500012],[-22.1614477199999,72.28530508000001],[-22.10456295499995,72.27484772300012],[-22.045318162999877,72.27167389500006],[-22.062163865999874,72.26312897300012],[-22.1204320949999,72.24433014500009],[-22.17528235599991,72.21381256700015],[-22.196156378999973,72.20962148600002],[-22.190297003999916,72.19733307500015],[-22.180287238999934,72.19135163000014],[-22.155181443999933,72.1828473980001],[-22.13304602799988,72.169094143],[-22.12523352799988,72.15936920800014],[-22.146229620999918,72.15167877800003],[-22.18187415299988,72.131089585],[-22.20128333199989,72.12514883000007],[-22.250355597999913,72.12099844000012],[-22.524891730999883,72.13483307500002],[-22.600209113999966,72.15497467700006],[-22.600209113999966,72.16242096600006],[-22.54133053299989,72.176459052],[-22.51471920499995,72.18817780200008],[-22.497792120999858,72.20962148600002],[-22.544300910999908,72.21735260600003],[-22.55923417899993,72.21332428600006],[-22.593129035999908,72.19033437700007],[-22.607655402999853,72.1828473980001],[-22.646392381999874,72.17202383000001],[-22.68464107999992,72.17129140800006],[-22.721913214999887,72.17885976800012],[-22.80361894399988,72.20880768400009],[-22.948353644999884,72.23883698100015],[-22.97569739499997,72.24990469],[-22.99551347599987,72.2611758480001],[-23.028553839999912,72.28872304900001],[-23.065093553999873,72.3100039730001],[-23.356271939499948,72.36603424649998],[-23.64745032499991,72.42206452000015],[-23.762277798999918,72.42820872600014],[-23.905629035999937,72.46613190300015],[-23.953277147999927,72.47288646],[-23.998646613999938,72.47028229400009],[-24.015004035999937,72.46401601800012],[-24.039173956999946,72.446926174],[-24.05329342399989,72.44293854400003],[-24.06354732999992,72.44525788],[-24.073882615999906,72.45164622600011],[-24.080881313999896,72.46059804900013],[-24.08055579299989,72.47028229400009],[-24.05614173099991,72.48078034100014],[-24.018625454999892,72.48786041900003],[-23.998443162999877,72.49896881700006],[-24.025949673999918,72.52142975500006],[-24.0631404289999,72.53733958500008],[-24.098500128999913,72.54694245000015],[-24.14024817599994,72.55097077000012],[-24.135161912999934,72.54535553600012],[-24.161610480999908,72.53099192900005],[-24.205555792999856,72.54295482],[-24.286000128999916,72.579535223],[-24.330922003999916,72.58588288000014],[-24.35179602799991,72.59129466399999],[-24.37169348899991,72.60407135600003],[-24.378163214999887,72.61286041900009],[-24.395863410999908,72.6452497420001],[-24.397816535999937,72.65546295800014],[-24.40660559799991,72.67853424700009],[-24.408924933999884,72.689398505],[-24.408070441999882,72.70213450700014],[-24.40599524599986,72.71295807500003],[-24.405384894999912,72.72406647300006],[-24.408924933999884,72.73777903899999],[-24.423451300999915,72.76325104400009],[-24.443430141999897,72.78709544499999],[-24.485259568999908,72.82656484600012],[-24.467396613999938,72.84324778899999],[-24.43545488199993,72.85370514500006],[-24.400135870999918,72.85911692900011],[-23.930409308999913,72.88153717700011]]],[[[-24.779449022999923,72.90167877800015],[-24.799672003999945,72.887640692],[-24.882476365999878,72.86749909100017],[-24.87230383999986,72.85390859600001],[-24.868234829999892,72.83466217700006],[-24.86937415299991,72.81460195500001],[-24.875070766999897,72.79857005400011],[-24.901437954999892,72.78204987200004],[-24.941395636999854,72.779201565],[-25.041574673999975,72.7878278670001],[-25.094146287999905,72.80609772300006],[-25.286854620999918,72.83405182500012],[-25.320668097999885,72.84699127800012],[-25.28921464799987,72.84520091400013],[-25.21226966099988,72.85228099199999],[-25.18350175699993,72.86066315300015],[-25.174875454999917,72.86676666900003],[-25.158273891999954,72.88320547100011],[-25.14940344999991,72.88861725500009],[-25.128285285999905,72.89227936400012],[-25.056955532999922,72.88861725500009],[-25.036488410999933,72.89175039300015],[-24.995594855999908,72.9053408870001],[-24.974680141999954,72.908433335],[-24.799916144999884,72.91596100500006],[-24.787098761999857,72.91547272300006],[-24.776478644999912,72.9135602890001],[-24.77253170499992,72.90936920800009],[-24.779449022999923,72.90167877800015]]],[[[-55.52090410099993,73.05247630400005],[-55.159331834999904,72.9977481140001],[-55.100412563999924,72.9806175800001],[-55.06847083199992,72.95685455900009],[-55.08263098899994,72.95709870000003],[-55.096547003999916,72.95477936400006],[-55.109283006999874,72.94928620000003],[-55.11998450399991,72.94013092700006],[-55.13361568899995,72.93244049700003],[-55.29971269399991,72.9221865910001],[-55.3290909499999,72.92963288],[-55.31639563699986,72.94529857000008],[-55.32445227799988,72.95685455900009],[-55.35582434799991,72.97052643400004],[-55.35265051999996,72.97638580900013],[-55.3495173819999,72.98550039300007],[-55.349598761999886,72.99404531500008],[-55.35582434799991,72.99848053600006],[-55.36473548099988,72.99673086100015],[-55.36856035099987,72.99079010600003],[-55.371245897999955,72.98338450700005],[-55.376942511999935,72.97736237200006],[-55.40318762899997,72.96662018400004],[-55.43578040299991,72.9581566430001],[-55.50047766799985,72.95010000200016],[-55.525013800999965,72.95319245000003],[-55.59605872299994,72.97736237200006],[-55.67129472599992,72.98639557500015],[-55.69225012899997,72.99848053600006],[-55.60968990799998,73.03603750200007],[-55.58800208199989,73.04120514500006],[-55.53648841099991,73.04523346600003],[-55.52090410099993,73.05247630400005]]],[[[-23.238270636999886,73.07526276200018],[-22.92243404899989,73.03949616100006],[-22.819325324999852,73.03949616100006],[-22.79356848899991,73.0358747420001],[-22.74498450399994,73.02204010600008],[-22.255034959999932,72.978461005],[-22.09544837099989,72.9299990910001],[-22.08629309799988,72.92963288],[-22.08580481699991,72.93183014500009],[-22.083159959999904,72.93671295800006],[-22.078724738999938,72.94159577000012],[-22.072621222999942,72.94383372600002],[-22.046254035999965,72.94013092700006],[-22.02179928299992,72.93398672100007],[-21.996937628999973,72.93268463700016],[-21.969593878999888,72.94383372600002],[-21.957834438999924,72.92934804900015],[-21.937367316999936,72.92475006700012],[-21.915842251999948,72.92275625200006],[-21.90074622299994,72.91596100500006],[-21.898060675999943,72.91095612200012],[-21.896066860999923,72.90558502800015],[-21.893218553999873,72.90021393400009],[-21.887684699999852,72.89545319199999],[-21.91673743399994,72.88641998899999],[-21.97935950399994,72.87909577000009],[-22.00438391799986,72.86066315300015],[-21.996693488999938,72.85809967700014],[-21.97642981699991,72.84699127800012],[-21.988392706999946,72.84381745000015],[-22.021148240999878,72.84699127800012],[-22.03416907499985,72.8453636740001],[-22.07323157499991,72.83397044500013],[-22.160267706999974,72.82265859600011],[-22.188710089999887,72.81232330900004],[-22.159779425999883,72.80426666900009],[-22.13524329299986,72.80438873900006],[-22.11363684799997,72.806830145],[-22.093088344999927,72.80609772300006],[-22.090931769999912,72.80353424700017],[-22.088978644999884,72.79889557500006],[-22.084868943999908,72.79441966399999],[-22.076039191999968,72.79242584800012],[-21.994984503999916,72.78335195500013],[-21.978993292999917,72.77960846600011],[-21.963368292999945,72.77130768400004],[-21.97813880099991,72.766302802],[-22.02489173099991,72.75824616100006],[-22.01610266799994,72.74848053600003],[-22.004709438999953,72.745062567],[-21.97642981699991,72.74457428600012],[-21.968739386999886,72.74567291900014],[-21.96275794199988,72.74848053600003],[-21.956654425999883,72.75039297100005],[-21.948841925999915,72.74835846600006],[-21.93455969999991,72.73883698100003],[-21.92861894399988,72.73777903899999],[-21.900461391999897,72.73358795800006],[-21.87865149599986,72.72329336100013],[-21.874908006999902,72.70990631700012],[-21.90074622299994,72.69684479400014],[-21.895659959999904,72.69476959800012],[-21.896311001999948,72.69330475500009],[-21.90074622299994,72.689398505],[-21.894520636999886,72.689398505],[-21.918934699999905,72.68480052300005],[-21.994536912999934,72.68256256700006],[-22.01056881399992,72.6862246770001],[-22.020415818999936,72.69651927300013],[-22.04320227799988,72.69586823100009],[-22.08629309799988,72.689398505],[-22.045318162999877,72.71670156500006],[-22.07017981699991,72.720933335],[-22.10362708199989,72.71881745000017],[-22.13703365799995,72.71222565300009],[-22.1614477199999,72.70302969000012],[-22.169504360999923,72.69562409100014],[-22.26504472599993,72.70990631700012],[-22.654042120999886,72.69806549700017],[-22.692046678999898,72.70465729400014],[-22.723133917999917,72.71670156500006],[-22.618519660999908,72.72418854400003],[-22.61388098899991,72.73777903899999],[-22.63133704299986,72.74457428600012],[-22.710072394999937,72.74457428600012],[-22.741851365999878,72.75250885600018],[-22.771555141999897,72.76508209800005],[-22.7599177729999,72.77741120000012],[-22.763050910999876,72.78733958500011],[-22.775461391999897,72.79458242400013],[-22.79198157499988,72.79857005400011],[-22.785227016999926,72.80609772300006],[-22.819569464999887,72.81879303600014],[-23.163319464999855,72.87791575700005],[-23.262847459999904,72.8715681010001],[-23.352650519999912,72.87872955900015],[-23.47044837099986,72.87498607000013],[-23.464222785999908,72.87498607000013],[-23.616078253999945,72.87091705900018],[-23.718983527999853,72.89691803600006],[-23.831125454999892,72.90778229400014],[-24.17867997949992,72.90473053600006],[-24.526234503999913,72.90167877800015],[-24.550038214999915,72.91030508000016],[-24.57412675699993,72.9278832050001],[-24.58690344999988,72.95042552299999],[-24.577137824999852,72.97394440300002],[-24.536488410999965,72.99188873900009],[-24.157826301499938,73.00366852400005],[-23.77916419199991,73.01544830900004],[-23.704335089999855,73.030707098],[-23.55235755099991,73.03266022300014],[-23.238270636999886,73.07526276200018]]],[[[-21.328277147999927,73.10097890800013],[-21.39671790299988,73.09975820500001],[-21.462513800999943,73.12140534100011],[-21.361887173999946,73.14712148600016],[-21.325917120999858,73.14809804900013],[-21.203521287999877,73.14606354400009],[-21.168324347999942,73.1344261740001],[-21.178618943999936,73.13300202000012],[-21.185943162999962,73.13035716400005],[-21.1896052729999,73.12645091400005],[-21.188791469999895,73.12140534100011],[-21.328277147999927,73.10097890800013]]],[[[-24.00731360599991,73.36077166033346],[-23.618763800999858,73.30594852666674],[-23.23021399599986,73.2511253930001],[-23.209787563999896,73.23126862200009],[-23.257801886999886,73.22113678600012],[-23.685963507999897,73.24718862524999],[-24.114125128999916,73.27324046450012],[-24.542286749999903,73.29929230375016],[-24.970448370999918,73.325344143],[-24.99242102799985,73.32160065300017],[-25.01219641799986,73.31317780200011],[-24.985463019999937,73.30654531500006],[-24.958119269999884,73.31000397300006],[-24.930409308999884,73.31688060100008],[-24.907460089999915,73.31728750200007],[-24.882639126999948,73.31395091400005],[-24.816883917999856,73.30182526200015],[-24.43675696499986,73.27391185100011],[-24.374256964999915,73.256293036],[-24.30650794199988,73.26536692899998],[-24.056935187999926,73.23287588100011],[-23.80736243399988,73.20038483300011],[-23.78575598899991,73.20331452000015],[-23.76622473899991,73.1952985700001],[-23.423430956499885,73.18563467000014],[-23.08063717399989,73.17597077000009],[-22.992787238999906,73.1515973980001],[-22.963978644999884,73.14809804900013],[-22.89244544199994,73.15802643400004],[-22.916249152999907,73.14801666900014],[-22.96198482999992,73.11440664300012],[-22.98070227799991,73.10712311400003],[-23.476307746666578,73.08344147333334],[-23.971913215333245,73.05975983266673],[-24.467518683999913,73.03607819200006],[-24.524281378999888,73.04791901200011],[-24.556548631999902,73.05296458500005],[-24.65282141799994,73.0462914080001],[-24.67552649599989,73.04950592700004],[-24.751535610999895,73.07294342700011],[-24.8854060539999,73.07855866100012],[-25.063221808999856,73.11835358300011],[-25.430531378999945,73.12140534100011],[-25.573475714999883,73.14826080900009],[-25.658558722999885,73.17641836100007],[-25.701527472999942,73.182806708],[-25.70726477799991,73.18471914300015],[-25.710438605999883,73.18927643400009],[-25.710804816999882,73.19489166900009],[-25.70799719999985,73.20018138200007],[-25.69945227799991,73.20701732],[-25.69115149599986,73.21010976800007],[-25.64635169199991,73.2139346370001],[-25.600493943999908,73.22809479400001],[-25.577381964999887,73.23126862200009],[-25.567534959999932,73.23468659100008],[-25.533314581999974,73.26166413000006],[-25.449533657999947,73.297308661],[-25.31236731699991,73.32001373900015],[-25.285959438999924,73.33368561400007],[-25.285755988999966,73.34756094000006],[-25.294829881999874,73.35903554900001],[-25.30215410099987,73.370754299],[-25.296783006999902,73.38519928600005],[-25.272572394999912,73.40249258000016],[-25.243519660999937,73.41111888200005],[-24.85179602799988,73.41807688999997],[-24.46007239499994,73.42503489800005],[-24.395863410999908,73.41559479400003],[-24.00731360599991,73.36077166033346]]],[[[-55.92617753799993,73.56293366100012],[-55.92052161399994,73.55451080900018],[-55.91136633999986,73.54588450700008],[-55.89903723899991,73.5400251320001],[-55.815256313999896,73.52187734600012],[-55.726063605999855,73.51414622600011],[-55.66991126199994,73.49648672100001],[-55.62336178299992,73.49135976800008],[-55.60968990799998,73.48525625200001],[-55.591460740999906,73.46954987200003],[-55.58238684799988,73.46401601800004],[-55.553618943999936,73.46019114800009],[-55.52013098899991,73.45966217700011],[-55.49034583199988,73.45270416900003],[-55.47252356699991,73.42987702000012],[-55.549631313999974,73.42365143400015],[-55.58967037699992,73.41600169500013],[-55.60968990799998,73.39508698100013],[-55.59976152299987,73.39288971600008],[-55.59593665299985,73.39052969000012],[-55.593820766999954,73.38703034100003],[-55.5892227859999,73.38149648600002],[-55.62559973899991,73.37995026200015],[-55.63703365799995,73.38149648600002],[-55.64753170499992,73.38666413000011],[-55.65416419199988,73.39374420800009],[-55.661610480999855,73.39988841400006],[-55.674549933999884,73.40253327000015],[-55.69591223899991,73.3996442730001],[-55.71393795499995,73.39435455900004],[-55.73200436099995,73.39118073100018],[-55.75373287699995,73.39508698100013],[-55.73550370999996,73.41372304900015],[-55.70494544199993,73.41461823100015],[-55.67223059799991,73.411851304],[-55.647572394999905,73.41925690300017],[-55.64024817599991,73.43744538000006],[-55.656239386999914,73.44647858300009],[-55.68053137899989,73.44944896],[-55.698475714999915,73.44969310100014],[-55.68565833199989,73.45425039300007],[-55.67528235599991,73.46206289300007],[-55.66795813699988,73.472357489],[-55.66429602799994,73.48444245000009],[-55.72520911399993,73.46759674700009],[-55.752430792999945,73.46409739800002],[-55.78038489499996,73.47085195500013],[-55.78172766799986,73.47394440300003],[-55.78034420499998,73.47858307500013],[-55.779896613999874,73.48273346600008],[-55.78408769399991,73.48444245000009],[-55.794545050999886,73.48554108300014],[-55.81509355399993,73.49022044500005],[-55.86693274599995,73.49408600500006],[-55.88581295499998,73.50031159100003],[-55.89769446499991,73.51239655200011],[-55.89024817599994,73.51316966400003],[-55.8710017569999,73.51862213700018],[-55.8978572259999,73.52960846600006],[-55.962473110999916,73.524603583],[-55.99388587099986,73.52545807500007],[-56.083892381999924,73.55353424700009],[-56.116810675999915,73.55955638200011],[-56.09666907499987,73.57123444199999],[-56.07213294199993,73.57770416900011],[-56.04857337099992,73.57782623900009],[-56.03111731699994,73.57046133000007],[-56.00763912699997,73.56061432500015],[-55.96776282499991,73.57819245000009],[-55.94546464799987,73.5738792990001],[-55.932972785999965,73.56981028900005],[-55.92617753799993,73.56293366100012]]],[[[-56.288075324499935,73.88475169500005],[-55.98485266799986,73.85586172100012],[-55.96418209499993,73.84662506700009],[-55.95457923099985,73.83299388200014],[-55.96593176999993,73.81403229400003],[-55.998443162999905,73.80516185100007],[-56.127064581999946,73.827093817],[-56.16380774599995,73.82436758000013],[-56.19871985599985,73.81403229400003],[-56.23599199099993,73.795111395],[-56.24681555899994,73.79238515800013],[-56.31700598899988,73.78660716400007],[-56.34850012899989,73.7899437520001],[-56.35700436099992,73.80658600500014],[-56.345570441999875,73.81045156500015],[-56.334828253999945,73.81635163000009],[-56.324940558999856,73.82420482000008],[-56.31602942599991,73.83392975500011],[-56.33531653599993,73.83991120000003],[-56.61668860599994,73.81614817900014],[-56.65868079299992,73.81883372600011],[-56.69277910099993,73.84137604400009],[-56.631337042999945,73.861232815],[-56.65713456899988,73.87909577000006],[-56.7447810539999,73.86835358300014],[-56.77476966099994,73.8823102890001],[-56.62389075399997,73.92328522300012],[-56.59129798099991,73.91364166900017],[-56.288075324499935,73.88475169500005]]],[[[-20.94237219999991,74.43036530199998],[-20.921254035999908,74.42527903900007],[-20.856353318999936,74.43036530199998],[-20.547596808999884,74.40989817900011],[-20.53335527299987,74.40672435100004],[-20.51073157499991,74.390082098],[-20.49608313699991,74.38263580900004],[-20.45824133999986,74.36896393400009],[-20.44163977799991,74.35797760600003],[-20.43464107999992,74.34442780200008],[-20.438710089999887,74.33649323100012],[-20.45734615799995,74.32904694200012],[-20.462554490999874,74.32054271],[-20.460804816999882,74.30914948100002],[-20.453033006999874,74.30536530200011],[-20.442250128999945,74.30312734600011],[-20.431263800999915,74.296332098],[-20.42711341099988,74.29035065300009],[-20.425119594999927,74.28583405200014],[-20.42015540299988,74.28070709800012],[-20.40733801999994,74.27277252800015],[-20.352691209999904,74.25165436400015],[-20.297515428999873,74.23216380400005],[-20.269398566999964,74.2271996110001],[-20.249663865999935,74.231146552],[-20.2213435539999,74.22134023600016],[-20.177316860999976,74.219427802],[-20.140248175999943,74.21320221600014],[-20.132964647999927,74.19017161700008],[-20.161529100999925,74.16876862200003],[-20.464873827499872,74.14366282750008],[-20.76821855399993,74.11855703300013],[-20.87515214799987,74.122219143],[-21.025461391999894,74.09634023600007],[-21.26866614499991,74.08779531500006],[-21.278635219999895,74.08954498900006],[-21.405873175999943,74.13719310100014],[-21.66940263549992,74.17243073099998],[-21.932932094999984,74.20766836100002],[-21.97996985599991,74.22528717700014],[-21.986968553999873,74.2482363950001],[-21.960560675999886,74.2743187520001],[-21.9596248039999,74.27960846600017],[-21.94440670499992,74.29271067900014],[-21.94172115799995,74.296332098],[-21.90074622299994,74.31370677299999],[-21.896107550999915,74.31435781500012],[-21.885161912999934,74.31268952000012],[-21.880848761999943,74.31370677299999],[-21.876861131999874,74.318793036],[-21.87588456899988,74.32493724199999],[-21.875599738999938,74.33063385600015],[-21.874012824999905,74.33421458500013],[-21.858062303999898,74.34369538000014],[-21.8399958979999,74.35122304900001],[-21.54352779899989,74.4041608745001],[-21.24705969999991,74.45709870000009],[-20.980946417999885,74.450181382],[-20.968739386999914,74.44818756700005],[-20.95596269399988,74.44403717700011],[-20.95140540299994,74.44086334800015],[-20.94237219999991,74.43036530199998]]],[[[-56.48473059799997,74.49970123900015],[-56.51821855399993,74.49481842700008],[-56.72647050699993,74.49371979400001],[-56.72691809799991,74.49803294500013],[-57.0939021479999,74.48847077000012],[-57.19517981699994,74.47333405200014],[-57.50951087099992,74.48139069200009],[-57.55622311099989,74.49188873900015],[-57.55622311099989,74.49803294500013],[-57.20199540899998,74.51837799700012],[-56.847767706999946,74.53872304900001],[-56.76789303299994,74.55707428600005],[-56.712880011999886,74.56073639500003],[-56.619496222999885,74.55198802300013],[-56.52769934799991,74.53278229400007],[-56.53026282499994,74.52602773600013],[-56.53482011599987,74.52260976800012],[-56.548817511999935,74.51976146],[-56.46686764199989,74.51235586100002],[-56.48473059799997,74.49970123900015]]],[[[-18.80109615799995,74.63410065300002],[-18.810292120999947,74.6222191430001],[-18.771839972999942,74.62303294500002],[-18.75291907499991,74.6261253930001],[-18.735218878999913,74.63247304900001],[-18.726226365999906,74.63300202000009],[-18.723500128999916,74.62661367400007],[-18.72834225199989,74.61884186400005],[-18.74205481699994,74.61542389500006],[-18.74323482999995,74.612209377],[-18.743031378999916,74.60919830900009],[-18.744252081999917,74.6074079450001],[-18.74950110599991,74.60789622600002],[-18.728911912999877,74.58755117400001],[-18.736195441999882,74.57273997600014],[-18.75853430899991,74.56240469000012],[-18.823353644999912,74.54730866100012],[-19.14639238199996,74.55133698100009],[-19.173491990999878,74.54523346600011],[-19.162709113999878,74.55149974200005],[-19.157582160999876,74.555609442],[-19.152943488999938,74.56073639500003],[-19.18993079299989,74.56956614800008],[-19.207508917999917,74.57648346600017],[-19.221831834999904,74.58746979400003],[-19.206044074999852,74.59723541900017],[-19.14671790299988,74.60789622600002],[-19.080230272999867,74.63483307500015],[-18.904896613999938,74.67548248900006],[-18.855213995999947,74.67670319200008],[-18.793365037999962,74.67161692900005],[-18.763783331999885,74.66327545800009],[-18.74950110599991,74.64887116100012],[-18.785471157999893,74.64142487200006],[-18.80109615799995,74.63410065300002]]],[[[-18.591175910999933,74.72528717700014],[-18.471424933999856,74.711615302],[-18.371490037999877,74.711615302],[-18.319081183999913,74.71417877800009],[-18.30382239499994,74.711615302],[-18.311105923999943,74.706000067],[-18.318999803999926,74.70343659100007],[-18.327951626999948,74.70307038000009],[-18.338002081999946,74.70408763200014],[-18.34911048099988,74.70359935100005],[-18.3597712879999,74.70010000200016],[-18.378895636999886,74.69049713700018],[-18.378895636999886,74.68366120000015],[-18.346831834999904,74.67133209800012],[-18.32445227799988,74.65298086100016],[-18.32408606699994,74.63629791900003],[-18.358469204999892,74.62905508000001],[-18.48257402299987,74.62921784100017],[-18.49901282499988,74.63300202000009],[-18.495594855999883,74.64264557500015],[-18.507883266999926,74.65395742400011],[-18.536488410999908,74.66771067900005],[-18.550282355999908,74.67682526200005],[-18.548939581999917,74.69318268400015],[-18.56135006399995,74.70490143400015],[-18.57835852799991,74.71466705900009],[-18.591175910999933,74.72528717700014]]],[[[-20.176380988999878,74.90387604400011],[-20.15416419199994,74.90045807500009],[-20.13857988199993,74.90143463700014],[-20.13206946499986,74.90741608300009],[-20.12816321499986,74.91669342700013],[-20.12295488199996,74.92568594000015],[-20.11253821499986,74.93065013200011],[-20.0990291009999,74.92609284100014],[-20.087025519999884,74.92666250200013],[-20.06126868399994,74.93065013200011],[-20.03050696499986,74.93008047100012],[-20.017567511999857,74.92804596600011],[-20.01695716099988,74.92381419499999],[-19.992990688999924,74.92413971600011],[-19.8099666009999,74.89085521000011],[-19.764881964999915,74.88662344],[-19.741118943999908,74.8813337260001],[-19.728871222999942,74.86859772300005],[-19.734974738999938,74.85529205900005],[-19.753000454999977,74.84564850500009],[-19.790394660999908,74.83441803600009],[-19.89102128799993,74.77411530200014],[-19.96776282499988,74.75722890800013],[-20.04600989499997,74.71735260600015],[-20.08580481699994,74.70408763200014],[-20.138254360999923,74.69928620000015],[-20.253081834999932,74.70673248900012],[-20.327870245999918,74.72589752800009],[-20.43317623599995,74.73419830900015],[-20.66258704299989,74.80524323100002],[-20.680734829999977,74.8209496110001],[-20.65957597599987,74.835679429],[-20.59227454299986,74.8623721370001],[-20.57599850199992,74.87457916900007],[-20.560536261999886,74.89004140800002],[-20.549061652999853,74.90790436400006],[-20.544504360999895,74.9272321640001],[-20.55247962099986,74.94619375200001],[-20.571522589999855,74.96149323100015],[-20.613392706999946,74.98529694200006],[-20.599720831999917,74.998968817],[-20.560902472999913,75.00690338700015],[-20.47996985599994,75.03945547100012],[-20.339100714999944,75.0541852890001],[-20.188954230999883,75.04409414300014],[-20.101551886999914,75.02374909100013],[-20.006255662999873,75.01650625200013],[-19.97687740799995,75.0106468770001],[-19.961659308999884,74.998968817],[-19.967152472999913,74.98460521000011],[-19.985503709999875,74.97492096600014],[-20.175119594999984,74.93895091399999],[-20.20189368399988,74.92381419499999],[-20.195668097999913,74.91168854400009],[-20.176380988999878,74.90387604400011]]],[[[-17.80288652299987,75.31427643400004],[-17.832508917999917,75.29474518400006],[-17.975331183999884,75.25999583499998],[-18.122792120999943,75.26675039300012],[-18.146148240999935,75.25967031500006],[-18.118275519999884,75.25967031500006],[-18.10464433499993,75.25714752800015],[-18.09154212099989,75.252183335],[-18.176869269999912,75.24603913000011],[-18.19835364499994,75.24164459800011],[-18.211048956999917,75.23208242400015],[-18.20921790299985,75.222357489],[-18.11978105399993,75.209418036],[-18.027333136999943,75.23265208500011],[-18.0157771479999,75.22894928600009],[-18.017811652999853,75.21702708500014],[-18.02281653599988,75.21039459800006],[-18.029449022999927,75.20526764500015],[-18.04702714799987,75.18524811400009],[-18.05235755099994,75.18235911700003],[-18.020090298999914,75.15867747600014],[-18.000721808999884,75.14862702000006],[-17.98033606699991,75.14081452000006],[-17.96117102799985,75.13613515800016],[-17.92365475199992,75.13816966399999],[-17.912749803999954,75.13613515800016],[-17.906320766999926,75.13092682500015],[-17.90294348899991,75.12457916900003],[-17.901112433999856,75.11884186400006],[-17.899159308999884,75.11562734600001],[-17.858998175999886,75.09943268400006],[-17.813384568999936,75.088853257],[-17.72166907499988,75.081488348],[-17.602894660999965,75.098822333],[-17.59032141799986,75.10285065300015],[-17.583851691999968,75.10822174700012],[-17.585275844999927,75.116888739],[-17.592762824999905,75.12189362200014],[-17.601063605999883,75.12506745000012],[-17.60496985599988,75.12872955900015],[-17.589914516999954,75.15253327000006],[-17.55479895699989,75.15546295800009],[-17.511870897999927,75.15029531500006],[-17.4739477199999,75.1498070330001],[-17.433664516999926,75.15692780200014],[-17.394642706999946,75.15961334800012],[-17.35606848899988,75.15399811400012],[-17.316965298999918,75.13613515800016],[-17.380197719999895,75.10077545800014],[-17.399525519999912,75.07697174700013],[-17.385853644999884,75.04677969000012],[-17.374623175999886,75.04144928600006],[-17.363270636999914,75.04096100500007],[-17.354603644999912,75.03896719000012],[-17.351063605999855,75.02936432500015],[-17.355295376999948,75.02594635600015],[-17.38385982999995,75.01715729400009],[-17.44933020699989,75.00726959800006],[-17.51553300699987,75.00580475500011],[-17.49762936099992,74.99811432500009],[-17.496245897999927,74.98582591400005],[-17.50621497299994,74.97239817900005],[-17.52245032499988,74.961411851],[-17.549672003999888,74.94961172100004],[-17.583973761999943,74.93927643400012],[-17.618397589999883,74.93573639500012],[-17.6459041009999,74.94432200700014],[-17.632679816999968,74.94769928600006],[-17.619374152999853,74.95433177300013],[-17.609038865999935,74.96369049700014],[-17.60496985599988,74.97540924700014],[-17.60594641799986,74.99168528899999],[-17.61107337099986,74.99762604400011],[-17.6459041009999,74.998968817],[-17.73468990799995,75.01264069200012],[-17.81720943899995,75.00580475500011],[-17.81720943899995,75.01264069200012],[-17.810373501999948,75.01264069200012],[-17.83617102799988,75.03082916900003],[-17.880116339999915,75.03595612200003],[-18.100738084999932,75.03803131700005],[-18.178212042999917,75.017523505],[-18.44786536399991,74.98529694200006],[-18.823841925999915,75.00714752800009],[-18.892648891999983,74.99921295800014],[-18.90868079299986,75.00910065300015],[-18.918690558999852,75.02619049700009],[-18.927601691999882,75.04677969000012],[-18.920887824999852,75.05451080900002],[-18.923491990999935,75.06142812700013],[-18.92821204299986,75.069769598],[-18.927601691999882,75.081488348],[-18.919260219999927,75.094875393],[-18.90721594999991,75.10504791900014],[-18.838002081999917,75.1498477230001],[-18.83145097599993,75.15664297100001],[-18.838937954999917,75.16771067900005],[-18.886708136999857,75.19074127800012],[-18.850412563999953,75.19415924700003],[-18.83690344999988,75.20587799700012],[-18.83820553299998,75.26308828300007],[-18.85326087099989,75.29482656500012],[-18.887603318999936,75.30776601800012],[-18.924672003999973,75.316107489],[-18.948068813999953,75.3341738950001],[-18.797271287999934,75.33624909100014],[-18.769642706999946,75.34198639500003],[-18.713205532999893,75.36029694200009],[-18.699086066999882,75.36188385600012],[-18.672840949999852,75.35651276200015],[-18.659820115999963,75.35700104400006],[-18.539621548999886,75.37506745000015],[-18.513417120999947,75.3731957050001],[-18.42178300699993,75.34064362200003],[-18.399403449999937,75.327866929],[-18.38853919199994,75.31085846600003],[-18.38573157499988,75.30744049700012],[-18.372303839999887,75.30426666900014],[-18.316802537999934,75.29999420800011],[-18.213612433999913,75.31012604400009],[-18.160389777999853,75.32306549700009],[-18.125721808999856,75.34153880400011],[-18.13109290299991,75.35016510600012],[-18.1341853509999,75.35903554900007],[-18.13459225199992,75.36766185100008],[-18.132476365999906,75.37567780200011],[-18.135894334999904,75.38401927299999],[-18.12946529899989,75.39207591400013],[-18.117746548999918,75.39874909100016],[-18.105132615999935,75.403021552],[-18.094064907999893,75.41933828300002],[-18.05134029899989,75.4201113950001],[-18.00145423099991,75.41233958500013],[-17.96861731699991,75.403021552],[-17.95946204299994,75.3994815120001],[-17.93415279899989,75.38092682500007],[-17.91934160099993,75.37396881700002],[-17.866851365999878,75.35993073100015],[-17.845204230999883,75.34804922100001],[-17.85130774599986,75.3341738950001],[-17.81436113199993,75.32151927300005],[-17.80288652299987,75.31427643400004]]],[[[-69.59357662699996,76.54222239800005],[-69.67772376199991,76.5338402360001],[-70.01378333199992,76.55658600500011],[-70.03449459499984,76.56806061400005],[-70.0196020169999,76.58234284100017],[-69.98106848899991,76.59080638200011],[-69.55675208199989,76.61395905200006],[-69.5235082669999,76.60883209800012],[-69.49665279899992,76.59227122600008],[-69.48420162699998,76.585638739],[-69.47203528599991,76.58331940300002],[-69.46792558499996,76.57941315300006],[-69.47960364499993,76.56806061400005],[-69.49445553299992,76.56216054900011],[-69.53612219999988,76.55658600500011],[-69.59357662699996,76.54222239800005]]],[[[-18.660145636999886,76.63287995000016],[-18.660308397999955,76.60871002800015],[-18.673166469999956,76.581732489],[-18.71312415299991,76.53921133000013],[-18.721547003999888,76.52708567900005],[-18.72297115799995,76.51097239799999],[-18.7162166009999,76.50067780200006],[-18.707020636999943,76.49140045800011],[-18.70103919199991,76.47870514500013],[-18.702626105999855,76.45530833500005],[-18.709095831999946,76.4326846370001],[-18.71149654899989,76.40916575700014],[-18.707875128999945,76.38312409100017],[-18.701486782999922,76.36920807500009],[-18.699208136999857,76.34357330900012],[-18.694813605999855,76.32843659100003],[-18.68614661399988,76.31443919500008],[-18.673410610999923,76.29926178600009],[-18.61864173099988,76.25014883000013],[-18.60716712099986,76.23493073100013],[-18.605458136999857,76.21857330900013],[-18.6190486319999,76.20343659100014],[-18.6393123039999,76.19232819200012],[-18.652902798999946,76.18073151200008],[-18.646473761999857,76.16400788000009],[-18.620350714999887,76.12531159100003],[-18.608876105999855,76.11212799700009],[-18.570708787999877,76.0848656270001],[-18.56822669199994,76.07623932500009],[-18.562245245999947,76.06704336100002],[-18.550282355999908,76.054144598],[-18.553781704999892,76.0416527360001],[-18.549305792999945,76.01463450700005],[-18.550282355999908,75.99884674700009],[-18.56822669199994,75.96898021000011],[-18.569081183999856,75.95530833500007],[-18.550282355999908,75.94428131700012],[-18.56847083199989,75.92658112200003],[-18.59788977799988,75.90460846600011],[-18.629302537999934,75.89223867400007],[-18.653309699999877,75.90326569200012],[-18.652699347999913,75.92137278900013],[-18.639637824999937,75.94106679900005],[-18.629139777999853,75.96157461100005],[-18.635853644999912,75.98212311400006],[-18.871001756999902,76.19399648600013],[-18.902902798999918,76.23822663],[-18.903146938999953,76.27016836100002],[-18.891346808999884,76.290920315],[-18.902333136999943,76.30678945500011],[-18.948068813999953,76.33527252800006],[-19.10643469999991,76.47345612200014],[-19.132923956999974,76.51300690300012],[-19.12559973899988,76.55499909100008],[-19.095041469999927,76.58193594000006],[-19.05724036399988,76.59369538000013],[-19.015248175999915,76.59638092700011],[-18.815663214999887,76.58454010600015],[-18.763172980999855,76.58856842700011],[-18.77000891799986,76.59552643400012],[-18.77818762899997,76.60016510600003],[-18.787261522999867,76.602484442],[-18.797271287999934,76.60219961100007],[-18.78758704299989,76.60822174700017],[-18.783029751999948,76.60960521000005],[-18.783029751999948,76.61644114800008],[-18.93578040299991,76.62384674700014],[-18.984934048999918,76.61615631700015],[-18.98497473899991,76.62579987200012],[-18.998890753999888,76.63666413],[-19.017079230999883,76.64765045800006],[-19.03001868399988,76.657416083],[-19.035267706999974,76.67182038000006],[-19.03892981699991,76.68988678600009],[-19.047434048999946,76.70547109600007],[-19.083648240999878,76.71889883000016],[-19.07274329299989,76.73432038],[-19.049875454999892,76.75055573100003],[-19.03001868399988,76.75983307500009],[-19.00182044199991,76.76512278900007],[-18.97472083199989,76.76609935100014],[-18.94786536399991,76.76227448100003],[-18.92015540299991,76.75307851800015],[-18.89867102799988,76.74030182500012],[-18.726226365999906,76.69074127800017],[-18.70103919199991,76.67792389500015],[-18.673410610999923,76.65546295800013],[-18.660145636999886,76.63287995000016]]],[[[-72.20335852799991,77.44818756700008],[-72.19326738199993,77.44574616100006],[-72.13182532499988,77.45254140800007],[-71.7540583979999,77.41608307500012],[-71.67735755099994,77.425238348],[-71.65078691299986,77.42096588700018],[-71.57628333199992,77.39044830900013],[-71.51952063699986,77.38996002800015],[-71.45323645699992,77.3993187520001],[-71.39037024599995,77.40082428600014],[-71.34349524599989,77.376857815],[-71.37706458199992,77.35932038000006],[-71.50796464799993,77.34886302300008],[-71.56745357999998,77.331000067],[-71.6520076159999,77.32904694200006],[-71.6904190749999,77.31712474200009],[-71.70352128799988,77.31537506700012],[-72.13182532499988,77.32160065300017],[-72.13182532499988,77.32904694200006],[-72.12071692599994,77.32973867400001],[-72.10631262899996,77.33364492400008],[-72.0975235669999,77.33901601800015],[-72.10301673099994,77.34430573100003],[-72.21153723899991,77.35781484600001],[-72.28258216099997,77.35443756700008],[-72.52965247299987,77.39044830900013],[-72.57681230399987,77.41160716400005],[-72.56240800699989,77.42438385600009],[-72.53807532499985,77.42951080900012],[-72.3645727199999,77.44574616100006],[-72.36668860599991,77.44904205900009],[-72.36693274599995,77.45001862200014],[-72.37140865799992,77.45254140800007],[-72.33934485599994,77.46039459800005],[-72.23424231699997,77.45872630400005],[-72.22301184799994,77.45697663000006],[-72.20335852799991,77.44818756700008]]],[[[-70.89867102799994,77.47345612200006],[-70.62763424399986,77.44562409050003],[-70.35659745999989,77.4177920590001],[-70.12905839799996,77.41551341400005],[-70.05500240799998,77.40412018400018],[-70.09032141799992,77.39443594000012],[-70.17015540299994,77.397162177],[-70.2455134759999,77.38580963700012],[-70.66272945899993,77.38178131700005],[-71.07994544199988,77.37775299700009],[-71.11143958199992,77.38251373900009],[-71.14028886599993,77.39386627800015],[-71.1688126289999,77.41469961100013],[-71.1966039699999,77.42999909100008],[-71.30260169199997,77.45254140800007],[-71.28872636599988,77.45783112200014],[-71.27285722599996,77.45954010600015],[-71.20409094999988,77.45791250200013],[-71.12775631399992,77.46434153900005],[-70.97362219999991,77.46076080900018],[-70.89867102799994,77.47345612200006]]],[[[-17.875803188999896,77.64374420800011],[-18.006499803999958,77.63690827000003],[-18.22716223899988,77.63735586100002],[-18.267201300999915,77.65672435100014],[-18.228627081999946,77.66522858300006],[-18.13683020699989,77.72939687700001],[-17.993804490999906,77.7722028670001],[-17.971791144999884,77.79047272300006],[-17.967396613999906,77.82420482000006],[-17.953358527999853,77.84454987200014],[-17.928089972999913,77.85724518400012],[-17.890126105999883,77.86835358300006],[-17.861480272999927,77.87343984600005],[-17.723459438999953,77.88178131700015],[-17.702748175999943,77.88019440300012],[-17.698597785999908,77.870306708],[-17.633534308999884,77.82782623900012],[-17.617298956999917,77.80658600500014],[-17.635975714999915,77.78025950700014],[-17.702626105999883,77.74494049700012],[-17.718495245999915,77.73309967700006],[-17.74461829299986,77.69350820500001],[-17.755767381999874,77.68158600500009],[-17.80890865799989,77.65546295800011],[-17.875803188999896,77.64374420800011]]],[[[-21.24339758999986,77.87567780200006],[-21.329701300999886,77.85496653900005],[-21.354603644999912,77.85516998899999],[-21.3814998039999,77.86432526200018],[-21.394520636999886,77.87262604400014],[-21.403553839999887,77.8824730490001],[-21.405588344999927,77.89337799700014],[-21.397938605999883,77.9053408870001],[-21.368519660999908,77.92743561400009],[-21.332997199999905,77.9459496110001],[-21.295033331999917,77.95868561400015],[-21.24754798099991,77.96564362200003],[-21.230336066999882,77.97540924700016],[-21.127756313999924,77.99030182500003],[-21.10741126199991,77.98956940300009],[-21.08641516799989,77.98452383000007],[-21.092681443999933,77.98191966400007],[-21.09593665299988,77.9779727230001],[-21.09788977799994,77.97382233300014],[-21.100005662999934,77.97085195500013],[-21.123890753999913,77.96906159100014],[-21.153797980999883,77.9610863300001],[-21.172230597999913,77.947739976],[-21.161488410999905,77.92987702000003],[-21.17983964799987,77.92039622600011],[-21.216786261999914,77.90957265800002],[-21.234120245999915,77.89850495000016],[-21.23704993399991,77.89423248900005],[-21.23802649599989,77.8893089860001],[-21.23786373599992,77.87836334800012],[-21.24339758999986,77.87567780200006]]],[[[-19.95840410099993,77.98248932500003],[-19.928212042999917,77.95042552300005],[-19.911284959999932,77.93671295800011],[-19.897694464999887,77.930365302],[-19.746652798999946,77.89443594000004],[-19.358306443999908,77.89765045800009],[-19.318023240999935,77.88328685099998],[-19.292469855999855,77.87775299700017],[-19.26341712099989,77.86481354400017],[-19.241078253999945,77.84756094000006],[-19.23546301999994,77.82868073100003],[-19.261341925999943,77.8089867210001],[-19.30846106699994,77.80369700700011],[-19.69682098433327,77.8519825973335],[-20.085180901666604,77.90026818766678],[-20.473540818999908,77.94855377800008],[-20.489857550999943,77.95966217700011],[-20.467640753999888,77.9706078150001],[-20.438221808999884,77.97679271000005],[-20.205962693999936,77.97284577000005],[-20.161488410999937,77.97679271000005],[-20.117787238999938,77.98794179900007],[-20.05247962099986,77.990912177],[-20.0143123039999,77.9986026060001],[-19.995716925999915,77.99994538],[-19.97655188699994,77.99494049700014],[-19.95840410099993,77.98248932500003]]],[[[-18.88853919199994,78.11546458500005],[-18.90990149599989,78.1057803410001],[-18.92686926999994,78.09418366099999],[-18.931955532999893,78.07660553600006],[-18.925445115999878,78.05687083500011],[-18.91161048099988,78.04328034100017],[-18.894398566999882,78.04385000200013],[-19.11156165299991,77.93227773600015],[-19.155384894999884,77.92055898600006],[-19.172678188999953,77.91889069200006],[-19.189320441999907,77.92023346600014],[-19.201771613999938,77.92743561400009],[-19.20612545499992,77.94367096600003],[-19.202381964999887,77.95868561400015],[-19.19424394399988,77.97304922100012],[-19.183257615999935,77.98554108300011],[-19.171376105999883,77.99530670800009],[-19.12450110599991,78.02387116100006],[-19.10708574099993,78.04287344000005],[-19.11388098899988,78.06134674700009],[-19.16392981699991,78.07660553600006],[-19.233509894999884,78.08608633000016],[-19.2948298819999,78.10407135600009],[-19.32042395699989,78.14447663000006],[-19.296498175999915,78.1437848980001],[-19.224964972999885,78.11994049700003],[-19.177561001999948,78.11005280200011],[-19.152577277999907,78.108832098],[-18.95055091099988,78.127386786],[-18.877674933999856,78.14472077],[-18.85985266799986,78.14447663000006],[-18.869618292999917,78.12710195500007],[-18.88853919199994,78.11546458500005]]],[[[-20.379505988999878,78.13605377800009],[-20.433501756999902,78.12750885600018],[-20.600331183999884,78.13324616100014],[-20.814605272999895,78.174994208],[-20.789418097999913,78.18244049700013],[-20.711537238999938,78.189683335],[-20.68350175699993,78.19619375200007],[-20.55260169199991,78.24310944200012],[-20.505034959999932,78.2509219420001],[-20.467640753999888,78.24945709800015],[-20.431060350999953,78.24087148600013],[-20.396473761999857,78.22565338700015],[-20.365589972999913,78.20449453300014],[-20.346506313999924,78.18292877800015],[-20.342111782999922,78.16351959800015],[-20.35293535099993,78.14740631700006],[-20.379505988999878,78.13605377800009]]],[[[-19.352406378999888,78.21482982000008],[-19.445057745999947,78.20001862200009],[-19.49669348899988,78.20136139500009],[-19.514312303999898,78.20966217700006],[-19.501291469999927,78.22842031500012],[-19.558949347999885,78.24909088700004],[-19.62840735599991,78.25495026200018],[-19.64757239499988,78.264797268],[-19.657785610999895,78.28359609600015],[-19.659047003999913,78.30687083500008],[-19.65416419199994,78.33063385600013],[-19.64639238199993,78.350816148],[-19.630034959999932,78.36481354400014],[-19.607980923999918,78.36151764500012],[-19.560943162999905,78.339544989],[-19.469105597999885,78.30963776200004],[-19.44163977799994,78.29279205900004],[-19.42951412699992,78.28021881700012],[-19.403675910999905,78.23704661700013],[-19.39220130099997,78.22443268400006],[-19.38174394399988,78.21784088700015],[-19.369536912999905,78.21531810100005],[-19.352406378999888,78.21482982000008]]],[[[-18.922840949999877,78.33344147300012],[-18.942250128999888,78.33169179900013],[-19.02013098899988,78.33331940300015],[-19.04002844999988,78.33026764500015],[-19.05638587099989,78.32290273600016],[-19.06338456899988,78.30882396000011],[-19.05663001199991,78.29230377800003],[-19.04002844999988,78.28095123900006],[-18.897084113999938,78.24213288000004],[-18.88076738199993,78.23183828300012],[-18.88145911399988,78.22020091400012],[-18.89366614499994,78.210394598],[-18.912098761999886,78.20506419500012],[-19.002105272999955,78.19578685100008],[-19.04906165299988,78.18475983300011],[-19.073801235999948,78.18504466400007],[-19.088612433999913,78.19896067900012],[-19.271107550999886,78.23065827],[-19.260406053999873,78.24433014500015],[-19.257557745999918,78.25751373899999],[-19.260324673999886,78.27191803600006],[-19.26642818899998,78.28888580900004],[-19.27717037699989,78.305853583],[-19.306263800999943,78.33340078300013],[-19.31550045499992,78.3477237000001],[-19.2892146479999,78.368109442],[-19.257435675999943,78.38434479400004],[-18.93846594999988,78.475287177],[-18.928578253999945,78.47321198100016],[-18.9230850899999,78.46735260600003],[-18.920643683999913,78.45978424700017],[-18.917836066999936,78.44354889500012],[-18.891102667999945,78.40648021000011],[-18.889963344999895,78.39423248900015],[-18.901193813999893,78.39321523600007],[-18.91392981699994,78.38996002800003],[-18.925852016999897,78.384955145],[-18.93464107999995,78.37860748900006],[-18.907704230999883,78.35276927300005],[-18.905100063999896,78.34149811400006],[-18.922840949999877,78.33344147300012]]],[[[-18.509755011999886,78.52558014500015],[-18.563710089999912,78.52362702],[-18.61587480399993,78.53253815300005],[-18.652699347999913,78.55548737200003],[-18.633168097999913,78.56785716400007],[-18.56236731699991,78.58148834800004],[-18.50291907499988,78.61115143400015],[-18.451527472999967,78.62592194200012],[-18.39199785099993,78.636419989],[-18.256947394999884,78.632554429],[-18.227447068999908,78.62376536700012],[-18.23493404899989,78.61692942900011],[-18.251576300999943,78.60468170800013],[-18.315052863999938,78.58038971600016],[-18.473866339999887,78.54930247600008],[-18.472401495999918,78.54596588700004],[-18.47012285099987,78.53888580900018],[-18.467640753999945,78.53506094000006],[-18.509755011999886,78.52558014500015]]],[[[-18.17894446499986,78.71149323100003],[-18.205189581999974,78.69578685100008],[-18.211008266999926,78.708197333],[-18.207875128999945,78.71600983300009],[-18.20343990799998,78.72394440300015],[-18.205189581999974,78.73676178600009],[-18.234283006999927,78.75112539300015],[-18.244862433999884,78.76251862200003],[-18.232411261999886,78.77773672100001],[-18.239857550999943,78.78514232],[-18.206776495999918,78.81256745000003],[-18.161773240999903,78.82929108300006],[-18.11310787699989,78.83234284100014],[-18.06859290299988,78.81867096600003],[-18.034738735999923,78.79385000200007],[-18.004750128999945,78.779038804],[-18.000314907999893,78.76581452000006],[-18.042795376999948,78.74555084800015],[-18.17894446499986,78.71149323100003]]],[[[-19.151682094999927,78.86835358300011],[-19.1393123039999,78.86420319200009],[-19.10049394399988,78.86835358300011],[-19.020741339999944,78.86835358300011],[-19.04792232999995,78.85101959800011],[-19.151112433999856,78.83755117400015],[-19.185861782999922,78.82054271],[-19.175038214999915,78.82168203300013],[-19.16454016799986,78.82086823100012],[-19.1544490229999,78.81826406500012],[-19.144846157999922,78.81366608300009],[-19.15965735599988,78.80377838700015],[-19.176747199999937,78.796291408],[-19.195139126999976,78.79214101800007],[-19.213205532999893,78.79262929900014],[-19.180165167999945,78.78302643400016],[-19.055409308999913,78.79262929900014],[-19.062245245999918,78.7863630230001],[-19.041818813999953,78.77899811399999],[-19.094838019999884,78.76410553600006],[-19.281361456999914,78.76593659100003],[-19.260487433999856,78.75287506700013],[-19.22215735599991,78.74819570500013],[-19.180775519999912,78.749212958],[-19.12157141799989,78.75706614799999],[-19.050770636999886,78.75242747600005],[-19.020741339999944,78.74542877800017],[-19.04279537699992,78.735785223],[-19.137440558999913,78.71751536700012],[-19.124379035999937,78.71067942900011],[-19.155629035999905,78.70111725500011],[-19.314320441999882,78.6956240910001],[-19.395578579999892,78.70530833500005],[-19.512074347999913,78.74282461100007],[-19.57705644399988,78.74819570500013],[-19.604156053999926,78.75629303600006],[-19.610666469999895,78.770005601],[-19.583078579999892,78.78949616100007],[-19.15485592399989,78.92829010600015],[-19.114979620999915,78.93211497600008],[-19.07567298099991,78.9311384140001],[-19.048003709999932,78.92357005400004],[-19.051991339999915,78.92015208500014],[-19.053456183999852,78.91669342700014],[-19.054066535999908,78.91315338700014],[-19.055409308999913,78.90932851800015],[-19.165272589999887,78.895656643],[-19.154367641999894,78.89109935100008],[-19.147816535999937,78.88507721600014],[-19.146636522999895,78.87750885600012],[-19.151682094999927,78.86835358300011]]],[[[-17.45099850199992,79.04523346600008],[-17.461659308999856,79.04319896000005],[-17.498768683999852,79.04523346600008],[-17.507923956999946,79.04242584800015],[-17.52464758999986,79.03400299700009],[-17.53294837099986,79.0322126320001],[-17.681996222999942,79.03851959800015],[-17.704213019999912,79.0322126320001],[-17.689116990999906,79.02090078300004],[-17.68309485599991,79.01788971600001],[-17.701039191999936,79.00995514500006],[-17.725331183999913,79.00568268400006],[-17.772531704999892,79.00429922100007],[-17.753285285999937,78.993353583],[-17.74518795499992,78.99066803600012],[-17.765370245999858,78.98346588700018],[-17.787912563999924,78.97890859600012],[-17.833973761999886,78.97699616100009],[-17.81517493399994,78.96796295800007],[-17.828846808999884,78.9604352890001],[-17.89663652299987,78.94806549700017],[-17.920521613999934,78.94765859600007],[-17.94420325399997,78.950140692],[-17.964955206999974,78.95587799700017],[-17.950795050999943,78.96255117400013],[-17.932850714999887,78.96637604400014],[-17.89663652299987,78.96946849200013],[-17.91856848899991,78.98338450700011],[-17.94416256399998,78.99408600500011],[-17.959624803999898,79.0097516950001],[-17.951283331999914,79.03839752800017],[-17.921457485999923,79.06273021000014],[-17.800404425999943,79.100531317],[-17.74583899599989,79.15355052300013],[-17.724720831999942,79.16132233300011],[-17.68610592399989,79.17035553600013],[-17.64574133999986,79.18671295800006],[-17.605539516999954,79.19383372600011],[-17.567046678999958,79.17560455900012],[-17.532053188999953,79.1730817730001],[-17.421538865999935,79.13621653900005],[-17.405913865999935,79.12327708500014],[-17.40831458199989,79.1048851580001],[-17.41942298099991,79.08637116100009],[-17.45099850199992,79.04523346600008]]],[[[-17.314442511999914,79.97833893400015],[-17.34203040299991,79.96161530200011],[-17.355783657999947,79.94375234600015],[-17.596038377999946,79.8431257185001],[-17.836293097999942,79.74249909100003],[-18.173939581999917,79.69367096600001],[-18.48521887899997,79.68610260600018],[-18.56895911399988,79.7080752620001],[-18.83102372949989,79.74292633649999],[-19.093088344999895,79.77777741100006],[-19.15973873599995,79.79604726800012],[-19.24962317599997,79.83128489799999],[-19.393137173999943,79.84870026200015],[-19.41417395699989,79.848130601],[-19.357492641999894,79.87067291900017],[-19.14891516799989,79.90326569200012],[-19.06798255099991,79.92780182500013],[-19.031239386999914,79.93113841399999],[-18.956206834999875,79.92942942900008],[-18.919422980999883,79.93366120000009],[-18.92491614499991,79.94672272300006],[-18.935414191999882,79.956488348],[-18.95889238199993,79.97370026200012],[-18.98591061099989,80.00299713700004],[-19.002349412999905,80.01430898600005],[-18.853871222999942,80.02716705900015],[-18.826283331999946,80.02509186400012],[-18.81371008999986,80.02204010600003],[-18.783558722999913,80.00934479400016],[-18.773182745999918,80.00120677300005],[-18.76732337099989,79.99005768400002],[-18.76427161399988,79.97329336100002],[-18.738107876999948,79.97296784100008],[-18.68541419199994,79.98090241100005],[-18.59886633999986,80.01215241100012],[-18.577626105999883,80.01699453300002],[-18.159230109999896,80.054103908],[-17.740834113999934,80.09121328300013],[-17.66397050699993,80.08856842700014],[-17.27749589799987,80.013128973],[-17.269113735999895,80.00910065300003],[-17.260975714999887,80.003607489],[-17.314442511999914,79.97833893400015]]],[[[-18.737131313999953,80.13816966400007],[-18.702992316999882,80.12645091399999],[-18.71996008999986,80.1210798200001],[-18.75454667899993,80.11709219000011],[-18.771839972999942,80.11225006700006],[-19.147348599499878,80.07125478700014],[-19.52285722599993,80.03025950700012],[-19.655995245999915,80.02285390800013],[-19.66510982999992,80.02741120000009],[-19.70409094999988,80.05756256700012],[-19.64439856699991,80.07518138200014],[-19.62840735599991,80.08551666900014],[-19.639556443999936,80.08978913000004],[-19.64020748599998,80.09369538000006],[-19.62840735599991,80.10537344000015],[-19.623931443999936,80.10846588700004],[-19.610015428999873,80.11237213700004],[-19.604481574999852,80.11562734600007],[-19.60187740799995,80.12067291900011],[-19.602609829999974,80.12523021000005],[-19.605091925999915,80.12775299700017],[-19.607899542999856,80.12645091399999],[-19.60562089799987,80.13255442900005],[-19.604237433999913,80.14630768400018],[-19.60106360599994,80.15314362200007],[-19.59243730399993,80.15997955900012],[-19.565785285999908,80.17161692900011],[-19.48737545499995,80.19586823100012],[-19.34992428299995,80.21320221600008],[-19.206695115999906,80.21019114799999],[-18.737131313999953,80.13816966400007]]],[[[-66.90575110599991,80.67527903900007],[-66.89537512899992,80.67446523600013],[-66.88548743399988,80.67446523600013],[-66.88044186099995,80.67361074400004],[-66.87047278599997,80.67275625200013],[-66.86042232999989,80.67194245000002],[-66.85045325399989,80.67108795800011],[-66.84064693899995,80.67108795800011],[-66.83047441299993,80.6694603540001],[-66.82559160099994,80.6694603540001],[-66.81065833199992,80.66689687700001],[-66.80540930899991,80.666978257],[-66.75784257699993,80.65904368700002],[-66.75800533799989,80.6581891950001],[-66.74286861899989,80.6557070980001],[-66.74303137899994,80.65485260600009],[-66.73289954299992,80.65322500200007],[-66.72809811099992,80.65151601800007],[-66.71788489499997,80.64732493700005],[-66.71812903599991,80.64484284100011],[-66.70299231699991,80.64236074399999],[-66.70319576699998,80.64150625200007],[-66.65310624899988,80.63320547100001],[-66.65294348899991,80.63239166900009],[-66.63552812399993,80.62946198100015],[-66.63060462099989,80.62942129099999],[-66.61803137899989,80.62653229400014],[-66.61790930899991,80.62567780200014],[-66.60798092399992,80.62490469000012],[-66.60781816299993,80.62400950700011],[-66.59308834499987,80.62148672100001],[-66.58796139199995,80.619818427],[-66.58820553299998,80.61070384300011],[-66.60057532499994,80.60866933800015],[-66.61058508999992,80.60777415600006],[-66.63532467399997,80.60773346600008],[-66.6404109369999,80.60696035400015],[-66.70038814999992,80.60696035400015],[-66.70547441299993,80.60610586100006],[-66.71544348899994,80.60533274900014],[-66.72557532499991,80.60525136900007],[-66.7355443999999,80.60447825700005],[-66.7455134759999,80.60362376500014],[-66.75784257699993,80.60154857000013],[-66.76565507699993,80.59947337400011],[-66.77562415299991,80.59857819200003],[-66.79027258999992,80.59857819200003],[-66.80048580599995,80.59947337400011],[-66.81041419199997,80.60028717700011],[-66.82070878799988,80.60106028900005],[-66.84788977799988,80.60565827000006],[-66.84776770699992,80.61233144700013],[-66.86038163999989,80.61526113500005],[-66.88544674399989,80.61530182500006],[-66.89053300699993,80.61615631700015],[-66.90046139199993,80.61692942900008],[-66.90802975199998,80.61737702000006],[-66.91291256399994,80.61904531500006],[-66.91291256399994,80.62071360900008],[-66.9230037099999,80.6240908870001],[-66.93309485599988,80.62738678600014],[-66.93793697799995,80.63072337400017],[-66.94306393099987,80.6314964860001],[-66.94298255099989,80.63320547100001],[-66.9527888659999,80.63483307500003],[-66.9527888659999,80.63991933800004],[-66.95783443899995,80.64069245000015],[-66.95795650899993,80.64984772300015],[-66.96300208199995,80.65070221600014],[-66.96300208199995,80.65403880400008],[-66.96808834499987,80.65493398600007],[-66.96808834499987,80.6581891950001],[-66.97276770699989,80.65900299700003],[-66.97805742099987,80.6656761740001],[-66.98070227799985,80.66616445500007],[-66.98273678299998,80.66653066599997],[-66.98273678299998,80.67157623900012],[-66.97801673099988,80.67234935100014],[-66.97801673099988,80.67405833500014],[-66.96544348899988,80.67531972900015],[-66.96043860599994,80.67531972900015],[-66.95555579299989,80.67531972900015],[-66.95051021999984,80.67609284100016],[-66.91047115799992,80.67605215100018],[-66.90575110599991,80.67527903900007]]],[[[-66.3353572259999,80.83193594],[-66.32038326699995,80.82941315300009],[-66.31037350199998,80.82941315300009],[-66.29796301999994,80.82652415600016],[-66.29800370999993,80.82404205900004],[-66.31065833199992,80.82111237200012],[-66.32050533799995,80.82025788000011],[-66.34048417899993,80.8202985700001],[-66.35057532499988,80.82111237200012],[-66.37311764199995,80.82489655200014],[-66.37303626199989,80.82648346600017],[-66.37775631399998,80.82737864800006],[-66.37791907499985,80.8307152360001],[-66.3703914049999,80.83197663],[-66.36046301999988,80.83283112200009],[-66.34552975199995,80.83274974200009],[-66.3353572259999,80.83193594]]],[[[-17.335560675999915,81.60248444200009],[-17.37999426999994,81.59149811400012],[-17.732818162999905,81.59564850500004],[-17.796376105999883,81.61688873900015],[-18.213449673999946,81.69220612200003],[-18.28148352799991,81.71849192900014],[-18.256947394999884,81.72996653899999],[-18.225209113999938,81.73529694200015],[-17.793771938999896,81.74616120000003],[-17.770659959999932,81.73529694200015],[-17.748850063999978,81.72036367400001],[-17.72020423099991,81.71308014500009],[-17.66392981699994,81.70490143400018],[-17.561512824999852,81.67357005400014],[-17.510487433999856,81.64813873900012],[-17.484201626999916,81.63939036700005],[-17.42516028599988,81.63117096600014],[-17.365956183999884,81.61127350500006],[-17.335560675999915,81.60862864800008],[-17.335560675999915,81.60248444200009]]],[[[-18.630930141999954,81.81972890800002],[-18.688384568999936,81.8137067730001],[-19.045033331999917,81.82510000200007],[-19.45958411399988,81.95319245000003],[-19.596669074999852,81.99176666900007],[-19.6349177729999,82.01459381700003],[-19.649037238999938,82.03046295800014],[-19.661936001999948,82.0522321640001],[-19.667225714999912,82.07501862200003],[-19.658192511999914,82.09406159100003],[-19.63866126199994,82.10175202000015],[-19.52415930899994,82.11786530200011],[-19.410552537999934,82.11994049700003],[-19.36119544199994,82.11277903899999],[-19.31200110599994,82.0988630230001],[-19.26036536399988,82.09100983300011],[-19.091420050999886,82.04266998900012],[-19.069162563999924,82.02142975500011],[-19.05060787699992,81.99640534100003],[-19.007313605999855,81.98281484600007],[-18.919829881999902,81.96816640800014],[-18.67926998599995,81.869045315],[-18.64940344999988,81.8482119810001],[-18.630930141999954,81.81972890800002]]],[[[-51.23753821499988,81.98851146000005],[-51.29466712099989,81.97870514500012],[-51.69994055849995,81.98706696150013],[-52.10521399599989,81.99542877800015],[-52.208119269999884,82.01821523600006],[-52.53380286399991,82.04791901200008],[-52.61107337099992,82.06525299700009],[-53.017486131999874,82.088568427],[-53.087025519999884,82.10610586100013],[-53.19009355399993,82.11237213700018],[-53.23184160099987,82.13190338700015],[-53.23371334499993,82.13593170800011],[-53.23542232999995,82.14801666900003],[-53.23924719999985,82.15363190300003],[-53.24754798099994,82.15997955900015],[-53.25597083199989,82.16478099200005],[-53.27476966099994,82.17234935100011],[-53.335072394999884,82.19163646000014],[-53.34911048099994,82.20140208500008],[-53.33946692599994,82.25873444200003],[-53.244984503999916,82.29913971600014],[-53.0537003249999,82.33112213700015],[-52.786773240999956,82.317531643],[-52.55406653599991,82.27655670799999],[-52.601185675999915,82.26911041900011],[-52.59552975199992,82.26032135600006],[-52.585601365999935,82.25250885600015],[-52.52920488199987,82.21942780200011],[-52.51398678299989,82.21332428600012],[-52.465199347999885,82.19989655200011],[-52.0539444653333,82.13792552333341],[-51.642689582666605,82.07595449466679],[-51.2314346999999,82.01398346600014],[-51.18976803299995,81.99534739800008],[-51.203033006999874,81.99188873900005],[-51.23753821499988,81.98851146000005]]],[[[-45.988406270666616,82.64052968966682],[-45.65260440433326,82.60252513233338],[-45.316802537999905,82.56452057500015],[-45.316802537999905,82.55707428600006],[-45.32363847599993,82.55707428600006],[-45.32363847599993,82.55023834800015],[-45.213734503999945,82.55023834800015],[-44.896148240999935,82.49949778900002],[-44.83018958199991,82.47577545800007],[-44.52916419199997,82.41376373900012],[-44.454009568999965,82.40119049700014],[-44.42210852799985,82.38467031500006],[-44.426136847999906,82.35846588700004],[-44.438954230999855,82.352972723],[-44.52769934799991,82.33344147300012],[-44.710926886999914,82.3161481790001],[-45.07042395699992,82.2225609400001],[-45.036284959999904,82.197455145],[-44.90526282499994,82.16356028900005],[-44.73460852799994,82.09837474200013],[-44.77090410099993,82.07977936400012],[-44.82506262899989,82.07050202000005],[-45.03502356699991,82.05927155200008],[-45.08812415299991,82.06403229400017],[-45.307525193999936,82.12864817900011],[-45.32363847599993,82.15363190300003],[-45.42341061099992,82.18447500200008],[-45.90759572399995,82.24298737166681],[-46.39178083699985,82.30149974133344],[-46.87596594999988,82.36001211100006],[-46.99730383999989,82.39085521000014],[-47.00450598899991,82.396226304],[-47.01008053299992,82.40688711100005],[-47.00259355399996,82.41376373900012],[-47.04336503799993,82.44489166900003],[-47.11074785099993,82.48383209800012],[-47.18073482999995,82.51178620000013],[-47.22911536399994,82.50991445500007],[-47.25279700399994,82.52016836100002],[-47.36571204299992,82.53725820500016],[-47.565093553999894,82.61505768400015],[-47.74986731699993,82.62531159100017],[-47.72907467399994,82.63751862200014],[-47.698068813999924,82.6437848980001],[-47.27865556549992,82.64512767150012],[-46.85924231699994,82.64647044499998],[-46.810170050999886,82.64020416900003],[-46.78624426999994,82.64012278900003],[-46.7630102199999,82.64647044499998],[-46.782460089999915,82.65875885600003],[-46.85924231699994,82.67438385600012],[-46.591725226999955,82.67645905150017],[-46.32420813699986,82.67853424700014],[-45.988406270666616,82.64052968966682]]],[[[-47.53335527299993,82.78392161700006],[-47.85216223899994,82.78363678600014],[-48.330922003999945,82.79189687700013],[-48.36750240799989,82.79779694200006],[-48.400013800999965,82.80939362200017],[-48.414051886999914,82.82802969000006],[-48.41274980399993,82.85276927300013],[-48.40660559799994,82.86831289300012],[-48.39224199099996,82.87815989800008],[-48.36628170499998,82.88605377800003],[-48.287220831999974,82.8966332050001],[-47.896982387999884,82.86249420750012],[-47.50674394399991,82.82835521],[-47.44204667899996,82.81098053600003],[-47.48009192599994,82.79169342700008],[-47.53335527299993,82.78392161700006]]],[[[-39.522328253999966,83.00665924700003],[-39.66649329299992,82.99551015800002],[-39.7369685539999,83.001125393],[-39.76598059799988,83.00958893400006],[-39.84015865799992,83.01626211100009],[-39.97712154899992,83.06093984600007],[-40.04784094999985,83.07160065300008],[-40.31395423099988,83.07868073100015],[-40.35993404899992,83.08490631700012],[-40.396595831999946,83.09955475500011],[-40.393544074999845,83.10333893400015],[-40.38975989499993,83.11261627800009],[-40.41600501199986,83.11444733300009],[-40.467030402999846,83.12946198100009],[-40.49307206899991,83.13304271000008],[-40.51366126199986,83.13849518400012],[-40.53624426999994,83.15045807500015],[-40.54662024599992,83.16242096600017],[-40.53066972599993,83.16787344000004],[-40.25169837149994,83.1638451195001],[-39.972727016999926,83.15981679900007],[-39.818430141999954,83.12311432500017],[-39.43761145699997,83.10516998900012],[-39.301258917999945,83.096625067],[-39.28888912699989,83.09243398600007],[-39.29076087099986,83.08478424700014],[-39.30736243399991,83.07160065300008],[-39.34772701699998,83.0507673200001],[-39.522328253999966,83.00665924700003]]],[[[-40.85806230399996,83.17259349200013],[-40.80809485599991,83.16038646000005],[-40.74608313699988,83.12620677300005],[-40.719309048999975,83.11928945500016],[-40.63683020699994,83.11261627800009],[-40.486683722999906,83.07689036700008],[-40.26463782499988,83.07050202000015],[-40.184681769999884,83.05971914300015],[-40.129221157999915,83.060736395],[-40.10334225199992,83.05613841399999],[-40.052723761999914,83.02724844000006],[-40.035308397999955,83.02326080900018],[-39.98839270699992,83.01976146],[-39.944488084999875,83.01064687700001],[-39.862172003999916,82.98224518400016],[-40.28292802649992,83.0055199240001],[-40.703684048999975,83.0287946640001],[-40.90318762899991,83.07184479400004],[-41.02721106699991,83.07782623900005],[-41.06208248599995,83.08397044500013],[-41.156971808999884,83.11880117400007],[-41.44871985599988,83.16144440300009],[-41.48656165299991,83.16038646000005],[-41.47911536399994,83.16787344000004],[-41.48656165299991,83.16787344000004],[-41.42975826699995,83.17816803600012],[-41.14391028549994,83.17538076400008],[-40.85806230399996,83.17259349200013]]],[[[-40.2960505849999,83.35049062700016],[-40.22565670499992,83.33051178600009],[-39.99852454299989,83.29922109600002],[-39.77424068899998,83.30141836100002],[-39.67039954299992,83.27708567900014],[-39.575795050999915,83.24286530200006],[-39.47492428299995,83.21954987200014],[-39.154632127999975,83.19678375850015],[-38.834339972999885,83.174017645],[-38.80894934799997,83.17039622600014],[-38.66169186099995,83.12787506700006],[-38.642567511999886,83.11880117400007],[-38.91734778599988,83.10956452],[-38.95103919199988,83.11880117400007],[-38.94420325399997,83.11880117400007],[-39.39486650299997,83.15932851750013],[-39.84552975199997,83.19985586100002],[-39.86803137899997,83.20734284100008],[-39.90501868399991,83.22955963700004],[-40.049916144999884,83.26129791900009],[-40.33995520749991,83.266099351],[-40.62999426999994,83.27090078300007],[-40.66405188699986,83.28351471600014],[-40.6673477859999,83.30255768400006],[-40.64858964799993,83.32269928600007],[-40.61632239499991,83.33856842700011],[-40.5658259759999,83.34731679900008],[-40.40343176999997,83.33856842700011],[-40.40343176999997,83.34536367400011],[-40.47240149599992,83.34813060100002],[-40.540638800999915,83.35903554900007],[-40.48741614499994,83.365912177],[-40.2960505849999,83.35049062700016]]],[[[-32.207875128999916,83.61347077],[-32.207875128999916,83.60602448100012],[-32.231271938999896,83.606146552],[-32.28136145699992,83.59861888200014],[-32.303456183999884,83.5917829450001],[-32.29678300699993,83.59113190300015],[-32.28294837099995,83.58551666900014],[-32.28888912699995,83.58258698100003],[-32.303456183999884,83.57127513200005],[-32.026722785499885,83.58999258000013],[-31.749989386999886,83.60871002800009],[-31.633412238999966,83.58982982000006],[-31.196095344499927,83.58641185100005],[-30.758778449999877,83.58299388200005],[-30.6471248039999,83.60175202],[-30.186824782333304,83.57911475866673],[-29.726524760666592,83.55647749733349],[-29.26622473899988,83.53384023600002],[-29.26146399599989,83.53025950700005],[-29.249175584999932,83.530991929],[-29.23680579299989,83.53025950700005],[-29.224720831999885,83.52802155200008],[-29.2130427729999,83.52411530200008],[-29.237904425999947,83.51898834800006],[-29.26146399599989,83.50983307500016],[-29.213856574999905,83.48761627800012],[-29.148304816999968,83.47752513200005],[-29.081044074999937,83.47846100500014],[-29.028716600999953,83.489406643],[-29.048410610999895,83.5053571640001],[-29.05540930899988,83.50983307500016],[-28.630116339999887,83.52195872600008],[-28.555775519999912,83.5148786480001],[-28.514149542999917,83.489406643],[-28.674143032999893,83.47528717700008],[-28.773426886999914,83.48651764500006],[-28.82567298099994,83.48676178600012],[-28.925119594999927,83.47573476800005],[-28.884632941999882,83.46344635600012],[-28.562570766999926,83.42047760600015],[-28.150461391999897,83.43475983300006],[-28.22378495999993,83.43549225500009],[-28.372385219999927,83.45453522300006],[-28.44522050699987,83.45522695500001],[-28.384632941999907,83.47125885600009],[-27.928802049999888,83.442307847],[-27.472971157999893,83.4133568380001],[-27.01714026599987,83.38440582900002],[-26.561309373999876,83.3554548200001],[-26.105478481999853,83.32650381100011],[-25.64964758999986,83.29755280200003],[-25.679351365999878,83.27985260600009],[-25.71959387899994,83.26947663],[-25.835926886999857,83.25918203300007],[-25.913563605999883,83.24042389500012],[-25.967600063999953,83.23358795800003],[-26.019642706999914,83.21564362200014],[-26.075428839999915,83.2084821640001],[-26.541529914199884,83.20134511970012],[-27.00763098839985,83.19420807540003],[-27.473732062599936,83.18707103110002],[-27.939833136799905,83.17993398680011],[-28.405934210999874,83.17279694250011],[-28.872035285199953,83.16565989820012],[-29.338136359399925,83.15852285390004],[-29.804237433599894,83.15138580960003],[-30.27033850779995,83.14424876530013],[-30.73643958199995,83.13711172100012],[-30.89171301999991,83.10569896000003],[-31.315052863666608,83.09079281866674],[-31.7383927073333,83.07588667733332],[-32.161732550999886,83.06098053600006],[-32.237416144999884,83.0771345070001],[-32.34634355399987,83.08295319200006],[-32.44611568899998,83.10569896000003],[-32.94296220599989,83.13265615399997],[-33.43980872299991,83.15961334800012],[-33.48281816299996,83.14614492400013],[-33.34186764199998,83.13996002800017],[-33.23827063699986,83.1164411480001],[-33.13442949099988,83.13377513200011],[-32.8195898099999,83.09979889500006],[-32.504750128999916,83.06582265800012],[-32.489084438999924,83.05801015800013],[-32.48045813699994,83.04425690300003],[-32.49054928299989,83.03815338700004],[-32.953846808999884,83.02228424700012],[-33.05174719999991,83.00250885600018],[-33.47136389916653,82.98879629100014],[-33.890980598333236,82.97508372600014],[-34.31059729749995,82.96137116099999],[-34.73021399666655,82.94765859600007],[-35.14983069583326,82.93394603100013],[-35.56944739499997,82.92023346600003],[-35.620432094999956,82.90717194200015],[-35.54133053299998,82.89423248900015],[-35.37287350199995,82.90143463700018],[-35.29824785099993,82.89288971600014],[-35.321034308999856,82.8849144550001],[-35.42088782499985,82.86823151200015],[-35.427601691999875,82.858547268],[-35.433216925999886,82.84715403900005],[-35.44908606699991,82.8382835960001],[-35.42772376199986,82.830511786],[-35.40070553299992,82.82461172100015],[-35.40070553299992,82.81842682500009],[-35.484283006999874,82.8041039080001],[-35.53099524599986,82.78754303600012],[-35.55150305899991,82.76654694199999],[-35.52684485599991,82.75055573100009],[-35.47101803299995,82.74616120000012],[-35.37401282499991,82.74949778900005],[-35.396595831999974,82.76276276200014],[-35.41954505099994,82.77301666900009],[-35.42479407499985,82.78363678600014],[-35.394439256999874,82.79791901200004],[-35.2939347,82.81256745000006],[-35.26414954299992,82.82461172100015],[-35.30138098899991,82.83795807500015],[-35.312570766999926,82.84503815300002],[-35.28941809799997,82.85455963700012],[-34.95103919199988,82.90485260600016],[-34.48766028549997,82.91223786000008],[-34.02428137899994,82.91962311400006],[-33.84312903599987,82.88629791900017],[-33.815663214999944,82.86961497600014],[-33.804351365999935,82.841701565],[-33.8209122389999,82.822699286],[-33.93464107999989,82.79791901200004],[-33.88463294199997,82.79450104400003],[-33.7228897779999,82.8175316430001],[-33.68822180899991,82.83486562700007],[-33.69652258999991,82.85358307500013],[-33.73102779899992,82.89154694200006],[-33.73599199099988,82.90717194200015],[-33.709787563999924,82.92462799700012],[-33.60265051999994,82.94537995000012],[-33.12779700399991,82.96674225500006],[-33.048939581999974,82.98200104400003],[-32.61133785699994,82.98584625849999],[-32.173736131999895,82.98969147300015],[-32.162098761999914,82.99591705900012],[-31.82664954299995,82.99457428600012],[-31.75568600199995,82.98419830900012],[-31.738392706999946,82.97858307500003],[-31.720570441999882,82.96971263200008],[-31.713286912999877,82.95913320500003],[-31.728098110999948,82.94814687700006],[-31.724761522999927,82.94497304900001],[-31.721424933999884,82.94232819200003],[-31.713775193999965,82.93789297100012],[-31.69237219999991,82.93231842700011],[-31.66559811099992,82.93170807500017],[-31.615101691999914,82.93789297100012],[-31.59666907499988,82.9431826840001],[-31.59166419199991,82.94896067900008],[-31.590565558999884,82.95697663000011],[-31.58409583199997,82.96857330900004],[-31.548817511999943,82.99274323100006],[-31.507191535999965,83.0016136740001],[-31.46251380099991,83.00556061400009],[-31.39199785099993,83.02069733300009],[-31.012549065999874,83.0462100283335],[-30.63310028099991,83.07172272366672],[-30.253651495999858,83.09723541900014],[-30.09691321499994,83.12620677300005],[-29.637908494999863,83.11582062400011],[-29.178903774999892,83.10543447500008],[-28.719899054999928,83.09504832600011],[-28.260894334999932,83.08466217700008],[-28.25169837099986,83.06085846600008],[-28.2023005849999,83.04987213700012],[-28.14281165299988,83.04791901200018],[-28.103260870999918,83.05117422100012],[-27.948109503999916,83.08177317900014],[-27.492176886999943,83.07746002800003],[-27.380970831999974,83.06061432500003],[-26.999562140999924,83.06397125850009],[-26.61815344999991,83.06732819200009],[-26.54784094999988,83.08466217700008],[-26.10570227799991,83.11239926466668],[-25.66356360599991,83.14013635233344],[-25.221424933999856,83.16787344000004],[-25.0267634759999,83.15595123900009],[-24.840931769999912,83.11261627800009],[-24.94566809799997,83.10346100500011],[-24.971262173999946,83.09210846600014],[-24.979807094999956,83.07802969],[-24.9728083979999,83.06915924700014],[-24.907093878999888,83.04328034100014],[-24.78506425699993,83.0283877620001],[-24.769439256999927,83.02480703300004],[-24.758941209999875,83.01703522300011],[-24.755238410999937,83.01093170800013],[-24.752349412999905,83.00405508000011],[-24.75365149599989,82.99827708500005],[-24.7623591789999,82.99591705900012],[-24.787220831999917,82.99282461100005],[-24.894357876999948,82.95571523600002],[-25.09325110599991,82.9117699240001],[-25.114491339999887,82.90322500200016],[-25.129750128999945,82.89223867400001],[-25.13060462099986,82.88108958499998],[-25.10846920499989,82.87238190300009],[-25.149281378999945,82.85285065300012],[-25.58763587099989,82.79047272300015],[-25.903553839999887,82.78363678600014],[-25.872710740999935,82.77435944200009],[-25.767201300999943,82.76850006700015],[-25.68663489499988,82.77594635600012],[-25.58340410099987,82.76935455900002],[-25.5162654289999,82.78668854400003],[-25.17018252966659,82.82457103100016],[-24.824099630333194,82.862453518],[-24.47801673099988,82.9003360050001],[-24.252186652999853,82.88605377800003],[-24.061756964999912,82.90387604400011],[-24.03929602799991,82.91030508000004],[-23.996978318999908,82.9172223980001],[-23.93309485599991,82.916408596],[-23.87254798099991,82.90810781500012],[-23.840402798999946,82.89288971600014],[-23.886789516999922,82.89077383000013],[-23.979969855999855,82.8736839860001],[-24.025298631999874,82.87238190300009],[-24.00177975199989,82.84821198100009],[-23.91193600199989,82.82200755400005],[-23.88133704299989,82.79791901200004],[-23.912993943999933,82.77936432500003],[-23.989735480999883,82.77187734600015],[-24.025298631999874,82.7631289730001],[-23.799672003999888,82.77435944200009],[-23.765980597999885,82.78270091400005],[-23.737945115999878,82.79791901200004],[-23.748524542999917,82.81346263200014],[-23.724964972999967,82.82591380400005],[-23.66222083199989,82.8382835960001],[-23.384185350999925,82.85224030200004],[-23.209584113999938,82.83795807500015],[-23.176340298999918,82.82599518400004],[-23.17625891799986,82.80353424700003],[-23.10216223899991,82.79230377800003],[-22.935292120999918,82.79865143400015],[-22.870838995999918,82.76654694199999],[-22.842274542999945,82.75885651200015],[-22.75104732999995,82.77187734600015],[-22.691517706999917,82.7695173200001],[-22.664906378999888,82.77440013200008],[-22.646880662999962,82.78595612200009],[-22.64858964799987,82.80353424700003],[-22.56541907499991,82.79653554900015],[-22.401722785999905,82.76386139500003],[-22.191802537999873,82.74738190300003],[-22.123117641999954,82.7276065120001],[-22.05089270699989,82.71507396000003],[-21.91197669199994,82.71112702000012],[-21.87938391799989,82.70302969000008],[-21.81663977799991,82.70148346600014],[-21.786732550999915,82.69668203300016],[-21.78465735599991,82.68060944200009],[-21.623280402999853,82.672308661],[-21.477772589999915,82.64069245000012],[-21.339507615999903,82.62628815300015],[-21.323109503999916,82.61835358299999],[-21.31851152299987,82.60553620000013],[-21.325917120999858,82.59845612200009],[-21.35724850199992,82.58397044500005],[-21.370025193999936,82.57444896000005],[-21.40282141799986,82.55524323100009],[-21.44933020699989,82.5470238300001],[-21.538238084999932,82.5434024110001],[-21.838856574999852,82.484808661],[-22.140980597999942,82.46149323100009],[-22.306019660999937,82.42739492400007],[-22.278553839999887,82.41868724200002],[-22.217640753999888,82.40639883000013],[-22.196156378999973,82.39256419500005],[-22.225005662999905,82.37933991099999],[-22.437326626999948,82.33999258000001],[-22.904137065333227,82.32438114333331],[-23.3709475036666,82.30876970666684],[-23.837757941999968,82.29315827000015],[-23.886708136999943,82.27887604400013],[-24.383839484666566,82.26724884675015],[-24.88097083233319,82.25562164950018],[-25.3781021799999,82.24399445225002],[-25.875233527666524,82.23236725500011],[-26.37236487533323,82.2207400577501],[-26.869496222999942,82.20911286050013],[-27.366627570666566,82.19748566325016],[-27.86375891833319,82.18585846600017],[-28.3608902659999,82.17423126875009],[-28.858021613666523,82.16260407150008],[-29.355152961333232,82.15097687425013],[-29.852284308999856,82.13934967700014],[-29.873361782999975,82.14374420800011],[-29.908558722999945,82.16290924700009],[-29.92967688699994,82.16730377800017],[-30.223622199999905,82.17084381700015],[-30.394846157999893,82.19525788],[-30.73539520299994,82.20201243733347],[-31.0759442479999,82.20876699466665],[-31.416493292999856,82.2155215520001],[-31.582102016999922,82.22011953300013],[-31.625640428999954,82.208238023],[-31.179568380333276,82.19546133033349],[-30.73349633166663,82.18268463766678],[-30.28742428299995,82.16990794500006],[-30.205433722999917,82.15648021000007],[-30.089670376999923,82.15208567899998],[-30.033518032999922,82.14109935100012],[-30.016753709999904,82.13442617400005],[-29.989857550999915,82.11953359600012],[-29.97337805899994,82.11269765800002],[-29.905140753999916,82.09837474200013],[-29.943186001999916,82.08539459800012],[-30.317209439333283,82.0591087910001],[-30.691232876666557,82.0328229840001],[-31.06525631399995,82.00653717700008],[-31.101796027999878,81.99811432500002],[-31.12677975199992,81.99750397300006],[-31.13902747299997,81.99534739800008],[-31.147816535999933,81.99115631700012],[-31.164540167999856,81.97931549700017],[-31.172596808999913,81.97553131700015],[-31.225575324999852,81.967922268],[-31.499806281999895,81.96464671450012],[-31.77403723899991,81.9613711610001],[-31.80382239499991,81.94757721600003],[-31.839182094999924,81.93903229400009],[-31.91234290299991,81.93911367400007],[-31.987294074999877,81.92316315300017],[-32.07603919199991,81.93105703300013],[-32.56285559799997,81.88328685100002],[-32.67918860599994,81.8526878930001],[-32.779408331999946,81.84113190300015],[-32.78966223899988,81.837103583],[-32.79845130099994,81.82892487200017],[-32.80687415299988,81.81391022300015],[-32.813303188999896,81.79437897300006],[-32.81480872299994,81.77509186400015],[-32.8085017569999,81.76072825700005],[-32.78563391799992,81.75079987200014],[-32.730824347999885,81.75165436400005],[-32.70811926999994,81.74494049700012],[-32.700835740999935,81.73322174700003],[-32.70287024599986,81.71906159100011],[-32.717681443999936,81.691839911],[-32.66714433499993,81.67698802300005],[-32.611805792999945,81.673732815],[-32.503895636999914,81.68423086100016],[-32.14793860599988,81.68130117400013],[-32.144642706999946,81.70555247600012],[-32.13125566299993,81.72353750200007],[-32.11188717399992,81.73623281500012],[-31.93496660099987,81.79279205900004],[-31.68016516799994,81.83478424700003],[-31.241749640999895,81.850043036],[-30.803334113999966,81.86530182500015],[-30.698963995999915,81.8824730490001],[-30.59170488199993,81.88149648600002],[-30.48619544199994,81.90298086100012],[-30.11294511599993,81.919663804],[-30.064198370999918,81.93105703300013],[-29.788441535999933,81.94822825700008],[-29.77708899599986,81.94692617400007],[-29.758534308999852,81.93903229400009],[-29.749663865999906,81.93756745000002],[-29.570668097999913,81.94310130400004],[-29.569935675999883,81.91006094],[-29.56460527299993,81.89695872600014],[-29.549672003999884,81.89004140800013],[-29.34162350199992,81.9032250020001],[-29.318592902999878,81.91193268400015],[-29.309071417999856,81.91860586100005],[-29.301747199999877,81.92645905200011],[-29.296376105999908,81.93585846600003],[-29.292632615999878,81.94684479400009],[-29.290882941999882,81.96043528900005],[-29.288685675999883,81.96405670800003],[-29.28221594999988,81.96784088700004],[-29.273548956999893,81.96979401200018],[-29.242421027999878,81.970160223],[-29.038563605999887,81.99990469],[-28.785227016999897,81.99998607],[-28.669545050999968,82.01390208500008],[-28.554066535999905,82.00844961100013],[-28.395253058999856,82.03180573100003],[-28.335113084999957,82.03229401200012],[-28.246245897999927,82.0228945980001],[-28.194325324999852,82.02855052299999],[-27.937814907999922,82.0250511740001],[-27.81895911399991,82.0561384140001],[-27.761952277999907,82.06244538000014],[-27.313082300285597,82.05173806971443],[-26.864212322571376,82.04103075942866],[-26.415342344857038,82.03032344914295],[-25.966472367142728,82.01961613885716],[-25.51760238942842,82.00890882857148],[-25.06873241171419,81.99820151828568],[-24.619862433999852,81.98749420800007],[-24.634836391999897,81.96991608300006],[-24.681792772999927,81.94277578300013],[-24.698312954999917,81.92499420800014],[-24.656239386999857,81.90989817900014],[-24.625396287999873,81.87929922100012],[-24.616769985999895,81.84149811400006],[-24.64110266799986,81.80499909100003],[-24.656239386999857,81.7955589860001],[-24.6720271479999,81.78888580900006],[-24.706206834999875,81.78119538000011],[-25.10835730699995,81.7401085472501],[-25.510507778999937,81.69902171450009],[-25.912658250999925,81.65793488175008],[-26.314808722999913,81.61684804900015],[-26.46239173099985,81.57404205900015],[-26.607004360999895,81.56077708500014],[-26.703765428999898,81.54120514500006],[-26.723011847999942,81.53148021000011],[-26.699370897999927,81.53241608299999],[-26.493031378999973,81.51557038],[-26.47704016799986,81.51190827000015],[-26.4674373039999,81.50332265800013],[-26.470326300999915,81.49091217700003],[-26.498850063999924,81.4709333350001],[-26.50560462099986,81.45807526200008],[-26.484445766999954,81.45189036700013],[-26.444935675999886,81.43439362200009],[-26.42284094999991,81.42918528899997],[-26.38719641799986,81.42772044500013],[-26.00206458199989,81.49435049050005],[-25.616932745999918,81.560980536],[-25.478871222999885,81.55638255400005],[-25.003956671999873,81.60126373900006],[-24.52904212099989,81.64614492400005],[-24.495716925999886,81.64370351800015],[-24.46515865799995,81.63621653899999],[-24.43464107999992,81.63275788000009],[-24.40147864499991,81.64232005400007],[-24.3587133449999,81.66278717700011],[-24.313221808999913,81.67560455900013],[-24.039784308999913,81.71082184450016],[-23.766346808999884,81.74603913000006],[-23.475738084999932,81.71466705900012],[-23.403920050999943,81.71881745000015],[-23.373036261999914,81.7281761740001],[-23.35529537699992,81.74095286700005],[-23.32481848899988,81.77684153900013],[-23.307728644999912,81.79254791900009],[-23.327259894999912,81.79926178600014],[-23.32135982999995,81.81244538],[-23.33698482999995,81.83624909100008],[-23.329701300999943,81.85203685100014],[-23.3411352199999,81.85529205900018],[-23.353505011999914,81.86367422100011],[-23.361683722999942,81.87372467700011],[-23.360463019999912,81.88239166900011],[-23.346791144999884,81.88865794500003],[-23.28844153599988,81.90176015800004],[-23.266224738999938,81.91889069200006],[-23.272572394999937,81.93439362200017],[-23.312123175999915,81.96503327000009],[-23.234445766999894,81.99013906500006],[-23.22956295499992,81.99795156500006],[-23.229359503999945,82.00535716400005],[-23.226226365999878,82.011175848],[-23.195423956999917,82.02228424700002],[-23.158273891999897,82.02521393400015],[-23.085682745999918,82.02269114800013],[-23.09398352799988,82.01683177299999],[-23.114125128999916,82.00873444200006],[-23.124256964999887,82.00324127800003],[-23.087717251999948,82.00458405200011],[-23.054676886999886,82.00958893400013],[-22.955189581999914,82.041489976],[-22.563496466749882,82.05197785025004],[-22.171803351499957,82.06246572450009],[-21.780110236249925,82.07295359875003],[-21.38841712099989,82.0834414730001],[-21.327626105999883,82.07656484600007],[-21.290638800999915,82.06411367400015],[-21.1205134759999,81.97801341399999],[-21.090687628999888,81.95774974200008],[-21.069203253999973,81.93325429900011],[-21.056996222999885,81.91303131700012],[-21.05492102799988,81.9014346370001],[-21.061390753999888,81.89093659100003],[-21.08584550699993,81.8615176450001],[-21.08991451699998,81.85797760600015],[-21.08820553299998,81.84284088700015],[-21.0807185539999,81.83551666900014],[-21.069569464999887,81.83026764500006],[-21.056548631999902,81.82119375200007],[-21.051096157999947,81.81391022300015],[-21.04190019399988,81.79572174700014],[-21.02562415299985,81.77163320500013],[-21.024647589999887,81.7665469420001],[-21.028920050999886,81.761419989],[-21.033029751999948,81.74477773600016],[-21.042103644999937,81.73191966400013],[-21.07823645699989,81.72455475500014],[-21.087391730999855,81.7121442730001],[-21.092030402999878,81.693548895],[-21.103993292999917,81.671576239],[-21.12360592399989,81.65265534100017],[-21.151356574999852,81.64362213700015],[-21.14537512899994,81.63629791900014],[-21.162587042999856,81.62230052300002],[-21.197621222999942,81.57363515800016],[-21.2376195949999,81.5392927100001],[-21.256825324999852,81.51748281500015],[-21.53473873649989,81.41396719],[-21.812652147999927,81.31045156500005],[-22.05711829299986,81.27802155200008],[-22.082346157999893,81.26886627800009],[-22.091053839999887,81.26772695500016],[-22.0948787099999,81.25604889500006],[-22.097564256999874,81.21967194200009],[-22.110666469999952,81.21930573100015],[-22.151478644999912,81.20880768400008],[-22.18219967399989,81.20482005400011],[-22.242543097999942,81.20477936400012],[-22.255848761999857,81.20237864799999],[-22.267160610999923,81.19525788000011],[-22.27330481699991,81.18524811400015],[-22.276234503999945,81.17304108300006],[-22.27562415299988,81.16071198100012],[-22.271148240999906,81.1503766950001],[-22.443470831999917,81.12433502800003],[-22.56037350199989,81.1201846370001],[-22.57119706899988,81.11713288000003],[-22.578684048999946,81.10748932500002],[-22.5814509759999,81.09418366100012],[-22.581125454999977,81.08588288000014],[-22.58458411399988,81.08030833500011],[-22.5982966789999,81.07501862200014],[-22.6627498039999,81.06492747599998],[-23.107004360999976,80.92218659100003],[-23.13223222599993,80.91791413000011],[-23.17784583199989,80.91889069200009],[-23.2667537099999,80.89630768400012],[-23.275013800999886,80.8893496770001],[-23.269642706999942,80.87734609600001],[-23.257313605999883,80.86981842700013],[-23.226673956999885,80.8592796900001],[-23.216420050999943,80.84910716400013],[-23.21605383999986,80.83466217700008],[-23.22642981699994,80.82314687700013],[-23.2689509759999,80.80133698100009],[-23.306996222999885,80.79279205900015],[-23.361439581999885,80.77383047100015],[-23.501779751999916,80.751166083],[-23.49315344999991,80.74282461100013],[-23.466867641999897,80.73725006700012],[-23.457997199999852,80.73037344],[-23.458973761999914,80.71552155200006],[-23.47402910099993,80.70734284100014],[-23.608754035999965,80.68357982000003],[-23.679676886999854,80.68280670800011],[-23.715646938999924,80.67772044500002],[-23.850412563999924,80.63629791900009],[-23.884388800999886,80.61871979400013],[-23.897084113999938,80.60065338700004],[-23.885609503999888,80.5865746110001],[-23.86473548099991,80.58356354400009],[-23.555816209999904,80.64783356350016],[-23.246896938999896,80.71210358300014],[-23.149037238999934,80.71686432500003],[-23.093251105999855,80.72797272300005],[-23.075795050999886,80.75120677299999],[-23.11196855399993,80.76170482000008],[-23.124094204999917,80.76292552299999],[-23.101958787999934,80.78363678600009],[-23.059681769999912,80.7953148460001],[-22.93464107999995,80.81488678600006],[-22.914133266999897,80.82440827000013],[-22.910633917999917,80.84003327000012],[-22.922596808999856,80.85122304900013],[-22.980132615999935,80.87250397300012],[-22.971913214999944,80.88043854400009],[-22.747547980999855,80.93146393400018],[-22.305409308999884,80.96308014500006],[-22.289947068999965,80.967271226],[-22.276478644999884,80.975083726],[-22.264475063999953,80.98566315300003],[-22.237660285999965,81.01654694200009],[-22.231190558999852,81.02045319200009],[-22.2037654289999,81.02480703300006],[-22.085438605999883,81.01040273600002],[-22.02757727799988,81.01117584800012],[-21.958973761999857,81.02138906500006],[-21.94713294199991,81.02635325700011],[-21.938303188999924,81.03489817900014],[-21.93028723899991,81.0545921900001],[-21.922718878999945,81.06403229400009],[-21.896107550999915,81.07684967700011],[-21.800526495999918,81.08820221600011],[-21.46084550699993,81.16762929900004],[-21.387440558999913,81.19476959800011],[-21.36278235599994,81.20038483300014],[-20.951283331999946,81.23574453300016],[-20.85960852799988,81.2794863950001],[-20.754709438999953,81.290025132],[-20.724191860999923,81.3038597680001],[-20.716460740999906,81.314683335],[-20.711537238999938,81.34080638200014],[-20.705474412999934,81.35195547100007],[-20.691761847999913,81.35960521],[-20.271473761999886,81.45125967000008],[-19.851185675999943,81.54291413000009],[-19.83307857999995,81.55556875200013],[-20.050648566999882,81.5873477230001],[-20.03604081899988,81.59821198100018],[-20.010894334999904,81.60468170800009],[-19.878773566999968,81.62221914300004],[-19.946400519999912,81.64679596600003],[-19.93260657499991,81.66030508000001],[-19.904449022999927,81.66950104400016],[-19.708159959999932,81.69550202000006],[-19.644642706999946,81.68988678600006],[-19.644886847999885,81.658148505],[-19.643869594999927,81.64793528900007],[-19.639515753999945,81.63646067900011],[-19.632801886999886,81.63157786700003],[-19.622954881999874,81.63056061400007],[-19.38621985599985,81.63519928600012],[-19.315785285999937,81.62152741100007],[-19.292225714999915,81.62026601800007],[-19.29043535099993,81.61200592700008],[-19.26130123599995,81.61054108300011],[-19.15367591099988,81.62433502800003],[-19.0852758449999,81.62543366100009],[-19.025542772999927,81.61884186399999],[-18.99754798099991,81.61200592700008],[-18.983876105999883,81.61029694200009],[-19.006174282999893,81.59674713700012],[-19.24632727799994,81.55475495000003],[-19.27928626199991,81.54144928600003],[-19.289906378999945,81.53343333500005],[-19.294300910999937,81.52521393400015],[-19.296864386999943,81.51557038],[-19.301909959999872,81.50372955900002],[-19.305978969999927,81.498236395],[-19.316029425999886,81.487494208],[-19.320301886999914,81.48114655200006],[-19.32884680899994,81.46295807500017],[-19.33311926999994,81.45685455900018],[-19.372222459999904,81.42963288],[-19.466460740999878,81.40436432500003],[-19.50450598899988,81.37881094000015],[-19.460560675999943,81.374701239],[-19.0593765939999,81.43854401249997],[-18.658192511999943,81.50238678600014],[-18.52375240799995,81.50568268400018],[-18.472971157999893,81.500433661],[-18.418446417999917,81.48102448100009],[-18.368641730999855,81.47504303600007],[-18.213002081999946,81.48224518400012],[-17.97744706899988,81.44696686400009],[-17.959055141999922,81.44061920800014],[-17.91441809799997,81.41510651200007],[-17.85533606699994,81.40375397300005],[-17.83287512899994,81.40326569200009],[-17.81944739499994,81.40997955900002],[-17.820790167999917,81.42413971600014],[-17.8607478509999,81.46613190300003],[-17.851551886999914,81.46686432500017],[-17.619699673999975,81.43008047100008],[-17.60362708199989,81.4230817730001],[-17.56004798099988,81.39386627800015],[-17.546213344999956,81.38934967700011],[-17.505930141999897,81.38816966399999],[-17.46544348899988,81.3920352230001],[-17.394276495999947,81.40884023600009],[-17.146839972999885,81.41339752800006],[-17.15062415299991,81.42511627800002],[-17.16315670499992,81.43427155200011],[-17.190988735999895,81.4472516950001],[-17.200917120999886,81.45408763200011],[-17.20872962099989,81.46161530199998],[-17.215077277999907,81.47040436400015],[-17.220204230999908,81.48102448100009],[-17.19277910099987,81.48419830900015],[-17.01732337099986,81.48411692900008],[-16.990223761999857,81.49237702000006],[-16.95921790299991,81.50674062700011],[-16.925445115999935,81.5168317730001],[-16.83531653599988,81.52411530200011],[-16.812652147999927,81.5366885440001],[-16.835926886999857,81.55072663000006],[-16.873443162999873,81.55451080900018],[-16.98753821499986,81.55320872599998],[-17.035511847999942,81.56183502800009],[-17.046538865999906,81.56224192899998],[-17.04478919199991,81.56488678600009],[-17.028635219999956,81.58063385600002],[-17.019886847999885,81.58466217700011],[-17.000721808999913,81.5898298200001],[-16.976226365999878,81.59259674700016],[-16.932484503999913,81.5895042990001],[-16.915638800999915,81.59100983300013],[-16.900217251999976,81.59568919500005],[-16.853179490999963,81.61937083500008],[-16.838002081999974,81.624457098],[-16.729318813999924,81.63104889500006],[-16.5785212879999,81.61619700700011],[-16.475697394999912,81.62470123900015],[-16.461293097999942,81.630072333],[-16.45181230399993,81.63971588700015],[-16.463246222999885,81.64899323100012],[-16.540028449999937,81.684556382],[-16.51813717399989,81.69033437700016],[-16.500599738999934,81.7060000670001],[-16.489003058999856,81.72719961100002],[-16.485218878999916,81.74945709800006],[-16.15404212099986,81.75604889500013],[-16.14598548099991,81.77309804900001],[-16.138905402999853,81.78335195500013],[-16.127430792999917,81.78717682500006],[-15.941151495999916,81.77277252800017],[-15.845122850999928,81.78180573100018],[-15.825672980999853,81.78986237200003],[-15.828968878999886,81.80097077000015],[-15.825021938999896,81.8128929710001],[-15.816558397999868,81.823228257],[-15.806630011999857,81.82965729400011],[-15.79271399599989,81.83201732000008],[-15.541371222999857,81.83541494350011],[-15.290028449999909,81.838812567],[-15.235707160999882,81.83173248900012],[-15.24079342399989,81.82868073100002],[-15.245838995999916,81.82684967700006],[-15.256662563999924,81.82477448100003],[-15.206654425999915,81.81476471600014],[-14.777929925333268,81.81391022366672],[-14.349205424666563,81.81305573133348],[-13.920480923999946,81.81220123900015],[-13.488636848499937,81.7638613955],[-13.056792772999927,81.71552155200011],[-12.918853318999934,81.72308991100007],[-12.802805141999897,81.71478913],[-12.694447394999884,81.69293854400014],[-12.57005774599989,81.69623444200009],[-12.298858201999934,81.66675446150008],[-12.027658657999893,81.63727448100003],[-11.869048631999902,81.59829336100016],[-11.74510657499988,81.55048248900012],[-11.735096808999913,81.5428734400001],[-11.708322719999899,81.51630280200011],[-11.69522050699993,81.50885651200015],[-11.68150794199991,81.50409577000015],[-11.432525193999936,81.49054596600008],[-11.37682044199991,81.47601959800015],[-11.395863410999908,81.46088288000006],[-11.63857988199993,81.38841380400011],[-11.902129686499904,81.36013418150013],[-12.165679490999963,81.33185455900012],[-12.18614661399991,81.32514069200005],[-12.196888800999943,81.31834544500005],[-12.21589107999992,81.301743882],[-12.22642981699991,81.2948265650001],[-12.244984503999916,81.28807200700005],[-12.284413214999885,81.28156159100014],[-12.432769334999932,81.24062734600012],[-12.49201412699992,81.23354726800007],[-12.532622850999928,81.22272370000017],[-12.526722785999908,81.20416901200015],[-12.528187628999945,81.19306061400012],[-12.538197394999939,81.18695709800015],[-12.840016242499956,81.13739655150006],[-13.141835089999857,81.087836005],[-13.15680904899989,81.08746979400016],[-13.187977667999888,81.09218984600007],[-13.203968878999888,81.09223053600005],[-13.288685675999972,81.06329987200014],[-13.306304490999878,81.05463288000007],[-13.32241777299987,81.04303620000015],[-13.33568274599989,81.02704498900006],[-13.342111782999892,81.02244700700011],[-13.354603644999912,81.01992422100001],[-13.684641079999919,81.00079987200003],[-14.078968878999886,81.02033112200012],[-14.552723761999856,80.9906273460001],[-14.491525844999899,80.96881745000003],[-14.20372473899991,80.91437409100003],[-14.132191535999965,80.88617584800015],[-14.157053188999896,80.84149811399999],[-14.200754360999895,80.81964752800015],[-14.294911261999912,80.78432851800012],[-14.621327277999853,80.74640534100011],[-14.724680141999926,80.75210195500007],[-15.022694464999887,80.73344554250015],[-15.320708787999903,80.71478913000011],[-15.337961391999926,80.71141185100002],[-15.359364386999859,80.69733307500013],[-15.395822719999925,80.6596133480001],[-15.420399542999945,80.64838288],[-15.836577928499876,80.64282868050013],[-16.252756313999896,80.63727448100015],[-16.358550584999932,80.65680573100002],[-16.710764126499868,80.65981679900013],[-17.062977667999917,80.66282786700005],[-17.086537238999934,80.66787344000006],[-17.171864386999914,80.7092145850001],[-17.203480597999885,80.71893952000005],[-17.239898240999878,80.72231679900005],[-17.46336829299986,80.71662018400009],[-17.444976365999906,80.67938873900003],[-17.439808722999913,80.65371328300016],[-17.459095831999946,80.64093659100011],[-17.61701412699989,80.64785390800002],[-17.837757941999907,80.62860748900006],[-18.065297003999945,80.576646226],[-18.322255011999886,80.5580508480001],[-18.593861456999917,80.57343170800011],[-18.952788865999963,80.63206614800008],[-19.16612708199989,80.63458893400018],[-19.235829230999855,80.64834219],[-19.47166907499988,80.66543203300013],[-19.847238736499918,80.61587148650015],[-20.222808397999952,80.5663109400001],[-20.51634680899991,80.56427643450009],[-20.809885219999984,80.5622419290001],[-20.84544837099986,80.55735911700005],[-20.825266079999917,80.54572174700014],[-20.800038214999855,80.5402692730001],[-20.406809048999943,80.53888580900004],[-20.379790818999908,80.53506094],[-20.360218878999945,80.52553945500001],[-20.352406378999945,80.51154205900015],[-20.35114498599995,80.49457428600009],[-20.352650519999912,80.46059804900013],[-20.297515428999873,80.46710846600006],[-20.222727016999954,80.49652741100012],[-19.855376756499936,80.56568024300013],[-19.48802649599989,80.63483307500003],[-19.021555141999954,80.58885325700005],[-18.962025519999912,80.5752627620001],[-18.843251105999908,80.5722516950001],[-18.677398240999906,80.54140859600012],[-18.397735154999907,80.5234235700001],[-18.118072068999933,80.50543854400016],[-18.055083787999905,80.49176666900003],[-17.682504849499878,80.5021019555001],[-17.309925910999937,80.51243724200005],[-16.89622962099989,80.58368561400006],[-16.860503709999875,80.58173248900002],[-16.82323157499988,80.57343170800011],[-16.697621222999942,80.52798086100013],[-16.44823157499988,80.47915273600013],[-16.120838996499884,80.45819733250015],[-15.793446417999917,80.43724192900004],[-15.755197719999954,80.41941966399999],[-15.789173956999887,80.4046898460001],[-16.270008917999913,80.29047272300004],[-16.284982876999948,80.29083893400004],[-16.29792232999995,80.29328034100017],[-16.30992591099988,80.2983259140001],[-16.346262173999975,80.32355377800015],[-16.359364386999857,80.32746002800015],[-16.37531490799995,80.32591380400011],[-16.390451626999948,80.31924062700016],[-16.401722785999937,80.30857982000013],[-16.40489661399991,80.29596588700004],[-16.39549719999988,80.28335195500016],[-16.380116339999944,80.27606842700006],[-16.344105597999885,80.26788971600013],[-16.327463344999927,80.26154205900012],[-16.372425910999908,80.24286530200014],[-16.380360480999883,80.23761627800015],[-16.3841853509999,80.23574453300007],[-16.447336391999983,80.21930573100018],[-16.846302863999938,80.202826239],[-16.890695766999954,80.19155508000001],[-17.12214107999992,80.18292877800009],[-17.257883266999897,80.2147891300001],[-17.288441535999937,80.21800364799998],[-17.580657518999914,80.189561265],[-17.87287350199989,80.16111888200005],[-18.26925615149989,80.18099599800014],[-18.665638800999915,80.20087311400015],[-18.773589647999927,80.22158437700014],[-19.025990363999906,80.23615143400016],[-19.179554816999882,80.2680117860001],[-19.47435462099986,80.26019928600012],[-19.63809160099987,80.22138092700003],[-19.72704016799989,80.16258372600011],[-19.779855923999946,80.14630768400018],[-20.1712133449999,80.10431549700009],[-20.171742316999968,80.09699127800009],[-19.991322394999912,80.08885325700008],[-19.966460740999874,80.08323802300006],[-19.990142381999902,80.06940338700018],[-20.053089972999913,80.04181549700014],[-20.079172329999892,80.03676992400013],[-20.19395911399991,80.03412506700015],[-20.22826087099989,80.02399323100018],[-20.15054277299987,80.01260000200004],[-20.077015753999888,79.9897321640001],[-20.35338294199994,79.88605377800012],[-20.38927161399991,79.86322662999999],[-20.408924933999884,79.85464101800007],[-20.41783606699991,79.84845612200012],[-20.423085089999887,79.83958567900005],[-20.352406378999945,79.82013580900015],[-20.11432857999995,79.82318756700006],[-20.101389126999948,79.82094961100007],[-20.090321417999917,79.81513092700011],[-20.08214270699989,79.80414459800005],[-20.078928188999953,79.79328034100017],[-20.077381964999915,79.78343333500005],[-20.07481848899991,79.77399323100003],[-20.068430141999954,79.76390208500008],[-20.04600989499997,79.75031159100003],[-19.996327277999853,79.74770742400013],[-19.976226365999906,79.73826732000009],[-19.97044837099986,79.7253278670001],[-19.97288977799988,79.712347723],[-19.976918097999942,79.69940827],[-19.97573808499993,79.6869570980001],[-19.96694902299987,79.67938873900012],[-19.954701300999886,79.67902252800012],[-19.929839647999952,79.68455638200014],[-19.84862219999985,79.68280670800013],[-19.825306769999937,79.69057851800015],[-19.81688391799989,79.69891998900012],[-19.804758266999897,79.71967194200002],[-19.7960505849999,79.72785065300012],[-19.78270423099991,79.73248932500015],[-19.485666469999927,79.77366771000011],[-19.46532141799986,79.77326080900012],[-19.44517981699991,79.76959870000015],[-19.36888587099986,79.744818427],[-19.258127407999893,79.72508372600005],[-19.207753058999856,79.7084821640001],[-19.203521287999934,79.69428131700009],[-19.21637936099995,79.69269440300015],[-19.227853969999895,79.68537018400015],[-19.248850063999953,79.66718170800006],[-19.258941209999904,79.66107819200006],[-19.385324673999946,79.62409088700004],[-19.375721808999884,79.60602448100012],[-19.3627009759999,79.59072500200016],[-19.35265051999991,79.57391998900013],[-19.35179602799991,79.55133698100015],[-19.36571204299989,79.54588450700014],[-19.406605597999942,79.52049388200011],[-19.457020636999886,79.5049502620001],[-19.47227942599994,79.49603913000006],[-19.485096808999884,79.479396877],[-19.498890753999888,79.44049713700012],[-19.511301235999895,79.423732815],[-19.56590735599988,79.38593170800014],[-19.572499152999853,79.37335846600014],[-19.562367316999882,79.36713287999999],[-19.50633704299986,79.35716380400011],[-19.493072068999933,79.35024648600002],[-19.47915605399993,79.34039948100018],[-19.468739386999857,79.32831452000009],[-19.466053839999883,79.31476471600003],[-19.47020423099991,79.307074286],[-19.49278723899988,79.28351471600013],[-19.511708136999914,79.25629303600013],[-19.52025305899994,79.24774811400012],[-19.56541907499988,79.21312083500014],[-19.589588995999886,79.2008324240001],[-19.599232550999943,79.19228750200016],[-19.60358639199995,79.17991771000011],[-19.591135219999927,79.18414948100006],[-19.557687954999974,79.2062848980001],[-19.501942511999886,79.234116929],[-19.432199673999918,79.27985260600009],[-19.405100063999896,79.28733958500005],[-19.349273240999906,79.28607819200006],[-19.320952928999873,79.29071686400009],[-19.30650794199991,79.30719635600015],[-19.307362433999913,79.31403229400007],[-19.31403561099995,79.32941315300002],[-19.316070115999878,79.33665599200005],[-19.31651770699989,79.34406159100006],[-19.31582597599993,79.35101959800012],[-19.314116990999935,79.357611395],[-19.311268683999913,79.36456940300009],[-19.30321204299986,79.37616608300003],[-19.291005011999886,79.38593170800014],[-19.2766820949999,79.39166901200012],[-19.262277798999946,79.39069245000015],[-19.260609503999916,79.38263580900012],[-19.246652798999946,79.37620677300002],[-19.236683722999942,79.36692942900005],[-19.230051235999895,79.35472239800008],[-19.22642981699994,79.33934153900013],[-19.225331183999884,79.31452057500017],[-19.226470506999927,79.30744049700012],[-19.231109178999958,79.29889557500007],[-19.237375454999892,79.29120514500006],[-19.24168860599991,79.28310781500015],[-19.2408748039999,79.27301666900017],[-19.229603644999912,79.2746035830001],[-19.20645097599987,79.28815338700016],[-19.194203253999888,79.29230377800012],[-19.179676886999857,79.29246653899999],[-19.165272589999887,79.29047272300012],[-19.151437954999892,79.2866885440001],[-19.138254360999923,79.28143952000012],[-19.13809160099987,79.27838776200004],[-19.136789516999983,79.27138906500015],[-19.136708136999886,79.26825592700008],[-18.937855597999913,79.26146067900005],[-18.874745245999918,79.23655833500011],[-18.878773566999882,79.22508372600008],[-18.88841712099986,79.22117747600008],[-18.94896399599986,79.22638580900015],[-18.976918097999885,79.22089264500015],[-18.99128170499995,79.215521552],[-19.00121008999986,79.20652903900007],[-19.002512173999946,79.19245026200012],[-18.994536912999905,79.18016185100008],[-18.96654212099989,79.15961334800012],[-18.955189581999917,79.14899323100016],[-18.992909308999884,79.15058014500003],[-19.067860480999936,79.14459870000007],[-19.104644334999904,79.15228913000011],[-19.137521938999896,79.16718170800009],[-19.15461178299995,79.17153554900007],[-19.17292232999992,79.17035553600013],[-19.190012173999943,79.16225820500001],[-19.199086066999968,79.14980703300009],[-19.210275844999956,79.11749909100017],[-19.231312628999913,79.09731679900013],[-19.26089433499996,79.09638092700006],[-19.321888800999943,79.11432526200008],[-19.35448157499991,79.11725495000003],[-19.3821508449999,79.1113141950001],[-19.437123175999886,79.08690013200004],[-19.468576626999887,79.08478424700006],[-19.52171790299991,79.11286041900014],[-19.551340298999943,79.11359284100017],[-19.567982550999886,79.10529205900008],[-19.59886633999986,79.083685614],[-19.61595618399988,79.075873114],[-19.63190670499989,79.07318756700012],[-19.69884192599991,79.07729726800007],[-19.736439581999917,79.07440827000015],[-19.75438391799986,79.07025788],[-19.767201300999886,79.06517161699999],[-19.802723761999854,79.04572174700017],[-19.878529425999915,79.03196849200008],[-19.910552537999905,79.01825592700014],[-19.905506964999887,78.99347565300017],[-19.88703365799995,78.97890859600012],[-19.784250454999945,78.93081289300007],[-19.769276495999915,78.91624583500014],[-19.765695766999926,78.89765045800014],[-19.775990363999938,78.88125234600012],[-19.795318162999877,78.86920807500003],[-19.88133704299989,78.83685944200012],[-19.925852016999954,78.8286807310001],[-20.238433397999927,78.826605536],[-20.331776495999915,78.83803945500013],[-20.409575975999925,78.858547268],[-20.44163977799991,78.8607852230001],[-20.637440558999884,78.83502838700004],[-20.650502081999974,78.83051178600009],[-20.602691209999932,78.81012604400011],[-20.580230272999927,78.79547760600009],[-20.567860480999883,78.77655670800009],[-20.685943162999877,78.76723867400013],[-20.948841925999915,78.78302643400016],[-20.970814581999942,78.77887604400003],[-20.97899329299986,78.7668317730001],[-20.919911261999914,78.74774811400015],[-20.85692298099991,78.71808502800008],[-20.842030402999853,78.71527741100005],[-20.861317511999882,78.70441315300015],[-21.095814581999917,78.67304108300011],[-21.192982550999915,78.64447663000014],[-21.207753058999913,78.63287995000003],[-20.89085852799985,78.62714264500015],[-20.863270636999914,78.62201569200012],[-20.842437303999954,78.60854726800015],[-20.848215298999918,78.59259674700013],[-20.868031378999916,78.57705312700013],[-20.889759894999912,78.56439850500009],[-21.046864386999857,78.50454336100002],[-21.064523891999954,78.48981354400003],[-21.072132941999882,78.47321198100016],[-21.076893683999884,78.45526764500012],[-21.08641516799989,78.43646881700009],[-21.109974738999938,78.41547272300012],[-21.226063605999883,78.3607445330001],[-21.295033331999917,78.29999420800006],[-21.301380988999934,78.29303620000017],[-21.304351365999935,78.28408437700013],[-21.299712693999936,78.26984284100006],[-21.287993943999936,78.25560130400014],[-21.262928839999944,78.23212311400006],[-21.23997962099986,78.1843936220001],[-21.266672329999977,78.16063060100011],[-21.366444464999887,78.144273179],[-21.354481574999852,78.13226959800006],[-21.324370897999927,78.11310455900012],[-21.316395636999857,78.09788646000013],[-21.322336391999897,78.07680898600002],[-21.342925584999932,78.06655508000007],[-21.39037024599986,78.06012604400016],[-21.62999426999988,77.99811432500003],[-21.64712480399993,77.9874535180001],[-21.64085852799988,77.97833893400009],[-21.563140428999873,77.94692617400007],[-21.547230597999942,77.93207428599999],[-21.545318162999877,77.91193268400013],[-21.557443813999978,77.89850495000016],[-21.57876542899993,77.88788483300011],[-21.620838995999918,77.87579987200003],[-21.779652472999942,77.85175202],[-21.803578253999916,77.85248444200012],[-21.814849412999905,77.8504092470001],[-21.819976365999935,77.8426781270001],[-21.81676184799997,77.83502838700015],[-21.800363735999948,77.81830475500014],[-21.794911261999914,77.81049225500014],[-21.80284583199989,77.80731842700008],[-21.847035285999965,77.78131745000009],[-21.855824347999913,77.77130768400012],[-21.86851966099988,77.74909088700015],[-21.876454230999855,77.73916250200016],[-21.89940344999985,77.72589752800012],[-21.92715410099993,77.71600983300003],[-21.952219204999917,77.70278554900007],[-21.967274542999945,77.67918528900013],[-21.650502081999946,77.65863678600009],[-21.49351966099988,77.67352936400015],[-21.481068488999934,77.67234935100011],[-21.446766730999883,77.66258372600008],[-21.453358527999878,77.65387604400009],[-21.5970759759999,77.56159088700002],[-21.604603644999965,77.55023834800006],[-21.59072831899988,77.54889557500017],[-21.576242641999926,77.54975006700009],[-21.56236731699994,77.553168036],[-21.55064856699994,77.55927155200008],[-21.5188695949999,77.58372630400011],[-21.35456295499992,77.66412995000012],[-21.29271399599986,77.6745466170001],[-21.332183397999895,77.67755768400009],[-21.378325975999925,77.68927643400009],[-21.408924933999856,77.71255117400001],[-21.401478644999884,77.75018952],[-21.373890753999945,77.77680084800012],[-20.96214758999986,77.97036367400013],[-20.937408006999874,77.97370026200015],[-20.760568813999896,77.9706078150001],[-20.394968227999897,77.89219798400013],[-20.029367641999926,77.81378815300016],[-19.961008266999926,77.79096100500006],[-19.658884243499898,77.76203034099997],[-19.356760219999956,77.73309967700006],[-19.293365037999934,77.71478913],[-19.251210089999887,77.70937734600012],[-19.192697719999927,77.69082265800013],[-19.17992102799991,77.68866608300014],[-19.142241990999906,77.68720123900007],[-19.126820441999882,77.68366120000009],[-19.11339270699989,77.67739492400013],[-19.07168535099993,77.65119049700012],[-19.020578579999977,77.63377513200014],[-18.990386522999867,77.61859772300015],[-18.979156053999873,77.61684804900015],[-18.994699673999946,77.59992096600017],[-19.036000128999916,77.59552643400009],[-19.11237545499992,77.59707265800013],[-19.132150844999956,77.59223053600006],[-19.255360480999855,77.54266998900012],[-19.35798092399989,77.526353257],[-19.383615688999953,77.52997467700006],[-19.411773240999935,77.54287344000006],[-19.71607418499991,77.6177025415001],[-20.020375128999888,77.69253164300012],[-20.092152472999885,77.701361395],[-20.259755011999886,77.68919505400011],[-20.337513800999915,77.66144440300002],[-20.35529537699989,77.65924713700004],[-20.821522589999887,77.65350983300009],[-20.80931555899991,77.63129303600012],[-20.774769660999908,77.61701080900012],[-20.34398352799991,77.55487702],[-20.27843176999988,77.53302643400015],[-20.277333136999914,77.52952708500005],[-20.276926235999923,77.52602773600007],[-20.27725175699993,77.52252838700018],[-20.27830969999991,77.518988348],[-20.33901933499996,77.51691315300017],[-20.40636145699997,77.52285390800002],[-20.47032630099997,77.51862213700018],[-20.48159745999996,77.51410553600012],[-20.463490363999938,77.51137929900007],[-20.447336391999897,77.50226471600016],[-20.44102942599994,77.49017975500009],[-20.45254472599987,77.47817617400015],[-20.468006964999915,77.47443268400012],[-20.538970506999874,77.47870514500012],[-20.817616339999887,77.52826569200006],[-20.89220130099994,77.53001536700005],[-20.92625891799986,77.52240631700003],[-20.919260219999956,77.50910065300009],[-20.898345506999902,77.50283437700013],[-20.856027798999918,77.49774811400012],[-20.81932532499991,77.48753489799999],[-20.511301236499918,77.45453522350006],[-20.20327714799987,77.42153554900015],[-20.17979895699989,77.41559479400003],[-20.168039516999922,77.40412018400018],[-20.18228105399993,77.39728424700017],[-20.465402798999918,77.3827985700001],[-20.491769985999895,77.37531159100014],[-20.502308722999967,77.36212799700012],[-20.473378058999852,77.35911692900002],[-20.230132615999935,77.372503973],[-19.97889156799991,77.35681793800013],[-19.72765051999994,77.34113190300015],[-19.649077928999926,77.30817291900009],[-19.627797003999945,77.30353424700014],[-19.492014126999976,77.29303620000009],[-19.464507615999935,77.28213125200001],[-19.45173092399989,77.26243724199999],[-19.443714972999942,77.20986562700013],[-19.397613084999904,77.21869538],[-19.381459113999938,77.21771881700012],[-19.274566209999904,77.18927643400008],[-19.252756313999924,77.18817780200006],[-19.176747199999937,77.19253164300015],[-19.124338344999956,77.18968333500011],[-19.092925584999932,77.1837425800001],[-19.07632402299987,77.18256256700006],[-19.062652147999927,77.18671295799999],[-19.084095831999974,77.20416901200015],[-19.09642493399991,77.21112702000015],[-19.108713344999956,77.21548086100012],[-19.108143683999913,77.22223541900017],[-19.104969855999855,77.22577545800004],[-19.100900844999984,77.22870514500009],[-19.09740149599989,77.233832098],[-19.09557044199991,77.24013906500012],[-19.09166419199991,77.27440013200011],[-19.084339972999913,77.30320872600014],[-19.082508917999945,77.31842682500012],[-19.036284959999932,77.32013580900012],[-18.83381100199989,77.29144928600006],[-18.623158331999946,77.29425690300012],[-18.564564581999917,77.288275458],[-18.53612219999988,77.280951239],[-18.50918535099993,77.26935455900018],[-18.461781378999888,77.24070872600011],[-18.444447394999912,77.23371002800002],[-18.3619685539999,77.22117747600011],[-18.32445227799988,77.20848216400007],[-18.296498175999943,77.17914459800015],[-18.268299933999884,77.12759023600007],[-18.25877844999988,77.10016510600003],[-18.258208787999905,77.07245514500015],[-18.27017167899993,77.01447174700014],[-18.270253058999913,76.99420807500013],[-18.258615688999896,76.94696686400009],[-18.25918535099987,76.93219635600009],[-18.265939907999922,76.9205589860001],[-18.300160285999905,76.89337799700009],[-18.312408006999874,76.87954336100007],[-18.333729620999918,76.84955475500011],[-18.345855272999927,76.83588288],[-18.380279100999953,76.8194033870001],[-18.458973761999857,76.80882396000005],[-18.489165818999936,76.78497955900015],[-18.493967251999948,76.77338288000006],[-18.497303839999883,76.76044342700006],[-18.50218665299985,76.74872467700006],[-18.511219855999855,76.74091217700008],[-18.52847245999996,76.74070872600011],[-18.549143032999975,76.74835846600014],[-18.5853572259999,76.7666690120001],[-18.612782355999855,76.77643463700007],[-18.626047329999977,76.77610911700012],[-18.63613847599993,76.76727936400006],[-18.63890540299991,76.75275299700002],[-18.63658606699994,76.73456452000012],[-18.62840735599994,76.70160553600006],[-18.68049068899998,76.72361888200008],[-18.729400193999965,76.75136953300013],[-18.756214972999942,76.76064687700001],[-18.810699022999927,76.76512278900007],[-18.83702551999994,76.77440013200011],[-18.858143683999856,76.78506094000015],[-18.878651495999918,76.7917341170001],[-18.970692511999914,76.80589427300013],[-18.9855037099999,76.81028880400011],[-19.032378709999932,76.8327497420001],[-19.062652147999927,76.83787669500013],[-19.391346808999884,76.83136627800002],[-19.445301886999886,76.83954498900015],[-19.462880011999914,76.84585195500007],[-19.509917772999927,76.87531159100017],[-19.521555141999926,76.87791575700005],[-19.582875128999945,76.87270742400007],[-19.647938605999883,76.8776716170001],[-19.89509029899989,76.92536041900009],[-20.223622199999852,76.93109772300015],[-20.241444464999944,76.929144598],[-20.277333136999914,76.92108795800009],[-20.317616339999915,76.91681549700013],[-20.513417120999886,76.94570547100007],[-20.591216600999896,76.94098541900017],[-20.582386847999942,76.92934804900015],[-20.58311926999997,76.92084381700012],[-20.591297980999883,76.91486237200012],[-20.74669348899991,76.88768138200003],[-20.756214972999913,76.88446686400015],[-20.779611782999893,76.87327708500014],[-20.7916560539999,76.87006256700009],[-20.80500240799992,76.87103913000006],[-20.87995357999995,76.88703034100014],[-21.03620357999992,76.90241120000009],[-21.350900844999984,76.88719310100011],[-21.504261847999885,76.90346914300015],[-21.730051235999923,76.89081452000009],[-21.712880011999914,76.8776309270001],[-21.68146725199989,76.87396881700009],[-21.588124152999878,76.87518952],[-21.435658331999946,76.85907623900012],[-21.069203253999973,76.87360260600015],[-21.010650193999908,76.86908600500003],[-20.92495683499996,76.8453636740001],[-20.89395097599993,76.84235260600009],[-20.805246548999946,76.85077545800014],[-20.777333136999914,76.84235260600009],[-20.94432532499988,76.82697174700014],[-21.042958136999854,76.79401276200018],[-21.06749426999997,76.78896719000015],[-21.09316972599993,76.78717682500015],[-21.108550584999875,76.78949616100012],[-21.139475063999896,76.79926178600006],[-21.176909959999932,76.8026390650001],[-21.18431555899994,76.80475495000009],[-21.181385870999918,76.80829498900009],[-21.25035559799994,76.81150950700014],[-21.285715298999943,76.80801015800013],[-21.31232662699992,76.793931382],[-21.28490149599986,76.78595612200014],[-21.221913214999915,76.78912995000012],[-21.194935675999886,76.78034088700004],[-21.30101477799991,76.7662621110001],[-21.31851152299987,76.75641510600018],[-21.329945441999936,76.74640534100008],[-21.496327277999907,76.69521719000015],[-21.66795813699991,76.68414948100009],[-21.634836391999954,76.66889069200012],[-21.59972083199989,76.657416083],[-21.623646613999966,76.64642975500014],[-21.66112219999988,76.645697333],[-21.730051235999923,76.657416083],[-21.81944739499994,76.695013739],[-21.828846808999884,76.70148346600008],[-21.844797329999892,76.71775950700011],[-21.853505011999854,76.72508372600014],[-21.8917537099999,76.74176666900016],[-21.926258917999913,76.76422760600018],[-21.950550910999905,76.77435944200012],[-22.06818600199989,76.79657623900009],[-22.094593878999973,76.80475495000009],[-22.15330969999988,76.84442780200011],[-22.17275956899988,76.85171133000013],[-22.196156378999973,76.85667552299999],[-22.26585852799985,76.85936107000003],[-22.469878709999932,76.83559804900015],[-22.469878709999932,76.82876211100013],[-22.432484503999884,76.82733795800006],[-22.39635169199994,76.81997304900007],[-22.382557745999915,76.81264883000007],[-22.381214972999942,76.80658600500009],[-22.38369706899988,76.80068594000012],[-22.381174282999947,76.793931382],[-22.36375891799989,76.78245677300005],[-22.32335364499994,76.76532623900012],[-22.306019660999937,76.75307851800015],[-22.35802161399991,76.74079010600009],[-22.53221594999991,76.75307851800015],[-22.64561926999994,76.74583567900014],[-22.702015753999888,76.72968170800004],[-22.744211391999926,76.698431708],[-22.722401495999886,76.68227773600013],[-22.69347083199989,76.67169830900018],[-22.662587042999917,76.66596100500011],[-22.515004035999876,76.66567617400007],[-22.48729407499988,76.65399811400009],[-22.477365688999896,76.64838288000009],[-22.466379360999923,76.643988348],[-22.463693813999953,76.63898346600014],[-22.4786677729999,76.6319033870001],[-22.512440558999884,76.621568101],[-22.518299933999913,76.61644114800008],[-22.509103969999927,76.60366445500013],[-22.45661373599989,76.581732489],[-22.436390753999973,76.56806061400005],[-22.44249426999994,76.55695221600014],[-22.432606574999852,76.550238348],[-22.399769660999933,76.54254791900017],[-22.33299719999991,76.51715729400014],[-22.322865363999938,76.51504140800013],[-22.306996222999913,76.51422760600003],[-22.292062954999977,76.51569245000009],[-22.28429114499988,76.52020905200014],[-22.28522701699995,76.52806224200012],[-22.291656053999873,76.532904364],[-22.29987545499995,76.53644440300009],[-22.324086066999968,76.55255768400015],[-22.326527472999885,76.55955638200014],[-22.312163865999906,76.56806061400005],[-22.32152258999986,76.57062409100016],[-22.329253709999875,76.57469310100014],[-22.335438605999936,76.58063385600015],[-22.339507615999906,76.58856842700011],[-22.30247962099986,76.59414297100012],[-22.26598059799991,76.60415273600002],[-22.21666419199991,76.63007233300011],[-22.186024542999917,76.63987864800005],[-22.145008917999917,76.64581940300017],[-22.10216223899991,76.64549388200005],[-22.065785285999937,76.63694896000011],[-22.085560675999943,76.631048895],[-22.093088344999927,76.63007233300011],[-22.068104620999886,76.61611562700016],[-21.935454881999902,76.62270742400013],[-21.867176886999914,76.61054108300014],[-21.80516516799986,76.58856842700011],[-21.831898566999968,76.57684967700014],[-21.964263475999925,76.56606679900013],[-22.003977016999926,76.55703359600012],[-22.08629309799988,76.55499909100008],[-22.05260169199988,76.54197825700011],[-22.003570115999935,76.53099192900005],[-21.958241339999915,76.53021881700012],[-21.935454881999902,76.54755280200011],[-21.882069464999855,76.56537506699999],[-21.810861782999922,76.56134674700003],[-21.67479407499991,76.52708567900005],[-22.011830206999917,76.482326565],[-22.03848222599987,76.46564362200017],[-21.831654425999915,76.47622304900011],[-21.75885982999995,76.49542877800017],[-21.722889777999878,76.499741929],[-21.68106035099987,76.4906273460001],[-21.699940558999913,76.4702009140001],[-21.747547980999883,76.44904205900012],[-21.792103644999884,76.43768952000015],[-22.145253058999856,76.43854401200004],[-22.228260870999947,76.44936758000013],[-22.264475063999953,76.46222565300015],[-22.304107225999896,76.48309967700014],[-22.346994594999956,76.499741929],[-22.436390753999973,76.499741929],[-22.416859503999888,76.48895905200008],[-22.353260870999918,76.46564362200017],[-22.382883266999954,76.4499372420001],[-22.42369544199991,76.44651927300002],[-22.504017706999914,76.45136139500009],[-22.412180141999954,76.42536041900009],[-22.381174282999947,76.42348867400013],[-22.280751105999883,76.43463776200007],[-22.190297003999916,76.41144440300012],[-21.90182451049992,76.42829010600012],[-21.613352016999926,76.44513580900012],[-21.58543860599991,76.443060614],[-21.57754472599993,76.43707916900009],[-21.58580481699991,76.42829010600012],[-21.60651607999992,76.41722239799999],[-21.57127844999988,76.39728424700009],[-21.567250128999916,76.384711005],[-21.62018795499995,76.35578034100008],[-21.643788214999887,76.33649323100015],[-21.657948370999918,76.31517161700002],[-21.668609178999958,76.29352448100009],[-21.68224036399991,76.27326080900008],[-21.696603969999956,76.2610537780001],[-21.704497850999957,76.255601304],[-21.699940558999913,76.251654364],[-21.65208899599989,76.23773834800004],[-21.546254035999876,76.22394440300012],[-21.44611568899995,76.24404531500015],[-21.40794837099989,76.2459170590001],[-21.40794837099989,76.253363348],[-21.42003333199989,76.25324127800003],[-21.45571855399993,76.25958893400015],[-21.437489386999857,76.28131745000003],[-21.40013587099989,76.29279205900016],[-21.358021613999938,76.29450104400017],[-21.325917120999858,76.28685130400005],[-21.345448370999943,76.28123607000005],[-21.40794837099989,76.27326080900008],[-21.358021613999938,76.2633324240001],[-21.1205134759999,76.28461334800006],[-21.087554490999935,76.27826569200012],[-20.919097459999904,76.221869208],[-20.79694576699998,76.21019114799999],[-20.77074133999986,76.2015648460001],[-20.698841925999886,76.16787344000008],[-20.67454993399991,76.16400788000009],[-20.613880988999938,76.16437409100008],[-20.583892381999874,76.16034577000012],[-20.558216925999915,76.14972565300017],[-20.584950324999852,76.14175039300012],[-20.674916144999912,76.13605377800015],[-20.655140753999888,76.12409088700012],[-20.485829230999883,76.14350006700012],[-20.437367316999882,76.1362165390001],[-20.421009894999884,76.13605377800015],[-20.421009894999884,76.14350006700012],[-20.455881313999893,76.14496491100009],[-20.558216925999915,76.170843817],[-20.636626756999874,76.17767975500011],[-20.648915167999945,76.18085358300009],[-20.668812628999916,76.19497304900001],[-20.67821204299986,76.19814687700007],[-20.87169348899988,76.23086172100001],[-20.887115037999905,76.23908112200012],[-20.8932185539999,76.24506256700012],[-20.900013800999915,76.25519440300017],[-20.908273891999926,76.26447174700003],[-20.984445766999897,76.25608958500008],[-21.010650193999908,76.25958893400015],[-21.06273352799988,76.28851959800005],[-21.08568274599986,76.29433828300002],[-21.062977667999917,76.31110260600002],[-21.024403449999852,76.31732819199999],[-20.8944392569999,76.30792877800017],[-20.690744594999952,76.25812409100008],[-20.586577928999873,76.24664948100015],[-20.489125128999916,76.223578192],[-20.306304490999935,76.2277692730001],[-20.229237433999856,76.2459170590001],[-19.93773352799991,76.25796133000013],[-19.84723873599995,76.24494049700014],[-19.763050910999933,76.204982815],[-19.698109503999888,76.14370351800007],[-19.670562303999954,76.13605377800015],[-19.672434048999918,76.12726471600008],[-19.721424933999884,76.07526276200011],[-19.719309048999975,76.07151927299999],[-19.715240037999905,76.06159088700018],[-19.75450598899991,76.05727773600007],[-19.827504035999937,76.06509023600006],[-19.996490037999934,76.06305573100002],[-20.269398566999964,75.99233633000001],[-20.70136471266656,75.99007124766668],[-21.133330858333267,75.98780616533342],[-21.565297003999945,75.98554108300009],[-21.613352016999926,75.97524648600016],[-21.654896613999938,75.971625067],[-21.70274817599994,75.97418854400011],[-21.805531378999973,75.99290599199999],[-21.838978644999912,76.00462474200008],[-21.897328253999916,76.0421410180001],[-21.923939581999946,76.04816315300009],[-21.95592200399994,76.04047272300005],[-21.952300584999904,76.03363678600014],[-21.95018469999988,76.02838776200015],[-21.947417772999927,76.02431875200001],[-21.94172115799995,76.02065664300015],[-21.973784959999932,76.00128815300003],[-21.983876105999883,75.99266185100014],[-21.967844204999892,75.98818594000006],[-21.908192511999914,75.9858259140001],[-21.915028449999937,75.9858259140001],[-21.903431769999912,75.98309967700014],[-21.894886847999885,75.97711823100002],[-21.887806769999912,75.9703636740001],[-21.880848761999943,75.96539948100003],[-21.86339270699989,75.95990631700003],[-21.844838019999884,75.95783112200009],[-21.572458462499867,75.96161530150006],[-21.30007890499985,75.96539948100003],[-20.93708248599995,75.96389394750004],[-20.57408606699994,75.96238841400005],[-20.49315344999988,75.95010000200007],[-20.444691535999908,75.94798411700008],[-20.33226477799991,75.92377350500009],[-19.93496660099987,75.934027411],[-19.749379035999908,75.88898346600003],[-19.64195716099988,75.82827383000007],[-19.62995357999995,75.81793854400017],[-19.570057745999918,75.77899811400009],[-19.49705969999991,75.757269598],[-19.345326300999915,75.73261139500003],[-19.372670050999886,75.72459544500008],[-19.48184160099993,75.73883698100018],[-19.548654751999948,75.7357852230001],[-19.57591712099986,75.72589752800015],[-19.56505286399988,75.70465729400007],[-19.612294074999852,75.68423086100002],[-19.594838019999884,75.6683617210001],[-19.503041144999912,75.643255927],[-19.520863410999908,75.625921942],[-19.501698370999918,75.61066315300003],[-19.441558397999955,75.58860911700005],[-19.41787675699993,75.57566966400013],[-19.396229620999947,75.55996328300007],[-19.38149980399993,75.54132721600007],[-19.378814256999874,75.51972077000009],[-19.37409420499995,75.51166413000014],[-19.372385219999956,75.500677802],[-19.372670050999886,75.47504303600012],[-19.369130011999914,75.46185944200006],[-19.35179602799991,75.43683502800015],[-19.345326300999915,75.42413971600011],[-19.341908331999917,75.41132233300006],[-19.3419490229999,75.40277741100014],[-19.346343553999873,75.39533112200017],[-19.355865037999877,75.38593170800014],[-19.36375891799986,75.37396881700002],[-19.367502407999893,75.34735748900006],[-19.365834113999878,75.3341738950001],[-19.3868708979999,75.278469143],[-19.40225175699993,75.2525088560001],[-19.427235480999855,75.22553131700006],[-19.463856574999877,75.19839101800014],[-19.48558508999986,75.18768952000012],[-19.530140753999945,75.17694733300003],[-19.573841925999943,75.14874909100003],[-19.588612433999913,75.14232005400011],[-19.879790818999936,75.1498070330001],[-19.908273891999926,75.15656159100003],[-19.964344855999855,75.17853424700006],[-20.00255286399991,75.18577708500005],[-20.00255286399991,75.19179922100007],[-20.000396287999905,75.19891998900012],[-20.003285285999937,75.20502350500011],[-20.01593990799992,75.21010976800012],[-20.028472459999932,75.21259186400006],[-20.04051673099994,75.21649811400006],[-20.05101477799991,75.22553131700006],[-20.023426886999886,75.23240794500006],[-20.0177302729999,75.2396507830001],[-20.021107550999915,75.24738190300012],[-20.02000891799989,75.25592682500003],[-20.006418423999918,75.26569245000017],[-19.98680579299986,75.27285390800002],[-19.947987433999856,75.27952708500007],[-19.967152472999913,75.2924258480001],[-19.991688605999936,75.30117422100014],[-20.06432044199991,75.31077708500014],[-20.140248175999943,75.33608633000006],[-20.168690558999884,75.34105052300013],[-20.307036912999962,75.33624909100014],[-20.403920050999943,75.31273021],[-20.66783606699994,75.29315827000003],[-20.713693813999953,75.29946523600016],[-20.85277258999986,75.34662506700015],[-21.025013800999886,75.36880117400001],[-21.161488410999905,75.40493398600013],[-21.199940558999913,75.421576239],[-21.216053839999887,75.45482005400002],[-21.236887173999946,75.47748444200006],[-21.28473873599989,75.49542877800009],[-21.66905676999994,75.5926781270001],[-21.966074185499878,75.63108958550005],[-22.263091600999868,75.66950104400003],[-22.281158006999902,75.65997955900012],[-22.277088995999947,75.65224844],[-22.2591039699999,75.64459870000017],[-21.92572994699995,75.58374664900016],[-21.59235592399989,75.52289459800015],[-21.40794837099989,75.45831940300009],[-21.443348761999886,75.44961172100001],[-21.92133541549992,75.48259105050012],[-22.399322068999936,75.51557038000014],[-22.4613337879999,75.53457265800013],[-22.469878709999932,75.54022858300014],[-22.469349738999938,75.54311758000007],[-22.467518683999884,75.54808177300009],[-22.468495245999947,75.55434804900007],[-22.476714647999927,75.5606957050001],[-22.49242102799991,75.55947500200007],[-22.504628058999884,75.55133698100015],[-22.50649980399993,75.53953685099998],[-22.497792120999858,75.52716705900015],[-22.46141516799989,75.50946686400006],[-22.11733964733324,75.48358795766681],[-21.77326412666659,75.45770905133345],[-21.429188605999855,75.43183014500012],[-21.401031053999873,75.42413971600011],[-21.38573157499991,75.415472723],[-21.352650519999884,75.38251373900012],[-21.313872850999957,75.36371491100009],[-20.977894660999908,75.31500885600015],[-20.94652258999986,75.29686107000005],[-20.887115037999905,75.27952708500007],[-20.8495173819999,75.25674062700013],[-20.83340410099993,75.25055573100018],[-20.65127519399988,75.22479889500012],[-20.559925910999937,75.1972516950001],[-20.517201300999915,75.14232005400011],[-20.69050045499992,75.12547435100011],[-20.99697831899988,75.14232005400011],[-21.073109503999973,75.12518952000009],[-21.18199622299997,75.12189362200014],[-21.57909094999988,75.00438060100005],[-21.760731574999852,74.98529694200006],[-21.76988684799991,74.98712799700003],[-21.80516516799986,74.998968817],[-21.837635870999947,75.00560130400004],[-21.847035285999965,75.00922272300012],[-21.858387824999852,75.01557038000006],[-21.864409959999932,75.02130768400004],[-21.866851365999878,75.0295270850001],[-21.867176886999914,75.04336172100012],[-21.885243292999917,75.06696198100015],[-21.926869269999884,75.0827497420001],[-22.346791144999912,75.16852448100015],[-22.436390753999973,75.17023346600014],[-22.410267706999917,75.15460846600017],[-22.34284420499992,75.1463890650001],[-22.280018683999856,75.12913646000008],[-22.143950975999953,75.10805898600013],[-21.94172115799995,75.0541852890001],[-21.95323645699989,75.03693268400012],[-21.97362219999988,75.02826569200012],[-22.018055792999885,75.01886627800009],[-21.998402472999942,75.01243724199999],[-21.92861894399988,75.00580475500011],[-21.915394660999937,75.00214264500006],[-21.867176886999914,74.97846100500014],[-21.769113735999895,74.96019114800008],[-21.66795813699991,74.95799388200008],[-21.509388800999915,74.98021067900014],[-21.115956183999856,75.09088776200012],[-21.031117316999882,75.08771393400015],[-20.935943162999905,75.07119375200007],[-20.838734503999916,75.06728750200008],[-20.73135331899996,75.0763207050001],[-20.676625128999916,75.07440827000012],[-20.626372850999957,75.06037018400018],[-20.630726691999936,75.05923086100012],[-20.640736456999917,75.0541852890001],[-20.641835089999887,75.02374909100013],[-20.713978644999884,74.98016998900013],[-20.719553188999896,74.961411851],[-20.69644120999993,74.93984609600005],[-20.686634894999912,74.92804596600011],[-20.681711391999954,74.91705963700015],[-20.68224036399991,74.89817942900011],[-20.690174933999884,74.88739655200011],[-20.722645636999886,74.87201569200009],[-20.75182044199991,74.86456940300009],[-20.762318488999878,74.85724518400009],[-20.764230923999946,74.84072500200001],[-20.758168097999942,74.8312848980001],[-20.746001756999874,74.8214378930001],[-20.723255988999938,74.80719635600018],[-20.652740037999934,74.77435944200009],[-20.616688605999883,74.75250885600003],[-20.609730597999913,74.73484935100011],[-20.62425696499986,74.72752513200011],[-20.66258704299989,74.71784088700015],[-20.690297003999945,74.70062897300012],[-20.791900193999936,74.66596100500006],[-21.097645636999886,74.67316315300009],[-21.119943813999924,74.66689687700013],[-21.095814581999917,74.65428294500008],[-21.041005011999882,74.64704010600003],[-20.700754360999923,74.64777252800017],[-20.67471269399988,74.65119049700017],[-20.64244544199994,74.66543203300007],[-20.59137936099995,74.66962311400012],[-20.521107550999915,74.6843122420001],[-20.34935462099986,74.67059967699998],[-20.2023005849999,74.67951080900004],[-20.154693162999905,74.67682526200005],[-20.07152258999986,74.66315338700012],[-20.055409308999884,74.65753815300012],[-20.02448482999995,74.63963450700004],[-20.013539191999882,74.63589101800011],[-20.00694739499991,74.63434479400017],[-19.981312628999945,74.62396881700009],[-19.9706111319999,74.62287018400004],[-19.93496660099987,74.62905508000001],[-19.891753709999875,74.62710195500016],[-19.869048631999902,74.6217308610001],[-19.840687628999884,74.59389883000013],[-19.79796301999997,74.5871035830001],[-19.718373175999886,74.58746979400003],[-19.707020636999914,74.59100983300003],[-19.64256751199991,74.6221377620001],[-19.571603969999956,74.6429710960001],[-19.531158006999902,74.64915599200005],[-19.447743292999913,74.68366120000015],[-19.402821417999913,74.68943919500012],[-19.35553951699995,74.68451569200006],[-19.309885219999927,74.67047760600012],[-19.269602016999926,74.64887116100012],[-19.309478318999908,74.61416250200016],[-19.312163865999906,74.59784577000012],[-19.29076087099986,74.58124420800006],[-19.313221808999856,74.57233307500002],[-19.386301235999923,74.56073639500003],[-19.356556769999912,74.555609442],[-19.31700598899988,74.56020742400011],[-19.281361456999914,74.55971914300015],[-19.26341712099989,74.53900788000014],[-19.268706834999932,74.53790924700009],[-19.27879798099991,74.53400299700007],[-19.28384355399993,74.53278229400007],[-19.268788214999915,74.52265045800011],[-19.251576300999915,74.51959870000003],[-19.214995897999867,74.51976146],[-19.12218176999994,74.50556061400007],[-19.044585740999906,74.50478750200016],[-19.007476365999906,74.49872467700006],[-18.97476152299987,74.48436107],[-19.004994269999884,74.47601959800012],[-19.045318162999934,74.45905182500015],[-19.077748175999943,74.43768952000009],[-19.084624803999954,74.41616445500007],[-19.10309811099998,74.41644928599999],[-19.150013800999915,74.41144440300013],[-19.166900193999908,74.40619538000009],[-19.178049282999922,74.39785390800002],[-19.175770636999857,74.39223867400001],[-19.168934699999852,74.38593170800004],[-19.16657467399989,74.37579987200012],[-19.173085089999883,74.35907623900009],[-19.184641079999892,74.34829336100007],[-19.349232550999915,74.28546784100003],[-19.360910610999923,74.27936432500003],[-19.365834113999878,74.26935455900006],[-19.374379035999908,74.26683177300013],[-19.626535610999923,74.23859284100017],[-19.913604295999903,74.25918203350015],[-20.200672980999883,74.27977122600014],[-20.222401495999947,74.296332098],[-20.220570441999968,74.30377838700018],[-20.216908331999917,74.30780670800014],[-20.21410071499986,74.31220123900012],[-20.214914516999954,74.32054271],[-20.217884894999884,74.32176341400009],[-20.231760219999956,74.32982005400004],[-20.23607337099989,74.33421458500013],[-20.23814856699991,74.34503815300003],[-20.237660285999905,74.36546458500003],[-20.2428279289999,74.37579987200012],[-20.253895636999854,74.38434479400003],[-20.282582160999905,74.397894598],[-20.306752081999917,74.41522858299999],[-20.33153235599988,74.42584870000003],[-20.357329881999902,74.44525788000014],[-20.37291419199991,74.448431708],[-20.389393683999884,74.44692617400014],[-20.438588019999912,74.43707916900003],[-20.448882615999935,74.43724192899998],[-20.454090949999905,74.44057851800012],[-20.46393795499995,74.45331452000006],[-20.469390428999873,74.45709870000009],[-20.498158331999914,74.45962148600002],[-20.55650794199991,74.45136139500012],[-20.58551998599989,74.45087311400015],[-20.65599524599989,74.46430084800012],[-20.829213019999912,74.45246002800016],[-21.255034959999875,74.47418854400014],[-21.494496222999942,74.45978424700016],[-21.569203253999945,74.44647858300006],[-21.628895636999854,74.44676341399999],[-21.805531378999973,74.47894928600014],[-21.822499152999853,74.48810455900012],[-21.829009568999936,74.4968122420001],[-21.84166419199991,74.5187848980001],[-21.85008704299986,74.52944570500016],[-21.87588456899988,74.54694245000012],[-22.046538865999906,74.60008372600011],[-22.081776495999947,74.60297272300012],[-22.11424719999991,74.59422435100008],[-22.078439907999922,74.57599518400018],[-21.9388728509999,74.5322940120001],[-21.93268795499995,74.52887604400009],[-21.925282355999855,74.52289459800006],[-21.914133266999926,74.50763580900009],[-21.874012824999905,74.474798895],[-21.805083787999877,74.44757721600011],[-21.78498287699992,74.44403717700011],[-21.7716365229999,74.43870677300005],[-21.765858527999853,74.42694733300009],[-21.768788214999887,74.41526927299999],[-21.79222571499986,74.40607330900009],[-21.801136847999885,74.39740631700003],[-21.812652147999927,74.38263580900004],[-21.828114386999857,74.37494538000011],[-21.963775193999936,74.3348656270001],[-22.051584438999924,74.32054271],[-22.20685787699989,74.32196686400006],[-22.302072719999956,74.30329010600009],[-22.436390753999973,74.32054271],[-22.46043860599991,74.31854889500006],[-22.471018032999947,74.313666083],[-22.464955206999946,74.30857982000006],[-22.413970506999874,74.30402252800003],[-22.346994594999956,74.28644440300009],[-22.166493292999917,74.30011627800002],[-22.069081183999884,74.29425690300017],[-22.03848222599987,74.25165436400015],[-22.058908657999922,74.23187897300011],[-22.097564256999874,74.2143008480001],[-22.13914954299986,74.20180898600007],[-22.19123287699992,74.19383372600011],[-22.240589972999885,74.17975495000017],[-22.264475063999953,74.17658112200012],[-22.304107225999896,74.17560455900004],[-22.322865363999938,74.17169830900005],[-22.339507615999906,74.16290924700017],[-22.310129360999895,74.15668366100012],[-22.240061001999916,74.1693382830001],[-22.209828253999916,74.16974518400008],[-22.193837042999917,74.16278717700011],[-22.178578253999945,74.15155670800003],[-22.155181443999933,74.12872955900009],[-22.17601477799994,74.11261627800012],[-22.22940019399988,74.10130442900014],[-22.333363410999905,74.09398021000014],[-22.41624915299994,74.10175202000012],[-22.47793535099987,74.08779531500006],[-22.48794511599993,74.08095937700013],[-22.47704016799986,74.07074616100003],[-22.45421301999994,74.06452057500015],[-22.34715735599991,74.05735911700009],[-22.28429114499988,74.03937409100017],[-22.106800910999933,74.02570221600003],[-22.11424719999991,74.02570221600003],[-22.088286912999934,74.02509186400009],[-22.02887936099998,74.01325104400011],[-21.988677537999873,73.99872467700008],[-21.986805792999917,73.99420807500003],[-21.993763800999915,73.98663971600016],[-22.00438391799986,73.97044505400011],[-21.991078253999916,73.96775950700014],[-21.98542232999992,73.96137116100012],[-21.987375454999892,73.952785549],[-21.996937628999973,73.94318268400004],[-21.964466925999886,73.92987702],[-21.893218553999873,73.91673411700003],[-21.85973059799991,73.90224844],[-21.867176886999914,73.89541250200008],[-21.812652147999927,73.84760163000006],[-21.83690344999991,73.82257721600014],[-21.840484178999873,73.81720612200009],[-21.838978644999912,73.810288804],[-21.833078579999892,73.79828522300006],[-21.833078579999892,73.79238515800013],[-21.83747311099998,73.78656647300006],[-21.84984290299991,73.7790388040001],[-21.853505011999854,73.77252838700012],[-21.853830532999893,73.76113515800016],[-21.85106360599994,73.74762604400009],[-21.845326300999943,73.73627350500011],[-21.836781378999945,73.73151276200011],[-21.83340410099993,73.72662995000013],[-21.832427537999934,73.71539948100006],[-21.833078579999892,73.69367096600017],[-21.83690344999991,73.68292877800015],[-21.843820766999897,73.67462799700017],[-21.84723873599992,73.6664085960001],[-21.840484178999873,73.65574778900005],[-21.82713782499988,73.65167877800009],[-21.80150305899991,73.66327545800003],[-21.788441535999908,73.65924713700004],[-21.769154425999886,73.65643952000009],[-21.744374152999907,73.6681175800001],[-21.70274817599994,73.69672272300005],[-21.711048956999917,73.71426015800002],[-21.72411048099991,73.72785065300013],[-21.75731360599991,73.75136953300002],[-21.752674933999913,73.7526716170001],[-21.749989386999914,73.75438060100011],[-21.747547980999883,73.75641510600015],[-21.743641730999883,73.75885651200018],[-21.750355597999942,73.76349518400012],[-21.754546678999873,73.77024974200005],[-21.756703253999973,73.77887604400014],[-21.75731360599991,73.78925202000015],[-21.75837154899989,73.79360586100012],[-21.762806769999937,73.80174388200005],[-21.76414954299986,73.80658600500014],[-21.7621150379999,73.81077708500008],[-21.752268032999893,73.81891510600009],[-21.74986731699994,73.82367584800008],[-21.753732876999948,73.83185455900009],[-21.761057094999956,73.83991120000003],[-21.76549231699994,73.84853750200013],[-21.760731574999852,73.8580996770001],[-21.758127407999922,73.86644114799999],[-21.764515753999945,73.874212958],[-21.781239386999886,73.885443427],[-21.78868567599997,73.89398834800004],[-21.79466712099989,73.90249258000013],[-21.801747199999852,73.90997955900012],[-21.812652147999927,73.91583893400015],[-21.82982337099986,73.91815827000012],[-21.86851966099988,73.91893138200014],[-21.884266730999855,73.92641836100002],[-21.886708136999886,73.93573639500015],[-21.867583787999905,73.95014069200012],[-21.87059485599991,73.96088288000014],[-21.880116339999915,73.96808502800015],[-21.891021287999877,73.97288646000004],[-21.915028449999937,73.9779320330001],[-21.91161048099991,73.98212311400012],[-21.909494594999895,73.98566315300009],[-21.90660559799988,73.98891836100013],[-21.90074622299994,73.99217357],[-21.908558722999913,74.01581452000012],[-21.870228644999884,74.03424713700015],[-21.78465735599991,74.05304596600011],[-21.59007727799994,74.05768463700004],[-21.139332648999925,73.97207265800012],[-20.68858801999994,73.88646067900005],[-20.365793423999946,73.89541250200008],[-20.31916256399995,73.89166901200015],[-20.296009894999912,73.88613515800013],[-20.27757727799988,73.87547435100002],[-20.27196204299989,73.86481354400017],[-20.270375128999945,73.85358307500015],[-20.265492316999882,73.84479401200008],[-20.249663865999935,73.84137604400009],[-20.258452928999898,73.83197663000006],[-20.26984615799995,73.82786692900011],[-20.279652472999885,73.82273997600011],[-20.287709113999934,73.79791901200007],[-20.29767818899992,73.79059479400014],[-20.311105923999918,73.78705475500006],[-20.40758216099988,73.783392645],[-20.449126756999874,73.77533600500007],[-20.483021613999938,73.75885651200018],[-20.47118079299986,73.74949778900005],[-20.457590298999918,73.7428246110001],[-20.442982550999886,73.73871491100013],[-20.42784583199989,73.73773834800006],[-20.42784583199989,73.73151276200011],[-20.490305141999926,73.73452383000001],[-20.520497199999852,73.72894928600003],[-20.53087317599994,73.710394598],[-20.526234503999916,73.70343659100011],[-20.499826626999948,73.68683502800015],[-20.49474036399991,73.68089427300012],[-20.483021613999938,73.66266510600015],[-20.475697394999912,73.65525950700004],[-20.469634568999936,73.65155670800011],[-20.465199347999942,73.64655182500017],[-20.462554490999874,73.63532135600018],[-20.4667048819999,73.62824127800012],[-20.476144985999923,73.62409088700018],[-20.482980923999946,73.61945221600014],[-20.479359503999888,73.61115143400015],[-20.481312628999916,73.59772370000017],[-20.521595831999885,73.57143789300007],[-20.52057857999992,73.55646393400004],[-20.48875891799989,73.5440127620001],[-20.411284959999932,73.54572174700012],[-20.383697068999908,73.53603750200016],[-20.382476365999906,73.51788971600014],[-20.400542772999927,73.496527411],[-20.426747199999852,73.47736237200002],[-20.449777798999918,73.46576569200003],[-20.543283657999893,73.44904205900018],[-20.912098761999914,73.4531110695],[-21.280913865999878,73.45718008000001],[-21.45372473899988,73.48663971600008],[-21.543202277999878,73.490423895],[-21.62018795499995,73.45718008000001],[-21.609608527999907,73.456773179],[-21.604969855999883,73.4557966170001],[-21.576161261999857,73.44013092700006],[-21.555327928999873,73.42438385600008],[-21.54987545499992,73.40859609600012],[-21.572417772999927,73.39508698100013],[-21.598866339999887,73.39154694199999],[-21.653553839999944,73.39215729400014],[-21.703968878999973,73.38133372600005],[-21.77782141799989,73.37466054900001],[-21.963368292999945,73.33368561400007],[-22.106800910999933,73.27903880400011],[-22.208363410999937,73.25397370000003],[-22.314076300999883,73.25043366100014],[-22.635426398499874,73.289984442],[-22.956776495999947,73.32953522300012],[-23.01183020699989,73.34398020999998],[-23.095814581999946,73.35016510600015],[-23.114165818999908,73.35415273600013],[-23.223459438999924,73.40045807500002],[-23.449940558999913,73.43610260600018],[-23.486398891999954,73.44745514500015],[-23.54979407499991,73.47817617400013],[-23.58714758999986,73.49135976800008],[-23.82022050699993,73.54669830900018],[-23.895619269999884,73.577297268],[-23.917307094999956,73.582953192],[-23.968495245999918,73.588568427],[-23.987782355999855,73.59739817900005],[-23.996937628999916,73.60687897300006],[-24.015736456999885,73.63157786700005],[-24.025746222999942,73.65176015800006],[-24.025502081999917,73.68720123900006],[-24.032826300999915,73.69672272300005],[-24.015695766999897,73.71889883000013],[-23.982980923999946,73.72435130400008],[-23.916086391999926,73.71723053600012],[-23.766957160999937,73.72313060100005],[-23.68846594999991,73.71027252800002],[-23.57168535099993,73.716498114],[-23.516753709999932,73.71067942900014],[-23.429066535999937,73.6883812520001],[-23.39037024599989,73.67194245000009],[-23.344105597999913,73.65818919499999],[-23.127064581999917,73.6322695980001],[-22.843129035999937,73.56077708500011],[-22.662220831999914,73.54865143400002],[-22.613392706999917,73.56256745000012],[-22.492746548999918,73.57241445500013],[-22.367502407999922,73.60736725500014],[-22.175038214999855,73.627875067],[-22.208851691999936,73.63263580900009],[-22.32823645699989,73.626125393],[-22.374908006999902,73.61481354400003],[-22.436390753999973,73.61481354400003],[-22.609730597999942,73.57306549700009],[-22.79946855399993,73.56761302300004],[-22.866566535999908,73.57941315300012],[-22.9387914699999,73.61774323100006],[-23.13988196499986,73.65570709800006],[-23.168812628999888,73.65574778900005],[-23.162587042999917,73.65574778900005],[-23.55296790299988,73.73574453300013],[-23.82607988199987,73.73773834800006],[-23.863840298999918,73.74408600500003],[-23.896880662999877,73.75519440300003],[-24.005116339999915,73.81232330900012],[-24.030425584999875,73.82001373900012],[-24.06004798099991,73.82025788000009],[-24.168527798999918,73.80255768400018],[-24.24840247299991,73.780422268],[-24.26211503799996,73.7787132830001],[-24.3224177729999,73.78359609600007],[-24.340565558999913,73.7787132830001],[-24.33336341099988,73.75291575700005],[-24.34972083199989,73.74249909100017],[-24.37865149599989,73.73749420800011],[-24.409535285999937,73.72776927299999],[-24.43346106699991,73.71161530200011],[-24.447499152999853,73.695746161],[-24.47158769399988,73.65574778900005],[-24.37539628799993,73.55955638200011],[-24.39753170499992,73.54637278900007],[-24.426136847999885,73.54096100500011],[-24.45685787699989,73.541449286],[-24.941517706999917,73.61249420800006],[-24.9847712879999,73.62848541900014],[-24.99518795499989,73.645209052],[-24.977691209999957,73.66608307500015],[-24.968739386999914,73.68520742400013],[-24.973784959999875,73.70233795800006],[-24.998605923999918,73.71723053600012],[-25.17821204299986,73.749741929],[-25.344634568999936,73.82086823100003],[-25.35875403599988,73.82233307500009],[-25.410145636999886,73.81956614800013],[-25.42056230399987,73.82046133000013],[-25.43028723899991,73.82367584800008],[-25.434722459999875,73.82819245000006],[-25.437855597999942,73.83413320500007],[-25.441477016999922,73.83917877800009],[-25.447621222999913,73.84137604400009],[-25.505360480999855,73.90778229400003],[-25.51866614499994,73.91583893400015],[-25.54255123599992,73.923041083],[-25.621734178999898,73.93695709800005],[-25.67247473899988,73.95644765800016],[-25.690663214999855,73.95746491100012],[-25.703928188999896,73.95563385600015],[-25.720936652999853,73.94940827000009],[-25.734852667999913,73.94025299700012],[-25.739084438999953,73.92951080900008],[-25.726307745999918,73.91828034100008],[-25.590077277999853,73.8668480490001],[-25.563384568999908,73.84552643400004],[-25.574574347999913,73.827093817],[-25.55089270699989,73.81122467700008],[-25.458485480999883,73.78611888200008],[-25.386708136999886,73.75519440300003],[-25.293527798999946,73.74428945500016],[-25.087961391999926,73.69672272300005],[-25.092274542999945,73.6900902360001],[-25.087228969999895,73.67291901200018],[-25.087961391999926,73.66266510600015],[-25.099273240999906,73.64862702],[-25.110218878999888,73.64313385600013],[-25.11156165299988,73.63715241100006],[-25.094146287999905,73.62164948100003],[-25.056630011999886,73.60162995000017],[-25.007435675999886,73.58657461100015],[-24.851185675999915,73.56704336100006],[-24.84284420499995,73.56488678600009],[-24.83458411399988,73.55548737200014],[-24.692046678999873,73.53156159100007],[-24.679595506999927,73.52464427299999],[-24.6866755849999,73.50869375200007],[-24.701649542999945,73.49754466400007],[-24.719105597999885,73.49249909100001],[-25.00566565649993,73.48301829650008],[-25.29222571499986,73.47353750200001],[-25.498890753999945,73.40253327000015],[-25.47996985599991,73.39569733300011],[-25.44078528599988,73.40204498900006],[-25.423736131999927,73.39508698100013],[-25.439808722999913,73.38385651200015],[-25.441477016999922,73.37164948100009],[-25.437570766999926,73.36098867400007],[-25.436756964999912,73.35415273600013],[-25.452626105999855,73.34577057500007],[-25.570871548999886,73.32697174700003],[-25.70494544199994,73.2722028670001],[-25.762562628999916,73.25983307500017],[-25.879505988999938,73.25531647300004],[-25.96540279899989,73.24188873900012],[-26.15062415299991,73.24087148600016],[-26.177235480999855,73.24799225500011],[-26.324940558999884,73.31631094],[-26.405995245999918,73.3395449890001],[-26.48570716099988,73.34731679900013],[-26.506662563999924,73.34369538000006],[-26.54405676999994,73.32933177299999],[-26.564564581999917,73.32623932500009],[-26.643666144999912,73.32514069200006],[-26.825550910999908,73.34267812700001],[-27.170765753999916,73.44562409100017],[-27.229603644999912,73.48822663000011],[-27.261708136999882,73.49701569200008],[-27.332386847999913,73.49811432500003],[-27.34715735599991,73.49457428600014],[-27.39753170499995,73.47085195500013],[-27.433827277999853,73.46417877800017],[-27.45010331899988,73.45722077],[-27.459055141999897,73.44354889500006],[-27.380970831999974,73.44741445500014],[-27.34121660099987,73.44310130400005],[-27.287464972999913,73.41071198100015],[-27.12877356699994,73.35419342700014],[-26.917103644999912,73.32623932500009],[-26.924549933999913,73.32623932500009],[-26.905873175999915,73.32444896000011],[-26.85570227799994,73.306341864],[-26.832386847999942,73.3038597680001],[-26.759429490999906,73.306341864],[-26.447255011999857,73.28034088700004],[-26.401600714999915,73.26349518400004],[-26.39696204299989,73.23802317900011],[-26.412912563999896,73.23289622600011],[-26.536610480999883,73.227728583],[-26.581939256999902,73.21698639500009],[-26.597523566999882,73.210353908],[-26.6078181629999,73.20278554900007],[-26.61363684799994,73.19301992400013],[-26.61546790299985,73.179388739],[-26.624501105999855,73.17487213700004],[-26.667103644999884,73.15957265800007],[-26.71336829299989,73.13471100500011],[-26.753895636999886,73.13532135600009],[-26.864409959999932,73.15151601800012],[-26.915516730999883,73.1664085960001],[-26.993519660999937,73.17426178600009],[-27.04434160099987,73.18622467700003],[-27.089344855999883,73.19037506700015],[-27.19823157499988,73.18219635600003],[-27.232411261999857,73.18964264500003],[-27.399810350999925,73.162543036],[-27.604156053999926,73.16657135600015],[-27.671131964999912,73.15916575700008],[-27.725900844999956,73.1344261740001],[-27.67560787699989,73.12262604400003],[-27.473378058999884,73.13328685100005],[-27.431752081999917,73.12693919500013],[-27.403553839999855,73.11066315300009],[-27.411284959999957,73.07977936400015],[-27.403797980999883,73.07294342700011],[-27.411284959999957,73.066107489],[-27.36620032499991,73.01284414300012],[-27.363758917999856,73.00348541900009],[-27.369618292999917,72.99103424700017],[-27.381743943999904,72.98305898600002],[-27.43846594999988,72.95685455900009],[-27.507394985999923,72.94708893400006],[-27.52790279899997,72.93642812700001],[-27.483062303999958,72.92568594],[-27.441395636999882,72.93671295800006],[-27.400786912999905,72.95449453300012],[-27.32762610599991,72.96832916900003],[-27.31753495999996,72.98159414300007],[-27.321848110999948,73.02924225500014],[-27.318918423999946,73.03823476800015],[-27.312123175999915,73.048041083],[-27.298207160999937,73.0630557310001],[-27.293365037999934,73.07416413000014],[-27.29971269399988,73.0824649110001],[-27.309396938999924,73.08954498900009],[-27.31432044199991,73.0971540390001],[-27.29784094999991,73.11416250200007],[-27.260121222999942,73.12718333500008],[-27.15029863199996,73.14752838700015],[-26.706532355999855,73.10211823100015],[-26.651682094999956,73.10321686400012],[-26.602121548999918,73.11798737200009],[-26.492543097999885,73.182806708],[-26.4444880849999,73.19668203300007],[-25.999012824999905,73.20258209800012],[-25.887277798999946,73.19086334800012],[-25.72061113199993,73.13812897300012],[-25.386586066999907,73.111029364],[-25.05256100199992,73.08392975500009],[-25.046864386999857,73.07542552300005],[-25.04539954299989,73.06415436400006],[-25.039540167999856,73.05247630400005],[-25.028553839999887,73.04486725500011],[-24.98428300699993,73.02578359600012],[-25.00645911399991,72.9977481140001],[-25.03941809799988,72.98550039300007],[-25.074940558999856,72.97695547100011],[-25.135609503999913,72.93976471600014],[-25.17080644399988,72.92975495000015],[-25.262196417999913,72.91889069200006],[-25.27794348899988,72.91376373900006],[-25.291900193999936,72.90696849200013],[-25.303944464999855,72.89858633000007],[-25.320708787999877,72.89301178600006],[-25.696156378999888,72.90273672100001],[-25.739857550999883,72.89630768400009],[-25.776275193999936,72.87811920800003],[-25.80333411399988,72.86029694200012],[-25.871571417999885,72.83087799700006],[-25.988677537999877,72.79682038000011],[-26.082630988999938,72.78241608300006],[-26.177642381999874,72.77802155200008],[-26.265980597999913,72.78558991100012],[-26.599964972999913,72.86237213700015],[-26.78278561099992,72.8721377620001],[-27.102691209999875,72.82599518400015],[-27.14907792899993,72.82575104400001],[-27.27208411399988,72.85911692900011],[-27.31737219999991,72.86322663000006],[-27.35594641799986,72.86066315300015],[-27.38756262899994,72.84638092700006],[-27.362660285999905,72.833156643],[-27.149525519999937,72.8041852890001],[-27.122547980999883,72.81232330900004],[-27.099964972999913,72.80914948100015],[-26.944447394999912,72.82892487200009],[-26.70030676999991,72.83250560100008],[-26.527658657999947,72.7926292990001],[-26.500965949999852,72.79364655200006],[-26.464588995999858,72.78929271000005],[-26.39696204299989,72.77130768400004],[-26.540435350999896,72.74652741100006],[-26.66950436099992,72.74070872600011],[-26.709828253999888,72.72748444200006],[-26.761382615999878,72.7174339860001],[-26.780588344999927,72.71670156500006],[-26.719715949999905,72.704087632],[-26.349476691999882,72.74494049700003],[-26.306996222999913,72.73037344],[-26.32404537699989,72.70970286699999],[-26.362172003999945,72.64842357000008],[-26.388091600999868,72.62738678600012],[-26.452951626999944,72.60004303600006],[-26.479562954999892,72.579535223],[-26.468983527999853,72.57697174700009],[-26.43761145699989,72.579535223],[-26.405873175999943,72.58681875200004],[-26.23306230399993,72.69090403900005],[-26.208322719999956,72.71332428600014],[-26.177642381999874,72.72589752800002],[-26.092925584999875,72.71572500200008],[-25.88255774599986,72.74103424700002],[-25.848540818999908,72.75731028900007],[-25.709706183999856,72.79450104400014],[-25.65184485599985,72.819769598],[-25.609445766999954,72.831488348],[-25.5227758449999,72.84023672100007],[-25.476429816999936,72.833685614],[-25.387928839999915,72.805121161],[-25.34154212099986,72.79857005400011],[-25.256214972999885,72.8111839860001],[-25.231312628999945,72.80609772300006],[-25.224680141999897,72.79913971600008],[-25.21275794199994,72.77850983300006],[-25.20400956899988,72.77130768400004],[-25.201893683999884,72.76536692900002],[-25.18659420499992,72.75942617400005],[-25.14940344999991,72.75202057500009],[-25.067494269999884,72.75202057500009],[-25.0514216789999,72.74860260600018],[-25.017933722999942,72.73379140800002],[-24.99889075399994,72.73037344],[-24.848378058999884,72.72410716400005],[-24.833648240999874,72.720445054],[-24.79312089799987,72.70302969000012],[-24.716786261999943,72.68642812700007],[-24.696888800999943,72.67572663000006],[-24.73253333199989,72.65729401200012],[-24.74266516799986,72.64663320500007],[-24.734730597999885,72.63129303600012],[-24.723988410999876,72.621527411],[-24.71532141799989,72.61139557500003],[-24.713856574999905,72.60187409100006],[-24.72423255099991,72.59381745000009],[-24.72423255099991,72.58698151200018],[-24.70836341099988,72.58771393400012],[-24.692128058999856,72.58490631700006],[-24.676828579999892,72.57973867400005],[-24.6634008449999,72.57330963700007],[-24.675607876999948,72.56037018400004],[-24.68195553299989,72.55548737200017],[-24.69005286399991,72.55219147300012],[-24.66828365799995,72.544623114],[-24.623768683999856,72.55621979400011],[-24.60130774599986,72.55219147300012],[-24.610178188999896,72.53266022300006],[-24.626210089999887,72.5260277360001],[-24.64696204299989,72.52399323100015],[-24.70254472599993,72.50751373900009],[-24.7713923819999,72.49787018400009],[-24.887359178999873,72.46845123900012],[-25.13231360599988,72.43618398600007],[-25.521026170999903,72.4293480485],[-25.90973873599995,72.42251211100013],[-25.90973873599995,72.41567617400013],[-25.877512173999918,72.40794505400011],[-25.734852667999913,72.39179108300006],[-25.42357337099986,72.40558502800015],[-25.34552975199992,72.395453192],[-25.31387285099987,72.39516836100006],[-25.28892981699991,72.39057038000014],[-25.300770636999882,72.3739281270001],[-25.430043097999885,72.27484772300012],[-25.459095831999946,72.260687567],[-25.48851477799985,72.23871491100009],[-25.495838995999858,72.23065827000015],[-25.498890753999945,72.22016022300006],[-25.495472785999937,72.20400625200001],[-25.48692786399991,72.188910223],[-25.46475175699993,72.16242096600006],[-25.47809811099995,72.15143463700018],[-25.51036536399988,72.13739655200011],[-25.52619381399992,72.127630927],[-25.507313605999883,72.12376536699998],[-25.483387824999905,72.12482330900004],[-25.458485480999883,72.12909577000015],[-25.415679490999906,72.14130280200011],[-25.402821417999856,72.14862702000012],[-25.39679928299995,72.159125067],[-25.3958227199999,72.17544179900013],[-25.399566209999932,72.18744538000006],[-25.4056697259999,72.19403717700011],[-25.408680792999917,72.20184967700011],[-25.403187628999888,72.217027085],[-25.391428188999893,72.22870514499999],[-25.376820441999882,72.23810455900004],[-25.368519660999908,72.24876536700003],[-25.37535559799991,72.26422760600018],[-25.34361731699988,72.284857489],[-25.26329505099994,72.319037177],[-25.208119269999912,72.35639069200015],[-25.1809789699999,72.36538320500007],[-25.044667120999858,72.38287995000002],[-25.019683397999927,72.38153717700011],[-25.010487433999856,72.38816966400002],[-24.923451300999915,72.4020042990001],[-24.852284308999884,72.43203359600012],[-24.827870245999918,72.43618398600007],[-24.805653449999877,72.43170807500003],[-24.763050910999937,72.41254303600006],[-24.738189256999874,72.40818919500008],[-24.72484290299988,72.4101423200001],[-24.683257615999906,72.42251211100013],[-24.668853318999936,72.42243073100015],[-24.628651495999918,72.41567617400013],[-24.54637610599988,72.42340729400006],[-24.518788214999855,72.41567617400013],[-24.450510219999956,72.37067291900014],[-24.342030402999853,72.33173248900006],[-24.27790279899989,72.31915924700014],[-24.237619594999927,72.32632070500001],[-24.245594855999883,72.32884349200013],[-24.265492316999882,72.34052155200011],[-24.2337947259999,72.33673737200009],[-24.074818488999906,72.27777741100014],[-24.045806443999908,72.27167389500006],[-23.943226691999936,72.2709821640001],[-23.930531378999888,72.26886627800008],[-23.900461391999954,72.25918203300013],[-23.86888587099986,72.25592682500009],[-23.839100714999855,72.25800202000012],[-23.816639777999853,72.2536074890001],[-23.806792772999927,72.23065827000015],[-23.82262122299997,72.22724030200014],[-23.843373175999943,72.227036851],[-23.862782355999883,72.23029205900004],[-23.874501105999855,72.23688385600009],[-23.881418423999946,72.232611395],[-23.887521938999953,72.23045482],[-23.895008917999917,72.23065827000015],[-23.884348110999895,72.22134023600002],[-23.871815558999884,72.21743398600002],[-23.794422980999883,72.217027085],[-23.775949673999946,72.2226423200001],[-23.779530402999853,72.23688385600009],[-23.761219855999883,72.24445221600013],[-23.74453691299993,72.23680247600011],[-23.728179490999903,72.22431061400012],[-23.71068274599986,72.217027085],[-23.714833136999914,72.20718008000007],[-23.71751868399988,72.20335521000005],[-23.711252407999922,72.18195221600003],[-23.80907141799989,72.13475169500005],[-23.82054602799985,72.11395905200006],[-23.807484503999973,72.11066315300012],[-23.789702928999873,72.11273834800012],[-23.758412238999906,72.12079498900005],[-23.69172115799995,72.14842357],[-23.656605597999885,72.15497467700006],[-23.620269334999904,72.15643952000012],[-23.593983527999878,72.15184153899999],[-23.577870245999915,72.14720286700008],[-23.108387824999852,72.06683991100006],[-23.086822068999936,72.0587832700001],[-23.105824347999942,72.04067617400001],[-23.1354060539999,72.031683661],[-23.168080206999946,72.02602773600002],[-23.19668535099993,72.01776764500003],[-23.142811652999878,72.00067780200008],[-23.114328579999892,71.995794989],[-23.087228969999956,72.00104401200018],[-23.059681769999912,72.01117584800012],[-23.033599412999877,72.01434967700003],[-23.005686001999916,72.01113515800013],[-22.93268795499992,71.99266185100011],[-22.68138587099989,71.95831940300017],[-22.618519660999908,71.93602122600014],[-22.554351365999878,71.92487213700012],[-22.525135870999918,71.91535065300012],[-22.516061977999925,71.90924713700004],[-22.503407355999855,71.90078359600008],[-22.503407355999855,71.88947174700012],[-22.519154425999915,71.8808454450001],[-22.544911261999857,71.8744570980001],[-22.665272589999912,71.861070054],[-22.72874915299991,71.84516022300006],[-22.73680579299986,71.81976959800011],[-22.78331458199989,71.79140859600001],[-22.96198482999992,71.74896881700012],[-23.05996660099987,71.71210358300006],[-23.107818162999877,71.68577708500005],[-23.135324673999914,71.65534088700008],[-23.12779700399994,71.647894598],[-23.123199022999927,71.63190338700012],[-23.08665930899988,71.63043854400014],[-23.011708136999914,71.641058661],[-22.990874803999958,71.6471214860001],[-22.949208136999886,71.66469961100002],[-22.912180141999954,71.67267487200017],[-22.881703253999913,71.69196198100012],[-22.86742102799991,71.69627513200011],[-22.82803300699993,71.70099518400002],[-22.572621222999942,71.76772695500007],[-22.531890428999873,71.77138906500012],[-22.453928188999924,71.79376862200014],[-22.41576087099986,71.796535549],[-22.408436652999853,71.77138906500012],[-22.427113410999908,71.75324127800003],[-22.46182206899988,71.73554108300011],[-22.498931443999908,71.72211334800012],[-22.533558722999885,71.71417877800017],[-22.545074022999927,71.70140208500011],[-22.552479620999918,71.69627513200011],[-22.56224524599986,71.69367096600003],[-22.583322719999952,71.6906598980001],[-22.643869594999956,71.67544179900013],[-22.654855923999918,71.66836172100007],[-22.65550696499986,71.650580145],[-22.632476365999906,71.61054108300006],[-22.638050910999908,71.58982982000005],[-22.634429490999935,71.58136627800012],[-22.617014126999972,71.57420482000008],[-22.595529751999948,71.57412344000008],[-22.579741990999903,71.58641185100005],[-22.577504035999908,71.597357489],[-22.5814509759999,71.60431549700009],[-22.589751756999874,71.60748932500015],[-22.600209113999966,71.606878973],[-22.600209113999966,71.61310455900015],[-22.576242641999897,71.61554596600007],[-22.550933397999867,71.62107982000009],[-22.50430253799996,71.6379255230001],[-22.478993292999917,71.641058661],[-22.422352667999913,71.62653229400014],[-22.394154425999943,71.62738678600006],[-22.395863410999937,71.63117096600008],[-22.396717902999853,71.63418203300007],[-22.398182745999918,71.637152411],[-22.401600714999915,71.641058661],[-22.384185350999957,71.65810781500015],[-22.34227454299986,71.67035553600012],[-22.3196508449999,71.68203359600001],[-22.305083787999962,71.697211005],[-22.306019660999937,71.70624420800003],[-22.31041419199991,71.71503327000006],[-22.306019660999937,71.72980377800015],[-22.29434160099993,71.73505280200013],[-22.214426235999923,71.75649648600007],[-22.186838344999927,71.76015859600012],[-22.160389777999853,71.757269598],[-22.140980597999942,71.74347565300009],[-22.160511847999913,71.72235748900009],[-22.13914954299986,71.71637604400014],[-21.894520636999886,71.74347565300009],[-21.90444902299987,71.73554108300011],[-21.915028449999937,71.72996653900009],[-21.94172115799995,71.72296784100006],[-21.94684811099995,71.71100495000012],[-21.97105872299994,71.70514557500015],[-22.02489173099991,71.70311107000013],[-21.99010169199994,71.68878815300015],[-22.012928839999883,71.67470937700001],[-22.07876542899993,71.67072174700003],[-22.190541144999965,71.64862702000015],[-22.21666419199991,71.63483307500003],[-22.155181443999933,71.62055084800012],[-22.112538214999915,71.61928945500011],[-22.099964972999913,71.61310455900015],[-22.14830481699994,71.59015534100017],[-22.276112433999852,71.59617747599998],[-22.331857876999948,71.59145742400007],[-22.354359503999945,71.586615302],[-22.425445115999906,71.58641185100005],[-22.44786536399991,71.58104075699998],[-22.489898240999874,71.5576846370001],[-22.507435675999915,71.55223216400005],[-22.508371548999918,71.54425690300009],[-22.531320766999897,71.49701569200012],[-22.53530839799987,71.48480866100006],[-22.53575598899988,71.47467682500009],[-22.5314021479999,71.46454498900013],[-22.4993383449999,71.42593008000007],[-22.493153449999852,71.41225820500013],[-22.49034583199989,71.39398834800006],[-22.4928279289999,71.38621653899999],[-22.498280402999853,71.38239166900014],[-22.501576300999886,71.37775299700003],[-22.497792120999858,71.36733633000013],[-22.49010169199994,71.35968659100011],[-22.46312415299988,71.3468285180001],[-22.44937089799987,71.3393415390001],[-22.462513800999915,71.325628973],[-22.467600063999953,71.31834544499999],[-22.469878709999932,71.29840729400009],[-22.46593176999994,71.29881419500002],[-22.459095831999914,71.29385000200011],[-22.4552302729999,71.28774648600016],[-22.459950324999905,71.28473541900014],[-22.465443488999938,71.282375393],[-22.46983801999994,71.27667877800003],[-22.476714647999927,71.26430898600007],[-22.438588019999965,71.2569033870001],[-22.393299933999856,71.2568220070001],[-22.35537675699993,71.26984284100011],[-22.339507615999906,71.3018252620001],[-22.333607550999943,71.31989166900003],[-22.333973761999886,71.32916901200015],[-22.34325110599991,71.33319733300014],[-22.35802161399991,71.33624909100003],[-22.359934048999946,71.34349192900005],[-22.353260870999918,71.357123114],[-22.306019660999937,71.41510651200018],[-22.286000128999888,71.43085358300014],[-22.132394985999923,71.49091217700014],[-22.106800910999933,71.49701569200012],[-22.056019660999908,71.49689362200014],[-22.00438391799986,71.49017975500011],[-21.983143683999852,71.48187897300012],[-21.96190344999988,71.47028229400003],[-21.94131425699993,71.46352773600007],[-21.921783006999874,71.46971263200005],[-21.928212042999885,71.47874583500005],[-21.935658331999946,71.48655833500005],[-21.944691535999965,71.49274323100012],[-21.95592200399994,71.49701569200012],[-21.90135657499988,71.49005768400004],[-21.88145911399991,71.49323151200008],[-21.894520636999886,71.517523505],[-21.86986243399988,71.51422760600006],[-21.8417048819999,71.49091217700014],[-21.818755662999905,71.49017975500011],[-21.81069902299987,71.49624258000001],[-21.805775519999912,71.50556061400006],[-21.798817511999914,71.51410553600009],[-21.78465735599991,71.517523505],[-21.774159308999913,71.51463450700005],[-21.764637824999937,71.50800202000009],[-21.75645911399991,71.4992536480001],[-21.74986731699994,71.49017975500011],[-21.77806555899991,71.4760195980001],[-21.844593878999913,71.4616559920001],[-21.874012824999905,71.44863515800004],[-21.836577928999873,71.44098541900009],[-21.755604620999918,71.44916413],[-21.715728318999936,71.44236888200008],[-21.737782355999855,71.43480052300013],[-21.79596920499989,71.42772044500008],[-21.818755662999905,71.42877838700012],[-21.818755662999905,71.42133209800015],[-21.695668097999885,71.41648997600008],[-21.66795813699991,71.40143463700007],[-21.692250128999888,71.39850495000003],[-21.73985755099997,71.38373444200015],[-21.813588019999912,71.37596263200005],[-21.838612433999913,71.36981842700006],[-21.853505011999854,71.36050039300012],[-21.856190558999856,71.34861888200008],[-21.845692511999886,71.34625885600012],[-21.82872473899991,71.3502464860001],[-21.812001105999883,71.357123114],[-21.79039466099988,71.362738348],[-21.715728318999936,71.36050039300012],[-21.730336066999882,71.35297272300005],[-21.76121985599991,71.3449160830001],[-21.783680792999917,71.33014557500015],[-21.795399542999917,71.325140692],[-21.818755662999905,71.31891510600006],[-21.795643683999856,71.319525458],[-21.730051235999923,71.33319733300014],[-21.60651607999992,71.33319733300014],[-21.60651607999992,71.32575104400014],[-21.963368292999945,71.27045319200006],[-21.94542395699989,71.26434967700008],[-21.90587317599994,71.26239655200011],[-21.887684699999852,71.25747304900007],[-21.887684699999852,71.25063711100013],[-21.895334438999896,71.24941640800013],[-21.915028449999937,71.24380117400013],[-21.889515753999913,71.23696523600002],[-21.86237545499992,71.24038320500001],[-21.836659308999856,71.25141022300006],[-21.815663214999915,71.26740143400015],[-21.796498175999943,71.27114492400001],[-21.766835089999915,71.26512278900002],[-21.73851477799988,71.25446198100015],[-21.723215298999918,71.24380117400013],[-21.743031378999916,71.23810455900006],[-21.74986731699994,71.237005927],[-21.74986731699994,71.22947825700005],[-21.72569739499994,71.2287051450001],[-21.703114386999886,71.21873607000013],[-21.66112219999988,71.18854401200012],[-21.678944464999855,71.17413971600014],[-21.693714972999942,71.15253327000015],[-21.71279863199993,71.13788483300013],[-21.743641730999883,71.14419179900007],[-21.78652910099987,71.18016185100005],[-21.810861782999922,71.19358958500005],[-21.846669074999852,71.19537995000003],[-21.837269660999905,71.18195221600014],[-21.82518469999991,71.16941966400003],[-21.820383266999926,71.15790436399999],[-21.833078579999892,71.14760976800008],[-21.80223548099994,71.14606354400014],[-21.715728318999936,71.11969635600013],[-21.751047329999977,71.11029694200012],[-22.120757615999906,71.07672760600009],[-22.16152910099987,71.06769440300009],[-22.333363410999905,71.0594750020001],[-22.29605058499993,71.04157135600002],[-21.969878709999932,71.06565989800005],[-21.88634192599997,71.056870835],[-21.867176886999914,71.06565989800005],[-21.874012824999905,71.07245514500009],[-21.848866339999944,71.07465241100007],[-21.805531378999973,71.0839704450001],[-21.78498287699992,71.08612702000012],[-21.726470506999874,71.08478424700003],[-21.696848110999923,71.07892487200009],[-21.67479407499991,71.06565989800005],[-21.678456183999884,71.05609772300006],[-21.681019660999876,71.04319896000005],[-21.6770727199999,71.03115469000012],[-21.66112219999988,71.02411530200008],[-21.677845831999917,71.01740143400002],[-21.743641730999883,71.00421784100017],[-21.772368943999936,70.9980329450001],[-21.833078579999892,70.99530670800014],[-21.88817298099985,70.97907135600009],[-21.99010169199994,70.97626373900015],[-21.99010169199994,70.96881745000015],[-21.915028449999937,70.962591864],[-21.723947719999956,70.99274323100003],[-21.695301886999882,70.98309967700006],[-21.76671301999994,70.96084219],[-21.798654751999948,70.94472890800012],[-21.792103644999884,70.92788320500013],[-21.731800910999937,70.955267645],[-21.697255011999914,70.962591864],[-21.66795813699991,70.95579661699999],[-21.70274817599994,70.94212474200005],[-21.667103644999912,70.9379743510001],[-21.600249803999873,70.96478913],[-21.572417772999927,70.95579661699999],[-21.612172003999916,70.92942942899998],[-21.714833136999857,70.89061107000008],[-21.75731360599991,70.86640045800006],[-21.74705969999991,70.85871002800015],[-21.71760006399992,70.84271881700015],[-21.70616614499997,70.83974844000012],[-21.700428839999887,70.83641185100011],[-21.70693925699987,70.82929108300006],[-21.723215298999918,70.81801992400005],[-21.735463019999884,70.80438873900012],[-21.744292772999927,70.80027903899999],[-21.826934373999904,70.79889557500009],[-21.846058722999885,70.80174388200014],[-21.887277798999946,70.81329987200014],[-21.90074622299994,70.81244538000006],[-21.904367641999894,70.81329987200014],[-21.91100012899994,70.81366608300009],[-21.92861894399988,70.81244538000006],[-21.912831183999938,70.7963320980001],[-21.882435675999968,70.78530508000013],[-21.848703579999977,70.779038804],[-21.822824673999946,70.77704498900015],[-21.783314581999914,70.77871328300016],[-21.66584225199989,70.8022321640001],[-21.651600714999887,70.80267975500011],[-21.63914954299989,70.80060455900009],[-21.63377844999991,70.79507070500007],[-21.635894334999932,70.77948639500009],[-21.642241990999963,70.77423737200009],[-21.66795813699991,70.77081940300009],[-21.717681443999908,70.75267161699999],[-21.73350989499994,70.75039297100001],[-21.767730272999927,70.75096263199998],[-21.78258216099988,70.747015692],[-21.792103644999884,70.73602936400015],[-21.768625454999917,70.73720937700007],[-21.74551347599987,70.7417666690001],[-21.723378058999884,70.74339427300013],[-21.70274817599994,70.73602936400015],[-21.66624915299991,70.74730052300012],[-21.617746548999918,70.7435570330001],[-21.57249915299991,70.72939687700007],[-21.545725063999896,70.709377346],[-21.76414954299986,70.709377346],[-21.76414954299986,70.7025820980001],[-21.743519660999908,70.69684479400011],[-21.630441860999895,70.69135163000009],[-21.604400193999908,70.68504466400005],[-21.57921301999994,70.67462799700014],[-21.5958552729999,70.66836172100001],[-21.61510169199994,70.66657135600012],[-21.654286261999886,70.66779205900004],[-21.649077928999873,70.658392645],[-21.640614386999943,70.65159739799999],[-21.62018795499995,70.64052969000012],[-21.645659959999872,70.63369375200004],[-21.75731360599991,70.63369375200004],[-21.749094204999917,70.62913646000008],[-21.744374152999907,70.624660549],[-21.73741614499994,70.61318594000006],[-21.76276607999995,70.60512929900013],[-21.771148240999935,70.5900739600001],[-21.760853644999912,70.57807038],[-21.730051235999923,70.57904694200006],[-21.678822394999884,70.59634023600007],[-21.653187628999916,70.59931061400009],[-21.62018795499995,70.592718817],[-21.62018795499995,70.58527252800003],[-21.67479407499991,70.57160065300009],[-21.65103105399993,70.56346263200008],[-21.565541144999912,70.55853913000011],[-21.550404425999915,70.54669830900013],[-21.539906378999945,70.54291413000011],[-21.516346808999884,70.55312734600007],[-21.50182044199994,70.55312734600007],[-21.487416144999884,70.54987213700011],[-21.47679602799985,70.54486725500009],[-21.538238084999932,70.49705638200005],[-21.55728105399993,70.48680247600011],[-21.600493943999908,70.47016022300006],[-21.637521938999953,70.44525788000011],[-21.663726365999878,70.43553294499999],[-21.691477016999954,70.42999909100014],[-21.751698370999915,70.42694733300006],[-21.76414954299986,70.428208726],[-21.78864498599998,70.435451565],[-21.793080206999946,70.44037506700006],[-21.840687628999916,70.4323591170001],[-21.940052863999938,70.39032623900015],[-21.9903865229999,70.397447007],[-21.99982662699989,70.41136302299999],[-21.988352016999954,70.42609284100017],[-21.95592200399994,70.44871653900013],[-21.94440670499992,70.46283600500006],[-21.943714972999885,70.47036367400004],[-21.952626105999908,70.4756533870001],[-22.02285722599987,70.49949778899999],[-22.076283331999914,70.50189850500011],[-22.129546678999873,70.49323151200004],[-22.28416907499991,70.446275132],[-22.341379360999948,70.438910223],[-22.381174282999947,70.44871653900013],[-22.402007615999935,70.465277411],[-22.41588294199991,70.49725983299999],[-22.41771399599989,70.53412506700006],[-22.408436652999853,70.56537506700012],[-22.41588294199991,70.57160065300009],[-22.408436652999853,70.57904694200006],[-22.43993079299986,70.63922760600003],[-22.448394334999904,70.64618561400012],[-22.46654212099989,70.65753815300009],[-22.47252356699991,70.66510651200015],[-22.473011847999885,70.67023346600017],[-22.471180792999917,70.67597077000012],[-22.464955206999946,70.711615302],[-22.444691535999933,70.76894765800002],[-22.442534959999932,70.78449127800002],[-22.436390753999973,70.79389069200015],[-22.42918860599985,70.81118398600013],[-22.425282355999855,70.83051178600009],[-22.428863084999904,70.84593333500003],[-22.448557094999952,70.8545596370001],[-22.479156053999873,70.85541413000011],[-22.51024329299989,70.85150788000011],[-22.531320766999897,70.84593333500003],[-22.572906053999873,70.82542552300005],[-22.578439907999893,70.81854889500015],[-22.58226477799991,70.80532461100002],[-22.586008266999954,70.79877350500011],[-22.601185675999943,70.78172435100008],[-22.60806230399993,70.770005601],[-22.603993292999885,70.75893789300012],[-22.586008266999954,70.7435570330001],[-22.60065670499995,70.73602936400015],[-22.64858964799987,70.72304922100012],[-22.641184048999886,70.71556224199999],[-22.648019985999895,70.70709870000003],[-22.64830481699994,70.70172760600018],[-22.64427649599986,70.69733307500009],[-22.638050910999908,70.69204336100002],[-22.634673631999874,70.68406810100008],[-22.63890540299991,70.67755768400015],[-22.645334438999924,70.6713727890001],[-22.64858964799987,70.66437409100003],[-22.64110266799989,70.65021393400009],[-22.623605923999946,70.63934967700011],[-22.589751756999874,70.62311432500017],[-22.581369594999927,70.61343008000001],[-22.5736384759999,70.59979889500005],[-22.568186001999976,70.58494700700003],[-22.566070115999963,70.57160065300009],[-22.5697322259999,70.55768463700012],[-22.576893683999856,70.54775625200001],[-22.582020636999886,70.53774648600005],[-22.579741990999903,70.52383047100015],[-22.58779863199993,70.50983307500009],[-22.600412563999924,70.4755313170001],[-22.61074785099993,70.45954010600003],[-22.632557745999886,70.44546133000007],[-22.660878058999913,70.43846263200003],[-23.017201300999943,70.44037506700006],[-23.097157355999855,70.42633698100012],[-23.34544837099989,70.440578518],[-23.68272864499994,70.54486725500009],[-23.746449347999885,70.55320872600005],[-23.809396938999924,70.5689964860001],[-23.929798956999946,70.61318594000006],[-24.02086341099988,70.65875885600003],[-24.066273566999882,70.68968333500005],[-24.08055579299989,70.71556224199999],[-24.085764126999944,70.71507396],[-24.092640753999888,70.71792226800011],[-24.098500128999913,70.72386302300005],[-24.10106360599991,70.73297760600006],[-24.112375454999917,70.75177643400009],[-24.165679490999878,70.78750234600011],[-24.182972785999876,70.80499909100008],[-24.20750891799989,70.86131419500005],[-24.21495520699997,70.89834219000006],[-24.22272701699995,70.91449616100014],[-24.2278539699999,70.93162669499999],[-24.22398841099988,70.95579661699999],[-24.199289516999897,70.9957949890001],[-24.19562740799995,71.01227448100012],[-24.210926886999914,71.02777741100012],[-24.22191321499986,71.03579336100007],[-24.227691209999932,71.04352448100018],[-24.231760219999984,71.05133698100013],[-24.237619594999927,71.0594750020001],[-24.264881964999912,71.08136627800003],[-24.42747962099989,71.16400787999999],[-24.50829016799989,71.19025299700003],[-24.569650844999895,71.21771881700006],[-24.583322719999927,71.22833893400009],[-24.58531653599996,71.24241771000005],[-24.5733943349999,71.26430898600007],[-24.600575324999934,71.27008698100006],[-24.63719641799986,71.26923248900015],[-24.669422980999883,71.2719587260001],[-24.683257615999906,71.2885195980001],[-24.673817511999886,71.30093008000001],[-24.614979620999886,71.3393415390001],[-24.638010219999956,71.36176178600012],[-24.6720271479999,71.35700104400003],[-24.710072394999884,71.34186432500003],[-24.744984503999916,71.33319733300014],[-24.799916144999884,71.33319733300014],[-24.808705206999946,71.33063385600003],[-24.820423956999946,71.317816473],[-24.827870245999918,71.31268952000009],[-24.847727016999926,71.30731842700011],[-24.86978105399993,71.30491771],[-24.891468878999916,71.30638255400005],[-24.909820115999878,71.31268952000009],[-24.91185462099989,71.31732819200003],[-24.927723761999914,71.31903717700011],[-24.964466925999915,71.31891510600006],[-24.982045050999943,71.31679922100012],[-25.018422003999916,71.3073591170001],[-25.036122199999852,71.30524323100012],[-25.096058722999942,71.30483633000001],[-25.12197831899988,71.31150950700004],[-25.17218990799995,71.34707265800013],[-25.23607337099986,71.362738348],[-25.26549231699994,71.37417226800007],[-25.29564368399988,71.3998884140001],[-25.307687954999892,71.407660223],[-25.342518683999913,71.42438385600003],[-25.3517146479999,71.43219635600003],[-25.377268032999893,71.445786851],[-25.43846594999991,71.44936758000016],[-25.461577928999873,71.45917389500009],[-25.479725714999887,71.46967194200006],[-25.526600714999912,71.483384507],[-25.543527798999918,71.49359772300012],[-25.558420376999948,71.50800202000009],[-25.575591600999896,71.52041250200001],[-25.59630286399988,71.53058502800015],[-25.621734178999898,71.53864166900007],[-25.64159094999991,71.5416527360001],[-25.697743292999917,71.53864166900007],[-25.743641730999883,71.54572174700014],[-25.759510870999918,71.54547760600012],[-25.76577714799987,71.5498721370001],[-25.827788865999906,71.55849844],[-25.839670376999972,71.5632184920001],[-25.848866339999855,71.56818268400015],[-25.859730597999913,71.57172272300011],[-25.876210089999915,71.57217031500011],[-25.955067511999854,71.56500885600009],[-25.99290930899991,71.56696198100003],[-26.076039191999882,71.58637116100006],[-26.112782355999883,71.58486562700001],[-26.19090735599988,71.57217031500011],[-26.275502081999917,71.5705020200001],[-26.31944739499994,71.57831452000003],[-26.35260982999995,71.59666575700008],[-26.384103969999956,71.63222890800013],[-26.40147864499994,71.64248281500006],[-26.42430579299989,71.641058661],[-26.433583136999914,71.637152411],[-26.444650844999956,71.63092682500003],[-26.453846808999856,71.62384674700017],[-26.457834438999924,71.616848049],[-26.468658006999902,71.57587311400009],[-26.500355597999885,71.55971914300004],[-26.597645636999857,71.54743073100013],[-26.785145636999857,71.54653554900007],[-26.814686652999935,71.55849844],[-26.87669837099989,71.56659577000012],[-26.935617641999926,71.58079661700003],[-27.15794837099989,71.66836172100007],[-27.175282355999883,71.67975495000003],[-27.211984829999977,71.72296784100006],[-27.212391730999883,71.727525132],[-27.21104895699989,71.72898997600004],[-27.20449785099993,71.72980377800015],[-27.222727016999894,71.74506256700012],[-27.325917120999918,71.7805036480001],[-27.364247199999852,71.7827009140001],[-27.38239498599995,71.78636302300006],[-27.42052161399991,71.80385976800004],[-27.464344855999883,71.810492255],[-27.614613410999908,71.86692942900011],[-27.622222459999932,71.88117096600003],[-27.602365688999924,71.90167877800017],[-27.881743943999876,71.97882721600001],[-27.93138587099989,72.0104841170001],[-27.944162563999924,72.00527578300002],[-27.966053839999883,71.9836286480001],[-27.98460852799988,71.97736237200014],[-28.005197719999927,71.97532786700005],[-28.069203253999916,71.97736237200014],[-28.123687303999898,71.99046458500013],[-28.188384568999908,71.99725983300006],[-28.206288214999887,71.997951565],[-28.32921301999994,72.05255768400013],[-28.46007239499994,72.08173248900003],[-28.558338995999915,72.12348053600006],[-28.58690344999991,72.131537177],[-28.620269334999875,72.134466864],[-28.632801886999882,72.13100820500001],[-28.640004035999908,72.12299225500006],[-28.645171678999898,72.11395905200006],[-28.651356574999877,72.10781484600007],[-28.665272589999855,72.10309479400017],[-28.69298255099994,72.09821198100008],[-28.705962693999933,72.09349192899998],[-28.705962693999933,72.08608633000001],[-28.674143032999893,72.08100006700009],[-28.607289191999882,72.08881256700006],[-28.575550910999905,72.0829531920001],[-28.555002407999975,72.07640208500005],[-28.460113084999932,72.06244538000009],[-28.36042232999992,72.00714752800017],[-28.40249589799987,71.990668036],[-28.468739386999943,71.97833893400004],[-28.490223761999886,71.95941803600012],[-28.456939256999874,71.93939850500006],[-28.159372524999924,71.92371246950013],[-27.86180579299989,71.90802643400012],[-27.82408606699994,71.89728424700009],[-27.801625128999916,71.8744570980001],[-27.85020911399988,71.87909577],[-27.945912238999938,71.89874909100014],[-27.993397589999944,71.90167877800017],[-28.00796464799987,71.89716217700011],[-28.023996548999943,71.8878441430001],[-28.034087693999933,71.87856679900013],[-28.03091386599996,71.8744570980001],[-27.968006964999915,71.87116120000006],[-27.64968827999988,71.79498932500017],[-27.331369594999956,71.71881745000009],[-27.333851691999882,71.708929755],[-27.359364386999886,71.68537018400004],[-27.36705481699991,71.67548248900012],[-27.37262936099989,71.66575755399998],[-27.379261847999967,71.65648021000011],[-27.390736456999917,71.647894598],[-27.40802975199992,71.64248281500006],[-27.456206834999957,71.63987864800008],[-27.63267981699991,71.65249258000013],[-27.684925910999937,71.647894598],[-27.811024542999856,71.61200592700011],[-27.854359503999916,71.606878973],[-27.938099738999938,71.62661367400011],[-27.98289954299989,71.63084544500005],[-28.007069464999883,71.61310455900015],[-27.947661912999934,71.60691966400002],[-27.93195553299995,71.600043036],[-27.962269660999937,71.58942291900014],[-28.39122473899988,71.57217031500011],[-28.474273240999963,71.58539459800006],[-28.493641730999883,71.57953522300012],[-28.49128170499992,71.57721588700015],[-28.48814856699994,71.57538483299999],[-28.487782355999936,71.57217031500011],[-28.493641730999883,71.56590403899999],[-28.419911261999943,71.54975006700012],[-28.164011196999866,71.56006500849999],[-27.90811113199987,71.57037995000015],[-27.800119594999956,71.59585195500016],[-27.709828253999973,71.60187409100014],[-27.650786912999934,71.61310455900015],[-27.386667446999866,71.5926374370001],[-27.122547980999883,71.57217031500011],[-27.13829505099994,71.55581289300011],[-27.168690558999913,71.54425690300009],[-27.250803188999896,71.528265692],[-27.306548631999902,71.52631256700015],[-27.32860266799989,71.517523505],[-27.219593878999916,71.48139069200015],[-27.204741990999963,71.48212311400009],[-27.198312954999945,71.49359772300012],[-27.175526495999918,71.50926341400002],[-27.124012824999852,71.520941473],[-27.034413214999887,71.53119538000011],[-26.97948157499988,71.5292015650001],[-26.814686652999935,71.50385163000006],[-26.766224738999938,71.50600820500013],[-26.74160722599993,71.50397370000003],[-26.705718553999926,71.4840762390001],[-26.68708248599995,71.481594143],[-26.522328253999888,71.48891836100002],[-26.446888800999943,71.5100772160001],[-26.32127844999991,71.49701569200012],[-26.26610266799989,71.50910065300003],[-26.15611731699994,71.49017975500011],[-26.108265753999916,71.48948802300008],[-26.013295050999883,71.5031598980001],[-25.80504309799988,71.49066803599999],[-25.72736568899995,71.47443268400015],[-25.65648352799988,71.44236888200008],[-25.59211178299995,71.40306224199999],[-25.556019660999905,71.38694896],[-25.52245032499988,71.38031647300012],[-25.460113084999904,71.38198476800015],[-25.444203253999888,71.38031647300012],[-25.435861782999922,71.37470123900012],[-25.429676886999857,71.36615631700003],[-25.42223059799988,71.35805898600007],[-25.410064256999902,71.353664455],[-25.415679490999906,71.33820221600008],[-25.416900193999908,71.28473541900014],[-25.427113410999937,71.27366771000011],[-25.504505988999938,71.23554108300014],[-25.512521938999896,71.2158877620001],[-25.544056769999884,71.21600983300006],[-25.70909583199989,71.2612165390001],[-25.74937903599988,71.2647158870001],[-25.780018683999884,71.25747304900007],[-25.73924719999991,71.2357852230001],[-25.59508216099988,71.19537995000003],[-25.580799933999884,71.18854401200012],[-25.60191809799988,71.16958242400001],[-25.680246548999943,71.15623607],[-25.70799719999985,71.14419179900007],[-25.723500128999945,71.13532135600003],[-25.786854620999886,71.12710195500013],[-25.848133917999913,71.10846588700007],[-25.915272589999883,71.10114166900014],[-25.936919725999868,71.09495677299999],[-25.95811926999994,71.08612702000012],[-25.98688717399989,71.06903717700008],[-26.00206458199989,71.06220123900006],[-26.01988684799997,71.0594750020001],[-26.095326300999915,71.0594750020001],[-26.170480923999918,71.045152085],[-26.232533331999946,71.045152085],[-26.253041144999912,71.04124583500001],[-26.264149542999945,71.03485748900009],[-26.284047003999913,71.014105536],[-26.300770636999857,71.00665924700012],[-26.338490363999938,71.00531647300012],[-26.355702277999853,71.00047435100005],[-26.388172980999855,70.98578522300012],[-26.425607876999972,70.97455475500013],[-26.82835852799988,70.93528880400011],[-27.15420488199996,70.94961172100001],[-27.25291907499991,70.93528880400011],[-27.506174282999893,70.94212474200005],[-27.517689581999946,70.95624420800009],[-27.553293423999886,70.99445221600001],[-27.575062628999945,71.01105377800008],[-27.740467902999878,71.10297272300012],[-27.753163214999944,71.11347077],[-27.761463995999918,71.12718333500011],[-27.7650447259999,71.1380069030001],[-27.765736456999917,71.13894277600009],[-27.77135169199994,71.146714585],[-27.787953253999888,71.15444570500001],[-27.806385870999918,71.15656159100003],[-27.821197068999908,71.15228913000003],[-27.834624803999898,71.14581940300009],[-27.848784959999904,71.14077383000007],[-27.907460089999944,71.14032623900009],[-27.925119594999952,71.13397858300014],[-27.91234290299991,71.11546458500011],[-27.86986243399994,71.08917877800012],[-27.848784959999904,71.07245514500009],[-27.811879035999933,71.03595612200003],[-27.78966223899991,71.02252838700004],[-27.73180091099988,71.01398346600003],[-27.697987433999913,71.00511302300008],[-27.66559811099989,70.99213288000009],[-27.63776607999995,70.97626373900015],[-27.61815344999988,70.95380280200014],[-27.63573157499991,70.94399648600002],[-27.70539303299989,70.94212474200005],[-27.74242102799994,70.94696686400012],[-27.842600063999953,70.97626373900015],[-27.955799933999852,70.97626373900015],[-27.973459438999953,70.97943756699999],[-28.003081834999904,70.99359772300012],[-28.017241990999935,70.996771552],[-28.055043097999885,70.99477773600015],[-28.18301347599987,70.974310614],[-28.230213995999947,70.97626373900015],[-28.246693488999938,70.97943756699999],[-28.276926235999923,70.99359772300012],[-28.29133053299989,70.996771552],[-28.36363684799997,70.98997630400008],[-28.397613084999904,70.98126862200009],[-28.411122199999877,70.96881745000015],[-28.10700436099995,70.93927643400009],[-28.067738410999937,70.92243073100009],[-28.06163489499994,70.89435455900009],[-28.014759894999912,70.89325592700006],[-28.00365149599989,70.8977725280001],[-27.99364173099988,70.899115302],[-27.920887824999937,70.88129303600012],[-27.920887824999937,70.86806875200007],[-27.935699022999895,70.852484442],[-27.952463344999927,70.83974844000012],[-27.974232550999883,70.81671784100017],[-27.994211391999954,70.76544830900004],[-28.010487433999884,70.73981354400013],[-28.04157467399989,70.71238841400009],[-28.150461391999897,70.64793528900013],[-28.190174933999913,70.63324616100012],[-28.240142381999927,70.62677643400004],[-28.336048956999946,70.62620677300005],[-28.336048956999946,70.62002187700008],[-28.31529700399994,70.60858795800011],[-28.292632615999906,70.60248444200015],[-28.239816860999923,70.59951406500012],[-28.239816860999923,70.592718817],[-28.26585852799988,70.587103583],[-28.310292120999915,70.56386953300006],[-28.364125128999945,70.55536530200006],[-28.416656053999898,70.54124583500011],[-28.44522050699987,70.53807200700005],[-28.5182185539999,70.540472723],[-28.541493292999917,70.53807200700005],[-28.555409308999884,70.53318919499999],[-28.580799933999913,70.520209052],[-28.596424933999884,70.51764557500017],[-28.71617591099988,70.52383047100015],[-29.03600012899994,70.47972239800004],[-29.061879035999876,70.4660505230001],[-29.076486782999893,70.46295807500003],[-29.171538865999906,70.470892645],[-29.19863847599993,70.46865469000004],[-29.22248287699992,70.46161530200006],[-29.234120245999918,70.44806549700009],[-29.23314368399994,70.44570547100012],[-29.23350989499994,70.44183991100012],[-29.18740800699993,70.427679755],[-29.179554816999943,70.42137278900007],[-29.18187415299991,70.41254303599999],[-29.18980872299997,70.40704987200017],[-29.199330206999942,70.40192291900014],[-29.206206834999875,70.39411041900017],[-29.110585089999912,70.39411041900017],[-29.033273891999897,70.41225820500007],[-29.00422115799992,70.41453685100005],[-28.97935950399997,70.41990794500002],[-28.936390753999913,70.44334544499999],[-28.91169186099992,70.44871653900013],[-28.881662563999978,70.45132070500013],[-28.787912563999978,70.46979401200015],[-28.57359778599988,70.47443268400018],[-28.542103644999965,70.47890859600011],[-28.493641730999883,70.50482819200015],[-28.459543423999975,70.50714752800012],[-28.394357876999948,70.5033226580001],[-28.281361456999917,70.510728257],[-28.2892146479999,70.50214264500006],[-28.298939581999946,70.497219143],[-28.3099666009999,70.495550848],[-28.32168535099987,70.49705638200005],[-28.314930792999945,70.48541901200004],[-28.310414191999882,70.48090241100009],[-28.30125891799989,70.47662995000017],[-28.30483964799987,70.47186920800009],[-28.327870245999947,70.45221588700012],[-28.341908331999885,70.44391510600003],[-28.348784959999904,70.43398672100012],[-28.339426235999948,70.41795482000005],[-28.32510331899988,70.40704987200017],[-28.274566209999875,70.38349030200011],[-28.232899542999917,70.37201569200009],[-28.103260870999918,70.38719310100008],[-28.041330532999947,70.38483307500012],[-27.612456834999904,70.4207624370001],[-27.183583136999857,70.45669179900008],[-27.06379147,70.44216543200004],[-26.905588344999984,70.45457591399999],[-26.800119594999895,70.48012929900007],[-26.743316209999932,70.48411692900012],[-26.5292048819999,70.47418854400001],[-26.483754035999905,70.46161530200006],[-26.32127844999991,70.37978750200007],[-26.34019934799994,70.36823151200014],[-26.363392706999974,70.359808661],[-26.38768469999985,70.35480377800015],[-26.44587154899989,70.35146719000012],[-26.455962693999933,70.34540436400015],[-26.451568162999873,70.33197663000006],[-26.698638475999896,70.29043203300016],[-26.724517381999902,70.28929271000011],[-26.85374915299988,70.30101146000011],[-26.93504798099988,70.32611725499999],[-26.97179114499997,70.32868073100012],[-27.01903235599994,70.30744049700003],[-27.08161373599995,70.29783763200005],[-27.138661261999857,70.27191803600014],[-27.176177537999877,70.26365794500005],[-27.25682532499991,70.25739166900011],[-27.295074022999955,70.25006745000009],[-27.39513098899991,70.198675848],[-27.411284959999957,70.18488190300009],[-27.435292120999918,70.17601146000014],[-27.703521287999934,70.13544342700011],[-27.778472459999875,70.10846588700015],[-27.81871497299997,70.09894440300016],[-27.903960740999935,70.09243398600007],[-28.107899542999945,70.14370351800004],[-28.25413977799991,70.14524974200008],[-28.260894334999932,70.14020416900001],[-28.31541907499991,70.13564687700007],[-28.424875454999892,70.093207098],[-28.480051235999923,70.08559804900007],[-28.573719855999855,70.09967682500012],[-28.589914516999897,70.09243398600007],[-28.582386847999942,70.07538483300011],[-28.560292120999858,70.05971914300015],[-28.534087693999904,70.04816315300003],[-28.514149542999917,70.0440127620001],[-28.44522050699987,70.05145905200006],[-28.363352016999926,70.05145905200006],[-28.22679602799994,70.07135651200015],[-28.10265051999997,70.07135651200015],[-28.079986131999902,70.0639102230001],[-28.03258216099988,70.03148021],[-27.997670050999943,70.02228424700003],[-27.97687740799995,70.01349518400015],[-27.966053839999883,70.01048411700005],[-27.956288214999944,70.01040273600007],[-27.93195553299995,70.016750393],[-27.862660285999908,70.02118561400006],[-27.804066535999965,70.03900788000004],[-27.59471594999991,70.06049225500009],[-27.55333411399988,70.05971914300015],[-27.524159308999938,70.04775625200004],[-27.519602016999897,70.037543036],[-27.521229620999915,70.025864976],[-27.52790279899997,70.00307851800005],[-27.527740037999905,69.98981354400003],[-27.524769660999908,69.9816755230001],[-27.51793372299988,69.97597890800013],[-27.506174282999893,69.96954987200003],[-27.473622199999937,69.95978424700009],[-27.339914516999983,69.97113678600006],[-27.30968176999997,69.97772858300011],[-27.28368079299989,69.99201080900004],[-27.188384568999936,70.08901601800005],[-27.17992102799991,70.10293203300016],[-27.184478318999936,70.10956452000012],[-27.193470831999974,70.11538320500007],[-27.198312954999945,70.12661367400007],[-27.192779100999925,70.13743724200008],[-27.18272864499994,70.14557526200018],[-27.177113410999933,70.15444570500013],[-27.185292120999858,70.16754791900009],[-27.102894660999937,70.20331452000012],[-27.074818488999938,70.20848216400013],[-27.02843176999997,70.20160553600012],[-27.004994269999884,70.20066966400005],[-26.97915605399987,70.20848216400013],[-26.909657355999855,70.2487246770001],[-26.88361568899998,70.25690338700012],[-26.845448370999915,70.26080963700012],[-26.63524329299986,70.250921942],[-26.608631964999912,70.24384186400015],[-26.536447719999927,70.21222565300013],[-26.326161261999886,70.19830963700018],[-26.27318274599986,70.21222565300013],[-26.2357478509999,70.22662995000003],[-25.982411261999857,70.277818101],[-25.905913865999935,70.30744049700003],[-25.466053839999944,70.379339911],[-25.4368383449999,70.39126211100005],[-25.360178188999924,70.39911530200011],[-25.305287238999938,70.41323476800012],[-25.247629360999895,70.41347890800007],[-25.21324622299994,70.40884023600016],[-25.203521287999905,70.3983421900001],[-25.23875891799994,70.37978750200007],[-25.276275193999936,70.37348053600014],[-25.3595271479999,70.37164948100015],[-25.3958227199999,70.35932038000011],[-25.27293860599991,70.35932038000011],[-25.28734290299988,70.35126373900009],[-25.326405402999853,70.33795807500015],[-25.334380662999905,70.32855866100014],[-25.339100714999915,70.32518138200011],[-25.34825598899991,70.3144391950001],[-25.354969855999855,70.30316803600012],[-25.34398352799988,70.28701406500014],[-25.341175910999937,70.2842471370001],[-25.332671678999898,70.27993398600009],[-25.324940558999884,70.27826569200009],[-25.2350154289999,70.27732981999998],[-25.219309048999946,70.27985260600012],[-25.211781378999888,70.28632233300011],[-25.20665442599997,70.29511139500009],[-25.197824673999918,70.30467357000008],[-25.183827277999853,70.313177802],[-25.058705206999917,70.36139557500003],[-25.03270423099991,70.36676666900007],[-25.00088456899988,70.36562734600007],[-24.96003170499995,70.35789622600005],[-24.92479407499991,70.345119533],[-24.909820115999878,70.32855866100014],[-24.90721594999988,70.31557851800011],[-24.899891730999855,70.30540599200002],[-24.88890540299991,70.29913971600014],[-24.875070766999897,70.29783763200005],[-24.862049933999913,70.3014997420001],[-24.859242316999882,70.30707428600003],[-24.859445766999926,70.31321849199999],[-24.85521399599989,70.3183454450001],[-24.819243943999908,70.32465241100014],[-24.78380286399991,70.31659577],[-24.747954881999927,70.30426666900014],[-24.679066535999876,70.29189687700004],[-24.612416144999884,70.26959870000009],[-24.587635870999918,70.26992422100001],[-24.57022050699996,70.26129791900011],[-24.48468990799995,70.247015692],[-24.47752844999991,70.24079010600015],[-24.474720831999946,70.23297760600015],[-24.473703579999892,70.22601959800006],[-24.47158769399988,70.22211334800006],[-24.46263587099986,70.22036367400007],[-24.429758266999954,70.22211334800006],[-24.217762824999905,70.20848216400013],[-24.17821204299989,70.19717031500015],[-24.034331834999872,70.18512604400003],[-24.015736456999885,70.17804596600017],[-24.001332160999905,70.16657135600003],[-23.986439581999946,70.15912506700015],[-23.967925584999932,70.15509674700009],[-23.923085089999915,70.15277741100012],[-23.9114477199999,70.14935944199999],[-23.893666144999912,70.13922760600015],[-23.863352016999922,70.13373444200012],[-23.797108527999878,70.1505801450001],[-23.758697068999965,70.14362213700004],[-23.734608527999853,70.136419989],[-23.652251756999902,70.13397858300004],[-23.62999426999994,70.13092682500017],[-23.583607550999886,70.11676666900014],[-23.559803839999887,70.11286041900014],[-23.163753492999888,70.11359284066675],[-22.767703145999945,70.11432526233345],[-22.371652798999946,70.11505768400006],[-22.344064907999922,70.12445709800006],[-22.289051886999886,70.130804755],[-22.21007239499994,70.14960358300006],[-22.10973059799997,70.15521881700006],[-22.096506313999924,70.15045807500015],[-22.080962693999936,70.13849518400004],[-22.077137824999905,70.13031647300004],[-22.0897517569999,70.12661367400007],[-22.106800910999933,70.11839427299999],[-22.153065558999856,70.08148834800004],[-22.1614477199999,70.07135651200015],[-22.243397589999944,70.03717682500017],[-22.296131964999915,70.00128815300017],[-22.33649654899989,69.99087148600007],[-22.380034959999904,69.97125885600003],[-22.401275193999904,69.97260163000011],[-22.41429602799988,69.98314036699999],[-22.42080644399988,69.99567291900017],[-22.428700324999852,70.00608958500005],[-22.44595292899987,70.01048411700005],[-22.466053839999915,70.012884833],[-22.47370357999992,70.01007721600014],[-22.476714647999927,69.99966054900015],[-22.478179490999906,69.988714911],[-22.482899542999917,69.9812686220001],[-22.491444464999915,69.977036851],[-22.50430253799996,69.97573476800008],[-22.54906165299991,69.97797272300006],[-22.561634894999884,69.96967194199999],[-22.566070115999963,69.94529857000013],[-22.58238684799988,69.938910223],[-22.736561652999907,69.94676341400002],[-22.76073157499991,69.94220612200014],[-22.77839107999992,69.92792389500006],[-22.79946855399993,69.93475983300009],[-22.79710852799988,69.94293854400009],[-22.792469855999883,69.94847239800002],[-22.786122199999852,69.952337958],[-22.77839107999992,69.95526764500012],[-22.804188605999855,69.95514557500015],[-22.854807094999924,69.96312083500011],[-22.88133704299989,69.96271393400009],[-22.895415818999933,69.9588890650001],[-22.911122199999905,69.95164622600008],[-22.923939581999946,69.94212474200008],[-22.92918860599991,69.93134186400005],[-22.915760870999918,69.91689687700001],[-22.884755011999914,69.91022370000015],[-22.796376105999855,69.90424225500014],[-22.77944902299987,69.90021393400015],[-22.771555141999897,69.89378489800005],[-22.776112433999856,69.89057038],[-22.805734829999892,69.87954336100013],[-22.828928188999924,69.88882070500001],[-22.91559811099995,69.89378489800005],[-22.934681769999937,69.90037669500013],[-22.97081458199989,69.92792389500006],[-23.006214972999913,69.94261302300005],[-23.038441535999937,69.94464752800009],[-23.067616339999887,69.9364281270001],[-23.093617316999882,69.92047760600018],[-23.04515540299988,69.89378489800005],[-23.038441535999937,69.883246161],[-23.04674231699991,69.87360260600003],[-23.066395636999886,69.8710798200001],[-23.196888800999886,69.88056061400012],[-23.241322394999884,69.877630927],[-23.278675910999933,69.85968659100014],[-23.26789303299995,69.85883209800014],[-23.248036261999857,69.85394928600009],[-22.975941535999908,69.84113190300003],[-22.932850714999887,69.82217031500012],[-22.91783606699994,69.819281317],[-22.909494594999984,69.81342194200006],[-22.91559811099995,69.79759349200009],[-22.924387173999946,69.79100169500005],[-22.998850063999896,69.7656110700001],[-23.032582160999905,69.7617048200001],[-23.10728919199991,69.77024974200005],[-23.177601691999936,69.78839752800006],[-23.208973761999886,69.80267975500013],[-23.26130123599995,69.8404808610001],[-23.29670162699989,69.85439687700007],[-23.33433997299997,69.86151764500012],[-23.368031378999973,69.85968659100014],[-23.389271613999938,69.85260651200018],[-23.38780676999988,69.84821198100009],[-23.372059699999852,69.84601471600011],[-23.35065670499989,69.84540436400005],[-23.336659308999913,69.842230536],[-23.318023240999935,69.82807038000006],[-23.29149329299989,69.8158633480001],[-23.271595831999885,69.79547760600009],[-23.25621497299994,69.77456289300014],[-23.25133216099988,69.76341380400011],[-23.243804490999906,69.75348541900003],[-23.251779751999972,69.751857815],[-23.347767706999946,69.76211172100012],[-23.407541469999927,69.75006745000012],[-23.631581183999884,69.73265208500005],[-23.929798956999946,69.75600820500013],[-23.909535285999933,69.74575429900001],[-23.70303300699993,69.7180850280001],[-23.68077551999988,69.70669179900015],[-23.66319739499994,69.69025299700014],[-23.65607662699992,69.67096588700012],[-23.647124803999873,69.65668366100012],[-23.62604732999995,69.64557526200008],[-23.579701300999883,69.63312409100008],[-23.579701300999883,69.62628815300015],[-23.6185603509999,69.61798737200009],[-23.693714972999885,69.61432526200004],[-23.73110917899993,69.60578034100011],[-23.73110917899993,69.59955475500006],[-23.650380011999914,69.5988630230001],[-23.62124589799987,69.59210846600017],[-23.646880662999934,69.56427643400012],[-23.68968665299994,69.54653554900001],[-23.814198370999918,69.51227448100006],[-23.937855597999885,69.53538646],[-23.947906053999873,69.54718659100017],[-23.953968878999973,69.56244538000014],[-23.96385657499988,69.57786692900008],[-23.983387824999852,69.59080638200007],[-24.003407355999908,69.594183661],[-24.01903235599991,69.58690013200008],[-24.025298631999874,69.56793854400013],[-24.037464972999942,69.55857982000013],[-24.065052863999966,69.55780670800003],[-24.258778449999937,69.58535390800013],[-24.308013475999925,69.60175202000012],[-24.333811001999944,69.60602448100015],[-24.354888475999896,69.59955475500006],[-24.20807857999995,69.55402252800009],[-24.14354407499991,69.5517031920001],[-24.114735480999855,69.54433828300004],[-24.098784959999957,69.53351471600003],[-24.08568274599989,69.51870351800007],[-24.07689368399991,69.50210195500001],[-24.07371985599985,69.48602936400012],[-24.08360755099997,69.47455475500009],[-24.107045050999943,69.47223541900011],[-24.1556697259999,69.47606028900013],[-24.147816535999908,69.46369049700009],[-24.14289303299995,69.458889065],[-24.135161912999934,69.45433177300005],[-24.149525519999912,69.44814687700008],[-24.149525519999912,69.44135163000006],[-24.13536536399988,69.43891022300012],[-24.10838782499985,69.43073151200012],[-24.094227667999917,69.42829010600018],[-24.108713344999956,69.41722239800005],[-24.133208787999877,69.41746653899999],[-24.258168097999885,69.44228750200013],[-24.265492316999882,69.44814687700008],[-24.342844204999977,69.4425316430001],[-24.367909308999884,69.44814687700008],[-24.34194902299987,69.43496328300013],[-24.34626217399989,69.41811758000013],[-24.366525844999895,69.40070221600017],[-24.418080206999942,69.36994049700009],[-24.44831295499995,69.36212799700009],[-24.479603644999912,69.363023179],[-24.512562628999888,69.37299225500009],[-24.512562628999888,69.379868882],[-24.47158769399988,69.38605377800015],[-24.49132239499991,69.39166901200015],[-24.580881313999893,69.38605377800015],[-24.661284959999875,69.39960358300011],[-24.683257615999906,69.40778229400003],[-24.687814907999922,69.41229889500009],[-24.696441209999932,69.43040599199999],[-24.70750891799989,69.43451569200015],[-24.7350154289999,69.43366120000003],[-24.742095506999874,69.42975495000005],[-24.73851477799991,69.420843817],[-24.744455532999922,69.41486237200009],[-24.746652798999918,69.41136302300002],[-24.749867316999882,69.4092471370001],[-24.758941209999875,69.40778229400003],[-24.751535610999895,69.40033600500006],[-24.715687628999888,69.38296133000007],[-24.67638098899988,69.372503973],[-24.642404751999948,69.35561758000001],[-24.614979620999886,69.31842682500012],[-24.630686001999948,69.31854889500009],[-24.66828365799995,69.31293366100009],[-24.702463344999952,69.30239492400001],[-24.745472785999905,69.30158112200012],[-24.765858527999878,69.29791901200015],[-24.765858527999878,69.29047272300006],[-24.73607337099986,69.28481679900008],[-24.6490779289999,69.29047272300006],[-24.62706458199989,69.28717682500003],[-24.615101691999882,69.28009674700017],[-24.616851365999878,69.26959870000012],[-24.636097785999908,69.256333726],[-24.67552649599989,69.244614976],[-24.81419837099989,69.24266185100005],[-24.81419837099989,69.24949778900007],[-24.80646725199989,69.25071849199999],[-24.80215410099987,69.252386786],[-24.798695441999882,69.25429922100014],[-24.79312089799987,69.256333726],[-24.79312089799987,69.263128973],[-24.817128058999913,69.26080963700004],[-24.907093878999888,69.26634349200008],[-24.950103318999933,69.280462958],[-25.074940558999856,69.30109284100001],[-25.10163326699995,69.29791901200015],[-25.10163326699995,69.304144598],[-25.117339647999923,69.29661692900005],[-25.190988735999895,69.28367747600005],[-25.20958411399988,69.27545807500015],[-25.214833136999886,69.27020905200006],[-25.209868943999908,69.263128973],[-25.197824673999918,69.24949778900007],[-25.258534308999856,69.25275299700012],[-25.27293860599991,69.24949778900007],[-25.280913865999878,69.23761627800012],[-25.26984615799995,69.231594143],[-25.066802537999934,69.22907135600009],[-25.074330206999885,69.22907135600009],[-25.0228572259999,69.2250430360001],[-24.99941972599993,69.21662018400015],[-24.98428300699993,69.20111725500004],[-24.992746548999975,69.194037177],[-24.99718176999994,69.18598053600005],[-24.99705969999988,69.17698802300005],[-24.991769985999895,69.16693756700006],[-25.02135169199994,69.16022370000003],[-25.087961391999926,69.15729401200008],[-25.115874803999873,69.14712148600013],[-25.099191860999923,69.14081452],[-25.079457160999908,69.13580963700015],[-25.058827277999878,69.13279857000008],[-25.039540167999856,69.13279857000008],[-25.077544725999925,69.109849351],[-25.144398566999882,69.11005280200011],[-25.21198482999992,69.12327708500008],[-25.25243079299989,69.139634507],[-25.25059973899991,69.14581940300015],[-25.257069464999887,69.14549388200011],[-25.27977454299986,69.139634507],[-25.327544725999896,69.13279857000008],[-25.29344641799989,69.11640045800004],[-25.24242102799988,69.07868073100008],[-25.21141516799986,69.06460195500013],[-25.22402910099993,69.04596588700015],[-25.24132239499994,69.03815338700015],[-25.29344641799989,69.03725820500007],[-25.29344641799989,69.02977122600011],[-25.285959438999924,69.02977122600011],[-25.285959438999924,69.02362702000012],[-25.31895911399988,69.02692291900016],[-25.354481574999852,69.03827545800014],[-25.371327277999853,69.05247630400004],[-25.34862219999991,69.06460195500013],[-25.47996985599991,69.06509023600013],[-25.58820553299995,69.0967471370001],[-25.61925208199989,69.09967682500003],[-25.65648352799988,69.09186432500003],[-25.55378170499992,69.04718659100008],[-25.5482478509999,69.03327057500009],[-25.581654425999883,69.02179596600014],[-25.65648352799988,69.00934479400003],[-25.617298956999917,68.99872467699998],[-25.498890753999945,69.00311920800007],[-25.463734503999888,68.99461497600005],[-25.44505774599989,68.98078034100014],[-25.449818488999878,68.96792226800012],[-25.485218878999888,68.96214427300005],[-25.6360570949999,68.96832916900001],[-25.701527472999942,68.96214427300005],[-25.702626105999883,68.95840078300004],[-25.71231035099993,68.940375067],[-25.717925584999932,68.93423086100002],[-25.688303188999896,68.92641836100005],[-25.598459438999896,68.92112864800005],[-25.57823645699989,68.91498444200006],[-25.588286912999934,68.90094635600003],[-25.625477667999856,68.87588125200004],[-25.66771399599986,68.87042877800009],[-25.789214647999952,68.88857656500008],[-25.8209529289999,68.87274811400013],[-25.772572394999912,68.85846588700015],[-25.78416907499991,68.85529205900009],[-25.80890865799989,68.85248444200012],[-25.820668097999885,68.84886302299999],[-25.83324133999986,68.84723541900014],[-25.846831834999904,68.84788646],[-25.85260982999989,68.84650299700003],[-25.84146074099996,68.83860911700005],[-25.84146074099996,68.83120351800005],[-25.944488084999904,68.79022858300014],[-26.06590735599991,68.78115469000015],[-26.09190833199989,68.78709544500008],[-26.11082923099991,68.79360586100016],[-26.157215949999877,68.78538646000005],[-26.177235480999855,68.78709544500008],[-26.19298255099991,68.7912051450001],[-26.235218878999916,68.7926292990001],[-26.252349412999877,68.79022858300014],[-26.262359178999958,68.78742096600008],[-26.26935787699992,68.78449127800017],[-26.284047003999913,68.77342357000013],[-26.289418097999885,68.76508209800006],[-26.285755988999938,68.7587751320001],[-26.278553839999915,68.75364817900011],[-26.273426886999886,68.74860260600018],[-26.267567511999857,68.7441266950001],[-26.259022589999915,68.74274323100003],[-26.25243079299986,68.739447333],[-26.252349412999877,68.72939687700004],[-26.258046027999853,68.72418854400003],[-26.26838131399995,68.72166575700011],[-26.2794490229999,68.72125885600009],[-26.28770911399988,68.72199127800003],[-26.28770911399988,68.71507396000013],[-26.265980597999913,68.71507396000013],[-26.28538977799991,68.69554271000004],[-26.325550910999937,68.67914459800015],[-26.416737433999913,68.65892161700013],[-26.45140540299991,68.65827057500007],[-26.465240037999905,68.66046784100017],[-26.47704016799986,68.66596100499999],[-26.495716925999943,68.67841217700011],[-26.506214972999913,68.68097565300003],[-26.535552537999934,68.67934804900001],[-26.605458136999857,68.65741608300009],[-26.643381313999953,68.653021552],[-26.677235480999855,68.65680573100003],[-26.706654425999915,68.665920315],[-26.71637936099989,68.68060944200003],[-26.691151495999918,68.701402085],[-26.743804490999935,68.70522695500001],[-26.844349738999963,68.63739655200011],[-26.916411912999877,68.65322500200016],[-26.955067511999943,68.64716217700006],[-26.992665167999945,68.63637929900015],[-27.012766079999892,68.62571849200009],[-27.01333574099996,68.61644114800008],[-27.00674394399988,68.59564850500009],[-27.009632941999907,68.59153880400011],[-27.02228756399998,68.589544989],[-27.04718990799992,68.58055247600008],[-27.057606574999905,68.57904694200012],[-27.14195716099988,68.59186432500015],[-27.161040818999876,68.60150788000011],[-27.182240363999963,68.60932038000011],[-27.248402472999942,68.60516998900005],[-27.296254035999876,68.61212799700014],[-27.324086066999936,68.60968659100003],[-27.336984829999945,68.600775458],[-27.31432044199991,68.58478424700009],[-27.259836391999897,68.57103099199999],[-27.23379472599993,68.561021226],[-27.218739386999914,68.54376862200009],[-27.237904425999886,68.53961823100003],[-27.27651933499993,68.54393138200005],[-27.314442511999886,68.53510163],[-27.455718553999873,68.53912995000015],[-27.52790279899997,68.5506859400001],[-27.52790279899997,68.55744049700003],[-27.51622473899988,68.56122467700013],[-27.495757615999906,68.57160065300003],[-27.486317511999882,68.57855866100012],[-27.5821833979999,68.57855866100012],[-27.609201626999948,68.56891510600015],[-27.63267981699991,68.54970937700001],[-27.65831458199989,68.53534577000012],[-27.722727016999983,68.54425690300013],[-27.749663865999935,68.53506094],[-27.756337042999917,68.52228424700014],[-27.602365688999924,68.49542877800015],[-27.630930141999926,68.4806175800001],[-27.742583787999905,68.47752513200011],[-27.781117316999968,68.46869538000006],[-27.81037350199989,68.47939687700007],[-27.884429490999963,68.49506256700005],[-27.91454016799989,68.51276276200015],[-27.928863084999875,68.53534577000012],[-27.935414191999968,68.55512116100006],[-27.948068813999924,68.568304755],[-27.980336066999968,68.57111237200014],[-28.02220618399988,68.56289297100015],[-28.02432206899988,68.54938385600018],[-28.01549231699994,68.53050364800005],[-28.024159308999913,68.50629303600006],[-28.02440344999988,68.49628327000006],[-28.007069464999883,68.47101471600001],[-28.010487433999884,68.45783112200017],[-28.02220618399988,68.45457591400013],[-28.035552537999905,68.46039459800006],[-28.054839647999927,68.47492096600003],[-28.069203253999916,68.46503327],[-28.079986131999902,68.45327383000004],[-28.091908331999942,68.44375234600011],[-28.109486456999974,68.44082265800002],[-28.124623175999968,68.44513580900009],[-28.169056769999884,68.46430084800006],[-28.220570441999968,68.49355703300002],[-28.265288865999935,68.500962632],[-28.35651607999992,68.50287506700015],[-28.344593878999973,68.49579498900009],[-28.31159420499992,68.48834870000012],[-28.294422980999883,68.482367255],[-28.282948370999947,68.474554755],[-28.25348873599995,68.44757721600014],[-28.25348873599995,68.44082265800002],[-28.29474850199992,68.426214911],[-28.44522050699987,68.44757721600014],[-28.507923956999974,68.44757721600014],[-28.494984503999973,68.4227562520001],[-28.506581183999884,68.41266510600003],[-28.52904212099989,68.41156647300006],[-28.54889889199998,68.41347890800013],[-28.576730923999946,68.41282786699999],[-28.59707597599993,68.40656159100003],[-28.6153865229999,68.39862702000006],[-28.637074347999885,68.39301178600006],[-28.637074347999885,68.38556549700009],[-28.629994269999912,68.384222723],[-28.617421027999935,68.38019440300003],[-28.609730597999913,68.37929922100012],[-28.631337042999917,68.36273834800006],[-28.663156704999945,68.36163971600003],[-28.791574673999914,68.38056061400006],[-28.822255011999914,68.38117096600011],[-28.843129035999908,68.37250397300004],[-28.848540818999936,68.35342031500012],[-28.85187740799998,68.328558661],[-28.949940558999884,68.35976797100007],[-28.98033606699994,68.36249420800011],[-28.980295376999948,68.34454987200009],[-29.006662563999953,68.34760163000009],[-29.108713344999927,68.3803571640001],[-29.127430792999917,68.3907738300001],[-29.147938605999855,68.39883047100012],[-29.17210852799988,68.3998070330001],[-29.1926977199999,68.392482815],[-29.200754360999923,68.380316473],[-29.196400519999937,68.36579010600015],[-29.179554816999943,68.35138580900009],[-29.1542048819999,68.34218984600012],[-29.130238410999933,68.33808014500009],[-29.11021887899989,68.33047109600012],[-29.096994594999956,68.31037018400008],[-29.138254360999895,68.27952708500014],[-29.162261522999923,68.26748281500012],[-29.18911699099993,68.26264069200015],[-29.207590298999946,68.27220286700013],[-29.276234503999973,68.32050202000015],[-29.281971808999938,68.32404205900004],[-29.293568488999934,68.31806061400012],[-29.329701300999886,68.309556382],[-29.33653723899991,68.30418528900013],[-29.34316972599987,68.29197825700004],[-29.346099412999905,68.26162344000006],[-29.35704505099997,68.24957916900014],[-29.386463995999858,68.24689362200007],[-29.44790605399993,68.26337311400006],[-29.47378495999993,68.24957916900014],[-29.44810950399989,68.23908112200009],[-29.395171678999926,68.22426992400004],[-29.377552863999913,68.207993882],[-29.377552863999913,68.20115794500006],[-29.40729732999992,68.21198151200015],[-29.44298255099997,68.21816640800013],[-29.511301235999948,68.22166575700011],[-29.525746222999913,68.22435130400002],[-29.576771613999906,68.24213288],[-29.6114802729999,68.24835846600014],[-29.625884568999933,68.25372955900009],[-29.638254360999976,68.26264069200015],[-29.632639126999887,68.27244700700008],[-29.61095130099991,68.29677969000012],[-29.67918860599991,68.29059479400017],[-29.696685350999868,68.29266998899999],[-29.730213995999918,68.30206940300012],[-29.772450324999934,68.3082542990001],[-29.781971808999913,68.31867096600017],[-29.78282630099992,68.3327497420001],[-29.78160559799991,68.34796784100007],[-29.784657355999908,68.369614976],[-29.793120897999952,68.37714264500015],[-29.80614173099994,68.37946198100009],[-29.822621222999913,68.38556549700009],[-29.837025519999884,68.3984235700001],[-29.844146287999934,68.40949127800015],[-29.852650519999965,68.41559479400014],[-29.870961066999936,68.41347890800013],[-29.895171678999926,68.39642975500009],[-29.905100063999928,68.39240143400012],[-29.938832160999933,68.386460679],[-29.97337805899994,68.38458893400012],[-29.991851365999963,68.3798281920001],[-30.003814256999902,68.36859772300012],[-30.008168097999885,68.34796784100007],[-30.02171790299985,68.33510976800005],[-30.048980272999927,68.32990143400016],[-30.069447394999912,68.32099030200014],[-30.062814907999922,68.29677969000012],[-30.045155402999914,68.28534577000009],[-29.99388587099989,68.26337311400006],[-29.987049933999884,68.2558047550001],[-29.993397589999883,68.25104401200004],[-30.012277798999918,68.24579498900015],[-30.035633917999913,68.24217357],[-30.04950924399992,68.24217357],[-30.07530676999994,68.24339427299999],[-30.135365363999934,68.26308828300013],[-30.16576087099992,68.26947663000006],[-30.19945227799991,68.27106354400009],[-30.272775844999927,68.26557038000006],[-30.302967902999853,68.2558047550001],[-30.2872615229999,68.2429059920001],[-30.259836391999922,68.24213288],[-30.203684048999914,68.24957916900014],[-30.175770636999886,68.24648672100007],[-30.147816535999965,68.23786041900017],[-30.122710740999878,68.22467682500003],[-30.10374915299985,68.207993882],[-30.103342251999944,68.20384349200005],[-30.103993292999913,68.1970889340001],[-30.10289466099996,68.188910223],[-30.09691321499994,68.1807315120001],[-30.089914516999954,68.17731354400007],[-30.072906053999898,68.17365143400004],[-30.066151495999858,68.17015208500005],[-30.008168097999885,68.12604401200015],[-30.03123938699994,68.11774323100018],[-30.055978969999924,68.11180247600005],[-30.090158657999893,68.12457916900009],[-30.10374915299985,68.12604401200015],[-30.11685136599993,68.12299225500004],[-30.127268032999922,68.11684804900007],[-30.136301235999923,68.11001211100016],[-30.145334438999924,68.10496653900013],[-30.16234290299991,68.102525132],[-30.21361243399994,68.11180247600005],[-30.230051235999923,68.10911692900008],[-30.259755011999854,68.09918854400017],[-30.273793097999917,68.09825267100007],[-30.337635870999918,68.09935130400014],[-30.366281704999896,68.10748932500015],[-30.392404751999948,68.12604401200015],[-30.403309699999937,68.13886139500009],[-30.406809048999918,68.14777252800003],[-30.40538489499994,68.17015208500005],[-30.394642706999946,68.19818756700006],[-30.392404751999948,68.21442291900009],[-30.401966925999943,68.22166575700011],[-30.45677649599986,68.22361888200008],[-30.671620245999943,68.25755442900011],[-30.816883917999917,68.2558047550001],[-30.794300910999933,68.2406680360001],[-30.494740363999878,68.18475983300006],[-30.474720831999917,68.17283763200011],[-30.46100826699998,68.13117096600017],[-30.450672980999883,68.11391836100016],[-30.44688880099994,68.09821198100009],[-30.460601365999878,68.08510976800012],[-30.43736731699994,68.07855866100014],[-30.419667120999943,68.07086823100003],[-30.450021938999924,68.06171295800014],[-30.48997962099989,68.05988190300015],[-30.529042120999947,68.06525299700003],[-30.556223110999948,68.07762278900007],[-30.553049282999975,68.08161041900003],[-30.549794074999934,68.08340078300002],[-30.541900193999965,68.08510976800012],[-30.56965084499993,68.08169179900001],[-30.620228644999937,68.06679922100007],[-30.645008917999885,68.06342194200015],[-30.686268683999856,68.06342194200015],[-30.69774329299989,68.06561920800014],[-30.71784420499995,68.07542552300008],[-30.72443600199992,68.07762278900007],[-30.761341925999968,68.08551666900003],[-30.77529863199993,68.08510976800012],[-30.809885219999927,68.07282135600015],[-30.823109503999888,68.07086823100003],[-30.871490037999877,68.07807038000006],[-30.897084113999966,68.07904694200012],[-30.919300910999905,68.07086823100003],[-30.911040818999936,68.067531643],[-30.89199785099993,68.05719635600009],[-30.912749803999926,68.04511139500009],[-30.99128170499995,68.05499909100008],[-31.008697068999936,68.04661692900014],[-31.01724199099996,68.04108307500012],[-31.036488410999908,68.04779694200006],[-31.067046678999926,68.06342194200015],[-31.080962693999904,68.06391022300012],[-31.08775794199994,68.06313711100002],[-31.09064693899995,68.06028880400008],[-31.094838019999912,68.05158112200009],[-31.104644334999932,68.05145905200011],[-31.124419725999953,68.05719635600009],[-31.142893032999975,68.06000397300012],[-31.19367428299992,68.07762278900007],[-31.411122199999905,68.11831289300012],[-31.453724738999934,68.132269598],[-31.42955481699994,68.14459870000015],[-31.398671027999885,68.14817942900012],[-31.33702551999994,68.14594147300015],[-31.36583411399988,68.15827057500009],[-31.403675910999937,68.16274648600016],[-31.44245357999995,68.16046784100008],[-31.47423255099989,68.15277741100006],[-31.48473059799997,68.151800848],[-31.4979548819999,68.14545319200006],[-31.502837693999876,68.13422272300006],[-31.495269334999932,68.11859772300006],[-31.478138800999883,68.10952383000007],[-31.431385870999915,68.102525132],[-31.412749803999926,68.09129466400002],[-31.43700110599991,68.08177317899998],[-31.46947180899991,68.07794830900018],[-31.58116614499994,68.07648346600003],[-31.602691209999872,68.08209870000003],[-31.625640428999954,68.0981306010001],[-31.620961066999936,68.10097890800016],[-31.620472785999937,68.10195547100012],[-31.61827551999997,68.10496653900013],[-31.693837042999892,68.09926992400015],[-31.70079505099997,68.10496653900013],[-31.70083574099996,68.104641018],[-31.70213782499985,68.11416250200001],[-31.71247311099995,68.13206614800005],[-31.714426235999923,68.132269598],[-31.71446692599991,68.14581940300017],[-31.713286912999877,68.15127187700001],[-31.70079505099997,68.16705963700015],[-31.690256313999893,68.17747630400005],[-31.68309485599985,68.18162669499998],[-31.684885219999956,68.18524811400006],[-31.70079505099997,68.19432200700005],[-31.714995897999867,68.19822825700004],[-31.728627081999917,68.19855377800017],[-31.740223761999943,68.20164622600005],[-31.748524542999917,68.21426015800013],[-31.732085740999935,68.21409739799999],[-31.714182094999956,68.21759674700014],[-31.70303300699993,68.224798895],[-31.70693925699993,68.23590729400003],[-31.69139563699994,68.2403832050001],[-31.67218990799998,68.23720937700013],[-31.651600714999855,68.23151276200004],[-31.57795162699989,68.22577545800009],[-31.550363735999976,68.22748444200008],[-31.52887936099995,68.23590729400003],[-31.545521613999906,68.2463239600001],[-31.568267381999927,68.25275299700003],[-31.59211178299992,68.25576406500012],[-31.902821417999917,68.26947663000006],[-31.913197394999912,68.26740143400004],[-31.937245245999943,68.25812409100008],[-31.947255011999914,68.2558047550001],[-31.969064907999975,68.25608958500005],[-31.991281704999945,68.25999583500005],[-32.008534308999856,68.26959870000003],[-32.01549231699994,68.28681061400015],[-32.02452551999994,68.296576239],[-32.06623287699989,68.31850820500001],[-32.07811438699994,68.3315290390001],[-32.07787024599989,68.34658437700001],[-32.07420813699985,68.35765208500005],[-32.07750403599988,68.36762116100013],[-32.098011847999935,68.37929922100012],[-32.14500891799986,68.3890648460001],[-32.15835527299987,68.397650458],[-32.160064256999874,68.42023346600017],[-32.15404212099989,68.43231842700008],[-32.131743943999936,68.45978424700003],[-32.125355597999906,68.47492096600003],[-32.148426886999886,68.48639557500015],[-32.166127081999974,68.485785223],[-32.180572068999936,68.476263739],[-32.22126217399992,68.4317894550001],[-32.23814856699991,68.42332591400005],[-32.256255662999905,68.42023346600017],[-32.31480872299997,68.44350820500007],[-32.33145097599993,68.45441315300015],[-32.32249915299988,68.46385325700008],[-32.303456183999884,68.49542877800015],[-32.33682206899988,68.51544830900004],[-32.34447180899991,68.52334219],[-32.349232550999915,68.53351471600014],[-32.35338294199994,68.5540225280001],[-32.35806230399996,68.56427643400004],[-32.370594855999855,68.5790876320001],[-32.41051184799991,68.615464585],[-32.426991339999915,68.62571849200009],[-32.45799719999994,68.630560614],[-32.48717200399997,68.62392812700013],[-32.50332597599992,68.606390692],[-32.49522864499991,68.57855866100012],[-32.47777258999986,68.5635440120001],[-32.45250403599991,68.55182526200012],[-32.42479407499991,68.54482656500012],[-32.3997289699999,68.54376862200009],[-32.42174231699991,68.53823476800007],[-32.42821204299992,68.5095075540001],[-32.45494544199994,68.50287506700015],[-32.54015051999991,68.50413646000005],[-32.5709529289999,68.50967031500006],[-32.501210089999915,68.42902252800003],[-32.458607550999886,68.39826080900015],[-32.407093878999916,68.37929922100012],[-32.29531816299988,68.35610586100002],[-32.234527147999955,68.3588320980001],[-32.20885169199988,68.34804922100007],[-32.193714972999885,68.32892487200009],[-32.18187415299994,68.30923086100015],[-32.16624915299985,68.29677969000012],[-32.16075598899991,68.27912018400004],[-32.07070878799996,68.19432200700005],[-32.09064693899995,68.18732330900015],[-32.11327063699991,68.19163646000008],[-32.13695227799994,68.20075104400014],[-32.22301184799991,68.22064850500006],[-32.3928116529999,68.22846100500006],[-32.43984941299993,68.24152252800003],[-32.45116126199991,68.2389997420001],[-32.45230058499993,68.23354726800007],[-32.45099850199995,68.21564362200003],[-32.454253709999904,68.207993882],[-32.44078528599991,68.19961172100012],[-32.42520097599993,68.1954613300001],[-32.40957597599992,68.196722723],[-32.380034959999875,68.21238841399999],[-32.35846920499995,68.21381256700015],[-32.31712805899994,68.207993882],[-32.180531378999945,68.16705963700015],[-32.185210740999956,68.16331614800013],[-32.19420325399997,68.15277741100006],[-32.101551886999914,68.15936920800014],[-32.05150305899991,68.15550364800012],[-32.02977454299992,68.13597239800004],[-32.025461391999926,68.12221914300012],[-32.00401770699989,68.1034203150001],[-31.99559485599994,68.09129466400002],[-31.996327277999878,68.08295319200012],[-32.00112870999996,68.0752627620001],[-32.003244594999956,68.06533437700001],[-31.99559485599994,68.05036041900017],[-32.01842200399994,68.051947333],[-32.07811438699994,68.06342194200015],[-32.09154212099995,68.061468817],[-32.125396287999905,68.05068594],[-32.14639238199993,68.05036041900017],[-32.13756262899988,68.038519598],[-32.12364661399991,68.03107330900004],[-32.09117591099991,68.02301666900007],[-32.09752356699994,68.01178620000009],[-32.10728919199988,68.00409577000006],[-32.11937415299991,67.99884674700007],[-32.10285396999993,68.00104401200018],[-32.07070878799996,68.002590236],[-32.080474412999905,67.98794179900001],[-32.09544837099992,67.9793968770001],[-32.10680091099991,67.97040436400006],[-32.105458136999914,67.954779364],[-32.09113521999993,67.94529857],[-32.04869544199994,67.93976471600014],[-32.03652910099987,67.92682526200015],[-32.05540930899991,67.9269880230001],[-32.11168372299997,67.93427155200014],[-32.10822506399998,67.92812734600014],[-32.101551886999914,67.91242096600008],[-32.098011847999935,67.90631745000009],[-32.128000454999885,67.90729401200018],[-32.1568904289999,67.91901276200015],[-32.17870032499988,67.92182038000011],[-32.18736731699997,67.89614492400015],[-32.173003709999875,67.89101797100012],[-32.14513098899994,67.87531159100008],[-32.12637285099987,67.858832098],[-32.139556443999936,67.85114166900017],[-32.27383378799993,67.86286041900014],[-32.31017005099994,67.88157786700013],[-32.33104407499991,67.88589101800012],[-32.420765753999945,67.872219143],[-32.51915442599997,67.872219143],[-32.54246985599988,67.867865302],[-32.54466712099989,67.857123114],[-32.53502356699991,67.84369538],[-32.522572394999884,67.83124420800007],[-32.55772864499994,67.81850820500004],[-32.64244544199994,67.808294989],[-32.68081620999996,67.79645416900001],[-32.66954505099997,67.78139883000001],[-32.67760169199991,67.77024974199998],[-32.69579016799989,67.76203034100008],[-32.76895097599987,67.74188873900006],[-32.77562415299991,67.73688385600012],[-32.782093878999916,67.73021067900005],[-32.79076087099992,67.72451406500006],[-32.818430141999926,67.719712632],[-32.84105383999989,67.70994700700005],[-32.90025794199988,67.70132070500013],[-32.92731686099992,67.689357815],[-33.05426998599992,67.68528880400005],[-33.13243567599994,67.70136139500012],[-33.159657355999855,67.70221588700004],[-33.18610592399992,67.70014069200012],[-33.202259894999884,67.69403717700011],[-33.210113084999875,67.67641836100002],[-33.2005102199999,67.66380442900011],[-33.18106035099989,67.65615469],[-33.16002356699997,67.65314362200009],[-33.10240637899989,67.65241120000015],[-33.074208136999914,67.64687734600012],[-33.05699622299991,67.63263580900004],[-33.06672115799995,67.62913646000005],[-33.09312903599994,67.61505768400009],[-33.09854081899991,67.60846588700004],[-33.1041560539999,67.59857819200012],[-33.117298956999946,67.59406159100017],[-33.13219153599991,67.59145742400007],[-33.14321855399996,67.58730703300013],[-33.186675584999904,67.55768463700018],[-33.21027584499993,67.54730866099999],[-33.23228919199994,67.54328034100003],[-33.27106686099995,67.5420596370001],[-33.28351803299998,67.54328034100003],[-33.32404537699992,67.56220123900015],[-33.33812415299985,67.56370677299999],[-33.36571204299986,67.55141836100013],[-33.359038865999906,67.5342471370001],[-33.33511308499993,67.51805247600005],[-33.31086178299995,67.50849030200008],[-33.34557044199991,67.48867422100015],[-33.29963131399995,67.49433014500015],[-33.27863521999993,67.49241771],[-33.269886847999935,67.47801341400013],[-33.279652472999885,67.46356842700004],[-33.30235755099991,67.45233795800006],[-33.34557044199991,67.44086334800012],[-33.34557044199991,67.434027411],[-33.280832485999895,67.41844310100011],[-33.269886847999935,67.41290924700009],[-33.27367102799988,67.40078359600001],[-33.28709876199986,67.39549388200011],[-33.30308997299994,67.393011786],[-33.31456458199988,67.38898346600003],[-33.33185787699989,67.36863841400005],[-33.34357662699989,67.36078522300015],[-33.36237545499992,67.35765208500008],[-33.39720618399988,67.3561872420001],[-33.41197669199994,67.36005280200011],[-33.420725063999924,67.37197500200007],[-33.40632076699995,67.37970612200017],[-33.417551235999944,67.3894717470001],[-33.43700110599988,67.39313385600015],[-33.447417772999955,67.38251373900012],[-33.45567786399994,67.38080475500011],[-33.51008053299995,67.38556549700003],[-33.506947394999884,67.38174062700001],[-33.505482550999915,67.37848541900014],[-33.50438391799989,67.37555573100003],[-33.5025935539999,67.37197500200007],[-33.52708899599991,67.37278880400008],[-33.551909959999875,67.37815989800013],[-33.57591712099992,67.38043854400011],[-33.598215298999946,67.37197500200007],[-33.5646866529999,67.35765208500008],[-33.567616339999944,67.35565827000012],[-33.56871497299988,67.35512929900007],[-33.56944739499991,67.35431549700014],[-33.571522589999944,67.35146719],[-33.547963019999884,67.34560781500006],[-33.420725063999924,67.33783600500006],[-33.420725063999924,67.33100006700015],[-33.43521074099988,67.33079661699999],[-33.4752498039999,67.3241641300001],[-33.4752498039999,67.31671784100014],[-33.454213019999884,67.31561920799999],[-33.434722459999904,67.31146881700006],[-33.42711341099994,67.30337148600013],[-33.44115149599992,67.28998444200012],[-33.428537563999924,67.27545807500009],[-33.381743943999936,67.26166413],[-33.36546790299991,67.24774811400003],[-33.48619544199988,67.23476797100001],[-33.55077063699994,67.23476797100001],[-33.565581834999904,67.237494208],[-33.57510331899991,67.24371979400014],[-33.58283443899992,67.25055573100015],[-33.59203040299988,67.25527578300007],[-33.60065670499989,67.255601304],[-33.60960852799991,67.25307851800007],[-33.66808020699989,67.22321198100008],[-33.67052161399991,67.21771881700006],[-33.65392005099997,67.21133047100011],[-33.59137936099992,67.22113678600006],[-33.57241777299993,67.21869538000014],[-33.51626542899993,67.20062897300004],[-33.53087317599994,67.17788320500007],[-33.54698645699992,67.16681549700006],[-33.547596808999884,67.15888092700008],[-33.51626542899993,67.1454125020001],[-33.53783118399994,67.13092682500015],[-33.54674231699997,67.12225983300006],[-33.55101477799988,67.111273505],[-33.546131964999915,67.103949286],[-33.536284959999904,67.09609609600001],[-33.53026282499988,67.08734772300012],[-33.53742428299992,67.07770416900014],[-33.54820716099994,67.07819245000015],[-33.59203040299988,67.09760163000006],[-33.60700436099992,67.0991071640001],[-33.65343176999988,67.09760163000006],[-33.64720618399991,67.09760163000006],[-33.66120357999998,67.09560781500012],[-33.67442786399991,67.08982982000005],[-33.684315558999934,67.08026764500006],[-33.68822180899991,67.06683991100009],[-33.69493567599997,67.0572777360001],[-33.71080481699991,67.05215078300007],[-33.81680253799988,67.04071686400012],[-33.8556208979999,67.02977122600005],[-33.87999426999994,67.01504140800007],[-33.83897864499994,67.00958893400004],[-33.798898891999926,67.02049388200003],[-33.76158606699994,67.025295315],[-33.72915605399996,67.00141022300012],[-33.73412024599992,66.99909088700015],[-33.72915605399996,66.994574286],[-33.750884568999936,66.98834870000006],[-33.97565670499992,66.994574286],[-33.95836341099991,66.98566315300015],[-33.893666144999884,66.96784088700008],[-33.88597571499986,66.97113678600012],[-33.86546790299991,66.95978424700013],[-33.85887610599994,66.953558661],[-33.88760331899988,66.94586823100018],[-33.916411912999905,66.94977448100015],[-33.94562740799995,66.95734284100001],[-33.97565670499992,66.960394598],[-33.99913489499997,66.95449453300007],[-33.99400794199997,66.94432200700014],[-33.97297115799992,66.93390534100014],[-33.94831295499992,66.92694733300004],[-33.95579993399991,66.91754791900003],[-33.98241126199994,66.89960358300009],[-33.99063066299993,66.891302802],[-34.01569576699992,66.85342031500006],[-34.01939856699988,66.83999258000007],[-34.01512610599988,66.8268496770001],[-34.00352942599994,66.80955638200011],[-33.99543209499993,66.79328034100008],[-33.98932857999995,66.78742096600014],[-33.97565670499992,66.78229401200004],[-33.961659308999856,66.78180573100002],[-33.94741777299993,66.78314850500011],[-33.937001105999855,66.78066640800002],[-33.93464107999989,66.7686221370001],[-33.948068813999896,66.752142645],[-33.971424933999884,66.74286530200006],[-33.988392706999946,66.746527411],[-33.98241126199994,66.7686221370001],[-34.025502081999974,66.77777741100009],[-34.0370173819999,66.78229401200004],[-34.048939581999946,66.79189687700001],[-34.05842037699995,66.80194733300009],[-34.06916256399995,66.80898672100015],[-34.08543860599991,66.80955638200011],[-34.079579230999855,66.79734935100005],[-34.05724036399994,66.76178620000016],[-34.047596808999856,66.754339911],[-34.04596920499992,66.75116608300011],[-34.05028235599994,66.74510325700014],[-34.05850175699993,66.741359768],[-34.06834876199986,66.74506256700015],[-34.08145097599992,66.75551992400013],[-34.08934485599991,66.75934479400004],[-34.09911048099994,66.76178620000016],[-34.08824622299994,66.72125885600015],[-34.11750240799998,66.709458726],[-34.16738847599992,66.71401601800012],[-34.1537166009999,66.700384833],[-34.158558722999885,66.6986758480001],[-34.162587042999945,66.6952171900001],[-34.16738847599992,66.69354889500006],[-34.148426886999914,66.67999909100011],[-34.15070553299989,66.67157623900005],[-34.18163001199994,66.65875885600012],[-34.19570878799988,66.64996979400014],[-34.21007239499994,66.638128973],[-34.21873938699986,66.62661367400015],[-34.21580969999994,66.61839427300005],[-34.25645911399991,66.58478424700003],[-34.270375128999916,66.57684967700008],[-34.29198157499991,66.57306549700014],[-34.30182857999992,66.579779364],[-34.30028235599988,66.592718817],[-34.277414516999954,66.62099844000006],[-34.26740475199989,66.65009186400012],[-34.26012122299996,66.66250234600014],[-34.25963294199988,66.67332591400005],[-34.27131100199989,66.682562567],[-34.28872636599996,66.68423086100002],[-34.30516516799986,66.67243073100015],[-34.298817511999914,66.656683661],[-34.30695553299992,66.64362213700012],[-34.35619055899994,66.60439687700001],[-34.3723852199999,66.59699127800012],[-34.38573157499991,66.61676666900003],[-34.397328253999916,66.62954336100006],[-34.40444902299987,66.64516836100016],[-34.38980058499996,66.6761742210001],[-34.39061438699988,66.69179922100007],[-34.397328253999916,66.70742422100015],[-34.40758216099994,66.72085195500013],[-34.417469855999855,66.74994538000011],[-34.43394934799994,66.73688385600003],[-34.44151770699989,66.70892975500003],[-34.43150794199991,66.69354889500006],[-34.432850714999915,66.68793366100005],[-34.47590084499993,66.6553408870001],[-34.491078253999916,66.64996979400014],[-34.51695716099994,66.64533112200003],[-34.53050696499991,66.63825104400014],[-34.492258266999954,66.63788483300006],[-34.475738084999875,66.63226959800015],[-34.46157792899996,66.61839427300005],[-34.47590084499993,66.60944245000002],[-34.50739498599995,66.60374583500005],[-34.52367102799988,66.59796784100008],[-34.49974524599992,66.57819245000015],[-34.43431555899985,66.56329987200012],[-34.40758216099994,66.54271067900008],[-34.449940558999856,66.52374909100014],[-34.46157792899996,66.51536692900002],[-34.473459438999896,66.50897858300009],[-34.51903235599985,66.51243724199998],[-34.53795325399997,66.501125393],[-34.54360917899987,66.4847679710001],[-34.54771887899991,66.46491120000017],[-34.557118292999945,66.44944896000005],[-34.578928188999896,66.44647858300014],[-34.58275305899991,66.44106679900001],[-34.59992428299992,66.439398505],[-34.64037024599989,66.44025299700009],[-34.659087693999936,66.438462632],[-34.673451300999915,66.43378327000009],[-34.7024633449999,66.41917552300008],[-34.7024633449999,66.41233958500005],[-34.68932044199994,66.41233958500005],[-34.68000240799989,66.4168968770001],[-34.671498175999965,66.42259349199999],[-34.66087805899994,66.42601146],[-34.650054490999935,66.425523179],[-34.63194739499991,66.42047760600015],[-34.623605923999946,66.41917552300008],[-34.623199022999955,66.41225820500007],[-34.63133704299986,66.39667389500006],[-34.64329993399991,66.38043854400003],[-34.653960740999935,66.37140534100003],[-34.67023678299995,66.37140534100003],[-34.68545488199993,66.37689850500006],[-34.71231035099993,66.40241120000005],[-34.72419186099997,66.40713125200014],[-34.73289954299986,66.4003360050001],[-34.73566646999993,66.388373114],[-34.72972571499989,66.37763092700008],[-34.72972571499989,66.35712311400012],[-34.71963456899993,66.35370514500003],[-34.71654212099995,66.35053131700013],[-34.71544348899991,66.34406159100014],[-34.76378333199992,66.34271881700006],[-34.773833787999905,66.3347028670001],[-34.78380286399988,66.32461172100015],[-34.797352667999945,66.31679922100015],[-34.81582597599987,66.31606679900013],[-34.833973761999886,66.32111237200014],[-34.844349738999966,66.32733795800011],[-34.83926347599996,66.33038971600011],[-34.83104407499985,66.33283112200014],[-34.82579505099997,66.33877187700007],[-34.82477779899989,66.34625885600002],[-34.828968878999916,66.35370514500003],[-34.83910071499989,66.35822174700017],[-34.84947669199988,66.35651276200014],[-34.859934048999946,66.352484442],[-34.870025193999936,66.35028717700003],[-34.93517005099994,66.34406159100014],[-34.92894446499989,66.34406159100014],[-34.93211829299986,66.34369538000011],[-34.942005988999966,66.34406159100014],[-34.93455969999991,66.33441803600009],[-34.91527258999985,66.325628973],[-34.90721594999991,66.31679922100015],[-34.926380988999874,66.30145905200003],[-34.947987433999884,66.29189687700001],[-34.97325598899994,66.28953685100008],[-35.12287350199992,66.33584219000014],[-35.13377844999988,66.34406159100014],[-35.120716925999915,66.35667552300013],[-35.11237545499995,66.373236395],[-35.107818162999905,66.39142487200009],[-35.10651607999989,66.40892161700005],[-35.11424719999991,66.42145416900003],[-35.132150844999956,66.41657135600015],[-35.164865688999896,66.39931875200016],[-35.16755123599998,66.39590078300013],[-35.1738988919999,66.38104889500008],[-35.17882239499996,66.37763092700008],[-35.19863847599987,66.37767161700008],[-35.20763098899991,66.37592194200006],[-35.21637936099998,66.37140534100003],[-35.224273240999935,66.35789622600005],[-35.222279425999915,66.34389883000007],[-35.22248287699995,66.33152903900005],[-35.236805792999945,66.32363515800007],[-35.22826087099992,66.31256745000003],[-35.216786261999886,66.30988190300015],[-35.20323645699991,66.31049225500011],[-35.188384568999936,66.30931224199999],[-35.13377844999988,66.28945547100008],[-35.057728644999884,66.27309804900007],[-35.03819739499991,66.262152411],[-35.067209438999896,66.24306875200001],[-35.11888587099995,66.23590729400017],[-35.21637936099998,66.24103424700009],[-35.34878495999993,66.28261953300007],[-35.38703365799998,66.28945547100008],[-35.4193416009999,66.288519598],[-35.43504798099988,66.29010651200004],[-35.44908606699991,66.29564036700005],[-35.44005286399991,66.30353424700003],[-35.43455969999987,66.31517161700013],[-35.43541419199988,66.32583242400007],[-35.44538326699998,66.33038971600011],[-35.46031653599991,66.32758209800006],[-35.47638912699989,66.32054271],[-35.50430253799993,66.30312734600004],[-35.50177975199992,66.29938385600008],[-35.496896938999946,66.28945547100008],[-35.589344855999855,66.28945547100008],[-35.60716712099995,66.29694245000015],[-35.62913977799985,66.32977936400005],[-35.64806067599997,66.33722565300003],[-35.66641191299993,66.34198639500012],[-35.685536261999914,66.35321686400012],[-35.73375403599993,66.38934967700006],[-35.753081834999875,66.399562893],[-35.77464758999989,66.407416083],[-35.79857337099995,66.41233958500005],[-35.79857337099995,66.41917552300008],[-35.78209387899994,66.42340729400009],[-35.763661261999914,66.42523834800006],[-35.747303839999915,66.42926666900003],[-35.73713131399995,66.44025299700009],[-35.815581834999904,66.43659088700004],[-35.832630988999966,66.44350820500013],[-35.851633266999954,66.43744538000014],[-35.88109290299985,66.41917552300008],[-35.873646613999966,66.41917552300008],[-35.869984503999916,66.41307200700008],[-35.85374915299988,66.40387604400011],[-35.83291581899991,66.39549388200005],[-35.815581834999904,66.39183177299999],[-35.80345618399991,66.38760000200006],[-35.78034420499995,66.36884186400003],[-35.76203365799989,66.36225006700012],[-35.7364802729999,66.34715403900013],[-35.72647050699993,66.34495677300005],[-35.70567786399994,66.34589264500012],[-35.696156378999945,66.34406159100014],[-35.685536261999914,66.33820221600011],[-35.67821204299989,66.33120351800012],[-35.6764216789999,66.32379791900003],[-35.682484503999916,66.31679922100015],[-35.675038214999915,66.30931224199999],[-35.68993079299989,66.29706452000012],[-35.7071833979999,66.28754303600012],[-35.74331620999993,66.27521393400018],[-35.74331620999993,66.26837799700014],[-35.67613684799997,66.27631256700012],[-35.655181443999936,66.27521393400018],[-35.64110266799988,66.27090078300007],[-35.61461341099991,66.25893789300014],[-35.59996497299991,66.25470612200003],[-35.563303188999974,66.25193919500008],[-35.55150305899991,66.24848053600006],[-35.55150305899991,66.24103424700009],[-35.58861243399994,66.232367255],[-35.669911261999914,66.22467682500017],[-35.70230058499993,66.2069359400001],[-35.63719641799989,66.21377187700001],[-35.624623175999886,66.209418036],[-35.616200324999845,66.19977448100003],[-35.60973059799994,66.19013092700008],[-35.59471594999991,66.1808942730001],[-35.58470618399994,66.16937897300005],[-35.57628333199989,66.15582916900011],[-35.57262122299994,66.14484284100014],[-35.57530676999991,66.13287995000003],[-35.586781378999945,66.1207949890001],[-35.58629309799997,66.1113141950001],[-35.609364386999914,66.11107005400008],[-35.63219153599994,66.11579010600018],[-35.64565995999993,66.12665436400006],[-35.64085852799994,66.14484284100014],[-35.64858964799995,66.14883047100012],[-35.655181443999936,66.15350983300014],[-35.66820227799991,66.16596100500006],[-35.66982988199993,66.16974518400009],[-35.67349199099988,66.18235911700008],[-35.675038214999915,66.18577708500008],[-35.69440670499995,66.19501373900013],[-35.71959387899991,66.19965241100006],[-35.745025193999936,66.19920482000006],[-35.7650447259999,66.19330475500014],[-35.750152147999955,66.18329498900006],[-35.71784420499992,66.17963288],[-35.70230058499993,66.1727562520001],[-35.698068813999896,66.16657135600002],[-35.68871008999986,66.138617255],[-35.710601365999906,66.12303294500002],[-35.74742591099988,66.12295156500004],[-35.8189998039999,66.13117096600003],[-35.848052537999905,66.1432966170001],[-35.88581295499995,66.14179108300006],[-35.92100989499991,66.12811920800011],[-35.94249426999994,66.10390859600012],[-35.91588294199988,66.10602448100002],[-35.8666072259999,66.11542389500006],[-35.83950761599996,66.11749909100008],[-35.73204505099994,66.09658437700001],[-35.71662350199992,66.0902367210001],[-35.75796464799993,66.080267645],[-35.805409308999856,66.07591380400002],[-35.88255774599992,66.09007396000011],[-35.9084366529999,66.0902367210001],[-35.9084366529999,66.08344147300006],[-35.89867102799988,66.08331940300009],[-35.89216061099998,66.08177317900005],[-35.88109290299985,66.07591380400002],[-35.917307094999956,66.07754140800004],[-35.93297278599994,66.07412344000004],[-35.94249426999994,66.06289297100001],[-35.92442786399991,66.06268952000006],[-35.89159094999991,66.05646393400009],[-35.873646613999966,66.0560977230001],[-35.873646613999966,66.04926178600006],[-35.88658606699997,66.05003489799999],[-35.899281378999945,66.04922109600007],[-35.91128495999996,66.04669830900015],[-35.92202714799987,66.04242584800015],[-35.92202714799987,66.03558991100012],[-35.91454016799992,66.032660223],[-35.901519334999904,66.02505117400007],[-35.89415442599991,66.021918036],[-35.89415442599991,66.0150820980001],[-35.98863684799994,65.984808661],[-36.045562303999866,65.97418854400014],[-36.045562303999866,65.96670156500006],[-36.04124915299988,65.96552155200006],[-36.03189042899993,65.96051666900011],[-36.07380123599995,65.935492255],[-36.089670376999976,65.93256256700009],[-36.10269120999996,65.93480052300005],[-36.13121497299994,65.94684479400017],[-36.15294348899994,65.943264065],[-36.17552649599992,65.93671295800011],[-36.19896399599989,65.93341705900018],[-36.22378495999993,65.939398505],[-36.20523027299993,65.961859442],[-36.19758053299989,65.974798895],[-36.20262610599994,65.980943101],[-36.239857550999915,65.95941803600006],[-36.261789516999926,65.95172760600003],[-36.27155514199998,65.963568427],[-36.26561438699985,65.97508372600012],[-36.25495357999992,65.98969147300006],[-36.24986731699991,66.00234609600012],[-36.260975714999915,66.00763580900009],[-36.271717902999846,66.00511302299999],[-36.28929602799988,65.99241771000011],[-36.298817511999886,65.9877790390001],[-36.31004798099988,65.98627350500006],[-36.34658769399991,65.9877790390001],[-36.34658769399991,65.980943101],[-36.338978644999884,65.98021067900005],[-36.31993567599988,65.97418854400014],[-36.3302302729999,65.96157461100016],[-36.32689368399988,65.94061920800011],[-36.333607550999915,65.92572663000006],[-36.328928188999896,65.919134833],[-36.32616126199994,65.9120954450001],[-36.363921678999894,65.9160016950001],[-36.38068600199991,65.92885976800012],[-36.38540605399993,65.95221588700004],[-36.388783331999946,66.01552969000006],[-36.38414466099993,66.03998444200012],[-36.36929277299987,66.06037018400008],[-36.3397517569999,66.07591380400002],[-36.35850989499994,66.09137604400003],[-36.389027472999885,66.08966705900012],[-36.44961503799988,66.07591380400002],[-36.519520636999886,66.08437734600012],[-36.55361894399991,66.08380768400018],[-36.5799861319999,66.07037995000009],[-36.56761633999986,66.06195709800012],[-36.54987545499998,66.055609442],[-36.530140753999945,66.05125560100011],[-36.511708136999914,66.04926178600006],[-36.502674933999884,66.05068594000012],[-36.49242102799988,66.05341217700011],[-36.48306230399993,66.05414459800012],[-36.47695878799993,66.04926178600006],[-36.47752844999991,66.04401276200018],[-36.48216712099995,66.03998444200012],[-36.48753821499989,66.03636302300005],[-36.5216365229999,65.99091217700007],[-36.536122199999845,65.98525625200006],[-36.681752081999946,65.96051666900011],[-36.74034583199988,65.935980536],[-36.76158606699988,65.93256256700009],[-36.90900631399995,65.93256256700009],[-36.89659583199991,65.9194196640001],[-36.87657630099997,65.91766998900012],[-36.85212154899992,65.92011139500006],[-36.82640540299988,65.91958242400007],[-36.84984290299985,65.88646067900005],[-36.860503709999875,65.87791575700011],[-36.880848761999886,65.86904531500006],[-36.990142381999874,65.84149811400006],[-37.01378333199992,65.839585679],[-37.03184973899994,65.84320709800006],[-37.04287675699987,65.85565827000006],[-37.02301998599998,65.87250397300006],[-37.038685675999936,65.88475169500003],[-37.03197180899991,65.88422272300006],[-37.02871660099996,65.88629791900009],[-37.03099524599992,65.89435455900012],[-37.04084225199995,65.90159739800005],[-37.05980383999986,65.9120954450001],[-37.06143144399988,65.91571686400009],[-37.06480872299991,65.92877838700014],[-37.06663977799988,65.93256256700009],[-37.07323157499985,65.93537018400004],[-37.08999589799987,65.93895091400009],[-37.09703528599994,65.94310130400014],[-37.09703528599994,65.95962148600002],[-37.08088131399998,65.98021067900005],[-37.06163489499994,65.99941640800002],[-37.052357550999886,66.01137929900013],[-37.04914303299992,66.02142975500011],[-37.0350642569999,66.04100169499999],[-37.03184973899994,66.05267975500009],[-37.03770911399988,66.06069570500004],[-37.05138098899991,66.06460195500001],[-37.067250128999945,66.06509023600002],[-37.07970130099994,66.06289297100001],[-37.09797115799992,66.05023834800015],[-37.104156053999894,66.03261953300002],[-37.09984290299991,66.01292552299999],[-37.08649654899989,65.99404531500015],[-37.104807094999956,65.98908112200009],[-37.121205206999946,65.997219143],[-37.13833574099988,66.00901927299999],[-37.15880286399993,66.0150820980001],[-37.16795813699994,66.008978583],[-37.15721594999991,65.99469635600009],[-37.12743079299991,65.96670156500006],[-37.14411373599995,65.95551178600006],[-37.162220831999946,65.94684479400017],[-37.14757239499994,65.935980536],[-37.130848761999914,65.91966380400005],[-37.12291419199994,65.90493398600007],[-37.13459225199995,65.89838288],[-37.23729407499988,65.905218817],[-37.23729407499988,65.89838288],[-37.12572180899991,65.86859772300008],[-37.08649654899989,65.86432526200015],[-37.09829667899996,65.83771393400004],[-37.11436926999994,65.81688060100005],[-37.13719641799986,65.80426666900017],[-37.16966712099995,65.80223216400005],[-37.194203253999945,65.81000397300012],[-37.218739386999886,65.82257721600003],[-37.24437415299985,65.83197663000006],[-37.27208411399994,65.83014557500017],[-37.27208411399994,65.822699286],[-37.210601365999956,65.80223216400005],[-37.1875707669999,65.789496161],[-37.175770636999914,65.78449127800006],[-37.162220831999946,65.78237539300011],[-37.18455969999988,65.77407461100016],[-37.21011308499987,65.77529531500006],[-37.463856574999845,65.856878973],[-37.55260169199991,65.905218817],[-37.57445227799985,65.91258372600002],[-37.64195716099994,65.92572663000006],[-37.67853756399995,65.94570547100011],[-37.68980872299996,65.94684479400017],[-37.69310462099989,65.94257233300006],[-37.70006262899989,65.92511627800009],[-37.70409094999985,65.91958242400007],[-37.72321529899992,65.91278717700006],[-37.76585852799988,65.91071198100003],[-37.786000128999916,65.905218817],[-37.80296790299988,65.89337799700014],[-37.81480872299994,65.88304271000013],[-37.829253709999904,65.87872955900004],[-37.85423743399991,65.88475169500003],[-37.85423743399991,65.89158763200005],[-37.83812415299994,65.89594147300015],[-37.82555091099993,65.90827057500009],[-37.81550045499998,65.92251211100002],[-37.80650794199994,65.93256256700009],[-37.79503333199991,65.9385440120001],[-37.77110755099994,65.94660065300003],[-37.75869706899991,65.95302969000012],[-37.75133216099994,65.95994700700012],[-37.740223761999886,65.97500234600015],[-37.73078365799998,65.980943101],[-37.77843176999994,65.991603908],[-37.792958136999886,66.00079987200009],[-37.778553839999915,66.0150820980001],[-37.78941809799991,66.01703522300012],[-37.80329342399989,66.02179596600003],[-37.812570766999954,66.02912018400004],[-37.809885219999956,66.03900788000013],[-37.79792232999995,66.048732815],[-37.75869706899991,66.06663646000005],[-37.73412024599992,66.07391998900006],[-37.64883378799993,66.07037995000009],[-37.662464972999885,66.07591380400002],[-37.63581295499995,66.10455963700015],[-37.62193762899997,66.113959052],[-37.600697394999884,66.11749909100008],[-37.55630449099996,66.1113141950001],[-37.54718990799995,66.11383698100003],[-37.54702714799989,66.11969635600015],[-37.55260169199991,66.13117096600003],[-37.55386308499993,66.1359723980001],[-37.55724036399994,66.14264557500015],[-37.56012936099998,66.15045807500015],[-37.56004798099988,66.15851471600008],[-37.55500240799995,66.16779205900004],[-37.54767818899995,66.17267487200012],[-37.53880774599991,66.17658112200012],[-37.49388587099992,66.20685455900009],[-37.4727270169999,66.21698639500006],[-37.43968665299985,66.2254906270001],[-37.31135006399995,66.29755280200011],[-37.29137122299997,66.299750067],[-37.251576300999886,66.29564036700005],[-37.23078365799989,66.29734935100004],[-37.20995032499991,66.301947333],[-37.16966712099995,66.31679922100015],[-37.16966712099995,66.32363515800007],[-37.19334876199986,66.34048086100007],[-37.215402798999946,66.34617747600005],[-37.39183508999991,66.32363515800007],[-37.419300910999965,66.32778554900001],[-37.457020636999935,66.34609609600007],[-37.48468990799992,66.35028717700003],[-37.5099177729999,66.34552643400009],[-37.55223548099991,66.32599518400004],[-37.576283331999946,66.323919989],[-37.61636308499996,66.32880280200008],[-37.695423956999946,66.35187409100006],[-37.75658118399991,66.359808661],[-37.803822394999884,66.37567780200011],[-37.82013912699989,66.38507721600013],[-37.83214270699992,66.39813873900012],[-37.83812415299994,66.4112816430001],[-37.847482876999976,66.44025299700009],[-37.85236568899995,66.44472890800013],[-37.85960852799988,66.440578518],[-37.86416581899991,66.43097565300002],[-37.867909308999856,66.41917552300008],[-37.86778723899988,66.41185130400005],[-37.86392167899987,66.387884833],[-37.861683722999885,66.38507721600013],[-37.87425696499989,66.37767161700008],[-37.897572394999884,66.37287018400018],[-37.923410610999895,66.37225983300011],[-37.9368383449999,66.37763092700008],[-37.94310462099994,66.38080475500013],[-37.94953365799995,66.38304271000011],[-37.95645097599996,66.38442617400001],[-37.95677649599989,66.38715241100007],[-37.95734615799995,66.39183177299999],[-37.99974524599995,66.38792552299999],[-38.09850012899989,66.39447663000009],[-38.13198808499993,66.38129303600012],[-38.14049231699997,66.36920807500003],[-38.142974412999905,66.35911692900005],[-38.14167232999989,66.34064362200003],[-37.75869706899991,66.29564036700005],[-37.74120032499988,66.28974030200011],[-37.707590298999946,66.273871161],[-37.68980872299996,66.26837799700014],[-37.68980872299996,66.262152411],[-37.744699673999946,66.22858307500017],[-37.76549231699994,66.221177476],[-37.7877498039999,66.22011953300013],[-37.80650794199994,66.225043036],[-37.813059048999946,66.23309967700011],[-37.7989802729999,66.24103424700009],[-37.7989802729999,66.24848053600006],[-37.902699347999885,66.24103424700009],[-37.92808997299991,66.24433014500012],[-37.95189368399991,66.2513695330001],[-37.97496497299997,66.25324127800015],[-37.99828040299988,66.24103424700009],[-37.94151770699992,66.22606028900005],[-37.90721594999985,66.20685455900009],[-37.87083899599986,66.20758698100003],[-37.85423743399991,66.19944896000011],[-37.881581183999884,66.18577708500008],[-37.864125128999916,66.18301015800002],[-37.86392167899987,66.17536041900009],[-37.87437903599994,66.166205145],[-37.88841712099989,66.15851471600008],[-37.898508266999954,66.15615469000012],[-37.92003333199989,66.15517812700016],[-37.93000240799998,66.1522891300001],[-37.93761145699992,66.14716217700011],[-37.95360266799992,66.12775299700012],[-37.967925584999904,66.11798737200014],[-37.985991990999906,66.11041901200011],[-38.00499426999991,66.10561758000013],[-38.033111131999895,66.10293203300012],[-38.05304928299989,66.09861888200005],[-38.06346594999988,66.09764232],[-38.072987433999884,66.10073476800007],[-38.07778886599988,66.10736725500011],[-38.081369594999956,66.11408112200017],[-38.08702551999994,66.11749909100008],[-38.10667883999989,66.11448802299999],[-38.11192786399988,66.10488515800009],[-38.10464433499996,66.09300364800005],[-38.08702551999994,66.08344147300006],[-38.06798255099994,66.08047109600014],[-38.01634680899988,66.08209870000017],[-37.97984778599994,66.0919457050001],[-37.967111782999886,66.08746979400003],[-37.95962480399993,66.07587311400003],[-37.95734615799995,66.059515692],[-37.96776282499994,66.05125560100011],[-37.98863684799991,66.04584381700006],[-38.00405839799993,66.03969961100006],[-37.99828040299988,66.02944570500016],[-37.996205206999946,66.01097239800013],[-37.98997962099988,65.99135976800005],[-37.986398891999926,65.97077057500003],[-37.98521887899989,65.94989655200004],[-37.998931443999936,65.93842194200012],[-38.02977454299989,65.92747630400005],[-38.06200110599994,65.92011139500006],[-38.08018958199992,65.91958242400007],[-38.074208136999914,65.93105703300004],[-38.069203253999945,65.94676341399999],[-38.07054602799985,65.96067942900008],[-38.083607550999915,65.96670156500006],[-38.0919490229999,65.96344635600003],[-38.114816860999895,65.94965241100012],[-38.12865149599992,65.94684479400017],[-38.12865149599992,65.95302969000012],[-38.12865149599992,65.96051666900011],[-38.1282445949999,65.9645042990001],[-38.1321508449999,65.96633535400015],[-38.149159308999856,65.96474844000012],[-38.155913865999906,65.96051666900011],[-38.168568488999966,65.97113678600006],[-38.184396938999896,65.97223541900009],[-38.19277910099987,65.964016018],[-38.18321692599997,65.94684479400017],[-38.17398027299992,65.94277578300002],[-38.147287563999896,65.93488190300003],[-38.14167232999989,65.92914459800006],[-38.14370683499993,65.92157623900012],[-38.14932206899991,65.91380442900011],[-38.15729732999998,65.90770091400013],[-38.166493292999945,65.905218817],[-38.269642706999974,65.90517812700001],[-38.317128058999884,65.91478099199999],[-38.355132615999906,65.939398505],[-38.34707597599996,65.946722723],[-38.34276282499985,65.9584414730001],[-38.345366990999935,65.96938711100016],[-38.369211391999926,65.97939687700013],[-38.385121222999935,66.0024274760001],[-38.39240475199995,66.00763580900009],[-38.40330969999985,66.00999583500005],[-38.42882239499994,66.02008698100003],[-38.44395911399994,66.021918036],[-38.4674373039999,66.02118561400006],[-38.47679602799993,66.01943594000006],[-38.48485266799988,66.0150820980001],[-38.45445716099991,65.980943101],[-38.45075436099995,65.96670156500006],[-38.45335852799985,65.95058828300002],[-38.45856686099995,65.93756745000003],[-38.459828253999945,65.92548248900012],[-38.45075436099995,65.9120954450001],[-38.432443813999896,65.90216705900012],[-38.29234778599991,65.86196523600002],[-38.272613084999904,65.85065338700004],[-38.27501380099994,65.84686920800003],[-38.27940833199992,65.8369815120001],[-38.23717200399989,65.835638739],[-38.12144934799997,65.8158633480001],[-38.10610917899993,65.81073639500006],[-38.1009415359999,65.798570054],[-38.103505011999914,65.78408437700013],[-38.11123613199993,65.77179596600008],[-38.12482662699989,65.768744208],[-38.190093553999894,65.77488841400007],[-38.18419348899994,65.76642487200003],[-38.17003333199992,65.75519440300002],[-38.163400844999956,65.74823639500012],[-38.16661536399991,65.747951565],[-38.17320716099991,65.74835846600011],[-38.176380988999966,65.74823639500012],[-38.169178839999915,65.73810455900016],[-38.16519120999993,65.73566315300005],[-38.16563880099994,65.72964101800012],[-38.18321692599997,65.71344635600009],[-38.18512936099992,65.70905182500009],[-38.18447831899988,65.70262278899999],[-38.18154863199996,65.6948102890001],[-38.176380988999966,65.6861839860001],[-38.19562740799989,65.68707916900009],[-38.20986894399991,65.69318268400018],[-38.22297115799998,65.70062897300015],[-38.23851477799988,65.706000067],[-38.25894120999996,65.7051455750001],[-38.24657141799992,65.69350820500001],[-38.22321529899991,65.68060944200009],[-38.210560675999936,65.67593008000007],[-38.22057044199993,65.64642975499999],[-38.24583899599989,65.63727448100012],[-38.279530402999875,65.64134349199999],[-38.31419837099986,65.65135325700005],[-38.31651770699991,65.65680573100009],[-38.32860266799992,65.65912506700006],[-38.361398891999926,65.658840236],[-38.37083899599986,65.65737539300007],[-38.38609778599994,65.6524925800001],[-38.39549719999985,65.65135325700005],[-38.40074622299994,65.65350983300006],[-38.413319464999915,65.66290924700009],[-38.41942298099991,65.665025132],[-38.430816209999875,65.65786367400015],[-38.439442511999886,65.62075429900013],[-38.45075436099995,65.60419342700008],[-38.461659308999934,65.59861888200005],[-38.47508704299992,65.59503815300009],[-38.48851477799991,65.594142971],[-38.49913489499997,65.5967471370001],[-38.50792395699992,65.60398997600011],[-38.50914466099994,65.61090729400003],[-38.50698808499993,65.61847565300013],[-38.505360480999904,65.62783437700001],[-38.49791419199994,65.65241120000012],[-38.479237433999884,65.66290924700009],[-38.45482337099992,65.66876862200003],[-38.43028723899991,65.67934804900007],[-38.453846808999856,65.68423086100013],[-38.494536912999926,65.67584870000009],[-38.512196417999945,65.67934804900007],[-38.51659094999994,65.68488190300009],[-38.52086341099994,65.70014069200006],[-38.52586829299989,65.706000067],[-38.53831946499989,65.710394598],[-38.5431208979999,65.70697662999999],[-38.541005011999886,65.69989655200011],[-38.53270423099991,65.69301992400001],[-38.544992641999954,65.67983633000007],[-38.55003821499989,65.67251211100016],[-38.55382239499991,65.665025132],[-38.55247962099991,65.65916575700005],[-38.54800370999996,65.65176015800016],[-38.54450436099995,65.644232489],[-38.54637610599994,65.63837311400006],[-38.56029212099992,65.63495514500015],[-38.577259894999884,65.63886139500015],[-38.592600063999924,65.64573802300005],[-38.601633266999954,65.65135325700005],[-38.5965876939999,65.65802643400012],[-38.58731035099995,65.67934804900007],[-38.60558020699992,65.68349844000004],[-38.62950598899991,65.68455638200008],[-38.64439856699994,65.68134186400012],[-38.635731574999845,65.67251211100016],[-38.635731574999845,65.665025132],[-38.68854732999992,65.66250234600007],[-38.703968878999945,65.665025132],[-38.72150631399989,65.67523834800012],[-38.736317511999886,65.68716054900007],[-38.75230872299997,65.69330475500006],[-38.77285722599993,65.6861839860001],[-38.782053188999896,65.66421133000007],[-38.75328528599993,65.64716217700011],[-38.7103572259999,65.63593170800011],[-38.67666581899988,65.63153717700014],[-38.667958136999886,65.6334496110001],[-38.660511847999906,65.63703034100017],[-38.65347245999993,65.63886139500015],[-38.64085852799988,65.6325137390001],[-38.63023841099994,65.63129303599999],[-38.62828528599988,65.62783437700001],[-38.62901770699991,65.61351146000011],[-38.62828528599988,65.61041901200004],[-38.60732988199993,65.59064362200012],[-38.600331183999856,65.57786692900005],[-38.60838782499987,65.56940338700012],[-38.61888587099986,65.5716820330001],[-38.65416419199988,65.58588288000003],[-38.6692602199999,65.58999258000016],[-38.75926673099988,65.58999258000016],[-38.779896613999874,65.592027085],[-38.81208248599995,65.612738348],[-38.83092200399988,65.61790599200002],[-38.84276282499985,65.61640045800014],[-38.855051235999895,65.61237213700018],[-38.86461341099987,65.60687897300015],[-38.88145911399988,65.57880280200006],[-38.91152910099993,65.5685895850001],[-38.94566809799991,65.57001373900009],[-38.9708552729999,65.58315664300012],[-38.962961391999926,65.584214585],[-38.9591365229999,65.58600495000017],[-38.95628821499989,65.588080145],[-38.95103919199988,65.58999258000016],[-38.98412024599991,65.58722565300009],[-39.01549231699997,65.57982005400011],[-39.074533657999886,65.55516185100011],[-39.07017981699991,65.57648346600007],[-39.06712805899991,65.58315664300012],[-39.08299719999985,65.595892645],[-39.10846920499994,65.63654205900018],[-39.12401282499985,65.64907461100007],[-39.14159094999988,65.667141018],[-39.14964758999991,65.67251211100016],[-39.16112219999988,65.67218659100003],[-39.16978919199997,65.66811758000007],[-39.17951412699992,65.66697825700014],[-39.23387610599994,65.69574616100009],[-39.27757727799991,65.70221588700018],[-39.31627356699997,65.71360911700003],[-39.34142005099994,65.74823639500012],[-39.36644446499986,65.72174713700015],[-39.35741126199994,65.7108421900001],[-39.3299861319999,65.704779364],[-39.29987545499995,65.69301992400001],[-39.29108639199998,65.68512604400006],[-39.27257239499997,65.658840236],[-39.24885006399995,65.64183177300005],[-39.24185136599988,65.63202545800011],[-39.245269334999904,65.61790599200002],[-39.228586391999954,65.6191266950001],[-39.21320553299992,65.61595286700005],[-39.20181230399996,65.60761139500009],[-39.19741777299987,65.59332916900009],[-39.20567786399994,65.582464911],[-39.2245173819999,65.57998281500005],[-39.25951087099989,65.58315664300012],[-39.27257239499997,65.588080145],[-39.29336503799996,65.60822174700003],[-39.30736243399991,65.61041901200004],[-39.31822669199991,65.60272858300002],[-39.31981360599994,65.58950429900007],[-39.31517493399991,65.57477448100016],[-39.30736243399991,65.56264883000007],[-39.31411699099996,65.55255768400012],[-39.32347571499989,65.54547760600015],[-39.33495032499994,65.54511139500015],[-39.348255988999966,65.55516185100011],[-39.3541560539999,65.56753164300015],[-39.35179602799994,65.57868073100018],[-39.34601803299998,65.590318101],[-39.34142005099994,65.60419342700008],[-39.33946692599988,65.61798737200017],[-39.33991451699998,65.62588125200016],[-39.344349738999966,65.62783437700001],[-39.3544815749999,65.62409088700015],[-39.3541560539999,65.62152741100006],[-39.36192786399991,65.60419342700008],[-39.367298956999946,65.60040924700014],[-39.389881964999915,65.58999258000016],[-39.379872199999845,65.56708405200006],[-39.385161912999905,65.55194733300006],[-39.40119381399989,65.54368724199999],[-39.42341061099995,65.541489976],[-39.448150193999936,65.54694245000003],[-39.46816972599989,65.55931224200003],[-39.50527910099993,65.58999258000016],[-39.49864661399993,65.59389883000016],[-39.4916072259999,65.5967471370001],[-39.4916072259999,65.60419342700008],[-39.50914466099994,65.60541413],[-39.53197180899994,65.61025625200007],[-39.54759680899991,65.61977773600016],[-39.54344641799989,65.63495514500015],[-39.53270423099988,65.6432966170001],[-39.51333574099996,65.65273672100012],[-39.50527910099993,65.658840236],[-39.52489173099988,65.664984442],[-39.54491126199986,65.65843333500011],[-39.56407630099991,65.64874909100014],[-39.58104407499988,65.64520905200008],[-39.59996497299991,65.65302155200008],[-39.635650193999936,65.67902252800015],[-39.65611731699991,65.6861839860001],[-39.66836503799988,65.68475983300011],[-39.68663489499994,65.67999909100003],[-39.70368404899992,65.67300039300015],[-39.71202551999996,65.665025132],[-39.702748175999915,65.65521881700005],[-39.63560950399994,65.62409088700015],[-39.65807044199997,65.61774323100003],[-39.682850714999915,65.62592194200015],[-39.70807857999989,65.63849518400004],[-39.7318416009999,65.64520905200008],[-39.759388800999915,65.64057038000006],[-39.77647864499994,65.62881094000006],[-39.77464758999989,65.61505768400015],[-39.74547278599993,65.60419342700008],[-39.74547278599993,65.5967471370001],[-39.79320227799988,65.59772370000015],[-39.81582597599996,65.59406159100003],[-39.83486894399993,65.58315664300012],[-39.72935950399994,65.56537506700006],[-39.71580969999991,65.55560944200003],[-39.714466925999915,65.54425690300003],[-39.7318416009999,65.53534577],[-39.75108801999994,65.53607819200012],[-39.79039466099994,65.55125560100011],[-39.810658331999946,65.55516185100011],[-39.82225501199986,65.54840729400009],[-39.820708787999926,65.53314850500011],[-39.813221808999856,65.51707591400013],[-39.806996222999885,65.50800202000012],[-39.82843990799992,65.501654364],[-39.85138912699992,65.50128815300009],[-39.87450110599988,65.50592682500012],[-39.99254309799994,65.55516185100011],[-40.01797441299988,65.57269928600006],[-40.03026282499994,65.57929108300011],[-40.04718990799992,65.58315664300012],[-40.06737219999994,65.58173248900006],[-40.0860896479999,65.57501862200003],[-40.1024470689999,65.56533437700007],[-40.11538652299992,65.55516185100011],[-40.11538652299992,65.54897695500013],[-40.10480709499995,65.54279205900018],[-40.082875128999945,65.53335195500006],[-40.07445227799991,65.528509833],[-40.06533769399991,65.51972077000012],[-40.05907141799986,65.51178620000015],[-40.05223548099994,65.50543854400003],[-40.04092363199996,65.50116608300011],[-40.04092363199996,65.49494049700014],[-40.08145097599987,65.50088125200007],[-40.12677975199989,65.51292552299999],[-40.17186438699986,65.51927317900011],[-40.211659308999856,65.50800202000012],[-40.21849524599986,65.50800202000012],[-40.19127356699997,65.47943756700015],[-40.13304602799994,65.45962148600003],[-39.969105597999885,65.43699778900006],[-39.92564856699994,65.43939850500001],[-39.88463294199994,65.43659088700015],[-39.84170488199996,65.41864655200011],[-39.82331295499992,65.42649974199998],[-39.804351365999906,65.423041083],[-39.788726365999935,65.41217682500012],[-39.78026282499987,65.39813873900006],[-39.85960852799991,65.41034577000012],[-39.891346808999884,65.40615469],[-39.88267981699988,65.377630927],[-39.94200598899994,65.36839427300005],[-39.950998501999976,65.36058177300005],[-39.94172115799992,65.35407135600013],[-39.88267981699988,65.32982005400007],[-39.87149003799987,65.31793854400003],[-39.864857550999915,65.30426666900009],[-39.86815344999985,65.29291413000003],[-39.886382615999935,65.28827545800009],[-39.89216061099998,65.28583405200006],[-39.888295050999886,65.280422268],[-39.875884568999936,65.27155182500015],[-39.8644099599999,65.26650625200001],[-39.85252844999985,65.26337311400013],[-39.827463344999956,65.26097239800002],[-39.841420050999915,65.28807200700011],[-39.82115637899991,65.28766510600003],[-39.76598059799988,65.26776764500012],[-39.76598059799988,65.26097239800002],[-39.78648841099994,65.26097239800002],[-39.78648841099994,65.25413646],[-39.77749589799992,65.25389232000005],[-39.771392381999924,65.252386786],[-39.759144660999965,65.24730052300008],[-39.77586829299989,65.24225495000003],[-39.827463344999956,65.24115631700009],[-39.8575740229999,65.23578522300012],[-39.86815344999985,65.23558177299999],[-39.86900794199994,65.24115631700009],[-39.87913977799991,65.24494049700012],[-39.89122473899991,65.25128815300003],[-39.90416419199991,65.255804755],[-39.91681881399998,65.25413646],[-39.9271541009999,65.24477773600013],[-39.93057206899991,65.23273346600003],[-39.9271134109999,65.22138092700006],[-39.91681881399998,65.21381256700003],[-39.92393958199992,65.20612213700008],[-39.93309485599991,65.1983096370001],[-39.944447394999884,65.19293854400014],[-39.95840410099996,65.19269440300009],[-39.99998938699994,65.20014069200009],[-40.01162675699993,65.19769928600014],[-40.025298631999874,65.19277578300007],[-40.032093878999916,65.187974351],[-39.97057044199994,65.17918528900013],[-39.91681881399998,65.16535065300003],[-39.94249426999994,65.14891185100014],[-39.97158769399991,65.14581940300015],[-40.030100063999946,65.15176015800007],[-40.09117591099994,65.16632721600011],[-40.12287350199989,65.16620514500012],[-40.11538652299992,65.14492422100015],[-40.12291419199988,65.13743724199999],[-40.07371985599988,65.12909577000012],[-40.05553137899997,65.12262604400003],[-40.06761633999989,65.11009349200009],[-40.03758704299992,65.10285065300009],[-39.96568762899997,65.107652085],[-39.93732662699992,65.09650299700014],[-39.95763098899994,65.09003327000006],[-39.98029537699989,65.09129466400007],[-40.00377356699993,65.09528229400014],[-40.026682094999956,65.09650299700014],[-40.13512122299994,65.08746979400014],[-40.153065558999906,65.08197663000011],[-40.16584225199995,65.07196686400015],[-40.170033331999974,65.05548737200014],[-40.16466223899991,65.04083893400004],[-40.1582738919999,65.0289574240001],[-40.16319739499997,65.02334219],[-40.19176184799994,65.02757396000011],[-40.18911699099996,65.03148021000011],[-40.184315558999884,65.04189687700001],[-40.22911536399991,65.039740302],[-40.24693762899988,65.03375885600018],[-40.25951087099989,65.02142975500014],[-40.26081295499997,65.00360748900005],[-40.28136145699992,65.00116608300011],[-40.30125891799992,65.00885651200004],[-40.300404425999915,65.02142975500014],[-40.32713782499991,65.04035065300015],[-40.352121548999946,65.063910223],[-40.378732876999976,65.0834414730001],[-40.41026770699988,65.090277411],[-40.3743383449999,65.05385976800012],[-40.36929277299987,65.0384789080001],[-40.37926184799994,65.03204987200017],[-40.40184485599994,65.03270091400013],[-40.426177537999905,65.038031317],[-40.4416397779999,65.04559967700013],[-40.4784236319999,65.07135651200016],[-40.565256313999924,65.10081614800008],[-40.60204016799992,65.12376536700005],[-40.59361731699994,65.13934967700006],[-40.602772589999944,65.145209052],[-40.63341223899994,65.14492422100015],[-40.648996548999946,65.14203522300012],[-40.65843665299985,65.1344261740001],[-40.67100989499994,65.11009349200009],[-40.6634822259999,65.10394928600014],[-40.67857825399988,65.09369538000011],[-40.70445716099991,65.05548737200014],[-40.69871985599994,65.03851959800008],[-40.70718339799987,65.02960846600014],[-40.71979732999995,65.0292829450001],[-40.73241126199994,65.04604726800012],[-40.77334550699996,65.06915924700009],[-40.76781165299994,65.07233307500015],[-40.7649633449999,65.07542552300005],[-40.762847459999904,65.07892487200003],[-40.759673631999924,65.08283112200003],[-40.84634355399987,65.09662506700012],[-40.875782875331765,65.09650308117264],[-40.87580318899995,65.09650299700014],[-40.85366777299987,65.06586334800015],[-40.86937415299994,65.06317780200008],[-40.93846594999985,65.08283112200003],[-41.01598059799991,65.08926015800013],[-41.05711829299989,65.09975820500001],[-41.075062628999945,65.12042877800003],[-41.08226477799988,65.13174062700001],[-41.098255988999966,65.12995026200012],[-41.11461341099988,65.12250397300015],[-41.12279212099989,65.11701080900012],[-41.127552863999874,65.104193427],[-41.12706458199992,65.09088776200014],[-41.121001756999895,65.08026764500012],[-41.07762610599994,65.06769440300003],[-41.03359941299993,65.02802155200011],[-41.00674394399993,65.01459381700012],[-41.010894334999904,65.00470612200012],[-41.01353919199997,65.00092194200009],[-40.99242102799988,64.99030182500003],[-40.98314368399991,64.97675202000006],[-40.98912512899991,64.96507396000008],[-41.01353919199997,64.95994700700005],[-41.13011633999989,64.981390692],[-41.15013587099986,64.97671133000006],[-41.149566209999904,64.960638739],[-41.14639238199993,64.95351797100015],[-41.12279212099989,64.9394391950001],[-41.112212693999936,64.93056875200007],[-41.073475714999915,64.88719310100002],[-41.06680253799993,64.881984768],[-41.05455481699988,64.87738678600006],[-41.01402747299997,64.87579987200003],[-40.99327551999997,64.87213776200018],[-40.99307206899991,64.86371491100012],[-40.966704881999895,64.86465078300002],[-40.88320878799993,64.85757070500016],[-40.89635169199991,64.852240302],[-40.92003333199992,64.83856842700006],[-40.934722459999904,64.8358421900001],[-40.96515865799998,64.83624909100008],[-40.97960364499994,64.83454010600018],[-40.99307206899991,64.82957591400013],[-40.88463294199991,64.80914948100015],[-40.87580318899995,64.78864166900011],[-40.78978430899985,64.74628327],[-40.76349850199995,64.7402204450001],[-40.73412024599995,64.73932526200012],[-40.70482337099992,64.7338320980001],[-40.686879035999965,64.71963125200006],[-40.6914770169999,64.69245026200015],[-40.629058397999955,64.69208405200004],[-40.60448157499994,64.68349844000012],[-40.59463456899991,64.662014065],[-40.5947159499999,64.65582916900014],[-40.5959366529999,64.65265534100017],[-40.59911048099988,64.65155670800011],[-40.605458136999914,64.65143463700015],[-40.61034094999988,64.64858633000001],[-40.6085505849999,64.64203522300012],[-40.60204016799992,64.6310082050001],[-40.599720831999946,64.6201846370001],[-40.593373175999915,64.60366445500001],[-40.59463456899991,64.596869208],[-40.585764126999976,64.57949453300002],[-40.57054602799988,64.532375393],[-40.561105923999975,64.51496002800006],[-40.617990688999924,64.48403554900001],[-40.63512122299994,64.46710846600003],[-40.605458136999914,64.45966217700014],[-40.56956946499991,64.45697663000006],[-40.401275193999965,64.41718170800009],[-40.386708136999935,64.40814850500006],[-40.37291419199994,64.39598216399999],[-40.36815344999994,64.39276764500012],[-40.36929277299987,64.37396881700006],[-40.36558997299991,64.3664411480001],[-40.359486456999946,64.36298248900012],[-40.35830644399991,64.35903554900013],[-40.36929277299987,64.34979889500006],[-40.38337154899992,64.34471263200014],[-40.41397050699993,64.34223053600012],[-40.424549933999884,64.33681875200007],[-40.43785559799991,64.35179271000001],[-40.457142706999946,64.35846588700015],[-40.478911912999905,64.35748932500009],[-40.499623175999915,64.34979889500006],[-40.50890051999994,64.34178294500009],[-40.51203365799992,64.33527252800002],[-40.51744544199988,64.33087799700014],[-40.53380286399991,64.3293317730001],[-40.54865475199994,64.33226146000011],[-40.553578253999916,64.33954498900013],[-40.55028235599988,64.34845612200016],[-40.540638800999915,64.35663483300009],[-40.540638800999915,64.36408112200014],[-40.60619055899994,64.37433502800009],[-40.61632239499991,64.38080475499999],[-40.62303626199994,64.39215729400014],[-40.638498501999976,64.389797268],[-40.667225714999915,64.37775299700009],[-40.68163001199988,64.37970612200014],[-40.70767167899996,64.38865794500008],[-40.718739386999914,64.39077383000007],[-40.731922980999855,64.38833242400015],[-40.757476365999935,64.37848541900003],[-40.77334550699996,64.37775299700009],[-40.767201300999886,64.38397858300006],[-40.80020097599996,64.38873932500015],[-40.83617102799991,64.380316473],[-40.930490688999896,64.33364492400001],[-40.965565558999884,64.32514069200006],[-41.07774817599991,64.31110260600012],[-41.33568274599992,64.3293317730001],[-41.332142706999946,64.33234284100011],[-41.32201087099989,64.34296295800014],[-41.35317949099988,64.34967682500009],[-41.458607550999965,64.3293317730001],[-41.50275631399995,64.33051178600012],[-41.52489173099994,64.32611725500014],[-41.539133266999926,64.305609442],[-41.568470831999946,64.28148021000008],[-41.56749426999997,64.26618073100012],[-41.55333411399994,64.25775788000006],[-41.531361456999946,64.25433991100006],[-41.46336829299989,64.25446198100003],[-41.444162563999924,64.24762604400011],[-41.44871985599988,64.23037344],[-41.45543372299991,64.21946849200013],[-41.45230058499993,64.2135277360001],[-41.396962042999945,64.18187083500011],[-41.387277798999975,64.17853424700009],[-41.087147589999944,64.14923737200017],[-41.06139075399991,64.14061107],[-41.04686438699986,64.12872955900004],[-41.02448482999994,64.09943268400009],[-41.00645911399991,64.08600495000012],[-40.984038865999906,64.08030833500014],[-40.95933997299991,64.08274974200008],[-40.937489386999886,64.09275950700005],[-40.92418372299994,64.10956452000006],[-40.94546464799992,64.11863841400007],[-40.96519934799997,64.13007233300011],[-40.955677863999966,64.14118073100006],[-40.9287003249999,64.15680573100003],[-40.917958136999886,64.16486237200014],[-40.910511847999906,64.15802643400006],[-40.886341925999915,64.16669342700014],[-40.767201300999886,64.16486237200014],[-40.76134192599994,64.16242096600003],[-40.74909420499998,64.15322500200016],[-40.74299068899998,64.15119049700003],[-40.735585089999915,64.15281810100005],[-40.72899329299992,64.15623607000008],[-40.72154700399994,64.15884023600016],[-40.71198482999994,64.15802643400006],[-40.695912238999874,64.1500511740001],[-40.68663489499994,64.14081452000012],[-40.67613684799994,64.13324616100009],[-40.59162350199992,64.12051015800013],[-40.560943162999905,64.1068789730001],[-40.54808508999989,64.08600495000012],[-40.5423884759999,64.06769440300015],[-40.54527747299994,64.05878327000003],[-40.57730058499993,64.05158112200017],[-40.59752356699994,64.04303620000015],[-40.61660722599992,64.03192780200011],[-40.62999426999994,64.02081940300009],[-40.64830481699991,64.01190827000006],[-40.64122473899994,64.00031159100014],[-40.60204016799992,63.979234117000125],[-40.623931443999936,63.96727122599999],[-40.64537512899997,63.965969143000095],[-40.66584225199995,63.97125885600015],[-40.71617591099991,63.99388255400014],[-40.733265753999945,63.99408600499999],[-40.74608313699988,63.979234117000125],[-40.726551886999886,63.97370026200009],[-40.718739386999914,63.97304922100015],[-40.74461829299992,63.962713934000064],[-40.84166419199994,63.952582098000086],[-40.80894934799991,63.93903229400002],[-40.76073157499988,63.93325429900007],[-40.71202551999994,63.935288804],[-40.677805141999954,63.94574616100009],[-40.63792883999991,63.932928778000026],[-40.621693488999966,63.924627997000144],[-40.622547980999855,63.91095612200003],[-40.622547980999855,63.90420156500009],[-40.60952714799987,63.8915876320001],[-40.60260982999998,63.887030341000134],[-40.59463456899991,63.88369375200012],[-40.59463456899991,63.87685781500004],[-40.608306443999936,63.86713288000006],[-40.59715735599994,63.85504791900014],[-40.561105923999975,63.83588288],[-40.561105923999975,63.82843659100003],[-40.59048417899987,63.82208893400009],[-40.614125128999916,63.80756256700014],[-40.61807206899991,63.79319896000008],[-40.58836829299986,63.787502346000096],[-40.58836829299986,63.78123607000004],[-40.59227454299986,63.77985260600014],[-40.60204016799992,63.77440013200011],[-40.58747311099997,63.76935455900009],[-40.57823645699992,63.75067780200011],[-40.56452389199998,63.74652741100009],[-40.532826300999915,63.746323960000105],[-40.51964270699997,63.740545966000134],[-40.51329505099994,63.726019598000114],[-40.52643795499989,63.69635651200018],[-40.56248938699986,63.68488190300006],[-40.64366614499997,63.6850446640001],[-40.6354060539999,63.69660065300003],[-40.630482550999915,63.70136139500011],[-40.622547980999855,63.70551178600006],[-40.64745032499991,63.71141185100011],[-40.67861894399988,63.711371161000116],[-40.70067298099988,63.70136139500011],[-40.69823157499985,63.67763906500013],[-40.99791419199988,63.70294830900014],[-41.085316535999965,63.721869208000086],[-41.139312303999866,63.749457098],[-41.320668097999906,63.77265045800011],[-41.354359503999916,63.78253815300006],[-41.38011633999994,63.79832591399998],[-41.40709387899989,63.82221100500006],[-41.4127498039999,63.82583242400013],[-41.42052161399988,63.84308502800003],[-41.42446855399987,63.84955475500015],[-41.4335017569999,63.85594310100005],[-41.44469153599991,63.86102936400009],[-41.45783443899995,63.86375560100005],[-41.47288977799988,63.86318594000009],[-41.48810787699995,63.860256252000156],[-41.49132239499991,63.857001044000114],[-41.48875891799989,63.85089752800003],[-41.48656165299991,63.839300848000015],[-41.50112870999993,63.82221100500006],[-41.53465735599988,63.81244538000011],[-41.596424933999884,63.801703192],[-41.62022864499997,63.794378973],[-41.629261847999885,63.78766510600014],[-41.62682044199994,63.777818101000136],[-41.618031378999966,63.77008698100003],[-41.606678839999915,63.76268138200014],[-41.594349738999966,63.75698476800015],[-41.58275305899994,63.753973700000145],[-41.56773841099991,63.75503164300002],[-41.54279537699989,63.7650820980001],[-41.530913865999935,63.7675641950001],[-41.46914628799993,63.7675641950001],[-41.44139563699986,63.76337311400009],[-41.39606686099995,63.744574286000116],[-41.33763587099989,63.73566315300009],[-41.24632727799991,63.69928620000012],[-41.21837317599997,63.69334544499999],[-40.96666419199991,63.67450592700013],[-40.90851803299998,63.660834052000105],[-40.87950598899991,63.65770091400013],[-40.84166419199994,63.595648505],[-40.89004472599996,63.595648505],[-40.8723852199999,63.580267645000156],[-40.84886633999989,63.57273997599999],[-40.82388261599996,63.571519272999986],[-40.801340298999975,63.57518138200014],[-40.79564368399991,63.57802969000006],[-40.78945878799993,63.58226146],[-40.78062903599987,63.58641185100013],[-40.767201300999886,63.58942291900003],[-40.759755011999914,63.58901601800012],[-40.75169837099989,63.58734772300003],[-40.74258378799988,63.58681875200012],[-40.73241126199994,63.58942291900003],[-40.73721269399993,63.58234284100017],[-40.74372311099992,63.57518138200014],[-40.759673631999924,63.56220123900011],[-40.74278723899993,63.53839752800006],[-40.750070766999954,63.516913153000125],[-40.77257239499994,63.502590236000124],[-40.801340298999975,63.50006745000012],[-40.82201087099989,63.51015859600006],[-40.83625240799989,63.523993231000176],[-40.851633266999954,63.53119538000011],[-40.87580318899995,63.52118561400012],[-40.87580318899995,63.51373932500014],[-40.86278235599988,63.507513739],[-40.87511145699992,63.50706614799999],[-40.887562628999916,63.50787995000012],[-40.89956620999995,63.510077216000084],[-40.910511847999906,63.51373932500014],[-40.91820227799994,63.51894765800012],[-40.934722459999904,63.534654039000095],[-40.94469153599991,63.54100169500004],[-40.944569464999944,63.53139883000015],[-40.946197068999965,63.52496979400014],[-40.95213782499987,63.51373932500014],[-40.96422278599987,63.51801178600006],[-40.968739386999935,63.523342190000115],[-40.970855272999955,63.52985260600012],[-40.975982225999864,63.53758372600014],[-41.014149542999945,63.56541575699999],[-41.019602016999954,63.56159088700018],[-41.02122962099989,63.55365631700003],[-41.02106686099992,63.548529364],[-41.01622473899994,63.54083893400018],[-40.99307206899991,63.52118561400012],[-41.032093878999966,63.513088283000094],[-41.106271938999924,63.52533600500006],[-41.14391028599991,63.52741120000009],[-41.12954667899993,63.51264069200001],[-41.10875403599994,63.507147528000175],[-41.06505286399994,63.507513739],[-41.049387173999975,63.50214264500011],[-41.01805579299992,63.47581614800013],[-40.999338344999956,63.46653880400008],[-41.01675370999993,63.45050690300017],[-41.04450436099992,63.44550202000015],[-41.07363847599987,63.447495835000076],[-41.09552975199989,63.45233795800005],[-41.115467902999875,63.461330471000075],[-41.194203253999966,63.53143952000015],[-41.21544348899994,63.54389069200006],[-41.26585852799988,63.564683335000055],[-41.28066972599996,63.56826406500012],[-41.28726152299992,63.5649274760001],[-41.28563391799992,63.55463288],[-41.282866990999935,63.54710521000011],[-41.28237870999996,63.54083893400018],[-41.28726152299992,63.534247137000094],[-41.26756751199988,63.526922919000086],[-41.22520911399988,63.51683177300013],[-41.20539303299998,63.507513739],[-41.192616339999944,63.49469635600015],[-41.18016516799992,63.476141669000135],[-41.1724747389999,63.459540106000084],[-41.17430579299989,63.45233795800005],[-41.153065558999884,63.44794342700008],[-41.10777747299997,63.42869700700014],[-41.08214270699989,63.424383856000034],[-41.0362849599999,63.42523834800012],[-41.01585852799994,63.42161692900007],[-40.999338344999956,63.41132233300005],[-41.01329505099994,63.40473053600009],[-41.03034420499998,63.402777411000116],[-41.06505286399994,63.40387604400017],[-41.08023027299993,63.40241120000011],[-41.115956183999884,63.390204169000064],[-41.12950598899994,63.38914622599999],[-41.169097459999875,63.39057038000005],[-41.17739824099996,63.393988348000065],[-41.18097896999993,63.404364325000145],[-41.19725501199986,63.43280670800008],[-41.201975063999946,63.43866608300011],[-41.22337805899991,63.44684479400003],[-41.29124915299991,63.487738348000065],[-41.32591712099988,63.51536692900007],[-41.37669837099992,63.54100169500004],[-41.40094967399991,63.559515692000055],[-41.41392981699991,63.56590403899999],[-41.431874152999875,63.56777578300013],[-41.325510219999984,63.48265208500014],[-41.28726152299992,63.44489166900008],[-41.25780188699994,63.42942942900005],[-41.24571692599994,63.419582424000126],[-41.24010169199993,63.40387604400017],[-41.393055792999945,63.458238022999986],[-41.4381404289999,63.4858259140001],[-41.48961341099991,63.53082916900008],[-41.49290930899994,63.52509186400012],[-41.49339758999991,63.50389232000013],[-41.497954881999874,63.4850121110001],[-41.5138240229999,63.4858259140001],[-41.5138240229999,63.47955963700015],[-41.52586829299992,63.48558177300008],[-41.54434160099993,63.49062734600002],[-41.564849412999905,63.49347565300003],[-41.58275305899994,63.49323151200009],[-41.57530676999997,63.49323151200009],[-41.579945441999904,63.489976304000045],[-41.57664954299986,63.488755601000136],[-41.56932532499985,63.48794179900003],[-41.56163489499993,63.4858259140001],[-41.54792232999991,63.47675202],[-41.541411912999905,63.47382233299999],[-41.512928839999915,63.47020091400013],[-41.35936438699994,63.42544179900009],[-41.24901282499988,63.371039130000085],[-41.16006425699996,63.34577057500003],[-41.136830206999946,63.33270905200013],[-41.115956183999884,63.31513092700011],[-41.115956183999884,63.308294989],[-41.13263912699991,63.31134674700008],[-41.17739824099996,63.335028387000094],[-41.19725501199986,63.342189846000146],[-41.36204993399991,63.37230052299999],[-41.37401282499985,63.37677643400006],[-41.382150844999956,63.38471100500011],[-41.39098059799991,63.39765045800011],[-41.383534308999856,63.40387604400017],[-41.40387936099995,63.42157623900009],[-41.43488521999995,63.42593008000007],[-41.50023352799993,63.424383856000034],[-41.53099524599992,63.43195221600016],[-41.667144334999904,63.510077216000084],[-41.701405402999875,63.54450104400002],[-41.71593176999991,63.55296458500009],[-41.73387610599988,63.55394114800005],[-41.76024329299989,63.548529364],[-41.758941209999875,63.542141018000066],[-41.75621497299991,63.53660716400007],[-41.752064581999946,63.53172435099999],[-41.74665279899992,63.52741120000009],[-41.77057858,63.509588934000114],[-41.884429490999935,63.47955963700015],[-41.90086829299992,63.469916083],[-41.907053188999896,63.46352773600007],[-41.90526282499991,63.45636627800003],[-41.89806067599997,63.44489166900008],[-41.86204993399991,63.40957265800016],[-41.8564346999999,63.400783596000096],[-41.83263098899991,63.39695872600008],[-41.68390865799992,63.35333893400014],[-41.68065344999988,63.345404364],[-41.68366451699998,63.33612702000015],[-41.691395636999914,63.328802802000055],[-41.69969641799989,63.327622789000124],[-41.79059811099995,63.348822333000115],[-41.80870520699994,63.34247467699999],[-41.80870520699994,63.335028387000094],[-41.77985592399992,63.32925039300015],[-41.76549231699994,63.324123440000115],[-41.753407355999855,63.31513092700011],[-41.75621497299991,63.31171295799999],[-41.75792395699992,63.306545315],[-41.76024329299989,63.301459052000084],[-41.736724412999905,63.30914948100009],[-41.670033331999946,63.31720612200003],[-41.64354407499988,63.31513092700011],[-41.620757615999935,63.306586005],[-41.59097245999993,63.29124583500013],[-41.568714972999885,63.27423737200017],[-41.568470831999946,63.260484117000075],[-41.48851477799985,63.2377790390001],[-41.47288977799988,63.22577545799999],[-41.474598761999886,63.206773179],[-41.48546301999997,63.18903229400008],[-41.49156653599994,63.17096588700017],[-41.47911536399994,63.15070221600017],[-41.43968665299985,63.14252350500005],[-41.431874152999875,63.136948960000055],[-41.43272864499997,63.125311591000134],[-41.441477016999926,63.120428778000175],[-41.46544348899991,63.11652252800017],[-41.525054490999906,63.09723541900005],[-41.55443274599989,63.09686920800011],[-41.58275305899994,63.10968659100015],[-41.61009680899991,63.136948960000055],[-41.622670050999915,63.1440290390001],[-41.818023240999906,63.21482982000013],[-41.911040818999965,63.22577545799999],[-42.02090410099996,63.25307851800006],[-42.00230872299994,63.23452383000007],[-41.969105597999935,63.221584377000156],[-41.8607071609999,63.195379950000024],[-41.735503709999904,63.138861395],[-41.67833411399994,63.123358466000084],[-41.620350714999944,63.09601471600003],[-41.54946855399996,63.052923895],[-41.53945878799996,63.04360586100013],[-41.53433183499996,63.03335195500004],[-41.66466223899988,63.04075755400011],[-41.716175910999965,63.06077708500008],[-41.7431534499999,63.06801992400001],[-41.76707923099988,63.061265367000075],[-41.720692511999914,63.04629140800013],[-41.711333787999905,63.03953685099999],[-41.73355058499993,63.03335195500004],[-41.75902258999986,63.03375885600003],[-41.839100714999915,63.04755280200014],[-41.85704505099997,63.05516185100008],[-41.86888587099992,63.071844794000114],[-41.87800045499992,63.088446356000176],[-41.887521938999924,63.09601471600003],[-41.932484503999916,63.102850653000026],[-41.95815995999996,63.101629950000024],[-41.97252356699994,63.08856842700014],[-41.963246222999885,63.08665599199999],[-41.95482337099994,63.08356354400011],[-41.939035610999895,63.07550690300014],[-41.956695115999906,63.06915924700003],[-41.97484290299991,63.074286200000145],[-42.02257239499997,63.1086286480001],[-42.04824785099993,63.15070221600017],[-42.073841925999886,63.175604559000085],[-42.107411261999914,63.19481028900007],[-42.14395097599987,63.20587799700008],[-42.17861894399993,63.20587799700008],[-42.164784308999856,63.1963565120001],[-42.14989173099991,63.17877838700015],[-42.137440558999884,63.15912506700011],[-42.13076738199993,63.1432152360001],[-42.13536536399996,63.12775299700017],[-42.15392005099997,63.12091705900014],[-42.179676886999914,63.11676666900002],[-42.205922003999916,63.10968659100015],[-42.17878170499992,63.09686920800011],[-42.112131313999924,63.09369538000005],[-42.082386847999906,63.08856842700014],[-42.02879798099991,63.06281159100011],[-42.00641842399989,63.04612864800008],[-42.00731360599988,63.02708567900007],[-41.751942511999886,63.02057526200018],[-41.74010169199994,63.01715729400017],[-41.701893683999884,62.99738190300015],[-41.691395636999914,62.99359772300012],[-41.6681208979999,62.99384186400005],[-41.64452063699986,62.99705638200011],[-41.62409420499998,62.99506256700009],[-41.61009680899991,62.97931549700002],[-41.621205206999946,62.975775458000136],[-41.62315833199989,62.96893952000012],[-41.61856035099996,62.960353908000016],[-41.61009680899991,62.951402085],[-41.63646399599992,62.928045966000084],[-41.67454993399991,62.91356028900004],[-41.71800696499994,62.91132233300006],[-41.76024329299989,62.924750067000055],[-41.76817786399994,62.93768952000006],[-41.77717037699995,62.934271552000055],[-41.78819739499991,62.91107819200011],[-41.76024329299989,62.88373444200014],[-41.764963344999984,62.88300202000012],[-41.76789303299989,62.88149648600016],[-41.77452551999997,62.87689850500012],[-41.78319251199986,62.880845445000105],[-41.79466712099992,62.88165924700003],[-41.80793209499993,62.880072333],[-41.82168535099996,62.87689850500012],[-41.78595943899992,62.867254950000145],[-41.76073157499985,62.85687897300006],[-41.749663865999906,62.849758205],[-41.75011145699992,62.84393952000006],[-41.80036373599998,62.83844635600003],[-41.82209225199995,62.83274974200005],[-41.8430883449999,62.82990143400009],[-41.92479407499988,62.846869208000086],[-41.9830623039999,62.84894440300008],[-41.98619544199988,62.85333893400017],[-41.99103756399995,62.86294179900015],[-41.9986873039999,62.87254466400004],[-42.01036536399988,62.87689850500012],[-42.02082271999995,62.87303294500013],[-42.01903235599988,62.86371491100009],[-42.00731360599988,62.84153880400011],[-42.01768958199989,62.79682038000006],[-42.06126868399991,62.79022858299999],[-42.17178300699993,62.81484609600009],[-42.31944739499994,62.816961981000084],[-42.34080969999991,62.823960679],[-42.353627081999946,62.83661530200005],[-42.34935462099995,62.85578034100003],[-42.33336341099993,62.86774323100015],[-42.30943762899997,62.87474192900014],[-42.28343665299988,62.87763092700005],[-42.26113847599995,62.87689850500012],[-42.26113847599995,62.88373444200014],[-42.349720831999946,62.881293036000116],[-42.36359615799994,62.88996002800011],[-42.35309811099995,62.90375397300003],[-42.328195766999926,62.91909414300006],[-42.30016028599991,62.93195221600008],[-42.28038489499991,62.93838125200001],[-42.30540930899991,62.94550202000014],[-42.33812415299994,62.94114817900005],[-42.370432094999956,62.92938873900008],[-42.39395097599993,62.914455471000124],[-42.402699347999885,62.914455471000124],[-42.41783606699988,62.91657135600014],[-42.43228105399993,62.91596100499999],[-42.438628709999875,62.907660223],[-42.43517005099997,62.89248281500012],[-42.42931067599994,62.88458893400015],[-42.428130662999905,62.878729559000085],[-42.438628709999875,62.869452216000134],[-42.46080481699994,62.862453518000066],[-42.4903865229999,62.861721096000124],[-42.51988684799997,62.86587148600007],[-42.54173743399991,62.8731957050001],[-42.57282467399991,62.87970612200017],[-42.59715735599988,62.87152741100008],[-42.60236568899998,62.85626862200011],[-42.57583574099993,62.84153880400011],[-42.54759680899985,62.837836005000085],[-42.45612545499992,62.84153880400011],[-42.4260147779999,62.838039455000036],[-42.41576087099986,62.828802802000055],[-42.42308508999988,62.81582265800015],[-42.47101803299998,62.78440989800014],[-42.484364386999886,62.77899811400009],[-42.500111456999946,62.78009674700003],[-42.509388800999915,62.78583405200002],[-42.518177863999966,62.79511139500006],[-42.52481035099993,62.804836330000015],[-42.52745520699992,62.81146881700006],[-42.53172766799992,62.81708405200008],[-42.54206295499995,62.82290273600004],[-42.55455481699994,62.827337958],[-42.565581834999904,62.82916901200017],[-42.57966061099992,62.82587311400015],[-42.57795162699991,62.81818268400012],[-42.49937903599991,62.72695547100012],[-42.48713131399995,62.69818756700009],[-42.50560462099989,62.70327383],[-42.51602128799996,62.71185944200012],[-42.52399654899992,62.72223541900002],[-42.53490149599989,62.73289622600005],[-42.548898891999954,62.738755601000015],[-42.56590735599991,62.743638414000074],[-42.57762610599991,62.74990469000012],[-42.57583574099993,62.75958893400017],[-42.58934485599991,62.76552969],[-42.60265051999991,62.76654694200006],[-42.61278235599988,62.76162344],[-42.616851365999935,62.74966054900006],[-42.610829230999904,62.73517487200003],[-42.59626217399988,62.72483958500011],[-42.56216386599988,62.71246979400009],[-42.580433722999935,62.699367580000015],[-42.6036677729999,62.68964264500006],[-42.628407355999855,62.68447500200015],[-42.65099036399994,62.68451569200015],[-42.64411373599992,62.69464752800011],[-42.63975989499993,62.70823802300007],[-42.640248175999915,62.720282294000164],[-42.64785722599996,62.72549062700006],[-42.65900631399998,62.73126862200002],[-42.6822810539999,62.770453192000055],[-42.69579016799985,62.77887604400012],[-42.70995032499987,62.780015367000054],[-42.72130286399996,62.77362702000012],[-42.72667395699992,62.75958893400017],[-42.72256425699996,62.75128815300009],[-42.69188391799986,62.71246979400009],[-42.70824133999989,62.692857164000124],[-42.73818925699996,62.692572333],[-42.802113410999965,62.70563385600015],[-42.90025794199994,62.70774974199999],[-43.03526770699989,62.72528717700011],[-43.059396938999924,62.73602936400012],[-43.07860266799988,62.749172268000095],[-43.10570227799991,62.76048411700007],[-43.13267981699994,62.76552969],[-43.15123450399994,62.75958893400017],[-43.14273027299993,62.74933502800015],[-43.110259568999936,62.72549062700006],[-43.13125566299988,62.71112702],[-43.117990688999946,62.700628973000114],[-43.08812415299988,62.69415924700003],[-42.869984503999945,62.67487213700017],[-42.76085364499991,62.64354075700014],[-42.74054928299989,62.642808335000026],[-42.73082434799994,62.640611070000105],[-42.72667395699992,62.63300202000006],[-42.72809811099998,62.62555573100009],[-42.73037675699996,62.622503973],[-42.73082434799994,62.62030670800011],[-42.72667395699992,62.615627346000096],[-42.715565558999884,62.60761139500015],[-42.69058183499996,62.59577057500009],[-42.678863084999875,62.588324286000116],[-42.678863084999875,62.59577057500009],[-42.67662512899989,62.60895416900005],[-42.678863084999875,62.615627346000096],[-42.65611731699994,62.616441148000106],[-42.61351477799991,62.62995026200018],[-42.58922278599994,62.62616608300006],[-42.452015753999966,62.58307526200003],[-42.405140753999916,62.57802969],[-42.38369706899987,62.5715192730001],[-42.36668860599991,62.556057033000066],[-42.34430904899992,62.51691315300003],[-42.32262122299991,62.50576406500013],[-42.32616126199991,62.502834377000106],[-42.33568274599989,62.492743231000034],[-42.333973761999886,62.48261139500009],[-42.346994594999984,62.47406647300015],[-42.36644446499989,62.46784088700009],[-42.384022589999915,62.46478913],[-42.43248450399988,62.47842031500016],[-42.46475175699993,62.492499091000084],[-42.521595831999974,62.534409897999986],[-42.55532792899987,62.541083075000145],[-42.55532792899987,62.533677476000044],[-42.51268469999994,62.51080963700015],[-42.49282792899993,62.49518463700015],[-42.48029537699992,62.47842031500016],[-42.49828040299988,62.473944403000175],[-42.51622473899991,62.47711823100015],[-42.53416907499987,62.48285553600011],[-42.55190995999996,62.48582591400013],[-42.55768795499991,62.483343817],[-42.55382239499991,62.47760651200004],[-42.54173743399991,62.46845123900006],[-42.53014075399989,62.46503327000014],[-42.50597083199988,62.46596914300012],[-42.49388587099989,62.46478913],[-42.43370520699992,62.44074127800015],[-42.41136633999989,62.437445380000106],[-42.39659583199991,62.43231842700011],[-42.38638261599996,62.42255280200008],[-42.37507076699998,62.416815497000115],[-42.3567602199999,62.423814194999984],[-42.35948645699989,62.42755768400012],[-42.36359615799994,62.437445380000106],[-42.34064693899995,62.44163646000005],[-42.25373287699995,62.437445380000106],[-42.25658118399991,62.43357982000013],[-42.26113847599995,62.423814194999984],[-42.243234829999885,62.41498444200011],[-42.24461829299988,62.404852606000176],[-42.25763912699995,62.3939476580001],[-42.27415930899994,62.38287995000014],[-42.248117641999954,62.388006903000175],[-42.16437740799995,62.39032623900011],[-42.16437740799995,62.38287995000014],[-42.22411048099991,62.36749909100003],[-42.25438391799992,62.363714911],[-42.277333136999914,62.37323639500009],[-42.339344855999855,62.376695054],[-42.41624915299985,62.393988348000086],[-42.43602454299989,62.40387604400008],[-42.46666419199988,62.410793361000096],[-42.47215735599991,62.41522858300008],[-42.482411261999935,62.42792389500012],[-42.48713131399995,62.431219794000164],[-42.5021052729999,62.43183014500012],[-42.53184973899991,62.42426178600008],[-42.548491990999935,62.423814194999984],[-42.56460527299993,62.42959219000015],[-42.6099747389999,62.459173895],[-42.63280188699994,62.46344635600011],[-42.65684973899996,62.46381256700012],[-42.67983964799995,62.46674225500005],[-42.69937089799993,62.47842031500016],[-42.69660396999995,62.48236725500014],[-42.69188391799986,62.492743231000034],[-42.73306230399993,62.50397370000004],[-42.751820441999904,62.50263092700013],[-42.7716365229999,62.48932526200012],[-42.788563605999876,62.486761786000116],[-42.85700436099995,62.5131696640001],[-42.934437628999945,62.51581452],[-42.959787563999946,62.52374909100014],[-42.97402910099987,62.524847723],[-42.97545325399994,62.510402736000124],[-42.97402910099987,62.49135976800015],[-42.97988847599993,62.47842031500016],[-42.96458899599986,62.47304922100009],[-42.94806881399998,62.47443268400015],[-42.93049068899995,62.47776927300002],[-42.91161048099991,62.47842031500016],[-42.76154537699995,62.432806708],[-42.67686926999994,62.393011786000116],[-42.65904700399997,62.388251044000114],[-42.65099036399994,62.38287995000014],[-42.64561926999997,62.37563711100013],[-42.640451626999976,62.36123281500006],[-42.63731848899991,62.35553620000009],[-42.623036261999914,62.34284088700012],[-42.607980923999975,62.336493231000084],[-42.59048417899993,62.33445872600007],[-42.41197669199993,62.34931061400012],[-42.401112433999856,62.341742255000085],[-42.34935462099995,62.32143789300006],[-42.32872473899991,62.31659577],[-42.26113847599995,62.31460195500016],[-42.270090298999975,62.29962799700003],[-42.28473873599998,62.29295482000008],[-42.30125891799986,62.28856028899999],[-42.31578528599991,62.28046295800005],[-42.32705644399991,62.26764557500003],[-42.324940558999884,62.2634138040001],[-42.29466712099989,62.259955145],[-42.267486131999874,62.2465681010001],[-42.25804602799988,62.22748444200011],[-42.26317298099988,62.20571523600016],[-42.28038489499991,62.184230861000124],[-42.32046464799993,62.15884023600001],[-42.32945716099994,62.15009186400011],[-42.33141028599988,62.138251044000164],[-42.32262122299991,62.134711005],[-42.31045488199993,62.13202545800011],[-42.302113410999965,62.12274811400006],[-42.312163865999935,62.10321686400009],[-42.3456111319999,62.096380927000055],[-42.384836391999926,62.09414297100007],[-42.41197669199993,62.088609117000075],[-42.39098059799991,62.07770416900008],[-42.384022589999915,62.07493724200013],[-42.40021725199995,62.06537506700011],[-42.41100012899997,62.05658600500008],[-42.42373613199993,62.05019765800013],[-42.50328528599991,62.04462311400014],[-42.521229620999854,62.04022858300005],[-42.49689693899998,62.031887111000074],[-42.43399003799993,62.025458075000174],[-42.41812089799993,62.01288483300008],[-42.486683722999935,61.98554108300011],[-42.548491990999935,61.951483466000084],[-42.49592037699992,61.94257233300006],[-42.438588019999884,61.96710846600016],[-42.38145911399991,62.00079987200017],[-42.32945716099994,62.01972077],[-42.148101365999906,62.02374909100017],[-42.117176886999886,62.00674062700001],[-42.125070766999926,61.990179755000135],[-42.16844641799992,61.964016018000095],[-42.18724524599995,61.93024323100012],[-42.208607550999915,61.92023346600003],[-42.23550370999987,61.916245835000055],[-42.387115037999905,61.92413971600003],[-42.41576087099986,61.92059967700014],[-42.40355383999989,61.912258205000064],[-42.34312903599988,61.896877346000124],[-42.22638912699989,61.889390367000075],[-42.22638912699989,61.88320547100009],[-42.23717200399989,61.88336823100015],[-42.244496222999906,61.88214752800003],[-42.24962317599991,61.87811920800008],[-42.25373287699995,61.869574286000145],[-42.19225012899989,61.869574286000145],[-42.19684811099992,61.861517645000035],[-42.20433508999989,61.85150788000011],[-42.21959387899997,61.835394598000065],[-42.25499426999997,61.818182684000035],[-42.26427161399994,61.81118398600016],[-42.28132076699998,61.79238515800002],[-42.29784094999985,61.778713283000066],[-42.317290818999965,61.76845937700015],[-42.34312903599988,61.759711005000085],[-42.37144934799991,61.753404039000124],[-42.55801347599996,61.73655833500014],[-42.58950761599996,61.738592841000134],[-42.60277258999988,61.74217357000013],[-42.63731848899991,61.759711005000085],[-42.68382727799994,61.7764346370001],[-42.69566809799988,61.78359609600015],[-42.7081599599999,61.789129950000145],[-42.725412563999896,61.793280341000106],[-42.740589972999885,61.79950592700005],[-42.75348873599992,61.82062409100017],[-42.76813717399992,61.82172272300012],[-42.784331834999875,61.81842682500009],[-42.84068762899991,61.79677969],[-42.86131751199986,61.78392161700007],[-42.870025193999936,61.769924221],[-42.855580206999974,61.770249742000125],[-42.768299933999884,61.78701406500015],[-42.62010657499987,61.710882880000085],[-42.593617316999904,61.70380280200012],[-42.41930091099994,61.69989655200011],[-42.384022589999915,61.7050641950001],[-42.31895911399996,61.72662995000003],[-42.28355872299996,61.72833893400004],[-42.25373287699995,61.711249091000084],[-42.38084876199994,61.68744538],[-42.39268958199991,61.68284739800007],[-42.39769446499994,61.674017645],[-42.39386959499993,61.66087474200005],[-42.38390051999994,61.656887111000074],[-42.3567602199999,61.656683661000116],[-42.33307857999989,61.64842357000013],[-42.321034308999884,61.63662344000006],[-42.325062628999945,61.624497789000074],[-42.34935462099995,61.615668036000024],[-42.37474524599986,61.617092190000086],[-42.42577063699986,61.633978583000086],[-42.45299231699994,61.63613515800007],[-42.41323808499996,61.626939195000105],[-42.392567511999935,61.61961497599999],[-42.37726803299998,61.608832098000086],[-42.46666419199988,61.615668036000024],[-42.44041907499987,61.58706289300012],[-42.42943274599992,61.569037177],[-42.43553626199988,61.56102122600005],[-42.52745520699992,61.56102122600005],[-42.61343339799992,61.546820380000135],[-42.63719641799992,61.54901764500012],[-42.683664516999954,61.558783270000056],[-42.8675837879999,61.56378815300011],[-42.947621222999885,61.59088776200003],[-42.998850063999924,61.60008372600011],[-43.04942786399991,61.602728583],[-43.082915818999965,61.59520091400004],[-42.965646938999924,61.562404690000115],[-42.94640051999997,61.550482489],[-42.93122311099997,61.53058502800009],[-42.85309811099995,61.54340241100011],[-42.790638800999915,61.52826569200011],[-42.52745520699992,61.53375885600015],[-42.54161536399994,61.496161200000145],[-42.548491990999935,61.48533763200008],[-42.53062903599988,61.47211334800012],[-42.523019985999944,61.45302969000015],[-42.51105709499993,61.4364281270001],[-42.48029537699992,61.430731512000094],[-42.46654212099992,61.433986721000146],[-42.43883216099994,61.444525458000115],[-42.42564856699988,61.44432200700005],[-42.418853318999936,61.439357815],[-42.40453040299988,61.416408596000124],[-42.41812089799993,61.40277741100009],[-42.43663489499994,61.41225820500007],[-42.45225989499991,61.41425202000012],[-42.46642005099994,61.41058991100005],[-42.48029537699992,61.40277741100009],[-42.48106848899994,61.40053945500011],[-42.49388587099989,61.38296133000016],[-42.499256964999944,61.37832265800013],[-42.50495357999992,61.37628815300011],[-42.506703253999916,61.37409088700012],[-42.500111456999946,61.36928945500012],[-42.500111456999946,61.361802476000044],[-42.52904212099995,61.35639069200003],[-42.58088131399995,61.35431549700009],[-42.59239661399988,61.352362372000144],[-42.603749152999875,61.3481306010001],[-42.603749152999875,61.3412946640001],[-42.583485480999855,61.341009833000086],[-42.5802302729999,61.334784247000115],[-42.59032141799989,61.32664622599999],[-42.6099747389999,61.320868231000034],[-42.67284094999988,61.319891669000135],[-42.69188391799986,61.31403229400011],[-42.67821204299992,61.308050848],[-42.66291256399995,61.30377838700018],[-42.64679928299989,61.30133698100015],[-42.630482550999965,61.30097077000012],[-42.630482550999965,61.29352448100015],[-42.707508917999945,61.291815497000144],[-42.855865037999905,61.33730703300012],[-42.93211829299989,61.3412946640001],[-42.967640753999945,61.338202216000035],[-43.20946204299989,61.35162995000011],[-43.248117641999926,61.3412946640001],[-43.22052975199992,61.331691799000126],[-42.88605709499993,61.310248114],[-42.775054490999906,61.27985260600003],[-42.775054490999906,61.2730980490001],[-42.806263800999886,61.26715729400014],[-42.84715735599994,61.26752350500008],[-42.88451087099989,61.263902085000105],[-42.90538489499994,61.24575429900001],[-42.79564368399985,61.2475446640001],[-42.7716365229999,61.25600820500013],[-42.74819902299993,61.2682966170001],[-42.71996008999989,61.26947663000011],[-42.66519120999993,61.259426174000154],[-42.65835527299993,61.259426174000154],[-42.660755988999966,61.25568268400012],[-42.66519120999993,61.24575429900001],[-42.648793097999935,61.24526601800012],[-42.64037024599989,61.237738348000065],[-42.63329016799992,61.228949286],[-42.62059485599988,61.224595445000105],[-42.60326087099989,61.22304922100007],[-42.59227454299992,61.21800364800013],[-42.58421790299988,61.20945872600011],[-42.57583574099993,61.19733307500003],[-42.73289954299989,61.19733307500003],[-42.7396541009999,61.19497304900006],[-42.75487219999988,61.185980536000145],[-42.76085364499991,61.18366120000009],[-42.77000891799989,61.184393622000115],[-42.79088294199994,61.18984609600015],[-42.819569464999915,61.193589585],[-42.84776770699988,61.20600006700012],[-42.863880988999966,61.21100495000014],[-42.91014563699986,61.216131903000175],[-42.93537350199992,61.215073960000105],[-42.94640051999997,61.20758698100015],[-42.95767167899996,61.204331773000106],[-43.17918860599988,61.21845123900011],[-43.17918860599988,61.21100495000014],[-43.14273027299993,61.212103583],[-42.86953691299996,61.17479075700014],[-42.83340410099993,61.16136302300005],[-42.76203365799992,61.143988348000065],[-42.743763800999936,61.14272695500016],[-42.73436438699994,61.144273179000024],[-42.71662350199995,61.15005117400006],[-42.70616614499996,61.14956289300006],[-42.6981501939999,61.14508698100011],[-42.695301886999886,61.13890208500014],[-42.69440670499997,61.132961330000015],[-42.69188391799986,61.129095770000035],[-42.630482550999965,61.10858795800005],[-42.630482550999965,61.10114166900008],[-42.78132076699995,61.10858795800005],[-42.8528946609999,61.12250397300012],[-42.88955644399991,61.12425364800013],[-42.90538489499994,61.11163971600014],[-42.92568925699995,61.10415273600007],[-43.171009894999884,61.131781317],[-43.20645097599989,61.122219143],[-43.22447669199991,61.12824127800011],[-43.302357550999886,61.122219143],[-43.5162654289999,61.1473656270001],[-43.57201087099989,61.14524974199999],[-43.61115475199992,61.129095770000035],[-43.580067511999914,61.11920807500009],[-43.50792395699992,61.12571849200002],[-43.45653235599991,61.11530182500012],[-43.41588294199991,61.117132880000085],[-43.40135657499988,61.11163971600014],[-43.38565019399991,61.103461005000135],[-43.36465410099987,61.10053131700011],[-43.164133266999976,61.10944245000014],[-43.158680792999945,61.10858795800005],[-43.15404212099991,61.10521067900014],[-43.15038001199986,61.09613678600014],[-43.14781653599994,61.09430573100014],[-43.09658769399991,61.09430573100014],[-43.103423631999924,61.10114166900008],[-43.07713782499991,61.091864325000024],[-43.01524817599994,61.08860911699998],[-42.98737545499998,61.081244208],[-42.999663865999935,61.063950914],[-43.00633704299989,61.058294989],[-43.01471920499995,61.053941148000106],[-42.99132239499997,61.05434804900001],[-42.94131425699993,61.06976959800015],[-42.9150284499999,61.07379791900011],[-42.86351477799985,61.07151927300013],[-42.84276282499985,61.065659897999986],[-42.82286536399994,61.053941148000106],[-42.803578253999916,61.06464264500011],[-42.769927537999905,61.07037995000008],[-42.73363196499991,61.06948476800002],[-42.70616614499996,61.06012604400017],[-42.72325598899991,61.05540599200007],[-42.74156653599996,61.05487702000009],[-42.75772050699993,61.05198802300004],[-42.768299933999884,61.04026927300007],[-42.7479548819999,61.03603750200016],[-42.70539303299995,61.036607164000095],[-42.6856990229999,61.0328636740001],[-42.67251542899995,61.02513255400007],[-42.668812628999916,61.01703522300015],[-42.67503821499986,61.0099551450001],[-42.69188391799986,61.00556061400001],[-42.69188391799986,60.99933502800006],[-42.6666560539999,60.998683986000096],[-42.65835527299993,60.99933502800006],[-42.69774329299992,60.982611395000035],[-42.73737545499995,60.99994538],[-42.7733455069999,61.0220401060001],[-42.80182857999992,61.019842841000084],[-42.807199673999975,61.01093170800006],[-42.80589758999989,61.00311920800006],[-42.80016028599991,60.99599844000003],[-42.791859503999916,60.98875560099999],[-42.786732550999915,60.97947825700013],[-42.790923631999924,60.97089264500011],[-42.7980037099999,60.96271393400012],[-42.80182857999992,60.95429108300005],[-42.79198157499991,60.94757721600003],[-42.72667395699992,60.93040599200002],[-42.97988847599993,60.895697333000115],[-42.97988847599993,60.88947174700017],[-43.02745520699992,60.88157786700001],[-43.20986894399991,60.91681549700005],[-43.29991614499994,60.91986725500014],[-43.42943274599989,60.94741445500016],[-43.463124152999875,60.95087311400006],[-43.47695878799987,60.948391018000116],[-43.48184160099996,60.94155508],[-43.480824347999885,60.91986725500014],[-43.47728430899991,60.910793361000124],[-43.46861731699991,60.91063060100008],[-43.45738684799991,60.91437409100011],[-43.44635982999995,60.91681549700005],[-43.13385982999998,60.88084544500008],[-43.103423631999924,60.86155833500011],[-43.112131313999924,60.85993073100009],[-43.11754309799994,60.858058986000124],[-43.12116451699992,60.854478257000075],[-43.12458248599992,60.84788646],[-43.09312903599991,60.857163804000045],[-43.06094316299996,60.85858795800012],[-42.88508053299995,60.84540436400005],[-42.85700436099995,60.83486562700001],[-42.863880988999966,60.827378648000135],[-42.848866339999944,60.821763414000046],[-42.834095831999946,60.823187567],[-42.81871497299991,60.826808986000074],[-42.8070776029999,60.82721588700017],[-42.78612219999985,60.824530341000084],[-42.78575598899994,60.815008856000084],[-42.801136847999885,60.80483633000015],[-42.82599850199991,60.80011627800014],[-42.92162024599989,60.79266998900005],[-43.12458248599992,60.827378648000135],[-43.50377356699997,60.84821198100011],[-43.52798417899987,60.84100983300008],[-43.51720130099997,60.83344147300012],[-43.506418423999946,60.82982005400007],[-43.41161048099991,60.827378648000135],[-43.397043423999975,60.82514069200006],[-43.3662003249999,60.81537506700011],[-43.35020911399991,60.81313711100013],[-43.296538865999935,60.811957098],[-43.28156490799989,60.80695221600017],[-43.273996548999946,60.79999420800008],[-43.272328253999945,60.793198960000055],[-43.27379309799991,60.788234768],[-43.27538001199994,60.78644440300011],[-43.26309160099987,60.78143952000006],[-43.24901282499993,60.779771226000044],[-43.235015428999866,60.782212632],[-43.22325598899991,60.78953685099999],[-43.20026607999992,60.79743073100015],[-43.0897517569999,60.80011627800014],[-42.97337805899991,60.78644440300011],[-42.960926886999914,60.78335195500013],[-42.92837480399993,60.76654694200011],[-42.856312628999916,60.75641510600015],[-42.82286536399994,60.74481842700014],[-42.80650794199994,60.74506256700009],[-42.79548092399989,60.747626044000086],[-42.78538977799994,60.74628327],[-42.7716365229999,60.73493073100003],[-42.778960740999906,60.72630442900014],[-42.83653723899988,60.684027411000116],[-42.87962805899991,60.663519598000065],[-42.93272864499994,60.65078359600002],[-42.98729407499991,60.648586330000015],[-43.061024542999945,60.666408596000096],[-43.27538001199994,60.67658112200003],[-43.26109778599993,60.66111888200011],[-43.24132239499991,60.65623607000004],[-43.19961503799996,60.656683661000145],[-42.90538489499994,60.62132396000011],[-42.90538489499994,60.62872955900012],[-42.92467200399989,60.63564687700002],[-42.92467200399989,60.64305247599999],[-42.90013587099989,60.6498884140001],[-42.852121548999975,60.67182038000014],[-42.82347571499991,60.678697007000046],[-42.803578253999916,60.68805573100017],[-42.791859503999916,60.69017161699999],[-42.74718176999997,60.69017161699999],[-42.767079230999876,60.676214911000116],[-42.81867428299992,60.651109117000125],[-42.82909094999991,60.639349677000055],[-42.82396399599989,60.61880117400001],[-42.826283331999946,60.61127350500005],[-42.88817298099994,60.60175202000014],[-43.14439856699994,60.60830312700012],[-43.14439856699994,60.60146719000012],[-43.10704505099988,60.592027085000026],[-42.98058020699994,60.594061591000035],[-42.86583411399991,60.579494533000016],[-42.82909094999991,60.58038971600008],[-42.84715735599994,60.567857164000095],[-42.86790930899994,60.56769440300003],[-42.88988196499994,60.572333075000145],[-42.91161048099991,60.57416413000014],[-42.92833411399993,60.568996486000124],[-42.96007239499991,60.55076732000005],[-42.97679602799994,60.54682038000006],[-43.14439856699994,60.54682038000006],[-43.126942511999886,60.52936432500011],[-43.09434973899994,60.52374909100011],[-43.02839107999989,60.525783596000124],[-43.04454505099994,60.50787995000017],[-43.07506262899989,60.50263092699999],[-43.10948645699992,60.50629303600014],[-43.16978919199997,60.52814362200009],[-43.18590247299994,60.537665106000176],[-43.19286048099994,60.54995351800012],[-43.2003474599999,60.55329010600014],[-43.23477128799993,60.54433828300013],[-43.24437415299991,60.54315827000004],[-43.27306067599997,60.557440497000115],[-43.30109615799998,60.5575218770001],[-43.30850175699996,60.54596588700014],[-43.27538001199994,60.525783596000124],[-43.164418097999906,60.495672919000114],[-43.14439856699994,60.477972723000015],[-43.227447068999936,60.47089264500012],[-43.51431230399993,60.534328518000144],[-43.54430091099991,60.54474518400006],[-43.56883704299992,60.560370184000035],[-43.64273027299993,60.626654364],[-43.66641191299993,60.65497467700013],[-43.66576087099989,60.67658112200003],[-43.66860917899993,60.68952057500006],[-43.675892706999946,60.710353908000016],[-43.68919837099986,60.72370026200004],[-43.710194464999915,60.71474844],[-43.712513800999965,60.697088934000085],[-43.702381964999915,60.6723493510001],[-43.688343878999945,60.64911530199999],[-43.626616990999935,60.570013739],[-43.620757615999906,60.559881903000054],[-43.658924933999884,60.55304596600003],[-43.67650305899991,60.55499909100016],[-43.70970618399991,60.56419505400005],[-44.08429928299992,60.593573309000064],[-44.10773678299989,60.60488515800013],[-44.14411373599998,60.63922760600017],[-44.17015540299985,60.651597398000106],[-44.19273841099994,60.64305247599999],[-44.186390753999916,60.62872955900012],[-44.16527258999989,60.61530182500011],[-44.159779425999936,60.60537344000004],[-44.2001846999999,60.60146719000012],[-44.16388912699992,60.57591380400013],[-44.02574622299997,60.57225169499999],[-43.97362219999994,60.563625393000066],[-43.94481360599991,60.553859768000116],[-43.87987219999994,60.54645416900014],[-43.85016842399992,60.539374091000084],[-43.8294978509999,60.52655670800005],[-43.81700598899988,60.510402736000096],[-43.80736243399991,60.493312893000144],[-43.795521613999966,60.477972723000015],[-43.795521613999966,60.47113678600009],[-43.825795050999936,60.45453522300012],[-43.83706620999993,60.450628973000114],[-43.804758266999926,60.442816473000114],[-43.78555253799996,60.45209381700008],[-43.781727667999945,60.47260163000014],[-43.795521613999966,60.49843984600006],[-43.769602016999954,60.52334219],[-43.72533118399991,60.52545807500012],[-43.42756100199992,60.4831403670001],[-43.3373103509999,60.45892975500002],[-43.327788865999906,60.454169012000094],[-43.31944739499993,60.44721100500012],[-43.31541907499988,60.43748607000008],[-43.32290605399993,60.43333567900013],[-43.34300696499988,60.430812893],[-43.46629798099985,60.394761460000055],[-43.487049933999934,60.38239166900003],[-43.47765051999991,60.380845444999984],[-43.47175045499998,60.378404039000046],[-43.45978756399995,60.36810944200012],[-43.54002844999988,60.3492699240001],[-43.56891842399989,60.33197663],[-43.58177649599991,60.32733795800006],[-43.59268144399991,60.32176341400004],[-43.59683183499993,60.31346263200008],[-43.591135219999956,60.30646393400009],[-43.579416469999956,60.30988190300008],[-43.56602942599997,60.31704336100013],[-43.55557206899987,60.320949611000124],[-43.53001868399991,60.32538483300011],[-43.45287024599986,60.355047919000135],[-43.42564856699993,60.35447825700008],[-43.38304602799991,60.337144272999986],[-43.35728919199997,60.33392975500015],[-43.3658748039999,60.34259674700003],[-43.38508053299995,60.354925848000065],[-43.39142818899998,60.36127350500003],[-43.398915167999945,60.373439846000096],[-43.39952551999991,60.37665436400014],[-43.39435787699989,60.37750885600015],[-43.36628170499989,60.39118073100017],[-43.31411699099996,60.40102773600002],[-43.17528235599991,60.40009186400012],[-43.17381751199994,60.395412502],[-43.18858801999991,60.39069245000009],[-43.213286912999905,60.38857656500009],[-43.1549373039999,60.36810944200012],[-43.15094967399992,60.3661156270001],[-43.15416419199988,60.36155833500014],[-43.16124426999993,60.35712311400005],[-43.16856848899994,60.355047919000135],[-43.20645097599989,60.355047919000135],[-43.32453365799995,60.38043854400017],[-43.35728919199997,60.37555573100009],[-43.3282771479999,60.351019598000086],[-43.31944739499993,60.347601630000085],[-43.306752081999974,60.34967682500009],[-43.294911261999914,60.3535016950001],[-43.28246008999989,60.355373440000065],[-43.165516730999855,60.31346263200008],[-43.151112433999884,60.326971747000144],[-43.13703365799995,60.32709381700012],[-43.103423631999924,60.31346263200008],[-43.11546790299994,60.297186591000056],[-43.132191535999965,60.286566473],[-43.15343176999994,60.28070709800015],[-43.17918860599988,60.278713283000016],[-43.11099199099988,60.26593659100016],[-43.0897517569999,60.258856512000094],[-43.099191860999895,60.24371979400011],[-43.11221269399991,60.23944733299999],[-43.20889238199993,60.250881252000156],[-43.22630774599989,60.258856512000094],[-43.25064042899996,60.24494049700004],[-43.3041072259999,60.22939687700013],[-43.3299861319999,60.217230536000145],[-43.28620357999992,60.21198151200015],[-43.156849738999966,60.21503327000015],[-43.12458248599992,60.19676341399998],[-43.13560950399997,60.19765859600007],[-43.14622962099992,60.19725169500008],[-43.15632076699998,60.19505442900007],[-43.165516730999855,60.19061920799999],[-43.124501105999855,60.18305084800014],[-43.110259568999936,60.18374258000009],[-43.11864173099991,60.17255280200008],[-43.123605923999946,60.1672223980001],[-43.130767381999895,60.162665106000155],[-43.110259568999936,60.155829169000135],[-43.13703365799995,60.148504950000145],[-43.16112219999988,60.155218817],[-43.183949347999885,60.16575755400006],[-43.20645097599989,60.17011139500015],[-43.20645097599989,60.162665106000155],[-43.195790167999945,60.154730536],[-43.193918423999975,60.146714585000055],[-43.20002193899995,60.13987864800005],[-43.213286912999905,60.13532135600009],[-43.197010870999854,60.13410065300018],[-43.16885331899988,60.12417226800007],[-43.1549373039999,60.12164948100015],[-43.147124803999894,60.12392812700013],[-43.140004035999965,60.128363348],[-43.130848761999886,60.131252346000124],[-43.11705481699997,60.12909577000012],[-43.106190558999884,60.12238190300008],[-43.09337317599994,60.110581773000106],[-43.08812415299988,60.0993513040001],[-43.100005662999905,60.09438711100007],[-43.11302649599992,60.092474677000105],[-43.12865149599989,60.08348216400001],[-43.13817298099988,60.08075592700011],[-43.163400844999956,60.08152903900004],[-43.248117641999926,60.09438711100007],[-43.309315558999884,60.0956078150001],[-43.33967037699995,60.101548570000105],[-43.36351477799994,60.114813544000135],[-43.3887426419999,60.10781484600006],[-43.487049933999934,60.13532135600009],[-43.55451412699992,60.13418203300016],[-43.58885657499988,60.138373114],[-43.60374915299994,60.15273672100007],[-43.6061091789999,60.16278717700014],[-43.611887173999946,60.1750348980001],[-43.61864173099988,60.18561432500014],[-43.62425696499989,60.19061920799999],[-43.64264889199992,60.19135163000011],[-43.648019985999895,60.18431224200007],[-43.644642706999974,60.166327216000035],[-43.66063391799989,60.154282945000105],[-43.697010870999854,60.156073309000085],[-43.76195227799994,60.17011139500015],[-43.78107662699989,60.16225820500015],[-43.80687415299994,60.16038646],[-43.94041907499994,60.174465236000124],[-43.99058997299991,60.19086334800014],[-44.141835089999915,60.18374258000009],[-44.15575110599988,60.179388739],[-44.16588294199994,60.17316315300003],[-44.17170162699989,60.17552317899999],[-44.17292232999992,60.19676341399998],[-44.168039516999954,60.21141185099999],[-44.15713456899996,60.22308991100009],[-44.143706834999875,60.23200104400003],[-43.99474036399994,60.30662669500004],[-43.99474036399994,60.31346263200008],[-44.0419815749999,60.31256745000017],[-44.05451412699992,60.320298569999984],[-44.063628709999904,60.341376044000114],[-44.063791469999956,60.34935130400007],[-44.06143144399991,60.35541413000005],[-44.06102454299992,60.361965236000124],[-44.066761847999885,60.37181224200007],[-44.07762610599988,60.38165924700009],[-44.08942623599995,60.387030341000134],[-44.100819464999915,60.38739655200005],[-44.11082923099988,60.38239166900003],[-44.087066209999904,60.35008372599999],[-44.082875128999945,60.341376044000114],[-44.086008266999926,60.333156643],[-44.09276282499988,60.321478583000115],[-44.09727942599991,60.3111839860001],[-44.09373938699994,60.30662669500004],[-44.08364824099988,60.302313544000135],[-44.08714758999988,60.29266998900009],[-44.0982559889999,60.283026434000114],[-44.111439581999946,60.278713283000016],[-44.123890753999966,60.2761091170001],[-44.137115037999905,60.26947663000005],[-44.14948482999995,60.26068756700009],[-44.15925045499998,60.25141022300012],[-44.17804928299992,60.278998114000146],[-44.212391730999876,60.312079169000086],[-44.24893144399993,60.33543528899998],[-44.27464758999989,60.33392975500015],[-44.26646887899997,60.3172875020001],[-44.230580206999974,60.28241608300006],[-44.22411048099988,60.26870351800012],[-44.22085527299993,60.249335028000125],[-44.22419186099995,60.232163804],[-44.237416144999884,60.22467682500012],[-44.305490688999924,60.23749420800005],[-44.31688391799991,60.238348700000145],[-44.31541907499994,60.22467682500012],[-44.297515428999894,60.21259186400012],[-44.2616267569999,60.19676341399998],[-44.2616267569999,60.19061920799999],[-44.29076087099995,60.16620514500014],[-44.308583136999914,60.155585028000125],[-44.32994544199988,60.149603583],[-44.35277258999989,60.14940013200013],[-44.401356574999845,60.15550364800013],[-44.426136847999906,60.155829169000135],[-44.45775305899991,60.14557526200012],[-44.48131262899994,60.12372467700009],[-44.49608313699994,60.09479401200018],[-44.501210089999944,60.06329987200014],[-44.51549231699994,60.03880442900013],[-44.54946855399987,60.009995835],[-44.59019934799994,59.98908112200006],[-44.62441972599992,59.98794179900001],[-44.65721594999994,60.00324127800015],[-44.66832434799997,60.015611070000105],[-44.6725154289999,60.03603750200007],[-44.66551673099991,60.088853257000046],[-44.66567949099988,60.10736725500005],[-44.68761145699992,60.10032786700002],[-44.702748175999915,60.08978913000014],[-44.711333787999905,60.074367580000015],[-44.71410071499989,60.05280182500008],[-44.71271725199989,60.02399323100014],[-44.71422278599994,60.007269598000114],[-44.72663326699998,59.99945709800013],[-44.758208787999955,59.99750397300009],[-44.77814693899995,60.003078518],[-44.80190995999996,60.016587632000075],[-44.82188880099994,60.033636786000116],[-44.83751380099991,60.06492747599999],[-44.85423743399994,60.08698151200018],[-44.87279212099995,60.10675690300012],[-44.88536536399994,60.114813544000135],[-44.87889563699994,60.12441640800002],[-44.844471808999906,60.149603583],[-44.87165279899992,60.153876044000114],[-44.89818274599989,60.145209052000105],[-44.918365037999905,60.127386786000116],[-44.92638098899994,60.104315497000165],[-44.90965735599991,60.08397044499999],[-44.84544837099988,60.0411644550001],[-44.844471808999906,60.019273179000045],[-44.867665167999945,60.03579336100013],[-44.942494269999905,60.031561591000106],[-44.97484290299994,60.03974030200011],[-44.96296139199998,60.05243561400009],[-44.9537247389999,60.06647370000004],[-44.968983527999875,60.072577216000035],[-44.97484290299994,60.073919989],[-44.97484290299994,60.08075592700011],[-44.96812903599988,60.07819245000012],[-44.946888800999915,60.073919989],[-44.95494544199994,60.08307526200017],[-44.97028561099998,60.09088776200017],[-45.02041581899988,60.10565827000006],[-45.03937740799989,60.10736725500005],[-45.04918372299994,60.10537344000012],[-45.05443274599992,60.10089752800014],[-45.057240363999966,60.09638092700011],[-45.059885219999956,60.09438711100007],[-45.067494269999884,60.09638092700011],[-45.09007727799988,60.10537344000012],[-45.101144985999895,60.10736725500005],[-45.1158341139999,60.103420315000086],[-45.114816860999944,60.09454987200003],[-45.104237433999884,60.08539459800015],[-45.09024003799993,60.08075592700011],[-45.109771287999905,60.07050202],[-45.12922115799992,60.07070547100015],[-45.17284094999991,60.087551174000154],[-45.15904700399991,60.10394928600006],[-45.07042395699992,60.13532135600009],[-45.09007727799988,60.147040106000176],[-45.081044074999845,60.155585028000125],[-45.05801347599989,60.16087474199999],[-44.93382727799994,60.17316315300003],[-44.90855872299997,60.18134186400014],[-44.75511633999989,60.20425039300015],[-44.76146399599992,60.21841054900006],[-44.772043423999975,60.22158437700013],[-44.79942786399994,60.217230536000145],[-44.80894934799991,60.21401601800009],[-44.81834876199986,60.20819733300011],[-44.82774817599997,60.205267645],[-44.83702551999994,60.21108633000016],[-44.83706620999993,60.2174339860001],[-44.832427537999905,60.22508372600011],[-44.81627356699994,60.24481842700005],[-44.7420955069999,60.27411530200008],[-44.736154751999976,60.27997467700011],[-44.73460852799994,60.29979075700014],[-44.72972571499986,60.31513092699999],[-44.72240149599986,60.328436591000106],[-44.71084550699993,60.33783600500011],[-44.69334876199988,60.341376044000114],[-44.62873287699992,60.37457916900003],[-44.617298956999974,60.385443427000105],[-44.610218878999916,60.41079336100013],[-44.590931769999884,60.43317291900017],[-44.56289628799996,60.44806549700002],[-44.52916419199997,60.450628973000114],[-44.532541469999984,60.45514557500017],[-44.53453528599994,60.4584821640001],[-44.537180141999926,60.46149323100011],[-44.54283606699991,60.464911200000024],[-44.51244055899994,60.47516510600015],[-44.50133216099991,60.481878973],[-44.501210089999944,60.49225495000009],[-44.4923396479999,60.498928127000156],[-44.466420050999886,60.525783596000124],[-44.47264563699986,60.53717682500009],[-44.47411048099991,60.548570054000045],[-44.47175045499994,60.559027411000145],[-44.466420050999886,60.56732819200011],[-44.52550208199992,60.49843984600006],[-44.553578253999916,60.49359772300009],[-44.57750403599988,60.48094310100011],[-44.617298956999974,60.443793036000024],[-44.64159094999985,60.40949127800014],[-44.65859941299993,60.39057038000011],[-44.676258917999945,60.38239166900003],[-44.70103919199991,60.37726471600011],[-44.72935950399994,60.36424388200011],[-44.75597083199989,60.34642161700005],[-44.77554277299995,60.32709381700012],[-44.79735266799992,60.29791901200014],[-44.81346594999988,60.289292710000055],[-44.840728318999965,60.28620026200018],[-44.85924231699988,60.27838776200018],[-44.867665167999945,60.26032135600015],[-44.8720596999999,60.239732164000124],[-44.8785701159999,60.22467682500012],[-44.89631100199991,60.21426015800013],[-44.95006262899997,60.19912344000012],[-44.971099412999905,60.19676341399998],[-45.057240363999966,60.202337958],[-45.084095831999946,60.19676341399998],[-45.11375891799989,60.1767438820001],[-45.14313717399989,60.15045807500009],[-45.173817511999886,60.13361237200009],[-45.20759029899997,60.14215729400011],[-45.198150193999965,60.15542226800015],[-45.171945766999926,60.17194245000003],[-45.15916907499988,60.18374258000009],[-45.179351365999906,60.18036530200008],[-45.19762122299997,60.17389557500017],[-45.20685787699995,60.17560455900017],[-45.20018469999988,60.19676341399998],[-45.18732662699995,60.2126325540001],[-45.14305579299992,60.251206772999986],[-45.12877356699991,60.258856512000094],[-45.11558997299997,60.263128973000114],[-45.09239661399993,60.281927802000084],[-45.080637173999946,60.28620026200018],[-45.06871497299991,60.287827867000104],[-45.00377356699993,60.31183502800015],[-44.95152747299994,60.319891669000086],[-44.92638098899994,60.32709381700012],[-44.94200598899994,60.34650299700002],[-44.93980872299994,60.36456940300007],[-44.92650305899991,60.38190338700004],[-44.90904700399994,60.39911530200006],[-44.90343176999997,60.407660223000065],[-44.89785722599996,60.427069403000175],[-44.892241990999935,60.436957098000086],[-44.883697068999936,60.445257880000085],[-44.87108313699994,60.45498281500012],[-44.844471808999906,60.47113678600009],[-44.844471808999906,60.477972723000015],[-44.89093990799995,60.468207098000065],[-44.94033769399991,60.464911200000024],[-44.953195766999954,60.47064850499999],[-44.93887285099995,60.483587958],[-44.816517706999974,60.55646393400004],[-44.81236731699994,60.565008856000155],[-44.80247962099992,60.57029857000013],[-44.791127081999946,60.57469310100011],[-44.782378709999875,60.58038971600008],[-44.77627519399988,60.59048086100016],[-44.768381313999924,60.61163971600017],[-44.76130123599995,60.62132396000011],[-44.7723689439999,60.65623607000004],[-44.72679602799994,60.68716054900009],[-44.62474524599986,60.73114655200011],[-44.62413489499991,60.7359886740001],[-44.6253962879999,60.73753489800013],[-44.62816321499985,60.73773834800009],[-44.631581183999884,60.73867422100006],[-44.63902747299994,60.73867422100006],[-44.71532141799989,60.723822333],[-44.72716223899994,60.71474844],[-44.741078253999945,60.69476959800012],[-44.80260169199991,60.684515692],[-44.816517706999974,60.673163153000026],[-44.82746334499993,60.639349677000055],[-44.844471808999906,60.60146719000012],[-44.85814368399994,60.58661530200005],[-44.87804114499994,60.56915924700009],[-45.00035559799994,60.49070872600005],[-45.04393469999985,60.47231679900002],[-45.14313717399989,60.45868561400006],[-45.18708248599992,60.443793036000024],[-45.21422278599994,60.43895091400013],[-45.23949133999989,60.44196198100003],[-45.262440558999884,60.45111725500011],[-45.28270423099988,60.464911200000024],[-45.26744544199991,60.471747137000044],[-45.24852454299989,60.477972723000015],[-45.24852454299989,60.48541901200017],[-45.26716061099998,60.49437083500002],[-45.260121222999906,60.504868882000075],[-45.24396725199995,60.51483795800006],[-45.23485266799986,60.52236562700012],[-45.2303767569999,60.539292710000105],[-45.218861456999946,60.5561384140001],[-45.20335852799985,60.56903717700011],[-45.18675696499989,60.57416413000014],[-45.163563605999855,60.586330471000124],[-45.08299719999991,60.64398834800009],[-45.06297766799994,60.66290924700009],[-45.091867641999954,60.65607330900017],[-45.17284094999991,60.62132396000011],[-45.2017716139999,60.633937893],[-45.21068274599986,60.63564687700002],[-45.22248287699992,60.633368231000034],[-45.23460852799991,60.62848541900017],[-45.23997962099989,60.62360260600009],[-45.2138565749999,60.615057684000185],[-45.21117102799994,60.600653387000094],[-45.21776282499991,60.584784247000165],[-45.228098110999916,60.57416413000014],[-45.24351966099996,60.585191147999986],[-45.255034959999904,60.59162018400009],[-45.26520748599992,60.59096914300015],[-45.27647864499994,60.58038971600008],[-45.27643795499995,60.576483466000106],[-45.27513587099995,60.570013739],[-45.27603105399993,60.561916408000066],[-45.28270423099988,60.55304596600003],[-45.29010982999998,60.54970937700009],[-45.31753495999993,60.541083075000095],[-45.35033118399994,60.53510163000009],[-45.39366614499991,60.5163434920001],[-45.43663489499997,60.509833075000024],[-45.49559485599991,60.49225495000009],[-45.48363196499989,60.50560130400011],[-45.460560675999915,60.521185614],[-45.43529212099989,60.53400299700002],[-45.41641191299993,60.539374091000084],[-45.39810136599987,60.54848867400007],[-45.387318488999874,60.56932200700005],[-45.3797908189999,60.592474677],[-45.37144934799994,60.60830312700012],[-45.32567298099994,60.634711005000106],[-45.16661536399994,60.67658112200003],[-45.129017706999946,60.70209381700012],[-45.113880988999966,60.717922268000066],[-45.12193762899989,60.725002346000124],[-45.145863410999965,60.720038153000175],[-45.213734503999945,60.684027411000116],[-45.23843339799993,60.678290106000034],[-45.30695553299998,60.67658112200003],[-45.314279751999976,60.68683502800015],[-45.31419837099989,60.70783112200011],[-45.32144120999993,60.72540924700003],[-45.35094153599991,60.725002346000124],[-45.374379035999965,60.70856354400003],[-45.37287350199992,60.68817780200005],[-45.36546790299994,60.667222398000106],[-45.37144934799994,60.649237372000144],[-45.39635169199988,60.64020416900014],[-45.427723761999914,60.636379299000126],[-45.45518958199997,60.62872955900012],[-45.46788489499994,60.608832098000036],[-45.46637936099998,60.58209870000008],[-45.468251105999855,60.57416413000014],[-45.47752844999991,60.566636460000076],[-45.48265540299991,60.572333075000145],[-45.48550370999996,60.582261460000055],[-45.48814856699994,60.587836005000085],[-45.502674933999884,60.58771393400009],[-45.50877844999988,60.58397044500008],[-45.51545162699992,60.56732819200011],[-45.51626542899993,60.56268952],[-45.51463782499991,60.55158112200014],[-45.51545162699992,60.54682038000006],[-45.51886959499993,60.54218170800014],[-45.5267634759999,60.536037502000156],[-45.53823808499996,60.52423737200009],[-45.556630011999886,60.51251862200011],[-45.56383216099994,60.50584544500005],[-45.56688391799992,60.495917059000064],[-45.56725012899994,60.484808661000116],[-45.57087154899989,60.47553131700006],[-45.58372962099991,60.47113678600009],[-45.593088344999956,60.47467682500014],[-45.59605872299997,60.484279690000115],[-45.596424933999884,60.495917059000064],[-45.598011847999906,60.50584544500005],[-45.604237433999884,60.511175848000036],[-45.6136775379999,60.52138906500015],[-45.61363684799991,60.530707098],[-45.59117591099991,60.5331891950001],[-45.59117591099991,60.539374091000084],[-45.60912024599995,60.53729889500006],[-45.642160610999895,60.52789948100007],[-45.656076626999976,60.525783596000124],[-45.67442786399993,60.53046295800006],[-45.665150519999884,60.54092031500012],[-45.62230383999988,60.56232330900017],[-45.60789954299992,60.562648830000015],[-45.596180792999945,60.56586334800006],[-45.59117591099991,60.58038971600008],[-45.59593665299991,60.58836497600005],[-45.60741126199994,60.5955264340001],[-45.621083136999886,60.600287177],[-45.63215084499993,60.60146719000012],[-45.62246660099996,60.587836005000085],[-45.62547766799985,60.57697174700009],[-45.63768469999994,60.56989166900003],[-45.69074459499995,60.56582265800007],[-45.70103919199997,60.56732819200011],[-45.708485480999855,60.57184479400017],[-45.723215298999946,60.585028387000115],[-45.73143469999994,60.587836005000085],[-45.72984778599991,60.592678127000156],[-45.67992102799988,60.62132396000011],[-45.648060675999936,60.62995026200004],[-45.63377844999994,60.63711172100006],[-45.62466386599993,60.649237372000144],[-45.67796790299991,60.64142487200017],[-45.68736731699994,60.64305247599999],[-45.68736731699994,60.63564687700002],[-45.75450598899991,60.63446686400009],[-45.77082271999993,60.631781317],[-45.78538977799985,60.62494538],[-45.80036373599998,60.61172109600015],[-45.810170050999915,60.59609609600007],[-45.80793209499992,60.58612702000006],[-45.80113684799991,60.57697174700009],[-45.79723059799991,60.563625393000066],[-45.80284583199992,60.55097077],[-45.815052863999874,60.55377838700015],[-45.826893683999856,60.56232330900017],[-45.83136959499993,60.56732819200011],[-45.84752356699997,60.56586334800006],[-45.852284308999884,60.560451565],[-45.85326087099995,60.551459052],[-45.85802161399993,60.539374091000084],[-45.86705481699994,60.52252838700018],[-45.87169348899988,60.518947658000016],[-45.88109290299991,60.51837799700014],[-45.88902747299996,60.52362702000012],[-45.89264889199992,60.530015367000054],[-45.88304602799985,60.53876373900012],[-45.89053300699993,60.551214911000145],[-45.90953528599994,60.570746161000116],[-45.92446855399987,60.576483466000106],[-45.96471106699994,60.57640208500011],[-45.98159745999993,60.58038971600008],[-45.90880286399991,60.605129299000076],[-45.89281165299991,60.61513906500015],[-45.88158118399988,60.614488023000106],[-45.84341386599993,60.62661367400001],[-45.80724036399991,60.63312409100009],[-45.76561438699994,60.65232982000005],[-45.74543209499989,60.656683661000145],[-45.70274817599997,60.6607933610001],[-45.65566972599987,60.67145416900002],[-45.61143958199992,60.686672268],[-45.57750403599996,60.703924872000115],[-45.6080216139999,60.71149323100015],[-45.642689581999974,60.70083242400012],[-45.678049282999886,60.684759833000136],[-45.71060136599996,60.67658112200003],[-45.785511847999906,60.677313544000164],[-45.82315019399991,60.68329498900009],[-45.85802161399993,60.697699286000145],[-45.840240037999955,60.70404694200009],[-45.80186926999994,60.70123932500003],[-45.78294837099992,60.703924872000115],[-45.76732337099995,60.711737372000094],[-45.737538214999915,60.73126862200018],[-45.721506313999924,60.73867422100006],[-45.57750403599996,60.76654694200011],[-45.57750403599996,60.77277252800017],[-45.610951300999915,60.77191803600009],[-45.623280402999875,60.773749091000134],[-45.62466386599993,60.779608466000084],[-45.62800045499998,60.783596096000075],[-45.62368730399987,60.786566473000086],[-45.58153235599993,60.79938385600012],[-45.57408606699994,60.80011627800014],[-45.55406653599988,60.80463288],[-45.53888912699989,60.81574127800003],[-45.525054490999906,60.829250393],[-45.509266730999855,60.84100983300008],[-45.49331620999993,60.845689195000105],[-45.458159959999875,60.85000234600001],[-45.443714972999906,60.85809967700011],[-45.41982988199996,60.88202545799999],[-45.41340084499993,60.884344794000135],[-45.39561926999994,60.88865794500004],[-45.38878333199994,60.89256419500005],[-45.376576300999965,60.8979352890001],[-45.3059789699999,60.90452708499999],[-45.2587784499999,60.90253327000014],[-45.255034959999904,60.907904364],[-45.264230923999946,60.91986725500014],[-45.28001868399991,60.931830145000056],[-45.29629472599993,60.9372419290001],[-45.31436113199996,60.93325429900012],[-45.33096269399991,60.92597077000012],[-45.34732011599993,60.922552802000105],[-45.36461341099994,60.93040599200002],[-45.34154212099988,60.94232819200012],[-45.33385169199994,60.94782135600014],[-45.330881313999924,60.95571523600013],[-45.329701300999915,60.968491929],[-45.33063717399989,60.98041413000011],[-45.33385169199994,60.98566315300012],[-45.355376756999874,60.99233633000015],[-45.37490800699996,61.00446198100015],[-45.39541581899991,61.01064687700012],[-45.41982988199996,60.99933502800006],[-45.41490637899989,60.990668036000145],[-45.40916907499991,60.984930731000176],[-45.39561926999994,60.97479889500012],[-45.387928839999944,60.96308014500011],[-45.39378821499989,60.95693594000015],[-45.40575110599991,60.95294830900018],[-45.41641191299993,60.94782135600014],[-45.43163001199991,60.93602122599999],[-45.4700414699999,60.91543203300015],[-45.48814856699994,60.90997955900013],[-45.48672441299987,60.88959381700015],[-45.50890051999994,60.872626044000164],[-45.67992102799988,60.79266998900005],[-45.70103919199997,60.777044989000096],[-45.71336829299992,60.769964911000116],[-45.72834225199994,60.76654694200011],[-45.774159308999856,60.76337311400014],[-45.81867428299995,60.75177643400003],[-45.84740149599992,60.749904690000065],[-45.87486731699994,60.75604889500014],[-45.899647589999915,60.77277252800017],[-45.88585364499991,60.78070709800012],[-45.83136959499993,60.80011627800014],[-45.795806443999936,60.818060614],[-45.77790279899988,60.82396067900013],[-45.756255662999905,60.827378648000135],[-45.77301998599992,60.84332916900015],[-45.802357550999915,60.84894440300015],[-45.87018795499992,60.84739817900011],[-45.87791907499994,60.846136786],[-45.89281165299991,60.84100983300008],[-45.916859503999916,60.82953522300012],[-45.928537563999924,60.82782623900012],[-45.940663214999915,60.83486562700001],[-45.93374589799993,60.83486562700001],[-45.93374589799993,60.84100983300008],[-45.95579993399991,60.83649323100003],[-45.980458136999914,60.82221100500014],[-46.00059973899994,60.802883205000015],[-46.00890051999994,60.783026434000085],[-46.00890051999994,60.741685289000074],[-46.015980597999885,60.73261139500006],[-46.03213456899993,60.728094794000114],[-46.049631313999896,60.72540924700003],[-46.060658331999946,60.72158437700004],[-46.15973873599992,60.73114655200011],[-46.1810603509999,60.73663971600005],[-46.20506751199994,60.74664948100013],[-46.220082160999965,60.76105377800009],[-46.214955206999946,60.779608466000084],[-46.17577063699991,60.791571356000034],[-46.06037350199992,60.79702383000015],[-46.010487433999856,60.839056708000136],[-45.889800584999904,60.87368398600002],[-45.851226365999906,60.895697333000115],[-45.866525844999984,60.900091864000025],[-45.88512122299997,60.89655182500003],[-45.9576716789999,60.86835358300005],[-45.96727454299985,60.87051015800016],[-45.97248287699995,60.87518952000006],[-45.97533118399991,60.87986888199999],[-45.97813880099994,60.88202545799999],[-45.988677537999905,60.88287995000008],[-45.99307206899991,60.883734442],[-45.99779212099989,60.88222890800013],[-46.00890051999994,60.87579987200002],[-46.01427161399988,60.870306708],[-46.021148240999906,60.857245184000035],[-46.09142005099994,60.820542710000105],[-46.10789954299992,60.82746002800012],[-46.11611894399991,60.82461172100006],[-46.12059485599988,60.81785716400004],[-46.1255997389999,60.81313711100013],[-46.15538489499993,60.808172919000086],[-46.18736731699994,60.80695221600017],[-46.19493567599997,60.811265367000075],[-46.187855597999906,60.82086823100006],[-46.17442786399991,60.830511786000116],[-46.16315670499991,60.83486562700001],[-46.15062415299994,60.837103583],[-45.88536536399991,60.93040599200002],[-45.51024329299991,60.98224518400009],[-45.468251105999855,61.00556061400001],[-45.46458899599989,61.01093170800006],[-45.458119269999884,61.02692291900014],[-45.45457923099991,61.0328636740001],[-45.44302324099988,61.04319896],[-45.431263800999915,61.0497093770001],[-45.41828365799992,61.05304596600011],[-45.402740037999905,61.053941148000106],[-45.37755286399994,61.060248114000146],[-45.327056443999936,61.088039455],[-45.30003821499989,61.09430573100014],[-45.29133053299989,61.095200914000074],[-45.26618404899992,61.101019598],[-45.2587784499999,61.104885158],[-45.25426184799997,61.11611562700001],[-45.25743567599994,61.127264716000056],[-45.26211503799996,61.13837311400007],[-45.262196417999945,61.14956289300006],[-45.24559485599988,61.1642113300001],[-45.21983801999994,61.17820872600005],[-45.203236456999974,61.19330475500005],[-45.213734503999945,61.21100495000014],[-45.24852454299989,61.19110748900006],[-45.28172766799992,61.16014232000013],[-45.292876756999924,61.155747789000046],[-45.30797278599994,61.14630768400003],[-45.34268144399991,61.10464101800006],[-45.36461341099994,61.09430573100014],[-45.38109290299991,61.101223049000076],[-45.403960740999935,61.11810944200006],[-45.42418372299994,61.13764069200012],[-45.43293209499993,61.15265534100014],[-45.43512936099992,61.158514716000106],[-45.440052863999966,61.161444403000026],[-45.44493567599994,61.163397528000175],[-45.44713294199994,61.166571356000034],[-45.44493567599994,61.17267487200003],[-45.43512936099992,61.18162669500005],[-45.43293209499993,61.187404690000115],[-45.437367316999904,61.19818756700012],[-45.44835364499994,61.205755927000084],[-45.47447669199991,61.21845123900011],[-45.50503495999993,61.246527411000145],[-45.51284745999993,61.24762604400008],[-45.51545162699992,61.22833893400006],[-45.511708136999886,61.22040436400008],[-45.505360480999855,61.214667059000114],[-45.503244594999956,61.20726146000012],[-45.52057857999995,61.18235911699998],[-45.52106686099992,61.17194245000008],[-45.51634680899991,61.161566473],[-45.49083411399991,61.124823309000085],[-45.48814856699994,61.114732164000046],[-45.486887173999946,61.11298248900014],[-45.4845271479999,61.11188385600009],[-45.483998175999915,61.108791408000016],[-45.48814856699994,61.10114166900008],[-45.49205481699994,61.10040924700014],[-45.54295813699986,61.07929108300015],[-45.618478969999984,61.019842841000084],[-45.64460201699992,61.006781317000126],[-45.77692623599992,60.96051666900002],[-45.78978430899994,60.957709052000084],[-45.80557206899987,60.95941803600009],[-45.826527472999935,60.969061591000134],[-45.84129798099991,60.97138092700011],[-45.96410071499989,60.92890045800014],[-46.03282630099988,60.91388580900012],[-46.070301886999914,60.9372419290001],[-46.04458574099996,60.93797435100005],[-46.03620357999992,60.9372419290001],[-46.048980272999955,60.947739976],[-46.0643611319999,60.951605536],[-46.07945716099991,60.95343659100017],[-46.09142005099994,60.957709052000084],[-46.099110480999855,60.96645742400015],[-46.1002498039999,60.97553131700015],[-46.092640753999945,60.98273346600008],[-46.04287675699996,60.99160390800013],[-45.948068813999896,61.0328636740001],[-45.77725175699993,61.06354401200018],[-45.73961341099994,61.06403229400018],[-45.704741990999906,61.068793036000066],[-45.67992102799988,61.088080145],[-45.73395748599995,61.08624909100003],[-45.76329505099997,61.088690497000144],[-45.77611243399991,61.09772370000017],[-45.76427161399993,61.10565827000012],[-45.70274817599997,61.121405341000084],[-45.714995897999955,61.12579987200017],[-45.725209113999874,61.13353099199999],[-45.73452714799993,61.14272695500016],[-45.717030402999875,61.14704010600015],[-45.69078528599993,61.14866771],[-45.66588294199991,61.14740631700009],[-45.65265865799998,61.14272695500016],[-45.6438695949999,61.144435940000065],[-45.62987219999985,61.1420759140001],[-45.618763800999915,61.144964911000145],[-45.618478969999984,61.155747789000046],[-45.63019771999995,61.160345770000085],[-45.694203253999945,61.16998932500014],[-45.7259822259999,61.169175523000135],[-45.73729407499988,61.1642113300001],[-45.75255286399994,61.15265534100014],[-45.76329505099997,61.14647044499999],[-45.77232825399997,61.14712148600013],[-45.78075110599994,61.153143622000144],[-45.78978430899994,61.16323476800002],[-45.775746222999885,61.179917710000055],[-45.78587805899994,61.19159577000014],[-45.82872473899994,61.210394598],[-45.86827551999997,61.21845123900011],[-45.872303839999944,61.222723700000145],[-45.86961829299986,61.23208242400007],[-45.86286373599992,61.241441148000106],[-45.84508216099994,61.251450914000095],[-45.79723059799991,61.287298895],[-45.7783096999999,61.29816315300009],[-45.735666469999956,61.31655508000013],[-45.714019334999875,61.320868231000034],[-45.714019334999875,61.32831452],[-45.76724199099996,61.33490631700009],[-45.79076087099992,61.33515045800011],[-45.81712805899991,61.32831452],[-45.86485755099997,61.30719635600009],[-45.88654537699994,61.28388092699999],[-45.88906816299996,61.27985260600003],[-45.923207160999965,61.24233633],[-45.93838456899993,61.233221747000115],[-45.955189581999946,61.232977606000176],[-46.00487219999988,61.24310944200011],[-46.034413214999915,61.261419989],[-46.0504451159999,61.265611070000105],[-46.066395636999914,61.26430898600002],[-46.11192786399988,61.252590236000124],[-46.11192786399988,61.24575429900001],[-46.08267167899996,61.24249909100018],[-46.029286261999914,61.227972723000114],[-45.987904425999886,61.22174713700014],[-45.97166907499985,61.214748440000086],[-45.960316535999965,61.205755927000084],[-45.9610896479999,61.19733307500003],[-45.93163001199991,61.18891022300006],[-45.89541581899991,61.18854401200014],[-45.861398891999954,61.18402741100001],[-45.83820553299992,61.16323476800002],[-45.836415167999945,61.152044989],[-45.840321417999945,61.141058661000145],[-45.849761522999955,61.132473049000126],[-45.86485755099997,61.129095770000035],[-45.954213019999884,61.1364606790001],[-45.948719855999855,61.12376536700005],[-45.93854732999992,61.11371491100009],[-45.92601477799991,61.10614655200011],[-45.91331946499994,61.10114166900008],[-45.91331946499994,61.09430573100014],[-46.003041144999884,61.059312242000075],[-46.032785610999895,61.053941148000106],[-46.10582434799991,61.04922109600001],[-46.14366614499994,61.05243561400005],[-46.173939581999946,61.06757233300005],[-46.16759192599991,61.082953192],[-46.180490688999924,61.088690497000144],[-46.26183020699989,61.08905670800008],[-46.281239386999914,61.085150458000086],[-46.296864386999886,61.07379791900011],[-46.28062903599993,61.06932200700005],[-46.228627081999974,61.06757233300005],[-46.21027584499992,61.06167226800004],[-46.17271887899991,61.044012762000094],[-46.14940344999991,61.03815338700015],[-46.13613847599989,61.02875397300012],[-46.11681067599994,61.0232608090001],[-46.12218176999991,61.01581452000011],[-46.139230923999975,61.00556061400001],[-46.15758216099991,60.998480536000145],[-46.20221920499989,60.99115631700012],[-46.22667395699992,60.97703685100011],[-46.23570716099994,60.97894928600006],[-46.24449622299991,60.98322174700017],[-46.25218665299993,60.98566315300012],[-46.256988084999904,60.98891836100016],[-46.255116339999944,60.99624258000016],[-46.248443162999905,61.008937893000116],[-46.25129146999993,61.02167389500006],[-46.25890051999997,61.03522370000003],[-46.270130988999966,61.04682038000005],[-46.2838028639999,61.053941148000106],[-46.308094855999876,61.046454169000064],[-46.31737219999994,61.04653554900004],[-46.325103318999936,61.05060455900017],[-46.341867641999954,61.07070547100013],[-46.35704505099994,61.079657294000135],[-46.37572180899994,61.08466217699999],[-46.412953253999916,61.088080145],[-46.40636145699994,61.080959377000156],[-46.37946529899997,61.06012604400017],[-46.382150844999956,61.04743073100012],[-46.392404751999976,61.04083893400003],[-46.40636145699994,61.03896719000007],[-46.42039954299989,61.04026927300007],[-46.44432532499988,61.056301174000154],[-46.45653235599994,61.0595563820001],[-46.46133378799993,61.04653554900004],[-46.45470130099994,61.03676992400007],[-46.412953253999916,61.012355861000124],[-46.44684811099997,61.000799872000115],[-46.45763098899988,60.99933502800006],[-46.46812903599994,61.00250885600011],[-46.48790442599997,61.01666901200003],[-46.498890753999945,61.019842841000084],[-46.54149329299989,61.02545807500008],[-46.5577693349999,61.022121486000074],[-46.57803300699993,61.00556061400001],[-46.551584438999924,60.990423895],[-46.54417883999985,60.9801292990001],[-46.550160285999965,60.964544989],[-46.544097459999875,60.952215887000065],[-46.558583136999914,60.95600006700006],[-46.59935462099988,60.97671133000007],[-46.61384029899992,60.98672109600006],[-46.63174394399988,60.992621161],[-46.65314693899992,60.98566315300012],[-46.638661261999886,60.97475820500013],[-46.59007727799993,60.93036530200002],[-46.57803300699993,60.90997955900013],[-46.59276282499991,60.914455471000096],[-46.60484778599991,60.923000393],[-46.62645423099991,60.94472890800007],[-46.629994269999884,60.930812893],[-46.638295050999965,60.91299062700013],[-46.65160071499989,60.903225002000106],[-46.67052161399991,60.91331614800005],[-46.68724524599995,60.9251976580001],[-46.73021399599989,60.94110748900012],[-46.74937903599996,60.95087311400006],[-46.744130011999886,60.93720123900011],[-46.732411261999886,60.92715078300012],[-46.71711178299992,60.92047760600009],[-46.70091712099989,60.91681549700005],[-46.70091712099989,60.90997955900013],[-46.72569739499994,60.91425202000012],[-46.77269446499988,60.9330101580001],[-46.7971085279999,60.9372419290001],[-46.88654537699992,60.9372419290001],[-46.870838995999854,60.923773505000106],[-46.80549068899998,60.91860586100005],[-46.77977454299992,60.90619538],[-46.760894334999904,60.89996979400005],[-46.73058020699992,60.894110419000086],[-46.7103165359999,60.88670482000011],[-46.72142493399994,60.87579987200002],[-46.720041469999956,60.85635000200012],[-46.74657141799992,60.84275950700008],[-46.81078040299985,60.827378648000135],[-46.824696417999945,60.82074616100009],[-46.85106360599994,60.80361562700013],[-46.86229407499994,60.80011627800014],[-46.94115149599988,60.80011627800014],[-46.94115149599988,60.80695221600017],[-46.908802863999966,60.815008856000084],[-46.894520636999886,60.822577216000134],[-46.88654537699992,60.83486562700001],[-46.949940558999856,60.822007554],[-46.978138800999915,60.82013580900012],[-46.96910559799991,60.83486562700001],[-46.888498501999976,60.85781484600009],[-46.84557044199991,60.88202545799999],[-46.896473761999914,60.87579987200002],[-46.93272864499994,60.86188385600014],[-46.95152747299988,60.867743231000084],[-46.96165930899994,60.86835358300005],[-46.98241126199994,60.85789622600008],[-47.00137285099996,60.843207098000065],[-47.02106686099998,60.834295966000056],[-47.04356848899988,60.84100983300008],[-47.039865688999924,60.84275950700008],[-47.03917395699988,60.843207098000065],[-47.03917395699988,60.844224351000136],[-47.03734290299991,60.84788646],[-47.056507941999875,60.860785223],[-47.044178839999944,60.87909577000006],[-47.017201300999886,60.89545319200008],[-46.967640753999945,60.90741608300011],[-46.93272864499994,60.92767975500011],[-46.91388912699989,60.93040599200002],[-46.943470831999946,60.958400783000016],[-46.99160722599989,60.95278554900001],[-47.04198157499985,60.939601955000064],[-47.07835852799994,60.94472890800007],[-47.063343878999916,60.951076565],[-47.02196204299988,60.962591864000146],[-47.00259355399996,60.964544989],[-47.029855923999946,60.97475820500013],[-47.08267167899993,60.96710846600011],[-47.17393958199991,60.9372419290001],[-47.20738684799997,60.91209544500013],[-47.227284308999884,60.90033600500006],[-47.24901282499994,60.895697333000115],[-47.262521938999924,60.896918036000145],[-47.26781165299988,60.90037669500005],[-47.27057857999995,60.906805731000155],[-47.28514563699988,60.930853583],[-47.2889705069999,60.93964264500006],[-47.29059811099992,60.94782135600014],[-47.30040442599994,60.96108633000009],[-47.322173631999895,60.955145575000174],[-47.34434973899996,60.942084052],[-47.355458136999914,60.933823960000026],[-47.37157141799989,60.929632880000085],[-47.45327714799987,60.93886953300013],[-47.458241339999915,60.94139232000004],[-47.46336829299992,60.940904039000074],[-47.47215735599991,60.933823960000026],[-47.48070227799991,60.929103908000094],[-47.49315344999994,60.9256859400001],[-47.525502081999946,60.921576239000146],[-47.53746497299988,60.91771067900014],[-47.54670162699995,60.91233958500008],[-47.54723059799991,60.90619538],[-47.53774980399992,60.902167059000035],[-47.52330481699997,60.901271877000134],[-47.49669348899991,60.90253327000014],[-47.52721106699993,60.89175039300012],[-47.557362433999884,60.89288971600017],[-47.659087693999936,60.91071198100015],[-47.68541419199993,60.89935944200009],[-47.70645097599987,60.896429755000064],[-47.728016730999876,60.897528387000094],[-47.74372311099995,60.90253327000014],[-47.73631751199985,60.91681549700005],[-47.75279700399994,60.91547272300015],[-47.77989661399988,60.899644273000106],[-47.80736243399991,60.89223867400013],[-47.85912024599995,60.86835358300005],[-47.826161261999886,60.86603424700009],[-47.753041144999884,60.88296133000007],[-47.722035285999965,60.87579987200002],[-47.75450598899994,60.855943101000136],[-47.76292883999991,60.84788646],[-47.7344457669999,60.85370514500015],[-47.676909959999904,60.871975002],[-47.65001380099994,60.87579987200002],[-47.530181443999965,60.87579987200002],[-47.51842200399989,60.87962474200004],[-47.49396725199994,60.89223867400013],[-47.483021613999874,60.895697333000115],[-47.360218878999916,60.88556549700017],[-47.33116614499991,60.877264716000084],[-47.32469641799992,60.86155833500011],[-47.34284420499992,60.8526065120001],[-47.43834387899991,60.827378648000135],[-47.52562415299991,60.83079661700005],[-47.61709550699996,60.82086823100006],[-47.8053279289999,60.829657294000114],[-47.84333248599989,60.83901601800015],[-47.932118292999945,60.84174225500011],[-47.94855709499995,60.84788646],[-47.913726365999906,60.87579987200002],[-47.94131425699993,60.88255442900009],[-47.968739386999886,60.87567780200005],[-47.993723110999895,60.86090729400017],[-48.013742641999954,60.844427802],[-48.03799394399993,60.82998281500012],[-48.06432044199994,60.825425522999986],[-48.11986243399991,60.827378648000135],[-48.13499915299991,60.82514069200006],[-48.16624915299988,60.81537506700011],[-48.181263800999886,60.81313711100013],[-48.19542395699992,60.814195054],[-48.21971594999991,60.81940338700017],[-48.23277747299996,60.820542710000105],[-48.24266516799989,60.82485586100001],[-48.24120032499991,60.83421458500005],[-48.232085740999935,60.843654690000065],[-48.20836341099991,60.850409247000115],[-48.16828365799989,60.86835358300005],[-48.08116614499994,60.88865794500004],[-48.02847245999996,60.91449616100009],[-48.02057857999998,60.91681549700005],[-48.008697068999936,60.913763739000146],[-47.999989386999935,60.89996979400005],[-47.98949133999989,60.895697333000115],[-47.97126217399989,60.900580145],[-47.94371497299997,60.91364166900017],[-47.91856848899988,60.92902252800012],[-47.90758216099994,60.94098541900014],[-47.892567511999914,60.948431708000115],[-47.75365149599995,60.97077057500014],[-47.73517818899992,60.97846100500008],[-47.73631751199985,60.99188873900005],[-47.701527472999906,61.0042992210001],[-47.6884659499999,61.00556061400001],[-47.6884659499999,61.012355861000124],[-47.71642005099997,61.01703522300015],[-47.81818600199992,61.00556061400001],[-47.87621008999988,61.00556061400001],[-47.88263912699989,61.00771719],[-47.88459225199995,61.00930410400003],[-47.89464270699992,61.01740143400014],[-47.90013587099995,61.019842841000084],[-47.90953528599988,61.01902903899998],[-47.92442786399994,61.01365794500013],[-47.93146725199989,61.012355861000124],[-47.937611456999974,61.01040273600008],[-47.94554602799993,61.00568268400017],[-47.958485480999855,60.995591539000095],[-47.96629798099994,60.99164459800013],[-47.97630774599992,60.990871486000096],[-48.003529425999915,60.992987372000115],[-48.016468878999916,60.998521226000136],[-48.0235896479999,60.99933502800006],[-48.031646287999905,60.99677155200014],[-48.047434048999946,60.98761627800015],[-48.05500240799992,60.98566315300012],[-48.05817623599998,60.98338450700014],[-48.059803839999915,60.978583075000145],[-48.06236731699991,60.97361888199999],[-48.068348761999914,60.97138092700011],[-48.07787024599992,60.97361888199999],[-48.093251105999855,60.98354726800002],[-48.09935462099995,60.98566315300012],[-48.11436926999997,60.98212311400012],[-48.143869594999956,60.96767812700007],[-48.16079667899993,60.964544989],[-48.15737870999993,60.96857330900015],[-48.15514075399994,60.971909897999986],[-48.15217037699992,60.97500234600007],[-48.14655514199992,60.97821686400011],[-48.171864386999886,60.987860419000086],[-48.20726477799988,60.99445221600018],[-48.27098548099994,60.99933502800006],[-48.29576575399988,60.99555084800012],[-48.34675045499989,60.97996653900013],[-48.373117641999976,60.97821686400011],[-48.40221106699996,60.986517645],[-48.396107550999965,60.997951565000065],[-48.37083899599992,61.00800202000012],[-48.22972571499989,61.026597398000135],[-48.2157283189999,61.024603583],[-48.181263800999886,61.012355861000124],[-48.166737433999856,61.01064687700012],[-48.11986243399991,61.012355861000124],[-48.10716712099995,61.01557038],[-48.09390214799989,61.02968984600004],[-48.08226477799991,61.0328636740001],[-48.066070115999935,61.03497955900009],[-48.03425045499992,61.04437897300012],[-48.01744544199991,61.04653554900004],[-47.88337154899992,61.0328636740001],[-47.85374915299988,61.036932684000035],[-47.83844967399992,61.04230377800009],[-47.83185787699994,61.050238348000065],[-47.83519446499989,61.05711497600008],[-47.84300696499989,61.067328192],[-47.852121548999946,61.07672760600003],[-47.85912024599995,61.081244208],[-47.87437903599991,61.07876211100015],[-47.89952551999988,61.06244538000014],[-47.913726365999906,61.06012604400017],[-47.92039954299986,61.06427643400012],[-47.9348852199999,61.088080145],[-47.88194739499997,61.10736725500014],[-47.85594641799988,61.122137762000115],[-47.834706183999884,61.154201565000015],[-47.78636633999988,61.17694733300014],[-47.77037512899997,61.19110748900006],[-47.79784094999994,61.187933661],[-47.835113084999904,61.162014065],[-47.86693274599995,61.152736721000124],[-47.87075761599993,61.14541250200013],[-47.87315833199988,61.13654205900009],[-47.87962805899991,61.129095770000035],[-47.89224199099988,61.124009507],[-47.98497473899991,61.103257554],[-48.03453528599993,61.10114166900008],[-48.04662024599995,61.09857819200009],[-48.07335364499996,61.08844635600013],[-48.08568274599991,61.088080145],[-48.095366990999956,61.093207098000114],[-48.10936438699994,61.10858795800005],[-48.11986243399991,61.114732164000046],[-48.07453365799989,61.14663320500015],[-48.049712693999936,61.16962311400012],[-48.051584438999896,61.18366120000009],[-48.066070115999935,61.17169830900014],[-48.10147050699996,61.14874909100018],[-48.137521938999924,61.13231028900007],[-48.153960740999906,61.13959381700009],[-48.1595759759999,61.15424225499999],[-48.17296301999991,61.16132233300005],[-48.18883216099994,61.16522858300006],[-48.20177161399993,61.16998932500014],[-48.21263587099992,61.179144598000114],[-48.21637936099995,61.186224677],[-48.21544348899988,61.20075104400002],[-48.200306769999884,61.210272528000026],[-48.10558020699992,61.23895905199999],[-48.10997473899988,61.248724677000105],[-48.11302649599988,61.252590236000124],[-48.09935462099995,61.259426174000154],[-48.10415605399993,61.26609935100011],[-48.10960852799988,61.270493882],[-48.116810675999915,61.272650458],[-48.12669837099992,61.2730980490001],[-48.12669837099992,61.27985260600003],[-48.11107337099995,61.28290436400012],[-48.087880011999914,61.297593492000104],[-48.078846808999884,61.30097077000012],[-48.064116990999906,61.302435614],[-48.0235896479999,61.31403229400011],[-47.934193488999966,61.320135809000085],[-47.913726365999906,61.32831452],[-47.96076412699992,61.34064362200015],[-48.01671301999997,61.334418036],[-48.11986243399991,61.30719635600009],[-48.12816321499989,61.32094961100001],[-48.14696204299992,61.321478583],[-48.16584225199994,61.31240469000009],[-48.17446855399996,61.297267971000096],[-48.17638098899991,61.275539455000036],[-48.18211829299989,61.26288483300005],[-48.2054744129999,61.24233633],[-48.21760006399998,61.23680247599999],[-48.243804490999906,61.237494208000115],[-48.25641842399989,61.23208242400007],[-48.26626542899993,61.219468492000104],[-48.28156490799998,61.18878815300009],[-48.291127081999974,61.17743561400012],[-48.27183997299994,61.17055898600002],[-48.21544348899988,61.14272695500016],[-48.23668372299996,61.13442617400006],[-48.29124915299994,61.129136460000026],[-48.40721594999991,61.13397858300008],[-48.43455969999988,61.14272695500016],[-48.4309789699999,61.14891185100013],[-48.432525193999936,61.15232982000013],[-48.44200598899994,61.155747789000046],[-48.44200598899994,61.16323476800002],[-48.37083899599992,61.16990794500007],[-48.30479895699992,61.18366120000009],[-48.32404537699994,61.19041575700011],[-48.332753058999934,61.19110748900006],[-48.30479895699992,61.20416901200003],[-48.3009333979999,61.21222565300018],[-48.297759568999936,61.22199127800011],[-48.298980272999955,61.227240302],[-48.32042395699989,61.214016018000066],[-48.35802161399988,61.19989655200011],[-48.373117641999976,61.19733307500003],[-48.36628170499998,61.21100495000014],[-48.39492753799993,61.20465729400003],[-48.45010331899988,61.17975495000008],[-48.48289954299989,61.17743561400012],[-48.48058020699992,61.18130117400012],[-48.476144985999944,61.19110748900006],[-48.51162675699993,61.19033437700012],[-48.52892005099994,61.192043361000124],[-48.544422980999855,61.19733307500003],[-48.52375240799992,61.215073960000105],[-48.51549231699994,61.225165106000176],[-48.51085364499991,61.23895905199999],[-48.52721106699994,61.23598867400006],[-48.57233639199998,61.21100495000014],[-48.56786048099991,61.22150299700003],[-48.55719967399989,61.23899974199999],[-48.5580134759999,61.24575429900001],[-48.523548956999974,61.251532294000164],[-48.50690670499991,61.25897858300006],[-48.49657141799992,61.2730980490001],[-48.52391516799989,61.27277252800014],[-48.54735266799989,61.264593817000055],[-48.586008266999926,61.23895905199999],[-48.60704505099994,61.21967194200015],[-48.61913001199986,61.21214427299999],[-48.63316809799991,61.21100495000014],[-48.6396378249999,61.214911200000145],[-48.63731848899994,61.229437567],[-48.64061438699988,61.23895905199999],[-48.60968990799995,61.26569245000008],[-48.58112545499995,61.280178127000156],[-48.54893958199992,61.28620026200015],[-48.43659420499989,61.29287344],[-48.399159308999884,61.30109284100011],[-48.37987219999994,61.31403229400011],[-48.448150193999936,61.31403229400011],[-48.49400794199991,61.30170319200007],[-48.51085364499991,61.30097077000012],[-48.48770097599987,61.3412946640001],[-48.48607337099995,61.3481306010001],[-48.44855709499993,61.356105861000074],[-48.42711341099991,61.35809967700011],[-48.3981013659999,61.34772370000012],[-48.35289466099996,61.34536367400007],[-48.338978644999884,61.3481306010001],[-48.332834438999924,61.35809967700011],[-48.33336341099991,61.369696356000034],[-48.34007727799994,61.37579987200003],[-48.35260982999995,61.36928945500012],[-48.36978105399995,61.37250397300009],[-48.545765753999945,61.381293036000145],[-48.57233639199998,61.389105536000145],[-48.56554114499996,61.40277741100009],[-48.57843990799998,61.40094635600009],[-48.6034236319999,61.391994533000066],[-48.61327063699991,61.392523505000064],[-48.62726803299997,61.396470445000126],[-48.67471269399991,61.39594147300006],[-48.663970506999874,61.40875885600009],[-48.648548956999946,61.42316315300015],[-48.64110266799989,61.43610260600014],[-48.654286261999914,61.44432200700005],[-48.670765753999916,61.439276434000035],[-48.763295050999886,61.3940290390001],[-48.817250128999916,61.37995026200015],[-48.85993404899991,61.37815989800008],[-48.852894660999965,61.40277741100009],[-48.878407355999855,61.404852606000084],[-48.89232337099995,61.40424225500014],[-48.903553839999944,61.397894598],[-48.92113196499989,61.38296133000016],[-48.93529212099989,61.37327708500002],[-48.95250403599991,61.36587148600002],[-48.971302863999966,61.361639716000084],[-48.99006100199992,61.361802476000044],[-48.99006100199992,61.36928945500012],[-48.96056067599994,61.380519924000126],[-48.9521378249999,61.38605377800015],[-48.93846594999985,61.39911530200011],[-48.939523891999926,61.403265692000055],[-49.04491126199991,61.39642975500014],[-49.06578528599991,61.40277741100009],[-49.05321204299992,61.40802643400015],[-49.040638800999915,61.410142320000084],[-49.01398678299998,61.410223700000145],[-49.00304114499991,61.41339752800012],[-48.97960364499994,61.42747630400005],[-48.939523891999926,61.434068101000136],[-48.85973059799997,61.457993882],[-48.83067786399991,61.461411851000115],[-48.746449347999885,61.457993882],[-48.72398841099991,61.461371161000116],[-48.677357550999886,61.47833893400009],[-48.48704993399991,61.513657945000105],[-48.257923956999946,61.53131745000003],[-48.22972571499989,61.546820380000135],[-48.476144985999944,61.53375885600015],[-48.44981848899993,61.54230377800008],[-48.36628170499998,61.55418528900004],[-48.34434973899994,61.56537506700015],[-48.33055579299994,61.580877997000144],[-48.329335089999915,61.59674713700017],[-48.34581458199991,61.608832098000086],[-48.36790930899991,61.608099677000055],[-48.53115800699993,61.54368724200007],[-48.69371497299991,61.52317942900011],[-48.76268469999994,61.50397370000015],[-48.80345618399991,61.485785223000065],[-48.873443162999905,61.48615143400017],[-48.90099036399994,61.48224518400018],[-48.92682857999995,61.472479559000064],[-48.9896541009999,61.457953192],[-49.01732337099992,61.457993882],[-49.012440558999934,61.46771881700015],[-49.004750128999916,61.474188544000135],[-48.99486243399991,61.477932033000066],[-48.98326575399989,61.47915273600011],[-49.00609290299991,61.491685289000095],[-49.03929602799991,61.49477773600007],[-49.10334225199989,61.49152252800003],[-49.11351477799985,61.49603913],[-49.11310787699995,61.50617096600014],[-49.10777747299997,61.51691315300015],[-49.10334225199989,61.52313873900012],[-49.091786261999886,61.52887604400008],[-49.05882727799991,61.53351471600002],[-49.04466712099989,61.53998444200012],[-49.06159420499995,61.53925202],[-49.112904425999886,61.546820380000135],[-49.129709438999896,61.54645416900003],[-49.17564856699996,61.53998444200012],[-49.29857337099992,61.56102122600005],[-49.283192511999886,61.56842682500005],[-49.23892167899993,61.581203518000095],[-49.222767706999946,61.58218008000015],[-49.247425910999965,61.587958075000024],[-49.25698808499993,61.59223053600011],[-49.263783331999974,61.601385809000114],[-49.241078253999916,61.60757070500008],[-48.95018469999985,61.58706289300012],[-48.69029700399989,61.61505768400014],[-48.62315833199992,61.63768138200011],[-48.592193162999905,61.63613515800007],[-48.6184789699999,61.64622630400013],[-48.64175370999993,61.65082428600009],[-48.66437740799998,61.649603583000065],[-48.73668372299994,61.62811920800011],[-48.98326575399989,61.608832098000086],[-48.98326575399989,61.615668036000024],[-48.959543423999975,61.61782461100002],[-48.94737708199989,61.62059153900007],[-48.93822180899991,61.62555573100011],[-48.93321692599997,61.63605377800008],[-48.94115149599995,61.642035223],[-48.95449785099995,61.64313385600015],[-48.97679602799988,61.63507721600002],[-49.01732337099992,61.63613515800007],[-49.027414516999954,61.632554429000024],[-49.03620357999995,61.62763092700014],[-49.0458878249999,61.623521226],[-49.05833899599992,61.622503973000114],[-49.052642381999924,61.62836334800007],[-49.053334113999966,61.63239166900006],[-49.05646725199995,61.63739655200009],[-49.05833899599992,61.646144924000154],[-49.05833899599992,61.674017645],[-49.06151282499988,61.68195221600017],[-49.06749426999991,61.68406810099999],[-49.07079016799994,61.68716054900007],[-49.06578528599991,61.697658596000124],[-49.05630449099988,61.70477936400009],[-49.0428767569999,61.70831940300014],[-49.01732337099992,61.711249091000084],[-48.9491267569999,61.73371002800009],[-48.91209876199985,61.73847077000009],[-48.88019771999993,61.72553131700008],[-48.903879360999944,61.75202057500015],[-48.904367641999954,61.76496002800015],[-48.89122473899988,61.77521393400017],[-48.87401282499988,61.79315827000011],[-48.906239386999914,61.782700914000046],[-48.96751868399994,61.74648672100013],[-49.017974412999955,61.73493073100012],[-49.034657355999904,61.72809479400008],[-49.052113410999965,61.724066473000114],[-49.09105383999994,61.73322174700011],[-49.128773566999904,61.726711330000015],[-49.14830481699991,61.72553131700008],[-49.13581295499997,61.738836981000084],[-49.115956183999884,61.75238678600005],[-49.10191809799994,61.76618073100017],[-49.1067602199999,61.78017812700012],[-49.11949622299997,61.79458242400001],[-49.12157141799988,61.811753648000135],[-49.10924231699993,61.828558661000145],[-49.08568274599989,61.841620184000114],[-49.054798956999946,61.845119533000016],[-49.02114824099993,61.84479401200017],[-49.00267493399991,61.849920966000084],[-49.01732337099992,61.869574286000145],[-49.00210527299993,61.87470123900006],[-48.962798631999924,61.87742747600013],[-48.94505774599991,61.88629791900017],[-48.93919837099989,61.897650458000065],[-48.93309485599991,61.91498444200015],[-48.92463131399995,61.93085358300005],[-48.91148841099991,61.93781159100015],[-48.903960740999935,61.93992747600007],[-48.89004472599996,61.949367580000064],[-48.8807673819999,61.951483466000084],[-48.86961829299988,61.95237864799999],[-48.83922278599994,61.95831940300011],[-48.74986731699991,61.95831940300011],[-48.75039628799987,61.962958075000024],[-48.75177975199994,61.96556224200013],[-48.75731360599988,61.9713402360001],[-48.74986731699991,61.978745835],[-48.78416907499988,61.992254950000145],[-48.82127844999987,61.99298737200008],[-48.91270911399991,61.98395416900017],[-48.94591223899993,61.97650788],[-48.980702277999875,61.963202216000084],[-49.16690019399991,61.856634833000136],[-49.18919837099991,61.83808014500012],[-49.19749915299991,61.81452057500008],[-49.18187415299993,61.78701406500015],[-49.18187415299993,61.78017812700012],[-49.18773352799988,61.769924221],[-49.18187415299993,61.759711005000085],[-49.18187415299993,61.752183335000105],[-49.200428839999944,61.735419012000094],[-49.22008216099988,61.724066473000114],[-49.24111894399991,61.72016022300012],[-49.263783331999974,61.72553131700008],[-49.27269446499991,61.73065827],[-49.29173743399991,61.74603913000014],[-49.307484503999945,61.75299713700003],[-49.35317949099988,61.766546942],[-49.22960364499988,61.87641022300007],[-49.21580969999988,61.88344961100013],[-49.18927975199992,61.89118073100015],[-49.17564856699996,61.896877346000124],[-49.17564856699996,61.90302155200011],[-49.197336391999954,61.90595123900012],[-49.21446692599988,61.906317450000145],[-49.23082434799991,61.903469143],[-49.278472459999875,61.884751695000126],[-49.28795325399997,61.88320547100009],[-49.292103644999905,61.87889232],[-49.29124915299991,61.86017487200002],[-49.29507402299993,61.85586172100012],[-49.30500240799992,61.849432684000114],[-49.31566321499985,61.835394598000065],[-49.32884680899991,61.8212751320001],[-49.34630286399988,61.81492747599999],[-49.3867895169999,61.81289297100007],[-49.40656490799992,61.814398505000106],[-49.42821204299992,61.821112372000144],[-49.41466223899994,61.82794830900017],[-49.43492591099996,61.847357489],[-49.42833411399988,61.85944245000009],[-49.38109290299991,61.87641022300007],[-49.392241990999935,61.881048895],[-49.39875240799992,61.88296133000015],[-49.40843665299991,61.88320547100009],[-49.40843665299991,61.889390367000075],[-49.39281165299991,61.89459870000014],[-49.39037024599989,61.90436432500009],[-49.39171301999997,61.91543203300013],[-49.38731848899988,61.92413971600003],[-49.374256964999915,61.927720444999984],[-49.34064693899998,61.927720444999984],[-49.32648678299994,61.930365302000084],[-49.346547003999916,61.93805573100009],[-49.38613847599996,61.93227773600013],[-49.40843665299991,61.93781159100015],[-49.387521938999924,61.946722723],[-49.340972459999904,61.95294830900015],[-49.30760657499994,61.97052643400018],[-49.28856360599994,61.97553131700012],[-49.250111456999946,61.978745835],[-49.16136633999989,61.9713402360001],[-49.14354407499991,61.975653387000094],[-49.11359615799992,61.99494049700003],[-49.06590735599988,62.00991445500008],[-48.9922582669999,62.05304596600009],[-48.97301184799997,62.05760325700013],[-48.959828253999916,62.051214911000116],[-48.93919837099989,62.047796942],[-48.901275193999965,62.04767487200002],[-48.88418535099992,62.05292389500012],[-48.85383053299995,62.06976959800012],[-48.83922278599994,62.07493724200013],[-48.83922278599994,62.08124420800006],[-48.92487545499989,62.07493724200013],[-48.948475714999944,62.07770416900008],[-48.993397589999944,62.08828359600012],[-49.01732337099992,62.088609117000075],[-48.97956295499994,62.114325262000094],[-48.96861731699988,62.12889232000013],[-48.98326575399989,62.13580963700004],[-49.00767981699994,62.12710195500016],[-49.05382239499997,62.088120835000076],[-49.07945716099994,62.08124420800006],[-49.095773891999954,62.101507880000085],[-49.07339433499993,62.140936591000134],[-49.03502356699991,62.181341864],[-49.00304114499991,62.2047386740001],[-49.03111731699991,62.21210358300009],[-49.067697719999956,62.202541408000094],[-49.09943600199992,62.181382554],[-49.117990688999924,62.145697333000136],[-49.15143795499998,62.105698960000026],[-49.15660559799996,62.092189846000124],[-49.15404212099986,62.07672760600012],[-49.14948482999992,62.06122467699999],[-49.14830481699991,62.04767487200002],[-49.169097459999875,62.021307684000035],[-49.20563717399992,62.018784898000106],[-49.24657141799986,62.021307684000035],[-49.28087317599991,62.00983307500008],[-49.310414191999875,61.996161200000145],[-49.355865037999955,61.98720937700012],[-49.40249589799987,61.98517487200008],[-49.4356990229999,61.992417710000105],[-49.418527798999946,61.999904690000086],[-49.39586341099991,62.00405508000012],[-49.35317949099988,62.00674062700001],[-49.3639216789999,62.01821523600013],[-49.40444902299993,62.025336005],[-49.422027147999955,62.03400299700008],[-49.40070553299998,62.04832591399999],[-49.39240475199992,62.057196356000034],[-49.38731848899988,62.06818268400017],[-49.41515051999994,62.0659040390001],[-49.44033769399991,62.05390045799999],[-49.46214758999986,62.03603750200012],[-49.480091925999915,62.016302802],[-49.54116777299986,61.999253648000135],[-49.558094855999855,61.99701569200006],[-49.58991451699989,61.98725006700011],[-49.60704505099994,61.98501211100013],[-49.63849850199995,61.98920319200006],[-49.67528235599994,62.00043366100005],[-49.69351152299993,62.016099351000136],[-49.669056769999884,62.03400299700008],[-49.63540605399987,62.0353050800001],[-49.566639777999875,62.01886627800008],[-49.53746497299994,62.026556708000115],[-49.60456295499992,62.048488674000126],[-49.61847896999998,62.05760325700013],[-49.56452389199995,62.06342194200009],[-49.534413214999944,62.07282135600012],[-49.51768958199991,62.07493724200013],[-49.48546301999997,62.072699286000145],[-49.47264563699994,62.07623932500004],[-49.463002081999974,62.088609117000075],[-49.51207434799991,62.08978913],[-49.536284959999904,62.08698151200003],[-49.555531378999945,62.07807038],[-49.57583574099996,62.0729027360001],[-49.60326087099992,62.07615794500004],[-49.6249080069999,62.08454010600009],[-49.62808183499996,62.094875393],[-49.64468339799992,62.096136786000116],[-49.67210852799988,62.09479401200003],[-49.69440670499992,62.09894440300015],[-49.69579016799989,62.11660390800007],[-49.676503058999856,62.12372467700014],[-49.600331183999884,62.12445709800007],[-49.33263098899994,62.08124420800006],[-49.34683183499995,62.090969143],[-49.42821204299992,62.11660390800007],[-49.32648678299994,62.13580963700004],[-49.31444251199994,62.13605377800018],[-49.30329342399992,62.13491445500013],[-49.295033331999946,62.136908270000085],[-49.29173743399991,62.14667389500012],[-49.29352779899988,62.15314362200003],[-49.2965388659999,62.15940989800008],[-49.29710852799985,62.167141018000095],[-49.29173743399991,62.17804596600014],[-49.313343878999916,62.17572663],[-49.33454342399989,62.167792059000035],[-49.35317949099988,62.1630720070001],[-49.36742102799988,62.17059967699999],[-49.36241614499993,62.17890045800005],[-49.36017818899995,62.18895091400005],[-49.35627193899995,62.198431708000136],[-49.34630286399988,62.2047386740001],[-49.34630286399988,62.211574611000096],[-49.390858527999875,62.20921458500005],[-49.412749803999894,62.20221588700015],[-49.422027147999955,62.18764883000013],[-49.43032792899993,62.16742584800012],[-49.45026607999992,62.155829169000114],[-49.474720831999946,62.150702216000084],[-49.49657141799989,62.15009186400011],[-49.56151282499987,62.15656159100002],[-49.61046301999993,62.15595123900009],[-49.65957597599987,62.149888414],[-49.68272864499991,62.15009186400011],[-49.68272864499991,62.15753815300012],[-49.65265865799998,62.16217682500004],[-49.629261847999885,62.16836172100001],[-49.61009680899991,62.1791852890001],[-49.59276282499994,62.197821356000176],[-49.593983527999846,62.19891998900012],[-49.590484178999866,62.208929755000106],[-49.58385169199991,62.22036367400006],[-49.57599850199992,62.225816148000106],[-49.51081295499989,62.23200104400017],[-49.469146287999926,62.250189520000056],[-49.45616614499994,62.24909088700012],[-49.42992102799991,62.23834870000011],[-49.4015193349999,62.23200104400017],[-49.3690486319999,62.22988515800016],[-49.34056555899991,62.234116929],[-49.3150935539999,62.24603913000011],[-49.29173743399991,62.26679108300011],[-49.30296790299991,62.270575262000065],[-49.31232662699994,62.26850006700012],[-49.321522589999915,62.26390208499999],[-49.33263098899994,62.259955145],[-49.342640753999916,62.258612372000115],[-49.469838019999884,62.26679108300011],[-49.55455481699988,62.2496605490001],[-49.57290605399993,62.252508856000034],[-49.57164466099994,62.26496002800014],[-49.5410863919999,62.291937567],[-49.54116777299986,62.304348049000126],[-49.55797278599988,62.306463934000035],[-49.57555091099991,62.29266998900012],[-49.591460740999935,62.275336005000135],[-49.60326087099992,62.26679108300011],[-49.60887610599991,62.2646345070001],[-49.6114802729999,62.259955145],[-49.61261959499993,62.255113023000135],[-49.613840298999946,62.252508856000034],[-49.62010657499991,62.25238678600006],[-49.631703253999916,62.258368231000176],[-49.63776607999992,62.259955145],[-49.69579016799989,62.26679108300011],[-49.79503333199992,62.259955145],[-49.802805141999926,62.25849030200014],[-49.80907141799989,62.25462474200005],[-49.82237708199989,62.24258047100013],[-49.834828253999916,62.239569403000026],[-49.887562628999916,62.24567291900011],[-49.8534236319999,62.259955145],[-49.85948645699992,62.261297919000086],[-49.87328040299991,62.26679108300011],[-49.85968990799995,62.26854075700011],[-49.83324133999989,62.26557038000002],[-49.81867428299994,62.26679108300011],[-49.810170050999915,62.270331122000115],[-49.784535285999965,62.286607164000046],[-49.788400844999956,62.29791901200012],[-49.79527747299997,62.30573151200012],[-49.80532792899993,62.3092308610001],[-49.81867428299994,62.307766018000116],[-49.821929490999906,62.292914130000085],[-49.84577389199998,62.28607819200006],[-49.87401282499985,62.28579336100004],[-49.89098059799991,62.290350653000175],[-49.9013565749999,62.306463934000035],[-49.903920050999915,62.32127513200011],[-49.901234503999945,62.352443752],[-49.90855872299994,62.36432526200015],[-49.92601477799991,62.35089752800014],[-49.94676673099991,62.328762111000074],[-49.96393795499995,62.31460195500016],[-49.987863735999895,62.31354401200009],[-50.01382402299989,62.32037995000003],[-50.02672278599991,62.33120351800003],[-50.01109778599994,62.34186432500014],[-50.03844153599991,62.362372137000094],[-50.05158443899995,62.36579010600012],[-50.079986131999874,62.368882554],[-50.093332485999895,62.37323639500009],[-50.12279212099989,62.387274481000034],[-50.130848761999914,62.39337799700003],[-50.145008917999945,62.401841539000074],[-50.15933183499993,62.402818101000044],[-50.17406165299991,62.40176015800011],[-50.18919837099992,62.40395742400007],[-50.201527472999935,62.409613348000065],[-50.20689856699991,62.41478099199998],[-50.2103572259999,62.421372789000046],[-50.231760219999956,62.448391018],[-50.24762936099998,62.46198151200014],[-50.30772864499988,62.49127838700016],[-50.319569464999944,62.50576406500013],[-50.304554816999904,62.514634507000075],[-50.29369055899991,62.531439520000085],[-50.278553839999915,62.56842682500012],[-50.26829993399991,62.58315664300002],[-50.24046790299985,62.60932038000006],[-50.23021399599992,62.62303294499999],[-50.22301184799988,62.64533112200002],[-50.22101803299995,62.66168854400002],[-50.21336829299992,62.67597077000012],[-50.18919837099992,62.69196198100003],[-50.165598110999944,62.69765859600001],[-50.13630123599995,62.70111725500011],[-50.11465410099996,62.70685455900018],[-50.11412512899989,62.71930573100009],[-50.08580481699994,62.736314195000084],[-50.075754360999944,62.74469635600003],[-50.06566321499988,62.75958893400017],[-50.05357825399988,62.78266022300012],[-50.04674231699988,62.79205963700015],[-50.03502356699988,62.804592190000065],[-50.01854407499991,62.81281159100014],[-49.9766332669999,62.818264065],[-49.94530188699986,62.833807684000085],[-49.89704342399992,62.84882233300011],[-49.905873175999965,62.85004303600014],[-49.91429602799994,62.85248444200009],[-49.92235266799986,62.85578034100003],[-49.91490637899989,62.86709219],[-49.90208899599986,62.87661367400009],[-49.87328040299991,62.88996002800011],[-49.87328040299991,62.89679596600003],[-49.916900193999936,62.8883324240001],[-49.9588923819999,62.869777736000074],[-50.03844153599991,62.82225169499999],[-50.10326087099989,62.798976955000164],[-50.13491777299987,62.778469143],[-50.15192623599992,62.77773672100007],[-50.15933183499993,62.787787177000055],[-50.14826412699997,62.80801015800007],[-50.19664466099988,62.80801015800007],[-50.19664466099988,62.801214911000145],[-50.17174231699994,62.78148021000011],[-50.178456183999884,62.76642487200009],[-50.22679602799991,62.73602936400012],[-50.245594855999855,62.71507396000008],[-50.255848761999886,62.70819733300009],[-50.271799282999886,62.70563385600015],[-50.28307044199988,62.71185944200012],[-50.28872636599988,62.72504303600008],[-50.29792232999995,62.73696523600002],[-50.319569464999944,62.73908112200003],[-50.311268683999856,62.754624742000125],[-50.26838131399998,62.79067617400009],[-50.26593990799995,62.79808177300008],[-50.26455644399996,62.81818268400012],[-50.26158606699994,62.82225169499999],[-50.252105272999955,62.82538483300006],[-50.246815558999884,62.83307526200016],[-50.24445553299992,62.842922268000095],[-50.24380449099987,62.852362372000115],[-50.23534094999994,62.85565827000015],[-50.182362433999884,62.89679596600003],[-50.1615291009999,62.90574778900004],[-50.16177324099996,62.90949127800008],[-50.16295325399989,62.914007880000135],[-50.16193600199992,62.91787344000015],[-50.14264889199998,62.93821849200005],[-49.798736131999874,63.00934479400017],[-49.74201412699989,63.03188711100017],[-49.70262610599991,63.061265367000075],[-49.770171678999866,63.06647370000014],[-49.80475826699998,63.06427643400015],[-49.82921301999991,63.05133698100014],[-49.84947669199993,63.037339585],[-50.025380011999914,62.97675202000012],[-50.154855923999946,62.967922268000066],[-50.182362433999884,62.958807684000185],[-50.23766028599991,62.893377997000115],[-50.24299068899995,62.889105536],[-50.25470943899995,62.885321356000176],[-50.266468878999916,62.878729559000085],[-50.271799282999886,62.866359768000066],[-50.27440344999988,62.851141669000086],[-50.28160559799991,62.84658437700013],[-50.29259192599988,62.84564850500005],[-50.30650794199997,62.84153880400011],[-50.32433020699994,62.82575104400018],[-50.33551998599995,62.80780670800011],[-50.34898841099994,62.793036200000024],[-50.37389075399997,62.78693268400014],[-50.38971920499989,62.79222239800013],[-50.38044186099995,62.80320872599999],[-50.362660285999965,62.812201239],[-50.35309811099998,62.81146881700006],[-50.356109178999866,62.83026764500012],[-50.36416581899991,62.83490631700014],[-50.37547766799989,62.83527252800015],[-50.38841712099992,62.84153880400011],[-50.392201300999915,62.84467194200008],[-50.40147864499988,62.84894440300008],[-50.40147864499988,62.85578034100003],[-50.36717688699991,62.883124091000084],[-50.36668860599994,62.88996002800011],[-50.32648678299992,62.93231842700002],[-50.318959113999874,62.93838125200001],[-50.303130662999926,62.94122955900003],[-50.28579667899995,62.948391018000095],[-50.26988684799994,62.95726146000013],[-50.25816809799994,62.96564362200009],[-50.239003058999884,62.987250067],[-50.228098110999895,62.99616120000003],[-50.21344967399988,62.99982330900017],[-50.174956834999904,63.000799872000144],[-50.15843665299994,63.00665924700009],[-50.14826412699997,63.02024974200005],[-50.23599199099988,63.0455589860001],[-50.25470943899995,63.044134833000115],[-50.26158606699994,63.03327057500006],[-50.278065558999934,62.9931501320001],[-50.278553839999915,62.97931549700002],[-50.38145911399991,62.949611721],[-50.41576087099989,62.94521719000012],[-50.46898352799985,62.95115794500004],[-50.48033606699994,62.955145575000024],[-50.493641730999855,62.97524648600007],[-50.50275631399995,62.97980377800012],[-50.517567511999914,62.97308991100005],[-50.51475989499997,62.962591864],[-50.52330481699988,62.96198151200004],[-50.53677324099988,62.967840887000186],[-50.548898891999954,62.97622304900012],[-50.56297766799992,62.98090241100006],[-50.59703528599994,62.97455475500011],[-50.61375891799986,62.97931549700002],[-50.490874803999894,63.01410553600008],[-50.494862433999884,63.022447007000046],[-50.49909420499989,63.02903880400011],[-50.50430253799988,63.03485748900008],[-50.51134192599994,63.04075755400011],[-50.51280676999991,63.05174388200008],[-50.52464758999989,63.05573151200004],[-50.538319464999915,63.05394114800004],[-50.55235755099997,63.04755280200014],[-50.547718878999945,63.04262929900006],[-50.53929602799988,63.02708567900007],[-50.557769334999904,63.02643463700012],[-50.57754472599992,63.02895742400012],[-50.596791144999884,63.03392161699999],[-50.61375891799986,63.04075755400011],[-50.60130774599995,63.053534247000144],[-50.594553188999896,63.058050848],[-50.586496548999946,63.061265367000075],[-50.59068762899989,63.07200755400009],[-50.59512285099987,63.080023505000106],[-50.60753333199989,63.09601471600003],[-50.591135219999984,63.098456122000144],[-50.54576575399988,63.09601471600003],[-50.53555253799996,63.09760163000006],[-50.53392493399994,63.10138580900017],[-50.53473873599995,63.10586172100012],[-50.53184973899991,63.10968659100015],[-50.50450598899994,63.123358466000084],[-50.47199459499995,63.13251373900009],[-50.4393611319999,63.136948960000055],[-50.42674719999994,63.14240143400018],[-50.42332923099991,63.15379466400004],[-50.430572068999936,63.163763739000146],[-50.449940558999884,63.16494375200007],[-50.449940558999884,63.171128648000135],[-50.40021725199997,63.18939850500011],[-50.059437628999945,63.229641018],[-50.105458136999886,63.24030182500003],[-50.29906165299988,63.232611395],[-50.3522029289999,63.239691473000065],[-50.36050370999996,63.235988674000126],[-50.364898240999935,63.224920966000084],[-50.37547766799989,63.217027085000105],[-50.428578253999916,63.19424062700009],[-50.45832271999993,63.185858466000035],[-50.48863684799991,63.183905341000084],[-50.517567511999914,63.19159577],[-50.517567511999914,63.198431708000115],[-50.51357988199993,63.199937242000075],[-50.50450598899994,63.20587799700008],[-50.56004798099988,63.22601959800012],[-50.59300696499986,63.23029205900006],[-50.60753333199989,63.215806382],[-50.62002519399991,63.205796617000104],[-50.67833411399991,63.21771881700007],[-50.69635982999995,63.21206289300007],[-50.78189042899993,63.20233795800012],[-50.80247962099989,63.19501373900003],[-50.82384192599994,63.17820872600003],[-50.85448157499985,63.16136302300002],[-50.8866267569999,63.14838288],[-50.91234290299985,63.1432152360001],[-50.92442786399996,63.14671458499999],[-50.93097896999993,63.15558502800003],[-50.93228105399993,63.166937567],[-50.92906653599988,63.17792389500006],[-50.91958574099987,63.18598053600001],[-50.84886633999994,63.216701565000086],[-50.82437089799993,63.224066473000086],[-50.800892706999946,63.23407623900007],[-50.77822831899991,63.25307851800006],[-50.813343878999966,63.25104401200003],[-50.857411261999886,63.23932526200015],[-50.89891516799985,63.22174713700012],[-50.92601477799988,63.202134507000046],[-50.94880123599992,63.18048737200017],[-50.96324622299997,63.170843817],[-50.97744706899988,63.16494375200007],[-51.00059973899994,63.164740302000105],[-51.04067949099996,63.18060944200015],[-51.05630449099993,63.18475983300008],[-51.054676886999914,63.192206122000144],[-51.04881751199988,63.20868561400014],[-51.03986568899995,63.225165106000034],[-51.028960740999956,63.232611395],[-51.01939856699988,63.234808661],[-51.00377356699991,63.244574286000145],[-50.99425208199989,63.24681224200013],[-50.986561652999875,63.24485911699998],[-50.97911536399991,63.241034247000144],[-50.97150631399995,63.23822663000011],[-50.96385657499994,63.239406643000116],[-50.955637173999946,63.250677802000105],[-50.97301184799991,63.25702545800005],[-51.0150447259999,63.260484117000075],[-51.030751105999855,63.25665924700015],[-51.04279537699995,63.24966054900007],[-51.0555720689999,63.24616120000017],[-51.07371985599991,63.25307851800006],[-51.062245245999854,63.26829661700005],[-51.045277472999885,63.27362702000011],[-51.02525794199991,63.27728913000008],[-51.00475012899997,63.28778717700014],[-51.02285722599987,63.29279205900018],[-51.07066809799991,63.28839752800009],[-51.09080969999985,63.29775625200013],[-51.09825598899994,63.311468817000055],[-51.10106360599988,63.328558661],[-51.097767706999946,63.34308502800006],[-51.08702551999994,63.34926992400001],[-50.83348548099991,63.35667552300003],[-50.840931769999884,63.35667552300003],[-50.49254309799991,63.371893622000165],[-50.47663326699998,63.37592194200015],[-50.473011847999906,63.37897370000003],[-50.45982825399997,63.393988348000065],[-50.45213782499985,63.397691148000106],[-50.278553839999915,63.40387604400017],[-50.33543860599988,63.42161692900007],[-50.401966925999965,63.42552317900008],[-50.468373175999915,63.41779205900015],[-50.553822394999905,63.39232005400005],[-50.751210089999944,63.38694896],[-50.77822831899991,63.37592194200015],[-50.78742428299995,63.39288971600003],[-50.80247962099989,63.39801666900002],[-50.821115688999946,63.39581940300003],[-50.840931769999884,63.390204169000064],[-50.85024980399993,63.386175848000065],[-50.85781816299988,63.38149648600015],[-50.86620032499993,63.37759023600016],[-50.87783769399993,63.37592194200015],[-50.890492316999904,63.37689850500011],[-50.92292232999991,63.38336823100012],[-50.96475175699993,63.38125234600001],[-51.007720506999874,63.37409088700015],[-51.049387173999946,63.371568101000044],[-51.08731035099987,63.38336823100012],[-51.06151282499994,63.39695872600008],[-51.03823808499993,63.419175523000135],[-51.01891028599991,63.44578685100007],[-51.00475012899997,63.472805080000036],[-51.02733313699994,63.47345612200017],[-51.04710852799988,63.47052643400014],[-51.06094316299996,63.459295966000134],[-51.06627356699994,63.43488190300009],[-51.07510331899988,63.4196638040001],[-51.095692511999914,63.400336005],[-51.118763800999886,63.38353099199999],[-51.13512122299991,63.37592194200015],[-51.17113196499985,63.38100820500007],[-51.16624915299991,63.39935944200011],[-51.146595831999946,63.42072174700017],[-51.13825436099998,63.43488190300009],[-51.16380774599986,63.44757721600014],[-51.20702063699986,63.42861562700015],[-51.2232966789999,63.44489166900008],[-51.17979895699994,63.46308014500006],[-51.16234290299991,63.47431061400009],[-51.14509029899989,63.489488023000085],[-51.127308722999906,63.495550848000065],[-51.08535722599993,63.485907294000086],[-51.06997636599988,63.489488023000085],[-51.05650794199988,63.49823639500012],[-51.03917395699992,63.50385163000014],[-50.794748501999976,63.5265160180001],[-50.76268469999988,63.53587474200013],[-50.744130011999886,63.55475495000014],[-50.807484503999916,63.55573151200004],[-51.05528723899988,63.52655670800008],[-51.07371985599991,63.52741120000009],[-51.09312903599991,63.53139883000015],[-51.10265051999991,63.53705475500005],[-51.11778723899991,63.558417059000114],[-51.13377844999991,63.576605536],[-51.145741339999944,63.59495677300005],[-51.144520636999914,63.61310455900015],[-51.12083899599992,63.630438544000135],[-51.101185675999936,63.621527411],[-51.08446204299992,63.62995026200015],[-51.06981360599991,63.64374420800006],[-51.05630449099993,63.650864976000115],[-51.03404700399989,63.647772528000026],[-50.98810787699992,63.63361237200011],[-50.91539466099994,63.62299225500005],[-50.91120357999992,63.620021877000156],[-50.90892493399985,63.611639716000084],[-50.905506964999944,63.60993073100009],[-50.898426886999886,63.61098867400012],[-50.88609778599994,63.61562734600007],[-50.88133704299992,63.61676666900012],[-50.5733943349999,63.644110419000164],[-50.5621638659999,63.636216539000095],[-50.56509355399993,63.62079498900009],[-50.56517493399991,63.61017487200003],[-50.54552161399993,63.61676666900012],[-50.53351803299992,63.62628815300009],[-50.52208411399996,63.640041408000016],[-50.50450598899994,63.671372789000074],[-50.53140214799993,63.67841217700014],[-50.894642706999946,63.630438544000135],[-50.933176235999916,63.63434479400006],[-51.04576575399997,63.66453685100005],[-51.07616126199994,63.66429271000011],[-51.12637285099993,63.64240143400017],[-51.15876217399992,63.63666413],[-51.185170050999915,63.628851630000106],[-51.18712317599997,63.61017487200003],[-51.175770636999886,63.587469794000086],[-51.12848873599992,63.526841539000095],[-51.13023841099994,63.51288483300014],[-51.162180141999926,63.507513739],[-51.17528235599991,63.51064687700007],[-51.1952205069999,63.524318752],[-51.20343990799989,63.52741120000009],[-51.2245173819999,63.529974677],[-51.27855383999991,63.548529364],[-51.37092037699991,63.55451080900012],[-51.37913977799994,63.55385976800006],[-51.385487433999856,63.55027903900001],[-51.386586066999904,63.54385000200007],[-51.381581183999856,63.534247137000094],[-51.392201300999915,63.53412506700012],[-51.40265865799998,63.53546784100002],[-51.4225154289999,63.54100169500004],[-51.41771399599989,63.550604559000114],[-51.410023566999875,63.557074286000116],[-51.40001380099988,63.560858466000134],[-51.38841712099989,63.56220123900011],[-51.39110266799986,63.56875234600004],[-51.392811652999875,63.57160065300014],[-51.395863410999965,63.57518138200014],[-51.32404537699997,63.61351146000005],[-51.30646725199995,63.630438544000135],[-51.361398891999926,63.62299225500005],[-51.376210089999915,63.62628815300009],[-51.40021725199995,63.64077383000016],[-51.5392146479999,63.6850446640001],[-51.5392146479999,63.691839911000116],[-51.496449347999885,63.70595937700007],[-51.34740149599989,63.71979401200014],[-51.34740149599989,63.726019598000114],[-51.429676886999935,63.732855536000145],[-51.481800910999965,63.7238630230001],[-51.48973548099994,63.71454498900009],[-51.53551184799994,63.70551178600006],[-51.55247962099992,63.70575592700012],[-51.55968176999994,63.71605052300013],[-51.55638587099992,63.73041413000003],[-51.54832923099988,63.74359772300016],[-51.52867591099991,63.76414622600002],[-51.497670050999886,63.78009674700012],[-51.2102758449999,63.81537506700015],[-51.2311091789999,63.82461172100002],[-51.219878709999875,63.83706289300012],[-51.11481686099989,63.87811920800012],[-50.956206834999904,63.91535065300012],[-50.92292232999991,63.932074286000145],[-50.92292232999991,63.93829987200009],[-50.94469153599996,63.931830145],[-51.02525794199991,63.924627997000144],[-51.16905676999994,63.89179108300006],[-51.299631313999924,63.82843659100003],[-51.34044348899988,63.81932200700013],[-51.4029434889999,63.812730210000055],[-51.4584041009999,63.81757233300014],[-51.477772589999915,63.84271881700012],[-51.46446692599988,63.85748932500008],[-51.442250128999916,63.85321686400008],[-51.418853318999936,63.84365469],[-51.402007615999935,63.84271881700012],[-51.39777584499992,63.85846588700014],[-51.40587317599994,63.87628815300015],[-51.40526282499988,63.88934967700011],[-51.37474524599995,63.89109935100011],[-51.37474524599995,63.89736562700006],[-51.392567511999914,63.902736721000124],[-51.4094945949999,63.91095612200003],[-51.40648352799991,63.929266669000086],[-51.42479407499988,63.93919505399999],[-51.442209438999924,63.94623444200006],[-51.436512824999845,63.956000067],[-51.41649329299989,63.959418036000024],[-51.39293372299994,63.958197333],[-51.37242591099988,63.96002838700014],[-51.36107337099992,63.97304922100015],[-51.41637122299991,63.98651764500012],[-51.436838344999956,63.98672109600009],[-51.486317511999914,63.97479889500015],[-51.50511633999989,63.97304922100015],[-51.54246985599994,63.97943756700009],[-51.61937415299993,64.00751373900009],[-51.65648352799985,64.01406484600007],[-51.620350714999915,64.034613348],[-51.5801488919999,64.04238515800002],[-51.44200598899988,64.0397809920001],[-51.41942298099991,64.0355492210001],[-51.35147050699993,64.01382070500001],[-51.327748175999915,64.01292552300013],[-51.30646725199995,64.02081940300009],[-51.38841712099989,64.05499909100008],[-51.36168372299997,64.06606679900013],[-51.12083899599992,64.08974844000015],[-51.06257076699998,64.07758209800006],[-51.03246008999986,64.07477448100012],[-50.982818162999926,64.09808991100012],[-50.88133704299992,64.09658437700007],[-50.82689368399994,64.11176178600006],[-50.68268795499989,64.17169830900018],[-50.65269934799994,64.17475006700009],[-50.59813391799989,64.16185130400005],[-50.56627356699994,64.15802643400006],[-50.497670050999915,64.15802643400006],[-50.48387610599991,64.15501536700005],[-50.4645076159999,64.1413028020001],[-50.449940558999884,64.13690827000012],[-50.43439693899995,64.13751862200009],[-50.42125403599991,64.14248281500015],[-50.40949459499992,64.15070221600014],[-50.39806067599997,64.16144440300015],[-50.383615688999924,64.16705963700014],[-50.34292558499993,64.16412995000003],[-50.325795050999886,64.16486237200014],[-50.241444464999915,64.20083242400013],[-50.21003170499989,64.20579661699999],[-50.145375128999945,64.20180898600002],[-50.11351477799991,64.19269440300003],[-50.09984290299988,64.17511627800009],[-50.099598761999935,64.151312567],[-50.097645636999886,64.14061107],[-50.09300696499989,64.13007233300011],[-50.08385169199988,64.12396881700012],[-50.07164466099991,64.11945221600017],[-50.065012173999946,64.11351146000005],[-50.07249915299991,64.1034203150001],[-50.07249915299991,64.09658437700007],[-50.053863084999925,64.10712311400012],[-50.05842037699997,64.12124258000016],[-50.0716853509999,64.13572825700011],[-50.07933508999994,64.14777252800012],[-50.07689368399991,64.16640859600001],[-50.06989498599992,64.17987702000009],[-50.05907141799992,64.1901716170001],[-50.04523678299992,64.19896067900008],[-50.06289628799993,64.2118187520001],[-50.086537238999966,64.21503327000015],[-50.11172441299993,64.215277411],[-50.13402258999989,64.21942780200014],[-50.129017706999946,64.22260163],[-50.1192927729999,64.23078034100011],[-50.11412512899989,64.23379140800002],[-50.16258704299986,64.24494049700003],[-50.435658331999974,64.1915550800001],[-50.52546139199998,64.18768952000009],[-50.55235755099997,64.17853424700009],[-50.54328365799995,64.2005069030001],[-50.533273891999976,64.21320221600017],[-50.46304277299993,64.26776764500015],[-50.44448808499993,64.27871328300002],[-50.421986456999946,64.28839752800017],[-50.41755123599995,64.30646393400009],[-50.39045162699992,64.32440827000015],[-50.333159959999904,64.34979889500006],[-50.36384029899989,64.35907623900012],[-50.39537512899989,64.35537344000006],[-50.424224412999905,64.34284088700018],[-50.48473059799991,64.29450104400014],[-50.50645911399988,64.283107815],[-50.564564581999946,64.26483795800011],[-50.57282467399992,64.26044342700014],[-50.58177649599986,64.25189850500011],[-50.58828691299993,64.24323151200002],[-50.59650631399995,64.2364769550001],[-50.6252335279999,64.23151276200004],[-50.65404212099992,64.2217471370001],[-50.66901607999994,64.21942780200014],[-50.720692511999914,64.22109609600015],[-50.73729407499987,64.21942780200014],[-50.76447506399998,64.20892975500006],[-50.81427975199995,64.1781273460001],[-51.127105272499904,64.13019440300009],[-51.43993079299986,64.08226146000007],[-51.4479060539999,64.08421458500011],[-51.46003170499992,64.09357330900015],[-51.47032630099991,64.09658437700007],[-51.566517706999946,64.09658437700007],[-51.55968176999994,64.1034203150001],[-51.58340410099996,64.10830312700016],[-51.60960852799988,64.11001211100016],[-51.63316809799994,64.11513906500006],[-51.649037238999966,64.13007233300011],[-51.63060462099992,64.13621653900002],[-51.58018958199989,64.16486237200014],[-51.561838344999956,64.16962311400006],[-51.52204342399994,64.17182038000004],[-51.461537238999966,64.16742584800006],[-51.391184048999946,64.14862702000012],[-51.35484778599994,64.14435455900012],[-51.37975012899988,64.16034577],[-51.45864824099993,64.18927643400012],[-51.49404863199993,64.19696686400012],[-51.52896074099996,64.2005069030001],[-51.54979407499994,64.19525788000011],[-51.567982550999915,64.18349844000015],[-51.671864386999886,64.15192291900014],[-51.69261633999989,64.15204498900012],[-51.70372473899991,64.16201406500012],[-51.69749915299985,64.1853701840001],[-51.71385657499988,64.189398505],[-51.76512610599991,64.1853701840001],[-51.73151608,64.2084414730001],[-51.66242428299995,64.21820709800012],[-51.41258704299989,64.21942780200014],[-51.402414516999926,64.21621328300007],[-51.37238521999998,64.2005882830001],[-51.35138912699995,64.18659088700004],[-51.33438066299988,64.18195221600011],[-51.26577714799987,64.17820872600008],[-51.1346736319999,64.20774974200003],[-51.12083899599992,64.21320221600017],[-51.08340410099987,64.23688385600009],[-51.06997636599988,64.239935614],[-51.011626756999874,64.239935614],[-50.99681555899991,64.23676178600012],[-50.96849524599986,64.22264232],[-50.9532771479999,64.21942780200014],[-50.94591223899988,64.22264232],[-50.922596808999884,64.23676178600012],[-50.91234290299985,64.239935614],[-50.895863410999965,64.24140045800006],[-50.84715735599994,64.25421784100008],[-50.84715735599994,64.26044342700014],[-50.89391028599991,64.26837799700012],[-51.00059973899994,64.25971100500011],[-51.04576575399997,64.28148021000008],[-51.02733313699994,64.28534577000008],[-51.01231848899991,64.29242584800015],[-50.98770097599993,64.31195709800012],[-50.98241126199994,64.31484609600015],[-50.96816972599993,64.31964752800006],[-50.96385657499994,64.322455145],[-50.95860755099994,64.33075592700008],[-50.95759029899988,64.33441803600012],[-50.957834438999924,64.33722565300017],[-50.956410285999965,64.34296295800014],[-50.956410285999965,64.34715403899999],[-50.96226966099991,64.35407135600018],[-50.96385657499994,64.36033763200011],[-50.959706183999884,64.36542389500015],[-50.939605272999955,64.37067291900003],[-50.93248450399989,64.37396881700006],[-50.91222083199989,64.39598216399999],[-50.89952551999991,64.406683661],[-50.88809160099987,64.41128164300012],[-50.80964107999992,64.42739492400001],[-50.76414954299986,64.42845286700006],[-50.744130011999886,64.40814850500006],[-50.72142493399994,64.39704010600003],[-50.61465410099996,64.37986888200011],[-50.58023027299993,64.38397858300006],[-50.59727942599997,64.39476146000005],[-50.62474524599992,64.40119049700017],[-50.67552649599986,64.40509674700017],[-50.68578040299988,64.41071198100015],[-50.68858801999993,64.42401764500009],[-50.69005286399991,64.43976471600014],[-50.69635982999995,64.45221588700015],[-50.655629035999965,64.435248114],[-50.517567511999914,64.40509674700017],[-50.50706946499994,64.40509674700017],[-50.49864661399991,64.40643952000005],[-50.48961341099988,64.40619538000011],[-50.46410071499988,64.39728424700017],[-50.418853318999965,64.397650458],[-50.36620032499985,64.38922760600003],[-50.34121660099993,64.3902855490001],[-50.34007727799988,64.40509674700017],[-50.32689368399994,64.40900299700014],[-50.27830969999988,64.40509674700017],[-50.270171678999866,64.40599192900005],[-50.25519771999993,64.41030508000016],[-50.24762936099998,64.41128164300012],[-50.24323482999989,64.41400788000003],[-50.243763800999886,64.42023346600017],[-50.24526933499993,64.42706940300016],[-50.24380449099987,64.43170807500012],[-50.233957485999944,64.43402741100009],[-50.20372473899993,64.43732330900012],[-50.186024542999945,64.44619375200016],[-50.18028723899996,64.44651927299999],[-50.17638098899988,64.448187567],[-50.17491614499991,64.45600006700009],[-50.17833411399991,64.45962148600013],[-50.18635006399995,64.46279531500004],[-50.195668097999906,64.46507395999998],[-50.20287024599995,64.4658877620001],[-50.20079505099991,64.46967194200012],[-50.19823157499991,64.47695547100012],[-50.19664466099988,64.480169989],[-50.22520911399988,64.47760651200018],[-50.24889075399989,64.47093333500014],[-50.30675208199992,64.44769928600003],[-50.35309811099998,64.43854401200004],[-50.382394985999895,64.42690664300012],[-50.394642706999946,64.4248721370001],[-50.42658443899995,64.42633698100015],[-50.62450110599988,64.466701565],[-50.65469316299988,64.480169989],[-50.65469316299988,64.48700592700011],[-50.62877356699988,64.49176666900011],[-50.55235755099997,64.51496002800006],[-50.490956183999884,64.52562083500008],[-50.46068274599989,64.53701406500012],[-50.443023240999956,64.55585358300009],[-50.475087042999945,64.544094143],[-50.58023027299993,64.53473541900017],[-50.64122473899991,64.52244700700011],[-50.67113196499989,64.526800848],[-50.689523891999926,64.5484072940001],[-50.674468553999894,64.55377838700015],[-50.65550696499989,64.56509023600013],[-50.63805091099994,64.57843659100014],[-50.62743079299988,64.59003327000006],[-50.690174933999884,64.58051178600009],[-50.724354620999854,64.57990143400012],[-50.75157630099994,64.59003327000006],[-50.744130011999886,64.596869208],[-50.784820115999956,64.60236237200012],[-50.878000454999885,64.58222077000009],[-50.91539466099994,64.60301341400007],[-50.88776607999995,64.61554596600017],[-50.83641516799992,64.64557526200012],[-50.80614173099994,64.65143463700015],[-50.73875891799992,64.64960358300007],[-50.68268795499989,64.637844143],[-50.60753333199989,64.6310082050001],[-50.592884894999884,64.63422272300015],[-50.55601966099991,64.65143463700015],[-50.541371222999906,64.65546295800011],[-50.52497311099989,64.66278717700014],[-50.50861568899998,64.66718170800011],[-50.484364386999914,64.6573753930001],[-50.47166907499994,64.65790436400006],[-50.45921790299991,64.66144440300006],[-50.449940558999884,64.66571686400006],[-50.47728430899994,64.67499420800003],[-50.50462805899991,64.67788320500013],[-50.58946692599997,64.669378973],[-50.61192786399988,64.67230866100012],[-50.662180141999954,64.68561432500013],[-50.662180141999954,64.69245026200015],[-50.48033606699994,64.71287669500003],[-50.46239173099988,64.71019114800008],[-50.42723548099991,64.69708893400009],[-50.40831458199989,64.69245026200015],[-50.33775794199994,64.68439362200003],[-50.30418860599991,64.67450592700011],[-50.27513587099991,64.65485260600015],[-50.261708136999914,64.63849518400015],[-50.23766028599991,64.58258698100009],[-50.225819464999944,64.56366608300007],[-50.171864386999914,64.50405508000007],[-50.1490779289999,64.48672109600005],[-50.02013098899994,64.451605536],[-49.947661912999905,64.42157623900006],[-49.92027747299994,64.41608307500003],[-49.89195716099991,64.40704987200012],[-49.86241614499994,64.40355052300013],[-49.84797115799998,64.39996979400014],[-49.70860755099991,64.34870026200011],[-49.65192623599995,64.33559804900015],[-49.59276282499994,64.34296295800014],[-49.585926886999914,64.34296295800014],[-49.59748287699995,64.35952383000001],[-49.625111456999946,64.37103913000006],[-49.65733801999988,64.380357164],[-49.68272864499991,64.39077383000007],[-49.68272864499991,64.397650458],[-49.68297278599996,64.42234935100007],[-49.72569739499997,64.43439362200009],[-49.81554114499988,64.43854401200004],[-49.84658769399991,64.45966217700014],[-49.884673631999874,64.47768789300005],[-49.89439856699994,64.480169989],[-49.920765753999916,64.48383209800015],[-50.00487219999988,64.50747304900007],[-50.040638800999886,64.518988348],[-50.06289628799993,64.52973053600012],[-50.07249915299991,64.54498932500009],[-50.075835740999935,64.5566266950001],[-50.08405514199992,64.57037995000012],[-50.11091061099992,64.60175202000006],[-50.11701412699992,64.6123721370001],[-50.12059485599988,64.62470123900015],[-50.120350714999944,64.637844143],[-50.113270636999886,64.65424225500011],[-50.10118567599997,64.66315338700007],[-50.084868943999936,64.66787344000015],[-50.00829016799989,64.6814639340001],[-49.99400794199988,64.68903229400014],[-49.99722245999993,64.70115794500005],[-50.02464758999989,64.70844147300006],[-50.07970130099994,64.71287669500003],[-50.09976152299989,64.71051666900009],[-50.135121222999906,64.70062897300006],[-50.15501868399991,64.69928620000009],[-50.17267818899992,64.70254140800013],[-50.18944251199986,64.70905182500003],[-50.21715247299994,64.72589752800003],[-50.2057185539999,64.74664948100002],[-50.199289516999954,64.75381094000006],[-50.18919837099992,64.76129791900003],[-50.17308508999994,64.76776764500012],[-50.15477454299989,64.77179596600011],[-50.138172980999904,64.77741120000012],[-50.127797003999916,64.78864166900011],[-50.14142818899995,64.80141836100013],[-50.12987219999994,64.81338125200006],[-49.99742591099987,64.86371491100012],[-50.01378333199991,64.87246328300002],[-50.04210364499994,64.86408112200013],[-50.073841925999915,64.85040924700012],[-50.10016842399991,64.8432070980001],[-50.16250566299988,64.83771393400015],[-50.195423956999974,64.82843659100008],[-50.209706183999856,64.81256745000017],[-50.22101803299995,64.79633209800012],[-50.246937628999945,64.77464427300005],[-50.275746222999885,64.75580475500003],[-50.29564368399988,64.74770742400007],[-50.31114661399988,64.7480329450001],[-50.319813605999876,64.75006745000003],[-50.32664954299989,64.75507233300009],[-50.336659308999884,64.7643903670001],[-50.347645636999935,64.77065664300007],[-50.356597459999875,64.76874420800011],[-50.366810675999915,64.7640648460001],[-50.381337042999945,64.76129791900003],[-50.53815670499995,64.76919179900001],[-50.55968176999997,64.77480703300002],[-50.575835740999935,64.78546784100013],[-50.586496548999946,64.80231354400014],[-50.599436001999976,64.84015534100008],[-50.60728919199994,64.85512929900004],[-50.62120520699991,64.87055084800015],[-50.663644985999916,64.89215729400014],[-50.68325761599988,64.90753815300009],[-50.68268795499989,64.92519765800002],[-50.686634894999884,64.92938873900012],[-50.691802537999905,64.93915436400009],[-50.69635982999995,64.94562409100008],[-50.690297003999945,64.95331452],[-50.694813605999904,64.95986562700007],[-50.717396613999966,64.97296784100014],[-50.70396887899997,64.98346588700012],[-50.69595292899993,64.99453359600007],[-50.69513912699991,65.00519440300009],[-50.703195766999954,65.01459381700012],[-50.72667395699992,65.02130768400013],[-50.75234941299988,65.02142975500014],[-50.775868292999945,65.02488841400005],[-50.79255123599997,65.04189687700001],[-50.789784308999906,65.05052317900002],[-50.791086391999926,65.063950914],[-50.79478919199997,65.07851797100012],[-50.79938717399988,65.090277411],[-50.83531653599987,65.12335846600014],[-50.840931769999884,65.13129303600003],[-50.82949785099993,65.14199453300013],[-50.74559485599985,65.17275625200001],[-50.705799933999856,65.19293854400014],[-50.689523891999926,65.20636627800003],[-50.70059160099996,65.21051666900017],[-50.71239173099994,65.21051666900017],[-50.73729407499987,65.20636627800003],[-50.750803188999924,65.19428131700012],[-50.87995357999995,65.15228913000006],[-50.887521938999896,65.15176015800007],[-50.89541581899988,65.15599192899998],[-50.89981035099996,65.16299062700007],[-50.90249589799993,65.169378973],[-50.905506964999944,65.17218659100014],[-50.91637122299991,65.17682526200015],[-50.93126380099997,65.18707916900009],[-50.95018469999991,65.20327383000016],[-50.95482337099992,65.21405670800006],[-50.965443488999966,65.21967194200006],[-50.976958787999905,65.21967194200006],[-50.98436438699988,65.21381256700003],[-50.98399817599997,65.20815664300012],[-50.98078365799992,65.20115794500003],[-50.97671464799995,65.19525788000003],[-50.97374426999994,65.19269440300009],[-50.966053839999915,65.1905785180001],[-50.96629798099988,65.18520742400011],[-50.969349738999966,65.17845286700002],[-50.9700414699999,65.17218659100014],[-50.95807857999998,65.14887116100014],[-50.94127356699997,65.12909577000012],[-50.91812089799993,65.11542389500009],[-50.887521938999896,65.11009349200009],[-50.895863410999965,65.09918854400006],[-50.91026770699994,65.09491608300011],[-50.94273841099991,65.090277411],[-50.94273841099991,65.08283112200003],[-50.89952551999991,65.07611725500007],[-50.881703253999945,65.06940338700004],[-50.87441972599993,65.05243561400006],[-50.87547766799988,65.0440127620001],[-50.88023841099988,65.02692291900014],[-50.88223222599993,65.00849030200011],[-50.88654537699992,64.99241771000005],[-50.887521938999896,64.983547268],[-50.86620032499993,64.97882721600008],[-50.83210201699992,64.98680247600005],[-50.76211503799993,65.00324127800006],[-50.72362219999994,64.99408600500006],[-50.737619594999984,64.97492096600008],[-50.720285610999895,64.94521719000006],[-50.73729407499987,64.932603257],[-50.72655188699986,64.92767975500011],[-50.71743730399995,64.92137278899999],[-50.709787563999924,64.91372304900007],[-50.703195766999954,64.90473053600014],[-50.718820766999926,64.89337799700017],[-50.77204342399992,64.87055084800015],[-50.74474036399994,64.86444733300006],[-50.703236456999946,64.8604190120001],[-50.66519120999996,64.85199616100013],[-50.64854895699992,64.83270905200011],[-50.65510006399998,64.82160065300017],[-50.67027747299996,64.81561920800006],[-50.68736731699991,64.81146881700012],[-50.699777798999946,64.80573151200015],[-50.7091365229999,64.78961823100018],[-50.69884192599997,64.78359609600007],[-50.662180141999954,64.78119538000011],[-50.63792883999986,64.77016836100007],[-50.64216061099998,64.75922272300004],[-50.66397050699993,64.75096263200011],[-50.692860480999855,64.74770742400007],[-50.70213782499991,64.75189850500011],[-50.70396887899997,64.7609723980001],[-50.70718339799993,64.77016836100007],[-50.72052975199995,64.77435944200003],[-50.734771287999926,64.77090078300002],[-50.88097083199992,64.69586823100018],[-50.909738735999944,64.68504466399999],[-51.06627356699994,64.66571686400006],[-51.07526607999994,64.6520856790001],[-51.062896287999905,64.64838288000006],[-51.032093878999945,64.65143463700015],[-51.01781165299985,64.64826080900009],[-51.009348110999895,64.64126211100002],[-51.00963294199994,64.63418203300016],[-51.02183997299991,64.6310082050001],[-51.14509029899989,64.616644598],[-51.19896399599991,64.62482330900012],[-51.21711178299992,64.62417226800007],[-51.18138587099989,64.67194245000012],[-51.16734778599994,64.71116771000013],[-51.14631100199992,64.72296784100011],[-51.1212458979999,64.73053620000015],[-51.10724850199995,64.7402204450001],[-51.09483801999991,64.75836823100012],[-51.07420813699988,64.75824616100014],[-51.04954993399991,64.75433991100014],[-51.02525794199991,64.76129791900003],[-51.03307044199991,64.76211172100015],[-51.05260169199991,64.767523505],[-51.048939581999946,64.77065664300007],[-51.04255123599992,64.77802155200004],[-51.03892981699997,64.78119538000011],[-51.06578528599994,64.78766510600003],[-51.100412563999924,64.79222239799999],[-51.13499915299994,64.79222239799999],[-51.25255286399991,64.760199286],[-51.27855383999991,64.74770742400007],[-51.2928767569999,64.73224518400015],[-51.30882727799991,64.70868561400003],[-51.32164466099994,64.68305084800015],[-51.326975063999896,64.662014065],[-51.333485480999876,64.65204498900012],[-51.34870357999998,64.650824286],[-51.36583411399991,64.6515973980001],[-51.37816321499986,64.64769114800013],[-51.41462154899992,64.61994049700014],[-51.4225154289999,64.61050039300011],[-51.43480383999994,64.54486725500011],[-51.43993079299986,64.53473541900017],[-51.44322669199991,64.53050364800005],[-51.44908606699993,64.52114492400001],[-51.45799719999988,64.51170482000002],[-51.48184160099996,64.50315989800008],[-51.490223761999914,64.49331289300015],[-51.497385219999956,64.48163483300006],[-51.50511633999989,64.47272370000012],[-51.57664954299992,64.43764883000013],[-51.599924282999915,64.39956289300015],[-51.6289770169999,64.38800690300003],[-51.69005286399988,64.37775299700009],[-51.70958411399994,64.36945221600003],[-51.71149654899992,64.361802476],[-51.69908606699988,64.35683828300013],[-51.675770636999886,64.35663483300009],[-51.675770636999886,64.34979889500006],[-51.687855597999885,64.34023672100007],[-51.68691972599989,64.32778554900014],[-51.677113410999965,64.31610748900006],[-51.66270911399991,64.30882396000005],[-51.70494544199994,64.30052317900008],[-51.72252356699997,64.29336172100012],[-51.73843339799987,64.28148021000008],[-51.76207434799991,64.25869375200016],[-51.77570553299995,64.24872467700006],[-51.79308020699991,64.239935614],[-51.83507239499991,64.22504303600014],[-51.85655676999993,64.220892645],[-51.8818253249999,64.21942780200014],[-51.93651282499994,64.22280508000016],[-51.95075436099995,64.21942780200014],[-51.93569902299993,64.21409739800008],[-51.93024654899989,64.21320221600017],[-51.93883216099991,64.20986562700016],[-51.96743730399987,64.20555247600005],[-52.00161699099987,64.20579661699999],[-52.03008552099993,64.19823003900011],[-52.05176293099993,64.19430351100011],[-52.07354485799988,64.19127260000005],[-52.08275479099987,64.20359548200004],[-52.08328113699989,64.21789258300011],[-52.09688575999988,64.23017780300007],[-52.10374517099987,64.23774953700013],[-52.11628263099993,64.2214422580001],[-52.14260625199994,64.22218252700014],[-52.15214740699989,64.24212614900016],[-52.16147667899988,64.25634850200008],[-52.14902089499992,64.27456030100014],[-52.125610054999925,64.29380743200015],[-52.1218719739999,64.31098638499999],[-52.12689348099991,64.32713801900003],[-52.16233481799992,64.33351875300015],[-52.15635028899993,64.34880332600012],[-52.13924180699985,64.361318425],[-52.1244748849999,64.37761817200014],[-52.110463019999884,64.39105866100012],[-52.13882774499987,64.40606178000017],[-52.14818165499986,64.41931332600012],[-52.157586459999976,64.43351481800012],[-52.180093023999916,64.44380306100005],[-52.191737344999886,64.45798412100011],[-52.194555929999865,64.472236174],[-52.17490315599986,64.47810406100014],[-52.14577693199993,64.46881802800007],[-52.10993404899991,64.46580638200011],[-52.10179602799988,64.478461005],[-52.088002081999974,64.48607005400014],[-52.07213294199994,64.49127838700012],[-52.04401607999995,64.49555084800012],[-52.04015051999993,64.50116608300014],[-52.04613196499988,64.508246161],[-52.09180393999995,64.50157594100001],[-52.11842769499995,64.50328060100013],[-52.11881393199994,64.51279169100015],[-52.12125145999991,64.51848161100008],[-52.108377039999965,64.52904183700015],[-52.14144155399987,64.52498852000015],[-52.15522863599991,64.537250714],[-52.14029205599988,64.55163359200007],[-52.092600063999924,64.56244538000006],[-52.059315558999906,64.56952545800011],[-52.044992641999926,64.57583242400014],[-52.030181443999965,64.58502838700004],[-52.02367102799988,64.59389883000007],[-52.021595831999946,64.59674713700011],[-52.02586829299986,64.61050039300011],[-52.03766842399991,64.60150788000011],[-52.06398058399989,64.58547135600018],[-52.092963308999856,64.58907137900015],[-52.11004462199991,64.57183125500002],[-52.141360209999874,64.57825744700007],[-52.15089085499994,64.59341039800007],[-52.16485404799991,64.60758263800012],[-52.170096257999944,64.62562772900007],[-52.1614747289999,64.63234971000016],[-52.093805371999906,64.61093463700008],[-52.04971269399993,64.61359284100001],[-52.04507402299993,64.62531159100011],[-52.05654863199996,64.63214752800003],[-52.111887173999946,64.64069245000015],[-52.123402472999885,64.64520905199998],[-52.128285285999965,64.65485260600015],[-52.129709438999924,64.66616445500016],[-52.13438880099994,64.67365143400012],[-52.14297441299996,64.677679755],[-52.1561580069999,64.67877838700004],[-52.132435675999886,64.71283600500006],[-52.09764563699986,64.73183828300016],[-52.057769334999875,64.73965078300013],[-52.01838131399989,64.7402204450001],[-51.991769985999944,64.73655833500005],[-51.978749152999875,64.73737213700015],[-51.96784420499989,64.74396393400006],[-51.94066321499989,64.78204987200003],[-51.93464107999998,64.78681061400012],[-51.923085089999944,64.78864166900011],[-51.91177324099996,64.78693268400009],[-51.90274003799996,64.78449127800015],[-51.895375128999945,64.78571198100018],[-51.889271613999966,64.79486725500006],[-51.90916907499987,64.79486725500006],[-51.89635169199994,64.81362539300012],[-51.87482662699992,64.82489655200011],[-51.73843339799987,64.85757070500016],[-51.72642981699994,64.85805898600013],[-51.697865363999966,64.8561058610001],[-51.68321692599994,64.85757070500016],[-51.65290279899997,64.86542389500012],[-51.64224199099993,64.87055084800015],[-51.63442949099993,64.87693919500008],[-51.62877356699993,64.88393789300015],[-51.6212458979999,64.88930898600002],[-51.60806230399996,64.891058661],[-51.59585527299987,64.8863792990001],[-51.58311926999991,64.86786530200008],[-51.56993567599997,64.86371491100012],[-51.54759680899994,64.8647321640001],[-51.531605597999935,64.869086005],[-51.517730272999955,64.87848541900011],[-51.50169837099986,64.89472077000005],[-51.48306230399987,64.90704987200012],[-51.438710089999944,64.92804596600014],[-51.43000240799995,64.942572333],[-51.41783606699997,64.9559593770001],[-51.39024817599994,64.96816640800016],[-51.359974738999966,64.97699616100012],[-51.316883917999945,64.98419830900015],[-51.28986568899998,64.99396393400009],[-51.26427161399991,65.00722890800002],[-51.244984503999966,65.02142975500014],[-51.27179928299995,65.03314850500011],[-51.29556230399987,65.02435944200006],[-51.32062740799995,65.0090192730001],[-51.351185675999886,65.00092194200009],[-51.40477454299989,65.01044342700008],[-51.4225154289999,65.00771719],[-51.43342037699994,64.99974192900005],[-51.422963019999884,64.99494049700014],[-51.38841712099989,64.98663971600008],[-51.457142706999974,64.97199127800017],[-51.47402910099987,64.96336497600008],[-51.48863684799988,64.95319245000003],[-51.583322719999956,64.91193268400018],[-51.66270911399991,64.893744208],[-51.70368404899991,64.891058661],[-51.69277910099993,64.89508698100018],[-51.68309485599988,64.90086497600014],[-51.67511959499993,64.90851471600017],[-51.669545050999915,64.9183617210001],[-51.68614661399988,64.92047760600009],[-51.68545488199993,64.92670319200006],[-51.6661677729999,64.942572333],[-51.66051184799991,64.95018138200011],[-51.65217037699995,64.96841054900001],[-51.649037238999966,64.97296784100014],[-51.63784745999996,64.97504303600006],[-51.59068762899997,64.97296784100014],[-51.578195766999954,64.97492096600008],[-51.569162563999946,64.97988515800013],[-51.55284583199992,64.99408600500006],[-51.62486731699997,65.00771719],[-51.662342902999875,65.02480703300016],[-51.675770636999886,65.02757396000011],[-51.692697719999956,65.02594635600009],[-51.70555579299989,65.02155182500012],[-51.71377519399988,65.01264069200006],[-51.716786261999886,64.99750397300005],[-51.72179114499994,64.987453518],[-51.73151608,64.9818789730001],[-51.73729407499985,64.97475820500013],[-51.73102779899989,64.95994700700005],[-51.76138261599996,64.95490143400004],[-51.7923070949999,64.945990302],[-51.82013912699997,64.93203359600012],[-51.84089107999994,64.91217682500003],[-51.82945716099991,64.91107819200005],[-51.81354732999989,64.91193268400018],[-51.799224412999905,64.91030508000016],[-51.79308020699991,64.90159739800008],[-51.78819739499997,64.88841380400011],[-51.76520748599998,64.875921942],[-51.75767981699991,64.86371491100012],[-51.76781165299988,64.86074453300002],[-51.789133266999954,64.857367255],[-51.79991614499994,64.85757070500016],[-51.79991614499994,64.86371491100012],[-51.78563391799986,64.87055084800015],[-51.81871497299991,64.88690827000006],[-51.83731035099989,64.891099351],[-51.85484778599994,64.887640692],[-51.870187954999885,64.87547435100011],[-51.86925208199992,64.8659528670001],[-51.86432857999995,64.85618724199999],[-51.867543097999906,64.8432070980001],[-51.879261847999885,64.837062893],[-51.940174933999884,64.8159040390001],[-51.948394334999904,64.81509023600007],[-51.97118079299992,64.80914948100015],[-52.01219641799992,64.80914948100015],[-52.06639563699988,64.79645416900009],[-52.08755449099988,64.79486725500006],[-52.10533606699996,64.79857005400011],[-52.09862219999991,64.80719635600012],[-52.066761847999885,64.82273997600011],[-52.00914466099994,64.83331940300015],[-51.99168860599988,64.83954498900012],[-51.98599199099988,64.84345123900012],[-51.97118079299992,64.85757070500016],[-51.94391842399992,64.87738678600006],[-51.960926886999886,64.88442617400013],[-52.00446529899992,64.89642975500006],[-52.02208411399994,64.89850495000009],[-52.033924933999884,64.90521881700012],[-52.044829881999874,64.91754791900017],[-52.0572810539999,64.92373281500014],[-52.0735977859999,64.91217682500003],[-52.04360917899995,64.88084544500008],[-52.07917232999992,64.84918854400009],[-52.183501756999874,64.80231354400014],[-52.19644120999987,64.80878327000015],[-52.213612433999906,64.81391022300006],[-52.22423255099994,64.82168203300016],[-52.21764075399997,64.8358421900001],[-52.180043097999885,64.8432070980001],[-52.1561580069999,64.86371491100012],[-52.21629798099988,64.88353099200003],[-52.22447669199991,64.89472077000005],[-52.217681443999965,64.911851304],[-52.20140540299993,64.91876862200009],[-52.162993943999936,64.92519765800002],[-52.12555904899989,64.94037506699999],[-52.106312628999945,64.944322007],[-52.08043372299994,64.94562409100008],[-52.0641169909999,64.94912344000006],[-52.04283606699994,64.95774974199999],[-52.02326412699994,64.96898021000008],[-52.01219641799992,64.9804141300001],[-52.03184973899988,64.98663971600008],[-52.101551886999935,64.98663971600008],[-52.08470618399994,65.00128815300009],[-52.07628333199989,65.01349518400015],[-52.08214270699994,65.02098216400005],[-52.10777747299991,65.02142975500014],[-52.145741339999915,65.00751373900006],[-52.16087805899991,65.004380601],[-52.162993943999936,65.01459381700012],[-52.18346106699988,65.02505117400001],[-52.19098873599995,65.02757396000011],[-52.177113410999965,65.03953685100005],[-52.162993943999936,65.049302476],[-52.24225826699998,65.06305573100009],[-52.27855383999989,65.07880280200006],[-52.27285722599989,65.10394928600014],[-52.25438391799989,65.11180247600011],[-52.231068488999966,65.11322663],[-52.18724524599991,65.11009349200009],[-52.177113410999965,65.10809967700008],[-52.16641191299993,65.10439687700013],[-52.15575110599991,65.1027692730001],[-52.14590410099987,65.10700104400003],[-52.137318488999966,65.11229075700011],[-52.1250707669999,65.11733633000013],[-52.101551886999935,65.12376536700005],[-52.101551886999935,65.13129303600003],[-52.11827551999997,65.1308454450001],[-52.14753170499989,65.12360260600009],[-52.162993943999936,65.12376536700005],[-52.176747199999845,65.12897370000015],[-52.18374589799993,65.1364199890001],[-52.19098873599995,65.15176015800007],[-52.19786536399994,65.1585960960001],[-52.204172329999885,65.16339752800016],[-52.20714270699992,65.16901276200018],[-52.203968878999945,65.17841217700003],[-52.19591223899991,65.184515692],[-52.1561580069999,65.20014069200009],[-52.06602942599997,65.27850983300013],[-52.004750128999945,65.31622955900012],[-52.02676347599996,65.31598541900017],[-52.05687415299988,65.304144598],[-52.08576412699989,65.287298895],[-52.122710740999935,65.25519440300003],[-52.17516028599991,65.22272370000015],[-52.19098873599995,65.21995677299999],[-52.21003170499995,65.2116559920001],[-52.23159745999993,65.20538971600014],[-52.25413977799994,65.20148346600017],[-52.27599036399988,65.20014069200009],[-52.296376105999855,65.20327383000016],[-52.30919348899988,65.21010976800007],[-52.30964107999989,65.21686432500012],[-52.293039516999926,65.21995677299999],[-52.26280676999991,65.23212311400009],[-52.22252356699994,65.25853099200008],[-52.19859778599988,65.28461334800011],[-52.21764075399997,65.29572174700014],[-52.19684811099989,65.31061432500012],[-52.19505774599992,65.32404205900009],[-52.208159959999875,65.33185455900009],[-52.231922980999876,65.32982005400007],[-52.24274654899997,65.32477448100003],[-52.266916469999956,65.30874258000013],[-52.27912350199995,65.30255768400018],[-52.31012936099998,65.29287344000004],[-52.32005774599989,65.28827545800009],[-52.33214270699997,65.29922109600015],[-52.33788001199985,65.3131778020001],[-52.336537238999966,65.32843659100007],[-52.32750403599994,65.34349192900002],[-52.35000566299993,65.33588288000006],[-52.36123613199993,65.31769440300017],[-52.36856035099996,65.29621002800006],[-52.37901770699991,65.2786319030001],[-52.42690995999993,65.22671133000013],[-52.444203253999945,65.21381256700003],[-52.456125454999885,65.2082380230001],[-52.465565558999906,65.20624420800006],[-52.48827063699985,65.20636627800003],[-52.51878821499989,65.19456614800008],[-52.53465735599991,65.1922875020001],[-52.52985592399992,65.20327383000016],[-52.51121985599994,65.21873607],[-52.47435462099986,65.2411156270001],[-52.45726477799991,65.25413646],[-52.47834225199995,65.25413646],[-52.4707738919999,65.25995514500012],[-52.462554490999906,65.26414622600008],[-52.45372473899994,65.26679108300006],[-52.444203253999945,65.26776764500012],[-52.444203253999945,65.27521393400009],[-52.46401933499995,65.28204987200003],[-52.46401933499995,65.28827545800009],[-52.460194464999944,65.28998444200009],[-52.45034745999993,65.29572174700014],[-52.469634568999965,65.30215078300007],[-52.48570716099994,65.29816315300009],[-52.4996638659999,65.29100169500005],[-52.51244055899985,65.28827545800009],[-52.52562415299991,65.29266998900006],[-52.56704667899992,65.31622955900012],[-52.56704667899992,65.32245514500005],[-52.54718990799992,65.33917877800009],[-52.52009029899989,65.35236237200014],[-52.490793423999946,65.36090729400017],[-52.46401933499995,65.36399974200005],[-52.43757076699998,65.37055084800011],[-52.38182532499988,65.39911530200011],[-52.35106360599991,65.40558502800003],[-52.2897029289999,65.41120026200004],[-52.231922980999876,65.42609284100008],[-52.15257727799994,65.46527741100012],[-52.03604081899991,65.49249909100003],[-51.98167883999988,65.49494049700014],[-51.9686580069999,65.49941640800002],[-51.95384680899991,65.51113515800002],[-51.9466039699999,65.51532623900012],[-51.92056230399993,65.526312567],[-51.91258704299989,65.528509833],[-51.89940344999994,65.5305036480001],[-51.86611894399993,65.5422223980001],[-51.85456295499989,65.54897695500013],[-51.84996497299997,65.55536530200008],[-51.84577389199992,65.57054271000005],[-51.84089107999994,65.57689036699999],[-51.812163865999906,65.58624909100003],[-51.74559485599991,65.58209870000009],[-51.716786261999886,65.58999258000016],[-51.741932745999854,65.59145742400001],[-51.78062903599991,65.606634833],[-51.803334113999966,65.61041901200004],[-51.857411261999935,65.60447825700003],[-51.88243567599994,65.60761139500009],[-51.90294348899991,65.62409088700015],[-51.87340247299994,65.64264557500017],[-51.76414954299992,65.67560455900004],[-51.73843339799987,65.67934804900007],[-51.71768144399988,65.69407786700006],[-51.68809973899994,65.704779364],[-51.491444464999944,65.74079010600015],[-51.12828528599988,65.76121653900013],[-51.09251868399985,65.75409577000009],[-51.072336391999926,65.75263092700011],[-51.02635657499988,65.7670352230001],[-50.983265753999945,65.76520416900011],[-50.93993079299989,65.75726959800015],[-50.90925045499998,65.74823639500012],[-50.80093339799993,65.70066966400005],[-50.74054928299992,65.68292877800015],[-50.67585201699998,65.67934804900007],[-50.53184973899991,65.69301992400001],[-50.53844153599988,65.69757721600014],[-50.54430091099994,65.70282623900015],[-50.54906165299994,65.70823802299999],[-50.55235755099997,65.71344635600009],[-50.68268795499989,65.706000067],[-50.743275519999884,65.69501373900006],[-50.77232825399994,65.69871653900002],[-50.79255123599997,65.7202822940001],[-50.7596736319999,65.7276878930001],[-50.69383704299991,65.7245547550001],[-50.662180141999954,65.72772858300009],[-50.662180141999954,65.73395416900006],[-50.66978919199988,65.73427969000005],[-50.689523891999926,65.74079010600015],[-50.68687903599994,65.75079987200004],[-50.68545488199996,65.75299713700004],[-50.68268795499989,65.75507233300004],[-50.76797441299996,65.76040273600002],[-50.815052863999966,65.75608958500011],[-50.840931769999884,65.74079010600015],[-50.86473548099988,65.75210195500013],[-50.88707434799991,65.76581452000006],[-50.91185462099986,65.77749258000007],[-50.94302324099996,65.78237539300011],[-51.04295813699991,65.77362702000006],[-51.25218665299991,65.79474518400015],[-51.44102942599991,65.77252838700012],[-51.916005011999886,65.66193268400009],[-51.937814907999915,65.66006094000012],[-51.970082160999965,65.67820872600005],[-51.99168860599988,65.67251211100016],[-51.947987433999884,65.62970612200014],[-51.933583136999914,65.60468170800006],[-51.93651282499994,65.57689036699999],[-51.91685950399989,65.5702985700001],[-51.93122311099995,65.55638255400012],[-51.99429277299987,65.52191803600003],[-52.049672003999945,65.51422760600009],[-52.07017981699991,65.50458405200011],[-52.09032141799994,65.49799225500006],[-52.180043097999885,65.50116608300011],[-52.193674282999915,65.49469635600012],[-52.22325598899988,65.46613190300003],[-52.23501542899996,65.45962148600003],[-52.27285722599989,65.44651927300005],[-52.29674231699997,65.44171784100016],[-52.32005774599989,65.43976471600003],[-52.36998450399991,65.44171784100016],[-52.39049231699988,65.43829987200014],[-52.47313391799986,65.394964911],[-52.49132239499994,65.39191315300008],[-52.50365149599989,65.397162177],[-52.54653886599996,65.43231842700006],[-52.533924933999884,65.44367096600001],[-52.49132239499994,65.46702708500011],[-52.49876868399991,65.47386302300013],[-52.452015753999945,65.50873444200006],[-52.444203253999945,65.51788971600014],[-52.4552302729999,65.52415599199999],[-52.48033606699988,65.51605866100005],[-52.50694739499991,65.50218333500007],[-52.54027258999991,65.47992584800012],[-52.563059048999946,65.47211334800012],[-52.58531653599988,65.46942780200006],[-52.601185675999915,65.47386302300013],[-52.61424719999991,65.48981354400006],[-52.605824347999935,65.49738190300009],[-52.56704667899992,65.50800202000012],[-52.59972083199994,65.52277252800012],[-52.608713344999956,65.528509833],[-52.57164466099994,65.55768463700004],[-52.521839972999885,65.58787669500005],[-52.48102779899992,65.62433502800012],[-52.47085527299986,65.67251211100016],[-52.500721808999884,65.65412018400012],[-52.52672278599994,65.63153717700014],[-52.53848222599993,65.6113141950001],[-52.54653886599996,65.60114166900017],[-52.55711829299992,65.5967471370001],[-52.57160396999995,65.59373607],[-52.586822068999936,65.58616771000014],[-52.600900844999984,65.57623932500003],[-52.61172441299988,65.5660667990001],[-52.615549282999886,65.56037018400012],[-52.61733964799987,65.55288320500013],[-52.621693488999966,65.54897695500013],[-52.63003495999993,65.54490794499999],[-52.648548956999946,65.53900788000006],[-52.65583248599995,65.53534577],[-52.66698157499988,65.52509186400009],[-52.67564856699988,65.51471588700018],[-52.684722459999875,65.50604889500009],[-52.697417772999955,65.50116608300011],[-52.715565558999856,65.50214264500009],[-52.72203528599993,65.509466864],[-52.72569739499991,65.51772695500007],[-52.73497473899994,65.52167389500006],[-52.76724199099987,65.52484772300012],[-52.79173743399991,65.53473541900014],[-52.8008520169999,65.55194733300006],[-52.786773240999956,65.57689036699999],[-52.76667232999991,65.57428620000009],[-52.73062089799987,65.58567942900005],[-52.663319464999944,65.61790599200002],[-52.69676673099991,65.61587148600007],[-52.76642818899998,65.59369538],[-52.800445115999906,65.5967471370001],[-52.77505449099988,65.61196523600006],[-52.64928137899989,65.65363190300003],[-52.578928188999946,65.66657135600003],[-52.54653886599996,65.67934804900007],[-52.572865363999966,65.68646881700012],[-52.605132615999906,65.68036530200014],[-52.68834387899994,65.65127187700007],[-52.74453691299993,65.63873932500017],[-52.77253170499994,65.63837311400006],[-52.75560462099989,65.672308661],[-52.72085527299993,65.69135163],[-52.64220130099991,65.71344635600009],[-52.67808997299991,65.72016022300012],[-52.69058183499993,65.7202822940001],[-52.67878170499994,65.75372955900015],[-52.68004309799996,65.79022858300011],[-52.693430141999954,65.80727773600007],[-52.717925584999904,65.78237539300011],[-52.758168097999885,65.71263255400008],[-52.78685462099995,65.684068101],[-52.82404537699995,65.67251211100016],[-52.837391730999855,65.67568594000012],[-52.86302649599991,65.68976471600016],[-52.87555904899991,65.69301992400001],[-52.88801021999993,65.69135163],[-52.912180141999954,65.68301015800013],[-53.00108801999997,65.66624583500011],[-53.190419074999845,65.67523834800012],[-53.23924719999985,65.6861839860001],[-53.14928137899997,65.72772858300009],[-53.0956111319999,65.737982489],[-53.01797441299996,65.74371979400009],[-52.99111894399988,65.75116608300006],[-52.96564693899995,65.76117584800012],[-52.926177537999905,65.783392645],[-52.877023891999976,65.79450104400001],[-52.85448157499991,65.80223216400005],[-52.87783769399991,65.80878327000012],[-52.89024817599991,65.81000397300012],[-52.90290279899989,65.809719143],[-52.91429602799985,65.80678945500006],[-52.93443762899989,65.79791901200004],[-53.013579881999874,65.77920156500006],[-53.065052863999966,65.75495026200018],[-53.11070716099991,65.74738190300003],[-53.239369269999905,65.73989492400007],[-53.26024329299989,65.74315013200011],[-53.262562628999945,65.75165436400015],[-53.2533259759999,65.755804755],[-53.217518683999884,65.75507233300004],[-53.20958411399991,65.75796133000007],[-53.193918423999946,65.76683177300013],[-53.17906653599987,65.77081940300012],[-53.163319464999915,65.78021881700012],[-53.1400447259999,65.78400299700014],[-53.11392167899996,65.79254791900009],[-53.039214647999955,65.80833567900011],[-53.019520636999914,65.8158633480001],[-53.054554816999904,65.81049225500011],[-53.0714412099999,65.81028880400008],[-53.08849036399994,65.8158633480001],[-53.07640540299994,65.82404205900009],[-53.05060787699992,65.85374583500011],[-53.03311113199996,65.86395905200004],[-52.99156653599988,65.86908600500006],[-52.931304490999906,65.88548411699999],[-52.889230923999946,65.89158763200005],[-52.86921139199998,65.88910553600012],[-52.85049394399991,65.88275788],[-52.83234615799992,65.87909577000015],[-52.81407630099994,65.88475169500003],[-52.821441209999925,65.89203522300006],[-52.82656816299996,65.89581940300017],[-52.83397376199994,65.89838288],[-52.81358801999997,65.912990627],[-52.77212480399996,65.92617422100014],[-52.69399980399993,65.939398505],[-52.65143795499989,65.93195221600003],[-52.56680253799988,65.89899323100005],[-52.40908769399987,65.87791575700011],[-52.36009680899991,65.8784040390001],[-52.33824622299996,65.87457916900009],[-52.32005774599989,65.86432526200015],[-52.31745358,65.85907623900009],[-52.31794186099995,65.84813060100011],[-52.31383216099991,65.84320709800006],[-52.3087458979999,65.84052155200008],[-52.299183722999906,65.83714427300005],[-52.2900284499999,65.83771393400004],[-52.285878058999884,65.84686920800003],[-52.27725175699987,65.86009349200005],[-52.25723222599993,65.86839427300013],[-52.21764075399997,65.87791575700011],[-52.21764075399997,65.88475169500003],[-52.26121985599988,65.89533112200009],[-52.26211503799988,65.91421133000004],[-52.2357478509999,65.93537018400004],[-52.19713294199991,65.95302969000012],[-51.97740637899997,66.00360748900012],[-51.931996222999885,66.00360748900012],[-51.88719641799986,65.99551015800002],[-51.84089107999994,65.980943101],[-51.77448482999991,65.94334544499999],[-51.73985755099994,65.93060944200012],[-51.71117102799988,65.939398505],[-51.74575761599988,65.964016018],[-51.82603919199991,65.99640534100011],[-51.84557044199988,66.00763580900009],[-51.86131751199994,66.021918036],[-51.8321020169999,66.040472723],[-51.798817511999914,66.05418528900013],[-51.73102779899989,66.07037995000009],[-51.73102779899989,66.07591380400002],[-51.79702714799993,66.07070547100001],[-52.08775794199994,66.00486888200005],[-52.18171139199989,65.99799225500014],[-52.21068274599988,65.98981354400003],[-52.23810787699995,65.97418854400014],[-52.28685462099986,65.91461823100003],[-52.303293423999946,65.905218817],[-52.50454667899987,65.90501536700005],[-52.53425045499992,65.90985748900012],[-52.55711829299992,65.92267487200014],[-52.59251868399991,65.9479841170001],[-52.59430904899992,65.9584414730001],[-52.57331295499995,65.97418854400014],[-52.51927649599989,65.99404531500015],[-52.56090247299994,66.00804271000011],[-52.57640540299985,66.00804271000011],[-52.69029700399989,65.963568427],[-52.71499589799986,65.96039459800011],[-52.738840298999946,65.96808502800015],[-52.77965247299991,65.99091217700007],[-52.80211341099991,65.99481842700008],[-52.80028235599994,65.98053620000017],[-52.780018683999934,65.94684479400017],[-52.80768795499992,65.94550202000009],[-52.86449133999989,65.92479075700008],[-52.943714972999935,65.90753815300015],[-52.966867641999976,65.89590078300014],[-53.00405839799989,65.89207591400003],[-53.15412350199995,65.86054108300014],[-53.18101966099994,65.85980866100012],[-53.20767167899996,65.86298248900009],[-53.23184160099987,65.8710798200001],[-53.218820766999976,65.88955312700013],[-53.19456946499989,65.89166901200004],[-53.14305579299992,65.88475169500003],[-53.14256751199991,65.88934967700008],[-53.14391028599991,65.89057038],[-53.14647376199991,65.89057038],[-53.14928137899997,65.89158763200005],[-53.15929114499994,65.89911530200011],[-53.26598059799996,65.9120954450001],[-53.26598059799996,65.91958242400007],[-53.132313605999904,65.952826239],[-53.09552975199992,65.96653880400011],[-52.874908006999874,66.021918036],[-52.92100989499991,66.03668854400009],[-52.978016730999904,66.0226911480001],[-53.03595943899989,65.99982330900012],[-53.129058397999955,65.9816348330001],[-53.25914466099994,65.939398505],[-53.2550349599999,65.94623444200003],[-53.25230872299994,65.95302969000012],[-53.299549933999906,65.95490143400009],[-53.314361131999874,65.95302969000012],[-53.32652747299994,65.94790273600005],[-53.34557044199994,65.93512604400009],[-53.35875403599991,65.93256256700009],[-53.39020748599992,65.93585846600003],[-53.42520097599993,65.94550202000009],[-53.455393032999915,65.96076080900015],[-53.47203528599988,65.980943101],[-53.448068813999924,65.982652085],[-53.42870032499991,65.99005768400015],[-53.41047115799992,65.99949778899999],[-53.389475063999974,66.00763580900009],[-53.36660722599987,66.00999583500005],[-53.29698645699989,66.00145091400005],[-53.10765540299991,66.021918036],[-53.158111131999924,66.03070709800006],[-53.314361131999874,66.0150820980001],[-53.314361131999874,66.021918036],[-53.30724036399991,66.02480703300013],[-53.3021541009999,66.02822500200013],[-53.29385331899991,66.03558991100012],[-53.42711341099987,66.02228424700012],[-53.46458899599992,66.03558991100012],[-53.382069464999915,66.07831452000015],[-53.10765540299991,66.1522891300001],[-52.99673417899987,66.17177969000004],[-52.73940995999993,66.262152411],[-52.717925584999904,66.29262929900015],[-52.713002081999946,66.31195709800006],[-52.700306769999884,66.32428620000003],[-52.68276933499993,66.33193594000015],[-52.48338782499988,66.38930898600007],[-52.360991990999906,66.44025299700009],[-52.24063066299996,66.44969310100002],[-52.05313066299993,66.48749420800006],[-52.00226803299992,66.4850528020001],[-51.97793535099996,66.48810455900012],[-51.96442623599997,66.501125393],[-51.983225063999924,66.501166083],[-52.005767381999895,66.50568268400004],[-52.02476966099991,66.51312897300012],[-52.0326228509999,66.52220286700009],[-52.02513587099992,66.53558991100012],[-52.00812740799994,66.5485293640001],[-51.97740637899997,66.56378815300008],[-51.97179114499997,66.58112213700018],[-51.93956458199992,66.60516998900012],[-51.874663865999935,66.6420352230001],[-51.83922278599994,66.65460846600008],[-51.72419186099998,66.67243073100015],[-51.61497962099995,66.70355866100006],[-51.459055141999926,66.70429108300009],[-51.44542395699989,66.70783112200014],[-51.43000240799995,66.72085195500013],[-51.45445716099991,66.72174713700004],[-51.48021399599995,66.72549062700007],[-51.50470943899995,66.73212311400015],[-51.52497311099998,66.74192942900008],[-51.45897376199986,66.76618073100015],[-51.43993079299986,66.77920156500015],[-51.42235266799992,66.78489817900011],[-51.366810675999886,66.79621002800012],[-51.36107337099992,66.80280182500009],[-51.2833552729999,66.84491608300014],[-51.258046027999846,66.85114166900009],[-51.1822810539999,66.85114166900009],[-51.121001756999874,66.8373070330001],[-51.100412563999924,66.83755117400013],[-51.12368730399993,66.85248444200009],[-51.14883378799993,66.86420319200006],[-51.11628170499995,66.880560614],[-51.054310675999915,66.87323639500009],[-50.89305579299992,66.83014557500015],[-50.720285610999895,66.83966705900015],[-50.67756100199989,66.84906647300006],[-50.65538489499991,66.85114166900009],[-50.62555904899992,66.84804922100001],[-50.5677791009999,66.8338890650001],[-50.364003058999856,66.82929108300006],[-50.333159959999904,66.84495677300013],[-50.59703528599994,66.85797760600012],[-50.67857825399994,66.87543366100009],[-50.699777798999946,66.86798737200009],[-50.73468990799995,66.85077545800009],[-50.779693162999955,66.85150788000011],[-51.011626756999874,66.90574778900007],[-50.963978644999905,66.93569570500013],[-50.85114498599992,66.959214585],[-50.7838435539999,66.98362864800012],[-50.73729407499987,66.98834870000006],[-50.69664466099988,67.0049502620001],[-50.68268795499989,67.0088565120001],[-50.64753170499994,67.009711005],[-50.57957923099988,66.99778880400005],[-50.49351966099987,66.99697500200013],[-50.47960364499991,66.99681224199999],[-50.300648566999904,66.995062567],[-50.132069464999915,66.96735260600009],[-50.05882727799988,66.96800364800005],[-49.99742591099987,66.98151276200004],[-50.02721106699991,66.99152252800012],[-50.10179602799994,66.99616120000003],[-50.20018469999988,66.99144114800013],[-50.22337805899991,66.994574286],[-50.29059811099995,67.01264069200012],[-50.35081946499991,67.01512278900005],[-50.43492591099994,67.00893789300007],[-50.46975663999987,67.00051504100013],[-50.48037675699993,67.00027090100018],[-50.49404863199996,67.00051504100013],[-50.51150468699993,67.0010847030001],[-50.57127844999988,67.01642487200014],[-50.634266730999904,67.01504140800007],[-50.634266730999904,67.02252838700004],[-50.6153051419999,67.02619049700009],[-50.57921301999994,67.03864166900011],[-50.55972245999996,67.0429548200001],[-50.487049933999884,67.04246653900009],[-50.30284583199992,67.06386953300007],[-50.284779425999886,67.07025788],[-50.31932532499991,67.07855866100006],[-50.59422766799989,67.042141018],[-50.66356360599994,67.01972077000009],[-50.712228969999956,67.01288483300006],[-50.74339758999985,67.00348541900006],[-50.75812740799995,67.00141022300012],[-50.81476803299992,67.00214264500015],[-50.89598548099994,66.99290599199999],[-51.09581458199989,66.93073151200018],[-51.12828528599988,66.92694733300004],[-51.17467200399994,66.92788320500013],[-51.18602454299992,66.92324453300002],[-51.21397864499994,66.90704987200014],[-51.32013912699997,66.88593170800014],[-51.39753170499998,66.84926992400013],[-51.460926886999914,66.8412539730001],[-51.49339758999989,66.83152903900005],[-51.71349036399993,66.7237002620001],[-51.97081458199988,66.66205475500006],[-52.02586829299986,66.62523021000008],[-52.09825598899991,66.54682038000011],[-52.13975989499991,66.51756419499999],[-52.278228318999965,66.48191966400003],[-52.30016028599988,66.48126862200009],[-52.71922766799989,66.34870026200015],[-52.885161912999905,66.24884674700009],[-53.005848761999886,66.20001862200009],[-53.35366777299987,66.11212799700002],[-53.45091712099986,66.10390859600012],[-53.59984290299991,66.12474192900002],[-53.65021725199995,66.12433502800009],[-53.52586829299992,66.15204498900009],[-53.48570716099991,66.1522891300001],[-53.48570716099991,66.15851471600008],[-53.66319739499994,66.138617255],[-53.63780676999991,66.15058014500012],[-53.60680091099991,66.17039622600014],[-53.583648240999935,66.19147370000015],[-53.58189856699994,66.2069359400001],[-53.58189856699994,66.21377187700001],[-53.52969316299993,66.23322174700009],[-53.473703579999885,66.24363841399999],[-53.326975063999946,66.250921942],[-53.121937628999916,66.28945547100008],[-53.211048956999974,66.28261953300007],[-53.28913326699989,66.29067617400001],[-53.314361131999874,66.28945547100008],[-53.3756404289999,66.27094147300006],[-53.47508704299989,66.26251862200003],[-53.4986873039999,66.25470612200003],[-53.4986873039999,66.262152411],[-53.52578691299993,66.25275299700017],[-53.565012173999946,66.24624258000007],[-53.6028539699999,66.24502187700007],[-53.625965949999845,66.25161367400013],[-53.65697180899988,66.27521393400018],[-53.65534420499995,66.28632233300003],[-53.64761308499993,66.29262929900015],[-53.63951575399991,66.29702383000013],[-53.63646399599992,66.30312734600004],[-53.64903723899991,66.32147858300009],[-53.68883216099991,66.3273786480001],[-53.697336391999926,66.34715403900013],[-53.695301886999914,66.35883209800012],[-53.69033769399996,66.36538320500001],[-53.68390865799995,66.37034739800008],[-53.67747962099994,66.37763092700008],[-53.66466223899991,66.40412018400006],[-53.65697180899988,66.41233958500005],[-53.636382615999935,66.40509674700003],[-53.61705481699991,66.41266510600015],[-53.58503170499992,66.44334544500008],[-53.56680253799993,66.455755927],[-53.54442298099994,66.4639346370001],[-53.4986873039999,66.47443268400018],[-53.4986873039999,66.48126862200009],[-53.528309699999845,66.48102448100015],[-53.56615149599988,66.46759674700014],[-53.602162238999966,66.44806549700017],[-53.64317786399988,66.41787344000006],[-53.65001380099988,66.42658112200014],[-53.650949673999975,66.44196198100009],[-53.65021725199995,66.450181382],[-53.64199785099995,66.4604352890001],[-53.602365688999924,66.47235748900006],[-53.58812415299991,66.48126862200009],[-53.63646399599992,66.501125393],[-53.62295488199996,66.50897858300009],[-53.519439256999895,66.52826569200012],[-53.39635169199991,66.52846914300007],[-53.385568813999896,66.53156159100014],[-53.377064581999946,66.53774648600002],[-53.36799068899995,66.54193756700006],[-53.324086066999904,66.52887604400016],[-53.285511847999935,66.52391185100011],[-53.211333787999905,66.52220286700009],[-53.211333787999905,66.51536692900002],[-53.35533606699988,66.52220286700009],[-53.32799231699991,66.51068756700009],[-53.29596920499992,66.502834377],[-53.20099850199992,66.49323151200002],[-53.17039954299989,66.49494049700003],[-53.156158006999874,66.49966054900013],[-53.12922115799992,66.51268138200011],[-52.95140540299988,66.54474518400009],[-52.830881313999946,66.55011627800015],[-52.815337693999965,66.54791901200015],[-52.78669186099998,66.53807200700005],[-52.45726477799991,66.52220286700009],[-52.4439998039999,66.52537669499999],[-52.42951412699994,66.53937409100014],[-52.41624915299991,66.54271067900008],[-52.41624915299991,66.55011627800015],[-52.457753058999906,66.55866120000009],[-52.614857550999936,66.55011627800015],[-52.72472083199992,66.56378815300008],[-52.80532792899987,66.562933661],[-52.820301886999914,66.57001373900006],[-52.820301886999914,66.57684967700008],[-52.98851477799988,66.57684967700008],[-53.02131100199989,66.57265859600012],[-53.08747311099998,66.55434804900007],[-53.121937628999916,66.55011627800015],[-53.22642981699991,66.55223216399999],[-53.26659094999994,66.5616722680001],[-53.41002356699994,66.57135651200004],[-53.43106035099987,66.58429596600014],[-53.41462154899997,66.58633047100007],[-53.38516191299988,66.59577057500009],[-53.36900794199991,66.59796784100008],[-53.34276282499991,66.59772370000006],[-53.33250891799989,66.60346100500011],[-53.32738196499985,66.61839427300005],[-53.34605872299994,66.61798737200014],[-53.354074673999975,66.61591217700014],[-53.36217200399991,66.61098867400007],[-53.38670813699991,66.61847565300002],[-53.455677863999966,66.60561758000001],[-53.48570716099991,66.61098867400007],[-53.472157355999855,66.61579010600015],[-53.43106035099987,66.62523021000008],[-53.43106035099987,66.63206614799999],[-53.43834387899997,66.63275788000014],[-53.457753058999884,66.63825104400014],[-53.42690995999993,66.64533112200003],[-53.28648841099991,66.69354889500006],[-53.259348110999895,66.698187567],[-53.23468990799992,66.69721100500011],[-53.18399003799993,66.68671295800006],[-53.09666907499985,66.68903229400011],[-53.077626105999855,66.68329498900013],[-53.05406653599991,66.67291901200002],[-52.833485480999855,66.68988678600012],[-52.78880774599989,66.70400625200013],[-52.765980597999885,66.70722077],[-52.66746985599988,66.69301992400008],[-52.63597571499986,66.69354889500006],[-52.63829505099991,66.69794342700006],[-52.63906816299993,66.69839101800015],[-52.64220130099991,66.700384833],[-52.62865149599986,66.70624420800011],[-52.61314856699994,66.70799388200011],[-52.58071855399996,66.70722077],[-52.59268144399987,66.713324286],[-52.59703528599988,66.72138092700011],[-52.59496008999986,66.73102448100009],[-52.58755449099987,66.74192942900008],[-52.67007402299987,66.73509349200005],[-52.69220943899995,66.73582591399999],[-52.75206458199989,66.74811432500003],[-52.78844153599988,66.746527411],[-52.984771287999926,66.70722077],[-53.005116339999944,66.70905182500017],[-53.040842251999976,66.71816640800007],[-53.061146613999966,66.72085195500013],[-53.11693274599986,66.71820709800006],[-53.135609503999945,66.72085195500013],[-53.2044978509999,66.74811432500003],[-53.19029700399989,66.75185781500005],[-53.14305579299992,66.74192942900008],[-53.07721920499995,66.74738190300012],[-53.046131964999944,66.74282461100016],[-53.03087317599997,66.74579498900009],[-53.005848761999886,66.754339911],[-52.98558508999986,66.75678131700012],[-52.81566321499988,66.75836823100015],[-52.76183020699994,66.77448151200004],[-52.74657141799989,66.77643463700018],[-52.71104895699989,66.77606842700008],[-52.69546464799989,66.7794457050001],[-52.64903723899994,66.80097077],[-52.65233313699988,66.810980536],[-52.66665605399987,66.82697174700007],[-52.68073482999991,66.83348216399999],[-52.696441209999875,66.82982005400014],[-52.72472083199992,66.81708405200008],[-52.793039516999926,66.80955638200011],[-52.811634894999905,66.81126536700013],[-52.845529751999976,66.82094961100007],[-52.86164303299995,66.82322825700005],[-52.93309485599991,66.81647370000003],[-53.09227454299985,66.7663434920001],[-53.10765540299991,66.77236562700013],[-53.10106360599994,66.78400299700003],[-53.08551998599992,66.79319896000003],[-53.067534959999904,66.79970937700001],[-53.0537003249999,66.80280182500009],[-53.0537003249999,66.80955638200011],[-53.06289628799996,66.81061432500017],[-53.08849036399994,66.81708405200008],[-53.03278561099992,66.84528229400014],[-53.002064581999946,66.85512929900007],[-52.97179114499994,66.85797760600012],[-52.90672766799992,66.83877187700016],[-52.87661699099988,66.83661530200006],[-52.874908006999874,66.85797760600012],[-52.488352016999926,66.8545596370001],[-52.340443488999966,66.81679922100012],[-52.295277472999906,66.81500885600015],[-52.254221157999915,66.82273997600008],[-52.231922980999876,66.84495677300013],[-52.32799231699994,66.8395042990001],[-52.35480709499993,66.84495677300013],[-52.395415818999936,66.86798737200009],[-52.41169186099995,66.872788804],[-52.446929490999906,66.87348053600012],[-52.46401933499995,66.87848541900017],[-52.44473222599993,66.88410065300013],[-52.3095596999999,66.89435455900009],[-52.29271399599992,66.89960358300009],[-52.29767818899995,66.90094635600015],[-52.30207271999993,66.90395742400007],[-52.30638587099995,66.90574778900007],[-52.3014216789999,66.91107819200012],[-52.29271399599992,66.92694733300004],[-52.31798255099994,66.92462799700009],[-52.36461341099996,66.91486237200014],[-52.475168423999975,66.91107819200012],[-52.49876868399991,66.91941966400002],[-52.489816860999895,66.92788320500013],[-52.48851477799988,66.93561432500015],[-52.49400794199991,66.94204336100016],[-52.504994269999884,66.94611237200003],[-52.47813880099988,66.96173737200009],[-52.45034745999993,66.97406647300015],[-52.45034745999993,66.98151276200004],[-52.488758917999945,66.97923411700003],[-52.51846269399996,66.96499258000013],[-52.56704667899992,66.92694733300004],[-52.603179490999956,66.912014065],[-52.79979407499985,66.8921572940001],[-52.82453365799992,66.89472077],[-52.88239498599992,66.912583726],[-53.06737219999994,66.912583726],[-53.063343878999945,66.92304108300006],[-53.061146613999966,66.92694733300004],[-53.095773891999954,66.93195221600008],[-53.35777747299991,66.92133209800015],[-53.375843878999945,66.91608307500015],[-53.38951575399997,66.91445547100012],[-53.45091712099986,66.91941966400002],[-53.647043423999975,66.911566473],[-53.68431555899985,66.91941966400002],[-53.67894446499989,66.92865631700006],[-53.67096920499994,66.93357982000009],[-53.65021725199995,66.93992747600005],[-53.670480923999946,66.94672272300006],[-53.77183997299991,66.95677317900004],[-53.807484503999945,66.97089264500008],[-53.82485917899992,66.97406647300015],[-53.828684048999946,66.97724030200011],[-53.8283585279999,66.98432038000009],[-53.824574347999885,66.99140045800014],[-53.81773841099988,66.994574286],[-53.75942949099987,66.994574286],[-53.63646399599992,66.98151276200004],[-53.42393958199992,66.994574286],[-53.314361131999874,66.98151276200004],[-53.264475063999924,66.98436107000008],[-53.217518683999884,66.994574286],[-53.251616990999906,67.00543854400007],[-53.56017005099988,67.01504140800007],[-53.575103318999936,67.01105377800009],[-53.60163326699998,66.99799225500011],[-53.61538652299989,66.994574286],[-53.63463294199993,66.99652741100006],[-53.69054114499991,67.01504140800007],[-53.7752986319999,67.01776764500012],[-53.81493079299992,67.027044989],[-53.81403561099992,67.04979075700011],[-53.82941646999995,67.06386953300007],[-53.806141730999855,67.07282135600009],[-53.73892167899992,67.07770416900014],[-53.588734503999966,67.07025788],[-53.429839647999955,67.09540436400006],[-53.40306555899994,67.10492584800006],[-53.397816535999965,67.11245351800012],[-53.43106035099987,67.111273505],[-53.55394446499991,67.09076569200015],[-53.964914516999926,67.07770416900014],[-53.945790167999945,67.09332916900014],[-53.938140428999894,67.09760163000006],[-53.94640051999991,67.09760163000006],[-53.964914516999926,67.10443756700009],[-53.93578040299985,67.11493561400015],[-53.91966712099989,67.11790599200008],[-53.90343176999994,67.11871979400017],[-53.92393958199989,67.12490469000012],[-53.916656053999894,67.13043854400014],[-53.90843665299988,67.13475169500008],[-53.8993220689999,67.137681382],[-53.889759894999905,67.13922760600003],[-53.914621548999946,67.14516836100013],[-53.92393958199989,67.1454125020001],[-53.90689042899993,67.15338776200007],[-53.89338131399995,67.15338776200007],[-53.87975012899991,67.15127187700013],[-53.86241614499993,67.152818101],[-53.857004360999895,67.15688711100013],[-53.85326087099986,67.163519598],[-53.85073808499993,67.16998932500012],[-53.848784959999904,67.17328522300014],[-53.84068762899997,67.17609284100007],[-53.71165930899991,67.19228750200013],[-53.41185462099992,67.1963565120001],[-53.38267981699997,67.20685455900018],[-53.406158006999924,67.20734284100014],[-53.45311438699986,67.21393463700004],[-53.53453528599991,67.20929596600011],[-53.56338456899993,67.21133047100011],[-53.58812415299991,67.22113678600006],[-53.55980383999989,67.23236725500009],[-53.521473761999935,67.2413597680001],[-53.48224850199992,67.24445221600017],[-53.420155402999875,67.23163483300014],[-53.38316809799994,67.2343610700001],[-53.314361131999874,67.24774811400003],[-53.07420813699985,67.25527578300007],[-53.05724036399988,67.25824616100009],[-53.023752407999915,67.27204010600009],[-53.005848761999886,67.27570221600014],[-52.93016516799989,67.26951732],[-52.88589433499993,67.28074778899999],[-52.85521399599992,67.28465403899999],[-52.82408606699994,67.2940941430001],[-52.58043372299991,67.3241641300001],[-52.56041419199994,67.32196686400012],[-52.519154425999915,67.3126488300001],[-52.498199022999955,67.310492255],[-52.47858639199998,67.3126488300001],[-52.46837317599994,67.31785716399999],[-52.461048956999946,67.32461172100012],[-52.45034745999993,67.33100006700015],[-52.417591925999915,67.34064362200012],[-52.267933722999935,67.35569896000011],[-52.190663214999915,67.37189362200009],[-52.14932206899988,67.37197500200007],[-52.0489802729999,67.34223053600014],[-51.55284583199992,67.33100006700015],[-51.49058997299994,67.31565989799999],[-51.46117102799985,67.30288320500016],[-51.43993079299986,67.286281643],[-51.418853318999936,67.26007721600014],[-51.41567949099987,67.25153229400003],[-51.40990149599992,67.24359772300006],[-51.37474524599995,67.2279727230001],[-51.30304928299992,67.16278717700007],[-51.27708899599995,67.1474063170001],[-51.24242102799988,67.13617584800012],[-51.17613684799991,67.12490469000012],[-51.14004472599995,67.12531159100014],[-51.00226803299995,67.14337799700014],[-50.93809973899991,67.16168854400003],[-50.89195716099988,67.16766998900015],[-50.82848059799996,67.18284739800013],[-50.669585740999935,67.19318268400002],[-50.41812089799992,67.17438385600009],[-50.34683183499993,67.1869570980001],[-50.34642493399991,67.19159577],[-50.34776770699991,67.19277578300013],[-50.35033118399991,67.19277578300013],[-50.35309811099998,67.193793036],[-50.34683183499993,67.193793036],[-50.36481686099995,67.19904205900018],[-50.381337042999945,67.19867584800006],[-50.41576087099989,67.193793036],[-50.43211829299989,67.19562409100016],[-50.473500128999916,67.20685455900018],[-50.50918535099996,67.22459544500008],[-50.524728969999956,67.2279727230001],[-50.82921301999988,67.19879791900006],[-51.11314856699988,67.13939036699999],[-51.1822810539999,67.1454125020001],[-51.212025519999905,67.15607330900004],[-51.237131313999896,67.16950104400003],[-51.31041419199994,67.22117747600004],[-51.36644446499986,67.2473005230001],[-51.38841712099989,67.26951732],[-51.418202277999875,67.31317780200008],[-51.439442511999886,67.33075592699998],[-51.46690833199992,67.33783600500006],[-51.48485266799985,67.338568427],[-51.50682532499988,67.34223053600014],[-51.52183997299991,67.35049062700011],[-51.51870683499993,67.36505768400013],[-51.50389563699985,67.37079498900012],[-51.26488196499989,67.38556549700003],[-51.18976803299995,67.40607330900015],[-51.1497289699999,67.40851471600011],[-51.13255774599988,67.41351959800015],[-51.11465410099993,67.42649974200005],[-51.544077114999965,67.39313385650003],[-51.97350012899997,67.3597679710001],[-52.01219641799992,67.36505768400013],[-52.114003058999856,67.40119049700009],[-52.14932206899988,67.40607330900015],[-52.43077551999994,67.37636953300013],[-52.48375403599991,67.36200592700008],[-52.51244055899985,67.35765208500008],[-52.57331295499995,67.35765208500008],[-52.6146541009999,67.34686920800009],[-52.8641658194999,67.31348297750004],[-53.113677537999905,67.28009674700003],[-53.23184160099987,67.29621002800009],[-53.22109941299996,67.3109398460001],[-53.183664516999926,67.33002350500009],[-53.17039954299989,67.34398021000014],[-53.18846594999991,67.34316640800012],[-53.25104732999992,67.32713450700014],[-53.29698645699989,67.3078067080001],[-53.34483801999991,67.27960846600006],[-53.38312740799995,67.27317942900011],[-53.509022589999915,67.27317942900011],[-53.596994594999956,67.25527578300007],[-53.67341061099998,67.22833893400009],[-53.7669164699999,67.20661041900001],[-53.80785071499986,67.20685455900018],[-53.80785071499986,67.21430084800015],[-53.773060675999915,67.2279727230001],[-53.79385331899991,67.23456452000006],[-53.85130774599992,67.22866445500013],[-53.87669837099991,67.23476797100001],[-53.86888587099995,67.23993561400012],[-53.86021887899994,67.24384186400012],[-53.85094153599991,67.246527411],[-53.841379360999895,67.24774811400003],[-53.841379360999895,67.25527578300007],[-53.86241614499993,67.2573102890001],[-53.88292395699989,67.2621117210001],[-53.87474524599989,67.27602773600007],[-53.86351477799988,67.28412506699999],[-53.85777747299991,67.29242584800006],[-53.873036261999886,67.31932200700005],[-53.86636308499993,67.32485586100007],[-53.83511308499996,67.33100006700015],[-53.85777747299991,67.34955475500006],[-53.849598761999914,67.366644598],[-53.82384192599997,67.381293036],[-53.793568488999966,67.39240143400004],[-53.80166581899991,67.39459870000003],[-53.821522589999915,67.40607330900015],[-53.80573482999995,67.41860586100007],[-53.78270423099988,67.42967357000009],[-53.75841223899991,67.43773021000004],[-53.73892167899992,67.44086334800012],[-53.72935950399991,67.443548895],[-53.71263587099989,67.45661041900017],[-53.70421301999993,67.46133047100008],[-53.694894985999895,67.462103583],[-53.67479407499985,67.46088288],[-53.626779751999976,67.48615143400004],[-53.57583574099996,67.497503973],[-53.47826087099995,67.50849030200008],[-53.4075414699999,67.5270042990001],[-53.386097785999965,67.52960846600008],[-53.37881425699995,67.53229401200015],[-53.34911048099994,67.54950592700008],[-53.31175696499989,67.56232330900012],[-53.12584387899989,67.59027741100014],[-53.10147050699993,67.59788646],[-53.136708136999886,67.60602448100009],[-53.20689856699993,67.58372630400005],[-53.23924719999985,67.59039948100012],[-53.119048631999874,67.63410065300009],[-53.03465735599991,67.6435000670001],[-52.99095618399991,67.65412018400015],[-52.90973873599992,67.68720123900003],[-52.96226966099994,67.68528880400005],[-52.98985755099997,67.68024323100002],[-53.027740037999905,67.66205475500011],[-53.057484503999916,67.65688711100005],[-53.08771725199992,67.65558502800003],[-53.10765540299991,67.65936920800006],[-53.081288214999915,67.68048737200014],[-53.04771887899997,67.69578685100011],[-52.978627081999974,67.71454498900009],[-52.90046139199995,67.72699616099999],[-52.820301886999914,67.7282168640001],[-52.79967200399988,67.7240664730001],[-52.76427161399988,67.71059804900001],[-52.74522864499988,67.70770905200006],[-52.59797115799994,67.71893952000006],[-52.562611456999946,67.72622304900007],[-52.53294837099992,67.74188873900006],[-52.753895636999886,67.73114655200014],[-52.827748175999886,67.74188873900006],[-52.78962154899992,67.75014883000013],[-52.64297441299993,67.75116608300003],[-52.55406653599991,67.76923248900012],[-52.40908769399987,67.76923248900012],[-52.37840735599988,67.76382070500007],[-52.32013912699995,67.740423895],[-52.24469967399992,67.73102448100015],[-52.128285285999965,67.7002627620001],[-52.119252081999946,67.69912344000015],[-52.095936652999846,67.69871653900005],[-52.08726966099994,67.7002627620001],[-52.08633378799996,67.70384349200006],[-52.086659308999884,67.71076080900015],[-52.08576412699989,67.71784088700012],[-52.08112545499998,67.72199127800015],[-52.06212317599997,67.72109609600007],[-52.02399654899989,67.704535223],[-51.98468990799989,67.697211005],[-51.94359290299991,67.68353913000006],[-51.914906378999945,67.67942942900011],[-51.90562903599988,67.67698802299999],[-51.888661261999914,67.67015208500005],[-51.881581183999856,67.66323476800007],[-51.88499915299985,67.65717194200006],[-51.89028886599993,67.65151601800007],[-51.889271613999966,67.64569733300011],[-51.86412512899989,67.6358910180001],[-51.75454667899996,67.63263580900004],[-51.53237870999996,67.65936920800006],[-51.403635219999956,67.65839264500009],[-51.381581183999856,67.66673411700005],[-51.40664628799996,67.67279694200015],[-51.41567949099987,67.67357005400007],[-51.41567949099987,67.68040599199999],[-51.348011847999935,67.67951080900009],[-51.31554114499994,67.67454661700005],[-51.25426184799991,67.65094635600008],[-51.04922441299988,67.60773346600011],[-51.01842200399991,67.59414297100014],[-51.001332160999965,67.590521552],[-50.96190344999988,67.59259674700012],[-50.94644120999996,67.58730703300013],[-50.93350175699996,67.57949453300013],[-50.887521938999896,67.56370677299999],[-50.803130662999926,67.52204010600003],[-50.77513587099992,67.51593659100014],[-50.75914466099991,67.51447174700009],[-50.74160722599987,67.51044342700011],[-50.71031653599991,67.49860260600015],[-50.69310462099989,67.49408600499999],[-50.634266730999904,67.49481842700014],[-50.57921301999994,67.48248932500009],[-50.55972245999996,67.481146552],[-50.541371222999906,67.48346588700015],[-50.502552863999874,67.49274323100012],[-50.48375403599994,67.49481842700014],[-50.224232550999915,67.477687893],[-50.19664466099988,67.46747467700006],[-50.19261633999991,67.47394440300015],[-50.20287024599995,67.481146552],[-50.173817511999886,67.49310944200012],[-50.104603644999884,67.505316473],[-50.07249915299991,67.51593659100014],[-50.097279425999886,67.51577383000007],[-50.14427649599992,67.50507233300006],[-50.282053188999924,67.49481842700014],[-50.30711829299992,67.49770742400007],[-50.38841712099992,67.51593659100014],[-50.5517471999999,67.51019928600009],[-50.74356035099993,67.54572174700014],[-50.82689368399994,67.58881256700009],[-50.87441972599993,67.59788646],[-50.87441972599993,67.60468170800002],[-50.85033118399991,67.607326565],[-50.80455481699991,67.62177155200006],[-50.60228430899991,67.64850495000015],[-50.44033769399988,67.69578685100011],[-50.34288489499994,67.710150458],[-50.302805141999926,67.73163483300011],[-50.28160559799991,67.73847077000015],[-50.250721808999884,67.73729075700011],[-50.19664466099988,67.7282168640001],[-50.10521399599995,67.72321198100018],[-50.07933508999994,67.71454498900009],[-50.086740688999924,67.710150458],[-50.09154212099991,67.70514557500013],[-50.09984290299988,67.69403717700011],[-50.01382402299989,67.6846377620001],[-49.96857662699995,67.68520742400007],[-49.935943162999905,67.7002627620001],[-49.9697159499999,67.7097028670001],[-50.03937740799998,67.72028229400013],[-50.105580206999946,67.74054596600017],[-50.286000128999916,67.74542877800003],[-50.31871497299994,67.741644598],[-50.44554602799988,67.70441315300003],[-50.50706946499994,67.6963565120001],[-50.59333248599998,67.66673411700005],[-50.66047115799995,67.65534088700018],[-50.73045813699985,67.65314362200009],[-50.86082923099988,67.63263580900004],[-51.011626756999874,67.62518952000006],[-51.011626756999874,67.63263580900004],[-50.98273678299995,67.63532135600012],[-50.92878170499995,67.65424225500014],[-50.9017634759999,67.65936920800006],[-50.92711341099994,67.66791413000007],[-50.95645097599995,67.66828034100008],[-51.03693600199992,67.65656159100011],[-51.10383053299995,67.65936920800006],[-51.122670050999886,67.66274648600007],[-51.28888912699992,67.71430084800011],[-51.32013912699997,67.71454498900009],[-51.317290818999936,67.72459544500003],[-51.31281490799998,67.730902411],[-51.305816209999904,67.73407623900006],[-51.2958878249999,67.73505280200014],[-51.28233801999994,67.73330312700013],[-51.2733455069999,67.72931549700013],[-51.26626542899996,67.72500234600007],[-51.258656378999916,67.72199127800015],[-51.23558508999985,67.72052643400009],[-51.16893469999988,67.7282168640001],[-51.06346594999988,67.71820709800012],[-51.00377356699991,67.72077057500006],[-50.9700414699999,67.74188873900006],[-50.98436438699988,67.74188873900006],[-50.98436438699988,67.74868398600007],[-50.77855383999991,67.77342357000005],[-50.739857550999965,67.79218170800011],[-50.69713294199997,67.8008487000001],[-50.66104081899991,67.82005442900008],[-50.641428188999946,67.82440827000006],[-50.418324347999885,67.82184479400014],[-50.35309811099998,67.803900458],[-50.33202063699985,67.803900458],[-50.30687415299988,67.80744049700009],[-50.2877498039999,67.81439850500009],[-50.284779425999886,67.82440827000006],[-50.264963344999956,67.84491608300011],[-50.30675208199992,67.8389346370001],[-50.35977128799993,67.84015534100003],[-50.41340084499993,67.84715403900002],[-50.456695115999906,67.85854726800007],[-50.44831295499995,67.88084544500002],[-50.46519934799994,67.89508698100009],[-50.49307206899987,67.89960358300006],[-50.517567511999914,67.89272695500013],[-50.51121985599988,67.88979726800012],[-50.49746660099987,67.88157786700013],[-50.490874803999894,67.87909577],[-50.52440344999994,67.87250397300012],[-50.59585527299989,67.88275788000006],[-50.62120520699991,67.87909577],[-50.638783331999946,67.8877627620001],[-50.75112870999996,67.91083405200006],[-50.784291144999884,67.91128164300015],[-50.8145238919999,67.90403880400014],[-50.83348548099991,67.88589101800012],[-50.81305904899992,67.88589101800012],[-50.81305904899992,67.87909577],[-50.87726803299997,67.86640045800014],[-50.887521938999896,67.85854726800007],[-50.87547766799988,67.8500837260001],[-50.84898841099991,67.85040924700006],[-50.80553137899997,67.85854726800007],[-50.770253058999934,67.8730329450001],[-50.75377356699994,67.87523021],[-50.73106848899991,67.872219143],[-50.66942298099988,67.85171133000013],[-50.64854895699992,67.85114166900017],[-50.70152747299994,67.840318101],[-50.717396613999966,67.83124420800007],[-50.7099503249999,67.82440827000006],[-50.84288489499993,67.81818268400009],[-50.86766516799989,67.803900458],[-50.82664954299989,67.803900458],[-50.85781816299988,67.7917341170001],[-50.8939509759999,67.79413483300006],[-50.930775519999884,67.80125560100011],[-50.956410285999965,67.803900458],[-50.971180792999945,67.79755280200008],[-50.989491339999915,67.77680084800006],[-51.00475012899997,67.76923248900012],[-51.02196204299989,67.76776764500006],[-51.07677161399991,67.77602773600016],[-51.09943600199994,67.77387116100006],[-51.145253058999856,67.76439036700005],[-51.16869055899994,67.76235586100002],[-51.18773352799991,67.76455312700001],[-51.23753821499988,67.78286367400007],[-51.23753821499988,67.7896996110001],[-51.19261633999989,67.80292389500012],[-51.17613684799991,67.803900458],[-51.20018469999985,67.81224192900008],[-51.22728430899988,67.81679922100002],[-51.24950110599994,67.82591380400011],[-51.258656378999916,67.84796784100011],[-51.27456620999993,67.86375560100005],[-51.34748287699994,67.87299225500011],[-51.36790930899991,67.88589101800012],[-51.337880011999886,67.88703034100017],[-51.22166907499988,67.90387604400017],[-51.07616126199994,67.9079043640001],[-51.063099738999966,67.90289948100009],[-51.05492102799985,67.89618561400015],[-51.02953040299993,67.88251373900003],[-51.01842200399991,67.87909577],[-50.992095506999895,67.87897370000003],[-50.97594153599994,67.88686758000001],[-50.974191860999944,67.89956289300007],[-50.991118943999936,67.91376373900009],[-50.98460852799994,67.91469961100016],[-50.9700414699999,67.91998932500003],[-51.04576575399997,67.9404971370001],[-51.040150519999884,67.95307038],[-51.0404353509999,67.96332428600003],[-51.04710852799988,67.97085195500006],[-51.060047980999876,67.97528717700014],[-51.03892981699997,67.9815127620001],[-51.24388587099992,67.969916083],[-51.268299933999884,67.95783112200009],[-51.288319464999944,67.94415924700014],[-51.314442511999914,67.93195221600017],[-51.34154212099992,67.92328522300005],[-51.36449133999991,67.91998932500003],[-51.391184048999946,67.92202383000007],[-51.40396074099988,67.92523834800012],[-51.43423417899987,67.93675364800005],[-51.47313391799989,67.94082265800002],[-51.491444464999944,67.94794342700008],[-51.50499426999991,67.94326406500014],[-51.5516658189999,67.93939850500006],[-51.57335364499988,67.93427155200014],[-51.560454881999874,67.91868724200005],[-51.50914466099994,67.9007022160001],[-51.4877009759999,67.88930898600013],[-51.47032630099991,67.86542389500006],[-51.45299231699993,67.86025625200007],[-51.41466223899991,67.85976797100007],[-51.39671790299985,67.856634833],[-51.33690344999991,67.83795807500003],[-51.32555091099994,67.82436758000007],[-51.34740149599989,67.803900458],[-51.38744055899991,67.78343333500014],[-51.39842688699986,67.76927317900011],[-51.381581183999856,67.75551992400001],[-51.381581183999856,67.74868398600007],[-51.42349199099996,67.74974192900014],[-51.44481360599993,67.74705638200005],[-51.47443600199997,67.73102448100015],[-51.495350714999944,67.72797272300006],[-51.516713019999884,67.72923411699999],[-51.53237870999996,67.73505280200014],[-51.50499426999991,67.74017975500006],[-51.47838294199997,67.749457098],[-51.470204230999855,67.75836823100003],[-51.49828040299985,67.76235586100002],[-51.51317298099991,67.76048411700005],[-51.55284583199992,67.74868398600007],[-51.569243943999936,67.74974192900014],[-51.5840551419999,67.753363348],[-51.59780839799993,67.75372955900012],[-51.61119544199991,67.74530670800006],[-51.629709438999924,67.73029205900004],[-51.653960740999935,67.71710846600008],[-51.68000240799989,67.706773179],[-51.70368404899991,67.7002627620001],[-51.73257402299993,67.6976585960001],[-51.76964270699994,67.69920482000013],[-51.802845831999974,67.706773179],[-51.82042395699992,67.72199127800015],[-51.79991614499994,67.72199127800015],[-51.79991614499994,67.7282168640001],[-51.82534745999996,67.72809479400014],[-51.83714758999994,67.7299665390001],[-51.84829667899996,67.73505280200014],[-51.81663977799988,67.75348541900017],[-51.7833552729999,67.76129791900014],[-51.64610755099994,67.76044342700006],[-51.63170325399997,67.76581452000012],[-51.62995357999998,67.7765973980001],[-51.643462693999965,67.78148021],[-51.669545050999915,67.78286367400007],[-51.69180253799988,67.78827545800011],[-51.73155676999997,67.78978099199999],[-51.80606035099993,67.78139883000001],[-51.81973222599987,67.77692291900014],[-51.832020636999914,67.76947663000009],[-51.844593878999916,67.758937893],[-51.85871334499993,67.75360748900015],[-52.231922980999876,67.76923248900012],[-52.26357988199993,67.77997467700014],[-52.298817511999886,67.81061432500015],[-52.330922003999945,67.81696198100018],[-52.34215247299997,67.8217227230001],[-52.33356686099995,67.83222077000015],[-52.318470831999946,67.84292226800007],[-52.294992641999976,67.85578034100008],[-52.23810787699995,67.86542389500006],[-52.22301184799994,67.8705508480001],[-52.196197068999936,67.88328685100014],[-52.15900631399995,67.89158763200011],[-52.14932206899988,67.89272695500013],[-52.13878333199992,67.89077383000001],[-52.13882402299993,67.88637929900001],[-52.14590410099987,67.88178131700009],[-52.1561580069999,67.87909577],[-51.92275956899991,67.88589101800012],[-51.90648352799988,67.88983795800011],[-51.87205969999985,67.90338776200018],[-51.828114386999914,67.91071198100009],[-51.76402747299994,67.92991771000014],[-51.731312628999916,67.93427155200014],[-51.66490637899989,67.93305084800004],[-51.62865149599988,67.93675364800005],[-51.60130774599991,67.94794342700008],[-51.60484778599991,67.95457591400005],[-51.597320115999935,67.95937734600012],[-51.57335364499988,67.96841054900013],[-51.606597459999904,67.97699616100014],[-51.836781378999916,67.9404971370001],[-51.91673743399991,67.91347890800013],[-51.94888261599988,67.90814850500009],[-52.204213019999884,67.90574778900005],[-52.23741614499991,67.90180084800015],[-52.26203365799989,67.88930898600013],[-52.27481035099996,67.88442617400007],[-52.394602016999926,67.87030670800013],[-52.40941321499988,67.86542389500006],[-52.42003333199994,67.85785553600012],[-52.440174933999884,67.83885325700011],[-52.45034745999993,67.83124420800007],[-52.4668676419999,67.82355377800015],[-52.48314368399994,67.81928131700015],[-52.555043097999885,67.81268952000006],[-52.62604732999995,67.79385000200013],[-52.663319464999944,67.7896996110001],[-52.82404537699995,67.79645416900001],[-52.83828691299993,67.79336172100011],[-52.861683722999935,67.77920156500012],[-52.87555904899991,67.77602773600016],[-52.88524329299988,67.77496979400007],[-52.90160071499988,67.77024974199998],[-52.90973873599992,67.76923248900012],[-52.94383704299992,67.76923248900012],[-53.00377356699994,67.75771719],[-53.06432044199994,67.73574453300007],[-53.331654425999965,67.59589264500015],[-53.576730923999946,67.51886627800015],[-53.66738847599987,67.50299713700004],[-53.67882239499991,67.5026309270001],[-53.69054114499991,67.50849030200008],[-53.67552649599989,67.52057526200015],[-53.68081620999996,67.52391185100002],[-53.70421301999993,67.52277252800015],[-53.725493943999936,67.53164297100001],[-53.729725714999944,67.53807200700011],[-53.711008266999976,67.56370677299999],[-53.72671464799993,67.56622955900008],[-53.73790442599994,67.57269928600003],[-53.741037563999924,67.58136627800008],[-53.73273678299995,67.59039948100012],[-53.75259355399996,67.60301341400002],[-53.73534094999985,67.61334870000009],[-53.589182094999956,67.65062083500008],[-53.56017005099988,67.65314362200009],[-53.56017005099988,67.65936920800006],[-53.697336391999926,67.64569733300011],[-53.5872696609999,67.67218659100007],[-53.55394446499991,67.68720123900003],[-53.56078040299985,67.69017161700013],[-53.56769771999993,67.69403717700011],[-53.55557206899993,67.70136139500012],[-53.54556230399987,67.71137116100012],[-53.54141191299993,67.719671942],[-53.54710852799991,67.72199127800015],[-53.55406653599991,67.73541901200015],[-53.56550045499995,67.7445742860001],[-53.56944739499994,67.75250885600009],[-53.55394446499991,67.76235586100002],[-53.57066809799994,67.76186758000011],[-53.58885657499985,67.76487864800013],[-53.605865037999905,67.77090078300012],[-53.637521938999974,67.79071686400006],[-53.65843665299985,67.7956403670001],[-53.70421301999993,67.79645416900001],[-53.68765214799989,67.81183502800015],[-53.595570441999875,67.83124420800007],[-53.55508378799996,67.84784577000012],[-53.54092363199993,67.85114166900017],[-53.526275193999936,67.85028717700008],[-53.51305091099987,67.8467471370001],[-53.49990800699993,67.845404364],[-53.48570716099991,67.85114166900017],[-53.489491339999944,67.85407135600009],[-53.490345831999946,67.85504791900016],[-53.49254309799994,67.85854726800007],[-53.48033606699997,67.85854726800007],[-53.469105597999935,67.85415273600007],[-53.46092688699986,67.84601471600014],[-53.457753058999884,67.834662177],[-53.462513800999886,67.82111237200003],[-53.47443600199992,67.81614817900008],[-53.505523240999935,67.81696198100018],[-53.505523240999935,67.81012604400014],[-53.479644334999925,67.80516185100011],[-53.43028723899994,67.81549713700012],[-53.403187628999916,67.81696198100018],[-53.41344153599994,67.81028880400011],[-53.42516028599994,67.80597565300003],[-53.437855597999885,67.803900458],[-53.45091712099986,67.803900458],[-53.45091712099986,67.79645416900001],[-53.2779841789999,67.80581289300007],[-53.2454727859999,67.82440827000006],[-53.38727779899989,67.82746002800015],[-53.43106035099987,67.838080145],[-53.43106035099987,67.84491608300011],[-53.41803951699998,67.85187409100011],[-53.375843878999945,67.86542389500006],[-53.402333136999914,67.87299225500011],[-53.45962480399996,67.87323639500006],[-53.48570716099991,67.87909577],[-53.46108964799993,67.89313385600015],[-53.43399003799988,67.89899323100008],[-53.379261847999935,67.89956289300007],[-53.372222459999875,67.897691148],[-53.34170488199993,67.88589101800012],[-53.312611456999974,67.88605377800009],[-53.29922441299988,67.88312409100017],[-53.29385331899991,67.872219143],[-53.30064856699993,67.86806875200016],[-53.31427975199989,67.86322663000009],[-53.32534745999993,67.85675690300017],[-53.324330206999946,67.84796784100011],[-53.314361131999874,67.841986395],[-53.291086391999954,67.838120835],[-53.27965247299991,67.834662177],[-53.26207434799996,67.83222077000015],[-53.18399003799993,67.838080145],[-53.18399003799993,67.84491608300011],[-53.24128170499997,67.84271881700012],[-53.2701716789999,67.84634023600007],[-53.28648841099991,67.85854726800007],[-53.15021725199995,67.89118073100009],[-53.121937628999916,67.89272695500013],[-53.06818600199995,67.88231028900007],[-53.0537003249999,67.88589101800012],[-53.08885657499985,67.90224844000015],[-53.125152147999955,67.91144440300012],[-53.16344153599991,67.91299062700014],[-53.2044978509999,67.90631745000009],[-53.250070766999954,67.89374420800011],[-53.25914466099994,67.89272695500013],[-53.264515753999916,67.89533112200014],[-53.26642818899995,67.89996979400017],[-53.26903235599985,67.90444570500013],[-53.27647864499993,67.90631745000009],[-53.29662024599988,67.9079043640001],[-53.305531378999916,67.91022370000009],[-53.314361131999874,67.91376373900009],[-53.30020097599995,67.91746653900013],[-53.267689581999974,67.91819896000005],[-53.25572669199994,67.92340729400014],[-53.2416072259999,67.93211497600014],[-53.2252091139999,67.93512604400003],[-53.19082597599996,67.93427155200014],[-53.23399817599997,67.94301992400001],[-53.25450598899991,67.94940827000012],[-53.26598059799996,67.96100495000013],[-53.250070766999954,67.96482982000008],[-53.200428839999944,67.967759507],[-53.1590876939999,67.96002838700015],[-53.07420813699985,67.97528717700014],[-52.889230923999946,67.9815127620001],[-52.91397050699993,67.99017975499999],[-52.9720352859999,68.00202057500015],[-52.99844316299988,68.002590236],[-53.007435675999915,67.99994538000014],[-53.02098548099988,67.99087148600013],[-53.032866990999906,67.98895905200008],[-53.25914466099994,67.98895905200008],[-53.25251217399989,67.99754466399999],[-53.249256964999944,68.00641510600003],[-53.25096594999985,68.01508209800012],[-53.25914466099994,68.02301666900007],[-53.228179490999906,68.02728913000003],[-53.17658443899995,68.04608795800006],[-53.04124915299988,68.06305573100003],[-52.72923743399988,67.9667829450001],[-52.63223222599993,67.96100495000013],[-52.62441972599993,67.95917389500006],[-52.62291419199988,67.9550641950001],[-52.623443162999955,67.95066966400005],[-52.621693488999966,67.94794342700008],[-52.58922278599987,67.943101304],[-52.53929602799993,67.95343659100008],[-52.258615688999896,67.9404971370001],[-52.22191321499988,67.92845286699999],[-52.207102016999926,67.92682526200015],[-52.18276933499993,67.92894114800008],[-52.13792883999991,67.93838125200007],[-52.11489824099996,67.9404971370001],[-52.09947669199991,67.94521719],[-52.059315558999906,67.97528717700014],[-52.059315558999906,67.9815127620001],[-52.08507239499994,67.98086172100015],[-52.112782355999855,67.97565338700015],[-52.16270911399988,67.95783112200009],[-52.19749915299994,67.95018138200004],[-52.47600257099989,67.96841054900013],[-52.75450598899994,67.98663971600003],[-52.82555091099991,68.00543854400014],[-53.00413977799988,68.0753441430001],[-53.135894334999875,68.10911692900008],[-53.162953253999916,68.12604401200015],[-53.14476477799991,68.13833242400001],[-53.09902910099989,68.15127187700001],[-53.08096269399988,68.1596133480001],[-53.094349738999874,68.1725121110001],[-53.11156165299991,68.17841217700014],[-53.13060462099989,68.17841217700014],[-53.14928137899997,68.17328522300012],[-53.15318762899997,68.15688711100002],[-53.179310675999915,68.15053945500006],[-53.23924719999985,68.14594147300015],[-53.267811652999846,68.13349030200011],[-53.28400631399989,68.13007233300011],[-53.29698645699989,68.13597239800004],[-53.296254035999965,68.14423248900015],[-53.28697669199991,68.15379466400013],[-53.27489173099991,68.16229889500005],[-53.26598059799996,68.16705963700015],[-53.2870173819999,68.16982656500012],[-53.33018958199992,68.15664297100005],[-53.352202928999894,68.15277741100006],[-53.457753058999884,68.15277741100006],[-53.30797278599993,68.18650950700005],[-53.15269934799988,68.20115794500006],[-53.11481686099995,68.19863515800016],[-53.076975063999896,68.19159577000009],[-53.005848761999886,68.16705963700015],[-52.972727016999926,68.16054922100007],[-52.89317786399994,68.15692780200003],[-52.868763800999886,68.14594147300015],[-52.84972083199989,68.14838288],[-52.817616339999915,68.14020416900017],[-52.75951087099989,68.11859772300006],[-52.726470506999924,68.1112328150001],[-52.531564907999915,68.09544505400014],[-52.44619706899988,68.06899648600015],[-52.41519120999996,68.06781647300012],[-52.38898678299992,68.07762278900007],[-52.41454016799992,68.07965729400009],[-52.51187089799989,68.10272858300006],[-52.52794348899996,68.10927969000012],[-52.53099524599986,68.11725495000009],[-52.51244055899985,68.12604401200015],[-52.53807532499991,68.13377513200005],[-52.621693488999966,68.12604401200015],[-52.637928839999915,68.12889232],[-52.64037024599995,68.13532135600009],[-52.63703365799992,68.14203522300015],[-52.63597571499986,68.14594147300015],[-52.65233313699988,68.15058014500006],[-52.68736731699996,68.15355052299999],[-52.70421301999997,68.1596133480001],[-52.69456946499991,68.16535065300015],[-52.69058183499993,68.16705963700015],[-52.69058183499993,68.17328522300012],[-52.713449673999946,68.17918528900005],[-52.75413977799991,68.168646552],[-52.780018683999934,68.16705963700015],[-52.77253170499994,68.16705963700015],[-52.79454505099997,68.16583893400004],[-52.799143032999886,68.17576732000005],[-52.791371222999906,68.18821849200008],[-52.77623450399991,68.19432200700005],[-52.72472083199992,68.20115794500006],[-52.70946204299986,68.198919989],[-52.67861894399991,68.18915436400015],[-52.662953253999916,68.18691640800007],[-52.582875128999945,68.19106679900001],[-52.55406653599991,68.18691640800007],[-52.47175045499997,68.161281643],[-52.444203253999945,68.1596133480001],[-52.4400935539999,68.15387604400011],[-52.38898678299992,68.14594147300015],[-52.32616126199986,68.12811920800009],[-52.26512610599988,68.11969635600003],[-52.19937089799989,68.09162018400012],[-52.162993943999936,68.08510976800012],[-52.086781378999945,68.08515045800011],[-52.04751542899995,68.08014557500017],[-51.97520911399988,68.05402252800003],[-51.9315486319999,68.04682038],[-51.57433020749991,68.05884430550005],[-51.21711178299992,68.07086823100003],[-51.16771399599986,68.06513092700006],[-51.14329993399991,68.05829498900012],[-51.1074926419999,68.03754303600012],[-51.05931555899994,68.02855052300009],[-50.99596106699991,68.00946686400012],[-50.9043676419999,67.9926211610001],[-50.86082923099988,67.97833893400004],[-50.713612433999856,67.9577497420001],[-50.689523891999926,67.95136139500009],[-50.68219967399992,67.94424062700013],[-50.619740363999966,67.91376373900009],[-50.60464433499996,67.90949127800015],[-50.56655839799987,67.90631745000009],[-50.57282467399992,67.91376373900009],[-50.56041419199991,67.91876862200003],[-50.54686438699994,67.92047760600003],[-50.51817786399988,67.91998932500003],[-50.508168097999885,67.92226797100001],[-50.4895727199999,67.93203359600015],[-50.47720292899996,67.93427155200014],[-50.232818162999905,67.91242096600008],[-50.178456183999884,67.92039622600005],[-50.14826412699997,67.94794342700008],[-50.29906165299988,67.93427155200014],[-50.31395423099994,67.93650950700011],[-50.34284420499995,67.94578685100008],[-50.46296139199995,67.954779364],[-50.50324459499993,67.96674225500011],[-50.51817786399988,67.96841054900013],[-50.54710852799988,67.96792226800015],[-50.560658331999946,67.96979401200012],[-50.57282467399992,67.97528717700014],[-50.5637914699999,67.97988515800007],[-50.5556534499999,67.985785223],[-50.5492244129999,67.99331289300005],[-50.54552161399993,68.002590236],[-50.59007727799994,68.008693752],[-50.67906653599994,67.99542877800017],[-50.72362219999994,68.002590236],[-50.69859778599991,68.00901927300013],[-50.68150794199988,68.01748281500006],[-50.68032792899996,68.02692291900009],[-50.703195766999954,68.03668854400003],[-50.73485266799992,68.03974030200011],[-50.79637610599988,68.03363678600013],[-50.82664954299989,68.03668854400003],[-50.86461341099991,68.04901764500008],[-50.928293423999946,68.0527204450001],[-50.94273841099991,68.05719635600009],[-50.95213782499985,68.06199778899999],[-50.967274542999945,68.07241445500007],[-50.97744706899988,68.07762278900007],[-50.99437415299988,68.08222077],[-51.029286261999886,68.08608633],[-51.04576575399997,68.09129466400002],[-51.02183997299991,68.10016510600003],[-50.93590247299991,68.11859772300006],[-50.93590247299991,68.12604401200015],[-50.97158769399993,68.12246328300007],[-51.03848222599987,68.10736725500009],[-51.07371985599991,68.10496653900013],[-51.10065670499998,68.10667552300013],[-51.11070716099994,68.11151764500003],[-51.11465410099993,68.12238190300009],[-51.12096106699988,68.13007233300011],[-51.135975714999915,68.13275788],[-51.16893469999988,68.132269598],[-51.18394934799991,68.13654205900004],[-51.2141820949999,68.155218817],[-51.23070227799988,68.1596133480001],[-51.24559485599994,68.1559512390001],[-51.261341925999886,68.14940013200005],[-51.27794348899994,68.14716217700006],[-51.311756964999915,68.165228583],[-51.36790930899991,68.17328522300012],[-51.38638261599993,68.181057033],[-51.41706295499994,68.19818756700006],[-51.436838344999956,68.20115794500006],[-51.436838344999956,68.207993882],[-50.99795488199993,68.1807315120001],[-50.967274542999945,68.18402741100012],[-50.955881313999974,68.18927643400012],[-50.96324622299997,68.19773997600005],[-51.01170813699986,68.21694570500001],[-51.035878058999884,68.22150299700014],[-51.060047980999876,68.22166575700011],[-51.1142472,68.2148298200001],[-51.141835089999944,68.21771881700012],[-51.18651282499991,68.24607982],[-51.21133378799996,68.25018952000012],[-51.35700436099995,68.24835846600014],[-51.381581183999856,68.2558047550001],[-51.363352016999976,68.26569245000003],[-51.34284420499992,68.26951732000005],[-51.2232559889999,68.27480703300004],[-51.20714270699991,68.2800153670001],[-51.1913142569999,68.288763739],[-51.15562903599994,68.294826565],[-51.145741339999944,68.30304596600008],[-51.148345506999924,68.30939362200003],[-51.149281378999916,68.31818268400008],[-51.14883378799993,68.32404205900004],[-51.14378821499988,68.33124420800006],[-51.12083899599992,68.35138580900009],[-51.12824459499998,68.35512929900013],[-51.13540605399993,68.35984935100005],[-51.14232337099992,68.365668036],[-51.14883378799993,68.37250397300004],[-51.12828528599988,68.37250397300004],[-51.14240475199992,68.37620677300005],[-51.16038977799985,68.37872955900018],[-51.175770636999886,68.38418203300002],[-51.1822810539999,68.39642975500009],[-51.17784583199992,68.40810781500006],[-51.16698157499994,68.41421133000007],[-50.99819902299989,68.44684479400011],[-50.94273841099991,68.45001862200017],[-50.92906653599988,68.45441315300015],[-50.881947394999884,68.48216380400012],[-50.85643469999991,68.48956940300003],[-50.82664954299989,68.482367255],[-50.84780839799989,68.47748444200012],[-50.86766516799989,68.46869538000006],[-50.84854081899991,68.46784088700015],[-50.81749426999991,68.47370026200008],[-50.78758704299991,68.48379140800016],[-50.77204342399992,68.49542877800015],[-50.848011847999935,68.50714752800015],[-51.231597459999875,68.4157575540001],[-51.32013912699997,68.42023346600017],[-51.43000240799995,68.40599192900008],[-51.45938066299996,68.4076195330001],[-51.5392146479999,68.42772044500005],[-51.569081183999884,68.43016185100008],[-51.59552975199994,68.42723216400005],[-51.649037238999966,68.41347890800013],[-51.61986243399991,68.40448639500003],[-51.56090247299997,68.39614492400013],[-51.51085364499994,68.36664459800006],[-51.48338782499991,68.35993073100003],[-51.313343878999945,68.365708726],[-51.278797980999855,68.35512929900013],[-51.23216712099995,68.32904694200006],[-51.22093665299994,68.31366608300011],[-51.244984503999966,68.30418528900013],[-51.23542232999989,68.29743073100009],[-51.2232966789999,68.29677969000012],[-51.3131404289999,68.28278229400009],[-51.64806067599988,68.27464427300008],[-51.68024654899994,68.2648786480001],[-51.696888800999886,68.26264069200015],[-51.7313533189999,68.26333242400007],[-51.74705969999987,68.26064687700001],[-51.77765865799989,68.24437083500008],[-51.793690558999884,68.24412669500013],[-51.82656816299988,68.24957916900014],[-52.05353756399995,68.23623281500015],[-52.101551886999935,68.22166575700011],[-52.136708136999914,68.21796295800009],[-52.22687740799995,68.22040436400012],[-52.28160559799997,68.19965241100012],[-52.44513912699992,68.18146393400004],[-52.46939042899993,68.18447500200013],[-52.49132239499994,68.19432200700005],[-52.504994269999884,68.19432200700005],[-52.4590551419999,68.21775950700011],[-52.444203253999945,68.22846100500006],[-52.46353105399987,68.23704661700008],[-52.521148240999935,68.24579498900015],[-52.546864386999886,68.25267161700005],[-52.56212317599994,68.26439036700005],[-52.55215410099987,68.27301666900006],[-52.53099524599986,68.280951239],[-52.51244055899985,68.29059479400017],[-52.54283606699991,68.29555898600002],[-52.64220130099991,68.27692291900003],[-52.75804602799991,68.28270091400009],[-52.795277472999906,68.27728913000004],[-52.78986568899995,68.27606842700014],[-52.74193274599995,68.26532623900012],[-52.67007402299987,68.26093170800014],[-52.64679928299995,68.25495026200012],[-52.628529425999886,68.24213288],[-52.66812089799992,68.22337474200013],[-52.714466925999915,68.21548086100016],[-52.76235917899993,68.215765692],[-52.80671139199995,68.22166575700011],[-52.81297766799992,68.22443268400018],[-52.82469641799989,68.23322174700014],[-52.83397376199994,68.23590729400003],[-52.84654700399994,68.23533763200005],[-52.87144934799997,68.22919342699998],[-52.88239498599992,68.22846100500006],[-52.89952551999997,68.23432038],[-52.89183508999986,68.24192942900014],[-52.85448157499991,68.2558047550001],[-52.89793860599994,68.25372955900009],[-52.919789191999875,68.25543854400011],[-52.93761145699994,68.26264069200015],[-52.91808020699997,68.27887604400009],[-52.88829505099997,68.29026927300005],[-52.751942511999914,68.31777578300007],[-52.71117102799988,68.3189964860001],[-52.677967902999846,68.30752187700016],[-52.66690019399991,68.3099632830001],[-52.65558834499992,68.31452057500003],[-52.64220130099991,68.31785716400007],[-52.645090298999946,68.32168203300007],[-52.64781653599994,68.32831452000015],[-52.649647589999915,68.3315290390001],[-52.61497962099991,68.32982005399998],[-52.602406378999945,68.3332380230001],[-52.601185675999915,68.34454987200009],[-52.59780839799989,68.34479401200004],[-52.590931769999884,68.34422435100005],[-52.58755449099987,68.34454987200009],[-52.58755449099987,68.35138580900009],[-52.69058183499993,68.33771393400015],[-52.78734290299993,68.33673737200009],[-52.831369594999956,68.31732819200009],[-53.07359778599988,68.28754303600009],[-53.137440558999906,68.28986237200006],[-53.17039954299989,68.29677969000012],[-53.20417232999998,68.30866120000009],[-53.22008216099988,68.30939362200003],[-53.25568600199994,68.29100169499999],[-53.30589758999991,68.28778717700011],[-53.339507615999935,68.271877346],[-53.354115363999966,68.27480703300004],[-53.36660722599987,68.28457265800007],[-53.375843878999945,68.29677969000012],[-53.35179602799991,68.29230377800017],[-53.34243730399987,68.294826565],[-53.334868943999936,68.30418528900013],[-53.37783769399988,68.32160065300009],[-53.389475063999974,68.3315290390001],[-53.29556230399993,68.35126373900012],[-53.24791419199994,68.35285065300015],[-53.2044978509999,68.34454987200009],[-53.14631100199995,68.32294342699998],[-53.114898240999935,68.31586334800012],[-53.08849036399994,68.31785716400007],[-53.02574622299997,68.34454987200009],[-52.96239173099991,68.34894440300015],[-52.94758053299995,68.35512929900013],[-52.93195553299994,68.36456940300013],[-52.9102270169999,68.37152741100014],[-52.868763800999886,68.37929922100012],[-52.79971269399988,68.37885163000006],[-52.780018683999934,68.38556549700009],[-52.791005011999886,68.39004140800016],[-52.8121638659999,68.395493882],[-52.820301886999914,68.3998070330001],[-52.81395423099988,68.40851471600008],[-52.80410722599995,68.41307200700011],[-52.79230709499998,68.41437409100003],[-52.780018683999934,68.41347890800013],[-52.77521725199995,68.42291901200007],[-52.717518683999884,68.42377350500006],[-52.69399980399993,68.43085358300011],[-52.68016516799994,68.43927643400015],[-52.6405330069999,68.45233795800013],[-52.56676184799988,68.46124909100008],[-52.559925910999965,68.46002838700015],[-52.54621334499993,68.45514557500009],[-52.53978430899991,68.45441315300015],[-52.5364477199999,68.45693594000006],[-52.534047003999945,68.46181875200011],[-52.53282630099994,68.46662018400004],[-52.53294837099992,68.46869538000006],[-52.448394334999875,68.46214427300008],[-52.42308508999994,68.46869538000006],[-52.47834225199995,68.49542877800015],[-52.411366339999944,68.50844961100016],[-52.38898678299992,68.50967031500006],[-52.41462154899989,68.51788971600017],[-52.44562740799992,68.51801178600014],[-52.5748591789999,68.50413646000005],[-52.60863196499989,68.507025458],[-52.64220130099991,68.51585521000014],[-52.61644446499989,68.52594635600009],[-52.19318600199995,68.57221100499999],[-52.180043097999885,68.56769440300006],[-52.17308508999989,68.56150950700008],[-52.165679490999906,68.55670807500009],[-52.1561580069999,68.5506859400001],[-52.14525305899994,68.5463320980001],[-52.13329016799989,68.5436872420001],[-52.12071692599991,68.5428734400001],[-52.10777747299991,68.54376862200009],[-52.11070716099994,68.54759349200002],[-52.11213131399989,68.55072663000009],[-52.11302649599989,68.55377838700015],[-52.11461341099991,68.55744049700003],[-51.96471106699991,68.58755117400014],[-51.88487708199988,68.59275950700005],[-51.812896287999926,68.57855866100012],[-51.84878495999993,68.56854889500015],[-51.96442623599997,68.56427643400004],[-51.96442623599997,68.55744049700003],[-51.916005011999886,68.55744049700003],[-51.916005011999886,68.5506859400001],[-51.92735755099994,68.54995351800015],[-51.93814042899996,68.54743073100003],[-51.948109503999945,68.5431582700001],[-51.95689856699991,68.53701406500015],[-51.932606574999845,68.52960846600014],[-51.86440995999993,68.51699453300007],[-51.84117591099991,68.51959870000017],[-51.820546027999875,68.52875397300006],[-51.801258917999945,68.53400299700006],[-51.75767981699991,68.53701406500015],[-51.63573157499985,68.52362702000013],[-51.56883704299992,68.523871161],[-51.53237870999996,68.54376862200009],[-51.533924933999906,68.55467357000005],[-51.51577714799989,68.56273021],[-51.4903865229999,68.56655508000001],[-51.47032630099991,68.56427643400004],[-51.47032630099991,68.55744049700003],[-51.50511633999989,68.54376862200009],[-51.50511633999989,68.53701406500015],[-51.45824133999991,68.54730866100006],[-51.40884355399996,68.5506859400001],[-51.36961829299991,68.54547760600009],[-51.351877407999915,68.54865143400015],[-51.34064693899992,68.56427643400004],[-51.402007615999935,68.56427643400004],[-51.402007615999935,68.57111237200014],[-51.37791907499991,68.579575914],[-51.34528561099995,68.58478424700009],[-51.312001105999876,68.58502838700004],[-51.285959438999896,68.57855866100012],[-51.299631313999924,68.57111237200014],[-51.14883378799993,68.56391022300012],[-51.12083899599992,68.57855866100012],[-51.1295059889999,68.5790876320001],[-51.14883378799993,68.58478424700009],[-51.09325110599988,68.60407135600002],[-51.07371985599991,68.60521067900005],[-51.07371985599991,68.60024648600002],[-51.07628333199992,68.59227122600005],[-51.08267167899993,68.58417389500012],[-51.09414628799987,68.57855866100012],[-51.05451412699995,68.579535223],[-51.03571529899992,68.58417389500012],[-51.035878058999884,68.594671942],[-51.041818813999896,68.60569896000005],[-51.041371222999885,68.61815013200008],[-51.03477942599991,68.628363348],[-51.02183997299991,68.63255442900014],[-51.00609290299985,68.64207591400013],[-51.02489173099991,68.66388580900018],[-51.07371985599991,68.701402085],[-51.04914303299989,68.701402085],[-51.02354895699991,68.69599030200004],[-50.96646074099993,68.67177969000006],[-50.94273841099991,68.653021552],[-50.93016516799992,68.63641998900015],[-50.922596808999884,68.62885163],[-50.91234290299985,68.62571849200009],[-50.880360480999855,68.61957428600014],[-50.862049933999884,68.619818427],[-50.85399329299986,68.62913646000011],[-50.85912024599988,68.63825104400003],[-50.881703253999945,68.6464704450001],[-50.887521938999896,68.653021552],[-50.877674933999884,68.66290924700012],[-50.82526607999992,68.673773505],[-50.80553137899997,68.68097565300003],[-50.90094967399989,68.66974518400004],[-50.92906653599988,68.67413971600011],[-50.925852016999926,68.67780182500015],[-50.924061652999846,68.681097723],[-50.92125403599991,68.68414948100009],[-50.91539466099994,68.687201239],[-50.923451300999886,68.69940827000006],[-50.93517005099997,68.70091380400011],[-50.94912675699993,68.69912344000012],[-50.96385657499994,68.701402085],[-50.972767706999974,68.7079125020001],[-50.991118943999936,68.73558177299999],[-50.88133704299992,68.77033112200014],[-50.784047003999945,68.77676015800016],[-50.76455644399996,68.79022858300014],[-50.76475989499991,68.80353424700014],[-50.65469316299988,68.83120351800005],[-50.74323482999989,68.84186432500009],[-50.78685462099989,68.84194570500007],[-50.82664954299989,68.83120351800005],[-50.86851966099991,68.80927155200013],[-50.94554602799988,68.78839752800015],[-51.018788214999915,68.75263092700006],[-51.032093878999945,68.74860260600018],[-51.11465410099993,68.73558177299999],[-51.24860592399994,68.74957916900014],[-51.29214433499995,68.74860260600018],[-51.28107662699991,68.7628441430001],[-51.26341712099991,68.76951732000005],[-51.243031378999916,68.77366771000008],[-51.22386633999986,68.78025950700005],[-51.212513800999886,68.78937409100014],[-51.20343990799989,68.799505927],[-51.19261633999989,68.80780670800009],[-51.17613684799991,68.81126536699999],[-51.1835017569999,68.82172272300005],[-51.2064509759999,68.83417389500006],[-51.21711178299992,68.84544505400007],[-51.180897589999915,68.85667552300008],[-51.10187740799989,68.86619700700005],[-51.06997636599988,68.88239166900001],[-51.0448298819999,68.89866771000005],[-50.98741614499988,68.92084381700012],[-50.96385657499994,68.93423086100002],[-50.993804490999906,68.93195221600014],[-51.03307044199991,68.92304108300003],[-51.0650935539999,68.90949127800005],[-51.07371985599991,68.893255927],[-51.09666907499991,68.885891018],[-51.155995245999854,68.88690827000006],[-51.1822810539999,68.8789737000001],[-51.18447831899988,68.88141510600003],[-51.185047980999855,68.88251373899999],[-51.18614661399988,68.88361237200002],[-51.18976803299995,68.88580963700004],[-51.18976803299995,68.893255927],[-51.180083787999905,68.90375397300006],[-51.16991126199986,68.91083405200014],[-51.10948645699992,68.93357982000008],[-51.09398352799991,68.942572333],[-51.08731035099987,68.95132070500007],[-51.08901933499987,68.9804548200001],[-51.0957738919999,69.00267161699999],[-51.110259568999936,69.02236562700004],[-51.13512122299991,69.044094143],[-51.12132727799988,69.0483259140001],[-51.093739386999886,69.04730866100006],[-51.079904751999976,69.05027903900007],[-51.09699459499993,69.07770416900003],[-51.10667883999989,69.08942291900011],[-51.12083899599992,69.09870026200015],[-51.07591712099989,69.10529205900004],[-51.062001105999904,69.11440664300012],[-51.079904751999976,69.13279857000008],[-50.79019120999993,69.12848541900014],[-50.74941972599996,69.1209170590001],[-50.744130011999886,69.09870026200015],[-50.771148240999935,69.08755117400013],[-50.9017634759999,69.07819245000009],[-50.92906653599988,69.05027903900007],[-50.94493567599991,69.04718659100008],[-50.976429816999904,69.04474518400004],[-50.991118943999936,69.03725820500007],[-50.92430579299989,69.02948639500006],[-50.9017634759999,69.02977122600011],[-50.9017634759999,69.03725820500007],[-50.90925045499998,69.03725820500007],[-50.90925045499998,69.044094143],[-50.70128333199989,69.08148834800012],[-50.634266730999904,69.07200755400012],[-50.643381313999896,69.0556094420001],[-50.64854895699992,69.05027903900007],[-50.630441860999895,69.04433828300013],[-50.61522376199991,69.04913971600003],[-50.60118567599997,69.0556094420001],[-50.58678137899989,69.0539411480001],[-50.54035396999993,69.03327057500009],[-50.525013800999886,69.02977122600011],[-50.53526770699992,69.0108096370001],[-50.539133266999926,69.000474351],[-50.53595943899995,68.99127838700012],[-50.525013800999886,68.97516510600006],[-50.52367102799991,68.96759674700009],[-50.52464758999989,68.95856354400009],[-50.523101365999935,68.95107656500012],[-50.514475063999924,68.94790273600016],[-50.45787512899991,68.94163646000003],[-50.430409308999884,68.93427155200011],[-50.4022517569999,68.93012116100006],[-50.39150956899988,68.92426178600012],[-50.38475501199986,68.91494375200007],[-50.383208787999905,68.91034577000015],[-50.37816321499988,68.908392645],[-50.36050370999996,68.90692780200014],[-50.334380662999905,68.90778229400006],[-50.319813605999876,68.91412995000017],[-50.320423956999946,68.92438385600009],[-50.34007727799988,68.93732330900009],[-50.34845943899995,68.94448476800015],[-50.353627081999946,68.95408763200011],[-50.35716712099995,68.96312083500013],[-50.36050370999996,68.96832916900001],[-50.37486731699994,68.97337474200008],[-50.38805091099988,68.97284577000008],[-50.41515051999991,68.96832916900001],[-50.44367428299992,68.96796295800011],[-50.45726477799988,68.96987539300007],[-50.47036699099993,68.97516510600006],[-50.475453253999945,68.98151276200018],[-50.48302161399991,68.99941640800013],[-50.487456834999875,69.00311920800007],[-50.49303137899989,69.00617096600017],[-50.48888098899994,69.01300690300009],[-50.47663326699998,69.02362702000012],[-50.46007239499991,69.02960846600014],[-50.43919837099986,69.03213125200007],[-50.41820227799991,69.03107330900009],[-50.40147864499988,69.02667877800003],[-50.3685603509999,69.00141022300005],[-50.350900844999984,68.99599844000012],[-50.333159959999904,69.00934479400003],[-50.353871222999906,69.03343333500005],[-50.33551998599995,69.05442942900001],[-50.29893958199992,69.06500885600015],[-50.264963344999956,69.05776601800012],[-50.254994269999884,69.03949616100006],[-50.26309160099989,69.01902903900002],[-50.28062903599994,69.00071849200012],[-50.29906165299988,68.98883698100018],[-50.24852454299989,68.96356842700011],[-50.22166907499991,68.95990631700009],[-50.20287024599995,68.97516510600006],[-50.21019446499986,68.97809479400017],[-50.22301184799988,68.98582591399999],[-50.23021399599992,68.98883698100018],[-50.215199347999885,69.00507233300011],[-50.21288001199991,69.01333242400001],[-50.21715247299994,69.02362702000012],[-50.19302324099993,69.01870351800007],[-50.183216925999886,69.01943594],[-50.17491614499991,69.02362702000012],[-50.17491614499991,69.02977122600011],[-50.21019446499986,69.06386953300002],[-50.22337805899991,69.07200755400012],[-50.25918535099989,69.079535223],[-50.424672003999916,69.060980536],[-50.509144660999965,69.07070547100012],[-50.676177537999905,69.111558335],[-50.689523891999926,69.126654364],[-50.65453040299991,69.13983795800014],[-50.49120032499991,69.126654364],[-50.38438880099994,69.13279857000008],[-50.315297003999916,69.12177155200011],[-50.29938717399992,69.12295156500015],[-50.27208411399993,69.13735586100002],[-50.25816809799994,69.14240143400004],[-50.23766028599991,69.14712148600013],[-50.17894446499989,69.15387604400009],[-50.16193600199992,69.16014232000005],[-50.13975989499994,69.17975495000007],[-50.13011633999988,69.20246002800006],[-50.13727779899992,69.22117747600011],[-50.16502844999991,69.22907135600009],[-50.1822810539999,69.22577545800006],[-50.19615637899989,69.21796295800006],[-50.20897376199994,69.208685614],[-50.22337805899991,69.20111725500004],[-50.24278723899991,69.19647858300011],[-50.30650794199997,69.19489166900007],[-50.29906165299988,69.19489166900007],[-50.32140051999991,69.1948102890001],[-50.365793423999946,69.20062897300006],[-50.38841712099992,69.20111725500004],[-50.430978969999956,69.1944847680001],[-50.451730923999946,69.19627513200008],[-50.47036699099993,69.20856354400003],[-50.45051021999993,69.22500234600012],[-50.443023240999956,69.22907135600009],[-50.45099850199992,69.23139069200015],[-50.45571855399993,69.23493073100003],[-50.46296139199995,69.24266185100005],[-50.45409094999991,69.24795156500004],[-50.45323645699992,69.251857815],[-50.459095831999946,69.25462474199999],[-50.47036699099993,69.256333726],[-50.458851691999904,69.270941473],[-50.462757941999904,69.28245677300013],[-50.470529751999884,69.2929548200001],[-50.47036699099993,69.304144598],[-50.45091712099995,69.31574127800003],[-50.39028886599988,69.32562897300012],[-50.36668860599994,69.33893463700015],[-50.42992102799991,69.34715403900007],[-50.4881892569999,69.32855866100006],[-50.60008704299992,69.27680084800012],[-50.561879035999965,69.26691315300003],[-50.54320227799988,69.25804271],[-50.54238847599987,69.24607982000005],[-50.55370032499985,69.23647695500006],[-50.56688391799992,69.22992584800008],[-50.593902147999955,69.22138092700006],[-50.59276282499991,69.21971263200005],[-50.59333248599998,69.21539948100015],[-50.608225063999924,69.21674225500014],[-50.644927537999926,69.21572500200007],[-50.662180141999954,69.22215403899999],[-50.641713019999884,69.22907135600009],[-50.641713019999884,69.23525625200016],[-50.685170050999915,69.23236725500011],[-50.767201300999936,69.20233795800009],[-50.832264777999875,69.19212474200005],[-50.8685603509999,69.17894114799999],[-50.887521938999896,69.174465236],[-50.914947068999936,69.17365143400012],[-51.00324459499993,69.18048737200003],[-51.009999152999846,69.18036530200006],[-51.01732337099986,69.18447500200001],[-51.023508266999926,69.19017161699998],[-51.03278561099998,69.19489166900007],[-51.09414628799987,69.20111725500004],[-51.11473548099991,69.206488348],[-51.11510169199993,69.21222565300009],[-51.079904751999976,69.22907135600009],[-51.08556067599997,69.23187897300012],[-51.095366990999906,69.23956940300015],[-51.100412563999924,69.24266185100005],[-51.08731035099987,69.24746328300013],[-51.074330206999974,69.24697500200013],[-51.04576575399997,69.24266185100005],[-51.034413214999915,69.24697500200013],[-51.02183997299991,69.2657738300001],[-51.011626756999874,69.2700056010001],[-50.93830318899995,69.27240631700006],[-50.86766516799989,69.28367747600005],[-50.89268958199992,69.29865143400018],[-50.951893683999906,69.30011627800006],[-50.97374426999994,69.30756256700012],[-50.98753821499985,69.32982005400008],[-50.970366990999935,69.33783600500011],[-50.90925045499998,69.33893463700015],[-50.91299394399991,69.34882233300009],[-50.91539466099994,69.35252513200011],[-50.89366614499988,69.35407135600015],[-50.852772589999944,69.33991120000003],[-50.83348548099991,69.34511953300012],[-50.892201300999915,69.38593170799999],[-50.894886847999885,69.40033600500006],[-50.8827205069999,69.41111888200005],[-50.85635331899991,69.416937567],[-50.84715735599994,69.42829010600018],[-50.84512285099989,69.44147370000003],[-50.85081946499989,69.44647858300009],[-50.85973059799994,69.45087311400006],[-50.86766516799989,69.46181875200004],[-50.75841223899988,69.47606028900013],[-50.710804816999904,69.48993561400012],[-50.685170050999915,69.49225495000017],[-50.66161048099988,69.48602936400012],[-50.623605923999975,69.47003815300003],[-50.575062628999916,69.45644765800007],[-50.52538001199991,69.44814687700008],[-50.48403886599988,69.44814687700008],[-50.48403886599988,69.45433177300005],[-50.497303839999915,69.4597028670001],[-50.50401770699994,69.46727122600005],[-50.509144660999965,69.47724030200006],[-50.517567511999914,69.48969147300006],[-50.46983801999997,69.5029971370001],[-50.41966712099989,69.50893789300002],[-50.28892981699994,69.50063711100013],[-50.26056881399989,69.50421784100011],[-50.20287024599995,69.52326080900009],[-50.23058020699992,69.53180573100003],[-50.34007727799988,69.52326080900009],[-50.35024980399993,69.52606842700006],[-50.36318925699993,69.5327009140001],[-50.38475501199986,69.54779694200012],[-50.395985480999855,69.54905833500014],[-50.449940558999884,69.54433828300004],[-50.47850501199986,69.53587474199999],[-50.53555253799996,69.51129791900017],[-50.56655839799987,69.50275299700014],[-50.59264075399994,69.49628327000015],[-50.641468878999945,69.4951846370001],[-50.690541144999884,69.49957916900009],[-50.72362219999994,69.50958893400015],[-50.7091365229999,69.51552969],[-50.69391842399992,69.51752350500011],[-50.662180141999954,69.51703522300014],[-50.71580969999994,69.52667877800012],[-50.765207485999895,69.51166413],[-50.81102454299992,69.49070872600012],[-50.85399329299986,69.48224518400008],[-50.87450110599991,69.49140045800009],[-50.88060462099988,69.50787995000015],[-50.87340247299997,69.52362702000012],[-50.85399329299986,69.5307070980001],[-50.83495032499988,69.53457265800007],[-50.81159420499998,69.54450104400009],[-50.795765753999945,69.55768463700004],[-50.79938717399988,69.5716820330001],[-50.79881751199991,69.58710358300011],[-50.812408006999874,69.60032786700008],[-50.83145097599987,69.61286041900017],[-50.84715735599994,69.62628815300015],[-50.77525794199988,69.650295315],[-50.69326738199996,69.645209052],[-50.42418372299991,69.59918854400003],[-50.40831458199989,69.60578034100011],[-50.42324785099992,69.61871979400011],[-50.44912675699995,69.63296133000001],[-50.46149654899988,69.64573802300005],[-50.435658331999974,69.654201565],[-50.50865637899997,69.64468008000001],[-50.53184973899991,69.64671458500013],[-50.594553188999896,69.67039622600005],[-50.62120520699991,69.67405833500003],[-50.73631751199988,69.66571686400012],[-50.794422980999855,69.67206452000006],[-50.82664954299989,69.70197174700014],[-50.79613196499986,69.719875393],[-50.706898566999904,69.73012929900013],[-50.66901607999994,69.73956940300006],[-50.62120520699991,69.76341380400011],[-50.60610917899993,69.78327057500003],[-50.59434973899994,69.79067617400001],[-50.57494055899994,69.78900788],[-50.52721106699988,69.779486395],[-50.42747962099986,69.77480703300009],[-50.353911912999905,69.760931708],[-50.271799282999886,69.76341380400011],[-50.229969855999876,69.75849030200006],[-50.20995032499991,69.75861237200003],[-50.18919837099992,69.76341380400011],[-50.24762936099998,69.77602773600002],[-50.264963344999956,69.783880927],[-50.27586829299986,69.79140859600015],[-50.29564368399988,69.81492747600011],[-50.307362433999856,69.82257721600001],[-50.3185115229999,69.82672760600018],[-50.32335364499996,69.83173248900012],[-50.3158259759999,69.84198639500015],[-50.30724036399988,69.84910716400002],[-50.30162512899988,69.85504791900003],[-50.30077063699988,69.86220937700007],[-50.30650794199997,69.873277085],[-50.332875128999945,69.88996002800003],[-50.37336178299989,69.89801666900017],[-50.48550370999993,69.90241120000015],[-50.56126868399991,69.91616445500007],[-50.59333248599998,69.92792389500006],[-50.56655839799987,69.94839101800004],[-50.586496548999946,69.95526764500012],[-50.56094316299988,69.97492096600008],[-50.34398352799988,69.97858307500003],[-50.29906165299988,69.98680247600012],[-50.209706183999856,70.016750393],[-50.23729407499987,70.03839752800009],[-50.27529863199987,70.04584381700006],[-50.421986456999946,70.03717682500017],[-50.43293209499989,70.04169342700011],[-50.44945227799988,70.054429429],[-50.456695115999906,70.05760325700005],[-50.47105872299988,70.05792877800013],[-50.47765051999994,70.05459219000012],[-50.48241126199985,70.04938385600006],[-50.490874803999894,70.0440127620001],[-50.50145423099985,70.040472723],[-50.718820766999926,69.99652741100007],[-50.804798956999946,69.99115631700012],[-50.939116990999956,69.96356842700001],[-51.259673631999874,69.96303945500013],[-51.285959438999896,69.96954987200003],[-51.25206458199994,69.96991608300014],[-51.22704016799992,69.979193427],[-51.1822810539999,70.00307851800005],[-51.16494706899991,70.00511302299999],[-51.1485082669999,70.00385163],[-51.13267981699997,70.00482819200006],[-51.11778723899991,70.01361725500011],[-51.09406490799989,70.03424713700007],[-51.08702551999994,70.03717682500017],[-51.0509333979999,70.03534577],[-51.03473873599992,70.03143952],[-51.01842200399991,70.024115302],[-51.009388800999886,70.016750393],[-51.00064042899993,70.00747304900013],[-50.99152584499992,69.99957916900017],[-50.98094641799989,69.99624258000013],[-50.86082923099988,70.024115302],[-50.898426886999886,70.038804429],[-50.98184160099987,70.03241608300009],[-51.01842200399991,70.0440127620001],[-51.01040605399996,70.04511139500012],[-50.991118943999936,70.05145905200006],[-50.991118943999936,70.05760325700005],[-51.03083248599992,70.06582265800013],[-51.22105872299991,70.07396067900005],[-51.244984503999966,70.07135651200015],[-51.259388800999936,70.066839911],[-51.267974412999955,70.06098053600006],[-51.285959438999896,70.0440127620001],[-51.38048255099991,69.98847077000015],[-51.438710089999944,69.96645742400011],[-51.47032630099991,69.97573476800008],[-51.55532792899996,69.97333405200006],[-51.57335364499988,69.98314036699999],[-51.56895911399991,69.98981354400003],[-51.541900193999965,70.0116234400001],[-51.53237870999996,70.024115302],[-51.5409236319999,70.02777741100014],[-51.54979407499994,70.03034088700015],[-51.56427975199997,70.02871328300013],[-51.60806230399996,70.016750393],[-51.62535559799994,70.0150414080001],[-51.8351130849999,70.02171458500005],[-51.92491614499991,70.01105377800012],[-51.96898352799991,70.01105377800012],[-52.009755011999886,70.01984284100008],[-52.06126868399988,70.05121491100012],[-52.08055579299992,70.05121491100012],[-52.10065670499995,70.04682038000014],[-52.19245357999992,70.04144928600009],[-52.277455206999946,70.05621979400014],[-52.299549933999906,70.05760325700005],[-52.30492102799988,70.05670807500013],[-52.31273352799988,70.05243561400015],[-52.32066809799994,70.05145905200006],[-52.3294978509999,70.05361562700007],[-52.34398352799994,70.06293366100003],[-52.3798722,70.0733910180001],[-52.46401933499995,70.13397858300004],[-52.50059973899991,70.152085679],[-52.52061926999997,70.15867747600005],[-52.53978430899991,70.16132233300014],[-52.55264238199996,70.16567617400013],[-52.56167558499996,70.17584870000017],[-52.56895911399988,70.18829987200007],[-52.577015753999916,70.19887929900015],[-52.60997473899988,70.21710846600003],[-52.92090816999993,70.28510163],[-53.23184160099987,70.35309479400014],[-53.535918749499956,70.36688873900005],[-53.83999589799992,70.38068268400018],[-54.01870683499987,70.41323476800012],[-54.07799231699994,70.44891998900009],[-54.11436926999993,70.46255117400011],[-54.18464107999994,70.47662995000017],[-54.18675696499989,70.48871491100009],[-54.199615037999905,70.50348541900014],[-54.21857662699992,70.51837799700012],[-54.32526607999992,70.57318756700012],[-54.45929928299989,70.619086005],[-54.53709876199991,70.65648021000005],[-54.554514126999976,70.66095612200012],[-54.57396399599986,70.6613630230001],[-54.61107337099989,70.65468984600005],[-54.63023841099994,70.65412018400008],[-54.63023841099994,70.66095612200012],[-54.60265051999994,70.67357005399998],[-54.58812415299988,70.68256256700003],[-54.58185787699995,70.69204336100002],[-54.58088131399995,70.70526764500006],[-54.57750403599993,70.71417877800009],[-54.571156378999916,70.72052643400004],[-54.56102454299986,70.72650788000013],[-54.523101365999935,70.74017975500009],[-54.44225012899994,70.75478750200001],[-54.3258357409999,70.79759349199999],[-54.24217688699986,70.81761302300005],[-54.15538489499994,70.82880280200008],[-53.979644334999904,70.82965729400017],[-53.93272864499996,70.81899648600013],[-53.889393683999884,70.81513092700014],[-53.82213294199997,70.79376862200017],[-53.77204342399994,70.79181549700003],[-53.670318162999905,70.79877350500011],[-53.647287563999924,70.79523346600006],[-53.58189856699994,70.77081940300009],[-53.43399003799988,70.75267161699999],[-53.19163977799988,70.77216217700007],[-52.79063880099997,70.75678131700012],[-52.45034745999993,70.7025820980001],[-52.26992753799987,70.63544342700011],[-52.12144934799994,70.60175202000002],[-52.09410559799997,70.58527252800003],[-52.0520727199999,70.56915924700013],[-51.96507727799994,70.54954661700002],[-51.84300696499989,70.5072695980001],[-51.67528235599988,70.474310614],[-51.54942786399991,70.431586005],[-51.4094945949999,70.435003973],[-51.19286048099993,70.40257396000011],[-51.06627356699994,70.36676666900007],[-50.82949785099993,70.356390692],[-50.65941321499989,70.32575104400009],[-50.61156165299988,70.32440827],[-50.56663977799985,70.33368561400006],[-50.53184973899991,70.35932038000011],[-50.541818813999896,70.37274811400003],[-50.55337480399993,70.38178131700012],[-50.567860480999876,70.38812897300015],[-50.586496548999946,70.39411041900017],[-50.61119544199994,70.39541250200007],[-50.63768469999991,70.39126211100005],[-50.66266842399994,70.39020416900017],[-50.68268795499989,70.40086497600011],[-50.6593318349999,70.41486237200014],[-50.595204230999855,70.44358958500011],[-50.59333248599998,70.46295807500003],[-50.57494055899994,70.47451406500006],[-50.516916469999956,70.49799225500011],[-50.50450598899994,70.50018952000012],[-50.50169837099989,70.50617096600003],[-50.49644934799991,70.50901927299998],[-50.49372311099992,70.51333242400007],[-50.49828040299988,70.52383047100015],[-50.50511633999989,70.52814362200014],[-50.53001868399994,70.536566473],[-50.53864498599992,70.53807200700005],[-50.55972245999996,70.532660223],[-50.603505011999914,70.50873444200015],[-50.64224199099996,70.49701569200006],[-50.65343176999997,70.469224351],[-50.66901607999994,70.46295807500003],[-50.69245357999995,70.45937734600007],[-50.744130011999886,70.428208726],[-50.77208411399991,70.42084381700009],[-50.99278723899994,70.42495351800012],[-51.058583136999914,70.43903229400017],[-51.09414628799987,70.46979401200015],[-50.94273841099991,70.46979401200015],[-50.9635310539999,70.48480866100009],[-51.004261847999885,70.497219143],[-51.079904751999976,70.510728257],[-51.190256313999924,70.50250885600018],[-51.2232966789999,70.510728257],[-51.24058997299988,70.53436920800003],[-51.32591712099995,70.55540599200005],[-51.34740149599989,70.57160065300009],[-51.31944739499994,70.58295319200006],[-51.23070227799988,70.60635000200016],[-51.207915818999936,70.62230052300005],[-51.194976365999935,70.62848541900003],[-51.1822810539999,70.62620677300005],[-51.17650305899991,70.61896393400004],[-51.17540442599997,70.60976797100007],[-51.177805141999926,70.60040924700003],[-51.1822810539999,70.592718817],[-51.16124426999994,70.57941315300009],[-51.13019771999993,70.57099030200013],[-51.03648841099993,70.56000397300006],[-50.97492428299998,70.536566473],[-50.94310462099995,70.53123607000013],[-50.91576087099986,70.53143952000009],[-50.905751105999876,70.52667877800009],[-50.9017634759999,70.514146226],[-50.89683997299994,70.51023997599998],[-50.885853644999884,70.51080963700015],[-50.87425696499988,70.51398346600003],[-50.86766516799989,70.51764557500017],[-50.864491339999915,70.53530508000009],[-50.878407355999904,70.54718659100014],[-50.89745032499991,70.55780670799999],[-50.90925045499998,70.57160065300009],[-50.889759894999884,70.57192617400001],[-50.786610480999855,70.54808177300013],[-50.73729407499987,70.54486725500009],[-50.76475989499991,70.56207916900009],[-50.79869544199993,70.57282135600012],[-50.86766516799989,70.58527252800003],[-50.85757402299993,70.593207098],[-50.839670376999976,70.60415273600016],[-50.83348548099991,70.61318594000006],[-50.85399329299986,70.61298248900012],[-50.89293372299994,70.60228099199999],[-50.91234290299985,70.59951406500012],[-50.93260657499988,70.6010195980001],[-50.991118943999936,70.61318594000006],[-50.96971594999988,70.63898346600008],[-50.92674719999991,70.65558502800015],[-50.87873287699992,70.66254303600014],[-50.75641842399994,70.6497256530001],[-50.7193904289999,70.62905508000009],[-50.696929490999906,70.62372467700011],[-50.636219855999855,70.62026601800012],[-50.62498938699986,70.62238190300003],[-50.62352454299989,70.62840403900005],[-50.634266730999904,70.64052969000012],[-50.65269934799994,70.65033600500009],[-50.91539466099994,70.68891022300014],[-51.100412563999924,70.66095612200012],[-51.100412563999924,70.66779205900004],[-51.08006751199994,70.67780182500012],[-51.07848059799991,70.68939850500011],[-51.08458411399991,70.70400625200016],[-51.08731035099987,70.72304922100012],[-51.06456458199992,70.74852122600005],[-51.0599259109999,70.76097239800008],[-51.079904751999976,70.76398346600017],[-51.09935462099989,70.75702545800007],[-51.12067623599995,70.74323151200015],[-51.169422980999855,70.70270416900014],[-51.17625891799989,70.69879791900014],[-51.18976803299995,70.69513580900009],[-51.208119269999905,70.692531643],[-51.399159308999884,70.69733307500009],[-51.43000240799995,70.709377346],[-51.44513912699995,70.73191966399999],[-51.438221808999856,70.74697500200001],[-51.41690019399987,70.75527578300007],[-51.3887426419999,70.7577985700001],[-51.33934485599994,70.75535716400007],[-51.31395423099991,70.75690338700008],[-51.29214433499995,70.76398346600017],[-51.281320766999954,70.77265045800006],[-51.27794348899994,70.78050364800005],[-51.27660071499986,70.78876373900012],[-51.27171790299988,70.79877350500011],[-51.26085364499991,70.81020742400007],[-51.25072180899985,70.81386953300003],[-51.170765753999945,70.80609772300012],[-51.09898841099996,70.787990627],[-51.04002844999991,70.78815338700018],[-51.011626756999874,70.78449127800002],[-50.81859290299985,70.72093333500014],[-50.68797766799989,70.70693594000006],[-50.66161048099988,70.71246979400009],[-50.65160071499988,70.71857330900018],[-50.63829505099997,70.72915273600013],[-50.63158118399994,70.73908112200003],[-50.641428188999946,70.7435570330001],[-50.71471106699988,70.74433014500012],[-50.740223761999886,70.756048895],[-50.73729407499987,70.78449127800002],[-50.89411373599998,70.80805084800006],[-50.9147029289999,70.81610748899999],[-50.91539466099994,70.82542552300005],[-50.920033331999974,70.83869049700007],[-50.8978165359999,70.85203685099998],[-50.84715735599994,70.87323639500009],[-50.88634192599997,70.88108958500008],[-50.94025631399989,70.87588125200007],[-50.993804490999906,70.86334870000017],[-51.032093878999945,70.84931061400012],[-51.072987433999884,70.84048086100007],[-51.12364661399994,70.84389883000007],[-51.17316646999989,70.85602448100015],[-51.2102758449999,70.87323639500009],[-51.18976803299995,70.88068268400013],[-51.18976803299995,70.8869082700001],[-51.45669511599988,70.90814850500003],[-51.53628495999995,70.93036530200006],[-51.58922278599991,70.92991771000008],[-51.61432857999989,70.93528880400011],[-51.662831183999884,70.96190013200008],[-51.91486568899995,71.021429755],[-51.95689856699991,71.02411530200008],[-51.94619706899991,71.03143952000006],[-51.90916907499987,71.045152085],[-51.89183508999989,71.05658600500006],[-51.88255774599992,71.06126536699999],[-51.867543097999906,71.06565989800005],[-51.83193925699993,71.0694033870001],[-51.51990719299994,71.01581452000018],[-51.207875128999945,70.96222565300009],[-50.997710740999906,70.96515534100003],[-50.95531165299991,70.974310614],[-50.93614661399994,70.98688385600008],[-50.93097896999993,71.01260000200013],[-50.91539466099994,71.02411530200008],[-51.20213782499988,71.01764557500015],[-51.25121008999994,71.02411530200008],[-51.31285559799997,71.04279205900006],[-51.41917883999985,71.0507673200001],[-51.47655188699988,71.06378815300009],[-51.48477128799988,71.07037995000015],[-51.47061113199996,71.08246491100006],[-51.43106035099989,71.09170156500012],[-51.29214433499995,71.07868073100003],[-51.317534959999875,71.08612702000012],[-51.35045325399997,71.08759186400009],[-51.380034959999925,71.09324778899999],[-51.395863410999965,71.11347077],[-51.2232966789999,71.14077383000007],[-51.2232966789999,71.14760976800008],[-51.34333248599992,71.14655182500003],[-51.50877844999994,71.11530182500015],[-51.67393958199992,71.11090729400007],[-51.71117102799988,71.11969635600013],[-51.73277747299988,71.13255442900008],[-51.74596106699994,71.13837311400012],[-51.763295050999915,71.14077383000007],[-51.842518683999884,71.13739655200006],[-51.84829667899996,71.13397858300014],[-51.866851365999956,71.12872955900013],[-51.96422278599994,71.11652252800009],[-52.00487219999991,71.10293203300013],[-52.025502081999946,71.09979889500006],[-52.17829342399989,71.10346100500003],[-52.22476152299993,71.11652252800009],[-52.24274654899997,71.12677643400012],[-52.2447810539999,71.13471100500009],[-52.23322506399995,71.14130280200006],[-52.210194464999915,71.14760976800008],[-52.13780676999994,71.15477122600014],[-52.11461341099991,71.160589911],[-52.09927324099988,71.16885000200006],[-52.05996660099987,71.19912344000006],[-52.027333136999914,71.21417877800009],[-51.903187628999945,71.24774811400012],[-51.81017005099997,71.25747304900007],[-51.621164516999926,71.25063711100013],[-51.57237708199992,71.25592682500003],[-51.54710852799985,71.26312897300006],[-51.52867591099991,71.27423737200009],[-51.52464758999986,71.28327057500009],[-51.52403723899991,71.29621002800009],[-51.52757727799988,71.30776601800011],[-51.53575598899988,71.31268952000009],[-51.668039516999954,71.33665599200005],[-51.69005286399988,71.3468285180001],[-51.665272589999915,71.35407135600012],[-51.65343176999994,71.35944245000015],[-51.64224199099993,71.36733633000013],[-51.74901282499994,71.36041901200002],[-52.04942786399991,71.24725983300011],[-52.13532467399992,71.23151276200015],[-52.2330216139999,71.19501373900012],[-52.34235592399992,71.17609284100008],[-52.42430579299986,71.15167877800015],[-52.48375403599991,71.14769114800008],[-52.51695716099991,71.14826080900004],[-52.534331834999904,71.15306224200013],[-52.55036373599997,71.16437409100011],[-52.55772864499997,71.17861562700001],[-52.553578253999945,71.190415757],[-52.53636633999991,71.20624420800011],[-52.49840247299991,71.22671133000007],[-52.35480709499993,71.237005927],[-52.29010982999992,71.25527578300007],[-52.25890051999994,71.27265045800006],[-52.24559485599991,71.295355536],[-52.258208787999905,71.31810130400014],[-52.28034420499995,71.33454010600003],[-52.28815670499995,71.34894440300009],[-52.25767981699991,71.36554596600014],[-52.11449133999986,71.39801666900006],[-52.04478919199988,71.40326569200012],[-52.02847245999995,71.40737539300007],[-51.99852454299989,71.42133209800015],[-51.98082434799988,71.42666250200001],[-51.94713294199988,71.42780182500015],[-51.88426673099994,71.44037506700012],[-51.61221269399988,71.45624420800006],[-51.42137610599985,71.43927643400009],[-51.381581183999856,71.44863515800004],[-51.395863410999965,71.46222565300017],[-51.37010657499991,71.471625067],[-51.34740149599989,71.48403554900013],[-51.36095130099994,71.49371979400009],[-51.380360480999855,71.49725983300009],[-51.68228105399987,71.50958893400012],[-52.1073298819999,71.44818756700012],[-52.24022376199985,71.40570709800006],[-52.3333227199999,71.39606354400009],[-52.42625891799989,71.372259833],[-52.709258592499964,71.39679596549998],[-52.99225826699992,71.42133209800015],[-52.99225826699992,71.42877838700012],[-52.9754939439999,71.43195221600008],[-52.96711178299992,71.4350039730001],[-52.94774329299991,71.44623444200009],[-52.90510006399998,71.45880768400015],[-52.82787024599986,71.46893952000012],[-52.80671139199995,71.47654857000008],[-52.73778235599991,71.51268138200003],[-52.70091712099995,71.52594635600003],[-52.258615688999896,71.57953522300012],[-52.13878333199992,71.57217031500011],[-51.781605597999885,71.60272858300006],[-51.76109778599994,71.60980866100012],[-51.74185136599988,71.61969635600003],[-51.72760983,71.631048895],[-51.70075436099989,71.657904364],[-51.67601477799991,71.67255280200003],[-51.65428626199985,71.695990302],[-51.64622962099992,71.7175153670001],[-51.669545050999915,71.72296784100006],[-51.66270911399991,71.72980377800015],[-51.75788326699998,71.7304548200001],[-51.78563391799986,71.72296784100006],[-51.79820716099993,71.72052643400009],[-51.81017005099997,71.71124909100014],[-51.83031165299991,71.68537018400004],[-51.863433397999955,71.66412995000015],[-51.90143795499995,71.65265534100011],[-52.16641191299993,71.61310455900015],[-52.57331295499995,71.6379255230001],[-52.57070878799988,71.6518415390001],[-52.56590735599988,71.66510651200004],[-52.56330318899998,71.67755768400006],[-52.56704667899992,71.68878815300015],[-52.58145097599989,71.69660065300003],[-52.60033118399991,71.69550202],[-52.636830206999974,71.68378327],[-52.6629939439999,71.67975495000003],[-52.96448727099994,71.6948306335001],[-53.26598059799996,71.70990631700006],[-53.25914466099994,71.70990631700006],[-53.262562628999945,71.710638739],[-53.26520748599995,71.71084219000015],[-53.266468878999945,71.71230703300002],[-53.26598059799996,71.71674225500009],[-53.213978644999905,71.73273346600008],[-53.10985266799989,71.78156159100008],[-53.00182044199991,71.79694245000003],[-52.946888800999915,71.81191640800016],[-52.895659959999875,71.83563873900006],[-52.85448157499991,71.86762116100006],[-52.89134680899988,71.87588125200016],[-52.908762173999946,71.88226959800006],[-52.916493292999945,71.894232489],[-52.90782630099994,71.91351959800011],[-52.88524329299988,71.92133209800012],[-52.83397376199994,71.92902252800015],[-52.8177791009999,71.93919505399998],[-52.79662024599988,71.96405670800014],[-52.780018683999934,71.97626373900012],[-52.7330216139999,71.99262116100012],[-52.68317623599995,72.00409577000009],[-52.68317623599995,72.010931708],[-52.74559485599991,72.02057526200015],[-52.77599036399996,72.01764557500006],[-52.82673092399992,71.98590729400009],[-53.01732337099992,71.93036530200014],[-53.033192511999935,71.91885000200001],[-53.02782141799989,71.90289948100009],[-53.014800584999904,71.8817406270001],[-52.998890753999966,71.86269765800002],[-52.984771287999926,71.85325755399998],[-52.984771287999926,71.847113348],[-53.225453253999945,71.81150950700005],[-53.26598059799996,71.798732815],[-53.298695441999904,71.78436920800011],[-53.316395636999914,71.77899811400006],[-53.32738196499985,71.77822500200016],[-53.3392227859999,71.77423737200017],[-53.35187740799989,71.77431875200016],[-53.36432857999992,71.77777741100005],[-53.375843878999945,71.78436920800011],[-53.336008266999954,71.81647370000009],[-53.32506262899988,71.83209870000007],[-53.32119706899988,71.85700104400003],[-53.330799933999884,71.87506745000003],[-53.373117641999954,71.90412018400012],[-53.38683020699989,71.93593984600015],[-53.40518144399993,71.956000067],[-53.4093318349999,71.96662018400013],[-53.41051184799991,71.97264232000005],[-53.41563880099994,71.98200104400009],[-53.416818813999946,71.98704661700013],[-53.414662238999966,71.99347565300003],[-53.41002356699994,71.99884674700009],[-53.403187628999916,72.00409577000009],[-53.39826412699995,72.01496002800015],[-53.39264889199995,72.0229352890001],[-53.39126542899987,72.03095123900006],[-53.3997289699999,72.04197825700011],[-53.409901495999854,72.04950592700008],[-53.48033606699997,72.07819245000003],[-53.69831295499991,72.12592194200009],[-53.72524980399987,72.14874909100011],[-53.726633266999954,72.15766022300012],[-53.725331183999856,72.16901276200012],[-53.726633266999954,72.17877838700015],[-53.73582923099994,72.1828473980001],[-53.740223761999914,72.18744538000006],[-53.76740475199992,72.2572695980001],[-53.777699347999935,72.27265045800011],[-53.793568488999966,72.28530508000001],[-53.795806443999936,72.29645416900003],[-53.81354732999995,72.30198802300005],[-53.83503170499998,72.30589427300013],[-53.848784959999904,72.31264883000007],[-53.85163326699992,72.33063385600012],[-53.835926886999886,72.33881256700012],[-53.764475063999896,72.34894440300017],[-53.58112545499992,72.34951406500012],[-53.55394446499991,72.35419342700006],[-53.55394446499991,72.36041901200012],[-53.87022864499993,72.356634833],[-53.92096920499989,72.34906647300015],[-53.958648240999956,72.32632070500001],[-53.923166469999984,72.30267975500009],[-53.874989386999914,72.279201565],[-53.84117591099994,72.25189850500011],[-53.848784959999904,72.217027085],[-53.84032141799986,72.20355866100012],[-53.838693813999924,72.19025299700007],[-53.838693813999924,72.17666250200013],[-53.83511308499996,72.16242096600006],[-53.81309973899993,72.13865794500005],[-53.779652472999885,72.12189362200003],[-53.60122636599987,72.05792877800003],[-53.56769771999993,72.03888580900004],[-53.54873613199993,72.02195872600005],[-53.50210527299992,71.96662018400013],[-53.48814856699994,71.94525788],[-53.48273678299989,71.92544179900007],[-53.47419186099997,71.90656159100014],[-53.45091712099986,71.88808828300004],[-53.41051184799991,71.86640045800014],[-53.3997289699999,71.85700104400003],[-53.39891516799992,71.845892645],[-53.41112219999988,71.83592357000002],[-53.4278865229999,71.82876211100016],[-53.44066321499994,71.82599518400008],[-53.45201575399991,71.82147858300014],[-53.49254309799994,71.79181549700012],[-53.63980058499996,71.747788804],[-53.67894446499989,71.74249909100003],[-53.828236456999946,71.75543854400003],[-53.885487433999906,71.75433991100009],[-53.91771399599995,71.73725006700012],[-53.87368730399993,71.73847077000015],[-53.81993567599997,71.73322174700014],[-53.768869594999984,71.719671942],[-53.73273678299995,71.69627513200011],[-53.72288977799994,71.67064036700005],[-53.737049933999856,71.65216705900004],[-53.76585852799988,71.64032623900006],[-53.800404425999886,71.63483307500003],[-53.9105525379999,71.641058661],[-53.93073482999992,71.64638906500006],[-53.96666419199991,71.66986725500011],[-53.98224850199992,71.6751976580001],[-53.98664303299989,71.68060944200015],[-53.992990688999924,71.6925316430001],[-54.00255286399991,71.704535223],[-54.01671301999994,71.70990631700006],[-54.05988521999993,71.71653880400011],[-54.08161373599992,71.71735260600002],[-54.10204016799989,71.70990631700006],[-54.06419837099995,71.69790273600012],[-54.051625128999945,71.68773021],[-54.046783006999874,71.6717796900001],[-54.054351365999906,71.65912506700003],[-54.09019934799991,71.64423248900006],[-54.10204016799989,71.63483307500003],[-54.080922003999966,71.63491445500001],[-54.065256313999896,71.629339911],[-54.03311113199993,71.61310455900015],[-53.958648240999956,71.600043036],[-53.89574133999991,71.5814883480001],[-53.865305141999954,71.565863348],[-53.848784959999904,71.54547760600012],[-53.84976152299987,71.52537669500008],[-53.85887610599985,71.50348541900003],[-53.87140865799995,71.48354726800015],[-53.88292395699989,71.46971263200005],[-53.91258704299992,71.45050690300009],[-53.951771613999966,71.43781159100003],[-54.07738196499988,71.42405833500011],[-54.205067511999935,71.39398834800006],[-54.27318274599989,71.39077383000001],[-54.31550045499998,71.37759023600006],[-54.35973059799994,71.37596263200005],[-54.435536261999914,71.36517975500014],[-54.55016028599988,71.36994049700003],[-54.62515214799993,71.35130442900005],[-54.650257941999904,71.35268789300012],[-54.69855709499993,71.36050039300012],[-54.72118079299989,71.35993073100015],[-54.76504472599996,71.35350169500005],[-54.78726152299989,71.353664455],[-54.78107662699995,71.353664455],[-54.81602942599994,71.355902411],[-54.92589270699992,71.38564687700001],[-54.94391842399994,71.39411041900014],[-54.95201575399997,71.40428294499999],[-54.93809973899991,71.41510651200018],[-54.980824347999906,71.436224677],[-55.092518683999856,71.43427155200006],[-55.14362545499992,71.44236888200008],[-55.205881313999924,71.481594143],[-55.244252081999946,71.49632395999998],[-55.26768958199992,71.48403554900013],[-55.25747636599988,71.47809479400011],[-55.23289954299989,71.45604075700011],[-55.219146287999955,71.447495835],[-55.177967902999875,71.43219635600003],[-55.13174394399988,71.40403880400005],[-55.11750240799998,71.38764069200015],[-55.13670813699994,71.38031647300012],[-55.28758704299992,71.38141510600018],[-55.40420488199993,71.407660223],[-55.45360266799989,71.43203359600007],[-55.51447506399992,71.44916413],[-55.553822394999905,71.48139069200015],[-55.6627091139999,71.59756094000006],[-55.67174231699991,71.61310455900015],[-55.676177537999905,71.63011302300013],[-55.67153886599996,71.63361237200003],[-55.63703365799995,71.62738678600006],[-55.619130011999886,71.62799713700011],[-55.602284308999884,71.63080475500004],[-55.56932532499991,71.641058661],[-55.58438066299993,71.647894598],[-55.76231848899994,71.66364166900017],[-55.80646725199995,71.673041083],[-55.88711503799988,71.67658112200017],[-55.90453040299985,71.68203359600001],[-55.87962805899991,71.70404694200012],[-55.84752356699994,71.72199127800015],[-55.787831183999856,71.74347565300009],[-55.73176021999993,71.75116608300011],[-55.56187903599993,71.74347565300009],[-55.56533769399993,71.7494977890001],[-55.572092251999976,71.76520416900014],[-55.57555091099988,71.77138906500012],[-55.464019334999904,71.802679755],[-55.42467200399989,71.80613841399997],[-55.28465735599991,71.76862213700015],[-55.260243292999945,71.77822500200016],[-55.29246985599988,71.78546784100017],[-55.37010657499991,71.82599518400008],[-55.37669837099989,71.84992096600014],[-55.35944576699998,71.86969635600016],[-55.33043372299991,71.88312409100016],[-55.301503058999906,71.88808828300004],[-54.85334225199992,71.91299062700006],[-54.55524654899989,72.03375885600012],[-54.52721106699988,72.05312734600011],[-54.51292883999989,72.07990143400004],[-54.51545162699992,72.08234284100017],[-54.52375240799989,72.1017113300001],[-54.523508266999954,72.10407135600003],[-54.524973110999895,72.10976797100012],[-54.51992753799987,72.11322663000011],[-54.506092902999875,72.11737702000006],[-54.495961066999904,72.12616608300011],[-54.48403886599988,72.14866771000011],[-54.46410071499989,72.16718170800014],[-54.448719855999855,72.19293854400017],[-54.43846594999994,72.20335521000005],[-54.42674719999994,72.20941803600006],[-54.383208787999905,72.22321198100013],[-54.40819251199994,72.23248932500003],[-54.43346106699988,72.22406647300006],[-54.47940019399993,72.19594961100007],[-54.52904212099986,72.17743561400006],[-54.541086391999976,72.16063060100005],[-54.526600714999915,72.134466864],[-54.53966223899991,72.12783437700013],[-54.567616339999944,72.11985911699999],[-54.58185787699995,72.11395905200006],[-54.59068762899989,72.10757070500013],[-54.60094153599994,72.09369538000014],[-54.60912024599992,72.08608633000001],[-54.62132727799991,72.08014557500017],[-54.633697068999936,72.07636139500006],[-54.64415442599991,72.07050202],[-54.65013587099995,72.0587832700001],[-54.64830481699997,72.04604726800007],[-54.640980597999935,72.03595612200012],[-54.633208787999955,72.02875397300005],[-54.63023841099994,72.02460358300011],[-54.64159094999991,72.01850006700015],[-54.70539303299995,72.010931708],[-54.79881751199994,71.97138092700004],[-54.86603756399998,71.95197174700006],[-54.89683997299994,71.93927643400016],[-54.92080644399991,71.93292877800015],[-55.26781165299991,71.92731354400014],[-55.54344641799991,71.9849307310001],[-55.60968990799998,71.99046458500013],[-55.59618079299992,71.99827708500011],[-55.58043372299994,72.00458405200006],[-55.56729081899988,72.01325104400014],[-55.56187903599993,72.02802155200014],[-55.55174719999988,72.0381533870001],[-55.43443762899994,72.059719143],[-55.3299861319999,72.05670807500009],[-55.28136145699994,72.06557851800015],[-55.310902472999906,72.07501862200013],[-55.41104081899993,72.08608633000001],[-55.38536536399988,72.106390692],[-55.23289954299989,72.14130280200011],[-55.10167395699994,72.18862539300007],[-55.08893795499989,72.18976471600011],[-55.0646866529999,72.21027252800015],[-54.88345292899993,72.25116608299999],[-54.930327928999894,72.26605866100006],[-54.94668535099989,72.27789948100012],[-54.95177161399994,72.2995466170001],[-54.92454993399994,72.30975983300013],[-54.91136633999988,72.31875234600007],[-54.90330969999985,72.33307526200004],[-54.91978919199994,72.33380768400018],[-54.93211829299989,72.33905670800006],[-54.9420466789999,72.34821198100003],[-54.95177161399994,72.36041901200012],[-54.92389889199998,72.36896393400002],[-54.882883266999976,72.369614976],[-54.777902798999975,72.35468170800014],[-54.68488521999989,72.36717357000005],[-54.70376542899993,72.37470123900003],[-54.724720831999974,72.37441640800007],[-54.76675370999996,72.36717357000005],[-54.9082738919999,72.3799502620001],[-54.94395911399994,72.390326239],[-54.97288977799985,72.40818919500008],[-54.95221920499991,72.4169375670001],[-54.904693162999926,72.4188500020001],[-54.88345292899993,72.4286970070001],[-54.95547441299988,72.42251211100013],[-55.00365149599992,72.42706940300009],[-55.02163652299987,72.42365143400018],[-55.02009029899992,72.40818919500008],[-55.045277472999885,72.40070221600008],[-55.12987219999991,72.39516836100006],[-55.19102942599997,72.37189362200014],[-55.20498613199993,72.36717357000005],[-55.22411048099991,72.361761786],[-55.24510657499985,72.36391836100002],[-55.28750566299993,72.37409088700015],[-55.28750566299993,72.38153717700011],[-55.24600175699993,72.3877627620001],[-55.24600175699993,72.39516836100006],[-55.26756751199985,72.39533112200003],[-55.2838435539999,72.40119049700009],[-55.296864386999886,72.41242096600008],[-55.308664516999926,72.4286970070001],[-55.30117753799988,72.43618398600007],[-55.308664516999926,72.44293854400003],[-55.304351365999935,72.46092357000005],[-55.31700598899991,72.47028229400009],[-55.33372962099995,72.47016022300011],[-55.34215247299988,72.46002838700015],[-55.34788977799988,72.44269440300016],[-55.35749264199992,72.42934804900007],[-55.35944576699998,72.418402411],[-55.34215247299988,72.40818919500008],[-55.35773678299998,72.40395742400013],[-55.3697810539999,72.407171942],[-55.38166256399995,72.412787177],[-55.39679928299995,72.41567617400013],[-55.41612708199997,72.412339585],[-55.46003170499992,72.39838288000011],[-55.48306230399987,72.39516836100006],[-55.52912350199992,72.39948151200018],[-55.57091223899993,72.41054922100001],[-55.65127519399993,72.44293854400003],[-55.65127519399993,72.450384833],[-55.51211503799996,72.5151227890001],[-55.479969855999904,72.52488841400005],[-55.45913652299993,72.52594635600012],[-55.41104081899993,72.51064687700016],[-55.38687089799993,72.50861237200003],[-55.33804277299993,72.509955145],[-55.26667232999994,72.49860260600003],[-55.12303626199991,72.50438060100002],[-54.888172980999855,72.46967194200012],[-54.73949133999986,72.48395416900001],[-54.62555904899992,72.48183828300002],[-54.583241339999915,72.47239817900002],[-54.56102454299986,72.47028229400009],[-54.42418372299994,72.49762604400014],[-54.390695766999976,72.493597723],[-54.324330206999946,72.47638580900018],[-54.29385331899991,72.48395416900001],[-54.31354732999992,72.49457428600006],[-54.43919837099986,72.51316966400007],[-54.54019120999987,72.49762604400014],[-54.70128333199991,72.49892812700007],[-54.7838435539999,72.516058661],[-54.80093339799993,72.55219147300012],[-54.82457434799997,72.545884507],[-54.86831620999993,72.52069733300011],[-54.89712480399987,72.51805247600014],[-54.89028886599996,72.51805247600014],[-54.96833248599989,72.51699453300007],[-55.010568813999924,72.521714585],[-55.01659094999994,72.53546784100011],[-55.009144660999965,72.54645416900014],[-55.00470943899998,72.55890534100008],[-54.99844316299993,72.57062409100017],[-54.985829230999855,72.579535223],[-54.966460740999935,72.58454010600015],[-54.90330969999985,72.59381745000009],[-54.90583248599995,72.59756094000012],[-54.91022701699995,72.60748932500003],[-54.66466223899988,72.61375560099998],[-54.636138475999864,72.62225983300011],[-54.65013587099995,72.63471100500014],[-54.679310675999886,72.63735586100005],[-54.74107825399988,72.62653229400003],[-54.83112545499995,72.63593170800006],[-54.86091061099995,72.64276764500006],[-54.86302649599989,72.655218817],[-54.87706458199991,72.66657135600015],[-54.88345292899993,72.66889069200012],[-54.88345292899993,72.67572663000006],[-54.85948645699989,72.67519765800007],[-54.814849412999926,72.664740302],[-54.791005011999935,72.66205475500011],[-54.77228756399995,72.66583893400004],[-54.76553300699993,72.67499420800011],[-54.76227779899989,72.68634674700007],[-54.75377356699994,72.69684479400014],[-54.71422278599991,72.70547109600007],[-54.62730872299991,72.68813711100007],[-54.588693813999946,72.69684479400014],[-54.62498938699986,72.71360911699999],[-54.66901607999998,72.72577545800004],[-54.75377356699994,72.73777903899999],[-54.73379472599987,72.75356679900013],[-54.66698157499985,72.74860260600018],[-54.64020748599992,72.75519440300015],[-54.61534583199989,72.767523505],[-54.526600714999915,72.778753973],[-54.53864498599995,72.79173411700009],[-54.56191972599995,72.80027903900013],[-54.58751380099994,72.80231354400014],[-54.60606848899994,72.79547760600002],[-54.630197719999956,72.77903880400014],[-54.732777472999906,72.75918203300013],[-54.86611894399996,72.76463450700008],[-54.90298417899993,72.77033112200014],[-54.924427863999966,72.78558991100012],[-54.82457434799997,72.80329010600003],[-54.80370032499991,72.81305573100013],[-54.71898352799991,72.80609772300006],[-54.65794837099992,72.81378815300009],[-54.62808183499993,72.82184479400003],[-54.60293535099987,72.83397044500013],[-54.627064581999974,72.83746979400003],[-54.650257941999904,72.84495677299999],[-54.670277472999885,72.85716380400005],[-54.68488521999989,72.87498607000013],[-54.68773352799994,72.90029531500006],[-54.73102779899992,72.91852448100015],[-54.81460527299986,72.93642812700001],[-54.78929602799994,72.94481028899999],[-54.78184973899996,72.95184967700006],[-54.78726152299989,72.96369049700012],[-54.79751542899993,72.96710846600003],[-54.848744269999884,72.97052643400004],[-54.83177649599992,72.982326565],[-54.792144334999875,72.98554108300006],[-54.78107662699995,72.99848053600006],[-54.812367316999904,73.00800202000015],[-54.843006964999915,73.013413804],[-54.87328040299991,73.01459381700012],[-54.98143469999988,72.99896881700015],[-55.02879798099991,72.998236395],[-55.05418860599994,73.01154205900004],[-55.021595831999974,73.05101146],[-55.015695766999926,73.07062409100014],[-55.047596808999856,73.0630557310001],[-55.136219855999855,73.02496979400003],[-55.164051886999914,73.018988348],[-55.16673743399988,73.01146067900005],[-55.17674719999987,73.01748281500006],[-55.19815019399991,73.03603750200007],[-55.21751868399994,73.04140859600004],[-55.2608943349999,73.04271067900011],[-55.26768958199992,73.0462914080001],[-55.26768958199992,73.05247630400005],[-55.27717037699992,73.05231354400009],[-55.30117753799988,73.0462914080001],[-55.37010657499991,73.0462914080001],[-55.39411373599995,73.05003489800009],[-55.44050045499992,73.06757233300006],[-55.465687628999916,73.07294342700011],[-55.66344153599994,73.05735911700013],[-55.68032792899992,73.05975983300009],[-55.695383266999954,73.06952545800011],[-55.70030676999991,73.077297268],[-55.70091712099986,73.08161041900003],[-55.70303300699987,73.08429596600008],[-55.71271725199992,73.08722565300012],[-55.70303300699987,73.09906647300006],[-55.68321692599994,73.11298248900005],[-55.6614477199999,73.12372467700008],[-55.64561926999997,73.12641022300014],[-55.57746334499993,73.11188385600012],[-55.50755774599992,73.10712311400003],[-55.471547003999945,73.10976797100001],[-55.453358527999846,73.1139997420001],[-55.43781490799994,73.12140534100011],[-55.43317623599992,73.12661367400001],[-55.42418372299991,73.14199453300013],[-55.41852779899992,73.14809804900013],[-55.39806067599994,73.1568057310001],[-55.35045325399997,73.17059967700011],[-55.33531653599988,73.182806708],[-55.367298956999974,73.18244049700007],[-55.39801998599995,73.17780182500015],[-55.42837480399992,73.17731354400017],[-55.459462042999945,73.18964264500003],[-55.43008378799993,73.196234442],[-55.162587042999945,73.18219635600003],[-55.14159094999991,73.19037506700015],[-55.14362545499992,73.21076080900004],[-55.156239386999914,73.21747467700008],[-55.21930904899991,73.223822333],[-55.217396613999966,73.22833893400015],[-55.214507615999935,73.23973216400013],[-55.21247311099989,73.24428945500007],[-55.39777584499993,73.246771552],[-55.459462042999945,73.25787995000003],[-55.459462042999945,73.26536692899998],[-55.441070115999906,73.27041250200004],[-55.39000403599991,73.30263906500006],[-55.33873450399989,73.306341864],[-55.33356686099998,73.30825429900007],[-55.314849412999905,73.32062409100011],[-55.314849412999905,73.32623932500009],[-55.349191860999944,73.32562897300015],[-55.36302649599986,73.327582098],[-55.37010657499991,73.33368561400007],[-55.269113735999895,73.38662344000012],[-55.2496638659999,73.39203522300006],[-55.217396613999966,73.374172268],[-55.17613684799991,73.36249420800011],[-55.09512285099996,73.35415273600013],[-55.08971106699991,73.36790599200008],[-55.102853969999956,73.37714264500012],[-55.12083899599991,73.38442617400013],[-55.12987219999991,73.39203522300006],[-55.14297441299988,73.40619538],[-55.49583899599992,73.46507396000008],[-55.519032355999855,73.47260163000011],[-55.53457597599996,73.48444245000009],[-55.533273891999954,73.48753489799999],[-55.52916419199991,73.49233633000007],[-55.52603105399993,73.49827708499998],[-55.52782141799992,73.50495026200004],[-55.534779425999915,73.5108096370001],[-55.54259192599991,73.51316966400003],[-55.551584438999924,73.51487864800005],[-55.56187903599993,73.51862213700018],[-55.62669837099995,73.56582265800016],[-55.66515051999994,73.58502838700012],[-55.68480383999989,73.5738792990001],[-55.712228969999956,73.565619208],[-55.74413001199986,73.57123444199999],[-55.77391516799989,73.58478424700017],[-55.79466712099986,73.60053131700012],[-55.764515753999945,73.61237213700018],[-55.75373287699995,73.61481354400003],[-55.772572394999884,73.62689850500011],[-55.80858313699986,73.62555573100002],[-55.87791907499991,73.61481354400003],[-55.956166144999884,73.62091705900012],[-56.03111731699994,73.63837311400006],[-56.06773841099988,73.65302155200008],[-56.05719967399992,73.657660223],[-55.98643958199988,73.65574778900005],[-55.95091712099991,73.65863678600009],[-55.843088344999956,73.68309153900013],[-55.89049231699988,73.69623444200009],[-55.99592037699989,73.67991771000005],[-56.041086391999926,73.6905785180001],[-56.041086391999926,73.69672272300005],[-56.00031490799998,73.70746491100009],[-55.92845618399991,73.71767812700001],[-55.91136633999986,73.72406647300012],[-55.944935675999886,73.73371002800012],[-55.952300584999904,73.73773834800006],[-55.964019334999875,73.75291575700005],[-55.96735592399992,73.76178620000012],[-55.962513800999915,73.76561107000012],[-55.91454016799992,73.76146067899998],[-55.89146887899997,73.75413646000008],[-55.874134894999884,73.7414411480001],[-55.85016842399992,73.72915273600016],[-55.78433183499996,73.72524648600016],[-55.757435675999886,73.71381256700003],[-55.73420162699995,73.70718008000013],[-55.65168209499995,73.701361395],[-55.629546678999866,73.70416901200002],[-55.63703365799995,73.710394598],[-55.61266028599987,73.72113678600012],[-55.64464270699988,73.72426992400008],[-55.71613521999993,73.72064850500011],[-55.72305253799993,73.72406647300012],[-55.739125128999916,73.72288646000011],[-55.746896938999924,73.72406647300012],[-55.75377356699994,73.72842031500012],[-55.767404751999976,73.74042389500015],[-55.77415930899991,73.74518463700015],[-55.787749803999866,73.75153229400009],[-55.803130662999905,73.75665924700009],[-55.81887773299988,73.75938548400015],[-55.81432044199991,73.76105377800017],[-55.80825761599993,73.76561107000012],[-55.82335364499994,73.77130768400009],[-55.85643469999987,73.77879466399999],[-55.8710017569999,73.78611888200008],[-55.89964758999988,73.82111237200017],[-55.94546464799987,73.861232815],[-55.841867641999954,73.85317617400015],[-55.78038489499996,73.85504791900003],[-55.72130286399994,73.84320709800006],[-55.69933020699992,73.84137604400009],[-55.66246497299997,73.84393952],[-55.64614824099993,73.84813060100014],[-55.629546678999866,73.85504791900003],[-55.64476477799985,73.87547435100002],[-55.67015540299988,73.88532135600012],[-55.756337042999945,73.892767645],[-55.81729081899993,73.91160716400005],[-55.88487708199989,73.919094143],[-55.914947068999936,73.92723216400013],[-55.97280839799993,73.95001862200014],[-56.00719153599988,73.956773179],[-56.08153235599988,73.96112702000009],[-56.10997473899991,73.97044505400011],[-56.10582434799994,73.9816755230001],[-56.10594641799992,73.98891836100013],[-56.10997473899991,73.99843984600012],[-56.10212154899992,73.9989688170001],[-56.0891820949999,74.00360748900015],[-56.082020636999886,74.00527578300014],[-56.09170488199993,74.00971100500014],[-56.10191809799996,74.01215241100006],[-56.11270097599987,74.01276276200004],[-56.12425696499989,74.01211172100007],[-56.09593665299985,74.02081940300015],[-55.99388587099986,74.01211172100007],[-55.963612433999884,74.01788971600014],[-55.970529751999976,74.0270856790001],[-55.99742591099993,74.03563060100014],[-56.33128821499988,74.04450104400009],[-56.3631892569999,74.05304596600011],[-56.36168372299994,74.06366608300013],[-56.37482662699991,74.06769440300012],[-56.41161048099988,74.06732819199999],[-56.40477454299989,74.07416413000011],[-56.35879472599993,74.08307526200015],[-56.29942786399994,74.0849063170001],[-56.242787238999966,74.09308502800003],[-56.19871985599985,74.12128327000003],[-56.298980272999955,74.11155833500005],[-56.31602942599991,74.12128327000003],[-56.264393683999856,74.14655182500015],[-56.24803626199986,74.16242096600008],[-56.26016191299993,74.17658112200012],[-56.24429277299993,74.18329498900006],[-56.22394771999993,74.18748607],[-56.17137610599988,74.19253164300012],[-56.16746985599988,74.19855377800003],[-56.16734778599991,74.20722077000012],[-56.164173956999946,74.22699616100013],[-56.165272589999915,74.23822663000006],[-56.16364498599998,74.24774811400015],[-56.15465247299994,74.25165436400015],[-56.14391028599994,74.25429922100012],[-56.13475501199986,74.26093170799999],[-56.12800045499991,74.269964911],[-56.12425696499989,74.27960846600017],[-56.161284959999925,74.28534577000015],[-56.17955481699991,74.28473541900007],[-56.25694739499988,74.23794179900001],[-56.56334387899997,74.164984442],[-56.929554816499966,74.1323713235001],[-57.29576575399997,74.0997582050001],[-57.314116990999935,74.10268789300002],[-57.32217363199988,74.11172109600012],[-57.31843014199992,74.11920807500009],[-57.30939693899993,74.12946198100012],[-57.2982071609999,74.13849518400004],[-57.288319464999915,74.14240143400004],[-57.20571855399993,74.14911530200008],[-57.13182532499991,74.13670482000005],[-57.10680091099991,74.13711172100015],[-57.08942623599992,74.14240143400004],[-57.12962805899991,74.15363190300003],[-57.148101365999935,74.16278717700011],[-57.15831458199988,74.17658112200012],[-57.040598110999916,74.1714541690001],[-57.00129146999993,74.17658112200012],[-56.909779425999915,74.20066966400005],[-56.70303300699996,74.2038434920001],[-56.686756964999915,74.20669179900015],[-56.65819251199991,74.22016022300012],[-56.64439856699991,74.225002346],[-56.59813391799992,74.22646719000006],[-56.58291581899993,74.231146552],[-56.58946692599994,74.2354190120001],[-56.59752356699997,74.24237702000009],[-56.60338294199991,74.24481842700011],[-56.32192949099993,74.2877464860001],[-56.30174719999991,74.3063011740001],[-56.37096106699991,74.31268952000012],[-56.58291581899993,74.29262929900014],[-56.53620357999994,74.31647370000006],[-56.53172766799989,74.32477448100012],[-56.6405330069999,74.32892487200014],[-56.67829342399997,74.33466217700013],[-56.713246222999885,74.34784577000009],[-56.67162024599992,74.35602448100009],[-56.58214270699992,74.34979889500012],[-56.50255286399994,74.36725495000009],[-56.15465247299994,74.36908600500006],[-56.13719641799989,74.37470123900006],[-56.13044186099995,74.38886139500009],[-56.136341925999886,74.3949242210001],[-56.163238084999875,74.40753815300015],[-56.17170162699992,74.40989817900011],[-56.50377356699997,74.41616445500007],[-56.52472896999993,74.41315338700015],[-56.54303951699998,74.407416083],[-56.56187903599991,74.40412018400015],[-56.75865637899997,74.44448476800002],[-56.79523678299992,74.44403717700011],[-56.79523678299992,74.45087311400015],[-56.61363684799994,74.45087311400015],[-56.295521613999966,74.48436107],[-56.16832434799988,74.47752513200008],[-56.14476477799985,74.49188873900015],[-56.24193274599986,74.49770742400001],[-56.26016191299993,74.51235586100002],[-56.25503495999993,74.52985260600015],[-56.23509680899994,74.54067617400014],[-56.19188391799994,74.55329010600003],[-56.22179114499991,74.56264883000007],[-56.421864386999914,74.55329010600003],[-56.43146725199989,74.55516185100011],[-56.46621660099996,74.57070547100001],[-56.48078365799998,74.57518138200008],[-56.51341712099992,74.57660553600014],[-56.57152258999988,74.58783600500014],[-56.590728318999936,74.59454987200009],[-56.60338294199991,74.60789622600002],[-56.53160559799991,74.61725495000003],[-56.50055904899992,74.62653229400007],[-56.47305253799988,74.64264557500015],[-56.47305253799988,74.64887116100012],[-56.70230058499993,74.64472077000009],[-56.76789303299994,74.66315338700012],[-56.75462805899991,74.67348867400004],[-56.76402747299994,74.679144598],[-56.80207271999993,74.68366120000015],[-56.82262122299997,74.68992747600011],[-56.855539516999954,74.70783112200016],[-56.87743079299989,74.711615302],[-56.92381751199986,74.70628489800013],[-56.949208136999886,74.69871653899999],[-56.96996008999989,74.67519765800004],[-56.99156653599988,74.67243073100015],[-57.014515753999966,74.67780182500003],[-57.02794348899996,74.69049713700018],[-57.0142716139999,74.69733307500007],[-57.02912350199989,74.70307038000009],[-57.06078040299985,74.706000067],[-57.07579505099988,74.711615302],[-57.06672115799998,74.71954987200014],[-57.05687415299988,74.7258161480001],[-57.04625403599991,74.72992584800006],[-57.034779425999965,74.73143138200011],[-57.054676886999886,74.745266018],[-57.0899958979999,74.74616120000009],[-57.15831458199988,74.73826732000013],[-57.14867102799991,74.74298737200002],[-57.1405330069999,74.749172268],[-57.134348110999916,74.75665924700017],[-57.130360480999855,74.7655703800001],[-57.14639238199993,74.76528554900007],[-57.19302324099996,74.77301666900009],[-57.14403235599988,74.79376862200009],[-57.11461341099991,74.80084870000015],[-57.09312903599988,74.7966169290001],[-57.071034308999884,74.78229401200004],[-57.045765753999945,74.77265045800009],[-57.01756751199985,74.76727936400012],[-56.98721269399988,74.7655703800001],[-56.97297115799998,74.767767645],[-56.96458899599991,74.77313873900006],[-56.95726477799991,74.77977122600011],[-56.94603430899991,74.78607819200006],[-56.93268795499989,74.78925202000012],[-56.904164191999904,74.79262929900015],[-56.867909308999884,74.80589427299999],[-56.84601803299995,74.81122467700014],[-56.79523678299992,74.8139509140001],[-56.8177791009999,74.83612702000009],[-56.854969855999876,74.84845612200003],[-56.98696855399993,74.85455963700012],[-57.000721808999856,74.86810944200009],[-56.99449622299991,74.90338776200011],[-57.01626542899996,74.90696849199999],[-57.057850714999944,74.92194245000003],[-57.083159959999875,74.92381419499999],[-57.292591925999915,74.90741608300009],[-57.31871497299997,74.91396719000006],[-57.32966061099992,74.93378327000009],[-57.33820553299994,74.93838125200001],[-57.37828528599988,74.94086334800015],[-57.39102128799993,74.94432200700014],[-57.39679928299989,74.95685455900004],[-57.42357337099989,74.963568427],[-57.5528051419999,74.97996653900002],[-57.66405188699986,75.01422760600015],[-57.69420325399997,75.01968008000001],[-57.84675045499995,75.01972077],[-57.87779700399988,75.02676015800016],[-57.89134680899985,75.04336172100012],[-57.905140753999945,75.05060455900006],[-57.973011847999935,75.05927155200014],[-58.056385870999854,75.05890534100003],[-58.09959876199986,75.04852936400012],[-58.121408657999886,75.04669830900013],[-58.14159094999994,75.05182526200015],[-58.15949459499989,75.06728750200008],[-58.146148240999885,75.08380768400015],[-58.12515214799992,75.08934153899999],[-58.07697506399998,75.08771393400015],[-58.08824622299988,75.09686920800014],[-58.10212154899997,75.10175202],[-58.131499803999866,75.10822174700012],[-57.940663214999944,75.15094635600003],[-57.92271887899989,75.16339752800006],[-57.9395238919999,75.18024323100005],[-58.01231848899994,75.19806549700003],[-58.16909745999987,75.19672272300012],[-58.241444464999915,75.21124909100017],[-58.24681555899988,75.227972723],[-58.271473761999886,75.2396914730001],[-58.330148891999904,75.252183335],[-58.32787024599992,75.256048895],[-58.32396399599991,75.26650625200006],[-58.389393683999884,75.2836774760001],[-58.4252009759999,75.29913971600003],[-58.43936113199993,75.31427643400004],[-58.42861894399991,75.32538483300006],[-58.408314581999925,75.32640208500011],[-58.371490037999926,75.32050202000009],[-58.35094153599987,75.32123444200012],[-58.33543860599988,75.32367584800015],[-58.30284583199991,75.3341738950001],[-58.316761847999885,75.34113190300012],[-58.33250891799986,75.34711334800012],[-58.36489824099996,75.35521067900005],[-58.346424933999934,75.37579987200009],[-58.27599036399994,75.38841380400008],[-58.247629360999895,75.403021552],[-58.302398240999906,75.41144440300002],[-58.368804490999935,75.41083405200008],[-58.4320369129999,75.39866771],[-58.477284308999856,75.37230052300002],[-58.49787350199997,75.35468170800009],[-58.51748613199993,75.34723541900009],[-58.70010331899987,75.34845612200012],[-58.68659420499992,75.3666852890001],[-58.659535285999965,75.37734609600012],[-58.52684485599988,75.40656159100016],[-58.44640051999988,75.409857489],[-58.417632615999935,75.4142113300001],[-58.37718665299991,75.43341705900015],[-58.349761522999955,75.43773021000005],[-58.239165818999936,75.436672268],[-58.20665442599997,75.444037177],[-58.21035722599993,75.44721100500006],[-58.220326300999915,75.45831940300009],[-58.20628821499986,75.47052643400015],[-58.184396938999924,75.4842796900001],[-58.166737433999906,75.50043366100014],[-58.16567949099997,75.51972077000009],[-58.189930792999945,75.534369208],[-58.23306230399987,75.54409414300012],[-58.39517167899996,75.55662669500005],[-58.426136847999885,75.56610748900015],[-58.41551673099994,75.59174225500011],[-58.39244544199988,75.60748932500017],[-58.31029212099988,75.643255927],[-58.338612433999934,75.65688711100013],[-58.37950598899989,75.66010163],[-58.4826554029999,75.64850495000017],[-58.520253058999906,75.64915599200013],[-58.55724036399994,75.65412018400018],[-58.58405514199992,75.66372304900015],[-58.59434973899993,75.67975495000015],[-58.579904751999884,75.69220612200014],[-58.55370032499987,75.70075104400009],[-58.52879798099991,75.70465729400007],[-58.46288001199988,75.699896552],[-58.42918860599988,75.70258209800006],[-58.40591386599996,75.71893952000009],[-58.447621222999906,75.73135000200001],[-58.71336829299992,75.73525625200001],[-58.79491126199994,75.71918366100012],[-59.04161536399993,75.70136139500015],[-59.0768123039999,75.71149323100009],[-59.06322180899985,75.71893952000009],[-59.06981360599991,75.71995677300005],[-59.08429928299994,75.725775458],[-59.05703691299988,75.74371979400013],[-59.06753495999993,75.76260000200006],[-59.09886633999989,75.7753766950001],[-59.13390051999989,75.77521393400015],[-59.20791581899996,75.75995514500009],[-59.24620520699988,75.75922272300015],[-59.282866990999906,75.76609935100008],[-59.23761959499989,75.77570221600014],[-59.22085527299987,75.783636786],[-59.221506313999924,75.80093008000001],[-59.23648027299995,75.81321849200006],[-59.25869706899991,75.81679922100011],[-59.303374803999866,75.81452057500015],[-59.26813717399992,75.82782623900009],[-59.223784959999904,75.83624909100001],[-59.13951575399989,75.84186432500003],[-59.182769334999875,75.87360260600016],[-59.27220618399988,75.88011302299999],[-59.50365149599992,75.86676666900017],[-59.53831946499989,75.86025625200007],[-59.570301886999886,75.848089911],[-59.61363684799996,75.82306549700017],[-59.6402888659999,75.81244538000014],[-59.65221106699994,75.81793854400017],[-59.65721594999987,75.82831452000006],[-59.66869055899991,75.82884349200005],[-59.681630011999935,75.82396067900008],[-59.7029516269999,75.808254299],[-59.71353105399996,75.80341217700011],[-59.725656704999956,75.80158112200014],[-59.77293860599991,75.8014183610001],[-59.80186926999991,75.80683014500012],[-59.81468665299993,75.819484768],[-59.79686438699985,75.84186432500003],[-59.7755427729999,75.853216864],[-59.724598761999886,75.87295156500012],[-59.704009568999936,75.88593170800011],[-59.67650305899991,75.89752838700007],[-59.61123613199993,75.90322500200013],[-59.591420050999915,75.91693756700006],[-59.64232337099991,75.92719147300008],[-59.71226966099994,75.96308014500009],[-59.733143683999906,75.96954987200017],[-59.75584876199985,75.97223541900014],[-59.78062903599991,75.96930573100002],[-59.84398352799985,75.94428131700012],[-59.89439856699989,75.94330475500006],[-59.916371222999906,75.93846263200008],[-59.91295325399988,75.92377350500009],[-59.9661352199999,75.92479075700012],[-59.99347896999987,75.92914459800012],[-60.01659094999991,75.9374453800001],[-59.98863684799988,75.96539948100003],[-60.00772050699987,75.97186920800014],[-60.07054602799993,75.97223541900014],[-60.13951575399998,75.9858259140001],[-60.13170325399997,75.99640534100017],[-60.12018795499995,76.00507233300006],[-60.118031378999945,76.00507233300006],[-60.10993404899991,76.00958893400012],[-60.09105383999989,76.013128973],[-60.1241755849999,76.03188711100016],[-60.46157792899993,76.03363678600014],[-60.45563717399992,76.05377838700018],[-60.47350012899998,76.06386953300016],[-60.50084387899995,76.06736888200014],[-60.523345506999924,76.06777578300012],[-60.532093878999916,76.06500885600009],[-60.54800370999993,76.05048248900015],[-60.55719967399992,76.04389069200009],[-60.572499152999875,76.03998444200009],[-60.60863196499991,76.03668854400014],[-60.63390051999993,76.02448151200015],[-60.68130449099988,76.013128973],[-60.70832271999984,76.00047435100011],[-60.71857662699995,75.99884674700009],[-60.73363196499989,75.99917226800012],[-60.74547278599994,76.00104401200008],[-60.75572669199997,76.00633372600008],[-60.76634680899991,76.01691315300012],[-60.78099524599991,76.02586497600005],[-60.81627356699994,76.02789948100018],[-60.83214270699997,76.03363678600014],[-60.82713782499994,76.03876373900005],[-60.81786048099988,76.054144598],[-60.83836829299994,76.054144598],[-60.82835852799985,76.07562897300012],[-60.82477779899997,76.08148834800006],[-60.90729732999998,76.08148834800006],[-60.89329993399991,76.095648505],[-60.84764563699988,76.103461005],[-60.83214270699997,76.11562734600007],[-60.85118567599997,76.11774323100018],[-60.85753333199989,76.12750885600003],[-60.85118567599997,76.13825104400006],[-60.83214270699997,76.14350006700012],[-60.87254798099991,76.15814850500013],[-60.92406165299991,76.1656761740001],[-60.97614498599996,76.16596100500011],[-61.06273352799991,76.15155670800006],[-61.10708574099993,76.15412018400015],[-61.2403865229999,76.17743561400006],[-61.41787675699993,76.18154531500012],[-61.48265540299993,76.17047760600018],[-61.65733801999991,76.18292877800009],[-61.75641842399997,76.20331452000009],[-61.7774958979999,76.204982815],[-61.85265051999991,76.20237864800002],[-61.86969967399994,76.20868561400015],[-61.901478644999905,76.23061758000016],[-61.93936113199993,76.23920319200009],[-62.02428137899988,76.23908112200012],[-62.11660722599993,76.22394440300012],[-62.16685950399989,76.22199127800015],[-62.19517981699994,76.23908112200012],[-62.182484503999966,76.24274323100013],[-62.1473689439999,76.25958893400015],[-62.17979895699988,76.27505117400005],[-62.2225642569999,76.285834052],[-62.26675370999987,76.28994375200013],[-62.30353756399995,76.28510163000006],[-62.33950761599993,76.275824286],[-62.35838782499987,76.26776764500006],[-62.37584387899991,76.24485911700008],[-62.397613084999904,76.24457428600012],[-62.58067786399991,76.26801178600003],[-62.73631751199991,76.25731028899999],[-62.77741451699989,76.23908112200012],[-62.72899329299989,76.21857330900013],[-62.72899329299989,76.21238841399999],[-62.756418423999946,76.20132070500013],[-62.77358964799987,76.19782135600015],[-62.791656053999894,76.19814687700007],[-62.77741451699989,76.21238841399999],[-62.84040279899992,76.22817617400011],[-62.85313880099997,76.23908112200012],[-62.85240637899994,76.25397370000015],[-62.82526607999992,76.26772695500006],[-62.81956946499994,76.28001536700012],[-62.84919186099998,76.30353424700009],[-63.05313066299987,76.34186432500012],[-63.112782355999876,76.34369538],[-63.171457485999895,76.36200592700006],[-63.26402747299988,76.35578034100008],[-63.28962154899994,76.35932038000009],[-63.34137936099997,76.37368398600016],[-63.367298956999974,76.37689850500011],[-63.476918097999906,76.37689850500011],[-63.478505011999935,76.37702057500017],[-63.48281816299993,76.37445709800005],[-63.497425910999965,76.36945221600003],[-63.48501542899994,76.33950429900007],[-63.517201300999886,76.3102888040001],[-63.59300696499995,76.27326080900008],[-63.60732988199993,76.2624372420001],[-63.633046027999875,76.23712799700014],[-63.64826412699994,76.22540924700017],[-63.67243404899994,76.21767812700016],[-63.728505011999886,76.21133047100012],[-63.750599738999874,76.19814687700007],[-63.74339758999994,76.19692617400015],[-63.7337133449999,76.19391510600015],[-63.72569739499994,76.18964264500015],[-63.723296678999894,76.18447500200013],[-63.72866777299995,76.17804596600001],[-63.73672441299987,76.17743561400006],[-63.74665279899988,76.1786156270001],[-63.757476365999885,76.17767975500011],[-63.81069902299986,76.159125067],[-64.03111731699997,76.13605377800015],[-64.09666907499987,76.1457380230001],[-64.14915930899994,76.17210521000003],[-64.1908259759999,76.21137116100012],[-64.22423255099997,76.25958893400015],[-64.21133378799995,76.27220286700005],[-64.20441646999987,76.27692291900014],[-64.19627844999994,76.28001536700012],[-64.20059160099993,76.28847890800007],[-64.20518958199997,76.29315827000009],[-64.21226966099994,76.29498932500015],[-64.22423255099997,76.29433828300002],[-64.21275794199991,76.30487702000009],[-64.19953365799998,76.31159088700012],[-64.18488521999987,76.31476471600008],[-64.16905676999994,76.31484609600007],[-64.16905676999994,76.32225169500005],[-64.32135982999989,76.352728583],[-64.42906653599997,76.34902578300014],[-64.41852779899992,76.33836497600014],[-64.38817298099994,76.320746161],[-64.37441972599989,76.30801015800016],[-64.37987219999985,76.30512116100012],[-64.38947506399992,76.29767487200014],[-64.39492753799996,76.29433828300002],[-64.37376868399986,76.28961823100012],[-64.37051347599993,76.27533600500011],[-64.38121497299994,76.26032135600009],[-64.4017634759999,76.253363348],[-64.42560787699995,76.24860260600009],[-64.44440670499992,76.23981354400003],[-64.46422278599992,76.23505280200014],[-64.50690670499993,76.2459170590001],[-64.5368546209999,76.24005768400018],[-64.55109615799992,76.24091217700008],[-64.61583411399994,76.26772695500006],[-64.64443925699993,76.274115302],[-64.6717830069999,76.27167389500006],[-64.68976803299992,76.253363348],[-64.68700110599988,76.23444245000017],[-64.6708064439999,76.21662018400009],[-64.64891516799987,76.20335521000007],[-64.60399329299989,76.19383372600008],[-64.58067786399988,76.18447500200013],[-64.57461503799988,76.17511627800012],[-64.60106360599985,76.170843817],[-64.65282141799989,76.18333567900011],[-64.68317623599995,76.18585846600003],[-64.69660396999986,76.174261786],[-64.68285071499994,76.15729401200004],[-64.59414628799996,76.13605377800015],[-64.6476130849999,76.12299225500009],[-64.69961503799995,76.12555573100018],[-64.75015214799996,76.13955312700013],[-64.79930579299989,76.16058991100006],[-64.85191809799991,76.17641836100002],[-65.02497311099995,76.17767975500011],[-65.01622473899987,76.16494375200016],[-64.98713131399992,76.14813873900015],[-64.97777258999989,76.13605377800015],[-64.97838294199994,76.12653229400014],[-64.97663326699995,76.1227888040001],[-64.97032630099991,76.11562734600007],[-64.97451738199993,76.11041901200018],[-64.98794511599993,76.10626862200006],[-65.00031490799995,76.10830312700007],[-65.02497311099995,76.12299225500009],[-65.05215410099986,76.13515859600015],[-65.06676184799989,76.13739655200014],[-65.16270911399988,76.13035716400007],[-65.23786373599998,76.13605377800015],[-65.20518958199995,76.170843817],[-65.20767167899986,76.18138255400005],[-65.23786373599998,76.18447500200013],[-65.34264075399994,76.17584870000003],[-65.36070716099997,76.16400788000009],[-65.34935462099989,76.16388580900009],[-65.33849036399991,76.16152578300016],[-65.32843990799992,76.15680573100006],[-65.31973222599993,76.14972565300017],[-65.36070716099997,76.13605377800015],[-65.3065486319999,76.09039948100012],[-65.29991614499994,76.07526276200011],[-65.31729081899991,76.06126536700005],[-65.3445531889999,76.05731842700008],[-65.3631078769999,76.050238348],[-65.35448157499991,76.02680084800012],[-65.66234290299985,76.04047272300005],[-65.65363521999987,76.04482656500006],[-65.64891516799986,76.04913971600014],[-65.64248613199996,76.06159088700018],[-65.71043860599991,76.06159088700018],[-65.7247615229999,76.06435781500012],[-65.75633704299992,76.07729726800015],[-65.77220618399994,76.08148834800006],[-65.8605037099999,76.09271881700009],[-65.88890540299991,76.10252513200011],[-65.85749264199998,76.119777736],[-65.77904212099995,76.12783437700016],[-65.75234941299993,76.14350006700012],[-65.74998938699989,76.15424225500014],[-65.75572669199994,76.17576732000003],[-65.75234941299993,76.18447500200013],[-65.73704993399988,76.18870677300008],[-65.71861731699994,76.18573639500015],[-65.70140540299991,76.185532945],[-65.68968665299994,76.19814687700007],[-65.7369685539999,76.19863515800016],[-65.76008053299992,76.202826239],[-65.77220618399994,76.21238841399999],[-65.5782771479999,76.23029205900004],[-65.55247962099989,76.23908112200012],[-65.64134680899991,76.26797109600002],[-65.74014238199996,76.27850983300009],[-66.02367102799994,76.26032135600009],[-66.06810462099995,76.26398346600013],[-66.1366267569999,76.28367747599998],[-66.17731686099998,76.28607819200012],[-66.20726477799985,76.27781810100014],[-66.20421301999994,76.253363348],[-66.21043860599991,76.253363348],[-66.21890214799996,76.22508372600005],[-66.26252193899994,76.20929596600008],[-66.35440019399991,76.1906598980001],[-66.3198136059999,76.16644928600012],[-66.33714758999989,76.16205475500011],[-66.37702389199995,76.16160716400013],[-66.40965735599991,76.14972565300017],[-66.38662675699993,76.13857656500006],[-66.36949622299991,76.12628815300012],[-66.36558997299991,76.11212799700009],[-66.38239498599992,76.09568919499999],[-66.41372636599996,76.08612702],[-66.51891028599994,76.09568919499999],[-66.53319251199991,76.09992096600011],[-66.55504309799997,76.11880117400013],[-66.56700598899991,76.12299225500009],[-66.58202063699991,76.12567780200006],[-66.62905839799993,76.14663320500009],[-66.6607966789999,76.15420156500015],[-66.70006262899992,76.1583519550001],[-66.73631751199991,76.16608307500009],[-66.75914466099994,76.18447500200013],[-66.7367244129999,76.18748607000005],[-66.71003170499989,76.19537995000012],[-66.68553626199984,76.20644765800016],[-66.66974850199992,76.21857330900013],[-66.76032467399995,76.21491120000009],[-66.80601966099988,76.2201602230001],[-66.81436113199996,76.23908112200012],[-66.86681067599991,76.25657786700005],[-66.92715410099996,76.26650625200016],[-67.04710852799988,76.26703522300012],[-67.09727942599997,76.258978583],[-67.12303626199991,76.25079987200009],[-67.14268958199997,76.23908112200012],[-67.15599524599988,76.2335472680001],[-67.15876217399995,76.22882721600017],[-67.14981035099993,76.22199127800015],[-67.14000403599988,76.21808502800015],[-67.12970943899995,76.21527741100012],[-67.10855058499996,76.21238841399999],[-67.10855058499996,76.204982815],[-67.15404212099995,76.20050690300003],[-67.25031490799995,76.204535223],[-67.29356848899994,76.1906598980001],[-67.2872615229999,76.18447500200013],[-67.2954809239999,76.17983633000001],[-67.30020097599993,76.17499420800014],[-67.30776933499995,76.16400788000009],[-67.08788001199986,76.14655182500012],[-67.0574438139999,76.14020416900009],[-67.03197180899988,76.12689850500006],[-67.01235917899993,76.10252513200011],[-67.02326412699992,76.09552643400004],[-67.03555253799996,76.08978913000006],[-67.06017005099997,76.08148834800006],[-67.0349014959999,76.0644391950001],[-66.7916560539999,76.03046295800009],[-66.74815833199997,76.01634349200005],[-66.68936113199987,76.00678131700006],[-66.61668860599991,75.97858307500009],[-66.56086178299992,75.96898021000011],[-66.51960201699995,75.95490143400015],[-66.49811764199993,75.95172760600009],[-66.48713131399998,75.947414455],[-66.46642005099997,75.92820872600005],[-66.45128333199997,75.92377350500009],[-66.48843339799986,75.909857489],[-66.5648087229999,75.91657135600003],[-66.74649003799996,75.95844147300015],[-66.93907630099989,75.97524648600016],[-67.02696692599994,75.97223541900014],[-67.05020097599987,75.97540924700003],[-67.0975642569999,75.98948802300008],[-67.43633650099994,76.0119218336667],[-67.77510874499998,76.03435564433336],[-68.11388098899991,76.0567894550001],[-68.18358313699989,76.07526276200011],[-68.38288326699995,76.08148834800006],[-68.38825436099992,76.07648346600003],[-68.40811113199993,76.07623932500009],[-68.43252519399996,76.07941315300013],[-68.47280839799996,76.091742255],[-68.5459692049999,76.10419342700011],[-68.5650935539999,76.11131419500008],[-68.56956946499986,76.11749909100014],[-68.56078040299988,76.12319570500004],[-68.54051673099988,76.12921784100003],[-68.43809973899987,76.14350006700012],[-68.47057044199997,76.16282786700005],[-68.52009029899992,76.16803620000015],[-68.79246985599988,76.16681549700003],[-68.74596106699994,76.18447500200013],[-68.76854407499991,76.19212474200008],[-68.81916256399998,76.19537995000012],[-68.93150794199988,76.22540924700017],[-68.91673743399991,76.24323151200004],[-68.92369544199991,76.24689362200009],[-69.09943600199992,76.28339264500015],[-69.15416419199997,76.28709544499999],[-69.20645097599996,76.298244533],[-69.29458574099996,76.300523179],[-69.38442949099988,76.31362539300015],[-69.54784094999985,76.36322663000009],[-69.61782792899996,76.37103913000006],[-69.63727779899993,76.38312409100017],[-69.62751217399992,76.390326239],[-69.62092037699993,76.39862702000009],[-69.61913001199984,76.4076602230001],[-69.62360592399992,76.41722239799999],[-69.60081946499987,76.43170807500003],[-69.57725989499994,76.43764883000016],[-69.32837887299993,76.46898021050005],[-69.07949785099993,76.50031159100014],[-68.90461178299992,76.52236562700013],[-68.8148087229999,76.55499909100008],[-68.83470618399988,76.55963776200012],[-68.89679928299992,76.56122467700006],[-68.86717688699989,76.57021719000006],[-68.73277747299989,76.58624909100014],[-68.38194739499995,76.58515045800011],[-68.03111731699995,76.58405182500017],[-68.00377356699988,76.5899925800001],[-67.9864802729999,76.600734768],[-67.98448645699995,76.60199616100012],[-67.98558508999992,76.62270742400013],[-68.0072322259999,76.63764069200005],[-68.07054602799992,76.64472077000012],[-68.09544837099989,76.657416083],[-68.00226803299995,76.67373281500004],[-67.98558508999992,76.68414948100009],[-68.08242753799989,76.70526764500012],[-68.10244706899996,76.70628489799999],[-68.33877519399996,76.67348867400007],[-68.62454179599993,76.66917552300016],[-68.9103083979999,76.66486237200017],[-69.13882402299993,76.68610260600015],[-69.23989824099993,76.67658112200013],[-69.28917395699992,76.68252187700007],[-69.34048417899993,76.69550202000009],[-69.62926184799991,76.72296784049998],[-69.9180395169999,76.75043366100006],[-69.96092688699984,76.76361725500011],[-70.01121985599991,76.7684593770001],[-70.03449459499984,76.77350495000003],[-70.08519446499992,76.79584381700006],[-70.10338294199988,76.80145905200006],[-70.08592688699994,76.82526276200007],[-70.05687415299985,76.84076569200006],[-69.92088782499994,76.86810944200012],[-69.89362545499992,76.88104889500012],[-69.89793860599994,76.90387604400014],[-69.85806230399996,76.9152692730001],[-69.74339758999992,76.96930573100012],[-69.68708248599992,76.98200104400016],[-69.58189856699997,76.98867422100011],[-69.55785071499994,76.99469635600003],[-69.5416560539999,77.00629303600006],[-69.72887122299997,77.01642487200012],[-69.75698808499996,77.01064687700013],[-69.76081295499998,76.99262116100012],[-69.8229060539999,76.9767113300001],[-69.90868079299995,76.94208405200011],[-69.96784420499995,76.92999909100011],[-70.05016028599991,76.892035223],[-70.40746008999992,76.797796942],[-70.52110755099991,76.78717682500015],[-70.54137122299994,76.792181708],[-70.55601966099994,76.79303620000012],[-70.56582597599987,76.79775625200001],[-70.57282467399995,76.80316803600006],[-70.58332271999993,76.8085798200001],[-70.5941462879999,76.81240469000012],[-70.60216223899997,76.81281159100003],[-70.64224199099986,76.80158112200003],[-70.66014563699994,76.80198802300013],[-70.82860266799986,76.8418643250001],[-70.84227454299987,76.848781643],[-70.83958899599992,76.85691966400013],[-70.81533769399994,76.86908600500003],[-70.84292558499993,76.8742536480001],[-70.90538489499988,76.8647321640001],[-70.92886308499996,76.87278880400005],[-70.94212805899987,76.8815778670001],[-70.98721269399994,76.89704010600003],[-70.9554744129999,76.9076195330001],[-70.82957923099994,76.90387604400014],[-70.83702551999991,76.91128164300011],[-70.69456946499989,76.93162669500013],[-70.67878170499992,76.938625393],[-70.80435136599996,76.93203359600012],[-71.08283443899992,76.9658877620001],[-71.07603919199991,76.95913320500007],[-71.12144934799989,76.95087311400009],[-71.09715735599991,76.9317894550001],[-71.3456111319999,76.99176666900011],[-71.38442949099993,77.02399323100015],[-71.37254798099988,77.05833567900011],[-71.34243730399993,77.07074616100014],[-71.2613826159999,77.06899648600013],[-71.2355037099999,77.07249583500014],[-71.23232988199993,77.08193594000015],[-71.2367244129999,77.0951195330001],[-71.23363196499992,77.10993073100015],[-71.2203669909999,77.11465078300007],[-71.20107988199996,77.11676666900009],[-71.1878962879999,77.12238190300009],[-71.1926977199999,77.13727448100003],[-71.00104732999995,77.15542226800012],[-70.91026770699995,77.145656643],[-70.6992895169999,77.150864976],[-70.75308183499993,77.16461823100012],[-70.92516028599991,77.17816803600009],[-70.90330969999988,77.19135163000011],[-70.51336286833327,77.20723433400012],[-70.12341603666658,77.223117038],[-69.73346920499989,77.2389997420001],[-69.71418209499987,77.23529694200006],[-69.6769099599999,77.222072658],[-69.65807044199993,77.21918366100009],[-69.5775447259999,77.22581614800005],[-69.15306555899991,77.20754629099999],[-68.72858639199987,77.18927643400008],[-68.68537350199995,77.17975495000012],[-68.62022864499994,77.17645905200008],[-68.61335201699993,77.1742210960001],[-68.61681067599991,77.17072174700009],[-68.24748694549993,77.18650950750002],[-67.87816321499986,77.2022972680001],[-67.48094641799989,77.17283763250008],[-67.08372962099992,77.14337799700003],[-67.03164628799996,77.1461449240001],[-66.95140540299994,77.12995026200004],[-66.50894120999993,77.13361237200007],[-66.41185462099988,77.11444733300011],[-66.36192786399994,77.11615631700012],[-66.38320878799993,77.12327708500008],[-66.44058183499996,77.13361237200007],[-66.45128333199997,77.14411041900014],[-66.43529212099989,77.15281810100005],[-66.24616451699994,77.16404857000005],[-66.19762122299997,77.17572663000013],[-66.17007402299996,77.19867584800012],[-66.63683020699995,77.15399811400006],[-67.08882944766665,77.17800527533343],[-67.54082868833319,77.2020124366668],[-67.99282792899993,77.226019598],[-68.21597245999988,77.20579661699999],[-68.63892574799989,77.23153310750008],[-69.06187903599991,77.25726959800006],[-69.10285396999984,77.27440013200011],[-68.73617509649995,77.3256289735],[-68.36949622299994,77.376857815],[-67.90271969299987,77.38021474850015],[-67.4359431629999,77.38357168200002],[-67.10435950399994,77.36996084200008],[-66.77277584499987,77.35635000200013],[-66.50503495999992,77.27899811400015],[-66.26056881399992,77.25185781500011],[-66.22614498599998,77.25250885600018],[-66.19676673099988,77.26072825700008],[-66.24274654899995,77.28388092700011],[-66.4437556629999,77.29425690300012],[-66.49722245999993,77.31232330900002],[-66.5462133449999,77.33588288000009],[-66.58495032499994,77.36896393400012],[-66.60081946499989,77.376857815],[-66.59752356699994,77.38263580900015],[-66.66348222599987,77.4177920590001],[-66.58665930899994,77.43158600500011],[-66.20140540299991,77.42450592700008],[-66.12515214799996,77.43333567900011],[-66.0670466789999,77.46621328300002],[-66.0873103509999,77.47724030200006],[-66.09496008999994,77.47988515800016],[-66.08478756399998,77.48456452000006],[-66.05337480399996,77.4934756530001],[-66.06899980399993,77.50039297100001],[-66.10000566299996,77.50556061400003],[-66.11514238199996,77.51023997600014],[-66.12267005099991,77.5160179710001],[-66.1382950509999,77.53139883000013],[-66.14590410099996,77.53449127800012],[-66.19383704299986,77.53904857000008],[-66.21507727799992,77.545396226],[-66.23155676999991,77.55491771],[-66.21621660099986,77.56199778900005],[-66.18101966099991,77.564398505],[-66.16323808499992,77.56858958500011],[-66.19375566299986,77.57746002800017],[-66.29979407499994,77.57538483300006],[-66.26374264199998,77.58429596600008],[-66.24518795499998,77.5912539730001],[-66.24144446499994,77.59967682500003],[-66.25772050699987,77.6105817730001],[-66.2813207669999,77.6179059920001],[-66.48379472599994,77.63410065300015],[-66.58385169199991,77.657660223],[-66.59776770699996,77.66791413000014],[-66.61343339799996,77.67389557500015],[-66.68399003799993,77.671616929],[-66.72374426999991,77.68024323100018],[-66.71385657499991,77.69232819200009],[-66.68399003799993,77.7061221370001],[-66.66348222599987,77.71942780200011],[-66.72264563699989,77.7130394550001],[-66.84845943899995,77.68488190300012],[-67.14085852799988,77.67226797100012],[-67.1631973949999,77.6642113300001],[-67.14354407499988,77.65607330900018],[-67.1511124339999,77.639553127],[-67.18736731699994,77.60651276200007],[-67.21572831899995,77.58698151200015],[-67.25011145699992,77.57477448100009],[-67.59166419199997,77.52435944200006],[-67.97404944599987,77.51215241100009],[-68.35643469999987,77.49994538000011],[-68.39028886599993,77.50714752800006],[-68.37100175699989,77.54588450700007],[-68.37026933499988,77.56655508000009],[-68.39000403599991,77.57538483300006],[-68.42243404899992,77.57900625200001],[-68.52745520699989,77.60956452000015],[-68.64500891799989,77.66254303600009],[-68.68439693899998,77.66909414300007],[-68.72984778599997,77.66913483300006],[-68.8148087229999,77.65802643400004],[-68.60997473899991,77.56488678600009],[-68.59683183499993,77.5518252620001],[-68.59508216099994,77.53449127800012],[-68.61091061099998,77.5177269550001],[-68.63841712099992,77.50971100500006],[-68.93049068899992,77.48130931200002],[-69.22256425699993,77.4529076190001],[-69.5668567916666,77.487724785],[-69.91114932633326,77.52254195100015],[-70.2554418609999,77.55735911700013],[-70.27525794199991,77.56346263200011],[-70.28774980399993,77.57538483300006],[-70.25902258999987,77.57705312700007],[-70.20311438699991,77.59223053600006],[-69.99868730399993,77.624416408],[-69.87926184799994,77.62946198100003],[-69.71979732999995,77.6642113300001],[-69.63190670499989,77.66819896000008],[-69.51817786399991,77.68744538000011],[-69.49559485599985,77.70209381700012],[-69.52057857999995,77.73309967700006],[-69.47960364499993,77.75421784100017],[-69.5074763659999,77.76044342700011],[-69.54076087099989,77.75193919499999],[-69.60244706899991,77.72687409100008],[-69.7204483709999,77.7040062520001],[-69.99941972599994,77.69326406500006],[-70.01935787699995,77.68988678600006],[-70.06818600199995,77.67377350500009],[-70.37191728449989,77.67696767800014],[-70.67564856699993,77.68016185100011],[-70.70612545499989,77.69147370000007],[-70.68049068899992,77.70929596600014],[-70.36978105399992,77.77020905200006],[-70.26256262899994,77.81476471600014],[-70.21247311099995,77.82721588700014],[-70.17096920499995,77.82684967700006],[-70.14509029899995,77.82245514500006],[-69.99290930899986,77.82831452000012],[-69.97301184799997,77.83612702],[-70.07017981699997,77.8578148460001],[-70.2801000639999,77.84813060100012],[-70.37698320199988,77.86277903900005],[-70.41193600199998,77.86269765800014],[-70.45734615799998,77.857367255],[-70.54161536399997,77.83612702],[-70.64419511599993,77.78799062700016],[-70.67902584499987,77.78148021000005],[-70.9959203764999,77.77566152550007],[-71.3128149079999,77.76984284100013],[-71.42951412699988,77.79303620000017],[-71.43956458199996,77.79999420800009],[-71.42577063699986,77.81167226800007],[-71.40697180899991,77.81879303600012],[-71.24034583199997,77.8526065120001],[-71.21320553299994,77.870306708],[-71.25088456899994,77.88694896000005],[-71.31216386599993,77.888820705],[-71.37580318899992,77.88178131700015],[-71.47154700399997,77.86017487200014],[-71.52489173099991,77.85553620000012],[-71.63093014199988,77.86277903900005],[-71.59577389199993,77.89447663000003],[-71.5905655589999,77.90497467700008],[-71.59821529899995,77.92243073100003],[-71.61668860599987,77.9252383480001],[-71.80894934799989,77.907904364],[-71.85594641799992,77.89581940300009],[-71.9056697259999,77.88865794500005],[-71.95445716099991,77.89606354400004],[-72.04987545499992,77.92487213700015],[-72.14411373599992,77.93744538000006],[-72.24168860599994,77.9385440120001],[-72.23558508999994,77.95075104400009],[-72.23253333199995,77.9554710960001],[-72.22801673099991,77.95966217700011],[-72.33576412699995,78.00238678600012],[-72.35138912699995,78.01496002800003],[-72.34105383999994,78.02855052299999],[-72.3182673819999,78.04067617400007],[-72.29694576699987,78.04840729400007],[-72.29694576699987,78.05585358300006],[-72.58259029899995,78.06207916900003],[-72.60627193899995,78.06708405200006],[-72.65562903599994,78.09113190300009],[-72.67300370999992,78.09686920800006],[-72.75670325399994,78.10244375200007],[-72.78429114499997,78.10761139500008],[-72.85090084499987,78.14085521],[-72.89517167899989,78.15395742400015],[-73.05724036399991,78.15827057500015],[-73.02415930899986,78.178412177],[-72.98257402299987,78.18109772300006],[-72.89964758999989,78.17194245000009],[-72.8160701159999,78.176703192],[-72.73448645699989,78.19236888200008],[-72.75405839799987,78.20392487200009],[-72.8170466789999,78.21914297100007],[-72.8170466789999,78.22650788000006],[-72.78555253799988,78.22748444200015],[-72.75499426999993,78.23334381700009],[-72.76622473899994,78.23859284100016],[-72.77830969999985,78.24111562700008],[-72.79067949099988,78.24176666900003],[-72.80337480399996,78.24079010600015],[-72.77399654899995,78.24762604400016],[-72.70946204299989,78.24567291900003],[-72.67983964799993,78.25385163000013],[-72.68907630099991,78.25507233300006],[-72.69493567599994,78.25771719000015],[-72.7071833979999,78.26752350500009],[-72.66100012899989,78.291164455],[-72.59129798099994,78.29612864800005],[-72.46076412699993,78.28864166900009],[-72.50479081899994,78.30475495000015],[-72.85057532499994,78.315334377],[-72.8170466789999,78.322739976],[-72.8204646479999,78.32672760600018],[-72.82282467399995,78.3300641950001],[-72.82579505099993,78.33323802300008],[-72.83128821499989,78.33637116100014],[-72.82384192599991,78.35126373899999],[-72.81387285099993,78.3593610700001],[-72.8001195949999,78.3629417990001],[-72.7624405589999,78.36522044500008],[-72.64085852799985,78.39032623900005],[-72.60362708199997,78.40424225500014],[-72.58429928299995,78.42511627800009],[-72.65050208199992,78.43838125200013],[-72.67300370999992,78.43886953300002],[-72.65453040299991,78.45506419500008],[-72.58849036399988,78.46723053600005],[-72.57062740799992,78.48725006700012],[-72.60562089799993,78.48639557500003],[-72.62287350199992,78.48822663],[-72.63206946499989,78.49408600500014],[-72.63890540299991,78.50092194200006],[-72.59019934799989,78.52122630400004],[-72.26600094299991,78.53974030150012],[-71.94180253799993,78.5582542990001],[-71.55455481699994,78.64345937700007],[-71.21812903599991,78.642523505],[-71.11400305899991,78.62311432500017],[-70.86388098899991,78.61530182500007],[-70.83702551999991,78.61017487200017],[-70.81427975199998,78.59894440300017],[-70.80199133999992,78.598781643],[-70.7886449859999,78.61017487200017],[-70.79417883999992,78.61176178600003],[-70.80353756399995,78.61562734600001],[-70.80915279899993,78.61692942900011],[-70.78819739499991,78.647650458],[-70.79112708199992,78.65753815300012],[-70.80231686099995,78.678412177],[-70.74583899599992,78.69537995000015],[-70.48790442599991,78.717271226],[-70.4368790359999,78.72947825700008],[-70.37246660099993,78.72443268400002],[-70.31798255099991,78.73688385600015],[-69.9866837229999,78.75348541900011],[-69.96279863199993,78.76325104400013],[-69.97101803299992,78.770005601],[-69.9957169259999,78.773911851],[-70.02147376199994,78.77521393400018],[-69.96886145699992,78.79645416900017],[-69.90855872299997,78.80394114800013],[-69.43862870999993,78.80878327000003],[-69.35871334499993,78.79938385600009],[-69.33901933499988,78.80560944200015],[-69.3242081369999,78.81574127800009],[-69.25031490799992,78.84369538000013],[-69.20140540299994,78.85382721600008],[-69.17796790299985,78.86334870000007],[-69.1915583979999,78.87079498900006],[-69.16673743399986,78.87897370000017],[-69.1483455069999,78.880601304],[-69.0787654289999,78.8661563170001],[-69.01671301999997,78.86688873900006],[-68.98615475199995,78.86334870000007],[-68.91136633999986,78.83966705900015],[-68.88353430899988,78.83665599200008],[-68.78075110599988,78.83665599200008],[-68.80638587099995,78.846828518],[-68.86066646999988,78.85944245000009],[-68.88312740799998,78.87079498900006],[-68.88532467399997,78.87474192900005],[-68.88756262899994,78.88605377800003],[-68.89053300699987,78.89069245000015],[-68.90013587099995,78.8961449240001],[-68.91319739499994,78.90086497600011],[-68.92658443899992,78.90363190300015],[-68.93687903599994,78.90314362200017],[-68.96857662699992,78.89760976800015],[-69.14826412699992,78.91575755400005],[-69.17174231699991,78.92544179900001],[-69.14248613199996,78.94916413000011],[-69.10850989499994,78.96417877800015],[-69.03392493399988,78.98004791900017],[-68.5370580719999,79.02844879800007],[-68.04019120999996,79.07684967700008],[-67.75865637899992,79.038275458],[-67.67027747299997,79.05516185099998],[-67.73770097599987,79.06708405200014],[-67.74600175699993,79.07684967700008],[-67.73424231699997,79.08844635600009],[-67.71222896999987,79.09438711100002],[-67.52692623599995,79.1104190120001],[-67.4925837879999,79.10529205900008],[-67.47598222599993,79.10651276200012],[-67.47508704299995,79.11416250200013],[-67.48355058499988,79.11994049700012],[-67.49229895699995,79.12278880400005],[-67.50011145699995,79.12742747600008],[-67.50584876199991,79.13833242400015],[-67.22691809799997,79.11517975500003],[-67.17747962099992,79.11786530199998],[-67.18439693899992,79.12702057500015],[-67.19371497299994,79.13178131700006],[-67.21841386599993,79.13833242400015],[-67.19823157499991,79.14423248900009],[-67.19050045499989,79.14516836100016],[-67.1979060539999,79.15131256700015],[-67.18285071499989,79.15786367400013],[-67.16763261599989,79.15741608300011],[-67.13585364499993,79.15131256700015],[-67.12368730399996,79.15322500200001],[-67.1127009759999,79.15643952000006],[-67.10138912699992,79.15558502800015],[-67.08812415299991,79.14516836100016],[-67.09357662699992,79.143703518],[-67.10301673099985,79.13971588700004],[-67.10855058499996,79.13833242400015],[-67.07835852799985,79.11969635600015],[-67.0401098299999,79.115708726],[-67.00177975199996,79.12303294499999],[-66.97134355399993,79.13833242400015],[-66.9808650379999,79.15253327000006],[-66.96165930899986,79.15412018400009],[-66.93195553299992,79.1459414730001],[-66.90998287699992,79.13084544499998],[-66.91584225199995,79.12628815300003],[-66.9212947259999,79.11994049700012],[-66.92625891799985,79.11229075700008],[-66.93040930899987,79.10358307500009],[-66.88296464799987,79.11078522300012],[-66.79393469999988,79.14077383000007],[-66.74547278599991,79.14516836100016],[-66.78233801999995,79.1290550800001],[-66.82062740799988,79.11786530199998],[-66.79678300699993,79.10956452],[-66.76626542899987,79.11469147300012],[-66.70982825399994,79.136419989],[-66.6788630849999,79.14443594000012],[-66.58804277299993,79.14516836100016],[-66.57282467399995,79.14227936400012],[-66.54686438699986,79.128648179],[-66.53319251199991,79.12409088700004],[-66.51520748599998,79.12449778900003],[-66.48546301999997,79.13556549700007],[-66.4710994129999,79.13833242400015],[-66.36310787699998,79.14325592700011],[-66.32774817599997,79.13833242400015],[-66.33067786399988,79.1315778670001],[-66.33519446499994,79.11664459800006],[-66.33397376199991,79.11786530199998],[-66.33641516799985,79.10956452],[-66.3168025379999,79.10529205900008],[-66.27065995999988,79.10358307500009],[-66.18748938699991,79.11591217700014],[-66.1170955069999,79.10276927299999],[-65.97765051999988,79.10358307500009],[-65.99449622299987,79.11994049700012],[-66.01988684799991,79.12466054900001],[-66.04808508999989,79.12563711100007],[-66.07323157499988,79.13084544499998],[-65.81883704299995,79.12909577000009],[-65.78587805899988,79.13833242400015],[-65.84972083199989,79.13719310100011],[-65.88084876199989,79.1406110700001],[-65.89411373599992,79.14850495000009],[-65.90941321499989,79.15131256700015],[-65.8885798819999,79.16681549700014],[-65.85757402299987,79.17837148600006],[-65.69286048099988,79.20905182500017],[-65.66234290299985,79.22028229400007],[-65.67715410099993,79.2197940120001],[-65.69188391799992,79.22231679900001],[-65.70376542899986,79.22882721600011],[-65.71019446499989,79.24070872600005],[-65.6695043609999,79.25324127800013],[-65.62140865799991,79.2612165390001],[-65.54271399599995,79.260443427],[-65.51895097599991,79.26740143400018],[-65.53563391799989,79.27912018400015],[-65.55247962099989,79.2885195980001],[-65.53799394399994,79.29547760600018],[-65.48424231699997,79.30219147300012],[-65.47785396999987,79.30548737200014],[-65.47179114499994,79.3100446640001],[-65.46442623599995,79.31415436400005],[-65.45376542899993,79.31586334800006],[-65.44253495999993,79.31915924700009],[-65.42808997299997,79.33368561400013],[-65.41592363199987,79.33698151200018],[-65.27037512899997,79.35150788000011],[-65.23786373599998,79.36424388200008],[-65.18073482999992,79.37042877800003],[-65.15355383999992,79.37641022300015],[-65.13475501199986,79.39158763200014],[-65.14903723899992,79.39899323100002],[-65.12677975199989,79.41347890800007],[-65.07274329299992,79.42275625200013],[-65.04662024599995,79.43256256700006],[-65.06651770699995,79.43768952000006],[-65.08698482999992,79.44000885600003],[-65.05134029899995,79.46381256700012],[-64.92072506399998,79.485541083],[-64.85985266799989,79.50775788000006],[-64.83141028599994,79.52716705900015],[-64.8194473949999,79.55239492400013],[-64.81969153599997,79.57990143400013],[-64.82359778599997,79.59808991100013],[-64.83580481699994,79.61237213700004],[-64.86107337099989,79.628078518],[-64.8968399729999,79.64077383000007],[-64.97435462099989,79.64984772300006],[-65.0118708979999,79.65851471600016],[-64.98680579299989,79.67096588700018],[-64.93024654899996,79.68976471600003],[-64.90884355399993,79.70693594000006],[-64.96833248599995,79.7357852230001],[-65.03233801999994,79.75462474200013],[-65.0135798819999,79.76788971600014],[-64.96471106699991,79.77582428600012],[-64.94298255099994,79.78266022300012],[-65.00479081899994,79.79734935100012],[-65.03628495999993,79.80914948100009],[-65.05284583199992,79.82355377800017],[-64.99819902299996,79.82355377800017],[-64.99819902299996,79.82977936400012],[-65.0277400379999,79.82977936400012],[-65.1009008449999,79.84080638200008],[-65.12857011599988,79.850287177],[-65.10260982999989,79.85903554900015],[-64.99819902299996,79.864488023],[-65.00739498599992,79.87457916900013],[-65.04662024599995,79.89866771],[-65.00503495999988,79.91168854400017],[-65.01447506399998,79.92837148600002],[-64.99697831899994,79.94106679900007],[-64.94981848899994,79.96015045800006],[-64.97793535099993,79.98086172100007],[-65.07335364499997,80.00853099200008],[-65.04356848899994,80.02387116100012],[-64.69225012949991,80.05133698150011],[-64.34093176999997,80.078802802],[-64.12604732999988,80.14398834800004],[-64.0840551419999,80.14642975500006],[-63.908802863999966,80.13125234600005],[-63.814686652999846,80.13857656500005],[-63.778553839999915,80.15192291900017],[-64.14085852799988,80.15875885600009],[-64.15904700399994,80.16278717700006],[-64.17349199099989,80.17230866100006],[-64.18724524599992,80.18366120000002],[-64.20311438699986,80.1928571640001],[-64.17837480399987,80.22304922100004],[-64.17121334499984,80.23908112200012],[-64.18114173099994,80.24974192900014],[-64.20010331899994,80.25389232],[-64.22276770699992,80.25568268400013],[-64.24469967399992,80.25324127800002],[-64.26113847599993,80.24469635600012],[-64.26545162699992,80.23200104400014],[-64.26008053299998,80.21987539300015],[-64.25450598899997,80.21067942899998],[-64.25804602799994,80.2071800800001],[-64.29137122299994,80.19643789300007],[-64.33495032499985,80.14907461100012],[-64.36733964799996,80.13825104400014],[-64.38829505099991,80.13605377800015],[-64.47329667899993,80.10565827000009],[-64.92601477799985,80.07265859600012],[-65.3060603509999,80.09601471600001],[-65.45018469999984,80.05853913],[-65.86335201699991,80.01203034100014],[-66.06110592399997,80.02065664300015],[-66.09976152299991,80.03286367400013],[-66.13597571499994,80.056341864],[-66.17023678299992,80.07290273600016],[-66.25316321499992,80.08173248900012],[-66.31867428299995,80.10122304900001],[-66.37730872299989,80.10382721600011],[-66.40440833199992,80.10903554900001],[-66.41860917899993,80.11408112200003],[-66.43333899599992,80.11733633000006],[-66.44774329299989,80.1159528670001],[-66.5003962879999,80.08392975500011],[-66.55321204299989,80.07379791900014],[-67.0501195949999,80.06118398600007],[-67.08063717399992,80.07684967700006],[-67.05540930899988,80.08372630400005],[-67.06354732999998,80.09406159100016],[-67.10171464799996,80.11098867400015],[-67.12360592399997,80.125921942],[-67.12083899599992,80.1327985700001],[-67.08063717399992,80.14508698100015],[-67.1096899079999,80.14838288],[-67.16445878799992,80.16290924700003],[-67.19107011599996,80.16620514500006],[-67.27432206899991,80.15916575700003],[-67.46239173099988,80.1847191430001],[-67.50584876199991,80.2071800800001],[-67.49201412699992,80.21271393400012],[-67.47663326699997,80.21434153900013],[-67.44432532499988,80.21336497600005],[-67.47166907499994,80.22768789300014],[-67.45518958199993,80.23407623900006],[-67.44701087099995,80.23558177300009],[-67.43687903599988,80.23509349200013],[-67.4514867829999,80.24494049700014],[-67.46800696499989,80.25348541900017],[-67.48542232999995,80.259507554],[-67.51866614499994,80.26552969000008],[-67.51008053299994,80.27407461100002],[-67.47850501199986,80.28974030199998],[-67.45714270699989,80.30329010600015],[-67.44786536399994,80.3139102230001],[-67.45579993399991,80.32074616100003],[-67.48595130099991,80.32318756700015],[-67.45543372299989,80.34251536700008],[-67.32725989499994,80.36505768400015],[-67.28677324099993,80.36286041900013],[-67.26768958199993,80.366156317],[-67.20909583199989,80.38328685100014],[-67.19050045499989,80.385239976],[-67.1979060539999,80.385239976],[-67.16698157499985,80.38812897300002],[-67.03587805899988,80.41445547100012],[-66.91185462099989,80.45453522300015],[-66.78750566299996,80.46369049700003],[-66.77904212099992,80.46841054900013],[-66.76935787699995,80.47776927300008],[-66.75816809799994,80.48334381700009],[-66.72496497299994,80.48871491100014],[-66.71068274599995,80.49457428600009],[-66.71784420499998,80.49506256700005],[-66.72272701699995,80.49681224200008],[-66.72691809799989,80.49917226800004],[-66.7324112619999,80.50136953300002],[-66.72508704299992,80.50885651200018],[-66.71690833199992,80.514797268],[-66.70775305899991,80.51935455900006],[-66.69766191299996,80.52244700700014],[-66.75039628799996,80.5209007830001],[-66.77969316299988,80.52362702000006],[-66.79263261599988,80.53302643400018],[-66.78229732999998,80.546332098],[-66.75841223899991,80.552435614],[-66.45081539649993,80.58041006049997],[-66.14321855399987,80.60838450700014],[-66.10863196499989,80.61741771000005],[-66.09068762899992,80.63165924700014],[-66.08336341099991,80.64752838700016],[-66.07494055899987,80.66046784100008],[-66.05337480399996,80.66583893400006],[-65.78929602799997,80.66461823100002],[-65.52521725199989,80.66339752800012],[-65.49791419199991,80.67267487200014],[-65.68993079299989,80.69489166900003],[-65.70787512899992,80.70416901200018],[-65.69163977799988,80.71605052300013],[-65.62437903599994,80.7313500020001],[-65.37456214099996,80.7555402690001],[-65.12474524599986,80.77973053599999],[-65.07518469999994,80.79340241100012],[-65.05284583199992,80.80365631700015],[-65.05186926999994,80.80678945500013],[-65.05138098899994,80.81273021000005],[-65.05003821499986,80.81928131700012],[-65.04662024599995,80.82412344000004],[-65.04124915299988,80.82562897300006],[-65.01720130099994,80.82916901200007],[-65.00763912699998,80.83295319200006],[-64.99893144399988,80.83783600500014],[-64.99103756399992,80.84393952000012],[-64.98395748599995,80.8514671900001],[-65.03917395699997,80.87872955900018],[-65.01744544199991,80.8946800800001],[-64.97923743399994,80.90273672100012],[-64.77700761599993,80.90704987200003],[-64.73753821499989,80.91909414300012],[-64.74327551999994,80.92039622600014],[-64.75865637899989,80.92649974200013],[-64.7102758449999,80.94017161700008],[-64.76451575399994,80.94940827000012],[-64.7940567699999,80.95966217700006],[-64.80646725199992,80.97431061400005],[-64.78978430899988,80.99038320500013],[-64.75352942599997,80.99624258000007],[-64.51768958199995,81.00470612200002],[-64.43443762899992,81.02798086100013],[-64.24058997299987,81.02802155200011],[-64.11921139199995,81.048041083],[-63.92943274599988,81.05687083500005],[-63.82774817599991,81.1132673200001],[-63.72276770699992,81.13873932500012],[-63.67601477799994,81.143500067],[-63.65501868399989,81.149074611],[-63.5936580069999,81.15086497600002],[-63.507476365999935,81.13141510600008],[-63.43846594999991,81.09601471600008],[-63.428537563999896,81.05003489800013],[-63.39305579299992,81.02716705900004],[-63.30557206899996,80.95384349200002],[-63.248850063999896,80.92731354400003],[-63.06004798099988,80.87693919499999],[-63.02326412699989,80.85561758000013],[-62.99046790299988,80.82656484600015],[-62.953724738999874,80.80097077000006],[-62.859730597999935,80.7804629580001],[-62.81956946499994,80.764105536],[-62.7799373039999,80.75877513200014],[-62.736439581999974,80.78253815300003],[-62.755726691999904,80.78994375200013],[-62.84544837099995,80.79877350500009],[-62.866118943999965,80.80418528900012],[-62.87352454299986,80.81268952000005],[-62.85313880099997,80.82412344000004],[-62.89037024599987,80.83258698100015],[-62.9252009759999,80.84686920800006],[-62.989654100999864,80.88556549700009],[-63.02708899599992,80.90273672100012],[-63.15444902299993,80.93675364800005],[-63.18431555899991,80.95229726800015],[-63.323475714999915,81.06195709800005],[-63.33975175699996,81.08417389500012],[-63.33250891799992,81.10618724200005],[-63.34471594999991,81.121527411],[-63.36278235599991,81.13703034100011],[-63.37328040299991,81.15924713700015],[-63.198353644999884,81.19599030200006],[-63.14989173099988,81.21165599200013],[-62.976796027999846,81.22833893400015],[-62.83454342399997,81.226019598],[-62.764027472999885,81.21454498900006],[-62.48021399649991,81.20683421450009],[-62.19640051999994,81.19912344000012],[-61.85061601499987,81.12852610900016],[-61.54552161399988,81.06622955900016],[-61.5030818349999,81.0773786480001],[-61.53042558499987,81.09784577000006],[-61.50153561099995,81.10785553600006],[-61.37108313699985,81.11367422100001],[-61.31338456899991,81.12303294500005],[-61.07607988199993,81.12051015800003],[-61.04409745999993,81.13300202000012],[-60.99522864499994,81.14447663000009],[-60.9720759759999,81.14622630400007],[-60.964955206999946,81.14883047100007],[-60.95518958199989,81.16132233300009],[-60.94762122299994,81.16616445500016],[-60.935170050999936,81.16803620000002],[-60.892974412999905,81.16616445500016],[-60.939523891999926,81.18455638200001],[-61.03888912699992,81.20441315300012],[-61.085438605999855,81.22077057500003],[-61.15086829299992,81.25592682500009],[-61.181223110999895,81.27822500200013],[-61.201486782999886,81.30329010600003],[-61.19347083199994,81.30719635600012],[-61.172718878999945,81.31460195500001],[-61.16051184799988,81.31696198100015],[-61.29564368399991,81.3495954450001],[-61.31135006399998,81.36538320500016],[-61.29625403599996,81.37103913000014],[-60.83714758999991,81.45954010600015],[-60.802845831999946,81.47199127800017],[-60.77318274599991,81.49164459800012],[-60.78685462099986,81.50885651200015],[-60.841460740999906,81.52537669500013],[-60.94237219999988,81.54291413000009],[-60.99445553299993,81.5445010440001],[-61.023996548999975,81.54954661700013],[-61.03697669199997,81.56024811400006],[-61.03722083199992,81.57538483300006],[-61.04039466099988,81.58258698100009],[-61.0502009759999,81.586859442],[-61.19277910099993,81.62783437700001],[-61.25999915299986,81.66828034100014],[-61.34239661399988,81.68097565300012],[-61.37962805899989,81.70050690300009],[-61.386382615999906,81.72134023600007],[-61.454253709999904,81.7450218770001],[-61.43488521999989,81.76601797100012],[-61.411936001999884,81.77570221600008],[-61.281076626999976,81.81513092700007],[-60.90731767499997,81.86393870650012],[-60.53355872299997,81.91274648600007],[-60.48135331899996,81.91128164300012],[-60.43163001199985,81.91982656500014],[-60.381581183999856,81.92072174700003],[-60.33405514199995,81.930853583],[-60.06733150899987,81.94737376500015],[-59.7525935539999,81.92552317900011],[-59.605580206999925,81.8936221370001],[-59.37047278599994,81.89911530200014],[-59.10448157499991,81.88068268450014],[-58.83849036399994,81.86225006700006],[-58.79015051999994,81.84931061400006],[-58.768950975999964,81.82746002800012],[-58.75731360599995,81.7994652360001],[-58.72931881399993,81.786078192],[-58.69554602799993,81.77887604400014],[-58.666574673999946,81.76943594000015],[-58.7307022779999,81.75519440300006],[-58.75536048099988,81.73993561400009],[-58.75470943899995,81.71417877800003],[-58.727040167999945,81.69513580900004],[-58.68138587099992,81.68402741100012],[-58.31163489449992,81.6393496765],[-57.94188391799986,81.59467194199999],[-57.69554602799985,81.596380927],[-57.64492753799988,81.59129466399999],[-57.542307094999934,81.56268952],[-57.535959438999896,81.55662669500002],[-57.54185950399991,81.54291413000009],[-57.22166907499993,81.48843008000007],[-57.17878170499995,81.47524648600012],[-57.20030676999996,81.4658877620001],[-57.256662563999924,81.46605052300005],[-57.28115800699996,81.46100495000003],[-57.241363084999875,81.43602122600011],[-57.19082597599987,81.42499420800004],[-56.89614824099996,81.40656159100003],[-56.842600063999946,81.39500560100002],[-56.75426184799988,81.39264557500015],[-56.70885169199991,81.38495514500012],[-56.56948808499996,81.33966705900009],[-56.54124915299988,81.33592357000008],[-56.45254472599993,81.33808014500006],[-56.463734503999916,81.34861888200014],[-56.521473761999886,81.36538320500016],[-56.56456458199989,81.38886139500012],[-56.583159959999904,81.39427317900007],[-57.02904212099992,81.43170807500012],[-57.06554114499993,81.43976471600013],[-57.096831834999904,81.45351797100015],[-57.095326300999965,81.47614166900003],[-57.18000240799995,81.49933502800015],[-57.17198645699992,81.52240631700012],[-57.20059160099989,81.53424713700018],[-57.274322068999936,81.54848867400007],[-57.33336341099987,81.55329010600015],[-57.53433183499987,81.60911692900004],[-57.67853756399989,81.62262604400003],[-57.747547980999904,81.65094635600015],[-58.13776607999992,81.66697825700005],[-58.12938391799986,81.676662502],[-58.12474524599992,81.68008047100012],[-58.14732825399991,81.69546133000007],[-58.22716223899993,81.71417877800003],[-58.316517706999946,81.74896881700009],[-58.41576087099989,81.81565989800005],[-58.436146613999966,81.81940338700016],[-58.47419186099995,81.83087799700003],[-58.45836341099993,81.84393952],[-58.45750891799992,81.85993073100009],[-58.467925584999904,81.87352122600004],[-58.48595130099994,81.87929922100012],[-58.6170955069999,81.89329661699999],[-58.82237708199989,81.92902252800012],[-58.99176998599998,81.93317291900014],[-59.426625128999945,81.979681708],[-59.46788489499991,82.00283437700011],[-59.039397752999946,82.05402252800008],[-58.61091061099992,82.10521067900014],[-58.330148891999904,82.10521067900014],[-58.344471808999884,82.11953359600012],[-58.3128962879999,82.13035716400013],[-58.01307125549993,82.14883047100015],[-57.71324622299997,82.16730377800017],[-57.37142900299997,82.17804596550003],[-57.02961178299998,82.18878815300009],[-56.95262610599988,82.20758698100015],[-56.85985266799986,82.20416901200004],[-56.736398891999926,82.22516510600018],[-56.466460740999906,82.23554108300007],[-56.429269985999895,82.23016998900012],[-56.35513261599996,82.206488348],[-56.31602942599991,82.20140208500008],[-56.33503170499992,82.18984609600015],[-56.34276282499994,82.18716054900007],[-56.30752519399988,82.16644928600006],[-56.26146399599995,82.1659203150001],[-56.21495520699992,82.17780182500006],[-56.187408006999874,82.19537995000017],[-56.19762122299991,82.20888906500015],[-56.14476477799985,82.23554108300007],[-56.12633216099991,82.23997630400005],[-56.098378058999884,82.25861237200006],[-56.079213019999905,82.26288483300006],[-56.00914466099994,82.26414622600005],[-55.98643958199988,82.26288483300006],[-55.95889238199996,82.27277252800013],[-55.61526445249993,82.2611758485],[-55.2716365229999,82.24957916900003],[-55.25609290299991,82.24738190300003],[-55.241037563999896,82.24258047100015],[-55.2267146479999,82.23554108300007],[-55.24445553299989,82.22972239800013],[-55.266184048999975,82.22744375200016],[-55.28848222599989,82.22801341400013],[-55.327788865999906,82.23407623900012],[-55.33238684799994,82.23151276200012],[-55.32233639199998,82.2150739600001],[-55.322987433999906,82.2113304710001],[-55.32542883999986,82.20766836100013],[-55.32494055899988,82.2038434920001],[-55.316883917999945,82.19965241100009],[-55.30528723899991,82.19672272300006],[-55.1913142569999,82.18716054900007],[-55.13963782499985,82.16274648600005],[-55.112538214999915,82.15717194200012],[-55.092030402999875,82.17377350500009],[-55.10562089799992,82.18943919500005],[-55.2267146479999,82.2150739600001],[-55.17878170499989,82.22866445500007],[-55.164051886999914,82.23554108300007],[-55.20596269399991,82.25779857000013],[-55.255360480999876,82.27529531500008],[-55.307036912999905,82.28652578300007],[-55.35582434799991,82.29022858300011],[-55.57555091099988,82.27505117400013],[-55.602853969999956,82.28270091400007],[-55.566517706999974,82.29197825700011],[-55.34788977799988,82.2998721370001],[-55.25047766799992,82.32099030200003],[-54.845611131499936,82.34684886300012],[-54.44074459499989,82.37270742400013],[-54.09190833199992,82.32046133000011],[-54.07787024599989,82.31224192900014],[-54.065581834999925,82.30145905200011],[-54.046783006999874,82.29022858300011],[-54.01903235599988,82.28229401200015],[-53.959095831999946,82.27411530200006],[-53.931019660999965,82.26601797100011],[-53.887562628999916,82.24445221600003],[-53.84752356699988,82.2372093770001],[-53.83438066299993,82.23216380400005],[-53.80890865799992,82.21662018400015],[-53.750843878999945,82.19212474200013],[-53.71174068899989,82.18317291900009],[-53.68805904899989,82.17308177300013],[-53.6659236319999,82.15981679900001],[-53.65021725199995,82.15363190300003],[-53.626779751999976,82.14264557500017],[-53.576975063999896,82.12933991100006],[-53.557036912999905,82.11611562700001],[-53.553089972999906,82.10480377800003],[-53.55597896999995,82.07611725500009],[-53.55394446499991,82.06427643400012],[-53.59471594999987,82.04995351800012],[-53.61440995999993,82.03856028900007],[-53.622873501999976,82.02606842700006],[-53.613677537999905,82.01300690300017],[-53.59264075399997,82.00250885600012],[-53.55394446499991,81.98851146000005],[-53.51707923099985,81.96149323100008],[-53.503488735999895,81.936509507],[-53.50999915299991,81.91022370000015],[-53.56769771999993,81.83087799700003],[-53.58771725199992,81.81281159100011],[-53.61001542899996,81.80072663000003],[-53.716216600999864,81.76850006700006],[-53.76622473899991,81.74526601800012],[-53.77513587099995,81.738959052],[-53.77660071499989,81.7337914080001],[-53.77456620999987,81.72748444200005],[-53.773060675999915,81.71792226800007],[-53.779408331999946,81.7130394550001],[-53.821522589999915,81.70050690300009],[-53.78258216099991,81.68073151200018],[-53.77599036399994,81.67112864800002],[-53.793568488999966,81.66014232000005],[-53.78945878799993,81.65485260600015],[-53.78425045499991,81.64484284100008],[-53.77989661399994,81.63971588700015],[-53.80785071499986,81.58820221600008],[-53.80402584499995,81.56622955900018],[-53.79279537699995,81.55609772300012],[-53.682972785999965,81.52631256700003],[-53.613677537999905,81.51532623900006],[-53.47203528599988,81.50873444200009],[-53.55992591099993,81.52757396000011],[-53.65021725199995,81.53607819200015],[-53.65021725199995,81.54291413000009],[-53.48570716099991,81.55027903900007],[-53.46458899599992,81.56342194200012],[-53.495269334999904,81.576076565],[-53.5177302729999,81.59935130400011],[-53.55394446499991,81.65277741100014],[-53.54084225199995,81.67218659100014],[-53.52049719999988,81.68024323100009],[-53.464751756999874,81.68878815300012],[-53.271107550999886,81.76373932500015],[-53.08096269399988,81.79612864800008],[-53.04747473899993,81.81037018400016],[-53.0169164699999,81.8261579450001],[-52.94871985599988,81.8526878930001],[-52.93016516799989,81.86505768400012],[-52.930246548999946,81.88898346600008],[-52.93057206899987,81.90680573100015],[-52.93610592399991,81.92446523600006],[-52.94383704299992,81.94013092700014],[-52.953236456999946,81.95815664300007],[-52.967193162999905,81.97064850500009],[-53.00560462099992,81.99192942900005],[-53.023752407999915,82.00804271000011],[-53.01427161399991,82.02122630400008],[-52.99022376199988,82.03091054900013],[-52.9642634759999,82.03632233300009],[-52.92564856699994,82.03925202],[-52.77131100199995,82.03314850500011],[-52.71051998599992,82.018988348],[-52.51927649599989,82.00967031500015],[-52.38898678299992,81.98167552300013],[-52.18236243399994,81.97821686400012],[-52.12205969999991,81.96124909100013],[-52.11196855399993,81.9557966170001],[-52.05052649599986,81.94269440300015],[-51.71837317599991,81.92377350450018],[-51.38621985599988,81.90485260600012],[-51.089385545999875,81.85423411650015],[-50.79255123599997,81.80361562700013],[-50.73802649599989,81.78172435100011],[-50.28697669199988,81.724310614],[-50.23810787699989,81.70978424700014],[-50.22337805899991,81.70050690300009],[-50.22020423099994,81.691839911],[-50.21959387899997,81.66901276200018],[-50.21715247299994,81.66014232000005],[-50.20335852799994,81.64858633000001],[-50.184315558999934,81.64321523600016],[-49.92149817599994,81.61176178600014],[-49.613840298999946,81.64594147300012],[-49.83608964799993,81.65550364800009],[-49.871815558999856,81.66254303600009],[-49.89781653599994,81.676662502],[-49.89867102799985,81.68162669500006],[-49.897328253999945,81.68952057500006],[-49.89704342399992,81.69879791900009],[-49.901234503999945,81.70795319200008],[-49.91161048099985,81.71417877800003],[-49.927357550999915,81.71841054900015],[-50.21880042199996,81.75393301000004],[-50.51024329299992,81.78945547100001],[-50.641713019999884,81.83087799700003],[-50.641713019999884,81.83771393400006],[-50.62120520699991,81.84454987200014],[-50.645415818999936,81.85805898600013],[-50.676177537999905,81.86107005400014],[-50.73729407499987,81.85883209800006],[-50.890695766999954,81.878119208],[-51.06627356699994,81.93390534100008],[-51.03612219999991,81.95636627800009],[-50.63377844999991,81.92796458533338],[-50.23143469999994,81.8995628926668],[-49.82909094999985,81.8711612000001],[-49.75698808499993,81.88344961100015],[-49.651600714999915,81.885443427],[-49.47557532499985,81.92715078300012],[-49.4356990229999,81.92767975500011],[-49.464507615999906,81.94721100500003],[-49.836767815666576,82.0161400413334],[-50.20902801533322,82.08506907766677],[-50.58128821499989,82.15399811400015],[-50.731353318999936,82.21015045800006],[-50.75841223899988,82.23554108300007],[-50.792144334999875,82.29702383000016],[-50.80553137899997,82.3106957050001],[-50.814035610999895,82.341701565],[-50.84943600199991,82.36562734600007],[-51.04942786399994,82.43781159100016],[-51.06078040299991,82.44562409100014],[-51.05772864499991,82.45628489799999],[-51.06065833199992,82.4765485700001],[-51.082834438999896,82.47992584800012],[-51.103505011999914,82.48631419500005],[-51.12083899599992,82.49628327000012],[-51.10724850199995,82.50991445500007],[-50.68806718679991,82.49883860860014],[-50.268885871599934,82.48776276220012],[-49.8497045563999,82.47668691580016],[-49.43052324119994,82.46561106940014],[-49.011341925999886,82.454535223],[-48.914051886999914,82.43183014500013],[-48.78425045499995,82.37299225500009],[-48.73525956899987,82.3581403670001],[-48.36040876633331,82.31617530600015],[-47.98555796366662,82.2742102450001],[-47.61070716099993,82.23224518400004],[-47.56493079299992,82.2150739600001],[-47.57115637899989,82.2150739600001],[-47.557525193999936,82.208238023],[-47.580799933999856,82.19293854400006],[-47.60586503799996,82.18036530200006],[-47.56403561099992,82.16803620000009],[-47.23127193899995,82.17035553600005],[-47.23125072799206,82.17035320948581],[-46.823570658666625,82.12563711133335],[-46.41586937833321,82.08091868666683],[-46.008168097999906,82.03620026200012],[-45.96727454299985,82.01581452000012],[-46.00890051999994,81.99534739800008],[-45.99669348899994,81.98407623900009],[-45.98159745999993,81.97772858300014],[-45.964833136999914,81.9752871770001],[-45.948068813999896,81.97553131700015],[-45.97057044199991,81.9632022160001],[-46.024525519999905,81.96002838700004],[-46.0504451159999,81.95441315300003],[-46.02944902299987,81.94668203300013],[-45.92638098899993,81.9464378930001],[-45.66307532499996,81.90690745650008],[-45.39976966099991,81.86737702000009],[-45.378895636999914,81.85883209800006],[-45.34178626199991,81.83413320500007],[-45.327056443999936,81.83087799700003],[-45.30308997299996,81.829291083],[-45.24937903599991,81.81928131700003],[-45.172922329999885,81.7924665390001],[-45.15607662699989,81.78986237200003],[-44.782378709999875,81.77684153900013],[-44.7044571609999,81.7588565120001],[-44.662831183999934,81.75438060100014],[-44.631581183999884,81.76264069200012],[-44.68000240799995,81.77684153900013],[-44.65168209499993,81.78583405200006],[-44.302723761999886,81.814154364],[-44.2572322259999,81.83673737200017],[-44.22826087099992,81.83942291900014],[-44.17292232999992,81.83771393400006],[-44.23216712099991,81.84544505400005],[-44.355132615999935,81.84650299700012],[-44.41250566299988,81.85883209800006],[-44.39610755099997,81.86493561400015],[-44.37669837099986,81.866441148],[-44.337391730999855,81.86505768400012],[-44.35789954299992,81.86937083500011],[-44.40111243399991,81.87213776200018],[-44.41930091099991,81.87929922100012],[-44.39366614499994,81.88532135600003],[-44.38451087099995,81.88548411699999],[-44.44090735599991,81.89492422100001],[-44.55573482999992,81.887640692],[-44.61107337099992,81.89980703300007],[-44.59748287699995,81.90395742400001],[-44.57013912699989,81.90851471600014],[-44.55650794199994,81.91347890800002],[-44.5978083979999,81.92365143400013],[-44.687163865999906,81.92780182500009],[-44.72716223899994,81.94013092700014],[-44.6915583979999,81.94696686400006],[-44.51976477799985,81.93699778900006],[-44.501210089999944,81.94013092700014],[-44.49058997299991,81.94627513200011],[-44.474598761999914,81.96210358300006],[-44.460845506999895,81.96808502800017],[-44.51366126199986,81.98273346600007],[-44.884755011999886,81.97939687700016],[-44.92638098899994,81.99534739800008],[-44.905873175999886,82.00283437700011],[-44.912180141999926,82.01544830900012],[-44.9317927729999,82.03343333500005],[-44.94005286399988,82.04376862200014],[-44.728179490999906,82.04718659100017],[-44.39879309799994,82.10521067900014],[-44.50706946499989,82.10797760600009],[-44.564849412999905,82.11847565300017],[-44.65078691299993,82.15241120000012],[-44.780873175999915,82.18211497600004],[-44.7938533189999,82.19196198100015],[-44.787505662999905,82.20319245000013],[-44.70225989499991,82.25779857000013],[-44.56285559799996,82.293402411],[-44.23253333199992,82.31981028899997],[-43.94676673049992,82.29964834200014],[-43.66100012899989,82.27948639499999],[-43.6103409499999,82.26776764500012],[-43.17890377549992,82.26115550300014],[-42.7474666009999,82.25454336100007],[-42.71361243399994,82.24176666900004],[-42.71361243399994,82.24921295800011],[-42.70763098899991,82.24380117400007],[-42.678863084999875,82.23554108300007],[-42.686268683999884,82.23061758000001],[-42.690297003999945,82.22606028899999],[-42.69371497299994,82.22125885600018],[-42.69937089799993,82.2150739600001],[-42.302113410999965,82.2150739600001],[-42.32949785099993,82.23175690300015],[-42.702524380999904,82.26439036650004],[-43.07555091099988,82.29702383000016],[-43.17601477799994,82.27798086100016],[-43.235585089999944,82.27802155200006],[-43.53551184799994,82.3100039735],[-43.83543860599991,82.34198639500015],[-43.86432857999992,82.3533389340001],[-43.884877081999974,82.3727481140001],[-43.85033118399988,82.38987864800008],[-43.765736456999946,82.39765045800006],[-43.72720292899987,82.40688711100005],[-43.76402747299994,82.41889069200015],[-43.934152798999975,82.43341705900018],[-44.01964270699988,82.45148346600011],[-44.194935675999915,82.46352773600002],[-44.26870683499996,82.48216380400011],[-44.30907141799992,82.4877790390001],[-44.38027910099992,82.48879629099999],[-44.392730272999955,82.48843008000016],[-44.43455969999988,82.49506256700012],[-44.44050045499989,82.49823639500009],[-44.44469153599994,82.50324127800002],[-44.44782467399988,82.50787995000015],[-44.450306769999905,82.50991445500007],[-44.49596106699997,82.5150414080001],[-44.540842251999976,82.52521393400004],[-44.55577551999991,82.53290436400006],[-44.57689368399994,82.55402252800017],[-44.59243730399993,82.56264883000007],[-44.70494544199991,82.5812035180001],[-44.7892146479999,82.58441803600014],[-44.811390753999945,82.58771393400018],[-44.854115363999966,82.60219961100003],[-44.8751521479999,82.60553620000013],[-44.91954505099994,82.60651276200004],[-45.00914466099991,82.61888255400008],[-45.09829667899996,82.64960358300006],[-45.29271399599989,82.67853424700014],[-45.3828832669999,82.68195221600017],[-45.66274980399993,82.72614166900014],[-45.74421139199998,82.7535667990001],[-45.76927649599988,82.769964911],[-45.74644934799997,82.77700429900007],[-45.47331702399986,82.78032054250015],[-45.20018469999988,82.78363678600014],[-45.09434973899988,82.79791901200004],[-45.01402747299997,82.78530508000016],[-44.961415167999945,82.76886627800013],[-44.475887281833224,82.7667775193335],[-43.99035939566658,82.76468876066674],[-43.504831509499894,82.76260000200001],[-43.01930362333326,82.76051124333345],[-42.533775737166536,82.75842248466681],[-42.04824785099993,82.75633372600005],[-42.1451716789999,82.72793203300013],[-42.17178300699993,82.7085635440001],[-41.89915930899991,82.67129140800012],[-41.86107337099995,82.66095612200003],[-41.8290909499999,82.6416690120001],[-41.80125891799989,82.61172109600012],[-41.865345831999946,82.57416413000011],[-41.873036261999886,82.55499909100014],[-41.8353572259999,82.53725820500016],[-41.81297766799986,82.53058502800009],[-41.795643683999884,82.52313873900012],[-41.737538214999915,82.48973216400005],[-41.72345943899998,82.48427969000002],[-41.709055141999926,82.48200104400014],[-41.61473548099994,82.47968170800009],[-41.58897864499991,82.48883698100015],[-41.55549068899995,82.53351471600001],[-41.584706183999884,82.55329010600005],[-41.640248175999936,82.57037995000009],[-41.673898891999954,82.58539459800004],[-41.637359178999894,82.59870026200004],[-41.65099036399994,82.60553620000013],[-41.61583411399988,82.63666413000006],[-41.631459113999966,82.653265692],[-41.719309048999946,82.67438385600012],[-41.775949673999946,82.70477936400009],[-41.82380123599995,82.71063873900012],[-41.89806067599997,82.728989976],[-41.86587480399993,82.74754466399999],[-41.81847083199989,82.75291575700005],[-41.57754472599996,82.74730052300005],[-41.50877844999988,82.732367255],[-41.25755774599992,82.71173737200017],[-41.20938066299996,82.70083242400001],[-41.17739824099996,82.68060944200009],[-41.1849259109999,82.67438385600012],[-40.74974524599992,82.61676666900014],[-40.630848761999935,82.57514069200009],[-40.52440344999987,82.57318756700015],[-40.22760982999995,82.56753164300015],[-40.20759029899989,82.56134674700017],[-40.21849524599986,82.55023834800015],[-40.20368404899989,82.53782786700013],[-40.12291419199988,82.50991445500007],[-40.00560462099992,82.48883698100015],[-40.02928626199985,82.47626373900006],[-40.06065833199989,82.46564362200003],[-40.08360755099988,82.45123932500013],[-40.08189856699988,82.42739492400007],[-40.054798956999946,82.41205475500011],[-39.924305792999945,82.38641998900006],[-39.9266658189999,82.38263580900004],[-39.9310603509999,82.3727481140001],[-39.804107225999864,82.36176178600006],[-39.76939856699991,82.37588125200001],[-39.75597083199992,82.39594147300005],[-39.762603318999965,82.41030508000013],[-39.781971808999884,82.42023346600004],[-39.806996222999885,82.42739492400007],[-39.859486456999946,82.43537018400004],[-39.87767493399994,82.44599030200008],[-39.875884568999936,82.4683291690001],[-39.85594641799985,82.482611395],[-39.759144660999965,82.5024274760001],[-39.779896613999966,82.51239655200011],[-39.862172003999916,82.516750393],[-39.963734503999916,82.53888580900018],[-39.99583899599988,82.55272044499999],[-40.00951087099992,82.56354401200015],[-40.00934811099995,82.57444896000005],[-39.99583899599988,82.58344147300006],[-39.97691809799997,82.59113190300009],[-39.957102016999954,82.59662506700012],[-39.901844855999855,82.60455963700018],[-39.880441860999895,82.61107005400008],[-39.86900794199994,82.6191266950001],[-39.869984503999916,82.63141510600015],[-39.87987219999994,82.642482815],[-39.90379798099988,82.66010163000011],[-39.907460089999944,82.66583893400009],[-39.908762173999946,82.67157623900006],[-39.91209876199988,82.67715078300007],[-39.92210852799985,82.68256256700012],[-39.953114386999886,82.693060614],[-40.317209438999924,82.73069896],[-40.57945716099993,82.71698639500006],[-40.81240800699993,82.75454336100007],[-40.92756100199997,82.75958893400009],[-40.97655188699994,82.77435944200009],[-41.4426773752499,82.7845370543751],[-41.90880286349994,82.79471466675001],[-42.374928351749894,82.80489227912501],[-42.841053839999944,82.81506989150002],[-43.3071793282499,82.82524750387502],[-43.773304816499945,82.83542511625002],[-44.2394303047499,82.84560272862505],[-44.70555579299985,82.85578034100014],[-44.768137173999975,82.86619700700014],[-44.83112545499989,82.88947174700014],[-45.06297766799994,82.91331614800013],[-45.06297766799994,82.90717194200015],[-44.864979620999854,82.87238190300009],[-44.864979620999854,82.86619700700014],[-44.96629798099991,82.84503815300002],[-45.3003433909999,82.86127350450012],[-45.634388800999915,82.87750885600012],[-45.67992102799988,82.87238190300009],[-45.66755123599992,82.86298248900009],[-45.66173255099997,82.86041901200015],[-45.65265865799998,82.85871002800015],[-45.65265865799998,82.85195547100012],[-45.97443600199992,82.84284088700004],[-46.03254146999995,82.85028717700011],[-46.09483801999994,82.84882233300006],[-46.15208899599989,82.86009349200005],[-46.557525193999965,82.89288971600014],[-46.553618943999965,82.90013255400008],[-46.54735266799992,82.9061546900001],[-46.53917395699992,82.91058991100006],[-46.52965247299991,82.91331614800013],[-46.572987433999884,82.9233259140001],[-46.75495357999998,82.939398505],[-46.846994594999956,82.959662177],[-46.8927302729999,82.96181875200001],[-46.84520423099988,82.97601959800004],[-46.413400845499865,82.94843170750015],[-45.98159745999993,82.92084381700009],[-46.22557532499987,82.98143138200005],[-46.70091712099989,83.00275299700003],[-46.68028723899994,83.01870351800011],[-46.64224199099996,83.02431875200013],[-46.51618404899991,83.02147044500002],[-46.50023352799991,83.029201565],[-46.509144660999965,83.05117422100012],[-46.43000240799998,83.06207916900009],[-46.11082923099994,83.06220123900006],[-46.077748175999886,83.07782623900005],[-46.04039466099994,83.096625067],[-45.970692511999886,83.09650299700003],[-45.900054490999906,83.08510976800007],[-45.78477942599988,83.05353424700017],[-45.45323645749997,83.02057526250013],[-45.12169348899994,82.98761627800003],[-45.07721920499995,82.96181875200001],[-45.09032141799992,82.95425039300015],[-45.10431881399995,82.948431708],[-45.11156165299991,82.94245026200018],[-45.105091925999886,82.93508535400018],[-44.73460852799994,82.96857330900004],[-44.32816864066651,82.95286692900015],[-43.92172875333321,82.93716054900001],[-43.515288865999906,82.92145416900014],[-43.487049933999934,82.91331614800013],[-43.487538214999944,82.91718170800011],[-43.48680579299991,82.91982656500012],[-43.48534094999994,82.92064036700013],[-43.45567786399991,82.91693756700009],[-43.36351477799994,82.92084381700009],[-43.36351477799994,82.92706940300006],[-43.80274410724991,82.95447418825003],[-44.241973436499904,82.98187897350003],[-44.68120276574995,83.00928375875019],[-45.12043209499993,83.03668854400017],[-45.1321915359999,83.04319896000008],[-45.11823482999995,83.05117422100012],[-45.1387426419999,83.05613841399999],[-45.17979895699992,83.05536530200006],[-45.20018469999988,83.05801015800013],[-45.20116126199986,83.06061432500003],[-45.19994055899994,83.06525299700014],[-45.199818488999966,83.06972890800013],[-45.20384680899994,83.07160065300008],[-45.21174068899992,83.07257721600017],[-45.22716223899994,83.07689036700008],[-45.328480597999885,83.08185455900012],[-45.48566646999993,83.1108259140001],[-45.518422003999945,83.12274811400006],[-45.516021287999905,83.13646067899998],[-45.486398891999954,83.14691803600006],[-45.446156378999945,83.15534088700012],[-45.406564907999915,83.15859609600007],[-45.378895636999914,83.15355052300013],[-45.40135657499994,83.14911530200006],[-45.40119381399995,83.140326239],[-45.386301235999916,83.13133372600008],[-45.36461341099994,83.12620677300005],[-45.22765051999994,83.13605377800017],[-45.15379798099991,83.162339585],[-45.13121497299994,83.1670596370001],[-45.11270097599993,83.16498444200009],[-45.07721920499995,83.15355052300013],[-44.72435462099992,83.1049258480001],[-44.68000240799995,83.11261627800009],[-44.69758053299989,83.11847565300015],[-44.71410071499989,83.12620677300005],[-44.69302324099996,83.12775299700009],[-44.6725154289999,83.13304271000008],[-44.6725154289999,83.13996002800017],[-44.692616339999944,83.13983795799999],[-44.71104895699997,83.14301178600006],[-44.74767005099991,83.15355052300013],[-44.705922003999966,83.17194245000017],[-44.64688066299993,83.17511627800003],[-44.19727535699988,83.15066152550004],[-43.74767005099994,83.12620677300005],[-43.75454667899993,83.12620677300005],[-43.733143683999884,83.12140534100017],[-43.698475714999915,83.11741771],[-43.66624915299988,83.11871979400009],[-43.65208899599995,83.12970612200014],[-43.63780676999994,83.13597239800002],[-43.24400794199988,83.11776357649995],[-42.85020911399994,83.09955475500011],[-42.87938391799989,83.11029694200015],[-43.253244595333285,83.14085521033341],[-43.6271052726666,83.17141347866676],[-44.00096594999991,83.20197174700003],[-43.63103864966652,83.20404694233346],[-43.26111134933325,83.2061221376668],[-42.891184048999946,83.20819733300009],[-42.891184048999946,83.21564362200014],[-43.03945878799993,83.21173737200013],[-43.082915818999965,83.22247955900016],[-42.97988847599993,83.22866445500013],[-42.97988847599993,83.23607005400014],[-43.32258053299992,83.23607005400014],[-43.32258053299992,83.24290599200005],[-43.266428188999896,83.24506256700015],[-43.248117641999926,83.24974192900007],[-43.25715084499995,83.25511302300013],[-43.26109778599993,83.25665924700017],[-43.26109778599993,83.26341380400011],[-42.96347001899991,83.27230459200014],[-42.66584225199989,83.28119538],[-42.51158606699988,83.25112539300015],[-42.48029537699992,83.23948802300005],[-42.4354548819999,83.22894928600007],[-42.117298956999946,83.24249909100014],[-42.023508266999954,83.22455475499999],[-41.92398027299987,83.21759674700012],[-41.835845506999874,83.19794342700006],[-41.74071204299989,83.19464752800012],[-41.70567786399991,83.174017645],[-41.88329016799989,83.122992255],[-41.931548631999924,83.09210846600014],[-41.66954505099994,83.13996002800017],[-41.36510169199991,83.11884186400006],[-41.12486731699991,83.06191640800013],[-41.02013098899994,83.0546735700001],[-40.73867753799988,83.00531647300012],[-40.69029700399997,82.98651764500009],[-40.2727351549999,82.97828468066679],[-39.855173305999955,82.9700517163334],[-39.43761145699997,82.96181875200001],[-39.00568600199995,82.9003360050001],[-39.012806769999884,82.897406317],[-39.02647864499991,82.88922760600009],[-39.03359941299988,82.88605377800003],[-39.0045059889999,82.85569896000005],[-38.96080481699991,82.8360863300001],[-38.868763800999915,82.81289297100007],[-38.67955481699991,82.79262929900015],[-38.642567511999886,82.769964911],[-38.65217037699995,82.76439036699998],[-38.6510310539999,82.75861237200003],[-38.64403235599994,82.75336334800015],[-38.635731574999845,82.74949778900005],[-38.61510169199994,82.74599844000015],[-38.59089107999992,82.74762604400016],[-38.54637610599994,82.75633372600005],[-38.601633266999954,82.77619049700013],[-38.5853572259999,82.78558991100009],[-38.567005988999966,82.79376862200009],[-38.49449622299994,82.81549713700015],[-38.48033606699991,82.82151927300008],[-38.47740637899989,82.83144765800007],[-38.642567511999886,82.82461172100015],[-38.74331620999996,82.83417389500013],[-38.76716061099992,82.847398179],[-38.779123501999976,82.85195547100012],[-38.78014075399994,82.85773346600008],[-38.78652910099996,82.86619700700014],[-38.78331458199989,82.89907461100002],[-38.8248591789999,82.91657135600018],[-38.91633053299992,82.93447500200013],[-38.9094945949999,82.93447500200013],[-38.93724524599989,82.94537995000012],[-39.00926673099991,82.948391018],[-39.124582485999916,82.971380927],[-39.14964758999991,82.98224518400016],[-39.12779700399997,82.99530670800006],[-39.09968014199998,83.00372955900009],[-38.64278113499997,83.00519440275004],[-38.185882127999946,83.00665924650018],[-37.72898312099994,83.00812409025012],[-37.27208411399994,83.00958893400006],[-37.31615149599995,83.01752350500011],[-37.40660559799991,83.01862213700015],[-37.59508216099988,83.0414085960001],[-37.98311655766662,83.0431311436667],[-38.371150954333245,83.04485369133334],[-38.7591853509999,83.04657623900009],[-38.80089270699992,83.05801015800013],[-38.7832738919999,83.06777578300007],[-38.321034308749944,83.08612702000012],[-37.858794725499905,83.104478257],[-37.39655514224995,83.12282949400004],[-36.93431555899991,83.14118073100008],[-36.88101152299993,83.15355052300013],[-36.90208899599986,83.16022370000009],[-37.26520748599992,83.15688711150001],[-37.6283259759999,83.15355052300013],[-37.54820716099994,83.16014232000009],[-37.52529863199993,83.16787344000004],[-37.588368292999945,83.17837148600007],[-37.908924933999856,83.18768952000012],[-37.99742591099988,83.18073151200004],[-38.026193813999924,83.18768952000012],[-37.962554490999935,83.19464752800012],[-37.943674282999915,83.20197174700003],[-38.2313533194999,83.20197174700003],[-38.519032355999855,83.20197174700003],[-38.68342037699992,83.20840078300013],[-38.710194464999915,83.21906159100017],[-38.73216712099995,83.23175690300003],[-38.86168372299996,83.25665924700017],[-38.831654425999915,83.26972077000015],[-38.79552161399988,83.27562083500008],[-38.72447669199991,83.27708567900014],[-38.731516079999885,83.28701406500015],[-38.73973548099988,83.29474518400015],[-38.74909420499992,83.30052317900011],[-38.75926673099988,83.3043887390001],[-38.74400794199991,83.30817291900014],[-38.71279863199993,83.31220123900012],[-38.69713294199994,83.31183502800008],[-38.69713294199994,83.31806061400005],[-38.72801673099991,83.318833726],[-38.76561438699988,83.32501862200014],[-38.80162512899994,83.33641185100011],[-38.82750403599988,83.3528506530001],[-38.821156378999945,83.35651276200015],[-38.80089270699992,83.37270742400001],[-38.78612219999985,83.37995026200004],[-38.73814856699993,83.39374420800014],[-38.80500240799998,83.40680573100012],[-38.868478969999984,83.42731354400017],[-38.83910071499988,83.4362653670001],[-38.798410610999895,83.43984609600007],[-38.75719153599994,83.438462632],[-38.690297003999916,83.425482489],[-38.25167802649989,83.3925031595001],[-37.813059048999946,83.35952383000016],[-37.738189256999874,83.37270742400001],[-37.81163489499997,83.40350983300009],[-37.98281816299996,83.41339752800009],[-38.05968176999997,83.43475983300006],[-38.02383378799996,83.44310130400011],[-37.91637122299994,83.45522695500001],[-37.92454993399994,83.46747467700008],[-37.935129360999895,83.47606028900002],[-37.94831295499995,83.48094310100008],[-37.964182094999956,83.48191966400005],[-37.9156794909999,83.498928127],[-37.58543860599991,83.50804271],[-37.19957434799991,83.47134023600007],[-36.813710089999915,83.43463776200018],[-36.7649633449999,83.42047760600015],[-36.72350012899989,83.39842357000008],[-36.704335089999915,83.39264557500009],[-36.449777798999946,83.36176178600013],[-36.40184485599994,83.37270742400001],[-36.59984290299991,83.39374420800014],[-36.60920162699995,83.40493398600016],[-36.636830206999946,83.41156647300012],[-36.696115688999924,83.41425202],[-36.647694464999944,83.42841217700011],[-36.48375403599988,83.43475983300006],[-36.53547115799989,83.45115794500005],[-36.85708574099987,83.48053620000015],[-36.90147864499991,83.49616120000006],[-36.78563391799992,83.49433014500006],[-36.750721808999884,83.50360748900012],[-36.76610266799992,83.50800202],[-36.78164628799993,83.50975169500002],[-36.81338456899988,83.50983307500016],[-36.78734290299991,83.52802155200008],[-36.73859615799989,83.53803131700015],[-36.24026445233326,83.53774648633335],[-35.741932746666606,83.53746165566675],[-35.24360104099989,83.53717682500013],[-34.973032192999874,83.57160065300017],[-34.7024633449999,83.60602448100012],[-34.67715410099987,83.60358307500016],[-34.62852942599991,83.59162018400013],[-34.606190558999884,83.58218008000013],[-34.58999589799993,83.57160065300017],[-34.57787024599995,83.56085846600017],[-34.564361131999874,83.55145905200014],[-34.54409745999995,83.5446231140001],[-34.52122962099995,83.54218170799999],[-34.49836178299995,83.54368724200005],[-34.47765051999994,83.549017645],[-34.46157792899996,83.55829498900006],[-34.45238196499989,83.57005442900014],[-34.44896399599989,83.58022695500009],[-34.44196529899989,83.58909739800013],[-34.422108527999875,83.59731679900013],[-34.39631100199995,83.60162995000003],[-34.362904425999886,83.60293203300013],[-34.33067786399994,83.59926992400007],[-34.30825761599993,83.58860911700005],[-34.30260169199994,83.57697174700004],[-34.300892706999946,83.564642645],[-34.29503333199989,83.55483633000016],[-34.25243079299986,83.54661692900008],[-34.20848548099991,83.52830638200001],[-33.94505774599989,83.48505280200011],[-33.93976803299992,83.47573476800005],[-33.93614661399994,83.46629466400005],[-33.92406165299985,83.46206289300012],[-33.8304744129999,83.46198151200015],[-33.784331834999875,83.46967194200006],[-33.74278723899991,83.489406643],[-33.78722083199992,83.50031159100008],[-34.00743567599994,83.52936432500013],[-34.049549933999906,83.54205963700012],[-34.08543860599991,83.5650902360001],[-34.08039303299995,83.568060614],[-34.07188880099994,83.57135651200004],[-34.01146399599992,83.58759186400009],[-33.631276007749875,83.59921906125008],[-33.25108801949994,83.61084625850005],[-32.8709000312499,83.62247345575004],[-32.49071204299985,83.6341006530001],[-32.40758216099991,83.6189639340001],[-32.207875128999916,83.61347077]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Saint Kitts and Nevis","sov_a3":"KNA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saint Kitts and Nevis","adm0_a3":"KNA","geou_dif":0,"geounit":"Saint Kitts and Nevis","gu_a3":"KNA","su_dif":0,"subunit":"Saint Kitts and Nevis","su_a3":"KNA","brk_diff":0,"name":"St. Kitts and Nevis","name_long":"Saint Kitts and Nevis","brk_a3":"KNA","brk_name":"Saint Kitts and Nevis","brk_group":null,"abbrev":"St.K.N.","postal":"KN","formal_en":"Federation of Saint Kitts and Nevis","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"St. Kitts and Nevis","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":40131,"gdp_md_est":777.7,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"SC","iso_a2":"KN","iso_a3":"KNA","iso_n3":"659","un_a3":"659","wb_a2":"KN","wb_a3":"KNA","woe_id":23424940,"woe_id_eh":23424940,"woe_note":"Exact WOE match as country","adm0_a3_is":"KNA","adm0_a3_us":"KNA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":19,"long_len":21,"abbrev_len":7,"tiny":4,"homepart":1,"filename":"KNA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-62.547596808999884,17.104641018000123],[-62.56574459499986,17.100531317000062],[-62.61217200399994,17.10415273600013],[-62.626372850999964,17.140692450000174],[-62.61864173099994,17.182806708000115],[-62.599232550999915,17.20294830900015],[-62.57843990799995,17.202541408000158],[-62.56037350199992,17.196722723],[-62.54649817599994,17.18378327],[-62.53844153599991,17.161932684000146],[-62.53726152299986,17.152899481000148],[-62.53677324099988,17.12970612200003],[-62.53844153599991,17.120998440000122],[-62.54356848899991,17.108872789000046],[-62.547596808999884,17.104641018000123]]],[[[-62.695464647999955,17.333238023000106],[-62.67813066299987,17.292222398000106],[-62.66685950399997,17.27350495000006],[-62.650461391999954,17.265611070000162],[-62.63683020699992,17.258205471000096],[-62.62482662699991,17.241848049000065],[-62.62474524599992,17.225287177],[-62.64704342399994,17.217189846000068],[-62.65973873599992,17.225490627000156],[-62.670480923999946,17.26316966400013],[-62.69029700399994,17.27496979400011],[-62.70335852799994,17.289129950000028],[-62.712554490999906,17.292303778000086],[-62.7440486319999,17.290594794000086],[-62.75694739499994,17.292303778000086],[-62.78872636599987,17.304673570000134],[-62.831613735999944,17.33014557500003],[-62.861073370999925,17.362290757],[-62.85313880099997,17.39472077000009],[-62.849232550999965,17.398138739],[-62.84654700399988,17.39996979400017],[-62.84357662699997,17.401068427000112],[-62.83885657499987,17.40216705900015],[-62.82664954299988,17.407171942],[-62.8223363919999,17.410101630000113],[-62.81956946499994,17.415838934000092],[-62.71996008999989,17.358547268000066],[-62.695464647999955,17.333238023000106]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Saint Lucia","sov_a3":"LCA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saint Lucia","adm0_a3":"LCA","geou_dif":0,"geounit":"Saint Lucia","gu_a3":"LCA","su_dif":0,"subunit":"Saint Lucia","su_a3":"LCA","brk_diff":0,"name":"Saint Lucia","name_long":"Saint Lucia","brk_a3":"LCA","brk_name":"Saint Lucia","brk_group":null,"abbrev":"S.L.","postal":"LC","formal_en":"Saint Lucia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"St. Lucia","name_alt":null,"mapcolor7":3,"mapcolor8":4,"mapcolor9":3,"mapcolor13":4,"pop_est":160267,"gdp_md_est":1778,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"ST","iso_a2":"LC","iso_a3":"LCA","iso_n3":"662","un_a3":"662","wb_a2":"LC","wb_a3":"LCA","woe_id":23424951,"woe_id_eh":23424951,"woe_note":"Exact WOE match as country","adm0_a3_is":"LCA","adm0_a3_us":"LCA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":4,"tiny":4,"homepart":1,"filename":"LCA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-60.886789516999926,14.010077216000113],[-60.882964647999934,13.980617580000043],[-60.88304602799991,13.954413153000104],[-60.89509029899991,13.87734609600004],[-60.89220130099997,13.833197333000058],[-60.90461178299992,13.78424713700008],[-60.90729732999998,13.77732982000009],[-60.910308397999906,13.776109117000074],[-60.92284094999987,13.772691148000064],[-60.92711341099991,13.769924221000094],[-60.931752081999925,13.76032135600012],[-60.940785285999944,13.722113348000065],[-60.9470108709999,13.716294664000102],[-60.95010331899987,13.714667059000092],[-60.955067511999935,13.714667059000092],[-60.973378058999884,13.738999742000061],[-61.04816646999989,13.76732005400001],[-61.06493079299992,13.786932684000064],[-61.06810462099989,13.792181708000056],[-61.07420813699985,13.798732815000037],[-61.07811438699986,13.806301174000083],[-61.071156378999966,13.82196686400006],[-61.07005774599991,13.8320987000001],[-61.071156378999966,13.851792710000053],[-61.07274329299988,13.858221747000073],[-61.07559160099993,13.86326732000009],[-61.07811438699986,13.869614976000037],[-61.078521287999955,13.87978750200007],[-61.075917120999854,13.890366929000038],[-61.06688391799985,13.909002997000115],[-61.06493079299992,13.917303778000088],[-61.059478318999965,13.931219794000071],[-61.035552537999905,13.964911200000074],[-61.02660071499989,13.987372137000078],[-61.002268032999915,14.023138739000103],[-60.9970596999999,14.027167059000064],[-60.98729407499988,14.032538153000118],[-60.98232988199993,14.037339585000026],[-60.97996985599988,14.043524481000077],[-60.976063605999876,14.061183986000088],[-60.9720759759999,14.068101304000095],[-60.94762122299994,14.102280992000088],[-60.93346106699993,14.111883856000063],[-60.9141332669999,14.105698960000097],[-60.91860917899987,14.088446356000091],[-60.91193600199992,14.079494533000059],[-60.90103105399992,14.073391018000066],[-60.892974412999905,14.064683335000081],[-60.890207485999944,14.052232164000072],[-60.886789516999926,14.010077216000113]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Saint Martin","adm0_a3":"MAF","geou_dif":0,"geounit":"Saint Martin","gu_a3":"MAF","su_dif":0,"subunit":"Saint Martin","su_a3":"MAF","brk_diff":0,"name":"St-Martin","name_long":"Saint-Martin","brk_a3":"MAF","brk_name":"Saint-Martin","brk_group":null,"abbrev":"St. M.","postal":"MF","formal_en":"Saint-Martin (French part)","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"St. Martin (French part)","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":36661,"gdp_md_est":449,"pop_year":2008,"lastcensus":-99,"gdp_year":1999,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":0,"fips_10_":"RN","iso_a2":"MF","iso_a3":"MAF","iso_n3":"663","un_a3":"663","wb_a2":"MF","wb_a3":"MAF","woe_id":56042305,"woe_id_eh":56042305,"woe_note":"Exact WOE match as country","adm0_a3_is":"MAF","adm0_a3_us":"MAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":9,"long_len":12,"abbrev_len":6,"tiny":4,"homepart":-99,"filename":"MAF.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-63.0175685850526,18.033391472135662],[-63.0858861909999,18.058511251000112],[-63.107004360999916,18.0621092720001],[-63.107004360999916,18.06211985900009],[-63.107004360999916,18.066961981000077],[-63.1153051419999,18.065375067000048],[-63.13052324099987,18.060248114000018],[-63.13434811099989,18.059475002000084],[-63.14386959499989,18.064683335000097],[-63.14683997299991,18.07029857000009],[-63.14362545499995,18.0741641300001],[-63.11375891799986,18.07465241100007],[-63.09609941299993,18.07880280200004],[-63.08381100199989,18.087958075000103],[-63.07909094999989,18.104193427000038],[-63.070871548999975,18.11001211100009],[-63.05211341099993,18.116848049000026],[-63.03140214799993,18.121893622000044],[-63.017648891999904,18.12213776200008],[-63.01793372299994,18.100531317000105],[-63.0110977859999,18.070746161000073],[-63.01073157499991,18.040838934000107],[-63.01756751199991,18.03339264500005],[-63.0175685850526,18.033391472135662]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Mexico","sov_a3":"MEX","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mexico","adm0_a3":"MEX","geou_dif":0,"geounit":"Mexico","gu_a3":"MEX","su_dif":0,"subunit":"Mexico","su_a3":"MEX","brk_diff":0,"name":"Mexico","name_long":"Mexico","brk_a3":"MEX","brk_name":"Mexico","brk_group":null,"abbrev":"Mex.","postal":"MX","formal_en":"United Mexican States","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mexico","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":7,"mapcolor13":3,"pop_est":111211789,"gdp_md_est":1563000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"MX","iso_a2":"MX","iso_a3":"MEX","iso_n3":"484","un_a3":"484","wb_a2":"MX","wb_a3":"MEX","woe_id":23424900,"woe_id_eh":23424900,"woe_note":"Exact WOE match as country","adm0_a3_is":"MEX","adm0_a3_us":"MEX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MEX.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-114.7340388659999,18.329250393000038],[-114.74058997299997,18.32831452000012],[-114.74738521999991,18.328680731000148],[-114.7818904289999,18.324530341000113],[-114.79857337099986,18.33087799700006],[-114.79857337099986,18.342474677000055],[-114.77554277299988,18.354925848000065],[-114.7240291009999,18.354925848000065],[-114.7202042309999,18.352118231000034],[-114.72085527299994,18.345689195000105],[-114.72394771999991,18.338568427000055],[-114.7271622389999,18.333807684000146],[-114.7340388659999,18.329250393000038]]],[[[-87.37319902299996,18.40249258000007],[-87.37942460799991,18.40249258000007],[-87.37564042899987,18.410264390000165],[-87.35850989499994,18.429388739000146],[-87.34874426999991,18.442572333],[-87.34361731699988,18.452337958000115],[-87.33747311099992,18.47776927300005],[-87.33120683499995,18.532416083],[-87.32815507699988,18.541245835000055],[-87.32433020699995,18.549790757],[-87.31847083199992,18.558417059000174],[-87.31012936099995,18.567206122000144],[-87.32815507699988,18.532700914000042],[-87.32209225199998,18.489243882],[-87.3345027329999,18.454372463000155],[-87.37319902299996,18.40249258000007]]],[[[-87.24986731699988,18.65086497599999],[-87.26292883999986,18.628648179000137],[-87.25861568899987,18.65696849200016],[-87.26915442599991,18.738511460000026],[-87.25548255099989,18.724269924000012],[-87.24815833199997,18.676214911000116],[-87.24986731699988,18.65086497599999]]],[[[-91.52440344999985,18.76658763200011],[-91.52456620999992,18.75214264500015],[-91.52879798099994,18.755275783000044],[-91.5320531889999,18.758978583000058],[-91.55394446499992,18.74494049700003],[-91.56590735599984,18.740179755000113],[-91.57921301999997,18.738511460000026],[-91.57461503799993,18.745917059000092],[-91.56851152299996,18.75165436400006],[-91.56090247299991,18.755926825000174],[-91.55186926999991,18.758978583000058],[-91.57164466099992,18.757228908000073],[-91.60602779899997,18.743719794000086],[-91.62083899599995,18.744696356000176],[-91.66006425699996,18.692328192],[-91.6888728509999,18.669419664000188],[-91.72321529899993,18.662787177000112],[-91.70274817599989,18.697495835],[-91.75511633999986,18.667141018000123],[-91.78595943899992,18.654364325000174],[-91.81627356699991,18.649115302],[-91.83568274599992,18.649115302],[-91.84268144399991,18.651190497000115],[-91.83824622299991,18.65818919500019],[-91.82315019399991,18.673325914000188],[-91.81216386599996,18.67975495000009],[-91.76821855399993,18.697495835],[-91.74022376199991,18.70380280200014],[-91.68588702899983,18.731533386000034],[-91.64655434699992,18.75584106399999],[-91.60033118399988,18.772040106000063],[-91.5557348299999,18.791693427],[-91.53888912699992,18.79311758000007],[-91.53246008999987,18.785345770000063],[-91.52733313699989,18.777085679],[-91.52440344999985,18.76658763200011]]],[[[-110.92430579299986,18.727362372000087],[-110.94188391799987,18.725978908000016],[-110.96117102799991,18.726955471000068],[-110.97948157499988,18.71678294500013],[-110.99461829299989,18.731594143],[-111.0083715489999,18.74237702],[-111.02318274599988,18.75092194200012],[-111.06725012899997,18.76874420800003],[-111.06655839799993,18.775702216000084],[-111.0620011059999,18.79311758000007],[-111.05308997299996,18.81598541900017],[-111.0385636059999,18.835394598000093],[-111.00055904899992,18.86823151200018],[-110.98005123599987,18.860825914000102],[-110.95616614499988,18.843695380000057],[-110.94078528599994,18.821722723000146],[-110.94591223899994,18.799994208000083],[-110.93224036399992,18.79466380400011],[-110.9194229809999,18.78070709800012],[-110.91120357999989,18.762518622000144],[-110.91120357999989,18.744696356000176],[-110.92430579299986,18.727362372000087]]],[[[-110.8286026679999,19.275702216000084],[-110.83023027299993,19.27334219000012],[-110.83348548099988,19.27635325700014],[-110.83617102799985,19.283596096000068],[-110.83604895699997,19.293402411],[-110.83238684799993,19.302191473000065],[-110.81920325399997,19.324042059000092],[-110.81432044199991,19.334377346],[-110.81432044199991,19.348049221000124],[-110.80565344999991,19.342108466000028],[-110.79865475199993,19.333807684000032],[-110.78766842399996,19.31391022300015],[-110.81309973899988,19.296332098],[-110.82408606699995,19.286281643000123],[-110.8286026679999,19.275702216000084]]],[[[-86.74901282499991,20.56769440300009],[-86.78433183499993,20.509833075000174],[-86.79710852799988,20.477484442000062],[-86.81354732999995,20.461127020000145],[-86.84398352799991,20.43732330900015],[-86.85570227799991,20.420843817000062],[-86.8807673819999,20.375921942000062],[-86.8855688139999,20.35883209800012],[-86.8898005849999,20.353664455000015],[-86.89924068899984,20.348456122000027],[-86.90855872299997,20.34153880400011],[-86.91291256399987,20.331488348000146],[-86.91690019399992,20.324611721000124],[-86.9265030589999,20.313706773000078],[-86.97915605399993,20.267808335],[-86.9952693349999,20.260809637000094],[-87.00226803299996,20.270086981000148],[-87.0052384109999,20.290187893],[-87.01886959499984,20.332464911000116],[-87.02277584499984,20.355414130000113],[-87.01968339799994,20.397447007],[-87.0078832669999,20.436224677000112],[-86.96812903599988,20.506252346],[-86.93675696499994,20.547186591000028],[-86.92951412699992,20.55003489799999],[-86.91368567599989,20.56342194200009],[-86.9054255849999,20.56769440300009],[-86.89688066299988,20.567816473000065],[-86.89053300699993,20.565334377000127],[-86.88573157499984,20.562323309000035],[-86.88219153599988,20.56085846600017],[-86.8712458979999,20.55857982000019],[-86.84634355399987,20.548976955000015],[-86.83714758999987,20.547186591000028],[-86.8237198559999,20.549994208],[-86.80174719999988,20.562567450000174],[-86.7892146479999,20.559881903000086],[-86.77131100199992,20.56610748900006],[-86.75568600199995,20.577541408000016],[-86.74901282499991,20.59223053600003],[-86.7468969389999,20.595892645000063],[-86.74217688699987,20.595892645000063],[-86.73745683499988,20.592271226000022],[-86.73534094999985,20.585353908000016],[-86.73721269399992,20.582180080000125],[-86.74901282499991,20.56769440300009]]],[[[-86.72752844999988,21.242905992000132],[-86.70059160099989,21.198919989],[-86.72004146999988,21.21271393400012],[-86.73957271999986,21.24282461100013],[-86.7498673169999,21.273138739000117],[-86.74156653599991,21.287665106000148],[-86.73851477799991,21.266750393],[-86.72752844999988,21.242905992000132]]],[[[-106.23191740099988,21.335237076000155],[-106.2274458879999,21.33276854400019],[-106.2240376009999,21.328735901000027],[-106.22573969099996,21.308668959000116],[-106.22750596199991,21.29116570900008],[-106.23697185899992,21.295066520000162],[-106.24730951999994,21.289698507000097],[-106.27019654199985,21.300997418000076],[-106.2793633789999,21.314658975000057],[-106.26000511599995,21.334096877000135],[-106.24178269399988,21.332963871000075],[-106.23191740099988,21.335237076000155]]],[[[-106.4370621759999,21.49594584400016],[-106.42472209199985,21.48802382000015],[-106.40421775099992,21.483885817000086],[-106.38599027899988,21.482766684000026],[-106.37272832899993,21.482046343000107],[-106.37192408599992,21.471799066000116],[-106.36288746199988,21.464307183000088],[-106.36264428099993,21.455074391],[-106.38065409599987,21.446987422000017],[-106.38462786999986,21.43147294000012],[-106.38709806099988,21.420635776000083],[-106.40260735199989,21.42295232800008],[-106.42882562099992,21.435094921000044],[-106.44370934899985,21.436839228000125],[-106.45927584699989,21.44832166800002],[-106.4787473799999,21.451401902000057],[-106.49261366699994,21.469004645],[-106.47198508199993,21.48384143000014],[-106.45958744999992,21.494884749],[-106.44853002599993,21.493095749000148],[-106.4370621759999,21.49594584400016]]],[[[-106.64215669399988,21.696598633000136],[-106.62098152399996,21.690434647000032],[-106.60001273099994,21.691451968000095],[-106.58766558799994,21.68456126800008],[-106.54800391099987,21.66854593400002],[-106.53445774699993,21.65757130900006],[-106.53642576499996,21.648270923000055],[-106.53942568899993,21.63639762700008],[-106.52690855399987,21.62389626600016],[-106.5189697979999,21.616897592],[-106.51378643899994,21.608810080000083],[-106.5092666579999,21.6053205300001],[-106.50478224299994,21.602859498000058],[-106.51235262799987,21.597034382000103],[-106.51600818099992,21.58875177900002],[-106.51407658599987,21.57903635200013],[-106.51166443899987,21.57189577400005],[-106.5198617729999,21.568143128000155],[-106.52080692799984,21.562471823000138],[-106.52615644999989,21.55667921200002],[-106.53205055899988,21.550369398000115],[-106.5323609699999,21.54162925300001],[-106.53685815499995,21.544603513000155],[-106.54179406799996,21.543459267000074],[-106.54084847899988,21.549141352],[-106.53771141399993,21.555386187000167],[-106.54506495499987,21.56189241400007],[-106.55228859299989,21.563762095000055],[-106.59126768399989,21.577224815000093],[-106.63115564399995,21.60086051300011],[-106.63009297899995,21.604493492000174],[-106.62853903599989,21.609152522],[-106.62875933899991,21.616837337],[-106.63556388999991,21.625897487000103],[-106.64163068499988,21.639106150000188],[-106.65139358399996,21.652216620000114],[-106.65598550599994,21.658265680000124],[-106.6494767019999,21.662531711000057],[-106.64921597999991,21.672806739000137],[-106.6506425269999,21.684068870000104],[-106.66084761599988,21.69306395500014],[-106.64215669399988,21.696598633000136]]],[[[-106.66382290899995,21.77724560700001],[-106.66304709599989,21.769554339000095],[-106.65799745999996,21.767105653],[-106.65596502599993,21.75430157000001],[-106.66349972799993,21.746932291000103],[-106.65776606599991,21.739877617],[-106.6789634199999,21.727035999000023],[-106.68894070399993,21.746831544000102],[-106.6839086579999,21.760972398000135],[-106.6781389759999,21.77484558900012],[-106.67141441799996,21.77192319500007],[-106.66382290899995,21.77724560700001]]],[[[-97.60171464799993,21.751939195000134],[-97.61046301999991,21.740179755000057],[-97.63996334499987,21.74510325700011],[-97.66348222599991,21.778469143000095],[-97.67926998599987,21.82318756700012],[-97.68492591099995,21.86245351800015],[-97.67031816299993,21.848618882000054],[-97.66454016799989,21.82908763200008],[-97.66055253799989,21.807562567000062],[-97.65143795499992,21.787909247000083],[-97.61473548099991,21.764390367000047],[-97.60171464799993,21.751939195000134]]],[[[-89.69261012599989,22.56707303600014],[-89.65824757199996,22.540669889000114],[-89.62491973699994,22.497943699000146],[-89.6101519099999,22.461080928000015],[-89.62188280099991,22.409829168000115],[-89.63427615599994,22.378891049000018],[-89.65057469399989,22.36757649499999],[-89.66418798799987,22.37106910900006],[-89.68458230099995,22.380737837000154],[-89.69172582699991,22.3875988380001],[-89.68924646299983,22.399856861000114],[-89.69797173799986,22.41754406200012],[-89.6943877779999,22.4248734210001],[-89.6775539549999,22.429667569000017],[-89.65710439999988,22.446689219000017],[-89.65516467999987,22.47200127000012],[-89.67271790399988,22.49254389500011],[-89.68766341299997,22.507352138000115],[-89.6910718369999,22.528628504000054],[-89.71401664199988,22.541046090000137],[-89.73876902099994,22.54938823000016],[-89.75652256599992,22.543782055000023],[-89.76191796299995,22.529095854],[-89.77075566699992,22.533241273000087],[-89.76713830299985,22.54712304300007],[-89.75643459899993,22.56014075800006],[-89.74570742299991,22.57724911300012],[-89.72972515299995,22.582868579000134],[-89.69261012599989,22.56707303600014]]],[[[-97.81761633999986,22.69476959800012],[-97.84316972599991,22.684881903000033],[-97.83714758999994,22.69611237200003],[-97.82188880099997,22.711574611000128],[-97.81529700399987,22.720200914000046],[-97.7984106109999,22.762518622000144],[-97.78856360599988,22.774847723],[-97.78453528599991,22.75584544500019],[-97.79613196499992,22.723781643000038],[-97.81761633999986,22.69476959800012]]],[[[-109.79842518999986,24.155164565000106],[-109.80286510999989,24.137062296000053],[-109.81484352999986,24.14043111100007],[-109.83101246299991,24.14351104200007],[-109.8624826699999,24.147087282000044],[-109.87392707799984,24.151702835000105],[-109.87176125199996,24.15969071800005],[-109.88504423799988,24.17665820899999],[-109.90043209999986,24.199240808000027],[-109.91297210499995,24.235720661000087],[-109.92387530899988,24.266637803000048],[-109.92117992799987,24.27581551200002],[-109.91662099599998,24.284812325000033],[-109.93742544899987,24.325148634000143],[-109.93423363299993,24.35938600000013],[-109.93322037499983,24.37441423600002],[-109.9267514049999,24.372929555000113],[-109.91924615899984,24.362028983000055],[-109.91741307099997,24.348511088000137],[-109.90584407499993,24.334834182000137],[-109.89969417399992,24.325687604000063],[-109.89215525599992,24.31628813300013],[-109.8823308059999,24.294285878000082],[-109.87063098199988,24.27235586200011],[-109.85808965299985,24.25893950000001],[-109.84257144299991,24.230300382000152],[-109.83574974399993,24.22465432900016],[-109.8228485909999,24.209405591000134],[-109.80856253399993,24.182221868000067],[-109.80714753499993,24.171565618000088],[-109.79842518999986,24.155164565000106]]],[[[-111.56163489499995,24.378078518000066],[-111.53945088399986,24.37266673500012],[-111.5096329419999,24.36395905200014],[-111.46709409399989,24.336731689000104],[-111.46295789799989,24.329770950000164],[-111.53281673899994,24.358311569000037],[-111.56125257199994,24.362367053000025],[-111.59724512799993,24.365109379],[-111.63836643299986,24.355703484000074],[-111.66481439899988,24.351855932000046],[-111.6732540539999,24.35840054400002],[-111.66546126499986,24.369011883000056],[-111.65777756999987,24.375217206000013],[-111.6460495369999,24.37105109700012],[-111.62879801699991,24.37264427700013],[-111.60018725499991,24.376440140000128],[-111.58299852699993,24.37508855400013],[-111.56163489499995,24.378078518000066]]],[[[-111.97161083099984,24.518536051000023],[-111.96019613599988,24.518320957000086],[-111.90484224099995,24.518864115],[-111.88115444499996,24.517606765000053],[-111.86439535399983,24.520478691],[-111.85059021099988,24.50981902100007],[-111.83734329099993,24.512756229],[-111.83852555099988,24.499991039000022],[-111.8309528039999,24.48625402200012],[-111.82143053099995,24.480471174000012],[-111.8182322919999,24.46762102700002],[-111.79820234799988,24.464035415000083],[-111.77547727599996,24.46198805900015],[-111.75348873599987,24.446966864000117],[-111.72420777799992,24.396167005000148],[-111.70620517899995,24.379817576000093],[-111.6947486799999,24.381188915000124],[-111.69231749899991,24.37393941800009],[-111.69975163899996,24.358923824000087],[-111.69386709299997,24.347602274000092],[-111.70126445399988,24.330945383000156],[-111.7103545459999,24.318345521000097],[-111.70811069699997,24.29985435800002],[-111.73883500699986,24.33811715899999],[-111.75856116599991,24.356101453000136],[-111.80780339199988,24.389074884000152],[-111.84575211999989,24.417814566000075],[-111.87158328599995,24.439098904000062],[-111.90802733499989,24.457385915000046],[-111.9148817279999,24.46471054900009],[-111.92621743699992,24.468124111000076],[-111.94078989499985,24.48358675100006],[-111.9755938749999,24.49783229800012],[-112.00175417299991,24.50631284700013],[-112.00684372499984,24.514400042000133],[-111.9889743269999,24.52765388100012],[-111.97161083099984,24.518536051000023]]],[[[-110.36052707899991,24.54674350700016],[-110.36398941999995,24.532488947000147],[-110.34592349599988,24.53039492100008],[-110.32494055899986,24.51585521],[-110.31522154699987,24.504558301000102],[-110.30500240799988,24.503159898000135],[-110.30235018099991,24.488769550000157],[-110.29585275399992,24.476886616000073],[-110.28786260899997,24.469741671000076],[-110.29234573699992,24.458185259000018],[-110.3065130169999,24.456491962000158],[-110.31273352799988,24.4466820330001],[-110.30785071499992,24.432684637000033],[-110.31720943899985,24.426214911000116],[-110.32258053299991,24.41730377800009],[-110.32650476199989,24.400748607000153],[-110.34804007899994,24.402450981000143],[-110.34886633999992,24.411444403000143],[-110.35274593799994,24.41800029000008],[-110.34883727499992,24.429574826000035],[-110.35506264699987,24.43507116400015],[-110.36318734499993,24.436372359000174],[-110.37042647799991,24.429677898000037],[-110.37244100599989,24.43876883300011],[-110.37565919399988,24.44683193900006],[-110.35863514599987,24.452199639000114],[-110.36016195099988,24.4575455760001],[-110.3670699599999,24.458800171000075],[-110.36863507399991,24.464158732000087],[-110.37724721699992,24.46812852900008],[-110.3846398939999,24.473656319000057],[-110.38902736499992,24.48228272600006],[-110.39199039099995,24.49776792100012],[-110.38764858399988,24.50560072300003],[-110.39676958199995,24.511183282000058],[-110.39591375299993,24.51911992900004],[-110.3829085209999,24.524046609],[-110.3762316399999,24.53076728000015],[-110.38509918199989,24.529389449000107],[-110.3959660559999,24.535026734000056],[-110.39444292699991,24.546094078000166],[-110.40557110799989,24.543804317000152],[-110.40765329199986,24.55128184000013],[-110.40332378499994,24.559076028000117],[-110.41250187599985,24.56257994000005],[-110.41574497299987,24.569601448000142],[-110.4002113749999,24.581266476000124],[-110.39750663199993,24.590805014000026],[-110.38649662099996,24.58686381300008],[-110.38052283399986,24.574957721000132],[-110.37436556599995,24.56683545900007],[-110.36363635499987,24.556947663000145],[-110.36052707899991,24.54674350700016]]],[[[-110.5646487899999,24.82636156700015],[-110.56123963999997,24.820171102000145],[-110.56141360099988,24.81501709200002],[-110.5681252419999,24.815203173000057],[-110.56840507799988,24.822245591000023],[-110.5740838679999,24.822403544000124],[-110.5803283229999,24.821168422000156],[-110.58679008799989,24.828851199000084],[-110.58616260399992,24.832117105000023],[-110.57451863599991,24.840236985000143],[-110.56922842499996,24.843842237],[-110.56519201899995,24.840915688000067],[-110.56762016499995,24.83019670900002],[-110.5646487899999,24.82636156700015]]],[[[-115.75230872299994,24.953273830000153],[-115.75328528599991,24.953029690000037],[-115.75377356699991,24.95351797100001],[-115.75377356699991,24.954413153000086],[-115.75279700399993,24.954779364000032],[-115.75230872299994,24.954291083000115],[-115.75230872299994,24.953273830000153]]],[[[-110.59309239099987,25.034447349000075],[-110.59022830599989,25.026122044000104],[-110.58364676599986,25.022437961000108],[-110.57491646899987,25.015727364000057],[-110.57569567099995,25.005967387000155],[-110.5683624379999,24.997681793000183],[-110.56580686399994,24.980569350000124],[-110.57069197499992,24.95549260100016],[-110.55928946099989,24.93570414200012],[-110.55335291499996,24.925823262000122],[-110.54847203899988,24.91149018],[-110.53397131199992,24.890802534],[-110.52492856899993,24.880000918000135],[-110.53309552299991,24.876578652000045],[-110.55335630899988,24.872682024000042],[-110.56271729299992,24.873757369000103],[-110.57170343799994,24.87238182700015],[-110.57915288699992,24.863661812000043],[-110.58353889199991,24.866218003000157],[-110.57931286699993,24.872187285000148],[-110.57370606199991,24.879335815],[-110.57388001199992,24.88745461100002],[-110.58399245899996,24.89260244100008],[-110.59536165399989,24.900216377000064],[-110.61035802099991,24.90630599800006],[-110.61019330599996,24.91116602400011],[-110.62030189699995,24.916724148000082],[-110.63199094199987,24.9154319550001],[-110.64231341499989,24.914497534000144],[-110.64165134199992,24.92097204000011],[-110.63649964099989,24.927725502000143],[-110.6440234509999,24.94250263100004],[-110.6546829169999,24.946073180000056],[-110.6604054619999,24.96245745200018],[-110.66013538699994,24.97098272699999],[-110.66565583499991,24.980061199000104],[-110.67301917799995,24.98798625300016],[-110.67403704999988,24.99732808100005],[-110.67583788799992,25.011197812000106],[-110.68224833499993,25.020289296000144],[-110.69693856499991,25.01975555900013],[-110.70494139999992,25.02992142200004],[-110.71328177499991,25.029215408000155],[-110.71655063599994,25.039890378000123],[-110.71651205799992,25.054065443000137],[-110.7130625959999,25.062019201000094],[-110.71349036399994,25.075018622000087],[-110.71079188599985,25.095047107000184],[-110.7087067879999,25.10220805199999],[-110.70689963799988,25.10513633300017],[-110.70202038799992,25.103374973000186],[-110.69499823499986,25.093982836000137],[-110.68475232799989,25.06618603700015],[-110.66862540999995,25.052773248000065],[-110.64231949299995,25.049226687000086],[-110.61412512899994,25.041937567000147],[-110.59309239099987,25.034447349000075]]],[[[-112.16149471499992,24.988050817],[-112.16182705899989,24.97439721500014],[-112.17010957099987,24.96959576900015],[-112.17895712699988,24.974700467],[-112.18696375799996,24.96133111900015],[-112.18875719699993,24.95223261600016],[-112.18735357699988,24.921709196000094],[-112.19592968799991,24.915300649000173],[-112.19096971599994,24.88984917900008],[-112.18331850699988,24.879654277000053],[-112.17686468599996,24.872387684000117],[-112.1825566209999,24.86596037900007],[-112.19532299499988,24.86727256500002],[-112.2043099459999,24.86686072300013],[-112.20716100899998,24.860857139000146],[-112.2093058759999,24.855129483],[-112.21371500299993,24.847526510000122],[-112.21093858199988,24.838823146000138],[-112.20897563599993,24.82359927900002],[-112.20619494699989,24.81743412100009],[-112.19582969599989,24.81161667400015],[-112.18785962099992,24.806166062],[-112.18228772899995,24.799633117],[-112.17870561999986,24.795640332000133],[-112.17112540699989,24.79453778100013],[-112.17312647899992,24.792367994000088],[-112.17752014099992,24.790927773000032],[-112.17593001599988,24.78838837300016],[-112.16558736899988,24.775685806000027],[-112.16211193499991,24.759709437000097],[-112.13901875799993,24.737909984000126],[-112.1314646589999,24.728470923000103],[-112.13070253799991,24.715787315000124],[-112.13111923899993,24.709628569000117],[-112.1271395689999,24.70635827600016],[-112.12314905999995,24.70707313900006],[-112.1156234879999,24.689301038000153],[-112.12643687199993,24.673747081000087],[-112.13163929499989,24.666875547000146],[-112.14002912399987,24.65928849800015],[-112.14323440799986,24.649882403],[-112.14043902599994,24.643734424000073],[-112.1364636359999,24.632881907000083],[-112.10348531499992,24.617166414000067],[-112.09634306999988,24.60700401700008],[-112.07808494099989,24.58483726700008],[-112.07091075599996,24.585177949000027],[-112.07094827699987,24.57395338200014],[-112.06459401499991,24.568160634000108],[-112.0574777469999,24.55369051700002],[-112.05990735599993,24.540602578000076],[-112.06826595499989,24.54244868400015],[-112.09134153899993,24.551534022000126],[-112.10247783699988,24.559152037],[-112.10006790899988,24.564234767000087],[-112.10558606299993,24.583818767000096],[-112.11386196299988,24.599166260000047],[-112.1270149639999,24.611790559000084],[-112.13733249099994,24.619088895000075],[-112.14653348799989,24.618710786000136],[-112.15921558599992,24.64302327400004],[-112.17197412299987,24.64666842600009],[-112.17634372899992,24.653562288000117],[-112.16834392099989,24.661157474000063],[-112.16632563799996,24.670936670000074],[-112.15993740399995,24.67237348700003],[-112.15196333099992,24.67054545000003],[-112.14478550299994,24.67089158600008],[-112.13838146199994,24.68029665500002],[-112.13593802899993,24.69804552800015],[-112.13948172299985,24.714721162000117],[-112.14621608099992,24.732128918000072],[-112.1557643019999,24.743385225000097],[-112.16771031799996,24.755373340000077],[-112.17567392399992,24.763364067000065],[-112.18953347099995,24.773923376000038],[-112.20677649599988,24.78213125200007],[-112.21385065599988,24.784838708000095],[-112.22461862999988,24.78811879600015],[-112.23778533699995,24.789227892000085],[-112.2459610669999,24.788763739000117],[-112.25054513199984,24.787795561000124],[-112.25693038799996,24.78381983900006],[-112.26093235699997,24.776581989000118],[-112.26095585799987,24.7697001530001],[-112.25781435599991,24.75157812500011],[-112.25941277299991,24.74940725599999],[-112.26857633999987,24.758116050000165],[-112.27253192399988,24.772977454000042],[-112.30459550699993,24.79218170800014],[-112.30163741799996,24.80309327700003],[-112.30202996299991,24.807442141000152],[-112.30002897599991,24.809975869000095],[-112.29003319299994,24.812495007000066],[-112.27518191199994,24.839512620000065],[-112.2573397109999,24.88447458600011],[-112.20630228299987,25.017660458000066],[-112.19074459499988,25.062974351000076],[-112.16322417099994,25.15626824100009],[-112.14452063699987,25.227769273000135],[-112.14249481099986,25.255132472000028],[-112.13784646199991,25.265260829000155],[-112.12532590599994,25.265833482000104],[-112.12022399399987,25.22052060100016],[-112.12687610399986,25.201467647000143],[-112.14346305199986,25.162781904],[-112.15603391299992,25.14077327600002],[-112.16937150899992,25.07353412499999],[-112.17930364599997,25.044985661000098],[-112.17083786099991,25.029572655000052],[-112.16731926899993,25.019389709000123],[-112.1697193099999,25.00600586000003],[-112.16412988599991,24.996891562000158],[-112.16149471499992,24.988050817]]],[[[-110.71343768499993,25.264268410000014],[-110.71977787499986,25.259347713000107],[-110.72887284999985,25.25998199100009],[-110.72975618099993,25.266260189000047],[-110.73393939799992,25.27778009000012],[-110.73274210899989,25.287954409000022],[-110.71479064899988,25.30592566000008],[-110.7047994799999,25.30605110000006],[-110.69651821199996,25.30700688000009],[-110.69068524799988,25.31273794000019],[-110.68952533699992,25.308388679000032],[-110.6940431599999,25.303015619000078],[-110.70398902499993,25.289108078000098],[-110.70719465899994,25.271563092000136],[-110.71343768499993,25.264268410000014]]],[[[-108.88272050699993,25.443182684000178],[-108.83161373599985,25.42641836100016],[-108.8188370429999,25.42080312700007],[-108.79930579299993,25.394110419000057],[-108.78652910099987,25.385443427000055],[-108.80394446499984,25.374579169000143],[-108.8365779289999,25.38812897300012],[-108.8724666009999,25.40884023600013],[-108.89981035099986,25.419623114000117],[-108.90705318899988,25.42035553600006],[-108.9160863919999,25.424465236000017],[-108.92373613199993,25.42641836100016],[-108.93248450399992,25.427313544000143],[-108.99400794199995,25.426743882],[-109.00796464799994,25.432562567000147],[-109.01309160099994,25.446926174],[-108.9009903639999,25.446519273000106],[-108.88272050699993,25.443182684000178]]],[[[-112.11747555099993,25.283858161000023],[-112.12275429399998,25.282136463000043],[-112.13088462099986,25.288659129000063],[-112.13805058099985,25.297346614000087],[-112.13416846099989,25.31294443400013],[-112.12549294999991,25.327662273],[-112.11771916799992,25.360583888000107],[-112.11327091099993,25.40391539800005],[-112.10547262599995,25.442912302000092],[-112.1030147959999,25.461550521000092],[-112.10630618699992,25.484113397000087],[-112.10292936199993,25.488874927000055],[-112.09813616699991,25.485821819000034],[-112.0991407489999,25.471946153000104],[-112.09775422199992,25.455028570000124],[-112.09975008199987,25.431189394000015],[-112.10077020799989,25.412118626000122],[-112.10659164299989,25.391761856000144],[-112.10955788099993,25.363164023000152],[-112.10434741199994,25.34234799500008],[-112.10583783999988,25.325880927000142],[-112.11306636299987,25.31419465099999],[-112.11886047099992,25.301203586],[-112.11747555099993,25.283858161000023]]],[[[-110.75318694899997,25.59809581899999],[-110.7652924809999,25.59393941700007],[-110.78588624099986,25.604369005000176],[-110.8055319839999,25.644418101000056],[-110.80356054299993,25.674932644000094],[-110.79194302599988,25.695302068000057],[-110.78247403999988,25.710334678000052],[-110.7734142509999,25.71279499000015],[-110.7700038909999,25.695627298000076],[-110.76206207599986,25.69361752600004],[-110.76668353999989,25.675785541000053],[-110.7596129219999,25.64775568300017],[-110.75318694899997,25.59809581899999]]],[[[-111.03715375399989,25.71381075800018],[-111.03128278499986,25.703644765000046],[-111.02344521399992,25.69733508800006],[-111.01922563099994,25.693887127000053],[-111.01288910899986,25.678704954000025],[-111.01625677499987,25.669321518000075],[-111.02210814299987,25.65944128500017],[-111.0285096699999,25.65179260600003],[-111.0352614189999,25.65307077000001],[-111.04416712699992,25.664981510000175],[-111.0477029459999,25.670635757000028],[-111.04620374999985,25.679509106000026],[-111.05379375399991,25.694168687000072],[-111.05914824499993,25.70097758800007],[-111.05955021199988,25.70822370000012],[-111.04354031199993,25.7067249],[-111.04337521699995,25.71228737000017],[-111.03715375399989,25.71381075800018]]],[[[-111.24305953099991,25.766779947000046],[-111.24594329499988,25.765702386000086],[-111.2530102249999,25.77356834700005],[-111.25849374199993,25.78139862400009],[-111.25790034199986,25.7910910020001],[-111.25697416699988,25.80134562600001],[-111.26022563699988,25.809694639000085],[-111.25823530699986,25.812789104000146],[-111.25478977799989,25.811284971000035],[-111.2531638569999,25.801545692000147],[-111.2475248549999,25.799136094000076],[-111.24987309299986,25.794622036000145],[-111.24590078299991,25.78939517800005],[-111.24470679799988,25.786799451000107],[-111.24795653599992,25.78401779300019],[-111.24690914799994,25.776286882000093],[-111.24322964399997,25.771922456000127],[-111.24305953099991,25.766779947000046]]],[[[-111.05636947499995,26.071817312000135],[-111.07111848099994,26.053609465000036],[-111.08198562499989,26.02869446600012],[-111.08119383099985,25.998658402000142],[-111.0700079389999,25.99703904800019],[-111.07084954899989,25.98606181200007],[-111.06534376799989,25.982723084000057],[-111.06566210499994,25.972193182000026],[-111.06738623799995,25.965818013000117],[-111.07231128799987,25.97143483200007],[-111.0794137369999,25.97251975100012],[-111.08677798199993,25.981856867000047],[-111.09381556299985,25.98522699700011],[-111.10111427099987,25.996851137000178],[-111.11233049999994,25.99665954900003],[-111.11961848799989,25.992217757000144],[-111.11926233999989,25.986286845000123],[-111.12057780899994,25.97624182800017],[-111.13068311999992,25.961821332000014],[-111.14115858899989,25.952874674000054],[-111.15394647599989,25.93304514800009],[-111.1728556519999,25.913328371000105],[-111.18080348799991,25.902525408000045],[-111.17787572599985,25.897446674000108],[-111.18341436399992,25.88200829800003],[-111.1813034719999,25.86685113500012],[-111.18871430099995,25.85695510000012],[-111.19789268299989,25.856273276000124],[-111.20430271399994,25.845438301000158],[-111.20284973499989,25.82523079200008],[-111.20074113699985,25.81006880600013],[-111.20499083299985,25.80375425200016],[-111.21329065199993,25.815855302],[-111.2198596899999,25.817379909000024],[-111.23034479499985,25.823611986000074],[-111.22972571499989,25.830877997000144],[-111.23335513699989,25.842899160000016],[-111.23181414099993,25.851619962000125],[-111.2183442959999,25.871688495000157],[-111.21931062099992,25.884235896000135],[-111.20988847299989,25.91695274500016],[-111.21107189399993,25.9288686870001],[-111.201016,25.942358080000144],[-111.19659220499994,25.954632974000145],[-111.1880997389999,25.969916083],[-111.17467981799986,25.978365239000183],[-111.16925541499991,25.987594179000112],[-111.17204118599993,26.00271541600007],[-111.16821293099991,26.0234804],[-111.1756174279999,26.035206350000138],[-111.17602678499992,26.043341528000024],[-111.1617701699999,26.045362833000112],[-111.13381297299989,26.052844358000144],[-111.13607001599986,26.06330325900008],[-111.12752035999989,26.068313202000112],[-111.11999754399989,26.061188066000128],[-111.1034137399999,26.053816848000068],[-111.07932008399987,26.060190875000146],[-111.07454573299992,26.068776139000033],[-111.05636947499995,26.071817312000135]]],[[[-111.2814223199999,26.104882898000042],[-111.28620447199988,26.103131543000085],[-111.28344980099988,26.10652465600016],[-111.2803801439999,26.11043764200009],[-111.27993177599986,26.114641237000015],[-111.28658193499986,26.119009039],[-111.28662406799988,26.125845586000153],[-111.2752382269999,26.136377506000187],[-111.26855769599987,26.13626232100016],[-111.26372496499995,26.135042107000103],[-111.26248744399987,26.125414309000078],[-111.2644296409999,26.118247110000098],[-111.26716165199991,26.115103197000124],[-111.2625574739999,26.111305647000062],[-111.26424326599994,26.105005716000093],[-111.27402031299992,26.10497750600014],[-111.2814223199999,26.104882898000042]]],[[[-113.20343990799991,26.717189846000153],[-113.19513912699992,26.71385325700011],[-113.1918025379999,26.717189846000153],[-113.18687903599992,26.721340236000074],[-113.18024654899997,26.722967841000113],[-113.17442786399992,26.72044505399999],[-113.1629125639999,26.704779364000117],[-113.14712480399993,26.684068101000104],[-113.13890540299984,26.672552802000084],[-113.13805091099994,26.665106512000094],[-113.14635169199991,26.665106512000094],[-113.15461178299991,26.670884507000054],[-113.16539466099992,26.677476304000137],[-113.1918025379999,26.687445380000113],[-113.2215876939999,26.69570547100004],[-113.24640865799988,26.701483466000084],[-113.25796464799988,26.704779364000117],[-113.26455644399996,26.708929755000053],[-113.25796464799988,26.71800364800005],[-113.24474036399995,26.724595445000134],[-113.2289932929999,26.732896226000108],[-113.21996008999989,26.731268622000087],[-113.21080481699991,26.727932033000158],[-113.20254472599991,26.722967841000113],[-113.20343990799991,26.717189846000153]]],[[[-109.93803407999987,27.02116467700013],[-109.94574682699997,27.021134875000158],[-109.9684141679999,27.04906212500002],[-109.99144446499994,27.064195054000052],[-110.0186902389999,27.076841114000118],[-110.03540467499995,27.07961621000014],[-110.04444200599995,27.086999694000053],[-110.03675199699988,27.08932497700009],[-110.01745088499993,27.083705616000188],[-109.98524464699989,27.069567861000067],[-109.95750961899986,27.051966609000157],[-109.93803407999987,27.02116467700013]]],[[[-112.05222677799992,27.193672018000157],[-112.06627896399989,27.178964897000114],[-112.08744774799992,27.182942202000117],[-112.09222093499996,27.203736787000178],[-112.09700313999987,27.22452311900018],[-112.10881185499993,27.236915136],[-112.09009010599996,27.259978197000077],[-112.06414072699988,27.241471524000147],[-112.04525282299994,27.216644319000025],[-112.05222677799992,27.193672018000157]]],[[[-110.53065936899989,27.300391905000126],[-110.53434219499988,27.284356682000023],[-110.58856431499996,27.302735408000146],[-110.60417602399991,27.318023509000128],[-110.6065567699999,27.358587958000115],[-110.60456295499995,27.38251373900009],[-110.59748287699988,27.405747789000102],[-110.59308971299993,27.416985674],[-110.59843330799991,27.378078924000036],[-110.59404179899991,27.33183177100007],[-110.5751819649999,27.31371546600012],[-110.53065936899989,27.300391905000126]]],[[[-111.85962089399995,27.43014061100017],[-111.87920334599991,27.428118197000074],[-111.89226813399989,27.42901896000008],[-111.90428751999988,27.437639374000053],[-111.90108254599991,27.449228028],[-111.87933159799987,27.453189264000045],[-111.86297216099985,27.446516250000073],[-111.85639427099997,27.437869636000087],[-111.85962089399995,27.43014061100017]]],[[[-115.16459619099987,27.851296074000018],[-115.1729947289999,27.848570985000052],[-115.17843405099988,27.85065726],[-115.18223512899988,27.86872369000012],[-115.19380671899988,27.881404487000125],[-115.20948809799988,27.884472468000055],[-115.22036738599988,27.888640469000038],[-115.2180392879999,27.896107671000138],[-115.20415565499994,27.892496164000093],[-115.19692239099992,27.891489235],[-115.18478292799995,27.882007663000124],[-115.17145298299994,27.873595298000154],[-115.16236544699989,27.868343484000107],[-115.15926742899987,27.859851379000087],[-115.16459619099987,27.851296074000018]]],[[[-111.3732357949999,27.968813943000058],[-111.36558654199992,27.953400352000173],[-111.38195072799995,27.957242503000103],[-111.38850838199996,27.968801946000056],[-111.39506498199985,27.979388662000172],[-111.38743959899989,27.988079089000152],[-111.3732357949999,27.968813943000058]]],[[[-115.5938065069999,28.317167183000137],[-115.58826485799993,28.309779406000114],[-115.57926277699993,28.31413282000007],[-115.56777660399992,28.313724],[-115.56466734899996,28.307373446000085],[-115.57554124399985,28.307258248000053],[-115.57907717099992,28.30083495000015],[-115.59232139699994,28.297500526000064],[-115.60268783299993,28.304302844000134],[-115.60397866399991,28.31013982400019],[-115.60104171399989,28.316023197000064],[-115.5938065069999,28.317167183000137]]],[[[-115.18304013799988,28.095147119000117],[-115.18797083199989,28.086801431000154],[-115.18214886699984,28.070236396000112],[-115.18828828499997,28.056346964000014],[-115.17932147099994,28.040344774000104],[-115.18303118399983,28.034777741000184],[-115.18169735599989,28.02758198100004],[-115.18926456799991,28.030301958000123],[-115.1945694649999,28.033921617000132],[-115.20629938099984,28.037940216],[-115.2181476329999,28.031745308],[-115.22814296399993,28.028322673000147],[-115.23387870099987,28.036059358000088],[-115.24702384899993,28.033716118000186],[-115.25399514099986,28.04030398499999],[-115.26184529499996,28.070143449000156],[-115.2802628249999,28.08746979400003],[-115.30354490199989,28.094698587000053],[-115.32166956699993,28.086785194000143],[-115.33670020999995,28.084436037000117],[-115.3466097609999,28.07105122500003],[-115.35805203099993,28.082578651000077],[-115.35215670599993,28.11642012500006],[-115.33400439999991,28.12487756000014],[-115.27367102799991,28.189520575000117],[-115.23975583999996,28.233606330000114],[-115.25515489299988,28.26391732900011],[-115.26245342499989,28.29875638300014],[-115.25708823299989,28.327435599000022],[-115.24864245299992,28.359315181000127],[-115.23499631899998,28.370230333000062],[-115.21486747199992,28.37827913400015],[-115.19199501499989,28.360835960000102],[-115.19497965599994,28.341358253000024],[-115.18413588599994,28.314740695000083],[-115.17392961099998,28.308830826000143],[-115.17576563799992,28.298818501000127],[-115.16858538299991,28.285121379000046],[-115.1627147219999,28.261342294000045],[-115.17275956899996,28.23456452],[-115.17226837499992,28.212645169000137],[-115.15884794699991,28.192840181000165],[-115.15548988699994,28.17070354000016],[-115.15971033499991,28.150714655000158],[-115.15582881399985,28.140779932000058],[-115.16268872299987,28.129624921000087],[-115.17533643199992,28.124479492000077],[-115.17645830599992,28.116755135000076],[-115.1857765489999,28.106172687000036],[-115.18304013799988,28.095147119000117]]],[[[-112.76204512799984,28.581963524000074],[-112.77391863399994,28.575782119000124],[-112.78099396999995,28.581026645000108],[-112.78365377299993,28.5859827930001],[-112.7891311219999,28.58687043100018],[-112.79792632699993,28.609920211000045],[-112.81056878299988,28.618432575000142],[-112.82931983899996,28.625782954000087],[-112.84264237299996,28.640067870000124],[-112.86779761499986,28.643278413000118],[-112.86522737099992,28.65015305400011],[-112.8718676349999,28.655575326000143],[-112.87743648099989,28.663389815000027],[-112.88448898499988,28.67021533400016],[-112.8937693299999,28.67769572000013],[-112.8607565109999,28.67186030700013],[-112.80495568799986,28.63653661300007],[-112.79124613499992,28.622883142000134],[-112.78299875799992,28.61760626000016],[-112.77841524499993,28.610303542000153],[-112.76354392899994,28.602824208000087],[-112.76010855899993,28.59485311600004],[-112.75240050199996,28.591080524000077],[-112.76204512799984,28.581963524000074]]],[[[-112.55745077799986,28.733809269000023],[-112.54795702499986,28.728549475000033],[-112.54672268699994,28.717457159],[-112.54140183899997,28.712268452000146],[-112.54597977399993,28.701872250000132],[-112.54573873699988,28.68658977500017],[-112.55393926599993,28.672288046000162],[-112.57205677999991,28.66840113700009],[-112.59467348799991,28.673082513000068],[-112.6043493019999,28.66943382800018],[-112.60093496599984,28.676981198000153],[-112.61224299199986,28.70523349900016],[-112.61315004699986,28.72576299400005],[-112.60065889899991,28.7279747730001],[-112.59349375299993,28.732231962000082],[-112.56989235699989,28.72889942200014],[-112.55745077799986,28.733809269000023]]],[[[-113.49163841099993,29.039570896000086],[-113.49201098799993,29.035949829000135],[-113.5013270659999,29.03630505800014],[-113.50682475299995,29.039656543000046],[-113.50472040299991,29.044173343000022],[-113.50883103399985,29.048422577000068],[-113.51431789099988,29.0532844050001],[-113.51221106199992,29.058103620000125],[-113.50942981999992,29.060804369000138],[-113.5135536479999,29.063243666000158],[-113.51522798399988,29.070196360000168],[-113.51483820399996,29.07623088400011],[-113.52103066199993,29.078982847000088],[-113.52270512699992,29.085933634000114],[-113.5271456509999,29.09229514900012],[-113.51883989599995,29.095563248000172],[-113.51190035599988,29.095005531000126],[-113.50470694699996,29.09217759200008],[-113.50404679999986,29.087954149000137],[-113.50786021199991,29.082914924000097],[-113.50891836299989,29.078725642000123],[-113.5041329839999,29.075319585000116],[-113.5055555049999,29.070761490000013],[-113.50596487399994,29.062595345000158],[-113.5001440169999,29.056222472000098],[-113.50122201399991,29.050493187000153],[-113.49675063299986,29.048354430000032],[-113.4964503129999,29.04231539400014],[-113.49163841099993,29.039570896000086]]],[[[-118.22580357499993,28.91505206100011],[-118.25136204399988,28.88454189],[-118.27037512899989,28.886175848],[-118.2820198859999,28.879102129000113],[-118.28921437099991,28.87888177400002],[-118.28878202099995,28.86808259100017],[-118.2983922419999,28.876797863000075],[-118.29474975899987,28.88862381700012],[-118.28358639699991,28.89256964400012],[-118.29274641999986,28.91571715600018],[-118.2974722479999,28.930890638],[-118.29404346699988,28.948116962000153],[-118.29998013599992,28.96775888600014],[-118.31599010799997,28.981686714000134],[-118.30434304499995,28.99801941100004],[-118.31367863899996,29.025563069000142],[-118.32349524599995,29.03996581300008],[-118.3352760659999,29.051158149000017],[-118.35551846999994,29.06700397300007],[-118.35820540899994,29.083665909000146],[-118.3640187879999,29.098314793],[-118.3688042289999,29.11440117800008],[-118.3653829879999,29.131653493000144],[-118.35677803299988,29.14948061000017],[-118.33672881399994,29.163293131000117],[-118.30924962199994,29.171555914000134],[-118.29634558599994,29.186158661000107],[-118.27375518699988,29.189562864000134],[-118.25589454999992,29.180932220000116],[-118.27178176499984,29.165123835000074],[-118.28369324199987,29.151855120000093],[-118.28617607099997,29.13643996000006],[-118.27911252799996,29.116244771000094],[-118.26720977299992,29.098056713000158],[-118.2514780289999,29.089444080000032],[-118.22958889199987,29.06171953700009],[-118.22052873299994,29.01518012500018],[-118.22907773499993,28.995973456000158],[-118.22136451799989,28.959342583000122],[-118.22580357499993,28.91505206100011]]],[[[-112.28156888199993,29.22547083200011],[-112.27723957399992,29.2091337180001],[-112.26573539099992,29.197847286000083],[-112.26356650999988,29.19284050800017],[-112.26715248699993,29.18466571500012],[-112.2685583709999,29.175270872000123],[-112.27428605999988,29.16522243700014],[-112.26848192399989,29.15272630600013],[-112.27274704799991,29.137675178],[-112.23531295499994,29.095725314000063],[-112.19560606599995,29.021329787000084],[-112.21354301899991,28.98674726700007],[-112.2148986949999,28.95414763800007],[-112.2284241209999,28.90395146500013],[-112.24347362799996,28.88949925500019],[-112.23768415399994,28.876342013000013],[-112.25413705699995,28.856878838000156],[-112.2591098199999,28.8374356690001],[-112.27125978399995,28.82363253900003],[-112.27622926099988,28.805450989000082],[-112.27256357699991,28.784095663000173],[-112.26108926399989,28.78033243],[-112.25318735099988,28.76905021400007],[-112.2631932589999,28.76338798800019],[-112.27465689899991,28.76838789000008],[-112.28905188699991,28.76300690300009],[-112.30966018399994,28.746360236000143],[-112.32617520099983,28.7627224860001],[-112.34548878599993,28.76519177000013],[-112.35905535399985,28.75823598000015],[-112.36696525199993,28.77201614799999],[-112.38200435099994,28.77382158800016],[-112.39921720299994,28.792626505000086],[-112.41281887699984,28.80012790799999],[-112.42572624499984,28.796911519000066],[-112.43575147099995,28.80190746200016],[-112.45504931399991,28.80060380100004],[-112.46653628899989,28.805570414],[-112.46721560799989,28.81940573600015],[-112.49384857899994,28.823018660000127],[-112.4960433689999,28.83304519500008],[-112.52182024899992,28.844879157000108],[-112.54849392999986,28.85793445600011],[-112.56216599299991,28.869173542000013],[-112.57293149799989,28.868502359000086],[-112.58303300999982,28.875362888],[-112.55583712799985,28.891784263000076],[-112.52610426699991,28.908841835000185],[-112.51073157499992,28.92837148600013],[-112.5043025379999,28.93187083500011],[-112.49982662699995,28.940415757000135],[-112.49575761599988,28.950628973000093],[-112.49083411399992,28.959418036000145],[-112.48591061099987,28.97162506700012],[-112.48973548099988,28.981024481000063],[-112.50015214799986,28.990423895000063],[-112.50357011599988,29.032171942],[-112.50035559799993,29.075628973000146],[-112.49205481699994,29.117621161000113],[-112.48029537699996,29.1549339860001],[-112.47386633999984,29.168524481000144],[-112.46471106699997,29.181830145000063],[-112.45299231699988,29.193548895000063],[-112.43871008999987,29.202093817000087],[-112.42229018299986,29.18938998800003],[-112.40145189199991,29.189440997000176],[-112.3799504399999,29.20516329000013],[-112.36274813499996,29.217736041000148],[-112.3433617679999,29.22087556200013],[-112.31606889199986,29.22030216200012],[-112.29956453599993,29.222822831000045],[-112.28733285399989,29.232996247000173],[-112.27799196199992,29.242467285000156],[-112.26433722299987,29.246890478000026],[-112.26719660599994,29.23809457900002],[-112.28156888199993,29.22547083200011]]],[[[-113.49949083099993,29.535137933],[-113.4767890489999,29.532103626000133],[-113.4632968439999,29.518877573000125],[-113.43277370799986,29.492536988000115],[-113.41933647899988,29.466392283000133],[-113.39516047499988,29.45931768399999],[-113.3944940389999,29.4511681770001],[-113.38527380899987,29.442559862000067],[-113.38599339199992,29.43511945200014],[-113.37319534199989,29.421643346000124],[-113.36113295299988,29.40192973600007],[-113.3632574649999,29.393283964000045],[-113.34977863199994,29.384066381000153],[-113.36110104599992,29.37418455000001],[-113.37313816499994,29.3612053880001],[-113.37595921199996,29.34392832200002],[-113.37240629699997,29.334687142000046],[-113.37028713599996,29.310008921000172],[-113.34559675499986,29.29582650400009],[-113.30659006299992,29.290325292000016],[-113.29741479899987,29.28045726900002],[-113.28538366799988,29.28046052200004],[-113.27686238699995,29.28910076500004],[-113.26413649899985,29.288483249000095],[-113.25568157899991,29.28539465400017],[-113.23802673399993,29.288472069000147],[-113.22109392699991,29.289078993000192],[-113.20626765199984,29.28537106800017],[-113.18276014899993,29.28969339700005],[-113.16852450299989,29.27611774200015],[-113.17881075299992,29.25945868100014],[-113.1779259159999,29.237876320000094],[-113.17141283399987,29.226131886000115],[-113.17214234699992,29.206390588000072],[-113.17218326599992,29.194670738000166],[-113.16577177699995,29.189100008000125],[-113.1707349309999,29.178614271000082],[-113.17359275699992,29.157020570000082],[-113.17431544099995,29.129247556000035],[-113.17008626699987,29.11998566400011],[-113.15806358599988,29.10021134400007],[-113.15450146699993,29.09340095800006],[-113.15738187899987,29.083551832000026],[-113.14822958399986,29.06626656300007],[-113.13817298099991,29.064886786000148],[-113.12484665399988,29.060636971000132],[-113.11776626199989,29.056293871000047],[-113.10208382299994,29.053105584000136],[-113.11663624799989,29.0261980180001],[-113.11436064599991,29.01373442800012],[-113.11479175899989,28.98447780100004],[-113.12328652499993,28.98635721700013],[-113.13575669699992,29.000333272000102],[-113.14707421099993,29.00407574000003],[-113.15916291899988,29.017744151000056],[-113.19074517199991,29.02875324200012],[-113.19940468899989,29.04680925000018],[-113.21627733799991,29.055408113000123],[-113.22948830299991,29.059573915],[-113.24362754699989,29.069470069000104],[-113.25089085299992,29.08197656300017],[-113.25817766499993,29.087713471000097],[-113.26292013699994,29.102877481000135],[-113.2757368899999,29.117226451000146],[-113.29269581599995,29.133263241000108],[-113.30065409099991,29.145094822000104],[-113.31254612599987,29.146265316000054],[-113.32109109199989,29.155550398000017],[-113.33501052499989,29.160959159000086],[-113.35397443599992,29.170739069000046],[-113.36207166999992,29.18757928100014],[-113.38720949999991,29.19723799700013],[-113.40553277599986,29.211974587000057],[-113.43103151399994,29.24277174900014],[-113.42753338699987,29.252014825000103],[-113.43461267999996,29.266778881000064],[-113.45012824099985,29.279715222000092],[-113.46497012699989,29.27906795700009],[-113.48192959499988,29.27844388300015],[-113.49608030899991,29.28520104000013],[-113.50316754699993,29.298122615000164],[-113.50460668599992,29.316581293000056],[-113.51168528599993,29.326409491],[-113.52444228999985,29.334423246000043],[-113.53155204099997,29.349202346000126],[-113.53936526099992,29.354764180000146],[-113.54367972599995,29.366527261000087],[-113.55857353899984,29.378214490000016],[-113.56067818599989,29.3861686420001],[-113.57198453299986,29.397790602000082],[-113.58910418499988,29.409598965000114],[-113.59341942699989,29.43362891200009],[-113.58840051699991,29.456846298000144],[-113.57364640499986,29.47852009700013],[-113.56459483599987,29.507679189000115],[-113.56895153199991,29.524473106000087],[-113.5711444059999,29.53994964600004],[-113.55980170599994,29.5442753650001],[-113.55835734699988,29.538080978000078],[-113.54911749599984,29.53313937200012],[-113.53566371399991,29.538128666000105],[-113.52362438299987,29.54311341900008],[-113.52364634999991,29.549928796000174],[-113.51087574599993,29.549337562000105],[-113.51084384199996,29.537581515000124],[-113.49949083099993,29.535137933]]],[[[-114.39478096099991,29.960184073000093],[-114.40707344099987,29.95864837000012],[-114.4220174859999,29.966236160000093],[-114.4158868149999,29.97613127100008],[-114.41854183299992,29.986776446000146],[-114.40184875999985,29.986034297000014],[-114.40006473399986,29.969303853000056],[-114.39478096099991,29.960184073000093]]],[[[-116.10417503199989,30.48258947900011],[-116.1147636439999,30.4820345130001],[-116.1227673649999,30.485167435000147],[-116.12284389899993,30.491572071000107],[-116.1144106829999,30.496223352000083],[-116.10961194599987,30.495346739000027],[-116.1042395039999,30.48808008499999],[-116.10417503199989,30.48258947900011]]],[[[-114.66954505099991,31.720933335000055],[-114.65269934799991,31.689764716000166],[-114.66608639199991,31.689764716000166],[-114.67796790299987,31.69440338700009],[-114.68740800699989,31.701808986000103],[-114.69367428299984,31.710272528000033],[-114.71556555899987,31.695217190000037],[-114.76256262899989,31.715643622000083],[-114.79820716099992,31.756659247000087],[-114.78612219999994,31.803045966000138],[-114.75523841099988,31.797796942000087],[-114.71007239499994,31.76373932500014],[-114.66954505099991,31.720933335000055]]],[[[-117.2393207409999,32.389117730000166],[-117.24320544999995,32.388742780000044],[-117.24670325899991,32.400037487000034],[-117.24802681699991,32.407326538000135],[-117.25106411699996,32.41096301900002],[-117.25369333799989,32.42080208],[-117.2476392349999,32.4186304950001],[-117.24503164799991,32.414626732000116],[-117.24196962899994,32.40442552100011],[-117.2393509989999,32.39713975799999],[-117.2393207409999,32.389117730000166]]],[[[-113.14321834299993,31.98104644800013],[-112.73396683799993,31.854542542000146],[-112.32471533199994,31.727986959000145],[-111.91546382699994,31.60143137600006],[-111.50623815999995,31.474979147000013],[-111.45476843299994,31.458339335000108],[-111.40329870599996,31.441854554000102],[-111.35180314199998,31.425318095000122],[-111.30033341499991,31.40872996000012],[-111.24886368799991,31.39214182600001],[-111.19744563799995,31.375553690000103],[-111.14592423599994,31.35906890900013],[-111.09445450899996,31.34253245100002],[-111.06711767599994,31.3336441040001],[-111.00626867799991,31.327184550000155],[-110.94875280799997,31.327184550000155],[-110.90606807499988,31.32723622700017],[-110.86335750399986,31.32723622700017],[-110.82059525599995,31.32723622700017],[-110.77788468499995,31.32723622700017],[-110.73519995099996,31.32723622700017],[-110.69243770399993,31.32723622700017],[-110.64972713299991,31.32723622700017],[-110.60696488499991,31.32723622700017],[-110.56428015199991,31.32723622700017],[-110.52159541899992,31.32723622700017],[-110.4788590089999,31.32723622700017],[-110.43617427699989,31.32723622700017],[-110.3934895429999,31.32723622700017],[-110.3507531329999,31.32723622700017],[-110.30801672399987,31.32723622700017],[-110.26522863799995,31.32723622700017],[-110.22254390599994,31.32723622700017],[-110.17980749599994,31.32723622700017],[-110.13707108599993,31.32723622700017],[-110.09438635299993,31.32723622700017],[-110.05170161999993,31.32723622700017],[-110.00896521099992,31.32723622700017],[-109.96628047799993,31.32723622700017],[-109.92359574399993,31.327287903000084],[-109.8808076589999,31.327339580000015],[-109.83812292499991,31.327339580000015],[-109.79533483999988,31.327339580000015],[-109.75265010599989,31.327339580000015],[-109.70996537299996,31.327339580000015],[-109.66717728799996,31.327339580000015],[-109.62449255399996,31.327339580000015],[-109.58180782099994,31.327339580000015],[-109.53907141199996,31.327339580000015],[-109.49638667799995,31.327339580000015],[-109.45365026899994,31.327339580000015],[-109.41091385899993,31.327339580000015],[-109.36822912599993,31.327339580000015],[-109.32551855499993,31.327339580000015],[-109.28278214599992,31.327339580000015],[-109.2400715749999,31.327339580000015],[-109.19736100399992,31.327391256000013],[-109.1545987559999,31.327391256000013],[-109.11191402299998,31.327391256000013],[-109.0692034509999,31.327391256000013],[-109.04743046299988,31.327391256000013],[-109.02649287999988,31.327391256000013],[-108.98373063199996,31.327391256000013],[-108.9682819669999,31.327391256000013],[-108.94104589899987,31.327391256000013],[-108.89833532799996,31.327391256000013],[-108.85562475699996,31.327391256000013],[-108.81291418599994,31.327391256000013],[-108.77017777599994,31.327391256000013],[-108.72746720399994,31.327391256000013],[-108.68475663299994,31.327391256000013],[-108.64202022299992,31.327391256000013],[-108.5993096519999,31.327391256000013],[-108.5565474039999,31.327391256000013],[-108.5138368329999,31.327391256000013],[-108.47115209999988,31.327391256000013],[-108.42844152899998,31.327391256000013],[-108.38573095799987,31.327391256000013],[-108.34302038599988,31.327391256000013],[-108.30033565299996,31.327391256000013],[-108.25757340499986,31.327391256000013],[-108.21481115799995,31.32744293200012],[-108.21486283399996,31.33447092700014],[-108.21486283399996,31.341550598000154],[-108.21486283399996,31.34852691700014],[-108.21486283399996,31.35555491100017],[-108.21486283399996,31.362634583],[-108.21486283399996,31.369662578000103],[-108.21486283399996,31.376638896000188],[-108.21486283399996,31.383718567000027],[-108.21486283399996,31.390798239000148],[-108.21486283399996,31.39782623300006],[-108.21486283399996,31.404802552000046],[-108.21486283399996,31.411882223000173],[-108.21486283399996,31.41891021800008],[-108.21486283399996,31.425938213000098],[-108.21486283399996,31.432966208000025],[-108.21491451099988,31.44004587800013],[-108.21496618699989,31.447073873000036],[-108.21496618699989,31.454101868000137],[-108.21496618699989,31.46112986200013],[-108.21496618699989,31.46815785700007],[-108.21496618699989,31.475237529000182],[-108.21496618699989,31.48221384700018],[-108.21496618699989,31.489241842000087],[-108.21496618699989,31.496321513],[-108.21496618699989,31.503401184000136],[-108.21496618699989,31.51037750300004],[-108.21496618699989,31.51740549800014],[-108.21496618699989,31.524485169000073],[-108.21496618699989,31.531461487000158],[-108.21496618699989,31.538489482000085],[-108.21496618699989,31.545569153000187],[-108.21496618699989,31.552597148000117],[-108.21501786399999,31.559625143000016],[-108.21501786399999,31.566653138000117],[-108.21501786399999,31.573732808000145],[-108.21501786399999,31.580760803000075],[-108.21501786399999,31.587788798000144],[-108.21501786399999,31.594816793000074],[-108.21501786399999,31.601844788000093],[-108.21501786399999,31.608872782],[-108.21501786399999,31.61595245400012],[-108.21501786399999,31.622980449000025],[-108.21501786399999,31.630008443000133],[-108.21501786399999,31.637036438000152],[-108.21501786399999,31.64406443300005],[-108.21501786399999,31.65109242800015],[-108.21501786399999,31.658172099000083],[-108.2150695399999,31.6651484180001],[-108.21512121699993,31.672176412000095],[-108.21512121699993,31.67925608400013],[-108.21512121699993,31.68628407900003],[-108.21512121699993,31.693312073000058],[-108.21512121699993,31.700391744000157],[-108.21512121699993,31.707419739000088],[-108.21512121699993,31.71439605700006],[-108.21512121699993,31.721475728000186],[-108.21512121699993,31.72855540000002],[-108.21512121699993,31.73558339500012],[-108.21512121699993,31.74255971300012],[-108.21512121699993,31.749639384000044],[-108.21512121699993,31.756667379000145],[-108.21512121699993,31.763695374000164],[-108.21512121699993,31.770723369000063],[-108.21512121699993,31.77775136399999],[-108.189283,31.777699687000062],[-108.16334143099995,31.777648010000135],[-108.13750321499994,31.777544657000032],[-108.11161332199991,31.777544657000032],[-108.08572342899996,31.777389629000183],[-108.05988521399995,31.777389629000183],[-108.03399532099992,31.77733795200008],[-108.00810542899988,31.77723459900012],[-107.98221553599994,31.777182923000126],[-107.9563773199999,31.777131246000025],[-107.93048742799998,31.77707956900009],[-107.90459753499995,31.777027893000177],[-107.87875931799994,31.776924541000156],[-107.8528694259999,31.776924541000156],[-107.82697953299996,31.77687286400014],[-107.80114131699993,31.776769511000012],[-107.77525142499991,31.77671783500001],[-107.74936153199988,31.776666158000083],[-107.72347163999994,31.77661448200017],[-107.69763342399992,31.77656280500015],[-107.67174353099996,31.776459453000133],[-107.64585363899994,31.776459453000133],[-107.61996374599991,31.776407776000113],[-107.59407385299998,31.7763044230001],[-107.56818396099995,31.776252747000076],[-107.54229406799992,31.776201070000138],[-107.51640417599988,31.776149394000143],[-107.49056595899994,31.77609771700004],[-107.46467606599991,31.7759943650001],[-107.43878617399989,31.775942689000185],[-107.41289628199995,31.775839335000157],[-107.38703222699993,31.77578765900013],[-107.3611423339999,31.77578765900013],[-107.33525244199987,31.775684306000027],[-107.30941422599994,31.7756326290001],[-107.2835243329999,31.77552927700016],[-107.25763444099996,31.775477601000077],[-107.23179622499995,31.775425924000142],[-107.20590633199991,31.775374248000116],[-107.18001643999989,31.775374248000116],[-107.15412654699995,31.775219218000085],[-107.12828832999993,31.775167541000155],[-107.1023984379999,31.775167541000155],[-107.07650854499995,31.775064189000048],[-107.05067032899994,31.775012513000135],[-107.02478043699999,31.774960836000115],[-106.99889054399996,31.77490916],[-106.97300065199994,31.774857483000105],[-106.9471107589999,31.774754130000147],[-106.92122086599996,31.774702453000046],[-106.89533097399993,31.774702453000046],[-106.8694410809999,31.774599101000135],[-106.84360286499997,31.774547425000108],[-106.81771297299994,31.774495748],[-106.79182307999992,31.774444072000097],[-106.76593318799988,31.77439239500016],[-106.74009497099993,31.77428904200003],[-106.7142050779999,31.774237366000037],[-106.68831518599987,31.774237366000037],[-106.66247696999996,31.774134014000094],[-106.63658707699993,31.77408233699999],[-106.61069718499989,31.773978984000152],[-106.58485896899997,31.773927307000132],[-106.55896907599994,31.773875631000024],[-106.51718867999998,31.77382395400012],[-106.50605240999995,31.770258281000153],[-106.5014252479999,31.766343684000063],[-106.49279740499996,31.75904449500011],[-106.47313452199991,31.755065409000036],[-106.42895117299992,31.75847605400004],[-106.3917699799999,31.745918681000134],[-106.35849035699995,31.71754832000012],[-106.33130855399989,31.6821499630001],[-106.31229162699992,31.648611959],[-106.28629838099995,31.580140687],[-106.27474869899991,31.562622376000135],[-106.23265824399998,31.519937643000116],[-106.2228913989999,31.504589742000164],[-106.21873144499999,31.494616191000045],[-106.21743953499994,31.488725077000066],[-106.21542415499988,31.48391917000005],[-106.20924881999991,31.477304586000127],[-106.17447058199987,31.460251363],[-106.16431616299991,31.44779734300012],[-106.1411134449999,31.439167379000178],[-106.09938472499995,31.428883769],[-106.0653041189999,31.410952047000123],[-106.04626135299993,31.404647522000015],[-106.0211466069999,31.402167053000042],[-106.00473933899995,31.396947734000108],[-105.96120194599992,31.37100616500008],[-105.94851538199997,31.36123931900003],[-105.94177160699994,31.352350973000096],[-105.93456274399996,31.335504456000123],[-105.92805151399992,31.326461080000158],[-105.9088020429999,31.317004293000096],[-105.89714900799991,31.309511211000157],[-105.89699397899997,31.305997213000108],[-105.8801474619999,31.30088124600012],[-105.86198319499995,31.288375550000026],[-105.7848302819999,31.211015930000183],[-105.7778539639999,31.192722474000117],[-105.76819047099988,31.18001007100015],[-105.69227779199996,31.137635396000164],[-105.67522456899992,31.131950989000117],[-105.66804154499995,31.127868551000102],[-105.64380529799988,31.10368398000004],[-105.62349645999987,31.09035146100011],[-105.60587479699988,31.08192820300003],[-105.59094030799992,31.07143788700007],[-105.57864131699998,31.052162577000118],[-105.56572220899994,31.016660868000187],[-105.55595536399991,31.00260487900006],[-105.53078894099988,30.991701152000115],[-105.4966824959999,30.95650950100004],[-105.41555049699996,30.90245595400016],[-105.37617305599996,30.859564514000017],[-105.3637707119999,30.850366109],[-105.33431514499999,30.843803202000018],[-105.27700598199992,30.819411926],[-105.27075313399992,30.814347636000104],[-105.26584387299998,30.80840484700009],[-105.25948767099996,30.802978821000025],[-105.24904903299992,30.798844706000107],[-105.24398474199985,30.799103089000152],[-105.23985062699991,30.80153188100003],[-105.23287430899991,30.809128316000013],[-105.22925695899994,30.810213522000094],[-105.21824987899996,30.806802877000063],[-105.21210038299998,30.80571767200017],[-105.20491735899994,30.80241038100017],[-105.1953055429999,30.78794098000004],[-105.18512528499996,30.784633688000138],[-105.17478999899994,30.783961894000143],[-105.16729691699992,30.781171367000113],[-105.16269771299996,30.774918518],[-105.16088903799997,30.764118144000165],[-105.15778845299992,30.76572011300003],[-105.1532409269999,30.763187969000015],[-105.14042517099992,30.750475566000077],[-105.13360388299995,30.757916972000185],[-105.0870434169999,30.70980621400012],[-105.06812984299988,30.702674866000066],[-105.0494746509999,30.69926422100015],[-105.02797725499995,30.69011749300016],[-105.00849523999996,30.676991679000096],[-104.99578283799991,30.661747132000144],[-104.99294063399994,30.651463522000157],[-104.9916487229999,30.640301412000113],[-104.98911657799991,30.62955271400001],[-104.98276037599996,30.62071604400002],[-104.97273514899994,30.61802887000009],[-104.94105749599994,30.614049785000088],[-104.93433955999991,30.610535787000128],[-104.92824173999995,30.599528707000147],[-104.8981660569999,30.569401347000063],[-104.88659053599994,30.55188303700011],[-104.88400671499994,30.54185780900018],[-104.88214636299993,30.520928854000186],[-104.87971757099989,30.510851949000156],[-104.86302608299992,30.50237701500005],[-104.8592537039999,30.497261048000052],[-104.85961543899991,30.491111552000106],[-104.86524816999994,30.479897767000136],[-104.86669510999992,30.47302480000018],[-104.86447302299993,30.46201772100009],[-104.85465450099996,30.448736877000087],[-104.85243241399986,30.4388666790001],[-104.85362097299989,30.423983866000146],[-104.85501623599994,30.41747263600008],[-104.85325923699989,30.412149964000132],[-104.84493933099992,30.401039530000116],[-104.83754960199992,30.39406321200012],[-104.82426875799992,30.38719024700005],[-104.81827429199988,30.380523987000128],[-104.81600052899985,30.371997376000035],[-104.81496700099989,30.36057688400002],[-104.81289994399992,30.350706686000034],[-104.80773230099992,30.346417541000093],[-104.78876704899994,30.335927226000035],[-104.77414261999989,30.311587627000034],[-104.76168859899991,30.28419911700017],[-104.74938960899996,30.26445872100011],[-104.7421549079999,30.259859518000052],[-104.72458492099993,30.252211406000086],[-104.71523148699988,30.243994853000135],[-104.69585282399991,30.208441467000096],[-104.68156429099993,30.192938538000174],[-104.67867041099994,30.17035593700014],[-104.68047908599993,30.1341307580001],[-104.68463903799997,30.111134746000133],[-104.69859167499996,30.075271301000033],[-104.70158890799988,30.055324199],[-104.6991084389999,30.03144968700009],[-104.68047908599993,29.976465963000162],[-104.68011734999995,29.967784322000014],[-104.68246862899989,29.952126363000144],[-104.68047908599993,29.942307841000076],[-104.67652583899986,29.93683014],[-104.66347753999992,29.923084208000045],[-104.66063533599994,29.918433330000184],[-104.65634619199997,29.90820139600011],[-104.63758764699989,29.887995911000033],[-104.62376420099993,29.84148712200009],[-104.61968176299992,29.833063864],[-104.6012074379999,29.81477040700013],[-104.58358577499992,29.80257476800001],[-104.57027909399999,29.787511089000116],[-104.5613907479999,29.74542063400018],[-104.54366573199988,29.716430156000012],[-104.53710282499988,29.70211578400001],[-104.53519079599997,29.68785308800012],[-104.53503576699991,29.677802022000108],[-104.53082413799987,29.66790598600012],[-104.51663895799993,29.654315084000032],[-104.46938085999997,29.62540212000009],[-104.45522151799993,29.61338735000011],[-104.45206925499988,29.607108664000105],[-104.44855525799991,29.59767771400014],[-104.44400773199989,29.589202779000132],[-104.43783239799991,29.585430399000114],[-104.43044266799991,29.582794902],[-104.34902644899988,29.5375780240001],[-104.33848445699992,29.52401296000012],[-104.32060441199995,29.53225535100016],[-104.2927508139999,29.532823792000116],[-104.26717097999995,29.52657094300012],[-104.25102209499995,29.508587545000054],[-104.22714758399987,29.49303293900003],[-104.21869848699997,29.489829000000142],[-104.21229060899992,29.484661357000117],[-104.19451391599999,29.44892710400002],[-104.16164770599997,29.416758524999988],[-104.13978857399994,29.40058380200018],[-104.1054237469999,29.385675150000125],[-104.05731298899993,29.339037171000157],[-104.01914994399995,29.32033030300009],[-103.92812190799992,29.29301930800007],[-103.86412064699994,29.281366272000085],[-103.79417659599993,29.277593893000173],[-103.78366044199997,29.274803365000125],[-103.77422949299991,29.26751698900013],[-103.7694235849999,29.257543437000106],[-103.77771765199995,29.235296733000084],[-103.77076717199996,29.22984486900019],[-103.75906245999997,29.226847637000095],[-103.74947648199989,29.22297190400003],[-103.70247676699991,29.187857768000086],[-103.67312455299994,29.173569235000016],[-103.5849903969999,29.15465566000007],[-103.55801529999995,29.156205953],[-103.55023799699993,29.15465566000007],[-103.54171138599993,29.148816224000186],[-103.53822322699997,29.14240834500005],[-103.53558772799997,29.13512196900017],[-103.52974829199988,29.126776225000086],[-103.47853694699987,29.08205027300015],[-103.43569718499992,29.06112131800016],[-103.4236049,29.05786570200017],[-103.41463903799989,29.052413839000096],[-103.38663041199989,29.028797710000063],[-103.37208349699993,29.02373341900001],[-103.36053381399991,29.029831238000053],[-103.3516713059999,29.039417217000064],[-103.34260209199992,29.041225892000156],[-103.33048396899994,29.02373341900001],[-103.32479956099989,29.02680816700003],[-103.30999426299988,29.03117482500012],[-103.3115144759999,29.02604253800011],[-103.31624711199997,29.01006500200016],[-103.30154516699989,29.00236521400008],[-103.24175553499991,29.00350209600019],[-103.18710770699998,28.990221253000083],[-103.14798864799994,28.985105286000092],[-103.12277054899991,28.996474101],[-103.10920548499992,29.023371684],[-103.10468379799998,29.05786570200017],[-103.09535620199995,29.06029449500012],[-103.09153214499992,29.05786570200017],[-103.08558935599989,29.07571991000013],[-103.08075760999988,29.085202536],[-103.07254105599995,29.09140370699999],[-103.03262101299991,29.110213928000107],[-103.02427526899994,29.11615671800011],[-103.01582617199995,29.126776225000086],[-102.98838598699989,29.177134908000156],[-102.96975663299993,29.192844543000046],[-102.94753576699989,29.182018331],[-102.94226477099996,29.190209046000046],[-102.89689286299992,29.2202847300001],[-102.86986608899987,29.22478057900012],[-102.85878149399987,29.229147237000017],[-102.86795406099996,29.24038686200008],[-102.89213863099992,29.25439117500015],[-102.89970922899998,29.263899638000154],[-102.8993991699999,29.276095276000078],[-102.88549820999994,29.314800924000096],[-102.88518815199994,29.333378601000117],[-102.88306941799996,29.343765564000147],[-102.87697159899992,29.35087107300008],[-102.86495682799995,29.359526876000032],[-102.85986669999997,29.361154683000066],[-102.85387223399992,29.36099965500013],[-102.84656001899995,29.36174896300004],[-102.83767167199994,29.36632232699999],[-102.83803340699993,29.370533956000127],[-102.84557816599998,29.38471913700009],[-102.84454463699991,29.390532736000136],[-102.83519120299987,29.403839417000157],[-102.83498449799991,29.415699158],[-102.83870520099993,29.42693878200005],[-102.84113399299989,29.43830759700013],[-102.83906693599991,29.451950175000047],[-102.83395096899993,29.461355286000114],[-102.82731054799993,29.47050201400019],[-102.79547786499988,29.544270122000125],[-102.78651200399993,29.550497131000114],[-102.78075008199995,29.558248597000112],[-102.78589188699996,29.5718136600001],[-102.77646093799991,29.575947774000138],[-102.77408382199995,29.57961680100014],[-102.77966487699989,29.592303366000078],[-102.7675984299999,29.597290141000045],[-102.76134558099999,29.603413798000087],[-102.7517596029999,29.620156962000138],[-102.75165624999995,29.622456564000075],[-102.73550736499998,29.64950917600011],[-102.73126989799992,29.650594381000115],[-102.72674820999988,29.66449534100009],[-102.69775773199993,29.70955719000013],[-102.69470882199998,29.720615947000127],[-102.69362361799999,29.729400940000133],[-102.6910397949999,29.736816508000132],[-102.68346919799994,29.743715312000017],[-102.67605362999993,29.74449045800013],[-102.63874324599998,29.743715312000017],[-102.62122493499993,29.747280986000096],[-102.58530981499986,29.764695944000106],[-102.56675797599993,29.771052144000137],[-102.56288224299998,29.769346822000085],[-102.55830887999993,29.7590890500001],[-102.55314123599993,29.756737773000157],[-102.54657832899994,29.757874654000158],[-102.54334855199996,29.76012257900008],[-102.54153987699998,29.762473857000103],[-102.53112707599993,29.76991526300004],[-102.52306555199995,29.782317607000106],[-102.51528824899994,29.784720561000157],[-102.40609594799989,29.77727915500005],[-102.40413224299994,29.780793152000097],[-102.3800510259999,29.8113856],[-102.37658870499986,29.821488342000134],[-102.37454748599991,29.848101705000158],[-102.37072342999996,29.857765198000113],[-102.36323034699993,29.864276429000153],[-102.35106054799992,29.866601868000103],[-102.33976924699994,29.870632629000013],[-102.33023494499994,29.888926087000172],[-102.32101070199995,29.893938700000135],[-102.30217464199994,29.889391174000092],[-102.28902299099985,29.87812571200014],[-102.27618139699989,29.869547425000025],[-102.2582755139999,29.87347483300009],[-102.2534437659999,29.855284729000132],[-102.23977534999997,29.849135234000148],[-102.20367936299998,29.846138001000057],[-102.15724808799987,29.824537252000184],[-102.1456467289999,29.81570058200016],[-102.10934403499994,29.80210968100009],[-102.01459529599991,29.810998027000025],[-101.98793025699986,29.80518442800003],[-101.97224646099998,29.818181051000135],[-101.95705358899997,29.814046936000025],[-101.94266170299996,29.80360829699999],[-101.9296134039999,29.797717183000188],[-101.92015661699995,29.79818227100013],[-101.91088069699993,29.799887594],[-101.90237992399992,29.803246562000094],[-101.89545528199993,29.80862091100006],[-101.88741959699995,29.81228993800015],[-101.87752355999996,29.810842997000165],[-101.85760229499994,29.80518442800003],[-101.82409012899994,29.80518442800003],[-101.81269547499994,29.81203155600018],[-101.80597753999992,29.811928203000054],[-101.80298030599991,29.80143788700009],[-101.7945312099999,29.795856832000183],[-101.6322155359999,29.775651347000107],[-101.5802807209999,29.781568298000096],[-101.56490698299991,29.786477560000133],[-101.55397741699994,29.79668365500011],[-101.5497657879999,29.81570058200016],[-101.54645849699989,29.8201447550001],[-101.53917211999993,29.817974345],[-101.53191158099995,29.81110138000004],[-101.52860428999995,29.80143788700009],[-101.53051631799988,29.796476949000134],[-101.53968888399996,29.779191182000076],[-101.54289282299993,29.771052144000137],[-101.52180883899992,29.76593617800016],[-101.50576330699995,29.77389434800004],[-101.49028621499993,29.785547384],[-101.47090755299989,29.791516012000027],[-101.46243261799997,29.788932190000093],[-101.45568884399994,29.775909729000077],[-101.44610286499994,29.771052144000137],[-101.43509578499994,29.770121969000098],[-101.4242178959999,29.77141388000014],[-101.41401179999991,29.774411113000053],[-101.40509761599989,29.778441874000134],[-101.40930924499995,29.76578114900012],[-101.4065445559999,29.75288787900011],[-101.39961991499992,29.7407180790001],[-101.38336767599989,29.718497213000074],[-101.37662390199996,29.700643005000117],[-101.36435074999993,29.67666514100002],[-101.35768448999991,29.667440898],[-101.34902868699996,29.660102845000026],[-101.3362387699999,29.654315084000032],[-101.3097804359999,29.654547628],[-101.30107295799992,29.64950917600011],[-101.30272660399997,29.633851217000156],[-101.3108656419999,29.612767233000127],[-101.31215755199995,29.59785858100018],[-101.3009696049999,29.59413787800018],[-101.28358048499989,29.607806295],[-101.25877579799995,29.620156962000138],[-101.23391943399989,29.62266326900011],[-101.21901078299993,29.61028676400015],[-101.21777054899991,29.584190165000066],[-101.22647802799996,29.55445037800008],[-101.22278316299996,29.540781962],[-101.21286128799996,29.53158355800018],[-101.20177669299996,29.530653382000036],[-101.19141556799993,29.528147075000145],[-101.18270808899987,29.522359314000155],[-101.16356197199988,29.501301168000154],[-101.13477819799995,29.487658590000066],[-101.06796057199999,29.46949432400011],[-101.0377815359999,29.460063375000132],[-101.02961665899997,29.44298431500003],[-101.02594763199995,29.41435557100011],[-101.02217525299996,29.400480449000053],[-101.01623246299994,29.390067648000027],[-101.00806758599991,29.380585023000048],[-100.99830074099997,29.37247182200015],[-100.9873970139999,29.36632232699999],[-100.91473994999987,29.337047628000118],[-100.89122717299998,29.318547465],[-100.87179683499998,29.2964557910001],[-100.86389034099994,29.290616353000118],[-100.81608964099986,29.270772604000015],[-100.79614253799994,29.25767262800015],[-100.78317175399992,29.243074036000092],[-100.76208776899998,29.20865753200006],[-100.77009761699996,29.18728932700004],[-100.76250118099998,29.173775940000056],[-100.70973954299986,29.135561218000177],[-100.70684566299988,29.130186870000117],[-100.70203975499997,29.123649800000138],[-100.69082596899993,29.121014303000138],[-100.6781652429999,29.119412334000103],[-100.66896683799989,29.11620839400003],[-100.66085363799996,29.102669169000034],[-100.65222367399994,29.044817404000028],[-100.63279333499995,29.005155742000156],[-100.6289176029999,28.984330140000097],[-100.63790930199994,28.962884420000147],[-100.63077795499991,28.956683248000086],[-100.6266955159999,28.948337504],[-100.62478348799996,28.937769674000133],[-100.62431839999994,28.924721375],[-100.61884069899996,28.91792592400004],[-100.60695511999994,28.91012278200013],[-100.59496618699988,28.899322408],[-100.5895401619999,28.883457743000083],[-100.5865429279999,28.879788717000093],[-100.57176346899988,28.873199972000105],[-100.56623409099988,28.869789327000074],[-100.5633402109999,28.862089539000078],[-100.56969641099991,28.849609681000075],[-100.56623409099988,28.84250417100007],[-100.5596711839999,28.839377747000114],[-100.54515010599994,28.8389901740001],[-100.53863887599996,28.835631205000183],[-100.53445308499994,28.83023101800002],[-100.52928544199993,28.819947408000036],[-100.52499629799988,28.814831441000038],[-100.51905350799986,28.80496124300005],[-100.49393876199991,28.708377991000116],[-100.48138138899992,28.686053773000037],[-100.4448978269999,28.64378245000016],[-100.44618973899993,28.626496684000145],[-100.43482092299988,28.619132793000162],[-100.41146317599993,28.609314270000098],[-100.4014379479999,28.602260437000083],[-100.39709712799991,28.592726135000092],[-100.39875077399996,28.568644918000146],[-100.39776892099991,28.557586162000135],[-100.3842296959999,28.537173971000087],[-100.36402421099993,28.524797465000134],[-100.3226313889999,28.51040557900002],[-100.35162186799995,28.496711325000106],[-100.35678951099996,28.48932159499999],[-100.35554927599993,28.478185323000062],[-100.34831457599996,28.47025299100001],[-100.34020137599994,28.46425852500009],[-100.33632564399991,28.45857411700014],[-100.33167476499995,28.422013041000113],[-100.3226313889999,28.38689890600007],[-100.29389929199998,28.353412577000157],[-100.27855139199991,28.331088359000105],[-100.27793127499994,28.314887797],[-100.28433915299989,28.296516825000097],[-100.27508907199986,28.277241516000075],[-100.2579324949999,28.26052419100013],[-100.24072424399994,28.249697978000185],[-100.21281896999994,28.245072938000035],[-100.20594600499997,28.242876689000028],[-100.20294877199987,28.234427592000042],[-100.20119177299998,28.220345764000015],[-100.19762609899992,28.20716827400004],[-100.18920283999994,28.20132883800015],[-100.17287308799989,28.198538310000075],[-100.07489457299997,28.15440663700009],[-100.05649776199996,28.137921855000013],[-100.04890132699991,28.115959371000045],[-100.04802282699988,28.1025234990001],[-100.04507727099988,28.09528879900013],[-100.0315380459999,28.08180125000017],[-100.01758540899989,28.07094919900011],[-100.01019567899989,28.06888214100014],[-100.01050573799998,28.06361114500011],[-100.0135029709999,28.056970724000124],[-100.01412308799986,28.050459493000133],[-100.00745682799993,28.03356130000016],[-100.00058386299987,28.020409648000097],[-99.99112707599991,28.00780059900016],[-99.97660599799987,27.992452698000093],[-99.96185237699987,27.98749176000014],[-99.9407167159999,27.983254293000087],[-99.92828853399993,27.975761210000073],[-99.93968318799993,27.961085104000162],[-99.92991634199988,27.94633148200016],[-99.91433589699994,27.928244731000134],[-99.89676590999997,27.912922669000082],[-99.88134049599998,27.906463115000022],[-99.8788083499999,27.901838074000167],[-99.88268408299994,27.89158030200018],[-99.8912882089999,27.876025696000156],[-99.88800675499989,27.86481191000011],[-99.88020361399995,27.85923085600008],[-99.87092769399995,27.8544766240001],[-99.86335709699999,27.845665792000105],[-99.8618584799999,27.83607981400011],[-99.86472652299996,27.814324036000087],[-99.86335709699999,27.804660543000168],[-99.85824112999991,27.80352366200007],[-99.84477941899993,27.793575949000154],[-99.83297135499994,27.782181295000058],[-99.83291967799993,27.77675526899999],[-99.80816666699991,27.77241444900001],[-99.80696277699995,27.77142301000005],[-99.79542842699992,27.761924134000154],[-99.78685013899991,27.748488261000105],[-99.77457698599997,27.73582753500007],[-99.76519771399991,27.731176657],[-99.74734350599996,27.726009013000105],[-99.7404447029999,27.722159119000068],[-99.73631058799997,27.713606669000125],[-99.73403682499996,27.702031148000074],[-99.73065201899993,27.691825053000017],[-99.72305558299988,27.687380880000106],[-99.71067365499991,27.670116197000155],[-99.70569230199996,27.663170471000043],[-99.70036962999991,27.659191386000046],[-99.66473872999993,27.659398092000103],[-99.65869258599989,27.65402374300014],[-99.64864151999987,27.636918843],[-99.64486914099993,27.632733052000148],[-99.63352616399995,27.63306895000015],[-99.61244217899993,27.64363678000002],[-99.60016902699998,27.646427307000167],[-99.59024715199989,27.642060649000186],[-99.57823238199992,27.62281117800016],[-99.57226375399999,27.61847035800018],[-99.55502966299993,27.613509420000025],[-99.5350308839999,27.604827779000075],[-99.51500626599994,27.588601380000156],[-99.50720312499992,27.573770244000126],[-99.50707393499998,27.533436788000174],[-99.51007116699991,27.510518291000054],[-99.50950272699995,27.50002797400019],[-99.50368912899988,27.495583802000098],[-99.4882895519999,27.494653626000126],[-99.48040889499994,27.490777893000185],[-99.47642980999987,27.482509664000034],[-99.47291581299991,27.468298645000075],[-99.47363928199991,27.463802796000053],[-99.47291581299991,27.426647441000156],[-99.47570633999996,27.414761862000134],[-99.4846205239999,27.39176584900018],[-99.48772111099993,27.371870422000157],[-99.49288875399994,27.358847961000137],[-99.49402563499994,27.34820261700004],[-99.49759130899992,27.33879750600009],[-99.51479956099989,27.32179596000016],[-99.52136246799995,27.3112539670001],[-99.49319881199992,27.301280416000097],[-99.48658422899993,27.29761138900001],[-99.48487890699995,27.29482086200012],[-99.48294103999993,27.286707663000026],[-99.48040889499994,27.283297018000113],[-99.46896256599992,27.278232727000116],[-99.46612036199996,27.27652740500015],[-99.45183182799988,27.261179504],[-99.4409022629999,27.244798075000134],[-99.43402929799994,27.226969706000105],[-99.43198807799988,27.207591044000036],[-99.43578629599992,27.188419088000117],[-99.45033321199988,27.145165914000174],[-99.45245194599995,27.125012106],[-99.45017818299993,27.120464579000053],[-99.4457340089999,27.114728496000012],[-99.44141902699994,27.10749379500014],[-99.43940364599989,27.098347067000145],[-99.4420391439999,27.08961374900018],[-99.46172786499997,27.056954244],[-99.44374446699997,27.03457834900003],[-99.43986873399992,27.028945618000094],[-99.42465002499999,27.017886862000083],[-99.41604589899995,27.01488962800009],[-99.40731258199989,27.01452789299999],[-99.39932857299992,27.01266754200016],[-99.39279150499993,27.00476104800013],[-99.39015600599993,26.993598938],[-99.39036271199988,26.97313507100013],[-99.38617692099994,26.96223134400016],[-99.3768493249999,26.953756409000064],[-99.33698095699995,26.92476593],[-99.32597387799987,26.911536763000086],[-99.2939603279999,26.87629343700003],[-99.27967179399991,26.859653625000092],[-99.26279943899992,26.844047343000156],[-99.24827836199988,26.82709747300005],[-99.23409317999992,26.78363759400004],[-99.22135493999996,26.73573354100013],[-99.18112483799993,26.62990020800008],[-99.17838598699988,26.613673808000055],[-99.17128047699995,26.56396108000014],[-99.1648726,26.540448303000076],[-99.14094641099992,26.5314049280001],[-99.11510819499999,26.525617167000135],[-99.1029900719999,26.512077942000147],[-99.09149206599997,26.48401763900013],[-99.0893733329999,26.47115020800014],[-99.09373999099998,26.459781393000142],[-99.10252498399988,26.446965637000076],[-99.1089070239999,26.4342532350001],[-99.10642655499991,26.42303945000016],[-99.0854976,26.407639872000072],[-99.06635148099994,26.404745993000105],[-99.04764461299995,26.406968079000094],[-99.0278783779999,26.406244609000012],[-99.02299495499996,26.403350729000024],[-99.01643204799987,26.39446238300009],[-99.01051509599995,26.392602031000095],[-99.00405554199992,26.393842265000117],[-98.98695064399996,26.400095114000052],[-98.96284358799993,26.39952667300018],[-98.95413610899995,26.39394561800016],[-98.94537695399997,26.378287659000094],[-98.92989986199987,26.392240295000093],[-98.89302872799995,26.36784902000006],[-98.87021358199995,26.37213816300014],[-98.86052425199992,26.366298727000142],[-98.85083492099999,26.364076640000132],[-98.84233414799988,26.365833639000027],[-98.83608129899997,26.37213816300014],[-98.82502254299996,26.366453756000094],[-98.81732275399989,26.368520813000046],[-98.81029475999996,26.372448222000013],[-98.80132889899994,26.37213816300014],[-98.79585119699992,26.368314108],[-98.78083919299988,26.35167429600007],[-98.7463968509999,26.332140605000077],[-98.73593237299988,26.32004832000008],[-98.73991145899996,26.303253479000105],[-98.72621720399994,26.304390360000024],[-98.71316890499989,26.303356833000137],[-98.701412517,26.299119365000095],[-98.69146480399988,26.29023101900016],[-98.70425472099987,26.2766401170001],[-98.7022393389999,26.27162750300012],[-98.69332515499988,26.270542298000052],[-98.6852894699999,26.268475240000082],[-98.66469641199993,26.25064687100003],[-98.65366349299993,26.244290670000012],[-98.64056351799996,26.241810201000035],[-98.58162654599985,26.26227406800008],[-98.5527910969999,26.248321431000093],[-98.52152685599991,26.24093170200008],[-98.49294978899994,26.23059641499999],[-98.47238256899996,26.207652079000137],[-98.45654374199987,26.22594553600011],[-98.42884517499994,26.21772898400009],[-98.39719335999993,26.201140849000083],[-98.36933976299996,26.194009502000043],[-98.3772720949999,26.173648987000103],[-98.3772720949999,26.163572083000147],[-98.3657740889999,26.160161438000145],[-98.33926407899989,26.15985138000015],[-98.333037069,26.153030090000115],[-98.3098085129999,26.121094056000047],[-98.30042924099993,26.111430562000105],[-98.22265620999991,26.075412089],[-98.1850616049999,26.065231832000148],[-98.15023168999994,26.06368153900003],[-98.10310278399993,26.074947001000098],[-98.08331071099994,26.070916240000187],[-98.07514583399984,26.0466283170001],[-98.06545650299998,26.042184143],[-98.04416581299992,26.048798726000182],[-98.01305659999994,26.06368153900003],[-97.99923315399991,26.064301656000012],[-97.94166560999994,26.056808574000158],[-97.87818111199991,26.06373321500014],[-97.80201005099991,26.06373321500014],[-97.78232132999997,26.058617249000136],[-97.78030594899991,26.043217672000154],[-97.76694759099989,26.03965199800011],[-97.67961442099997,26.034639385000116],[-97.65987402399989,26.030660299000047],[-97.64145137499989,26.022495423000137],[-97.62264115499997,26.00905955000009],[-97.61305517699998,25.995985413000042],[-97.60478694699992,25.979965719000077],[-97.59432246899988,25.96637481800009],[-97.56517696199987,25.95474762000013],[-97.52027014199987,25.91278635700003],[-97.50220922899987,25.901882630000056],[-97.48631872599995,25.895733134000082],[-97.46942053299993,25.892942607000137],[-97.44825903299999,25.892322490000154],[-97.44130855399989,25.884932760000154],[-97.435727499,25.869274801000117],[-97.42541805099981,25.854857076000187],[-97.40417903699984,25.851394756000147],[-97.39988989299997,25.85511545900006],[-97.39947648199994,25.861161601],[-97.3978228359999,25.86581248000006],[-97.38989050399985,25.86565745100002],[-97.38312089099989,25.860541484000052],[-97.38012365799997,25.853203431000125],[-97.37601538199988,25.846743877000094],[-97.36599015299996,25.84390167300002],[-97.34573299199985,25.85222157800017],[-97.3451645509999,25.871703593000163],[-97.35227006099993,25.894492899000156],[-97.35511226399989,25.91278635700003],[-97.35110734099982,25.91841908800016],[-97.32844722499992,25.933301900000018],[-97.31098059099988,25.922088114000147],[-97.28764868199995,25.92865102100013],[-97.26920019499994,25.94436065700002],[-97.26635799199988,25.960638733000124],[-97.25305130999996,25.963480937],[-97.2049405519999,25.960638733000124],[-97.1392674623664,25.965827043004154],[-97.13927161399994,25.96580638200014],[-97.16746985599991,25.82859935099999],[-97.15733801999995,25.789536851000136],[-97.16445878799989,25.769517320000077],[-97.16515051999994,25.723334052000055],[-97.17442786399991,25.70416901200018],[-97.18626868399988,25.686957098000065],[-97.19815019399991,25.646673895],[-97.22496497299991,25.584418036],[-97.26154537699995,25.49945709800006],[-97.31944739499994,25.38996002800009],[-97.45897376199986,25.179388739000117],[-97.55520585849992,24.847621974500058],[-97.65143795499992,24.51585521],[-97.70799719999992,24.083889065000065],[-97.71174068899985,24.049139716000084],[-97.7166641919999,24.008124091000084],[-97.72520911399994,23.805650132000054],[-97.73330644399996,23.788397528000033],[-97.75096594999988,23.78192780200014],[-97.82209225199992,23.788397528000033],[-97.82209225199992,23.782212632000082],[-97.79442298099991,23.782619533000073],[-97.77285722599993,23.780096747000144],[-97.75885982999995,23.76902903900013],[-97.75381425699993,23.743719794000082],[-97.76060950399993,23.65192291900003],[-97.75381425699993,23.65192291900003],[-97.74693762899992,23.67914459800012],[-97.74209550699992,23.745184637000037],[-97.73330644399996,23.774807033000073],[-97.72223873599982,23.739325262000094],[-97.74181067599991,23.536363023000078],[-97.75812740799991,23.44037506700009],[-97.76854407499991,23.260077216000113],[-97.74233964799987,22.972072658000158],[-97.75381425699993,22.84931061400006],[-97.75267493399988,22.907049872000115],[-97.75389563699991,22.923244533000158],[-97.76447506399985,22.912014065000065],[-97.79478919199994,22.808335679000052],[-97.80239824099988,22.79376862200003],[-97.83576412699995,22.761175848000065],[-97.83901933499989,22.75372955900009],[-97.83824622299989,22.73969147300012],[-97.84316972599991,22.733303127000013],[-97.84996497299997,22.732367255000113],[-97.87669837099989,22.739447333],[-97.85741126199986,22.718573309000035],[-97.85505123599988,22.698553778000143],[-97.88939368399986,22.625433661000088],[-97.89321855399994,22.6102562520001],[-97.89098059799987,22.596096096000068],[-97.88198808499996,22.587876695000162],[-97.87010657499991,22.587713934000092],[-97.85838782499991,22.59345123900009],[-97.85000566299996,22.602932033000073],[-97.84927324099993,22.61322663],[-97.85334225199989,22.6439476580001],[-97.85000566299996,22.657538153000147],[-97.83995520699989,22.670314846000096],[-97.8342992829999,22.669745184000032],[-97.83136959499987,22.659735419000057],[-97.82957923099988,22.643866278000118],[-97.83006751199989,22.616400458000058],[-97.85000566299996,22.534613348],[-97.82005774599989,22.433294989000146],[-97.82209225199992,22.40428294500005],[-97.81777910099991,22.39069245000009],[-97.80907141799995,22.34031810100005],[-97.8053279289999,22.329169012000037],[-97.7992244129999,22.318833726000136],[-97.77428137899989,22.25348541900014],[-97.77135169199997,22.131659247000144],[-97.76060950399993,22.09585195500013],[-97.61046301999991,21.835760809000032],[-97.50812740799998,21.72280508000007],[-97.48997962099989,21.712836005000085],[-97.43529212099995,21.665350653000147],[-97.42487545499995,21.66103750200007],[-97.41380774599992,21.646714585000083],[-97.34227454299986,21.602972723],[-97.31623287699989,21.56093984600012],[-97.31916256399992,21.519842841000056],[-97.33360755099997,21.478338934000035],[-97.34227454299986,21.435126044000143],[-97.34788977799988,21.417914130000113],[-97.37584387899989,21.373277085000055],[-97.38731848899994,21.359361070000162],[-97.39818274599992,21.341620184000178],[-97.40420488199993,21.318915106000034],[-97.41120357999992,21.27338288000008],[-97.41860917899989,21.27338288000008],[-97.43171139199985,21.342271226000133],[-97.45612545499992,21.39227936400006],[-97.46377519399992,21.424017645000035],[-97.47154700399994,21.43073151200015],[-97.4722387359999,21.437811591000028],[-97.4556371739999,21.455267645000088],[-97.43980872299989,21.466620184000146],[-97.41942298099991,21.47675202],[-97.40086829299992,21.480536200000028],[-97.39073645699995,21.472642320000077],[-97.38048255099991,21.48920319200012],[-97.37425696499986,21.504299221000124],[-97.37108313699989,21.519842841000056],[-97.37022864499988,21.53750234600015],[-97.37897701699985,21.554348049000154],[-97.3992406889999,21.570624091000084],[-97.43854732999998,21.595526434000035],[-97.48688717399989,21.63641998900006],[-97.50161699099986,21.660549221000068],[-97.55581620999992,21.712836005000085],[-97.60204016799993,21.777044989000117],[-97.62507076699993,21.794419664000184],[-97.6302791009999,21.804388739],[-97.63097083199995,21.816839911],[-97.6476130849999,21.884344794000086],[-97.65884355399989,21.907456773000135],[-97.68590247299994,21.924505927],[-97.76756751199994,22.063788153000147],[-97.78111731699991,22.09585195500013],[-97.77700761599995,22.073065497000115],[-97.76012122299997,22.036851304],[-97.75145423099988,22.02570221600017],[-97.74429277299993,22.006415106000034],[-97.7197159499999,21.951808986000074],[-97.71263587099985,21.91095612200003],[-97.70836341099994,21.827460028000147],[-97.68814042899993,21.76080963700015],[-97.67259680899991,21.67527903900016],[-97.65758216099991,21.636542059000035],[-97.57762610599991,21.501044012000094],[-97.56200110599991,21.485663153000147],[-97.54564368399991,21.477362372000172],[-97.53066972599986,21.476263739000117],[-97.51610266799995,21.48183828300013],[-97.50059973899991,21.49310944200012],[-97.48940995999989,21.480780341000084],[-97.49071204299992,21.46214427299999],[-97.50059973899991,21.421087958],[-97.49681555899991,21.40062083500011],[-97.42951412699998,21.271673895000063],[-97.42829342399993,21.260402736000074],[-97.41250566299989,21.25519440300009],[-97.40489661399997,21.24188873900006],[-97.39753170499998,21.20514557500014],[-97.33804277299991,21.054999091000028],[-97.2681371739999,20.92788320500013],[-97.19717363199993,20.81020742400007],[-97.18700110599991,20.776800848],[-97.17784583199992,20.759466864],[-97.18321692599997,20.756048895],[-97.18814042899993,20.751776434000092],[-97.19831295499998,20.738959052000055],[-97.15054277299991,20.647040106000034],[-97.03441321499992,20.5145531270001],[-97.0003149079999,20.485744533000158],[-96.95986894399996,20.46482982000019],[-96.94033769399988,20.449164130000113],[-96.92564856699988,20.41034577],[-96.91087805899991,20.39280833500005],[-96.8836156889999,20.36847565300009],[-96.81480872299994,20.290432033000158],[-96.75328528599995,20.240790106000034],[-96.73428300699987,20.221014716000028],[-96.72154700399992,20.192694403000175],[-96.71157792899993,20.182440497000144],[-96.70116126199994,20.173976955000015],[-96.6952205069999,20.17047760600012],[-96.6844376289999,20.16673411700016],[-96.67601477799985,20.157863674000126],[-96.64110266799992,20.10024648600007],[-96.57510331899991,20.026434637000065],[-96.50987708199989,19.92975495000003],[-96.45612545499995,19.868801174000126],[-96.44009355399994,19.837713934000035],[-96.40514075399994,19.741848049000012],[-96.39366614499987,19.65412018400012],[-96.36001542899986,19.536851304000052],[-96.34923255099997,19.519354559000092],[-96.31550045499996,19.482245184000092],[-96.31029212099989,19.462958075000145],[-96.32070878799986,19.438828843000053],[-96.31916256399984,19.424709377000013],[-96.30479895699995,19.391994533000073],[-96.2984513009999,19.354152736000128],[-96.2903539699999,19.332586981000034],[-96.27830969999988,19.31460195500007],[-96.25450598899991,19.301459052000112],[-96.17162024599989,19.23411692900011],[-96.15737870999986,19.225165106000176],[-96.13194739499997,19.235907294000082],[-96.12214107999992,19.2220726580001],[-96.11872311099992,19.19847239800005],[-96.11241614499988,19.180121161],[-96.10289466099988,19.16583893400012],[-96.08849036399991,19.115301825000117],[-96.07738196499989,19.096096096000153],[-96.06143144399988,19.07851797100004],[-96.04124915299985,19.06565989799999],[-96.01716061099984,19.060614325000145],[-95.99120032499994,19.06102122600008],[-95.97716223899988,19.058254299000012],[-95.97032630099996,19.04608795800011],[-95.95628821499992,18.97581614799999],[-95.94176184799997,18.938950914000102],[-95.92369544199994,18.907660223000065],[-95.90355383999992,18.88190338700012],[-95.86774654899992,18.849107164000102],[-95.84434973899991,18.83340078300013],[-95.82437089799991,18.826646226000108],[-95.80825761599996,18.824530341000084],[-95.78604081899991,18.818833726000104],[-95.76520748599984,18.810451565000065],[-95.75275631399992,18.799994208000083],[-95.75121008999989,18.792792059000032],[-95.75275631399992,18.76581452000009],[-95.77790279899989,18.778509833000054],[-95.82457434799989,18.813299872000083],[-95.87950598899988,18.828517971000068],[-95.91478430899991,18.862494208000115],[-95.93765214799993,18.86823151200018],[-95.95885169199991,18.85639069200012],[-95.93651282499988,18.83836497599999],[-95.90099036399991,18.822333075000117],[-95.88243567599991,18.81704336100013],[-95.87291419199991,18.798773505000057],[-95.85069739499993,18.779852606000034],[-95.80736243399987,18.75214264500015],[-95.80736243399987,18.744696356000176],[-95.82420813699989,18.745266018000123],[-95.85130774599992,18.756170966000028],[-95.86632239499994,18.758978583000058],[-95.87730872299989,18.752386786],[-95.87303626199989,18.73786041900014],[-95.86188717399995,18.723374742000104],[-95.85204016799995,18.71678294500013],[-95.8358455069999,18.717596747000144],[-95.82433020699995,18.720119533000158],[-95.80113684799991,18.731024481000034],[-95.7977595689999,18.735052802000027],[-95.79718990799992,18.73948802299999],[-95.79417883999992,18.743231512000122],[-95.78343665299991,18.744696356000176],[-95.77472896999993,18.744045315000122],[-95.66930091099994,18.714341539000102],[-95.6468806629999,18.71059804900007],[-95.62840735599988,18.700344143000123],[-95.60643469999988,18.681057033000016],[-95.5850317049999,18.669663804000137],[-95.56834876199989,18.68329498900009],[-95.60826575399994,18.70766836100013],[-95.67430579299987,18.729396877000013],[-95.72838294199994,18.757228908000073],[-95.73281816299993,18.799994208000083],[-95.66417395699992,18.751044012000094],[-95.58360755099994,18.72166575700002],[-95.49518795499992,18.707342841000028],[-95.36473548099991,18.703273830000157],[-95.27525794199991,18.70990631700012],[-95.2083634109999,18.708644924],[-95.19005286399992,18.70514557500003],[-95.17300370999986,18.696722723000065],[-95.13809160099994,18.667059637000037],[-95.05142167899993,18.61225006700012],[-95.03840084499983,18.597967841000028],[-95.03331458199992,18.577134507000054],[-95.02424068899992,18.564032294000086],[-95.00255286399992,18.55540599200016],[-94.87193762899994,18.535834052000112],[-94.85505123599985,18.527899481000063],[-94.80785071499989,18.52362702000012],[-94.78693600199992,18.51194896000014],[-94.76919511599992,18.483343817000062],[-94.73859615799991,18.406805731000148],[-94.71800696499989,18.37482330900015],[-94.65274003799986,18.31378815300009],[-94.62828528599994,18.28534577000009],[-94.58088131399992,18.189846096000068],[-94.57502193899987,18.18829987200003],[-94.54332434799991,18.16620514500015],[-94.53087317599987,18.160630601000136],[-94.50023352799988,18.15761953300013],[-94.4669490229999,18.144232489000117],[-94.43846594999988,18.147202867000047],[-94.41006425699993,18.153550523000163],[-94.38841712099986,18.155707098000093],[-94.3541560539999,18.16852448100012],[-94.20714270699992,18.18964264500012],[-94.13487708199992,18.207993882000082],[-94.11164303299992,18.220851955000015],[-94.08458411399995,18.23224518400015],[-94.00780188699993,18.24843984600004],[-93.99181067599994,18.26215241100014],[-93.97256425699989,18.272121486000128],[-93.8614802729999,18.30654531500006],[-93.86831620999992,18.295803127000156],[-93.87751217399989,18.286525783000016],[-93.88540605399996,18.276068427000112],[-93.88878333199997,18.26215241100014],[-93.87828528599991,18.25690338700015],[-93.79820716099994,18.267482815],[-93.7811173169999,18.27277252800009],[-93.76744544199997,18.281195380000142],[-93.7591039699999,18.29222239800016],[-93.75885982999995,18.301499742000047],[-93.76349850199998,18.30825429900007],[-93.76675370999992,18.314846096000153],[-93.7625219389999,18.323919989000146],[-93.75617428299998,18.329291083000026],[-93.74400794199988,18.336004950000145],[-93.73859615799995,18.340643622000083],[-93.72520911399994,18.337103583],[-93.71060136599989,18.33958567900011],[-93.6964005199999,18.346177476000022],[-93.68394934799989,18.354925848000065],[-93.67756100199995,18.33641185100005],[-93.65721594999988,18.333319403000175],[-93.59284420499998,18.344956773000163],[-93.58120683499996,18.356268622000144],[-93.56663977799994,18.389064846000068],[-93.57640540299988,18.411851304000024],[-93.58031165299988,18.416327216000166],[-93.5887345039999,18.41535065300009],[-93.60260982999992,18.4110375020001],[-93.61554928299992,18.404974677],[-93.6212458979999,18.398993231000176],[-93.63267981699994,18.39044830900015],[-93.70384680899987,18.368597723],[-93.71007239499994,18.36334870000003],[-93.71873938699994,18.351874091000084],[-93.7249242829999,18.347479559000092],[-93.7690323559999,18.340643622000083],[-93.80345618399994,18.31708405200014],[-93.81411699099996,18.312079169000082],[-93.82542883999994,18.31146881700012],[-93.83682206899991,18.309312242000132],[-93.84780839799987,18.299709377000152],[-93.83958899599986,18.318548895],[-93.82079016799992,18.327541408000016],[-93.80186926999991,18.333685614],[-93.79320227799991,18.344061591000084],[-93.78197180899991,18.35297272300012],[-93.59666907499988,18.41990794500005],[-93.55235755099994,18.429388739000146],[-93.44469153599997,18.441799221000068],[-93.30553137899994,18.43793366100006],[-93.15575110599991,18.44306061400009],[-93.15575110599991,18.436835028000033],[-93.16567949099993,18.42153554900007],[-93.1730850899999,18.413641669000086],[-93.18309485599991,18.40892161700016],[-93.1783748039999,18.40037669500005],[-93.17642167899993,18.3776716170001],[-93.1700333319999,18.368597723],[-93.16047115799992,18.368963934000035],[-93.14525305899986,18.37445709800006],[-93.13036048099991,18.382228908000158],[-93.12165279899992,18.389064846000068],[-93.12254798099991,18.373968817000062],[-93.13385982999989,18.354885158000073],[-93.13532467399995,18.340643622000083],[-93.12848873599982,18.340643622000083],[-93.11412512899994,18.361639716000028],[-93.10732988199992,18.368597723],[-93.1148168609999,18.37482330900015],[-93.0947973299999,18.37811920800003],[-93.0883682929999,18.39276764500012],[-93.09593665299988,18.408880927],[-93.11823482999992,18.416327216000166],[-93.13939368399991,18.42023346600014],[-93.13760331899994,18.428859768000066],[-93.12193762899994,18.43793366100006],[-93.10114498599985,18.44306061400009],[-92.93976964999987,18.44574092800015],[-92.85573099599995,18.4660466080001],[-92.80678942699987,18.49409408500013],[-92.75930739399988,18.5366724170001],[-92.73839270699992,18.564195054000052],[-92.73058020699992,18.577134507000054],[-92.72630774599992,18.58763255400011],[-92.71690833199997,18.592189846000068],[-92.70750891799985,18.59088776200015],[-92.70327714799993,18.584295966000084],[-92.69025631399987,18.552923895000063],[-92.68219967399992,18.4559593770001],[-92.66909745999993,18.429388739000146],[-92.66226152299993,18.45734284100017],[-92.67027747299997,18.47284577000009],[-92.66942298099988,18.49420807500006],[-92.66226152299993,18.535834052000112],[-92.6683650379999,18.556545315000033],[-92.69298255099991,18.602525132000082],[-92.69587154899995,18.615627346000124],[-92.68101966099988,18.62287018400015],[-92.65632076699988,18.62425364800005],[-92.61082923099994,18.621812242000104],[-92.58897864499988,18.62490469],[-92.48614402599988,18.648482672000156],[-92.4051404139999,18.671062566000145],[-92.29271399599995,18.676825262000175],[-92.18675696499989,18.686224677000027],[-92.06013264399986,18.701617217000134],[-91.97930876699985,18.698430251000147],[-91.94806007299991,18.69122495000012],[-91.92080644399991,18.661932684000035],[-91.86693274599989,18.628363348],[-91.86042232999989,18.621812242000104],[-91.86042232999989,18.609808661],[-91.86656653599997,18.598374742000047],[-91.87661699099993,18.590155341000056],[-91.88829505099994,18.58763255400011],[-91.88365637899992,18.594305731000176],[-91.88084876199989,18.60130442900005],[-91.89264889199984,18.596625067000147],[-91.90510006399985,18.594427802000055],[-91.93236243399994,18.59389883000007],[-91.9425349599999,18.598374742000047],[-91.9406632149999,18.608872789000102],[-91.93724524599992,18.620550848],[-91.9429418609999,18.628648179000137],[-91.95018469999991,18.629543361000017],[-91.95628821499992,18.627386786000116],[-91.97606360599994,18.611558335],[-91.98070227799985,18.611273505000057],[-91.98534094999988,18.613836981000148],[-91.99445553299998,18.615627346000124],[-92.0082087879999,18.61298248900006],[-92.01138261599996,18.607367255000057],[-92.00503495999993,18.602362372000115],[-91.99071204299995,18.60130442900005],[-91.99071204299995,18.59389883000007],[-92.00357011599995,18.590236721000036],[-92.01646887899997,18.58966705900015],[-92.0284724599999,18.593085028000147],[-92.03913326699984,18.60130442900005],[-92.03726152299987,18.59544505400011],[-92.0366918609999,18.591050523000135],[-92.03538977799991,18.58673737200003],[-92.03164628799996,18.580796617000104],[-92.03990637899994,18.574204820000134],[-92.04600989499994,18.56663646],[-92.05016028599988,18.557603257000082],[-92.05280514199987,18.546698309000092],[-92.04775956899994,18.550726630000057],[-92.03164628799996,18.560370184000035],[-92.01374264199993,18.546332098000093],[-92.00389563699989,18.541734117000047],[-91.99071204299995,18.53925202000012],[-91.96861731699994,18.545721747000027],[-91.95518958199995,18.547674872000172],[-91.94912675699996,18.54303620000006],[-91.94261633999987,18.529974677000055],[-91.92662512899997,18.51829661700016],[-91.90672766799989,18.509711005000057],[-91.88829505099994,18.505764065000065],[-91.91502844999984,18.52558014500009],[-91.94298255099989,18.54197825699999],[-91.96418209499988,18.562323309000178],[-91.97028561099987,18.59389883000007],[-91.95006262899994,18.584295966000084],[-91.93883216099992,18.57526276200018],[-91.92625891799986,18.572333075000145],[-91.90196692599997,18.580796617000104],[-91.91502844999984,18.560370184000035],[-91.90135657499991,18.555731512000094],[-91.88817298099988,18.548163153000147],[-91.87816321499989,18.537990627000013],[-91.87401282499985,18.52558014500009],[-91.88829505099994,18.532416083],[-91.8893123039999,18.529242255000142],[-91.88906816299996,18.526800848],[-91.89004472599991,18.525458075000113],[-91.89452063699991,18.52558014500009],[-91.87694251199989,18.51439036700016],[-91.83722896999986,18.503241278000147],[-91.82628333199989,18.491441148000163],[-91.82909094999984,18.477280992000075],[-91.8542374339999,18.44830963700015],[-91.86042232999989,18.43317291900017],[-91.85228430899988,18.420152085],[-91.83397376199991,18.402777411],[-91.81427975199998,18.388657945000162],[-91.80207271999988,18.38564687700007],[-91.79234778599994,18.401556708],[-91.79649817599989,18.415920315000065],[-91.80601966099987,18.43121979400003],[-91.81261145699995,18.450506903000147],[-91.80443274599993,18.442206122000172],[-91.79454505099994,18.437323309000092],[-91.7834366529999,18.435614325000085],[-91.77159583199995,18.436835028000033],[-91.78209387899992,18.450140692000147],[-91.79649817599989,18.462632554000052],[-91.80516516799989,18.475897528000175],[-91.79832923099988,18.491441148000163],[-91.77281653599997,18.478501695000162],[-91.7117406889999,18.462795315],[-91.68224036399994,18.450506903000147],[-91.66356360599985,18.456203518000123],[-91.61815344999988,18.445257880000085],[-91.5928848949999,18.44306061400009],[-91.54442298099991,18.449164130000057],[-91.52131100199998,18.455064195000105],[-91.50405839799987,18.464178778000086],[-91.5025935539999,18.44969310100005],[-91.49583899599986,18.43960195500007],[-91.48648027299993,18.436428127000013],[-91.47740637899994,18.44306061400009],[-91.47541256399988,18.454657294000086],[-91.48249264199987,18.484686591000138],[-91.48363196499989,18.498277085],[-91.49046790299991,18.498277085],[-91.49201412699995,18.492865302000055],[-91.49583899599986,18.48517487200003],[-91.49730383999992,18.47776927300005],[-91.50804602799992,18.47719961100007],[-91.53404700399992,18.46580638200011],[-91.53888912699992,18.471014716000113],[-91.53404700399992,18.480861721000124],[-91.5116267569999,18.505275783000073],[-91.50405839799987,18.51194896000014],[-91.48045813699991,18.52431875200007],[-91.42381751199994,18.54433828300013],[-91.39488684799993,18.560370184000035],[-91.37930253799993,18.554836330000015],[-91.36164303299992,18.558010158000073],[-91.34504146999987,18.565619208000115],[-91.3328344389999,18.57343170800003],[-91.32408606699991,18.584295966000084],[-91.30724036399991,18.615383205000015],[-91.30174719999988,18.621812242000104],[-91.26821855399993,18.619126695000134],[-91.25133216099994,18.61969635600009],[-91.24400794199994,18.62518952000012],[-91.23615475199993,18.63540273600007],[-91.19701087099992,18.646389065000122],[-91.18199622299991,18.65656159100017],[-91.19912675699992,18.663234768000123],[-91.2123103509999,18.661322333000058],[-91.23721269399991,18.649115302],[-91.2848201159999,18.636704820000162],[-91.29865475199989,18.628648179000137],[-91.26642818899987,18.704291083000115],[-91.26553300699995,18.735663153000147],[-91.28563391799992,18.76581452000009],[-91.30235755099994,18.78095123900009],[-91.31061764199984,18.784491278000147],[-91.32258053299995,18.785630601000022],[-91.33259029899995,18.782904364000117],[-91.33665930899991,18.77659739799999],[-91.33967037699992,18.769924221000124],[-91.34650631399992,18.76581452000009],[-91.36701412699998,18.771226304000137],[-91.39537512899992,18.806586005000057],[-91.41470292899993,18.813625393000123],[-91.40111243399988,18.83738841400013],[-91.38072669199991,18.85944245000003],[-91.35773678299992,18.875637111000074],[-91.31110592399992,18.890814520000063],[-91.28050696499992,18.912014065000147],[-91.25304114499994,18.937079169000143],[-91.23721269399991,18.95758698100009],[-91.26085364499994,18.952622789000046],[-91.32599850199998,18.902980861000128],[-91.39126542899987,18.87128327000009],[-91.41681881399985,18.850165106000148],[-91.41470292899993,18.826646226000108],[-91.42418372299994,18.82184479400003],[-91.42902584499993,18.826646226000108],[-91.45213782499988,18.811590887000094],[-91.46426347599987,18.80829498900006],[-91.48363196499989,18.80735911700016],[-91.50340735599991,18.80955638200005],[-91.5052791009999,18.81655508000013],[-91.48241126199989,18.842637437000022],[-91.43118799199993,18.88011717300013],[-91.36691320999998,18.914069137000084],[-91.28174767499986,18.965560969000038],[-91.16161048099991,19.016262111000046],[-91.07957923099991,19.087347723000065],[-91.05899003799996,19.097154039000102],[-91.01366126199986,19.113348700000145],[-90.93553626199994,19.163072007000054],[-90.8565567699999,19.258286851000108],[-90.83592688699989,19.272284247000172],[-90.80308997299989,19.282904364000114],[-90.76935787699988,19.309230861000046],[-90.74242102799994,19.342962958000115],[-90.73009192599997,19.375921942],[-90.71434485599991,19.569891669000114],[-90.70494544199991,19.61188385600009],[-90.7027888659999,19.632554429000024],[-90.70498613199989,19.65477122600005],[-90.70872962099992,19.67096588700012],[-90.70946204299986,19.68748607000019],[-90.7027888659999,19.71112702000012],[-90.68370520699992,19.752915757000054],[-90.66454016799995,19.78192780200014],[-90.60673300499988,19.821219543000055],[-90.51685638199993,19.881652146000093],[-90.47782273799993,19.922101023000025],[-90.46825110599988,19.96430084800012],[-90.46385657499991,19.97785065300009],[-90.4625544909999,19.99567291900017],[-90.46719316299993,20.013332424000065],[-90.49738521999983,20.067368882000082],[-90.50023352799988,20.079250393000123],[-90.5001521479999,20.088120835000083],[-90.49738521999983,20.108343817],[-90.49665279899992,20.184637762000037],[-90.48729407499988,20.23460521000008],[-90.48989824099995,20.290228583],[-90.48827063699994,20.312079169000143],[-90.47565670499993,20.36847565300009],[-90.47447669199994,20.408514716000024],[-90.48957271999984,20.490545966000138],[-90.48989824099995,20.534125067000062],[-90.46690833199989,20.618882554000052],[-90.45938066299993,20.715521552000084],[-90.44912675699989,20.742132880000113],[-90.39321855399993,20.804144598000065],[-90.37905839799993,20.827460028000175],[-90.36705481699991,20.881496486000074],[-90.34190833199992,20.939154364000117],[-90.33910071499986,20.972357489000142],[-90.34654700399994,20.972357489000142],[-90.3601781889999,20.917710679],[-90.37808183499993,20.880682684000146],[-90.38068600199993,20.873032945000134],[-90.38532467399997,20.849107164000156],[-90.39806067599991,20.820746161000116],[-90.41755123599992,20.79710521],[-90.4421280589999,20.787420966000052],[-90.4421280589999,20.794256903000147],[-90.4222305979999,20.81956614800002],[-90.36009680899991,21.000392971000153],[-90.34968014199993,21.016750393000063],[-90.33238684799991,21.032456773000135],[-90.22008216099991,21.09837474200016],[-90.19945227799988,21.114162502000042],[-90.13361568899992,21.13686758000007],[-90.09947669199991,21.164129950000145],[-90.07774817599993,21.173732815000122],[-90.06574459499993,21.17715078300013],[-90.03490149599986,21.180568752000156],[-89.98216712099986,21.198919989],[-89.9215388659999,21.240668036000145],[-89.90428626199989,21.246730861000128],[-89.88638261599993,21.249823309000032],[-89.78595943899987,21.284572658000073],[-89.67756100199995,21.301906643000066],[-89.59805253799996,21.301906643000066],[-89.45905514199993,21.325100002000013],[-89.26915442599997,21.343003648000078],[-89.18708248599995,21.36554596600014],[-89.14736894399995,21.37026601800015],[-89.12315833199995,21.36347077000012],[-89.1126195949999,21.362779039000188],[-89.1026912099999,21.36538320500007],[-89.0815323559999,21.3744164080001],[-89.07477779899995,21.37641022300012],[-88.9890844389999,21.390082098000065],[-88.92296301999988,21.408596096000096],[-88.87877356699991,21.413072007000054],[-88.85952714799987,21.417914130000113],[-88.82396399599992,21.43162669500005],[-88.70270748599995,21.45856354400003],[-88.66755123599988,21.480129299000126],[-88.60545813699989,21.534084377000127],[-88.58592688699989,21.541815497000144],[-88.52354895699992,21.54840729400003],[-88.50413977799991,21.554185289000188],[-88.46764075399997,21.570135809000092],[-88.44782467399995,21.575100002000156],[-88.36929277299993,21.575100002000156],[-88.35240637899994,21.571844794000114],[-88.31818600199995,21.557766018000063],[-88.30040442599997,21.55459219],[-88.28270423099988,21.556708075000117],[-88.25035559799994,21.566107489000117],[-88.19517981699991,21.571437893],[-88.17723548099987,21.576727606000176],[-88.16388912699995,21.58563873900003],[-88.14928137899994,21.591131903000033],[-88.08478756399987,21.589300848000065],[-88.10456295499989,21.596584377000067],[-88.1286514959999,21.601507880000142],[-88.15221106699997,21.60114166900003],[-88.18675696499989,21.583156643000095],[-88.22695878799996,21.574774481000034],[-88.23509680899988,21.573797919000143],[-88.23058020699992,21.58226146],[-88.21019446499993,21.593247789000046],[-88.18797766799989,21.600409247000087],[-88.16075598899988,21.604966539000046],[-88.13890540299994,21.613999742000047],[-88.12946529899992,21.616034247000172],[-88.11497962099989,21.614203192],[-88.07111568899984,21.602972723],[-87.98542232999995,21.602972723],[-87.96206620999996,21.60008372600008],[-87.89976966099988,21.575100002000156],[-87.85789954299989,21.56439850500011],[-87.76984615799995,21.55263906500015],[-87.70978756399987,21.536851304000024],[-87.70628821499986,21.533433335],[-87.71483313699989,21.526678778000143],[-87.72500566299993,21.523260809000064],[-87.7376195949999,21.522406317000147],[-87.74982662699998,21.52460358300014],[-87.75918535099991,21.530340887000094],[-87.7743220689999,21.53676992400004],[-87.84455318899987,21.54840729400003],[-87.86563066299988,21.55459219],[-87.84170488199993,21.536322333000115],[-87.81135006399987,21.521063544000143],[-87.77806555899984,21.51064687700007],[-87.7455134759999,21.506781317000062],[-87.67690995999996,21.506781317000062],[-87.64484615799998,21.50031159100014],[-87.62840735599988,21.499497789000046],[-87.61180579299992,21.506781317000062],[-87.65428626199989,21.50861237200003],[-87.67454993399991,21.513576565000093],[-87.6905818349999,21.52358633000007],[-87.68565833199993,21.528753973000065],[-87.61856035099996,21.520453192],[-87.56273352799988,21.501410223],[-87.53978430899988,21.49933502800009],[-87.51065019399994,21.500677802000084],[-87.50194251199986,21.49933502800009],[-87.49844316299996,21.495266018000123],[-87.49453691299995,21.488104559000174],[-87.48753821499989,21.481756903000143],[-87.47459876199989,21.480129299000126],[-87.48151607999998,21.4759789080001],[-87.48753821499989,21.473578192000147],[-87.49242102799985,21.474432684000064],[-87.49571692599989,21.480129299000126],[-87.50194251199986,21.480129299000126],[-87.49274654899997,21.46849192900011],[-87.47411048099988,21.46710846600014],[-87.4299210279999,21.472642320000077],[-87.4083552729999,21.470282294000114],[-87.35106360599988,21.45213450700011],[-87.28929602799988,21.454575914000046],[-87.27257239499994,21.448431708000058],[-87.25694739499994,21.440619208000086],[-87.2381892569999,21.443019924000012],[-87.16612708199997,21.472642320000077],[-87.1555883449999,21.481756903000143],[-87.14244544199993,21.501369533000016],[-87.13512122299993,21.510199286000056],[-87.12999426999991,21.519435940000122],[-87.13190670499998,21.528469143000123],[-87.13634192599993,21.536851304000024],[-87.13878333199989,21.544623114],[-87.13687089799993,21.552679755000142],[-87.1348363919999,21.558335679000137],[-87.1383357409999,21.563055731000034],[-87.15306555899988,21.568264065000122],[-87.17577063699994,21.569037177000055],[-87.19985917899996,21.56232330900009],[-87.22183183499988,21.550848700000145],[-87.23810787699992,21.53750234600015],[-87.25658118399994,21.528021552000055],[-87.28050696499989,21.527899481000173],[-87.30479895699997,21.533392645],[-87.32437089799996,21.540920315000065],[-87.33120683499995,21.534084377000127],[-87.33678137899997,21.548244533000073],[-87.33747311099992,21.55459219],[-87.35338294199994,21.54682038],[-87.37950598899988,21.527085679000052],[-87.39952551999993,21.520453192],[-87.39785722599993,21.516058661000116],[-87.39732825399994,21.515326239000085],[-87.39606686099995,21.51544830900015],[-87.39207923099988,21.513617255000085],[-87.40233313699991,21.509466864000146],[-87.41038977799992,21.512396552000055],[-87.4144587879999,21.521063544000143],[-87.41315670499989,21.534084377000127],[-87.38243567599991,21.558294989000142],[-87.37218176999988,21.56915924700003],[-87.36530514199987,21.573960679000106],[-87.35773678299992,21.575140692000147],[-87.33397376199991,21.574367580000015],[-87.30264238199986,21.569240627000013],[-87.29303951699988,21.56513092700005],[-87.27212480399992,21.560777085000055],[-87.24388587099989,21.568548895000063],[-87.13418535099996,21.619452216000084],[-87.1114802729999,21.623439846000068],[-87.04332434799989,21.602118231000087],[-87.02619381399987,21.59243398600013],[-86.99791419199988,21.56590403900016],[-86.94469153599991,21.493068752000127],[-86.94017493399984,21.482855536],[-86.93366451699987,21.47483958500005],[-86.92918860599991,21.466213283000126],[-86.9247940749999,21.446112372000087],[-86.91852779899995,21.439601955000015],[-86.90941321499989,21.435003973000065],[-86.89858964799986,21.43162669500005],[-86.89476477799988,21.443833726000136],[-86.88536536399994,21.44521719],[-86.86449133999989,21.43854401200015],[-86.83877519399991,21.437933661],[-86.82795162699992,21.43329498900006],[-86.8125707669999,21.382798570000045],[-86.81045488199987,21.37026601800015],[-86.81248938699991,21.354803778000033],[-86.82144120999993,21.329982815000065],[-86.82347571499986,21.318345445000162],[-86.82286536399991,21.269517320000162],[-86.81505286399991,21.20477936400006],[-86.7909236319999,21.1583519550001],[-86.74156653599991,21.164129950000145],[-86.74425208199989,21.15468984600012],[-86.74746660099994,21.148993231000144],[-86.7510880199999,21.1440290390001],[-86.77257239499994,21.099025783000044],[-86.77717037699996,21.091986395000063],[-86.78994706899991,21.064886786000116],[-86.78880774599989,21.05853913],[-86.78368079299989,21.04905833499999],[-86.78254146999984,21.044012762000147],[-86.78368079299989,21.03595612200003],[-86.78673255099997,21.035101630000113],[-86.79112708199995,21.03620026200015],[-86.79621334499987,21.033840236000017],[-86.80223548099988,21.029852606000034],[-86.81753495999993,21.024725653000033],[-86.82347571499986,21.020168361000074],[-86.82774817599997,21.01264069200012],[-86.82994544199997,21.00446198100012],[-86.83092200399994,20.982611395000063],[-86.83315995999993,20.97101471600014],[-86.85081946499994,20.917710679],[-86.8751521479999,20.865301825000117],[-86.87531490799994,20.855047919000086],[-86.94322669199994,20.762274481000148],[-87.03636633999989,20.663275458000058],[-87.05679277299987,20.630438544000167],[-87.06745357999988,20.61920807500014],[-87.12262936099992,20.5866559920001],[-87.13809160099996,20.57184479400003],[-87.18040930899986,20.547186591000028],[-87.23497473899992,20.492580471000068],[-87.35391191299989,20.326971747000087],[-87.36534583199995,20.293931382000054],[-87.37840735599994,20.291001695000105],[-87.3846736319999,20.284165757000025],[-87.3846736319999,20.27537669500005],[-87.37901770699989,20.26666901200015],[-87.4100642569999,20.246283270000063],[-87.4304906889999,20.221014716000028],[-87.44399980399996,20.191148179000137],[-87.46589107999989,20.111761786],[-87.47130286399994,20.069037177],[-87.46776282499988,19.98484935100008],[-87.46043860599984,19.96238841400016],[-87.4378149079999,19.921535549000126],[-87.4330134759999,19.89984772300015],[-87.43419348899994,19.889227606000087],[-87.4425349599999,19.853094794000143],[-87.44774329299989,19.848944403000033],[-87.45445716099994,19.84711334800015],[-87.46092688699994,19.841498114000146],[-87.47427324099996,19.79706452000012],[-87.47980709499987,19.784328518000066],[-87.4827367829999,19.825506903000147],[-87.48176021999993,19.83665599200016],[-87.47834225199992,19.841498114000146],[-87.46703040299994,19.84243398600013],[-87.46043860599984,19.849554755],[-87.45238196499992,19.851996161000116],[-87.44733639199988,19.861965236000017],[-87.44522050699987,19.874335028000147],[-87.44391842399996,19.913478908000098],[-87.46165930899988,19.928778387000065],[-87.46621660099993,19.93829987200014],[-87.46776282499988,19.954413153000118],[-87.47101803299992,19.96214427300013],[-87.47801673099988,19.964829820000105],[-87.48501542899987,19.9623070330001],[-87.48827063699991,19.954413153000118],[-87.48648027299993,19.946478583000058],[-87.47789466099991,19.938177802000084],[-87.47459876199989,19.930853583000058],[-87.47093665299992,19.89891185100005],[-87.47154700399989,19.884711005000057],[-87.47459876199989,19.87563711100013],[-87.46959387899994,19.88043854400003],[-87.4649552069999,19.883856512000037],[-87.45470130099989,19.889308986000074],[-87.49693762899992,19.829657294000086],[-87.50560462099992,19.820990302],[-87.51048743399987,19.817084052],[-87.51744544199997,19.809149481000034],[-87.52525794199994,19.80288320500007],[-87.53294837099989,19.803900458000058],[-87.54206295499993,19.812689520000035],[-87.5496720039999,19.81761302299999],[-87.55687415299992,19.814886786],[-87.56456458199995,19.800482489000146],[-87.5799454419999,19.79901764500009],[-87.60041256399987,19.77138906500006],[-87.61831620999993,19.736883856000148],[-87.6287328769999,19.70856354400011],[-87.6465551419999,19.677639065000065],[-87.65831458199995,19.64484284100014],[-87.66734778599997,19.63377513200011],[-87.68004309799994,19.635972398000106],[-87.66909745999996,19.64227936400006],[-87.65884355399993,19.655462958],[-87.6542048819999,19.670843817000147],[-87.66014563699994,19.68378327000015],[-87.67048092399995,19.681870835],[-87.72419186099992,19.682033596000153],[-87.73468990799998,19.68378327000015],[-87.74120032499988,19.671698309000032],[-87.74425208199997,19.65180084800015],[-87.74437415299985,19.630601304000052],[-87.74209550699987,19.61493561400009],[-87.7315160799999,19.600531317000033],[-87.70274817599997,19.58331940300009],[-87.70055091099987,19.57391998900006],[-87.69310462099992,19.570135809000064],[-87.6832576159999,19.567572333000143],[-87.67198645699987,19.566717841000056],[-87.66014563699994,19.5677757830001],[-87.66637122299991,19.552476304000137],[-87.66926021999993,19.52334219000006],[-87.67381751199987,19.505682684000146],[-87.65440833199997,19.507473049000154],[-87.64159094999992,19.518052476000022],[-87.63097083199989,19.532782294000086],[-87.61856035099996,19.546616929],[-87.60728919199997,19.552679755],[-87.57852128799993,19.56146881700006],[-87.56456458199995,19.5677757830001],[-87.53669186099991,19.56028880400011],[-87.5155330069999,19.548000393000066],[-87.50938880099991,19.546616929],[-87.50291907499994,19.55003489800002],[-87.50080318899992,19.556341864000146],[-87.49941972599993,19.562974351000104],[-87.49571692599989,19.5677757830001],[-87.48672441299988,19.56781647300009],[-87.4801326159999,19.56281159100014],[-87.47435462099995,19.56028880400011],[-87.46776282499988,19.5677757830001],[-87.46401933499993,19.56517161700019],[-87.46174068899987,19.562974351000104],[-87.45909583199997,19.56142812700007],[-87.45470130099989,19.56028880400011],[-87.46776282499988,19.554103908000158],[-87.46776282499988,19.546616929],[-87.44139563699986,19.553656317000062],[-87.42674719999985,19.573553778000147],[-87.42577063699987,19.59210846600014],[-87.44041907499988,19.59503815300009],[-87.43443762899996,19.584173895],[-87.43407141799986,19.57713450700011],[-87.44391842399996,19.57391998900006],[-87.47459876199989,19.57391998900006],[-87.50226803299998,19.577948309000035],[-87.51524817599997,19.58173248900006],[-87.52920488199992,19.587591864],[-87.50877844999987,19.58844635600012],[-87.44733639199988,19.58079661700016],[-87.44733639199988,19.587591864],[-87.44908606699988,19.59389883000013],[-87.44139563699986,19.61888255400008],[-87.44041907499988,19.635972398000106],[-87.42121334499984,19.599839585000083],[-87.4127498039999,19.577622789000102],[-87.41633053299995,19.5677757830001],[-87.42320716099997,19.558010158000158],[-87.4330134759999,19.492010809000035],[-87.44391842399996,19.472560940000122],[-87.45840410099993,19.455023505],[-87.47496497299989,19.44232819200012],[-87.49193274599986,19.437445380000057],[-87.49852454299995,19.43378327],[-87.52611243399986,19.40639883000013],[-87.53477942599994,19.402044989000146],[-87.5707901679999,19.396429755000057],[-87.55256100199995,19.40159739800005],[-87.54539954299989,19.411444403000175],[-87.54246985599988,19.42389557500009],[-87.53669186099991,19.437445380000057],[-87.5716853509999,19.427964585000055],[-87.61766516799989,19.405462958000058],[-87.65566972599987,19.373236395000035],[-87.66706295499995,19.334377346],[-87.66014563699994,19.334377346],[-87.65269934799997,19.354885158000158],[-87.6465551419999,19.354885158000158],[-87.65493730399993,19.33905670800011],[-87.66942298099988,19.323187567],[-87.6758520169999,19.31118398600007],[-87.66014563699994,19.30703359600012],[-87.68114173099987,19.265285549000012],[-87.68785559799991,19.242132880000057],[-87.67690995999996,19.231919664000102],[-87.65868079299987,19.22752513200014],[-87.6490779289999,19.22064850500011],[-87.63898678299991,19.22093333500005],[-87.61856035099996,19.238185940000065],[-87.59251868399988,19.268255927000112],[-87.58193925699993,19.286118882000082],[-87.57762610599994,19.303371486000074],[-87.56712805899988,19.317206122000087],[-87.54279537699989,19.32379791900014],[-87.49571692599989,19.327582098000093],[-87.51618404899995,19.286566473000065],[-87.50422115799992,19.296291408000016],[-87.49396725199988,19.309515692000062],[-87.48094641799992,19.31976959800009],[-87.46092688699994,19.320705471000068],[-87.46092688699994,19.31391022300015],[-87.48086503799993,19.304348049000154],[-87.49697831899991,19.28904857000019],[-87.52301998599998,19.25242747600008],[-87.53343665299988,19.228094794000114],[-87.5449926419999,19.17454661700019],[-87.55719967399993,19.156236070000134],[-87.54889889199988,19.13304271],[-87.56240800699995,19.102118231000148],[-87.58385169199991,19.05320872599999],[-87.60619055899991,19.02041250200007],[-87.62604732999992,18.889349677],[-87.6620173819999,18.76683177300005],[-87.68004309799994,18.738511460000026],[-87.7035212879999,18.711737372000087],[-87.72337805899991,18.681219794000143],[-87.73704993399993,18.64496491100006],[-87.74209550699987,18.60130442900005],[-87.73696855399996,18.55703359600001],[-87.73924719999994,18.535956122000087],[-87.7523494129999,18.515366929000052],[-87.75804602799988,18.49945709800012],[-87.76256262899994,18.429388739000146],[-87.77122962099992,18.40639883000007],[-87.81944739499997,18.338609117000047],[-87.82461503799988,18.323919989000146],[-87.82774817599994,18.30898672100001],[-87.84142005099987,18.27765534100014],[-87.84455318899987,18.26215241100014],[-87.84455318899987,18.1966820330001],[-87.85195878799993,18.1966820330001],[-87.85383053299992,18.223374742000104],[-87.85879472599987,18.245062567],[-87.87498938699991,18.225653387000094],[-87.88719641799989,18.23004791900017],[-87.89098059799991,18.243557033000126],[-87.8823949859999,18.251288153000147],[-87.87425696499989,18.26268138200011],[-87.86839758999994,18.288031317000062],[-87.86534583199993,18.314154364000032],[-87.86563066299988,18.327582098],[-87.86900794199991,18.317368882000082],[-87.87417558499989,18.307440497000144],[-87.88003495999996,18.298651434000092],[-87.88548743399988,18.29222239800016],[-87.89142818899992,18.30410390800013],[-87.88825436099995,18.313625393000123],[-87.88215084499987,18.324530341000113],[-87.87930253799993,18.340643622000083],[-87.88170325399997,18.341986395000063],[-87.89635169199997,18.35805898600013],[-87.89683997299997,18.362738348000065],[-87.8958227199999,18.37132396],[-87.89590410099987,18.38100820500013],[-87.89976966099988,18.389064846000068],[-87.92760169199994,18.39492422100004],[-87.93016516799995,18.3959007830001],[-87.93529212099985,18.400051174000126],[-87.93382727799991,18.40851471600017],[-87.92959550699987,18.415920315000065],[-87.92650305899991,18.416327216000166],[-87.93049068899987,18.432562567],[-87.93517005099987,18.443101304000077],[-87.94505774599992,18.448797919000143],[-87.96467037699995,18.450506903000147],[-87.9913223949999,18.456935940000065],[-88.04356848899991,18.485052802000055],[-88.06737219999991,18.491441148000163],[-88.07778886599988,18.498602606000034],[-88.08023027299993,18.51422760600012],[-88.07872473899997,18.529527085000083],[-88.0772598949999,18.535834052000112],[-88.04381262899993,18.57343170800003],[-88.05052649599989,18.595770575000028],[-88.03990637899994,18.617010809000035],[-88.02440344999994,18.636297919000143],[-88.01646887899996,18.65289948100012],[-88.01427161399988,18.661851304000052],[-88.00438391799989,18.67788320500013],[-88.00218665299988,18.690130927],[-88.00438391799989,18.691229559000064],[-88.00934811099992,18.695990302000055],[-88.01427161399988,18.702053127000127],[-88.01646887899996,18.707180080000157],[-88.01524817599994,18.713568427000084],[-88.01268469999985,18.719549872000087],[-88.01012122299994,18.723578192000062],[-88.00902258999992,18.724269924000012],[-88.00377356699991,18.76544830900015],[-88.00454667899993,18.78685130400011],[-88.01276607999992,18.80365631700012],[-88.02342688699989,18.818101304],[-88.03026282499987,18.835150458000143],[-88.0362849599999,18.874986070000105],[-88.05939693899984,18.856878973],[-88.08413652299993,18.831284898000135],[-88.10391191299992,18.80272044500005],[-88.11204993399984,18.775783596000068],[-88.11412512899997,18.761542059000174],[-88.11953691299993,18.74453359600001],[-88.12730872299991,18.73021067900011],[-88.13621985599988,18.724269924000012],[-88.14293372299991,18.731634833],[-88.14028886599993,18.749212958000115],[-88.13467363199993,18.769517320000134],[-88.13776607999992,18.762193101000108],[-88.14915930899988,18.74998607000005],[-88.16685950399997,18.74542877800009],[-88.19082597599993,18.744696356000176],[-88.19880123599998,18.73993561400009],[-88.2418106759999,18.703843492000132],[-88.24779212099995,18.696275132],[-88.25251217399995,18.68732330900015],[-88.25548255099997,18.676459052000055],[-88.23570716099992,18.684312242000047],[-88.21593176999991,18.699530341000028],[-88.19880123599998,18.71869538],[-88.18712317599989,18.738511460000026],[-88.18089758999992,18.721177476000108],[-88.18561764199984,18.70856354400003],[-88.19294186099992,18.69537995000009],[-88.19465084499984,18.676459052000055],[-88.18932044199997,18.68439362200003],[-88.18089758999992,18.69383372600005],[-88.17076575399997,18.701402085],[-88.16047115799995,18.70376211100013],[-88.15074622299991,18.698553778000147],[-88.15697180899986,18.69110748900009],[-88.16820227799987,18.684881903000118],[-88.17349199099992,18.68329498900009],[-88.19762122299994,18.635199286000116],[-88.22105872299993,18.605780341000028],[-88.24860592399995,18.556626695000187],[-88.25300045499995,18.54075755400008],[-88.27476966099991,18.50983307500003],[-88.28331458199992,18.491441148000163],[-88.29552161399991,18.489406643000148],[-88.29971269399994,18.487453518],[-88.30382239499995,18.484035549],[-88.30382239433331,18.48135036500007],[-88.30951452699993,18.482283834000114],[-88.37144873099996,18.481792908000088],[-88.37907100499993,18.479700013000112],[-88.38491044099993,18.476625265000067],[-88.39077571599992,18.47569508900004],[-88.3983721519999,18.480113424000123],[-88.407983968,18.488950094000028],[-88.41322912699991,18.490758769000124],[-88.41997290099994,18.48900177000003],[-88.4308507899999,18.483782451000124],[-88.45082373099993,18.476883647000037],[-88.45963456199993,18.475720927000125],[-88.46994401099994,18.4785114540001],[-88.47919409199994,18.483420716000026],[-88.48924515799986,18.484505920000018],[-88.5201993419999,18.46156158399999],[-88.52782161499995,18.454146017000152],[-88.53304093499989,18.443319804000126],[-88.53838944599994,18.413089091000113],[-88.54740698299989,18.389059551000074],[-88.55133439199994,18.3636864220001],[-88.5547967119999,18.35221425400006],[-88.56717321799994,18.33350738500009],[-88.59807572499994,18.29947845500014],[-88.60771337899988,18.28338124600016],[-88.61148575899996,18.266379700000144],[-88.61316524299994,18.25056671200015],[-88.6140589309999,18.247028189000034],[-88.61698929899988,18.235425517000138],[-88.62704036499991,18.220310160000125],[-88.63895178299995,18.21160268100006],[-88.6681489669999,18.198244324000044],[-88.69662268099992,18.178064677000137],[-88.69295365399992,18.17517079700015],[-88.68951717199988,18.161243999000177],[-88.69285030099991,18.15000437400012],[-88.71770666499995,18.110032654000165],[-88.7204455159999,18.100084941000162],[-88.72349442599992,18.077502340000038],[-88.72664668799986,18.066727804000024],[-88.73638769599992,18.05192250600008],[-88.74835078999986,18.043292541000042],[-88.76201920599998,18.03564443000006],[-88.7768761809999,18.023758850000135],[-88.78163041199991,18.014715475000074],[-88.79594478399991,17.97559641500014],[-88.80534989499995,17.965002747000156],[-88.85640620899994,17.9283124790001],[-88.86085038299993,17.92112945600006],[-88.86537207099988,17.899011943000133],[-88.8713665369999,17.89095041900005],[-88.88033239799992,17.88846995100006],[-88.92045914799992,17.910949199000168],[-88.93330074099993,17.920354309000132],[-88.94702083399994,17.948466288000148],[-88.9565034589999,17.950533346000114],[-88.96784643599992,17.94825958300011],[-88.97975785399996,17.949448141000133],[-88.99657853199992,17.961850485000113],[-89.01153885999989,17.977818502000147],[-89.02802364099993,17.99208119700002],[-89.0494435229999,17.99921254500005],[-89.13256506399998,17.970273743000106],[-89.15393326799997,17.941076559000162],[-89.1613746749999,17.901440735000094],[-89.16049617499996,17.814314270000022],[-89.3803018809999,17.81452097600008],[-89.60015926199992,17.814727681000033],[-89.82001664299995,17.814986064000024],[-90.03977067099994,17.815141093000037],[-90.25965389099991,17.815347799],[-90.47945959499992,17.81560618100015],[-90.69923946199995,17.81581288700012],[-90.91912268099988,17.816019593000178],[-90.9622208259999,17.816019593000178],[-90.98283972199991,17.810541890000092],[-90.99090124599991,17.80196360300006],[-90.99144384799993,17.526941630500076],[-90.9919864499999,17.25191965800012],[-91.43077103699991,17.254968567000148],[-91.43826411999993,17.253676657000184],[-91.4425015869999,17.237967020000113],[-91.41924719299995,17.22773508700014],[-91.38834468599998,17.221585592000068],[-91.372945109,17.21357574500008],[-91.3648835859999,17.18975291000011],[-91.34452307199987,17.186342265000107],[-91.31775467999998,17.19047638000002],[-91.29041784699987,17.18908111600014],[-91.2795141199999,17.180089416],[-91.27083247999992,17.164276428],[-91.26514807199989,17.14624135399999],[-91.26313269099985,17.130738424000086],[-91.2592052819999,17.124330547000127],[-91.23879309099993,17.119214579000143],[-91.22959468599996,17.11399526000004],[-91.2253572189999,17.10701894200004],[-91.22024125199991,17.089293925000117],[-91.21595210799993,17.07921702100019],[-91.20675370399992,17.06536773700013],[-91.17120031799995,17.028005677000166],[-91.16122676599988,17.023974915000064],[-91.13714554899994,17.026507060000156],[-91.12655187999994,17.02459503200005],[-91.1212292079999,17.018393860000156],[-91.11611324099991,16.99927358000015],[-91.11223750899987,16.990488587000172],[-91.07694250499998,16.94950917600015],[-91.07130977499995,16.93891550700006],[-91.06686560099992,16.918193258000045],[-91.05492834599997,16.908013],[-91.0166877849999,16.894835511000096],[-91.01090002499993,16.890287984000153],[-90.9983426519999,16.87716217000009],[-90.99307165599998,16.874371643000032],[-90.98325313399991,16.87860911000008],[-90.98428666299989,16.887755840000167],[-90.9879556889999,16.896902568000044],[-90.98625036699994,16.901088359000184],[-90.96883540899998,16.901036682000083],[-90.95519283099989,16.89876291900005],[-90.95276403799994,16.890908102000125],[-90.9688870859999,16.874371643000032],[-90.94816483599996,16.864708150000112],[-90.91907100399996,16.836337789000098],[-90.90062251899997,16.826002503],[-90.83173783399994,16.805435283000108],[-90.81995560699993,16.80533193000015],[-90.810602173,16.81292836500013],[-90.79695959599991,16.805435283000108],[-90.79695959599991,16.798665670000062],[-90.80037023999992,16.786831767000038],[-90.78559078,16.774997864000127],[-90.74977901199989,16.75768625900012],[-90.73530961099993,16.746575826000097],[-90.66771683799995,16.652576396000157],[-90.65402258299993,16.616609599000085],[-90.66720007399994,16.593200175000117],[-90.66720007399994,16.586999003000145],[-90.65882849199996,16.58844594300014],[-90.65360917199993,16.590099590000094],[-90.65025020399995,16.593406881000092],[-90.64735632399996,16.600073140000106],[-90.63376542199987,16.592166646000138],[-90.63702103799994,16.577903952000085],[-90.6435322679999,16.561005758000178],[-90.63996659299994,16.54483103400018],[-90.64818314699995,16.529586487000145],[-90.6395015059999,16.525865784000032],[-90.62415360499995,16.524935608000174],[-90.61262976099991,16.518114319000134],[-90.61206131999987,16.507624003000085],[-90.61898596199993,16.500079244000133],[-90.62787430799995,16.492896220000162],[-90.63309362799995,16.483336080000086],[-90.62074296199992,16.48674672500003],[-90.60467159099993,16.48617828400016],[-90.59061560099994,16.483387757000102],[-90.58472448799992,16.480235495000144],[-90.57935013899996,16.48276763900013],[-90.55340856999992,16.490260722000144],[-90.5437192389999,16.490209045000043],[-90.53906835999992,16.468866679000044],[-90.53289302599995,16.45992665600012],[-90.50891516199994,16.47108876500006],[-90.4977530529999,16.468039856000033],[-90.4882187509999,16.461580302000172],[-90.48230179899991,16.456050924000166],[-90.47708247899998,16.444992167000162],[-90.47842606699996,16.436413879000142],[-90.47584224499994,16.430729472000095],[-90.44437129799991,16.426802063000125],[-90.43411352599992,16.422409566000127],[-90.42669795799988,16.417707011000132],[-90.42080684399988,16.415123190000045],[-90.4094638679999,16.416673483000167],[-90.40060135999991,16.420549215000122],[-90.39491695199987,16.419205627000153],[-90.39290157099991,16.404839580000058],[-90.39269486499987,16.39171376600008],[-90.3913771169999,16.385977681000114],[-90.37985327199996,16.367270813000133],[-90.39512365699991,16.37140492700017],[-90.4087403979999,16.372335103000026],[-90.41822302299998,16.367167461000022],[-90.42080684399988,16.353008118000062],[-90.41401139299994,16.353008118000062],[-90.41401139299994,16.360449524],[-90.4071901049999,16.360449524],[-90.39879268399991,16.347582092],[-90.40468379799992,16.331510722000033],[-90.41946325699993,16.317816467000014],[-90.43788590499993,16.31208038300015],[-90.44488806199993,16.308359680000034],[-90.43473364299987,16.301228333000026],[-90.42018672799992,16.296009013000074],[-90.41401139299994,16.29838612900012],[-90.41406306999997,16.28784413700008],[-90.42023840399995,16.2853636680001],[-90.42855830999991,16.28763743100002],[-90.4344752609999,16.291564840000163],[-90.4355087889999,16.288774312000115],[-90.4355087889999,16.28624216800013],[-90.43674902399994,16.284846904000133],[-90.44129654999995,16.2853636680001],[-90.43752416999993,16.28004099600004],[-90.43142635099989,16.268930563000126],[-90.4276798099999,16.263607890000074],[-90.44062475599988,16.265313212000038],[-90.44372534299993,16.26686350500016],[-90.44814367699993,16.271100973000117],[-90.45943497799999,16.25906036400015],[-90.45783300899987,16.249138489000142],[-90.44798864799988,16.241490377000062],[-90.4344752609999,16.23632273400007],[-90.44623164899991,16.230845032000087],[-90.45850480199992,16.221749980000098],[-90.46558447299995,16.20810740200001],[-90.46181209399992,16.189142151000155],[-90.43271826199992,16.173225810000034],[-90.42612951699992,16.163148906000075],[-90.44814367699993,16.15441558900001],[-90.44814367699993,16.148214417000034],[-90.43530208399994,16.13627716100008],[-90.4594866539999,16.116795146000086],[-90.45558508399995,16.099741924000156],[-90.44814367699993,16.099741924000156],[-90.44452632699995,16.10325592000011],[-90.44274348999994,16.104186096000163],[-90.44021134499988,16.104857890000133],[-90.4344752609999,16.10718333000007],[-90.4374208169999,16.098863424000015],[-90.44416459199992,16.084652405000057],[-90.44784120199994,16.079686593000147],[-90.44814367699993,16.079278056000092],[-90.44819509699991,16.07925990800011],[-90.4661529139999,16.072921855000075],[-90.48573828199994,16.07069976800007],[-90.57547440599993,16.070596415000136],[-90.71329545199987,16.07033803400016],[-90.85111649699991,16.070131327000112],[-90.98898921799989,16.069872946000046],[-90.9947978319999,16.069868593000038],[-91.12691361599994,16.069769593000117],[-91.26478633699992,16.069511210000044],[-91.40260738199996,16.06930450500009],[-91.54048010299991,16.069149475000145],[-91.6784045009999,16.06889109300009],[-91.72377640899992,16.06878774000013],[-91.73984777899996,16.060984599000122],[-91.75188838699995,16.046308492000136],[-91.7744709879999,16.008429667000044],[-91.79297115099993,15.977578837000165],[-91.84167618899994,15.896085103000033],[-91.91056087199988,15.780950013000123],[-91.98959997599994,15.64896840400017],[-92.06853572599998,15.516935120000099],[-92.10593123099994,15.454469062000115],[-92.1374462489999,15.401825866000122],[-92.18617712399994,15.320383810000093],[-92.20465144899998,15.289507141000115],[-92.21129187099987,15.27206634500007],[-92.2109301349999,15.253359477000176],[-92.20335953799992,15.237158915000178],[-92.0738067219999,15.073706360000173],[-92.0935987959999,15.029419658000135],[-92.10383072999988,15.017869975000108],[-92.11698238099986,15.012392274000206],[-92.12987565099996,15.010945333000121],[-92.14235550999996,15.00748301200018],[-92.15421525099995,14.995933329000136],[-92.15757421899988,14.963041280000198],[-92.1546803389999,14.90079701800009],[-92.16602331599996,14.870824687000153],[-92.18679724199993,14.847260233000144],[-92.19165482699995,14.835297140000193],[-92.19082800299992,14.814238993000174],[-92.18865759299993,14.805893249000105],[-92.1793816729999,14.781243591000106],[-92.17881323299994,14.773388774000166],[-92.1801051439999,14.75879018200011],[-92.1793816729999,14.751581320000142],[-92.16173417199991,14.702333679000162],[-92.16080399699986,14.683497620000152],[-92.16473140499994,14.668149720000171],[-92.18607377099994,14.629573263000095],[-92.2080620939999,14.570507101000146],[-92.22609716799991,14.549345602000187],[-92.24623383208247,14.546282924364334],[-92.2462458979999,14.546291408000087],[-92.25076249899988,14.550726630000057],[-92.3059382799999,14.615057684000163],[-92.38206946499989,14.684637762000165],[-92.50784257699988,14.807074286000129],[-92.69985917899993,14.999090887000179],[-92.82485917899989,15.135646877000099],[-92.84060624899988,15.161159572000171],[-92.8404434889999,15.18195221600017],[-92.8240046869999,15.17279694200009],[-92.78087317599997,15.158840236000117],[-92.7721248039999,15.1503360050001],[-92.77017167899994,15.131740627000097],[-92.76402747299997,15.112941799000138],[-92.75316321499989,15.09841543200011],[-92.73741614499993,15.092596747000142],[-92.74815833199995,15.112982489000132],[-92.75633704299986,15.15412018400012],[-92.76842200399994,15.171454169000098],[-92.78225663999987,15.179877020000148],[-92.80296790299988,15.188299872000101],[-92.82433020699992,15.192694403000173],[-92.8404434889999,15.18878815300009],[-92.84316972599996,15.20587799700013],[-92.85403398299985,15.20852285400012],[-92.85973059799994,15.201320705000098],[-92.84666907499985,15.18878815300009],[-92.86351477799985,15.191107489000146],[-92.9230037099999,15.237209377000084],[-92.96377519399994,15.253810940000134],[-92.98314368399988,15.265570380000126],[-92.9981990229999,15.293972072000143],[-93.07811438699989,15.348659572000185],[-93.1700333319999,15.448879299000012],[-93.18809973899992,15.477565822000159],[-93.19961503799988,15.490993557000152],[-93.22862708199993,15.50185781500015],[-93.47081458199992,15.700710354000122],[-93.48814856699991,15.708929755000112],[-93.65603593699984,15.839260158000158],[-93.75918535099986,15.906154690000093],[-93.94338945199985,16.010565497000115],[-93.93118242099987,16.016058661000145],[-93.90709387899994,16.014431057000124],[-93.89561926999991,16.017401434000035],[-93.88906816299989,16.006415106000173],[-93.87804114499997,16.005397854000122],[-93.8653865229999,16.012152411000145],[-93.85403398299994,16.024847723],[-93.8739314439999,16.048529364000117],[-93.88524329299992,16.070827541000156],[-93.89810136599993,16.08893463700018],[-93.92296301999997,16.099920966000052],[-94.04263261599988,16.12531159100014],[-94.07376054599986,16.140936591000138],[-94.08360755099989,16.148871161000027],[-94.10265051999988,16.164129950000174],[-94.1163630849999,16.179144598],[-94.12218176999997,16.192450262000122],[-94.12783769399996,16.220851955000157],[-94.14244544199987,16.22675202000009],[-94.1622615229999,16.21967194200012],[-94.18362382699985,16.20917389500015],[-94.22423255099994,16.20355866100006],[-94.26671301999991,16.215277411000145],[-94.30711829299989,16.237616278000175],[-94.34129798099985,16.263820705000015],[-94.3635554679999,16.287014065000122],[-94.37767493399994,16.29535553600003],[-94.39928137899993,16.298610744000072],[-94.41726640499988,16.29250722900015],[-94.41905676999997,16.277736721000096],[-94.41527258999994,16.259792385000036],[-94.41637122299989,16.243963934000092],[-94.42320716099991,16.243963934000092],[-94.4322810539999,16.24880605700018],[-94.43651282499994,16.24555084800012],[-94.43492591099991,16.239691473000093],[-94.4266251289999,16.23651764500012],[-94.41421464799988,16.234035549000012],[-94.4145401679999,16.228583075000145],[-94.42332923099988,16.223822333000058],[-94.43687903599992,16.22284577000009],[-94.3454890619999,16.163153387000094],[-94.29263261599993,16.1411400410001],[-94.2655330069999,16.148382880000113],[-94.34129798099985,16.17568594],[-94.34129798099985,16.18191152600015],[-94.31529700399997,16.180487372000087],[-94.27476966099997,16.165716864000032],[-94.25560462099989,16.162014065000065],[-94.2300105459999,16.163275458000083],[-94.21947180899984,16.16132233300011],[-94.2040909499999,16.154567776000093],[-94.1699519519999,16.134711005],[-94.1699519519999,16.127264716000113],[-94.18362382699985,16.127264716000113],[-94.18362382699985,16.120428778000086],[-94.11282304599992,16.10565827],[-94.08218339799993,16.094753322000127],[-94.05667070199993,16.07575104400003],[-94.0303848949999,16.039740302000055],[-94.01915442599991,16.03107330900015],[-93.98534094999994,16.01797109600001],[-93.97061113199992,16.009792385000097],[-93.9638972649999,15.997503973000121],[-94.34378007699988,16.147731838000155],[-94.35830644399992,16.158351955000015],[-94.39220130099997,16.17767975500014],[-94.43956458199992,16.18679433800004],[-94.53307044199988,16.189357815000122],[-94.52623450399994,16.189357815000122],[-94.5796199209999,16.189846096000124],[-94.60574296799987,16.193548895000063],[-94.62242591099991,16.202337958000143],[-94.63943437399986,16.195705471000068],[-94.65990149599992,16.19399648600016],[-94.70095781199993,16.19558340100009],[-94.72240149599986,16.19965241100006],[-94.72899329299993,16.20937734600001],[-94.72427324099993,16.220851955000157],[-94.7118220689999,16.23029205900015],[-94.62535559799991,16.256496486000103],[-94.58714758999986,16.282416083],[-94.58084062399993,16.326483466000113],[-94.59142005099997,16.337225653000118],[-94.63023841099991,16.348211981000176],[-94.64574133999992,16.356960354000147],[-94.65440833199989,16.363592841000028],[-94.66246497299993,16.365383205000015],[-94.67003333199997,16.363836981000148],[-94.67703202999988,16.36066315300009],[-94.68028723899991,16.344916083000143],[-94.68325761599992,16.34015534100014],[-94.68858801999988,16.337591864000117],[-94.70034745999996,16.334540106000034],[-94.70433508999994,16.332709052000055],[-94.71572831899991,16.322821356000148],[-94.72215735599991,16.315578518000123],[-94.72109941299996,16.31220123900003],[-94.7490535149999,16.298610744000072],[-94.76329505099991,16.293524481000034],[-94.77989661399997,16.26813385600012],[-94.7931208979999,16.257635809000035],[-94.80431067599991,16.27521393400015],[-94.80850175699992,16.286444403000175],[-94.80740312399989,16.298610744000072],[-94.79662024599989,16.308172919000143],[-94.78111731699997,16.31659577],[-94.7726944649999,16.327175197000045],[-94.78319251199989,16.34320709800012],[-94.79763749899985,16.35834381700012],[-94.80190995999996,16.36941152600015],[-94.80284583199995,16.38031647300015],[-94.80740312399989,16.394802151000093],[-94.81436113199987,16.403102932000152],[-94.82705644399994,16.414455471000153],[-94.8410945299999,16.424587307000095],[-94.85208085799985,16.428900458],[-94.87865149599992,16.424627997000083],[-94.90172278599997,16.412868557000124],[-94.92137610599991,16.395331122000172],[-94.96507727799991,16.333156643000066],[-94.97496497299991,16.326483466000113],[-95.03331458199992,16.326483466000113],[-95.02745520699997,16.308539130000057],[-95.03555253799989,16.302557684000035],[-95.04759680899991,16.300726630000057],[-95.05382239499997,16.295192776000064],[-95.06517493399994,16.278265692000062],[-95.06383216099994,16.268255927000084],[-95.04380145399995,16.26104238000009],[-94.99935431299984,16.25104437],[-94.96462082399998,16.247719630000077],[-94.9305691719999,16.24972963600011],[-94.90206175599994,16.251743943000164],[-94.88954087799993,16.253085292000108],[-94.86888587099986,16.257635809000035],[-94.8592423169999,16.26447174700014],[-94.84182695199993,16.2837181660001],[-94.83409583199992,16.285549221000068],[-94.82803300699993,16.270331122000087],[-94.85875403599991,16.25629303600014],[-94.9011531239999,16.24652741100003],[-94.93032792899993,16.243963934000092],[-94.89635169199991,16.234401760000125],[-94.80553137899992,16.237127997000087],[-94.77635657499988,16.226589260000125],[-94.76150468699993,16.203924872000172],[-94.76695716099994,16.198675848000093],[-94.81912187399986,16.213649807000124],[-94.89587853999991,16.211687975000146],[-94.94869982099993,16.20167072800008],[-94.99278723899988,16.196437893],[-95.01814090899987,16.190321197000074],[-95.0653357299999,16.183643968000137],[-95.10280762799991,16.184303123000163],[-95.12293348499989,16.188299959000105],[-95.13611806599991,16.18829321500006],[-95.14930138599993,16.186952031000132],[-95.15554251499995,16.18161432500007],[-95.15415049499987,16.175614735000167],[-95.14928870999995,16.16828399400005],[-95.16104081899994,16.163234768000095],[-95.18814212999985,16.167596119000066],[-95.19854779499991,16.158266672000153],[-95.2158968519999,16.158257720000123],[-95.23324719399992,16.158247691],[-95.2471140879999,16.14757235200001],[-95.24848774199988,16.13424154900015],[-95.26860558699991,16.128226753000135],[-95.28109314099989,16.118888206000076],[-95.28038754899988,16.108225094000133],[-95.28454994999993,16.104223394000044],[-95.29768952099988,16.101529043000042],[-95.30536620099991,16.093540603000164],[-95.3372892299999,16.08883832700012],[-95.35326250299991,16.079489701000014],[-95.37823499599989,16.04745414100016],[-95.37264809299984,16.0274582120001],[-95.38443922799988,16.02143877200014],[-95.3991822589999,16.008758581000095],[-95.42552380299989,15.99938792100015],[-95.42826260399994,15.985387903000133],[-95.43447825199988,15.975379910000028],[-95.49277936299984,15.974653980000182],[-95.4968933619999,15.965308182000157],[-95.57236940599995,15.95712205300016],[-95.5813452189999,15.945101371000147],[-95.60905023299992,15.941702055000079],[-95.61456154099994,15.929018963000047],[-95.66231329099989,15.911570435],[-95.70588651199995,15.908834483000119],[-95.73295357599994,15.903396902000068],[-95.75512777899993,15.89932060600013],[-95.77102762699991,15.890607046000113],[-95.77863105899993,15.88458231500006],[-95.77858267899984,15.873255968000121],[-95.80076071999989,15.870507959000022],[-95.82291598799992,15.86509581100013],[-95.84805253799996,15.858303127000156],[-95.87896861899992,15.850892682000035],[-95.88794068699994,15.843529704],[-95.95988243199994,15.827913833000151],[-95.9681505909999,15.817221044000135],[-96.00340012199983,15.80841233600016],[-96.0310421239999,15.792294053000104],[-96.05248489099995,15.787530963],[-96.07859019899983,15.77012725000013],[-96.09118713199985,15.768733495000092],[-96.09597132799993,15.762044132000126],[-96.10631255399989,15.75732730500003],[-96.11674278999993,15.76194973100003],[-96.1277410859999,15.752563212],[-96.12553446599995,15.737889486000041],[-96.20423237099992,15.703500897000183],[-96.23663683099993,15.683330152000122],[-96.2871528519999,15.685769673],[-96.3618675049999,15.683973606000066],[-96.40137318499987,15.691707698000144],[-96.43114173099991,15.695868231000064],[-96.44652258999986,15.68195221600017],[-96.47030749799988,15.672246618000102],[-96.48612871599997,15.660809074000113],[-96.50485741399987,15.658053971000172],[-96.52631438299993,15.659907124000101],[-96.54918546799988,15.664420499000144],[-96.55603842599986,15.659025170000135],[-96.61362133999984,15.679932849000139],[-96.68097492299984,15.70941291100003],[-96.8036948589999,15.731771397],[-96.84512285099993,15.732570705000157],[-96.93067121399987,15.782665323000131],[-96.99175752899991,15.800107763000128],[-97.0222819439999,15.80716693900014],[-97.04949866599992,15.828923939000063],[-97.04537675699991,15.832283450000132],[-97.06226405099991,15.859413507000097],[-97.07609023099994,15.856644955000164],[-97.10254115399994,15.869073149000158],[-97.16067460799988,15.903753973000121],[-97.20584919499993,15.91966457700012],[-97.26602459299991,15.93591160700005],[-97.28519143599993,15.935556649000189],[-97.34548194299995,15.945860377000074],[-97.3685649519999,15.934601375000097],[-97.45924408999994,15.945001337000052],[-97.52970282799988,15.96818843699999],[-97.55742035399987,15.962242746000086],[-97.61609394999996,15.975603551000132],[-97.65998858699987,15.97650324500016],[-97.6730602719999,15.969317700000161],[-97.68174348499991,15.96218260800019],[-97.71841090199985,15.96880236400007],[-97.77271899599992,15.979454108000153],[-97.7918716099999,15.98768638000014],[-97.8111352199999,16.00296718100016],[-97.83572343699987,16.010565497000115],[-97.84603806399986,16.018850285000028],[-97.85457936999984,16.02516766700002],[-97.86121543799993,16.02876894100011],[-97.87734971299994,16.040045637],[-97.94440024999992,16.087377194000098],[-97.98129962699997,16.10937531899999],[-98.08523515499994,16.16506582200016],[-98.12161210799991,16.176214911000088],[-98.15416419199997,16.19025299700003],[-98.1721492179999,16.20917389500015],[-98.11318925699996,16.192694403000147],[-98.08214270699995,16.18927643400015],[-98.06847083199992,16.202337958000143],[-98.08336341099997,16.200751044000114],[-98.09732011599993,16.210882880000057],[-98.11074785099993,16.218573309000178],[-98.1237686839999,16.20917389500015],[-98.14378821499989,16.217596747000115],[-98.16470292899993,16.22284577000009],[-98.16543535099987,16.22479889500012],[-98.16832434799989,16.229315497000087],[-98.17271887899997,16.23395416900003],[-98.17837480399987,16.23651764500012],[-98.1782120429999,16.234157619000158],[-98.18297278599991,16.229518947000045],[-98.18993079299989,16.224920966000113],[-98.1964005199999,16.22284577000009],[-98.21593176999987,16.22467682500014],[-98.31578528599997,16.255682684000092],[-98.44530188699989,16.278102932000095],[-98.5085950049999,16.300446737000087],[-98.5317739899999,16.309559652000033],[-98.5453995429999,16.312404690000065],[-98.55284731399985,16.31474962900002],[-98.55454754299983,16.318275247000045],[-98.56824441499988,16.323979112000117],[-98.57117978599983,16.32709074600008],[-98.56746055599987,16.32714830800013],[-98.56462445399985,16.331136741000094],[-98.56640188899985,16.340570369000105],[-98.58242753799996,16.36066315300009],[-98.61921319399991,16.39184719600003],[-98.69807246799985,16.46199885900016],[-98.73529821499989,16.51393164400018],[-98.7642871149999,16.54308441300016],[-98.76815131399991,16.550928893000147],[-98.77689805899992,16.555134748000157],[-98.79134711599997,16.55412144900008],[-98.80626903099994,16.557821620000155],[-98.81403970999995,16.553349463000146],[-98.82164466099991,16.55304596600017],[-98.83128155799993,16.54980840500015],[-98.84619425299988,16.546531306000176],[-98.85185420899984,16.53970517099999],[-98.85538923699995,16.531353657000167],[-98.85655020699991,16.528179282000153],[-98.88929341999989,16.535484448000187],[-98.90698576199986,16.534790358000024],[-98.94645264799988,16.550273600000097],[-99.14382693299986,16.610887119000026],[-99.30714517899985,16.65248173900015],[-99.37426040499993,16.66791147600004],[-99.49452157099995,16.685753990000094],[-99.55697487999993,16.68778012400007],[-99.60539530899986,16.682775244000098],[-99.63606281399987,16.690101417],[-99.66328903099989,16.69816370100015],[-99.68915009099993,16.7069159630001],[-99.71804765499986,16.71999746300004],[-99.74124101499987,16.73061758000007],[-99.79527747299989,16.771551825000117],[-99.82141301799989,16.78977018600007],[-99.82761173099995,16.788888455000134],[-99.83289128999989,16.782454270000144],[-99.84382500099994,16.78595806900016],[-99.84789275899988,16.7917907220001],[-99.85810433499995,16.796028715000105],[-99.8496426609999,16.79993941200003],[-99.83898203499989,16.794618364000126],[-99.83569982299991,16.80210926500014],[-99.84052041699988,16.808701072000034],[-99.84713024199995,16.810049294000024],[-99.85291029199989,16.8065655300001],[-99.86151591499988,16.808606356000112],[-99.8692911659999,16.80843283300014],[-99.87683473599994,16.81533628400014],[-99.87028129399992,16.817714814000126],[-99.86851200499991,16.825937272000104],[-99.86248947099996,16.83462161600012],[-99.85782166599992,16.83398408000012],[-99.85166342099986,16.83635250500008],[-99.85103398899992,16.84305393700005],[-99.85819155799987,16.851424915000067],[-99.8668007349999,16.855672410000135],[-99.88126512399987,16.858709820000012],[-99.89750498199993,16.852803559],[-99.90790934499996,16.846269453],[-99.9062029719999,16.83850154700015],[-99.89690022199989,16.841306215000046],[-99.8913678159999,16.83733849300002],[-99.89973507799988,16.82859578200008],[-99.91370636899991,16.827166601000112],[-99.92010222099992,16.834095778000133],[-99.92503744599988,16.85586426600004],[-99.93235311299989,16.86023018800013],[-99.95623371599994,16.883125817000135],[-99.95944568299987,16.89266081000001],[-99.99168631699992,16.909736688000137],[-100.06545177899991,16.934835953000047],[-100.11522432099989,16.948197401000144],[-100.16691276699994,16.967076057000114],[-100.23524448199994,16.991130335000076],[-100.31981299499994,17.0226184510001],[-100.56460403099992,17.105274782000052],[-100.65306555899987,17.134059963000098],[-100.71318224099988,17.152105807000012],[-100.78001868399988,17.18044668200018],[-100.83389238199992,17.198757229000037],[-100.90003065999989,17.21713905500006],[-100.95561370299994,17.23685907300002],[-101.00823983399995,17.25297590800001],[-101.04281446699986,17.27020220500016],[-101.05902865899992,17.264237103000156],[-101.06510498699988,17.276008235000134],[-101.05369896999993,17.28274348000018],[-101.05508378799992,17.302639065],[-101.07332806799992,17.320846334000137],[-101.10508197599982,17.35030973700016],[-101.17182012999989,17.389791402000085],[-101.18224517799986,17.4125360070001],[-101.2630916009999,17.456203518000063],[-101.34642852499985,17.485192260000176],[-101.39376435399993,17.506277118000085],[-101.45577348299993,17.52633805900011],[-101.45683823699991,17.537350302000092],[-101.44318928399991,17.539348579000134],[-101.44070390499989,17.5571556660001],[-101.44866989299989,17.57032723900012],[-101.4581402019999,17.583342949000137],[-101.49649083899995,17.61440636100012],[-101.52586646699991,17.618392867000082],[-101.55314003399985,17.611375722],[-101.55731955499989,17.62539019600014],[-101.56989757499993,17.62538393300015],[-101.57934777099989,17.636367233000144],[-101.59512752399989,17.63534286300002],[-101.59933725499987,17.653338538000142],[-101.61508673799993,17.6603231590001],[-101.6444871559999,17.668293558000116],[-101.64766654299989,17.705283821000037],[-101.67188951599994,17.74027008900005],[-101.69819797699994,17.75725554300008],[-101.7455397729999,17.792204006000176],[-101.75633704299995,17.816839911],[-101.77091054099988,17.829232578000173],[-101.77302728799987,17.84822496700015],[-101.8110610349999,17.89025992000002],[-101.85618362899989,17.909494918000107],[-101.87091174699992,17.91545589200011],[-101.93196277799989,17.950341514000158],[-101.98987747999986,17.974750847000067],[-102.03673255099993,17.990668036000088],[-102.10047719799994,17.982327023000053],[-102.1098718199999,17.96529623900001],[-102.12979944299992,17.951220542000144],[-102.14549258399984,17.934168580000133],[-102.16228039699985,17.92510161900016],[-102.17591521699985,17.917046981000126],[-102.19062878299992,17.915988111000086],[-102.22959277999989,17.932832496000156],[-102.28859077299991,17.961586612000033],[-102.42076575399996,17.997992255000085],[-102.4750817779999,18.01777694000016],[-102.51403328699985,18.020574393000075],[-102.59724663599988,18.049051098000078],[-102.69127356699988,18.05670807500009],[-102.74229895699996,18.06696198100012],[-102.87942460799994,18.122137762000065],[-102.97315675099988,18.166219266000056],[-103.02444413999987,18.18581777600012],[-103.05973117899993,18.18754499600011],[-103.11346855999994,18.192098239000174],[-103.12522300799988,18.206007525000032],[-103.1409396859999,18.20186542100008],[-103.22124536999986,18.234141987000058],[-103.23911690299992,18.231980999000072],[-103.29190017099988,18.24947638100018],[-103.3087354739999,18.25927328700014],[-103.34366699499994,18.270956281000096],[-103.36164018799988,18.26682016400018],[-103.37968148399995,18.27864559300009],[-103.42416177199992,18.30319043400014],[-103.49839965599992,18.33348265000008],[-103.52314058099984,18.37623900400014],[-103.57510331899994,18.49225495000009],[-103.61095130099993,18.53115469],[-103.61925208199992,18.536932684000146],[-103.62902516299995,18.547985243000184],[-103.64401622899987,18.558888698000104],[-103.66217147499988,18.57074329500007],[-103.69304148999993,18.5884341270001],[-103.70673684299987,18.591220790000094],[-103.71001987099991,18.60117556500013],[-103.68622843799996,18.6285521],[-103.70017457899984,18.654327414000036],[-103.7343506849999,18.682946300000097],[-103.79427692099995,18.741248337000073],[-103.95317750399994,18.84927311000017],[-103.9799770269999,18.874937644000013],[-104.09072831899991,18.92829010600009],[-104.18060576299986,18.971381044000125],[-104.2412443279999,18.991548012000024],[-104.2720953559999,19.002111320000083],[-104.2944373379999,19.009787837000104],[-104.31570712699994,19.016495807000084],[-104.33166806799991,19.022256479000063],[-104.32901203999988,19.05329889400018],[-104.3068592289999,19.056648802000055],[-104.29960750799985,19.065754941000066],[-104.30410206699995,19.08168240500011],[-104.3287210969999,19.099297143000157],[-104.34039256499997,19.101121934000147],[-104.35080557899991,19.090964509000017],[-104.3561628119999,19.094884229000154],[-104.35433232699987,19.111912810000188],[-104.36818729499994,19.117704483000026],[-104.38613870599995,19.115432845000115],[-104.39342606099984,19.108322420000107],[-104.39000242899989,19.0933722380001],[-104.39843298999996,19.091243324000075],[-104.40598813799988,19.10012992000004],[-104.41580156199988,19.10565827000012],[-104.42701659199994,19.091804806000184],[-104.43954794399993,19.081607217000013],[-104.45157705099993,19.104426119000053],[-104.48643958199992,19.118679104000037],[-104.50381425699992,19.12966543200018],[-104.59255937399988,19.149603583000058],[-104.63601640499992,19.15936920800003],[-104.67296301999995,19.176581122000027],[-104.68399003799992,19.18349844000012],[-104.68875077999989,19.194118557000152],[-104.69192460799987,19.207586981000148],[-104.7001033189999,19.210353908000016],[-104.71117102799992,19.209377346000124],[-104.72288977799991,19.211493231000063],[-104.7303360669999,19.218085028000033],[-104.73143469999992,19.223781643],[-104.73355058499995,19.228461005000113],[-104.74400794199993,19.231960354000094],[-104.75084387899994,19.231512762000122],[-104.77810624899993,19.225165106000176],[-104.79967200399993,19.224554755000113],[-104.80691484299986,19.229071356000173],[-104.80483964799993,19.255886135000154],[-104.79910234299986,19.283107815000065],[-104.80142167899993,19.294745184000178],[-104.81570390499992,19.299627997000144],[-104.82583574099989,19.297552802000112],[-104.84190833199996,19.28860097900009],[-104.8495173819999,19.286566473000065],[-104.85912024599989,19.288112697000102],[-104.86620032499984,19.28998444200009],[-104.87258867099987,19.288356838000155],[-104.88052324099993,19.279120184000092],[-104.95787512899993,19.31806061400009],[-104.99364173099985,19.34218984600001],[-105.01711992099992,19.368475653000118],[-105.02871660099991,19.414862372000087],[-105.03933671799989,19.435614325000174],[-105.07009843699987,19.447780666000156],[-105.07046464799988,19.456244208],[-105.0655411449999,19.475002346000068],[-105.06810462099992,19.48541901200015],[-105.07412675699992,19.49310944200006],[-105.08092200399994,19.499416408000016],[-105.08596757699989,19.505682684000146],[-105.08771005999989,19.561072501000023],[-105.11691983099992,19.58556352000015],[-105.13015702999986,19.586452541000156],[-105.14285234299992,19.58303457200016],[-105.15184485599993,19.584173895],[-105.17068437399989,19.602240302000112],[-105.18968665299987,19.61493561400009],[-105.25076249899986,19.66608307500006],[-105.29832923099993,19.718573309000092],[-105.35167395699989,19.8044701190001],[-105.38145911399991,19.834051825000174],[-105.38841712099989,19.852362372000027],[-105.39944413999983,19.865057684000092],[-105.4286189439999,19.889308986000074],[-105.4415583979999,19.90643952000012],[-105.46666419199988,19.950344143000066],[-105.52562415299994,20.031927802000084],[-105.53164628799995,20.05060455900015],[-105.53380286399994,20.061794338000155],[-105.54320227799988,20.080511786000116],[-105.54531816299989,20.091620184000146],[-105.54531816299989,20.135687567000062],[-105.55321204299986,20.201483466000052],[-105.55894934799993,20.218207098000065],[-105.56668046799984,20.227362372000144],[-105.58397376199993,20.23773834800015],[-105.59312903599992,20.24555084800012],[-105.6087947259999,20.272894598],[-105.62857011599992,20.299994208000143],[-105.65565177199997,20.313181165000017],[-105.6753734589999,20.352666101000025],[-105.69023704899983,20.384866143000078],[-105.6986814249999,20.40691059300009],[-105.6830948559999,20.423651434000035],[-105.57559160099989,20.487738348],[-105.53080463499994,20.49319459600018],[-105.46043860599991,20.49262116100006],[-105.44603430899987,20.496283270000035],[-105.42918860599987,20.50592682500009],[-105.35973059799993,20.512477932000152],[-105.32873436899989,20.513738192000076],[-105.3009523809999,20.531843742000135],[-105.2870394329999,20.549929315000142],[-105.2667190369999,20.55758369900009],[-105.25536048099988,20.570624091000113],[-105.2436417309999,20.58356354400003],[-105.23680579299987,20.602443752000127],[-105.23429574499994,20.636126945000072],[-105.2536698029999,20.656139256000174],[-105.28380113199985,20.67004975600004],[-105.31022336999987,20.727212975000114],[-105.34152583699992,20.754639322000074],[-105.36156124299985,20.762750917000133],[-105.36958602399991,20.755008383000145],[-105.3883603549999,20.739463262000026],[-105.41090741699993,20.733998547000123],[-105.44197156199989,20.748710403000146],[-105.47832942299989,20.75148059800013],[-105.51412233799995,20.770333116000174],[-105.53287534399993,20.756447104000088],[-105.5448955959999,20.768096240000187],[-105.53513939099984,20.778437288000035],[-105.52358323299991,20.789655700000125],[-105.51448532299987,20.78811999900016],[-105.50444810999993,20.784905964000146],[-105.48653477199989,20.796222917000094],[-105.47549394399994,20.820379950000117],[-105.46644273099986,20.834674219000032],[-105.45960382799987,20.85595004600013],[-105.45528530699995,20.86702274400012],[-105.44908606699995,20.873073635000125],[-105.43992618099993,20.87143532],[-105.42491898199991,20.889572686000022],[-105.40394096499995,20.928942248000094],[-105.37086974099992,20.954080460000014],[-105.35823785199995,20.957733546000114],[-105.35122225199991,20.97060503199999],[-105.33425486499988,20.985321139000106],[-105.32559160099993,21.002956447000074],[-105.31871497299993,21.017401434000117],[-105.30968176999991,21.03066640800013],[-105.29884992399985,21.03428020000008],[-105.29145705699995,21.02671399600014],[-105.27964465699993,21.026044217000063],[-105.2705586749999,21.025322774000145],[-105.24997230499993,21.0435636370001],[-105.23432693999986,21.060965695000146],[-105.23033335099991,21.090671234000055],[-105.23263182899986,21.11690126200015],[-105.23924827999991,21.131198091000115],[-105.2297008679999,21.15506723300011],[-105.23293648199991,21.182952219000086],[-105.2160808729999,21.204378830000124],[-105.22570031399992,21.28387613000011],[-105.24313839699991,21.342063624],[-105.23049882699983,21.388617255000025],[-105.21975663999993,21.40749746300004],[-105.20289842999995,21.434747136000126],[-105.18496660099989,21.443019924000012],[-105.1866348949999,21.45339590100012],[-105.19583085799987,21.47268301000007],[-105.20006262899989,21.492865302],[-105.20786442699998,21.505802134000035],[-105.21755937399993,21.517238674000126],[-105.23008214099991,21.524914638000112],[-105.24376579499994,21.527245425000146],[-105.24988618599991,21.51445505000011],[-105.2635038369999,21.513401466000076],[-105.28103593699986,21.52838776200015],[-105.31963843699995,21.545545502000138],[-105.3913874989999,21.589300848000065],[-105.41407821699991,21.601113012000056],[-105.44841745499987,21.631031866000015],[-105.46290637099992,21.671449576000114],[-105.5493867759999,21.830182474000154],[-105.63226359799988,21.95573695900019],[-105.64877493599994,21.99232197000005],[-105.65726088299988,22.047252905000065],[-105.64766385699994,22.190607774000128],[-105.6550316399999,22.256298129000083],[-105.68209154199991,22.346777266000075],[-105.70622128299989,22.42136827600008],[-105.72008216099994,22.47292715100015],[-105.73269609299992,22.50405508000007],[-105.71666419199993,22.514186916000128],[-105.72354081899994,22.528387762000037],[-105.73245195199988,22.541449286000116],[-105.74193274599988,22.546087958000143],[-105.75076249899985,22.534613348],[-105.75759843699986,22.534613348],[-105.7669571609999,22.590480861000074],[-105.80016028599991,22.638454494000158],[-105.88113359299987,22.712795315000065],[-105.92544511599989,22.7661400410001],[-105.94253495999995,22.781683661000116],[-105.98448645699995,22.80597565300009],[-105.99099687399983,22.812079169000086],[-105.9929093089999,22.81537506700012],[-105.9971817699999,22.81867096600014],[-106.00161699099989,22.823187567000033],[-106.00401770699993,22.830104885000097],[-105.98412024599993,22.85675690300006],[-105.99779212099988,22.854518947000155],[-106.01016191299989,22.848944403000147],[-106.02151445199988,22.840643622000172],[-106.03197180899987,22.830104885000097],[-106.22032630099996,23.051947333000086],[-106.22874915299992,23.058050848000065],[-106.24710038999987,23.064032294000167],[-106.25784257699989,23.069037177000112],[-106.27733313699989,23.083685614000117],[-106.37083899599993,23.18398672100001],[-106.3882136709999,23.19257233300011],[-106.40017656199986,23.190090236000014],[-106.41006425699996,23.18366120000009],[-106.41934160099991,23.179877020000063],[-106.42979895699987,23.185126044000143],[-106.43175208199993,23.193182684000092],[-106.42979895699987,23.230414130000085],[-106.43517005099994,23.244289455000157],[-106.47073320199992,23.29498932500003],[-106.48692786399995,23.307684637000094],[-106.48936926999991,23.314520575000117],[-106.47695878799988,23.322292385000097],[-106.47850501199991,23.328395901000093],[-106.48131262899996,23.333929755000113],[-106.48538163999993,23.33893463700015],[-106.48656165299987,23.33991120000003],[-106.52281653599997,23.407538153000175],[-106.53563391799989,23.418524481000034],[-106.55272376199994,23.42352936400009],[-106.57140051999993,23.435329494000044],[-106.61184648299987,23.46906159100014],[-106.61648515499989,23.473944403000118],[-106.62157141799992,23.48061758000007],[-106.63247636599989,23.50478750200007],[-106.64041093699986,23.516546942000062],[-106.6665339829999,23.52875397300012],[-106.68142656199987,23.545436916000156],[-106.70352128799995,23.576808986000017],[-106.73257402299993,23.606512762000037],[-106.75059973899995,23.618923244000158],[-106.79324296799989,23.63235097900015],[-106.80406653599988,23.65265534100014],[-106.81338456899992,23.699652411000088],[-106.82652747299989,23.717718817],[-106.84475663999987,23.735541083000083],[-106.8609919909999,23.75515371300004],[-106.87332109299986,23.79828522300015],[-106.9020076159999,23.846625067000062],[-107.03587805899991,23.980780341000028],[-107.0848689439999,24.015082098000093],[-107.10415605399993,24.021795966000028],[-107.11693274599988,24.029201565],[-107.16966712099988,24.076442776000178],[-107.3129776679999,24.16632721600008],[-107.37775631399991,24.206854559000092],[-107.38878333199996,24.217352606000148],[-107.39289303299991,24.241156317000062],[-107.40428626199987,24.252508856000034],[-107.44343014199991,24.268255927],[-107.48086503799995,24.29340241100006],[-107.54320227799992,24.346584377000067],[-107.77501380099996,24.47744375200007],[-107.79234778599997,24.494045315000122],[-107.79967200399996,24.512152411000145],[-107.79674231699994,24.52265045800011],[-107.78990637899993,24.52301666900003],[-107.78189042899989,24.518011786],[-107.77546139199988,24.512152411000145],[-107.77253170499995,24.50755442900011],[-107.7714737619999,24.502386786],[-107.77171790299994,24.49103424700003],[-107.76915442599991,24.489325262000037],[-107.69054114499991,24.449530341000056],[-107.68016516799992,24.446966864000117],[-107.54149329299992,24.365057684000092],[-107.5260310539999,24.358221747000172],[-107.51488196499989,24.351996161000027],[-107.49803626199989,24.34393952000006],[-107.50890051999994,24.35260651200015],[-107.53844153599992,24.369370835],[-107.55329342399989,24.378078518000066],[-107.54967200399993,24.387884833],[-107.53075110599991,24.380113023000103],[-107.49803626199989,24.357611395],[-107.49673417899987,24.36082591400016],[-107.49303137899993,24.366766669000086],[-107.49181067599991,24.370591539000102],[-107.49510657499987,24.37079498900006],[-107.50218665299991,24.370184637000094],[-107.50548255099994,24.370591539000102],[-107.49510657499987,24.382228908000013],[-107.48509680899986,24.38987864800005],[-107.47826087099986,24.400091864000085],[-107.47752844999991,24.41909414300009],[-107.48180091099992,24.432847398000018],[-107.51919511599988,24.511379299000126],[-107.52969316299993,24.521918036],[-107.54645748599988,24.528957424000154],[-107.56338456899995,24.530666408000155],[-107.57941646999986,24.527573960000083],[-107.59264075399987,24.52008698100012],[-107.60167395699987,24.508449611000017],[-107.58755449099995,24.505438544000086],[-107.56090247299993,24.51496002800009],[-107.55329342399989,24.508449611000017],[-107.55752519399991,24.499497789000156],[-107.58409583199996,24.47492096600014],[-107.59422766799992,24.467474677],[-107.62413489499988,24.45848216400016],[-107.6422013009999,24.470200914000046],[-107.65684973899992,24.489081122000087],[-107.67674719999992,24.501613674000097],[-107.69644120999996,24.490139065000122],[-107.7040909499999,24.487941799000154],[-107.71174068899992,24.489203192000062],[-107.71882076699988,24.49237702000012],[-107.73912512899987,24.50726959800006],[-107.74502519399992,24.51585521],[-107.7472224599999,24.52212148600013],[-107.74828040299985,24.53546784100014],[-107.75186113199993,24.542547919000114],[-107.75816809799997,24.547796942],[-107.77269446499992,24.552923895],[-107.77916419199991,24.556219794000143],[-107.82054602799992,24.595160223000118],[-107.83287512899987,24.598700262000122],[-107.84805253799988,24.590318101000047],[-107.86709550699987,24.608221747000115],[-107.88902747299989,24.623765367000104],[-107.91270911399991,24.634670315],[-107.93683834499993,24.638820705000125],[-107.93248450399992,24.628241278000175],[-107.9247940749999,24.620998440000065],[-107.90953528599992,24.610825914000102],[-107.87852942599991,24.579820054],[-107.86168372299991,24.567124742000132],[-107.81908118399988,24.544419664000156],[-107.8065079419999,24.528957424000154],[-107.83389238199995,24.535223700000117],[-107.90855872299997,24.577866929000137],[-107.9951879549999,24.648382880000113],[-108.00470943899992,24.661810614000032],[-108.0086156889999,24.677232164000046],[-108.01317298099987,24.71385325700008],[-108.01886959499986,24.730861721000124],[-108.02794348899994,24.748928127000156],[-108.0389298169999,24.763251044000025],[-108.05011959499991,24.769110419000086],[-108.05451412699989,24.772284247000144],[-108.05870520699992,24.779364325000117],[-108.06029212099986,24.786444403000147],[-108.05663001199989,24.789618231000034],[-108.04572506399984,24.7884789080001],[-108.03620357999993,24.785223700000145],[-108.01878821499987,24.775336005000142],[-108.01105709499986,24.76854075700011],[-107.9948624339999,24.75804271000014],[-107.9788712229999,24.75698476800009],[-107.97158769399988,24.77875397300015],[-107.97630774599989,24.79677969000006],[-107.9875382149999,24.814601955000157],[-108.0012100899999,24.82892487200003],[-108.01317298099987,24.836818752000013],[-108.0008438789999,24.847642320000105],[-107.99950110599993,24.863592841000028],[-108.00572669199988,24.89887116100006],[-108.00426184799993,24.914618231000087],[-107.99986731699994,24.927639065],[-107.98521887899993,24.953436591000028],[-107.9965714179999,24.96784088700009],[-108.03612219999985,24.998480536],[-108.04869544199994,25.001450914000102],[-108.04918372299991,24.982611395000063],[-108.03648841099997,24.929103908000158],[-108.0338028639999,24.923773505],[-108.03233801999991,24.91795482000013],[-108.03237870999992,24.905015367000132],[-108.03880774599993,24.872992255000142],[-108.04112708199989,24.838364976000047],[-108.04417883999989,24.827622789000046],[-108.05011959499991,24.82314687700007],[-108.05663001199989,24.82367584800015],[-108.06135006399991,24.825588283000016],[-108.06541907499988,24.828843492000047],[-108.07030188699993,24.833685614000117],[-108.0777481759999,24.837795315000093],[-108.0807999339999,24.832953192],[-108.08291581899992,24.825873114000142],[-108.08763587099993,24.82314687700007],[-108.12437903599991,24.84454987200003],[-108.15558834499988,24.883002020000117],[-108.23412024599993,25.02838776200018],[-108.25780188699986,25.056341864],[-108.29312089799988,25.08380768400015],[-108.31261145699996,25.09243398600016],[-108.32225501199993,25.099514065000037],[-108.32787024599993,25.111151434000035],[-108.30626380099993,25.111314195000162],[-108.28380286399992,25.106838283000016],[-108.2661840489999,25.096869208000115],[-108.25894120999988,25.08038971600014],[-108.19749915299991,25.014878648000106],[-108.18639075399996,24.986558335000055],[-108.18325761599989,24.981390692000062],[-108.17747962099992,24.98069896000011],[-108.17137610599985,24.983140367000043],[-108.16633053299992,24.9863141950001],[-108.1634008449999,24.987616278000118],[-108.1443578769999,24.975775458000054],[-108.1391495429999,24.97394440300017],[-108.13060462099989,24.97679271000011],[-108.12775631399985,24.984198309000092],[-108.12865149599993,25.005316473000033],[-108.13247636599995,25.01935455900015],[-108.14191646999986,25.019191799],[-108.15330969999991,25.016302802000084],[-108.1634008449999,25.022365627000067],[-108.16258704299987,25.028509833000058],[-108.1525772779999,25.04588450700011],[-108.14907792899992,25.05023834800012],[-108.14069576699984,25.05768463700009],[-108.13678951699985,25.059963283000073],[-108.1331680979999,25.056382554],[-108.12555904899995,25.04657623900006],[-108.10553951699987,25.02692291900003],[-108.0890193349999,25.019517320000134],[-108.04670162699989,25.014878648000106],[-108.01317298099987,25.001898505000028],[-108.00475012899992,25.009507554000052],[-108.00169837099992,25.020982164000188],[-108.0035294259999,25.031439520000063],[-108.10692298099987,25.11692942899999],[-108.11953691299993,25.12348053600006],[-108.13609778599991,25.124741929],[-108.12824459499984,25.116848049000012],[-108.12913977799991,25.110744533000016],[-108.13678951699985,25.106594143000066],[-108.14907792899992,25.104315497000115],[-108.16173255099989,25.10643138200011],[-108.17292232999989,25.113592841000138],[-108.19074459499987,25.131577867000185],[-108.2122696609999,25.166937567000033],[-108.21800696499986,25.17316315300017],[-108.2315974599999,25.171861070000162],[-108.2420141269999,25.16494375200007],[-108.25243079299989,25.160305080000125],[-108.26642818899985,25.165716864],[-108.27977454299987,25.158351955000015],[-108.30577551999994,25.156968492000104],[-108.3336075509999,25.160956122000087],[-108.3517960279999,25.169501044000025],[-108.3560684889999,25.20018138200011],[-108.3552139959999,25.206732489],[-108.34805253799996,25.20477936400006],[-108.32506262899989,25.190659898000106],[-108.3141983709999,25.186224677000055],[-108.31720943899988,25.19944896],[-108.31745357999993,25.22850169500016],[-108.32042395699995,25.241441148000074],[-108.32941646999988,25.251654364],[-108.35289466099992,25.26166413],[-108.36139889199987,25.26935455900012],[-108.38605709499987,25.161932684000146],[-108.39924068899991,25.145249742000132],[-108.40074622299996,25.154364325000028],[-108.39610755099994,25.19843170800011],[-108.39614824099993,25.214178778000175],[-108.40518144399994,25.23383209800012],[-108.41901607999993,25.249172268000095],[-108.43504798099993,25.26080963700009],[-108.45079505099989,25.26935455900012],[-108.55418860599987,25.307766018000123],[-108.61400305899991,25.343329169000082],[-108.6542862619999,25.353705145],[-108.69652258999992,25.358547268000066],[-108.73192298099993,25.35814036700016],[-108.70860755099991,25.373846747000027],[-108.66734778599995,25.370794989000117],[-108.5941462879999,25.351304429000052],[-108.61831620999992,25.361965236000074],[-108.65721594999991,25.39223867400007],[-108.68724524599988,25.39850495000003],[-108.74054928299984,25.38287995000003],[-108.7657364569999,25.38092682500009],[-108.77969316299988,25.39850495000003],[-108.73867753799996,25.399074611000103],[-108.7298884759999,25.405991929],[-108.74185136599992,25.42300039300015],[-108.74596106699988,25.4310570330001],[-108.74567623599985,25.43878815300009],[-108.74693762899994,25.44464752800006],[-108.75584876199989,25.446926174],[-108.75991777299994,25.445054429000052],[-108.77159583199995,25.436224677],[-108.77969316299988,25.43325429900007],[-108.76976477799987,25.46466705900012],[-108.7674454419999,25.478705145000063],[-108.76671301999997,25.525702216000084],[-108.76895097599996,25.540187893000123],[-108.77501380099994,25.541408596000153],[-108.78355872299997,25.537543036000145],[-108.7933650379999,25.53632233300011],[-108.82811438699986,25.549302476000108],[-108.82933508999987,25.551906643000123],[-108.83039303299985,25.5567894550001],[-108.83283443899988,25.561468817],[-108.83836829299987,25.563625393],[-108.8443497389999,25.562486070000162],[-108.8538305329999,25.557847398000046],[-108.85887610599985,25.5567894550001],[-108.8768204419999,25.559637762000033],[-108.88951575399993,25.563299872000087],[-108.89631100199998,25.560248114],[-108.89639238199996,25.543117580000157],[-108.89293372299996,25.532456773000103],[-108.88780676999994,25.526312567000144],[-108.88361568899992,25.51984284100014],[-108.88272050699993,25.50836823100009],[-108.88475501199986,25.496771552],[-108.88784745999993,25.48969147300012],[-108.89264889199984,25.484320380000057],[-108.89981035099986,25.47797272300012],[-108.91584225199995,25.467474677000055],[-108.92967688699987,25.46637604400003],[-108.94155839799991,25.473537502000156],[-108.95164954299987,25.487860419000143],[-108.94701087099995,25.48680247599999],[-108.9402970039999,25.489406643000095],[-108.93736731699988,25.49477773600013],[-108.94420325399989,25.50214264500012],[-108.95181230399993,25.50389232000013],[-109.00186113199995,25.499945380000057],[-109.01577714799993,25.493353583000083],[-109.01878821499993,25.48248932500009],[-109.00625566299993,25.46735260600009],[-109.03465735599987,25.465236721000068],[-109.06631425699993,25.485052802],[-109.1161189439999,25.53632233300011],[-109.09439042899994,25.545314846000153],[-109.08824622299996,25.549302476000108],[-109.0820206369999,25.55874258000013],[-109.07738196499987,25.57046133000013],[-109.07046464799988,25.58047109600001],[-109.05776933499992,25.58466217700014],[-109.02391516799986,25.57306549700003],[-109.01622473899992,25.573879299000126],[-109.00536048099985,25.577948309000092],[-108.99815833199992,25.56867096600014],[-108.9925837879999,25.549302476000108],[-108.98314368399988,25.54437897300006],[-108.98045813699991,25.544623114],[-108.97862708199993,25.550848700000145],[-108.97154700399996,25.563625393],[-108.9705704419999,25.568182684000146],[-108.97232011599989,25.579982815000122],[-108.97154700399996,25.58466217700014],[-108.96768144399995,25.5887718770001],[-108.9597875639999,25.590521552],[-108.90656490799991,25.63906484600015],[-108.89639238199996,25.65298086100013],[-108.8953751289999,25.65851471600014],[-108.89736894399994,25.66217682500009],[-108.89891516799989,25.666205145000063],[-108.89639238199996,25.67283763200014],[-108.89329993399988,25.675360419000143],[-108.88784745999993,25.678168036],[-108.8832901679999,25.67837148600016],[-108.88052324099993,25.684881903000147],[-108.88272050699993,25.71723053600006],[-108.87311764199985,25.736721096000153],[-108.83332271999986,25.768866278000118],[-108.82811438699986,25.789536851000136],[-108.83804277299986,25.804632880000142],[-108.84984290299994,25.79271067899999],[-108.87189693899984,25.75226471600014],[-108.88605709499984,25.73216380400011],[-108.90086829299993,25.700669664000188],[-108.91690019399992,25.68716054900004],[-108.94098873599985,25.67698802299999],[-108.98936926999993,25.663031317],[-109.00967363199995,25.649562893000123],[-109.04173743399993,25.60468170800003],[-109.0621231759999,25.590277411000145],[-109.08824622299996,25.59772370000003],[-109.11367753799988,25.58437734600001],[-109.13125566299989,25.58340078300013],[-109.14439856699997,25.59471263200011],[-109.15648352799988,25.618231512000147],[-109.16441809799993,25.63882070500001],[-109.17121334499987,25.648749091000113],[-109.18073482999995,25.65298086100013],[-109.19318600199998,25.655422268000066],[-109.22447669199994,25.668890692000147],[-109.2501521479999,25.686183986000128],[-109.2543839179999,25.68170807500009],[-109.25169837099993,25.670233466000056],[-109.24592037699996,25.659165757],[-109.23770097599989,25.650783596000124],[-109.16926021999991,25.59796784100014],[-109.15274003799993,25.576483466000028],[-109.15648352799988,25.5567894550001],[-109.17992102799985,25.576361395000063],[-109.20164954299992,25.603989976000076],[-109.22752844999992,25.628648179000052],[-109.2629288399999,25.639308986000103],[-109.37389075399996,25.637152411],[-109.41030839799993,25.646144924000012],[-109.38719641799989,25.66083405200011],[-109.35928300699992,25.66840241100006],[-109.32945716099992,25.668158270000117],[-109.30052649599993,25.659165757],[-109.30158443899988,25.676336981000034],[-109.30052649599993,25.693304755],[-109.29784094999987,25.698065497000087],[-109.28880774599993,25.705715236000046],[-109.2868546209999,25.710679429],[-109.28799394399994,25.716742255000085],[-109.29059811099984,25.719468492000047],[-109.29312089799994,25.72113678600006],[-109.29430091099988,25.72435130400011],[-109.30256100199996,25.735541083000115],[-109.32176673099993,25.7481957050001],[-109.34357662699995,25.758530992000104],[-109.35948645699989,25.762884833],[-109.3780411449999,25.761786200000145],[-109.38947506399984,25.75641510600009],[-109.39517167899993,25.74371979400003],[-109.39586341099988,25.685858466000028],[-109.39964758999989,25.67853424700003],[-109.41030839799993,25.693304755],[-109.40526282499988,25.71116771000005],[-109.4035538399999,25.73655833499999],[-109.40623938699987,25.75922272300015],[-109.41413326699985,25.76902903900016],[-109.43517005099997,25.776312567],[-109.44054114499993,25.793402411000116],[-109.43691972599987,25.813788153000118],[-109.42540442599993,25.852280992000104],[-109.42052161399997,25.86102936400009],[-109.41840572799995,25.862046617000043],[-109.4178360669999,25.882025458000115],[-109.4190974599999,25.895941473],[-109.4224340489999,25.90517812700007],[-109.43081620999988,25.920477606000034],[-109.43781490799985,25.94269440300009],[-109.43952389199987,25.961330471000068],[-109.4376521479999,26.005519924000122],[-109.43325761599992,26.021673895],[-109.39671790299988,26.076890367000132],[-109.35928300699992,26.113959052000055],[-109.34239661399994,26.13475169500005],[-109.32970130099989,26.17511627800009],[-109.28880774599993,26.24388255399999],[-109.26964270699987,26.27741120000003],[-109.26634680899986,26.29352448100009],[-109.2621964179999,26.30410390800013],[-109.25470943899985,26.301988023000135],[-109.25133216099992,26.289455471000124],[-109.26207434799993,26.268011786],[-109.26895097599994,26.262518622000172],[-109.27513587099992,26.255072333],[-109.28014075399994,26.247626044000025],[-109.28364010299994,26.240627346000124],[-109.28384355399989,26.240179755000142],[-109.28795325399994,26.226141669000082],[-109.2868546209999,26.2044945330001],[-109.28921464799996,26.19456614799999],[-109.29356848899994,26.183539130000057],[-109.2955216139999,26.172552802],[-109.29059811099984,26.16315338700015],[-109.28042558499989,26.16063060100005],[-109.27281653599995,26.168036200000028],[-109.26805579299985,26.17987702],[-109.2617081369999,26.21039459800012],[-109.23159745999989,26.262518622000172],[-109.22695878799996,26.280991929],[-109.22541256399992,26.334458726000108],[-109.21666419199994,26.34398021000011],[-109.19688880099991,26.34381745000014],[-109.17609615799984,26.33820221600014],[-109.16392981699994,26.33136627800003],[-109.15611731699995,26.312323309000035],[-109.15713456899991,26.292792059000146],[-109.16486568899984,26.27692291900003],[-109.17699133999992,26.268703518000123],[-109.17699133999992,26.262518622000172],[-109.15607662699995,26.254828192000147],[-109.10936438699987,26.216457424000126],[-109.0950414699999,26.21474844000012],[-109.0937393869999,26.22540924700014],[-109.10777747299994,26.249335028000033],[-109.10871334499993,26.262518622000172],[-109.1009822259999,26.268784898000106],[-109.0898331369999,26.271714585000137],[-109.08299719999988,26.277004299000012],[-109.08824622299996,26.290432033000016],[-109.1161189439999,26.288885809000146],[-109.13923092399996,26.33177317900005],[-109.15672766799992,26.364203192000115],[-109.1844376289999,26.378566799000012],[-109.18024654899995,26.37518952],[-109.17650305899994,26.370917059000178],[-109.1731664699999,26.365627346],[-109.17015540299991,26.358710028000118],[-109.1905411449999,26.36424388200011],[-109.2013240229999,26.365952867000132],[-109.21174068899988,26.36493561400006],[-109.24010169199993,26.33551666900017],[-109.2496231759999,26.334458726000108],[-109.25300045499992,26.349066473000118],[-109.23900305899988,26.419501044000057],[-109.24478105399993,26.458726304000052],[-109.2557266919999,26.497992255000085],[-109.27735262199991,26.52176607900016],[-109.31415377199991,26.56871623000013],[-109.35790471599985,26.5973910150001],[-109.38708865699994,26.6380211270001],[-109.41743323799996,26.661963897000035],[-109.44659322099993,26.671834553000068],[-109.47516307099993,26.67492797900006],[-109.48275263599994,26.682211429000134],[-109.47167895599995,26.684829622000148],[-109.45126761999988,26.67964313],[-109.42852177499994,26.671851485000143],[-109.43378949599987,26.690078576000033],[-109.44137420199985,26.694238642000172],[-109.43555423699988,26.70362064699999],[-109.44139775299993,26.714554887000176],[-109.4594774579999,26.71609963600018],[-109.47347552399991,26.71764697300013],[-109.4804904659999,26.728578227000142],[-109.4834284839999,26.74264054700016],[-109.4950862759999,26.737416140000065],[-109.50615412799996,26.72906592600019],[-109.51201941599994,26.747297161000162],[-109.52894576999988,26.751437709000083],[-109.54116919999987,26.738390186000014],[-109.54989611499987,26.727955911],[-109.55278809599987,26.717010425000026],[-109.54519536399994,26.711813493000093],[-109.53294590999992,26.710270478000055],[-109.5218621509999,26.708203730000108],[-109.51835160799995,26.701957448000044],[-109.52183818399995,26.69570082500009],[-109.52357328899988,26.688405051000032],[-109.50373395699991,26.6785366000001],[-109.49323725599986,26.676467500000157],[-109.49439100299995,26.66917332900006],[-109.53056107599984,26.68422679600009],[-109.6046417129999,26.696596864000142],[-109.64779815199987,26.693379237000116],[-109.66177008999992,26.683968056000097],[-109.66407063099986,26.67406241200011],[-109.6944284269999,26.67815505500006],[-109.72542263399993,26.691102545000106],[-109.76837218199991,26.70651189900012],[-109.78457597599991,26.719427802000112],[-109.83145097599986,26.76569245000003],[-109.85631262899992,26.80097077000006],[-109.8640423729999,26.835453692],[-109.87157279299991,26.870793039000105],[-109.88654537699992,26.89203522300009],[-109.90054277299988,26.922919012000037],[-109.90379798099993,26.937811591000084],[-109.9112442699999,26.951971747000115],[-109.9455650099999,26.99708981000019],[-109.9417734699999,27.007393763],[-109.9324438139999,26.994086005000057],[-109.90416419199993,26.954413153000147],[-109.88329016799986,26.94090403900016],[-109.90835917299982,26.996682920000083],[-109.9091103469999,27.017251504000015],[-109.91703660899991,27.060074427000174],[-109.95221920499992,27.09857819200009],[-109.9661759109999,27.108872789000102],[-109.98216712099989,27.115139065000147],[-109.99917558499995,27.118150132000054],[-110.01646887899994,27.11904531500015],[-110.02383378799995,27.11741771000011],[-110.03148352799987,27.113430080000157],[-110.03848222599996,27.10797760600012],[-110.04405676999995,27.102280992000132],[-110.05210445699987,27.090320845000132],[-110.06232888199995,27.08169241500015],[-110.09078298599987,27.102708605000156],[-110.1493090179999,27.118419558000156],[-110.19239509699987,27.127871069000136],[-110.2168474199999,27.134573515000014],[-110.24128180999993,27.138415901000155],[-110.26509233599987,27.143402375000093],[-110.28762157999984,27.14839377400007],[-110.3208715489999,27.165228583000054],[-110.33668842299996,27.17206182000002],[-110.37178884399991,27.208982662000082],[-110.40371775599992,27.24537111600013],[-110.44788278799984,27.274262017000027],[-110.4647665109999,27.28330948900016],[-110.5003709739999,27.291081661000092],[-110.5223294219999,27.29035419000003],[-110.5243935959999,27.30008336900009],[-110.4933549299999,27.298008329000155],[-110.4662124519999,27.29590475500011],[-110.4384231359999,27.29265526400009],[-110.42562796699994,27.301905619000035],[-110.44505774599988,27.31769440300017],[-110.47105872299994,27.345851955000157],[-110.47915605399989,27.358628648000103],[-110.47740637899996,27.36310455900015],[-110.47354081899988,27.370266018],[-110.47350012899989,27.376857815000093],[-110.48737545499996,27.38129303600006],[-110.49209550699989,27.384995835000026],[-110.49966386599992,27.393377997000144],[-110.51846269399988,27.37905508000007],[-110.53038489499991,27.37323639500012],[-110.54063880099994,27.372259833000058],[-110.55093339799987,27.37738678600006],[-110.55475826699988,27.384751695000077],[-110.55431067599989,27.410142320000162],[-110.55850175699992,27.434393622000172],[-110.58740492099984,27.44936494600016],[-110.58884897799987,27.511864521000163],[-110.59802624099991,27.543684361000103],[-110.62670827099994,27.608536974000014],[-110.62710096099994,27.641099162000117],[-110.61700460699987,27.657476743000117],[-110.59919186099988,27.664618231000087],[-110.57896887899997,27.66836172100012],[-110.56794186099984,27.681382554000106],[-110.5701391269999,27.697414455000015],[-110.58193925699989,27.700140692000062],[-110.59561113199993,27.693548895],[-110.60334225199992,27.681382554000106],[-110.59471594999994,27.71450429900015],[-110.58901933499995,27.722357489000117],[-110.5758357409999,27.727972723000118],[-110.56338456899988,27.729478257],[-110.55345618399988,27.73248932500009],[-110.5480850899999,27.742824611000103],[-110.58189856699988,27.74481842700014],[-110.5995173819999,27.752346096000096],[-110.60171464799991,27.767075914000156],[-110.58901933499995,27.791245835],[-110.60326087099985,27.79315827000015],[-110.61286373599982,27.80093008000013],[-110.6155899729999,27.812201239000146],[-110.60952714799991,27.82477448100003],[-110.60399329299989,27.815090236000074],[-110.59723873599985,27.812892971000068],[-110.59146074099989,27.817572333],[-110.58657792899992,27.837062893000095],[-110.58014889199991,27.838853257000082],[-110.57115637899989,27.837958075000174],[-110.52106686099988,27.844549872000144],[-110.5083715489999,27.85366445500013],[-110.51329505099997,27.873195705000043],[-110.53327389199985,27.86595286700019],[-110.59166419199994,27.887518622000115],[-110.61632239499993,27.88617584800012],[-110.60411536399995,27.87563711100016],[-110.60912024599989,27.87083567900008],[-110.62376868399991,27.872992255000085],[-110.65465247299996,27.892238674000012],[-110.67096920499998,27.89838288],[-110.74185136599988,27.914129950000145],[-110.77696692599994,27.916896877000013],[-110.81212317599991,27.91453685100005],[-110.84911048099987,27.906683661000088],[-110.84911048099987,27.914129950000145],[-110.83849036399992,27.916571356000176],[-110.80817623599984,27.92780182500009],[-110.81598873599992,27.941066799000012],[-110.8199763659999,27.95026276200018],[-110.82152258999994,27.959377346000068],[-110.82184811099988,27.972154039000127],[-110.82713782499984,27.982855536000145],[-110.83885657499992,27.989406643000123],[-110.8506567049999,27.989081122000115],[-110.85594641799987,27.979315497000144],[-110.85655676999994,27.951605536000088],[-110.8605850899999,27.934881903000147],[-110.87092037699992,27.92059967700005],[-110.89069576699984,27.89984772300015],[-110.87584387899997,27.90192291900017],[-110.86742102799992,27.898423570000162],[-110.8636368479999,27.88979726800009],[-110.8627823559999,27.876288153000118],[-110.86717688699989,27.86310455900015],[-110.87677975199995,27.847113348000065],[-110.88630123599987,27.838853257000082],[-110.89069576699984,27.848944403000033],[-110.89513098899991,27.850816148000103],[-110.9180395169999,27.87938060099999],[-110.92320716099991,27.881496486000103],[-110.93907630099994,27.883368231000148],[-110.94591223899994,27.88617584800012],[-110.95030676999994,27.89109935099999],[-110.95372473899994,27.89671458500008],[-110.95824133999989,27.90228913],[-110.96580969999987,27.906683661000088],[-110.95323645699996,27.916571356000176],[-110.94762122299994,27.919094143],[-110.93846594999988,27.92035553600003],[-110.95539303299986,27.93646881700009],[-110.97594153599991,27.952134507000054],[-110.9992569649999,27.964056708],[-111.02102183699988,27.961886265000103],[-111.04056132099991,27.955910476000113],[-111.0591456899999,27.937017087000143],[-111.0874484229999,27.93620464100017],[-111.10502524999991,27.93537217500004],[-111.10208792499986,27.94483826700015],[-111.09523647299991,27.951711511000056],[-111.10399527799987,27.962050585000114],[-111.11864431099991,27.96982493700015],[-111.12844325599987,27.968989087000082],[-111.1425928439999,27.984057328000105],[-111.17179953099992,27.990087038000112],[-111.18347394999988,28.006418425],[-111.19807016599992,28.02186669300012],[-111.22046374399986,28.04427400000013],[-111.25066202399985,28.05201280300015],[-111.26333758899996,28.073517728000084],[-111.28183590499991,28.0915293120001],[-111.30037177799997,28.129349264000112],[-111.33264827199987,28.160407105000086],[-111.34044348899995,28.205267645000063],[-111.34935462099989,28.215765692000147],[-111.35244706899988,28.21653880400008],[-111.36676998599987,28.215765692000147],[-111.37279212099988,28.217718817],[-111.37559973899991,28.222316799000126],[-111.37730872299991,28.227932033000126],[-111.38483639199988,28.241644598000146],[-111.38833574099996,28.263373114000117],[-111.39411373599984,28.27383047100001],[-111.4388321609999,28.308498440000093],[-111.4517716139999,28.32562897300012],[-111.45832271999987,28.347235419000025],[-111.45205644399992,28.358832098000118],[-111.4422908189999,28.369289455000015],[-111.43814042899994,28.387111721000096],[-111.47350012899996,28.381048895],[-111.51622473899997,28.393784898000046],[-111.58620402599986,28.415414668000107],[-111.64954103399988,28.444398917000015],[-111.67367216399985,28.45228486400005],[-111.69779694699987,28.45752044400008],[-111.70835409699994,28.460141185000126],[-111.72363810999987,28.50120129700018],[-111.74194319699991,28.53961728100002],[-111.76060950399992,28.583970445000134],[-111.92039954299993,28.720038153000058],[-111.94007215599989,28.746447444000168],[-111.94937979899996,28.756513934000125],[-111.94508248499992,28.76342251600012],[-111.9329079329999,28.763408887000036],[-111.92144725999994,28.767792578000027],[-111.90353532599991,28.779704056000142],[-111.89435787699996,28.78066640800002],[-111.88735917899989,28.77090078300007],[-111.88231360599984,28.760809637000097],[-111.87637285099993,28.752834377000156],[-111.86705481699987,28.749579169000114],[-111.86119544199994,28.753241278000143],[-111.8574926419999,28.762274481000144],[-111.85602779899993,28.77362702000015],[-111.85708574099989,28.784369208000058],[-111.8682348299999,28.80312734600001],[-111.88361568899985,28.803290106000173],[-111.90200761599989,28.799994208000143],[-111.9250171049999,28.8017188590001],[-111.9529452329999,28.824980531],[-111.9672714579999,28.841320533],[-112.00451443799994,28.855152588000138],[-112.03029557999987,28.861430953000124],[-112.03526770699995,28.880560614],[-112.04891995599985,28.885892416],[-112.04677355799991,28.895933908000032],[-112.06109715499987,28.908517462000173],[-112.08401944399994,28.923540051000046],[-112.09118593499994,28.938583944000086],[-112.0988663399999,28.950873114000114],[-112.10552631799995,28.95737767600015],[-112.11557599999986,28.961755502000084],[-112.12921614999995,28.96425097400008],[-112.15072519499988,28.96297809200009],[-112.16650771699993,28.966725705000034],[-112.17081866399992,28.972993070000154],[-112.16078711399992,28.980529845000074],[-112.15217895799991,28.98743552200007],[-112.15501868399994,28.99664948100003],[-112.15733801999991,29.006048895000145],[-112.1709181959999,29.04716180200002],[-112.17308758499989,29.070372575000178],[-112.18601746199991,29.07474544200015],[-112.18387199699993,29.084157286000117],[-112.17383930099992,29.098593563000165],[-112.16494706899994,29.10993073100012],[-112.16612708199996,29.120428778000175],[-112.17746890999986,29.1406023360001],[-112.19475279499996,29.15751875000008],[-112.19114764199992,29.166919730000146],[-112.20913652299991,29.180975653000175],[-112.22704016799986,29.188421942000147],[-112.21358415299993,29.227754780000094],[-112.21142480399989,29.252807880000077],[-112.2244650659999,29.28042766300014],[-112.23945332799985,29.315336646000087],[-112.26347388199994,29.32998048800006],[-112.31400174899989,29.330542532000134],[-112.32334768299982,29.32675321900002],[-112.33052754999989,29.32108672800014],[-112.33214270699995,29.316351630000142],[-112.32945716099995,29.308254299000016],[-112.33307857999993,29.296535549000126],[-112.34129798099993,29.30093008000001],[-112.35676021999986,29.318793036000088],[-112.39388944099991,29.33282606100006],[-112.41122409299996,29.344728143000122],[-112.41982229999986,29.37590965000011],[-112.40737870999993,29.40436432500017],[-112.38536536399994,29.44318268400009],[-112.37783769399987,29.46279531500015],[-112.37775381199985,29.485729055000018],[-112.38714996699989,29.498274969000036],[-112.40803708999997,29.50270699900004],[-112.41959859099991,29.51020887600008],[-112.43045237699992,29.52022229300009],[-112.42909280899995,29.54156411400005],[-112.43199622299994,29.561183986000074],[-112.46662350199993,29.585638739000117],[-112.50597170999991,29.616918785000095],[-112.53087317599994,29.67601146000011],[-112.5358780589999,29.68821849200016],[-112.54377193899987,29.698228257000082],[-112.56047596799988,29.69634125099999],[-112.58018958199995,29.71800364799999],[-112.58702551999995,29.732652085],[-112.59581458199993,29.77130768400015],[-112.6102595689999,29.7918968770001],[-112.62653561099992,29.809881903000036],[-112.63792883999989,29.825873114000117],[-112.65831458199996,29.883449611000103],[-112.6694552309999,29.897622723000136],[-112.68635006399988,29.907782294000167],[-112.6933824089999,29.903178992000118],[-112.70934523499994,29.909995156000107],[-112.72957736899993,29.903012034000184],[-112.74628702099994,29.91046545200011],[-112.75147171699984,29.92426352600002],[-112.73926580899987,29.94124891400004],[-112.74448754899991,29.958832783],[-112.73600160299988,29.98775407000012],[-112.73045813699987,30.013373114000117],[-112.73794511599993,30.028021552000137],[-112.74693762899996,30.041693427000084],[-112.75881512299993,30.059180580000042],[-112.75961189099986,30.076086279000137],[-112.75276508699993,30.129403427000014],[-112.75323596999989,30.18588295300019],[-112.76429326199987,30.211519729000045],[-112.77961668199995,30.229884284000047],[-112.79575359299992,30.246732371000164],[-112.80894896999988,30.258582947000136],[-112.82878431299987,30.269181114000116],[-112.8367902079999,30.269763903000023],[-112.84626318499994,30.271593642000184],[-112.85491512899995,30.262755919000185],[-112.86078966099991,30.268998923000154],[-112.84859448399995,30.28852973800009],[-112.84664665199989,30.319285425000132],[-112.84774316099994,30.36134532400011],[-112.85602779899992,30.40058014500012],[-112.87067623599992,30.42853424700014],[-112.91539562299995,30.47512951600005],[-112.9865434869999,30.53235190200003],[-113.04125758899993,30.60853101800008],[-113.07989485499988,30.670441074000063],[-113.11385972799987,30.78117956400017],[-113.12884060399993,30.812439603000158],[-113.11090794899988,30.843332534000165],[-113.09994055899996,30.90683463900017],[-113.0973591819999,30.946007914000134],[-113.0999214119999,30.979240707000127],[-113.13078295499989,31.050547157000054],[-113.13096083199984,31.064989647000075],[-113.12291450999989,31.066933307000124],[-113.1161928579999,31.05693624400014],[-113.11239037599988,31.04566256700012],[-113.10408048799984,31.02500869400013],[-113.08981962599985,30.993121915000142],[-113.08318710399986,30.989407858000064],[-113.07677161399991,30.997056382],[-113.05589758999984,31.030707098],[-113.05379930499988,31.07889108799999],[-113.0535246779999,31.123423225000078],[-113.0487229369999,31.15669166700009],[-113.06942216999997,31.172218187],[-113.09174437099995,31.2021524470001],[-113.11686949799994,31.21764521200008],[-113.14549627999992,31.219293245000088],[-113.14394233499986,31.209906639000152],[-113.12847332299992,31.20313863600016],[-113.11667699399989,31.19758888400015],[-113.12099381799995,31.190025639000098],[-113.13867242299995,31.19553327500007],[-113.15563542099997,31.204797162000073],[-113.1970463939999,31.22518779100001],[-113.2086482409999,31.248439846],[-113.22199459499991,31.26040273600013],[-113.23289954299989,31.288031317000147],[-113.2458389959999,31.28693268400009],[-113.26170813699993,31.280585028000175],[-113.27599036399992,31.278265692],[-113.26431230399993,31.262844143000066],[-113.25202389199987,31.256048895000145],[-113.23786373599984,31.251776434000032],[-113.2293488999999,31.245095622000164],[-113.2414443789999,31.241239754000063],[-113.27839107999988,31.2506371110001],[-113.43402415499993,31.276236063000123],[-113.48185810299991,31.286450397000163],[-113.54894790099992,31.295700208000152],[-113.55846418199992,31.315613273],[-113.58537856599992,31.323163873000013],[-113.62226888899993,31.325583966000142],[-113.64349239999986,31.34177479900013],[-113.63688376899991,31.347576984000067],[-113.61839489499992,31.344939871000104],[-113.60930600799993,31.352915131000046],[-113.6196182929999,31.381781317000147],[-113.63583192699991,31.43485119000009],[-113.6346758249999,31.465626586000052],[-113.65957666299991,31.49753958399999],[-113.71358783299986,31.53190230100013],[-113.75754479999996,31.549214858000123],[-113.77458153099987,31.563314466000108],[-113.80398738199993,31.564353007000154],[-113.84886683399989,31.584509310000055],[-113.87572180899993,31.596747137000094],[-113.88487708199992,31.61469147300015],[-113.91299394399991,31.604641018000066],[-113.92617753799995,31.60146719],[-113.93952389199985,31.60040924700014],[-113.95783443899992,31.615952867000075],[-113.96251380099994,31.65521881700006],[-113.97769120999993,31.663072007000057],[-113.98037675699992,31.650295315],[-113.97988847599993,31.595933335],[-113.98106848899994,31.586737372000027],[-113.97402910099989,31.579087632],[-113.96678626199986,31.577053127000152],[-113.96141516799989,31.5781110700001],[-113.96003170499992,31.579901434000092],[-113.9509985019999,31.56801992400015],[-113.95470130099994,31.56565989800002],[-113.96288001199987,31.562892971000124],[-113.97966875699986,31.54520648300011],[-113.98276729899989,31.53228497200017],[-113.99273998399994,31.52712905200015],[-114.00530278799994,31.525509701000104],[-114.01040605399996,31.51626211100013],[-114.0150040359999,31.51072825700011],[-114.0187882149999,31.504055080000157],[-114.02894224699995,31.491539208000017],[-114.07140051999994,31.492010809000032],[-114.1178730269999,31.49230793300002],[-114.15901272199996,31.49450861700005],[-114.20888787799991,31.512283403000183],[-114.23195014399992,31.530488248],[-114.2598166869999,31.53859757400015],[-114.28784480599992,31.55243048000007],[-114.29813273499992,31.561551984000015],[-114.31208248599985,31.575873114000117],[-114.32466449299994,31.58255204900003],[-114.32748039499988,31.594665150000072],[-114.3605409489999,31.608374101000134],[-114.41254249399994,31.635259168000076],[-114.43212594399988,31.64634315900004],[-114.44813648399989,31.64891022600007],[-114.46122869199992,31.667259179000112],[-114.4942631549999,31.677366307000067],[-114.54067929499992,31.71723552200008],[-114.58471181099988,31.76075482400013],[-114.60391191299992,31.765326239],[-114.67723548099994,31.764064846000093],[-114.68683834499991,31.76552969000015],[-114.69591223899991,31.771063544000146],[-114.71442623599984,31.78851959800012],[-114.7175186839999,31.792222398000078],[-114.72704016799992,31.79547760600012],[-114.74697831899991,31.810003973000153],[-114.75885982999986,31.813299872000083],[-114.79360917899992,31.816555080000125],[-114.8035375639999,31.819525458000143],[-114.81696529899989,31.830471096],[-114.8426000639999,31.861517645000117],[-114.85505123599988,31.867905992000043],[-114.87572180899991,31.87295156500009],[-114.93362382699992,31.90875885600009],[-114.93382727799985,31.90888092700008],[-114.95612545499989,31.918117580000125],[-114.96841386599996,31.921332098000093],[-114.98135331899994,31.922552802000023],[-114.99132239499995,31.924790757],[-115.0058487619999,31.93455638200011],[-115.01207434799993,31.93683502800009],[-115.01569576699991,31.94220612200014],[-115.01748613199989,31.953843492000157],[-115.02106686099988,31.965562242000043],[-115.02944902299991,31.970933335000108],[-115.03522701699988,31.96605052300013],[-115.0347387359999,31.954738674000154],[-115.03062903599995,31.942084052],[-115.0162247389999,31.919094143],[-115.01195227799987,31.914740302000112],[-115.00210527299996,31.90888092700008],[-114.99453691299989,31.906561591000113],[-114.9686173169999,31.902085679000137],[-114.9513240229999,31.89447663],[-114.93618730399992,31.884751695000045],[-114.92345130099997,31.873521226000047],[-114.91340084499988,31.861070054000134],[-114.88895799699995,31.856349653000095],[-114.87001782199992,31.83994693600006],[-114.85617742699989,31.822230324000127],[-114.84943600199989,31.80609772300015],[-114.83503170499992,31.801906643000123],[-114.82799231699995,31.789780992000132],[-114.81598873599984,31.719142971000064],[-114.80744381399991,31.69830963700009],[-114.79295813699987,31.679266669000114],[-114.78062903599991,31.65582916900003],[-114.78864498599985,31.636175848000093],[-114.82396399599989,31.60040924700014],[-114.84113521999993,31.566839911000116],[-114.85291027199995,31.52660633700016],[-114.85231048199988,31.38942978700005],[-114.87519857299988,31.328701516000176],[-114.87262745599995,31.272666801000028],[-114.88378307499997,31.182244539000024],[-114.88867790299986,31.162892087],[-114.8840430529999,31.120715433000143],[-114.8639044299999,31.08967322600013],[-114.83816541399996,31.066614429000037],[-114.81347095899989,31.04998555200002],[-114.81493081199997,31.04279989500013],[-114.83291581899991,31.02741120000014],[-114.83238684799991,31.006659247000144],[-114.8217667309999,30.988959052000055],[-114.8035375639999,30.976629950000117],[-114.73633589299988,30.949346628000068],[-114.72025889999989,30.941097776000124],[-114.71676455499995,30.935448835],[-114.71489978199995,30.928336923000142],[-114.71045177299989,30.918416053000055],[-114.70909583199995,30.88495514500012],[-114.70791581899994,30.87421295800011],[-114.70460154599988,30.858455784000014],[-114.70919746399991,30.844058200000077],[-114.7039371719999,30.83485963600016],[-114.69685935999986,30.819984637000132],[-114.70058179999992,30.774816066000156],[-114.69519630199993,30.761302603000086],[-114.6872416759999,30.744994342000055],[-114.69365411399987,30.736264899000115],[-114.70546817299991,30.7117188780001],[-114.69644518999988,30.687496928000048],[-114.69189140199985,30.670999803000097],[-114.69847440399991,30.63721156300009],[-114.68432607299988,30.606765191000175],[-114.66182491199993,30.57433692900007],[-114.6496461299999,30.554560873000167],[-114.64854766099987,30.543856783000095],[-114.64606686099988,30.534491278000033],[-114.64525305899996,30.524115302000137],[-114.64028886599989,30.513006903000115],[-114.63059863899988,30.494874103000104],[-114.63020674299987,30.480577456000066],[-114.6380553269999,30.46326768500013],[-114.63663632599993,30.441838472000043],[-114.62952016399991,30.42480280500014],[-114.63454925499991,30.396789634000115],[-114.64060211199988,30.37521455800014],[-114.63531370299992,30.36456150400012],[-114.64396295699996,30.313731103000112],[-114.65151933499988,30.29645416900003],[-114.65269934799991,30.28827545800011],[-114.65094967399992,30.277004299000126],[-114.64011632499991,30.263756544],[-114.64476814599996,30.25002687400017],[-114.65158230099986,30.228483867000175],[-114.65530153199984,30.213397818000104],[-114.66573313099991,30.199568176000167],[-114.66030230499989,30.18325224100012],[-114.65264408799987,30.174826159000176],[-114.64217386799989,30.155028462000175],[-114.63068600199992,30.144517319999988],[-114.63078309199994,30.132384926000054],[-114.62460082499992,30.117495341000094],[-114.6045333269999,30.110741383000015],[-114.59655075799986,30.089450043000156],[-114.5803775149999,30.072604697000184],[-114.58143418399993,30.05111713000015],[-114.55814530999992,30.017630054],[-114.54429788099992,29.991680126000077],[-114.53313208699986,29.96795099000003],[-114.48130631299989,29.94729923700008],[-114.47269842199991,29.918973981000153],[-114.45934062199993,29.910115134000094],[-114.42771934599995,29.907295114000174],[-114.41683550799985,29.891196589000103],[-114.40879484399991,29.880942001],[-114.4150968889999,29.854766497000142],[-114.40302801499989,29.832824062000057],[-114.39629715199996,29.827228182000155],[-114.4031923949999,29.826841662000145],[-114.40863389799992,29.82137416000002],[-114.40943852199989,29.81543302100006],[-114.39825717899994,29.809706831000128],[-114.3960807089999,29.80517313600016],[-114.39581755399989,29.796110630000115],[-114.39224001099991,29.78301160700006],[-114.38125128399993,29.774451764000148],[-114.37109695799988,29.770169518000113],[-114.36314417999992,29.772064434000143],[-114.35326322699984,29.768017999],[-114.34585134899996,29.758730986000145],[-114.34584939799987,29.75158638700016],[-114.33954217999992,29.744722794000083],[-114.3225256409999,29.74110053100004],[-114.30413879099993,29.74156668600015],[-114.29704342399994,29.74235024700006],[-114.28881109599985,29.74829283200013],[-114.28796125699988,29.753019733000183],[-114.28606085799993,29.756618538000154],[-114.2923423439999,29.75705951500014],[-114.29398522599985,29.761344352],[-114.29288662899991,29.766585621000058],[-114.28552387499991,29.765682184000088],[-114.2830206199999,29.769933403000138],[-114.28053984499992,29.77206659200006],[-114.27865029399989,29.770426838],[-114.27371637799985,29.770190263000142],[-114.27121498399994,29.772068418000018],[-114.26577682499992,29.769246516000138],[-114.26330383999995,29.764716623000044],[-114.26024689099987,29.765397640000103],[-114.25755018899987,29.760431100000023],[-114.25394764299995,29.762067783000088],[-114.24347797099993,29.76298534200008],[-114.23590516599987,29.758599799000123],[-114.2276839869999,29.75000787900002],[-114.22110225999985,29.749059239000147],[-114.22029101799988,29.746404531000124],[-114.20848461399994,29.744775323000066],[-114.20330972099995,29.739734056000042],[-114.20032236099988,29.727354191000142],[-114.19623476999988,29.721877324000147],[-114.19047495499991,29.719973314000168],[-114.18720570399987,29.71426268099999],[-114.18331533999994,29.712833956000097],[-114.18170877499996,29.709500576000078],[-114.17893178899988,29.707592270000088],[-114.17537240999988,29.704731150000054],[-114.17014893199989,29.70234167700006],[-114.1649481379999,29.70019387200007],[-114.1605674299999,29.692328264000036],[-114.15783263299991,29.690420938000056],[-114.15233361299995,29.692554214],[-114.15040692099988,29.693979758000083],[-114.14260456499993,29.690668948000063],[-114.1412519899999,29.682821113000088],[-114.13261563799998,29.67656753400011],[-114.1320113689999,29.670936835000145],[-114.12658097799991,29.670359856000022],[-114.11870860199994,29.66299122000008],[-114.11237498999992,29.656055207000133],[-114.11122268299997,29.653061758000074],[-114.0973860729999,29.647965692000056],[-114.09020257799989,29.642441610000116],[-114.0822256959999,29.640981993000157],[-114.0626557529999,29.629316228],[-114.05938861099995,29.61666904800002],[-114.05638653699988,29.612137577000095],[-114.05037829699987,29.605218922000162],[-114.04627592999991,29.596376266],[-114.03259000799996,29.59442892599999],[-114.03039580399987,29.5932085780001],[-114.02768056999992,29.58726454800008],[-114.02304844199989,29.58420287400015],[-114.02250896599993,29.581341168000066],[-114.01486293499995,29.577953589000103],[-114.00557394999991,29.576748600000045],[-113.99433351899988,29.57698185300016],[-113.98128726399993,29.567895576000026],[-113.97419358499991,29.55694362000015],[-113.96552405899986,29.54670802900013],[-113.95806459999994,29.540235620000185],[-113.95200340399992,29.53877545000016],[-113.94313459799993,29.52475189700006],[-113.93050161499988,29.52016132200011],[-113.9224768799999,29.51240257800013],[-113.91087752299984,29.500628559000106],[-113.89746438199991,29.485649941000034],[-113.88031680799988,29.477049733000158],[-113.86504741599992,29.463655594999988],[-113.8503235609999,29.458786835000023],[-113.83866529499994,29.456602332000116],[-113.83194892899986,29.450170392000143],[-113.8326740019999,29.435245228000056],[-113.82475265899987,29.429886443000143],[-113.8131070429999,29.428236665000057],[-113.8038881119999,29.42444512900015],[-113.79663152399989,29.41643690400012],[-113.78738641299994,29.414768583000107],[-113.77086649399988,29.407756444000157],[-113.68083996199994,29.315998444000126],[-113.64851685399991,29.29396074000006],[-113.6363308759999,29.282178761000083],[-113.63157910099993,29.26396092000006],[-113.62486924199995,29.258601734000123],[-113.62307566099989,29.25271410500012],[-113.63848133399993,29.240484145000107],[-113.64732052099987,29.228004951000102],[-113.65655733899985,29.218440144000066],[-113.65533690299995,29.20732339500016],[-113.64611809699994,29.202034654000084],[-113.63834952499985,29.198636264000086],[-113.64137755499993,29.18383334700009],[-113.63223100199987,29.173680200000046],[-113.62854761899993,29.17526580900015],[-113.6249179209999,29.16990625700008],[-113.62436439899993,29.16242468800011],[-113.61396471099992,29.162374683000152],[-113.60844984499997,29.16341627000018],[-113.60851743599997,29.15433761100006],[-113.60205169199993,29.140883879000125],[-113.59105402199992,29.129121034000132],[-113.5793736139999,29.126417711],[-113.57088068599984,29.115163004000134],[-113.56432916599991,29.09163434800017],[-113.54740057299998,29.065372281000165],[-113.53588383799992,29.051420258000046],[-113.5396418329999,29.039615325000018],[-113.55003425499993,29.03860904600016],[-113.55621723199992,29.027955902000045],[-113.56171773899992,29.023672457000103],[-113.56359855099994,29.014041636000126],[-113.56186517599987,29.00014632300018],[-113.54974340399994,28.993182009000108],[-113.54498766699989,28.975526763000104],[-113.54693849899994,28.95898166500008],[-113.55547336299992,28.955259039000012],[-113.55787555699989,28.948253316000077],[-113.54648633099991,28.93332237700004],[-113.54049564899994,28.920487058000116],[-113.53388600399991,28.906565173000033],[-113.52600651299986,28.901184722],[-113.52485368699988,28.891565685],[-113.5047706489999,28.889319670000148],[-113.48153775999987,28.893398388000136],[-113.47722925499991,28.89815943300006],[-113.47902902499987,28.90190909800016],[-113.47221267599988,28.915174921000173],[-113.4831470179999,28.921696566000108],[-113.48797278899985,28.930302828000052],[-113.48061931699992,28.933431489000025],[-113.48301991599995,28.939342175000135],[-113.47869302799988,28.94624789000015],[-113.47318724799996,28.9477964310001],[-113.4622211359999,28.946654498000115],[-113.45006397099985,28.942290453000094],[-113.44023106199987,28.951333130000183],[-113.4346645949999,28.959873562000087],[-113.4262175599999,28.9491392580001],[-113.4287896219999,28.93471285300008],[-113.41305209999993,28.922322388],[-113.40628536699987,28.92711575200015],[-113.40562230599988,28.93298421000004],[-113.38787098999993,28.93980408200015],[-113.38303097999994,28.935499448000044],[-113.38673509399992,28.930719803999988],[-113.39102408499986,28.92861370100009],[-113.39422715499985,28.913138573000154],[-113.36743928499996,28.907096091000156],[-113.36809913999993,28.90176265800012],[-113.37912064799986,28.90021308000017],[-113.38041793299992,28.893275941000027],[-113.37251178899989,28.88631356900011],[-113.36832431099991,28.87774355700016],[-113.35921524599993,28.873942552000173],[-113.36597138899992,28.868652111000035],[-113.36728899199996,28.858519291000093],[-113.36746177599987,28.845178073000156],[-113.37063281599987,28.83720576700007],[-113.36529018899986,28.823844166000054],[-113.35184894899992,28.818386459000024],[-113.35447592599992,28.80027413600011],[-113.33249379299991,28.800621422000162],[-113.30997057699993,28.802063611000122],[-113.30203588499987,28.80895356800006],[-113.2910055339999,28.819009772000175],[-113.28543402499987,28.82589795300008],[-113.26849109299991,28.832179781000075],[-113.26038606499988,28.84010682700013],[-113.23409901899993,28.83562315000013],[-113.22026346799993,28.82484253800014],[-113.21415887299986,28.817311735000185],[-113.21184305999992,28.802874366000037],[-113.2026626569999,28.798512799000132],[-113.19604389299992,28.792052096000177],[-113.19987939299992,28.779814605000144],[-113.19140123899992,28.772794082000146],[-113.19037758199995,28.759452771000028],[-113.19424051499992,28.744019945000115],[-113.1819889839999,28.71573375800015],[-113.17585970099991,28.713513219],[-113.1698921989999,28.69151906400016],[-113.15604596899992,28.65762572100006],[-113.13235426799986,28.641303172],[-113.12699171599989,28.62786949200016],[-113.13160919999986,28.60458301200005],[-113.12098288599992,28.578888678000123],[-113.11629357999989,28.56551381900006],[-113.1116573789999,28.545722047000098],[-113.11428669199984,28.528135410000075],[-113.10297024099991,28.504583284000134],[-113.08249857499993,28.493182379000146],[-113.08072342399987,28.486809703000105],[-113.06323616599988,28.479690770000033],[-113.03961725199993,28.476230324000042],[-113.03609809199989,28.46660714400018],[-113.00163877299985,28.455578548000073],[-112.9712683689999,28.45632801300009],[-112.93045406899988,28.46658027100007],[-112.90236180099987,28.475341649000157],[-112.88555896799996,28.46343355300003],[-112.88689549799996,28.455982926000143],[-112.8760036029999,28.45051212200009],[-112.87548447899985,28.445175240000037],[-112.88170969799988,28.437256879000174],[-112.87993848199996,28.43458087],[-112.86777801399984,28.432283916000117],[-112.86224681599995,28.4348762260001],[-112.85788426599996,28.441223928000127],[-112.84630402399996,28.441077049000153],[-112.84705705199993,28.43040082099999],[-112.84474164699992,28.422386547000098],[-112.85149206699988,28.417096718000106],[-112.85839338099989,28.40384421400013],[-112.85419808399986,28.397904676000124],[-112.84953198599987,28.382344540000087],[-112.8539815679999,28.368510023000013],[-112.87030194699986,28.33077912],[-112.87426049399993,28.30785618400016],[-112.86886667299986,28.2997264100001],[-112.87212638099992,28.283739528000112],[-112.8649577369999,28.271832495000083],[-112.85306364599988,28.260047718000134],[-112.83922451499987,28.252418250000105],[-112.83784748199989,28.243550708000114],[-112.80501663699992,28.210680251],[-112.8002737199999,28.20368374300004],[-112.79182690799992,28.201475361000107],[-112.78645579599987,28.196077404000118],[-112.79380891099996,28.190265680000138],[-112.79571921999992,28.183888823000174],[-112.79897243999987,28.168438296000044],[-112.80389951899988,28.1626079200001],[-112.80770636299991,28.150914709000105],[-112.81177057199993,28.12053965400004],[-112.80138952199987,28.085751805000186],[-112.79842760199992,28.081451504000185],[-112.79121588699991,28.07816802100011],[-112.78955812299988,28.067474823000154],[-112.79695627399987,28.057951230000143],[-112.80370032499992,28.045721747000087],[-112.80540930899993,28.032049872000144],[-112.79936277699994,28.01742390800014],[-112.7856768029999,28.00286594000006],[-112.76876099899997,28.002127270000145],[-112.76036220299996,27.997756250000137],[-112.76116906599992,27.98443003600012],[-112.75658468799995,27.96838550000014],[-112.75725526799991,27.963031241000166],[-112.76610996799991,27.93812514200009],[-112.76216415099991,27.91997664300011],[-112.76172583699989,27.907640291000078],[-112.76302542399995,27.901244906000116],[-112.76192114999989,27.893727370000093],[-112.76679942799993,27.89058922200014],[-112.76875037299986,27.88041855300018],[-112.77321756299992,27.863902157000055],[-112.75838702799985,27.846107019000115],[-112.74282438999987,27.83739473300001],[-112.73860307399993,27.829576274000043],[-112.72544041499994,27.82248892300011],[-112.7241808139999,27.82730321600009],[-112.71937063499989,27.826180209000185],[-112.71945059399994,27.819208769000124],[-112.71299324699987,27.806302205000108],[-112.71608556599996,27.800454686000148],[-112.71512915999996,27.783898672000063],[-112.70560823799993,27.777407574000147],[-112.70875066499987,27.76728171400005],[-112.70353128299993,27.754959928000076],[-112.69286807899988,27.742555740000128],[-112.6788630849999,27.72858307500009],[-112.67034210699993,27.71773022400008],[-112.66315435299992,27.71497417900012],[-112.65782874299991,27.708503498000127],[-112.64876278699985,27.710528211000153],[-112.6433412709999,27.71046183100016],[-112.63681321699995,27.703974955000078],[-112.6327463409999,27.694317683000023],[-112.6232204389999,27.687261564],[-112.62112370799987,27.678078158000076],[-112.5996262509999,27.666613031000125],[-112.59800775899994,27.65429739900013],[-112.56673706599993,27.641440690000035],[-112.54396583299985,27.640752276000015],[-112.52832251599993,27.636730044],[-112.51575342799994,27.62898394799999],[-112.49775516199988,27.62440750900008],[-112.48521519599988,27.62001972600002],[-112.47869482099986,27.614038085000075],[-112.46682204599992,27.60598965200002],[-112.45612975399986,27.597824209000134],[-112.41833100199993,27.589890091000097],[-112.40344192599989,27.580606076000137],[-112.37310644999992,27.56409536600013],[-112.3547135729999,27.547323351000028],[-112.35320719399996,27.53394285500012],[-112.3329956119999,27.516593396000086],[-112.32376760999995,27.494574088000135],[-112.31905047899991,27.45928183500008],[-112.32057212999987,27.44383557400006],[-112.30953065899988,27.42231721800006],[-112.2990120279999,27.405066796000156],[-112.30186336299991,27.392880697000134],[-112.2973247239999,27.38106210600013],[-112.28701288199997,27.36582028500005],[-112.27075851999987,27.357595669000162],[-112.26523524899993,27.341979668000036],[-112.25804392499991,27.330599016000132],[-112.24170787799996,27.326584052000115],[-112.23612160099987,27.314723295000093],[-112.2302425939999,27.291104420000025],[-112.21768516499988,27.283397535000077],[-112.20700211899987,27.261130164000107],[-112.19557922199995,27.25012925700018],[-112.20276064599996,27.230588670000042],[-112.20765655099984,27.225864187000028],[-112.21140513199995,27.21845064500009],[-112.2127636969999,27.210462858000156],[-112.19438566799997,27.198955360000138],[-112.18142696199995,27.18701680400001],[-112.16966093999989,27.1756298260001],[-112.16494706899994,27.166815497000087],[-112.15493689299991,27.16204629900001],[-112.13395523599992,27.16007058200016],[-112.11453437699993,27.142147339000175],[-112.08893937699987,27.13156029300002],[-112.06786218999987,27.133851711000162],[-112.06437318499985,27.1284504310001],[-112.0542598009999,27.12400231600013],[-112.01116812399991,27.116831402000017],[-111.99358450799986,27.09620830400011],[-111.95994125599994,27.095590478000148],[-111.95037230399993,27.093275544],[-111.95173822999996,27.085276192000105],[-111.94645295399991,27.079294951000023],[-111.94425393999985,27.069626075000183],[-111.95758810599993,27.064527002000162],[-111.97015198799994,27.06798215000005],[-111.98660597699987,27.055968315000158],[-112.00312811499991,27.035743279000044],[-112.01198769399986,27.014497603000066],[-112.01473510599988,26.998497939000075],[-112.01716061099985,26.978501695000162],[-112.00145423099988,26.95221588700015],[-111.98338782499987,26.94090403900016],[-111.97394771999984,26.9369164080001],[-111.97142493399991,26.92804596600014],[-111.95735630699991,26.91097559600003],[-111.95179504499995,26.89218398400014],[-111.94174717699993,26.88666562300007],[-111.91559806299995,26.87819769500011],[-111.91004289399983,26.858882292000047],[-111.87071692599993,26.82807038],[-111.86335955599993,26.8051898370001],[-111.86070113999989,26.7901895400001],[-111.86144633799991,26.78379546100014],[-111.87239815599986,26.776523094000154],[-111.87681012199995,26.76645783400012],[-111.87762944399988,26.756325443000108],[-111.89020748599991,26.762925523000078],[-111.90518144399995,26.73427969],[-111.9001141559999,26.714559432],[-111.8859757149999,26.71116771000014],[-111.86350943899991,26.693051648],[-111.85305034299985,26.677335726000038],[-111.8485809129999,26.663902722000056],[-111.84710676799997,26.655421526000065],[-111.84310283799988,26.64515861000011],[-111.8246131149999,26.639946536000153],[-111.8116861999999,26.628998638],[-111.79822702599988,26.612647085000116],[-111.78427506899993,26.571795806000026],[-111.76179947499988,26.55356157000007],[-111.73581048199989,26.53968359600013],[-111.71455205399992,26.551538640000118],[-111.67679283899987,26.581858923000155],[-111.6800702449999,26.59367596200012],[-111.69241301699991,26.60301373],[-111.7146086129999,26.629706987000176],[-111.74287770399987,26.65275882900012],[-111.75706408599984,26.659438916000042],[-111.76689067299995,26.676219181000036],[-111.7941214599999,26.69011324800006],[-111.80742126699988,26.715524999000152],[-111.81458477499991,26.71457738600016],[-111.8161894109999,26.722615469000075],[-111.81361097799989,26.73111445100012],[-111.81700334899992,26.739186512000103],[-111.81670238699989,26.766478085000116],[-111.82223615699989,26.778824536000073],[-111.82329185699984,26.79219866600006],[-111.82868380099985,26.808293115000183],[-111.82364059799993,26.82047476800001],[-111.83164448299995,26.828640878000115],[-111.83690401899992,26.834612744000154],[-111.83670356999993,26.84315474900002],[-111.8401488689999,26.849626261000154],[-111.84597625299996,26.85667571800009],[-111.84511588399991,26.867876480000017],[-111.85216770899984,26.873878785000088],[-111.85141931799993,26.880274807000106],[-111.83396966299993,26.883165419000093],[-111.8266031929999,26.89051092300018],[-111.8180733969999,26.896233164000147],[-111.79509108899991,26.884027951000135],[-111.79235385699994,26.87541965100003],[-111.76813056199987,26.862682184000118],[-111.74522936499994,26.84409892400008],[-111.72907626499995,26.822432899000106],[-111.72108205899994,26.806267109000043],[-111.6801242209999,26.778759020000066],[-111.66733722999992,26.780550931],[-111.66283854899991,26.768699070000096],[-111.65649062499998,26.758929361000085],[-111.6488758679999,26.752936608000123],[-111.64783119299989,26.74647998000013],[-111.62589462099993,26.739700568],[-111.6230634589999,26.73321360199999],[-111.60828670999992,26.726508451000043],[-111.60842014099987,26.721133913000145],[-111.5847413079999,26.712147502000036],[-111.57230284399986,26.707637751],[-111.57009011799992,26.700650711000108],[-111.56005494199988,26.69565300400005],[-111.56427141799986,26.671157594000093],[-111.56602752799986,26.64929962400008],[-111.56304031699989,26.62575408200003],[-111.56908004499994,26.57623374300014],[-111.56477159499988,26.55800073500002],[-111.54889526599987,26.54860016],[-111.52461941999991,26.54062012100017],[-111.50365149599989,26.53310781500015],[-111.4824112619999,26.52850983300011],[-111.47472670999993,26.531034909000038],[-111.47280805199989,26.535799007000048],[-111.46022113399992,26.537668965000147],[-111.4610302879999,26.52967713100007],[-111.45579128999995,26.524761843000146],[-111.44223803999986,26.517526000000185],[-111.44891293599989,26.513936419000103],[-111.45453024799988,26.505522992000024],[-111.45567567099988,26.486354034],[-111.46824740399983,26.466436278000018],[-111.46643164199988,26.440147032000155],[-111.46886681499984,26.41950369300018],[-111.4615596039999,26.400057229000097],[-111.43814042899994,26.38597239800002],[-111.42848546199991,26.382623873000156],[-111.42383490999988,26.37715435800014],[-111.42277415599995,26.37177858300005],[-111.43307456599992,26.367970202000052],[-111.43238462299986,26.360874588000158],[-111.42296817299984,26.350371924000157],[-111.40642235999988,26.34443760700013],[-111.39365646599992,26.330011249],[-111.38794694599993,26.31416570500006],[-111.38479089599994,26.29988113400016],[-111.38192468599992,26.27707256500015],[-111.3932234509999,26.277997341000045],[-111.39744906799986,26.25221458200015],[-111.38815054499992,26.242690126000085],[-111.3874859519999,26.23481234900011],[-111.37582308299991,26.212549508000066],[-111.37966318599986,26.20005411000012],[-111.3757208079999,26.18345217500014],[-111.36452064199992,26.176120365000042],[-111.35872567699995,26.162611475000077],[-111.35919773299995,26.143760379000142],[-111.3509465789999,26.12631910400007],[-111.34177324399992,26.11041952500001],[-111.32203732499987,26.098183177000024],[-111.32321960199992,26.086442515000083],[-111.31833767199993,26.07373688100016],[-111.31948278399992,26.06356014000012],[-111.32574412399988,26.05897041900006],[-111.32779495599995,26.048014418000108],[-111.34029172699992,26.038863111000108],[-111.34494102999992,26.028751273000022],[-111.33751007699989,26.012859448000153],[-111.33732839299986,25.987698037000097],[-111.3473072099999,25.97455536400015],[-111.36025956899996,25.964097398000135],[-111.35511956899985,25.94484096800015],[-111.34935462099989,25.926092841000028],[-111.33901933499988,25.90843333500011],[-111.33576412699993,25.899400132000025],[-111.33254679699992,25.884906769000125],[-111.33889005799993,25.87307797000001],[-111.33387169299994,25.865937369],[-111.33102816499985,25.83735770300008],[-111.32336933699986,25.832578891000093],[-111.31783904899987,25.83363185600011],[-111.3157405939999,25.83620161099999],[-111.3087190979999,25.831294614000072],[-111.30015613699989,25.821149225000156],[-111.29745410399997,25.81645897100013],[-111.29192322699991,25.812265834000087],[-111.29676097399991,25.80745951500016],[-111.30107736199992,25.807895376000072],[-111.30573755999986,25.812208769000094],[-111.30688057999993,25.817424033000023],[-111.3153940529999,25.820033626000125],[-111.31442541499987,25.815138064000063],[-111.31067027499986,25.800984754000083],[-111.30929575899991,25.789260052000046],[-111.30711597799986,25.779207115000034],[-111.30234029299994,25.77151829500015],[-111.28941809699987,25.764196377000175],[-111.27832250599992,25.750659439000014],[-111.26289430599988,25.745890377000038],[-111.2556380219999,25.74165678700014],[-111.24733494499989,25.731119748000037],[-111.24428167499988,25.723302812000142],[-111.23660637699996,25.71980855200003],[-111.2319865169999,25.72376915900018],[-111.22500524899993,25.7243532720001],[-111.21253283499993,25.701567166000086],[-111.2151838529999,25.694985539000168],[-111.2122588439999,25.682742801000174],[-111.20694575299986,25.668234098000184],[-111.20037312099987,25.65404717000017],[-111.19999452199988,25.63929787800005],[-111.19657165299994,25.63037062000002],[-111.19174434199994,25.61482905400011],[-111.18322500299988,25.602614556000116],[-111.17238438299991,25.59497186900016],[-111.16395845899987,25.573333115000153],[-111.1509270839999,25.57042483400012],[-111.14570204199994,25.56622063499999],[-111.1450724629999,25.558811150000125],[-111.13776960999989,25.544283596000085],[-111.12896791199985,25.539309113000073],[-111.12389617899989,25.53032225600016],[-111.1138016789999,25.525650048000116],[-111.10359122699992,25.525409575000126],[-111.09980403699991,25.5293854050001],[-111.09621754399991,25.525973789000158],[-111.07662627699993,25.524768070000064],[-111.06945330299992,25.53235330200009],[-111.06748667399991,25.529721777000034],[-111.07385142199993,25.521747241000142],[-111.07193716599991,25.51727101300015],[-111.0634127499999,25.51522195500017],[-111.05919723399988,25.519552620000113],[-111.05424799399994,25.52090445100005],[-111.04865202399992,25.516276281],[-111.0417227129999,25.516087634000097],[-111.03912636199992,25.520859563000055],[-111.03545226299988,25.520775411000116],[-111.03186890099995,25.517735338000122],[-111.0192562919999,25.515249937000178],[-111.01462699199993,25.505915940000065],[-111.02222263899993,25.49870933400011],[-111.01487713899984,25.483782587000164],[-111.01465475599993,25.477502398000027],[-111.02054602599995,25.472861603000084],[-111.01922067099989,25.461747136],[-111.02627297499996,25.458611932000125],[-111.0253888639999,25.44715339700018],[-111.02025960199987,25.440738810000127],[-111.0134413959999,25.42402954300003],[-111.0038170099999,25.416713064000035],[-111.0008745229999,25.392673350000067],[-110.99669923299984,25.382637924],[-110.98229971199991,25.359417908000083],[-110.97954463199994,25.34236942100007],[-110.97201320299986,25.335186286000024],[-110.95580788099991,25.328375369000028],[-110.95656280099993,25.322690210000033],[-110.94738943299986,25.315447737000127],[-110.9435349569999,25.30758148700012],[-110.94685013399993,25.305421921000132],[-110.94745394199988,25.298009961000062],[-110.94067347899993,25.293826456000044],[-110.9342615029999,25.291140982000073],[-110.93677314299988,25.28897993700015],[-110.9385392019999,25.28420351000001],[-110.9346609209999,25.277843736000033],[-110.93847344399988,25.27312849400009],[-110.94250781899991,25.273553124000145],[-110.94731552699989,25.261814304],[-110.94591223899994,25.255113023000106],[-110.93847550799988,25.245782520000105],[-110.9400183069999,25.234345591000146],[-110.93202366499993,25.21531308700004],[-110.92281553799984,25.210301929000124],[-110.91517487699994,25.191988308000177],[-110.90841680899989,25.186659156000033],[-110.90609344199994,25.182161566000147],[-110.91271133899993,25.177878763000148],[-110.91087343899993,25.16015513800009],[-110.9044506599999,25.14301275500004],[-110.89336097199993,25.131662635000097],[-110.88010739899995,25.1265294650001],[-110.88099372299992,25.12397009000007],[-110.87423002499993,25.118998902000087],[-110.8751604599999,25.114967077000173],[-110.87367336699988,25.11049990200003],[-110.86814316599988,25.105186235000033],[-110.86793065499988,25.09890673300005],[-110.86404203299995,25.09290266100011],[-110.8616154209999,25.079188502000036],[-110.8475255279999,25.073668406000095],[-110.84644729199997,25.06887901200004],[-110.82947336799992,25.06469863000011],[-110.82357217299997,25.058328327000154],[-110.82673856299995,25.04801805600009],[-110.8216918109999,25.041048241000098],[-110.81423162299984,25.033190174000154],[-110.80208312799992,25.03135113800012],[-110.79446427299987,25.030599309000095],[-110.79382895999989,25.034389542],[-110.79045441299992,25.036795205000185],[-110.78336619699988,25.032748908000045],[-110.77954396699992,25.026462549000126],[-110.75779051099993,25.01223870300008],[-110.75971041799988,25.00654900000013],[-110.75732610699987,25.00347259200005],[-110.75833680499991,24.99722281100004],[-110.75111824899994,24.993705256000126],[-110.74921469399993,24.98726582900015],[-110.74877235699992,24.97392480600014],[-110.74724089299987,24.96379028100013],[-110.73447924799991,24.952262771000065],[-110.7279031539999,24.94085809900004],[-110.71820808499983,24.930105998],[-110.7191866159999,24.924158737000152],[-110.71080933699989,24.92044259200018],[-110.7053682299999,24.92101519200004],[-110.7016292599999,24.9174082680001],[-110.69863228399991,24.91452774400007],[-110.70024293899986,24.912812595],[-110.70571049899989,24.911541904000117],[-110.70851481699992,24.908806443000103],[-110.70432131599998,24.906952197000138],[-110.7045040869999,24.90170200200008],[-110.69053297399988,24.891886380000145],[-110.69071026799992,24.886989246000056],[-110.68386845399995,24.882959352000128],[-110.6874628759999,24.87990502000012],[-110.68797739599992,24.87501916700016],[-110.68430657299986,24.868264539000034],[-110.68285511099994,24.865423333000038],[-110.68434109799998,24.857073424000177],[-110.67875654299993,24.849910789000134],[-110.67471936199985,24.84314274800012],[-110.67417208499985,24.836833253000165],[-110.67365076899989,24.829828839000143],[-110.66729954499993,24.822994179000048],[-110.66516868899993,24.81625803500013],[-110.66418241599986,24.810975559000113],[-110.66154374099992,24.808795350000125],[-110.65883229799994,24.809071516000145],[-110.65697237999989,24.806918217000046],[-110.66068410999995,24.79966172600014],[-110.66168409999992,24.793042481000114],[-110.6602980419999,24.789180078000026],[-110.66389220199991,24.775693905000182],[-110.66452420399989,24.764721176000094],[-110.67913514299991,24.747766965],[-110.6872084809999,24.730660767000114],[-110.69103729899989,24.719232213000154],[-110.6884376229999,24.71023900200008],[-110.69398336599993,24.69987856100012],[-110.70912027899992,24.697604311000145],[-110.72352753199989,24.68117784800002],[-110.72931377399992,24.66246443300012],[-110.73297911399995,24.638413615],[-110.73931361899987,24.621252694000034],[-110.73880290699988,24.601292125000054],[-110.73980203899988,24.588196111000073],[-110.73517304499985,24.570233039000087],[-110.73261105699987,24.560709437000085],[-110.73858519799991,24.554572296000075],[-110.73487222999992,24.544500973000066],[-110.72864799499989,24.52228058900006],[-110.72885535499991,24.515989407000077],[-110.7217201459999,24.50477645100004],[-110.68720018899992,24.46603883100012],[-110.68569902299987,24.45416901200015],[-110.6843607359999,24.44425082500011],[-110.69211348999993,24.43549964300017],[-110.69248654399989,24.423956403000048],[-110.68874080899994,24.41546953900003],[-110.69359578199992,24.407715844],[-110.68643741999996,24.39809297700016],[-110.68149919299994,24.39061531600008],[-110.68350771399994,24.38173292600011],[-110.67860185099993,24.373202029000097],[-110.68184913499994,24.360659657000085],[-110.65523105899987,24.328967275000096],[-110.6536781929999,24.32314365000009],[-110.6384264889999,24.314865990000055],[-110.64147482499996,24.309167794000032],[-110.62844393799993,24.284665595000078],[-110.61511532899989,24.269087751000153],[-110.60988975799988,24.25372496400003],[-110.59803011399988,24.247097888000056],[-110.58100124199991,24.240310912000027],[-110.57688516499987,24.225514130000178],[-110.56498777299993,24.219922452000063],[-110.56235863899991,24.21250286500016],[-110.53962269499988,24.20398902000015],[-110.51158606699997,24.19574616100006],[-110.48570716099995,24.190130927000084],[-110.45285591899993,24.182615512000055],[-110.4020889959999,24.175523179000052],[-110.34935462099992,24.176743882000082],[-110.33018958199995,24.177191473000065],[-110.32519519399987,24.17570908300017],[-110.3271482169999,24.169464141],[-110.33781465399987,24.160845986000155],[-110.35242098199987,24.15497317800016],[-110.36930986899988,24.14969295600015],[-110.37893509899995,24.154709877000027],[-110.4038385399999,24.16752658100002],[-110.43242858599987,24.17361708100016],[-110.4337793779999,24.167880681],[-110.42539686699989,24.160277785000048],[-110.42937795699989,24.145168147000064],[-110.42103818599988,24.13651910500012],[-110.4173029069999,24.128009113000147],[-110.42276394599993,24.120304374000014],[-110.41683662099986,24.108575691],[-110.3926938909999,24.10624292900009],[-110.37055817299988,24.11346725],[-110.36085696899993,24.111082928000158],[-110.35038095699993,24.114455978000095],[-110.3495241369999,24.12230747800011],[-110.34859646999989,24.132260721000037],[-110.34718656599993,24.1395738450001],[-110.34303052599988,24.143129078000086],[-110.32410454699989,24.15728228600007],[-110.3061342499999,24.17671552100002],[-110.30081070899989,24.217041665000107],[-110.31218650599993,24.218409801000135],[-110.31073213599986,24.22835451499999],[-110.30988549599988,24.237264481000107],[-110.3183254559999,24.24118581400002],[-110.32456775499993,24.24504780400018],[-110.32159915099987,24.248640057000117],[-110.32075290999985,24.25649033400005],[-110.32213925999989,24.265455974000147],[-110.32778975299989,24.267722026000158],[-110.3299002629999,24.257282129000103],[-110.33625864599992,24.25589169400017],[-110.33900172799987,24.274881183000087],[-110.33474854899994,24.28105749200013],[-110.33857606099991,24.28694784],[-110.33420524699991,24.296275783000127],[-110.33805385399987,24.301641027000144],[-110.3360070349999,24.310511445000103],[-110.33927957599985,24.31585970600004],[-110.32484683299992,24.31596473000012],[-110.32121864999993,24.32058708200013],[-110.32919738699992,24.323446282000177],[-110.33247026099991,24.32879474400012],[-110.32357701599992,24.33536619200011],[-110.30906495199991,24.337570435000046],[-110.30134633299987,24.343648649000087],[-110.29699734799995,24.35193158],[-110.2762371869999,24.35080126600009],[-110.2498510849999,24.34581852400011],[-110.24619986599988,24.350445393000044],[-110.23261339299991,24.343205646000015],[-110.2288453989999,24.33573406400008],[-110.23535030699986,24.332243562000098],[-110.2363844449999,24.3201841810001],[-110.23084223499991,24.31318989400002],[-110.21971967199995,24.31016329100008],[-110.21139906699992,24.300419437000144],[-110.20000023599995,24.2969193120001],[-110.19215585599989,24.290353900000085],[-110.18391404499991,24.27961287400008],[-110.18369956199992,24.269626624000082],[-110.17652018799991,24.260442942000154],[-110.17276033399986,24.252975845000133],[-110.1459910979999,24.24590745600007],[-110.13592499199987,24.237716017000153],[-110.12591865099989,24.227948046],[-110.11735334999989,24.22611362500011],[-110.10041240699991,24.217161466000064],[-110.08723055199992,24.21575272500003],[-110.08389796899988,24.212493301000094],[-110.07714014399993,24.20857855600009],[-110.07340997199994,24.20103516900018],[-110.06258136299996,24.198124319000115],[-110.05885179999984,24.19063048400001],[-110.04634709499993,24.185588287000186],[-110.03167222999984,24.177080524000033],[-110.01813811899986,24.16927948900009],[-110.00698532699988,24.158826143000013],[-110.00261094499989,24.137087741000112],[-109.99663254799995,24.128611152000147],[-109.99825237099995,24.11541368300003],[-109.99385950199992,24.11065935100011],[-109.9886293749999,24.065737051000056],[-109.98765183599991,24.046318877000104],[-109.9741602769999,24.03857598600011],[-109.95291610099993,24.03789451100012],[-109.93140921799991,24.029305440000186],[-109.89027950199988,24.03745388599999],[-109.8529257099999,24.050979706000092],[-109.83531098799993,24.059872163000094],[-109.82828804299992,24.062799557000016],[-109.82736815099992,24.056989437000155],[-109.82546455599987,24.046945222000158],[-109.82179551999988,24.03789501000007],[-109.81109289099996,24.032289537000068],[-109.80344397499991,24.022060036000127],[-109.80493128599996,24.01370095200012],[-109.80968068999991,24.010175745000122],[-109.81118569099989,24.00129558100015],[-109.82491019499994,23.989131978000117],[-109.83066522399987,23.98931398000009],[-109.83310366699993,23.985721631000118],[-109.83222881299993,23.97782790500015],[-109.8363408719999,23.961677483000145],[-109.83905770999989,23.951788613000033],[-109.8373219399999,23.93808667600008],[-109.83004999999986,23.918961044000085],[-109.8239639959999,23.91038646000011],[-109.81537735699989,23.905835740000082],[-109.80861435499988,23.902461080000094],[-109.8047600719999,23.89757278300011],[-109.79735266799985,23.89150625200007],[-109.79356848899994,23.88873932500003],[-109.78581758499988,23.882216090000114],[-109.77277799899986,23.877558963000084],[-109.74087480399993,23.842515367000104],[-109.72191321499992,23.82632070500007],[-109.71183579499984,23.807786234000147],[-109.69844281799988,23.798428157000057],[-109.7102724989999,23.775182892000103],[-109.71132210199988,23.74896966900006],[-109.70449785099994,23.72426992400007],[-109.69420325399992,23.688950914000046],[-109.69632063199988,23.665520138000105],[-109.6798251309999,23.648164954000052],[-109.66008191299996,23.64012602500007],[-109.6425926519999,23.633232246000045],[-109.63600076499993,23.626181869000064],[-109.62183711099989,23.622015963000152],[-109.6087324439999,23.619986334000185],[-109.58508652499991,23.609192748000094],[-109.57740127499994,23.601044866000066],[-109.5666680989999,23.596988404000072],[-109.54109025699984,23.591361439000153],[-109.52401872399987,23.58813458000016],[-109.51735373199989,23.58263700400012],[-109.51442142199991,23.570454],[-109.49871660699989,23.564193532000086],[-109.47645889899994,23.560204887000012],[-109.4680158789999,23.55513822600001],[-109.46795204499995,23.54812267300015],[-109.47677436099993,23.538987847],[-109.47794897599994,23.525434874000112],[-109.46835893399987,23.50387246900011],[-109.44373435899989,23.47455060599999],[-109.42631560199992,23.458513309000082],[-109.42324150299994,23.439432773000092],[-109.42780822899995,23.42299093400011],[-109.42706540599997,23.40993079400006],[-109.41431707999988,23.40594487600005],[-109.41362465499986,23.391696740000143],[-109.4166532469999,23.381132375000092],[-109.42855639799987,23.374433057000186],[-109.42642571699989,23.363695656000043],[-109.42717118399992,23.345946645000154],[-109.42375150399995,23.33515816800015],[-109.42598483099991,23.312715084000033],[-109.42564856699988,23.297186591000028],[-109.4337458979999,23.284979559000035],[-109.4376521479999,23.281317450000085],[-109.43838456899992,23.271307684000092],[-109.43667558499992,23.25039297100015],[-109.4376521479999,23.24038320500007],[-109.44225012899993,23.230617580000043],[-109.45162794399994,23.21340927900006],[-109.4538376369999,23.20227062700009],[-109.46296139199985,23.194769598000118],[-109.47484290299988,23.17796458500011],[-109.49420327299994,23.151730649000044],[-109.5049158919999,23.14491902300007],[-109.51617724399989,23.12528293100003],[-109.52588303199987,23.121642359000173],[-109.53167226799987,23.108207006000086],[-109.56614670199991,23.09496782900005],[-109.5771439679999,23.081713563000037],[-109.60759939399993,23.081166444000146],[-109.62714279899984,23.071412215000166],[-109.67214320399988,23.056103844000077],[-109.69454477299985,23.040804457000135],[-109.7131763209999,23.03105031500014],[-109.71719108299992,23.016811990000136],[-109.7123831919999,23.007791566000137],[-109.73151900799988,22.987542751000106],[-109.75857884999988,22.984465443000047],[-109.80337698499996,22.95612242300008],[-109.80600981999993,22.93606970100002],[-109.82415849399992,22.919920368000092],[-109.83670523299993,22.90993994100013],[-109.85106360599993,22.899969794000143],[-109.85912024599988,22.897772528000147],[-109.88496870499992,22.897214056000124],[-109.9017389619999,22.889677279000026],[-109.90290927199993,22.881673934000148],[-109.89537836299988,22.874202959000073],[-109.93452322299991,22.87230237400003],[-109.95449645099987,22.872155118000094],[-109.96555140999992,22.87814271100008],[-109.97843141399989,22.881775402000088],[-109.9996590629999,22.894442213],[-110.02747925699992,22.916159029000184],[-110.04337454599991,22.93187903800013],[-110.06001758199993,22.950816487000093],[-110.07835852799992,22.980658270000063],[-110.08189856699991,22.99022044500005],[-110.08994766099994,23.010914975],[-110.09837991099997,23.017562399000052],[-110.10679680699985,23.048194121000122],[-110.10759344099995,23.07545475300016],[-110.1515752239999,23.226266827000032],[-110.1604805309999,23.292108040000116],[-110.16725985299985,23.321086283000156],[-110.1782451169999,23.33021890800002],[-110.18572330699995,23.340053627000103],[-110.20959839299988,23.378440434000098],[-110.21601538499988,23.393849697000107],[-110.2294865379999,23.407075367000072],[-110.2346369899999,23.426069079000072],[-110.26683960399993,23.478260650000024],[-110.27779911399989,23.488175823000073],[-110.30736234399993,23.54103237000005],[-110.35390745299993,23.580785918000075],[-110.40439634699995,23.608645611000114],[-110.52398645099994,23.658460456000128],[-110.57734314799991,23.68156045600007],[-110.64751766499991,23.73390083900007],[-110.75331122599995,23.839107342000133],[-110.81578794799991,23.908745668000066],[-110.85163326699987,23.940375067000062],[-110.86955424599985,23.951764128000047],[-110.88087238999992,23.95366225900007],[-110.88333528599995,23.96650298900009],[-110.8944536819999,23.976404645000102],[-110.93171139199985,24.014960028000118],[-110.95383780999987,24.03083723499999],[-110.9872352349999,24.057347751000137],[-111.01001122399994,24.071446481000137],[-111.0166220389999,24.085213902000177],[-111.03971426899992,24.10418492000015],[-111.08274985099989,24.130840387000106],[-111.10767483799994,24.147442066000096],[-111.13875169199989,24.16338682600015],[-111.17415248599993,24.18103153600019],[-111.22744093499993,24.217471852000173],[-111.28075110599987,24.24298737200003],[-111.44444475799993,24.32439142300002],[-111.44959031599988,24.33011909900001],[-111.43732404299988,24.327432971000164],[-111.35974875599989,24.290321719000175],[-111.3743758359999,24.305914751],[-111.41234290299991,24.325262762000094],[-111.44494507399995,24.339625712000114],[-111.46070484999987,24.34319604800011],[-111.4780551739999,24.354804107000078],[-111.48638138099994,24.374213889000046],[-111.5225919799999,24.404638722000144],[-111.54168784499986,24.41546333800015],[-111.56536598099986,24.4191811700001],[-111.59557761799988,24.442235301000053],[-111.61942480799992,24.473136650000058],[-111.62908477499992,24.508529205000016],[-111.64936246899994,24.541738674000115],[-111.65349964699993,24.55221882900004],[-111.64568529599988,24.54805949400007],[-111.63425113699991,24.547823389000158],[-111.6470813599999,24.56248459600006],[-111.66784073599992,24.576507460000087],[-111.67903001899988,24.586333593000077],[-111.69562740799985,24.58714427299999],[-111.69523764099995,24.571470255000136],[-111.68592778899996,24.5568890280001],[-111.69878087999992,24.5355617150001],[-111.72595222799994,24.539306414000137],[-111.73719903699995,24.54673419900008],[-111.74874378799984,24.542169326000035],[-111.76553998999992,24.538508444000016],[-111.78830781799991,24.542159594000125],[-111.80314545399995,24.546450916000097],[-111.78250856699987,24.52765518500014],[-111.76171451099995,24.515248939000013],[-111.78111938199994,24.512440268000077],[-111.79154538199991,24.517443727000067],[-111.80132126899991,24.512842715000048],[-111.81290810099992,24.505879613],[-111.81968626599986,24.516404126000126],[-111.82101975299987,24.53401495300001],[-111.81899456799992,24.545166021000014],[-111.81488356999985,24.569866631000068],[-111.83474326899993,24.62142557600005],[-111.84892417299997,24.653685574000107],[-111.86614699499991,24.66921685500016],[-111.88590029299988,24.689602256000015],[-111.90629670499993,24.713611438000143],[-111.9292014429999,24.730469754000026],[-111.9415965719999,24.744224981000013],[-111.93817958099989,24.748322727000144],[-111.91600195099997,24.73351318400013],[-111.91221955199991,24.73658333700014],[-111.91292862699986,24.74377610800009],[-111.93285071499986,24.75617096600017],[-111.95278886599992,24.77484772300015],[-111.9681290359999,24.794419664000127],[-111.9741918609999,24.809393622000144],[-111.97704016799993,24.825995184000117],[-111.98473059799994,24.847154039000102],[-111.99567623599992,24.86579010600009],[-112.00837154899997,24.87457916900017],[-111.99982662699995,24.845648505000057],[-111.99583899599988,24.819403387000037],[-111.98766028599995,24.796698309000092],[-111.96670488199992,24.778306382000054],[-111.97252356699997,24.775702216000138],[-111.9884333979999,24.76471588700009],[-111.98273678299991,24.760199286000145],[-111.9724014959999,24.748765367000185],[-111.96670488199992,24.74420807500006],[-111.97565670499995,24.741156317000144],[-111.98355058499992,24.74282461100016],[-111.9900610019999,24.748521226000047],[-111.99469967399993,24.757879950000174],[-112.01162675699993,24.739447333000143],[-112.02525794199997,24.755560614000117],[-112.04308020699995,24.80565013200011],[-112.0337621739999,24.811957098000065],[-112.02928626199994,24.82021719000015],[-112.0298966139999,24.829820054000137],[-112.03563391799987,24.840399481000173],[-112.05125891799986,24.830064195000162],[-112.0545141269999,24.81712474200016],[-112.0493057929999,24.785793361000017],[-112.04754221799992,24.76512962000014],[-112.04305371299988,24.753465898000073],[-112.06358801999988,24.751654364000117],[-112.07811438699994,24.762152411],[-112.08804277299994,24.77338288],[-112.09430904899988,24.78717682500009],[-112.0977270169999,24.80565013200011],[-112.09577389199985,24.836004950000085],[-112.0977270169999,24.846625067000147],[-112.10350501199987,24.85301341400016],[-112.11095130099994,24.854315497000144],[-112.11685136599988,24.85708242400004],[-112.12421473299992,24.87404577400018],[-112.11339270699996,24.878892320000162],[-112.09577389199985,24.893784898000135],[-112.09024003799993,24.901190497000115],[-112.0968318349999,24.92348867400015],[-112.10065670499992,24.92731354400017],[-112.10391191299995,24.932196356000034],[-112.10350501199987,24.94041575700014],[-112.0994766919999,24.944810289000102],[-112.08617102799988,24.953273830000153],[-112.08238684799994,24.960272528000033],[-112.08385169199991,24.9669457050001],[-112.09373938699993,24.98021067900011],[-112.09605872299989,24.99135976800015],[-112.09692095299991,24.999608758000093],[-112.10417080699989,25.00787267900013],[-112.11037377699985,25.002610667000155],[-112.12024216399995,24.988123979000093],[-112.11956800199995,24.97064531600013],[-112.12978630799986,24.959129086000033],[-112.13727779899995,24.946112372000027],[-112.13133404899995,24.927151651000187],[-112.12302316299991,24.909326969000077],[-112.13361967599987,24.88989677100004],[-112.14493127199992,24.874094379000113],[-112.1558311299999,24.875437767000065],[-112.16087223699992,24.893257184000063],[-112.15756297999985,24.907430275000095],[-112.15386234499992,24.931819231000087],[-112.16220545599994,24.93909044500016],[-112.16328683499987,24.942719486000144],[-112.1658031359999,24.95393479200014],[-112.16033355599986,24.959527890000075],[-112.14723714099993,24.96114729700004],[-112.1417559649999,24.970367296000134],[-112.1490047139999,24.979616087000053],[-112.14242669799991,24.99048338500002],[-112.13072995999997,25.009254805000108],[-112.12336329299991,25.038267207000118],[-112.12807866299988,25.046380979000087],[-112.12075297499985,25.062188891000105],[-112.1221758909999,25.073402313000102],[-112.1323683369999,25.073426677],[-112.13271325499993,25.080021508000055],[-112.1425253129999,25.0859788370001],[-112.13811534499987,25.10047621400004],[-112.1355371089999,25.11069213000003],[-112.14022775499987,25.12587140300009],[-112.13835373999989,25.14433563900017],[-112.13062134599994,25.172027650000086],[-112.11774654899996,25.19944896],[-112.09976152299993,25.224066473],[-112.0841177299999,25.243583568000147],[-112.07787059499992,25.258735367000057],[-112.07668247499993,25.290387096000142],[-112.07468845599989,25.3440677360001],[-112.07422794099988,25.372746603000124],[-112.08624760999992,25.3777247150001],[-112.0869324359999,25.390585037000122],[-112.0810349189999,25.407714161000126],[-112.07261113299987,25.41659221000016],[-112.07072499299996,25.433733344000117],[-112.07069732499988,25.441318252000098],[-112.08309751199995,25.443995402],[-112.07429171699992,25.456501440000025],[-112.04835256699991,25.466414878000037],[-112.03077844599994,25.473614549000118],[-112.04246447199988,25.477605946000054],[-112.06731337899994,25.475699486000067],[-112.07937260199994,25.4711173780001],[-112.08445012599987,25.481021014000092],[-112.07494177199989,25.48659893300011],[-112.06257076699984,25.494696356000148],[-112.06362870999989,25.51325104400017],[-112.06704414599996,25.550208094000183],[-112.07207869299987,25.571333464000176],[-112.06471728899989,25.591713450000114],[-112.06313337699994,25.62533420500013],[-112.07097819199993,25.68403754400019],[-112.07599409699992,25.713400290000052],[-112.08144967899995,25.720681661000143],[-112.08951663099992,25.715430734],[-112.08847726499991,25.698934203000036],[-112.08702551999997,25.593207098000065],[-112.09225174199993,25.549298610000065],[-112.09640002499987,25.51072695600011],[-112.1040903309999,25.50415366400007],[-112.10514924099992,25.515697431000078],[-112.10397835099985,25.53877914200011],[-112.09976942199987,25.59517903700008],[-112.1019112959999,25.728014313000145],[-112.10871238399994,25.784145291000144],[-112.13095316899987,25.81650532600004],[-112.1396281839999,25.857525108000132],[-112.15968635799987,25.89053130100011],[-112.17894196299997,25.955174832000026],[-112.19828235399987,25.995105533000167],[-112.2202448099999,26.01530058900009],[-112.23851477799992,26.040838934000146],[-112.26414954299989,26.054103908000016],[-112.29287281899988,26.04971152700001],[-112.30874589799987,26.069769598000065],[-112.31289628799989,26.101996161000116],[-112.3211563789999,26.13100820500001],[-112.3434952459999,26.17812734600001],[-112.3790583979999,26.22028229400014],[-112.40269934799993,26.240220445000134],[-112.44273841099995,26.260728257],[-112.45295162699988,26.26292552299999],[-112.46532141799993,26.258124091000084],[-112.47256425699995,26.247870184000146],[-112.48131262899993,26.23810455900012],[-112.49828040299991,26.23501211100013],[-112.55679277299996,26.2723656270001],[-112.55581620999989,26.276353257000082],[-112.55455481699988,26.290920315],[-112.55996660099993,26.30109284100014],[-112.57335364499991,26.293036200000117],[-112.59016829899993,26.28784535700005],[-112.60489304699986,26.297977382000013],[-112.6127823559999,26.316310940000122],[-112.6170955069999,26.31972890800013],[-112.63361568899988,26.321112372000115],[-112.6762589179999,26.319281317000115],[-112.68911699099992,26.322739976000133],[-112.72836343699993,26.370227227000115],[-112.75509697199996,26.38706214500003],[-112.78606552899991,26.404706531000116],[-112.80529285999988,26.417705090000037],[-112.83035829399991,26.435268437],[-112.86290410299989,26.46344839400014],[-112.90303741399991,26.49319710500008],[-112.95335798299992,26.518493545000027],[-112.9559626939999,26.52912018400015],[-112.95653235599985,26.53119538],[-112.95710201699993,26.535549221000096],[-112.95864824099996,26.540228583],[-112.96222896999984,26.54340241100006],[-112.96776282499987,26.54437897300012],[-112.9870499339999,26.54340241100006],[-113.00365149599995,26.549750067],[-113.0181371739999,26.564276434000035],[-113.04400305399989,26.58546360000015],[-113.06071644299995,26.59911777000015],[-113.05892668899992,26.611881542],[-113.06037350199992,26.628729559000117],[-113.05622311099987,26.639471747000027],[-113.05703691299989,26.650213934000064],[-113.06362870999996,26.656805731000034],[-113.07689368399988,26.674994208000115],[-113.0876358709999,26.68988678600006],[-113.10338294199997,26.708929755000053],[-113.1157934239999,26.717189846000153],[-113.12653561099991,26.73041413],[-113.13727779899992,26.746975002000156],[-113.14305579299989,26.75771719000006],[-113.14305579299989,26.77008698100009],[-113.14053300699987,26.781683661000113],[-113.12564042899992,26.78912995000009],[-113.11904863199995,26.79409414300015],[-113.12816321499992,26.7982445330001],[-113.13638261599993,26.799017645],[-113.14964758999986,26.794907945000077],[-113.16368567599991,26.78912995000009],[-113.16698157499985,26.777533270000088],[-113.17031816299986,26.765122789000046],[-113.18521074099992,26.76264069200012],[-113.19595292899994,26.760199286],[-113.1918025379999,26.751125393],[-113.19261633999992,26.74363841400013],[-113.20588131399985,26.738674221000068],[-113.21580969999985,26.744452216000056],[-113.22402910099994,26.755194403000143],[-113.22984778599991,26.766791083000058],[-113.2315160799999,26.78082916900003],[-113.23814856699988,26.78660716400016],[-113.2315160799999,26.791571356000034],[-113.21251380099991,26.79242584800012],[-113.20421301999993,26.799872137000122],[-113.18932044199988,26.80898672100001],[-113.1810603509999,26.81476471600017],[-113.16950436099987,26.827134507000025],[-113.16038977799988,26.839544989000117],[-113.14635169199991,26.846991278000115],[-113.13727779899992,26.857733466000028],[-113.13145911399997,26.875921942000033],[-113.12458248599985,26.886297919000114],[-113.12621008999989,26.937892971000068],[-113.13141842399996,26.955145575000174],[-113.14574133999987,26.970119533000013],[-113.16380774599989,26.97479889500012],[-113.17935136599988,26.96694570500013],[-113.1925441369999,26.945060148000053],[-113.19640675999992,26.883465684000058],[-113.20422110199988,26.85346349900014],[-113.23241126199991,26.82933177299999],[-113.24474036399995,26.837103583],[-113.25796464799988,26.824652411000088],[-113.26378333199995,26.81146881700012],[-113.26378333199995,26.802313544000143],[-113.26455644399996,26.79409414300015],[-113.2629288399999,26.785834052000055],[-113.26378333199995,26.774237372000144],[-113.26541744299988,26.75996867200011],[-113.27054400299996,26.752474040000134],[-113.28577230799989,26.74955076900001],[-113.32527043199991,26.776833426000096],[-113.36397058499992,26.795067743000132],[-113.4009903639999,26.802679755000057],[-113.41956357699992,26.80584316500015],[-113.44823226499993,26.804462017],[-113.47098648399995,26.80455415199999],[-113.5038871779999,26.79341576000014],[-113.51834512999994,26.769428706],[-113.52647864499995,26.753607489000117],[-113.5423070949999,26.742092190000093],[-113.54296596799988,26.71919600700012],[-113.5548396479999,26.718207098],[-113.57414856299994,26.705038979],[-113.59767530499994,26.70962780500018],[-113.63713767599987,26.72553091499999],[-113.6658422519999,26.769435940000065],[-113.72520911399994,26.799994208],[-113.7340388659999,26.81378815300009],[-113.73729407499987,26.828680731000063],[-113.75413977799987,26.860581773000074],[-113.79148967799998,26.920046326000133],[-113.81638813799987,26.948969388000123],[-113.8512478159999,26.96791427500007],[-113.87866020799996,26.983500183000118],[-113.9099014959999,26.99233633000007],[-113.95976707599995,26.997984165],[-113.97473922999983,26.99354818800016],[-113.97351871999992,26.980216155000093],[-113.98412024599993,26.976263739],[-113.99388587099989,26.971828518000038],[-114.00519771999987,26.977443752000013],[-114.04954031299991,27.01798509100014],[-114.06362870999993,27.05076732000005],[-114.08441305399995,27.07574801],[-114.1143692699999,27.10545482000019],[-114.14704342399993,27.123480536000116],[-114.18195553299986,27.139634507],[-114.20918328599993,27.142338249000076],[-114.23656165299991,27.15330638200011],[-114.27408324599993,27.148897894000058],[-114.29029561499993,27.146540328000114],[-114.29399928499996,27.12546160900017],[-114.32024517999987,27.14549699500013],[-114.35081946499989,27.165757554000137],[-114.39514923299993,27.182913648000138],[-114.42140513999993,27.166457302000122],[-114.43514318399987,27.17636745800003],[-114.42833411399992,27.188055731000173],[-114.43049068899985,27.1979027360001],[-114.4297989569999,27.208929755000057],[-114.44453586999995,27.21435629100007],[-114.46336829299992,27.22247955900012],[-114.47589382699987,27.217653590000126],[-114.48754187299988,27.23809778100015],[-114.4868904669999,27.28164412400004],[-114.48444576699987,27.324286200000145],[-114.49156653599991,27.362697658000158],[-114.50646073799992,27.406184127000145],[-114.52916419199991,27.426906643],[-114.5378311839999,27.43390534100008],[-114.56334387899989,27.448635158000073],[-114.58107769899993,27.450845063000045],[-114.59658643499989,27.47718936200003],[-114.6318881749999,27.488772567000165],[-114.6810942259999,27.50762889],[-114.71575247699988,27.521904491000054],[-114.73422912699992,27.521251508000134],[-114.74889075399994,27.54730866100014],[-114.75210527299993,27.553045966000113],[-114.76618404899993,27.569403387000037],[-114.76939856699993,27.574652411000116],[-114.7817301129999,27.602757451000016],[-114.80571925699986,27.621042742000114],[-114.83038589899994,27.631132388000037],[-114.8387997199999,27.628357350000112],[-114.84486571099985,27.616063557000146],[-114.8556727069999,27.622137059000135],[-114.86188573199988,27.630958901000085],[-114.87581933099987,27.643824269000092],[-114.87201187899988,27.64929465199999],[-114.85809763999987,27.639153187000133],[-114.84887846099984,27.640564808000036],[-114.84447180899993,27.659654039000042],[-114.84764563699989,27.67133209800012],[-114.85334225199996,27.68162669500005],[-114.86156165299988,27.689886786000145],[-114.87242591099997,27.695054429000052],[-114.8865860669999,27.694891669000086],[-114.89240475199993,27.687323309000035],[-114.89753170499985,27.678290106000034],[-114.89980539899997,27.664122211000077],[-114.91214848999991,27.66950057400011],[-114.93219519599992,27.676193309],[-114.93930491399993,27.700669451000024],[-114.9509643629999,27.716258811],[-114.97411048099993,27.724107164000127],[-114.98870882399989,27.726853978000022],[-115.00172633099994,27.71593090500015],[-115.01104128599992,27.728108086000034],[-115.02268426599994,27.740290592000047],[-115.03362639799988,27.759293089000053],[-115.0345830619999,27.77905848000013],[-115.0463103969999,27.795381771000095],[-115.04950854199993,27.80831244500017],[-115.05288652299991,27.822088934000146],[-115.05675208199992,27.82477448100003],[-115.08382347999992,27.851054038000157],[-115.05589758999992,27.860256252000013],[-115.0414702299999,27.85678170700014],[-115.02286036799985,27.84461779300007],[-115.01425743599991,27.830346771000123],[-114.96645117999991,27.826466694000157],[-114.9234045039999,27.83627549600014],[-114.88405430599994,27.83045654500016],[-114.86864063699993,27.830553734000105],[-114.84780084599994,27.82521587200013],[-114.8400156209999,27.81230250100016],[-114.81919398699992,27.80900601100008],[-114.78608959799989,27.815328708],[-114.76447046999992,27.81067299000007],[-114.73977108199989,27.80671360400011],[-114.7235683859999,27.806800852000052],[-114.71894744399991,27.79656174000011],[-114.70898525499987,27.79179296300005],[-114.69200211999996,27.787788434],[-114.66959404099988,27.787915749000074],[-114.6383460759999,27.77974562300015],[-114.6044572779999,27.774408886000103],[-114.57142083199993,27.78207759500019],[-114.53064561399991,27.78764038400011],[-114.49905714399992,27.77407148100015],[-114.4634903639999,27.78876373900006],[-114.4328507149999,27.800279039000188],[-114.40477454299989,27.817694403000147],[-114.39403235599987,27.828436591000084],[-114.38131257999994,27.836503220000154],[-114.36510169199997,27.850775458000115],[-114.34520423099988,27.863185940000122],[-114.33446204299987,27.869777736000017],[-114.32534745999986,27.87470123900009],[-114.31627356699997,27.87470123900009],[-114.30386308499995,27.872259833000143],[-114.29808508999989,27.868109442],[-114.29727128799988,27.860663153000033],[-114.29478919199994,27.852443752000127],[-114.29063880099991,27.83340078300013],[-114.29564368399986,27.817694403000147],[-114.30142167899992,27.801947333000115],[-114.30801347599989,27.78953685099999],[-114.31216386599992,27.779689846000068],[-114.30475826699985,27.764797268],[-114.28237870999992,27.735825914000102],[-114.2617081369999,27.72675202000003],[-114.24022376199989,27.70604075700011],[-114.22370357999989,27.696966864],[-114.1956274079999,27.692043361000128],[-114.17658443899991,27.679632880000113],[-114.15094967399993,27.66966380400011],[-114.13605709499987,27.65729401200018],[-114.12612870999989,27.643255927000137],[-114.11949622299991,27.63580963700015],[-114.1203507149999,27.625881252000156],[-114.11204993399994,27.620917059000092],[-114.10293535099993,27.620917059000092],[-114.10545813699986,27.610174872000087],[-114.10293535099993,27.601874091000113],[-114.09386145699995,27.607652085000083],[-114.08234615799991,27.614243882000054],[-114.07485917899994,27.62254466400013],[-114.07404537699993,27.629136460000023],[-114.05671139199985,27.64154694200012],[-114.04759680899986,27.653143622000144],[-114.04344641799992,27.66803620000009],[-114.05003821499989,27.673814195000162],[-114.05748450399996,27.66966380400011],[-114.0599666009999,27.676255601000022],[-114.06330318899991,27.679632880000113],[-114.06493079299995,27.682928778000147],[-114.0716039699999,27.679632880000113],[-114.07819576699988,27.680405992000047],[-114.0798233709999,27.686224677],[-114.07485917899994,27.69037506700012],[-114.06655839799987,27.692043361000128],[-114.05504309799991,27.694484768000095],[-114.04841061099985,27.691148179000052],[-114.04674231699995,27.684556382000082],[-114.04259192599991,27.679632880000113],[-114.0301814439999,27.682928778000147],[-114.02110755099989,27.679632880000113],[-114.02033443899987,27.67133209800012],[-114.01203365799988,27.665513414000188],[-113.9946996739999,27.658921617000104],[-113.96816972599991,27.654771226000076],[-113.95327714799987,27.655666408000158],[-113.95002193899983,27.65973541900003],[-113.94253495999995,27.66966380400011],[-113.93594316299989,27.678778387000122],[-113.93101966099992,27.68789297100001],[-113.91779537699989,27.696966864],[-113.91445878799996,27.71019114800005],[-113.91856848899991,27.719305731000034],[-113.9293513659999,27.72675202000003],[-113.94009355399993,27.728420315000122],[-113.94420325399997,27.73419830900009],[-113.95909583199993,27.740790106000148],[-113.96906490799984,27.74241771],[-113.9739884109999,27.744940497000115],[-113.97565670499989,27.752386786000084],[-113.98306230399989,27.757310289000046],[-113.98721269399992,27.75649648600013],[-113.9938044909999,27.74990469000015],[-114.0029190749999,27.750677802000084],[-114.01528886599992,27.749009507000054],[-114.02110755099989,27.74823639500015],[-114.02525794199993,27.74990469000015],[-114.03685462099992,27.768052476000047],[-114.04507402299994,27.78375885600012],[-114.05003821499989,27.792059637000094],[-114.05915279899997,27.801174221000096],[-114.06655839799987,27.80365631700012],[-114.06908118399988,27.799505927000084],[-114.06493079299995,27.790432033000073],[-114.05671139199985,27.77553945500004],[-114.05748450399996,27.764797268],[-114.04922441299988,27.759833075000145],[-114.04259192599991,27.750677802000084],[-114.03848222599996,27.739162502000127],[-114.0418188139999,27.73248932500009],[-114.04922441299988,27.73248932500009],[-114.05089270699987,27.72675202000003],[-114.0517471999999,27.72011953300013],[-114.05581620999995,27.720933335000055],[-114.06248938699991,27.72508372600002],[-114.07237708199992,27.72508372600002],[-114.0798233709999,27.719305731000034],[-114.0914200509999,27.711859442000062],[-114.10460364499995,27.707709052000112],[-114.11705481699988,27.709377346000124],[-114.12531490799986,27.714300848],[-114.13194739499993,27.723456122000172],[-114.14098059799994,27.730861721000068],[-114.14268958199993,27.74241771],[-114.14598548099987,27.755682684000117],[-114.15343176999995,27.76557038000011],[-114.16169186099984,27.774644273000135],[-114.17243404899996,27.78876373900006],[-114.17324785099989,27.80365631700012],[-114.17491614499988,27.816066799000126],[-114.17324785099989,27.826808986000156],[-114.16661536399991,27.83421458500014],[-114.16169186099984,27.84495677300005],[-114.14598548099987,27.863959052000055],[-114.13438880099996,27.87718333499999],[-114.13109290299992,27.88882070500001],[-114.13524329299987,27.89288971600017],[-114.14435787699996,27.894598700000174],[-114.14928137899992,27.89541250200007],[-114.15094967399993,27.89866771000011],[-114.14346269399996,27.902818101000076],[-114.1368708979999,27.90615469],[-114.13524329299987,27.911932684000146],[-114.13931230399992,27.915228583],[-114.14842688699991,27.918524481000034],[-114.15420488199989,27.92352936400009],[-114.15835527299993,27.93012116100014],[-114.15420488199989,27.936712958000115],[-114.15343176999995,27.945013739],[-114.16169186099984,27.949164130000142],[-114.16832434799991,27.950832424000154],[-114.1773982409999,27.94586823100009],[-114.17821204299993,27.93842194200012],[-114.18236243399986,27.930975653000147],[-114.19058183499995,27.928452867000132],[-114.19806881399983,27.922674872000172],[-114.20881100199995,27.91771067900011],[-114.22036699099996,27.91937897300012],[-114.23940995999996,27.911932684000146],[-114.24767005099994,27.901190497000144],[-114.25674394399995,27.892075914000046],[-114.2676937449999,27.8869012870001],[-114.27645156699987,27.901147773000062],[-114.27378964299989,27.916593688000077],[-114.2704514189999,27.92966307800016],[-114.2617081369999,27.944159247000083],[-114.25348873599991,27.952460028000175],[-114.23363196499989,27.96816640800013],[-114.22695878799993,27.980536200000174],[-114.21129309799997,27.995428778000033],[-114.20702063699987,27.99998607000016],[-114.1856583319999,28.022691148000135],[-114.15510006399988,28.062445380000113],[-114.13438880099996,28.083929755000053],[-114.1198684899999,28.08594977500003],[-114.11381156099993,28.06040695300014],[-114.11718390799989,28.043179942],[-114.13536580699987,28.031295451000076],[-114.14613333799987,28.02178966000004],[-114.14949488899991,28.01347446100011],[-114.15083636799997,28.004566200000152],[-114.1387141429999,27.988534887000025],[-114.13063581499995,27.97190719600003],[-114.12996061699995,27.96121693200014],[-114.10640219099992,27.927951567000132],[-114.0942989959999,27.95765068800013],[-114.09160276699993,27.97606246300002],[-114.09563881199992,27.996258391000126],[-114.10708142399989,28.013484002000112],[-114.11785402699994,28.011107101000093],[-114.12324162999992,28.016451491000154],[-114.12122357799993,28.022984960000187],[-114.1084308949999,28.03070841599999],[-114.09428743599993,28.024176268000172],[-114.07745713199986,28.0093244050001],[-114.06803612599992,27.99565965100014],[-114.05523800499988,28.007536667000164],[-114.0397363619999,28.027729815000114],[-114.03770919199985,28.03723464000016],[-114.04646538299994,28.038425827000122],[-114.0579142039999,28.04199331600016],[-114.07003059199992,28.055065106000097],[-114.08551944699991,28.056848454000132],[-114.09966733699991,28.05506404100002],[-114.10100736799986,28.071104546000086],[-114.10167017699989,28.09902774500013],[-114.10570930199987,28.111503506000144],[-114.11312056499987,28.120412927000032],[-114.11042232999992,28.12523021],[-114.10569461299988,28.134681592000064],[-114.09016264499988,28.156094875000164],[-114.07866728699989,28.176320572000137],[-114.06987530299996,28.193571201000065],[-114.05748450399996,28.206284898000135],[-114.06163489499991,28.212103583],[-114.06493079299995,28.22361888200011],[-114.06993567599989,28.239406643000066],[-114.07819576699988,28.246771552000084],[-114.08893795499988,28.246771552000084],[-114.09878332299986,28.23865316800008],[-114.10985408099988,28.241791231000107],[-114.1173696319999,28.250848444000052],[-114.12488288899992,28.25572503500014],[-114.11856117399991,28.26930318200006],[-114.11059731899992,28.286219916000064],[-114.0992905419999,28.307129428000152],[-114.08117438299986,28.342968946000056],[-114.06076247599994,28.404697378000105],[-114.04941813699992,28.4325748240001],[-114.04259192599991,28.458441473000093],[-114.05089270699987,28.474188544000057],[-114.06432162499989,28.479447901000086],[-114.07149597099993,28.48694418700002],[-114.06900591799987,28.504102774000057],[-114.06822669199988,28.518011786],[-114.07730058499989,28.52383047100015],[-114.08311926999993,28.532049872000144],[-114.08641516799987,28.541164455000125],[-114.09634355399987,28.55190664300015],[-114.11042232999992,28.561835028000147],[-114.12779700399989,28.562648830000068],[-114.1479907669999,28.56077325100013],[-114.16012582199996,28.566186918000152],[-114.15758356899993,28.582221889000138],[-114.1549672709999,28.601041279000114],[-114.15726999799992,28.625672197000156],[-114.16584225199989,28.646958726000047],[-114.17491614499988,28.65770091400016],[-114.18399003799989,28.66185130400011],[-114.2077530589999,28.66144440300009],[-114.23534094999991,28.66006094000012],[-114.2461579769999,28.653317288000025],[-114.2717511999999,28.65880135100018],[-114.27306067599997,28.673081773000106],[-114.26915442599997,28.67511627800003],[-114.2717062339999,28.68446697200012],[-114.27534198799988,28.696240946000056],[-114.29830772399993,28.703820338000025],[-114.31405987599994,28.726333475],[-114.34692252599986,28.730754736000065],[-114.34687008199987,28.748911288],[-114.34802032999991,28.763867369000153],[-114.36137133699987,28.777802814000054],[-114.36204993399988,28.79511139500006],[-114.37092037699993,28.813177802],[-114.39164582499987,28.806778586000135],[-114.4072823039999,28.839983903000174],[-114.40231678299993,28.860248671000175],[-114.4192985059999,28.878479626000125],[-114.43758228499988,28.877507454000167],[-114.43994166999997,28.894610312000125],[-114.45939582299987,28.91071300000012],[-114.47663326699987,28.92914459800015],[-114.50194251199991,28.932562567000062],[-114.51593990799988,28.929673570000134],[-114.52306067599991,28.925360419000025],[-114.52993730399993,28.925523179],[-114.54283195699985,28.934394031000167],[-114.54892017899991,28.951515414000152],[-114.55630449099992,28.97028229400003],[-114.56121472799995,28.980400083000074],[-114.5750219389999,28.97923411700008],[-114.59163312799986,28.965404173000096],[-114.60376453799988,28.997609376000142],[-114.60252844999992,29.030340887000037],[-114.6083064439999,29.046210028000147],[-114.61815344999991,29.063055731000148],[-114.6233617829999,29.080511786000116],[-114.63141842399995,29.094468492000185],[-114.65953528599994,29.103013414000102],[-114.68903605499995,29.113135089000124],[-114.7049267979999,29.096113213000095],[-114.72201032999995,29.117504618000066],[-114.72789466099992,29.141180731000173],[-114.73493404899989,29.151800848000125],[-114.73981686099987,29.17552317900014],[-114.74380449099992,29.187567450000145],[-114.75230872299996,29.192816473000118],[-114.78531304499985,29.194160130000014],[-114.82935268199986,29.231593020000144],[-114.85139606199988,29.258299975000014],[-114.87946529899992,29.28766510600018],[-114.92483900599984,29.330969118000084],[-114.97203528599994,29.37775299700003],[-115.10423743399991,29.418890692000033],[-115.18712317599994,29.428615627000156],[-115.23228919199991,29.490057684000032],[-115.2857216699999,29.52988523200015],[-115.37144934799989,29.55695221600014],[-115.42356524099986,29.595688954000153],[-115.45196427599986,29.620106179000015],[-115.47744706899994,29.626450914000156],[-115.49858318699985,29.611401236000077],[-115.5191544259999,29.627264716000084],[-115.5361221999999,29.635158596000068],[-115.5480850899999,29.653387762000033],[-115.57262524199989,29.668723250000152],[-115.59370482999991,29.692173071000084],[-115.6220533929999,29.69529558400016],[-115.69756432999992,29.755825783000105],[-115.69525202699988,29.777200286],[-115.68801295399993,29.801772610000103],[-115.68576718499989,29.83064062400014],[-115.6907445949999,29.851752020000117],[-115.69477696799991,29.869225027000155],[-115.69989884299989,29.898013849000062],[-115.72081458199992,29.920803127000156],[-115.72891191299995,29.93512604400014],[-115.7442927729999,29.947495835000083],[-115.76252193899988,29.95380280200011],[-115.80748450399997,29.956203518000063],[-115.81118730399992,29.96800364800013],[-115.79039466099992,30.038072007000114],[-115.7832721689999,30.09263782300003],[-115.79039466099992,30.12376536700019],[-115.79255123599984,30.12954336100013],[-115.80190995999996,30.143133856000087],[-115.80406653599997,30.15143463700018],[-115.80321204299987,30.163031317],[-115.79723059799994,30.195786851000108],[-115.7983292309999,30.240301825000117],[-115.80728105399992,30.284125067000087],[-115.82590809499996,30.317710644000115],[-115.8373030089999,30.34646703200009],[-115.86596663799992,30.368713728000117],[-115.89832686199989,30.38666194000014],[-115.93293209499986,30.400213934000124],[-115.97541256399991,30.40127187700007],[-115.94733639199991,30.42340729400014],[-115.93700110599988,30.435126044000025],[-115.93382727799992,30.44965241100006],[-115.94025631399985,30.463364976],[-115.9547013009999,30.479559637000065],[-115.97248287699989,30.492824611000074],[-115.98908443899985,30.497463283000016],[-115.98013261599993,30.482570705000157],[-115.97057044199993,30.470851955000153],[-115.96328691299992,30.458685614000085],[-115.96174068899987,30.442206122000087],[-115.97186687199991,30.434206691],[-115.98299782199993,30.431989539000043],[-115.98928200399986,30.4404864640001],[-116.0026749339999,30.44965241100006],[-116.01024329299995,30.443670966000138],[-116.01512610599993,30.43447500200007],[-116.01463782499992,30.426011460000137],[-116.00609290299991,30.422308661],[-115.99644934799994,30.41054922100004],[-115.99136308499992,30.388617255],[-115.97978479199992,30.359355827000073],[-116.00454898599989,30.359164572000154],[-116.0123305279999,30.39224956000008],[-116.02898127999993,30.441271407000112],[-116.04925400199988,30.47959301600015],[-116.03111731699993,30.627142645],[-116.03685462099988,30.730210679000137],[-116.05483964799993,30.78367747600008],[-116.05793209499991,30.802476304000106],[-116.06802324099986,30.81317780200014],[-116.10564431399986,30.818813746000057],[-116.15207621399992,30.857815507000073],[-116.17577403399987,30.86014723300009],[-116.20128333199995,30.89158763199999],[-116.21857662699993,30.913153387000094],[-116.22618567599997,30.926459052000112],[-116.24974524599993,30.956773179000113],[-116.26817786399995,30.963812567000087],[-116.30731263299994,30.95409131000015],[-116.33544582099985,30.956339556000113],[-116.34036253299989,30.98926041400013],[-116.32612001899992,31.027449096000097],[-116.3181090969999,31.089660714000058],[-116.3094376289999,31.14850495000003],[-116.34154212099988,31.219549872000083],[-116.45413951399986,31.338544165000187],[-116.49762936099987,31.406805731000148],[-116.50820878799989,31.419338283000158],[-116.51414954299995,31.422796942000062],[-116.53010006399985,31.440334377000013],[-116.53892981699988,31.447251695000105],[-116.55235755099991,31.452093817000087],[-116.5721329419999,31.466864325000145],[-116.58551998599992,31.471340236000046],[-116.59593665299992,31.477850653000118],[-116.59951738199987,31.483872789000127],[-116.6019587879999,31.491156317000144],[-116.60912024599985,31.501410223000065],[-116.64696204299989,31.52838776200012],[-116.65221106699987,31.53790924700003],[-116.67560787699996,31.552639065],[-116.68106035099991,31.566310940000147],[-116.67723548099988,31.577785549000097],[-116.68106035099991,31.577297268],[-116.66763261599992,31.580023505000085],[-116.64452063699987,31.579535223000093],[-116.66417395699993,31.601141669000086],[-116.66193600199992,31.616441148000046],[-116.65575110599985,31.632473049000126],[-116.64806067599993,31.659165757000054],[-116.65510006399991,31.67796458500011],[-116.6685277989999,31.69700755400002],[-116.67536373599992,31.702582098],[-116.6901749339999,31.708156643000123],[-116.71532326899985,31.710983804000094],[-116.7411768759999,31.73853386000017],[-116.75038080499993,31.752360311000114],[-116.70881100199998,31.74420807500017],[-116.67882239499993,31.726996161000063],[-116.66128495999988,31.72337474200019],[-116.64362545499988,31.73427969000006],[-116.63044186099992,31.75283437700007],[-116.61962677299991,31.77173837800002],[-116.61259833399986,31.80102687200015],[-116.61000172799986,31.822600523000016],[-116.61181856499992,31.842879924],[-116.61969967399989,31.85757070500013],[-116.6569257259999,31.86390121800018],[-116.67638283999987,31.86876454100003],[-116.6947253199999,31.89003968300007],[-116.7187888179999,31.901189162000108],[-116.73527801199987,31.903483287000043],[-116.75476835699995,31.909641021000155],[-116.75601152299994,31.93455638200011],[-116.75792395699992,31.965033270000063],[-116.76988684799994,31.97776927300013],[-116.80386308499988,31.978705145],[-116.8422745429999,31.986517645],[-116.86538652299993,32.013006903000175],[-116.87531490799986,32.03449127800009],[-116.87865149599988,32.069240627000156],[-116.88687089799988,32.132025458000115],[-116.90510006399988,32.1783714860001],[-116.92267818899988,32.21938711100002],[-116.9334203769999,32.23379140800007],[-116.94831295499985,32.24701569200012],[-116.9666641919999,32.256577867000104],[-117.0098770819999,32.265082098000114],[-117.02497311099992,32.276922919000086],[-117.0734757149999,32.369452216000084],[-117.08861243399988,32.404933986000074],[-117.10728919199997,32.4376488300001],[-117.1183975899999,32.45453522300009],[-117.12124589799994,32.47190989800008],[-117.12338461999988,32.490564937000116],[-117.12452675999987,32.51292381900011],[-117.12414985399995,32.52411934300006],[-117.12512148897225,32.531669490003665],[-117.04422054099994,32.53742075600009],[-116.97073665399988,32.54297597300011],[-116.89720109099993,32.548531189000116],[-116.82363968899992,32.55408640600002],[-116.75010412699994,32.55966746000003],[-116.67654272499993,32.565222677000136],[-116.60300716199998,32.57080373200016],[-116.52947159899992,32.576333110000164],[-116.45596187399993,32.58188832600017],[-116.38242631099993,32.587469381000076],[-116.30889074799987,32.59302459700011],[-116.2353293459999,32.59855397500009],[-116.16174210699988,32.604160869000125],[-116.08823238199992,32.60966440800003],[-116.01474849499994,32.615271302000124],[-115.94121293199994,32.62082651800016],[-115.86759985399996,32.626407573000066],[-115.79406429099997,32.63196278900007],[-115.7205287279999,32.63751800600009],[-115.64701900299993,32.6430732220001],[-115.57353511599986,32.648654277000034],[-115.49992203799995,32.654209493000124],[-115.42638647499989,32.65976471000012],[-115.35285091199991,32.66534576500005],[-115.27928951099992,32.67082346600012],[-115.20580562399995,32.676456197000064],[-115.13227006099997,32.68198557500007],[-115.05873449699996,32.68756663000009],[-114.98519893499991,32.693121847],[-114.9116116949999,32.69870290200011],[-114.83807613199991,32.70420644200003],[-114.76454056899996,32.709839173000134],[-114.72428462799992,32.71283640500015],[-114.72428426699989,32.712835255000144],[-114.72387121699991,32.7115186570001],[-114.7312092699999,32.68663645400012],[-114.73947749899995,32.669066468000054],[-114.75115637199991,32.65221995100008],[-114.7588044849999,32.64483022100008],[-114.78154211399996,32.62806121800013],[-114.7868131109999,32.6210332240001],[-114.8026777749999,32.5944973750001],[-114.79420283999991,32.57411102400006],[-114.79554642799987,32.552226054000116],[-114.80944738899996,32.51132415800002],[-114.82210811499999,32.50023956299999],[-114.81937311799992,32.49936330200016],[-114.81678544199994,32.49853424100003],[-114.7801468509999,32.48724294000006],[-114.37092118399991,32.36068735800016],[-113.96169551699991,32.23413177499999],[-113.5524440109999,32.10760203100001],[-113.14321834299993,31.98104644800013]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Montserrat","adm0_a3":"MSR","geou_dif":0,"geounit":"Montserrat","gu_a3":"MSR","su_dif":0,"subunit":"Montserrat","su_a3":"MSR","brk_diff":0,"name":"Montserrat","name_long":"Montserrat","brk_a3":"MSR","brk_name":"Montserrat","brk_group":null,"abbrev":"Monts.","postal":"MS","formal_en":null,"formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Montserrat","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":5097,"gdp_md_est":29,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"MH","iso_a2":"MS","iso_a3":"MSR","iso_n3":"500","un_a3":"500","wb_a2":"-99","wb_a3":"-99","woe_id":23424888,"woe_id_eh":23424888,"woe_note":"Exact WOE match as country","adm0_a3_is":"MSR","adm0_a3_us":"MSR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":10,"long_len":10,"abbrev_len":6,"tiny":6,"homepart":-99,"filename":"MSR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-62.1473689439999,16.744289455000054],[-62.14769446499991,16.737046617000118],[-62.15176347599991,16.72451406500005],[-62.150786912999905,16.720363674000083],[-62.14757239499993,16.715887762000136],[-62.14391028599991,16.70897044500012],[-62.141184048999946,16.70184967700007],[-62.1405330069999,16.696478583000044],[-62.14403235599988,16.688218492000118],[-62.14976966099994,16.68178945500003],[-62.157826300999886,16.67731354400007],[-62.16787675699996,16.6753604190001],[-62.21886145699994,16.68870677300012],[-62.23013261599993,16.727606512000108],[-62.21886145699994,16.776312567000048],[-62.20201575399994,16.819322007000096],[-62.189442511999886,16.814439195000116],[-62.18293209499987,16.81273021000004],[-62.17467200399989,16.81313711100003],[-62.179310675999915,16.79450104400004],[-62.17003333199995,16.77700429900008],[-62.156320766999926,16.76032135600005],[-62.1473689439999,16.744289455000054]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Nicaragua","sov_a3":"NIC","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nicaragua","adm0_a3":"NIC","geou_dif":0,"geounit":"Nicaragua","gu_a3":"NIC","su_dif":0,"subunit":"Nicaragua","su_a3":"NIC","brk_diff":0,"name":"Nicaragua","name_long":"Nicaragua","brk_a3":"NIC","brk_name":"Nicaragua","brk_group":null,"abbrev":"Nic.","postal":"NI","formal_en":"Republic of Nicaragua","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nicaragua","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":9,"pop_est":5891199,"gdp_md_est":16790,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"NU","iso_a2":"NI","iso_a3":"NIC","iso_n3":"558","un_a3":"558","wb_a2":"NI","wb_a3":"NIC","woe_id":23424915,"woe_id_eh":23424915,"woe_note":"Exact WOE match as country","adm0_a3_is":"NIC","adm0_a3_us":"NIC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NIC.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-83.7203669909999,11.88369375200007],[-83.71983801999991,11.870306708000072],[-83.72622636599992,11.878648179000137],[-83.7337947259999,11.905829169000143],[-83.73607337099986,11.941799221000123],[-83.72899329299989,11.973334052000126],[-83.70840410099986,11.987290757000096],[-83.70685787699992,11.987046617000146],[-83.70567786399991,11.986232815000136],[-83.70531165299988,11.984320380000083],[-83.70579993399988,11.981105861000131],[-83.71239173099994,11.970851955000098],[-83.71930904899995,11.954535223000079],[-83.72451738199993,11.936346747000172],[-83.72622636599992,11.920233466000113],[-83.7203669909999,11.88369375200007]]],[[[-83.0250544909999,12.175197658000116],[-83.0539444649999,12.143866278000159],[-83.05597896999987,12.16620514500009],[-83.04645748599995,12.183742580000128],[-83.03254146999987,12.190822658000101],[-83.0211482409999,12.181789455000086],[-83.0250544909999,12.175197658000116]]],[[[-82.73253333199992,14.369574286000086],[-82.75084387899997,14.361476955000143],[-82.80394446499989,14.365952867000118],[-82.80825761599988,14.366359768000121],[-82.80435136599988,14.366359768000121],[-82.80370032499994,14.366319078000132],[-82.8016251289999,14.36684804900011],[-82.80044511599988,14.369289455000143],[-82.8008520169999,14.373236395000133],[-82.78477942599991,14.381984768000107],[-82.77822831899994,14.393215236000103],[-82.77464758999986,14.404689846000153],[-82.76732337099986,14.414129950000158],[-82.75104732999992,14.42202383000014],[-82.73778235599988,14.42194245000016],[-82.72899329299992,14.413763739000144],[-82.72569739499988,14.397406317000133],[-82.73253333199992,14.369574286000086]]],[[[-83.35454565399993,15.010066834000085],[-83.34935217299991,14.996811829000178],[-83.33423681699992,15.006449483000095],[-83.31705440299996,15.00756052600019],[-83.27297440599997,15.003038839000167],[-83.2848858239999,14.99738026900013],[-83.28566097099991,14.992109274000198],[-83.27832291699994,14.987122498000149],[-83.26615311699993,14.982497457000179],[-83.26201900299988,14.983195089000091],[-83.21773230099987,14.982497457000179],[-83.19132564299989,14.994253845000172],[-83.1773988439999,14.996811829000178],[-83.14365413499993,14.994899801000159],[-83.13044447249342,14.997012021304869],[-83.13776607999992,14.986721096000153],[-83.15607662699989,14.978461005000069],[-83.16515051999988,14.96906159100014],[-83.1798396479999,14.985988674000124],[-83.19188391799989,14.974269924000138],[-83.20148678299998,14.953070380000142],[-83.20889238199996,14.94171784100017],[-83.22166907499991,14.935695705000157],[-83.23387610599988,14.921332098000093],[-83.24290930899987,14.904364325000117],[-83.24644934799997,14.890570380000113],[-83.24909420499995,14.885891018000093],[-83.26183020699992,14.873765367000189],[-83.26695716099994,14.866644598000134],[-83.26952063699994,14.856919664000186],[-83.27135169199991,14.835516669000143],[-83.27379309799994,14.82566966400013],[-83.28197180899986,14.813177802000112],[-83.29401607999995,14.804266669000171],[-83.3284399079999,14.79096100500007],[-83.32599850199995,14.796942450000174],[-83.3232315749999,14.801703192000076],[-83.31476803299995,14.811428127000125],[-83.31476803299995,14.803941148000149],[-83.31139075399994,14.809515692000076],[-83.30943762899989,14.814113674000097],[-83.30858313699989,14.819037177000068],[-83.3085017569999,14.82566966400013],[-83.31627356699991,14.821030992000189],[-83.31948808499988,14.820257880000085],[-83.3284399079999,14.82566966400013],[-83.3284399079999,14.831854559000092],[-83.31647701699987,14.83734772300012],[-83.3050837879999,14.838771877000097],[-83.29507402299993,14.835191148000119],[-83.28742428299988,14.82566966400013],[-83.28819739499991,14.844549872000158],[-83.2989395819999,14.870428778000159],[-83.30166581899991,14.890570380000113],[-83.30785071499986,14.910589911000073],[-83.32217363199993,14.913885809000107],[-83.33836829299989,14.908026434000163],[-83.35016842399997,14.90082428600013],[-83.36986243399991,14.883002020000148],[-83.41413326699987,14.827704169000155],[-83.42463131399984,14.803941148000149],[-83.4148656889999,14.813910223000148],[-83.41152910099987,14.818264065000136],[-83.39781653599994,14.80760325700011],[-83.38695227799985,14.766546942000106],[-83.38023841099991,14.757391669000128],[-83.36705481699995,14.749701239000103],[-83.35265051999988,14.736232815000122],[-83.33751380099989,14.731431382000137],[-83.32217363199993,14.749945380000142],[-83.32945716099997,14.756089585000126],[-83.34788977799991,14.767075914000173],[-83.35631262899993,14.770453192000103],[-83.34504146999987,14.776556708000099],[-83.33348548099994,14.773260809000147],[-83.32298743399986,14.763413804000137],[-83.31476803299995,14.749945380000142],[-83.31541907499991,14.772772528000162],[-83.30817623599997,14.779852606000135],[-83.29922441299996,14.771185614000132],[-83.26012122299991,14.59601471600017],[-83.2579646479999,14.590399481000162],[-83.24860592399997,14.571722723000091],[-83.2403051419999,14.523993231000134],[-83.1918025379999,14.386908270000077],[-83.18659420499992,14.347642320000148],[-83.19139563699991,14.313421942000074],[-83.21857662699992,14.25031159100017],[-83.30166581899991,14.119940497000144],[-83.33751380099989,14.077541408000158],[-83.34264075399992,14.060980536000102],[-83.34968014199988,14.048773505000113],[-83.39728756399987,14.016302802000125],[-83.4173884759999,13.988592841000141],[-83.43126380099991,13.956732489000116],[-83.45531165299994,13.863918361000103],[-83.49380449099993,13.737738348000105],[-83.51748613199992,13.623683986000103],[-83.51602128799988,13.574652411000145],[-83.52017167899993,13.55076732000016],[-83.52037512899997,13.531642971000094],[-83.54133053299991,13.481878973000107],[-83.55915279899992,13.415838934000092],[-83.57013912699995,13.287095445000176],[-83.5682266919999,13.26300690300016],[-83.56114661399994,13.249172268000066],[-83.56859290299991,13.242905992000116],[-83.56297766799992,13.230658270000148],[-83.52957109299984,13.032619533000087],[-83.50767981699991,12.90277741100013],[-83.54133053299991,12.63898346600017],[-83.54133053299991,12.580633856000176],[-83.53799394399991,12.571030992000189],[-83.52350826699987,12.542303778000147],[-83.5138240229999,12.510484117000116],[-83.48591061099995,12.472154039000173],[-83.47923743399991,12.447211005000069],[-83.48180091099991,12.416652736000131],[-83.49229895699996,12.400336005000113],[-83.51256262899989,12.39378489800012],[-83.54474850199995,12.39256419500019],[-83.56924394399996,12.387640692000147],[-83.59422766799989,12.378810940000093],[-83.61758378799986,12.375148830000127],[-83.63752193899987,12.385728257000096],[-83.62999426999991,12.392889716000127],[-83.60936438699989,12.40721263200011],[-83.60338294199997,12.413723049000112],[-83.60252844999988,12.425441799000097],[-83.60631262899989,12.441148179000066],[-83.61270097599989,12.454901434000178],[-83.63463294199993,12.47410716400013],[-83.63288326699984,12.539536851000094],[-83.63752193899987,12.564520575000117],[-83.63385982999992,12.566473700000158],[-83.63267981699988,12.566595770000134],[-83.63206946499992,12.567124742000102],[-83.6300349599999,12.570746161000073],[-83.62385006399984,12.570746161000073],[-83.58844967399992,12.559637762000136],[-83.56379146999984,12.590887762000108],[-83.55540930899988,12.635891018000095],[-83.56859290299991,12.66632721600014],[-83.56859290299991,12.673773505000128],[-83.55996660099993,12.683254299000126],[-83.5565486319999,12.696722723000121],[-83.55492102799988,12.752590236000088],[-83.5531306629999,12.754706122000101],[-83.54906165299994,12.758042710000126],[-83.54442298099991,12.763088283000158],[-83.54133053299991,12.769964911000073],[-83.54466712099986,12.79677969000015],[-83.56403561099997,12.812689520000077],[-83.59080969999987,12.819077867000189],[-83.61636308499996,12.817124742000146],[-83.63703365799998,12.805324611000088],[-83.64590410099993,12.786851304000066],[-83.64533443899987,12.766506252000156],[-83.63752193899987,12.748846747000144],[-83.61554928299995,12.737290757000123],[-83.61327063699989,12.735256252000099],[-83.61339270699993,12.731878973000079],[-83.61168372299994,12.714911200000103],[-83.61021887899989,12.707912502000125],[-83.60594641799989,12.701076565000108],[-83.60130774599993,12.698228257000068],[-83.59748287699992,12.69432200700008],[-83.59593665299988,12.684027411000145],[-83.59642493399988,12.667141018000152],[-83.59862219999987,12.66022370000016],[-83.60338294199997,12.652655341000113],[-83.59943600199998,12.647935289000102],[-83.58910071499989,12.63214752800016],[-83.62047278599991,12.614243882000109],[-83.67369544199991,12.570461330000128],[-83.70579993399988,12.55707428600013],[-83.74901282499988,12.552557684000178],[-83.76720130099994,12.546698309000135],[-83.77464758999994,12.533514716000083],[-83.77464758999994,12.481431382000139],[-83.77342688699991,12.480292059000107],[-83.76943925699993,12.482489325000103],[-83.76105709499987,12.482001044000114],[-83.74901282499988,12.479478257000096],[-83.74095618399994,12.479722398000135],[-83.73424231699988,12.477687893000109],[-83.72622636599992,12.468329169000171],[-83.71939042899993,12.423651434000107],[-83.72337805899991,12.402289130000055],[-83.73037675699987,12.382066148000135],[-83.7337133449999,12.362982489000146],[-83.72622636599992,12.34479401200015],[-83.70767167899993,12.335882880000128],[-83.67634029899989,12.342474677000098],[-83.67100989499991,12.327093817000145],[-83.67218990799995,12.317084052000082],[-83.67731686099994,12.297512111000103],[-83.67845618399987,12.286118882000137],[-83.67638098899988,12.279852606000176],[-83.67174231699994,12.28896719000008],[-83.65587317599991,12.340277411000102],[-83.64976966099992,12.353176174000124],[-83.64093990799998,12.358465887000094],[-83.62120520699995,12.355658270000147],[-83.6170141269999,12.348049221000108],[-83.6637263659999,12.256089585000097],[-83.68590247299996,12.137437242000145],[-83.67857825399996,12.009426174000083],[-83.67100989499991,11.98794179900014],[-83.67784583199995,11.983872789000172],[-83.68529212099992,11.981105861000131],[-83.68122311099995,12.001654364000075],[-83.68830318899991,12.018744208000115],[-83.71324622299993,12.049302476000136],[-83.7237442699999,12.074652411000088],[-83.71524003799988,12.085394598000093],[-83.70067298099985,12.095200914000117],[-83.69273841099988,12.118231512000179],[-83.69786536399991,12.135199286000073],[-83.71100826699985,12.154730536000145],[-83.72862708199987,12.171576239000146],[-83.74738521999983,12.180324611000117],[-83.77774003799989,12.177150783000158],[-83.77627519399995,12.162298895000092],[-83.76032467399995,12.153062242000132],[-83.74738521999983,12.166652736000088],[-83.73989824099988,12.166652736000088],[-83.72305253799988,12.149359442000089],[-83.71613521999987,12.138902085000112],[-83.71324622299993,12.125677802000068],[-83.71690833199989,12.108791408000087],[-83.73204505099989,12.087062893000109],[-83.7337133449999,12.071030992000116],[-83.73936926999991,12.051947333000129],[-83.75731360599984,12.051336981000162],[-83.79857337099989,12.063625393000123],[-83.80394446499986,12.060288804000109],[-83.79173743399988,12.052964585000097],[-83.76720130099994,12.043158270000076],[-83.76130123599992,12.035345770000077],[-83.75723222599987,12.024644273000149],[-83.75495357999989,12.01227448100012],[-83.75422115799995,11.999090887000165],[-83.7562556629999,11.99005768400015],[-83.76520748599991,11.971625067000119],[-83.76720130099994,11.964300848000121],[-83.76553300699992,11.958807684000178],[-83.76211503799993,11.953070380000113],[-83.75983639199987,11.946844794000157],[-83.76105709499987,11.940130927000112],[-83.76626542899987,11.933986721000124],[-83.77188066299986,11.931057033000116],[-83.77708899599986,11.929266669000128],[-83.78087317599989,11.926459052000084],[-83.79938717399992,11.902899481000118],[-83.8050837879999,11.899115302000096],[-83.81371008999989,11.896185614000087],[-83.82347571499994,11.88898346600014],[-83.83185787699989,11.879868882000068],[-83.83608964799993,11.871242580000143],[-83.82298743399986,11.862534898000163],[-83.80695553299995,11.848211981000176],[-83.7933650379999,11.832749742000159],[-83.78477942599989,11.813544012000108],[-83.77749589799987,11.808294989000117],[-83.76773027299993,11.804836330000114],[-83.75763912699998,11.803615627000099],[-83.74290930899988,11.80524323100012],[-83.74181067599994,11.809759833000086],[-83.74596106699997,11.816310940000065],[-83.74738521999983,11.824042059000163],[-83.7405899729999,11.843451239000089],[-83.73509680899988,11.853664455000114],[-83.72622636599992,11.857570705000114],[-83.70954342399989,11.858140367000175],[-83.69994055899991,11.849920966000084],[-83.65363521999983,11.667466539000117],[-83.6511938139999,11.63226959800015],[-83.65172278599988,11.61937083500014],[-83.6529841789999,11.611517645000147],[-83.65680904899992,11.60541413000007],[-83.66478430899986,11.598089911000073],[-83.66673743399991,11.600978908000101],[-83.68089758999992,11.598130601000065],[-83.69473222599993,11.593654690000093],[-83.69587154899995,11.59125397300015],[-83.70376542899993,11.587958075000115],[-83.71373450399992,11.573472398000163],[-83.72280839799993,11.570217190000122],[-83.73493404899992,11.569973049000083],[-83.74469967399995,11.568508205000114],[-83.75304114499994,11.564601955000114],[-83.76105709499987,11.55711497600005],[-83.77122962099992,11.526109117000118],[-83.78091386599986,11.479315497000144],[-83.79442298099985,11.443996486000131],[-83.81566321499994,11.447251695000162],[-83.82188880099991,11.447251695000162],[-83.85362708199993,11.4074160830001],[-83.86278235599994,11.39203522300015],[-83.86803137899992,11.374904690000122],[-83.86790930899986,11.27366771000014],[-83.83726966099994,11.1425235050001],[-83.81566321499994,11.090399481000146],[-83.78563391799989,11.044826565000108],[-83.77594967399992,11.019842841000084],[-83.75206458199995,10.982245184000178],[-83.7436417309999,10.974310614000117],[-83.7254532539999,10.963202216000099],[-83.71825110599988,10.943996486000131],[-83.71031653599991,10.922674872000172],[-83.69273841099988,10.925930080000114],[-83.69652258999992,10.93659088700015],[-83.68199622299997,10.938666083000072],[-83.66075598899988,10.934393622000158],[-83.64435787699988,10.925930080000114],[-83.65147843499992,10.926620992000082],[-83.65780879799993,10.92646596300014],[-83.66369991099991,10.927706197000177],[-83.67096044899992,10.922616069000185],[-83.66977189199989,10.917525940000118],[-83.67023697999991,10.912694194000096],[-83.66930680399994,10.869751078000135],[-83.66013423699987,10.834171855000164],[-83.66302811699987,10.807015889000184],[-83.6981422529999,10.789161682000127],[-83.76381811499999,10.773683168000105],[-83.76896480299993,10.772470195000096],[-83.83534318099994,10.747613831000137],[-83.85580704799995,10.72399770100013],[-83.85952775099994,10.721775615000126],[-83.88686458399988,10.727149964000175],[-83.893556682,10.72492787700017],[-83.90748347999995,10.715367737000179],[-83.91727616399993,10.713481547000171],[-83.92657792199994,10.714902649000152],[-83.93332169599998,10.71805491100011],[-83.9936280929999,10.765002950000166],[-83.99820145699994,10.7820561730001],[-84.0092343759999,10.789445903000114],[-84.02269608599997,10.787223817000111],[-84.0345558269999,10.775519104000125],[-84.05163488799994,10.779549866000124],[-84.07643957499997,10.763814393000146],[-84.08855769899989,10.775519104000125],[-84.09543066399993,10.775519104000125],[-84.10692867099996,10.766914978000086],[-84.11842667699997,10.771229960000156],[-84.13700435499993,10.789161682000127],[-84.14901912499991,10.787172140000093],[-84.15772972499995,10.78842464500016],[-84.1648321129999,10.789445903000114],[-84.18041255799994,10.78975596100018],[-84.19160050499997,10.781720276000115],[-84.19687150099992,10.788515727000158],[-84.21888566099997,10.80595652300019],[-84.221159424,10.809418844000135],[-84.22524186299992,10.813682149000101],[-84.22710221399993,10.819314881000123],[-84.2226580409999,10.82704050700012],[-84.2185239259999,10.829831035000083],[-84.20464880399993,10.836988220000123],[-84.20836950699993,10.860966085000143],[-84.22565527399993,10.875306295000144],[-84.24472387799992,10.884918111000147],[-84.25366390099992,10.894710796000197],[-84.26428340699991,10.901816305000139],[-84.31074051999994,10.919412130000126],[-84.32130834999992,10.92915313700017],[-84.32409887699995,10.936181132000172],[-84.3374055589999,10.95266591400015],[-84.34179805599987,10.959900615000123],[-84.34386511299994,10.97227712100009],[-84.34365840699988,10.982379863000133],[-84.34598384699993,10.989898784000076],[-84.35546647199989,10.994627177000154],[-84.36396724499991,10.989614563000188],[-84.41776241099993,10.955043030000112],[-84.4272450359999,10.951115621000142],[-84.43820043999997,10.952200826000137],[-84.44887162399996,10.95633494100015],[-84.45783748399992,10.961347555000202],[-84.46638993399992,10.968453064000144],[-84.48912756399992,10.996358337000132],[-84.49331335499994,10.999407248000153],[-84.49817093999988,11.001991069000155],[-84.50333858299987,11.004032288000118],[-84.50873876999995,11.005530904000123],[-84.558606527,11.027209168000113],[-84.58168005399995,11.034469706000095],[-84.60322912599992,11.03328114900016],[-84.62066992199996,11.035761617000132],[-84.65872961499988,11.062736715000156],[-84.6764546309999,11.070410665000152],[-84.7077705489999,11.06304677400014],[-84.78177119999992,11.014884339000162],[-84.88496903499995,10.947679138000112],[-84.90840429699992,10.939359233000147],[-84.93140030999987,10.941891378000136],[-85.09283748399994,11.00064748200019],[-85.23647823899995,11.053096617000122],[-85.27236140999992,11.066199036000114],[-85.40741776599991,11.115446676000175],[-85.50862605899991,11.152421163000128],[-85.54094966699998,11.170327046000097],[-85.56916499899995,11.195390117000116],[-85.59779374199994,11.209937032000155],[-85.63115087999992,11.196216939000138],[-85.65931453499988,11.158829041000075],[-85.67758215399994,11.11963246700013],[-85.7017355659085,11.080880181194232],[-85.7024226549999,11.081203518000095],[-85.75230872299994,11.101711330000143],[-85.77171790299988,11.104681708000143],[-85.78579667899989,11.112250067000103],[-85.79369055899988,11.130031643000095],[-85.8030899729999,11.166083075000145],[-85.8213191399999,11.19281647300015],[-85.9280085929999,11.310736395000076],[-85.93679765499988,11.316961981000118],[-85.94151770699997,11.319118557000124],[-85.95681718699993,11.32977936400006],[-85.96011308499996,11.334011135000166],[-85.9948624339999,11.34365469000015],[-86.01036536399994,11.357977606000134],[-86.04393469999988,11.39809804900014],[-86.0705867179999,11.4116885440001],[-86.10472571499989,11.447292385000152],[-86.14830481699991,11.471747137000108],[-86.16274980399987,11.484523830000143],[-86.16665605399987,11.492621161000073],[-86.17613684799997,11.52240631700009],[-86.20714270699989,11.536037502000125],[-86.24437415299988,11.571600653000102],[-86.33645585799988,11.611354885000182],[-86.35208085799985,11.622626044000086],[-86.36538652299987,11.63796621300014],[-86.37661699099988,11.669460354000151],[-86.49636796799987,11.759426174000126],[-86.51561438699991,11.78310781500015],[-86.5423884759999,11.842352606000134],[-86.5532120429999,11.851345119000158],[-86.56326249899988,11.856634833000129],[-86.58962968699987,11.882839260000168],[-86.60521399599989,11.90468984600011],[-86.62222245999993,11.936102606000132],[-86.62547766799989,11.950995184000092],[-86.63036048099984,11.964911200000174],[-86.64187577999988,11.9765078800001],[-86.66649329299987,11.995306708000143],[-86.68980872299989,12.024074611000088],[-86.72756913999987,12.088283596000123],[-86.76268469999994,12.18227773600016],[-86.77257239499994,12.197414455000157],[-86.79751542899986,12.218532619000172],[-87.0022273429999,12.341376044000143],[-87.01504472599991,12.356838283000073],[-87.07140051999988,12.388698635000097],[-87.1019587879999,12.420965887000136],[-87.17100989499994,12.451442776000178],[-87.17357337099995,12.474514065000136],[-87.16209876199989,12.459621486000088],[-87.14248613199993,12.446844794000143],[-87.11961829299992,12.437689520000061],[-87.09780839799987,12.433539130000128],[-87.12267005099991,12.460353908000116],[-87.13548743399986,12.470485744000172],[-87.14932206899994,12.474514065000136],[-87.15786699099988,12.481024481000134],[-87.18040930899986,12.522975979000122],[-87.18663489499991,12.522975979000122],[-87.1764216789999,12.4859072940001],[-87.19273841099991,12.499904690000065],[-87.21886145699995,12.532253322000173],[-87.23806718699993,12.550238348000121],[-87.25047766799995,12.555324611000131],[-87.31297766799989,12.602809963000139],[-87.32127844999988,12.611232815000108],[-87.3257950509999,12.621608791000185],[-87.33120683499995,12.63898346600017],[-87.3340144519999,12.633571682000124],[-87.34178626199991,12.624090887000122],[-87.34483801999991,12.619167385000152],[-87.45486406199984,12.743801174000126],[-87.46776282499988,12.769964911000073],[-87.46349036399994,12.765163479000165],[-87.45933997299991,12.762396552000112],[-87.4472957019999,12.75629303600013],[-87.4472957019999,12.762518622000087],[-87.45205644399991,12.7641869160001],[-87.46092688699994,12.769964911000073],[-87.46092688699994,12.77619049700013],[-87.46349036399994,12.786322333000086],[-87.48025468699987,12.799994208000115],[-87.50291907499994,12.81195709800015],[-87.52297929599987,12.817165432000136],[-87.52297929599987,12.810939846000082],[-87.4964493479999,12.793850002000141],[-87.48253333199995,12.78119538000007],[-87.48204505099994,12.769964911000073],[-87.4922175769999,12.771389065000136],[-87.50698808499988,12.782416083000086],[-87.52920488199992,12.80349355700011],[-87.6465144519999,12.87238190300016],[-87.67092851499984,12.893500067000074],[-87.68565833199993,12.918280341000141],[-87.6858210929999,12.947577216000154],[-87.66702226499983,12.982245184000135],[-87.63882402299987,13.006496486000131],[-87.60997473899994,13.024074611000158],[-87.58877519399996,13.046332098000107],[-87.58385169199991,13.08466217700014],[-87.57762610599994,13.08466217700014],[-87.58043372299989,13.063177802000112],[-87.58385169199991,13.05731842700007],[-87.57262122299989,13.05731842700007],[-87.55907141799992,13.05556875200007],[-87.54763749899986,13.052150783000158],[-87.54283606699988,13.047430731000148],[-87.53811601499987,13.044501044000128],[-87.51272538999987,13.023220119000158],[-87.50637773299994,13.019680080000084],[-87.48827063699991,12.995917059000163],[-87.48387610599994,12.99262116100013],[-87.4710587229999,12.985052802000098],[-87.46776282499988,12.982245184000135],[-87.46690833199995,12.975734768000137],[-87.46898352799988,12.960638739000132],[-87.46776282499988,12.954291083000115],[-87.43504798099994,12.922390041000185],[-87.39248613199987,12.91339752800016],[-87.28958085799991,12.91958242400014],[-87.28958085799991,12.927028713000112],[-87.34166419199994,12.925726630000113],[-87.36778723899991,12.928534247000158],[-87.37901770699989,12.937567450000172],[-87.36892656199984,12.953558661000088],[-87.32058671799993,12.977199611000103],[-87.31403561099992,12.981553453000101],[-87.31403245531774,12.981555662238932],[-87.08465389099992,12.99592620900013],[-87.06984859299989,12.994375915000191],[-87.0468525799999,12.980552470000148],[-87.03504451599994,12.979777324000139],[-87.02961848999986,12.996081238000158],[-87.0087670499999,13.006080628000175],[-86.98318721499996,13.021867777000168],[-86.97181840099998,13.033882548000136],[-86.94840897699993,13.069694316000081],[-86.94272456899998,13.074060975000151],[-86.92799678599997,13.081243998000105],[-86.922932495,13.086385804000201],[-86.92024532099995,13.096178487000158],[-86.92417272999992,13.099795838000148],[-86.92980546099994,13.102224630000194],[-86.93233760599995,13.108529155000127],[-86.9237076419999,13.161135763000118],[-86.92551631799996,13.163642070000094],[-86.93306107699992,13.179713440000157],[-86.93492142799994,13.185527038000146],[-86.9332161049999,13.188188375000067],[-86.92598140499993,13.216352031000111],[-86.91885005799988,13.229762065000159],[-86.91078853399998,13.239580587000134],[-86.86272945199994,13.279939880000185],[-86.84950028499995,13.28882822700011],[-86.83342891499987,13.293349915000135],[-86.81622066299991,13.291928813000155],[-86.75865311799996,13.264178569000109],[-86.7492996829999,13.26128468800013],[-86.73984289599994,13.263713481000181],[-86.73271527199994,13.268469503000148],[-86.72547684799994,13.273299459000098],[-86.71178259299992,13.285675965000152],[-86.70403112899993,13.298827616000125],[-86.70186071799992,13.314201355000193],[-86.70780350799991,13.342830099000182],[-86.70992224199992,13.348902079000126],[-86.71715694199989,13.361640320000092],[-86.72361649699994,13.367324727000137],[-86.7304377849999,13.36890085800016],[-86.73638057499991,13.371949768000192],[-86.74020463099995,13.381923320000112],[-86.7386543379999,13.396211853000182],[-86.72594193599988,13.423832906000186],[-86.7242882899999,13.439413351000127],[-86.7565860599999,13.559380188000205],[-86.75710282399993,13.57640757300014],[-86.75090165199995,13.608421122000138],[-86.75157344599992,13.62441497800009],[-86.75539750199997,13.63087453200015],[-86.76412956499993,13.637335555000133],[-86.76821325699987,13.640357158000128],[-86.77214066599993,13.645524801000121],[-86.77405269399995,13.654594015000098],[-86.77116759299989,13.707890404000139],[-86.7702286379999,13.725235698000176],[-86.76790319899996,13.739162496000162],[-86.7661978769999,13.745260315000124],[-86.76144364499991,13.749342753000134],[-86.74991979999989,13.757120056000147],[-86.72723384699992,13.768256327000174],[-86.70630489199992,13.770013326000154],[-86.66268998299998,13.764690654000105],[-86.58114457199991,13.779857687000131],[-86.5416637779999,13.782131450000136],[-86.5085391849999,13.764380595000205],[-86.49081416899989,13.759497172000179],[-86.47629309199993,13.764018860000121],[-86.46285721899997,13.770943502000192],[-86.4482327889999,13.772958883000143],[-86.43247147699992,13.757120056000147],[-86.4265286869999,13.752985942000123],[-86.41707189999994,13.750014547000205],[-86.41009558099994,13.749032695000153],[-86.35847082599992,13.752262472000126],[-86.34012569199993,13.75665496800012],[-86.32519120299989,13.763760478000151],[-86.31356400599991,13.776602072000143],[-86.30777624499987,13.791691589000138],[-86.29992142799992,13.821328023000191],[-86.28410843999993,13.845719299000123],[-86.21858272299991,13.914371440000167],[-86.18406286699994,13.966874695000143],[-86.17357255099996,13.973670146000174],[-86.16179032499988,13.978114319000099],[-86.14969803999989,13.984263815000162],[-86.13801916599994,13.996175232000098],[-86.13083614199986,14.008913473000161],[-86.12690873199992,14.01855112700018],[-86.1216894129999,14.027206930000133],[-86.11047562699994,14.03712880500012],[-86.0967296959999,14.04407928400012],[-86.02019689999992,14.055163879000133],[-86.02045528199996,14.04407928400012],[-86.03125565599993,14.02258188900008],[-86.02841345299996,13.99607187900017],[-85.95777176899995,13.946100769000097],[-85.93611934499994,13.91819549600011],[-85.92940140799993,13.912097677000146],[-85.91550044799995,13.90744679800018],[-85.90630204299995,13.909358826000116],[-85.8972069909999,13.913027853000116],[-85.8835644129999,13.913854675000138],[-85.86160192899992,13.904423727000164],[-85.84987137899992,13.887086283000158],[-85.84010453299999,13.866570740000085],[-85.82416235399987,13.847683004000146],[-85.80201900199992,13.84021576000012],[-85.77866125499989,13.840939230000117],[-85.75830074099994,13.83928558400008],[-85.74499405999993,13.82468699100019],[-85.74311460299995,13.823958222000115],[-85.74246191399996,13.82370513900014],[-85.7402931119999,13.825639142000112],[-85.73339269999988,13.831792501000137],[-85.72512447199995,13.847941386000128],[-85.72300573799996,13.863418478000128],[-85.72869014499992,13.875019837000181],[-85.7436763099999,13.879567363000206],[-85.74744868999991,13.888274842000085],[-85.74328873799996,13.907550151000123],[-85.73339269999988,13.937625834000187],[-85.73220414299995,13.95953664100014],[-85.72734655799994,13.965014344000137],[-85.71698543399992,13.962688904000103],[-85.69923457899992,13.961500346000077],[-85.68649633799996,13.967339783000154],[-85.66618750099994,13.984470520000116],[-85.65766088899991,13.98199005200014],[-85.65148555599993,13.98199005200014],[-85.65195064399987,13.986692607000123],[-85.65040035099994,13.987855327000133],[-85.64766149999988,13.987803650000131],[-85.64461258999995,13.988785503000187],[-85.64786820499995,13.999301657000146],[-85.61280574599994,14.009740295000185],[-85.60306473799997,14.01953298000015],[-85.59360795099991,14.033459778000136],[-85.57169714399996,14.04051361100015],[-85.56314591299994,14.042012281000154],[-85.54663407499991,14.044906108000134],[-85.52795304399987,14.050900574000165],[-85.51862544799994,14.064594828000097],[-85.51640336199992,14.080537008000121],[-85.51064143899994,14.093792013000126],[-85.47467464199987,14.10340382900013],[-85.45762141999987,14.113041483000146],[-85.43173152699991,14.132833557000126],[-85.42015600599987,14.14686370800014],[-85.40912308799997,14.16616485600018],[-85.40088069699993,14.185181783000145],[-85.39362015799996,14.2107616170001],[-85.38400834199987,14.226445414000167],[-85.37251033599992,14.241095683000138],[-85.3628726809999,14.250113221000106],[-85.35853186099993,14.250888367000115],[-85.34780900099992,14.249234721000148],[-85.34362320999989,14.250113221000106],[-85.34080684399993,14.253368836000092],[-85.33796463999994,14.260681050000159],[-85.33088496899992,14.269000957000129],[-85.32682836999992,14.275744731000158],[-85.32135066699993,14.281325786000167],[-85.31197139499997,14.283651225000199],[-85.28820023699993,14.295149231000138],[-85.2778132739999,14.29731964100013],[-85.23996028699992,14.29731964100013],[-85.2152072749999,14.301582947000085],[-85.190195883,14.309644470000165],[-85.16962866299991,14.321762594000162],[-85.15802730299995,14.338273214000154],[-85.15903499399994,14.361062520000145],[-85.17187658799992,14.381009623000152],[-85.18973079499997,14.396848450000164],[-85.20582800299994,14.407157899000168],[-85.1784911709999,14.427647603000139],[-85.1773542889999,14.433977966000157],[-85.17967972899993,14.449248352000112],[-85.1784911709999,14.455604553000128],[-85.15539180599993,14.479479065000122],[-85.15182613199995,14.485964457000177],[-85.14981075099992,14.536504008000108],[-85.14546992999993,14.564254252000156],[-85.1375375989999,14.578491109000124],[-85.11932165599993,14.573969422000088],[-85.1033536379999,14.556864522000138],[-85.08637792999988,14.544539693000104],[-85.06524226899987,14.554254862000134],[-85.02963720699998,14.588955587000157],[-85.02365718199988,14.602540872000134],[-85.02222163999994,14.605802104000135],[-85.0481632079999,14.605776266000134],[-85.0422204189999,14.61347605400013],[-85.02020625799992,14.633733215000133],[-85.048524944,14.653318583000143],[-85.05392513099989,14.663059591000192],[-85.03821549499992,14.667219544000131],[-85.0330478519999,14.66957082100008],[-85.02979223699992,14.675539449000096],[-85.02454707899997,14.712539775000138],[-85.01565873299987,14.72817189600009],[-85.00199031699995,14.740677592000097],[-84.99994828999994,14.74201598800016],[-84.98436865199997,14.752227275000124],[-84.9664627689999,14.764629618000187],[-84.92062577299995,14.807701925000101],[-84.90421850699991,14.81697784400012],[-84.84442887399996,14.827545675000179],[-84.81809973199998,14.828656718000088],[-84.79213232499993,14.821060283000122],[-84.77016984099996,14.805143942000198],[-84.75546789599989,14.78147613500016],[-84.75856848199993,14.778659770000102],[-84.76639746199996,14.768867086000142],[-84.7669400639999,14.766903381000121],[-84.74704463799988,14.764474590000148],[-84.74427994799993,14.752408142000164],[-84.74528763799992,14.73910146100016],[-84.7248496099999,14.725639750000198],[-84.71441097099992,14.708922424000148],[-84.69932145199994,14.674686788000159],[-84.6808471279999,14.685461325000176],[-84.66170100999992,14.683445943000137],[-84.62296952399997,14.667219544000131],[-84.60043859899994,14.662516989000151],[-84.5274197999999,14.660398254000171],[-84.53121801799995,14.653318583000143],[-84.53421525099995,14.633733215000133],[-84.51904821799994,14.63828074200016],[-84.50848038799987,14.632622172000127],[-84.49801590999992,14.62391469300016],[-84.48269384799997,14.619470520000148],[-84.47160925299994,14.62262278300011],[-84.44571936099993,14.636678772000124],[-84.40843481499988,14.64941701300009],[-84.39001216699998,14.671482849000185],[-84.37613704499992,14.696726787000143],[-84.36293371599993,14.715614523000168],[-84.35319270899997,14.705976868000148],[-84.34603552299993,14.679983622000092],[-84.33838741099994,14.674686788000159],[-84.32316870199992,14.67331736300018],[-84.29888077799993,14.667994690000143],[-84.28779618399992,14.667219544000131],[-84.26728063999994,14.67773569800009],[-84.26216467299994,14.699749858000159],[-84.26733231699987,14.746672058000115],[-84.26180293899995,14.758531799000137],[-84.24921972699994,14.759410298000178],[-84.23539628099988,14.754733582000199],[-84.22637874399993,14.749772644000158],[-84.21867895599993,14.74344228200013],[-84.1950111489999,14.718715108000126],[-84.18289302699992,14.713857523000101],[-84.16819108199991,14.714968567000197],[-84.1437998049999,14.72186737100017],[-84.13788285399997,14.725226339000187],[-84.1338520919999,14.730032247000096],[-84.1287361249999,14.734192200000123],[-84.11961523499991,14.736104228000142],[-84.11121781499992,14.734708964000163],[-84.10651525899996,14.732331848000115],[-84.10227779199991,14.7318667600001],[-84.09543066399993,14.736104228000142],[-84.09543066399993,14.743597310000085],[-84.10418981999992,14.751865540000123],[-84.1111144619999,14.761038106000113],[-84.12271582099994,14.784525045000107],[-84.11176041699989,14.793413392000119],[-84.1044482019999,14.793930156000158],[-84.08155554199996,14.779796651000112],[-84.07897172099987,14.77517161100016],[-84.07519934099994,14.771631775000102],[-84.0646831869999,14.77026234900012],[-84.04781083299991,14.770804952000162],[-84.04266902699989,14.768066101000128],[-84.04075699899997,14.760340474000131],[-84.02357458499992,14.758325094000085],[-83.92471756999996,14.76344106100008],[-83.92985937599994,14.7716576130001],[-83.92965266999991,14.780881857000109],[-83.92471756999996,14.803774516000132],[-83.91265112299996,14.797185771000143],[-83.89655391499991,14.780442606000177],[-83.88376399799992,14.77710947700018],[-83.88500423199989,14.781346944000134],[-83.88993933099991,14.790726216000095],[-83.88267879199992,14.787832337000097],[-83.87875138399997,14.786747132000102],[-83.87526322499991,14.784266663000125],[-83.86947546399995,14.77710947700018],[-83.85730566499993,14.787780661000083],[-83.83950313299991,14.797418315000101],[-83.81965938399992,14.803619486000086],[-83.80121089699989,14.803774516000132],[-83.80898819999989,14.808890483000125],[-83.81392329999994,14.81377390600015],[-83.8210546469999,14.825478618000133],[-83.76529577699995,14.82878590900013],[-83.7445218519999,14.836666565000158],[-83.74656306999995,14.852195333000097],[-83.73392818199991,14.852970480000094],[-83.72361873399993,14.851575216000114],[-83.7162031659999,14.847053528000087],[-83.71243078599989,14.838526917000166],[-83.70501521899988,14.838526917000166],[-83.71449784399994,14.867233175000166],[-83.71062211099988,14.87834360700019],[-83.69196691899992,14.886973572000128],[-83.67214900799993,14.889634908000163],[-83.6499539799999,14.888498027000153],[-83.63155717,14.883201192000115],[-83.62305639699989,14.872685038000157],[-83.61561499099987,14.872685038000157],[-83.61130000899989,14.884906514000164],[-83.60918127499991,14.898368225000127],[-83.60427201399996,14.909194437000167],[-83.57977738499994,14.918108623000194],[-83.55486934399997,14.937409770000144],[-83.54047745899996,14.941569723000072],[-83.5424411619999,14.945083720000126],[-83.54512833699991,14.95216339100014],[-83.54735042399992,14.955212301000174],[-83.5324934489999,14.951026509000144],[-83.52686071799997,14.948365174000115],[-83.5299096279999,14.961775207000157],[-83.52861771699995,14.973402405000114],[-83.52303666199992,14.977691548000095],[-83.51321813999994,14.968854879000089],[-83.51262386099997,14.984021911000113],[-83.51099605299996,14.990171407000075],[-83.50572505699992,14.996811829000178],[-83.51246883199994,15.006501160000196],[-83.50908402499992,15.011539612000178],[-83.49900712099988,15.01265065500017],[-83.48585546899992,15.010480245000096],[-83.48055863499988,15.005545146000143],[-83.46838883499996,14.987406719000118],[-83.45919042999996,14.982497457000179],[-83.4357293299999,14.985184631000124],[-83.41547216799998,14.996941020000122],[-83.39989172399996,15.013632508000143],[-83.39030574599994,15.030969950000156],[-83.37782588699997,15.021254781000122],[-83.36498429399987,15.016345521000176],[-83.35454565399993,15.010066834000085]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Panama","sov_a3":"PAN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Panama","adm0_a3":"PAN","geou_dif":0,"geounit":"Panama","gu_a3":"PAN","su_dif":0,"subunit":"Panama","su_a3":"PAN","brk_diff":0,"name":"Panama","name_long":"Panama","brk_a3":"PAN","brk_name":"Panama","brk_group":null,"abbrev":"Pan.","postal":"PA","formal_en":"Republic of Panama","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Panama","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":6,"mapcolor13":3,"pop_est":3360474,"gdp_md_est":38830,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"PM","iso_a2":"PA","iso_a3":"PAN","iso_n3":"591","un_a3":"591","wb_a2":"PA","wb_a3":"PAN","woe_id":23424924,"woe_id_eh":23424924,"woe_note":"Exact WOE match as country","adm0_a3_is":"PAN","adm0_a3_us":"PAN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PAN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.80719967399995,7.291571356000105],[-81.8077286449999,7.287420966000155],[-81.79800370999988,7.291083075000117],[-81.78990637899994,7.290106512000136],[-81.78050696499992,7.287827867000161],[-81.76671301999991,7.287420966000155],[-81.77904212099986,7.277492580000157],[-81.79238847599986,7.251654364000131],[-81.80089270699992,7.238999742000161],[-81.79698645699992,7.233954169000128],[-81.79344641799992,7.225978908000087],[-81.80089270699992,7.225978908000087],[-81.81623287699995,7.271307684000178],[-81.81456458199995,7.279974677000083],[-81.81875566299988,7.285630601000164],[-81.8191625639999,7.288723049000154],[-81.81456458199995,7.294256903000175],[-81.8107804029999,7.294134833000101],[-81.8082576159999,7.293443101000165],[-81.80719967399995,7.291571356000105]]],[[[-81.04499264199984,7.554144598000136],[-81.05284583199992,7.544623114000131],[-81.0641169909999,7.540676174000139],[-81.0750219389999,7.535345770000091],[-81.08275305899991,7.533840236000131],[-81.09142005099989,7.537543036000073],[-81.09776770699992,7.542547919000114],[-81.10334225199995,7.545558986000117],[-81.10985266799992,7.547064520000077],[-81.1190486319999,7.54751211100016],[-81.12926184799994,7.545314846000082],[-81.13438880099994,7.539943752000113],[-81.13784745999996,7.533392645000133],[-81.14297441299996,7.527655341000155],[-81.17088782499991,7.513373114000076],[-81.18492591099995,7.496975002000156],[-81.1907445949999,7.493475653000161],[-81.19912675699987,7.493475653000161],[-81.20856686099998,7.495591539000173],[-81.21580969999991,7.498277085000068],[-81.2180883449999,7.499701239000131],[-81.2456762359999,7.490057684000162],[-81.25194251199984,7.490423895000077],[-81.2425837879999,7.503404039000173],[-81.23289954299986,7.513373114000076],[-81.2227270169999,7.521063544000086],[-81.21043860599985,7.525946356000148],[-81.17438717399989,7.531439520000092],[-81.16405188699989,7.540513414000173],[-81.15762285099987,7.551581122000129],[-81.14915930899994,7.561183986000104],[-81.1355688139999,7.568182684000177],[-81.11807206899992,7.574530341000112],[-81.08771725199995,7.581610419000171],[-81.0750219389999,7.577337958000072],[-81.06159420499988,7.575588283000158],[-81.03307044199991,7.575425523000192],[-81.04499264199984,7.554144598000136]]],[[[-81.73884029899996,7.64427317900008],[-81.71617591099991,7.579657294000127],[-81.71519934799994,7.568019924000126],[-81.71328691299988,7.565904039000117],[-81.70531165299992,7.553697007000138],[-81.70482337099995,7.55109284100014],[-81.70592200399989,7.543117580000085],[-81.70531165299992,7.540676174000139],[-81.70213782499988,7.540187893000152],[-81.69383704299989,7.541408596000081],[-81.69102942599994,7.540676174000139],[-81.68203691299989,7.534572658000157],[-81.67564856699988,7.532131252000127],[-81.67178300699989,7.526353257000067],[-81.67052161399987,7.510239976000178],[-81.67638098899991,7.505519924000083],[-81.70836341099991,7.493475653000161],[-81.70933997299989,7.486639716000155],[-81.71678626199989,7.457505601000193],[-81.71898352799988,7.452541408000144],[-81.71271725199992,7.44009023600013],[-81.69473222599987,7.423976955000157],[-81.69102942599994,7.414048570000148],[-81.68919837099986,7.40379466400013],[-81.68443762899994,7.39500560100015],[-81.67788652299987,7.391587632000053],[-81.67052161399987,7.39728424700013],[-81.6643774079999,7.39728424700013],[-81.65249589799996,7.391017971000083],[-81.62205969999991,7.393866278000117],[-81.61587480399993,7.386704820000175],[-81.58800208199997,7.335191148000191],[-81.60667883999986,7.327582098000064],[-81.62816321499989,7.321600653000146],[-81.64940344999988,7.321519273000163],[-81.6842341789999,7.34137604400017],[-81.72712154899997,7.34442780200007],[-81.74624589799996,7.348863023000134],[-81.75670325399993,7.357733466000084],[-81.78075110599988,7.38422272300015],[-81.80003821499992,7.395575262000121],[-81.84186764199991,7.430812893000081],[-81.86465410099996,7.478461005000142],[-81.87287350199995,7.486029364000103],[-81.87511145699992,7.490423895000077],[-81.88280188699986,7.516791083000085],[-81.87889563699986,7.517482815000121],[-81.85806230399987,7.517523505000113],[-81.84870357999995,7.520209052000084],[-81.8489477199999,7.524115302000084],[-81.83625240799992,7.546698309000148],[-81.83438066299996,7.54751211100016],[-81.83177649599986,7.55927155200014],[-81.83141028599994,7.568182684000177],[-81.82998613199987,7.576157945000134],[-81.82445227799985,7.585353908000116],[-81.81680253799993,7.590399481000134],[-81.79832923099991,7.594224351000064],[-81.77013098899994,7.614813544000099],[-81.76036536399988,7.62018463700015],[-81.7599177729999,7.616400458000128],[-81.75251217399992,7.616400458000128],[-81.75523841099987,7.624009507000069],[-81.75731360599988,7.63641998900009],[-81.7599177729999,7.64427317900008],[-81.75251217399992,7.64427317900008],[-81.75251217399992,7.636867580000086],[-81.74624589799996,7.636867580000086],[-81.74681555899991,7.641831773000134],[-81.74535071499986,7.643296617000189],[-81.74242102799994,7.643459377000156],[-81.73884029899996,7.64427317900008]]],[[[-82.34748287699992,8.088283596000123],[-82.36204993399994,8.086859442000147],[-82.35924231699988,8.09902578300013],[-82.35244706899996,8.112046617000118],[-82.3431290359999,8.123358466000099],[-82.33234615799992,8.12970612200013],[-82.3207087879999,8.130316473000093],[-82.31834876199986,8.123968817000062],[-82.31944739499991,8.113104559000163],[-82.31822669199988,8.099920966000127],[-82.33653723899994,8.091864325000088],[-82.34748287699992,8.088283596000123]]],[[[-82.2201228509999,8.21206289300008],[-82.2117813789999,8.199204820000148],[-82.2330216139999,8.20530833500014],[-82.24705969999985,8.206732489000103],[-82.25340735599988,8.202337958000129],[-82.2533259759999,8.193264065000122],[-82.25259355399987,8.188381252000156],[-82.24596106699991,8.171291408000116],[-82.27383378799996,8.191799221000153],[-82.2813614569999,8.193548895000148],[-82.30138098899988,8.196112372000158],[-82.30797278599997,8.199204820000148],[-82.31566321499989,8.214911200000117],[-82.30646725199992,8.224066473000093],[-82.27383378799996,8.233343817000147],[-82.25959225199995,8.227036851000108],[-82.23888098899994,8.220648505000085],[-82.2201228509999,8.21206289300008]]],[[[-82.31720943899992,8.267564195000134],[-82.32705644399994,8.262884833000115],[-82.34276282499991,8.267523505000142],[-82.34276282499991,8.259995835000081],[-82.31480872299997,8.24017975500007],[-82.33486894399994,8.235093492000146],[-82.36969967399997,8.216864325000158],[-82.38646399599989,8.212876695000176],[-82.39834550699993,8.21820709800015],[-82.41250566299996,8.231024481000176],[-82.42471269399994,8.246568101000094],[-82.43089758999992,8.259995835000081],[-82.42467200399994,8.259995835000081],[-82.40192623599992,8.25714752800013],[-82.35000566299993,8.293646552000098],[-82.32848059799991,8.287990627000099],[-82.31651770699997,8.277329820000162],[-82.31720943899992,8.267564195000134]]],[[[-79.06574100899985,8.260760089000172],[-79.06985995099987,8.257050825000135],[-79.0803908419999,8.254828134000162],[-79.09127787299991,8.259680790000132],[-79.10378803899991,8.252959415000175],[-79.10452795799995,8.244402237000116],[-79.09844714099994,8.238471424000124],[-79.09850992699992,8.229879634000127],[-79.10488716099991,8.228778713000082],[-79.1086818949999,8.223925176000137],[-79.10951956599985,8.210469238000114],[-79.12270896399993,8.208981766000136],[-79.14000259699986,8.244395848000124],[-79.1369727149999,8.257438098000108],[-79.13056404999988,8.256690183000131],[-79.12980472199988,8.264141881000114],[-79.1256498349999,8.277552791000133],[-79.12941093899988,8.287243020000147],[-79.12449967199987,8.30326100100015],[-79.11243080899996,8.317408727000114],[-79.10488692399987,8.318517622000114],[-79.10037274099994,8.317396915000117],[-79.09487870999993,8.311753648000192],[-79.09406490799991,8.30849844000015],[-79.08750501899992,8.295776164000173],[-79.08300128899987,8.274186322000133],[-79.07586376099997,8.265991063000087],[-79.07099204899993,8.26449241300017],[-79.06574100899985,8.260760089000172]]],[[[-79.1050181839999,8.418740701000132],[-79.09483801999994,8.406480210000081],[-79.0901487689999,8.410278495000112],[-79.08794297099992,8.419543644000129],[-79.08243764799997,8.415996564000096],[-79.08628390999988,8.403453466000116],[-79.0788676739999,8.398554347000129],[-79.08025186799995,8.390929745000136],[-79.08439313199995,8.382490557000068],[-79.0928442049999,8.377183335000069],[-79.11217536399994,8.391497737000151],[-79.13009816699989,8.404869682000138],[-79.11823790299994,8.429110441000148],[-79.1050181839999,8.418740701000132]]],[[[-78.86278235599985,8.453680731000146],[-78.85822506399992,8.442938544000143],[-78.85537675699987,8.431341864000132],[-78.85448157499988,8.4210879580001],[-78.85468334699986,8.413287151000105],[-78.84222896199987,8.41106408600011],[-78.83551027299987,8.397995399000152],[-78.83733826699995,8.386865516000128],[-78.84567049399996,8.381269455000108],[-78.84795918899997,8.368606294000145],[-78.83447648499995,8.342810923000116],[-78.84320713099987,8.32045784000016],[-78.85229804499997,8.31226847700016],[-78.85228125599991,8.303331914000152],[-78.85802161399997,8.295843817000089],[-78.87041456299994,8.296650181000103],[-78.8753433539999,8.30149443300017],[-78.88250315999989,8.300386780000096],[-78.88923092399995,8.299139716000127],[-78.89639936999993,8.29742927900017],[-78.89905189699994,8.30264195000008],[-78.90132513699989,8.308967386000132],[-78.90469062599993,8.302649751000104],[-78.91219731699994,8.293727235000105],[-78.92047597299995,8.282565959000152],[-78.92011717699991,8.274001963000146],[-78.92277514599994,8.265446118000114],[-78.9129872389999,8.253881356000164],[-78.91113984499992,8.234147619000126],[-78.90511446499991,8.229290041000112],[-78.89757411699985,8.228897258000117],[-78.89757889899991,8.224426574000134],[-78.90398547099994,8.219221605000156],[-78.91792444199984,8.227084176000119],[-78.92845417699988,8.235667604000128],[-78.92693761199989,8.249817786000122],[-78.93365607099985,8.273271306000183],[-78.94004292499994,8.282589941000182],[-78.95799719999991,8.29043203300013],[-78.96434485599985,8.294826565000122],[-78.96989797299997,8.305098917000166],[-78.96541214499987,8.320765975000157],[-78.95823733999988,8.329105164000126],[-78.95477693699993,8.346514341000116],[-78.95848548099991,8.35285065300009],[-78.96727762699996,8.362430036000177],[-78.96990783399988,8.369891318000057],[-78.96575300599994,8.377316386000146],[-78.96160231099985,8.38361815600011],[-78.96121792099987,8.390315085000081],[-78.96571735799992,8.408223900000124],[-78.96434485599985,8.417669989000089],[-78.9747118499999,8.444368241000134],[-78.97092155699991,8.45844996500014],[-78.9581268559999,8.45880618600013],[-78.9491044399999,8.452789919000082],[-78.90877739699994,8.470040703000109],[-78.89976966099991,8.461615302000126],[-78.89696204299995,8.456691799000154],[-78.8954158189999,8.451849677000082],[-78.89224447499987,8.458046989000108],[-78.8937133549999,8.469273655000151],[-78.88992961499991,8.474136485000157],[-78.88018061799994,8.468460590000106],[-78.86913001199989,8.461655992000118],[-78.86278235599985,8.453680731000146]]],[[[-79.56333960399994,8.804638868000097],[-79.55689465399983,8.802516973000122],[-79.55382717799998,8.803426325000132],[-79.55321149999992,8.800395163000161],[-79.55535746599995,8.797970274000164],[-79.55259222199993,8.791908401000157],[-79.54798869699987,8.78887780600013],[-79.54185266899985,8.786756789000052],[-79.5412367509999,8.78130235700013],[-79.54338095799994,8.775544614000154],[-79.54798084699985,8.774028666000135],[-79.5513575539999,8.7791797470001],[-79.55534757299992,8.782815983000134],[-79.56270948699992,8.781299764000096],[-79.56915370799996,8.783117353000108],[-79.5716126379999,8.78917898600018],[-79.57039255199987,8.79857596300009],[-79.56333960399994,8.804638868000097]]],[[[-81.56549282599988,9.105496117000158],[-81.55992511999989,9.103965966000118],[-81.55774703499989,9.106106241000106],[-81.55310224199991,9.105799376000121],[-81.54722092599991,9.10274054500016],[-81.54194759499985,9.09907047200008],[-81.53791133799987,9.095094040000134],[-81.53666944899996,9.091423836000132],[-81.53387190099993,9.088669683000163],[-81.5344917969999,9.085917258000151],[-81.53884096899986,9.085920190000122],[-81.54381126299998,9.08836972900012],[-81.55218935499994,9.08959684500013],[-81.56241366799992,9.090822884000145],[-81.56704406299988,9.09082259900012],[-81.57167130799985,9.08959850700009],[-81.57292766099988,9.096020901000173],[-81.57509865899992,9.100606581000163],[-81.57725858899994,9.104581338000145],[-81.57539613699991,9.107638619000156],[-81.56826864799987,9.10824946200016],[-81.56549282599988,9.105496117000158]]],[[[-82.0196558419999,9.137482707000146],[-82.02711256799995,9.132941467000109],[-82.03285361399989,9.134633315000116],[-82.04204321499986,9.140852517000082],[-82.0500839149999,9.145940624000076],[-82.05525757899997,9.153864964000176],[-82.05469085799987,9.161796814000096],[-82.0472383499999,9.17256878100008],[-82.05240965799987,9.177661002000148],[-82.05184027299993,9.182192803000135],[-82.0455227539999,9.179368136000091],[-82.0414982509999,9.173142195000095],[-82.03575563199993,9.169750291000113],[-82.02886688599989,9.16919213200012],[-82.0254148169999,9.160700151000128],[-82.02311321999989,9.153905700000081],[-82.01622389199989,9.151081836000115],[-82.00876062099994,9.147692229000143],[-82.01047710999984,9.141459268000105],[-82.0196558419999,9.137482707000146]]],[[[-82.18248450399989,9.345851955000086],[-82.17438717399997,9.344061591000097],[-82.16600501199991,9.344956773000192],[-82.1565649079999,9.34935130400008],[-82.14671790299988,9.34463125200007],[-82.12303626199986,9.322658596000153],[-82.09772701699993,9.311183986000117],[-82.0852758449999,9.302679755000085],[-82.07461503799996,9.28851959800015],[-82.09398352799987,9.291245835000126],[-82.11416581899991,9.28327057500016],[-82.1301977199999,9.26825592700014],[-82.1388240229999,9.245306708000058],[-82.14362545499989,9.247137762000136],[-82.15440833199987,9.258368231000134],[-82.15396074099989,9.259182033000144],[-82.15172278599991,9.259914455000086],[-82.15029863199993,9.26434967700014],[-82.15025794199994,9.287258205000143],[-82.15404212099989,9.296291408000158],[-82.16397050699987,9.302191473000093],[-82.16397050699987,9.30841705900015],[-82.15029863199993,9.302191473000093],[-82.15933183499996,9.323146877000141],[-82.17430579299989,9.330389716000155],[-82.19261633999986,9.33388906500015],[-82.2117813789999,9.343166408000116],[-82.2117813789999,9.34935130400008],[-82.20616614499991,9.354193427000068],[-82.20099850199992,9.356187242000189],[-82.19603430899986,9.354803778000118],[-82.19131425699996,9.34935130400008],[-82.18248450399989,9.345851955000086]]],[[[-82.24168860599991,9.33808014500009],[-82.24596106699991,9.330064195000134],[-82.25967363199993,9.353176174000097],[-82.28075110599985,9.374701239000117],[-82.32848059799991,9.41205475500007],[-82.30166581899991,9.432318427000082],[-82.28551184799993,9.438869533000158],[-82.26642818899987,9.43935781500015],[-82.23875891799989,9.398749091000141],[-82.23180091099988,9.373358466000127],[-82.24596106699991,9.356838283000144],[-82.24596106699991,9.34935130400008],[-82.24156653599994,9.344549872000087],[-82.24014238199996,9.3419457050001],[-82.24168860599991,9.33808014500009]]],[[[-79.5279841789999,9.612453518000095],[-79.52261308499995,9.602850653000118],[-79.52245032499991,9.595282294000157],[-79.53286699099988,9.589544989000089],[-79.53286699099988,9.583319403000132],[-79.52306067599993,9.579046942000117],[-79.52281653599991,9.576727606000148],[-79.51919511599993,9.56907786700013],[-79.51431230399987,9.57249583500014],[-79.51073157499991,9.574530341000155],[-79.50788326699987,9.577378648000192],[-79.50499426999994,9.583319403000132],[-79.49815833199992,9.583319403000132],[-79.49201412699993,9.578680731000105],[-79.4838761059999,9.575018622000144],[-79.4639786449999,9.56907786700013],[-79.46349036399994,9.577704169000128],[-79.45653235599985,9.596380927000112],[-79.45124264199985,9.587388414000188],[-79.4445694649999,9.58380768400012],[-79.4372452459999,9.584702867000118],[-79.42983964799993,9.589544989000089],[-79.39189221999993,9.580501864000068],[-79.33604602399996,9.574359218000126],[-79.27274965599995,9.557021313000163],[-79.23970898299987,9.545515083000083],[-79.19375722899991,9.539602102000146],[-79.17500364499996,9.549403746000138],[-79.1562743639999,9.554955061000085],[-79.13327608699984,9.553404717000147],[-79.11603674199998,9.55188971500013],[-79.09877164199989,9.556032194000124],[-79.08006653099989,9.561579500000105],[-79.04845565199989,9.564218877000172],[-79.01290200799991,9.570225582000148],[-78.97058297199986,9.573313287000175],[-78.95731140799992,9.565283566000161],[-78.95736250999991,9.554032607000153],[-78.97451246299993,9.544735453000143],[-78.98685837099995,9.547135568000142],[-78.99687111199992,9.539680668000159],[-79.00780600299987,9.5387922740001],[-79.03823063099986,9.535170273000091],[-79.05487343899995,9.531958770000116],[-79.06585882999994,9.513720207000148],[-79.06315206999997,9.490292094000054],[-79.05806002299991,9.45793144700012],[-79.04049811499989,9.452233634000123],[-79.02432359899993,9.455913990000084],[-79.01389037699988,9.451183411000088],[-79.00104969499998,9.45347104300019],[-78.98821213399987,9.455289557000114],[-78.97727726899988,9.45711577400013],[-78.96636221899988,9.454724994000117],[-78.9525900419999,9.454663080000145],[-78.93505017399994,9.447556342000098],[-78.92461863999995,9.444231170000137],[-78.9156794909999,9.436835028000132],[-78.90807044199987,9.430812893000123],[-78.90330969999987,9.42291901200015],[-78.89574330399992,9.424421061000174],[-78.88291297299989,9.425295124000101],[-78.87484113299992,9.424788310000096],[-78.86487824799991,9.42239798200012],[-78.8525442029999,9.423753852000116],[-78.84723574099988,9.433084454000138],[-78.83633591999987,9.435384427000187],[-78.81784476899989,9.431080468000147],[-78.78938426499988,9.436570632000098],[-78.78113641499993,9.445882047000126],[-78.76410528799997,9.44252195300011],[-78.75264904499991,9.444333833000186],[-78.74159506699996,9.448488751000154],[-78.72822288499995,9.454983637000112],[-78.71788489499988,9.441839911000073],[-78.70165696899994,9.434259603000115],[-78.68886908499984,9.43555350400014],[-78.65560028599992,9.4264983890001],[-78.6332647309999,9.42873321800009],[-78.62002758199986,9.418825435000102],[-78.60389964699993,9.416394068000102],[-78.5896214959999,9.422402190000113],[-78.5780873879999,9.431898313000133],[-78.56131832599996,9.438040165000103],[-78.54640744199989,9.434370216000119],[-78.52712264599998,9.421502986000135],[-78.51282012399987,9.415992034000155],[-78.47988966599988,9.416002824000158],[-78.46344967399997,9.404608466000099],[-78.45260668899996,9.408833440000166],[-78.43771249799997,9.40435106000011],[-78.42726134199995,9.39389570900012],[-78.41595138199995,9.384309781000113],[-78.38873073299996,9.371848899000097],[-78.37832171399987,9.365750006000141],[-78.3642245039999,9.361198557000137],[-78.3383392619999,9.356006656000162],[-78.31751224199994,9.344662242000155],[-78.30272703399986,9.333313626000148],[-78.28707217399992,9.326287320000105],[-78.27748631499992,9.321878839000119],[-78.26791099399989,9.320943162000148],[-78.25486162099986,9.317389616000114],[-78.2418574129999,9.309545141000143],[-78.22623634099989,9.300807706000086],[-78.20802479399987,9.290335613000124],[-78.19235394299992,9.287610808000096],[-78.17665408399994,9.290058988000155],[-78.16708629099995,9.28651688700009],[-78.1549225659999,9.279491061000087],[-78.14190549599996,9.27770957600012],[-78.12370689299993,9.266364628000147],[-78.11400305899994,9.253810940000093],[-78.08815929999992,9.247983673000135],[-78.05599234899991,9.243438130000172],[-78.03690117899993,9.236391657000155],[-78.02456620999993,9.226467190000122],[-78.02082271999988,9.213609117000189],[-77.99925696499989,9.190822658000158],[-77.98625464599994,9.188899939000152],[-77.96865800699987,9.180609442000133],[-77.93540895199988,9.142888937000095],[-77.91852779899997,9.116603908000144],[-77.90502841799992,9.099310445000128],[-77.89015234899989,9.077213285000113],[-77.85574359699987,9.0542905800001],[-77.8608384419999,9.068091029000115],[-77.86522376199991,9.080267645000148],[-77.87644209999986,9.10355469000011],[-77.87766101999995,9.118887565000179],[-77.8600968089999,9.110419012000165],[-77.84725879699994,9.087558109000113],[-77.83919444299987,9.076501573000115],[-77.81186510799994,9.058039561000143],[-77.80817235199994,9.035333090000066],[-77.79823853899987,9.02426380300008],[-77.78581384099991,9.016871380000126],[-77.77074133999989,9.003973700000103],[-77.7672419909999,8.9923363300001],[-77.75853430899991,8.981512762000108],[-77.74754798099985,8.97256094000008],[-77.74441596599986,8.963576305000089],[-77.75420571599997,8.945658706000131],[-77.73473059799991,8.923488674000126],[-77.7207723299999,8.89229026200016],[-77.71032086299996,8.881281909000151],[-77.70105606899989,8.88925980600007],[-77.69673684399993,8.887426389000069],[-77.69551964799993,8.873319229000089],[-77.67629252399988,8.861628296000092],[-77.65585186299998,8.843200133000067],[-77.63345292899996,8.817450262000165],[-77.61432857999998,8.808742580000086],[-77.6194555329999,8.816961981000176],[-77.62604732999995,8.823146877000156],[-77.63174394399994,8.829901434000178],[-77.6341853509999,8.8397891300001],[-77.62905839799987,8.844468492000118],[-77.61799068899992,8.835191148000163],[-77.60741126199989,8.82217031500008],[-77.60383053299992,8.815578518000109],[-77.57407264999995,8.792754063000132],[-77.57787370799993,8.77503027000013],[-77.5593421529999,8.759707600000112],[-77.55362263399988,8.776756090000106],[-77.54368848899992,8.774885415000142],[-77.53509940299989,8.757744993000173],[-77.53834277699994,8.741314829000189],[-77.54029028599987,8.726078971000064],[-77.54474951799997,8.714603511000135],[-77.53213732899985,8.703201771000082],[-77.50072180899988,8.681830145000148],[-77.47695878799988,8.66990794500012],[-77.44420325399994,8.664374091000099],[-77.41319739499991,8.666693427000068],[-77.39460201699984,8.67841217700014],[-77.39069576699984,8.673529364000087],[-77.38581295499995,8.669582424000096],[-77.3800349599999,8.66665273600016],[-77.37352454299992,8.66474030200011],[-77.37493648399993,8.650945944000156],[-77.38537512199987,8.643633728000168],[-77.40154984599988,8.642031759000147],[-77.41767289299995,8.638466085000175],[-77.43400264499986,8.6282599890001],[-77.43503617399996,8.620637716000132],[-77.43023026499993,8.610457459000159],[-77.42909338499996,8.592629090000116],[-77.44113399299994,8.56766937200014],[-77.46937330099993,8.53781160600016],[-77.48035640499998,8.52619903600008],[-77.48867630999993,8.496536764000112],[-77.48872798699995,8.473644104000186],[-77.4796846109999,8.467856343000122],[-77.44960892799992,8.470646871000085],[-77.43271073499994,8.465065816000163],[-77.42232377099992,8.456410014000198],[-77.40578731399992,8.42845306400011],[-77.3912662359999,8.393545634000134],[-77.38299800599992,8.32494517100018],[-77.37436804299998,8.289314270000204],[-77.36320593299996,8.27208018000013],[-77.3504935309999,8.26740346300015],[-77.33716101099988,8.266628316000137],[-77.32434525599989,8.26120229100016],[-77.31690384999986,8.250841166000157],[-77.29519974799986,8.205495097000139],[-77.26943425099992,8.167700643000103],[-77.26011144999991,8.154025371000145],[-77.23106929499994,8.09873158800012],[-77.20962357599993,8.02070017500013],[-77.2077632239999,7.996567281000168],[-77.20120031799993,7.981994527000111],[-77.1915368249999,7.972847799000121],[-77.1808398039999,7.965148010000135],[-77.17107295799993,7.954916077000148],[-77.16326981599993,7.939258117000094],[-77.16900589999997,7.935072326000152],[-77.20605790299994,7.935485738000167],[-77.23613358599994,7.92923289000008],[-77.26972326699995,7.918122457000152],[-77.30041906799998,7.902102763000187],[-77.32160640499987,7.881018779000073],[-77.3471862389999,7.823812968000126],[-77.37664180599998,7.786605937000117],[-77.37989742099998,7.77441029900011],[-77.36651322499995,7.745109762000141],[-77.34599768099989,7.725731099000171],[-77.33974483299997,7.707230937000148],[-77.36909704599995,7.680772603000064],[-77.50934688399997,7.594111227000113],[-77.55492549699994,7.548480937000121],[-77.57998856699996,7.528378805000159],[-77.60267451999991,7.526053365000124],[-77.6133198659999,7.537473857000123],[-77.62546382699992,7.587444967000109],[-77.63306026199987,7.600674134000187],[-77.6607588299999,7.638036194000151],[-77.66339432799992,7.639948222000072],[-77.6718692629999,7.641963603000121],[-77.67481481999991,7.644650778000141],[-77.674763143,7.648423157000167],[-77.67062902899997,7.657311504000177],[-77.67021561799994,7.659947001000191],[-77.6799307869999,7.670954081000105],[-77.72990189699999,7.713328756000109],[-77.74023718299989,7.718858134000115],[-77.7642150479999,7.705732320000138],[-77.77051957199993,7.668990377000156],[-77.76581701699993,7.626460674000114],[-77.7568253179999,7.595558167000206],[-77.73424271699997,7.55178822800012],[-77.73124548399993,7.530342509000177],[-77.74023718299989,7.504607645000193],[-77.75511999499994,7.486107483000168],[-77.77424027499991,7.474738668000086],[-77.79630611199994,7.471276347000141],[-77.8201806239999,7.476547343000164],[-77.85501053899989,7.365391337000162],[-77.89583915079834,7.235098056351107],[-77.89655514199987,7.235296942000118],[-77.91881262899992,7.24164459800015],[-77.94762122299994,7.267645575000131],[-77.99046790299994,7.320949611000103],[-78.00645911399994,7.33246491100013],[-78.01439368399988,7.341009833000058],[-78.01781165299991,7.352280992000146],[-78.01553300699993,7.362738348000121],[-78.01154537699995,7.373195705000113],[-78.00975501199989,7.383490302000126],[-78.01439368399988,7.393540757000096],[-78.02009029899997,7.397853908000101],[-78.02285722599993,7.395982164000131],[-78.02489173099988,7.392035223000149],[-78.02798417899996,7.389837958000058],[-78.03587805899991,7.393011786000116],[-78.03815670499989,7.399400132000138],[-78.03612219999988,7.40460846600014],[-78.03148352799994,7.404120184000149],[-78.04344641799989,7.422308661000145],[-78.04995683499996,7.4259300800001],[-78.05939693899998,7.417792059000178],[-78.06554114499994,7.417792059000178],[-78.08971106699995,7.445217190000136],[-78.1056208979999,7.459418036000145],[-78.11742102799985,7.465562242000132],[-78.1206762359999,7.469916083000128],[-78.12315833199992,7.479478257000109],[-78.12791907499991,7.48916250200007],[-78.13784745999993,7.493475653000161],[-78.14415442599996,7.497870184000149],[-78.14907792899993,7.507879950000132],[-78.15558834499993,7.527655341000155],[-78.16177324099986,7.527655341000155],[-78.16608639199988,7.512640692000133],[-78.16832434799996,7.522406317000075],[-78.16926021999986,7.557440497000159],[-78.1742244129999,7.575425523000192],[-78.18480383999986,7.579413153000174],[-78.19444739499991,7.571437893000123],[-78.19652258999994,7.553697007000138],[-78.20201575399997,7.566839911000101],[-78.20030676999997,7.576157945000134],[-78.19664466099991,7.584906317000118],[-78.19652258999994,7.595892645000077],[-78.20030676999997,7.606431382000125],[-78.20445716099991,7.612127997000115],[-78.21642005099994,7.622544664000187],[-78.23770097599993,7.649888414000173],[-78.25234941299993,7.660956122000115],[-78.27163652299987,7.663560289000116],[-78.26927649599992,7.67454661700016],[-78.27358964799988,7.682806708000058],[-78.28213456899994,7.68846263200014],[-78.2921443349999,7.691473700000144],[-78.28258216099994,7.710638739000117],[-78.2774958979999,7.724351304000137],[-78.27814693899995,7.737372137000122],[-78.28526770699992,7.75413646000014],[-78.31533769399994,7.799872137000164],[-78.32005774599986,7.811265367000131],[-78.32941646999988,7.84324778900013],[-78.35114498599995,7.870184637000179],[-78.37596594999991,7.89419179900014],[-78.39452063699991,7.91742584800015],[-78.40758216099991,7.948228257000125],[-78.41563880099994,7.980129299000139],[-78.41600501199986,7.992173570000162],[-78.4136449859999,8.003648179000109],[-78.41563880099994,8.0136172550001],[-78.43358313699989,8.045803127000141],[-78.43614661399988,8.05829498900006],[-78.43081620999993,8.077134507000096],[-78.41905676999994,8.095404364000075],[-78.40729732999995,8.102199611000103],[-78.39574133999994,8.069891669000171],[-78.38133704299989,8.063625393000123],[-78.3652237619999,8.065985419000171],[-78.35358639199988,8.07566966400013],[-78.32518469999988,8.060939846000139],[-78.28644771999984,8.08071523600016],[-78.25218665299988,8.117499091000155],[-78.23745683499988,8.153957424000126],[-78.23936926999994,8.17438385600009],[-78.24474036399988,8.186916408000101],[-78.25328528599991,8.195786851000136],[-78.26480058499993,8.205389716000113],[-78.29405676999997,8.239203192000089],[-78.30577551999997,8.246405341000127],[-78.30577551999997,8.2538516300001],[-78.27863521999984,8.250962632000082],[-78.2700902989999,8.252386786000145],[-78.25739498599995,8.259995835000081],[-78.25739498599995,8.267523505000142],[-78.26317298099991,8.270331122000087],[-78.26610266799995,8.273260809000107],[-78.26817786399995,8.276678778000118],[-78.27163652299987,8.281154690000093],[-78.26366126199991,8.28432851800015],[-78.26130123599995,8.284735419000157],[-78.25739498599995,8.294826565000122],[-78.24893144399991,8.289211330000114],[-78.23745683499988,8.2785098330001],[-78.23070227799994,8.274359442000147],[-78.22191321499989,8.271918036000116],[-78.21422278599994,8.272162177000068],[-78.19969641799992,8.274359442000147],[-78.19810950399997,8.278306382000139],[-78.18586178299992,8.295111395000148],[-78.1829320949999,8.297919012000108],[-78.18439693899995,8.325344143000152],[-78.1829320949999,8.33576080900015],[-78.18004309799994,8.337591864000117],[-78.16177324099986,8.356268622000101],[-78.15754146999987,8.365545966000155],[-78.15575110599988,8.374335028000118],[-78.15558834499993,8.394110419000143],[-78.15135657499991,8.399481512000108],[-78.1419164699999,8.404038804000137],[-78.13247636599996,8.405340887000136],[-78.12828528599994,8.400946356000162],[-78.1232804029999,8.364488023000192],[-78.12083899599986,8.356268622000101],[-78.11095130099994,8.347967841000127],[-78.09455318899995,8.339056708000086],[-78.07664954299989,8.33185455900015],[-78.06248938699986,8.32892487200013],[-78.05101477799991,8.322495835000112],[-78.04246985599991,8.307359117000116],[-78.02489173099988,8.259711005000142],[-78.01512610599991,8.246527411000102],[-78.00255286399994,8.237005927000096],[-77.98741614499994,8.233343817000147],[-77.98265540299994,8.235337632000096],[-77.9720352859999,8.238470770000063],[-77.96129309799987,8.238023179000066],[-77.95352128799988,8.223781643000152],[-77.9466039699999,8.21841054900011],[-77.93773352799994,8.214422919000128],[-77.92906653599994,8.212876695000176],[-77.91539466099991,8.212876695000176],[-77.91539466099991,8.219061591000155],[-77.93073482999995,8.22239817900008],[-77.94473222599993,8.230536200000103],[-77.95588131399992,8.241644598000121],[-77.96255449099989,8.2538516300001],[-77.91258704299986,8.244330145000104],[-77.88597571499992,8.234686591000141],[-77.86900794199994,8.215480861000088],[-77.84508216099988,8.202582098000079],[-77.83967037699992,8.195502020000106],[-77.83873450399993,8.180650132000139],[-77.83556067599989,8.170111395000092],[-77.82925370999993,8.162787177000084],[-77.81920325399996,8.157660223000065],[-77.80842037699995,8.163763739000144],[-77.79727128799992,8.157700914000145],[-77.78856360599985,8.143988348000121],[-77.78502356699988,8.126898505000085],[-77.77814693899995,8.115790106000146],[-77.76260331899995,8.111883856000148],[-77.74640865799992,8.116359768000123],[-77.73721269399994,8.130316473000093],[-77.76512610599988,8.130072333000143],[-77.80186926999988,8.17438385600009],[-77.81920325399996,8.171291408000116],[-77.87059485599988,8.235785223000093],[-77.88068600199995,8.243312893000137],[-77.89541581899994,8.251532294000143],[-77.98428300699996,8.267523505000142],[-78.00593014199985,8.27602773600016],[-78.02318274599986,8.290472723000121],[-78.03473873599998,8.309637762000179],[-78.03892981699991,8.332342841000141],[-78.06069902299987,8.375921942000147],[-78.0670466789999,8.402736721000137],[-78.0519099599999,8.417669989000089],[-78.06273352799991,8.424709377000156],[-78.07477779899992,8.43451569200009],[-78.08592688699994,8.44635651200015],[-78.09414628799993,8.459295966000155],[-78.09854081899991,8.475775458000143],[-78.09557044199991,8.485174872000158],[-78.0899958979999,8.491888739000116],[-78.08665930899988,8.500230210000083],[-78.08812415299994,8.512762762000179],[-78.09386145699992,8.515936591000141],[-78.10289466099991,8.518052476000065],[-78.11400305899994,8.527573960000069],[-78.11888587099992,8.538763739000075],[-78.11994381399995,8.548285223000065],[-78.12311764199984,8.556057033000158],[-78.1344294909999,8.561712958000058],[-78.13036048099985,8.552476304000095],[-78.12954667899993,8.527289130000128],[-78.1245011059999,8.517645575000145],[-78.11119544199988,8.509019273000149],[-78.10619055899986,8.508042710000081],[-78.10582434799994,8.50503164300008],[-78.10651607999998,8.472113348000093],[-78.10480709499987,8.463364976000122],[-78.09093176999988,8.430853583000143],[-78.08958899599989,8.420396226000065],[-78.09414628799993,8.41087474200016],[-78.10033118399991,8.41087474200016],[-78.11925208199992,8.442531643000137],[-78.13141842399992,8.458075262000136],[-78.14126542899993,8.466131903000175],[-78.15684973899994,8.466213283000158],[-78.17015540299984,8.457668361000131],[-78.17943274599989,8.44208405200014],[-78.1829320949999,8.4210879580001],[-78.18887285099993,8.405747789000145],[-78.20376542899987,8.393947658000087],[-78.22256425699992,8.386297919000143],[-78.24058997299994,8.383530992000189],[-78.24913489499997,8.386908270000106],[-78.25283769399991,8.394720770000106],[-78.25304114499995,8.403794664000188],[-78.25112870999989,8.41087474200016],[-78.24535071499994,8.417669989000089],[-78.21642005099994,8.431952216000083],[-78.21251380099994,8.428656317000145],[-78.20982825399997,8.426988023000135],[-78.20274817599991,8.424505927000112],[-78.20152747299989,8.457342841000113],[-78.2066951159999,8.487738348000079],[-78.22325598899997,8.541815497000158],[-78.23070227799994,8.541815497000158],[-78.23770097599993,8.527533270000076],[-78.23281816299992,8.518377997000172],[-78.22329667899996,8.510565497000101],[-78.21642005099994,8.500230210000083],[-78.21784420499992,8.482489325000088],[-78.2255753249999,8.468247789000172],[-78.23045813699987,8.456447658000116],[-78.22325598899997,8.445624091000127],[-78.22325598899997,8.43817780200014],[-78.22638912699992,8.435980536000145],[-78.22984778599994,8.434393622000115],[-78.23745683499988,8.431952216000083],[-78.24185136599996,8.44000885600012],[-78.24787350199995,8.444525458000086],[-78.25357011599993,8.44782135600012],[-78.25739498599995,8.451849677000082],[-78.26065019399991,8.460638739000146],[-78.2589412099999,8.461655992000118],[-78.2549535799999,8.461371161000088],[-78.25112870999989,8.466131903000175],[-78.2403865229999,8.485296942000131],[-78.24156653599991,8.494777736000145],[-78.25739498599995,8.500230210000083],[-78.25259355399987,8.487738348000079],[-78.25475012899997,8.481878973000136],[-78.26008053299992,8.478420315000136],[-78.26480058499993,8.472967841000099],[-78.27847245999988,8.445624091000127],[-78.29454505099994,8.44326406500008],[-78.30333411399994,8.454291083000115],[-78.31261145699997,8.48655833500014],[-78.32005774599986,8.47915273600016],[-78.32103430899994,8.46625397300015],[-78.33482825399993,8.446193752000099],[-78.35301673099993,8.4289004580001],[-78.36725826699984,8.424505927000112],[-78.37645423099991,8.441310940000122],[-78.3868708979999,8.500474351000122],[-78.39452063699991,8.520697333000143],[-78.39073645699987,8.527492580000086],[-78.38833574099996,8.534369208000086],[-78.39452063699991,8.534369208000086],[-78.39452063699991,8.527573960000069],[-78.40196692599991,8.527573960000069],[-78.40196692599991,8.548041083000115],[-78.40819251199986,8.548041083000115],[-78.41201738199987,8.523504950000103],[-78.39378821499987,8.473863023000177],[-78.38410396999983,8.425970770000076],[-78.36534583199997,8.410630601000122],[-78.36099199099988,8.394110419000143],[-78.38833574099996,8.33576080900015],[-78.39232337099992,8.344387111000145],[-78.39948482999998,8.348822333000129],[-78.40782630099994,8.351996161000088],[-78.40969804599989,8.353013414000145],[-78.41563880099994,8.356268622000101],[-78.43871008999989,8.384426174000083],[-78.44977779899995,8.391017971000151],[-78.44440670499998,8.403225002000127],[-78.4451798169999,8.4210879580001],[-78.4499405589999,8.439154364000117],[-78.45665442599994,8.451849677000082],[-78.46401933499992,8.44623444200009],[-78.4680883449999,8.440130927000098],[-78.46996008999986,8.433010158000144],[-78.47085527299996,8.424505927000112],[-78.47549394399988,8.434027411000102],[-78.48639889199987,8.44782135600012],[-78.49079342399993,8.459295966000155],[-78.49136308499989,8.473374742000187],[-78.48395748599992,8.507066148000192],[-78.49079342399993,8.524481512000165],[-78.52000891799989,8.563462632000054],[-78.53172766799987,8.57599518400015],[-78.51671301999994,8.575262762000122],[-78.50576738199987,8.571966864000089],[-78.49592037699995,8.570746161000073],[-78.48395748599992,8.57599518400015],[-78.50031490799995,8.588690497000115],[-78.50584876199986,8.599066473000107],[-78.50438391799989,8.63401927300012],[-78.56647701699984,8.651068427000084],[-78.56126868399994,8.666449286000116],[-78.55899003799996,8.670965887000165],[-78.56558183499992,8.671779690000093],[-78.56899980399993,8.670233466000141],[-78.57331295499995,8.66474030200011],[-78.58153235599984,8.670111395000077],[-78.58922278599997,8.669582424000096],[-78.59654700399997,8.666489976000108],[-78.60374915299991,8.66474030200011],[-78.61253821499989,8.66974518400015],[-78.61888587099989,8.681463934000135],[-78.62791907499991,8.705715236000131],[-78.6136775379999,8.717230536000073],[-78.60838782499992,8.735337632000082],[-78.60948645699997,8.755926825000117],[-78.61424719999988,8.774603583000086],[-78.62169348899992,8.774603583000086],[-78.62311764199993,8.758490302000112],[-78.61913001199994,8.7378604190001],[-78.61974036399991,8.723537502000113],[-78.63475501199991,8.726223049000081],[-78.65151933499992,8.707953192000119],[-78.68219967399995,8.747748114000103],[-78.70986894399994,8.747300523000192],[-78.72940019399994,8.759344794000114],[-78.74937903599991,8.801825262000179],[-78.76512610599985,8.815578518000109],[-78.76512610599985,8.822414455000128],[-78.75763912699989,8.822414455000128],[-78.75763912699989,8.829250393000137],[-78.77245032499988,8.833563544000143],[-78.78180904899989,8.842840887000094],[-78.78962154899989,8.853908596000137],[-78.79987545499992,8.863348700000145],[-78.79190019399996,8.84666575700011],[-78.79015051999997,8.833563544000143],[-78.7964574859999,8.823472398000177],[-78.81285559799991,8.815578518000109],[-78.82787024599993,8.81313711100016],[-78.83800208199989,8.816961981000176],[-78.85757402299986,8.8397891300001],[-78.86457271999984,8.855617580000143],[-78.86856035099993,8.87490469000008],[-78.87389075399989,8.891180731000105],[-79.00527910099987,8.959540106000174],[-79.05760657499988,8.971014716000127],[-79.08299719999991,8.988836981000105],[-79.08722896999993,8.994330145000134],[-79.08849036399991,9.004095770000077],[-79.08568274599989,9.009751695000162],[-79.08177649599989,9.015326239000089],[-79.07982337099992,9.024725653000102],[-79.07933508999994,9.045396226000122],[-79.08088131399998,9.062811591000099],[-79.08885657499994,9.073797919000143],[-79.10773678299995,9.075628973000121],[-79.10773678299995,9.083075262000108],[-79.08629309799993,9.084621486000145],[-79.06989498599992,9.093329169000128],[-79.05858313699994,9.107163804000123],[-79.05247962099986,9.124009507000125],[-79.04625403599991,9.124009507000125],[-79.03742428299995,9.110500393000152],[-79.02769934799989,9.11102936400013],[-79.01154537699992,9.124009507000125],[-78.99120032499994,9.13117096600017],[-78.98216712099992,9.136419989000146],[-78.97736568899992,9.145168361000131],[-78.98375403599997,9.141994533000158],[-78.99718176999994,9.140936591000113],[-79.00527910099987,9.138332424000112],[-79.01195227799994,9.133124091000113],[-79.02472896999986,9.119370835000097],[-79.0289200509999,9.116603908000144],[-79.03693600199995,9.119614976000136],[-79.03954016799986,9.12592194200009],[-79.04263261599993,9.131089585000097],[-79.05247962099986,9.130845445000148],[-79.05866451699993,9.125637111000145],[-79.07087154899989,9.107489325000145],[-79.07664954299986,9.103583075000145],[-79.07900956899991,9.101467190000136],[-79.0821833979999,9.096747137000136],[-79.08779863199987,9.092027085000124],[-79.09748287699995,9.089911200000117],[-79.1067602199999,9.089422919000128],[-79.11416581899988,9.087551174000154],[-79.11904863199995,9.083197333000072],[-79.12071692599997,9.075628973000121],[-79.1145727199999,9.068793036000102],[-79.10167395699997,9.065008856000176],[-79.08999589799987,9.05638255400008],[-79.08722896999993,9.035305080000157],[-79.09178626199986,9.0230166690001],[-79.10212154899997,9.006008205000128],[-79.11607825399994,8.994126695000176],[-79.13158118399986,8.997463283000116],[-79.13809160099993,9.000799872000144],[-79.16234290299994,9.007391669000114],[-79.1634008449999,9.011786200000103],[-79.16828365799994,9.019842841000127],[-79.17349199099993,9.022528387000108],[-79.17601477799988,9.010728257000139],[-79.19298255099994,9.005194403000118],[-79.27334550699993,9.019273179000066],[-79.2994685539999,9.014146226000065],[-79.30573482999995,9.014146226000065],[-79.30573482999995,9.020982164000158],[-79.33031165299985,9.013413804000123],[-79.38683020699997,9.01886627800016],[-79.40933183499988,9.007391669000114],[-79.41820227799991,9.014146226000065],[-79.42747962099989,9.013373114000132],[-79.43712317599993,9.009588934000107],[-79.45445716099994,9.006293036000073],[-79.46690833199995,9.001654364000146],[-79.47451738199989,9.000555731000105],[-79.48200436099995,8.998358466000113],[-79.48403886599988,8.993719794000171],[-79.48468990799992,8.98899974200016],[-79.48790442599989,8.986883856000162],[-79.49107825399994,8.98346588700015],[-79.51919511599993,8.966376044000114],[-79.52122962099989,8.957424221000082],[-79.52025305899991,8.948879299000152],[-79.52220618399986,8.942287502000084],[-79.53286699099988,8.93911367400011],[-79.5155330069999,8.90997955900015],[-79.51183020699995,8.898138739000101],[-79.52497311099992,8.907294012000179],[-79.54112708199997,8.923285223000079],[-79.55467688699994,8.942084052000126],[-79.56017005099997,8.959540106000174],[-79.56639563699991,8.959540106000174],[-79.56501217399995,8.953762111000131],[-79.56322180899986,8.950018622000101],[-79.56017005099997,8.945298570000176],[-79.56017005099997,8.93911367400011],[-79.56639563699991,8.93911367400011],[-79.55919348899988,8.914292710000067],[-79.5638728509999,8.892767645000134],[-79.57848059799991,8.882269598000079],[-79.60118567599997,8.890692450000117],[-79.64683997299991,8.882635809000178],[-79.66120357999998,8.875230210000097],[-79.65575110599985,8.863348700000145],[-79.65575110599985,8.857123114000089],[-79.66685950399996,8.86082591400013],[-79.67398027299993,8.865545966000141],[-79.68065344999988,8.867621161000073],[-79.69054114499988,8.863348700000145],[-79.69347083199992,8.866644598000093],[-79.69465084499984,8.868312893000109],[-79.69701087099989,8.869208075000103],[-79.70360266799987,8.870184637000165],[-79.70360266799987,8.863348700000145],[-79.70079505099991,8.859930731000132],[-79.69920813699989,8.85480377800013],[-79.69676673099985,8.849676825000117],[-79.71393795499998,8.852606512000136],[-79.73021399599992,8.844305731000148],[-79.74356035099991,8.830064195000148],[-79.75202389199987,8.815578518000109],[-79.75625566299988,8.796291408000158],[-79.75202389199987,8.736761786000145],[-79.74986731699995,8.731024481000162],[-79.74518795499995,8.728013414000158],[-79.74046790299994,8.725978908000144],[-79.73835201699984,8.722805080000086],[-79.73932857999989,8.71649811400013],[-79.74136308499993,8.711127020000077],[-79.7445369129999,8.705715236000131],[-79.74681555899988,8.697943427000126],[-79.75080318899995,8.689601955000157],[-79.75601152299993,8.681586005000113],[-79.76195227799988,8.674709377000113],[-79.76593990799995,8.671820380000085],[-79.77839107999995,8.66583893400015],[-79.79100501199994,8.663234768000152],[-79.79173743399988,8.659491278000132],[-79.79051673099985,8.655015367000159],[-79.79295813699989,8.651068427000084],[-79.81001863299991,8.646601108000112],[-79.82631067499992,8.638520066000112],[-79.81369061599989,8.626059908000144],[-79.77960804599994,8.618409940000106],[-79.74735102599996,8.631258633000144],[-79.71730499299994,8.646310358000122],[-79.70580393799995,8.652550776000068],[-79.70209358999989,8.657320823000134],[-79.69726913999993,8.657323396000079],[-79.6968972679999,8.64888758500011],[-79.70060713899991,8.64155064300013],[-79.73436512499993,8.61549857400017],[-79.77439595699988,8.579550130000115],[-79.7936731719999,8.572207498000097],[-79.82629835499998,8.56155282000013],[-79.86411799399986,8.552357599000132],[-79.87152542599992,8.542819456000174],[-79.8697810539999,8.531805731000176],[-79.87173417899996,8.524155992000146],[-79.87486731699994,8.520697333000143],[-79.87999426999994,8.518622137000122],[-79.89122473899994,8.51630280200007],[-79.89537512899987,8.51455312700007],[-79.91055253799988,8.500474351000122],[-79.91763261599993,8.495428778000102],[-79.92674719999994,8.493394273000163],[-79.93211829299989,8.489162502000141],[-79.94180253799993,8.470404364000089],[-79.94688880099997,8.466131903000175],[-79.94896399599989,8.462307033000158],[-79.97020423099988,8.444077867000175],[-80.04080156199984,8.397975979000151],[-80.08088131399987,8.371771552000112],[-80.12584387899994,8.348618882000082],[-80.19554602799991,8.31293366100013],[-80.22496497299991,8.301052151000178],[-80.27273515499988,8.294826565000122],[-80.28160559799991,8.295925197000159],[-80.29446367099993,8.300441799000126],[-80.30003821499994,8.301052151000178],[-80.30882727799991,8.298651434000135],[-80.32628333199996,8.290309963000155],[-80.33421790299994,8.287990627000099],[-80.36148027299993,8.294826565000122],[-80.37466386599988,8.303371486000145],[-80.38072669199997,8.31037018400012],[-80.3757624989999,8.315252997000101],[-80.3857722649999,8.311346747000101],[-80.3862605459999,8.306952216000113],[-80.38475501199994,8.301581122000158],[-80.38878333199992,8.294826565000122],[-80.40701249899988,8.28302643400015],[-80.47024492099985,8.220648505000085],[-80.4781794909999,8.202337958000129],[-80.47484290299988,8.106472072000116],[-80.4761042959999,8.094875393000095],[-80.47846432199995,8.0913760440001],[-80.48440507699988,8.082546291000142],[-80.46816972599993,8.074855861000131],[-80.4609268869999,8.05573151200015],[-80.45608476499993,8.036200262000165],[-80.4471736319999,8.027289130000128],[-80.4324031239999,8.024237372000144],[-80.39427649599992,8.007635809000178],[-80.38259843699984,7.999335028000103],[-80.3488663399999,7.98928457200013],[-80.32774817599991,7.953314520000148],[-80.31334387899994,7.911444403000147],[-80.30003821499994,7.883327541000142],[-80.20445716099997,7.80756256700009],[-80.14378821499992,7.752752997000157],[-80.05239824099993,7.637111721000125],[-80.00576738199993,7.552272854000164],[-79.99351966099987,7.52277252800009],[-79.99465898299991,7.503444729000166],[-80.01003984299986,7.46523672100011],[-80.01785234299984,7.456813869000158],[-80.03005937399993,7.45392487200013],[-80.05679277299993,7.452541408000144],[-80.06497148299985,7.450995184000107],[-80.1355281239999,7.424627997000101],[-80.19851640499994,7.424709377000084],[-80.21068274599992,7.417792059000178],[-80.22280839799993,7.423366604000094],[-80.2496638659999,7.429632880000141],[-80.25906327999994,7.438259182000152],[-80.26589921799984,7.438259182000152],[-80.27481035099987,7.433864651000163],[-80.30687415299985,7.424627997000101],[-80.30687415299985,7.417792059000178],[-80.29397538999983,7.419256903000147],[-80.28355872299993,7.421820380000056],[-80.27452551999993,7.425685940000149],[-80.26589921799984,7.430812893000081],[-80.25906327999994,7.424627997000101],[-80.33096269399988,7.401190497000131],[-80.35757402299993,7.382025458000071],[-80.36148027299993,7.355739651000149],[-80.34439042899987,7.327419338000098],[-80.34756425699993,7.318264065000122],[-80.3723445299999,7.314764716000126],[-80.3792618479999,7.312770901000178],[-80.3871150379999,7.308050848000093],[-80.3935847649999,7.302394924000097],[-80.39627031199987,7.297674872000173],[-80.39883378799988,7.286647854000137],[-80.40538489499997,7.282782294000128],[-80.41441809799997,7.280340887000094],[-80.42418372299991,7.273749091000127],[-80.42849687399989,7.265448309000134],[-80.4281306629999,7.258490302000054],[-80.42910722599987,7.252346096000082],[-80.43724524599989,7.246486721000124],[-80.44481360599994,7.245876369000173],[-80.46373450399994,7.251654364000131],[-80.47447669199997,7.253322658000143],[-80.59683183499996,7.238063869000171],[-80.60407467399997,7.236721096000095],[-80.71312415299985,7.216457424000082],[-80.79336503799988,7.213568427000141],[-80.8139949209999,7.219142971000152],[-80.82079016799992,7.219142971000152],[-80.82595781199984,7.213324286000102],[-80.83108476499984,7.211371161000059],[-80.83621171799987,7.213324286000102],[-80.84129798099988,7.219142971000152],[-80.84813391799989,7.219142971000152],[-80.86180579299995,7.20571523600016],[-80.87307695199992,7.212551174000083],[-80.88906816299993,7.239040432000151],[-80.89443925699987,7.243434963000141],[-80.9017634759999,7.248114325000146],[-80.91055253799996,7.251776434000107],[-80.92007402299996,7.253322658000143],[-80.9297175769999,7.256496486000118],[-80.93016516799992,7.263576565000079],[-80.92556718699987,7.27057526200015],[-80.92007402299996,7.273749091000127],[-80.91600501199989,7.278143622000101],[-80.91714433499993,7.29962799700013],[-80.91637122299991,7.307928778000118],[-80.9111628899999,7.315008856000161],[-80.8999324209999,7.323513088000112],[-80.8959854809999,7.328395901000164],[-80.89236406199987,7.341742255000084],[-80.89159094999985,7.360174872000115],[-80.8956599599999,7.376613674000112],[-80.9211726549999,7.392035223000149],[-80.92080644399988,7.410793361000103],[-80.91018632699985,7.44167715100015],[-80.9150691399999,7.454657294000156],[-80.95116126199986,7.493475653000161],[-80.95461992099987,7.495510158000101],[-80.9621882799999,7.502468166000184],[-80.96690833199992,7.509914455000157],[-80.95470130099994,7.516913153000147],[-80.95274817599989,7.525458075000159],[-80.95164954299995,7.53558991100013],[-80.94774329299995,7.544094143000151],[-80.94631913999987,7.555690822000174],[-80.9557185539999,7.569647528000146],[-80.96898352799994,7.582058010000167],[-80.97911536399988,7.589056708000143],[-80.97911536399988,7.595892645000077],[-80.97166907499991,7.595892645000077],[-80.97166907499991,7.602728583000086],[-81.02004960799991,7.650539455000128],[-81.02993730399993,7.656073309000135],[-81.03750566299988,7.65827057500013],[-81.0412898429999,7.661688544000143],[-81.0399063789999,7.67104726800008],[-81.0351863269999,7.679958401000121],[-81.0278214179999,7.686183986000074],[-81.01785234299993,7.688421942000147],[-81.00576738199993,7.685329494000172],[-81.01060950399989,7.693915106000176],[-81.02183997299991,7.702663479000151],[-81.03445390499988,7.709295966000126],[-81.04332434799991,7.711981512000107],[-81.04482988199987,7.716701565000108],[-81.02623450399989,7.74673086100016],[-81.03713945199988,7.745998440000136],[-81.04686438699991,7.747219143000151],[-81.05483964799987,7.750026760000097],[-81.06102454299992,7.754177151000135],[-81.05760657499991,7.75495026200015],[-81.05479895699997,7.754828192000089],[-81.05325273299994,7.755926825000132],[-81.05357825399994,7.760402736000103],[-81.07669023299991,7.764797268000081],[-81.08608964799991,7.779120184000163],[-81.08543860599987,7.794338283000143],[-81.07811438699989,7.801336981000119],[-81.07249915299988,7.803534247000115],[-81.06749426999994,7.808172919000143],[-81.06082109299987,7.812892971000153],[-81.05016028599992,7.815008856000162],[-81.03762773299985,7.815008856000162],[-81.02757727799988,7.816799221000138],[-81.02127031199984,7.822699286000088],[-81.02004960799991,7.835516669000114],[-81.02623450399989,7.835516669000114],[-81.04885820199985,7.822699286000088],[-81.05589758999992,7.8493919940001],[-81.05357825399994,7.911200262000108],[-81.07522538999984,7.871283270000133],[-81.09044348899991,7.857855536000144],[-81.10195878799996,7.8771019550001],[-81.1081843739999,7.8771019550001],[-81.10594641799995,7.866400458000071],[-81.10216223899991,7.858587958000086],[-81.09630286399997,7.853054104000152],[-81.08767656199987,7.849188544000142],[-81.08767656199987,7.842311916000141],[-81.13304602799988,7.842311916000141],[-81.1423640619999,7.844427802000054],[-81.15481523299994,7.853827216000169],[-81.16714433499988,7.85598379100017],[-81.19241288999993,7.863348700000174],[-81.19737708199997,7.879055080000142],[-81.19994055899988,7.893622137000165],[-81.21804765499989,7.897528387000165],[-81.20815995999988,7.893459377000113],[-81.20523027299996,7.889919338000126],[-81.20437577999984,7.883327541000142],[-81.21764075399989,7.878973700000159],[-81.21519934799994,7.870998440000108],[-81.19753984299984,7.85598379100017],[-81.18020585799984,7.846869208000086],[-81.17711341099997,7.845729885000154],[-81.17870032499991,7.836859442000104],[-81.18163001199991,7.829657294000171],[-81.18325761599993,7.82367584800015],[-81.16470292899992,7.789007880000085],[-81.17442786399987,7.763006903000103],[-81.19668535099993,7.741725979000123],[-81.21804765499989,7.726263739000104],[-81.22240149599989,7.73440176000011],[-81.22317460799991,7.739203192000105],[-81.2214656239999,7.742702541000185],[-81.21804765499989,7.74673086100016],[-81.21804765499989,7.754177151000135],[-81.23204505099994,7.755031643000138],[-81.24596106699994,7.754177151000135],[-81.24596106699994,7.74673086100016],[-81.23538163999987,7.743841864000132],[-81.22948157499985,7.737819729000122],[-81.21804765499989,7.719427802000083],[-81.23155676999997,7.714382229000151],[-81.23741614499991,7.715114651000177],[-81.24596106699994,7.719427802000083],[-81.2386775379999,7.707464911000145],[-81.23167883999994,7.698919989000132],[-81.22549394399996,7.698919989000132],[-81.21214758999986,7.70612213700015],[-81.19753984299984,7.711981512000107],[-81.19326738199993,7.7007510440001],[-81.19753984299984,7.657375393000136],[-81.19546464799993,7.645697333000143],[-81.19517981699988,7.63886139500012],[-81.19753984299984,7.630072333000071],[-81.20132402299986,7.625189520000091],[-81.21340898299988,7.615423895000148],[-81.21804765499989,7.608954169000143],[-81.22549394399996,7.608954169000143],[-81.2340388659999,7.615261135000181],[-81.26622473899994,7.632391669000128],[-81.27330481699991,7.63349030200007],[-81.27871660099996,7.646063544000156],[-81.29116777299987,7.650661526000092],[-81.31423906199984,7.650539455000128],[-81.39696204299987,7.673529364000102],[-81.4241023429999,7.67104726800008],[-81.42821204299986,7.682562567000119],[-81.43492591099991,7.692653713000169],[-81.44290117099987,7.700466213000168],[-81.45079505099991,7.705145575000174],[-81.47390702999988,7.69940827000012],[-81.50344804599985,7.701971747000115],[-81.52578691299988,7.711452541000128],[-81.52712968699987,7.726263739000104],[-81.51866614499991,7.728908596000095],[-81.49998938699994,7.738674221000124],[-81.48875891799995,7.749212958000086],[-81.52806555899986,7.760565497000159],[-81.5390518869999,7.757350979000107],[-81.54019120999993,7.739935614000131],[-81.56322180899991,7.756293036000144],[-81.57494055899991,7.760402736000103],[-81.57494055899991,7.767238674000111],[-81.5683894519999,7.776027736000089],[-81.57388261599993,7.784328518000152],[-81.58311926999991,7.793402411000073],[-81.58800208199997,7.804470119000186],[-81.58629309799997,7.820868231000105],[-81.58177649599992,7.831569729000122],[-81.5674942699999,7.849188544000142],[-81.5674942699999,7.85598379100017],[-81.57461503799988,7.860663153000104],[-81.58189856699988,7.862494208000072],[-81.58897864499994,7.861110744000186],[-81.59544837099986,7.85598379100017],[-81.60159257699993,7.85598379100017],[-81.60912024599989,7.862819729000094],[-81.60912024599989,7.870266018000081],[-81.59976152299996,7.877834377000127],[-81.59988359299993,7.885036526000149],[-81.60802161399994,7.889837958000143],[-81.62271074099993,7.890082098000092],[-81.61961829299986,7.90534088700015],[-81.61868242099986,7.9220238300001],[-81.6129451159999,7.931423244000115],[-81.59544837099986,7.924872137000135],[-81.59801184799994,7.933783270000077],[-81.60208085799991,7.940008856000134],[-81.61587480399993,7.952175197000116],[-81.6112361319999,7.959621486000102],[-81.6129451159999,7.974188544000127],[-81.60912024599989,7.986354885000111],[-81.62132727799988,7.981350002000156],[-81.62710527299993,7.982814846000124],[-81.62889563699991,7.981838283000144],[-81.6289363269999,7.969265041000156],[-81.62413489499991,7.955389716000169],[-81.62258867099987,7.947943427000098],[-81.62588456899991,7.944728908000144],[-81.63329016799989,7.945868231000175],[-81.6384578119999,7.949245510000182],[-81.64159094999988,7.954657294000143],[-81.64260820199985,7.962103583000115],[-81.64590410099987,7.973089911000087],[-81.66356360599988,7.997300523000163],[-81.67052161399987,8.00678131700009],[-81.68480383999989,8.044623114000117],[-81.69102942599994,8.054632880000113],[-81.69713294199991,8.039129950000103],[-81.69835364499994,8.031032619000158],[-81.69786536399994,8.021063544000171],[-81.70836341099991,8.031317450000103],[-81.70852617099987,8.045843817000131],[-81.71035722599996,8.059841213000098],[-81.7257380849999,8.06826406500015],[-81.7257380849999,8.075710354000122],[-81.71727454299986,8.070827541000156],[-81.70946204299986,8.068630276000164],[-81.70287024599989,8.069973049000154],[-81.69786536399994,8.075710354000122],[-81.69102942599994,8.075710354000122],[-81.68761145699992,8.072780666000114],[-81.68541419199994,8.071600653000175],[-81.67735755099989,8.06826406500015],[-81.71145585799991,8.130316473000093],[-81.73355058499989,8.157660223000065],[-81.7434382799999,8.173163153000175],[-81.74624589799996,8.191799221000153],[-81.75247148299991,8.191799221000153],[-81.75820878799988,8.180609442000145],[-81.76065019399991,8.169582424000112],[-81.75747636599996,8.161159572000145],[-81.74624589799996,8.157660223000065],[-81.75243079299992,8.148993231000162],[-81.76748613199993,8.132757880000128],[-81.77419999899986,8.123480536000073],[-81.78038489499994,8.123480536000073],[-81.79832923099991,8.137111721000124],[-81.87657630099989,8.167873440000108],[-81.88536536399997,8.17328522300015],[-81.9270320299999,8.183172919000157],[-81.94115149599993,8.184963283000144],[-81.95181230399987,8.191433010000138],[-81.94786536399991,8.206244208000115],[-81.93118242099987,8.233343817000147],[-81.94326738199996,8.229641018000109],[-81.95669511599993,8.221014716000099],[-81.96764075399992,8.20905182500016],[-81.97219804599987,8.195502020000106],[-81.97838294199994,8.192531643000095],[-81.99217688699994,8.201117255000113],[-82.01317298099988,8.219061591000155],[-82.02786210799988,8.208278713000139],[-82.06029212099989,8.210272528000173],[-82.09312903599988,8.220363674000154],[-82.10936438699991,8.233343817000147],[-82.11558997299989,8.233343817000147],[-82.11729895699989,8.215155341000155],[-82.14240475199998,8.160060940000108],[-82.14456132699988,8.161891994000172],[-82.14891516799986,8.164089260000168],[-82.15029863199993,8.164496161000088],[-82.15029863199993,8.157660223000065],[-82.1565242179999,8.157660223000065],[-82.14720618399986,8.180934963000169],[-82.14757239499988,8.188299872000172],[-82.1565242179999,8.184963283000144],[-82.15538489499997,8.193182684000135],[-82.15379798099994,8.199286200000131],[-82.15038001199991,8.203314520000106],[-82.14346269399994,8.205389716000113],[-82.14346269399994,8.212917385000166],[-82.15689042899992,8.211737372000144],[-82.17410234299984,8.201727606000162],[-82.18789628799993,8.19924551000014],[-82.19652258999986,8.202175197000159],[-82.2092585929999,8.215521552000084],[-82.21922766799989,8.219061591000155],[-82.21922766799989,8.22589752800016],[-82.21410071499989,8.227443752000113],[-82.20958411399994,8.23114655200007],[-82.20494544199991,8.233343817000147],[-82.21654212099992,8.264227606000103],[-82.21755937399988,8.278225002000156],[-82.2117813789999,8.287990627000099],[-82.2117813789999,8.294826565000122],[-82.21764075399994,8.29934316600017],[-82.2187800769999,8.304348049000112],[-82.21642005099994,8.309759833000072],[-82.2117813789999,8.315252997000101],[-82.2106013659999,8.3126488300001],[-82.21084550699993,8.309881903000132],[-82.20982825399997,8.30805084800015],[-82.20494544199991,8.30849844000015],[-82.20982825399997,8.321844794000157],[-82.20864824099993,8.332098700000103],[-82.20055091099991,8.339300848000121],[-82.18443762899993,8.343207098000121],[-82.20787512899992,8.343939520000148],[-82.2201228509999,8.342962958000086],[-82.22545325399994,8.339504299000083],[-82.24144446499986,8.30670807500016],[-82.24246171799993,8.301052151000178],[-82.26195227799991,8.302801825000174],[-82.2770889959999,8.309271552000084],[-82.2844132149999,8.322211005000085],[-82.2800593739999,8.343207098000121],[-82.2964981759999,8.336208401000135],[-82.31395423099988,8.330837307000179],[-82.33165442599997,8.329779364000132],[-82.34890702999986,8.33576080900015],[-82.3470759759999,8.329169012000165],[-82.34496008999989,8.315008856000148],[-82.34276282499991,8.30849844000015],[-82.35867265499994,8.306097723000107],[-82.3871964179999,8.291449286000102],[-82.40013587099992,8.287990627000099],[-82.41893469999987,8.293036200000131],[-82.43325761599996,8.304348049000112],[-82.43533281199988,8.316107489000103],[-82.41722571499989,8.322780666000142],[-82.41722571499989,8.32892487200013],[-82.4256892569999,8.33230215100015],[-82.43028723899994,8.338161526000178],[-82.43175208199992,8.346218166000128],[-82.43089758999992,8.356268622000101],[-82.44102942599997,8.34870026200015],[-82.44261633999989,8.33633047100011],[-82.44701087099989,8.323553778000159],[-82.46560624899988,8.315252997000101],[-82.46560624899988,8.30849844000015],[-82.46141516799995,8.302923895000148],[-82.45742753799988,8.296047268000137],[-82.45413163999984,8.288519598000079],[-82.45201575399992,8.281154690000093],[-82.47085527299987,8.277126369000115],[-82.47777258999986,8.277411200000145],[-82.48611406199984,8.281154690000093],[-82.51170813699991,8.276434637000165],[-82.55264238199993,8.287380276000135],[-82.62267005099991,8.315252997000101],[-82.65892493399994,8.322780666000142],[-82.69859778599995,8.322821356000134],[-82.73802649599992,8.317450262000179],[-82.80870520699997,8.295681057000124],[-82.83901933499996,8.2785098330001],[-82.86245683499993,8.254055080000157],[-82.87718665299992,8.219061591000155],[-82.87987219999991,8.177883205000086],[-82.87283281199984,8.135891018000109],[-82.84923255099989,8.06826406500015],[-82.84923255099989,8.06203847900018],[-82.86209062399993,8.048895575000131],[-82.8681941399999,8.032375393000152],[-82.87694251199989,8.02387116100013],[-82.8976130849999,8.034735419000114],[-82.8976292589428,8.034748020073364],[-82.89136979199989,8.05754547100014],[-82.88640885499993,8.102193909000164],[-82.93909297799988,8.21683807400012],[-82.94366634199991,8.248567403000138],[-82.95051346899996,8.258825175000124],[-82.96800594099992,8.267971904000206],[-82.97712683099991,8.269237976000156],[-82.98919327799986,8.26445790700015],[-82.99552364099988,8.264819641000145],[-83.00110469599991,8.269237976000156],[-83.0107681889999,8.283371480000183],[-83.01606502399996,8.289004211000119],[-83.04407364999989,8.305359803000158],[-83.05324621699998,8.315100810000118],[-83.05210933499987,8.327632345000126],[-83.04329850299987,8.334737854000153],[-82.9977715659999,8.360162659000153],[-82.95351070199987,8.402098084000144],[-82.92477860499989,8.416748352000127],[-82.89651159699989,8.425352478000162],[-82.8704149989999,8.438116557000143],[-82.8482974859999,8.465169169000177],[-82.83891821399993,8.494624736000091],[-82.83597265699993,8.529764710000137],[-82.84186376999995,8.599476217000172],[-82.84979610299989,8.629861959000138],[-82.86222428499988,8.655700176000153],[-82.8789416099999,8.679057923000101],[-82.91033504299995,8.713913676000175],[-82.91922338899997,8.727065328000151],[-82.9241584889999,8.741198832000178],[-82.92296992999987,8.756159160000152],[-82.91488256899997,8.764789124000103],[-82.88511694399996,8.783185934000187],[-82.87578934799986,8.793908793000114],[-82.87563431899991,8.807525533000117],[-82.88356665099988,8.812383118000128],[-82.88832088299993,8.816930644000166],[-82.87857987499993,8.829772238000146],[-82.86692683999993,8.838066304000108],[-82.76378067999991,8.879950053000186],[-82.73386002599997,8.897985128000187],[-82.72015670999994,8.920237750000183],[-82.71936478699988,8.92152374300018],[-82.72334387199993,8.930928854000143],[-82.74913041199994,8.974078674000152],[-82.76269547599992,8.982992859000177],[-82.80817073599988,8.998366597000157],[-82.85408524699994,9.031982117000098],[-82.87656449499988,9.041929830000186],[-82.88242976999996,9.045340475000131],[-82.88687394299986,9.05148997000019],[-82.88969030799993,9.059370626000131],[-82.89328181999991,9.066941224000104],[-82.90023229999991,9.07205719000018],[-82.90945654399991,9.072005514000168],[-82.93937719799993,9.059577332000101],[-82.93952108499994,9.070641889000143],[-82.94165096099994,9.234424540000191],[-82.94320125399989,9.354313863000172],[-82.94428645899987,9.437151185000175],[-82.94170263699996,9.456348979000097],[-82.93330521699997,9.470327454000184],[-82.9146241869999,9.47686452200017],[-82.86129410899991,9.484099223000142],[-82.84638545799996,9.49254832000014],[-82.84478348899992,9.50068735800015],[-82.84938269099987,9.503477885000107],[-82.85591975899987,9.505441590000132],[-82.86020890299991,9.511203512000108],[-82.86713354499992,9.538643697000154],[-82.8792516689999,9.559908549000141],[-82.87739131699989,9.569184469000149],[-82.86604834099992,9.585074972000172],[-82.84747066299988,9.600655416000109],[-82.82902217599992,9.60272247300017],[-82.77109289599991,9.579855652000148],[-82.72936417699998,9.54489654600016],[-82.71972652199995,9.541330872000088],[-82.71169083699996,9.544999899000175],[-82.70145890399989,9.533553569000077],[-82.68866898699991,9.509446513000128],[-82.67804947999993,9.497767639000145],[-82.66820511899996,9.493168437000108],[-82.65071264699989,9.487845764000154],[-82.63213496999995,9.484667663000096],[-82.61885412599995,9.486708883000146],[-82.61239457299989,9.499498800000126],[-82.60820878199996,9.537868551000145],[-82.60110327199993,9.548668925000172],[-82.58588456299988,9.546240133000126],[-82.57061417699992,9.53823028500014],[-82.56283687399991,9.538695373000166],[-82.57359130798213,9.576194698775936],[-82.56187903599991,9.56907786700013],[-82.46564693899987,9.493963934000107],[-82.40660559799994,9.435248114000103],[-82.36896725199995,9.414943752000099],[-82.34276282499991,9.432521877000127],[-82.34508216099997,9.415432033000087],[-82.34959876199991,9.402044989000089],[-82.3767797519999,9.355169989000132],[-82.37946529899992,9.343817450000158],[-82.37629146999984,9.330064195000134],[-82.36778723899991,9.320746161000102],[-82.35643469999985,9.31342194200009],[-82.34813391799986,9.305568752000113],[-82.34894771999987,9.29474518400012],[-82.36245683499993,9.284125067000076],[-82.38760331899994,9.286078192000117],[-82.3899633449999,9.274847723000121],[-82.39492753799993,9.267075914000117],[-82.39366614499991,9.262111721000068],[-82.38878333199995,9.260077216000141],[-82.38304602799988,9.261216539000173],[-82.37319902299986,9.254543361000117],[-82.36449133999989,9.242865302000126],[-82.35814368399986,9.229437567000131],[-82.35582434799989,9.216782945000148],[-82.35057532499991,9.207261460000067],[-82.31480872299997,9.1854922550001],[-82.30797278599997,9.1854922550001],[-82.3004451159999,9.19708893400012],[-82.28823808499993,9.198553778000175],[-82.28246008999986,9.202093817000147],[-82.29430091099991,9.220282294000143],[-82.28099524599989,9.21662018400009],[-82.27594967399997,9.206447658000144],[-82.27306067599994,9.194484768000123],[-82.26642818899987,9.1854922550001],[-82.25548255099991,9.182603257000068],[-82.24791419199994,9.186997789000145],[-82.24445553299995,9.197577216000097],[-82.24596106699991,9.213446356000134],[-82.2390844389999,9.213446356000134],[-82.23814856699991,9.200262762000179],[-82.23106848899992,9.193752346000094],[-82.2230525379999,9.192775783000116],[-82.21922766799989,9.196356512000179],[-82.21873938699991,9.208644924000138],[-82.21686764199984,9.217474677000096],[-82.21251380099994,9.220038153000104],[-82.20494544199991,9.213446356000134],[-82.20396887899992,9.216538804000109],[-82.20400956899991,9.219224351000094],[-82.2027888659999,9.220689195000148],[-82.19810950399989,9.220282294000143],[-82.19619706899994,9.211167710000069],[-82.19343014199987,9.204087632000096],[-82.18960527299996,9.198309637000136],[-82.18443762899993,9.192938544000171],[-82.17764238199993,9.192938544000171],[-82.17764238199993,9.19977448100009],[-82.17080644399991,9.19977448100009],[-82.17345130099989,9.184759833000072],[-82.17170162699989,9.1574160830001],[-82.17764238199993,9.145168361000131],[-82.20811926999997,9.163763739000132],[-82.22411048099987,9.169663804000066],[-82.24962317599994,9.17182038000007],[-82.26073157499988,9.164048570000162],[-82.26378333199989,9.146551825000117],[-82.26073157499988,9.127875067000131],[-82.25340735599988,9.116603908000144],[-82.25340735599988,9.110419012000165],[-82.2589412099999,9.112738348000136],[-82.27383378799996,9.116603908000144],[-82.26846269399991,9.10236237200013],[-82.24453691299992,9.089911200000117],[-82.2390844389999,9.079331773000163],[-82.24596106699991,9.014146226000065],[-82.25047766799986,9.015204169000114],[-82.25348873599995,9.016302802000054],[-82.25621497299994,9.017971096000068],[-82.26016191299993,9.020982164000158],[-82.24303137899989,9.004461981000091],[-82.2188207669999,8.993353583000072],[-82.19469153599988,8.990952867000118],[-82.17764238199993,9.000555731000105],[-82.14175370999992,8.988959052000084],[-82.12901770699997,8.981390692000131],[-82.12922115799992,8.973211981000118],[-82.11440995999995,8.950751044000128],[-82.10936438699991,8.945298570000176],[-82.10700436099995,8.94188060100008],[-82.10537675699993,8.935207424000126],[-82.10191809799994,8.931626695000148],[-82.09780839799988,8.93060944200009],[-82.08665930899988,8.931708075000131],[-82.06761633999989,8.93073151200015],[-82.02000891799989,8.945298570000176],[-81.99771074099996,8.947455145000092],[-81.98521887899994,8.942328192000076],[-81.97472083199997,8.935207424000126],[-81.95856686099992,8.931626695000148],[-81.94395911399991,8.935126044000143],[-81.92943274599986,8.943833726000122],[-81.92076575399997,8.955145575000103],[-81.92373613199987,8.966376044000114],[-81.91246497299987,8.97109609600011],[-81.9037166009999,8.971136786000102],[-81.88963782499988,8.966376044000114],[-81.88768469999991,8.962591864000089],[-81.87804114499994,8.954250393000109],[-81.86733964799993,8.949286200000158],[-81.86237545499998,8.955796617000146],[-81.85228430899991,8.95831940300016],[-81.79344641799992,8.931626695000148],[-81.77554277299987,8.940252997000144],[-81.7705785799999,8.957464911000073],[-81.77424068899987,8.997463283000116],[-81.84186764199991,9.035305080000157],[-81.87706458199997,9.087307033000116],[-81.88621985599985,9.096136786000088],[-81.89928137899994,9.101874091000141],[-81.91783606699994,9.114976304000123],[-81.93342037699995,9.129217841000127],[-81.93740800699989,9.138332424000112],[-81.92202714799987,9.13812897300015],[-81.89663652299994,9.131781317000133],[-81.87287350199995,9.129543361000145],[-81.86237545499998,9.141750393000123],[-81.89476477799988,9.156927802000112],[-81.9103083979999,9.168117580000114],[-81.9033096999999,9.179266669000143],[-81.88280188699986,9.179510809000178],[-81.86546790299988,9.16665273600016],[-81.84186764199991,9.138332424000112],[-81.81875566299988,9.12107982000019],[-81.81456458199995,9.116603908000144],[-81.81602942599991,9.108058986000117],[-81.82420813699991,9.10545482000012],[-81.83438066299996,9.107001044000157],[-81.84186764199991,9.110419012000165],[-81.84186764199991,9.103583075000145],[-81.83372962099992,9.093817450000117],[-81.82583138999993,9.08528605400015],[-81.82088085399994,9.070647428000157],[-81.81346556799986,9.067805310000097],[-81.80028557799994,9.067811131000127],[-81.77680703499993,9.064972420000087],[-81.76197132199991,9.063750226000124],[-81.73688717399992,9.036932684000178],[-81.72117186999992,9.032021871000097],[-81.70645097599986,8.999172268000123],[-81.7015681629999,8.994330145000134],[-81.68748938699986,8.984198309000178],[-81.62755286399991,8.899115302000084],[-81.58731035099993,8.856350002000068],[-81.5674942699999,8.843491929000137],[-81.56159420499989,8.834377346000153],[-81.55077063699989,8.822821356000134],[-81.5390518869999,8.812933661000116],[-81.53026282499994,8.808742580000086],[-81.52147376199989,8.806789455000143],[-81.5032920859999,8.800959842000067],[-81.49119693899988,8.800984727000085],[-81.47347433899998,8.80659381400011],[-81.42150634699986,8.796426828000094],[-81.40943074899994,8.800099720000132],[-81.38154664499993,8.800120439000167],[-81.3579809239999,8.78510163000007],[-81.30446315999984,8.781882361000072],[-81.2662241489999,8.789234831000101],[-81.21307278599993,8.791808601000156],[-81.17478467299992,8.79676577800015],[-81.13034023599991,8.801736471000112],[-81.08771725199995,8.808742580000086],[-81.07990475199995,8.8048363300001],[-81.0707087879999,8.806830145000134],[-81.06151282499991,8.813177802000068],[-81.05357825399994,8.822414455000128],[-80.97513893799996,8.8480889920001],[-80.89892320999991,8.879635169000068],[-80.8817170739999,8.88569791600014],[-80.84485694599992,8.884479757000165],[-80.82241777299996,8.890692450000117],[-80.81289945699983,8.90266958000008],[-80.80429236399993,8.912369333000171],[-80.78355872299994,8.939195054000095],[-80.77257239499988,8.953436591000099],[-80.76252193899992,8.959540106000174],[-80.75914466099991,8.96271393400015],[-80.75584876199984,8.969794012000122],[-80.75064042899996,8.97687409100017],[-80.74168860599994,8.980047919000143],[-80.7268262899999,8.997221549000102],[-80.70348462299995,9.008107912000142],[-80.66710364499988,9.029730536000145],[-80.65322831899991,9.035305080000157],[-80.6371178689999,9.051671743000128],[-80.57933726999991,9.080687317000141],[-80.5067727149999,9.110891244000157],[-80.40831586199991,9.142262116000097],[-80.29259192599997,9.151353257000096],[-80.27745520699997,9.156398830000128],[-80.24478105399993,9.175116278000104],[-80.23493404899992,9.179266669000143],[-80.19994055899991,9.183172919000128],[-80.16291256399987,9.192938544000171],[-80.12970943899987,9.206203518000109],[-80.10081946499993,9.222316799000081],[-80.06520070199988,9.262480813000153],[-80.02619381399992,9.29661692900008],[-80.00082338199988,9.32051558800012],[-79.99850467899995,9.33179645600012],[-79.97894374399993,9.363353126000149],[-79.95373105799987,9.37343389300014],[-79.94743641199989,9.372848822000137],[-79.9437556629999,9.36359284100017],[-79.94591223899991,9.325873114000116],[-79.9437556629999,9.315863348000121],[-79.93822180899988,9.309149481000176],[-79.92943274599992,9.304144598000136],[-79.91917883999989,9.303168036000073],[-79.90904700399992,9.30841705900015],[-79.90160071499984,9.326646226000136],[-79.90025794199997,9.346828518000152],[-79.89468339799994,9.356431382000137],[-79.87486731699994,9.343166408000116],[-79.8770645819999,9.351629950000145],[-79.87950598899997,9.368801174000081],[-79.88170325399994,9.377264716000111],[-79.8793025379999,9.375433661000145],[-79.87486731699994,9.371079820000148],[-79.8680313789999,9.377264716000111],[-79.88040158399988,9.394640280000175],[-79.87121153199988,9.404204787000182],[-79.8597861199999,9.399083630000106],[-79.84089812699995,9.400709095000138],[-79.81862314399987,9.39103205400015],[-79.80036373599997,9.360785223000136],[-79.79295813699989,9.34935130400008],[-79.79698645699995,9.371283270000104],[-79.80215410099987,9.386664130000142],[-79.80272376199994,9.40058014500012],[-79.79295813699989,9.418198960000138],[-79.77814693899992,9.431586005000142],[-79.74828040299994,9.442531643000109],[-79.73151607999992,9.453029690000093],[-79.72935950399992,9.455959377000113],[-79.72663326699983,9.463364976000094],[-79.72472083199989,9.466701565000122],[-79.72130286399988,9.469224351000136],[-79.71465453699994,9.479844922000126],[-79.70546269099995,9.485459786000177],[-79.69062971999995,9.495799408000096],[-79.68428315399993,9.521478175000155],[-79.67737458599991,9.54560752800009],[-79.65968302299984,9.552373618000102],[-79.65166245399988,9.559693900000141],[-79.6564848159999,9.564962828000175],[-79.66772035799997,9.560802323000104],[-79.67650305899994,9.558417059000092],[-79.68215766899989,9.564526740000147],[-79.6757319729999,9.568706321000121],[-79.66984326599993,9.57288658000013],[-79.66448485699996,9.583370031000143],[-79.65003105499987,9.58960642800011],[-79.63885293599985,9.59850869400013],[-79.63033519699988,9.608473537000123],[-79.6122102279999,9.613666727000107],[-79.5962427339999,9.611521288000148],[-79.57654892999997,9.617789961000113],[-79.55096854999988,9.62929248000016],[-79.53286699099988,9.624335028000132],[-79.5279841789999,9.612453518000095]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Puerto Rico","adm0_a3":"PRI","geou_dif":0,"geounit":"Puerto Rico","gu_a3":"PRI","su_dif":0,"subunit":"Puerto Rico","su_a3":"PRI","brk_diff":0,"name":"Puerto Rico","name_long":"Puerto Rico","brk_a3":"PRI","brk_name":"Puerto Rico","brk_group":null,"abbrev":"P.R.","postal":"PR","formal_en":"Commonwealth of Puerto Rico","formal_fr":null,"note_adm0":"Commonwealth of U.S.A.","note_brk":null,"name_sort":"Puerto Rico","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":3971020,"gdp_md_est":70230,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"RQ","iso_a2":"PR","iso_a3":"PRI","iso_n3":"630","un_a3":"630","wb_a2":"PR","wb_a3":"PRI","woe_id":23424935,"woe_id_eh":23424935,"woe_note":"Exact WOE match as country","adm0_a3_is":"PRI","adm0_a3_us":"PRI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"PRI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-67.87315833199992,18.053452867000047],[-67.88255774599995,18.05255768400015],[-67.89195716099995,18.053452867000047],[-67.89622962099989,18.05634186400009],[-67.90269934799989,18.06541575700008],[-67.93114173099991,18.080511786000088],[-67.93781490799994,18.094224351000108],[-67.93130449099996,18.108710028000147],[-67.91974850199995,18.114488023000106],[-67.86188717399992,18.116115627000127],[-67.85586503799993,18.114691473000065],[-67.84434973899988,18.104559637000122],[-67.84414628799993,18.097560940000122],[-67.84976152299993,18.09064362200003],[-67.85993404899997,18.0731468770001],[-67.86416581899991,18.06875234600001],[-67.86754309799991,18.064195054000052],[-67.86888587099992,18.05634186400009],[-67.87315833199992,18.053452867000047]]],[[[-65.27574622299991,18.137152411000088],[-65.28307044199994,18.133490302000112],[-65.30980383999994,18.135199286000116],[-65.31655839799986,18.132798570000162],[-65.33556067599997,18.120266018000095],[-65.34080969999988,18.114691473000065],[-65.34772701699995,18.114691473000065],[-65.3565974599999,18.122870184000178],[-65.37120520699992,18.119533596000153],[-65.39024817599991,18.111965236000103],[-65.46857662699989,18.09442780200005],[-65.48424231699997,18.087347723],[-65.50487219999991,18.093654690000122],[-65.53600012899989,18.090073960000083],[-65.56509355399996,18.093939520000063],[-65.58043372299991,18.122137762000065],[-65.56493079299989,18.12262604400003],[-65.55992591099997,18.122137762000065],[-65.54015051999994,18.12376536700016],[-65.52025305899994,18.130926825000117],[-65.50218665299991,18.141262111000014],[-65.4879451159999,18.152289130000085],[-65.47850501199991,18.15704987200017],[-65.39854895699992,18.169338283000044],[-65.38581295499995,18.16718170800011],[-65.35106360599988,18.155707098000093],[-65.29857337099995,18.153713283000126],[-65.28555253799996,18.14887116100006],[-65.27574622299991,18.137152411000088]]],[[[-65.25666256399992,18.323919989000146],[-65.24461829299992,18.30654531500006],[-65.24754798099985,18.305853583000115],[-65.25829016799985,18.30654531500006],[-65.25145423099994,18.299709377000152],[-65.26211503799988,18.299221096000068],[-65.27041581899996,18.30141836100016],[-65.27603105399996,18.306341864000117],[-65.27879798099991,18.313950914000074],[-65.28555253799996,18.313950914000074],[-65.27651933499993,18.29694245000009],[-65.27481035099993,18.289007880000113],[-65.27879798099991,18.279201565],[-65.29259192599991,18.299953518],[-65.33433997299997,18.337103583],[-65.33405514199993,18.340643622000083],[-65.3094376289999,18.340765692000062],[-65.28091386599993,18.335272528000033],[-65.25666256399992,18.323919989000146]]],[[[-67.01235917899993,18.505764065000065],[-66.90731564,18.48532484300001],[-66.80345618399988,18.498277085],[-66.78921464799987,18.496527411],[-66.75169837099995,18.484035549],[-66.73680579299989,18.483140367000104],[-66.69766191299996,18.491441148000163],[-66.64085852799991,18.496405341000028],[-66.61432857999995,18.49323151200015],[-66.58779863199987,18.484035549],[-66.57144120999995,18.487005927000112],[-66.50706946499986,18.486395575000145],[-66.46743730399993,18.475287177000112],[-66.38239498599992,18.491441148000163],[-66.3038630849999,18.46881745000003],[-66.25812740799998,18.48151276200018],[-66.20518958199992,18.465399481000116],[-66.19398862199998,18.473586567],[-66.18089758999994,18.471502997000087],[-66.17369544199991,18.462958075000174],[-66.17007402299996,18.45734284100017],[-66.16158408499987,18.453298221000082],[-66.15200759599992,18.45872363800011],[-66.14408516299991,18.468702418000092],[-66.13414466099997,18.465887762000094],[-66.13747020199985,18.45275593200007],[-66.11808062099988,18.44302686800013],[-66.11485755099994,18.43317291900017],[-66.1084692049999,18.42064036700016],[-66.09316972599996,18.41982656500006],[-66.06021074099988,18.429388739000146],[-66.06021074099988,18.436835028000033],[-66.07677161399994,18.43886953300013],[-66.09496008999994,18.447699286],[-66.10936438699991,18.461411851000136],[-66.12163115699992,18.473470242000147],[-66.05589758999989,18.453802802],[-66.03970292899993,18.450506903000147],[-66.02818465099992,18.446870575],[-66.01209975399988,18.443961815000037],[-65.99771739999997,18.45018494100016],[-65.98888098899988,18.46308014500015],[-65.96621660099993,18.45844147300012],[-65.92043842799995,18.44588943100011],[-65.9048260499999,18.45592492600018],[-65.89281165299991,18.45359935100005],[-65.88052324099995,18.44481028900016],[-65.84829667899993,18.437892971000068],[-65.83079993399988,18.42869700700002],[-65.81260562999992,18.41040538200009],[-65.80162581599988,18.415443225000118],[-65.79416880699992,18.42540587200001],[-65.7883472609999,18.42324925700011],[-65.78714832199988,18.418307081000094],[-65.79231770299987,18.412763524000084],[-65.7963071769999,18.40502820600007],[-65.78877710399992,18.406737253000088],[-65.77837209599994,18.410669300000094],[-65.77202714199987,18.41457015000016],[-65.75500242699988,18.39104103700008],[-65.73810716099987,18.382365176000135],[-65.72484854399991,18.39126695800003],[-65.69801478299985,18.37111074500002],[-65.66320028799993,18.366413598000136],[-65.64574133999989,18.378404039000046],[-65.63776607999995,18.385687567000062],[-65.62938391799989,18.391058661000116],[-65.62140865799991,18.389064846000068],[-65.62100175699993,18.38226959800015],[-65.63076738199996,18.332831122000087],[-65.63296464799996,18.291001695000162],[-65.6288142569999,18.279201565],[-65.63292395699995,18.26691315300006],[-65.62580318899992,18.259833075000174],[-65.61759110999989,18.256343797000124],[-65.60370190899991,18.262860527000115],[-65.60658699899997,18.253609946000054],[-65.60377320799995,18.246339934],[-65.5917638869999,18.230884786000118],[-65.60211212299993,18.22375335],[-65.60353254999993,18.215270496000144],[-65.61244261999988,18.214503295000085],[-65.62221824399994,18.22926327600008],[-65.63336336299989,18.22918349400005],[-65.63699476699989,18.218570099000132],[-65.62723464499996,18.205928744000104],[-65.6368305989999,18.198096500000148],[-65.64873477199987,18.200131146],[-65.66551673099991,18.208441473000065],[-65.68297278599987,18.202826239000085],[-65.70128333199995,18.194240627000156],[-65.72101803299998,18.189846096000068],[-65.73753821499986,18.182684637000037],[-65.75487219999994,18.16624583500014],[-65.7902891789999,18.113972511],[-65.79314209199987,18.08763082700007],[-65.80699622299997,18.07029857000005],[-65.81216386599988,18.067287502000127],[-65.83527584499984,18.06248607000005],[-65.84048417899993,18.05634186400009],[-65.83026947699994,18.026906814000185],[-65.84974571799992,18.00971112100008],[-65.88717781499989,17.9877269790001],[-65.9391169909999,17.970526434000035],[-65.96165930899988,17.971014716000028],[-65.9845271479999,17.975653387000065],[-66.00499426999994,17.97752513200011],[-66.01707923099985,17.97508372599999],[-66.04653886599993,17.963853257000082],[-66.0535782539999,17.963120835000055],[-66.08409583199995,17.963853257000082],[-66.1046443349999,17.95892975500011],[-66.16323808499992,17.929144598],[-66.17560787699998,17.928208726000136],[-66.18663489499991,17.928615627000127],[-66.19627844999988,17.92772044500005],[-66.20421301999994,17.92291901200015],[-66.20856686099995,17.929144598],[-66.20982825399994,17.931870835000083],[-66.21043860599991,17.93659088700018],[-66.19957434799991,17.9396019550001],[-66.19701087099992,17.94440338700018],[-66.20116126199986,17.950506903000147],[-66.21043860599991,17.95709870000006],[-66.2298884759999,17.940415757000025],[-66.24136308499996,17.93732330900012],[-66.25552324099988,17.94065989800005],[-66.28307044199991,17.943426825000117],[-66.2925919259999,17.94574616100006],[-66.29771887899992,17.951402085000055],[-66.30138098899997,17.958197333],[-66.30663001199986,17.963853257000082],[-66.31916256399995,17.97036367400007],[-66.32811438699989,17.97231679900004],[-66.34447180899988,17.97134023600013],[-66.36766516799992,17.966009833000083],[-66.39614824099992,17.947251695000105],[-66.41649329299992,17.949611721000068],[-66.43590247299994,17.964016018000123],[-66.45213782499988,17.982163804000137],[-66.46914628799993,17.992661851000108],[-66.48779985999997,17.988853697000152],[-66.5019691209999,17.987115356000018],[-66.5125219389999,17.98200104400017],[-66.52700761599993,17.979315497000083],[-66.55988521999984,17.97752513200011],[-66.57042395699992,17.972357489000032],[-66.58063717399995,17.96580638200011],[-66.59251868399988,17.96356842700014],[-66.60826575399994,17.97134023600013],[-66.61530514199993,17.966742255000113],[-66.62254798099994,17.963853257000082],[-66.62938391799986,17.975165106000148],[-66.64659583199997,17.97662995000003],[-66.68740800699993,17.97134023600013],[-66.69497636599988,17.973089911000145],[-66.72496497299994,17.984361070000134],[-66.76593990799994,17.984361070000134],[-66.76512610599994,17.998032945000162],[-66.77403723899988,18.00218333500011],[-66.78746497299997,17.999335028000147],[-66.80011959499984,17.991848049000012],[-66.80011959499984,17.984361070000134],[-66.7864477199999,17.984361070000134],[-66.79796301999994,17.96930573100012],[-66.81769771999986,17.958970445000105],[-66.84056555899988,17.952704169000143],[-66.86148027299996,17.949611721000068],[-66.89264889199993,17.95066966400013],[-66.9078263009999,17.94920482000016],[-66.91901607999992,17.950140692000147],[-66.92422441299993,17.949611721000068],[-66.92821204299992,17.94554271000011],[-66.92992102799991,17.938625393000038],[-66.93040930899987,17.929144598],[-66.94912675699996,17.93121979400003],[-66.96324622299989,17.941066799000154],[-66.98570716099991,17.963853257000082],[-67.00595940199995,17.964910772000096],[-67.02852830299992,17.968537713000057],[-67.05271296999987,17.968166438000182],[-67.06700598899988,17.972560940000065],[-67.08092200399994,17.961249091000084],[-67.09732011599996,17.95286692900011],[-67.11196855399987,17.949611721000068],[-67.12401282499988,17.951157945000105],[-67.15855980099991,17.954568756000143],[-67.18046724799984,17.966118460000086],[-67.19122136399994,17.95799399600004],[-67.18419235399995,17.935072253000115],[-67.19507325399991,17.935682387000057],[-67.20961020999991,17.956889788000083],[-67.2147711799999,17.966335022000166],[-67.2143491709999,17.994143776000058],[-67.19050045499989,18.004828192],[-67.18333899599986,18.008530992000047],[-67.17422441299996,18.011175848000118],[-67.16649329299986,18.01504140800013],[-67.1631973949999,18.022528387000094],[-67.16722571499989,18.027899481000148],[-67.17686926999994,18.032700914000046],[-67.19007559899993,18.03031432600004],[-67.20287512399989,18.035716432000143],[-67.20213404699987,18.054357831000132],[-67.19540025899994,18.063768118],[-67.1856925989999,18.070427421000044],[-67.18974067499991,18.0806096460001],[-67.19387679699994,18.097302159000133],[-67.18324455999996,18.107688841000126],[-67.18377828499986,18.139945037000032],[-67.17369544199988,18.176174221000124],[-67.16590894699993,18.184074226000078],[-67.15753586199992,18.19173440900009],[-67.15185783099984,18.203392396000126],[-67.15846512199997,18.213957881000066],[-67.17119829599997,18.22487028200014],[-67.1870824859999,18.27277252800009],[-67.19651152899988,18.291338513000042],[-67.21882878499989,18.295573695000186],[-67.23690628299994,18.29986180800016],[-67.25277423399987,18.3293370170001],[-67.26260070999987,18.343812572],[-67.27084218099992,18.36182645400011],[-67.26882485699991,18.36889997800007],[-67.24026734399988,18.376812365000163],[-67.21735592399989,18.38617584800015],[-67.19839433499988,18.393703518],[-67.18431555899994,18.402085679000052],[-67.15945110799993,18.420910746000157],[-67.15811799899984,18.44311083200016],[-67.16869874199992,18.46060467600013],[-67.17000663599995,18.486019825000042],[-67.1516820949999,18.508937893000123],[-67.10171464799996,18.522772528000033],[-67.04845130099997,18.521144924000012],[-67.01235917899993,18.505764065000065]]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Serranilla Bank","sov_a3":"SER","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Serranilla Bank","adm0_a3":"SER","geou_dif":0,"geounit":"Serranilla Bank","gu_a3":"SER","su_dif":0,"subunit":"Serranilla Bank","su_a3":"SER","brk_diff":1,"name":"Serranilla Bank","name_long":"Serranilla Bank","brk_a3":"B42","brk_name":"Serranilla Bank","brk_group":null,"abbrev":"S.B.","postal":"SB","formal_en":null,"formal_fr":null,"note_adm0":"Disputed","note_brk":"Claimed by Columbia, Honduras, Nicaragua, and the United States","name_sort":"Serranilla Bank","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":6,"mapcolor13":-99,"pop_est":-99,"gdp_md_est":-99,"pop_year":0,"lastcensus":-99,"gdp_year":0,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":0,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"woe_id_eh":-99,"woe_note":"No WOE equivalent.","adm0_a3_is":"-99","adm0_a3_us":"B42","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":15,"long_len":15,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"serranillabank.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-78.63707434799987,15.862087307000108],[-78.64041093699993,15.863999742000088],[-78.63687089799993,15.867295640000124],[-78.63707434799987,15.862087307000108]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"El Salvador","sov_a3":"SLV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"El Salvador","adm0_a3":"SLV","geou_dif":0,"geounit":"El Salvador","gu_a3":"SLV","su_dif":0,"subunit":"El Salvador","su_a3":"SLV","brk_diff":0,"name":"El Salvador","name_long":"El Salvador","brk_a3":"SLV","brk_name":"El Salvador","brk_group":null,"abbrev":"El. S.","postal":"SV","formal_en":"Republic of El Salvador","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"El Salvador","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":6,"mapcolor13":8,"pop_est":7185218,"gdp_md_est":43630,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"ES","iso_a2":"SV","iso_a3":"SLV","iso_n3":"222","un_a3":"222","wb_a2":"SV","wb_a3":"SLV","woe_id":23424807,"woe_id_eh":23424807,"woe_note":"Exact WOE match as country","adm0_a3_is":"SLV","adm0_a3_us":"SLV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"SLV.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69699627599994,13.178063536000153],[-87.69319351199991,13.16786244000015],[-87.70167341099994,13.163412359000105],[-87.71458480599995,13.167903057000132],[-87.7231109109999,13.164077582000159],[-87.72302839899993,13.174895253000116],[-87.72835187999996,13.185678928000101],[-87.72629342699989,13.198387437000093],[-87.72718743999988,13.211114757000132],[-87.71991332599993,13.216190972000119],[-87.70608658799998,13.21172623600009],[-87.69756497099993,13.193313885000137],[-87.69699627599994,13.178063536000153]]],[[[-87.75726736899995,13.220651650000065],[-87.76380481799995,13.21428711200015],[-87.77689019699994,13.225736371000139],[-87.78016881999989,13.241643430000096],[-87.77428618599987,13.247372301000084],[-87.76578205499996,13.248011011000173],[-87.75793319699997,13.243557905000145],[-87.75138678799993,13.228924729000155],[-87.75726736899995,13.220651650000065]]],[[[-89.39818192599995,14.44537262000014],[-89.39686417699996,14.426045635000108],[-89.39169653399998,14.433719585000176],[-89.39061132899987,14.43599334800011],[-89.36162085,14.415477804000131],[-89.34620628999991,14.413075726000157],[-89.30756730199991,14.40705454600014],[-89.27653560499999,14.39274017300015],[-89.22553096599992,14.38214650500008],[-89.20015783699992,14.36467987000013],[-89.15398494499999,14.351295675000186],[-89.1445023199999,14.359718933000167],[-89.13011043299991,14.386745707000115],[-89.12217810099995,14.394678040000173],[-89.11334143099995,14.39705515600012],[-89.10747615599996,14.395969951000124],[-89.10256689499991,14.391525777000126],[-89.09683081099988,14.384006856000084],[-89.09184403599991,14.374834290000178],[-89.0896736249999,14.364886577000092],[-89.09055212399994,14.354706320000119],[-89.09447953299991,14.34486195900014],[-89.08308487999992,14.335327657000148],[-89.04897843499995,14.331451925000096],[-89.0329845789999,14.323674622000084],[-89.02660253999997,14.311298117000204],[-89.0226234539999,14.280653992000095],[-89.01812760499988,14.271688131000161],[-88.99275447599987,14.252955424000163],[-88.98353023299987,14.242129211000131],[-88.97456437199995,14.227375590000122],[-88.9707919919999,14.214844056000116],[-88.97022847599993,14.210176262000175],[-88.96924169999998,14.202002462000124],[-88.965986084,14.191382955000137],[-88.95717525299992,14.185181783000145],[-88.94748592199996,14.187274679000126],[-88.93562618099995,14.194018453000153],[-88.92164770499996,14.199883728000145],[-88.90601558499992,14.199573670000163],[-88.8812625729999,14.18419993100018],[-88.8603336189999,14.15851674400011],[-88.84532161499992,14.128621928000186],[-88.83875870799994,14.100406596000125],[-88.82118872099997,14.102938741000116],[-88.77734126899993,14.09973480200014],[-88.76542985099991,14.104256490000166],[-88.7551204019999,14.110457662000142],[-88.74638708599994,14.1113361620001],[-88.73922989999998,14.099941508000184],[-88.74005672299992,14.083017477000098],[-88.74607702699987,14.066558533000117],[-88.74664546699992,14.052476705000103],[-88.73096166999994,14.042477316000173],[-88.70951595099993,14.039686788000125],[-88.70486507199988,14.038033142000174],[-88.6976562099999,14.03201283800014],[-88.69269527299994,14.025294902000113],[-88.69044734699995,14.016949157000141],[-88.690811758,14.011789871000119],[-88.69093827299989,14.009998678000159],[-88.68481461599991,14.012298279000092],[-88.65933813599989,14.016122335000205],[-88.63386165399996,14.014468689000166],[-88.55810400399987,13.990904236000162],[-88.5140498459999,13.987648621000174],[-88.50436051499989,13.983695374000206],[-88.49542049199992,13.975142924000181],[-88.49619563899995,13.971990662000124],[-88.49650569699993,13.969561870000163],[-88.49708534899995,13.969068092000072],[-88.49790096099991,13.968373311000148],[-88.49818257699997,13.968409755000138],[-88.5022934579999,13.968941752000191],[-88.50119810599998,13.9666004380001],[-88.49609228599994,13.955686747000186],[-88.49681575499994,13.944033712000133],[-88.50022639999993,13.931863912000125],[-88.5022934579999,13.917110291000112],[-88.49950293099997,13.907601827000134],[-88.4886767169999,13.881350200000098],[-88.48800492399994,13.865330506000149],[-88.49681575499994,13.851197002000106],[-88.47015071599988,13.852488912000155],[-88.45144384799991,13.863573507000169],[-88.43322790599987,13.871066590000112],[-88.3929461269999,13.879774068000174],[-88.38336014899991,13.879257304000134],[-88.36741796899987,13.87310780900016],[-88.3601057539999,13.872384338000158],[-88.35891719599996,13.875278219000151],[-88.35891719599996,13.881195170000153],[-88.35819372599988,13.887396343000148],[-88.35506730199991,13.890962016000117],[-88.34855607199995,13.891375427000128],[-88.34057206299988,13.89003184000016],[-88.33261389199993,13.88770640100013],[-88.32620601499988,13.885070903000111],[-88.3192555339999,13.897602437000117],[-88.30842932199994,13.901478170000159],[-88.29631119799987,13.902356669000199],[-88.2854333089999,13.905974019000098],[-88.27752681499996,13.913337911000099],[-88.27417077299992,13.919119724000112],[-88.27016292299996,13.926024475000133],[-88.26360001599997,13.933104146000161],[-88.2516369219999,13.938090922000114],[-88.2427744149999,13.936695658000133],[-88.23636653699995,13.93814259900013],[-88.23158646699996,13.951811015000146],[-88.23336930399995,13.95449819000008],[-88.24230932699999,13.962533875000162],[-88.24437638399993,13.96609954800013],[-88.24535823599989,13.98589162200011],[-88.24489314799987,13.989250591000115],[-88.23507462599991,13.9928679410001],[-88.22006262299993,13.991317647000173],[-88.2176588129999,13.99079670500015],[-88.19347509799991,13.985555725000111],[-88.17753291899999,13.985193990000113],[-88.12539139799992,13.991265971000159],[-88.09903641799993,13.989819031000167],[-88.08753841199993,13.980543112000149],[-88.07288814399993,13.943413595000067],[-88.0583929039999,13.926489563000159],[-88.039970256,13.910133972000125],[-88.02364050299988,13.89116872200016],[-88.01532059799989,13.866364035000132],[-87.96974198499991,13.888533223000152],[-87.95478165699987,13.892460633000127],[-87.95259489399992,13.892029035000121],[-87.9469268399999,13.890910339000186],[-87.9321732179999,13.881556905000153],[-87.92532609099996,13.879619039000133],[-87.9207527259999,13.881866963000135],[-87.90788529499991,13.891530457000156],[-87.9001079919999,13.894140117000175],[-87.89010860299999,13.893545837000204],[-87.87054907299998,13.889566752000135],[-87.86091141799994,13.890186870000106],[-87.85122208799993,13.896878968000124],[-87.84295385799996,13.90711090100011],[-87.83290279199994,13.915249939000205],[-87.81789078799997,13.915870057000177],[-87.8084598399999,13.908635356000119],[-87.79871883199996,13.88233205100016],[-87.79060563199992,13.870472310000139],[-87.78541215099995,13.867397562000107],[-87.77143367499994,13.862126567000175],[-87.76533585599988,13.858870952000188],[-87.74952872299993,13.845627388000153],[-87.7212041839999,13.821896464000147],[-87.70360835799991,13.814997661000161],[-87.71262589599988,13.800450745000205],[-87.73280554199994,13.755104676000187],[-87.73784399399992,13.738774923000163],[-87.73135860299996,13.722212627000161],[-87.73629370099991,13.711463929000146],[-87.74631892999992,13.702188009000125],[-87.75502640799995,13.689914857000176],[-87.75864375799995,13.672267355000187],[-87.75781693599993,13.635163676000118],[-87.76009069899996,13.616947734000163],[-87.78406856399997,13.560465394000119],[-87.78993383899987,13.532818502000111],[-87.7794693609999,13.509977519000188],[-87.76915991199994,13.506360168000114],[-87.74797257499995,13.513233135000178],[-87.7334256599999,13.507703756000167],[-87.72572587199991,13.498970439000104],[-87.72058406599993,13.486981507000152],[-87.71880122899995,13.47367482500013],[-87.72115250699996,13.460833232000141],[-87.73841243499996,13.441687113000143],[-87.81715873492499,13.406557936205274],[-87.8171687489999,13.406561591000141],[-87.81786048099994,13.406805731000176],[-87.82571367099992,13.41128164300015],[-87.83067786399997,13.419501044000143],[-87.8382869129999,13.440944729000178],[-87.86644446499989,13.393337307000108],[-87.87376868399991,13.365261135000095],[-87.85537675699996,13.352809963000169],[-87.84361731699988,13.348456122000087],[-87.81041419199997,13.317409572000173],[-87.79153398299994,13.30495840100015],[-87.78990637899992,13.299099026000107],[-87.78990637899992,13.287014065000108],[-87.79808508999992,13.265651760000154],[-87.81798255099991,13.250392971000082],[-87.89232337099992,13.21389394700013],[-87.91246497299994,13.198187567000074],[-87.91600501199991,13.182196356000162],[-87.89293372299997,13.166571356000176],[-87.92821204299992,13.158636786000116],[-88.06602942599991,13.16787344000008],[-88.0983780589999,13.174017645000148],[-88.10521399599995,13.174017645000148],[-88.12193762899997,13.167547919000157],[-88.20828202999986,13.160427151000107],[-88.30089270699993,13.17422109600011],[-88.32494055899988,13.166571356000176],[-88.33775794199991,13.17084381700009],[-88.35228430899986,13.174017645000148],[-88.35228430899986,13.18024323100012],[-88.32970130099989,13.181708075000174],[-88.32811438699986,13.19708893400012],[-88.34019934799994,13.216131903000116],[-88.35842851499984,13.228664455000114],[-88.35448157499985,13.220892645000106],[-88.3425593739999,13.204657294000157],[-88.33792070199988,13.194525458000115],[-88.37405351499993,13.195705471000139],[-88.39175370999993,13.193915106000148],[-88.40684973899992,13.187689520000092],[-88.39720618399988,13.183620510000138],[-88.38939368399988,13.18475983300007],[-88.37999426999994,13.18740469000015],[-88.36587480399993,13.187689520000092],[-88.36587480399993,13.18024323100012],[-88.38914954299992,13.17084381700009],[-88.4148249989999,13.171576239000117],[-88.43484452999985,13.183661200000131],[-88.44102942599991,13.208197333000143],[-88.4311824209999,13.203884182000138],[-88.42735755099989,13.201361395000133],[-88.41368567599994,13.215033270000076],[-88.41368567599994,13.221218166000128],[-88.43077551999991,13.228786526000178],[-88.44957434799994,13.254584052000112],[-88.46214758999994,13.26223379100014],[-88.45877031199993,13.247748114000101],[-88.45311438699991,13.235907294000128],[-88.45018469999991,13.225368557000166],[-88.45470130099994,13.215033270000076],[-88.46922766799989,13.223089911000102],[-88.51150468699993,13.233465887000108],[-88.52977454299989,13.24294668200011],[-88.54629472599996,13.271755276000135],[-88.55398515499988,13.27643463700015],[-88.56570390499988,13.27737051000014],[-88.59866288999983,13.283880927000125],[-88.61339270699995,13.283880927000125],[-88.65392005099994,13.27643463700015],[-88.71043860599988,13.2749697940001],[-88.7227677069999,13.269598700000131],[-88.71605383999989,13.264349677000054],[-88.70872962099989,13.260524807000138],[-88.70140540299988,13.259344794000114],[-88.69485429599987,13.26223379100014],[-88.66661536399991,13.255764065000136],[-88.5863337879999,13.264227606000174],[-88.57738196499989,13.262844143000109],[-88.56448320199985,13.256008205000084],[-88.55748450399997,13.249579169000171],[-88.54503333199995,13.234767971000096],[-88.53661048099991,13.228664455000114],[-88.53661048099991,13.221218166000128],[-88.55532792899987,13.224310614000116],[-88.56895911399991,13.226833401000135],[-88.59866288999983,13.235500393000123],[-88.59866288999983,13.228664455000114],[-88.51671301999991,13.212225653000118],[-88.4739070299999,13.198635158000158],[-88.45470130099994,13.18024323100012],[-88.46169999899985,13.168280341000084],[-88.4796036449999,13.171210028000102],[-88.49954179599987,13.181423244000143],[-88.51268469999994,13.191107489000101],[-88.52745520699992,13.198431708000115],[-88.78567460799988,13.24526601800008],[-88.81663977799991,13.259304104000122],[-89.06480872299997,13.372015692000133],[-89.1835017569999,13.443060614000103],[-89.25145423099988,13.472316799000126],[-89.3248591789999,13.489325262000179],[-89.35899817599989,13.489325262000179],[-89.38499915299988,13.4953067080001],[-89.5270667249999,13.494173340000117],[-89.58779009899985,13.508942124000143],[-89.61635256699994,13.514382675000164],[-89.67976587499996,13.534732428000098],[-89.71312760599994,13.527996506000108],[-89.8080482309999,13.526857633000104],[-89.82329652899989,13.537140191000105],[-89.83337667399994,13.573887876000114],[-89.8371475899999,13.596828518000109],[-89.84966205199993,13.606876111000119],[-89.87026259399994,13.61927577300014],[-89.95131827399987,13.664110063000079],[-90.02117074699993,13.695175041000113],[-90.09298172804961,13.728903047894434],[-90.11431392499992,13.796264954000094],[-90.11477901199993,13.812000428000161],[-90.11229854299987,13.828252666000166],[-90.10697587099992,13.844065654000161],[-90.09904353899994,13.858509216000186],[-90.08708044399991,13.870472310000139],[-90.05964025899996,13.884709167000109],[-90.04736710699993,13.894295146000118],[-90.0380911869999,13.908376974000147],[-90.0314766029999,13.922923889000103],[-90.02297583099991,13.936954041000206],[-90.00817053299997,13.949692281000166],[-89.91207820699995,14.01519215900008],[-89.8907875169999,14.035888570000097],[-89.88011633299999,14.042684021000142],[-89.83585546899995,14.059091289000092],[-89.82110184699994,14.06007314100016],[-89.80296341999991,14.055473938000205],[-89.77694433599996,14.035785218000157],[-89.76226822999988,14.029997457000178],[-89.74764379899997,14.03764556900016],[-89.74725622599998,14.043200785000165],[-89.7480100679999,14.044894904000103],[-89.75446508799993,14.059401347000176],[-89.7554469399999,14.067075297000157],[-89.75260473699993,14.075240174000086],[-89.70986832699992,14.148724060000147],[-89.68984371,14.170014750000133],[-89.66462561099992,14.188850810000147],[-89.6383223069999,14.20055552200013],[-89.5309386799999,14.22556691500013],[-89.52450496499995,14.231768087000205],[-89.5246599939999,14.247374369000156],[-89.52786393199996,14.251456808000157],[-89.5405504969999,14.25760630300013],[-89.54491715599991,14.261817932000085],[-89.54677750699992,14.268329163000146],[-89.548586182,14.283599549000186],[-89.54987809299996,14.288276265000079],[-89.55569169099994,14.299024963000178],[-89.5585855719999,14.302823182000123],[-89.56437333199997,14.308145853000156],[-89.57127213599998,14.311143087000175],[-89.59217525299994,14.313830261000106],[-89.59835058699991,14.32798960400015],[-89.5924336349999,14.336387024000132],[-89.58240840699997,14.343363343000133],[-89.57607804399996,14.353130189000183],[-89.57897192399994,14.364783223000146],[-89.58628413999995,14.37467926100014],[-89.5905732839999,14.385970561000107],[-89.58406205299994,14.401809387000114],[-89.5698768719999,14.412015483000175],[-89.555174927,14.410826925000066],[-89.5442453619999,14.400052388000134],[-89.54135148099994,14.381526387000106],[-89.52776057999995,14.391060689000184],[-89.50303340699992,14.42005116800007],[-89.49614812999991,14.422897484000131],[-89.48528255199992,14.427389222000158],[-89.4694178869999,14.42537384000012],[-89.45812658699992,14.419586080000142],[-89.44683528699994,14.415529481000133],[-89.43109981299997,14.4187075800001],[-89.408362183,14.441522726000102],[-89.39818192599995,14.44537262000014]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Saint Pierre and Miquelon","adm0_a3":"SPM","geou_dif":0,"geounit":"Saint Pierre and Miquelon","gu_a3":"SPM","su_dif":0,"subunit":"Saint Pierre and Miquelon","su_a3":"SPM","brk_diff":0,"name":"St. Pierre and Miquelon","name_long":"Saint Pierre and Miquelon","brk_a3":"SPM","brk_name":"St. Pierre and Miquelon","brk_group":null,"abbrev":"St. P.M.","postal":"PM","formal_en":"Saint Pierre and Miquelon","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"St. Pierre and Miquelon","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":7051,"gdp_md_est":48.3,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"SB","iso_a2":"PM","iso_a3":"SPM","iso_n3":"666","un_a3":"666","wb_a2":"-99","wb_a3":"-99","woe_id":23424939,"woe_id_eh":23424939,"woe_note":"Exact WOE match as country","adm0_a3_is":"SPM","adm0_a3_us":"SPM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":23,"long_len":25,"abbrev_len":8,"tiny":3,"homepart":-99,"filename":"SPM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-56.168080206999946,46.757269598],[-56.19579016799994,46.75275299700006],[-56.22191321499989,46.754624742000104],[-56.240305141999926,46.765692450000145],[-56.2189021479999,46.788275458000115],[-56.20750891799992,46.79783763200011],[-56.19188391799994,46.80662669499999],[-56.18024654899994,46.809556382],[-56.161366339999915,46.81159088700004],[-56.14753170499992,46.80784739799999],[-56.15094967399992,46.79364655200008],[-56.15648352799994,46.78925202],[-56.16079667899993,46.784369208000115],[-56.16380774599995,46.778876044000086],[-56.16519120999993,46.77252838700015],[-56.150217251999884,46.76691315300015],[-56.14476477799985,46.765692450000145],[-56.168080206999946,46.757269598]]],[[[-56.273793097999885,46.99909088700004],[-56.28034420499998,46.989691473],[-56.29185950399991,46.985419012000094],[-56.297596808999884,46.987534898000106],[-56.300282355999855,46.99225495000012],[-56.30199133999986,46.99697500200004],[-56.30516516799991,46.99909088700004],[-56.312163865999906,46.99835846600011],[-56.32970130099994,46.99225495000012],[-56.34357662699994,46.99591705900015],[-56.35020911399991,46.99461497600008],[-56.35016842399992,46.985419012000094],[-56.345773891999926,46.979925848000065],[-56.33971106699994,46.97907135600015],[-56.33385169199988,46.97955963700015],[-56.32591712099992,46.976467190000065],[-56.32005774599989,46.97638580900009],[-56.31371008999986,46.97565338700014],[-56.30858313699994,46.97174713700014],[-56.306752081999946,46.96499258000004],[-56.309681769999884,46.96015045800014],[-56.3138728509999,46.956691799000126],[-56.31602942599991,46.95380280200011],[-56.31602942599991,46.91278717700003],[-56.311756964999915,46.90013255400014],[-56.30117753799993,46.89630768400012],[-56.273793097999885,46.89545319200012],[-56.23550370999993,46.87201569200015],[-56.24925696499986,46.84227122600011],[-56.28929602799991,46.81378815300012],[-56.34626217399992,46.78359609600001],[-56.358509894999884,46.78074778900016],[-56.37067623599995,46.786200262000094],[-56.37791907499988,46.79901764500012],[-56.375070766999954,46.80695221600008],[-56.375111456999946,46.81395091400016],[-56.391102667999945,46.824042059000035],[-56.39635169199991,46.836371161],[-56.37987219999994,46.85150788],[-56.34276282499994,46.87555573100003],[-56.32827714799987,46.91494375200001],[-56.336781378999916,46.954250393],[-56.38499915299985,47.03563060099999],[-56.38817298099991,47.05182526200004],[-56.391102667999945,47.087836005],[-56.396595831999974,47.10398997600005],[-56.39590410099993,47.11359284100003],[-56.3876847,47.12539297100001],[-56.37743079299991,47.134263414000046],[-56.36628170499998,47.14020416900017],[-56.354644334999875,47.14126211100013],[-56.34276282499994,47.13564687700012],[-56.361317511999935,47.125962632000075],[-56.37169348899994,47.11615631700015],[-56.371164516999954,47.105902411000116],[-56.35700436099992,47.09467194200003],[-56.34032141799989,47.089056708000115],[-56.30479895699992,47.083156643000066],[-56.25332597599992,47.053697007],[-56.25169837099988,47.043890692000055],[-56.25230872299994,47.03021881700012],[-56.2560115229999,47.01801178600006],[-56.26935787699992,47.008449611000074],[-56.273793097999885,46.99909088700004]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Sint Maarten","adm0_a3":"SXM","geou_dif":0,"geounit":"Sint Maarten","gu_a3":"SXM","su_dif":0,"subunit":"Sint Maarten","su_a3":"SXM","brk_diff":0,"name":"Sint Maarten","name_long":"Sint Maarten","brk_a3":"SXM","brk_name":"Sint Maarten","brk_group":null,"abbrev":"St. M.","postal":"SX","formal_en":"Sint Maarten (Dutch part)","formal_fr":null,"note_adm0":"Neth.","note_brk":null,"name_sort":"St. Maarten (Dutch part)","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":37429,"gdp_md_est":400,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"NT","iso_a2":"SX","iso_a3":"SXM","iso_n3":"534","un_a3":"534","wb_a2":"SX","wb_a3":"SXM","woe_id":-90,"woe_id_eh":23425000,"woe_note":"Expired subunits of Netherlands Antilles (23424914).","adm0_a3_is":"SXM","adm0_a3_us":"SXM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":12,"long_len":12,"abbrev_len":6,"tiny":4,"homepart":-99,"filename":"SXM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-63.0175685850526,18.033391472135662],[-63.03062903599991,18.019110419000043],[-63.09764563699988,18.035956122000044],[-63.11217200399992,18.043036200000103],[-63.11888587099988,18.051499742000146],[-63.107004360999916,18.059475002000084],[-63.107004360999916,18.0621092720001],[-63.0858861909999,18.058511251000112],[-63.0175685850526,18.033391472135662]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Turks and Caicos Islands","adm0_a3":"TCA","geou_dif":0,"geounit":"Turks and Caicos Islands","gu_a3":"TCA","su_dif":0,"subunit":"Turks and Caicos Islands","su_a3":"TCA","brk_diff":0,"name":"Turks and Caicos Is.","name_long":"Turks and Caicos Islands","brk_a3":"TCA","brk_name":"Turks and Caicos Is.","brk_group":null,"abbrev":"T.C. Is.","postal":"TC","formal_en":"Turks and Caicos Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"Turks and Caicos Islands","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":22942,"gdp_md_est":216,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"TK","iso_a2":"TC","iso_a3":"TCA","iso_n3":"796","un_a3":"796","wb_a2":"TC","wb_a3":"TCA","woe_id":23424962,"woe_id_eh":23424962,"woe_note":"Exact WOE match as country","adm0_a3_is":"TCA","adm0_a3_us":"TCA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":20,"long_len":24,"abbrev_len":8,"tiny":-99,"homepart":-99,"filename":"TCA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.67861894399994,21.298895575000174],[-71.69587154899995,21.290106512000094],[-71.69908606699991,21.29193756700009],[-71.68781490799992,21.299790757000054],[-71.68032792899996,21.304429429],[-71.6740616529999,21.306545315],[-71.67861894399994,21.298895575000174]]],[[[-71.6282445949999,21.310248114000142],[-71.6346736319999,21.294501044000086],[-71.64085852799988,21.30296458500011],[-71.63434811099998,21.31879303600006],[-71.62881425699987,21.32436758000007],[-71.6282445949999,21.310248114000142]]],[[[-71.20124264199991,21.323065497000172],[-71.21369381399992,21.310614325000145],[-71.21922766799986,21.314357815],[-71.2142634759999,21.33283112200003],[-71.20982825399993,21.341376044000057],[-71.20006262899989,21.341050523000106],[-71.19249426999994,21.335028387000094],[-71.20124264199991,21.323065497000172]]],[[[-71.13361568899995,21.446478583000115],[-71.14488684799997,21.43162669500005],[-71.1516820949999,21.450588283000073],[-71.15099036399994,21.472845770000035],[-71.14549719999991,21.495062567000062],[-71.13809160099993,21.513617255000085],[-71.13036048099991,21.49811432500014],[-71.12889563699986,21.472235419000143],[-71.13361568899995,21.446478583000115]]],[[[-71.49718176999994,21.53025950700011],[-71.49632727799994,21.50739166900003],[-71.50426184799989,21.494045315],[-71.5209854809999,21.489325262000094],[-71.53758704299989,21.499457098000065],[-71.5397029289999,21.516546942],[-71.52782141799995,21.524318752000013],[-71.51573645699995,21.52269114799999],[-71.5089412099999,21.52781810099999],[-71.50877844999985,21.551662502000067],[-71.5015763009999,21.569077867000047],[-71.49828040299988,21.56940338700015],[-71.49624589799996,21.563421942000062],[-71.49718176999994,21.53025950700011]]],[[[-72.45201575399994,21.644964911000084],[-72.48131262899997,21.630316473000065],[-72.48131262899997,21.636542059000035],[-72.47020423099985,21.646877346000124],[-72.46336829299993,21.664943752000156],[-72.46043860599991,21.68602122599999],[-72.46076412699993,21.705389716000084],[-72.43342037699995,21.70921458500011],[-72.4332576159999,21.680121161000145],[-72.45201575399994,21.644964911000084]]],[[[-71.45958411399994,21.664455471000068],[-71.47126217399992,21.66217682500009],[-71.48534094999988,21.675441799000126],[-71.50796464799993,21.705389716000084],[-71.52892005099987,21.717433986000017],[-71.57323157499994,21.73529694200009],[-71.5905655589999,21.75381094],[-71.58592688699989,21.756822007],[-71.58177649599986,21.758368231000034],[-71.57848059799991,21.760931708000143],[-71.57628333199992,21.76683177299999],[-71.54308020699992,21.746527411000088],[-71.52554277299987,21.73981354400003],[-71.50112870999992,21.73334381700012],[-71.48094641799989,21.725490627000127],[-71.46178137899992,21.710842190000122],[-71.45189368399991,21.6901716170001],[-71.45958411399994,21.664455471000068]]],[[[-71.80939693899998,21.83999258000013],[-71.79991614499997,21.839911200000145],[-71.79076087099989,21.842230536000116],[-71.78172766799989,21.843166408000016],[-71.72032630099989,21.835760809000032],[-71.69176184799991,21.841213283000073],[-71.67878170499992,21.841864325000117],[-71.66563880099994,21.835760809000032],[-71.65518144399995,21.82322825700011],[-71.63093014199988,21.774318752000124],[-71.64806067599991,21.779608466000028],[-71.65904700399997,21.79352448100009],[-71.66808020699997,21.809759833000143],[-71.67931067599989,21.822088934000092],[-71.67121334499987,21.799750067000062],[-71.6524145169999,21.764960028000118],[-71.6451716789999,21.746405341000113],[-71.65859941299988,21.743882554],[-71.66852779899997,21.750433661000088],[-71.6861466139999,21.774318752000124],[-71.69200598899994,21.76406484600004],[-71.69359290299988,21.759995835000055],[-71.69981848899994,21.759995835000055],[-71.71544348899991,21.78729889500015],[-71.74111894399988,21.794907945000162],[-71.80284583199989,21.787909247000083],[-71.82770748599995,21.785793361000103],[-71.83551998599992,21.79148997600008],[-71.84439042899987,21.807806708],[-71.84801184799994,21.819403387000122],[-71.85065670499992,21.856268622000083],[-71.84235592399995,21.85561758000013],[-71.83381100199992,21.85382721600014],[-71.82583574099988,21.850775458000058],[-71.80939693899998,21.83999258000013]]],[[[-72.11628170499995,21.853745835000055],[-72.12437903599988,21.846869208000058],[-72.13304602799988,21.847642320000162],[-72.12490800699996,21.854641018000066],[-72.11949622299991,21.857896226000108],[-72.11628170499995,21.853745835000055]]],[[[-72.30793209499988,21.852240302000112],[-72.24502519399995,21.79791901200018],[-72.23176021999984,21.793361721000124],[-72.21214758999989,21.793443101000104],[-72.19269771999987,21.796576239],[-72.1795955069999,21.80097077000009],[-72.1652725899999,21.8138695330001],[-72.15713456899991,21.824530341000028],[-72.1463110019999,21.827134507000107],[-72.12437903599988,21.815252997000172],[-72.12437903599988,21.807806708],[-72.15103105399993,21.78384023600013],[-72.15908769399994,21.774318752000124],[-72.16429602799985,21.788804429],[-72.1652725899999,21.794826565],[-72.19326738199993,21.781154690000065],[-72.1895238919999,21.77993398600013],[-72.18610592399989,21.779242255000028],[-72.18285071499986,21.777818101000136],[-72.1795955069999,21.774318752000124],[-72.19444739499997,21.766913153000147],[-72.21971594999991,21.770331122000172],[-72.23424231699997,21.76683177299999],[-72.23424231699997,21.781154690000065],[-72.27383378799989,21.751410223000146],[-72.29185950399992,21.748928127000042],[-72.30308997299991,21.774318752000124],[-72.29694576699987,21.774318752000124],[-72.2906794909999,21.765814520000035],[-72.28123938699989,21.761542059000092],[-72.2742406889999,21.763617255000113],[-72.27513587099989,21.774318752000124],[-72.28123938699989,21.779608466000028],[-72.31615149599992,21.794826565],[-72.31289628799996,21.781154690000065],[-72.31541907499988,21.770819403000147],[-72.32363847599986,21.76382070500007],[-72.33722896999993,21.759995835000055],[-72.3395076159999,21.76666901200012],[-72.3399958979999,21.771226304000052],[-72.33918209499987,21.77545807500009],[-72.33722896999993,21.781154690000065],[-72.33556067599991,21.77684153900016],[-72.33519446499989,21.776190497000115],[-72.33409583199995,21.776190497000115],[-72.3304337229999,21.774318752000124],[-72.32652747299991,21.787420966000028],[-72.31395423099991,21.809068101000108],[-72.30992591099994,21.822088934000092],[-72.33141028599995,21.806586005000085],[-72.33722896999993,21.80097077000009],[-72.34019934799994,21.814032294000143],[-72.32974199099995,21.845404364],[-72.3304337229999,21.86245351800015],[-72.30793209499988,21.852240302000112]]],[[[-72.09300696499994,21.86717357000005],[-72.0996801419999,21.864569403000143],[-72.10155188699989,21.871649481000034],[-72.09479732999992,21.882513739],[-72.08950761599996,21.885443427000112],[-72.08702551999994,21.88092682500017],[-72.08706620999993,21.87274811400006],[-72.09300696499994,21.86717357000005]]],[[[-71.91104081899996,21.948431708000058],[-71.90876217399997,21.940497137000094],[-71.91209876199991,21.925116278000147],[-71.90339107999992,21.866522528000115],[-71.88857988199996,21.846177476000108],[-71.85741126199989,21.843166408000016],[-71.87730872299997,21.82831452000015],[-71.89464270699993,21.832180080000157],[-71.90965735599988,21.843166408000016],[-71.92267818899995,21.84935130399999],[-71.93106035099993,21.851874091000084],[-71.94298255099997,21.858140367000047],[-71.95425370999996,21.866929429000106],[-71.9605199859999,21.876695054000052],[-71.95921790299991,21.889797268000123],[-71.94383704299986,21.913153387000122],[-71.94001217399995,21.925116278000147],[-71.9475805329999,21.942450262000037],[-71.9640193349999,21.933417059000035],[-71.98786373599998,21.907782294000143],[-71.99193274599995,21.899888414000188],[-72.0016169909999,21.897772528000175],[-72.01301021999987,21.899888414000188],[-72.02196204299987,21.904608466000084],[-72.0261124339999,21.914007880000113],[-72.02448482999989,21.923773505000057],[-72.02501380099997,21.93256256700012],[-72.03624426999988,21.93878815300009],[-72.03180904899992,21.946478583],[-72.02546139199987,21.952582098],[-72.01744544199994,21.95693594000009],[-72.00829016799995,21.959214585000055],[-71.94994055899986,21.959214585000055],[-71.94399980399992,21.958075262000122],[-71.93049068899995,21.952948309000092],[-71.92267818899995,21.951808986000074],[-71.91104081899996,21.948431708000058]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"United States Minor Outlying Islands","adm0_a3":"UMI","geou_dif":0,"geounit":"United States Minor Outlying Islands","gu_a3":"UMI","su_dif":0,"subunit":"United States Minor Outlying Islands","su_a3":"UMI","brk_diff":0,"name":"U.S. Minor Outlying Is.","name_long":"United States Minor Outlying Islands","brk_a3":"UMI","brk_name":"U.S. Minor Outlying Is.","brk_group":null,"abbrev":"U.S. MOI","postal":"UM","formal_en":null,"formal_fr":null,"note_adm0":"U.S.A.","note_brk":null,"name_sort":"United States Minor Outlying Islands","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":-99,"gdp_md_est":-99,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"-99","iso_a2":"UM","iso_a3":"UMI","iso_n3":"581","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":28289407,"woe_id_eh":28289407,"woe_note":"Exact WOE match as country","adm0_a3_is":"UMI","adm0_a3_us":"UMI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Seven seas (open ocean)","subregion":"Seven seas (open ocean)","region_wb":"East Asia & Pacific","name_len":23,"long_len":36,"abbrev_len":8,"tiny":-99,"homepart":-99,"filename":"UMI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-160.0124405589999,-0.382094007999925],[-160.02476966099994,-0.388767184999892],[-160.02997799399992,-0.376153252999913],[-160.02993730399987,-0.376153252999913],[-160.0089005199999,-0.372491143999866],[-160.0124405589999,-0.382094007999925]]],[[[-176.4752904939999,0.193101304000052],[-176.47931881399995,0.190334377000099],[-176.4812719389999,0.191473700000131],[-176.4828995429999,0.194322007000068],[-176.48582923099985,0.196519273000149],[-176.48212643099993,0.196682033000116],[-176.4791153639999,0.197902736000131],[-176.47687740799992,0.197455145000134],[-176.4752904939999,0.193101304000052]]],[[[-176.45954342399995,0.225897528000161],[-176.45917721299992,0.219224351000193],[-176.4639379549999,0.221869208000101],[-176.45954342399995,0.225897528000161]]],[[[-176.63609778599988,0.803412177000027],[-176.63617916599986,0.790187893000081],[-176.64049231699988,0.801988023000135],[-176.64004472599984,0.803534247000172],[-176.63963782499985,0.804958401000064],[-176.6390274729999,0.806952216000099],[-176.63609778599988,0.803412177000027]]],[[[-162.06086178299995,5.887193101000192],[-162.05760657499988,5.882473049000183],[-162.0611059239999,5.873439846000267],[-162.0730688139999,5.869370835000041],[-162.09113521999993,5.871649481000105],[-162.09434973899988,5.875352281000048],[-162.09076900899993,5.874823309000163],[-162.08706620999988,5.878241278000075],[-162.07506262899994,5.885524807000181],[-162.07819576699993,5.885402736000202],[-162.0827123689999,5.884182033000187],[-162.0873103509999,5.883856512000165],[-162.0938614569999,5.885809637000207],[-162.10029049399992,5.886419989000089],[-162.10362708199995,5.888576565000263],[-162.10171464799987,5.890244859000276],[-162.07135982999986,5.890163479000293],[-162.06086178299995,5.887193101000192]]],[[[-162.38528398299985,6.430243231000134],[-162.40017656199987,6.430243231000134],[-162.40017656199987,6.445135809000178],[-162.38528398299985,6.445135809000178],[-162.38528398299985,6.430243231000134]]],[[[-169.5416967439999,16.72190989800019],[-169.54735266799986,16.721014716000113],[-169.5495092439999,16.72345612200003],[-169.5476781889999,16.72736237200003],[-169.53233801999986,16.733058986000017],[-169.52240963399996,16.73216380400011],[-169.5416967439999,16.72190989800019]]],[[[-169.51276607999986,16.744330145],[-169.51366126199986,16.743963934000092],[-169.51366126199986,16.745591539000102],[-169.51276607999986,16.744330145]]],[[[-169.53327389199995,16.7547875020001],[-169.5391739569999,16.754461981000148],[-169.53722083199995,16.756496486000103],[-169.5325821609999,16.758490302000112],[-169.5302628249999,16.760199286000116],[-169.52082271999993,16.76260000200007],[-169.5174047519999,16.762437242000104],[-169.52350826699987,16.758490302000112],[-169.5283910799999,16.756048895],[-169.53327389199995,16.7547875020001]]],[[[-75.02432206899996,18.41726308800004],[-75.02106686099992,18.41563548400002],[-75.01073157499991,18.41563548400002],[-75.01024329299992,18.41514720300013],[-75.00698808499988,18.41514720300013],[-75.0037328769999,18.41079336100013],[-75.00263424399988,18.41022370000017],[-75.00263424399988,18.406439520000063],[-75.00263424399988,18.40477122600005],[-75.00316321499986,18.40371328300007],[-75.00316321499986,18.397731838000155],[-75.00531979099986,18.396104234000134],[-75.00698808499988,18.396104234000134],[-75.00804602799992,18.39500560100002],[-75.01073157499991,18.39500560100002],[-75.01183020699995,18.396104234000134],[-75.01508541599992,18.396104234000134],[-75.01618404899995,18.396673895000035],[-75.01781165299988,18.396673895000035],[-75.01891028599991,18.397731838000155],[-75.01891028599991,18.39883047100001],[-75.02049719999985,18.400417385000036],[-75.02049719999985,18.402614651000036],[-75.02375240799988,18.406439520000063],[-75.02375240799988,18.406968492000132],[-75.02594967399989,18.408026434000092],[-75.03083248599995,18.413478908000044],[-75.03026282499991,18.41726308800004],[-75.02432206899996,18.41726308800004]]],[[[166.65235436300011,19.284247137000094],[166.64421634200005,19.275580145000035],[166.619395379,19.28164297100001],[166.62973066500004,19.282416083000115],[166.63819420700005,19.28644440300009],[166.64087975400005,19.294012762000065],[166.63477623800017,19.305731512000037],[166.64812259200008,19.297756252000067],[166.65235436300011,19.284247137000094]]],[[[-177.32489986899986,28.204982815000122],[-177.33527584499987,28.204291083],[-177.32892818899992,28.21108633000013],[-177.32286536399994,28.207668361000017],[-177.32115637899994,28.20587799700003],[-177.32489986899986,28.204982815000122]]],[[[-177.38072669199985,28.198919989000146],[-177.3895971339999,28.197658596000124],[-177.38524329299992,28.206976630000085],[-177.3780004549999,28.21283600500011],[-177.36864173099985,28.21531810100005],[-177.3576554029999,28.214422919000143],[-177.36445064999992,28.20758698100003],[-177.37218176999994,28.202337958000054],[-177.38072669199985,28.198919989000146]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Trinidad and Tobago","sov_a3":"TTO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Trinidad and Tobago","adm0_a3":"TTO","geou_dif":0,"geounit":"Trinidad and Tobago","gu_a3":"TTO","su_dif":0,"subunit":"Trinidad and Tobago","su_a3":"TTO","brk_diff":0,"name":"Trinidad and Tobago","name_long":"Trinidad and Tobago","brk_a3":"TTO","brk_name":"Trinidad and Tobago","brk_group":null,"abbrev":"Tr.T.","postal":"TT","formal_en":"Republic of Trinidad and Tobago","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Trinidad and Tobago","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":1310000,"gdp_md_est":29010,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"TD","iso_a2":"TT","iso_a3":"TTO","iso_n3":"780","un_a3":"780","wb_a2":"TT","wb_a3":"TTO","woe_id":23424958,"woe_id_eh":23424958,"woe_note":"Exact WOE match as country","adm0_a3_is":"TTO","adm0_a3_us":"TTO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":19,"long_len":19,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"TTO.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-60.90729732999998,10.837144273000163],[-60.949777798999946,10.763495184000107],[-61.002268032999886,10.699367580000143],[-61.02086341099991,10.702704169000171],[-61.032704230999855,10.683539130000113],[-61.0380753249999,10.653631903000132],[-61.03697669199997,10.624904690000093],[-61.01756751199986,10.564113674000154],[-61.01353919199991,10.534491278000102],[-61.042469855999904,10.50995514500009],[-61.041859503999945,10.481878973000093],[-61.03844153599994,10.463649807000108],[-61.02814693899992,10.408514716000155],[-61.0230199859999,10.394842841000127],[-61.016346808999856,10.38214752800016],[-60.9984431629999,10.355943101000122],[-60.961293097999885,10.330023505000128],[-60.990223761999886,10.299261786000145],[-61.00279700399989,10.247544664000117],[-61.00332597599996,10.189113674000138],[-60.99600175699996,10.138251044000114],[-61.01748613199988,10.142889716000125],[-61.04157467399991,10.135646877000113],[-61.06432044199994,10.121812242000116],[-61.08202063699985,10.106878973000079],[-61.099680141999954,10.09520091400016],[-61.1223852199999,10.086818752000113],[-61.16734778599991,10.076157945000176],[-61.17764238199993,10.07518138200011],[-61.19163977799988,10.073797919000128],[-61.25300045499997,10.08364492400014],[-61.275013800999886,10.081732489000089],[-61.33869381399995,10.069322007000068],[-61.417469855999904,10.076157945000176],[-61.5030818349999,10.069322007000068],[-61.50413977799985,10.069525458000115],[-61.5440974599999,10.076157945000176],[-61.553456183999856,10.073879299000112],[-61.58193925699995,10.062567450000117],[-61.593129035999965,10.061428127000083],[-61.61278235599991,10.056789455000157],[-61.62291419199996,10.055650132000123],[-61.637033657999886,10.057806708000129],[-61.64696204299992,10.062974351000122],[-61.65607662699989,10.069647528000173],[-61.66759192599994,10.076157945000176],[-61.68618730399992,10.081610419000114],[-61.70669511599988,10.083970445000162],[-61.79332434799994,10.084133205000128],[-61.81704667899994,10.081366278000159],[-61.835194464999944,10.07273997600008],[-61.849842902999846,10.061468817000076],[-61.869292772999955,10.05003489800012],[-61.88975989499991,10.042303778000118],[-61.90721594999989,10.042059637000165],[-61.9287003249999,10.056463934000135],[-61.91893469999988,10.070013739000101],[-61.886708136999914,10.08673737200013],[-61.88194739499991,10.09048086100016],[-61.87096106699996,10.093817450000088],[-61.83853105399987,10.099839585000097],[-61.8319392569999,10.10614655200014],[-61.82152258999991,10.121161200000158],[-61.80589758999991,10.132879950000145],[-61.789173956999896,10.140936591000084],[-61.71206620999993,10.163641669000128],[-61.70738684799992,10.16587962400011],[-61.669056769999884,10.184027411000116],[-61.639312303999866,10.210069078000087],[-61.63878333199989,10.210516669000171],[-61.6396378249999,10.240668036000102],[-61.62694251199994,10.247259833000086],[-61.611805792999945,10.247503973000121],[-61.56012936099989,10.23871491100006],[-61.52078202999991,10.240139065000122],[-61.51781165299991,10.240261135000097],[-61.50658118399988,10.240668036000102],[-61.49526933499991,10.245021877000099],[-61.48192298099991,10.255682684000135],[-61.46983801999991,10.269273179000095],[-61.46214758999989,10.282212632000096],[-61.45836341099994,10.302191473000079],[-61.45962480399996,10.309719143000123],[-61.461252407999986,10.318996486000088],[-61.46629798099991,10.335191148000135],[-61.4689835279999,10.353949286000088],[-61.470814581999974,10.359361070000134],[-61.479562954999956,10.366603908000158],[-61.48265540299993,10.370998440000136],[-61.48306230399994,10.376450914000173],[-61.48033606699997,10.377915757000139],[-61.47691809799994,10.378607489000089],[-61.47520911399994,10.381537177000112],[-61.47618567599991,10.389308986000103],[-61.48200436099998,10.408880927000084],[-61.48574785099993,10.415716864000103],[-61.4879451159999,10.430121161000073],[-61.48224850199992,10.449855861000103],[-61.4689835279999,10.480861721000124],[-61.46231035099992,10.518866278000118],[-61.46214758999989,10.558172919000128],[-61.472279425999936,10.594875393000136],[-61.4962458979999,10.624904690000093],[-61.48888098899988,10.631048895000063],[-61.528797980999855,10.657904364000146],[-61.54906165299989,10.667059637000122],[-61.57762610599986,10.679917710000055],[-61.5990291009999,10.684393622000115],[-61.650013800999915,10.687811591000127],[-61.65636145699991,10.68976471600017],[-61.661284959999904,10.695135809000135],[-61.66759192599994,10.706773179000137],[-61.61563066299996,10.742173570000148],[-61.60212154899989,10.747748114000146],[-61.56114661399996,10.744330145000148],[-61.51512610599991,10.754950262000179],[-61.490101691999904,10.75462474200016],[-61.48574785099993,10.754584052000084],[-61.47321529899992,10.760239976000065],[-61.465565558999884,10.770249742000146],[-61.46043860599988,10.774359442000103],[-61.455311652999846,10.76203034100014],[-61.447865363999874,10.76203034100014],[-61.44758053299995,10.76536692900008],[-61.447865363999874,10.775702216000083],[-61.44172115799989,10.775702216000083],[-61.44102942599997,10.770656643000152],[-61.439361131999966,10.768011786000073],[-61.43700110599991,10.765855210000069],[-61.43423417899993,10.76203034100014],[-61.44172115799989,10.754584052000084],[-61.43342037699992,10.756537177000126],[-61.427561001999976,10.76117584800015],[-61.42365475199989,10.765936591000141],[-61.42121334499988,10.768255927000112],[-61.40192623599992,10.768866278000159],[-61.40005449099993,10.768255927000112],[-61.391835089999866,10.775620835000112],[-61.37291419199994,10.797512111000131],[-61.36656653599991,10.802964585000083],[-61.35260982999991,10.804103908000116],[-61.34911048099995,10.804388739000146],[-61.29613196499989,10.798041083000115],[-61.18008378799996,10.797552802000126],[-61.17157955599992,10.803941148000149],[-61.15485592399988,10.816473700000145],[-61.09654700399989,10.823431708000143],[-61.078521287999955,10.830959377000099],[-60.948841925999965,10.845282294000171],[-60.90729732999998,10.837144273000163]]],[[[-60.523060675999915,11.34365469000015],[-60.522084113999945,11.318833726000094],[-60.52554277299993,11.288153387000179],[-60.5330297519999,11.266506252000097],[-60.544178839999915,11.2691104190001],[-60.55036373599998,11.2691104190001],[-60.55650794199997,11.254095770000076],[-60.565297003999916,11.252427476000065],[-60.57526607999992,11.255764065000093],[-60.585113084999925,11.25551992400014],[-60.5870662099999,11.251125393000152],[-60.602040167999924,11.231431382000125],[-60.60558020699991,11.230658270000104],[-60.62877356699994,11.216538804000066],[-60.63605709499987,11.210760809000105],[-60.64712480399991,11.204169012000122],[-60.659779425999965,11.2042910830001],[-60.671864386999886,11.20673248900013],[-60.68130449099988,11.207098700000145],[-60.741769985999895,11.177069403000102],[-60.75951087099989,11.17291901200015],[-60.78644771999986,11.149969794000171],[-60.80333411399993,11.143255927000125],[-60.81041419199991,11.159247137000122],[-60.825428839999915,11.15180084800015],[-60.83934485599991,11.154120184000105],[-60.847523566999904,11.163967190000136],[-60.845204230999855,11.179144598000121],[-60.836740688999924,11.183335679000052],[-60.8228653639999,11.185532945000132],[-60.80992591099991,11.190659898000149],[-60.804269985999916,11.203680731000132],[-60.79434160099993,11.21662018400015],[-60.709706183999906,11.271307684000178],[-60.691639777999875,11.288885809000119],[-60.68130449099988,11.296454169000171],[-60.66860917899992,11.302923895000077],[-60.63581295499992,11.31484609600011],[-60.607574022999955,11.320705471000151],[-60.595814581999974,11.327297268000136],[-60.58364824099987,11.329535223000121],[-60.56773841099996,11.320298570000146],[-60.56037350199997,11.32119375200014],[-60.54133053299998,11.343410549000112],[-60.53050696499989,11.35106028900013],[-60.523060675999915,11.34365469000015]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Country","admin":"United States of America","adm0_a3":"USA","geou_dif":0,"geounit":"United States of America","gu_a3":"USA","su_dif":0,"subunit":"United States of America","su_a3":"USA","brk_diff":0,"name":"United States","name_long":"United States","brk_a3":"USA","brk_name":"United States","brk_group":null,"abbrev":"U.S.A.","postal":"US","formal_en":"United States of America","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United States of America","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":313973000,"gdp_md_est":15094000,"pop_year":0,"lastcensus":2010,"gdp_year":0,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":0,"fips_10_":"US","iso_a2":"US","iso_a3":"USA","iso_n3":"840","un_a3":"840","wb_a2":"US","wb_a3":"USA","woe_id":23424977,"woe_id_eh":23424977,"woe_note":"Exact WOE match as country","adm0_a3_is":"USA","adm0_a3_us":"USA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":13,"long_len":13,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"USA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.6065189699999,20.137955566000144],[-155.58636330899995,20.122935923000153],[-155.5630978639999,20.128402875000134],[-155.5271939969999,20.12626898600014],[-155.49107825399994,20.11302317900011],[-155.42071461799995,20.09018548900012],[-155.33231277899986,20.046721443000123],[-155.21510593099987,19.975645397000065],[-155.16804273399987,19.94682721500011],[-155.1158533549999,19.89673230400002],[-155.0871411889999,19.860379834000028],[-155.08639926199993,19.821029192000125],[-155.08806150199985,19.768645245000144],[-155.08537090599992,19.727409311000045],[-155.05749289999986,19.72853043200017],[-155.0185440749999,19.745835679],[-154.98992338099987,19.726707451000053],[-154.97667173399986,19.70575727300009],[-154.98004376799992,19.662806468],[-154.9669701269999,19.636251923000046],[-154.94990596099993,19.611445574000143],[-154.89962160299987,19.567016293000123],[-154.8466232489999,19.54493798599999],[-154.82531051999987,19.527487875000176],[-154.81406356599993,19.506579211000158],[-154.8172094389999,19.479722398000078],[-154.82990475199995,19.464056708],[-154.87473623499994,19.4128841550001],[-154.9189322189999,19.397311606000088],[-154.98230051299993,19.339243956000143],[-155.02509518099984,19.327582098000093],[-155.02666307099992,19.316170953000054],[-155.06261297099994,19.307820063000108],[-155.0930314219999,19.28620959700011],[-155.15304103099987,19.26920424000015],[-155.20295757199986,19.255579602000022],[-155.24505936499986,19.26553910200012],[-155.26928137199988,19.26618159300007],[-155.29112743399995,19.259523502000107],[-155.31444461799992,19.245659319000154],[-155.34568688799985,19.224804655000113],[-155.36413604799992,19.203574675000155],[-155.38465847599983,19.200530529],[-155.40014934799996,19.19368608200007],[-155.4225968089999,19.180121161],[-155.43683834499987,19.169867255000085],[-155.4877823559999,19.142523505000028],[-155.50279700399994,19.13768138200011],[-155.54613196499992,19.098211981000148],[-155.55373721199987,19.081960805000147],[-155.55225991599985,19.04561894500013],[-155.57063791699989,19.02677103000012],[-155.60206039099995,18.99737962500008],[-155.61852255699992,18.95554368000016],[-155.6329688079999,18.94020311400008],[-155.65124157199992,18.926103771000115],[-155.67475562399994,18.906117143000117],[-155.68354392699985,18.91115677099999],[-155.68293237999987,18.93288639000015],[-155.70416670299988,18.949084649000056],[-155.74441443899988,18.969342794000127],[-155.79217075999992,18.99697570800005],[-155.81725325599984,19.01323075200004],[-155.85913308999986,19.023812411],[-155.87812988099995,19.029072187000068],[-155.8840472559999,19.047294619000027],[-155.8910486479999,19.06565446400019],[-155.9039060719999,19.069459068000025],[-155.91213327199992,19.096188743000184],[-155.9199304689999,19.13860065600006],[-155.9083855969999,19.188985774000017],[-155.88553045399988,19.334156958000065],[-155.8873739849999,19.359568177000124],[-155.90088906099984,19.38274977400006],[-155.9129585799999,19.414314596000153],[-155.9294909489999,19.46181595800006],[-155.93657771399987,19.481310354000087],[-155.9464478779999,19.493611062000113],[-155.9563881019999,19.51423606200008],[-155.95396887899992,19.536078192000115],[-155.96563582999988,19.556630668000036],[-155.97136530099993,19.57969801300014],[-155.9821971949999,19.60767473100016],[-155.99952439699985,19.63217940700015],[-156.0147840799999,19.643355435],[-156.0362551449999,19.6679354860001],[-156.0601639279999,19.731220553000085],[-156.05016028599988,19.75950755400011],[-156.0388077459999,19.783148505000057],[-156.01744544199994,19.801092841000084],[-155.99677486899992,19.814439195000105],[-155.98749752499995,19.824367580000015],[-155.98204505099991,19.84332916900003],[-155.96796627499987,19.854234117000104],[-155.9260147779999,19.868801174000126],[-155.90583248599995,19.902044989000117],[-155.89586341099985,19.913478908000098],[-155.8734018789999,19.951321249000088],[-155.85090084499984,19.975287177],[-155.8354576179999,19.975703442000068],[-155.82832005199992,20.00696072600003],[-155.82408327899992,20.020092445000113],[-155.83106861599995,20.039371950000046],[-155.84770986799992,20.054519035],[-155.88255598299986,20.104942986000182],[-155.8969804319999,20.14884614900008],[-155.89936275899993,20.18406810100008],[-155.89927049299985,20.216690077000138],[-155.88048255099994,20.25202057500006],[-155.86724216199988,20.263132036000158],[-155.8311292439999,20.263429107000135],[-155.76606197799993,20.249172268],[-155.7379858059999,20.243801174000126],[-155.73261471299992,20.23883698100009],[-155.72919674399992,20.231350002000127],[-155.72801673099988,20.22162506700009],[-155.71166938899995,20.19614910500009],[-155.67334951599983,20.18166990800016],[-155.64813054199993,20.168006393],[-155.63065357999992,20.14821166600008],[-155.6065189699999,20.137955566000144]]],[[[-156.53412841099995,20.53178747600019],[-156.5445550619999,20.513216689],[-156.57291864099986,20.512983613000173],[-156.59951072899992,20.51740303700008],[-156.61886799899986,20.513808491000116],[-156.64649851699988,20.508083848000027],[-156.67926130299986,20.50471293200009],[-156.70056182399986,20.52542656500013],[-156.6884579049999,20.540104408000087],[-156.66715906599995,20.557717171000135],[-156.63914954299995,20.57514069200006],[-156.60881453599993,20.59104598000006],[-156.58262141199992,20.599956701000064],[-156.56177406499995,20.598007555],[-156.5365699359999,20.570942072000136],[-156.54976751199982,20.541472931000058],[-156.53412841099995,20.53178747600019]]],[[[-156.91373752699985,20.734724091000047],[-156.96228010299996,20.732387730000184],[-156.98238614499988,20.759414015000075],[-156.98707869399993,20.78287341000002],[-156.98835201699995,20.80145905199999],[-156.9885961579999,20.824937242000047],[-156.99213619699987,20.846340236000014],[-157.00922416399993,20.855880059000114],[-157.05080962099993,20.871405682000116],[-157.06313605799994,20.89038664100015],[-157.0552136019999,20.911371030000012],[-157.03155096099994,20.922717910000145],[-156.99041420499995,20.92750878700015],[-156.89271962499987,20.914141356000172],[-156.8483780589999,20.876817124000137],[-156.8483373689999,20.87677643400015],[-156.8326722349999,20.860743402000153],[-156.81633843299988,20.84170417000003],[-156.8057973089999,20.825107881000136],[-156.80353909899992,20.812564416000143],[-156.8097313309999,20.795479580000162],[-156.83125712899988,20.76380716600012],[-156.8767747349999,20.744265284000065],[-156.91373752699985,20.734724091000047]]],[[[-156.5895997049999,21.027738813000113],[-156.58138591199994,21.018149872000137],[-156.57141335699993,21.016456133000148],[-156.5556655389999,21.008334336000146],[-156.5423677259999,21.00338958800002],[-156.53752482799982,20.990651662000076],[-156.52588858099986,20.987321553000143],[-156.52287490899988,20.974045307000083],[-156.52304721899984,20.96219809500012],[-156.50914097399988,20.950296330000086],[-156.50018910099988,20.937583783000107],[-156.49299287099987,20.92179827500017],[-156.4816715519999,20.904397075000034],[-156.4640708309999,20.905623498000082],[-156.4529211179999,20.917917610000146],[-156.4337052069999,20.917710679],[-156.41881262899994,20.92011139500012],[-156.3896378249999,20.921535549000012],[-156.3784887359999,20.92397695500013],[-156.34642493399988,20.945868231000144],[-156.33067786399994,20.95123932500003],[-156.31541907499988,20.952948309000035],[-156.2983292309999,20.952704169000086],[-156.2819311189999,20.95026276200015],[-156.2686254549999,20.94505442900005],[-156.26439368399988,20.944525458000086],[-156.26097571499986,20.94367096600008],[-156.25812740799992,20.94159577000006],[-156.25556393099993,20.93764883000007],[-156.24290930899986,20.94155508000007],[-156.22687740799986,20.931952216000084],[-156.22184474599993,20.920337186000054],[-156.2152814099999,20.91472759600019],[-156.20722408799992,20.906887111000103],[-156.1972550119999,20.895005601000047],[-156.1791918619999,20.883483182000035],[-156.1660884019999,20.871480968000142],[-156.1647602449999,20.862786357000076],[-156.15298963099985,20.86179400900012],[-156.14793578899986,20.861703227000177],[-156.14442314199994,20.867117877000094],[-156.13126936199987,20.857453126000152],[-156.12572920899996,20.84404131200013],[-156.11928101799987,20.83607094500006],[-156.0849891789999,20.831451060000163],[-156.0510086499999,20.815863260000143],[-156.00169837099983,20.800441799000126],[-155.97955290999988,20.75737428000015],[-155.98469586899986,20.71759106100016],[-156.00313353899986,20.685897726000107],[-156.02774049999988,20.679366243000132],[-156.0484229989999,20.65088788800007],[-156.0754038909999,20.65067153700012],[-156.12950442099995,20.624472917000116],[-156.1654377909999,20.625236032000103],[-156.18542284299986,20.62722037700017],[-156.2038298129999,20.626042974000185],[-156.2536937,20.604422509000088],[-156.2848926609999,20.588638968000122],[-156.3025938039999,20.581179336],[-156.32671484399995,20.587171478000027],[-156.33588976699986,20.588152080000086],[-156.35251305299985,20.592428506000047],[-156.3654679029999,20.588771877000013],[-156.40765319499985,20.58720665400001],[-156.43548837399993,20.611975966000145],[-156.43858219499992,20.62219789700019],[-156.45166446099995,20.63573788500004],[-156.44314285199988,20.64260154400013],[-156.4427499809999,20.660569389000088],[-156.45048158399985,20.72638049600006],[-156.4584408599999,20.7445170320001],[-156.45799181699985,20.764835405000113],[-156.46431939999994,20.781383147000085],[-156.46842699399988,20.78458766400008],[-156.47533118399986,20.790838934000064],[-156.48572697499992,20.796661417000152],[-156.50163109999988,20.796191426000075],[-156.5158802169999,20.790087373000134],[-156.52130121699992,20.776241299000063],[-156.53389852599994,20.77413896000003],[-156.54863395999982,20.782110580000122],[-156.56272598999993,20.791837343000154],[-156.58448244099992,20.795452386000033],[-156.60597574799988,20.808377251000152],[-156.62023427199995,20.80708809500008],[-156.63325604899993,20.823737830000127],[-156.65705276599985,20.84766082100013],[-156.68490668399988,20.88188777800012],[-156.6861331769999,20.90382201500016],[-156.69600919699985,20.915801977000072],[-156.6922601189999,20.936102735000034],[-156.6858792679999,20.964236004000053],[-156.67683844499987,20.987970972000042],[-156.66646901099986,21.003438187000043],[-156.65384959699986,21.004755317000118],[-156.64537512899992,21.013373114000146],[-156.64484615799995,21.021185614000146],[-156.63579034399993,21.027124270000073],[-156.6265810469999,21.026161960000124],[-156.61567959199988,21.025149976000066],[-156.60725533099986,21.02734320500015],[-156.60381995499995,21.031992488000085],[-156.59792931399988,21.032653273000122],[-156.5895997049999,21.027738813000113]]],[[[-157.24884316499993,21.221710607000105],[-157.23292649099986,21.219116956],[-157.20941306699987,21.22032303800016],[-157.19689789399993,21.21701481600017],[-157.18868434699988,21.20514185200004],[-157.17357337099986,21.20514557500014],[-157.0790840479999,21.19171320100004],[-157.02807949199985,21.184613902000095],[-156.9897354809999,21.182847398000135],[-156.98180822999993,21.19404678900004],[-156.9807888819999,21.203420475000158],[-156.97561460899988,21.211148396000066],[-156.96576900899996,21.213324286000088],[-156.95241029999988,21.196706858000038],[-156.94775751799986,21.177849860000077],[-156.92523310899995,21.171244980000083],[-156.89704547199986,21.165191023000105],[-156.8466796429999,21.16672894300008],[-156.82465843799986,21.16954764800006],[-156.81063546099995,21.173875442000124],[-156.80031220099994,21.177676245],[-156.7917916099999,21.176027903000048],[-156.77351917599987,21.177205020000102],[-156.75949604599992,21.173010679000143],[-156.7490128249999,21.17096588700018],[-156.7390060259999,21.172761014000017],[-156.7332084319999,21.16875073700011],[-156.7359206109999,21.16408159700013],[-156.72914964999993,21.16086442700005],[-156.7131762789999,21.16136815599999],[-156.70572493599994,21.156542963000064],[-156.7248429029999,21.123724677000112],[-156.75560462099992,21.095526434000035],[-156.79340572799995,21.07587311400009],[-156.83100338399993,21.061102606000087],[-156.86957760299993,21.053371486000103],[-156.90855872299986,21.057033596000124],[-156.94740522599994,21.064542367000126],[-157.02491686599993,21.083778732000052],[-157.0723738109999,21.099381265000048],[-157.1403200339999,21.09419017100005],[-157.18727032999988,21.091781320000152],[-157.22257156099994,21.086839234000152],[-157.25096594999985,21.088446356000176],[-157.27306067599994,21.08734772300012],[-157.29259192599994,21.09471263200011],[-157.30394446499992,21.10956452000009],[-157.30426998599992,21.128241278000147],[-157.29645748599992,21.14394765800013],[-157.28538977799988,21.156073309000035],[-157.26739101999988,21.162541775000093],[-157.25116331999988,21.180283960000125],[-157.24663354699987,21.199756865000083],[-157.25903621999987,21.21482931000015],[-157.25975904299992,21.221879885000092],[-157.24884316499993,21.221710607000105]]],[[[-157.8937636369999,21.598381702000108],[-157.88750281799983,21.580882287000023],[-157.8767276989999,21.5754077050001],[-157.8739249149999,21.56934226100016],[-157.87118099399987,21.557916087000038],[-157.86357947599993,21.55979477600006],[-157.8535002139999,21.556339744000084],[-157.84593665299988,21.54804108300011],[-157.83644887699992,21.53404933700007],[-157.83631291999995,21.518645190000157],[-157.83639205999992,21.511270328000037],[-157.8443739359999,21.511359894000076],[-157.84952495499988,21.505384343000014],[-157.84756049099994,21.488600903000034],[-157.8455183629999,21.477849332000133],[-157.8421273559999,21.461048946000133],[-157.83276505899994,21.458257287],[-157.82051899099991,21.453415894000088],[-157.81126826999986,21.441904753000028],[-157.80351289399985,21.429072422],[-157.78836591399994,21.424186643000056],[-157.7863235349999,21.416788890000092],[-157.77622749499994,21.413305523000087],[-157.76961904799992,21.420603638000088],[-157.76004992299988,21.433234324000026],[-157.77511743199994,21.442812471000096],[-157.77352449999995,21.454198992000116],[-157.7626182249999,21.45876424100011],[-157.7380552529999,21.45578118900012],[-157.72570752699994,21.45898509800018],[-157.72292086099992,21.45156941100008],[-157.73761959499996,21.43768952000015],[-157.74054928299986,21.419582424000126],[-157.7387043069999,21.40545104600001],[-157.72217799199996,21.395840616000115],[-157.70930420299987,21.383587533000068],[-157.7057999339999,21.374904690000093],[-157.71030534399992,21.363460849000106],[-157.70682445899985,21.351995194],[-157.69614600699987,21.336397484000045],[-157.67448333499993,21.322944104000058],[-157.65359865699986,21.312566109000088],[-157.64716739499985,21.30643147799999],[-157.65888409699994,21.293833358000185],[-157.68370671799988,21.272686860000036],[-157.6932116509999,21.262742044],[-157.70407609699993,21.259530437000123],[-157.7075988739999,21.26561606500003],[-157.70676233299986,21.27500557600014],[-157.71534558399995,21.2818388030001],[-157.7421010399999,21.275470596000062],[-157.76381402399994,21.273104395000033],[-157.78188350399995,21.264573042000066],[-157.7949652599999,21.25466332600011],[-157.8108178889999,21.254189924000016],[-157.81797924399993,21.25763482600003],[-157.82292181999986,21.266425639000047],[-157.83071368299994,21.27725756700012],[-157.86367396299994,21.290393167],[-157.88013648999993,21.297962188000113],[-157.89075965599986,21.31284138700012],[-157.89496713899993,21.322282812000154],[-157.89487635299986,21.331684863000035],[-157.9020860119999,21.328389783000162],[-157.91517993799988,21.316466487000028],[-157.9052385619999,21.305631189000124],[-157.9470034959999,21.302742801000146],[-157.94622891099993,21.307427894000014],[-157.9404350289999,21.31071696600013],[-157.9482743109999,21.316833192],[-157.9641068139999,21.31633453900004],[-157.9647091739999,21.32639830600006],[-157.96749261199992,21.334473519000127],[-157.96525828199987,21.341151686000142],[-157.96806197399985,21.347886951000177],[-157.9572087609999,21.352459097000022],[-157.94708624499992,21.35704023600009],[-157.93621674399992,21.36295447800005],[-157.9318453909999,21.371662369000134],[-157.94395141999985,21.38048656800008],[-157.95396126799986,21.384601207000074],[-157.96092688699986,21.388820705000157],[-157.96547513999985,21.38472759000014],[-157.9692099559999,21.372021640000114],[-157.97779206299987,21.37613111100005],[-157.98562574499994,21.384953133000167],[-157.99133203299994,21.39107259500004],[-157.99072921299987,21.377612308000106],[-157.98443137499987,21.36212908100005],[-157.98950627199991,21.358831482000042],[-158.01161218099986,21.37650488000004],[-158.02017355399994,21.383313164000086],[-158.01314913299996,21.367118178000013],[-157.99679613699988,21.35087124500008],[-157.9846773039999,21.341359223000083],[-157.97541306299985,21.333886618000136],[-157.98062699899987,21.318520933000016],[-157.9986917119999,21.31133754100013],[-158.02246892799985,21.30756157100008],[-158.05923422299992,21.299886721000107],[-158.0779520069999,21.298060788],[-158.0943090489999,21.2936058610001],[-158.09886633999994,21.29539622599999],[-158.10338294199988,21.299261786],[-158.11526798899988,21.305121421000152],[-158.12423623599994,21.338739434000118],[-158.13471880199995,21.36565543100015],[-158.14823284999989,21.381164271],[-158.15743577799992,21.39465355700004],[-158.17605225799988,21.403530111000137],[-158.1808024689999,21.430369488000125],[-158.1871200119999,21.444498301000138],[-158.20495396399988,21.458727823000018],[-158.21567735699992,21.465522252000156],[-158.22760032299988,21.483046969000114],[-158.22812101299988,21.50379942300016],[-158.22932219099988,21.53260499000011],[-158.23595130099991,21.54157135600012],[-158.2789330139999,21.5752647100001],[-158.27241910499995,21.57855903700009],[-158.23633824399985,21.584940710000083],[-158.19381632199992,21.58723691900009],[-158.16573744699988,21.585642587000066],[-158.1491645249999,21.586158946000168],[-158.13658606699988,21.589300848000065],[-158.1210724639999,21.585894982000084],[-158.11762447799987,21.598089911000113],[-158.11294638399988,21.603906081000147],[-158.09481973799987,21.613784087000155],[-158.07378391899994,21.628957722],[-158.06578551699994,21.635574412],[-158.06720943899987,21.641424872000087],[-158.0600479809999,21.65249258000013],[-158.05060787699986,21.671291408000098],[-158.0353490879999,21.683417059000178],[-158.01444510999988,21.70149857600002],[-157.98264568699994,21.709850429000042],[-157.96965529599987,21.709060736000183],[-157.96243251999994,21.705012456000148],[-157.95673242399994,21.698922024000083],[-157.95018469999985,21.690619208000115],[-157.93391224699985,21.677897515],[-157.9333265649999,21.667164656000136],[-157.9246855119999,21.663071172000016],[-157.9240917499999,21.654339816000018],[-157.91553391999986,21.64553978500014],[-157.9201811109999,21.627451070000134],[-157.9073256149999,21.61059113600011],[-157.8937636369999,21.598381702000108]]],[[[-160.1982403059999,21.783883779000107],[-160.21128488999992,21.78020946300002],[-160.22435918699986,21.789242828000127],[-160.23546612199988,21.792821383],[-160.24803626199986,21.828029690000037],[-160.24546260599993,21.850839125000093],[-160.2344235239999,21.874455639000033],[-160.19538282999991,21.912044980000143],[-160.1640256699999,21.934468024000026],[-160.12361967199985,21.95629587700016],[-160.11726442399993,21.969641516000095],[-160.1127389739999,21.98173751400004],[-160.11375891799995,22.000230210000055],[-160.11375891799995,22.00027090100015],[-160.09586249399987,22.007756812000125],[-160.0788922629999,22.007177039],[-160.05996362099992,22.00056297000016],[-160.05143635199994,21.983050251000023],[-160.0598785059999,21.97397199300012],[-160.07223035599995,21.95945265000013],[-160.07953854099986,21.937892971000096],[-160.07221432199995,21.910834052000055],[-160.08524609099987,21.893535615000175],[-160.1025341789999,21.886283768000013],[-160.11748621399985,21.87839775500008],[-160.13634066499992,21.872917581000152],[-160.15866236199992,21.859563610000052],[-160.17167726999983,21.848648381000103],[-160.17946091099986,21.833515584000068],[-160.1910294259999,21.804673570000105],[-160.1982403059999,21.783883779000107]]],[[[-159.38818451899994,22.2287890140001],[-159.37375531899986,22.222087383000098],[-159.35786585499994,22.222729077000064],[-159.3387345039999,22.21303945500001],[-159.33122478599992,22.197941195000013],[-159.31867428299995,22.18577708500011],[-159.31181198699988,22.184503118000137],[-159.30757581499995,22.17109365400016],[-159.3046578299999,22.161103188000155],[-159.30134029899986,22.15106842700005],[-159.30125891799986,22.15102773600007],[-159.29279537699995,22.146429755000113],[-159.2925919259999,22.135565497000144],[-159.29470434299984,22.1076272290001],[-159.3041410169999,22.095614122000157],[-159.3186942699999,22.05755984700015],[-159.33317555799985,22.04956897400005],[-159.33466549399992,22.021551825000028],[-159.33165442599994,22.00405508000007],[-159.3306371739999,21.984767971000124],[-159.33173580599993,21.966131903000147],[-159.33412758899993,21.958057444000147],[-159.34789362499993,21.95810694800015],[-159.3591224229999,21.952900339000124],[-159.35161538699995,21.94545416600006],[-159.34786231999993,21.936710490000124],[-159.35364288499994,21.930043921],[-159.3654097729999,21.930833024000105],[-159.3824924729999,21.917418699000066],[-159.38971851999995,21.905410184000075],[-159.3983722239999,21.898077845000117],[-159.41496175999993,21.888098166000034],[-159.41641106999992,21.880747968000108],[-159.42722672099987,21.879446927000018],[-159.4337168499999,21.87411696],[-159.43731532299995,21.868769246000014],[-159.48192211399987,21.883546646000028],[-159.50926553599993,21.886252262000152],[-159.5296175509999,21.88565103400016],[-159.56755455399988,21.89302993300008],[-159.58194862899987,21.894351836000013],[-159.5905749049999,21.901714646000112],[-159.5948922769999,21.900387702],[-159.59634123099988,21.893698927000102],[-159.6049786939999,21.89170254000011],[-159.6100095819999,21.899719360000134],[-159.62296792799992,21.905057252000105],[-159.63448238799992,21.91374781899999],[-159.64166464199988,21.923107138000162],[-159.64597205499985,21.931796147000128],[-159.65029136499993,21.939807816000084],[-159.66181638899982,21.942477516000068],[-159.6661245039999,21.950496926000042],[-159.6762085579999,21.955170900000056],[-159.69611568899987,21.958156643],[-159.7115111239999,21.96384981000007],[-159.72375758599995,21.969859699000107],[-159.74321276299992,21.97319534400016],[-159.75979373199988,21.978533373000133],[-159.76844935799988,21.995229786000138],[-159.77133289999995,22.0052480720001],[-159.77998975399987,22.009253388000147],[-159.7872110859999,22.01927012100016],[-159.78721974299992,22.03329897400006],[-159.78578423999988,22.044656149000062],[-159.78506601799987,22.057349453000043],[-159.78651507199987,22.06603413099999],[-159.77656002499987,22.069525458000115],[-159.74974811399986,22.098106817000186],[-159.73568048599995,22.115245853000104],[-159.73432369699995,22.12498607000019],[-159.7342016269999,22.133734442000062],[-159.73261471299995,22.14077383000013],[-159.7259008449999,22.14362213700018],[-159.7234594389999,22.14655182500009],[-159.7165337299999,22.15751404700002],[-159.69417764599996,22.16351792600004],[-159.6681884179999,22.169478142000155],[-159.63937456399992,22.185559234000134],[-159.6213488429999,22.20029138600013],[-159.59823430099993,22.21086455000001],[-159.58958210399993,22.2209538070001],[-159.5765935089999,22.225661440000138],[-159.56576758799991,22.22564701800009],[-159.5585431959999,22.232995262000045],[-159.54844145599995,22.23097967299999],[-159.54123237499985,22.22495373000011],[-159.5376335699999,22.218260623],[-159.5296962939999,22.217584970000143],[-159.51671244899995,22.21356523100009],[-159.5080631429999,22.208204068000057],[-159.4994077609999,22.208847302],[-159.50227644499992,22.21622126600012],[-159.49937623599988,22.223574334000105],[-159.48132149599994,22.230235325000038],[-159.4625775379999,22.22750021800014],[-159.44017816699994,22.227518404000033],[-159.42865345799993,22.22080093600006],[-159.41925912599996,22.22213539600007],[-159.40768297699984,22.2288157410001],[-159.39971985999995,22.235494671000183],[-159.38818451899994,22.2287890140001]]],[[[-161.9451798169999,23.039862372000172],[-161.94786536399988,23.038031317],[-161.94635982999992,23.041449286],[-161.9460343089999,23.04458242400007],[-161.9447729159999,23.04621002800009],[-161.9404190749999,23.045599677000137],[-161.9409073559999,23.041978257],[-161.9426977199999,23.04067617400007],[-161.9451798169999,23.039862372000172]]],[[[-164.7043350899999,23.579331773000106],[-164.69908606699988,23.57054271000005],[-164.7072647779999,23.572577216000084],[-164.7084854809999,23.574530341000028],[-164.7063695949999,23.57660553600006],[-164.7043350899999,23.579331773000106]]],[[[-82.11880449099993,24.553615627000156],[-82.12877356699993,24.55084870000009],[-82.12828528599994,24.553697007000135],[-82.11839758999992,24.55646393400009],[-82.1137589179999,24.557318427],[-82.11880449099993,24.553615627000156]]],[[[-81.7408748039999,24.57318756700012],[-81.73668372299997,24.569525458000054],[-81.73371334499987,24.564154364000032],[-81.73200436099995,24.556219794000143],[-81.73766028599994,24.557806708000086],[-81.74132239499987,24.560695705000015],[-81.74380449099989,24.564642645],[-81.74624589799996,24.569891669000086],[-81.74722245999993,24.56757233300011],[-81.74730383999992,24.56443919500005],[-81.74840247299994,24.56411367400004],[-81.75251217399992,24.569891669000086],[-81.75572669199997,24.562445380000028],[-81.7599177729999,24.556219794000143],[-81.76939856699991,24.55019765800013],[-81.78441321499992,24.54612864799999],[-81.81456458199995,24.542547919000114],[-81.81029212099992,24.558172919000082],[-81.80186926999988,24.56028880400011],[-81.79124915299992,24.55707428600006],[-81.78038489499994,24.556219794000143],[-81.77293860599988,24.559719143000123],[-81.75251217399992,24.576117255000142],[-81.74624589799996,24.576117255000142],[-81.7408748039999,24.57318756700012]]],[[[-81.65461178299995,24.59320709800009],[-81.6500544909999,24.576117255000142],[-81.7257380849999,24.556219794000143],[-81.72158769399996,24.55951569200009],[-81.71149654899989,24.569891669000086],[-81.71149654899989,24.576117255000142],[-81.71694902299993,24.58104075700002],[-81.71833248599992,24.586249091000084],[-81.71629798099988,24.591742255000113],[-81.71149654899989,24.59780508000004],[-81.70531165299992,24.59780508000004],[-81.69579016799992,24.590643622000087],[-81.68390865799998,24.591131903000143],[-81.65684973899994,24.59780508000004],[-81.65461178299995,24.59320709800009]]],[[[-82.11937415299991,24.594671942000147],[-82.10960852799988,24.58612702000012],[-82.1077367829999,24.575262762000037],[-82.11046301999997,24.565497137000094],[-82.11156165299991,24.57094961100013],[-82.11961829299995,24.585109768000066],[-82.12791907499994,24.589260158000016],[-82.13475501199994,24.592962958000143],[-82.13996334499983,24.593329169000143],[-82.14574133999992,24.592718817],[-82.14293372299994,24.595851955000068],[-82.13174394399994,24.598089911000056],[-82.11937415299991,24.594671942000147]]],[[[-81.41063391799992,24.655422268000095],[-81.41478430899986,24.64769114799999],[-81.42174231699994,24.65176015800013],[-81.42446855399993,24.65497467699999],[-81.41759192599991,24.659409898000078],[-81.41063391799992,24.655422268000095]]],[[[-81.26634680899991,24.66038646000014],[-81.27603105399987,24.655585028000147],[-81.27749589799993,24.657619533000073],[-81.26520748599998,24.671291408000013],[-81.26024329299992,24.671698309000035],[-81.25837154899995,24.66762929900007],[-81.26634680899991,24.66038646000014]]],[[[-81.43932044199988,24.66038646000014],[-81.44139563699991,24.650539455000015],[-81.44684811099995,24.650783596000064],[-81.44908606699991,24.65521881700012],[-81.46068274599995,24.664374091000028],[-81.46198482999995,24.670965887000094],[-81.45543372299993,24.676092841000113],[-81.45384680899991,24.677679755000142],[-81.4573868479999,24.677923895000088],[-81.45543372299993,24.681341864],[-81.44806881399987,24.68056875200007],[-81.44220943899992,24.67153554900007],[-81.43932044199988,24.66038646000014]]],[[[-81.55500240799992,24.688177802000112],[-81.55321204299992,24.686957098],[-81.55020097599993,24.687160549000126],[-81.54698645699997,24.685939846000124],[-81.54010982999995,24.675238348],[-81.50601152299996,24.638820705000125],[-81.50601152299996,24.63133372600008],[-81.5308324859999,24.61522044500019],[-81.56505286399988,24.602240302],[-81.63646399599986,24.583563544000025],[-81.63646399599986,24.590318101000047],[-81.61693274599989,24.605454820000045],[-81.60553951699993,24.60956452],[-81.59544837099986,24.60398997599999],[-81.5735977859999,24.613714911000145],[-81.5674942699999,24.617661851000136],[-81.56493079299992,24.62116120000003],[-81.56167558499988,24.62274811400006],[-81.55451412699992,24.63133372600008],[-81.56924394399991,24.64004140800013],[-81.5753474599999,24.64492422100004],[-81.58116614499994,24.65180084800012],[-81.55166581899988,24.644354559000146],[-81.53868567599989,24.636460679],[-81.53335527299993,24.624497789000046],[-81.52717037699995,24.624497789000046],[-81.52245032499984,24.63792552300005],[-81.5257055329999,24.64789459800012],[-81.53648841099991,24.65302155200005],[-81.55451412699992,24.65180084800012],[-81.55451412699992,24.659247137000094],[-81.5489802729999,24.6649437520001],[-81.55052649599995,24.668768622000087],[-81.5572403639999,24.67112864800005],[-81.5674942699999,24.672308661000088],[-81.56065833199992,24.69342682500009],[-81.55451412699992,24.69342682500009],[-81.55500240799992,24.688177802000112]]],[[[-81.47972571499994,24.672512111000128],[-81.47842363199993,24.654120184000092],[-81.48131262899996,24.649847723000093],[-81.48542232999992,24.656968492000132],[-81.49111894399991,24.662258205000015],[-81.49738521999984,24.66396719],[-81.50243079299989,24.662665106000116],[-81.50645911399994,24.660101630000028],[-81.51113847599987,24.661322333000115],[-81.51374264199987,24.663275458000086],[-81.51610266799992,24.66547272300006],[-81.52017167899987,24.67405833500008],[-81.51903235599994,24.687323309000092],[-81.51500403599997,24.69773997599999],[-81.51162675699996,24.698431708000143],[-81.50698808499993,24.695868231000034],[-81.50088456899994,24.695257880000085],[-81.49315344999994,24.69212474200019],[-81.48574785099993,24.686509507],[-81.48241126199991,24.683254299000154],[-81.47972571499994,24.672512111000128]]],[[[-81.31554114499994,24.67963288],[-81.3177791009999,24.674953518000066],[-81.32551021999993,24.684271552000112],[-81.33470618399987,24.689846096000124],[-81.33788001199984,24.693304755000113],[-81.34089107999993,24.700100002000152],[-81.33690344999988,24.703802802],[-81.32945716099991,24.70331452],[-81.32066809799994,24.69448476800015],[-81.31554114499994,24.67963288]]],[[[-81.08250891799985,24.69944896],[-81.08771725199995,24.685939846000124],[-81.09276282499987,24.70087311400006],[-81.1039119129999,24.706773179000106],[-81.13609778599997,24.70701732000005],[-81.1155899729999,24.715725002000127],[-81.06143144399994,24.73135000200001],[-81.0399063789999,24.734361070000105],[-81.04063880099994,24.72736237200006],[-81.04369055899994,24.724310614000146],[-81.0671280589999,24.715887762000094],[-81.07616126199991,24.709051825000174],[-81.08250891799985,24.69944896]]],[[[-81.34056555899994,24.646714585000026],[-81.36266028599994,24.63133372600008],[-81.36424719999985,24.66120026200015],[-81.43028723899988,24.75482819200009],[-81.42747962099992,24.751369533000073],[-81.42463131399988,24.749823309000035],[-81.41730709499987,24.748683986000017],[-81.38768469999992,24.727484442000033],[-81.35545813699989,24.686183986000074],[-81.34056555899994,24.646714585000026]]],[[[-80.95889238199987,24.749335028000143],[-81.03307044199991,24.720689195000162],[-80.95555579299995,24.768744208000058],[-80.92381751199989,24.775336005000142],[-80.92381751199989,24.769110419000086],[-80.92788652299993,24.76569245000017],[-80.93211829299986,24.76373932500003],[-80.94432532499994,24.76166413],[-80.95889238199987,24.749335028000143]]],[[[-80.8023168609999,24.826890367000104],[-80.79971269399991,24.82526276200018],[-80.79352779899995,24.83055247600005],[-80.78734290299988,24.83055247600005],[-80.78709876199991,24.825995184000117],[-80.78844153599991,24.822943427000112],[-80.79352779899995,24.816880601000108],[-80.80215410099993,24.80988190300006],[-80.81847083199995,24.805812893000095],[-80.85496985599991,24.803290106000148],[-80.84504146999993,24.814357815],[-80.80036373599995,24.843573309000064],[-80.80215410099993,24.833685614000117],[-80.8023168609999,24.826890367000104]]],[[[-80.71825110599985,24.859442450000174],[-80.7335505849999,24.85032786700016],[-80.7383520169999,24.850734768000095],[-80.73599199099993,24.857367255000053],[-80.72972571499992,24.8627790390001],[-80.72105872299991,24.866685289000102],[-80.70083574099988,24.88100820500007],[-80.69933020699995,24.876288153000175],[-80.71084550699987,24.864325262000037],[-80.71825110599985,24.859442450000174]]],[[[-80.64696204299985,24.904730536],[-80.65713456899991,24.901109117000132],[-80.6254776679999,24.936224677000027],[-80.61851966099994,24.94155508000007],[-80.61750240799998,24.93813711100016],[-80.61774654899992,24.93602122600005],[-80.62621008999986,24.924139716000113],[-80.64696204299985,24.904730536]]],[[[-167.99616451699987,25.004339911000145],[-167.99677486899992,25.001125393000095],[-168.00279700399994,25.014797268000123],[-167.9998673169999,25.016424872000144],[-167.99555416599992,25.011664130000057],[-167.99506588399993,25.007757880000057],[-167.99616451699987,25.004339911000145]]],[[[-81.05174719999988,25.27830638200014],[-81.05874589799994,25.273993231000034],[-81.06688391799989,25.276760158000098],[-81.07461503799988,25.288723049000126],[-81.07835852799991,25.30170319200012],[-81.07286536399988,25.310044664000184],[-81.05980383999992,25.31171295800003],[-81.04747473899997,25.309393622000144],[-81.04279537699995,25.307440497000087],[-81.03978430899986,25.296698309000174],[-81.04849199099992,25.284979559000092],[-81.05174719999988,25.27830638200014]]],[[[-81.11270097599987,25.33820221600008],[-81.10871334499988,25.337632554000106],[-81.09727942599993,25.340073960000055],[-81.08901933499996,25.33885325700011],[-81.08629309799989,25.331244208],[-81.08568274599992,25.32689036700019],[-81.08812415299985,25.32241445500013],[-81.09072831899996,25.312811591000138],[-81.10033118399993,25.31818268400012],[-81.10863196499992,25.32396067900008],[-81.12222245999988,25.33657461100016],[-81.1165258449999,25.341945705000015],[-81.11042232999989,25.34031810099999],[-81.11270097599987,25.33820221600008]]],[[[-80.36148027299993,25.15949127800003],[-80.4427791009999,25.086411851000047],[-80.45360266799992,25.081000067],[-80.46450761599988,25.08380768400015],[-80.47126217399992,25.072984117000043],[-80.4803360669999,25.049790757000107],[-80.48814856699991,25.03945547100001],[-80.51915442599994,25.014878648000106],[-80.5559789699999,24.970933335000083],[-80.57860266799989,24.95026276200015],[-80.59801184799989,24.950100002000095],[-80.60350501199991,24.96112702000015],[-80.59398352799991,24.96662018400015],[-80.57884680899991,24.969875393000038],[-80.56761633999992,24.97394440300017],[-80.55565344999988,25.00901927300005],[-80.55016028599997,25.014878648000106],[-80.53408769399988,25.01658763200011],[-80.52647864499994,25.02167389500012],[-80.51231848899991,25.04287344000012],[-80.48761959499984,25.06659577000012],[-80.4808650379999,25.078436591000084],[-80.48444576699987,25.09125397300012],[-80.46304277299993,25.09398021],[-80.45238196499989,25.099188544000086],[-80.44343014199985,25.111151434000035],[-80.44823157499985,25.118557033000016],[-80.44859778599995,25.122137762000175],[-80.44481360599994,25.12205638199999],[-80.43724524599989,25.118597723],[-80.43346106699995,25.1302757830001],[-80.43903561099998,25.139797268],[-80.45042883999994,25.14354075700011],[-80.46450761599988,25.13841380400011],[-80.45856686099995,25.15619538],[-80.4134008449999,25.147406317000115],[-80.39427649599992,25.19090403900016],[-80.35732988199986,25.22736237200003],[-80.3478083979999,25.248277085],[-80.35024980399993,25.262844143000038],[-80.35765540299991,25.26935455900012],[-80.3653458319999,25.274807033000126],[-80.36896725199988,25.28611888200014],[-80.36266028599994,25.292181708000115],[-80.33063717399995,25.299546617000132],[-80.31745357999992,25.306952216000113],[-80.29059811099992,25.342759507000107],[-80.2734268869999,25.352606512000037],[-80.25161699099993,25.344468492000132],[-80.25487219999991,25.339016018000095],[-80.25812740799995,25.335150458],[-80.26170813699991,25.33242422100001],[-80.26593990799991,25.330226955000043],[-80.27269446499989,25.32367584800012],[-80.27936764199993,25.312241929],[-80.28441321499986,25.300441799000012],[-80.2864477199999,25.292669989000117],[-80.29133053299995,25.28261953300013],[-80.32054602799991,25.248277085],[-80.35334225199992,25.20555247599999],[-80.36583411399991,25.181219794000114],[-80.36148027299993,25.165716864],[-80.36148027299993,25.15949127800003]]],[[[-80.21690833199997,25.415472723],[-80.23119055899987,25.403387762000094],[-80.23253333199995,25.404730536000088],[-80.23509680899988,25.404852606000144],[-80.23802649599989,25.405951239],[-80.22435462099986,25.416083075000145],[-80.21572831899994,25.432033596000068],[-80.19994055899991,25.489813544000086],[-80.19701087099989,25.494696356000148],[-80.18822180899991,25.498358466000028],[-80.18659420499989,25.493312893000095],[-80.18846594999988,25.48541901200009],[-80.19017493399988,25.48102448100003],[-80.19391842399989,25.459214585000083],[-80.20348059799989,25.436590887000094],[-80.21690833199997,25.415472723]]],[[[-80.15831458199993,25.67926666900014],[-80.16291256399987,25.67283763200014],[-80.17560787699995,25.673407294000114],[-80.18179277299988,25.68130117400007],[-80.18032792899993,25.691880601000133],[-80.16974850199989,25.700751044000167],[-80.1735733709999,25.70286692899999],[-80.17613684799991,25.704820054000137],[-80.17886308499988,25.70648834800015],[-80.18333899599995,25.70758698100009],[-80.18333899599995,25.71381256700006],[-80.17568925699993,25.718329169000114],[-80.17007402299993,25.722845770000063],[-80.16600501199984,25.728176174000126],[-80.16291256399987,25.734930731000148],[-80.15607662699995,25.734930731000148],[-80.15831458199993,25.67926666900014]]],[[[-171.72280839799993,25.773016669000143],[-171.72935950399992,25.75193919500013],[-171.73908443899987,25.756293036000116],[-171.7406713529999,25.76902903900016],[-171.72284908799992,25.773016669000143],[-171.72280839799993,25.773016669000143]]],[[[-81.3731990229999,25.81610748900009],[-81.37071692599993,25.810126044000143],[-81.37743079299992,25.807033596000068],[-81.38756262899994,25.806097723],[-81.39321855399994,25.802191473],[-81.39708411399997,25.79759349200016],[-81.3998917309999,25.794867255],[-81.39972896999984,25.791815497000087],[-81.40322831899994,25.793524481000087],[-81.40680904899992,25.796698309000146],[-81.41771399599989,25.80878327000006],[-81.42516028599997,25.811468817000062],[-81.43333899599986,25.804754950000113],[-81.43956458199992,25.803900458],[-81.43984941299996,25.826483466000084],[-81.44123287699995,25.83250560099999],[-81.44050045499992,25.842433986000074],[-81.42951412699995,25.850897528000033],[-81.41222083199995,25.843247789000102],[-81.40518144399988,25.836981512000065],[-81.38707434799997,25.824123440000122],[-81.38048255099991,25.820949611000156],[-81.3731990229999,25.81610748900009]]],[[[-81.46515865799988,25.86566803600003],[-81.45799719999988,25.85040924700006],[-81.45612545499988,25.84186432500003],[-81.45343990799992,25.83881256700012],[-81.4505102199999,25.832342841000028],[-81.45335852799994,25.82550690300009],[-81.4596248039999,25.822821356000034],[-81.4669490229999,25.829331773000106],[-81.47105872299994,25.835272528000058],[-81.47386633999987,25.840399481000148],[-81.47956295499998,25.84760163],[-81.49526933499993,25.848700262000033],[-81.49803626199987,25.852118231000063],[-81.50283769399988,25.855454820000162],[-81.50788326699991,25.852036851000076],[-81.50837154899992,25.84731679900015],[-81.50910396999984,25.843491929000052],[-81.51097571499992,25.83685944200009],[-81.51203365799994,25.83612702000015],[-81.51211503799993,25.840277411],[-81.51496334499987,25.84300364800005],[-81.51976477799988,25.848700262000033],[-81.51691646999993,25.859767971000068],[-81.50304114499994,25.865871486000156],[-81.49445553299992,25.86762116100006],[-81.4898168609999,25.86981842700005],[-81.47435462099989,25.87246328300013],[-81.46515865799988,25.86566803600003]]],[[[-81.67613684799989,25.901271877000067],[-81.66340084499991,25.896918036000088],[-81.66002356699991,25.886542059000178],[-81.67202714799993,25.86725495000006],[-81.67739824099986,25.861476955000068],[-81.69025631399992,25.863104559000092],[-81.69615637899993,25.865790106000176],[-81.69880123599992,25.872626044000086],[-81.7015681629999,25.877508856000148],[-81.7063695949999,25.88149648600013],[-81.70856686099997,25.883775132000107],[-81.71076412699995,25.889715887000037],[-81.7084041009999,25.898667710000083],[-81.69896399599989,25.899847723],[-81.68887285099993,25.89931875200004],[-81.67613684799989,25.901271877000067]]],[[[-81.53648841099991,25.870917059000092],[-81.54576575399994,25.8536644550001],[-81.5484919909999,25.85748932500009],[-81.5464574859999,25.87274811400006],[-81.54784094999988,25.881659247000115],[-81.55402584499984,25.884507554000052],[-81.55870520699995,25.88906484600001],[-81.56102454299992,25.89484284100014],[-81.55833899599995,25.90338776200018],[-81.54588782499991,25.902411200000117],[-81.53921464799987,25.895331122000144],[-81.54222571499987,25.89386627800009],[-81.54312089799986,25.893011786000088],[-81.54100501199986,25.890122789000046],[-81.53604081899991,25.88499583500014],[-81.53355872299997,25.878648179000106],[-81.53648841099991,25.870917059000092]]],[[[-173.9591772129999,26.059637762000122],[-173.9599503249999,26.055324611000017],[-173.9656469389999,26.058579820000162],[-173.96637936099992,26.061957098000093],[-173.96519934799989,26.066107489000114],[-173.96499589799993,26.07135651200009],[-173.96283932199992,26.06663646],[-173.9605199859999,26.063137111000017],[-173.9591772129999,26.059637762000122]]],[[[-82.12922115799992,26.46112702],[-82.09626217399995,26.45453522300012],[-82.07681230399996,26.45620351800015],[-82.0684301419999,26.467962958000115],[-82.02684485599991,26.447455145000063],[-82.0455216139999,26.443752346000124],[-82.0709122389999,26.424627997000144],[-82.08824622299991,26.419501044000057],[-82.10358639199987,26.42255280200014],[-82.16392981699988,26.454291083],[-82.17503821499992,26.462469794000086],[-82.18407141799992,26.473334052],[-82.19131425699996,26.488430080000096],[-82.20067298099988,26.519598700000174],[-82.20494544199991,26.550482489000117],[-82.19627844999991,26.544501044000114],[-82.19078528599988,26.536525783000155],[-82.1871638659999,26.526922919000086],[-82.18443762899993,26.515773830000157],[-82.17589270699992,26.494940497000087],[-82.16413326699983,26.479559637000037],[-82.14879309799989,26.468573309000174],[-82.12922115799992,26.46112702]]],[[[-82.22931881399987,26.633775132000054],[-82.22545325399994,26.611273505000057],[-82.2390844389999,26.634182033000158],[-82.24767005099991,26.65436432500009],[-82.26016191299993,26.701320705000015],[-82.25548255099991,26.70123932500003],[-82.25234941299993,26.69961172100001],[-82.24596106699991,26.694525458],[-82.24453691299992,26.67080312700007],[-82.22931881399987,26.633775132000054]]],[[[-82.08096269399991,26.509019273000106],[-82.08202063699984,26.491522528000175],[-82.09508216099994,26.49583567900008],[-82.10850989499991,26.516302802000137],[-82.12364661399991,26.56537506700009],[-82.13670813699989,26.58466217700011],[-82.13243567599989,26.609808661],[-82.14574133999992,26.640122789000156],[-82.1646622389999,26.67194245000003],[-82.17764238199993,26.701320705000015],[-82.16397050699987,26.701320705000015],[-82.14391028599994,26.694647528000147],[-82.12450110599991,26.67645905200008],[-82.11363684799993,26.65436432500009],[-82.12319902299993,26.61871979400003],[-82.11156165299991,26.596380927000027],[-82.09601803299991,26.57493724200016],[-82.08824622299991,26.560451565000122],[-82.08096269399991,26.509019273000106]]],[[[-82.25910396999987,26.737250067],[-82.26642818899987,26.714992580000157],[-82.27464758999989,26.73615143400015],[-82.27782141799995,26.785060940000122],[-82.2875056629999,26.803127346000068],[-82.28148352799988,26.8094750020001],[-82.27843176999988,26.810044664000074],[-82.27383378799996,26.803127346000068],[-82.26292883999989,26.780096747000087],[-82.25796464799991,26.758530992000157],[-82.25910396999987,26.737250067]]],[[[-97.16339865099985,26.113592979000046],[-97.16637923599993,26.102846573000036],[-97.17933081399985,26.119828581000046],[-97.18831397999988,26.149335642000135],[-97.21301656699984,26.292714116000113],[-97.22716060399995,26.33741497700011],[-97.23989824099996,26.36493561400006],[-97.24917558499989,26.390814520000088],[-97.26036536399991,26.467962958000115],[-97.26838131399985,26.490383205000125],[-97.29206295499998,26.529201565000147],[-97.30134029899995,26.550482489000117],[-97.31322180899987,26.60675690300009],[-97.31810462099985,26.616441148000074],[-97.32925370999986,26.633042710000108],[-97.33788001199989,26.65395742400007],[-97.35008704299986,26.69741445500004],[-97.36339270699997,26.721177476000108],[-97.35594641799989,26.728583075000113],[-97.36253821499989,26.734442450000145],[-97.36681067599989,26.740708726000108],[-97.36921139199984,26.74778880400008],[-97.37022864499988,26.75592682500009],[-97.36823482999995,26.75995514500015],[-97.35826575399993,26.762518622000144],[-97.35594641799989,26.76585521],[-97.35700436099987,26.77155182500014],[-97.36192786399991,26.779282945000162],[-97.36339270699997,26.783270575000145],[-97.36742102799985,26.79120514500012],[-97.39753170499998,26.831000067],[-97.38805091099997,26.865545966000028],[-97.38540605399987,26.90037669500005],[-97.39391028599991,26.994289455000015],[-97.40306555899988,27.030910549000126],[-97.40501868399994,27.05076732000005],[-97.39801998599987,27.08836497600005],[-97.39708411399988,27.107326565000065],[-97.40501868399994,27.12523021000011],[-97.39696204299992,27.14618561400006],[-97.39159094999985,27.19310130400011],[-97.37706458199992,27.207831122000115],[-97.38390051999994,27.18793366100003],[-97.3762914699999,26.931626695000105],[-97.34288489499991,26.756740627000095],[-97.23867753799993,26.44578685100005],[-97.23989824099996,26.43378327000012],[-97.23127193899987,26.421087958000086],[-97.22492428299992,26.399074611000074],[-97.21219000499994,26.340282908000077],[-97.20225989499997,26.29877350500008],[-97.19831295499998,26.276109117000132],[-97.18267985699993,26.23115455599999],[-97.17742389499992,26.205007664],[-97.17067950899991,26.179523321000048],[-97.1644017779999,26.131494536],[-97.16339865099985,26.113592979000046]]],[[[-82.59308834499987,27.33982982000005],[-82.58918209499987,27.32444896000011],[-82.60667883999992,27.33665599200019],[-82.64903723899994,27.38133372600005],[-82.65746008999989,27.39679596600017],[-82.66441809799997,27.404486395],[-82.67662512899994,27.421779690000093],[-82.68097896999984,27.434068101000047],[-82.66421464799993,27.426906643],[-82.65428626199991,27.419663804],[-82.63011633999992,27.379706122000027],[-82.59308834499987,27.33982982000005]]],[[[-97.17800721699984,27.652843669],[-97.25935460499994,27.496174655000132],[-97.32025632199989,27.357574337000088],[-97.34660941699988,27.27416373000007],[-97.35164248799995,27.23517058100016],[-97.3659124909999,27.224231404000122],[-97.38809160099994,27.22394440300017],[-97.39753170499998,27.228908596000124],[-97.38975989499997,27.245550848000065],[-97.37025264099992,27.34836641800011],[-97.33875874399985,27.409122490000172],[-97.32152783399994,27.45623158600013],[-97.31239711699995,27.477972228000123],[-97.29818255999987,27.507865422000023],[-97.28295436399995,27.540472627000113],[-97.27076783899987,27.566737607000093],[-97.25723222599993,27.59275950700011],[-97.24510657499985,27.62319570500007],[-97.24400794199991,27.632635809000092],[-97.24958248599992,27.643784898000106],[-97.25413977799984,27.659654039000042],[-97.2306208979999,27.651190497000087],[-97.21922766799995,27.64394765800007],[-97.21198482999992,27.632961330000015],[-97.20571855399987,27.632961330000015],[-97.15103105399992,27.73989492400007],[-97.12385006399992,27.769517320000105],[-97.08185787699992,27.804144598],[-97.07542883999992,27.81452057500009],[-97.06753495999992,27.840887762000094],[-97.05260169199991,27.844183661000145],[-97.04401607999989,27.83527252800009],[-97.05492102799987,27.82477448100003],[-97.17800721699984,27.652843669]]],[[[-80.16722571499989,27.19700755400011],[-80.16291256399987,27.173651434000117],[-80.17731686099995,27.20221588700009],[-80.19762122299993,27.22394440300017],[-80.2081599599999,27.26292552300005],[-80.26895097599993,27.38231028900013],[-80.27277584499986,27.39679596600017],[-80.27586829299995,27.401760158000044],[-80.28954016799989,27.411810614],[-80.29259192599997,27.417303778000033],[-80.29405676999991,27.42991771000011],[-80.30687415299985,27.46165599200016],[-80.3478083979999,27.612494208000054],[-80.35676021999993,27.62933991100006],[-80.36583411399991,27.64223867400007],[-80.37291419199988,27.656561591000138],[-80.37779700399994,27.68646881700012],[-80.38678951699987,27.706732489000146],[-80.38878333199992,27.718654690000093],[-80.39110266799986,27.727443752000156],[-80.40990149599992,27.75649648600013],[-80.43846594999991,27.830471096],[-80.45091712099992,27.852036851000108],[-80.44741777299993,27.8556175800001],[-80.44456946499989,27.857489325000145],[-80.43724524599989,27.859564520000088],[-80.43724524599989,27.854559637000033],[-80.43553626199989,27.8517113300001],[-80.43272864499994,27.849351304000137],[-80.42979895699992,27.84589264500015],[-80.42218990799998,27.804999091000113],[-80.40192623599995,27.76414622600005],[-80.36148027299993,27.701239325000117],[-80.34723873599992,27.664129950000117],[-80.34276282499985,27.643255927000137],[-80.34105383999986,27.62246328300013],[-80.33763587099995,27.606634833000115],[-80.16722571499989,27.19700755400011]]],[[[-97.02867591099992,27.87152741100003],[-97.03441321499992,27.852036851000108],[-97.04303951699993,27.870306708],[-97.02977454299989,27.900580145000088],[-96.99347896999988,27.948309637000033],[-96.9639786449999,27.976711330000068],[-96.95933997299987,27.983058986000103],[-96.95303300699993,27.994208075000117],[-96.95335852799988,28.00031159100011],[-96.97256425699992,28.005031643],[-96.97256425699992,28.00991445500007],[-96.91405188699984,28.099107164000046],[-96.90025794199994,28.101955471000096],[-96.89289303299995,28.109198309000092],[-96.88760331899988,28.11920807500009],[-96.88023841099988,28.130113023000078],[-96.8675837879999,28.135565497000115],[-96.85484778599995,28.130682684000035],[-96.84536699099995,28.121242580000015],[-96.84264075399989,28.11277903900016],[-96.84569251199989,28.10285065300017],[-96.84715735599985,28.080471096000153],[-96.85008704299986,28.071193752000013],[-96.93822180899988,27.983058986000103],[-96.97923743399987,27.92780182500009],[-97.01463782499988,27.890936591000024],[-97.02867591099992,27.87152741100003]]],[[[-80.62901770699992,28.181057033000073],[-80.63646399599988,28.181057033000073],[-80.63801021999993,28.193426825000113],[-80.6406957669999,28.204169012000037],[-80.64858964799987,28.22272370000003],[-80.63198808499993,28.19041575700011],[-80.62901770699992,28.181057033000073]]],[[[-96.40672766799989,28.34442780200008],[-96.41515051999991,28.333075262000094],[-96.41685950399992,28.328762111000103],[-96.48949133999992,28.29710521000011],[-96.5223282539999,28.289618231000144],[-96.5535375639999,28.271429755000057],[-96.60863196499994,28.22943756700009],[-96.70262610599988,28.18553294500005],[-96.72765051999991,28.16160716400016],[-96.78115800699993,28.126450914000102],[-96.80870520699995,28.103257554],[-96.82087154899992,28.08832428600014],[-96.82835852799991,28.071193752000013],[-96.83580481699997,28.071193752000013],[-96.83250891799993,28.088771877000127],[-96.82428951699984,28.10748932500009],[-96.81322180899991,28.12368398600016],[-96.80166581899988,28.133856512000094],[-96.80166581899988,28.140082098000065],[-96.80899003799988,28.151434637000033],[-96.81236731699991,28.170111395],[-96.80776933499996,28.187648830000157],[-96.79112708199992,28.19525788],[-96.77074133999992,28.197455145000088],[-96.73851477799987,28.206854559000092],[-96.72223873599987,28.2089704450001],[-96.7103572259999,28.213364976000022],[-96.67210852799984,28.23371002800009],[-96.66388912699995,28.239691473],[-96.65428626199989,28.257147528000147],[-96.61204993399986,28.277492580000157],[-96.60244706899988,28.287502346000124],[-96.59479732999995,28.292669989000146],[-96.54845130099997,28.311428127000013],[-96.52806555899988,28.330145575000174],[-96.51496334499993,28.336818752000127],[-96.49323482999995,28.33930084800015],[-96.45543372299991,28.336004950000117],[-96.44322669199991,28.34137604400017],[-96.43114173099991,28.35976797100004],[-96.43049068899987,28.367824611000156],[-96.43146725199995,28.38898346600014],[-96.42772376199991,28.393296617000075],[-96.41881262899997,28.395086981000063],[-96.41234290299988,28.39752838700018],[-96.40758216099987,28.39638906500015],[-96.40379798099985,28.387111721000096],[-96.40298417899993,28.36078522300009],[-96.40379798099985,28.352362372000027],[-96.40672766799989,28.34442780200008]]],[[[-178.29839705799992,28.387372162000144],[-178.30271836599988,28.38646472500004],[-178.30436616299988,28.387912197000063],[-178.29798837599995,28.390993294000097],[-178.29428678199992,28.394978087000098],[-178.29243673899987,28.3980567360001],[-178.29038113899986,28.401678575000105],[-178.2879047809999,28.39298946100014],[-178.29222476199993,28.390090854000118],[-178.29839705799992,28.387372162000144]]],[[[-96.35008704299987,28.408880927000055],[-96.36969967399995,28.406927802000027],[-96.36969967399995,28.414455471000064],[-96.31289628799988,28.458563544000143],[-96.27525794199991,28.478705145],[-96.23253333199989,28.489488023000018],[-96.23253333199989,28.48273346600014],[-96.24046790299985,28.481919664000046],[-96.24461829299989,28.480169989000057],[-96.24787350199992,28.477769273000106],[-96.24673417899989,28.475246486000103],[-96.25495357999989,28.471096096000153],[-96.27603105399993,28.45709870000009],[-96.28392493399988,28.447658596000068],[-96.30821692599997,28.44171784100014],[-96.33372962099986,28.418850002000127],[-96.35008704299987,28.408880927000055]]],[[[-80.6121720039999,28.568833726000136],[-80.61847896999984,28.537665106000144],[-80.64952551999997,28.475246486000103],[-80.65819251199986,28.437486070000134],[-80.66421464799987,28.31509023600016],[-80.66893469999988,28.29706452000012],[-80.66999264199991,28.287502346000124],[-80.66795813699989,28.27594635600012],[-80.65900631399987,28.25629303600006],[-80.65147864499991,28.239976304000137],[-80.6497696609999,28.225165106000144],[-80.66494706899991,28.252590236000017],[-80.70018469999994,28.348089911000116],[-80.71471106699988,28.3697777360001],[-80.71963456899994,28.388332424000012],[-80.72834225199992,28.469061591000028],[-80.7374161449999,28.48484935100008],[-80.73989824099993,28.517482815000122],[-80.73228919199991,28.544623114000142],[-80.71092688699986,28.544134833000058],[-80.70470130099989,28.560614325000028],[-80.6986384759999,28.56777578300007],[-80.67747962099989,28.578924872000087],[-80.65550696499989,28.59332916900017],[-80.64293372299989,28.59813060100005],[-80.62901770699992,28.598781643],[-80.6121720039999,28.568833726000136]]],[[[-82.68321692599991,28.737738348000146],[-82.67760169199991,28.736070054000137],[-82.67271887899994,28.7370466170001],[-82.66600501199991,28.734442450000117],[-82.66706295499995,28.722357489],[-82.67227128799992,28.71523672100015],[-82.6737361319999,28.714422919000143],[-82.67821204299989,28.714260158000073],[-82.68187415299994,28.716945705000153],[-82.68187415299994,28.720851955000157],[-82.69603430899986,28.725572007000054],[-82.69587154899989,28.728949286000088],[-82.69200598899988,28.729152736000128],[-82.68814042899987,28.728989976000076],[-82.68561764199987,28.73004791900003],[-82.68927975199992,28.73175690300003],[-82.68895423099988,28.73529694200003],[-82.68321692599991,28.737738348000146]]],[[[-82.68219967399993,28.760321356000116],[-82.69253495999996,28.760239976000136],[-82.69737708199995,28.76146067900005],[-82.69640051999997,28.76398346600017],[-82.69273841099991,28.769354559000035],[-82.69163977799988,28.773098049000065],[-82.6954646479999,28.77643463700009],[-82.6975805329999,28.782294012000037],[-82.69493567599991,28.78758372600011],[-82.68809973899987,28.788153387000175],[-82.67992102799988,28.784654039000188],[-82.67349199099996,28.777085679000134],[-82.67381751199989,28.76666901200015],[-82.68219967399993,28.760321356000116]]],[[[-90.87962805899988,29.05125560099999],[-90.91510982999995,29.05125560099999],[-90.94371497299994,29.060777085],[-90.90318762899992,29.05719635600012],[-90.87962805899988,29.05125560099999]]],[[[-90.64395097599993,29.070624091000113],[-90.65632076699985,29.063218492000132],[-90.67275956899992,29.0572777360001],[-90.7494197259999,29.04096100500008],[-90.76520748599995,29.04096100500008],[-90.7671606109999,29.04706452000006],[-90.73997962099989,29.05288320500001],[-90.73501542899993,29.057603257000107],[-90.71410071499989,29.06541575700011],[-90.7082413399999,29.06541575700011],[-90.70543372299987,29.061753648000074],[-90.69684811099998,29.059230861000128],[-90.6840714179999,29.060858466000173],[-90.67662512899994,29.06517161700016],[-90.67357337099986,29.06793854400003],[-90.65709387899997,29.066839911000088],[-90.6520889959999,29.067206122000083],[-90.64883378799986,29.069403387000094],[-90.64220130099991,29.072943427000084],[-90.64395097599993,29.070624091000113]]],[[[-90.41397050699993,29.052435614000117],[-90.41340084499987,29.048570054000106],[-90.42015540299991,29.04873281500006],[-90.46458899599992,29.057806708000086],[-90.51235917899987,29.07485586100013],[-90.51097571499989,29.080308335000083],[-90.45230058499996,29.06956614800005],[-90.42857825399994,29.061224677],[-90.41738847599994,29.055487372000115],[-90.41397050699993,29.052435614000117]]],[[[-90.28384355399996,29.078558661000088],[-90.34654700399994,29.05805084800012],[-90.31859290299991,29.078558661000088],[-90.31078040299991,29.082424221000068],[-90.30256100199992,29.084906317],[-90.29360917899989,29.086127020000117],[-90.28384355399996,29.08600495000014],[-90.28384355399996,29.078558661000088]]],[[[-83.0367732409999,29.13751862200003],[-83.04995683499993,29.131984768],[-83.05817623599995,29.13617584800012],[-83.05752519399991,29.150091864000117],[-83.05028235599988,29.155707098000118],[-83.04295813699986,29.151271877000124],[-83.03819739499997,29.14520905200006],[-83.03294837099989,29.14126211100016],[-83.02965247299993,29.139797268000013],[-83.0367732409999,29.13751862200003]]],[[[-90.4500219389999,29.235093492000047],[-90.4525447259999,29.224025783000013],[-90.45360266799986,29.23798248900009],[-90.44627844999988,29.260321356000116],[-90.43455969999988,29.26447174700014],[-90.43382727799994,29.255113023000106],[-90.44025631399987,29.247707424000122],[-90.44676673099985,29.242132880000113],[-90.4500219389999,29.235093492000047]]],[[[-90.02375240799994,29.21637604400017],[-90.03062903599992,29.21637604400017],[-90.02428137899992,29.238470770000063],[-90.00169837099995,29.249090887000094],[-89.97663326699987,29.256903387000097],[-89.96296139199993,29.270982164000042],[-89.95547441299993,29.270982164000042],[-89.96296139199993,29.264146226000108],[-89.95547441299993,29.2573102890001],[-89.97614498599995,29.245062567000144],[-90.01036536399994,29.22943756700006],[-90.02375240799994,29.21637604400017]]],[[[-89.91445878799993,29.284857489000114],[-89.92926998599992,29.276597398000046],[-89.93895423099987,29.27724844000009],[-89.93382727799985,29.2845726580001],[-89.92784583199995,29.28815338700015],[-89.92275956899991,29.289292710000026],[-89.91315670499995,29.290228583],[-89.91445878799993,29.284857489000114]]],[[[-94.81427975199989,29.35293203300007],[-94.72440897099997,29.333154895000074],[-94.89165498399987,29.224861529000165],[-94.94724846499992,29.19391369300014],[-95.07595538699991,29.114043627000157],[-95.10828104999989,29.088597249000042],[-95.1165435909999,29.088992912000023],[-95.10225587999992,29.11117147],[-95.08128077599991,29.136083932000172],[-95.03400299099992,29.162938401000147],[-94.96776541699992,29.20787631400016],[-94.94309885699994,29.222860288000124],[-94.9287406689999,29.23689138800013],[-94.92072506399987,29.25047435099999],[-94.91722571499989,29.255316473000065],[-94.87511145699992,29.28461334800009],[-94.86681067599994,29.299953518000123],[-94.86204993399994,29.305121161000145],[-94.83983313699989,29.310492255],[-94.83788001199993,29.311265367000104],[-94.82803300699993,29.31761302300005],[-94.82164466099991,29.33112213700012],[-94.8242895169999,29.343329169000086],[-94.84154212099989,29.346096096000153],[-94.84154212099989,29.35293203300007],[-94.83649654899993,29.352362372000112],[-94.83527584499984,29.353989976000133],[-94.83527584499984,29.35683828300007],[-94.83409583199992,29.359767971000093],[-94.8319392569999,29.360174872000087],[-94.82787024599986,29.359767971000093],[-94.82701575399993,29.353949286000145],[-94.81427975199989,29.35293203300007]]],[[[-89.1826065749999,29.47313060100005],[-89.20323645699992,29.469142971000096],[-89.22183183499993,29.46963125200007],[-89.1878149079999,29.480373440000093],[-89.17300370999992,29.48932526200012],[-89.16783606699991,29.503729559000178],[-89.16315670499992,29.504461981000116],[-89.16161048099988,29.503159898000106],[-89.1613663399999,29.500637111000103],[-89.16038977799985,29.497503973000118],[-89.16624915299988,29.482367255000113],[-89.1826065749999,29.47313060100005]]],[[[-90.10464433499992,29.511379299000012],[-90.09581458199996,29.510077216000113],[-90.08177649599992,29.511297919000025],[-90.06110592399989,29.504543361000103],[-90.05357825399993,29.500474351000136],[-90.0489802729999,29.496649481000116],[-90.04108639199984,29.493394273000074],[-90.03010006399987,29.49091217700014],[-90.02041581899991,29.486639716000028],[-90.01455644399996,29.478583075000085],[-90.01805579299986,29.474351304000077],[-90.02839107999998,29.47540924700003],[-90.02814693899992,29.47190989800005],[-90.01805579299986,29.461330471000096],[-90.00910396999983,29.457586981000148],[-90.0018611319999,29.459621486000074],[-89.9984431629999,29.46124909100011],[-89.99730383999986,29.465562242000104],[-89.99571692599994,29.46474844],[-89.99486243399994,29.459377346000124],[-89.99494381399992,29.456610419000082],[-89.99323482999992,29.45844147300006],[-89.9915258449999,29.455715236000103],[-89.99168860599988,29.44863515800013],[-89.99583899599992,29.444810289000102],[-90.00104732999988,29.44570547100001],[-90.01573645699987,29.443793036000145],[-90.02131100199992,29.44830963700009],[-90.02489173099987,29.456854559000035],[-90.03148352799985,29.463283596000124],[-90.03921464799987,29.46442291900017],[-90.04434160099987,29.46141185100008],[-90.04995683499986,29.46141185100008],[-90.05378170499989,29.463527736000074],[-90.05768795499989,29.466213283000155],[-90.06208248599998,29.47284577000012],[-90.06135006399984,29.477240302000112],[-90.05882727799994,29.478013414000127],[-90.06419837099989,29.47866445500007],[-90.07860266799995,29.476629950000145],[-90.09194902299996,29.47353750200007],[-90.10179602799988,29.478338934000146],[-90.11900794199991,29.496242580000015],[-90.11986243399991,29.50551992400007],[-90.11351477799988,29.51072825700005],[-90.10464433499992,29.511379299000012]]],[[[-89.09142005099991,29.523911851000108],[-89.09850012899997,29.520941473],[-89.05703691299996,29.562079169000175],[-89.05479895699997,29.563625393000038],[-89.04991614499991,29.56500885600009],[-89.05402584499987,29.55951569200006],[-89.08409583199992,29.52944570500013],[-89.09142005099991,29.523911851000108]]],[[[-88.96882076699988,29.63857656500006],[-88.97826087099989,29.631659247000172],[-88.97960364499988,29.632879950000085],[-88.97008216099988,29.639797268000095],[-88.96450761599986,29.642767645],[-88.96882076699988,29.63857656500006]]],[[[-91.80207271999988,29.490057684000032],[-91.8404841789999,29.483832098000093],[-91.8980199859999,29.517035223],[-91.90819251199994,29.521144924000154],[-91.91844641799986,29.529974677000027],[-92.02049719999985,29.568752346000128],[-92.03652910099993,29.58209870000006],[-92.03538977799991,29.59617747599999],[-92.01231848899994,29.613714911000113],[-91.99327551999993,29.618841864000146],[-91.97370357999998,29.620510158000155],[-91.94912675699996,29.627264716000084],[-91.94351152299987,29.63153717699999],[-91.93333899599992,29.643947658000126],[-91.92926998599985,29.6471214860001],[-91.91710364499997,29.648138739000057],[-91.86139889199987,29.63719310099999],[-91.84557044199994,29.628241278000147],[-91.81997636599996,29.606146552000084],[-91.78994706899991,29.594631252000124],[-91.78868567599989,29.592474677000137],[-91.75853430899988,29.586737372000172],[-91.73395748599987,29.585028387000147],[-91.72020423099994,29.581732489000117],[-91.71397864499987,29.57371653900016],[-91.72321529899993,29.558986721000096],[-91.75963294199991,29.541164455000015],[-91.7731013659999,29.53099192900008],[-91.77843176999997,29.51430898600013],[-91.77863521999993,29.500555731000116],[-91.78083248599992,29.493353583000086],[-91.7877498039999,29.490545966000028],[-91.80207271999988,29.490057684000032]]],[[[-85.08608964799993,29.685736395000063],[-85.0836482409999,29.675034898000135],[-85.0892634759999,29.67015208500005],[-85.09581458199989,29.66242096600014],[-85.10130774599992,29.65326569200006],[-85.10358639199988,29.64398834800012],[-85.1087133449999,29.634019273000135],[-85.12035071499992,29.633978583000143],[-85.14175370999995,29.64085521000014],[-85.15046139199983,29.64447663000003],[-85.15807044199988,29.652655341000113],[-85.16510982999995,29.661932684000146],[-85.17186438699989,29.66885000200007],[-85.18228105399987,29.67397695500007],[-85.20230058499993,29.680975653000143],[-85.2127986319999,29.688706773000078],[-85.17153886599996,29.683254299000126],[-85.15306555899994,29.684637762000122],[-85.13829505099994,29.69550202],[-85.11367753799993,29.691961981000116],[-85.10045325399992,29.688055731000116],[-85.08775794199994,29.68683502800009],[-85.08608964799993,29.685736395000063]]],[[[-88.9254044259999,29.68309153900016],[-88.9388321609999,29.673285223000118],[-88.87409420499989,29.747463283000076],[-88.88955644399994,29.72532786700019],[-88.9254044259999,29.68309153900016]]],[[[-84.96947180899991,29.611761786000084],[-84.99087480399987,29.606146552000084],[-85.04918372299997,29.60586172100012],[-85.07127844999988,29.611761786000084],[-85.09732011599993,29.627264716000084],[-85.08120683499996,29.623968817000147],[-85.05402584499986,29.609442450000113],[-85.03156490799995,29.61090729400017],[-84.98745683499995,29.62042877800018],[-84.77456620999993,29.709784247000083],[-84.77131100199998,29.71381256700006],[-84.77090410099987,29.71832916900011],[-84.76817786399991,29.72190989799999],[-84.7578832669999,29.72345612200003],[-84.74998938699991,29.725490627000152],[-84.74559485599994,29.729966539000127],[-84.7422582669999,29.73444245000009],[-84.73737545499992,29.73647695500001],[-84.72411048099991,29.740301825000028],[-84.70523027299987,29.758490302000112],[-84.69269771999987,29.764390367000047],[-84.69269771999987,29.756984768000066],[-84.69835364499997,29.754584052000112],[-84.70661373599995,29.74803294500005],[-84.7063695949999,29.743963934000178],[-84.7289119129999,29.73582591400016],[-84.78823808499996,29.69550202],[-84.8878474599999,29.657945054],[-84.90876217399997,29.64248281500006],[-84.96947180899991,29.611761786000084]]],[[[-89.43521074099993,29.772284247000027],[-89.43211829299986,29.757635809000117],[-89.42731686099998,29.743963934000178],[-89.4402563139999,29.74848053600014],[-89.44741777299993,29.757798570000162],[-89.45238196499989,29.76703522300015],[-89.45860755099994,29.77122630400008],[-89.4669083319999,29.766424872000087],[-89.47671464799991,29.743719794000054],[-89.48997962099988,29.73647695500001],[-89.49404863199993,29.77879466400013],[-89.49058997299994,29.793768622000144],[-89.47569739499995,29.80536530200008],[-89.46336829299992,29.798895575000177],[-89.45860755099994,29.79539622599999],[-89.45518958199992,29.79169342700014],[-89.44131425699993,29.784613348000065],[-89.43521074099993,29.772284247000027]]],[[[-89.33543860599994,29.812201239],[-89.30435136599993,29.80536530200008],[-89.29360917899993,29.807114976000076],[-89.28376217399989,29.811021226000076],[-89.27717037699992,29.81207916900003],[-89.27647864499987,29.80536530200008],[-89.2906794909999,29.77122630400008],[-89.33702551999997,29.806626694999988],[-89.33543860599994,29.812201239]]],[[[-84.6087133449999,29.78925202],[-84.66470292899996,29.77871328300013],[-84.65684973899997,29.78705475500011],[-84.61701412699989,29.80536530200008],[-84.59341386599993,29.81854889500012],[-84.58360755099991,29.821844794000143],[-84.57640540299988,29.81976959800012],[-84.5863337879999,29.799953518000123],[-84.6087133449999,29.78925202]]],[[[-89.28482011599993,29.923488674000122],[-89.29393469999994,29.92007070500013],[-89.29548092399997,29.924627997000172],[-89.27904212099989,29.93720123900006],[-89.26105709499987,29.943345445000045],[-89.23436438699991,29.948431708000058],[-89.2387589179999,29.94135163],[-89.23884029899989,29.93626536700016],[-89.23550370999996,29.931626695000052],[-89.24058997299989,29.92934804900007],[-89.2552791009999,29.92934804900007],[-89.27407792899992,29.926336981000176],[-89.28482011599993,29.923488674000122]]],[[[-89.32258053299992,29.917181708],[-89.32787024599988,29.915920315000093],[-89.31773841099994,29.92609284100003],[-89.30943762899993,29.93650950700011],[-89.30435136599993,29.945990302000112],[-89.29381262899997,29.962103583],[-89.27806555899991,29.982123114000057],[-89.27293860599991,29.98208242400007],[-89.2806290359999,29.965765692000147],[-89.29580644399991,29.942206122000112],[-89.3041072259999,29.93235911700016],[-89.32258053299992,29.917181708]]],[[[-88.82957923099991,29.810288804000137],[-88.85456295499992,29.769191799000122],[-88.85338294199991,29.774603583],[-88.85358639199987,29.780218817],[-88.85545813699991,29.78595612200014],[-88.85936438699991,29.79169342700014],[-88.82994544199991,29.84341054900007],[-88.82396399599992,29.860663153000175],[-88.82335364499994,29.91299062700007],[-88.82396399599992,29.928900458000086],[-88.81777910099993,29.93512604400014],[-88.83214270699992,29.962347723000153],[-88.83625240799995,29.978420315000122],[-88.83141028599988,29.989691473000036],[-88.83824622299991,29.997219143000066],[-88.84801184799994,30.03310781500007],[-88.85757402299993,30.048041083000115],[-88.87242591099987,30.058661200000145],[-88.85045325399997,30.04682038],[-88.84007727799988,30.025458075000028],[-88.83214270699992,30.001857815],[-88.81777910099993,29.983547268000123],[-88.8109431629999,29.915228583000147],[-88.82103430899988,29.83266836100016],[-88.82957923099991,29.810288804000137]]],[[[-89.42491614499994,30.14256419500013],[-89.43126380099994,30.133368231000148],[-89.43936113199989,30.13654205900004],[-89.43301347599994,30.145697333000115],[-89.42642167899987,30.14838288],[-89.42491614499994,30.14256419500013]]],[[[-89.22183183499993,30.07290273600016],[-89.21654212099995,30.06321849200019],[-89.21564693899987,30.058661200000145],[-89.20811926999991,30.063177802000112],[-89.20221920499995,30.067857164000127],[-89.19766191299993,30.073187567],[-89.19448808499996,30.07973867400007],[-89.18834387899996,30.07973867400007],[-89.1874080069999,30.06321849200019],[-89.19176184799987,30.049139716000138],[-89.20116126199991,30.04157135600012],[-89.21564693899987,30.044989325000117],[-89.22207597599987,30.03375885600012],[-89.22887122299991,30.035956122000112],[-89.24299068899984,30.052435614],[-89.24600175699993,30.057114976000104],[-89.24889075399997,30.064032294000114],[-89.25304114499991,30.070257880000085],[-89.26036536399991,30.07290273600016],[-89.2672419909999,30.07062409100008],[-89.27257239499988,30.065741278000118],[-89.27578691299992,30.06085846600014],[-89.27647864499987,30.058661200000145],[-89.28384355399987,30.05951569200006],[-89.28823808499996,30.061997789000156],[-89.29116777299988,30.064846096000128],[-89.29442298099994,30.066066799000126],[-89.30125891799995,30.063950914000127],[-89.30699622299991,30.05927155200011],[-89.31069902299996,30.05459219],[-89.31183834499988,30.052435614],[-89.3321020169999,30.0489769550001],[-89.33926347599994,30.052679755000142],[-89.34532630099994,30.066066799000126],[-89.33348548099988,30.067572333],[-89.31993567599991,30.070949611000017],[-89.30894934799997,30.076076565000125],[-89.30435136599993,30.0831566430001],[-89.29771887899997,30.08397044500002],[-89.28490149599992,30.08397044500002],[-89.27668209499984,30.089504299],[-89.28392493399984,30.107082424000154],[-89.26862545499989,30.111558335000115],[-89.25446529899997,30.11798737200003],[-89.2293188139999,30.134344794000054],[-89.20986894399991,30.154771226000104],[-89.19640051999991,30.164984442000144],[-89.18081620999992,30.16852448100003],[-89.18081620999992,30.161688544000114],[-89.19440670499998,30.155259507],[-89.20714270699992,30.146429755000142],[-89.23546301999997,30.12067291900011],[-89.24990800699993,30.10199616100012],[-89.23619544199991,30.093491929],[-89.21861731699995,30.086737372000147],[-89.22183183499993,30.07290273600016]]],[[[-88.94273841099991,30.213812567000147],[-88.96930904899997,30.210638739000085],[-88.96735592399992,30.21430084800012],[-88.94078528599997,30.21751536700019],[-88.92784583199995,30.217596747000172],[-88.94273841099991,30.213812567000147]]],[[[-88.42735755099989,30.216253973000093],[-88.4341934889999,30.20941803600006],[-88.46971594999988,30.210842190000122],[-88.50304114499997,30.216253973000093],[-88.50304114499997,30.223781643000123],[-88.42735755099989,30.216253973000093]]],[[[-89.06480872299997,30.236761786000148],[-89.06818600199998,30.22581614800008],[-89.08462480399987,30.195786851000108],[-89.08946692599994,30.196600653000033],[-89.09251868399986,30.197658596000096],[-89.09528561099992,30.199530341000138],[-89.09894771999987,30.2032738300001],[-89.0948380199999,30.20612213700004],[-89.08950761599992,30.21198151200015],[-89.08462480399987,30.216253973000093],[-89.09215247299994,30.223781643000123],[-89.09894771999987,30.216253973000093],[-89.10798092399997,30.227118231000148],[-89.12140865799995,30.230861721],[-89.15355383999992,30.22992584800012],[-89.15355383999992,30.236761786000148],[-89.10130774599992,30.23505280200014],[-89.07701575399994,30.24079010600009],[-89.06480872299997,30.257798570000073],[-89.05797278599994,30.257798570000073],[-89.05748450399994,30.252671617000047],[-89.06297766799989,30.249741929000137],[-89.06554114499991,30.24697500200007],[-89.06480872299997,30.236761786000148]]],[[[-88.54645748599991,30.220363674000126],[-88.55626380099993,30.21674225500008],[-88.75633704299986,30.244208075000117],[-88.75633704299986,30.250433661000088],[-88.73131262899994,30.257228908000098],[-88.69782467399989,30.25787995000014],[-88.66519120999993,30.252386786000116],[-88.64305579299987,30.24046458500008],[-88.62120520699992,30.231512762000147],[-88.55968176999997,30.23114655200014],[-88.5379125639999,30.224432684000092],[-88.54645748599991,30.220363674000126]]],[[[-88.09097245999993,30.24469635600009],[-88.31126868399986,30.236761786000148],[-88.29698645699995,30.24469635600009],[-88.20482337099989,30.257798570000073],[-88.14964758999986,30.257798570000073],[-88.13463294199993,30.25999583500005],[-88.12531490799998,30.26508209800009],[-88.11803137899996,30.27114492400007],[-88.10903886599996,30.276109117000132],[-88.07111568899984,30.257798570000073],[-88.07111568899984,30.250433661000088],[-88.08409583199992,30.245917059000117],[-88.09097245999993,30.24469635600009]]],[[[-86.61709550699993,30.412014065000093],[-86.52183997299997,30.40127187700007],[-86.53014075399994,30.396877346000096],[-86.54027258999992,30.395412502000042],[-86.55138098899992,30.396795966000113],[-86.56240800699987,30.4011091170001],[-86.56261145699992,30.401190497000087],[-86.56281490799998,30.40127187700007],[-86.56273352799991,30.401190497000087],[-86.56261145699992,30.401149807000095],[-86.56248938699986,30.4011091170001],[-86.90184485599991,30.363613186000077],[-87.2412003249999,30.326117255000053],[-87.29649817599989,30.332342841000024],[-87.27822831899994,30.338120835000083],[-87.19713294199987,30.33978913],[-87.08116614499991,30.356634833],[-87.02277584499984,30.374579169000143],[-86.95173092399997,30.3739281270001],[-86.92711341099988,30.380764065],[-86.91820227799994,30.383978583000058],[-86.89069576699988,30.393133856000148],[-86.87531490799994,30.395005601000104],[-86.83141028599994,30.393622137000033],[-86.72402910099987,30.4062360700001],[-86.70059160099989,30.414943752000013],[-86.69375566299988,30.408107815000093],[-86.65925045499995,30.415838934000092],[-86.61709550699993,30.412014065000093]]],[[[-81.45421301999993,30.734849351000076],[-81.4616593089999,30.72581614800005],[-81.46914628799988,30.729315497000144],[-81.47874915299985,30.805975653000118],[-81.47801673099994,30.831691799000154],[-81.47874915299985,30.84007396000011],[-81.4815974599999,30.84886302299999],[-81.49046790299985,30.868109442000115],[-81.49242102799991,30.87421295800011],[-81.48216712099986,30.90436432500003],[-81.43268795499992,30.938788153000175],[-81.4241430329999,30.970404364000057],[-81.41730709499987,30.970404364000057],[-81.41706295499992,30.949896552],[-81.41942298099987,30.925279039000188],[-81.42829342399995,30.892564195000077],[-81.4319555329999,30.863104559000178],[-81.44155839799987,30.82737864800005],[-81.45702063699989,30.799750067000147],[-81.45714270699995,30.784572658000155],[-81.45079505099991,30.75446198100003],[-81.45421301999993,30.734849351000076]]],[[[-81.26171836599994,31.387792473000115],[-81.27961053799993,31.385481299000116],[-81.29121018299992,31.395217086000105],[-81.3003204389999,31.411516397000085],[-81.28907636599985,31.439955905000044],[-81.27136743399993,31.46190300300016],[-81.25755547199992,31.49035609],[-81.2512893839999,31.50457806900009],[-81.23485087599994,31.52650110200007],[-81.22078058499989,31.527681633000142],[-81.20290879399991,31.53433406400016],[-81.18496334999995,31.530085360000058],[-81.1746502579999,31.52142108200003],[-81.18600798799986,31.502812252000165],[-81.1986311439999,31.483102318000146],[-81.21371490499988,31.45355940300011],[-81.23528985199994,31.433784704000132],[-81.26171836599994,31.387792473000115]]],[[[-81.14960126499992,31.587015093],[-81.16095992399994,31.56731375000008],[-81.17507115399991,31.57050276100013],[-81.17009019999989,31.586896920000086],[-81.16763960299991,31.600002680000085],[-81.17799249799985,31.611943952],[-81.17948452999985,31.635942425000124],[-81.17193917999994,31.652357992000148],[-81.16055492399991,31.669889304000133],[-81.14925805099992,31.69833870400011],[-81.13643453199984,31.698409526000106],[-81.13125953399991,31.692978298000142],[-81.13371571699984,31.679863862000143],[-81.13352662599993,31.65694127500005],[-81.12816894999992,31.628596155000153],[-81.13828311299994,31.612172422000082],[-81.14960126499992,31.587015093]]],[[[-118.59569063399994,33.03528130100007],[-118.58985748799985,33.02996711600012],[-118.57716484499993,33.032455749000135],[-118.5643671129999,33.02376211100007],[-118.56546545899992,33.018407652000164],[-118.56018012599989,33.00633069700011],[-118.5497872989999,33.001576939000145],[-118.54504930999992,32.985612929000084],[-118.51602297599992,32.95816231800016],[-118.50442405699988,32.94132922400014],[-118.48356260199989,32.921599942000014],[-118.46673894099983,32.91481984800002],[-118.45066160199993,32.89762455500012],[-118.40710968799993,32.86425786299999],[-118.38198355999995,32.84766240200018],[-118.3587663919999,32.82782849700011],[-118.35094153599994,32.81867096600003],[-118.36359615799984,32.816839911000145],[-118.38418070099992,32.824391357000124],[-118.4014833799999,32.81999013800011],[-118.40416419199994,32.812404690000065],[-118.41136633999986,32.80980052300008],[-118.42501108799989,32.80241614000006],[-118.42904342299992,32.80287277400011],[-118.43836738799993,32.81692165800013],[-118.44991504599996,32.818819046000115],[-118.47426315399989,32.8381217230001],[-118.48990124899987,32.84490356400009],[-118.49914971899993,32.85062791900004],[-118.50677171099989,32.86524926000014],[-118.50859538399986,32.87646877300001],[-118.52015155999992,32.88546686900007],[-118.53123481199991,32.90340769500007],[-118.53759317099993,32.9057514980001],[-118.5469177389999,32.918750014000025],[-118.54818761999988,32.937190824000126],[-118.55170185099986,32.9454111190001],[-118.55868924599989,32.953108413000066],[-118.57554647899988,32.96900434100009],[-118.57990475199996,32.98777903900019],[-118.58675346699988,33.00332965800014],[-118.59375944499993,33.01394606600003],[-118.60824456899994,33.01437678400008],[-118.60721528699995,33.03085635200015],[-118.59569063399994,33.03528130100007]]],[[[-79.36095130099997,33.005682684000035],[-79.36839758999994,33.005682684000035],[-79.36807206899991,33.02488841400019],[-79.36310787699998,33.04303620000009],[-79.35309811099998,33.05756256700012],[-79.33775794199994,33.06614817900005],[-79.33556067599994,33.064683335],[-79.33511308499993,33.06317780200014],[-79.33657792899989,33.061712958000086],[-79.34044348899991,33.06024811400012],[-79.34162350199995,33.045233466000084],[-79.36095130099997,33.005682684000035]]],[[[-119.51333998999985,33.276456669000034],[-119.49784820799988,33.26612482700015],[-119.48860446699985,33.26718812600011],[-119.48253091599985,33.263603347000135],[-119.46220396799994,33.256544526000155],[-119.44339065499986,33.242169710000056],[-119.43446258299993,33.231317053000154],[-119.43433697499984,33.22401178600002],[-119.43918244799993,33.219843984000065],[-119.44681267799984,33.21929584500016],[-119.45658263299988,33.21598048700004],[-119.4685945649999,33.21629215500015],[-119.4729420589999,33.21532426300011],[-119.48718059899991,33.217886180000065],[-119.49101544099994,33.21875213000014],[-119.49536509099995,33.21732714000008],[-119.50251455299987,33.2208911690001],[-119.51509998899989,33.22210224200002],[-119.52338228399985,33.227932842000186],[-119.54418833299988,33.23131974400009],[-119.56690933999992,33.247472164000115],[-119.56700365399992,33.25249603000013],[-119.5742254719999,33.25879713000002],[-119.57269858099994,33.2647556640001],[-119.57892604399986,33.27609667500009],[-119.57789412899984,33.27930804400016],[-119.56244784599991,33.271741240000054],[-119.55058211199993,33.28011705700011],[-119.54288642399993,33.28017829500014],[-119.5321034899999,33.286278258],[-119.51333998999985,33.276456669000034]]],[[[-118.53586083799986,33.47727816200013],[-118.53010272599992,33.46997617500001],[-118.52437788599993,33.466714878000104],[-118.51774751599996,33.459782452000084],[-118.50805799699991,33.45468097300015],[-118.49970617399988,33.451812500000024],[-118.49968279499988,33.44815369700007],[-118.4987703209999,33.442665713000125],[-118.4930605779999,33.441589198000045],[-118.49044210499996,33.44342164500016],[-118.48563653699989,33.4448765930001],[-118.48432964099993,33.447093576000114],[-118.47690071499987,33.44744540300009],[-118.47249928899994,33.441963898000054],[-118.4680757839999,33.442408711],[-118.46282369299992,33.43984386600006],[-118.45754044199992,33.435110204000075],[-118.45005422299992,33.431861993],[-118.44479115899992,33.428584013000105],[-118.43730779599991,33.42936259100004],[-118.43385321399988,33.42715536500013],[-118.4294434629999,33.42828272600015],[-118.42111987099989,33.42794762600012],[-118.39444917799992,33.415962763000046],[-118.38909845599994,33.41746052800009],[-118.38259897699989,33.41052629700003],[-118.37937482699992,33.410182864000106],[-118.37402780099991,33.41020677200005],[-118.36920648399986,33.40839266200005],[-118.36830277299988,33.40510155100007],[-118.36690751399989,33.39888192800005],[-118.36958062699992,33.39484974000011],[-118.36828946099983,33.38900258300011],[-118.36337639499993,33.388277561000066],[-118.35513115199986,33.37734631900007],[-118.34362819599995,33.366762193000156],[-118.3317573139999,33.35911283400015],[-118.32651433999989,33.348901252000175],[-118.32634365699988,33.344607568000086],[-118.32276464099996,33.34313241700006],[-118.31725463899997,33.343429236000034],[-118.30866539599992,33.33642000100015],[-118.3043444499999,33.31926894100012],[-118.30785433299985,33.31872443900009],[-118.31058362999993,33.31423148400013],[-118.30434011399988,33.30904002300012],[-118.31212783799988,33.30554227000008],[-118.31470902199993,33.30162914500012],[-118.32603490699994,33.29863279700011],[-118.34601673199988,33.30523135900002],[-118.35494658399995,33.312944618000145],[-118.36400324799985,33.31504796700001],[-118.37479615899989,33.31951177900014],[-118.39609602799992,33.32010024300014],[-118.41046568499986,33.320371925000146],[-118.42266426299994,33.31663417400007],[-118.44383480599994,33.31882671300012],[-118.46358558599988,33.32351431000011],[-118.4727712699999,33.33294280600013],[-118.48424394399987,33.34607455200016],[-118.48958155899989,33.35849893900017],[-118.48439996999988,33.368413836000045],[-118.4861649569999,33.37242775400016],[-118.4800717109999,33.38014323300011],[-118.47487230999992,33.38237095500013],[-118.47932423699984,33.386750276],[-118.48723217699983,33.40281189000014],[-118.48452331699988,33.40538111300019],[-118.48714958099994,33.408304122000104],[-118.48634580099989,33.415967844000036],[-118.49073464099992,33.419625399000054],[-118.49775637899984,33.42143085400015],[-118.50390751399996,33.42322490200017],[-118.51049625099986,33.42393812500002],[-118.51565411899993,33.42300528000011],[-118.52078889799988,33.42751467100002],[-118.53067300299996,33.428580903000025],[-118.53508478499995,33.42931182500002],[-118.54298821899992,33.432922771],[-118.55088594699994,33.43325366200004],[-118.55922627799991,33.432853992],[-118.56673559899986,33.436856014000014],[-118.57285073199985,33.43790661800009],[-118.57373027699987,33.4404550820001],[-118.5741172259999,33.44661376700013],[-118.57904909799994,33.44847636500004],[-118.58438250599991,33.45286411400009],[-118.58960702599991,33.460095565000145],[-118.59588119899989,33.46670562900012],[-118.60211622299992,33.471470083000085],[-118.60391336799985,33.47658899900013],[-118.5968678109999,33.47697321100013],[-118.5867785119999,33.47557135900006],[-118.57800270799989,33.47635080500005],[-118.56962487699992,33.47453655400012],[-118.56343589899988,33.473426576000136],[-118.54593753999988,33.47502876200009],[-118.5406746049999,33.475783166000085],[-118.53586083799986,33.47727816200013]]],[[[-118.22657762499993,33.765449583000034],[-118.22391862499983,33.756066514000125],[-118.24387822999991,33.75084421600003],[-118.23634610999994,33.728046034000116],[-118.25013442599992,33.72361820800013],[-118.24557149699987,33.714879458000055],[-118.25762853399996,33.71655407000007],[-118.26132634199985,33.72500014400008],[-118.25912648099991,33.72940713800001],[-118.24432006199987,33.73429096000008],[-118.24899386399997,33.74942726000013],[-118.25385396199995,33.746218959000075],[-118.25110728999994,33.736269119000056],[-118.26056233199989,33.73345394400009],[-118.26861511099995,33.728931446],[-118.27085914999991,33.73963957000013],[-118.26750609599993,33.74702878599999],[-118.25498886199993,33.75808264400014],[-118.25031995199993,33.75755544000013],[-118.24554711299989,33.75968303100014],[-118.23467597599985,33.763152826000166],[-118.22657762499993,33.765449583000034]]],[[[-77.94204667899993,33.91681549700009],[-77.96239173099994,33.85687897300015],[-77.96996008999989,33.84796784100002],[-77.98131262899994,33.85382721600014],[-77.99771074099996,33.85895416900017],[-78.01227779899989,33.865627346000124],[-78.01781165299991,33.875881252000156],[-78.0100805329999,33.89203522300012],[-77.99522864499994,33.89931875200013],[-77.97972571499992,33.89817942899999],[-77.96996008999989,33.8895531270001],[-77.96328691299993,33.89447663000006],[-77.94204667899993,33.91681549700009]]],[[[-120.04232451999987,34.028081162000106],[-120.04993767399988,34.01560537100009],[-120.04700351399994,34.003812582000094],[-120.03396853199983,33.989577195000074],[-120.0083373889999,33.97902667000001],[-119.9804072729999,33.983467124000164],[-119.97878144899995,33.95937099600006],[-119.97069278499993,33.95293107400012],[-119.96883015999991,33.94111657900011],[-119.99962846799991,33.941479228],[-120.01894977299993,33.93415329900013],[-120.04968837599985,33.91478129799999],[-120.07129052499995,33.91178508400016],[-120.08062679299991,33.906362829000145],[-120.1012984729999,33.90688890100013],[-120.10901104399989,33.89973796200009],[-120.10989116399989,33.89314015100013],[-120.12420565499988,33.895086377000055],[-120.13340063499987,33.902824408000114],[-120.15263550099985,33.911687703],[-120.1756099849999,33.92223155300003],[-120.18446748399992,33.93742216500014],[-120.18942804599993,33.94479976300012],[-120.19807957699989,33.952101495000036],[-120.21024398799989,33.97248773900016],[-120.21935946799995,33.97672314900002],[-120.22549272399992,33.98845845800015],[-120.23718143299992,33.99171331300006],[-120.24851670499987,34.001127158000045],[-120.2365649909999,34.00880322000002],[-120.21761599999986,34.01054115500004],[-120.2010553419999,34.00469562200005],[-120.18581999499993,34.00891818600003],[-120.17096285999986,34.007413919],[-120.15848553599992,34.015951829000144],[-120.14548093499994,34.02449689800001],[-120.13609778599991,34.02472565300011],[-120.09666530399988,34.017860670000076],[-120.07247756799984,34.02489454800006],[-120.0578748359999,34.03778486300017],[-120.04413872999987,34.03727270500015],[-120.04232451999987,34.028081162000106]]],[[[-120.36069036099987,34.05309752900014],[-120.35601777399988,34.04708095600007],[-120.34458184199985,34.04649222000004],[-120.33576610699991,34.04870292600016],[-120.33030114099991,34.047174813000126],[-120.31832577499989,34.040055005000156],[-120.31130600999985,34.03447655500018],[-120.30655653399992,34.02639704400012],[-120.30830126999984,34.01820039000013],[-120.32961234199983,34.01862921800007],[-120.35123212299989,34.01902210800007],[-120.36043923999989,34.0147574330001],[-120.37382453899993,34.01776439200002],[-120.38238205899984,34.02412867300011],[-120.39277421299992,34.02596575100013],[-120.40622572799992,34.03141492300007],[-120.4151940109999,34.03246878400012],[-120.42376955399989,34.02494595000003],[-120.43819694199989,34.02955978300004],[-120.44608813399991,34.03021664100014],[-120.44920267599986,34.035865963000035],[-120.43797038499989,34.03853827400014],[-120.41527371399992,34.05449606500004],[-120.40340594899995,34.051456813000115],[-120.39404270099989,34.05328521800014],[-120.3800094959999,34.0608976810001],[-120.36897902899995,34.071311326000014],[-120.3690680289999,34.07622510000006],[-120.36221269399992,34.07168203300013],[-120.35896617299996,34.0649723610001],[-120.35626212699987,34.05851053300002],[-120.36069036099987,34.05309752900014]]],[[[-119.83515986699983,34.06358567600002],[-119.82437089799987,34.055080471000096],[-119.80699622299989,34.051947333000115],[-119.78774018799993,34.0561885690001],[-119.77785356099993,34.0558631630001],[-119.75926250499994,34.05580882100004],[-119.75283363499994,34.052281636000046],[-119.7442927729999,34.05215078300015],[-119.73700545599993,34.04643023600015],[-119.73214747299987,34.04855746400004],[-119.71183593499991,34.042254864000185],[-119.70379551699988,34.03456174600002],[-119.69238191699992,34.02822374900008],[-119.68535982099986,34.01987128899999],[-119.67702267999988,34.02075057500009],[-119.66663679499986,34.01676488700009],[-119.6543977269999,34.01908473400012],[-119.63318266599988,34.01363500700013],[-119.61563911799995,34.01954313700013],[-119.60793080699997,34.02947425800009],[-119.61007932599993,34.03964593900004],[-119.58864085099988,34.04971204400009],[-119.5754077209999,34.0506772100001],[-119.5649307929999,34.05532461100013],[-119.53252188299987,34.04142391000009],[-119.52149422599987,34.03429132900011],[-119.52942605999988,34.02524840600001],[-119.54266634599992,34.02016434300019],[-119.54452733599987,34.01361724100017],[-119.54783312899994,34.00384712500012],[-119.55952121899988,33.99430864900013],[-119.58032586699997,33.99358623500014],[-119.58949754799988,33.98900558300012],[-119.62482094399991,33.98731555300019],[-119.64545736799995,33.986212475000045],[-119.65768259699992,33.986061776],[-119.6670481509999,33.983050180000035],[-119.67327814699989,33.978096858000086],[-119.68211608499989,33.976333644000036],[-119.68494514199993,33.97387414300012],[-119.70017402699992,33.96873849399999],[-119.70647854499992,33.96867457900014],[-119.71269085599994,33.961674293000115],[-119.71951204199989,33.95913429299999],[-119.74221328099989,33.96244951400003],[-119.75346840099988,33.962301480000136],[-119.75923919099989,33.957341699],[-119.77204750099986,33.95959831700013],[-119.78825117699986,33.95976513300015],[-119.80156551199987,33.96321112900007],[-119.81720483499988,33.95933792700008],[-119.82519739499986,33.96653235400008],[-119.84050405199989,33.969574153000124],[-119.85076733199989,33.96738303100012],[-119.86671138399988,33.97893427600012],[-119.87410932099988,33.98004656500002],[-119.8812619969999,33.99134937100017],[-119.88437057399989,34.001838363],[-119.88706871099993,34.008776658000144],[-119.87708212099992,34.024386762000134],[-119.87722180199991,34.03248276600014],[-119.88625449899989,34.03810874900013],[-119.89917946699985,34.049601328000065],[-119.91356360599993,34.05589427300002],[-119.91912316699984,34.05753694000013],[-119.9215497809999,34.05467935000002],[-119.92846837699992,34.05580020300012],[-119.93301909299994,34.06022914600011],[-119.92429204599986,34.066858478000185],[-119.92101978199993,34.073446135],[-119.9172248579999,34.078820327000024],[-119.9046278939999,34.0743018030001],[-119.88704397599993,34.07430096800012],[-119.85641193299992,34.070551942000165],[-119.83515986699983,34.06358567600002]]],[[[-77.81871497299989,34.17267487200017],[-77.82062740799992,34.17157623900012],[-77.82335364499991,34.17186107000007],[-77.82599850199989,34.17064036700005],[-77.84593665299988,34.12376536700019],[-77.86017818899997,34.10040924700009],[-77.8744197259999,34.08812083500014],[-77.86400305899991,34.113674221000124],[-77.85655676999991,34.14264557500003],[-77.84422766799989,34.16665273600016],[-77.81920325399996,34.17747630400005],[-77.81871497299989,34.17267487200017]]],[[[-77.35252844999988,34.522284247000144],[-77.35440019399992,34.52118561400012],[-77.35741126199994,34.521389065000065],[-77.36046301999994,34.520086981000176],[-77.38634192599994,34.50169505400014],[-77.46776282499991,34.465399481000034],[-77.50072180899988,34.45868561400009],[-77.51455644399995,34.45376211100002],[-77.61778723899988,34.37763092700014],[-77.6341853509999,34.36249420800014],[-77.61473548099988,34.39545319200012],[-77.57872473899991,34.425360419000086],[-77.44981848899992,34.49567291900003],[-77.43187415299991,34.49966054900001],[-77.4137263659999,34.50397370000009],[-77.37413489499997,34.52313873900006],[-77.35301673099985,34.52757396000013],[-77.35252844999988,34.522284247000144]]],[[[-76.53770911399994,34.64215729400003],[-76.5516658189999,34.63686758000013],[-76.55622311099995,34.64061107],[-76.59268144399991,34.66351959800009],[-76.64321855399993,34.67841217700014],[-76.65477454299993,34.68455638200011],[-76.65477454299993,34.69147370000012],[-76.63426673099988,34.69147370000012],[-76.56533769399994,34.67096588700015],[-76.55479895699996,34.66421133],[-76.5421443349999,34.652899481000034],[-76.53770911399994,34.64215729400003]]],[[[-76.68146725199995,34.705145575000145],[-76.68146725199995,34.69822825700005],[-76.80186926999991,34.705145575000145],[-76.82750403599997,34.70294830900015],[-77.09976152299987,34.64984772300015],[-77.08238684799989,34.66547272300012],[-77.05443274599985,34.67487213700015],[-76.89745032499988,34.69822825700005],[-76.7335505849999,34.717596747000144],[-76.68146725199995,34.705145575000145]]],[[[-76.51964270699992,34.615790106000034],[-76.53062903599988,34.589056708000115],[-76.5392146479999,34.60822174700017],[-76.52505449099996,34.63784414300012],[-76.4077856109999,34.79441966400019],[-76.30467688699986,34.88324616100011],[-76.26231848899997,34.90672435099999],[-76.25625566299988,34.91364166900008],[-76.24950110599993,34.92186107],[-76.23395748599992,34.93170807500012],[-76.21597245999989,34.94033437700001],[-76.20225989499997,34.9447289080001],[-76.22276770699992,34.91742584800012],[-76.2496638659999,34.90322500200001],[-76.29987545499996,34.85858795800014],[-76.32209225199992,34.84906647300012],[-76.34040279899989,34.83844635600009],[-76.39598548099994,34.78758372600008],[-76.51964270699992,34.615790106000034]]],[[[-76.14085852799987,34.99249909100014],[-76.14704342399993,34.99249909100014],[-76.13727779899992,35.00340403900013],[-76.10643469999985,35.03034088700018],[-76.09984290299988,35.04462311400009],[-76.09650631399992,35.04962799700003],[-76.08897864499988,35.055243231000034],[-76.08153235599991,35.06220123900012],[-76.07811438699989,35.07160065300003],[-76.07249915299991,35.07477448100009],[-76.05968176999997,35.07147858300006],[-76.03718014199987,35.061346747000115],[-76.04059811099998,35.05768463700015],[-76.0439346999999,35.05630117400006],[-76.04751542899987,35.05573151200012],[-76.05142167899987,35.054592190000065],[-76.1255997389999,35.011542059000035],[-76.14085852799987,34.99249909100014]]],[[[-75.90807044199994,35.13646067900014],[-76.01732337099986,35.075018622000144],[-76.00597083199989,35.085150458],[-75.99885006399991,35.09707265800013],[-75.98997962099989,35.123439846000124],[-75.96703040299991,35.11774323100015],[-75.9398494129999,35.12689850500014],[-75.88634192599997,35.15696849200016],[-75.79889889199993,35.184230861000074],[-75.77025305899994,35.197943427],[-75.77599036399991,35.19074127800015],[-75.78209387899992,35.185858466000084],[-75.79820716099988,35.17804596600011],[-75.81737219999994,35.162909247000115],[-75.90807044199994,35.13646067900014]]],[[[-75.54377193899994,35.23330312700001],[-75.55370032499985,35.23200104400003],[-75.58531653599994,35.23330312700001],[-75.62315833199989,35.219061591000106],[-75.64443925699996,35.21576569200009],[-75.68219967399992,35.20123932500003],[-75.69831295499989,35.197943427],[-75.70400956899988,35.19594961100016],[-75.71751868399984,35.18691640800016],[-75.72557532499988,35.18488190300003],[-75.73574785099993,35.18768952000006],[-75.73338782499988,35.19403717700003],[-75.7246801419999,35.20091380400011],[-75.71568762899996,35.20538971600017],[-75.70596269399991,35.206244208000086],[-75.70156816299992,35.21002838700009],[-75.69896399599995,35.21482982],[-75.69456946499986,35.219061591000106],[-75.6930232409999,35.22199127800003],[-75.69237219999988,35.22687409100011],[-75.69033769399994,35.23135000200007],[-75.68496660099986,35.23330312700001],[-75.68195553299998,35.23151276200004],[-75.6810603509999,35.228013414000046],[-75.67979895699997,35.225246486000074],[-75.67536373599988,35.22581614800005],[-75.61261959499993,35.25259023600016],[-75.5431208979999,35.27309804900001],[-75.5163468089999,35.29100169500008],[-75.51707923099994,35.321478583000115],[-75.51089433499995,35.33368561400009],[-75.49876868399988,35.38287995000009],[-75.49437415299988,35.42047760600009],[-75.48452714799987,35.45669179900004],[-75.48224850199989,35.479071356000034],[-75.48363196499989,35.48993561400012],[-75.48875891799989,35.509222723000065],[-75.48912512899992,35.52069733300003],[-75.48525956899991,35.53204987200017],[-75.47166907499985,35.55434804900003],[-75.46861731699994,35.56509023600013],[-75.46934973899987,35.588771877000156],[-75.47581946499989,35.63011302299999],[-75.50096594999988,35.70331452000015],[-75.50275631399995,35.722723700000145],[-75.52000891799986,35.75665924700009],[-75.52611243399994,35.775702216000084],[-75.51707923099994,35.78074778900013],[-75.49950110599991,35.767482815],[-75.48668372299997,35.74380117400007],[-75.47874915299991,35.71723053600011],[-75.47606360599991,35.695379950000174],[-75.47354081899991,35.67487213700004],[-75.45494544199991,35.62311432500012],[-75.45181230399993,35.58250560100011],[-75.47057044199991,35.5047875020001],[-75.49083411399991,35.33641185100005],[-75.51561438699989,35.260199286],[-75.5253800119999,35.24396393400015],[-75.54377193899994,35.23330312700001]]],[[[-75.62535559799997,35.83014557500009],[-75.64395097599987,35.82916901200012],[-75.65929114499991,35.83600495000003],[-75.66616777299993,35.85228099200016],[-75.67064368399988,35.871323960000055],[-75.67845618399988,35.88690827000006],[-75.70775305899991,35.91339752800003],[-75.71568762899996,35.924750067],[-75.72126217399997,35.929999091000084],[-75.72777258999989,35.93455638200014],[-75.7298884759999,35.93939850500011],[-75.72183183499993,35.94525788000006],[-75.7130427729999,35.94696686400006],[-75.70376542899993,35.94570547100015],[-75.6952205069999,35.942450262000094],[-75.68834387899989,35.93842194200012],[-75.67406165299991,35.93329498900012],[-75.66738847599996,35.92951080900009],[-75.66104081899991,35.924750067],[-75.65933183499989,35.91543203300016],[-75.64704342399995,35.899237372000115],[-75.61261959499993,35.86326732000013],[-75.62189693899998,35.844916083000086],[-75.62214107999992,35.834662177000055],[-75.62535559799997,35.83014557500009]]],[[[-75.8576435839999,37.19405349200018],[-75.8395503129999,37.19279357800009],[-75.82322689199995,37.19632253400006],[-75.81730165399993,37.20699019600012],[-75.8117242079999,37.20908122100012],[-75.81077929099988,37.20016937600012],[-75.81624217199986,37.18607639700015],[-75.82906399599992,37.17674031300011],[-75.84959102699986,37.16358423200013],[-75.87132791999991,37.142872242000166],[-75.88652022399988,37.12310577700008],[-75.89946046999995,37.11731020400008],[-75.9145374519999,37.11232258400004],[-75.9286019389999,37.11222151300002],[-75.92631689699994,37.117843892000096],[-75.91538363999993,37.118544935],[-75.90761563199987,37.12296047100013],[-75.90377292999992,37.129214309000034],[-75.89281625599992,37.1406742540001],[-75.8943234779999,37.16123954600012],[-75.9017945439999,37.1755937170001],[-75.90621378799989,37.19459019400007],[-75.90541986799994,37.23442645600004],[-75.89560335599995,37.252969990000096],[-75.88948344599993,37.28040455700001],[-75.87397053399988,37.290379804000096],[-75.85867491699989,37.28251412600004],[-75.8517515489999,37.270772896000054],[-75.85405520599993,37.26088484500012],[-75.86719605199991,37.25411214800009],[-75.87666617499991,37.240672164000145],[-75.88324570999993,37.218648076000036],[-75.8771394179999,37.20559252200003],[-75.8693138859999,37.198439284000145],[-75.8576435839999,37.19405349200018]]],[[[-75.68503757199989,37.41491501900005],[-75.7192143119999,37.368297608000105],[-75.72457376899987,37.373899392000155],[-75.70794593799988,37.39861533100013],[-75.68431912199985,37.43673498200015],[-75.67647746699994,37.455072995000144],[-75.67032944699992,37.46284391400008],[-75.6561274209999,37.4615055010001],[-75.66043040099994,37.44318445100007],[-75.68503757199989,37.41491501900005]]],[[[-75.65957470999984,37.48297574900011],[-75.67061725099992,37.47705716500015],[-75.67437474699997,37.48583466200012],[-75.66219507699994,37.50446151600006],[-75.6439288489999,37.53484619600012],[-75.6342270049999,37.55835401600014],[-75.62198107299992,37.57111973600016],[-75.61339190599998,37.57800280700008],[-75.59980591999994,37.57513051000002],[-75.60219467699997,37.56240827900014],[-75.64253235099991,37.51139681800005],[-75.65957470999984,37.48297574900011]]],[[[-75.98129097199988,37.992836254000096],[-75.98976847099993,37.97315090100015],[-75.99565052899986,37.945146582000135],[-76.00504931599994,37.950471527],[-76.0101530009999,37.960734322000135],[-76.0213590239999,37.9611396690001],[-76.01687025799995,37.950381436],[-76.01928000199985,37.943985813000026],[-76.01982312099994,37.93760442300014],[-76.0172261709999,37.928794343],[-76.02281804699993,37.928260202000146],[-76.02636789899992,37.91351525600005],[-76.02949590499992,37.91496244700006],[-76.03154516999992,37.929663813],[-76.02983174399992,37.941941898],[-76.02745345499994,37.950790470000115],[-76.0331025839999,37.95467135300013],[-76.03678647099989,37.95071831600008],[-76.04361327699988,37.949192180000026],[-76.04506463999988,37.965370371000134],[-76.04525466599998,37.98008777000017],[-76.05142167899987,37.99408600500003],[-76.04613196499989,37.99941640800007],[-76.03056423299995,37.999827016000104],[-76.01364889399986,37.99161499700001],[-76.00304114499997,38.00096263200011],[-76.01353919199993,38.010484117000104],[-76.03945878799993,38.021144924000126],[-76.04028530399992,38.02919468500012],[-76.02912839399988,38.03369669700014],[-76.0173539219999,38.03869281400016],[-76.01046409099987,38.03579972400014],[-76.00536477299994,38.02651402900001],[-75.98720732999993,38.01879612000012],[-75.98129097199988,37.992836254000096]]],[[[-76.02594439399988,38.153420958000034],[-76.03323029799992,38.148551101000166],[-76.06275995799993,38.15890671500007],[-76.08360776299995,38.16066637300009],[-76.07900940199997,38.18284381000008],[-76.06446130299992,38.19451030600011],[-76.04860768499991,38.200407545000175],[-76.03621781199993,38.18990773700013],[-76.02381862399994,38.1784578340001],[-76.02978218799988,38.16590116900015],[-76.02594439399988,38.153420958000034]]],[[[-75.34214250799988,37.87566090500003],[-75.35227792499998,37.86762241899999],[-75.36541093599989,37.862877446000155],[-75.37853520999994,37.85577259899999],[-75.39291340399987,37.86469927200007],[-75.4001265429999,37.87411327200005],[-75.38877843199985,37.878387484000044],[-75.36901829799987,37.869472149],[-75.3582756129999,37.87421175400014],[-75.34995672999995,37.88931987100007],[-75.36372687599993,37.89495062400012],[-75.37449969499991,37.89775756900009],[-75.36796543999989,37.90909064700015],[-75.35008704299987,37.91303131700006],[-75.33910071499992,37.91620514500012],[-75.3304744129999,37.92243073100009],[-75.32526607999992,37.93268463700012],[-75.31826738199993,37.94037506700012],[-75.30475826699987,37.97361888200013],[-75.29759680899991,37.984930731000034],[-75.27855383999994,38.00763580900015],[-75.25446529899992,38.03091054900009],[-75.2506404289999,38.0368919940001],[-75.22964433499996,38.06989166900014],[-75.19981848899992,38.10382721600011],[-75.1948949859999,38.113959052000055],[-75.19033769399992,38.142726955000015],[-75.1793106759999,38.16819896000011],[-75.15330969999991,38.20701732000013],[-75.11436926999994,38.28021881700009],[-75.09870357999995,38.302639065],[-75.0924373039999,38.302639065],[-75.10269120999993,38.27313873900012],[-75.13866126199991,38.21881745000009],[-75.17119707599994,38.1482885110001],[-75.18969471899996,38.08977971400015],[-75.22887122299994,38.04751211100013],[-75.23407955599993,38.038600979000094],[-75.31358098599986,37.91909487900013],[-75.32603919199994,37.89227936400006],[-75.34214250799988,37.87566090500003]]],[[[-74.35924231699988,39.401556708000086],[-74.39338131399998,39.389146226000044],[-74.42552649599995,39.39374420799999],[-74.4481501939999,39.41986725500014],[-74.43089758999992,39.42536041900017],[-74.4217016269999,39.41693756700012],[-74.41356360599991,39.40477122600013],[-74.39976966099991,39.399359442],[-74.38662675699993,39.40648021000014],[-74.3717341789999,39.43659088700018],[-74.3587947259999,39.44717031500012],[-74.36754309799997,39.46503327],[-74.35163326699984,39.47020091400018],[-74.30211341099991,39.464748440000065],[-74.30492102799985,39.459784247000115],[-74.31334387899992,39.455145575000174],[-74.31786048099985,39.45400625200012],[-74.33092200399994,39.42609284100011],[-74.35924231699988,39.401556708000086]]],[[[-74.23163242099989,39.552991248000026],[-74.25641842399997,39.52220286700016],[-74.25576738199993,39.529730536000116],[-74.25446529899992,39.53461334800009],[-74.25463971299988,39.54736192500012],[-74.24007209699991,39.575387884000136],[-74.15998658099993,39.685463525],[-74.13288326699987,39.714667059000114],[-74.11827551999994,39.73798248900012],[-74.10948645699989,39.7489281270001],[-74.09813391799992,39.755682684000035],[-74.10578365799995,39.729152736000074],[-74.12968164399989,39.701289716000026],[-74.14790146299991,39.66589558300011],[-74.1843083549999,39.61555470900008],[-74.23163242099989,39.552991248000026]]],[[[-73.38951575399992,40.61676666900014],[-73.57412003499985,40.575093006000046],[-73.56639295699992,40.59032024200017],[-73.44384653799992,40.61893638300007],[-73.40073299199989,40.629640755000146],[-73.37773816799992,40.63461701200005],[-73.35760061099995,40.64032780900005],[-73.33938414499997,40.644592667000055],[-73.31831116699988,40.64666188200012],[-73.26945678299992,40.649295803000186],[-73.24840160199997,40.64772029100011],[-73.25614437599998,40.63905194800019],[-73.3203241679999,40.63505586500012],[-73.38951575399992,40.61676666900014]]],[[[-74.07461513599986,40.63403299500013],[-74.07194127799997,40.62333169100013],[-74.06145120299992,40.61460864200002],[-74.05356873199995,40.6027038670001],[-74.10210265499992,40.55457049200011],[-74.13391798399996,40.53266801500014],[-74.1396741799999,40.53464420700014],[-74.14803661199991,40.53462906400013],[-74.16316421199986,40.527446857000065],[-74.1798549919999,40.51986149300002],[-74.1923614449999,40.51148853400012],[-74.20906902399993,40.509462598000184],[-74.22836888899985,40.50225778300002],[-74.24298365399994,40.499434562000104],[-74.25083095699995,40.50139666600007],[-74.25294418099992,40.507354413000186],[-74.24825957399992,40.512937401999984],[-74.23939217599985,40.5169395160001],[-74.23893023899991,40.52725895300016],[-74.24160346099987,40.53916545400012],[-74.23275923299985,40.547928974000016],[-74.2186652399999,40.553132482000144],[-74.2071955109999,40.56031146300013],[-74.20148738399985,40.56985629600011],[-74.19789454899987,40.58495639400009],[-74.19435185799992,40.612766385],[-74.19180169999996,40.628264243000146],[-74.18241904899989,40.637422431000104],[-74.17092733899995,40.64341019400008],[-74.15363124899989,40.63748966700013],[-74.12608801999994,40.633490302],[-74.11025956899991,40.637762762000094],[-74.0973201159999,40.64350006700006],[-74.08353630699995,40.64951799000009],[-74.07671570399995,40.64874448200011],[-74.07305214299996,40.64437225900012],[-74.07145023199993,40.63803071600016],[-74.07461513599986,40.63403299500013]]],[[[-73.14753170499989,40.64431386900016],[-73.24578304899984,40.62380609700013],[-73.29745864599991,40.62262243600016],[-73.30504608499993,40.62992183000016],[-73.25529154599992,40.629668423000155],[-73.21883025499989,40.63963458100006],[-73.17660996399985,40.650997904000135],[-73.10465864799997,40.667220301000086],[-73.04034297099989,40.68199524300017],[-73.01390540299994,40.6904564470001],[-72.94890381399995,40.71538570100013],[-72.91426856099991,40.72452721700013],[-72.88151109199993,40.73439985100005],[-72.83237011599988,40.7477443340001],[-72.77923011899989,40.76684323500008],[-72.7570827479999,40.768802103000084],[-72.7572392539999,40.76008574000018],[-72.80492102799987,40.750840562000015],[-72.83153235599994,40.74164459800015],[-72.91347653199995,40.7129012190001],[-72.99152584499988,40.68817780200011],[-73.04100501199984,40.672634182000124],[-73.14753170499989,40.64431386900016]]],[[[-74.0022273429999,40.70404694200006],[-74.0169164699999,40.699286200000145],[-74.01197714499997,40.73003812700013],[-74.00315549699988,40.75587118900016],[-73.98696855399993,40.77871328300007],[-73.9391576809999,40.85423411700019],[-73.93281002499987,40.86884186400012],[-73.92804928299998,40.87750885600011],[-73.9179581369999,40.875067450000174],[-73.9166560539999,40.86334870000009],[-73.92967688699989,40.84381745000012],[-73.9387914699999,40.82819245000003],[-73.9400935539999,40.81386953300013],[-73.93337968699984,40.79718659100011],[-73.94642470599987,40.77723437300001],[-73.97221905799992,40.740679303000135],[-73.97229342899993,40.72720272100018],[-73.97580563699991,40.714012798000155],[-74.0022273429999,40.70404694200006]]],[[[-72.27846995399989,41.05845957900002],[-72.28238998299989,41.04788112600015],[-72.27566030099983,41.03927114700015],[-72.27552668699991,41.031833217000056],[-72.28625314199985,41.03420304000004],[-72.2978910439999,41.041522594000114],[-72.31775021599992,41.04875311000007],[-72.34076269299993,41.048506604000025],[-72.35879771099991,41.045830657000025],[-72.37130575499992,41.054991786000144],[-72.37239126599985,41.06861794300012],[-72.3619168089999,41.0798920350001],[-72.34155907199991,41.09065164000013],[-72.34015878299995,41.10368310800011],[-72.32784494799992,41.10505563300008],[-72.3227133739999,41.094572403000186],[-72.30524873699994,41.08421804700002],[-72.29533676999995,41.08184163800003],[-72.28048150099987,41.0788948460001],[-72.28276975599994,41.068953265000076],[-72.27846995399989,41.05845957900002]]],[[[-72.07903359299993,41.09484476500016],[-72.08509264599988,41.09172515900003],[-72.08497102799993,41.083542954],[-72.08145065699989,41.07487881900009],[-72.08610076799988,41.06818919199999],[-72.0927894699999,41.061478812000175],[-72.10082292899995,41.05424624400011],[-72.10102065199987,41.067545871000064],[-72.10258450399996,41.08134333200009],[-72.10813839499986,41.09050581200013],[-72.12243856599991,41.09293289600005],[-72.13602549199993,41.09280736000015],[-72.14152082999996,41.09684927799999],[-72.13480758199998,41.10202611300015],[-72.1281319279999,41.10924651800018],[-72.1310218719999,41.12047220800004],[-72.1090718429999,41.10686088500013],[-72.09135388699985,41.101899546000155],[-72.07843071599987,41.09996428400008],[-72.07903359299993,41.09484476500016]]],[[[-72.24689693899992,41.13544342700011],[-72.26024329299995,41.12502676000004],[-72.27619381399994,41.11705149900017],[-72.28945878799988,41.11334870000003],[-72.30443274599992,41.13194407800013],[-72.34361731699993,41.11420319200012],[-72.41234290299994,41.064886786000145],[-72.41530487799989,41.05444701800012],[-72.3999731109999,41.051336981000176],[-72.39281165299988,41.04718659100014],[-72.38508053299994,41.04446035400018],[-72.3905429369999,41.031470594],[-72.41207665799993,41.03413238200015],[-72.4311214249999,41.030403194000044],[-72.43740800699993,41.02570221600003],[-72.43883216099991,41.01597728100016],[-72.43569902299993,41.0058861350001],[-72.43346106699994,40.99323151200004],[-72.43773352799987,40.98419830900012],[-72.4466853509999,40.99140045800006],[-72.45494544199988,41.00372955900009],[-72.4664573449999,41.003826693000136],[-72.47253934799988,40.99039424600012],[-72.49494381399992,40.98981354400003],[-72.49958248599995,40.98895905200011],[-72.51054840499992,40.98489950600005],[-72.52065995999988,40.98517487200009],[-72.53392195899994,40.97485257200019],[-72.54356216999989,40.966622917000144],[-72.54308020699989,40.956569729000115],[-72.56244249899993,40.9441980540001],[-72.58004407799984,40.93287817200017],[-72.59956221899988,40.93071499600016],[-72.61593725699996,40.92771872700003],[-72.62462317599991,40.907822984000106],[-72.6134333979999,40.908880927000055],[-72.60285396999987,40.90839264500006],[-72.59300696499994,40.905829169000135],[-72.58429928299995,40.90041738500009],[-72.56358801999994,40.912380276000036],[-72.54393469999988,40.910101630000085],[-72.52383378799993,40.90302155200011],[-72.50136121499986,40.89738903200002],[-72.4808468119999,40.89793746],[-72.45714270699996,40.91026439000005],[-72.44988269999996,40.91979858600011],[-72.44371497299987,40.931748765000165],[-72.44102942599991,40.94297923400016],[-72.42929964699988,40.946945601000046],[-72.40817994599993,40.95064723899999],[-72.38613126499993,40.97180859300012],[-72.36718444699991,40.994600253000144],[-72.3421117829999,40.999823309000085],[-72.32653878899995,40.999224229],[-72.32110516599997,41.005910246000056],[-72.33209166799993,41.030699717000076],[-72.32152258999986,41.035834052000084],[-72.30668324399997,41.03552480900008],[-72.30126195099993,41.02034641699999],[-72.29845625899986,41.006000018000016],[-72.27010426299995,41.00242761200012],[-72.26344585599989,41.01545460100009],[-72.24863313699987,41.01763321800003],[-72.24254372899989,41.02907517500013],[-72.24021086399998,41.03778873100008],[-72.23370918199988,41.04406575100002],[-72.21378574299987,41.03980403600009],[-72.1867522439999,41.0091633440001],[-72.18355467899994,41.02782147300006],[-72.18004309799991,41.04706452000006],[-72.16686593899996,41.05664741200009],[-72.15538489499991,41.054999091000056],[-72.12287350199992,41.017401434000035],[-72.11815344999994,41.00686269700015],[-72.10899817599994,41.00141022300012],[-72.0880427729999,41.00482819200015],[-72.04987545499992,41.017686265000165],[-72.01170813699986,41.04210032800002],[-71.99274654899995,41.04962799700017],[-71.9757071779999,41.043397001000116],[-71.95875262999996,41.04628274700006],[-71.95806781699989,41.06971829000004],[-71.94530441599997,41.073475417000125],[-71.93342736199992,41.06492548700005],[-71.91893469999992,41.05866120000009],[-71.91893469999992,41.064886786000145],[-71.9309044009999,41.07879058000019],[-71.90330018099988,41.084672137],[-71.87511145699997,41.07571035400004],[-71.85741126199989,41.071722723000065],[-71.86489824099993,41.062079169000086],[-71.88496960299992,41.045397036000125],[-71.92951164199985,41.03784787500017],[-72.00887233099988,41.0073856610001],[-72.08714758999992,40.9834251970001],[-72.15982011599988,40.95526764500012],[-72.21986208499992,40.933422721000014],[-72.31699169999987,40.896260082000126],[-72.37173417899992,40.87584056200011],[-72.40665794899984,40.86207213500016],[-72.44127356699994,40.85500722900012],[-72.46076412699993,40.85260651200018],[-72.44835364499991,40.86823151200014],[-72.44741777299993,40.87909577000015],[-72.45913652299993,40.88536204600008],[-72.4846899079999,40.88739655200011],[-72.49657141799995,40.88410065300009],[-72.50059973899991,40.87604401200015],[-72.49836178299991,40.865790106000034],[-72.49152584499993,40.85602448100017],[-72.49079342399989,40.846869208],[-72.50230872299991,40.839056708000115],[-72.54181881399998,40.82050202],[-72.60527986099991,40.80133032400012],[-72.70444213999994,40.77617700100011],[-72.72395471999988,40.770419324000116],[-72.73200436099995,40.769964911],[-72.73790442599991,40.77378978100002],[-72.7316944419999,40.77764891000011],[-72.72538681799989,40.77837895700013],[-72.67845850599987,40.79099975200013],[-72.65051644899995,40.79745521800011],[-72.66358001799992,40.80077314900002],[-72.67932500099991,40.80093997000015],[-72.70034489699995,40.79957056500008],[-72.7269605789999,40.807789457000055],[-72.7439467769999,40.79683949400008],[-72.76517069099995,40.783147914],[-72.80189858299994,40.78271047300014],[-72.8280089029999,40.78970843600014],[-72.81362870999986,40.78160228100002],[-72.81794186099998,40.768418687000164],[-72.83275305899986,40.759629624000084],[-72.85279214499994,40.74942314800007],[-72.87907469899993,40.745685802000125],[-72.88925738399985,40.76563846800015],[-72.91036189899998,40.75827353700008],[-72.92625891799992,40.756415106000034],[-72.94681688299994,40.74189162300017],[-73.0121964179999,40.74957916900003],[-73.0225723949999,40.74758535400018],[-73.0334214049999,40.7314344570001],[-73.05495420299994,40.72921196900016],[-73.08332336199993,40.724651524000116],[-73.09909990199992,40.720394011],[-73.11473192999995,40.728049412000146],[-73.12938354799988,40.73013512400014],[-73.14043572699995,40.72623752600008],[-73.14240475199989,40.71613190300014],[-73.14539324799989,40.70521912700015],[-73.15802980099987,40.69974143200007],[-73.17951412699989,40.704697984000106],[-73.21193114999988,40.70564145200011],[-73.23332336899992,40.71450467100008],[-73.24702646199998,40.70703614400013],[-73.2618169,40.695598322000095],[-73.27500332899993,40.68692988900007],[-73.31748874499996,40.68357322600018],[-73.37221703599991,40.662365485000024],[-73.40215739499986,40.65771914900007],[-73.5045457659999,40.643829900000085],[-73.56112082499986,40.638048905000126],[-73.62717341699997,40.614397052000115],[-73.64343313799988,40.604904261000065],[-73.6528647899999,40.601351179000076],[-73.66436716399994,40.60376099500017],[-73.65597552799989,40.60890571600005],[-73.6554173669999,40.61804045500013],[-73.66795037099985,40.626014131000126],[-73.69579016799992,40.62152741100006],[-73.71092515099986,40.610211603000025],[-73.71044687299991,40.59511485000003],[-73.60633660899987,40.594086480000115],[-73.57548050199989,40.59320628400003],[-73.58180078799995,40.58448644500011],[-73.70734323899985,40.58279433900016],[-73.7523491469999,40.58565080500007],[-73.76805021099997,40.58964326600001],[-73.81258960799994,40.58373571700018],[-73.89711759999994,40.55467808300013],[-73.93947018499992,40.54195887100015],[-73.93947888899993,40.555477037000074],[-73.85054854599991,40.58088428100014],[-73.78979196399987,40.600291753000086],[-73.77615696299998,40.610607521000176],[-73.76880590199988,40.618545669000085],[-73.77141968999987,40.623318697000045],[-73.78084875899987,40.62889794200008],[-73.79812884999993,40.63805934700012],[-73.81541141999992,40.64562735000014],[-73.82955911499988,40.64881897000008],[-73.85156373699988,40.6436700730001],[-73.86884869699989,40.64010430100002],[-73.87722978899987,40.636135967000044],[-73.88298933099992,40.631767981000124],[-73.89134680899988,40.623602606000176],[-73.8929357239999,40.614289357000175],[-73.88351568099995,40.60037911600013],[-73.87776110499996,40.582095510999984],[-73.89188831999991,40.576935281000075],[-73.8976440479999,40.58329650900008],[-73.91177001199995,40.583697425000096],[-73.92641797699991,40.58369850100011],[-73.93216925099998,40.57773715600017],[-73.94158293099994,40.57455758400006],[-73.98812544599991,40.56937042600005],[-74.00381696399988,40.57055083700011],[-74.0116738259999,40.57928827400015],[-74.00069491199984,40.58327164000006],[-73.99808697299991,40.589632339],[-74.00489548799996,40.597182034000106],[-74.03002128499992,40.60549772800006],[-74.03998974599995,40.619785734000104],[-74.03583478099989,40.63885938600005],[-74.02381096499988,40.649200055000065],[-74.01283968699991,40.66470009400011],[-74.01547925799991,40.67780373400011],[-74.00187939799989,40.69012701600012],[-73.99769661999993,40.69608738900017],[-73.99058997299991,40.69977448100006],[-73.98033606699997,40.70461660400012],[-73.9693354849999,40.708749400000116],[-73.95937144199988,40.724663351000046],[-73.95679623599995,40.74317145700009],[-73.93023331699993,40.77312106200013],[-73.90859985299991,40.788677409000016],[-73.88709434699993,40.77993432000012],[-73.87030294099989,40.782312821000104],[-73.8608600499999,40.77635125500014],[-73.82305398699988,40.79738222000013],[-73.7789890379999,40.792176561000176],[-73.75752241799992,40.77111113500008],[-73.75013666099991,40.791345974000095],[-73.76425999299988,40.81003162200001],[-73.7555232409999,40.83279043200015],[-73.73981686099991,40.834336656000104],[-73.72935950399994,40.82408274900017],[-73.72179114499991,40.811224677000055],[-73.71458899599989,40.80479564000014],[-73.70299231699994,40.810166734000106],[-73.69688880099997,40.82188548400008],[-73.70042883999984,40.83360423400008],[-73.73306230399989,40.84369538000014],[-73.73127193899992,40.85443756700015],[-73.72020423099988,40.86623769700013],[-73.70530645499994,40.86674448300011],[-73.67435113999991,40.85675517800014],[-73.66551477399994,40.838452057],[-73.65330969999984,40.82391998900012],[-73.64611711599991,40.83086676700007],[-73.65336053399989,40.8677855370001],[-73.63265498699991,40.89958567600002],[-73.56527346799993,40.91451437500014],[-73.52046347799987,40.91760186000006],[-73.51268469999991,40.90509674700003],[-73.5152888659999,40.90041738500009],[-73.52860364199995,40.89172236300003],[-73.54066992099993,40.895338276000146],[-73.54909795099988,40.890985467000164],[-73.5349811939999,40.878627729000144],[-73.51134759699993,40.87734938500016],[-73.50972187999989,40.88569418900012],[-73.50757148099987,40.893637954000056],[-73.49339404299992,40.891991487000084],[-73.49293675999994,40.881643621000094],[-73.47982825399987,40.87724445600018],[-73.47244388699997,40.882367618000146],[-73.4755348509999,40.89073877500009],[-73.46812903599991,40.89362213700018],[-73.46914628799988,40.901312567],[-73.48534094999994,40.91791413000006],[-73.49409534199987,40.92705250900015],[-73.48568717099987,40.94562569600002],[-73.46208391599987,40.9363823070001],[-73.43130449099993,40.933294989],[-73.44082597599993,40.914658921000026],[-73.43219967399992,40.90766022300012],[-73.42031816299988,40.90041738500009],[-73.40502125299986,40.90395490100015],[-73.38866126199991,40.90595123900011],[-73.37092037699992,40.90009186400009],[-73.35826575399994,40.90041738500009],[-73.35472571499986,40.91412995000003],[-73.36063686499992,40.925092679],[-73.37896084499994,40.92446434900016],[-73.39956884899993,40.92541819300011],[-73.41002356699994,40.93988678600009],[-73.40776152799992,40.94716228900013],[-73.40193050099992,40.954404294000184],[-73.39517435999993,40.954367892],[-73.3797815339999,40.94701298400004],[-73.3740645439999,40.93607343800012],[-73.35096014799987,40.93085642200013],[-73.3259007919999,40.929256722],[-73.2931842269999,40.92470378700007],[-73.26342844699994,40.91362324000011],[-73.24372311099995,40.91026439000005],[-73.23534094999988,40.907822984000106],[-73.22459876199989,40.90827057500009],[-73.17870032499988,40.919012762000094],[-73.15949459499984,40.93024323100012],[-73.14810136599988,40.94562409100014],[-73.15282141799989,40.96246979400014],[-73.13536536399991,40.96845123900006],[-73.11314856699997,40.973456122000115],[-73.09874426999988,40.969509182000124],[-73.10440019399988,40.948797919000114],[-73.09129798099991,40.94835032800002],[-73.08214270699995,40.95160553600005],[-73.0791723299999,40.95856354400014],[-73.08458411399997,40.96930573100014],[-73.07622268499995,40.97194476500012],[-73.04844101399988,40.96301500900013],[-73.00896878799993,40.96706629000015],[-72.90037628799985,40.96325502100011],[-72.8300892259999,40.969175333000024],[-72.78112091099983,40.96507967500018],[-72.69609217699988,40.98101753300001],[-72.62832597599996,40.98358795800006],[-72.6061091789999,40.989935614],[-72.54134708499993,41.02381812600002],[-72.47165172099989,41.05595311000012],[-72.4538616599999,41.0744238810001],[-72.44517658499984,41.08584886800013],[-72.41292310599991,41.089811820000094],[-72.38304602799991,41.10891347900015],[-72.35871334499987,41.131130276000114],[-72.3434138659999,41.140651760000125],[-72.28945878799988,41.16115957200016],[-72.2755427729999,41.16262441600013],[-72.25999915299991,41.16083405200014],[-72.24722245999996,41.15570709800012],[-72.24168860599994,41.146795966000084],[-72.24689693899992,41.13544342700011]]],[[[-71.5715716949999,41.14976927500008],[-71.59955026999991,41.145778973000134],[-71.61374760699991,41.15518087400001],[-71.61271717999992,41.16746698400006],[-71.60802497799989,41.18058938700001],[-71.59748649599996,41.18766926200014],[-71.59121660099987,41.19733307500009],[-71.58267167899994,41.20404694200014],[-71.58043372299997,41.21478913000006],[-71.57919992999992,41.22557152200004],[-71.57258053299998,41.22882721600011],[-71.56704667899996,41.22483958500013],[-71.55354112299992,41.21457184200001],[-71.55947373399987,41.201024044000135],[-71.56615149599989,41.193752346000124],[-71.55992591099991,41.18374258000013],[-71.55186926999997,41.17572663],[-71.54447326199988,41.162887597000136],[-71.54909458299989,41.1520420720001],[-71.5715716949999,41.14976927500008]]],[[[-70.80175629499993,41.24807623400001],[-70.81090254999987,41.24804580500016],[-70.8231082369999,41.25075996500003],[-70.83228243899995,41.25669179800009],[-70.8304710379999,41.26036556200013],[-70.82193459099997,41.26039267000006],[-70.81402061699993,41.26316742900015],[-70.8091264419999,41.25951425400005],[-70.80179750899995,41.25678454500006],[-70.80175629499993,41.24807623400001]]],[[[-71.97015291699998,41.273622163000184],[-71.98832875399988,41.26008536100012],[-71.99873352699987,41.25166610000012],[-72.02280651299994,41.25348677900003],[-72.03879767999985,41.24944682600007],[-72.03656317999989,41.2608651960001],[-72.02622800099991,41.266903798000115],[-72.02212989299991,41.27685813400013],[-72.01134922599994,41.27620797499999],[-72.00336231299988,41.267012781000076],[-71.99807719399993,41.274082014000115],[-71.99400380799997,41.28308097800014],[-71.97680935499996,41.28470595800003],[-71.95388826599992,41.28671066400007],[-71.93975672899995,41.29219705500016],[-71.92073232999991,41.29139648900009],[-71.9280007649999,41.28197883000017],[-71.94657542899995,41.27656789200001],[-71.97015291699998,41.273622163000184]]],[[[-70.01920213399993,41.37011683800007],[-70.0052791009999,41.34271881700015],[-69.97496497299991,41.302191473000114],[-69.95775981999992,41.27574790000001],[-69.9671492459999,41.24945285400004],[-70.00112988399988,41.2392566140001],[-70.04303849099995,41.2433339060001],[-70.0975960609999,41.241829638000084],[-70.1377452289999,41.24715236600004],[-70.23314368399986,41.28375885600009],[-70.25634859899985,41.29276714200007],[-70.27811239799993,41.30790660900014],[-70.27235811699998,41.31134758100008],[-70.2562877869999,41.3091600850001],[-70.2408161189999,41.300931916000096],[-70.2172878779999,41.29742713200001],[-70.16105114699991,41.29296680099999],[-70.12428815699988,41.295870942000036],[-70.10680091099991,41.29523346600014],[-70.09776770699989,41.29043203300016],[-70.08971106699994,41.28998444200006],[-70.08193925699996,41.29254791900014],[-70.07140051999988,41.30158112200017],[-70.04600989499997,41.30756256700009],[-70.03140214799996,41.317531643000095],[-70.02009029899996,41.330796617000104],[-70.01402747299997,41.34463125200001],[-70.03233801999994,41.3395042990001],[-70.06029212099986,41.31663646],[-70.0760798819999,41.31110260600015],[-70.04430091099997,41.35097890800013],[-70.03722083199992,41.37287018400018],[-70.05414940499992,41.39268601900006],[-70.0523961889999,41.39656248300018],[-70.03974577599993,41.39435928300004],[-70.02887005299996,41.38611972100007],[-70.01920213399993,41.37011683800007]]],[[[-70.44668535099993,41.36741771000014],[-70.45287024599992,41.3588727890001],[-70.46548417899989,41.3602562520001],[-70.48127193899992,41.369574286000145],[-70.4947810539999,41.38231028900019],[-70.50059973899997,41.39362213700015],[-70.48692786399992,41.402655341000084],[-70.47069251199989,41.420314846000096],[-70.45571855399996,41.42963288000014],[-70.44603430899987,41.413519598000065],[-70.44493567599994,41.38202545800006],[-70.44668535099993,41.36741771000014]]],[[[-70.9279166929999,41.41861969700007],[-70.93866549399993,41.41122005500013],[-70.9485034089999,41.41412356000005],[-70.94067753399986,41.42077491500005],[-70.92602989099993,41.42891685000013],[-70.91133513999989,41.429705943000144],[-70.89764619599987,41.43637180800012],[-70.8711762289999,41.43866951000017],[-70.85946451599997,41.448265053000156],[-70.8564935519999,41.443127761000184],[-70.84859848799991,41.434332142000116],[-70.85445358399997,41.42916762300008],[-70.87598375899995,41.42248052900014],[-70.8926539349999,41.422422083000086],[-70.90638582199992,41.42237109700015],[-70.9279166929999,41.41861969700007]]],[[[-70.59300696499987,41.47166575700011],[-70.60366777299993,41.44822825700014],[-70.58877519399996,41.45416901200014],[-70.5794978509999,41.465887762000065],[-70.57042395699992,41.473944403000175],[-70.55589758999989,41.46873607],[-70.54576575399992,41.453924872000115],[-70.54625403599991,41.44428131700015],[-70.55654863199993,41.43650950700005],[-70.57640540299991,41.427801825000145],[-70.56334387899994,41.418687242000075],[-70.54930579299989,41.41453685100013],[-70.51740475199996,41.413519598000065],[-70.50743567599989,41.36261627800015],[-70.52501380099991,41.35907623900005],[-70.66600501199989,41.35700104400014],[-70.69627844999988,41.35150788000011],[-70.72394771999987,41.34271881700015],[-70.74767005099989,41.33100006700006],[-70.77590898299985,41.30438873900012],[-70.78640702999994,41.304144598000086],[-70.80467688699989,41.31256745000003],[-70.81497148299991,41.32070547100015],[-70.8340551419999,41.33991120000009],[-70.84622148299988,41.34666575700014],[-70.84622148299988,41.354071356000034],[-70.78197180899984,41.35423411699999],[-70.75450598899991,41.372503973000065],[-70.74217688699986,41.38483307500012],[-70.71532141799989,41.42035553600008],[-70.70262610599991,41.427801825000145],[-70.68960527299993,41.433091539000046],[-70.65990149599989,41.4565290390001],[-70.60513261599988,41.47402578300016],[-70.59300696499987,41.47166575700011]]],[[[-70.76830594199987,41.45954623300018],[-70.79081634399998,41.449198852000144],[-70.80845740399988,41.446946159],[-70.8329506959999,41.44246538000009],[-70.83986058899993,41.450530765000124],[-70.82812519599989,41.45718182300011],[-70.81340283799997,41.455017817000126],[-70.80265270499993,41.46313310700013],[-70.78212384299991,41.47862341900016],[-70.74296665299994,41.500765861],[-70.72435438399987,41.511099655000166],[-70.71063815799991,41.519213976000074],[-70.69492550799995,41.51703716200008],[-70.67919401399985,41.5104495560001],[-70.69978432199989,41.50232675000011],[-70.71839838799991,41.49199817900002],[-70.7428932359999,41.48165437100012],[-70.75856515699985,41.475740581000096],[-70.75755400899996,41.468392619],[-70.76830594199987,41.45954623300018]]],[[[-71.39264889199993,41.46328359600015],[-71.39879309799991,41.46190013200008],[-71.40099036399991,41.46845123900006],[-71.39517167899993,41.490912177000055],[-71.39879309799991,41.50287506700009],[-71.39220130099991,41.505926825000174],[-71.38947506399995,41.50922272300012],[-71.38780676999994,41.512884833000086],[-71.38442949099993,41.51715729400008],[-71.3953344389999,41.52643463700003],[-71.39268958199992,41.54266998900009],[-71.37767493399988,41.57794830900012],[-71.36839758999994,41.57623932500012],[-71.36241614499991,41.572455145000085],[-71.35912024599989,41.56639232],[-71.35781816299988,41.558172919000086],[-71.35728919199991,41.53656647300009],[-71.36042232999998,41.5145531270001],[-71.36563066299988,41.49534739800013],[-71.37144934799994,41.48236725500014],[-71.37608801999994,41.47699616100009],[-71.38414466099991,41.469468492000104],[-71.39264889199993,41.46328359600015]]],[[[-70.00210527299993,41.553778387000094],[-70.02147376199994,41.55072663000011],[-69.9810277989999,41.627671617000104],[-69.97301184799997,41.653713283000066],[-69.96507727799991,41.65135325700011],[-69.96129309799997,41.64695872600005],[-69.95995032499988,41.64069245000009],[-69.9593806629999,41.63263580900015],[-69.9762263659999,41.61229075700008],[-70.00210527299993,41.553778387000094]]],[[[-71.23802649599992,41.500311591000084],[-71.23363196499992,41.48920319200015],[-71.2648005849999,41.49607982000008],[-71.28595943899991,41.48200104400003],[-71.30321204299992,41.46637604400003],[-71.32306881399992,41.46873607],[-71.33495032499988,41.459051825000024],[-71.34618079299989,41.45473867400012],[-71.35456295499995,41.45831940300009],[-71.35781816299988,41.472479559000114],[-71.35130774599989,41.477850653000175],[-71.31997636599993,41.48847077000012],[-71.30882727799991,41.49542877800012],[-71.32135982999992,41.50853099199999],[-71.32555091099994,41.519964911000116],[-71.32225501199991,41.530422268],[-71.31248938699989,41.54075755400011],[-71.30915279899995,41.546087958],[-71.30817623599998,41.55316803600014],[-71.30882727799991,41.56777578300007],[-71.30577551999994,41.57172272300015],[-71.29108639199993,41.57827383000013],[-71.28551184799991,41.581732489000146],[-71.27944902299993,41.59308502800012],[-71.27358964799987,41.62099844000014],[-71.26781165299991,41.63263580900015],[-71.25780188699994,41.64069245000009],[-71.23273678299991,41.652777411],[-71.22061113199993,41.66054922100001],[-71.22061113199993,41.64004140800013],[-71.23257402299987,41.605902411000145],[-71.23363196499992,41.53082916900003],[-71.23509680899988,41.518988348000065],[-71.23753821499992,41.50950755400005],[-71.23802649599992,41.500311591000084]]],[[[-71.31509355399986,41.58079661700004],[-71.33071855399996,41.57558828300016],[-71.33722896999987,41.582098700000145],[-71.33722896999987,41.59251536700005],[-71.33071855399996,41.610744533000044],[-71.33592688699986,41.626369533000016],[-71.35676021999993,41.631577867000104],[-71.35936438699991,41.6419945330001],[-71.35545813699994,41.660223700000174],[-71.34373938699994,41.670640367000075],[-71.33592688699986,41.65761953300007],[-71.33071855399996,41.64720286699999],[-71.31769771999986,41.63287995000009],[-71.3033748039999,41.626369533000016],[-71.30467688699989,41.60423411700013],[-71.31509355399986,41.58079661700004]]],[[[-69.65233313699989,43.790432033000094],[-69.66405188699986,43.78912995000009],[-69.68488521999984,43.81126536699999],[-69.68879146999984,43.828192450000145],[-69.67316646999987,43.85293203300013],[-69.64712480399986,43.83730703300013],[-69.64842688699989,43.819077867000075],[-69.65233313699989,43.790432033000094]]],[[[-69.71482077299996,43.859451721000184],[-69.71483313699991,43.85944245000003],[-69.72134355399989,43.872463283000016],[-69.73045813699989,43.89069245000009],[-69.72264563699991,43.907619533000066],[-69.70051021999993,43.92715078300015],[-69.69399980399992,43.94537995000003],[-69.67837480399996,43.9675153670001],[-69.66926021999987,43.95579661700013],[-69.66926021999987,43.94277578300013],[-69.68097896999984,43.933661200000145],[-69.69009355399993,43.90501536699999],[-69.69012421999989,43.904863117],[-69.6901618979999,43.90467730400009],[-69.69021388699994,43.904422367000116],[-69.6902797519999,43.90410130400012],[-69.69035905399997,43.90371711700014],[-69.69045135599987,43.90327280400005],[-69.69055621999993,43.90277136700003],[-69.69067320999994,43.90221580399999],[-69.69080188699994,43.90160911700015],[-69.69094181399996,43.90095430400005],[-69.69109255399991,43.90025436700016],[-69.69125366799992,43.89951230400011],[-69.69142471999993,43.89873111700014],[-69.69160527299996,43.897913804000105],[-69.69179488699993,43.897063367],[-69.69199312699989,43.89618280400004],[-69.69219955399993,43.89527511699999],[-69.69241373099987,43.89434330400009],[-69.6926352199999,43.89339036700012],[-69.69286358499987,43.89241930400006],[-69.69309838699988,43.89143311700009],[-69.69333918899987,43.890434804000094],[-69.69358555399994,43.889427367000124],[-69.69383704299989,43.88841380400011],[-69.69409321999984,43.8873971170001],[-69.69435364799989,43.88638030400007],[-69.69461788699991,43.88536636700003],[-69.69488550199995,43.884358304000116],[-69.69515605399994,43.883359117000126],[-69.69542910599998,43.88237180400015],[-69.69570421999991,43.88139936700016],[-69.6959809599999,43.88044480400005],[-69.69625888699989,43.879511117000064],[-69.69653756399995,43.8786013040001],[-69.69681655399992,43.877718367000156],[-69.69709541799992,43.87686530399999],[-69.69737371999994,43.87604511700009],[-69.69765102299996,43.87526080400012],[-69.69792688699997,43.87451536700017],[-69.69820087699989,43.87381180400003],[-69.69847255399989,43.87315311700017],[-69.69874148099987,43.87254230400008],[-69.69900721999991,43.87198236700003],[-69.69926933499993,43.87147630400007],[-69.69952738699996,43.87102711700011],[-69.69978093899987,43.87063780400014],[-69.70002955399985,43.87031136700013],[-69.7002727929999,43.87005080400017],[-69.70051021999993,43.869859117000104],[-69.70100913699991,43.86952245000005],[-69.70128000199995,43.869336929000056],[-69.7015640539999,43.86914078299999],[-69.70186048099993,43.86893463700009],[-69.70216846999992,43.868719117000026],[-69.7024872099999,43.868494846000104],[-69.70281588699993,43.86826245000015],[-69.70315368899989,43.86802255400012],[-69.70349980399993,43.86777578300003],[-69.70385341799997,43.86752276200015],[-69.70421371999993,43.86726411700006],[-69.70457989799985,43.86700047100011],[-69.70495113699994,43.86673245000004],[-69.70532662699992,43.86646067900004],[-69.7057055539999,43.866185783000034],[-69.70608710599996,43.865908387000054],[-69.70647046999996,43.865629117000154],[-69.70685483499996,43.86534859600012],[-69.7072393869999,43.86506745000004],[-69.70762331399996,43.864786304000134],[-69.7080058039999,43.86450578300009],[-69.7083860429999,43.86422651200009],[-69.70876321999995,43.86394911700013],[-69.70913652299991,43.863674221000124],[-69.70950513699995,43.86340245000004],[-69.7098682519999,43.86313442900014],[-69.7102250539999,43.862870783000105],[-69.71057473099992,43.86261213699999],[-69.71091646999994,43.86235911700014],[-69.71124945999986,43.86211234600013],[-69.7115728869999,43.86187245000009],[-69.71188593899987,43.86164005400006],[-69.71218780399988,43.86141578300005],[-69.71247766799988,43.86120026200008],[-69.71275471999991,43.860994117000175],[-69.71301814799992,43.8607979710001],[-69.71326713699992,43.86061245000012],[-69.7135008769999,43.860438179000184],[-69.71371855399988,43.86027578300015],[-69.71391935599988,43.860125887],[-69.71410246999994,43.859989117000154],[-69.71426708499988,43.85986609600009],[-69.71441238699992,43.859757450000146],[-69.71453756399987,43.85966380400005],[-69.71464180399988,43.859585783000064],[-69.71472429299988,43.85952401200002],[-69.71478421999987,43.85947911700005],[-69.71482077299996,43.859451721000184]]],[[[-68.63410396999993,44.018296617000075],[-68.65623938699989,44.010484117000075],[-68.6627498039999,44.019598700000145],[-68.66014563699989,44.03261953300013],[-68.6536352199999,44.052150783000044],[-68.6510310539999,44.065171617000104],[-68.64061438699991,44.07819245000009],[-68.62629146999993,44.09121328300007],[-68.60676021999984,44.08860911699999],[-68.60155188699984,44.07037995000011],[-68.59894771999987,44.04694245000003],[-68.60806230399992,44.023504950000145],[-68.63410396999993,44.018296617000075]]],[[[-68.80711829299989,44.037543036],[-68.81545976499984,44.03192780200003],[-68.83458411399991,44.035101630000085],[-68.86925208199989,44.048366604000094],[-68.86009680899991,44.065212307000095],[-68.86803137899997,44.07937246300013],[-68.88674882699983,44.0898705100001],[-68.91018632699993,44.09552643400009],[-68.90156002499992,44.114040432000095],[-68.88414466099994,44.11383698100015],[-68.84813391799989,44.09552643400009],[-68.82738196499989,44.089789130000106],[-68.78274492099993,44.084662177],[-68.77297929599987,44.08189524900014],[-68.77464758999989,44.06187571800008],[-68.78673255099989,44.05235423400007],[-68.80056718699988,44.04657623900012],[-68.80711829299989,44.037543036]]],[[[-68.8411352199999,44.13808828300013],[-68.85155188699989,44.125067450000145],[-68.86327063699989,44.11985911700005],[-68.88801021999986,44.13027578300012],[-68.90103105399993,44.13418203300013],[-68.91926021999993,44.125067450000145],[-68.93748938699991,44.105536200000174],[-68.9426977199999,44.117254950000145],[-68.9400935539999,44.125067450000145],[-68.92837480399993,44.14199453300013],[-68.88931230399996,44.16412995000012],[-68.8567602199999,44.1810570330001],[-68.82030188699991,44.17845286700002],[-68.81118730399993,44.169338283000016],[-68.81118730399993,44.14850495000003],[-68.82420813699991,44.144598700000024],[-68.8411352199999,44.13808828300013]]],[[[-68.4439998039999,44.1810570330001],[-68.43879146999991,44.174546617000104],[-68.42707271999993,44.17584870000009],[-68.41665605399993,44.18235911699999],[-68.40233313699986,44.17584870000009],[-68.39061438699989,44.162827867000104],[-68.39191646999986,44.14590078300013],[-68.40363521999987,44.13418203300013],[-68.43228105399993,44.128973700000145],[-68.44269771999993,44.144598700000024],[-68.4544164699999,44.15110911700013],[-68.4635310539999,44.149807033000044],[-68.48957271999987,44.140692450000024],[-68.50259355399996,44.14850495000003],[-68.50649980399996,44.16022370000011],[-68.49217688699986,44.169338283000016],[-68.47524980399986,44.166734117000104],[-68.47264563699989,44.1771507830001],[-68.4596248039999,44.1849632830001],[-68.4439998039999,44.1810570330001]]],[[[-68.6142878899999,44.22398509300014],[-68.60850989499994,44.21283600500014],[-68.62010657499985,44.208441473000065],[-68.64431718699987,44.20319245000017],[-68.65636145699997,44.19916413],[-68.65062415299991,44.19029368700013],[-68.64305579299995,44.18463776200015],[-68.62279212099995,44.1775169940001],[-68.62279212099995,44.17133209800015],[-68.66205807199995,44.15619538000006],[-68.68199622299994,44.15261465100018],[-68.7163386709999,44.16734446800017],[-68.72020423099988,44.17214590100015],[-68.7146296869999,44.18121979400014],[-68.71088619699995,44.1904564470001],[-68.7133276029999,44.20099518400018],[-68.72459876199989,44.219061591000084],[-68.71625729099992,44.21845123900014],[-68.69892330599993,44.21967194200006],[-68.69045976499987,44.219061591000084],[-68.69505774599992,44.22862376500008],[-68.69676673099991,44.239528713000155],[-68.69530188699984,44.250433661000145],[-68.69045976499987,44.26003652600012],[-68.67894446499994,44.26963939000008],[-68.66746985599991,44.27012767100008],[-68.64207923099988,44.26003652600012],[-68.62307695199988,44.24986399900017],[-68.6164851549999,44.23708730700004],[-68.6142878899999,44.22398509300014]]],[[[-68.88540605399996,44.29954661699999],[-68.90103105399993,44.28001536699999],[-68.92056230399993,44.23704661700005],[-68.93358313699991,44.23574453300013],[-68.93358313699991,44.24355703300013],[-68.92707271999991,44.266994533],[-68.92446855399992,44.28131745000009],[-68.94139563699991,44.28131745000009],[-68.9426977199999,44.29043203300007],[-68.92446855399992,44.30735911700007],[-68.90103105399993,44.311265367000075],[-68.88540605399996,44.29954661699999]]],[[[-68.47524980399986,44.324286200000145],[-68.48436438699989,44.31386953300016],[-68.49738521999987,44.32037995000014],[-68.50910396999984,44.32298411700005],[-68.52212480399992,44.32298411700005],[-68.52993730399993,44.33079661700004],[-68.52993730399993,44.345119533000044],[-68.52472896999991,44.35944245000012],[-68.51952063699994,44.36725495000008],[-68.51170813699994,44.37897370000009],[-68.50259355399996,44.380275783000094],[-68.49608313699986,44.376369533000094],[-68.49217688699986,44.364650783000016],[-68.48957271999987,44.34772370000003],[-68.48696855399987,44.33470286700005],[-68.47524980399986,44.324286200000145]]],[[[-68.88540605399996,44.33079661700004],[-68.90363521999984,44.31907786700005],[-68.91665605399993,44.33209870000003],[-68.91665605399993,44.345119533000044],[-68.91144771999984,44.365952867000104],[-68.89972896999984,44.37767161699998],[-68.88410396999987,44.39199453300007],[-68.86847896999987,44.38157786699998],[-68.85936438699989,44.358140367000104],[-68.86847896999987,44.34772370000003],[-68.88540605399996,44.33079661700004]]],[[[-68.19892330599993,44.308620510000154],[-68.24083411399994,44.29454173400005],[-68.28331458199989,44.29242584800012],[-68.30687415299985,44.308417059000114],[-68.31371008999986,44.308417059000114],[-68.3200984369999,44.284938869000044],[-68.30943762899994,44.270941473],[-68.29649817599994,44.26109446800017],[-68.29633541599989,44.25006745000003],[-68.30878658799992,44.237860419000135],[-68.3260391919999,44.22589752800012],[-68.34129798099987,44.22357819200006],[-68.34784908799985,44.24017975500011],[-68.35228430899994,44.2380638690001],[-68.36375891799989,44.234727281000076],[-68.36835689999992,44.23273346600003],[-68.38011633999989,44.246446031000154],[-68.41405188699994,44.258612372000144],[-68.42357337099995,44.27427806200002],[-68.40847734299993,44.27834707200015],[-68.40546627499992,44.28526439000008],[-68.41238359299993,44.291856187000135],[-68.42727617099987,44.29478587400017],[-68.43480383999994,44.29999420800005],[-68.43386796799987,44.31203847900018],[-68.42874101499984,44.32571035400012],[-68.41010494699995,44.36005280200008],[-68.40135657499988,44.371771552000055],[-68.39256751199991,44.3767357440001],[-68.37893632699988,44.37950267100017],[-68.36746171799993,44.38641998900006],[-68.36428788999987,44.395331122000115],[-68.3757624989999,44.40407949400016],[-68.35496985599991,44.42328522300012],[-68.31590735599985,44.43695709800006],[-68.27403723899994,44.439276434000035],[-68.24482174399992,44.424505927000055],[-68.24193274599989,44.404974677000084],[-68.18529212099989,44.35700104400017],[-68.1765437489999,44.328314520000035],[-68.19892330599993,44.308620510000154]]],[[[-67.56639563699991,44.46100495000012],[-67.5846248039999,44.44407786700013],[-67.59373938699989,44.45709870000012],[-67.60545813699989,44.48314036699999],[-67.61587480399996,44.50527578300016],[-67.61457271999987,44.51439036700004],[-67.60024980399987,44.51829661700005],[-67.58202063699989,44.51439036700004],[-67.57811438699991,44.49095286699999],[-67.56639563699991,44.47923411699999],[-67.56639563699991,44.46100495000012]]],[[[-67.2760310539999,44.60293203300015],[-67.3020727199999,44.596421617000075],[-67.32160396999987,44.60293203300015],[-67.31899980399996,44.61204661700005],[-67.30337480399986,44.62506745000003],[-67.28384355399989,44.61985911700005],[-67.27082271999993,44.613348700000145],[-67.2760310539999,44.60293203300015]]],[[[-66.98607337099992,44.909776109000134],[-66.9895727199999,44.897609768000066],[-67.01211503799988,44.89935944200006],[-67.01732337099989,44.90802643400015],[-67.04511471299995,44.92715078300013],[-67.04511471299995,44.94448476800003],[-67.03815670499993,44.95490143400009],[-67.02948971299986,44.94448476800003],[-67.0034480459999,44.925401109000134],[-66.98607337099992,44.909776109000134]]],[[[-66.92056230399987,44.850327867000104],[-66.91926021999987,44.837307033000016],[-66.93879146999987,44.838609117000104],[-66.95571855399993,44.846421617000104],[-66.97524980399993,44.8607445330001],[-66.9817602199999,44.87246328300007],[-66.95832271999984,44.87767161699998],[-66.95441646999984,44.88939036700007],[-66.95441646999984,44.89980703300016],[-66.94660396999984,44.91543203300013],[-66.94009355399996,44.92584870000003],[-66.93358313699984,44.94147370000012],[-66.92186438699989,44.947984117000104],[-66.9049373039999,44.9557966170001],[-66.9049373039999,44.946682033],[-66.9036352199999,44.93366120000003],[-66.8919164699999,44.92194245000003],[-66.8932185539999,44.90631745000014],[-66.9010310539999,44.88939036700007],[-66.91665605399987,44.87767161699998],[-66.93097896999987,44.86985911699999],[-66.92056230399987,44.850327867000104]]],[[[-66.97785396999993,44.936265367000104],[-66.9856664699999,44.92584870000003],[-67.0051977199999,44.947984117000104],[-67.01431230399987,44.96360911699998],[-67.01691646999987,44.97923411699999],[-67.0051977199999,44.989650783000066],[-66.9895727199999,45.00136953300016],[-66.97394771999993,45.01829661700005],[-66.95441646999984,45.02741120000003],[-66.93879146999987,45.02480703300013],[-66.94009355399996,45.01178620000006],[-66.94530188699994,45.000067450000145],[-66.94790605399993,44.98314036699999],[-66.96353105399993,44.96100495000009],[-66.97785396999993,44.936265367000104]]],[[[-123.31566112899989,46.1485363340001],[-123.33798285299994,46.14759423000014],[-123.3578605469999,46.15048910600002],[-123.3769005319999,46.15612957700007],[-123.39663805899991,46.16893331100012],[-123.41104639299994,46.17507956200011],[-123.42057051399989,46.18559215700013],[-123.42295632199995,46.187805964000155],[-123.41708489099997,46.20484238700011],[-123.40504284399987,46.20093409900012],[-123.38836853799985,46.19036972700009],[-123.36620832499995,46.17920259900008],[-123.34885952399989,46.16640893900016],[-123.32432682399988,46.154661723000046],[-123.31566112899989,46.1485363340001]]],[[[-123.4366842479999,46.22039910100015],[-123.44084031199988,46.21324806000008],[-123.45266382599992,46.21828556500007],[-123.46843930599992,46.22500342299999],[-123.4778060189999,46.23609268000003],[-123.48242404099992,46.249340785000086],[-123.48074680299993,46.255943786],[-123.4711947639999,46.25478849100007],[-123.46012657699991,46.24756231600009],[-123.44433492199991,46.23589907600008],[-123.4366842479999,46.22039910100015]]],[[[-123.94553079599991,46.41764703400004],[-123.96412107099994,46.40679058000008],[-123.97471625899993,46.44018122100009],[-123.9977626189999,46.453397257000134],[-123.9909528249999,46.47317340600013],[-123.99034636399992,46.48829297700006],[-123.98110917899989,46.497463283000016],[-123.97399719799988,46.49292971500007],[-123.97120707199986,46.48478039300004],[-123.96389481899985,46.48011848500012],[-123.94818019999992,46.46419014800007],[-123.94711761199993,46.44867953200007],[-123.94553079599991,46.41764703400004]]],[[[-122.70107988199993,47.12396881700012],[-122.70677649599992,47.12396881700012],[-122.71524003799995,47.12815989800008],[-122.72374426999987,47.132391669000086],[-122.7379044259999,47.142320054],[-122.7421768869999,47.14374420800005],[-122.74640865799986,47.15371328300013],[-122.7379044259999,47.15790436400009],[-122.72940019399988,47.16217682500009],[-122.72374426999987,47.17206452],[-122.7180883449999,47.18060944200011],[-122.70539303299984,47.18195221600003],[-122.68553626199993,47.18060944200011],[-122.67560787699992,47.17633698100012],[-122.67137610599991,47.16498444200015],[-122.67275956899991,47.15509674700002],[-122.67707271999987,47.13955312700012],[-122.68976803299985,47.12958405200014],[-122.70107988199993,47.12396881700012]]],[[[-122.85968990799984,47.17772044499999],[-122.87385006399985,47.167873440000065],[-122.87946529899993,47.17206452],[-122.88231360599988,47.18060944200011],[-122.88801021999986,47.193304755],[-122.89077714799991,47.20038483300006],[-122.8978572259999,47.20888906500009],[-122.9120173819999,47.21881745000009],[-122.92194576699991,47.228705145],[-122.92194576699991,47.23720937700013],[-122.91486568899985,47.25556061400009],[-122.9120173819999,47.26972077],[-122.90493730399994,47.27826569200012],[-122.89077714799991,47.27826569200012],[-122.88231360599988,47.283880927000105],[-122.86530514199993,47.28953685100011],[-122.85822506399988,47.29242584800015],[-122.84691321499989,47.29804108300005],[-122.85260982999986,47.28534577000009],[-122.8667699859999,47.27826569200012],[-122.86815344999988,47.26829661700013],[-122.86815344999988,47.25556061400009],[-122.86953691299993,47.24286530200011],[-122.85822506399988,47.23151276200004],[-122.84829667899994,47.22020091400016],[-122.84829667899994,47.20746491100003],[-122.84829667899994,47.193304755],[-122.85968990799984,47.17772044499999]]],[[[-122.42243404899993,47.40884023600002],[-122.40615800699987,47.400336005000085],[-122.38735917899992,47.39398834800015],[-122.36681067599987,47.383530992000075],[-122.37433834499986,47.383246161000116],[-122.41779537699989,47.37079498900003],[-122.44953365799984,47.347723700000145],[-122.46922766799987,47.33637116100009],[-122.47472083199992,47.34955475500011],[-122.47378495999993,47.36286041900014],[-122.46637936099984,47.37319570500016],[-122.45221920499984,47.37734609600001],[-122.44225012899992,47.382513739],[-122.43984941299989,47.39280833500011],[-122.44640051999995,47.40058014500012],[-122.4630427729999,47.39777252800015],[-122.45563717399995,47.391017971000124],[-122.4752498039999,47.384466864000146],[-122.48542232999985,47.37982819200012],[-122.48973548099994,47.3739281270001],[-122.49022376199991,47.353827216000056],[-122.49217688699987,47.34418366100006],[-122.49657141799986,47.33637116100009],[-122.50340735599988,47.3315290390001],[-122.51048743399994,47.332098700000145],[-122.51829993399993,47.33730703300016],[-122.52725175699996,47.346258856000084],[-122.53148352799988,47.35691966400013],[-122.52757727799988,47.366441148000106],[-122.5210668609999,47.37441640800007],[-122.51768958199996,47.380438544000086],[-122.5102432929999,47.45579661700005],[-122.50397701699984,47.46747467700014],[-122.48900305899991,47.48265208500011],[-122.47101803299988,47.49579498900009],[-122.45563717399995,47.50088125200001],[-122.46206620999995,47.48676178600009],[-122.45763098899997,47.480169989],[-122.44859778599995,47.47540924700009],[-122.44131425699993,47.46674225500003],[-122.43911699099995,47.45624420800014],[-122.4380590489999,47.435858466000134],[-122.43512936099987,47.42572663],[-122.42243404899993,47.40884023600002]]],[[[-122.49510657499988,47.601548570000105],[-122.49327551999994,47.59422435100011],[-122.48863684799991,47.589585679],[-122.4803767569999,47.586859442],[-122.48863684799991,47.581366278000175],[-122.49876868399986,47.57123444200012],[-122.52086341099994,47.573960679],[-122.54234778599997,47.59552643400009],[-122.55760657499994,47.597886460000055],[-122.57054602799992,47.59609609600007],[-122.57787024599996,47.601548570000105],[-122.56956946499987,47.61810944200009],[-122.5676977199999,47.62958405200011],[-122.5746150379999,47.637884833],[-122.5792537099999,47.64866771000002],[-122.58047441299993,47.6629906270001],[-122.5789281889999,47.669378973],[-122.56187903599994,47.685614325000145],[-122.55801347599994,47.69574616100003],[-122.55894934799993,47.70595937700013],[-122.5577693349999,47.71381256700012],[-122.54792232999988,47.716986395],[-122.53770911399994,47.71478913],[-122.52651933499992,47.70929596600017],[-122.51683508999986,47.702378647999986],[-122.51097571499993,47.695868231000176],[-122.50584876199991,47.663275458000115],[-122.49962317599993,47.64866771000002],[-122.4898575509999,47.64126211100002],[-122.4980362619999,47.63361237200009],[-122.5032852859999,47.63003164300004],[-122.51097571499993,47.627590236000074],[-122.50015214799991,47.619289455],[-122.50059973899994,47.61172109600015],[-122.49693762899996,47.60712311400012],[-122.49510657499988,47.601548570000105]]],[[[-122.67711341099988,48.048651434000035],[-122.67320716099987,48.023749091000106],[-122.68150794199994,48.007269598000036],[-122.70018469999995,48.00775788],[-122.71760006399991,48.02301666900017],[-122.73078365799985,48.04242584800009],[-122.73672441299988,48.055731512000094],[-122.74087480399992,48.0743675800001],[-122.73892167899987,48.08250560100011],[-122.72931881399988,48.082993882],[-122.72301184799994,48.076239325000145],[-122.72032630099997,48.05475495000003],[-122.71629798099991,48.04828522300012],[-122.70197506399992,48.04922109600001],[-122.70164954299989,48.064398505],[-122.71198482999989,48.08364492400012],[-122.72931881399988,48.096747137000094],[-122.71890214799991,48.10224030200014],[-122.70921790299985,48.10224030200014],[-122.7011612619999,48.09760163000011],[-122.68687903599991,48.073228257000046],[-122.67711341099988,48.048651434000035]]],[[[-122.58649654899993,48.39081452000006],[-122.5845841139999,48.38336823100017],[-122.58287512899989,48.38031647300009],[-122.5790095689999,48.37714264500012],[-122.57770748599987,48.35667552300005],[-122.51598059799994,48.321966864],[-122.5175675119999,48.29401276200015],[-122.53087317599991,48.28384023600001],[-122.54637610599993,48.28139883000007],[-122.56212317599989,48.28620026200015],[-122.57591712099989,48.297674872000115],[-122.59398352799991,48.30792877800003],[-122.60899817599994,48.29913971600017],[-122.6203507149999,48.281927802000055],[-122.62743079299987,48.267279364000146],[-122.64126542899987,48.28799062700015],[-122.6467992829999,48.280829169000114],[-122.64854895699987,48.26264069200012],[-122.65135657499992,48.24994538000006],[-122.66592363199986,48.24217357000005],[-122.72370357999988,48.233791408000094],[-122.71007239499993,48.22142161700005],[-122.69611568899987,48.22016022300014],[-122.66502844999987,48.22638580900009],[-122.65192623599991,48.22406647300014],[-122.62832597599986,48.214300848],[-122.61693274599989,48.21206289300012],[-122.59552975199995,48.20538971600017],[-122.5806371739999,48.18846263199999],[-122.57103430899991,48.16624583500011],[-122.5586645169999,48.121323960000105],[-122.55459550699995,48.066066799],[-122.54662024599988,48.017035223000065],[-122.53551184799994,48.00592682500003],[-122.52204342399997,48.01194896000014],[-122.5102432929999,48.035223700000145],[-122.52285722599989,48.057074286],[-122.5240372389999,48.07941315300003],[-122.51402747299991,48.090765692],[-122.49315344999985,48.07965729400014],[-122.47695878799989,48.06525299700009],[-122.46003170499992,48.05345286700013],[-122.38109290299988,48.01581452000011],[-122.36554928299988,47.99966054900007],[-122.35936438699991,47.97662995000012],[-122.35065670499984,47.96092357000005],[-122.34679114499991,47.95058828300013],[-122.34947669199991,47.94594961100001],[-122.35521399599988,47.941961981000034],[-122.37364661399991,47.919175523000106],[-122.37848873599988,47.91469961100013],[-122.38190670499989,47.90778229400006],[-122.38670813699987,47.9049339860001],[-122.39297441299993,47.905096747000144],[-122.39468339799994,47.91034577000015],[-122.39582271999988,47.91648997600011],[-122.40038001199991,47.919175523000106],[-122.42227128799995,47.912339585],[-122.43541419199991,47.91046784100002],[-122.44131425699993,47.915472723000065],[-122.44334876199989,47.9369164080001],[-122.4496964179999,47.95945872599999],[-122.46051998599992,47.977850653000026],[-122.4760636059999,47.98688385600003],[-122.48851477799992,47.98509349200005],[-122.50706946499992,47.97085195500013],[-122.51768958199996,47.9662946640001],[-122.53034420499985,47.96735260600015],[-122.5392146479999,47.972154039000046],[-122.54808508999992,47.979966539000046],[-122.5620011059999,47.987372137000115],[-122.58018958199989,48.00486888200008],[-122.59333248599987,48.025376695000126],[-122.59215247299994,48.04205963700015],[-122.60977128799995,48.060492255],[-122.61485755099987,48.07489655200005],[-122.60016842399988,48.130113022999986],[-122.60724850199993,48.153753973000036],[-122.6229548819999,48.163316148000106],[-122.64439856699994,48.161444403000026],[-122.66844641799987,48.15058014500014],[-122.69322669199993,48.180243231000084],[-122.69977779899992,48.18475983300014],[-122.71011308499993,48.18707916900011],[-122.72354081899992,48.19269440300009],[-122.73615475199992,48.199652411],[-122.74413001199987,48.205877997000144],[-122.75572669199988,48.229641018000144],[-122.75121008999992,48.24994538000006],[-122.66844641799987,48.36286041900003],[-122.65656490799984,48.38507721600008],[-122.63084876199989,48.38467031500006],[-122.61668860599987,48.38959381700012],[-122.60545813699986,48.398423569999984],[-122.5957738919999,48.401922919000086],[-122.58649654899993,48.39081452000006]]],[[[-122.84935462099992,48.46161530200008],[-122.83629309799996,48.45994700700005],[-122.82095292899989,48.47260163000011],[-122.80833899599989,48.45819733300006],[-122.80614173099991,48.4420433610001],[-122.8130997389999,48.427313544000114],[-122.8277481759999,48.417385158000016],[-122.88988196499993,48.424139716000134],[-122.88345292899992,48.44147370000003],[-122.8986710279999,48.44790273600013],[-122.92137610599985,48.450995184000035],[-122.93761145699989,48.45831940300003],[-122.94253495999995,48.475775458],[-122.93700110599993,48.49323151200015],[-122.92487545499985,48.50714752800003],[-122.91030839799991,48.51357656500015],[-122.91624915299994,48.52387116100006],[-122.91698157499987,48.533636786],[-122.9124649729999,48.541734117000125],[-122.91030839799991,48.54706452],[-122.88707434799987,48.56366608300005],[-122.87702389199991,48.56586334800015],[-122.86074785099989,48.53961823100012],[-122.85903886599988,48.52130768400015],[-122.86192786399991,48.48932526200015],[-122.85846920499989,48.472845770000056],[-122.84935462099992,48.46161530200008]]],[[[-122.69408118399984,48.54352448100012],[-122.7030330069999,48.5418968770001],[-122.71434485599985,48.54193756700009],[-122.72288977799988,48.54816315300003],[-122.73704993399991,48.57713450700014],[-122.73542232999988,48.59039948100014],[-122.72679602799987,48.60150788],[-122.71548417899989,48.60602448100015],[-122.70287024599992,48.600409247000144],[-122.69640051999991,48.592271226000136],[-122.69371497299991,48.585923570000105],[-122.67845618399987,48.57290273600002],[-122.67454993399987,48.56879303600005],[-122.67926998599987,48.564520575000145],[-122.68590247299993,48.55695221600011],[-122.68805904899993,48.54702383],[-122.69408118399984,48.54352448100012]]],[[[-122.99225826699985,48.51357656500015],[-123.00234941299989,48.50918203300016],[-123.0105688139999,48.51162344],[-123.01659094999991,48.511419989000146],[-123.02017167899989,48.499335028000026],[-123.01683508999986,48.49664948100014],[-122.99913489499995,48.47260163000011],[-122.99132239499994,48.46767812700007],[-122.9828995429999,48.463609117000104],[-122.96495520699995,48.45831940300003],[-122.96495520699995,48.45148346600003],[-122.97931881399985,48.45636627800009],[-122.99038652299988,48.45587799700009],[-123.00161699099988,48.45311107000005],[-123.01646887899993,48.45148346600003],[-123.03001868399991,48.453802802000084],[-123.03844153599994,48.45941803600009],[-123.04527747299996,48.46637604400017],[-123.05370032499991,48.47260163000011],[-123.0654190749999,48.47850169500007],[-123.07038326699987,48.4801292990001],[-123.09162350199995,48.478827216000084],[-123.1026505199999,48.480292059000064],[-123.1163630849999,48.48419830900003],[-123.12970943899984,48.48973216400016],[-123.1393123039999,48.495835679000045],[-123.14915930899993,48.505601304],[-123.15444902299991,48.51312897300015],[-123.1665746739999,48.54352448100012],[-123.1739395819999,48.573431708],[-123.17414303299986,48.57843659100003],[-123.17756100199995,48.598822333000115],[-123.1584366529999,48.614569403000175],[-123.12913977799985,48.620062567],[-123.1021215489999,48.60911692900013],[-123.09382076699985,48.59760163],[-123.07664954299992,48.584051825000024],[-123.05776933499989,48.57290273600002],[-123.02464758999984,48.56281159100014],[-123.00430253799995,48.53945547100015],[-122.97765051999993,48.53131745000003],[-122.9799698559999,48.52513255400008],[-122.99225826699985,48.51357656500015]]],[[[-122.85781816299995,48.708685614],[-122.74583899599989,48.66437409100014],[-122.75088456899991,48.65473053600009],[-122.75723222599993,48.65005117400007],[-122.80044511599993,48.62962474199999],[-122.80451412699988,48.623724677000055],[-122.80540930899987,48.61688873900011],[-122.80894934799997,48.61127350500014],[-122.82095292899989,48.60911692900013],[-122.83112545499986,48.612697658000016],[-122.84137936099987,48.62091705900009],[-122.8658748039999,48.64960358300005],[-122.87987219999985,48.677191473000086],[-122.88239498599988,48.68797435099999],[-122.88678951699985,48.69627513200005],[-122.89635169199993,48.69977448100015],[-122.9059138659999,48.69733307500003],[-122.91030839799991,48.68797435099999],[-122.90876217399995,48.67694733300014],[-122.90611731699988,48.671087958],[-122.90562903599988,48.66608307500014],[-122.91030839799991,48.657538153000026],[-122.86192786399991,48.60171133000013],[-122.87437903599991,48.59373607],[-122.88752193899987,48.58999258000016],[-122.91714433499992,48.588690497000144],[-122.93333899599989,48.59275950700011],[-122.94139563699991,48.60260651200004],[-122.94587154899996,48.61408112200009],[-122.95128333199993,48.62343984600003],[-122.96841386599996,48.634588934000035],[-122.98009192599996,48.63861725500003],[-122.98546301999991,48.63304271],[-122.98623613199992,48.61933014500006],[-122.98961341099995,48.604641018000066],[-122.99705969999994,48.5971540390001],[-123.00963294199991,48.60541413],[-123.02220618399991,48.61839427299999],[-123.02651933499992,48.626532294000114],[-123.02635657499985,48.63646067900011],[-123.0209041009999,48.642482815],[-122.99714107999993,48.660589911000116],[-122.98884029899992,48.66437409100014],[-122.97777258999989,48.66779205900015],[-122.9293106759999,48.70844147300015],[-122.91795813699996,48.71141185100005],[-122.8966365229999,48.712144272999986],[-122.85781816299995,48.708685614]]],[[[-122.61314856699988,48.64842357000005],[-122.62047278599988,48.645941473],[-122.63361568899984,48.65167877800009],[-122.65514075399994,48.66474030200005],[-122.66222083199992,48.67031484600007],[-122.67943274599993,48.68817780200014],[-122.70311438699986,48.70791250200007],[-122.71654212099986,48.71523672100007],[-122.7202856109999,48.72492096600003],[-122.71515865799988,48.739081122000144],[-122.69847571499993,48.73468659100017],[-122.67137610599991,48.70482005399999],[-122.6623429029999,48.69769928600011],[-122.64736894399995,48.69074127800006],[-122.63516191299988,48.68329498900006],[-122.62840735599985,48.67706940300011],[-122.62140865799986,48.66852448100009],[-122.61534583199997,48.65863678600009],[-122.61314856699988,48.64842357000005]]],[[[-123.03528966304808,48.99251454707512],[-123.03530839799988,48.99249909100011],[-123.04527747299996,48.984361069999984],[-123.08849036399988,48.97223541900008],[-123.08934485599988,48.98798248900006],[-123.09048417899992,48.99249909100011],[-123.09048816773334,48.99251454701054],[-123.03530634599989,48.992514547000056],[-123.03528966304808,48.99251454707512]]],[[[-95.1605692139999,49.36949412100007],[-95.10282080099992,49.35393951500005],[-94.98251806699994,49.35616160100015],[-94.92608740299991,49.34556793300008],[-94.8561950289999,49.31828277600006],[-94.83914180499995,49.30887766500011],[-94.82725622599995,49.29285797200005],[-94.81989233499996,49.25203359000006],[-94.81035803299997,49.229606019000165],[-94.80612056599992,49.21089915],[-94.81118485599988,49.16656077100005],[-94.80374344999986,49.14640696300015],[-94.7920387369999,49.12645986000014],[-94.7537723399999,49.02615590400007],[-94.71121679699993,48.91458648700008],[-94.71173356199995,48.8627550260001],[-94.71214697299988,48.84244618700008],[-94.7132838549999,48.82384267200002],[-94.71090673899992,48.80751292000018],[-94.70178584899993,48.79009796200013],[-94.68889257899997,48.77883249899998],[-94.59285192899995,48.726432597000056],[-94.51916133699993,48.704470113000085],[-94.47949967499997,48.700697734000144],[-94.31157710799994,48.71392690000006],[-94.29258601899997,48.711911520000015],[-94.28403356999996,48.709069316000054],[-94.27449926799997,48.7041083780001],[-94.26548172999992,48.697752177000055],[-94.25845373599991,48.69082753600016],[-94.25576656099989,48.6835411580001],[-94.25245926899998,48.66240549700014],[-94.2510381679999,48.65728953000017],[-94.23215043199986,48.65201853500004],[-94.03484981299994,48.64331105600017],[-93.8748854179999,48.63620554600014],[-93.83574051999994,48.617136943000055],[-93.80938553899996,48.54357554100007],[-93.77866390099992,48.51946848600012],[-93.7567789309999,48.51654876700003],[-93.6162965499999,48.53130238900003],[-93.59988928299995,48.52634145100008],[-93.56658382199993,48.53827870700003],[-93.49175634799988,48.542309469000124],[-93.45992366599995,48.55739898700013],[-93.45224971499997,48.57272105],[-93.45377417099988,48.586957907000155],[-93.45147456899994,48.59742238400009],[-93.41731644699988,48.604114482],[-93.38571630899989,48.61486318000014],[-93.25773962499991,48.63031443300004],[-93.13170080599996,48.62463002499999],[-92.97972041799997,48.617679546000105],[-92.95558752499991,48.612227682000125],[-92.8841965329999,48.57987823500004],[-92.72554988699991,48.54869150800006],[-92.6486036789999,48.536263326],[-92.63018103099996,48.51946848600012],[-92.62746801899996,48.50277699800007],[-92.64674332699991,48.49742848800004],[-92.69136592599992,48.489857891000085],[-92.71064123599987,48.48288157200007],[-92.7189094649999,48.459782207],[-92.70405249099997,48.44515777600013],[-92.67712906899996,48.441747132],[-92.657052776,48.438233134000036],[-92.57052058899988,48.446656393000055],[-92.52693151899992,48.44562286400007],[-92.49062882499996,48.43311716800015],[-92.47453161599988,48.4104828900001],[-92.4675811369999,48.39428232900009],[-92.46706437199997,48.35322540300014],[-92.46246516999992,48.32929921500015],[-92.45138057499992,48.31268524200014],[-92.4182301429999,48.282041118],[-92.38464046299998,48.23240590400003],[-92.3718505459999,48.22258738200007],[-92.3538154709999,48.22289744100014],[-92.32787390199996,48.229434509000114],[-92.30366349299996,48.23927887000009],[-92.29102860599994,48.24956248000008],[-92.29206213499992,48.27033640600003],[-92.30141556899997,48.290645244000146],[-92.30309505299994,48.31092824300005],[-92.28159765699986,48.331779684000125],[-92.25911840899997,48.33963450200015],[-92.15473201499992,48.35012481800011],[-92.07049943099992,48.34671417300008],[-92.04342097999995,48.33459604900018],[-92.03011429899996,48.31317616900016],[-92.02135514299995,48.28744130500017],[-92.00799678599995,48.26248158800008],[-91.99215795999991,48.24790883400014],[-91.97549230999991,48.236565857000144],[-91.95730220599985,48.22832346600002],[-91.85224401899993,48.19597401900002],[-91.76498836299992,48.18734405600015],[-91.74413692299996,48.179592590000155],[-91.72757462599995,48.168327128000115],[-91.69550939999993,48.13757965100013],[-91.71643835499992,48.11205149400003],[-91.69251216699993,48.09786631300007],[-91.61861486899994,48.08957224600012],[-91.5974792079999,48.09039906800014],[-91.5896760659999,48.08833201200017],[-91.58109777899995,48.08094228100008],[-91.57980586799991,48.07096873000016],[-91.58512853999994,48.060840149000015],[-91.58698889199994,48.05257192000006],[-91.57484492999995,48.04820526200008],[-91.48709834899992,48.053476258],[-91.46472245299992,48.04895457],[-91.44627396699991,48.04073801700003],[-91.42792883399994,48.03644887400016],[-91.36540034999993,48.0578429160001],[-91.27636185799994,48.064767558000156],[-91.23806962199994,48.082647604000115],[-91.20396317599997,48.10765899700011],[-91.07110306899997,48.1708592740001],[-91.02815995299991,48.18483774900001],[-91.00810949799985,48.19437205100008],[-90.92315344299999,48.22710907],[-90.87380244999989,48.234343771000155],[-90.84067785699997,48.220106914],[-90.83793900599994,48.21054677299999],[-90.8488427339999,48.19871287100007],[-90.84972123299994,48.18956614200009],[-90.843003296,48.17698293100006],[-90.83426997999993,48.171789449000144],[-90.8238830169999,48.168327128000115],[-90.81230749599987,48.1609890750001],[-90.80305741399994,48.14716562900015],[-90.79670121299992,48.11706410699999],[-90.78646927899992,48.100450134000155],[-90.75034745299993,48.08399119100001],[-90.7013065189999,48.08455963200005],[-90.6110794679999,48.103499044],[-90.5868432209999,48.10481679300015],[-90.57387243699989,48.09789215100007],[-90.56219356299991,48.08884877600012],[-90.54201391699993,48.08373280900004],[-90.53160111499999,48.08455963200005],[-90.50188716699992,48.094274801],[-90.49049251399992,48.096238506000034],[-90.48346451899991,48.09448150700014],[-90.47785762599997,48.09153595000005],[-90.4706229259999,48.089882304000085],[-90.17862524499989,48.11644399000003],[-90.12038590599988,48.115358786000016],[-90.07325699899995,48.10119944300008],[-90.06103552299993,48.09101918600011],[-90.008222209,48.02973093700013],[-89.99532893899999,48.01859466600003],[-89.980316936,48.0100938930001],[-89.92044978899995,47.98745961500008],[-89.90244055199994,47.98590932300006],[-89.80345434699987,48.013762919000115],[-89.78097509799994,48.017199402000145],[-89.76330175899994,48.017302755000074],[-89.74596431499992,48.013762919000115],[-89.72459610999992,48.005908101999985],[-89.71278804599993,48.00337595600008],[-89.67865576299994,48.00869862900005],[-89.65658992599994,48.00797515900014],[-89.593105428,47.99650299100013],[-89.49896244399989,47.995094552000026],[-89.46184728999992,47.99453928600009],[-89.38709733099992,47.98053497299999],[-89.36363623099996,47.979604797000135],[-89.34038183599992,47.98415232400008],[-89.24552974499997,48.02117848800013],[-89.09525467899994,48.079934591],[-88.90462032099991,48.154296977],[-88.78214717599997,48.202071838000094],[-88.64272416299988,48.256590475],[-88.57887792999992,48.27038808200014],[-88.40790645399997,48.30405527800009],[-88.37646134499994,48.305114645000074],[-88.3472641599999,48.29865509100004],[-88.15967871199993,48.22488698400018],[-87.97209326199996,48.15117055300006],[-87.78448197499998,48.07742828400002],[-87.59689652499992,48.00373769200009],[-87.40925939999994,47.92999542200006],[-87.22169978899987,47.856253154000015],[-87.03416601599992,47.78248504700018],[-86.84655472899993,47.70874277800014],[-86.74180660099998,47.66644561800014],[-86.63705847199992,47.62412262000005],[-86.53231034399997,47.58190297500009],[-86.42761389199991,47.53957997700017],[-86.32286576399994,47.49720530200007],[-86.21811763499996,47.45493398100008],[-86.11336950699993,47.41266265899999],[-86.00856970299995,47.370365499000016],[-85.8836160889999,47.31855987600012],[-85.75861079899994,47.266780090000154],[-85.63363134799997,47.21502614399999],[-85.50862605899991,47.16322052000011],[-85.38364660699995,47.111440735000045],[-85.2586413169999,47.05968678800009],[-85.13366186599993,47.00782948800009],[-85.00865657599988,46.95599802700012],[-84.99240433799994,46.94878916400016],[-84.97620377699994,46.94147694900006],[-84.95997737699994,46.93424224900009],[-84.9436734619999,46.927007548000134],[-84.9274470629999,46.91966949500015],[-84.91116898599998,46.91248647],[-84.89494258699997,46.90514841700009],[-84.87869034799988,46.89791371700012],[-84.86373002199988,46.88194570000009],[-84.85419572,46.86117177300006],[-84.8354113369999,46.80386261000008],[-84.81644608599994,46.74590749100004],[-84.78745560699987,46.65717905700002],[-84.77332210299994,46.63343373600016],[-84.69368872099997,46.56485911100004],[-84.58940567999994,46.47512298600007],[-84.56656469699996,46.46119618800016],[-84.54129492199988,46.45282460600002],[-84.51230444299992,46.45163604700018],[-84.49217647399993,46.456881206],[-84.47830135099989,46.4664671840001],[-84.46540808099988,46.47817189600009],[-84.44809647599995,46.489721578000044],[-84.42324011199992,46.51158070900006],[-84.38970210799991,46.520262350000124],[-84.35246923799988,46.52274281799999],[-84.30534033199987,46.50160715800014],[-84.24201086499997,46.52646352100011],[-84.19728491199993,46.546358948000105],[-84.14767553699993,46.54134633400007],[-84.11044266799993,46.52646352100011],[-84.15881180899996,46.43334259100003],[-84.14767553699993,46.39988210100002],[-84.12904618399996,46.37502573700006],[-84.10543005399987,46.34774058000014],[-84.11289729899997,46.32787099200006],[-84.11909847099987,46.31422841400014],[-84.11413753299993,46.29557322200016],[-84.10667028899991,46.276969706000116],[-84.09922888299988,46.25087310800002],[-84.09922888299988,46.237230530000105],[-84.09677425099991,46.22482818700014],[-84.0868007009999,46.201212057000035],[-84.05582067899988,46.17144643200005],[-84.02104243999992,46.15160268100006],[-84.01416947499986,46.11599762000016],[-84.00876928799991,46.112328593000186],[-83.99582434099997,46.101166484000046],[-83.97639400199998,46.07310618100003],[-83.96458593799989,46.06318430700004],[-83.94730017199988,46.06060048400003],[-83.93073787499989,46.066956686000154],[-83.87267940299992,46.107884420000076],[-83.85642716599992,46.11573923800001],[-83.83929642799987,46.11920155900005],[-83.81805741399998,46.11656606000004],[-83.76653601099989,46.106489157],[-83.66483679199993,46.11914988300004],[-83.6138838299999,46.11563588500008],[-83.56543717499994,46.09077952100013],[-83.50882564399987,46.04737131700013],[-83.49203080299989,46.03708770700014],[-83.47409908099992,46.02313507100014],[-83.46280778099994,46.007787171000174],[-83.4658566899999,45.993111064000104],[-83.51024674499993,45.93239125600009],[-83.55621293099992,45.869656068000054],[-83.59525447599995,45.81642934200009],[-83.51071183299986,45.77906728100014],[-83.3963260509999,45.72852773099999],[-83.19930965299994,45.641556295000086],[-83.01901057999996,45.561871236],[-82.75943986099995,45.44720123300006],[-82.58877844299988,45.37180531900016],[-82.54828995799997,45.33459828700008],[-82.53214107299999,45.293515523],[-82.48408199099991,45.083244120000174],[-82.43602290899989,44.87297271800004],[-82.38788631299988,44.662701315],[-82.33987890599992,44.452429912000085],[-82.29184566299998,44.242210185000076],[-82.24368322799992,44.031938782000125],[-82.19562414599994,43.82169321700009],[-82.1475650639999,43.61134429900015],[-82.1454463299999,43.600647278000125],[-82.14565303599997,43.57641103100015],[-82.15361120599994,43.54959096300017],[-82.18585729999998,43.48729502400015],[-82.21800004199993,43.42502492300004],[-82.25019445899996,43.36278066],[-82.28238887599991,43.30048472100019],[-82.31450577899994,43.238188782000165],[-82.34672603399991,43.175841167000115],[-82.37892045099994,43.11357106600009],[-82.41108902999989,43.05127512700007],[-82.41641170299994,43.017142843],[-82.41460302799996,42.98324310400009],[-82.43044185399995,42.95130706800001],[-82.45317948399992,42.91898346000012],[-82.46478084299989,42.88363678000003],[-82.46803645899988,42.863973898],[-82.48232499199995,42.83511261000014],[-82.48527054899995,42.81852447600012],[-82.47361751299988,42.798163961],[-82.47098201599997,42.79056752500004],[-82.47134374999987,42.77984466600013],[-82.47695064399997,42.76147369400003],[-82.48341019799994,42.719254049000156],[-82.51126379399992,42.64667450000006],[-82.52622412199989,42.619906108000166],[-82.54924597199992,42.590941468],[-82.57583349699986,42.571795349000084],[-82.60846716299991,42.56109832800008],[-82.64433060699989,42.557816874000096],[-82.69440506999987,42.519137065000095],[-82.8001350509999,42.41798044900009],[-82.83282039499997,42.39800750799999],[-82.94351131199994,42.35547780400013],[-83.04035294699989,42.33186167400011],[-83.07996293099993,42.30506744400013],[-83.1098319099999,42.27227874800011],[-83.12851293999991,42.239955140000134],[-83.13592850799994,42.20026763900013],[-83.13964921099995,42.11585418800003],[-83.15949296099993,42.04632354800013],[-83.15701249299988,42.00043487600006],[-83.13250661999987,41.94195280800004],[-83.12344864999994,41.9203364050001],[-83.09737788899997,41.87576548300008],[-83.0684132499999,41.84773101900008],[-82.98379309099991,41.808069357000086],[-82.86522151699998,41.752491353],[-82.71112239599992,41.680247701000056],[-82.66691320799988,41.669085592000116],[-82.45131913299991,41.671901957],[-82.42486079999995,41.676811219000044],[-82.28135534699993,41.74329294900009],[-82.13774654099993,41.809800517000056],[-81.99424108899993,41.87620473300011],[-81.85073563599992,41.94271230100016],[-81.70728186099987,42.00921986900015],[-81.56372473199997,42.075675761000085],[-81.42021927899995,42.14215749100008],[-81.27666215099994,42.208665060000115],[-81.14788448099998,42.22825042700005],[-81.01915848899998,42.24780995700017],[-80.89038081899992,42.267447002000026],[-80.76165482699993,42.28703236900013],[-80.63287715699992,42.30664357500013],[-80.52023319699992,42.32378209800014],[-80.50415116399995,42.32622894300009],[-80.37537349499986,42.345788473000184],[-80.24659582599988,42.36547719400012],[-80.0931684979999,42.420150859],[-79.93976700899992,42.47477284800014],[-79.78639135799995,42.529368999000084],[-79.76300663499988,42.53770492800011],[-79.63301570699988,42.58404266400011],[-79.47964005599991,42.63871632899999],[-79.32618688999992,42.69333831800013],[-79.1727595629999,42.74801198400017],[-79.01938391099995,42.802685649000026],[-78.96305660099995,42.84012522400009],[-78.91895076599995,42.88924367300014],[-78.90905472799997,42.93022308399999],[-78.91525590099994,42.94761220300001],[-78.93633988499995,42.960040385000084],[-78.95995601399991,42.96621571900006],[-78.98352046799991,42.976137593000075],[-79.00835099299994,42.991046245000014],[-79.02201940999996,43.00223419300014],[-79.03196712299986,43.01342214],[-79.02824641999986,43.03450612400003],[-79.02201940999996,43.04941477500007],[-79.02325964399998,43.05807057800003],[-79.03075272699992,43.06680389400019],[-79.04186315999996,43.075459697000056],[-79.05553157599988,43.087887879000114],[-79.06294714399988,43.09654368100017],[-79.0652725829999,43.10589711600004],[-79.06573767099992,43.120237326],[-79.06142268999989,43.13028839200014],[-79.05558325199988,43.13842743000005],[-79.05160416699991,43.14685068800004],[-79.04933040399997,43.15984731000016],[-79.04860693399988,43.170621847000106],[-79.0537745769999,43.26035797100009],[-79.05842545599995,43.27779876700011],[-79.09162756399988,43.3425234990001],[-79.17430985599995,43.464531555000164],[-79.07899267599993,43.4989480600001],[-78.94618424499996,43.5467229210001],[-78.75082149299995,43.61705454600009],[-78.68808630399994,43.6318081670001],[-78.45727351899993,43.63098134400009],[-78.2264607349999,43.63020619700008],[-77.99567378799989,43.629431051000054],[-77.76483516399988,43.62865590400007],[-77.53399654199987,43.62785492000013],[-77.30320959499994,43.62710561200013],[-77.07237097199993,43.626330465000116],[-76.8415323489999,43.625503642000076],[-76.83600297099991,43.628035787999984],[-76.8304735919999,43.63043874100005],[-76.8248925369999,43.63289337200011],[-76.81936315899988,43.635425517],[-76.81378210499989,43.63788014800014],[-76.80830440299988,43.640308940000025],[-76.80272334899988,43.642789409],[-76.79719397099987,43.64526987700007],[-76.75435420699992,43.700098572000066],[-76.71151444499989,43.75500478100018],[-76.66867468299995,43.809885153],[-76.62588659699992,43.864765523000116],[-76.58299515799986,43.919594218],[-76.54020707199993,43.974474589000025],[-76.4973673099999,44.029354960000134],[-76.45463090099987,44.08423533200012],[-76.4300329189999,44.103303935000106],[-76.35008947799989,44.15172475200008],[-76.34440506999992,44.158184306000024],[-76.34135616099991,44.165780742],[-76.33711869299995,44.17373891200005],[-76.3277652589999,44.18149037700006],[-76.31717159099995,44.18505605100013],[-76.2066357019999,44.21740549800002],[-76.18575842299992,44.225673727000164],[-76.16932531799995,44.24236521400009],[-76.16973872899987,44.247687887000055],[-76.17805863499993,44.27213084],[-76.17867875199991,44.27864207000006],[-76.14979162699987,44.3045319620001],[-76.06726436399993,44.34799184200001],[-75.89869584199992,44.399978333000135],[-75.87032548099992,44.408608297000065],[-75.85570104999992,44.42204417000011],[-75.84541743999995,44.439045715000034],[-75.83094803899994,44.46431549100011],[-75.79118302499992,44.49676829100004],[-75.75462194799988,44.5275674440001],[-75.69968990099997,44.58167266800008],[-75.57819860899994,44.661512757000175],[-75.45595800799993,44.741766256000105],[-75.34183060699993,44.81674875900016],[-75.27023290999998,44.863774313000036],[-75.12964717599996,44.92516591400012],[-75.0755936279999,44.93550120000013],[-75.05872127399991,44.94103057800014],[-75.0148996579999,44.9659902960001],[-74.9986474209999,44.97239817300006],[-74.94020137599992,44.98774607400013],[-74.903743652,45.00521270800009],[-74.88650956299992,45.00939849900011],[-74.86847448699993,45.0101219690001],[-74.74155716999994,44.99885650700004],[-74.71296139199993,44.99925364800005],[-74.69587520399992,44.998029684000024],[-74.59611385099991,44.99849477200014],[-74.49635249799991,44.99901153600008],[-74.39661698499992,44.99947662300012],[-74.2968814699999,44.999993388000135],[-74.1971459559999,45.00045847600008],[-74.0973846039999,45.00097524000002],[-73.9976490889999,45.00144032800013],[-73.8978877369999,45.001957093],[-73.79815222199991,45.00247385700011],[-73.69841670799991,45.002938945000054],[-73.5986553559999,45.003404033],[-73.49891984099989,45.0039207970001],[-73.3991584879999,45.00438588500005],[-73.35134085899992,45.00463364500003],[-73.2994229739999,45.004902649000186],[-73.19968745999998,45.00541941400003],[-73.0999519449999,45.00588450200014],[-73.00026810699993,45.006349590000085],[-72.9004809169999,45.006866354000024],[-72.80069372599988,45.00733144200013],[-72.70095821199989,45.00779653000008],[-72.6012743739999,45.00831329400001],[-72.501487183,45.00883005800016],[-72.4017516689999,45.00929514600006],[-72.30196447799997,45.009760233000016],[-72.20222896399987,45.010328674000064],[-72.10254512599991,45.010793762],[-72.00280961099989,45.01125885000012],[-71.903074097,45.01177561500005],[-71.8032869059999,45.01224070300016],[-71.70355139199998,45.01275746700012],[-71.60381587799989,45.01327423100015],[-71.50584813699996,45.013731075000024],[-71.50408036399998,45.013739319000095],[-71.50661250799996,45.03704539000002],[-71.50475215699996,45.05296173100005],[-71.49725907399994,45.06655263300006],[-71.45658972199999,45.110994365000025],[-71.45121537399993,45.12169138600002],[-71.44599605399992,45.140294902000065],[-71.44160355699992,45.150681865000095],[-71.41302648899993,45.186183574000054],[-71.40656693499996,45.20494211900014],[-71.42268998299997,45.217189434000076],[-71.44904496299992,45.22690460300011],[-71.43881302899987,45.23346751000009],[-71.39488806199992,45.24152903300008],[-71.38124548299989,45.25077911400008],[-71.35209997599988,45.27832265300016],[-71.33432328399996,45.288709616000105],[-71.31153397699995,45.29413564100015],[-71.29339554899994,45.29232696600008],[-71.20936966999992,45.25475819899999],[-71.18513342299994,45.2485570270001],[-71.16032873599997,45.24576650000013],[-71.14172521999993,45.25232940700012],[-71.11102941899989,45.287107646000074],[-71.09524226999991,45.30090525300001],[-71.08555293799998,45.304212545000105],[-71.08495196099997,45.30429257800007],[-71.06421057199998,45.30705474900018],[-71.0544178879999,45.310362040000186],[-71.03666703399998,45.323384501000035],[-71.02759781899994,45.334649963000075],[-71.01653906299993,45.34312489799999],[-70.99315547799993,45.347827454000154],[-70.96811824599988,45.34452016200008],[-70.95160762599997,45.332014466000075],[-70.90690751199992,45.24623158800016],[-70.8924122729999,45.23460439000009],[-70.87435136,45.24566314800002],[-70.87060481799998,45.25527496400012],[-70.87249100799997,45.27418853800005],[-70.87024308299996,45.28312856100008],[-70.8626208089999,45.29036326100005],[-70.84238948599992,45.30121531200011],[-70.83525813799997,45.309793599000116],[-70.8320800379999,45.32855214400003],[-70.83546484499993,45.373097229000116],[-70.83383703699987,45.39309600800006],[-70.82598221799995,45.41045929000008],[-70.81298559599992,45.42343007400011],[-70.7948730069999,45.43040639200011],[-70.77187699399994,45.430044658],[-70.7525500079999,45.42234487000012],[-70.7180043139999,45.397281799],[-70.69673946199993,45.388651836000136],[-70.6757846679999,45.38870351200008],[-70.65358964099991,45.395473124000105],[-70.64131648799989,45.40849558500004],[-70.65025651099997,45.427460836000094],[-70.66816239499988,45.43903635700006],[-70.70738480699993,45.45639963800006],[-70.7228360599999,45.470920716000094],[-70.73200862699991,45.49159128900011],[-70.73032914299995,45.50797271700016],[-70.68679174899992,45.57272328700016],[-70.58961421699993,45.65178822900005],[-70.57240596599992,45.66227854400002],[-70.51473506699998,45.68170888300007],[-70.48476273599994,45.69964060500014],[-70.4727996419999,45.70356801400011],[-70.45042374699992,45.70372304400014],[-70.43913244699993,45.70589345300006],[-70.41931453499987,45.71690053300013],[-70.407351441,45.73152496400002],[-70.40244217999995,45.74966339100014],[-70.40394079599989,45.771160787],[-70.40828161699994,45.78165110300013],[-70.4136818039999,45.78769724600009],[-70.41716996299995,45.79379506500014],[-70.41523209699994,45.80438873300001],[-70.40993526299991,45.81074493500012],[-70.38980729199994,45.82505930600003],[-70.31265437899995,45.86764068600009],[-70.28317297399995,45.89048166900001],[-70.26252823899995,45.923037821000044],[-70.25593949399988,45.94887603800008],[-70.26314835599993,45.956834208000046],[-70.28043412399992,45.95931467700002],[-70.30394689999991,45.96861643500013],[-70.31629756699996,45.98298248300013],[-70.31689184599992,45.999002177000094],[-70.3061431479999,46.035330709000064],[-70.30363684099993,46.03848297100002],[-70.29430924499987,46.04494252600007],[-70.29200964399988,46.0486632290001],[-70.29301733399993,46.05403757800006],[-70.29609208199989,46.057861634000076],[-70.30079463699994,46.061737366000145],[-70.30477372299993,46.06597483400019],[-70.31136246799991,46.071865947],[-70.31262854099995,46.07956573500009],[-70.3003295499999,46.089280905000024],[-70.26444026699997,46.10659251000011],[-70.2494799399999,46.12059682300004],[-70.24400223899991,46.14100901300016],[-70.24924739599993,46.162764791000185],[-70.26332922399988,46.183228659000136],[-70.2848007819999,46.191858622],[-70.28089921099993,46.211857401000124],[-70.25340734899996,46.25149322599999],[-70.23617325899997,46.28833852200002],[-70.2236934009999,46.300792542000075],[-70.20188594599998,46.305495097000076],[-70.19950882999993,46.315261943000124],[-70.19702836099995,46.33686269200008],[-70.1883983969999,46.358411764000046],[-70.1674177649999,46.3681786100001],[-70.1530517169999,46.37282948800008],[-70.07432267299993,46.41954498300005],[-70.06181697699992,46.44540903700009],[-70.05008642599992,46.511270651000174],[-70.03272314499992,46.60976593000005],[-70.02362809299993,46.661287334000136],[-70.00776342799992,46.70407541900006],[-69.98996089699996,46.72169708300005],[-69.89970800899997,46.81156239800007],[-69.80940344199992,46.90129852300005],[-69.71909887699991,46.99108632400005],[-69.62879431199997,47.08079661100011],[-69.53846390799993,47.17061025000011],[-69.44815934299999,47.260346375000104],[-69.35790645399996,47.350134176000026],[-69.26762772699993,47.43984446200007],[-69.25091040099997,47.45291860000013],[-69.23726782299988,47.45880971300012],[-69.22197159899991,47.459688213000064],[-69.06965531399993,47.431886292000016],[-69.05402319399988,47.41839874300014],[-69.05433325199996,47.38925323500003],[-69.06619299399998,47.32967030900015],[-69.06513362599992,47.296339010000096],[-69.06355977599989,47.29080926600015],[-69.05748551499994,47.269467265000074],[-69.04019974799994,47.24905507400014],[-68.90622859699994,47.19022145700013],[-68.88971797699995,47.19060902900015],[-68.7618188079999,47.23704030400007],[-68.71779048699995,47.24523101800009],[-68.66880122999993,47.24342234300011],[-68.64420324699995,47.245282694000124],[-68.6255997319999,47.255204570000025],[-68.60792639199987,47.269829],[-68.58524043799991,47.28248972600012],[-68.53966182499994,47.29985300800014],[-68.51800939899994,47.30476226800009],[-68.49201615399997,47.30755279600014],[-68.46674637899991,47.305692444000115],[-68.43532710799988,47.29127472000003],[-68.4225630299999,47.29310923300001],[-68.41021236199995,47.29742421499999],[-68.3856143809999,47.301713359000146],[-68.38339229299996,47.30713938400011],[-68.38483923399988,47.315872701],[-68.38204870599992,47.32780995700013],[-68.34783890799991,47.35850575799999],[-68.29972814899995,47.36783335400009],[-68.24644974799997,47.36057281600013],[-68.19704707899993,47.341400859000125],[-68.1843346759999,47.333132628999984],[-68.1560676679999,47.306674296],[-68.14506058799992,47.30145497700009],[-68.11539831599995,47.29228241],[-68.10144567999996,47.28618459100012],[-68.03938228399991,47.24523101800009],[-67.99318355299994,47.22321685900012],[-67.9624360759999,47.197688700000086],[-67.95370275899992,47.186629944000074],[-67.94998205599993,47.172935689000056],[-67.94341914899994,47.16453827],[-67.89913244699991,47.13877756800018],[-67.87060705599995,47.10735829700003],[-67.85474239099995,47.09784983400006],[-67.81355627499994,47.081907654000034],[-67.8086986899999,47.075138042000084],[-67.80518469299997,47.035631409000146],[-67.80254919499995,46.90124684700013],[-67.80001704999995,46.766784770000115],[-67.79743322799996,46.632296855000064],[-67.79484940699987,46.49786061600004],[-67.79231726099997,46.36347605400012],[-67.78973343999988,46.22901397800008],[-67.78714961799997,46.094551900000155],[-67.78456579699989,45.96014150000003],[-67.78275712099989,45.95052968400002],[-67.7765559499999,45.942933248000074],[-67.76746089699992,45.93595693000016],[-67.75965775599991,45.92856720000004],[-67.7578490809999,45.91947214800008],[-67.76942460199987,45.903969218000086],[-67.78735632399992,45.89001658100007],[-67.79924190299997,45.87565053400009],[-67.79262731899988,45.858907370000125],[-67.77609086199996,45.84082061800002],[-67.77283524599997,45.82805654000005],[-67.7798632409999,45.815705872000095],[-67.79412593599997,45.79916941300009],[-67.80626989799995,45.78175445600005],[-67.81112748299998,45.76650990800012],[-67.80704504399998,45.71286977200004],[-67.80012040199996,45.699847311000106],[-67.7861160889999,45.69121734600016],[-67.76177648899997,45.680106913000046],[-67.74803055899994,45.67778147400009],[-67.74074418099988,45.683620911],[-67.73552486199995,45.690752258000046],[-67.72798010299991,45.69225087500014],[-67.7173864339999,45.68537791000007],[-67.71046179199993,45.67540435800008],[-67.70482906099991,45.66419057200012],[-67.69077307099988,45.65380360900009],[-67.6603356529999,45.63737050400012],[-67.60752233899987,45.62005890000013],[-67.55186682099995,45.61044708300003],[-67.50639156199989,45.60982696600014],[-67.47579911299997,45.6129792280001],[-67.44996089699995,45.61080881700012],[-67.43130570499997,45.59794138600002],[-67.4221073,45.56879587800002],[-67.42618973799998,45.53344919900009],[-67.44303625499997,45.522183736000144],[-67.46753088399993,45.50828277600006],[-67.4932140709999,45.493141581000046],[-67.48231034399994,45.45552113900011],[-67.42882523699993,45.38704986600011],[-67.43456131999996,45.35030792300013],[-67.45905594899992,45.31842356400007],[-67.46866776599992,45.301835429000064],[-67.47502396699988,45.28235341400007],[-67.47130326399994,45.26628204400011],[-67.42758500199997,45.23656809500012],[-67.390533,45.193108216000105],[-67.35627152599992,45.16592641200005],[-67.31921952299993,45.153885804000154],[-67.28464798999994,45.16969879200015],[-67.27958369999996,45.17905222600011],[-67.27922196499995,45.187372131000146],[-67.27720658399991,45.195071920000075],[-67.26733638499994,45.20251332600016],[-67.25498571899996,45.205045472000066],[-67.24242834499995,45.20256500300009],[-67.21907059799992,45.19212636300015],[-67.2061662079999,45.18940058600013],[-67.17601477799985,45.17865631700012],[-67.19127356699991,45.18036530200011],[-67.2043757799999,45.17820872600013],[-67.21031653599991,45.171087958000086],[-67.2038874989999,45.15749746300013],[-67.19989986899992,45.15660228100004],[-67.17967688699991,45.15749746300013],[-67.17239335799991,45.155137437000164],[-67.16844641799992,45.14952220300007],[-67.1659643219999,45.142849026000114],[-67.15961666599995,45.13235097900003],[-67.1541641919999,45.1191673850001],[-67.15208899599989,45.11656321800008],[-67.14598548099991,45.11517975500011],[-67.13939368399994,45.111558335000055],[-67.1282039049999,45.10289134300013],[-67.11347408799992,45.086940822000045],[-67.10029049399989,45.069362697000095],[-67.11119544199994,45.05365631700006],[-67.1045222649999,45.03794993700008],[-67.09003658799995,45.02586497599999],[-67.07701575399997,45.0209821640001],[-67.07164466099991,45.01439036700005],[-67.05199133999986,44.98338450700011],[-67.04006913999993,44.973171291000156],[-67.05223548099991,44.96128978100005],[-67.05601966099992,44.9454206400001],[-67.06273352799988,44.93142324400004],[-67.08348548099987,44.925401109000134],[-67.0945124989999,44.93305084800006],[-67.10594641799989,44.94578685100011],[-67.11729895699995,44.94835032800001],[-67.1282039049999,44.925401109000134],[-67.11306718699993,44.91555410400012],[-67.11209062399985,44.90407949400016],[-67.12169348899994,44.894558010000154],[-67.13841712099986,44.890651760000154],[-67.15135657499988,44.89594147300015],[-67.18476314999992,44.91677480700004],[-67.19648189999992,44.918565171000026],[-67.20339921799993,44.90489329600008],[-67.19054114499987,44.89057038],[-67.17231197799993,44.87722402600018],[-67.16295325399997,44.86672597900012],[-67.14867102799988,44.81553782800016],[-67.14598548099991,44.825710354000094],[-67.1437882149999,44.85573965100015],[-67.14183508999986,44.8633080100001],[-67.13036048099991,44.86473216400015],[-67.11436926999991,44.84690989800002],[-67.10029049399989,44.849636135000154],[-67.10769609299987,44.85712311400012],[-67.09410559799991,44.8633080100001],[-67.09711666599992,44.86778392100017],[-67.10228430899991,44.8779564470001],[-67.10769609299987,44.88316478100002],[-67.08849036399991,44.888128973000065],[-67.07473710799991,44.87079498900006],[-67.06712805899986,44.844427802000084],[-67.06615149599989,44.82229238500009],[-67.04364986899989,44.83397044499999],[-67.04198157499988,44.85443756700006],[-67.05931555899986,44.89744700700002],[-67.04369055899988,44.89402903900019],[-67.03294837099986,44.88438548400002],[-67.01215572799987,44.85712311400012],[-67.0090632799999,44.856390692],[-66.99474036399991,44.85712311400012],[-66.9914037749999,44.85565827000006],[-66.99144446499989,44.85191478100013],[-66.99229895699997,44.84739817899999],[-66.99168860599991,44.843491929],[-66.97948157499994,44.818793036],[-66.97732499899993,44.81553782800016],[-66.98497473899997,44.80491771000011],[-67.01939856699991,44.77492910400015],[-67.03258216099994,44.76711660400015],[-67.04246985599984,44.76622142100017],[-67.06395423099988,44.76858144700013],[-67.07359778599997,44.76711660400015],[-67.07408606699994,44.763698635000154],[-67.08226477799985,44.74571360900002],[-67.08661861899995,44.739772854000094],[-67.09410559799991,44.74725983300006],[-67.10399329299992,44.72898997599999],[-67.1132299469999,44.71625397300012],[-67.16917883999994,44.67092519700013],[-67.17796790299991,44.667588609000106],[-67.19534257699988,44.66327545799999],[-67.2038874989999,44.65725332200018],[-67.20136471299989,44.65359121300004],[-67.19648189999992,44.644232489],[-67.22439531199987,44.644232489],[-67.23269609299983,44.646755276000114],[-67.24876868399991,44.65550364799999],[-67.25108801999987,44.65725332200018],[-67.26199296799987,44.65770091400018],[-67.26907304599993,44.654811916000064],[-67.26903235599994,44.64634837400002],[-67.25853430899986,44.6299095720001],[-67.28054765499988,44.631374416000156],[-67.29478919199995,44.63963450700008],[-67.30805416599989,44.649766343000024],[-67.32685299399995,44.65725332200018],[-67.32685299399995,44.664740302000055],[-67.31098385299993,44.68239980700015],[-67.31407630099991,44.70071035400003],[-67.33202063699986,44.7094994160001],[-67.36095130099994,44.69883860900016],[-67.3473608059999,44.6926537130001],[-67.36078854099989,44.68557363500004],[-67.3733210929999,44.68589915600016],[-67.38512122299997,44.691188869000044],[-67.39574133999992,44.69883860900016],[-67.38939368399988,44.682481187000135],[-67.37755286399991,44.670762437000164],[-67.37132727799985,44.65770091400018],[-67.38206946499989,44.637396552],[-67.3672175769999,44.627468166000185],[-67.37035071499989,44.62230052299999],[-67.37938391799989,44.621283270000035],[-67.38206946499989,44.62376536700005],[-67.39842688699989,44.6118024760001],[-67.40453040299988,44.605698960000105],[-67.40941321499994,44.59581126500002],[-67.4221492179999,44.61497630400008],[-67.42674719999994,44.63939036700013],[-67.43468176999988,44.659206447000045],[-67.45714270699989,44.664740302000055],[-67.45079505099997,44.647650458000115],[-67.45185299399992,44.632269598000065],[-67.45046952999994,44.619370835000055],[-67.43671627499992,44.60948314000014],[-67.45433508999994,44.604600328000075],[-67.47252356699994,44.60313548400002],[-67.48997962099988,44.604925848],[-67.50560462099989,44.60948314000014],[-67.49946041599988,44.62380605700004],[-67.50572669199994,44.633571682000145],[-67.51703854099992,44.634873765000165],[-67.52607174399995,44.62376536700005],[-67.53290768099995,44.62376536700005],[-67.53905188699994,44.646226304000045],[-67.5543920559999,44.64406972900004],[-67.59373938699989,44.61631907800016],[-67.57319088399993,44.617539781000076],[-67.5658666659999,44.60980866100006],[-67.56708736899995,44.579046942],[-67.56928463399993,44.57115306200002],[-67.57323157499994,44.562486070000105],[-67.57498124899993,44.553493557000095],[-67.57042395699997,44.544907944999984],[-67.56904049399988,44.53868235900005],[-67.57787024599986,44.53526439000002],[-67.5897924469999,44.5331891950001],[-67.59740149599993,44.53095123900012],[-67.60346432199992,44.52810293200018],[-67.61209062399993,44.526597398000135],[-67.62128658799992,44.52639394700015],[-67.62844804599985,44.52753327],[-67.63870195199988,44.53168366100005],[-67.63975989499993,44.534776109000134],[-67.63866126199989,44.53933340100018],[-67.63984127499992,44.547552802000084],[-67.6404109369999,44.55487702000009],[-67.64374752499992,44.563910223],[-67.64895585799991,44.56854889500011],[-67.65920976499993,44.56667715100015],[-67.66856848899997,44.56146881700006],[-67.68370520699995,44.54804108300005],[-67.7141414049999,44.50075918200009],[-67.72801673099991,44.50320058800004],[-67.7401830719999,44.51036204600008],[-67.74876868399991,44.521999416000185],[-67.75198320199988,44.538072007000075],[-67.74046790299994,44.588242906000154],[-67.74457760299985,44.59581126500002],[-67.75560462099992,44.58962636900004],[-67.78612219999988,44.54177480700012],[-67.78331458199992,44.53729889500015],[-67.78612219999988,44.52753327],[-67.79015051999994,44.53172435100005],[-67.80052649599992,44.54120514500014],[-67.79641679599986,44.55447011900016],[-67.78551184799991,44.570583401000064],[-67.77928626199994,44.58588288000003],[-67.78266354099986,44.60150788],[-67.79051673099994,44.59988027600015],[-67.79959062399985,44.58860911699999],[-67.80663001199991,44.57538483300014],[-67.81716874899988,44.5837669940001],[-67.82835852799988,44.58425527600018],[-67.83714758999986,44.57774485900008],[-67.84593665299991,44.5512962910001],[-67.85728919199987,44.546087958000115],[-67.86900794199988,44.54454173400008],[-67.87486731699991,44.54177480700012],[-67.87205969999988,44.53005605700003],[-67.85232499899985,44.50865306200008],[-67.84760494699992,44.497097072000045],[-67.85228430899986,44.48253001500002],[-67.86355546799984,44.479356187000164],[-67.87730872299994,44.48236725500006],[-67.8891495429999,44.486558335],[-67.88499915299988,44.46690501500014],[-67.8996068999999,44.422105210000105],[-67.90221106699991,44.39720286699999],[-67.92125403599988,44.41136302299999],[-67.92345130099997,44.43777090100018],[-67.91502844999994,44.46629466400016],[-67.90221106699991,44.486558335],[-67.91710364499994,44.48155345300013],[-67.92800859299992,44.46828847900012],[-67.93468176999987,44.45136139500012],[-67.93700110599994,44.4350446640001],[-67.93435624899986,44.41636790600013],[-67.93700110599994,44.408636786000116],[-67.9472143219999,44.41425202000012],[-67.95356197799993,44.41913483299999],[-67.95901445199985,44.42239004100004],[-67.96283932199987,44.42674388200014],[-67.96430416599992,44.4350446640001],[-67.96772213399993,44.50075918200009],[-67.97789466099988,44.49913157800007],[-67.9828995429999,44.49416738500004],[-67.98456783799995,44.48631419500005],[-67.9847305979999,44.47601959800012],[-67.98875891799986,44.46649811400012],[-67.99815833199987,44.46649811400012],[-68.01581783799992,44.472927151000064],[-68.02879798099991,44.46853261900016],[-68.01585852799991,44.45884837400011],[-67.9847305979999,44.44558340100017],[-67.98440507699988,44.440659898000106],[-67.97398841099988,44.413519598],[-67.97114010299995,44.41083405200011],[-67.97215735599991,44.403753973000065],[-67.97472083199992,44.395290432000124],[-67.97887122299994,44.387884833000115],[-67.9847305979999,44.38353099200005],[-67.99461829299992,44.38353099200005],[-67.99779212099989,44.38926829600011],[-67.99946041599989,44.39553457200007],[-68.00523841099992,44.39720286699999],[-68.01500403599991,44.393744208000086],[-68.01532955599991,44.39057038000002],[-68.0141088529999,44.385524807000145],[-68.01952063699994,44.37669505400011],[-68.05032304599993,44.34035879100013],[-68.06053626199986,44.328314520000035],[-68.07298743399988,44.338324286],[-68.07640540299988,44.34935130400005],[-68.07347571499986,44.362046617000104],[-68.06663977799994,44.37669505400011],[-68.08238684799991,44.37234121300012],[-68.0884089829999,44.36924876500014],[-68.09752356699991,44.38572825700011],[-68.10741126199991,44.41555410400004],[-68.11241614499994,44.44135163000006],[-68.10802161399997,44.4636091170001],[-68.11152096299986,44.48008860900007],[-68.13935299399992,44.486558335],[-68.14325924399992,44.48928457200016],[-68.14305579299986,44.494981187000135],[-68.14350338399996,44.500026760000154],[-68.14919999899993,44.50075918200009],[-68.15807044199988,44.496812242000104],[-68.15994218699987,44.491725979000094],[-68.15990149599986,44.48586660400015],[-68.16287187399988,44.479112046000026],[-68.16262773299994,44.473578192],[-68.15892493399988,44.46678294500007],[-68.15815182199987,44.46104564000011],[-68.16661536399991,44.458685614000146],[-68.18158932199994,44.45909251500014],[-68.18728593699993,44.46218496300004],[-68.18956458199989,44.46950918200004],[-68.19021562399985,44.497544664000046],[-68.19363359299987,44.52000560100005],[-68.20201575399992,44.52509186400009],[-68.21751868399991,44.50075918200009],[-68.21983801999988,44.485947984000134],[-68.21922766799992,44.47203196800014],[-68.22211666599986,44.46629466400016],[-68.25426184799991,44.49351634300008],[-68.25926673099988,44.50417715100012],[-68.25849361899995,44.520697333],[-68.27635657499991,44.52049388200014],[-68.29430091099995,44.52777741100006],[-68.30813554599987,44.52903880400005],[-68.31371008999986,44.51048411700004],[-68.2815242179999,44.49937571800002],[-68.26980546799993,44.48607005400011],[-68.28640702999986,44.46609121300004],[-68.28144283799992,44.46267324400013],[-68.27830969999985,44.45901113500015],[-68.27582760299993,44.45530833500011],[-68.27273515499985,44.45184967700011],[-68.31708736899989,44.451198635000154],[-68.33763587099992,44.45510488500015],[-68.3546850249999,44.46609121300004],[-68.36192786399991,44.44582754100012],[-68.38646399599992,44.42434316600018],[-68.38259843699993,44.41083405200011],[-68.40929114499994,44.40464915600013],[-68.42296301999987,44.405137437000135],[-68.42670650899991,44.41722239800005],[-68.42332923099991,44.47097402600009],[-68.4318741529999,44.48659902600018],[-68.44994055899994,44.49367910400004],[-68.4782201809999,44.493394273000106],[-68.45982825399994,44.46210358300005],[-68.45775305899993,44.448716539000046],[-68.45950273299994,44.442897854000094],[-68.46283932199995,44.43866608300008],[-68.46446692599997,44.43427155199999],[-68.46113033799993,44.42820872599999],[-68.45604407499994,44.42434316600018],[-68.45189368399988,44.42230866100006],[-68.44969641799989,44.418727932000095],[-68.45030676999994,44.41083405200011],[-68.45518958199992,44.401800848],[-68.4647924469999,44.389837958000086],[-68.47406979099995,44.38243235900008],[-68.4782201809999,44.387233791000156],[-68.47813880099991,44.41083405200011],[-68.48009192599993,44.42161692900011],[-68.48505611899992,44.431911526000036],[-68.50442460799994,44.41335683800004],[-68.52599036399994,44.405625718000024],[-68.54942786399991,44.40574778900018],[-68.5744115879999,44.41083405200011],[-68.56301835799988,44.400580145],[-68.55150305899993,44.37722402600009],[-68.54308020699997,44.36615631700006],[-68.54177812399988,44.35691966400019],[-68.55614173099985,44.33002350500011],[-68.56017005099991,44.318345445000105],[-68.55585689999992,44.30617910400004],[-68.54592851499993,44.302435614],[-68.53453528599997,44.30064524900003],[-68.52599036399994,44.29478587400017],[-68.52086341099994,44.28001536699999],[-68.52318274599989,44.2695580100001],[-68.53201249899985,44.26662832200019],[-68.54649817599989,44.27427806200002],[-68.54100501199984,44.263698635000154],[-68.53364010299987,44.256374416000156],[-68.52436275899993,44.25092194200012],[-68.51292883999986,44.24636465100018],[-68.54137122299997,44.23733144700016],[-68.63349361899986,44.296250718000046],[-68.66694088399993,44.298203843000074],[-68.68370520699995,44.294460354000066],[-68.7041316399999,44.30512116100009],[-68.73204505099994,44.328314520000035],[-68.75621497299994,44.33445872599999],[-68.79177812399993,44.31639232],[-68.82079016799992,44.31464264500009],[-68.8117976549999,44.35158926000003],[-68.80394446499992,44.36924876500014],[-68.78978430899988,44.37669505400011],[-68.78026282499991,44.37453847900012],[-68.77086341099997,44.365179755],[-68.76280676999994,44.36306386900015],[-68.75328528599994,44.36753978100013],[-68.75426184799991,44.37787506700014],[-68.76044674399989,44.389349677],[-68.76622473899994,44.39720286699999],[-68.75320390499985,44.404974677000084],[-68.74197343699987,44.41425202000012],[-68.7353002589999,44.41465892100002],[-68.71479244699995,44.4053001970001],[-68.70478268099995,44.404038804],[-68.69933020699992,44.40969472900018],[-68.71739661399994,44.431586005000106],[-68.71837317599991,44.44558340100017],[-68.75621497299994,44.430894272999986],[-68.76622473899994,44.424505927000055],[-68.78441321499993,44.40277741100009],[-68.7958471339999,44.39256419500005],[-68.80711829299989,44.39097728100002],[-68.81619218699987,44.40208567900005],[-68.8144018219999,44.417995510000154],[-68.80724036399994,44.43410879100004],[-68.80032304599985,44.44558340100017],[-68.79657955599993,44.4485130880001],[-68.78465735599988,44.453843492000075],[-68.77924557199992,44.458685614000146],[-68.77664140499994,44.46495189000008],[-68.77493242099993,44.48021067900005],[-68.77297929599987,44.486558335],[-68.7426244779999,44.53729889500015],[-68.74620520699997,44.55487702000009],[-68.77924557199992,44.561712958],[-68.7958471339999,44.561997789000046],[-68.80162512899994,44.56028880400014],[-68.80711829299989,44.534369208000115],[-68.82762610599994,44.479112046000026],[-68.82140051999997,44.47846100500005],[-68.80711829299989,44.472927151000064],[-68.82469641799992,44.46104564000011],[-68.84524492099987,44.453802802000084],[-68.8571264309999,44.456081447000045],[-68.84813391799989,44.472927151000064],[-68.86274166599992,44.47536855700018],[-68.87962805899991,44.46853261900016],[-68.90648352799988,44.448716539000046],[-68.91942298099988,44.44139232000005],[-68.96544348899994,44.431911526000036],[-68.98660234299983,44.42116933800013],[-68.98228919199993,44.41360097900018],[-68.97191321499994,44.40578847900018],[-68.9750870429999,44.394069729000094],[-68.97276770699995,44.38381582200016],[-68.94456946499989,44.34882233300006],[-68.93748938699991,44.33197663000006],[-68.94554602799994,44.317165432000095],[-68.96410071499993,44.30780670800006],[-68.98460852799991,44.301214911],[-68.99897213399987,44.29478587400017],[-69.02159583199995,44.24778880400005],[-69.03624426999994,44.23261139500006],[-69.05357825399994,44.1849225930001],[-69.06790117099993,44.158962307000095],[-69.07774817599994,44.14496491100014],[-69.0883276029999,44.136501369000094],[-69.0883276029999,44.13031647300012],[-69.08287512899994,44.115261135000125],[-69.08954830599993,44.098089911],[-69.08690344999994,44.08669668200004],[-69.05357825399994,44.08930084800012],[-69.06521562399983,44.06761302300004],[-69.07579505099991,44.052516994000044],[-69.09150143099987,44.043809312000135],[-69.11876380099994,44.04087962400003],[-69.1262100899999,44.0310326190001],[-69.1306453119999,44.011745510000154],[-69.14203854099986,43.998724677],[-69.17027747299994,44.00743235900008],[-69.1718236969999,43.99717845300013],[-69.17589270699995,43.99140045799999],[-69.18248450399992,43.9900169940001],[-69.19139563699994,43.993109442],[-69.19957434799994,43.98187897300009],[-69.20364335799991,43.97032298400016],[-69.20164954299989,43.959987697000045],[-69.19139563699994,43.95217519700016],[-69.22704016799989,43.93524811400009],[-69.23851477799994,43.9316673850001],[-69.25800533799992,43.92800527600015],[-69.26341712099989,43.929917710000105],[-69.25963294199994,43.95526764500014],[-69.22923743399988,43.99099355700018],[-69.21947180899986,44.00849030200011],[-69.23851477799994,44.00743235900008],[-69.29885820199988,43.950384833000086],[-69.31053626199989,43.94163646],[-69.31375077999994,43.95433177300007],[-69.3031713529999,43.98122793200004],[-69.31395423099988,43.986273505000085],[-69.32831783799986,43.98338450700014],[-69.35330156199987,43.97243886900016],[-69.36949622299994,43.97264232000013],[-69.35326087099989,43.99465566600004],[-69.34715735599991,44.00775788],[-69.35179602799994,44.01361725500014],[-69.36941484299984,44.01585521000011],[-69.37014726499987,44.021511135000125],[-69.35179602799994,44.037543036],[-69.34727942599997,44.05076732000005],[-69.35419674399986,44.060492255],[-69.36428788999984,44.06053294499999],[-69.36949622299994,44.04466380400005],[-69.37657630099989,44.036729234000106],[-69.39098059799994,44.03192780200003],[-69.40221106699997,44.02659739800005],[-69.39488684799993,44.00242747600013],[-69.40770423099988,43.994330145],[-69.42426510299994,43.99164459800012],[-69.43036861899995,43.993109442],[-69.44090735599991,43.981390692],[-69.44778398299991,43.967556057000095],[-69.47878984299984,43.880316473],[-69.49413001199989,43.85110097900015],[-69.51292883999994,43.834906317],[-69.51435299399992,43.85565827],[-69.52167721299992,43.87034739800002],[-69.52989661399991,43.88300202000006],[-69.53396562399986,43.8975690780001],[-69.54023189999992,43.8975690780001],[-69.54544023299991,43.88328685100011],[-69.54759680899991,43.867865302000084],[-69.5476374989999,43.834906317],[-69.56126868399986,43.8491071640001],[-69.55382239499995,43.8565534530001],[-69.56908118399993,43.86839427300005],[-69.57050533799992,43.87791575700005],[-69.56541907499988,43.886989651000064],[-69.56126868399986,43.8975690780001],[-69.55980383999989,43.904079494000186],[-69.55492102799991,43.91579824400016],[-69.55382239499995,43.92084381700003],[-69.55601966099997,43.92767975500011],[-69.5653783839999,43.93427155200003],[-69.56749426999991,43.94163646],[-69.5588679679999,43.964585679],[-69.52904212099992,44.00438060099999],[-69.53396562399986,44.02102285400004],[-69.54487057199995,44.01194896000011],[-69.55406653599991,43.99856191600013],[-69.56749426999991,43.97264232000013],[-69.58055579299989,43.95701732000005],[-69.58580481699997,43.948472398000106],[-69.58458411399994,43.94163646],[-69.5818171869999,43.93455638200014],[-69.58421790299994,43.92576732],[-69.58930416599985,43.91734446800002],[-69.5947566399999,43.911159572000045],[-69.58934485599985,43.90481191600013],[-69.58751380099997,43.89724355700015],[-69.58930416599985,43.88963450700014],[-69.5947566399999,43.883246161000116],[-69.58482825399989,43.87071360900002],[-69.5779109369999,43.85565827],[-69.57603919199994,43.83897532800015],[-69.58116614499994,43.82180410400004],[-69.59239661399994,43.8077253280001],[-69.5961401029999,43.8159040390001],[-69.5947566399999,43.8491071640001],[-69.60989335799991,43.83958567900011],[-69.62446041599992,43.83840566600018],[-69.63963782499991,43.84446849199999],[-69.65693111899992,43.8565534530001],[-69.66889400899993,43.86705149900014],[-69.67011471299986,43.87356191600007],[-69.64940344999984,43.8975690780001],[-69.65379798099993,43.904974677],[-69.65501868399986,43.91050853100002],[-69.65343176999991,43.916205145000085],[-69.64940344999984,43.92426178600011],[-69.64244544199997,43.921250718000024],[-69.6293432279999,43.919216213000176],[-69.62279212099992,43.917425848],[-69.63121497299997,43.92922597900015],[-69.64268958199992,43.933457749000084],[-69.6526179679999,43.93899160400012],[-69.65693111899992,43.95526764500014],[-69.65367591099997,43.96775950700005],[-69.63642330599995,44.00368886900004],[-69.63011633999992,44.00804271000014],[-69.61917070199985,44.01752350500014],[-69.61510169199988,44.0259056660001],[-69.62958736899995,44.02728913000008],[-69.64317786399991,44.020982164000046],[-69.6569718089999,44.00922272300006],[-69.74970455599993,43.90066152600018],[-69.75922604099995,43.88641998900009],[-69.75267493399986,43.879136460000055],[-69.74026445199993,43.87486399900014],[-69.73196367099985,43.86957428600009],[-69.72972571499986,43.855943101000136],[-69.73265540299988,43.84190501500008],[-69.7462865879999,43.81439850500006],[-69.73586992099985,43.82058340100012],[-69.72240149599986,43.84422435100005],[-69.71214758999994,43.8491071640001],[-69.70470130099994,43.842027085000055],[-69.70726477799988,43.82693105700004],[-69.73074296799993,43.77590566600007],[-69.74498450399994,43.75877513200011],[-69.75800533799992,43.75950755400005],[-69.7667943999999,43.78762441600004],[-69.76622473899991,43.79486725500006],[-69.76362057199992,43.79893626500002],[-69.7606908839999,43.80162181200011],[-69.75926673099994,43.80442942900005],[-69.76146399599992,43.8115501970001],[-69.76630611899989,43.813666083000115],[-69.77118893099987,43.813666083000115],[-69.77354895699992,43.81439850500006],[-69.78038489499994,43.862779039000046],[-69.7836401029999,43.87348053600009],[-69.79072018099995,43.886704820000105],[-69.79405676999995,43.8975690780001],[-69.79527747299989,43.910427151000036],[-69.7948705719999,43.92214590100012],[-69.7956843739999,43.933457749000084],[-69.80089270699989,43.94468821800008],[-69.80337480399993,43.96491120000012],[-69.80728105399993,43.98314036700002],[-69.80467688699991,43.997463283000066],[-69.80207271999993,44.014390367000075],[-69.79035396999984,44.02871328300013],[-69.78123938699994,44.03652578300012],[-69.77082271999987,44.04564036700013],[-69.76821855399996,44.05345286700013],[-69.76821855399996,44.05866120000003],[-69.77472896999987,44.059963283000016],[-69.78254146999984,44.0573591170001],[-69.78905188699994,44.04954661700013],[-69.79946855399993,44.04433828300013],[-69.8176977199999,44.03652578300012],[-69.84504146999987,44.010484117000075],[-69.86457271999987,43.997463283000066],[-69.87498938699994,43.98704661699999],[-69.88280188699994,43.97662995000009],[-69.88280188699994,43.963609117000104],[-69.87238521999987,43.958400783000016],[-69.85415605399987,43.958400783000016],[-69.8411352199999,43.966213283000016],[-69.83202063699989,43.974025783000016],[-69.8255102199999,43.970119533000016],[-69.8216039699999,43.961004950000024],[-69.8150935539999,43.933661200000145],[-69.80223548099988,43.86054108300006],[-69.80089270699989,43.82518138200005],[-69.79194088399987,43.79100169500007],[-69.78250077999985,43.772935289000046],[-69.78038489499994,43.763454494000044],[-69.78730221299993,43.737534898000135],[-69.79063880099997,43.733099677000055],[-69.80317135299987,43.72968170800006],[-69.8142390619999,43.72117747600011],[-69.82286536399991,43.70994700700011],[-69.82815507699988,43.69826894700013],[-69.83930416599992,43.70925527600018],[-69.84182695199993,43.74026113500009],[-69.85208085799985,43.746690171000026],[-69.85789954299992,43.754258531000154],[-69.85838782499988,43.770778713000034],[-69.85549882699988,43.793890692],[-69.8517960279999,43.8008080100001],[-69.84703528599991,43.803737697000095],[-69.84300696499994,43.807806708000086],[-69.84125729099995,43.818060614],[-69.84459387899997,43.82676829600008],[-69.85960852799991,43.836533921000026],[-69.86298580599991,43.8457298850001],[-69.86021887899997,43.85622793200015],[-69.85619055899991,43.862087307000095],[-69.8571264309999,43.86570872600008],[-69.86913001199991,43.86957428600009],[-69.87926184799994,43.87055084800014],[-69.88853919199991,43.86835358300006],[-69.89683997299989,43.86355215100015],[-69.90392005099994,43.8565534530001],[-69.89171301999997,43.8513451190001],[-69.88133704299989,43.84402090100009],[-69.87535559799997,43.83230215100009],[-69.8760066399999,43.81439850500006],[-69.88300533799989,43.800563869000044],[-69.89476477799988,43.789333401000064],[-69.90562903599997,43.78729889500012],[-69.91014563699991,43.801296291000156],[-69.95112057199992,43.76036204600014],[-69.9582006499999,43.75633372599999],[-69.96528072799995,43.75462474199999],[-69.97069251199991,43.75149160400009],[-69.97435462099995,43.734971421000026],[-69.97850501199989,43.729437567],[-69.9848526679999,43.72634511900013],[-69.99266516799992,43.72561269700019],[-69.92629960799988,43.82855866100006],[-69.93065344999988,43.8491071640001],[-69.94212805899991,43.84149811400009],[-69.95836341099994,43.82180410400004],[-69.97276770699992,43.799505927],[-69.97899329299989,43.783962307000095],[-69.98294023299988,43.76744212400003],[-69.99343827999992,43.75181712400003],[-70.00890051999994,43.74123769700016],[-70.02745520699995,43.73993561400009],[-70.00947018099993,43.76687246300004],[-69.96263587099986,43.821030992000104],[-69.95112057199992,43.8491071640001],[-69.97309322799995,43.847113348000065],[-70.00637773299994,43.827093817],[-70.02000891799989,43.82864004100004],[-70.01085364499991,43.833278713000155],[-70.00068111899985,43.84084707200013],[-69.99168860599994,43.8508568380001],[-69.98582923099991,43.862779039000046],[-69.99937903599997,43.86151764500015],[-70.01174882699989,43.85565827],[-70.02232825399994,43.84719472900015],[-70.03958085799985,43.830064195000105],[-70.05003821499993,43.82396067900014],[-70.07465572799993,43.81439850500006],[-70.08800208199995,43.81106191600013],[-70.09890702999994,43.80992259300008],[-70.10883541599992,43.80674876500002],[-70.16087805899988,43.76654694200012],[-70.18260657499985,43.757066148000106],[-70.20868893099993,43.715277411],[-70.23912512899997,43.70005931200002],[-70.23847408799992,43.68703847900012],[-70.23375403599991,43.67304108300006],[-70.23228919199997,43.664170640000016],[-70.2429499989999,43.65391673400008],[-70.25670325399992,43.650132554000045],[-70.28685462099992,43.65049876500008],[-70.28685462099992,43.64305247600002],[-70.25776119699985,43.640488999000084],[-70.23155676999993,43.64154694200015],[-70.21088619699991,43.63503652600014],[-70.19810950399996,43.60956452000015],[-70.19823157499994,43.59865957200015],[-70.20287024599985,43.56761302300005],[-70.20494544199988,43.56114329600014],[-70.22024492099985,43.559068101000136],[-70.24583899599992,43.549790757],[-70.2602026029999,43.547471421000026],[-70.2558894519999,43.55438873900012],[-70.25271562399993,43.56114329600014],[-70.27151445199988,43.556911526000036],[-70.29259192599991,43.534531968000024],[-70.30797278599994,43.52696360900016],[-70.31053626199986,43.548366604000115],[-70.3254288399999,43.54954661700005],[-70.34373938699987,43.53949616100005],[-70.35643469999994,43.52696360900016],[-70.36738033799989,43.505316473000065],[-70.37071692599991,43.486354885000154],[-70.36839758999986,43.467230536],[-70.36257890499989,43.4450544290001],[-70.34321041599989,43.454291083],[-70.3327937489999,43.45754629100004],[-70.32164466099988,43.45872630400005],[-70.32164466099988,43.45250071800011],[-70.33523515499992,43.4472923850001],[-70.34691321499994,43.439439195000105],[-70.36640377499992,43.42084381700012],[-70.36949622299991,43.415513414000074],[-70.37352454299989,43.40188222900012],[-70.37625077999985,43.39724355700018],[-70.38243567599991,43.393744208],[-70.39504960799991,43.392604885000154],[-70.40355383999992,43.389837958],[-70.42259680899991,43.376898505],[-70.43769283799992,43.36298248900012],[-70.45445716099994,43.35061269700015],[-70.47870846299992,43.342637437000015],[-70.5087377589999,43.341498114],[-70.51952063699989,43.339544989000146],[-70.53050696499994,43.33177317900013],[-70.56187903599988,43.301052151000064],[-70.57054602799988,43.29848867400012],[-70.58165442599991,43.2748884140001],[-70.58311926999997,43.250881252000156],[-70.56891842399995,43.22898997600011],[-70.58360755099994,43.213934637000094],[-70.59679114499991,43.19546133000007],[-70.58259029899988,43.188625393000066],[-70.59951738199987,43.18223704600014],[-70.61172441299992,43.173000393000095],[-70.63097083199989,43.14708079600008],[-70.66014563699994,43.094142971000124],[-70.67194576699993,43.08559804900001],[-70.68712317599991,43.092149156000104],[-70.70030676999994,43.10846588700012],[-70.71467037699992,43.12193431200011],[-70.73338782499991,43.12042877800015],[-70.73127193899998,43.11465078300007],[-70.74233964799993,43.087958075000145],[-70.74408932199992,43.083807684000035],[-70.75450598899991,43.05898672100007],[-70.73249264199988,43.06329987200017],[-70.70954342399992,43.06517161700005],[-70.70421301999994,43.058905341000084],[-70.70848548099985,43.04523346600014],[-70.71589107999995,43.032171942000055],[-70.71971594999985,43.02757396000014],[-70.72838294199994,43.011297919000114],[-70.78180904899989,42.94912344],[-70.80329342399992,42.91388580900006],[-70.81187903599994,42.89313385600015],[-70.81427975199998,42.87730540600002],[-70.81533769399994,42.87026601800012],[-70.80724036399991,42.83494700700011],[-70.80915279899993,42.82623932500003],[-70.81826738199996,42.82391998900006],[-70.86375891799992,42.82623932500003],[-70.85362708199997,42.816961981000176],[-70.84414628799996,42.81199778900013],[-70.8227432929999,42.804429429],[-70.8202205069999,42.80434804900001],[-70.81265214799996,42.80524323100009],[-70.80915279899993,42.804429429],[-70.80577551999994,42.80125560100011],[-70.80077063699991,42.79254791900003],[-70.80435136599996,42.780381578000124],[-70.77509518099993,42.716335354000144],[-70.7826228509999,42.708929755000085],[-70.8124080069999,42.74213288],[-70.82359778599991,42.749863999000105],[-70.81961015499994,42.718736070000105],[-70.79845130099993,42.701890367000104],[-70.7416072259999,42.68162669500002],[-70.7571101549999,42.67548248900012],[-70.7652888659999,42.67430247599999],[-70.77509518099993,42.674790757],[-70.7571101549999,42.65721263200005],[-70.70132402299991,42.65330638200005],[-70.70006262899992,42.64061107],[-70.68228105399993,42.63218821800014],[-70.6776830719999,42.641343492000104],[-70.67955481699994,42.66795482000008],[-70.67141679599993,42.67711009300014],[-70.6589656239999,42.68431224199999],[-70.63174394399991,42.6946068380001],[-70.63365637899997,42.68003978100016],[-70.62991288999984,42.67206452],[-70.62124589799996,42.66868724199999],[-70.60785885299995,42.66795482000008],[-70.5980525379999,42.66498444200015],[-70.5993953119999,42.65770091400004],[-70.60220292899996,42.64866771000011],[-70.59703528599992,42.64061107],[-70.59703528599992,42.63446686400003],[-70.6114802729999,42.634507554000024],[-70.6184382799999,42.62885163000011],[-70.62344316299993,42.62046946800014],[-70.63174394399991,42.61273834800012],[-70.64248613199993,42.60667552300005],[-70.6473282539999,42.604518947000045],[-70.66588294199991,42.60647207200019],[-70.66694088399987,42.60850657800001],[-70.66909745999988,42.611680406000076],[-70.67475338399994,42.61229075700005],[-70.68639075399997,42.60647207200019],[-70.69566809799991,42.59739817899999],[-70.70132402299991,42.58856842700014],[-70.70889238199996,42.5818138690001],[-70.81029212099989,42.562811591000084],[-70.86139889199987,42.546942450000145],[-70.87800045499992,42.537543036000145],[-70.87059485599994,42.53070709800012],[-70.87889563699991,42.525946356000034],[-70.88512122299997,42.51996491100003],[-70.8893123039999,42.51227448100009],[-70.89167232999995,42.50275299700009],[-70.87779700399997,42.50787995000012],[-70.86432857999989,42.51829661700002],[-70.85411536399994,42.523667710000055],[-70.85008704299987,42.51365794500008],[-70.84032141799995,42.504868882000025],[-70.83820553299992,42.49917226800012],[-70.84675045499995,42.49656810100011],[-70.85529537699998,42.49506256700006],[-70.86074785099993,42.49135976800012],[-70.86522376199989,42.48688385600015],[-70.88512122299997,42.472845770000035],[-70.89167232999995,42.469305731000034],[-70.89940344999988,42.4681664080001],[-70.91551673099994,42.46942780200002],[-70.92210852799991,42.465562242000104],[-70.92540442599994,42.453192450000145],[-70.91755123599998,42.44277578300007],[-70.90428626199993,42.434393622000115],[-70.89167232999995,42.428290106000034],[-70.91637122299994,42.422430731000176],[-70.94367428299992,42.446966864],[-70.96304277299996,42.438299872000115],[-70.97337805899986,42.42511627800015],[-70.97435462099992,42.41644928600006],[-70.96617591099991,42.40037669499999],[-70.96304277299996,42.37836334800009],[-70.96031653599987,42.36904531500012],[-70.95250403599988,42.359442450000145],[-70.96727454299986,42.36074453300016],[-70.98363196499989,42.37661367400009],[-70.99718176999994,42.38056061400006],[-71.00723222599993,42.37759023600016],[-71.00584876199994,42.37079498900012],[-70.99767005099994,42.36367422100007],[-70.98721269399994,42.359442450000145],[-71.0060115229999,42.357123114],[-71.02269446499994,42.366644598],[-71.03685462099986,42.37246328300012],[-71.04869544199991,42.359442450000145],[-71.03742428299992,42.35700104400003],[-71.02769934799989,42.35358307500012],[-71.02000891799986,42.34796784100003],[-71.01455644399994,42.338934637000094],[-71.02985592399996,42.33783600500006],[-71.0423070949999,42.33177317900005],[-71.04678300699996,42.321519273000135],[-71.03844153599991,42.307928778000175],[-71.02721106699991,42.300482489],[-71.01781165299988,42.30019765800007],[-70.9934789699999,42.31098053600009],[-70.99889075399994,42.283758856000176],[-70.98350989499991,42.27960846600003],[-70.96288001199989,42.280218817],[-70.95250403599988,42.26723867400001],[-70.95531165299994,42.261786200000145],[-70.96617591099991,42.25381094],[-70.96617591099991,42.249579169000086],[-70.96178137899993,42.24624258000016],[-70.95531165299994,42.24331289300012],[-70.94953365799998,42.24282461100013],[-70.94688880099989,42.24648672100001],[-70.94050045499995,42.24599844],[-70.92577063699987,42.25039297100001],[-70.90953528599994,42.257228908000016],[-70.8985082669999,42.26386139500009],[-70.88719641799989,42.25055573100015],[-70.87539628799993,42.25446198100015],[-70.8673396479999,42.26483795800006],[-70.86709550699996,42.270656643],[-70.8801163399999,42.27667877800012],[-70.8919164699999,42.29071686400006],[-70.89907792899996,42.306586005],[-70.8985082669999,42.318426825000145],[-70.85578365799995,42.28392161700005],[-70.83141028599991,42.26968008000013],[-70.78380286399994,42.25967031500015],[-70.76158606699997,42.24921295800006],[-70.74181067599994,42.23566315300009],[-70.71629798099985,42.21185944200003],[-70.71373450399993,42.205145575000145],[-70.71349036399991,42.17536041900014],[-70.71312415299988,42.172430731000034],[-70.70836341099988,42.172186591000084],[-70.69587154899996,42.16388580900012],[-70.67821204299986,42.144110419000086],[-70.6529841789999,42.10903554900001],[-70.63097083199989,42.092515367000125],[-70.63613847599989,42.07542552299999],[-70.62775631399992,42.05914948100015],[-70.59756425699993,42.023098049],[-70.59219316299996,42.02008698100009],[-70.59080969999988,42.01732005400014],[-70.59679114499991,42.01064687700007],[-70.6067602199999,42.004584052],[-70.61729895699995,42.00324127800008],[-70.62791907499991,42.00556061400006],[-70.63780676999991,42.01064687700007],[-70.63288326699987,42.012111721000124],[-70.62360592399989,42.016058661000116],[-70.61729895699995,42.01679108300006],[-70.62930253799988,42.04433828300007],[-70.63890540299985,42.05890534100011],[-70.64834550699986,42.06525299700006],[-70.65575110599985,42.058010158000016],[-70.66510982999989,42.01064687700007],[-70.67503821499989,42.01471588700004],[-70.68285071499989,42.016058661000116],[-70.69033769399996,42.01471588700004],[-70.71483313699989,42.002671617000125],[-70.65493730399996,41.957098700000174],[-70.62368730399987,41.95506419500005],[-70.60496985599991,41.952541408000044],[-70.56582597599987,41.95538971600016],[-70.54499264199988,41.940619208],[-70.52965247299994,41.90648021],[-70.52391516799989,41.86839427300002],[-70.53164628799988,41.84178294500005],[-70.53311113199992,41.81622955900015],[-70.50426184799991,41.79002513200014],[-70.43919837099989,41.756089585],[-70.40086829299995,41.745021877000156],[-70.27472896999984,41.736273505000085],[-70.28986568899992,41.73163483300006],[-70.32648678299995,41.731390692],[-70.33950761599992,41.725734768],[-70.33519446499994,41.71922435100011],[-70.31525631399995,41.71556224200007],[-70.27472896999984,41.71515534100014],[-70.24372311099992,41.72410716400018],[-70.19131425699992,41.74705638199999],[-70.10081946499989,41.76593659100011],[-70.07024135499992,41.773458363000096],[-70.0364477199999,41.78583405200003],[-70.02147376199994,41.79092031500012],[-70.00011145699987,41.81631094000015],[-70.00384537999994,41.84629625700002],[-70.0018204419999,41.88190338700014],[-70.02147376199994,41.90692780199999],[-70.01158606699994,41.9068871110001],[-70.00316321499987,41.90859609600001],[-69.9866837229999,41.913763739],[-69.9866837229999,41.921210028000175],[-70.00601152299993,41.92283763199999],[-70.01866614499991,41.930080471000124],[-70.0281469389999,41.93797435099999],[-70.03791256399995,41.941636460000055],[-70.0518285799999,41.93524811400012],[-70.05736243399993,41.904242255],[-70.06867428299992,41.89329661700005],[-70.07184060599987,41.927678962000115],[-70.07449030399992,41.94762926500012],[-70.07979003299992,41.99500595700003],[-70.08378508699991,42.01245404800012],[-70.0998515299999,42.03739025200012],[-70.13809623599988,42.05735172200018],[-70.16561855899991,42.06383538199999],[-70.18979396599991,42.04938290900013],[-70.19212805899986,42.03790924700017],[-70.17666581899994,42.03750234600007],[-70.17162024599989,42.03790924700017],[-70.17080783599991,42.02787902199999],[-70.18927424799989,42.01785998700005],[-70.20255630499992,42.02620317800016],[-70.22461556399992,42.050380918000094],[-70.23135065699991,42.05723842700003],[-70.2400904369999,42.059226541000115],[-70.2468197499999,42.06146809100015],[-70.24431172199985,42.06871845400018],[-70.23659639399992,42.07585514200009],[-70.22937675999995,42.08061614800011],[-70.21576413099993,42.084642532000096],[-70.1922199099999,42.08606201000005],[-70.1676617099999,42.08297692500015],[-70.14646626399991,42.081010900000095],[-70.11786349499997,42.073805360000065],[-70.08119777499988,42.058353658000115],[-70.05112347799992,42.039752634000095],[-70.01401152999998,41.998940519000044],[-69.98216798199994,41.9536211640001],[-69.94325532299993,41.85762526100008],[-69.92467200399994,41.838080145000035],[-69.92772376199994,41.834865627000156],[-69.93101966099988,41.832953192],[-69.93468176999994,41.83209870000009],[-69.93887285099994,41.83185455900015],[-69.95335852799991,41.84088776200015],[-69.96396117999993,41.84353287700015],[-69.97203528599988,41.83917877800015],[-69.97573808499993,41.81053294499999],[-69.97984778599988,41.79706452],[-69.95665442599994,41.807806708000115],[-69.94200598899994,41.806463934000035],[-69.93423417899993,41.79295482000005],[-69.93252519399994,41.74103424700017],[-69.93887285099994,41.674221096000124],[-69.97813880099997,41.68183014500006],[-70.13687089799991,41.66054922100001],[-70.18529212099995,41.66054922100001],[-70.21735592399992,41.648260809000035],[-70.22964433499988,41.64622630400011],[-70.2398982409999,41.643255927],[-70.24852454299992,41.63568756700006],[-70.26414954299989,41.61615631700006],[-70.2727758449999,41.61058177300007],[-70.27122962099995,41.62103913000014],[-70.2610570949999,41.64622630400011],[-70.27599036399994,41.64423248900009],[-70.30304928299998,41.63475169500008],[-70.31908118399988,41.63263580900015],[-70.35195878799996,41.63519928600006],[-70.36587480399993,41.632798570000105],[-70.38084876199989,41.622992255],[-70.39159094999991,41.619208075000145],[-70.40587317599989,41.63751862200002],[-70.41808020699995,41.64004140800013],[-70.42837480399987,41.63190338700004],[-70.45909583199997,41.59162018400015],[-70.47984778599997,41.573879299000154],[-70.50426184799991,41.563706773000106],[-70.53270423099994,41.55914948100015],[-70.56582597599987,41.558172919000086],[-70.59605872299997,41.55304596600016],[-70.65868167499988,41.521349108],[-70.68561764199987,41.53082916900003],[-70.66173255099997,41.55048248900006],[-70.65249589799993,41.57802969],[-70.65200761599993,41.65424225500006],[-70.65709387899994,41.670558986000074],[-70.65827389199987,41.68447500200007],[-70.65200761599993,41.693915106000176],[-70.63996334499993,41.70229726800012],[-70.63190670499998,41.71112702],[-70.63780676999991,41.721991278000175],[-70.62816321499994,41.72809479400017],[-70.62360592399989,41.72943756700006],[-70.63060462099989,41.74013906500009],[-70.64000403599991,41.74095286699999],[-70.64818274599992,41.73419830900015],[-70.65143795499995,41.721991278000175],[-70.65827389199987,41.721991278000175],[-70.68980872299997,41.73969147300009],[-70.71043860599991,41.74803294500005],[-70.71971594999985,41.74616120000009],[-70.72329667899993,41.71377187700007],[-70.72191321499994,41.701605536],[-70.71288001199994,41.68781159100008],[-70.73932857999992,41.690130927000055],[-70.74909420499995,41.679754950000145],[-70.75609290299994,41.66303131700012],[-70.77432206899991,41.64622630400011],[-70.78604081899991,41.66046784100003],[-70.79784094999988,41.65888092699999],[-70.80573482999995,41.65102773600002],[-70.80573482999995,41.64622630400011],[-70.80500240799991,41.64256419500008],[-70.82111568899998,41.63499583500011],[-70.84056555899988,41.62889232000013],[-70.85008704299987,41.629543361000074],[-70.8439835279999,41.603949286],[-70.8452042309999,41.592474677000055],[-70.85692298099991,41.59162018400015],[-70.86290442599991,41.59723541900014],[-70.86998450399997,41.61587148600013],[-70.87425696499989,41.622992255],[-70.88101152299991,41.627915757000046],[-70.90538489499988,41.64004140800013],[-70.90733801999993,41.61493561400006],[-70.92096920499998,41.598334052],[-70.93163001199991,41.58026764500009],[-70.92516028599991,41.55072663000011],[-70.94762122299991,41.53644440300012],[-70.95970618399991,41.53119538000014],[-70.97362219999991,41.53082916900003],[-70.97223873599992,41.53510163000011],[-70.97093665299991,41.53766510600003],[-71.01545162699992,41.51227448100012],[-71.04015051999991,41.50714752800008],[-71.06981360599994,41.51715729400008],[-71.04946855399993,41.52374909100014],[-71.04385331899994,41.53685130400011],[-71.04930579299989,41.551947333000115],[-71.06236731699997,41.564357815000065],[-71.06212317599991,41.54385000200001],[-71.07371985599993,41.5387230490001],[-71.11074785099994,41.54385000200001],[-71.10155188699989,41.528306382000025],[-71.09715735599991,41.52338288000014],[-71.12189693899998,41.51300690300006],[-71.18590247299997,41.46873607],[-71.1991267569999,41.492132880000085],[-71.20201575399994,41.50263092700014],[-71.19640051999994,41.51341380400005],[-71.19566809799991,41.52081940300003],[-71.2069392569999,41.558172919000086],[-71.21051998599998,41.602240302],[-71.20970618399984,41.62616608300006],[-71.2069392569999,41.64622630400011],[-71.19395911399991,41.67686595300002],[-71.19025631399995,41.68561432500008],[-71.13556881399992,41.75551992400004],[-71.11074785099994,41.79706452],[-71.12604732999992,41.79242584800009],[-71.13809160099993,41.779933986000074],[-71.16954505099994,41.73330312700006],[-71.17625891799992,41.72662995000011],[-71.18590247299997,41.721991278000175],[-71.20799719999985,41.72915273600002],[-71.22105872299994,41.731390692],[-71.22687740799998,41.725734768],[-71.22899329299989,41.72093333500011],[-71.23684648299988,41.70958079600014],[-71.2383927069999,41.70734284100016],[-71.24054928299992,41.69806549700003],[-71.2402237619999,41.68463776200003],[-71.24103756399992,41.68121979400003],[-71.24486243399991,41.68032461100001],[-71.26040605399993,41.65110911699999],[-71.28571529899996,41.659613348000036],[-71.30182857999995,41.659613348000036],[-71.30882727799991,41.67080312700013],[-71.3067520819999,41.684719143],[-71.30150305899991,41.70262278900016],[-71.29405676999994,41.720160223],[-71.28091386599988,41.741400458],[-71.28302975199989,41.748846747000144],[-71.28970292899996,41.75409577000015],[-71.29881751199994,41.756089585],[-71.30199133999992,41.75169505400011],[-71.30443274599995,41.73004791900003],[-71.30882727799991,41.721991278000175],[-71.31818600199995,41.72479889500011],[-71.3370662099999,41.73379140800013],[-71.3556208979999,41.74628327000006],[-71.36400305899986,41.75983307500003],[-71.36558997299987,41.77765534100008],[-71.37035071499989,41.79205963700014],[-71.37881425699993,41.80499909100017],[-71.39134680899991,41.81879303600009],[-71.39500891799989,41.805731512000094],[-71.39631100199998,41.78327057500009],[-71.39509029899995,41.75950755399999],[-71.39134680899991,41.74249909100003],[-71.38475501199986,41.73566315300012],[-71.37559973899997,41.73053620000009],[-71.36750240799994,41.72382233300006],[-71.36400305899986,41.712062893000066],[-71.3668513659999,41.703558661000145],[-71.38027910099989,41.683661200000145],[-71.38442949099993,41.674221096000124],[-71.39146887899989,41.683010158000016],[-71.39842688699989,41.68976471600005],[-71.40689042899993,41.69383372599999],[-71.41860917899993,41.69464752800012],[-71.43024654899992,41.69110748900012],[-71.44163977799988,41.68406810100005],[-71.44676673099991,41.677232164000046],[-71.42332923099991,41.66815827000012],[-71.4138077459999,41.65289948100015],[-71.41026770699995,41.63296133000007],[-71.41246497299994,41.612738348000065],[-71.42369544199994,41.594305731000034],[-71.43736731699997,41.58478424700003],[-71.44277910099993,41.57465241100009],[-71.42951412699988,41.55438873900006],[-71.42463131399992,41.53888580900014],[-71.42341061099988,41.48639557500009],[-71.42609615799998,41.46873607],[-71.4547918099999,41.40613190000015],[-71.46961848799992,41.39133128100015],[-71.48395748599988,41.37995026200004],[-71.48827063699989,41.370591539000095],[-71.4977107409999,41.366278387000094],[-71.50780188699987,41.36810944200009],[-71.53038489499994,41.376450914000046],[-71.55582806899989,41.37484552799999],[-71.5988844899999,41.367522493000095],[-71.75381425699993,41.33104075700005],[-71.82897249399988,41.316984425],[-71.87147467499997,41.302575088000154],[-71.87791399799994,41.311512218000026],[-71.85653400399994,41.32250138500014],[-71.86237545499992,41.332586981000084],[-71.87214107999995,41.33926015800016],[-71.88536536399991,41.34463125200001],[-71.89806067599994,41.34650299700017],[-71.96324622299997,41.345363674000126],[-71.97288977799994,41.343695380000106],[-72.03624426999988,41.3178571640001],[-72.08340410099986,41.35203685099999],[-72.09512285099994,41.34609609600007],[-72.10114498599995,41.32245514500015],[-72.11070716099992,41.31110260600015],[-72.13540605399993,41.312079169000135],[-72.1680395169999,41.32245514500015],[-72.19432532499991,41.32379791900003],[-72.20006262899996,41.297430731000034],[-72.22691809799994,41.31069570500016],[-72.28795325399992,41.282945054],[-72.31989498599991,41.293687242000104],[-72.32701575399989,41.29873281500012],[-72.34105383999994,41.30337148600016],[-72.34715735599994,41.30731842700014],[-72.35041256399998,41.31464264500015],[-72.34780839799986,41.32160065300003],[-72.34398352799988,41.32929108300006],[-72.3434138659999,41.33836497600005],[-72.34837805899994,41.348334052000055],[-72.35822506399995,41.35797760600012],[-72.3727107409999,41.364732164000074],[-72.39183508999989,41.366278387000094],[-72.3801977199999,41.35008372600005],[-72.36363684799991,41.33690013199999],[-72.35435950399994,41.32123444200012],[-72.3645727199999,41.297430731000034],[-72.35488847599993,41.291449286000116],[-72.35090084499987,41.28998444200006],[-72.3697810539999,41.27659739800005],[-72.39077714799993,41.27777741100009],[-72.43346106699994,41.28998444200006],[-72.45262610599991,41.28790924700003],[-72.47508704299992,41.28107330900012],[-72.49526933499996,41.270331122000115],[-72.50792395699992,41.256415106000034],[-72.51333574099996,41.26105377800015],[-72.51691646999983,41.262925523000106],[-72.51952063699994,41.26496002800015],[-72.5222061839999,41.270168361000124],[-72.52965247299987,41.270168361000124],[-72.54063880099994,41.26365794500005],[-72.58189856699991,41.27875397300014],[-72.6048070949999,41.28375885600009],[-72.6617732409999,41.274074611000124],[-72.67105058499988,41.267482815000065],[-72.67878170499998,41.26048411699999],[-72.68667558499996,41.256415106000034],[-72.69933020699992,41.25657786699999],[-72.70909583199997,41.260565497000144],[-72.71788489499994,41.26585521000014],[-72.72765051999995,41.270168361000124],[-72.74132239499991,41.27216217700008],[-72.7794490229999,41.270168361000124],[-72.78978430899987,41.267320054000024],[-72.80601966099994,41.25775788000011],[-72.81334387899994,41.25958893400009],[-72.82651166899993,41.25650801200008],[-72.84289200799986,41.25847122100008],[-72.85606657099986,41.24541882500013],[-72.8924266949999,41.24497474300007],[-72.89572582099991,41.25558244600016],[-72.89525305899988,41.26585521000014],[-72.90314693899995,41.27716705900012],[-72.90583248599992,41.30052317900011],[-72.90998287699998,41.30512116100006],[-72.91893469999991,41.29865143400015],[-72.92735755099994,41.28880442900014],[-72.93004309799994,41.28375885600009],[-72.96727454299992,41.256415106000034],[-72.99290930899988,41.22898997600008],[-73.00202389199987,41.221747137000065],[-73.01382776799989,41.20672378500002],[-73.0384376129999,41.20522702800018],[-73.05353756399995,41.211737372000144],[-73.06371008999992,41.20477936400009],[-73.08551998599995,41.19700755400007],[-73.09447180899988,41.19131094000009],[-73.10374915299994,41.180365302000105],[-73.10741126199987,41.17470937700013],[-73.11059182599988,41.161942588000116],[-73.10848508099991,41.148708693000074],[-73.13423714699991,41.147207262],[-73.15508696699993,41.158858700000124],[-73.16433814299995,41.16510909599999],[-73.17010966299992,41.169571071000156],[-73.18406770099989,41.17410875000017],[-73.18427753799995,41.16177303900012],[-73.2089148559999,41.156722824000056],[-73.21580969999991,41.16303131700012],[-73.21910559799994,41.16600169500005],[-73.22109941299988,41.167141018000095],[-73.22516842399995,41.163275458000086],[-73.22423224999991,41.149812032000156],[-73.22785553699987,41.14279512100008],[-73.23380050599988,41.13668144000014],[-73.2444624039999,41.12796625600008],[-73.26212724199992,41.1201851310001],[-73.27152124199995,41.11762203700012],[-73.27833865099983,41.13001749100006],[-73.28645231199988,41.13449237300004],[-73.29364832299984,41.123094779000056],[-73.30193349599998,41.116990281000156],[-73.31599346499988,41.11533899800004],[-73.33238108499998,41.11371243700002],[-73.35002693199993,41.10679763600014],[-73.36406801499996,41.10602520000002],[-73.37193762899996,41.10195547100007],[-73.37975012899994,41.10016510600017],[-73.42373613199987,41.077704169000086],[-73.43761145699997,41.073065497000144],[-73.47459876199991,41.05475495000009],[-73.48521887899993,41.053859768],[-73.50419860499994,41.04256767900016],[-73.5232110289999,41.02149067800018],[-73.5371239859999,41.03127835600016],[-73.54670162699992,41.028876044000086],[-73.56484941299993,41.01894765800007],[-73.58999352899988,41.01479138100008],[-73.59687507099993,41.02367037000012],[-73.60392333899995,41.02281571100012],[-73.61114736499991,41.01133620500012],[-73.61936733399997,41.00873800900017],[-73.63458196399992,41.0070550730001],[-73.64170011399995,41.00177390900002],[-73.65025794199995,40.99656810100005],[-73.64801998599998,40.99209219],[-73.6531469389999,40.982123114],[-73.67438717399997,40.95880768400009],[-73.67699133999989,40.95477936400012],[-73.69871985599985,40.95477936400012],[-73.71076412699995,40.95302969000012],[-73.72036699099993,40.94700755400014],[-73.76439368399986,40.910101630000085],[-73.77741451699984,40.89411041900017],[-73.78282630099989,40.87604401200015],[-73.78815670499995,40.87177155200014],[-73.79991614499991,40.872259833000115],[-73.8116755849999,40.87103913000011],[-73.81696529899997,40.862005927],[-73.81991030099994,40.839129802000016],[-73.80505885699992,40.826147183],[-73.79768506399998,40.81319368500008],[-73.82972805299991,40.810897622000184],[-73.86602793399993,40.81183751700014],[-73.89383263199994,40.803853362000055],[-73.92682857999995,40.80479564000014],[-73.9322810539999,40.81777578300013],[-73.9322810539999,40.82558828300013],[-73.9257706369999,40.83600495000012],[-73.91535396999988,40.8568382830001],[-73.90884355399993,40.86855703300007],[-73.91274980399989,40.88157786700007],[-73.92186438699991,40.886786200000145],[-73.89801998599992,40.930487372000144],[-73.8894750639999,40.9721540390001],[-73.87539628799996,41.01333242400007],[-73.87218176999991,41.03363678600009],[-73.87157141799995,41.11554596600003],[-73.87531490799998,41.153265692],[-73.88589433499993,41.187567450000145],[-73.89574133999986,41.20319245000006],[-73.90758216099991,41.21336497599999],[-73.94050045499989,41.235988674000154],[-73.95702063699989,41.25775788000011],[-73.95348059799989,41.27472565300009],[-73.94513912699992,41.2910016950001],[-73.9473363919999,41.31110260600015],[-73.96597245999989,41.30011627800011],[-73.97594153599988,41.29218170800014],[-73.98204505099997,41.28375885600009],[-73.98497473899991,41.26959870000017],[-73.98216712099995,41.26113515800013],[-73.97760982999989,41.25287506700015],[-73.97020423099991,41.21906159100017],[-73.96306927999984,41.20569873900003],[-73.95227985999992,41.18929388700009],[-73.9323208669999,41.17826901800014],[-73.91787675699993,41.16351959800012],[-73.9166560539999,41.145697333000136],[-73.92064368399988,41.10195547100007],[-73.90636145699989,41.0162621110001],[-73.90713456899991,40.990790106000084],[-73.90770423099988,40.971869208000086],[-73.91808020699997,40.93146393400003],[-73.9547419909999,40.858587958],[-73.99191573699991,40.79845988900003],[-74.00625254599989,40.78061391600012],[-74.01431080399988,40.76584335000014],[-74.01863301299991,40.75168269100008],[-74.0209268509999,40.74205104900004],[-74.02802820799985,40.727857259000146],[-74.03192941299996,40.71418089700002],[-74.04808508999989,40.70062897300015],[-74.07103430899988,40.68720123900006],[-74.08934485599985,40.66925690300012],[-74.09600579999994,40.65475792700011],[-74.11065970299997,40.6503618980001],[-74.13102220199991,40.645176895000176],[-74.14208542299991,40.646322963000145],[-74.13899124799988,40.65784767300015],[-74.10556796999995,40.70519263900009],[-74.1124354209999,40.71789346700017],[-74.1260167559999,40.703170392000104],[-74.13331787599986,40.69123805300002],[-74.14219138299988,40.67612091700015],[-74.1500181389999,40.66418304800014],[-74.16075598899991,40.662461656000076],[-74.17906653599988,40.65350983300006],[-74.19032065899998,40.64938391200009],[-74.20964677299986,40.63423063800015],[-74.2152861969999,40.59165780700009],[-74.2216690749999,40.572088934000085],[-74.23301692999988,40.56653738900003],[-74.24904380299998,40.56297459900013],[-74.26048758299996,40.551819592000136],[-74.25987764499993,40.53673142600017],[-74.26393032199988,40.51328978800002],[-74.26964952799995,40.504920293000126],[-74.28268744599984,40.497318766000106],[-74.26954995599986,40.483058603000146],[-74.25633704299989,40.46002838700004],[-74.22191321499984,40.4518903670001],[-74.20592200399997,40.442938544000086],[-74.19713294199991,40.440863348000065],[-74.14590410099996,40.44769928600009],[-74.11994381399995,40.44525788000014],[-74.03233801999994,40.42161692900011],[-73.99299068899995,40.402411200000145],[-73.98800861099991,40.40783363100009],[-73.9953109219999,40.42185266500017],[-73.99819902299993,40.441107489],[-74.0182185539999,40.480536200000174],[-73.98957271999984,40.468207098000114],[-73.97915605399992,40.44928620000012],[-73.97570115199989,40.429270343],[-73.97092998999992,40.394748808000045],[-73.9723937439999,40.32765030000003],[-73.97988801999992,40.28015775100015],[-73.99205481699997,40.226874091000084],[-74.01075198299993,40.16755553000003],[-74.01822436599986,40.14089445200015],[-74.02560569599987,40.11103009800014],[-74.03055957199987,40.079340938000186],[-74.0367194259999,40.04858541599999],[-74.04041062299987,40.028078116000174],[-74.04656158599997,39.997336800000184],[-74.05881937699988,39.954516313000155],[-74.0625017209999,39.933095818000155],[-74.06742409199994,39.90330524200006],[-74.07233959199988,39.87537928800005],[-74.09301263299992,39.77633706000013],[-74.10043843499989,39.783232835000135],[-74.08073969799992,39.92287877000008],[-74.07217492899994,39.97299082799999],[-74.0660419489999,39.99255493600013],[-74.05746527699992,40.01212239100009],[-74.05132529999995,40.035393950000085],[-74.05028235599988,40.05499909100014],[-74.06069902299987,40.06216054900001],[-74.08048026999995,40.051265493000145],[-74.07806607199984,40.0438108690001],[-74.0671218219999,40.041934725000104],[-74.06350300299988,40.030751857000055],[-74.0756813559999,40.02517718100013],[-74.0830155699999,40.01120964300004],[-74.10368551899998,40.014023988000034],[-74.10948645699989,40.00283437700013],[-74.12205969999988,39.997300523000106],[-74.12608801999994,39.98159414300015],[-74.10582434799994,39.98554108300014],[-74.10228430899986,39.97093333500011],[-74.11237545499992,39.949693101000136],[-74.13288326699987,39.933783270000035],[-74.1136087459999,39.931076346000125],[-74.10999225899991,39.92174081800005],[-74.12704261299987,39.90589338700006],[-74.13679983699993,39.89096734000019],[-74.13199118399987,39.87229385000002],[-74.12588456899988,39.855617580000015],[-74.12726803299995,39.848456122000144],[-74.14590410099996,39.830755927000055],[-74.16586523199987,39.80656409],[-74.18651889499992,39.77211075600003],[-74.19019686199994,39.74416324300002],[-74.16331946499992,39.73517487200017],[-74.16113980099988,39.720868789000164],[-74.16601372799991,39.70409806900012],[-74.16755123599995,39.69936758000016],[-74.1817794259999,39.69198852000015],[-74.19876234499989,39.67613954000011],[-74.21090882199994,39.65096530600012],[-74.24362247099995,39.643485902000165],[-74.25211489099988,39.63135476700016],[-74.24754798099993,39.62140534100011],[-74.25641842399997,39.61163971600016],[-74.27636730599995,39.60707236100008],[-74.29090509799997,39.60518720100008],[-74.3066662259999,39.59489534900011],[-74.32849089999988,39.576184835000085],[-74.32970979699991,39.56217799600013],[-74.30353756399998,39.54165273600016],[-74.29019120999996,39.523138739000146],[-74.29735266799992,39.508612372000115],[-74.31090247299996,39.506659247000144],[-74.31627356699994,39.51455312700013],[-74.31818600199989,39.52464427300002],[-74.32127844999988,39.529730536000116],[-74.3587947259999,39.55019765800007],[-74.37364661399994,39.543443101000044],[-74.3867895169999,39.54441966400013],[-74.39801998599991,39.550034898000106],[-74.40721594999988,39.55703359600001],[-74.40648352799984,39.52008698100015],[-74.40127519399995,39.502427476000136],[-74.38927161399994,39.49494049700017],[-74.38011633999986,39.487494208],[-74.38369706899994,39.471096096000096],[-74.39635169199991,39.44717031500012],[-74.41124426999994,39.45018138200014],[-74.42210852799994,39.455145575000174],[-74.43297278599991,39.45620351800012],[-74.4481501939999,39.44717031500012],[-74.45490475199995,39.439032294000114],[-74.46206620999989,39.42641836100013],[-74.46751868399991,39.41209544500005],[-74.46865800699996,39.399359442],[-74.45030676999991,39.40643952000015],[-74.4343969389999,39.39500560100002],[-74.4217830069999,39.37523021000008],[-74.41344153599994,39.35712311400006],[-74.44440670499996,39.34711334800009],[-74.50283769399994,39.31818268400018],[-74.53014075399994,39.31061432500003],[-74.53014075399994,39.316229559000035],[-74.5211075509999,39.33038971600014],[-74.50885982999995,39.34345123900012],[-74.48176021999984,39.364650783000044],[-74.50963294199988,39.378851630000135],[-74.5423477859999,39.347316799000126],[-74.55524654899992,39.32929108300003],[-74.55064856699988,39.316229559000035],[-74.55064856699988,39.31061432500003],[-74.61449133999992,39.31240469000004],[-74.64207923099994,39.30670807500003],[-74.66047115799998,39.289496161000116],[-74.64256751199991,39.28900788000011],[-74.62950598899994,39.284369208],[-74.61815344999988,39.278753973],[-74.60521399599986,39.27521393400012],[-74.55064856699988,39.289496161000116],[-74.55064856699988,39.282660223],[-74.57896887899994,39.26776764500014],[-74.62083899599995,39.22321198100015],[-74.64305579299992,39.21381256700012],[-74.6543676419999,39.201361395000035],[-74.70148678299996,39.124416408000016],[-74.71182206899988,39.1310082050001],[-74.72280839799996,39.13182200700011],[-74.73326575399992,39.12742747600011],[-74.74242102799991,39.11815013200008],[-74.73753821499993,39.11774323100014],[-74.73672441299993,39.116766669000086],[-74.73696855399987,39.114691473000065],[-74.73558508999989,39.11139557500003],[-74.72524980399987,39.11595286700016],[-74.71637936099992,39.11493561400012],[-74.71019446499986,39.10879140800013],[-74.7083227199999,39.09772370000009],[-74.71373450399994,39.09113190300003],[-74.73717200399992,39.07025788000006],[-74.74571692599994,39.05451080900009],[-74.75381425699986,39.04877350500011],[-74.7640681629999,39.044256903000175],[-74.78807532499985,39.03904857],[-74.78937740799994,39.03119538],[-74.78526770699989,39.02204010600012],[-74.78335527299993,39.0151227890001],[-74.80329342399992,38.987616278000175],[-74.83608964799993,38.963446356000176],[-74.87511145699987,38.94452545800006],[-74.93309485599988,38.92633698100015],[-74.9442439439999,38.92438385600012],[-74.95470130099989,38.926418361000124],[-74.96764075399989,38.93577708500008],[-74.96933377999991,38.94599687300003],[-74.9651503179999,38.95701071000006],[-74.96179833299992,38.9693227070001],[-74.95676819099992,38.98811157400003],[-74.95256603899985,39.007548164000085],[-74.94432532499988,39.02472565300009],[-74.89443925699993,39.107611395],[-74.88727779899989,39.14679596600014],[-74.90632076699987,39.17963288000014],[-74.92223059799989,39.18854401200018],[-74.9385880199999,39.19253164300015],[-74.97887122299989,39.193304755000085],[-74.98643958199995,39.192328192],[-75.0037328769999,39.18805573100009],[-75.01305091099988,39.18707916900003],[-75.02220618399986,39.18927643400012],[-75.02342688699987,39.194891669000114],[-75.0228572259999,39.20246002800015],[-75.02668209499993,39.210679429000045],[-75.04027258999989,39.21454498900006],[-75.06114661399994,39.2135277360001],[-75.0924373039999,39.207586981000176],[-75.10659745999993,39.200140692],[-75.11717688699987,39.19281647300009],[-75.12889563699989,39.18768952000009],[-75.14647376199991,39.18707916900003],[-75.14500891799995,39.19147370000009],[-75.15933183499993,39.19863515800013],[-75.16698157499984,39.207586981000176],[-75.16881262899992,39.216009833000115],[-75.16563880099997,39.22833893400015],[-75.16698157499984,39.23427969],[-75.17577063699991,39.242010809000085],[-75.21165930899991,39.26434967700014],[-75.22594153599991,39.268988348000065],[-75.23420162699989,39.27338288000014],[-75.24209550699986,39.29262929900009],[-75.24950110599985,39.29694245000009],[-75.28742428299998,39.29694245000009],[-75.30361894399994,39.303290106000034],[-75.31322180899991,39.317816473000065],[-75.32091223899994,39.333685614],[-75.33141028599991,39.34414297100007],[-75.34056555899988,39.34503815300015],[-75.34821529899992,39.342027085000055],[-75.35448157499988,39.338568427000055],[-75.35936438699994,39.337876695000105],[-75.36717688699991,39.34259674700003],[-75.37193762899992,39.34772370000006],[-75.37555904899989,39.352728583000086],[-75.47765051999994,39.44086334800009],[-75.50816809799989,39.45734284100016],[-75.53160559799997,39.477972723],[-75.54133053299992,39.50885651200015],[-75.53734290299985,39.50315989800008],[-75.53164628799996,39.49848053600006],[-75.52383378799988,39.49494049700017],[-75.5215551419999,39.514105536000145],[-75.51040605399987,39.55963776200009],[-75.51366126199991,39.57379791900003],[-75.54747473899991,39.6010602890001],[-75.55821692599991,39.61347077000015],[-75.5574438139999,39.62124258000013],[-75.53538977799991,39.638902085000055],[-75.51650956899996,39.64777252800009],[-75.5102432929999,39.65265534100017],[-75.50715084499984,39.66229889500015],[-75.50499426999994,39.67601146000008],[-75.50112870999993,39.68829987200003],[-75.48753821499989,39.69684479400014],[-75.48314368399988,39.70416901200015],[-75.47667395699989,39.71137116100009],[-75.46519934799994,39.714667059000114],[-75.46336829299985,39.71938711100013],[-75.46182206899991,39.74823639500015],[-75.44017493399994,39.7770042990001],[-75.40611731699991,39.802923895],[-75.36729895699989,39.82379791900017],[-75.31090247299994,39.84320709800006],[-75.2682999339999,39.850775458000115],[-75.24608313699986,39.85187409100017],[-75.22907467399989,39.854559637000065],[-75.19294186099995,39.86749909100014],[-75.16885331899991,39.872707424000154],[-75.16759192599991,39.87348053600006],[-75.16624915299991,39.873358466000084],[-75.16075598899991,39.87856679900009],[-75.14415442599994,39.87490469000012],[-75.12938391799985,39.88385651200015],[-75.11481686099992,39.897162177],[-75.09870357999995,39.90643952000015],[-75.11367753799989,39.92206452000012],[-75.12022864499997,39.94074127800009],[-75.11595618399986,39.952582098000065],[-75.09870357999995,39.94745514500014],[-75.08503170499992,39.9610863300001],[-75.07876542899986,39.953599351000136],[-75.03941809799997,40.002630927000084],[-75.02358964799993,40.01630280200011],[-75.04653886599993,40.009100653000175],[-75.0799861319999,39.98639557500003],[-75.10240637899989,39.98159414300015],[-75.11969967399989,39.97418854400014],[-75.13292395699995,39.95612213700004],[-75.1387426419999,39.93357982000008],[-75.1334122389999,39.912665106000084],[-75.14777584499988,39.90257396000014],[-75.20791581899988,39.88540273600002],[-75.24868730399993,39.86725495000012],[-75.2731013659999,39.864081122000144],[-75.29735266799989,39.871730861000074],[-75.35887610599985,39.848334052],[-75.37645423099988,39.84503815300015],[-75.39171301999994,39.8395856790001],[-75.42764238199993,39.803412177],[-75.46296139199987,39.78461334800012],[-75.47671464799987,39.772121486000046],[-75.48766028599994,39.73167552299999],[-75.50072180899991,39.714260158000016],[-75.54576575399989,39.67023346600011],[-75.55113684799994,39.66624583500011],[-75.58682206899991,39.65595123900003],[-75.59215247299994,39.64923737200014],[-75.59520423099985,39.63849518400015],[-75.60114498599997,39.62726471600014],[-75.60521399599995,39.61668528900019],[-75.60269120999993,39.607896226000136],[-75.57404537699993,39.5855980490001],[-75.56550045499992,39.576849677000105],[-75.55581620999988,39.559271552],[-75.55459550699996,39.54116445500007],[-75.56118730399993,39.52301666900017],[-75.57506262899992,39.50519440300009],[-75.58356686099995,39.48334381700006],[-75.58793816799997,39.46277063900011],[-75.56886311599987,39.44035487600003],[-75.55276057899991,39.42579396200016],[-75.52789117599986,39.40339092400013],[-75.49079342399992,39.35346100500011],[-75.48851477799985,39.347316799000126],[-75.48241126199986,39.34467194200015],[-75.45916525699991,39.32829296000013],[-75.43441061999992,39.31487386300013],[-75.4284901879999,39.291292781],[-75.40770423099985,39.27024974200016],[-75.39801998599998,39.24933502800012],[-75.39415442599989,39.22459544500013],[-75.4047571289999,39.17223087000009],[-75.40611640599994,39.151998866000106],[-75.40457266799993,39.13064715100016],[-75.40161623599991,39.11716634700012],[-75.39744518099994,39.10263636400005],[-75.40140434099996,39.078287597000084],[-75.39378989099993,39.055551025000014],[-75.36920511499996,39.040257328000095],[-75.34258212199992,39.02021125200004],[-75.31484941299993,38.984076239],[-75.31112844799989,38.96795413600001],[-75.31107029299989,38.94946820800003],[-75.31032587399994,38.92781826400015],[-75.29662024599986,38.91307200700014],[-75.24435278599995,38.85979865200012],[-75.19548272799994,38.81549086500003],[-75.16632665399993,38.79438235700011],[-75.13041423499992,38.78277182500001],[-75.09992621999996,38.78804841000005],[-75.09586098399984,38.797555178],[-75.09925204899986,38.805480878000125],[-75.0924747629999,38.80759157700005],[-75.08434048499993,38.79596651100009],[-75.06612255199988,38.678024950000164],[-75.06480713799994,38.63260897200003],[-75.07184811099994,38.63833242400001],[-75.07762183399984,38.68647519800008],[-75.08641065699987,38.69334481900002],[-75.12092103699987,38.68383467299999],[-75.13918852099992,38.68805248000011],[-75.11978105399987,38.658880927000055],[-75.1339412099999,38.66038646000011],[-75.13939368399994,38.662054755000106],[-75.14586341099994,38.66152578300013],[-75.14720618399994,38.66006094000009],[-75.1499731109999,38.659816799000126],[-75.15330969999991,38.658880927000055],[-75.14256751199991,38.6505394550001],[-75.13044186099992,38.64305247600011],[-75.11611894399994,38.638413804],[-75.09870357999995,38.638413804],[-75.1214086579999,38.621323960000055],[-75.19005286399991,38.606675523000135],[-75.20791581899988,38.59003327000009],[-75.18740800699993,38.59003327000009],[-75.19151770699997,38.582709052],[-75.19644120999992,38.57684967700014],[-75.20197506399994,38.572455145000056],[-75.20791581899988,38.56952545800014],[-75.19176184799991,38.566961981000034],[-75.15221106699997,38.58844635600015],[-75.12604732999992,38.59003327000009],[-75.11961829299992,38.58429596600003],[-75.11168372299994,38.57416413000006],[-75.10326087099989,38.56590403900016],[-75.09557044199988,38.56639232000008],[-75.07518469999991,38.58649323100012],[-75.06956727499988,38.59353557000007],[-75.06920325399989,38.608303127000156],[-75.06533769399987,38.61493561400012],[-75.0600910859999,38.61254062000002],[-75.05874569699998,38.60514757300011],[-75.0567343049999,38.58666577700008],[-75.05772864499994,38.55272044500013],[-75.05284583199997,38.527329820000105],[-75.05002119099993,38.49898533400001],[-75.04732838599996,38.47573260800014],[-75.04397538999991,38.45380280200011],[-75.04405676999991,38.45343659100011],[-75.04474850199995,38.42503489800008],[-75.05113684799997,38.38776276200009],[-75.06700887899987,38.35351985600012],[-75.07876542899986,38.336737372000115],[-75.07579505099994,38.36627838700014],[-75.05923417899989,38.422796942],[-75.05772864499994,38.45343659100011],[-75.05809485599984,38.453721421000054],[-75.06273352799987,38.457342841000084],[-75.06859290299991,38.459906317],[-75.07579505099994,38.461004950000145],[-75.08503170499992,38.460882880000085],[-75.08389238199987,38.45359935100008],[-75.08291581899991,38.44745514500009],[-75.08988220099988,38.432201367000076],[-75.10201621199984,38.43853820300011],[-75.11819626099995,38.43748120400012],[-75.09797871299992,38.40791302800015],[-75.10404529899996,38.39524201400015],[-75.11213051999988,38.399466031000046],[-75.12762840599993,38.405800428000035],[-75.14784577999993,38.41371489000012],[-75.16536758599989,38.416875316000144],[-75.17950998199986,38.40842047800011],[-75.13975413499992,38.399462658000125],[-75.13234149699989,38.394184582000136],[-75.1334122389999,38.38515859600001],[-75.1334122389999,38.37767161700013],[-75.12604732999992,38.37767161700013],[-75.12604732999992,38.37152741100006],[-75.13060462099989,38.36928945500007],[-75.13536536399997,38.36603424700002],[-75.13963782499987,38.36408112200017],[-75.12547766799986,38.360337632000046],[-75.11213131399995,38.36249420800014],[-75.10073808499988,38.36212799700003],[-75.0924373039999,38.351019598],[-75.09422766799989,38.33535390800012],[-75.10440019399992,38.31622955900015],[-75.1179906889999,38.29816315300003],[-75.12975012899997,38.28554922100015],[-75.15428626199989,38.240912177],[-75.16388912699998,38.23371002800015],[-75.19749915299988,38.232570705000015],[-75.20067298099985,38.24030182500003],[-75.18740800699993,38.261664130000085],[-75.22004146999987,38.24762604400003],[-75.23306230399996,38.23895905200014],[-75.24266516799993,38.22695547100001],[-75.2571508449999,38.16815827000012],[-75.26691646999993,38.15924713700017],[-75.27171790299991,38.15232982],[-75.28327389199984,38.12055084800012],[-75.2904353509999,38.11082591400019],[-75.29735266799989,38.110785223],[-75.31590735599988,38.11688873900009],[-75.32526607999992,38.11701080900015],[-75.33389238199993,38.11155833500011],[-75.35016842399995,38.09406159100017],[-75.35602779899992,38.090318101000136],[-75.3511856759999,38.08209870000003],[-75.37303626199989,38.03196849200005],[-75.37515214799987,38.02383047100012],[-75.37828528599992,38.01166413000014],[-75.39098059799991,38.002671617000104],[-75.40684973899994,37.99738190300006],[-75.42145748599995,37.987941799000126],[-75.42617753799988,37.976507880000085],[-75.43434422299994,37.9618329930001],[-75.43188166399995,37.95183034300008],[-75.41915157299985,37.94327864300011],[-75.42516315699987,37.93611439500002],[-75.43542411099986,37.93370459700012],[-75.43478266199989,37.9256027550001],[-75.41965455999991,37.91992312800009],[-75.42385584699987,37.913716503],[-75.43892125899993,37.9060509510001],[-75.44792046299989,37.89363537200008],[-75.44307142099987,37.889360228000115],[-75.42557700599991,37.892742699000124],[-75.4171007789999,37.886091984000146],[-75.42489525199991,37.875113328000126],[-75.44659182799992,37.86743214000016],[-75.47065819299988,37.85116251900002],[-75.49228479599994,37.83108400000016],[-75.51208130999993,37.80862075400013],[-75.53126944999984,37.787884126000094],[-75.56050504699996,37.74390211200013],[-75.59814441799995,37.70001121700007],[-75.62707875599989,37.67383181100017],[-75.65282290599995,37.64255234800005],[-75.70595768799987,37.5801830780001],[-75.7166860269999,37.559551193000075],[-75.73346920499995,37.536078192],[-75.7448760959999,37.52420403600003],[-75.75979974699993,37.50795376600011],[-75.77147376199986,37.49030182500008],[-75.78392493399987,37.48358795800014],[-75.78831946499986,37.47589752800003],[-75.81049616399989,37.462182433000166],[-75.81870712299991,37.454237853000066],[-75.81031085199993,37.44309882500009],[-75.81480461499984,37.43649367600007],[-75.8238318269999,37.4275596400001],[-75.82167723099988,37.41901968100013],[-75.80630922899985,37.41450330700009],[-75.79587438499996,37.405682914000025],[-75.79996167099992,37.40006841500018],[-75.81153774999993,37.398357022000155],[-75.8201692589999,37.39172923400004],[-75.82843993399987,37.390693559000155],[-75.8363578719999,37.395908136000045],[-75.85500507299992,37.39743783700011],[-75.87584625899993,37.369350848000025],[-75.88730851099993,37.356967294000086],[-75.9004774449999,37.325513665000145],[-75.91152966399991,37.29076613200009],[-75.92349188799997,37.244441581],[-75.92729673899991,37.21136833200008],[-75.93415782599988,37.173303837],[-75.93504015699997,37.15841693500006],[-75.93592555799995,37.13501634700013],[-75.94911108199989,37.12495191000015],[-75.96642860099985,37.134795304000036],[-75.97612161299992,37.1615184030001],[-76.00077808699984,37.19436524500013],[-76.00096594999985,37.220160223],[-75.99620520699995,37.23383209800015],[-75.99620520699995,37.23997630400011],[-76.01695716099994,37.2577985700001],[-76.0149633449999,37.28156159100011],[-76.00011145699993,37.30353424700011],[-75.98253333199992,37.31635163000006],[-75.9959203769999,37.32025788000014],[-76.00145423099993,37.31948476800012],[-76.01056881399992,37.31635163000006],[-75.99079342399992,37.35301341400016],[-75.9847712879999,37.37189362200009],[-75.98997962099989,37.38458893400015],[-75.97378495999992,37.39154694200015],[-75.96214758999994,37.40326569200012],[-75.95588131399998,37.415920315],[-75.95531165299991,37.42560455900015],[-75.95645097599996,37.42495351800004],[-75.96222896999993,37.42572663000014],[-75.96617591099991,37.42450592700011],[-75.96825110599991,37.41815827000009],[-75.97569739499991,37.41815827000009],[-75.97288977799985,37.43512604400014],[-75.96564693899992,37.452948309000035],[-75.95400956899991,37.466986395000085],[-75.92617753799996,37.47842031500015],[-75.92463131399992,37.48899974200019],[-75.93415279899992,37.495062567],[-75.95531165299991,37.487005927000055],[-75.95177161399994,37.51593659100014],[-75.93781490799995,37.53729889500011],[-75.91710364499994,37.55247630400011],[-75.89378821499986,37.56273021000014],[-75.93472245999988,37.576402085000076],[-75.92125403599991,37.58576080900009],[-75.91104081899996,37.594875393000095],[-75.90949459499993,37.60321686400006],[-75.92174231699988,37.61054108300005],[-75.90461178299995,37.619859117000104],[-75.88267981699991,37.623765367000104],[-75.8714493479999,37.629543361000074],[-75.88634192599997,37.64468008000007],[-75.87572180899994,37.66071198100015],[-75.86082923099988,37.66901276200003],[-75.8417048819999,37.67210521000011],[-75.81867428299992,37.672593492000104],[-75.82494055899988,37.687811591000084],[-75.82384192599994,37.69651927300008],[-75.78868567599997,37.727484442],[-75.79051673099985,37.733303127000156],[-75.81187903599991,37.73346588700012],[-75.81187903599991,37.740912177],[-75.79084225199998,37.75385163],[-75.77745520699997,37.76642487200009],[-75.77790279899997,37.78009674700002],[-75.79820716099988,37.796128648000106],[-75.78685462099988,37.809393622000144],[-75.77554277299993,37.80792877800009],[-75.76447506399997,37.800523179000024],[-75.75348873599992,37.796128648000106],[-75.69456946499986,37.802313544000086],[-75.70372473899994,37.81073639500012],[-75.70848548099994,37.821682033],[-75.7081192699999,37.83315664300015],[-75.70201575399994,37.84332916900008],[-75.6948136059999,37.84471263200008],[-75.67137610599991,37.84149811400012],[-75.66104081899991,37.84332916900008],[-75.66950436099995,37.85203685099999],[-75.67430579299995,37.86139557500012],[-75.67422441299995,37.87034739800004],[-75.66783606699994,37.87807851800015],[-75.6709692049999,37.892564195000105],[-75.68927975199998,37.90399811400006],[-75.71751868399984,37.909409898000106],[-75.74299068899995,37.90599192899999],[-75.74299068899995,37.912176825000145],[-75.71914628799988,37.92763906500009],[-75.69456946499986,37.93952057500003],[-75.66177324099993,37.944769598000114],[-75.64586341099994,37.94953034100002],[-75.63312740799998,37.96002838700018],[-75.65367591099991,37.96796295800006],[-75.67259680899994,37.97199127800012],[-75.76317298099988,37.97821686400008],[-75.78628495999992,37.97589752800012],[-75.80817623599994,37.96344635600009],[-75.83812415299992,37.941229559000035],[-75.85802161399994,37.93113841400016],[-75.86709550699993,37.936102606000034],[-75.86896725199988,37.94330475500005],[-75.8724666009999,37.94696686400003],[-75.87498938699991,37.95111725500006],[-75.87336178299996,37.96002838700018],[-75.86750240799992,37.967230536000116],[-75.85879472599994,37.973211981000034],[-75.8504125639999,37.98110586100002],[-75.84536699099995,37.99408600500003],[-75.85484778599997,37.99335358300008],[-75.86270097599996,37.99079010600015],[-75.86888587099992,37.986517645000056],[-75.87336178299996,37.98045482000008],[-75.88011633999992,37.98045482000008],[-75.87954667899996,37.98533763200014],[-75.8810115229999,37.98663971600003],[-75.88365637899987,37.986761786],[-75.88634192599997,37.987941799000126],[-75.87865149599986,37.994574286],[-75.85724850199992,38.021144924000126],[-75.85285396999993,38.03196849200005],[-75.84642493399991,38.03961823100014],[-75.81826738199993,38.042710679000045],[-75.81187903599991,38.045965887000094],[-75.80207271999987,38.058050848],[-75.75658118399991,38.092596747000115],[-75.74299068899995,38.11082591400019],[-75.75767981699994,38.11326732000013],[-75.76862545499992,38.10561758000009],[-75.7795304029999,38.09540436400006],[-75.79450436099992,38.090318101000136],[-75.81908118399994,38.091009833000086],[-75.83332271999984,38.08917877800009],[-75.84536699099995,38.0834821640001],[-75.84756425699996,38.086371161000145],[-75.84776770699992,38.08746979400008],[-75.84862219999991,38.088324286],[-75.85285396999993,38.090318101000136],[-75.85285396999993,38.097805080000015],[-75.8426000639999,38.101304429],[-75.83238684799997,38.10757070500012],[-75.82388261599993,38.115545966000084],[-75.81867428299992,38.124457098000114],[-75.8248591789999,38.13129303600006],[-75.81444251199991,38.135199286000145],[-75.78441321499986,38.139471747000144],[-75.7764786449999,38.144964911],[-75.77969316299996,38.15521881700012],[-75.79401607999995,38.15888092700008],[-75.81163489499997,38.15729401200004],[-75.8248591789999,38.15924713700017],[-75.84813391799992,38.15216705900012],[-75.89346269399994,38.15607330900012],[-75.91429602799991,38.151800848],[-75.91954505099989,38.14484284100003],[-75.92064368399994,38.13572825700011],[-75.92275956899994,38.12787506700015],[-75.93130449099988,38.124457098000114],[-75.93740800699995,38.127630927],[-75.94050045499995,38.1354027360001],[-75.9415583979999,38.15546295800006],[-75.92845618399994,38.19354889500015],[-75.89631100199998,38.210679429],[-75.85602779899989,38.219712632],[-75.81867428299992,38.23371002800015],[-75.83458411399994,38.24017975500006],[-75.87873287699995,38.24286530200014],[-75.89720618399984,38.25112539300012],[-75.90664628799988,38.27098216400013],[-75.90241451699987,38.29376862200014],[-75.89122473899994,38.315130927000105],[-75.85806230399993,38.35858795800006],[-75.84911048099988,38.373968817],[-75.84337317599991,38.39545319200012],[-75.84072831899994,38.40082428600008],[-75.84325110599985,38.404364325000145],[-75.85627193899992,38.40566640800016],[-75.86314856699994,38.40176015800015],[-75.86644446499989,38.392401434000035],[-75.86900794199988,38.38108958500013],[-75.87336178299996,38.37152741100006],[-75.92471269399991,38.324896552000055],[-75.93130449099988,38.31688060100011],[-75.95567786399994,38.25779857],[-75.96271725199989,38.24799225500014],[-75.96825110599991,38.25405508000013],[-75.96808834499987,38.26260000200007],[-75.96662350199989,38.27228424700003],[-75.96825110599991,38.28213125200012],[-75.97411048099988,38.28815338700015],[-75.98363196499984,38.29547760600015],[-75.99233964799996,38.30390045800003],[-75.99620520699995,38.313177802000055],[-75.99010169199997,38.32599518400009],[-75.96239173099987,38.33584219000003],[-75.95531165299991,38.351019598],[-75.96483313699991,38.373480536],[-75.99046790299988,38.36204661700005],[-76.01891028599991,38.334784247000144],[-76.03718014199987,38.30947500200001],[-76.02672278599988,38.304185289000046],[-76.01927649599992,38.2944196640001],[-76.01732337099986,38.28180573100012],[-76.01732337099986,38.267808335000055],[-76.02867591099992,38.241766669000086],[-76.0379125639999,38.23248932500003],[-76.04881751199989,38.23932526200015],[-76.08120683499986,38.28408437700009],[-76.09117591099988,38.292425848000065],[-76.11750240799998,38.298285223],[-76.12437903599988,38.3048363300001],[-76.13341223899991,38.32306549700017],[-76.19294186099992,38.38275788000006],[-76.20970618399994,38.392035223],[-76.22085527299987,38.38361237200014],[-76.20653235599988,38.338568427],[-76.20970618399994,38.31688060100011],[-76.21593176999991,38.31688060100011],[-76.2210994129999,38.34389883000016],[-76.23985755099997,38.368231512000115],[-76.26988684799991,38.40566640800016],[-76.27513587099989,38.41156647300009],[-76.28233801999994,38.42182038000011],[-76.28888912699992,38.43353913000003],[-76.29548092399988,38.455511786000116],[-76.30402584499993,38.463283596000124],[-76.31330318899994,38.468695380000085],[-76.31895911399995,38.47394440300015],[-76.31981360599985,38.49502187700007],[-76.30467688699986,38.50263092700011],[-76.28636633999992,38.5001488300001],[-76.27741451699985,38.490952867000104],[-76.27310136599988,38.467474677000055],[-76.26374264199984,38.46552155200003],[-76.25430253799993,38.47980377800009],[-76.25007076699988,38.50495026200018],[-76.2423396479999,38.52118561400012],[-76.22394771999984,38.52960846600016],[-76.20148678299995,38.53510163],[-76.1817927729999,38.542792059000114],[-76.18724524599995,38.55329010600009],[-76.17198645699997,38.566229559000085],[-76.17495683499986,38.576971747000115],[-76.17926998599998,38.580511786],[-76.18447831899988,38.58258698100012],[-76.19098873599997,38.58356354400008],[-76.19884192599994,38.583807684000035],[-76.21051998599995,38.582709052],[-76.21336829299987,38.57949453300013],[-76.2141820949999,38.57404205900009],[-76.2193497389999,38.56639232000008],[-76.23021399599989,38.55951569200015],[-76.24266516799992,38.55670807500009],[-76.27367102799992,38.55646393400015],[-76.28604081899988,38.562811591000084],[-76.27847245999993,38.57684967700014],[-76.25625566299988,38.597398179],[-76.25625566299988,38.6042341170001],[-76.26260331899991,38.60781484600007],[-76.26732337099992,38.61180247600005],[-76.27741451699985,38.624741929000045],[-76.23249264199987,38.61806875200001],[-76.21593176999991,38.61790599200005],[-76.20128333199987,38.620672919000086],[-76.17540442599989,38.62921784100002],[-76.16128495999993,38.631008205000015],[-76.17613684799991,38.620672919000086],[-76.1817927729999,38.61790599200005],[-76.17186438699991,38.61025625200001],[-76.16128495999993,38.6042341170001],[-76.14264889199987,38.607489325000145],[-76.11497482099992,38.587975443000076],[-76.0923538349999,38.59363380900011],[-76.05358612099991,38.568038512000115],[-76.01166511699995,38.56565509400018],[-75.9942927729999,38.58368561400006],[-75.98253333199992,38.59003327000009],[-75.97020423099988,38.60659414300015],[-75.96532141799987,38.63739655200011],[-75.95531165299991,38.652655341000084],[-75.95938066299988,38.65570709800009],[-75.96271725199989,38.658880927000055],[-75.96825110599991,38.658880927000055],[-75.98997962099989,38.62396881700012],[-75.99992697899995,38.602595207000135],[-76.02424381599985,38.592846354000145],[-76.05934748699991,38.606201199000154],[-76.07694391999988,38.61560427400012],[-76.10502883399988,38.62491012600013],[-76.09239661399988,38.658880927000055],[-76.1074926419999,38.65399811400008],[-76.1205134759999,38.64793528900019],[-76.13499915299994,38.64594147300015],[-76.15444902299993,38.652655341000084],[-76.15444902299993,38.658880927000055],[-76.14537512899992,38.66502513200014],[-76.11961829299987,38.67560455900017],[-76.10606848899994,38.679388739000025],[-76.10606848899994,38.68622467700011],[-76.1268611319999,38.68488190300003],[-76.1485082669999,38.68089427300007],[-76.16612708199992,38.68146393400003],[-76.17495683499986,38.69367096600011],[-76.16832434799991,38.699896552000055],[-76.16454016799989,38.70815664300015],[-76.16429602799985,38.71771881700015],[-76.16812089799987,38.727728583000115],[-76.1769913399999,38.71613190300012],[-76.18146725199998,38.70237864799999],[-76.18691972599993,38.69106679900001],[-76.19864906599989,38.67505635800002],[-76.2090689959999,38.68672448000008],[-76.2265126449999,38.70097081100015],[-76.23646740199985,38.71515457000005],[-76.22781567699988,38.735726853000024],[-76.20183781699984,38.73230585400013],[-76.22187818899994,38.750931670000156],[-76.23385045299995,38.75744934900003],[-76.2543998349999,38.74923735500012],[-76.27365715599984,38.71452670300006],[-76.29194240099986,38.7213145890001],[-76.29731186999996,38.75093921600016],[-76.28844206199997,38.766697874],[-76.28803819799994,38.775526088000035],[-76.29438335099985,38.773854203000056],[-76.30983262399984,38.76123794100006],[-76.31058537699988,38.73533067300012],[-76.3265156299999,38.71824345400001],[-76.32674694199994,38.69875497100012],[-76.32200807899989,38.689431406000054],[-76.32582151799994,38.67753413200013],[-76.34129295299991,38.67317293400008],[-76.34626217399995,38.68992747600007],[-76.34361731699994,38.71417877800015],[-76.3403214179999,38.728420315000065],[-76.33120683499993,38.74591705900012],[-76.31163489499994,38.804266669000114],[-76.30654863199992,38.814357815000065],[-76.30467688699986,38.82273997600013],[-76.2772517569999,38.84088776200003],[-76.26034613699991,38.85804600200005],[-76.2531688869999,38.85500277800007],[-76.25955948999983,38.83921520300011],[-76.2393200789999,38.82207467500014],[-76.2210070409999,38.815277173000126],[-76.2124257239999,38.80763666100013],[-76.21210285899991,38.78824497600009],[-76.19843706499994,38.776205481000105],[-76.18359563399986,38.76438358500012],[-76.17311053799989,38.75661244400008],[-76.14391028599997,38.768133856000176],[-76.13145911399994,38.772894598000065],[-76.11754309799997,38.78506094000015],[-76.10903886599993,38.80072663000011],[-76.11290442599994,38.81655508000007],[-76.12633216099994,38.80072663000011],[-76.14683997299989,38.79035065300003],[-76.17696703599995,38.78555069800008],[-76.19437640599995,38.81391775499999],[-76.18816738499993,38.846690832000135],[-76.15699780399987,38.86012378400001],[-76.12706458199996,38.866034247000115],[-76.10606848899994,38.877997137000065],[-76.14785722599996,38.89154694200003],[-76.15444902299993,38.89533112200003],[-76.14732825399997,38.91592031500006],[-76.14834550699993,38.924953518000095],[-76.16128495999993,38.926418361000124],[-76.16441809799991,38.920599677],[-76.17178300699993,38.89691803600006],[-76.1783748039999,38.89166901200018],[-76.19788293499991,38.87845590700009],[-76.1950577459999,38.91217682500003],[-76.19277910099996,38.92829010600012],[-76.19690550099995,38.93564809400006],[-76.20795336399996,38.94404569800015],[-76.22992004999992,38.95234429500012],[-76.24327551999995,38.95062897300012],[-76.24718176999997,38.951157945000105],[-76.25544186099995,38.94383372600011],[-76.26276607999995,38.93537018400015],[-76.26374264199984,38.93260325700011],[-76.27375240799992,38.927883205000015],[-76.28050696499986,38.9266625020001],[-76.31126868399994,38.924627997000144],[-76.31932532499987,38.922674872000115],[-76.32884680899988,38.916489976000136],[-76.33189856699997,38.90696849200005],[-76.33198228799995,38.895480098000014],[-76.32706272699997,38.88095785100016],[-76.3283639839999,38.8651561810001],[-76.34693096999985,38.85645441399999],[-76.35924134199985,38.846602146000166],[-76.37474792699989,38.84157322300008],[-76.36631666799988,38.89632077700012],[-76.35628535199987,38.948639309],[-76.33885657499984,38.97760651200009],[-76.33576412699998,38.985012111000074],[-76.32209225199992,39.006415106000034],[-76.31529700399992,39.02936432500012],[-76.30638587099986,39.031317450000145],[-76.29503333199987,39.02765534100011],[-76.29326195799987,39.00877050900006],[-76.2851447089999,38.98942810700008],[-76.24438602299992,38.978904315000094],[-76.21621400899988,38.97431936800017],[-76.19756143099997,38.97933988100009],[-76.16787675699993,38.996323960000055],[-76.15099036399994,39.00910065300012],[-76.14704342399993,39.02948639500009],[-76.15489661399994,39.03367747600011],[-76.16087805899994,39.03974030200011],[-76.16519120999993,39.04751211100002],[-76.16812089799987,39.05670807500009],[-76.1446020169999,39.060126044000086],[-76.13341223899991,39.062933661000145],[-76.14085852799987,39.069769598000065],[-76.12165279899992,39.09247467700011],[-76.07721920499989,39.128363348],[-76.0650935539999,39.1461449240001],[-76.08779863199996,39.13865794500013],[-76.10899817599994,39.12592194200006],[-76.13052324099996,39.11782461100013],[-76.15444902299993,39.124416408000016],[-76.14085852799987,39.13182200700011],[-76.14085852799987,39.13865794500013],[-76.17511959499984,39.124090887000094],[-76.18512196899985,39.094164026],[-76.20391098799988,39.080235820000084],[-76.21246106599996,39.05179149800007],[-76.20762505099987,39.02981223400006],[-76.20420624399989,39.014533238000084],[-76.21721167699994,39.01311396400017],[-76.23487647499985,39.024751929000146],[-76.24261805099994,39.033259639],[-76.2311093599999,39.05827591800015],[-76.23571756699991,39.09820819300013],[-76.24304552899986,39.115753230000095],[-76.24259740899988,39.12678339600002],[-76.25144557199988,39.13260406800008],[-76.27268577799995,39.15155166500007],[-76.27262804099988,39.16799207200002],[-76.2558610399999,39.18853605500014],[-76.23409171599994,39.23044934400015],[-76.21280778299987,39.26196686800016],[-76.18057206899988,39.28807200700005],[-76.17861894399994,39.30784739800008],[-76.17495683499986,39.316229559000035],[-76.16486568899992,39.323309637000094],[-76.14293372299989,39.32664622600011],[-76.13341223899991,39.330471096000124],[-76.12779700399989,39.338527736000074],[-76.11998450399992,39.360174872000144],[-76.1166072259999,39.364650783000044],[-76.10536229399995,39.3720478150001],[-76.0596059499999,39.36962890300008],[-76.02785773899993,39.36244533600016],[-75.99963920799985,39.36221674100007],[-75.93149284799992,39.3649844160001],[-75.88567609999987,39.36252861200005],[-75.86009265399986,39.36178451500011],[-75.8391820949999,39.371486721000124],[-75.86401713799994,39.37959549100013],[-75.90470570499991,39.37428341800007],[-76.00659669899987,39.380548214],[-76.03426463199985,39.39287729700013],[-76.01390540299985,39.416164455],[-75.9739477199999,39.45083242400007],[-75.95197506399997,39.46580638200011],[-75.93472245999988,39.474514065],[-75.91246497299993,39.47638580900015],[-75.86611894399996,39.464300848000065],[-75.8391820949999,39.46076080900018],[-75.8391820949999,39.46698639500015],[-75.86876380099994,39.48065827000009],[-75.88402258999992,39.49225495000009],[-75.89378821499986,39.508612372000115],[-75.86913001199986,39.51947663],[-75.85130774599989,39.53839752800012],[-75.83926347599986,39.56146881700008],[-75.83169511599993,39.58437734600007],[-75.85602779899989,39.57737864799999],[-75.87340247299997,39.56289297100015],[-75.88914954299992,39.545477606000176],[-75.9049309429999,39.52153168100013],[-75.96605236399989,39.48173152100016],[-76.00071297299988,39.452790123000156],[-75.99966386599993,39.48550039300015],[-75.99063066299993,39.50446198100015],[-75.96548417899996,39.5328636740001],[-75.95466061099995,39.54808177300008],[-75.94684811099998,39.56537506700006],[-75.93472245999988,39.604193427],[-75.95103919199991,39.60101959800012],[-75.96255449099993,39.590765692],[-75.9791560539999,39.56728750200013],[-76.00835039299997,39.54868700800016],[-76.0382065629999,39.556620648000134],[-76.06479622599991,39.5556349860001],[-76.08299719999988,39.557806708000115],[-76.09239661399988,39.55019765800007],[-76.12035071499992,39.49494049700017],[-76.10973059799989,39.485012111000074],[-76.07306881399995,39.47508372600008],[-76.0650935539999,39.47077057500014],[-76.06753495999993,39.457831122000144],[-76.07412675699993,39.44879791900014],[-76.12242591099992,39.4110375020001],[-76.18370520699995,39.383002020000085],[-76.20970618399994,39.364650783000044],[-76.2259008449999,39.37783437700007],[-76.22960364499994,39.39752838700012],[-76.22276770699992,39.44033437700001],[-76.21613521999987,39.45937734600001],[-76.21580969999994,39.46759674700009],[-76.22276770699992,39.474514065],[-76.23249264199987,39.474514065],[-76.24014238199989,39.46702708500013],[-76.24681555899986,39.45823802300008],[-76.25316321499989,39.45400625200012],[-76.26683508999992,39.378851630000135],[-76.25267493399991,39.36151764500014],[-76.24522864499991,39.34955475500011],[-76.24665279899989,39.34414297100007],[-76.25401770699989,39.34007396000011],[-76.28416907499991,39.31061432500003],[-76.29165605399987,39.35712311400006],[-76.31151282499987,39.402777411],[-76.32518469999991,39.407660223000065],[-76.40147864499997,39.392523505000085],[-76.38556881399995,39.38226959800015],[-76.3580623039999,39.37710195500013],[-76.33665930899986,39.369208075000174],[-76.33885657499984,39.350978908000094],[-76.33263098899991,39.350978908000094],[-76.34166419199991,39.34048086100001],[-76.3516332669999,39.33820221600014],[-76.36237545499992,39.33722565300017],[-76.37360592399992,39.330471096000124],[-76.36652584499987,39.31732819200009],[-76.36913001199986,39.31317780200014],[-76.42446855399993,39.323675848],[-76.43081620999988,39.318101304],[-76.42345130099997,39.30565013200008],[-76.39049231699991,39.271551825000174],[-76.39118404899995,39.2648786480001],[-76.40147864499997,39.25600820500007],[-76.41690019399991,39.26398346600003],[-76.42593339799988,39.27374909100014],[-76.44249426999997,39.29694245000009],[-76.45067298099988,39.30206940300012],[-76.48346920499989,39.31061432500003],[-76.46776282499991,39.28290436400014],[-76.44774329299986,39.2567406270001],[-76.4215388659999,39.238348700000145],[-76.39686504599987,39.237981451000124],[-76.4027703589999,39.22781648400009],[-76.43196655499995,39.2059363070001],[-76.44917786799991,39.1949568860001],[-76.44855949899988,39.20843506700008],[-76.44523877699993,39.21790485000015],[-76.4553116529999,39.220160223000065],[-76.46300208199992,39.21381256700012],[-76.46947010899987,39.20754241100012],[-76.48250897399993,39.20738802400014],[-76.49731559799989,39.20855739500016],[-76.49246779699988,39.227464775000136],[-76.50829780399994,39.236026734000134],[-76.53199568099988,39.24583957200018],[-76.56457286999988,39.26496419000007],[-76.57081758399994,39.27363755100008],[-76.58116614499988,39.26732005400005],[-76.59105383999989,39.26349518400003],[-76.61656653599988,39.262193101000136],[-76.62319902299996,39.25971100500011],[-76.61046301999991,39.254461981000034],[-76.60259274399994,39.24832419100015],[-76.5858455069999,39.24852122600002],[-76.5702762679999,39.244692263],[-76.56390222699991,39.23130365500005],[-76.56359011899994,39.21581964800011],[-76.53652017099998,39.21144388300017],[-76.5302674489999,39.20344150800018],[-76.5282893289999,39.19134512300003],[-76.5246725319999,39.18465701700008],[-76.5175621549999,39.17666312900008],[-76.49998938699986,39.164862372000144],[-76.4937927099999,39.16146994800012],[-76.4800020369999,39.16702304300004],[-76.46933492599986,39.15503170700007],[-76.44102942599991,39.135158596000124],[-76.43328271499985,39.13121841600018],[-76.43022676999996,39.10633423200012],[-76.41950640099988,39.089620823000146],[-76.42530667199992,39.07405296400018],[-76.43299394699994,39.06722400200012],[-76.44357155099993,39.07652779400014],[-76.4432673819999,39.08869049700008],[-76.45592200399994,39.09072500200001],[-76.4691462879999,39.083441473],[-76.47837557499987,39.08082559200001],[-76.49743287599992,39.07857220699999],[-76.51320994299996,39.08645847100014],[-76.51927602399985,39.08570868300002],[-76.51647656899988,39.075635855000044],[-76.4998490539999,39.068428057000105],[-76.47632745899996,39.06400332200008],[-76.42913332899991,39.045707992000146],[-76.40991030299992,39.037846908000134],[-76.39419511599993,39.02456289300012],[-76.39854895699995,39.01439036700016],[-76.4151912099999,39.009955145],[-76.43871008999994,39.00897858300014],[-76.44595292899987,39.00519440300012],[-76.45556993399987,38.98873483000007],[-76.47265600699987,38.99512980100012],[-76.51194242699998,39.021963273000054],[-76.52461828599994,39.0453920500001],[-76.5395914579999,39.06406854500007],[-76.5516658189999,39.07721588700004],[-76.56354732999995,39.07428620000003],[-76.56916256399995,39.06639232000005],[-76.5685115229999,39.05609772300012],[-76.57118725199987,39.038643620000144],[-76.56158720999986,39.036066782000105],[-76.5432939989999,39.03158071799999],[-76.53095547699988,39.021635731000124],[-76.51250577499984,39.00572536700015],[-76.48615753599991,38.98652514000004],[-76.47640413599991,38.97520227700012],[-76.46992856899988,38.95373978700003],[-76.45242672599993,38.94386071100003],[-76.46519340399995,38.93293528700003],[-76.45961237899985,38.91213660300009],[-76.50144090299987,38.927118559000164],[-76.52529264599985,38.95105849500005],[-76.55748153699989,38.95873872100013],[-76.56860769999986,38.952541830000044],[-76.53490149599989,38.93764883000012],[-76.52440344999991,38.926418361000124],[-76.51239921899992,38.912852827],[-76.49310077199993,38.898950019000054],[-76.4961973019999,38.88006341100014],[-76.50742147799991,38.87925578300009],[-76.5214073269999,38.887166072000106],[-76.53746497299989,38.89166901200018],[-76.5365291009999,38.887396552000084],[-76.5353083979999,38.884466864000146],[-76.53062903599988,38.877997137000065],[-76.52368451899994,38.87030178900006],[-76.52697000799992,38.8615053480001],[-76.5389914449999,38.856641417],[-76.53172223099992,38.83922899800011],[-76.52227894299989,38.84271357800013],[-76.50588195099989,38.84426207900015],[-76.4929157219999,38.84441978900015],[-76.49428786799993,38.82554643100018],[-76.50377356699988,38.80756256700015],[-76.53065552299995,38.78331591199999],[-76.5516658189999,38.77558014500014],[-76.5502823559999,38.755113022999986],[-76.53888912699995,38.737697658000016],[-76.52152766199993,38.72489274800013],[-76.52707755699993,38.70264341600015],[-76.5295344669999,38.675760092000175],[-76.5215617909999,38.65017173200012],[-76.50914869799993,38.62813940500014],[-76.51219641799995,38.571478583000086],[-76.51197731899993,38.52773391000015],[-76.49550060199991,38.49601804700008],[-76.43550368399985,38.43822384300002],[-76.41398220899987,38.41233645800013],[-76.3960568869999,38.39127517600009],[-76.38190497699992,38.38457465100011],[-76.39276441299995,38.35356984800008],[-76.41935918799987,38.321705733],[-76.45356256599987,38.324052805000136],[-76.47130391399989,38.33550159800008],[-76.4691462879999,38.36408112200017],[-76.4739477199999,38.373277085000055],[-76.47496497299994,38.379584052],[-76.47671464799996,38.38515859600001],[-76.48346920499989,38.392035223],[-76.50011145699995,38.400091864000146],[-76.51134192599994,38.403998114000146],[-76.54283606699994,38.40961334800015],[-76.5616402849999,38.42421509500009],[-76.6024560889999,38.44433453600008],[-76.63647493999991,38.47416340600016],[-76.64769938699993,38.50568347299999],[-76.6717830069999,38.65444570500007],[-76.68146725199995,38.679388739000025],[-76.68407141799986,38.672552802],[-76.68285071499994,38.664740302],[-76.68423417899993,38.65326569200006],[-76.67882239499988,38.58038971600003],[-76.67467200399994,38.55841705900009],[-76.67520097599993,38.53534577000015],[-76.6759167919999,38.50943336000002],[-76.67364396999997,38.4860578640001],[-76.65705066599989,38.45048718100004],[-76.61974036399992,38.42332591400016],[-76.5858455069999,38.39887116100011],[-76.52131100199992,38.37421295800014],[-76.51073157499988,38.36782461100002],[-76.50609290299985,38.34955475500014],[-76.4938044909999,38.3298200540001],[-76.47638912699992,38.312892971000124],[-76.45063396799993,38.29314052000014],[-76.4323033099999,38.294039673],[-76.42458045499987,38.301669697000094],[-76.40636145699992,38.308294989],[-76.38578305699991,38.306302981000115],[-76.37338215299987,38.298892537000185],[-76.3871206149999,38.28296113300014],[-76.39645510699998,38.267076257000056],[-76.39329993399984,38.24599844],[-76.38727779899995,38.22695547100001],[-76.38048255099991,38.21938711100016],[-76.36008870499998,38.19471059400017],[-76.33410617399991,38.16337546300014],[-76.32050662699993,38.13877612100005],[-76.33083109899991,38.12905995600012],[-76.34030484999997,38.12072674000002],[-76.33263098899991,38.090318101000136],[-76.32804803899994,38.07614873500015],[-76.3260518859999,38.06378563700004],[-76.32389659699993,38.043842087000044],[-76.33634136199993,38.05337336100014],[-76.35128354399993,38.05735794400006],[-76.3959152459999,38.10299431800002],[-76.41525725499994,38.10829877800016],[-76.4340862679999,38.132142561000094],[-76.4267502989999,38.15899749100013],[-76.43358313699994,38.19033437700009],[-76.45612545499992,38.20701732000013],[-76.45523027299993,38.19790273600013],[-76.44994055899986,38.182806708000115],[-76.44871985599994,38.175970770000035],[-76.45091712099992,38.16620514500006],[-76.45579993399988,38.15827057500012],[-76.46080481699994,38.15232982],[-76.46886145699996,38.139105536000145],[-76.48216712099989,38.14614492400001],[-76.50389563699986,38.166001695000105],[-76.51012122299991,38.14008209800012],[-76.5171606109999,38.13178131700015],[-76.53062903599988,38.13873932500003],[-76.53237870999988,38.14740631700012],[-76.54032224999986,38.159773202000096],[-76.54780727799994,38.18369902000016],[-76.56296942599991,38.19861049100017],[-76.58766261999997,38.21064593500016],[-76.61674290499991,38.22330649500019],[-76.64383524099986,38.22500806900011],[-76.67809103299993,38.23483531699999],[-76.69736408199986,38.23800295300008],[-76.75472485099993,38.22760231100007],[-76.77764589299991,38.2375566970001],[-76.80420984699994,38.253622573000044],[-76.80101477799991,38.276312567],[-76.80858313699986,38.289740302],[-76.81175696499992,38.299221096000096],[-76.81558183499993,38.33633047100001],[-76.82762610599994,38.36286041900014],[-76.84898841099991,38.38251373900011],[-76.88068600199995,38.39887116100011],[-76.85594641799989,38.35521067900014],[-76.84609941299995,38.330877997000144],[-76.83910071499989,38.302639065],[-76.83921565699988,38.25721682600009],[-76.8657674209999,38.27189781800003],[-76.89572619899988,38.28240633800008],[-76.92217430599989,38.291593193],[-76.9236395959999,38.31488059900009],[-76.94853600999988,38.33094553200006],[-76.97337678199987,38.34426377700005],[-76.9866835319999,38.37072035200008],[-77.01402049599994,38.441629492000075],[-77.02158187399993,38.461395300000035],[-77.03156490799995,38.48139069200012],[-77.03237870999996,38.471625067],[-77.03490149599989,38.46271393400015],[-77.03888912699995,38.45433177299999],[-77.04454505099994,38.446600653000175],[-77.06012936099992,38.428534247000144],[-77.07323157499991,38.42084381700015],[-77.09463716799989,38.408720077000126],[-77.10521984099995,38.411281588000136],[-77.10362708199997,38.43451569200009],[-77.10529537699998,38.44546133000012],[-77.09976152299987,38.45343659100011],[-77.09976152299987,38.460882880000085],[-77.10317949099988,38.46308014500006],[-77.10435950399989,38.46405670800014],[-77.10505123599992,38.465155341000084],[-77.1072485019999,38.467718817],[-77.12083899599988,38.461493231000034],[-77.13394120999996,38.45343659100011],[-77.12718665299991,38.45001862200009],[-77.1229548819999,38.44599030200011],[-77.1134333979999,38.43292877800015],[-77.13394120999996,38.39887116100011],[-77.14525305899994,38.388739325000174],[-77.1677953769999,38.380926825000174],[-77.17833411399988,38.37457916900014],[-77.20365121999995,38.364295392000045],[-77.23193138799988,38.37406835500015],[-77.25525856999985,38.393521921000016],[-77.26232470299993,38.42492664700008],[-77.2578599569999,38.45106121500011],[-77.2663949919999,38.47284419700016],[-77.26704148199991,38.49407954000018],[-77.25704941899988,38.51140764500003],[-77.24775826299995,38.52324490200005],[-77.23884029899997,38.53766510600011],[-77.22752844999991,38.556870835000055],[-77.20913001699995,38.555718346],[-77.18637350599991,38.556815084000064],[-77.16808020699995,38.576971747000115],[-77.17559712699992,38.578256890000134],[-77.18935896899993,38.569099363000035],[-77.20592691799996,38.566058662999986],[-77.2044365909999,38.57499805300013],[-77.19352446299987,38.59164737100015],[-77.18443762899997,38.60496653900013],[-77.17894446499994,38.60761139500012],[-77.17259680899991,38.60952383000007],[-77.16494706899988,38.61481354400014],[-77.15831458199992,38.61652252800015],[-77.13634192599989,38.615545966000084],[-77.12645423099988,38.61790599200005],[-77.12100175699993,38.62376536700016],[-77.11481686099997,38.64085521000011],[-77.10606848899991,38.657131252000156],[-77.10240637899994,38.673895575000174],[-77.09634355399996,38.682806708000115],[-77.08869381399992,38.68919505400014],[-77.08079993399986,38.69403717700011],[-77.06186901999989,38.69739253400009],[-77.04563801399988,38.70069637100006],[-77.03734193899992,38.69618618200012],[-77.02185853699991,38.695498175000026],[-77.01246689199994,38.69735546900013],[-77.01556179699995,38.70062965900014],[-77.02412582899983,38.69979051600008],[-77.03066952399993,38.70333104400011],[-77.03467768399992,38.708259924000075],[-77.03015987099985,38.71569801700018],[-77.02972946599996,38.731442541000106],[-77.02472896999993,38.740790106000084],[-77.01842200399989,38.74396393400015],[-77.0111614649999,38.74382480600009],[-77.01168007199993,38.74716555100012],[-77.0195333759999,38.751720510000055],[-77.02433761899995,38.754652946000036],[-77.02806124499995,38.76530808700012],[-77.02621082899987,38.776392240000106],[-77.02122716999992,38.78283935200001],[-77.01799738699992,38.79059544900004],[-77.02114811499985,38.79590064700015],[-77.02738742699997,38.81990638400008],[-77.02149674899991,38.83672326700018],[-77.01784128299988,38.84517956000015],[-77.01593218299985,38.85427948400017],[-77.01957771399995,38.86127460200011],[-77.02593476299994,38.87259409400012],[-77.03607145099997,38.87982307300014],[-77.04963097799993,38.88831238400008],[-77.0600839439999,38.89906786200014],[-77.06833279099993,38.901937596000074],[-77.06368700499985,38.89125519100004],[-77.05181463899996,38.88109293800015],[-77.0452433799999,38.87619292500007],[-77.03901702099995,38.86826989000018],[-77.03495131199992,38.860972798000105],[-77.0330392429999,38.85397047700009],[-77.0328010229999,38.84526666600006],[-77.0369521079999,38.83984020100014],[-77.04382133499993,38.839392799000066],[-77.04327971899997,38.8353826970001],[-77.04004880799988,38.82739897700007],[-77.03757137699989,38.81505040500009],[-77.03835368999995,38.79628277500014],[-77.04295954499995,38.79185294299999],[-77.04974816999996,38.78872653400013],[-77.0526170979999,38.78365520900009],[-77.04769389599988,38.776368119000054],[-77.0465894489999,38.76768574900002],[-77.0447518419999,38.747972456000085],[-77.04252727099987,38.728907994000096],[-77.04777148799991,38.71572353400016],[-77.0699562559999,38.71066383200012],[-77.08922278599991,38.710394598000114],[-77.09935462099986,38.70685455900015],[-77.10944576699993,38.70750560100011],[-77.11725826699993,38.706244208],[-77.12401282499985,38.687201239],[-77.13103570699988,38.67719140600011],[-77.1424037759999,38.67699358300008],[-77.14905433899986,38.68572708000006],[-77.1582970959999,38.69162754200015],[-77.16778581699992,38.68895869300003],[-77.16933326599988,38.67933656000006],[-77.15429624799987,38.66364943800009],[-77.13799641099993,38.65043694700013],[-77.13486514299991,38.636283075],[-77.16292462399988,38.63152924900005],[-77.18716395199993,38.62079952800009],[-77.2008886479999,38.62375063800003],[-77.20928749399991,38.63105833600018],[-77.20497320099992,38.638949803000045],[-77.19542395699992,38.65574778900016],[-77.20177161399992,38.66502513200014],[-77.21589107999989,38.66494375200015],[-77.22988847599996,38.65668366100006],[-77.23631751199986,38.64179108300011],[-77.23936926999994,38.626410223000065],[-77.24742591099987,38.60927969000012],[-77.25865637899989,38.59393952000009],[-77.27171790299988,38.583807684000035],[-77.26695716099995,38.58075592700014],[-77.2629288399999,38.57453034100017],[-77.25804602799992,38.56952545800014],[-77.27647864499997,38.55927155200011],[-77.28477942599994,38.55646393400015],[-77.28477942599994,38.549017645000085],[-77.28734290299985,38.53017812700012],[-77.3053837979999,38.50215255000013],[-77.32659247499993,38.450933675000144],[-77.31425003899994,38.4061286230001],[-77.33470037399985,38.416707976000154],[-77.35182853099988,38.43282503600009],[-77.3587162399999,38.42926496400004],[-77.35022518199989,38.409553772],[-77.32337920799989,38.390187873],[-77.30905564699995,38.379491343000055],[-77.2973575389999,38.368742998000165],[-77.29077998099984,38.35378462600009],[-77.30216002399986,38.35426063700014],[-77.32389720299994,38.350424368000134],[-77.34307049299989,38.348691042000084],[-77.33851124999987,38.342610785000076],[-77.29213146699993,38.340737020000105],[-77.24897884699996,38.32988472900003],[-77.18541419199993,38.34357330900003],[-77.16673743399986,38.34788646000011],[-77.13353430899986,38.367132880000085],[-77.08564958099993,38.3684115],[-77.0584610669999,38.39419179900001],[-77.0408410579999,38.39590995500008],[-77.02036988899994,38.384585805000036],[-77.01478062799987,38.372328363000165],[-77.0169548479999,38.355142367000084],[-77.01400054399988,38.343524214000134],[-77.0144750639999,38.330511786000145],[-77.02299704899988,38.320051459000084],[-77.03886288799988,38.32254888400014],[-77.05203570499995,38.32302757500004],[-77.0527383079999,38.31684240300014],[-77.03859389799993,38.31294738700011],[-77.0301315149999,38.30768206200018],[-77.0004762339999,38.27730818300013],[-76.97492428299995,38.270697333],[-76.96544348899994,38.2672386740001],[-76.95981920999989,38.26014250500013],[-76.95511819099997,38.24718598700004],[-76.9565685849999,38.235503717000036],[-76.96136630299992,38.218281619],[-76.95417122099985,38.21016771800011],[-76.91286789099985,38.199167541000165],[-76.88177320699995,38.177026676000175],[-76.83003302499986,38.16546883700009],[-76.79698102099994,38.16940490700016],[-76.77512473299996,38.166985947000015],[-76.7564184239999,38.16095612200008],[-76.75035559799991,38.14838288],[-76.73932857999998,38.136704820000105],[-76.71519934799994,38.14191315300009],[-76.69147701699987,38.15314362200009],[-76.68146725199995,38.15924713700017],[-76.6700333319999,38.15741608300003],[-76.66193600199989,38.15289948100015],[-76.65510006399994,38.147894598],[-76.64732825399996,38.144964911],[-76.63536536399994,38.14500560099999],[-76.61461341099994,38.15037669500013],[-76.60716836099988,38.143451553000105],[-76.60144412899993,38.13253912400013],[-76.60715299099985,38.11295678900011],[-76.5953167499999,38.105068056],[-76.58126674299984,38.097602095000084],[-76.56113511599995,38.089453468],[-76.53442335799994,38.07517082300013],[-76.52871421099991,38.06425600800016],[-76.52074133999986,38.05280182500011],[-76.5331111319999,38.04266998900006],[-76.53189042899987,38.03872304900007],[-76.53062903599988,38.02513255400011],[-76.52562415299994,38.02269114799999],[-76.50448229099989,38.023635889],[-76.48513499299986,38.021790564000085],[-76.47052741299987,38.016265823000126],[-76.46307132399997,38.01491766200003],[-76.4544164699999,38.00617096600011],[-76.46178137899992,38.002346096000096],[-76.4691462879999,38.00096263200011],[-76.45864824099993,37.99555084800006],[-76.4081801199999,37.969616697],[-76.37303626199994,37.960598049000154],[-76.29124166899987,37.92499680800013],[-76.26200253899992,37.914303811000096],[-76.2479088989999,37.90347101300016],[-76.24245344099988,37.881594977000034],[-76.23582923099991,37.85960521000011],[-76.23961341099991,37.83608633000007],[-76.25007076699988,37.822821356000034],[-76.26789303299998,37.824448960000055],[-76.29938717399989,37.85089752800006],[-76.31525631399991,37.85761139500009],[-76.32485917899989,37.84870026200015],[-76.31786048099991,37.828802802000055],[-76.29784094999985,37.796128648000106],[-76.29385331899996,37.7806664080001],[-76.2940974599999,37.77142975500014],[-76.29784094999985,37.761379299000154],[-76.30467688699986,37.74774811400012],[-76.30915279899992,37.74640534100003],[-76.31602942599994,37.74774811400012],[-76.32237708199997,37.748277085],[-76.32518469999991,37.744330145],[-76.31704667899989,37.732245184000085],[-76.28551184799991,37.71092357000013],[-76.28416907499991,37.699286200000024],[-76.29222571499994,37.694566148000106],[-76.30370032499988,37.69403717700014],[-76.31566321499992,37.696112372000144],[-76.32518469999991,37.699286200000024],[-76.31973222599987,37.68549225500011],[-76.32530676999988,37.67951080900009],[-76.33413652299996,37.67576732000008],[-76.33885657499984,37.668890692000055],[-76.33543860599985,37.65912506700012],[-76.32111568899995,37.64398834800012],[-76.31786048099991,37.63719310100002],[-76.30467688699986,37.63788483300014],[-76.32111568899995,37.62400950700005],[-76.34943600199992,37.62799713700004],[-76.40465247299991,37.64468008000007],[-76.40880286399997,37.64996979400014],[-76.41930091099994,37.66010163],[-76.43008378799993,37.66689687700013],[-76.43504798099988,37.66176992400001],[-76.43862870999996,37.662909247000144],[-76.44644120999996,37.670843817000026],[-76.45376542899996,37.683539130000085],[-76.45612545499992,37.69245026200012],[-76.46890214799996,37.70864492400007],[-76.4786677729999,37.69505442900011],[-76.48961341099997,37.658351955],[-76.50499426999991,37.65692780200014],[-76.51691646999984,37.66893138200005],[-76.52391516799992,37.68789297100007],[-76.52440344999991,37.699286200000024],[-76.53551184799994,37.715521552000084],[-76.57135982999995,37.75128815300009],[-76.57900956899988,37.77130768400014],[-76.58348548099994,37.777289130000085],[-76.61314856699988,37.796128648000106],[-76.61778723899991,37.80385976800012],[-76.62193762899994,37.813910223],[-76.62857011599989,37.818426825000145],[-76.64049231699994,37.80914948100009],[-76.64956620999992,37.81305573100009],[-76.65782630099993,37.818996486000046],[-76.66266842399992,37.828517971000124],[-76.66152910099987,37.84332916900008],[-76.67414303299995,37.832993882],[-76.68765214799993,37.831610419000114],[-76.70091712099986,37.836900132],[-76.71275794199991,37.84707265800013],[-76.75035559799991,37.8951683610001],[-76.7695282819999,37.91449625500003],[-76.8322619349999,37.94297216100007],[-76.85029535699992,37.98195834100012],[-76.88006845599992,37.99095692700011],[-76.89573717999988,38.0073088220001],[-76.91539466099994,38.06989166900014],[-76.9349666009999,38.09369538000006],[-76.94709225199988,38.10333893400012],[-76.96263587099989,38.11082591400019],[-77.00743567599991,38.118109442],[-77.01720130099997,38.11701080900015],[-77.02660071499989,38.12885163000011],[-77.03620357999996,38.14520905200014],[-77.04759680899994,38.15981679900015],[-77.06257076699987,38.166001695000105],[-77.10716712099995,38.174953518000144],[-77.12588456899991,38.176011460000026],[-77.13394120999996,38.166001695000105],[-77.12669837099992,38.15546295800006],[-77.10944576699993,38.14899323100015],[-77.07591712099989,38.144964911],[-77.06314042899993,38.14984772300006],[-77.0554906889999,38.149644273000106],[-77.05199133999992,38.141831773000106],[-77.05089270699996,38.12885163000011],[-77.04735266799989,38.11896393400009],[-77.04100501199986,38.11102936400014],[-77.03156490799995,38.10394928600009],[-76.96056067599997,38.08958567900011],[-76.94896399599986,38.07977936400009],[-76.94469153599994,38.074530341000084],[-76.92589270699989,38.05882396000011],[-76.92170162699998,38.05280182500011],[-76.92641478799993,37.99671646100013],[-76.92261368099994,37.98083340900003],[-76.90579802099992,37.97579176600006],[-76.89171301999991,37.97431061400009],[-76.88023841099997,37.96967194200006],[-76.87744594599992,37.95636330100014],[-76.86592043299991,37.941977236000085],[-76.84703528599994,37.92894114799999],[-76.83116614499991,37.918361721000124],[-76.81645591599994,37.9035519990001],[-76.79528641399986,37.89195732400016],[-76.78789005799985,37.88323062500011],[-76.77780084199995,37.862091024],[-76.76689075299988,37.84204041900013],[-76.75267506299991,37.82262623500016],[-76.74173030999992,37.809965091],[-76.72911959799983,37.799465396000144],[-76.71624453799993,37.788097022000116],[-76.70303453899993,37.786955171000145],[-76.68797766799986,37.78949616100006],[-76.68399003799988,37.78925202],[-76.67992102799991,37.78969961100002],[-76.67520097599993,37.788723049000126],[-76.67442786399991,37.785101630000085],[-76.67601477799992,37.771877346000124],[-76.67520097599993,37.768215236000074],[-76.66865875499985,37.755501546000104],[-76.63193552799993,37.75042788300006],[-76.61340052099983,37.73953901000009],[-76.60172229299994,37.71965033900001],[-76.57998613199996,37.69818756700009],[-76.57900956899988,37.69586823100012],[-76.57721920499989,37.688177802],[-76.57402998099988,37.673245908000084],[-76.5708052519999,37.6532445160001],[-76.55198222899989,37.62675763600005],[-76.52222111899991,37.61488081300014],[-76.46349036399991,37.618557033000016],[-76.44302324099993,37.618597723],[-76.42821204299989,37.624212958],[-76.40428626199991,37.59418366100006],[-76.3675837879999,37.584214585000055],[-76.32526607999989,37.58063385600009],[-76.28416907499991,37.56956614800005],[-76.30190995999989,37.55792877800006],[-76.31924394399991,37.552923895],[-76.36611894399994,37.549058335],[-76.39297441299993,37.54218170799999],[-76.39338131399992,37.533148505000085],[-76.37767493399988,37.525213934000114],[-76.35651607999995,37.52179596600011],[-76.3226619129999,37.50128815300015],[-76.30125891799985,37.49384186400009],[-76.29165605399987,37.504380601000136],[-76.2898134679999,37.51940410499999],[-76.2700617,37.51735554800014],[-76.26277228399994,37.50292782600009],[-76.26390506699997,37.487302114000144],[-76.26764889199984,37.481024481000034],[-76.27721106699991,37.470445054],[-76.27741451699985,37.45970286700016],[-76.26740475199989,37.453192450000174],[-76.25572669199988,37.45327383000016],[-76.24453691299986,37.44953034100003],[-76.24463721199992,37.43058625700014],[-76.24544273699988,37.398187],[-76.2492064889999,37.36342859600002],[-76.25764013199995,37.33551034800003],[-76.28070376499988,37.321351358000115],[-76.29825126499986,37.33506919100013],[-76.31895911399995,37.370917059000114],[-76.32164466099994,37.386297919000135],[-76.33356686099998,37.38495514500006],[-76.34805253799993,37.37995026200004],[-76.36611894399994,37.38458893400015],[-76.39659583199989,37.42959219000015],[-76.41515051999991,37.44269440300012],[-76.42821204299989,37.41815827000009],[-76.41681881399992,37.41498444200012],[-76.40929114499994,37.407782294000086],[-76.40461178299992,37.39891185100005],[-76.40147864499997,37.39081452000012],[-76.4116918609999,37.39492422100006],[-76.4225154289999,37.39752838700015],[-76.43317623599992,37.396714585000055],[-76.44249426999997,37.39081452000012],[-76.4475805329999,37.37986888200005],[-76.44273841099991,37.37201569200006],[-76.41588294199993,37.35569896000014],[-76.40855872299991,37.353664455000015],[-76.40343176999991,37.349798895],[-76.40147864499997,37.33991120000009],[-76.40648352799991,37.33771393400009],[-76.43504798099988,37.32933177300005],[-76.43504798099988,37.32314687700007],[-76.4026586579999,37.325018622000144],[-76.39403235599988,37.32314687700007],[-76.38609778599991,37.31513092700014],[-76.37686113199996,37.30121491100006],[-76.3718969389999,37.288031317],[-76.37850494799989,37.272332388000116],[-76.45743016699996,37.261052619000125],[-76.49602940799986,37.24911484000013],[-76.5093524909999,37.269565839],[-76.54000710699992,37.29323577500004],[-76.55468049399985,37.30794505900012],[-76.56163489499991,37.32314687700007],[-76.57428951699987,37.32518138200011],[-76.58202063699989,37.330471096000096],[-76.64248613199989,37.409002997000115],[-76.65819251199986,37.41815827000009],[-76.68089758999989,37.42747630400014],[-76.70010331899994,37.44940827000006],[-76.72984778599997,37.49445221600003],[-76.78107662699992,37.53546784100014],[-76.79027258999989,37.53270091400016],[-76.79539954299987,37.52558014500012],[-76.79767818899995,37.51561107000013],[-76.79816646999987,37.504380601000136],[-76.7940974599999,37.498277085000055],[-76.78477942599994,37.49445221600003],[-76.77367102799994,37.49135976800015],[-76.76463782499991,37.487005927000055],[-76.7219945949999,37.42723216400019],[-76.69078528599991,37.41107819200012],[-76.67638098899994,37.39492422100006],[-76.65477454299993,37.36351146000014],[-76.60622363699989,37.295789101000096],[-76.5335264689999,37.2555046610001],[-76.50433652799984,37.23181378200003],[-76.46807337699994,37.21396628600009],[-76.4322987599999,37.2224239450001],[-76.4029841789999,37.23383209800015],[-76.38560950399994,37.232489325000145],[-76.37360592399992,37.220160223],[-76.3758031889999,37.21775950700008],[-76.37840735599991,37.20726146],[-76.38023841099988,37.194566148000135],[-76.37975012899987,37.18537018400014],[-76.37315833199992,37.17597077000012],[-76.36172441299996,37.16657135600012],[-76.35106360599994,37.16421133000016],[-76.34626217399995,37.175482489000146],[-76.31725012899994,37.15949127800015],[-76.29820716099997,37.14459870000009],[-76.29165605399987,37.13011302300004],[-76.30321204299992,37.12592194200011],[-76.32559160099993,37.114081122000144],[-76.33861243399991,37.10171133000004],[-76.32209225199992,37.095933335000055],[-76.28160559799991,37.10415273600016],[-76.27037512899992,37.09764232000007],[-76.26988684799991,37.06928131700012],[-76.27452551999994,37.04804108300014],[-76.28294837099988,37.02822500200013],[-76.29621334499993,37.01357656500012],[-76.31525631399991,37.00787995000003],[-76.33971106699994,37.00739166900014],[-76.35704505099994,37.00482819200015],[-76.37144934799991,36.99852122600011],[-76.39952551999991,36.97833893400018],[-76.41543535099993,36.97256094],[-76.42918860599985,36.97630442900005],[-76.44029700399997,37.015773830000015],[-76.45299231699994,37.03017812700007],[-76.52394065099989,37.05766985000004],[-76.5460635679999,37.08940744800013],[-76.56319125899996,37.08575712800017],[-76.61118758299989,37.11944219200008],[-76.61859618099996,37.13078573100002],[-76.61998450399987,37.14443594000012],[-76.6108292309999,37.17255280200011],[-76.6173396479999,37.199164130000085],[-76.63402258999994,37.22068919499999],[-76.65477454299993,37.23383209800015],[-76.66930091099988,37.22711823100009],[-76.71080481699987,37.224025783000016],[-76.72984778599997,37.220160223],[-76.73521887899992,37.21320221600003],[-76.73875891799992,37.20331452],[-76.74376380099994,37.197495835000055],[-76.75377356699994,37.20307038000006],[-76.75845292899996,37.21124909100017],[-76.76207434799991,37.221421617000104],[-76.76667232999995,37.23012929900001],[-76.7742406889999,37.23383209800015],[-76.79181881399992,37.23696523600002],[-76.82896887899992,37.25104401200015],[-76.8428442049999,37.25429922100001],[-76.85558020699997,37.26243724200013],[-76.85741126199986,37.281887111000046],[-76.85631262899992,37.30467357000004],[-76.86021887899989,37.32314687700007],[-76.86986243399987,37.315497137000065],[-76.87352454299992,37.305161851000136],[-76.8731990229999,37.27846914300004],[-76.87816321499994,37.268988348],[-76.88923092399989,37.25918203300007],[-76.90802975199992,37.2474632830001],[-76.93146725199992,37.245266018],[-76.94395911399991,37.256048895],[-76.95303300699993,37.27362702000012],[-76.98192298099994,37.312404690000065],[-76.99054928299992,37.32025788000014],[-77.00357011599993,37.32314687700007],[-77.01451575399989,37.318752346000096],[-77.04552161399991,37.29840729400011],[-77.05199133999992,37.29181549700003],[-77.0554906889999,37.28717682500009],[-77.0628962879999,37.297023830000036],[-77.07017981699991,37.31028880400005],[-77.07249915299988,37.31635163000006],[-77.08275305899991,37.32440827000009],[-77.09105383999989,37.327826239],[-77.10033118399994,37.32709381700006],[-77.1134333979999,37.32314687700007],[-77.13442949099993,37.316880601000136],[-77.14443925699993,37.31635163000006],[-77.15526282499991,37.31834544499999],[-77.17267818899998,37.32733795800003],[-77.17833411399988,37.32933177300005],[-77.2200821609999,37.328517971000124],[-77.23497473899997,37.33417389500012],[-77.25059973899994,37.349839585],[-77.27794348899994,37.32933177300005],[-77.27432206899996,37.31635163000006],[-77.26488196499986,37.31118398600013],[-77.25511633999992,37.30927155199999],[-77.25059973899994,37.30609772300012],[-77.2395727199999,37.30866120000003],[-77.17491614499997,37.28839752800012],[-77.08922278599991,37.28839752800012],[-77.08332271999987,37.28327057500012],[-77.07616126199991,37.27326080900012],[-77.06712805899991,37.26650625200009],[-77.05540930899991,37.27138906500015],[-77.0252579419999,37.291978257],[-77.01720130099997,37.295233466000056],[-76.99518795499993,37.288072007],[-76.98615475199993,37.268988348],[-76.98167883999989,37.249172268],[-76.97321529899995,37.23997630400011],[-76.95067298099988,37.23517487200003],[-76.91356360599984,37.21283600500003],[-76.89370683499993,37.206488348000065],[-76.80186926999991,37.206488348000065],[-76.78770911399988,37.200100002000156],[-76.76280842099989,37.164255385000054],[-76.7396680379999,37.1565742850001],[-76.7179949779999,37.150013821000144],[-76.6891169909999,37.188625393],[-76.66997219299992,37.185007347000166],[-76.66628434099997,37.14729656500013],[-76.65533712499983,37.10512134700009],[-76.67314854399993,37.06713812700018],[-76.65974336199992,37.04331010800003],[-76.63816695199992,37.03902894600019],[-76.5716039699999,37.027736721000124],[-76.5716039699999,37.02147044499999],[-76.58120683499988,37.01585521],[-76.58409583199989,37.01373932500017],[-76.5858455069999,37.00787995000003],[-76.57966061099991,37.00397370000006],[-76.56647701699987,37.002915757],[-76.55793209499987,37.00043366100006],[-76.55109615799992,36.996649481000034],[-76.53746497299989,36.986761786000116],[-76.51354392299986,36.96518702200008],[-76.49472187499995,36.953985981000116],[-76.49290930899991,36.943426825000145],[-76.49103756399992,36.93317291900003],[-76.48159745999993,36.92153554900004],[-76.47598222599991,36.90790436400009],[-76.48192298099985,36.89858633000013],[-76.49583899599992,36.88735586100013],[-76.52440344999991,36.870672919000086],[-76.52440344999991,36.86322663000011],[-76.49738521999987,36.86522044500005],[-76.47598222599991,36.87518952000015],[-76.4565323559999,36.88788483300003],[-76.43504798099988,36.89801666900014],[-76.40884355399996,36.90204498900012],[-76.38068600199998,36.900620835000055],[-76.3540746739999,36.89435455900012],[-76.33263098899991,36.88373444200006],[-76.33495032499985,36.87181224200013],[-76.32481848899991,36.86050039300015],[-76.30833899599992,36.852240302000055],[-76.29165605399987,36.849554755000085],[-76.30996660099993,36.87042877800015],[-76.31773841099994,36.883530992000104],[-76.31525631399991,36.894598700000145],[-76.3010147779999,36.9116071640001],[-76.30626380099989,36.917629299000126],[-76.32836609999988,36.929285965000034],[-76.33042585399997,36.949787475],[-76.31001452599992,36.959612052000026],[-76.2689013479999,36.96141536700013],[-76.16877193899992,36.92841217700011],[-76.12598559999994,36.91625241700014],[-76.07811438699989,36.9116071640001],[-76.05579919699997,36.91824644200001],[-76.03546916199988,36.934849333],[-76.00459196599985,36.93235839800015],[-75.98893008999991,36.91195854200005],[-75.9602407909999,36.80675355900002],[-75.86343339799986,36.590562242000104],[-75.85309811099995,36.54901764500012],[-75.85285396999993,36.54791901200018],[-75.81187903599991,36.38344961100013],[-75.79698645699995,36.34284088700003],[-75.79238847599991,36.32217031500012],[-75.79076087099989,36.298081773000106],[-75.78636633999992,36.28196849200013],[-75.75723222599996,36.23261139500015],[-75.7142634759999,36.12982819200015],[-75.56395423099988,35.895331122000115],[-75.55394446499992,35.85366445500016],[-75.52383378799988,35.794378973000065],[-75.53160559799997,35.79840729400006],[-75.55125891799992,35.80512116100009],[-75.55797278599997,35.808661200000145],[-75.56065833199995,35.81561920800006],[-75.56041419199991,35.82469310100005],[-75.56163489499991,35.832586981000034],[-75.58360755099994,35.84381745000003],[-75.58946692599989,35.862046617000104],[-75.59215247299994,35.89744700700011],[-75.60700436099992,35.9238141950001],[-75.67536373599988,35.99990469],[-75.68154863199987,35.99990469],[-75.69448808499988,35.99355703300007],[-75.70978756399992,35.997788804],[-75.71947180899988,36.00999583500008],[-75.71568762899996,36.02716705900009],[-75.70742753799988,36.01650625200007],[-75.69896399599995,36.01496002800003],[-75.67536373599988,36.02094147300012],[-75.67979895699997,36.036688544000086],[-75.68716386599988,36.050034898000106],[-75.6969294909999,36.05560944200012],[-75.70885169199994,36.048285223],[-75.72354081899994,36.05882396000008],[-75.73078365799998,36.074896552000055],[-75.73558508999984,36.092962958000086],[-75.74299068899995,36.10976797100009],[-75.74299068899995,36.11652252800012],[-75.73863684799994,36.14118073100012],[-75.74901282499984,36.17161692900008],[-75.76317298099988,36.20123932500012],[-75.77367102799985,36.234035549000126],[-75.80166581899987,36.27903880400011],[-75.81529700399992,36.291245835],[-75.81847083199989,36.29677969],[-75.81700598899991,36.300238348],[-75.81383216099997,36.30174388200005],[-75.81187903599991,36.301499742000104],[-75.81867428299992,36.32884349200016],[-75.8248591789999,36.39427317900014],[-75.82811438699986,36.40753815300017],[-75.84215247299991,36.43203359600001],[-75.84536699099995,36.44920482000013],[-75.85968990799995,36.473456122000115],[-75.86709550699993,36.50755442900011],[-75.88084876199984,36.54254791900003],[-75.88011633999992,36.54791901200018],[-75.8806453119999,36.54926178600009],[-75.88573157499991,36.562445380000106],[-75.88390051999994,36.574042059000035],[-75.88023841099988,36.58470286700016],[-75.88011633999992,36.596340236000074],[-75.88402258999992,36.604478257],[-75.89561926999994,36.61676666900014],[-75.90062415299988,36.624253648000106],[-75.91766823899985,36.67966395000009],[-75.92788652299987,36.70620351800015],[-75.93517005099997,36.71210358299999],[-75.94688880099997,36.71845123900012],[-75.95783443899992,36.719427802],[-75.96271725199989,36.709295966000056],[-75.97569739499991,36.60626862200017],[-75.96825110599991,36.55166250200001],[-75.96690833199992,36.54979075700005],[-75.96198482999998,36.54295482000013],[-75.94981848899988,36.543361721000124],[-75.94298255099997,36.54962799700009],[-75.94220943899995,36.55036041900003],[-75.94904537699995,36.56159088700012],[-75.93224036399994,36.57037995000009],[-75.91429602799991,36.57587311400012],[-75.90896562399985,36.549424546000054],[-75.90880286399988,36.54865143400012],[-75.90807044199994,36.52122630400005],[-75.90534420499998,36.51190827000012],[-75.90111243399986,36.502875067],[-75.90111243399986,36.49603913],[-75.9112035799999,36.49331289300012],[-75.95213782499985,36.49331289300012],[-75.97288977799985,36.499701239000146],[-75.97667395699997,36.51382070500007],[-75.97842363199987,36.52789948100011],[-76.00658118399986,36.54181549700009],[-76.0132543609999,36.55015696800017],[-76.04458574099996,36.589504299000154],[-76.0439346999999,36.57575104400014],[-76.03990637899994,36.567328192],[-76.0348201159999,36.55955638199999],[-76.0317276679999,36.55027903900004],[-76.0309138659999,36.54791901200018],[-76.0309138659999,36.53587474200016],[-76.03693600199992,36.516750393],[-76.03718014199987,36.50079987200009],[-76.02904212099986,36.480292059000035],[-76.01170813699986,36.4605980490001],[-75.9898982409999,36.44379303600009],[-75.96825110599991,36.43252187700009],[-75.98582923099985,36.42527903900016],[-75.97370357999995,36.40106842700008],[-75.94871985599994,36.37518952000006],[-75.92788652299987,36.36359284100014],[-75.93687903599988,36.37221914300015],[-75.94310462099995,36.37958405200013],[-75.94688880099997,36.387518622000115],[-75.94904537699995,36.39769114800005],[-75.94538326699993,36.39695872600011],[-75.93907630099997,36.4086774760001],[-75.93130449099988,36.42869700700008],[-75.91856848899991,36.42934804900012],[-75.91637122299991,36.40265534100011],[-75.92174231699988,36.35675690300003],[-75.91283118399986,36.3412946640001],[-75.88044186099995,36.30068594],[-75.87336178299996,36.284735419000086],[-75.86994381399995,36.27220286700019],[-75.81615149599992,36.15615469000015],[-75.81187903599991,36.140773830000015],[-75.80402584499991,36.12132396000011],[-75.7903539699999,36.09926992400001],[-75.78551184799991,36.08161041900008],[-75.80443274599992,36.0755882830001],[-75.82115637899994,36.08266836100016],[-75.83796139199987,36.09780508000016],[-75.86339270699989,36.127101955000064],[-75.8683975899999,36.13666413000006],[-75.86644446499989,36.14545319200012],[-75.86204993399991,36.153713283],[-75.85968990799995,36.161566473],[-75.86221269399996,36.17177969000012],[-75.8680720689999,36.18301015800013],[-75.88011633999992,36.19912344],[-75.90257727799991,36.214300848000086],[-75.90807044199994,36.219631252000156],[-75.91030839799993,36.22614166900014],[-75.91104081899996,36.24038320500016],[-75.91429602799991,36.246893622000144],[-75.92845618399994,36.255275783000016],[-75.94298255099997,36.26044342700011],[-75.94823157499985,36.269110419000114],[-75.93472245999988,36.28782786700016],[-75.96174068899992,36.30695221600014],[-75.97655188699991,36.314032294000114],[-75.99620520699995,36.31517161700005],[-75.98717200399994,36.29987213700018],[-75.9761449859999,36.293036200000174],[-75.96666419199988,36.284369208000086],[-75.95836341099991,36.24677155200008],[-75.9510798819999,36.22760651200012],[-75.94969641799992,36.212062893],[-75.96271725199989,36.20595937700004],[-75.9371638659999,36.18504466400016],[-75.9230037099999,36.17682526200014],[-75.90807044199994,36.17182038000011],[-75.90807044199994,36.164984442],[-75.97887122299996,36.183172919000086],[-75.99962317599994,36.185451565000065],[-76.02041581899994,36.191473700000174],[-76.03746497299991,36.205796617000075],[-76.06167558499989,36.23631419500002],[-76.06965084499987,36.24152252800009],[-76.08779863199996,36.245591539000046],[-76.09609941299993,36.250637111000074],[-76.11359615799998,36.26732005400011],[-76.13341223899991,36.281683661],[-76.14948482999998,36.28896719],[-76.20225989499997,36.301499742000104],[-76.1934301419999,36.305812893],[-76.1861466139999,36.31293366100006],[-76.18610592399992,36.31964752800012],[-76.19884192599994,36.32265859600001],[-76.2085668609999,36.31712474200019],[-76.21739661399997,36.305243231000055],[-76.22215735599985,36.29328034100011],[-76.2193497389999,36.28782786700016],[-76.19676673099994,36.283392645],[-76.1743871739999,36.272650458],[-76.15485592399993,36.259182033000016],[-76.14085852799987,36.246893622000144],[-76.12474524599992,36.22313060100005],[-76.1144099599999,36.21112702000012],[-76.09015865799992,36.20058828300016],[-76.0802302729999,36.1771507830001],[-76.06851152299993,36.17182038000011],[-76.05736243399991,36.16876862200003],[-76.06346594999987,36.16201406500009],[-76.08556067599997,36.15070221600011],[-76.0970759759999,36.14728424700009],[-76.13341223899991,36.14447663000006],[-76.13341223899991,36.13703034100017],[-76.12657630099989,36.13703034100017],[-76.12657630099989,36.13080475500011],[-76.15807044199988,36.12982819200015],[-76.16812089799987,36.13080475500011],[-76.17796790299988,36.13401927300008],[-76.2093806629999,36.14972565300003],[-76.22618567599991,36.17275625200001],[-76.23265540299994,36.177964585],[-76.24176998599992,36.18097565300009],[-76.26988684799991,36.19912344],[-76.28526770699995,36.21181875200006],[-76.2919815749999,36.21271393400015],[-76.29165605399987,36.19912344],[-76.28722083199992,36.19037506700012],[-76.27912350199998,36.18146393400009],[-76.26927649599986,36.17454661700019],[-76.25999915299991,36.17182038000011],[-76.24864661399994,36.16339752800017],[-76.21385657499988,36.12323639500006],[-76.19542395699995,36.10976797100009],[-76.19542395699995,36.10350169500013],[-76.22012285099991,36.09951406500015],[-76.24449622299989,36.103949286000116],[-76.34943600199992,36.141994533000044],[-76.37743079299992,36.15623607000013],[-76.39403235599988,36.177964585],[-76.41038977799991,36.17430247600005],[-76.42772376199989,36.18301015800013],[-76.44542395699989,36.19619375200007],[-76.46300208199992,36.20595937700004],[-76.44994055899986,36.18260325700011],[-76.44237219999991,36.172308661000024],[-76.43504798099988,36.164984442],[-76.39915930899991,36.14862702000009],[-76.39403235599988,36.140773830000015],[-76.38312740799992,36.13011302300008],[-76.35789954299995,36.11737702000011],[-76.33014889199987,36.10700104400002],[-76.31151282499987,36.10350169500013],[-76.31151282499987,36.09609609600015],[-76.41173255099989,36.08295319200009],[-76.42821204299989,36.0755882830001],[-76.42821204299989,36.06810130400011],[-76.42491614499993,36.0677757830001],[-76.41454016799993,36.06810130400011],[-76.43594316299988,36.04816315300003],[-76.46764075399994,36.030910549000126],[-76.5003149079999,36.01862213700018],[-76.52440344999991,36.01349518400014],[-76.55870520699997,36.011419989000146],[-76.57725989499988,36.01239655200011],[-76.58926347599989,36.0172386740001],[-76.61754309799994,36.05369700700005],[-76.62682044199991,36.06195709800015],[-76.64366614499991,36.03839752800009],[-76.6666560539999,36.03839752800009],[-76.68700110599988,36.056097723],[-76.70103919199994,36.110541083],[-76.7245173819999,36.15534088700004],[-76.72984778599997,36.18170807500003],[-76.71617591099994,36.22638580900009],[-76.71080481699987,36.236761786],[-76.69652258999989,36.250433661000116],[-76.68887285099996,36.25991445500012],[-76.67955481699991,36.287543036000145],[-76.68834387899997,36.30516185100008],[-76.70759029899992,36.31586334800009],[-76.72984778599997,36.32265859600001],[-76.72370357999989,36.31110260600009],[-76.70567786399997,36.294134833000115],[-76.70197506399992,36.284735419000086],[-76.70421301999991,36.27155182500006],[-76.71007239499994,36.26337311400012],[-76.72614498599992,36.250637111000074],[-76.74290930899986,36.23163483300008],[-76.75230872299997,36.21401601800015],[-76.7564184239999,36.19330475500006],[-76.75719153599994,36.127101955000064],[-76.7539770169999,36.11611562700001],[-76.73989824099993,36.093329169000086],[-76.7335505849999,36.06509023600002],[-76.72606360599984,36.05621979400017],[-76.71711178299992,36.04913971600011],[-76.70933997299991,36.040838934000035],[-76.70665442599994,36.02879466400013],[-76.70738684799997,36.017157294000114],[-76.70396887899994,36.00885651200004],[-76.68887285099996,36.006659247000144],[-76.69497636599992,35.99249909100003],[-76.72984778599997,35.95270416900002],[-76.72984778599997,35.94525788000006],[-76.59162350199995,35.94472890800007],[-76.56533769399994,35.93842194200012],[-76.55793209499987,35.93842194200012],[-76.52562415299994,35.95514557500014],[-76.47301184799991,35.97235748900008],[-76.42023678299992,35.98126862200003],[-76.38727779899995,35.97313060100011],[-76.38316809799991,35.96312083500011],[-76.3844294909999,35.953070380000135],[-76.3870336579999,35.94440338700015],[-76.38727779899995,35.93842194200012],[-76.3801977199999,35.932033596],[-76.37303626199994,35.93496328300013],[-76.36436926999994,35.94135163000006],[-76.35313880099994,35.94525788000006],[-76.33165442599991,35.94183991100014],[-76.28921464799993,35.925848700000145],[-76.26374264199984,35.924750067],[-76.27696692599997,35.93748607000005],[-76.29792232999992,35.947211005],[-76.30679277299987,35.957831122000144],[-76.28416907499991,35.97313060100011],[-76.19542395699995,35.993638414000074],[-76.09984290299988,35.99990469],[-76.0759171209999,35.99502187700013],[-76.04832923099987,35.98371002800015],[-76.02936764199985,35.96869538000011],[-76.0309138659999,35.95270416900002],[-76.05308997299987,35.96263255400013],[-76.06403561099994,35.9532738300001],[-76.07192949099993,35.918524481000034],[-76.03766842399995,35.9291039080001],[-76.02354895699992,35.93158600500011],[-76.03246008999986,35.90965403900019],[-76.04588782499985,35.88861725500006],[-76.06358801999994,35.87368398600002],[-76.08556067599997,35.87010325700005],[-76.08556067599997,35.86326732000013],[-76.06314042899996,35.84804922100015],[-76.05113684799994,35.81924062700001],[-76.05630449099993,35.793402411],[-76.08556067599997,35.78693268400009],[-76.11245683499993,35.794582424000126],[-76.12417558499993,35.794582424000126],[-76.1166072259999,35.783880927],[-76.10496985599988,35.77716705900015],[-76.08922278599992,35.771795966000084],[-76.07262122299996,35.76837799700009],[-76.0582576159999,35.76776764500012],[-76.0650935539999,35.76776764500012],[-76.05675208199995,35.76154205900015],[-76.04727128799993,35.749457098000065],[-76.04246985599985,35.7376976580001],[-76.04800370999996,35.732367255000106],[-76.0582576159999,35.72646719000009],[-76.05353756399998,35.71381256700012],[-76.04328365799995,35.70205312700013],[-76.03718014199987,35.698797919000086],[-76.05426998599992,35.683905341000056],[-76.08454342399992,35.68891022300009],[-76.11705481699988,35.69887929900007],[-76.14085852799987,35.698797919000086],[-76.12360592399997,35.67352936400014],[-76.09996497299994,35.665187893000066],[-76.07274329299993,35.666734117000104],[-76.04458574099996,35.67153554900001],[-76.04539954299986,35.66828034100014],[-76.04450436099998,35.66396719000015],[-76.0418188139999,35.65835195500016],[-76.03718014199987,35.65102773600013],[-76.0309138659999,35.65102773600013],[-75.99486243399986,35.73029205900009],[-75.98997962099989,35.76398346600011],[-75.98997962099989,35.88690827000006],[-75.98241126199994,35.89581940300008],[-75.94920813699991,35.91437409100011],[-75.9415583979999,35.92161692900011],[-75.93492591099992,35.92487213700015],[-75.92039954299989,35.912746486000074],[-75.90062415299988,35.89004140800013],[-75.8762914699999,35.879136460000055],[-75.87022864499991,35.87759023600002],[-75.86143958199995,35.880682684000085],[-75.85924231699993,35.887518622000115],[-75.8624568349999,35.894354559000035],[-75.88255774599985,35.901800848],[-75.89378821499986,35.912502346000124],[-75.9026586579999,35.925848700000145],[-75.90807044199994,35.93842194200012],[-75.88727779899995,35.93402741100006],[-75.86603756399998,35.92649974200019],[-75.84496008999986,35.92324453300012],[-75.8248591789999,35.93158600500011],[-75.83405514199987,35.938625393000095],[-75.84406490799995,35.942938544000086],[-75.85496985599994,35.94505442900002],[-75.86709550699993,35.94525788000006],[-75.8607478509999,35.95278554900001],[-75.8563126289999,35.96100495000012],[-75.85366777299993,35.9701195330001],[-75.85285396999993,35.97996653900013],[-75.81891842399997,35.96051666900003],[-75.79051673099985,35.93252187700001],[-75.74299068899995,35.87010325700005],[-75.74299068899995,35.856878973],[-75.72614498599995,35.83608633],[-75.72183183499993,35.82916901200012],[-75.72203528599991,35.81073639500009],[-75.72956295499993,35.79629140800013],[-75.7384333979999,35.782863674000126],[-75.74299068899995,35.76776764500012],[-75.74010169199991,35.7582868510001],[-75.72622636599993,35.74038320500007],[-75.72183183499993,35.72614166900014],[-75.72085527299987,35.70502350500006],[-75.72492428299992,35.69822825700011],[-75.74982662699998,35.698797919000086],[-75.7734268869999,35.696926174000126],[-75.77358964799987,35.689764716000084],[-75.76341712099992,35.67153554900001],[-75.74095618399991,35.643011786],[-75.73961341099994,35.632635809000085],[-75.75381425699993,35.61180247600011],[-75.7582901679999,35.60724518400018],[-75.7643936839999,35.60390859600015],[-75.77334550699993,35.60260651200015],[-75.78233801999994,35.59918854400014],[-75.7833552729999,35.59113190300012],[-75.78205318899992,35.58222077000006],[-75.78392493399987,35.57591380400014],[-75.79503333199992,35.570949611000074],[-75.80833899599992,35.56883372600008],[-75.8391820949999,35.56850820500013],[-75.8391820949999,35.57591380400014],[-75.82591712099986,35.58087799700017],[-75.81867428299992,35.58209870000009],[-75.81956946499992,35.58612702000006],[-75.82091223899991,35.58954498900009],[-75.82262122299991,35.592678127000156],[-75.8248591789999,35.59577057500003],[-75.84947669199991,35.58706289300015],[-75.86644446499989,35.59564850500005],[-75.87804114499991,35.614732164000046],[-75.88634192599997,35.63735586100002],[-75.89439856699991,35.62201569200006],[-75.8953344389999,35.604559637000094],[-75.89452063699989,35.58893463700012],[-75.89720618399984,35.579046942],[-75.95445716099991,35.53034088700018],[-75.95933997299987,35.52822500200007],[-75.97789466099988,35.52521393400015],[-75.97940019399994,35.51972077000012],[-75.97655188699991,35.512925523000106],[-75.97569739499991,35.507025458000086],[-75.97280839799987,35.502142645],[-75.97321529899996,35.49713776200015],[-75.9791560539999,35.48969147300009],[-75.98542232999993,35.48615143400009],[-76.01056881399992,35.479071356000034],[-76.0033259759999,35.465033270000085],[-76.00885982999992,35.45604075700008],[-76.0184220039999,35.44916413000006],[-76.02354895699992,35.44122955900009],[-76.02464758999987,35.42731354400003],[-76.02822831899992,35.41933828300016],[-76.0347794259999,35.41815827000012],[-76.04458574099996,35.424505927000084],[-76.03718014199987,35.43134186400009],[-76.05614173099987,35.44147370000006],[-76.07103430899994,35.427232164000046],[-76.07599850199989,35.40485260600012],[-76.0650935539999,35.39032623900009],[-76.0650935539999,35.3841820330001],[-76.0797419909999,35.382961330000064],[-76.11827551999991,35.37278880400014],[-76.12999426999987,35.36615631700006],[-76.14244544199991,35.35248444200012],[-76.15038001199989,35.34715403900016],[-76.21812903599991,35.34886302300007],[-76.23574785099993,35.35321686400006],[-76.24644934799993,35.37201569200012],[-76.25348873599992,35.37372467700011],[-76.26048743399988,35.37002187700007],[-76.26374264199984,35.35932038000006],[-76.2687068349999,35.34837474200019],[-76.28018144399994,35.35073476800012],[-76.31065833199997,35.36766185100011],[-76.32433020699992,35.393744208],[-76.33263098899991,35.40399811400012],[-76.35533606699993,35.413478908],[-76.36351477799985,35.40521881700012],[-76.36375891799989,35.39142487200003],[-76.36302649599986,35.3841820330001],[-76.35562089799987,35.377671617000104],[-76.3524063789999,35.36359284100017],[-76.35716712099992,35.34951406500012],[-76.37360592399992,35.3431664080001],[-76.37962805899991,35.35325755400005],[-76.39403235599988,35.36245351800012],[-76.40294348899991,35.365179755],[-76.41026770699992,35.364325262000094],[-76.41616777299987,35.36603424700009],[-76.42076575399989,35.37669505400013],[-76.37975012899987,35.37669505400013],[-76.37975012899987,35.3841820330001],[-76.38849850199995,35.39232005400011],[-76.39268958199989,35.409002997000144],[-76.39403235599988,35.44122955900009],[-76.40233313699984,35.45962148600013],[-76.41832434799997,35.46450429900001],[-76.42886308499993,35.45701732000004],[-76.42076575399989,35.43817780200002],[-76.44249426999997,35.40399811400012],[-76.45400956899991,35.41014232],[-76.46556555899994,35.41128164300012],[-76.47581946499986,35.40729401200015],[-76.48346920499989,35.39777252800015],[-76.47642981699991,35.39443594000012],[-76.47069251199994,35.389797268],[-76.46617591099988,35.38385651200018],[-76.46300208199992,35.37669505400013],[-76.49836178299995,35.39134349200005],[-76.51183020699992,35.4010277360001],[-76.52440344999991,35.417669989000146],[-76.51545162699989,35.41909414300012],[-76.51065019399991,35.421291408000016],[-76.50767981699988,35.42503489800005],[-76.50389563699986,35.43134186400009],[-76.5460505849999,35.445217190000065],[-76.56012936099994,35.45587799700011],[-76.54491126199989,35.46605052300005],[-76.54491126199989,35.47223541900003],[-76.56444251199984,35.48387278900013],[-76.57518469999988,35.49746328300007],[-76.57066809799991,35.508612372000115],[-76.54491126199989,35.51325104400003],[-76.49469967399989,35.50678131700012],[-76.47789466099987,35.51386139500009],[-76.46300208199992,35.541164455000064],[-76.48892167899993,35.53681061400009],[-76.51170813699986,35.537665106000176],[-76.55793209499987,35.548041083000086],[-76.58495032499991,35.5497093770001],[-76.60594641799995,35.54246653900016],[-76.64732825399996,35.52069733300003],[-76.6319880849999,35.51748281500015],[-76.6207576159999,35.510809637000094],[-76.6126195949999,35.502142645],[-76.60631262899994,35.49274323100017],[-76.61632239499994,35.47113678600008],[-76.61998450399987,35.46605052300005],[-76.60578365799998,35.45246002800009],[-76.59919186099988,35.44773997599999],[-76.59268144399991,35.444322007],[-76.59268144399991,35.43817780200002],[-76.59825598899991,35.43549225500011],[-76.60106360599988,35.43235911700005],[-76.60301673099991,35.428656317],[-76.60631262899994,35.424505927000084],[-76.59630286399988,35.42112864800005],[-76.58844967399989,35.41689687700012],[-76.58267167899993,35.41128164300012],[-76.57900956899988,35.40399811400012],[-76.59976152299986,35.395086981000176],[-76.62877356699997,35.39996979400014],[-76.65001380099994,35.41535065300009],[-76.64732825399996,35.43817780200002],[-76.65660559799991,35.43667226800015],[-76.66421464799996,35.43423086100002],[-76.67039954299992,35.43036530200011],[-76.67520097599993,35.424505927000084],[-76.70433508999989,35.43036530200011],[-76.75841223899997,35.41885000200007],[-76.78107662699992,35.4278832050001],[-76.80199133999989,35.44489166900014],[-76.82184811099998,35.453029690000065],[-76.8731990229999,35.45864492400007],[-76.90127519399991,35.465521552000084],[-76.94896399599986,35.48798248900009],[-76.99404863199993,35.497056382000075],[-77.01414954299989,35.50775788],[-77.05199133999992,35.53436920800014],[-77.03579667899987,35.50385163000003],[-77.02550208199995,35.49152252800015],[-77.01414954299989,35.48655833500011],[-76.99449622299991,35.48159414300015],[-76.98501542899993,35.46922435100011],[-76.97630774599992,35.43817780200002],[-76.94513912699995,35.45246002800009],[-76.90392005099989,35.443915106000176],[-76.86290442599997,35.42401764500009],[-76.83226477799988,35.40399811400012],[-76.8170466789999,35.39630768400009],[-76.75719153599994,35.3841820330001],[-76.69408118399986,35.35366445500016],[-76.61164303299992,35.33771393400014],[-76.52098548099991,35.31313711100013],[-76.49705969999985,35.31150950700011],[-76.49425208199989,35.30097077000006],[-76.48761959499993,35.29148997600005],[-76.47264563699989,35.27741120000012],[-76.4703669909999,35.270575262000094],[-76.48045813699989,35.25332265800007],[-76.48346920499989,35.24290599200019],[-76.49282792899993,35.230169989000146],[-76.51528886599992,35.23037344],[-76.56533769399994,35.239488022999986],[-76.56533769399994,35.23330312700001],[-76.54165605399993,35.22435130399999],[-76.52961178299992,35.21767812700013],[-76.52440344999991,35.20848216400016],[-76.53026282499985,35.19993724200005],[-76.54405676999997,35.201849677],[-76.5716039699999,35.21161530200014],[-76.58828691299993,35.209133205000015],[-76.60041256399992,35.20189036700019],[-76.60936438699986,35.194525458],[-76.61656653599988,35.19110748900009],[-76.6319880849999,35.19025299700017],[-76.64858964799987,35.1871605490001],[-76.66392981699991,35.18089427300005],[-76.67520097599993,35.17059967700011],[-76.66185462099992,35.166815497000115],[-76.61998450399987,35.16445547100015],[-76.60802161399997,35.1590843770001],[-76.5982966789999,35.15232982000005],[-76.58731035099996,35.14972565300015],[-76.5716039699999,35.15696849200016],[-76.57652747299994,35.15888092700014],[-76.58120683499988,35.16225820500016],[-76.5858455069999,35.16445547100015],[-76.5858455069999,35.17059967700011],[-76.5716039699999,35.17804596600011],[-76.55483964799987,35.14972565300015],[-76.56053626199986,35.124416408000016],[-76.58210201699987,35.105454820000105],[-76.61314856699988,35.09613678600006],[-76.60798092399997,35.07982005400014],[-76.64329993399991,35.058050848000065],[-76.68761145699995,35.0372582050001],[-76.70933997299991,35.023504950000174],[-76.72594153599987,35.000555731000176],[-76.76447506399995,34.989203192],[-76.80776933499993,34.987250067000055],[-76.83910071499989,34.99249909100014],[-76.87364661399988,35.0086937520001],[-76.90119381399992,35.02724844],[-76.94627844999988,35.06858958500014],[-76.95954342399992,35.075018622000144],[-76.99624589799993,35.08763255400014],[-77.0433650379999,35.14362213700015],[-77.07933508999989,35.15696849200016],[-77.03673255099994,35.09931061400012],[-77.03490149599989,35.08869049700009],[-77.01537024599989,35.08087799700009],[-76.99937903599991,35.062160549000126],[-76.97630774599992,35.01976146000014],[-76.94025631399998,34.979803778000175],[-76.89915930899988,34.964056708000115],[-76.85407467399992,34.95742422100007],[-76.80557206899994,34.9447289080001],[-76.7708227199999,34.92422109600015],[-76.76610266799989,34.91722239800007],[-76.76195227799992,34.91242096600017],[-76.75719153599994,34.90989817900005],[-76.74998938699991,34.911566473000065],[-76.73997962099992,34.92177969],[-76.71336829299989,34.92987702000012],[-76.69570878799988,34.943345445000105],[-76.67894446499986,34.95937734600001],[-76.66152910099987,34.97260163000006],[-76.64244544199991,34.98383209800015],[-76.63182532499985,34.987046617000104],[-76.61998450399987,34.986273505],[-76.61058508999989,34.980454820000126],[-76.60260982999992,34.97101471600003],[-76.5974014959999,34.96222565300015],[-76.59609941299993,34.95831940300015],[-76.57848059799991,34.95042552299999],[-76.55532792899996,34.93671295800006],[-76.53986568899992,34.932074286000116],[-76.54491126199989,34.951483466000056],[-76.56647701699987,34.979193427000105],[-76.56859290299987,34.99323151200018],[-76.5482478509999,34.99933502800015],[-76.53359941299988,34.99941640800012],[-76.51829993399991,34.997300523000135],[-76.5032445949999,34.98956940300003],[-76.48961341099997,34.97260163000006],[-76.48363196499986,34.98712799700009],[-76.48289954299992,35.00165436400012],[-76.48399817599996,35.01528554900007],[-76.48346920499989,35.02724844],[-76.4769587879999,35.04108307500009],[-76.46515865799992,35.05980052300008],[-76.45376542899996,35.07339101800012],[-76.44871985599994,35.07160065300003],[-76.44652258999994,35.067206122000144],[-76.4371638659999,35.05491771],[-76.43504798099988,35.05117422100006],[-76.43618730399993,35.04144928600011],[-76.44131425699993,35.02562083500008],[-76.44249426999997,35.01666901200015],[-76.42446855399993,34.99591705900015],[-76.41885331899994,34.98651764500012],[-76.42414303299992,34.980861721000124],[-76.45030676999997,34.969549872000144],[-76.45783443899992,34.970160223000036],[-76.46434485599991,34.96845123900003],[-76.4691462879999,34.95831940300015],[-76.4695531889999,34.94993724200018],[-76.46666419199988,34.944281317],[-76.46182206899991,34.940578518000066],[-76.45612545499992,34.93789297100009],[-76.4397680329999,34.938666083],[-76.39610755099991,34.95014069200015],[-76.38727779899995,34.94806549700003],[-76.37755286399991,34.96580638200011],[-76.35627193899992,34.97199127800008],[-76.33486894399988,34.973089911000145],[-76.32518469999991,34.97573476800012],[-76.3282364569999,34.99115631700006],[-76.34504146999993,35.01227448100015],[-76.35313880099994,35.02724844],[-76.3221736319999,35.01992422100001],[-76.30663001199991,35.003119208],[-76.29352779899995,34.984808661000116],[-76.26988684799991,34.97260163000006],[-76.26988684799991,34.96515534100017],[-76.27940833199992,34.95966217700013],[-76.29352779899995,34.943793036000116],[-76.30467688699986,34.93789297100009],[-76.3204646479999,34.93748607],[-76.33202063699994,34.94114817900014],[-76.34040279899989,34.93968333500008],[-76.34626217399995,34.92422109600015],[-76.34410559799994,34.9140485700001],[-76.33775794199991,34.90778229400014],[-76.33568274599989,34.89948151200015],[-76.34626217399995,34.88324616100011],[-76.35484778599994,34.87742747600008],[-76.39403235599988,34.862738348000065],[-76.39590410099996,34.86815013200011],[-76.40025794199994,34.87759023600013],[-76.40147864499997,34.88324616100011],[-76.4077856109999,34.88324616100011],[-76.41120357999992,34.875677802000084],[-76.41173255099989,34.85871002800011],[-76.41454016799993,34.84906647300012],[-76.42064368399991,34.839544989000146],[-76.42658443899995,34.833726304],[-76.44249426999997,34.821763414000074],[-76.47598222599991,34.78705475499999],[-76.48302161399988,34.782619533000016],[-76.49014238199993,34.779242255],[-76.49718176999991,34.774603583000086],[-76.50389563699986,34.76654694200012],[-76.50389563699986,34.76117584800009],[-76.5006404289999,34.75511302299999],[-76.49909420499998,34.74811432500009],[-76.50389563699986,34.73981354400003],[-76.51276607999992,34.73436107],[-76.5227758449999,34.731919664000046],[-76.54491126199989,34.732407945000126],[-76.56623287699992,34.73851146000011],[-76.58356686099992,34.75128815300015],[-76.58824622299993,34.76658763200011],[-76.5716039699999,34.78082916900002],[-76.59333248599995,34.79677969000012],[-76.60753333199997,34.81391022300006],[-76.61595618399991,34.81606679900007],[-76.62218176999988,34.73102448100015],[-76.6329646479999,34.709173895000035],[-76.65819251199986,34.72186920800008],[-76.66510982999995,34.74152252800003],[-76.66698157499991,34.76776764500015],[-76.67121334499984,34.79083893400012],[-76.6852107409999,34.80072663000011],[-76.70978756399992,34.79657623900009],[-76.73460852799988,34.78587474200016],[-76.75617428299998,34.77081940300015],[-76.7708227199999,34.75348541900014],[-76.75479081899991,34.75413646000011],[-76.74571692599989,34.75657786700005],[-76.73741614499991,34.760687567],[-76.72984778599997,34.76654694200012],[-76.70807857999992,34.738267319999984],[-76.70197506399992,34.72557200700011],[-76.89610755099989,34.739203192000055],[-76.92853756399998,34.72186920800008],[-77.07286536399988,34.686265367000104],[-77.08242753799986,34.68085358300005],[-77.09325110599988,34.67698802300008],[-77.10265051999988,34.68325429900001],[-77.10269120999988,34.69432200700005],[-77.08551998599995,34.705145575000145],[-77.1072485019999,34.732407945000126],[-77.11359615799995,34.75576406500012],[-77.1134333979999,34.75971100500011],[-77.13170325399997,34.762396552],[-77.1319880849999,34.747626044000114],[-77.12474524599989,34.73037344],[-77.1202693349999,34.72557200700011],[-77.12189693899992,34.70831940300012],[-77.12775631399998,34.693304755],[-77.13687089799987,34.6823591170001],[-77.14826412699993,34.677191473000036],[-77.15477454299992,34.67991771],[-77.16026770699995,34.68695709800015],[-77.16641191299993,34.69257233300006],[-77.17491614499997,34.69147370000012],[-77.17577063699989,34.684963283000016],[-77.16698157499991,34.66714101800012],[-77.17149817599994,34.66351959800009],[-77.20152747299991,34.65070221600014],[-77.25357011599996,34.594387111000074],[-77.28136145699995,34.581529039000046],[-77.29344641799995,34.57843659100017],[-77.31802324099993,34.564276434000064],[-77.33653723899995,34.561102606000176],[-77.35684160099987,34.57709381700009],[-77.36046301999994,34.57819245000003],[-77.36571204299992,34.58201732000005],[-77.40147864499994,34.589056708000115],[-77.38687089799993,34.60350169500008],[-77.34312903599994,34.631293036000145],[-77.33315995999993,34.64984772300015],[-77.34044348899997,34.66095612200017],[-77.37840735599988,34.70132070500013],[-77.39460201699984,34.71190013199999],[-77.39460201699984,34.71816640800013],[-77.37804114499997,34.71865469000012],[-77.37511145699995,34.72431061400003],[-77.38190670499995,34.73232656500015],[-77.39460201699984,34.73981354400003],[-77.40347245999988,34.74005768400015],[-77.4137263659999,34.73786041900017],[-77.42467200399997,34.74013906500015],[-77.43561764199984,34.75348541900014],[-77.42845618399988,34.701239325000145],[-77.42198645699989,34.68455638200011],[-77.40916907499985,34.690904039000046],[-77.39679928299992,34.68378327000009],[-77.38678951699984,34.67011139500014],[-77.38097083199989,34.65668366100006],[-77.38243567599994,34.63202545800006],[-77.39704342399995,34.62002187700013],[-77.41388912699993,34.616929429000045],[-77.42198645699989,34.61912669500005],[-77.42613684799993,34.623236395],[-77.43545488199987,34.622503973000065],[-77.44497636599988,34.61758047100001],[-77.44981848899992,34.60887278900013],[-77.44619706899988,34.60081614799999],[-77.43708248599988,34.58942291900003],[-77.42650305899986,34.579169012000094],[-77.41856848899988,34.57477448100012],[-77.40062415299994,34.571112372000144],[-77.38320878799996,34.56224192900011],[-77.37559973899994,34.551092841000084],[-77.38719641799995,34.54067617400001],[-77.38719641799995,34.5338402360001],[-77.38182532499988,34.53050364800008],[-77.37889563699986,34.527167059000035],[-77.38792883999989,34.522650458000086],[-77.40404212099995,34.517645575000024],[-77.45563717399992,34.50531647300009],[-77.53587805899994,34.46857330900009],[-77.66832434799989,34.376166083000086],[-77.73045813699991,34.31586334800012],[-77.78502356699988,34.24640534100011],[-77.81655839799987,34.22235748900009],[-77.83267167899996,34.20701732000013],[-77.84447180899991,34.17499420800014],[-77.86709550699987,34.138413804000024],[-77.8744197259999,34.12225983300014],[-77.89313717399995,34.01203034100014],[-77.91112219999991,33.95815664300004],[-77.94204667899993,33.93048737200003],[-77.93374589799996,33.94891998900006],[-77.9322810539999,33.957749742000104],[-77.93586178299995,33.96523672100007],[-77.93586178299995,33.97142161700005],[-77.92125403599994,34.001044012000094],[-77.92955481699993,34.07982005400005],[-77.92162024599986,34.108587958],[-77.94066321499986,34.14765045800006],[-77.95628821499994,34.191148179],[-77.96255449099989,34.191148179],[-77.96288001199991,34.16315338700018],[-77.95230058499996,34.091742255],[-77.94204667899993,34.067613022999986],[-77.94855709499983,34.0536970070001],[-77.95051021999987,34.03717682500003],[-77.94945227799991,34.00275299700009],[-77.95319576699987,33.98948802300008],[-77.97215735599987,33.95262278900018],[-78.00894120999996,33.904689846000096],[-78.01781165299991,33.896307684000035],[-78.03233801999994,33.89227936400006],[-78.04930579299992,33.89386627800009],[-78.13955644399994,33.915187893000066],[-78.15868079299992,33.91681549700009],[-78.21397864499991,33.915472723],[-78.22691809799991,33.92059967700011],[-78.25251217399989,33.92511627800015],[-78.33348548099984,33.91010163000014],[-78.36725826699984,33.91681549700009],[-78.36237545499995,33.92422109600007],[-78.3617244129999,33.93235911700018],[-78.36725826699984,33.950913804],[-78.3746638659999,33.950913804],[-78.38491777299996,33.92259349200005],[-78.40827389199984,33.910549221000124],[-78.47085527299996,33.896307684000035],[-78.55899003799996,33.86904531500012],[-78.55011959499991,33.879787502000156],[-78.54539954299992,33.88328685100005],[-78.54539954299992,33.8895531270001],[-78.60000566299988,33.875881252000156],[-78.60000566299988,33.86904531500012],[-78.59044348899988,33.86762116100006],[-78.58287512899993,33.86371491100009],[-78.57721920499993,33.857163804],[-78.57331295499995,33.84796784100002],[-78.61506100199988,33.84577057500003],[-78.65697180899988,33.83193594000012],[-78.76333574099988,33.77855052299999],[-78.86750240799995,33.704535223],[-78.93797766799986,33.64207591400016],[-79.03148352799991,33.53359609600007],[-79.1331274079999,33.41742584800015],[-79.15611731699997,33.375555731000055],[-79.14867102799991,33.36880117400001],[-79.15611731699997,33.35781484600015],[-79.18260657499985,33.24127838700012],[-79.18346106699994,33.21792226800012],[-79.18960527299993,33.21792226800012],[-79.19737708199992,33.23232656500009],[-79.19863847599993,33.26845937700013],[-79.20327714799996,33.28681061400009],[-79.21369381399994,33.300685940000065],[-79.2268774079999,33.30630117400007],[-79.26846269399988,33.306708075000174],[-79.27204342399995,33.31728750200013],[-79.26317298099991,33.34027741100003],[-79.23717200399992,33.38654205900009],[-79.20099850199989,33.42210521000008],[-79.18960527299993,33.43085358300014],[-79.18960527299993,33.43699778900013],[-79.21202551999994,33.42837148600002],[-79.23228919199994,33.41209544499999],[-79.27708899599988,33.35911692900005],[-79.2882380849999,33.33926015800013],[-79.2963761059999,33.317775783],[-79.2994685539999,33.296779690000065],[-79.29141191299996,33.277736721000096],[-79.27204342399995,33.261460679000045],[-79.24828040299984,33.25014883000007],[-79.21401933499988,33.24249909100005],[-79.2113337879999,33.233954169000114],[-79.21239173099985,33.22272370000012],[-79.21011308499988,33.21112702],[-79.2029516269999,33.192938544000114],[-79.19725501199986,33.18789297100007],[-79.18346106699994,33.18378327000011],[-79.19591223899997,33.175197658000016],[-79.21019446499986,33.167792059000035],[-79.22288977799991,33.15794505400011],[-79.23058020699995,33.142238674000126],[-79.23932857999992,33.14972565300012],[-79.2472224599999,33.166815497000144],[-79.25511633999986,33.17015208500008],[-79.26891028599995,33.166083075000024],[-79.27000891799992,33.15656159100003],[-79.26280676999988,33.14524974200005],[-79.25169837099986,33.13597239799999],[-79.25633704299989,33.13060130400014],[-79.26089433499993,33.12669505400014],[-79.26598059799993,33.12409088700004],[-79.27220618399991,33.12230052300005],[-79.2792048819999,33.13934967700011],[-79.2972712879999,33.149115302000055],[-79.31989498599995,33.15387604400014],[-79.34044348899991,33.15582916900008],[-79.32982337099989,33.14248281500009],[-79.30760657499991,33.13751862200003],[-79.28986568899992,33.13003164300006],[-79.29263261599988,33.10871002800009],[-79.30768795499989,33.09540436400009],[-79.35179602799988,33.078843492000104],[-79.37149003799992,33.06403229400005],[-79.37873287699995,33.04633209800012],[-79.37979081899991,33.02973053600009],[-79.38703365799992,33.01732005400005],[-79.41246497299994,33.01243724200016],[-79.43537350199995,33.010972398000106],[-79.45763098899991,33.00674062700009],[-79.47704016799992,33.00006745000006],[-79.49132239499991,32.99140045800014],[-79.49571692599989,33.00189850500011],[-79.50902258999992,33.02167389500015],[-79.51183020699995,33.02924225499999],[-79.52000891799986,33.04120514500012],[-79.53864498599995,33.036281643000066],[-79.57013912699995,33.019273179],[-79.58482825399994,33.01382070500016],[-79.59715735599991,33.00047435100005],[-79.62291419199993,32.955308335],[-79.62450110599988,32.943833726000044],[-79.61945553299995,32.93219635600015],[-79.60741126199994,32.91624583500014],[-79.60216223899994,32.92413971600011],[-79.59447180899991,32.930121161000116],[-79.58486894399994,32.93439362200006],[-79.57384192599991,32.93675364799999],[-79.58141028599994,32.92169830900018],[-79.58873450399994,32.91412995000003],[-79.63780676999991,32.890692450000145],[-79.64525305899988,32.888902085000076],[-79.65371660099993,32.88580963700017],[-79.65819251199989,32.87872955900012],[-79.6615291009999,32.87164948100015],[-79.66637122299989,32.86847565300009],[-79.6930232409999,32.86009349200013],[-79.71222896999987,32.84039948100009],[-79.72793535099993,32.817531643000095],[-79.7445369129999,32.79962799700003],[-79.79865475199998,32.77309804900007],[-79.82872473899991,32.76276276200015],[-79.85098222599986,32.75861237200003],[-79.8621313139999,32.76406484600015],[-79.87083899599986,32.7760277360001],[-79.88166256399987,32.787990627000035],[-79.89907792899992,32.79340241100006],[-79.90623938699989,32.800441799000126],[-79.89745032499991,32.81614817900011],[-79.87486731699994,32.841213283000016],[-79.89232337099988,32.85480377800015],[-79.89915930899991,32.85175202000006],[-79.90343176999991,32.84491608300014],[-79.90469316299993,32.837958075000145],[-79.90282141799985,32.834377346000096],[-79.93809973899991,32.854071356000034],[-79.9437556629999,32.851467190000115],[-79.94163977799988,32.837551174000154],[-79.93224036399997,32.81220123900012],[-79.93008378799996,32.79645416900014],[-79.93407141799995,32.78343333500008],[-79.94395911399994,32.78237539300012],[-79.95742753799993,32.78904857],[-79.97166907499994,32.79962799700003],[-79.96764075399997,32.785223700000145],[-79.95742753799993,32.77204010600012],[-79.94310462099995,32.76235586100016],[-79.90778561099992,32.75551992400012],[-79.89915930899991,32.74803294500007],[-79.89305579299992,32.73908112200006],[-79.8789770169999,32.73139069200012],[-79.87596594999988,32.73224518400012],[-79.87486731699994,32.73810455900015],[-79.8680313789999,32.73810455900015],[-79.87140865799992,32.70831940300015],[-79.88731848899992,32.68813711100013],[-79.94570878799993,32.653265692],[-79.95592200399997,32.649359442],[-79.98131262899992,32.64874909100014],[-80.00597083199989,32.65314362200003],[-80.0166723299999,32.6537132830001],[-80.02570553299991,32.64874909100014],[-80.02570553299991,32.642523505],[-80.00279700399992,32.62946198100012],[-79.99547278599994,32.61904531500012],[-80.00511633999989,32.611558335000055],[-80.05793209499987,32.60398997600011],[-80.10423743399986,32.590806382000046],[-80.1256404289999,32.58795807500012],[-80.14907792899987,32.581447658000016],[-80.16307532499994,32.57025788000011],[-80.17711341099988,32.56704336100016],[-80.20075436099992,32.58421458500008],[-80.2323298819999,32.61298248900011],[-80.25129146999993,32.62376536700013],[-80.26593990799991,32.62140534100017],[-80.2539770169999,32.60854726800015],[-80.20742753799988,32.57322825700011],[-80.20177161399988,32.5715192730001],[-80.20075436099992,32.569403387000094],[-80.20445716099997,32.56061432500006],[-80.21129309799989,32.55206940300012],[-80.22093665299985,32.54682038000014],[-80.23155676999988,32.54242584800015],[-80.30345618399986,32.49795156500015],[-80.31566321499992,32.49445221600014],[-80.32323157499987,32.48843008000013],[-80.33120683499993,32.48639557500012],[-80.34447180899984,32.494818427000084],[-80.34996497299989,32.50519440300015],[-80.35138912699995,32.51666901200012],[-80.35537675699993,32.52692291900006],[-80.36896725199988,32.53335195500016],[-80.36603756399987,32.51691315300015],[-80.36925208199992,32.49876536700005],[-80.37816321499986,32.48411692900005],[-80.3925675119999,32.47809479400005],[-80.40933183499993,32.481105861000124],[-80.41881262899994,32.48826732],[-80.42784583199995,32.497259833],[-80.44343014199985,32.50535716400013],[-80.46226966099991,32.50922272300012],[-80.47573808499988,32.509751695000105],[-80.48786373599998,32.51235586100002],[-80.52501380099997,32.540187893000066],[-80.53258216099994,32.54783763199999],[-80.53966223899988,32.56061432500006],[-80.54710852799988,32.56061432500006],[-80.54727128799993,32.548895575000145],[-80.54417883999994,32.53790924700009],[-80.53892981699993,32.52789948100012],[-80.53282630099997,32.51902903900016],[-80.55797278599994,32.51634349200019],[-80.62901770699992,32.52586497599999],[-80.66006425699993,32.52586497599999],[-80.66978919199997,32.52114492400007],[-80.67796790299988,32.51146067900011],[-80.67747962099989,32.49795156500015],[-80.65941321499989,32.50600820500007],[-80.57095292899993,32.49168528900019],[-80.55919348899997,32.49266185100008],[-80.54084225199992,32.49697500200007],[-80.52940833199995,32.49795156500015],[-80.51610266799995,32.495428778000026],[-80.49185136599993,32.48297760600012],[-80.4781794909999,32.47809479400005],[-80.4781794909999,32.47064850500006],[-80.50527910099991,32.47235748900006],[-80.53490149599988,32.47077057500003],[-80.56354732999995,32.46564362200003],[-80.58747311099992,32.45693594000012],[-80.49522864499997,32.45075104400017],[-80.46983801999994,32.44212474200016],[-80.45836341099991,32.42316315300014],[-80.46349036399991,32.40412018400015],[-80.50674394399991,32.38873932500012],[-80.53038489499993,32.37352122600013],[-80.54767818899984,32.35712311400012],[-80.54710852799988,32.34711334800015],[-80.52830969999991,32.34894440300003],[-80.50153561099992,32.358832098000114],[-80.47691809799991,32.371527411],[-80.46450761599988,32.381903387000094],[-80.4493708979999,32.393988348],[-80.44163977799988,32.40127187700001],[-80.43724524599989,32.409816799000126],[-80.42979895699992,32.409816799000126],[-80.43366451699993,32.39020416900017],[-80.4410701159999,32.366115627000156],[-80.45164954299986,32.35004303600009],[-80.46450761599988,32.35455963700004],[-80.47077389199983,32.35455963700004],[-80.47028561099994,32.349310614000146],[-80.47203528599994,32.348089911000116],[-80.47500566299992,32.34829336100007],[-80.4781794909999,32.34711334800015],[-80.45986894399994,32.337307033000016],[-80.47077389199983,32.32273997599999],[-80.5532934239999,32.27879466400016],[-80.56419837099992,32.277167059000035],[-80.58018958199992,32.27912018400018],[-80.58747311099992,32.27879466400016],[-80.62604732999988,32.26260000200001],[-80.63683020699989,32.26679108300014],[-80.64268958199995,32.29311758000013],[-80.64220130099994,32.31924062700001],[-80.62901770699992,32.381903387000094],[-80.66441809799991,32.36823151200015],[-80.66999264199991,32.37360260600012],[-80.65119381399987,32.44554271000008],[-80.65729732999995,32.46271393400009],[-80.68366451699987,32.464422919000114],[-80.6809789699999,32.45648834800012],[-80.67935136599996,32.45457591400016],[-80.67650305899991,32.455755927000105],[-80.66999264199991,32.45693594000012],[-80.66885331899987,32.453802802000055],[-80.66315670499992,32.45075104400017],[-80.67284094999988,32.439113674000154],[-80.67690995999993,32.425685940000065],[-80.67747962099989,32.35765208500011],[-80.67520097599993,32.34992096600011],[-80.66539466099988,32.33397044499999],[-80.66315670499992,32.32355377800009],[-80.66746985599991,32.30536530200011],[-80.67829342399992,32.30272044500013],[-80.69176184799989,32.30963776200012],[-80.75934811099995,32.36078522300009],[-80.78441321499994,32.41624583500005],[-80.79600989499997,32.453273830000064],[-80.79694576699984,32.47435130400011],[-80.78302975199993,32.49168528900019],[-80.78555253799988,32.496730861000046],[-80.79808508999987,32.4981957050001],[-80.8140356109999,32.50535716400013],[-80.82249915299994,32.518133856000176],[-80.82750403599988,32.531398830000015],[-80.83592688699991,32.54010651200018],[-80.85496985599991,32.53949616100011],[-80.85496985599991,32.53335195500016],[-80.84276282499985,32.52423737200014],[-80.82843990799994,32.495672919000164],[-80.82079016799992,32.48484935100008],[-80.82079016799992,32.47809479400005],[-80.82892818899983,32.45526764500012],[-80.81578528599988,32.41925690300015],[-80.79694576699984,32.38255442900005],[-80.78734290299988,32.35765208500011],[-80.79857337099986,32.33364492400007],[-80.79893958199989,32.319728908000094],[-80.78355872299994,32.313625393],[-80.77578691299993,32.30573151200003],[-80.74510657499985,32.25897858300014],[-80.72704016799992,32.265936591000056],[-80.71214758999987,32.26300690300012],[-80.70018469999994,32.25446198100009],[-80.69107011599993,32.24469635600014],[-80.67731686099991,32.225327867000125],[-80.67784583199992,32.21474844000009],[-80.70470130099989,32.19065989800005],[-80.7371313139999,32.152085679],[-80.82079016799992,32.10814036700005],[-80.81159420499995,32.1446800800001],[-80.77721106699991,32.20726146000011],[-80.77985592399989,32.24469635600014],[-80.78799394399991,32.2358259140001],[-80.79059811099992,32.22431061400006],[-80.79112708199989,32.211004950000145],[-80.79352779899995,32.19692617400001],[-80.80077063699986,32.186224677],[-80.82347571499992,32.16575755400011],[-80.82823645699992,32.15908437700007],[-80.83214270699989,32.134344794000086],[-80.84190833199993,32.11595286700004],[-80.88756262899997,32.06940338700012],[-80.89452063699986,32.05882396000008],[-80.8959854809999,32.04669830900017],[-80.89028886599993,32.03266022300012],[-80.88939368399986,32.03042226800012],[-80.87901770699995,32.02651601800015],[-80.86522376199994,32.02651601800015],[-80.84813391799989,32.022162177000055],[-80.83568274599989,32.00291575700011],[-80.85391191299996,31.982163804000106],[-80.90339107999992,31.950506903000033],[-80.91266842399995,31.955877997000087],[-80.91950436099998,31.965236721000124],[-80.92345130099996,31.9740257830001],[-80.92381751199989,31.97776927300013],[-80.93736731699994,31.976467190000122],[-80.94432532499994,31.969183661000116],[-80.94863847599993,31.961127020000088],[-80.95466061099995,31.957342841000138],[-80.9647517569999,31.948797919000025],[-80.96312415299988,31.930650132000142],[-80.94953365799991,31.913723049000154],[-80.92381751199989,31.90888092700008],[-80.95815995999993,31.879339911],[-80.98045813699989,31.86538320500013],[-80.99522864499994,31.864488023000046],[-81.01260331899994,31.874457098000118],[-81.05768795499989,31.881903387000122],[-81.07469641799985,31.888413804000106],[-81.08067786399987,31.89663320500001],[-81.08682206899996,31.907660223000146],[-81.09532630099989,31.9160016950001],[-81.1082250639999,31.91632721600014],[-81.11823482999989,31.907660223000146],[-81.11180579299989,31.898016669000082],[-81.09142005099989,31.88499583499999],[-81.09032141799986,31.875718492000043],[-81.13019771999993,31.86676666900011],[-81.14297441299996,31.85492584800015],[-81.08771725199995,31.847479559000178],[-81.08189856699991,31.84398021],[-81.06102454299992,31.826971747000034],[-81.04515540299991,31.827826239000117],[-81.0399063789999,31.826971747000034],[-81.04954993399988,31.813544012000033],[-81.06090247299994,31.78815338700009],[-81.0913793609999,31.754339911000116],[-81.10553951699984,31.742661851000136],[-81.1190486319999,31.737616278000086],[-81.17137610599987,31.736639716000028],[-81.20457923099991,31.741441148000103],[-81.22862708199995,31.754950262000094],[-81.23863684799991,31.763088283000016],[-81.25316321499984,31.770249742000047],[-81.26659094999985,31.772406317000144],[-81.27330481699991,31.76552969000015],[-81.26919511599995,31.75169505400005],[-81.25621497299994,31.744777736000128],[-81.22549394399996,31.737616278000086],[-81.19627844999994,31.71759674700003],[-81.1989639959999,31.699448960000137],[-81.23912512899992,31.663072007000057],[-81.25193865599988,31.64717289600004],[-81.25886506099994,31.63209847000006],[-81.3009333979999,31.570786851000104],[-81.31826995799993,31.565552930000035],[-81.33109136399995,31.552431020000125],[-81.33336581399993,31.544396527000156],[-81.32019641999992,31.522446919000107],[-81.32823718599985,31.50234233000019],[-81.32702173399994,31.498342383000175],[-81.32697315799989,31.493331351000062],[-81.32690522899989,31.486315816000012],[-81.33143251899992,31.467234350000023],[-81.36527667299987,31.437886972000012],[-81.36389932399996,31.415830010000132],[-81.34836936699992,31.38886731000015],[-81.33523020499989,31.36690560600006],[-81.32565726799993,31.348928514000146],[-81.33618268099994,31.342820021000122],[-81.4288630849999,31.352850653000143],[-81.45079505099991,31.36147695500016],[-81.47093665299988,31.37287018400012],[-81.47996985599987,31.374212958],[-81.49242102799991,31.367661851000108],[-81.46703040299988,31.347805080000015],[-81.42650305899986,31.332953192000144],[-81.38198808499996,31.323675848],[-81.34471594999988,31.32050202000012],[-81.3282771479999,31.315252997000144],[-81.28506425699987,31.287665106000034],[-81.26988684799989,31.274847723],[-81.26768958199992,31.25873444200012],[-81.27464758999989,31.235541083],[-81.28856360599988,31.22093333500008],[-81.30748450399987,31.230454820000077],[-81.34316972599991,31.180650132],[-81.36754309799989,31.153550523000074],[-81.3859757149999,31.141750393],[-81.40925045499993,31.143255927000055],[-81.41795813699991,31.14899323100003],[-81.41856848899988,31.160589911000148],[-81.41551673099988,31.20722077000015],[-81.42300370999996,31.219631252000067],[-81.44465084499986,31.21678294500013],[-81.45482337099989,31.206000067000115],[-81.45653235599991,31.190415757000135],[-81.44863847599993,31.150946356000173],[-81.44692949099993,31.13084544500013],[-81.4517309239999,31.11709219],[-81.48729407499988,31.133612372000083],[-81.49583899599992,31.126206773000018],[-81.49258378799996,31.11367422100001],[-81.46401933499988,31.10260651200015],[-81.4409887359999,31.08136627800017],[-81.43028723899988,31.073431708000115],[-81.43089758999994,31.093207098000118],[-81.42491614499991,31.104722398000078],[-81.40367591099994,31.121283270000117],[-81.40538489499994,31.094794012000147],[-81.4241430329999,31.025051174000012],[-81.43028723899988,31.025051174000012],[-81.44302324099993,31.04474518400015],[-81.46344967399989,31.06732819200012],[-81.48810787699989,31.085842190000122],[-81.51353919199991,31.093329169000114],[-81.49937903599988,31.074611721000124],[-81.4591365229999,31.03864166900014],[-81.45079505099991,31.021918036000116],[-81.45677649599995,31.001654364000117],[-81.47248287699992,30.99188873900009],[-81.5196833979999,30.984076239],[-81.5196833979999,30.976629950000117],[-81.49925696499992,30.96820709800006],[-81.46410071499986,30.968451239],[-81.45079505099991,30.96356842700014],[-81.46231035099987,30.94867584800009],[-81.49299068899987,30.918524481000144],[-81.49925696499992,30.905585028000147],[-81.50035559799994,30.900051174000126],[-81.50511633999986,30.886175848000153],[-81.50601152299996,30.881659247000083],[-81.50279700399989,30.871975002000127],[-81.49754798099991,30.866156317000087],[-81.49315344999994,30.859442450000028],[-81.49242102799991,30.84686920800014],[-81.50157630099997,30.85077545800014],[-81.51170813699993,30.853338934000067],[-81.52232825399997,30.854437567],[-81.53335527299993,30.853705145000063],[-81.53335527299993,30.84686920800014],[-81.51903235599994,30.8417829450001],[-81.51488196499989,30.83201732],[-81.51504472599996,30.819484768000095],[-81.51353919199991,30.805975653000118],[-81.50865637899993,30.796779690000122],[-81.4967341789999,30.78335195500013],[-81.49242102799991,30.771795966000024],[-81.49478105399996,30.749212958000147],[-81.50129146999984,30.72435130399999],[-81.50003007699993,30.712184963000098],[-81.49925696499992,30.70433177300013],[-81.47565670499996,30.696030992000043],[-81.46934973899992,30.69717031500009],[-81.45563717399992,30.70180898600002],[-81.44774329299995,30.70286692900008],[-81.44025631399987,30.70075104400014],[-81.43822180899994,30.696030992000043],[-81.43761145699997,30.69135163000014],[-81.43407141799989,30.689195054000134],[-81.42857825399997,30.68170807500014],[-81.43053137899992,30.664740302],[-81.43781490799991,30.637762762000033],[-81.44151770699997,30.55304596600014],[-81.43781490799991,30.524115302000137],[-81.45384680899991,30.534491278000033],[-81.46190344999985,30.548529364000085],[-81.4647110669999,30.566839911000145],[-81.46507727799991,30.58991120000012],[-81.4669490229999,30.600002346000068],[-81.47203528599991,30.610052802000055],[-81.47964433499996,30.617865302000137],[-81.48900305899987,30.62099844000004],[-81.4979548819999,30.61766185099999],[-81.49998938699994,30.609361070000105],[-81.49925696499992,30.586818752000124],[-81.50153561099998,30.56928131700009],[-81.50031490799995,30.55125560100005],[-81.49258378799996,30.5372582050001],[-81.47565670499996,30.53156159100011],[-81.47492428299995,30.527655341000024],[-81.44774329299995,30.508002020000063],[-81.44163977799985,30.50014883000007],[-81.43512936099995,30.484849351000104],[-81.43028723899988,30.476996161000145],[-81.42446855399993,30.4715843770001],[-81.41954505099994,30.46930573100012],[-81.41494706899994,30.465725002000152],[-81.40982011599989,30.45648834800009],[-81.40636145699992,30.443589585000083],[-81.40982011599989,30.411444403000118],[-81.40660559799994,30.405829169000114],[-81.39956620999988,30.400539455000125],[-81.39256751199991,30.39386627800017],[-81.38939368399994,30.384222723],[-81.39614824099988,30.33978913],[-81.39492753799996,30.298570054000137],[-81.36266028599994,30.188950914000102],[-81.35399329299992,30.170803127000013],[-81.32828630199992,30.052830108000034],[-81.28766842399997,29.926174221],[-81.29381262899994,29.89411041900003],[-81.28799394399991,29.893011786],[-81.27938536899985,29.89954946200011],[-81.2737610019999,29.88987365000004],[-81.27185220699988,29.876151150000098],[-81.26646887899989,29.853216864],[-81.26162675699989,29.83901601800009],[-81.25584876199994,29.789455471000153],[-81.25013011399992,29.769591599000176],[-81.23887919999989,29.737301167000094],[-81.22549394399996,29.709784247000083],[-81.20996656899987,29.666519134000126],[-81.18907630099989,29.624172268],[-81.18464107999992,29.603745835000137],[-81.17829342399989,29.585516669000146],[-81.13796096299993,29.50508321100007],[-81.07191437499989,29.36303152500004],[-81.00628734299994,29.235269708000164],[-80.96266758099995,29.152056322000117],[-80.93212259599997,29.101178684],[-80.91454985199994,29.087450487000112],[-80.92210852799987,29.068304755000142],[-80.90933183499992,29.05695221600017],[-80.8917537099999,29.045558986000014],[-80.88288326699987,29.027655341000138],[-80.87767493399986,29.008490302],[-80.74322501799986,28.80690990300009],[-80.68004309799991,28.71702708500014],[-80.62706458199995,28.65086497600005],[-80.56761633999992,28.557806708],[-80.54308020699989,28.49249909100011],[-80.52822831899994,28.472601630000028],[-80.5404353509999,28.451605536000056],[-80.55842037699995,28.43333567899999],[-80.56761633999992,28.43183014500015],[-80.56969153599994,28.426418361000103],[-80.57526607999995,28.41795482000005],[-80.58275305899991,28.41030508000004],[-80.59089107999992,28.406927802000027],[-80.5940649079999,28.401597398000135],[-80.59471594999985,28.30385976800015],[-80.60171464799993,28.29092031500015],[-80.59430904899993,28.284084377000124],[-80.59683183499996,28.262640692],[-80.59219316299993,28.207912502000156],[-80.5711156889999,28.106146552000112],[-80.55663001199986,28.07754140800013],[-80.5532934239999,28.061590887000122],[-80.53233801999988,28.018784898000135],[-80.4518936839999,27.90940989800005],[-80.45091712099992,27.866359768],[-80.47500566299992,27.907904364],[-80.4781794909999,27.91722239800013],[-80.48232988199996,27.924261786],[-80.51231848899991,27.955145575000145],[-80.52159583199997,27.990179755000053],[-80.58063717399992,28.0854352890001],[-80.61066646999987,28.164943752000013],[-80.61994381399988,28.206976630000085],[-80.61790930899988,28.379339911],[-80.58788001199991,28.505764065000122],[-80.58706620999989,28.545355536000056],[-80.59430904899993,28.585109768000066],[-80.60041256399984,28.600287177000055],[-80.60944576699984,28.610174872000172],[-80.62303626199989,28.614569403000147],[-80.64268958199995,28.61302317900011],[-80.64606686099995,28.614406643000095],[-80.65086829299986,28.617865302],[-80.65664628799989,28.62075429900004],[-80.66315670499992,28.620510158000073],[-80.66380774599986,28.616848049000122],[-80.66250566299996,28.602362372000172],[-80.66315670499992,28.598781643],[-80.67503821499986,28.595607815000122],[-80.68394934799989,28.59520091400013],[-80.74779212099992,28.60492584800009],[-80.76593990799992,28.61229075700008],[-80.77985592399989,28.62665436400006],[-80.78425045499998,28.64166901200018],[-80.78425045499998,28.661281643000127],[-80.78038489499988,28.680731512000037],[-80.77301998599998,28.694973049000126],[-80.76561438699989,28.68870677299999],[-80.75715084499987,28.70380280199999],[-80.74925696499989,28.724107164000106],[-80.75234941299996,28.741929429000077],[-80.79527747299994,28.75560130400011],[-80.82892818899983,28.78302643400015],[-80.84813391799989,28.79059479400011],[-80.83193925699992,28.69936758000013],[-80.82079016799992,28.67511627800003],[-80.82079016799992,28.66766998900006],[-80.82823645699992,28.66144440300009],[-80.79747473899991,28.60830312700001],[-80.79352779899995,28.588853257000025],[-80.78966223899994,28.54783763199999],[-80.76610266799989,28.451076565000093],[-80.75682532499994,28.430853583000058],[-80.73827063699991,28.373480536000145],[-80.70881100199995,28.32046133000001],[-80.7012426419999,28.296616929000137],[-80.54110673699994,27.9813500020001],[-80.38097083199992,27.666083075000145],[-80.34536699099993,27.514593817000033],[-80.19782467399989,27.195990302000137],[-80.19701087099989,27.180487372000027],[-80.20579993399986,27.200344143000123],[-80.2171524729999,27.20941803600014],[-80.25723222599996,27.218573309000117],[-80.27961178299995,27.228908596000124],[-80.28648841099988,27.2337914080001],[-80.29271399599995,27.23948802299999],[-80.30101477799991,27.243353583000086],[-80.31432044199994,27.242580471000064],[-80.30842037699988,27.234320380000085],[-80.28302975199998,27.207831122000115],[-80.27594967399992,27.205877997000144],[-80.26016191299988,27.196966864000117],[-80.25161699099993,27.19415924700017],[-80.22899329299989,27.200384833000115],[-80.22126217399997,27.201605536000145],[-80.18333899599995,27.163763739],[-80.17699133999992,27.150702216000028],[-80.14879309799994,27.138251044000114],[-80.14240475199992,27.122137762000037],[-80.13927161399994,27.107652085],[-80.11510169199994,27.063788153000033],[-80.09459387899989,27.00975169500005],[-80.07555091099991,26.97321198100009],[-80.07412675699993,26.96137116100014],[-80.08128821499984,26.950425523000074],[-80.09154212099989,26.9472516950001],[-80.10338294199994,26.94603099200019],[-80.11510169199994,26.94090403900016],[-80.11510169199994,26.934719143],[-80.10240637899997,26.92951080900012],[-80.08031165299988,26.92357005399999],[-80.0707087879999,26.91697825700011],[-80.06432044199988,26.906683661],[-80.03823808499993,26.811183986000103],[-80.0384008449999,26.784247137000037],[-80.05361894399996,26.76959870000003],[-80.05361894399996,26.762152411000145],[-80.0405167309999,26.746405341000084],[-80.03453528599988,26.71531810099999],[-80.03237870999986,26.587347723],[-80.03807532499988,26.558539130000057],[-80.05361894399996,26.55670807500009],[-80.06208248599992,26.42088450700011],[-80.07188880099994,26.39044830900015],[-80.07412675699993,26.375474351000136],[-80.07315019399994,26.341009833],[-80.07506262899992,26.32420482000019],[-80.08092200399994,26.30963776200015],[-80.0777074859999,26.28758372600008],[-80.10265051999991,26.139960028000033],[-80.11213131399984,26.11017487200003],[-80.12877356699988,26.098618882],[-80.12877356699988,26.091213283000013],[-80.11278235599988,26.06883372599999],[-80.12877356699988,25.775295315000122],[-80.1355688139999,25.775295315000122],[-80.1355688139999,25.816839911000027],[-80.12877356699988,25.86212799700003],[-80.12926184799997,25.887884833000058],[-80.1324356759999,25.901271877000067],[-80.14061438699994,25.900824286000088],[-80.17658443899992,25.858384507],[-80.18272864499988,25.82208893400009],[-80.19546464799993,25.795843817000062],[-80.19619706899988,25.75381094],[-80.21068274599992,25.734930731000148],[-80.22126217399997,25.731105861000128],[-80.23094641799992,25.731187242000132],[-80.24071204299989,25.729559637000094],[-80.25161699099993,25.72060781500009],[-80.25519771999993,25.71108633000007],[-80.25690670499992,25.68683502800009],[-80.27757727799992,25.64423248900006],[-80.30687415299985,25.618231512000147],[-80.31041419199994,25.598944403000033],[-80.31135006399992,25.54979075700011],[-80.31745357999992,25.532904364000117],[-80.33397376199989,25.511908270000088],[-80.34243730399993,25.4936384140001],[-80.34430904899989,25.47524648600016],[-80.34105383999986,25.45376211100013],[-80.33649654899992,25.44822825700011],[-80.32945716099994,25.44403717699999],[-80.32567298099991,25.438666083000115],[-80.33372962099993,25.42479075700014],[-80.34105383999986,25.405951239],[-80.33291581899994,25.39801666900003],[-80.32042395699992,25.39154694200012],[-80.31309973899991,25.383490302],[-80.31432044199994,25.371161200000145],[-80.3507380849999,25.342230536000145],[-80.39586341099997,25.29539622599999],[-80.40062415299987,25.28790924700003],[-80.40249589799993,25.27936432500009],[-80.40591386599993,25.270168361000017],[-80.42300370999988,25.252386786000145],[-80.42418372299991,25.241441148000074],[-80.42690995999988,25.221747137000033],[-80.41478430899988,25.206854559000174],[-80.40196692599994,25.19554271],[-80.40249589799993,25.186224677000055],[-80.41755123599995,25.197414455000157],[-80.43712317599991,25.223374742000047],[-80.45091712099992,25.227769273000135],[-80.45079505099994,25.242987372000115],[-80.46642005099994,25.241766669000086],[-80.48619544199997,25.233343817000144],[-80.49864661399987,25.220363674000154],[-80.47691809799991,25.21857330900015],[-80.45872962099992,25.20917389500012],[-80.44664466099991,25.19358958500005],[-80.44343014199985,25.17316315300017],[-80.45091712099992,25.17316315300017],[-80.45400956899991,25.195257880000057],[-80.4691462879999,25.208075262000094],[-80.48892167899992,25.21035390800007],[-80.50617428299992,25.20050690300006],[-80.50926673099991,25.20722077],[-80.51366126199991,25.212836005],[-80.51919511599993,25.217189846000096],[-80.52599036399994,25.220363674000154],[-80.52236894399988,25.226792710000055],[-80.51960201699984,25.230780341000052],[-80.51500403599991,25.233058986000017],[-80.50617428299992,25.234605210000055],[-80.5071508449999,25.23891836100016],[-80.50837154899992,25.241766669000086],[-80.51231848899991,25.248277085],[-80.52525794199991,25.246527411],[-80.56550045499992,25.245998440000037],[-80.58063717399992,25.241441148000074],[-80.59044348899994,25.225327867000104],[-80.5974828769999,25.20343659100017],[-80.6065160799999,25.188666083],[-80.62222245999988,25.193670966000028],[-80.6190486319999,25.195746161000145],[-80.61754309799997,25.19554271],[-80.6165258449999,25.19603099200016],[-80.61473548099991,25.20050690300006],[-80.65135657499994,25.19306061400006],[-80.65697180899994,25.18992747599999],[-80.6549373039999,25.180568752000156],[-80.65160071499989,25.174017645000063],[-80.6509903639999,25.16787344],[-80.65697180899994,25.15949127800003],[-80.66315670499992,25.15949127800003],[-80.67813066299993,25.16787344],[-80.69115149599992,25.162746486000074],[-80.71092688699986,25.145249742000132],[-80.72305253799992,25.14313385600003],[-80.73981686099995,25.143784898000078],[-80.75584876199984,25.148749091000028],[-80.76561438699989,25.15949127800003],[-80.76781165299988,25.155462958000054],[-80.7699275379999,25.152777411],[-80.77171790299988,25.149847723000065],[-80.77301998599998,25.145249742000132],[-80.77782141799989,25.148260809000032],[-80.78294837099988,25.15062083499999],[-80.78823808499995,25.153957424],[-80.79352779899995,25.15949127800003],[-80.79702714799993,25.15131256700012],[-80.80028235599988,25.148382880000028],[-80.80524654899992,25.14911530200014],[-80.8140356109999,25.152085679000052],[-80.8140356109999,25.15949127800003],[-80.81053626199991,25.16779205900012],[-80.84024003799993,25.17340729400003],[-80.85496985599991,25.186224677000055],[-80.88288326699987,25.169501044000025],[-80.88719641799986,25.168361721000093],[-80.91022701699984,25.145249742000132],[-80.92878170499992,25.142157294000143],[-80.96715247299994,25.141546942],[-80.99958248599994,25.13507721600008],[-81.0399063789999,25.131577867000185],[-81.08653723899994,25.12140534100014],[-81.10195878799996,25.124741929],[-81.14915930899994,25.165716864],[-81.16551673099984,25.19725169500019],[-81.17711341099997,25.227769273000135],[-81.17577063699989,25.259019273000103],[-81.1648656889999,25.298081773000078],[-81.14834550699992,25.331203518],[-81.12995357999998,25.344468492000132],[-81.13609778599997,25.330226955000043],[-81.12401282499985,25.32794830900015],[-81.1121313139999,25.320746161000116],[-81.10191809799997,25.31171295800003],[-81.09512285099991,25.303534247000083],[-81.07787024599992,25.272853908000016],[-81.07469641799985,25.272447007],[-81.06175696499986,25.26422760600009],[-80.98525956899996,25.234605210000055],[-80.98525956899996,25.227769273000135],[-80.99083411399988,25.226141669000114],[-81.00011145699992,25.222072658000158],[-81.00576738199993,25.220363674000154],[-81.00576738199993,25.214178778000175],[-80.98802649599992,25.207505601000108],[-80.96629798099985,25.206854559000174],[-80.94465084499987,25.212307033000013],[-80.92723548099988,25.224066473],[-80.91722571499992,25.24575429900007],[-80.92414303299991,25.26357656500015],[-80.9807836579999,25.318304755],[-80.99913489499994,25.327053127000156],[-81.03429114499991,25.332464911],[-81.0516658189999,25.342230536000145],[-81.0572810539999,25.344468492000132],[-81.09512285099991,25.351304429000052],[-81.14134680899994,25.384751695000105],[-81.14915930899994,25.395412502000127],[-81.15038001199986,25.405951239],[-81.15542558499988,25.42658112200003],[-81.15660559799991,25.43634674700014],[-81.17088782499991,25.474839585000055],[-81.20343990799998,25.50800202000009],[-81.21467037699998,25.527573960000055],[-81.1959529289999,25.538885809000035],[-81.18993079299989,25.545355536000145],[-81.18610592399989,25.553168036000116],[-81.18765214799993,25.560207424],[-81.1972550119999,25.56427643400015],[-81.22004146999984,25.559271552000112],[-81.23167883999994,25.563625393],[-81.23542232999996,25.573146877000013],[-81.24596106699994,25.618231512000147],[-81.26671301999993,25.65281810100008],[-81.26646887899989,25.66665273600007],[-81.27472896999987,25.674709377000013],[-81.27843176999991,25.685980536],[-81.27953040299988,25.70416901200018],[-81.3131404289999,25.706203518],[-81.3216853509999,25.70758698100009],[-81.32835852799988,25.716050523000135],[-81.34024003799989,25.742865302000112],[-81.34471594999988,25.748521226000108],[-81.35724850199998,25.75348541900017],[-81.34797115799992,25.764634507],[-81.3216853509999,25.782700914000102],[-81.32933508999994,25.790472723],[-81.34845943899992,25.816839911000027],[-81.37214107999992,25.83612702000015],[-81.39614824099988,25.851629950000145],[-81.40904700399989,25.856350002000067],[-81.43834387899992,25.861314195000105],[-81.45079505099991,25.865871486000156],[-81.46214758999992,25.874497789000156],[-81.47520911399988,25.891017971000124],[-81.48558508999989,25.899400132000025],[-81.49876868399991,25.88670482000005],[-81.50951087099995,25.89081452],[-81.52106686099995,25.901068427000112],[-81.54157467399992,25.908921617000104],[-81.55528723899992,25.91836172100001],[-81.56407630099991,25.920477606000034],[-81.56822669199994,25.918646552000055],[-81.57990475199995,25.909857489000085],[-81.58800208199997,25.906887111000074],[-81.58381100199995,25.914374091000056],[-81.58397376199991,25.917303778000147],[-81.58617102799991,25.919826565000065],[-81.58800208199997,25.926092841000028],[-81.59642493399991,25.923773505000057],[-81.60741126199989,25.927394924000126],[-81.61742102799988,25.935532945000045],[-81.62271074099993,25.94717031500015],[-81.6328018869999,25.94000885600009],[-81.64037024599986,25.92625560099999],[-81.6500544909999,25.920477606000034],[-81.66242428299995,25.918198960000055],[-81.67430579299992,25.91990794500005],[-81.68431555899988,25.925116278000147],[-81.69102942599994,25.93353913],[-81.69444739499993,25.927923895],[-81.69786536399994,25.920477606000034],[-81.70030676999988,25.91844310099999],[-81.70579993399991,25.91376373900009],[-81.70531165299992,25.906887111000074],[-81.71149654899989,25.906887111000074],[-81.71849524599989,25.908107815000093],[-81.72223873599992,25.910060940000122],[-81.73200436099995,25.920477606000034],[-81.73582923099987,25.928371486000103],[-81.74254309799991,25.95746491100006],[-81.72858639199983,25.96271393400015],[-81.71666419199991,25.955959377000013],[-81.70567786399994,25.945705471000096],[-81.69444739499993,25.94037506700012],[-81.68504798099991,25.945013739000146],[-81.67540442599994,25.956244208000058],[-81.66779537699992,25.96971263200014],[-81.6643774079999,25.981350002000127],[-81.67918860599988,25.981838283000044],[-81.7019750639999,25.979234117000132],[-81.71149654899989,25.981350002000127],[-81.72248287699995,25.989081122000144],[-81.73167883999992,26.000637111000074],[-81.73436438699991,26.01276276200015],[-81.7257380849999,26.02228424700014],[-81.75438391799989,26.042059637000094],[-81.77009029899995,26.06777578300013],[-81.78722083199997,26.139593817000115],[-81.79149329299989,26.13019440300009],[-81.79369055899988,26.12018463700009],[-81.79417883999986,26.109605210000055],[-81.79344641799992,26.098618882],[-81.80089270699992,26.098618882],[-81.81899980399993,26.17031484600001],[-81.82754472599993,26.24884674700003],[-81.82135982999998,26.282945054000052],[-81.82140051999997,26.289618231000087],[-81.82213294199988,26.29287344000015],[-81.85179602799994,26.34198639500009],[-81.85553951699987,26.358710028000118],[-81.84870357999995,26.358710028000118],[-81.84870357999995,26.351874091000084],[-81.84186764199991,26.351874091000084],[-81.84386145699995,26.41421133000007],[-81.84870357999995,26.43378327000012],[-81.85594641799986,26.448879299000126],[-81.87584387899993,26.48029205900015],[-81.88280188699986,26.49583567900008],[-81.88243567599994,26.48118724200016],[-81.87848873599995,26.456244208000143],[-81.88280188699986,26.447455145000063],[-81.88731848899991,26.444769598],[-81.89403235599985,26.447495835000055],[-81.89867102799988,26.452093817],[-81.9033096999999,26.45490143400006],[-81.92373613199987,26.45490143400006],[-81.97838294199994,26.482163804000137],[-81.99156653599988,26.476019598000065],[-81.99469967399995,26.47724030200008],[-82.00011145699992,26.482163804000137],[-82.00633704299985,26.47479889500015],[-82.00865637899992,26.4845238300001],[-82.00885982999998,26.499335028000147],[-82.0061742829999,26.514064846000153],[-82.00011145699992,26.523179429000052],[-81.99596106699997,26.522772528000033],[-81.9892471999999,26.511704820000105],[-81.98208574099988,26.508937893000123],[-81.97447669199994,26.510443427],[-81.97004146999987,26.514146226000136],[-81.96572831899996,26.51886627800006],[-81.93846594999988,26.535467841000113],[-81.91177324099992,26.55866120000003],[-81.89305579299987,26.58612702000009],[-81.89708411399992,26.611273505000057],[-81.88556881399992,26.624172268000066],[-81.84186764199991,26.66315338700015],[-81.83812415299987,26.672430731000087],[-81.82917232999995,26.681382554000137],[-81.81798255099994,26.685451565],[-81.8077286449999,26.68024323100009],[-81.79767818899987,26.68675364799999],[-81.79010982999989,26.69407786700019],[-81.78453528599991,26.70307038000011],[-81.78038489499994,26.714992580000157],[-81.7953181629999,26.70970286700016],[-81.81920325399997,26.69700755400011],[-81.83812415299987,26.694525458],[-81.85460364499988,26.688421942],[-81.87389075399992,26.67405833500011],[-81.90672766799992,26.64264557500009],[-81.91759192599991,26.626654364],[-81.94774329299992,26.548895575000085],[-81.95173092399989,26.54364655200011],[-81.95978756399984,26.539862372000087],[-81.98322506399992,26.53375885600009],[-81.99266516799992,26.529364325000117],[-81.99266516799992,26.54364655200011],[-82.01276607999998,26.535956122000087],[-82.02668209499986,26.528021552000112],[-82.03905188699989,26.527899481000148],[-82.05475826699987,26.54364655200011],[-82.06309973899994,26.560980536],[-82.06126868399986,26.57343170800011],[-82.05614173099994,26.587876695000162],[-82.05475826699987,26.611273505000057],[-82.05968176999991,26.629461981000148],[-82.07725989499994,26.66498444200012],[-82.08210201699984,26.68024323100009],[-82.08128821499992,26.702704169000086],[-82.05687415299988,26.81891510600009],[-82.05475826699987,26.84125397300012],[-82.05703691299992,26.865790106000148],[-82.06456458199989,26.874945380000142],[-82.07811438699986,26.881089585000108],[-82.09850012899993,26.89655182500003],[-82.0969945949999,26.909369208000086],[-82.07750403599991,26.922919012000037],[-82.02757727799984,26.94969310100005],[-82.00572669199991,26.95380280199999],[-81.99640865799995,26.958238023000078],[-81.99083411399994,26.96556224200016],[-81.97838294199994,26.99616120000009],[-81.99510657499988,26.991522528000147],[-82.0168350899999,26.97296784100014],[-82.05744381399984,26.965318101000108],[-82.07457434799997,26.958929755],[-82.09268144399988,26.955633856000148],[-82.11558997299989,26.96137116100014],[-82.11994381399987,26.94546133000001],[-82.13198808499988,26.941839911000056],[-82.14452063699989,26.940415757],[-82.15029863199993,26.93097565300017],[-82.1551814439999,26.92763906500015],[-82.1660863919999,26.936183986000074],[-82.18443762899993,26.955145575000174],[-82.18073482999989,26.972357489],[-82.19098873599991,26.969387111000074],[-82.20738684799994,26.961818752000127],[-82.22232011599988,26.96515534100014],[-82.24201412699992,26.99551015800013],[-82.25328528599991,27.00682200700011],[-82.27383378799996,27.016017971000093],[-82.27090410099993,27.00771719],[-82.25914466099997,26.989243882],[-82.23021399599985,26.956854559000178],[-82.21922766799989,26.94773997599999],[-82.2117813789999,26.955145575000174],[-82.20128333199995,26.94415924700003],[-82.18732662699998,26.913153387000094],[-82.18101966099994,26.906805731000148],[-82.17568925699987,26.89923737200003],[-82.15990149599992,26.862250067000087],[-82.15094967399989,26.818019924000012],[-82.15025794199994,26.80316803600006],[-82.1565649079999,26.79002513199999],[-82.1655981109999,26.785793361000074],[-82.16901607999992,26.814113674000012],[-82.17764238199993,26.82485586100013],[-82.17857825399992,26.821275132000054],[-82.18431555899988,26.814276434000178],[-82.19188391799992,26.807074286000145],[-82.19810950399989,26.803127346000068],[-82.2010798819999,26.804999091000028],[-82.21076412699995,26.8150902360001],[-82.21548417899996,26.817368882000054],[-82.21861731699994,26.81631094],[-82.22044837099992,26.813950914000046],[-82.22321529899997,26.811672268000095],[-82.2291560539999,26.81053294500005],[-82.23607337099988,26.812079169000082],[-82.2455134759999,26.820502020000117],[-82.25340735599988,26.82485586100013],[-82.2676488919999,26.829575914000046],[-82.2745662099999,26.830715236000074],[-82.28380286399994,26.831000067],[-82.31383216099991,26.84935130400005],[-82.34292558499986,26.934881903000143],[-82.37002519399991,26.96137116100014],[-82.36693274599992,26.945624091000084],[-82.35362708199989,26.92210521000011],[-82.34894771999987,26.906805731000148],[-82.36099199099986,26.913275458000054],[-82.36595618399993,26.916815497000144],[-82.37002519399991,26.920396226000108],[-82.37661699099988,26.94033437700001],[-82.4671524729999,27.10203685099999],[-82.4772029289999,27.137518622000172],[-82.50088456899991,27.17902252800017],[-82.50658118399987,27.201605536000145],[-82.50182044199991,27.190334377000156],[-82.49819902299993,27.185248114000117],[-82.49299068899984,27.180487372000027],[-82.49299068899984,27.197211005000057],[-82.49632727799987,27.211493231000144],[-82.50316321499989,27.222357489000146],[-82.51341712099992,27.228908596000124],[-82.51341712099992,27.215277411000088],[-82.52086341099988,27.215277411000088],[-82.53262285099987,27.236883856000176],[-82.54918372299994,27.25657786700013],[-82.5618383449999,27.276271877000067],[-82.56187903599991,27.29779694200009],[-82.55760657499988,27.294378973000065],[-82.55406653599991,27.29242584800012],[-82.55089270699995,27.289496161],[-82.5475968089999,27.283514716000084],[-82.54076087099989,27.283514716000084],[-82.54190019399991,27.30853913],[-82.5627335279999,27.34682851800012],[-82.57363847599987,27.395086981000148],[-82.58788001199989,27.408189195000134],[-82.60676021999988,27.41705963700018],[-82.64541581899996,27.442938544000082],[-82.68272864499994,27.448716539000074],[-82.6983943349999,27.454820054000052],[-82.70982825399994,27.46938711100007],[-82.7291560539999,27.51471588700018],[-82.73253333199992,27.530585028000118],[-82.72569739499988,27.530585028000118],[-82.7105199859999,27.497503973000065],[-82.70523027299993,27.48956940300009],[-82.69481360599994,27.48289622600005],[-82.66836503799996,27.47162506700006],[-82.65746008999989,27.46165599200016],[-82.65013587099989,27.46865469000015],[-82.64549719999985,27.47662995000009],[-82.64366614499997,27.485744533000098],[-82.6443985669999,27.495835679000052],[-82.65062415299985,27.495835679000052],[-82.6577042309999,27.491522528000147],[-82.66490637899994,27.49241771000014],[-82.67178300699996,27.496893622000115],[-82.67788652299996,27.50324127800003],[-82.6607559889999,27.520331122000087],[-82.63630123599998,27.51390208500008],[-82.61050370999993,27.502101955000015],[-82.58918209499987,27.50324127800003],[-82.59947669199991,27.511175848],[-82.61042232999995,27.51715729400003],[-82.62254798099985,27.52130768400015],[-82.63695227799991,27.523749091000084],[-82.62140865799992,27.531195380000085],[-82.59203040299991,27.538478908000073],[-82.57860266799992,27.54730866100014],[-82.57241777299994,27.559515692000115],[-82.5882055329999,27.557196356000148],[-82.60098222599996,27.55239492400007],[-82.60419674399989,27.55109284100017],[-82.62267005099991,27.544175523000078],[-82.61778723899997,27.552557684000035],[-82.61514238199986,27.555812893000066],[-82.61131751199986,27.5548363300001],[-82.60570227799985,27.552883205000157],[-82.60342363199987,27.55292389500015],[-82.60118567599991,27.553900458000115],[-82.58918209499987,27.56468333500011],[-82.59186764199987,27.568345445000162],[-82.5960180329999,27.577704169000114],[-82.57457434799994,27.590725002000095],[-82.56460527299987,27.60895416900017],[-82.55744381399992,27.62962474200019],[-82.54417883999989,27.65005117400007],[-82.51667232999995,27.669907945000162],[-82.51341712099992,27.677679755000085],[-82.51012122299997,27.689398505000057],[-82.50218665299991,27.69440338700009],[-82.49307206899991,27.697088934000178],[-82.48615475199992,27.701239325000117],[-82.47036699099988,27.72931549700003],[-82.46564693899987,27.736029364000057],[-82.43773352799994,27.75336334800015],[-82.4304906889999,27.76373932500014],[-82.39818274599989,27.796047268000066],[-82.3899633449999,27.81110260600009],[-82.39268958199995,27.834051825000174],[-82.41246497299997,27.875718492000047],[-82.42174231699994,27.917181708000143],[-82.43374589799996,27.929144598000065],[-82.45116126199991,27.930731512000094],[-82.47183183499993,27.92035553600003],[-82.48070227799988,27.908433335000083],[-82.48485266799992,27.89256419500005],[-82.48615475199992,27.85578034100014],[-82.4798070949999,27.84149811400006],[-82.47809811099997,27.831284898000103],[-82.48273678299992,27.821356512000122],[-82.51829993399988,27.82265859600004],[-82.52708899599995,27.82477448100003],[-82.53962154899995,27.84398021],[-82.54092363199993,27.868801174000126],[-82.53453528599994,27.91722239800013],[-82.54112708199989,27.942775783000013],[-82.55882727799991,27.9557966170001],[-82.58495032499985,27.960638739000085],[-82.61644446499989,27.96133047100012],[-82.61644446499989,27.968736070000105],[-82.5960180329999,27.97557200700014],[-82.5960180329999,27.983058986000103],[-82.62352454299992,27.996527411000088],[-82.63621985599988,28.005804755000142],[-82.6443985669999,28.016546942000147],[-82.65062415299985,28.016546942000147],[-82.65094967399988,28.013251044000114],[-82.65062415299985,28.002915757000025],[-82.69098873599992,28.037665106000148],[-82.68834387899992,28.028998114000057],[-82.67979895699992,28.013251044000114],[-82.67788652299996,28.006293036000116],[-82.67910722599987,27.998439846000124],[-82.68415279899989,27.98729075700011],[-82.68472245999986,27.983058986000103],[-82.69054114499991,27.975531317000147],[-82.69033769399996,27.970851955000043],[-82.68130449099996,27.968736070000105],[-82.6443985669999,27.968736070000105],[-82.65684973899991,27.956244208],[-82.70274817599989,27.944728908000073],[-82.71886145699997,27.92780182500009],[-82.68024654899992,27.914129950000145],[-82.64321855399987,27.894761460000137],[-82.60472571499989,27.881496486000103],[-82.56187903599991,27.88617584800012],[-82.57079016799995,27.87982819200009],[-82.60285396999993,27.86298248900009],[-82.60130774599989,27.851141669000025],[-82.59581458199993,27.829982815000122],[-82.5960180329999,27.817938544000114],[-82.60016842399995,27.807928778000033],[-82.61363684799991,27.792710679000052],[-82.61644446499989,27.787502346000153],[-82.61790930899994,27.780991929000052],[-82.63011633999992,27.750311591000138],[-82.62311764199993,27.734035549000126],[-82.62657630099991,27.715806382000054],[-82.63776607999992,27.701117255000142],[-82.65404212099986,27.695054429000052],[-82.67247473899991,27.695054429000052],[-82.67926998599992,27.69684479400003],[-82.68472245999986,27.701239325000117],[-82.68708248599991,27.709865627000042],[-82.68602454299986,27.731634833000086],[-82.68785559799994,27.736029364000057],[-82.70921790299991,27.738430080000015],[-82.72150631399987,27.745103257000082],[-82.7393692699999,27.769517320000105],[-82.75719153599991,27.78766510600012],[-82.79596920499992,27.815334377000013],[-82.8150935539999,27.83222077],[-82.81883704299992,27.81818268400015],[-82.81069902299993,27.804429429000137],[-82.75133216099994,27.746568101000136],[-82.7393692699999,27.72858307500009],[-82.72468014199993,27.69407786700016],[-82.71800696499986,27.672064520000063],[-82.71886145699997,27.659654039000042],[-82.73131262899989,27.662054755],[-82.74254309799987,27.67975495000009],[-82.75055904899992,27.70209381700012],[-82.75365149599992,27.718654690000093],[-82.76748613199989,27.751532294000167],[-82.82852128799989,27.804999091000113],[-82.84239661399987,27.828517971000064],[-82.84455318899988,27.841864325000174],[-82.85391191299989,27.87034739799999],[-82.85606848899991,27.88996002800006],[-82.85228430899988,27.908189195000134],[-82.8431697259999,27.925441799000126],[-82.83202063699989,27.939398505],[-82.82188880099991,27.948309637000033],[-82.83136959499984,27.935126044000082],[-82.83849036399988,27.918198960000108],[-82.84072831899996,27.90070221600014],[-82.83556067599994,27.88617584800012],[-82.80223548099988,27.966620184000092],[-82.78034420499995,28.058172919000114],[-82.77904212099995,28.08470286700016],[-82.77623450399989,28.096828518000066],[-82.76732337099986,28.10590241100006],[-82.77668209499988,28.120306708000143],[-82.78246008999986,28.13544342700014],[-82.78774980399993,28.160549221000124],[-82.78848222599996,28.174017645],[-82.78734290299991,28.193752346000124],[-82.78282630099997,28.20701732000016],[-82.77350826699993,28.201564846000124],[-82.75991777299987,28.214667059000092],[-82.75381425699987,28.22797272300012],[-82.74620520699995,28.256170966000084],[-82.72492428299995,28.28416575700011],[-82.71678626199986,28.298325914000046],[-82.71886145699997,28.311428127000013],[-82.72264563699989,28.308254299000126],[-82.72549394399992,28.306708075000085],[-82.73253333199992,28.304592190000093],[-82.69668535099989,28.38886139500009],[-82.68472245999986,28.400783596000124],[-82.68472245999986,28.406927802000027],[-82.68590247299989,28.41429271],[-82.66421464799993,28.447943427000112],[-82.66307532499988,28.501898505000113],[-82.6607966789999,28.51373932500009],[-82.65050208199987,28.543646552000055],[-82.64712480399987,28.629584052000084],[-82.63695227799991,28.647162177000112],[-82.64077714799993,28.65379466400016],[-82.64378821499994,28.662502346000153],[-82.64435787699992,28.671332098000036],[-82.64069576699987,28.67853424700014],[-82.63243567599997,28.688421942000062],[-82.63194739499988,28.69529857000016],[-82.63499915299988,28.70213450699999],[-82.63695227799991,28.712062893000095],[-82.63695227799991,28.74648672100012],[-82.64020748599995,28.754950262000147],[-82.64720618399986,28.756415106000034],[-82.65420488199992,28.756252346000068],[-82.65746008999989,28.760158596000153],[-82.66222083199996,28.773260809000035],[-82.6820369129999,28.795843817],[-82.68472245999986,28.80483633000001],[-82.67100989499994,28.820217190000065],[-82.65501868399994,28.81195709800006],[-82.63011633999992,28.784369208000058],[-82.6375219389999,28.814154364000057],[-82.63853919199994,28.824693101000104],[-82.63109290299988,28.872992255000142],[-82.6336156889999,28.88764069200006],[-82.6443985669999,28.9003766950001],[-82.65123450399992,28.902980861000017],[-82.67027747299991,28.905422268000123],[-82.67788652299996,28.907904364000057],[-82.68517005099997,28.913072007000082],[-82.72716223899992,28.959173895],[-82.73228919199997,28.97646719000001],[-82.72569739499988,28.99664948100003],[-82.73778235599988,28.997626044000114],[-82.74933834499991,29.00226471600003],[-82.75511633999989,29.01015859600001],[-82.74990800699987,29.02049388200011],[-82.74718176999991,29.030422268],[-82.74705969999985,29.060614325000035],[-82.74620520699995,29.064886786000148],[-82.78335527299993,29.090969143],[-82.79474850199992,29.10805898600013],[-82.77350826699993,29.119533596000096],[-82.79051673099988,29.127427476000083],[-82.79849199099993,29.139064846000068],[-82.8008520169999,29.15468984600015],[-82.8008520169999,29.174750067000033],[-82.82070878799989,29.165920315000147],[-82.82872473899994,29.161118882000082],[-82.83336341099997,29.166652736000078],[-82.84463456899996,29.176499742000104],[-82.84923255099989,29.182196356000095],[-82.86888587099995,29.169623114],[-82.89195716099991,29.170355536000116],[-82.91429602799994,29.178656317],[-82.93175208199989,29.188421942000147],[-82.94351152299987,29.18512604400011],[-82.97183183499992,29.184515692000147],[-82.98639889199987,29.182196356000095],[-83.00422115799992,29.176174221000093],[-83.01113847599991,29.175034898000046],[-83.02391516799989,29.174750067000033],[-83.0406794909999,29.18012116100006],[-83.04527747299991,29.19183991100006],[-83.04605058499993,29.203558661000145],[-83.05158443899985,29.208929755],[-83.06582597599987,29.211574611000106],[-83.07371985599985,29.218247789000046],[-83.07298743399991,29.22736237200003],[-83.06151282499988,29.23680247600005],[-83.06895911399992,29.24575429900007],[-83.07567298099988,29.259507554],[-83.0847875639999,29.272202867000075],[-83.09902910099989,29.27777741100006],[-83.11440995999993,29.28050364800013],[-83.13231360599988,29.287258205000068],[-83.14826412699988,29.29608795800011],[-83.15770423099991,29.305121161000145],[-83.16124426999987,29.311590887000033],[-83.16356360599985,29.321682033000016],[-83.16515051999988,29.342678127000156],[-83.16787675699996,29.344305731000176],[-83.18504798099988,29.373968817],[-83.21568762899989,29.410589911000116],[-83.23281816299993,29.427069403000115],[-83.25328528599988,29.4422875020001],[-83.27818762899992,29.43854401200015],[-83.30573482999995,29.457953192000062],[-83.35631262899993,29.510565497000087],[-83.36660722599986,29.50926341400019],[-83.37950598899988,29.51508209800015],[-83.40477454299992,29.53168366100003],[-83.39989173099985,29.54092031500006],[-83.40099036399991,29.555121161000084],[-83.40562903599994,29.569525458000054],[-83.41152910099987,29.579494533000126],[-83.40111243399988,29.59056224200016],[-83.39464270699997,29.610541083000058],[-83.39297441299996,29.633734442],[-83.39728756399987,29.65452708500008],[-83.40892493399988,29.66730377800003],[-83.42593339799993,29.67202383000013],[-83.44591223899991,29.674750067],[-83.46617591099991,29.681830145000063],[-83.47484290299991,29.687567450000028],[-83.48664303299996,29.697699286],[-83.49351966099991,29.70233795800011],[-83.5276586579999,29.71600983300006],[-83.54381262899993,29.728094794000143],[-83.56200110599985,29.74575429900007],[-83.57677161399994,29.764960028000033],[-83.58287512899992,29.781805731000034],[-83.58385169199988,29.791978257000086],[-83.58910071499989,29.815904039000127],[-83.59337317599989,29.826157945000073],[-83.60277258999992,29.83250560099999],[-83.61213131399984,29.837307033000076],[-83.61636308499996,29.84259674700014],[-83.6249080069999,29.864325262000037],[-83.66246497299989,29.89866771000008],[-83.67100989499991,29.911566473],[-83.68057206899991,29.921291408000126],[-83.72447669199994,29.950140692000062],[-83.73680579299989,29.956203518000063],[-83.75413977799987,29.959865627000013],[-83.76646887899992,29.968817450000145],[-83.78770911399991,29.989691473000036],[-83.81159420499998,29.985337632000107],[-83.85643469999991,30.002386786000088],[-83.95059160099993,30.054429429000137],[-84.02403723899991,30.10659414300007],[-84.04356848899991,30.105169989],[-84.07575436099995,30.093329169000025],[-84.14761308499993,30.08787669499999],[-84.16820227799985,30.076361395000063],[-84.17833411399991,30.072821356000173],[-84.18366451699987,30.081610419000146],[-84.18814042899993,30.093573309000178],[-84.19579016799989,30.099554755],[-84.19880123599998,30.10077545800003],[-84.20042883999989,30.103338934000117],[-84.20319576699987,30.105902411000113],[-84.2091365229999,30.107082424000154],[-84.21556555899988,30.104966539000042],[-84.22126217399997,30.09577057500014],[-84.22716223899991,30.093329169000025],[-84.24767005099997,30.093329169000025],[-84.24722245999988,30.094916083000054],[-84.25039628799993,30.09760163000014],[-84.25536048099988,30.09967682500014],[-84.26065019399996,30.099554755],[-84.26964270699996,30.09267812700007],[-84.27794348899997,30.081284898000103],[-84.28368079299992,30.070746161000056],[-84.28522701699987,30.066066799000126],[-84.31688391799995,30.06781647300012],[-84.32852128799996,30.065985419000143],[-84.36436926999994,30.048529364],[-84.37071692599989,30.04047272300006],[-84.37051347599993,30.02448151200015],[-84.3770645819999,30.02728913000011],[-84.37979081899988,30.028957424000126],[-84.38361568899988,30.031927802000137],[-84.3910212879999,30.02448151200015],[-84.38727779899995,30.016424872000027],[-84.38670813699989,30.014146226000047],[-84.38825436099992,30.011908270000063],[-84.3910212879999,30.004055080000096],[-84.38784745999993,29.99892812700007],[-84.38361568899988,29.989691473000036],[-84.38072669199997,29.99359772300001],[-84.37360592399992,30.00039297100012],[-84.37051347599993,30.004055080000096],[-84.36412512899992,29.99502187700007],[-84.34386145699992,29.974025783000126],[-84.34630286399994,29.969875393],[-84.36021887899992,29.971991278000118],[-84.38512122299994,29.98139069200012],[-84.41905676999991,29.989976304000056],[-84.43830318899987,30.00120677300005],[-84.45352128799993,30.00519440300003],[-84.4661352199999,29.989691473000036],[-84.44994055899984,29.98883698100012],[-84.44644120999996,29.979315497000115],[-84.44517981699994,29.968329169000143],[-84.43569902299996,29.963039455000068],[-84.37393144399994,29.956203518000063],[-84.34300696499992,29.946763414000042],[-84.3360896479999,29.925360419000118],[-84.34898841099991,29.902044989],[-84.37734941299996,29.887355861000106],[-84.36782792899996,29.898098049],[-84.3636775379999,29.901556708000115],[-84.3636775379999,29.907782294000167],[-84.4013565749999,29.91860586100016],[-84.44253495999988,29.922064520000063],[-84.46206620999993,29.91864655200005],[-84.48106848899992,29.912909247000087],[-84.49718176999991,29.911810614000142],[-84.50837154899992,29.922064520000063],[-84.56297766799989,29.89411041900003],[-84.60435950399992,29.86469147300015],[-84.65318762899992,29.852769273000106],[-84.68321692599997,29.833929755000053],[-84.73363196499992,29.79169342700014],[-84.7461645169999,29.78583405199999],[-84.77293860599991,29.782782294000086],[-84.78823808499996,29.77871328300013],[-84.8119197259999,29.762762762000037],[-84.82787024599988,29.754380601000076],[-84.84723873599992,29.750799872000087],[-84.86099199099993,29.744289455000015],[-84.87535559799991,29.73322174700017],[-84.8866267569999,29.730047919000114],[-84.89126542899993,29.74738190300009],[-84.88695227799991,29.755601304],[-84.85716712099992,29.797919012000094],[-84.87328040299988,29.804632880000142],[-84.8864639959999,29.79913971600011],[-84.89940344999994,29.789780992000157],[-84.91486568899987,29.784898179000113],[-84.9281306629999,29.778469143],[-84.9457901679999,29.752834377000124],[-84.97093665299988,29.749579169000086],[-84.99107825399992,29.72284577000006],[-85.00426184799997,29.71600983300006],[-85.0836482409999,29.72345612200003],[-85.1242569649999,29.721828518],[-85.24071204299986,29.688706773000078],[-85.26231848899994,29.689357815000122],[-85.28563391799986,29.69281647300012],[-85.30785071499992,29.693426825000174],[-85.34609941299996,29.67837148600016],[-85.36583411399991,29.686346747000112],[-85.38215084499993,29.701564846000096],[-85.39159094999992,29.71600983300006],[-85.41063391799992,29.800116278000086],[-85.41348222599987,29.851385809000117],[-85.39842688699986,29.87360260600018],[-85.39574133999989,29.86371491100006],[-85.39842688699986,29.794826565],[-85.39586341099994,29.771877346000124],[-85.38878333199987,29.749212958000054],[-85.37779700399992,29.728176174000126],[-85.35147050699993,29.693426825000174],[-85.34398352799985,29.689113674000073],[-85.33014889199987,29.688706773000078],[-85.32054602799988,29.693304755000028],[-85.30894934799994,29.70270416900003],[-85.30186926999991,29.711859442000037],[-85.30557206899994,29.71600983300006],[-85.3065486319999,29.727728583000143],[-85.30215410099993,29.797919012000094],[-85.31167558499993,29.819525458],[-85.34361731699994,29.85578034100011],[-85.35057532499994,29.87018463700015],[-85.35651607999995,29.888739325000177],[-85.37083899599995,29.906968492000072],[-85.3887426419999,29.9232445330001],[-85.40518144399988,29.93512604400014],[-85.51976477799988,29.981756903000147],[-85.54918372299997,30.004055080000096],[-85.55426998599998,30.010199286000056],[-85.55785071499986,30.015936591000138],[-85.56053626199994,30.02269114799999],[-85.5628555979999,30.031927802000137],[-85.55549068899988,30.031927802000137],[-85.54401607999995,30.01532623900009],[-85.52342688699991,29.996893622000147],[-85.5001521479999,29.98383209800006],[-85.48033606699991,29.983547268000123],[-85.60789954299989,30.07444896],[-85.62120520699989,30.07973867400007],[-85.67088782499991,30.12295156500007],[-85.67955481699988,30.134344794000054],[-85.67153886599993,30.13637929900007],[-85.61066646999984,30.126898505000057],[-85.61143958199995,30.108465887000037],[-85.54600989499991,30.091009833000054],[-85.52871660099989,30.076361395000063],[-85.5126846999999,30.055324611000046],[-85.47752844999985,30.032863674000126],[-85.44237219999988,30.020168361000163],[-85.42634029899989,30.0282250020001],[-85.41832434799994,30.03579336100013],[-85.40225175699987,30.03969961100013],[-85.39049231699988,30.044745184000174],[-85.39500891799995,30.05556875200007],[-85.40200761599992,30.05878327000012],[-85.41836503799992,30.05784739800005],[-85.42634029899989,30.058661200000145],[-85.43053137899992,30.063055731000038],[-85.43000240799994,30.068264065000122],[-85.43097896999993,30.07050202000003],[-85.44001217399992,30.066066799000126],[-85.45197506399987,30.043605861000135],[-85.46206620999993,30.034898179000052],[-85.47691809799989,30.04157135600012],[-85.48591061099988,30.058172919000175],[-85.48387610599988,30.092108466000113],[-85.48778235599988,30.107082424000154],[-85.50560462099995,30.099269924000154],[-85.5126846999999,30.108343817000062],[-85.50894120999988,30.123602606000034],[-85.49461829299987,30.134344794000054],[-85.49461829299987,30.14057038],[-85.51349850199992,30.13934967700008],[-85.52887936099995,30.132391669000082],[-85.5442602199999,30.128078518000095],[-85.5628555979999,30.134344794000054],[-85.5633031889999,30.127590236000103],[-85.56517493399986,30.123032945000045],[-85.56761633999989,30.11908600500008],[-85.56969153599991,30.113918361000156],[-85.58332271999987,30.124212958000083],[-85.60521399599989,30.136867580000153],[-85.62828528599997,30.144598700000145],[-85.64541581899991,30.14057038],[-85.6530655589999,30.152167059000124],[-85.66258704299992,30.15875885600009],[-85.69737708199997,30.173651434000032],[-85.70543372299991,30.17902252800009],[-85.7127172519999,30.18593984600001],[-85.7205297519999,30.195786851000108],[-85.69920813699994,30.20652903900013],[-85.65729732999995,30.252101955000096],[-85.6419978509999,30.25413646000011],[-85.61807206899991,30.245835679000137],[-85.5792130199999,30.286118882000114],[-85.55549068899988,30.285142320000045],[-85.56794186099992,30.30939362200003],[-85.57697506399983,30.3211937520001],[-85.58678137899994,30.326117255000053],[-85.59650631399991,30.31826406500006],[-85.6207576159999,30.28204987200014],[-85.63857988199987,30.271470445000105],[-85.64338131399985,30.285101630000057],[-85.6548966139999,30.28359609600001],[-85.66942298099994,30.276068427000137],[-85.68325761599993,30.271470445000105],[-85.69473222599987,30.266017971000068],[-85.70173092399993,30.255031643],[-85.70864824099995,30.247015692000062],[-85.7205297519999,30.250433661000088],[-85.72032630099994,30.267564195000105],[-85.72940019399996,30.282416083000083],[-85.7425430979999,30.29840729400017],[-85.7547094389999,30.319281317000144],[-85.76598059799989,30.30158112200003],[-85.77757727799991,30.294419664000188],[-85.80923417899987,30.291408596000096],[-85.82555091099991,30.287176825000174],[-85.84390214799996,30.278225002000127],[-85.85435950399993,30.26483795800014],[-85.84715735599991,30.24730052300002],[-85.83177649599986,30.23590729400003],[-85.8204646479999,30.236029364],[-85.80719967399995,30.241115627000124],[-85.78571529899992,30.244208075000117],[-85.7672419909999,30.24054596600014],[-85.75597083199992,30.231594143000123],[-85.74669348899992,30.220282294000143],[-85.73420162699995,30.20941803600006],[-85.74913489499988,30.190497137000037],[-85.7413630849999,30.17837148600013],[-85.72301184799994,30.168158270000035],[-85.70628821499992,30.15485260600009],[-85.71373450399989,30.14057038],[-85.72638912699995,30.152167059000124],[-85.7344457669999,30.150213934000153],[-85.72834225199989,30.143866278000033],[-85.7205297519999,30.134344794000054],[-85.74425208199992,30.139471747000144],[-85.86449133999989,30.216253973000093],[-85.95006262899989,30.253078518000066],[-86.06598873599995,30.3060570330001],[-86.19286048099991,30.33978913],[-86.3648168609999,30.380764065],[-86.4849747389999,30.39276764500012],[-86.5108943349999,30.407619533000098],[-86.50975501199986,30.409125067000144],[-86.50987708199995,30.411810614000117],[-86.50877844999988,30.414943752000013],[-86.49303137899994,30.410467841000052],[-86.4126684239999,30.408107815000093],[-86.34715735599987,30.395005601000104],[-86.33482825399994,30.40009186400015],[-86.32721920499992,30.412014065000093],[-86.32188880099994,30.425604559000035],[-86.31639563699991,30.435980536000116],[-86.3116755849999,30.436468817000115],[-86.31041419199991,30.43496328300007],[-86.30955969999991,30.435980536000116],[-86.30549068899984,30.424465236000103],[-86.29816646999984,30.413234768],[-86.28718014199987,30.404689846000068],[-86.24193274599995,30.395005601000104],[-86.23574785099987,30.39899323100009],[-86.22923743399988,30.40570709800012],[-86.22630774599986,30.412054755000085],[-86.23106848899997,30.414943752000013],[-86.2464900379999,30.417303778000143],[-86.25845292899993,30.423041083000115],[-86.26089433499996,30.429999091000024],[-86.24815833199992,30.435980536000116],[-86.23444576699985,30.43447500200007],[-86.22008216099991,30.426743882000082],[-86.19286048099991,30.408107815000093],[-86.14517167899993,30.396063544000175],[-86.13512122299997,30.39130280200008],[-86.11742102799985,30.379339911000145],[-86.10777747299989,30.38670482000013],[-86.10659745999996,30.40058014500012],[-86.11436926999995,30.408107815000093],[-86.11530514199987,30.41331614799999],[-86.14565995999993,30.442206122000087],[-86.15147864499988,30.457261460000108],[-86.14631100199998,30.461737372000172],[-86.13898678299995,30.46674225500011],[-86.13825436099992,30.483140367000104],[-86.16441809799987,30.472072658000073],[-86.18203691299989,30.46881745000003],[-86.19493567599991,30.478216864000057],[-86.20714270699989,30.504868882],[-86.22325598899995,30.492254950000117],[-86.24331620999993,30.4909528670001],[-86.28600012899994,30.497463283000016],[-86.30528723899988,30.495184637000033],[-86.34854081899987,30.485419012000094],[-86.36790930899988,30.483140367000104],[-86.38219153599988,30.478420315],[-86.3946833979999,30.46881745000003],[-86.40835527299993,30.46141185100005],[-86.42625891799989,30.463324286],[-86.43980872299994,30.476141669000054],[-86.4352107409999,30.490912177000112],[-86.4126684239999,30.517971096000153],[-86.43663489499987,30.518255927],[-86.44640051999991,30.516343492000132],[-86.45360266799986,30.51113515800013],[-86.46043860599988,30.50023021000005],[-86.46983801999991,30.501695054000106],[-86.4798070949999,30.51113515800013],[-86.48835201699993,30.524115302000137],[-86.4876195949999,30.51235586100016],[-86.48253333199995,30.487494208000115],[-86.48460852799988,30.48004791900003],[-86.49498450399989,30.473089911000145],[-86.50690670499992,30.467759507000086],[-86.51976477799985,30.464504299000126],[-86.53270423099985,30.463324286],[-86.54165605399987,30.46002838700015],[-86.55406653599991,30.445502020000117],[-86.5665177069999,30.442206122000087],[-86.58991451699991,30.44521719],[-86.59117591099991,30.440822658000016],[-86.59072831899994,30.42548248900006],[-86.60228430899986,30.418280341000028],[-86.68008378799993,30.422308661],[-86.76138261599993,30.41474030200005],[-86.78254146999984,30.422308661],[-86.80459550699993,30.412543036000056],[-86.83291581899988,30.40851471600008],[-86.8889867829999,30.408107815000093],[-87.04450436099992,30.38959381700006],[-87.1439509759999,30.36570872599999],[-87.19408118399991,30.360296942000147],[-87.19005286399994,30.37132396],[-87.18358313699991,30.375718492000157],[-87.17544511599989,30.37742747599999],[-87.13809160099996,30.392645575000145],[-87.0777481759999,30.40688711100016],[-87.02310136599996,30.407375393000148],[-87.0052384109999,30.41022370000009],[-86.94017493399984,30.45648834800009],[-86.92699133999992,30.451727606000087],[-86.90835527299993,30.44277578300016],[-86.89378821499989,30.43891022300015],[-86.8924047519999,30.44965241100006],[-86.90453040299991,30.46161530199999],[-86.92520097599993,30.47016022300012],[-86.94758053299995,30.475246486000128],[-86.96442623599995,30.476996161000145],[-86.97337805899988,30.481350002000124],[-86.98680579299986,30.50055573100009],[-86.9913630849999,30.504868882],[-87.00121008999992,30.50503164300015],[-87.00869706899991,30.506577867000185],[-87.01353919199988,30.511297919000118],[-87.01528886599988,30.52106354400014],[-87.00934811099995,30.53538646000011],[-86.99474036399994,30.54612864800005],[-86.96068274599992,30.559515692000147],[-86.96149654899992,30.564154364000057],[-86.96271725199995,30.5670433610001],[-86.96812903599988,30.57318756700009],[-86.98721269399996,30.56256745000003],[-86.99754798099988,30.575873114000057],[-87.00845292899996,30.596421617000104],[-87.02961178299994,30.60732656500009],[-87.02013098899994,30.589667059000146],[-87.02122962099989,30.579657294000086],[-87.02643795499989,30.572455145000145],[-87.04784094999994,30.518133856000116],[-87.06045488199993,30.4948591170001],[-87.06753495999988,30.460598049000126],[-87.07738196499992,30.44965241100006],[-87.0929255849999,30.448919989000146],[-87.09837805899994,30.46051666900014],[-87.09675045499992,30.47687409100017],[-87.09097245999996,30.490627346000096],[-87.0977270169999,30.5038923200001],[-87.10118567599989,30.521714585],[-87.10960852799984,30.535956122000087],[-87.13133704299992,30.538397528000033],[-87.12950598899994,30.543198960000108],[-87.12702389199993,30.554754950000145],[-87.12511145699995,30.559515692000147],[-87.1422419909999,30.561835028000118],[-87.14928137899994,30.57054271],[-87.15440833199997,30.580552476000076],[-87.16612708199997,30.586818752000124],[-87.18057206899994,30.584662177000112],[-87.18419348899988,30.574123440000065],[-87.18040930899986,30.542141018000063],[-87.17613684799994,30.529933986000103],[-87.15733801999991,30.50458405200005],[-87.15306555899988,30.486883856000144],[-87.1568090489999,30.474514065000033],[-87.18040930899986,30.435980536000116],[-87.18663489499991,30.435980536000116],[-87.18879146999991,30.438421942000062],[-87.18984941299988,30.43935781500015],[-87.19408118399991,30.442206122000087],[-87.20238196499989,30.418931382000082],[-87.22154700399994,30.412787177],[-87.2441300119999,30.411078192],[-87.26292883999986,30.40127187700007],[-87.26537024599989,30.391587632000107],[-87.2623591789999,30.36701080900009],[-87.26602128799992,30.35716380400008],[-87.27476966099994,30.35301341400013],[-87.29991614499991,30.349676825000113],[-87.31012936099995,30.346625067000033],[-87.30654863199987,30.328558661],[-87.3288468089999,30.319728908000126],[-87.4710587229999,30.293687242000157],[-87.48827063699991,30.285142320000045],[-87.49640865799992,30.287502346000096],[-87.51846269399994,30.282171942000115],[-87.52920488199992,30.277736721000153],[-87.52920488199992,30.285142320000045],[-87.51764889199993,30.2892113300001],[-87.51073157499991,30.29450104400017],[-87.50475012899992,30.300238348000153],[-87.49571692599989,30.30565013199999],[-87.48424231699993,30.308661200000085],[-87.44733639199988,30.31313711100016],[-87.46442623599992,30.320868231000173],[-87.48204505099994,30.326117255000053],[-87.46983801999988,30.330226955000015],[-87.44505774599992,30.32973867400004],[-87.4330134759999,30.332342841000024],[-87.42145748599997,30.34003327000012],[-87.41392981699991,30.35016510600009],[-87.41454016799989,30.360256252000156],[-87.42682857999992,30.367743231000034],[-87.42682857999992,30.374579169000143],[-87.39736894399994,30.405340887000126],[-87.37877356699994,30.4174665390001],[-87.35484778599991,30.422308661],[-87.34561113199993,30.427679755000053],[-87.34483801999991,30.43988678600012],[-87.35008704299989,30.453599351000047],[-87.35850989499994,30.463324286],[-87.36709550699996,30.465277411000063],[-87.38707434799994,30.46328359600001],[-87.39574133999992,30.466376044000086],[-87.4026993479999,30.471340236000135],[-87.42682857999992,30.483140367000104],[-87.42682857999992,30.476996161000145],[-87.4195857409999,30.468085028000086],[-87.41193600199998,30.46108633000004],[-87.40294348899997,30.455064195000105],[-87.39207923099988,30.44965241100006],[-87.39952551999993,30.44965241100006],[-87.40111243399988,30.440130927000084],[-87.44391842399996,30.404689846000068],[-87.45441646999987,30.388373114000146],[-87.4615779289999,30.371975002000127],[-87.47370357999998,30.35919830900009],[-87.49885006399985,30.354071356000095],[-87.51357988199996,30.348211981000063],[-87.52253170499996,30.33563873900006],[-87.53408769399991,30.32355377800015],[-87.55719967399993,30.319281317000144],[-87.57286536399994,30.321519273000103],[-87.57725989499991,30.325425523000103],[-87.57823645699987,30.331447658000044],[-87.58385169199991,30.33978913],[-87.60122636599988,30.353705145000063],[-87.60558020699996,30.360296942000147],[-87.61180579299992,30.360296942000147],[-87.60997473899994,30.343573309000117],[-87.60326087099992,30.332831122000115],[-87.59927324099993,30.322211005000053],[-87.60558020699996,30.30565013199999],[-87.59447180899994,30.30487702000006],[-87.58360755099994,30.305975653000118],[-87.57359778599997,30.30878327000006],[-87.56456458199995,30.31313711100016],[-87.59015865799992,30.275376695000105],[-87.65453040299994,30.252101955000096],[-87.78648841099991,30.236761786000148],[-87.91030839799994,30.236761786000148],[-87.99840247299993,30.22361888200008],[-88.03014075399992,30.223781643000123],[-88.01817786399987,30.233832098000033],[-87.99575761599996,30.242336330000125],[-87.95750891799992,30.250433661000088],[-87.94884192599991,30.254706122000087],[-87.9429418609999,30.26215241100006],[-87.93578040299985,30.264593817],[-87.91454016799986,30.247870184000146],[-87.87507076699988,30.24152252800003],[-87.83820553299992,30.252183335000083],[-87.79234778599994,30.262884833],[-87.76423092399995,30.279527085000137],[-87.77623450399996,30.31313711100016],[-87.82347571499994,30.35179271000011],[-87.83088131399992,30.363999742000185],[-87.82835852799991,30.374945380000057],[-87.81956946499994,30.397040106000063],[-87.82127844999985,30.404689846000068],[-87.83039303299995,30.412543036000056],[-87.83446204299989,30.412502346000068],[-87.83788001199991,30.407660223000093],[-87.85114498599992,30.39350006700006],[-87.84959876199989,30.388657944999988],[-87.85073808499993,30.38670482000013],[-87.86563066299988,30.38760000200013],[-87.87710527299991,30.38959381700006],[-87.88703365799991,30.39325592700011],[-87.8957413399999,30.398382880000142],[-87.90347245999993,30.404689846000068],[-87.91136633999992,30.41356028900013],[-87.91657467399989,30.42332591400016],[-87.91934160099994,30.43406810100008],[-87.92027747299994,30.445949611000042],[-87.92332923099994,30.458197333],[-87.93008378799996,30.46881745000003],[-87.93712317599994,30.477280992000157],[-87.9407445949999,30.483140367000104],[-87.93883216099994,30.499823309000146],[-87.93065344999994,30.519110419000086],[-87.9199926419999,30.53685130399999],[-87.91030839799994,30.548976955000068],[-87.90689042899993,30.563666083000083],[-87.91246497299994,30.583726304000137],[-87.94253495999989,30.659735419000143],[-87.95384680899988,30.672430731000116],[-87.97549394399995,30.682440497000087],[-87.98818925699993,30.68431224200016],[-87.99889075399994,30.684515692000115],[-88.00625566299993,30.687811591000138],[-88.00902258999992,30.699530341000138],[-88.00869706899988,30.713853257000114],[-88.00987708199992,30.72662995000017],[-88.01598059799989,30.735337632000054],[-88.03014075399992,30.737697658000013],[-88.0228165359999,30.72357819200009],[-88.02301998599994,30.709377346000064],[-88.03014075399992,30.697211005000085],[-88.04381262899993,30.689195054000134],[-88.03766842399997,30.67519765800007],[-88.04328365799998,30.665187893000095],[-88.05256100199992,30.65436432500009],[-88.0574438139999,30.637762762000033],[-88.05874589799988,30.61782461100013],[-88.06289628799993,30.604478257000135],[-88.07030188699991,30.59414297100012],[-88.08104407499994,30.583156643000066],[-88.0845841139999,30.576157944999988],[-88.08556067599989,30.567084052],[-88.08478756399987,30.548976955000068],[-88.08682206899991,30.540961005000142],[-88.09630286399991,30.529730536000145],[-88.0983780589999,30.52106354400014],[-88.10049394399994,30.504787502000013],[-88.10993404899995,30.47089264500015],[-88.11204993399984,30.45307038000009],[-88.11021887899996,30.411200262000147],[-88.12010657499991,30.338324286000116],[-88.12633216099994,30.326117255000053],[-88.13768469999992,30.31976959800012],[-88.14224199099996,30.322577216000173],[-88.14391028599988,30.32880280200014],[-88.14614824099995,30.332342841000024],[-88.16685950399997,30.332831122000115],[-88.16730709499987,30.332342841000024],[-88.18407141799989,30.33397044500005],[-88.19408118399988,30.337103583000115],[-88.19566809799991,30.346625067000033],[-88.18712317599989,30.367743231000034],[-88.21629798099993,30.377264716000028],[-88.27794348899997,30.389064846000096],[-88.30382239499995,30.40127187700007],[-88.30532792899993,30.393622137000033],[-88.3071182929999,30.38959381700006],[-88.30899003799988,30.386216539000042],[-88.31126868399986,30.380764065],[-88.31749426999991,30.380764065],[-88.33543860599985,30.403876044000143],[-88.35533606699994,30.403753973000093],[-88.37775631399987,30.39386627800017],[-88.4031469389999,30.38760000200013],[-88.40733801999991,30.38239166900003],[-88.4065649079999,30.370835679000113],[-88.40754146999986,30.359320380000085],[-88.4173884759999,30.354071356000095],[-88.43053137899994,30.35199616100006],[-88.43675696499992,30.346625067000033],[-88.44090735599985,30.339585679000137],[-88.44782467399995,30.332342841000024],[-88.47057044199988,30.32387929900007],[-88.48770097599993,30.329982815000065],[-88.50625566299992,30.34080638200005],[-88.53319251199989,30.346625067000033],[-88.5461319649999,30.34674713700018],[-88.55846106699994,30.348456122000087],[-88.56773841099991,30.35358307500009],[-88.5742895169999,30.374660549000126],[-88.5875544909999,30.383612372000144],[-88.59121660099987,30.395005601000104],[-88.59870357999992,30.395005601000104],[-88.61693274599992,30.370347398000106],[-88.66222083199995,30.35455963700018],[-88.71165930899988,30.35028717700005],[-88.74205481699997,30.354071356000095],[-88.84585527299993,30.422593492000132],[-88.9276423819999,30.442206122000087],[-88.95189368399991,30.43235911700016],[-88.96605383999992,30.428900458000086],[-88.98228919199997,30.42853424700014],[-88.98228919199997,30.422308661],[-88.85936438699991,30.408107815000093],[-88.87608801999994,30.39520905200008],[-88.90713456899996,30.392808335000108],[-88.96861731699994,30.395005601000104],[-88.98232988199995,30.39093659100014],[-89.01341712099985,30.37742747599999],[-89.02696692599991,30.374579169000143],[-89.04356848899987,30.37274811400006],[-89.11473548099991,30.352362372000087],[-89.1778865229999,30.33722565300009],[-89.24022376199989,30.320746161],[-89.2534887359999,30.319281317000144],[-89.27098548099985,30.32282135600012],[-89.2733455069999,30.33079661700016],[-89.26488196499986,30.339992580000125],[-89.24974524599986,30.346625067000033],[-89.26797441299992,30.35521067900011],[-89.30016028599991,30.37653229400009],[-89.3217667309999,30.380764065],[-89.33193925699993,30.37714264500015],[-89.34496008999994,30.368638414000102],[-89.35480709499987,30.35858795800014],[-89.35558020699997,30.350327867000047],[-89.34727942599987,30.347479559000117],[-89.32359778599988,30.346421617000072],[-89.31867428299992,30.343207098],[-89.31834876199989,30.323960679000052],[-89.32054602799988,30.312079169000114],[-89.33023027299993,30.302883205000132],[-89.42105058499992,30.257798570000073],[-89.41380774599988,30.24469635600009],[-89.41808020699992,30.234116929000052],[-89.43472245999996,30.216253973000093],[-89.43781490799995,30.20575592700011],[-89.43858801999997,30.19733307500014],[-89.44253495999996,30.189764716000116],[-89.45518958199992,30.181545315000037],[-89.46202551999994,30.188950914000102],[-89.45677649599986,30.194647528000175],[-89.45954342399992,30.197170315],[-89.46825110599991,30.2032738300001],[-89.4768774079999,30.19334544499999],[-89.4910782539999,30.188666083000058],[-89.5059301419999,30.18943919499999],[-89.51667232999989,30.195786851000108],[-89.52350826699991,30.195786851000108],[-89.52599036399994,30.192775783000016],[-89.5363663399999,30.180324611000103],[-89.56550045499989,30.163478908000098],[-89.59593665299985,30.155910549000154],[-89.61290442599991,30.16852448100003],[-89.60317949099988,30.168646552],[-89.5969132149999,30.17039622599999],[-89.58556067599994,30.17527903900016],[-89.59601803299992,30.186997789000046],[-89.60977128799992,30.18573639500015],[-89.62584387899992,30.17918528900016],[-89.64329993399988,30.17527903900016],[-89.67638098899994,30.180609442000122],[-89.69225012899994,30.18130117400007],[-89.70840410099991,30.17527903900016],[-89.71544348899991,30.17942942900011],[-89.7360733709999,30.18496328300004],[-89.74323482999995,30.188950914000102],[-89.7481583319999,30.197211005],[-89.74754798099988,30.203680731000087],[-89.74486243399988,30.21051666900011],[-89.74323482999995,30.220038153000118],[-89.75145423099985,30.237372137000094],[-89.7703344389999,30.239691473000065],[-89.80467688699994,30.22992584800012],[-89.82624264199985,30.231594143000123],[-89.86204993399988,30.258002020000117],[-89.88377844999994,30.264715887000147],[-89.89476477799991,30.26357656500012],[-89.91356360599994,30.258978583],[-89.92442786399994,30.257798570000073],[-89.96914628799988,30.264715887000147],[-89.97850501199991,30.275376695000105],[-89.99982662699998,30.313055731000173],[-90.00389563699994,30.322699286000145],[-90.0126846999999,30.326239325000028],[-90.0585017569999,30.360296942000147],[-90.09601803299992,30.373724677000137],[-90.14346269399994,30.38507721600011],[-90.18944251199991,30.39081452000009],[-90.22240149599989,30.38760000200013],[-90.22240544245088,30.387597628561437],[-90.24547278599992,30.373724677000137],[-90.26842200399992,30.352687893],[-90.30557206899994,30.30565013199999],[-90.33116614499991,30.27602773600013],[-90.40501868399991,30.220160223000093],[-90.42845618399988,30.188950914000102],[-90.43297278599992,30.14329661700016],[-90.41405188699991,30.10659414300007],[-90.37999426999991,30.080389716000028],[-90.33910071499986,30.066066799000126],[-90.26622473899994,30.060126044000114],[-90.23102779899997,30.03974030200014],[-90.16836503799988,30.02448151200015],[-90.14517167899993,30.02383047100001],[-90.10448157499988,30.03506094000004],[-90.03697669199987,30.040269273000106],[-90.01626542899987,30.044582424000012],[-89.99644934799997,30.052435614],[-89.92731686099995,30.095526434000117],[-89.89952551999988,30.122748114000114],[-89.88044186099991,30.15485260600009],[-89.85728919199997,30.151190497000055],[-89.84927324099993,30.145331122000083],[-89.84626217399992,30.130601304000106],[-89.84072831899991,30.120266018],[-89.82762610599994,30.11107005400011],[-89.81167558499993,30.103908596000093],[-89.79784094999994,30.099554755],[-89.78880774599992,30.098863023000046],[-89.78624426999991,30.10309479400017],[-89.78351803299994,30.111558335000115],[-89.7615860669999,30.13654205900004],[-89.75283769399994,30.14911530200011],[-89.74693762899992,30.161851304000077],[-89.74323482999995,30.17527903900016],[-89.73639889199984,30.17527903900016],[-89.72891191299988,30.161688544000114],[-89.73924719999988,30.14931875200007],[-89.75035559799991,30.123358466000088],[-89.75690670499989,30.113918361000156],[-89.75413977799992,30.111395575000145],[-89.75031490799992,30.10887278900013],[-89.74640865799992,30.10529205900015],[-89.74323482999995,30.099554755],[-89.72956295499992,30.12348053600006],[-89.72891191299988,30.126898505000057],[-89.7228083979999,30.12750885600012],[-89.7076716789999,30.125433661],[-89.70225989499994,30.126898505000057],[-89.68846594999994,30.135239976000136],[-89.68342037699992,30.140041408000013],[-89.68114173099994,30.148016669000175],[-89.68358313699987,30.154242255000142],[-89.68911699099988,30.15558502800003],[-89.69416256399991,30.153143622000083],[-89.69481360599988,30.148016669000175],[-89.6985570949999,30.147894598],[-89.70645097599987,30.150213934000153],[-89.71198482999989,30.154771226000104],[-89.70840410099991,30.161688544000114],[-89.68114173099994,30.16852448100003],[-89.66738847599993,30.164007880000085],[-89.65001380099994,30.146429755000142],[-89.63955644399996,30.14057038],[-89.65294348899997,30.12348053600006],[-89.6664932929999,30.113592841000138],[-89.6769099599999,30.101223049000012],[-89.68114173099994,30.076361395000063],[-89.71051998599992,30.067531643],[-89.71898352799988,30.062323309000092],[-89.72199459499987,30.051825262000033],[-89.71861731699997,30.042222398000046],[-89.71792558499993,30.03327057500003],[-89.72891191299988,30.02448151200015],[-89.74767005099994,30.04100169500005],[-89.77358964799993,30.050482489000146],[-89.80044511599993,30.051214911000084],[-89.82209225199992,30.04157135600012],[-89.8351130849999,30.026312567000147],[-89.84040279899997,30.01141998900009],[-89.83893795499992,29.995347398000103],[-89.83193925699993,29.97671133000001],[-89.82192949099993,29.95734284100011],[-89.81114661399994,29.94717031500015],[-89.79434160099991,29.94326406500007],[-89.76683508999992,29.94257233300011],[-89.7512100899999,29.946844794000025],[-89.71662350199992,29.96051666900017],[-89.70840410099991,29.956203518000063],[-89.71092688699994,29.949937242000104],[-89.72524980399993,29.933417059000035],[-89.72891191299988,29.922064520000063],[-89.70531165299994,29.897894598000065],[-89.68651282499988,29.882554429000106],[-89.66454016799989,29.87547435100005],[-89.64159094999988,29.87514883000004],[-89.61969967399995,29.87986888200014],[-89.60240637899994,29.89077383000001],[-89.58690344999994,29.909125067000062],[-89.57559160099996,29.93105703300007],[-89.57127844999984,29.952460028000033],[-89.57119706899988,29.98847077000001],[-89.56558183499988,30.000921942000122],[-89.55142167899996,30.01141998900009],[-89.54161536399991,30.01487864799999],[-89.52114824099996,30.01935455900015],[-89.5104874339999,30.02448151200015],[-89.50308183499993,30.030747789000102],[-89.49889075399992,30.037095445000045],[-89.4954320949999,30.04413483300011],[-89.48997962099988,30.052435614],[-89.48827063699989,30.057806708000054],[-89.48932857999992,30.07054271000003],[-89.48623613199993,30.076361395000063],[-89.47907467399989,30.07998281500012],[-89.47362219999985,30.07831452000001],[-89.46825110599991,30.07290273600016],[-89.45718339799996,30.07111237200017],[-89.43472245999996,30.062567450000145],[-89.42731686099998,30.058661200000145],[-89.42731686099998,30.052435614],[-89.43472245999996,30.052435614],[-89.43472245999996,30.044989325000117],[-89.43122311099995,30.042792059000035],[-89.43008378799992,30.042710679000052],[-89.4293513659999,30.04205963700009],[-89.42731686099998,30.038072007000114],[-89.42105058499992,30.038072007000114],[-89.41502844999991,30.043646552000116],[-89.39370683499995,30.056545315000147],[-89.38634192599994,30.058661200000145],[-89.37254798099985,30.054673569999988],[-89.36603756399987,30.04865143400015],[-89.36815344999988,30.040838934000174],[-89.38011633999989,30.031927802000137],[-89.39370683499995,30.02912018400009],[-89.42194576699993,30.031236070000105],[-89.43472245999996,30.02448151200015],[-89.44058183499989,30.014227606000034],[-89.43883216099991,30.00608958500011],[-89.4349666009999,29.9984398460001],[-89.43472245999996,29.989691473000036],[-89.44220943899992,29.983058986000128],[-89.45189368399987,29.979641018000123],[-89.45470130099994,29.976385809000092],[-89.44155839799987,29.969875393],[-89.42894446499987,29.96869538000008],[-89.40074622299991,29.973049221000068],[-89.38634192599994,29.969875393],[-89.37022864499987,29.95075104400003],[-89.38174394399991,29.935532945000045],[-89.4007869129999,29.932114976000136],[-89.40746008999989,29.94879791900017],[-89.43472245999996,29.93512604400014],[-89.43472245999996,29.928900458000086],[-89.42048092399995,29.912014065000093],[-89.41364498599992,29.907782294000167],[-89.41502844999991,29.907131252000042],[-89.41331946499992,29.906154690000147],[-89.41364498599992,29.901556708000115],[-89.40746008999989,29.901556708000115],[-89.4016820949999,29.909125067000062],[-89.3904516269999,29.916449286000056],[-89.37824459499991,29.920558986000017],[-89.36953691299993,29.91864655200005],[-89.36668860599991,29.908026434000117],[-89.37425696499986,29.899074611000074],[-89.39378821499994,29.887355861000106],[-89.39378821499994,29.87986888200014],[-89.37877356699991,29.883775132000107],[-89.37287350199998,29.887396552],[-89.36644446499986,29.89411041900003],[-89.35985266799989,29.89008209800006],[-89.3316951159999,29.87986888200014],[-89.35244706899991,29.869289455000068],[-89.35899817599989,29.866848049000126],[-89.35301673099988,29.86371491100006],[-89.35033118399987,29.86078522300015],[-89.34862219999988,29.857407945000137],[-89.34532630099994,29.853216864],[-89.35789954299995,29.851874091000116],[-89.36754309799991,29.846828518000066],[-89.37474524599993,29.839992580000157],[-89.38011633999989,29.83331940300009],[-89.37218176999994,29.821844794000143],[-89.36620032499991,29.809719143000066],[-89.35850989499991,29.798976955000153],[-89.34532630099994,29.79169342700014],[-89.35562089799987,29.79242584800006],[-89.37889563699989,29.797837632000107],[-89.38634192599994,29.797919012000094],[-89.39464270699995,29.790838934000035],[-89.40428626199991,29.77130768400015],[-89.41364498599992,29.764390367000047],[-89.41173255099997,29.771144924000094],[-89.40973873599995,29.785101630000057],[-89.40746008999989,29.79169342700014],[-89.42003333199995,29.791978257000086],[-89.42723548099988,29.798041083000058],[-89.43814042899987,29.815904039000127],[-89.44640051999994,29.823187567000144],[-89.45677649599986,29.82925039300015],[-89.46906490799991,29.832912502000095],[-89.48253333199989,29.83331940300009],[-89.47809811099992,29.81565989799999],[-89.48717200399992,29.80292389500012],[-89.50243079299989,29.79169342700014],[-89.51667232999989,29.77871328300013],[-89.52725175699993,29.76072825700002],[-89.53254146999991,29.755845445000134],[-89.54458574099993,29.750799872000087],[-89.55431067599989,29.749823309000035],[-89.57628333199989,29.752590236000078],[-89.58556067599994,29.750799872000087],[-89.60147050699987,29.73484935099999],[-89.60383053299992,29.716253973],[-89.5969945949999,29.69940827],[-89.58556067599994,29.688706773000078],[-89.56566321499986,29.68593984600001],[-89.5425512359999,29.68821849200016],[-89.52212480399992,29.68732330900009],[-89.5104874339999,29.675034898000135],[-89.51724199099996,29.676336981000034],[-89.52212480399992,29.67601146000011],[-89.52627519399996,29.6751976580001],[-89.5309138659999,29.675034898000135],[-89.51602128799992,29.66730377800003],[-89.48253333199989,29.64085521000014],[-89.48253333199989,29.634100653000118],[-89.49990800699987,29.63548411700019],[-89.51382402299996,29.64398834800012],[-89.52574622299987,29.654364325000117],[-89.53718014199987,29.66136302300002],[-89.56818600199998,29.667222398000046],[-89.59581458199997,29.66885000200007],[-89.62376868399991,29.674627997000027],[-89.67251542899993,29.70148346600011],[-89.70225989499994,29.709784247000083],[-89.69351152299987,29.698797919000025],[-89.66722571499986,29.685003973000118],[-89.65387936099995,29.675034898000135],[-89.65794837099989,29.67373281500012],[-89.66746985599991,29.66885000200007],[-89.6470434239999,29.66136302300002],[-89.6465958319999,29.656561591000113],[-89.6470434239999,29.65452708500008],[-89.64541581899991,29.650091864],[-89.61969967399995,29.627264716000084],[-89.63906816299996,29.620266018],[-89.72223873599992,29.63987864800008],[-89.75690670499989,29.634100653000118],[-89.73265540299991,29.628119208],[-89.72276770699989,29.62319570500013],[-89.71593176999988,29.613592841000138],[-89.7257380849999,29.613959052000087],[-89.72891191299988,29.613592841000138],[-89.72325598899988,29.60162995000003],[-89.69481360599988,29.572007554000077],[-89.68960527299987,29.56028880399999],[-89.68374589799993,29.537990627000152],[-89.67804928299995,29.527899481000176],[-89.6683650379999,29.521795966000084],[-89.64098059799991,29.513657945000162],[-89.61754309799994,29.500555731000116],[-89.59243730399996,29.50287506700009],[-89.57811438699989,29.497503973000118],[-89.58263098899994,29.494452216000028],[-89.58324133999989,29.493353583000086],[-89.58556067599994,29.490057684000032],[-89.56916256399985,29.48460521000003],[-89.54157467399992,29.470851955000104],[-89.52350826699991,29.46963125200007],[-89.52350826699991,29.46279531500015],[-89.53368079299985,29.44912344000004],[-89.5374242829999,29.43500397300009],[-89.53246008999994,29.42780182500014],[-89.51667232999989,29.43480052300014],[-89.51895097599987,29.418158270000095],[-89.52879798099987,29.411566473],[-89.53962154899996,29.409979559000178],[-89.54458574099993,29.408148505],[-89.53986568899991,29.39777252800009],[-89.52916419199991,29.39321523600016],[-89.5157771479999,29.392523505000113],[-89.45612545499992,29.403509833000086],[-89.43394934799994,29.403469143000095],[-89.41364498599992,29.393866278000086],[-89.41063391799995,29.39077383000001],[-89.40099036399997,29.392482815000122],[-89.39273027299987,29.391791083000083],[-89.38634192599994,29.387640692000147],[-89.38011633999989,29.387640692000147],[-89.37214107999993,29.39264557500009],[-89.36164303299998,29.394354559000092],[-89.35016842399992,29.39264557500009],[-89.3367813789999,29.390570380000057],[-89.33702551999997,29.385239976000022],[-89.34357662699995,29.381293036000116],[-89.35179602799985,29.380194403000147],[-89.36270097599993,29.380194403000147],[-89.37352454299992,29.377020575000085],[-89.37979081899996,29.37002187700004],[-89.3809301419999,29.362941799000154],[-89.37637285099996,29.359767971000093],[-89.36774654899995,29.357611395],[-89.35317949099993,29.348211981000144],[-89.34227454299986,29.346096096000153],[-89.33409583199995,29.3471540390001],[-89.31920325399989,29.351792710000137],[-89.29824785099991,29.35447825700011],[-89.29002844999985,29.357123114],[-89.28136145699995,29.357611395],[-89.2702530589999,29.35293203300007],[-89.26406816299996,29.34528229400014],[-89.26105709499987,29.326320705000125],[-89.25719153599994,29.318793036000088],[-89.2444555329999,29.31598541900003],[-89.2271215489999,29.322211005],[-89.21104895699992,29.335272528000143],[-89.20197506399992,29.35293203300007],[-89.19709225199995,29.353461005000057],[-89.19566809799989,29.35203685099999],[-89.19554602799991,29.34935130400011],[-89.19448808499996,29.346096096000153],[-89.18993079299992,29.346380927],[-89.18773352799991,29.340399481000176],[-89.18736731699991,29.33038971600008],[-89.18834387899996,29.318793036000088],[-89.17804928299995,29.3229841170001],[-89.17406165299988,29.325628973],[-89.1687719389999,29.316229559000153],[-89.16218014199983,29.310126044000082],[-89.15636145699997,29.30296458500014],[-89.15355383999992,29.29083893400006],[-89.1436254549999,29.295843817000087],[-89.13988196499989,29.29828522300012],[-89.13044186099998,29.287502346000036],[-89.12694251199989,29.276516018000063],[-89.12315833199995,29.267889716000138],[-89.1126195949999,29.264146226000108],[-89.11856035099991,29.255438544000057],[-89.12653561099998,29.24970123900006],[-89.13613847599996,29.245917059000032],[-89.14736894399995,29.243068752000013],[-89.14736894399995,29.23680247600005],[-89.10578365799996,29.226263739],[-89.10024980399994,29.21458567899999],[-89.08714758999989,29.20693594000006],[-89.07135982999995,29.202826239000117],[-89.05797278599994,29.202093817000087],[-89.06094316299995,29.20612213700015],[-89.06480872299997,29.21637604400017],[-89.04698645699989,29.218451239],[-89.03246008999986,29.21662018400012],[-89.02041581899994,29.20945872599999],[-89.0101619129999,29.195868231000034],[-89.03062903599988,29.195868231000034],[-89.03062903599988,29.188421942000147],[-89.02147376199989,29.186835028000115],[-89.01740475199995,29.184515692000147],[-89.0101619129999,29.174750067000033],[-89.0318904289999,29.180080471000068],[-89.03892981699994,29.177923895000088],[-89.04369055899984,29.16791413],[-89.05113684799993,29.16791413],[-89.05101477799984,29.174709377000045],[-89.05207271999993,29.182562567],[-89.05113684799993,29.188421942000147],[-89.06525631399985,29.18496328300013],[-89.08311926999994,29.173651434000146],[-89.09699459499991,29.159613348000036],[-89.09894771999987,29.147406317000144],[-89.0892634759999,29.148627020000063],[-89.02318274599989,29.147406317000144],[-89.05158443899991,29.097357489000114],[-89.06480872299997,29.08600495000014],[-89.06554114499991,29.10114166900014],[-89.07152258999992,29.11249420800011],[-89.08263098899992,29.119045315],[-89.09894771999987,29.119533596000096],[-89.09276282499991,29.110907294000086],[-89.0875138009999,29.10106028900016],[-89.08438066299993,29.090155341000084],[-89.08462480399987,29.078558661000088],[-89.09630286399988,29.086859442000144],[-89.10130774599992,29.09186432500009],[-89.10578365799996,29.09967682500009],[-89.11107337099986,29.086127020000117],[-89.12360592399995,29.072088934000146],[-89.15050208199995,29.048163153000118],[-89.15343176999993,29.029933986000046],[-89.13365637899994,28.996242580000043],[-89.14736894399995,28.990423895000063],[-89.15778561099995,28.99746328300013],[-89.18814042899992,29.030462958],[-89.19448808499996,29.041327216000084],[-89.1998591789999,29.05312734600015],[-89.22476152299996,29.091457424000094],[-89.23241126199989,29.09967682500009],[-89.24278723899988,29.106105861000103],[-89.24767005099994,29.105902411000145],[-89.24974524599986,29.095933335000055],[-89.24803626199986,29.086371161000056],[-89.24522864499991,29.079169012000037],[-89.24461829299986,29.072699286000116],[-89.24974524599986,29.064886786000148],[-89.2655330069999,29.059393622000115],[-89.28868567599994,29.056463934000174],[-89.30955969999992,29.050197658000126],[-89.31867428299992,29.03440989799999],[-89.32103430899988,29.02155182500014],[-89.32705644399988,29.008449611000103],[-89.37401282499991,28.947455145000035],[-89.3916723299999,28.933986721000124],[-89.41364498599992,28.92837148600013],[-89.41014563699994,28.960109768000095],[-89.40746008999989,28.969305731000148],[-89.4017634759999,28.97492096600014],[-89.38390051999991,28.987616278000118],[-89.37718665299988,28.997626044000114],[-89.35558020699997,29.02049388200011],[-89.35057532499994,29.03070709800015],[-89.35069739499991,29.042181708],[-89.35236568899992,29.052150783000073],[-89.35216223899997,29.05805084800012],[-89.34333248599992,29.064357815000065],[-89.32091223899991,29.068426825000117],[-89.31183834499988,29.072333075000117],[-89.29442298099994,29.10651276200009],[-89.28722083199989,29.117580471000124],[-89.27806555899991,29.140448309000146],[-89.27619381399987,29.16010163],[-89.2906794909999,29.161118882000082],[-89.29271399599992,29.153957424000122],[-89.29308020699993,29.141180731000173],[-89.29576575399992,29.129828192],[-89.30435136599993,29.12693919500016],[-89.3109431629999,29.133978583000143],[-89.31289628799996,29.146673895],[-89.31183834499988,29.171332098],[-89.31493079299989,29.18134186400009],[-89.3217667309999,29.181952216000138],[-89.32860266799992,29.175482489000142],[-89.3316951159999,29.164496161000088],[-89.33014889199985,29.152777411],[-89.32445227799988,29.13153717700011],[-89.3248591789999,29.119533596000096],[-89.33751380099994,29.10346100500011],[-89.36099199099993,29.09170156500012],[-89.38365637899997,29.087836005000113],[-89.39378821499994,29.095933335000055],[-89.40489661399997,29.12287018400012],[-89.40396074099988,29.130357164000188],[-89.39850826699984,29.141913153000118],[-89.40623938699986,29.148138739000057],[-89.42731686099998,29.1549339860001],[-89.48253333199989,29.243068752000013],[-89.47386633999992,29.24335358300014],[-89.45518958199992,29.25047435099999],[-89.47447669199995,29.25918203300007],[-89.49510657499988,29.259507554],[-89.50609290299992,29.250148830000157],[-89.49620520699992,29.22939687700007],[-89.55500240799991,29.248439846000153],[-89.58185787699992,29.25047435099999],[-89.6082250639999,29.256048895],[-89.61701412699996,29.269354559000117],[-89.62267005099996,29.28514232000016],[-89.63560701699993,29.293237131000136],[-89.66200415099993,29.30093020900004],[-89.66901720299984,29.294730067000117],[-89.68668729999985,29.296306510000093],[-89.73234912599989,29.306103064000112],[-89.79499799099996,29.312683680000067],[-89.81814592099988,29.316159960000093],[-89.79353141299995,29.32808812100008],[-89.77462724199988,29.332415119000174],[-89.75770510499987,29.34316310600003],[-89.74978699299993,29.355809356000023],[-89.74380557999993,29.369842817000134],[-89.74521922799991,29.38494882700017],[-89.75009984499987,29.392195228000116],[-89.76305091099988,29.393866278000086],[-89.76829993399986,29.389105536],[-89.77171790299988,29.387152411000056],[-89.77440344999985,29.384995835000055],[-89.77733313699989,29.380194403000147],[-89.78180904899993,29.391669012000126],[-89.77887936099991,29.398871161000145],[-89.77342688699989,29.404689846],[-89.77057857999992,29.411566473],[-89.77550208199989,29.42080312700007],[-89.78697669199994,29.41852448100009],[-89.80842037699998,29.408148505],[-89.81452389199987,29.410834052000084],[-89.81981360599994,29.417059637000037],[-89.82380123599992,29.42397695500013],[-89.82579505099994,29.428615627000156],[-89.82738196499989,29.430487372000027],[-89.8298233709999,29.432440497000172],[-89.83185787699995,29.435858466000084],[-89.83193925699993,29.4422875020001],[-89.8294978509999,29.44733307500003],[-89.82485917899986,29.452785549000065],[-89.82030188699991,29.456366278000033],[-89.8182673819999,29.455959377000127],[-89.81387285099993,29.468166408000013],[-89.81631425699996,29.474351304000077],[-89.8399145169999,29.479437567],[-89.84740149599986,29.4824079450001],[-89.85171464799994,29.480047919000143],[-89.85309811099992,29.466213283000155],[-89.86025956899988,29.443752346000153],[-89.87694251199991,29.44891998900006],[-89.90770423099991,29.47703685100005],[-89.94163977799985,29.46442291900017],[-89.97118079299992,29.473374742000107],[-90.08039303299992,29.537258205000015],[-90.09947669199991,29.544663804000106],[-90.11620032499985,29.547023830000153],[-90.12970943899991,29.544663804000106],[-90.13316809799991,29.539129950000085],[-90.11998450399996,29.53168366100003],[-90.12743079299993,29.524237372000027],[-90.14362545499989,29.537420966000088],[-90.1668595039999,29.56769440300017],[-90.1820369129999,29.579494533000126],[-90.18785559799997,29.569281317],[-90.20299231699997,29.55231354400003],[-90.20933997299987,29.53847890800013],[-90.18879146999987,29.53782786700019],[-90.1820369129999,29.53847890800013],[-90.1820369129999,29.53168366100003],[-90.19782467399995,29.52578359600007],[-90.20592200399989,29.524115302000055],[-90.21556555899984,29.524237372000027],[-90.21027584499987,29.51512278900005],[-90.20604407499985,29.511419989],[-90.20156816299989,29.51243724200016],[-90.19570878799993,29.51801178600009],[-90.18610592399997,29.511867580000096],[-90.14346269399994,29.47679271000011],[-90.13345292899996,29.471625067],[-90.12368730399993,29.46963125200007],[-90.09496008999986,29.467271226000104],[-90.06981360599988,29.460028387000094],[-90.04662024599995,29.447251695000045],[-90.02375240799994,29.428615627000156],[-90.03917395699997,29.422756252000013],[-90.04735266799989,29.416815497000087],[-90.05052649599993,29.407294012000094],[-90.05109615799991,29.39077383000001],[-90.04515540299988,29.38556549700003],[-90.04059811099995,29.380438544000114],[-90.03742428299998,29.373968817],[-90.03628495999992,29.365871486000074],[-90.03742428299998,29.33926015800013],[-90.04051673099988,29.346869208000086],[-90.04454505099993,29.353094794000057],[-90.05028235599991,29.35748932500003],[-90.0585017569999,29.359767971000093],[-90.05638587099989,29.341131903000115],[-90.04751542899993,29.325018622000034],[-90.03400631399987,29.31268952000009],[-90.01756751199987,29.305121161000145],[-90.01756751199987,29.29828522300012],[-90.03742428299998,29.29083893400006],[-90.05089270699995,29.30756256700009],[-90.0674535799999,29.310126044000082],[-90.07579505099991,29.301459052],[-90.06476803299995,29.28461334800009],[-90.09504146999983,29.283840236000156],[-90.09996497299991,29.253851630000025],[-90.08385169199993,29.225409247000083],[-90.05109615799991,29.22939687700007],[-90.05744381399985,29.213446356000148],[-90.08023027299986,29.174709377000045],[-90.08584550699987,29.16791413],[-90.10020911399992,29.157945054000027],[-90.11388098899988,29.144191799000097],[-90.13076738199987,29.132025458],[-90.14728756399987,29.12693919500016],[-90.19847571499992,29.098293361000017],[-90.22923743399988,29.086655992000185],[-90.24404863199996,29.09149811400009],[-90.23770097599993,29.09682851800015],[-90.23595130099994,29.10659414300009],[-90.23668372299997,29.119533596000096],[-90.23973548099985,29.131822007000054],[-90.2460017569999,29.140366929000077],[-90.26740475199995,29.158026434000178],[-90.27131100199995,29.167425848],[-90.26716061099992,29.17763906500015],[-90.26056881399984,29.188299872000172],[-90.25715084499993,29.198919989000114],[-90.25621497299994,29.210760809000174],[-90.25169837099988,29.22479889500012],[-90.2503555979999,29.23680247600005],[-90.25108801999994,29.24738190300009],[-90.25446529899995,29.259914455000015],[-90.26081295499998,29.26947663],[-90.27082271999987,29.270982164000042],[-90.27208411399997,29.26357656500015],[-90.27928626199991,29.247300523000103],[-90.28746497299991,29.235174872000034],[-90.29124915299994,29.239935614000117],[-90.30068925699996,29.25755442900005],[-90.33751380099994,29.293605861000014],[-90.33910071499986,29.305121161000145],[-90.33910071499986,29.311265367000104],[-90.3514298169999,29.308539130000053],[-90.35985266799986,29.303371486000128],[-90.36481686099992,29.29462311400006],[-90.36636308499996,29.28119538000009],[-90.36994381399991,29.27090078300016],[-90.39370683499993,29.243068752000013],[-90.39370683499993,29.29828522300012],[-90.39956620999986,29.311590887000033],[-90.41954505099994,29.34056224200005],[-90.42503821499989,29.346096096000153],[-90.42589270699997,29.35040924700014],[-90.43443762899992,29.357245184000178],[-90.44424394399994,29.35765208499999],[-90.44896399599995,29.342678127000156],[-90.45201575399994,29.32713450700005],[-90.45995032499991,29.31411367400015],[-90.48306230399996,29.29083893400006],[-90.49644934799993,29.306138414000102],[-90.50625566299988,29.304510809000174],[-90.51561438699991,29.29596588700015],[-90.52745520699997,29.29083893400006],[-90.56200110599988,29.300726630000057],[-90.5718481109999,29.305121161000145],[-90.55821692599994,29.311265367000104],[-90.55821692599994,29.318793036000088],[-90.56932532499988,29.320705471000128],[-90.57811438699986,29.319525458000026],[-90.58364824099995,29.314520575000145],[-90.58551998599992,29.305121161000145],[-90.59496008999986,29.30833567899999],[-90.60277258999994,29.30756256700009],[-90.60741126199987,29.30198802300008],[-90.60724850199992,29.29083893400006],[-90.60244706899991,29.287827867000043],[-90.5792537099999,29.28461334800009],[-90.5812882149999,29.266302802000112],[-90.5921931629999,29.254787502000095],[-90.59821529899988,29.24433014500001],[-90.58551998599992,29.22939687700007],[-90.59528561099997,29.21857330900015],[-90.60309811099995,29.222316799],[-90.61082923099988,29.23297760600003],[-90.62022864499991,29.243068752000013],[-90.62702389199984,29.235744533000098],[-90.63239498599998,29.22528717700011],[-90.64073645699995,29.202093817000087],[-90.63605709499984,29.19782135600018],[-90.63390051999994,29.195868231000034],[-90.64085852799994,29.157416083000115],[-90.64073645699995,29.14061107000011],[-90.64704342399989,29.153713283000073],[-90.65241451699987,29.162298895],[-90.66368567599994,29.164618231000144],[-90.67487545499995,29.161118882000082],[-90.6768692699999,29.154771226000136],[-90.67544511599993,29.145697333000143],[-90.6763809889999,29.137396552000055],[-90.69029700399987,29.13153717700011],[-90.69359290299994,29.126654364000146],[-90.69786536399994,29.12177155200008],[-90.70592200399997,29.119533596000096],[-90.71153723899997,29.12372467700011],[-90.72712154899997,29.130357164000188],[-90.74323482999995,29.13084544500016],[-90.75059973899992,29.11640045800011],[-90.75796464799993,29.115912177000112],[-90.79308020699992,29.12620677300005],[-90.80524654899989,29.12693919500016],[-90.7969457669999,29.138820705000125],[-90.78075110599985,29.14276764500003],[-90.76984615799998,29.14911530200014],[-90.77725175699996,29.16791413],[-90.79531816299988,29.16063060099999],[-90.8120824859999,29.166245835000083],[-90.82860266799989,29.176336981000063],[-90.84618079299992,29.182196356000095],[-90.83991451699987,29.166245835000083],[-90.84414628799988,29.157294012000147],[-90.86668860599988,29.147406317000144],[-90.86986243399994,29.143703518],[-90.87059485599988,29.13914622600005],[-90.87364661399997,29.135402736000014],[-90.88402258999984,29.13377513199999],[-90.92992102799994,29.171291408000016],[-90.95518958199989,29.185736395000063],[-90.9823298819999,29.19155508000004],[-91.01065019399994,29.182196356000095],[-91.01121985599991,29.19330475500011],[-91.0078832669999,29.20156484600001],[-91.00080318899984,29.206773179000024],[-90.9901423819999,29.208929755],[-90.99925696499989,29.21808502800018],[-91.01549231699994,29.223537502000042],[-91.03099524599995,29.224310614000146],[-91.03795325399993,29.219794012000175],[-91.04124915299987,29.20465729400009],[-91.05011959499993,29.19700755400005],[-91.06334387899993,29.194810289000163],[-91.07957923099991,29.195868231000034],[-91.0890193349999,29.200669664000102],[-91.11229407499994,29.21906159100014],[-91.12393144399994,29.22321198100009],[-91.22858639199993,29.238592841000052],[-91.28514563699991,29.260891018000066],[-91.32799231699991,29.29486725500011],[-91.33967037699992,29.33926015800013],[-91.32949785099996,29.323919989],[-91.31212317599989,29.319322007000057],[-91.29312089799988,29.32322825700005],[-91.27818762899994,29.333075262000147],[-91.26659094999991,29.350816148000078],[-91.25861568899987,29.36709219],[-91.24657141799986,29.378119208000143],[-91.22297115799991,29.380194403000147],[-91.22716223899994,29.36351146000011],[-91.2149145169999,29.343329169000086],[-91.19131425699992,29.331447658000126],[-91.16148841099994,29.33926015800013],[-91.1621801419999,29.305812893000095],[-91.16616777299996,29.290920315000122],[-91.17577063699994,29.27777741100006],[-91.16527258999987,29.27496979400003],[-91.15770423099991,29.26976146000011],[-91.15367591099994,29.261704820000187],[-91.15404212099986,29.25047435099999],[-91.13239498599988,29.257391669000086],[-91.12222245999993,29.26300690300009],[-91.11310787699995,29.270982164000042],[-91.11799068899992,29.275783596000124],[-91.12254798099985,29.28213125200016],[-91.12734941299993,29.28461334800009],[-91.12734941299993,29.29083893400006],[-91.10985266799989,29.316555080000096],[-91.12157141799989,29.338120835000023],[-91.17711341099992,29.37933991100006],[-91.20860755099994,29.395697333000086],[-91.21983801999994,29.404445705000157],[-91.22240149599993,29.411607164000188],[-91.22105872299994,29.428290106000034],[-91.22297115799991,29.43480052300014],[-91.22801673099985,29.438381252000013],[-91.24111894399991,29.441717841000024],[-91.24742591099997,29.44570547100001],[-91.26256262899994,29.469061591000113],[-91.2674861319999,29.495794989000117],[-91.26329505099987,29.522284247000087],[-91.25084387899997,29.544663804000106],[-91.24046790299988,29.55304596600017],[-91.22911536399991,29.55988190300017],[-91.22008216099988,29.56940338700018],[-91.21670488199996,29.585638739000117],[-91.22004146999988,29.598863023000078],[-91.22838294199995,29.60805898600013],[-91.24120032499991,29.612982489],[-91.25767981699988,29.613592841000138],[-91.24779212099989,29.590521552],[-91.25316321499992,29.57632070500007],[-91.28189042899987,29.55556875200007],[-91.28612219999991,29.546047268000095],[-91.28449459499987,29.535467841000024],[-91.28050696499992,29.52708567900008],[-91.27818762899994,29.524237372000027],[-91.28237870999996,29.51382070500013],[-91.29442298099988,29.494330145000145],[-91.29865475199989,29.483832098000093],[-91.32091223899994,29.496649481000116],[-91.36351477799988,29.51211172100012],[-91.38744055899984,29.51801178600009],[-91.41185462099992,29.51894765800016],[-91.42389889199993,29.521185614000146],[-91.42902584499993,29.527899481000176],[-91.42438717399992,29.538397528000147],[-91.41673743399988,29.547919012000154],[-91.41515051999994,29.55683014500009],[-91.42902584499993,29.565822658000013],[-91.45250403599991,29.551581122000115],[-91.49323482999998,29.539618231000173],[-91.53433183499996,29.534002997000172],[-91.55931555899988,29.53847890800013],[-91.54539954299989,29.54881419500005],[-91.54124915299985,29.569037177000055],[-91.54515540299985,29.591864325000174],[-91.55565344999994,29.609849351000108],[-91.55882727799988,29.619208075000145],[-91.55899003799996,29.631659247000172],[-91.56078040299994,29.64248281500006],[-91.56895911399994,29.6471214860001],[-91.57970130099994,29.64520905200014],[-91.60179602799985,29.636623440000122],[-91.61335201699987,29.634100653000118],[-91.63971920499998,29.63548411700019],[-91.64415442599993,29.645168361000128],[-91.63829505099991,29.662095445000134],[-91.63385982999992,29.68528880400005],[-91.63044186099992,29.72882721600008],[-91.63792883999989,29.742092190000037],[-91.66173255099997,29.750799872000087],[-91.68468176999997,29.753119208000054],[-91.77843176999997,29.74848053600014],[-91.79572506399987,29.742377020000145],[-91.83307857999992,29.72345612200003],[-91.85846920499995,29.71906159100014],[-91.86668860599994,29.729396877000152],[-91.86750240799995,29.74363841400007],[-91.87059485599994,29.750799872000087],[-91.87791907499985,29.759344794000025],[-91.87441972599996,29.778143622000172],[-91.86465410099991,29.79694245000003],[-91.85358639199985,29.80536530200008],[-91.84605872299991,29.798773505],[-91.8370662099999,29.787665106000148],[-91.82945716099997,29.784409898000106],[-91.82628333199989,29.80170319200012],[-91.82868404899995,29.81533437700007],[-91.83580481699988,29.825262762000147],[-91.84752356699988,29.831244208000086],[-91.89395097599993,29.83763255400011],[-91.90672766799989,29.837103583000115],[-91.93350175699987,29.819403387000126],[-91.94513912699989,29.821844794000143],[-91.95555579299989,29.829169012000147],[-91.96686764199987,29.83331940300009],[-91.9844457669999,29.831976630000113],[-91.98631751199986,29.82737864799999],[-91.98448645699997,29.818793036000056],[-91.99071204299995,29.80536530200008],[-92.00047766799989,29.798895575000177],[-92.08641516799989,29.771470445000105],[-92.09996497299994,29.764390367000047],[-92.12246660099996,29.743882554000027],[-92.13463294199994,29.736151434000092],[-92.14899654899992,29.73647695500001],[-92.13646399599992,29.745306708000086],[-92.13414466099994,29.75682200700011],[-92.14146887899993,29.766913153000175],[-92.15831458199993,29.77122630400008],[-92.16197669199991,29.76829661700005],[-92.1702367829999,29.7546247420001],[-92.17568925699993,29.750799872000087],[-92.1808975899999,29.751939195000134],[-92.20238196499984,29.764390367000047],[-92.1988012359999,29.74673086100013],[-92.19102942599989,29.723781643000148],[-92.18150794199988,29.704006252000127],[-92.17227128799993,29.69550202],[-92.16466223899988,29.69773997599999],[-92.15021725199992,29.707505601000108],[-92.12653561099992,29.711371161000113],[-92.11717688699989,29.713934637000033],[-92.10879472599993,29.71442291900003],[-92.09996497299994,29.709784247000083],[-92.12926184799997,29.692613023000078],[-92.14150956899994,29.688706773000078],[-92.1135961579999,29.63764069200009],[-92.10741126199994,29.62042877800018],[-92.09996497299994,29.62042877800018],[-92.08446204299995,29.630316473000093],[-92.06017005099997,29.636948960000055],[-92.03701738199992,29.637030341000028],[-92.02489173099994,29.627264716000084],[-92.05528723899991,29.621527411000113],[-92.06737219999991,29.616156317000062],[-92.07331295499992,29.606146552000084],[-92.05280514199987,29.599920966000024],[-92.06590735599994,29.587836005000113],[-92.09337317599989,29.587144273000074],[-92.13686501599997,29.58686246000012],[-92.17386583499987,29.57618869100018],[-92.2411609829999,29.545530647000145],[-92.27649313299986,29.533836437000062],[-92.31430732699994,29.534368574000112],[-92.46507262199991,29.56010393800007],[-92.48976175999991,29.562993557000155],[-92.51439986699992,29.566359096000085],[-92.54621334499988,29.571682033000158],[-92.68305794599988,29.604132864000075],[-92.79533837899993,29.644241026000074],[-92.85266058699992,29.66741492400017],[-92.91567089599988,29.692979464000086],[-93.02684485599985,29.732855536000056],[-93.0944503579999,29.751526132000052],[-93.19959294999992,29.77281118800012],[-93.25353181299991,29.77635524700015],[-93.30851449699986,29.769151067000152],[-93.34549494599985,29.762044834000147],[-93.38542765099989,29.767576766],[-93.42081021899995,29.768261434000163],[-93.45339635799988,29.770424944000023],[-93.49742591099994,29.769191799000122],[-93.55851309299987,29.763120991],[-93.6408164599999,29.750313051000045],[-93.70118545899996,29.742633382000047],[-93.73937984299994,29.737247514],[-93.76695774499993,29.726333316000147],[-93.79293648899994,29.71755522200011],[-93.82137585599989,29.709450505000103],[-93.83102782699993,29.70013488200009],[-93.8509722099999,29.723283778000066],[-93.87915518399987,29.749883544000127],[-93.89369709399995,29.790814473000136],[-93.88823839099993,29.807175275000173],[-93.85735500599989,29.818852076000052],[-93.8206678189999,29.824213748000044],[-93.78194133199986,29.856514911000133],[-93.77208411399988,29.904689846000096],[-93.75995235399992,29.96057613900011],[-93.76936603999987,29.978315924000086],[-93.78890095999989,29.98506584900009],[-93.8186460529999,29.9867553670001],[-93.83459768499989,29.983621329000027],[-93.85407467399992,29.98655833500014],[-93.8580216139999,29.968247789000156],[-93.86754309799991,29.950018622000087],[-93.92439858799992,29.865621589000103],[-93.93811194999991,29.80590269000014],[-93.93271171199984,29.776194375000088],[-93.87584387899996,29.723374742000047],[-93.85993404899995,29.69257233300009],[-93.8758031889999,29.675034898000135],[-93.88731848899991,29.674546617000047],[-93.91673743399991,29.681830145000063],[-94.03758704299995,29.68402741100006],[-94.06012936099984,29.681830145000063],[-94.10195878799993,29.67059967700005],[-94.1314591139999,29.658880927000084],[-94.21597245999996,29.617499091000138],[-94.33527584499986,29.57819245000014],[-94.65428626199991,29.451890367000157],[-94.6907445949999,29.428615627000156],[-94.74242102799994,29.37466054900015],[-94.7627660799999,29.366522528000033],[-94.78620357999989,29.370306708000058],[-94.79063880099997,29.380031643],[-94.78205318899987,29.393377997000115],[-94.70099850199992,29.46279531500015],[-94.67516028599991,29.47479889500006],[-94.65160071499994,29.478257554000077],[-94.64012610599991,29.48143138200014],[-94.63003495999992,29.485663153000147],[-94.62242591099991,29.490057684000032],[-94.5926000639999,29.517564195000165],[-94.58088131399992,29.524237372000027],[-94.57213294199994,29.526434637000122],[-94.52188066299996,29.523993231000087],[-94.50446529899989,29.526027736000017],[-94.49181067599991,29.534125067000147],[-94.48525956899994,29.552150783000073],[-94.48595130099989,29.56610748900015],[-94.49494381399988,29.55878327000012],[-94.51012122299989,29.549017645],[-94.52965247299997,29.55556875200007],[-94.54552161399991,29.568426825000117],[-94.56143144399991,29.574611721000068],[-94.6054481779999,29.552650016000158],[-94.69523245999996,29.538958957000045],[-94.7368193349999,29.528477289000126],[-94.75523544499988,29.5242712470001],[-94.7790501719999,29.529876915],[-94.7874294129999,29.54071392800013],[-94.78508043599987,29.54693368800015],[-94.77375447099988,29.541801409000144],[-94.76127407499993,29.543918331000054],[-94.74945759799994,29.561037903000067],[-94.73577877899996,29.579235245000074],[-94.7161383899999,29.611408156000135],[-94.70311039099994,29.650437504000095],[-94.69274089399997,29.696340139000153],[-94.69547032799991,29.718122638000168],[-94.70214397899991,29.735306485000176],[-94.70353180799992,29.751361552000116],[-94.71017568299993,29.76051782400019],[-94.71949365299987,29.77655053800008],[-94.73405499899987,29.782240880000145],[-94.74462680499991,29.782205729000093],[-94.76045755599995,29.77641644500007],[-94.77365462799989,29.77292786300008],[-94.7947923609999,29.771705170000175],[-94.80674323599992,29.78198929600002],[-94.8264902309999,29.768144031000034],[-94.82638591899988,29.74978678800012],[-94.84866079499994,29.717577818000123],[-94.86298413999985,29.683106243000122],[-94.8760762439999,29.665842342000172],[-94.90640953099987,29.657682431000023],[-94.91959650099993,29.655327353000033],[-94.9315557659999,29.66674091],[-94.93831675999988,29.68965262100009],[-94.94891499799988,29.694190100000085],[-94.9661721059999,29.704433957000063],[-94.99917558499989,29.71600983300006],[-95.01550240199987,29.720300111000128],[-95.02674493199989,29.736093650000026],[-95.03399277199988,29.74846130700014],[-95.0522802319999,29.749748170000128],[-95.06407630099989,29.71287669500016],[-95.05032848399988,29.7070256460001],[-95.03681235199986,29.70434292],[-95.0288240809999,29.697496674000107],[-95.01848818699992,29.695483536000083],[-95.00894678599988,29.693465439000178],[-94.9985796199999,29.68662989799999],[-94.9858013839999,29.67498539000003],[-95.0086960019999,29.659713857000053],[-95.01572326499985,29.644522457000065],[-95.01003117399989,29.625952994],[-94.98451850799988,29.606120190000023],[-94.98919473299992,29.594386967000087],[-95.00544186099987,29.578599351000054],[-95.01598059799991,29.56891510600009],[-95.02391516799987,29.542181708000083],[-94.9839111119999,29.513819470000115],[-94.90779828199993,29.496309994000097],[-94.91487330799993,29.488005564000062],[-94.92350621799993,29.475557837000068],[-94.93639075399994,29.480047919000143],[-94.95059160099994,29.473781643],[-94.96507727799991,29.46963125200007],[-94.96507727799991,29.46279531500015],[-94.9482315749999,29.451971747000144],[-94.94709225199995,29.43537018400009],[-94.94294186099992,29.422023830000096],[-94.91730709499986,29.42112864799999],[-94.91730709499986,29.428615627000156],[-94.92149817599989,29.432114976000047],[-94.92198645699997,29.43398672100004],[-94.92178300699993,29.436509507000135],[-94.91958574099993,29.436509507000135],[-94.91832434799991,29.43699778900013],[-94.91820227799984,29.44009023600002],[-94.91730709499986,29.4422875020001],[-94.88955644399988,29.400824286],[-94.87877356699997,29.393866278000086],[-94.86579342399997,29.391750393000095],[-94.82111568899992,29.373968817],[-94.82494055899994,29.37278880399999],[-94.82827714799996,29.372259833],[-94.83128821499986,29.37075429900015],[-94.83409583199992,29.366522528000033],[-94.84943600199995,29.375962632000054],[-94.87035071499992,29.380845445000105],[-94.88882402299996,29.375962632000054],[-94.8967992829999,29.3563500020001],[-94.90135657499985,29.334621486000017],[-94.91291256399987,29.315578518000127],[-94.92821204299995,29.30756256700009],[-94.94395911399988,29.318793036000088],[-94.95079505099991,29.318793036000088],[-94.9551488919999,29.306341864000057],[-94.96446692599994,29.29779694200012],[-94.98493404899992,29.28461334800009],[-94.98786373599984,29.283880927000055],[-94.99620520699989,29.285223700000145],[-94.99917558499989,29.28461334800009],[-94.99986731699994,29.281968492000185],[-94.99864661399994,29.27374909100011],[-94.99917558499989,29.270982164000042],[-95.06517493399994,29.20416901200009],[-95.08836829299989,29.188625393],[-95.1158748039999,29.174750067000033],[-95.12425696499986,29.193548895000063],[-95.13719641799989,29.198919989000114],[-95.15314693899988,29.20087311400006],[-95.17052161399995,29.208929755],[-95.16291256399992,29.20062897300012],[-95.15001380099991,29.174750067000033],[-95.15916907499988,29.15241120000017],[-95.15811113199993,29.130926825000145],[-95.15001380099991,29.089097398000135],[-95.14964758999989,29.072170315000147],[-95.15123450399992,29.058498440000033],[-95.15892493399994,29.045721747000172],[-95.23151607999993,28.995510158000098],[-95.25999915299984,28.98175690300017],[-95.31387285099989,28.92837148600013],[-95.36774654899992,28.887152411000063],[-95.37938391799992,28.880560614],[-95.40172278599994,28.878363348],[-95.41917883999992,28.87230052300011],[-95.48717200399997,28.829657294000167],[-95.60191809799991,28.763861395],[-95.64488684799997,28.745917059000146],[-95.6888728509999,28.736314195000162],[-95.73395748599987,28.733587958000026],[-95.7800186839999,28.735907294000167],[-95.81737219999988,28.732489325000145],[-95.95197506399992,28.68870677299999],[-95.94579016799995,28.676459052000112],[-95.94713294199994,28.666245835],[-95.95099850199995,28.656968492000047],[-95.9523819649999,28.640326239],[-95.9549454419999,28.636379299000012],[-95.95592200399989,28.632635809000146],[-95.95197506399992,28.62665436400006],[-95.94725501199991,28.625311591000166],[-95.94017493399993,28.62571849200016],[-95.93370520699995,28.62759023600013],[-95.9308162099999,28.630072333000054],[-95.79344641799987,28.699448960000108],[-95.7549535799999,28.712469794000082],[-95.71922766799989,28.715480861000106],[-95.83714758999989,28.646470445000162],[-95.9024145169999,28.617865302],[-96.00511633999992,28.596502997000027],[-96.06627356699997,28.553859768],[-96.12368730399987,28.536810614000146],[-96.18822180899993,28.501654364000085],[-96.21886145699995,28.489488023000018],[-96.19456946499987,28.515570380000057],[-96.16087805899988,28.537258205000125],[-96.0172419909999,28.602240302000027],[-95.99600175699993,28.606187242000185],[-95.98493404899989,28.61310455900009],[-95.98135331899991,28.628607489],[-95.98778235599991,28.64484284100014],[-96.00658118399988,28.653998114000117],[-96.02643795499998,28.651027736000017],[-96.06476803299991,28.63133372600008],[-96.07795162699993,28.62665436400006],[-96.09837805899994,28.62327708500014],[-96.15737870999986,28.598781643],[-96.20490475199998,28.5866559920001],[-96.2264705069999,28.58714427300002],[-96.22227942599994,28.602484442000147],[-96.2047419909999,28.610581773000078],[-96.15892493399991,28.615139065000122],[-96.14313717399996,28.62665436400006],[-96.13687089799993,28.62665436400006],[-96.13687089799993,28.63353099200016],[-96.15392005099997,28.635199286000088],[-96.16828365799995,28.63255442899999],[-96.18138587099992,28.628648179],[-96.19493567599989,28.62665436400006],[-96.21544348899994,28.629380601000108],[-96.22044837099989,28.6368675800001],[-96.21544348899994,28.64789459800012],[-96.19225012899992,28.680894273000106],[-96.18805904899997,28.690863348],[-96.19505774599986,28.69448476800015],[-96.21544348899994,28.694973049000126],[-96.23082434799989,28.69281647300015],[-96.2445369129999,28.68756745000014],[-96.26667232999998,28.67511627800003],[-96.26040605399993,28.68870677299999],[-96.28140214799986,28.67975495000014],[-96.30809485599991,28.651068427000023],[-96.32872473899991,28.639715887000037],[-96.34577389199987,28.635321356000148],[-96.34984290299992,28.63739655200008],[-96.35020911399994,28.644110419000114],[-96.35602779899992,28.653998114000117],[-96.38516191299996,28.679348049000154],[-96.3902074859999,28.68870677299999],[-96.38003495999993,28.700262762000122],[-96.3775935539999,28.71491120000003],[-96.38329016799987,28.73004791900003],[-96.39761308499988,28.743394273000135],[-96.40371660099987,28.738755601000104],[-96.41307532499991,28.733832098000146],[-96.41685950399992,28.729722398000103],[-96.43504798099991,28.755682684000096],[-96.43858801999991,28.763861395],[-96.44481360599985,28.763861395],[-96.44395911399994,28.74925364799999],[-96.43838456899994,28.73175690300003],[-96.43097896999986,28.716498114000057],[-96.4243057929999,28.708644924000065],[-96.41710364499997,28.710679429000106],[-96.40827389199993,28.716945705000153],[-96.40078691299993,28.719875393000095],[-96.39761308499988,28.712062893000095],[-96.40029863199996,28.702582098000093],[-96.40648352799994,28.69676341400013],[-96.41299394399991,28.69281647300015],[-96.41685950399992,28.68870677299999],[-96.41637122299993,28.680975653000175],[-96.41270911399988,28.673773505000057],[-96.41030839799993,28.666327216000166],[-96.41372636599993,28.65770091400016],[-96.41681881399984,28.643703518],[-96.40343176999994,28.635565497000087],[-96.36969967399995,28.62665436400006],[-96.42764238199993,28.59540436400009],[-96.46251380099994,28.583197333000115],[-96.49323482999995,28.578924872000087],[-96.47789466099991,28.591620184000146],[-96.45982825399989,28.59332916900017],[-96.44481360599985,28.597357489000117],[-96.43858801999991,28.616766669000143],[-96.44713294199991,28.63564687700007],[-96.48468990799992,28.61261627800009],[-96.49323482999995,28.63662344000015],[-96.49738521999988,28.644761460000055],[-96.50747636599996,28.64345937700007],[-96.51976477799991,28.64044830900015],[-96.53042558499993,28.64345937700007],[-96.5362849599999,28.646063544000143],[-96.54987545499995,28.645493882],[-96.55467688699994,28.647162177000112],[-96.5594783189999,28.654282945000073],[-96.56029212099992,28.660711981000176],[-96.5599666009999,28.667222398000074],[-96.56151282499985,28.67511627800003],[-96.56578528599997,28.68891022300015],[-96.56725012899992,28.69651927299999],[-96.57017981699994,28.702622789000156],[-96.5785212879999,28.712062893000095],[-96.59044348899994,28.72036367400007],[-96.60383053299995,28.723700262000094],[-96.6175024079999,28.722072658000073],[-96.63036048099991,28.715480861000106],[-96.63451087099985,28.720851955000157],[-96.63914954299989,28.724188544000082],[-96.65086829299989,28.729722398000103],[-96.64981035099993,28.704820054000084],[-96.64565995999988,28.68707916900017],[-96.63719641799995,28.67161692900005],[-96.6087947259999,28.637762762000175],[-96.60488847599989,28.630560614000146],[-96.60244706899988,28.620510158000073],[-96.60309811099984,28.610174872000172],[-96.60850989499997,28.58616771000011],[-96.60863196499994,28.578924872000087],[-96.59984290299988,28.56834544500005],[-96.5919083319999,28.569647528000147],[-96.58193925699993,28.578924872000087],[-96.57017981699994,28.575384833000115],[-96.54100501199989,28.557806708],[-96.52037512899997,28.549221096000064],[-96.51366126199991,28.544134833000058],[-96.50658118399986,28.536851304000134],[-96.5012914699999,28.529120184000032],[-96.49323482999995,28.510646877000013],[-96.54552161399994,28.487738348],[-96.55467688699994,28.486070054],[-96.54759680899988,28.469305731000148],[-96.53156490799996,28.469468492000132],[-96.51423092399989,28.477972723000065],[-96.50348873599988,28.486070054],[-96.47350012899992,28.493557033000158],[-96.43565833199997,28.48135000200007],[-96.40680904899995,28.45872630400011],[-96.40379798099985,28.434881903000033],[-96.47581946499989,28.400783596000124],[-96.49510657499991,28.396470445000134],[-96.52916419199994,28.377752997000144],[-96.54474850199992,28.373480536000145],[-96.6537166009999,28.319484768000123],[-96.67137610599991,28.331854559000178],[-96.68773352799994,28.327378648000103],[-96.69831295499988,28.335882880000142],[-96.7038468089999,28.351792710000055],[-96.70592200399992,28.388495184000146],[-96.70921790299988,28.399847723000146],[-96.71849524599992,28.405462958000143],[-96.73648027299996,28.406927802000027],[-96.74176998599984,28.41058991100006],[-96.74356035099993,28.419094143000095],[-96.74437415299994,28.42845286700013],[-96.74644934799994,28.434881903000033],[-96.75129146999984,28.438666083000058],[-96.76227779899989,28.444322007000054],[-96.76695716099991,28.447943427000112],[-96.78465735599991,28.472601630000028],[-96.79332434799991,28.47972239800005],[-96.80166581899988,28.475246486000103],[-96.81012936099991,28.467840887000094],[-96.8133031889999,28.45799388199999],[-96.81065833199989,28.451849677000112],[-96.80166581899988,28.455389716000084],[-96.77745520699997,28.43740469000015],[-96.76976477799985,28.42621491100014],[-96.76695716099991,28.41071198100003],[-96.77513587099992,28.40045807500009],[-96.79385331899988,28.408189195000105],[-96.8145238919999,28.421698309000178],[-96.82835852799991,28.428697007000082],[-96.84447180899988,28.415594794000086],[-96.82510331899994,28.387925523000106],[-96.7955623039999,28.35651276200015],[-96.78115800699993,28.331854559000178],[-96.78746497299994,28.314276434000064],[-96.79710852799994,28.296942450000145],[-96.80125891799986,28.279120184000178],[-96.78233801999993,28.241603908000158],[-96.79238847599993,28.228664455000157],[-96.82835852799991,28.2089704450001],[-96.84512285099993,28.19326406500015],[-96.88023841099988,28.15062083500011],[-96.89590410099987,28.14081452000009],[-96.92821204299989,28.13324616100014],[-96.94505774599989,28.126450914000102],[-96.93346106699995,28.16290924700017],[-96.92454993399993,28.179185289000102],[-96.91030839799991,28.19525788],[-96.92471269399991,28.214097398000135],[-96.91893469999994,28.232123114000057],[-96.90880286399988,28.2487653670001],[-96.91030839799991,28.263617255000085],[-96.92194576699984,28.263332424000126],[-96.93578040299994,28.24827708500011],[-96.95933997299987,28.215765692000147],[-96.94611568899984,28.20514557500009],[-96.94343014199985,28.19135163],[-96.94871985599993,28.174221096000153],[-96.95933997299987,28.153753973],[-96.97301184799991,28.133937893000095],[-96.98436438699989,28.129543361000103],[-97.0201716789999,28.140082098000065],[-97.01626542899989,28.142279364000146],[-97.01292883999989,28.144964911000116],[-97.00975501199991,28.148667710000083],[-97.00649980399987,28.153753973],[-97.01305091099994,28.164007880000113],[-97.00743567599993,28.194525458000058],[-97.01398678299991,28.2089704450001],[-97.0201716789999,28.2089704450001],[-97.03620357999989,28.187648830000157],[-97.07135982999993,28.16811758000007],[-97.11021887899997,28.153631903000033],[-97.13752193899987,28.147528387000033],[-97.13084876199989,28.15778229400014],[-97.1385798819999,28.165594794000143],[-97.15265865799995,28.169256903000118],[-97.16478430899994,28.16738515800013],[-97.17324785099987,28.159002997000172],[-97.17731686099984,28.14801666900003],[-97.17320716099988,28.13837311400006],[-97.15733801999995,28.133856512000094],[-97.19859778599991,28.096828518000066],[-97.21751868399994,28.074774481000176],[-97.20885169199994,28.065008856000034],[-97.18667558499988,28.062486070000105],[-97.16844641799989,28.055609442],[-97.15428626199989,28.044623114000146],[-97.14427649599989,28.03021881700009],[-97.14439856699994,28.019761460000026],[-97.14867102799987,28.010199286000116],[-97.14907792899987,28.005519924000012],[-97.13752193899987,28.00971100500011],[-97.1298721999999,28.016750393],[-97.1231176419999,28.02830638200011],[-97.11823482999992,28.041734117000104],[-97.11636308499993,28.054388739],[-97.10610917899993,28.07094961100016],[-97.0574438139999,28.08881256700012],[-97.04124915299994,28.10590241100006],[-97.04491126199989,28.110419012000122],[-97.04645748599992,28.113714911000056],[-97.04539954299986,28.11481354400011],[-97.04165605399993,28.116603908000098],[-97.03441321499992,28.119574286],[-97.0240779289999,28.111802476000108],[-97.0210668609999,28.100327867000075],[-97.02765865799996,28.061590887000122],[-97.02627519399991,28.047674872000144],[-97.02497311099988,28.041449286000088],[-97.0274958979999,28.036688544000086],[-97.0379125639999,28.02708567900011],[-97.04458574099996,28.019110419000143],[-97.06114661399991,27.989243882000082],[-97.06607011599988,27.988674221],[-97.06745357999995,27.990139065000065],[-97.06753495999992,27.99282461100013],[-97.06859290299991,27.99603913],[-97.10533606699991,27.936997789000074],[-97.18407141799989,27.836615302],[-97.20628821499994,27.82172272300012],[-97.23249264199987,27.82477448100003],[-97.23249264199987,27.83222077],[-97.21198482999992,27.83222077],[-97.22325598899991,27.849066473],[-97.2359106109999,27.86383698100009],[-97.25031490799995,27.874579169000114],[-97.26720130099994,27.87938060099999],[-97.29084225199995,27.876654364000117],[-97.3313695949999,27.861070054000134],[-97.35594641799989,27.859564520000088],[-97.34898841099991,27.864935614000117],[-97.3465063139999,27.86871979400014],[-97.34532630099994,27.872748114000117],[-97.34227454299986,27.87938060099999],[-97.36815344999988,27.873236395000035],[-97.42438717399995,27.875189520000063],[-97.45213782499992,27.873195705000043],[-97.45759029899997,27.869818427000027],[-97.46019446499987,27.860663153000033],[-97.46580969999988,27.859564520000088],[-97.4733780589999,27.861029364000146],[-97.48119055899991,27.864569403000118],[-97.48692786399987,27.866359768],[-97.48827063699989,27.86863841400016],[-97.48912512899997,27.872951565000093],[-97.49229895699995,27.87718333499999],[-97.50059973899991,27.87938060099999],[-97.50454667899989,27.87885163000011],[-97.52106686099988,27.873195705000043],[-97.50487219999994,27.849025783000013],[-97.48704993399984,27.83527252800009],[-97.46397864499991,27.831732489000117],[-97.43171139199985,27.838446356000148],[-97.42218990799994,27.83270905199999],[-97.40982011599993,27.83234284100017],[-97.39818274599992,27.83690013200011],[-97.39073645699995,27.84589264500015],[-97.38560950399994,27.830064195000105],[-97.39403235599988,27.801703192000062],[-97.39073645699995,27.791245835],[-97.3718155589999,27.755316473],[-97.35606848899997,27.741766669000057],[-97.26720130099994,27.708075262000037],[-97.25959225199989,27.695054429000052],[-97.26280676999994,27.679266669000114],[-97.27253170499989,27.663397528000175],[-97.28429114499988,27.65005117400007],[-97.28929602799991,27.641994533000126],[-97.29259192599994,27.630926825000085],[-97.29515540299987,27.608791408000016],[-97.29881751199991,27.60057200700011],[-97.32933508999986,27.549627997000115],[-97.34642493399991,27.50576406500015],[-97.34976152299993,27.48582591400016],[-97.3529353509999,27.475734768],[-97.36705481699994,27.460760809000146],[-97.40831458199996,27.357367255],[-97.41120357999992,27.33502838700015],[-97.42235266799992,27.327785549000126],[-97.48692786399987,27.30402252800006],[-97.50841223899991,27.282416083000143],[-97.52257239499994,27.278509833000143],[-97.54157467399995,27.290350653000118],[-97.50527910099993,27.30760325700011],[-97.49315344999985,27.31769440300017],[-97.49868730399987,27.32078685100008],[-97.50129146999987,27.323919989000146],[-97.5032445949999,27.327378648000135],[-97.50674394399991,27.33128489800013],[-97.48680579299992,27.33022695500007],[-97.47638912699992,27.331488348000093],[-97.46922766799987,27.33502838700015],[-97.4612930979999,27.34365469000006],[-97.46092688699991,27.345770575000174],[-97.46548417899994,27.34674713700015],[-97.47264563699989,27.35175202],[-97.47419186099982,27.34837474200016],[-97.48135331899988,27.347072658000073],[-97.48936926999991,27.35065338700015],[-97.49315344999985,27.362046617000104],[-97.49120032499991,27.381496486000014],[-97.48692786399987,27.400213934000178],[-97.50617428299992,27.392523505000057],[-97.5292048819999,27.37213776200018],[-97.54157467399995,27.36546458500011],[-97.53408769399988,27.35175202],[-97.54491126199987,27.348089911000145],[-97.55308997299997,27.34381745000003],[-97.56883704299992,27.33128489800013],[-97.57510331899988,27.345648505000113],[-97.58470618399986,27.341782945000105],[-97.60301673099991,27.31769440300017],[-97.59972083199989,27.310939846000124],[-97.60065670499993,27.304510809000035],[-97.60619055899988,27.299709377000127],[-97.61693274599988,27.29779694200009],[-97.63023841099991,27.30023834800012],[-97.63410396999993,27.306545315000065],[-97.63451087099992,27.315130927000084],[-97.63776607999998,27.32444896000011],[-97.71764075399989,27.42743561400009],[-97.74290930899984,27.449693101000133],[-97.77428137899989,27.468491929],[-97.77049719999988,27.444566148000103],[-97.73643958199993,27.414129950000145],[-97.7259008449999,27.393377997000144],[-97.7401423819999,27.393377997000144],[-97.7037654289999,27.361070054000137],[-97.69176184799989,27.340480861000017],[-97.71222896999984,27.33128489800013],[-97.71056067599994,27.324164130000085],[-97.70909583199997,27.321356512000037],[-97.70665442599994,27.31769440300017],[-97.68708248599987,27.325140692000062],[-97.67223059799991,27.321356512000037],[-97.66763261599996,27.31085846600014],[-97.67870032499991,27.29779694200009],[-97.70069803299995,27.28594294200009],[-97.7247244859999,27.28766931500003],[-97.74998938699991,27.297308661],[-97.77428137899989,27.29779694200009],[-97.76056881399987,27.279120184000092],[-97.7151998699999,27.26735957900003],[-97.67870822199984,27.274019982000183],[-97.65888531899989,27.274121889000167],[-97.6421533489999,27.266802172],[-97.62952235699993,27.24466093500017],[-97.59823621899989,27.242959479000078],[-97.5596610229999,27.234805008000123],[-97.52112737399992,27.23219084700018],[-97.50139836699992,27.243362016000063],[-97.47647551899988,27.25639566500014],[-97.44011763799998,27.272232046000124],[-97.42609615799995,27.263657945000162],[-97.42715410099993,27.24998607000005],[-97.4340714179999,27.23924388200014],[-97.44595292899986,27.23509349200019],[-97.44383704299986,27.22418854400003],[-97.44347083199995,27.205715236000103],[-97.44505774599988,27.188218492000047],[-97.44908606699993,27.180487372000027],[-97.4583634109999,27.174790757000054],[-97.45543372299997,27.161322333000054],[-97.44859778599997,27.145493882000135],[-97.44595292899986,27.132717190000093],[-97.45311438699991,27.120754299000154],[-97.46580969999988,27.11237213700009],[-97.48131262899989,27.107570705000015],[-97.49689693899988,27.106024481000148],[-97.49819902299987,27.10073476800009],[-97.48818925699989,27.08832428600006],[-97.48155676999994,27.074286200000117],[-97.49315344999985,27.063788153000033],[-97.48094641799989,27.038723049000126],[-97.48070227799994,27.021958726000104],[-97.49449622299994,27.012640692000062],[-97.55020097599993,27.009182033000073],[-97.56094316299996,27.004868882000082],[-97.56281490799992,26.993719794000143],[-97.5599666009999,26.950751044000086],[-97.55431067599989,26.933050848],[-97.54552161399994,26.918646552000112],[-97.53408769399988,26.906805731000148],[-97.49453691299993,26.89052969000012],[-97.48131262899989,26.87763092700011],[-97.49315344999985,26.85834381700009],[-97.53770911399994,26.89557526200015],[-97.54841061099985,26.89988841400016],[-97.55524654899996,26.890204169000114],[-97.56004798099987,26.871405341000138],[-97.56248938699991,26.851385809000092],[-97.56200110599991,26.837876695000105],[-97.5547582669999,26.825140692000062],[-97.54369055899986,26.822211005000142],[-97.5296524729999,26.822007554],[-97.51366126199991,26.817368882000054],[-97.50129146999987,26.80662669500005],[-97.49303137899996,26.79173411700019],[-97.48839270699993,26.775091864000146],[-97.48151607999993,26.73135000200007],[-97.45763098899997,26.667222398000106],[-97.44725501199989,26.601304429000077],[-97.42491614499993,26.534898179000137],[-97.41860917899989,26.50202057500006],[-97.42227128799993,26.50897858300011],[-97.42886308499993,26.51772695500001],[-97.43171139199985,26.523179429000052],[-97.43683834499987,26.509914455000015],[-97.44603430899986,26.502875067000147],[-97.47264563699989,26.49583567900008],[-97.43854732999998,26.485296942000033],[-97.43968665299991,26.476467190000065],[-97.44481360599993,26.46137116100006],[-97.4479874339999,26.433335679000137],[-97.45042883999994,26.42389557500003],[-97.44786536399992,26.420152085],[-97.43512936099987,26.419501044000057],[-97.41706295499995,26.415187893000123],[-97.41193600199993,26.404527085000026],[-97.41079667899989,26.39118073100009],[-97.40501868399994,26.378566799000012],[-97.39806067599994,26.37628815300003],[-97.37637285099987,26.374416408000073],[-97.37022864499988,26.372300523000078],[-97.36986243399988,26.364081122000144],[-97.3788142569999,26.34398021000011],[-97.37706458199992,26.337591864],[-97.37010657499991,26.33681875200007],[-97.3632706369999,26.340155341000113],[-97.3580623039999,26.34495677299999],[-97.35594641799989,26.348456122000087],[-97.35191809799994,26.353827216000052],[-97.34439042899986,26.34935130400008],[-97.34019934799993,26.34162018400015],[-97.34605872299989,26.337591864],[-97.35529537699995,26.327948309000035],[-97.36107337099992,26.306870835000026],[-97.36107337099992,26.285793361000074],[-97.35289466099991,26.276109117000132],[-97.34373938699991,26.277980861000103],[-97.33653723899988,26.281154690000065],[-97.32982337099993,26.281724351000104],[-97.3218481109999,26.276109117000132],[-97.31578528599991,26.264878648000106],[-97.31916256399992,26.257147528000118],[-97.32567298099991,26.250392971000064],[-97.32925370999986,26.24201080900012],[-97.32762610599985,26.23041413],[-97.32290605399992,26.221502997000144],[-97.30874589799993,26.201076565000093],[-97.31395423099991,26.180121161000145],[-97.31525631399991,26.150132554],[-97.31053626199991,26.123277085],[-97.29824785099996,26.111639716000084],[-97.29271399599992,26.109605210000055],[-97.28563391799989,26.10516998900009],[-97.27623450399994,26.100653387000033],[-97.26378333199992,26.098618882],[-97.23643958199995,26.098089911000116],[-97.22386633999986,26.09589264500012],[-97.21198482999992,26.091213283000013],[-97.21540279899992,26.076320705000157],[-97.22215735599985,26.067084052],[-97.23253333199995,26.064764716000024],[-97.24669348899987,26.070705471000064],[-97.24803626199989,26.053168036000116],[-97.25983639199984,26.029120184000178],[-97.26036536399991,26.015448309000064],[-97.2556046209999,25.99892812700007],[-97.25202389199985,25.992987372000144],[-97.24669348899987,25.988755601000104],[-97.2362361319999,25.984198309000178],[-97.2332250639999,25.985541083000058],[-97.23176021999984,25.989976304000052],[-97.22622636599989,25.99502187700007],[-97.20173092399988,26.005072333000058],[-97.19261633999989,26.01154205900015],[-97.18529212099989,26.02228424700014],[-97.18146725199998,26.03803131700012],[-97.17955481699991,26.05605703300013],[-97.1753637359999,26.070868231000034],[-97.16478430899994,26.076890367000132],[-97.15184485599994,26.075018622000144],[-97.14317786399994,26.04775625200007],[-97.14073645699992,26.01919179900007],[-97.13752193899987,25.974514065000122],[-97.1392674623664,25.965827043004154],[-97.2049405519999,25.960638733000124],[-97.25305130999996,25.963480937],[-97.26635799199988,25.960638733000124],[-97.26920019499994,25.94436065700002],[-97.28764868199995,25.92865102100013],[-97.31098059099988,25.922088114000147],[-97.32844722499992,25.933301900000018],[-97.35110734099982,25.91841908800016],[-97.35511226399989,25.91278635700003],[-97.35227006099993,25.894492899000156],[-97.3451645509999,25.871703593000163],[-97.34573299199985,25.85222157800017],[-97.36599015299996,25.84390167300002],[-97.37601538199988,25.846743877000094],[-97.38012365799997,25.853203431000125],[-97.38312089099989,25.860541484000052],[-97.38989050399985,25.86565745100002],[-97.3978228359999,25.86581248000006],[-97.39947648199994,25.861161601],[-97.39988989299997,25.85511545900006],[-97.40417903699984,25.851394756000147],[-97.42541805099981,25.854857076000187],[-97.435727499,25.869274801000117],[-97.44130855399989,25.884932760000154],[-97.44825903299999,25.892322490000154],[-97.46942053299993,25.892942607000137],[-97.48631872599995,25.895733134000082],[-97.50220922899987,25.901882630000056],[-97.52027014199987,25.91278635700003],[-97.56517696199987,25.95474762000013],[-97.59432246899988,25.96637481800009],[-97.60478694699992,25.979965719000077],[-97.61305517699998,25.995985413000042],[-97.62264115499997,26.00905955000009],[-97.64145137499989,26.022495423000137],[-97.65987402399989,26.030660299000047],[-97.67961442099997,26.034639385000116],[-97.76694759099989,26.03965199800011],[-97.78030594899991,26.043217672000154],[-97.78232132999997,26.058617249000136],[-97.80201005099991,26.06373321500014],[-97.87818111199991,26.06373321500014],[-97.94166560999994,26.056808574000158],[-97.99923315399991,26.064301656000012],[-98.01305659999994,26.06368153900003],[-98.04416581299992,26.048798726000182],[-98.06545650299998,26.042184143],[-98.07514583399984,26.0466283170001],[-98.08331071099994,26.070916240000187],[-98.10310278399993,26.074947001000098],[-98.15023168999994,26.06368153900003],[-98.1850616049999,26.065231832000148],[-98.22265620999991,26.075412089],[-98.30042924099993,26.111430562000105],[-98.3098085129999,26.121094056000047],[-98.333037069,26.153030090000115],[-98.33926407899989,26.15985138000015],[-98.3657740889999,26.160161438000145],[-98.3772720949999,26.163572083000147],[-98.3772720949999,26.173648987000103],[-98.36933976299996,26.194009502000043],[-98.39719335999993,26.201140849000083],[-98.42884517499994,26.21772898400009],[-98.45654374199987,26.22594553600011],[-98.47238256899996,26.207652079000137],[-98.49294978899994,26.23059641499999],[-98.52152685599991,26.24093170200008],[-98.5527910969999,26.248321431000093],[-98.58162654599985,26.26227406800008],[-98.64056351799996,26.241810201000035],[-98.65366349299993,26.244290670000012],[-98.66469641199993,26.25064687100003],[-98.6852894699999,26.268475240000082],[-98.69332515499988,26.270542298000052],[-98.7022393389999,26.27162750300012],[-98.70425472099987,26.2766401170001],[-98.69146480399988,26.29023101900016],[-98.701412517,26.299119365000095],[-98.71316890499989,26.303356833000137],[-98.72621720399994,26.304390360000024],[-98.73991145899996,26.303253479000105],[-98.73593237299988,26.32004832000008],[-98.7463968509999,26.332140605000077],[-98.78083919299988,26.35167429600007],[-98.79585119699992,26.368314108],[-98.80132889899994,26.37213816300014],[-98.81029475999996,26.372448222000013],[-98.81732275399989,26.368520813000046],[-98.82502254299996,26.366453756000094],[-98.83608129899997,26.37213816300014],[-98.84233414799988,26.365833639000027],[-98.85083492099999,26.364076640000132],[-98.86052425199992,26.366298727000142],[-98.87021358199995,26.37213816300014],[-98.89302872799995,26.36784902000006],[-98.92989986199987,26.392240295000093],[-98.94537695399997,26.378287659000094],[-98.95413610899995,26.39394561800016],[-98.96284358799993,26.39952667300018],[-98.98695064399996,26.400095114000052],[-99.00405554199992,26.393842265000117],[-99.01051509599995,26.392602031000095],[-99.01643204799987,26.39446238300009],[-99.02299495499996,26.403350729000024],[-99.0278783779999,26.406244609000012],[-99.04764461299995,26.406968079000094],[-99.06635148099994,26.404745993000105],[-99.0854976,26.407639872000072],[-99.10642655499991,26.42303945000016],[-99.1089070239999,26.4342532350001],[-99.10252498399988,26.446965637000076],[-99.09373999099998,26.459781393000142],[-99.0893733329999,26.47115020800014],[-99.09149206599997,26.48401763900013],[-99.1029900719999,26.512077942000147],[-99.11510819499999,26.525617167000135],[-99.14094641099992,26.5314049280001],[-99.1648726,26.540448303000076],[-99.17128047699995,26.56396108000014],[-99.17838598699988,26.613673808000055],[-99.18112483799993,26.62990020800008],[-99.22135493999996,26.73573354100013],[-99.23409317999992,26.78363759400004],[-99.24827836199988,26.82709747300005],[-99.26279943899992,26.844047343000156],[-99.27967179399991,26.859653625000092],[-99.2939603279999,26.87629343700003],[-99.32597387799987,26.911536763000086],[-99.33698095699995,26.92476593],[-99.3768493249999,26.953756409000064],[-99.38617692099994,26.96223134400016],[-99.39036271199988,26.97313507100013],[-99.39015600599993,26.993598938],[-99.39279150499993,27.00476104800013],[-99.39932857299992,27.01266754200016],[-99.40731258199989,27.01452789299999],[-99.41604589899995,27.01488962800009],[-99.42465002499999,27.017886862000083],[-99.43986873399992,27.028945618000094],[-99.44374446699997,27.03457834900003],[-99.46172786499997,27.056954244],[-99.4420391439999,27.08961374900018],[-99.43940364599989,27.098347067000145],[-99.44141902699994,27.10749379500014],[-99.4457340089999,27.114728496000012],[-99.45017818299993,27.120464579000053],[-99.45245194599995,27.125012106],[-99.45033321199988,27.145165914000174],[-99.43578629599992,27.188419088000117],[-99.43198807799988,27.207591044000036],[-99.43402929799994,27.226969706000105],[-99.4409022629999,27.244798075000134],[-99.45183182799988,27.261179504],[-99.46612036199996,27.27652740500015],[-99.46896256599992,27.278232727000116],[-99.48040889499994,27.283297018000113],[-99.48294103999993,27.286707663000026],[-99.48487890699995,27.29482086200012],[-99.48658422899993,27.29761138900001],[-99.49319881199992,27.301280416000097],[-99.52136246799995,27.3112539670001],[-99.51479956099989,27.32179596000016],[-99.49759130899992,27.33879750600009],[-99.49402563499994,27.34820261700004],[-99.49288875399994,27.358847961000137],[-99.48772111099993,27.371870422000157],[-99.4846205239999,27.39176584900018],[-99.47570633999996,27.414761862000134],[-99.47291581299991,27.426647441000156],[-99.47363928199991,27.463802796000053],[-99.47291581299991,27.468298645000075],[-99.47642980999987,27.482509664000034],[-99.48040889499994,27.490777893000185],[-99.4882895519999,27.494653626000126],[-99.50368912899988,27.495583802000098],[-99.50950272699995,27.50002797400019],[-99.51007116699991,27.510518291000054],[-99.50707393499998,27.533436788000174],[-99.50720312499992,27.573770244000126],[-99.51500626599994,27.588601380000156],[-99.5350308839999,27.604827779000075],[-99.55502966299993,27.613509420000025],[-99.57226375399999,27.61847035800018],[-99.57823238199992,27.62281117800016],[-99.59024715199989,27.642060649000186],[-99.60016902699998,27.646427307000167],[-99.61244217899993,27.64363678000002],[-99.63352616399995,27.63306895000015],[-99.64486914099993,27.632733052000148],[-99.64864151999987,27.636918843],[-99.65869258599989,27.65402374300014],[-99.66473872999993,27.659398092000103],[-99.70036962999991,27.659191386000046],[-99.70569230199996,27.663170471000043],[-99.71067365499991,27.670116197000155],[-99.72305558299988,27.687380880000106],[-99.73065201899993,27.691825053000017],[-99.73403682499996,27.702031148000074],[-99.73631058799997,27.713606669000125],[-99.7404447029999,27.722159119000068],[-99.74734350599996,27.726009013000105],[-99.76519771399991,27.731176657],[-99.77457698599997,27.73582753500007],[-99.78685013899991,27.748488261000105],[-99.79542842699992,27.761924134000154],[-99.80696277699995,27.77142301000005],[-99.80816666699991,27.77241444900001],[-99.83291967799993,27.77675526899999],[-99.83297135499994,27.782181295000058],[-99.84477941899993,27.793575949000154],[-99.85824112999991,27.80352366200007],[-99.86335709699999,27.804660543000168],[-99.86472652299996,27.814324036000087],[-99.8618584799999,27.83607981400011],[-99.86335709699999,27.845665792000105],[-99.87092769399995,27.8544766240001],[-99.88020361399995,27.85923085600008],[-99.88800675499989,27.86481191000011],[-99.8912882089999,27.876025696000156],[-99.88268408299994,27.89158030200018],[-99.8788083499999,27.901838074000167],[-99.88134049599998,27.906463115000022],[-99.89676590999997,27.912922669000082],[-99.91433589699994,27.928244731000134],[-99.92991634199988,27.94633148200016],[-99.93968318799993,27.961085104000162],[-99.92828853399993,27.975761210000073],[-99.9407167159999,27.983254293000087],[-99.96185237699987,27.98749176000014],[-99.97660599799987,27.992452698000093],[-99.99112707599991,28.00780059900016],[-100.00058386299987,28.020409648000097],[-100.00745682799993,28.03356130000016],[-100.01412308799986,28.050459493000133],[-100.0135029709999,28.056970724000124],[-100.01050573799998,28.06361114500011],[-100.01019567899989,28.06888214100014],[-100.01758540899989,28.07094919900011],[-100.0315380459999,28.08180125000017],[-100.04507727099988,28.09528879900013],[-100.04802282699988,28.1025234990001],[-100.04890132699991,28.115959371000045],[-100.05649776199996,28.137921855000013],[-100.07489457299997,28.15440663700009],[-100.17287308799989,28.198538310000075],[-100.18920283999994,28.20132883800015],[-100.19762609899992,28.20716827400004],[-100.20119177299998,28.220345764000015],[-100.20294877199987,28.234427592000042],[-100.20594600499997,28.242876689000028],[-100.21281896999994,28.245072938000035],[-100.24072424399994,28.249697978000185],[-100.2579324949999,28.26052419100013],[-100.27508907199986,28.277241516000075],[-100.28433915299989,28.296516825000097],[-100.27793127499994,28.314887797],[-100.27855139199991,28.331088359000105],[-100.29389929199998,28.353412577000157],[-100.3226313889999,28.38689890600007],[-100.33167476499995,28.422013041000113],[-100.33632564399991,28.45857411700014],[-100.34020137599994,28.46425852500009],[-100.34831457599996,28.47025299100001],[-100.35554927599993,28.478185323000062],[-100.35678951099996,28.48932159499999],[-100.35162186799995,28.496711325000106],[-100.3226313889999,28.51040557900002],[-100.36402421099993,28.524797465000134],[-100.3842296959999,28.537173971000087],[-100.39776892099991,28.557586162000135],[-100.39875077399996,28.568644918000146],[-100.39709712799991,28.592726135000092],[-100.4014379479999,28.602260437000083],[-100.41146317599993,28.609314270000098],[-100.43482092299988,28.619132793000162],[-100.44618973899993,28.626496684000145],[-100.4448978269999,28.64378245000016],[-100.48138138899992,28.686053773000037],[-100.49393876199991,28.708377991000116],[-100.51905350799986,28.80496124300005],[-100.52499629799988,28.814831441000038],[-100.52928544199993,28.819947408000036],[-100.53445308499994,28.83023101800002],[-100.53863887599996,28.835631205000183],[-100.54515010599994,28.8389901740001],[-100.5596711839999,28.839377747000114],[-100.56623409099988,28.84250417100007],[-100.56969641099991,28.849609681000075],[-100.5633402109999,28.862089539000078],[-100.56623409099988,28.869789327000074],[-100.57176346899988,28.873199972000105],[-100.5865429279999,28.879788717000093],[-100.5895401619999,28.883457743000083],[-100.59496618699988,28.899322408],[-100.60695511999994,28.91012278200013],[-100.61884069899996,28.91792592400004],[-100.62431839999994,28.924721375],[-100.62478348799996,28.937769674000133],[-100.6266955159999,28.948337504],[-100.63077795499991,28.956683248000086],[-100.63790930199994,28.962884420000147],[-100.6289176029999,28.984330140000097],[-100.63279333499995,29.005155742000156],[-100.65222367399994,29.044817404000028],[-100.66085363799996,29.102669169000034],[-100.66896683799989,29.11620839400003],[-100.6781652429999,29.119412334000103],[-100.69082596899993,29.121014303000138],[-100.70203975499997,29.123649800000138],[-100.70684566299988,29.130186870000117],[-100.70973954299986,29.135561218000177],[-100.76250118099998,29.173775940000056],[-100.77009761699996,29.18728932700004],[-100.76208776899998,29.20865753200006],[-100.78317175399992,29.243074036000092],[-100.79614253799994,29.25767262800015],[-100.81608964099986,29.270772604000015],[-100.86389034099994,29.290616353000118],[-100.87179683499998,29.2964557910001],[-100.89122717299998,29.318547465],[-100.91473994999987,29.337047628000118],[-100.9873970139999,29.36632232699999],[-100.99830074099997,29.37247182200015],[-101.00806758599991,29.380585023000048],[-101.01623246299994,29.390067648000027],[-101.02217525299996,29.400480449000053],[-101.02594763199995,29.41435557100011],[-101.02961665899997,29.44298431500003],[-101.0377815359999,29.460063375000132],[-101.06796057199999,29.46949432400011],[-101.13477819799995,29.487658590000066],[-101.16356197199988,29.501301168000154],[-101.18270808899987,29.522359314000155],[-101.19141556799993,29.528147075000145],[-101.20177669299996,29.530653382000036],[-101.21286128799996,29.53158355800018],[-101.22278316299996,29.540781962],[-101.22647802799996,29.55445037800008],[-101.21777054899991,29.584190165000066],[-101.21901078299993,29.61028676400015],[-101.23391943399989,29.62266326900011],[-101.25877579799995,29.620156962000138],[-101.28358048499989,29.607806295],[-101.3009696049999,29.59413787800018],[-101.31215755199995,29.59785858100018],[-101.3108656419999,29.612767233000127],[-101.30272660399997,29.633851217000156],[-101.30107295799992,29.64950917600011],[-101.3097804359999,29.654547628],[-101.3362387699999,29.654315084000032],[-101.34902868699996,29.660102845000026],[-101.35768448999991,29.667440898],[-101.36435074999993,29.67666514100002],[-101.37662390199996,29.700643005000117],[-101.38336767599989,29.718497213000074],[-101.39961991499992,29.7407180790001],[-101.4065445559999,29.75288787900011],[-101.40930924499995,29.76578114900012],[-101.40509761599989,29.778441874000134],[-101.41401179999991,29.774411113000053],[-101.4242178959999,29.77141388000014],[-101.43509578499994,29.770121969000098],[-101.44610286499994,29.771052144000137],[-101.45568884399994,29.775909729000077],[-101.46243261799997,29.788932190000093],[-101.47090755299989,29.791516012000027],[-101.49028621499993,29.785547384],[-101.50576330699995,29.77389434800004],[-101.52180883899992,29.76593617800016],[-101.54289282299993,29.771052144000137],[-101.53968888399996,29.779191182000076],[-101.53051631799988,29.796476949000134],[-101.52860428999995,29.80143788700009],[-101.53191158099995,29.81110138000004],[-101.53917211999993,29.817974345],[-101.54645849699989,29.8201447550001],[-101.5497657879999,29.81570058200016],[-101.55397741699994,29.79668365500011],[-101.56490698299991,29.786477560000133],[-101.5802807209999,29.781568298000096],[-101.6322155359999,29.775651347000107],[-101.7945312099999,29.795856832000183],[-101.80298030599991,29.80143788700009],[-101.80597753999992,29.811928203000054],[-101.81269547499994,29.81203155600018],[-101.82409012899994,29.80518442800003],[-101.85760229499994,29.80518442800003],[-101.87752355999996,29.810842997000165],[-101.88741959699995,29.81228993800015],[-101.89545528199993,29.80862091100006],[-101.90237992399992,29.803246562000094],[-101.91088069699993,29.799887594],[-101.92015661699995,29.79818227100013],[-101.9296134039999,29.797717183000188],[-101.94266170299996,29.80360829699999],[-101.95705358899997,29.814046936000025],[-101.97224646099998,29.818181051000135],[-101.98793025699986,29.80518442800003],[-102.01459529599991,29.810998027000025],[-102.10934403499994,29.80210968100009],[-102.1456467289999,29.81570058200016],[-102.15724808799987,29.824537252000184],[-102.20367936299998,29.846138001000057],[-102.23977534999997,29.849135234000148],[-102.2534437659999,29.855284729000132],[-102.2582755139999,29.87347483300009],[-102.27618139699989,29.869547425000025],[-102.28902299099985,29.87812571200014],[-102.30217464199994,29.889391174000092],[-102.32101070199995,29.893938700000135],[-102.33023494499994,29.888926087000172],[-102.33976924699994,29.870632629000013],[-102.35106054799992,29.866601868000103],[-102.36323034699993,29.864276429000153],[-102.37072342999996,29.857765198000113],[-102.37454748599991,29.848101705000158],[-102.37658870499986,29.821488342000134],[-102.3800510259999,29.8113856],[-102.40413224299994,29.780793152000097],[-102.40609594799989,29.77727915500005],[-102.51528824899994,29.784720561000157],[-102.52306555199995,29.782317607000106],[-102.53112707599993,29.76991526300004],[-102.54153987699998,29.762473857000103],[-102.54334855199996,29.76012257900008],[-102.54657832899994,29.757874654000158],[-102.55314123599993,29.756737773000157],[-102.55830887999993,29.7590890500001],[-102.56288224299998,29.769346822000085],[-102.56675797599993,29.771052144000137],[-102.58530981499986,29.764695944000106],[-102.62122493499993,29.747280986000096],[-102.63874324599998,29.743715312000017],[-102.67605362999993,29.74449045800013],[-102.68346919799994,29.743715312000017],[-102.6910397949999,29.736816508000132],[-102.69362361799999,29.729400940000133],[-102.69470882199998,29.720615947000127],[-102.69775773199993,29.70955719000013],[-102.72674820999988,29.66449534100009],[-102.73126989799992,29.650594381000115],[-102.73550736499998,29.64950917600011],[-102.75165624999995,29.622456564000075],[-102.7517596029999,29.620156962000138],[-102.76134558099999,29.603413798000087],[-102.7675984299999,29.597290141000045],[-102.77966487699989,29.592303366000078],[-102.77408382199995,29.57961680100014],[-102.77646093799991,29.575947774000138],[-102.78589188699996,29.5718136600001],[-102.78075008199995,29.558248597000112],[-102.78651200399993,29.550497131000114],[-102.79547786499988,29.544270122000125],[-102.82731054799993,29.47050201400019],[-102.83395096899993,29.461355286000114],[-102.83906693599991,29.451950175000047],[-102.84113399299989,29.43830759700013],[-102.83870520099993,29.42693878200005],[-102.83498449799991,29.415699158],[-102.83519120299987,29.403839417000157],[-102.84454463699991,29.390532736000136],[-102.84557816599998,29.38471913700009],[-102.83803340699993,29.370533956000127],[-102.83767167199994,29.36632232699999],[-102.84656001899995,29.36174896300004],[-102.85387223399992,29.36099965500013],[-102.85986669999997,29.361154683000066],[-102.86495682799995,29.359526876000032],[-102.87697159899992,29.35087107300008],[-102.88306941799996,29.343765564000147],[-102.88518815199994,29.333378601000117],[-102.88549820999994,29.314800924000096],[-102.8993991699999,29.276095276000078],[-102.89970922899998,29.263899638000154],[-102.89213863099992,29.25439117500015],[-102.86795406099996,29.24038686200008],[-102.85878149399987,29.229147237000017],[-102.86986608899987,29.22478057900012],[-102.89689286299992,29.2202847300001],[-102.94226477099996,29.190209046000046],[-102.94753576699989,29.182018331],[-102.96975663299993,29.192844543000046],[-102.98838598699989,29.177134908000156],[-103.01582617199995,29.126776225000086],[-103.02427526899994,29.11615671800011],[-103.03262101299991,29.110213928000107],[-103.07254105599995,29.09140370699999],[-103.08075760999988,29.085202536],[-103.08558935599989,29.07571991000013],[-103.09153214499992,29.05786570200017],[-103.09535620199995,29.06029449500012],[-103.10468379799998,29.05786570200017],[-103.10920548499992,29.023371684],[-103.12277054899991,28.996474101],[-103.14798864799994,28.985105286000092],[-103.18710770699998,28.990221253000083],[-103.24175553499991,29.00350209600019],[-103.30154516699989,29.00236521400008],[-103.31624711199997,29.01006500200016],[-103.3115144759999,29.02604253800011],[-103.30999426299988,29.03117482500012],[-103.32479956099989,29.02680816700003],[-103.33048396899994,29.02373341900001],[-103.34260209199992,29.041225892000156],[-103.3516713059999,29.039417217000064],[-103.36053381399991,29.029831238000053],[-103.37208349699993,29.02373341900001],[-103.38663041199989,29.028797710000063],[-103.41463903799989,29.052413839000096],[-103.4236049,29.05786570200017],[-103.43569718499992,29.06112131800016],[-103.47853694699987,29.08205027300015],[-103.52974829199988,29.126776225000086],[-103.53558772799997,29.13512196900017],[-103.53822322699997,29.14240834500005],[-103.54171138599993,29.148816224000186],[-103.55023799699993,29.15465566000007],[-103.55801529999995,29.156205953],[-103.5849903969999,29.15465566000007],[-103.67312455299994,29.173569235000016],[-103.70247676699991,29.187857768000086],[-103.74947648199989,29.22297190400003],[-103.75906245999997,29.226847637000095],[-103.77076717199996,29.22984486900019],[-103.77771765199995,29.235296733000084],[-103.7694235849999,29.257543437000106],[-103.77422949299991,29.26751698900013],[-103.78366044199997,29.274803365000125],[-103.79417659599993,29.277593893000173],[-103.86412064699994,29.281366272000085],[-103.92812190799992,29.29301930800007],[-104.01914994399995,29.32033030300009],[-104.05731298899993,29.339037171000157],[-104.1054237469999,29.385675150000125],[-104.13978857399994,29.40058380200018],[-104.16164770599997,29.416758524999988],[-104.19451391599999,29.44892710400002],[-104.21229060899992,29.484661357000117],[-104.21869848699997,29.489829000000142],[-104.22714758399987,29.49303293900003],[-104.25102209499995,29.508587545000054],[-104.26717097999995,29.52657094300012],[-104.2927508139999,29.532823792000116],[-104.32060441199995,29.53225535100016],[-104.33848445699992,29.52401296000012],[-104.34902644899988,29.5375780240001],[-104.43044266799991,29.582794902],[-104.43783239799991,29.585430399000114],[-104.44400773199989,29.589202779000132],[-104.44855525799991,29.59767771400014],[-104.45206925499988,29.607108664000105],[-104.45522151799993,29.61338735000011],[-104.46938085999997,29.62540212000009],[-104.51663895799993,29.654315084000032],[-104.53082413799987,29.66790598600012],[-104.53503576699991,29.677802022000108],[-104.53519079599997,29.68785308800012],[-104.53710282499988,29.70211578400001],[-104.54366573199988,29.716430156000012],[-104.5613907479999,29.74542063400018],[-104.57027909399999,29.787511089000116],[-104.58358577499992,29.80257476800001],[-104.6012074379999,29.81477040700013],[-104.61968176299992,29.833063864],[-104.62376420099993,29.84148712200009],[-104.63758764699989,29.887995911000033],[-104.65634619199997,29.90820139600011],[-104.66063533599994,29.918433330000184],[-104.66347753999992,29.923084208000045],[-104.67652583899986,29.93683014],[-104.68047908599993,29.942307841000076],[-104.68246862899989,29.952126363000144],[-104.68011734999995,29.967784322000014],[-104.68047908599993,29.976465963000162],[-104.6991084389999,30.03144968700009],[-104.70158890799988,30.055324199],[-104.69859167499996,30.075271301000033],[-104.68463903799997,30.111134746000133],[-104.68047908599993,30.1341307580001],[-104.67867041099994,30.17035593700014],[-104.68156429099993,30.192938538000174],[-104.69585282399991,30.208441467000096],[-104.71523148699988,30.243994853000135],[-104.72458492099993,30.252211406000086],[-104.7421549079999,30.259859518000052],[-104.74938960899996,30.26445872100011],[-104.76168859899991,30.28419911700017],[-104.77414261999989,30.311587627000034],[-104.78876704899994,30.335927226000035],[-104.80773230099992,30.346417541000093],[-104.81289994399992,30.350706686000034],[-104.81496700099989,30.36057688400002],[-104.81600052899985,30.371997376000035],[-104.81827429199988,30.380523987000128],[-104.82426875799992,30.38719024700005],[-104.83754960199992,30.39406321200012],[-104.84493933099992,30.401039530000116],[-104.85325923699989,30.412149964000132],[-104.85501623599994,30.41747263600008],[-104.85362097299989,30.423983866000146],[-104.85243241399986,30.4388666790001],[-104.85465450099996,30.448736877000087],[-104.86447302299993,30.46201772100009],[-104.86669510999992,30.47302480000018],[-104.86524816999994,30.479897767000136],[-104.85961543899991,30.491111552000106],[-104.8592537039999,30.497261048000052],[-104.86302608299992,30.50237701500005],[-104.87971757099989,30.510851949000156],[-104.88214636299993,30.520928854000186],[-104.88400671499994,30.54185780900018],[-104.88659053599994,30.55188303700011],[-104.8981660569999,30.569401347000063],[-104.92824173999995,30.599528707000147],[-104.93433955999991,30.610535787000128],[-104.94105749599994,30.614049785000088],[-104.97273514899994,30.61802887000009],[-104.98276037599996,30.62071604400002],[-104.98911657799991,30.62955271400001],[-104.9916487229999,30.640301412000113],[-104.99294063399994,30.651463522000157],[-104.99578283799991,30.661747132000144],[-105.00849523999996,30.676991679000096],[-105.02797725499995,30.69011749300016],[-105.0494746509999,30.69926422100015],[-105.06812984299988,30.702674866000066],[-105.0870434169999,30.70980621400012],[-105.13360388299995,30.757916972000185],[-105.14042517099992,30.750475566000077],[-105.1532409269999,30.763187969000015],[-105.15778845299992,30.76572011300003],[-105.16088903799997,30.764118144000165],[-105.16269771299996,30.774918518],[-105.16729691699992,30.781171367000113],[-105.17478999899994,30.783961894000143],[-105.18512528499996,30.784633688000138],[-105.1953055429999,30.78794098000004],[-105.20491735899994,30.80241038100017],[-105.21210038299998,30.80571767200017],[-105.21824987899996,30.806802877000063],[-105.22925695899994,30.810213522000094],[-105.23287430899991,30.809128316000013],[-105.23985062699991,30.80153188100003],[-105.24398474199985,30.799103089000152],[-105.24904903299992,30.798844706000107],[-105.25948767099996,30.802978821000025],[-105.26584387299998,30.80840484700009],[-105.27075313399992,30.814347636000104],[-105.27700598199992,30.819411926],[-105.33431514499999,30.843803202000018],[-105.3637707119999,30.850366109],[-105.37617305599996,30.859564514000017],[-105.41555049699996,30.90245595400016],[-105.4966824959999,30.95650950100004],[-105.53078894099988,30.991701152000115],[-105.55595536399991,31.00260487900006],[-105.56572220899994,31.016660868000187],[-105.57864131699998,31.052162577000118],[-105.59094030799992,31.07143788700007],[-105.60587479699988,31.08192820300003],[-105.62349645999987,31.09035146100011],[-105.64380529799988,31.10368398000004],[-105.66804154499995,31.127868551000102],[-105.67522456899992,31.131950989000117],[-105.69227779199996,31.137635396000164],[-105.76819047099988,31.18001007100015],[-105.7778539639999,31.192722474000117],[-105.7848302819999,31.211015930000183],[-105.86198319499995,31.288375550000026],[-105.8801474619999,31.30088124600012],[-105.89699397899997,31.305997213000108],[-105.89714900799991,31.309511211000157],[-105.9088020429999,31.317004293000096],[-105.92805151399992,31.326461080000158],[-105.93456274399996,31.335504456000123],[-105.94177160699994,31.352350973000096],[-105.94851538199997,31.36123931900003],[-105.96120194599992,31.37100616500008],[-106.00473933899995,31.396947734000108],[-106.0211466069999,31.402167053000042],[-106.04626135299993,31.404647522000015],[-106.0653041189999,31.410952047000123],[-106.09938472499995,31.428883769],[-106.1411134449999,31.439167379000178],[-106.16431616299991,31.44779734300012],[-106.17447058199987,31.460251363],[-106.20924881999991,31.477304586000127],[-106.21542415499988,31.48391917000005],[-106.21743953499994,31.488725077000066],[-106.21873144499999,31.494616191000045],[-106.2228913989999,31.504589742000164],[-106.23265824399998,31.519937643000116],[-106.27474869899991,31.562622376000135],[-106.28629838099995,31.580140687],[-106.31229162699992,31.648611959],[-106.33130855399989,31.6821499630001],[-106.35849035699995,31.71754832000012],[-106.3917699799999,31.745918681000134],[-106.42895117299992,31.75847605400004],[-106.47313452199991,31.755065409000036],[-106.49279740499996,31.75904449500011],[-106.5014252479999,31.766343684000063],[-106.50605240999995,31.770258281000153],[-106.51718867999998,31.77382395400012],[-106.55896907599994,31.773875631000024],[-106.58485896899997,31.773927307000132],[-106.61069718499989,31.773978984000152],[-106.63658707699993,31.77408233699999],[-106.66247696999996,31.774134014000094],[-106.68831518599987,31.774237366000037],[-106.7142050779999,31.774237366000037],[-106.74009497099993,31.77428904200003],[-106.76593318799988,31.77439239500016],[-106.79182307999992,31.774444072000097],[-106.81771297299994,31.774495748],[-106.84360286499997,31.774547425000108],[-106.8694410809999,31.774599101000135],[-106.89533097399993,31.774702453000046],[-106.92122086599996,31.774702453000046],[-106.9471107589999,31.774754130000147],[-106.97300065199994,31.774857483000105],[-106.99889054399996,31.77490916],[-107.02478043699999,31.774960836000115],[-107.05067032899994,31.775012513000135],[-107.07650854499995,31.775064189000048],[-107.1023984379999,31.775167541000155],[-107.12828832999993,31.775167541000155],[-107.15412654699995,31.775219218000085],[-107.18001643999989,31.775374248000116],[-107.20590633199991,31.775374248000116],[-107.23179622499995,31.775425924000142],[-107.25763444099996,31.775477601000077],[-107.2835243329999,31.77552927700016],[-107.30941422599994,31.7756326290001],[-107.33525244199987,31.775684306000027],[-107.3611423339999,31.77578765900013],[-107.38703222699993,31.77578765900013],[-107.41289628199995,31.775839335000157],[-107.43878617399989,31.775942689000185],[-107.46467606599991,31.7759943650001],[-107.49056595899994,31.77609771700004],[-107.51640417599988,31.776149394000143],[-107.54229406799992,31.776201070000138],[-107.56818396099995,31.776252747000076],[-107.59407385299998,31.7763044230001],[-107.61996374599991,31.776407776000113],[-107.64585363899994,31.776459453000133],[-107.67174353099996,31.776459453000133],[-107.69763342399992,31.77656280500015],[-107.72347163999994,31.77661448200017],[-107.74936153199988,31.776666158000083],[-107.77525142499991,31.77671783500001],[-107.80114131699993,31.776769511000012],[-107.82697953299996,31.77687286400014],[-107.8528694259999,31.776924541000156],[-107.87875931799994,31.776924541000156],[-107.90459753499995,31.777027893000177],[-107.93048742799998,31.77707956900009],[-107.9563773199999,31.777131246000025],[-107.98221553599994,31.777182923000126],[-108.00810542899988,31.77723459900012],[-108.03399532099992,31.77733795200008],[-108.05988521399995,31.777389629000183],[-108.08572342899996,31.777389629000183],[-108.11161332199991,31.777544657000032],[-108.13750321499994,31.777544657000032],[-108.16334143099995,31.777648010000135],[-108.189283,31.777699687000062],[-108.21512121699993,31.77775136399999],[-108.21512121699993,31.770723369000063],[-108.21512121699993,31.763695374000164],[-108.21512121699993,31.756667379000145],[-108.21512121699993,31.749639384000044],[-108.21512121699993,31.74255971300012],[-108.21512121699993,31.73558339500012],[-108.21512121699993,31.72855540000002],[-108.21512121699993,31.721475728000186],[-108.21512121699993,31.71439605700006],[-108.21512121699993,31.707419739000088],[-108.21512121699993,31.700391744000157],[-108.21512121699993,31.693312073000058],[-108.21512121699993,31.68628407900003],[-108.21512121699993,31.67925608400013],[-108.21512121699993,31.672176412000095],[-108.2150695399999,31.6651484180001],[-108.21501786399999,31.658172099000083],[-108.21501786399999,31.65109242800015],[-108.21501786399999,31.64406443300005],[-108.21501786399999,31.637036438000152],[-108.21501786399999,31.630008443000133],[-108.21501786399999,31.622980449000025],[-108.21501786399999,31.61595245400012],[-108.21501786399999,31.608872782],[-108.21501786399999,31.601844788000093],[-108.21501786399999,31.594816793000074],[-108.21501786399999,31.587788798000144],[-108.21501786399999,31.580760803000075],[-108.21501786399999,31.573732808000145],[-108.21501786399999,31.566653138000117],[-108.21501786399999,31.559625143000016],[-108.21496618699989,31.552597148000117],[-108.21496618699989,31.545569153000187],[-108.21496618699989,31.538489482000085],[-108.21496618699989,31.531461487000158],[-108.21496618699989,31.524485169000073],[-108.21496618699989,31.51740549800014],[-108.21496618699989,31.51037750300004],[-108.21496618699989,31.503401184000136],[-108.21496618699989,31.496321513],[-108.21496618699989,31.489241842000087],[-108.21496618699989,31.48221384700018],[-108.21496618699989,31.475237529000182],[-108.21496618699989,31.46815785700007],[-108.21496618699989,31.46112986200013],[-108.21496618699989,31.454101868000137],[-108.21496618699989,31.447073873000036],[-108.21491451099988,31.44004587800013],[-108.21486283399996,31.432966208000025],[-108.21486283399996,31.425938213000098],[-108.21486283399996,31.41891021800008],[-108.21486283399996,31.411882223000173],[-108.21486283399996,31.404802552000046],[-108.21486283399996,31.39782623300006],[-108.21486283399996,31.390798239000148],[-108.21486283399996,31.383718567000027],[-108.21486283399996,31.376638896000188],[-108.21486283399996,31.369662578000103],[-108.21486283399996,31.362634583],[-108.21486283399996,31.35555491100017],[-108.21486283399996,31.34852691700014],[-108.21486283399996,31.341550598000154],[-108.21486283399996,31.33447092700014],[-108.21481115799995,31.32744293200012],[-108.25757340499986,31.327391256000013],[-108.30033565299996,31.327391256000013],[-108.34302038599988,31.327391256000013],[-108.38573095799987,31.327391256000013],[-108.42844152899998,31.327391256000013],[-108.47115209999988,31.327391256000013],[-108.5138368329999,31.327391256000013],[-108.5565474039999,31.327391256000013],[-108.5993096519999,31.327391256000013],[-108.64202022299992,31.327391256000013],[-108.68475663299994,31.327391256000013],[-108.72746720399994,31.327391256000013],[-108.77017777599994,31.327391256000013],[-108.81291418599994,31.327391256000013],[-108.85562475699996,31.327391256000013],[-108.89833532799996,31.327391256000013],[-108.94104589899987,31.327391256000013],[-108.9682819669999,31.327391256000013],[-108.98373063199996,31.327391256000013],[-109.02649287999988,31.327391256000013],[-109.04743046299988,31.327391256000013],[-109.0692034509999,31.327391256000013],[-109.11191402299998,31.327391256000013],[-109.1545987559999,31.327391256000013],[-109.19736100399992,31.327391256000013],[-109.2400715749999,31.327339580000015],[-109.28278214599992,31.327339580000015],[-109.32551855499993,31.327339580000015],[-109.36822912599993,31.327339580000015],[-109.41091385899993,31.327339580000015],[-109.45365026899994,31.327339580000015],[-109.49638667799995,31.327339580000015],[-109.53907141199996,31.327339580000015],[-109.58180782099994,31.327339580000015],[-109.62449255399996,31.327339580000015],[-109.66717728799996,31.327339580000015],[-109.70996537299996,31.327339580000015],[-109.75265010599989,31.327339580000015],[-109.79533483999988,31.327339580000015],[-109.83812292499991,31.327339580000015],[-109.8808076589999,31.327339580000015],[-109.92359574399993,31.327287903000084],[-109.96628047799993,31.32723622700017],[-110.00896521099992,31.32723622700017],[-110.05170161999993,31.32723622700017],[-110.09438635299993,31.32723622700017],[-110.13707108599993,31.32723622700017],[-110.17980749599994,31.32723622700017],[-110.22254390599994,31.32723622700017],[-110.26522863799995,31.32723622700017],[-110.30801672399987,31.32723622700017],[-110.3507531329999,31.32723622700017],[-110.3934895429999,31.32723622700017],[-110.43617427699989,31.32723622700017],[-110.4788590089999,31.32723622700017],[-110.52159541899992,31.32723622700017],[-110.56428015199991,31.32723622700017],[-110.60696488499991,31.32723622700017],[-110.64972713299991,31.32723622700017],[-110.69243770399993,31.32723622700017],[-110.73519995099996,31.32723622700017],[-110.77788468499995,31.32723622700017],[-110.82059525599995,31.32723622700017],[-110.86335750399986,31.32723622700017],[-110.90606807499988,31.32723622700017],[-110.94875280799997,31.327184550000155],[-111.00626867799991,31.327184550000155],[-111.06711767599994,31.3336441040001],[-111.09445450899996,31.34253245100002],[-111.14592423599994,31.35906890900013],[-111.19744563799995,31.375553690000103],[-111.24886368799991,31.39214182600001],[-111.30033341499991,31.40872996000012],[-111.35180314199998,31.425318095000122],[-111.40329870599996,31.441854554000102],[-111.45476843299994,31.458339335000108],[-111.50623815999995,31.474979147000013],[-111.91546382699994,31.60143137600006],[-112.32471533199994,31.727986959000145],[-112.73396683799993,31.854542542000146],[-113.14321834299993,31.98104644800013],[-113.5524440109999,32.10760203100001],[-113.96169551699991,32.23413177499999],[-114.37092118399991,32.36068735800016],[-114.7801468509999,32.48724294000006],[-114.81678544199994,32.49853424100003],[-114.81937311799992,32.49936330200016],[-114.82210811499999,32.50023956299999],[-114.80944738899996,32.51132415800002],[-114.79554642799987,32.552226054000116],[-114.79420283999991,32.57411102400006],[-114.8026777749999,32.5944973750001],[-114.7868131109999,32.6210332240001],[-114.78154211399996,32.62806121800013],[-114.7588044849999,32.64483022100008],[-114.75115637199991,32.65221995100008],[-114.73947749899995,32.669066468000054],[-114.7312092699999,32.68663645400012],[-114.72387121699991,32.7115186570001],[-114.72428426699989,32.712835255000144],[-114.72428462799992,32.71283640500015],[-114.76454056899996,32.709839173000134],[-114.83807613199991,32.70420644200003],[-114.9116116949999,32.69870290200011],[-114.98519893499991,32.693121847],[-115.05873449699996,32.68756663000009],[-115.13227006099997,32.68198557500007],[-115.20580562399995,32.676456197000064],[-115.27928951099992,32.67082346600012],[-115.35285091199991,32.66534576500005],[-115.42638647499989,32.65976471000012],[-115.49992203799995,32.654209493000124],[-115.57353511599986,32.648654277000034],[-115.64701900299993,32.6430732220001],[-115.7205287279999,32.63751800600009],[-115.79406429099997,32.63196278900007],[-115.86759985399996,32.626407573000066],[-115.94121293199994,32.62082651800016],[-116.01474849499994,32.615271302000124],[-116.08823238199992,32.60966440800003],[-116.16174210699988,32.604160869000125],[-116.2353293459999,32.59855397500009],[-116.30889074799987,32.59302459700011],[-116.38242631099993,32.587469381000076],[-116.45596187399993,32.58188832600017],[-116.52947159899992,32.576333110000164],[-116.60300716199998,32.57080373200016],[-116.67654272499993,32.565222677000136],[-116.75010412699994,32.55966746000003],[-116.82363968899992,32.55408640600002],[-116.89720109099993,32.548531189000116],[-116.97073665399988,32.54297597300011],[-117.04422054099994,32.53742075600009],[-117.12512148897225,32.531669490003665],[-117.1261287099999,32.53949616100011],[-117.1321915359999,32.56806061400012],[-117.13394897499992,32.59289568600009],[-117.13700664699986,32.615760699000035],[-117.14981035099993,32.64630768400012],[-117.1663712229999,32.66950104400014],[-117.18838456899992,32.682684637000094],[-117.22397483599988,32.684714441],[-117.22618603199989,32.69720666100012],[-117.22002959199995,32.70659624100013],[-117.20581376199995,32.71340310900014],[-117.19095610599994,32.71369924700003],[-117.18785949099987,32.70593556900009],[-117.16805804599993,32.69880508600012],[-117.16417395699989,32.68378327000012],[-117.15585345699988,32.67236702100003],[-117.14279661899985,32.65311594100013],[-117.13127776499988,32.63099088300014],[-117.12408553699987,32.60676615700011],[-117.1150892069999,32.60026154300009],[-117.10338415399987,32.60681045200015],[-117.10231105899992,32.62046825700015],[-117.11989198399989,32.65263396200005],[-117.11901657299987,32.670609972000065],[-117.13320878799995,32.689846096000124],[-117.14632505599985,32.69426202300012],[-117.16657467399995,32.70677317900011],[-117.17734338499993,32.715030606000155],[-117.17463812499993,32.726732120000136],[-117.20985776399989,32.72528414300014],[-117.22424391699985,32.71864055200014],[-117.23783356999994,32.707223084000034],[-117.23656165299985,32.66962311400012],[-117.24527962099988,32.674584209999985],[-117.2552791009999,32.69139232],[-117.2574763659999,32.701727606000176],[-117.2547272709999,32.74644966900017],[-117.25387719199992,32.76352008500011],[-117.25755620799994,32.78424468000016],[-117.27879301299991,32.82281247800013],[-117.28359725099996,32.83765398500013],[-117.27378915299997,32.85114569000008],[-117.26603869299996,32.84703541000009],[-117.25987376399985,32.85406683900011],[-117.25364093999991,32.88508136300014],[-117.2580655539999,32.908983319000086],[-117.27476966099991,32.99347565300015],[-117.27956467599991,33.007223916000115],[-117.2860408189999,33.023871161000116],[-117.2980752389999,33.03590398000007],[-117.32216122299988,33.108500616000086],[-117.36191411699987,33.16594348100001],[-117.50884421199987,33.335205337],[-117.59630286399988,33.39044830900009],[-117.65436764199987,33.441961981000176],[-117.67072506399988,33.452297268000095],[-117.71519934799989,33.474839585000076],[-117.73521887899994,33.48476797100007],[-117.77651933499989,33.529364325000145],[-117.82457434799997,33.561672268000066],[-117.88025104799996,33.59288017700011],[-117.93022019699997,33.60791849200014],[-117.97850501199993,33.635972397999986],[-118.09053621299988,33.73097720700018],[-118.11738749199988,33.743606546000095],[-118.1525809249999,33.758765400000144],[-118.17363927499993,33.763283160000114],[-118.18553315199995,33.7575068980001],[-118.19896675599996,33.764035657000115],[-118.20720976399987,33.763833569],[-118.1924981309999,33.75230892500018],[-118.18661818299991,33.741484335000095],[-118.18518891299988,33.73237242100005],[-118.19286265999995,33.73172856400008],[-118.2024791649999,33.73926580900003],[-118.20274549499989,33.74657520000015],[-118.20973496799992,33.742286855000046],[-118.21382720799994,33.7490448330001],[-118.2215063139999,33.77090078300016],[-118.23070227799987,33.76911041900017],[-118.24033554299989,33.76758313700019],[-118.2500910689999,33.76368354200012],[-118.25455189899994,33.765400526000164],[-118.26036536399991,33.760402736000074],[-118.26951448799991,33.753597021000175],[-118.27677037199996,33.7566159280001],[-118.27379138299995,33.75028920800004],[-118.27831692599992,33.73874587800019],[-118.27447190299984,33.723754604000035],[-118.27220618399988,33.715277411000116],[-118.28244112499992,33.716237389000135],[-118.28172518099987,33.71168255300013],[-118.27608414699985,33.70771156500011],[-118.28268967899989,33.70799982100006],[-118.2913066329999,33.70320826500009],[-118.30088189599992,33.709848763000096],[-118.31751837199994,33.71399035600002],[-118.33146024299991,33.720051438000056],[-118.35481657599985,33.726264817000086],[-118.36228628999989,33.73568704300014],[-118.37607887699988,33.737157499000105],[-118.38500141499988,33.740116127000036],[-118.39418866499994,33.736687222000015],[-118.40135795899991,33.735558976],[-118.40480844299994,33.74004856000015],[-118.41204094599992,33.741678190000144],[-118.41521668099996,33.754409512000066],[-118.42278279499989,33.763798883000064],[-118.42756864599993,33.77373075900009],[-118.42181850199987,33.78394388000011],[-118.40930293999993,33.79112391400018],[-118.4086357729999,33.79800318900014],[-118.39571527799986,33.805653987000156],[-118.39179996799992,33.817646759000084],[-118.39138805899985,33.83594099100013],[-118.39721135599991,33.8440228620001],[-118.39967325799986,33.85126502800007],[-118.4099160499999,33.87342034300009],[-118.42494561299988,33.9055134100001],[-118.44465084499987,33.94940827000015],[-118.48265540299988,33.99900950700005],[-118.5140681629999,34.02216217700003],[-118.54405676999995,34.038885809000035],[-118.55730367799991,34.03788319400003],[-118.5706240249999,34.04110557100002],[-118.58262757499992,34.0365293390001],[-118.5907383539999,34.039092740000015],[-118.60340040099996,34.03881841800016],[-118.60926576799996,34.03565138900002],[-118.63694225699993,34.03639243500005],[-118.66658905099986,34.038944518],[-118.67566404899995,34.038120742000054],[-118.67819925299992,34.03303037700006],[-118.68013695199993,34.03033038600013],[-118.6931606609999,34.03188372500013],[-118.70678045599988,34.02942726200011],[-118.73052616499986,34.032544976000125],[-118.74839232099991,34.03188851200018],[-118.75614431799988,34.02571967900012],[-118.77301849199984,34.023763951000106],[-118.78339865399991,34.02183923700012],[-118.78792953299991,34.01966392200008],[-118.78920803199992,34.014561763000174],[-118.79275121199987,34.01157132900009],[-118.79370380999993,34.00726686600011],[-118.79661231999988,34.00670570400003],[-118.80276808999992,34.00479618700005],[-118.80406027399991,34.00103619600016],[-118.80696905599989,33.99940626900003],[-118.8298142609999,34.02082363400011],[-118.8526038279999,34.03365692900003],[-118.86266249699993,34.03443339000016],[-118.87571941799989,34.03755120300009],[-118.89422075299993,34.03856136300011],[-118.90267163599991,34.04014894100003],[-118.91469361299991,34.04063740300002],[-118.92090369299984,34.04430167900016],[-118.93000607599988,34.04589626200011],[-118.9368074899999,34.043200309000056],[-118.95403653799991,34.04785799500014],[-118.97750382499996,34.059566000000146],[-118.9973663939999,34.065651406000036],[-119.00807992499993,34.06611954900016],[-119.03825899899994,34.083639885000096],[-119.0609049769999,34.08552960800013],[-119.08969820299988,34.10048386400014],[-119.10015881899996,34.10280702000007],[-119.11705176999988,34.10641604100009],[-119.1197785429999,34.10613152800006],[-119.11959433099993,34.103739206000014],[-119.11432857999988,34.10179271000008],[-119.10065187399991,34.09896310300017],[-119.10648159699988,34.09446610900015],[-119.12865293299991,34.1005469060001],[-119.15375763599988,34.11632543500009],[-119.19370162499987,34.14173784900005],[-119.20437988199984,34.144096672],[-119.20575006999988,34.14575740700011],[-119.20419866699984,34.14841381600017],[-119.20466455799995,34.1495357270001],[-119.20832263599993,34.152321691000125],[-119.21013591899994,34.15230807600015],[-119.21099450799993,34.14798726400012],[-119.21482288199986,34.145707164000115],[-119.21708747399994,34.1455018190001],[-119.22079955199986,34.153165538000124],[-119.22469729999995,34.15707525100005],[-119.2260805619999,34.159128338000116],[-119.23116096999988,34.167344259000075],[-119.23716449299985,34.17686509500011],[-119.24396725199989,34.19009023600013],[-119.25267493399988,34.20392487200006],[-119.26019404699993,34.21712397100013],[-119.26336174999992,34.226576832000134],[-119.25885862599982,34.233352932000074],[-119.26390540299987,34.23505280200014],[-119.26716061099992,34.244533596000124],[-119.26929996199992,34.2549585660001],[-119.2811580069999,34.26870351800015],[-119.2899151969999,34.27457603300011],[-119.29602821499995,34.274321504000014],[-119.30441665999989,34.272362253],[-119.31339212499982,34.277128270000084],[-119.32069048699992,34.28263580800014],[-119.32911819599992,34.285929556000085],[-119.33859565299993,34.29047993500008],[-119.34948825999996,34.304074965000055],[-119.3587689209999,34.31009389800006],[-119.36469879199993,34.315725688000114],[-119.37085853499984,34.319674523000074],[-119.37519101799984,34.32027340500015],[-119.38206237599987,34.31937014100011],[-119.38688765699989,34.31806522300015],[-119.39148242799992,34.31844489700002],[-119.39410608199984,34.32260114900011],[-119.40107790299989,34.330571524],[-119.40982381199984,34.33617281500001],[-119.41831676899993,34.342382299000164],[-119.4299527359999,34.353471507],[-119.43661713599994,34.3557276880001],[-119.44323618099986,34.35482157100007],[-119.45303379899987,34.36840122100013],[-119.46022909299988,34.37404041000015],[-119.46623507699988,34.37502182500016],[-119.47020464699995,34.37581377100015],[-119.4729724429999,34.37388862900012],[-119.47524201299983,34.372393252],[-119.47779799899988,34.37257934500015],[-119.47962223399989,34.374458883000145],[-119.4835104389999,34.37863298100008],[-119.48816718499991,34.38111570100007],[-119.49486272799994,34.383997103000084],[-119.50251414299994,34.38434220100005],[-119.51680633099996,34.38693807200015],[-119.52069145399989,34.3906890840001],[-119.5294283639999,34.394812854000165],[-119.53683972799992,34.39558041600016],[-119.55569451399988,34.41045053000012],[-119.56317512199986,34.4147945130001],[-119.5680092199999,34.41390257400012],[-119.57285497999989,34.4127956200001],[-119.57589369399989,34.411924226],[-119.58179119599987,34.41270141800011],[-119.59585527299994,34.41885000200001],[-119.61715964399991,34.42052717200015],[-119.6211967509999,34.41817319000013],[-119.62886085299996,34.418083970000126],[-119.63851164599991,34.415242456000115],[-119.65792854899985,34.41650624400016],[-119.6780609149999,34.41438500100007],[-119.68769993199996,34.410903108000085],[-119.69020758799986,34.40813791000009],[-119.69169396699992,34.40538390900004],[-119.69089780499988,34.40349819800015],[-119.70080462199986,34.40085630400015],[-119.70203685199995,34.398104939000135],[-119.70787935499992,34.395440856000064],[-119.71989584999996,34.39530131000008],[-119.73294749699991,34.397464126000145],[-119.7432150709999,34.40260761200001],[-119.7545045359999,34.40478592000012],[-119.78764887499995,34.41721116300012],[-119.80296475299993,34.418097903000145],[-119.80854875299991,34.41634541000017],[-119.83203535999986,34.41626430300012],[-119.83640736899986,34.4149481300001],[-119.84101173199987,34.41298291600005],[-119.8409422119999,34.410039772000154],[-119.84238967699984,34.40623308000015],[-119.84438479099991,34.403892494],[-119.85472013499992,34.4088068650001],[-119.86824157599995,34.409479315000155],[-119.8743501609999,34.40876970300015],[-119.87863581699993,34.40661306000014],[-119.89036627699991,34.41909243400009],[-119.90060145899992,34.42043595100013],[-119.92152797099989,34.43340134900016],[-119.93484071699994,34.43554107200002],[-119.9427559189999,34.43523731],[-119.94989736199989,34.43431136200006],[-119.95707218999986,34.43589230500011],[-119.96224848499988,34.43981498100014],[-119.97593204999991,34.447209800000124],[-119.98466738699996,34.45003496800011],[-119.98952735599991,34.449767523],[-120.00996766099988,34.461011957],[-120.02213620499987,34.45769614700011],[-120.03659899599988,34.46313708700016],[-120.09142005099996,34.45880768400015],[-120.13341223899994,34.47272370000003],[-120.17187110399989,34.46998475800008],[-120.29320655799987,34.468485563000016],[-120.42520097599993,34.4513207050001],[-120.44434240099989,34.451182132000085],[-120.45410749899989,34.44281183300002],[-120.47268143299988,34.45027297200009],[-120.49160722599996,34.49135976800012],[-120.50998579399996,34.521374539000114],[-120.5363632269999,34.535293291000144],[-120.5578355659999,34.541159594000035],[-120.5779314959999,34.55354318300006],[-120.59456853199985,34.55469682100012],[-120.62161600899992,34.55261356000007],[-120.63662675699989,34.56289297100007],[-120.64443668999985,34.574131281000106],[-120.64783419299995,34.58567558900013],[-120.64210913399991,34.60102323700009],[-120.63056668099993,34.628194386000175],[-120.61413565799988,34.659403305000026],[-120.6060546359999,34.6793499890001],[-120.60305365599993,34.70478195000008],[-120.61701412699993,34.725653387000094],[-120.62759355399987,34.74347565300017],[-120.64024817599994,34.75853099200019],[-120.62991794299991,34.78193265600014],[-120.61921216799992,34.81920621700014],[-120.61741248099993,34.843631567000145],[-120.61557318999989,34.85800259800003],[-120.62218841199984,34.867299625],[-120.63255774599992,34.87140534100017],[-120.64024817599994,34.879217841000134],[-120.64461047199984,34.895112857000086],[-120.6549730219999,34.90118597400006],[-120.66764685999995,34.89884811200007],[-120.67283934599995,34.90752128400014],[-120.66619504699992,34.93176927500012],[-120.64237555899983,35.00087331000016],[-120.63369706899988,35.03510163],[-120.63072669199994,35.07387929900001],[-120.6357315749999,35.108587958000086],[-120.64488684799987,35.13939036700005],[-120.65294348899994,35.14423248900012],[-120.65855489399985,35.15047967800011],[-120.67115998799993,35.15022585700013],[-120.67902584499988,35.15306224200019],[-120.69806881399988,35.16913483300006],[-120.70636959499986,35.174221096000096],[-120.72384941699993,35.175226033],[-120.74966923399982,35.177396791000135],[-120.75560839999991,35.17192249700015],[-120.75534616999987,35.16312392500011],[-120.7594402959999,35.15921462700011],[-120.76553376899992,35.16024215500015],[-120.7908422519999,35.179022528000175],[-120.8497927329999,35.20291323100015],[-120.87668247399986,35.22379035600012],[-120.88609778599994,35.233791408],[-120.89765418399992,35.24976551500011],[-120.8955906169999,35.2735135810001],[-120.8870675969999,35.28593547900003],[-120.86783118899989,35.33039216700017],[-120.86224364699986,35.36190504100013],[-120.85381463399995,35.34752936700012],[-120.85739189799989,35.326764807000146],[-120.85558020699993,35.3215192730001],[-120.84324204899991,35.3243477490001],[-120.84205910299993,35.3316698120001],[-120.8314049729999,35.336087589000144],[-120.8358349369999,35.342912953000095],[-120.84155801099985,35.34586681300006],[-120.8520741609999,35.36705106400002],[-120.86026366199992,35.373802556000086],[-120.86674960799992,35.37099262200012],[-120.8710967179999,35.40530839400016],[-120.87908121299992,35.42009304700018],[-120.8873184889999,35.43292877800012],[-120.90818414799986,35.44824381800014],[-120.94619222999991,35.44628513100015],[-120.96346562999993,35.45665135600014],[-120.98276867499986,35.45998789800008],[-121.00536216399992,35.460656967000105],[-121.03697669199993,35.489203192],[-121.06831150399992,35.51786927900015],[-121.10181169099991,35.54966720200015],[-121.13087019799991,35.600701175000054],[-121.14327538499995,35.60504282900011],[-121.15910836899991,35.627235283000104],[-121.1694015579999,35.63691940400007],[-121.1873669599999,35.64192058700014],[-121.19306683999989,35.63961576200013],[-121.19152573899993,35.63386471900019],[-121.19503088999994,35.632336335],[-121.21649604199992,35.647747645],[-121.23400323699991,35.652037747000136],[-121.25199004699991,35.65739446300016],[-121.26914589699992,35.66421059100013],[-121.28831280199987,35.6648295160001],[-121.28847444999992,35.68145825500007],[-121.29841445199989,35.69748896300014],[-121.3090158009999,35.70770939300014],[-121.31459022399989,35.71372375300013],[-121.32306881399984,35.76455312700007],[-121.33723230499987,35.78652867000015],[-121.36800677199994,35.81036106100011],[-121.38711692399988,35.821431931000134],[-121.40893092199993,35.84402073000017],[-121.41334977499987,35.854745748000184],[-121.42553675199987,35.858420443000014],[-121.4420252469999,35.86922183900013],[-121.46320087599987,35.886731338000075],[-121.4627172519999,35.90371328300007],[-121.47224774799984,35.913568528000056],[-121.47838152599986,35.931581610000094],[-121.48222647899985,35.94897551500016],[-121.48690362899994,35.96582806600013],[-121.4899796209999,35.98224518400009],[-121.50667758699984,36.00326004200018],[-121.52256902499995,36.01007073400014],[-121.54108352599991,36.01501304900016],[-121.56673886899989,36.020117263000074],[-121.58224375999991,36.03602717299999],[-121.59266137299996,36.05057001100006],[-121.59452231099993,36.064233426],[-121.60644404699993,36.071504863000186],[-121.61822138099987,36.08442900300015],[-121.63015512799988,36.11305683900015],[-121.64265948699996,36.123549889000074],[-121.65775869499987,36.14264668300008],[-121.6779207679999,36.16267535200011],[-121.69357641499995,36.171656473000056],[-121.70387955799987,36.182216730000114],[-121.72913902799988,36.198144643000106],[-121.75395387599985,36.211546510000105],[-121.78144144799982,36.22632573200009],[-121.79885769499988,36.234479655000186],[-121.81036663299992,36.2323973400001],[-121.82485917899992,36.23920319200012],[-121.83560136599992,36.24917226800012],[-121.8400772779999,36.259344794000164],[-121.84541803699993,36.272399878000144],[-121.85220292899987,36.279445705000015],[-121.86318925699993,36.28318919500005],[-121.87360592399995,36.29002513200008],[-121.8810115229999,36.299505927000084],[-121.89966052299991,36.30439952700014],[-121.89562881899991,36.31392872900007],[-121.89712580099987,36.32798120000014],[-121.89372392499986,36.332057557],[-121.89358632699995,36.33856849000013],[-121.89785607699993,36.343868345000075],[-121.90107238299991,36.352760124],[-121.90364536699991,36.36211621400018],[-121.90584484099993,36.37175179300003],[-121.9061269549999,36.3771403760001],[-121.90416813099984,36.38453673000011],[-121.90612344899988,36.38847771600014],[-121.90827468499987,36.39637134700011],[-121.91443150499992,36.40303590300006],[-121.91767174799989,36.41554851000011],[-121.91532913299993,36.42319358300009],[-121.9183512479999,36.43032732700006],[-121.92901213999993,36.44778604700015],[-121.9302249769999,36.454603356000135],[-121.93150662699992,36.4630307180001],[-121.93804032899986,36.46826458],[-121.94469907399987,36.486151827000114],[-121.94630901099994,36.4918914360001],[-121.94248050999991,36.49670503800003],[-121.94320790499987,36.50283235200011],[-121.94423749399986,36.50569475400008],[-121.94226954099986,36.51190084500003],[-121.94957475199988,36.51421753800004],[-121.95692962199985,36.51761750200008],[-121.95536253299987,36.52272768500002],[-121.94820416499992,36.52366179900004],[-121.94006480099986,36.52281564600012],[-121.92753315299986,36.52385199900006],[-121.92829965399994,36.53138031900009],[-121.92994456099987,36.53784567000018],[-121.93312377699995,36.53847538900014],[-121.9356328289999,36.544187772],[-121.93126894499997,36.547209922000135],[-121.93252777799984,36.555128979000145],[-121.93461662399991,36.561225309000164],[-121.94033548499988,36.5585174320001],[-121.94279872199985,36.563146222],[-121.94647692699992,36.56484838000007],[-121.95089043899995,36.562908855],[-121.9538914339999,36.559565391000135],[-121.97007538999988,36.56885441600015],[-121.97800225699991,36.57476745400011],[-121.98111521899992,36.58371687600011],[-121.97393446999988,36.584291224000125],[-121.96721988899985,36.58521270100006],[-121.96663598599986,36.59210137800001],[-121.96386739299993,36.60050074100014],[-121.95986254699994,36.61147279900008],[-121.95637983499982,36.61410358300016],[-121.9503338859999,36.60993839200013],[-121.94664431399988,36.618006564000055],[-121.94252160699992,36.62644775600002],[-121.94153113299987,36.63443402600011],[-121.93769466699989,36.63924933500009],[-121.92952614499991,36.63804021400013],[-121.92121077799987,36.633581243000044],[-121.92054885399989,36.62889799600007],[-121.9131354819999,36.624411953000056],[-121.9021541279999,36.620752134000114],[-121.89593684499992,36.61261148700008],[-121.88742136099985,36.60199449300002],[-121.87883601299984,36.60261404300003],[-121.87000389099988,36.607212149000176],[-121.85387454799991,36.61961389200009],[-121.83792876299992,36.63561195400003],[-121.8270609289999,36.65620001900005],[-121.81425824699996,36.683237837000135],[-121.80992591099995,36.71881745000003],[-121.80535941299985,36.7377390270001],[-121.79242379699993,36.73086781000002],[-121.76374264199984,36.72207265800007],[-121.76127439799991,36.730286095000125],[-121.76644216599992,36.73520799300003],[-121.77021495599989,36.73908317000003],[-121.77511171499987,36.73749977300004],[-121.78370748399992,36.73798364800011],[-121.79019012599993,36.74178123800009],[-121.79490139599991,36.746351552000036],[-121.80320486499994,36.750459474000124],[-121.79816220299988,36.779907161],[-121.78981175499989,36.80619896700007],[-121.80424593799984,36.83601824100004],[-121.85993404899989,36.92747630400005],[-121.8871150379999,36.95490143400009],[-121.90560118999993,36.96912630900014],[-121.93724316299989,36.978306980000085],[-121.9527673069999,36.971007662000105],[-121.96356615099988,36.95949017900006],[-121.9742353699999,36.95519927400015],[-121.99396725199995,36.959865627000156],[-122.00670120699994,36.96237832900012],[-122.02121037499988,36.9626678500001],[-122.02515609099994,36.95965331300006],[-122.02407544499987,36.95607035400009],[-122.02518938599985,36.95097400600004],[-122.03482393499988,36.95321256700008],[-122.04679408099987,36.94815680400008],[-122.06086782799986,36.94881313600003],[-122.08090139999993,36.95146259400006],[-122.10600401899993,36.955755369000045],[-122.12084298899987,36.963255874000154],[-122.13499069199995,36.96572602700009],[-122.14223751499993,36.97525052100014],[-122.15364315999994,36.97707543600016],[-122.17758685799988,36.99510466000011],[-122.20791581899995,37.019273179000024],[-122.22211757699986,37.02429494200011],[-122.22794563899988,37.04005955900003],[-122.2538021239999,37.05912330900004],[-122.26604190199993,37.076455525000156],[-122.28102986099988,37.096582914000166],[-122.29006162899994,37.104236081000025],[-122.29765844299995,37.111226697000134],[-122.30835444499985,37.11667500800009],[-122.31873046899995,37.115617245000166],[-122.32765564399989,37.11280772700003],[-122.33929005699993,37.11858181500004],[-122.3378532069999,37.134902402000115],[-122.3595275389999,37.1504854140001],[-122.36103852899986,37.16235619600003],[-122.36935319999992,37.174019993],[-122.38341210999994,37.18227110900015],[-122.39610933199988,37.181859916000136],[-122.4044569779999,37.19452597499999],[-122.40786794499986,37.216117025000145],[-122.41070366299992,37.22687068000015],[-122.41649926599985,37.23391985600004],[-122.41836340499991,37.25230971900008],[-122.4101503569999,37.268845184000085],[-122.40741233399983,37.294983806000076],[-122.40252231999989,37.34050411700004],[-122.40033781799988,37.359741136000096],[-122.40873625099997,37.36417159200011],[-122.41156908699989,37.37493126100016],[-122.42919380199992,37.40727084200013],[-122.44444644199983,37.43751934500001],[-122.44916018899995,37.47665521900002],[-122.46324622299996,37.496649481000034],[-122.47926758099987,37.50278345000005],[-122.48609613499991,37.502556444],[-122.49421191799985,37.500839443000146],[-122.4952848269999,37.495371003000045],[-122.4992631699999,37.4930661850001],[-122.50107414999992,37.50132903600014],[-122.5120254359999,37.51000308600011],[-122.52047188699987,37.53142146],[-122.5175653919999,37.54526576900018],[-122.51475929899989,37.56089342600002],[-122.5200278729999,37.574124813000125],[-122.51904002799988,37.589713519000114],[-122.52242428099994,37.59321744200004],[-122.51746818499994,37.59447256400007],[-122.5130892559999,37.597843855000015],[-122.50759715399988,37.59769812100013],[-122.50323288299992,37.60146264800015],[-122.50169841099988,37.606944275],[-122.49594698099989,37.62737397000007],[-122.49474036399988,37.665228583000115],[-122.50187429799985,37.703488398],[-122.50849301399984,37.72494382900011],[-122.51361029199987,37.75226111700012],[-122.5151716469999,37.78112611800013],[-122.50587366999993,37.78645571700012],[-122.49766998699988,37.787102375000146],[-122.48593013199984,37.790810532000094],[-122.4764490919999,37.81067501600002],[-122.46335856799992,37.80530353500002],[-122.41875724599988,37.81114348400014],[-122.40863666199988,37.81039170500013],[-122.39819511999988,37.80349479400003],[-122.3879288399999,37.79096100500011],[-122.38710365599992,37.77874526800004],[-122.38153215599992,37.773642615000156],[-122.38285761899988,37.763829250000086],[-122.37924469099991,37.75598598300003],[-122.37431699499984,37.749271105],[-122.36649429099991,37.73975483200017],[-122.35454394099986,37.73000829500002],[-122.36245975299995,37.71491608600017],[-122.37629019799986,37.71664109800015],[-122.37947175799985,37.707491557000125],[-122.3924546879999,37.710330339000066],[-122.38797374899988,37.67718842500015],[-122.38015767999987,37.67671027100012],[-122.38103341999994,37.666919106000094],[-122.37491147699984,37.65516330200016],[-122.38136019399987,37.64735284800015],[-122.38438880099991,37.63666413000011],[-122.38372976999993,37.63145992300012],[-122.36372201299984,37.627250748],[-122.3541419039999,37.613507428],[-122.35933988599992,37.608471446000166],[-122.3711658639999,37.612945368000126],[-122.37410881599996,37.60418704600015],[-122.36228659099993,37.59970804300009],[-122.35851968299994,37.59280508400003],[-122.33039220199994,37.589405158000105],[-122.31676966699989,37.58984531],[-122.31579035599988,37.58392968200012],[-122.29906874699991,37.576897860000045],[-122.28326872499993,37.57469864700009],[-122.25792395699987,37.57151927300002],[-122.2509659499999,37.568060614],[-122.2453475449999,37.553193097000175],[-122.23957608199994,37.54688725300004],[-122.23053951699993,37.544826565000065],[-122.21029240499986,37.539864207],[-122.19929836699988,37.534961906000106],[-122.19889416899993,37.52678070700007],[-122.2073461579999,37.517482815],[-122.19300012499986,37.51535717600008],[-122.1830711039999,37.50755389300015],[-122.17128542799986,37.50359044500011],[-122.15868079299986,37.503363348000065],[-122.14793860599993,37.496649481000034],[-122.13414466099992,37.49778880400005],[-122.1226700509999,37.484930731000034],[-122.11192786399988,37.467474677000084],[-122.1001684239999,37.45506419500005],[-122.08088131399987,37.448716539000095],[-122.05890865799984,37.447414455000015],[-122.03864498599984,37.451402085],[-122.03213982099993,37.46336413000013],[-122.04076087099995,37.467922268000066],[-122.04832923099988,37.46873607],[-122.05223548099988,37.471380927000084],[-122.05186926999995,37.47744375200007],[-122.05052649599988,37.48427969000009],[-122.05174719999992,37.48920319200015],[-122.0577693349999,37.4975446640001],[-122.06236731699994,37.50169505400005],[-122.06908118399988,37.503566799000126],[-122.09333248599988,37.503566799000126],[-122.10903886599992,37.517971096000096],[-122.11655019999988,37.5425620430001],[-122.14630966699988,37.57896842600006],[-122.15221833199993,37.61609575000013],[-122.16277899099993,37.664433826000064],[-122.18524262399988,37.69078357500014],[-122.19186342299987,37.70031300699999],[-122.20672606699992,37.71066876700009],[-122.2143603349999,37.69906841000012],[-122.25176604899991,37.722777463],[-122.26235038499993,37.74300338400012],[-122.24893343399995,37.74830063800009],[-122.2124519799999,37.743483524000126],[-122.2172928639999,37.758486264000155],[-122.22184987499992,37.759717068000114],[-122.22631845399991,37.75539680000004],[-122.2393361109999,37.755324872000145],[-122.27155072299992,37.7628470910001],[-122.2835121099999,37.76332893000007],[-122.28985429099991,37.767130969000064],[-122.29988149599986,37.772245866000056],[-122.29737140399989,37.779759191],[-122.30755698899986,37.780865450000036],[-122.3098512199999,37.77621795500009],[-122.33150880499994,37.78238805400018],[-122.32861608199988,37.79648861700014],[-122.3247001449999,37.80108311900007],[-122.32500895399994,37.80375077200007],[-122.3284220229999,37.80446037800008],[-122.33909396099996,37.80338052600008],[-122.34065657099985,37.80711578300004],[-122.33472757899992,37.81163050100004],[-122.3223613199999,37.81094243400004],[-122.31657137399992,37.817089584000186],[-122.3283596349999,37.821025574000046],[-122.31969141899988,37.825092641000126],[-122.30138508899991,37.826239299000136],[-122.2955022839999,37.831292182000155],[-122.29788807699995,37.83931107500008],[-122.30386310699994,37.86290225100008],[-122.31602365899991,37.86089074300018],[-122.31774712399995,37.86786490600018],[-122.30830677599991,37.87032938000006],[-122.31390203799987,37.88582935400011],[-122.32875988899988,37.908057592000134],[-122.34783218999989,37.906371521000054],[-122.36482959299994,37.90365922100009],[-122.39108785399989,37.907674614000044],[-122.38762834099991,37.920218397],[-122.39625925399994,37.92804918899999],[-122.41017338799995,37.9319222810001],[-122.42131568899993,37.948316087000094],[-122.42969815399992,37.964261981000085],[-122.41380724699987,37.96208342300004],[-122.39772514699989,37.95611727000012],[-122.3950317959999,37.97026700400009],[-122.36879565699991,37.980316416000065],[-122.35956561899987,37.98764865500011],[-122.36997619099986,38.00355579400018],[-122.36630595799998,38.012335587000095],[-122.34630286399994,38.00604889500012],[-122.33600826699991,38.00381094000015],[-122.32249915299985,38.00519440300003],[-122.31676985599992,38.01013643800003],[-122.29904056399991,38.01119807600013],[-122.27697261299991,38.024950739000175],[-122.27557049499988,38.039101116],[-122.2642361129999,38.04595215200011],[-122.24974524599989,38.05536530200011],[-122.22704016799993,38.05841705900012],[-122.20362973499988,38.05337843700012],[-122.1861702489999,38.04797627500009],[-122.16855302899985,38.028042939000144],[-122.14793860599993,38.02362702000006],[-122.12437903599988,38.02920156500009],[-122.08183676899988,38.04789564400006],[-122.05325504899986,38.05307545900011],[-122.00398992599986,38.05613559600009],[-121.93900866199988,38.04454375100012],[-121.88800433199992,38.04108891600008],[-121.87810163599994,38.034346317000036],[-121.83712276299984,38.023064037000104],[-121.77913371099993,38.01546119400017],[-121.75108235899985,38.019435757000124],[-121.72297115799988,38.01113515800016],[-121.70205644399991,38.009222723],[-121.69004367999987,38.00911872400012],[-121.68144282199992,38.01745310400012],[-121.69482475399985,38.02467833000009],[-121.71054776299987,38.022105755000055],[-121.72308094799992,38.025562990000125],[-121.72060570099983,38.03211678000015],[-121.70490558999985,38.035232029000056],[-121.69489498599988,38.043402411],[-121.68553626199986,38.04474518400018],[-121.68150794199988,38.048325914000046],[-121.67837480399992,38.056952216000134],[-121.67634029899996,38.067084052000105],[-121.67560787699993,38.07550690300015],[-121.67113196499989,38.08388906500012],[-121.66055253799993,38.08685944200012],[-121.63768469999992,38.08633047100015],[-121.62451773699992,38.089285933000085],[-121.62405774499987,38.094702176000126],[-121.61709550699989,38.09861888200011],[-121.60667883999989,38.09935130400005],[-121.59626217399992,38.094387111000096],[-121.58205438999994,38.09200048400005],[-121.58032618999995,38.083397639000125],[-121.57651863999985,38.07430748600002],[-121.58246852199991,38.068751220000124],[-121.58496653399992,38.062742692000185],[-121.5992322269999,38.059134431000146],[-121.6096070819999,38.06102904600014],[-121.62062294099988,38.061825336000126],[-121.62771267899987,38.05083272500017],[-121.63223942599987,38.04422942600003],[-121.62298843899987,38.03636180500011],[-121.61276044699984,38.02149149800012],[-121.60506405099997,38.01790599400012],[-121.59836794599988,38.02186189600003],[-121.58424341499997,38.02871018600011],[-121.58247776099988,38.0357821570001],[-121.58020503799987,38.04719090600012],[-121.57925820399987,38.057484298000034],[-121.57808693699987,38.0623779890001],[-121.56930531199988,38.06584433300013],[-121.55592219799983,38.05753719400015],[-121.54758120199992,38.05504497900007],[-121.53780054299996,38.050965938],[-121.52640527499992,38.040979472000075],[-121.51264183399987,38.0402401190001],[-121.5008845689999,38.031073309000064],[-121.48033830099986,38.02265105000005],[-121.45901319399985,38.00478072600002],[-121.44530188699986,37.99632396],[-121.44538326699984,38.00389232000013],[-121.45872962099993,38.02057526200018],[-121.4757380849999,38.037176825000024],[-121.4865616529999,38.04474518400018],[-121.50389563699989,38.04975006700011],[-121.51323583199989,38.054821675000184],[-121.52627125399994,38.05449732800015],[-121.52925719799991,38.0603684200001],[-121.53560745799987,38.064533381],[-121.54242417399992,38.063281535999984],[-121.54864224099985,38.06420615500012],[-121.56512468199993,38.0810827830001],[-121.57127774299991,38.09713945200009],[-121.58649654899995,38.102362372000144],[-121.6040746739999,38.10578034100014],[-121.62718665299987,38.10561758000009],[-121.63190670499986,38.10325755400014],[-121.63947506399991,38.09446849200016],[-121.64452063699994,38.09251536700013],[-121.65196692599991,38.09430573100012],[-121.65855872299991,38.09760163000005],[-121.66494706899992,38.099188544000086],[-121.68028184199994,38.09269063900014],[-121.68610592399992,38.08266836100002],[-121.68858801999994,38.07510000200015],[-121.6892797519999,38.06159088700018],[-121.69933020699997,38.050848700000174],[-121.7205893479999,38.040282003000115],[-121.74206313599986,38.02944881600011],[-121.76747498999995,38.03038839400013],[-121.77870877699985,38.03601910499999],[-121.78522242399994,38.04339935500012],[-121.7842462179999,38.052066680000124],[-121.77984961599992,38.06137499100008],[-121.76917430799995,38.06869542600013],[-121.75902534899988,38.07221500700011],[-121.74681555899987,38.07599518400015],[-121.73643958199995,38.07884349200019],[-121.71666779499988,38.09280708200011],[-121.70299231699991,38.10561758000009],[-121.68778744299996,38.12383070800008],[-121.68260154199997,38.14719259100012],[-121.68948423299993,38.14754736100015],[-121.7048847729999,38.1222928210001],[-121.72144658799996,38.10834594400016],[-121.74697831899994,38.087713934000035],[-121.76744544199991,38.07884349200019],[-121.80308012799993,38.06288340300009],[-121.82396805399988,38.068799208000186],[-121.84611846299988,38.07251123100009],[-121.8618362999999,38.07045261900011],[-121.86733964799988,38.06464264500009],[-121.88252738099993,38.05690041200013],[-121.89817007899987,38.05322063900003],[-121.91672498499989,38.05270738500011],[-121.92882239499995,38.05841705900012],[-121.92096920499986,38.06244538],[-121.9160863919999,38.066961981000034],[-121.9083145819999,38.07884349200019],[-121.95498480199987,38.0791698420001],[-121.97126943499991,38.074917644000074],[-121.98947899899987,38.08249815100005],[-122.01495547399989,38.098510611000115],[-121.98599224499993,38.110704479000084],[-121.98941989299995,38.12519801700016],[-122.00029623299987,38.13731244500009],[-122.01620733799989,38.13955023700008],[-122.03806434599994,38.13674660600019],[-122.0551651679999,38.13373444200009],[-122.06541907499994,38.12734609600007],[-122.06895534499988,38.12178041400007],[-122.06579728499987,38.11322666600013],[-122.0754898769999,38.100507714000074],[-122.09325093899987,38.084304174000074],[-122.12108313699986,38.059881903000175],[-122.12659702999991,38.05034334200009],[-122.13029038299989,38.04214243300011],[-122.15847815499987,38.0434454240001],[-122.16593111399987,38.05454683100008],[-122.18430159799992,38.06478921600005],[-122.18962849399986,38.061381840000095],[-122.19514241799992,38.0617520440001],[-122.20493356299993,38.065233034000165],[-122.22357093599993,38.06572673600006],[-122.2452079789999,38.07208563100015],[-122.2608879549999,38.06943282900012],[-122.27145916599991,38.07450930800003],[-122.28167411699988,38.08608469700006],[-122.3006774809999,38.10819557000015],[-122.39651964899988,38.153231178000155],[-122.41062979599987,38.13384619700009],[-122.43413081399986,38.12334532100006],[-122.4493078709999,38.124468515],[-122.4578802919999,38.117698999000154],[-122.50231747099986,38.113520866000144],[-122.48742194699992,38.104826882000125],[-122.48248847599993,38.07688102900006],[-122.49409100799988,38.050007846000035],[-122.50272452399986,38.03188021600011],[-122.50568472699993,38.023131408],[-122.50604997299985,38.01717217700014],[-122.49345613799993,38.01278303500008],[-122.46974641199989,38.00542705900001],[-122.45424160999991,37.99780528600009],[-122.44533578999987,37.985123056000035],[-122.4512399659999,37.98006180800014],[-122.45954161999985,37.981407048000065],[-122.4692213779999,37.98274565600015],[-122.47435550399989,37.97612186300002],[-122.4925430979999,37.96979401200004],[-122.49356035099994,37.95856354400002],[-122.48371334499984,37.94855377800006],[-122.48034558399992,37.94182013800015],[-122.49166750199993,37.935487565000024],[-122.50359282299986,37.94049531200012],[-122.5042211579999,37.93488190300012],[-122.50343963699989,37.924811732000094],[-122.4762319769999,37.91599088200017],[-122.47255279499984,37.91124578700011],[-122.47429034399991,37.90523823000008],[-122.46006377899991,37.89543694400011],[-122.44900301799991,37.89364149200016],[-122.43880050499988,37.88208259000005],[-122.44794995499991,37.87366856000013],[-122.4547330249999,37.87236117400014],[-122.45946261899991,37.87112278100007],[-122.45900921299994,37.86248492599999],[-122.46952014199994,37.86700283700016],[-122.47334113899987,37.87444507100015],[-122.4722595149999,37.879888759],[-122.47605243699986,37.88679154500012],[-122.4901354329999,37.89389037200014],[-122.49902873899988,37.89359014899999],[-122.49648569599987,37.884483468000106],[-122.49474208899994,37.877513015000076],[-122.49927992499988,37.87248528800011],[-122.4893087539999,37.86413137000007],[-122.47805238599997,37.85968078500015],[-122.4797671529999,37.853132619000164],[-122.47649014699995,37.84352103500008],[-122.47039119799989,37.83183162000001],[-122.47756480999995,37.82510439500011],[-122.4878402979999,37.825303128000044],[-122.50264085499988,37.82048220600005],[-122.51179686099992,37.824489631000134],[-122.52258614699993,37.82197001700003],[-122.52842581299984,37.816371593],[-122.53795404799985,37.82793964700015],[-122.54790397999994,37.83462263300011],[-122.56369048299989,37.848147881],[-122.57369863399991,37.855908338000134],[-122.5883412589999,37.860810405],[-122.60130442999991,37.87322761500015],[-122.6207305779999,37.87749648400013],[-122.64519885399989,37.8988159660001],[-122.6723915689999,37.90657379200009],[-122.68597313699993,37.903959004000015],[-122.69667064199989,37.899257335000115],[-122.70038307599992,37.89210095400013],[-122.71318201399991,37.90029920800008],[-122.72773825799993,37.90303961500017],[-122.73420474999993,37.92012432400013],[-122.7486409789999,37.932601282000135],[-122.76534840799992,37.93739640500014],[-122.78024385999994,37.948131095000164],[-122.79599877299984,37.97551963100001],[-122.81055040299992,37.985193801000136],[-122.82143224799984,37.99766977800006],[-122.8393970989999,38.006349484000125],[-122.90684321199988,38.03184398500004],[-122.92111194499984,38.034871294000155],[-122.93269553999994,38.04951933800014],[-122.93212270599986,38.0588055030001],[-122.92014206499988,38.06531240400007],[-122.9354141919999,38.07074616100006],[-122.94155839799988,38.06476471600014],[-122.9484757149999,38.06073639500009],[-122.94709913499993,38.05475450700011],[-122.94688880099994,38.04531484600015],[-122.94249426999995,38.041245835],[-122.93608552599993,38.03077037100003],[-122.94937089799988,38.02944570500004],[-122.96337693599993,38.02531491000012],[-122.97906967199992,38.014515591000176],[-122.98402720899988,38.00323086700003],[-122.9803304999999,37.99803906200016],[-122.97176500099992,37.996142070000055],[-122.96250400899991,37.99204782200003],[-122.9742291069999,37.99027722200019],[-122.98448031199987,37.99211321400013],[-122.99754706599994,37.993842171],[-123.0178155029999,37.99352168100013],[-123.0274530269999,37.99448874500002],[-123.02162165199987,38.000482830000024],[-123.01599822899989,38.00069532800002],[-122.99072631799991,38.048715678000164],[-122.94964800599989,38.143990916000135],[-122.95028510099992,38.16449325100011],[-122.95551003299987,38.17627198400008],[-122.96494531699994,38.1826022930001],[-122.96478813899992,38.19859819700012],[-122.97383947199988,38.20803831000013],[-122.98305035499996,38.22012947800012],[-122.99323038199991,38.229518661],[-122.99629668999985,38.2427298240001],[-122.98525421899986,38.237811760000156],[-122.9648161309999,38.21770038500013],[-122.92557009899986,38.17514066400018],[-122.90727724899993,38.15234425900003],[-122.89150956899995,38.13080475500006],[-122.86876380099993,38.11025625200004],[-122.8433731759999,38.09198639500015],[-122.8256729809999,38.07208893400015],[-122.83226477799987,38.09589264500014],[-122.85043186299986,38.110698133000184],[-122.88841712099986,38.15460846600014],[-122.93553626199986,38.215480861000074],[-122.94399861399991,38.219311254],[-122.9506550119999,38.21729476200015],[-122.95433603899991,38.23140219700015],[-122.96457100899997,38.23236428500009],[-122.96881528499986,38.23709363700006],[-122.96851762499993,38.25087276099999],[-122.9745351859999,38.266194223000085],[-122.98711616199992,38.27772299600018],[-123.00228036399997,38.29485919500014],[-123.0295215569999,38.312691558000054],[-123.04646037599989,38.312048445000144],[-123.05169682299989,38.30519213200013],[-123.05288652299991,38.298000393000066],[-123.06243964399995,38.29590274800016],[-123.07596724999985,38.32247308700009],[-123.06838791799989,38.34629023300012],[-123.07093227399992,38.359954194000025],[-123.07904469399995,38.37207802600015],[-123.08703018399986,38.391262379000025],[-123.09581026199989,38.39583151500007],[-123.10205716099982,38.41216428600008],[-123.11275980599994,38.420619134000034],[-123.12457863199985,38.43747928800015],[-123.12872916099991,38.44931026500011],[-123.17092403599989,38.479188398000176],[-123.2526579799999,38.51066562400011],[-123.2725567349999,38.528950711],[-123.30454702099985,38.54902420899999],[-123.3153199309999,38.55747294700013],[-123.33697942599987,38.56725947100013],[-123.3416676989999,38.58663059400003],[-123.35599489899988,38.59714943900012],[-123.36588676699989,38.600738471000156],[-123.36948774199993,38.612144403000016],[-123.40109530899993,38.64283242100011],[-123.41398169599988,38.666687392000185],[-123.43246083599985,38.67797137400008],[-123.4336066769999,38.68679466900012],[-123.47409662099993,38.72197455700008],[-123.49245728599988,38.73646867300012],[-123.52329295999994,38.74672398600008],[-123.53764325899988,38.772329148],[-123.5588451309999,38.78299056900009],[-123.56623287699992,38.79515208500011],[-123.59417096799984,38.805820716000184],[-123.61647232699988,38.827315014000035],[-123.64830661699988,38.84953497100018],[-123.66305923399989,38.872450691000054],[-123.69756133299984,38.90027772100013],[-123.71167236799988,38.91432100200008],[-123.72624223399986,38.91857608600016],[-123.72730120399991,38.93318295900012],[-123.74260670099993,38.95562391100004],[-123.72524161299995,38.960372251000095],[-123.70392818899985,38.99005768400012],[-123.69608687399997,39.007794611000136],[-123.68907630099989,39.02789948100014],[-123.69131425699987,39.03856028900019],[-123.69515070399987,39.059126676000105],[-123.70384054699988,39.083628436000126],[-123.71288221799998,39.106315400000156],[-123.72164871299994,39.13301934200014],[-123.73779584399995,39.14300494700008],[-123.73555056099991,39.159034120000015],[-123.76785035099996,39.19400673300008],[-123.77789808799989,39.22212051500016],[-123.79054342099988,39.26974584900013],[-123.80326337599986,39.27895400300003],[-123.79747473899988,39.29767487200003],[-123.80638587099992,39.30475495000009],[-123.80599765599986,39.324140097000154],[-123.82492424799992,39.34729559200015],[-123.82056891899988,39.40526009600007],[-123.81650937299992,39.443998058000105],[-123.79863812599987,39.490508910000024],[-123.77635657499988,39.52928294500013],[-123.76976831899995,39.544645807000094],[-123.76944436899986,39.56372821100014],[-123.78682783299986,39.59677697900018],[-123.7864794549999,39.65520462200005],[-123.79037649099985,39.66641482000007],[-123.79058168999987,39.67737373700008],[-123.79596738899988,39.691867604],[-123.80293482599986,39.70251275400015],[-123.80857390099987,39.711797943000036],[-123.82381696099986,39.717762103000055],[-123.8300195709999,39.72651417800007],[-123.83055579299995,39.741848049000126],[-123.83755566199991,39.76160177100003],[-123.8372750519999,39.782944200000045],[-123.84473142599991,39.80829910800004],[-123.85401880399988,39.833514269000105],[-123.88017665999989,39.84427130500002],[-123.90772097799994,39.86586720400014],[-123.93069626899987,39.90801781000006],[-123.95555435399989,39.92450624500019],[-123.9789471939999,39.96289615300019],[-124.00123998899993,39.978083140000145],[-124.02270607499985,40.00213543100004],[-124.03345779899986,40.0121259260001],[-124.04514908099989,40.01872716900006],[-124.05852030099992,40.023796388],[-124.06332797199988,40.02259687100015],[-124.06937018099985,40.02133314500013],[-124.07605200499984,40.02721716400007],[-124.08040697499992,40.03555970700013],[-124.08048040999986,40.0597891850001],[-124.08744171699996,40.07751537300011],[-124.11579342399993,40.107123114],[-124.13825136999986,40.11592565100003],[-124.1853173809999,40.12955148000016],[-124.2199964119999,40.16515220400014],[-124.2564227259999,40.18441513600011],[-124.31937787699991,40.22461311000016],[-124.32715432999994,40.237040215000135],[-124.34258148999992,40.24203732900007],[-124.36350979499994,40.26148093700006],[-124.36013698099993,40.281567164000066],[-124.34828314299995,40.31890737800016],[-124.36477798899998,40.34468345700019],[-124.36620520699984,40.3774507400001],[-124.39810962899988,40.41583572800006],[-124.4092019709999,40.44381766500008],[-124.39595955699987,40.465362732000145],[-124.3880281519999,40.483295],[-124.38378271899991,40.50010035400011],[-124.38583202399992,40.509515360000094],[-124.36999971299991,40.536889624000125],[-124.35798092399989,40.563055731000176],[-124.34996497299996,40.57778554900006],[-124.32209225199988,40.617377020000035],[-124.31948808499988,40.62864817900011],[-124.3172501289999,40.632066148000106],[-124.31403561099987,40.634588934000035],[-124.31012936099985,40.63548411700013],[-124.30577551999997,40.637396552000084],[-124.30768795499982,40.64158763200011],[-124.31163489499991,40.64622630400014],[-124.30761633699986,40.65282504500006],[-124.29266295799992,40.6768226170001],[-124.27387476799989,40.70004705500004],[-124.25255286399988,40.73476797100015],[-124.23973767299995,40.75870946500008],[-124.23088539699988,40.750081009000084],[-124.24729441699992,40.727912378],[-124.25847722199988,40.70688272500002],[-124.25949774499995,40.69841007300015],[-124.24803626199991,40.69326406500014],[-124.23437341999993,40.69189955600014],[-124.22576009799994,40.686123080000115],[-124.2217029069999,40.6901108010001],[-124.2246199199999,40.695202054000085],[-124.22168811199991,40.697713874999984],[-124.21384469099992,40.701402471],[-124.21323603399992,40.709511239],[-124.22178329199996,40.72243168500013],[-124.21742907299985,40.730717736000045],[-124.22045493599994,40.737238493000106],[-124.21329590199991,40.741851361000116],[-124.20289856699992,40.74518552700012],[-124.19861015899993,40.754424907000136],[-124.20108402099987,40.76192716000012],[-124.1982353609999,40.76904071700001],[-124.1915884359999,40.77283896000013],[-124.18891189699988,40.790574382000116],[-124.1827433209999,40.79990301300016],[-124.17550180199991,40.80356189200002],[-124.1638096579999,40.806466714000024],[-124.14586757999987,40.80964862800012],[-124.1368970289999,40.80719127200011],[-124.12186467299992,40.807383196],[-124.10919491099992,40.814151048000056],[-124.08739831299991,40.82515617000017],[-124.08248331899985,40.843501684],[-124.08446204299987,40.84837474200005],[-124.0938207669999,40.85398997600005],[-124.10180206399993,40.858443981000086],[-124.10846685799991,40.85480729699999],[-124.11897466899991,40.85194723500014],[-124.12607293299993,40.85400186900016],[-124.13143172299995,40.858039212000065],[-124.13755385599988,40.8639467440001],[-124.15132441499989,40.86332105800001],[-124.15496769799991,40.86172747800008],[-124.15664444599989,40.851181181000086],[-124.16660825099991,40.842159547000065],[-124.17040739599993,40.82675683300009],[-124.18397468899991,40.815662637000074],[-124.19359848499994,40.802370455000116],[-124.19974479099992,40.78485271000001],[-124.22328814199996,40.75709610600008],[-124.23284111899989,40.766642871000116],[-124.21684853099987,40.78642173400008],[-124.17657512299989,40.84775433800014],[-124.13375761799992,40.93639875300015],[-124.12067639299991,40.978954375000015],[-124.11041334599994,41.01525282500007],[-124.11141221899989,41.04166033300014],[-124.11703013599993,41.04824710300012],[-124.12732576799995,41.04953142699999],[-124.13457304699989,41.04794940300011],[-124.14292856199987,41.05312728600016],[-124.14687839499993,41.06016541600012],[-124.14930237899985,41.07595670500008],[-124.15528282199996,41.08681197400013],[-124.16063391799985,41.09935130400008],[-124.16027754299985,41.113563001],[-124.16405283299986,41.13222009000005],[-124.1628897879999,41.139080266000015],[-124.15633162,41.142351715000174],[-124.14769066899989,41.14094843200014],[-124.14347380699985,41.14499187400013],[-124.12426181199993,41.181808722000184],[-124.1132706369999,41.22117747599999],[-124.09093176999987,41.28945547100007],[-124.0821833979999,41.34178294500008],[-124.06780931799995,41.39892056100013],[-124.06215535799994,41.43587598600011],[-124.0760798819999,41.48997630400008],[-124.08202063699984,41.521470444999984],[-124.0683487619999,41.53925202000006],[-124.07892818899985,41.54336172100004],[-124.0886938139999,41.549139716000084],[-124.09691321499989,41.556830145],[-124.10309811099988,41.56655508000016],[-124.10387122299989,41.57611725500014],[-124.10277258999994,41.602606512000094],[-124.10651607999988,41.60809967700014],[-124.11497962099992,41.617865302000084],[-124.12657630099991,41.640082098000114],[-124.13988196499986,41.66429271000014],[-124.13849850199986,41.679754950000145],[-124.14578494299987,41.70638124800008],[-124.15945881399989,41.73667478000006],[-124.17728645099994,41.743599917],[-124.1879213869999,41.746991123],[-124.19631423399993,41.744033010000024],[-124.20110746299986,41.73930533000011],[-124.23236084199993,41.76236256000006],[-124.26289518399994,41.77642785800005],[-124.26046399199987,41.788783114000026],[-124.24792411599988,41.79387373900006],[-124.23396333999992,41.81320590299999],[-124.21883713399991,41.850006372000124],[-124.21095850199987,41.891009920000116],[-124.20221920499982,41.960394598],[-124.20368404899989,41.97117747600011],[-124.20787512899992,41.98151276200012],[-124.21696831799993,42.00617733700001],[-124.23696829599987,42.017502766000135],[-124.26087523099997,42.03379747100003],[-124.2748261469999,42.045386991000086],[-124.29311856899997,42.04647370300002],[-124.33595054299991,42.091502932000125],[-124.35045799499997,42.097958190000085],[-124.35955577699988,42.113002399000045],[-124.35416434699994,42.13190324900002],[-124.36616868299983,42.15006025100014],[-124.36383788899992,42.17516287300005],[-124.3762352889999,42.19664726100008],[-124.37905904899986,42.220278054000076],[-124.39517167899989,42.239447333000115],[-124.41246497299996,42.24892812700013],[-124.41026770699987,42.25885651200004],[-124.4094487729999,42.29624445600011],[-124.42332923099987,42.317816473],[-124.42788652299991,42.32001373900009],[-124.43281358699988,42.32931074000008],[-124.43065344999987,42.34955475500006],[-124.42607544399988,42.36184387400006],[-124.42650048899989,42.377280563000014],[-124.4273186309999,42.396577619000155],[-124.42498011599986,42.41988893900019],[-124.43978839699986,42.4391918300001],[-124.42354186799986,42.45409067000004],[-124.42202501699987,42.46703634100011],[-124.4206749979999,42.49100483400015],[-124.4063207669999,42.519517320000105],[-124.4028214179999,42.53290436400012],[-124.39443925699995,42.56655508000013],[-124.39818109699992,42.58552069100001],[-124.40336644699988,42.59494515700008],[-124.39989126299993,42.61572987200013],[-124.40853374299985,42.644964339000026],[-124.4145401679999,42.66242096600014],[-124.42617753799989,42.671535549000126],[-124.44090735599991,42.67804596600003],[-124.45441646999987,42.68691640800007],[-124.4667862619999,42.70254140800016],[-124.47292717299987,42.73030857600015],[-124.49181976899986,42.73775836099999],[-124.50548255099994,42.736517645],[-124.51500403599994,42.748724677000084],[-124.5320531889999,42.80394114799999],[-124.53888912699992,42.816229559000064],[-124.54938717399988,42.825588283000066],[-124.56676184799994,42.83397044500005],[-124.54771887899997,42.84544505399999],[-124.4924472699999,42.929836294000054],[-124.46367206999989,42.99304318100003],[-124.45425370999989,43.011297919000114],[-124.44488342399988,43.029999070000045],[-124.43746364399989,43.05612324800002],[-124.43470285599989,43.07494314000003],[-124.4244451869999,43.119290092000156],[-124.41615145099989,43.12548444900004],[-124.41848524499991,43.14215128400015],[-124.38661223899989,43.26309906700014],[-124.3951367409999,43.3000737710001],[-124.40132379099988,43.31009613200014],[-124.38537490399992,43.33015824900009],[-124.37650426599987,43.340228799000144],[-124.3598674449999,43.34227740900009],[-124.3421230579999,43.35210375500016],[-124.32945515199988,43.348814444000155],[-124.32597167799987,43.338664408000014],[-124.32640753599989,43.3122520940001],[-124.31651421799985,43.299832471000045],[-124.31287316299985,43.30900654600005],[-124.3082836009999,43.32787775700014],[-124.3118175109999,43.33866264400014],[-124.30870754899989,43.35491127800013],[-124.3005599249999,43.36366093200003],[-124.28734290299992,43.370591539000046],[-124.27619381399991,43.39394765800013],[-124.25275631399984,43.4174665390001],[-124.23287357199992,43.424081451000134],[-124.22231501599991,43.42519798900004],[-124.21799379199985,43.41637656600007],[-124.2186329559999,43.402150876000135],[-124.21823878899995,43.386041811000055],[-124.21287332199985,43.37468093200003],[-124.2003779529999,43.373951905000084],[-124.17777655099992,43.36916023300002],[-124.1518448559999,43.36945221600003],[-124.14003492599991,43.37534897400006],[-124.16974219099987,43.37983307399999],[-124.18667172899987,43.391327923000105],[-124.19046971899988,43.40534589900007],[-124.19432777399987,43.42000884700003],[-124.20861091599996,43.43095956100008],[-124.2070257589999,43.44325738900001],[-124.1976212229999,43.45246002800012],[-124.20869823999989,43.452189747000126],[-124.2331319499999,43.44723619000017],[-124.24019189499987,43.436624843000125],[-124.26239906599992,43.426615851000044],[-124.27702748299987,43.42145488500013],[-124.28345782499991,43.403115965000055],[-124.3252826159999,43.36253713300012],[-124.33522928399991,43.365316424000056],[-124.29802929799985,43.41792560500006],[-124.23790317399995,43.54711586200001],[-124.22346599099991,43.58643132900011],[-124.2156876289999,43.627386786000116],[-124.20978775599988,43.65663013400014],[-124.2022832329999,43.662761227000104],[-124.17468629199992,43.67299544900011],[-124.16171284099997,43.68838431900009],[-124.15444902299988,43.69847239799999],[-124.14932206899987,43.71190013200008],[-124.14183508999989,43.72162506700012],[-124.13981216599984,43.73310579900011],[-124.13285421699987,43.734687380000146],[-124.12616810899989,43.728526572000035],[-124.11658510699988,43.71093471300004],[-124.10901797299994,43.706116866000016],[-124.07249915299984,43.70473867400012],[-124.07021816699987,43.71166144500013],[-124.08553936299984,43.71292483800012],[-124.10127095299995,43.718667316000094],[-124.11521079999996,43.73542805600005],[-124.12853327499992,43.74908528500005],[-124.14881408899994,43.7475875570001],[-124.16047524199989,43.73674735400006],[-124.16144771999987,43.71771881700012],[-124.17151485399988,43.697602817000146],[-124.19083464299986,43.68452342200011],[-124.20294541599988,43.68077271000011],[-124.19172403499992,43.71736278800016],[-124.17601841799983,43.76247677400006],[-124.15103105399987,43.88174062700007],[-124.14474733799989,43.94321116700009],[-124.13988196499986,43.98200104400014],[-124.13719641799989,43.990423895],[-124.12425696499987,43.99624258000007],[-124.1194555329999,44.0064964860001],[-124.13341874299995,44.03201655800008],[-124.13354093999995,44.04425574600005],[-124.12612870999992,44.09955475500006],[-124.11394579699991,44.190582722999984],[-124.11408443899983,44.24900950700008],[-124.10724850199989,44.286322333000115],[-124.10814368399991,44.29238515800013],[-124.11359615799984,44.30145905200011],[-124.11408443899983,44.30735911700007],[-124.11148027299991,44.31329987200009],[-124.10309811099988,44.32233307500009],[-124.10041256399988,44.32729726800015],[-124.08884390699988,44.38544496500004],[-124.08442714099992,44.41166449899999],[-124.0718888009999,44.421820380000085],[-124.06530979399992,44.42948907100008],[-124.05355179999987,44.43297538200015],[-124.04523922899988,44.42527598800008],[-124.03497709199989,44.416174158],[-124.0178930329999,44.409816799000154],[-124.02761581899985,44.43921613900004],[-124.03933712999986,44.443445670000024],[-124.0496124839999,44.44869587800004],[-124.0682391389999,44.43788569400009],[-124.07608050499988,44.43334357200014],[-124.08343370599988,44.42775211000016],[-124.08275305899988,44.44086334800006],[-124.08143410799991,44.462361753000025],[-124.08435201399993,44.498066040000126],[-124.06319396599989,44.60951951900013],[-124.05260726199988,44.618212423000145],[-124.04566302899985,44.62149981099999],[-124.03113492799987,44.617959933000016],[-124.02321475299993,44.611366461],[-124.02024871099992,44.60689426000006],[-124.01202007199988,44.59983535100018],[-124.00969077199989,44.60994500700014],[-124.00475494699988,44.61629137000007],[-124.00670665999989,44.623814005000085],[-124.01888343999984,44.62712008600006],[-124.02318931999989,44.62312595499999],[-124.02715573499987,44.622424241000104],[-124.0350803959999,44.625724517000045],[-124.04829422599987,44.632554954000156],[-124.0558997299999,44.62668213100007],[-124.06813834499991,44.61775280300013],[-124.07077849899989,44.6205767740001],[-124.06745831699997,44.632099257],[-124.0628299909999,44.64055204600005],[-124.05918553699989,44.65158865400017],[-124.05784401799991,44.66358018300018],[-124.06278756799993,44.67182026200011],[-124.07468672499992,44.67279720100011],[-124.07799203999986,44.67491663600004],[-124.0723645479999,44.67890974900014],[-124.06706301099983,44.68945150500009],[-124.0584203769999,44.72614166900014],[-124.05943762899997,44.7462425800001],[-124.06526104099987,44.76370249300011],[-124.07337430199988,44.777653192000045],[-124.06656211199989,44.805527790000056],[-124.06518479399996,44.82331108200019],[-124.05363960899986,44.83869852100004],[-124.04649817599994,44.85838450700005],[-124.03453528599994,44.8784040390001],[-124.03270423099987,44.89736562700004],[-124.03184973899994,44.90485260600009],[-124.02448482999985,44.90973541900014],[-124.01768958199992,44.916571356000176],[-124.01820425999988,44.92749587800007],[-124.0256465949999,44.93566194400002],[-124.02448482999985,44.94383372600008],[-124.01500403599994,44.96771881700014],[-124.0113419259999,44.99770742400001],[-124.00479081899994,45.04352448100009],[-124.01573645699989,45.05442942900008],[-124.01414954299985,45.06427643400009],[-124.00422115799986,45.08258698100015],[-123.98436438699987,45.10492584800009],[-123.97691809799996,45.12885163000005],[-123.97109941299992,45.1537132830001],[-123.97059048499989,45.16729277000003],[-123.96917652999988,45.186056690000115],[-123.96912234899993,45.205299804000056],[-123.97638912699989,45.21662018400003],[-123.96835632599986,45.250513705000074],[-123.96544348899991,45.25844961100015],[-123.96207792299988,45.27936481300016],[-123.96035722599989,45.29999420800014],[-123.97191321499993,45.33144765800007],[-123.98766028599988,45.336371161000116],[-124.00177975199992,45.33763255400013],[-124.00177975199992,45.34446849200004],[-123.98102779899992,45.34959544500008],[-123.97276770699992,45.362005927],[-123.97020423099993,45.37860748900006],[-123.96784420499988,45.391791083],[-123.96446692599994,45.402533270000035],[-123.96117102799991,45.409165757],[-123.95787512899997,45.41498444200012],[-123.95335852799992,45.41339752800009],[-123.95547441299992,45.40924713700015],[-123.96080481699988,45.37860748900006],[-123.94424394399994,45.389349677000055],[-123.93195553299986,45.40542226800015],[-123.9184464179999,45.41766998900003],[-123.95470130099991,45.43280670800003],[-123.97109941299992,45.45197174700017],[-123.97052975199995,45.494452216000134],[-123.95860755099991,45.516058661000145],[-123.95433508999989,45.54840729400014],[-123.94880123599987,45.557196356000034],[-123.9456680979999,45.52570221600011],[-123.9391983709999,45.49982330900009],[-123.92193004099991,45.49490697300011],[-123.91287647799992,45.48333597400007],[-123.89053300699996,45.47549062700013],[-123.89422026699988,45.482310798000086],[-123.89142371399994,45.488073026000066],[-123.88661341799991,45.4933558960001],[-123.88328706899986,45.5000904890001],[-123.88534730999989,45.507305306000106],[-123.88929108899985,45.51981474100013],[-123.89748731699991,45.52463788300015],[-123.90050208199995,45.53847890800016],[-123.89606686099988,45.56028880400011],[-123.92520097599994,45.554266669000086],[-123.94798743399987,45.56875234600015],[-123.95787512899997,45.57615794500013],[-123.95225069799992,45.59106385500003],[-123.94458127299995,45.621341006000144],[-123.94187579199992,45.64850486400009],[-123.92073228599995,45.66266321900004],[-123.92159545799987,45.68372575100006],[-123.9182294699999,45.689566336000055],[-123.91030148199985,45.69127981300009],[-123.90151805799991,45.68710930800007],[-123.89331285299993,45.68362677100005],[-123.88742846599986,45.68292324900001],[-123.87954667899989,45.68650950699999],[-123.87108313699986,45.69790273600016],[-123.87718665299985,45.69611237200017],[-123.88166256399991,45.69546133000004],[-123.88589433499993,45.694037177000055],[-123.89732271699987,45.69576431200015],[-123.90361583199991,45.70098870900012],[-123.90800991899997,45.70826812600008],[-123.91743251899993,45.70448305400008],[-123.92103915499983,45.69719540600006],[-123.93034415699987,45.693442533000066],[-123.93236567699991,45.68168891500012],[-123.93241524499989,45.668548308000155],[-123.93787972599985,45.66060352300015],[-123.93936113199996,45.66766998900006],[-123.93740800699992,45.6989606790001],[-123.94167718899992,45.72695436100004],[-123.9475779109999,45.73595540300015],[-123.96392890199995,45.74386924900007],[-123.96929890999989,45.7529401500001],[-123.96776723699989,45.76093177600007],[-123.9722392209999,45.762629693000136],[-123.98113863999993,45.76029374800005],[-123.98215208099995,45.76776941400006],[-123.96837583699988,45.781578289000045],[-123.96666419199994,45.79596588700015],[-123.95913652299988,45.815659898000106],[-123.95661373599988,45.87323639500009],[-123.95970618399984,45.89728424700002],[-123.96971594999994,45.91860586100007],[-123.99054928299992,45.93793366100003],[-123.98232988199992,45.948065497000144],[-123.9728897779999,45.95270416900008],[-123.96429269199992,45.96693542800013],[-123.95109137199992,45.972263102000156],[-123.93399003799989,45.97968170800006],[-123.92845618399987,45.99258047100007],[-123.92332923099987,46.013983466000106],[-123.92840235199986,46.03724613100009],[-123.93684173599986,46.08183125800004],[-123.95063281399989,46.11999888000003],[-123.99046790299994,46.200506903000054],[-124.02266442699988,46.23084160300014],[-124.01733997099986,46.23543291300014],[-124.00271757999987,46.237717669000105],[-123.98813087899993,46.226665894000135],[-123.9947904739999,46.2202408500001],[-123.98485589899994,46.210117],[-123.96891676399987,46.21055530400004],[-123.9510043199999,46.20501458400015],[-123.92383532099991,46.19072139000015],[-123.91591067299989,46.18059590600007],[-123.9105953869999,46.18150636600011],[-123.90396262599984,46.180113614000064],[-123.90069477599992,46.16861797700015],[-123.88080358099988,46.16398079300016],[-123.86693274599992,46.15985748900006],[-123.83502983099993,46.16249077200014],[-123.82511649499993,46.15694823500002],[-123.81854314899986,46.1472805420001],[-123.81330318899984,46.12775299700009],[-123.81248938699991,46.11416250200013],[-123.7987361319999,46.10244375200013],[-123.80028235599984,46.11579010600015],[-123.80144372199992,46.13023182600001],[-123.80064714999993,46.143553333000014],[-123.77830969999995,46.137152411],[-123.77830969999995,46.143377997000144],[-123.78693600199993,46.14956289300012],[-123.8069962229999,46.16754791900017],[-123.81615149599988,46.171332098],[-123.82701575399996,46.17206452000012],[-123.84358415799993,46.17308541600012],[-123.85019432499992,46.17723958100011],[-123.86079849099988,46.18094165100008],[-123.86541879699988,46.18646779800009],[-123.85610516699985,46.189204857000064],[-123.83616995299985,46.190077064000135],[-123.82089145499994,46.189578636000086],[-123.79808508999986,46.193548895000056],[-123.77873965399988,46.20138617900015],[-123.76677068799988,46.204106413000076],[-123.75487702599989,46.19579486800008],[-123.73668372299994,46.17816803600011],[-123.72718891499994,46.17042230300014],[-123.7059532079999,46.17080546500013],[-123.61408443899985,46.186468817],[-123.59947669199993,46.19183991100006],[-123.62011446699988,46.196644268000014],[-123.62059485599993,46.20482005400005],[-123.60741126199989,46.209051825000145],[-123.58151374699993,46.20657293700005],[-123.56492902899993,46.21655545599999],[-123.54207561699988,46.22615403700014],[-123.53659135599989,46.233973263000095],[-123.51927318599988,46.23526921600002],[-123.49714107999989,46.23281484600007],[-123.48493404899992,46.230047919000114],[-123.47314329599993,46.217489289000085],[-123.4528592739999,46.20722356800014],[-123.43715407399988,46.198321919000094],[-123.4319894899999,46.18727852700012],[-123.43014189899993,46.176723919],[-123.42105058499992,46.169134833],[-123.4059114199999,46.158253584000036],[-123.38552092199987,46.146183099],[-123.32596138099986,46.13888642800005],[-123.29937916599991,46.140992194000106],[-123.27764068199993,46.13394123300016],[-123.2564388679999,46.133321197],[-123.23330644399995,46.137152411],[-123.2210308249999,46.14728597400004],[-123.20554039499984,46.16461405200006],[-123.1934279979999,46.17233097000015],[-123.18009481299991,46.179102095000026],[-123.18073252299992,46.180027920000086],[-123.20751799599988,46.17836337500002],[-123.24750175699985,46.16262675100005],[-123.26944600599984,46.150414766],[-123.2979385159999,46.15154459800014],[-123.32886597299984,46.16555550500006],[-123.3933618139999,46.204137166000024],[-123.4123887329999,46.22029463600002],[-123.42744140499985,46.23928855300012],[-123.44448855399992,46.25778187800013],[-123.45567610599993,46.267044338000105],[-123.47891191299992,46.27586497600011],[-123.60317949099995,46.260077216000134],[-123.6626684239999,46.270249742000104],[-123.6673477859999,46.27684153900016],[-123.6699926419999,46.28558991100006],[-123.67520097599991,46.29425690300015],[-123.69296746199988,46.30520225100018],[-123.70192519499994,46.303349998000144],[-123.71598445799988,46.301464791000015],[-123.72386192099992,46.30032528100015],[-123.72618918399992,46.290234704000156],[-123.73519635599992,46.287934032000024],[-123.74753274199995,46.29108030400012],[-123.75208759399995,46.28600547400008],[-123.75774344199993,46.27751851300006],[-123.76451291799987,46.27326731],[-123.7779840499999,46.274084521000034],[-123.79086111699988,46.28299272000011],[-123.80658277799988,46.28339623],[-123.81504291699989,46.275311884000175],[-123.81844384399993,46.268761542000064],[-123.83416360999985,46.26875901800004],[-123.84149990099986,46.26143428100009],[-123.85104126799992,46.25984635500005],[-123.85445209899987,46.25212964100008],[-123.86232290699989,46.248653170000026],[-123.87303348899985,46.240171721000124],[-123.8898550529999,46.24214797100002],[-123.90779618299986,46.246460680000084],[-123.92517429899995,46.25154058400001],[-123.93973006599991,46.264383621000135],[-123.94869604699987,46.26983538100011],[-123.96714923299992,46.29431579700004],[-123.97333268299985,46.29978195100013],[-123.98509109699984,46.30909712000012],[-124.00930380899985,46.31345550600003],[-124.0228011329999,46.31425305500012],[-124.03293624599986,46.30610912000016],[-124.04025192699987,46.30417800600016],[-124.04869500599992,46.296418351000014],[-124.05151136599987,46.285929945000035],[-124.04030187799994,46.280974500000085],[-124.03806392899986,46.27670470900013],[-124.04143864499993,46.272828002],[-124.05210299599989,46.27361176900011],[-124.0616418679999,46.27672225400006],[-124.07119289499987,46.27129553300013],[-124.07583574099989,46.26829661700004],[-124.0801748779999,46.271687954000086],[-124.0783585279999,46.282375393],[-124.07734167699995,46.294966302000134],[-124.07283610299993,46.306992604000165],[-124.06888586199995,46.322898341000105],[-124.06605768999988,46.33880652300017],[-124.06379013899992,46.356267144000135],[-124.06206843599995,46.38770537700016],[-124.06085709599989,46.43987082000014],[-124.06261145699995,46.59593333500014],[-124.07249956199989,46.6425100420001],[-124.06287610599988,46.65494082900001],[-124.05100742699993,46.64560207500013],[-124.03576003699992,46.63081834300011],[-124.04409745999992,46.623602606000034],[-124.03831946499987,46.60761139500012],[-124.02562415299988,46.59088776200009],[-124.0178930329999,46.56854889500006],[-124.02623450399996,46.492336330000015],[-124.0247289699999,46.46552155200011],[-124.0220508819999,46.41966609400005],[-124.0142511089999,46.385118637000076],[-123.99344585799987,46.38009918900009],[-123.97770136199985,46.38244428900004],[-123.95811926999993,46.37824127800012],[-123.94788038499989,46.403004590000094],[-123.9320243789999,46.41528259900018],[-123.92686366099993,46.44009966500009],[-123.9206781649999,46.43931468000015],[-123.91060209199995,46.428439955],[-123.87589026699989,46.4191202920001],[-123.84654700399996,46.39663320500016],[-123.8406469389999,46.41575755400014],[-123.85676021999987,46.426459052000055],[-123.88068600199992,46.43349844000012],[-123.89806067599991,46.44163646000014],[-123.90021725199992,46.44668203300007],[-123.9016820949999,46.45734284100011],[-123.90489661399994,46.459377346000124],[-123.91051184799993,46.46067942900014],[-123.91771399599988,46.46405670800005],[-123.92438717399992,46.46845123900012],[-123.93582543199989,46.47231129000012],[-123.9357418609999,46.48045747100009],[-123.93517005099991,46.49469635600015],[-123.92211185799997,46.502552018000166],[-123.9080297519999,46.50828685100011],[-123.90070553299991,46.513373114000146],[-123.89635169199993,46.52122630400011],[-123.89492753799995,46.53131745000008],[-123.89635169199993,46.544419664000046],[-123.89981035099991,46.551174221000096],[-123.9042048819999,46.55560944200006],[-123.92031816299988,46.58071523600016],[-123.94473222599991,46.60590241100011],[-123.95641028599992,46.62311432500005],[-123.93854732999985,46.61985911700002],[-123.91104081899992,46.60541413000014],[-123.89492753799995,46.60272858300006],[-123.9158829419999,46.6284040390001],[-123.92251542899994,46.65786367400001],[-123.91100012899992,46.68203359600001],[-123.87726803299984,46.692084052],[-123.84341386599996,46.696682033000016],[-123.8264867829999,46.69236888200011],[-123.81920325399994,46.67499420800014],[-123.81187903599997,46.66258372600011],[-123.79507402299996,46.660874742000104],[-123.77647864499995,46.667181708000136],[-123.76398678299986,46.678412177000055],[-123.79572506399991,46.68195221600003],[-123.81834876199987,46.69769928600008],[-123.83975175699992,46.71743398600002],[-123.86766516799986,46.7330589860001],[-123.88361568899987,46.737494208000086],[-123.89999627299991,46.74740644900008],[-123.91223228099992,46.741022853000096],[-123.91300216599986,46.72776869400015],[-123.95178555399988,46.72483380100006],[-123.97612882699984,46.74105450800015],[-123.98195567199987,46.720438247000075],[-123.97481769699992,46.71110213400005],[-123.96334604199983,46.70716242700014],[-123.9726975669999,46.70126204899999],[-123.98776014799991,46.705704115000096],[-124.00068079899985,46.70571203100003],[-124.01432285699988,46.71065279],[-124.02508994699991,46.712628140000035],[-124.02985592399992,46.72016022300009],[-124.07032542099986,46.734812839000185],[-124.09337895899986,46.74322839000014],[-124.10059902299987,46.76147780800012],[-124.10130774599988,46.80866120000009],[-124.11408443899983,46.84910716400004],[-124.13048255099993,46.8859723980001],[-124.12682044199988,46.89850495000012],[-124.1117815459999,46.912325889000115],[-124.09087899299988,46.90001301100001],[-124.09756425699993,46.87787506700009],[-124.07738196499992,46.858791408],[-124.07249915299984,46.842922268000066],[-124.05809485599988,46.844468492000104],[-124.04206295499989,46.83978913],[-124.02839107999986,46.83397044500004],[-124.02131100199989,46.83234284100002],[-124.01382402299991,46.842474677000084],[-124.01471920499982,46.85114166900017],[-124.02139238199989,46.85984935100005],[-124.03156490799984,46.870266018000144],[-124.0570450409999,46.862085883000084],[-124.05487035199988,46.87587261200004],[-124.0469279299999,46.891135833000035],[-124.03322586799993,46.898024456000044],[-124.00670325399997,46.89923737200006],[-123.99193274599992,46.903753973],[-123.96263587099986,46.91803620000009],[-123.88169294799984,46.941664439000036],[-123.81305904899989,46.958970445000105],[-123.82810965799987,46.96522654500002],[-123.8447089239999,46.96084298700005],[-123.8679093089999,46.969631252000156],[-123.95010125699987,46.96840173200012],[-123.95586549399987,46.97234962],[-123.94503173499992,46.97283116700005],[-123.9222712879999,46.98012929900004],[-123.96521848499987,46.98418469400012],[-124.01288372699993,46.9837261170001],[-124.01936405299992,46.994076730000025],[-124.01283557999996,47.00934839700001],[-124.02769934799991,47.028143622000115],[-124.04675881899995,47.03302514700005],[-124.06554633599985,47.037470540000086],[-124.09012093799993,47.04093233400006],[-124.11686993799992,47.04291693700004],[-124.13927738999985,47.03552702700013],[-124.14818274599993,47.02440013200008],[-124.14610755099991,47.017238674000126],[-124.1367081369999,47.00189850499999],[-124.13706907899991,46.987208957000135],[-124.13850473999986,46.977351428000034],[-124.13659938599994,46.96794288100007],[-124.13081187499992,46.956765767000135],[-124.1235822459999,46.94657441000014],[-124.11105931599991,46.94799595600007],[-124.10479728099996,46.94470709200008],[-124.10576002099994,46.93342128700011],[-124.12213340899986,46.94131002500002],[-124.13802946399987,46.944596455000074],[-124.14814233599986,46.942620579],[-124.15343655199987,46.93801598000006],[-124.15342767699994,46.930123993000066],[-124.16305634099992,46.9274891210001],[-124.17846065799984,46.92550682800014],[-124.17558805399993,46.93570403700009],[-124.1764216789999,46.942613023000106],[-124.17564856699987,46.953843492000104],[-124.17228600199992,46.981426811000105],[-124.17189232099986,47.04194853700012],[-124.17433613799992,47.06660759600011],[-124.17926998599985,47.10687897300009],[-124.19983484399991,47.18747979800004],[-124.21170743599991,47.22663804600005],[-124.22754437699986,47.263167618000026],[-124.24293218799993,47.290078656],[-124.25369317199991,47.30154015300012],[-124.27598376899992,47.30262840799999],[-124.28054791299992,47.312692828000145],[-124.29925653999987,47.34820463300015],[-124.28685292399987,47.347376462000014],[-124.27832112699988,47.34195914900015],[-124.27171790299985,47.34259674700003],[-124.28309152699988,47.351234052000066],[-124.30836406799989,47.35266888100013],[-124.3178079329999,47.35735118300012],[-124.34869608499992,47.49975257000007],[-124.35081946499994,47.546820380000085],[-124.37488720099992,47.60768812000005],[-124.38360637399988,47.63601669700007],[-124.41078160799987,47.6881835490001],[-124.41583523199985,47.725587044000015],[-124.4227595689999,47.74188873900012],[-124.43541419199995,47.744452216000056],[-124.44676673099994,47.75039297100007],[-124.45588131399984,47.76178620000003],[-124.4765656899999,47.778254609000086],[-124.48346920499984,47.812933661],[-124.54161217999987,47.83433114900011],[-124.55626461199988,47.853682102],[-124.56798255099987,47.86969635600015],[-124.59313293199992,47.876199526000065],[-124.60950710599991,47.87485519800005],[-124.63813010599983,47.907864261000086],[-124.65615800699989,47.95400625200013],[-124.67198645699992,47.99070872600005],[-124.68321692599991,48.02781810100005],[-124.69384694099996,48.07453032800005],[-124.68944251199987,48.10016510600012],[-124.72297115799992,48.15009186400006],[-124.73460723799991,48.17040360400016],[-124.71923587799985,48.17629576500015],[-124.70006628599985,48.19185865300015],[-124.68944251199987,48.21344635600009],[-124.68976803299991,48.21889883000013],[-124.6949356759999,48.225572007],[-124.70551651199989,48.245979080000055],[-124.70362725999988,48.2498545860001],[-124.68913306799993,48.25250801],[-124.68247849099991,48.26349982100005],[-124.68321692599991,48.284735419000114],[-124.6798396479999,48.293687242000125],[-124.66490637899994,48.30906810100007],[-124.66148841099994,48.31952545800006],[-124.67053656399993,48.32416871300002],[-124.66967764999993,48.33318756000007],[-124.67841909999987,48.33508434200017],[-124.6891087929999,48.33761605800011],[-124.70281518699993,48.347202089000135],[-124.7182511059999,48.35736725499999],[-124.73025557199992,48.37157828700005],[-124.72752846799996,48.387727740000095],[-124.6965179709999,48.391086445],[-124.6615760589999,48.38603691200008],[-124.63815999099982,48.38300116800018],[-124.61955495499983,48.36891544800001],[-124.60797431099991,48.36632591200004],[-124.59336672599991,48.37485614600003],[-124.57489390699993,48.370407625],[-124.53207233999989,48.34990991900018],[-124.45799719999992,48.31683991100009],[-124.39921398699994,48.29357992500003],[-124.34683183499996,48.28107330900015],[-124.33763587099989,48.27704498900008],[-124.29634240099989,48.26154523500015],[-124.27400683799986,48.25705125800012],[-124.2508462529999,48.262899088],[-124.22765051999993,48.258530992000075],[-124.1598025499999,48.23266201700009],[-124.11141428099987,48.215931080000175],[-124.09984094299992,48.20047268100002],[-124.05018191899984,48.17726302600006],[-123.99707727499992,48.172693967000114],[-123.97099138599995,48.16559843600011],[-123.94394835799989,48.16554333700016],[-123.91883313099994,48.16227674000008],[-123.87342522299987,48.161551778000145],[-123.86188353299987,48.15639424600009],[-123.81833923199989,48.160775417000124],[-123.78888912699989,48.153143622000144],[-123.74202050699984,48.15991492100015],[-123.70034372899993,48.16491069600015],[-123.64169479499994,48.15119169200004],[-123.63387289599989,48.14144709900013],[-123.5845996209999,48.13541681000008],[-123.56703737599986,48.146934193],[-123.55239345699995,48.151362185000025],[-123.5350284309999,48.1454647500001],[-123.52361692399992,48.13509975000012],[-123.50548255099997,48.13263580900009],[-123.47560609099985,48.1336073610001],[-123.43589582599985,48.14240718200007],[-123.41850625299989,48.142302973000156],[-123.4050218359999,48.13899837100003],[-123.42630174399989,48.13719214900006],[-123.44083569399996,48.134055426000046],[-123.45342862999986,48.13154865000003],[-123.44966062699984,48.125108759],[-123.42173417099988,48.117827898000044],[-123.35799863999986,48.117422337000065],[-123.3223261789999,48.11461325100007],[-123.28746124399989,48.11821655800004],[-123.24692672299989,48.11533374599999],[-123.22362219999991,48.12201569200006],[-123.17060080399995,48.16437427900017],[-123.15003329499986,48.17710225300008],[-123.1082505149999,48.18383763900012],[-123.11802433499987,48.17940744400012],[-123.13072170199983,48.17371189300006],[-123.1444712369999,48.163508263],[-123.16128495999993,48.15192291900006],[-123.14571375499986,48.15126993000011],[-123.11180940699991,48.14902750300011],[-123.0891820949999,48.12848541900014],[-123.06302914799996,48.11760338500012],[-123.04045427199985,48.08511328700003],[-123.04527747299996,48.059719143000066],[-123.0296931629999,48.04523346600003],[-123.00788326699983,48.03856028900015],[-122.9968155589999,48.03864166900014],[-123.00572669199993,48.07868073100009],[-122.99913489499995,48.09174225500006],[-122.9569392569999,48.097479559000035],[-122.94107011599988,48.097886460000055],[-122.92747962099993,48.095119533000066],[-122.92174231699995,48.08612702000006],[-122.91877193899985,48.07021719000015],[-122.9107966789999,48.066107489],[-122.89972896999987,48.06622955900015],[-122.88695227799991,48.062567450000024],[-122.87254798099985,48.04975006700009],[-122.85728919199988,48.029527085000055],[-122.85338294199987,48.01044342699999],[-122.87328040299987,48.001125393000116],[-122.87328040299987,47.99371979400014],[-122.85435950399996,47.995266018],[-122.84137936099987,48.00556061400003],[-122.82485917899987,48.035223700000145],[-122.8369034499999,48.04987213700015],[-122.8770645819999,48.07965729400014],[-122.88166256399984,48.09174225500006],[-122.87775631399984,48.10663483300011],[-122.86831620999993,48.1192894550001],[-122.85627193899991,48.12457916900017],[-122.8238419259999,48.131089585000055],[-122.79491126199991,48.14118073100003],[-122.77017167899993,48.14109935100005],[-122.75039628799992,48.11717357],[-122.7598770819999,48.11220937700013],[-122.78453528599991,48.10293203300007],[-122.79137122299993,48.096747137000094],[-122.7919815749999,48.08291250200001],[-122.78449459499993,48.07306549700009],[-122.77538001199991,48.06557851800012],[-122.77090410099987,48.05914948100012],[-122.76463782499991,48.04462311400006],[-122.72248287699998,47.99371979400014],[-122.71434485599985,47.98725006700014],[-122.69538326699984,47.97894928600005],[-122.68834387899996,47.97321198100009],[-122.68565833199989,47.96539948100009],[-122.68252519399992,47.94407786700005],[-122.67808997299994,47.935695705000064],[-122.62621008999986,47.889553127000156],[-122.62010657499988,47.87763092700011],[-122.62824459499988,47.87352122600008],[-122.65807044199988,47.872503973],[-122.66783606699993,47.870794989],[-122.67642167899992,47.862127997000115],[-122.6839086579999,47.843207098000086],[-122.69204667899993,47.832586981000034],[-122.73639889199987,47.79441966400015],[-122.75039628799992,47.774562893000066],[-122.7686661449999,47.73798248900012],[-122.77521725199996,47.71881745000017],[-122.77769934799989,47.70254140800013],[-122.78107662699992,47.692043361000074],[-122.78929602799991,47.684515692],[-122.80036373599987,47.679877020000085],[-122.8118790359999,47.67837148600013],[-122.82848059799994,47.68317291900003],[-122.82921301999987,47.69407786700001],[-122.81802324099995,47.713120835],[-122.79979407499988,47.77728913000014],[-122.79893958199987,47.80670807500003],[-122.80565344999991,47.84345123900012],[-122.81729081899994,47.83026764500009],[-122.81847083199995,47.81085846600017],[-122.82160396999983,47.79242584800012],[-122.83918209499987,47.78204987200003],[-122.84040279899989,47.80231354400014],[-122.84679114499991,47.82029857],[-122.85643469999987,47.82607656500015],[-122.8670955069999,47.80927155200014],[-122.8663630849999,47.79352448100017],[-122.85826575399994,47.775458075000145],[-122.83918209499987,47.746649481000034],[-122.86192786399991,47.733343817],[-122.87621008999989,47.710150458000086],[-122.88662675699987,47.688137111000074],[-122.90396074099988,47.67316315300003],[-122.91002356699987,47.65009186400009],[-122.91803951699991,47.644842841000084],[-122.93032792899987,47.64199453300012],[-122.94176184799991,47.6349144550001],[-123.02106686099988,47.565659898000106],[-123.03294837099993,47.54999420800014],[-123.06509355399989,47.49339427300004],[-123.08055579299992,47.47882721600011],[-123.10130774599989,47.465277411000145],[-123.11937415299991,47.449530341000084],[-123.13337154899989,47.412298895],[-123.1584366529999,47.3720563820001],[-123.16128495999993,47.35683828300013],[-123.1302384109999,47.34064362200009],[-123.0741267569999,47.34463125200006],[-122.9051407539999,47.394964911000116],[-122.87157141799986,47.40985748900006],[-122.83918209499987,47.431952216000134],[-122.86774654899995,47.436265367000075],[-122.90705318899987,47.42381419500004],[-122.97630774599992,47.391017971000124],[-123.05223548099987,47.36701080900009],[-123.0918676419999,47.36737702],[-123.11351477799988,47.391017971000124],[-123.11050370999988,47.40509674700017],[-123.09935462099985,47.41990794500004],[-123.07258053299986,47.445542710000105],[-123.06330318899991,47.45673248900012],[-123.02261308499992,47.522894598],[-122.94904537699995,47.59707265800013],[-122.93545488199989,47.60285065300012],[-122.87328040299987,47.63117096600014],[-122.79820716099995,47.65167877800012],[-122.77538001199991,47.66071198100011],[-122.76353919199987,47.66913483300006],[-122.75706946499987,47.68231842700011],[-122.74278723899988,47.72687409100011],[-122.73375403599997,47.74258047100007],[-122.63487708199993,47.83966705900009],[-122.62364661399994,47.84715403900016],[-122.61318925699987,47.850287177000055],[-122.59569251199991,47.847235419000135],[-122.59414628799988,47.839789130000085],[-122.5969945949999,47.83071523600007],[-122.59215247299994,47.82298411700007],[-122.57095292899994,47.819769598],[-122.56651770699995,47.83445872600011],[-122.57144120999992,47.85708242400006],[-122.58828691299992,47.904445705000015],[-122.59215247299994,47.91176992400001],[-122.61099199099988,47.93598053600011],[-122.61318925699987,47.94594961100001],[-122.55337480399992,47.92084381700011],[-122.52806555899988,47.90550364800008],[-122.51768958199996,47.88104889500012],[-122.51646887899993,47.86635976800012],[-122.5102432929999,47.832586981000034],[-122.5042211579999,47.82245514500009],[-122.4937638009999,47.81403229400003],[-122.49006100199995,47.803859768000095],[-122.50401770699992,47.788234768],[-122.49502519399992,47.78611888199999],[-122.48452714799993,47.78213125200001],[-122.4751684239999,47.77606842700011],[-122.46922766799987,47.76837799700009],[-122.46837317599987,47.75653717700013],[-122.4734594389999,47.748032945000105],[-122.47972571499986,47.74188873900012],[-122.48289954299992,47.73700592700005],[-122.4929093089999,47.73525625200007],[-122.54108639199985,47.74286530200002],[-122.55797278599995,47.74042389500006],[-122.55577551999994,47.72870514500009],[-122.5646866529999,47.71255117400004],[-122.5797013009999,47.69818756700015],[-122.59585527299988,47.69196198100009],[-122.65160071499987,47.73257070500009],[-122.6610408189999,47.73045482],[-122.65811113199987,47.71796295800006],[-122.65099036399992,47.71141185099999],[-122.64191646999993,47.70669179900007],[-122.63312740799985,47.699448960000055],[-122.62840735599985,47.69293854400014],[-122.59215247299994,47.59707265800013],[-122.5995987619999,47.590236721000124],[-122.59215247299994,47.582749742000075],[-122.61693274599989,47.574123440000065],[-122.64378821499989,47.59585195500013],[-122.68150794199994,47.65167877800012],[-122.68919837099988,47.643540757],[-122.69456946499992,47.63410065300017],[-122.6969294909999,47.62311432500003],[-122.69579016799986,47.61005280200014],[-122.69001217399989,47.59662506700015],[-122.68154863199995,47.590521552000055],[-122.64683997299989,47.57697174700009],[-122.63914954299986,47.57705312700007],[-122.63898678299991,47.57477448100009],[-122.64736894399995,47.56232330900009],[-122.65689042899994,47.55174388200014],[-122.67593339799993,47.53766510600009],[-122.68150794199994,47.52753327000012],[-122.63019771999984,47.54437897300012],[-122.60704505099989,47.555487372000165],[-122.58592688699989,47.56907786700013],[-122.55313066299988,47.583400783000016],[-122.54320227799987,47.56679922100015],[-122.54161536399994,47.540961005000106],[-122.53408769399987,47.52753327000012],[-122.50792395699993,47.520331122000115],[-122.50959225199995,47.50291575700013],[-122.52269446499992,47.481756903000026],[-122.53066972599986,47.46295807500009],[-122.53831946499989,47.43748607],[-122.5516251289999,47.41400788000011],[-122.55622311099987,47.391994533000016],[-122.53750566299989,47.37055084800006],[-122.54507402299993,47.35643138200014],[-122.55524654899999,47.346625067],[-122.56867428299988,47.34015534100011],[-122.58592688699989,47.33637116100009],[-122.56065833199992,47.30133698100009],[-122.55699622299997,47.284613348000065],[-122.5685115229999,47.26406484600001],[-122.58348548099985,47.264227606000176],[-122.6610408189999,47.28790924700008],[-122.68626868399986,47.301214911000116],[-122.68346106699991,47.31037018400009],[-122.66950436099985,47.319484768000095],[-122.6610408189999,47.33258698100015],[-122.65347245999995,47.34918854400011],[-122.6385798819999,47.36322663000006],[-122.62791907499987,47.379950262000094],[-122.63312740799985,47.404608466000084],[-122.64061438699993,47.38597239800002],[-122.6536352199999,47.37653229400008],[-122.68834387899996,47.364325262000094],[-122.69611568899987,47.35846588700015],[-122.7030330069999,47.351223049000126],[-122.71043860599985,47.34516022300015],[-122.71934973899991,47.34259674700003],[-122.72594153599988,47.33905670800006],[-122.7279353509999,47.33063385600009],[-122.72907467399995,47.32062409100003],[-122.73302161399992,47.31244538000011],[-122.74860592399993,47.29535553600006],[-122.75308183499989,47.28119538000006],[-122.74762936099985,47.26727936400006],[-122.72329667899987,47.23847077000012],[-122.72447669199991,47.232611395],[-122.73086503799992,47.228013414000046],[-122.73672441299988,47.21967194200009],[-122.73692786399992,47.22455475500005],[-122.74144446499987,47.22231679900007],[-122.7470596999999,47.216986395],[-122.75039628799992,47.21283600500006],[-122.74864661399994,47.21067942900007],[-122.7452693349999,47.20498281500009],[-122.7425837879999,47.19790273600002],[-122.74299068899983,47.19171784100014],[-122.77277584499984,47.17308177300008],[-122.79869544199993,47.20498281500009],[-122.81484941299992,47.25088125200006],[-122.81493079299987,47.27431875200013],[-122.79556230399986,47.28066640800007],[-122.78661048099994,47.296087958],[-122.78400631399985,47.315252997000144],[-122.78453528599991,47.342759507],[-122.78604081899996,47.35040924700003],[-122.79137122299993,47.364325262000094],[-122.79808508999987,47.371486721000146],[-122.8066300119999,47.37653229400008],[-122.81110592399995,47.38377513200011],[-122.80565344999991,47.39777252800015],[-122.82013912699996,47.3832868510001],[-122.83657792899986,47.33429596600014],[-122.84601803299991,47.31586334800012],[-122.87002519399992,47.29926178600006],[-122.88565019399992,47.29132721600011],[-122.89753170499989,47.28790924700008],[-122.91340084499988,47.2853050800001],[-122.92048092399993,47.278021552],[-122.94977779899997,47.202297268],[-122.96507727799992,47.1811384140001],[-122.9906306629999,47.16502513200013],[-123.04328365799985,47.15444570500007],[-123.06834876199991,47.14594147300015],[-123.07876542899993,47.13027578300007],[-123.06387285099986,47.137111721000096],[-123.04092363199989,47.14423248900014],[-123.02163652299994,47.14443594],[-123.0179337229999,47.13027578300007],[-123.02940833199993,47.121527411],[-123.04889889199984,47.11823151200015],[-123.06810462099988,47.112494208],[-123.07876542899993,47.09613678600009],[-123.05899003799989,47.10268789300006],[-122.97451738199993,47.14642975500014],[-122.96890214799993,47.14769114800005],[-122.9648331369999,47.15094635600009],[-122.94220943899984,47.17804596600003],[-122.9302465489999,47.17446523600013],[-122.93468176999997,47.15997955900009],[-122.9790746739999,47.10150788000011],[-122.99254309799987,47.09088776200009],[-123.01048743399991,47.082505601000136],[-122.98745683499995,47.08100006700009],[-122.96458899599993,47.0899925800001],[-122.94587154899996,47.10716380400011],[-122.9354141919999,47.13027578300007],[-122.9293106759999,47.12042877800015],[-122.92731686099987,47.10980866100003],[-122.9293106759999,47.099269924000154],[-122.9354141919999,47.089300848000065],[-122.92564856699995,47.07831452],[-122.91820227799987,47.05613841400013],[-122.90807044199991,47.048325914000046],[-122.89329993399986,47.047267971000096],[-122.89297441299992,47.05735911700005],[-122.90021725199996,47.07151927300008],[-122.90807044199991,47.082505601000136],[-122.89582271999987,47.09259674700009],[-122.89647376199991,47.10492584800012],[-122.90119381399991,47.117865302000055],[-122.9012345039999,47.13027578300007],[-122.89240475199995,47.142075914000046],[-122.85285396999991,47.16502513200013],[-122.84740149599986,47.155218817],[-122.84797115799984,47.14606354400003],[-122.85260982999986,47.13776276200003],[-122.85968990799984,47.13027578300007],[-122.8455297519999,47.13174062700013],[-122.8307999339999,47.136786200000145],[-122.82095292899989,47.142075914000046],[-122.82152258999987,47.144598700000145],[-122.82266191299988,47.160101630000085],[-122.81712805899988,47.16571686400006],[-122.79820716099995,47.15761953300013],[-122.79010982999984,47.14911530200011],[-122.7820531889999,47.13776276200003],[-122.77277584499984,47.127752997000144],[-122.74815833199992,47.12002187700013],[-122.73574785099991,47.11147695500004],[-122.72642981699994,47.10040924700009],[-122.72248287699998,47.089300848000065],[-122.68590247299993,47.10439687700007],[-122.65233313699991,47.128078518000095],[-122.5716039699999,47.20929596600008],[-122.55020097599993,47.24233633000013],[-122.5370987619999,47.27855052300005],[-122.53750566299989,47.31586334800012],[-122.52037512899993,47.30548737200003],[-122.48542232999985,47.29022858300006],[-122.44847571499987,47.2684593770001],[-122.43309485599984,47.264878648000106],[-122.4186091789999,47.26947663000006],[-122.40038001199991,47.28107330900017],[-122.41755123599985,47.28925202000009],[-122.42760169199991,47.296535549],[-122.42955481699998,47.30487702000006],[-122.4220271479999,47.31586334800012],[-122.40941321499993,47.325018622000115],[-122.39126542899994,47.333685614],[-122.37214107999986,47.34003327000011],[-122.33946692599991,47.34658437700001],[-122.32848059799994,47.35712311400008],[-122.3235977859999,47.3725446640001],[-122.3252660799999,47.391017971000124],[-122.33364824099996,47.40412018400009],[-122.36095130099994,47.42999909100011],[-122.36681067599987,47.44220612200009],[-122.36668860599991,47.485337632000025],[-122.3702286449999,47.49713776200015],[-122.3814184239999,47.51019928600006],[-122.38841712099989,47.52081940300009],[-122.40754146999987,47.56606679900004],[-122.4090470039999,47.57493724200007],[-122.40371660099993,47.581976630000135],[-122.3904516269999,47.59369538000011],[-122.37791907499992,47.59617747600005],[-122.36660722599991,47.585679429],[-122.35606848899987,47.57127513200011],[-122.34577389199987,47.56232330900009],[-122.34105383999984,47.58295319200003],[-122.3399958979999,47.59894440300012],[-122.34520423099991,47.6119652360001],[-122.35936438699991,47.62372467700008],[-122.40404212099988,47.63739655200011],[-122.41348222599987,47.64166901200004],[-122.42332923099991,47.65106842700005],[-122.42878170499985,47.66038646],[-122.4251602859999,47.664740302],[-122.41368567599993,47.667466539000046],[-122.40929114499994,47.67438385600015],[-122.40680904899992,47.683294989],[-122.40038001199991,47.69196198100009],[-122.38467363199995,47.70897044500005],[-122.38109290299988,47.720160223000065],[-122.38390051999993,47.73672109600012],[-122.38756262899987,47.75234609600001],[-122.39834550699989,47.76292552300008],[-122.40611731699988,47.777899481000084],[-122.4043676419999,47.79759349200005],[-122.39948482999982,47.813950914000046],[-122.39191646999988,47.827582098],[-122.38219153599992,47.839056708000136],[-122.35260982999986,47.856268622000144],[-122.33971106699995,47.87278880400014],[-122.33698482999989,47.89484284100003],[-122.33421790299994,47.91046784100002],[-122.32457434799994,47.92438385600009],[-122.32453365799988,47.934149481000034],[-122.3204239569999,47.942084052],[-122.31265214799994,47.947211005000106],[-122.29271399599992,47.95734284100017],[-122.28571529899995,47.962836005],[-122.27717037699993,47.967433986000124],[-122.24160722599987,47.9728050800001],[-122.23289954299987,47.978420315],[-122.21279863199993,47.98680247600005],[-122.20913652299987,47.99970123900006],[-122.2073461579999,48.014390367000075],[-122.2008357409999,48.018988348],[-122.19627844999985,48.02265045800006],[-122.1917211579999,48.026312567],[-122.1935115229999,48.03095123900011],[-122.20177161399988,48.03367747600011],[-122.20750891799986,48.03754303600003],[-122.2215876939999,48.03815338700015],[-122.23810787699996,48.026312567],[-122.30772864499994,48.06537506700006],[-122.34015865799985,48.09003327000006],[-122.36229407499992,48.12250397300015],[-122.36774654899996,48.159613348000065],[-122.36571204299993,48.190578518],[-122.37559973899994,48.21320221600014],[-122.41685950399989,48.225531317],[-122.42186438699984,48.22797272300012],[-122.42837480399994,48.23212311400009],[-122.43594316299989,48.23460521000002],[-122.44420325399997,48.23236725500011],[-122.44896399599986,48.22284577000012],[-122.44611568899984,48.202215887000094],[-122.46662350199989,48.19204336100015],[-122.46947180899991,48.17706940300003],[-122.46572831899988,48.15908437700007],[-122.45787512899992,48.14362213700014],[-122.44806881399987,48.13418203300013],[-122.43211829299986,48.12246328300016],[-122.41462154899992,48.11249420800006],[-122.39981035099993,48.108221747000144],[-122.38410396999987,48.10146719000004],[-122.36913001199986,48.08567942900008],[-122.34801184799994,48.05426666900005],[-122.36603756399987,48.053900458000115],[-122.37743079299992,48.06024811400006],[-122.39639238199993,48.08152903900013],[-122.4056290359999,48.087795315000086],[-122.48965410099996,48.130438544000114],[-122.51036536399995,48.14744700700008],[-122.52611243399991,48.17096588700004],[-122.53327389199987,48.196112372000115],[-122.53123938699991,48.219875393],[-122.53395031699988,48.249676800000046],[-122.49885006399983,48.25287506700009],[-122.46515865799985,48.25995514500011],[-122.44591223899988,48.26105377800009],[-122.42992102799988,48.25910065300003],[-122.41836503799996,48.251532294000086],[-122.40965735599987,48.241400458000115],[-122.40078691299992,48.235256252000156],[-122.38898678299986,48.239813544000086],[-122.39370683499996,48.24998607000005],[-122.39061438699987,48.26019928600009],[-122.37531490799992,48.28074778900013],[-122.37938391799987,48.28595612200003],[-122.3818253249999,48.29682038000003],[-122.38585364499988,48.303778387000094],[-122.3917537099999,48.309759833000115],[-122.42536373599984,48.33022695500007],[-122.45514889199985,48.34247467700013],[-122.47862708199992,48.35980866100011],[-122.49136308499995,48.36505768400012],[-122.50621497299991,48.36798737200003],[-122.52269446499992,48.36896393400012],[-122.53376217399995,48.3746605490001],[-122.55353756399987,48.40131256700012],[-122.56704667899993,48.40989817900014],[-122.56704667899993,48.417385158000016],[-122.5520727199999,48.427883205000064],[-122.55894934799993,48.43402741100006],[-122.5742081369999,48.43707916900014],[-122.58446204299992,48.437811591000084],[-122.59170488199995,48.43406810100005],[-122.60777747299991,48.41600169500013],[-122.61554928299984,48.40989817900014],[-122.63036048099988,48.405340887000094],[-122.64659583199992,48.403753973000065],[-122.66177324099992,48.40623607],[-122.6735733709999,48.41364166900017],[-122.68346106699991,48.43016185100005],[-122.67857825399993,48.43886953300013],[-122.66877193899991,48.44525788000006],[-122.66331946499986,48.454901434000035],[-122.66934160099989,48.47280508000007],[-122.68293209499984,48.479193427],[-122.69701087099986,48.48135000200001],[-122.70490475199993,48.48627350500005],[-122.70238196499993,48.49799225500006],[-122.68907630099991,48.499823309000035],[-122.67247473899995,48.49896881700012],[-122.65990149599986,48.502997137000094],[-122.63304602799988,48.51626211100002],[-122.61327063699984,48.50031159100002],[-122.59703528599991,48.474554755000085],[-122.58071855399987,48.45831940300003],[-122.58088131399985,48.48452383000007],[-122.56834876199984,48.489488023000106],[-122.55101477799985,48.48151276200014],[-122.52721106699995,48.46035390800016],[-122.51427161399995,48.45319245000003],[-122.50059973899994,48.45042552300005],[-122.48888098899992,48.454901434000035],[-122.4808243479999,48.464097397999986],[-122.48013261599995,48.47028229400014],[-122.48281816299992,48.47650788000011],[-122.48517818899988,48.48627350500005],[-122.48839270699995,48.51292552299999],[-122.49425208199989,48.52936432500009],[-122.50352942599996,48.543646552],[-122.51585852799991,48.55760325700005],[-122.55601966099991,48.57660553600006],[-122.56700598899997,48.58535390800013],[-122.54662024599988,48.588690497000144],[-122.52513587099995,48.583197333000115],[-122.48534094999985,48.55980052300005],[-122.46808834499986,48.55451080900015],[-122.44762122299989,48.562160549],[-122.44029700399989,48.58071523600002],[-122.44432532499985,48.603257554],[-122.45787512899992,48.62343984600003],[-122.4664607409999,48.62872955900009],[-122.4753311839999,48.63125234600001],[-122.48412024599992,48.6347516950001],[-122.49258378799989,48.64325592700014],[-122.49714107999984,48.65355052300005],[-122.50304114499995,48.67963288000011],[-122.50255286399987,48.68488190300009],[-122.52513587099995,48.6922875020001],[-122.52110755099989,48.70905182500012],[-122.49885006399983,48.73948802300008],[-122.50861568899987,48.75568268400012],[-122.52993730399992,48.76862213700012],[-122.5546768869999,48.777329820000105],[-122.57453365799991,48.780462958000086],[-122.59361731699988,48.774115302000055],[-122.60977128799995,48.75861237200002],[-122.63971920499984,48.7223981790001],[-122.65038001199987,48.7181664080001],[-122.6601456369999,48.72256094000009],[-122.66734778599994,48.73187897300012],[-122.6701554029999,48.74290599199999],[-122.66690019399992,48.748114325000145],[-122.65290279899996,48.75828685100011],[-122.64964758999992,48.76365794500008],[-122.65819251199987,48.777329820000105],[-122.6769913399999,48.79344310099999],[-122.69595292899992,48.800767319999984],[-122.70490475199993,48.787909247000144],[-122.70059160099994,48.812160549000126],[-122.7038468089999,48.827378648000106],[-122.7142227859999,48.83820221600002],[-122.75755774599986,48.86424388199999],[-122.7682185539999,48.87400950700014],[-122.77253170499989,48.88654205900003],[-122.76838131399985,48.89740631700012],[-122.7591446609999,48.90595123900014],[-122.74990800699993,48.912543036000116],[-122.74583899599989,48.91766998900012],[-122.75885982999985,48.93593984600001],[-122.80809485599987,48.93451569200011],[-122.81354732999989,48.951808986000046],[-122.80101477799991,48.9623070330001],[-122.77749589799993,48.96478913000011],[-122.73155676999988,48.959214585000105],[-122.74111894399996,48.97679271000005],[-122.75300045499992,48.99249909100011],[-122.75301232501457,48.992514892989064],[-122.65325801699997,48.992514547000056],[-122.43337479699993,48.992514547000056],[-122.21351741599997,48.992514547000056],[-121.99376338799998,48.992514547000056],[-121.77395768299995,48.992514547000056],[-121.55415197799992,48.992514547000056],[-121.3343204349999,48.992514547000056],[-121.11451472999997,48.992514547000056],[-120.89470902599994,48.992514547000056],[-120.67495499799993,48.992514547000056],[-120.45514929299993,48.992514547000056],[-120.23531774999991,48.992514547000056],[-120.01551204499997,48.992514547000056],[-119.79570633999994,48.992514547000056],[-119.57587479699991,48.992514547000056],[-119.35604325399989,48.992514547000056],[-119.13621171099997,48.992514547000056],[-118.91648352099996,48.992514547000056],[-118.69667781599993,48.992514547000056],[-118.47687211199992,48.992514547000056],[-118.2570664069999,48.992514547000056],[-118.03723486399996,48.992514547000056],[-117.81742915899993,48.992514547000056],[-117.59767513099993,48.992514547000056],[-117.37786942599993,48.992514547000056],[-117.15801204499988,48.992514547000056],[-117.03815110299993,48.992514547000056],[-116.93818050199992,48.992514547000056],[-116.71837479699992,48.992514547000056],[-116.4985690919999,48.992514547000056],[-116.2787633879999,48.992514547000056],[-116.05895768299995,48.992514547000056],[-116.04816312499996,48.992514547000056],[-115.83912613999992,48.992514547000056],[-115.61937211199992,48.992514547000056],[-115.3995147309999,48.992514547000056],[-115.17965734999994,48.992514547000056],[-114.95992915899994,48.992514547000056],[-114.74009761599991,48.992514547000056],[-114.52026607299989,48.992514547000056],[-114.30048620699988,48.992514547000056],[-114.08068050199992,48.992514547000056],[-114.06384012799992,48.992514547000056],[-113.86087479699991,48.992514547000056],[-113.64104325499999,48.992514547000056],[-113.42118587299996,48.992514547000056],[-113.20138016799993,48.992514547000056],[-112.9816261399999,48.992514547000056],[-112.76182043499999,48.99256622300005],[-112.54198889199988,48.99261790000015],[-112.32218318799994,48.99261790000015],[-112.10237748299991,48.99261790000015],[-111.882571778,48.99261790000015],[-111.66271439599987,48.99261790000015],[-111.44288285399993,48.99261790000015],[-111.22307714899992,48.99261790000015],[-111.0033231209999,48.99261790000015],[-110.78351741599998,48.99261790000015],[-110.56371171199996,48.99261790000015],[-110.34388016799993,48.99261790000015],[-110.1241003009999,48.99261790000015],[-109.9993210879999,48.99261790000015],[-109.90426875899998,48.99261790000015],[-109.68454056899988,48.99261790000015],[-109.46470902599994,48.99261790000015],[-109.24485164499991,48.99261790000015],[-109.0250459399999,48.99261790000015],[-108.80524023499996,48.99261790000015],[-108.58543452999994,48.99261790000015],[-108.3656288249999,48.99261790000015],[-108.14579728199989,48.99261790000015],[-107.9260432539999,48.99261790000015],[-107.7062375499999,48.99261790000015],[-107.48643184499994,48.99261790000015],[-107.26662613899991,48.99261790000015],[-107.04679459699989,48.99261790000015],[-106.82698889299986,48.99261790000015],[-106.60718318699993,48.99261790000015],[-106.38732580599991,48.99261790000015],[-106.16752010099988,48.99261790000015],[-105.94774023499994,48.99261790000015],[-105.72793452999993,48.99261790000015],[-105.50815466299993,48.99261790000015],[-105.2883231209999,48.99261790000015],[-105.06854325399989,48.99261790000015],[-104.84871171099994,48.99261790000015],[-104.62885432999991,48.99261790000015],[-104.4090486249999,48.99261790000015],[-104.18924292099987,48.99261790000015],[-104.0475744469999,48.99261790000015],[-103.96948889199987,48.99261790000015],[-103.74968318699993,48.99261790000015],[-103.5298516439999,48.99261790000015],[-103.31004593899989,48.99261790000015],[-103.09024023499987,48.99261790000015],[-102.87038285399991,48.99261790000015],[-102.6505771489999,48.99261790000015],[-102.43074560599987,48.99261790000015],[-102.21093990099995,48.992669577000086],[-101.99118587299994,48.992669577000086],[-101.77138016799992,48.992669577000086],[-101.5515744629999,48.992669577000086],[-101.3643396469999,48.992669577000086],[-101.33169124399986,48.992669577000086],[-101.11188553899991,48.992669577000086],[-100.89210567299992,48.992669577000086],[-100.67227412999998,48.992669577000086],[-100.45249426299996,48.992669577000086],[-100.23266271999992,48.992669577000086],[-100.01288285399993,48.992669577000086],[-99.79310298699991,48.992669577000086],[-99.57329728299996,48.992669577000086],[-99.35349157699994,48.992669577000086],[-99.13366003499993,48.992669577000086],[-98.91385432999991,48.992669577000086],[-98.694048625,48.992669577000086],[-98.47419124399993,48.992669577000086],[-98.25443721599993,48.992669577000086],[-98.03460567199981,48.992669577000086],[-97.8147999679999,48.992669577000086],[-97.59499426299988,48.992669577000086],[-97.37518855899995,48.992669577000086],[-97.22608856599999,48.992669577000086],[-97.15538285299994,48.992669577000086],[-96.93560298799991,48.992669577000086],[-96.7157972819999,48.992669577000086],[-96.49599157699986,48.992669577000086],[-96.27621171099995,48.992669577000086],[-96.05632849199989,48.992669577000086],[-95.83649694899998,48.992669577000086],[-95.61671708199995,48.992669577000086],[-95.39693721599994,48.992669577000086],[-95.17710567299991,48.992669577000086],[-95.16852738499998,48.995046693000134],[-95.16188696299989,49.001144512],[-95.15932898,49.01178985600008],[-95.15966487699987,49.10950999000012],[-95.16002661199988,49.22335317000006],[-95.16033666999996,49.313011780000025],[-95.1605692139999,49.36949412100007]]],[[[-179.08149166599995,51.28644440300003],[-179.06944739499994,51.262844143],[-179.06159420499986,51.25454336100002],[-179.06159420499986,51.24770742400001],[-179.08515377499992,51.2429059920001],[-179.10309811099995,51.22646719000012],[-179.11900794199988,51.215399481000176],[-179.1366674469999,51.22724030200014],[-179.12970943899987,51.24359772300014],[-179.1344701809999,51.25576406500012],[-179.14203854099995,51.265570380000085],[-179.1434626939999,51.27505117400007],[-179.14350338399987,51.27505117400007],[-179.13414466099988,51.28375885600015],[-179.11860104099986,51.290187893000066],[-179.08824622299989,51.29608795800003],[-179.08149166599995,51.28644440300003]]],[[[-178.9736221999999,51.31244538000011],[-178.98688717399995,51.30752187700015],[-178.99266516799992,51.32623932500003],[-178.9904679029999,51.334173895],[-178.9783829419999,51.353827216000134],[-178.9802953769999,51.362860419000135],[-178.98688717399995,51.377020575000174],[-178.9858292309999,51.384222723],[-178.97223873599992,51.396551825000145],[-178.95441646999984,51.395209052000084],[-178.9175512359999,51.37742747599999],[-178.90424557199984,51.353827216000134],[-178.91388912699995,51.34577057500011],[-178.9330541659999,51.34418366100009],[-178.94831295499986,51.33982982],[-178.9736221999999,51.31244538000011]]],[[[178.76921634200025,51.63971588700017],[178.78711998800026,51.623846747000144],[178.80030358200023,51.63544342700008],[178.8147892590002,51.63593170800006],[178.82927493600013,51.62860748900006],[178.8418074880002,51.617010809000035],[178.85377037900017,51.620672919000086],[178.86988366000014,51.62181224200013],[178.8873804050002,51.62055084800012],[178.92017662900022,51.61180247600005],[178.92790774800014,51.60716380400011],[178.93116295700028,51.60028717700011],[178.93433678499994,51.5886091170001],[178.94190514400026,51.58494700700005],[178.9518335300002,51.58380768400012],[178.96168053500023,51.57977936400006],[178.96664472700004,51.578924872000144],[178.986338738,51.577826239],[178.99268639400012,51.57664622599999],[178.99683678500006,51.57233307500017],[179.0061141290001,51.558539130000085],[179.00928795700017,51.55556875200015],[179.0207625660002,51.54995351800015],[179.06031334700018,51.51459381700015],[179.1228947270001,51.48041413000006],[179.13998457100016,51.47679271],[179.18344160200016,51.47321198100012],[179.19532311300011,51.470526434000035],[179.20427493599996,51.463080145000056],[179.22803795700014,51.439195054],[179.24008222700016,51.416693427],[179.25757897200023,51.413641669000114],[179.29428144600016,51.41901276200015],[179.29102623800028,51.414984442],[179.2887475920002,51.41132233300014],[179.28565514400012,51.40802643400009],[179.28003991000023,51.40473053600005],[179.28003991000023,51.39850495000012],[179.3792423840001,51.401922919000114],[179.40007571700014,51.40843333500011],[179.45850670700023,51.381293036],[179.47234134200014,51.370550848000065],[179.45427493600013,51.370347398000106],[179.42115319100006,51.364162502000156],[179.40357506600023,51.364406643],[179.4057723320001,51.36839427300008],[179.4069116550002,51.3686384140001],[179.41041100400005,51.370550848000065],[179.39665774800022,51.37689850500003],[179.38282311300017,51.37734609600001],[179.35515384200025,51.370550848000065],[179.3486434250002,51.36741771],[179.3406681650001,51.359279690000086],[179.33521569100017,51.357570705000064],[179.32699629000015,51.35858795800014],[179.31072024800014,51.36326732000008],[179.30111738400012,51.364406643],[179.28785241000023,51.36102936400008],[179.27116946700016,51.35455963700018],[179.25489342500018,51.35028717700005],[179.2430119150001,51.353827216000134],[179.23585045700017,51.363470770000035],[179.2342228520002,51.37201569200011],[179.237803582,51.380764065],[179.24642988400018,51.391058661000116],[179.07691491000023,51.45355866100006],[179.0584416020001,51.467596747000115],[179.04102623800017,51.477036851000136],[179.03907311300028,51.48289622600008],[179.03451582100016,51.490627346000096],[179.0268660820002,51.500921942],[179.01417076900023,51.509019273000135],[178.98812910200016,51.522162177],[178.96013431099993,51.54214101800006],[178.94141686300028,51.55036041900014],[178.87232506600014,51.571356512000094],[178.83838951900012,51.57664622599999],[178.79997806100025,51.571112372000144],[178.78296959700018,51.57217031500004],[178.77963300900012,51.582831122000144],[178.75359134200025,51.582831122000144],[178.73511803500023,51.58490631700006],[178.71941165500024,51.59210846600011],[178.70191491000023,51.607367255000085],[178.68946373800028,51.615383205000015],[178.6364038420002,51.637437242000104],[178.6666772800002,51.65501536700005],[178.6826278000003,51.65900299700003],[178.72120201900023,51.642808335000076],[178.76921634200025,51.63971588700017]]],[[[178.23129316500018,51.83177317900014],[178.23715254000015,51.830511786000116],[178.24382571700014,51.830715236000074],[178.25220787900017,51.82990143400015],[178.27182050900007,51.82501862200009],[178.31364993600022,51.82192617400001],[178.33399498800017,51.81622955900003],[178.35035241000017,51.80695221600008],[178.39616946700025,51.76850006700009],[178.38111412900014,51.7723656270001],[178.3564559250002,51.767401434000035],[178.34148196700014,51.76850006700009],[178.3312280610001,51.77423737200014],[178.31169681100025,51.79205963700004],[178.30372155000018,51.79572174700017],[178.28598066500012,51.79975006700015],[178.2602645190001,51.80963776200015],[178.23658287900022,51.82294342700008],[178.2248641290001,51.83673737200009],[178.23129316500018,51.83177317900014]]],[[[-178.76048743399994,51.752264716000056],[-178.80829830599987,51.74730052299999],[-178.82270260299993,51.75617096600003],[-178.84272213399993,51.772650458000115],[-178.8581436839999,51.78864166900003],[-178.85887610599988,51.79572174700017],[-178.84605872299994,51.805894273000135],[-178.83222408799995,51.82575104400003],[-178.81358801999986,51.83917877800003],[-178.78652910099993,51.82990143400015],[-178.74848385299993,51.817572333000115],[-178.74018307199995,51.78363678600009],[-178.76048743399994,51.752264716000056]]],[[[-176.3541153639999,51.83673737200009],[-176.3541153639999,51.82990143400015],[-176.34569251199989,51.830471096000124],[-176.3283585279999,51.82916901200003],[-176.31993567599994,51.82990143400015],[-176.3253067699999,51.81439850500006],[-176.32738196499992,51.81000397300006],[-176.29828854099995,51.821478583000115],[-176.2830297519999,51.82257721600017],[-176.26471920499992,51.81622955900003],[-176.26471920499992,51.81000397300006],[-176.27037512899992,51.80646393400009],[-176.27391516799992,51.8021507830001],[-176.2764786449999,51.79633209800012],[-176.27900143099993,51.78827545799999],[-176.2639054029999,51.78314850499999],[-176.25853430899986,51.78213125200013],[-176.25853430899986,51.775295315],[-176.27440344999988,51.77513255400005],[-176.28608150899987,51.76850006700009],[-176.2925512359999,51.75674062700001],[-176.29267330599993,51.741156317],[-176.30011959499993,51.741156317],[-176.3079320949999,51.75238678600003],[-176.31586666599986,51.74957916900014],[-176.3305151029999,51.73029205900012],[-176.34068762899992,51.72581614800005],[-176.3517553379999,51.740871486000074],[-176.36095130099986,51.73371002800003],[-176.37205969999988,51.736721096000124],[-176.38560950399994,51.73712799700006],[-176.3970434239999,51.74188873900014],[-176.4019262359999,51.75820547100007],[-176.40937252499995,51.823675848],[-176.40387936099992,51.82099030200014],[-176.3939102859999,51.818264065000065],[-176.3888647129999,51.81622955900003],[-176.3958227199999,51.8263207050001],[-176.4230443999999,51.851019598000086],[-176.39293372299986,51.86310455900018],[-176.34715735599994,51.869940497000115],[-176.30321204299992,51.868963934000035],[-176.27900143099993,51.857163804000045],[-176.29267330599993,51.84373607000007],[-176.31183834499993,51.839789130000085],[-176.33336341099994,51.83934153900019],[-176.3541153639999,51.83673737200009]]],[[[-176.12079830599993,51.846869208000136],[-176.11192786399988,51.83856842700005],[-176.10773678299995,51.84731679900012],[-176.0938614569999,51.858587958000115],[-176.06285559799994,51.85496653900016],[-176.03022213399987,51.8431664080001],[-176.01146399599992,51.82990143400015],[-176.0189102859999,51.823675848],[-175.99937903599994,51.81195709800012],[-175.99095618399988,51.81000397300006],[-175.99848385299993,51.80255768400009],[-176.0262345039999,51.82233307500003],[-176.03197180899988,51.82990143400015],[-176.0496313139999,51.82485586100013],[-176.06590735599994,51.825384833000115],[-176.0974828769999,51.82990143400015],[-176.10639400899987,51.82648346600014],[-176.10492916599992,51.817816473000065],[-176.09406490799992,51.79572174700017],[-176.10920162699992,51.79897695500013],[-176.12177486899992,51.805650132],[-176.13084876199989,51.8159040390001],[-176.13560950399992,51.82990143400015],[-176.14838619699995,51.81793854400005],[-176.15241451699993,51.804510809000064],[-176.14964758999986,51.79022858300006],[-176.14183508999986,51.775295315],[-176.14867102799988,51.775295315],[-176.15172278599988,51.778998114000146],[-176.1590063139999,51.79144928600006],[-176.16234290299988,51.79572174700017],[-176.1629532539999,51.79852936400012],[-176.16169186099984,51.807318427],[-176.16234290299988,51.81000397300006],[-176.16645260299987,51.81126536699999],[-176.1752823559999,51.810777085],[-176.19416256399995,51.81997304900007],[-176.2083227199999,51.82001373900005],[-176.2190649079999,51.82436758000016],[-176.2237442699999,51.84357330900009],[-176.20124264199993,51.84088776200004],[-176.1990453769999,51.84886302299999],[-176.2106827459999,51.86713288000006],[-176.20453854099995,51.88100820500013],[-176.19013424399986,51.88670482000013],[-176.17389889199995,51.885321356000055],[-176.16234290299988,51.877671617000104],[-176.13707434799989,51.868597723000036],[-176.12816321499992,51.86399974199999],[-176.12816321499992,51.859523830000015],[-176.12079830599993,51.846869208000136]]],[[[-176.0189102859999,51.8919945330001],[-175.99095618399988,51.88450755400014],[-175.98688717399992,51.8868675800001],[-175.97496497299989,51.897040106000034],[-175.97052975199992,51.89813873900009],[-175.96259518099993,51.88861725500008],[-175.95832271999993,51.874741929],[-175.95677649599986,51.8608259140001],[-175.9568578769999,51.851019598000086],[-175.9769994779999,51.85236237200017],[-176.10773678299995,51.88450755400014],[-176.09235592399992,51.89447663000011],[-176.07331295499992,51.90379466400016],[-176.0525610019999,51.91034577000014],[-176.02094479099995,51.912787177],[-176.0103246739999,51.91242096600017],[-176.00023352799994,51.91010163000011],[-175.99095618399988,51.90558502800015],[-175.9990942049999,51.904486395],[-176.0189102859999,51.89813873900009],[-176.0189102859999,51.8919945330001]]],[[[-177.8454483709999,51.851874091000084],[-177.84064693899992,51.83673737200009],[-177.70897376199989,51.83730703300016],[-177.64818274599986,51.847601630000085],[-177.62218176999988,51.857163804000045],[-177.62669837099992,51.83258698100014],[-177.64740963399984,51.82050202000014],[-177.6751602859999,51.81655508000016],[-177.70099850199995,51.81622955900003],[-177.72679602799988,51.81220123900006],[-177.77521725199986,51.7965355490001],[-177.80028235599985,51.79572174700017],[-177.7971899079999,51.78632233300006],[-177.7914526029999,51.779689846000096],[-177.7832738919999,51.77594635600015],[-177.77301998599987,51.775295315],[-177.79662024599992,51.759222723000114],[-177.80610104099992,51.74559153900016],[-177.8074438139999,51.728908596000124],[-177.8065079419999,51.70331452000006],[-177.81037350199992,51.69537995000009],[-177.83751380099994,51.67536041900003],[-177.84784908799995,51.67186107000005],[-177.8606664699999,51.675034898000106],[-177.88288326699995,51.68585846600011],[-177.88520260299993,51.67450592700014],[-177.89252682199992,51.66791413000005],[-177.90355383999986,51.665106512000094],[-177.91698157499985,51.66543203300013],[-177.90953528599988,51.65924713700014],[-177.91612708199992,51.64533112200009],[-177.91303463399987,51.63092682500012],[-177.89586341099994,51.60394928600006],[-177.90672766799992,51.598089911000116],[-177.92011471299992,51.59650299700009],[-177.93346106699994,51.59870026200018],[-177.9443253249999,51.60394928600006],[-177.9488419259999,51.61078522300009],[-177.95380611899992,51.630113023000106],[-177.95799719999985,51.637437242000104],[-177.9736221999999,51.64516836100001],[-178.01117916599995,51.64813873900012],[-178.03246008999992,51.65924713700014],[-178.04462643099993,51.665594794000086],[-178.08250891799992,51.662502346],[-178.1013891269999,51.66543203300013],[-178.0919083319999,51.690578518],[-178.07994544199994,51.70034414300015],[-178.02936764199995,51.700140692],[-178.01903235599994,51.702337958],[-178.00214596299995,51.711737372000115],[-177.97455807199992,51.71548086100013],[-177.9630834629999,51.72052643400017],[-177.9548233709999,51.72907135600009],[-177.9505102199999,51.741156317],[-177.95539303299986,51.763739325000174],[-177.97398841099988,51.77826569200011],[-177.9988907539999,51.786037502000035],[-178.04625403599994,51.79144928600006],[-178.0620824859999,51.79962799700017],[-178.09516354099992,51.823675848],[-178.1895645819999,51.85496653900016],[-178.21381588399987,51.876044012000094],[-178.17707271999987,51.90558502800015],[-178.14781653599994,51.91469961100013],[-177.95225989499988,51.92475006700012],[-177.93126380099994,51.91864655200014],[-177.93126380099994,51.91181061400012],[-177.8954971999999,51.889227606000034],[-177.88288326699995,51.88450755400014],[-177.88288326699995,51.877671617000104],[-177.8926895819999,51.86701080900018],[-177.8454483709999,51.851874091000084]]],[[[-177.13231360599994,51.73065827000012],[-177.1566869779999,51.700140692],[-177.1926163399999,51.709173895],[-177.20384680899988,51.71381256700012],[-177.2020971339999,51.70709870000009],[-177.2024633449999,51.702053127000156],[-177.20356197799995,51.697577216000084],[-177.20384680899988,51.69269440300003],[-177.22382564999987,51.69708893400009],[-177.2492162749999,51.687201239],[-177.2776586579999,51.680121161000116],[-177.3068741529999,51.69269440300003],[-177.31505286399985,51.68732330900015],[-177.31956946499992,51.68695709800015],[-177.3273412749999,51.69269440300003],[-177.3283178379999,51.69424062700006],[-177.34101314999995,51.70636627800015],[-177.3567602199999,51.71775950700011],[-177.37079830599995,51.723863023000106],[-177.38544674399986,51.72638580900003],[-177.43614661399994,51.72589752800003],[-177.45433508999992,51.72296784100003],[-177.46764075399994,51.716945705000015],[-177.48481197799984,51.70587799700017],[-177.49885006399992,51.70331452000006],[-177.53278561099987,51.70636627800015],[-177.59858150899984,51.70270416900011],[-177.62958736899986,51.69163646000008],[-177.64264889199995,51.66885000200012],[-177.6480606759999,51.654730536000024],[-177.6600235669999,51.65298086100002],[-177.67198645699995,51.659125067],[-177.6774389309999,51.66885000200012],[-177.6787817049999,51.67853424700009],[-177.6833389959999,51.686265367000104],[-177.69176184799989,51.693304755000085],[-177.7047013009999,51.700140692],[-177.7047013009999,51.70636627800015],[-177.68818111899992,51.71210358300011],[-177.65904700399994,51.729925848],[-177.64635169199988,51.73371002800003],[-177.6263321609999,51.73159414300012],[-177.58881588399987,51.7221540390001],[-177.57066809799989,51.72003815300008],[-177.52289791599995,51.72003815300008],[-177.51899166599995,51.72333405200014],[-177.5191137359999,51.73061758000013],[-177.51756751199986,51.73786041900017],[-177.50890051999988,51.741156317],[-177.47472083199986,51.741156317],[-177.47199459499993,51.743312893],[-177.46906490799992,51.74795156500012],[-177.4638565749999,51.75263092700005],[-177.4542943999999,51.754787502000156],[-177.38776607999992,51.76166413000005],[-177.29246985599988,51.78278229400017],[-177.2155248689999,51.818793036000145],[-177.20384680899988,51.87018463700006],[-177.19928951699995,51.878607489],[-177.1955053379999,51.90094635600003],[-177.19017493399986,51.91181061400012],[-177.1944067049999,51.92999909100011],[-177.17345130099991,51.93561432500011],[-177.12218176999988,51.93292877800003],[-177.09980221299986,51.93036530200011],[-177.07481848899985,51.9225934920001],[-177.0546768869999,51.90981679900007],[-177.04682369699992,51.8919945330001],[-177.0611466139999,51.887844143000066],[-177.0669652989999,51.881577867000104],[-177.06773841099988,51.874253648000106],[-177.0672501289999,51.86713288000006],[-177.07433020699983,51.858832098000065],[-177.12189693899995,51.84357330900009],[-177.13695227799988,51.82282135600012],[-177.12897701699993,51.783596096000096],[-177.14240475199992,51.761623440000065],[-177.1277563139999,51.74746328300012],[-177.13231360599994,51.73065827000012]]],[[[-175.70763098899985,51.97386302300005],[-175.6784561839999,51.96698639500015],[-175.6620580719999,51.96702708500014],[-175.6620580719999,51.95962148600013],[-175.7039281889999,51.95237864800013],[-175.7104386059999,51.95001862200017],[-175.71495520699995,51.93732330900012],[-175.72606360599988,51.933050848],[-175.73969479099992,51.93455638200005],[-175.7520238919999,51.93915436400009],[-175.7459203769999,51.94843170800014],[-175.7241104809999,51.97386302300005],[-175.70763098899985,51.97386302300005]]],[[[-176.55988521999993,51.960435289000074],[-176.5602921209999,51.947414455000064],[-176.55378170499992,51.93732330900012],[-176.5396622389999,51.93292877800003],[-176.54942786399994,51.91412995000017],[-176.56391354099986,51.90912506700012],[-176.58149166599992,51.90916575700011],[-176.60053463399993,51.90558502800015],[-176.6113988919999,51.895453192],[-176.61851966099985,51.88141510600015],[-176.62694251199989,51.86908600499999],[-176.64146887899994,51.86399974199999],[-176.64146887899994,51.857163804000045],[-176.58812415299988,51.857163804000045],[-176.5956925119999,51.84935130400008],[-176.59801184799989,51.84393952000011],[-176.59691321499994,51.838324286000116],[-176.59430904899995,51.82990143400015],[-176.56908118399986,51.83905670800006],[-176.54938717399995,51.835516669000164],[-176.5298559239999,51.82770416900017],[-176.50495357999992,51.823675848],[-176.50495357999992,51.82990143400015],[-176.51178951699995,51.82990143400015],[-176.50401770699992,51.83893463700018],[-176.4916886059999,51.84373607000007],[-176.4639786449999,51.851019598000086],[-176.44078528599988,51.84186432500009],[-176.42768307199992,51.83429596600014],[-176.4263809889999,51.826808986000074],[-176.4315079419999,51.81500885600012],[-176.42792721299995,51.803900458],[-176.42625891799995,51.79466380400011],[-176.43724524599992,51.78827545799999],[-176.43394934799989,51.778062242000075],[-176.42979895699992,51.76886627800009],[-176.4239395819999,51.760972398000106],[-176.4155981109999,51.754787502000156],[-176.4272354809999,51.74144114800005],[-176.4547826809999,51.730454819999984],[-176.47081458199995,51.72003815300008],[-176.49079342399992,51.754217841000084],[-176.52293860599988,51.741522528000026],[-176.58812415299988,51.68585846600011],[-176.5936173169999,51.69611237200003],[-176.6012670559999,51.70258209800012],[-176.61070716099988,51.70429108300014],[-176.62165279899992,51.700140692],[-176.6148168609999,51.69269440300003],[-176.62962805899986,51.69196198100009],[-176.64203854099992,51.686835028000175],[-176.65196692599991,51.681097723],[-176.65949459499996,51.67841217700011],[-176.67125403599994,51.68085358300006],[-176.6838272779999,51.685492255],[-176.69688880099991,51.688462632000025],[-176.71039791599986,51.68585846600011],[-176.71979732999992,51.669012762000094],[-176.72431393099995,51.65717194200014],[-176.7212621739999,51.6517601580001],[-176.7111710279999,51.64777252800012],[-176.70689856699988,51.63833242400001],[-176.70710201699993,51.62685781500006],[-176.71039791599986,51.617010809000035],[-176.7513321609999,51.637437242000104],[-176.77135169199988,51.61961497600013],[-176.7844945949999,51.612860419000086],[-176.79975338399987,51.61078522300009],[-176.81444251199989,51.61554596600017],[-176.82477779899992,51.624823309000035],[-176.82420813699994,51.63373444200006],[-176.80658932199992,51.637437242000104],[-176.80658932199992,51.64496491100006],[-176.81940670499995,51.65989817900011],[-176.8283178379999,51.67381419499999],[-176.82970130099986,51.690578518],[-176.82026119699992,51.71381256700012],[-176.82709713399987,51.72003815300008],[-176.89598548099994,51.637437242000104],[-176.90278072799995,51.62693919500005],[-176.9094945949999,51.61334870000009],[-176.91706295499995,51.601548570000105],[-176.9263809889999,51.59650299700009],[-176.95213782499994,51.59218984600009],[-176.9698380199999,51.59267812700007],[-176.97789466099988,51.60028717700011],[-176.97557532499988,51.647121486000074],[-176.9666235019999,51.669134833000086],[-176.90217037699986,51.700140692],[-176.88996334499993,51.710150458000086],[-176.88215084499984,51.72036367400004],[-176.8793432279999,51.73236725500014],[-176.88231360599988,51.74730052299999],[-176.86168372299989,51.74795156500012],[-176.8549698559999,51.74730052299999],[-176.85789954299992,51.75177643400015],[-176.86119544199985,51.754787502000156],[-176.82026119699992,51.76850006700009],[-176.82026119699992,51.775295315],[-176.84227454299986,51.77383047100015],[-176.86656653599994,51.76886627800009],[-176.88988196499994,51.767157294000086],[-176.90900631399992,51.775295315],[-176.91510982999992,51.79193756700006],[-176.90477454299992,51.80756256700015],[-176.88556881399995,51.819159247000144],[-176.86493893099993,51.823675848],[-176.8549698559999,51.81818268400018],[-176.8465470039999,51.80597565300012],[-176.83368893099995,51.79385000200001],[-176.81029212099986,51.78827545799999],[-176.72655188699994,51.781968492000075],[-176.70417232999992,51.78827545799999],[-176.72166907499988,51.79555898600002],[-176.75597083199995,51.80548737200003],[-176.7690323559999,51.81317780200014],[-176.7798559239999,51.82904694200006],[-176.77851314999992,51.8431664080001],[-176.76720130099994,51.853338934000064],[-176.74823971299992,51.857163804000045],[-176.7060033839999,51.85968659100017],[-176.75873775899987,51.88397858300006],[-176.7792862619999,51.908677476000136],[-176.78180904899986,51.936468817],[-176.77631588399993,51.94448476800015],[-176.7587784499999,51.953436591000084],[-176.74164791599992,51.95831940300015],[-176.7223608059999,51.96051666900014],[-176.68305416599992,51.95962148600013],[-176.66051184799994,51.95319245000003],[-176.64867102799988,51.95180898600015],[-176.63837643099995,51.956488348000065],[-176.62677975199995,51.97516510600015],[-176.62165279899992,51.98012929900001],[-176.60480709499993,51.98676178600006],[-176.58372962099992,51.98969147300009],[-176.56269283799986,51.987860419000114],[-176.54588782499985,51.98012929900001],[-176.55333411399994,51.97386302300005],[-176.55988521999993,51.960435289000074]]],[[[-175.87494869699992,51.99437083500011],[-175.86750240799995,51.987494208],[-175.85094153599985,51.98883698100009],[-175.83470618399994,51.992743231000176],[-175.81956946499994,51.99396393400009],[-175.80601966099988,51.987494208],[-175.8764135409999,51.96893952],[-175.91034908799992,51.967230536],[-175.95002193899995,51.97386302300005],[-175.93915768099987,51.98647695500012],[-175.9195043609999,51.98944733300014],[-175.89789791599992,51.986273505000085],[-175.8811742829999,51.98012929900001],[-175.88044186099995,51.984808661000116],[-175.87877356699994,51.987779039000124],[-175.87682044199988,51.99046458500011],[-175.87494869699992,51.99437083500011]]],[[[178.53785241000017,51.89667389500012],[178.51677493600025,51.89618561400012],[178.50261478000013,51.901922919000114],[178.47136478000016,51.92625560100008],[178.46452884199996,51.93292877800003],[178.45997155,51.94440338700015],[178.46322675900015,51.95205312700001],[178.4690047540001,51.96116771],[178.47193444099995,51.976996161000116],[178.4773055350001,51.98590729400017],[178.49040774799997,51.988674221000124],[178.50611412900022,51.98993561400012],[178.51970462300008,51.99437083500011],[178.52295983200023,51.99054596600008],[178.5261336600001,51.988959052000055],[178.5339461600001,51.987494208],[178.57341556100025,51.97565338700004],[178.59050540500013,51.96824778900004],[178.60230553500017,51.953436591000084],[178.60425866000023,51.93768952000011],[178.59620201900017,51.929144598],[178.58253014400023,51.92234935100008],[178.56804446700014,51.91181061400012],[178.57422936300028,51.90558502800015],[178.5590926440003,51.90070221600008],[178.53785241000017,51.89667389500012]]],[[[179.67139733200023,51.87718333500011],[179.64210045700017,51.87417226800012],[179.5667423840001,51.88523997600008],[179.55779056100025,51.88825104400017],[179.549327019,51.894924221000124],[179.52271569100017,51.90912506700012],[179.49822024800014,51.91640859600015],[179.49732506599995,51.92621491100009],[179.5026147800001,51.93561432500011],[179.50660241000017,51.93915436400009],[179.50367272200006,51.950100002000156],[179.49935957100016,51.958929755000106],[179.4935001960002,51.96653880400005],[179.48609459700023,51.97386302300005],[179.49626712300008,51.97801341400002],[179.51636803500023,51.978216864000146],[179.52711022200023,51.98012929900001],[179.55827884200025,52.001857815000065],[179.57447350400008,52.00438060099999],[179.59791100400005,52.011542059000035],[179.62126712299997,52.022162177000084],[179.63697350400022,52.03534577000012],[179.64340254000015,52.03034088700018],[179.6492619150001,52.029038804],[179.66423587300017,52.02850983300003],[179.67009524799997,52.01984284100011],[179.67652428500017,52.015692450000174],[179.68376712300008,52.012844143000116],[179.69214928500017,52.00804271000014],[179.71892337299997,51.987494208],[179.73454837300014,51.97882721600011],[179.74927819099995,51.97357819200012],[179.78093509200014,51.96702708500014],[179.77507571699996,51.95547109600001],[179.76384524800025,51.946193752000156],[179.75342858200028,51.93964264500006],[179.7498478520001,51.93602122600011],[179.7553817070001,51.92267487200009],[179.74659264400023,51.91347890800013],[179.72266686300028,51.901922919000114],[179.6997176440003,51.88654205900015],[179.67139733200023,51.87718333500011]]],[[[-175.9955948559999,52.032945054],[-175.98554439999992,52.02643463700018],[-175.9636938139999,52.03534577000012],[-175.97508704299995,52.021918036000116],[-176.03026282499988,52.012844143000116],[-176.04625403599988,51.99437083500011],[-176.0288793609999,51.99599844000012],[-176.02131100199995,51.99070872600005],[-176.02183997299994,51.98135000200004],[-176.0288793609999,51.97044505400005],[-176.04303951699993,51.96336497599999],[-176.05772864499994,51.96694570500015],[-176.0803930329999,51.98012929900001],[-176.12287350199995,51.992621161000116],[-176.1387019519999,51.99437083500011],[-176.1387426419999,51.99437083500011],[-176.15546627499992,51.99534739799999],[-176.16486568899992,51.99860260600003],[-176.1706029939999,52.00503164300012],[-176.19001217399992,52.03851959800009],[-176.19452877499987,52.051092841000084],[-176.19334876199994,52.0595563820001],[-176.18720455599995,52.06806061400005],[-176.17552649599986,52.08966705900015],[-176.16913814999992,52.09739817900008],[-176.14325924399992,52.10712311400011],[-176.10541744699987,52.110744533000066],[-176.06871497299986,52.107652085],[-176.04625403599988,52.09739817900008],[-176.00531979099995,52.067816473],[-175.99848385299993,52.0595563820001],[-175.99848385299993,52.046698309000085],[-175.9955948559999,52.032945054]]],[[[177.57699629000015,51.988918361000074],[177.56397545700028,51.97907135600015],[177.55445397200018,51.968451239],[177.57447350399994,51.953436591000084],[177.60914147200012,51.95246002800012],[177.61475670700028,51.95001862200017],[177.61443118600008,51.936916408000016],[177.61207116000023,51.92792389500009],[177.60596764400023,51.92572663],[177.59424889400017,51.93292877800003],[177.58033287900008,51.925116278000026],[177.5730900400001,51.919582424],[177.56763756600012,51.91181061400012],[177.55534915500024,51.920599677000084],[177.5387475920002,51.92829010600009],[177.52125084700018,51.93292877800003],[177.5055444670002,51.93292877800003],[177.49415123800011,51.92568594],[177.48609459700012,51.91596100500005],[177.47779381600012,51.91299062700012],[177.46509850400022,51.92548248900014],[177.4713647800002,51.93915436400009],[177.41358483200017,51.930650132000046],[177.39234459700018,51.92088450700011],[177.36597741000014,51.91209544500005],[177.3542586600001,51.89606354400014],[177.33448326900017,51.839667059000114],[177.3309025400001,51.83380768400014],[177.3235783210001,51.826808986000074],[177.31690514400017,51.82876211100013],[177.30681399800025,51.83698151200004],[177.29737389400023,51.84699127800011],[177.29314212300014,51.854071356000176],[177.2833764980001,51.862494208000115],[177.23780358200023,51.88312409100014],[177.22429446700025,51.8919945330001],[177.29371178500023,51.92218659100011],[177.3167423840002,51.92548248900014],[177.3288680350001,51.92967357],[177.34001712300008,51.939764716000134],[177.35840905000012,51.963324286],[177.37256920700017,51.974676825000145],[177.3880314460001,51.978583075000145],[177.42351321700016,51.98012929900001],[177.44532311300011,51.98651764500012],[177.45427493599996,51.987494208],[177.47787519600007,51.98676178600006],[177.48503665500013,51.987494208],[177.5084741550001,51.99457428600005],[177.51628665500013,52.000962632],[177.5271102220001,52.034816799000154],[177.55600019600018,52.08490631700006],[177.5538843110002,52.10423411699999],[177.59343509200014,52.125067450000145],[177.61540774800025,52.13007233299999],[177.64258873800017,52.124701239000146],[177.67221113399992,52.11269765800004],[177.6837671230001,52.105047919000086],[177.6904403000003,52.08991120000009],[177.6821395190003,52.08283112200003],[177.66391035200022,52.07550690300003],[177.65626061300028,52.06948476800012],[177.65105228000016,52.059637762000094],[177.64844811300026,52.04364655200003],[177.64258873800017,52.03534577000012],[177.62696373800017,52.02521393400015],[177.56763756600012,52.001857815000065],[177.57699629000015,51.988918361000074]]],[[[-173.59203040299985,52.15204498900012],[-173.57526607999992,52.14374420800014],[-173.54808508999992,52.14752838700015],[-173.53119869699992,52.14496491100006],[-173.54487057199987,52.117905992000104],[-173.5312393869999,52.124701239000146],[-173.52086341099994,52.11530182500003],[-173.5080053379999,52.111558335],[-173.4301651679999,52.11220937700013],[-173.4222305979999,52.116766669000086],[-173.41454016799992,52.117905992000104],[-173.40839596299995,52.11579010600012],[-173.4072973299999,52.111070054000024],[-173.4055883449999,52.10639069200009],[-173.39745032499988,52.10423411699999],[-173.3701065749999,52.108587958000086],[-173.3602188789999,52.10516998900006],[-173.35309811099995,52.08991120000009],[-173.33063717399995,52.099758205000015],[-173.30406653599988,52.10773346600017],[-173.27623450399994,52.11225006700011],[-173.2500707669999,52.11172109600015],[-173.24937903599985,52.10960521000013],[-173.24579830599987,52.10480377800015],[-173.2409561839999,52.099798895],[-173.23639889199995,52.09739817900008],[-173.2281388009999,52.09804922100001],[-173.21617591099994,52.10260651200015],[-173.2090551419999,52.10423411699999],[-173.15782630099994,52.10423411699999],[-173.14045162699995,52.109442450000174],[-173.13084876199989,52.11115143400018],[-173.12340247299989,52.10797760600011],[-173.11400305899988,52.101304429000045],[-173.10167395699995,52.09829336100016],[-172.95579993399988,52.08991120000009],[-172.97447669199988,52.08388906500009],[-173.0169571609999,52.08161041900003],[-173.03404700399986,52.073187567000055],[-173.05186926999986,52.06854889500014],[-173.10289466099985,52.0746931010001],[-173.1397598949999,52.05866120000003],[-173.1649063789999,52.05634186400006],[-173.18993079299992,52.05882396],[-173.21393795499995,52.07037995000012],[-173.22675533799986,52.07420482000013],[-173.23859615799995,52.07575104400017],[-173.24384518099993,52.073187567000055],[-173.24762936099992,52.063299872000144],[-173.2564591139999,52.06305573100012],[-173.27391516799986,52.06948476800012],[-173.3071182929999,52.0634626320001],[-173.37653561099992,52.03876373900011],[-173.41454016799992,52.03534577000012],[-173.44969641799986,52.04437897300012],[-173.46296139199993,52.042792059000085],[-173.4725235669999,52.037339585000055],[-173.48424231699985,52.024725653000175],[-173.4902237619999,52.02167389500009],[-173.50055904899992,52.022853908000016],[-173.51573645699992,52.03241608299999],[-173.5237930979999,52.03534577000012],[-173.53803463399987,52.03473541900017],[-173.54991614499988,52.03217194200006],[-173.56090247299986,52.03115469],[-173.57221432199992,52.03534577000012],[-173.55781002499987,52.04462311400008],[-173.57066809799989,52.04852936400009],[-173.68207760299993,52.049017645000056],[-173.6774796209999,52.05585358300008],[-173.67463131399992,52.06268952],[-173.68883216099982,52.06948476800012],[-173.7154027989999,52.05499909100017],[-173.74913489499986,52.04779694200015],[-173.83600826699987,52.04336172100006],[-173.88744055899988,52.056463934000035],[-173.92206783799986,52.059393622000144],[-173.92988033799986,52.066310940000065],[-173.92162024599986,52.08372630400014],[-173.93089758999992,52.08734772300009],[-173.95636959499993,52.08991120000009],[-173.96519934799989,52.09324778900013],[-173.98151607999992,52.101304429000045],[-173.99054928299992,52.10423411699999],[-173.99738521999996,52.10439687700013],[-174.01496334499987,52.102728583000115],[-174.02464758999992,52.10423411699999],[-174.0333145819999,52.108465887000094],[-174.05048580599993,52.120266018000066],[-174.0594376289999,52.124701239000146],[-174.05866451699995,52.12909577000012],[-174.05748450399992,52.13214752800003],[-174.05536861899992,52.13495514500006],[-174.0519506499999,52.13837311400009],[-174.04466712099992,52.13255442900014],[-174.02363033799986,52.12889232],[-174.0109757149999,52.124701239000146],[-173.95885169199988,52.12299225500014],[-173.94208736899992,52.124701239000146],[-173.90221106699988,52.13751862200017],[-173.88744055899988,52.13837311400009],[-173.8926488919999,52.12433502800003],[-173.89582271999996,52.11798737200009],[-173.9011124339999,52.11172109600015],[-173.88581295499984,52.11302317900005],[-173.85737057199995,52.123358466000134],[-173.84650631399995,52.124701239000146],[-173.83881588399984,52.119574286000116],[-173.80553137899994,52.08991120000009],[-173.7902318999999,52.11530182500003],[-173.7652074859999,52.12738678600011],[-173.7336319649999,52.130845445000126],[-173.69880123599995,52.13092682500012],[-173.68537350199995,52.133978583],[-173.66026770699986,52.14801666900014],[-173.64728756399995,52.15204498900012],[-173.63084876199986,52.1512718770001],[-173.61860104099992,52.14789459800009],[-173.60680091099994,52.146673895000056],[-173.59203040299985,52.15204498900012]]],[[[175.96290123800026,52.344061591000084],[175.92888431100022,52.3392601580001],[175.89861087300022,52.348822333000086],[175.88184655000023,52.37799713700004],[175.91586347700007,52.37799713700004],[175.93653405000018,52.371649481000084],[175.9733179050002,52.364650783000016],[175.99097741000017,52.35809967700013],[175.96290123800026,52.344061591000084]]],[[[-172.38727779899986,52.296047268000095],[-172.41279049399995,52.27855052300004],[-172.4257706369999,52.276678778000175],[-172.44127356699985,52.289211330000064],[-172.47944088399993,52.264797268000116],[-172.52940833199986,52.25023021],[-172.5832413399999,52.24823639500006],[-172.63304602799985,52.26129791900003],[-172.59882564999987,52.31342194200006],[-172.57905025899987,52.33584219000009],[-172.55797278599988,52.35065338700015],[-172.49653072799987,52.37116120000012],[-172.44127356699985,52.39907461100013],[-172.43553626199989,52.39378489800008],[-172.4273575509999,52.39057038000011],[-172.40717525899987,52.38544342700003],[-172.38353430899988,52.368801174000154],[-172.33710689999987,52.35838450700008],[-172.3015844389999,52.344305731000034],[-172.31090247299994,52.316473700000145],[-172.32599850199995,52.3094750020001],[-172.38727779899986,52.296047268000095]]],[[[-174.1238907539999,52.39972565300009],[-174.10240637899994,52.394720770000056],[-174.08613033799992,52.39907461100013],[-174.07172604099992,52.382025458],[-174.05451412699992,52.36847565300003],[-174.0344132149999,52.35993073100012],[-174.0109757149999,52.35809967700013],[-174.0104874339999,52.34210846600003],[-173.99962317599991,52.32802969000009],[-173.99189205599993,52.31256745000017],[-174.00047766799992,52.2926292990001],[-174.00694739499994,52.28709544500008],[-174.01585852799988,52.281480210000055],[-174.02562415299988,52.27728913000014],[-174.03461666599992,52.27558014500011],[-174.04625403599994,52.27122630400014],[-174.04938717399992,52.26105377800009],[-174.0495092439999,52.249457098000065],[-174.05190995999993,52.240790106000176],[-174.0519506499999,52.240790106000176],[-174.0891820949999,52.22711823100006],[-174.1807348299999,52.23069896000011],[-174.2028295559999,52.21283600500006],[-174.19273841099994,52.201361395],[-174.18065344999994,52.190334377000156],[-174.1543676419999,52.17194245000012],[-174.11750240799995,52.1529808610001],[-174.10020911399994,52.140936591000084],[-174.0929662749999,52.127834377000035],[-174.09894771999993,52.11298248900006],[-174.11351477799988,52.112494208000086],[-174.14789791599992,52.127834377000035],[-174.15684973899994,52.12909577000012],[-174.16380774599992,52.12543366100008],[-174.17052161399988,52.12034739800004],[-174.1785782539999,52.117905992000104],[-174.18964596299992,52.119330145000085],[-174.21100826699987,52.124660549000154],[-174.22325598899988,52.124701239000146],[-174.21650143099993,52.116603908000016],[-174.2132055329999,52.10797760600011],[-174.2132055329999,52.099066473000086],[-174.21642005099994,52.08991120000009],[-174.2300512359999,52.09560781500009],[-174.2710668609999,52.09739817900008],[-174.27924557199992,52.100775458000086],[-174.3005264959999,52.11322663],[-174.30585689999992,52.117905992000104],[-174.32103430899994,52.123358466000134],[-174.33869381399995,52.120550848],[-174.35688229099995,52.11481354400002],[-174.3737686839999,52.11172109600015],[-174.4131973949999,52.11383698100015],[-174.42992102799994,52.11005280200013],[-174.4355362619999,52.09739817900008],[-174.42133541599992,52.10228099200013],[-174.40619869699992,52.104193427],[-174.37413489499986,52.10423411699999],[-174.37413489499986,52.09739817900008],[-174.39277096299995,52.092840887000115],[-174.3981420559999,52.05263906500012],[-174.41136633999992,52.042792059000085],[-174.43586178299986,52.044501044000114],[-174.44444739499988,52.05084870000003],[-174.4491674469999,52.06342194200012],[-174.46226966099988,52.08372630400014],[-174.47569739499994,52.06891510600015],[-174.49327551999986,52.07200755400014],[-174.5109350249999,52.08437734600007],[-174.52497311099995,52.09739817900008],[-174.5260717439999,52.08197663000014],[-174.49779212099992,52.053168036],[-174.4901830719999,52.03534577000012],[-174.5048315089999,52.04751211100001],[-174.52314205599987,52.05731842700014],[-174.54218502499995,52.0614281270001],[-174.55907141799995,52.056463934000035],[-174.55260169199985,52.052964585000055],[-174.54364986899992,52.04572174700003],[-174.53856360599988,52.042792059000085],[-174.53856360599988,52.03534577000012],[-174.5506485669999,52.0367699240001],[-174.57127844999994,52.041693427000055],[-174.5829565089999,52.042792059000085],[-174.59239661399994,52.04071686400008],[-174.6154679029999,52.031317450000145],[-174.62739010299993,52.02850983300003],[-174.65074622299994,52.03266022300015],[-174.69420325399986,52.05158112200017],[-174.7092992829999,52.049017645000056],[-174.6993302069999,52.04254791900014],[-174.69770260299987,52.03583405200011],[-174.70372473899988,52.03058502800003],[-174.71674557199987,52.02850983300003],[-174.70213782499994,52.02057526200004],[-174.7152807279999,52.0165062520001],[-174.75426184799989,52.014837958000086],[-174.76305091099985,52.016994533000066],[-174.78327389199987,52.02635325700011],[-174.88805091099994,52.042792059000085],[-174.89903723899988,52.039780992000104],[-174.91864986899992,52.03046295800006],[-174.92902584499993,52.02850983300003],[-174.96747799399992,52.03058502800003],[-174.9848119779999,52.02789948100015],[-175.0009659499999,52.018255927000084],[-175.0350235669999,52.004339911],[-175.32355709499993,52.00775788000011],[-175.3405248689999,52.014837958000086],[-175.3107804029999,52.02667877800003],[-175.21019446499986,52.03534577000012],[-175.16132564999987,52.04852936400009],[-175.14130611899992,52.049017645000056],[-175.1245011059999,52.04755280199999],[-175.1102188789999,52.04462311400008],[-175.10631262899992,52.03876373900011],[-175.12079830599995,52.02850983300003],[-175.1041153639999,52.02985260600009],[-175.07599850199992,52.04059479400011],[-175.05931555899988,52.042792059000085],[-175.04246985599988,52.038723049000126],[-175.0298559239999,52.032538153000175],[-175.01984615799992,52.03148021000011],[-175.0109350249999,52.042792059000085],[-175.02350826699987,52.048407294000114],[-175.02704830599995,52.05402252800008],[-175.0246068999999,52.066107489],[-175.01996822799987,52.07453034100014],[-175.00995846299992,52.07477448100009],[-175.00047766799992,52.07147858300006],[-174.99726314999995,52.06948476800012],[-174.99413001199989,52.066310940000065],[-174.98460852799988,52.06053294500002],[-174.97459876199989,52.0583356790001],[-174.96996008999986,52.066107489],[-174.96593176999988,52.079738674000154],[-174.95673580599993,52.08218008000009],[-174.9389542309999,52.0768903670001],[-174.93028723899994,52.08661530200005],[-174.91779537699995,52.104681708000086],[-174.90656490799992,52.11489492400001],[-174.90172278599988,52.10081614800008],[-174.8937882149999,52.088934637000115],[-174.85509192599994,52.10480377800015],[-174.84019934799989,52.08991120000009],[-174.8249405589999,52.09760163000011],[-174.8086645169999,52.09804922100001],[-174.79450436099984,52.09113190300012],[-174.78563391799992,52.0768903670001],[-174.7554825509999,52.09487539300015],[-174.74400794199983,52.10350169500005],[-174.74400794199983,52.117905992000104],[-174.72297115799992,52.124701239000146],[-174.69782467399995,52.11098867400004],[-174.6503800119999,52.104315497000144],[-174.6015518869999,52.10464101800009],[-174.57213294199994,52.11172109600015],[-174.59215247299989,52.11530182500003],[-174.59788977799988,52.12262604400003],[-174.59068762899994,52.13104889500009],[-174.57213294199994,52.13837311400009],[-174.5516251289999,52.139105536000116],[-174.5291235019999,52.13711172100006],[-174.50947018099993,52.139105536000116],[-174.4976293609999,52.15204498900012],[-174.52672278599994,52.15131256700009],[-174.54047604099995,52.15322500200013],[-174.5528458319999,52.15888092700014],[-174.54539954299992,52.16571686400006],[-174.55003821499994,52.16852448100009],[-174.5523575509999,52.17080312700007],[-174.55907141799995,52.17934804900001],[-174.44920813699986,52.17934804900001],[-174.4244278639999,52.17084381700006],[-174.41266842399995,52.171210028000175],[-174.4076635409999,52.182766018],[-174.41303463399987,52.18960195500013],[-174.42560787699995,52.1966820330001],[-174.44920813699986,52.20669179900006],[-174.44920813699986,52.21283600500006],[-174.38707434799986,52.21295807500003],[-174.3611954419999,52.20538971600017],[-174.3393448559999,52.18618398600002],[-174.33088131399995,52.202337958000086],[-174.31541907499994,52.214667059000035],[-174.29828854099992,52.219427802000105],[-174.28473873599992,52.21283600500006],[-174.27765865799986,52.21954987200009],[-174.27257239499986,52.23135000200007],[-174.2676488919999,52.2376976580001],[-174.25914466099988,52.240912177000055],[-174.23631751199994,52.243719794000114],[-174.22948157499994,52.24823639500006],[-174.22826087099992,52.267523505],[-174.2447403639999,52.274155992000075],[-174.28473873599992,52.27558014500011],[-174.29967200399986,52.283148505000085],[-174.3095190089999,52.29303620000009],[-174.31712805899994,52.30267975500006],[-174.32567298099985,52.309637762000065],[-174.34491939999992,52.31537506700012],[-174.35529537699992,52.3111839860001],[-174.35627193899987,52.299261786000145],[-174.34679114499988,52.281805731000084],[-174.37677975199995,52.28384023600002],[-174.4158422519999,52.29344310099999],[-174.44257564999992,52.30752187700013],[-174.4355362619999,52.322699286000116],[-174.36937415299982,52.32477448100006],[-174.33861243399988,52.33551666900014],[-174.34679114499988,52.36432526200009],[-174.33442135299993,52.37026601800004],[-174.32306881399987,52.367865302000084],[-174.31147213399987,52.36375560100011],[-174.2984106109999,52.36432526200009],[-174.28831946499992,52.371771552000084],[-174.2822973299999,52.38841380400011],[-174.2420548169999,52.396877346000146],[-174.1902970039999,52.41787344],[-174.1618139309999,52.41958242400001],[-174.14545650899987,52.40949127800003],[-174.1238907539999,52.39972565300009]]],[[[173.79127037900017,52.50153229400006],[173.7306421230002,52.47211334800015],[173.71306399799997,52.45058828300013],[173.72608483200017,52.42291901200004],[173.73365319100012,52.41120026200003],[173.73894290500024,52.39443594000012],[173.74244225400017,52.376410223],[173.74341881599995,52.361232815],[173.6608992849999,52.35065338700015],[173.66358483200023,52.3561058610001],[173.66423587299997,52.35871002800009],[173.66504967500018,52.36066315300003],[173.6684676440003,52.36432526200009],[173.6684676440003,52.37116120000012],[173.65601647200015,52.37006256700006],[173.64454186300026,52.37116120000012],[173.63453209700023,52.37396881700006],[173.6267195970002,52.37799713700004],[173.62761478000013,52.39459870000009],[173.6053166020001,52.39679596600017],[173.50066165500016,52.387030341000056],[173.40170332099993,52.396673895],[173.38892662900008,52.403794664000074],[173.39405358200017,52.41958242400001],[173.40845787900017,52.43012116100006],[173.43132571700022,52.44049713700015],[173.45427493600025,52.44721100500011],[173.4690861340002,52.446844794000086],[173.49146569099992,52.44204336100002],[173.5105086600002,52.44159577],[173.52784264400023,52.44550202],[173.54493248800028,52.45368073100012],[173.56706790500024,52.47117747600008],[173.5755314460002,52.473578192],[173.59278405000018,52.474066473],[173.5992944670002,52.47638580900015],[173.6023055350001,52.481675523000135],[173.60954837300017,52.49127838700012],[173.61866295700028,52.498724677],[173.62452233200023,52.50071849200013],[173.63111412900022,52.500433661],[173.7374780610002,52.510809637000094],[173.76734459700012,52.50942617400001],[173.79127037900017,52.50153229400006]]],[[[-171.2221573559999,52.46308014500012],[-171.27684485599994,52.45368073100012],[-171.31163489499988,52.46426015800015],[-171.3146459629999,52.48843008000007],[-171.29356848899988,52.514105536000116],[-171.25641842399986,52.529445705000064],[-171.2216690749999,52.510809637000094],[-171.20763098899988,52.498724677],[-171.2116593089999,52.48444245000009],[-171.21601314999992,52.477240302000055],[-171.21808834499993,52.469387111000074],[-171.2221573559999,52.46308014500012]]],[[[-170.5978490879999,52.61139557500011],[-170.6219376289999,52.59389883000016],[-170.64545650899996,52.58710358300014],[-170.67084713399987,52.589016018000095],[-170.70087643099993,52.597723700000174],[-170.75279700399992,52.57428620000009],[-170.76915442599994,52.562933661000116],[-170.7860815089999,52.5475121110001],[-170.7978409499999,52.54026927300008],[-170.8107804029999,52.54291413000006],[-170.83124752499995,52.556708075000174],[-170.83739173099994,52.549261786],[-170.8466690749999,52.58437734600007],[-170.82123775899987,52.61603424700006],[-170.7554825509999,52.659125067000055],[-170.74864661399988,52.667669989],[-170.74705969999994,52.67438385600003],[-170.74372311099992,52.67869700700014],[-170.73192298099994,52.680243231000176],[-170.71507727799994,52.68032461100016],[-170.70348059799994,52.68187083500002],[-170.6940811839999,52.68683502800014],[-170.68407141799992,52.69696686400003],[-170.6704809239999,52.70083242400001],[-170.64708411399988,52.69916413],[-170.62230383999992,52.6939964860001],[-170.6046443349999,52.687079169000086],[-170.5934545559999,52.685207424000126],[-170.58311926999988,52.68235911699999],[-170.57335364499994,52.67837148600002],[-170.5637100899999,52.672796942],[-170.56611080599993,52.662176825000145],[-170.56590735599988,52.65615469000015],[-170.56725012899986,52.65070221600003],[-170.5978490879999,52.61139557500011]]],[[[174.1648055350001,52.720933335000055],[174.1823022800002,52.70693594],[174.09669030000018,52.713771877000035],[174.08033287900005,52.71767812700001],[174.08350670700008,52.72650788000008],[174.09766686300023,52.73578522300012],[174.11394290500007,52.741034247000115],[174.1648055350001,52.720933335000055]]],[[[-170.1281225249999,52.72744375200015],[-170.19440670499995,52.72744375200015],[-170.18024654899992,52.76679108300006],[-170.17328854099992,52.77521393400009],[-170.17967688699994,52.78001536699999],[-170.1824438139999,52.781480210000055],[-170.18696041599986,52.78266022300009],[-170.16901607999992,52.78978099200013],[-170.1465551419999,52.79100169500004],[-170.1236466139999,52.78807200700011],[-170.10440019399988,52.78266022300009],[-170.08625240799986,52.77912018400009],[-170.06578528599988,52.77106354400014],[-170.05610104099995,52.76032135600014],[-170.07026119699987,52.748480536],[-170.0672094389999,52.744574286],[-170.06574459499993,52.7414411480001],[-170.06342525899996,52.73427969000006],[-170.1281225249999,52.72744375200015]]],[[[-169.78290768099987,52.89252350500006],[-169.76752682199992,52.88471100500006],[-169.75548255099991,52.884914455000015],[-169.74335689999992,52.88711172100001],[-169.7276098299999,52.88507721600017],[-169.7158910799999,52.87905508000007],[-169.7072240879999,52.87274811400011],[-169.6985570949999,52.86933014500012],[-169.68663489499986,52.872015692],[-169.68663489499986,52.86692942900008],[-169.6847631499999,52.86399974200005],[-169.68199622299994,52.86147695500013],[-169.67926998599995,52.85773346600011],[-169.6830541659999,52.851996161000116],[-169.6934708319999,52.83047109600001],[-169.67926998599995,52.8236351580001],[-169.69257564999984,52.81378815300017],[-169.70653235599994,52.80556875200007],[-169.71385657499985,52.79612864800008],[-169.70714270699992,52.78266022300009],[-169.72337805899994,52.77448151200015],[-169.7379044259999,52.778306382],[-169.76178951699995,52.795721747000144],[-169.78144283799992,52.80390045800006],[-169.86481686099992,52.820868231000034],[-169.87730872299994,52.81952545800014],[-169.91486568899992,52.79938385600012],[-169.92206783799986,52.79755280200014],[-169.93993079299992,52.795721747000144],[-169.95710201699995,52.79035065300009],[-169.96410071499994,52.789496161],[-169.97016354099992,52.7916527360001],[-169.9789932929999,52.80101146000014],[-170.00072180899986,52.809515692000055],[-170.01109778599988,52.8236351580001],[-170.0116674469999,52.83771393400003],[-169.97325598899994,52.85565827000009],[-169.96410071499994,52.85773346600011],[-169.9228409499999,52.85089752800009],[-169.89936275899993,52.85179271000008],[-169.88744055899986,52.85529205900014],[-169.86851966099988,52.875148830000064],[-169.8502904939999,52.88251373900006],[-169.80296790299994,52.88226959800012],[-169.78290768099987,52.89252350500006]]],[[[-170.03058834499996,52.86456940300003],[-170.05610104099995,52.857082424000154],[-170.09076900899993,52.86456940300003],[-170.1048070949999,52.87116120000009],[-170.11705481699994,52.87921784100003],[-170.12482662699992,52.88861725500006],[-170.1254776679999,52.89935944200006],[-170.1172989569999,52.90965403899999],[-170.10322018099993,52.91632721600014],[-170.08637447799993,52.919501044000114],[-170.07026119699987,52.91917552299999],[-170.01427161399994,52.90582916900017],[-169.9945776029999,52.90558502800003],[-170.01109778599988,52.88226959800012],[-170.03058834499996,52.86456940300003]]],[[[172.90406334700018,53.001166083000115],[172.91138756600012,52.99860260600009],[172.91423587300002,52.99266185099999],[172.91627037900017,52.986232815000065],[172.92107181100008,52.98187897300006],[172.93409264400023,52.97988515800013],[172.95728600400017,52.979641018000095],[172.96941165500007,52.97443268400009],[173.00806725400003,52.989691473000065],[173.027191602,52.993597723000065],[173.12720787900017,52.994940497000144],[173.14332116000006,52.990383205],[173.17505944100017,52.97174713700012],[173.18474368600002,52.96759674700017],[173.18604576900023,52.96181875200001],[173.17139733200023,52.94863515800007],[173.14014733200017,52.926662502000156],[173.15154056100002,52.92877838700015],[173.1603296230002,52.927720445000105],[173.16586347700002,52.922756252000156],[173.16749108200023,52.913031317],[173.22217858200017,52.93732330900018],[173.24984785200013,52.944403387000065],[173.25684655000012,52.933498440000065],[173.3012801440002,52.92560455900009],[173.32252037900022,52.9160016950001],[173.3217879570002,52.90249258000013],[173.3093367850001,52.892767645],[173.29639733200017,52.88548411699999],[173.2630314460001,52.872015692],[173.3015242850001,52.859320380000135],[173.35157311300028,52.85248444200011],[173.40186608200017,52.85187409100014],[173.4419051440003,52.85773346600011],[173.43311608200017,52.83856842700014],[173.41871178500017,52.83075592700005],[173.37663821700014,52.83047109600001],[173.33741295699997,52.82623932500009],[173.32203209700015,52.82021719000009],[173.32154381600017,52.81085846600014],[173.29615319099995,52.82953522300012],[173.28199303500023,52.8373884140001],[173.2630314460001,52.84414297100015],[173.24195397200018,52.847113348000065],[173.22266686300017,52.843817450000024],[173.20655358200017,52.83392975500011],[173.1948348320001,52.81679922100007],[173.18864993600002,52.81679922100007],[173.18864993600002,52.8236351580001],[173.18116295700003,52.8236351580001],[173.17432701900023,52.809312242000104],[173.18864993600002,52.80316803600011],[173.18864993600002,52.795721747000144],[173.1637475920002,52.79352448100015],[173.14649498800011,52.788275458000086],[173.13152103000007,52.788641669000086],[173.1128035820001,52.80316803600011],[173.09400475400003,52.82656484600004],[173.0893660820001,52.83047109600001],[173.07748457100016,52.828314520000035],[173.05787194100012,52.81891510600009],[173.0483504570001,52.81679922100007],[173.01661217500023,52.80219147300006],[172.98129316500004,52.77277252800014],[172.94434655000006,52.74982330900018],[172.907481316,52.754706122000144],[172.91081790500002,52.76015859600009],[172.91285241000017,52.77008698100009],[172.91211998800023,52.78099192900008],[172.907481316,52.789496161],[172.89380944100014,52.79608795800008],[172.880218946,52.79531484600015],[172.85621178500014,52.789496161],[172.84937584700006,52.791815497000144],[172.83936608200005,52.80158112200009],[172.832286004,52.80316803600011],[172.82699629,52.79938385600012],[172.82178795700023,52.78563060099999],[172.81462649800017,52.78266022300009],[172.80176842500015,52.78440989800008],[172.77662194100017,52.79287344000004],[172.76343834700006,52.795721747000144],[172.76343834700006,52.80316803600011],[172.77670332100016,52.810980536000116],[172.78321373800017,52.82282135600017],[172.790782097,52.85089752800009],[172.80876712300008,52.877508856000034],[172.81104576900012,52.887925523000106],[172.79761803500003,52.89252350500006],[172.78785241000017,52.89081452000015],[172.75603274800008,52.87824127800015],[172.74447675900004,52.87710195500004],[172.70818118600002,52.87824127800015],[172.64039147199998,52.868801174000126],[172.6261499360002,52.872015692],[172.63559004000004,52.879339911],[172.66041100400017,52.913031317],[172.65284264400023,52.924383856000176],[172.63990319100006,52.92804596600003],[172.60515384200008,52.926662502000156],[172.54761803500014,52.91290924700003],[172.53402754000004,52.91608307500009],[172.520192905,52.92259349200002],[172.4918725920002,52.92011139500006],[172.4760848320002,52.926662502000156],[172.5511173840001,52.96759674700017],[172.55738366000006,52.96015045799999],[172.57691491,52.97797272300009],[172.66041100400017,53.00861237200009],[172.73080488399998,53.000392971000096],[172.7467554050002,53.00486888200005],[172.76286868600008,53.01414622600011],[172.78109785200016,53.01552969000009],[172.90406334700018,53.001166083000115]]],[[[-169.71934973899988,52.95014069200011],[-169.74811764199993,52.94651927300004],[-169.74193274599992,52.96015045799999],[-169.76048743399983,52.968695380000106],[-169.75800533799992,52.98273346600017],[-169.7498673169999,52.998480536000116],[-169.75328528599994,53.02480703300013],[-169.7342423169999,53.03290436400006],[-169.70942135299984,53.03652578300013],[-169.6934708319999,53.03587474199999],[-169.6807348299999,53.033189195000105],[-169.67320716099988,53.025213934000064],[-169.6691381499999,53.01386139500006],[-169.6662084629999,53.001166083000115],[-169.68635006399992,52.98899974200013],[-169.70140540299994,52.96820709800012],[-169.71934973899988,52.95014069200011]]],[[[-168.00829016799986,53.5702985700001],[-167.95990963399996,53.53778717700011],[-167.93468176999988,53.526760158000066],[-167.90156002499995,53.52252838700015],[-167.8373917309999,53.525458075000174],[-167.80699622299994,53.52008698100011],[-167.79478919199985,53.50202057500009],[-167.8080948559999,53.47793203300007],[-167.85297604099992,53.44725169499999],[-167.8711645169999,53.426947333000086],[-167.86168372299989,53.42145416900014],[-167.85387122299989,53.41364166900014],[-167.8513077459999,53.403876044000114],[-167.85749264199995,53.39276764500009],[-167.8500463529999,53.3854027360001],[-167.8755590489999,53.37189362200011],[-167.9377335279999,53.34845612200006],[-167.96642005099994,53.344427802000084],[-167.98810787699995,53.33856842700011],[-168.1381729809999,53.273260809000035],[-168.17223059799989,53.26504140800013],[-168.2257787749999,53.259711005000085],[-168.25645911399994,53.25031159100014],[-168.27118893099993,53.24819570500012],[-168.28758704299992,53.242987372000144],[-168.3117162749999,53.22003815300015],[-168.32921301999988,53.214667059000085],[-168.32542883999983,53.204779364],[-168.32298743399994,53.20099518400015],[-168.3401993479999,53.18939850500006],[-168.34943600199992,53.172430731000176],[-168.35912024599986,53.161078192],[-168.3776342439999,53.16620514500012],[-168.37657630099991,53.14020416900003],[-168.39069576699993,53.12470123900011],[-168.4120987619999,53.11261627800011],[-168.4328507149999,53.09735748900014],[-168.46605383999992,53.056626694999984],[-168.4899389309999,53.04205963700006],[-168.5154516269999,53.05019765800015],[-168.53119869699995,53.034613348000065],[-168.58405514199993,53.030462958000115],[-168.60728919199994,53.01886627800011],[-168.62621008999986,53.00495026200004],[-168.67157955599995,52.98236725500006],[-168.6861059239999,52.96759674700017],[-168.68146725199986,52.96308014500012],[-168.67931067599986,52.96015045799999],[-168.7512914699999,52.96015045799999],[-168.77452551999994,52.956366278000175],[-168.7786352199999,52.947333075000174],[-168.76988684799989,52.93626536700013],[-168.75438391799992,52.926662502000156],[-168.7660619779999,52.91388580900012],[-168.78038489499988,52.913641669000164],[-168.79539954299992,52.921820380000085],[-168.80903072799995,52.933498440000065],[-168.8183487619999,52.91962311400009],[-168.8317764959999,52.91852448100003],[-168.84662838399996,52.92059967700005],[-168.86021887899992,52.91608307500009],[-168.8857315749999,52.896185614],[-168.90082760299993,52.88825104400014],[-168.93468176999986,52.882635809000035],[-168.98839270699995,52.86456940300003],[-169.02424068899995,52.859564520000085],[-169.03990637899992,52.85366445500013],[-169.03559322799993,52.84414297100015],[-169.03559322799993,52.83730703300013],[-169.11127682199992,52.8236351580001],[-169.0953263009999,52.83490631700009],[-169.07721920499986,52.83759186400006],[-169.0608617829999,52.84178294500002],[-169.04987545499992,52.85773346600011],[-169.05317135299993,52.859808661000116],[-169.0538223949999,52.860337632000025],[-169.05406653599994,52.86131419499999],[-169.05601966099988,52.86456940300003],[-168.99657141799992,52.87152741100011],[-168.98094641799986,52.87824127800015],[-168.9704483709999,52.89472077000015],[-168.96788489499988,52.92719147300012],[-168.95299231699994,52.9403343770001],[-168.9302465489999,52.94428131700008],[-168.91010494699995,52.940619208000115],[-168.89098059799986,52.9403343770001],[-168.87108313699986,52.95400625200013],[-168.8632706369999,52.97158437700015],[-168.8620092439999,53.00690338700018],[-168.85057532499994,53.02220286700005],[-168.82892818899995,53.01609935100005],[-168.8080541659999,53.02838776200012],[-168.7720841139999,53.06696198100017],[-168.76862545499986,53.08144765800013],[-168.79450436099992,53.115545966000134],[-168.7959692049999,53.13833242400007],[-168.78852291599986,53.15232982000013],[-168.77533932199995,53.170803127000156],[-168.7595108709999,53.186712958000086],[-168.72740637899992,53.19928620000014],[-168.6978246739999,53.22370026200012],[-168.6861059239999,53.228338934000035],[-168.63756262899994,53.25047435100011],[-168.63084876199989,53.258734442],[-168.62336178299992,53.274237372000115],[-168.6057022779999,53.27513255400011],[-168.56944739499988,53.26178620000009],[-168.5504858059999,53.25242747600008],[-168.5413305329999,53.24933502800017],[-168.52818762899994,53.24819570500012],[-168.52082271999996,53.251288153000026],[-168.50153561099992,53.26544830900015],[-168.4824112619999,53.270493882],[-168.47374426999994,53.274237372000115],[-168.46430416599992,53.27680084800012],[-168.45335852799985,53.27545807500003],[-168.4478653639999,53.27081940300011],[-168.43891354099992,53.25470612200003],[-168.4328507149999,53.24819570500012],[-168.40436764199987,53.25796133000007],[-168.37946529899986,53.26097239799999],[-168.3607885409999,53.27130768400009],[-168.35094153599988,53.30280182500012],[-168.36229407499994,53.29730866100008],[-168.3715307279999,53.29832591400004],[-168.3754776679999,53.30516185100005],[-168.37079830599987,53.317084052],[-168.38609778599994,53.32257721600003],[-168.41779537699986,53.32623932500017],[-168.4328507149999,53.33006419500002],[-168.4328507149999,53.33759186400006],[-168.41974850199995,53.34271881700006],[-168.40619869699987,53.35366445500013],[-168.39570064999992,53.3668480490001],[-168.3919164699999,53.378485419000086],[-168.39696204299992,53.39667389500009],[-168.40404212099986,53.40322500200007],[-168.4065649079999,53.40949127800012],[-168.39814205599993,53.426947333000086],[-168.37360592399992,53.46015045799999],[-168.36461341099988,53.467922268000095],[-168.34972083199995,53.47382233300011],[-168.3145645819999,53.48200104400003],[-168.27070064999992,53.51386139500006],[-168.2368057929999,53.53009674700011],[-168.1998184889999,53.54022858300006],[-168.12547766799992,53.54669830900015],[-168.10700436099992,53.551703192],[-168.0933731759999,53.55975983300014],[-168.07787024599986,53.563381252],[-168.0288793609999,53.56049225500008],[-168.00829016799986,53.5702985700001]]],[[[-166.0891820949999,53.844671942],[-166.0991918609999,53.833929755],[-166.10277258999994,53.831000067000055],[-166.11290442599986,53.83030833500011],[-166.12096106699994,53.82648346600011],[-166.12682044199988,53.819810289000074],[-166.13011633999992,53.81049225500011],[-166.11961829299995,53.80263906500012],[-166.1171768869999,53.793036200000145],[-166.1212052069999,53.783636786000116],[-166.13011633999992,53.77635325700011],[-166.1444799469999,53.772528387000094],[-166.1742651029999,53.77631256700011],[-166.1915990879999,53.77635325700011],[-166.17670650899993,53.757635809000064],[-166.17157955599993,53.74787018400009],[-166.17479407499988,53.738511460000076],[-166.1845190089999,53.733872789000046],[-166.22630774599995,53.727972723],[-166.2221166659999,53.72284577],[-166.2126358709999,53.70807526200012],[-166.23289954299992,53.716782945000105],[-166.2719213529999,53.74335358300005],[-166.2908829419999,53.74909088700012],[-166.2978409499999,53.76019928600006],[-166.29926510299987,53.78168366100009],[-166.2905167309999,53.79535553600011],[-166.26728268099987,53.783148505000135],[-166.26752682199992,53.796820380000085],[-166.2620336579999,53.80320872600002],[-166.25324459499993,53.807318427000055],[-166.24339758999992,53.81391022300012],[-166.2378637359999,53.815252997000115],[-166.2368057929999,53.806138414000124],[-166.2399796209999,53.783148505000135],[-166.2325333319999,53.783148505000135],[-166.2123510409999,53.82294342700014],[-166.19782467399995,53.83710358300005],[-166.17792721299995,53.831000067000055],[-166.16974850199995,53.842962958],[-166.16083736899992,53.84357330900014],[-166.15025794199985,53.839585679],[-166.13695227799994,53.837836005],[-166.1245824859999,53.841213283000016],[-166.1160375639999,53.84577057500014],[-166.10594641799992,53.84804922100012],[-166.0891820949999,53.844671942]]],[[[-166.11152096299992,53.95600006700015],[-166.1539200509999,53.955308335],[-166.1690567699999,53.95677317900005],[-166.19127356699988,53.964911200000174],[-166.19611568899995,53.98102448100015],[-166.18915768099993,53.98969147300014],[-166.1802872389999,53.989813544000114],[-166.1565649079999,53.99359772300012],[-166.11579342399995,53.98867422100007],[-166.09455318899995,53.98065827000012],[-166.0877579419999,53.97793203300015],[-166.07953854099992,53.970892645],[-166.08897864499994,53.96165599200013],[-166.11152096299992,53.95600006700015]]],[[[-166.74644934799989,53.975002346000124],[-166.73102779899995,53.97410716400004],[-166.71934973899982,53.98456452000012],[-166.70946204299995,53.998480536000024],[-166.6992895169999,54.008490302],[-166.66832434799986,54.01357656500004],[-166.6345922519999,54.004584052],[-166.60570227799985,53.98578522300015],[-166.58942623599992,53.961371161],[-166.61274166599992,53.95551178600006],[-166.62507076699987,53.95066966399999],[-166.6304418609999,53.94399648600002],[-166.63133704299992,53.93903229400017],[-166.63560950399994,53.929388739],[-166.6365860669999,53.92348867400007],[-166.6345922519999,53.91705963700014],[-166.6301977199999,53.91046784100017],[-166.62568111899992,53.90607330900009],[-166.62360592399992,53.90615469000006],[-166.63609778599994,53.87653229400003],[-166.6334936189999,53.8719750020001],[-166.61969967399992,53.87518952000015],[-166.60814368399988,53.88129303600011],[-166.5964249339999,53.88450755399999],[-166.58197994699995,53.87938060100008],[-166.60667883999992,53.84479401200018],[-166.6099340489999,53.831000067000055],[-166.58698482999986,53.83930084800015],[-166.48949133999992,53.90009186400009],[-166.4753311839999,53.89907461100001],[-166.4590958319999,53.88556549700006],[-166.45579993399994,53.8961449240001],[-166.43858801999994,53.926581122000144],[-166.43956458199986,53.928127346000096],[-166.43976803299995,53.94171784100014],[-166.43858801999994,53.94708893400009],[-166.42271887899986,53.95115794500008],[-166.4180802069999,53.95384349200004],[-166.40986080599984,53.980169989000146],[-166.40387936099995,53.98924388200005],[-166.37035071499992,54.008490302],[-166.3601781889999,53.99282461100002],[-166.3691300119999,53.973822333000115],[-166.3734024729999,53.95677317900005],[-166.34923255099991,53.94708893400009],[-166.32603919199988,53.95286692900008],[-166.30024166599995,53.96613190300008],[-166.27672278599988,53.974920966000134],[-166.26048743399994,53.967596747000144],[-166.25422115799986,53.951402085000026],[-166.25096594999985,53.93659088700004],[-166.25422115799986,53.92348867400007],[-166.26728268099987,53.912909247000115],[-166.2532852859999,53.913519598000065],[-166.24103756399995,53.919012762000094],[-166.2188614569999,53.934027411000116],[-166.2187393869999,53.918605861000096],[-166.2249242829999,53.90546295800014],[-166.23505611899992,53.89447663000008],[-166.2468155589999,53.88556549700006],[-166.26655025899993,53.87433502800003],[-166.28392493399988,53.86896393400018],[-166.3017065089999,53.86847565300009],[-166.3224991529999,53.8719750020001],[-166.3277481759999,53.87653229400003],[-166.33149166599992,53.88361237200009],[-166.3365372389999,53.887437242000104],[-166.3458145819999,53.882513739000146],[-166.34947669199985,53.87592194200006],[-166.35297604099995,53.85834381700015],[-166.35667883999986,53.85150788000011],[-166.3743383449999,53.84210846600008],[-166.41429602799985,53.837958075000145],[-166.43175208199992,53.831000067000055],[-166.4184057279999,53.81541575700008],[-166.41132564999992,53.81049225500011],[-166.42418372299989,53.80475495000006],[-166.52159583199992,53.78900788],[-166.54161536399988,53.79002513200005],[-166.5178116529999,53.78058502800003],[-166.5067032539999,53.77789948100015],[-166.4932348299999,53.77635325700011],[-166.4932348299999,53.76951732000002],[-166.52070064999992,53.76459381700012],[-166.54088294199985,53.75177643400009],[-166.57514400899993,53.714300848000065],[-166.5595190089999,53.715643622000144],[-166.55089270699995,53.710598049000126],[-166.54930579299992,53.70058828300013],[-166.55467688699986,53.68699778900002],[-166.54063880099991,53.69513580900012],[-166.52159583199992,53.721421617000125],[-166.51374264199993,53.727972723],[-166.49840247299989,53.72284577],[-166.4879858059999,53.69481028899999],[-166.47642981699988,53.697577216000134],[-166.4732152989999,53.70294830900009],[-166.47215735599985,53.70994700699999],[-166.47272701699993,53.72455475499999],[-166.47130286399988,53.73395416900003],[-166.46751868399994,53.738023179],[-166.4620255199999,53.74054596600011],[-166.45567786399988,53.745347397999986],[-166.44037838399993,53.754461981000176],[-166.42027747299986,53.758734442],[-166.40497799399992,53.75531647300009],[-166.40387936099995,53.74164459800014],[-166.3938695949999,53.740627346000096],[-166.38617916599995,53.736721096000096],[-166.3804825509999,53.73012929900001],[-166.3765356109999,53.721136786],[-166.3696996739999,53.73484935100011],[-166.3682755199999,53.758734442],[-166.35981197799993,53.7729352890001],[-166.34618079299992,53.782700914000046],[-166.3340958319999,53.782416083000115],[-166.3236791659999,53.77472565300009],[-166.3151342439999,53.762111721],[-166.31444251199983,53.74803294500008],[-166.31977291599992,53.73729075700005],[-166.3175756499999,53.73041413000014],[-166.29430091099994,53.727972723],[-166.27814693899992,53.72386302300008],[-166.27521725199995,53.71369049700011],[-166.2766820949999,53.70038483299999],[-166.2735082669999,53.68699778900002],[-166.28949947799993,53.67991771000014],[-166.33128821499986,53.674017645],[-166.40778561099995,53.672674872000115],[-166.42499752499987,53.666489976000136],[-166.4094132149999,53.65570709800012],[-166.40387936099995,53.6528181010001],[-166.42760169199985,53.651109117000104],[-166.44920813699989,53.643500067000055],[-166.47040768099995,53.638739325000145],[-166.4932348299999,53.64606354400017],[-166.54723059799986,53.62592194200011],[-166.56212317599994,53.61810944200011],[-166.5462540359999,53.615383205000064],[-166.53453528599994,53.60895416900014],[-166.52643795499986,53.598781643],[-166.52118893099993,53.584621486000074],[-166.54950924399995,53.60106028899999],[-166.5757950509999,53.59369538],[-166.59337317599991,53.56956614800008],[-166.5956518219999,53.53620026200009],[-166.6086319649999,53.555121161000116],[-166.66454016799995,53.59821198100003],[-166.66588294199994,53.58173248900006],[-166.64289303299995,53.55003489799999],[-166.6365860669999,53.532782294000086],[-166.6474096339999,53.529120184000035],[-166.71296139199993,53.54979075700005],[-166.7084447909999,53.536281643000066],[-166.69652258999994,53.530340887000065],[-166.68163001199989,53.526556708000115],[-166.66795813699994,53.519435940000065],[-166.65636145699995,53.502386786000116],[-166.65916907499988,53.49091217700008],[-166.67149817599994,53.48847077000012],[-166.69782467399995,53.50531647300012],[-166.70771236899995,53.50824616100006],[-166.72968502499995,53.508856512000115],[-166.73436438699989,53.51154205900009],[-166.74262447799984,53.52472565300015],[-166.74644934799989,53.529364325000174],[-166.77155514199987,53.54816315300003],[-166.79487057199987,53.5702985700001],[-166.8091527989999,53.55662669500008],[-166.8002823559999,53.54608795799999],[-166.78123938699989,53.508856512000115],[-166.75059973899994,53.479193427],[-166.74644934799989,53.467922268000095],[-166.75218665299985,53.450873114000146],[-166.7644750639999,53.44912344000015],[-166.79487057199987,53.461086330000064],[-166.8002823559999,53.46474844000012],[-166.80182857999986,53.468980210000055],[-166.80500240799992,53.47101471600017],[-166.81537838399993,53.467922268000095],[-166.81611080599995,53.464422919000114],[-166.8250219389999,53.44586823100009],[-166.82905025899996,53.43992747600008],[-166.86884518099995,53.47601959800012],[-166.8768204419999,53.481512762000065],[-166.89305579299995,53.47597890800013],[-166.9044897129999,53.44684479400017],[-166.91779537699992,53.43992747600008],[-166.9304093089999,53.44513580900015],[-166.93451900899993,53.455796617000104],[-166.93891354099995,53.46381256700015],[-166.95250403599988,53.461086330000064],[-166.96031653599988,53.451483466000084],[-166.9632055329999,53.439520575000145],[-166.96918697799993,53.42967357000005],[-166.98668372299989,53.426947333000086],[-166.9843643869999,53.43134186400006],[-166.9792374339999,53.44741445500013],[-167.0073949859999,53.45258209800015],[-167.06834876199989,53.42698802300008],[-167.09996497299989,53.41950104400008],[-167.12055416599992,53.41852448100003],[-167.13666744699987,53.41592031500012],[-167.2122289699999,53.38751862200009],[-167.24299068899984,53.38320547100001],[-167.27363033799986,53.37384674700014],[-167.29173743399988,53.371649481000176],[-167.29918372299989,53.365912177],[-167.3128555979999,53.33869049700009],[-167.32184811099992,53.33006419500002],[-167.39134680899994,53.344427802000084],[-167.40729732999995,53.34056224200007],[-167.4390356109999,53.325262762000094],[-167.45897376199986,53.32391998900012],[-167.4550268219999,53.31346263200014],[-167.45282955599993,53.30963776200012],[-167.46934973899985,53.30451080900012],[-167.4805395169999,53.29584381700012],[-167.50059973899985,53.27545807500003],[-167.50267493399986,53.27041250200001],[-167.50426184799989,53.26341380400011],[-167.5082494779999,53.25991445500013],[-167.52708899599992,53.27220286699999],[-167.53644771999993,53.27513255400011],[-167.55927486899986,53.27545807500003],[-167.5921117829999,53.28095123900006],[-167.60606848899994,53.28070709800012],[-167.6200658839999,53.272040106000034],[-167.6258031889999,53.26569245000009],[-167.6278783839999,53.262640692],[-167.6304825509999,53.26019928600006],[-167.66510982999986,53.241929429],[-167.67231197799993,53.26162344000012],[-167.69713294199988,53.270941473000086],[-167.75385494699995,53.27545807500003],[-167.78058834499996,53.28070709800012],[-167.80223548099994,53.289129950000174],[-167.80915279899995,53.29413483300011],[-167.81147213399993,53.298529364],[-167.81513424399986,53.30158112200009],[-167.8342992829999,53.303127346000124],[-167.84032141799992,53.30426666900017],[-167.8452042309999,53.30634186400008],[-167.8500463529999,53.30963776200012],[-167.71845455599993,53.381293036000145],[-167.70295162699992,53.3854027360001],[-167.67039954299986,53.385443427000084],[-167.6546524729999,53.38255442900005],[-167.64146887899994,53.375067450000174],[-167.63805091099994,53.37815989800008],[-167.59418697799987,53.37860748900006],[-167.5921117829999,53.3823102890001],[-167.59679114499988,53.39276764500009],[-167.57054602799988,53.39630768400015],[-167.51655025899993,53.38141510600012],[-167.4869278639999,53.378485419000086],[-167.49535071499986,53.385199286000145],[-167.51362057199992,53.40643952000012],[-167.51362057199992,53.412665106000176],[-167.5045873689999,53.41412995000006],[-167.49913489499988,53.41754791900014],[-167.4943741529999,53.422023830000015],[-167.47459876199989,53.43402741100014],[-167.45897376199986,53.433742580000015],[-167.4408666659999,53.43040599199999],[-167.40843665299988,53.41925690300015],[-167.3907364569999,53.41950104400008],[-167.3954565089999,53.42405833500014],[-167.40074622299989,53.430731512000094],[-167.40440833199992,53.433742580000015],[-167.37840735599994,53.43195221600002],[-167.3432104159999,53.418768622000165],[-167.32152258999992,53.416449286],[-167.33613033799992,53.44741445500013],[-167.31309973899994,53.44196198100009],[-167.30357825399994,53.445257880000135],[-167.30195064999992,53.45551178600006],[-167.30260169199988,53.4713402360001],[-167.2916153639999,53.47601959800012],[-167.2262670559999,53.461086330000064],[-167.21275794199985,53.46198151200015],[-167.16962643099995,53.470200914000074],[-167.15864010299987,53.47711823100015],[-167.16148841099994,53.48236725500006],[-167.16657467399995,53.497300522999986],[-167.16478430899988,53.49518463700018],[-167.17247473899988,53.51019928600003],[-167.17747962099992,53.51634349199999],[-167.1852921209999,53.52252838700015],[-167.1701554029999,53.52326080900018],[-167.10728919199988,53.51447174700002],[-167.04308020699992,53.51776764500006],[-166.9800512359999,53.52806224199999],[-166.96003170499995,53.53620026200009],[-166.9818822909999,53.54486725499999],[-167.00409908799995,53.54389069200003],[-167.0518692699999,53.53620026200009],[-167.0981339179999,53.539252020000085],[-167.1206762359999,53.54539622600008],[-167.1443578769999,53.55662669500008],[-167.1396378249999,53.559271552000055],[-167.13727779899992,53.561997789000124],[-167.13495846299986,53.56549713700012],[-167.1300756499999,53.5702985700001],[-167.15363521999996,53.581447658],[-167.1620580719999,53.60236237200017],[-167.15538489499994,53.622626044000086],[-167.13377844999994,53.63178131700006],[-167.09272213399993,53.628648179],[-167.08287512899992,53.62555573100012],[-167.0733536449999,53.61880117400007],[-167.05976314999987,53.60346100500011],[-167.04816646999996,53.59821198100003],[-167.0501602859999,53.60179271000011],[-167.05158443899987,53.602443752000156],[-167.0530899729999,53.60248444200014],[-167.05553137899994,53.604437567],[-167.04816646999996,53.61127350500011],[-167.05357825399992,53.62750885600015],[-167.03779049399995,53.62872955900018],[-166.9935196609999,53.61810944200011],[-167.0068253249999,53.637274481000084],[-167.0449112619999,53.652736721000124],[-167.06236731699988,53.666489976000136],[-167.06464596299995,53.682684637000094],[-167.05064856699985,53.695868231000034],[-167.02802486899992,53.70477936400008],[-166.9465225899999,53.71576569200011],[-166.91637122299986,53.71572500200013],[-166.8941544259999,53.70433177299999],[-166.8704320949999,53.673895575000024],[-166.86493893099995,53.657171942],[-166.86314856699985,53.63178131700006],[-166.85631262899986,53.63178131700006],[-166.8535863919999,53.64081452000009],[-166.8501684239999,53.64785390800016],[-166.84264075399992,53.65965403900013],[-166.83075924399986,53.65289948100017],[-166.80170650899987,53.63178131700006],[-166.82709713399993,53.690863348],[-166.82905025899996,53.70807526200012],[-166.78673255099986,53.69196198100006],[-166.76691646999993,53.690863348],[-166.74644934799989,53.700628973000114],[-166.75763912699986,53.699693101000044],[-166.7684220039999,53.70087311400009],[-166.77851314999992,53.70376211100002],[-166.78746497299989,53.70807526200012],[-166.76813717399986,53.71454498900012],[-166.7248022129999,53.714097398000106],[-166.70551510299995,53.721136786],[-166.7339981759999,53.72646719000006],[-166.80768795499992,53.72955963700004],[-166.88398189999995,53.755275783000094],[-166.89863033799986,53.756903387000115],[-166.9383031889999,53.76951732000002],[-166.96861731699988,53.77260976800009],[-166.9905492829999,53.767035223000065],[-167.0113012359999,53.75922272300009],[-167.03819739499988,53.755275783000094],[-167.10338294199988,53.803656317],[-167.10081946499986,53.80556875200015],[-167.09760494699992,53.811753648000106],[-167.0955297519999,53.81903717700014],[-167.09654700399986,53.82416413000006],[-167.1019994779999,53.825628973],[-167.1175430979999,53.823675848000065],[-167.1300756499999,53.824693101000136],[-167.14525305899988,53.822902736000124],[-167.15111243399994,53.82416413000006],[-167.15619869699995,53.829779364000146],[-167.15815182199992,53.84218984600007],[-167.16136633999986,53.848089911000116],[-167.1634008449999,53.85736725500005],[-167.15192623599995,53.86225006700012],[-167.13727779899992,53.86517975500006],[-167.1300756499999,53.868557033000066],[-167.12677975199983,53.875067450000174],[-167.10338294199988,53.90615469000006],[-167.08665930899994,53.920314846],[-167.04967200399992,53.94163646000005],[-167.03107662699992,53.95766836100015],[-167.02159583199992,53.96124909100003],[-166.98289954299986,53.95384349200004],[-166.97264563699994,53.95673248900006],[-166.9383031889999,53.975002346000124],[-166.9162084629999,53.979885158],[-166.89525305899994,53.98090241100009],[-166.87531490799995,53.97719961100013],[-166.85631262899986,53.967596747000144],[-166.83185787699992,53.982123114],[-166.77900143099995,54.00275299700003],[-166.75389563699986,54.01601797100015],[-166.74189205599993,54.00543854400008],[-166.74644934799989,53.994818427000055],[-166.7528783839999,53.984442450000145],[-166.74644934799989,53.975002346000124]]],[[[-165.25279700399994,54.07770416900017],[-165.24730383999992,54.06818268400017],[-165.2456762359999,54.05695221600017],[-165.26195227799994,54.06317780200014],[-165.27135169199985,54.064683335],[-165.28038489499986,54.06378815300008],[-165.28429114499988,54.06012604400014],[-165.29283606699988,54.04682038000011],[-165.2940567699999,54.043890692],[-165.30781002499992,54.04783763199999],[-165.3260391919999,54.066839911],[-165.33844967399992,54.07123444200006],[-165.3878067699999,54.07013580900003],[-165.4224340489999,54.07746002800003],[-165.46528072799987,54.07387929900015],[-165.4858292309999,54.07746002800003],[-165.37657630099991,54.09105052299999],[-165.26671301999994,54.09105052299999],[-165.2599584629999,54.085394598],[-165.25279700399994,54.07770416900017]]],[[[-164.93781490799995,54.125189520000085],[-164.9327286449999,54.11399974199999],[-164.93993079299995,54.09931061400009],[-164.95287024599986,54.085598049000154],[-164.9650772779999,54.07746002800003],[-164.97602291599992,54.07575104400003],[-165.05382239499988,54.07746002800003],[-165.0891820949999,54.07086823100015],[-165.1022436189999,54.07123444200006],[-165.10773678299992,54.07387929900015],[-165.11632239499994,54.08295319200006],[-165.12303626199989,54.084865627],[-165.12852942599991,54.083685614],[-165.1432592439999,54.07746002800003],[-165.20677649599992,54.085353908000016],[-165.2257787749999,54.09105052299999],[-165.21934973899988,54.101629950000024],[-165.21259518099995,54.10936107000005],[-165.20368404899992,54.1147321640001],[-165.19102942599994,54.11835358300006],[-165.18321692599994,54.11835358300006],[-165.1712540359999,54.11347077],[-165.16437740799992,54.112127997000115],[-165.15497799399986,54.11538320500016],[-165.14093990799995,54.129461981000084],[-165.13300533799986,54.13263580900015],[-165.12621008999994,54.13035716399999],[-165.12047278599988,54.12555573100009],[-165.1168920559999,54.120591539000046],[-165.1165258449999,54.11835358300006],[-165.1094457669999,54.11945221600011],[-165.09740149599992,54.12417226800012],[-165.09174557199992,54.125189520000085],[-165.07738196499992,54.12360260600015],[-165.06415768099987,54.11928945500016],[-165.05182857999995,54.112779039000074],[-165.04015051999988,54.104681708000115],[-165.02684485599994,54.11147695500016],[-164.98859615799986,54.12360260600015],[-164.98106848899994,54.13068268400012],[-164.9725235669999,54.125189520000085],[-164.96385657499988,54.13108958500011],[-164.95506751199994,54.13312409100014],[-164.94615637899992,54.13108958500011],[-164.93781490799995,54.125189520000085]]],[[[-165.87486731699988,54.17438385600009],[-165.85435950399994,54.16766998900006],[-165.83136959499996,54.171535549000154],[-165.81480872299989,54.18732330900009],[-165.79987545499995,54.17389557500012],[-165.75971432199992,54.163153387000094],[-165.7390844389999,54.153143622000115],[-165.7595108709999,54.144476630000106],[-165.8216446609999,54.13947174700017],[-165.8216446609999,54.13263580900015],[-165.8099259109999,54.13271719000015],[-165.78010006399992,54.125189520000085],[-165.7390844389999,54.125189520000085],[-165.6721085279999,54.12885163000014],[-165.65717525899996,54.125189520000085],[-165.66462154899995,54.11835358300006],[-165.67951412699986,54.09906647300012],[-165.69953365799986,54.08869049700003],[-165.7706192699999,54.07074616100009],[-165.78099524599992,54.07001373900005],[-165.79430091099994,54.07123444200006],[-165.82892818899992,54.08299388200005],[-165.83906002499987,54.084865627],[-165.85224361899992,54.07510000200007],[-165.8873184889999,54.03632233300006],[-165.90074622299989,54.03335195500013],[-165.90855872299989,54.04401276200015],[-165.91246497299989,54.053859768000095],[-165.91820227799985,54.060980536000145],[-165.93150794199985,54.06378815300008],[-165.9568985669999,54.060736395],[-165.96613521999996,54.06244538000003],[-165.9724828769999,54.07123444200006],[-165.98871822799993,54.05914948100015],[-166.02318274599986,54.04588450700013],[-166.0407608709999,54.03644440300003],[-166.07551021999996,54.06378815300008],[-166.06598873599995,54.077582098],[-166.08018958199986,54.09218984600012],[-166.12267005099994,54.11835358300006],[-166.10899817599991,54.13263580900015],[-166.1164444649999,54.13947174700017],[-166.1064346999999,54.149562893000144],[-166.0916641919999,54.171291408000016],[-166.08173580599993,54.18048737200009],[-166.07123775899993,54.18520742400009],[-166.03453528599994,54.19407786700005],[-165.97138424399992,54.219468492000075],[-165.94550533799995,54.22207265800015],[-165.9341527989999,54.22089264500012],[-165.91209876199989,54.21576569200012],[-165.87962805899988,54.21344635600015],[-165.87677975199995,54.20962148600013],[-165.88068600199995,54.202297268000116],[-165.88373775899993,54.190659898000135],[-165.87486731699988,54.17438385600009]]],[[[-165.51903235599994,54.27020905200011],[-165.52989661399994,54.260891018000095],[-165.54625403599994,54.252630927],[-165.5615942049999,54.24249909100005],[-165.55475826699987,54.235052802000055],[-165.54792232999995,54.239243882],[-165.54108639199993,54.24249909100005],[-165.54491126199994,54.22748444200003],[-165.5473119779999,54.22207265800015],[-165.44383704299995,54.20014069200015],[-165.41820227799988,54.20774974199999],[-165.40453040299994,54.19183991100006],[-165.42389889199993,54.18309153899999],[-165.45734615799992,54.17987702000012],[-165.4858292309999,54.18048737200009],[-165.4858292309999,54.17365143400015],[-165.47398841099988,54.165920315000065],[-165.47968502499992,54.16266510600012],[-165.5063370429999,54.159328518000095],[-165.52855383999992,54.14858633000007],[-165.53990637899992,54.145209052000055],[-165.55475826699987,54.14569733300014],[-165.54108639199993,54.13947174700017],[-165.55085201699987,54.12230052300004],[-165.5679418609999,54.112494208000115],[-165.5888158839999,54.110907294000086],[-165.60997473899988,54.11835358300006],[-165.62486731699994,54.13239166900003],[-165.6238907539999,54.145086981000176],[-165.61237545499995,54.15827057500003],[-165.5956925119999,54.17365143400015],[-165.63178463399993,54.18964264500006],[-165.62348385299995,54.20083242400007],[-165.59601803299992,54.213690497000115],[-165.57457434799989,54.235052802000055],[-165.60069739499994,54.24201080900015],[-165.68443762899986,54.235052802000055],[-165.67979895699995,54.248928127000156],[-165.67357337099986,54.26235586100013],[-165.6642553379999,54.272609768000066],[-165.65033932199995,54.27659739800004],[-165.63483639199993,54.27631256700003],[-165.6306860019999,54.279242255000135],[-165.62706458199995,54.29645416900014],[-165.62157141799992,54.29661692900011],[-165.61420650899993,54.292792059000085],[-165.59845943899995,54.28729889500006],[-165.59687252499992,54.28050364800004],[-165.59723873599995,54.27338288],[-165.5956925119999,54.269191799000154],[-165.58722896999993,54.26654694200006],[-165.58503170499986,54.26805247600011],[-165.58287512899986,54.272121486000074],[-165.57457434799989,54.27659739800004],[-165.5311986969999,54.29437897300012],[-165.51317298099988,54.297186591000084],[-165.49433346299995,54.296372789000074],[-165.49128170499995,54.28998444200015],[-165.50084387899994,54.283880927000055],[-165.51996822799993,54.283514716000134],[-165.51903235599994,54.27020905200011]]],[[[-162.4051407539999,54.39057038000008],[-162.4016007149999,54.38589101800015],[-162.39574133999994,54.38589101800015],[-162.3681127589999,54.392075914000124],[-162.3681127589999,54.38589101800015],[-162.41319739499988,54.371812242000104],[-162.43541419199988,54.37201569200006],[-162.45380611899992,54.382473049000126],[-162.4801733059999,54.40192291900014],[-162.48481197799993,54.40639883],[-162.4854223299999,54.41388580900018],[-162.48151607999986,54.419582424000154],[-162.47223873599995,54.42210521000008],[-162.45689856699988,54.42007070500012],[-162.40912838399993,54.40639883],[-162.40733801999988,54.39740631700009],[-162.4051407539999,54.39057038000008]]],[[[-162.62140865799992,54.45477936400003],[-162.61542721299992,54.454291083000115],[-162.6021215489999,54.45600006700011],[-162.5946752589999,54.45477936400003],[-162.59459387899992,54.45311107000001],[-162.5926000639999,54.4487165390001],[-162.58967037699986,54.444037177],[-162.58722896999993,54.44110748900009],[-162.58718827999994,54.44110748900009],[-162.54999752499992,54.42007070500012],[-162.54649817599994,54.414699611000074],[-162.54535885299993,54.4029808610001],[-162.54649817599994,54.39126211100001],[-162.54999752499992,54.38589101800015],[-162.65550696499992,54.392075914000124],[-162.6465551419999,54.385687567],[-162.63683020699995,54.381415106000084],[-162.6262100899999,54.37933991100006],[-162.61457271999987,54.37909577000012],[-162.61457271999987,54.37225983300003],[-162.6326798169999,54.37189362200009],[-162.64757239499986,54.37543366100009],[-162.67662512899994,54.38589101800015],[-162.7285863919999,54.39581940300015],[-162.75401770699995,54.40957265800007],[-162.78364010299987,54.416408596000096],[-162.7963761059999,54.423488674000154],[-162.84113521999996,54.461004950000174],[-162.82164466099988,54.46246979400003],[-162.82249915299988,54.47382233299999],[-162.82917232999995,54.48908112200017],[-162.82746334499993,54.50193919500002],[-162.81383216099988,54.504339911000145],[-162.7930802069999,54.50031159100017],[-162.75853430899988,54.48826732000008],[-162.73456783799992,54.48456452000012],[-162.6901342439999,54.471340236000074],[-162.6568090489999,54.46678294500013],[-162.62140865799992,54.45477936400003]]],[[[-159.52708899599992,54.759466864],[-159.54710852799988,54.753892319999984],[-159.56932532499994,54.75458405200011],[-159.58930416599992,54.75967031500014],[-159.59361731699994,54.76683177299999],[-159.5901993479999,54.775783596000124],[-159.59264075399994,54.7866071640001],[-159.59699459499996,54.79710521],[-159.60273189999992,54.805080471000124],[-159.60419674399986,54.81232330900015],[-159.5972794259999,54.82021719000012],[-159.58515377499987,54.824204820000105],[-159.5712784499999,54.82225169500008],[-159.5583389959999,54.81525299700008],[-159.54548092399986,54.8061384140001],[-159.52513587099986,54.79437897300012],[-159.5214737619999,54.79226308800009],[-159.5214737619999,54.792222398000106],[-159.5150854159999,54.786932684000035],[-159.51264400899996,54.778509833],[-159.51532955599993,54.76874420800006],[-159.52708899599992,54.759466864]]],[[[-133.5151667959999,54.78245677299999],[-133.52175859299987,54.766750393],[-133.52924557199992,54.76833730700004],[-133.54397538999993,54.77944570500007],[-133.54609127499992,54.785020249000084],[-133.5437719389999,54.7940534530001],[-133.54356848899994,54.799587307000124],[-133.54572506399992,54.801825262000094],[-133.54503333199997,54.80544668200015],[-133.54515540299985,54.81602610900002],[-133.54352779899995,54.82229238500015],[-133.54474850199983,54.8316917990001],[-133.53783118399994,54.83498769700013],[-133.52981523299988,54.83104075700014],[-133.52057857999984,54.820257880000106],[-133.52033443899987,54.81419505400014],[-133.52033443899987,54.81411367400015],[-133.52013098899994,54.80821360900001],[-133.5157771479999,54.79686107000004],[-133.5151667959999,54.78245677299999]]],[[[-132.7364395819999,54.92031484600007],[-132.72590084499984,54.91486237200003],[-132.71524003799993,54.91522858300005],[-132.70498613199987,54.919867255000085],[-132.6954646479999,54.92772044500007],[-132.68553626199989,54.92112864799999],[-132.6743057929999,54.91681549700009],[-132.66510982999992,54.91193268400012],[-132.6613663399999,54.90355052300005],[-132.65583248599987,54.90216705900017],[-132.64317786399988,54.90473053600009],[-132.6293025379999,54.903998114000146],[-132.62035071499986,54.893011786],[-132.61534583199995,54.882473049000126],[-132.61693274599986,54.87616608299999],[-132.62376868399988,54.87482330900009],[-132.63463294199997,54.87933991100006],[-132.63556881399984,54.867499091000084],[-132.6306860019999,54.85626862200009],[-132.62857011599996,54.84784577000014],[-132.63776607999984,54.844549872000115],[-132.6517634759999,54.846380927],[-132.66323808499993,54.849310614],[-132.67491614499994,54.849839585],[-132.68927975199992,54.844549872000115],[-132.6756078769999,54.837388414000074],[-132.66930091099994,54.82855866100003],[-132.66266842399997,54.82103099200005],[-132.64769446499994,54.81785716399999],[-132.63711503799988,54.81403229400017],[-132.62637285099987,54.80475495000012],[-132.61758378799993,54.793443101000136],[-132.6129044259999,54.783758856000176],[-132.61620032499994,54.760199286000116],[-132.63605709499984,54.757473049000154],[-132.6616104809999,54.76788971600014],[-132.68179277299996,54.783758856000176],[-132.68468176999988,54.78876373900011],[-132.68927975199992,54.801825262000094],[-132.69237219999988,54.80731842700011],[-132.69835364499994,54.81167226800003],[-132.71349036399994,54.817084052000055],[-132.71971594999988,54.821275132],[-132.72256425699993,54.82656484600007],[-132.7274063789999,54.84039948100015],[-132.73021399599995,54.844549872000115],[-132.7363988919999,54.84731679900007],[-132.74990800699987,54.84918854400003],[-132.7575577459999,54.85199616100009],[-132.7719620429999,54.86225006700003],[-132.77692623599984,54.870062567],[-132.7797745429999,54.87824127800012],[-132.78823808499993,54.88959381700008],[-132.79405676999997,54.90192291900003],[-132.7888077459999,54.91103750200004],[-132.78237870999988,54.918890692],[-132.7848201159999,54.92772044500007],[-132.77806555899988,54.93455638200008],[-132.77301998599984,54.930243231000176],[-132.7575577459999,54.92031484600007],[-132.75055904899992,54.93109772300009],[-132.7381485669999,54.93537018400009],[-132.7235001289999,54.93724192900005],[-132.7097875639999,54.94082265800013],[-132.71373450399994,54.93305084800012],[-132.71979732999986,54.92694733300014],[-132.72744706899988,54.92267487200003],[-132.7364395819999,54.92031484600007]]],[[[-159.28453528599985,54.94082265800013],[-159.26899166599995,54.92963288000011],[-159.2476700509999,54.93016185099999],[-159.2268774079999,54.933579820000105],[-159.21259518099987,54.931138414000074],[-159.2088110019999,54.91852448100009],[-159.2194718089999,54.90680573100009],[-159.2464086579999,54.88959381700008],[-159.28661048099985,54.87173086100002],[-159.31781979099995,54.884711005000106],[-159.3261612619999,54.90786367400015],[-159.29820716099988,54.92031484600007],[-159.30695553299995,54.92963288000011],[-159.31773841099985,54.93378327000006],[-159.32905025899993,54.934759833000115],[-159.33918209499987,54.93455638200008],[-159.3222550119999,54.93838125200009],[-159.30699622299994,54.94623444200009],[-159.29234778599994,54.95172760600009],[-159.27708899599986,54.94818756700011],[-159.28453528599985,54.94082265800013]]],[[[-162.2787572909999,54.85199616100009],[-162.30903072799993,54.837347723000065],[-162.34215247299994,54.83954498900005],[-162.37437903599988,54.85309479400003],[-162.4016007149999,54.872503973000114],[-162.42418372299989,54.89793528900004],[-162.43415279899992,54.91437409100014],[-162.43639075399994,54.92772044500007],[-162.42670650899987,54.938666083000115],[-162.37494869699995,54.954413153000175],[-162.34434973899994,54.96979401200012],[-162.3025610019999,54.98566315300015],[-162.26268469999994,54.98920319200012],[-162.23778235599988,54.96808502800012],[-162.2333878249999,54.95697663],[-162.23041744699992,54.93915436400012],[-162.22931881399995,54.92059967700011],[-162.2309464179999,54.90729401200017],[-162.23900305899988,54.89398834800006],[-162.2787572909999,54.85199616100009]]],[[[-131.24156653599994,54.974595445000105],[-131.2379044259999,54.96112702000011],[-131.23717200399997,54.94953034100011],[-131.24372311099987,54.94082265800013],[-131.24372311099987,54.93455638200008],[-131.21165930899988,54.92723216399999],[-131.19749915299985,54.92031484600007],[-131.1946915359999,54.90729401200017],[-131.20319576699984,54.900702216000106],[-131.2391658189999,54.88300202],[-131.25023352799982,54.87933991100006],[-131.28571529899995,54.881781317],[-131.29979407499985,54.879217841000084],[-131.31476803299992,54.869452216000134],[-131.33116614499994,54.86123281500015],[-131.35008704299995,54.86090729400002],[-131.36945553299986,54.865668036000116],[-131.38707434799994,54.872503973000114],[-131.38756262899994,54.88422272300012],[-131.42642167899984,54.90582916900003],[-131.44172115799984,54.92031484600007],[-131.46816972599993,54.91242096600011],[-131.48216712099986,54.92560455900014],[-131.47838294199994,54.944728908000044],[-131.4515681629999,54.954413153000175],[-131.4302465489999,54.95600006700011],[-131.37149003799988,54.96698639500006],[-131.3522843089999,54.975531317],[-131.33018958199992,54.96137116100009],[-131.26382402299993,54.996893622000144],[-131.23623613199987,54.99542877800009],[-131.24372311099987,54.98920319200012],[-131.24156653599994,54.974595445000105]]],[[[-163.75654049399992,55.06037018400015],[-163.68175208199992,55.044378973000065],[-163.5716446609999,55.057033596000124],[-163.52570553299995,55.0438500020001],[-163.53913326699993,55.04344310099999],[-163.5457250639999,55.037583726000136],[-163.54588782499988,55.028021552000055],[-163.53998775899993,55.016546942],[-163.53123938699986,55.009711005],[-163.50849361899992,55.002020575000145],[-163.4796036449999,54.98493073100012],[-163.46141516799992,54.97077057500009],[-163.44481360599985,54.95368073100015],[-163.43073482999992,54.93455638200008],[-163.42316646999987,54.912014065],[-163.42113196499994,54.86591217700005],[-163.41270911399988,54.84833405200014],[-163.37303626199989,54.79266998900011],[-163.3543595039999,54.77692291900014],[-163.3288468089999,54.765692450000145],[-163.3033341139999,54.761786200000145],[-163.23310299399995,54.76349518400014],[-163.2233780589999,54.76642487200009],[-163.21605383999992,54.771918036000116],[-163.20763098899985,54.78034088700015],[-163.1988419259999,54.783880927000055],[-163.18834387899992,54.78229401200012],[-163.1771134109999,54.77879466400013],[-163.16669674399992,54.77692291900014],[-163.14415442599994,54.77033112200009],[-163.1288549469999,54.75413646000014],[-163.10798092399992,54.71482982000013],[-163.0996801419999,54.70473867400006],[-163.09080969999988,54.698472398000106],[-163.0820206369999,54.69367096600002],[-163.07384192599991,54.687567450000024],[-163.06773841099994,54.68357982000007],[-163.05610104099992,54.67389557500009],[-163.05064856699988,54.664129950000145],[-163.06330318899995,54.659613348],[-163.15550696499992,54.66620514500009],[-163.17003333199995,54.67389557500009],[-163.15485592399986,54.67568594000009],[-163.11481686099992,54.687567450000024],[-163.1270645819999,54.69550202],[-163.14012610599988,54.6998558610001],[-163.1543676419999,54.70140208500013],[-163.17003333199995,54.701239325000174],[-163.18525143099993,54.69749583500013],[-163.21580969999982,54.68329498900012],[-163.22809811099992,54.68008047100007],[-163.23847408799992,54.68305084800009],[-163.24775143099993,54.689886786],[-163.2619115879999,54.704657294000086],[-163.2722875639999,54.70913320500013],[-163.29918372299989,54.70990631700006],[-163.31346594999985,54.71482982000013],[-163.34776770699992,54.75226471600017],[-163.36949622299989,54.76455312700004],[-163.4026993479999,54.74713776200014],[-163.41755123599987,54.74176666900008],[-163.43110104099992,54.73501211100016],[-163.4369604159999,54.72508372600005],[-163.42955481699988,54.69212474199999],[-163.43073482999992,54.68008047100007],[-163.44916744699995,54.663519598],[-163.50666256399995,54.6557477890001],[-163.51886959499993,54.6363792990001],[-163.53388424399995,54.635321356000034],[-163.6225479809999,54.61180247600008],[-163.67808997299989,54.61635976800004],[-163.7898656889999,54.63792552300013],[-164.13267981699988,54.62323639500011],[-164.18305416599992,54.61025625200013],[-164.21837317599994,54.598130601000136],[-164.3297013009999,54.5348167990001],[-164.3344620429999,54.52680084800015],[-164.33283443899995,54.51557038000014],[-164.33006751199986,54.509588934000035],[-164.32953854099992,54.50250885600015],[-164.3344620429999,54.48826732000008],[-164.36131751199986,54.458482164000046],[-164.4055883449999,54.43598053600006],[-164.4571020169999,54.42104726800004],[-164.50580807199992,54.413804429],[-164.5733129549999,54.41339752800009],[-164.6087133449999,54.40892161700013],[-164.63304602799988,54.39581940300015],[-164.65257727799985,54.39199453300013],[-164.80231686099987,54.40403880400005],[-164.82599850199992,54.41132233300006],[-164.84528561099995,54.423488674000154],[-164.8730362619999,54.45722077000015],[-164.88914954299992,54.47093333500008],[-164.90986080599993,54.475287177000055],[-164.9042862619999,54.49664948100012],[-164.9125463529999,54.50873444200012],[-164.92475338399993,54.516913153000026],[-164.93097896999993,54.52680084800015],[-164.9336645169999,54.542954820000105],[-164.94041907499994,54.558661200000174],[-164.95824133999992,54.58515045800014],[-164.93830318899992,54.59886302300008],[-164.90925045499995,54.61212799700009],[-164.87909908799992,54.62213776200018],[-164.79682369699987,54.63446686400011],[-164.7392065089999,54.652777411],[-164.7006729809999,54.678290106000176],[-164.56952877499984,54.83698151200014],[-164.55760657499994,54.844549872000115],[-164.54735266799992,54.88275788000006],[-164.5418188139999,54.88743724199999],[-164.47752844999988,54.918890692],[-164.4531957669999,54.924994208],[-164.3996475899999,54.92772044500007],[-164.37816321499986,54.922837632],[-164.33600826699993,54.90005117400007],[-164.3139542309999,54.893011786],[-164.2250870429999,54.89472077],[-164.21296139199987,54.8998884140001],[-164.21092688699986,54.908433335000105],[-164.22459876199989,54.92031484600007],[-164.19066321499994,54.94212474200013],[-164.15684973899988,54.95697663],[-164.11937415299985,54.965399481000034],[-164.05072994699992,54.971136786000116],[-164.02643795499992,54.97833893400006],[-163.9856664699999,54.99542877800009],[-163.93700110599983,55.02912018400009],[-163.91673743399994,55.036363023000106],[-163.8239639959999,55.0438500020001],[-163.80321204299992,55.04804108300011],[-163.78058834499996,55.05585358300003],[-163.75654049399992,55.06037018400015]]],[[[-159.35505123599992,55.037298895],[-159.36322994699992,55.036322333000115],[-159.37360592399995,55.036363023000106],[-159.38316809799994,55.034369208000086],[-159.3913468089999,55.029852606000034],[-159.39472408799995,55.02537669500008],[-159.39008541599992,55.02338288000011],[-159.37922115799995,55.01707591399999],[-159.36322994699992,55.002671617000104],[-159.33918209499987,54.975531317],[-159.40107174399986,54.95034414300012],[-159.43431555899986,54.941839911],[-159.46271725199992,54.94818756700011],[-159.4514867829999,54.956488348],[-159.45221920499995,54.96600983299999],[-159.4563695949999,54.97500234600003],[-159.45527096299992,54.98175690300015],[-159.44566809799989,54.985052802],[-159.42145748599995,54.98187897300012],[-159.40807044199988,54.98175690300015],[-159.4130753249999,54.99184804900004],[-159.4247940749999,55.03021881700015],[-159.4390763009999,55.0287132830001],[-159.48314368399988,55.016546942],[-159.4598282539999,55.038153387000094],[-159.45429439999995,55.04975006700012],[-159.46271725199992,55.058050848],[-159.46271725199992,55.06427643400015],[-159.4441625639999,55.060980536000116],[-159.36449133999994,55.05756256700003],[-159.35448157499985,55.054754950000145],[-159.34540768099993,55.05068594],[-159.3491104809999,55.041449286000145],[-159.35505123599992,55.037298895]]],[[[-131.18999231899994,55.04833726000011],[-131.2162002899999,55.04802402200012],[-131.25489452899987,55.06923656200003],[-131.24414837899988,55.092743682],[-131.20397197099993,55.109932967000084],[-131.18914990999986,55.10343145700012],[-131.18807945899994,55.07507419700015],[-131.18999231899994,55.04833726000011]]],[[[-161.73066158799995,55.16054922100007],[-161.73021399599986,55.15591054900015],[-161.73163814999992,55.15448639500009],[-161.7344457669999,55.15436432500012],[-161.73814856699994,55.15371328300016],[-161.7131241529999,55.143988348],[-161.66083736899992,55.130682684000085],[-161.64130611899992,55.11953359600007],[-161.65278072799987,55.10626862200006],[-161.68578040299994,55.09039948100012],[-161.69652258999986,55.07111237200017],[-161.71186275899993,55.079006252000156],[-161.72472083199995,55.07428620000005],[-161.73725338399993,55.06476471600014],[-161.7511693999999,55.058050848],[-161.77049719999994,55.05902741100008],[-161.78453528599988,55.06679922100006],[-161.7974340489999,55.077053127],[-161.81322180899994,55.085394598000065],[-161.8068741529999,55.095648505],[-161.7753800119999,55.122626044000135],[-161.77167721299986,55.13434479400014],[-161.7831925119999,55.144924221000096],[-161.81322180899994,55.16054922100007],[-161.80903072799993,55.14500560100008],[-161.81220455599987,55.1297875020001],[-161.82628333199995,55.099066473],[-161.8403214179999,55.11176178600006],[-161.87193762899986,55.121405341000056],[-161.89313717399992,55.13393789300012],[-161.9006241529999,55.13349030200013],[-161.90607662699986,55.13458893400018],[-161.90819251199986,55.14345937700013],[-161.90607662699986,55.15485260600009],[-161.9001358709999,55.15802643400015],[-161.8916723299999,55.15814850500014],[-161.84382076699987,55.17133209800009],[-161.73066158799995,55.16054922100007]]],[[[-132.79157467399995,55.17308177299999],[-132.74160722599993,55.149115302000105],[-132.72276770699995,55.13320547100001],[-132.6682022779999,55.05068594],[-132.68268795499984,55.034369208000086],[-132.7507218089999,54.99542877800009],[-132.75869706899994,55.00836823100009],[-132.76817786399994,55.018744208],[-132.79165605399993,55.036363023000106],[-132.79157467399995,55.013617255000085],[-132.8155004549999,55.01569245000009],[-132.87364661399994,55.036363023000106],[-132.86164303299984,55.04547760600012],[-132.8322647779999,55.04881419500013],[-132.8264867829999,55.054388739000146],[-132.82339433499988,55.06586334800009],[-132.81607011599988,55.07485586100002],[-132.80703691299996,55.081284898000106],[-132.7991430329999,55.085394598000065],[-132.81065833199995,55.090277411000145],[-132.8272192049999,55.09463125200012],[-132.8565567699999,55.099066473],[-132.86180579299992,55.104803778000175],[-132.86538652299987,55.11782461100016],[-132.8674210279999,55.13165924700014],[-132.86685136599993,55.14642975500014],[-132.8692113919999,55.153998114],[-132.8674210279999,55.16054922100007],[-132.8631078769999,55.162054755000106],[-132.85594641799995,55.16156647300014],[-132.84927324099985,55.16327545800014],[-132.84268144399994,55.179144598000065],[-132.83385169199994,55.18646881700009],[-132.82266191299993,55.190497137000065],[-132.81216386599988,55.18842194200012],[-132.79157467399995,55.17308177299999]]],[[[-161.35435950399994,55.22150299700017],[-161.3403214179999,55.218980210000055],[-161.3382055329999,55.21405670799999],[-161.34150143099993,55.206773179],[-161.3382055329999,55.19790273600013],[-161.33356686099995,55.19147370000003],[-161.33149166599992,55.18805573100011],[-161.33018958199995,55.182033596],[-161.33075924399992,55.170355536000024],[-161.34186764199993,55.162746486000074],[-161.36046301999994,55.163031317],[-161.36982174399986,55.16535065300015],[-161.42218990799995,55.18545156500004],[-161.4396866529999,55.197333075000145],[-161.43744869699992,55.20490143400012],[-161.42731686099992,55.21369049700017],[-161.41144771999993,55.21946849200004],[-161.3722631499999,55.21914297100003],[-161.35435950399994,55.22150299700017]]],[[[-159.5241593089999,55.11953359600007],[-159.52269446499992,55.078802802],[-159.5241593089999,55.07111237200017],[-159.4944555329999,55.06313711100002],[-159.48997962099992,55.058050848],[-159.49364173099985,55.047593492000104],[-159.50446529899995,55.0424665390001],[-159.51740475199995,55.042425848000036],[-159.52753658799992,55.047267971000096],[-159.54999752499992,55.07379791900014],[-159.56297766799992,55.085435289000074],[-159.57872473899988,55.092230536],[-159.58226477799994,55.08161041900014],[-159.58368893099993,55.070868231000034],[-159.58263098899985,55.06049225500014],[-159.57872473899988,55.05068594],[-159.59394283799995,55.05072663],[-159.6201065749999,55.057033596000124],[-159.63337154899992,55.058050848],[-159.63971920499995,55.053859768000066],[-159.64366614499994,55.04661692900005],[-159.6477758449999,55.04328034100003],[-159.65448971299992,55.05068594],[-159.65925045499995,55.065130927000055],[-159.65436764199995,55.073391018000144],[-159.63337154899992,55.085394598000065],[-159.62714596299986,55.08763255400005],[-159.62165279899995,55.086371161000145],[-159.61689205599993,55.086371161000145],[-159.61290442599983,55.092230536],[-159.61164303299995,55.098944403000026],[-159.61327063699986,55.102972723],[-159.6174210279999,55.104803778000175],[-159.6234024729999,55.10529205900014],[-159.64537512899994,55.11269765800016],[-159.65038001199989,55.1263695330001],[-159.64024817599994,55.13393789300012],[-159.59260006399995,55.11017487200002],[-159.57713782499994,55.11200592700011],[-159.5772598949999,55.12173086100016],[-159.59984290299988,55.13320547100001],[-159.58576412699992,55.14093659100003],[-159.55138098899988,55.14215729400003],[-159.54462643099995,55.15029531500015],[-159.5526016919999,55.15892161700005],[-159.59178626199994,55.16376373900012],[-159.60606848899994,55.167914130000085],[-159.5825089179999,55.17715078300013],[-159.58417721299992,55.193182684000035],[-159.58922278599994,55.208400783000016],[-159.57567298099988,55.21515534100014],[-159.5622452459999,55.21548086100015],[-159.55711829299986,55.217027085000105],[-159.5534561839999,55.22134023600002],[-159.54462643099995,55.22939687700013],[-159.54076087099995,55.237616278000054],[-159.5392553379999,55.24713776200003],[-159.5336401029999,55.25104401200003],[-159.51793372299994,55.24241771000014],[-159.5209854809999,55.226385809000035],[-159.53026282499988,55.216620184000085],[-159.54010982999986,55.208685614000146],[-159.54462643099995,55.19806549700009],[-159.5383194649999,55.18353913000005],[-159.5246475899999,55.17617422100007],[-159.51154537699992,55.17291901200012],[-159.50706946499994,55.17108795800014],[-159.51219641799986,55.161322333],[-159.5241593089999,55.11953359600007]]],[[[-133.06224524599992,55.18382396],[-133.06541907499988,55.15029531500015],[-133.0558975899999,55.144110419000086],[-133.01113847599993,55.1323102890001],[-132.9971410799999,55.12571849200004],[-132.9948624339999,55.11928945500013],[-132.9930720689999,55.09979889500012],[-132.99087480399993,55.092230536],[-132.95616614499994,55.06427643400015],[-132.98485266799992,55.075995184000064],[-133.01935787699983,55.09723541900003],[-133.0548396479999,55.10895416900002],[-133.08653723899988,55.092230536],[-132.9971410799999,55.06427643400015],[-132.9971410799999,55.058050848],[-133.03258216099997,55.0502790390001],[-133.04552161399988,55.05068594],[-133.04552161399988,55.0438500020001],[-133.01406816299993,55.03457265800013],[-132.98306230399993,55.032049872000115],[-132.95759029899992,55.02334219000012],[-132.94249426999994,54.99542877800009],[-132.94176184799989,54.954413153000175],[-132.94249426999994,54.94818756700011],[-132.93276933499988,54.94550202000015],[-132.90664628799993,54.95136139500009],[-132.89411373599992,54.94818756700011],[-132.9015193349999,54.94082265800013],[-132.89395097599996,54.93915436400012],[-132.89110266799992,54.937567450000174],[-132.8872777989999,54.93455638200008],[-132.8924454419999,54.929510809000064],[-132.9015193349999,54.91351959800014],[-132.8604630199999,54.900336005],[-132.84382076699987,54.889105536],[-132.83946692599994,54.872503973000114],[-132.8245743479999,54.87518952000012],[-132.81501217399992,54.86758047100007],[-132.81436113199987,54.85545482],[-132.8264867829999,54.844549872000115],[-132.8128149079998,54.83999258000016],[-132.78453528599988,54.83685944200009],[-132.77122962099986,54.83152903900013],[-132.76260331899994,54.824448960000055],[-132.75869706899994,54.81818268400012],[-132.7559301419999,54.81159088700004],[-132.7507218089999,54.80365631700006],[-132.72248287699983,54.776556708000136],[-132.7252091139999,54.76740143400014],[-132.7507218089999,54.75641510600009],[-132.7438858709999,54.74900950700011],[-132.7510880199999,54.74701569200009],[-132.75381425699985,54.74542877800015],[-132.7575577459999,54.7421735700001],[-132.70543372299989,54.728827216000084],[-132.68830318899984,54.71796295799999],[-132.70295162699986,54.701239325000174],[-132.6712133449999,54.677313544000114],[-132.68687903599988,54.67397695500007],[-132.72427324099993,54.67743561400009],[-132.7575577459999,54.67389557500009],[-132.76821855399993,54.69301992400007],[-132.79377193899984,54.698065497000115],[-132.84288489499997,54.693793036],[-132.84357662699992,54.69830963700015],[-132.85293535099993,54.719142971000124],[-132.8635961579999,54.73452383000007],[-132.86384029899992,54.74160390800012],[-132.8561905589999,54.74469635600012],[-132.83946692599994,54.7421735700001],[-132.93805904899995,54.78774648600015],[-132.95616614499994,54.80365631700006],[-132.94351152299987,54.80707428600008],[-132.92560787699983,54.81533437700007],[-132.91100012899992,54.82640208500011],[-132.90835527299993,54.838324286000145],[-132.92170162699983,54.84520091400007],[-132.94225012899997,54.842027085],[-132.98037675699993,54.83152903900013],[-132.9987686839999,54.83795807500003],[-133.0070694649999,54.86611562700001],[-133.02135169199997,54.872503973000114],[-133.03709876199989,54.87738678600003],[-133.04914303299984,54.88890208500014],[-133.0515030589999,54.9024925800001],[-133.0380753249999,54.91351959800014],[-133.05329342399997,54.91779205900015],[-133.0687149729999,54.91974518400009],[-133.1007380849999,54.92031484600007],[-133.1007380849999,54.92772044500007],[-133.07583574099996,54.932196356000034],[-133.06371008999986,54.935736395],[-133.05858313699986,54.94082265800013],[-133.06456458199995,54.94708893400018],[-133.07835852799988,54.949286200000174],[-133.10700436099984,54.94818756700011],[-133.13280188699986,54.94334544500005],[-133.13906816299993,54.94525788],[-133.14793860599988,54.954413153000175],[-133.14419511599993,54.955511786000116],[-133.14126542899993,54.963080145000085],[-133.1434626939999,54.97308991100006],[-133.15477454299992,54.98175690300015],[-133.1348363919999,54.997503973],[-133.1534724599999,55.02118561400012],[-133.20323645699997,55.058050848],[-133.1992895169999,55.06525299700003],[-133.20372473899997,55.07514069200015],[-133.2112930979999,55.08681875200013],[-133.21686764199993,55.099066473],[-133.16836503799993,55.09638092700011],[-133.1206762359999,55.099066473],[-133.13931230399987,55.11566803600006],[-133.18936113199985,55.12173086100016],[-133.20323645699997,55.13320547100001],[-133.18211829299986,55.13320547100001],[-133.21686764199993,55.15371328300016],[-133.20579993399988,55.15582916900017],[-133.18211829299986,55.15322500200007],[-133.16844641799992,55.15371328300016],[-133.1776423819999,55.16429271000011],[-133.1870011059999,55.17202383000004],[-133.19920813699989,55.17560455900009],[-133.21686764199993,55.17413971600003],[-133.21686764199993,55.18097565300014],[-133.15477454299992,55.19464752800009],[-133.1888728509999,55.213771877000156],[-133.1939998039999,55.222235419000114],[-133.18211829299986,55.235581773000106],[-133.16612708199995,55.24310944200006],[-133.1434626939999,55.248846747000144],[-133.12140865799992,55.25128815300017],[-133.10700436099984,55.248683986000074],[-133.09654700399994,55.233099677],[-133.10220292899996,55.22028229400014],[-133.1042374339999,55.211574611000074],[-133.08283443899984,55.20831940300003],[-133.06676184799994,55.20091380400014],[-133.06224524599992,55.18382396]]],[[[-161.56407630099991,55.20791250200001],[-161.57408606699988,55.20701732000013],[-161.5926407539999,55.20750560100011],[-161.6371964179999,55.19354889500015],[-161.64533443899987,55.194525458000115],[-161.66417395699995,55.19867584800015],[-161.6768692699999,55.20018138200011],[-161.6917211579999,55.211615302000055],[-161.68333899599992,55.230902411],[-161.65888424399986,55.24237702000015],[-161.61241614499994,55.24510325700011],[-161.55903072799984,55.25446198100006],[-161.54857337099992,55.25283437700004],[-161.54401607999995,55.240627346000146],[-161.55744381399995,55.215765692],[-161.56407630099991,55.20791250200001]]],[[[-131.3522843089999,55.122626044000135],[-131.35558020699995,55.11481354400014],[-131.36192786399988,55.10618724200007],[-131.36611894399994,55.097398179],[-131.3631892569999,55.08881256700009],[-131.34878495999993,55.07794830900009],[-131.3450821609999,55.07099030200003],[-131.3455297519999,55.058050848],[-131.35704505099994,55.03253815300009],[-131.3780004549999,55.017889716000084],[-131.4042862619999,55.01129791900003],[-131.47183183499996,55.00482819200012],[-131.4795629549999,55.00629303600009],[-131.48534094999994,55.01703522300009],[-131.48444576699984,55.02610911699999],[-131.48176021999987,55.0346540390001],[-131.48265540299982,55.0438500020001],[-131.4937638009999,55.057277736000074],[-131.51374264199987,55.074164130000085],[-131.53449459499987,55.087103583000086],[-131.54784094999985,55.08881256700009],[-131.5497940749999,55.076361395000056],[-131.53669186099987,55.064439195000105],[-131.5249731109999,55.04999420800006],[-131.5311173169999,55.03021881700015],[-131.53929602799985,55.022609768],[-131.55020097599993,55.01471588700004],[-131.5720108709999,55.002875067000055],[-131.57526607999984,55.000433661000116],[-131.57811438699983,54.997503973],[-131.58299719999994,54.9953473980001],[-131.59251868399994,54.99542877800009],[-131.5989884109999,54.99819570500016],[-131.60334225199983,55.00307851800012],[-131.60655676999988,55.00771719000014],[-131.60960852799988,55.009711005],[-131.62450110599994,55.01740143400009],[-131.61839758999994,55.035223700000174],[-131.5810440749999,55.09007396],[-131.58372962099986,55.095770575000174],[-131.59935462099995,55.099066473],[-131.58287512899994,55.125555731000176],[-131.5642797519999,55.12628815300012],[-131.5442602199999,55.1185570330001],[-131.5235896479999,55.11953359600007],[-131.51724199099993,55.134182033000066],[-131.53148352799985,55.151760158],[-131.55394446499983,55.166896877],[-131.5720108709999,55.17413971600003],[-131.5681860019999,55.17739492400007],[-131.56191972599993,55.185126044000086],[-131.55842037699983,55.18842194200012],[-131.57217363199993,55.19684479400017],[-131.58169511599993,55.20628489799999],[-131.58653723899994,55.21865469000012],[-131.58633378799996,55.235581773000106],[-131.58128821499992,55.253363348],[-131.57298743399986,55.26048411700005],[-131.56086178299986,55.26382070500007],[-131.54409745999993,55.270412502000156],[-131.5515844389999,55.276556708000115],[-131.5312393869999,55.27423737200017],[-131.5035701159999,55.26479726800015],[-131.47923743399986,55.252630927000084],[-131.45128333199992,55.22378164300015],[-131.3955785799999,55.215399481000176],[-131.3727921209999,55.20148346600011],[-131.3769425119999,55.1828473980001],[-131.3691300119999,55.163723049000126],[-131.35798092399992,55.143703518000066],[-131.3522843089999,55.122626044000135]]],[[[-159.92198645699995,55.22190989799999],[-159.90440833199986,55.207464911000116],[-159.91694088399987,55.156927802000105],[-159.90147864499988,55.140082098000036],[-159.88695227799994,55.149115302000105],[-159.8751114569999,55.172674872000165],[-159.85753333199995,55.190252997000115],[-159.82579505099986,55.18097565300014],[-159.83287512899994,55.17161692900011],[-159.83930416599986,55.14516836100013],[-159.84626217399995,55.13320547100001],[-159.84825598899988,55.134426174000126],[-159.87421627499987,55.12571849200004],[-159.87653561099995,55.12079498900009],[-159.87523352799994,55.11505768400009],[-159.87486731699994,55.10956452000009],[-159.8797501289999,55.10529205900014],[-159.8974096339999,55.10488515800016],[-159.9092504549999,55.11481354400014],[-159.92015540299985,55.12702057500003],[-159.9350072909999,55.13320547100001],[-159.94945227799988,55.128892320000105],[-159.9678848949999,55.10675690300003],[-159.98285885299993,55.099066473],[-159.9558813139999,55.08148834800006],[-159.94611568899995,55.06964752800012],[-159.95954342399995,55.06427643400015],[-160.01264400899993,55.07135651200012],[-160.03123938699994,55.07111237200017],[-160.01728268099987,55.0528832050001],[-160.01703854099992,55.04531484600015],[-160.04552161399994,55.03021881700015],[-160.0836889309999,54.99583567899999],[-160.12983150899993,54.965969143],[-160.1553848949999,54.94082265800013],[-160.18329830599995,54.918931382],[-160.19635982999995,54.90521881700006],[-160.2084447909999,54.87384674700003],[-160.22272701699993,54.876125393],[-160.2370499339999,54.88857656500012],[-160.24351966099994,54.90355052300005],[-160.24022376199986,54.92706940300012],[-160.2302953769999,54.93447500200009],[-160.21332760299993,54.93764883000016],[-160.18891354099992,54.94818756700011],[-160.14452063699989,55.00629303600009],[-160.13068600199995,55.01569245000009],[-160.11481686099987,55.02383047100004],[-160.10081946499992,55.034247137000094],[-160.09272213399993,55.05068594],[-160.17463131399995,55.058050848],[-160.17463131399995,55.06427643400015],[-160.16197669199988,55.069037177000055],[-160.1485489569999,55.07099030200003],[-160.1199845039999,55.07111237200017],[-160.12519283799992,55.082464911000145],[-160.1341446609999,55.091253973000036],[-160.14561926999988,55.09699127800009],[-160.17393958199992,55.10321686400014],[-160.1891983709999,55.11237213700004],[-160.1948136059999,55.12152741100003],[-160.18175208199992,55.12571849200004],[-160.1529027989999,55.121649481000176],[-160.1006567049999,55.103420315],[-160.07221432199995,55.099066473],[-160.08409583199992,55.11530182500014],[-160.11347408799992,55.1393089860001],[-160.1274307929999,55.15371328300016],[-160.1105850899999,55.16083405200011],[-160.09430904899995,55.156927802000105],[-160.0799047519999,55.147040106000084],[-160.06879635299995,55.13666413000003],[-160.06407630099994,55.12885163000011],[-160.06358801999988,55.123521226000044],[-160.06065833199995,55.12051015800013],[-160.03978430899986,55.11847565300011],[-160.0315649079999,55.115545966000084],[-160.0240372389999,55.111029364000146],[-160.0175675119999,55.10529205900014],[-160.01398678299992,55.108058986000046],[-160.01020260299993,55.11176178600006],[-160.00389563699986,55.11953359600007],[-160.01915442599991,55.13373444200008],[-160.05610104099986,55.18138255400005],[-160.06537838399993,55.20148346600011],[-159.9812719389999,55.17788320500007],[-159.95360266799992,55.17584870000003],[-159.9766332669999,55.20831940300003],[-159.9648331369999,55.210516669000114],[-159.9540909499999,55.209702867000104],[-159.94334876199989,55.21076080900015],[-159.9316300119999,55.21857330900015],[-159.9306534499999,55.226141669000086],[-159.93696041599986,55.2352562520001],[-159.9448136059999,55.24445221600014],[-159.94867916599995,55.252386786000116],[-159.9396866529999,55.25600820500009],[-159.8986710279999,55.28534577],[-159.88727779899986,55.297064520000085],[-159.87690182199995,55.28758372599999],[-159.87421627499987,55.284002997000115],[-159.8649796209999,55.25116608300003],[-159.8751114569999,55.23883698100015],[-159.89671790299985,55.23362864800008],[-159.92198645699995,55.22190989799999]]],[[[-133.2852677069999,55.31793854400014],[-133.29157467399995,55.30084870000012],[-133.31924394399994,55.270412502000156],[-133.29137122299989,55.26292552299999],[-133.28038489499994,55.28213125200013],[-133.25963294199994,55.28156159100017],[-133.2342423169999,55.27362702],[-133.20938066299993,55.270412502000156],[-133.22663326699987,55.252875067000026],[-133.23375403599994,55.24225495000017],[-133.24014238199993,55.220363674000126],[-133.24889075399992,55.21649811400011],[-133.27208411399994,55.21515534100014],[-133.30654863199987,55.20311107000013],[-133.31615149599995,55.20148346600011],[-133.3284399079999,55.20294830900015],[-133.33433997299994,55.20661041900003],[-133.3388565749999,55.211086330000064],[-133.3465876939999,55.21515534100014],[-133.3694555329999,55.22199127800015],[-133.38243567599991,55.223334052000055],[-133.38817298099985,55.21857330900015],[-133.39183508999992,55.20917389500011],[-133.40078691299996,55.2032738300001],[-133.41197669199997,55.20075104400017],[-133.42227128799988,55.20148346600011],[-133.4365942049999,55.21137116100011],[-133.4456274079999,55.2291527360001],[-133.4498591789999,55.25023021000011],[-133.44961503799996,55.270412502000156],[-133.43740800699985,55.26581452000012],[-133.42467200399994,55.26308828300012],[-133.4123429029999,55.263902085000055],[-133.40123450399994,55.270412502000156],[-133.43443762899997,55.28587474199999],[-133.44277910099993,55.29779694200012],[-133.43224036399988,55.31443919500008],[-133.4141332669999,55.31818268400009],[-133.39207923099988,55.315578518],[-133.37751217399995,55.316717841000056],[-133.38194739499994,55.33185455900003],[-133.36025956899994,55.3329125020001],[-133.3387751939999,55.337347723000065],[-133.31810462099992,55.33905670800006],[-133.29873613199987,55.33185455900003],[-133.2852677069999,55.31793854400014]]],[[[-160.03209387899994,55.31366608300014],[-160.03998775899993,55.30707428600006],[-160.07294674399986,55.30829498900008],[-160.09699459499993,55.31492747600005],[-160.1090795559999,55.32575104400014],[-160.1084692049999,55.333889065000065],[-160.0993546209999,55.34027741100009],[-160.0854386059999,55.343410549000154],[-160.06659908799986,55.34471263200005],[-160.06151282499994,55.34267812700012],[-160.05903072799993,55.33856842700008],[-160.0525610019999,55.333441473000065],[-160.03624426999988,55.32619863500003],[-160.03624426999988,55.32615794500005],[-160.03307044199994,55.32257721600008],[-160.03209387899994,55.31366608300014]]],[[[-160.33287512899994,55.3522809920001],[-160.32477779899992,55.31391022300009],[-160.32371985599985,55.29523346600011],[-160.32542883999986,55.276556708000115],[-160.33629309799994,55.248683986000074],[-160.3469132149999,55.25055573100015],[-160.36176510299995,55.255113022999986],[-160.3749893869999,55.26105377800012],[-160.40111243399994,55.28676992400007],[-160.49848385299993,55.30223216399999],[-160.53148352799988,55.325018622000115],[-160.51899166599986,55.3271345070001],[-160.5084122389999,55.33173248900005],[-160.50426184799989,55.338039455000015],[-160.5110570949999,55.345445054],[-160.48692786399988,55.353216864],[-160.4616593089999,55.351141669000164],[-160.43712317599991,55.3461774760001],[-160.41547604099992,55.345445054],[-160.36738033799995,55.36652252800011],[-160.34520423099988,55.37107982000005],[-160.32542883999986,55.35854726800015],[-160.33287512899994,55.3522809920001]]],[[[-160.69066321499992,55.30780670799999],[-160.67939205599993,55.306708075000145],[-160.65815182199995,55.31134674700017],[-160.65404212099992,55.314520575000145],[-160.65013587099992,55.32160065300012],[-160.64521236899995,55.32859935099999],[-160.63792883999994,55.33185455900003],[-160.6302384109999,55.330755927],[-160.61803137899992,55.32611725500006],[-160.61034094999988,55.325018622000115],[-160.60472571499992,55.330755927],[-160.60248775899993,55.360093492000104],[-160.59980221299986,55.372788804000045],[-160.5901586579999,55.38385651200009],[-160.57555091099988,55.391424872000144],[-160.5592748689999,55.39313385600015],[-160.54454505099994,55.386419989],[-160.53559322799993,55.36432526200012],[-160.55158443899992,55.34503815300017],[-160.5744522779999,55.324937242000125],[-160.58613033799992,55.300482489],[-160.58238684799989,55.28554922100015],[-160.5732315749999,55.27806224199999],[-160.56200110599988,55.272406317],[-160.55199133999992,55.26292552299999],[-160.54609127499987,55.25043366100009],[-160.54987545499992,55.24502187700013],[-160.5799047519999,55.235581773000106],[-160.56371008999992,55.22980377800015],[-160.52802486899986,55.22752513200008],[-160.5110570949999,55.22190989799999],[-160.50767981699988,55.21694570500013],[-160.50230872299994,55.20026276200018],[-160.49738521999996,55.19464752800009],[-160.4863175119999,55.19367096600011],[-160.47748775899987,55.19757721600011],[-160.46983801999994,55.198472398000106],[-160.46259518099993,55.18842194200012],[-160.48619544199988,55.18146393400003],[-160.53355872299989,55.18793366100014],[-160.55882727799994,55.18842194200012],[-160.51862545499992,55.17877838700014],[-160.5110570949999,55.17413971600003],[-160.5132950509999,55.16498444200015],[-160.53831946499992,55.13320547100001],[-160.55524654899986,55.157456772999986],[-160.57526607999995,55.16266510600009],[-160.62706458199995,55.15371328300016],[-160.6376846999999,55.154933986000074],[-160.66637122299989,55.16315338700018],[-160.67552649599992,55.167914130000085],[-160.68525143099987,55.180365302],[-160.68248450399994,55.186957098000065],[-160.67613684799989,55.192531643000066],[-160.67552649599992,55.20148346600011],[-160.68333899599992,55.21137116100011],[-160.6923315089999,55.20917389500011],[-160.7033178379999,55.20136139500011],[-160.71711178299992,55.19464752800009],[-160.73334713399993,55.19196198100011],[-160.74583899599986,55.19147370000003],[-160.75767981699994,55.18911367400007],[-160.77171790299988,55.18097565300014],[-160.78388424399986,55.166937567],[-160.8028458319999,55.13336823100015],[-160.81891842399995,55.11953359600007],[-160.8205053379999,55.1354027360001],[-160.8127335279999,55.16608307500009],[-160.81578528599988,55.17755768400003],[-160.83922278599988,55.19794342700011],[-160.84740149599986,55.20709870000011],[-160.85362708199992,55.22190989799999],[-160.8523656889999,55.22500234600006],[-160.8472387359999,55.24209219],[-160.84618079299992,55.248683986000074],[-160.84862219999988,55.25608958500008],[-160.85826575399994,55.26569245000014],[-160.86046301999994,55.273504950000024],[-160.85692298099985,55.28872304900001],[-160.85053463399993,55.30316803600008],[-160.8472794259999,55.317328192],[-160.85362708199992,55.33185455900003],[-160.82140051999988,55.363226630000085],[-160.78404700399994,55.389878648000106],[-160.74205481699994,55.40631745000008],[-160.6959936189999,55.406927802000055],[-160.66576087099992,55.38385651200009],[-160.65876217399992,55.363836981000034],[-160.67198645699986,55.34308502800003],[-160.70282955599993,55.31757233300014],[-160.69066321499992,55.30780670799999]]],[[[-131.81847083199995,55.41376373900009],[-131.69652258999986,55.343451239000146],[-131.63609778599994,55.29930247600008],[-131.63345292899996,55.26292552299999],[-131.63857988199987,55.275946356000176],[-131.64635169199997,55.28681061400006],[-131.65713456899988,55.29425690300003],[-131.67129472599993,55.297064520000085],[-131.67536373599984,55.29120514500015],[-131.6682836579999,55.25608958500008],[-131.68614661399997,55.230292059000035],[-131.7117406889998,55.23663971600017],[-131.73949133999992,55.250718492000104],[-131.7638240229999,55.248683986000074],[-131.73721269399994,55.21784088700012],[-131.72085527299993,55.203070380000135],[-131.70238196499992,55.19464752800009],[-131.71275794199988,55.17747630400005],[-131.7265518869999,55.16632721600014],[-131.73330644399994,55.155707098],[-131.72288977799985,55.140082098000036],[-131.74331620999993,55.142726955000015],[-131.77196204299992,55.167914130000085],[-131.80492102799988,55.1811384140001],[-131.81777910099993,55.197984117000104],[-131.8531794909999,55.300482489],[-131.85313880099994,55.33954498900006],[-131.85700436099992,55.3574079450001],[-131.86685136599993,55.372788804000045],[-131.85094153599994,55.37335846600002],[-131.84577389199993,55.372788804000045],[-131.8519587879999,55.394842841000134],[-131.84951738199993,55.41608307500006],[-131.83836829299995,55.42593008000016],[-131.81847083199995,55.41376373900009]]],[[[-133.56969153599997,55.424302476000136],[-133.5419001939999,55.41461823100017],[-133.47158769399988,55.41644928600005],[-133.44961503799996,55.406927802000055],[-133.44904537699986,55.39232005400013],[-133.44758053299984,55.38654205900018],[-133.4422094389999,55.38027578300013],[-133.44961503799996,55.374172268000116],[-133.45787512899994,55.369696356000176],[-133.46690833199995,55.36688873900012],[-133.49771074099993,55.36595286700005],[-133.50536048099985,55.364447333],[-133.50503495999993,55.36074453300013],[-133.50283769399994,55.35614655200011],[-133.50487219999988,55.3522809920001],[-133.51622473899994,55.345445054],[-133.5214737619999,55.341253973000065],[-133.5268448559999,55.33917877800003],[-133.53868567599994,55.338609117000075],[-133.5483292309999,55.33999258000016],[-133.56810462099992,55.34516022300014],[-133.57994544199985,55.345445054],[-133.56720943899984,55.33038971600017],[-133.5651749339999,55.319810289000124],[-133.57994544199985,55.29026927300004],[-133.58775794199988,55.25771719000009],[-133.59430904899997,55.24298737200008],[-133.60728919199997,55.235581773000106],[-133.62116451699987,55.240383205],[-133.63630123599987,55.25315989800005],[-133.65566972599987,55.276556708000115],[-133.6572973299999,55.28392161700013],[-133.65587317599991,55.30023834800015],[-133.65880286399994,55.30760325700005],[-133.6644180979999,55.31024811400011],[-133.6805720689999,55.30931224200004],[-133.6891983709999,55.31134674700017],[-133.66539466099994,55.323391018000095],[-133.65880286399994,55.325018622000115],[-133.64635169199994,55.32575104400014],[-133.64146887899994,55.328192450000174],[-133.63923092399997,55.332464911],[-133.62144934799989,55.35419342700005],[-133.62336178299984,55.361314195000105],[-133.65566972599987,55.372788804000045],[-133.64273027299987,55.382025458000115],[-133.6150610019999,55.39008209800006],[-133.6038712229999,55.39667389500012],[-133.59044348899994,55.417181708],[-133.58055579299986,55.426214911],[-133.56969153599997,55.424302476000136]]],[[[-163.13902747299994,55.40350983300006],[-163.1516820949999,55.39695872600008],[-163.1625870429999,55.398993231000084],[-163.1719457669999,55.40403880400014],[-163.19505774599983,55.412665106000034],[-163.18818111899995,55.42511627800015],[-163.16791744699992,55.436997789000095],[-163.14277096299986,55.441066799000154],[-163.1331274079999,55.432440497000144],[-163.12938391799986,55.423041083000115],[-163.1314184239999,55.413275458],[-163.13902747299994,55.40350983300006]]],[[[-133.23828299899992,55.4138027150001],[-133.27449343099985,55.40427994499999],[-133.31519653999987,55.40454704200009],[-133.32026955999987,55.4231265990001],[-133.3072766109999,55.43218723000017],[-133.26925098399994,55.44395017100008],[-133.2360567549999,55.440219968000164],[-133.23828299899992,55.4138027150001]]],[[[-160.2369278639999,55.44985586100004],[-160.23359127499992,55.44790273600007],[-160.22382564999987,55.449042059000114],[-160.20628821499992,55.45416901200004],[-160.19884192599986,55.455308335000055],[-160.17113196499986,55.45376211100002],[-160.15990149599986,55.44953034100011],[-160.1553848949999,55.441066799000154],[-160.15986080599987,55.4269880230001],[-160.1594132149999,55.412665106000034],[-160.1551000639999,55.398871161000116],[-160.1479386059999,55.386419989],[-160.15986080599987,55.38080475500003],[-160.1669815749999,55.38442617400006],[-160.17308508999992,55.392482815],[-160.18207760299993,55.400091864000146],[-160.19721432199992,55.40424225500008],[-160.2337133449999,55.40997955900015],[-160.24693762899994,55.41746653900013],[-160.25947018099993,55.422308661],[-160.27338619699992,55.41665273600002],[-160.29877682199992,55.400091864000146],[-160.31236731699988,55.39744700700005],[-160.32811438699994,55.398138739],[-160.34113521999993,55.40412018400012],[-160.3465470039999,55.41746653900013],[-160.33409583199995,55.44367096600014],[-160.30475826699995,55.45831940300014],[-160.27057857999992,55.46369049700003],[-160.24351966099994,55.46214427299999],[-160.23875891799992,55.45905182500009],[-160.2369278639999,55.44985586100004]]],[[[-133.49478105399993,55.42951080900003],[-133.51138261599996,55.42743561400012],[-133.53302975199986,55.430121161],[-133.60045325399994,55.44790273600007],[-133.58975175699993,55.46328359600004],[-133.5742895169999,55.46979401200012],[-133.55630449099996,55.47406647300012],[-133.5384008449999,55.48265208500014],[-133.5247289699999,55.49957916900003],[-133.5176895819999,55.514837958],[-133.50572669199994,55.522609768000095],[-133.47691809799994,55.51679108300014],[-133.4317520819999,55.496527411000116],[-133.42227128799988,55.48944733300006],[-133.41844641799986,55.47557200700008],[-133.42076575399994,55.459662177000055],[-133.42808997299994,55.44651927300002],[-133.4390763009999,55.441066799000154],[-133.45710201699993,55.438910223000065],[-133.49478105399993,55.42951080900003]]],[[[-133.3370255199999,55.46454498900011],[-133.3465876939999,55.44790273600007],[-133.36058508999986,55.46063873900012],[-133.39500891799992,55.503119208],[-133.42398027299987,55.51801178600006],[-133.43317623599987,55.52798086100013],[-133.42853756399984,55.54413483300003],[-133.4136449859999,55.55320872600011],[-133.3906143869999,55.557196356000176],[-133.3244522779999,55.55695221600014],[-133.30479895699995,55.55320872600011],[-133.2874242829999,55.5450707050001],[-133.27208411399994,55.530462958000086],[-133.27196204299986,55.511948960000055],[-133.2734268869999,55.50031159100014],[-133.2790421209999,55.49184804900001],[-133.29137122299989,55.48265208500014],[-133.30915279899995,55.47483958500014],[-133.3244522779999,55.47117747599999],[-133.3370255199999,55.46454498900011]]],[[[-133.64631100199983,55.54230377800003],[-133.61241614499988,55.54157135600009],[-133.58678137899992,55.54413483300003],[-133.58092200399997,55.527085679000045],[-133.5786840489999,55.50926341399998],[-133.5847061839999,55.49518463700003],[-133.6038712229999,55.48944733300006],[-133.6184789699999,55.48297760600015],[-133.63316809799986,55.454413153000175],[-133.65196692599994,55.44790273600007],[-133.67105058499993,55.4513207050001],[-133.7096248039999,55.46580638200013],[-133.73013261599993,55.468410549000126],[-133.74937903599985,55.46417877800012],[-133.77940833199995,55.44985586100004],[-133.7990616529999,55.44790273600007],[-133.7990616529999,55.455308335000055],[-133.7770076159999,55.46430084800009],[-133.74828040299994,55.49616120000012],[-133.7008357409999,55.507391669000114],[-133.7018123039999,55.51679108300014],[-133.7112930979999,55.526068427],[-133.72020423099994,55.532456773000106],[-133.72451738199993,55.531683661],[-133.7285050119999,55.53286367400001],[-133.73013261599993,55.540716864],[-133.72671464799993,55.54661692900013],[-133.71873938699989,55.55174388200005],[-133.70287024599995,55.55776601800015],[-133.67935136599985,55.54734935100008],[-133.64631100199983,55.54230377800003]]],[[[-159.28962154899986,55.76788971600003],[-159.30211341099988,55.75922272300012],[-159.31810462099986,55.76776764500014],[-159.32860266799995,55.778387762000094],[-159.34471594999988,55.78388092700011],[-159.36229407499985,55.786281643000066],[-159.35985266799992,55.79816315300011],[-159.3328344389999,55.812445380000106],[-159.3127335279999,55.81122467699999],[-159.29804439999992,55.793646552000055],[-159.28905188699989,55.77899811400006],[-159.28962154899986,55.76788971600003]]],[[[-133.5891007149999,55.811672268000095],[-133.57310950399997,55.80475495000009],[-133.57896887899994,55.82440827000015],[-133.5652563139999,55.830308335000076],[-133.50450598899994,55.8229027360001],[-133.4952286449999,55.82029857000002],[-133.48688717399995,55.81476471600017],[-133.48241126199986,55.806586005000085],[-133.48110917899987,55.798773505000085],[-133.47769120999996,55.79279205900015],[-133.46694902299993,55.790472723],[-133.35167395699995,55.78778717700011],[-133.33975175699987,55.790472723],[-133.3297419909999,55.79881419500008],[-133.32298743399983,55.809027411],[-133.31602942599997,55.811672268000095],[-133.30565344999988,55.79734935100011],[-133.31004798099985,55.78221263200011],[-133.3682348299999,55.75873444200014],[-133.3915909499999,55.746161200000145],[-133.41787675699987,55.73847077000012],[-133.44859778599988,55.7507184920001],[-133.47557532499985,55.77179596600003],[-133.49058997299997,55.790472723],[-133.50381425699993,55.76618073100012],[-133.48859615799984,55.73436107],[-133.48717200399994,55.70673248900009],[-133.5421036449999,55.69489166900002],[-133.5786840489999,55.70490143400009],[-133.62385006399984,55.72947825700011],[-133.66323808499993,55.760728257],[-133.6823624339999,55.790472723],[-133.64932206899994,55.788560289000046],[-133.64142818899987,55.790472723],[-133.63931230399996,55.796454169000114],[-133.63890540299985,55.81708405200014],[-133.63459225199986,55.825262762000065],[-133.6148982409999,55.833197333000115],[-133.60138912699983,55.82489655200014],[-133.5891007149999,55.811672268000095]]],[[[-158.74531002499992,55.863185940000065],[-158.7300919259999,55.85516998900012],[-158.71703040299988,55.84398021000011],[-158.70856686099995,55.831488348],[-158.8112279939999,55.859523830000015],[-158.85838782499988,55.86298248900012],[-158.88731848899988,55.831488348],[-158.8747452459999,55.82794830900003],[-158.86176510299987,55.82583242400001],[-158.85114498599995,55.82143789300012],[-158.8457738919999,55.81098053600006],[-158.86628170499995,55.80573151200015],[-158.88377844999988,55.805243231000176],[-158.89765377499987,55.81134674700017],[-158.90717525899987,55.825262762000065],[-158.90868079299992,55.841294664000046],[-158.89732825399986,55.86058177300007],[-158.90033932199995,55.87372467700013],[-158.85374915299994,55.890936591000134],[-158.82811438699986,55.896714585000105],[-158.79173743399988,55.89028554900001],[-158.77684485599994,55.88092682500014],[-158.76036536399988,55.86627838700015],[-158.74531002499992,55.863185940000065]]],[[[-133.26463782499988,55.86627838700015],[-133.25405839799993,55.86420319200012],[-133.22891191299993,55.87128327],[-133.21686764199993,55.86627838700015],[-133.22036699099993,55.822455145],[-133.22370357999984,55.81098053600006],[-133.2359106109999,55.78571198100009],[-133.24046790299985,55.77997467700011],[-133.2508031889999,55.77594635600014],[-133.25910396999984,55.780259507000046],[-133.26671301999988,55.787014065],[-133.27521725199992,55.790472723],[-133.28335527299993,55.79596588700004],[-133.30284583199995,55.8198102890001],[-133.31615149599995,55.825262762000065],[-133.32428951699987,55.82672760600012],[-133.3342992829998,55.830877997000144],[-133.34117591099994,55.83734772300014],[-133.33975175699987,55.84577057500009],[-133.33202063699989,55.84747955900009],[-133.29137122299989,55.85199616100006],[-133.31899980399987,55.860541083000086],[-133.33055579299992,55.86831289300009],[-133.33291581899994,55.87986888200011],[-133.3258357409999,55.88141510600015],[-133.29161536399994,55.9020042990001],[-133.28514563699989,55.907171942],[-133.26740475199983,55.90216705900015],[-133.26671301999988,55.89166901200018],[-133.27013098899988,55.87872955900018],[-133.26463782499988,55.86627838700015]]],[[[-155.5703832669999,55.783026434000114],[-155.59726412199996,55.76043142400012],[-155.62990034999996,55.76290150700014],[-155.66369255999984,55.774462847000066],[-155.69738826999992,55.771345854000096],[-155.7186933729999,55.77485107500003],[-155.72801673099988,55.80475495000009],[-155.7498486759999,55.81768017399998],[-155.74164791599995,55.831488348],[-155.7012579529999,55.841336773000144],[-155.66341895499983,55.85600812000011],[-155.6523331369999,55.88666413000014],[-155.65229244699992,55.88670482000013],[-155.63532467399986,55.905747789000124],[-155.5999691639999,55.914813918],[-155.55610104099986,55.91461823100015],[-155.55724036399994,55.895209052000055],[-155.56904049399992,55.86880117400007],[-155.5703832669999,55.85199616100006],[-155.55805416599992,55.81757233300011],[-155.55724036399994,55.80048248900008],[-155.5703832669999,55.783026434000114]]],[[[-134.2441300119999,55.92084381700012],[-134.2579239569999,55.89988841399999],[-134.23485266799992,55.89996979400014],[-134.1792699859999,55.91461823100015],[-134.12205969999994,55.923732815000065],[-134.1015518869999,55.92080312700013],[-134.11436926999994,55.90033600500008],[-134.15318762899992,55.89362213700004],[-134.19595292899993,55.87335846600002],[-134.23387610599985,55.846136786000116],[-134.25841223899988,55.81842682500003],[-134.27627519399994,55.828802802000105],[-134.3184301419999,55.83380768400015],[-134.32664954299992,55.848822333],[-134.3184301419999,55.857855536],[-134.26455644399994,55.87372467700013],[-134.27916419199988,55.882147528000175],[-134.3347875639999,55.895086981000084],[-134.34715735599985,55.910956122000115],[-134.33218339799993,55.922512111000124],[-134.29869544199997,55.926499742000104],[-134.2635798819999,55.925238348],[-134.2441300119999,55.92084381700012]]],[[[-133.84251868399994,55.866359768000116],[-133.8716527989999,55.84674713700018],[-133.9126684239999,55.86277903900007],[-133.9213761059999,55.87433502800009],[-133.93171139199987,55.89398834800015],[-133.93423417899993,55.912583726000136],[-133.9195043609999,55.92084381700012],[-133.87730872299989,55.93805573100006],[-133.85602779899992,55.94228750200007],[-133.83218339799993,55.90058014500012],[-133.84251868399994,55.866359768000116]]],[[[-131.20889238199993,55.94489166900014],[-131.1795548169999,55.923529364],[-131.04442298099985,55.790472723],[-131.0461319649999,55.76658763200011],[-131.02281653599988,55.742865302000105],[-130.9687393869999,55.701117255000085],[-130.96690833199992,55.69415924700009],[-130.96857662699983,55.678127346],[-130.9653214179999,55.67104726800012],[-130.93830318899984,55.65151601800015],[-130.9345596999999,55.643133856000084],[-130.93822180899986,55.624212958000086],[-130.95555579299995,55.60049062700007],[-130.96190344999988,55.58510976800012],[-130.94579016799992,55.582749742000075],[-130.94371497299989,55.572699286],[-130.9541723299999,55.56561920800014],[-130.9755753249999,55.57200755400005],[-130.97492428299986,55.534572658000016],[-130.9772843089999,55.51593659100003],[-130.98302161399988,55.503119208],[-130.97874915299988,55.493312893000066],[-130.97923743399983,55.48554108300006],[-130.98155676999994,55.47703685100013],[-130.98302161399988,55.46527741100006],[-130.97183183499988,55.44358958500008],[-130.9687393869999,55.43488190300009],[-130.96715247299994,55.42377350500006],[-130.9687393869999,55.39667389500012],[-130.97166907499988,55.38523997599999],[-130.9781794909999,55.38764069200012],[-130.98916581899994,55.400091864000146],[-131.0050349599999,55.41339752800015],[-131.01512610599985,55.417181708],[-131.0270889959999,55.410345770000056],[-131.03099524599986,55.400458075000145],[-131.02725175699993,55.39105866100011],[-131.0209854809999,55.382025458000115],[-131.0171606109999,55.372788804000045],[-131.0183813139999,55.35431549700003],[-131.0252579419999,55.34235260600009],[-131.0349014959999,55.330267645],[-131.04442298099985,55.31134674700017],[-131.05565344999988,55.273586330000015],[-131.06517493399988,55.26105377800012],[-131.08543860599988,55.248683986000074],[-131.10631262899994,55.23891836100013],[-131.1165258449999,55.23639557500003],[-131.13011633999994,55.235581773000106],[-131.13760331899994,55.23139069200009],[-131.1405330069999,55.22162506700015],[-131.14264889199984,55.210272528000175],[-131.1475317049999,55.20148346600011],[-131.19200598899994,55.18573639500014],[-131.2327367829999,55.20091380400014],[-131.27171790299988,55.22500234600006],[-131.3113907539999,55.235581773000106],[-131.25625566299993,55.270575262000115],[-131.23477128799993,55.290961005],[-131.21572831899994,55.31757233300014],[-131.2137345039999,55.32306549700017],[-131.2083227199998,55.345445054],[-131.20498613199993,55.34992096600014],[-131.20051021999987,55.35374583500008],[-131.1964005199999,55.35944245000014],[-131.1946915359999,55.369370835000055],[-131.19542395699995,55.3873558610001],[-131.1995336579999,55.39972565300003],[-131.20995032499988,55.40631745000008],[-131.22940019399996,55.406927802000055],[-131.2219945949999,55.39325592700011],[-131.2439672519999,55.393744208000115],[-131.26870683499988,55.386175848000065],[-131.2830704419999,55.37107982000005],[-131.27379309799989,55.34886302300002],[-131.2617081369999,55.32880280200014],[-131.26382402299993,55.30939362200003],[-131.27700761599993,55.29169342700011],[-131.29832923099988,55.276556708000115],[-131.3242081369999,55.26707591400013],[-131.3527725899999,55.263251044000114],[-131.4041641919999,55.26292552299999],[-131.42735755099994,55.26703522300012],[-131.45055091099988,55.27789948100011],[-131.46320553299986,55.293402411000116],[-131.45474199099993,55.31134674700017],[-131.4318741529999,55.32001373900009],[-131.40485592399995,55.32290273600002],[-131.3822322259999,55.32941315300009],[-131.3727921209999,55.34886302300002],[-131.37124589799993,55.36115143400015],[-131.36644446499983,55.37107982000005],[-131.3580623039999,55.3778343770001],[-131.34581458199995,55.38027578300013],[-131.3296606109999,55.38141510600015],[-131.32262122299989,55.38495514500015],[-131.3113907539999,55.400091864000146],[-131.27818762899997,55.43024323100015],[-131.27074133999992,55.44733307500011],[-131.2809138659999,55.46527741100006],[-131.28368079299992,55.472154039000074],[-131.29336503799996,55.514553127000156],[-131.29930579299992,55.52533600500005],[-131.33063717399995,55.568548895000056],[-131.3369034499999,55.57965729400008],[-131.34357662699986,55.63027578300007],[-131.35081946499986,55.64557526200004],[-131.3631892569999,55.643133856000084],[-131.37169348899994,55.61863841400007],[-131.36522376199994,55.587307033],[-131.32795162699986,55.50275299700009],[-131.32192949099993,55.47508372599999],[-131.32542883999994,55.446763414000046],[-131.3423966139999,55.41746653900013],[-131.34972083199995,55.410142320000105],[-131.3727921209999,55.39325592700011],[-131.38003495999993,55.38572825700008],[-131.39452063699986,55.36595286700005],[-131.40929114499994,55.352199611000046],[-131.42463131399987,55.34406159100011],[-131.46214758999992,55.33185455900003],[-131.45274817599997,55.343451239000146],[-131.42662512899994,55.36399974200002],[-131.42125403599997,55.376532294000086],[-131.42662512899994,55.392279364000146],[-131.43903561099987,55.405422268],[-131.45274817599997,55.416896877000156],[-131.46214758999992,55.42743561400012],[-131.46898352799988,55.45868561400009],[-131.45840410099987,55.48371002800008],[-131.42125403599997,55.530462958000086],[-131.43789628799993,55.53058502800006],[-131.46336829299992,55.523260809000035],[-131.4890030589999,55.51178620000009],[-131.50649980399993,55.49941640800016],[-131.51695716099994,55.48004791900006],[-131.5161840489999,55.46002838700015],[-131.5080460279999,55.440130927000084],[-131.4963272779999,55.42121002800015],[-131.46910559799989,55.38963450700005],[-131.4656876289999,55.372259833000086],[-131.4795629549999,55.34886302300002],[-131.5088598299999,55.311712958],[-131.52647864499994,55.29938385600015],[-131.5515844389999,55.297064520000085],[-131.57310950399994,55.305243231000084],[-131.6160375639999,55.33270905200014],[-131.66152910099996,55.343207098],[-131.68529212099986,55.35431549700003],[-131.72288977799985,55.38027578300013],[-131.72520911399994,55.38353099199999],[-131.73131262899992,55.394924221000124],[-131.73591061099987,55.400091864000146],[-131.7866104809999,55.42731354400014],[-131.8085017569999,55.444484768000066],[-131.82022050699993,55.463812567],[-131.81029212099992,55.47662995000003],[-131.7178442049998,55.51797109600007],[-131.7057999339999,55.52704498900006],[-131.68887285099993,55.54295482],[-131.67808997299994,55.54962799700003],[-131.66730709499993,55.55076732000008],[-131.65054277299993,55.55027903899999],[-131.6445206369999,55.557074286000116],[-131.6197810539999,55.595282294000164],[-131.63048255099994,55.604396877000156],[-131.68146725199986,55.610541083000136],[-131.69896399599992,55.616115627000156],[-131.70742753799993,55.62962474200013],[-131.7084854809999,55.64545319200006],[-131.70392818899987,55.66111888200014],[-131.6955460279999,55.674465236000124],[-131.69139563699986,55.67951080900018],[-131.6868790359999,55.68390534100014],[-131.68073482999992,55.68695709800015],[-131.67129472599993,55.688137111000074],[-131.63516191299996,55.68695709800015],[-131.62730872299989,55.688137111000074],[-131.62555904899986,55.69358958500011],[-131.62612870999996,55.71210358300014],[-131.62360592399995,55.71914297100001],[-131.61465410099993,55.72370026200015],[-131.60655676999988,55.72162506700011],[-131.59923255099997,55.71735260600012],[-131.59251868399994,55.715399481000176],[-131.53498287699983,55.723089911],[-131.5174454419999,55.72907135600012],[-131.5174454419999,55.73651764500009],[-131.53335527299993,55.736965236000074],[-131.5788468089999,55.72907135600012],[-131.62905839799987,55.734035549000154],[-131.6471248039999,55.72907135600012],[-131.69176184799997,55.70526764500011],[-131.7045792309999,55.70970286699999],[-131.7092179029999,55.73965078300016],[-131.69542395699992,55.7516136740001],[-131.6639298169999,55.761216539000074],[-131.62930253799993,55.76772695500016],[-131.51284745999988,55.77472565300006],[-131.48265540299982,55.783026434000114],[-131.49034583199997,55.79242584800015],[-131.5127660799999,55.80027903900013],[-131.5174454419999,55.80792877800015],[-131.52159583199995,55.819159247000144],[-131.53075110599988,55.82575104400003],[-131.53994706899988,55.8251000020001],[-131.54409745999993,55.81476471600017],[-131.55435136599996,55.798773505000085],[-131.57843990799986,55.79254791900003],[-131.6061091789999,55.78953685100011],[-131.62730872299989,55.783026434000114],[-131.64435787699983,55.793402411000116],[-131.67845618399994,55.79922109600007],[-131.6887100899999,55.81098053600006],[-131.6877335279999,55.83197663],[-131.67064368399986,55.839504299000154],[-131.4703669909999,55.83197663],[-131.43545488199987,55.84577057500009],[-131.4573868479999,55.85195547100007],[-131.53449459499987,55.85199616100006],[-131.54629472599993,55.8587914080001],[-131.56004798099983,55.874741929],[-131.57213294199994,55.89321523600002],[-131.5788468089999,55.907171942],[-131.5157364569999,55.90961334800012],[-131.4963272779999,55.91461823100015],[-131.4876602859999,55.91925690300009],[-131.47105872299994,55.93097565300017],[-131.46214758999992,55.93451569200006],[-131.44684811099984,55.93545156500015],[-131.4041641919999,55.92829010600009],[-131.36522376199994,55.937160549000154],[-131.32359778599997,55.954250393],[-131.28026282499988,55.96515534100017],[-131.23623613199987,55.955633856000176],[-131.20889238199993,55.94489166900014]]],[[[-156.67804928299992,56.04148997600011],[-156.6804093089999,56.039007880000085],[-156.6805313789999,56.03693268400015],[-156.67735755099991,56.03359609600012],[-156.67821204299992,56.03046295800006],[-156.6808568999999,56.0241559920001],[-156.6817520819999,56.01951732],[-156.6807348299999,56.018052476000136],[-156.68004309799989,56.01666901200015],[-156.68366451699995,56.01243724200013],[-156.69493567599994,56.00934479400014],[-156.7063695949999,56.01422760600012],[-156.71812903599988,56.021673895],[-156.73407955599987,56.026190497000144],[-156.74616451699987,56.03489817900014],[-156.74494381399987,56.040920315000115],[-156.73473059799994,56.03998444200006],[-156.72516842399995,56.041327216000134],[-156.71686764199987,56.044501044000114],[-156.70978756399987,56.051092841000084],[-156.70763098899988,56.06102122599999],[-156.7012833319999,56.066148179000024],[-156.69013424399995,56.06045156500012],[-156.67890377499995,56.04596588700015],[-156.67804928299992,56.04148997600011]]],[[[-133.39268958199995,56.16046784100017],[-133.3431697259999,56.147406317],[-133.30260169199988,56.150824286],[-133.28530839799987,56.14720286700005],[-133.28514563699989,56.133124091000106],[-133.30882727799994,56.103013414000074],[-133.31309973899994,56.09218984600007],[-133.31191972599993,56.07990143400012],[-133.30138098899997,56.06386953300013],[-133.29873613199987,56.05463288000006],[-133.2977595689999,56.032945054],[-133.2995499339999,56.01203034100003],[-133.3111466139999,55.99787018400009],[-133.33975175699987,55.9965681010001],[-133.3582657539999,56.00617096600008],[-133.3760473299999,56.019964911],[-133.3954971999999,56.02635325700011],[-133.43968665299985,56.00267161699999],[-133.47032630099994,56.01727936400003],[-133.49058997299997,56.010199286000145],[-133.51081295499986,55.98794179900001],[-133.51789303299986,55.982326565],[-133.5600479809999,55.97089264500015],[-133.58975175699993,55.955755927000055],[-133.6295466789999,55.959418036],[-133.64142818899987,55.948187567],[-133.63849850199986,55.93793366100009],[-133.61815344999985,55.92804596600014],[-133.62096106699988,55.92084381700012],[-133.6309708319999,55.91864655200014],[-133.67861894399996,55.91461823100015],[-133.6913956369999,55.91111888200008],[-133.69737708199992,55.90497467699999],[-133.7027074859999,55.90277741100003],[-133.7228897779999,55.91771067900005],[-133.73228919199994,55.919826565000065],[-133.7581274079999,55.92084381700012],[-133.79491126199983,55.94358958500005],[-133.7710668609999,55.980454820000126],[-133.6891983709999,56.04376862200017],[-133.68455969999988,56.05353424700003],[-133.68455969999988,56.06248607000005],[-133.6809789699999,56.069159247000115],[-133.60728919199997,56.078517971000124],[-133.54157467399997,56.074774481000084],[-133.50959225199986,56.078111070000126],[-133.4831436839999,56.09218984600007],[-133.51353919199997,56.09735748900009],[-133.59650631399987,56.10097890800013],[-133.62096106699988,56.11261627800014],[-133.61701412699992,56.131537177000084],[-133.58063717399992,56.13190338700018],[-133.50796464799996,56.11945221600017],[-133.49494381399987,56.120672919000086],[-133.47907467399992,56.12421295800006],[-133.46385657499985,56.129624742000104],[-133.44229081899994,56.143011786000116],[-133.4157608709999,56.15078359600001],[-133.4048966139999,56.157375393000095],[-133.39268958199995,56.16046784100017]]],[[[-156.77452551999994,56.15322500200015],[-156.79206295499986,56.15302155199999],[-156.8052872389999,56.16478099199998],[-156.80939693899995,56.17890045800002],[-156.80931555899986,56.19013092700011],[-156.80687415299994,56.19733307500006],[-156.80247962099995,56.20066966400007],[-156.7996313139999,56.20551178600014],[-156.79942786399988,56.21173737200011],[-156.79259192599994,56.22068919500013],[-156.77830969999985,56.22671133000013],[-156.77440344999985,56.22418854400003],[-156.7801407539999,56.217922268000066],[-156.78339596299986,56.20905182500003],[-156.78388424399995,56.19871653900013],[-156.77989661399988,56.18964264500012],[-156.76667232999995,56.17853424700009],[-156.76655025899987,56.167669989],[-156.77452551999994,56.15322500200015]]],[[[-132.48379472599987,56.19456614799999],[-132.45763098899994,56.186672268],[-132.42955481699994,56.18675364799999],[-132.40367591099994,56.19354889500011],[-132.35944576699984,56.217922268000066],[-132.3382462229999,56.212103583000115],[-132.31680253799993,56.19871653900013],[-132.2913712229999,56.18838125200001],[-132.22337805899994,56.18349844000015],[-132.19212805899988,56.176581122000144],[-132.16445878799985,56.157375393000095],[-132.14818274599995,56.143011786000116],[-132.0921931629999,56.10643138200008],[-132.0963028639999,56.09943268400009],[-132.10114498599992,56.09365469000012],[-132.10684160099993,56.08881256700006],[-132.11388098899988,56.08466217700011],[-132.13003495999993,56.09381745000009],[-132.1370743479999,56.08808014500012],[-132.14175370999993,56.077460028000175],[-132.15119381399984,56.071682033000016],[-132.16356360599988,56.074774481000084],[-132.1883845689999,56.0886091170001],[-132.20201575399997,56.09218984600007],[-132.19627844999988,56.07786692899999],[-132.17577063699986,56.06305573100012],[-132.16787675699987,56.05121491100006],[-132.1721899079999,56.04954661700004],[-132.18219967399995,56.04376862200017],[-132.1690974599999,56.036810614],[-132.1600235669999,56.02728913],[-132.15322831899996,56.01581452000014],[-132.1474503249999,56.002752997000165],[-132.15070553299986,55.99909088700012],[-132.15233313699989,55.996527411000116],[-132.15489661399988,55.98973216399999],[-132.12946529899997,55.970282294000086],[-132.12262936099987,55.94550202000011],[-132.13345292899993,55.92902252800003],[-132.16104081899996,55.93451569200006],[-132.16812089799993,55.94301992400009],[-132.17756100199983,55.96482982000004],[-132.18529212099995,55.96930573100012],[-132.19151770699992,55.964300848000065],[-132.21182206899994,55.94139232000007],[-132.22313391799992,55.93451569200006],[-132.23668372299994,55.93349844],[-132.2451879549999,55.93549225500014],[-132.2521052729999,55.93626536700007],[-132.2715551419999,55.925238348],[-132.2866918609999,55.919378973000065],[-132.3033748039999,55.91535065300009],[-132.31871497299994,55.91461823100015],[-132.33556067599997,55.91819896000014],[-132.34508216099988,55.924302476000136],[-132.36339270699995,55.94476959800009],[-132.37999426999988,55.952337958000136],[-132.41681881399987,55.95783112200017],[-132.42857825399994,55.96930573100012],[-132.41226152299993,55.998114325000145],[-132.40465247299989,56.002752997000165],[-132.39240475199983,56.00584544500005],[-132.38442949099996,56.01341380400011],[-132.38231360599985,56.022609768000066],[-132.38760331899994,56.030707098],[-132.41421464799987,56.03510163],[-132.44473222599993,56.03192780200011],[-132.46206620999988,56.03668854400002],[-132.4490860669999,56.06484609600001],[-132.55894934799989,56.071682033000016],[-132.5700577459999,56.075018622000144],[-132.58165442599994,56.08161041900003],[-132.5938614569999,56.086574611000074],[-132.60676021999987,56.08466217700011],[-132.61253821499986,56.07697174700008],[-132.61351477799985,56.066555080000015],[-132.61628170499992,56.056870835000055],[-132.6271866529999,56.05121491100006],[-132.64541581899996,56.058091539000074],[-132.67662512899994,56.097235419000114],[-132.69237219999988,56.10643138200008],[-132.70498613199987,56.11741771000013],[-132.7132055329999,56.13979726800015],[-132.71174068899992,56.15717194200012],[-132.6954646479999,56.15363190300015],[-132.69310462099992,56.175523179],[-132.68736731699994,56.19537995000009],[-132.6874893869999,56.21161530200013],[-132.70295162699986,56.22247955900012],[-132.68138587099995,56.229193427000084],[-132.6033422519999,56.23615143400015],[-132.5896703769999,56.24681224199999],[-132.56602942599994,56.29376862200003],[-132.54841061099992,56.30442942900005],[-132.5411270819999,56.30878327000015],[-132.53799394399994,56.318915106000084],[-132.53579667899993,56.330511786000116],[-132.53099524599995,56.33917877800012],[-132.5211482409999,56.34320709800009],[-132.42747962099992,56.352199611000096],[-132.39976966099994,56.350409247000115],[-132.39386959499987,56.33917877800012],[-132.38532467399995,56.33218008000013],[-132.38068600199983,56.321519273000106],[-132.38097083199995,56.30951569200008],[-132.38760331899994,56.2982445330001],[-132.37751217399995,56.28457265800016],[-132.3769425119999,56.27163320500012],[-132.3851212229999,56.26178620000003],[-132.40127519399996,56.257269598000065],[-132.3869522779999,56.2477074240001],[-132.3899633449999,56.235500393],[-132.4020076159999,56.22402578300016],[-132.41490637899992,56.216294664000046],[-132.47052975199983,56.20404694200009],[-132.48379472599987,56.19456614799999]]],[[[-133.58678137899992,56.35285065300014],[-133.4390763009999,56.332342841000084],[-133.34154212099986,56.33344147300014],[-133.31309973899994,56.32558828300016],[-133.31309973899994,56.318752346000124],[-133.3300675119999,56.30703359600015],[-133.32848059799989,56.28900788000011],[-133.31224524599995,56.27724844000015],[-133.28514563699989,56.283921617000104],[-133.2899470689999,56.285142320000105],[-133.29360917899996,56.28709544500008],[-133.29670162699983,56.289618231000176],[-133.29938717399995,56.292547919000114],[-133.29409745999993,56.31378815300008],[-133.2584122389999,56.32737864800005],[-133.21385657499988,56.33344147300014],[-133.18211829299986,56.332342841000084],[-133.16722571499992,56.32518138200005],[-133.15160071499992,56.31281159100003],[-133.13931230399987,56.299017645],[-133.13434811099992,56.28733958500011],[-133.13646399599992,56.28082916900002],[-133.1400040359999,56.272935289000046],[-133.14061438699986,56.266302802000084],[-133.13402258999992,56.26349518400003],[-133.12653561099984,56.26227448100012],[-133.10521399599986,56.25592682500017],[-133.09532630099994,56.25071849199999],[-133.06851152299996,56.247544664000124],[-133.05858313699986,56.24298737200017],[-133.05386308499993,56.234442450000145],[-133.05357825399992,56.226263739000146],[-133.05418860599985,56.217922268000066],[-133.05235755099986,56.208889065000065],[-133.05345618399994,56.206610419000086],[-133.05650794199994,56.20319245000009],[-133.05899003799996,56.199042059000064],[-133.05858313699986,56.19456614799999],[-133.0537003249999,56.19074127800015],[-133.04027258999992,56.18781159100014],[-133.0350235669999,56.184963283000016],[-133.03050696499986,56.180121161000116],[-133.02489173099985,56.1720238300001],[-133.0242813789999,56.164455471000146],[-133.0350235669999,56.16107819200012],[-133.0462947259999,56.154242255000106],[-133.06501217399995,56.122503973000065],[-133.07286536399994,56.11261627800014],[-133.0929255849999,56.10932038000011],[-133.1238500639998,56.1244977890001],[-133.14049231699988,56.11945221600017],[-133.09264075399997,56.069159247000115],[-133.0790909499999,56.058050848000065],[-133.0628149079999,56.05231354400011],[-133.04869544199994,56.05280182500009],[-133.0182185539999,56.058050848000065],[-133.0009659499999,56.05678945500007],[-132.95616614499994,56.04376862200017],[-132.95518958199997,56.05385976800015],[-132.95132402299987,56.06171295800011],[-132.9447322259999,56.06761302300008],[-132.9356583319999,56.071682033000016],[-132.91852779899995,56.065904039000074],[-132.9123429029999,56.05776601800012],[-132.9093318349999,56.048000393],[-132.89826412699986,56.03217194200006],[-132.8985082669999,56.0280622420001],[-132.8958634109999,56.02545807500012],[-132.87572180899988,56.024644273000106],[-132.86904863199993,56.02570221600014],[-132.8631078769999,56.028509833000115],[-132.8565567699999,56.03412506700003],[-132.84243730399987,56.03904857000008],[-132.82787024599995,56.03237539300004],[-132.81407630099994,56.022284247000144],[-132.80223548099988,56.017035223000065],[-132.78905188699989,56.014715887000094],[-132.7364395819999,55.9965681010001],[-132.71519934799994,55.980780341000134],[-132.6939591139999,55.960109768000116],[-132.67096920499986,55.942124742000104],[-132.63312740799992,55.93170807500012],[-132.6207169259999,55.92438385600012],[-132.61082923099988,55.914496161],[-132.60676021999987,55.90375397300009],[-132.60045325399997,55.89337799700009],[-132.56973222599987,55.8829613300001],[-132.55833899599992,55.87372467700013],[-132.5657852859999,55.86627838700015],[-132.5317276679999,55.848537502000156],[-132.50841223899988,55.8276227890001],[-132.46271725199986,55.776841539000046],[-132.4728083979999,55.76357656500012],[-132.46849524599992,55.75063711100001],[-132.45787512899994,55.7372907570001],[-132.4490860669999,55.72284577000015],[-132.44542395699995,55.70612213700012],[-132.4471329419999,55.69403717700011],[-132.46271725199986,55.667629299000126],[-132.4486384759999,55.663234768000144],[-132.4387914699999,55.654689846000124],[-132.43390865799992,55.64240143400015],[-132.43480383999992,55.62665436400003],[-132.4258520169999,55.63397858300011],[-132.39370683499993,55.668402411000145],[-132.3705134759999,55.667629299000126],[-132.36554928299984,55.66437409100008],[-132.34996497299994,55.64858633000013],[-132.3466690749999,55.643133856000084],[-132.3453669909999,55.62006256700012],[-132.3431290359999,55.61347077000006],[-132.33922278599994,55.60553620000009],[-132.29710852799988,55.54706452000011],[-132.28770911399994,55.53729889500009],[-132.2363988919999,55.53701406500015],[-132.2148331369999,55.53119538],[-132.15758216099997,55.496730861000074],[-132.14549719999985,55.48305898600013],[-132.1406143869999,55.46527741100006],[-132.1505020819999,55.44940827000011],[-132.17320716099994,55.452826239000146],[-132.21629798099988,55.475816148000106],[-132.25047766799986,55.503119208],[-132.29625403599985,55.51357656500009],[-132.33385169199997,55.532294012000065],[-132.40534420499984,55.541205145000085],[-132.43480383999992,55.55027903899999],[-132.4910375639999,55.60370514500012],[-132.5235082669999,55.62523021000013],[-132.55211341099997,55.61920807500003],[-132.54430091099997,55.61493561400012],[-132.5393774079999,55.61017487200002],[-132.53099524599995,55.59870026200018],[-132.5432022779999,55.59723541900003],[-132.55260169199994,55.59105052300005],[-132.55992591099994,55.58209870000003],[-132.5657852859999,55.57200755400005],[-132.55011959499993,55.57147858300008],[-132.5281876289999,55.56732819200015],[-132.51219641799992,55.55927155200003],[-132.51451575399994,55.547186591000106],[-132.56200110599988,55.50625234600007],[-132.59113521999984,55.49286530200008],[-132.65982011599993,55.47565338700015],[-132.68179277299996,55.455308335000055],[-132.66665605399996,55.45107656500015],[-132.65465247299994,55.44489166900017],[-132.64932206899996,55.43549225500005],[-132.65453040299985,55.42121002800015],[-132.64244544199994,55.43292877800006],[-132.6310929029999,55.44643789300004],[-132.61701412699983,55.457505601000044],[-132.55524654899995,55.468410549000126],[-132.54686438699989,55.47260163000006],[-132.5449112619999,55.48208242400007],[-132.5446671209999,55.491400458000115],[-132.54157467399986,55.49567291900003],[-132.53441321499986,55.49762604400017],[-132.5191137359999,55.50665924700017],[-132.51113847599993,55.50934479400014],[-132.50108801999997,55.50958893400009],[-132.49596106699994,55.50775788000011],[-132.49160722599987,55.50507233300014],[-132.48379472599987,55.503119208],[-132.46495520699995,55.50218333500011],[-132.44322669199994,55.5035667990001],[-132.42121334499987,55.50800202000006],[-132.40127519399996,55.51679108300014],[-132.38390051999988,55.500392971000124],[-132.37523352799988,55.484767971000146],[-132.36156165299985,55.47296784100017],[-132.3026016919999,55.463568427000055],[-132.27692623599984,55.45270416900017],[-132.26797441299993,55.44135163],[-132.2913712229999,55.43488190300009],[-132.30553137899992,55.436835028000026],[-132.32408606699994,55.44708893400014],[-132.33922278599994,55.44790273600007],[-132.35045325399994,55.44367096600014],[-132.35850989499997,55.43675364800005],[-132.36807206899994,55.43024323100015],[-132.38390051999988,55.42743561400012],[-132.4413142569999,55.42706940300009],[-132.4695531889999,55.42129140800012],[-132.48379472599987,55.406927802000055],[-132.47826087099986,55.39057038000014],[-132.45677649599992,55.394842841000134],[-132.4115291009999,55.41376373900009],[-132.40099036399994,55.4115257830001],[-132.38857988199993,55.40570709800015],[-132.37828528599988,55.397935289000046],[-132.36994381399992,55.38117096600003],[-132.3609106109999,55.383246161000145],[-132.3466690749999,55.39325592700011],[-132.3411352199999,55.39581940300003],[-132.33210201699987,55.40363190300003],[-132.32555091099988,55.406927802000055],[-132.32461503799993,55.40599192900008],[-132.25011145699995,55.41376373900009],[-132.24274654899995,55.40916575700014],[-132.21288001199986,55.376532294000086],[-132.20099850199992,55.36920807500009],[-132.1880590489999,55.368312893],[-132.17454993399994,55.36884186400009],[-132.16104081899996,55.36595286700005],[-132.15489661399988,55.36595286700005],[-132.15900631399984,55.35602448100003],[-132.16104081899996,55.3522809920001],[-132.15029863199993,55.346380927000084],[-132.14565995999993,55.33722565300009],[-132.14395097599993,55.325018622000115],[-132.1328832669999,55.32306549700017],[-132.1242569649999,55.318019924000126],[-132.12120520699997,55.311224677000105],[-132.12694251199986,55.30390045799999],[-132.1026098299999,55.28803131700008],[-132.09072831899994,55.276800848000065],[-132.0952856109999,55.26707591400013],[-132.12010657499994,55.25608958500008],[-132.14818274599995,55.24860260600009],[-132.17967688699986,55.24506256700012],[-132.21214758999994,55.24713776200003],[-132.2430313789999,55.25608958500008],[-132.23631751199994,55.244940497000144],[-132.24156653599994,55.23407623900006],[-132.24937903599994,55.222235419000114],[-132.25047766799986,55.20831940300003],[-132.24022376199994,55.197211005],[-132.22638912699983,55.19428131700006],[-132.21776282499994,55.198431708000115],[-132.22313391799992,55.20831940300003],[-132.2031143869999,55.22919342699999],[-132.1724747389999,55.22500234600006],[-132.11388098899988,55.20148346600011],[-132.08336341099994,55.210109768],[-132.05068925699987,55.258937893],[-132.02765865799984,55.270412502000156],[-132.00259355399993,55.271918036],[-131.99429277299996,55.268133856000176],[-131.98355058499993,55.25608958500008],[-131.97744706899994,55.24542877800003],[-131.97301184799997,55.23236725500006],[-131.9702042309999,55.2184105490001],[-131.96930904899995,55.20490143400012],[-131.9759822259999,55.176947333000086],[-131.99181067599994,55.15827057500012],[-132.0099991529999,55.14154694200009],[-132.02391516799992,55.11953359600007],[-131.98981686099987,55.11953359600007],[-132.0014542309999,55.104478257000046],[-132.01895097599993,55.091376044000086],[-132.0390518869999,55.08209870000003],[-132.05833899599992,55.07859935100005],[-132.06607011599993,55.08274974199998],[-132.08128821499992,55.101060289000046],[-132.09284420499984,55.10529205900014],[-132.1003311839999,55.101263739],[-132.09707597599987,55.09251536700013],[-132.08812415299994,55.08344147300012],[-132.07852128799996,55.07859935100005],[-132.08751380099997,55.072943427000055],[-132.09776770699992,55.070379950000145],[-132.10875403599997,55.07001373900012],[-132.12010657499994,55.07111237200017],[-132.12010657499994,55.06427643400015],[-132.0908910799999,55.05609772300015],[-132.07689368399994,55.04877350500014],[-132.0754288399999,55.04010651200015],[-132.0864965489999,55.0346540390001],[-132.11742102799985,55.032782294000135],[-132.15233313699989,55.016058661000116],[-132.20885169199988,55.00263092700011],[-132.22313391799992,54.98920319200012],[-132.17878170499986,54.98920319200012],[-132.1670629549999,54.98725006700009],[-132.15859941299993,54.98281484600001],[-132.15233313699989,54.9781761740001],[-132.1345922519999,54.97016022300012],[-132.12730872299997,54.970933335000055],[-132.10879472599996,54.98574453300013],[-132.10195878799993,54.98822663000006],[-132.0965063139999,54.98525625200013],[-132.0921931629999,54.975531317],[-132.06997636599993,55.001125393000066],[-132.03538977799994,55.02277252800014],[-131.99681555899988,55.03449127800015],[-131.9630427729999,55.03021881700015],[-131.97427324099988,55.024644273000135],[-131.98127193899987,55.01675039300015],[-131.98253333199997,55.00682200700005],[-131.9767146479999,54.99542877800009],[-131.9971410799999,54.98436107000005],[-132.00519771999993,54.977687893],[-132.01024329299986,54.96808502800012],[-131.9767146479999,54.96971263200013],[-131.96930904899995,54.96808502800012],[-131.96182206899996,54.95770905200011],[-131.96519934799989,54.951890367000075],[-131.9724828769999,54.94725169500004],[-131.9767146479999,54.94082265800013],[-131.97606360599985,54.908148505],[-131.98477128799996,54.90591054900001],[-132.01024329299986,54.90729401200017],[-132.03355872299997,54.905585028000175],[-132.04702714799996,54.89858633],[-132.04539954299992,54.88719310100013],[-132.02391516799992,54.872503973000114],[-131.98550370999988,54.861070054],[-131.96861731699988,54.85350169500013],[-131.9556371739999,54.838324286000145],[-131.96011308499996,54.83405182500003],[-131.96495520699995,54.83197663000011],[-131.97036699099988,54.83136627800015],[-131.9767146479999,54.83152903900013],[-131.95767167899993,54.828111070000105],[-131.95685787699992,54.81720612200003],[-131.95897376199989,54.803045966000106],[-131.9488012359999,54.78998444200011],[-131.96312415299988,54.785467841000084],[-131.97838294199994,54.783758856000176],[-132.01024329299986,54.783758856000176],[-131.99657141799992,54.77692291900014],[-132.00243079299986,54.765448309000114],[-132.00137285099993,54.75576406500014],[-131.99791419199994,54.74624258000016],[-131.99657141799992,54.735296942],[-132.00031490799986,54.72272370000009],[-132.00560462099992,54.712958075000145],[-132.00820878799993,54.70400625200013],[-132.0040177069999,54.693793036],[-132.06753495999988,54.69904205900018],[-132.0822647779999,54.704657294000086],[-132.0960994129999,54.71271393400012],[-132.11107337099992,54.716701565],[-132.11774654899997,54.71369049700009],[-132.1064346999999,54.701239325000174],[-132.14997311099992,54.698635158000066],[-132.20079505099994,54.72524648600002],[-132.24722245999993,54.74331289300012],[-132.27774003799996,54.71482982000013],[-132.29238847599987,54.727484442],[-132.29759680899986,54.74445221600017],[-132.2944229809999,54.76215241100009],[-132.2840063139999,54.77692291900014],[-132.26561438699986,54.78465403900007],[-132.22451738199987,54.79165273600013],[-132.21629798099988,54.80365631700006],[-132.21890214799987,54.81028880400014],[-132.2259822259999,54.814683335000105],[-132.23582923099985,54.81720612200003],[-132.24673417899993,54.81785716399999],[-132.25914466099997,54.815171617000104],[-132.26622473899994,54.80902741100011],[-132.27135169199994,54.802191473],[-132.27774003799996,54.79743073100012],[-132.29979407499985,54.79433828300013],[-132.33649654899995,54.80341217700011],[-132.3596899079999,54.80365631700006],[-132.33653723899994,54.81488678600009],[-132.28302975199983,54.83100006700015],[-132.26475989499994,54.844549872000115],[-132.27586829299992,54.85370514500009],[-132.31029212099992,54.85993073100015],[-132.32555091099988,54.86627838700018],[-132.31432044199985,54.87067291900014],[-132.30280514199987,54.87238190300014],[-132.27774003799996,54.872503973000114],[-132.27774003799996,54.87933991100006],[-132.3159073559999,54.88300202],[-132.33568274599995,54.887884833000086],[-132.3497208319999,54.89642975499999],[-132.35212154899995,54.90460846600011],[-132.3497208319999,54.91229889500012],[-132.34992428299986,54.91803620000009],[-132.3599747389999,54.92031484600007],[-132.36974036399997,54.92121002800015],[-132.37857011599993,54.92397695500013],[-132.38658606699997,54.928412177],[-132.39386959499987,54.93455638200008],[-132.37804114499994,54.940130927],[-132.36961829299992,54.94155508000016],[-132.3596899079999,54.94082265800013],[-132.3679906889999,54.95099518400018],[-132.38727779899992,54.96442291900017],[-132.39386959499987,54.975531317],[-132.3946020169999,54.98822663000006],[-132.39098059799994,55.00096263200011],[-132.38019771999984,55.02338288000011],[-132.40269934799994,55.0152855490001],[-132.41201738199987,54.99371979400008],[-132.41490637899992,54.97150299700003],[-132.41803951699987,54.961249091000106],[-132.4153946609999,54.95600006700011],[-132.4175512359999,54.94391510600011],[-132.42259680899994,54.93016185099999],[-132.42857825399994,54.92031484600007],[-132.4361466139999,54.916571356000034],[-132.4729711579999,54.90729401200017],[-132.48558508999983,54.907375393000066],[-132.49526933499993,54.908880927000105],[-132.5014542309999,54.913763739],[-132.50373287699986,54.92401764500012],[-132.49767005099994,54.93305084800012],[-132.48363196499992,54.935777085],[-132.46788489499994,54.93691640800013],[-132.45653235599985,54.94082265800013],[-132.44416256399984,54.9630394550001],[-132.4522192049999,54.98053620000003],[-132.47081458199997,54.9936384140001],[-132.49006100199983,55.002875067000055],[-132.49547278599994,54.96527741100006],[-132.51886959499987,54.944159247000144],[-132.5502009759999,54.940252997000144],[-132.57941646999984,54.954413153000175],[-132.5934138659999,54.96824778899999],[-132.59813391799992,54.97601959800009],[-132.5999242829999,54.985500393000095],[-132.59601803299986,54.989081122000144],[-132.57534745999988,54.977118231000034],[-132.5657852859999,54.975531317],[-132.55553137899997,54.986395575000174],[-132.55186926999994,55.00067780200008],[-132.54649817599994,55.012640692],[-132.53099524599995,55.016546942],[-132.54670162699992,55.02020905200005],[-132.56696529899995,55.021429755000085],[-132.57949785099993,55.02704498900009],[-132.57192949099988,55.0438500020001],[-132.55345618399983,55.052435614],[-132.5298966139999,55.05011627800003],[-132.5052791009999,55.044663804],[-132.48379472599987,55.0438500020001],[-132.46495520699995,55.05072663],[-132.53099524599995,55.058050848],[-132.54295813699989,55.07021719000009],[-132.53917395699995,55.08364492400007],[-132.51113847599993,55.11273834800015],[-132.52928626199994,55.11546458500011],[-132.5449112619999,55.12152741100003],[-132.5598038399999,55.12409088700012],[-132.5756729809999,55.11615631700015],[-132.60285396999993,55.06952545800014],[-132.6129044259999,55.06427643400015],[-132.62661699099993,55.08563873900012],[-132.6085505849999,55.119208075000145],[-132.5790909499999,55.15131256700012],[-132.55833899599992,55.167914130000085],[-132.57583574099985,55.17499420800014],[-132.5891820949999,55.18626536700013],[-132.60985266799992,55.21173737200003],[-132.6332087879999,55.230902411],[-132.6402074859999,55.24054596600017],[-132.6408585279999,55.25608958500008],[-132.6574600899999,55.24184804900007],[-132.65583248599987,55.218980210000055],[-132.64244544199994,55.19773997600008],[-132.62376868399988,55.18842194200012],[-132.61611894399994,55.18195221600003],[-132.61530514199984,55.16766998900012],[-132.62047278599994,55.15338776200004],[-132.6309301419999,55.146877346000124],[-132.69611568899984,55.146877346000124],[-132.70685787699986,55.14923737200009],[-132.7364395819999,55.167914130000085],[-132.7748917309999,55.183050848000065],[-132.7848201159999,55.18842194200012],[-132.79898027299993,55.20514557500014],[-132.8082169259999,55.22821686400012],[-132.80931555899994,55.25189850500014],[-132.7991430329999,55.270412502000156],[-132.82673092399992,55.27545807500009],[-132.8404434889999,55.274888414000095],[-132.84630286399988,55.266669012000115],[-132.84776770699995,55.25751373900014],[-132.85122636599993,55.24823639500009],[-132.85562089799993,55.240423895],[-132.85997473899994,55.235581773000106],[-132.88170325399986,55.22581614800008],[-132.9287003249999,55.21747467700003],[-132.94933020699995,55.20831940300003],[-133.03042558499988,55.21409739799999],[-133.0350235669999,55.22565338700012],[-133.0255427729999,55.23016998900006],[-132.98350989499994,55.235581773000106],[-132.91372636599988,55.26471588700014],[-132.9051000639999,55.271063544000114],[-132.9015193349999,55.28025950700008],[-132.9097794259999,55.28522370000003],[-132.9282934239999,55.28335195500016],[-132.95958411399997,55.276556708000115],[-133.08653723899988,55.276556708000115],[-133.08372962099992,55.27277252800011],[-133.0790909499999,55.26292552299999],[-133.09219316299988,55.27081940300014],[-133.10391191299996,55.27977122599999],[-133.11611894399994,55.287176825000174],[-133.1309301419999,55.29026927300004],[-133.14720618399994,55.28823476800012],[-133.1740616529999,55.279201565000115],[-133.1888728509999,55.276556708000115],[-133.21296139199993,55.279201565000115],[-133.2170304029999,55.28839752800009],[-133.2149145169999,55.301174221000124],[-133.22028561099984,55.31443919500008],[-133.2324926419999,55.3220075540001],[-133.2455134759999,55.327337958000086],[-133.25706946499992,55.33392975500006],[-133.26463782499988,55.345445054],[-133.24819902299987,55.34715403900002],[-133.2403458319999,55.35468170800006],[-133.2359106109999,55.364447333],[-133.22988847599993,55.372788804000045],[-133.21800696499986,55.38031647300012],[-133.2066137359999,55.38446686400006],[-133.1940811839999,55.38613515800007],[-133.17870032499985,55.386419989],[-133.17422441299988,55.38532135600015],[-133.16242428299992,55.379380601000136],[-133.15249589799993,55.37230052300008],[-133.14972896999987,55.374172268000116],[-133.1477758449999,55.37807851800012],[-133.14419511599993,55.38027578300013],[-133.06065833199997,55.368597723000114],[-133.05235755099986,55.36595286700005],[-133.0333552729999,55.353949286000116],[-133.03189042899993,55.3522809920001],[-133.01773027299993,55.35032786700007],[-132.87242591099994,55.35907623900012],[-132.84630286399988,55.3522809920001],[-132.8698624339999,55.36391836100002],[-132.95616614499994,55.372788804000045],[-133.0078018869999,55.388128973],[-133.02871660099987,55.40058014500012],[-133.02448482999984,55.41376373900009],[-133.03107662699992,55.422430731000176],[-133.0406794909999,55.4269880230001],[-133.05247962099986,55.428412177],[-133.06541907499988,55.42743561400012],[-133.0467016269999,55.437079169000086],[-133.0237930979999,55.44428131700011],[-132.9996231759999,55.44818756700003],[-132.97728430899986,55.44790273600007],[-133.00820878799993,55.45746491100006],[-133.07530676999988,55.451117255000135],[-133.10700436099984,55.46214427299999],[-133.1258438789999,55.483587958000115],[-133.12486731699988,55.50218333500011],[-133.1116430329999,55.51959870000009],[-133.0933731759999,55.53729889500009],[-133.08702551999994,55.54682038],[-133.0778702459999,55.57001373900012],[-133.07286536399994,55.57827383],[-133.06411699099988,55.58291250200013],[-133.02448482999984,55.59870026200018],[-133.00015214799987,55.61497630400011],[-132.98648027299993,55.62177155200013],[-132.96983801999988,55.62665436400003],[-132.92267818899987,55.62763092699999],[-132.90835527299993,55.632879950000174],[-132.92296301999994,55.63735586100013],[-132.93834387899997,55.63971588700018],[-132.96983801999988,55.63971588700018],[-132.98277747299989,55.637030341000106],[-133.01451575399992,55.62665436400003],[-133.0630997389999,55.623480536000145],[-133.20360266799992,55.58690013200011],[-133.25129146999987,55.58478424700008],[-133.3570450509999,55.61619700700013],[-133.3790583979999,55.6297875020001],[-133.38817298099985,55.65021393400015],[-133.3867895169999,55.66205475500011],[-133.38219153599997,55.66950104400008],[-133.3737686839999,55.67328522300012],[-133.34146074099988,55.677720444999984],[-133.34194902299987,55.685451565],[-133.36025956899994,55.701117255000085],[-133.3681534499999,55.703558661000116],[-133.3785701159999,55.704535223000086],[-133.38524329299986,55.709295966000084],[-133.38194739499994,55.72284577000015],[-133.3704320949999,55.73334381700012],[-133.35753333199995,55.73061758000015],[-133.34552975199986,55.72117747600013],[-133.33633378799988,55.71198151200015],[-133.32396399599992,55.709295966000084],[-133.31798255099994,55.726385809000035],[-133.31346594999988,55.749172268000144],[-133.30565344999988,55.76386139500006],[-133.29336503799993,55.757757880000085],[-133.26520748599984,55.74795156500012],[-133.23668372299994,55.745062567],[-133.22370357999984,55.76007721600003],[-133.21397864499988,55.78335195500013],[-133.1913956369999,55.797186591000134],[-133.1660863919999,55.80707428600006],[-133.14793860599988,55.81842682500003],[-133.14297441299993,55.832261460000105],[-133.13988196499994,55.85455963700014],[-133.13980058499996,55.87661367400006],[-133.14419511599993,55.88983795799999],[-133.15636145699995,55.89622630400011],[-133.1588435539999,55.89020416900003],[-133.15664628799996,55.880764065],[-133.15477454299992,55.876776434000035],[-133.1611221999999,55.865668036],[-133.1750382149999,55.865668036],[-133.21768144399994,55.88369375200013],[-133.2272843089999,55.89057038000014],[-133.23672441299993,55.90033600500008],[-133.24087480399987,55.909979559000035],[-133.24864661399997,55.935980536000116],[-133.2541397779999,55.941351630000085],[-133.25975501199989,55.94529857000007],[-133.25035559799994,55.953436591000084],[-133.23680579299992,55.959784247000115],[-133.22988847599993,55.95868561400006],[-133.2317602199999,55.97036367400006],[-133.2441300119999,55.9965681010001],[-133.24620520699995,56.03558991100009],[-133.2502335279999,56.05597565300015],[-133.27912350199992,56.076402085000105],[-133.27814693899984,56.102484442],[-133.26463782499988,56.147406317],[-133.28551184799994,56.16738515800007],[-133.33120683499996,56.17255280200008],[-133.42540442599994,56.16791413000006],[-133.44347083199997,56.169826565],[-133.45775305899988,56.174994208000115],[-133.49030514199984,56.19147370000009],[-133.50837154899995,56.19171784100014],[-133.56191972599987,56.18378327000009],[-133.57310950399997,56.184963283000016],[-133.5759985019999,56.18817780200005],[-133.5930069649999,56.202053127000156],[-133.60627193899987,56.20994700700011],[-133.61099199099993,56.210760809000035],[-133.61217200399994,56.212347723000065],[-133.61473548099985,56.22247955900012],[-133.6153865229999,56.23041413],[-133.61339270699995,56.24713776200012],[-133.61473548099985,56.257269598000065],[-133.61904863199993,56.26032135600015],[-133.62710527299987,56.264064846],[-133.6339005199999,56.26951732000013],[-133.63459225199986,56.277777411000116],[-133.61961829299992,56.289496161000116],[-133.5763240229999,56.2926292990001],[-133.56631425699993,56.30442942900005],[-133.57266191299988,56.31439850500006],[-133.58779863199987,56.32733795800006],[-133.61473548099985,56.34540436400009],[-133.61473548099985,56.35285065300014],[-133.58678137899992,56.35285065300014]]],[[[-157.82188880099994,56.31753164300012],[-157.8333227199999,56.31366608300011],[-157.8488256499999,56.3198102890001],[-157.86742102799988,56.329250393],[-157.88487708199986,56.333563544000114],[-157.89838619699992,56.33905670800014],[-157.89740963399996,56.34739817900011],[-157.8565567699999,56.362127997000115],[-157.82616126199994,56.36163971600002],[-157.8113907539999,56.356146552],[-157.8112686839999,56.35370514500014],[-157.81273352799985,56.34902578300013],[-157.81232662699995,56.342922268000144],[-157.81232662699995,56.34288157800016],[-157.80732174399992,56.33588288000008],[-157.8060196609999,56.328802802000105],[-157.81244869699992,56.32330963700017],[-157.82188880099994,56.31753164300012]]],[[[-132.6408585279999,56.44220612200017],[-132.63267981699994,56.43065013200005],[-132.62340247299994,56.40875885600012],[-132.6129044259999,56.40062083499999],[-132.62437903599994,56.38760000200001],[-132.65965735599988,56.368231512000094],[-132.6682022779999,56.35285065300014],[-132.66392981699988,56.34186432500009],[-132.63463294199997,56.30442942900005],[-132.64720618399986,56.28241608300006],[-132.66795813699986,56.27460358300005],[-132.69163977799988,56.27069733300005],[-132.73273678299986,56.25165436400006],[-132.81965084499984,56.23615143400015],[-132.86888587099986,56.24347565300015],[-132.99087480399993,56.311916408000044],[-133.03888912699992,56.330511786000116],[-133.05524654899995,56.34479401200012],[-133.0489395819999,56.362779039000046],[-132.99282792899987,56.418605861000124],[-132.96983801999988,56.43480052299999],[-132.94668535099993,56.445786851000044],[-132.92422441299993,56.451971747000115],[-132.87425696499992,56.45526764500015],[-132.85757402299987,56.453273830000015],[-132.82559160099987,56.444281317],[-132.80874589799987,56.44220612200017],[-132.79674231699994,56.443915106000176],[-132.7575577459999,56.45526764500015],[-132.70295162699986,56.46210358300006],[-132.65290279899995,56.448675848000065],[-132.6408585279999,56.44220612200017]]],[[[-132.15151933499996,56.351996161000145],[-132.12389075399994,56.34320709800009],[-132.10301673099988,56.3491071640001],[-132.08088131399992,56.36131419499999],[-132.0528051419999,56.36204661700013],[-132.02513587099992,56.353908596],[-132.0040177069999,56.33917877800012],[-131.99274654899992,56.32233307500012],[-131.9776912099999,56.28546784100014],[-131.9400935539999,56.233058986000074],[-131.92804928299986,56.210516669000086],[-131.92833411399994,56.19456614799999],[-131.9522192049999,56.18585846600008],[-131.9768774079999,56.19090403900013],[-131.99620520699992,56.18854401200018],[-132.0040177069999,56.157375393000095],[-132.0132543609999,56.141343492000104],[-132.03429114499988,56.128322658000016],[-132.05728105399987,56.12034739800005],[-132.0723363919999,56.11945221600017],[-132.08503170499986,56.13214752800003],[-132.09072831899994,56.14887116100006],[-132.0991918609999,56.162909247000115],[-132.12010657499994,56.16791413000006],[-132.11803137899992,56.156724351000136],[-132.12877356699994,56.15814850500011],[-132.14464270699995,56.167059637000065],[-132.1579483709999,56.178127346000096],[-132.17577063699986,56.18943919500007],[-132.2430313789999,56.202053127000156],[-132.27041581899994,56.214016018000095],[-132.30646725199992,56.23456452000012],[-132.3382462229999,56.25779857000005],[-132.35289466099997,56.277777411000116],[-132.3271378249999,56.33026764500009],[-132.33018958199992,56.34243398600016],[-132.3466690749999,56.35968659100016],[-132.34650631399984,56.370428778000175],[-132.3423559239999,56.37689850499999],[-132.3370255199999,56.383368231000084],[-132.33299719999988,56.39378489799999],[-132.33336341099988,56.407945054000024],[-132.3389379549999,56.42243073100015],[-132.34919186099992,56.43716054900012],[-132.36339270699995,56.45184967700014],[-132.37661699099988,56.47186920800003],[-132.37535559799997,56.488470770000056],[-132.36204993399986,56.49457428600006],[-132.33922278599994,56.48322174700017],[-132.26089433499993,56.458929755],[-132.23989824099993,56.44529857000005],[-132.22760982999986,56.429266669000164],[-132.20913652299993,56.395453192],[-132.1958715489999,56.38019440300003],[-132.17813066299993,56.36713288000014],[-132.15151933499996,56.351996161000145]]],[[[-153.89350338399996,56.53522370000014],[-153.92817135299993,56.51666901200003],[-153.96568762899994,56.50462474200013],[-153.99071204299983,56.50706614800007],[-154.00597083199995,56.51300690300009],[-154.02464758999992,56.51105377800003],[-154.0592748689999,56.50364817900005],[-154.1003311839999,56.502386786000145],[-154.1205948559999,56.50413646000014],[-154.13780676999994,56.510484117000075],[-154.11908932199995,56.52374909100011],[-154.09312903599988,56.536688544000114],[-154.06904049399992,56.54140859600001],[-154.0558162099999,56.53034088700018],[-154.04364986899992,56.54759349199999],[-154.02045650899987,56.555487372000144],[-153.87714596299995,56.56513092700011],[-153.87714596299995,56.55206940300015],[-153.89350338399996,56.53522370000014]]],[[[-157.0606176419999,56.582220770000056],[-157.0447485019999,56.572984117000104],[-157.0087784499999,56.5639509140001],[-156.99238033799992,56.55516185100013],[-156.97826087099983,56.53652578300013],[-156.98835201699995,56.53058502800012],[-157.0062963529999,56.53343333500005],[-157.02594967399995,56.54995351800012],[-157.04893958199992,56.55292389500015],[-157.13947506399984,56.55206940300015],[-157.14549719999988,56.548895575000174],[-157.1558731759999,56.534409898000135],[-157.15998287699992,56.53034088700018],[-157.16856848899994,56.53123607000007],[-157.17792721299986,56.53583405200002],[-157.1877335279999,56.53864166900014],[-157.20543372299989,56.53017812700001],[-157.3087052069999,56.5306664080001],[-157.3312475249999,56.5241559920001],[-157.32709713399993,56.53485748900012],[-157.31757564999992,56.54848867400007],[-157.30711829299986,56.56020742400006],[-157.30052649599992,56.56513092700011],[-157.28636633999986,56.568670966000106],[-157.25926673099994,56.5834007830001],[-157.24250240799992,56.58563873900009],[-157.20262610599985,56.58209870000008],[-157.0985815089999,56.59398021000005],[-157.0606176419999,56.582220770000056]]],[[[-154.46141516799992,56.60537344],[-154.42516028599994,56.59304433800015],[-154.42516028599994,56.59300364800008],[-154.41563880099991,56.58746979400014],[-154.40790768099993,56.57900625200001],[-154.40208899599983,56.56883372600008],[-154.3985082669999,56.558294989],[-154.4106339179999,56.54759349199999],[-154.42406165299988,56.54140859600001],[-154.44013424399995,56.538519598000086],[-154.44664466099985,56.53864166900014],[-154.43451900899996,56.54181549700003],[-154.4247940749999,56.548041083000086],[-154.41901607999992,56.558294989],[-154.4302872389999,56.55678945500016],[-154.4407445949999,56.554144598000065],[-154.45051021999993,56.550238348000065],[-154.45995032499988,56.544663804000045],[-154.4428197909999,56.581203518],[-154.4748429029999,56.598089911],[-154.51671301999994,56.59015534100003],[-154.52887936099992,56.55206940300015],[-154.49799557199987,56.5306664080001],[-154.4875382149999,56.516791083000115],[-154.50495357999992,56.510484117000075],[-154.53099524599992,56.50800202000014],[-154.55968176999988,56.50153229400014],[-154.61078854099986,56.48322174700017],[-154.6707250639999,56.44122955900009],[-154.69981848899988,56.426906643],[-154.7169083319999,56.410874742000125],[-154.73822994699987,56.398260809000035],[-154.7678116529999,56.40062083499999],[-154.7912491529999,56.430853583],[-154.7704971999999,56.47085195500013],[-154.73143469999994,56.508205471],[-154.70014400899987,56.53034088700018],[-154.5363256499999,56.59760163000011],[-154.49933834499996,56.60545482],[-154.46141516799992,56.60537344]]],[[[-154.0825902989999,56.60610586100013],[-154.0774633449999,56.59178294500005],[-154.06843014199987,56.58051178600006],[-154.05809485599985,56.57013580900015],[-154.04906165299985,56.558294989],[-154.08075924399992,56.576849677000105],[-154.09345455599987,56.578802802000055],[-154.10399329299992,56.574896552000055],[-154.10204016799992,56.56614817899999],[-154.09308834499987,56.557074286],[-154.0825902989999,56.55206940300015],[-154.09056555899986,56.546698309000085],[-154.13890540299985,56.53168366100006],[-154.14155025899996,56.53034088700018],[-154.1583145819999,56.52619049700003],[-154.19139563699989,56.50787995000017],[-154.21007239499988,56.50364817900005],[-154.2801407539999,56.50657786699998],[-154.32213294199988,56.515082098],[-154.33381100199986,56.519598700000145],[-154.34162350199992,56.52814362200009],[-154.35008704299992,56.544663804000045],[-154.33775794199994,56.563910223],[-154.31041419199988,56.58380768400009],[-154.27900143099993,56.59780508000016],[-154.24767005099986,56.60610586100013],[-154.2261856759999,56.60834381700012],[-154.16572018099995,56.60610586100013],[-154.12409420499986,56.612616278000026],[-154.10301673099988,56.61318594],[-154.0825902989999,56.60610586100013]]],[[[-169.7429906889999,56.62034739800004],[-169.60802161399994,56.60333893400018],[-169.58088131399992,56.60952383000016],[-169.55699622299986,56.61810944200006],[-169.5231420559999,56.61627838700018],[-169.4915258449999,56.606919664000046],[-169.4743546209999,56.59300364800008],[-169.51508541599995,56.578517971000124],[-169.55016028599994,56.55695221600003],[-169.58690344999994,56.54140859600001],[-169.63267981699994,56.544663804000045],[-169.65302486899992,56.554144598000065],[-169.67845618399994,56.57611725500008],[-169.6934708319999,56.58563873900009],[-169.76622473899994,56.606878973000065],[-169.78905188699994,56.62034739800004],[-169.7429906889999,56.62034739800004]]],[[[-132.88223222599987,56.80117422100001],[-132.87051347599987,56.79783763200008],[-132.8336482409999,56.79913971600017],[-132.81631425699993,56.79734935099999],[-132.7519425119999,56.759222723],[-132.7438858709999,56.74697500200013],[-132.73326575399994,56.7259789080001],[-132.7097875639999,56.70990631700011],[-132.68626868399988,56.698675848000114],[-132.67564856699994,56.69208405200014],[-132.67145748599984,56.68382396000005],[-132.6615291009999,56.67963288000011],[-132.6408585279999,56.674994208],[-132.62913977799994,56.66901276200018],[-132.6233617829999,56.66526927300005],[-132.60838782499994,56.64801666900014],[-132.5991918609999,56.63377513200013],[-132.5930883449999,56.626532294000114],[-132.58381100199983,56.61810944200006],[-132.57721920499986,56.61408112200009],[-132.55833899599992,56.60610586100013],[-132.5484919909999,56.603745835],[-132.53970292899993,56.60350169500005],[-132.5334366529999,56.60032786699999],[-132.53099524599995,56.58930084800012],[-132.5334366529999,56.58030833500011],[-132.53945878799988,56.576402085000105],[-132.54735266799983,56.57387929900001],[-132.55524654899995,56.56854889500012],[-132.57371985599985,56.55947500200013],[-132.6215714179999,56.55573151200009],[-132.63776607999984,56.548407294000086],[-132.6504613919999,56.53705475500011],[-132.66616777299987,56.529730536000116],[-132.68399003799993,56.527167059000114],[-132.70295162699986,56.53034088700018],[-132.7178442049999,56.54096100500011],[-132.73204505099994,56.55451080900018],[-132.74705969999982,56.55951569200012],[-132.76439368399994,56.544663804000045],[-132.73013261599996,56.521185614],[-132.72276770699995,56.510484117000075],[-132.74054928299986,56.508246161],[-132.7736710279999,56.499090887000094],[-132.79165605399993,56.496893622000115],[-132.91860917899993,56.507025458000086],[-132.93748938699989,56.51756419500013],[-132.94517981699988,56.536566473000114],[-132.95449785099993,56.59227122600005],[-132.9522192049999,56.60162995000017],[-132.94249426999994,56.612941799000154],[-132.92804928299986,56.61969635600009],[-132.89085852799985,56.629380601000044],[-132.88109290299988,56.64020416900014],[-132.88658606699994,56.65058014500015],[-132.92202714799996,56.68866608300014],[-132.9241430329999,56.702215887000094],[-132.92341061099984,56.717922268000066],[-132.9201554029999,56.73281484600003],[-132.91462154899995,56.74384186400006],[-132.9244278639999,56.757554429],[-132.95958411399997,56.787990627000156],[-132.9627986319999,56.79979075700011],[-132.95152747299994,56.81045156500015],[-132.92202714799996,56.8258324240001],[-132.88223222599987,56.80117422100001]]],[[[-133.98668372299997,56.86562734600009],[-133.9908341139999,56.83201732000008],[-133.97126217399995,56.83641185100005],[-133.96410071499992,56.83112213700015],[-133.95669511599993,56.79783763200008],[-133.95148678299992,56.80239492400001],[-133.94102942599994,56.80784739800004],[-133.9356176419999,56.812201239000146],[-133.93008378799996,56.80158112200011],[-133.9192602199999,56.77024974200005],[-133.9126684239999,56.763739325000145],[-133.9048966139999,56.76064687700007],[-133.90485592399992,56.75385163000006],[-133.90933183499985,56.74697500200013],[-133.92300370999993,56.74070872599999],[-133.92284094999985,56.733099677000055],[-133.92080644399994,56.723944403000175],[-133.9225968089999,56.71596914300004],[-133.9273168609999,56.712225653000175],[-133.93879146999987,56.706203518000066],[-133.94302324099988,56.702337958000086],[-133.9550675119999,56.67841217700011],[-133.95982825399986,56.67129140800016],[-133.9726456369999,56.660142320000126],[-133.98717200399994,56.6551781270001],[-134.0250138009999,56.653876044000086],[-133.99376380099994,56.639227606000176],[-133.96434485599994,56.64325592700013],[-133.93809973899994,56.659369208000115],[-133.91637122299994,56.68121979400014],[-133.91624915299988,56.68720123900009],[-133.91982988199993,56.694159247000144],[-133.92076575399994,56.69989655200014],[-133.9126684239999,56.702337958000086],[-133.9031876289999,56.70327383000016],[-133.8854874339999,56.70750560100008],[-133.87755286399994,56.70856354400002],[-133.8707576159999,56.71491120000014],[-133.8631078769999,56.72968170800014],[-133.85667883999986,56.74591705900017],[-133.85366777299996,56.75690338700003],[-133.8582250639999,56.78025950700014],[-133.86587480399993,56.80097077000015],[-133.86237545499984,56.809881903000175],[-133.8331599599999,56.79783763200008],[-133.81305904899995,56.78148021000005],[-133.8011775379999,56.77700429900009],[-133.76842200399997,56.785711981000176],[-133.75015214799993,56.783758856000034],[-133.7325333319999,56.77814362200002],[-133.71715247299994,56.77118561400014],[-133.7751358709999,56.69887929900007],[-133.78034420499992,56.686428127000156],[-133.7731013659999,56.676459052000055],[-133.76008053299992,56.669907944999984],[-133.73216712099986,56.66315338700004],[-133.7286270819999,56.65306224199999],[-133.7302953769999,56.641791083000086],[-133.73013261599993,56.63397858299999],[-133.70567786399988,56.6041527360001],[-133.70954342399992,56.594712632000075],[-133.7359106109999,56.567124742000075],[-133.74543209499987,56.56195709800006],[-133.75694739499994,56.55914948100012],[-133.7717992829999,56.558294989],[-133.77969316299988,56.56338125200013],[-133.7921036449999,56.588690497000165],[-133.7990616529999,56.59870026200014],[-133.82384192599994,56.60773346600016],[-133.90510006399987,56.62034739800004],[-133.9225968089999,56.616644598],[-133.9103897779999,56.60146719000004],[-133.85773678299992,56.58746979400014],[-133.8474828769999,56.56513092700011],[-133.85195878799993,56.563910223],[-133.87189693899984,56.53595612200017],[-133.87417558499993,56.53034088700018],[-133.88654537699986,56.524400132000046],[-133.9092504549999,56.52008698100014],[-133.9195043609999,56.51361725500014],[-133.92023678299986,56.50519440300009],[-133.91014563699989,56.497544664000074],[-133.89598548099985,56.492132880000106],[-133.88467363199987,56.49005768400009],[-133.86929277299993,56.48680247600005],[-133.8629044259999,56.478583075000145],[-133.85960852799988,56.46735260600015],[-133.85366777299996,56.45526764500015],[-133.84780839799993,56.450628973000114],[-133.82575436099992,56.44220612200017],[-133.8452042309999,56.434393622000165],[-133.88784745999993,56.44009023600016],[-133.90892493399986,56.43480052299999],[-133.89736894399994,56.4243024760001],[-133.88353430899994,56.41844310100008],[-133.87535559799994,56.410589911],[-133.88097083199995,56.39378489799999],[-133.88784745999993,56.39264557500006],[-133.8987930979999,56.394476630000106],[-133.90957597599993,56.39081452000006],[-133.91637122299994,56.37335846600011],[-133.85936438699994,56.359116929000024],[-133.84373938699986,56.3491071640001],[-133.84162350199983,56.33759186400009],[-133.8535863919999,56.31049225500006],[-133.8474828769999,56.2982445330001],[-133.86896725199992,56.284735419000114],[-133.89875240799992,56.30634186400012],[-133.93024654899995,56.33930084800009],[-133.95669511599993,56.35968659100016],[-133.97252356699994,56.36050039300009],[-133.97508704299983,56.35138580900009],[-133.97191321499992,56.33616771000011],[-133.97036699099993,56.318752346000124],[-133.97594153599994,56.29621002800015],[-133.9812719389999,56.28388092700011],[-133.97850501199986,56.278753973],[-133.95982825399986,56.277777411000116],[-133.92308508999992,56.28082916900002],[-133.90811113199996,56.276353257000046],[-133.8919164699999,56.22980377800003],[-133.89557857999986,56.219956773000106],[-133.9438370429999,56.21198151200015],[-133.94469153599988,56.20160553600006],[-133.92625891799986,56.17348867400015],[-133.92023678299986,56.1668968770001],[-133.9161677729999,56.159002997000115],[-133.9195043609999,56.15053945500007],[-133.9377335279999,56.137030341000084],[-133.94098873599984,56.130194403000175],[-133.9356176419999,56.11945221600017],[-133.94147701699984,56.10309479400014],[-133.94912675699996,56.09235260600003],[-133.96125240799986,56.08649323100009],[-133.98033606699994,56.08466217700011],[-133.9939672519999,56.08787669500008],[-134.0305069649999,56.10472239800007],[-134.0392960279999,56.11261627800014],[-134.0366918609999,56.1231957050001],[-134.00926673099994,56.185126044000164],[-134.0172419909999,56.19696686400012],[-134.03010006399992,56.20722077000015],[-134.0392960279999,56.216294664000046],[-134.0379939439999,56.23871491100006],[-134.03184973899994,56.274562893000066],[-134.03258216099994,56.306830145],[-134.0523168609999,56.318752346000124],[-134.0690811839999,56.30280182500003],[-134.06769771999993,56.27399323100009],[-134.0724177729999,56.24860260600017],[-134.1075333319999,56.24298737200017],[-134.0902400379999,56.19269440300012],[-134.12197831899996,56.17975495000012],[-134.16710364499994,56.18211497600008],[-134.1900935539999,56.178127346000096],[-134.16218014199987,56.13996002800012],[-134.15062415299994,56.13694896000011],[-134.14541581899994,56.13996002800012],[-134.14098059799994,56.144842841000084],[-134.13117428299984,56.147406317],[-134.10358639199993,56.140285549000126],[-134.09972083199992,56.12384674700014],[-134.10045325399994,56.10529205900003],[-134.08641516799992,56.09218984600007],[-134.09194902299993,56.08270905200008],[-134.10049394399994,56.076076565],[-134.12120520699995,56.06484609600001],[-134.1079809239999,56.05304596600002],[-134.10098222599993,56.03229401200004],[-134.1024063789999,56.01072825700011],[-134.11436926999994,55.9965681010001],[-134.12938391799995,55.99945709800012],[-134.14858964799993,56.01166413000011],[-134.15754146999993,56.02814362200009],[-134.1416723299999,56.04376862200017],[-134.16323808499993,56.05361562700001],[-134.21068274599992,56.06281159100017],[-134.2242325509999,56.078517971000124],[-134.2100317049999,56.08722565300003],[-134.2077530589999,56.098578192],[-134.21621660099993,56.10838450700011],[-134.2342016269999,56.11261627800014],[-134.23688717399995,56.11810944200009],[-134.22541256399992,56.130194403000175],[-134.2000626289999,56.15053945500007],[-134.19717363199996,56.16205475500003],[-134.2127172519999,56.168361721000146],[-134.2312719389999,56.17011139500014],[-134.23729407499988,56.16791413000006],[-134.24730383999986,56.17837148600013],[-134.2501114569999,56.18817780200005],[-134.2515356109999,56.216294664000046],[-134.25519771999993,56.22846100500014],[-134.26305091099994,56.24628327000003],[-134.26455644399994,56.260402736000124],[-134.25723222599996,56.27163320500012],[-134.22476152299987,56.25763580900017],[-134.21739661399988,56.26723867400007],[-134.21719316299993,56.28229401200018],[-134.21467037699992,56.291327216000084],[-134.20665442599994,56.29759349200004],[-134.1900935539999,56.30442942900005],[-134.16441809799994,56.306097723000065],[-134.16006425699993,56.31240469],[-134.16958574099993,56.332342841000084],[-134.18407141799992,56.326157945000126],[-134.23106848899994,56.311916408000044],[-134.2446182929999,56.30149974200013],[-134.2515356109999,56.2982445330001],[-134.26211503799993,56.29531484600007],[-134.27208411399994,56.293890692],[-134.28197180899994,56.29466380400011],[-134.2925512359999,56.2982445330001],[-134.2925512359999,56.30442942900005],[-134.2599177729999,56.3159040390001],[-134.26598059799994,56.3305524760001],[-134.28270423099985,56.346625067],[-134.28197180899994,56.362779039000046],[-134.27017167899996,56.36570872600008],[-134.23770097599987,56.36554596600011],[-134.23106848899994,56.36961497600008],[-134.23916581899994,56.404486395],[-134.23729407499988,56.41429271000014],[-134.2284236319999,56.42023346600014],[-134.21849524599992,56.416734117000075],[-134.20767167899993,56.41054922100001],[-134.19627844999988,56.40810781500006],[-134.1804093089999,56.412502346000146],[-134.17723548099988,56.418687242000104],[-134.18024654899997,56.427232164000046],[-134.18268795499992,56.438544012000115],[-134.17837480399993,56.441351630000085],[-134.16901607999986,56.43463776200012],[-134.15957597599996,56.42300039300004],[-134.15534420499984,56.411200262000065],[-134.15534420499984,56.36591217700011],[-134.14622962099995,56.37368398600013],[-134.11436926999994,56.39378489799999],[-134.1153865229999,56.39606354400014],[-134.11632239499997,56.40094635600012],[-134.11363684799989,56.405829169000086],[-134.10411536399988,56.40810781500006],[-134.08023027299993,56.40062083499999],[-134.06948808499993,56.38959381700015],[-134.06037350199992,56.37592194200003],[-134.05089270699992,56.36774323100009],[-134.0392960279999,56.37335846600011],[-134.03600012899994,56.383042710000055],[-134.0360408189999,56.40961334800003],[-134.03184973899994,56.42112864800005],[-134.0409236319999,56.43280670800014],[-134.0604141919999,56.448065497000115],[-134.06655839799987,56.46210358300006],[-134.0673721999999,56.47760651200018],[-134.0615942049998,56.484320380000106],[-134.0495499339999,56.48338450700014],[-134.03184973899994,56.475734768],[-134.03441321499992,56.48590729400014],[-134.03978430899988,56.497300523000106],[-134.0471899079999,56.506659247000144],[-134.05601966099994,56.510484117000075],[-134.05947831899994,56.515285549000154],[-134.06419837099992,56.53750234600004],[-134.06655839799987,56.544663804000045],[-134.08177649599986,56.55158112200014],[-134.09264075399992,56.53595612200017],[-134.10411536399988,56.51284414300012],[-134.12120520699995,56.496893622000115],[-134.1391495429999,56.498724677],[-134.15566972599996,56.51235586100013],[-134.17223059799994,56.53017812700001],[-134.1900935539999,56.544663804000045],[-134.21800696499994,56.55678945500016],[-134.24693762899994,56.56338125200013],[-134.2764786449999,56.56403229400017],[-134.30614173099994,56.558294989],[-134.30614173099994,56.56513092700011],[-134.22760982999992,56.60740794500005],[-134.18407141799992,56.615912177000084],[-134.15953528599997,56.62995026200012],[-134.1416723299999,56.63397858299999],[-134.10610917899993,56.628973700000145],[-134.0933324859999,56.631537177000055],[-134.08641516799992,56.64704010600015],[-134.11681067599994,56.6537946640001],[-134.14403235599985,56.65192291900006],[-134.22472083199997,56.62368398600007],[-134.24689693899987,56.62010325700002],[-134.2660212879999,56.626857815000115],[-134.28571529899995,56.64704010600015],[-134.26349850199992,56.65542226800012],[-134.24128170499986,56.65607330900017],[-134.2242325509999,56.66168854400017],[-134.21739661399988,56.68488190300012],[-134.22272701699984,56.694403387000094],[-134.23448645699995,56.69696686400012],[-134.24624589799993,56.695379950000174],[-134.2515356109999,56.69208405200014],[-134.2535701159999,56.67633698100009],[-134.25987708199995,56.67059967700011],[-134.3067520819999,56.66575755400014],[-134.3339737619999,56.668361721000124],[-134.35757402299993,56.67658112200003],[-134.3675837879999,56.69208405200014],[-134.39183508999992,56.719061591000106],[-134.39708411399988,56.72955963700015],[-134.39513098899994,56.74164459800006],[-134.38809160099987,56.75690338700003],[-134.39118404899995,56.78009674700017],[-134.40538489499997,56.819769598],[-134.4085587229999,56.84292226800012],[-134.40566972599993,56.852687893000066],[-134.3983048169999,56.86025625200013],[-134.3884985019999,56.865057684000114],[-134.3781632149999,56.86684804900001],[-134.36115475199992,56.86359284100014],[-134.35098222599996,56.85541413000014],[-134.3334854809999,56.83201732000008],[-134.3006485669999,56.803412177000084],[-134.2808731759999,56.792792059000035],[-134.27204342399995,56.80158112200011],[-134.27721106699994,56.82135651200004],[-134.2897843089999,56.83478424700003],[-134.30528723899994,56.84625885600015],[-134.31920325399992,56.85993073100009],[-134.32823645699995,56.88873932500003],[-134.30614173099994,56.897894598000036],[-134.2342016269999,56.894110419000086],[-134.2203263009999,56.88996002800015],[-134.18268795499992,56.85993073100009],[-134.1668188139999,56.85398997600007],[-134.1465551419999,56.84894440300006],[-134.12555904899995,56.84601471600003],[-134.1075333319999,56.846340236000124],[-134.1075333319999,56.853094794000086],[-134.12193762899997,56.86200592700011],[-134.14142818899987,56.884955145],[-134.15534420499984,56.894110419000086],[-134.19713294199997,56.90033600500006],[-134.2134496739999,56.90713125200007],[-134.21056067599994,56.92202383000012],[-134.2234594389999,56.92902252800012],[-134.26455644399994,56.941880601000136],[-134.23961341099994,56.94114817900011],[-134.1758520169999,56.92202383000012],[-134.1283259759999,56.91705963700018],[-134.10594641799986,56.9122582050001],[-134.08641516799992,56.90033600500006],[-134.0517471999999,56.89520905200014],[-134.01268469999982,56.88515859600006],[-133.98668372299997,56.86562734600009]]],[[[-133.76463782499982,57.07680898600001],[-133.6719457669999,57.060248114000146],[-133.58287512899992,57.050034898000106],[-133.5458064439999,57.03807200700008],[-133.49058997299997,57.03123607000005],[-133.46471106699997,57.024562893],[-133.41348222599993,57.003322658],[-133.38817298099985,56.997137762000065],[-133.33511308499996,56.99738190300009],[-133.3159073559999,56.9908714860001],[-133.29873613199987,56.96918366100011],[-133.2904353509999,56.950751044000086],[-133.27989661399994,56.93333567900011],[-133.2632543609999,56.92527903899998],[-133.23672441299993,56.9350446640001],[-133.2752579419999,56.966253973],[-133.2932836579998,56.988348700000174],[-133.29873613199987,57.010199286000116],[-133.23912512899997,56.99640534100003],[-133.10912024599986,56.99872467700008],[-133.05235755099986,56.98285553600006],[-133.04332434799989,56.965806382],[-133.0252172519999,56.950506903000026],[-133.0026749339999,56.93935781500012],[-132.98037675699993,56.9350446640001],[-132.96996008999986,56.92597077000012],[-132.95592200399992,56.905096747000144],[-132.9356583319999,56.86684804900001],[-132.9370011059999,56.85028717700014],[-132.9486384759999,56.83462148600016],[-132.96666419199994,56.822943427000055],[-132.98717200399997,56.81842682500012],[-132.99107825399997,56.80841705900012],[-132.9792374339999,56.78681061400012],[-132.95616614499994,56.75690338700003],[-132.95274817599994,56.7467308610001],[-132.94908606699988,56.70905182500011],[-132.95083574099988,56.701971747000144],[-132.94933020699995,56.69546133000016],[-132.94619706899996,56.69106679900007],[-132.9416397779999,56.68764883000007],[-132.93748938699989,56.68382396000005],[-132.9356583319999,56.67812734600007],[-132.93394934799989,56.64158763200014],[-132.94139563699989,56.626532294000114],[-132.96300208199997,56.612941799000154],[-132.97350012899994,56.609442450000174],[-132.9991755849999,56.605536200000174],[-133.0108129549999,56.60610586100013],[-133.02464758999992,56.612738348],[-133.0501195949999,56.635321356000176],[-133.06200110599985,56.64020416900014],[-133.08556067599991,56.64614492400006],[-133.11091061099984,56.660589911000116],[-133.18565833199995,56.721625067],[-133.19810950399994,56.736761786],[-133.2074275379999,56.770941473],[-133.21841386599996,56.787665106000034],[-133.23363196499994,56.80190664300012],[-133.25035559799994,56.812201239000146],[-133.25788326699984,56.80068594],[-133.2759903639999,56.80463288],[-133.33128821499994,56.83437734600001],[-133.34642493399994,56.83759186400006],[-133.35073808499993,56.832261460000026],[-133.32363847599993,56.799058335],[-133.32241777299987,56.78668854400014],[-133.32575436099992,56.77562083500011],[-133.3267309239999,56.763739325000145],[-133.31969153599994,56.75023021],[-133.3050837879999,56.73541901200012],[-133.28673255099994,56.727118231000034],[-133.2683813139999,56.73305898600015],[-133.25104732999992,56.74274323100012],[-133.23436438699989,56.74201080900009],[-133.22179114499986,56.731634833],[-133.21686764199993,56.712225653000175],[-133.21686764199993,56.67812734600007],[-133.2208552729999,56.67011139500012],[-133.23912512899997,56.65737539300006],[-133.2441300119999,56.64704010600015],[-133.2423396479999,56.63410065300015],[-133.23521887899997,56.63556549700003],[-133.22744706899988,56.64276764500006],[-133.22370357999984,56.64704010600015],[-133.21263587099992,56.64638906500012],[-133.19225012899992,56.64142487200017],[-133.16193600199983,56.63808828300013],[-133.13288326699987,56.63165924700003],[-133.10708574099993,56.62099844],[-133.0933731759999,56.60610586100013],[-133.10700436099984,56.59870026200014],[-133.1200251939999,56.605047919000086],[-133.13589433499996,56.60984935100007],[-133.15269934799997,56.612738348],[-133.16844641799992,56.612941799000154],[-133.16844641799992,56.60610586100013],[-133.1140844389999,56.59300364800008],[-133.1007380849999,56.58563873900009],[-133.09390214799987,56.57367584800015],[-133.0869848299999,56.543646552],[-133.0790909499999,56.53034088700018],[-133.13434811099992,56.53034088700018],[-133.12441972599993,56.51072825700011],[-133.1238500639998,56.491766669000114],[-133.1319067049999,56.475002346000096],[-133.14793860599988,56.46210358300006],[-133.16002356699988,56.457709052],[-133.17296301999988,56.45575592700013],[-133.19953365799984,56.45526764500015],[-133.22370357999984,56.46210358300006],[-133.22887122299994,56.465521552000084],[-133.23302161399988,56.470119533000016],[-133.23668372299994,56.475734768],[-133.26431230399993,56.479071356000034],[-133.31997636599996,56.471991278000175],[-133.3465876939999,56.475734768],[-133.35789954299986,56.48379140800013],[-133.36266028599988,56.49298737200003],[-133.3690486319999,56.50055573100015],[-133.3850805329999,56.50364817900005],[-133.4359431629999,56.50364817900005],[-133.42662512899997,56.49876536699999],[-133.41885331899988,56.49266185099999],[-133.41283118399988,56.48509349200005],[-133.40859941299993,56.475734768],[-133.42931067599994,56.47508372600008],[-133.42247473899994,56.463609117000104],[-133.44131425699987,56.453802802],[-133.52717037699992,56.439032294000114],[-133.62124589799993,56.44220612200017],[-133.65941321499992,56.46417877800009],[-133.65416419199994,56.556708075000174],[-133.6891983709999,56.571966864000146],[-133.67943274599986,56.584051825000145],[-133.6460668609999,56.592596747000165],[-133.63459225199986,56.60610586100013],[-133.6546524729999,56.605536200000174],[-133.6590470039999,56.614732164000046],[-133.65802975199983,56.62824127800011],[-133.66185462099995,56.64020416900014],[-133.67422441299988,56.64826080900018],[-133.6858617829999,56.65253327],[-133.6956680979999,56.659369208000115],[-133.70287024599995,56.674994208],[-133.70152747299994,56.69464752800014],[-133.69298255099994,56.71124909100011],[-133.68785559799994,56.730129299000126],[-133.69664466099988,56.75690338700003],[-133.68211829299986,56.75958893400012],[-133.67731686099987,56.765285549],[-133.67943274599986,56.77285390800016],[-133.6857804029999,56.78115469000012],[-133.6926977199999,56.792792059000035],[-133.68895423099988,56.79877350500006],[-133.67764238199987,56.798325914000074],[-133.66185462099995,56.79108307500003],[-133.67003333199995,56.81342194200006],[-133.67308508999994,56.83734772300012],[-133.6792699859999,56.85370514500014],[-133.69664466099988,56.853094794000086],[-133.6975805329999,56.849554755],[-133.6959122389999,56.83600495000003],[-133.69664466099988,56.83201732000008],[-133.7020564439999,56.82941315300015],[-133.71532141799986,56.82550690300015],[-133.72057044199994,56.82208893400015],[-133.72923743399986,56.81464264500009],[-133.7405899729999,56.808905341000106],[-133.75291907499988,56.807318427000084],[-133.7649633449999,56.812201239000146],[-133.75129146999984,56.81842682500012],[-133.75129146999984,56.8258324240001],[-133.76650956899994,56.824937242000104],[-133.78123938699989,56.826564846000124],[-133.79478919199988,56.83112213700015],[-133.80650794199997,56.839504299000126],[-133.8037003249999,56.84332916900014],[-133.7990616529999,56.853094794000086],[-133.81187903599994,56.85252513200011],[-133.82013912699992,56.85541413000014],[-133.82290605399987,56.86225006700006],[-133.81956946499994,56.872992255000085],[-133.83633378799993,56.87189362200002],[-133.8503311839999,56.868150132],[-133.8634333979999,56.86774323100009],[-133.87755286399994,56.876410223000086],[-133.89045162699983,56.893377997000144],[-133.88817298099988,56.901434637000094],[-133.87653561099987,56.90289948100015],[-133.86115475199992,56.90033600500006],[-133.7955216139999,56.88149648600002],[-133.76301021999984,56.88007233300014],[-133.7376195949999,56.894110419000086],[-133.7549535799999,56.900580145],[-133.8391820949999,56.919501044000114],[-133.88841712099992,56.95551178600009],[-134.01817786399988,57.0175641950001],[-134.01817786399988,57.02383047100007],[-134.01317298099994,57.02924225500011],[-134.01121985599988,57.03611888200011],[-134.01134192599994,57.05516185100011],[-134.0043839179999,57.06366608300006],[-133.98810787699983,57.06647370000009],[-133.95641028599988,57.06537506700006],[-133.94538326699993,57.06688060100011],[-133.9330134759999,57.070746161000116],[-133.9214574859999,57.07632070500004],[-133.9126684239999,57.082749742000125],[-133.9007055329999,57.0893415390001],[-133.88703365799984,57.09003327000015],[-133.76463782499982,57.07680898600001]]],[[[-153.18085689999987,57.174994208],[-153.21235104099986,57.13369375200013],[-153.1544083319999,57.1645368510001],[-153.1237686839999,57.17059967700003],[-153.1010636059999,57.17975495000009],[-153.08946692599991,57.18146393400009],[-153.0796606109999,57.17910390800012],[-153.0684708319999,57.17035553600006],[-153.05842037699992,57.1684431010001],[-152.97923743399994,57.17641836100016],[-152.95225989499988,57.174627997000165],[-152.9336645169999,57.16205475500008],[-152.92027747299989,57.15794505400014],[-152.90786699099988,57.164740302000055],[-152.8999731109999,57.164740302000055],[-152.88874264199987,57.158840236000046],[-152.88451087099986,57.14996979400017],[-152.9105118479999,57.13190338700015],[-152.9261368479999,57.12596263200013],[-153.00690670499995,57.11383698100003],[-153.01593990799995,57.117499091000084],[-153.02013098899988,57.123358466000056],[-153.0246068999999,57.127875067],[-153.0342504549999,57.12742747599999],[-153.05903072799987,57.11469147300015],[-153.08336341099994,57.098374742000104],[-153.11078854099992,57.08881256700012],[-153.14472408799995,57.096136786000145],[-153.15953528599994,57.097113348],[-153.1940811839999,57.08295319200009],[-153.2092179029999,57.079046942],[-153.21564693899992,57.07221100500008],[-153.2187393869999,57.057033596000096],[-153.2197973299999,57.03465403900007],[-153.23558508999992,57.00983307500012],[-153.27216549399995,56.998521226000136],[-153.31322180899994,56.99762604400003],[-153.34272213399993,57.003973700000145],[-153.32555091099988,57.022040106000176],[-153.32221432199987,57.02383047100007],[-153.3268529939999,57.031724351000044],[-153.33368893099993,57.03571198100011],[-153.34272213399993,57.03807200700008],[-153.34137936099995,57.05292389500011],[-153.33189856699994,57.05988190300003],[-153.32115637899992,57.06464264500012],[-153.31602942599986,57.072821356000034],[-153.32909094999988,57.08002350500006],[-153.35936438699986,57.06850820500013],[-153.39183508999983,57.06073639500012],[-153.41161048099988,57.079046942],[-153.39513098899988,57.08331940300008],[-153.36217200399992,57.096747137000094],[-153.33832760299993,57.10175202000012],[-153.33861243399988,57.10667552300002],[-153.3445938789999,57.11151764500009],[-153.3535863919999,57.11383698100003],[-153.36168372299994,57.112250067],[-153.37995357999986,57.10639069200006],[-153.39110266799992,57.10639069200006],[-153.37897701699993,57.11762116100006],[-153.34272213399993,57.14109935100013],[-153.30976314999995,57.17031484600007],[-153.29832923099988,57.174627997000165],[-153.29076087099995,57.17865631700014],[-153.27013098899994,57.19822825700011],[-153.26048743399986,57.20563385600009],[-153.24437415299988,57.21100495000014],[-153.22923743399988,57.210638739000146],[-153.22114010299995,57.20351797100009],[-153.22602291599992,57.188299872000115],[-153.1873266269999,57.185003973000065],[-153.18085689999987,57.174994208]]],[[[-170.1367895169999,57.22455475500011],[-170.1453751289999,57.209418036000116],[-170.14952551999994,57.205755927000084],[-170.15424557199992,57.19989655200011],[-170.15802975199986,57.192572333000115],[-170.1621801419999,57.17479075700014],[-170.1685684889999,57.16901276200015],[-170.20307369699992,57.154364325000145],[-170.25523841099988,57.14109935100013],[-170.25409908799992,57.12929922100007],[-170.2628067699999,57.11888255400008],[-170.27643795499995,57.11098867400001],[-170.2899877589999,57.10639069200006],[-170.27533932199992,57.12714264500006],[-170.27220618399994,57.13654205900018],[-170.27570553299992,57.14793528900004],[-170.2817276679999,57.14760976800012],[-170.3198949859999,57.154689846000096],[-170.3472794259999,57.14736562700006],[-170.36595618399994,57.1485863300001],[-170.3852026029999,57.15355052300005],[-170.39924068899995,57.16103750200001],[-170.40709387899992,57.171128647999986],[-170.41209876199986,57.1848005230001],[-170.40990149599986,57.19684479400003],[-170.3961075509999,57.20197174700014],[-170.35826575399992,57.20197174700014],[-170.3478897779999,57.20425039300004],[-170.3331192699999,57.21401601800015],[-170.3238012359999,57.216253973000114],[-170.2628067699999,57.21401601800015],[-170.24156653599994,57.216253973000114],[-170.14740963399993,57.23407623900012],[-170.13569088399993,57.24274323100012],[-170.12303626199986,57.2501488300001],[-170.10444088399996,57.250392971000124],[-170.1133520169999,57.23989492400007],[-170.1367895169999,57.22455475500011]]],[[[-135.56871497299994,57.241197007000075],[-135.5537817049999,57.229925848000065],[-135.57087154899986,57.222967841000084],[-135.5910538399999,57.22431061400008],[-135.6282445949999,57.23672109600001],[-135.61436926999988,57.22357819200015],[-135.60627193899987,57.20945872600011],[-135.60244706899994,57.19277578300007],[-135.60155188699986,57.17157623900009],[-135.5955704419999,57.154608466000106],[-135.58088131399984,57.148138739],[-135.56273352799994,57.14581940300003],[-135.54629472599993,57.14109935100013],[-135.56501217399992,57.112290757],[-135.60163326699984,57.03554922100015],[-135.6282445949999,57.010199286000116],[-135.64207923099988,57.008205471000096],[-135.6741837229999,57.01170482],[-135.6868790359999,57.00702545800006],[-135.69668535099993,57.00104401200004],[-135.7075089179999,56.998439846000146],[-135.84113521999987,56.98969147300006],[-135.8315323559999,57.050482489],[-135.82315019399996,57.07977936400012],[-135.8069962229999,57.09955475500014],[-135.79137122299994,57.10610586100013],[-135.7620743479999,57.11416250200007],[-135.72720292899987,57.14252350499999],[-135.7175186839999,57.15346914300006],[-135.71080481699997,57.1684431010001],[-135.7796931629999,57.16571686400012],[-135.80972245999988,57.173000393000144],[-135.82066809799994,57.19574616100009],[-135.81505286399994,57.20770905200011],[-135.79771887899994,57.22882721600003],[-135.80016028599988,57.23672109600001],[-135.81240800699996,57.23859284100017],[-135.84235592399983,57.22650788000006],[-135.85537675699993,57.22308991100006],[-135.83922278599994,57.24567291900003],[-135.83751380099991,57.25551992400015],[-135.84797115799992,57.26463450700014],[-135.8252660799999,57.28408437700012],[-135.83397376199986,57.306341864],[-135.8437393869999,57.324693101000044],[-135.82408606699994,57.33234284100016],[-135.72476152299993,57.32892487200015],[-135.6152237619999,57.28449127800014],[-135.5986221999999,57.27191803600006],[-135.56871497299994,57.241197007000075]]],[[[-152.29818332099993,57.363154677000026],[-152.3151242139999,57.36312123100011],[-152.2999352239999,57.37411752000018],[-152.28818869899987,57.396984506000116],[-152.2627300419999,57.39062962900012],[-152.2559221749999,57.384243442000084],[-152.26774368199995,57.37508687899999],[-152.29818332099993,57.363154677000026]]],[[[-153.8292943999999,57.451076565],[-153.84357662699992,57.43622467700014],[-153.86778723899988,57.45258209800015],[-153.88145911399994,57.47614166900008],[-153.88707434799994,57.494940497000144],[-153.88780676999988,57.508978583],[-153.88036048099988,57.515204169000135],[-153.87584387899994,57.52171458500005],[-153.87572180899986,57.533107815],[-153.86790930899988,57.54336172100012],[-153.8467504549999,57.54059479400017],[-153.83149166599992,57.52570221600003],[-153.83177649599992,57.509995835000055],[-153.83381100199986,57.50202057500011],[-153.83067786399988,57.4852562520001],[-153.8292943999999,57.451076565]]],[[[-135.40977942599994,57.44896067899999],[-135.3960668609999,57.44269440300003],[-135.38292395699995,57.445298570000126],[-135.35456295499992,57.46263255400011],[-135.31651770699992,57.47833893400018],[-135.2950333319999,57.481634833000115],[-135.28563391799986,57.47284577000006],[-135.27741451699984,57.46133047100013],[-135.25829016799992,57.46629466399999],[-135.2366430329999,57.47719961100013],[-135.2207738919999,57.48309967699999],[-135.18028723899994,57.48069896000014],[-135.14224199099993,57.469427802000055],[-135.1533096999999,57.45294830900015],[-135.1912328769999,57.443182684000114],[-135.20368404899995,57.428534247000115],[-135.18199622299994,57.4367536480001],[-135.1562393869999,57.44131094000015],[-135.13027910099993,57.441107489],[-135.0603735019999,57.42291901200012],[-135.05284583199995,57.41860586100001],[-135.0451554029999,57.41144440300015],[-135.0081274079999,57.403469143],[-134.99478105399987,57.397772528000026],[-134.9094945949999,57.33978913000006],[-134.9094945949999,57.33234284100016],[-134.95246334499987,57.34247467700011],[-134.99819902299987,57.34658437700006],[-134.99819902299987,57.33978913000006],[-134.95042883999994,57.32550690300015],[-134.95042883999994,57.31928131700001],[-134.97105872299994,57.312445380000085],[-134.9788305329999,57.30683014500009],[-134.98452714799993,57.298163153000175],[-134.96597245999993,57.29828522300015],[-134.9583227199999,57.30048248900015],[-134.95042883999994,57.305609442000055],[-134.93907630099994,57.29950592700008],[-134.93297278599988,57.291245835],[-134.93040930899988,57.280829169000086],[-134.93000240799986,57.26776764500012],[-134.92349199099996,57.259222723],[-134.90868079299992,57.25633372600007],[-134.85285396999993,57.260321356000034],[-134.83897864499994,57.25779857000013],[-134.83311926999988,57.246649481000084],[-134.83283443899987,57.23281484600001],[-134.8340551419999,57.221625067],[-134.84024003799993,57.215399481000034],[-134.85484778599994,57.216253973000114],[-134.8261612619999,57.19745514500009],[-134.80825761599993,57.18138255400011],[-134.80825761599993,57.164007880000106],[-134.83311926999988,57.14109935100013],[-134.81065833199997,57.133978583000086],[-134.78648841099988,57.11798737200017],[-134.77538001199994,57.09808991100009],[-134.79214433499993,57.079046942],[-134.77452551999994,57.07916901200015],[-134.7612198559999,57.072821356000034],[-134.75157630099994,57.062811591000134],[-134.74498450399997,57.05174388200011],[-134.74331620999996,57.04389069200011],[-134.74681555899986,57.03143952],[-134.74498450399997,57.02383047100007],[-134.74071204299986,57.02118561400009],[-134.73448645699992,57.02073802299999],[-134.72826087099995,57.01837799700003],[-134.72386633999986,57.010199286000116],[-134.72394771999984,56.99603913],[-134.73253333199995,56.97675202000006],[-134.73131262899994,56.96295807500014],[-134.72354081899994,56.95294830900018],[-134.71373450399992,56.94603099199999],[-134.70933997299994,56.93732330900009],[-134.7176814439999,56.92202383000012],[-134.69359290299988,56.90839264500009],[-134.6861873039999,56.89350006700011],[-134.68976803299986,56.84967682500017],[-134.68317623599987,56.83563873900012],[-134.64134680899986,56.79783763200008],[-134.65192623599992,56.77806224200005],[-134.64614824099993,56.765326239],[-134.6330460279999,56.755316473],[-134.62149003799993,56.74384186400006],[-134.6161189439999,56.72846100500011],[-134.60781816299993,56.595892645],[-134.61245683499993,56.56509023600013],[-134.61461341099994,56.558294989],[-134.6241755849999,56.54743073100011],[-134.62828528599988,56.548570054000045],[-134.63219153599988,56.55634186400006],[-134.64134680899986,56.56513092700011],[-134.64256751199989,56.5704613300001],[-134.6502986319999,56.582261460000055],[-134.65900631399987,56.58808014500003],[-134.66307532499994,56.57538483300006],[-134.6692602199999,56.53782786700005],[-134.6260473299999,56.48623281500009],[-134.62490800699987,56.47264232000013],[-134.63499915299994,56.455511786],[-134.63267981699997,56.43911367400009],[-134.62555904899992,56.42401764500009],[-134.62149003799993,56.411200262000065],[-134.62246660099993,56.390773830000064],[-134.6264542309999,56.37213776200018],[-134.6347550119999,56.35504791900014],[-134.64879309799994,56.33917877800012],[-134.62759355399993,56.33038971600014],[-134.63174394399988,56.30927155200014],[-134.66307532499994,56.257269598000065],[-134.63463294199994,56.26972077000009],[-134.62637285099993,56.261460679000024],[-134.63296464799993,56.24087148600016],[-134.64879309799994,56.216294664000046],[-134.64134680899986,56.208889065000065],[-134.6562393869999,56.17470937700007],[-134.6674698559999,56.17039622600008],[-134.68976803299986,56.181545315],[-134.67259680899994,56.20563385600011],[-134.6692602199999,56.216294664000046],[-134.67373613199987,56.21942780200011],[-134.68293209499984,56.22931549700006],[-134.69465084499993,56.233343817],[-134.69957434799989,56.23041413],[-134.7022192049999,56.225287177000084],[-134.70714270699995,56.22247955900012],[-134.73570716099994,56.217922268000066],[-134.7499893869999,56.21735260600012],[-134.7654923169999,56.22247955900012],[-134.75121008999994,56.23615143400015],[-134.7721248039999,56.23720937700001],[-134.78734290299988,56.244818427000055],[-134.79649817599994,56.25763580900017],[-134.7996313139998,56.27435944200012],[-134.80337480399987,56.28156159100014],[-134.81191972599987,56.28497955900015],[-134.82119706899994,56.28717682500014],[-134.8269750639999,56.29075755400011],[-134.8291723299999,56.29954661699999],[-134.82921301999988,56.30988190300008],[-134.8269750639999,56.32558828300016],[-134.84756425699993,56.329046942000055],[-134.86750240799984,56.32538483300003],[-134.88243567599997,56.329575914000046],[-134.8883357409999,56.356268622000144],[-134.89220130099991,56.361070054000045],[-134.91144771999987,56.37677643400012],[-134.91909745999988,56.38019440300003],[-134.92568925699996,56.38515859600007],[-134.93101966099994,56.39622630400011],[-134.9368383449999,56.41429271000014],[-134.9423721999999,56.421576239000146],[-134.99819902299987,56.47264232000013],[-135.00389563699986,56.49070872600005],[-135.01789303299992,56.5090192730001],[-135.0357152989999,56.52545807500012],[-135.05284583199995,56.53782786700005],[-135.04344641799992,56.539252020000035],[-135.03453528599997,56.542222398000135],[-135.02635657499988,56.546535549000126],[-135.0193578769999,56.55206940300015],[-135.03327389199987,56.56028880400005],[-135.03750566299988,56.56854889500012],[-135.03262285099993,56.576849677000105],[-135.0193578769999,56.58563873900009],[-134.99836178299984,56.58860911699999],[-134.94701087099992,56.5873070330001],[-134.9368383449999,56.595892645],[-134.9276016919999,56.62042877800003],[-134.90485592399997,56.646063544000086],[-134.84740149599986,56.68866608300014],[-134.86856035099987,56.68817780200005],[-134.88377844999985,56.685492255000085],[-134.89708411399988,56.67820872600005],[-134.9125870429999,56.664455471000124],[-134.9337052069999,56.63996002800012],[-134.94587154899986,56.630438544000114],[-134.9610082669999,56.626532294000114],[-134.97862708199992,56.63198476800015],[-134.98371334499984,56.64492422100015],[-134.98159745999993,56.660793361000074],[-134.97191321499986,56.692572333000115],[-134.9644669259999,56.702541408000044],[-134.95335852799985,56.70905182500011],[-134.9368383449999,56.71596914300004],[-134.96263587099992,56.72113678600011],[-134.98473059799986,56.714544989000146],[-134.99998938699983,56.69757721600016],[-135.0123184889999,56.650213934000035],[-135.02847245999988,56.63133372600011],[-135.04841061099987,56.61615631700011],[-135.06651770699995,56.60610586100013],[-135.0927628249999,56.59796784100003],[-135.10977128799996,56.60175202000014],[-135.11900794199994,56.61713288],[-135.1217341789999,56.64362213700015],[-135.1194962229999,56.662502346000096],[-135.1122126939999,56.67869700700014],[-135.09935462099986,56.693589585],[-135.0801895819999,56.70856354400002],[-135.01427161399997,56.739406643000095],[-134.99478105399987,56.75348541900003],[-134.99885006399984,56.76166413000014],[-135.01463782499988,56.771063544000164],[-135.0318090489999,56.77513255400011],[-135.03978430899986,56.767523505],[-135.04499264199987,56.759222723],[-135.13703365799986,56.694525458000086],[-135.1641332669999,56.68520742400012],[-135.1757706369999,56.67902252800015],[-135.18789628799988,56.676743882],[-135.20055091099994,56.68488190300012],[-135.2022598949999,56.69472890800013],[-135.19408118399986,56.70282623900006],[-135.18293209499993,56.70978424700014],[-135.1757706369999,56.71596914300004],[-135.17735755099994,56.7259789080001],[-135.18443762899997,56.734930731000034],[-135.1855362619999,56.74140045800011],[-135.15469316299996,56.74591705900017],[-135.15208899599986,56.75165436400005],[-135.15485592399992,56.76032135600015],[-135.1589249339999,56.792059637000094],[-135.15868079299995,56.800238348000036],[-135.15274003799993,56.80878327000011],[-135.1432999339999,56.81561920800006],[-135.13540605399993,56.81932200699999],[-135.12852942599994,56.82347239800013],[-135.1217341789999,56.83201732000008],[-135.17422441299993,56.826361395000056],[-135.26927649599995,56.78900788000011],[-135.3209529289999,56.79783763200008],[-135.30736243399994,56.820868231000034],[-135.3256729809999,56.82550690300015],[-135.3533422519999,56.82416413000008],[-135.3675430979999,56.82892487200017],[-135.36778723899994,56.87400950700014],[-135.36025956899988,56.8876000020001],[-135.3408910799999,56.879828192],[-135.32457434799994,56.89077383000016],[-135.3058975899999,56.890692450000174],[-135.2945043609999,56.89215729400014],[-135.29991614499994,56.907700914000046],[-135.3137914699998,56.92072174700003],[-135.3342179029999,56.93105703300012],[-135.35627193899992,56.938299872000144],[-135.37498938699986,56.941880601000136],[-135.36904863199996,56.94383372599999],[-135.3637589179999,56.94627513200011],[-135.35456295499992,56.95551178600009],[-135.35000566299993,56.97040436400012],[-135.3308813139999,56.97858307500006],[-135.30894934799997,56.98212311400012],[-135.28937740799986,56.98285553600006],[-135.28233801999994,56.98529694200008],[-135.26292883999992,56.996893622000115],[-135.25890051999994,57.00055573100015],[-135.2539770169999,57.00372955900012],[-135.22956295499984,57.004543361000124],[-135.2033585279999,57.01349518400015],[-135.1640518869999,57.01361725500014],[-135.1565649079998,57.020697333],[-135.1653539699999,57.04173411700013],[-135.18590247299994,57.04564036700013],[-135.2276098299999,57.03807200700008],[-135.26793372299994,57.039862372000144],[-135.31029212099986,57.047349351000136],[-135.3481339179999,57.063910223],[-135.37498938699986,57.09271881700012],[-135.37816321499994,57.12872955900009],[-135.35024980399993,57.14935944200012],[-135.30760657499988,57.158758856000055],[-135.26642818899987,57.16103750200001],[-135.26642818899987,57.1684431010001],[-135.28966223899994,57.174627997000165],[-135.3101293609999,57.17767975500006],[-135.3291723299999,57.17609284100003],[-135.34829667899996,57.1684431010001],[-135.37686113199993,57.150091864000146],[-135.39415442599994,57.14736562700006],[-135.4129125639999,57.157904364000146],[-135.4125870429999,57.16962311400012],[-135.39769446499992,57.182074286000145],[-135.37828528599994,57.191839911],[-135.36440995999993,57.19574616100009],[-135.36416581899988,57.20404694200006],[-135.33405514199987,57.250392971000124],[-135.4129532539999,57.24477773600013],[-135.42959550699993,57.246649481000084],[-135.45596269399994,57.25332265800016],[-135.48151607999984,57.248968817000055],[-135.50601152299996,57.241034247000115],[-135.5292048819999,57.23672109600001],[-135.54283606699994,57.242987372000144],[-135.5777074859999,57.287909247000144],[-135.63923092399983,57.31683991100006],[-135.64875240799984,57.32892487200015],[-135.67320716099997,57.349676825000145],[-135.67495683499996,57.35862864799999],[-135.6624242829999,57.363755601000115],[-135.6458227199999,57.36619700700014],[-135.6042374339999,57.367743231000176],[-135.4856664699999,57.35101959800014],[-135.47533118399986,57.35431549700009],[-135.47118079299992,57.36359284100014],[-135.4785863919999,57.36831289300015],[-135.52578691299985,57.37392812700015],[-135.56704667899993,57.389471747000144],[-135.58584550699987,57.392564195000126],[-135.60899817599994,57.387600002000106],[-135.6022029289999,57.397894598],[-135.59162350199986,57.40497467700005],[-135.55064856699994,57.42377350500011],[-135.54759680899994,57.42743561400006],[-135.5474340489999,57.43178945500016],[-135.5401098299999,57.442206122000144],[-135.53319251199989,57.447211005],[-135.51646887899994,57.45441315300003],[-135.5087784499999,57.459540106000034],[-135.50470943899987,57.46649811400012],[-135.5065811839999,57.47235748900006],[-135.51036536399994,57.47772858300011],[-135.51211503799993,57.48309967699999],[-135.51280676999988,57.49046458500008],[-135.51781165299994,57.501613674],[-135.51903235599985,57.50731028899999],[-135.51537024599992,57.51561107000007],[-135.50674394399988,57.51776764500006],[-135.49657141799995,57.518011786],[-135.48827063699986,57.520982164000095],[-135.43651282499985,57.549994208],[-135.38117428299986,57.55361562700007],[-135.32705644399988,57.53839752800008],[-135.2794083319999,57.51105377800011],[-135.3105362619999,57.490871486000074],[-135.3818253249999,57.47134023600001],[-135.40977942599994,57.44896067899999]]],[[[-152.42280025899993,57.96426015800013],[-152.42430579299986,57.95209381700015],[-152.41710364499994,57.943996486000025],[-152.41698157499985,57.938869533000016],[-152.42296301999988,57.93431224200007],[-152.41710364499994,57.93036530200008],[-152.3882950509999,57.92649974200007],[-152.36082923099985,57.92674388200011],[-152.35529537699995,57.92597077],[-152.34390214799987,57.923325914000095],[-152.33637447799993,57.92169830900018],[-152.32538814999995,57.9160016950001],[-152.33014889199995,57.907456772999986],[-152.3561905589999,57.893947658000016],[-152.3606664699999,57.888902085000076],[-152.36937415299988,57.886419989000146],[-152.38117428299995,57.889227606000084],[-152.39732825399992,57.896063544000114],[-152.48595130099986,57.914536851000136],[-152.50483150899993,57.92572663000005],[-152.49262447799995,57.94061920799999],[-152.48314368399994,57.94847239799999],[-152.48786373599992,57.95026276200015],[-152.4890844389999,57.95400625200001],[-152.4903051419999,57.95669179900009],[-152.4920141269999,57.957220770000056],[-152.49445553299995,57.95819733300014],[-152.49274654899992,57.96157461100016],[-152.48395748599995,57.96312083499999],[-152.4746801419999,57.96088288000011],[-152.4634496739999,57.959540106000034],[-152.43232174399992,57.969183661],[-152.42280025899993,57.96426015800013]]],[[[-153.2608129549999,57.88784414300004],[-153.2287491529999,57.85390859600007],[-153.21296139199995,57.83030833500014],[-153.21235104099986,57.81268952],[-153.22411048099988,57.81159088700014],[-153.2812393869999,57.818915106000155],[-153.28392493399988,57.8214378930001],[-153.2874649729999,57.82636139500015],[-153.29295813699994,57.831040757000046],[-153.3017471999999,57.83319733300005],[-153.31965084499996,57.83454010600014],[-153.3277074859999,57.83641185100011],[-153.33588619699992,57.83942291900002],[-153.33104407499988,57.84129466399999],[-153.32701575399983,57.84373607000013],[-153.3224991529999,57.84585195500012],[-153.31602942599986,57.84686920799999],[-153.32526607999986,57.858628648],[-153.34251868399986,57.86225006700014],[-153.38056393099995,57.86050039300016],[-153.39692135299987,57.863836981000176],[-153.5224503249999,57.92096588700014],[-153.54194088399993,57.93561432500014],[-153.52826900899984,57.95319245000009],[-153.5066625639999,57.96979401200015],[-153.48224850199995,57.9777692730001],[-153.4600317049999,57.96971263200008],[-153.4326879549999,57.96356842699999],[-153.32664954299995,57.92658112200014],[-153.2797338529999,57.90289948100003],[-153.2608129549999,57.88784414300004]]],[[[-152.76410885299993,57.93008047100012],[-152.7859594389999,57.92552317899999],[-152.8098852199999,57.929103908000066],[-152.82709713399993,57.93695709800015],[-152.85224361899992,57.944077867000104],[-152.86070716099988,57.95465729400014],[-152.8536270819999,57.9674339860001],[-152.83307857999986,57.97459544500005],[-152.75361080599995,57.98065827000012],[-152.7443741529999,57.983832098],[-152.7300919259999,57.982245184000156],[-152.72919674399992,57.973863023000106],[-152.73900305899994,57.968573309000035],[-152.7416479159999,57.96259186400012],[-152.73985755099991,57.95164622600005],[-152.74799557199995,57.93915436400014],[-152.76410885299993,57.93008047100012]]],[[[-153.0127660799999,57.929103908000066],[-152.9932348299999,57.92877838700003],[-153.00470943899995,57.94855377800015],[-152.98265540299985,57.951483466000084],[-152.8622940749999,57.93451569200011],[-152.83197994699992,57.923651434000035],[-152.8082983059999,57.90827057500009],[-152.85460364499988,57.895453192000055],[-152.87763424399995,57.886175848000015],[-152.89081783799992,57.874172268000095],[-152.8726293609999,57.87604401200006],[-152.8566788399999,57.88031647300006],[-152.8566788399999,57.874172268000095],[-152.89350338399987,57.86041901200014],[-152.90367591099994,57.83759186400014],[-152.90485592399995,57.81159088700014],[-152.92524166599992,57.76825592699999],[-152.9155167309999,57.75576406500009],[-152.89936275899993,57.745794989],[-152.89081783799992,57.73330312700007],[-152.88556881399992,57.72870514500014],[-152.87376868399994,57.730169989],[-152.86200924399986,57.735012111000074],[-152.8566788399999,57.74042389500013],[-152.85773678299995,57.749945380000106],[-152.86249752499995,57.765529690000115],[-152.8635147779999,57.77423737200011],[-152.85871334499993,57.81439850500011],[-152.84369869699992,57.845282294000164],[-152.8179825509999,57.86041901200014],[-152.78099524599992,57.85370514500012],[-152.76622473899994,57.843410549],[-152.75413977799994,57.832464911000116],[-152.7418106759999,57.826890367000125],[-152.72638912699992,57.83319733300005],[-152.71397864499994,57.84686920799999],[-152.6980688139999,57.87571849200013],[-152.68537350199995,57.88784414300004],[-152.6687719389999,57.88080475500014],[-152.6355688139999,57.87156810099999],[-152.62397213399993,57.86050039300016],[-152.61274166599995,57.87490469],[-152.61571204299986,57.89044830900013],[-152.62608801999988,57.904730536000024],[-152.63695227799985,57.915106512000094],[-152.62458248599992,57.9328473980001],[-152.6078995429999,57.93504466400002],[-152.59040279899995,57.928900458000115],[-152.5755102199999,57.92133209800006],[-152.57042395699992,57.91616445500016],[-152.5650121739999,57.90843333500005],[-152.55890865799992,57.90322500200015],[-152.5516251289999,57.905218817],[-152.5424698559999,57.91152578300013],[-152.53270423099985,57.91445547100015],[-152.50694739499994,57.915106512000094],[-152.4863175119999,57.91071198100003],[-152.47272701699995,57.90033600500011],[-152.4608861969999,57.88784414300004],[-152.44550533799986,57.87726471600017],[-152.42833411399994,57.8680687520001],[-152.42280025899993,57.859279690000115],[-152.42670650899993,57.84845612200002],[-152.43834387899992,57.83319733300005],[-152.4211319649999,57.82196686400006],[-152.40221106699988,57.8234723980001],[-152.38255774599992,57.83323802300005],[-152.3632706369999,57.84686920799999],[-152.3563126289999,57.83820221600011],[-152.34825598899988,57.83169179900001],[-152.33922278599988,57.82746002800008],[-152.3290909499999,57.82575104400008],[-152.35728919199988,57.79901764500006],[-152.45897376199994,57.76813385600011],[-152.4966934889999,57.74725983300005],[-152.53502356699994,57.71979401200009],[-152.5511368479999,57.70331452000011],[-152.54137122299989,57.69599030200011],[-152.52061926999988,57.70262278899999],[-152.4980362619999,57.71588776200012],[-152.47309322799987,57.72601959800006],[-152.4630834629999,57.72288646],[-152.46849524599992,57.714016018000144],[-152.4656469389999,57.69232819200006],[-152.4689835279999,57.67869700700011],[-152.4768774079999,57.67202383000015],[-152.48615475199995,57.66608307500003],[-152.4936010409999,57.65509674700017],[-152.4677628249999,57.657171942],[-152.42084713399996,57.68195221600016],[-152.3974096339999,57.68854401200003],[-152.4155167309999,57.67495351800009],[-152.42829342399995,57.65595123900009],[-152.4358617829999,57.63544342700011],[-152.43834387899992,57.61717357000005],[-152.4263402989999,57.613511460000026],[-152.34276282499994,57.63397858300006],[-152.1608780589999,57.627142645000156],[-152.14708411399994,57.62262604400009],[-152.15546627499987,57.61286041900014],[-152.1782934239999,57.59979889500009],[-152.24970455599987,57.54148997600008],[-152.27061926999994,57.528509833000086],[-152.2910863919999,57.519842841000084],[-152.3089086579999,57.50901927299999],[-152.32225501199989,57.48993561400001],[-152.3281143869999,57.46539948100017],[-152.3303116529999,57.445949611000074],[-152.3386938139999,57.43317291900005],[-152.36298580599995,57.428534247000115],[-152.41791744699992,57.435288804000045],[-152.4257299469999,57.43744538000005],[-152.4330948559999,57.441107489],[-152.4405411449999,57.442816473],[-152.44892330599984,57.438788153000026],[-152.45372473899988,57.43524811400006],[-152.4600317049999,57.43195221600003],[-152.4666235019999,57.42942942900011],[-152.47252356699988,57.428534247000115],[-152.48615475199995,57.428534247000115],[-152.4743546209999,57.4367536480001],[-152.45970618399988,57.450628973],[-152.45225989499988,57.46369049700018],[-152.46226966099988,57.469427802000055],[-152.4876602859999,57.47186920800008],[-152.50133216099994,57.469427802000055],[-152.50727291599986,57.459540106000034],[-152.50885982999986,57.44953034100014],[-152.51341712099995,57.444322007000046],[-152.52082271999993,57.442450262000094],[-152.5308324859999,57.442206122000144],[-152.53636633999992,57.4440778670001],[-152.55414791599992,57.45331452000009],[-152.56248938699989,57.45644765800016],[-152.57013912699992,57.45644765800016],[-152.5753067699999,57.453762111000074],[-152.57978268099987,57.450588283000016],[-152.58543860599988,57.44896067899999],[-152.5910131499999,57.45091380400014],[-152.59333248599995,57.45526764500011],[-152.5944311189999,57.45986562700015],[-152.59601803299992,57.46263255400011],[-152.60094153599988,57.46723053600005],[-152.6055802069999,57.47394440300009],[-152.61249752499992,57.48012929900006],[-152.62397213399993,57.48309967699999],[-152.6341446609999,57.481268622000115],[-152.65351314999992,57.471828518000095],[-152.6642960279999,57.469427802000055],[-152.67406165299985,57.46991608300014],[-152.68451900899993,57.47162506700014],[-152.69432532499988,57.47483958499999],[-152.7224014959999,57.49481842700008],[-152.72260494699992,57.49746328300016],[-152.72724361899995,57.49949778899999],[-152.73407955599987,57.504217841000084],[-152.7429093089999,57.508978583],[-152.75365149599992,57.51105377800011],[-152.8017471999999,57.50360748900014],[-152.81452389199993,57.505438544000114],[-152.83246822799993,57.51434967700005],[-152.8423966139999,57.51788971600003],[-152.8560684889999,57.518133856000176],[-152.89081783799992,57.51105377800011],[-152.9119766919999,57.51471588700015],[-152.9332169259999,57.521226304000045],[-152.9539688789999,57.52435944200011],[-152.9733780589999,57.51788971600003],[-152.9604386059999,57.51186758000012],[-152.9172257149999,57.50088125200008],[-152.9107152989999,57.48993561400001],[-152.92865963399993,57.48236725500005],[-153.02802486899995,57.47626373900005],[-153.02802486899995,57.469427802000055],[-153.02326412699995,57.46849192900007],[-153.02061926999988,57.46718984600007],[-153.01435299399992,57.46263255400011],[-153.03620357999995,57.447251695],[-153.04487057199995,57.43671295800011],[-153.0416967439999,57.428534247000115],[-153.0286352199999,57.42951080900017],[-153.0009659499999,57.45091380400014],[-152.99018307199992,57.45644765800016],[-152.83246822799993,57.47626373900005],[-152.80064856699985,57.47077057500003],[-152.72638912699992,57.428534247000115],[-152.6341039699999,57.40574778899999],[-152.61713619699992,57.387600002000106],[-152.6133927069999,57.38816966400004],[-152.60883541599983,57.38646067900005],[-152.6031388009999,57.381903387000094],[-152.59601803299992,57.37392812700015],[-152.60619055899988,57.36359284100014],[-152.63097083199992,57.34979889500012],[-152.64439856699994,57.33978913000006],[-152.64329993399988,57.320502020000035],[-152.6630753249999,57.299546617000075],[-152.69220943899987,57.283270575000024],[-152.7188614569999,57.27765534100003],[-152.71226966099994,57.30280182500011],[-152.73167883999992,57.30744049700003],[-152.79869544199994,57.29157135600011],[-152.81725012899992,57.27895742400012],[-152.83747311099995,57.270738023000135],[-152.8635147779999,57.27765534100003],[-152.85846920499986,57.2950707050001],[-152.8721817699999,57.29995351800006],[-152.89191646999996,57.30402252800004],[-152.9051000639999,57.31928131700001],[-152.88068600199995,57.33759186400005],[-152.87718665299985,57.34316640800007],[-152.8821508449999,57.35248444200003],[-152.89350338399987,57.35024648600013],[-152.91441809799994,57.33978913000006],[-152.97651119699984,57.33234284100016],[-153.00731360599994,57.34023672100015],[-153.02387447799993,57.34223053600009],[-153.05732174399986,57.32632070500007],[-153.0883682929999,57.31879303600003],[-153.12079830599987,57.315741278000125],[-153.1440323559999,57.31928131700001],[-153.1522924469999,57.32713450700008],[-153.15864010299993,57.346625067000055],[-153.1651505199999,57.35276927300005],[-153.17475338399987,57.35138580900015],[-153.17707271999996,57.34100983300006],[-153.17499752499992,57.32811107000005],[-153.17137610599988,57.31928131700001],[-153.18354244699995,57.31126536700004],[-153.1729223299999,57.305080471000096],[-153.09687252499992,57.290472723000065],[-153.07371985599988,57.28929271000013],[-153.03258216099988,57.304917710000105],[-153.00300045499995,57.29498932500011],[-152.97618567599994,57.275539455000015],[-152.95909583199986,57.25714752800017],[-153.0615128249999,57.22308991100006],[-153.09630286399985,57.21824778899999],[-153.19526119699995,57.229925848000065],[-153.2026261059999,57.2280134140001],[-153.20958411399994,57.22455475500011],[-153.21637936099992,57.222967841000084],[-153.22288977799985,57.22650788000006],[-153.25328528599994,57.23672109600001],[-153.26447506399992,57.23281484600001],[-153.28241939999987,57.21918366100006],[-153.29832923099988,57.216253973000114],[-153.30732174399992,57.21198151200004],[-153.32416744699992,57.193060614],[-153.33588619699992,57.188299872000115],[-153.3501684239999,57.19114817900005],[-153.37665768099987,57.205796617000075],[-153.39110266799992,57.209418036000116],[-153.37865149599992,57.193833726000136],[-153.37328040299985,57.185003973000065],[-153.37372799399995,57.17804596600008],[-153.40819251199986,57.14793528900004],[-153.42609615799992,57.140122789000074],[-153.44066321499986,57.12543366100006],[-153.45527096299986,57.11684804900012],[-153.47301184799989,57.12742747599999],[-153.4790746739999,57.144029039000046],[-153.48005123599992,57.16168854400017],[-153.48607337099995,57.17572663000011],[-153.50719153599988,57.18146393400009],[-153.5316055979999,57.17975495000009],[-153.54185950399994,57.17584870000009],[-153.54816646999987,57.1684431010001],[-153.5442602199999,57.164455471000124],[-153.5131322909999,57.17035553600006],[-153.50035559799994,57.1684431010001],[-153.52452551999994,57.13739655199999],[-153.5268448559999,57.12669505400008],[-153.51891028599985,57.11737702000011],[-153.5078018869999,57.10858795800005],[-153.50035559799994,57.09955475500014],[-153.49815833199995,57.07428620000008],[-153.51317298099988,57.06972890800013],[-153.55903072799995,57.079046942],[-153.71137447799993,57.067043361000074],[-153.76105709499987,57.05174388200011],[-153.76105709499987,57.04490794499999],[-153.60712643099993,57.05174388200011],[-153.59125729099992,57.04816315300003],[-153.59044348899988,57.03998444200012],[-153.59894771999993,57.0306664080001],[-153.61082923099988,57.02383047100007],[-153.62714596299992,57.0211449240001],[-153.64305579299992,57.02163320500007],[-153.65807044199994,57.01984284100008],[-153.67162024599992,57.010199286000116],[-153.57612057199992,57.003973700000145],[-153.55512447799987,56.99872467700008],[-153.5597631499999,56.986517645],[-153.58910071499992,56.96295807500014],[-153.5921117829999,56.96222565300003],[-153.6002091139999,56.96352773600004],[-153.60338294199988,56.96295807500014],[-153.60395260299987,56.96035390800016],[-153.60277258999994,56.951239325000174],[-153.60338294199988,56.948716539000046],[-153.61799068899992,56.93915436400006],[-153.62677975199986,56.93618398600016],[-153.6409399079999,56.9350446640001],[-153.6669408839999,56.93768952],[-153.67157955599993,56.945379950000024],[-153.6702367829999,56.958441473],[-153.6784561839999,56.97662995000009],[-153.7136124339999,56.91453685100008],[-153.73888098899994,56.889146226000136],[-153.76789303299992,56.90033600500006],[-153.7788793609999,56.877020575000145],[-153.7569067049999,56.87494538000011],[-153.7027074859999,56.887274481000176],[-153.6941625639999,56.88300202000006],[-153.69493567599991,56.873602606000034],[-153.70140540299988,56.86420319200003],[-153.7098282539999,56.85993073100009],[-153.76789303299992,56.853094794000086],[-153.77289791599986,56.85049062700009],[-153.77562415299994,56.84137604400008],[-153.78087317599994,56.839504299000126],[-153.78693600199992,56.8408063820001],[-153.7966202459999,56.84589264500014],[-153.82445227799994,56.8469098980001],[-153.8377172519999,56.844183661000145],[-153.84357662699992,56.83576080900009],[-153.8501684239999,56.81452057500012],[-153.86620032499988,56.80170319200008],[-153.9050186839999,56.78485748900009],[-153.94184322799987,56.75877513200011],[-153.9625138009999,56.74823639500015],[-153.98725338399996,56.74384186400006],[-154.01520748599987,56.748480536],[-154.03514563699989,56.757269598000065],[-154.0550024079999,56.762518622000144],[-154.0825902989999,56.75690338700003],[-154.10834713399993,56.74461497599999],[-154.12262936099992,56.74119700700008],[-154.13780676999994,56.74384186400006],[-154.1495255199999,56.75092194200012],[-154.14826412699986,56.756252346000096],[-154.1417130199999,56.76288483300005],[-154.13780676999994,56.77431875200001],[-154.13011633999992,56.7865257830001],[-154.06379146999996,56.847398179000024],[-154.00059973899988,56.872992255000085],[-153.97679602799988,56.89256419500004],[-153.9680883449999,56.90550364800005],[-153.9559220039999,56.91010163],[-153.9317520819999,56.91453685100008],[-153.8889867829999,56.930365302],[-153.81049557199987,56.97089264500012],[-153.77472896999996,56.997137762000065],[-153.78087317599994,57.003973700000145],[-153.83381100199986,56.97223541900011],[-153.84980221299986,56.96918366100011],[-153.85566158799992,56.97601959800012],[-153.83202063699989,57.00153229400003],[-153.83613033799992,57.0175641950001],[-153.8524063789999,57.02362702000012],[-153.86241614499986,57.011135158000016],[-153.8695776029999,56.99164459800012],[-153.87714596299995,56.97662995000009],[-153.89692135299987,56.96588776200018],[-153.92247473899988,56.96214427300004],[-153.9733373689999,56.96295807500014],[-153.9689835279999,56.97996653900013],[-153.96263587099986,56.9951032570001],[-153.9539281889999,57.00861237200009],[-153.92951412699992,57.035060940000065],[-153.91087805899994,57.06122467700011],[-153.89818274599986,57.072821356000034],[-153.8826391269999,57.08051178600006],[-153.83482825399992,57.09658437700012],[-153.81871497299989,57.09955475500014],[-153.81049557199987,57.10211823100014],[-153.79588782499985,57.11493561400009],[-153.78831946499992,57.120062567],[-153.77672278599988,57.12409088700015],[-153.76557369699987,57.12628815300014],[-153.73993893099987,57.12742747599999],[-153.73993893099987,57.13369375200013],[-153.7827856109999,57.15021393400012],[-153.8057348299999,57.154201565],[-153.81566321499986,57.14459870000003],[-153.8206680979999,57.13336823100011],[-153.83246822799987,57.12665436400009],[-153.85724850199995,57.120062567],[-153.97358150899993,57.06191640800015],[-154.0069473949999,57.03929271],[-154.04954993399994,56.99603913],[-154.07506262899994,56.97557200700013],[-154.09955807199987,56.96482982000013],[-154.11497962099992,56.985785223000065],[-154.1341039699999,56.995184637000094],[-154.13780676999994,57.003973700000145],[-154.1348363919999,57.008734442000055],[-154.12177486899992,57.01911041900014],[-154.1172989569999,57.02383047100007],[-154.11046301999994,57.03807200700008],[-154.0800268219999,57.06659577000006],[-153.95966549399995,57.120062567],[-154.08320064999992,57.12742747599999],[-154.0912572909999,57.130682684000035],[-154.10997473899988,57.14476146],[-154.12043209499996,57.14793528900004],[-154.1749161449999,57.14622630400005],[-154.24083411399988,57.15477122600008],[-154.29918372299989,57.14793528900004],[-154.36066646999996,57.14793528900004],[-154.37336178299986,57.1451683610001],[-154.39740963399993,57.13182200700008],[-154.41156979099983,57.12742747599999],[-154.4682511059999,57.124457098000086],[-154.4949438139999,57.113592841000084],[-154.48412024599986,57.08958567900005],[-154.4607641269999,57.07111237200003],[-154.4378149079999,57.05727773600013],[-154.41295325399994,57.05019765800007],[-154.3842260409999,57.05174388200011],[-154.3613175119999,57.05906810100011],[-154.34605872299994,57.069037177000105],[-154.31904049399986,57.096136786000145],[-154.29718990799995,57.11029694200006],[-154.27240963399984,57.11737702000011],[-154.1212052069999,57.123724677000055],[-154.10370846299992,57.11383698100003],[-154.1037491529999,57.09796784100011],[-154.1119278639999,57.076727606000034],[-154.1309708319999,57.04490794499999],[-154.1531876289999,57.01976146000011],[-154.1583145819999,57.010199286000116],[-154.16026770699992,56.99872467700008],[-154.15758216099994,56.97699616100003],[-154.1583145819999,56.96918366100011],[-154.17247473899988,56.952622789000046],[-154.19383704299995,56.944566148000106],[-154.24767005099986,56.941880601000136],[-154.2303360669999,56.93305084800009],[-154.22179114499988,56.92536041900014],[-154.22191321499983,56.916449286000116],[-154.23029537699992,56.903998114],[-154.23798580599993,56.89956289300012],[-154.2459203769999,56.9013532570001],[-154.25385494699987,56.90546295800006],[-154.26158606699988,56.907700914000046],[-154.2818090489999,56.887274481000176],[-154.27660071499992,56.897772528000054],[-154.27757727799988,56.905951239000146],[-154.28425045499995,56.911607164000046],[-154.2960912749999,56.91453685100008],[-154.30064856699994,56.873521226000044],[-154.29918372299989,56.86684804900001],[-154.2825821609999,56.86957428600006],[-154.25560462099986,56.88275788000011],[-154.24083411399988,56.887274481000176],[-154.24083411399988,56.879828192],[-154.27183997299989,56.863714911000116],[-154.2818090489999,56.85993073100009],[-154.2995499339999,56.85541413000014],[-154.3049210279999,56.85578034100014],[-154.30488033799995,56.874904690000115],[-154.30500240799992,56.90228913],[-154.31346594999988,56.918280341000084],[-154.32831783799992,56.92967357000007],[-154.38874264199993,56.96385325700005],[-154.41161048099985,56.972967841000134],[-154.4481908839999,56.978705145000035],[-154.47325598899988,56.98769765800013],[-154.48412024599986,56.98969147300006],[-154.51488196499986,56.98969147300006],[-154.52855383999992,56.99164459800012],[-154.53168697799987,56.99656810099999],[-154.5298559239999,57.00315989800005],[-154.52717037699992,57.03290436400006],[-154.52000891799986,57.05597565300003],[-154.5163468089999,57.07758209800012],[-154.53339596299986,57.11204661700005],[-154.5314835279999,57.153143622000144],[-154.53502356699988,57.174627997000165],[-154.54857337099983,57.192816473000065],[-154.58869381399987,57.2311058610001],[-154.59711666599992,57.246649481000084],[-154.60151119699992,57.258937893000066],[-154.61217200399994,57.266302802000055],[-154.62559973899994,57.269964911000024],[-154.67255611899986,57.270900783000094],[-154.68134518099993,57.27289459800012],[-154.68431555899994,57.27749258000007],[-154.6847631499999,57.28217194200009],[-154.6858617829999,57.28449127800014],[-154.71605383999992,57.281683661],[-154.7514135409999,57.273830471],[-154.78315182199984,57.27293528900013],[-154.8025610019999,57.29132721600017],[-154.78766842399995,57.29157135600011],[-154.7682999339999,57.29498932500011],[-154.75511633999986,57.30263906500014],[-154.75816809799986,57.31557851800015],[-154.7714330719999,57.32538483300008],[-154.79845130099994,57.336086330000015],[-154.81000729099995,57.34658437700006],[-154.78754635299993,57.357733466000084],[-154.76349850199992,57.35419342700011],[-154.73692786399988,57.345119533000016],[-154.70697994699992,57.33978913000006],[-154.71100826699984,57.34772370000011],[-154.71711178299995,57.353827216000106],[-154.72496497299994,57.35805898600002],[-154.73424231699985,57.36025625200001],[-154.73424231699985,57.36709219000012],[-154.71471106699988,57.37811920800008],[-154.70844479099986,57.395697333000115],[-154.71320553299995,57.41425202000011],[-154.7268774079999,57.428534247000115],[-154.68614661399994,57.45270416900002],[-154.6533910799999,57.460760809000156],[-154.64427649599992,57.466742255000085],[-154.6585587229999,57.47626373900005],[-154.65021725199992,57.49603913],[-154.6346329419999,57.51373932500009],[-154.6147354809999,57.526556708000115],[-154.5829565089999,57.5340843770001],[-154.56248938699994,57.5439313820001],[-154.5493057929999,57.54458242400015],[-154.54002844999994,57.53949616100011],[-154.5214330719999,57.51788971600003],[-154.50975501199994,57.528387762000094],[-154.52342688699989,57.57001373900005],[-154.51488196499986,57.57929108300011],[-154.4555557929999,57.57672760600012],[-154.3985082669999,57.56631094000012],[-154.40990149599995,57.5729027360001],[-154.4468888009999,57.58612702000015],[-154.3985082669999,57.613470770000035],[-154.36436926999988,57.627142645000156],[-154.36200924399992,57.63104889500015],[-154.3564346999999,57.64545319200003],[-154.3569229809999,57.64826080900014],[-154.33759518099987,57.650213934000114],[-154.30064856699994,57.64569733300005],[-154.2818090489999,57.64826080900014],[-154.26825924399992,57.65550364799999],[-154.25470943899987,57.665228583000136],[-154.23932857999992,57.67328522300006],[-154.22032630099994,57.675523179000045],[-154.2026261059999,57.67182038000011],[-154.16930091099994,57.659247137000115],[-154.1514379549999,57.65509674700017],[-154.0558568999999,57.65509674700017],[-154.0186254549999,57.647202867000104],[-154.0005590489999,57.629706122000144],[-153.9733373689999,57.572495835],[-153.9999486969999,57.555650132],[-154.11046301999994,57.54458242400015],[-154.0683487619999,57.53705475499999],[-153.97480221299995,57.549953518],[-153.93549557199992,57.53497955900017],[-153.92027747299989,57.507228908000094],[-153.90693111899995,57.43496328300004],[-153.89073645699986,57.40802643400014],[-153.8753149079999,57.399155992000104],[-153.84052486899992,57.38666413],[-153.82563229099986,57.37726471600017],[-153.77782141799992,57.32233307500008],[-153.7473038399999,57.303412177000084],[-153.6306860019999,57.270900783000094],[-153.64452063699986,57.284002997000144],[-153.66913814999987,57.29730866100009],[-153.69615637899994,57.30768463700018],[-153.74376380099991,57.31891510600017],[-153.75389563699986,57.336371161000145],[-153.75824947799995,57.35883209800015],[-153.76789303299992,57.380764065000065],[-153.78473873599992,57.39435455900013],[-153.80011959499987,57.401312567000026],[-153.8113500639999,57.41233958500005],[-153.81977291599992,57.48493073100014],[-153.81834876199994,57.50629303600012],[-153.80882727799985,57.51788971600003],[-153.8436986969999,57.550970770000085],[-153.84980221299986,57.55882396000006],[-153.85081946499992,57.577297268000095],[-153.84251868399986,57.58197663],[-153.83006751199994,57.57778554900007],[-153.81871497299989,57.56940338700012],[-153.79242916599995,57.55597565300012],[-153.74962317599986,57.544378973],[-153.70636959499993,57.539048570000126],[-153.6784561839999,57.54458242400015],[-153.6910294259999,57.55377838700003],[-153.70514889199993,57.55792877800015],[-153.74058997299994,57.55882396000006],[-153.75397701699995,57.56195709800012],[-153.86872311099987,57.62860748900003],[-153.88459225199992,57.64826080900014],[-153.8527725899999,57.65867747600006],[-153.81090247299986,57.659002997000165],[-153.66759192599994,57.64183177300005],[-153.64110266799983,57.62921784100017],[-153.6306860019999,57.59979889500009],[-153.61750240799995,57.60521067900011],[-153.59101314999995,57.60138580900012],[-153.58287512899994,57.60732656500012],[-153.58458411399985,57.61709219000007],[-153.59333248599992,57.628322658000066],[-153.6046850249999,57.63760000200013],[-153.63105221299992,57.64679596600011],[-153.69896399599986,57.682359117000075],[-153.75609290299982,57.69318268400015],[-153.87641354099992,57.701117255000106],[-153.90575110599988,57.711249091000084],[-153.92552649599995,57.72955963700006],[-153.9382218089999,57.77562083499999],[-153.92463131399995,57.810492255000106],[-153.89447994699992,57.83759186400014],[-153.84345455599993,57.870591539000095],[-153.83613033799992,57.874172268000095],[-153.82978268099993,57.87523021000013],[-153.81550045499986,57.87396881700011],[-153.80882727799985,57.874172268000095],[-153.79670162699986,57.87848541900008],[-153.76447506399992,57.89468008000013],[-153.72382564999992,57.9020856790001],[-153.71947180899988,57.900824286000116],[-153.7027074859999,57.891262111000046],[-153.69257564999995,57.88703034100011],[-153.68224036399985,57.88910553600011],[-153.67280025899993,57.89313385600009],[-153.66547604099992,57.89468008000013],[-153.64509029899995,57.88369375200006],[-153.63829505099991,57.867621161],[-153.62779700399994,57.85317617400012],[-153.59626217399992,57.84686920799999],[-153.57441158799992,57.839544989],[-153.5645645819999,57.82160065300015],[-153.56220455599993,57.799058335000055],[-153.56244869699987,57.77798086100013],[-153.5582983059999,57.73834870000012],[-153.54694576699995,57.69891998900014],[-153.52940833199992,57.66132233300014],[-153.50719153599988,57.627142645000156],[-153.49815833199995,57.642564194999984],[-153.52216549399986,57.695624091000106],[-153.52765865799992,57.72333405199999],[-153.48102779899992,57.702704169000135],[-153.45234127499995,57.69456614800005],[-153.43952389199993,57.69940827000012],[-153.44843502499995,57.71613190300015],[-153.46955318899987,57.728949286],[-153.51402747299989,57.74384186400014],[-153.49913489499994,57.760891018],[-153.47431393099987,57.77362702000015],[-153.44623775899996,57.777411200000174],[-153.42182369699992,57.76740143400009],[-153.4094132149999,57.75169505400011],[-153.39838619699992,57.73395416900003],[-153.3843888009999,57.718573309000085],[-153.36314856699988,57.709662177000055],[-153.33356686099995,57.71385325699999],[-153.3212784499999,57.730902411000145],[-153.32579505099994,57.74941640800016],[-153.34642493399986,57.758042710000055],[-153.36034094999994,57.76117584800012],[-153.37897701699993,57.774847723000065],[-153.3937475249999,57.78021881700011],[-153.3964330719999,57.78510163],[-153.3981827459999,57.78998444200006],[-153.40135657499985,57.79222239800004],[-153.43207760299993,57.79222239800004],[-153.45881100199995,57.80280182500008],[-153.47667395699992,57.82135651200009],[-153.47642981699988,57.83901601800004],[-153.4491674469999,57.84686920799999],[-153.42499752499987,57.842718817000055],[-153.3501684239999,57.81268952],[-153.2913712229999,57.79877350500011],[-153.22972571499983,57.79222239800004],[-153.2110489569999,57.78558991100009],[-153.21003170499995,57.76943594000012],[-153.21454830599987,57.74892812700008],[-153.21235104099986,57.72955963700006],[-153.20649166599995,57.720892645000156],[-153.1993302069999,57.71454498900012],[-153.1902970039999,57.71067942900011],[-153.17882239499986,57.709662177000055],[-153.19526119699995,57.72711823100013],[-153.19774329299986,57.75112539300015],[-153.1918839179999,57.805243231000034],[-153.19867916599995,57.85712311400011],[-153.20453854099992,57.86847565300009],[-153.23188229099983,57.88873932500012],[-153.24030514199993,57.9020856790001],[-153.2119848299999,57.90180084800009],[-153.1868383449999,57.89354075699999],[-153.1440323559999,57.86790599200013],[-153.0750626289999,57.837469794000164],[-153.0615128249999,57.82575104400008],[-153.04845130099994,57.83319733300005],[-153.0606176419999,57.84162018400012],[-153.08507239499994,57.852443752],[-153.09691321499992,57.86050039300016],[-153.09772701699993,57.869330145],[-153.1094864569999,57.88336823100015],[-153.1259659499999,57.89638906500012],[-153.1560766269999,57.90786367400009],[-153.2024633449999,57.94619375200001],[-153.2210180329999,57.95587799700017],[-153.2628067699999,57.96600983300011],[-153.2951554029999,57.98639557500012],[-153.29991614499994,57.99188873900014],[-153.3017471999999,58.000799872000165],[-153.29645748599992,58.008124091000084],[-153.28425045499995,58.01044342700014],[-153.27057857999992,58.008612372000165],[-153.2608129549999,58.00389232000007],[-153.2295629549999,57.997992255000106],[-153.1669408839999,57.97003815300009],[-153.11876380099994,57.960394598000114],[-153.08356686099987,57.946234442],[-153.04621334499996,57.9401716170001],[-153.0127660799999,57.929103908000066]]],[[[-136.33836829299992,58.014634507000075],[-136.33682206899988,58.007025458000136],[-136.3700251939999,57.99994538000008],[-136.37791907499988,57.99005768400014],[-136.38980058499993,57.96356842699999],[-136.37905839799993,57.93528880400013],[-136.39248613199993,57.89887116100006],[-136.41991126199986,57.86554596600017],[-136.4512833319999,57.84686920799999],[-136.4538468089999,57.863104559000035],[-136.46410071499994,57.872626044000064],[-136.47118079299992,57.881170966000134],[-136.4642634759999,57.89468008000013],[-136.4718318349999,57.898993231000034],[-136.48180091099994,57.90204498900012],[-136.49339758999986,57.90326569200015],[-136.50593014199987,57.9020856790001],[-136.5001521479999,57.91071198100003],[-136.49429277299996,57.917425848000065],[-136.48741614499994,57.92316315300006],[-136.4785863919999,57.92877838700003],[-136.4785863919999,57.93561432500014],[-136.49693762899992,57.938544012000186],[-136.51024329299986,57.93305084800014],[-136.52318274599986,57.925279039000046],[-136.5403539699999,57.92133209800006],[-136.55284583199986,57.92511627800009],[-136.5528051419999,57.93374258000009],[-136.5447485019999,57.94310130400013],[-136.53319251199994,57.949286200000095],[-136.5463761059999,57.962103583000115],[-136.5419815749999,57.97809479400003],[-136.52814693899992,57.99323151200004],[-136.51276607999986,58.00389232000007],[-136.52061926999994,58.01349518400003],[-136.54674231699988,58.012396552],[-136.56114661399988,58.01752350500003],[-136.55553137899997,58.024237372000144],[-136.55125891799986,58.03188711100007],[-136.54845130099991,58.04010651200017],[-136.54629472599993,58.060370184000085],[-136.54283606699994,58.0659040390001],[-136.51471920499992,58.08673737200009],[-136.49551347599987,58.09491608299999],[-136.47533118399994,58.09784577000011],[-136.45750891799986,58.09324778899998],[-136.4380590489999,58.072455145],[-136.36192786399988,58.031195380000135],[-136.33836829299992,58.014634507000075]]],[[[-153.20270748599992,58.098822333],[-153.18195553299992,58.09324778899998],[-153.13105221299992,58.10024648600016],[-153.1167699859999,58.10008372600002],[-153.10619055899986,58.094631252000156],[-153.0879613919999,58.07611725500015],[-153.0789281889999,58.072170315000065],[-153.07420813699986,58.068060614000025],[-153.05842037699992,58.04205963700003],[-153.0475968089999,58.037054755],[-153.00007076699993,58.031195380000135],[-152.89081783799992,57.9977074240001],[-152.90351314999987,57.990668036000116],[-152.91657467399995,57.99188873900014],[-152.9304093089999,57.99599844000009],[-152.9454239569999,57.9977074240001],[-152.9837133449999,57.98574453300016],[-153.00007076699993,57.984035549000154],[-153.0269262359999,57.98875560100007],[-153.08165442599994,58.0072289080001],[-153.1155492829999,58.013657945000105],[-153.1686498689999,58.03270091400001],[-153.20270748599992,58.02977122600007],[-153.2160538399999,58.034898179],[-153.24445553299986,58.071722723000065],[-153.26264400899996,58.085353908],[-153.28807532499988,58.08641185100008],[-153.2631729809999,58.059149481000176],[-153.25328528599994,58.052313544000135],[-153.3403214179999,58.04645416900011],[-153.3795873689999,58.04950592700003],[-153.41836503799993,58.06598541900008],[-153.32221432199987,58.12738678600009],[-153.32966061099995,58.134833075000145],[-153.3130590489999,58.14179108300014],[-153.29548092399995,58.14642975500008],[-153.27778072799995,58.146795966000084],[-153.2608129549999,58.141058661000116],[-153.22508704299995,58.112127997000115],[-153.20270748599992,58.098822333]]],[[[-151.84618079299986,58.175197658000016],[-151.86888587099992,58.173529364],[-151.8886612619999,58.178859768000066],[-151.89708411399988,58.19285716400013],[-151.89183508999992,58.20697663000005],[-151.86607825399994,58.25775788000012],[-151.82713782499985,58.265611069999984],[-151.80988521999996,58.262925523000106],[-151.79344641799983,58.24469635600003],[-151.80597896999996,58.212103583000086],[-151.81505286399988,58.196112372000165],[-151.82884680899986,58.182033596000124],[-151.84618079299986,58.175197658000016]]],[[[-135.7149958979999,58.229722398000014],[-135.68936113199993,58.226263739],[-135.66246497299994,58.23004791900003],[-135.63565019399996,58.23041413000014],[-135.62401282499985,58.225002346000096],[-135.60142981699988,58.20697663000005],[-135.5909724599999,58.20311107000004],[-135.55630449099993,58.19940827000004],[-135.54629472599993,58.19627513200014],[-135.5537817049999,58.1894391950001],[-135.53718014199984,58.181138414000046],[-135.5019425119999,58.17381419500013],[-135.48485266799986,58.162095445000055],[-135.49669348899994,58.15082428600005],[-135.50226803299984,58.138332424000154],[-135.50597083199997,58.125474351000115],[-135.51211503799993,58.11318594000007],[-135.5234268869999,58.10244375200016],[-135.53404700399997,58.09943268400014],[-135.5456436839999,58.09833405200002],[-135.56061764199993,58.09324778899998],[-135.58214270699992,58.07518138200005],[-135.60236568899987,58.05402252800015],[-135.62730872299989,58.04140859600007],[-135.69237219999994,58.053412177],[-135.7693985669999,58.04645416900011],[-135.7830704419999,58.04205963700003],[-135.75279700399992,58.02728913000014],[-135.69322669199994,58.04010651200017],[-135.6624242829999,58.031195380000135],[-135.66982988199993,58.02496979400009],[-135.65729732999986,58.020900783000044],[-135.63951575399994,58.01788971600002],[-135.6248266269999,58.0131696640001],[-135.62140865799986,58.00389232000007],[-135.6316625639999,57.99738190300014],[-135.64997311099984,57.99559153899999],[-135.74128170499992,58.002264716000056],[-135.7685440749999,57.998236395000056],[-135.79332434799997,57.984035549000154],[-135.7089737619999,57.97825755399999],[-135.66246497299994,57.970119533000066],[-135.65615800699993,57.949286200000095],[-135.64073645699997,57.95209381700015],[-135.62743079299986,57.95888906500006],[-135.62340247299989,57.967678127000134],[-135.63565019399996,57.976548569999984],[-135.63565019399996,57.984035549000154],[-135.61436926999988,57.983832098],[-135.59288489499994,57.987453518000066],[-135.57310950399994,57.99530670800014],[-135.55719967399992,58.00763580900009],[-135.51553300699996,58.058539130000106],[-135.43643144399996,58.079575914000046],[-135.42446855399993,58.09511953300012],[-135.43171139199987,58.104071356000176],[-135.44644120999993,58.11273834800007],[-135.4575089179999,58.12738678600009],[-135.43980872299989,58.128892320000126],[-135.40802975199983,58.13857656500009],[-135.38927161399988,58.141058661000116],[-135.36880449099993,58.13934967700011],[-135.34654700399994,58.134670315000015],[-135.30736243399994,58.12055084800006],[-135.31468665299994,58.11815013200012],[-135.33405514199987,58.106878973000114],[-135.31676184799994,58.100531317],[-135.3002009759999,58.10122304900012],[-135.26642818899987,58.106878973000114],[-135.2461645169999,58.10480377800012],[-135.2068578769999,58.09540436400009],[-135.18663489499997,58.09324778899998],[-135.11803137899994,58.10008372600002],[-135.1005753249999,58.096625067],[-135.08958899599992,58.089178778000026],[-135.09032141799986,58.08201732],[-135.10806230399993,58.079575914000046],[-135.10806230399993,58.072170315000065],[-134.9799698559999,58.050360419000114],[-134.92479407499988,58.02749258000009],[-134.90200761599993,57.97313060099999],[-134.9052628249999,57.96979401200015],[-134.91226152299987,57.96898021000013],[-134.91930091099994,57.967027085],[-134.9225154289999,57.96015045800008],[-134.92007402299996,57.95351797100003],[-134.91022701699984,57.94293854400017],[-134.9094945949999,57.93561432500014],[-134.91576087099986,57.921047268000116],[-134.92442786399994,57.91400788000006],[-134.95042883999994,57.9020856790001],[-134.96507727799985,57.88605377800004],[-134.9603165359999,57.87164948100015],[-134.94200598899988,57.85871002800014],[-134.91567949099988,57.84686920799999],[-134.94595292899987,57.85106028900013],[-135.04670162699986,57.9020856790001],[-135.10912024599992,57.919134833000086],[-135.12828528599988,57.92133209800006],[-135.14468339799987,57.92499420800012],[-135.19749915299985,57.949286200000095],[-135.20368404899995,57.943060614000146],[-135.18423417899993,57.921616929000024],[-135.16030839799987,57.903794664000124],[-135.1342667309999,57.88987864800005],[-135.10806230399993,57.88031647300006],[-135.0556534499999,57.87335846600017],[-135.03978430899986,57.86790599200013],[-135.01471920499986,57.846014716000084],[-135.0012100899999,57.84003327000009],[-134.98452714799993,57.84686920799999],[-134.98200436099984,57.82900625200012],[-134.9678442049999,57.82005442900011],[-134.93000240799986,57.81268952],[-134.9424535799999,57.80658600500011],[-134.9709366529999,57.80215078300013],[-134.98452714799993,57.79840729400011],[-135.00397701699984,57.788763739000146],[-135.01378333199997,57.7858747420001],[-135.20303300699987,57.78510163],[-135.25938880099994,57.79596588700018],[-135.42121334499987,57.863267320000105],[-135.4497777989999,57.871161200000174],[-135.48110917899993,57.874172268000095],[-135.4916072259999,57.877346096000146],[-135.50568600199983,57.89142487200009],[-135.6964412099999,57.93610260600014],[-135.84581458199995,57.99217357000008],[-135.86595618399986,57.99628327000011],[-135.8895564439999,57.9977074240001],[-135.8895564439999,57.990220445000126],[-135.8405655589999,57.97589752800003],[-135.81700598899988,57.96356842699999],[-135.8069962229999,57.94619375200001],[-135.7922257149999,57.9341494810001],[-135.61375891799992,57.89594147300015],[-135.5878800119999,57.88410065300017],[-135.57530676999994,57.88003164300012],[-135.54698645699997,57.87579987200011],[-135.51976477799988,57.86176178600006],[-135.51553300699996,57.86050039300016],[-135.51284745999988,57.85814036699999],[-135.5158585279999,57.84564850500008],[-135.51211503799993,57.83942291900002],[-135.49990800699987,57.83478424700008],[-135.40322831899994,57.81419505400005],[-135.3886612619999,57.81268952],[-135.3723852199999,57.805243231000034],[-135.32896887899994,57.76972077000014],[-135.3209529289999,57.758042710000055],[-135.32730058499993,57.75128815300011],[-135.3507380849999,57.74628327000009],[-135.3613175119999,57.73700592700011],[-135.36388098899994,57.72622304900004],[-135.3550919259999,57.72475820500015],[-135.32750403599997,57.72955963700006],[-135.27367102799994,57.73021067899999],[-135.25023352799985,57.72662995000003],[-135.2241918609999,57.71649811400007],[-135.21711178299992,57.71112702000003],[-135.21446692599994,57.70734284100009],[-135.21003170499986,57.706488348000086],[-135.19749915299985,57.709662177000055],[-135.17389889199993,57.72553131700009],[-135.1627091139999,57.72955963700006],[-135.11583411399994,57.73395416900003],[-135.1013077459999,57.73700592700011],[-135.0801895819999,57.75063711100007],[-135.07347571499986,57.75193919500008],[-135.06041419199988,57.752020575000145],[-135.0534561839999,57.75433991100012],[-135.0388077459999,57.755804755000085],[-135.02432206899994,57.75014883000008],[-135.00983639199987,57.746527411000116],[-134.98302161399988,57.761542059000064],[-134.96751868399988,57.764308986000025],[-134.93651282499985,57.764308986000025],[-134.9138891269999,57.75584544500007],[-134.90294348899994,57.735419012000094],[-134.89671790299988,57.710516669000135],[-134.8883357409999,57.68854401200003],[-134.89171301999994,57.673041083000115],[-134.8843481109998,57.654242255000085],[-134.8512263659999,57.604925848000086],[-134.84487870999996,57.58844635600009],[-134.8416235019999,57.57099030200014],[-134.84056555899986,57.55206940300004],[-134.8434138659999,57.53351471600003],[-134.84268144399996,57.5226911480001],[-134.83682206899994,57.51788971600003],[-134.83397376199989,57.51455312700001],[-134.81387285099993,57.49746328300016],[-134.81956946499992,57.486070054],[-134.8568416009999,57.49811432500012],[-134.87474524599995,57.48993561400001],[-134.84740149599986,57.469427802000055],[-134.87140865799992,57.46100495000008],[-134.90599524599992,57.457261460000055],[-135.02896074099996,57.460516669000114],[-135.0568741529999,57.46662018400009],[-135.1831762359999,57.51927317900011],[-135.32079016799992,57.58490631700011],[-135.4575089179999,57.63397858300006],[-135.51211503799993,57.64826080900014],[-135.55443274599986,57.67182038000011],[-135.56371008999992,57.675523179000045],[-135.58421790299985,57.68060944200008],[-135.62804114499994,57.70604075699999],[-135.76817786399988,57.759711005000085],[-135.81322180899986,57.764308986000025],[-135.80630449099996,57.75405508000007],[-135.79625403599988,57.743801174000154],[-135.78441321499992,57.735093492000075],[-135.77228756399984,57.72955963700006],[-135.7543839179999,57.728094794000086],[-135.7375382149999,57.729152736000124],[-135.72435462099992,57.725409247000115],[-135.7176407539999,57.709662177000055],[-135.72956295499984,57.7025414080001],[-135.72516842399983,57.694647528000026],[-135.71353105399993,57.68573639500009],[-135.70396887899994,57.675523179000045],[-135.76341712099992,57.670314846000146],[-135.79116777299987,57.66010163000011],[-135.8069962229999,57.641424872000144],[-135.73497473899997,57.65119049700009],[-135.71080481699997,57.64826080900014],[-135.6446020169999,57.617865302],[-135.62169348899988,57.613470770000035],[-135.60484778599988,57.60708242400009],[-135.5848689439999,57.59296295800005],[-135.5706274079999,57.57892487200012],[-135.57046464799993,57.572495835],[-135.6210831369999,57.575873114000125],[-135.64386959499987,57.570542710000055],[-135.65615800699993,57.55206940300004],[-135.61611894399988,57.56313711100015],[-135.5957738919999,57.56452057500005],[-135.5777074859999,57.55548737200003],[-135.56704667899993,57.54511139500012],[-135.55825761599996,57.53339264500015],[-135.56004798099985,57.52334219000007],[-135.5810440749999,57.51788971600003],[-135.5810440749999,57.51105377800011],[-135.56362870999993,57.50812409100008],[-135.5530492829999,57.498683986000074],[-135.54771887899992,57.48411692900005],[-135.54629472599993,57.466050523000135],[-135.55589758999992,57.453680731000084],[-135.57811438699989,57.448919989],[-135.62140865799986,57.44896067899999],[-135.59471594999994,57.428534247000115],[-135.5991104809999,57.41925690300015],[-135.60724850199983,57.41665273600016],[-135.61660722599984,57.41575755400007],[-135.6248266269999,57.41176992400009],[-135.6321508449999,57.41181061400009],[-135.64488684799994,57.41478099200002],[-135.6569718089999,57.416205145000056],[-135.6624242829999,57.41176992400009],[-135.6608780589999,57.4030622420001],[-135.6567276679999,57.39622630399999],[-135.65046139199984,57.39109935100007],[-135.64248613199987,57.387600002000106],[-135.65322831899988,57.387884833000115],[-135.66685950399992,57.38666413],[-135.67853756399984,57.383246161],[-135.6907852859999,57.36701080900015],[-135.70742753799993,57.36652252800015],[-135.8235570949999,57.38617584800003],[-135.84797115799992,57.39435455900013],[-135.84064693899992,57.41449616100005],[-135.85387122299994,57.425034898000106],[-135.89635169199994,57.435288804000045],[-135.9344376289999,57.452215887000044],[-135.94908606699994,57.461859442],[-135.95034745999993,57.469427802000055],[-135.9612524079999,57.483465887000094],[-135.97740637899997,57.49713776200004],[-136.01244055899986,57.51788971600003],[-135.98253333199995,57.52415599199999],[-135.94676673099985,57.51634349199999],[-135.8895564439999,57.48993561400001],[-135.8389786449999,57.45498281500009],[-135.81021074099996,57.439886786000095],[-135.7796931629999,57.435288804000045],[-135.80089270699992,57.46580638199999],[-135.83657792899996,57.48871491100008],[-136.03941809799994,57.57689036699999],[-136.07388261599993,57.60732656500012],[-136.06102454299992,57.61151764500006],[-136.0477188789999,57.613226630000085],[-136.0192764959999,57.613470770000035],[-136.0244034499999,57.601263739000146],[-136.01854407499985,57.59398021000011],[-136.00609290299994,57.59137604400002],[-135.99132239499994,57.59296295800005],[-135.99644934799994,57.607489325000095],[-135.98550370999988,57.613226630000085],[-135.95034745999993,57.613470770000035],[-135.95034745999993,57.62091705900009],[-135.96930904899986,57.622992255000106],[-136.0057266919999,57.63222890800007],[-136.0192764959999,57.63397858300006],[-136.05040442599997,57.62860748900003],[-136.05711829299992,57.63056061400005],[-136.06558183499996,57.63914622600007],[-136.07591712099986,57.64704010600006],[-136.08458411399997,57.648504950000124],[-136.08820553299984,57.63764069200012],[-136.09666907499988,57.62295156500012],[-136.1154679029999,57.62164948100011],[-136.13426673099988,57.630113023000085],[-136.1428116529999,57.64476146000008],[-136.13654537699983,57.657538153000125],[-136.12144934799994,57.669826565000065],[-136.1035050119999,57.67894114800007],[-136.08820553299984,57.682359117000075],[-136.08820553299984,57.68854401200003],[-136.20763098899988,57.748277085000105],[-136.2256973949999,57.766587632000075],[-136.22472083199995,57.78481679900016],[-136.23839270699997,57.79222239800004],[-136.26036536399988,57.77610911699999],[-136.27725175699985,57.77533600500006],[-136.29283606699997,57.785386460000105],[-136.31037350199992,57.80182526200012],[-136.3199356759999,57.80683014500006],[-136.3435766269998,57.81549713700015],[-136.34825598899994,57.82233307500017],[-136.3522843089999,57.83417389500013],[-136.36241614499997,57.84015534100015],[-136.37588456899994,57.84145742400015],[-136.38980058499993,57.83942291900002],[-136.39830481699997,57.82135651200009],[-136.40587317599991,57.81549713700015],[-136.41649329299986,57.82575104400008],[-136.4172257149999,57.83502838700003],[-136.4059138659999,57.85447825700014],[-136.3948461579999,57.88568756700012],[-136.35822506399984,57.91364166900014],[-136.34825598899994,57.92877838700003],[-136.3510636059999,57.93561432500014],[-136.36595618399986,57.95270416900011],[-136.36937415299985,57.96356842699999],[-136.36436926999994,57.97577545800006],[-136.3531388009999,57.983221747000144],[-136.34044348899994,57.98847077000013],[-136.3311661449999,57.99396393400015],[-136.31191972599993,57.995510158000094],[-136.28384355399996,57.981675523000106],[-136.16173255099991,57.90241120000014],[-136.05858313699986,57.85040924700017],[-136.04600989499988,57.84739817900008],[-136.0329483709999,57.84686920799999],[-136.05671139199993,57.86823151200015],[-136.1440323559999,57.907782294000114],[-136.22069251199986,57.968573309000035],[-136.23497473899997,57.976548569999984],[-136.25064042899993,57.98232656500015],[-136.29694576699993,58.010565497000115],[-136.3255102199999,58.03929271000008],[-136.40965735599994,58.07990143400015],[-136.43077551999994,58.106878973000114],[-136.42418372299994,58.12246328300002],[-136.40526282499985,58.133937893000066],[-136.38023841099994,58.14036692900008],[-136.3557022779999,58.141058661000116],[-136.33409583199995,58.13532135600006],[-136.29552161399994,58.115301825000174],[-136.2725317049999,58.106878973000114],[-136.28160559799997,58.117987372000144],[-136.29352779899992,58.12592194200012],[-136.30003821499992,58.13458893400012],[-136.29303951699993,58.14789459800012],[-136.3323868479999,58.179348049000154],[-136.3489477199999,58.196437893],[-136.3557022779999,58.219875393000066],[-136.30040442599994,58.216782945],[-136.27269446499992,58.22093333500014],[-136.26317298099994,58.21694570500016],[-136.2595108709999,58.19969310100005],[-136.25511633999992,58.19049713700018],[-136.23595130099994,58.17194245000017],[-136.23155676999994,58.15875885600012],[-136.22468014199984,58.14923737200004],[-136.19273841099994,58.13426341399999],[-136.18317623599987,58.12055084800006],[-136.18496660099993,58.117661851000136],[-136.1979874339999,58.08877187700001],[-136.1937149729999,58.083644924],[-136.16563880099991,58.06708405200014],[-136.10118567599994,58.058539130000106],[-136.1467179029999,58.0810407570001],[-136.15953528599994,58.08982982000007],[-136.1647843089999,58.10195547100007],[-136.16551673099994,58.11908600499999],[-136.16331946499994,58.134466864000146],[-136.15953528599994,58.141058661000116],[-136.16950436099992,58.14691803600006],[-136.1769913399999,58.16071198100014],[-136.1802465489998,58.17674388200005],[-136.17756100199986,58.1894391950001],[-136.16462154899986,58.19660065300015],[-136.14590410099987,58.20148346600003],[-136.1328832669999,58.20718008000002],[-136.13658606699994,58.216782945],[-136.13658606699994,58.223049221000124],[-136.10293535099993,58.221625067000055],[-136.07095292899993,58.211411851000136],[-135.98228919199994,58.167629299000076],[-135.96532141799986,58.16400788000003],[-135.9578344389999,58.17210521000014],[-135.9595434239999,58.19692617400009],[-135.95588131399987,58.20425039300009],[-135.94420325399994,58.216782945],[-135.9228409499999,58.23191966399998],[-135.8135473299999,58.27435944200006],[-135.78506425699987,58.27606842700009],[-135.75885982999986,58.26862213700009],[-135.7149958979999,58.229722398000014]]],[[[-136.05999702499992,58.267784924000104],[-136.1119532429999,58.258534061000105],[-136.13757281699992,58.26508939400019],[-136.14368927199985,58.285366327000034],[-136.10698368099995,58.303409468],[-136.04505320499987,58.31859551200007],[-136.0279392339999,58.29496935200005],[-136.05999702499992,58.267784924000104]]],[[[-152.86485755099991,58.335150458],[-152.85826575399994,58.33486562700007],[-152.84605872299989,58.33759186400012],[-152.84215247299989,58.33624909100015],[-152.84142005099991,58.33413320500012],[-152.8428442049999,58.332993882],[-152.84540768099993,58.333441473],[-152.84288489499988,58.33258698100009],[-152.8273819649999,58.32982005400014],[-152.82404537699995,58.32684967700011],[-152.81932532499985,58.32111237200015],[-152.81073971299992,58.31635163000006],[-152.79987545499995,58.31659577],[-152.7954809239999,58.31220123900003],[-152.78844153599988,58.29791901200012],[-152.7824193999999,58.28864166900014],[-152.79381262899994,58.28742096600014],[-152.79544023299985,58.28774648600007],[-152.80215410099993,58.28876373900012],[-152.8113500639999,58.29035065300015],[-152.8493546209999,58.301336981000034],[-152.90269934799986,58.30768463700014],[-152.91905676999988,58.31537506700009],[-152.9306127589999,58.328558661000116],[-152.9246720039999,58.33832428600005],[-152.9062393869999,58.34218984600007],[-152.88959713399987,58.341253973000086],[-152.86485755099991,58.335150458]]],[[[-134.38125566299996,58.27138906500015],[-134.2793676419998,58.22064850499999],[-134.25841223899988,58.19627513200014],[-134.47032630099994,58.2258161480001],[-134.51227779899995,58.223049221000124],[-134.5353897779999,58.224107164000095],[-134.57803300699993,58.23468659100014],[-134.59727942599991,58.237250067000055],[-134.62047278599988,58.24640534100005],[-134.65078691299988,58.267726955000015],[-134.67495683499988,58.29181549700002],[-134.67983964799996,58.309271552],[-134.6628311839999,58.31964752800009],[-134.62108313699986,58.32322825700005],[-134.60411536399988,58.329779364000146],[-134.58433997299994,58.34096914300015],[-134.56334387899992,58.34454987200002],[-134.48184160099987,58.33348216399998],[-134.4462784499999,58.31513092700014],[-134.38125566299996,58.27138906500015]]],[[[-135.5433445289999,58.33483223800006],[-135.5922218179999,58.327751381000105],[-135.67062290099994,58.3308996520001],[-135.71850340199984,58.34614449400008],[-135.7142304649999,58.37047795000003],[-135.65490382999985,58.379797404],[-135.56889814799987,58.373150673],[-135.5433445289999,58.33483223800006]]],[[[-134.91706295499986,58.373521226000115],[-134.9039200509999,58.371486721000096],[-134.88817298099994,58.37177155200011],[-134.87474524599995,58.36762116100009],[-134.85732988199987,58.3549665390001],[-134.83218339799993,58.34418366100003],[-134.80943762899994,58.33063385600006],[-134.7996313139998,58.309271552],[-134.79605058499996,58.298651434000064],[-134.7876684239999,58.29214101800015],[-134.77757727799994,58.28729889500006],[-134.76891028599994,58.28168366100009],[-134.73814856699997,58.24469635600003],[-134.7268774079999,58.23517487200004],[-134.71833248599987,58.229722398000014],[-134.71129309799997,58.22308991100011],[-134.70400956899996,58.20994700700008],[-134.69615637899997,58.17401764500009],[-134.6931860019999,58.168402411],[-134.60415605399987,58.17104726800006],[-134.5613500639999,58.17865631700012],[-134.55638587099992,58.180650132000046],[-134.55125891799992,58.18178945500009],[-134.47435462099992,58.182033596000124],[-134.4446508449999,58.177394924],[-134.39073645699995,58.155340887000115],[-134.36139889199984,58.14789459800012],[-134.33161373599984,58.14813873900008],[-134.18639075399994,58.168402411],[-134.17699133999992,58.16351959800012],[-134.16706295499984,58.15204498900009],[-134.16075598899985,58.13849518400013],[-134.16218014199987,58.12738678600009],[-134.16999264199984,58.123439846000096],[-134.18081620999993,58.12372467700011],[-134.20376542899993,58.12738678600009],[-134.19054114499988,58.115668036],[-134.1758520169999,58.106878973000114],[-134.16934160099987,58.077785549000154],[-134.0902400379999,58.02606842700012],[-134.08641516799992,57.9977074240001],[-134.0293676419999,57.9638532570001],[-134.00230872299994,57.939357815],[-133.97956295499992,57.87783437700013],[-133.95221920499986,57.84479401200018],[-133.91856848899994,57.816839911000145],[-133.88841712099992,57.79840729400011],[-133.89273027299993,57.78949616100008],[-133.8950089179999,57.779486395],[-133.89557857999986,57.76898834800012],[-133.89464270699997,57.758042710000055],[-133.89142818899992,57.746527411000116],[-133.8828018869999,57.72996653900004],[-133.88097083199995,57.71991608300008],[-133.87913977799985,57.69318268400015],[-133.8726293609999,57.67381419500004],[-133.86001542899987,57.658026434000085],[-133.80394446499986,57.610012111000025],[-133.78929602799985,57.58885325700011],[-133.80280514199993,57.57929108300011],[-133.8261612619999,57.58592357],[-133.84215247299994,57.60211823100003],[-133.85631262899994,57.62238190300015],[-133.87417558499993,57.641424872000144],[-133.96296139199987,57.69232819200006],[-133.96621660099993,57.70355866100006],[-133.98070227799985,57.71539948100003],[-133.98403886599988,57.72646719000006],[-133.98546301999994,57.73810455900015],[-133.98912512899992,57.745794989],[-133.99376380099994,57.75332265800012],[-133.9982804029999,57.764308986000025],[-134.01060950399994,57.80658600500011],[-134.02379309799989,57.82050202],[-134.06883704299986,57.83161041900002],[-134.08804277299993,57.84589264500012],[-134.1040746739999,57.86375560099999],[-134.11436926999994,57.88031647300006],[-134.13109290299985,57.937201239],[-134.1416723299999,57.95673248900009],[-134.15933183499993,57.976548569999984],[-134.18211829299995,57.99542877800012],[-134.23106848899994,58.02496979400009],[-134.23106848899994,58.031195380000135],[-134.21129309799989,58.026841539000046],[-134.19082597599993,58.01605866100014],[-134.15534420499984,57.990220445000126],[-134.17267818899992,58.013739325000174],[-134.19961503799988,58.040716864000146],[-134.23009192599994,58.062933661],[-134.25804602799988,58.072170315000065],[-134.27208411399994,58.073187567000126],[-134.2812393869999,58.07636139500009],[-134.28819739499988,58.08185455900012],[-134.29564368399986,58.08982982000007],[-134.3067520819999,58.09808991100005],[-134.31012936099992,58.09341054900012],[-134.3079320949999,58.08454010600009],[-134.30239824099988,58.079575914000046],[-134.2891332669999,58.07387929900007],[-134.27643795499992,58.05963776200014],[-134.26724199099993,58.04181549700008],[-134.26455644399994,58.02496979400009],[-134.2908422519999,58.035956122000066],[-134.3041886059999,58.03912995000011],[-134.31920325399992,58.03864166900003],[-134.31920325399992,58.031195380000135],[-134.26162675699993,58.00901927300008],[-134.2381078769999,57.99282461100001],[-134.2242325509999,57.96971263200008],[-134.24396725199983,57.97003815300009],[-134.2635391919999,57.97589752800003],[-134.2993871739999,57.99396393400015],[-134.3166397779999,57.99664948100003],[-134.31224524599992,57.97943756700012],[-134.2925512359999,57.94619375200001],[-134.28892981699994,57.93553294499999],[-134.27407792899996,57.9061546900001],[-134.27204342399995,57.88784414300004],[-134.27782141799992,57.869940497000144],[-134.28628495999993,57.852118231000176],[-134.28917395699995,57.836655992000075],[-134.27822831899988,57.82575104400008],[-134.25177975199992,57.85691966399999],[-134.2087296209999,57.83991120000012],[-134.05699622299989,57.695868231000055],[-134.0471085279999,57.683335679000045],[-134.05284583199995,57.67291901200014],[-134.08023027299993,57.66193268400009],[-134.06554114499994,57.65029531500009],[-134.01113847599993,57.65379466399999],[-133.9874161449999,57.64476146000008],[-133.9684952459999,57.63279857000005],[-133.95140540299994,57.62787506700008],[-133.93785559799997,57.61855703300014],[-133.92943274599992,57.59296295800005],[-133.92943274599992,57.55548737200003],[-133.92617753799985,57.54441966400001],[-133.89932206899988,57.506496486000074],[-133.8542374339999,57.47601959800013],[-133.83999589799993,57.46263255400011],[-133.86070716099994,57.45636627800017],[-133.87218176999997,57.466945705000036],[-133.88044186099987,57.48216380400003],[-133.89159094999985,57.48993561400001],[-133.90094967399992,57.490668036000116],[-133.90684973899994,57.49176666900017],[-133.91283118399986,57.49201080900012],[-133.9225968089999,57.48993561400001],[-133.91808020699995,57.48590729400003],[-133.91812089799993,57.475775458000086],[-133.92292232999984,57.46845123900009],[-133.93248450399992,57.47284577000006],[-133.96422278599997,57.48216380400003],[-134.03986568899987,57.49530670800006],[-134.05601966099994,57.50014883000013],[-134.07282467399995,57.51105377800011],[-134.07632402299993,57.50836823100003],[-134.08641516799992,57.49746328300016],[-134.0669652989999,57.48798248900006],[-134.05663001199989,57.48452383000015],[-134.04548092399995,57.48309967699999],[-134.04548092399995,57.47626373900005],[-134.10069739499988,57.47626373900005],[-134.06627356699994,57.46137116100011],[-134.01235917899993,57.45848216399999],[-133.97704016799992,57.44920482000013],[-133.9982804029999,57.415472723000114],[-133.9796036449999,57.41327545800014],[-133.94127356699988,57.425034898000106],[-133.9195043609999,57.428534247000115],[-133.91445878799988,57.431097723000114],[-133.90379798099983,57.435126044000086],[-133.8932185539999,57.435003973000036],[-133.88841712099992,57.42511627800009],[-133.88654537699986,57.42259349199999],[-133.87873287699983,57.40534088700017],[-133.87755286399994,57.40119049700005],[-133.87051347599996,57.39264557500012],[-133.86449133999994,57.37392812700015],[-133.86497962099992,57.35512929900001],[-133.87755286399994,57.34658437700006],[-133.90172278599994,57.34332916900002],[-133.91559811099992,57.334784247000115],[-133.93932044199994,57.308661200000145],[-133.9580785799999,57.303697007000025],[-133.98241126199983,57.30849844000009],[-134.0523168609999,57.33978913000006],[-134.05992591099994,57.34674713700003],[-134.06314042899987,57.35366445500013],[-134.0679418609999,57.356838283000016],[-134.08023027299993,57.35276927300005],[-134.07892818899992,57.346625067000055],[-134.07502193899992,57.335394598000065],[-134.07713782499994,57.32607656500012],[-134.09390214799996,57.32550690300015],[-134.09959876199994,57.32941315300014],[-134.10289466099988,57.34467194200011],[-134.1075333319999,57.35276927300005],[-134.1195369129999,57.363267320000105],[-134.13683020699995,57.37531159100002],[-134.15656490799986,57.38471100500006],[-134.1758520169999,57.387600002000106],[-134.14224199099996,57.35016510600015],[-134.1318253249999,57.32721588700015],[-134.14915930899988,57.31183502800012],[-134.14232337099995,57.30451080900012],[-134.13487708199995,57.298163153000175],[-134.11729895699995,57.30621979400003],[-134.10142981699994,57.300238348],[-134.07282467399995,57.27765534100003],[-134.0847875639999,57.25641510600006],[-134.09947669199997,57.25608958500011],[-134.11449133999992,57.26337311400012],[-134.12743079299992,57.26463450700014],[-134.13508053299984,57.25397370000012],[-134.14712480399993,57.21686432500009],[-134.15534420499984,57.20197174700014],[-134.16738847599996,57.19155508000016],[-134.18203691299996,57.18341705900003],[-134.19884192599997,57.17772044500005],[-134.21739661399988,57.174627997000165],[-134.22647050699987,57.17641836100016],[-134.23599199099985,57.1805687520001],[-134.24559485599985,57.18256256700012],[-134.25495357999986,57.17804596600008],[-134.2614639959999,57.173000393000144],[-134.28571529899995,57.16103750200001],[-134.27009029899997,57.14191315300006],[-134.2847794259999,57.135931708000115],[-134.31017005099991,57.1356468770001],[-134.32664954299992,57.13369375200013],[-134.3235570949999,57.12982819200015],[-134.31920325399992,57.120062567],[-134.33145097599987,57.12079498900012],[-134.34093176999988,57.123358466000056],[-134.36139889199984,57.13369375200013],[-134.36457271999993,57.12299225500011],[-134.3699438139999,57.11505768400014],[-134.3777563139999,57.10956452000012],[-134.38809160099987,57.10639069200006],[-134.38068600199986,57.101019598],[-134.37230383999992,57.09690989800005],[-134.3633520169999,57.09406159100003],[-134.35399329299986,57.09271881700012],[-134.35399329299986,57.08649323100015],[-134.4044083319999,57.067938544000135],[-134.43736731699994,57.060939846000096],[-134.46861731699994,57.03912995000003],[-134.48493404899995,57.03123607000005],[-134.50182044199994,57.02895742400009],[-134.5563044909999,57.03123607000005],[-134.57461503799993,57.029120184000064],[-134.61461341099994,57.010199286000116],[-134.59845943899987,57.04950592700011],[-134.59850012899997,57.0699730490001],[-134.62291419199994,57.110825914000046],[-134.61286373599987,57.127183335000055],[-134.59410559799989,57.14109935100013],[-134.5799047519999,57.15477122600008],[-134.61436926999988,57.17527903900013],[-134.62490800699987,57.18488190300009],[-134.6315811839999,57.19578685100007],[-134.6355688139999,57.21076080900012],[-134.63329016799992,57.22418854400011],[-134.62149003799993,57.229925848000065],[-134.5576879549998,57.21564362200017],[-134.52554277299987,57.21576569200015],[-134.50475012899997,57.23672109600001],[-134.5397029289999,57.23993561400006],[-134.55671139199987,57.24469635600015],[-134.56997636599985,57.25381094000015],[-134.58047441299993,57.26463450700014],[-134.58315995999993,57.26935455900014],[-134.56688391799992,57.28449127800014],[-134.54356848899988,57.301092841000106],[-134.51650956899994,57.309149481000034],[-134.4570206369999,57.31183502800012],[-134.46377519399996,57.31952545800014],[-134.48924719999985,57.336004950000024],[-134.49795488199993,57.33978913000006],[-134.52989661399994,57.33978913000006],[-134.54605058499993,57.34247467700011],[-134.55939693899984,57.35276927300005],[-134.55382239499994,57.36302317900008],[-134.56017005099994,57.38617584800003],[-134.5563044909999,57.397772528000026],[-134.54210364499994,57.40338776200004],[-134.52212480399996,57.40314362200009],[-134.50820878799985,57.39598216400004],[-134.51227779899995,57.380764065000065],[-134.40241451699987,57.36025625200001],[-134.34166419199994,57.33535390800007],[-134.31297766799986,57.33234284100016],[-134.3210343089999,57.344875393000066],[-134.33543860599985,57.35419342700011],[-134.3675837879999,57.36709219000012],[-134.3675837879999,57.37392812700015],[-134.35142981699994,57.375230210000055],[-134.3347875639999,57.37885163000011],[-134.31916256399992,57.38507721600018],[-134.30614173099994,57.39435455900013],[-134.34097245999988,57.39704010600009],[-134.42202714799993,57.38523997600013],[-134.46385657499994,57.39435455900013],[-134.4727270169999,57.400702216000134],[-134.49795488199993,57.428534247000115],[-134.5336807929999,57.457709052000055],[-134.5355118479999,57.46263255400011],[-134.54889889199987,57.46808502800015],[-134.56273352799985,57.480047919000086],[-134.5691625639999,57.49201080900012],[-134.56004798099988,57.49746328300016],[-134.55109615799986,57.49624258000012],[-134.53258216099994,57.49111562700013],[-134.52183997299994,57.48993561400001],[-134.51235917899993,57.49213288],[-134.4959610669999,57.50145091400005],[-134.47325598899997,57.506781317],[-134.4417211579999,57.52094147300012],[-134.40453040299985,57.52643463700015],[-134.35399329299986,57.54458242400015],[-134.37800045499992,57.552964585000105],[-134.48814856699994,57.5327009140001],[-134.54112708199995,57.51105377800011],[-134.56688391799992,57.51105377800011],[-134.57974199099993,57.523016669000135],[-134.60456295499986,57.56366608300015],[-134.61803137899994,57.572495835],[-134.6387426419999,57.57998281500006],[-134.65355383999992,57.59821198100006],[-134.66348222599993,57.62079498900012],[-134.6692602199999,57.641424872000144],[-134.6736547519999,57.67243073100014],[-134.67666581899988,57.682359117000075],[-134.70006262899997,57.706935940000086],[-134.70400956899996,57.71308014500006],[-134.7160538399999,57.745794989],[-134.71397864499994,57.75063711100007],[-134.70807857999992,57.75584544500007],[-134.7027074859999,57.76801178600014],[-134.6966039699999,57.79222239800004],[-134.69888261599993,57.81248607000005],[-134.7141007149999,57.85590241100003],[-134.72126217399997,57.897365627],[-134.75121008999994,57.95673248900009],[-134.76219641799992,57.9721540390001],[-134.76195227799985,57.98004791900017],[-134.75121008999994,57.990220445000126],[-134.7665909499999,58.00580475500011],[-134.78482011599996,58.01972077],[-134.80003821499994,58.03522370000012],[-134.80646725199986,58.05540599200004],[-134.79747473899994,58.07176341400004],[-134.75633704299986,58.09467194200014],[-134.74498450399997,58.11318594000007],[-134.74632727799988,58.12433502800009],[-134.75108801999997,58.13597239799999],[-134.7561742829999,58.14492422100012],[-134.75865637899992,58.14789459800012],[-134.75304114499994,58.16083405200015],[-134.74376380099994,58.167181708000086],[-134.73517818899987,58.17157623900006],[-134.73131262899994,58.17890045800006],[-134.73615475199983,58.18866608299999],[-134.7471410799999,58.186468817],[-134.76891028599994,58.17584870000014],[-134.77497311099984,58.171291408],[-134.77476966099988,58.16030508000015],[-134.7725317049999,58.14687734600006],[-134.77232825399994,58.134833075000145],[-134.78368079299992,58.11050039300009],[-134.79784094999985,58.11277903900007],[-134.82998613199993,58.15159739799999],[-134.84316972599996,58.17226797100009],[-134.8502091139999,58.179348049000154],[-134.87376868399988,58.18496328300016],[-134.89146887899997,58.19208405200011],[-134.90762285099993,58.20123932500009],[-134.91567949099988,58.20994700700008],[-134.90794837099983,58.23065827000009],[-134.88963782499988,58.245591539000124],[-134.8836156889999,58.25470612200012],[-134.9125870429999,58.25775788000012],[-134.9318741529999,58.26361725500006],[-134.94489498599992,58.278631903000175],[-134.95287024599986,58.2984886740001],[-134.96914628799988,58.36322663],[-134.97057044199997,58.38556549700002],[-134.9610082669999,58.40485260600015],[-134.9492895169999,58.40949127800008],[-134.93663489499994,58.40542226800012],[-134.92662512899994,58.39598216400013],[-134.9225154289999,58.384711005000106],[-134.91706295499986,58.373521226000115]]],[[[-152.6068009109999,58.468451239000146],[-152.60346432199992,58.45636627800014],[-152.58165442599994,58.46662018400017],[-152.5554906889999,58.467962958000065],[-152.4998266269999,58.46320221600017],[-152.5061742829999,58.44940827000006],[-152.52143307199987,58.42853424700009],[-152.5270889959999,58.41478099200007],[-152.4937638009999,58.41404857000005],[-152.47887122299994,58.41010163000006],[-152.4656469389999,58.401109117000125],[-152.4813126289999,58.38898346600014],[-152.4846899079999,58.37343984600012],[-152.4768774079999,58.36147695500002],[-152.45885169199988,58.360174872000115],[-152.44908606699994,58.366034247000144],[-152.4445694649999,58.372748114],[-152.43866939999992,58.376695054],[-152.4246720039999,58.373765367000075],[-152.41490637899994,58.36961497600011],[-152.4055883449999,58.36322663],[-152.40160071499992,58.35443756700011],[-152.41966712099992,58.322943427000105],[-152.39854895699992,58.32904694200003],[-152.37511145699995,58.34495677300014],[-152.37999426999994,58.353949286000145],[-152.37348385299993,58.36163971600017],[-152.3637589179999,58.37938060100008],[-152.35789954299992,58.399603583000086],[-152.3632706369999,58.41478099200007],[-152.34935462099992,58.4211286480001],[-152.32343502499992,58.414211330000015],[-152.31175696499992,58.418524481000084],[-152.2988175119999,58.42633698100009],[-152.28644771999987,58.42576732000013],[-152.26020260299993,58.41478099200007],[-152.26325436099995,58.41087474199998],[-152.26451575399994,58.40778229400008],[-152.26537024599995,58.404730536],[-152.26703854099986,58.401109117000125],[-152.24592037699992,58.39496491100006],[-152.26056881399995,58.38898346600014],[-152.26703854099986,58.388128973000114],[-152.25678463399993,58.37201569200006],[-152.23607337099992,58.36005280200014],[-152.21190344999988,58.35350169500005],[-152.19127356699988,58.353949286000145],[-152.15168209499996,58.38593170800014],[-152.1407364569999,58.39203522300012],[-152.11681067599994,58.401109117000125],[-152.1076554029999,58.389593817],[-152.0918676419999,58.38068268400015],[-152.08320064999992,58.373521226000115],[-152.09508216099988,58.36762116100009],[-152.13609778599988,58.30296458500006],[-152.15416419199988,58.26154205900003],[-152.14354407499994,58.23383209800014],[-152.13194739499994,58.23798248900009],[-152.1209203769999,58.25543854400014],[-152.11266028599988,58.27749258000013],[-152.10936438699994,58.29531484600003],[-152.09992428299995,58.311916408000066],[-152.08075924399986,58.31655508],[-152.06562252499987,58.30634186400005],[-152.06843014199993,58.27826569200006],[-152.05162512899992,58.289129950000145],[-152.0313207669999,58.306708075000174],[-152.0141495429999,58.32636139500012],[-152.00694739499983,58.34308502800015],[-152.0008031889999,58.35187409100002],[-151.98704993399983,58.34837474200004],[-151.9730118479999,58.339748440000115],[-151.96601314999992,58.33283112200003],[-151.96589107999995,58.320746161000116],[-151.97118079299992,58.30988190300015],[-151.98582923099994,58.29189687700002],[-151.9688207669999,58.284125067],[-151.98090572799987,58.25397370000009],[-151.9722387359999,58.237250067000055],[-151.9930313789999,58.22516510600015],[-152.0313614569999,58.20966217700013],[-152.0479223299999,58.19627513200014],[-152.04706783799986,58.195379950000145],[-152.04841061099995,58.18960195500007],[-152.05113684799994,58.182033596000124],[-152.0547989569999,58.17584870000014],[-152.05748450399986,58.173529364],[-152.11681067599994,58.14789459800012],[-152.12999426999988,58.166164455000015],[-152.1964005199999,58.185980536000116],[-152.21922766799992,58.20311107000004],[-152.2326554029999,58.246771552000055],[-152.24616451699987,58.268255927000084],[-152.26020260299993,58.25775788000012],[-152.2690323559999,58.263576565000065],[-152.27656002499995,58.26422760600011],[-152.28266354099995,58.259833075000024],[-152.28754635299993,58.250921942],[-152.30439205599993,58.257554429000045],[-152.31647701699993,58.249172268],[-152.32453365799992,58.23309967700011],[-152.3290909499999,58.216782945],[-152.30968176999988,58.21491120000003],[-152.29674231699988,58.207098700000024],[-152.29462643099987,58.197333075000095],[-152.30805416599986,58.1894391950001],[-152.3243302069999,58.19086334800009],[-152.35383053299986,58.205308335000055],[-152.3700658839999,58.20311107000004],[-152.36388098899985,58.19342682500009],[-152.35431881399995,58.189032294000114],[-152.34235592399995,58.188299872000094],[-152.3290909499999,58.1894391950001],[-152.33531653599988,58.1730817730001],[-152.33112545499995,58.16502513200008],[-152.30805416599986,58.155340887000115],[-152.2825414699999,58.138739325000145],[-152.27387447799987,58.134833075000145],[-152.28685462099986,58.13068268400012],[-152.3095190089999,58.13519928600009],[-152.31883704299986,58.13108958500011],[-152.3372696609999,58.110541083000086],[-152.34276282499994,58.106878973000114],[-152.34923255099994,58.10976797100015],[-152.36042232999995,58.12409088700004],[-152.36974036399988,58.12738678600009],[-152.39842688699983,58.124945380000135],[-152.4107152989999,58.125677802000084],[-152.42438717399995,58.13108958500011],[-152.45506751199994,58.137355861000074],[-152.4893692699999,58.12836334800015],[-152.52216549399992,58.10960521],[-152.54820716099988,58.08641185100008],[-152.5581762359999,58.100287177000055],[-152.56224524599995,58.11196523600013],[-152.56293697799987,58.17877838700018],[-152.56090247299986,58.19623444200014],[-152.5550430979999,58.20994700700008],[-152.57664954299992,58.206691799000126],[-152.58824622299994,58.197333075000095],[-152.59349524599992,58.182318427000084],[-152.5986221999999,58.144842841000134],[-152.6031388009999,58.13263580900015],[-152.61188717399995,58.12051015800007],[-152.62706458199995,58.10346100500012],[-152.6323949859999,58.09471263200014],[-152.63361568899992,58.08746979400002],[-152.6359350249999,58.08030833500008],[-152.64439856699994,58.072170315000065],[-152.65367591099988,58.06952545800008],[-152.67955481699988,58.066799221],[-152.7080785799999,58.05206940300012],[-152.7332657539999,58.05337148600001],[-152.75584876199994,58.063381252000106],[-152.76732337099986,58.079575914000046],[-152.7750138009999,58.06329987200011],[-152.7658178379999,58.022853908000066],[-152.77753658799992,58.000799872000165],[-152.80492102799985,57.99152252800003],[-152.9268285799999,58.014878648000106],[-153.01435299399992,58.045477606000034],[-153.0368139309999,58.05898672100002],[-153.05829830599993,58.07859935100008],[-153.06635494699987,58.09711334800009],[-153.04845130099994,58.106878973000114],[-153.08116614499986,58.11102936400006],[-153.12682044199988,58.10846588700014],[-153.16746985599988,58.111151434000035],[-153.1850479809999,58.13108958500011],[-153.22960364499988,58.1688906920001],[-153.2295629549999,58.18256256700003],[-153.1884659499999,58.219875393000066],[-153.1618139309999,58.219549872000144],[-153.02802486899995,58.19627513200014],[-153.0235082669999,58.192043361000025],[-153.01423092399992,58.17865631700012],[-153.0106095039999,58.17584870000014],[-153.00239010299987,58.17804596600014],[-153.0004369779999,58.18284739800005],[-152.9992162749999,58.18764883000012],[-152.9932348299999,58.1894391950001],[-152.9717504549999,58.18512604400003],[-152.92865963399993,58.17023346600016],[-152.9051000639999,58.168402411],[-152.9051000639999,58.17584870000014],[-153.00690670499995,58.21336497599999],[-153.01292883999994,58.222154039000046],[-153.02704830599987,58.229803778000175],[-153.0430802069999,58.23525625200001],[-153.0710343089999,58.24013906500009],[-153.08507239499994,58.24787018400009],[-153.1099340489999,58.27138906500015],[-153.05915279899992,58.298814195000105],[-153.0416967439999,58.30556875200013],[-153.01947994699992,58.30727773600013],[-152.98957271999996,58.30451080900009],[-152.9608861969999,58.29804108299999],[-152.94200598899988,58.288519598000086],[-152.90233313699994,58.27985260600009],[-152.84654700399994,58.28790924700003],[-152.80300859299993,58.288519598000086],[-152.7953588529999,58.287258205000064],[-152.7932836579999,58.28681061400008],[-152.76732337099986,58.25775788000012],[-152.75182044199988,58.27265045800006],[-152.7535294259999,58.28538646000011],[-152.76215572799987,58.29897695500007],[-152.76732337099986,58.316107489],[-152.7691137359999,58.332017320000126],[-152.77485104099992,58.337062893000144],[-152.78538977799988,58.34113190300011],[-152.8014623689999,58.353949286000145],[-152.79047604099992,58.353094794000135],[-152.77977454299992,58.35346100500005],[-152.7697647779999,58.35565827000015],[-152.76048743399986,58.360174872000115],[-152.78510494699987,58.37083567900013],[-152.8673803379999,58.394354559000085],[-152.88337154899995,58.408596096],[-152.8618871739999,58.414129950000024],[-152.8173721999999,58.413153387000065],[-152.77350826699993,58.417710679],[-152.75365149599992,58.43964264500011],[-152.74767005099994,58.45156484600016],[-152.73424231699994,58.45404694200009],[-152.7202856109999,58.45184967699999],[-152.71271725199992,58.44953034100003],[-152.70189368399988,58.44204336100016],[-152.69749915299994,58.434556382],[-152.69298255099986,58.43211497600005],[-152.6816300119999,58.43964264500011],[-152.67414303299995,58.45083242400012],[-152.67060299399986,58.4635277360001],[-152.6647843089999,58.475287177000084],[-152.6506241529999,58.483628648000135],[-152.6329239569999,58.484605210000105],[-152.61742102799988,58.478745835000076],[-152.6068009109999,58.468451239000146]]],[[[-152.48302161399988,58.480536200000145],[-152.5020238919999,58.47345612200009],[-152.52643795499995,58.47654857],[-152.63060462099992,58.507879950000024],[-152.64439856699994,58.51845937700006],[-152.63914954299995,58.52895742400016],[-152.64301510299995,58.53729889500012],[-152.6524552069999,58.54328034100003],[-152.6642960279999,58.546372789000095],[-152.5918676419999,58.55524323100015],[-152.5817358059999,58.56248607],[-152.57262122299994,58.58022695500007],[-152.5512182279999,58.590521552],[-152.50727291599986,58.60032786700013],[-152.4966527989999,58.604966539000074],[-152.47252356699988,58.62083567899999],[-152.4536840489999,58.628159897999986],[-152.4346410799999,58.62832265800016],[-152.41108150899993,58.631537177000105],[-152.38984127499992,58.636948960000055],[-152.36957760299993,58.63808828300011],[-152.34898841099988,58.62832265800016],[-152.35081946499986,58.62042877800018],[-152.3502091139999,58.61318594000015],[-152.34748287699995,58.606512762000094],[-152.34276282499994,58.60032786700013],[-152.37035071499994,58.57526276200004],[-152.3748673169999,58.56378815300008],[-152.3632706369999,58.551947333000115],[-152.4560440749999,58.5028750670001],[-152.48302161399988,58.480536200000145]]],[[[-160.2680457989999,58.6381462420001],[-160.2771801209999,58.63669272700019],[-160.27129671599988,58.65176452900011],[-160.27787705599985,58.66523412500011],[-160.29426546399986,58.671120751000025],[-160.3162596759999,58.683487176000035],[-160.31415768099987,58.68976471600003],[-160.31415768099987,58.69822825700008],[-160.30763229999988,58.705193458000124],[-160.3015472259999,58.708951698000035],[-160.3107473959999,58.71585650600018],[-160.30124243499992,58.729353976000155],[-160.2780655589999,58.71857330900015],[-160.27598770299986,58.70452091700018],[-160.27744902199987,58.691038961000125],[-160.27586709899992,58.679436258000166],[-160.2587377589999,58.67861562700001],[-160.24815833199995,58.67177969],[-160.24384518099993,58.66266510600009],[-160.2524494699999,58.6512113670001],[-160.2680457989999,58.6381462420001]]],[[[-160.41718502499992,58.681789455000064],[-160.42613684799983,58.68036530200011],[-160.43309485599994,58.684637762000115],[-160.43553626199989,58.69114817900011],[-160.42369544199994,58.724025783000016],[-160.41535396999996,58.73834870000009],[-160.40599769199994,58.75128233000005],[-160.3914688789999,58.73769765800012],[-160.38459225199986,58.730861721000124],[-160.38194739499988,58.72662995000008],[-160.38145911399988,58.721258856000055],[-160.38422604099995,58.71076080900018],[-160.39301510299993,58.69965241100014],[-160.4053442049999,58.68939850500011],[-160.41718502499992,58.681789455000064]]],[[[-160.82421157499988,58.654634656000106],[-160.84509151499984,58.63406230800014],[-160.86057095599986,58.614707383000095],[-160.86846796799986,58.59208244800011],[-160.89785828499987,58.570343310000155],[-160.9360590639999,58.559006034000014],[-160.96625316399988,58.54950836400012],[-161.0189375629999,58.55891607500002],[-161.04054790699988,58.55806141],[-161.05356249499988,58.550874314000076],[-161.0741255079999,58.54692394100006],[-161.0859789399999,58.55332607600015],[-161.07654728699987,58.572176387000106],[-161.08041619899987,58.580436518],[-161.09006727499988,58.589850651000106],[-161.07542446799988,58.60074776100005],[-161.0778184049999,58.61101574700008],[-161.07948602499985,58.629784047],[-161.11017818899995,58.65127187700012],[-161.14031127499987,58.66894351300008],[-161.17190298699987,58.69075370300005],[-161.16209481499988,58.690534864000156],[-161.07802970499986,58.63927456900011],[-161.06371026499994,58.676726219],[-161.0616757059999,58.70050507399999],[-161.04384440499987,58.702133704000104],[-161.00520956099982,58.716887322],[-160.9730873739999,58.731786746000076],[-160.94764331599993,58.737648466000145],[-160.9095365519999,58.74558271400009],[-160.85824336899987,58.74736492600012],[-160.83385750399992,58.75626412300014],[-160.80939987699992,58.765187682000054],[-160.78757661699993,58.77350958400008],[-160.7670078589999,58.775717184000044],[-160.73915142099986,58.79788516500007],[-160.7122497319999,58.804015864000164],[-160.70410635499985,58.81334860700018],[-160.68778644499994,58.81872391000003],[-160.6859239579999,58.81083861000015],[-160.69952273299984,58.79278902300011],[-160.7210639549999,58.76711138300014],[-160.77263,58.71629238600018],[-160.80090345199994,58.67991388600013],[-160.82421157499988,58.654634656000106]]],[[[-152.01305091099994,58.94529857000002],[-152.0131322909999,58.93984609600015],[-152.0425105459999,58.92975495000009],[-152.0507706369999,58.92271556200002],[-152.05516516799992,58.914292710000076],[-152.06509355399987,58.911281643000066],[-152.07465572799987,58.914292710000076],[-152.07514400899984,58.919663804000145],[-152.07017981699994,58.92654043200004],[-152.0637914699999,58.932481187000164],[-152.06183834499996,58.93809642100016],[-152.0624893869999,58.94277578300007],[-152.06045488199987,58.94440338700009],[-152.04727128799993,58.94424062700013],[-152.04482988199987,58.94639720300013],[-152.0418188139999,58.95156484600015],[-152.0352270169999,58.95168691600013],[-152.01305091099994,58.94529857000002]]],[[[-152.27338619699987,58.95941803600011],[-152.25312252499987,58.95669179900016],[-152.15778561099995,58.95669179900016],[-152.15794837099992,58.95233795800005],[-152.15929114499986,58.949286200000174],[-152.16401119699992,58.943019924000126],[-152.17695064999992,58.93911367400012],[-152.20055091099985,58.94310130400011],[-152.2123917309999,58.943019924000126],[-152.22162838399987,58.93854401200014],[-152.23981686099992,58.92527903900013],[-152.24966386599988,58.92251211100007],[-152.24970455599987,58.92251211100007],[-152.3342179029999,58.91193268400012],[-152.3632706369999,58.91571686400014],[-152.3632706369999,58.92251211100007],[-152.34015865799995,58.92479075700014],[-152.32721920499995,58.93504466400007],[-152.32380123599992,58.95111725500005],[-152.3290909499999,58.97089264500006],[-152.30907141799992,58.97040436400008],[-152.27338619699987,58.95941803600011]]],[[[-151.64692356399988,59.103935698000114],[-151.6625595559999,59.09818980300003],[-151.67835956699983,59.09991916000014],[-151.69983780299992,59.09793942800011],[-151.7136466879999,59.10583530500015],[-151.72158217899988,59.12189737100008],[-151.7085143639999,59.130720312],[-151.68785894799993,59.129656019000045],[-151.67016564199994,59.11808021399998],[-151.64371964799992,59.115749133000016],[-151.64692356399988,59.103935698000114]]],[[[-151.42828063199988,59.11730169500005],[-151.4389327179999,59.10728602900012],[-151.45955589999988,59.10901380899999],[-151.48158351799992,59.118187777000095],[-151.50850122499992,59.12856629200004],[-151.5002505399999,59.13732668800013],[-151.46513317899982,59.13819064400011],[-151.44812698599992,59.13643971600002],[-151.43356100799988,59.13529206300008],[-151.43820926099988,59.12718227600002],[-151.42828063199988,59.11730169500005]]],[[[-151.78878150599988,59.153052899000144],[-151.80075834299993,59.138892749000114],[-151.85331233599993,59.1447664490001],[-151.8931899729999,59.14436431100013],[-151.88867580599987,59.15718263100014],[-151.85898718599987,59.16386734500018],[-151.81682197999996,59.170664156000065],[-151.78878150599988,59.153052899000144]]],[[[-150.6999405589999,59.313910223000086],[-150.7316381499999,59.31150950700006],[-150.7618302069999,59.31679922100012],[-150.77985592399995,59.33405182500003],[-150.74620520699992,59.357855536000116],[-150.72358150899996,59.36603424700003],[-150.71495520699995,59.37685781500012],[-150.70417232999995,59.39545319200011],[-150.68199622299986,59.40517812700006],[-150.6537979809999,59.40721263199999],[-150.62690182199992,59.399847723000015],[-150.60859127499984,59.38117096600003],[-150.65510006399987,59.332993882000075],[-150.6774796209999,59.31976959800012],[-150.6999405589999,59.313910223000086]]],[[[-153.40587317599991,59.338568427],[-153.4988907539999,59.32542552300013],[-153.52452551999994,59.330267645],[-153.53510494699992,59.33722565300009],[-153.54511471299986,59.3389346370001],[-153.55268307199992,59.34308502800003],[-153.55561275899993,59.357611395000085],[-153.55016028599994,59.36688873900012],[-153.5381567049999,59.37710195500007],[-153.52533932199995,59.38523997599999],[-153.51777096299992,59.388617255],[-153.5044652989999,59.391750393000066],[-153.47675533799992,59.405422268],[-153.46344967399986,59.40851471600008],[-153.39793860599994,59.40851471600008],[-153.3574112619999,59.37811920800011],[-153.35460364499988,59.36517975500011],[-153.37682044199994,59.34772370000014],[-153.40587317599991,59.338568427]]],[[[-146.3406876289999,59.41144440300012],[-146.3585505849999,59.410101630000106],[-146.35863196499992,59.42243073100017],[-146.32359778599994,59.452134507000025],[-146.31309973899994,59.45575592700005],[-146.3082169259999,59.44708893400015],[-146.3224177729999,59.42584870000009],[-146.3406876289999,59.41144440300012]]],[[[-150.30219479099986,59.44916413],[-150.30370032499988,59.430487372000115],[-150.31440182199995,59.422186591000035],[-150.32127844999985,59.42234935099999],[-150.32530676999994,59.42747630400011],[-150.32819576699995,59.43353913000002],[-150.3314102859999,59.43642812700012],[-150.33832760299993,59.435248114000025],[-150.3491104809999,59.43024323100015],[-150.35533606699988,59.42963288000012],[-150.37909908799986,59.43138255400011],[-150.3855688139999,59.42865631700012],[-150.39692135299995,59.422186591000035],[-150.4153539699999,59.40713125200001],[-150.4269913399999,59.401678778000175],[-150.44347083199986,59.40228913000014],[-150.42369544199988,59.43598053600014],[-150.4105118479999,59.446275132000046],[-150.33482825399992,59.45697663000009],[-150.30650794199988,59.4642601580001],[-150.29462643099993,59.46458567900011],[-150.29389400899987,59.45697663000009],[-150.30219479099986,59.44916413]]],[[[-144.5788468089999,59.817775783000066],[-144.6052953769999,59.813177802000055],[-144.55235755099994,59.87323639500014],[-144.53384355399993,59.882066148000106],[-144.5093481109999,59.88898346600011],[-144.44200598899985,59.93732330900012],[-144.3929744129999,59.95661041900014],[-144.34178626199986,59.9845238300001],[-144.30809485599985,59.9887556010001],[-144.24575761599988,60.00755442900007],[-144.2086075509999,60.01178620000009],[-144.21328691299988,60.002264716000084],[-144.22081458199995,59.99579498900008],[-144.23062089799984,59.99237702000009],[-144.2421768869999,59.99135976800002],[-144.37710527299987,59.932359117000075],[-144.40371660099993,59.927191473000065],[-144.41218014199995,59.920355536000145],[-144.4189346999999,59.911525783000094],[-144.42772376199986,59.90253327000006],[-144.55459550699987,59.82709381700012],[-144.5788468089999,59.817775783000066]]],[[[-147.9950251939999,60.03266022300015],[-148.08116614499988,59.97166575700008],[-148.11290442599994,59.96084219000007],[-148.14216061099995,59.94672272300015],[-148.15595455599995,59.94354889500009],[-148.24498450399986,59.94354889500009],[-148.22911536399994,59.94936758000012],[-148.19623775899993,59.95335521000011],[-148.18232174399986,59.964056708000115],[-148.18915768099987,59.96344635600017],[-148.20331783799992,59.964341539000074],[-148.21019446499992,59.964056708000115],[-148.2055151029999,59.969468492],[-148.2033585279999,59.97284577],[-148.19957434799989,59.97524648600013],[-148.18976803299995,59.97768789300006],[-148.18976803299995,59.9845238300001],[-148.19798743399994,59.98395416900003],[-148.21495520699992,59.98505280200008],[-148.22325598899985,59.9845238300001],[-148.22325598899985,59.99135976800002],[-148.20299231699988,59.99555084800014],[-148.1868383449999,59.993150132],[-148.17284094999985,59.98566315300003],[-148.15937252499987,59.97426992400007],[-148.14484615799995,59.972398179000024],[-148.1060684889999,59.99209219000015],[-148.07819576699995,60.00104401200014],[-148.03209387899994,60.02545807500003],[-148.02607174399992,60.03082916900017],[-148.0200902989999,60.03778717700009],[-148.01341712099995,60.043931382000046],[-148.00503495999988,60.04657623900011],[-147.99307206899988,60.04458242400009],[-147.99046790299982,60.03949616100008],[-147.9950251939999,60.03266022300015]]],[[[-147.9817602199999,59.95905182500008],[-148.0357152989999,59.95258209800009],[-148.0463761059999,59.95709870000006],[-148.03551184799994,59.97426992400007],[-148.00751705599993,59.996242580000064],[-147.94725501199986,60.029038804],[-147.89175370999988,60.06903717700014],[-147.87657630099991,60.07636139500015],[-147.86139889199993,60.08075592700011],[-147.84658769399988,60.081244208000115],[-147.8297013009999,60.077866929],[-147.81997636599993,60.068915106000155],[-147.82664954299986,60.05280182500008],[-147.8432511059999,60.03046295800005],[-147.86750240799992,60.00885651200014],[-147.89517167899993,59.99042389500012],[-147.93858801999988,59.97190989800011],[-147.9817602199999,59.95905182500008]]],[[[-147.9531143869999,60.12946198100015],[-147.9532364569999,60.12164948100015],[-147.91478430899988,60.12547435100007],[-147.89903723899994,60.12197500200009],[-147.88125566299993,60.10736725500005],[-147.8964737619999,60.0956078150001],[-147.91836503799988,60.086004950000124],[-147.96377519399994,60.073919989],[-148.01915442599994,60.074652411000145],[-148.04442298099988,60.07029857000005],[-148.0593969389999,60.05280182500008],[-148.0508520169999,60.054266669000135],[-148.03209387899994,60.05280182500008],[-148.09333248599995,60.017767645],[-148.12486731699988,60.00413646000005],[-148.14130611899995,60.01178620000009],[-148.13312740799992,60.03107330900012],[-148.10956783799992,60.0563011740001],[-148.08055579299992,60.07819245000012],[-148.04539954299995,60.09178294500007],[-148.01825924399992,60.110581773000106],[-148.00133216099985,60.114813544000135],[-147.9986059239999,60.121161200000174],[-147.9756567049999,60.14789459800009],[-147.97004146999987,60.15273672100007],[-147.96646074099993,60.156561591000084],[-147.9592179029999,60.144964911000066],[-147.9531143869999,60.12946198100015]]],[[[-152.5582169259999,60.10834381700015],[-152.58014889199987,60.107245184000085],[-152.61115475199992,60.13104889500009],[-152.62828528599988,60.14862702000012],[-152.63569088399993,60.15794505400005],[-152.6381322909999,60.16730377800009],[-152.6323949859999,60.174790757000046],[-152.62047278599988,60.17926666900003],[-152.60460364499994,60.17861562700007],[-152.5861710279999,60.17206452],[-152.56944739499986,60.15875885600017],[-152.56318111899992,60.14996979400011],[-152.55829830599995,60.13499583500008],[-152.5582169259999,60.10834381700015]]],[[[-148.08124752499995,60.13499583500008],[-148.08735104099992,60.11823151200014],[-148.09040279899995,60.10024648600002],[-148.0992325509999,60.08348216400001],[-148.11322994699992,60.07123444200011],[-148.1317032539999,60.06647370000004],[-148.13731848899985,60.06354401200009],[-148.15933183499985,60.04315827000012],[-148.15937252499987,60.04315827000012],[-148.16881262899986,60.037746486000074],[-148.2586156889999,60.02313873900005],[-148.2860001289999,60.02399323100014],[-148.31383216099994,60.03229401200003],[-148.28734290299985,60.04266998900014],[-148.21996008999992,60.039780992000104],[-148.18976803299995,60.04657623900011],[-148.2132462229999,60.054266669000135],[-148.2996313139999,60.05280182500008],[-148.2996313139999,60.06024811400007],[-148.2711889309999,60.067206122000144],[-148.2158096999999,60.073675848000065],[-148.18976803299995,60.087551174000154],[-148.2630102199999,60.08869049700009],[-148.2859594389999,60.09438711100007],[-148.2712296209999,60.102972723000086],[-148.14081783799986,60.14789459800009],[-148.1187231109999,60.150295315000115],[-148.11400305899988,60.12909577000012],[-148.10151119699984,60.13568756700003],[-148.08808346299986,60.146714585000055],[-148.07746334499993,60.15997955900009],[-148.0693253249999,60.18695709800015],[-148.0606176419999,60.19513580900014],[-148.0499975249999,60.19570547100012],[-148.04096432199984,60.18659088700003],[-148.05170650899987,60.1689313820001],[-148.08124752499995,60.13499583500008]]],[[[-147.47272701699987,60.22955963700017],[-147.4918106759999,60.22882721600014],[-147.49486243399986,60.23712799700003],[-147.49225826699995,60.25259023600016],[-147.50096594999994,60.25836823100011],[-147.4938858709999,60.263128973000114],[-147.4678442049999,60.266669012000094],[-147.45006262899994,60.27228424700008],[-147.44456946499992,60.273098049],[-147.4389542309999,60.27334219000015],[-147.3660375639999,60.299017645000035],[-147.3604223299999,60.300726630000106],[-147.3492325509999,60.301703192],[-147.3434138659999,60.298732815000086],[-147.3438614569999,60.28510163000014],[-147.3478083979999,60.2735863300001],[-147.37026933499988,60.262844143000095],[-147.47272701699987,60.22955963700017]]],[[[-147.11416581899988,60.35667552300007],[-147.12026933499988,60.347601630000085],[-147.01105709499993,60.347601630000085],[-147.02651933499985,60.330755927000084],[-147.10724850199986,60.28620026200018],[-147.08079993399988,60.28034088700003],[-146.92227128799988,60.31346263200008],[-146.92227128799988,60.30662669500004],[-146.92870032499988,60.304836330000064],[-146.93301347599987,60.30141836100015],[-146.93700110599985,60.297186591000056],[-146.94212805899988,60.2929548200001],[-146.97057044199988,60.25918203300012],[-147.01048743399986,60.23371002800003],[-147.23379472599984,60.133124091000106],[-147.32819576699993,60.07025788000006],[-147.3710831369999,60.02887604400002],[-147.37661699099993,60.015529690000115],[-147.36949622299989,60.00678131700015],[-147.35879472599993,59.9996605490001],[-147.35366777299993,59.99135976800002],[-147.36701412699995,59.97284577],[-147.4272354809999,59.97662995000003],[-147.45299231699994,59.96747467700014],[-147.48355058499988,59.94696686400008],[-147.48741614499988,59.94354889500009],[-147.4903051419999,59.939195054],[-147.47866777299993,59.929754950000174],[-147.45612545499992,59.91559479400014],[-147.45360266799992,59.895900783000016],[-147.4682511059999,59.876776434000035],[-147.49233964799993,59.86180247599999],[-147.51878821499992,59.854193427000055],[-147.60114498599995,59.866766669000135],[-147.64370683499993,59.86261627800011],[-147.66877193899987,59.81928131700012],[-147.68423417899993,59.81708405200013],[-147.7167862619999,59.82001373900005],[-147.8006078769999,59.803290106000034],[-147.84024003799993,59.786525783000016],[-147.86143958199992,59.78245677300005],[-147.8787735669999,59.783148505],[-147.91539466099994,59.792669989],[-147.91539466099994,59.799546617000104],[-147.89879309799989,59.810207424000126],[-147.89443925699985,59.83380768400017],[-147.88613847599993,59.85761139500006],[-147.8576554029999,59.86847565300014],[-147.82542883999986,59.87079498900012],[-147.7937719389999,59.87775299700011],[-147.76390540299988,59.888495184000114],[-147.73721269399988,59.90253327000006],[-147.76012122299989,59.90766022300009],[-147.7906794909999,59.91095612200002],[-147.8049210279999,59.920355536000145],[-147.77879798099994,59.94354889500009],[-147.75243079299995,59.95384349200002],[-147.69570878799988,59.96214427300007],[-147.66893469999988,59.970892645000156],[-147.6743057929999,59.98029205900017],[-147.68252519399994,59.9870466170001],[-147.70311438699986,59.99750397300009],[-147.6809789699999,60.008734442],[-147.5331111319999,60.05857982000004],[-147.51504472599987,60.07013580900018],[-147.4246313139999,60.111232815000065],[-147.3801977199999,60.139593817],[-147.38780676999994,60.162665106000155],[-147.3740942049999,60.17055898600013],[-147.34215247299989,60.17975495000011],[-147.32974199099988,60.187201239],[-147.30382239499988,60.226874091000106],[-147.29564368399986,60.232163804],[-147.2858780589999,60.231024481000155],[-147.26553300699993,60.22589752800003],[-147.25470943899992,60.22467682500012],[-147.24669348899988,60.226874091000106],[-147.22883053299992,60.23623281500014],[-147.2011612619999,60.24217357000008],[-147.1970108709999,60.251206772999986],[-147.20287024599992,60.26911041900002],[-147.2038468089999,60.27464427300004],[-147.2060440749999,60.28156159100014],[-147.20836341099988,60.286566473],[-147.20962480399996,60.28620026200018],[-147.20759029899992,60.29498932500014],[-147.20425370999993,60.29791901200014],[-147.20026607999992,60.30011627800015],[-147.1960343089999,60.30662669500004],[-147.19176184799989,60.31024811400011],[-147.18468176999994,60.31354401200015],[-147.1780492829999,60.318589585],[-147.17552649599986,60.32709381700012],[-147.17992102799994,60.33201732],[-147.19847571499994,60.33893463700017],[-147.20287024599992,60.341376044000114],[-147.1896052729999,60.36220937700009],[-147.1551407539999,60.37645091400001],[-147.11554928299992,60.38165924700009],[-147.0867813789999,60.37555573100009],[-147.10651607999995,60.363918361000096],[-147.11416581899988,60.35667552300007]]],[[[-148.0141088529999,60.308335679000045],[-148.0184220039999,60.29979075700014],[-148.0422257149999,60.286566473],[-148.0733129549999,60.285142320000126],[-148.10444088399987,60.29287344000012],[-148.12828528599988,60.30662669500004],[-148.13512122299989,60.29979075700014],[-148.12706458199995,60.334947007],[-148.07563229099995,60.36937083500014],[-148.01439368399988,60.38792552300013],[-147.97744706899988,60.37555573100009],[-147.98306230399987,60.366441148000106],[-148.00475012899986,60.34446849200002],[-148.0062149729999,60.33563873900014],[-148.0141088529999,60.308335679000045]]],[[[-145.11969967399995,60.32440827000012],[-145.1232804029999,60.31175364800008],[-145.13658606699994,60.30662669500004],[-145.14590410099996,60.30890534100002],[-145.16319739499986,60.31867096600018],[-145.18195553299992,60.319769598],[-145.20225989499994,60.314642645],[-145.2119848299999,60.31346263200008],[-145.2334692049999,60.31732819200009],[-145.26187089799993,60.332668361000046],[-145.28429114499994,60.33392975500015],[-145.28429114499994,60.341376044000114],[-145.17442786399988,60.38239166900003],[-145.11978105399993,60.40981679900007],[-145.09508216099994,60.41632721600017],[-145.0925186839999,60.40216705900003],[-145.0992325509999,60.38886139500011],[-145.11412512899992,60.36994049700009],[-145.11978105399993,60.355047919000135],[-145.11969967399995,60.32440827000012]]],[[[-166.10273189999995,60.39199453300011],[-166.09215247299989,60.37466054900001],[-166.0801488919999,60.35932038000006],[-166.06183834499993,60.347601630000085],[-166.06794186099987,60.34467194200014],[-166.0706274079999,60.34162018400014],[-166.0723770819999,60.33808014500006],[-166.07551021999996,60.33392975500015],[-166.05174719999985,60.32794830900013],[-165.98822994699995,60.320624091000106],[-165.92125403599985,60.32709381700012],[-165.8972061839999,60.34442780200003],[-165.88678951699993,60.347601630000085],[-165.8104955719999,60.34589264500006],[-165.7875463529999,60.341376044000114],[-165.7792862619999,60.33698151200004],[-165.7664688789999,60.32465241100009],[-165.76020260299993,60.320949611000124],[-165.74555416599992,60.31903717700008],[-165.7184545559999,60.31952545800006],[-165.70555579299986,60.31346263200008],[-165.7260636059999,60.30662669500004],[-165.68443762899986,60.29979075700014],[-165.68696041599986,60.29287344000012],[-165.6885473299999,60.289984442],[-165.69188391799992,60.28620026200018],[-165.67918860599985,60.27850983300005],[-165.68541419199994,60.26683177300008],[-165.70087643099995,60.256089585000055],[-165.7158096999999,60.25141022300012],[-165.71821041599995,60.24555084800009],[-165.70551510299987,60.23236725500014],[-165.67829342399986,60.21108633000016],[-165.72126217399995,60.181586005],[-165.73289954299995,60.17633698100009],[-165.72468014199995,60.16388580900018],[-165.7113744779999,60.157049872000165],[-165.6951391269999,60.154730536],[-165.67829342399986,60.155829169000135],[-165.6829727859999,60.15106842700006],[-165.68757076699993,60.145209052000105],[-165.69188391799992,60.14215729400011],[-165.69188391799992,60.13532135600009],[-165.68285071499992,60.13385651200004],[-165.67951412699986,60.13182200700011],[-165.67719479099992,60.12815989800004],[-165.67145748599995,60.12164948100015],[-165.6812231109999,60.10675690300012],[-165.6937149729999,60.09320709800015],[-165.7260636059999,60.06647370000004],[-165.69139563699994,60.06777578300013],[-165.67719479099992,60.063177802],[-165.6662084629999,60.038763739000146],[-165.65351314999992,60.032904364],[-165.62303626199986,60.02545807500003],[-165.63093014199995,60.014797268000095],[-165.63642330599987,60.00967031500006],[-165.64350338399993,60.00495026200015],[-165.64350338399993,59.99750397300009],[-165.62885494699992,59.99290599200005],[-165.6133927069999,59.975653387000065],[-165.6025284499999,59.970892645000156],[-165.58885657499988,59.972601630000064],[-165.55785071499992,59.98305898600013],[-165.54108639199993,59.9845238300001],[-165.55382239499988,59.97650788000006],[-165.56757564999987,59.97011953300012],[-165.5783178379999,59.96255117400006],[-165.58210201699995,59.95099518400015],[-165.56908118399986,59.95099518400015],[-165.55980383999992,59.94940827000012],[-165.55475826699987,59.94354889500009],[-165.55492102799994,59.93463776200004],[-165.55866451699995,59.92963288],[-165.5646459629999,59.925523179000045],[-165.5714818999999,59.91933828300007],[-165.5986221999999,59.90965403900013],[-165.69225012899994,59.90298086100016],[-165.7158096999999,59.90599192900007],[-165.7274877589999,59.91575755400011],[-165.7422582669999,59.92422109600015],[-165.75483150899993,59.925116278000054],[-165.76020260299993,59.91254303600005],[-165.7710668609999,59.90696849200005],[-165.8649389309999,59.88275788000014],[-165.8837784499999,59.88100820500015],[-165.92780514199993,59.882066148000106],[-165.9443253249999,59.887437242000075],[-165.95856686099992,59.89752838700003],[-165.9738663399999,59.90350983300014],[-165.99360104099992,59.89630768400012],[-165.9636938139999,59.887884833000065],[-165.97911536399988,59.87616608300008],[-166.01012122299986,59.86664459800007],[-166.02708899599986,59.86469147300012],[-166.04039466099985,59.85761139500006],[-166.12267005099994,59.84113190300017],[-166.13251705599995,59.85822174700002],[-166.18781490799984,59.862250067],[-166.24669348899994,59.85390859600012],[-166.26728268099987,59.83368561400001],[-166.25959225199995,59.83270905200011],[-166.2157690089999,59.82001373900005],[-166.1574193999999,59.82746002800006],[-166.13422604099986,59.82233307500003],[-166.11274166599992,59.81085846600008],[-166.09467525899993,59.795599677000105],[-166.08173580599993,59.779038804000045],[-166.1042374339999,59.76585521],[-166.14411373599987,59.75796133000013],[-166.1820776029999,59.75629303600012],[-166.19904537699986,59.76166413000008],[-166.20588131399987,59.77789948100011],[-166.2227677069999,59.794745184000114],[-166.24400794199988,59.807847397999986],[-166.27513587099995,59.81635163000011],[-166.29841061099987,59.83051178600014],[-166.31171627499987,59.83368561400001],[-166.32994544199988,59.834906317000126],[-166.40644283799986,59.85480377800011],[-166.43858801999994,59.85822174700002],[-166.47065182199992,59.85663483299999],[-166.5000707669999,59.847967841000084],[-166.50629635299993,59.86017487200017],[-166.52110755099994,59.86102936400008],[-166.55528723899994,59.854193427000055],[-166.6133520169999,59.85639069200014],[-166.6304418609999,59.86102936400008],[-166.67076575399986,59.88544342700011],[-166.68500729099992,59.888902085000105],[-166.72663326699987,59.89240143400012],[-166.7486059239999,59.89760976800002],[-166.7878311839999,59.92112864800007],[-167.0208227199999,59.99135976800002],[-167.00096594999988,60.00234609600006],[-166.9935196609999,60.00495026200015],[-167.01146399599995,60.01227448100017],[-167.02826900899996,60.00893789300015],[-167.04478919199994,60.00165436400012],[-167.06236731699988,59.99750397300009],[-167.06012936099987,60.00458405200005],[-167.06073971299995,60.00812409100003],[-167.06212317599994,60.01186758000007],[-167.06236731699988,60.019273179000045],[-167.07494055899986,60.010077216000084],[-167.07933508999994,60.00340403900013],[-167.08551998599992,59.999212958],[-167.10338294199988,59.99750397300009],[-167.12193762899986,60.00071849200005],[-167.1529434889999,60.01581452000015],[-167.16791744699995,60.019273179000045],[-167.18980872299986,60.02777741100009],[-167.2169897129999,60.047756252000156],[-167.24107825399992,60.07050202],[-167.2542211579999,60.087551174000154],[-167.26097571499992,60.087551174000154],[-167.2678930329999,60.07029857000005],[-167.2860815089999,60.06549713700015],[-167.30695553299986,60.070013739000025],[-167.32184811099992,60.08075592700011],[-167.32103430899988,60.084377346000096],[-167.32184811099992,60.11107005400011],[-167.32371985599988,60.12099844],[-167.3287247389999,60.12860748900014],[-167.3435766269999,60.14215729400011],[-167.43614661399988,60.19537995000009],[-167.45282955599993,60.217230536000145],[-167.4364721339999,60.212062893000116],[-167.42109127499995,60.21173737200011],[-167.34288489499986,60.22426992400002],[-167.33271236899992,60.228461005000135],[-167.3211156889999,60.23541901200004],[-167.30492102799994,60.23883698100003],[-167.28807532499994,60.23871491100005],[-167.27436275899993,60.23529694200006],[-167.25898189999987,60.22955963700017],[-167.24689693899987,60.22825755399999],[-167.15815182199992,60.23452383000012],[-166.87397213399987,60.21063873900006],[-166.82042395699986,60.21759674700014],[-166.79487057199987,60.258856512000094],[-166.7979223299999,60.26683177300008],[-166.80439205599987,60.27073802300005],[-166.80781002499987,60.275458075000145],[-166.80170650899987,60.28620026200018],[-166.79230709499987,60.29230377800015],[-166.76085364499994,60.30442942900005],[-166.7213028639999,60.31110260600012],[-166.66767330599993,60.327704169000164],[-166.6365860669999,60.32709381700012],[-166.59788977799985,60.31513092699999],[-166.57770748599992,60.315252997000144],[-166.56895911399988,60.330511786000116],[-166.5665177069999,60.350490627],[-166.55894934799989,60.35944245000003],[-166.45921790299985,60.38715241100011],[-166.4219864569999,60.38434479400017],[-166.39020748599992,60.36127350500003],[-166.3946427069999,60.35822174700011],[-166.39903723899988,60.352240302],[-166.40387936099995,60.347601630000085],[-166.37983150899993,60.34894440300014],[-166.3082169259999,60.38239166900003],[-166.18537350199992,60.40216705900003],[-166.18907630099986,60.38564687700007],[-166.1734106109999,60.37938060100011],[-166.15156002499995,60.381170966000106],[-166.13695227799994,60.38857656500009],[-166.13471432199992,60.401556708000086],[-166.14085852799994,60.415594794000036],[-166.1574193999999,60.436957098000086],[-166.1312963529999,60.43146393400015],[-166.11900794199985,60.42621491100009],[-166.10899817599991,60.416489976000136],[-166.1164444649999,60.4096540390001],[-166.10273189999995,60.39199453300011]]],[[[-146.5415746739999,60.46857330900017],[-146.5449112619999,60.464911200000024],[-146.4456274079999,60.464911200000024],[-146.42324785099996,60.467922268000116],[-146.40172278599994,60.47333405200008],[-146.3790177069999,60.47606028900004],[-146.3530981109999,60.47113678600009],[-146.3620499339999,60.45380280199999],[-146.3616430329999,60.42621491100009],[-146.3667699859999,60.4096540390001],[-146.32355709499993,60.410711981000155],[-146.23839270699995,60.43162669500013],[-146.15135657499988,60.43878815300015],[-146.1296280589999,60.436224677000055],[-146.12035071499994,60.427069403000175],[-146.1297501289999,60.422837632000046],[-146.17422441299988,60.40949127800014],[-146.18862870999988,60.40216705900003],[-146.0936580069999,60.41034577000015],[-146.07876542899987,60.40216705900003],[-146.08568274599986,60.40265534100002],[-146.09064693899992,60.40062083499999],[-146.09487870999988,60.397894598000114],[-146.0998429029999,60.39598216399998],[-146.18321692599986,60.384222723],[-146.18862870999988,60.38239166900003],[-146.1926977199999,60.37734609600009],[-146.19395911399994,60.37075429900001],[-146.1942032539999,60.364650783000044],[-146.19546464799987,60.36127350500003],[-146.22398841099988,60.35138580900009],[-146.25161699099988,60.350287177000055],[-146.3050430979999,60.355047919000135],[-146.3336075509999,60.352240302],[-146.49327551999994,60.30377838700012],[-146.5539444649999,60.26121653900007],[-146.57852128799993,60.2499046900001],[-146.60016842399992,60.24518463700015],[-146.6212458979999,60.24868398600015],[-146.64858964799993,60.25787995000003],[-146.67218990799995,60.270941473],[-146.68203691299988,60.28620026200018],[-146.65562903599988,60.306789455000015],[-146.49030514199995,60.36127350500003],[-146.50479081899988,60.37042877800008],[-146.56769771999993,60.36322663000005],[-146.5933324859999,60.36810944200012],[-146.5790095689999,60.37555573100009],[-146.59911048099985,60.37547435100011],[-146.61595618399983,60.37107982000014],[-146.64793860599985,60.355047919000135],[-146.61384029899995,60.355047919000135],[-146.6555883449999,60.34064362200017],[-146.70055091099988,60.35480377800009],[-146.72264563699986,60.386216539000124],[-146.6957087879999,60.42332591400004],[-146.6603083979999,60.43016185100008],[-146.65477454299986,60.43390534100008],[-146.65208899599992,60.44220612200017],[-146.64586341099994,60.451646226],[-146.6343481109999,60.464911200000024],[-146.61266028599994,60.47809479400017],[-146.5881241529999,60.4840355490001],[-146.5306290359999,60.48541901200017],[-146.5306290359999,60.477972723000015],[-146.53612219999994,60.47483958500011],[-146.53917395699995,60.47182851800012],[-146.5415746739999,60.46857330900017]]],[[[-147.6892797519999,60.50372955900003],[-147.6826065749999,60.47113678600009],[-147.6584366529999,60.479966539000046],[-147.64525305899986,60.48309967700011],[-147.63451087099992,60.48167552300005],[-147.62718665299994,60.47443268400012],[-147.62857011599993,60.466986395000156],[-147.63475501199989,60.46088288000006],[-147.6416723299999,60.457464911000145],[-147.6416723299999,60.450628973000114],[-147.6337784499999,60.448635158000094],[-147.61436926999988,60.436957098000086],[-147.6290583979999,60.426174221000096],[-147.63418535099993,60.42332591400004],[-147.6624242829999,60.42121002800003],[-147.71092688699983,60.40180084800012],[-147.73721269399988,60.39598216399998],[-147.7154434889999,60.383286851000115],[-147.69351152299984,60.384711005000085],[-147.6712540359999,60.391791083000136],[-147.6485082669999,60.39598216399998],[-147.62535559799989,60.38959381700015],[-147.63101152299993,60.37482330900014],[-147.66218014199995,60.347601630000085],[-147.6947322259999,60.302801825000024],[-147.73875891799992,60.25983307500017],[-147.73875891799992,60.24998607000008],[-147.71056067599994,60.25141022300012],[-147.7237035799999,60.221380927000084],[-147.74128170499995,60.19358958500011],[-147.7656143869999,60.17438385600015],[-147.79869544199994,60.17011139500015],[-147.7962133449999,60.18805573100009],[-147.81143144399988,60.189357815000086],[-147.8307999339999,60.18691640800016],[-147.84024003799993,60.19367096600008],[-147.79246985599988,60.238348700000145],[-147.79869544199994,60.24518463700015],[-147.82249915299994,60.23236725500014],[-147.85171464799987,60.22793203300016],[-147.8819067049999,60.23045482],[-147.90855872299989,60.238348700000145],[-147.90330969999994,60.252875067],[-147.8959854809999,60.26032135600015],[-147.86758378799988,60.27252838700003],[-147.87775631399995,60.27826569200011],[-147.89899654899995,60.28693268400012],[-147.90855872299989,60.2929548200001],[-147.87047278599994,60.29242584800012],[-147.82282467399986,60.29913971600009],[-147.78038489499986,60.314846096000146],[-147.75772050699993,60.341376044000114],[-147.78453528599994,60.33917877800012],[-147.83372962099992,60.32941315300017],[-147.86074785099987,60.32709381700012],[-147.87271074099993,60.32892487200009],[-147.87498938699989,60.33340078300015],[-147.8701065749999,60.33905670800014],[-147.86074785099987,60.34446849200002],[-147.84780839799987,60.34642161700005],[-147.8206274079999,60.342759507],[-147.8061417309999,60.347601630000085],[-147.84618079299995,60.36627838700006],[-147.86058508999992,60.37738678600009],[-147.84707597599993,60.38239166900003],[-147.82030188699994,60.38279857000013],[-147.80134029899995,60.385891018],[-147.78628495999993,60.39398834800012],[-147.77139238199987,60.4096540390001],[-147.7858780589999,60.410549221],[-147.82119706899994,60.39948151200015],[-147.84024003799993,60.39598216399998],[-147.81248938699994,60.44623444200014],[-147.7927953769999,60.471747137000044],[-147.77139238199987,60.48541901200017],[-147.7725317049999,60.453924872000144],[-147.77668209499996,60.44171784100008],[-147.78571529899995,60.430812893],[-147.7299698559999,60.44139232000007],[-147.71011308499985,60.452582098000065],[-147.72052975199992,60.474554755],[-147.72378495999985,60.49290599200004],[-147.7081599599999,60.50678131700012],[-147.6892797519999,60.50372955900003]]],[[[-152.03856360599994,60.35040924700003],[-152.0615942049999,60.347601630000085],[-152.0728246739999,60.349758205000064],[-152.0838110019999,60.35443756700009],[-152.0896703769999,60.35911692900011],[-152.0855199859999,60.36127350500003],[-152.03779049399992,60.365708726],[-152.02745520699986,60.36810944200012],[-152.0215958319999,60.37620677300004],[-152.0217179029999,60.385321356000034],[-152.02306067599994,60.39427317900007],[-152.02061926999988,60.40216705900003],[-152.0119522779999,60.40818919500004],[-151.9902237619999,60.419094143000116],[-151.98582923099994,60.427069403000175],[-151.98053951699995,60.440415757],[-151.97105872299989,60.45209381700008],[-151.9674779939999,60.46580638200011],[-151.97968502499995,60.48541901200017],[-151.9531957669999,60.50849030200014],[-151.94306393099993,60.51162344],[-151.92133541599986,60.512111721],[-151.90416419199994,60.51056549700015],[-151.88402258999992,60.50568268400018],[-151.8662003249999,60.49730052300013],[-151.85614986899995,60.48541901200017],[-151.8697810539999,60.48541901200017],[-151.8698217439999,60.48541901200017],[-151.8797094389999,60.47736237200006],[-151.89155025899996,60.457709052],[-151.89708411399988,60.450628973000114],[-151.90880286399988,60.443589585000055],[-151.91869055899988,60.44131094000009],[-151.9297582669999,60.44025299700002],[-151.9449356759999,60.436957098000086],[-151.9634903639999,60.426174221000096],[-151.9786270819999,60.40827057500004],[-151.9821671209999,60.38947174700017],[-151.96601314999992,60.37555573100009],[-152.03856360599994,60.35040924700003]]],[[[-172.5336401029999,60.39150625200001],[-172.5033666659999,60.38857656500009],[-172.4107559889999,60.40167877800015],[-172.37983150899984,60.39598216399998],[-172.29731197799987,60.351345119000094],[-172.29731197799987,60.35130442900011],[-172.28453528599994,60.34259674700003],[-172.22577877499992,60.323635158000016],[-172.20856686099992,60.31346263200008],[-172.2228897779999,60.3137067730001],[-172.26317298099988,60.30662669500004],[-172.27887936099995,60.309800523000106],[-172.30321204299992,60.32396067900014],[-172.36652584499996,60.34446849200002],[-172.38536536399988,60.347601630000085],[-172.4247533839999,60.342474677000055],[-172.4744360019999,60.349839585000055],[-172.5080460279999,60.342962958000136],[-172.5408829419999,60.33250560100007],[-172.5719701809999,60.32709381700012],[-172.59996497299994,60.32982005399999],[-172.62572180899986,60.33698151200004],[-172.67467200399994,60.35814036700013],[-172.68622799399986,60.36163971600002],[-172.71113033799992,60.36493561400006],[-172.7224828769999,60.36810944200012],[-172.73517818899995,60.37547435100011],[-172.75157630099994,60.39276764500012],[-172.7634171209999,60.40216705900003],[-172.7833145819999,60.412339585],[-173.0042211579999,60.49017975500008],[-173.05760657499994,60.49843984600006],[-173.04377193899992,60.504339911],[-173.03779049399992,60.50584544500005],[-173.04108639199995,60.51715729400002],[-173.04246985599994,60.52757396000011],[-173.04157467399995,60.53729889500006],[-173.03779049399992,60.54682038000006],[-173.03673255099986,60.55377838700015],[-173.03815670499992,60.560370184000035],[-173.03766842399995,60.565375067000055],[-173.0309545559999,60.56732819200011],[-173.02155514199987,60.56810130400013],[-173.0137426419999,60.57013580900015],[-173.00300045499986,60.57416413000014],[-172.9523412749999,60.60097890800012],[-172.92503821499992,60.606675523000106],[-172.91425533799992,60.587836005000085],[-172.92662512899994,60.57282135600014],[-172.92145748599995,60.549627997000115],[-172.90668697799995,60.52826569200006],[-172.89037024599992,60.518947658000016],[-172.87641354099986,60.51349518400018],[-172.8118383449999,60.477972723000015],[-172.5336401029999,60.39150625200001]]],[[[-146.0969132149999,60.47968170799999],[-146.29426021999987,60.45477936400006],[-146.33263098899994,60.464911200000024],[-146.31794186099992,60.49384186400012],[-146.30573482999995,60.510158596000146],[-146.2864477199999,60.51732005399999],[-146.1201065749999,60.51947663],[-146.09308834499993,60.525783596000124],[-146.1002091139999,60.528631903000175],[-146.12035071499994,60.539374091000084],[-146.03408769399994,60.558294989000025],[-145.9490453769999,60.56732819200011],[-145.9490453769999,60.57416413000014],[-145.95661373599995,60.57705312700006],[-145.96165930899988,60.58051178600005],[-145.96955318899995,60.587836005000085],[-145.85875403599988,60.595607815000065],[-145.80573482999986,60.60618724200013],[-145.75723222599987,60.62872955900012],[-145.74982662699986,60.62132396000011],[-145.77009029899992,60.610419012000065],[-145.7777400379999,60.60830312700012],[-145.75841223899988,60.60187409100002],[-145.74982662699986,60.60146719000012],[-145.75658118399994,60.59320709800012],[-145.7641495429999,60.58710358300014],[-145.77310136599993,60.582953192],[-145.7839249339999,60.58038971600008],[-145.87173417899987,60.54389069200015],[-145.9136856759999,60.53681061400008],[-145.96271725199995,60.518947658000016],[-146.0146378249999,60.50893789300012],[-146.0630997389999,60.488267320000105],[-146.0969132149999,60.47968170799999]]],[[[-173.0529679029999,60.623928127000035],[-173.05842037699995,60.62128327000011],[-173.06871497299986,60.62421295800006],[-173.10423743399994,60.644842841000084],[-173.11359615799986,60.653021552],[-173.1113988919999,60.66421133000009],[-173.09369869699987,60.67983633000007],[-173.07172604099986,60.68622467700003],[-173.06244869699992,60.67853424700009],[-173.0621231759999,60.66962311400014],[-173.06041419199988,60.659165757000075],[-173.06232662699995,60.647894598000065],[-173.06432044199985,60.642523505000106],[-173.0541886059999,60.63056061400008],[-173.0529679029999,60.623928127000035]]],[[[-147.40660559799989,60.69627513200008],[-147.38516191299985,60.672552802000084],[-147.37433834499996,60.66486237200015],[-147.3642471999999,60.66632721600011],[-147.3529353509999,60.673773505],[-147.33897864499994,60.67934804900009],[-147.3246964179999,60.682806708],[-147.3127335279999,60.684027411000116],[-147.32502193899995,60.65717194200012],[-147.33971106699988,60.64557526200013],[-147.35973059799994,60.64447663000006],[-147.38780676999994,60.649237372000144],[-147.40294348899994,60.648382880000064],[-147.4492895169999,60.638128973000114],[-147.47716223899988,60.63564687700002],[-147.4610489569999,60.648342190000065],[-147.45494544199985,60.654933986000124],[-147.44985917899987,60.66290924700009],[-147.47402910099987,60.66111888200011],[-147.49767005099991,60.656683661000145],[-147.48721269399994,60.66128164300006],[-147.44985917899987,60.669745184000114],[-147.44847571499992,60.68097565300012],[-147.4553930329999,60.687811591000056],[-147.46637936099992,60.69082265800013],[-147.47716223899988,60.69017161699999],[-147.46629798099985,60.69806549700014],[-147.42878170499995,60.71137116100009],[-147.42056230399993,60.707098700000174],[-147.41307532499988,60.70205312700012],[-147.40660559799989,60.69627513200008]]],[[[-147.9368383449999,60.728827216000134],[-147.92906653599988,60.718166408000016],[-147.92536373599992,60.731878973000114],[-147.9195043609999,60.74164459800009],[-147.9098201159999,60.74481842700014],[-147.88125566299993,60.73151276200012],[-147.8654679029999,60.72011953300015],[-147.8524470689999,60.70673248900006],[-147.84707597599993,60.69399648600002],[-147.85753333199992,60.68720123900009],[-147.92223059799986,60.684027411000116],[-147.92324785099993,60.68085358300014],[-147.9246720039999,60.674221096000096],[-147.92833411399994,60.667141018000116],[-147.93590247299989,60.66290924700009],[-147.9415177069999,60.665106512000094],[-147.96690833199992,60.680324611000074],[-148.01219641799992,60.725002346000124],[-147.99461829299992,60.731350002000156],[-147.97883053299995,60.725978908000016],[-147.96397864499988,60.71662018400014],[-147.94953365799995,60.71137116100009],[-147.9654841789999,60.733832098000086],[-147.96934973899982,60.74664948100013],[-147.96035722599993,60.752346096],[-147.9493302069999,60.74872467700014],[-147.94249426999986,60.73997630400008],[-147.9368383449999,60.728827216000134]]],[[[-148.1077774729999,60.66290924700009],[-148.1247452459999,60.65053945500015],[-148.14049231699994,60.64866771],[-148.15514075399992,60.65399811400006],[-148.16860917899993,60.66290924700009],[-148.16864986899992,60.66290924700009],[-148.19452877499992,60.68146393400009],[-148.22223873599992,60.70612213700009],[-148.23009192599991,60.72972239800013],[-148.19660396999996,60.74481842700014],[-148.21165930899988,60.75604889500014],[-148.2170304029999,60.759100653000026],[-148.15868079299992,60.76471588700004],[-148.14130611899995,60.759100653000026],[-148.12409420499995,60.751125393000095],[-148.11115475199995,60.738104559000085],[-148.1100561189999,60.72532786700004],[-148.12828528599988,60.718166408000016],[-148.12828528599988,60.71137116100009],[-148.10802161399988,60.709702867000075],[-148.0987442699999,60.696844794000135],[-148.0991918609999,60.67914459800014],[-148.1077774729999,60.66290924700009]]],[[[-146.73471076599992,60.814519733000125],[-146.76557955699988,60.80195563199999],[-146.7968085359999,60.80593887100015],[-146.81125463199993,60.818283049000016],[-146.82030575299993,60.84169370900018],[-146.8064300649999,60.854186013000124],[-146.77530975799993,60.85709499700012],[-146.7613762559999,60.86821061100012],[-146.76161961799988,60.87924984200011],[-146.73874058499993,60.87107057600016],[-146.71285145799988,60.853251674000106],[-146.7040633259999,60.8394856770001],[-146.71800854299988,60.82839300400003],[-146.73471076599992,60.814519733000125]]],[[[-147.13658606699988,60.90827057500012],[-147.13589433499993,60.90131256700011],[-147.1270645819999,60.902329819999984],[-147.1192113919999,60.905666408000016],[-147.1196996739999,60.89813873900005],[-147.13194739499994,60.88768138199999],[-147.15819251199986,60.87547435100011],[-147.15269934799994,60.873521226000044],[-147.1315811839999,60.87799713700012],[-147.12165279899992,60.88178131700014],[-147.1122940749999,60.884426174000126],[-147.10781816299993,60.88735586100016],[-147.10220292899993,60.897691148000085],[-147.09707597599993,60.899644273000106],[-147.09414628799988,60.8979352890001],[-147.0782364569999,60.892767645],[-147.07664954299995,60.88690827000006],[-147.08315995999993,60.87848541900011],[-147.10411536399988,60.86615631700006],[-147.13963782499985,60.85561758],[-147.16624915299988,60.854925848000065],[-147.1826879549999,60.85822174700009],[-147.19029700399994,60.862982489],[-147.1853735019999,60.869452216000106],[-147.18285071499986,60.87571849200005],[-147.18944251199994,60.87750885600003],[-147.2099503249999,60.87641022300009],[-147.2163793609999,60.87710195500013],[-147.2219945949999,60.87543366100011],[-147.2195938789999,60.87140534100014],[-147.22964433499993,60.867824611000074],[-147.25377356699985,60.86810944200003],[-147.3105362619999,60.87445709800015],[-147.3189184239999,60.877264716000084],[-147.31871497299994,60.87962474200004],[-147.31041419199994,60.880804755000085],[-147.30345618399986,60.88271719000012],[-147.29873613199987,60.886623440000115],[-147.29010982999995,60.88930898600002],[-147.2774145169999,60.888128973000086],[-147.26610266799992,60.88922760600004],[-147.25621497299989,60.896673895],[-147.2466527989999,60.90180084800003],[-147.2331436839999,60.904689846000146],[-147.22691809799989,60.906805731000155],[-147.21524003799988,60.90729401200003],[-147.21271725199995,60.90204498900006],[-147.21751868399994,60.89468008000016],[-147.2146703769999,60.89248281500006],[-147.20555579299992,60.89907461100013],[-147.1944067049999,60.90424225500005],[-147.1809789699999,60.90314362200011],[-147.1758520169999,60.89996979400005],[-147.18004309799989,60.896633205000015],[-147.17764238199987,60.894354559000035],[-147.1680395169999,60.89252350500006],[-147.14232337099995,60.90916575700011],[-147.13658606699988,60.90827057500012]]],[[[-148.03209387899994,60.93040599200002],[-147.96764075399992,60.90558502800004],[-147.94050045499992,60.88580963700012],[-147.94326738199987,60.86155833500011],[-147.91934160099993,60.838324286],[-147.91234290299994,60.825425522999986],[-147.91539466099994,60.81313711100013],[-147.92918860599994,60.806341864],[-147.94298255099994,60.812201239000146],[-147.95592200399983,60.82221100500014],[-147.96690833199992,60.827378648000135],[-148.0084936189999,60.79633209800012],[-148.02379309799994,60.791205145],[-148.08731035099993,60.80011627800014],[-148.08735104099992,60.80011627800014],[-148.1160375639999,60.79755280200014],[-148.12714596299992,60.800604559000035],[-148.13512122299989,60.81313711100013],[-148.1368302069999,60.82636139500006],[-148.1342260409999,60.83681875200015],[-148.13023841099994,60.84662506700009],[-148.12828528599988,60.85809967700011],[-148.1113988919999,60.87750885600003],[-148.08149166599992,60.89203522300006],[-148.0698949859999,60.90424225500005],[-148.1077774729999,60.91681549700005],[-148.1077774729999,60.923000393],[-148.08946692599994,60.92243073100003],[-148.03209387899994,60.93040599200002]]],[[[-150.22752844999985,61.127183335000055],[-150.26524817599994,61.123439846000124],[-150.27643795499995,61.127386786000024],[-150.2599991529999,61.133124091000084],[-150.24522864499988,61.14606354400008],[-150.2317602199999,61.16290924700008],[-150.2243546209999,61.17039622600005],[-150.21084550699993,61.17304108300015],[-150.18451900899993,61.17426178600006],[-150.17772376199989,61.16136302300005],[-150.1962377589999,61.141302802],[-150.22752844999985,61.127183335000055]]],[[[-165.9469701809999,62.02570221600003],[-165.9444067049999,62.017971096],[-165.9478246739999,62.01593659100017],[-165.9564916659999,62.02008698100011],[-165.96349036399988,62.02179596600002],[-165.9682104159999,62.02069733300008],[-165.97394771999996,62.01874420800011],[-165.9805395169999,62.01561107000005],[-165.9857071609999,62.0153669290001],[-165.9892471999999,62.017971096],[-165.9982804029999,62.01850006700009],[-166.00983639199995,62.02293528900007],[-166.0087377589999,62.03725820500012],[-165.99559485599994,62.054266669000114],[-165.9828995429999,62.0659040390001],[-165.9721166659999,62.07217031500006],[-165.9660538399999,62.070379950000174],[-165.97166907499988,62.059515692],[-165.97618567599994,62.04458242400016],[-165.96198482999992,62.032904364000146],[-165.94892330599995,62.02952708500014],[-165.9469701809999,62.02570221600003]]],[[[-164.56700598899988,63.04629140800013],[-164.58393307199992,63.04205963700009],[-164.5996801419999,63.04279205900003],[-164.61180579299986,63.046698309000035],[-164.61156165299994,63.055894273000106],[-164.59642493399994,63.063218492000104],[-164.58690344999985,63.064439195000126],[-164.57721920499986,63.063218492000104],[-164.56330318899992,63.05621979400002],[-164.56700598899988,63.04629140800013]]],[[[-169.78205318899987,63.043402411],[-169.7770889959999,63.035060940000115],[-169.8557022779999,63.088690497000115],[-169.88080807199992,63.10956452000009],[-169.9318741529999,63.139146226000136],[-169.92723548099988,63.13869863500004],[-169.8688451809999,63.10614655200008],[-169.80996660099993,63.06464264500009],[-169.7900284499999,63.0516625020001],[-169.78205318899987,63.043402411]]],[[[-169.50812740799984,63.373358466000056],[-169.44094285999992,63.36353985600006],[-169.48932857999992,63.36782461100002],[-169.51231848899988,63.37376536700005],[-169.52900143099993,63.38336823100012],[-169.50812740799984,63.373358466000056]]],[[[-170.38182532499988,63.30141836100007],[-170.2962133449999,63.239406643000116],[-170.3691300119999,63.29059479400008],[-170.44965572799987,63.32510000200001],[-170.70783443899992,63.395209052000084],[-170.48546301999988,63.34467194200009],[-170.38182532499988,63.30141836100007]]],[[[-171.0292455719999,63.43866608300011],[-170.7840470039999,63.408514716000106],[-170.97520911399994,63.43121979400014],[-171.05854244699995,63.430121161],[-171.07289548499995,63.437325571000045],[-171.0292455719999,63.43866608300011]]],[[[-171.07079016799992,63.602484442000026],[-171.07489986899986,63.60224030200008],[-171.08999589799984,63.60390859600009],[-171.07079016799992,63.602484442000026]]],[[[-171.14403235599988,63.61176178600006],[-171.09003658799986,63.60390859600009],[-171.15765571599988,63.609736818000115],[-171.14403235599988,63.61176178600006]]],[[[-162.3824356759999,63.62299225500005],[-162.34080969999985,63.602484442000026],[-162.34166419199988,63.59707265800016],[-162.34434973899994,63.59369538000014],[-162.3487442699999,63.59149811400005],[-162.3544815749999,63.58942291900003],[-162.35802161399988,63.586615302],[-162.36034094999994,63.58388906500004],[-162.3631078769999,63.58209870000004],[-162.3681127589999,63.581976630000064],[-162.34943600199992,63.560492255000106],[-162.34764563699986,63.55475495000014],[-162.35936438699986,63.546210028000026],[-162.3730362619999,63.54975006700012],[-162.38414466099994,63.557766018000066],[-162.38801021999993,63.56220123900011],[-162.49815833199995,63.548529364],[-162.61485755099994,63.548529364],[-162.6269425119999,63.55068594],[-162.64891516799995,63.56000397300015],[-162.67817135299984,63.563666083],[-162.71760006399995,63.57518138200014],[-162.67650305899986,63.61151764500012],[-162.6660863919999,63.61676666900012],[-162.63341223899994,63.622626044000135],[-162.62140865799992,63.62299225500005],[-162.61042232999995,63.61920807500006],[-162.6025284499999,63.61371491100011],[-162.59394283799986,63.6112328150001],[-162.58043372299989,63.61676666900012],[-162.58442135299987,63.628485419000086],[-162.55646725199995,63.62982819200009],[-162.4821671209999,63.62189362200002],[-162.46165930899988,63.623683986000025],[-162.44395911399988,63.62946198100015],[-162.43639075399994,63.64032623900006],[-162.42808997299986,63.64215729400003],[-162.40904700399986,63.639349677000084],[-162.37494869699995,63.630438544000135],[-162.3824356759999,63.62299225500005]]],[[[-171.67259680899986,63.79633209800015],[-171.6521703769999,63.790432033],[-171.63573157499988,63.77728913000005],[-171.6257218089999,63.76072825699999],[-171.63646399599992,63.75409577000012],[-171.64509029899992,63.741848049000154],[-171.64915930899986,63.72687409100003],[-171.64618893099993,63.712347723000086],[-171.63390051999988,63.70038483300005],[-171.61632239499988,63.69354889500013],[-171.4465225899999,63.658636786000116],[-171.40721594999985,63.644110419000164],[-171.42931067599986,63.64451732],[-171.46825110599994,63.65501536700005],[-171.48912512899992,63.65770091400013],[-171.5043432279999,63.653265692000055],[-171.5302221339999,63.631293036000145],[-171.54377193899987,63.62299225500005],[-171.54377193899987,63.61676666900012],[-171.5293676419999,63.62164948100017],[-171.51854407499988,63.619696356000034],[-171.50841223899982,63.614650783000094],[-171.4959610669999,63.60993073100009],[-171.4871720039999,63.608954169000114],[-171.3431290359999,63.61530182500014],[-171.31041419199988,63.62299225500005],[-171.32538814999992,63.629706122000115],[-171.34296627499992,63.63165924700014],[-171.37926184799994,63.630438544000135],[-171.37926184799994,63.63666413],[-171.15929114499994,63.609808661000116],[-171.16417395699992,63.60773346600008],[-171.1684057279999,63.60488515800016],[-171.17170162699986,63.600897528000175],[-171.17381751199989,63.595648505],[-171.1257218089999,63.595648505],[-171.11237545499986,63.593491929],[-171.09675045499992,63.58417389500015],[-171.08759518099993,63.581976630000064],[-170.97520911399994,63.58942291900003],[-170.97752844999988,63.58612702],[-170.97797604099992,63.58502838700014],[-170.9788305329999,63.58429596600003],[-170.9826554029999,63.581976630000064],[-170.9369604159999,63.57168203300014],[-170.88874264199995,63.58539459800006],[-170.84003658799992,63.606105861000074],[-170.77350826699993,63.62051015800012],[-170.72199459499996,63.650864976000115],[-170.6625870429999,63.67251211100001],[-170.6462296209999,63.6850446640001],[-170.6246231759999,63.670599677000055],[-170.59589596299992,63.66966380400007],[-170.49657141799992,63.70010000200004],[-170.47040768099987,63.704087632],[-170.4407852859999,63.70551178600006],[-170.42829342399992,63.70343659100014],[-170.4019262359999,63.69399648600013],[-170.38927161399994,63.691839911000116],[-170.33775794199988,63.69928620000012],[-170.31004798099988,63.69867584800014],[-170.29735266799992,63.695542710000076],[-170.27635657499988,63.68085358300008],[-170.2664281889999,63.677679755000106],[-170.25536048099994,63.675685940000065],[-170.24156653599994,63.671372789000074],[-170.1881811189999,63.639105536000145],[-170.16710364499988,63.630438544000135],[-170.11095130099986,63.623195705000015],[-170.08246822799995,63.615179755000085],[-170.0670059889999,63.59414297100013],[-170.05296790299988,63.57941315300015],[-170.0497940749999,63.571478583],[-170.0520727199999,63.560614325000095],[-170.0553686189999,63.555405992000104],[-170.0541479159999,63.551581122000094],[-170.04295813699989,63.54474518400018],[-170.03856360599988,63.53192780200013],[-170.05321204299992,63.51577383000007],[-170.07323157499988,63.499335028000175],[-170.0845434239999,63.4858259140001],[-170.0689184239999,63.49135976800012],[-170.05121822799987,63.493719794000086],[-169.95368404899995,63.488714911000145],[-169.89106197799993,63.467352606000176],[-169.84764563699989,63.45807526200004],[-169.7555639309999,63.45233795800005],[-169.7742406889999,63.44818756700012],[-169.82066809799994,63.44944896000011],[-169.84369869699992,63.44489166900008],[-169.78221594999994,63.43537018400017],[-169.65733801999994,63.439642645],[-169.59727942599994,63.424383856000034],[-169.57990475199995,63.41079336100007],[-169.56562252499995,63.37905508],[-169.5495092439999,63.362941799000154],[-169.52155514199995,63.35297272300015],[-169.48106848899994,63.347398179000045],[-169.4406632149999,63.3480492210001],[-169.4129532539999,63.35667552300003],[-169.42426510299987,63.360663153000175],[-169.43614661399994,63.36322663000008],[-169.3255509109999,63.363104559000114],[-169.29149329299992,63.35932038],[-169.2621557279999,63.34926992400001],[-169.2059220039999,63.30731842700011],[-169.18671627499995,63.301459052000084],[-169.12397213399996,63.300604559000185],[-169.09251868399994,63.30605703300002],[-169.07030188699989,63.32135651200015],[-169.10285396999996,63.33270905200013],[-169.14325924399992,63.33905670800008],[-169.22114010299987,63.34247467699999],[-169.22114010299987,63.34926992400001],[-169.07030188699989,63.34247467699999],[-169.0076391269999,63.34926992400001],[-168.9924210279999,63.34686920800006],[-168.9614965489999,63.337144273000106],[-168.71519934799989,63.31195709800015],[-168.6861059239999,63.301459052000084],[-168.69969641799995,63.29559967700014],[-168.7275284499999,63.28733958500014],[-168.74071204299986,63.2809919290001],[-168.71711178299992,63.26089101800006],[-168.7288712229999,63.23383209800012],[-168.77550208199992,63.19159577],[-168.8118383449999,63.17011139500006],[-168.8508194649999,63.16282786700008],[-168.95160885299993,63.166001695000126],[-169.00291907499988,63.17430247600011],[-169.01850338399984,63.18134186400009],[-169.03925533799983,63.18805573100012],[-169.28364010299993,63.17829010600017],[-169.33100338399996,63.16494375200007],[-169.28791256399992,63.17983633000004],[-169.26537024599995,63.18353913000006],[-169.18712317599991,63.18744538000005],[-169.1592504549999,63.19375234600001],[-169.14484615799995,63.20587799700008],[-169.28734290299985,63.19330475500003],[-169.3511449859999,63.17621491100006],[-169.4129532539999,63.15070221600017],[-169.39928137899994,63.1432152360001],[-169.39928137899994,63.136948960000055],[-169.4159643219999,63.13035716399998],[-169.4456680979999,63.11318594000015],[-169.5048721999999,63.101141669000036],[-169.5264786449999,63.091376044000086],[-169.53583736899995,63.078599351000044],[-169.54185950399986,63.072088934000156],[-169.56944739499988,63.051947333000115],[-169.57746334499993,63.04075755400011],[-169.57823645699995,63.022650458],[-169.5711563789999,63.011379299],[-169.54267330599987,62.99359772300012],[-169.5593969389999,62.986517645000056],[-169.59752356699988,62.98387278899999],[-169.61469479099992,62.97622304900012],[-169.6368302069999,62.95579661700007],[-169.64940344999988,62.948431708000086],[-169.6662084629999,62.94521719000012],[-169.7092179029999,62.96149323100015],[-169.73176021999987,62.96588776200004],[-169.7555639309999,62.96564362200009],[-169.74718176999994,62.9798851580001],[-169.7468155589999,62.99217357000004],[-169.75239010299993,63.00324127800008],[-169.76178951699995,63.01410553600008],[-169.73798580599987,63.01593659100014],[-169.71617591099988,63.02484772300009],[-169.70531165299994,63.04018789300012],[-169.7145889959999,63.061265367000075],[-169.72211666599995,63.064764716000134],[-169.7429906889999,63.06720612200009],[-169.75182044199988,63.071844794000114],[-169.77607174399995,63.09601471600003],[-169.8174535799999,63.126776434000085],[-169.86693274599992,63.14447663000002],[-169.9746801419999,63.16494375200007],[-169.9746801419999,63.157456773000106],[-170.02460689999992,63.17064036700004],[-170.0398656889999,63.18134186400009],[-170.0492651029999,63.18520742400006],[-170.0714005199999,63.184393622000165],[-170.0807999339999,63.188177802],[-170.0847061839999,63.194769598000065],[-170.08495032499988,63.20042552300004],[-170.0865372389999,63.204413153000026],[-170.09447180899986,63.20587799700008],[-170.1133927069999,63.20278554900001],[-170.14570064999992,63.18870677300007],[-170.15965735599985,63.18475983300008],[-170.18431555899988,63.18622467700014],[-170.23603268099993,63.19745514500015],[-170.2620336579999,63.198431708000115],[-170.25572669199985,63.20917389500012],[-170.24474036399988,63.21165599200007],[-170.2322485019999,63.212836005],[-170.22105872299989,63.21954987200002],[-170.21837317599986,63.2279320330001],[-170.21601314999992,63.25470612200009],[-170.2176407539999,63.260484117000075],[-170.22297115799992,63.264797268000066],[-170.22826087099992,63.27415599200002],[-170.23497473899985,63.28351471600003],[-170.24498450399994,63.28778717700014],[-170.26134192599994,63.289129950000024],[-170.32982337099992,63.30585358300005],[-170.4123429029999,63.33869049700014],[-170.4443253249999,63.35919830900012],[-170.59642493399988,63.39915599200007],[-170.6630346339999,63.40387604400017],[-170.66645260299987,63.40615469000015],[-170.66832434799989,63.41103750200001],[-170.67113196499992,63.41592031500009],[-170.6773168609999,63.41815827000006],[-170.77635657499988,63.42055898600002],[-170.7964574859999,63.424383856000034],[-170.80707760299995,63.42975495000008],[-170.82249915299988,63.44525788],[-170.83124752499995,63.45233795800005],[-170.84467525899996,63.45856354400002],[-170.8561498689999,63.46035390800002],[-171.0838516919999,63.44489166900008],[-171.08311926999988,63.44293854400002],[-171.0820206369999,63.441229559000035],[-171.0791723299999,63.43817780200015],[-171.1218969389999,63.43219635600013],[-171.14073645699995,63.42523834800012],[-171.1564428379999,63.414740302000055],[-171.1837052069999,63.402289130000135],[-171.2527970039999,63.39606354400008],[-171.28368079299986,63.38336823100012],[-171.29051673099988,63.38336823100012],[-171.29487057199987,63.36204661700005],[-171.32514400899987,63.35122304900015],[-171.36103268099995,63.34528229400003],[-171.38239498599992,63.33869049700014],[-171.40794837099992,63.322577216000084],[-171.43932044199994,63.31976959800012],[-171.5574438139999,63.335028387000094],[-171.55894934799986,63.336737372000115],[-171.5725805329999,63.34617747600013],[-171.5785619779999,63.34926992400001],[-171.58641516799992,63.35049062700013],[-171.6123754549999,63.34926992400001],[-171.62604732999992,63.35138580900012],[-171.65436764199987,63.36078522300015],[-171.70482337099986,63.36782461100002],[-171.7355850899999,63.37592194200015],[-171.75914466099994,63.39032623900003],[-171.82123775899987,63.44171784100002],[-171.82787024599992,63.45075104400002],[-171.82945716099985,63.46767812700001],[-171.8417862619999,63.48517487200014],[-171.84727942599994,63.49697500200013],[-171.85114498599992,63.509588934000114],[-171.8528946609999,63.52118561400012],[-171.85057532499988,63.520656643000144],[-171.8457738919999,63.52374909100003],[-171.84093176999986,63.52879466400007],[-171.83857174399995,63.534247137000094],[-171.83954830599993,63.53986237200011],[-171.84544837099995,63.55475495000014],[-171.8413793609999,63.576971747000115],[-171.8370255199999,63.58340078300013],[-171.82807369699987,63.592515367000104],[-171.8196915359999,63.59837474200007],[-171.80964107999995,63.60394928600008],[-171.8011368479999,63.61066315300011],[-171.7975968089999,63.61985911699998],[-171.80028235599988,63.62604401200014],[-171.8055313789999,63.63076406500007],[-171.8093969389999,63.63515859600015],[-171.80785071499994,63.64032623900006],[-171.80048580599995,63.64447663],[-171.77977454299995,63.647894598],[-171.7703344389999,63.650864976000115],[-171.75165768099995,63.66404857000008],[-171.74787350199995,63.674994208000115],[-171.74994869699995,63.68744538000006],[-171.7492162749999,63.70551178600006],[-171.7277318999999,63.73452383000016],[-171.72057044199985,63.75267161700004],[-171.7324926419999,63.76072825699999],[-171.7354223299999,63.76483795800015],[-171.73884029899992,63.7740746110001],[-171.74083411399988,63.784247137000065],[-171.73932857999992,63.79120514500012],[-171.7280167309999,63.79612864800002],[-171.71552486899992,63.794256903000026],[-171.70380611899992,63.790838934000114],[-171.69456946499986,63.79120514500012],[-171.67259680899986,63.79633209800015]]],[[[-168.0484106109999,64.958929755],[-168.07872473899988,64.95685455900018],[-168.0967504549999,64.96539948100009],[-168.08759518099993,64.97882721600008],[-168.0655411449999,64.98484935100002],[-168.03551184799986,64.985296942],[-168.02769934799989,64.97992584800012],[-168.02656002499992,64.96808502800017],[-168.0484106109999,64.958929755]]],[[[-168.8996068999999,65.74762604400017],[-168.90986080599993,65.73956940300003],[-168.92621822799993,65.73989492400007],[-168.9421280589999,65.74371979400009],[-168.95173092399992,65.75315989799998],[-168.94298255099994,65.76471588700012],[-168.92011471299995,65.76886627800015],[-168.90790768099987,65.76829661699998],[-168.90278072799995,65.76154205900015],[-168.8996068999999,65.74762604400017]]],[[[-167.82721920499986,65.73859284100017],[-167.84333248599995,65.73777903900003],[-167.8487035799999,65.74282461100007],[-167.8335668609999,65.75287506700006],[-167.8194067049999,65.75934479400014],[-167.77700761599988,65.77301666900009],[-167.75116939999987,65.77676015800013],[-167.7382706369999,65.77716705900004],[-167.74339758999986,65.77252838700012],[-167.76044674399992,65.76463450700014],[-167.78001868399988,65.75958893400009],[-167.79405676999994,65.75397370000012],[-167.80894934799989,65.74551015800007],[-167.82721920499986,65.73859284100017]]],[[[-167.6628311839999,65.78204987200012],[-167.65953528599988,65.77301666900009],[-167.6399633449999,65.7734235700001],[-167.6954239569999,65.7409121770001],[-167.7169897129999,65.73822663000006],[-167.73053951699995,65.74567291900003],[-167.7237442699999,65.75812409100014],[-167.71943111899992,65.76894765800013],[-167.7186173169999,65.777818101],[-167.70323645699986,65.78538646000014],[-167.6709692049999,65.7936872420001],[-167.67092851499993,65.7937279320001],[-167.5664770169999,65.81663646000003],[-167.55646725199992,65.81736888200014],[-167.57270260299984,65.80923086100002],[-167.6472875639999,65.79132721600014],[-167.6628311839999,65.78204987200012]]],[[[-167.21113033799995,65.91274648600016],[-167.2260229159999,65.909125067],[-167.2394913399999,65.90924713700015],[-167.2320450509999,65.91791413000006],[-166.8698624339999,66.0360781920001],[-166.85948645699992,66.03974030200008],[-166.8397924469999,66.04360586100007],[-166.8358048169999,66.04181549700009],[-166.86314856699985,66.0279808610001],[-166.9871720039999,65.98354726800007],[-167.02704830599993,65.97467682500003],[-167.10883541599992,65.94855377800017],[-167.1258438789999,65.93988678600009],[-167.1236059239999,65.93903229400009],[-167.13023841099988,65.93659088700002],[-167.16490637899994,65.93170807500016],[-167.21113033799995,65.91274648600016]]],[[[-166.73314368399983,66.06781647300006],[-166.80052649599986,66.05149974200005],[-166.79539954299995,66.05829498900009],[-166.7627660799999,66.0711937520001],[-166.32221432199995,66.19285716400005],[-166.28351803299992,66.20062897300012],[-166.28347734299993,66.20062897300012],[-166.18708248599992,66.2102725280001],[-166.22541256399995,66.20184967700006],[-166.2498673169999,66.19293854400003],[-166.27318274599992,66.18683502800003],[-166.31354732999986,66.18260325700011],[-166.3865453769999,66.16071198100018],[-166.46886145699992,66.14590078300002],[-166.48652096299992,66.14028554900001],[-166.50470943899992,66.132513739],[-166.54670162699992,66.12274811400006],[-166.59703528599985,66.10480377800012],[-166.68663489499994,66.08478424700014],[-166.73314368399983,66.06781647300006]]],[[[-166.12787838399993,66.2258161480001],[-166.14740963399993,66.22036367400007],[-166.1561173169999,66.226263739],[-166.14740963399993,66.2354190120001],[-166.12751217399992,66.24380117400014],[-166.08853105399984,66.25617096600008],[-166.05394446499992,66.26203034100003],[-166.04181881399995,66.259995835],[-166.0471085279999,66.254828192],[-166.10309811099984,66.23883698100008],[-166.12787838399993,66.2258161480001]]],[[[-165.96446692599994,66.26447174700014],[-166.01036536399994,66.25771719000012],[-166.00621497299989,66.26691315300009],[-165.9829809239999,66.28107330900004],[-165.97004146999996,66.28668854400003],[-165.86432857999992,66.31688060100012],[-165.8642878899999,66.31688060100012],[-165.81464596299992,66.32636139500015],[-165.81403561099987,66.32245514500015],[-165.8731583319999,66.30011627800012],[-165.8972061839999,66.294134833],[-165.94367428299986,66.27118561400003],[-165.96446692599994,66.26447174700014]]],[[[-165.53376217399992,66.39862702000012],[-165.6013891269999,66.37665436399999],[-165.62633216099988,66.37763092700008],[-165.63548743399988,66.3744977890001],[-165.64765377499987,66.36871979400006],[-165.68053137899986,66.35932038000011],[-165.6977432929999,66.3568382830001],[-165.7045792309999,66.36172109600007],[-165.69086666599986,66.37075429900007],[-165.48871822799995,66.40900299700003],[-165.48969479099992,66.408677476],[-165.49518795499995,66.40639883000001],[-165.53376217399992,66.39862702000012]]],[[[-165.42393957499993,66.42133209900005],[-165.4886930159999,66.40900962200014],[-165.48477128799988,66.41030508000001],[-165.4483129549999,66.41876862200014],[-165.42393957499993,66.42133209900005]]],[[[-165.3816625639999,66.42568594000006],[-165.4230394829999,66.42144899300014],[-165.34264075399986,66.436712958],[-165.3783666659999,66.42890045800011],[-165.3816625639999,66.42568594000006]]],[[[-165.32270260299987,66.44041575700005],[-165.34262798899988,66.4367151090001],[-165.3264054029999,66.44025299700009],[-165.32270260299987,66.44041575700005]]],[[[-165.26207434799989,66.44428131700006],[-165.32084965699985,66.44058193700012],[-165.04209269899988,66.49351805300002],[-164.76333574099993,66.54645416900011],[-164.75202389199995,66.54547760600003],[-164.74596106699994,66.5409203150001],[-164.7582494779999,66.53803131700006],[-164.7712296209999,66.53660716399999],[-164.77741451699995,66.53449127800017],[-164.78315182199992,66.53192780200008],[-164.7953588529999,66.5291201840001],[-164.83161373599992,66.52855052300005],[-164.84434973899988,66.52472565300002],[-164.85045325399986,66.51764557500017],[-164.85785885299995,66.51141998900012],[-164.86213131399995,66.50901927300008],[-164.86656653599994,66.50702545800011],[-164.88292395699995,66.50482819200015],[-164.9293106759999,66.50482819200015],[-165.06261145699986,66.47968170800006],[-165.12372799399992,66.47793203300007],[-165.1409805979999,66.47382233300011],[-165.18146725199995,66.45856354400014],[-165.26207434799989,66.44428131700006]]],[[[-163.1740616529999,69.56329987200003],[-163.17625891799992,69.48224518400008],[-163.1846410799999,69.51105377800003],[-163.18907630099994,69.53994375200011],[-163.19115149599986,69.54653554900001],[-163.1853735019999,69.61025625200007],[-163.1853328119999,69.61025625200007],[-163.1716202459999,69.65778229400017],[-163.1529027989999,69.67829010600003],[-163.13621985599988,69.68252187700013],[-163.12909908799992,69.68154531500006],[-163.15253658799992,69.66811758000007],[-163.16791744699992,69.63849518400004],[-163.17418372299989,69.60447825700011],[-163.17003333199995,69.57786692900008],[-163.1740616529999,69.56329987200003]]],[[[-141.39663652299993,69.70587799700006],[-141.38512122299989,69.69452545800006],[-141.41291256399987,69.70506419500013],[-141.47256425699993,69.72077057500009],[-141.5842179029999,69.76642487200003],[-141.64541581899994,69.77456289300014],[-141.71344967399992,69.79328034100003],[-141.76573645699992,69.7997500670001],[-141.8002823559999,69.80914948100003],[-141.8579809239999,69.81509023600007],[-141.8984268869999,69.824896552],[-141.80923417899993,69.8219261740001],[-141.5286352199999,69.76032135600003],[-141.42308508999992,69.72186920800014],[-141.40880286399994,69.71499258000013],[-141.39663652299993,69.70587799700006]]],[[[-163.09544837099992,69.7313906920001],[-163.12909908799992,69.70197174700014],[-163.05577551999988,69.8045108090001],[-163.03014075399992,69.83291250200013],[-162.99994869699992,69.85578034100014],[-162.84113521999996,69.93475983300009],[-162.87791907499985,69.90167877800003],[-163.01178951699987,69.83234284100017],[-163.0421850249999,69.80158112200009],[-163.09544837099992,69.7313906920001]]],[[[-162.73717200399994,69.97809479400013],[-162.80634518099993,69.94839101800004],[-162.72813880099991,69.99860260600009],[-162.70205644399988,70.02204010600016],[-162.7017716139999,70.02232493700002],[-162.6773575509999,70.04413483300006],[-162.64179439999987,70.065578518],[-162.60081946499986,70.08283112200012],[-162.55992591099994,70.09243398600007],[-162.55646725199995,70.09027741100007],[-162.60606848899988,70.06924062700016],[-162.67536373599992,70.02948639500013],[-162.6993302069999,69.99974192900014],[-162.73717200399994,69.97809479400013]]],[[[-162.53913326699995,70.11371491100006],[-162.55992591099994,70.10602448100003],[-162.50328528599988,70.16128164300015],[-162.4845271479999,70.17316315300008],[-162.30854244699992,70.24127838700004],[-162.16270911399988,70.26992422100001],[-162.34373938699989,70.2202009140001],[-162.4910375639999,70.15387604400014],[-162.50987708199995,70.14081452000009],[-162.53913326699995,70.11371491100006]]],[[[-161.88813229099992,70.35394928600006],[-161.55113684799989,70.32599518400004],[-161.83783932199995,70.34341054900001],[-161.91209876199986,70.33991120000012],[-161.97712154899992,70.31216054900013],[-161.9699600899999,70.3212344420001],[-161.9430639309999,70.33958567899998],[-161.88813229099992,70.35394928600006]]],[[[-149.23627682199995,70.55329010600003],[-148.9945776029999,70.4929059920001],[-148.9716690749999,70.493841864],[-148.94334876199994,70.50018952000012],[-148.9229223299999,70.50145091400013],[-148.8943578769999,70.49640534100008],[-148.81969153599988,70.46979401200015],[-148.8220922519999,70.46869538000001],[-148.91222083199995,70.48859284100011],[-148.95038814999992,70.48627350500014],[-148.97911536399988,70.48090241100009],[-149.0156957669999,70.48493073100015],[-149.19404049399992,70.53693268400012],[-149.25438391799986,70.54559967700011],[-149.31318111899995,70.54486725500009],[-149.30382239499994,70.547837632],[-149.27741451699993,70.55267975500009],[-149.23627682199995,70.55329010600003]]],[[[-156.43480383999994,71.40648021],[-156.3982641269999,71.39350006700009],[-156.37165279899986,71.38031647300012],[-156.40013587099986,71.37742747600011],[-156.45848548099985,71.3951683610001],[-156.48835201699995,71.39398834800006],[-156.55211341099988,71.364976304],[-156.5888158839999,71.35834381700012],[-156.60444088399987,71.353664455],[-156.57221432199992,71.33637116099999],[-156.5564672519999,71.32469310100011],[-156.5497940749999,71.30898672100011],[-156.5342504549999,71.30011627800009],[-156.4337052069999,71.29218170800011],[-156.44733639199995,71.276800848],[-156.44330807199987,71.26837799700004],[-156.4284154939999,71.26496002800003],[-156.23700924399992,71.26919179900015],[-156.14106197799993,71.2564964860001],[-156.09736080599993,71.24380117400013],[-156.10785885299993,71.22724030200004],[-156.1109513009999,71.22333405200006],[-156.05919348899985,71.220648505],[-156.04271399599986,71.2158877620001],[-156.05793209499996,71.20449453300004],[-156.1109513009999,71.18231842700006],[-156.1109513009999,71.17487213700018],[-156.07233639199993,71.17670319200006],[-156.03412838399984,71.18284739800012],[-155.9993383449999,71.19452545800011],[-155.9710180329999,71.212795315],[-155.95990963399993,71.21824778900005],[-155.94489498599992,71.22036367400015],[-155.93171139199987,71.21702708500011],[-155.9260147779999,71.20624420800011],[-155.9160050119999,71.19647858300009],[-155.89313717399986,71.19855377800009],[-155.85151119699992,71.20966217700011],[-155.80089270699995,71.20880768400004],[-155.62474524599992,71.18353913000007],[-155.59679114499988,71.16998932500012],[-155.57343502499987,71.15037669500005],[-155.55610104099986,71.12710195500013],[-155.55150305899986,71.10089752800009],[-155.56663977799985,71.08152903899999],[-155.59373938699989,71.06972890800002],[-155.64000403599988,71.06313711100013],[-155.65392005099983,71.05683014499999],[-155.67992102799994,71.04144928600006],[-155.6892797519999,71.03904857000009],[-155.7090958319999,71.03831614799999],[-155.71715247299994,71.03461334800012],[-155.72065182199992,71.02928294499999],[-155.72801673099988,71.01105377800008],[-155.74469967399995,71.00446198100012],[-155.76537024599986,70.99998607000003],[-155.80650794199994,70.996771552],[-155.81293697799995,70.994614976],[-155.82335364499994,70.98525625200007],[-155.83075924399992,70.98309967700006],[-156.0720922519999,70.97394440300017],[-156.09736080599993,70.96881745000015],[-156.10472571499992,70.96881745000015],[-156.07921301999994,70.96238841400005],[-156.05317135299993,70.96238841400005],[-156.02863521999996,70.95892975500006],[-156.00792395699992,70.94212474200005],[-156.04723059799994,70.92942942899998],[-156.14500891799992,70.93268463700002],[-156.18732662699992,70.92169830900015],[-156.15428626199983,70.91909414300007],[-156.0872289699999,70.92698802300005],[-156.05634518099993,70.92169830900015],[-156.06635494699992,70.91697825700005],[-156.09736080599993,70.90802643400004],[-156.06794186099995,70.90249258000001],[-156.0048315089999,70.90912506700009],[-155.9812719389999,70.89435455900009],[-155.99486243399986,70.8869082700001],[-155.9822485019999,70.87641022300015],[-155.9531957669999,70.865423895],[-155.9402970039999,70.8527692730001],[-155.95368404899986,70.84634023600002],[-155.96861731699994,70.84235260600003],[-155.9811905589999,70.83673737200003],[-155.98749752499995,70.82542552300005],[-155.98578854099995,70.81525299700012],[-155.9727677069999,70.80149974199999],[-155.96760006399987,70.79132721600014],[-155.9709366529999,70.77968984600012],[-155.97826087099992,70.767279364],[-155.97809811099995,70.75967031500006],[-155.9239395819999,70.7665062520001],[-155.90904700399992,70.771226304],[-155.89936275899993,70.78449127800002],[-155.91283118399994,70.79051341400013],[-155.92280025899993,70.79995351800015],[-155.9262182279999,70.81183502800009],[-155.9197891919999,70.82542552300005],[-155.8914281889999,70.83665599200003],[-155.8089086579999,70.83071523600005],[-155.77582760299993,70.83600495000009],[-155.75059973899985,70.84422435100002],[-155.72040768099987,70.84609609600007],[-155.69123287699992,70.84113190300012],[-155.65876217399995,70.82416413000014],[-155.65082760299987,70.82868073100009],[-155.64704342399995,70.83588288000011],[-155.64915930899986,70.83974844000012],[-155.6551407539999,70.842962958],[-155.6602270169999,70.85053131700015],[-155.66392981699994,70.85936107000002],[-155.66596432199987,70.86640045800006],[-155.6455785799999,70.86806875200007],[-155.60313880099991,70.84617747600005],[-155.5771378249999,70.84593333500003],[-155.54242916599986,70.86640045800006],[-155.53461666599986,70.87726471600014],[-155.53319251199989,70.88593170800006],[-155.53620357999986,70.90460846600003],[-155.53571529899992,70.92568594000015],[-155.5310766269999,70.94179922100004],[-155.51789303299995,70.95213450700011],[-155.46808834499993,70.96043528900009],[-155.4058731759999,70.996771552],[-155.39032955599995,71.00287506700009],[-155.34443111899986,71.01105377800008],[-155.33189856699985,71.01601797100012],[-155.30858313699989,71.028753973],[-155.29600989499988,71.03156159100014],[-155.27497311099995,71.02558014500012],[-155.2437231109999,70.99713776200012],[-155.21715247299994,70.99054596600006],[-155.19172115799992,70.995062567],[-155.18207760299995,71.00682200700008],[-155.1848852199999,71.023179429],[-155.19672604099986,71.04144928600006],[-155.21715247299994,71.05646393400018],[-155.26732337099992,71.07294342700008],[-155.2891739569999,71.08612702000012],[-155.26923580599987,71.0991071640001],[-155.20966549399986,71.122992255],[-155.1861466139999,71.12710195500013],[-155.16307532499985,71.11981842700011],[-155.1240128249999,71.09023672100005],[-155.09740149599992,71.08612702000012],[-155.1031388009999,71.10423411700012],[-155.10163326699987,71.1198591170001],[-155.10496985599988,71.13231028900013],[-155.1253149079999,71.14077383000007],[-155.1093236969999,71.15037669500005],[-155.08967037699995,71.1549339860001],[-155.06969153599988,71.15326569200008],[-155.0526830719999,71.14419179900007],[-155.04320227799988,71.13092682500015],[-155.04564368399988,71.12177155200008],[-155.05247962099995,71.11261627800009],[-155.05646725199992,71.09979889500006],[-155.0530492829999,71.08771393400015],[-155.03978430899986,71.06305573100015],[-155.0393774079999,71.05573151200015],[-155.0544327459999,71.04523346600008],[-155.0867406889999,71.03115469000012],[-155.09740149599992,71.01727936400005],[-155.06501217399995,71.01211172100015],[-155.03901119699995,71.01740143400002],[-155.02171790299982,71.03229401200018],[-155.01353919199988,71.06411367400001],[-155.00458736899992,71.08348216400013],[-155.00182044199988,71.09296295800014],[-155.00544186099992,71.10716380400005],[-155.01280676999994,71.11334870000003],[-155.0110977859999,71.11591217700011],[-154.98753821499986,71.11969635600013],[-154.9716690749999,71.12006256700006],[-154.91893469999982,71.11347077],[-154.90684973899994,71.10716380400005],[-154.89427649599995,71.0952009140001],[-154.87958736899995,71.08820221600006],[-154.86091061099987,71.09638092700006],[-154.83995520699995,71.10126373900012],[-154.8081762359999,71.09593333500005],[-154.77525794199988,71.0839704450001],[-154.72581946499994,71.055121161],[-154.63121497299994,71.03156159100014],[-154.60814368399988,71.02098216400002],[-154.60016842399992,71.01288483300006],[-154.59711666599992,71.00047435100005],[-154.6019994779999,70.99213288000009],[-154.61327063699989,70.981634833],[-154.6258438789999,70.97260163],[-154.64325924399995,70.96572500200007],[-154.6472061839999,70.95819733300011],[-154.64915930899988,70.94936758000007],[-154.65172278599988,70.94212474200005],[-154.66246497299989,70.925523179],[-154.66820227799985,70.92059967700011],[-154.6796768869999,70.91425202],[-154.71288001199989,70.90558502800009],[-154.78868567599986,70.89630768400006],[-154.81000729099995,70.88068268400013],[-154.69981848899988,70.88621653899999],[-154.67597408799986,70.87693919500013],[-154.6677139959999,70.87152741100009],[-154.63121497299994,70.8527692730001],[-154.6303197909999,70.84886302300013],[-154.6321508449999,70.83624909100014],[-154.63121497299994,70.83226146000008],[-154.59028072799993,70.82542552300005],[-154.53880774599992,70.82615794499999],[-154.4351700509999,70.83926015800013],[-154.3842260409999,70.83974844000012],[-154.3090714179999,70.8307966170001],[-154.27082271999996,70.81903717700011],[-154.24767005099986,70.79877350500011],[-154.2567032539999,70.78912995000015],[-154.24787350199995,70.782416083],[-154.2303360669999,70.77838776200002],[-154.2135717439999,70.77704498900015],[-154.17174231699988,70.7816429710001],[-154.1309708319999,70.79132721600014],[-154.04210364499986,70.83364492400015],[-153.9853409499999,70.84690989799999],[-153.94013424399986,70.88190338700018],[-153.9186905589999,70.89435455900009],[-153.8935459343337,70.89838258214542],[-153.89354407499985,70.89838288000006],[-153.51402747299989,70.8869082700001],[-153.44896399599992,70.89948151200012],[-153.37983150899993,70.90009186400006],[-153.35680091099988,70.90277741100006],[-153.30243893099993,70.92865631700006],[-153.2556860019999,70.932766018],[-153.1648656889999,70.92788320500013],[-153.14879309799989,70.92475006700006],[-153.1311742829999,70.91111888200011],[-153.11705481699994,70.90802643400004],[-153.10688229099992,70.90692780199998],[-153.08674068899995,70.90228913000006],[-153.0757950509999,70.90119049700003],[-153.06952877499992,70.903021552],[-153.05268307199992,70.91152578300004],[-153.0416967439999,70.91425202],[-152.95567786399988,70.90802643400004],[-152.9426977199999,70.9033877620001],[-152.93525143099993,70.8925641950001],[-152.92853756399987,70.87995026200004],[-152.9175512359999,70.86981842700008],[-152.90314693899995,70.86395905200014],[-152.88459225199995,70.85907623900006],[-152.86558997299994,70.85700104400014],[-152.8498429029999,70.85960521000014],[-152.8406469389999,70.86806875200007],[-152.8382055329999,70.87742747600011],[-152.83307857999986,70.88471100500011],[-152.8157445949999,70.8869082700001],[-152.80781002499992,70.88385651200004],[-152.79902096299995,70.87718333500008],[-152.78441321499992,70.86298248900005],[-152.77379309799989,70.85565827000006],[-152.74701900899987,70.84345123900009],[-152.7149145169999,70.82103099200008],[-152.6968888009999,70.82119375200013],[-152.65746008999992,70.84593333500003],[-152.67308508999992,70.866644598],[-152.6940811839999,70.87693919500013],[-152.71910559799994,70.88035716400005],[-152.7468155589999,70.88068268400013],[-152.7125138009999,70.89036692900011],[-152.54584713399993,70.88751862200009],[-152.32750403599985,70.85687897300005],[-152.21922766799992,70.81801992400005],[-152.21922766799992,70.81244538000006],[-152.2741593089999,70.79999420800014],[-152.37547766799983,70.74925364799999],[-152.43089758999994,70.7435570330001],[-152.43089758999994,70.73602936400015],[-152.41523189999987,70.73114655200008],[-152.4134008449999,70.72211334800006],[-152.42133541599995,70.713324286],[-152.4346410799999,70.709377346],[-152.47777258999992,70.705511786],[-152.50084387899994,70.69920482000006],[-152.51410885299987,70.68891022300014],[-152.50914466099994,70.66388580900004],[-152.48216712099986,70.64179108300006],[-152.4479467439999,70.6260440120001],[-152.2534073559999,70.59951406500012],[-152.15522213399993,70.60321686400009],[-152.10383053299995,70.598781643],[-152.07526607999992,70.57904694200006],[-152.1075333319999,70.5749372420001],[-152.16673743399988,70.58258698100015],[-152.41734778599988,70.58673737200009],[-152.45673580599995,70.58173248900015],[-152.5172013009999,70.592718817],[-152.54499264199995,70.59015534100008],[-152.58055579299992,70.58295319200006],[-152.61274166599995,70.57221100500006],[-152.63011633999992,70.55853913000011],[-152.61803137899994,70.55581289300015],[-152.5857641269999,70.55853913000011],[-152.57262122299994,70.55670807500003],[-152.5473119779999,70.547796942],[-152.53453528599985,70.54486725500009],[-152.50755774599992,70.54531484600007],[-152.45616614499988,70.55585358300013],[-151.9691055979999,70.57160065300009],[-151.8487035799999,70.55853913000011],[-151.76036536399994,70.56671784100001],[-151.7332657539999,70.55853913000011],[-151.7487686839999,70.55499909100003],[-151.76146399599986,70.54816315300012],[-151.7841690749999,70.52753327],[-151.80321204299992,70.51874420800011],[-151.84764563699989,70.52301666900003],[-151.8698217439999,70.51764557500017],[-151.84784908799986,70.5097516950001],[-151.79039466099985,70.50238678600003],[-151.8863012359999,70.49286530200011],[-151.94330807199984,70.48045482],[-151.97968502499995,70.44871653900013],[-151.73643958199995,70.43561432500015],[-151.4541723299999,70.43895091399999],[-151.4078263009999,70.42690664300007],[-151.3524877589999,70.4264183610001],[-151.33165442599994,70.41795482000005],[-151.3158666659999,70.409125067],[-151.27875729099986,70.39972565300013],[-151.2436010409999,70.37929922100001],[-151.22227942599994,70.37571849200013],[-151.17711341099988,70.37978750200007],[-151.17711341099988,70.38719310100008],[-151.19904537699992,70.40180084800008],[-151.20881100199986,70.42243073100012],[-151.20295162699992,70.44074127800016],[-151.17772376199986,70.44871653900013],[-150.97911536399994,70.45612213700011],[-150.97288977799985,70.4584007830001],[-150.95909583199995,70.46718984600015],[-150.95116126199986,70.46979401200015],[-150.86241614499994,70.46979401200015],[-150.85492916599995,70.47247955900004],[-150.8408910799999,70.48069896000011],[-150.83507239499986,70.48285553600012],[-150.81248938699989,70.48114655200011],[-150.7656957669999,70.47223541900009],[-150.74510657499988,70.47662995000017],[-150.77379309799994,70.48493073100015],[-150.78612219999988,70.49225495000015],[-150.7935277989999,70.5033226580001],[-150.61908932199992,70.510728257],[-150.6089981759999,70.50967031500012],[-150.59007727799985,70.50458405199998],[-150.5812475249999,70.5033226580001],[-150.5673721999999,70.505031643],[-150.5402318999999,70.5114606790001],[-150.52660071499994,70.510728257],[-150.51313229099995,70.50389232000008],[-150.50702877499984,70.49437083500005],[-150.5022680329999,70.4845645200001],[-150.49250240799995,70.47662995000017],[-150.46410071499992,70.479925848],[-150.4199926419999,70.49192942900012],[-150.37938391799992,70.49701569200006],[-150.36152096299995,70.47972239800004],[-150.3690893219999,70.46735260600012],[-150.41673743399986,70.42137278900007],[-150.41673743399986,70.41453685100005],[-150.3837784499999,70.41608307500009],[-150.25304114499994,70.44208405200006],[-150.11913001199994,70.44285716399999],[-149.88971920499995,70.5127627620001],[-149.8686417309999,70.51203034100007],[-149.81163489499988,70.49616120000015],[-149.78461666599995,70.49799225500011],[-149.72472083199992,70.510728257],[-149.5670873689999,70.510728257],[-149.51435299399992,70.52277252800009],[-149.48851477799988,70.52301666900003],[-149.46397864499988,70.510728257],[-149.46959387899983,70.50405508000004],[-149.47581946499992,70.4999046900001],[-149.48298092399986,70.49778880400008],[-149.49132239499994,70.49705638200005],[-149.3837784499999,70.48818594],[-149.35411536399988,70.49705638200005],[-149.36839758999986,70.5033226580001],[-149.3444718089999,70.51007721600003],[-149.04450436099995,70.46857330900004],[-149.01585852799985,70.459662177],[-148.99229895699992,70.44871653900013],[-148.9794408839999,70.43952057500015],[-148.97215735599988,70.43305084800006],[-148.96454830599993,70.42926666900003],[-148.95067298099994,70.428208726],[-148.9174698559999,70.440619208],[-148.9029027989999,70.44183991100012],[-148.82551021999987,70.41828034100017],[-148.79584713399987,70.41453685100005],[-148.7210180329999,70.42202383000001],[-148.68244381399992,70.42011139500015],[-148.6527807279999,70.40436432500009],[-148.64106197799987,70.39972565300013],[-148.58698482999992,70.39411041900017],[-148.55138098899988,70.38410065300009],[-148.5181778639999,70.36920807500003],[-148.5041397779999,70.356390692],[-148.5009659499999,70.33991120000012],[-148.5118302069999,70.3183454450001],[-148.3814184239999,70.31248607000005],[-148.34056555899994,70.3183454450001],[-148.2573949859999,70.35447825700014],[-148.22325598899985,70.35932038000011],[-148.15074622299989,70.356431382],[-148.11896725199992,70.34833405200006],[-148.06480872299989,70.318833726],[-148.05308997299989,70.31468333500005],[-148.03892981699994,70.31216054900013],[-148.0231827459999,70.313177802],[-148.00853430899986,70.31683991100006],[-147.9937231109999,70.31810130400005],[-147.97744706899988,70.31216054900013],[-147.9842830069999,70.30467357000008],[-147.9622289699999,70.30141836100002],[-147.88805091099985,70.31216054900013],[-147.8658748039999,70.31122467700006],[-147.84276282499994,70.30752187700001],[-147.81993567599991,70.3006859400001],[-147.79869544199994,70.29043203300016],[-147.80679277299987,70.2863630230001],[-147.81187903599985,70.28188711100013],[-147.81981360599983,70.26992422100001],[-147.8104141919999,70.26805247600005],[-147.8016251289999,70.26528554900007],[-147.79336503799988,70.26146067900008],[-147.78571529899995,70.25690338700012],[-147.79401607999992,70.24603913000014],[-147.7988988919999,70.24091217700011],[-147.8061417309999,70.23647695500013],[-147.78278561099992,70.22793203300004],[-147.6795955069999,70.21222565300013],[-147.41649329299992,70.20229726800007],[-147.23696855399993,70.18121979400003],[-147.2314346999999,70.181789455],[-147.22150631399992,70.1877302100001],[-147.21711178299995,70.18866608300011],[-147.21153723899994,70.18585846600014],[-147.2009171209999,70.17739492400004],[-147.1960343089999,70.1749535180001],[-147.12368730399996,70.16754791900009],[-146.8806860019999,70.1749535180001],[-146.87682044199988,70.19017161700008],[-146.84878495999988,70.19342682500012],[-146.74111894399988,70.19232819200006],[-146.43325761599993,70.18244049700014],[-146.23058020699995,70.18602122600011],[-146.08263098899988,70.15566640800013],[-145.9831436839999,70.15387604400014],[-145.96776282499985,70.15692780200006],[-145.9400121739999,70.16616445500001],[-145.92857825399994,70.16754791900009],[-145.88914954299986,70.15241120000009],[-145.8726700509999,70.15281810100011],[-145.8801977199999,70.1749535180001],[-145.84044348899994,70.16742584800012],[-145.77122962099995,70.13410065300002],[-145.71328691299988,70.12319570500007],[-145.6548559239999,70.09857819200006],[-145.61318925699993,70.08881256700012],[-145.59968014199995,70.080755927],[-145.61388098899988,70.07135651200015],[-145.59780839799984,70.07135651200015],[-145.58771725199992,70.07526276200015],[-145.5723363919999,70.08559804900007],[-145.55825761599993,70.09048086100012],[-145.54747473899994,70.09235260600009],[-145.52049719999988,70.09243398600007],[-145.5009659499999,70.08600495000017],[-145.4711807929999,70.057806708],[-145.4556371739999,70.05145905200006],[-145.4269099599999,70.04816315300003],[-145.36851966099994,70.033636786],[-145.33922278599994,70.03034088700015],[-145.2154027989999,70.0440127620001],[-145.2154027989999,70.03717682500017],[-145.2361547519999,70.03070709800006],[-145.30138098899988,69.99966054900015],[-145.2748917309999,69.99306875200007],[-145.15392005099991,70.00307851800005],[-144.94155839799993,69.97797272300006],[-144.8864639959999,69.99526601800007],[-144.87157141799995,69.99799225500014],[-144.8251033189999,69.98647695500001],[-144.70645097599996,69.97601959800012],[-144.5901586579999,69.98281484600015],[-144.56493079299992,69.98940664300012],[-144.5092667309999,70.01996491100006],[-144.3861384759999,70.0440127620001],[-144.18691972599987,70.04360586100007],[-144.15453040299988,70.04840729400017],[-144.14037024599986,70.06134674700017],[-144.12954667899987,70.06769440300012],[-144.10513261599993,70.06439850500009],[-144.07925370999993,70.05536530200004],[-144.06403561099995,70.0440127620001],[-144.0693253249999,70.03628164300007],[-144.0711156889999,70.03046295800011],[-144.0693253249999,70.02460358300009],[-144.06403561099995,70.016750393],[-144.0689184239999,70.00991445500007],[-144.07042395699995,70.00405508000013],[-144.07144120999993,69.98940664300012],[-144.05711829299992,69.99848053600012],[-144.04328365799995,70.01512278899999],[-144.02306067599991,70.05145905200006],[-144.04735266799992,70.06476471600008],[-144.05719967399992,70.07343170800009],[-144.06403561099995,70.08559804900007],[-144.0174454419999,70.09259674700014],[-144.00255286399988,70.08901601800005],[-143.98273678299984,70.07880280200014],[-143.97545325399994,70.07786692900005],[-143.96263587099992,70.07908763200008],[-143.95474199099993,70.07880280200014],[-143.93101966099994,70.07103099200005],[-143.9189346999999,70.07135651200015],[-143.91380774599992,70.08218008000016],[-143.9055883449999,70.08860911700008],[-143.8865453769999,70.08917877800003],[-143.85171464799987,70.08559804900007],[-143.82485917899987,70.089300848],[-143.7705785799998,70.104437567],[-143.74250240799984,70.10602448100003],[-143.69408118399994,70.09243398600007],[-143.6743871739999,70.09039948100015],[-143.5765274729999,70.09393952000012],[-143.56436113199996,70.09857819200006],[-143.56045488199987,70.10687897300012],[-143.56395423099985,70.11595286700005],[-143.56419837099992,70.12335846600003],[-143.55068925699993,70.12661367400007],[-143.54552161399994,70.1230329450001],[-143.5261938139999,70.10236237200009],[-143.51056881399992,70.09666575700003],[-143.3581436839999,70.10614655200011],[-143.35411536399994,70.10561758000011],[-143.3525284499999,70.10187409100008],[-143.31676184799997,70.055650132],[-143.29751542899993,70.04340241100012],[-143.2763565749999,70.05145905200006],[-143.28990637899997,70.06313711100016],[-143.30247962099986,70.07941315300008],[-143.3079727859999,70.0980492210001],[-143.30028235599988,70.1166445980001],[-143.27708899599992,70.12099844000006],[-143.2356664699998,70.11823151200012],[-143.16649329299995,70.10602448100003],[-143.1546117829999,70.1000837260001],[-143.1446833979999,70.09369538],[-143.1337784499999,70.08836497600011],[-143.1187231109999,70.08559804900007],[-143.03648841099994,70.09243398600007],[-143.02306067599994,70.08982982],[-143.01353919199994,70.08348216400003],[-142.99889075399994,70.06826406500006],[-142.98412024599995,70.06293366100003],[-142.9636124339999,70.06264883000007],[-142.94273841099994,70.0659854190001],[-142.92690995999988,70.07135651200015],[-142.93374589799993,70.07880280200014],[-142.87954667899993,70.07404205900004],[-142.65074622299989,70.01902903899997],[-142.60081946499986,70.01312897300012],[-142.59609941299993,70.00389231999998],[-142.61164303299986,69.97573476800008],[-142.5976456369999,69.97150299700017],[-142.58177649599983,69.96991608300014],[-142.56631425699993,69.97223541900009],[-142.55386308499993,69.9794375670001],[-142.53848222599987,69.98501211100013],[-142.51817786399985,69.98187897300006],[-142.48127193899992,69.96954987200003],[-142.49160722599993,69.97256094000011],[-142.50206458199992,69.97353750200001],[-142.51256262899997,69.97256094000011],[-142.52281653599988,69.96954987200003],[-142.4968969389999,69.95384349200005],[-142.4378149079999,69.948960679],[-142.41295325399994,69.93475983300009],[-142.41856848899994,69.93146393400004],[-142.42105058499996,69.92820872599998],[-142.42275956899996,69.924750067],[-142.4260147779999,69.92047760600018],[-142.3974503249999,69.92096588700015],[-142.3841039699999,69.91933828300013],[-142.37140865799984,69.91425202000012],[-142.37743079299995,69.90493398600007],[-142.37612870999993,69.8991559920001],[-142.36949622299989,69.89545319200006],[-142.34386145699992,69.88849518400018],[-142.33336341099994,69.88776276200007],[-142.32428951699984,69.88523997600014],[-142.2936905589999,69.86310455900013],[-142.27090410099993,69.85602448100009],[-142.10732988199996,69.84894440300003],[-142.04946855399993,69.8348656270001],[-142.0423884759999,69.80438873900015],[-142.0151261059999,69.79629140800002],[-141.9881892569999,69.79266998900006],[-141.96369381399987,69.79572174700014],[-141.9434301419999,69.80780670800006],[-141.92056230399987,69.815375067],[-141.89118404899986,69.80882396000011],[-141.8370255199999,69.790757554],[-141.6533096999999,69.76215241100012],[-141.57380123599984,69.7301699890001],[-141.5247289699999,69.7180850280001],[-141.50121008999992,69.70880768400013],[-141.48412024599986,69.69757721600014],[-141.44033769399994,69.661078192],[-141.41291256399987,69.65037669499999],[-141.29108639199984,69.63401927300008],[-141.26724199099985,69.64451732000005],[-141.24624589799993,69.66095612200003],[-141.22061113199996,69.67405833500003],[-141.24803626199989,69.6808942730001],[-141.2679337229999,69.68211497600005],[-141.29149329299986,69.68585846600017],[-141.31623287699983,69.68773021000014],[-141.31623287699983,69.69452545800006],[-141.0152074859999,69.654201565],[-141.00645911399994,69.65127187700007],[-141.00556393099993,69.65094635600015],[-141.0055486371089,69.65094121827265],[-141.005471151,69.50516428600018],[-141.00539363699997,69.35938507100015],[-141.00531612199995,69.21360585600014],[-141.00529028399984,69.06782664000015],[-141.0052386069999,68.92204742500006],[-141.0051610929999,68.77626820900004],[-141.00508357799998,68.63048899400002],[-141.00500606299997,68.48470977900001],[-141.00492854899994,68.33898223900003],[-141.00485103399993,68.1932030230001],[-141.0047735189999,68.04742380800009],[-141.0047476819999,67.90164459300007],[-141.00469600499997,67.75581370100015],[-141.00461848999996,67.61008616200016],[-141.00454097599993,67.46428110800015],[-141.00446346099992,67.31847605400004],[-141.0043859459999,67.17272267700004],[-141.0043084319998,67.02691762400003],[-141.00423091699986,66.8811384080001],[-141.00420507799993,66.7354108680001],[-141.00415340199993,66.589579976],[-141.0040758879998,66.44377492299999],[-141.0039983729999,66.29802154600016],[-141.00392085799987,66.15226816900015],[-141.00384334399985,66.00651479100016],[-141.00376582899992,65.86073557600015],[-141.00368831399982,65.71495636100015],[-141.0036366389999,65.56917714500004],[-141.0036108,65.42337209100013],[-141.00353328499975,65.27756703700011],[-141.00345576999985,65.131787821],[-141.0033782559999,64.986008606],[-141.0033007409998,64.840229391],[-141.00322322599988,64.69450185199999],[-141.00314571199996,64.54867096000007],[-141.00309403499995,64.40289174400004],[-141.00306819799994,64.25711252900005],[-141.0029906819999,64.1112816370001],[-141.00291316799988,63.96550242200012],[-141.00283565399997,63.8197748830001],[-141.00275813799993,63.67409902000004],[-141.00268062399994,63.528268128000114],[-141.0026031099999,63.38248891200003],[-141.0025514329999,63.23665802000009],[-141.0025255939999,63.09087880500008],[-141.00244807999997,62.945099590000055],[-141.00237056599983,62.799320374000054],[-141.00229304999993,62.653592835000055],[-141.00221553599997,62.50776194300012],[-141.00213802199988,62.361982728000115],[-141.00206050599996,62.21622935000011],[-141.00200883099996,62.0703726200001],[-141.00198299199994,61.924619243000095],[-141.0019054779999,61.7788658650001],[-141.0018279629998,61.633086650000095],[-141.00175044799988,61.48733327200007],[-141.0016729339999,61.341579896000084],[-141.00159541899984,61.19582651800009],[-141.0015179039999,61.049969788000126],[-141.00144038999977,60.90421641100015],[-141.00136287499987,60.75841135700013],[-141.0012853599999,60.61268381800012],[-141.00120784599994,60.46687876500011],[-141.00115616899993,60.3210737100001],[-140.9949291599999,60.30438222300016],[-140.97955542099993,60.29580393500014],[-140.9091462809999,60.28365997300013],[-140.768457195,60.25926869700011],[-140.66050512799995,60.240510153000024],[-140.53374283899993,60.218547669000046],[-140.51870499699993,60.22387034100008],[-140.50666438899987,60.236324361000165],[-140.47532263199994,60.276476950000166],[-140.46279109799994,60.28913767500002],[-140.44780493299987,60.29446034800015],[-140.42411128799984,60.29316843700012],[-140.3249700529999,60.267536927000044],[-140.16924312399985,60.22722931],[-140.0157899579998,60.18738678000007],[-139.96775671399993,60.18836863200015],[-139.9169329439999,60.20785064700014],[-139.826318319,60.256478170000044],[-139.7284173179999,60.30903310200013],[-139.6798156329998,60.326809795000074],[-139.62834590799991,60.33409617100013],[-139.51796504799992,60.33673167000013],[-139.41399206599988,60.33921213800012],[-139.26219254599994,60.342777812000115],[-139.101608033,60.34660186800012],[-139.07946468099988,60.341020813000014],[-139.06869014599994,60.32205556300007],[-139.0731859949998,60.299834697000115],[-139.11346777399993,60.22681589799999],[-139.14961543899994,60.161186829000066],[-139.18323095699998,60.100156963000174],[-139.182145753,60.07338857000009],[-139.1123050549998,60.031375631000074],[-139.06020662199995,60.000058906],[-139.05161108499982,59.99489207000006],[-139.0037587079999,59.97721873000007],[-138.84242488699988,59.93768625900013],[-138.74258601899993,59.913191631000174],[-138.70488806199987,59.89846384700017],[-138.69718827399993,59.89370961600019],[-138.69209814499993,59.88688832600003],[-138.65434851099997,59.805497945000106],[-138.63745031799988,59.78405222600018],[-138.5992097579998,59.75382151300006],[-138.4888805749998,59.69635732100006],[-138.36361690299995,59.63114166300012],[-138.21954300999994,59.55600413000003],[-138.06761429899996,59.47699086500016],[-137.9105696219998,59.39518707300011],[-137.75830501399992,59.3159154260001],[-137.6113630779999,59.239330954000174],[-137.59418066499993,59.225274964000064],[-137.58208837899994,59.206568096000076],[-137.54929968399983,59.134531149],[-137.52100683699982,59.07236440100011],[-137.4843940849999,58.991904196000135],[-137.5077518319999,58.93996938100003],[-137.50875952199982,58.91490631200004],[-137.48687455299978,58.900075175000026],[-137.4534657389998,58.89914499900006],[-137.42310583599993,58.907723287000074],[-137.33809810499994,58.95547231100015],[-137.28189998399978,58.98714996400015],[-137.17234594799982,59.027147523000124],[-137.06236731699985,59.06757233299999],[-137.04710852799988,59.07330963800017],[-136.942282471,59.11107004800011],[-136.84081579699983,59.14817372700009],[-136.7854961759999,59.15721710200008],[-136.67191137799983,59.15080922500011],[-136.61349117099996,59.15421987000015],[-136.5694886889999,59.172151591000116],[-136.4847910159998,59.25380035500002],[-136.48355078199995,59.257469381000114],[-136.46654923599993,59.28780344700005],[-136.467091838,59.38449005200011],[-136.4675569259998,59.46164296500008],[-136.4159580079999,59.45223785400013],[-136.36683955999985,59.44955068000009],[-136.31999487299993,59.45905914300009],[-136.2750363779998,59.48644765300013],[-136.24472814999996,59.52820221000017],[-136.2584740819999,59.55610748300014],[-136.2993501389999,59.57574452800018],[-136.3503289399999,59.5923843390001],[-136.25849991899992,59.62158152300004],[-136.14540604699988,59.63682607],[-136.02686031099978,59.65284576500012],[-135.92381750599998,59.66674672500001],[-135.8309549559999,59.693256734000116],[-135.6412507739999,59.747361960000106],[-135.48275915599993,59.79247548400018],[-135.4651374929999,59.78968495700012],[-135.40439184599984,59.75330474900013],[-135.34579077199993,59.73103220700007],[-135.25987870299997,59.69821767200007],[-135.22189652499992,59.67527333600013],[-135.19202754799994,59.647109680000156],[-135.15779191099995,59.623286845],[-135.10668391999985,59.613158265000045],[-135.08787369899994,59.60654368100017],[-135.03294165099982,59.57310902900014],[-135.018523926,59.559363099000116],[-135.01619848699997,59.543446757000105],[-135.0194799399999,59.49316558900015],[-135.02325231999998,59.47714589500002],[-135.03748917699994,59.46159128900017],[-135.07859777899992,59.438336894000045],[-135.0957543539999,59.41885487900005],[-134.99325415099992,59.38190623000012],[-135.00482967199997,59.36712677000009],[-135.01444148899998,59.35152048800016],[-135.01619848699997,59.33617258700009],[-134.97997330799993,59.29741526300016],[-134.9578299559999,59.2809821580001],[-134.93243099,59.270646872],[-134.83946508799994,59.258141174000095],[-134.74345027799995,59.24511871400015],[-134.70551977599996,59.2401061],[-134.6920839029999,59.23524851500015],[-134.6828596609999,59.22300120100014],[-134.671439169,59.19375234000011],[-134.66038041299998,59.18129832000001],[-134.61077103799997,59.14455637600005],[-134.58278824899992,59.128846741000146],[-134.55671748999993,59.123058980000096],[-134.50907181899987,59.12280059900004],[-134.47757503299982,59.11494578100008],[-134.4510133469999,59.09789255800013],[-134.39801916599978,59.05195221000015],[-134.38716711499995,59.03686269200008],[-134.3855909839999,59.01882761600016],[-134.39938859199998,58.97495432600014],[-134.34342301499987,58.96885650600008],[-134.32965124499992,58.963017070000106],[-134.3200394289999,58.95268178400001],[-134.32314001499992,58.94916778600004],[-134.3303230389999,58.94534373],[-134.33303605199995,58.934129945000144],[-134.32740332099988,58.916456604000146],[-134.31693884399996,58.90379587800011],[-134.22219010499992,58.84271433500011],[-134.10883785099992,58.808246155000134],[-133.98310909099996,58.76990224200012],[-133.87122961499978,58.73589915000009],[-133.83112870399998,58.718019104000135],[-133.79640214099993,58.69342112300013],[-133.70007727099994,58.599370016000094],[-133.6262833259999,58.546401673],[-133.5470633549999,58.505577291000016],[-133.46308915199978,58.46222076400012],[-133.39224076399992,58.4038780720001],[-133.4301195889999,58.37209706700004],[-133.41503006999991,58.33054921500015],[-133.3745674239999,58.290965068],[-133.25726192299993,58.210298157000075],[-133.16558793199994,58.147304586000175],[-133.14212683199997,58.12058787000002],[-133.09484289599993,58.03309967000015],[-133.07515417499997,58.00788157199998],[-132.99335038299995,57.941916606000156],[-132.91715348399993,57.88049916600009],[-132.83211991399992,57.791564026000025],[-132.7094400639998,57.66330312200016],[-132.62905737299997,57.57927724200012],[-132.5524470629999,57.499075420000125],[-132.45573461999987,57.42099233000011],[-132.36230362999999,57.345699768000074],[-132.30468440799993,57.28035491900012],[-132.2309938159999,57.19681996700002],[-132.2763657229999,57.14889007599999],[-132.34121964599996,57.08039296500009],[-132.16228999899994,57.050317281000034],[-132.0318586839999,57.028406474000164],[-132.10738378999991,56.858752747000054],[-131.87155839099995,56.793459575000114],[-131.8658739839999,56.7857081100001],[-131.87241105199988,56.772969869000136],[-131.88261714799992,56.759146424],[-131.8879656579999,56.747958476000164],[-131.88602779199996,56.73705474899999],[-131.8807051189999,56.728838196000154],[-131.8647887779999,56.71349029600002],[-131.8389764009998,56.68227773100001],[-131.83042395099994,56.66475942000015],[-131.8265740559999,56.64460561099999],[-131.8321034349999,56.60336781800008],[-131.82559220399995,56.59334259100014],[-131.79910803299995,56.5876581830001],[-131.6922928469999,56.58507436100011],[-131.5858910729999,56.5950479130001],[-131.56036291499996,56.59406606100005],[-131.5364367279999,56.58522939100014],[-131.49165909899992,56.56016632100012],[-131.34569901599997,56.50327056900006],[-131.21560359799992,56.452550151000096],[-131.10054602099996,56.4076691690001],[-131.01693355399993,56.3870502730001],[-130.83908911199987,56.37245168100013],[-130.7603342299999,56.34519236300012],[-130.645767579,56.26194163100011],[-130.60225602299997,56.247058818000156],[-130.49551835199986,56.2324343880001],[-130.47228979599996,56.224889628000035],[-130.45805293899986,56.21065277100016],[-130.4279255779999,56.14396433500015],[-130.41815873299993,56.12970164000007],[-130.4039735519998,56.121898499000146],[-130.2903112399999,56.100969544000165],[-130.243156495,56.09239125600014],[-130.21124629799993,56.08996246400007],[-130.11675594199994,56.10564626100013],[-130.09432836999986,56.10148630800002],[-130.07153906299996,56.08412302699999],[-130.03931880799988,56.045520732],[-130.02663224299997,56.024100851000085],[-130.0190099699999,56.002215882000044],[-130.01469498799992,55.963251852000056],[-130.0167878829999,55.9189134730001],[-130.01961170499993,55.90797794900008],[-130.0196184444494,55.90795184963342],[-130.0228165359999,55.90135325700014],[-130.04938717399995,55.87140534100017],[-130.10472571499994,55.825262762000065],[-130.13662675699996,55.806463934000085],[-130.14883378799993,55.79535553600006],[-130.16348222599993,55.77114492400007],[-130.16730709499987,55.766262111000096],[-130.17080644399994,55.75983307500009],[-130.17365475199986,55.74949778899999],[-130.17080644399994,55.740952867000075],[-130.16380774599986,55.73456452000012],[-130.16006425699993,55.72711823100015],[-130.16738847599993,55.715399481000176],[-130.1559138659999,55.700140692],[-130.14289303299992,55.689520575000145],[-130.13182532499988,55.676581122000144],[-130.1264542309999,55.65399811400009],[-130.12857011599993,55.636419989000146],[-130.1351212229999,55.61912669500005],[-130.15314693899984,55.58510976800012],[-130.14867102799988,55.57819245000003],[-130.14688066299988,55.56932200700008],[-130.14696204299986,55.547186591000106],[-130.11217200399994,55.50934479400014],[-130.10167395699995,55.481146552],[-130.09508216099988,55.472113348000065],[-130.06541907499994,55.44611237200009],[-130.05752519399996,55.43488190300009],[-130.05256100199992,55.41400788000011],[-130.05431067599991,55.366644598000086],[-130.05011959499987,55.345445054],[-130.0392960279999,55.330755927],[-129.98924719999988,55.284002997000115],[-130.03123938699986,55.26434967700005],[-130.05003821499992,55.252875067000026],[-130.06749426999994,55.238999742000125],[-130.07823645699997,55.23379140800013],[-130.10049394399994,55.230292059000035],[-130.10472571499994,55.22565338700012],[-130.1057022779999,55.21112702000006],[-130.10912024599992,55.20075104400017],[-130.11579342399997,55.19159577],[-130.1264542309999,55.18097565300014],[-130.15196692599991,55.16327545800014],[-130.15998287699986,55.15371328300016],[-130.1675919259999,55.12958405200013],[-130.17369544199988,55.117743231000176],[-130.20026607999984,55.10415273600013],[-130.21178137899997,55.08413320500016],[-130.2288712229999,55.0438500020001],[-130.23867753799993,55.03440989800008],[-130.2613419259999,55.02289459800012],[-130.26984615799984,55.016546942],[-130.2757055329999,55.00698476800004],[-130.28636633999992,54.983221747000115],[-130.29434160099996,54.97186920800014],[-130.3265681629999,54.95209381700011],[-130.33556067599994,54.938706773000106],[-130.36538652299993,54.90729401200017],[-130.38524329299992,54.896551825000174],[-130.43081620999988,54.88125234600001],[-130.48875891799986,54.844183661],[-130.5803116529999,54.80638255400013],[-130.60460364499994,54.802150783000016],[-130.6025284499999,54.814520575000145],[-130.56843014199984,54.84149811400012],[-130.56094316299996,54.851385809000035],[-130.56720943899992,54.85439687700013],[-130.57827714799996,54.85358307500012],[-130.58511308499988,54.85199616100009],[-130.60651607999992,54.83860911699998],[-130.6714574859999,54.77204010600009],[-130.68077551999994,54.765448309000114],[-130.6912735669999,54.76264069200006],[-130.70372473899994,54.765448309000114],[-130.71841386599993,54.77301666900014],[-130.7288712229999,54.784125067],[-130.72850501199989,54.79743073100012],[-130.71328691299993,54.80377838700004],[-130.69078528599994,54.80678945500013],[-130.67784583199992,54.814520575000145],[-130.6912735669999,54.83494700700014],[-130.7051488919999,54.85049062700012],[-130.7158096999999,54.86823151200004],[-130.72354081899994,54.88739655199999],[-130.72850501199989,54.90729401200017],[-130.7288305329999,54.917181708],[-130.7268774079999,54.93878815300009],[-130.72850501199989,54.94818756700011],[-130.7341202459999,54.956732489000146],[-130.74356035099993,54.96629466400013],[-130.75251217399995,54.96938711100002],[-130.75645911399994,54.95783112200009],[-130.75438391799992,54.89276764500015],[-130.75023352799985,54.872503973000114],[-130.73875891799992,54.853949286000116],[-130.7340388659999,54.84308502800014],[-130.73595130099994,54.83152903900013],[-130.74518795499984,54.82172272300009],[-130.7560929029999,54.819525458],[-130.76720130099994,54.823391018],[-130.7769262359999,54.83152903900013],[-130.78888912699992,54.803941148000106],[-130.8066300119999,54.778753973000114],[-130.83189856699994,54.76536692900014],[-130.86632239499988,54.77317942900011],[-130.91832434799994,54.80292389500015],[-130.93423417899987,54.824448960000055],[-130.92780514199987,54.85199616100009],[-130.93199622299989,54.85342031500015],[-130.94200598899988,54.85887278900002],[-130.9334203769999,54.88019440300015],[-130.94176184799994,54.895331122000144],[-130.95518958199992,54.90936920800003],[-130.96190344999988,54.92772044500007],[-130.94123287699986,54.925360419000114],[-130.93268795499984,54.94017161699999],[-130.9396866529999,54.95892975500014],[-130.9653214179999,54.96808502800012],[-130.97402910099987,54.98175690300015],[-130.9822485019999,54.9911156270001],[-130.9929093089999,54.99542877800009],[-131.0093888009999,54.99827708500014],[-131.00967363199993,55.00535716400002],[-130.99665279899995,55.02338288000011],[-130.98696855399987,55.04352448100015],[-130.97101803299986,55.061224677000055],[-130.94969641799992,55.07379791900014],[-130.90123450399992,55.08344147300012],[-130.85415605399993,55.103094794000164],[-130.8321427069999,55.10529205900014],[-130.82115637899994,55.10024648600013],[-130.8173721999999,55.09235260600015],[-130.81566321499992,55.08421458500014],[-130.81110592399997,55.07859935100005],[-130.79954993399994,55.076849677000055],[-130.76333574099993,55.07868073100003],[-130.75332597599993,55.08197663000006],[-130.74421139199987,55.083156643000095],[-130.7315160799999,55.07982005400005],[-130.72032630099994,55.08100006700009],[-130.7124731109999,55.10663483300006],[-130.7050675119999,55.11884186400012],[-130.68757076699987,55.140082098000036],[-130.64883378799993,55.17251211100002],[-130.5660294259999,55.223334052000055],[-130.4734594389999,55.310126044000135],[-130.46157792899996,55.33185455900003],[-130.48013261599996,55.330755927],[-130.4925024079999,55.32347239800008],[-130.50230872299994,55.31525299700017],[-130.52354895699992,55.307359117000104],[-130.5525610019999,55.28774648600013],[-130.5612686839999,55.28025950700008],[-130.59414628799988,55.22565338700012],[-130.61546790299985,55.19953034100014],[-130.6684464179999,55.18040599199999],[-130.69420325399994,55.16120026200003],[-130.75991777299993,55.09699127800009],[-130.7742813789999,55.09251536700013],[-130.7911677729999,55.099066473],[-130.79751542899993,55.10846588700004],[-130.8054093089999,55.136297919000086],[-130.81110592399997,55.146877346000124],[-130.84276282499985,55.13727448100015],[-130.85204016799992,55.13320547100001],[-130.88316809799989,55.10895416900002],[-130.8902074859999,55.10529205900014],[-130.97081458199992,55.085435289000074],[-130.99665279899995,55.085394598000065],[-131.0157364569999,55.09357330900018],[-131.03823808499993,55.108384507000046],[-131.05703691299996,55.12628815300012],[-131.06493079299992,55.14345937700013],[-131.06529700399992,55.18622467700014],[-131.05760657499988,55.19867584800015],[-131.00194251199989,55.240139065000065],[-130.97980709499993,55.25136953300016],[-130.95848548099985,55.25608958500008],[-130.95677649599986,55.26048411700005],[-130.93830318899984,55.28709544499999],[-130.92471269399988,55.29401276200009],[-130.91022701699984,55.29498932500014],[-130.87999426999994,55.29026927300004],[-130.63215084499987,55.29100169499999],[-130.62218176999988,55.2931175800001],[-130.61245683499993,55.297064520000085],[-130.65680904899997,55.31574127800015],[-130.66942298099983,55.32851797100001],[-130.64659583199992,55.338609117000075],[-130.65640214799987,55.3522809920001],[-130.6703995429999,55.34992096600014],[-130.7123917309999,55.32086823100017],[-130.72630774599992,55.31464264500012],[-130.8338516919999,55.304388739],[-130.86188717399992,55.3121605490001],[-130.87315833199992,55.34202708500008],[-130.88678951699987,55.451605536000116],[-130.87352454299992,55.53412506700011],[-130.86632239499988,55.55027903899999],[-130.87315833199992,55.622951565000065],[-130.87852942599997,55.636379299000154],[-130.9021703769999,55.66571686400006],[-130.90729732999992,55.68187083500014],[-130.90404212099986,55.69025299700009],[-130.8902074859999,55.700384833000136],[-130.88678951699987,55.708563544000135],[-130.88988196499994,55.715277411],[-130.90404212099986,55.72748444200009],[-130.9146622389999,55.74689362200009],[-130.94994055899994,55.77114492400007],[-130.96190344999988,55.783026434000114],[-130.92813066299988,55.800238348000114],[-130.9203995429999,55.810451565000065],[-130.9345596999999,55.81842682500003],[-130.94066321499992,55.81679922100001],[-130.9687393869999,55.80475495000009],[-130.9834692049999,55.80565013199999],[-130.99640865799986,55.81053294500004],[-131.00670325399992,55.81586334800012],[-131.01341712099995,55.81842682500003],[-131.02236894399988,55.82672760600012],[-131.0615128249999,55.876776434000035],[-131.0776261059999,55.88849518400012],[-131.1338598299999,55.92084381700012],[-131.13141842399995,55.924546617000075],[-131.12637285099993,55.93451569200006],[-131.1463110019999,55.93480052300002],[-131.16519120999993,55.940578518000066],[-131.17682857999984,55.95197174700002],[-131.1747940749999,55.96930573100012],[-131.1964005199999,55.97142161700013],[-131.18492591099997,55.986721096000096],[-131.14004472599993,56.017035223000065],[-131.04442298099985,56.058050848000065],[-131.05284583199995,56.05731842700013],[-131.07860266799986,56.058050848000065],[-131.06802324099993,56.07192617400007],[-131.00967363199993,56.11261627800014],[-131.0633031889999,56.09593333500011],[-131.08568274599992,56.08616771000008],[-131.10651607999986,56.071682033000016],[-131.1249893869999,56.050441799000126],[-131.13609778599997,56.041327216000134],[-131.16551673099983,56.03327057500011],[-131.19225012899994,56.01455312700012],[-131.2902725899999,55.98834870000012],[-131.30333411399994,55.98167552300005],[-131.31476803299992,55.97264232000005],[-131.34186764199984,55.96092357000004],[-131.37120520699995,55.96857330900018],[-131.39728756399992,55.987616278000175],[-131.41437740799986,56.010199286000145],[-131.4330948559999,55.99754466399999],[-131.45897376199994,55.98468659100014],[-131.48302161399997,55.97943756700006],[-131.4963272779999,55.98973216399999],[-131.56411699099988,55.94700755400008],[-131.58942623599984,55.941351630000085],[-131.6187231109999,55.942694403000175],[-131.62730872299989,55.941351630000085],[-131.63149980399993,55.93829987200009],[-131.6345922519999,55.933986721000096],[-131.63817298099988,55.92999909100011],[-131.6553442049999,55.92499420800006],[-131.6804093089999,55.91046784100003],[-131.7033585279999,55.90436432500005],[-131.7254125639999,55.89109935100011],[-131.73591061099987,55.88670482000013],[-131.75373287699983,55.885077216000106],[-131.78612219999994,55.887396552000084],[-131.80479895699992,55.88670482000013],[-131.8173721999999,55.883002020000085],[-131.84146074099993,55.870306708000115],[-131.8531794909999,55.86627838700015],[-131.86937415299985,55.86538320500016],[-131.88536536399997,55.86627838700015],[-131.90062415299994,55.86546458500014],[-131.91466223899988,55.859442450000024],[-131.8932999339999,55.85537344000009],[-131.82530676999994,55.831488348],[-131.77794348899994,55.825384833000115],[-131.7658585279999,55.81688060099999],[-131.7638240229999,55.79734935100011],[-131.7742406889999,55.77049388200011],[-131.7827856109999,55.75389232000008],[-131.7905167309999,55.74274323100006],[-131.8084203769999,55.72947825700011],[-131.82526607999986,55.72549062700013],[-131.86685136599993,55.72907135600012],[-131.8321020169999,55.696966864000146],[-131.8277074859999,55.66787344000006],[-131.84797115799992,55.641913153000175],[-131.8873184889999,55.61920807500003],[-131.88463294199994,55.61367422100001],[-131.88243567599994,55.60419342700011],[-131.88052324099988,55.59870026200018],[-132.0040177069999,55.667629299000126],[-131.99474036399994,55.65704987200017],[-131.96849524599992,55.63349030200011],[-131.9630427729999,55.622951565000065],[-131.95348059799989,55.611517645000035],[-131.93626868399988,55.598089911000116],[-131.92894446499986,55.58930084800014],[-131.9488012359999,55.59194570500012],[-131.9488012359999,55.58510976800012],[-131.93464107999986,55.576971747000115],[-131.92601477799985,55.563625393],[-131.92369544199988,55.547267971000096],[-131.92833411399994,55.530462958000086],[-131.93407141799992,55.52659739800008],[-131.94326738199996,55.52338288000011],[-131.95189368399986,55.51756419500005],[-131.9556371739999,55.50625234600007],[-131.96141516799986,55.50104401200018],[-131.97443600199986,55.504828192],[-131.99657141799992,55.51679108300014],[-132.13463294199997,55.56517161700005],[-132.17162024599992,55.58852773600013],[-132.18529212099995,55.61562734600007],[-132.21190344999988,55.69806549700009],[-132.2265518869999,55.715399481000176],[-132.24445553299986,55.72296784100003],[-132.2615453769999,55.73965078300016],[-132.26618404899995,55.756293036000024],[-132.24673417899993,55.76386139500006],[-132.22736568899992,55.757757880000085],[-132.18871008999986,55.730292059000035],[-132.16787675699987,55.72284577000015],[-132.1773575509999,55.75177643400015],[-132.18219967399995,55.776841539000046],[-132.1768692699999,55.794867255000085],[-132.16885331899994,55.802313544000135],[-132.1406143869999,55.80475495000009],[-132.0735977859999,55.802801825000145],[-132.05866451699987,55.80475495000009],[-132.04621334499984,55.8172875020001],[-132.05394446499994,55.82831452000015],[-132.08600826699993,55.84577057500009],[-132.07017981699988,55.86286041900014],[-132.04963131399984,55.878363348000065],[-132.03604081899988,55.89378489799999],[-132.0413305329999,55.910956122000115],[-132.0563044909999,55.93036530200011],[-132.05687415299988,55.94452545800014],[-132.04360917899993,55.954657294000114],[-132.01707923099988,55.96185944200011],[-131.96837317599994,55.95868561400006],[-131.9556371739999,55.96185944200011],[-131.9498184889999,55.972113348000065],[-131.95372473899994,55.992824611000074],[-131.94505774599995,55.9965681010001],[-131.94351152299993,56.00690338700012],[-131.9630427729999,56.071682033000016],[-131.9630427729999,56.157375393000095],[-131.95030676999994,56.16669342700014],[-131.8887426419999,56.18382396000008],[-131.81379146999993,56.19599030200005],[-131.6983943349999,56.196234442],[-131.59902910099993,56.17865631700006],[-131.57949785099993,56.17910390800016],[-131.55842037699983,56.18838125200001],[-131.52928626199986,56.214016018000095],[-131.51341712099995,56.222072658000016],[-131.4894913399999,56.22247955900012],[-131.51333574099996,56.22931549700006],[-131.5378311839999,56.225409247000144],[-131.58633378799996,56.208889065000065],[-131.6138402989999,56.20514557500003],[-131.63792883999992,56.20636627800015],[-131.6887100899999,56.216294664000046],[-131.87682044199994,56.22308991100009],[-131.90782630099994,56.23273346600014],[-131.95933997299994,56.294501044000135],[-131.96524003799988,56.31077708499999],[-131.97130286399997,56.35643138200011],[-131.98013261599993,56.36591217700011],[-132.0060929029999,56.36725495000012],[-132.0606583319999,56.38100820500013],[-132.0770157539999,56.38190338700004],[-132.08901933499993,56.37677643400012],[-132.10509192599991,56.37372467700011],[-132.14378821499986,56.388739325000145],[-132.15489661399988,56.38019440300003],[-132.16104081899996,56.38019440300003],[-132.18529212099995,56.428697007],[-132.1883845689999,56.45184967700014],[-132.2032771479999,56.47125885600015],[-132.2361547519999,56.483099677000105],[-132.2840063139999,56.49347565300012],[-132.28941809799994,56.498480536000145],[-132.33714758999992,56.52374909100011],[-132.34487870999993,56.52899811400009],[-132.3497208319999,56.53693268400015],[-132.35289466099997,56.55206940300015],[-132.35020911399988,56.57941315300012],[-132.33779863199996,56.60179271000014],[-132.30504309799994,56.64020416900014],[-132.32982337099992,56.63914622599999],[-132.37169348899994,56.62421295800006],[-132.4474177729999,56.607163804],[-132.4768774079999,56.60447825700011],[-132.52000891799992,56.62767161700005],[-132.54019120999993,56.63149648600016],[-132.55003821499994,56.63898346600002],[-132.53844153599994,56.66132233300006],[-132.52196204299995,56.674953518],[-132.50332597599996,56.67837148600002],[-132.45653235599985,56.674994208],[-132.46873938699983,56.69188060099999],[-132.48729407499985,56.698675848000114],[-132.50902258999992,56.70209381700012],[-132.53099524599995,56.70856354400002],[-132.47948157499985,56.7428246110001],[-132.46271725199986,56.75690338700003],[-132.46263587099983,56.76483795800002],[-132.41490637899992,56.78485748900009],[-132.41222083199995,56.79230377800015],[-132.41380774599986,56.80125560099999],[-132.41246497299989,56.808905341000106],[-132.40094967399992,56.812201239000146],[-132.37930253799993,56.81232330900012],[-132.36949622299994,56.81411367400001],[-132.3596899079999,56.81842682500012],[-132.37840735599985,56.82648346600014],[-132.39867102799988,56.824896552000105],[-132.41820227799985,56.81683991100008],[-132.43480383999992,56.80536530200011],[-132.43272864499988,56.79352448100014],[-132.45295162699992,56.78803131700015],[-132.47785396999984,56.78510163000011],[-132.49006100199983,56.78115469000012],[-132.49718176999997,56.76129791900003],[-132.5148005849999,56.75543854400008],[-132.53709876199994,56.75812409100014],[-132.67320716099994,56.80280182500003],[-132.76138261599993,56.84577057500017],[-132.77464758999986,56.856512762000094],[-132.77822831899994,56.8620466170001],[-132.7826228509999,56.875230210000055],[-132.7848201159999,56.879828192],[-132.7909236319999,56.885443427],[-132.84471594999985,56.91315338700017],[-132.8565567699999,56.91453685100008],[-132.86042232999992,56.91885000200007],[-132.85952714799993,56.937648830000015],[-132.86367753799996,56.941880601000136],[-132.87791907499985,56.946722723000036],[-132.89655514199984,56.95807526200018],[-132.91319739499986,56.97162506700015],[-132.92202714799996,56.98285553600006],[-132.8954971999999,56.98924388200008],[-132.8815811839999,56.99111562700013],[-132.8674210279999,56.98969147300006],[-132.85212154899995,56.9740257830001],[-132.8410538399999,56.96771881700006],[-132.82957923099985,56.972967841000134],[-132.8117569649999,56.974188544000135],[-132.7862035799999,56.96759674700009],[-132.76768958199997,56.969671942],[-132.77122962099986,56.997137762000065],[-132.80980383999992,57.05565013200011],[-132.80874589799987,57.06537506700006],[-132.7995499339999,57.06972890800013],[-132.79283606699994,57.079046942],[-132.79084225199992,57.08844635600012],[-132.79539954299983,57.09271881700012],[-132.80553137899992,57.090480861000124],[-132.83116614499988,57.07843659100003],[-132.83946692599994,57.072821356000034],[-132.86107337099986,57.03636302300008],[-132.8776749339999,57.02130768400014],[-132.89781653599994,57.027533270000035],[-132.92162024599995,57.04279205900018],[-132.94570878799988,57.04682038000006],[-132.98350989499994,57.04490794499999],[-132.99380449099993,57.04775625200013],[-133.0423884759999,57.069240627000156],[-133.0664770169999,57.076727606000034],[-133.07970130099994,57.082749742000125],[-133.0930069649999,57.08649323100015],[-133.11261959499984,57.088324286000145],[-133.1319067049999,57.087388414000074],[-133.14419511599993,57.082749742000125],[-133.14976966099994,57.08148834800012],[-133.15786699099985,57.08295319200009],[-133.16519120999985,57.086004950000174],[-133.16844641799992,57.08958567900005],[-133.16633053299992,57.096828518000066],[-133.1616918609999,57.10187409100011],[-133.15477454299992,57.10639069200006],[-133.15050208199997,57.11611562700001],[-133.14460201699984,57.122503973000114],[-133.1419978509999,57.129584052],[-133.14793860599988,57.14109935100013],[-133.1210831369999,57.144273179],[-133.1363012359999,57.161078192],[-133.16755123599984,57.16962311400012],[-133.1888728509999,57.14793528900004],[-133.17528235599985,57.14793528900004],[-133.17528235599985,57.14109935100013],[-133.21149654899995,57.141994533000044],[-133.22036699099993,57.14765045800011],[-133.20938066299993,57.16103750200001],[-133.2166235019999,57.17096588700012],[-133.22594153599994,57.174994208],[-133.23570716099997,57.17381419500008],[-133.2441300119999,57.1684431010001],[-133.25035559799994,57.13369375200013],[-133.26646887899994,57.11318594000009],[-133.2901098299999,57.10199616100009],[-133.31700598899994,57.10248444200006],[-133.3635961579999,57.128363348000086],[-133.4235733709999,57.145331122000144],[-133.44591223899994,57.14793528900004],[-133.45303300699987,57.151109117000104],[-133.47614498599992,57.16522858300014],[-133.48688717399995,57.1684431010001],[-133.52057857999984,57.17230866100003],[-133.5381567049999,57.176459052000055],[-133.55199133999986,57.18146393400009],[-133.55199133999986,57.188299872000115],[-133.53001868399986,57.19135163],[-133.5047501289999,57.20343659100011],[-133.48863684799994,57.22089264500006],[-133.49400794199985,57.239813544000086],[-133.50511633999992,57.25120677300005],[-133.50267493399988,57.25372955900015],[-133.49502519399994,57.25617096600011],[-133.49058997299997,57.26776764500012],[-133.48509680899983,57.27700429900007],[-133.47191321499992,57.28188711100013],[-133.4422094389999,57.28449127800014],[-133.25479081899994,57.281073309000035],[-133.18211829299986,57.305609442000055],[-133.17609615799986,57.30878327000012],[-133.16954505099997,57.31590403899998],[-133.16222083199992,57.31928131700001],[-133.10728919199988,57.31928131700001],[-133.08629309799994,57.322495835000055],[-133.0584203769999,57.33185455900018],[-133.03766842399986,57.346828518000116],[-133.0380753249999,57.36709219000012],[-133.0510961579999,57.366278387000115],[-133.09927324099993,57.339300848000065],[-133.1206762359999,57.33234284100016],[-133.17870032499985,57.33234284100016],[-133.19033769399996,57.330471096],[-133.21157792899993,57.3219261740001],[-133.22370357999984,57.31928131700001],[-133.2411189439999,57.32037995000006],[-133.27196204299986,57.33002350500011],[-133.2882380849999,57.33234284100016],[-133.39146887899992,57.335150458000115],[-133.41950436099984,57.34393952000009],[-133.4421280589999,57.358954169000114],[-133.45645097599987,57.380764065000065],[-133.42080644399994,57.394842841000106],[-133.40290279899995,57.39940013200005],[-133.35667883999986,57.40228913],[-133.3447973299999,57.405422268000066],[-133.33975175699987,57.41176992400009],[-133.33551998599987,57.42877838700015],[-133.33592688699986,57.438177802000084],[-133.3431697259999,57.442206122000144],[-133.35179602799988,57.44000885600014],[-133.36851966099994,57.43065013200011],[-133.3782445949999,57.428534247000115],[-133.40392005099994,57.43317291900005],[-133.4144587879999,57.432806708000115],[-133.42540442599994,57.42511627800009],[-133.43740800699985,57.42352936400005],[-133.45421301999988,57.43178945500016],[-133.4702856109999,57.44358958500012],[-133.5003962879999,57.47601959800013],[-133.50454667899993,57.486802476000136],[-133.50487219999988,57.50360748900014],[-133.49742591099988,57.53156159100017],[-133.4925430979999,57.53864166900002],[-133.47691809799994,57.55206940300004],[-133.4390356109999,57.569484768000095],[-133.3488663399999,57.5759138040001],[-133.31309973899994,57.59296295800005],[-133.33385169199994,57.59601471600014],[-133.41612708199992,57.59528229400003],[-133.4390763009999,57.58954498900014],[-133.46084550699996,57.57990143400018],[-133.53294837099986,57.572455145],[-133.59142005099994,57.57461172100001],[-133.60509192599997,57.57929108300011],[-133.64854895699992,57.61713288000005],[-133.65880286399994,57.62091705900009],[-133.65807044199994,57.63275788000006],[-133.64663652299987,57.687201239000146],[-133.6482641269999,57.70282623900011],[-133.6357315749999,57.708156643],[-133.62214107999984,57.71002838700015],[-133.5930069649999,57.709662177000055],[-133.5855199859999,57.71092357000008],[-133.57286536399994,57.716050523000085],[-133.56631425699993,57.71649811400007],[-133.56041419199994,57.71385325699999],[-133.5483292309999,57.70477936400008],[-133.5327042309999,57.70001862200008],[-133.5228165359999,57.69318268400015],[-133.50796464799996,57.67894114800007],[-133.49498450399992,57.67206452000015],[-133.4422094389999,57.66811758000007],[-133.2104386059999,57.588934637000094],[-133.16844641799992,57.57929108300011],[-133.1585994129999,57.57314687700012],[-133.13792883999992,57.555609442],[-133.1309301419999,57.55206940300004],[-133.11139889199984,57.544989325000145],[-133.06948808499993,57.51268138200014],[-133.04552161399988,57.50360748900014],[-133.03429114499997,57.50413646000011],[-133.0203344389999,57.507066148000135],[-133.00853430899994,57.51186758000012],[-133.0039770169999,57.51788971600003],[-133.0121150379999,57.521226304000045],[-133.0818578769999,57.53733958500014],[-133.09959876199986,57.550970770000085],[-133.1275121739999,57.57929108300011],[-133.15542558499993,57.59975820500009],[-133.16478430899988,57.612534898000135],[-133.16222083199992,57.627142645000156],[-133.18272864499994,57.623765367000125],[-133.21226966099988,57.627142645000156],[-133.23888098899994,57.63662344000016],[-133.25035559799994,57.65167877800017],[-133.36025956899994,57.682359117000075],[-133.3976944649999,57.70941803600004],[-133.41759192599997,57.7193871110001],[-133.46898352799988,57.72744375200012],[-133.4999893869999,57.73761627800017],[-133.5289200509999,57.750921942],[-133.5458064439999,57.764308986000025],[-133.5523168609999,57.79230377800003],[-133.5581762359998,57.889634507000025],[-133.55199133999986,57.915106512000094],[-133.53929602799988,57.917425848000065],[-133.49058997299997,57.90827057500009],[-133.42910722599993,57.90827057500009],[-133.39854895699997,57.9039574240001],[-133.3431290359999,57.88475169500013],[-133.31309973899994,57.88031647300006],[-133.30451412699983,57.88178131700011],[-133.28844153599994,57.887396552000105],[-133.2783096999999,57.88784414300004],[-133.2675675119999,57.88507721600014],[-133.24429277299987,57.876125393000116],[-133.14248613199993,57.85472239799999],[-133.1240942049999,57.85712311400011],[-133.1322322259999,57.86522044500005],[-133.18569902299993,57.88955312700004],[-133.20628821499986,57.89468008000013],[-133.55431067599994,57.929429429],[-133.57286536399994,57.92405833500014],[-133.5845841139999,57.91083405199999],[-133.5930069649999,57.88784414300004],[-133.59129798099988,57.88153717700008],[-133.5898331369999,57.86758047100001],[-133.59264075399994,57.85789622600005],[-133.6038712229999,57.86420319200009],[-133.61074785099987,57.87010325700012],[-133.62608801999994,57.879868882000046],[-133.63459225199986,57.88784414300004],[-133.64012610599988,57.86790599200013],[-133.62596594999985,57.82868073100011],[-133.63459225199986,57.805243231000034],[-133.66136633999986,57.786444403000175],[-133.6863500639999,57.790716864],[-133.70856686099984,57.80829498900012],[-133.74225826699984,57.84503815300003],[-133.80308997299994,57.898504950000145],[-133.80842037699983,57.904974677000055],[-133.81163489499988,57.91303131700009],[-133.81273352799988,57.9250348980001],[-133.81908118399983,57.93280670800011],[-133.86115475199992,57.95673248900009],[-133.80980383999992,57.98533763200006],[-133.79222571499986,57.990220445000126],[-133.7748917309999,57.98883698100006],[-133.76406816299985,57.980698960000105],[-133.7537328769999,57.968939520000156],[-133.7376195949999,57.95673248900009],[-133.71812903599994,57.94635651200017],[-133.7018123039999,57.94000885600006],[-133.6913956369999,57.942043361000074],[-133.6891983709999,57.95673248900009],[-133.6975805329999,57.989976304],[-133.69204667899996,58.0019391950001],[-133.66934160099993,58.011379299000126],[-133.66934160099993,58.01752350500003],[-133.73184160099993,58.01951732000005],[-133.75548255099997,58.03009674700009],[-133.7649633449999,58.06224192900005],[-133.74864661399994,58.078192450000145],[-133.71760006399984,58.09784577000011],[-133.6982315749999,58.11595286700013],[-133.71715247299994,58.12738678600009],[-133.71715247299994,58.134833075000145],[-133.69517981699994,58.13910553600006],[-133.68504798099988,58.142808335000105],[-133.67491614499994,58.14789459800012],[-133.6823624339999,58.155340887000115],[-133.70026607999986,58.14850495000009],[-133.7581274079999,58.134833075000145],[-133.7581274079999,58.12738678600009],[-133.74168860599988,58.11969635600015],[-133.74864661399994,58.106105861000025],[-133.81012936099984,58.044745184000085],[-133.8133438789999,58.028998114000146],[-133.7990616529999,58.011379299000126],[-133.86436926999997,57.986965236000074],[-133.88467363199987,57.984035549000154],[-133.90868079299992,57.98387278900002],[-133.91844641799986,57.98566315300017],[-133.92943274599992,57.990220445000126],[-133.93407141799995,57.99363841400013],[-133.9390763009999,58.00067780200003],[-133.94302324099988,58.00389232000007],[-133.94957434799994,58.006089585000055],[-133.9649552069999,58.00910065300015],[-133.97036699099993,58.011379299000126],[-133.97622636599988,58.02008698100012],[-133.97647050699993,58.028998114000146],[-133.97801673099988,58.03583405200008],[-133.9874161449999,58.03864166900003],[-134.0012914699999,58.039496161000116],[-134.01085364499997,58.04287344000012],[-134.01642818899987,58.04999420799999],[-134.01817786399988,58.06224192900005],[-134.02342688699986,58.07135651200006],[-134.03563391799995,58.072333075000024],[-134.0494685539999,58.07070547100001],[-134.05972245999996,58.072170315000065],[-134.06383216099994,58.07916901200004],[-134.07282467399995,58.11318594000007],[-134.0574438139999,58.11102936400006],[-134.04845130099997,58.11383698100012],[-134.04478919199994,58.119859117000125],[-134.04548092399995,58.12738678600009],[-134.0514216789999,58.13458893400012],[-134.07188880099994,58.14618561400011],[-134.08023027299993,58.155340887000115],[-134.08348548099988,58.16376373900006],[-134.0859268869999,58.174953518000066],[-134.08706620999993,58.186590887000186],[-134.08641516799992,58.19627513200014],[-134.0816137359999,58.20819733300008],[-134.07481848899997,58.214544989000025],[-134.06712805899983,58.22036367400007],[-134.05972245999996,58.23041413000014],[-134.05703691299988,58.23997630400011],[-134.05801347599996,58.24787018400009],[-134.0598852199999,58.25556061400012],[-134.05972245999996,58.26459381700012],[-134.0612686839999,58.268215236000096],[-134.06493079299986,58.27313873900014],[-134.06769771999993,58.27887604400003],[-134.06655839799987,58.28510163000009],[-134.05939693899984,58.28864166900014],[-134.03184973899994,58.28510163000009],[-134.01036536399988,58.29433828300014],[-133.9908341139999,58.30556875200013],[-133.98241126199983,58.31561920800011],[-133.98253333199992,58.32086823100009],[-133.98672441299996,58.32534414300006],[-133.9908341139999,58.33283112200003],[-134.00584876199994,58.37238190300018],[-134.00999915299988,58.3922386740001],[-134.00450598899994,58.408596096],[-133.9969376289999,58.41242096600002],[-133.97252356699994,58.418036200000124],[-133.96296139199987,58.42218659100015],[-133.95177161399994,58.432766018],[-133.94977779899992,58.43964264500011],[-133.95103919199994,58.44635651200015],[-133.9498591789999,58.45636627800014],[-133.92007402299987,58.497544664000095],[-133.8763728509999,58.51044342700013],[-133.7717992829999,58.51845937700006],[-133.7717992829999,58.52464427300005],[-133.88780676999994,58.52464427300005],[-133.9339086579999,58.51894765800016],[-133.95962480399993,58.51264069200012],[-133.9766332669999,58.50482819200012],[-133.98241126199983,58.487616278000125],[-133.97468014199984,58.44989655200013],[-133.9874161449999,58.44269440300011],[-134.01016191299993,58.43976471600008],[-134.05036373599984,58.42609284100014],[-134.07282467399995,58.42218659100015],[-134.07282467399995,58.41478099200007],[-134.0518285799999,58.40839264500015],[-134.0471085279999,58.389593817],[-134.05288652299993,58.367254950000174],[-134.06314042899987,58.35024648600002],[-134.08096269399994,58.33771393400009],[-134.12507076699984,58.318670966000106],[-134.1416723299999,58.30556875200013],[-134.14712480399993,58.28497955900012],[-134.13174394399988,58.27313873900014],[-134.1110733709999,58.263128973000065],[-134.10069739499988,58.24778880400011],[-134.10435950399994,58.23948802300013],[-134.1128637359999,58.232082424000154],[-134.1449275379999,58.20990631700008],[-134.15786699099993,58.204291083000086],[-134.17223059799994,58.202337958000136],[-134.1900935539999,58.20311107000004],[-134.24160722599987,58.21430084800006],[-134.44107011599993,58.32151927300005],[-134.46043860599994,58.32660553600008],[-134.47130286399994,58.33087799700008],[-134.48981686099984,58.34967682500003],[-134.49795488199993,58.353949286000145],[-134.55321204299986,58.353949286000145],[-134.5691625639999,58.35614655200013],[-134.59732011599993,58.36546458499999],[-134.61123613199993,58.36762116100009],[-134.6217341789999,58.36395905200013],[-134.62584387899994,58.356634833000115],[-134.6301977199998,58.35146719000012],[-134.64134680899986,58.353949286000145],[-134.64488684799994,58.36229075700011],[-134.64769446499992,58.376044012000044],[-134.6544490229999,58.38641998900011],[-134.66991126199986,58.384711005000106],[-134.68455969999988,58.37933991100008],[-134.71886145699995,58.37425364800004],[-134.73477128799993,58.373765367000075],[-134.7561742829999,58.381537177000055],[-134.7673233709999,58.400336005000106],[-134.77159583199995,58.42401764500011],[-134.77456620999993,58.47589752800004],[-134.78286699099993,58.49306875200015],[-134.79954993399986,58.50299713700014],[-134.8269750639999,58.510972398000106],[-134.8269750639999,58.51845937700006],[-134.82266191299988,58.519476630000135],[-134.81997636599993,58.520941473],[-134.8175349599999,58.522691148000014],[-134.81387285099993,58.52464427300005],[-134.84723873599992,58.53522370000009],[-134.8749893869999,58.553127346000146],[-134.89757239499997,58.575669664000046],[-134.93496660099993,58.623277085000105],[-134.9756567049999,58.658921617000075],[-134.99144446499994,58.68292877800011],[-134.96076412699986,58.667547919000164],[-134.9451391269999,58.66331614800005],[-134.93000240799986,58.66925690300017],[-134.9268285799999,58.66486237200008],[-134.9206436839999,58.66034577000014],[-134.91567949099988,58.65558502800006],[-134.9207657539999,58.6782901060001],[-134.93272864499994,58.69794342700013],[-134.94054114499994,58.71613190300003],[-134.92585201699993,58.754950262000065],[-134.93399003799993,58.777411200000145],[-134.94611568899984,58.79975006700008],[-134.95042883999994,58.820054429],[-134.96202551999994,58.81492747600008],[-134.9744360019999,58.81244538000014],[-134.98668372299994,58.81370677300005],[-134.99819902299987,58.820054429],[-135.0054825509999,58.80776601800012],[-135.02603105399993,58.79315827],[-135.03237870999988,58.785345770000035],[-135.0301000639999,58.776068427000055],[-135.02257239499994,58.76874420800006],[-135.01988684799994,58.76105377800003],[-135.03237870999988,58.75116608300011],[-135.0283096999999,58.744370835],[-135.02554277299996,58.737534897999986],[-135.0521541009999,58.75238678600014],[-135.10464433499993,58.80951569200012],[-135.14362545499984,58.83388906500009],[-135.14903723899997,58.84369538000011],[-135.14598548099988,58.857123114],[-135.12857011599993,58.89520905199999],[-135.14565995999996,58.90643952000009],[-135.15611731699994,58.922796942],[-135.16128495999993,58.94330475500005],[-135.1627091139999,58.96723053600011],[-135.16690019399994,58.990790106000155],[-135.17739824099993,59.00462474200007],[-135.19078528599994,59.016058661000116],[-135.20368404899995,59.03237539300015],[-135.20661373599987,59.04059479400014],[-135.2111710279999,59.06655508000013],[-135.2227270169999,59.09389883],[-135.2241918609999,59.10468170800011],[-135.22960364499994,59.12588125200001],[-135.27257239499988,59.183172919000135],[-135.30028235599988,59.21157461100007],[-135.3347061839999,59.23891836100013],[-135.36180579299992,59.27081940300014],[-135.3675430979999,59.312933661000116],[-135.33971106699994,59.40082428600009],[-135.3316951159999,59.45156484600012],[-135.34829667899996,59.47060781500012],[-135.35948645699997,59.45697663000009],[-135.38927161399988,59.37494538000006],[-135.40111243399994,59.31989166900011],[-135.4143774079999,59.30060455900015],[-135.43643144399996,59.312933661000116],[-135.4670304029999,59.30573151200017],[-135.5279027989999,59.31972890800012],[-135.5537817049999,59.31976959800012],[-135.53384355399993,59.310003973],[-135.48200436099992,59.295111395000156],[-135.4609268869999,59.28217194200012],[-135.4302465489999,59.25210195500009],[-135.4276423819999,59.24799225500015],[-135.42625891799992,59.241603908000044],[-135.42275956899994,59.23786041900008],[-135.4151098299999,59.23407623900006],[-135.3987524079999,59.23086172100002],[-135.38390051999994,59.22296784100005],[-135.35952714799996,59.21377187700007],[-135.35456295499992,59.206773179],[-135.35195878799993,59.196682033000016],[-135.33405514199987,59.161444403000175],[-135.33653723899988,59.162787177000055],[-135.33934485599994,59.15916575700003],[-135.3411759109999,59.15350983300011],[-135.3408910799999,59.148423569999984],[-135.33678137899994,59.143988348000036],[-135.31725012899994,59.131415106000034],[-135.31029212099986,59.12197500200001],[-135.30699622299994,59.11107005400014],[-135.30638587099986,59.09926992400006],[-135.30736243399994,59.086981512000094],[-135.31956946499992,59.10154857000013],[-135.36074785099987,59.11375560100011],[-135.37840735599988,59.124212958],[-135.38662675699987,59.138820705],[-135.39118404899983,59.170111395000056],[-135.39549719999994,59.183172919000135],[-135.4233292309999,59.20506419499999],[-135.47044837099992,59.225490627000156],[-135.51964270699992,59.23651764500001],[-135.5537817049999,59.230414130000106],[-135.53864498599987,59.21527741100011],[-135.48485266799986,59.183172919000135],[-135.4733780589999,59.17072174700003],[-135.4521378249999,59.14154694200008],[-135.43643144399996,59.127997137000115],[-135.40196692599994,59.11163971600011],[-135.3845922519999,59.10089752800009],[-135.37498938699986,59.086981512000094],[-135.37755286399988,59.07001373900011],[-135.38560950399994,59.05316803600011],[-135.3883357409999,59.03782786699999],[-135.37498938699986,59.02558014500012],[-135.3848363919999,59.016058661000116],[-135.3875219389999,59.00629303600009],[-135.38390051999994,58.9975446640001],[-135.37498938699986,58.99140045800011],[-135.38634192599994,58.975165106000176],[-135.3858129549999,58.95433177300011],[-135.37718665299988,58.93634674700017],[-135.36440995999993,58.92869700700013],[-135.3281957669999,58.91974518400012],[-135.3209529289999,58.91571686400014],[-135.32079016799992,58.904689846000096],[-135.33336341099994,58.887193101000044],[-135.33063717399986,58.87783437700001],[-135.2959692049999,58.835150458],[-135.2310277989999,58.77167389500009],[-135.2421768869999,58.74787018400017],[-135.24058997299989,58.73016998900008],[-135.22996985599994,58.71523672100012],[-135.1684464179999,58.6457380230001],[-135.1627091139999,58.63450755400011],[-135.1811417309999,58.624497789000046],[-135.20872962099986,58.62051015800016],[-135.22618567599994,58.61229075700005],[-135.21422278599988,58.58978913000008],[-135.1684464179999,58.54450104400014],[-135.15290279899997,58.51976146000008],[-135.1454971999999,58.515366929],[-135.14224199099993,58.510972398000106],[-135.1416723299999,58.50633372599999],[-135.14317786399994,58.4955508480001],[-135.14224199099993,58.49111562700001],[-135.1363826159999,58.48358795800014],[-135.11119544199994,58.459784247000144],[-135.0996801419999,58.44379303600006],[-135.0572810539999,58.3515485700001],[-135.05386308499988,58.33266836100007],[-135.05284583199995,58.309271552],[-135.0569555329999,58.298773505000106],[-135.0668025379999,58.30097077],[-135.07921301999994,58.30560944200012],[-135.09068762899997,58.30215078300012],[-135.0932511059999,58.295233466000056],[-135.09382076699987,58.26459381700012],[-135.09239661399988,58.254461981000176],[-135.0900772779999,58.248846747000165],[-135.0896703769999,58.24420807500014],[-135.09382076699987,58.237250067000055],[-135.10244706899994,58.23224518400013],[-135.13516191299988,58.219427802000084],[-135.14561926999997,58.216782945],[-135.17308508999992,58.21893952000001],[-135.30955969999988,58.252142645],[-135.35045325399994,58.276800848],[-135.38158118399986,58.31093984600001],[-135.40294348899994,58.353949286000145],[-135.4116918609999,58.38519928600011],[-135.41592363199993,58.39496491100006],[-135.4458715489999,58.42206452000009],[-135.4553116529999,58.446275132],[-135.46751868399988,58.46735260600009],[-135.48493404899983,58.48395416900014],[-135.5053604809999,58.483628648000135],[-135.5141495429999,58.46552155200011],[-135.49836178299984,58.44546133000007],[-135.47581946499994,58.426499742000075],[-135.4644262359999,58.411688544000086],[-135.45982825399994,58.3883324240001],[-135.46312415299988,58.37811920800006],[-135.47801673099994,58.373765367000075],[-135.4941300119999,58.375677802000105],[-135.50706946499992,58.38068268400015],[-135.53262285099993,58.39496491100006],[-135.5931697259999,58.419989325000145],[-135.62751217399986,58.42625560100011],[-135.65245520699997,58.418524481000084],[-135.67658443899987,58.406683661000145],[-135.88670813699986,58.37938060100008],[-135.90941321499992,58.381293036000116],[-135.9094945949999,58.395086981000034],[-135.9021703769999,58.42161692899999],[-135.8900447259999,58.44847239800007],[-135.87588456899996,58.46320221600017],[-135.8946833979999,58.463324286000145],[-135.95034745999993,58.45636627800014],[-135.95034745999993,58.46320221600017],[-135.9366755849999,58.463120835],[-135.92585201699987,58.46771881700012],[-135.9155167309999,58.47370026200004],[-135.90318762899994,58.477484442000055],[-135.8886612619999,58.47760651200003],[-135.84797115799992,58.470038153000175],[-135.8604630199999,58.49103424700002],[-135.85659745999993,58.499457098000065],[-135.8467504549999,58.50775788000005],[-135.84113521999987,58.528387762000186],[-135.84528561099984,58.54653554900007],[-135.85610917899993,58.55927155200013],[-135.87169348899994,58.56769440300017],[-135.8895564439999,58.57306549700005],[-135.8895564439999,58.57990143400014],[-135.82066809799994,58.60032786700013],[-135.83372962099992,58.60374583500013],[-135.87364661399988,58.60854726800012],[-135.88206946499992,58.61058177300005],[-135.8869522779999,58.612534898000106],[-135.9396866529999,58.6813011740001],[-135.95506751199994,58.6946475280001],[-135.97834225199986,58.69660065300014],[-135.97386633999992,58.70156484600001],[-135.9683324859999,58.711249091000134],[-135.96401933499996,58.71645742400015],[-135.9743546209999,58.729071356000034],[-135.99132239499994,58.74518463700009],[-136.00934811099987,58.758978583000115],[-136.02301998599992,58.76483795800005],[-136.03209387899992,58.771877346000124],[-136.05752519399994,58.803697007000075],[-136.07388261599993,58.8126488300001],[-136.0602921209999,58.8259138040001],[-135.96312415299988,58.862046617000075],[-135.9458715489999,58.87079498900014],[-135.92983964799987,58.881537177000055],[-135.9366348949999,58.864081122000094],[-135.91783606699994,58.863348700000145],[-135.7586156889999,58.88837311400007],[-135.7730199859999,58.90452708500015],[-135.79808508999986,58.91266510600014],[-135.93545488199987,58.91624583500011],[-135.96401933499996,58.92251211100007],[-135.95864824099993,58.91327545800002],[-135.95075436099984,58.908270575000145],[-135.92983964799987,58.902044989],[-135.94359290299988,58.89203522300012],[-136.01382402299993,58.858710028000026],[-136.02993730399993,58.855292059000035],[-136.04653886599996,58.861029364],[-136.0476781889999,58.86871979400003],[-136.05109615799992,58.873439846000124],[-136.05410722599993,58.87872955900009],[-136.05406653599994,58.88837311400007],[-136.05044511599996,58.89606354400008],[-136.0373429029999,58.9142113300001],[-136.0329483709999,58.92251211100007],[-136.0564672519999,58.930121161000024],[-136.07689368399994,58.946519273000106],[-136.0923559239999,58.966294664000046],[-136.10118567599994,58.983954169000135],[-136.10407467399986,58.99803294499999],[-136.1039119129999,59.00726959800015],[-136.10586503799993,59.01520416900003],[-136.11485755099994,59.02558014500012],[-136.1263728509999,59.03253815300011],[-136.14171301999994,59.03709544500005],[-136.15737870999993,59.03758372600013],[-136.17007402299987,59.03237539300015],[-136.1548559239999,59.0230980490001],[-136.14244544199997,59.007025458000115],[-136.13878333199992,58.98981354400008],[-136.14964758999992,58.977118231000034],[-136.1409805979999,58.95482005399999],[-136.1665746739999,58.9426130230001],[-136.2023819649999,58.93406810099999],[-136.22472083199995,58.92251211100007],[-136.15265865799992,58.932684637000115],[-136.11778723899988,58.93329498900009],[-136.10118567599994,58.91571686400014],[-136.1165258449999,58.90957265800016],[-136.12230383999994,58.908270575000145],[-136.12230383999994,58.902044989],[-136.10415605399993,58.89524974199999],[-136.09752356699994,58.876857815000115],[-136.0999242829999,58.85374583499999],[-136.10863196499992,58.833156643000144],[-136.13329016799992,58.806097723],[-136.13658606699994,58.795884507000075],[-136.13711503799993,58.786200262000115],[-136.1401261059999,58.78217194200015],[-136.14704342399992,58.7780622420001],[-136.15953528599994,58.768255927000084],[-136.20970618399988,58.75079987200012],[-136.26911373599987,58.7641462260001],[-136.38239498599984,58.806463934000035],[-136.38239498599984,58.8126488300001],[-136.31358801999997,58.80951569200012],[-136.2775772779999,58.81297435100011],[-136.2595108709999,58.82632070500013],[-136.28774980399993,58.82562897300009],[-136.37584387899994,58.833156643000144],[-136.42589270699997,58.82444896000006],[-136.45201575399994,58.824367580000064],[-136.47520911399997,58.83657461100016],[-136.49299068899987,58.864081122000094],[-136.5079239569999,58.90444570500015],[-136.51081295499984,58.94257233300012],[-136.49225826699993,58.96344635600009],[-136.49225826699993,58.97089264500006],[-136.5261938139999,58.96759674700002],[-136.54409745999993,58.95742422100009],[-136.57412675699987,58.91571686400014],[-136.6393123039999,58.96723053600011],[-136.67398027299987,59.00275299700009],[-136.69310462099995,59.01797109600007],[-136.7119848299999,59.02558014500012],[-136.60826575399997,58.908270575000145],[-136.63345292899993,58.89179108300008],[-136.65770423099994,58.89874909100018],[-136.68146725199983,58.91400788000015],[-136.70514889199984,58.92251211100007],[-136.71784420499992,58.92381419500008],[-136.7347712879999,58.927435614000125],[-136.7512914699999,58.93284739799999],[-136.77672278599985,58.94839101800009],[-136.82738196499986,58.95669179900016],[-136.84142005099991,58.96181875200006],[-136.87584387899994,58.983954169000135],[-136.9175512359999,59.001939194999984],[-136.94635982999984,59.022609768],[-137.0130102199999,59.05280182500012],[-137.03221594999985,59.06749095300002],[-137.04609127499995,59.069037177000055],[-137.05947831899994,59.063706772999986],[-137.06391354099992,59.055405992000104],[-137.06297766799995,59.04389069200009],[-137.0502009759999,59.0385602890001],[-137.02904212099992,59.033677476000044],[-137.00804602799985,59.02171458500011],[-136.9714249339999,58.99140045800011],[-136.92931067599997,58.96832916900018],[-136.91124426999994,58.95433177300011],[-136.9037166009999,58.932440497000165],[-136.9179581369999,58.92007070500013],[-137.0130102199999,58.92251211100007],[-137.03050696499986,58.91290924700008],[-137.06419837099983,58.87409088700018],[-137.08531653599997,58.86953359600012],[-137.1024470689999,58.85854726800007],[-137.1297094389999,58.833156643000144],[-137.1297094389999,58.82632070500013],[-137.1089574859999,58.82876211100015],[-137.0869034499999,58.83783600500006],[-137.06631425699987,58.85065338700009],[-137.03331458199992,58.87824127800011],[-137.01496334499984,58.887884833000086],[-136.99469967399986,58.89337799700011],[-136.89586341099994,58.892401434000035],[-136.84170488199993,58.88251373900011],[-136.8281957669999,58.87750885600018],[-136.8177791009999,58.87067291900017],[-136.8124893869999,58.862127997000144],[-136.81143144399994,58.854641018000066],[-136.80919348899997,58.847398179000045],[-136.8001195949999,58.83999258000007],[-136.79149329299986,58.854315497000144],[-136.77700761599993,58.86566803600011],[-136.75885982999992,58.87278880400008],[-136.73924719999985,58.87409088700018],[-136.72752844999988,58.87042877800003],[-136.69831295499984,58.85358307500003],[-136.67454993399994,58.85285065300009],[-136.66372636599993,58.851019598000036],[-136.65330969999985,58.84369538000011],[-136.64305579299992,58.83978913000011],[-136.62612870999993,58.838446356000034],[-136.6090388659999,58.83974844000012],[-136.58755449099996,58.84833405200014],[-136.57730058499993,58.84398021000013],[-136.5672908189999,58.836859442],[-136.55736243399986,58.833156643000144],[-136.54059811099984,58.82933177300013],[-136.48477128799993,58.79962799700011],[-136.4954320949999,58.78449127800011],[-136.51187089799987,58.78046295800014],[-136.53050696499986,58.780910549000126],[-136.54747473899994,58.77912018400015],[-136.54002844999988,58.77167389500009],[-136.56590735599988,58.78595612200017],[-136.58885657499988,58.80890534100014],[-136.61485755099994,58.825425523000135],[-136.64989173099994,58.820054429],[-136.64305579299992,58.806463934000035],[-136.62804114499988,58.805568752000134],[-136.57412675699987,58.77912018400015],[-136.58315995999988,58.77374909100008],[-136.59337317599994,58.771185614],[-136.6043188139999,58.77069733299999],[-136.61579342399983,58.77167389500009],[-136.5633031889999,58.76068756700012],[-136.54393469999982,58.75116608300011],[-136.5290421209999,58.75116608300011],[-136.5226130849999,58.747748114000125],[-136.51968339799987,58.74095286699999],[-136.52232825399992,58.73558177300013],[-136.52586829299995,58.730373440000115],[-136.52574622299997,58.72382233300005],[-136.5204971999999,58.71084219000015],[-136.51585852799985,58.702378648000106],[-136.50682532499985,58.69790273600013],[-136.4885147779999,58.69660065300014],[-136.47667395699995,58.69232819200014],[-136.4526261059999,58.673488674],[-136.43761145699992,58.66925690300017],[-136.45177161399988,58.68919505400008],[-136.47240149599992,58.70343659100017],[-136.4910375639999,58.720160223],[-136.49909420499984,58.747748114000125],[-136.49185136599993,58.749212958000086],[-136.3838598299999,58.725083726000044],[-136.37555904899983,58.720160223],[-136.36839758999986,58.71112702000009],[-136.35391191299993,58.70184967700014],[-136.34260006399987,58.69155508],[-136.34483801999994,58.67918528899999],[-136.3553360669999,58.67145416900017],[-136.39663652299993,58.65558502800006],[-136.45665442599994,58.623277085000105],[-136.48863684799994,58.61351146000008],[-136.51952063699989,58.62083567899999],[-136.52574622299997,58.613999742000075],[-136.48778235599985,58.59540436400005],[-136.47520911399997,58.592922268000144],[-136.46385657499988,58.59650299700012],[-136.43077551999994,58.62083567899999],[-136.4011938139999,58.62571849200005],[-136.37726803299984,58.617743231000084],[-136.3544001939999,58.60618724199999],[-136.32774817599986,58.60032786700013],[-136.3346248039999,58.60858795800011],[-136.35220292899993,58.6212425800001],[-136.3557022779999,58.62832265800016],[-136.35191809799989,58.63849518400009],[-136.34361731699994,58.642157294000135],[-136.33433997299997,58.64227936400011],[-136.32774817599986,58.641302802000055],[-136.31712805899986,58.63743724200004],[-136.30907141799992,58.63182200700014],[-136.30174719999988,58.62921784100014],[-136.29303951699993,58.63450755400011],[-136.2971899079999,58.647121486000096],[-136.2978409499999,58.65827057500003],[-136.29303951699993,58.66925690300017],[-136.28050696499992,58.66022370000017],[-136.18317623599987,58.613999742000075],[-136.18317623599987,58.607163804000045],[-136.1923721999999,58.60708242400007],[-136.19863847599984,58.60553620000003],[-136.2110489569999,58.60032786700013],[-136.20221920499984,58.59430573100003],[-136.17756100199986,58.57306549700005],[-136.1608780589999,58.57168203300015],[-136.1428116529999,58.57355377800003],[-136.12824459499987,58.57074616100009],[-136.12230383999994,58.55573151200014],[-136.12755286399994,58.551947333000115],[-136.13906816299996,58.55206940300009],[-136.1506241529999,58.548895575000024],[-136.1558324859999,58.53546784100014],[-136.16274980399987,58.52619049700009],[-136.1790665359999,58.52334219000014],[-136.2110489569999,58.52464427300005],[-136.19859778599988,58.508978583000086],[-136.18028723899994,58.50755442900002],[-136.1428116529999,58.51845937700006],[-136.13190670499992,58.51951732000013],[-136.08250891799992,58.51642487200014],[-136.0821833979999,58.511379299],[-136.0873917309999,58.504706122000144],[-136.08820553299984,58.49799225500011],[-136.08556067599991,58.49140045800014],[-136.08429928299984,58.48468659100008],[-136.08067786399997,58.47955963700018],[-136.07079016799983,58.477484442000055],[-136.06232662699992,58.47426992400001],[-136.0606583319999,58.466498114],[-136.06139075399994,58.45734284100003],[-136.0602107409999,58.44953034100003],[-136.0362035799999,58.39789459800009],[-136.02672278599994,58.388128973000114],[-136.05728105399987,58.359523830000164],[-136.0762833319999,58.34560781500009],[-136.09805253799993,58.33966705900014],[-136.12751217399983,58.3364932310001],[-136.1868383449999,58.32241445500013],[-136.2728165359999,58.312974351000136],[-136.2875056629999,58.318182684000035],[-136.28331458199997,58.32973867400015],[-136.27208411399997,58.341253973000086],[-136.26569576699987,58.34650299700017],[-136.2724503249999,58.35960521000014],[-136.32774817599986,58.408596096],[-136.32974199099993,58.38051992400001],[-136.34308834499984,58.37616608300003],[-136.40929114499994,58.393459377],[-136.4590551419999,58.41689687700007],[-136.48167883999986,58.42218659100015],[-136.48940995999988,58.426011460000076],[-136.49864661399994,58.441310940000115],[-136.50593014199987,58.44269440300011],[-136.5134985019999,58.43618398600002],[-136.51036536399994,58.42792389500012],[-136.49909420499984,58.41478099200007],[-136.50031490799986,58.385077216000134],[-136.5151261059999,58.38031647300016],[-136.53750566299993,58.382513739000146],[-136.56114661399988,58.373765367000075],[-136.55223548099994,58.37128327000011],[-136.54600989499988,58.366644598],[-136.54112708199992,58.36220937700013],[-136.53661048099985,58.360174872000115],[-136.52497311099984,58.35814036699999],[-136.50698808499993,58.34894440300011],[-136.49909420499984,58.34650299700017],[-136.48033606699985,58.346869208],[-136.48086503799996,58.352362372000115],[-136.48619544199994,58.362616278000054],[-136.48167883999986,58.377590236000074],[-136.47329667899993,58.385443427000055],[-136.4666641919999,58.386542059000085],[-136.44444739499988,58.381293036000116],[-136.4171036449999,58.381293036000116],[-136.4100642569999,58.37933991100008],[-136.40672766799992,58.37498607],[-136.4050186839999,58.37030670800005],[-136.4029027989999,58.36762116100009],[-136.37767493399994,58.359198309000035],[-136.3657120429999,58.352362372000115],[-136.36196855399984,58.34023672100012],[-136.36192786399988,58.316107489],[-136.37059485599988,58.29954661700005],[-136.3912247389999,58.302557684000035],[-136.43419348899994,58.31915924700009],[-136.4928279289999,58.31443919499999],[-136.51276607999986,58.31915924700009],[-136.5187882149999,58.32428620000012],[-136.5226130849999,58.33112213700003],[-136.52745520699997,58.33710358300014],[-136.53661048099985,58.33966705900014],[-136.5506485669999,58.34064362200003],[-136.5628149079999,58.3437360700001],[-136.57388261599993,58.34918854400014],[-136.5847061839999,58.35708242400012],[-136.59894771999993,58.35903554900007],[-136.62051347599993,58.353908596000146],[-136.65672766799986,58.33966705900014],[-136.5747777989998,58.28213125200007],[-136.56602942599994,58.27798086100014],[-136.56069902299987,58.271307684000185],[-136.56114661399988,58.25775788000012],[-136.5672908189999,58.24933502800015],[-136.5918676419999,58.22744375200013],[-136.59837805899983,58.223049221000124],[-136.63341223899994,58.22772858300005],[-136.6393123039999,58.226752020000085],[-136.65099036399985,58.22052643400003],[-136.6647843089999,58.22036367400007],[-136.67870032499988,58.22431061400015],[-136.69082597599987,58.23041413000014],[-136.70693925699993,58.24799225500008],[-136.71141516799992,58.268866278000026],[-136.7007543609999,58.284165757],[-136.67100989499994,58.28510163000009],[-136.67174231699988,58.290106512000115],[-136.6751195949999,58.30125560100005],[-136.6772354809999,58.30556875200013],[-136.69383704299986,58.29930247599999],[-136.71108964799987,58.29779694200015],[-136.7252498039999,58.30194733300008],[-136.73249264199993,58.312974351000136],[-136.74022376199994,58.30630117400007],[-136.75055904899986,58.30044179900013],[-136.76187089799993,58.297308661000066],[-136.77277584499987,58.29873281500012],[-136.7835994129999,58.306382554000045],[-136.77961178299992,58.31220123900003],[-136.7722061839999,58.318264065],[-136.77277584499987,58.32660553600008],[-136.78815670499984,58.332709052000055],[-136.82624264199993,58.318996486000124],[-136.84911048099994,58.32660553600008],[-136.8432511059999,58.331000067000055],[-136.83311926999994,58.34198639500012],[-136.82738196499986,58.34650299700017],[-136.83653723899994,58.36041901200015],[-136.8475235669999,58.372748114],[-136.8605037099999,58.38239166900017],[-136.87584387899994,58.388128973000114],[-136.8780411449999,58.363348700000174],[-136.89012610599994,58.34967682500003],[-136.90363521999993,58.35081614800008],[-136.90998287699986,58.37067291900017],[-136.92100989499988,58.38898346600014],[-136.94749915299988,58.40070221600003],[-136.9793595039999,58.406887111000096],[-137.00682532499994,58.408596096],[-137.02277584499984,58.40717194200012],[-137.06761633999986,58.39496491100006],[-137.0783585279999,58.393255927000055],[-137.1122940749999,58.39496491100006],[-137.1314184239999,58.40131256700009],[-137.19790605399993,58.44269440300011],[-137.26008053299984,58.45636627800014],[-137.30003821499986,58.47475820500011],[-137.32188880099994,58.48065827000012],[-137.34044348899994,58.49477773600016],[-137.34821529899983,58.49799225500011],[-137.36253821499992,58.50018952],[-137.4714249339999,58.55438873900005],[-137.5185440749999,58.564764716000134],[-137.5628149079999,58.590887762000115],[-137.58836829299986,58.60032786700013],[-137.62075761599996,58.60260651200009],[-137.63145911399988,58.60618724199999],[-137.62246660099996,58.613999742000075],[-137.60684160099987,58.617743231000084],[-137.5704646479999,58.61798737200014],[-137.55426998599984,58.62083567899999],[-137.51382402299993,58.64252350500006],[-137.4996231759999,58.64813873900005],[-137.4841202459999,58.649888414000074],[-137.45197506399992,58.65009186400012],[-137.43814042899993,58.65558502800006],[-137.4576716789999,58.672267971000096],[-137.46947180899986,58.67959219000009],[-137.47911536399994,58.68292877800011],[-137.49543209499987,58.68036530200011],[-137.5216365229999,58.665350653000175],[-137.5374649729999,58.66181061400001],[-137.5666397779999,58.6588402360001],[-137.6429744129999,58.63450755400011],[-137.6706436839999,58.63324616100011],[-137.67784583199992,58.646429755000064],[-137.68317623599992,58.66648997600011],[-137.7047419909999,58.68634674700002],[-137.86961829299986,58.76577383000013],[-137.89313717399983,58.78221263200013],[-137.90217037699983,58.78644440300015],[-137.9147843089999,58.7905134140001],[-137.9260961579999,58.795721747000115],[-137.93097896999987,58.80304596600002],[-137.92955481699988,58.81574127800017],[-137.92406165299988,58.83462148600002],[-137.92418372299994,58.847398179000045],[-137.9442439439999,58.88812897300012],[-137.9843643869999,58.91998932500014],[-138.18488521999987,59.02558014500012],[-138.25080318899987,59.04783763200008],[-138.28115800699993,59.06240469],[-138.28791256399984,59.08075592700005],[-138.36266028599994,59.07977936400009],[-138.3989151679999,59.08331940300014],[-138.4312638009999,59.09381745000003],[-138.39867102799994,59.09284088700014],[-138.38320878799993,59.094794012000094],[-138.36978105399993,59.101263739],[-138.42845618399994,59.111232815],[-138.55939693899984,59.10618724200007],[-138.61001542899993,59.127997137000115],[-138.54043535099993,59.1224632830001],[-138.50694739499997,59.12470123900008],[-138.4927465489999,59.13849518400018],[-138.49376380099994,59.14931875200006],[-138.4947810539999,59.152736721000096],[-138.4830623039999,59.165228583],[-138.47288977799985,59.170599677000055],[-138.44652258999986,59.17609284100008],[-138.4380997389999,59.183172919000135],[-138.44908606699997,59.19163646],[-138.5582576159999,59.18089427300008],[-138.58311926999994,59.17112864800013],[-138.59605872299994,59.16889069200015],[-138.62857011599993,59.16889069200015],[-138.6438695949999,59.16681549700002],[-138.65363521999993,59.16396719000009],[-138.64118404899992,59.153998114],[-138.63048255099986,59.14223867400003],[-138.6560766269999,59.15770091400004],[-138.6883438789999,59.17698802299999],[-138.7267960279999,59.19110748900003],[-138.76984615799984,59.199855861000074],[-138.81403561099987,59.21466705900015],[-138.8382869129999,59.22821686400012],[-138.98167883999992,59.27484772300012],[-139.20588131399992,59.31976959800012],[-139.18419348899994,59.32526276200014],[-139.13809160099993,59.31024811400015],[-139.11652584499987,59.312933661000116],[-139.15412350199986,59.33600495000017],[-139.16490637899992,59.340236721],[-139.18211829299992,59.34125397300006],[-139.2017309239999,59.33978913],[-139.22012285099993,59.34031810099999],[-139.23379472599996,59.34772370000014],[-139.23692786399994,59.36005280200012],[-139.2302953769999,59.368231512000115],[-139.2268774079999,59.37466054900012],[-139.24006100199992,59.38117096600003],[-139.25332597599993,59.38141510600014],[-139.2715958319999,59.37811920800011],[-139.28770911399988,59.37213776200012],[-139.2946671209999,59.36473216400013],[-139.30370032499988,59.35053131700012],[-139.3257543609999,59.355780341000106],[-139.3528946609999,59.36810944200014],[-139.3775121739999,59.37494538000006],[-139.40802975199983,59.37836334800006],[-139.4462784499999,59.387600002000134],[-139.48265540299988,59.400620835000105],[-139.50755774599992,59.415961005000085],[-139.4279679029999,59.40155670800002],[-139.38914954299992,59.382269598000065],[-139.3654679029999,59.38027578300014],[-139.3416641919999,59.38499583500014],[-139.32258053299992,59.39545319200011],[-139.36392167899993,59.410711981000084],[-139.38638261599993,59.41510651200015],[-139.4048559239999,59.41225820500012],[-139.42345130099997,59.40696849200004],[-139.4435115229999,59.407660223],[-139.4631241529999,59.412420966000084],[-139.50755774599992,59.42963288000012],[-139.52472896999984,59.44037506700011],[-139.53425045499984,59.44383372600011],[-139.59691321499992,59.45697663000009],[-139.85700436099984,59.546291408000016],[-139.83584550699993,59.558905341000084],[-139.76577714799996,59.547837632000046],[-139.73350989499994,59.55247630399999],[-139.73591061099987,59.55638255400009],[-139.74030514199984,59.56679922100006],[-139.71959387899994,59.565985419000135],[-139.70343990799986,59.570217190000065],[-139.69029700399992,59.57973867400007],[-139.67886308499996,59.59467194200011],[-139.66885331899985,59.58437734600001],[-139.65758216099988,59.57550690300015],[-139.64488684799994,59.57273997599999],[-139.6304418609999,59.580471096],[-139.63784745999996,59.587307033000016],[-139.6229548819999,59.59536367400015],[-139.57579505099991,59.61456940300011],[-139.5913793609999,59.622544664000074],[-139.57921301999994,59.63959381700012],[-139.5271703769999,59.67804596600002],[-139.4800512359999,59.70441315300012],[-139.4733780589999,59.71759674700017],[-139.53795325399997,59.75702545800014],[-139.54507402299993,59.764797268000144],[-139.5620824859999,59.77236562700009],[-139.57201087099992,59.79018789300006],[-139.58263098899994,59.82746002800006],[-139.6087133449999,59.863592841000084],[-139.62108313699994,59.890285549],[-139.61335201699993,59.90253327000006],[-139.6022843089999,59.906805731000176],[-139.58238684799989,59.925604559000035],[-139.57237708199992,59.92987702000015],[-139.55907141799986,59.93170807500011],[-139.54576575399994,59.936672268000066],[-139.5218399729999,59.95099518400015],[-139.4925024079999,59.98456452000009],[-139.47321529899986,59.993597723],[-139.44888261599988,59.98110586100007],[-139.43000240799986,59.96503327],[-139.37100175699993,59.92987702000015],[-139.30516516799995,59.86469147300012],[-139.3023575509999,59.84829336100001],[-139.33360755099994,59.813421942],[-139.3430883449999,59.786525783000016],[-139.3428848949999,59.77326080900017],[-139.3356013659999,59.73810455900013],[-139.34190833199986,59.72675202000015],[-139.3420304029999,59.72040436400011],[-139.32673092399986,59.71572500200001],[-139.31859290299994,59.71108633000007],[-139.31139075399992,59.705389716000084],[-139.30833899599992,59.700262762000186],[-139.3031306629999,59.6807315120001],[-139.27765865799992,59.646185614],[-139.2673233709999,59.62140534100003],[-139.2866104809999,59.620550848000114],[-139.31090247299994,59.616278387000115],[-139.33234615799986,59.60956452000006],[-139.3430883449999,59.60089752800017],[-139.28990637899997,59.5761579450001],[-139.27074133999992,59.572984117000125],[-139.25975501199986,59.57904694200012],[-139.2263891269999,59.62140534100003],[-139.23485266799992,59.63336823100015],[-139.26162675699993,59.659165757],[-139.2673233709999,59.66608307500008],[-139.26699785099987,59.69806549700009],[-139.26886959499984,59.715073960000055],[-139.2741593089999,59.73126862200011],[-139.27969316299993,59.73627350500014],[-139.28648841099997,59.73818594],[-139.29222571499994,59.742580471000096],[-139.2946671209999,59.75519440300015],[-139.29133053299986,59.760199286000024],[-139.27574622299994,59.775783596],[-139.27074133999992,59.779038804000045],[-139.26333574099993,59.78579336100007],[-139.27961178299986,59.81972890800013],[-139.28038489499988,59.83368561400001],[-139.2646378249999,59.84162018400015],[-139.17369544199997,59.850816148000135],[-139.03636633999986,59.84686920800006],[-139.01097571499992,59.842474677000084],[-138.96959387899992,59.81671784100003],[-138.9453018869999,59.80711497600005],[-138.92007402299987,59.804999091000134],[-138.89736894399994,59.813177802000055],[-138.91051184799997,59.812689520000056],[-138.92259680899986,59.81391022300009],[-138.94517981699994,59.82001373900005],[-139.0137833319999,59.85761139500006],[-139.0283096999999,59.86151764500006],[-139.2187393869999,59.87103913000006],[-139.23900305899986,59.878322658000066],[-139.3211970689999,59.93870677300002],[-139.35529537699986,59.94940827000012],[-139.36831620999993,59.963324286],[-139.37954667899993,59.97919342700011],[-139.39024817599994,59.99135976800002],[-139.41242428299992,60.00189850500008],[-139.46206620999993,60.01178620000009],[-139.48330644399994,60.02240631700011],[-139.50723222599987,60.046535549000126],[-139.52090410099993,60.05149974200001],[-139.54165605399993,60.04657623900011],[-139.5429581369999,60.03729889500009],[-139.57994544199994,60.007310289000124],[-139.58946692599994,59.98794179900001],[-139.58438066299993,59.96515534100016],[-139.58482825399992,59.955064195000105],[-139.5931697259999,59.95099518400015],[-139.62612870999993,59.949448960000105],[-139.65835527299993,59.94354889500009],[-139.70596269399988,59.92177969000004],[-139.73521887899994,59.89923737200003],[-139.7944229809999,59.854193427000055],[-139.84902910099987,59.819403387000094],[-139.9582413399999,59.79462311400014],[-140.04271399599986,59.76972077],[-140.13707434799994,59.739935614],[-140.25422115799992,59.71015045799999],[-140.32274329299983,59.701239325000145],[-140.50121008999986,59.70522695500013],[-140.61701412699986,59.70848216399999],[-140.6898087229999,59.71845123900007],[-140.76268469999994,59.72833893400018],[-140.86314856699988,59.745550848],[-141.00983639199984,59.79043203300002],[-141.11522376199983,59.80947500200001],[-141.27415930899988,59.849188544000114],[-141.3522843089999,59.864081122000165],[-141.42853756399984,59.872137762000094],[-141.45400956899994,59.882066148000106],[-141.46816972599984,59.90306224200004],[-141.45763098899994,59.91673411699998],[-141.43492591099997,59.925116278000054],[-141.4124242829999,59.92987702000015],[-141.43455969999985,59.9196638040001],[-141.4451391269999,59.91233958499999],[-141.45400956899994,59.90253327000006],[-141.43809973899994,59.896185614000146],[-141.41319739499988,59.899969794000135],[-141.35317949099985,59.920152085],[-141.34679114499997,59.924872137000094],[-141.33873450399994,59.928412177000084],[-141.31432044199988,59.93146393400018],[-141.28408769399985,59.93976471600014],[-141.2752579419999,59.94354889500009],[-141.26732337099986,59.95555247600002],[-141.26211503799996,59.97394440300006],[-141.26012122299994,59.994208075000145],[-141.26158606699988,60.01178620000009],[-141.2678930329999,60.029038804],[-141.27806555899988,60.044094143],[-141.29222571499992,60.05658600500011],[-141.31004798099988,60.06647370000004],[-141.30313066299993,60.065863348000065],[-141.28209387899994,60.06647370000004],[-141.30504309799994,60.08633047100012],[-141.34642493399983,60.098781643000144],[-141.37954667899987,60.113918361000124],[-141.3776749339999,60.14215729400011],[-141.44351152299987,60.13568756700003],[-141.4747208319999,60.126125393000116],[-141.4776098299999,60.11107005400011],[-141.45506751199989,60.078436591000134],[-141.44717363199993,60.073919989],[-141.4317113919999,60.072211005],[-141.4197485019999,60.067572333000086],[-141.39940344999988,60.05280182500008],[-141.38589433499993,60.03481679900016],[-141.39293372299989,60.02204010600012],[-141.41421464799996,60.014349677],[-141.47252356699997,60.009019273000135],[-141.61388098899994,59.96906159100017],[-141.67349199099996,59.96112702],[-141.73265540299988,59.963120835000055],[-141.89395097599993,60.00755442900007],[-141.96910559799994,60.02814362200009],[-142.1041560539999,60.03530508000012],[-142.19774329299992,60.05280182500008],[-142.35163326699993,60.067694403000154],[-142.48741614499988,60.07591380400005],[-142.63963782499988,60.102443752],[-142.7984919909999,60.112372137000094],[-142.98228919199997,60.092474677000105],[-143.19579016799986,60.067694403000154],[-143.4639379549999,60.05280182500008],[-143.6096085279999,60.04946523600016],[-143.7486873039999,60.02545807500003],[-143.86318925699993,60.00039297100012],[-143.91860917899987,59.99701569200001],[-144.04238847599993,60.02798086100013],[-144.1057022779999,60.031683661000095],[-144.24962317599986,60.03229401200003],[-144.13320878799993,60.03974030200011],[-144.0313614569999,60.03408437700012],[-144.00255286399988,60.03974030200011],[-144.0200902989999,60.0614281270001],[-144.0507706369999,60.079657294000164],[-144.2054744129999,60.14516836100002],[-144.21914628799993,60.14862702000012],[-144.23908443899992,60.149603583],[-144.2525528639999,60.15460846600002],[-144.24087480399993,60.165513414000095],[-144.2056371739999,60.18305084800014],[-144.19749915299994,60.18414948100009],[-144.19054114499988,60.18659088700003],[-144.18757076699995,60.19367096600008],[-144.19009355399996,60.20164622600005],[-144.19644120999988,60.205633856000034],[-144.20449785099993,60.20530833499999],[-144.21202551999988,60.20050690300012],[-144.24657141799986,60.188910223],[-144.3475642569999,60.20111725500009],[-144.38678951699995,60.19676341399998],[-144.3731176419999,60.18374258000009],[-144.44855709499996,60.17633698100009],[-144.46349036399988,60.179348049],[-144.47883053299995,60.186712958],[-144.4858292309999,60.19594961100016],[-144.4754939439999,60.20425039300015],[-144.4907120429999,60.21625397300006],[-144.51732337099992,60.21002838700009],[-144.5469864569999,60.19745514500012],[-144.5711156889999,60.19061920799999],[-144.60147050699996,60.19643789300015],[-144.65811113199993,60.21539948100015],[-144.68838456899994,60.22467682500012],[-144.6742244129999,60.226548569999984],[-144.6618546209999,60.22406647300006],[-144.6531469389999,60.22036367400001],[-144.64000403599994,60.217230536000145],[-144.64216061099995,60.22247955900003],[-144.66051184799989,60.24518463700015],[-144.69465084499987,60.27252838700003],[-144.7363175119999,60.28440989799999],[-144.7464493479999,60.289536851000115],[-144.7559301419999,60.29621002800014],[-144.76988684799986,60.30267975500005],[-144.7840470039999,60.30597565300009],[-144.79426021999996,60.30320872600005],[-144.80890865799995,60.29441966399999],[-144.81965084499996,60.29726797100003],[-144.82876542899996,60.30312734600006],[-144.83869381399995,60.30320872600005],[-144.8489477199999,60.300726630000106],[-144.86510169199994,60.30438873900006],[-144.87279212099986,60.30320872600005],[-144.89012610599985,60.2929548200001],[-144.90526282499985,60.29319896000005],[-144.91657467399995,60.294745184000085],[-144.92747962099992,60.298773505000085],[-144.94163977799994,60.30662669500004],[-144.93447831899988,60.31639232],[-144.91637122299986,60.326157945000126],[-144.88963782499988,60.35024648600016],[-144.88703365799986,60.355047919000135],[-144.8899633449999,60.36326732000005],[-144.8963923819999,60.36579010600014],[-144.90306555899986,60.36619700700008],[-144.90689042899984,60.36810944200012],[-144.91454016799992,60.381170966000106],[-144.91246497299989,60.387030341000134],[-144.9007055329999,60.39598216399998],[-144.8865453769999,60.401556708000086],[-144.87071692599994,60.4032250020001],[-144.83800208199992,60.40216705900003],[-144.83800208199992,60.4096540390001],[-144.86070716099985,60.41852448100014],[-144.8420304029999,60.43618398600007],[-144.79084225199995,60.464911200000024],[-144.79426021999996,60.47597890800016],[-144.79409745999988,60.49115631700014],[-144.7984106109999,60.49921295800008],[-144.8321427069999,60.47711823100009],[-144.8531794909999,60.469875393000066],[-144.8731176419999,60.471177476000086],[-144.88703365799986,60.48541901200017],[-144.87905839799993,60.495917059000064],[-144.87018795499986,60.501857815000065],[-144.86095130099991,60.50629303600014],[-144.84618079299992,60.51679108300012],[-144.8360489569999,60.52240631700012],[-144.83177649599986,60.525783596000124],[-144.8306778639999,60.53099192900014],[-144.83202063699989,60.538031317],[-144.83234615799992,60.544175522999986],[-144.82835852799985,60.54682038000006],[-144.81753495999988,60.55182526200009],[-144.8152563139999,60.563137111000096],[-144.81875566299988,60.58413320500012],[-144.81607011599985,60.59503815300012],[-144.80923417899987,60.60333893400017],[-144.79084225199995,60.61513906500015],[-144.7684626939999,60.62514883000012],[-144.76280676999994,60.63019440300018],[-144.75609290299985,60.64305247599999],[-144.75706946499994,60.65253327],[-144.7613419259999,60.66356028900004],[-144.76060950399994,60.67275625200004],[-144.7464493479999,60.67658112200003],[-144.71654212099992,60.67186107000013],[-144.6885473299999,60.663641669000036],[-144.66120357999995,60.66010163000006],[-144.63316809799994,60.669745184000114],[-144.61790930899986,60.68036530200005],[-144.61367753799993,60.68732330900015],[-144.61266028599985,60.697699286000145],[-144.61603756399987,60.71393463700009],[-144.62279212099992,60.71702708500008],[-144.63385982999986,60.71385325700011],[-144.7053930329999,60.70380280200014],[-144.73314368399988,60.69521719000012],[-144.75609290299985,60.684027411000116],[-144.77179928299992,60.66893138200011],[-144.78600012899994,60.65070221600002],[-144.80329342399992,60.635321356000176],[-144.85586503799988,60.62205638200005],[-144.86978105399996,60.60569896000013],[-144.8791397779999,60.58551666900011],[-144.89321855399993,60.56732819200011],[-144.91209876199986,60.557359117000125],[-144.97427324099988,60.537014065000115],[-144.9996638659999,60.5331891950001],[-145.0195206369999,60.52643463700018],[-145.04043535099987,60.51056549700015],[-145.07201087099986,60.477972723000015],[-145.0969945949999,60.444281317],[-145.11400305899994,60.42942942900014],[-145.1634822259999,60.417141018000066],[-145.23591061099995,60.36810944200012],[-145.26952063699986,60.357082424000076],[-145.3052465489999,60.35578034100017],[-145.38914954299986,60.3625348980001],[-145.40265865799995,60.36627838700006],[-145.41519120999982,60.37189362200014],[-145.43683834499993,60.38641998900009],[-145.4684952459999,60.391750393000144],[-145.4822891919999,60.39598216399998],[-145.48936926999988,60.40326569200009],[-145.4988907539999,60.42352936400001],[-145.5040177069999,60.430812893],[-145.51695716099988,60.43602122600011],[-145.55003821499992,60.441351630000085],[-145.57258053299992,60.45111725500011],[-145.67283877099993,60.458159912],[-145.7316158069999,60.46527700900011],[-145.8045041759999,60.45444902600009],[-145.86606367499994,60.44766242600014],[-145.93875364099992,60.45606615100006],[-145.94155839799993,60.47113678600009],[-145.9226781889999,60.479966539000046],[-145.88003495999988,60.48769765800013],[-145.86339270699992,60.495306708],[-145.84683183499988,60.50722890800012],[-145.77179928299992,60.54242584800009],[-145.68130449099985,60.60809967699999],[-145.6746720039999,60.61823151200004],[-145.66637122299989,60.635321356000176],[-145.6478165359999,60.645209052],[-145.6291397779999,60.65273672100015],[-145.62002519399994,60.66290924700009],[-145.62901770699986,60.67914459800014],[-145.65208899599992,60.675116278000175],[-145.69176184799994,60.656683661000145],[-145.8445938789999,60.62103913],[-145.8801977199999,60.62872955900012],[-145.8380020819999,60.639837958000136],[-145.81773841099988,60.649603583000086],[-145.80504309799994,60.66290924700009],[-145.82420813699989,60.66486237200015],[-145.8613988919999,60.65648021],[-145.8801977199999,60.66290924700009],[-145.85553951699995,60.67658112200003],[-145.84528561099987,60.68553294500008],[-145.8391820949999,60.697699286000145],[-145.85716712099983,60.695054429000045],[-145.88223222599996,60.68622467700003],[-145.90465247299989,60.67357005400014],[-145.92577063699989,60.645209052],[-145.95238196499992,60.638128973000114],[-146.00365149599983,60.63564687700002],[-145.99413001199986,60.64915599199999],[-145.98277747299989,60.6572126320001],[-145.95523027299996,60.669745184000114],[-145.9434301419999,60.678290106000034],[-145.92467200399994,60.696844794000135],[-145.91429602799994,60.703924872000115],[-145.93879146999987,60.708197333000115],[-145.96548417899987,60.69782135600012],[-145.99233964799984,60.68374258000008],[-146.01732337099992,60.67658112200003],[-146.04430091099988,60.67308177300005],[-146.19774329299995,60.636542059000085],[-146.23875891799995,60.634711005000106],[-146.25690670499995,60.64618561400006],[-146.2580460279999,60.648830471000146],[-146.26060950399986,60.65070221600002],[-146.2631729809999,60.65371328300012],[-146.2643123039999,60.659816799],[-146.26130123599992,60.66258372600008],[-146.24600175699987,60.66380442899999],[-146.2398575509999,60.66632721600011],[-146.2307022779999,60.673163153000026],[-146.11729895699986,60.72138092700008],[-146.08128821499992,60.72638580900012],[-146.0703018869999,60.73065827000011],[-146.06212317599994,60.73802317900011],[-146.0589086579999,60.74860260600015],[-146.0530899729999,60.75263092700015],[-146.02611243399986,60.74481842700014],[-146.01793372299986,60.752346096],[-146.0203751289999,60.757961330000015],[-146.03774980399996,60.779608466000084],[-146.03221594999985,60.78839752800015],[-146.0311173169999,60.79474518400009],[-146.03774980399996,60.80011627800014],[-146.04344641799995,60.80101146000013],[-146.05040442599994,60.800848700000174],[-146.05638587099992,60.79930247600013],[-146.0589086579999,60.79633209800012],[-146.06932532499985,60.778387762000186],[-146.09349524599986,60.76288483300006],[-146.1408585279999,60.74481842700014],[-146.16698157499982,60.74070872599999],[-146.18219967399995,60.74404531500013],[-146.1818741529999,60.75311920800011],[-146.16128495999988,60.76654694200011],[-146.20856686099995,60.76072825700005],[-146.22248287699992,60.755764065],[-146.23228919199994,60.74746328300012],[-146.2403051419999,60.737250067],[-146.2498266269999,60.72866445500007],[-146.26402747299989,60.725002346000124],[-146.2955623039999,60.72630442900014],[-146.30679277299993,60.7320824240001],[-146.3121231759999,60.74481842700014],[-146.30996660099987,60.758246161000145],[-146.30235755099994,60.765326239],[-146.2925919259999,60.770900783],[-146.28425045499992,60.779608466000084],[-146.31309973899994,60.77167389500012],[-146.3525284499999,60.73371002800011],[-146.38914954299992,60.72199127800003],[-146.41722571499994,60.70677317900005],[-146.42568925699987,60.70083242400012],[-146.43838456899988,60.69599030200014],[-146.48228919199988,60.68695709800012],[-146.49372311099995,60.68716054900009],[-146.51756751199989,60.69806549700014],[-146.54991614499994,60.70140208499999],[-146.6441951159999,60.697699286000145],[-146.65208899599992,60.70001862200011],[-146.65363521999996,60.705755927],[-146.65298417899984,60.71246979400002],[-146.65477454299986,60.718166408000016],[-146.6629125639999,60.725002346000124],[-146.6957087879999,60.74481842700014],[-146.6785782539999,60.752752997000115],[-146.66051184799994,60.74998607000005],[-146.6429744129999,60.74119700699999],[-146.62743079299992,60.73114655200011],[-146.62083899599992,60.75242747599999],[-146.6157934239999,60.76117584800006],[-146.60700436099992,60.76654694200011],[-146.5911352199999,60.76520416900002],[-146.5626114569999,60.7509626320001],[-146.5345352859999,60.759222723],[-146.50670325399994,60.744370835000055],[-146.49372311099995,60.74860260600015],[-146.49152584499996,60.760891018000116],[-146.50511633999992,60.76862213700003],[-146.5241593089999,60.77240631700006],[-146.53807532499988,60.77277252800017],[-146.51569576699995,60.780096747000165],[-146.49160722599993,60.77928294500008],[-146.4456274079999,60.77277252800017],[-146.4266251289999,60.77488841399999],[-146.38609778599988,60.784328518],[-146.34333248599995,60.788885809000064],[-146.26284745999988,60.81085846600014],[-146.19546464799987,60.820542710000105],[-146.19546464799987,60.827378648000135],[-146.22789466099988,60.83169179900012],[-146.23753821499992,60.84100983300008],[-146.2261449859999,60.850409247000115],[-146.19546464799987,60.854681708000115],[-146.09308834499993,60.84100983300008],[-146.2234594389999,60.892645575000024],[-146.25377356699988,60.88572825700013],[-146.2813614569999,60.85932038000014],[-146.3172501289999,60.83673737200017],[-146.35830644399988,60.82233307500012],[-146.40151933499988,60.820542710000105],[-146.40151933499988,60.827378648000135],[-146.39610755099994,60.83124420800015],[-146.39313717399992,60.83543528899999],[-146.3872777989999,60.84788646],[-146.5114639959999,60.81858958500008],[-146.5585831369999,60.827378648000135],[-146.55459550699987,60.84544505400005],[-146.56680253799993,60.85366445500016],[-146.58604895699986,60.852972723000036],[-146.60326087099992,60.844427802],[-146.6191300119999,60.831040757],[-146.6282852859999,60.827297268000144],[-146.6309708319999,60.83478424700002],[-146.62743079299992,60.854681708000115],[-146.60997473899994,60.86420319200012],[-146.60700436099992,60.86835358300005],[-146.6113988919999,60.87714264500011],[-146.62083899599992,60.883775132],[-146.63194739499988,60.88800690300011],[-146.64110266799992,60.88947174700017],[-146.65526282499985,60.88629791900011],[-146.66844641799992,60.880926825000145],[-146.68350175699993,60.879828192],[-146.70319576699987,60.88947174700017],[-146.70466061099992,60.89227936400011],[-146.7168676419999,60.90997955900013],[-146.7238663399999,60.91608307500012],[-146.73045813699986,60.91933828300016],[-146.7354223299999,60.92389557500008],[-146.73729407499988,60.933823960000026],[-146.75328528599988,60.955023505],[-146.75316321499992,60.96430084800015],[-146.7298477859999,60.964544989],[-146.7147110669999,60.959784247000094],[-146.69127356699994,60.94725169500002],[-146.6049698559999,60.937160549000126],[-146.58584550699993,60.94472890800007],[-146.61880449099988,60.955023505],[-146.66608639199995,60.96344635600014],[-146.69981848899985,60.976874091000134],[-146.69229081899988,61.002427476000136],[-146.68529212099992,61.01166413],[-146.6727595689999,61.03270091400013],[-146.66222083199995,61.04026927300007],[-146.64354407499988,61.04205963700014],[-146.59093176999994,61.03290436400008],[-146.57282467399995,61.026597398000135],[-146.57046464799987,61.03070709800009],[-146.56647701699987,61.04157135600014],[-146.56541907499985,61.04653554900004],[-146.61123613199987,61.0534528670001],[-146.63292395699992,61.0595563820001],[-146.64793860599985,61.07379791900011],[-146.5568741529999,61.085923570000105],[-146.28376217399995,61.08144765800012],[-146.23643958199986,61.09430573100014],[-146.27798417899987,61.12274811400009],[-146.30011959499996,61.13251373900011],[-146.3257950509999,61.1364606790001],[-146.38145911399994,61.134588934000035],[-146.43195553299992,61.139471747000115],[-146.49380449099993,61.13418203300014],[-146.58584550699993,61.1364606790001],[-146.60944576699995,61.13076406500012],[-146.6316625639999,61.11908600500011],[-146.6752823559999,61.088080145],[-146.72057044199994,61.06488678600008],[-146.81554114499988,61.03180573100003],[-146.85399329299986,61.00556061400001],[-146.87132727799985,60.98517487200003],[-146.89093990799992,60.97207265800016],[-146.91136633999992,60.96210358300005],[-146.94871985599994,60.94965241100014],[-146.97671464799987,60.94578685100014],[-147.00487219999985,60.94794342700013],[-147.0315649079999,60.957709052000084],[-146.9939672519999,60.98338450700014],[-146.9788305329999,60.99872467699999],[-146.98375403599994,61.00556061400001],[-147.00479081899988,61.00665924700015],[-147.01105709499993,61.00556061400001],[-147.01569576699995,61.002183335],[-147.0167537099999,60.998114325000024],[-147.01691646999996,60.994330145],[-147.0184626939999,60.99188873900005],[-147.03416907499988,60.98163483300014],[-147.04430091099994,60.9779320330001],[-147.05882727799982,60.97821686400011],[-147.04857337099992,60.992173570000105],[-147.04259192599994,61.00291575700011],[-147.04723059799994,61.009833075000124],[-147.0901993479999,61.01577383000013],[-147.1006567049999,61.01528554900015],[-147.11945553299995,61.00287506700012],[-147.1482641269999,60.99188873900005],[-147.15054277299993,60.976385809000156],[-147.14537512899994,60.96332428600008],[-147.14586341099994,60.95429108300005],[-147.16527258999992,60.95087311400006],[-147.18529212099992,60.95368073100012],[-147.1991267569999,60.96198151200018],[-147.20710201699995,60.97597890800013],[-147.20962480399996,60.995591539000095],[-147.20726477799988,61.00869375200007],[-147.2051488919999,61.01459381700003],[-147.21051998599995,61.01341380399999],[-147.2543839179999,60.99396393400018],[-147.26427161399994,60.99188873900005],[-147.27843176999994,61.00438060100008],[-147.28791256399995,61.00702545800005],[-147.29222571499994,60.995591539000095],[-147.28750566299985,60.984930731000176],[-147.26528886599988,60.967922268],[-147.25812740799995,60.957709052000084],[-147.2573136059999,60.937892971000075],[-147.26891028599985,60.93024323100003],[-147.3127335279999,60.93040599200002],[-147.3058162099999,60.923000393],[-147.3430883449999,60.89948151200014],[-147.3646134109999,60.89126211100015],[-147.37413489499988,60.89907461100013],[-147.38296464799996,60.91396719],[-147.40396074099988,60.912787177000084],[-147.4290258449999,60.90558502800004],[-147.44985917899987,60.90253327000014],[-147.4378962879999,60.926906643],[-147.38097083199992,60.98566315300012],[-147.40025794199985,60.99095286699999],[-147.41681881399992,60.98029205900015],[-147.43260657499985,60.965318101000115],[-147.44957434799994,60.957709052000084],[-147.46003170499992,60.96576569200003],[-147.45173092399995,60.98371002800015],[-147.43553626199989,61.00238678600014],[-147.42259680899988,61.012355861000124],[-147.45173092399995,61.01093170800006],[-147.4688614569999,61.00047435099999],[-147.4942520819999,60.96796295799999],[-147.50975501199989,60.92572663000008],[-147.52269446499992,60.90753815300008],[-147.54206295499995,60.91331614800005],[-147.54548092399995,60.98566315300012],[-147.53856360599994,61.004217841000106],[-147.5296931629999,61.01666901200003],[-147.5255020819999,61.03058502800012],[-147.53246008999986,61.053941148000106],[-147.5217179029999,61.059759833000065],[-147.49087480399987,61.06940338700003],[-147.4839981759999,61.07379791900011],[-147.4859106109999,61.0837263040001],[-147.4938858709999,61.088080145],[-147.5037328769999,61.09039948100015],[-147.51134192599994,61.09430573100014],[-147.52135169199994,61.10858795800005],[-147.52725175699987,61.12474192900011],[-147.52525794199994,61.139390367000125],[-147.51134192599994,61.14956289300006],[-147.5248917309999,61.15444570500013],[-147.54328365799995,61.157049872000144],[-147.5611466139999,61.155910549],[-147.57339433499988,61.14956289300006],[-147.57884680899988,61.13629791900014],[-147.5732315749999,61.12759023600016],[-147.56436113199987,61.120347398000135],[-147.55972245999988,61.11163971600014],[-147.56615149599986,61.08722565300008],[-147.58185787699992,61.05923086100007],[-147.60179602799988,61.036200262000115],[-147.6209203769999,61.026597398000135],[-147.64000403599985,61.02435944200015],[-147.65859941299988,61.01947663000008],[-147.66527258999992,61.01459381700003],[-147.6485082669999,61.012355861000124],[-147.62075761599993,61.01398346600015],[-147.61436926999988,61.012355861000124],[-147.6074112619999,61.003363348],[-147.6101781889999,60.998846747000144],[-147.61656653599988,60.99599844000003],[-147.62059485599985,60.99188873900005],[-147.6231583319999,60.986558335],[-147.63223222599996,60.97797272300009],[-147.63418535099993,60.97479889500012],[-147.6304825509999,60.966701565],[-147.62169348899988,60.96458567899999],[-147.61164303299992,60.96430084800015],[-147.60383053299995,60.96116771000009],[-147.60008704299992,60.9498558610001],[-147.60562089799993,60.92365143400014],[-147.60069739499988,60.90997955900013],[-147.59679114499988,60.88568756700015],[-147.59902910099993,60.869086005],[-147.61066646999996,60.86155833500011],[-147.66466223899988,60.85830312700007],[-147.68195553299995,60.864691473],[-147.66608639199993,60.90045807500003],[-147.68504798099994,60.89858633000015],[-147.71214758999983,60.891180731000176],[-147.7304581369999,60.88947174700017],[-147.73277747299989,60.900091864000025],[-147.72720292899987,60.91815827000012],[-147.71646074099985,60.93569570500007],[-147.70311438699986,60.94472890800007],[-147.70311438699986,60.95087311400006],[-147.72765051999988,60.94757721600003],[-147.7694392569999,60.92914459800009],[-147.78571529899995,60.93040599200002],[-147.78864498599987,60.92670319200014],[-147.79019120999993,60.923773505000106],[-147.79246985599988,60.91681549700005],[-147.77013098899988,60.91144440300017],[-147.77774003799988,60.898871161],[-147.81297766799992,60.87579987200002],[-147.77708899599992,60.86701080900015],[-147.77139238199987,60.86493561400014],[-147.76683508999992,60.86188385600014],[-147.75780188699989,60.85366445500016],[-147.7513728509999,60.84503815300014],[-147.75462805899994,60.84100983300008],[-147.76382402299993,60.83893463700014],[-147.7833145819999,60.82953522300012],[-147.79556230399996,60.827378648000135],[-147.8701879549999,60.837713934000064],[-147.88609778599994,60.8452009140001],[-147.89879309799989,60.855943101000136],[-147.90855872299989,60.86835358300005],[-147.91698157499988,60.888169664000074],[-147.92223059799986,60.895697333000115],[-147.93081620999988,60.904201565000065],[-147.93809973899988,60.908758856000084],[-148.01984615799984,60.94163646],[-148.03892981699994,60.94472890800007],[-148.0504044259999,60.95014069200012],[-148.03429114499994,60.962347723],[-147.9979141919999,60.98191966399999],[-147.99950110599988,60.98761627800015],[-148.00214596299986,60.990139065000065],[-148.00263424399995,60.99286530200014],[-147.9979141919999,60.99933502800006],[-147.98884029899995,61.00486888200006],[-147.96642005099991,61.00796133000013],[-147.9569392569999,61.012355861000124],[-147.94469153599988,61.026597398000135],[-147.92906653599988,61.053778387000044],[-147.91539466099994,61.06757233300005],[-147.9298396479999,61.07273997600005],[-147.93590247299989,61.07379791900011],[-147.9180802069999,61.09430573100014],[-147.88394120999993,61.119370835000055],[-147.8459366529999,61.14057038000006],[-147.81639563699994,61.14956289300006],[-147.80475826699995,61.155218817000055],[-147.77285722599993,61.18203359600007],[-147.75772050699993,61.19110748900006],[-147.71617591099994,61.201849677000084],[-147.7021378249999,61.21320221600014],[-147.71056067599994,61.23208242400007],[-147.73696855399993,61.215562242000104],[-147.75104732999986,61.212591864],[-147.7652074859999,61.21845123900011],[-147.7232152989999,61.25592682500015],[-147.7133682929999,61.2730980490001],[-147.7304581369999,61.27985260600003],[-147.74803626199986,61.276068427],[-147.7621964179999,61.264960028000175],[-147.78571529899995,61.23895905199999],[-147.8334854809999,61.19757721600016],[-147.84373938699989,61.19110748900006],[-147.87328040299988,61.181870835],[-147.9086807929999,61.16014232000013],[-147.96377519399994,61.114732164000046],[-147.9985245429999,61.06268952000009],[-148.0209854809999,61.03742096600002],[-148.04942786399994,61.026597398000135],[-148.0720108709999,61.02440013200013],[-148.0799047519999,61.026597398000135],[-148.08625240799986,61.03139883000004],[-148.09382076699995,61.04417552300008],[-148.11335201699993,61.061835028000175],[-148.12189693899995,61.07599518400009],[-148.13190670499992,61.08832428600014],[-148.14875240799995,61.09430573100014],[-148.13996334499996,61.112860419000164],[-148.1459447909999,61.117905992000104],[-148.1601456369999,61.11469147300014],[-148.1961156889999,61.10236237200008],[-148.2586156889999,61.09430573100014],[-148.27839107999992,61.08893463700009],[-148.30516516799992,61.07709381700015],[-148.39057369699987,61.06728750200001],[-148.4094945949999,61.06012604400017],[-148.39716549399992,61.05536530200008],[-148.37262936099992,61.0522321640001],[-148.36107337099992,61.04653554900004],[-148.37128658799992,61.040594794000086],[-148.3914281889999,61.02411530200011],[-148.39891516799992,61.01605866100009],[-148.40790768099995,61.01093170800006],[-148.44981848899988,60.99933502800006],[-148.44981848899988,60.99188873900005],[-148.4103490879999,60.98639557500003],[-148.37559973899994,60.999212958000086],[-148.31383216099994,61.04026927300007],[-148.27948971299983,61.054999091000134],[-148.22765051999988,61.070990302000055],[-148.17772376199989,61.07660553600005],[-148.14875240799995,61.06012604400017],[-148.16380774599995,61.05581289300006],[-148.16694088399993,61.046454169000064],[-148.16681881399995,61.034613348000086],[-148.17235266799986,61.0232608090001],[-148.20714270699992,60.98191966399999],[-148.21837317599991,60.97247955900015],[-148.25194251199994,60.95473867400006],[-148.26484127499984,60.95087311400006],[-148.28172766799986,60.95368073100012],[-148.31358801999988,60.96979401200018],[-148.33311926999988,60.97138092700011],[-148.32587643099993,60.96112702000009],[-148.28905188699986,60.933823960000026],[-148.28119869699987,60.92059967700005],[-148.2860001289999,60.913397528000026],[-148.2967016269999,60.906927802000105],[-148.30646725199995,60.895697333000115],[-148.30817623599995,60.88019440300011],[-148.30577551999988,60.864691473],[-148.3071996739999,60.852728583000086],[-148.3204239569999,60.84788646],[-148.3387345039999,60.850043036],[-148.37511145699995,60.85936107000013],[-148.39582271999996,60.86155833500011],[-148.3482152989999,60.83392975500011],[-148.33287512899992,60.81940338700017],[-148.35423743399988,60.81313711100013],[-148.38337154899995,60.817043361000124],[-148.42833411399994,60.83527252800012],[-148.45726477799994,60.84100983300008],[-148.5234268869999,60.840399481000034],[-148.58637447799995,60.83047109600012],[-148.7036840489999,60.79266998900005],[-148.67011471299986,60.78546784100005],[-148.6350805329999,60.79360586100016],[-148.6000463529999,60.806341864],[-148.56647701699995,60.81313711100013],[-148.55992591099988,60.81110260600009],[-148.55146236899992,60.80206940300009],[-148.54633541599992,60.80011627800014],[-148.5379532539999,60.80093008000016],[-148.47630774599992,60.81427643400015],[-148.46015377499987,60.81240469],[-148.44981848899988,60.80011627800014],[-148.48802649599992,60.79051341400007],[-148.5783585279999,60.78172435100011],[-148.6111954419999,60.76288483300006],[-148.62360592399995,60.752386786],[-148.65086829299992,60.73737213700016],[-148.66270911399988,60.725002346000124],[-148.6777237619999,60.700344143000116],[-148.68871008999986,60.689398505000085],[-148.7036840489999,60.684027411000116],[-148.7036840489999,60.67658112200003],[-148.6674698559999,60.674505927000105],[-148.6558731759999,60.67658112200003],[-148.64366614499988,60.68203359600007],[-148.62132727799985,60.695135809000035],[-148.59825598899988,60.699611721],[-148.58958899599992,60.70473867400004],[-148.5832006499999,60.71234772300006],[-148.58079993399994,60.72158437700004],[-148.5789281889999,60.73578522300012],[-148.5735977859999,60.73993561400008],[-148.56489010299993,60.74079010600017],[-148.55284583199992,60.74481842700014],[-148.5295304029999,60.757025458000115],[-148.51020260299987,60.763495184000114],[-148.48997962099986,60.7660993510001],[-148.46410071499994,60.76654694200011],[-148.45307369699992,60.76862213700003],[-148.44001217399995,60.777573960000055],[-148.43305416599992,60.779608466000084],[-148.3747045559999,60.779608466000084],[-148.3747045559999,60.77277252800017],[-148.38837643099987,60.77277252800017],[-148.38837643099987,60.76654694200011],[-148.37885494699987,60.76422760600015],[-148.3709610669999,60.75975169499999],[-148.3649389309999,60.75324127800008],[-148.36107337099992,60.74481842700014],[-148.38548743399994,60.73969147300012],[-148.39509029899992,60.73468659100008],[-148.40196692599991,60.725002346000124],[-148.4011124339999,60.71580638200005],[-148.39509029899992,60.68952057500006],[-148.39891516799992,60.684027411000116],[-148.42634029899986,60.67951080900015],[-148.4345190089999,60.66742584800015],[-148.42992102799985,60.62872955900012],[-148.42011471299992,60.634955145000056],[-148.39582271999996,60.656683661000145],[-148.38267981699988,60.661688544000086],[-148.3704320949999,60.66380442899999],[-148.35875403599994,60.66742584800015],[-148.34740149599983,60.67658112200003],[-148.3425186839999,60.70331452000014],[-148.3084203769999,60.73456452000012],[-148.2646378249999,60.76080963700003],[-148.23070227799985,60.77277252800017],[-148.23070227799985,60.76654694200011],[-148.2482804029999,60.75438060100013],[-148.25621497299989,60.73798248900011],[-148.25495357999995,60.718573309000114],[-148.24498450399986,60.697699286000145],[-148.2371313139999,60.68854401200015],[-148.21898352799985,60.673285223],[-148.21019446499992,60.66290924700009],[-148.20641028599985,60.65350983300008],[-148.2059220039999,60.645453192000154],[-148.2041723299999,60.63751862200017],[-148.19660396999996,60.62872955900012],[-148.20628821499992,60.620550848],[-148.21918697799993,60.61408112200008],[-148.23371334499987,60.609808661],[-148.24811764199993,60.60830312700012],[-148.3152563139999,60.54970937700009],[-148.3369848299999,60.540594794000114],[-148.36107337099992,60.54682038000006],[-148.36107337099992,60.55304596600003],[-148.3635147779999,60.56232330900017],[-148.41645260299987,60.5592308610001],[-148.42992102799985,60.570746161000116],[-148.4396866529999,60.587062893000144],[-148.4624731109999,60.58930084800013],[-148.4884740879999,60.582220770000056],[-148.5244848299999,60.56000397300003],[-148.59947669199994,60.52968984600012],[-148.6558731759999,60.49843984600006],[-148.66942298099994,60.488226630000106],[-148.6847631499999,60.47211334800015],[-148.6898901029999,60.45722077],[-148.67259680899988,60.450628973000114],[-148.65147864499988,60.45718008000002],[-148.61530514199995,60.48574453300011],[-148.55793209499996,60.504339911],[-148.51414954299986,60.528469143],[-148.47020423099994,60.54621002800011],[-148.42992102799985,60.539374091000084],[-148.42707271999993,60.52887604400003],[-148.4090470039999,60.52456289300004],[-148.38593502499992,60.52252838700018],[-148.36786861899992,60.518947658000016],[-148.38154049399995,60.50584544500005],[-148.3485001289999,60.50946686400003],[-148.34154212099992,60.506659247000144],[-148.3511449859999,60.495306708],[-148.35883541599992,60.48379140800016],[-148.34837805899988,60.48065827000009],[-148.3299047519999,60.48322174700009],[-148.31322180899986,60.488836981000176],[-148.27660071499994,60.49494049700017],[-148.26850338399993,60.472886460000076],[-148.26378333199992,60.451076565000115],[-148.2375382149999,60.457464911000145],[-148.22472083199995,60.46914297100012],[-148.2236221999999,60.47833893400012],[-148.22785396999993,60.48834870000008],[-148.23070227799985,60.502142645],[-148.23285885299987,60.50580475500006],[-148.2366430329999,60.509914455000015],[-148.2383520169999,60.515204169000086],[-148.23412024599986,60.52236562700012],[-148.22846432199987,60.52562083500008],[-148.2132462229999,60.53241608299999],[-148.21019446499992,60.536322333],[-148.2059220039999,60.546332098000086],[-148.19591223899994,60.55451080900017],[-148.18455969999994,60.55780670800011],[-148.1760961579999,60.55304596600003],[-148.1736547519999,60.53998444200014],[-148.17711341099988,60.52533600500014],[-148.18346106699988,60.51276276200007],[-148.18976803299995,60.50584544500005],[-148.16637122299986,60.501613674000126],[-148.1546117829999,60.525132554],[-148.14830481699994,60.55776601800012],[-148.14130611899995,60.58038971600008],[-148.13084876199989,60.58722565300012],[-148.09382076699995,60.603583075000024],[-148.08360755099991,60.60488515800013],[-148.06916256399995,60.5859235700001],[-148.06000729099986,60.57802969000014],[-148.0457657539999,60.57416413000014],[-148.0668432279999,60.539374091000084],[-148.0551651679999,60.54124583500005],[-148.03339596299992,60.551459052],[-148.0252579419999,60.55304596600003],[-148.01178951699993,60.54779694200015],[-148.00682532499988,60.54067617400009],[-148.00426184799986,60.532782294000114],[-147.9979141919999,60.525783596000124],[-147.98497473899994,60.52155182500011],[-147.97077389199993,60.518947658000016],[-147.95982825399994,60.51276276200007],[-147.9569392569999,60.49843984600006],[-147.96226966099988,60.49188873900008],[-147.97370357999995,60.485296942],[-147.98696855399987,60.480169989],[-147.9979141919999,60.477972723000015],[-147.98473059799989,60.46222565300006],[-147.96373450399994,60.46417877800008],[-147.94440670499992,60.4688988300001],[-147.93590247299989,60.46116771],[-147.94188391799992,60.44306061400008],[-147.9570206369999,60.43610260600009],[-147.9979141919999,60.436957098000086],[-147.99535071499992,60.421535549000154],[-148.0123998689999,60.410711981000155],[-148.03685462099992,60.40428294500005],[-148.05626380099994,60.40216705900003],[-148.08556067599986,60.419094143000116],[-148.0970352859999,60.41937897300006],[-148.08735104099992,60.39598216399998],[-148.1109106109999,60.39948151200015],[-148.15644283799995,60.41494375200009],[-148.18232174399986,60.416489976000136],[-148.17084713399993,60.40961334800013],[-148.1350805329999,60.37933991100011],[-148.12828528599988,60.36810944200012],[-148.14244544199988,60.35521067900011],[-148.16978919199988,60.35285065300015],[-148.1985570949999,60.35639069200011],[-148.2170304029999,60.36127350500003],[-148.21617591099994,60.379706122000066],[-148.2335098949999,60.38475169500008],[-148.25458736899992,60.37897370000012],[-148.26484127499984,60.36469147300004],[-148.25975501199994,60.34853750200015],[-148.24730383999992,60.34902578300013],[-148.23167883999994,60.353094794000086],[-148.2170304029999,60.347601630000085],[-148.21515865799986,60.32192617400001],[-148.24091549399992,60.29767487200003],[-148.27623450399994,60.279608466000106],[-148.31037350199995,60.27041250200013],[-148.3200577459999,60.2609723980001],[-148.33002682199987,60.258856512000094],[-148.3387345039999,60.26243724199999],[-148.35358639199993,60.27997467700011],[-148.36107337099992,60.28620026200018],[-148.3797094389999,60.28742096600008],[-148.3908585279999,60.27741120000012],[-148.3930557929999,60.26496002800009],[-148.38495846299986,60.258856512000094],[-148.36754309799989,60.25389232000005],[-148.36445064999992,60.242254950000145],[-148.37079830599993,60.228461005000135],[-148.38154049399995,60.217230536000145],[-148.39814205599993,60.209173895],[-148.41523189999995,60.20441315300011],[-148.43089758999992,60.19765859600007],[-148.44298255099994,60.18374258000009],[-148.4086807929999,60.18610260600007],[-148.3752335279999,60.192775783000094],[-148.3433731759999,60.20331452000006],[-148.31383216099994,60.217230536000145],[-148.25812740799992,60.25177643400006],[-148.22581946499992,60.260402736000124],[-148.18976803299995,60.25141022300012],[-148.18976803299995,60.24518463700015],[-148.22907467399995,60.242254950000145],[-148.26484127499984,60.232163804],[-148.24718176999986,60.22638580900012],[-148.2040909499999,60.220160223000065],[-148.18976803299995,60.21108633000016],[-148.1856176419999,60.196519273000135],[-148.19135494699987,60.18341705900015],[-148.21019446499992,60.155829169000135],[-148.18761145699995,60.165513414000095],[-148.1601456369999,60.213080145],[-148.14130611899995,60.232163804],[-148.13267981699983,60.23419830900013],[-148.11884518099995,60.23452383000012],[-148.10594641799992,60.230861721000096],[-148.10033118399994,60.22093333499999],[-148.1025284499999,60.20913320500002],[-148.10834713399987,60.20111725500009],[-148.1649063789999,60.14907461100001],[-148.18883216099988,60.13475169500013],[-148.2167455719999,60.12909577000012],[-148.27863521999987,60.12726471600014],[-148.29857337099986,60.13646067900014],[-148.2859594389999,60.162665106000155],[-148.30304928299992,60.16400788000006],[-148.32298743399988,60.172593492000075],[-148.33311926999988,60.17011139500015],[-148.36786861899992,60.11823151200014],[-148.3730362619999,60.08673737200005],[-148.3879288399999,60.058498440000065],[-148.4116104809999,60.03856028899999],[-148.44298255099994,60.03229401200003],[-148.44298255099994,60.02545807500003],[-148.40746008999986,60.018052476000136],[-148.40196692599991,60.015529690000115],[-148.4038793609999,60.00706614799999],[-148.4069311189999,60.00324127800015],[-148.40758216099994,59.999579169000114],[-148.40196692599991,59.99135976800002],[-148.4353735019999,59.95929596600002],[-148.45136471299992,59.95502350500011],[-148.47093665299988,59.970892645000156],[-148.49901282499988,60.013251044000135],[-148.51805579299986,60.02850983300011],[-148.54600989499988,60.03229401200003],[-148.5344132149999,60.013128973000065],[-148.53551184799994,59.99701569200001],[-148.5469864569999,59.98484935100011],[-148.56647701699995,59.97768789300006],[-148.54784094999988,59.96963125200013],[-148.56175696499994,59.95709870000006],[-148.64557857999995,59.92316315300008],[-148.6558731759999,59.92304108300011],[-148.6657608709999,59.931138414000046],[-148.66454016799986,59.93976471600014],[-148.65746008999992,59.94696686400008],[-148.6496475899999,59.95099518400015],[-148.66523189999992,59.95579661700004],[-148.68028723899994,59.9547386740001],[-148.69526119699992,59.951727606000176],[-148.7105199859999,59.95099518400015],[-148.72301184799994,59.95384349200002],[-148.7451065749999,59.96214427300007],[-148.75890051999994,59.964056708000115],[-148.7878311839999,59.958563544000114],[-148.8441869779999,59.937201239000146],[-148.87498938699983,59.93732330900012],[-148.89232337099995,59.94599030200011],[-148.92601477799985,59.97150299700011],[-148.95067298099994,59.97768789300006],[-149.00202389199995,59.96727122599999],[-149.02318274599986,59.96767812700009],[-149.01899166599992,59.9845238300001],[-149.07477779899995,59.969468492],[-149.10688229099992,59.96898021],[-149.12140865799995,59.99135976800002],[-149.1094864569999,60.002752997000165],[-149.05439205599993,60.037746486000074],[-149.03880774599995,60.05280182500008],[-149.0701391269999,60.06093984600002],[-149.1030981109999,60.058091539000074],[-149.13475501199994,60.04751211100001],[-149.19273841099994,60.014105536000145],[-149.20018469999988,60.008368231000176],[-149.20518958199995,59.99823639500013],[-149.20641028599988,59.98761627800017],[-149.20885169199988,59.977972723],[-149.21760006399987,59.970892645000156],[-149.21861731699994,59.955308335000055],[-149.2339574859999,59.939886786000116],[-149.24449622299994,59.92609284100002],[-149.2312719389999,59.91559479400014],[-149.24083411399985,59.902736721000124],[-149.25788326699995,59.88825104400017],[-149.27525794199994,59.87726471600003],[-149.28587805899988,59.87466054900004],[-149.2930802069999,59.88764069200012],[-149.2905981109999,59.92499420800008],[-149.2996720039999,59.947170315000115],[-149.30040442599991,59.95636627800011],[-149.29950924399992,59.97426992400007],[-149.30488033799986,59.97785065300003],[-149.31611080599987,59.97943756700006],[-149.32603919199988,59.98432038000014],[-149.32746334499996,59.99750397300009],[-149.32140051999986,60.00104401200014],[-149.2983292309999,60.00653717699999],[-149.29332434799994,60.01178620000009],[-149.30016028599985,60.02313873900005],[-149.31517493399988,60.025051174],[-149.3411352199999,60.02240631700011],[-149.35411536399988,60.090969143000066],[-149.36286373599995,60.11127350500006],[-149.38365637899994,60.12238190300008],[-149.40868079299995,60.12372467700009],[-149.42988033799995,60.114813544000135],[-149.43622799399984,60.10321686400012],[-149.44200598899994,60.083400783000016],[-149.4444067049999,60.06289297100015],[-149.44074459499993,60.04970937700001],[-149.42304439999992,60.02240631700011],[-149.41852779899986,60.018052476000136],[-149.38890540299988,59.99750397300009],[-149.41828365799995,59.99127838700003],[-149.43248450399994,59.98615143400013],[-149.44416256399995,59.97768789300006],[-149.4488012359999,59.96808502800008],[-149.45262610599988,59.94505442900013],[-149.4578344389999,59.93732330900012],[-149.47215735599985,59.931586005000135],[-149.48407955599993,59.93292877800003],[-149.49644934799994,59.93646881700011],[-149.51244055899994,59.93732330900012],[-149.5269669259999,59.93211497600011],[-149.55463619699987,59.91347890800013],[-149.5636693999999,59.909409897999986],[-149.57685299399992,59.89760976800002],[-149.60614986899995,59.84552643400014],[-149.6250707669999,59.83368561400001],[-149.62787838399993,59.82831452000015],[-149.62035071499983,59.81659577000006],[-149.60846920499992,59.804877020000056],[-149.59809322799993,59.799546617000104],[-149.58617102799988,59.789374091000134],[-149.58067786399985,59.786525783000016],[-149.57123775899993,59.785101630000135],[-149.53974361899992,59.786525783000016],[-149.5464981759999,59.77472565300014],[-149.5488988919999,59.76609935100005],[-149.54832923099994,59.758978583],[-149.54657955599993,59.75177643400014],[-149.53010006399995,59.738267319999984],[-149.52265377499987,59.72797272300006],[-149.52672278599994,59.71759674700017],[-149.53754635299993,59.71649811400012],[-149.55097408799992,59.72321198100014],[-149.57323157499988,59.73810455900013],[-149.58808346299992,59.742254950000145],[-149.63593502499995,59.74494049700005],[-149.60053463399996,59.766302802],[-149.59496008999994,59.77220286700013],[-149.60187740799995,59.7827009140001],[-149.61827551999994,59.784572658000066],[-149.63678951699995,59.78388092700011],[-149.6496068999999,59.786525783000016],[-149.64496822799987,59.801947333000136],[-149.67198645699992,59.81708405200013],[-149.66669674399992,59.830552476000136],[-149.66002356699988,59.84039948100015],[-149.64509029899995,59.87392812700009],[-149.6421606109999,59.885484117000104],[-149.65009518099987,59.912258205000015],[-149.67027747299989,59.93984609600012],[-149.69697018099993,59.95978424700002],[-149.72472083199992,59.964056708000115],[-149.74083411399988,59.948472398000135],[-149.7385961579999,59.890855210000076],[-149.7488907539999,59.86469147300012],[-149.7659399079999,59.839667059000114],[-149.77696692599994,59.835353908000016],[-149.79979407499994,59.84113190300017],[-149.82994544199988,59.85667552299999],[-149.8469945949999,59.858343817],[-149.86811275899993,59.847967841000084],[-149.85509192599994,59.843166408000016],[-149.8411352199999,59.83519114800005],[-149.79255123599992,59.79975006700006],[-149.76911373599992,59.786525783000016],[-149.75035559799989,59.704657294000135],[-149.75263424399995,59.682847398000106],[-149.74608313699983,59.667181708000136],[-149.75654049399995,59.66205475500011],[-149.77436275899993,59.66486237200017],[-149.78986568899995,59.67324453300013],[-149.8085424469999,59.68744538000014],[-149.81395423099983,59.693019924000154],[-149.80622311099995,59.710109768],[-149.80724036399994,59.71759674700017],[-149.82148189999992,59.72549062700013],[-149.8570450509999,59.733587958000065],[-149.87181555899986,59.741522528000026],[-149.91156979099986,59.77399323100012],[-149.9199112619999,59.779038804000045],[-149.9630020819999,59.78335195500016],[-150.01866614499988,59.798529364000146],[-150.03168697799987,59.79926178600006],[-150.03856360599988,59.79254791900003],[-150.04063880099986,59.77562083500013],[-149.9779760409999,59.75177643400014],[-149.97272701699993,59.746405341000106],[-149.96088619699992,59.72748444200009],[-149.95197506399992,59.723089911],[-149.92735755099991,59.721136786000145],[-149.9164932929999,59.71759674700017],[-149.95746822799995,59.66982656500012],[-150.0026749339999,59.64203522300015],[-150.01268469999988,59.62824127800014],[-150.0311986969999,59.637111721000096],[-150.0423477859999,59.64948151200003],[-150.06049557199992,59.67666250200012],[-150.0746557279999,59.685532944999984],[-150.0977270169999,59.69554271000009],[-150.11925208199992,59.700344143000066],[-150.12877356699988,59.693426825000145],[-150.1206762359999,59.68097565300006],[-150.10468502499987,59.67210521],[-150.09312903599988,59.66205475500011],[-150.09837805899994,59.64557526200004],[-150.10692298099985,59.62982819200008],[-150.10712643099993,59.61493561400012],[-150.10020911399994,59.60272858300005],[-150.08783932199987,59.59467194200011],[-150.11030025899987,59.58002350500002],[-150.12267005099991,59.57501862200014],[-150.13560950399994,59.572984117000125],[-150.15021725199992,59.57632070500016],[-150.16746985599985,59.591376044000164],[-150.17719479099992,59.59467194200011],[-150.1983536449999,59.5869815120001],[-150.19945227799985,59.56883372599999],[-150.18940182199987,59.548081773000014],[-150.17719479099992,59.532049872000115],[-150.2368871739999,59.5338402360001],[-150.25678463399987,59.52610911699999],[-150.2454727859999,59.497870184000114],[-150.27973385299987,59.496405341000134],[-150.2912491529999,59.492865302000084],[-150.3262426419999,59.475978908000066],[-150.3479711579999,59.46995677299999],[-150.3698624339999,59.46946849199999],[-150.3894750639999,59.47744375200013],[-150.38227291599992,59.479234117000125],[-150.3698624339999,59.48387278900008],[-150.36152096299995,59.484808661000145],[-150.37584387899994,59.49518463700003],[-150.3832494779999,59.497870184000114],[-150.36982174399992,59.50202057500014],[-150.35570227799988,59.50446198100009],[-150.34333248599995,59.50885651200018],[-150.33482825399992,59.51837799700017],[-150.34992428299992,59.518744208],[-150.3574926419999,59.52570221600017],[-150.35887610599985,59.53587474200013],[-150.35533606699988,59.546291408000016],[-150.34479732999992,59.55556875200007],[-150.31529700399994,59.56391022300012],[-150.30345618399988,59.56989166900014],[-150.29466712099992,59.58234284100016],[-150.29466712099992,59.59210846600011],[-150.29584713399993,59.601060289000046],[-150.2904760409999,59.611151434000085],[-150.2700902989999,59.62689850500005],[-150.26634680899986,59.63593170800006],[-150.27338619699992,59.649359442000055],[-150.25072180899988,59.66771067900011],[-150.2290746739999,59.69550202000009],[-150.2243546209999,59.71539948100017],[-150.25226803299992,59.71015045799999],[-150.2787979809999,59.692084052000084],[-150.3543595039999,59.60228099200005],[-150.37958736899986,59.58755117400007],[-150.39317786399994,59.57672760600015],[-150.42426510299993,59.532049872000115],[-150.46519934799994,59.49445221600011],[-150.4693090489999,59.47817617400007],[-150.47948157499994,59.46735260600017],[-150.4927465489999,59.46576569200015],[-150.50617428299986,59.47744375200013],[-150.50157630099994,59.49428945500013],[-150.54194088399987,59.51528554900009],[-150.55333411399988,59.53571198100014],[-150.54511471299995,59.550441799000154],[-150.50584876199994,59.58185455900018],[-150.49250240799995,59.60089752800017],[-150.53010006399992,59.601874091000134],[-150.6166886059999,59.564398505000106],[-150.65697180899986,59.55247630399999],[-150.65697180899986,59.546291408000016],[-150.6374405589999,59.54120514500009],[-150.61432857999995,59.528753973000065],[-150.59357662699995,59.51300690300011],[-150.5812475249999,59.497870184000114],[-150.58051510299995,59.48191966400011],[-150.59357662699995,59.4741071640001],[-150.63646399599992,59.46312083500005],[-150.63646399599992,59.45697663000009],[-150.61436926999994,59.45042552300002],[-150.60472571499986,59.44501373900014],[-150.6093236969999,59.43866608300012],[-150.6297094389999,59.42963288000012],[-150.65306555899988,59.423895575000024],[-150.7286270819999,59.422186591000035],[-150.73395748599995,59.41478099200005],[-150.7426244779999,59.39858633000011],[-150.75462805899986,59.38239166900014],[-150.76996822799993,59.37494538000006],[-150.78827877499987,59.37148672100006],[-150.84906979099992,59.34369538],[-150.85627193899995,59.339260158000044],[-150.86388098899988,59.335516669000086],[-150.91767330599993,59.32656484600006],[-150.91730709499993,59.317084052000055],[-150.9087621739999,59.302639065],[-150.88634192599986,59.27505117400009],[-150.89195716099988,59.25751373900014],[-150.93110104099992,59.24823639500009],[-150.9658910799999,59.23444245000017],[-150.9586075509999,59.20368073100009],[-150.9965714179999,59.2265485700001],[-151.01154537699992,59.24164459800003],[-151.0095108709999,59.255194403000175],[-150.99640865799992,59.26813385600017],[-150.9980362619999,59.272650458000136],[-151.00816809799989,59.27440013200014],[-151.02009029899995,59.278753973000114],[-151.03498287699986,59.292466539000046],[-151.04255123599995,59.29718659100014],[-151.05418860599994,59.29926178600009],[-151.0659887359999,59.29588450700005],[-151.07835852799982,59.28925202],[-151.09247799399986,59.28510163000005],[-151.12169348899994,59.29393138200011],[-151.1766251289999,59.301011460000076],[-151.22870846299995,59.316351630000106],[-151.24347896999996,59.318426825000145],[-151.25804602799985,59.31769440300012],[-151.2733048169999,59.312933661000116],[-151.25763912699986,59.29840729400017],[-151.23591061099987,59.29653554900001],[-151.21312415299985,59.29694245000011],[-151.19452877499987,59.28937409100016],[-151.1809789699999,59.27936432500009],[-151.1299535799999,59.25828685100008],[-151.10920162699992,59.253363348],[-151.0993546209999,59.24896881700012],[-151.09516354099986,59.24127838700009],[-151.0972387359999,59.232611395],[-151.10273189999992,59.22467682500005],[-151.11034094999985,59.21893952000006],[-151.14631100199992,59.209540106000055],[-151.16161048099988,59.20770905200008],[-151.1826065749999,59.21743398600001],[-151.21186275899993,59.22329336100015],[-151.2221166659999,59.224188544000135],[-151.27460689999992,59.22162506700015],[-151.29442298099994,59.224188544000135],[-151.3491918609999,59.24209219],[-151.37291419199985,59.24652741100009],[-151.38910885299993,59.25531647300015],[-151.39683997299994,59.25828685100008],[-151.4096166659999,59.26007721600015],[-151.41783606699988,59.25910065300017],[-151.5012914699999,59.23468659100003],[-151.51976477799988,59.224188544000135],[-151.5080460279999,59.221177476000044],[-151.48570716099988,59.21954987200003],[-151.47260494699992,59.21670156500009],[-151.4890844389999,59.19965241100011],[-151.51671301999988,59.196763414000095],[-151.57530676999994,59.20368073100009],[-151.60126705599993,59.20172760600014],[-151.61396236899992,59.19749583500014],[-151.61595618399994,59.18939850500003],[-151.60383053299995,59.18203359600001],[-151.57628333199992,59.18821849199998],[-151.5681046209999,59.17576732000007],[-151.68281002499987,59.163031317],[-151.74152584499987,59.167141018000144],[-151.76679439999992,59.19310130400005],[-151.76036536399994,59.209702867000104],[-151.75861568899992,59.21971263199999],[-151.76337643099993,59.224188544000135],[-151.84028072799993,59.213446356000034],[-151.8679093089999,59.21369049700008],[-151.8931371739999,59.220648505000085],[-151.9107559889999,59.23786041900008],[-151.8948461579999,59.23810455900003],[-151.8866674469999,59.241603908000044],[-151.88715572799987,59.248358466000134],[-151.89708411399988,59.25828685100008],[-151.9064835279999,59.26146067900013],[-151.9449356759999,59.265082098000086],[-151.9617813789999,59.270656643],[-151.97716223899994,59.27936432500009],[-151.98668372299994,59.29279205900018],[-151.98582923099994,59.312933661000116],[-151.97642981699988,59.32542552300013],[-151.95946204299995,59.337347723000065],[-151.9250382149999,59.353908596000124],[-151.8965958319999,59.35956452000012],[-151.8151749339999,59.353908596000124],[-151.83539791599995,59.36758047100007],[-151.88129635299993,59.38532135600015],[-151.90021725199995,59.398871161000116],[-151.89403235599988,59.4128278670001],[-151.86420650899987,59.426906643000116],[-151.80772864499988,59.44383372600011],[-151.7482804029999,59.44562409100011],[-151.71825110599985,59.450873114],[-151.70531165299985,59.46686432500009],[-151.68907630099991,59.48029205900018],[-151.6518448559999,59.48590729400008],[-151.46821041599992,59.47809479400008],[-151.4415177069999,59.46686432500009],[-151.42316646999996,59.453924872000094],[-151.40062415299988,59.445135809000114],[-151.38219153599994,59.444769598],[-151.37633216099988,59.45697663000009],[-151.39000403599994,59.473781643000095],[-151.44041907499985,59.4936384140001],[-151.4514867829999,59.50812409100015],[-151.44147701699987,59.53221263200008],[-151.41746985599988,59.546291408000016],[-151.36274166599992,59.55996328300014],[-151.34125729099992,59.56118398600016],[-151.29169674399986,59.55609772300015],[-151.2733048169999,59.55996328300014],[-151.26630611899995,59.57119375200015],[-151.2652074859999,59.58466217700014],[-151.25885982999986,59.59613678600009],[-151.23607337099995,59.60089752800017],[-151.19477291599992,59.597601630000135],[-151.17414303299986,59.60008372600008],[-151.17402096299992,59.611151434000085],[-151.20026607999995,59.63178131700012],[-151.20136471299986,59.641180731000155],[-151.18455969999988,59.655503648000135],[-151.17096920499992,59.66181061400008],[-151.14179439999987,59.67035553600001],[-151.1299535799999,59.67666250200012],[-151.1204320949999,59.68716054900001],[-151.1074112619999,59.71067942900009],[-151.0989477199999,59.72068919500005],[-151.0751440089999,59.737697658],[-150.99278723899988,59.779038804000045],[-151.02350826699995,59.79555898600004],[-151.06627356699994,59.79677969000015],[-151.10912024599992,59.786525783000016],[-151.15448971299992,59.759955145000056],[-151.2125138009999,59.74494049700005],[-151.38133704299992,59.674953518000116],[-151.41730709499987,59.66982656500012],[-151.43097896999996,59.666205145000056],[-151.44953365799995,59.65741608299999],[-151.4657690089999,59.64630768400015],[-151.47260494699992,59.63568756700011],[-151.46467037699995,59.62592194200009],[-151.44635982999986,59.618150132],[-151.4303686189999,59.612494208],[-151.42572994699995,59.61151764500011],[-151.41051184799989,59.607733466000084],[-151.4306534499999,59.61180247600005],[-151.74693762899994,59.682847398000106],[-151.7808324859999,59.692206122000144],[-151.8313695949999,59.71621328300011],[-151.87177486899992,59.749457098],[-151.88288326699993,59.786525783000016],[-151.87706458199992,59.79677969000015],[-151.8487035799999,59.82001373900005],[-151.84186764199995,59.83128489800005],[-151.83141028599985,59.85545482000008],[-151.73912512899992,59.98822663000014],[-151.7332657539999,60.008368231000176],[-151.7249649729999,60.02488841400005],[-151.70604407499988,60.041693427000055],[-151.46544348899988,60.187689520000085],[-151.42963619699995,60.216376044000064],[-151.40326900899996,60.25242747599999],[-151.39061438699989,60.29979075700014],[-151.39317786399988,60.34442780200003],[-151.3902481759999,60.35944245000003],[-151.37604732999995,60.37181224200007],[-151.36200924399992,60.377752997000094],[-151.34850012899994,60.38092682500014],[-151.3179825509999,60.38239166900003],[-151.30597896999987,60.38694896000005],[-151.30186926999994,60.39801666900011],[-151.3006485669999,60.42332591400004],[-151.28294837099992,60.487860419000114],[-151.2807511059999,60.508978583000115],[-151.28278561099992,60.53705475500011],[-151.2894994779999,60.55076732000005],[-151.3217667309999,60.57416413000014],[-151.3338516919999,60.59218984600007],[-151.3549698559999,60.63963450699999],[-151.37779700399994,60.658270575000174],[-151.39586341099985,60.678941147999986],[-151.4117325509999,60.70209381700012],[-151.41730709499987,60.718166408000016],[-151.39692135299993,60.73802317900011],[-151.32380123599995,60.739081122000165],[-151.29755611899992,60.74860260600015],[-151.2760717439999,60.767279364000146],[-151.25300045499995,60.775336005000085],[-151.07148189999992,60.78534577000006],[-151.04369055899988,60.79633209800012],[-151.02607174399995,60.81004466400004],[-150.7632543609999,60.92670319200014],[-150.60326087099992,60.97850169500008],[-150.45250403599988,61.03424713700014],[-150.38703365799995,61.04726797100015],[-150.33482825399992,61.0328636740001],[-150.32221432199992,61.01459381700003],[-150.31000729099986,60.989447333000115],[-150.29389400899987,60.967271226000086],[-150.2584936189999,60.9545759140001],[-150.23652096299986,60.940415757000075],[-150.22529049399986,60.9372419290001],[-150.0437719389999,60.91681549700005],[-149.97785396999993,60.93878815300014],[-149.93077551999994,60.94472890800007],[-149.8501684239999,60.973863023000135],[-149.82404537699995,60.97821686400011],[-149.7529190749999,60.973822333000136],[-149.7170304029999,60.967515367000104],[-149.68309485599994,60.957709052000084],[-149.6386612619999,60.93964264500006],[-149.62169348899988,60.9372419290001],[-149.52611243399988,60.9372419290001],[-149.5070694649999,60.93402741100006],[-149.46727454299992,60.91990794500013],[-149.12608801999983,60.88361237200002],[-149.10358639199993,60.878078518],[-149.09068762899994,60.872056382],[-149.07811438699986,60.86375560100011],[-149.05903072799987,60.85635000200012],[-149.0396215489999,60.85244375200013],[-149.02582760299995,60.854681708000115],[-149.06086178299995,60.897284247000144],[-149.1116430329999,60.92861562700001],[-149.16930091099988,60.94696686400005],[-149.22504635299995,60.95087311400006],[-149.33405514199993,60.93032461100002],[-149.35789954299992,60.933823960000026],[-149.37804114499994,60.94696686400005],[-149.48371334499987,60.982407945000084],[-149.51634680899994,60.98859284100003],[-149.6179906889999,60.99461497600013],[-149.7831518219999,61.045355536],[-149.82917232999995,61.073431708],[-149.90904700399986,61.09430573100014],[-150.06733150899993,61.155747789000046],[-150.0573624339999,61.172308661000116],[-150.03819739499986,61.19306061400003],[-150.01561438699989,61.20636627800003],[-149.9953100249999,61.20075104400002],[-149.97594153599988,61.19847239800004],[-149.94481360599988,61.20770905200012],[-149.9141332669999,61.22134023600016],[-149.89598548099985,61.23208242400007],[-149.8899633449999,61.24042389500015],[-149.8755590489999,61.2730980490001],[-149.86888587099995,61.28253815300009],[-149.81065833199995,61.33136627800009],[-149.79674231699994,61.33901601800012],[-149.78168697799993,61.34072500200013],[-149.7665909499999,61.340236721000146],[-149.75263424399995,61.3412946640001],[-149.73058020699986,61.35187409100014],[-149.70421301999986,61.384222723000065],[-149.68342037699986,61.39935944200006],[-149.6557104159999,61.40900299700003],[-149.32001705599987,61.47915273600011],[-149.27953040299994,61.48163483300011],[-149.26105709499987,61.48663971600017],[-149.24555416599992,61.49896881700012],[-149.27855383999986,61.506537177000055],[-149.4168595039999,61.49896881700012],[-149.40318762899994,61.50580475500015],[-149.42817135299993,61.513169664000124],[-149.6486710279999,61.48818594],[-149.75739498599995,61.45335521000008],[-149.79560299399992,61.42450592700005],[-149.8146459629999,61.41421133000012],[-149.8618871739999,61.39594147300006],[-149.87970943899995,61.38613515800013],[-149.89740963399993,61.37128327000006],[-149.9110001289999,61.35268789300006],[-149.9197485019999,61.31037018400015],[-149.9278458319999,61.28929271000013],[-149.93891354099995,61.2712263040001],[-149.95063229099992,61.259426174000154],[-149.98375403599985,61.24632396],[-150.28050696499992,61.25995514500012],[-150.29389400899987,61.265611070000105],[-150.30565344999988,61.27521393400009],[-150.30976314999992,61.28143952000006],[-150.31440182199995,61.281642971],[-150.3279923169999,61.2730980490001],[-150.32469641799986,61.27216217700002],[-150.32319088399993,61.26626211100007],[-150.3240860669999,61.25869375200004],[-150.3279923169999,61.252590236000124],[-150.33458411399988,61.25092194200012],[-150.4505509109999,61.252590236000124],[-150.4996231759999,61.26166413000014],[-150.54173743399994,61.28656647300007],[-150.56065833199986,61.323675848000086],[-150.5402725899999,61.36928945500012],[-150.56309973899988,61.36542389500011],[-150.58710689999992,61.351996161000116],[-150.60053463399993,61.332424221000146],[-150.58495032499994,61.294623114],[-150.60423743399988,61.29132721600016],[-150.6336156889999,61.29865143400017],[-150.65697180899986,61.31403229400011],[-150.69127356699994,61.27753327000006],[-150.73090572799995,61.25397370000012],[-150.89155025899987,61.214300848],[-150.9477432929999,61.21100495000014],[-150.95759029899986,61.20791250200007],[-150.97529049399992,61.19424062700013],[-150.9890844389999,61.19110748900006],[-151.00153561099992,61.19000885600011],[-151.02855383999986,61.18256256700014],[-151.03990637899994,61.17743561400012],[-151.06090247299989,61.16327545799999],[-151.12816321499992,61.094183661],[-151.14037024599992,61.07819245000008],[-151.15477454299986,61.064439194999984],[-151.17711341099988,61.053941148000106],[-151.2436417309999,61.03925202],[-151.31086178299995,61.0328636740001],[-151.32359778599988,61.02968984600004],[-151.3495580719999,61.01557038],[-151.36237545499992,61.012355861000124],[-151.43781490799986,61.019842841000084],[-151.4761449859999,61.01703522300015],[-151.52245032499988,61.00861237200008],[-151.56676184799994,60.99453359600015],[-151.61278235599988,60.965277411000116],[-151.64622962099992,60.950995184000035],[-151.68122311099995,60.928656317],[-151.7250463529999,60.92446523600007],[-151.74693762899994,60.91681549700005],[-151.75214596299992,60.89813873900005],[-151.79527747299994,60.86896393400012],[-151.80772864499988,60.84788646],[-151.8062638009999,60.837469794000114],[-151.8010147779999,60.82831452000013],[-151.71776282499988,60.74306875200015],[-151.71137447799995,60.725734768000066],[-151.74628658799986,60.718166408000016],[-151.77973385299993,60.72406647300016],[-151.84068762899994,60.751125393000095],[-151.8698217439999,60.759100653000026],[-151.8677465489999,60.75462474199998],[-151.86436926999994,60.743312893000095],[-151.8623754549999,60.73867422100006],[-151.91010494699987,60.73110586100001],[-151.9315079419999,60.725287177000055],[-151.96430416599992,60.70343659100002],[-152.01305091099994,60.68073151200018],[-152.03119869699992,60.67658112200003],[-152.04454505099994,60.675726630000135],[-152.05138098899988,60.673163153000026],[-152.0615942049999,60.66290924700009],[-152.06273352799994,60.66046784100016],[-152.10130774599992,60.61383698100014],[-152.10936438699994,60.60830312700012],[-152.12096106699988,60.603583075000024],[-152.14313717399992,60.597560940000115],[-152.1712540359999,60.58087799700008],[-152.23289954299986,60.559881903000054],[-152.23290106700415,60.559880906006704],[-152.31550045499995,60.50584544500005],[-152.3295792309999,60.492499091000056],[-152.34007727799985,60.47614166900003],[-152.3433731759999,60.45742422100015],[-152.3359268869999,60.436957098000086],[-152.31757564999987,60.42055898600008],[-152.2945043609999,60.412787177],[-152.24592037699992,60.40216705900003],[-152.24592037699992,60.39598216399998],[-152.36811275899987,60.357855536],[-152.3974096339999,60.33392975500015],[-152.4003800119999,60.326808986000074],[-152.4039200509999,60.309800523000106],[-152.4076635409999,60.30320872600005],[-152.4159643219999,60.29775625200001],[-152.4677628249999,60.282294012000186],[-152.51264400899993,60.27460358300006],[-152.53453528599985,60.26569245000003],[-152.59630286399988,60.228461005000135],[-152.61615963399996,60.22426992400002],[-152.63398189999992,60.229885158000016],[-152.6518448559999,60.238959052000105],[-152.6717423169999,60.24518463700015],[-152.80553137899994,60.2350934920001],[-152.8498429029999,60.24518463700015],[-152.84089107999995,60.256048895000056],[-152.82494055899994,60.256577867000125],[-152.80601966099994,60.25299713700015],[-152.78783118399994,60.25141022300012],[-152.78783118399994,60.258856512000094],[-152.83954830599987,60.268377997000115],[-152.8635961579999,60.26581452],[-152.89081783799992,60.25141022300012],[-152.89854895699992,60.275376694999984],[-152.89781653599988,60.29515208500011],[-152.90558834499987,60.308539130000106],[-152.93858801999994,60.31346263200008],[-153.01219641799992,60.31346263200008],[-153.04845130099994,60.30963776200016],[-153.0826309889999,60.29979075700014],[-153.1054581369999,60.28558991100011],[-153.10362708199995,60.277085679],[-153.0869848299999,60.27732982000014],[-153.06525631399995,60.289536851000115],[-153.03795325399994,60.299383856000034],[-152.99689693899995,60.30084870000008],[-152.9566137359999,60.293890692],[-152.93183346299992,60.278713283000016],[-152.92975826699987,60.27024974200007],[-152.9334610669999,60.25311920800014],[-152.93183346299992,60.24518463700015],[-152.9227188789999,60.23720937700001],[-152.89740963399987,60.22736237200009],[-152.86266028599994,60.20770905200014],[-152.76732337099986,60.19061920799999],[-152.74286861899992,60.17470937700007],[-152.73253333199992,60.17011139500015],[-152.72431393099993,60.169338283000044],[-152.70653235599985,60.17121002800008],[-152.69843502499992,60.17011139500015],[-152.6830541659999,60.162827867000125],[-152.6766251289999,60.15794505400005],[-152.6816300119999,60.155829169000135],[-152.68626868399994,60.151597398000135],[-152.68443762899986,60.142482815000115],[-152.6778051419999,60.13336823100015],[-152.66795813699989,60.12909577000012],[-152.65790768099993,60.126369533000066],[-152.59028072799995,60.09223053600005],[-152.57856197799987,60.08120351800012],[-152.57860266799986,60.07013580900018],[-152.5979711579999,60.04266998900014],[-152.6109513009999,60.0333519550001],[-152.63011633999992,60.03229401200003],[-152.63011633999992,60.02545807500003],[-152.62633216099988,60.02415599200013],[-152.61713619699992,60.019273179000045],[-152.6647843089999,59.994696356000034],[-152.67792721299986,59.9845238300001],[-152.69013424399995,59.96698639500015],[-152.7045792309999,59.93065013200005],[-152.7188614569999,59.91559479400014],[-152.7379044259999,59.90839264500003],[-152.8082983059999,59.89630768400012],[-152.8311661449999,59.887396552000084],[-152.84288489499988,59.884222723],[-152.8566788399999,59.882066148000106],[-152.90546627499992,59.88621653900004],[-152.91441809799994,59.885484117000104],[-152.93480383999992,59.879624742000075],[-153.02118893099993,59.888902085000105],[-153.04600989499988,59.886664130000135],[-153.0919083319999,59.876898505],[-153.22972571499983,59.86847565300014],[-153.24335689999992,59.86245351800015],[-153.2620336579999,59.84845612200009],[-153.27916419199994,59.832342841000106],[-153.28807532499988,59.82001373900005],[-153.25654049399986,59.82123444200009],[-153.22642981699994,59.82868073100014],[-153.19640051999988,59.83270905200011],[-153.15082760299993,59.819647528000154],[-153.13768469999985,59.82147858300011],[-153.12523352799985,59.82526276200015],[-153.05927486899992,59.83364492400001],[-153.0138647129999,59.832342841000106],[-153.00568600199992,59.82705312700013],[-153.00007076699993,59.813177802000055],[-153.00007076699993,59.80036041900011],[-153.00523841099994,59.79271067899999],[-153.01134192599991,59.785956122000144],[-153.01923580599987,59.762844143],[-153.04442298099985,59.72235748900006],[-153.05528723899994,59.71015045799999],[-153.07929439999987,59.70136139500012],[-153.13947506399995,59.68691640800007],[-153.15156002499992,59.67324453300013],[-153.16624915299985,59.664007880000085],[-153.19981848899988,59.654201565000115],[-153.2366430329999,59.647894598000015],[-153.2608129549999,59.649359442000055],[-153.26768958199986,59.65668366100005],[-153.2783096999999,59.67690664300009],[-153.28807532499988,59.682847398000106],[-153.3074438139999,59.68183014500015],[-153.3159887359999,59.67206452],[-153.31480872299986,59.66087474200002],[-153.30512447799993,59.655503648000135],[-153.30101477799985,59.652411200000145],[-153.30646725199992,59.64557526200004],[-153.31720943899992,59.6388207050001],[-153.32905025899987,59.63568756700011],[-153.34601803299995,59.636908270000156],[-153.39110266799992,59.649359442000055],[-153.39911861899986,59.65045807500012],[-153.4252416659999,59.649359442000055],[-153.4252416659999,59.655503648000135],[-153.40912838399996,59.66356028899999],[-153.39903723899988,59.67210521],[-153.35895748599987,59.720770575000024],[-153.34540768099987,59.72553131700012],[-153.32221432199987,59.71759674700017],[-153.3363744779999,59.73053620000017],[-153.38145911399985,59.74140045800005],[-153.45258541599992,59.792669989],[-153.45152747299994,59.775458075000174],[-153.45445716099988,59.76154205900009],[-153.4539281889999,59.74689362200009],[-153.44261633999992,59.72748444200009],[-153.44542395699995,59.71678294500004],[-153.46544348899994,59.67462799700012],[-153.47301184799989,59.66233958500005],[-153.49071204299986,59.650091864],[-153.51317298099988,59.64179108300011],[-153.53709876199994,59.63715241100008],[-153.55903072799995,59.63568756700011],[-153.57323157499985,59.64215729400002],[-153.5986221999999,59.67275625200013],[-153.61082923099988,59.682847398000106],[-153.60411536399994,59.68740469000014],[-153.60118567599991,59.688788153000026],[-153.5965470039999,59.68968333500011],[-153.5965470039999,59.697170315],[-153.62267005099994,59.69521719000014],[-153.62596594999988,59.68475983300006],[-153.6214493479999,59.67011139500006],[-153.62389075399994,59.655503648000135],[-153.64293372299994,59.648342190000015],[-153.69562740799995,59.644680080000136],[-153.70641028599988,59.63198476800009],[-153.62043209499993,59.62824127800014],[-153.6121720039999,59.62669505400011],[-153.57038326699995,59.60911692900008],[-153.56602942599994,59.60927969000012],[-153.56928463399987,59.59467194200011],[-153.58641516799992,59.56745026200013],[-153.6219376289999,59.555243231000034],[-153.7918188139999,59.54291413],[-153.81187903599985,59.556138414000124],[-153.83360755099991,59.55963776200012],[-153.8557836579999,59.555609442000055],[-153.87714596299995,59.546291408000016],[-153.83991451699995,59.54437897300015],[-153.81151282499994,59.53827545800006],[-153.78693600199992,59.52753327000015],[-153.74107825399994,59.49774811400014],[-153.72577877499987,59.482245184000035],[-153.72472083199992,59.466050522999986],[-153.7473852199999,59.45010000200006],[-153.7514542309999,59.44025299700014],[-153.78022213399987,59.433986721],[-153.84357662699992,59.42963288000012],[-153.89659583199992,59.43219635600012],[-153.91246497299989,59.42963288000012],[-153.9214981759999,59.42426178600005],[-153.9357397129999,59.40839264500013],[-153.94599361899992,59.40228913000014],[-154.02794348899994,59.388617255],[-154.03510494699987,59.38934967700013],[-154.04755611899992,59.3946800800001],[-154.0558568999999,59.39545319200011],[-154.06078040299994,59.393255927000105],[-154.07152258999986,59.38393789300009],[-154.07636471299992,59.38117096600003],[-154.0947159499999,59.37885163000005],[-154.1452530589999,59.38117096600003],[-154.1116430329999,59.36005280200012],[-154.0662328769999,59.348334052000105],[-154.02265377499987,59.35146719],[-153.9944555329999,59.37494538000006],[-153.98485266799992,59.37055084800009],[-153.9746801419999,59.36810944200014],[-153.9641820949999,59.367254950000145],[-153.95343990799986,59.36815013200014],[-153.95343990799986,59.3613141950001],[-154.0272110669999,59.34170156500006],[-154.1119278639999,59.304877020000085],[-154.12775631399995,59.29417552300005],[-154.14020748599987,59.28168366100014],[-154.1452530589999,59.26821523600017],[-154.1498917309999,59.23533763200008],[-154.1443578769999,59.22406647300009],[-154.1235245429999,59.224188544000135],[-154.13084876199989,59.20815664300006],[-154.14631100199995,59.20254140800016],[-154.1862279939999,59.20368073100009],[-154.1794327459999,59.18353913000005],[-154.19749915299988,59.17316315300015],[-154.22529049399984,59.16937897300013],[-154.24767005099986,59.16889069200015],[-154.22846432199992,59.162665106000084],[-154.22032630099994,59.161444403000175],[-154.2294815749999,59.155707098],[-154.2394913399999,59.15159739800004],[-154.25011145699995,59.14923737200009],[-154.26130123599995,59.148423569999984],[-154.25287838399987,59.130519924000126],[-154.23505611899992,59.12759023600002],[-154.19306393099993,59.13475169500004],[-154.17731686099987,59.129787502],[-154.17194576699993,59.118597723000086],[-154.17699133999994,59.107123114000146],[-154.1924535799999,59.101263739],[-154.1829320949999,59.095526434000035],[-154.17878170499995,59.09381745000003],[-154.17878170499995,59.086981512000094],[-154.1983536449999,59.07697174700003],[-154.19981848899988,59.055853583000115],[-154.18732662699986,59.034979559000035],[-154.1651098299999,59.02558014500012],[-154.14037024599992,59.031154690000115],[-154.1210831369999,59.04437897300006],[-154.10322018099993,59.060248114],[-154.0825902989999,59.07330963700015],[-154.0219620429999,59.083929755000106],[-153.89476477799985,59.06561920800005],[-153.83613033799992,59.06655508000013],[-153.81586666599992,59.07245514500006],[-153.8080948559999,59.07379791900014],[-153.71153723899988,59.07074616100006],[-153.68879146999993,59.063666083],[-153.66869055899988,59.05267975500014],[-153.6518041659999,59.0385602890001],[-153.63288326699987,59.01732005400014],[-153.62389075399994,59.01129791900002],[-153.5830785799999,59.00055573100011],[-153.5727026029999,58.99481842700014],[-153.56090247299994,58.99070872599999],[-153.5415746739999,58.989406643000095],[-153.52232825399986,58.99070872599999],[-153.5106095039999,58.99481842700014],[-153.49742591099994,59.00348541900002],[-153.4871720039999,59.00250885600015],[-153.4668676419999,58.99140045800011],[-153.42723548099985,58.98118724199999],[-153.4150284499999,58.97402578300013],[-153.38068600199995,58.94065989800008],[-153.36998450399992,58.936183986000025],[-153.3393041659999,58.936183986000025],[-153.33161373599987,58.93378327000006],[-153.33226477799994,58.92820872600005],[-153.33564205599995,58.921454169000114],[-153.33588619699992,58.91571686400014],[-153.32262122299989,58.894476630000064],[-153.31285559799994,58.88906484600002],[-153.29491126199986,58.88837311400007],[-153.29491126199986,58.881537177000055],[-153.30907141799992,58.877346096000124],[-153.36314856699988,58.87409088700018],[-153.34996497299994,58.868353583],[-153.3342992829999,58.86611562700004],[-153.27082271999996,58.871405341000084],[-153.25947018099987,58.86888255399999],[-153.26414954299992,58.85736725500014],[-153.28913326699993,58.844142971],[-153.33836829299992,58.855047919000086],[-153.36314856699988,58.847398179000045],[-153.37755286399988,58.829046942],[-153.39521236899984,58.78217194200015],[-153.40819251199986,58.761135158],[-153.42467200399986,58.744370835],[-153.43883216099988,58.73358795799999],[-153.52765865799992,58.69660065300014],[-153.56025143099987,58.69476959800007],[-153.57612057199992,58.690863348000086],[-153.58287512899994,58.67918528899999],[-153.59028072799993,58.65859609600015],[-153.60875403599988,58.64443594000012],[-153.63312740799992,58.63495514500011],[-153.69066321499992,58.621568101000115],[-153.79552161399994,58.613999742000075],[-153.86375891799995,58.61981842700011],[-153.8994034499999,58.616685289000046],[-153.91246497299989,58.60032786700013],[-153.9102270169999,58.592718817],[-153.90607662699992,58.588120835000055],[-153.8997696609999,58.58624909100008],[-153.90428626199986,58.57990143400014],[-153.9127091139999,58.56850820500009],[-153.91889400899987,58.55609772300006],[-153.9296361969999,58.540838934000085],[-153.92951412699992,58.53790924700017],[-153.93085689999992,58.535630601000115],[-153.9391983709999,58.53204987200002],[-153.94627844999994,58.53266022300009],[-153.95433508999986,58.53587474200004],[-153.9633276029999,58.53729889500012],[-153.9733373689999,58.53204987200002],[-153.9612524079999,58.52850983300006],[-153.93236243399986,58.523993231000084],[-153.92552649599995,58.51845937700006],[-153.93012447799987,58.51154205900018],[-153.94237219999982,58.502915757000075],[-153.95665442599994,58.49526601800015],[-153.96711178299992,58.49111562700001],[-154.0013321609999,58.49111562700001],[-154.0423477859999,58.49607982000005],[-154.08165442599991,58.49518463700014],[-154.11046301999994,58.477484442000055],[-154.0964249339999,58.46771881700012],[-154.08006751199989,58.43671295799999],[-154.0689184239999,58.42218659100015],[-154.0670873689999,58.41742584800006],[-154.06895911399988,58.41303131700009],[-154.0692032539999,58.409857489000025],[-154.06236731699988,58.408596096],[-154.03168697799984,58.408596096],[-154.0207413399999,58.4042829450001],[-154.00804602799985,58.39496491100006],[-154.00023352799985,58.38556549700002],[-154.00434322799993,58.381293036000116],[-154.0152481759999,58.379543361000046],[-154.06187903599988,58.36456940300009],[-154.08857174399992,58.36074453300007],[-154.19005286399994,58.36074453300007],[-154.19684811099995,58.3549665390001],[-154.1910294259999,58.352118231000176],[-154.1948136059999,58.346584377000156],[-154.20665442599986,58.33966705900014],[-154.21760006399995,58.33661530200005],[-154.2433975899999,58.33462148600001],[-154.30011959499996,58.32037995000012],[-154.31871497299986,58.31073639500014],[-154.32274329299992,58.29873281500012],[-154.36436926999988,58.28510163000009],[-154.3557836579999,58.2794457050001],[-154.3513891269999,58.27138906500015],[-154.35350501199989,58.26333242400005],[-154.36436926999988,58.25775788000012],[-154.3530981109999,58.25543854400014],[-154.34382076699995,58.25946686400011],[-154.33442135299993,58.26601797100001],[-154.32274329299992,58.27138906500015],[-154.30833899599995,58.27342357],[-154.2813614569999,58.2741559920001],[-154.26813717399986,58.27826569200006],[-154.27196204299986,58.29564036700004],[-154.25352942599991,58.29987213700016],[-154.20665442599986,58.29873281500012],[-154.20299231699994,58.30206940300015],[-154.1992081369999,58.30829498900011],[-154.19404049399992,58.314846096],[-154.1862279939999,58.31915924700009],[-154.17137610599985,58.3217634140001],[-154.16539466099994,58.31915924700009],[-154.16112219999988,58.313137111000096],[-154.12132727799994,58.279730536000116],[-154.1517227859999,58.27098216400005],[-154.2060440749999,58.26756419500005],[-154.24767005099986,58.25775788000012],[-154.1876114569999,58.25067780200005],[-154.16539466099994,58.23940664300015],[-154.16572018099995,58.216782945],[-154.1880590489999,58.198187567],[-154.22118079299992,58.19139232000007],[-154.25560462099986,58.19399648600016],[-154.2818090489999,58.20311107000004],[-154.28925533799986,58.20001862200017],[-154.30231686099995,58.19627513200014],[-154.28754635299987,58.18158600500014],[-154.23578854099992,58.155340887000115],[-154.22716223899994,58.141058661000116],[-154.2467748689999,58.126410223],[-154.28034420499995,58.13304271000008],[-154.3370255199999,58.162095445000055],[-154.3491104809999,58.145086981000176],[-154.34544837099986,58.13336823100009],[-154.3357641269999,58.12221914300006],[-154.32957923099994,58.106878973000114],[-154.33600826699995,58.085394598],[-154.35277258999986,58.08222077000013],[-154.37006588399987,58.09064362200009],[-154.38646399599983,58.11762116100014],[-154.40599524599995,58.127997137000044],[-154.42780514199987,58.136419989],[-154.44318600199995,58.144476630000106],[-154.44823157499988,58.15143463700012],[-154.4512833319999,58.160142320000105],[-154.45274817599994,58.169623114],[-154.45311438699994,58.17890045800006],[-154.45836341099994,58.18773021000012],[-154.47052975199992,58.19424062700001],[-154.49408932199987,58.20311107000004],[-154.46772213399987,58.147040106000034],[-154.46039791599986,58.115057684000035],[-154.46983801999988,58.08982982000007],[-154.49913489499988,58.08779531500014],[-154.5770157539999,58.125718492000075],[-154.61078854099986,58.12055084800006],[-154.6059057279999,58.11375560100013],[-154.55341549399992,58.08307526200003],[-154.55304928299992,58.079575914000046],[-154.54564368399994,58.071112372000115],[-154.55195064999984,58.052313544000135],[-154.56627356699988,58.03351471600011],[-154.58311926999988,58.02496979400009],[-154.63121497299994,58.031195380000135],[-154.6447647779999,58.035467841000134],[-154.64830481699985,58.045477606000034],[-154.64838619699992,58.05703359600007],[-154.65172278599988,58.06598541900008],[-154.66991126199989,58.072333075000024],[-154.69273841099988,58.06891510600013],[-154.7156876289999,58.05890534100002],[-154.73424231699985,58.045477606000034],[-154.73790442599994,58.03945547100012],[-154.74140377499992,58.02509186400006],[-154.74730383999986,58.01752350500003],[-154.75556393099995,58.01260000200013],[-154.76691646999993,58.00824616100006],[-154.77887936099995,58.005072333],[-154.78888912699995,58.00389232000007],[-154.81041419199985,58.008124091000084],[-154.85627193899995,58.02692291900002],[-154.88105221299992,58.031195380000135],[-154.97386633999992,58.031195380000135],[-155.02314205599993,58.02558014500014],[-155.04015051999988,58.01723867400007],[-155.02851314999987,58.00389232000007],[-155.0449926419999,57.976385809000035],[-155.0634659499999,57.962388414000074],[-155.08861243399988,57.95742422100001],[-155.1253149079999,57.95673248900009],[-155.07673092399995,57.91616445500016],[-155.0686742829999,57.897365627],[-155.09740149599992,57.88031647300006],[-155.13792883999986,57.87311432500003],[-155.25507564999995,57.88031647300006],[-155.22443600199995,57.85814036699999],[-155.22028561099987,57.85028717700011],[-155.22724361899992,57.84210846600012],[-155.24339758999986,57.83685944200012],[-155.2752172519999,57.83319733300005],[-155.3082169259999,57.83881256700006],[-155.32551021999996,57.839544989],[-155.3369848299999,57.83319733300005],[-155.33466549399992,57.82648346600003],[-155.30968176999994,57.79840729400011],[-155.34565182199987,57.80532461100001],[-155.35810299399992,57.805243231000034],[-155.35810299399992,57.79840729400011],[-155.3361710279999,57.790716864],[-155.31208248599987,57.775213934000185],[-155.29914303299995,57.75682200700013],[-155.3102921209999,57.74042389500013],[-155.32127844999994,57.73655833500011],[-155.3511856759999,57.730536200000024],[-155.37543697799993,57.728338934000035],[-155.3853653639999,57.72614166900005],[-155.3943985669999,57.72573476800012],[-155.4058731759999,57.72955963700006],[-155.43342037699986,57.745794989],[-155.49010169199988,57.76288483300014],[-155.50487219999985,57.764308986000025],[-155.5293676419999,57.77236562700013],[-155.55109615799995,57.78803131700011],[-155.5747777989999,57.79881419500011],[-155.60509192599986,57.79222239800004],[-155.6174210279999,57.78066640800002],[-155.62816321499992,57.76288483300014],[-155.63573157499985,57.74335358300006],[-155.6386205719999,57.72646719000006],[-155.62791907499988,57.708156643],[-155.58861243399986,57.689642645000085],[-155.59080969999985,57.675523179000045],[-155.6118057929999,57.66583893400009],[-155.70319576699995,57.64826080900014],[-155.7618302069999,57.64826080900014],[-155.77143307199987,57.644720770000085],[-155.76008053299986,57.637152411000116],[-155.7342016269999,57.627142645000156],[-155.73261471299992,57.62164948100011],[-155.73448645699992,57.61595286700005],[-155.7381078769999,57.61102936400008],[-155.74164791599995,57.60732656500012],[-155.73554439999987,57.594671942000055],[-155.73839270699986,57.57200755400011],[-155.7342016269999,57.55882396000006],[-155.74164791599995,57.55206940300004],[-155.7932022779999,57.54458242400015],[-155.80573482999992,57.54791901200018],[-155.8101293609999,57.55573151200018],[-155.8118383449999,57.56492747600006],[-155.81615149599992,57.572495835],[-155.82587643099995,57.579250393000116],[-155.83153235599985,57.579575914000074],[-155.8477677069999,57.56256745000008],[-155.86180579299995,57.55890534100014],[-155.90404212099986,57.55654531500009],[-155.91295325399992,57.548285223],[-155.9241837229999,57.53139883000002],[-155.9500626289999,57.534369208000115],[-155.9787084629999,57.54791901200018],[-156.02045650899993,57.576808986000096],[-156.0340470039999,57.57143789300013],[-156.0340063139999,57.555609442],[-156.01537024599992,57.53839752800008],[-156.01537024599992,57.53156159100017],[-156.08214270699983,57.537176825000174],[-156.10472571499992,57.53156159100017],[-156.09125729099995,57.519435940000065],[-156.05113684799994,57.51788971600003],[-156.04271399599986,57.50731028899999],[-156.04291744699992,57.489691473000065],[-156.04149329299986,57.47483958499999],[-156.03551184799994,57.46356842700003],[-156.0222061839999,57.45644765800016],[-156.06065833199995,57.43024323100012],[-156.11274166599986,57.447170315],[-156.1675919259999,57.47361888200008],[-156.21458899599992,57.47626373900005],[-156.22187252499992,57.468329169000114],[-156.22606360599985,57.45685455900015],[-156.22826087099992,57.442206122000144],[-156.23875891799992,57.43695709800007],[-156.2682592439999,57.42963288000005],[-156.30882727799988,57.42487213700014],[-156.33885657499985,57.41543203300013],[-156.47162838399993,57.33978913000006],[-156.4937231109999,57.338324286],[-156.52074133999986,57.333075262000094],[-156.54462643099993,57.322699286],[-156.5572403639999,57.305609442000055],[-156.55463619699992,57.281683661],[-156.5364884109999,57.27912018400009],[-156.39195716099985,57.31484609600012],[-156.35484778599985,57.31134674700004],[-156.34434973899988,57.31183502800012],[-156.34833736899992,57.30048248900015],[-156.3399552069999,57.28530508000016],[-156.34434973899988,57.270900783000094],[-156.34919186099995,57.27041250200001],[-156.35029049399992,57.272162177],[-156.35004635299995,57.27496979400014],[-156.3511856759999,57.27765534100003],[-156.35737057199987,57.25214264500012],[-156.38402258999992,57.24054596600003],[-156.44737708199995,57.229925848000065],[-156.44737708199995,57.22308991100006],[-156.43089758999992,57.22272370000006],[-156.41059322799993,57.218654690000086],[-156.39325924399995,57.210638739000146],[-156.38593502499992,57.198879299000154],[-156.38097083199986,57.19367096600016],[-156.3581029939999,57.190497137000094],[-156.3511856759999,57.188299872000115],[-156.3460180329999,57.17780182500003],[-156.3490697909999,57.17332591399998],[-156.35484778599985,57.17035553600006],[-156.3580216139999,57.164740302000055],[-156.37592525899987,57.14325592700014],[-156.46064205599995,57.12563711100002],[-156.48835201699995,57.11383698100003],[-156.47057044199985,57.10150788],[-156.4536026679999,57.08649323100015],[-156.4708145819999,57.07916901200015],[-156.48180091099988,57.086004950000174],[-156.4890030589999,57.096421617000075],[-156.4951879549999,57.09955475500014],[-156.5020645819999,57.08958567900005],[-156.50328528599985,57.06321849200004],[-156.5088598299999,57.05174388200011],[-156.52306067599991,57.04584381700008],[-156.54279537699995,57.04539622599999],[-156.5626114569999,57.04816315300003],[-156.5770971339999,57.05174388200011],[-156.58995520699992,57.05707428600009],[-156.62547766799992,57.079046942],[-156.6317032539999,57.072821356000034],[-156.62547766799992,57.05857982000013],[-156.64537512899992,57.05857982000013],[-156.56537838399993,57.004543361000124],[-156.5497940749999,56.98285553600006],[-156.57420813699989,56.98322174700017],[-156.6570531889999,56.997951565000065],[-156.6682836579999,56.998521226000136],[-156.67833411399988,57.00018952000015],[-156.6869604159999,57.003973700000145],[-156.6911514959999,57.00918203300016],[-156.70433508999986,57.03123607000005],[-156.70872962099995,57.03339264500006],[-156.71556555899986,57.03807200700008],[-156.72443600199992,57.04279205900018],[-156.7763565749999,57.05174388200011],[-156.78477942599991,57.04913971600011],[-156.79149329299992,57.04266998900003],[-156.7949112619999,57.03465403900007],[-156.79308020699995,57.027533270000035],[-156.78648841099988,57.02301666900014],[-156.77668209499993,57.01788971600014],[-156.76752682199992,57.011786200000145],[-156.76268469999985,57.003973700000145],[-156.7634171209999,56.992010809000035],[-156.7691544259999,56.98688385600012],[-156.7767227859999,56.98346588700012],[-156.78319251199989,56.97662995000009],[-156.78620357999992,56.96775950700005],[-156.78795325399992,56.951076565],[-156.78998775899993,56.941880601000136],[-156.79755611899986,56.924261786000116],[-156.80943762899994,56.90668366100008],[-156.82445227799985,56.897284247000144],[-156.84150143099993,56.903998114],[-156.88935299399995,56.95209381700006],[-156.90453040299994,56.96181875200004],[-156.92743893099993,56.97052643400009],[-156.9492895169999,56.9762230490001],[-156.96129309799989,56.97662995000009],[-156.95152747299989,56.966498114000146],[-156.94672604099986,56.9545759140001],[-156.9474991529999,56.94330475500002],[-156.95445716099988,56.9350446640001],[-156.9500219389999,56.93008047100007],[-156.94469153599994,56.91998932500008],[-156.94086666599992,56.91453685100008],[-156.95331783799995,56.911078192000055],[-156.99608313699994,56.907700914000046],[-157.0304662749999,56.89008209800012],[-157.04015051999986,56.887274481000176],[-157.0503637359999,56.87815989799999],[-157.0784399079999,56.837103583000086],[-157.09166419199994,56.8258324240001],[-157.11274166599995,56.83051178600003],[-157.16978919199985,56.85464101800012],[-157.19098873599995,56.84967682500017],[-157.18358313699986,56.84202708500014],[-157.16246497299994,56.831284898000135],[-157.1478165359999,56.815130927000084],[-157.15998287699992,56.79108307500003],[-157.1894018219999,56.776271877000156],[-157.21519934799994,56.780340887000115],[-157.23924719999988,56.791489976000136],[-157.28685462099986,56.80170319200008],[-157.30589758999994,56.81159088700018],[-157.36542721299986,56.851467190000065],[-157.39195716099994,56.86322663000014],[-157.41966712099992,56.86737702000009],[-157.44391842399992,56.856512762000094],[-157.45966549399984,56.84642161700013],[-157.4658910799999,56.84003327],[-157.46845455599993,56.82892487200017],[-157.46381588399993,56.815822658000016],[-157.45270748599987,56.810939846000124],[-157.43919837099992,56.80914948100015],[-157.42743893099993,56.80536530200011],[-157.4175512359999,56.79677969000004],[-157.40880286399994,56.78546784100003],[-157.4042455719999,56.77374909100014],[-157.4063207669999,56.763739325000145],[-157.41222083199995,56.76894765800016],[-157.41950436099995,56.77313873900009],[-157.4271134109999,56.77529531500009],[-157.4339493479999,56.77431875200001],[-157.4383438789999,56.77073802300005],[-157.44428463399993,56.76463450700005],[-157.44843502499987,56.758937893000066],[-157.44733639199993,56.75690338700003],[-157.46247311099992,56.756577867000104],[-157.50910396999993,56.763739325000145],[-157.5319311189999,56.75226471600003],[-157.55223548099994,56.730414130000085],[-157.57343502499992,56.71662018400015],[-157.59874426999988,56.72964101800015],[-157.6055802069999,56.72215403899999],[-157.59516354099992,56.71759674700006],[-157.5865372389999,56.71234772300015],[-157.5806371739999,56.70538971600017],[-157.57823645699995,56.69546133000016],[-157.57079016799995,56.702337958000086],[-157.55785071499994,56.68553294500007],[-157.53538977799994,56.67755768400009],[-157.48578854099992,56.674994208],[-157.48058020699992,56.670640367000104],[-157.46312415299985,56.65143463700015],[-157.45787512899986,56.64704010600015],[-157.4551895819999,56.64321523600015],[-157.4625951809999,56.63450755400008],[-157.4738256499999,56.62543366100006],[-157.48265540299994,56.62034739800004],[-157.51244055899986,56.62010325700002],[-157.58381100199995,56.63129303600011],[-157.6087133449999,56.623480536000116],[-157.63377844999988,56.61115143400018],[-157.66466223899994,56.61139557500012],[-157.6941625639999,56.62030670800006],[-157.71544348899988,56.63397858299999],[-157.7508031889999,56.67426178600006],[-157.77289791599986,56.68439362200003],[-157.8041886059999,56.67812734600007],[-157.8377172519999,56.665920315],[-157.84825598899994,56.657660223],[-157.86156165299982,56.65228913000006],[-157.89789791599995,56.65485260600015],[-157.91344153599988,56.653876044000086],[-157.9326879549999,56.642808335000055],[-157.96552486899992,56.612372137000094],[-157.98237057199992,56.60610586100013],[-158.03327389199993,56.59870026200014],[-158.03880774599992,56.59699127800015],[-158.04450436099992,56.592962958000086],[-158.0488988919999,56.5876325540001],[-158.05060787699986,56.582220770000056],[-158.05512447799995,56.578558661000116],[-158.08539791599995,56.578802802000055],[-158.10521399599986,56.572211005],[-158.11876380099994,56.562892971000124],[-158.1276342439999,56.54950592700013],[-158.13316809799989,56.53034088700018],[-158.07502193899995,56.538316148000135],[-157.96361243399994,56.56997304900001],[-157.88194739499994,56.57062409100014],[-157.86896725199995,56.569037177000105],[-157.85883541599986,56.56513092700011],[-157.84992428299995,56.55556875200013],[-157.84809322799987,56.546372789000074],[-157.8472794259999,56.53717682500009],[-157.84142005099991,56.527289130000085],[-157.83690344999985,56.51650625200007],[-157.84296627499995,56.5073102890001],[-157.86253821499992,56.49347565300012],[-157.87714596299995,56.478216864000146],[-157.88414466099994,56.47614166900003],[-157.89976966099994,56.475734768],[-157.95653235599988,56.48261139500012],[-158.0679825509999,56.51190827000014],[-158.12633216099988,56.51666901200003],[-158.15290279899995,56.51325104400003],[-158.16502844999988,56.50739166900008],[-158.16791744699995,56.496893622000115],[-158.15868079299992,56.489203192],[-158.1319067049999,56.49616120000009],[-158.12633216099988,56.486639716000084],[-158.13829505099991,56.465521552000084],[-158.16633053299992,56.458929755],[-158.22191321499986,56.46210358300006],[-158.2489721339999,56.457505601000136],[-158.26158606699988,56.45799388200011],[-158.2737524079999,56.46580638200011],[-158.28205318899995,56.46995677300004],[-158.31810462099992,56.475734768],[-158.33869381399995,56.47540924700009],[-158.35505123599995,56.47113678600009],[-158.41572018099993,56.446478583000086],[-158.43101966099988,56.43805573100003],[-158.4429825509999,56.42804596600014],[-158.45531165299985,56.41429271000014],[-158.4714249339999,56.400295315000065],[-158.50849361899992,56.37836334800015],[-158.52354895699986,56.36591217700011],[-158.51825924399986,56.360744533000044],[-158.50995846299992,56.34540436400009],[-158.5410863919999,56.342474677000055],[-158.57677161399994,56.33026764500009],[-158.6098119779999,56.31391022300006],[-158.63280188699989,56.2982445330001],[-158.64643307199992,56.270656643000066],[-158.6201065749999,56.25617096600003],[-158.5372208319999,56.24982330900009],[-158.5444229809999,56.25975169500002],[-158.55353756399992,56.26727936400006],[-158.5612686839999,56.275458075000145],[-158.5645645819999,56.28733958500011],[-158.56049557199992,56.29930247600005],[-158.55085201699995,56.308172919000086],[-158.47297115799984,56.342759507],[-158.4481908839999,56.34052155200003],[-158.4416397779999,56.311916408000044],[-158.4326879549999,56.31753164300012],[-158.42369544199988,56.320624091000106],[-158.41498775899987,56.321030992000104],[-158.40693111899995,56.318752346000124],[-158.4102270169999,56.31297435099999],[-158.41437740799992,56.2982445330001],[-158.37275143099995,56.318752346000124],[-158.34544837099983,56.32558828300016],[-158.33592688699989,56.32343170800006],[-158.32221432199995,56.31411367400001],[-158.3147680329999,56.311916408000044],[-158.25873775899993,56.30508047100001],[-158.2272843089999,56.296332098000114],[-158.20824133999992,56.283921617000104],[-158.22590084499996,56.268784898000106],[-158.24775143099987,56.25568268400003],[-158.2722875639999,56.24652741100006],[-158.30980383999992,56.24087148600016],[-158.33531653599994,56.23151276200004],[-158.3488663399999,56.22931549700006],[-158.3621313139999,56.23065827000012],[-158.38658606699988,56.2359886740001],[-158.4007055329999,56.23615143400015],[-158.39476477799985,56.22817617400001],[-158.39830481699994,56.22077057500011],[-158.40644283799986,56.21259186400003],[-158.41437740799992,56.202053127000156],[-158.39989173099985,56.2057152360001],[-158.3843888009999,56.213080145],[-158.3692113919999,56.217474677000084],[-158.32640540299988,56.200384833000136],[-158.32310950399994,56.19354889500011],[-158.34544837099983,56.181545315],[-158.31830807199992,56.17470937700007],[-158.28815670499995,56.185370184000114],[-158.25829016799995,56.20087311400012],[-158.2060440749999,56.21775950700011],[-158.17695064999987,56.23484935100005],[-158.14732825399992,56.24579498900012],[-158.11949622299989,56.23615143400015],[-158.15062415299985,56.22955963700018],[-158.16075598899994,56.22589752800003],[-158.16783606699988,56.22003815300008],[-158.17402096299995,56.21206289300012],[-158.18122311099987,56.20502350500006],[-158.19831295499992,56.199204820000105],[-158.2143448559999,56.18598053600005],[-158.22191321499986,56.181545315],[-158.2343236969999,56.18056875200004],[-158.24559485599988,56.18244049700009],[-158.2571915359999,56.182277736000046],[-158.27033443899995,56.17470937700007],[-158.26288814999987,56.16791413000006],[-158.28966223899988,56.1616071640001],[-158.32404537699995,56.15912506700009],[-158.35204016799995,56.15070221600003],[-158.35973059799989,56.126898505000135],[-158.38239498599992,56.13593170800006],[-158.3877660799999,56.15241120000003],[-158.38752193899995,56.169867255],[-158.39325924399992,56.181545315],[-158.4096573559999,56.180812893000066],[-158.42076575399992,56.16624583500014],[-158.42328854099986,56.14720286700005],[-158.41437740799992,56.133124091000106],[-158.4334610669999,56.13231028899999],[-158.4416397779999,56.133124091000106],[-158.42817135299993,56.113348700000174],[-158.41230221299992,56.094875393000144],[-158.40758216099988,56.07843659100014],[-158.42796790299988,56.06484609600001],[-158.44208736899992,56.08502838700003],[-158.44574947799995,56.094956773000135],[-158.4416397779999,56.10643138200008],[-158.4542943999999,56.109361070000105],[-158.49970455599987,56.10643138200008],[-158.50324459499996,56.10162995000009],[-158.49299068899992,56.090725002],[-158.46959387899994,56.071682033000016],[-158.48700924399992,56.05963776200009],[-158.48460852799985,56.042914130000085],[-158.46930904899992,56.03204987200009],[-158.45417232999992,56.04067617400009],[-158.45689856699988,56.043524481000034],[-158.45872962099986,56.04686107000008],[-158.46214758999986,56.05121491100006],[-158.43407141799986,56.042914130000085],[-158.42280025899987,56.02399323100014],[-158.4275610019999,56.006537177],[-158.44786536399988,56.002752997000165],[-158.4601944649999,56.009995835],[-158.48363196499992,56.03237539300004],[-158.49628658799986,56.037543036000116],[-158.51105709499996,56.03384023600007],[-158.5120743479999,56.022935289000095],[-158.5051977199999,56.009222723000065],[-158.49628658799986,55.9965681010001],[-158.5125626289999,55.99599844000012],[-158.53364010299993,56.00446198100017],[-158.55475826699993,56.017645575000024],[-158.57140051999988,56.030707098],[-158.50995846299992,56.05121491100006],[-158.50995846299992,56.058050848000065],[-158.5674535799999,56.04710521000011],[-158.5856420559999,56.04067617400009],[-158.60094153599985,56.04043203300016],[-158.60468502499987,56.05231354400011],[-158.5972387359999,56.06610748900003],[-158.57884680899986,56.071682033000016],[-158.57884680899986,56.078517971000124],[-158.60191809799994,56.08673737200003],[-158.6015518869999,56.10057200700014],[-158.58551998599992,56.11367422100001],[-158.56114661399988,56.11945221600017],[-158.55988521999996,56.12409088700009],[-158.54930579299992,56.14618561400008],[-158.5440567699999,56.15363190300015],[-158.5398656889999,56.15468984600001],[-158.5280655589999,56.15281810100005],[-158.5191544259999,56.15436432500008],[-158.51475989499988,56.15326569200015],[-158.5113012359999,56.15322500200015],[-158.50995846299992,56.157375393000095],[-158.51020260299993,56.16624583500014],[-158.50995846299992,56.16791413000006],[-158.48900305899986,56.17670319200012],[-158.47887122299989,56.18382396000008],[-158.4792374339999,56.19147370000009],[-158.49058997299989,56.195868231000176],[-158.56590735599985,56.19501373900009],[-158.6396378249999,56.202053127000156],[-158.62767493399986,56.18585846600008],[-158.60777747299989,56.17820872600007],[-158.5645645819999,56.16791413000006],[-158.5911759109999,56.15277741100006],[-158.6118871739999,56.135158596000124],[-158.63459225199986,56.12006256700011],[-158.66759192599991,56.11261627800014],[-158.66144771999996,56.13108958500008],[-158.66820227799988,56.14594147300012],[-158.6833389959999,56.15277741100006],[-158.70234127499987,56.147406317],[-158.69188391799992,56.13646067900013],[-158.6888321609999,56.12563711100013],[-158.69261633999992,56.115423895],[-158.70234127499987,56.10643138200008],[-158.67011471299992,56.09878164300015],[-158.66063391799992,56.09235260600003],[-158.66759192599991,56.078517971000124],[-158.6663305329999,56.06171295800011],[-158.73224850199986,56.04539622600011],[-158.71540279899986,56.030707098],[-158.69652258999992,56.02871328300016],[-158.67601477799988,56.03046295800006],[-158.65807044199994,56.02895742400001],[-158.64708411399988,56.017035223000065],[-158.64708411399988,55.99994538000011],[-158.65754146999993,55.990790106000034],[-158.6880590489999,55.982326565],[-158.6880590489999,55.97614166900003],[-158.68256588399996,55.97479889500015],[-158.67304439999995,55.97085195500016],[-158.66759192599991,55.96930573100012],[-158.6829320949999,55.95840078300013],[-158.71202551999994,55.95404694200015],[-158.7429093089999,55.95538971600002],[-158.7637833319999,55.96185944200011],[-158.7564184239999,55.96747467700013],[-158.74791419199994,55.97174713700006],[-158.73871822799995,55.974676825000174],[-158.72899329299992,55.97614166900003],[-158.72899329299992,55.982326565],[-158.7391251289999,55.992580471000124],[-158.7455541659999,56.00145091399998],[-158.75654049399992,56.00787995000009],[-158.78050696499992,56.010199286000145],[-158.78510494699992,56.00706614800008],[-158.79369055899994,55.99290599200005],[-158.80101477799994,55.98973216399999],[-158.81537838399993,55.99152252800017],[-158.82310950399994,55.99640534100014],[-158.83580481699988,56.01361725500005],[-158.85944576699993,56.0129255230001],[-158.88825436099995,55.98383209800015],[-158.9282934239999,55.92084381700012],[-158.93451900899993,55.92084381700012],[-158.94233150899993,55.93162669500013],[-158.95677649599992,55.936224677000084],[-158.97386633999994,55.936509507000025],[-159.00629635299993,55.93178945500009],[-159.0141088529999,55.929144598],[-159.02074133999992,55.924627997000144],[-159.0237524079999,55.91693756700012],[-159.02013098899994,55.910589911],[-159.01427161399988,55.90680573100017],[-159.01020260299993,55.907171942],[-159.01093502499987,55.90167877800015],[-159.01024329299992,55.897202867000104],[-159.01390540299988,55.89411041900011],[-159.0275772779999,55.892889716000084],[-159.03547115799986,55.89427317900008],[-159.04039466099985,55.89769114799999],[-159.04478919199994,55.902329820000105],[-159.07148189999995,55.920599677],[-159.08381100199986,55.92601146000014],[-159.09931393099993,55.92829010600009],[-159.11363684799989,55.926174221000096],[-159.1450089179999,55.916815497000144],[-159.1607152989999,55.91461823100015],[-159.1724340489999,55.91128164300012],[-159.1870011059999,55.896307684000085],[-159.20164954299992,55.892889716000084],[-159.26671301999988,55.889227606000055],[-159.29426021999987,55.879339911000116],[-159.31867428299995,55.859442450000024],[-159.3328344389999,55.87738678600009],[-159.35590572799993,55.87946198100009],[-159.38084876199986,55.87140534100017],[-159.40062415299988,55.859442450000024],[-159.41108150899996,55.84251536700005],[-159.41633053299992,55.8021507830001],[-159.4217016269999,55.790472723],[-159.4390763009999,55.7892113300001],[-159.45555579299986,55.801336981000176],[-159.46869869699992,55.81834544500005],[-159.4756973949999,55.831488348],[-159.4788305329999,55.84601471600014],[-159.4788305329999,55.86359284100016],[-159.4756973949999,55.882310289000046],[-159.46955318899992,55.90033600500008],[-159.48945064999992,55.90013255400011],[-159.51817786399988,55.89647044500008],[-159.5449926419999,55.88963450700005],[-159.55890865799995,55.87986888200011],[-159.55528723899988,55.865668036],[-159.52525794199994,55.83657461100013],[-159.51793372299994,55.82184479400006],[-159.5167943999999,55.81122467699999],[-159.51170813699989,55.79344310100011],[-159.51048743399986,55.783026434000114],[-159.50934811099992,55.77826569200012],[-159.5047094389999,55.77118561400006],[-159.50365149599992,55.76691315300014],[-159.5058487619999,55.76089101800015],[-159.5108129549999,55.758002020000035],[-159.51573645699992,55.75604889500006],[-159.51793372299994,55.75299713700015],[-159.5301000639999,55.73981354400003],[-159.5526016919999,55.72138092699999],[-159.56444251199986,55.704291083000136],[-159.54462643099995,55.69489166900002],[-159.54747473899988,55.68382396000008],[-159.54796301999988,55.67389557500017],[-159.54942786399994,55.66498444200015],[-159.5551651679999,55.65704987200017],[-159.5585831369999,55.653794664000124],[-159.56212317599991,55.649115302000105],[-159.56513424399992,55.64655182500012],[-159.5691625639999,55.64472077000012],[-159.58018958199995,55.64215729400003],[-159.5855606759999,55.63971588700018],[-159.60216223899994,55.62763092699999],[-159.61986243399994,55.61115143400009],[-159.63068600199995,55.59357330900015],[-159.6265356109999,55.57827383],[-159.72105872299994,55.56708405199999],[-159.74323482999986,55.57200755400005],[-159.73021399599992,55.579982815],[-159.70897376199989,55.59772370000012],[-159.69542395699986,55.60553620000009],[-159.72712154899992,55.60398997600005],[-159.75690670499995,55.59870026200018],[-159.74168860599985,55.613267320000105],[-159.71129309799989,55.619330145],[-159.6797989569999,55.616685289000095],[-159.66132564999992,55.60553620000009],[-159.64081783799992,55.61298248900009],[-159.64228268099995,55.620306708000086],[-159.6393936839999,55.62665436400003],[-159.63292395699992,55.63117096600017],[-159.6234024729999,55.632879950000174],[-159.6170141269999,55.635199286000116],[-159.62474524599992,55.640285549000154],[-159.65754146999993,55.65228913000008],[-159.69330807199995,55.66034577000003],[-159.70970618399986,55.667629299000126],[-159.6912735669999,55.67902252800009],[-159.63337154899992,55.701117255000085],[-159.65009518099993,55.71112702000006],[-159.65802975199992,55.718329169000086],[-159.66454016799992,55.735052802000105],[-159.6714981759999,55.73627350500014],[-159.67857825399986,55.73651764500009],[-159.68175208199992,55.74274323100006],[-159.6779679029999,55.75202057500009],[-159.65074622299989,55.786810614000146],[-159.6262100899999,55.80451080900015],[-159.6252335279999,55.812689520000056],[-159.64081783799992,55.825262762000065],[-159.65705318899992,55.83234284100011],[-159.70185299399986,55.843817450000145],[-159.83039303299992,55.852728583],[-159.84577389199993,55.85122304900012],[-159.85468502499992,55.84162018400015],[-159.86054439999992,55.81842682500003],[-159.8533829419999,55.80390045799999],[-159.8513891269999,55.79474518400012],[-159.8568009109999,55.790472723],[-159.90461178299995,55.783026434000114],[-159.92308508999986,55.789496161000116],[-159.95527096299992,55.81565989800008],[-159.9766332669999,55.81842682500003],[-159.9766332669999,55.81098053600006],[-159.96894283799986,55.806789455000036],[-159.96711178299986,55.801703192],[-159.96918697799993,55.786810614000146],[-159.9731339179999,55.777492580000015],[-159.98249264199993,55.77716705900018],[-160.00959225199995,55.785874742000075],[-160.01777096299986,55.79181549700009],[-160.02672278599985,55.79694245000009],[-160.03807532499985,55.79734935100011],[-160.04364986899986,55.79279205900015],[-160.0521134109999,55.77627187700009],[-160.05854244699992,55.770005601000136],[-160.03087317599994,55.735541083000115],[-160.0335587229999,55.72622304900006],[-160.06537838399993,55.72284577000015],[-160.0880020819999,55.72842031500006],[-160.0966690749999,55.72801341400004],[-160.1001684239999,55.71914297100001],[-160.09565182199992,55.71417877800015],[-160.06537838399993,55.701117255000085],[-160.09691321499994,55.70075104400014],[-160.11078854099992,55.703802802000055],[-160.1237279939999,55.71198151200015],[-160.1304825509999,55.72040436400012],[-160.13524329299986,55.72801341400004],[-160.1421606109999,55.733791408000016],[-160.1553848949999,55.73651764500009],[-160.14989173099988,55.72101471600017],[-160.14313717399995,55.688788153000026],[-160.13365637899994,55.674465236000124],[-160.1640518869999,55.65713125200015],[-160.23871822799993,55.664740302],[-160.25719153599988,55.65399811400009],[-160.25719153599988,55.64655182500012],[-160.34996497299989,55.64655182500012],[-160.39622962099986,55.653021552000105],[-160.4194229809999,55.653876044000114],[-160.44212805899986,55.64655182500012],[-160.42548580599993,55.63471100500014],[-160.36640377499987,55.61298248900009],[-160.36640377499987,55.60553620000009],[-160.3908585279999,55.599432684000114],[-160.4351700509999,55.57684967700014],[-160.45641028599982,55.57827383],[-160.45543372299989,55.56329987200017],[-160.45380611899992,55.55735911700004],[-160.44896399599986,55.55027903899999],[-160.45750891799992,55.54295482],[-160.46422278599994,55.52928294500005],[-160.46857662699995,55.51508209800012],[-160.4700414699999,55.50625234600007],[-160.47752844999982,55.49461497600008],[-160.4951879549999,55.486151434000035],[-160.53148352799988,55.475816148000106],[-160.54853268099993,55.489081122000144],[-160.58299719999985,55.540716864],[-160.59333248599995,55.5641136740001],[-160.59540768099987,55.5890973980001],[-160.59894771999996,55.60610586100016],[-160.61347408799992,55.60553620000009],[-160.62791907499985,55.59080638200011],[-160.64093990799995,55.57025788000006],[-160.65741939999992,55.55198802299999],[-160.6826879549999,55.54413483300003],[-160.7417699859999,55.54865143400015],[-160.76813717399986,55.54539622600011],[-160.7642716139999,55.530462958000086],[-160.74095618399988,55.52488841400007],[-160.70661373599995,55.52513255400011],[-160.6754044259999,55.521918036000145],[-160.66185462099992,55.50625234600007],[-160.6675919259999,55.47785065300015],[-160.6834203769999,55.464667059000085],[-160.78258216099988,55.44708893400014],[-160.79902096299986,55.44790273600007],[-160.80939693899995,55.45184967700005],[-160.8320206369999,55.465399481000034],[-160.84308834499996,55.468410549000126],[-160.84858150899987,55.47304922100015],[-160.8459366529999,55.483465887000065],[-160.83661861899995,55.49941640800016],[-160.8317764959999,55.51162344000012],[-160.84052486899995,55.51854075700014],[-160.86729895699986,55.52362702000014],[-160.9245499339999,55.519110419000086],[-160.95942135299993,55.49315013200011],[-160.9876195949999,55.45831940300014],[-161.0249731109999,55.42743561400012],[-161.0720922519999,55.40835195500013],[-161.27916419199994,55.354885158000016],[-161.3120011059999,55.35358307500012],[-161.32660885299995,55.362250067],[-161.33946692599986,55.383246161000145],[-161.36872311099992,55.38544342700014],[-161.47911536399988,55.36102936400009],[-161.5066625639999,55.363836981000034],[-161.5184220039999,55.38336823100012],[-161.51557369699992,55.388983466000106],[-161.48798580599993,55.42780182500003],[-161.48558508999986,55.43842194200006],[-161.4819229809999,55.48037344000006],[-161.47923743399994,55.48493073100012],[-161.45433508999992,55.514797268],[-161.44298255099994,55.525620835],[-161.41889400899993,55.53839752800003],[-161.3887426419999,55.57217031500012],[-161.36754309799989,55.57827383],[-161.34911048099985,55.57062409100017],[-161.31663977799988,55.54319896000011],[-161.29218502499992,55.53729889500009],[-161.1826065749999,55.52362702000014],[-161.1518448559999,55.525620835],[-161.1448868479999,55.534979559000035],[-161.1592504549999,55.54539622600011],[-161.24779212099992,55.55776601800015],[-161.2612198559999,55.56171295800014],[-161.27143307199992,55.57123444200012],[-161.28075110599988,55.58258698100012],[-161.2918595039999,55.59194570500012],[-161.3161514959999,55.60040924700009],[-161.3649389309999,55.61001211100016],[-161.40819251199989,55.63593170800006],[-161.4387914699999,55.63873932500012],[-161.62079830599987,55.61298248900009],[-161.6133520169999,55.59979889500012],[-161.6172582669999,55.59373607000013],[-161.6262914699999,55.5903181010001],[-161.63447018099993,55.58510976800012],[-161.65217037699992,55.56118398600015],[-161.7083634109999,55.527085679000045],[-161.71642005099994,55.513088283000094],[-161.71332760299987,55.502020575000145],[-161.70649166599995,55.49725983300006],[-161.69965572799993,55.49530670800003],[-161.69652258999986,55.492580471000124],[-161.6972143219999,55.48261139500015],[-161.70942135299987,55.434393622000115],[-161.7101944649999,55.424302476000136],[-161.70942135299987,55.40713125200001],[-161.7110082669999,55.40176015800016],[-161.71642005099994,55.39325592700011],[-161.81708736899995,55.31683991100003],[-161.83311926999994,55.293646552000084],[-161.84190833199992,55.28961823100012],[-161.8945206369999,55.24241771000014],[-161.89781653599988,55.233465887000094],[-161.89911861899984,55.22455475500006],[-161.9024145169999,55.21784088700012],[-161.9119360019999,55.21515534100014],[-161.93480383999992,55.21381256700015],[-161.9448136059999,55.21556224200004],[-161.95661373599987,55.22190989799999],[-161.9483129549999,55.22113678600006],[-161.92247473899988,55.22190989799999],[-161.92247473899988,55.22939687700013],[-161.9511612619999,55.23720937700013],[-161.9846899079999,55.240423895],[-162.01801510299995,55.23981354400003],[-162.04600989499988,55.235581773000106],[-162.04600989499988,55.22939687700013],[-162.02049719999988,55.20075104400017],[-162.01569576699987,55.18451569200012],[-162.03233801999994,55.17413971600003],[-161.98456783799992,55.15713125200007],[-161.98155676999988,55.14740631700012],[-161.97431393099987,55.13825104400006],[-161.9650772779999,55.13060130400011],[-161.95661373599987,55.12571849200004],[-161.97276770699995,55.10740794499999],[-162.00129146999993,55.093207098000065],[-162.03294837099992,55.08331940300015],[-162.05903072799995,55.07859935100005],[-162.0808813139999,55.080633856000176],[-162.10578365799995,55.08942291900006],[-162.1280004549999,55.102972723],[-162.14159094999985,55.11953359600007],[-162.12214107999995,55.124986070000105],[-162.1142471999999,55.12571849200004],[-162.12169348899988,55.13320547100001],[-162.1127823559999,55.141424872000115],[-162.1063940089999,55.149115302000105],[-162.10248775899993,55.15761953300016],[-162.1012670559999,55.167914130000085],[-162.19273841099994,55.14256419500005],[-162.2309464179999,55.11273834800015],[-162.21068274599986,55.09023672100015],[-162.19819088399996,55.06289297100006],[-162.20209713399996,55.03986237200011],[-162.2309464179999,55.03021881700015],[-162.24608313699989,55.02704498900009],[-162.26056881399992,55.02167389500011],[-162.27476966099994,55.01959870000009],[-162.28929602799988,55.026800848000114],[-162.29808508999992,55.03587474200013],[-162.31322180899994,55.05817291900017],[-162.31969153599994,55.07111237200017],[-162.32929439999992,55.066066799000126],[-162.33747311099992,55.05768463700018],[-162.35106360599988,55.04010651200015],[-162.36253821499992,55.036566473000065],[-162.4227188789999,55.036363023000106],[-162.44933020699995,55.040269273000106],[-162.47223873599995,55.0489769550001],[-162.49262447799993,55.06183502800003],[-162.51154537699992,55.07859935100005],[-162.52647864499986,55.102240302000084],[-162.5174047519999,55.11469147300009],[-162.4936010409999,55.117499091000134],[-162.46434485599983,55.11273834800015],[-162.41649329299992,55.09788646000008],[-162.3906143869999,55.09658437700007],[-162.36070716099985,55.10529205900014],[-162.4173477859999,55.129055080000064],[-162.43639075399994,55.140082098000036],[-162.47996985599994,55.17552317900011],[-162.4910375639999,55.18842194200012],[-162.53095455599993,55.248765367000075],[-162.55736243399994,55.26703522300012],[-162.60090084499993,55.270412502000156],[-162.57164466099994,55.280829169000135],[-162.56745357999986,55.292222398000106],[-162.58332271999993,55.301092841000134],[-162.61457271999987,55.30390045799999],[-162.6453344389999,55.300034898000014],[-162.6682836579999,55.29140859600009],[-162.68736731699985,55.27789948100011],[-162.70673580599987,55.25950755400007],[-162.7187393869999,55.239081122000115],[-162.7183324859999,55.217922268],[-162.7053116529999,55.20136139500011],[-162.6587621739999,55.19033437700009],[-162.63288326699995,55.17967357000005],[-162.6141251289999,55.16632721600014],[-162.61457271999987,55.15371328300016],[-162.60326087099992,55.14354075700011],[-162.59996497299989,55.13711172100001],[-162.60395260299993,55.13190338700009],[-162.61457271999987,55.12571849200004],[-162.61481686099995,55.129136460000055],[-162.61969967399992,55.134182033000066],[-162.6265356109999,55.13764069200008],[-162.63219153599994,55.13666413000003],[-162.6353246739999,55.131048895],[-162.63544674399986,55.125148830000064],[-162.6347550119999,55.119045315000086],[-162.63569088399993,55.11273834800015],[-162.6417130199999,55.090969143000095],[-162.64277096299986,55.07111237200017],[-162.63499915299988,55.063625393],[-162.61457271999987,55.07859935100005],[-162.61213131399995,55.062201239000146],[-162.55992591099994,54.961249091000106],[-162.5848282539999,54.96580638200005],[-162.61644446499986,54.9798851580001],[-162.6454971999999,54.998439846000096],[-162.6629532539999,55.016546942],[-162.62779700399992,55.01227448100009],[-162.6189672519999,55.01569245000009],[-162.62140865799992,55.03021881700015],[-162.6330460279999,55.0455589860001],[-162.6494848299999,55.05296458500008],[-162.66718502499992,55.05060455900012],[-162.67662512899994,55.036363023000106],[-162.6854955719999,55.01723867400012],[-162.69652258999992,55.00324127800017],[-162.72382564999992,54.975531317],[-162.7183731759999,54.96808502800012],[-162.7166235019999,54.96336497600011],[-162.72069251199994,54.961249091000106],[-162.72504635299993,54.960109768000066],[-162.75275631399992,54.944891669000086],[-162.76744544199994,54.939601955000015],[-162.78294837099992,54.93593984600015],[-162.8504125639999,54.93504466400007],[-162.8776342439999,54.93895091400007],[-162.92084713399993,54.957424221000096],[-162.92735755099991,54.963283596000124],[-162.92988033799992,54.97186920800014],[-162.93504798099994,54.97699616100006],[-162.96739661399994,54.99233633],[-162.97435462099992,55.00950755400014],[-162.95274817599994,55.01406484600007],[-162.92646236899992,55.01455312700007],[-162.9196264309999,55.01992422100012],[-162.9369604159999,55.02928294500005],[-162.97996985599994,55.038641669000086],[-162.9981583319999,55.05068594],[-163.0241186189999,55.08502838700014],[-163.0411270819999,55.09935130400014],[-163.06330318899995,55.10529205900014],[-163.07502193899995,55.10663483300006],[-163.09654700399983,55.11220937700007],[-163.10798092399992,55.11273834800015],[-163.12205969999985,55.10984935100011],[-163.14830481699988,55.10101959800015],[-163.16319739499994,55.099066473],[-163.14976966099994,55.10643138200002],[-163.1213272779999,55.11790599200005],[-163.10798092399992,55.12571849200004],[-163.12909908799992,55.13344961100013],[-163.15709387899994,55.13861725500006],[-163.18305416599992,55.13914622600013],[-163.19798743399988,55.13320547100001],[-163.20018469999988,55.121405341000056],[-163.19676673099985,55.10846588700004],[-163.19212805899994,55.09760163000014],[-163.1905411449999,55.092230536],[-163.2027481759999,55.08616771],[-163.21503658799992,55.08966705900018],[-163.23835201699995,55.10529205900014],[-163.23822994699987,55.090318101000136],[-163.2313126289999,55.08100006700009],[-163.21934973899994,55.077134507],[-163.20421301999994,55.07859935100005],[-163.21764075399994,55.045355536000145],[-163.2055151029999,55.01898834800012],[-163.17475338399996,55.00169505400014],[-163.1140030589999,54.99233633],[-163.0899552069999,54.98427969000006],[-163.06725012899994,54.97329336100002],[-163.05333411399988,54.961249091000106],[-163.04987545499992,54.941839911],[-163.06257076699993,54.928778387000115],[-163.13520260299993,54.903713283],[-163.17121334499987,54.88190338700015],[-163.20038814999992,54.872951565000115],[-163.23143469999994,54.84479401200015],[-163.25141354099992,54.838324286000145],[-163.2774552069999,54.83368561400012],[-163.32079016799986,54.813869533],[-163.3413793609999,54.81110260600015],[-163.35741126199989,54.81761302300005],[-163.36754309799994,54.83014557500006],[-163.37665768099993,54.8449567730001],[-163.3897598949999,54.85887278900002],[-163.3418676419999,54.87677643400015],[-163.3270971339999,54.886175848000065],[-163.32457434799989,54.891058661000145],[-163.3248184889999,54.902329820000126],[-163.32087154899995,54.90729401200017],[-163.3115128249999,54.911566473],[-163.30146236899992,54.913723049],[-163.29088294199988,54.91412995000012],[-163.27989661399994,54.91351959800014],[-163.29682369699992,54.92763906500009],[-163.3452856109999,54.91941966399998],[-163.34760494699995,54.94082265800013],[-163.32917232999992,54.96686432500009],[-163.30658932199995,54.95905182500011],[-163.2813614569999,54.94464752800006],[-163.25511633999986,54.9513207050001],[-163.24596106699988,54.96995677299999],[-163.28205318899992,54.99013906500003],[-163.29295813699989,55.013128973],[-163.2991430329999,55.061224677000055],[-163.30601966099988,55.0739606790001],[-163.31867428299995,55.085394598000065],[-163.32514400899993,55.095648505],[-163.31346594999985,55.10529205900014],[-163.31346594999985,55.11273834800015],[-163.3205053379999,55.11220937700007],[-163.32518469999994,55.11408112200002],[-163.3292943999999,55.11688873900009],[-163.33454342399986,55.11953359600007],[-163.14899654899992,55.18097565300014],[-163.02472896999987,55.2455915390001],[-162.99128170499992,55.24241771000014],[-163.00902258999992,55.237372137000094],[-163.03087317599986,55.22719961100016],[-163.05170650899993,55.21434153900013],[-163.0663956369999,55.20148346600011],[-163.07652747299989,55.18065013200011],[-163.06293697799993,55.17576732000005],[-162.9926244779999,55.18183014500014],[-162.9844864569999,55.18097565300014],[-162.98375403599988,55.179185289000074],[-162.98078365799995,55.17499420800014],[-162.97618567599991,55.17055898600016],[-162.97081458199995,55.167914130000085],[-162.96202551999988,55.16901276200012],[-162.8958227199999,55.18964264500015],[-162.87494869699992,55.20038483300006],[-162.8336889309999,55.22939687700013],[-162.84992428299992,55.24542877800003],[-162.88866126199986,55.246771552000105],[-162.89635169199988,55.266669012000115],[-162.80011959499996,55.29026927300004],[-162.7947485019999,55.29946523600013],[-162.73700924399986,55.31093984600006],[-162.7138565749999,55.321275132],[-162.65330969999994,55.36151764500006],[-162.6418350899999,55.38027578300013],[-162.63499915299988,55.36261627800011],[-162.61420650899987,55.35150788],[-162.58844967399995,55.346096096000124],[-162.56676184799989,55.345445054],[-162.5509740879999,55.34853750200007],[-162.54051673099994,55.353949286000116],[-162.51891028599994,55.372788804000045],[-162.5118302069999,55.374904690000065],[-162.50434322799993,55.37368398600015],[-162.4971410799999,55.37396881700009],[-162.4910375639999,55.38027578300013],[-162.48997962099992,55.38532135600015],[-162.49022376199989,55.391994533000016],[-162.49176998599992,55.39769114800002],[-162.4944555329999,55.400091864000146],[-162.50755774599986,55.40753815300012],[-162.5040177069999,55.424017645],[-162.50426184799994,55.44041575700011],[-162.52887936099992,55.44790273600007],[-162.55699622299994,55.44692617400001],[-162.58238684799994,55.437323309000035],[-162.60102291599992,55.423732815000065],[-162.62140865799992,55.406927802000055],[-162.6047257149999,55.42987702000014],[-162.59105383999994,55.437323309000035],[-162.57616126199989,55.44599030200011],[-162.54999752499992,55.45872630400008],[-162.2269994779999,55.69790273600002],[-162.14903723899994,55.72284577000015],[-162.1301163399999,55.73432038],[-162.0926000639999,55.764064846],[-162.0770157539999,55.770005601000136],[-162.05052649599992,55.77374909100016],[-161.91295325399986,55.830877997000144],[-161.89826412699986,55.84198639500009],[-161.82628333199995,55.87986888200011],[-161.79999752499992,55.88971588700004],[-161.77391516799995,55.89598216399999],[-161.6890356109999,55.903550523000135],[-161.64085852799994,55.91766998900005],[-161.52550208199992,55.934881903000175],[-161.45771236899992,55.95392487200017],[-161.38890540299994,55.96173737200014],[-161.3775121739999,55.96552155199999],[-161.3566381499999,55.976263739],[-161.15534420499986,56.017035223000065],[-161.22557532499994,55.99599844000012],[-161.2577611969999,55.986029364000146],[-161.2732641269999,55.97846100499999],[-161.36754309799989,55.955633856000176],[-161.2068578769999,55.955633856000176],[-161.17084713399993,55.94985586100002],[-161.1547745429999,55.94989655200002],[-161.1379288399999,55.95868561400006],[-161.12421627499992,55.96124909100017],[-161.07274329299992,55.941351630000085],[-161.05329342399992,55.94110748900014],[-161.03941809799994,55.94594961100002],[-161.01130123599995,55.96185944200011],[-160.9599503249999,55.976263739],[-160.94640051999983,55.986029364000146],[-160.9323624339999,55.990301825000145],[-160.87413489499988,55.993150132],[-160.8714086579999,55.96173737200014],[-160.86725826699987,55.945868231000034],[-160.86046301999994,55.93451569200006],[-160.9000138009999,55.93455638200005],[-160.9403783839999,55.93935781500015],[-160.97931881399995,55.93744538],[-161.0143936839999,55.91771067900005],[-161.02415930899986,55.902899481000176],[-161.02338619699992,55.8907738300001],[-161.01557369699992,55.88117096600011],[-161.00446529899992,55.87372467700013],[-160.98363196499992,55.86701080900018],[-160.96589107999995,55.86937083500013],[-160.94847571499986,55.875433661000145],[-160.92878170499992,55.87986888200011],[-160.94379635299995,55.85049062700001],[-160.9500626289999,55.83299388200005],[-160.94640051999983,55.825262762000065],[-160.9306127589999,55.82184479400006],[-160.91515051999988,55.81366608300011],[-160.8203832669999,55.73916250200007],[-160.79902096299986,55.715399481000176],[-160.78180904899995,55.75104401200012],[-160.76813717399986,55.75853099199998],[-160.74718176999988,55.746161200000145],[-160.71711178299992,55.72284577000015],[-160.69920813699986,55.70319245000009],[-160.6895645819999,55.69790273600002],[-160.67552649599992,55.701117255000085],[-160.6757299469999,55.705633856000034],[-160.66478430899988,55.72980377800003],[-160.66185462099992,55.732814846000124],[-160.66608639199993,55.74404531500015],[-160.67625891799986,55.74713776200003],[-160.6885880199999,55.74811432500008],[-160.69941158799992,55.75299713700015],[-160.70710201699993,55.75983307500009],[-160.72533118399988,55.77138906500004],[-160.75670325399994,55.78611888200011],[-160.7642716139999,55.80475495000009],[-160.7752172519999,55.84650299700003],[-160.78246008999992,55.865668036],[-160.79527747299994,55.87372467700013],[-160.79926510299993,55.875433661000145],[-160.79865475199995,55.87946198100009],[-160.7953995429999,55.88377513200011],[-160.7915746739999,55.88670482000013],[-160.7845352859999,55.887681382000025],[-160.77753658799992,55.88556549700009],[-160.7642716139999,55.87986888200011],[-160.71711178299992,55.86627838700015],[-160.6887100899999,55.86229075700008],[-160.51219641799992,55.869940497000115],[-160.5036108059999,55.859442450000024],[-160.47960364499988,55.85028717700005],[-160.47773189999992,55.83844635600009],[-160.48188229099995,55.82347239800008],[-160.47626705599995,55.80475495000009],[-160.46019446499986,55.795640367000104],[-160.44225012899994,55.80052317900008],[-160.4225561189999,55.809149481000176],[-160.40119381399992,55.81098053600006],[-160.3948461579999,55.80731842699999],[-160.38670813699986,55.795233466000084],[-160.3806860019999,55.790472723],[-160.36913001199994,55.786769924000154],[-160.3097631499999,55.779364325000174],[-160.2888891269999,55.774481512000094],[-160.26768958199992,55.772284247000115],[-160.24351966099994,55.776841539000046],[-160.27887936099995,55.788316148000014],[-160.28791256399995,55.793931382],[-160.30907141799995,55.81928131700012],[-160.3192032539999,55.825262762000065],[-160.23729407499985,55.838324286000116],[-160.25096594999988,55.85248444200014],[-160.27265377499987,55.85911692900011],[-160.3192032539999,55.86627838700015],[-160.52074133999986,55.93520742400001],[-160.54076087099992,55.93537018400014],[-160.56627356699994,55.92829010600009],[-160.5724584629999,55.93451569200006],[-160.55268307199987,55.94912344000009],[-160.5435277989999,55.9584821640001],[-160.53831946499992,55.96930573100012],[-160.5391332669999,55.98456452000009],[-160.54759680899994,55.99339427300013],[-160.56183834499996,55.995306708],[-160.5799047519999,55.98973216399999],[-160.56810462099992,56.00755442900005],[-160.5322159499999,56.040228583],[-160.51634680899988,56.068793036],[-160.4763891269999,56.09666575700014],[-160.46259518099993,56.11261627800014],[-160.46117102799994,56.151312567],[-160.45555579299995,56.1723493510001],[-160.43871008999994,56.181545315],[-160.42894446499992,56.19326406500009],[-160.4037979809999,56.23969147300012],[-160.39435787699986,56.24298737200017],[-160.36872311099995,56.276841539000046],[-160.23729407499985,56.33917877800012],[-160.18871008999992,56.38690827000006],[-160.01703854099992,56.445379950000024],[-159.92804928299992,56.488959052000055],[-159.8477270169999,56.54051341400013],[-159.7457169259999,56.57933177300013],[-159.48314368399988,56.64704010600015],[-159.55890865799995,56.62034739800004],[-159.54759680899986,56.61318594],[-159.52692623599995,56.61615631700011],[-159.50243079299992,56.62287018400015],[-159.4563695949999,56.62933991100006],[-159.32457434799989,56.67401764500012],[-159.3080948559999,56.68488190300012],[-159.28876705599987,56.69208405200014],[-159.23106848899994,56.691961981000176],[-159.20885169199988,56.69546133000016],[-159.2212621739999,56.70087311400003],[-159.23473059799989,56.70282623900006],[-159.26341712099992,56.702337958000086],[-159.26341712099992,56.70856354400002],[-159.1996557279999,56.75169505400005],[-159.17528235599988,56.763739325000145],[-159.08637447799993,56.78579336100016],[-159.04096432199992,56.815130927000084],[-158.9910782539999,56.842596747000115],[-158.9439184239999,56.869859117000104],[-158.88923092399995,56.88959381700011],[-158.86620032499985,56.894110419000086],[-158.8937882149999,56.874457098000114],[-158.9594213529999,56.853461005],[-158.99742591099988,56.82880280200003],[-159.0251358709999,56.816717841000106],[-159.0307104159999,56.80878327000011],[-159.02489173099994,56.79657623900006],[-159.01069088399993,56.788804429000045],[-158.99286861899995,56.785142320000105],[-158.97606360599994,56.78485748900009],[-158.97919674399992,56.80573151200004],[-158.97105872299989,56.8275414080001],[-158.9577123689999,56.84247467700014],[-158.94501705599993,56.84292226800012],[-158.91100012899986,56.817694403000175],[-158.87364661399994,56.79783763200008],[-158.84894771999996,56.78937409100002],[-158.81468665299988,56.78143952000006],[-158.7807511059999,56.77753327000006],[-158.75694739499994,56.78115469000012],[-158.7437231109999,56.786322333000136],[-158.72870846299986,56.78937409100002],[-158.69859778599985,56.79108307500003],[-158.68146725199992,56.78660716400007],[-158.65575110599985,56.767645575000145],[-158.6396378249999,56.763739325000145],[-158.6539200509999,56.80536530200011],[-158.65379798099988,56.81720612200009],[-158.65143795499986,56.82648346600014],[-158.65282141799995,56.83624909100008],[-158.6824438139999,56.86933014500011],[-158.68907630099994,56.88450755400011],[-158.68895423099988,56.93960195500016],[-158.6948949859999,56.96918366100011],[-158.69440670499992,56.97980377800015],[-158.6880590489999,57.00702545800006],[-158.68211829299986,57.022040106000176],[-158.65208899599992,57.05975983300006],[-158.60789954299992,57.100978908000016],[-158.31244869699992,57.314886786000116],[-158.3007706369999,57.31928131700001],[-158.28437252499992,57.322943427000055],[-158.18268795499995,57.36200592700011],[-158.05809485599988,57.36709219000012],[-158.0636693999999,57.377183335],[-158.07347571499992,57.38153717699999],[-158.08588619699992,57.382066148000085],[-158.0990697909999,57.380764065000065],[-158.0796606109999,57.39663320500009],[-158.01707923099985,57.428534247000115],[-157.99632727799988,57.44623444200011],[-157.96129309799986,57.48419830900003],[-157.94074459499993,57.49746328300016],[-157.87279212099986,57.51361725500012],[-157.7866104809999,57.55609772300009],[-157.75776119699987,57.564276434000085],[-157.73595130099994,57.55882396000006],[-157.72297115799995,57.564764716000084],[-157.70966549399992,57.56867096600008],[-157.6806534499999,57.572495835],[-157.69163977799988,57.55792877800015],[-157.68321692599994,57.54010651200009],[-157.65278072799987,57.50360748900014],[-157.66661536399988,57.48920319200006],[-157.65672766799986,57.483587958000086],[-157.5093888009999,57.47626373900005],[-157.51366126199986,57.46649811400012],[-157.51622473899988,57.46263255400011],[-157.47895260299993,57.48309967699999],[-157.44550533799995,57.48330312700013],[-157.42870032499994,57.4852562520001],[-157.4138077459999,57.48993561400001],[-157.3955785799999,57.50242747600011],[-157.3951309889999,57.512762762000115],[-157.40741939999995,57.522040106000176],[-157.42743893099993,57.53156159100017],[-157.41844641799992,57.539455471000124],[-157.4077042309999,57.54604726800004],[-157.39806067599994,57.55414459800015],[-157.3920792309999,57.56631094000012],[-157.40709387899994,57.56126536700001],[-157.43944251199994,57.55658600500008],[-157.4547826809999,57.55206940300004],[-157.44371497299989,57.53729889500015],[-157.4197485019999,57.51264069200014],[-157.4138077459999,57.49746328300016],[-157.5139054029999,57.509751695000105],[-157.53355872299989,57.50731028899999],[-157.5434057279999,57.50031159100012],[-157.55610104099995,57.49481842700008],[-157.5695694649999,57.4911970070001],[-157.58173580599993,57.48993561400001],[-157.59540768099995,57.49323151200003],[-157.59752356699988,57.50096263200005],[-157.5912979809999,57.51788971600003],[-157.58726966099994,57.563177802000055],[-157.59064693899995,57.584214585],[-157.60216223899988,57.603501695000105],[-157.60350501199989,57.60854726800015],[-157.6007787749999,57.61298248900012],[-157.5986221999999,57.61782461100001],[-157.60216223899988,57.624009507000075],[-157.60753333199992,57.62799713700015],[-157.61827551999988,57.63410065300003],[-157.62267005099994,57.63764069200012],[-157.63007564999992,57.64105866100011],[-157.6389867829999,57.640448309000156],[-157.64476477799988,57.636664130000135],[-157.6431371739999,57.63056061400005],[-157.62608801999986,57.613470770000035],[-157.6501358709999,57.61367422100007],[-157.67194576699995,57.61810944200015],[-157.69041907499985,57.62628815300015],[-157.7045792309999,57.63764069200012],[-157.70990963399996,57.65253327000006],[-157.71003170499992,57.674017645],[-157.70653235599994,57.69537995000014],[-157.70116126199989,57.709662177000055],[-157.7088110019999,57.729925848000065],[-157.6983536449999,57.75946686400012],[-157.6670629549999,57.818915106000155],[-157.64460201699987,57.87824127800003],[-157.63666744699992,57.90936920800014],[-157.6301163399999,57.978461005000135],[-157.61518307199987,58.04116445500013],[-157.61009680899986,58.09235260600009],[-157.6055395169999,58.10521067900011],[-157.5912979809999,58.12738678600009],[-157.57945716099994,58.14036692900008],[-157.55329342399986,58.16205475500006],[-157.54352779899986,58.17584870000014],[-157.51976477799985,58.167385158000044],[-157.48578854099992,58.165472723000065],[-157.45164954299992,58.16876862200012],[-157.42743893099993,58.17584870000014],[-157.40965735599994,58.188625393],[-157.39875240799986,58.199530341000084],[-157.3842260409999,58.207098700000024],[-157.35545813699989,58.20994700700008],[-157.19432532499988,58.193915106000176],[-157.1804093089999,58.1894391950001],[-157.17064368399983,58.18268463700018],[-157.16405188699989,58.175116278000026],[-157.15538489499986,58.16950104400003],[-157.13947506399984,58.168402411],[-157.16331946499994,58.19155508000013],[-157.18708248599995,58.204901434000035],[-157.3475235669999,58.239203192],[-157.37962805899988,58.237250067000055],[-157.43354244699992,58.221909898000106],[-157.45746822799987,58.22089264500015],[-157.48265540299994,58.23041413000014],[-157.52904212099992,58.256008205],[-157.5453995429999,58.27358633000012],[-157.53730221299992,58.29189687700002],[-157.5684708319999,58.320746161000116],[-157.56208248599987,58.36367422100001],[-157.5026749339999,58.46369049700014],[-157.45787512899986,58.507879950000024],[-157.4361466139999,58.52163320500012],[-157.38251705599993,58.536363023000135],[-157.35859127499995,58.546372789000095],[-157.2672826809999,58.62026601800003],[-157.13434811099995,58.68683502800012],[-157.11522376199989,58.69965241100014],[-157.0917862619999,58.709784247000094],[-156.99608313699994,58.72382233300005],[-156.96918697799987,58.73224518400009],[-156.94086666599992,58.737534897999986],[-156.94086666599992,58.744370835],[-156.97834225199995,58.73899974200005],[-157.02367102799985,58.726507880000106],[-157.06187903599994,58.7262230490001],[-157.07799231699985,58.75739166900008],[-157.06879635299993,58.778469143],[-157.00226803299992,58.83999258000007],[-157.02550208199992,58.86347077000012],[-157.0226944649999,58.86969635600009],[-157.0097143219999,58.881537177000055],[-156.9885961579999,58.89520905199999],[-156.98534094999994,58.90326569200012],[-156.9855850899999,58.91014232000013],[-156.9873754549999,58.91469961100008],[-156.9885961579999,58.91571686400014],[-156.9824112619999,58.94334544500005],[-156.97630774599992,58.953517971000096],[-156.96129309799989,58.96344635600009],[-156.92210852799985,58.97622304900013],[-156.88251705599993,58.983954169000135],[-156.86034094999985,58.99388255400006],[-156.8516332669999,59.01821523600001],[-156.8514298169999,59.077093817],[-156.84288489499988,59.10321686400014],[-156.82286536399994,59.122626044000135],[-156.8000382149999,59.13873932500003],[-156.78319251199989,59.15521881700012],[-156.85362708199992,59.119940497000165],[-156.86510169199988,59.111232815],[-156.86725826699995,59.10272858300006],[-156.87804114499988,59.078355210000026],[-156.88683020699995,59.067938544000114],[-156.88463294199994,59.055405992000104],[-156.88044186099987,59.0416527360001],[-156.87877356699988,59.03237539300015],[-156.88971920499986,59.01251862200006],[-156.91010494699992,58.997259833000086],[-156.93541419199988,58.987494208000115],[-156.99181067599994,58.98175690300015],[-157.0158178379999,58.97406647300012],[-157.03490149599986,58.95941803600011],[-157.05072994699992,58.936183986000025],[-157.06956946499994,58.899725653000054],[-157.0844620429999,58.88666413000006],[-157.1355688139999,58.877346096000124],[-157.25446529899995,58.84048086100017],[-157.3731176419999,58.82477448100009],[-157.38683020699992,58.820868231000084],[-157.40021725199992,58.81549713700004],[-157.41002356699988,58.80951569200012],[-157.42402096299992,58.80304596600002],[-157.47520911399988,58.79962799700011],[-157.56817851299982,58.747893215000126],[-157.65745971699988,58.7361867180001],[-157.81418190499988,58.68770884400011],[-157.9780981109999,58.647528387000094],[-158.15367591099985,58.613999742000075],[-158.20335852799985,58.612982489],[-158.26301021999996,58.623521226000086],[-158.31586666599992,58.64655182500004],[-158.34544837099983,58.68292877800011],[-158.3358048169999,58.70148346600002],[-158.3452856109999,58.724066473000015],[-158.3635961579999,58.74461497600013],[-158.38019771999993,58.75739166900008],[-158.40831458199995,58.77008698100006],[-158.5461319649999,58.799261786],[-158.55772864499994,58.806463934000035],[-158.56615149599992,58.81948476800002],[-158.56566321499992,58.830633856000034],[-158.5596410799999,58.83999258000007],[-158.5515030589999,58.847398179000045],[-158.53803463399993,58.85626862200009],[-158.5284317699999,58.86090729400003],[-158.5199682279999,58.86733633000013],[-158.50995846299992,58.881537177000055],[-158.49547278599988,58.91168854400017],[-158.4888402989999,58.92251211100007],[-158.4992569649999,58.94879791900009],[-158.47748775899993,58.96320221600014],[-158.42113196499986,58.977118231000034],[-158.43150794199988,58.979437567],[-158.4394018219999,58.98354726800015],[-158.44322669199994,58.98969147300013],[-158.4416397779999,58.99823639500015],[-158.45152747299994,58.997463283000044],[-158.46051998599995,58.994777736000124],[-158.46861731699988,58.990220445000105],[-158.47577877499992,58.983954169000135],[-158.4975072909999,58.993963934000035],[-158.4913223949999,59.001532294000086],[-158.45872962099986,59.01471588700003],[-158.44355221299986,59.025336005000085],[-158.42430579299992,59.03278229400014],[-158.40343176999988,59.037176825000024],[-158.38329016799992,59.0385602890001],[-158.17280025899993,59.013006903000026],[-158.13715572799984,58.99945709800006],[-158.1046036449999,58.979885158000094],[-158.07856197799993,58.95669179900016],[-158.06952877499992,58.94330475500005],[-158.0706274079999,58.92584870000009],[-158.06427975199995,58.908270575000145],[-158.05683346299986,58.899115302],[-158.04450436099992,58.88837311400007],[-158.03014075399994,58.87905508000013],[-158.01707923099985,58.87409088700018],[-158.0173233709999,58.88666413000006],[-158.01386471299992,58.895697333000086],[-158.0066625639999,58.900824286],[-157.99535071499992,58.902044989],[-157.99535071499992,58.908270575000145],[-158.0280655589999,58.90753815300003],[-158.04133053299995,58.911444403000026],[-158.05060787699986,58.92251211100007],[-158.0341690749999,58.94281647300007],[-158.0523168609999,58.971340236000074],[-158.1021215489999,59.01471588700003],[-158.14024817599986,59.03620026200015],[-158.23383541599992,59.03921133000016],[-158.31663977799994,59.06244538],[-158.40269934799994,59.07367584800009],[-158.4416397779999,59.086981512000094],[-158.4732152989999,59.10480377800017],[-158.4893285799999,59.11782461100007],[-158.49628658799986,59.131415106000034],[-158.4988907539999,59.14386627800006],[-158.50556393099993,59.145982164000046],[-158.51439368399988,59.14500560099999],[-158.52354895699986,59.148423569999984],[-158.52867591099988,59.15615469],[-158.53083248599987,59.16380442900014],[-158.53449459499993,59.170599677000055],[-158.5440567699999,59.17576732000007],[-158.54906165299985,59.15766022300014],[-158.54747473899994,59.14484284100003],[-158.5372208319999,59.13719310099999],[-158.5161026679999,59.13475169500004],[-158.51671301999994,59.11151764500012],[-158.4572647779999,59.07587311400009],[-158.46214758999986,59.05280182500012],[-158.48078365799995,59.04409414300012],[-158.52118893099993,59.037339585],[-158.5372208319999,59.02558014500012],[-158.5405167309999,59.02057526200018],[-158.54259192599994,59.01561107000013],[-158.54369055899988,59.009711005],[-158.5440567699999,59.00165436400006],[-158.54731197799995,58.99347565300015],[-158.55431067599994,58.988918361000096],[-158.5613500639999,58.985500393000095],[-158.5778702459999,58.95917389500009],[-158.6089981759999,58.933172919000114],[-158.64439856699988,58.911281643000066],[-158.6884659499999,58.895575262000094],[-158.70909583199992,58.88287995000005],[-158.7294815749999,58.873602606000084],[-158.7464086579999,58.87783437700001],[-158.75336666599986,58.890448309000085],[-158.7480362619999,58.900213934000035],[-158.73749752499992,58.911444403000026],[-158.72899329299992,58.92869700700013],[-158.76264400899993,58.94367096600017],[-158.77782141799992,58.9526227890001],[-158.79047604099986,58.96344635600009],[-158.7541397779999,58.97215403899999],[-158.73973548099988,58.979885158000094],[-158.7464086579999,58.99481842700014],[-158.82526607999995,58.977118231000034],[-158.81049557199995,58.965969143],[-158.77204342399995,58.92047760600003],[-158.76996822799993,58.911078192000126],[-158.7938940089999,58.81635163000014],[-158.78355872299989,58.79950592700013],[-158.78246008999994,58.783880927000055],[-158.7879532539999,58.76976146000011],[-158.79731197799993,58.75739166900008],[-158.81187903599994,58.74445221600016],[-158.82795162699992,58.73627350500008],[-158.84691321499992,58.73200104400014],[-158.8699438139999,58.73069896000006],[-158.87791907499982,58.732367255000085],[-158.88560950399986,58.73680247600006],[-158.89130611899995,58.74335358300011],[-158.89350338399993,58.75116608300011],[-158.89008541599992,58.76361725500014],[-158.88154049399992,58.768459377000035],[-158.8593643869999,58.77167389500009],[-158.81977291599992,58.78392161700004],[-158.8043106759999,58.794663804000045],[-158.80785071499986,58.80951569200012],[-158.8271378249999,58.81940338700003],[-158.85102291599983,58.82021719000015],[-158.87323971299992,58.81317780200008],[-158.88731848899988,58.79962799700011],[-158.86143958199986,58.79946523600014],[-158.87413489499994,58.789740302],[-158.90033932199995,58.77895742400009],[-158.91462154899995,58.775376695000105],[-158.91295325399994,58.75763580900003],[-158.9084366529999,58.741197007000146],[-158.8893958519999,58.70629295300015],[-158.85159509699986,58.67709056800014],[-158.82015104499993,58.61403374900014],[-158.7938940089999,58.5693220070001],[-158.79208704599986,58.570416545000064],[-158.77904212099992,58.562892971000096],[-158.77265377499992,58.55878327000014],[-158.77000891799992,58.54913971600017],[-158.7714330719999,58.52464427300005],[-158.77000891799992,58.51845937700006],[-158.7584936189999,58.507269598000065],[-158.7459203769999,58.50511302300008],[-158.73363196499994,58.50625234600001],[-158.72284908799992,58.50482819200012],[-158.70868893099993,58.49225495000006],[-158.72008216099988,58.48358795800014],[-158.73969479099992,58.47418854400003],[-158.7597550119999,58.447088934000085],[-158.78205318899995,58.43716054900009],[-158.80711829299992,58.43073151200018],[-158.82526607999995,58.42902252800017],[-158.82526607999995,58.42218659100015],[-158.79731197799993,58.42218659100015],[-158.8296606109999,58.40477122599999],[-158.88173397899993,58.39962014000012],[-158.93976118199987,58.39807054100008],[-159.0148557299999,58.414548234000094],[-159.05125891799992,58.42470937700008],[-159.07164466099994,58.44269440300011],[-159.05842037699986,58.43838125200001],[-159.04633541599986,58.43829987200002],[-159.0366104809999,58.44379303600006],[-159.0307104159999,58.45636627800014],[-159.0557348299999,58.45587799700014],[-159.07469641799992,58.458726304000024],[-159.08368893099993,58.46906159100011],[-159.07848059799994,58.49111562700001],[-159.11461341099988,58.49005768400015],[-159.15099036399988,58.518784898000106],[-159.20885169199988,58.58673737200017],[-159.29893958199992,58.67234935100007],[-159.3849544269999,58.75582395500013],[-159.4827367829999,58.81606679900001],[-159.5069067049999,58.82217031500009],[-159.51793372299994,58.82632070500013],[-159.54503333199986,58.84430573100014],[-159.55146236899986,58.847398179000045],[-159.57929439999992,58.846177476000136],[-159.59406455699988,58.831711013000174],[-159.6337784499999,58.83470286699999],[-159.6609183059999,58.839442828000145],[-159.63024296099988,58.85271509600007],[-159.6009682339999,58.88545449499999],[-159.5869406289999,58.90746285400002],[-159.6174865649999,58.93132376100015],[-159.63814764199995,58.93509772800011],[-159.65133547499988,58.93555416800005],[-159.68018255099992,58.93175312800005],[-159.70964888199987,58.92865685700009],[-159.7381272699999,58.92824720500012],[-159.7287624069999,58.918736967000186],[-159.72517723099992,58.91043894400014],[-159.7346245879999,58.892691828000075],[-159.75573160899995,58.88146798200001],[-159.76822937099988,58.86553133500008],[-159.74332894999986,58.854477447000036],[-159.75292350299986,58.84082576900009],[-159.7659728439999,58.83136932200013],[-159.77692652699994,58.84877947300013],[-159.79850022499988,58.84983291100014],[-159.80703976799987,58.84466227100008],[-159.80597769299987,58.83746530100005],[-159.7994846389999,58.83146084800008],[-159.7959200539999,58.82316276400014],[-159.7861806329999,58.817039471000115],[-159.79485136499986,58.80027681800006],[-159.81669794099992,58.79383159600003],[-159.83995520699992,58.79266998900012],[-159.8663598689999,58.779123037000105],[-159.90612961199994,58.76540578800014],[-159.9114801099999,58.77580083900013],[-159.92953933699994,58.790007464],[-159.96296139199995,58.820054429],[-159.9852188789999,58.835150458],[-159.9902237619999,58.83999258000007],[-159.9833477279999,58.849227542000065],[-159.98330268099988,58.86080684900015],[-159.98924518799987,58.86610987199999],[-159.99714107999992,58.87409088700018],[-160.01837954599995,58.88037811900006],[-160.0458151009999,58.882590479000086],[-160.07056477899988,58.879597322000116],[-160.08487286399992,58.875601642000035],[-160.08893569999987,58.868909665],[-160.09222354699986,58.863216499000046],[-160.09686256499992,58.85722361300007],[-160.11291204799986,58.861107008000126],[-160.13231360599985,58.86640045800005],[-160.1530951729999,58.86128468400009],[-160.16525347799995,58.86438193200011],[-160.1502486589999,58.88093824000004],[-160.15807044199988,58.89931875200012],[-160.15220167599986,58.9161040530001],[-160.2018564789999,58.90841655800007],[-160.22233534299994,58.90220448000015],[-160.22886944099994,58.89081087800015],[-160.2464417299999,58.886895905000145],[-160.25306271999992,58.898674049000185],[-160.25719153599988,58.91193268400012],[-160.25409908799986,58.93598053600005],[-160.2566625639999,58.94623444200008],[-160.26768958199992,58.95038483300011],[-160.28765062699995,58.93239836100004],[-160.30146291199995,58.94507065800014],[-160.3289308459999,58.941428804],[-160.33112866999994,58.951719836000095],[-160.3192032539999,58.95669179900016],[-160.31733150899993,58.96515534100011],[-160.30122585099986,58.97166411200014],[-160.29602236399992,58.97697302400012],[-160.26753894699988,58.97749547000008],[-160.25719153599988,58.983954169000135],[-160.25511633999992,58.990301825000174],[-160.25804602799985,58.99542877800009],[-160.26459713399993,59.00165436400006],[-160.26939856699994,59.01170482000013],[-160.28038489499988,59.01850006700006],[-160.2929174469999,59.023667710000055],[-160.30219479099992,59.028957424000126],[-160.30687415299985,59.032416083000136],[-160.31725012899994,59.0377464860001],[-160.3223363919999,59.04230377800015],[-160.33472312399985,59.0538373430001],[-160.32087154899992,59.06134674700005],[-160.32542883999986,59.06655508000013],[-160.3521691309999,59.07065938000009],[-160.40153557299988,59.04884353100009],[-160.52951963899994,59.00190395800011],[-160.66715575099994,58.94764329000013],[-160.69415067199992,58.92824736600015],[-160.7684956469999,58.89642594200013],[-160.8337196629999,58.81254635000014],[-160.82748648799992,58.83726516500009],[-160.82936804899992,58.85264654100017],[-160.84244190899994,58.8679617450001],[-160.8678692699999,58.87881738800008],[-160.88855118499993,58.88410192800008],[-160.90775035699988,58.87639110800016],[-160.96141396899986,58.87324700500006],[-160.97939498199992,58.864130509000105],[-160.99333381699995,58.84668766400016],[-161.03322738799991,58.84247571600018],[-161.07617725199992,58.817573406000136],[-161.10958595599988,58.81150796300001],[-161.1375873099999,58.79917279300009],[-161.17321814299987,58.79756598500002],[-161.1797006709999,58.78272586100014],[-161.24407419899993,58.78274814900011],[-161.27197332299988,58.7870929710001],[-161.29124438999992,58.79260970700001],[-161.27863521999996,58.810248114000146],[-161.27135169199985,58.8126488300001],[-161.27135169199985,58.820054429],[-161.30040442599994,58.81464264500011],[-161.30614173099988,58.8126488300001],[-161.31029212099992,58.80548737200014],[-161.31257076699987,58.796454169000135],[-161.31065833199995,58.788641669000135],[-161.30243893099995,58.785345770000035],[-161.28978163799994,58.777946364000016],[-161.26295270799994,58.77668981300015],[-161.2901098299999,58.77045319200006],[-161.31051327299994,58.7480743710001],[-161.35746944399992,58.72624528200007],[-161.36713185899987,58.71146943300008],[-161.3745822379999,58.69970984800009],[-161.3762219999999,58.686801874000125],[-161.37450110599988,58.67234935100007],[-161.36190465799993,58.66845776000004],[-161.3271007379999,58.67828065800001],[-161.30128495799988,58.681817701000014],[-161.36388763599984,58.65964736900018],[-161.48832513799994,58.640392314000124],[-161.53599550999988,58.62329288100009],[-161.55028262499988,58.60655561700019],[-161.5623725989999,58.60202466400002],[-161.58503170499995,58.60761139500014],[-161.59691321499992,58.607163804000045],[-161.61266028599988,58.604925848000065],[-161.63975989499988,58.595160223000114],[-161.6656388009999,58.59080638200014],[-161.67634029899995,58.58539459800009],[-161.68525143099995,58.577826239000146],[-161.69310462099992,58.5693220070001],[-161.70750891799992,58.561183986000096],[-161.72667395699986,58.55849844],[-161.76484127499992,58.55939362200011],[-161.75218665299988,58.57709381700001],[-161.72052975199986,58.59926992400007],[-161.7101944649999,58.613999742000075],[-161.72350012899992,58.625555731000084],[-161.73814856699994,58.63450755400011],[-161.7564184239999,58.643133856000034],[-161.7650854159999,58.64508698100017],[-161.76170813699986,58.63788483300014],[-161.76134192599986,58.62909577000006],[-161.76707923099988,58.617743231000084],[-161.7628850279999,58.590986179000176],[-161.77953040299994,58.61261627800009],[-161.79767818899995,58.62323639500012],[-161.83430122999988,58.626482401000096],[-161.9128453099999,58.63186297900016],[-161.9365160069999,58.6296918500001],[-161.95968514399988,58.62328157600013],[-161.9801398319999,58.62837399700014],[-162.01209927099993,58.620714223000064],[-162.03582065299986,58.6258511700001],[-162.0771713779999,58.62089330800013],[-162.13776607999995,58.63385651200015],[-162.17605360699991,58.64492345100014],[-162.12177508399984,58.663856137000046],[-162.06708736899992,58.66665273600008],[-162.04600989499988,58.68292877800011],[-162.03010006399995,58.67593008000012],[-161.99030514199984,58.679103908000094],[-161.9659317699999,58.674750067],[-161.95445716099988,58.67645905200011],[-161.94977779899995,58.67548248900014],[-161.94920813699989,58.673041083],[-161.95038814999992,58.66425202000013],[-161.94977779899995,58.66181061400001],[-161.9435522129999,58.65688711100013],[-161.93993079299992,58.65273672100001],[-161.9344376289999,58.649644273000106],[-161.92247473899988,58.64813873900005],[-161.89110266799992,58.65371328300007],[-161.85871334499993,58.669419664000046],[-161.8428442049999,58.69163646],[-161.8674885109999,58.704048422000156],[-161.86541846299986,58.71626323400007],[-161.82188880099994,58.733547268],[-161.80980383999994,58.74095286699999],[-161.79584713399987,58.753892319999984],[-161.78624426999988,58.758734442000055],[-161.7586156889999,58.75739166900008],[-161.71737550099988,58.75484288900004],[-161.67739790599995,58.77352666800009],[-161.65558834499993,58.806463934000035],[-161.68484021299986,58.81858586099999],[-161.7121632939999,58.81297008100002],[-161.73353055099992,58.807902914000074],[-161.75311722499995,58.78986975700014],[-161.7621258929999,58.772668403000026],[-161.77473687299988,58.770506674000146],[-161.76264400899996,58.80499909100018],[-161.75926673099994,58.81549713700004],[-161.7586156889999,58.82632070500013],[-161.76280676999988,58.83563873900009],[-161.7696313119999,58.848728061000045],[-161.77759587599994,58.85771446299999],[-161.78552110099992,58.87761920500016],[-161.79066853599994,58.89986680499999],[-161.7927953769999,58.96478913],[-161.79491126199989,58.97451406500012],[-161.7995499339999,58.983954169000135],[-161.80772864499994,58.98956940300014],[-161.83470618399988,59.00287506700006],[-161.84052486899992,59.00820547100012],[-161.85163326699995,59.02317942900007],[-161.85582434799989,59.033758856000034],[-161.85045325399994,59.0385602890001],[-161.84557044199988,59.03974030200013],[-161.8359268869999,59.04486725500006],[-161.82970130099994,59.046047268000095],[-161.82209225199986,59.04437897300006],[-161.8212377589999,59.040432033000066],[-161.82225501199986,59.03587474200014],[-161.82005774599986,59.03237539300015],[-161.81794186099995,59.03009674700017],[-161.8159073559999,59.02635325700014],[-161.81261145699986,59.02204010600003],[-161.80638587099992,59.018133856000034],[-161.7985733709999,59.017482815000086],[-161.77167721299986,59.02558014500012],[-161.74242102799994,59.03021881700015],[-161.72516842399995,59.035101630000106],[-161.69404049399992,59.05491771000011],[-161.61400305899986,59.08075592700005],[-161.60899817599991,59.08551666900014],[-161.60484778599988,59.09638092700014],[-161.6003311839999,59.101263739],[-161.59447180899988,59.101996161000116],[-161.57774817599994,59.09992096600012],[-161.57306881399992,59.101263739],[-161.56916256399992,59.11505768400012],[-161.57787024599992,59.12051015800012],[-161.61030025899993,59.12055084800012],[-161.6132706369999,59.12396881700015],[-161.6164037749999,59.131415106000034],[-161.6232804029999,59.138820705],[-161.63788814999992,59.14223867400003],[-161.64671790299988,59.139349677],[-161.67100989499986,59.125311591000056],[-161.68293209499987,59.12055084800012],[-161.72313391799992,59.11579010600003],[-161.84052486899992,59.12055084800012],[-161.87348385299993,59.11102936400014],[-161.88837643099995,59.0943871110001],[-161.8809708319999,59.078924872000165],[-161.84740149599992,59.07330963700015],[-161.84740149599992,59.06655508000013],[-161.89647376199989,59.075384833],[-161.93944251199994,59.09857819200011],[-161.97411048099988,59.131415106000034],[-162.0295304029999,59.23012929900007],[-162.04291744699987,59.248358466000134],[-162.05150305899988,59.27016836100002],[-162.0386856759999,59.28937409100016],[-162.0200089179999,59.30174388200011],[-161.99823971299992,59.312933661000116],[-162.03620357999995,59.2818871110001],[-162.04364986899992,59.26577383000012],[-162.03498287699995,59.25088125200007],[-162.0090225899999,59.23753489800007],[-161.98310299399992,59.25372955900012],[-161.96825110599988,59.28082916900014],[-161.97089596299986,59.306708075000145],[-161.96434485599988,59.31533437700015],[-161.96247311099987,59.32807038000011],[-161.96471106699988,59.341945705],[-161.97089596299986,59.353908596000124],[-161.9594620429999,59.37506745000003],[-161.94660396999987,59.38776276200009],[-161.92943274599995,59.39386627800008],[-161.9051000639999,59.39545319200011],[-161.88316809799989,59.42226797100001],[-161.86754309799989,59.4330915390001],[-161.8535863919999,59.422186591000035],[-161.84740149599992,59.422186591000035],[-161.83759518099993,59.43992747600013],[-161.8212377589999,59.46336497600011],[-161.80162512899994,59.47919342700014],[-161.7709854809999,59.46995677299999],[-161.75572669199985,59.47264232000005],[-161.74079342399992,59.47870514500015],[-161.73066158799995,59.484808661000145],[-161.71723385299995,59.495835679],[-161.71393795499992,59.501369533000016],[-161.85924231699988,59.62811920800008],[-161.86725826699995,59.655503648000135],[-161.87621008999983,59.66771067900011],[-161.8792211579999,59.679592190000065],[-161.87983150899993,59.689846096000096],[-161.88154049399992,59.697170315],[-161.88963782499982,59.706244208],[-161.9090063139999,59.71881745000008],[-161.99413001199989,59.81110260600003],[-162.08177649599992,59.87787506700008],[-162.09455318899995,59.89402903900004],[-162.1012670559999,59.91559479400014],[-162.10008704299983,59.95111725500012],[-162.10875403599988,59.96515534100016],[-162.15807044199994,59.97650788000006],[-162.17878170499992,59.99042389500012],[-162.19623775899993,60.008246161],[-162.2098282539999,60.02545807500003],[-162.23106848899985,60.06439850500011],[-162.2400610019999,60.08978913000014],[-162.23436438699986,60.1012230490001],[-162.22406979099986,60.1054548200001],[-162.21418209499996,60.11562734600015],[-162.2066544259999,60.127997137000094],[-162.20360266799992,60.13873932500012],[-162.20319576699987,60.14752838700016],[-162.2035619779999,60.15330638200014],[-162.20738684799994,60.159613348000065],[-162.24555416599992,60.194769598000114],[-162.25141001599988,60.201419183],[-162.2212621739999,60.201849677],[-162.1862686839999,60.20986562700013],[-162.1615626019999,60.21636674000017],[-162.1611586849999,60.23247786200013],[-162.15660559799989,60.24437083500006],[-162.14903723899994,60.24518463700015],[-162.1616918609999,60.250677802],[-162.17524166599986,60.25063711100001],[-162.20360266799992,60.24518463700015],[-162.2005102199999,60.24152252800012],[-162.1983536449999,60.238267320000084],[-162.1815011419999,60.232506079000174],[-162.1810439759999,60.22311873900016],[-162.2104386059999,60.21796295800008],[-162.24889075399994,60.21474844000004],[-162.27855383999986,60.22345612200008],[-162.27257239499994,60.24518463700015],[-162.29023189999995,60.242499091000084],[-162.29808508999992,60.235907294000036],[-162.30011959499984,60.22699616100008],[-162.2998754549999,60.217230536000145],[-162.29755611899986,60.21417877800015],[-162.2926733059999,60.21190013200008],[-162.28779049399992,60.210760809000035],[-162.28559322799993,60.21108633000016],[-162.28453528599985,60.19696686400012],[-162.28559322799993,60.19676341399998],[-162.29112708199995,60.19660065300011],[-162.29832923099988,60.18919505400014],[-162.30011959499984,60.180487372000144],[-162.28929602799988,60.17633698100009],[-162.25767673899992,60.173847152000164],[-162.23651868299987,60.16275217300008],[-162.22872560899987,60.145585875],[-162.23841996499985,60.13561663500008],[-162.2639402509999,60.127293915000095],[-162.28835510599993,60.12159373000016],[-162.2977819799999,60.116424021000064],[-162.31724301799994,60.113060354000126],[-162.3376510909999,60.129653327000156],[-162.34312903599994,60.13939036700005],[-162.3668920559999,60.162543036],[-162.37279212099995,60.170355536],[-162.37494869699995,60.17633698100009],[-162.3622006249999,60.180907576],[-162.3535863919999,60.18756745000011],[-162.34764563699986,60.19061920799999],[-162.34044348899994,60.20766836100015],[-162.34166419199988,60.21898021000013],[-162.3500463529999,60.228949286000116],[-162.36436926999986,60.241766669000135],[-162.41254635299995,60.27252838700003],[-162.43016516799986,60.275213934000114],[-162.44697018099987,60.281968492000075],[-162.45857960699988,60.2950855910001],[-162.44239243899992,60.30958829200012],[-162.39047498899993,60.329466372000056],[-162.33324133999992,60.40021393400009],[-162.31920325399994,60.4225934920001],[-162.31354732999984,60.44721100500012],[-162.30308997299989,60.47085195500013],[-162.27851314999987,60.48566315300011],[-162.24998938699986,60.496649481000176],[-162.22752844999988,60.508978583000115],[-162.2243546209999,60.51935455900012],[-162.2274063789999,60.53192780200012],[-162.2287491529999,60.54242584800009],[-162.2206925119999,60.54682038000006],[-162.21996008999992,60.55215078300014],[-162.22215735599988,60.57794830900015],[-162.22411048099985,60.587836005000085],[-162.20771236899995,60.58893463700012],[-162.19163977799988,60.59389883000007],[-162.10973059799994,60.63141510600009],[-162.0978490879999,60.639349677000055],[-162.06135006399992,60.65102773600013],[-161.96711178299995,60.645656643000095],[-161.94298255099991,60.669745184000114],[-161.9578344389999,60.675279039000046],[-161.9634496739999,60.67658112200003],[-161.9449356759999,60.685003973000086],[-161.88154049399992,60.703924872000115],[-161.91059322799993,60.71369049700014],[-161.9382218089999,60.70766836100013],[-161.96503658799992,60.69635651200015],[-162.0722550119999,60.66522858300005],[-162.09443111899986,60.669745184000114],[-162.08824622299989,60.68691640800012],[-162.11510169199985,60.71279531500015],[-162.15375729099992,60.73248932500009],[-162.18317623599995,60.73114655200011],[-162.12995357999995,60.70140208499999],[-162.12169348899988,60.69399648600002],[-162.12128658799992,60.67523834800015],[-162.12336178299986,60.658921617000125],[-162.13316809799989,60.64740631700008],[-162.1837865879999,60.63963450699999],[-162.23753821499992,60.62474192900014],[-162.26166744699987,60.62132396000011],[-162.27631588399987,60.61294179900006],[-162.28412838399987,60.59365469000012],[-162.28937740799995,60.57192617400015],[-162.29645748599992,60.55646393400004],[-162.29979407499994,60.55117422100015],[-162.3061010409999,60.5331891950001],[-162.36591549399992,60.47662995000011],[-162.37494869699995,60.464911200000024],[-162.3772680329999,60.45819733300008],[-162.37926184799986,60.442531643],[-162.3824356759999,60.436957098000086],[-162.39415442599991,60.43309153899999],[-162.42894446499986,60.436957098000086],[-162.44123287699992,60.42340729400002],[-162.43602454299992,60.41254303600014],[-162.42402096299992,60.40021393400009],[-162.41596432199995,60.38239166900003],[-162.45201575399992,60.37075429900001],[-162.46479244699992,60.372381903000026],[-162.45689856699988,60.38857656500009],[-162.46434485599983,60.39598216399998],[-162.49946041599992,60.381984768],[-162.50922604099986,60.37287018400012],[-162.4978735019999,60.36127350500003],[-162.5125219389999,60.354925848000065],[-162.53779049399986,60.351019598000086],[-162.54999752499992,60.34446849200002],[-162.55951900899993,60.33746979400011],[-162.5678197909999,60.3341738950001],[-162.57489986899986,60.336900132000046],[-162.58043372299989,60.347601630000085],[-162.5856827459999,60.33942291900014],[-162.59068762899994,60.335353908],[-162.59752356699994,60.334051825000124],[-162.60834713399993,60.33392975500015],[-162.60834713399993,60.32709381700012],[-162.57673092399995,60.31830475500006],[-162.56676184799989,60.31346263200008],[-162.5911759109999,60.307033596000146],[-162.60090084499993,60.30662669500004],[-162.56220455599993,60.29385000200001],[-162.55370032499988,60.28620026200018],[-162.5501195949999,60.27586497600008],[-162.5521947909999,60.267157294000086],[-162.56000729099992,60.26113515800007],[-162.5735570949999,60.258856512000094],[-162.70331783799986,60.26569245000003],[-162.65733801999988,60.25169505400008],[-162.5584203769999,60.23749420800005],[-162.46918697799993,60.20490143400009],[-162.45026607999992,60.19106679900009],[-162.45380611899992,60.17316315300003],[-162.48180091099994,60.15058014500006],[-162.4932348299999,60.136786200000145],[-162.4978735019999,60.11823151200014],[-162.49299068899995,60.09918854400015],[-162.4831029939999,60.08661530200008],[-162.47553463399987,60.073431708000115],[-162.47736568899995,60.05280182500008],[-162.48521887899994,60.03538646000012],[-162.49644934799994,60.01972077000014],[-162.51024329299995,60.00674062700015],[-162.52582760299993,59.99750397300009],[-162.5786840489999,59.983872789000046],[-162.63975989499988,59.98139069200012],[-162.70038814999992,59.98883698100009],[-162.75169837099986,60.00495026200015],[-162.75279700399992,59.96824778900007],[-162.80797278599994,59.94257233299999],[-163.08763587099992,59.8591169290001],[-163.31647701699995,59.830267645],[-163.6149389309999,59.80084870000009],[-163.8771459629999,59.799546617000104],[-164.09833736899992,59.83368561400001],[-164.12852942599994,59.84267812700004],[-164.15986080599987,59.86456940300015],[-164.1870011059999,59.89150625200004],[-164.2047826809999,59.91559479400014],[-164.21226966099982,59.954982815000115],[-164.18378658799995,59.96865469000006],[-164.0949193999999,59.97768789300006],[-164.0949193999999,59.9845238300001],[-164.1061905589999,59.98379140800015],[-164.11689205599993,59.98444245000012],[-164.1269425119999,59.98680247600008],[-164.1364639959999,59.99135976800002],[-164.13023841099994,59.99408600500008],[-164.1147354809999,60.00495026200015],[-164.1467179029999,60.010443427],[-164.20055091099988,60.034328518000066],[-164.34813391799992,60.06647370000004],[-164.38524329299992,60.084906317000055],[-164.3996475899999,60.087551174000154],[-164.41266842399986,60.09178294500007],[-164.4345596999999,60.110581773000106],[-164.44123287699986,60.114813544000135],[-164.44432532499985,60.11908600500006],[-164.4790746739999,60.14215729400011],[-164.48827063699989,60.15058014500006],[-164.4951879549999,60.15985748900012],[-164.49555416599986,60.16885000200013],[-164.48530025899996,60.17633698100009],[-164.48530025899996,60.18374258000009],[-164.51264400899993,60.19061920799999],[-164.5644425119999,60.21849192900005],[-164.61469479099992,60.23187897300015],[-164.6437882149999,60.248277085000055],[-164.66112219999988,60.266424872000144],[-164.6491593089999,60.278713283000016],[-164.65644283799986,60.28807200700005],[-164.6736547519999,60.29515208500011],[-164.6770727199999,60.30320872600005],[-164.67328854099986,60.31220123900006],[-164.6491593089999,60.33392975500015],[-164.71495520699992,60.300604559000064],[-164.7534887359999,60.28709544500007],[-164.78388424399986,60.29637278900013],[-164.8088272779999,60.3080915390001],[-164.98896236899992,60.341376044000114],[-165.0059708319999,60.34674713700015],[-165.03876705599987,60.37018463700004],[-165.0715225899999,60.384833075000145],[-165.10142981699985,60.406683661],[-165.12913977799988,60.43170807500012],[-165.1432592439999,60.450628973000114],[-165.12157141799992,60.45050690300014],[-165.05382239499988,60.464911200000024],[-165.0339249339999,60.466620184000035],[-165.0239965489999,60.46898021000008],[-165.0197240879999,60.474554755],[-165.01825924399992,60.48236725500008],[-165.0143936839999,60.49282461100016],[-165.00898189999987,60.50193919500005],[-165.00263424399995,60.50584544500005],[-164.98338782499988,60.51007721600017],[-164.97370357999995,60.52041250200008],[-164.97419186099992,60.53363678600011],[-164.9855850899999,60.54682038000006],[-165.01044674399992,60.55451080900017],[-165.16022701699987,60.52195872600011],[-165.17426510299993,60.51552969],[-165.1956274079999,60.50226471600017],[-165.22175045499995,60.49900950700014],[-165.36974036399988,60.512111721],[-165.3843481109999,60.51691315300009],[-165.43122311099992,60.55304596600003],[-165.4116918609999,60.56753164300006],[-165.3839005199999,60.58104075700005],[-165.35411536399988,60.58844635600003],[-165.31427975199992,60.58087799700008],[-165.29771887899994,60.58307526200018],[-165.2819311189999,60.58909739799999],[-165.27013098899994,60.59772370000009],[-165.25890051999994,60.60871002800006],[-165.24885006399995,60.614650783000066],[-165.20396887899992,60.62539297100009],[-165.17113196499994,60.64305247599999],[-165.1187638009999,60.658636786],[-165.08063717399986,60.68170807500014],[-165.02338619699992,60.69668203300007],[-164.99921627499992,60.71137116100009],[-164.9897354809999,60.72968170800014],[-164.99665279899992,60.74518463700014],[-165.03026282499985,60.77619049700009],[-165.0313614569999,60.787014065000086],[-165.0153702459999,60.79144928600006],[-164.99486243399994,60.793198960000055],[-164.98216712099986,60.79633209800012],[-164.97150631399995,60.80304596600016],[-164.9241430329999,60.820542710000105],[-164.8749486969999,60.84878164300009],[-164.89777584499987,60.86933014500011],[-164.94225012899992,60.88963450700014],[-164.95824133999992,60.91681549700005],[-164.93744869699992,60.936468817],[-164.9156388009999,60.92446523600007],[-164.89557857999992,60.901678778000054],[-164.8797501289999,60.88947174700017],[-164.87128658799995,60.886175848000114],[-164.84825598899988,60.87164948100009],[-164.8347875639999,60.86835358300005],[-164.81932532499988,60.87140534100014],[-164.7807511059999,60.895697333000115],[-164.75324459499996,60.90619538],[-164.71104895699992,60.91718170800006],[-164.6684057279999,60.92177969000009],[-164.6395157539999,60.91331614800005],[-164.64207923099988,60.899888414000074],[-164.6856583319999,60.86762116100011],[-164.69758053299995,60.854681708000115],[-164.66913814999992,60.82575104400011],[-164.59638424399995,60.81891510600009],[-164.4648331369999,60.820542710000105],[-164.4290258449999,60.803900458000086],[-164.41637122299989,60.80011627800014],[-164.3754369779999,60.80011627800014],[-164.35749264199995,60.79368724200013],[-164.35155188699989,60.79266998900005],[-164.28355872299983,60.79266998900005],[-164.2708227199999,60.787909247000165],[-164.26768958199992,60.77676015800016],[-164.2681778639999,60.76337311400014],[-164.26622473899988,60.752346096],[-164.25963294199988,60.742132880000064],[-164.2521866529999,60.73493073100003],[-164.24140377499992,60.73114655200011],[-164.22459876199989,60.73114655200011],[-164.23546301999988,60.723211981000055],[-164.23554439999984,60.712632554],[-164.2286270819999,60.70111725500006],[-164.21837317599994,60.69017161699999],[-164.32001705599993,60.66229889500014],[-164.32823645699992,60.656683661000145],[-164.33141028599988,60.65241120000003],[-164.3378393219999,60.640285549000126],[-164.3412979809999,60.63564687700002],[-164.34190833199995,60.632757880000085],[-164.34056555899986,60.624090887000186],[-164.3412979809999,60.62132396000011],[-164.3456518219999,60.62026601800007],[-164.35712643099993,60.62201569200006],[-164.36176510299995,60.62132396000011],[-164.3701879549999,60.61786530200012],[-164.38678951699995,60.61351146000013],[-164.39594479099995,60.60830312700012],[-164.39940344999994,60.60321686400011],[-164.4060766269999,60.58685944200001],[-164.41022701699995,60.58038971600008],[-164.4164526029999,60.576727606000055],[-164.44432532499985,60.56732819200011],[-164.4203588529999,60.55426666900014],[-164.39716549399986,60.560370184000035],[-164.3549698559999,60.594061591000035],[-164.29930579299992,60.62702057500012],[-164.28355872299983,60.639349677000055],[-164.25934811099995,60.65326569200011],[-164.22883053299992,60.65802643400003],[-164.16315670499992,60.656683661000145],[-164.13508053299992,60.66372304900001],[-164.1196182929999,60.68056875200001],[-164.10175533799992,60.718166408000016],[-164.08429928299986,60.73456452000012],[-164.0626114569999,60.74795156500012],[-164.0197647779999,60.76654694200011],[-163.98631751199994,60.77631256700006],[-163.95563717399995,60.779852606000034],[-163.8887833319999,60.779608466000084],[-163.86567135299995,60.777044989000096],[-163.8386938139999,60.76902903900005],[-163.81623287699986,60.75511302300008],[-163.80687415299988,60.73493073100003],[-163.81517493399994,60.71466705900012],[-163.82905025899993,60.69818756700011],[-163.83177649599992,60.683783270000056],[-163.80687415299988,60.669745184000114],[-163.81749426999988,60.65961334800006],[-163.82884680899988,60.65094635600015],[-163.83617102799988,60.63955312700001],[-163.8348282539999,60.62132396000011],[-163.82603919199994,60.607163804000024],[-163.8111059239999,60.59393952000006],[-163.79438229099986,60.58417389500012],[-163.77989661399988,60.58038971600008],[-163.73143469999994,60.582709052000055],[-163.68647213399993,60.58974844000013],[-163.64354407499988,60.6015485700001],[-163.46430416599992,60.67658112200003],[-163.43578040299985,60.697455145],[-163.4291479159999,60.716986395000085],[-163.44188391799995,60.73529694200015],[-163.47166907499994,60.752346096],[-163.45933997299986,60.75409577],[-163.40900631399995,60.752346096],[-163.42430579299992,60.76471588700004],[-163.5436498689999,60.810003973000065],[-163.86152096299992,60.854681708000115],[-163.91283118399994,60.84959544500003],[-163.93040930899988,60.854681708000115],[-163.85285396999993,60.88324616100003],[-163.80894934799989,60.89252350500006],[-163.76593990799995,60.88947174700017],[-163.71825110599988,60.87132396000008],[-163.69762122299986,60.86835358300005],[-163.57843990799995,60.88410065300012],[-163.56273352799988,60.890122789000095],[-163.5560196609999,60.89996979400005],[-163.56358801999988,60.91331614800005],[-163.5794571609999,60.91986725500014],[-163.72508704299992,60.932359117000054],[-163.75641842399995,60.94525788000005],[-163.7454320949999,60.964544989],[-163.72370357999992,60.95661041900003],[-163.70197506399995,60.96430084800015],[-163.68305416599992,60.97894928600006],[-163.66966712099992,60.99188873900005],[-163.70409094999985,60.99966054900007],[-163.7687882149999,60.98045482000011],[-163.80003821499994,60.97821686400011],[-163.7959692049999,60.957709052000084],[-163.8123673169999,60.951971747000115],[-163.83714758999986,60.950018622000144],[-163.85810299399992,60.94098541900014],[-163.8671768869999,60.934149481000034],[-163.88666744699992,60.92796458500005],[-163.89561926999994,60.923000393],[-163.90208899599992,60.91522858300002],[-163.9079483709999,60.89984772300006],[-163.91331946499994,60.89256419500005],[-163.95750891799992,60.86815013200002],[-164.00706946499994,60.86220937700006],[-164.13536536399985,60.86713288000014],[-164.36375891799986,60.872056382],[-164.5644425119999,60.854681708000115],[-164.5732315749999,60.85761139500014],[-164.59300696499994,60.87148672100012],[-164.60260982999992,60.87579987200002],[-164.58454342399986,60.900091864000025],[-164.5858861969999,60.91006094],[-164.60260982999992,60.923000393],[-164.6280411449999,60.932318427000055],[-164.71495520699992,60.9372419290001],[-164.72675533799986,60.93500397300012],[-164.7449845039999,60.9252383480001],[-164.76793372299986,60.91982656500014],[-164.78827877499995,60.905707098],[-164.79755611899992,60.90253327000014],[-164.81489010299987,60.90810781500015],[-164.83832760299987,60.93744538000005],[-164.8558243479999,60.95087311400006],[-164.87946529899992,60.95742422100012],[-164.90709387899994,60.95872630400014],[-164.93468176999988,60.95612213700003],[-164.95824133999992,60.95087311400006],[-165.0152481759999,60.921047268000066],[-165.03681393099993,60.91681549700005],[-165.0814916659999,60.917385158],[-165.12897701699987,60.9234886740001],[-165.17076575399994,60.94159577],[-165.19847571499992,60.97821686400011],[-165.1181534499999,61.01325104400002],[-165.08861243399994,61.019842841000084],[-164.97419186099992,61.02533600500011],[-164.95079505099994,61.019842841000084],[-164.95282955599987,61.057033596000096],[-164.95079505099994,61.06757233300005],[-164.94005286399994,61.08380768400009],[-164.92719479099992,61.08698151200014],[-164.86449133999992,61.07977936400011],[-164.85700436099995,61.08234284100003],[-164.84528561099995,61.09121328300007],[-164.8278702459999,61.09955475500005],[-164.78575598899994,61.104315497000144],[-164.7664688789999,61.10858795800005],[-164.7833959629999,61.120021877],[-164.81456458199986,61.11871979400011],[-164.87633216099985,61.10858795800005],[-164.93097896999993,61.114732164000046],[-164.99921627499992,61.114732164000046],[-165.01256262899994,61.10626862200009],[-165.00556393099995,61.08746979400014],[-165.00401770699992,61.06867096600008],[-165.03368079299986,61.06012604400017],[-165.0587052069999,61.062892971000124],[-165.08482825399992,61.070257880000106],[-165.10936438699994,61.08100006700014],[-165.12958736899986,61.09430573100014],[-165.12975012899992,61.10663483300012],[-165.1752416659999,61.121771552000105],[-165.19102942599994,61.1364606790001],[-165.1686905589999,61.145697333000086],[-165.14655514199993,61.14972565300003],[-165.12950598899988,61.156642971000124],[-165.1155899729999,61.19057851800009],[-165.09850012899986,61.20307038],[-165.06065833199992,61.21845123900011],[-165.1432592439999,61.259426174000154],[-165.1317032539999,61.24184804900004],[-165.11925208199992,61.230373440000065],[-165.10358639199987,61.223130601000044],[-165.08238684799989,61.21845123900011],[-165.10277258999986,61.20844147300014],[-165.12047278599988,61.20595937700012],[-165.13609778599988,61.20099518400018],[-165.15001380099994,61.18366120000009],[-165.14826412699995,61.177150783000094],[-165.1439916659999,61.16771067900008],[-165.14439856699994,61.15936920800003],[-165.15684973899985,61.155747789000046],[-165.21149654899992,61.14956289300006],[-165.34687252499987,61.19708893400018],[-165.36974036399988,61.20075104400002],[-165.36274166599992,61.21279531500015],[-165.32677161399994,61.231634833000086],[-165.29332434799989,61.254828192000126],[-165.27192135299993,61.259588934000114],[-165.2254532539999,61.259426174000154],[-165.21271725199992,61.265204169000114],[-165.20665442599994,61.27924225500005],[-165.20478268099995,61.29608795800005],[-165.2046606109999,61.31061432500012],[-165.20836341099994,61.32680898600015],[-165.21910559799994,61.331691799000126],[-165.25987708199992,61.32831452],[-165.25987708199992,61.33445872599999],[-165.2257787749999,61.3481306010001],[-165.1825658839999,61.35195547100012],[-165.17113196499994,61.354966539000046],[-165.15778561099992,61.36579010600003],[-165.1618546209999,61.373683986000025],[-165.17210852799988,61.38247304900006],[-165.1773575509999,61.39594147300006],[-165.15876217399992,61.41864655200002],[-165.0762426419999,61.41937897300013],[-165.0476781889999,61.43695709800006],[-165.06139075399994,61.44696686400014],[-165.05781002499987,61.45172760600014],[-165.00605221299995,61.4648298200001],[-165.00519771999993,61.46686432500014],[-165.00426184799989,61.471136786000066],[-165.0025121739999,61.47577545800008],[-164.99921627499992,61.47915273600011],[-164.96772213399993,61.48956940300008],[-164.8688858709999,61.49896881700012],[-164.8472387359999,61.49762604400003],[-164.84154212099992,61.49896881700012],[-164.84068762899992,61.50275299700006],[-164.84247799399992,61.515692450000145],[-164.84154212099992,61.519476630000085],[-164.8299454419999,61.52533600500012],[-164.81810462099995,61.52863190300014],[-164.78693600199986,61.53375885600015],[-164.76337643099993,61.54169342700011],[-164.74767005099991,61.55467357000013],[-164.7431127589999,61.57103099200004],[-164.75279700399986,61.588934637000094],[-164.6907445949999,61.601385809000114],[-164.7082006499999,61.617417710000026],[-164.7240697909999,61.62555573100011],[-164.7422582669999,61.62836334800007],[-164.7664688789999,61.62872955900018],[-164.76056881399995,61.626166083000086],[-164.7522680329999,61.621242580000015],[-164.74596106699994,61.61505768400014],[-164.74596106699994,61.608832098000086],[-164.75523841099988,61.60236237200009],[-164.76537024599995,61.60195547100009],[-164.77599036399985,61.60309479400002],[-164.78693600199986,61.601385809000114],[-164.80219479099992,61.59162018400018],[-164.82111568899995,61.56785716399998],[-164.87763424399986,61.52602773600015],[-164.89618893099984,61.519476630000085],[-164.96674557199995,61.51658763200014],[-164.99091549399995,61.511379299000126],[-165.00861568899995,61.50348541900017],[-165.0162247389999,61.49652741100009],[-165.0210668609999,61.48802317900005],[-165.03026282499985,61.475734768000095],[-165.03986568899992,61.470892645000035],[-165.05064856699994,61.472642320000105],[-165.0615942049999,61.476792710000055],[-165.0715225899999,61.47915273600011],[-165.0857641269999,61.47626373900006],[-165.08690344999994,61.46918366100003],[-165.0832006499999,61.460150458],[-165.0822240879999,61.445013739],[-165.07909094999982,61.44106679900001],[-165.0791723299999,61.43707916900005],[-165.08861243399994,61.430731512000094],[-165.09992428299992,61.42865631700009],[-165.11192786399985,61.43109772300012],[-165.1233617829999,61.43488190300014],[-165.13300533799986,61.43695709800006],[-165.1547338529999,61.43341705900017],[-165.1861059239999,61.41624583500005],[-165.2046606109999,61.410223700000145],[-165.1953832669999,61.38963450700011],[-165.19102942599994,61.38296133000016],[-165.20567786399982,61.3763695330001],[-165.2382299469999,61.367743231000176],[-165.25312252499984,61.361802476000044],[-165.26313229099995,61.35419342700011],[-165.2715958319999,61.345648505],[-165.2810766269999,61.33836497599999],[-165.2940567699999,61.33445872599999],[-165.28046627499992,61.318670966000134],[-165.26142330599995,61.31745026200012],[-165.24238033799986,61.320624091000084],[-165.22887122299989,61.31745026200012],[-165.2271215489999,61.30890534100011],[-165.2315160799999,61.29938385600009],[-165.23375403599988,61.287746486000096],[-165.2257787749999,61.2730980490001],[-165.26793372299994,61.2700056010001],[-165.31293697799993,61.260891018],[-165.35545813699989,61.24575429900001],[-165.39024817599991,61.224595445000105],[-165.39960689999987,61.19562409100003],[-165.36949622299994,61.17597077000006],[-165.3463842439999,61.15672435100011],[-165.37657630099991,61.129095770000035],[-165.36823482999992,61.12124258000012],[-165.36420650899996,61.108099677000084],[-165.36298580599995,61.07754140800013],[-165.37372799399986,61.07160065300012],[-165.39781653599985,61.073472397999986],[-165.43744869699992,61.081244208],[-165.51280676999986,61.08698151200014],[-165.54718990799992,61.09389883000015],[-165.58210201699995,61.10858795800005],[-165.60509192599991,61.12449778899999],[-165.62169348899985,61.14350006700008],[-165.63219153599985,61.165676174000154],[-165.63670813699989,61.19110748900006],[-165.63451087099992,61.190252997000144],[-165.6298315089999,61.19131094000003],[-165.62519283799986,61.19464752800006],[-165.62303626199986,61.20075104400002],[-165.62629146999987,61.20465729400003],[-165.6332494779999,61.20888906500015],[-165.6402481759999,61.21417877800003],[-165.64350338399993,61.22150299700003],[-165.64399166599992,61.23851146],[-165.64216061099995,61.24892812700007],[-165.63251705599987,61.25340403900004],[-165.60997473899988,61.252590236000124],[-165.6232804029999,61.262152411000116],[-165.62800045499992,61.27179596600008],[-165.62372799399992,61.280462958000086],[-165.60997473899988,61.287298895],[-165.64093990799992,61.28839752800014],[-165.69945227799988,61.30341217700008],[-165.82872473899988,61.31297435100005],[-165.8557836579999,61.320868231000034],[-165.87677975199995,61.3365746110001],[-165.92125403599985,61.39935944200006],[-165.91832434799994,61.41474030200011],[-165.89110266799992,61.42877838700014],[-165.83531653599994,61.44432200700005],[-165.80317135299987,61.44928620000012],[-165.79027258999986,61.452866929],[-165.78010006399992,61.457993882],[-165.77122962099983,61.46653880400011],[-165.7672826809999,61.475531317000154],[-165.76630611899992,61.48505280200013],[-165.7664281889999,61.495266018000066],[-165.77696692599994,61.51581452000012],[-165.80207271999993,61.52814362200014],[-165.8557836579999,61.53998444200012],[-165.86815344999994,61.54466380400013],[-165.8908178379999,61.55678945500013],[-165.9041641919999,61.56102122600005],[-165.92389889199995,61.5621605490001],[-166.0504044259999,61.54340241100011],[-166.08568274599992,61.53221263200011],[-166.0960180329999,61.519476630000085],[-166.0886124339999,61.51447174700003],[-166.06562252499992,61.51044342700005],[-166.05439205599993,61.50580475500015],[-166.10619055899986,61.49852122600011],[-166.13825436099992,61.516099351000044],[-166.1953018869999,61.58559804900006],[-166.19994055899986,61.59454987200009],[-166.19615637899992,61.60236237200009],[-166.18944251199989,61.60932038000008],[-166.18537350199992,61.615668036000024],[-166.18537350199992,61.656683661000116],[-166.18085689999987,61.67352936400012],[-166.17267818899987,61.69464752800003],[-166.16051184799989,61.71393463700015],[-166.1443985669999,61.72553131700008],[-166.15587317599986,61.66583893400009],[-166.1540421209999,61.656683661000116],[-166.14732825399994,61.653753973],[-166.12824459499996,61.64044830900017],[-166.1164444649999,61.63613515800007],[-166.05622311099992,61.642401434000114],[-166.04417883999992,61.646144924000154],[-166.0196020169999,61.65713125200001],[-165.7824193999999,61.68406810099999],[-165.7664281889999,61.690822658000016],[-165.77953040299985,61.69635651200004],[-165.82848059799989,61.690822658000016],[-165.84154212099992,61.693060614],[-165.8602188789999,61.701849677000055],[-165.87006588399987,61.7050641950001],[-165.88353430899988,61.706000067],[-165.9112035799999,61.70416901200004],[-165.92467200399986,61.7050641950001],[-165.9365942049999,61.709458726000115],[-165.95795650899996,61.722723700000024],[-165.9656469389999,61.72553131700008],[-166.00336666599995,61.73493073100012],[-166.04430091099988,61.75849030200005],[-166.0801488919999,61.78949616100009],[-166.10277258999994,61.821112372000144],[-165.97590084499987,61.835394598000065],[-165.91100012899992,61.82794830900017],[-165.8493139309999,61.83608633000009],[-165.82848059799989,61.835394598000065],[-165.79308020699992,61.82684967700013],[-165.78010006399992,61.82794830900017],[-165.7430313789999,61.845607815],[-165.7260636059999,61.84845612200003],[-165.6090795559999,61.85130442900008],[-165.5882462229999,61.86212799700017],[-165.61017818899992,61.864447333000136],[-165.6441137359999,61.895249742000104],[-165.68932044199994,61.91030508000004],[-165.70978756399987,61.92743561400006],[-165.7390844389999,61.965073960000055],[-165.7503555979999,61.984442450000145],[-165.75849361899992,62.00527578300012],[-165.7595108709999,62.02562083500013],[-165.7309464179999,62.07648346600017],[-165.7137345039999,62.085272528000026],[-165.71031653599988,62.095038153000175],[-165.70881100199992,62.10663483299999],[-165.70555579299986,62.11660390800007],[-165.69196529899992,62.13007233300006],[-165.66840572799987,62.14809804900009],[-165.64191646999987,62.16380442900005],[-165.59459387899994,62.17829010600009],[-165.44770260299993,62.30288320500007],[-165.34459387899992,62.36603424700014],[-165.33482825399986,62.375718492000104],[-165.31452389199995,62.40395742400007],[-165.29674231699988,62.42133209800006],[-165.27354895699995,62.437445380000106],[-165.18464107999992,62.47744375200006],[-165.13304602799985,62.51569245000003],[-165.09569251199989,62.52977122600007],[-165.05573482999995,62.538275458],[-165.02033443899995,62.541083075000145],[-164.93097896999993,62.533677476000044],[-164.8873998689999,62.53912995000009],[-164.86786861899992,62.53803131700015],[-164.8489884109999,62.52749258000009],[-164.86030025899987,62.5200056010001],[-164.86742102799994,62.51068756700009],[-164.8670548169999,62.50096263200014],[-164.8558243479999,62.492743231000034],[-164.84813391799992,62.47793203300016],[-164.81090247299989,62.46942780200011],[-164.7357071609999,62.46478913],[-164.7233373689999,62.46116771000013],[-164.70177161399988,62.44375234600007],[-164.6907445949999,62.437445380000106],[-164.6718236969999,62.43455638199999],[-164.6088354159999,62.437445380000106],[-164.65046139199995,62.425360419000036],[-164.66559811099995,62.418768622000144],[-164.69505774599992,62.396470445000105],[-164.71349036399988,62.386175848],[-164.73363196499992,62.378729559000114],[-164.70600338399987,62.37958405200012],[-164.6856583319999,62.386542059000114],[-164.65013587099992,62.41498444200011],[-164.64098059799994,62.419989325000174],[-164.6299535799999,62.423814194999984],[-164.59760494699987,62.423407294000164],[-164.5818985669999,62.426174221000124],[-164.5746964179999,62.437445380000106],[-164.58653723899994,62.45482005400011],[-164.6157120429999,62.46015045800009],[-164.67027747299986,62.46198151200014],[-164.67711341099988,62.474351304],[-164.66230221299992,62.48993561400009],[-164.6299535799999,62.5131696640001],[-164.6472061839999,62.51251862200015],[-164.65790768099993,62.51023997599999],[-164.6770727199999,62.499579169000135],[-164.69359290299985,62.48505280200011],[-164.7050675119999,62.47907135600009],[-164.71495520699992,62.482123114],[-164.74286861899995,62.49640534100008],[-164.81073971299995,62.48627350500011],[-164.84154212099992,62.492743231000034],[-164.80036373599995,62.5235863300001],[-164.7944229809999,62.533677476000044],[-164.8006078769999,62.54718659100003],[-164.8162328769999,62.5555687520001],[-164.83539791599995,62.559800523000106],[-164.85248775899987,62.560980536000145],[-164.85798092399992,62.563625393000116],[-164.85496985599988,62.56940338700009],[-164.84528561099995,62.57831452000011],[-164.8347061839999,62.58437734600012],[-164.82148189999987,62.58661530200011],[-164.7944229809999,62.588324286000116],[-164.7047013009999,62.61249420800012],[-164.4790746739999,62.74591705900003],[-164.50426184799989,62.75031159100003],[-164.53978430899986,62.738836981000176],[-164.5749405589999,62.71991608300006],[-164.6126195949999,62.6930199240001],[-164.66344153599994,62.678290106000084],[-164.74034583199995,62.63446686400012],[-164.7791235019999,62.618963934000114],[-164.81322180899988,62.62018463700004],[-164.8279516269999,62.65412018400018],[-164.83197994699992,62.68219635600009],[-164.8432511059999,62.70514557500017],[-164.86070716099985,62.72382233300006],[-164.88316809799989,62.73908112200003],[-164.8730362619999,62.7438825540001],[-164.8666886059999,62.74925364800008],[-164.86689205599995,62.754706122000115],[-164.87633216099985,62.75958893400017],[-164.8732397129999,62.76406484600012],[-164.8715714179999,62.76764557500012],[-164.8688451809999,62.77094147300015],[-164.86266028599994,62.77387116100009],[-164.87022864499986,62.776678778000026],[-164.8900040359999,62.78693268400014],[-164.87315833199992,62.79218170800014],[-164.85907955599995,62.79486725500011],[-164.84491939999992,62.79547760600018],[-164.8279516269999,62.794378973000114],[-164.79210364499988,62.78693268400014],[-164.77611243399986,62.788519598000086],[-164.7664688789999,62.801214911000145],[-164.83259029899986,62.80890534100017],[-164.86176510299993,62.81952545800003],[-164.88316809799989,62.84153880400011],[-164.85932369699992,62.85407135600012],[-164.85248775899987,62.85578034100003],[-164.84923255099994,62.85993073100015],[-164.84813391799992,62.87970612200017],[-164.84528561099995,62.88686758000004],[-164.83385169199988,62.89915599199999],[-164.81611080599993,62.92719147300009],[-164.75340735599988,62.99095286700013],[-164.72350012899992,63.01292552300005],[-164.6907445949999,63.02708567900007],[-164.66258704299995,63.03204987200002],[-164.52818762899994,63.03473541900011],[-164.51667232999986,63.03021881700014],[-164.50922604099992,63.02521393400009],[-164.4873754549999,63.01581452000009],[-164.47846432199995,63.01410553600008],[-164.47264563699989,63.016913153000026],[-164.4687393869999,63.02326080900015],[-164.46288001199986,63.029852606000034],[-164.45116126199983,63.03335195500004],[-164.4415990879999,63.03188711100017],[-164.41022701699995,63.02024974200005],[-164.40070553299995,63.02057526200018],[-164.38434811099992,63.02521393400009],[-164.37608801999994,63.02366771000005],[-164.3549698559999,63.01410553600008],[-164.33368893099995,63.00901927300005],[-164.3243302069999,63.009100653000026],[-164.3139542309999,63.01410553600008],[-164.3307999339999,63.041408596000146],[-164.35090084499987,63.05963776200004],[-164.37665768099993,63.07050202000012],[-164.52281653599988,63.088324286],[-164.53990637899994,63.102240302000084],[-164.5491430329999,63.116197007000046],[-164.56244869699992,63.12254466399998],[-164.59516354099995,63.130113023000135],[-164.57909094999985,63.140570380000106],[-164.52179928299992,63.16111888200005],[-164.50239010299993,63.16494375200007],[-164.4877823559999,63.17072174700004],[-164.42353268099995,63.20897044499999],[-164.3658341139999,63.229193427],[-164.14537512899994,63.26215241100008],[-163.99457760299993,63.256252346000124],[-163.82738196499992,63.21954987200002],[-163.76732337099992,63.22475820500013],[-163.7522680329999,63.222642320000105],[-163.72923743399994,63.21678294500008],[-163.7245580719999,63.21312083500011],[-163.7324112619999,63.20587799700008],[-163.72309322799995,63.199937242000075],[-163.70246334499993,63.19330475500003],[-163.69420325399994,63.188177802],[-163.68346106699994,63.1734886740001],[-163.67674719999988,63.167425848],[-163.64655514199987,63.158921617000075],[-163.6382950509999,63.14545319200008],[-163.6433813139999,63.13129303600006],[-163.66352291599995,63.123358466000084],[-163.66352291599995,63.11652252800017],[-163.6346329419999,63.12018463700003],[-163.5884903639999,63.135077216000084],[-163.56733150899987,63.136948960000055],[-163.5418188139999,63.128810940000115],[-163.56452389199995,63.11806875200001],[-163.60252844999985,63.1056175800001],[-163.6225479809999,63.09227122599999],[-163.6559545559999,63.06037018400014],[-163.79194088399993,63.02191803600006],[-163.80687415299988,62.986151434000064],[-163.76244055899986,63.01520416900002],[-163.6529027989999,63.045070705000015],[-163.60081946499986,63.068060614],[-163.5569555329999,63.104722398000106],[-163.5285538399999,63.116685289000046],[-163.49132239499988,63.10179271],[-163.44066321499992,63.09601471600003],[-163.39598548099983,63.068060614],[-163.36615963399996,63.038275458000086],[-163.35053463399987,63.030829169000114],[-163.29015051999983,63.04881419500005],[-163.09398352799985,63.05735911700007],[-163.07384192599991,63.061265367000075],[-163.03400631399992,63.07908763200014],[-163.01305091099985,63.08466217700005],[-162.98871822799993,63.099554755],[-162.9813940089999,63.10594310100011],[-162.96922766799992,63.114406643000066],[-162.92304439999992,63.123358466000084],[-162.8808080719999,63.14093659100002],[-162.8613175119999,63.15228913],[-162.8478897779999,63.16494375200007],[-162.8440649079999,63.17462799700003],[-162.84589596299986,63.1889509140001],[-162.84113521999996,63.198431708000115],[-162.83385169199985,63.20490143400012],[-162.80634518099993,63.21954987200002],[-162.6966446609999,63.229193427],[-162.59650631399987,63.27667877800011],[-162.42894446499986,63.40387604400017],[-162.40880286399994,63.42572663000011],[-162.4016007149999,63.43121979400014],[-162.3618871739999,63.44782135600009],[-162.35106360599988,63.45571523600007],[-162.3306371739999,63.466864325000095],[-162.30317135299995,63.47675202],[-162.2800186839999,63.489081122000144],[-162.27257239499994,63.507513739],[-162.31354732999984,63.534247137000094],[-162.30943762899992,63.546576239000146],[-162.29320227799988,63.550360419000164],[-162.2514542309999,63.548529364],[-162.23725338399993,63.546291408000016],[-162.2070206369999,63.53652578300007],[-162.17621822799993,63.53253815300008],[-162.1347550119999,63.52118561400012],[-162.0995580719999,63.51898834800012],[-162.08421790299994,63.51471588700012],[-162.05964107999992,63.496039130000135],[-162.04609127499995,63.49022044499999],[-162.03144283799995,63.48663971600003],[-162.01805579299995,63.4858259140001],[-162.03758704299992,63.48427969000006],[-162.05467688699986,63.47431061400009],[-162.07066809799989,63.46173737200009],[-162.08698482999986,63.45233795800005],[-162.10692298099988,63.44782135600009],[-162.14899654899995,63.44407786700007],[-162.16889400899993,63.43866608300011],[-162.16889400899993,63.43121979400014],[-161.91462154849995,63.4504255230001],[-161.6603490879999,63.469631252000156],[-161.62079830599987,63.46653880400008],[-161.58958899599992,63.45807526200004],[-161.57343502499992,63.45538971600014],[-161.55744381399995,63.45734284100011],[-161.51158606699988,63.472805080000036],[-161.4964086579999,63.47426992400009],[-161.48346920499984,63.47345612200017],[-161.47089596299986,63.469875393],[-161.4566544259999,63.46283600500011],[-161.44054114499988,63.46019114800005],[-161.4228409499999,63.46572500200016],[-161.40485592399995,63.47394440300015],[-161.38805091099994,63.47955963700015],[-161.18626868399994,63.505560614000146],[-161.05650794199988,63.57440827],[-161.04548092399992,63.58576080900018],[-161.03388424399992,63.610052802000055],[-161.00654049399992,63.62177155200005],[-160.9748022129999,63.62824127800015],[-160.94989986899992,63.63666413],[-160.89252682199992,63.68488190300006],[-160.8499242829999,63.69830963700004],[-160.82709713399996,63.71352773600002],[-160.7915746739999,63.74652741100009],[-160.76695716099988,63.82412344000012],[-160.80504309799989,63.90448639500011],[-160.92878170499992,64.04816315300017],[-160.9452611969999,64.09601471600007],[-160.95164954299992,64.20628489799999],[-160.9734594389999,64.25047435100005],[-160.99535071499992,64.26569245000002],[-161.06342525899987,64.29584381700015],[-161.08983313699983,64.30141836100016],[-161.1159154939999,64.31000397300006],[-161.17552649599992,64.35089752800012],[-161.2031143869999,64.36408112200014],[-161.2031143869999,64.37030670800011],[-161.19395911399988,64.37116120000003],[-161.1880997389999,64.3737653670001],[-161.17577063699983,64.38397858300006],[-161.19469153599988,64.39207591399999],[-161.23802649599986,64.3980980490001],[-161.2577611969999,64.40509674700017],[-161.24425208199992,64.41010163000011],[-161.22675533799986,64.41181061400012],[-161.18883216099985,64.41128164300012],[-161.18883216099985,64.41811758000016],[-161.33177649599983,64.41754791900009],[-161.42943274599986,64.43329498900013],[-161.45799719999985,64.43170807500012],[-161.48363196499992,64.4248721370001],[-161.4984024729999,64.414536851],[-161.50898189999992,64.40216705900006],[-161.52070064999992,64.39252350500009],[-161.53888912699995,64.39077383000007],[-161.53888912699995,64.397650458],[-161.52599036399994,64.42910390800002],[-161.5184220039999,64.43854401200004],[-161.50385494699992,64.44843170800013],[-161.4937231109999,64.45184967700006],[-161.4857071609999,64.45709870000003],[-161.47740637899986,64.47272370000012],[-161.4733780589999,64.48818594000012],[-161.4719132149999,64.49974192900007],[-161.46808834499993,64.509955145],[-161.4569799469999,64.52114492400001],[-161.44041907499988,64.52912018400015],[-161.41392981699988,64.5375430360001],[-161.38752193899987,64.54205963700015],[-161.37071692599986,64.53815338700018],[-161.3404027989999,64.52399323100015],[-161.09333248599992,64.50259023600002],[-161.03502356699994,64.50775788000011],[-161.00446529899992,64.52798086100013],[-161.06859290299988,64.54462311400009],[-161.08592688699986,64.55255768400004],[-160.9734594389999,64.55585358300009],[-160.95799719999988,64.55882395999998],[-160.94733639199995,64.56606679900001],[-160.9384659499999,64.57485586100007],[-160.92878170499992,64.58258698100009],[-160.83397376199986,64.61733633000016],[-160.8031713529999,64.64337799700003],[-160.7902725899999,64.70770905200014],[-160.7881567049999,64.71271393400018],[-160.78770911399988,64.7178408870001],[-160.7915746739999,64.72589752800003],[-160.80150305899988,64.73639557500009],[-160.82542883999994,64.7489281270001],[-160.83661861899995,64.75763580900018],[-160.8847143219999,64.81012604400003],[-160.90143795499995,64.82273997600011],[-160.91600501199989,64.82868073100003],[-160.96349036399988,64.8358421900001],[-161.00336666599986,64.85488515800007],[-161.04438229099986,64.8625348980001],[-161.14647376199994,64.91819896000011],[-161.15534420499986,64.92519765800002],[-161.13329016799992,64.92401764500009],[-161.0857641269999,64.91299062700013],[-161.06623287699992,64.91522858300011],[-161.0296117829999,64.93146393400015],[-161.0100805329999,64.93724192900011],[-160.99083411399988,64.9394391950001],[-161.00385494699995,64.9445661480001],[-161.02013098899985,64.94721100500011],[-161.03709876199986,64.94757721600001],[-161.05223548099983,64.94562409100008],[-161.05675208199992,64.94281647300011],[-161.06004798099985,64.93447500200016],[-161.06285559799989,64.932603257],[-161.18256588399987,64.93952057500009],[-161.21056067599991,64.932603257],[-161.20710201699993,64.90973541900007],[-161.22944088399993,64.89598216400007],[-161.30760657499982,64.87201569200003],[-161.31590735599994,64.86542389500012],[-161.32225501199986,64.84552643400004],[-161.33006751199986,64.83771393400015],[-161.3401993479999,64.8319359400001],[-161.36180579299992,64.82636139500009],[-161.36693274599992,64.81875234600012],[-161.3696996739999,64.80971914300012],[-161.3737686839999,64.80231354400014],[-161.39525305899988,64.78676992400013],[-161.40880286399994,64.7794863950001],[-161.42218990799995,64.77435944200003],[-161.44408118399988,64.77073802300005],[-161.48945064999987,64.77024974200006],[-161.51158606699988,64.767523505],[-161.5239965489999,64.76211172100015],[-161.5346573559999,64.75507233300009],[-161.54576575399994,64.75088125200013],[-161.55939693899987,64.75385163000006],[-161.56440182199992,64.77041250200013],[-161.64484615799992,64.78375885600003],[-161.67235266799995,64.79173411699999],[-161.70124264199995,64.81175364800005],[-161.73359127499987,64.82074616100009],[-161.80638587099992,64.82273997600011],[-161.78290768099995,64.81683991100009],[-161.7409154939999,64.79800039300012],[-161.71642005099994,64.79486725500006],[-161.89631100199992,64.75397370000003],[-161.94977779899995,64.72589752800003],[-161.93175208199992,64.71865469],[-161.9141332669999,64.722113348],[-161.88154049399992,64.7402204450001],[-161.8613988919999,64.74795156500012],[-161.7995499339999,64.76129791900003],[-161.8120824859999,64.75299713700015],[-161.8498022129999,64.73639557500009],[-161.8641251289999,64.733384507],[-161.8657934239999,64.73094310100005],[-161.88495846299995,64.71629466400005],[-161.89545650899993,64.7117373720001],[-161.92393958199995,64.71210358300011],[-161.9825333319999,64.70307038000011],[-162.0808813139999,64.72109609600012],[-162.12169348899988,64.71287669500003],[-162.10777747299986,64.70941803600014],[-162.0790909499999,64.70547109600015],[-162.06647701699995,64.69928620000009],[-162.14281165299988,64.696234442],[-162.1773575509999,64.68817780200006],[-162.2098282539999,64.67194245000012],[-162.2194311189999,64.6646996110001],[-162.24718176999994,64.63458893400015],[-162.25763912699986,64.6257184920001],[-162.2702123689999,64.6192894550001],[-162.31806393099993,64.61298248900006],[-162.51121985599988,64.55866120000003],[-162.55683346299986,64.53221263200005],[-162.58311926999988,64.52069733300011],[-162.60716712099992,64.50678131700012],[-162.62140865799992,64.48700592700011],[-162.6215714179999,64.47557200700005],[-162.61420650899987,64.45620351800011],[-162.61457271999987,64.44599030200003],[-162.62279212099992,64.43732330900012],[-162.6353246739999,64.42926666900017],[-162.64342200399992,64.420152085],[-162.63874264199987,64.40814850500006],[-162.6426488919999,64.39443594000012],[-162.7346085279999,64.36717357000005],[-162.7562963529999,64.35211823100003],[-162.7813207669999,64.34369538000009],[-162.80439205599987,64.34780508000013],[-162.82001705599995,64.37030670800011],[-162.8207494779999,64.385931708],[-162.8168432279999,64.39793528900012],[-162.81550045499986,64.40892161699999],[-162.8237198559999,64.42153554900007],[-162.84443111899992,64.44407786700005],[-162.85541744699995,64.45221588700015],[-162.87462317599991,64.45966217700014],[-162.8613175119999,64.48651764500012],[-162.85029049399995,64.49339427300013],[-162.82746334499993,64.493150132],[-162.82746334499993,64.50063711100016],[-162.8694962229999,64.51333242400004],[-162.89618893099993,64.51801178600013],[-162.9217423169999,64.53168366100009],[-162.93358313699986,64.53473541900017],[-162.94054114499988,64.53766510600009],[-162.96056067599991,64.55125560100005],[-162.97081458199995,64.55585358300009],[-162.99046790299988,64.55833567900011],[-163.05333411399988,64.55585358300009],[-163.05333411399988,64.56207916900006],[-163.04515540299982,64.56281159100017],[-163.0254613919999,64.56952545800011],[-163.05658932199992,64.59210846600008],[-163.10712643099993,64.60822174700014],[-163.14765377499992,64.62714264500008],[-163.14899654899992,64.65827057500017],[-163.2147924469999,64.65452708500014],[-163.24250240799986,64.64838288000006],[-163.35859127499992,64.603745835],[-163.3897598949999,64.596869208],[-163.3897598949999,64.59003327000006],[-163.3681534499999,64.5877953150001],[-163.31346594999985,64.56207916900006],[-163.29137122299989,64.5575218770001],[-163.21100826699987,64.55585358300009],[-163.19408118399988,64.54743073100003],[-163.16230221299995,64.52204010600009],[-163.14277096299986,64.51496002800006],[-163.11815344999985,64.51422760600012],[-163.0397436189999,64.52114492400001],[-163.04869544199994,64.51618073100013],[-163.05296790299994,64.509955145],[-163.0523575509999,64.50226471600008],[-163.04649817599991,64.493150132],[-163.09675045499992,64.4758161480001],[-163.11461341099985,64.46100495000003],[-163.12165279899995,64.43512604400001],[-163.13499915299985,64.41254303600014],[-163.1658829419999,64.410589911],[-163.20042883999992,64.41998932500003],[-163.2246801419999,64.43170807500012],[-163.27928626199986,64.485744533],[-163.2997940749999,64.493150132],[-163.3306371739999,64.49656810100002],[-163.35741126199989,64.50519440300009],[-163.40900631399995,64.52798086100013],[-163.53656979099992,64.56452057500017],[-163.67853756399987,64.58633047100012],[-163.8171280589999,64.59003327000006],[-163.9713842439999,64.56952545800011],[-164.38910885299993,64.56952545800011],[-164.26622473899988,64.57575104400017],[-164.34186764199995,64.59003327000006],[-164.65038001199986,64.50226471600008],[-164.74596106699994,64.493150132],[-164.7254532539999,64.50259023600002],[-164.6566055979999,64.52114492400001],[-164.6917211579999,64.53131745000013],[-164.80744381399992,64.52114492400001],[-164.83625240799995,64.5147972680001],[-164.8856908839999,64.49152252800015],[-164.90986080599993,64.493150132],[-164.90265865799986,64.51056549700014],[-164.90815182199992,64.52399323100015],[-164.92145748599992,64.532416083],[-164.93781490799995,64.53473541900017],[-164.93781490799995,64.52798086100013],[-164.93085689999992,64.525132554],[-164.9241430329999,64.52114492400001],[-164.93236243399988,64.51276276200015],[-164.94200598899988,64.50755442900005],[-164.95295162699995,64.50580475500006],[-164.9650772779999,64.50747304900007],[-164.95396887899992,64.49437083500011],[-164.93517005099986,64.48647695500013],[-164.9140518869999,64.48037344000015],[-164.89618893099984,64.47272370000012],[-164.9241430329999,64.45966217700014],[-164.8425186839999,64.46141185100014],[-164.80109615799986,64.46747467700014],[-164.7664688789999,64.480169989],[-164.79645748599995,64.46344635600015],[-164.83710689999995,64.45522695500006],[-165.03551184799994,64.44830963700015],[-165.44623775899987,64.51186758000016],[-165.8775121739999,64.54824453300013],[-166.00239010299987,64.57143789300005],[-166.18968665299994,64.58519114799999],[-166.37035071499992,64.637844143],[-166.4460343089999,64.69147370000009],[-166.48346920499995,64.72964101800007],[-166.4746233569999,64.74813762400005],[-166.47473748499993,64.77095498200008],[-166.4780167309999,64.78961823100018],[-166.4803768949999,64.80201013900007],[-166.47006686199992,64.807366877],[-166.43920787699986,64.810215714],[-166.39391028599988,64.82273997600011],[-166.38605709499987,64.82733795800006],[-166.3855688139999,64.83600495000015],[-166.39171301999988,64.84137604400011],[-166.40387936099995,64.8358421900001],[-166.4101571979999,64.8545303150001],[-166.4088349849999,64.86954864299999],[-166.39020748599992,64.89850495000009],[-166.40794837099992,64.904445705],[-166.43293209499993,64.92161692900014],[-166.47101803299992,64.93036530200011],[-166.5048315089999,64.95111725500003],[-166.52733313699986,64.95311107000003],[-166.5152481759999,64.93781159100008],[-166.44481360599988,64.89850495000009],[-166.46747799399992,64.90741608300011],[-166.52570553299986,64.936468817],[-166.57972193599988,64.95296861600016],[-166.68452922599988,64.98217990600004],[-166.70006646999988,64.99400635900004],[-166.6953503809999,65.00766484400013],[-166.68737597999996,65.022827007],[-166.71138881899992,65.04371344200003],[-166.74951017299992,65.06201045700011],[-166.82905025899996,65.08283112200003],[-166.8786108059999,65.10272858300011],[-166.96153091199992,65.15435925800001],[-166.95738684799989,65.17812734600007],[-166.9395721059999,65.2207651240001],[-166.92697362899995,65.24289696900006],[-166.91018613899988,65.26453338200004],[-166.89431613199983,65.276363518],[-166.88023841099994,65.28204987200003],[-166.85277258999986,65.27789948100018],[-166.8617651029999,65.267482815],[-166.88935694099985,65.23846039500013],[-166.9059001599999,65.22056930700013],[-166.91824712699992,65.20218226200016],[-166.93207760299993,65.168850002],[-166.91765833299985,65.15438559900015],[-166.90422359099992,65.1509112640001],[-166.89045162699992,65.15176015800007],[-166.87616939999995,65.149115302],[-166.84422766799995,65.13629791900014],[-166.75426184799986,65.11562734600011],[-166.71263587099992,65.11294179900015],[-166.65672766799995,65.12506745000015],[-166.60997473899988,65.12230052299999],[-166.57953854099992,65.12995026200012],[-166.55931555899988,65.13068268400015],[-166.5471899079999,65.13690827],[-166.5429174469999,65.13686758000001],[-166.53864498599987,65.13629791900014],[-166.5341690749999,65.13743724199999],[-166.53364010299993,65.14004140800007],[-166.5347794259999,65.14915599199999],[-166.5341690749999,65.15176015800007],[-166.4858292309999,65.1735700540001],[-166.46922766799995,65.18927643400009],[-166.47642981699988,65.21010976800007],[-166.48871822799993,65.23427969000006],[-166.46922766799995,65.244574286],[-166.40387936099995,65.25413646],[-166.39179439999995,65.26023997600007],[-166.38194739499994,65.26699453300002],[-166.37128658799992,65.27252838700004],[-166.35667883999986,65.27521393400009],[-166.3417965669999,65.2667186450001],[-166.32357984599986,65.25545696600001],[-166.2515999679999,65.258056836],[-166.1245738539999,65.23427362200003],[-166.0906345099999,65.23104407200005],[-166.05645118599986,65.23297632800016],[-166.03118785199987,65.24310361],[-166.07664964499992,65.2635786870001],[-166.14040990599995,65.285692726],[-166.22789439199988,65.301617637],[-166.3101307479999,65.31218833300012],[-166.34846376999988,65.30927920700005],[-166.3737686839999,65.30532461100013],[-166.43405540099988,65.31872403400007],[-166.5027970039999,65.33624909100008],[-166.6470498899999,65.35132645000014],[-166.9383031889999,65.38507721600008],[-166.92304439999992,65.37832265800013],[-166.91301102199992,65.37079122400003],[-166.87009806499987,65.36078105000011],[-166.8124091789999,65.35356719],[-166.72587958599982,65.34207473499998],[-166.6499355979999,65.32682037800011],[-166.76692108699984,65.33576330500004],[-166.86358759199987,65.3513196480001],[-167.0004498849999,65.37811575500017],[-167.1842957939999,65.39324134100004],[-167.39855450199988,65.40108154800002],[-167.60432712899993,65.45341941000005],[-167.64312294999993,65.47588578800016],[-167.7221176439999,65.50465834700005],[-167.82295751799995,65.52383783600006],[-167.8870161769999,65.54761405000009],[-168.0321752589999,65.573431708],[-168.05243893099993,65.58002350500006],[-168.06037350199992,65.58490631700012],[-168.08100338399993,65.591498114],[-168.0902807279999,65.5967471370001],[-168.09557044199988,65.60350169500013],[-168.10094153599994,65.61823151200012],[-168.10387122299994,65.62409088700015],[-168.12779700399992,65.64215729400009],[-168.1312149729999,65.64826080900015],[-168.13219153599988,65.65289948100009],[-168.13744055899988,65.665025132],[-168.1348770819999,65.6698265650001],[-168.12629146999996,65.672796942],[-168.1243790359999,65.67593008000007],[-168.11542721299986,65.68598053600014],[-168.07160396999987,65.70709870000015],[-167.98114986899992,65.73309967700014],[-167.92401891699987,65.74860786000012],[-167.88207979299995,65.75543983300018],[-167.86681067599991,65.74900950700005],[-167.87787838399993,65.73851146],[-167.8913468089999,65.73395416900006],[-167.90941321499994,65.73078034100017],[-167.94086666599986,65.71670156500012],[-167.99095618399988,65.70913320500007],[-168.0280248689999,65.69676341400005],[-168.05671139199995,65.67723216400007],[-168.06293697799993,65.65135325700005],[-168.03986568899992,65.63593170800011],[-168.00043697799987,65.64256419499999],[-167.92548580599993,65.665025132],[-167.8948868479999,65.67023346600007],[-167.85606848899988,65.68353913000003],[-167.8262426419999,65.70136139500009],[-167.82274329299992,65.7202822940001],[-167.5809220039999,65.7206891950001],[-167.53123938699986,65.72614166900014],[-167.50059973899985,65.74079010600015],[-167.49657141799986,65.76544830900013],[-167.52440344999994,65.773830471],[-167.55919348899988,65.77871328300007],[-167.57636471299992,65.79254791900009],[-167.56102454299986,65.80890534100008],[-167.5251358709999,65.81329987200017],[-167.45282955599993,65.809719143],[-167.46833248599992,65.81635163000009],[-167.48521887899992,65.82103099199999],[-167.5029190749999,65.82330963700015],[-167.5211075509999,65.822699286],[-167.5211075509999,65.83014557500017],[-167.34593665299994,65.89858633000013],[-167.28831946499986,65.905218817],[-167.28241939999995,65.89459870000015],[-167.26121985599985,65.88296133000016],[-167.21324622299986,65.86432526200015],[-167.1828507149999,65.85822174700009],[-167.15111243399994,65.85980866100012],[-167.05988521999996,65.877630927],[-166.98639889199995,65.90863678600012],[-166.8934220039999,65.92938873900002],[-166.8768204419999,65.94684479400017],[-166.9730118479999,65.97418854400014],[-166.92804928299995,65.99140045800006],[-166.8973282539999,65.99603913],[-166.85216223899988,66.00812409100008],[-166.8358048169999,66.0150820980001],[-166.84764563699986,66.00918203300012],[-166.8596085279999,66.00470612200009],[-166.8699438139999,65.99860260600009],[-166.8768204419999,65.9877790390001],[-166.85545813699983,65.98749420800006],[-166.81586666599992,65.98183828300007],[-166.79487057199987,65.9877790390001],[-166.8003637359999,65.99225495000015],[-166.81000729099986,66.00311920800004],[-166.81537838399993,66.00763580900009],[-166.80064856699994,66.01276276200012],[-166.76073157499988,66.04242584800015],[-166.72496497299986,66.06134674700017],[-166.53563391799986,66.11945221600001],[-166.46080481699988,66.128648179],[-166.40815182199987,66.14793528900005],[-166.3574926419999,66.15656159100006],[-166.31090247299989,66.17536041900009],[-166.2874649729999,66.17963288],[-166.18492591099994,66.17499420800009],[-166.1384985019999,66.16673411699999],[-166.0891820949999,66.1522891300001],[-166.10871334499987,66.15224844000012],[-166.14513098899994,66.15656159100006],[-166.16425533799992,66.1522891300001],[-166.09369869699992,66.12531159100017],[-165.75499426999994,66.10529205900009],[-165.50011145699992,66.1522891300001],[-165.51622473899988,66.164984442],[-165.54063880099994,66.17348867400004],[-165.61176510299987,66.18292877800003],[-165.71088619699992,66.21263255400004],[-165.76598059799989,66.22016022300012],[-165.8489477199999,66.22011953300013],[-165.8739721339999,66.22557200700008],[-165.88996334499987,66.24103424700009],[-165.87287350199992,66.26341380400011],[-165.83869381399995,66.28896719],[-165.7664281889999,66.32363515800007],[-165.4876602859999,66.40228913000007],[-165.3635147779999,66.41893138200011],[-165.33531653599985,66.429429429],[-165.3057348299999,66.43695709800015],[-165.10521399599992,66.44529857000009],[-165.0749405589999,66.44025299700009],[-165.07660885299993,66.43634674700009],[-165.07758541599986,66.43317291900003],[-165.07905025899996,66.42991771000008],[-165.08238684799989,66.42601146],[-165.0737198559999,66.4150251320001],[-165.06196041599992,66.40753815300015],[-165.0481664699999,66.40253327000003],[-165.03339596299992,66.39931875200016],[-165.0265600249999,66.42251211100009],[-165.00633704299986,66.43085358300004],[-164.98090572799984,66.43378327000009],[-164.95824133999992,66.44025299700009],[-164.9557592439999,66.44464752800015],[-164.9505509109999,66.46015045800009],[-164.94465084499993,66.466986395],[-164.93114173099988,66.47223541900009],[-164.8987524079999,66.47833893400015],[-164.73131262899994,66.532660223],[-164.7180883449999,66.5563418640001],[-164.52265377499992,66.5824242210001],[-164.27436275899987,66.60228099199999],[-163.98639889199993,66.61225006700009],[-163.7363175119999,66.60346100500011],[-163.67572994699992,66.59223053600012],[-163.6287328769999,66.57001373900006],[-163.90815182199992,66.5841332050001],[-163.93012447799993,66.58576080900012],[-163.92088782499988,66.57318756700012],[-163.8828832669999,66.56948476800007],[-163.80687415299988,66.57001373900006],[-163.78681393099993,66.56049225500006],[-163.7717992829999,66.54507070500013],[-163.76239986899984,66.52582428600009],[-163.7591039699999,66.50482819200015],[-163.76646887899992,66.48541901200004],[-163.78461666599992,66.470892645],[-163.8642471999999,66.43646881700006],[-163.8689672519999,66.429429429],[-163.87214107999986,66.42007070500016],[-163.8796280589999,66.41111888200011],[-163.8884985019999,66.40387604400011],[-163.89561926999994,66.39931875200016],[-163.88520260299993,66.37986888200005],[-163.88817298099985,66.36664459800012],[-163.89484615799992,66.35423411699999],[-163.89561926999994,66.33722565300003],[-163.8689672519999,66.30931224199999],[-163.87043209499996,66.3082949890001],[-163.86969967399995,66.30263906500012],[-163.86497962099992,66.29531484600012],[-163.85468502499992,66.28945547100008],[-163.87657630099991,66.26593659100003],[-163.9187719389999,66.24648672100012],[-163.9649552069999,66.23297760600015],[-163.99925696499994,66.22736237200014],[-164.05406653599988,66.22699616100014],[-164.0782364569999,66.22260163000006],[-164.09833736899992,66.2103539080001],[-164.1203100249999,66.20400625200016],[-164.17572994699992,66.208156643],[-164.19111080599995,66.19330475500014],[-164.03209387899994,66.1921247420001],[-163.9856664699999,66.2069359400001],[-163.99054928299984,66.189154364],[-163.9774877589999,66.18353913],[-163.9597875639999,66.18699778900002],[-163.9508764309999,66.19635651200004],[-163.94574947799993,66.20868561400009],[-163.93317623599992,66.21234772300012],[-163.91746985599985,66.21067942900011],[-163.9030655589999,66.2069359400001],[-163.8904923169999,66.16762929900007],[-163.85496985599994,66.13373444200012],[-163.80748450399994,66.10724518400015],[-163.7591039699999,66.0902367210001],[-163.6804906889999,66.078599351],[-163.3543595039999,66.09764232],[-163.33873450399992,66.09332916900017],[-163.3043106759999,66.07904694200009],[-163.2864477199999,66.07591380400002],[-163.12165279899995,66.07037995000009],[-163.04047604099992,66.07916901200007],[-163.00084387899992,66.08783600500014],[-162.9636938139999,66.10077545800006],[-162.9477026029999,66.10350169500009],[-162.86449133999986,66.09804922100007],[-162.78416907499985,66.1053734400001],[-162.75853430899988,66.1113141950001],[-162.76475989499994,66.10390859600012],[-162.71076412699995,66.08551666900009],[-162.68285071499992,66.06976959800012],[-162.6796768869999,66.05267975500009],[-162.6852514309999,66.0469424500001],[-162.68980872299986,66.040961005],[-162.69200598899988,66.033107815],[-162.6902970039999,66.021918036],[-162.6837865879999,66.008978583],[-162.67686926999988,66.00653717700006],[-162.66978919199994,66.01015859600004],[-162.6629532539999,66.0150820980001],[-162.66144771999993,66.0206566430001],[-162.66051184799989,66.02985260600013],[-162.65473385299993,66.03851959800006],[-162.63874264199987,66.04242584800015],[-162.54926510299993,66.05133698100008],[-162.50812740799995,66.06073639500003],[-162.48790442599991,66.06289297100001],[-162.48106848899988,66.06513092699998],[-162.4749649729999,66.06928131700012],[-162.46849524599992,66.07103099200013],[-162.46064205599993,66.06663646000005],[-162.4511612619999,66.05589427300013],[-162.44566809799989,66.05117422100012],[-162.43980872299994,66.04926178600006],[-162.42768307199995,66.04730866100012],[-162.40107174399992,66.0383161480001],[-162.38801021999993,66.03558991100012],[-162.34662838399993,66.03652578300002],[-162.3061010409999,66.04242584800015],[-162.2100723949999,66.07168203300007],[-162.17943274599992,66.07591380400002],[-161.91563880099994,66.04242584800015],[-161.93333899599995,66.04067617400015],[-161.94892330599993,66.03436920800011],[-161.97712154899992,66.0150820980001],[-161.96015377499992,66.01337311400009],[-161.92601477799994,66.02509186400006],[-161.90819251199986,66.021918036],[-161.89793860599994,66.01227448100002],[-161.89924068899992,66.00311920800004],[-161.90855872299989,65.99469635600009],[-161.92247473899988,65.9877790390001],[-161.89537512899994,65.97947825700011],[-161.85822506399995,65.97728099200013],[-161.82066809799994,65.98029205900004],[-161.7927953769999,65.9877790390001],[-161.7927953769999,65.99404531500015],[-161.84740149599992,66.00763580900009],[-161.83368893099993,66.0244815120001],[-161.8173315089999,66.03978099200008],[-161.79889889199995,66.05280182500015],[-161.77912350199995,66.06289297100001],[-161.74620520699983,66.07143789300012],[-161.72944088399993,66.07843659100003],[-161.72728430899994,66.08681875200007],[-161.73766028599994,66.0883649760001],[-161.78526770699992,66.07591380400002],[-161.78526770699992,66.08344147300006],[-161.7632950509999,66.09137604400003],[-161.68529212099995,66.138617255],[-161.66633053299995,66.15403880400011],[-161.65868079299992,66.16225820500001],[-161.64692135299993,66.18439362200009],[-161.63813229099986,66.19501373900013],[-161.6245824859999,66.19944896000011],[-161.6181534499999,66.20376211100002],[-161.59068762899994,66.23847077000009],[-161.58490963399987,66.24974192900008],[-161.57982337099983,66.25470612200003],[-161.57123775899993,66.25800202000006],[-161.5507299469999,66.26154205900002],[-161.50593014199993,66.27887604400003],[-161.3600968089999,66.27521393400018],[-161.36384029899995,66.27240631700012],[-161.3737686839999,66.262152411],[-161.32066809799994,66.2328148460001],[-161.29869544199994,66.22736237200014],[-161.23692786399994,66.22313060100012],[-161.17577063699983,66.22736237200014],[-161.12865149599986,66.245794989],[-161.10566158799992,66.25039297100012],[-161.08641516799995,66.24103424700009],[-161.08381100199995,66.23094310100011],[-161.08808346299986,66.21841054900013],[-161.09845943899995,66.20868561400009],[-161.1143285799999,66.2069359400001],[-161.11143958199986,66.19733307500009],[-161.10700436099987,66.18862539300004],[-161.10090084499987,66.18056875200007],[-161.09325110599985,66.1727562520001],[-161.1043595039999,66.16583893400009],[-161.11168372299989,66.15790436400012],[-161.11314856699988,66.14887116100012],[-161.10688229099992,66.138617255],[-161.1232804029999,66.13174062700007],[-161.14281165299988,66.12978750200013],[-161.1826065749999,66.13117096600003],[-161.1826065749999,66.12433502800009],[-161.16254635299993,66.11859772300012],[-161.1389867829999,66.11737702],[-161.11493893099993,66.119614976],[-161.09325110599985,66.12433502800009],[-161.07734127499995,66.130804755],[-161.06773841099988,66.13849518400012],[-161.05223548099983,66.15851471600008],[-161.02403723899988,66.18423086100013],[-161.0175268219999,66.19330475500014],[-161.00470943899995,66.23224518400004],[-160.99701900899993,66.24103424700009],[-161.01378333199986,66.26190827000006],[-161.05744381399995,66.28510163],[-161.0758764309999,66.29938385600008],[-161.09430904899992,66.31867096600003],[-161.11375891799992,66.33291250200013],[-161.13573157499994,66.34316640800016],[-161.2603246739999,66.36920807500003],[-161.30882727799988,66.37352122600014],[-161.34296627499987,66.38296133000013],[-161.36078854099995,66.38507721600013],[-161.42487545499992,66.38349030200011],[-161.51069088399996,66.40766022300012],[-161.74461829299992,66.40550364800013],[-161.75694739499986,66.402980861],[-161.7927953769999,66.38507721600013],[-161.8130590489999,66.3809268250001],[-161.87470455599993,66.37763092700008],[-161.90436764199995,66.36517975500006],[-161.91905676999986,66.34430573100009],[-161.9132787749999,66.32672760600015],[-161.88154049399992,66.32363515800007],[-161.8932999339999,66.31614817900011],[-161.8873184889999,66.30988190300015],[-161.87494869699987,66.30341217700006],[-161.86725826699995,66.29564036700005],[-161.86982174399995,66.28131745000015],[-161.8809301419999,66.272162177],[-161.89631100199992,66.27045319200009],[-161.9119360019999,66.27887604400003],[-161.9190160799999,66.28766510600009],[-161.92467200399986,66.29824453300013],[-161.92853756399995,66.30939362200017],[-161.92992102799994,66.32021719000006],[-161.93464107999995,66.32713450700005],[-161.94465084499993,66.33063385600015],[-161.9539688789999,66.3364118510001],[-161.95661373599987,66.35028717700003],[-161.9483129549999,66.36652252800015],[-161.89826412699986,66.40892161700005],[-161.8865453769999,66.42230866100014],[-161.87596594999988,66.44009023600002],[-161.8687638009999,66.46035390800013],[-161.86725826699995,66.48126862200009],[-161.88837643099995,66.52440013200011],[-161.93248450399994,66.5563418640001],[-162.07945716099994,66.62319570500013],[-162.16319739499988,66.68276601800007],[-162.2098282539999,66.70722077],[-162.26451575399992,66.7227237000001],[-162.44054114499986,66.73078034100014],[-162.47089596299992,66.73851146000005],[-162.48460852799988,66.74408600500007],[-162.49510657499994,66.746527411],[-162.50458736899995,66.74982330900004],[-162.5152481759999,66.75812409100003],[-162.52057857999995,66.766058661],[-162.52232825399994,66.78095123900015],[-162.52582760299993,66.78974030200001],[-162.54002844999985,66.80475495000003],[-162.5757950509999,66.83063385600003],[-162.58722896999993,66.84495677300013],[-162.60456295499992,66.84137604400014],[-162.6253149079999,66.86147695500001],[-162.63984127499995,66.88703034100008],[-162.63874264199987,66.89960358300009],[-162.5938207669999,66.91632721600011],[-162.5770157539999,66.91941966400002],[-162.5199682279999,66.92055898600013],[-162.51622473899988,66.92352936400015],[-162.51545162699995,66.92788320500013],[-162.5074356759999,66.93903229400014],[-162.50239010299993,66.94822825700011],[-162.4952286449999,66.95673248900006],[-162.48481197799993,66.960394598],[-162.47284908799992,66.95722077000015],[-162.46381588399987,66.94936758000007],[-162.44697018099987,66.92999909100014],[-162.41710364499988,66.92251211100007],[-162.38410396999993,66.93475983300014],[-162.35260982999992,66.9522972680001],[-162.3271378249999,66.960394598],[-162.30663001199986,66.95294830900004],[-162.28486080599987,66.93707916900011],[-162.2104386059999,66.86933014500009],[-162.12092037699995,66.80609772300012],[-162.09430904899986,66.79437897300012],[-162.0330297519999,66.786281643],[-162.01683508999992,66.78095123900015],[-162.01496334499996,66.77236562700013],[-162.0528458319999,66.73509349200005],[-162.0757543609999,66.70620351800011],[-162.08324133999983,66.68675364800005],[-162.08075924399992,66.666205145],[-162.06598873599995,66.65306224200005],[-162.0152074859999,66.63410065300003],[-161.99482174399992,66.62181224200008],[-161.91523189999992,66.55719635600003],[-161.87083899599992,66.53217194200003],[-161.63377844999988,66.457993882],[-161.60716712099992,66.45392487200003],[-161.4340307279999,66.46849192900005],[-161.38805091099994,66.48126862200009],[-161.35362708199992,66.4850528020001],[-161.33918209499996,66.48871491100006],[-161.3402807279999,66.49494049700003],[-161.3130590489999,66.50079987200017],[-161.26288814999992,66.529242255],[-161.2375382149999,66.53587474200005],[-161.20421301999988,66.53864166900003],[-161.1934301419999,66.536078192],[-161.1552628249999,66.50372955900009],[-161.14191646999987,66.4980329450001],[-161.06098385299993,66.48615143400015],[-161.03368079299992,66.47540924700014],[-160.98363196499992,66.440578518],[-160.78477942599986,66.3744977890001],[-160.76537024599995,66.37042877800006],[-160.70282955599993,66.37763092700008],[-160.61717688699994,66.37140534100003],[-160.45091712099992,66.39374420800006],[-160.24909420499992,66.40228913000007],[-160.2285050119999,66.41205475500011],[-160.21617591099994,66.43280670800002],[-160.21564693899987,66.45001862200003],[-160.22044837099995,66.49363841400012],[-160.2191869779999,66.53204987200006],[-160.24946041599992,66.56146881700012],[-160.32542883999986,66.60480377800009],[-160.32087154899992,66.60618724199999],[-160.31187903599988,66.61017487200014],[-160.30561275899993,66.61098867400007],[-160.31757564999984,66.63410065300003],[-160.29963131399992,66.63983795799999],[-160.2691137359999,66.639797268],[-160.24351966099994,66.64573802300013],[-160.27497311099995,66.65460846600008],[-160.3179418609999,66.65558502800015],[-160.35444088399993,66.64484284100006],[-160.36640377499987,66.61839427300005],[-160.39716549399995,66.62958405200008],[-160.44127356699985,66.63597239799999],[-160.48485266799986,66.63446686400015],[-160.5141495429999,66.62181224200008],[-160.52171790299994,66.60984935100014],[-160.52586829299983,66.600083726],[-160.53355872299989,66.5934919290001],[-160.5517065089999,66.59113190300015],[-160.6345108709999,66.59796784100008],[-160.6983129549999,66.61286041900006],[-160.8135473299999,66.66205475500006],[-160.8809708319999,66.67243073100015],[-161.0590714179999,66.65192291900009],[-161.13605709499996,66.65192291900009],[-161.1715795559999,66.64443594000012],[-161.2031143869999,66.62523021000008],[-161.20405025899993,66.62116120000003],[-161.20213782499988,66.60883209800006],[-161.2031143869999,66.60480377800009],[-161.21117102799988,66.60138580900009],[-161.2317602199999,66.59975820500007],[-161.23725338399993,66.59796784100008],[-161.24018307199987,66.587632554],[-161.23704993399988,66.57929108300003],[-161.2349340489999,66.570786851],[-161.24095618399986,66.56004466400007],[-161.27196204299992,66.5429548200001],[-161.31371008999994,66.5353050800001],[-161.3954971999999,66.53587474200005],[-161.42943274599986,66.54246653900013],[-161.44672604099986,66.54376862200003],[-161.4815567699999,66.53388092700011],[-161.4954320949999,66.53668854400017],[-161.5184220039999,66.55011627800015],[-161.56261145699995,66.56639232],[-161.56562252499995,66.57754140800002],[-161.54633541599992,66.59796784100008],[-161.59801184799986,66.60187409100008],[-161.6497289699999,66.61286041900006],[-161.8682755199999,66.7062848980001],[-161.9019669259999,66.73509349200005],[-161.87177486899992,66.75409577000006],[-161.86725826699995,66.75812409100003],[-161.86945553299995,66.76874420800006],[-161.88154049399992,66.78974030200001],[-161.8853246739999,66.80866120000003],[-161.88056393099995,66.81476471600003],[-161.8533422519999,66.81940338700004],[-161.82005774599986,66.83755117400013],[-161.80016028599988,66.853745835],[-161.80113684799994,66.86591217700008],[-161.80821692599991,66.87946198100003],[-161.80638587099992,66.89960358300009],[-161.78868567599994,66.91339752800009],[-161.73407955599993,66.92308177300005],[-161.71642005099994,66.93992747600005],[-161.72272701699987,66.94301992400013],[-161.72553463399993,66.946234442],[-161.72736568899992,66.949652411],[-161.73066158799995,66.953558661],[-161.66173255099991,66.96320221600014],[-161.6288549469999,66.96405670800006],[-161.55833899599992,66.95799388200008],[-161.5182999339999,66.96067942900005],[-161.4988500639999,66.97109609600012],[-161.5252172519999,66.99144114800013],[-161.54442298099985,66.99469635600016],[-161.58954830599993,66.99323151200012],[-161.6034643219999,66.99799225500011],[-161.6160782539999,67.00779857000005],[-161.63133704299992,67.01459381700005],[-161.6875707669999,67.02928294500006],[-161.69652258999986,67.02928294500006],[-161.70372473899985,67.02643463700004],[-161.70824133999994,67.02155182500015],[-161.71031653599988,67.01699453300002],[-161.7101944649999,67.01504140800007],[-161.72455807199987,67.01483795800011],[-161.74022376199994,67.01727936400015],[-161.75544186099992,67.023179429],[-161.76825924399995,67.03302643400009],[-161.7962133449999,67.04848867400013],[-161.83515377499987,67.05499909100003],[-161.99022376199989,67.04922109600015],[-162.2480362619999,67.01504140800007],[-162.25776119699987,67.02057526200018],[-162.25829016799995,67.03290436400012],[-162.25548255099986,67.04580312700013],[-162.25487219999994,67.052923895],[-162.26500403599988,67.0615908870001],[-162.27525794199994,67.06781647300015],[-162.2882787749999,67.07086823100005],[-162.3061010409999,67.07025788],[-162.2969864569999,67.05019765800013],[-162.30687415299988,67.03994375200001],[-162.31297766799992,67.02952708500011],[-162.2930395169999,67.0088565120001],[-162.31293697799993,67.00389232000005],[-162.3681127589999,67.0088565120001],[-162.43549557199992,66.99103424700003],[-162.45689856699988,66.994574286],[-162.46686764199987,67.00218333500014],[-162.4676000639999,67.00946686400006],[-162.42882239499988,67.05792877800003],[-162.42585201699987,67.06342194200006],[-162.40558834499996,67.071437893],[-162.38642330599987,67.09039948100002],[-162.3544815749999,67.13231028900013],[-162.33783932199992,67.14508698100015],[-162.33490963399993,67.15086497600014],[-162.34080969999985,67.1596540390001],[-162.3600968089999,67.167425848],[-162.38792883999994,67.16876862200007],[-162.41612708199992,67.16559479400003],[-162.43639075399994,67.1596540390001],[-162.39911861899995,67.15997955900004],[-162.38349361899986,67.15428294500005],[-162.37494869699995,67.13922760600003],[-162.3904516269999,67.13361237200003],[-162.4859106109999,67.06122467700008],[-162.55878658799992,67.01996491100012],[-162.58043372299989,67.01504140800007],[-162.66376705599993,67.01605866100012],[-162.67699133999994,67.01825592700011],[-162.6902970039999,67.02252838700004],[-162.6885473299999,67.02606842700011],[-162.6874893869999,67.02936432500013],[-162.68598385299987,67.03278229400014],[-162.6828100249999,67.03681061400012],[-162.73334713399993,67.04881419500003],[-162.8889054029999,67.0429548200001],[-162.9395645819999,67.04816315300009],[-162.95189368399994,67.04433828300007],[-162.9373266269999,67.02928294500006],[-162.91673743399986,67.02081940300002],[-162.8694962229999,67.01483795800011],[-162.8478897779999,67.0088565120001],[-162.87413489499994,67.00531647300004],[-163.0739233059999,67.03554922100004],[-163.14232337099986,67.05703359600015],[-163.40562903599994,67.075873114],[-163.43309485599988,67.08502838700015],[-163.6883031889999,67.10321686400006],[-163.72496497299994,67.111273505],[-163.7656143869999,67.13996002800015],[-163.77415930899994,67.18036530200003],[-163.7734268869999,67.22565338700004],[-163.7864477199999,67.26951732],[-163.7924698559999,67.28900788000006],[-163.81004798099994,67.335150458],[-163.8239639959999,67.3545596370001],[-163.96161861899992,67.49868398600012],[-164.04645748599992,67.56370677299999],[-164.15147864499988,67.61961497600005],[-164.44603430899986,67.70990631700006],[-164.53160559799994,67.75079987200007],[-164.59776770699992,67.77415599199999],[-164.69355221299986,67.82461172100001],[-164.72651119699995,67.83454010600012],[-164.7664688789999,67.838080145],[-164.77330481699988,67.838080145],[-164.76439368399986,67.8237165390001],[-164.74775143099993,67.81712474200003],[-164.73285885299984,67.81220123900009],[-164.7180883449999,67.803900458],[-164.74787350199986,67.80988190300003],[-164.80150305899988,67.83836497600014],[-164.8560277989999,67.84955475500014],[-165.05394446499986,67.93305084800004],[-165.2327367829999,67.99762604400017],[-165.43720455599987,68.06024811400009],[-165.6199845039999,68.09194570500013],[-165.7689916659999,68.1068789730001],[-165.92808997299989,68.13694896000011],[-165.99360104099992,68.16705963700015],[-166.02708899599986,68.19432200700005],[-166.0678604809999,68.21662018400009],[-166.07860266799995,68.22508372600014],[-166.1034643219999,68.23989492400001],[-166.20588131399987,68.26264069200015],[-166.2966202459999,68.29962799700009],[-166.64374752499995,68.34454987200009],[-166.78986568899992,68.33958567900014],[-166.8228246739999,68.35138580900009],[-166.82905025899996,68.35138580900009],[-166.81183834499996,68.35956452],[-166.5982152989999,68.40810781500006],[-166.50719153599985,68.42291901200007],[-166.44481360599988,68.42023346600017],[-166.51378333199992,68.41469961100013],[-166.71906490799992,68.37327708500014],[-166.7471817699999,68.36334870000003],[-166.66454016799995,68.35138580900009],[-166.54816646999987,68.3588320980001],[-166.45478268099987,68.39887116100012],[-166.42768307199995,68.39716217700011],[-166.3765356109999,68.38556549700009],[-166.38483639199987,68.39712148600002],[-166.41144771999987,68.4039981140001],[-166.42499752499987,68.41347890800013],[-166.33820553299995,68.39996979400014],[-166.3151342439999,68.40599192900008],[-166.3328751289999,68.41282786699999],[-166.3509008449999,68.43622467700008],[-166.37035071499992,68.44082265800002],[-166.33018958199992,68.46747467700013],[-166.31464596299992,68.48102448100009],[-166.3007706369999,68.50287506700015],[-166.30626380099991,68.52204010600012],[-166.28718014199987,68.53754303600012],[-166.25963294199994,68.55101146000003],[-166.2399796209999,68.56427643400004],[-166.23102779899986,68.57990143400012],[-166.2325333319999,68.58710358300006],[-166.2379044259999,68.59316640800013],[-166.2399796209999,68.60521067900005],[-166.23713131399995,68.61603424700014],[-166.2188614569999,68.64618561400007],[-166.23066158799995,68.65485260600018],[-166.22870846299992,68.66107819200012],[-166.22028561099995,68.6668968770001],[-166.2126358709999,68.67413971600011],[-166.20697994699992,68.68683502800016],[-166.20506751199989,68.69676341399999],[-166.20588131399987,68.71849192900005],[-166.20270748599992,68.74042389500006],[-166.1968481109999,68.75967031500004],[-166.19379635299987,68.7796898460001],[-166.19904537699986,68.80390045800009],[-166.22797604099986,68.84959544500009],[-166.23676510299993,68.87482330900015],[-166.22260494699992,68.88580963700004],[-166.08564205599993,68.89142487200003],[-166.00910396999993,68.87274811400013],[-165.81358801999988,68.87946198100009],[-165.66474361899992,68.86155833500014],[-165.32209225199992,68.87645091399999],[-165.04405676999986,68.88149648600002],[-164.7907608709999,68.91425202000015],[-164.3464249339999,68.92938873900015],[-164.2570287749999,68.94668203300013],[-164.17035885299995,68.953802802],[-164.09003658799995,68.97894928600006],[-163.96454830599987,69.00311920800007],[-163.9351700509999,69.0124372420001],[-163.87669837099992,69.03864166900014],[-163.82172604099992,69.04783763200011],[-163.6225479809999,69.11920807500012],[-163.28612219999988,69.31098053600012],[-163.26475989499994,69.32660553600012],[-163.1953018869999,69.415228583],[-163.17699133999994,69.426906643],[-163.15575110599985,69.420843817],[-163.23997962099986,69.32831452000012],[-163.27245032499985,69.304144598],[-163.27245032499985,69.29791901200015],[-163.24254309799989,69.30463288],[-163.15575110599985,69.35936107000013],[-163.16319739499994,69.36619700700005],[-163.1426488919999,69.37523021000005],[-163.1258031889999,69.38996002800015],[-163.1206762359999,69.4064395200001],[-163.1353246739999,69.420843817],[-163.12242591099988,69.430365302],[-163.1201879549999,69.43813711100002],[-163.12214107999995,69.44562409100017],[-163.12165279899995,69.45433177300005],[-163.1141251289999,69.466253973],[-163.10667883999992,69.47483958500011],[-163.1049698559999,69.48371002800015],[-163.11481686099992,69.49591705900004],[-163.08320064999992,69.50104401200004],[-163.07079016799992,69.52041250200007],[-163.06928463399996,69.54132721600003],[-163.0701391269999,69.55117422100012],[-163.06476803299992,69.55597565300003],[-163.06786048099988,69.56679922100012],[-163.0747777989999,69.57831452000006],[-163.08067786399994,69.58535390800013],[-163.0938207669999,69.59056224200012],[-163.14899654899992,69.59955475500006],[-163.14899654899992,69.60578034100011],[-163.0854386059999,69.60932038],[-163.0535782539999,69.61546458500005],[-163.0254613919999,69.62628815300015],[-163.03514563699986,69.63231028900007],[-163.0663956369999,69.64671458500013],[-163.0329076809999,69.661078192],[-163.04161536399988,69.66347890800016],[-163.0663956369999,69.67405833500003],[-163.04853268099984,69.68724192900005],[-162.9841202459999,69.681830145],[-162.95653235599985,69.68773021000014],[-162.93842525899996,69.71124909100008],[-162.95759029899992,69.72337474199999],[-162.9934789699999,69.72797272300012],[-163.0254613919999,69.72866445500007],[-163.01874752499995,69.745835679],[-163.00536048099985,69.75311920800003],[-162.9883520169999,69.75682200700005],[-162.97081458199995,69.76341380400011],[-162.9782608709999,69.77024974200005],[-162.94977779899992,69.79047272300006],[-162.79137122299989,69.85333893400012],[-162.75727291599986,69.87189362200003],[-162.71161861899992,69.88068268400009],[-162.6699926419999,69.90656159100008],[-162.59276282499994,69.94171784100014],[-162.53779049399986,69.956732489],[-162.51142330599987,69.97695547100001],[-162.48949133999994,70.00177643400015],[-162.47736568899995,70.024115302],[-162.4819229809999,70.03074778900007],[-162.4910375639999,70.05145905200006],[-162.46149654899992,70.05963776200015],[-162.36070716099985,70.05760325700005],[-162.36420650899993,70.06366608300014],[-162.3713272779999,70.07949453300007],[-162.37494869699995,70.08559804900007],[-162.34080969999985,70.09243398600007],[-162.35204016799995,70.108384507],[-162.32148189999992,70.12726471600003],[-162.24461829299992,70.15387604400014],[-162.20673580599987,70.16132233300014],[-162.19941158799986,70.16437409100003],[-162.19428463399996,70.17121002800015],[-162.19041907499985,70.17804596600017],[-162.18659420499995,70.18121979400003],[-162.17096920499995,70.18463776200004],[-162.12486731699994,70.20319245000015],[-162.09943600199992,70.22060781500011],[-162.0528458319999,70.24384186400015],[-162.01496334499996,70.27732981999998],[-162.00165768099993,70.28091054900007],[-161.95661373599987,70.30467357000008],[-161.90571041599995,70.32062409100017],[-161.87983150899993,70.32294342700013],[-161.8535863919999,70.3183454450001],[-161.85614986899992,70.31464264500006],[-161.86103268099987,70.30467357000008],[-161.8399552069999,70.3041039080001],[-161.83311926999994,70.30467357000008],[-161.83311926999994,70.29783763200005],[-161.84044348899985,70.29694245000013],[-161.86103268099987,70.29043203300016],[-161.7237035799999,70.27484772300006],[-161.70335852799988,70.26373932500003],[-161.7334692049999,70.25031159100014],[-161.8600561189999,70.25869375200001],[-161.9019669259999,70.25690338700012],[-161.8679093089999,70.24266185100011],[-161.79084225199995,70.24054596600011],[-161.7586156889999,70.22955963700007],[-161.78917395699992,70.22915273600013],[-161.8325902989999,70.22313060100014],[-161.85948645699992,70.21185944200015],[-161.84052486899992,70.19546133000013],[-161.86554928299995,70.17934804900007],[-161.89952551999988,70.17865631700012],[-162.0087377589999,70.19627513200005],[-162.02550208199992,70.19546133000013],[-162.0397843089999,70.19110748900015],[-162.06615149599992,70.17938873900005],[-162.08075924399992,70.1749535180001],[-162.12169348899988,70.16132233300014],[-162.12169348899988,70.15387604400014],[-161.86461341099988,70.16913483300011],[-161.84809322799987,70.17381419500005],[-161.81322180899994,70.19208405200011],[-161.7867325509999,70.19965241100006],[-161.70335852799988,70.19546133000013],[-161.7201635409999,70.20123932500009],[-161.7282608709999,70.20229726800007],[-161.73814856699994,70.20229726800007],[-161.72931881399987,70.21564362200017],[-161.71259518099993,70.22406647300012],[-161.69318600199995,70.22833893400004],[-161.6760147779999,70.22955963700007],[-161.66673743399994,70.23208242400007],[-161.6635229159999,70.23786041900003],[-161.6614477199999,70.24469635600005],[-161.65558834499993,70.25006745000009],[-161.64342200399994,70.25409577000006],[-161.63194739499988,70.2560895850001],[-161.34215247299989,70.258775132],[-161.2106420559999,70.27680084800004],[-161.0670059889999,70.31484609600001],[-161.0249731109999,70.3183454450001],[-161.0249731109999,70.31216054900013],[-161.0318090489999,70.31216054900013],[-161.0318090489999,70.30467357000008],[-161.0098770819999,70.30438873900012],[-160.94989986899992,70.29043203300016],[-160.95649166599992,70.30145905200011],[-160.9774063789999,70.313625393],[-160.98399817599994,70.32514069200012],[-160.9578751289999,70.33274974200008],[-160.8606664699999,70.34731679900001],[-160.62153072799993,70.42959219000006],[-160.59980221299986,70.44183991100012],[-160.6627904939999,70.43402741100012],[-160.70746822799993,70.41913483300009],[-160.81269283799992,70.38719310100008],[-160.7730606759999,70.40574778899999],[-160.68927975199992,70.43402741100012],[-160.44896399599986,70.48965078300014],[-160.21617591099994,70.57904694200006],[-160.1883031889999,70.5970726580001],[-160.1722305979999,70.6049258480001],[-160.1553848949999,70.60635000200016],[-160.16742916599992,70.59625885600009],[-160.15961666599992,70.58795807500012],[-160.14268958199995,70.58201732],[-160.1274307929999,70.57904694200006],[-160.10297604099992,70.5785179710001],[-160.03807532499985,70.592718817],[-159.94709225199992,70.59723541900014],[-159.9282120429999,70.592718817],[-159.9243871739999,70.581488348],[-159.9289037749999,70.56842682500003],[-159.93818111899986,70.55727773600002],[-159.94867916599995,70.55170319199999],[-159.94867916599995,70.54486725500009],[-159.94220943899995,70.54547760600002],[-159.92198645699995,70.54486725500009],[-159.94383704299983,70.521958726],[-160.0110570949999,70.52033112200014],[-160.0418188139999,70.50702545800014],[-160.07408606699994,70.48822662999999],[-160.11481686099987,70.48069896000011],[-160.20189368399994,70.47662995000017],[-160.1687719389999,70.46596914300012],[-160.12572180899988,70.46600983300011],[-159.9484757149999,70.49445221600014],[-159.92198645699995,70.48965078300014],[-159.93834387899994,70.4760602890001],[-159.97423255099994,70.45600006700013],[-159.9902237619999,70.44183991100012],[-160.01390540299985,70.41095612200017],[-160.0296524729999,70.39899323100003],[-160.0517471999999,70.39411041900017],[-160.05634518099993,70.37494538],[-160.11420650899993,70.34414297100012],[-160.13365637899994,70.32514069200012],[-160.09601803299995,70.32135651200008],[-160.00902258999986,70.361476955],[-159.96918697799993,70.37299225500004],[-159.9484757149999,70.37042877800015],[-159.93317623599995,70.36229075700014],[-159.92223059799989,70.34931061400012],[-159.91454016799995,70.33197663000006],[-159.91681881399992,70.33038971600003],[-159.92231197799995,70.32807038000006],[-159.9273168609999,70.32416413000006],[-159.9282120429999,70.3183454450001],[-159.92548580599993,70.315375067],[-159.92076575399992,70.31338125200016],[-159.91645260299993,70.31232330900009],[-159.91454016799995,70.31216054900013],[-159.91063391799995,70.3041039080001],[-159.90619869699984,70.29913971600014],[-159.9042862619999,70.29376862200009],[-159.9077042309999,70.2842471370001],[-159.86656653599988,70.27773672100001],[-159.83324133999986,70.25202057500015],[-159.80308997299994,70.22028229400009],[-159.77118893099993,70.19546133000013],[-159.7705785799999,70.22516510600015],[-159.78673255099991,70.23810455900015],[-159.81053626199989,70.24689362200003],[-159.8326309889999,70.26373932500003],[-159.8369034499999,70.27362702000015],[-159.8386938139999,70.28579336100013],[-159.83881588399987,70.30841705900009],[-159.84496008999994,70.31342194200015],[-159.84972083199992,70.31842682500009],[-159.8530981109999,70.32514069200012],[-159.85053463399996,70.33087799700009],[-159.8434952459999,70.33551666900003],[-159.8386938139999,70.34100983300006],[-159.8425186839999,70.34943268400009],[-159.88031979099986,70.37567780200014],[-159.88727779899986,70.38719310100008],[-159.8867895169999,70.39887116100006],[-159.88215084499993,70.40761953300013],[-159.8767797519999,70.41547272300012],[-159.87421627499987,70.42479075700008],[-159.8650610019999,70.44403717700011],[-159.84581458199995,70.45652903900013],[-159.8286026679999,70.4712588560001],[-159.82579505099986,70.49705638200005],[-159.81029212099986,70.50079987200017],[-159.79930579299992,70.49921295800014],[-159.7280981109999,70.47264232],[-159.70970618399986,70.46979401200015],[-159.66962643099993,70.47308991099999],[-159.5933731759999,70.49258047100007],[-159.54084225199995,70.49921295800014],[-159.49531002499987,70.51581452],[-159.4805802069999,70.51552969000005],[-159.44928951699993,70.50092194200015],[-159.43476314999987,70.49705638200005],[-159.41852779899995,70.4997012390001],[-159.36713619699992,70.51764557500017],[-159.3256729809999,70.52130768400002],[-159.30577551999994,70.52619049700009],[-159.29137122299989,70.53807200700005],[-159.42109127499992,70.52383047100015],[-159.53083248599995,70.53241608300006],[-159.56513424399992,70.53123607000013],[-159.56843014199995,70.5287946640001],[-159.5708715489999,70.524115302],[-159.57233639199993,70.51959870000003],[-159.5724991529999,70.51764557500017],[-159.57994544199988,70.51683177300008],[-159.63117428299992,70.51727936400006],[-159.64118404899992,70.51430898600013],[-159.65074622299989,70.50702545800014],[-159.66380774599986,70.50006745000015],[-159.68175208199992,70.4968122420001],[-159.7159317699999,70.49705638200005],[-159.73228919199994,70.4999046900001],[-159.7423803379999,70.50421784100008],[-159.7643529939999,70.51764557500017],[-159.82530676999988,70.54376862200003],[-159.8425186839999,70.555121161],[-159.84943600199992,70.56232330900004],[-159.8552139959999,70.57050202000015],[-159.85912024599983,70.57941315300009],[-159.86054439999992,70.58901601800007],[-159.8646134109999,70.59906647300012],[-159.8745824859999,70.602687893],[-159.8867895169999,70.60455963700015],[-159.9478653639999,70.63641998899999],[-160.00572669199994,70.64008209800015],[-160.0651749339999,70.62775299700009],[-160.1199845039999,70.60635000200016],[-160.12230383999986,70.61029694200012],[-160.12458248599995,70.615668036],[-160.1274307929999,70.62620677300005],[-160.0962621739999,70.64305247600004],[-159.9130346339999,70.70062897300012],[-159.88805091099988,70.705552476],[-159.8362524079999,70.7080752620001],[-159.81212317599991,70.71556224199999],[-159.84626217399995,70.71556224199999],[-159.81309973899994,70.72785065300003],[-159.70897376199989,70.77928294500013],[-159.6832169259999,70.79759349199999],[-159.66816158799986,70.80499909100008],[-159.64484615799986,70.81000397300011],[-159.59540768099993,70.81378815300006],[-159.5487768219999,70.83022695500013],[-159.51964270699995,70.83576080900015],[-159.41205807199992,70.84202708500011],[-159.38329016799992,70.84690989799999],[-159.34630286399988,70.86334870000017],[-159.16100012899994,70.8869082700001],[-159.20624752499987,70.86640045800006],[-159.31879635299993,70.86102936400003],[-159.3732804029999,70.84593333500003],[-159.17426510299987,70.85390859600007],[-159.1551407539999,70.84634023600002],[-159.14057369699987,70.82542552300005],[-159.18134518099993,70.81671784100017],[-159.31183834499993,70.81244538000006],[-159.4108780589999,70.78742096600014],[-159.4490453769999,70.78449127800002],[-159.4490453769999,70.77704498900015],[-159.39207923099985,70.76732005399998],[-159.37360592399995,70.76093170800009],[-159.35680091099994,70.76019928600014],[-159.33906002499992,70.76654694200009],[-159.32127844999994,70.76927317900005],[-159.30443274599995,70.7577985700001],[-159.31004798099994,70.75397370000007],[-159.31871497299994,70.74616120000009],[-159.32489986899992,70.7435570330001],[-159.30097408799995,70.72711823100009],[-159.24644934799989,70.70644765800007],[-159.2224828769999,70.68891022300014],[-159.2162979809999,70.69513580900009],[-159.2704971999999,70.74461497600005],[-159.27904212099992,70.7647158870001],[-159.23615475199995,70.77081940300009],[-159.11974036399988,70.76398346600017],[-158.98973548099988,70.77704498900015],[-159.0034887359999,70.79726797100007],[-159.02916419199994,70.80512116100006],[-159.08531653599985,70.80499909100008],[-159.0604141919999,70.81655508000001],[-158.71540279899986,70.79132721600014],[-158.3380020819999,70.81801992400005],[-158.43927975199986,70.82208893400004],[-158.49299068899992,70.83234284100013],[-158.52354895699986,70.8527692730001],[-158.47992916599995,70.8532575540001],[-158.3893936839999,70.83673737200003],[-158.04303951699995,70.836859442],[-157.86493893099984,70.86644114800005],[-157.67353268099987,70.92279694200012],[-157.62437903599985,70.93130117400014],[-157.59325110599985,70.94619375200001],[-157.5779516269999,70.94961172100001],[-157.55907141799983,70.951361395],[-157.23119055899994,71.07135651200004],[-157.0878393219999,71.15501536699999],[-157.02550208199992,71.20319245000003],[-156.81720943899992,71.30634186400006],[-156.68183346299986,71.35272858300011],[-156.5919083319999,71.36473216400005],[-156.52240963399987,71.38971588700015],[-156.4986059239999,71.40452708500014],[-156.47150631399995,71.4125023460001],[-156.43480383999994,71.40648021]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":10,"sovereignt":"Cuba","sov_a3":"CUB","adm0_dif":1,"level":2,"type":"Lease","admin":"US Naval Base Guantanamo Bay","adm0_a3":"USG","geou_dif":0,"geounit":"US Naval Base Guantanamo Bay","gu_a3":"USG","su_dif":0,"subunit":"US Naval Base Guantanamo Bay","su_a3":"USG","brk_diff":1,"name":"USNB Guantanamo Bay","name_long":"US Naval Base Guantanamo Bay","brk_a3":"B50","brk_name":"Guantanamo Bay USNB","brk_group":null,"abbrev":"Guantan.","postal":"GB","formal_en":null,"formal_fr":null,"note_adm0":"Leased by U.S.A.","note_brk":"Leased to U.S.A. by Cuba; Claimed by Cuba","name_sort":"Guantanamo Bay USNB","name_alt":"Gitmo, GTMO","mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":1,"pop_est":7000,"gdp_md_est":280,"pop_year":1999,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"woe_id_eh":-99,"woe_note":"No WOE equivalent.","adm0_a3_is":"-99","adm0_a3_us":"USG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":19,"long_len":28,"abbrev_len":8,"tiny":-99,"homepart":-99,"filename":"usnbguantanamobay.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.18395510799986,19.93359416400007],[-75.19312655199985,19.927095081000132],[-75.19603595999986,19.921910470000157],[-75.20164463599988,19.92285534500017],[-75.20338805899988,19.92835126200005],[-75.20895147699986,19.929247506000067],[-75.21450075799993,19.9262811170001],[-75.21810998199992,19.92400565200013],[-75.21785885299994,19.91945909499999],[-75.2057508519999,19.911534998000022],[-75.19221400399994,19.909969251000135],[-75.19100218099994,19.906316795000077],[-75.20749327899992,19.90577661000016],[-75.23106848899991,19.900458075000085],[-75.23285695529569,19.900051605537115],[-75.22896927899987,19.93744049100009],[-75.17886206299991,19.970731793000123],[-75.16019244399989,19.970647995000107],[-75.16835286299991,19.96656475000013],[-75.1712137449999,19.957523997000024],[-75.1634008449999,19.950384833000054],[-75.15673335199995,19.938899725000127],[-75.17218990799995,19.93577708500011],[-75.18395510799986,19.93359416400007]]],[[[-75.09495029099992,19.971583690000088],[-75.0950058107432,19.89722596270327],[-75.1076611199999,19.89759226600013],[-75.13742489299992,19.892553732000138],[-75.16191957099988,19.891142236000164],[-75.16529607899994,19.897012390000114],[-75.16437767299988,19.91371929400016],[-75.15766315899987,19.91870416000016],[-75.14647376199991,19.923407294000086],[-75.12263792099992,19.940460661000042],[-75.11784056199991,19.94408363700013],[-75.10438848599993,19.94275725300018],[-75.10104154399994,19.953149818000114],[-75.10460215699996,19.959358803000143],[-75.11675834999988,19.967054234000113],[-75.12986191999988,19.95561256600014],[-75.13380559799987,19.958074399000097],[-75.13963782499987,19.96499258000007],[-75.13703578021642,19.97155061008597],[-75.09495029099992,19.971583690000088]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Saint Vincent and the Grenadines","sov_a3":"VCT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saint Vincent and the Grenadines","adm0_a3":"VCT","geou_dif":0,"geounit":"Saint Vincent and the Grenadines","gu_a3":"VCT","su_dif":0,"subunit":"Saint Vincent and the Grenadines","su_a3":"VCT","brk_diff":0,"name":"St. Vin. and Gren.","name_long":"Saint Vincent and the Grenadines","brk_a3":"VCT","brk_name":"St. Vin. and Gren.","brk_group":null,"abbrev":"St.V.G.","postal":"VC","formal_en":"Saint Vincent and the Grenadines","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"St. Vincent and the Grenadines","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":5,"mapcolor13":7,"pop_est":104574,"gdp_md_est":1070,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"VC","iso_a2":"VC","iso_a3":"VCT","iso_n3":"670","un_a3":"670","wb_a2":"VC","wb_a3":"VCT","woe_id":23424981,"woe_id_eh":23424981,"woe_note":"Exact WOE match as country","adm0_a3_is":"VCT","adm0_a3_us":"VCT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":18,"long_len":32,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"VCT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.43272864499988,12.587836005000113],[-61.44322669199994,12.585150458000129],[-61.455922003999916,12.586086330000114],[-61.45982825399991,12.591457424000081],[-61.455677863999874,12.596584377000097],[-61.454660610999916,12.600775458000115],[-61.45677649599991,12.604437567000076],[-61.45555579299991,12.607082424000154],[-61.44831295499997,12.609930731000105],[-61.441395636999886,12.60789622600008],[-61.42935136599996,12.600490627000084],[-61.42662512899988,12.591864325000174],[-61.43272864499988,12.587836005000113]]],[[[-61.33389238199995,12.69358958500014],[-61.344105597999885,12.693060614000075],[-61.353098110999916,12.696478583000072],[-61.35065670499998,12.699530341000154],[-61.33926347599993,12.701971747000101],[-61.33397376199995,12.708563544000171],[-61.3358455069999,12.717433986000117],[-61.33535722599992,12.72719961100016],[-61.32632402299989,12.733140367000173],[-61.31940670499992,12.73379140800013],[-61.31631425699993,12.730047919000098],[-61.31436113199987,12.72089264500012],[-61.31969153599994,12.713934637000136],[-61.3255102199999,12.708197333000072],[-61.32835852799993,12.699448960000081],[-61.33389238199995,12.69358958500014]]],[[[-61.18761145699991,12.856390692000076],[-61.19082597599987,12.855861721000094],[-61.191761847999935,12.868231512000122],[-61.183176235999916,12.883490302000098],[-61.174956834999925,12.881781317000089],[-61.18358313699994,12.86200592700007],[-61.18761145699991,12.856390692000076]]],[[[-61.22642981699994,12.99315013200011],[-61.24242102799993,12.982245184000135],[-61.23497473899994,12.982245184000135],[-61.24242102799993,12.974798895000063],[-61.24754798099994,12.982123114000075],[-61.255482550999915,12.98672109600011],[-61.26561438699986,12.988714911000145],[-61.277211066999875,12.988470770000104],[-61.277211066999875,12.995917059000163],[-61.26231848899991,12.991359768000123],[-61.23961341099988,12.995794989000103],[-61.239572719999906,13.003851630000142],[-61.24620520699995,13.011216539000129],[-61.24925696499995,13.016343492000145],[-61.24095618399988,13.024237372000115],[-61.21312415299992,13.041815497000144],[-61.201486782999886,13.051174221000096],[-61.200062628999916,13.047308661000088],[-61.19961503799993,13.043687242000118],[-61.198231574999845,13.040228583000115],[-61.19399980399993,13.036851304000109],[-61.20832271999993,13.023260809000147],[-61.22642981699994,12.99315013200011]]],[[[-61.16734778599991,13.146063544000128],[-61.18521074099997,13.132513739000075],[-61.210194464999894,13.144191799000154],[-61.27135169199994,13.186509507000068],[-61.27936764199998,13.215887762000165],[-61.2766820949999,13.249904690000093],[-61.26292883999989,13.27643463700015],[-61.26553300699988,13.28021881700009],[-61.27037512899994,13.290106512000179],[-61.243397589999915,13.294378973000107],[-61.23184160099987,13.316961981000176],[-61.22496497299997,13.345770575000115],[-61.21202551999996,13.368882554000066],[-61.199126756999924,13.377020575000172],[-61.187123175999915,13.380438544000086],[-61.17638098899991,13.380764065000108],[-61.15123450399991,13.376776434000135],[-61.144032355999904,13.37409088700015],[-61.140044725999935,13.367377020000106],[-61.13377844999988,13.352769273000176],[-61.123931443999936,13.308254299000097],[-61.12441972599993,13.246975002000084],[-61.1380102199999,13.186916408000073],[-61.16734778599991,13.146063544000128]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"United States Virgin Islands","adm0_a3":"VIR","geou_dif":0,"geounit":"United States Virgin Islands","gu_a3":"VIR","su_dif":0,"subunit":"United States Virgin Islands","su_a3":"VIR","brk_diff":0,"name":"U.S. Virgin Is.","name_long":"United States Virgin Islands","brk_a3":"VIR","brk_name":"U.S. Virgin Is.","brk_group":null,"abbrev":"V.I. (U.S.)","postal":"VI","formal_en":"Virgin Islands of the United States","formal_fr":null,"note_adm0":"U.S.A.","note_brk":null,"name_sort":"Virgin Islands (U.S.)","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":109825,"gdp_md_est":1577,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"VQ","iso_a2":"VI","iso_a3":"VIR","iso_n3":"850","un_a3":"850","wb_a2":"VI","wb_a3":"VIR","woe_id":23424985,"woe_id_eh":23424985,"woe_note":"Exact WOE match as country","adm0_a3_is":"VIR","adm0_a3_us":"VIR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":15,"long_len":28,"abbrev_len":11,"tiny":3,"homepart":-99,"filename":"VIR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.73078365799995,17.765285549000126],[-64.70970618399991,17.758205471000068],[-64.69904537699998,17.752834377000013],[-64.68976803299992,17.744777736000074],[-64.66690019399994,17.762884833],[-64.63097083199995,17.770331122000144],[-64.59178626199991,17.768296617000132],[-64.5593969389999,17.758449611000014],[-64.5593969389999,17.751613674000097],[-64.58519446499994,17.748968817],[-64.60667883999986,17.742254950000145],[-64.6487930979999,17.72370026200015],[-64.67052161399988,17.71723053600006],[-64.87637285099996,17.689113674000154],[-64.8951716789999,17.682766018000123],[-64.8878474599999,17.699896552000055],[-64.88662675699987,17.714422919000114],[-64.88768469999992,17.75527578300013],[-64.88463294199993,17.767889716000028],[-64.87645423099994,17.77586497599999],[-64.83869381399995,17.764837958000143],[-64.81745357999998,17.774115302],[-64.79548092399997,17.787543036000088],[-64.7716365229999,17.792629299000012],[-64.76915442599994,17.79002513200011],[-64.73078365799995,17.765285549000126]]],[[[-64.66456145799995,18.346927221000144],[-64.66039026099989,18.336723168000063],[-64.67412997599993,18.33446290199999],[-64.70099350799995,18.342976068000056],[-64.70816063399994,18.340145034000113],[-64.69742311599995,18.32653998300013],[-64.70400507199992,18.303310064000087],[-64.73623042099985,18.31975319000018],[-64.78636715499992,18.315221772000044],[-64.80128501799996,18.328253009000104],[-64.78636541799989,18.349772052000063],[-64.76964889799993,18.356589046000025],[-64.75173632899993,18.361689154000132],[-64.75591344999987,18.369056759000088],[-64.74695540599996,18.373589962000082],[-64.71351856599996,18.365083232000117],[-64.6973968689999,18.362243917000015],[-64.6824723069999,18.356003063000045],[-64.66456145799995,18.346927221000144]]],[[[-64.92850484399992,18.380369590000054],[-64.89143645499993,18.359968246],[-64.85498378299991,18.340129434000072],[-64.84007959199997,18.317489213000087],[-64.8514081939999,18.31578181400012],[-64.86031207099995,18.318590940000107],[-64.87163696599987,18.314623045000175],[-64.8788391729999,18.304440513000188],[-64.91049791299993,18.31575774900007],[-64.92185889299992,18.32255468600006],[-64.93083383699988,18.339550364000118],[-64.93502297799995,18.330486062000134],[-64.94458577799989,18.33671428300012],[-64.96609509199993,18.332735290000144],[-64.98164310499993,18.335558349000152],[-64.99362102299997,18.34802401000003],[-65.02530892999994,18.33892613800016],[-65.04149344199992,18.353658056000157],[-65.0118708979999,18.368597723],[-64.98664303299992,18.37482330900015],[-64.95000232999988,18.37355397900002],[-64.93497996399992,18.363320022000053],[-64.92601936499989,18.36615355900004],[-64.94225088299987,18.378099150000036],[-64.95002834499991,18.386598614000135],[-64.92850484399992,18.380369590000054]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"British Virgin Islands","adm0_a3":"VGB","geou_dif":0,"geounit":"British Virgin Islands","gu_a3":"VGB","su_dif":0,"subunit":"British Virgin Islands","su_a3":"VGB","brk_diff":0,"name":"British Virgin Is.","name_long":"British Virgin Islands","brk_a3":"VGB","brk_name":"British Virgin Is.","brk_group":null,"abbrev":"V.I. (Br.)","postal":"VG","formal_en":"British Virgin Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":null,"name_sort":"British Virgin Islands","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":24491,"gdp_md_est":853.4,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"VI","iso_a2":"VG","iso_a3":"VGB","iso_n3":"092","un_a3":"092","wb_a2":"-99","wb_a3":"-99","woe_id":23424983,"woe_id_eh":23424983,"woe_note":"Exact WOE match as country","adm0_a3_is":"VGB","adm0_a3_us":"VGB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":18,"long_len":22,"abbrev_len":10,"tiny":3,"homepart":-99,"filename":"VGB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.56786048099994,18.337388414000046],[-64.57091223899994,18.334662177000055],[-64.57469641799986,18.343003648000135],[-64.58531653599991,18.34861888200014],[-64.60073808499993,18.35162995000003],[-64.60301673099991,18.355617580000015],[-64.59406490799998,18.35781484600001],[-64.58690344999994,18.357977606000148],[-64.58283443899998,18.35944245000003],[-64.57835852799991,18.36058177300016],[-64.56944739499997,18.357977606000148],[-64.56818600199998,18.350897528000118],[-64.56786048099994,18.337388414000046]]],[[[-64.52719946799996,18.44911813200018],[-64.51684528599989,18.43929038100005],[-64.52012864599988,18.43412304600018],[-64.53159171999994,18.43567723600016],[-64.54859616299993,18.44027055800016],[-64.56116595099991,18.433545514000073],[-64.56639563699989,18.42572663],[-64.57404537699992,18.419134833000115],[-64.58332271999987,18.416327216000166],[-64.59117591099994,18.417792059000035],[-64.5969945949999,18.420803127000127],[-64.60338294199991,18.423041083000115],[-64.61339270699992,18.422552802000112],[-64.61286373599991,18.41950104400003],[-64.62071692599991,18.411566473000065],[-64.63036048099988,18.40485260600003],[-64.63512122299997,18.40550364800016],[-64.64366614499991,18.39394765800013],[-64.65968514299989,18.38307161200005],[-64.67547765499998,18.384105078000132],[-64.68962849699994,18.38463998100015],[-64.71412824599986,18.386202581000035],[-64.70050873399988,18.398069858000056],[-64.68255356999995,18.399548393000188],[-64.67439957199994,18.412397892000016],[-64.66564710999998,18.424396466000175],[-64.66182129899988,18.440415670000093],[-64.64170492799991,18.451157722000076],[-64.6272680329999,18.447088934000064],[-64.6036330009999,18.45161612300008],[-64.59270478999987,18.448562173000184],[-64.56016094899987,18.454102780000042],[-64.52719946799996,18.44911813200018]]],[[[-64.72423255099994,18.442694403000147],[-64.73033606699994,18.437892971000068],[-64.75938880099991,18.44183991100006],[-64.77399654899995,18.442287502000156],[-64.76842200399992,18.44965241100006],[-64.74290930899994,18.454982815000122],[-64.72980709499987,18.453436591000084],[-64.7275284499999,18.449896552],[-64.72423255099994,18.442694403000147]]],[[[-64.53160559799994,18.46702708500014],[-64.5365291009999,18.4623884140001],[-64.5382380849999,18.46515534100017],[-64.53734290299991,18.471828518000123],[-64.5394587879999,18.48285553600006],[-64.53770911399991,18.490668036000056],[-64.53270423099988,18.494126695000077],[-64.52953040299991,18.49258047100004],[-64.52892005099994,18.481838283000016],[-64.52916419199991,18.47638580900015],[-64.53160559799994,18.46702708500014]]],[[[-64.32603919199991,18.51194896000014],[-64.3342992829999,18.49705638199999],[-64.35309811099995,18.48720937700007],[-64.37197831899988,18.481919664000188],[-64.38060462099989,18.480902411000116],[-64.38902747299994,18.471096096000096],[-64.40819251199987,18.456691799000126],[-64.42931067599991,18.44489166900014],[-64.44334876199986,18.44306061400009],[-64.41852779899992,18.475327867000104],[-64.41173255099997,18.491359768],[-64.41539466099994,18.51194896000014],[-64.41095943899995,18.51194896000014],[-64.4081111319999,18.51048411700016],[-64.40575110599985,18.50820547100001],[-64.40241451699993,18.505764065000065],[-64.3468318349999,18.506903387000094],[-64.32603919199991,18.51194896000014]]],[[[-64.2850642569999,18.734076239000117],[-64.27074133999992,18.70066966400016],[-64.27953040299988,18.70123932500003],[-64.33653723899988,18.724269924000012],[-64.3805232409999,18.72614166900017],[-64.39867102799991,18.732082424000097],[-64.40855872299991,18.744696356000176],[-64.32030188699994,18.746242580000015],[-64.2850642569999,18.734076239000117]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Argentina","sov_a3":"ARG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Argentina","adm0_a3":"ARG","geou_dif":0,"geounit":"Argentina","gu_a3":"ARG","su_dif":0,"subunit":"Argentina","su_a3":"ARG","brk_diff":0,"name":"Argentina","name_long":"Argentina","brk_a3":"ARG","brk_name":"Argentina","brk_group":null,"abbrev":"Arg.","postal":"AR","formal_en":"Argentine Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Argentina","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":13,"pop_est":40913584,"gdp_md_est":573900,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"AR","iso_a2":"AR","iso_a3":"ARG","iso_n3":"032","un_a3":"032","wb_a2":"AR","wb_a3":"ARG","woe_id":23424747,"woe_id_eh":23424747,"woe_note":"Exact WOE match as country","adm0_a3_is":"ARG","adm0_a3_us":"ARG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ARG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.65412350199998,-54.88624439899996],[-68.65413543192139,-54.88624456459053],[-68.65413512199987,-54.88624370799999],[-68.64234289599995,-54.85365325899987],[-68.64198759746944,-54.79917412426754],[-68.63231360599994,-54.80535247199998],[-68.60936438699994,-54.83228932099986],[-68.59947669199994,-54.841403903999854],[-68.58055579299992,-54.854750257999946],[-68.57184811099992,-54.862725518999824],[-68.56822669199997,-54.87835051899999],[-68.58726966099997,-54.88534921699996],[-68.65412350199998,-54.88624439899996]]],[[[-64.34056555899994,-54.71599700299996],[-64.32371985599994,-54.72226327899991],[-64.30553137899994,-54.71559010199995],[-64.30064856699988,-54.720798434999864],[-64.29625403599991,-54.72210051899995],[-64.29137122299994,-54.72210051899995],[-64.2850642569999,-54.72307708099993],[-64.27155514199993,-54.727227471999875],[-64.2413630849999,-54.72177499799993],[-64.22423255099997,-54.72307708099993],[-64.21165930899988,-54.73007577899991],[-64.19920813699986,-54.73967864399998],[-64.18716386599993,-54.747002862999985],[-64.17585201699995,-54.747002862999985],[-64.16905676999994,-54.73723723799995],[-64.17324785099987,-54.72714609199989],[-64.1744685539999,-54.71892669099989],[-64.15876217399992,-54.71559010199995],[-64.15111243399988,-54.71795012799982],[-64.13719641799992,-54.72771575299986],[-64.12743079299987,-54.729913018999945],[-64.11929277299996,-54.72714609199989],[-64.11204993399993,-54.72128671699994],[-64.1039119129999,-54.716078382999946],[-64.09325110599988,-54.71559010199995],[-64.08779863199993,-54.721368096999925],[-64.07579505099991,-54.74374765399985],[-64.06598873599998,-54.750420830999985],[-64.05357825399994,-54.748630467],[-64.02432206899994,-54.73357512799999],[-63.91405188699985,-54.71542734199999],[-63.88097083199991,-54.72307708099993],[-63.88841712099988,-54.729913018999945],[-63.86823482999995,-54.73308684699982],[-63.84581458199994,-54.72210051899995],[-63.82567298099991,-54.714939059999914],[-63.81212317599994,-54.729913018999945],[-63.83356686099998,-54.73992278399993],[-63.841908331999946,-54.74586353999995],[-63.849964972999885,-54.753838799999905],[-63.86266028599993,-54.774509373000015],[-63.87035071499985,-54.78167083099996],[-63.884673631999924,-54.78443775799984],[-63.90355383999988,-54.785902601999894],[-63.91592363199993,-54.78980885199998],[-63.966786261999935,-54.815036716999856],[-63.97826087099989,-54.81609465899999],[-63.99083411399989,-54.811211846999925],[-63.98497473899993,-54.8018531229999],[-63.966786261999935,-54.77996184699996],[-63.96288001199985,-54.77402109199984],[-63.96776282499991,-54.759209893999866],[-63.979644334999875,-54.757419528999975],[-63.99445553299994,-54.763848565999986],[-64.00792395699992,-54.77402109199984],[-64.02179928299991,-54.7819963519998],[-64.0369360019999,-54.784844658999845],[-64.07298743399987,-54.783786716999884],[-64.07738196499984,-54.7819963519998],[-64.08287512899997,-54.78150807099982],[-64.09325110599988,-54.78443775799984],[-64.0987849599999,-54.78875090899993],[-64.10191809799997,-54.7945289039999],[-64.10411536399995,-54.80022551899988],[-64.10692298099991,-54.804375908999916],[-64.13101152299993,-54.8117815079999],[-64.22423255099997,-54.82170989399999],[-64.23037675699993,-54.83196379999983],[-64.24453691299996,-54.83709075299994],[-64.26016191299996,-54.83538176899993],[-64.27074133999992,-54.824883721999875],[-64.27025305899991,-54.81406015399997],[-64.26455644399994,-54.80022551899988],[-64.25157630099994,-54.77703215899985],[-64.26976477799994,-54.77752044099993],[-64.27708899599995,-54.77971770599992],[-64.2850642569999,-54.78443775799984],[-64.29930579299989,-54.77662525799984],[-64.31110592399995,-54.77760182099991],[-64.33348548099988,-54.790704033999965],[-64.38805091099997,-54.811211846999925],[-64.39875240799998,-54.817640882999854],[-64.41706295499995,-54.83196379999983],[-64.42906653599997,-54.838555597],[-64.44513912699995,-54.84335702899989],[-64.4625544909999,-54.84547291499981],[-64.49791419199994,-54.845961195999806],[-64.49474036399997,-54.841973565999915],[-64.4927872389999,-54.83863697699998],[-64.48997962099986,-54.835544528999904],[-64.4842830069999,-54.83228932099986],[-64.4842830069999,-54.824883721999875],[-64.49596106699988,-54.82496510199985],[-64.50658118399991,-54.827325127999906],[-64.51634680899988,-54.831801039999874],[-64.52525794199991,-54.838555597],[-64.52131100199992,-54.840101820999855],[-64.51227779899992,-54.845961195999806],[-64.52440344999991,-54.852959893999966],[-64.5724177729999,-54.86646900799985],[-64.5840551419999,-54.874769789999924],[-64.59837805899988,-54.89364999799995],[-64.60716712099995,-54.90056731599995],[-64.62441972599996,-54.90374114399983],[-64.67625891799986,-54.90325286299984],[-64.68976803299992,-54.90056731599995],[-64.69505774599992,-54.8916968729999],[-64.68907630099989,-54.88445403399989],[-64.67813066299993,-54.876641533999894],[-64.66860917899993,-54.86646900799985],[-64.75865637899989,-54.83228932099986],[-64.75373287699992,-54.813409112999835],[-64.73180091099991,-54.80152760199988],[-64.70787512899994,-54.79216887799985],[-64.69660396999986,-54.780857028999954],[-64.68309485599988,-54.770196221999925],[-64.65290279899995,-54.77760182099991],[-64.60374915299994,-54.79810963299996],[-64.58275305899991,-54.79607512799993],[-64.52257239499991,-54.78167083099996],[-64.50475012899994,-54.770928643999945],[-64.56017005099991,-54.7374813779999],[-64.56989498599998,-54.72210051899995],[-64.54234778599994,-54.71559010199995],[-64.5343318349999,-54.72031015399987],[-64.50999915299994,-54.74236419099987],[-64.49791419199994,-54.750420830999985],[-64.46324622299994,-54.757256768999824],[-64.45262610599991,-54.75465260199992],[-64.43382727799988,-54.74553801899993],[-64.42564856699994,-54.74358489399989],[-64.41714433499993,-54.7430966129999],[-64.40705318899995,-54.74382903399984],[-64.39850826699993,-54.74871184699999],[-64.39492753799996,-54.76091887799988],[-64.39439856699988,-54.775974216999884],[-64.39134680899988,-54.7819963519998],[-64.38438880099991,-54.78443775799984],[-64.37262936099992,-54.78264739399985],[-64.37071692599997,-54.77760182099991],[-64.3731990229999,-54.7711727839999],[-64.37441972599989,-54.76474374799998],[-64.37409420499998,-54.74797942499996],[-64.3766169909999,-54.734470309999985],[-64.37547766799986,-54.721368096999925],[-64.36388098899994,-54.70598723799998],[-64.3545629549999,-54.707207940999986],[-64.34056555899994,-54.71599700299996]]],[[[-68.26598059799991,-52.98064544099996],[-68.22923743399991,-53.08733489399997],[-68.22581946499992,-53.10247161299997],[-68.23053951699993,-53.118584893999945],[-68.2413223949999,-53.10833098799992],[-68.25283769399992,-53.08717213299992],[-68.28042558499996,-53.01539478999984],[-68.30484008499985,-53.00666900799995],[-68.3249743119999,-53.00804823099993],[-68.34956888499997,-53.0161620399999],[-68.3808762379999,-53.03100985499998],[-68.40996134899987,-53.048540338999885],[-68.46006284099991,-53.08633171099983],[-68.52071548799995,-53.12063140399998],[-68.55479871599994,-53.16705167699988],[-68.56357504499994,-53.202042080999895],[-68.55075082199994,-53.23853671899985],[-68.50870694399994,-53.26814999800002],[-68.4513507289999,-53.29771739899995],[-68.41064573599994,-53.299929275],[-68.36482463699986,-53.30894963599984],[-68.29607390199993,-53.32016938899993],[-68.18933186699991,-53.313737220999926],[-68.11140185599996,-53.34380180199996],[-68.09190541299992,-53.37561816299998],[-68.07636005299986,-53.395298070999914],[-68.08250891799989,-53.42978280999993],[-68.07872473899994,-53.43792083099994],[-68.06627356699994,-53.45680103999988],[-68.05573482999995,-53.50302499799997],[-68.04767818899992,-53.5232072899999],[-67.99242102799991,-53.588474216999906],[-67.98363196499986,-53.60133228999984],[-67.79378440199986,-53.72717358999988],[-67.72435462099986,-53.75953541499992],[-67.70246118699991,-53.77474616099991],[-67.6986479789999,-53.79011723100002],[-67.70877942999991,-53.80456828899987],[-67.68271012099987,-53.803338614],[-67.66015050899998,-53.80007887299985],[-67.63027397699994,-53.81318114099982],[-67.55824792099989,-53.836188706999934],[-67.54923875199992,-53.8474080389999],[-67.57701383399987,-53.85176011699993],[-67.58775794199997,-53.86931731599982],[-67.58336341099988,-53.89324309699996],[-67.5715225899999,-53.90797291499995],[-67.29775956899988,-54.053806247999916],[-67.14084446299998,-54.123398269999925],[-67.02732347699987,-54.15586797699982],[-66.96136149299991,-54.18168321399998],[-66.94305631699987,-54.199918975999985],[-66.90730195099988,-54.212803226999945],[-66.76658164999995,-54.24984167399986],[-66.70173092399992,-54.28826262799986],[-66.65402314999989,-54.346542287999846],[-66.55421110099985,-54.40442562499998],[-66.52822613999987,-54.42964904199985],[-66.49231372199995,-54.44134393999991],[-66.48221331399992,-54.46580035499991],[-66.44824481599991,-54.47340762099997],[-66.41800704499994,-54.476973548999965],[-66.37687234599994,-54.48547031899991],[-66.28746497299989,-54.51946379999995],[-65.94416256399992,-54.62004973799987],[-65.93040930899991,-54.62265390399987],[-65.90294348899997,-54.624281507999896],[-65.88890540299991,-54.62688567499998],[-65.85480709499993,-54.64470794099987],[-65.84422766799986,-54.64739348799994],[-65.76793372299991,-54.65048593499992],[-65.69810950399997,-54.662367445999884],[-65.45689856699991,-54.640557549999926],[-65.4062393869999,-54.645277601999844],[-65.37970943899995,-54.644789320999855],[-65.30931555899986,-54.62656015399996],[-65.15558834499993,-54.640557549999926],[-65.1419164699999,-54.646905205999865],[-65.15038001199994,-54.661065362999885],[-65.16926021999987,-54.67522551899999],[-65.18663489499994,-54.68157317499993],[-65.19371497299991,-54.690199476999936],[-65.22419186099995,-54.74358489399989],[-65.21983801999997,-54.74895598799985],[-65.21422278599997,-54.759209893999866],[-65.20982825399997,-54.76474374799998],[-65.24376380099991,-54.78337981599987],[-65.25145423099994,-54.790704033999965],[-65.25031490799992,-54.800062757999825],[-65.2447810539999,-54.811293226999915],[-65.24339758999992,-54.82097747199997],[-65.26545162699992,-54.828301690999965],[-65.2973526679999,-54.845391533999916],[-65.3060603509999,-54.85222747199994],[-65.33226477799994,-54.91383228999988],[-65.34439042899993,-54.92156340899999],[-65.35895748599995,-54.92669036299982],[-65.37124589799993,-54.92848072699981],[-65.3929337229999,-54.925469658999894],[-65.39671790299994,-54.91741301899995],[-65.39541581899994,-54.90618254999986],[-65.40168209499987,-54.893731377999934],[-65.42857825399994,-54.88404713299988],[-65.46271725199995,-54.88445403399989],[-65.48542232999988,-54.89462655999992],[-65.47740637899994,-54.91423919099989],[-65.49966386599989,-54.93303801899994],[-65.58063717399995,-54.928317966999835],[-65.61514238199987,-54.93417734199997],[-65.62340247299997,-54.94264088299991],[-65.62816321499986,-54.95273202899997],[-65.63475501199994,-54.96209075299982],[-65.64867102799991,-54.968926690999844],[-65.66909745999989,-54.97177499799988],[-65.68569902299996,-54.96917083099997],[-65.69912675699993,-54.96135833099998],[-65.71019446499989,-54.948418877999885],[-65.71080481699994,-54.94345468499993],[-65.7084041009999,-54.92913176899985],[-65.71019446499989,-54.921075128],[-65.71397864499991,-54.91472747199988],[-65.71886145699997,-54.90927499799994],[-65.73184783299985,-54.90755552299986],[-65.75000619799994,-54.90671405399996],[-65.7698304779999,-54.905878192999985],[-65.81088962599996,-54.915587802999916],[-65.87711504199987,-54.89980144699991],[-65.90169783199994,-54.91129313799994],[-65.96622506399993,-54.90207332699994],[-65.98755793899994,-54.91068279299998],[-65.97250193699993,-54.925798482],[-65.95082888499985,-54.939949353999886],[-65.96876788799992,-54.95709373799982],[-65.99335508699988,-54.97236636199996],[-66.06097914299997,-54.98396898299993],[-66.11706036199983,-54.99553030099995],[-66.19640801199995,-54.99286906999994],[-66.31706819799983,-54.99497793599999],[-66.37163252499991,-55.005477986999864],[-66.36831813799995,-55.02256163299992],[-66.37162219299994,-55.03775518899992],[-66.42503821499994,-55.046319268999916],[-66.45067298099991,-55.05201588299981],[-66.5405077259999,-55.05104602999995],[-66.63006734599992,-55.03109736399998],[-66.65965735599985,-55.02076588299984],[-66.6805720689999,-55.00701262799991],[-66.69762122299997,-54.99187590899992],[-66.71422278599994,-54.98040129999988],[-66.80280514199993,-54.942559502999934],[-66.83092200399992,-54.93645598799986],[-66.94554602799987,-54.92864348799986],[-67.03099524599992,-54.905205987999885],[-67.33275305899987,-54.89226653399988],[-67.54076087099995,-54.87460702899987],[-67.66779537699995,-54.88062916499987],[-67.93195553299992,-54.862481377999956],[-68.07762610599991,-54.84612395599995],[-68.12364661399994,-54.823988539999874],[-68.21898352799988,-54.81861744599991],[-68.2721248039999,-54.799004815999865],[-68.30207271999987,-54.79216887799985],[-68.31517493399991,-54.80136484199991],[-68.31151282499988,-54.82415129999985],[-68.31468665299994,-54.832614841999884],[-68.32823645699992,-54.84238046699991],[-68.52033443899995,-54.85222747199994],[-68.54629472599993,-54.84832122199985],[-68.5646052729999,-54.83879973799986],[-68.59508216099994,-54.811211846999925],[-68.63609778599995,-54.78443775799984],[-68.6418757799999,-54.782972914999874],[-68.64188192681613,-54.78297131576286],[-68.64009704999992,-54.514767871999894],[-68.63831213399993,-54.24655853299991],[-68.63655513599997,-53.97877126099995],[-68.63474646099988,-53.71088063499996],[-68.6329894609999,-53.44288665799985],[-68.6312324629999,-53.17509938599989],[-68.62937211099992,-52.90720876099999],[-68.6276167764898,-52.63957169896503],[-68.62759355399993,-52.63958098799999],[-68.59487870999989,-52.654229424999905],[-68.58580481699991,-52.66277434699993],[-68.56602942599997,-52.6949195289999],[-68.55785071499986,-52.70427825299993],[-68.4927465489999,-52.762872002999956],[-68.42813066299988,-52.83464934699995],[-68.4103083979999,-52.848565362999935],[-68.34186764199994,-52.885918877999984],[-68.31143144399991,-52.912041924999855],[-68.28587805899991,-52.943536065999865],[-68.26598059799991,-52.98064544099996]]],[[[-62.037592607999926,-40.48436498299988],[-62.06671067199988,-40.51185059099987],[-62.08587731799992,-40.543206666],[-62.108708825999905,-40.56406374],[-62.136333480999944,-40.56487014099991],[-62.16133983599988,-40.55710138499991],[-62.15466516399991,-40.52662539899994],[-62.16572950899993,-40.509400967999866],[-62.193546356999974,-40.52260365699989],[-62.22117676599993,-40.522444832999895],[-62.23732590999995,-40.50994910499983],[-62.21949423299989,-40.49194423099985],[-62.199025824999914,-40.46347311099994],[-62.193483069999864,-40.42348984499991],[-62.172835990999936,-40.37504761399995],[-62.155299648999915,-40.374205078999964],[-62.12905022399988,-40.37721777099992],[-62.093997489999964,-40.377419249999974],[-62.06672256699988,-40.39945790399986],[-62.049492174999955,-40.42715596699993],[-62.0285172939999,-40.4548817219999],[-62.037592607999926,-40.48436498299988]]],[[[-62.01477465099987,-40.328361288999886],[-62.021164559999924,-40.34355254899987],[-62.030953344999915,-40.32256674099995],[-62.04193979099989,-40.29681641499985],[-62.065428563999944,-40.27289570699986],[-62.111105042999945,-40.219319423000016],[-62.13317951999994,-40.18109401999994],[-62.11896195299988,-40.130719995999925],[-62.100251879999895,-40.12989329400001],[-62.07038591299996,-40.136760540999944],[-62.04058042899995,-40.14645571000001],[-62.014659846999876,-40.17516323699995],[-62.01876413899993,-40.217968765999984],[-62.02049868799988,-40.273146821999944],[-62.01477465099987,-40.328361288999886]]],[[[-61.9192602199999,-39.152520440999915],[-61.91429602799994,-39.153090101999894],[-61.90941321499988,-39.147230726999865],[-61.90721594999989,-39.1366513],[-61.90339107999995,-39.13209400799987],[-61.89476477799985,-39.139825127999956],[-61.880482550999965,-39.160577080999865],[-61.8617244129999,-39.209893487999864],[-61.85936438699985,-39.22519296699991],[-61.86827551999988,-39.239434503],[-61.88849850199991,-39.24065520599984],[-61.91047115799992,-39.23406340899996],[-61.92454993399988,-39.22519296699991],[-61.940988735999944,-39.21160247199987],[-62.00401770699997,-39.19410572699982],[-62.026844855999876,-39.1828752579999],[-62.044504360999895,-39.16952890399999],[-62.08604895699988,-39.12297942499995],[-62.09703528599994,-39.10361093499995],[-62.098011847999906,-39.087823175],[-62.078480597999935,-39.08554452899993],[-62.04137122299994,-39.09970468499986],[-61.94180253799987,-39.11777109199997],[-61.92145748599997,-39.143487237999835],[-61.9192602199999,-39.152520440999915]]],[[[-62.00267493399988,-39.014743747999916],[-61.972320115999906,-39.03394947699988],[-61.96727454299989,-39.046970309999864],[-61.97545325399988,-39.05771249799996],[-61.99160722599995,-39.064060153999904],[-62.01024329299994,-39.06438567499984],[-62.03001868399985,-39.05754973799999],[-62.08592688699991,-39.023370049999905],[-62.10045325399995,-39.03508879999991],[-62.119984503999945,-39.032891533999916],[-62.130767381999924,-39.02060312299996],[-62.11945553299994,-39.00221119599992],[-62.0401912099999,-39.005466403999954],[-62.00267493399988,-39.014743747999916]]],[[[-65.9326891689999,-21.94455088299985],[-65.80455745399989,-22.08583424899993],[-65.77530859399994,-22.10505788099995],[-65.74461279399989,-22.11404958099989],[-65.60531896999996,-22.099063414999833],[-65.59787756399993,-22.09565277099999],[-65.59343339099993,-22.091105244999866],[-65.58852413,-22.08728118799983],[-65.57989416599995,-22.086454365999895],[-65.51046687899989,-22.095859476999863],[-65.45734350599994,-22.101440530999966],[-65.19047821899997,-22.098473959],[-65.02036759499993,-22.096582946999856],[-64.83247208699996,-22.137510680999963],[-64.7623213299999,-22.174407653999978],[-64.72289221199989,-22.183296],[-64.71369380699988,-22.18174570699989],[-64.69524532099987,-22.17420094799985],[-64.68744217999995,-22.17285735999988],[-64.67904475999998,-22.175441182999958],[-64.65777990799998,-22.178438414999974],[-64.63871130399991,-22.19166758199998],[-64.61628373199991,-22.202209574999856],[-64.59620743899995,-22.20655039399992],[-64.58687984199995,-22.212751566999913],[-64.56021480299998,-22.243137308999877],[-64.55184322099993,-22.2550228879999],[-64.54277400699996,-22.275486755999864],[-64.54225724299991,-22.29150644899991],[-64.54915604699997,-22.30535573299997],[-64.56207515499999,-22.319825134],[-64.57202286799989,-22.34318288199995],[-64.55887121599991,-22.36064951599981],[-64.53789058499993,-22.37429209299991],[-64.52455806599991,-22.385350850999913],[-64.52329199299996,-22.396202900999867],[-64.53106929599997,-22.41552988699999],[-64.53132767799994,-22.42565846699995],[-64.52574662299992,-22.43299652099986],[-64.50781490099988,-22.443951923999933],[-64.50404252099992,-22.44994639099987],[-64.49812556999993,-22.472787373999964],[-64.4837336839999,-22.49118418299987],[-64.42828487199995,-22.542343851999874],[-64.42983516499996,-22.557123310999884],[-64.4372507329999,-22.56735524499996],[-64.44554480099993,-22.57624359099988],[-64.44942053199989,-22.58709564199992],[-64.45045406099987,-22.597120869999856],[-64.45520829299997,-22.616654560999862],[-64.45624182199995,-22.628023375999945],[-64.45370967599987,-22.642906188999973],[-64.44722428399989,-22.64869394899995],[-64.43823258499995,-22.65189788800002],[-64.42828487199995,-22.659029235999967],[-64.40172318499992,-22.71235931399987],[-64.39076778199987,-22.720524190999882],[-64.36898616599993,-22.729722594999885],[-64.35573116099994,-22.751943461],[-64.35232051599989,-22.7791252639999],[-64.3599944659999,-22.80299977599989],[-64.34772131399987,-22.816952412999882],[-64.34389725799991,-22.86366790699988],[-64.32529374199996,-22.87193613699992],[-64.32694738799992,-22.859223734999873],[-64.30348628799992,-22.782329202999875],[-64.29459794199991,-22.762898864999897],[-64.29397782399994,-22.690861918],[-64.25082800299992,-22.54069020499992],[-64.236332764,-22.516712341999906],[-64.18470800799997,-22.471237080999856],[-64.1605492759999,-22.438474222999943],[-64.08623856599989,-22.257916767999887],[-64.07887467499991,-22.250578714999804],[-64.05879838099995,-22.240346780999914],[-64.05102107799993,-22.22918467199997],[-64.01978267499996,-22.15539072699984],[-64.00438309799998,-22.099270120999975],[-63.99564978099992,-22.08294036899994],[-63.990378783999965,-22.07932301799987],[-63.98345414199989,-22.077359313999835],[-63.975806030999905,-22.073845315999876],[-63.96810624199991,-22.066507262999963],[-63.964643920999976,-22.058549093],[-63.961026570999906,-22.039118754000015],[-63.951466430999886,-22.016691181999928],[-63.950949666999946,-22.01080006899994],[-63.94759069899993,-22.007596129999968],[-63.93317297399991,-22.00180837],[-63.90640458199994,-21.997157490999925],[-63.81312862199991,-22.003048604999844],[-63.79302648999994,-22.01152353899994],[-63.75178869699993,-22.045733336999845],[-63.74041988099995,-22.05059092199994],[-63.69391109299991,-22.012040302999964],[-63.67783972199993,-22.00366872099999],[-63.63939245599991,-21.99746755000001],[-63.32491552749991,-21.999121195500006],[-63.010438598999905,-22.000774841],[-63.009921834999965,-22.000671488999984],[-62.86202388599988,-21.993230081999954],[-62.81856400599989,-22.000878193999853],[-62.804352986999895,-22.004082132],[-62.8013557539999,-22.013487242999958],[-62.79499955299988,-22.051211040000013],[-62.79505122899988,-22.061132913999824],[-62.797790079999906,-22.06940114399987],[-62.791072143999905,-22.081596781999963],[-62.79091711499987,-22.11322275799988],[-62.78347570899992,-22.13089609799988],[-62.76936804299989,-22.144745380999932],[-62.72203242999992,-22.16624277699988],[-62.679296020999935,-22.19476816799984],[-62.667462117999925,-22.20655039399992],[-62.66322465099994,-22.215542093999957],[-62.66182938699998,-22.224533792999907],[-62.6589871829999,-22.23166514099995],[-62.65035721899997,-22.23445566799991],[-62.640383667999934,-22.236212666999805],[-62.63180537899993,-22.240760192999915],[-62.62482906099993,-22.247271422999987],[-62.61960974099992,-22.2550228879999],[-62.62643103099995,-22.2550228879999],[-62.62028153499997,-22.26845876099995],[-62.624208943999946,-22.278897398999884],[-62.630823526999876,-22.287682393999958],[-62.63268387899986,-22.29595062300001],[-62.62529414899986,-22.305045674999974],[-62.613150186999945,-22.311453551999932],[-62.59961096199987,-22.31517425499993],[-62.5882938229999,-22.316414488999882],[-62.564677693999975,-22.32199554399999],[-62.54762447099995,-22.335328064],[-62.52338822499987,-22.36488698299995],[-62.51072749899992,-22.37015797899988],[-62.470574910999915,-22.38183685299995],[-62.46194494699997,-22.388761493999937],[-62.45496862799988,-22.403851012999937],[-62.43807043499991,-22.41966400099984],[-62.36825557499992,-22.464415791999897],[-62.3487218839999,-22.47134043399997],[-62.34135696699991,-22.472261047999936],[-62.30572709199993,-22.476714781999846],[-62.29451330599997,-22.47981536899988],[-62.2872269289999,-22.4839494829999],[-62.28453975399986,-22.488703714999982],[-62.283609578999915,-22.493768005999954],[-62.283816284999965,-22.50482676199988],[-62.28138749199991,-22.512061462999934],[-62.27559973199993,-22.51350840199993],[-62.268830118999915,-22.512991638999893],[-62.26335241699991,-22.514438577999968],[-62.24118322799998,-22.538416442999903],[-62.23322505699994,-22.55629648799994],[-62.23885778899995,-22.57303965199982],[-62.252965454999895,-22.591126402999834],[-62.25281042499995,-22.603632100999913],[-62.239736287999904,-22.613760680999874],[-62.214931599999936,-22.624302672999846],[-62.202529256999895,-22.627196552999834],[-62.19658646699988,-22.626473083999926],[-62.192969116999905,-22.628230081999902],[-62.18764644399994,-22.63856536899999],[-62.194622762999934,-22.660579528999804],[-62.19503617399994,-22.67360199],[-62.175915893999864,-22.684867451999892],[-62.18826656099992,-22.708328552999873],[-62.1841841229999,-22.713702900999834],[-62.17079992699988,-22.71732025099999],[-62.164081990999925,-22.725898539000028],[-62.159741169999876,-22.737164000999982],[-62.15348832299995,-22.747809345999897],[-62.12615148999993,-22.77571462],[-62.12253413999995,-22.783156026999887],[-62.119743611999894,-22.79214772499985],[-62.11586787999993,-22.799795836999916],[-62.10878820799991,-22.80299977599989],[-62.10785803199988,-22.806513773999853],[-62.099228068999935,-22.813748473999823],[-62.08935786999992,-22.819949645999895],[-62.08460363799994,-22.820156350999937],[-62.080831258999915,-22.832351988999957],[-62.071632853999915,-22.84392751099999],[-62.05044551599988,-22.86449473099998],[-62.03582108599988,-22.88485524499984],[-62.01716589399993,-22.921752217999952],[-62.00605546099991,-22.93684173599986],[-62.00378169799998,-22.946350198999937],[-62.008949340999976,-22.969707945999883],[-62.00605546099991,-22.974358824999854],[-62.00590043099996,-22.978906351999967],[-61.992051147999916,-22.998129984999906],[-61.956446085999914,-23.03440684],[-61.84498002199992,-23.097245381999926],[-61.83697017499994,-23.104686787999867],[-61.81428421999991,-23.13517588299993],[-61.80265702299993,-23.14499440499982],[-61.78002274699989,-23.156879984999847],[-61.76927404899996,-23.165561624999977],[-61.75847367399993,-23.177447204999837],[-61.75227250199995,-23.18705902099994],[-61.749481974999895,-23.198841246999844],[-61.748810180999925,-23.217341410999964],[-61.744262654999964,-23.234808043999905],[-61.7329971929999,-23.243386331999943],[-61.71852779199988,-23.249277444999933],[-61.70442012499987,-23.25837249799983],[-61.6887621669999,-23.27449554399999],[-61.68031306999998,-23.27924977599997],[-61.66685136,-23.282867125999953],[-61.619619100999905,-23.282867125999953],[-61.605149699999885,-23.289275004],[-61.55463598599993,-23.338367614999935],[-61.545773478999934,-23.342605082999896],[-61.53396541399993,-23.344568785999925],[-61.51605952999998,-23.344982197999855],[-61.52078792399996,-23.353250426999978],[-61.525464639999946,-23.364722595],[-61.526343139999966,-23.374747822999936],[-61.51037512299993,-23.384359638999854],[-61.501073363999886,-23.407820739999835],[-61.491849121999905,-23.413195088999885],[-61.47030004899994,-23.414125264999925],[-61.45192907799995,-23.417432555999923],[-61.43570267799993,-23.423737080999857],[-61.42050980699991,-23.433658955999928],[-61.40872757999992,-23.44358083099985],[-61.39867651399995,-23.45009206199991],[-61.38485306799993,-23.453709411999895],[-61.36177954099994,-23.45474294099988],[-61.29695145699995,-23.48140797999983],[-61.28896744899995,-23.49412038099987],[-61.282947143999934,-23.50993336999987],[-61.27261185699994,-23.523575947999955],[-61.25194128399991,-23.52926035499992],[-61.24292374699988,-23.533084411999866],[-61.22357092299998,-23.55127451599999],[-61.21439835599991,-23.557165628999982],[-61.20768042099988,-23.55757904099991],[-61.18773331699996,-23.556235453999946],[-61.18024023399994,-23.557165628999982],[-61.16781205199995,-23.56657073899994],[-61.15445369499991,-23.580316670999892],[-61.13949336799996,-23.592719013999865],[-61.12223343999997,-23.598196715999947],[-61.10985693399991,-23.606981710000014],[-61.106239583999916,-23.62723887199985],[-61.10975358099998,-23.649976500999827],[-61.11884863299995,-23.666409606999977],[-61.109650227999936,-23.675608011999884],[-61.0925194909999,-23.701859638999906],[-61.06621618699995,-23.71570892299988],[-61.04998978699992,-23.73472585099985],[-61.03805253099998,-23.755396422999862],[-61.03624385599991,-23.768832295999914],[-61.03022355099995,-23.77462005599989],[-61.01580582699995,-23.796685892999974],[-61.00634903999989,-23.805470885999952],[-60.97482641699991,-23.824074401999923],[-60.936663370999945,-23.813842467999844],[-60.899947265999884,-23.830482279999867],[-60.866357584999946,-23.855907083999966],[-60.83762548799992,-23.871823424999988],[-60.816851562999965,-23.87409718799999],[-60.787776137999906,-23.873445156999875],[-60.72928584899997,-23.872133483999974],[-60.71985489899992,-23.875027363999962],[-60.69941687099989,-23.89125376399997],[-60.68967586299993,-23.893630879999833],[-60.64370967699995,-23.891357116999984],[-60.63215999399992,-23.892287292999953],[-60.62115291399991,-23.89580128999991],[-60.6038413089999,-23.904689636000015],[-60.5946170659999,-23.90654998799984],[-60.593583536999915,-23.912234394999967],[-60.57753800499995,-23.944170430999858],[-60.5717502439999,-23.946030781999866],[-60.535964314999966,-23.947581074999974],[-60.517722533999915,-23.9557459519999],[-60.484882161999906,-23.97734669999987],[-60.42305131099991,-23.9885088099999],[-60.38742041099991,-23.98716522199984],[-60.378351196999944,-23.9885088099999],[-60.367576659999905,-23.994709980999886],[-60.34804296899992,-24.01083302799995],[-60.33737178599991,-24.016414082999887],[-60.32801835099988,-24.01796437599999],[-60.296418212999896,-24.016414082999887],[-60.21812841899992,-24.027369486999945],[-60.14324926799987,-24.025199075999964],[-60.119297241999874,-24.020238139],[-60.072375040999894,-24.004838561999847],[-60.0517303069999,-24.00287485799998],[-60.033669392999904,-24.007008971999838],[-59.673639688999884,-24.22539357499987],[-59.63532161499995,-24.26146372499987],[-59.61772579,-24.283477884999854],[-59.610516927999925,-24.2895757039999],[-59.60051753799991,-24.2928829949999],[-59.57540279199989,-24.295880228999906],[-59.55842708299988,-24.305388691999976],[-59.53997859799995,-24.308799335999836],[-59.53202042699991,-24.31407033299986],[-59.52114253799993,-24.325025736999933],[-59.51041967799993,-24.332673847999914],[-59.487656208999944,-24.344766132999975],[-59.465900431999934,-24.353551126999886],[-59.45972509799994,-24.35851206499993],[-59.45628861499992,-24.365436705999826],[-59.453808146999926,-24.37453175899998],[-59.450268310999974,-24.38238657599983],[-59.4260320649999,-24.392515156999877],[-59.387093871999916,-24.42383107499988],[-59.37776627699989,-24.433546244],[-59.35740576199995,-24.468996276999857],[-59.34097265699998,-24.487599792999987],[-59.30808060699993,-24.498761902000027],[-59.29505814599992,-24.512921244999887],[-59.2856013599999,-24.516125182999943],[-59.27046016499991,-24.51819223999992],[-59.263122111999934,-24.523463235999852],[-59.25764440899993,-24.53018117299996],[-59.24808426999993,-24.53720916799989],[-59.20648474199993,-24.550231628999924],[-59.17790767499989,-24.568731790999948],[-59.154394897999914,-24.5762765499999],[-59.11698116099993,-24.598807475],[-59.097189087999936,-24.60542205799983],[-59.078327189999925,-24.60562876299997],[-59.07217769399994,-24.606765644999967],[-59.062462524999916,-24.612346699999904],[-59.04241206899988,-24.63053680399993],[-59.032696899999934,-24.63704803499982],[-59.000915893999974,-24.644179381999948],[-58.80919632999991,-24.776781106999962],[-58.788474080999976,-24.7816386919999],[-58.737469441999906,-24.78277557299991],[-58.72325842399994,-24.78670298299997],[-58.715972045999955,-24.791870625999962],[-58.70811722799993,-24.795074564999936],[-58.70191605599984,-24.799312031999904],[-58.699383911999945,-24.80727020299996],[-58.69421626799996,-24.81202443499994],[-58.47340287299996,-24.851298522999926],[-58.450768595999904,-24.86173716199987],[-58.43852128099987,-24.872795918999866],[-58.414801798999946,-24.903078307999973],[-58.35056799299988,-24.9686040239999],[-58.34436682099991,-24.978319193999937],[-58.34131791199988,-24.986174010999875],[-58.33599523899992,-24.991858418999826],[-58.32328283699988,-24.99526906399994],[-58.3119656989999,-24.993615416999983],[-58.29930497299995,-24.987724303999897],[-58.287264363999974,-24.979766133999927],[-58.25915238499993,-24.952997741999866],[-58.242512572999914,-24.94173227899998],[-58.22406408799992,-24.941215514999953],[-58.13388871299992,-24.997852884999944],[-58.12401851499994,-25.012942402999855],[-58.11151281799993,-25.01232228599997],[-58.04205969299996,-25.044361673999884],[-58.03213781699995,-25.045085143999884],[-58.0098135989999,-25.04250132299988],[-58.000460164999964,-25.044361673999884],[-57.99363887599992,-25.05273325599995],[-57.989866495999955,-25.06410207099985],[-57.98376867699991,-25.074230651999898],[-57.96976436399993,-25.078468119999854],[-57.890492715999905,-25.078674824999908],[-57.870700643999974,-25.08528940799999],[-57.85648962399994,-25.09676157599992],[-57.81240962799995,-25.143683776999964],[-57.79732010999996,-25.153915709999936],[-57.76600419199994,-25.16786834699994],[-57.75406693499991,-25.180890807999972],[-57.721769164999934,-25.246106465999897],[-57.70233882699995,-25.270911152999844],[-57.671975553999886,-25.289830980999866],[-57.67148799699995,-25.290134785999868],[-57.64120560799996,-25.36051808699989],[-57.640792195999914,-25.372610371999954],[-57.57872879999988,-25.416742044999864],[-57.565292927999934,-25.430384622999952],[-57.55810990499995,-25.44351043699984],[-57.556921345999946,-25.459840189999962],[-57.570047159999916,-25.54665659599986],[-57.57531815699994,-25.564433288999894],[-57.58715205899994,-25.575698750999944],[-57.600691283999936,-25.578799336999808],[-57.611646687999915,-25.585930684000015],[-57.61629756699997,-25.609185078999857],[-57.62306717999991,-25.615386250999933],[-57.63877681499988,-25.615799661999944],[-57.668077351999955,-25.61228566499997],[-57.67004105699996,-25.61693654399994],[-57.67526037599989,-25.639260762999907],[-57.67898107999991,-25.647012227],[-57.68833451399985,-25.652696634999955],[-57.69820471199992,-25.65362681099992],[-57.70869502799987,-25.652903340999927],[-57.719908812999925,-25.65383351699988],[-57.74125118099994,-25.661895038999873],[-57.753705199999935,-25.67274708999983],[-57.774582478999974,-25.701685891999887],[-57.7684846599999,-25.709954121999928],[-57.76057816599987,-25.715638528999875],[-57.75112137899992,-25.719565937999846],[-57.740372680999876,-25.72214975999985],[-57.75106970299989,-25.7348621619999],[-57.76791621999988,-25.75067514999989],[-57.787243204999925,-25.764111022999938],[-57.805588338999904,-25.769898782999917],[-57.82062617999989,-25.778270364999983],[-57.81706050699992,-25.79749399799999],[-57.80186763499997,-25.831393737999832],[-57.812823039999984,-25.84524302199989],[-57.81966196599987,-25.849779220999963],[-57.83323522999992,-25.85878224699995],[-57.854215860999915,-25.868910826999908],[-57.875351521999875,-25.876145527999967],[-57.87819372599994,-25.883173522999897],[-57.875351521999875,-25.890201517999813],[-57.85240718599994,-25.897952981999907],[-57.851373656999954,-25.90839162199985],[-57.85710974199991,-25.919863788999947],[-57.863310913999975,-25.927615254999964],[-57.8982441819999,-25.95355682299983],[-57.905840617999864,-25.968646341999914],[-57.859590210999976,-25.980945332999866],[-57.859693562999915,-25.994277851999883],[-57.87271602399994,-26.010297545999933],[-57.9882128499999,-26.088535664999895],[-58.021595825999974,-26.10569223999994],[-58.08650142399994,-26.127189635999898],[-58.096681680999886,-26.136698099999958],[-58.10629349799992,-26.170287780999985],[-58.115233520999936,-26.19095835299983],[-58.12401851499994,-26.2019137569999],[-58.12763586499992,-26.194679055999842],[-58.13321691899991,-26.188994649999966],[-58.1411750899999,-26.18475718199984],[-58.1513036699999,-26.181449890000025],[-58.148926554999896,-26.1993299359999],[-58.13714432799989,-26.209458516999945],[-58.12122798699997,-26.216693216999914],[-58.10660355699992,-26.226098326999875],[-58.10598343899994,-26.23953419999991],[-58.123295043999946,-26.25152313199996],[-58.14598099799991,-26.26010142],[-58.161845662999916,-26.263305358999972],[-58.16995886299992,-26.270333353999888],[-58.17001053899992,-26.286559752999974],[-58.16494624899993,-26.31859914099999],[-58.167633422999906,-26.335032246999873],[-58.17269771399996,-26.349294942999844],[-58.206184041999876,-26.402728372999945],[-58.213057006999925,-26.418644713999967],[-58.209594686999964,-26.431253762999898],[-58.1854101159999,-26.451717630999962],[-58.1886657309999,-26.462052916999877],[-58.20272171999991,-26.471561380999958],[-58.20592565999988,-26.479416197999807],[-58.208716186999936,-26.496882832999926],[-58.21419388899994,-26.51238576299994],[-58.2173461509999,-26.527578632999976],[-58.213367065999904,-26.54452850299998],[-58.20799271699994,-26.550212910999928],[-58.1854101159999,-26.564992369999857],[-58.17931229699994,-26.572640482999915],[-58.170527302999886,-26.586799824999954],[-58.16494624899993,-26.59227752699986],[-58.17150915499994,-26.59858205099988],[-58.188510701999945,-26.60974416099991],[-58.192283081999875,-26.61284474699985],[-58.192076375999925,-26.624626973999938],[-58.18716711499987,-26.633618671999894],[-58.18137935399991,-26.641576842999953],[-58.17864050299996,-26.650671894999917],[-58.18385982299989,-26.656769714999967],[-58.19569372599991,-26.657493183999975],[-58.22716467299995,-26.652015482999985],[-58.232280639999935,-26.648604837999866],[-58.235536254999936,-26.64984507299999],[-58.2406522219999,-26.661213886999974],[-58.24519974799995,-26.680230814999945],[-58.24793859899997,-26.75815887499992],[-58.25176265499993,-26.763223165],[-58.259255736999954,-26.76446339899985],[-58.271399698999886,-26.764256693999982],[-58.28793615799995,-26.768597513999964],[-58.2865408939999,-26.77872609499991],[-58.27847936999989,-26.790198261999848],[-58.27481034399991,-26.79836313899986],[-58.288556274999934,-26.811488952999923],[-58.305506143999935,-26.809111836999957],[-58.323334512999885,-26.80384083999985],[-58.34002600199992,-26.808595071999843],[-58.35237666799989,-26.83050587999989],[-58.34038773699992,-26.844458515999975],[-58.32214595599996,-26.85675750700001],[-58.31578975399992,-26.874120788999846],[-58.3289155679999,-26.88414601599996],[-58.374700886999925,-26.887556660999806],[-58.38467443899995,-26.89706512499997],[-58.39387284299993,-26.909674173999903],[-58.41552526899995,-26.917528991999845],[-58.45981197099987,-26.928174336999916],[-58.47546993099993,-26.937992858999806],[-58.48368648299996,-26.95060190800001],[-58.48161942599999,-26.963831074999916],[-58.46663326099991,-26.97592335999981],[-58.474539754999874,-26.990082702999857],[-58.4923681239999,-27.009719746999977],[-58.50135982299994,-27.023672383999877],[-58.504873819999915,-27.031527200999818],[-58.5067341719999,-27.038451842999805],[-58.50756099499995,-27.055091654999913],[-58.51154007999991,-27.06015594499989],[-58.519808308999956,-27.058502298999926],[-58.52003209399993,-27.05836802799992],[-58.52704300999994,-27.054161478999944],[-58.5280248619999,-27.051681009999964],[-58.5280248619999,-27.047753601],[-58.53050533099989,-27.040518900999857],[-58.536034708999885,-27.036178079999956],[-58.53625859699994,-27.036293713999854],[-58.5454398199999,-27.041035664999896],[-58.55169266799994,-27.048167011999837],[-58.556395223999914,-27.055505065999924],[-58.55970251499992,-27.063359883999865],[-58.5621829829999,-27.072144876999943],[-58.56238968999994,-27.09012827599993],[-58.560529337999924,-27.105527852999913],[-58.565490274999966,-27.115966490999938],[-58.616133178999945,-27.12382130999997],[-58.638819132999906,-27.135913594999877],[-58.65328853399993,-27.15627410899999],[-58.658404499999925,-27.185109557999933],[-58.6523583579999,-27.198028665999857],[-58.63871577999986,-27.21012095099992],[-58.61401444499995,-27.226657409999913],[-58.60156042499997,-27.245674336999897],[-58.59990677999994,-27.266138203999855],[-58.604134633999905,-27.315548077999935],[-58.60419592299991,-27.316264342999958],[-58.60016516099989,-27.312957051999955],[-58.510764932999905,-27.278437194999896],[-58.238223428999866,-27.257043151999962],[-58.128824422999934,-27.269652201],[-58.11399328599989,-27.268928730999903],[-58.053531860999975,-27.25900685599983],[-58.02204621299995,-27.259831356999925],[-58.02195755999988,-27.259833678999936],[-58.00366413399994,-27.263303121999854],[-57.9443564339999,-27.274551133999964],[-57.944029500999925,-27.27461313899995],[-57.91338537599998,-27.286292012999834],[-57.89950352199992,-27.28896065899984],[-57.8550884709999,-27.297499001999853],[-57.85478430199987,-27.297557474999806],[-57.81191293,-27.310582987999823],[-57.811582803999926,-27.310683288999954],[-57.709366821999964,-27.32980356899995],[-57.69818345599995,-27.33339822199983],[-57.69779130099991,-27.333524271999945],[-57.53568233299998,-27.407214863999968],[-57.519937904999956,-27.412098551999843],[-57.513358113999914,-27.414139505999866],[-57.48767492699994,-27.41641326899989],[-57.3866991779999,-27.40349416099997],[-57.36039587499993,-27.403390807999855],[-57.356466096999945,-27.40434299199985],[-57.33522945099992,-27.409488626999817],[-57.32628942999989,-27.414862975999867],[-57.31011574999987,-27.429207701999886],[-57.30298335799995,-27.435533548999885],[-57.2924930419999,-27.440701192999967],[-57.28302631699989,-27.44301488899991],[-57.23758762399987,-27.45412024099987],[-57.23709590699994,-27.45424041799987],[-57.22707067899992,-27.458684590999965],[-57.20040563999987,-27.47894175199997],[-57.191207234999894,-27.484212747999905],[-57.1804525069999,-27.48721406699981],[-57.18009680199995,-27.487313333999936],[-57.1566873779999,-27.487726745999865],[-57.148160766999894,-27.488966979999898],[-57.108990030999934,-27.490620625999853],[-57.07622717399994,-27.484006042999937],[-56.97731848199995,-27.435326842999913],[-56.9409899499999,-27.422097675999836],[-56.90444715299995,-27.41869594899984],[-56.904351358999946,-27.41868703199999],[-56.869263061999895,-27.431502786999886],[-56.8074580489999,-27.4867965699999],[-56.77151064999995,-27.50654844899985],[-56.77115535499993,-27.506743671999928],[-56.73423254399992,-27.50043914799991],[-56.68312455299994,-27.464679056999895],[-56.638015874999915,-27.452911574999874],[-56.61299963399997,-27.44638559899984],[-56.54693334499993,-27.45500294199981],[-56.54644038899988,-27.45506724099998],[-56.50621028699996,-27.50012908899984],[-56.48732255099992,-27.527207538999804],[-56.46148433499991,-27.553872577999837],[-56.431356974999915,-27.57536997699988],[-56.400298629999924,-27.586636240999905],[-56.39973099799993,-27.58684214299998],[-56.36753658099988,-27.58064097099991],[-56.34965653499992,-27.556353047999902],[-56.33598811899992,-27.52565724699987],[-56.3164802659999,-27.50043914799991],[-56.296998250999906,-27.480905456999906],[-56.28531937699995,-27.46095835299998],[-56.28146948299991,-27.43863413499983],[-56.28531937699995,-27.41134897799982],[-56.279841674999936,-27.389644876999824],[-56.25676814799988,-27.378276062],[-56.22801021299997,-27.37124806699991],[-56.20542761299993,-27.362153014999848],[-56.16889237499989,-27.324739277999882],[-56.14997879999996,-27.31182016999996],[-56.12455399599994,-27.298901061999942],[-56.0989483239999,-27.300554706999904],[-56.07424597799991,-27.30481111199991],[-56.07375606299988,-27.30489552799989],[-56.006893544999905,-27.32825090499999],[-56.0068867599999,-27.328253275],[-55.98484676099991,-27.332284036999837],[-55.96609441599989,-27.331723068999963],[-55.960662190999926,-27.33156056699984],[-55.93637426799992,-27.328253275],[-55.913094034999915,-27.327839864],[-55.89283687399998,-27.334867858999928],[-55.877850708999944,-27.35357472699982],[-55.86278702799992,-27.39109181699982],[-55.85415706399991,-27.401220397999865],[-55.84209061699991,-27.4074215699999],[-55.81516719599989,-27.414139505999866],[-55.75473160799987,-27.44369842499998],[-55.71749873899995,-27.41734344499984],[-55.68171280999994,-27.37941294399984],[-55.6536266679999,-27.360085957999885],[-55.628718628999934,-27.356365254999872],[-55.60747961499996,-27.34551320399983],[-55.591330728999964,-27.328356627999867],[-55.58164139799996,-27.30551564599986],[-55.58076289899992,-27.291666360999983],[-55.58324336799998,-27.28350148499987],[-55.5840701909999,-27.276783548999944],[-55.570711832999876,-27.256423034999912],[-55.56867061399993,-27.24598439499988],[-55.57058264199994,-27.23533904999998],[-55.5748717859999,-27.223556823999882],[-55.59897884199995,-27.18262908999995],[-55.598281209999946,-27.167539570999946],[-55.57174536199994,-27.161545104999846],[-55.55533809499991,-27.153793640000018],[-55.54952449599992,-27.13581024199985],[-55.54536454299998,-27.11524302199986],[-55.53384069899997,-27.099430033999866],[-55.51399694899995,-27.097466328999914],[-55.48640173399988,-27.100050150000015],[-55.46185542899991,-27.09798309299987],[-55.45131343599993,-27.082066751999847],[-55.44883296699996,-27.03586802199989],[-55.44276098699993,-27.01550750699995],[-55.43084956899989,-26.996387226999957],[-55.41400305199991,-26.979850768999952],[-55.396329711999975,-26.96930877699999],[-55.37622757999995,-26.963831074999916],[-55.3294087319999,-26.95845672599995],[-55.28060034199987,-26.934272155999977],[-55.256544962999925,-26.934582213999875],[-55.23517675799991,-26.942230325999944],[-55.21665075699988,-26.951222025999982],[-55.20119950399987,-26.95545949299985],[-55.161563679999915,-26.95731984499994],[-55.138360962999904,-26.95370249399987],[-55.122315429999844,-26.94171356199982],[-55.11887894699992,-26.920009460999907],[-55.13267655499996,-26.88063201899982],[-55.125777750999895,-26.86357879599997],[-55.06089798999994,-26.80518442799982],[-55.040744181999884,-26.79846649199989],[-54.99178076199988,-26.794642435999933],[-54.975270141999886,-26.787821145999985],[-54.96100744599991,-26.772318216999963],[-54.951137247999924,-26.75753875699995],[-54.94387670899996,-26.73996877099989],[-54.9307250569999,-26.693976744999986],[-54.91989884499995,-26.674132995999813],[-54.90333654899984,-26.659870299999838],[-54.879358683999925,-26.65439259899985],[-54.83496862799987,-26.65439259899985],[-54.827423868999915,-26.658113301999947],[-54.82282466699987,-26.66328094499994],[-54.81732112699987,-26.665761413999917],[-54.807011678999885,-26.661213886999974],[-54.793059041999896,-26.64498748799988],[-54.7849458419999,-26.622766621999943],[-54.781276814999984,-26.59816863999987],[-54.78034663999992,-26.575224303999914],[-54.783498901999906,-26.55672414199999],[-54.78876989799991,-26.542564798999862],[-54.78982926499992,-26.52850880899993],[-54.78034663999992,-26.510422057999833],[-54.76530879799995,-26.494092305999885],[-54.7371709809999,-26.473215026999824],[-54.70647517899996,-26.441795755999877],[-54.69766434799996,-26.428153177999874],[-54.693065144999906,-26.411926777999867],[-54.6834016519999,-26.350845234999866],[-54.68043025799997,-26.345264179999944],[-54.67906083199992,-26.33988983199997],[-54.66366125499994,-26.308367207999922],[-54.66366125499994,-26.263305358999972],[-54.666141723999914,-26.24366831499985],[-54.6649738179999,-26.23886321399999],[-54.6643330489999,-26.23622690899991],[-54.656194010999904,-26.222997741999833],[-54.644696004999865,-26.20821828199982],[-54.63828812699992,-26.196952819999936],[-54.641853800999904,-26.184033710999927],[-54.65994055199991,-26.164396666999906],[-54.66381628399997,-26.14920379699997],[-54.64314571099995,-26.085228373999897],[-54.64252559499997,-26.06280080199981],[-54.65332596899992,-26.03076141299989],[-54.658261067999945,-26.00037567099984],[-54.66159419799995,-25.989937031999897],[-54.66226599099994,-25.97991180399988],[-54.656194010999904,-25.969163105999954],[-54.64795161999987,-25.965649108999813],[-54.623689533999965,-25.964305520999844],[-54.615240437999965,-25.961721699999842],[-54.60640376799998,-25.946632181999846],[-54.60733394399991,-25.92792531299986],[-54.615240437999965,-25.882863465],[-54.61007279499995,-25.866533711999878],[-54.59922074399992,-25.85072072299988],[-54.58955725099989,-25.83294402999985],[-54.58790360499995,-25.810826517999843],[-54.59451818899992,-25.798734232999948],[-54.61715246599991,-25.77351613399999],[-54.62206172699993,-25.759976908999832],[-54.62492976899991,-25.740236510999864],[-54.64314571099995,-25.687939961999945],[-54.64288732999998,-25.66158498099989],[-54.63371476299997,-25.65207651699998],[-54.598497273999925,-25.65383351699988],[-54.58335607899991,-25.644841816999843],[-54.58624995999989,-25.624688008999865],[-54.602217976999924,-25.59244191499998],[-54.60020261299988,-25.574944883999834],[-54.56005000799988,-25.57022104899987],[-54.54563228399988,-25.57476857499998],[-54.53999955299991,-25.58675750699986],[-54.53870764199988,-25.601330260999912],[-54.53229976399993,-25.61063201899985],[-54.51142248599987,-25.60618784600001],[-54.491061971999926,-25.614042663999953],[-54.47302689599993,-25.625824890999965],[-54.460572875999844,-25.64205128999988],[-54.45700720299996,-25.663135274],[-54.456542114999955,-25.672643736999973],[-54.45354488199993,-25.683185729999863],[-54.44734370899994,-25.689180195999967],[-54.43731848199994,-25.685252786999826],[-54.433132690999884,-25.676571146999862],[-54.43773189399994,-25.6553838089999],[-54.43742183399987,-25.645048521999897],[-54.431324014999916,-25.636883646999877],[-54.41266882299993,-25.62727182999987],[-54.405072387999944,-25.61983042399993],[-54.402798624999946,-25.610321960999954],[-54.403677124999966,-25.600193378999816],[-54.40285030099997,-25.59027150499982],[-54.395408894999946,-25.581073098999823],[-54.38621048999994,-25.57714569099994],[-54.37778723199994,-25.577662455999885],[-54.36011389199987,-25.584277037999883],[-54.34967525199991,-25.582416686999874],[-54.33308711799992,-25.561952819999913],[-54.32171830299992,-25.555131530999954],[-54.2992390549999,-25.55265106199998],[-54.284407918999875,-25.556785175999988],[-54.273659220999946,-25.568774108999875],[-54.2631689049999,-25.59006479899986],[-54.255624144999864,-25.598746438999825],[-54.249629679999934,-25.59326873799992],[-54.24368688999991,-25.577559102999942],[-54.23510860199988,-25.57673227999993],[-54.2289591059999,-25.577042337999913],[-54.209942179999956,-25.58220998099992],[-54.190253458999905,-25.580763040999926],[-54.1946976319999,-25.563296406999882],[-54.21479976499995,-25.531463723999916],[-54.206944946999926,-25.52794972699988],[-54.19671301299985,-25.52960337299991],[-54.177696085999884,-25.53580454499982],[-54.16508703599995,-25.534357604999826],[-54.15428666199992,-25.528259785999865],[-54.12819006399994,-25.50056121899993],[-54.12209224499989,-25.496220397999863],[-54.11640783699994,-25.494566751999898],[-54.11144689999989,-25.495910338999877],[-54.107157755999935,-25.50056121899993],[-54.111860310999894,-25.519371438999855],[-54.120180216999955,-25.535494486999838],[-54.12596797699993,-25.552030943999906],[-54.123125773999874,-25.571771341999977],[-54.11769974799998,-25.58055633499995],[-54.108966430999914,-25.59027150499982],[-54.09888952699987,-25.59719614699989],[-54.08963944599995,-25.597402851999945],[-54.08576371299992,-25.590581562999986],[-54.08648718299992,-25.579832864999958],[-54.088760945999915,-25.56836069699986],[-54.08927770999995,-25.558852233999957],[-54.08271480299987,-25.55006724099998],[-54.0724828699999,-25.555338236],[-54.05537797099995,-25.57073781299999],[-54.04292395,-25.56846404999989],[-54.036774454999914,-25.564536642],[-54.030211548999915,-25.562159525999874],[-54.0165172939999,-25.565053405999862],[-53.99744868999991,-25.57497527999986],[-53.984994669999935,-25.58934132899986],[-53.9782767339999,-25.607014668999867],[-53.97620967599994,-25.627581888999856],[-53.96773474099993,-25.653213398999824],[-53.948097696999895,-25.65062957699982],[-53.909960489999946,-25.62923553399999],[-53.89812658699992,-25.63946746799988],[-53.88753291899994,-25.66127492299999],[-53.876474162999955,-25.69786183600003],[-53.87828283799993,-25.70613006599997],[-53.8825203049999,-25.713468118999884],[-53.8855175379999,-25.72256317199995],[-53.883450480999926,-25.735585632999985],[-53.87704260299998,-25.746127623999953],[-53.85781896999987,-25.763180846999973],[-53.849344035999955,-25.772896016999837],[-53.84035233599994,-25.791396178999857],[-53.837303425999885,-25.80917287199989],[-53.841644246999884,-25.867670592999886],[-53.829603637999924,-25.92131072999986],[-53.83058548999989,-25.93164601599996],[-53.83394445899998,-25.94032765700001],[-53.836063191999955,-25.94973276799996],[-53.83342769399994,-25.962238464999967],[-53.82619299299998,-25.972677102999825],[-53.792861694999914,-26.00037567099984],[-53.7927066659999,-26.00047902399987],[-53.7927066659999,-26.000582376999986],[-53.76500809799995,-26.02807423899995],[-53.75348425399991,-26.05866668699997],[-53.746766316999896,-26.09163625100001],[-53.73338212099995,-26.126362813999876],[-53.68511633299994,-26.18765106199983],[-53.666719522999955,-26.21917368599989],[-53.66155187999993,-26.259791361000012],[-53.67323075299993,-26.29255421899992],[-53.71586380999992,-26.346711119999934],[-53.72444209799993,-26.376063333999824],[-53.71276322499995,-26.469597675999836],[-53.7129182539999,-26.500293477999875],[-53.7129182539999,-26.50050018299991],[-53.72743933099994,-26.511352233999958],[-53.73457067899997,-26.51827687599986],[-53.73746455899996,-26.52530486999987],[-53.735604207999955,-26.53512339299992],[-53.73183182799993,-26.545562031999964],[-53.728214477999956,-26.551866556999883],[-53.72681921399987,-26.548559264999966],[-53.72960974199995,-26.565819192999964],[-53.7423738199999,-26.600545755999818],[-53.74294226099996,-26.61914927099987],[-53.737877970999904,-26.65707977299996],[-53.739531616999926,-26.675579935999803],[-53.746042846999984,-26.693873391999873],[-53.753742634999895,-26.699557799999823],[-53.76361283399987,-26.700798034999934],[-53.7717260339999,-26.703691913999933],[-53.774309854999984,-26.714337259999837],[-53.76965897599993,-26.72663624999987],[-53.7610806889999,-26.73283742299995],[-53.75245072499993,-26.735938007999977],[-53.747851521999905,-26.73914194799987],[-53.74728308099995,-26.749063821999865],[-53.753897664999926,-26.763119811999886],[-53.75291581299987,-26.773248392999932],[-53.74966019699988,-26.774902037999965],[-53.73756791199992,-26.775728860999905],[-53.73400223799993,-26.77738250799986],[-53.7224267169999,-26.81438283299991],[-53.710696166999895,-26.87381072999986],[-53.7125048419999,-26.904506530999893],[-53.724597127999886,-26.940473327999953],[-53.7684704189999,-27.02408579499989],[-53.77317297399989,-27.030183613999853],[-53.780045939999944,-27.033800963999838],[-53.79580725099993,-27.03586802199989],[-53.80092321799992,-27.039071960999863],[-53.80500565599993,-27.052197773999836],[-53.803248656999955,-27.080619811999853],[-53.80490230399991,-27.094365742999884],[-53.80975988799991,-27.100980325999885],[-53.82433264199997,-27.10935190799995],[-53.828725138999886,-27.11441619900002],[-53.82826005099994,-27.121754251999832],[-53.81875158699995,-27.13146942099995],[-53.81921667499997,-27.1397376499999],[-53.830017049999924,-27.15679087299985],[-53.84200598099997,-27.1635088099999],[-53.84877559499992,-27.157514342999846],[-53.857870645999895,-27.140977884999852],[-53.86877437399993,-27.125888366999945],[-53.882210245999914,-27.119893901],[-53.890840209999936,-27.127128600999967],[-53.89941849799996,-27.158444518999985],[-53.90949540199992,-27.168263040999946],[-53.925411743999945,-27.16598927799994],[-53.93853755799992,-27.155447285999884],[-53.950888223999954,-27.1477991739999],[-53.964117390999945,-27.15400034599989],[-53.96623612499994,-27.16722951299988],[-53.96106848199992,-27.180768737999955],[-53.961791951999906,-27.191414082999852],[-53.98148067299987,-27.19565155],[-53.98845699099988,-27.19379119899999],[-53.99269445799993,-27.19007049599989],[-53.99729366099987,-27.187279967999928],[-54.00514847799991,-27.18821014399988],[-54.01088456299996,-27.193997903999858],[-54.01811926299993,-27.212291360999913],[-54.091758178999925,-27.285155131],[-54.12819006399994,-27.288875834],[-54.15805904199996,-27.27947072299996],[-54.155940307999884,-27.25766326899995],[-54.16477697799988,-27.250635273999848],[-54.1770242929999,-27.243400573999878],[-54.1895299889999,-27.260867207999922],[-54.21815873299997,-27.32928680399999],[-54.22255122899989,-27.336831562999947],[-54.22792557899993,-27.34303273499985],[-54.231801309999895,-27.351507669999943],[-54.22957922399988,-27.37197153799991],[-54.23164628199996,-27.380549824999846],[-54.23924271599992,-27.38385711599984],[-54.25071488499992,-27.385200703999985],[-54.26125687699991,-27.388714701999945],[-54.26580440299992,-27.39801645899989],[-54.26859493099997,-27.406388040999957],[-54.274899454999904,-27.4161032099999],[-54.28192744999989,-27.424371438999856],[-54.28688838699995,-27.42840220099994],[-54.306938843999916,-27.42891896599988],[-54.321511596999954,-27.419513854999835],[-54.33401729399994,-27.40607798299996],[-54.34771154799998,-27.394295755999877],[-54.34610957899994,-27.426541849999936],[-54.34771154799998,-27.435843607999868],[-54.354326130999965,-27.446282246999896],[-54.36347285999997,-27.45351694699987],[-54.371586059999885,-27.454447122999905],[-54.37499670399998,-27.445765482999946],[-54.37871740799991,-27.42271779399998],[-54.38889766499997,-27.41114227299994],[-54.40424556499994,-27.4074215699999],[-54.44455318199991,-27.40897186199996],[-54.46083125799993,-27.412589212999933],[-54.46455196099992,-27.42333791099996],[-54.44765376899994,-27.445765482999946],[-54.44837723799992,-27.458891296999838],[-54.46858272399993,-27.470260110999916],[-54.533539998999885,-27.48741668699988],[-54.54325516799991,-27.487003274999946],[-54.55379715999996,-27.48297251399995],[-54.557621215999916,-27.477804869999872],[-54.56723303299992,-27.459614766],[-54.57054032499993,-27.45568735699986],[-54.578550170999904,-27.45424041799987],[-54.58382116699993,-27.452070006999875],[-54.58945389799996,-27.452586770999915],[-54.598497273999925,-27.459098001999976],[-54.60531856299988,-27.467986347999897],[-54.609814412999896,-27.478528340999958],[-54.615240437999965,-27.496718444999985],[-54.62591162199996,-27.515321960999955],[-54.63952836099989,-27.526794127999878],[-54.651233072999865,-27.525863951999924],[-54.656194010999904,-27.507260436999868],[-54.65947546399988,-27.502816263999947],[-54.66645178199988,-27.50384979199994],[-54.673479776999976,-27.50974090599985],[-54.67668371599987,-27.520592956999806],[-54.6764511719999,-27.53423553399999],[-54.6772004799999,-27.541780292999942],[-54.68112788899987,-27.546431171999913],[-54.69032629399996,-27.551288757],[-54.69967972799992,-27.55304575599982],[-54.72195227099988,-27.550978698999856],[-54.731899983999966,-27.551288757],[-54.773938760999975,-27.563794454000018],[-54.78034663999992,-27.56214080799988],[-54.7816902269999,-27.560073750999916],[-54.7880205899999,-27.552839050999946],[-54.79001013199988,-27.551288757],[-54.79373083499987,-27.549221699999876],[-54.79212886599993,-27.544260763],[-54.78853735399994,-27.53857635499996],[-54.786547810999906,-27.53423553399999],[-54.79223221799995,-27.523176777999893],[-54.80504797399993,-27.526380716999867],[-54.81889725799991,-27.536199238999842],[-54.82752722199987,-27.545087584999933],[-54.83367671799993,-27.565344746999855],[-54.83700984699993,-27.590459492999965],[-54.84509720899993,-27.611853535999966],[-54.86540604699993,-27.620845234999916],[-54.889797322999954,-27.62063852999988],[-54.89827225699989,-27.623635761999893],[-54.89646358199988,-27.661152851999887],[-54.90157954899987,-27.704457701999857],[-54.90690222199993,-27.727091979999898],[-54.91320674599993,-27.73691050199987],[-54.93299881999991,-27.743835143999945],[-54.98519201699989,-27.78527964199982],[-55.00911820499991,-27.788380228999856],[-55.02759252899992,-27.783005879999806],[-55.04464575299994,-27.775047708999836],[-55.06430863499989,-27.771016948],[-55.08115515199995,-27.778251647999976],[-55.07125911499989,-27.794374694999973],[-55.040434122999976,-27.819489440999817],[-55.02580969299993,-27.840160013999917],[-55.02963374799995,-27.850702005999977],[-55.04580847199994,-27.850702005999977],[-55.0677192789999,-27.839333190999895],[-55.077899535999876,-27.84336395299989],[-55.09993953399995,-27.8437773639999],[-55.10869868999995,-27.846774596999907],[-55.11138586399997,-27.85297576899998],[-55.119240682999894,-27.88088104299989],[-55.13970454999989,-27.876746927999942],[-55.1614603269999,-27.858246764999933],[-55.177557535999966,-27.853595885999965],[-55.19773718299993,-27.86062388099988],[-55.212309936999894,-27.877160339999875],[-55.22404048699988,-27.893800149999976],[-55.260239827999925,-27.919224954999905],[-55.27008418799991,-27.92242889399988],[-55.2807812099999,-27.920568542999874],[-55.301761840999916,-27.913953958999954],[-55.314112508999955,-27.914987487999937],[-55.32987381999993,-27.92811330199983],[-55.33302608199989,-27.946613463999853],[-55.33790950499991,-27.963149922999847],[-55.35886429899991,-27.97028126999996],[-55.36909623199989,-27.970798033999827],[-55.376434284999895,-27.973175149999946],[-55.380930135999904,-27.978239439999925],[-55.38242875199992,-27.987334492999906],[-55.38142106099994,-28.00872853599992],[-55.38338476599998,-28.014206238],[-55.38984431999992,-28.024231465999932],[-55.43508703699993,-28.070740254999873],[-55.44074560599995,-28.078905130999967],[-55.464852660999924,-28.085106302999876],[-55.475498005999924,-28.08634653699991],[-55.48231929599987,-28.083142597999935],[-55.48653092499989,-28.07714813199999],[-55.49296464099987,-28.07394419399985],[-55.50593542499987,-28.078905130999967],[-55.50991451099995,-28.08396942099995],[-55.520223957999946,-28.10681040399987],[-55.52479732299991,-28.1106344599999],[-55.53787145999987,-28.119316100999953],[-55.543762572999945,-28.1241736849998],[-55.54828426099988,-28.13223520899997],[-55.54973120099987,-28.139883320999942],[-55.55347774299989,-28.145567727999904],[-55.5648723969999,-28.147738138999983],[-55.57709387199992,-28.144327493999867],[-55.57931595899993,-28.1363693239999],[-55.578540812999904,-28.127480976999887],[-55.58164139799996,-28.12107309999993],[-55.60474076399992,-28.116938984999834],[-55.61665218099995,-28.129548034999857],[-55.62304188899992,-28.144350089999875],[-55.62383520599991,-28.146187845999876],[-55.63254268399987,-28.154662780999956],[-55.641999470999934,-28.160347187999918],[-55.684064086999875,-28.196210631999943],[-55.74793615799993,-28.215744322999953],[-55.77253413899993,-28.231970723999876],[-55.76659134999991,-28.257602233999844],[-55.754602416999944,-28.265663756999842],[-55.71470821199992,-28.28189015699985],[-55.70145320699989,-28.284990742999966],[-55.687216348999925,-28.290055032999945],[-55.677216959999924,-28.301837259999953],[-55.663600219999914,-28.326538593999956],[-55.67737198899996,-28.373874206999844],[-55.684064086999875,-28.388033548999886],[-55.69424434399994,-28.40012583399995],[-55.705690673999946,-28.407670593999825],[-55.71496659399989,-28.40446665499985],[-55.71884232599993,-28.384519550999926],[-55.734603637999925,-28.365916035999874],[-55.77119055199995,-28.357544453999978],[-55.8125316979999,-28.353203632999907],[-55.8423489999999,-28.346382344999867],[-55.88735917199992,-28.363332214999872],[-55.90560095199996,-28.378008320999953],[-55.90038163199995,-28.39847218799983],[-55.89666092899995,-28.406843769999895],[-55.89691931199991,-28.45345591299994],[-55.89805619299992,-28.46069061300001],[-55.902035278999904,-28.465134785999837],[-55.910665242999954,-28.470509134999972],[-55.91908850099994,-28.47340301499996],[-55.951592976999876,-28.476710306999877],[-55.97913651599995,-28.489216002999967],[-56.01158931499995,-28.49655405699987],[-56.02143367599992,-28.510403340999925],[-56.0229581299999,-28.528283386999888],[-56.020503499999904,-28.546266783999968],[-56.02189876399987,-28.5857475789999],[-56.04081233699992,-28.60900197399991],[-56.10300492399992,-28.648069356000022],[-56.18470536299992,-28.74418752099986],[-56.21845007399989,-28.764134622999876],[-56.265475626999944,-28.771989440999814],[-56.28614619999988,-28.780154316999912],[-56.294827839999925,-28.795760598999948],[-56.3010031739999,-28.88144012399985],[-56.323069010999916,-28.916476745999958],[-56.39161779799991,-28.952236836999973],[-56.41091894599995,-28.991304219999808],[-56.41192663599995,-29.031818541999982],[-56.415750691999875,-29.051352233999822],[-56.42797216799991,-29.06985239699993],[-56.44427608299992,-29.07812062599989],[-56.51331579599989,-29.09372690900001],[-56.548300740999906,-29.109953307999927],[-56.584215860999876,-29.132277525999893],[-56.61728877799993,-29.16090627],[-56.6436695969999,-29.196149596999856],[-56.650671752999926,-29.20906870499986],[-56.656304483999946,-29.22343475299995],[-56.6572863369999,-29.237904153999978],[-56.650465047999944,-29.251340026999856],[-56.66064530499992,-29.27087371799986],[-56.67702673399987,-29.313351745999807],[-56.68865393099992,-29.329578144999815],[-56.705500447999924,-29.343737487999856],[-56.71813533499994,-29.351488951999954],[-56.75355952999987,-29.367405292999972],[-56.762706257999945,-29.372882995999873],[-56.76994095899991,-29.37908416699986],[-56.77578039499991,-29.386422220999947],[-56.780818847999875,-29.395310567999868],[-56.78255000899994,-29.40543914799983],[-56.782033243999905,-29.41660125699985],[-56.7834285079999,-29.425799661999942],[-56.799835774999934,-29.433964538999874],[-56.80756140099993,-29.44471323699989],[-56.81293575099991,-29.45711557999986],[-56.81495113199995,-29.467037454999936],[-56.81903356999996,-29.47499562599999],[-56.897271687999904,-29.535663756999977],[-56.904351358999946,-29.549616393999983],[-56.91241288299992,-29.55840138799988],[-56.9516352949999,-29.586306660999867],[-56.96579463799992,-29.600879415],[-56.979385538999935,-29.634985859999887],[-57.00884110599991,-29.662581074999974],[-57.01359533799993,-29.673123066999935],[-57.020933390999915,-29.68335500099984],[-57.09415889499991,-29.751981301999876],[-57.1128657639999,-29.766037291999808],[-57.13338130699995,-29.772135110999855],[-57.177461303999934,-29.772858581999856],[-57.219629272999974,-29.77833628299984],[-57.262572387999874,-29.792598978999987],[-57.29151118999994,-29.815129902999928],[-57.30851273699994,-29.84851287799999],[-57.318744669999944,-29.9655083209998],[-57.32515254799998,-29.98101125],[-57.411452188999924,-30.039612324999922],[-57.506175089999935,-30.14430877699988],[-57.54860144099991,-30.170043639999957],[-57.56865189699993,-30.176554871000018],[-57.61169836499993,-30.182962747999877],[-57.63397090699996,-30.18358286499985],[-57.64244584199988,-30.193091328999927],[-57.637949991999875,-30.21510548899991],[-57.62373897299992,-30.258100280999983],[-57.6310770259999,-30.297064309999882],[-57.652729451999875,-30.32910369899989],[-57.849616658999956,-30.48526987799991],[-57.87710852099993,-30.51482879599993],[-57.88976924699997,-30.55079559299992],[-57.885790160999896,-30.58986297600002],[-57.863310913999975,-30.628620299999863],[-57.848531453999975,-30.647947285999905],[-57.82620723499992,-30.689701842999867],[-57.81788732999984,-30.712026061999918],[-57.808659168999974,-30.747331216999864],[-57.80186763499997,-30.77331430999996],[-57.79939710199994,-30.791460706999853],[-57.79602819899991,-30.81620574900002],[-57.7949946699999,-30.857960306999967],[-57.79613155099994,-30.86839894599991],[-57.80186763499997,-30.89248016299986],[-57.80724198499987,-30.90756968199986],[-57.819644327999924,-30.911600442999855],[-57.84279536999991,-30.909223326999903],[-57.88532507299996,-30.918835143999914],[-57.903980265999934,-30.929687194999868],[-57.911731730999946,-30.94736053499987],[-57.905478881999954,-30.95883270199997],[-57.863310913999975,-31.012266133999898],[-57.8552493899999,-31.058981627999895],[-57.873749552999925,-31.093088073999862],[-57.89901932799998,-31.126471048999928],[-57.911731730999946,-31.170602722],[-57.90501379399993,-31.215044453999976],[-57.905117146999935,-31.240986022999934],[-57.91483231599997,-31.252458190999963],[-57.93560624199994,-31.290285338999855],[-57.94299597199995,-31.296796569999916],[-57.95948075399991,-31.307958678999853],[-57.96635371899989,-31.314573261999936],[-57.975552123999904,-31.33514048199993],[-57.980513061999936,-31.380512389999865],[-57.990228230999975,-31.39932261199996],[-58.00593786599995,-31.411001484999925],[-58.043558308999955,-31.430638529999886],[-58.06257523599992,-31.444281107999885],[-58.07523596199988,-31.475183613999974],[-58.05079300899993,-31.500815124999928],[-58.03897801099989,-31.508637468999947],[-58.013327596999936,-31.525619811999885],[-57.98681758599994,-31.55414520299993],[-57.979582885999974,-31.59879363999987],[-57.98862626099994,-31.64282196099984],[-58.04888098199992,-31.797127786999948],[-58.05926794399994,-31.81149383499987],[-58.08345251499991,-31.819762063999818],[-58.1308398029999,-31.827823587999987],[-58.15285396399985,-31.835988464999915],[-58.168615274999944,-31.84601369199984],[-58.1960037849999,-31.872575377999954],[-58.202618367999975,-31.89314259799994],[-58.190319376999945,-31.91329640699992],[-58.15879675299996,-31.943888854999923],[-58.14902990699991,-31.975204772999845],[-58.14530920399991,-32.01788950599985],[-58.148306437999935,-32.06289967799995],[-58.15879675299996,-32.10155364899995],[-58.18086258999997,-32.13245615599996],[-58.186546996999915,-32.152920023999926],[-58.175229858999955,-32.174107360999884],[-58.10691361499997,-32.251828714999895],[-58.09652665299995,-32.28097422299983],[-58.101590942999934,-32.31135996499988],[-58.16494624899993,-32.389494729999896],[-58.18995764199994,-32.43393646199996],[-58.1997244879999,-32.444788512999835],[-58.20011185209165,-32.447129912343925],[-58.200428839999915,-32.44459400799991],[-58.220082160999965,-32.489515882999825],[-58.222808397999934,-32.53427499799986],[-58.21157792899993,-32.65732187299997],[-58.19298255099994,-32.72584400799991],[-58.179351365999906,-32.82830169099991],[-58.16966712099994,-32.8482398419999],[-58.143177863999966,-32.885023695999976],[-58.13776607999992,-32.90032317499994],[-58.14118404899991,-32.919122002999984],[-58.15611731699997,-32.95777760199985],[-58.15949459499989,-32.97975025799987],[-58.14907792899991,-33.02499765399989],[-58.14679928299992,-33.049981378],[-58.15575110599986,-33.06113046699993],[-58.19298255099994,-33.08831145599984],[-58.20445716099987,-33.09189218499991],[-58.2286677729999,-33.095147393999945],[-58.241444464999915,-33.095147393999945],[-58.38316809799991,-33.075453382999825],[-58.418934699999845,-33.08831145599984],[-58.4234919909999,-33.093357028999876],[-58.43016516799985,-33.102634373],[-58.43199622299991,-33.11158619599995],[-58.41283118399985,-33.118747653999975],[-58.412709113999874,-33.12639739399992],[-58.41649329299992,-33.13648853999989],[-58.418934699999845,-33.14666106599992],[-58.42149817599995,-33.168389580999985],[-58.43195553299992,-33.21306731599995],[-58.43321692599994,-33.23235442499998],[-58.41706295499998,-33.27548593499992],[-58.41234290299988,-33.29827239399985],[-58.42235266799985,-33.30803801899998],[-58.44005286399996,-33.316094659],[-58.459950324999845,-33.33473072699982],[-58.48786373599989,-33.36956145599986],[-58.506499803999894,-33.40585702899995],[-58.52171790299988,-33.44931405999989],[-58.53184973899991,-33.493910414999874],[-58.53563391799994,-33.53394947699991],[-58.52879798099991,-33.57903411299988],[-58.53099524599991,-33.58896249799996],[-58.54084225199995,-33.60898202900002],[-58.54938717399994,-33.68303801899999],[-58.549224412999905,-33.70533619599985],[-58.54067949099988,-33.745212497999916],[-58.52432206899996,-33.777764580999886],[-58.46939042899987,-33.84246184699991],[-58.46104895699992,-33.85947030999988],[-58.45555579299988,-33.87900155999995],[-58.45205644399987,-33.92457447699991],[-58.43936113199993,-33.979668877999934],[-58.441721157999986,-33.98992278399988],[-58.44664466099994,-34.00139739399983],[-58.44697018099986,-34.006931247999944],[-58.447173631999895,-34.0105119769999],[-58.43626868399994,-34.01441822699982],[-58.42699133999988,-34.0162085919999],[-58.402699347999906,-34.02597421699992],[-58.39537512899991,-34.03118254999984],[-58.38780676999994,-34.046482028999975],[-58.384429490999935,-34.0663387999999],[-58.3853653639999,-34.11003997199997],[-58.39134680899994,-34.14202239399996],[-58.392241990999935,-34.15406666499989],[-58.390126105999904,-34.15960051899999],[-58.38072669199988,-34.17717864399985],[-58.378570115999906,-34.18824635199998],[-58.41209876199994,-34.21868254999993],[-58.41633053299994,-34.22600676899985],[-58.42149817599995,-34.239922783999916],[-58.425770636999886,-34.24667734199987],[-58.44107011599993,-34.26116301899991],[-58.46019446499991,-34.27288176899998],[-58.48013261599988,-34.27743906000001],[-58.49836178299995,-34.27076588299998],[-58.50641842399992,-34.26897551899999],[-58.54308020699991,-34.26767343499991],[-58.54930579299988,-34.27263762799994],[-58.552845831999946,-34.27947356599988],[-58.55833899599988,-34.28541432099989],[-58.57042395699988,-34.288181247999944],[-58.512277798999946,-34.315687757999896],[-58.49461829299994,-34.328545830999914],[-58.46661549299994,-34.347987347000014],[-58.454607113999906,-34.36618276499988],[-58.473208049999926,-34.39815096399985],[-58.485505498999906,-34.40707234000003],[-58.49664106899988,-34.418004004],[-58.51146527099985,-34.435944763],[-58.510397017999935,-34.449005945999865],[-58.50322450099986,-34.46312692699985],[-58.477284308999856,-34.48333098799998],[-58.47370358,-34.49179452899993],[-58.47496497299988,-34.51197682099996],[-58.47419186099995,-34.52157968500002],[-58.45157491599992,-34.53381807499993],[-58.43335263499989,-34.54199441299993],[-58.41275119099989,-34.55519842599996],[-58.3787718829999,-34.57250942099992],[-58.363352016999926,-34.58611419099991],[-58.344987847999874,-34.60785124399996],[-58.331836107999976,-34.632009689999904],[-58.315030933999935,-34.65719461799988],[-58.236149621999886,-34.700802115999934],[-58.190120387999904,-34.73516444099994],[-58.15487164299992,-34.75040033899988],[-58.118290991999885,-34.753599309999885],[-58.093924472999845,-34.757734765],[-58.06354218999991,-34.772927647999865],[-58.03064008499984,-34.77909784499987],[-58.00018978599988,-34.78725815899986],[-57.96503143699991,-34.82453028699992],[-57.938221056999936,-34.83367068199992],[-57.88201939999993,-34.82886774999998],[-57.871032093999865,-34.82991457699991],[-57.85156801399995,-34.84805474999982],[-57.8064363679999,-34.87232481799994],[-57.75884297799985,-34.909662179999984],[-57.686818127999885,-34.933868294999954],[-57.60357479599986,-34.98770207099989],[-57.522032339999974,-35.013153725999985],[-57.48748290099985,-35.044386512999864],[-57.446698158999936,-35.0705341069999],[-57.34957985599997,-35.14987995899994],[-57.313930972999906,-35.18909356099998],[-57.270269889999945,-35.229714498999925],[-57.248768683999856,-35.24879322699993],[-57.20157722399992,-35.31015434799998],[-57.16223424599994,-35.37174067099991],[-57.13358301199986,-35.4166569519999],[-57.12814350499994,-35.44132075499991],[-57.14490852699993,-35.48420028899986],[-57.18044544299994,-35.52205817999998],[-57.22378495999993,-35.56926848799998],[-57.32359778599994,-35.69638437299987],[-57.35262539099997,-35.72752363299992],[-57.365630662999905,-35.76376718499988],[-57.371378502999875,-35.78998722099995],[-57.38122800799991,-35.83141566],[-57.39329993399991,-35.862969658999916],[-57.383480264999925,-35.89955562599995],[-57.37356475699994,-35.93947829599986],[-57.37246660099993,-35.968357029],[-57.370594855999855,-35.97698333099993],[-57.36644446499991,-35.987888278999904],[-57.348011847999885,-36.00107187299986],[-57.34386145699994,-36.01116301899991],[-57.34203040299988,-36.01392994599996],[-57.31598873599989,-36.06951262799991],[-57.31265214799987,-36.09075286299999],[-57.30882727799985,-36.09986744599989],[-57.29112708199994,-36.10719166499989],[-57.2718806629999,-36.123630466999984],[-57.268177863999966,-36.12786223799999],[-57.2623184889999,-36.15016041499986],[-57.24803626199991,-36.17034270599988],[-57.10826575399997,-36.28232187299987],[-57.00552324099993,-36.33367278399988],[-56.96031653599991,-36.34124114399984],[-56.93773352799994,-36.35076262799993],[-56.92870032499994,-36.36370208099984],[-56.94603430899991,-36.378024997999916],[-56.93919837099989,-36.384860934999935],[-56.920765753999945,-36.37004973799995],[-56.90021725199992,-36.358982029],[-56.85667883999989,-36.34392669099991],[-56.83397376199986,-36.34075286299985],[-56.76789303299994,-36.34392669099991],[-56.77867591099994,-36.321465753],[-56.77603105399996,-36.306410414999974],[-56.76244055899991,-36.303317967],[-56.74058997299994,-36.316582940999936],[-56.73485266799988,-36.328871351999894],[-56.72240149599986,-36.36931731599992],[-56.71637936099995,-36.378024997999916],[-56.69762122299991,-36.396172783999916],[-56.69957434799994,-36.52141692499984],[-56.67577063699986,-36.57634856599992],[-56.67227128799988,-36.600518487999835],[-56.66832434799988,-36.73642343499988],[-56.66486568899998,-36.851006768999866],[-56.668853318999965,-36.89421965899994],[-56.68643144399991,-36.927666925],[-56.79027258999986,-37.038344007999896],[-56.888661261999886,-37.16204192499988],[-57.019276495999854,-37.347588799999926],[-57.05589758999989,-37.412692966999956],[-57.16576087099986,-37.53557708099984],[-57.200835740999935,-37.56731536299989],[-57.30915279899997,-37.645440362999906],[-57.34874426999991,-37.69850025799984],[-57.36066646999996,-37.70761484199999],[-57.37694251199988,-37.7146135399999],[-57.457875128999945,-37.79501718499989],[-57.487416144999905,-37.83220794099998],[-57.51187089799987,-37.87232838299998],[-57.528879360999916,-37.91366952899993],[-57.53819739499997,-37.95533619599989],[-57.54185950399991,-37.99895598799998],[-57.54010982999992,-38.00514088299987],[-57.53148352799993,-38.01669687299997],[-57.528879360999916,-38.0235328099999],[-57.52940833199992,-38.02971770599997],[-57.534413214999866,-38.03932057099986],[-57.535715298999946,-38.04322682099994],[-57.53278561099992,-38.07252369599988],[-57.535715298999946,-38.08424244599986],[-57.55842037699989,-38.12086353999989],[-57.59357662699994,-38.1527645809999],[-57.68639075399997,-38.20476653399987],[-57.79027258999994,-38.252211195999884],[-57.861887173999946,-38.29412200299997],[-58.018706834999875,-38.36793385199991],[-58.052723761999914,-38.37281666499996],[-58.0660701159999,-38.37818775799984],[-58.117909308999906,-38.41326262799991],[-58.155669725999864,-38.430108330999914],[-58.27550208199994,-38.46851978999992],[-58.312611456999946,-38.48642343499998],[-58.3309626939999,-38.49277109199991],[-58.419504360999916,-38.504164320999955],[-58.493641730999855,-38.524346612999906],[-58.567005988999874,-38.558851820999834],[-58.729237433999934,-38.58847421699987],[-58.94029700399989,-38.64609140399993],[-58.99714107999994,-38.676039320999905],[-59.0283097,-38.68181731599995],[-59.06322180899985,-38.6937802059999],[-59.347808397499925,-38.738783461499914],[-59.632394985999916,-38.78378671699987],[-59.79686438699985,-38.838474216999906],[-59.81920325399988,-38.84075286299998],[-59.88931230399987,-38.838474216999906],[-60.344878709999925,-38.90667083099993],[-60.5035701159999,-38.927666924999954],[-60.659087693999936,-38.94304778399999],[-60.86571204299991,-38.975681247999944],[-60.97826087099986,-38.974379164999945],[-61.003041144999905,-38.969008070999905],[-61.01646887899992,-38.968194268999895],[-61.02855383999992,-38.96998463299988],[-61.03718014199992,-38.97405364399992],[-61.05064856699991,-38.98251718499988],[-61.14338131399995,-39.00107187299989],[-61.33775794199997,-38.98137786299984],[-61.42804928299994,-38.98251718499988],[-61.49307206899991,-38.99920012799991],[-61.5030818349999,-39.00603606599992],[-61.518055792999945,-39.011488539999874],[-61.67516028599988,-38.993910414999846],[-61.68858801999997,-38.98455169099991],[-61.70653235599991,-38.98040129999987],[-61.71670488199987,-38.97096119599994],[-61.722808397999955,-38.968194268999895],[-61.73110917899994,-38.96835702899986],[-61.73802649599991,-38.970879815999965],[-61.74400794199993,-38.97389088299996],[-61.74950110599988,-38.975681247999944],[-61.79051673099988,-38.98251718499988],[-61.83901933499995,-38.98088958099986],[-62.0267227859999,-38.93759530999988],[-62.06403561099998,-38.92294687299996],[-62.09316972599993,-38.90195077899991],[-62.11327063699988,-38.8726539039999],[-62.130034959999904,-38.83660247199985],[-62.142933722999906,-38.81829192499988],[-62.157338019999884,-38.81047942499998],[-62.318714972999935,-38.80055103999989],[-62.335438605999876,-38.79338958099994],[-62.35846920499994,-38.787286065999865],[-62.379750128999916,-38.79843515399996],[-62.39020748599989,-38.81471119599982],[-62.38019771999993,-38.824151299999926],[-62.386341925999886,-38.84514739399995],[-62.36807206899993,-38.88274504999987],[-62.37393144399996,-38.899997653999876],[-62.360178188999946,-38.89039478999989],[-62.34650631399992,-38.88990650799991],[-62.33600826699995,-38.896905205999964],[-62.33177649599992,-38.910088799999926],[-62.33446204299992,-38.94736093499999],[-62.33177649599992,-38.954522393999945],[-62.32046464799993,-38.96070728999983],[-62.30650794199996,-38.96013762799994],[-62.27403723899988,-38.954522393999945],[-62.27440344999991,-38.959649346999946],[-62.28107662699994,-38.97234465899993],[-62.28661048099988,-38.98805103999989],[-62.283924933999906,-39.00221119599992],[-62.3085017569999,-39.012627862999906],[-62.31851152299989,-39.02206796700001],[-62.33177649599992,-39.05754973799999],[-62.342355923999975,-39.07854583099986],[-62.34850012899995,-39.08757903399996],[-62.35594641799992,-39.09539153399986],[-62.3578181629999,-39.10222747199997],[-62.35204016799994,-39.109795831],[-62.34398352799991,-39.117933851999936],[-62.3391820949999,-39.12639739399987],[-62.34019934799997,-39.144626559999864],[-62.34508216099994,-39.16008879999988],[-62.34703528599991,-39.17571379999987],[-62.3391820949999,-39.19410572699982],[-62.32168535099996,-39.2105445289999],[-62.276966925999915,-39.23756275799994],[-62.25723222599987,-39.25554778399997],[-62.27257239499991,-39.25530364399985],[-62.28490149599989,-39.25253671699997],[-62.31126868399988,-39.24187590899986],[-62.32559160099995,-39.25465260199998],[-62.316395636999886,-39.26523202899995],[-62.29434160099989,-39.272719007999825],[-62.27033443899995,-39.276625257999825],[-62.19237219999988,-39.27874114399992],[-62.16787675699996,-39.283379815999936],[-62.089019334999904,-39.3142229149999],[-62.04662024599991,-39.338636976999865],[-62.023915167999895,-39.36484140399999],[-62.023101365999956,-39.37704843499987],[-62.02717037699991,-39.388929945999834],[-62.034657355999876,-39.39934661299999],[-62.04442298099991,-39.40691497199987],[-62.056996222999906,-39.41155364399998],[-62.06505286399994,-39.40943775799988],[-62.071359829999885,-39.40447356599984],[-62.078480597999935,-39.40007903399993],[-62.09854081899991,-39.391859632999854],[-62.15599524599992,-39.35214609200001],[-62.17467200399989,-39.33123137799997],[-62.17837480399993,-39.325860283999916],[-62.18382727799988,-39.315118097],[-62.18834387899992,-39.310723565999915],[-62.19615637899991,-39.307386976999894],[-62.20059160099989,-39.308363539999874],[-62.20409094999987,-39.31047942499988],[-62.20885169199997,-39.310723565999915],[-62.22785396999987,-39.30722421699993],[-62.283924933999906,-39.310723565999915],[-62.28172766799992,-39.319919528999975],[-62.278187628999916,-39.32968515399993],[-62.27253170499992,-39.338636976999865],[-62.26414954299989,-39.345472914999974],[-62.25348873599995,-39.346612237999906],[-62.23985755099988,-39.34514739399995],[-62.22813880099991,-39.34636809699997],[-62.22313391799986,-39.35556406000002],[-62.214833136999886,-39.376153252999885],[-62.195423956999974,-39.39714934699991],[-62.15420488199993,-39.427422783999916],[-62.135568813999924,-39.43572356599989],[-62.08641516799992,-39.44589609199993],[-62.06143144399987,-39.44736093499999],[-62.055775519999905,-39.45191822699985],[-62.05260169199993,-39.46168385199998],[-62.05060787699989,-39.47470468499988],[-62.055083787999955,-39.48552825299987],[-62.06688391799992,-39.494398695999905],[-62.07233639199995,-39.50318775799988],[-62.07506262899995,-39.57350025799991],[-62.082183397999906,-39.584567966999856],[-62.086659308999856,-39.59596119599981],[-62.11168372299994,-39.73251718499991],[-62.11436926999993,-39.82146575299991],[-62.11945553299994,-39.838311455999914],[-62.12535559799988,-39.83766041499996],[-62.16047115799995,-39.85442473799998],[-62.16417395699992,-39.85881926899988],[-62.23957271999986,-39.848728122999916],[-62.26162675699996,-39.83855559699995],[-62.305043097999906,-39.81113046699991],[-62.30874589799995,-39.82187265400002],[-62.30455481699992,-39.832207940999936],[-62.283924933999906,-39.852634373],[-62.308664516999954,-39.861504815999865],[-62.31456458199991,-39.86939869599992],[-62.31212317599997,-39.88241952899992],[-62.31126868399988,-39.90732187299986],[-62.3154190749999,-39.92449309699988],[-62.32884680899991,-39.960219007999825],[-62.335601365999935,-39.99431731599992],[-62.355051235999916,-40.03590260199997],[-62.36310787699997,-40.04436614399994],[-62.36632239499994,-40.05413176899988],[-62.3391820949999,-40.11272551899991],[-62.34040279899991,-40.133721612999864],[-62.35582434799994,-40.17538827899992],[-62.35968990799994,-40.191827080999914],[-62.36872311099999,-40.21119557099992],[-62.39012610599991,-40.22177499799989],[-62.41502844999985,-40.22844817499992],[-62.43480383999989,-40.23626067499984],[-62.45177161399994,-40.24960702900002],[-62.469797329999984,-40.267347914999846],[-62.48420162699995,-40.28753020599987],[-62.490061001999884,-40.30787525799995],[-62.48546301999994,-40.32219817499994],[-62.45592200399989,-40.36589934699984],[-62.440663214999915,-40.424981377999934],[-62.431630011999914,-40.4342587219999],[-62.43146725199995,-40.438571873],[-62.41490637899989,-40.46209075299987],[-62.40526282499991,-40.46795012799991],[-62.37393144399996,-40.475762627999984],[-62.34024003799996,-40.49334075299984],[-62.328684048999946,-40.496270440999865],[-62.325103318999965,-40.50164153399991],[-62.32603919199993,-40.52507903399997],[-62.32213294199994,-40.530450127999856],[-62.308094855999904,-40.53915781000002],[-62.296864386999914,-40.555271091999984],[-62.28368079299986,-40.56438567499989],[-62.26414954299989,-40.551527601999965],[-62.25047766799995,-40.5967749979999],[-62.2506404289999,-40.622247002999984],[-62.267201300999965,-40.63347747199999],[-62.31501217399991,-40.62664153399989],[-62.32013912699992,-40.62273528399997],[-62.3353572259999,-40.604668877999956],[-62.34601803299993,-40.599297783999916],[-62.346913214999915,-40.60857512799987],[-62.34536699099987,-40.61646900799994],[-62.34162350199994,-40.62330494599986],[-62.335438605999876,-40.6300595029999],[-62.32884680899991,-40.64055754999987],[-62.33055579299992,-40.648695570999976],[-62.33568274599991,-40.653497002999956],[-62.3391820949999,-40.653985283999944],[-62.329741990999906,-40.669122002999934],[-62.32237708199989,-40.67294687299987],[-62.24425208199997,-40.63697682099997],[-62.2135310539999,-40.62802499799987],[-62.1815486319999,-40.62664153399989],[-62.19334876199985,-40.63787200299997],[-62.229237433999856,-40.658623955999886],[-62.23680579299992,-40.67131926899985],[-62.23888098899991,-40.686293226999965],[-62.247792120999854,-40.71648528399999],[-62.249826626999884,-40.73308684699994],[-62.25426184799997,-40.746351820999976],[-62.283924933999906,-40.791680596999896],[-62.31126868399988,-40.84579843499996],[-62.337798631999924,-40.872735283999845],[-62.48643958199991,-40.932549737999885],[-62.60676021999989,-40.98984140399993],[-62.67446855399993,-41.011000257999925],[-62.69176184799991,-41.02044036299995],[-62.710072394999884,-41.03378671699987],[-62.7294001939999,-41.04111093499996],[-62.75133216099993,-41.04420338299994],[-62.77741451699989,-41.04501718499995],[-62.80162512899989,-41.041680596999925],[-62.810943162999926,-41.04404062299997],[-62.82274329299991,-41.05486419099998],[-62.84886633999986,-41.07187265399995],[-62.86384029899988,-41.085137627999885],[-62.935129360999895,-41.09970468499991],[-63.05357825399988,-41.14714934699984],[-63.09951738199996,-41.15488046699993],[-63.31700598899991,-41.14804452899992],[-63.36046301999996,-41.15837981599984],[-63.38414466099988,-41.161065362999906],[-63.479481574999916,-41.15422942499998],[-63.621815558999884,-41.160902601999844],[-63.77940833199991,-41.15878671700001],[-63.82420813699994,-41.150811455999886],[-63.86668860599991,-41.133721612999935],[-63.966867641999926,-41.06023528399993],[-64.01134192599994,-41.04501718499995],[-64.05288652299993,-41.045993748000015],[-64.06285559799991,-41.04127369599992],[-64.06541907499991,-41.03142669099991],[-64.06135006399995,-41.021416924999926],[-64.05231686099995,-41.00709400799993],[-64.06212317599987,-40.99944426899991],[-64.08531653599991,-41.004082940999936],[-64.11253821499992,-41.012790623],[-64.13426673099988,-41.01702239399985],[-64.17430579299992,-41.008965753],[-64.41710364499994,-40.91073984199993],[-64.5520727199999,-40.88290780999996],[-64.64476477799985,-40.84644947699991],[-64.73493404899997,-40.830336195999934],[-64.78331458199997,-40.827406507999925],[-64.85326087099989,-40.83294036299984],[-64.88540605399996,-40.83098723799998],[-64.91120357999998,-40.82382577899986],[-64.91197669199991,-40.808770440999936],[-64.89362545499995,-40.79843515400002],[-64.86799068899998,-40.792168877999885],[-64.84992428299994,-40.79509856599999],[-64.85423743399988,-40.812188408999944],[-64.84727942599997,-40.81161874799997],[-64.83946692599989,-40.80925872199992],[-64.83381100199989,-40.80673593499991],[-64.83311926999994,-40.80535247199984],[-64.77301998599995,-40.806084893999866],[-64.7551977199999,-40.804294528999876],[-64.74498450399994,-40.797295830999985],[-64.75357011599996,-40.7765438779999],[-64.78311113199993,-40.76799895599996],[-64.80028235599985,-40.75888437299989],[-64.7716365229999,-40.736504815999865],[-64.7962133449999,-40.72332122199991],[-64.89045162699989,-40.70598723799983],[-64.94652258999992,-40.711358330999886],[-64.98184160099993,-40.72332122199991],[-64.99136308499992,-40.72966887799994],[-64.97329667899993,-40.731540623],[-64.94066321499989,-40.72486744599986],[-64.92247473899987,-40.72966887799994],[-64.93639075399994,-40.744724216999956],[-64.93236243399988,-40.753513279],[-64.91999264199995,-40.760430596999925],[-64.90884355399993,-40.770114841999884],[-65.01085364499991,-40.76726653399993],[-65.02863521999988,-40.773695570999855],[-65.04206295499989,-40.78484465899996],[-65.12193762899992,-40.83367278399996],[-65.13170325399994,-40.842380466999956],[-65.13532467399992,-40.85165781],[-65.13438880099994,-40.87371184699991],[-65.13817298099985,-40.882989190999865],[-65.15245520699995,-40.901625257999854],[-65.16368567599994,-40.9230282529999],[-65.17162024599992,-40.94589609199998],[-65.17568925699987,-40.969170830999914],[-65.1751195949999,-41.010186455999914],[-65.14679928299995,-41.180596612999885],[-65.1068416009999,-41.29876067499994],[-65.10488847599996,-41.329766533999866],[-65.07970130099987,-41.38632577899996],[-65.07335364499997,-41.417657158999916],[-65.06118730399987,-41.4484188779999],[-65.0062556629999,-41.49342213299989],[-64.99136308499992,-41.524102471999896],[-64.99327551999988,-41.55299244599982],[-65.0018611319999,-41.586521091999856],[-65.01455644399996,-41.61712004999987],[-65.02863521999988,-41.63738372199988],[-65.03722083199992,-41.66513437299986],[-65.02676347599993,-41.700941664999874],[-64.99819902299996,-41.757500908999866],[-64.99990800699996,-41.79338958099995],[-65.01768958199993,-41.83635833099983],[-65.05968176999991,-41.908379815999865],[-65.07453365799998,-41.9509416649999],[-65.06956946499994,-41.98577239399994],[-65.0545955069999,-42.010674737999885],[-65.00499426999988,-42.093194268999895],[-64.97240149599992,-42.1268856749999],[-64.93545488199987,-42.15390390399985],[-64.85728919199995,-42.19361744599985],[-64.84398352799994,-42.19573333099986],[-64.82233639199995,-42.194594007999825],[-64.81114661399994,-42.19540780999993],[-64.80304928299992,-42.199151299999954],[-64.78661048099991,-42.20964934699983],[-64.76260331899988,-42.219414971999875],[-64.73729407499994,-42.22665780999991],[-64.71703040299991,-42.22991301899994],[-64.66673743399986,-42.23015715899989],[-64.64415442599989,-42.23463307099986],[-64.62425696499989,-42.247491143999966],[-64.60289466099994,-42.2582333309999],[-64.57945716099997,-42.25595468499992],[-64.55528723899994,-42.24846770599994],[-64.53148352799988,-42.244235934999935],[-64.50397701699991,-42.245538018999916],[-64.4906306629999,-42.248630467],[-64.48086503799988,-42.25465260199984],[-64.46666419199997,-42.268487237999835],[-64.46422278599992,-42.27532317499984],[-64.4911189439999,-42.28427499799987],[-64.51089433499993,-42.298760674999826],[-64.5874731109999,-42.38128020599983],[-64.59414628799996,-42.391534112999935],[-64.60228430899988,-42.42205169099988],[-64.59552975199995,-42.430596612999906],[-64.56627356699991,-42.43596770599987],[-64.48574785099996,-42.43124765399986],[-64.44505774599986,-42.44670989399988],[-64.41063391799992,-42.44622161299989],[-64.37608801999991,-42.44158294099995],[-64.35391191299996,-42.43596770599987],[-64.33141028599997,-42.427015882999925],[-64.31554114499994,-42.423028252999856],[-64.12755286399994,-42.43271249799991],[-64.10358639199998,-42.427829684999935],[-64.09325110599988,-42.41171640399996],[-64.08828691299993,-42.40935637799991],[-64.05972245999993,-42.38811614399983],[-64.05321204299995,-42.37859465899993],[-64.05158443899992,-42.37224700299991],[-64.05231686099995,-42.354099216999906],[-64.05321204299995,-42.34872812299986],[-64.05850175699993,-42.343438408999866],[-64.05972245999993,-42.33660247199987],[-64.05752519399994,-42.33375416499983],[-64.05260169199988,-42.33180103999987],[-64.04771887899992,-42.32878997199995],[-64.04548092399995,-42.322686455999886],[-64.04771887899992,-42.31080494599992],[-64.05752519399994,-42.29127369599985],[-64.05972245999993,-42.28167083099996],[-64.06843014199993,-42.269626559999864],[-64.08901933499996,-42.26279062299993],[-64.13426673099988,-42.258396091999856],[-64.24290930899994,-42.262302341999934],[-64.29662024599992,-42.257582289999846],[-64.33971106699994,-42.237399997999916],[-64.30654863199992,-42.224216403999876],[-64.16218014199993,-42.2094052059999],[-64.0389870809999,-42.1575415779999],[-63.95787011499993,-42.11348936299982],[-63.87091450999989,-42.08371272199982],[-63.80995988799992,-42.070174454999915],[-63.76864810099991,-42.07772318699993],[-63.73224850199992,-42.10523853999982],[-63.70962480399996,-42.13437265399995],[-63.67894446499986,-42.194594007999825],[-63.67491614499988,-42.2128231749999],[-63.66832434799991,-42.22861093499985],[-63.65274003799993,-42.24187590899989],[-63.620269334999925,-42.26392994599996],[-63.59797115799989,-42.29998137799984],[-63.59048417899993,-42.34124114399988],[-63.59750656999992,-42.441633226999855],[-63.579335089999915,-42.59295012799984],[-63.59211178299994,-42.63347747199985],[-63.61701412699989,-42.674737237999906],[-63.63329016799992,-42.714613539999874],[-63.620269334999925,-42.751234632999896],[-63.671498175999886,-42.80217864399991],[-63.73664303299989,-42.824802341999884],[-63.94196529899988,-42.859633070999834],[-64.00487219999994,-42.859633070999834],[-64.02562415299994,-42.86223723799992],[-64.06999663499994,-42.87860349899986],[-64.10789954299989,-42.883721612999935],[-64.13853919199991,-42.86695728999992],[-64.16218014199993,-42.846856377999885],[-64.19542395699995,-42.80836353999989],[-64.21397864499994,-42.79216887799984],[-64.23387610599994,-42.78541432099989],[-64.25133216099991,-42.77507903399997],[-64.25096594999988,-42.75212981599998],[-64.24290930899994,-42.728610934999935],[-64.23729407499985,-42.716485283999845],[-64.21861731699997,-42.655938408999944],[-64.20685787699989,-42.648207289999846],[-64.19566809799997,-42.64421965899987],[-64.20238196499992,-42.635430596999896],[-64.22423255099997,-42.62086353999995],[-64.22899329299986,-42.618584893999895],[-64.24404863199987,-42.61345794099989],[-64.24909420499992,-42.609795830999836],[-64.25352942599989,-42.603122653999876],[-64.25772050699993,-42.600355726999815],[-64.29442298099991,-42.5857072899999],[-64.30736243399994,-42.57439544099984],[-64.31236731699997,-42.55575937299992],[-64.32262122299991,-42.54241301899983],[-64.34593665299991,-42.53093840899988],[-64.38805091099997,-42.51726653399986],[-64.43773352799985,-42.50693124799993],[-64.54222571499989,-42.506280205999886],[-64.61485755099997,-42.5153134089999],[-64.63963782499992,-42.521742445999905],[-64.66295325399994,-42.53069426899985],[-64.68834387899994,-42.54713307099985],[-64.72325598899988,-42.552666924999855],[-64.7347305979999,-42.55787525799994],[-64.74229895699996,-42.56308359199985],[-64.78624426999991,-42.60833098799988],[-64.8040258449999,-42.621514580999914],[-64.82315019399996,-42.62712981599983],[-64.87311764199988,-42.630954684999935],[-64.92247473899987,-42.64137135199984],[-64.94603430899991,-42.65422942499994],[-64.95836341099995,-42.66936614399994],[-64.96727454299992,-42.68678150799991],[-64.98082434799997,-42.70623137799983],[-65.01219641799992,-42.73186614399987],[-65.01891028599997,-42.74684010199982],[-65.0118708979999,-42.771091404],[-64.99714107999989,-42.78484465899993],[-64.95677649599995,-42.79257577900002],[-64.92446855399993,-42.81129322699982],[-64.86046301999993,-42.82634856599984],[-64.73790442599987,-42.87102629999997],[-64.70400956899994,-42.88844166499986],[-64.66539466099997,-42.915215752999956],[-64.64549719999988,-42.925388278999904],[-64.61375891799992,-42.93132903399993],[-64.59068762899994,-42.9405249979999],[-64.57990475199995,-42.943047783999916],[-64.56480872299994,-42.94280364399988],[-64.53868567599989,-42.93743255],[-64.51305091099994,-42.93629322699996],[-64.50316321499992,-42.93726978999986],[-64.49486243399994,-42.94036223799985],[-64.47940019399991,-42.953383070999834],[-64.46157792899993,-42.96119557099992],[-64.45323645699997,-42.967217705999914],[-64.43346106699994,-42.97633228999992],[-64.4081111319999,-42.97616952899986],[-64.3282771479999,-42.95183684699997],[-64.31578528599988,-42.950453382999896],[-64.31505286399994,-42.95484791499989],[-64.30211341099994,-42.98088958099996],[-64.30671139199998,-42.99358489399992],[-64.3281957669999,-43.009860934999864],[-64.44758053299998,-43.06861744599986],[-64.56529700399994,-43.104099216999856],[-64.76524817599997,-43.147393487999835],[-64.94391842399992,-43.23943450299993],[-64.97541256399992,-43.26946379999988],[-64.99498450399987,-43.28337981599986],[-65.0152888659999,-43.29412200299995],[-65.03233801999994,-43.299411716999856],[-65.0433650379999,-43.321547132999925],[-65.04214433499988,-43.339450778999975],[-65.03604081899991,-43.356703382999974],[-65.03233801999994,-43.37810637799984],[-65.0390518869999,-43.39560312299989],[-65.05504309799991,-43.40683359199997],[-65.07412675699987,-43.415704033999845],[-65.1552628249999,-43.47812265399989],[-65.19269771999984,-43.52971770599986],[-65.20982825399997,-43.54631926899991],[-65.26353919199994,-43.58180103999989],[-65.27538001199991,-43.58733489399999],[-65.31354732999998,-43.638278904],[-65.31676184799994,-43.64837004999998],[-65.33079993399987,-43.663344007999925],[-65.33405514199993,-43.67262135199988],[-65.33238684799991,-43.73072682099992],[-65.32725989499991,-43.74627044099992],[-65.3060603509999,-43.77906666499993],[-65.31187903599997,-43.792250257999896],[-65.31737219999988,-43.813083591999956],[-65.31822669199988,-43.832207940999844],[-65.30980383999994,-43.84059010199991],[-65.29649817599991,-43.84807708099996],[-65.2884008449999,-43.865166925],[-65.2823787099999,-43.884535414999846],[-65.27538001199991,-43.89861419099987],[-65.27098548099991,-43.91277434699998],[-65.27554277299987,-43.95110442499983],[-65.27196204299989,-43.96404387799984],[-65.2581274079999,-43.96754322699983],[-65.23932857999995,-43.963311455999985],[-65.2286096799999,-43.97525342399989],[-65.25185855899991,-43.98813354199987],[-65.24278518899987,-44.01084562299987],[-65.24197713099989,-44.02726740299997],[-65.22237391199991,-44.03689592799985],[-65.18670758399992,-44.03553942499996],[-65.21148657799995,-44.05042856199991],[-65.23208265299994,-44.0674353],[-65.23786373599998,-44.084161065999936],[-65.23616731399994,-44.09910986899992],[-65.23386829399988,-44.113498070999896],[-65.22123961699992,-44.11886902699984],[-65.21481712599993,-44.137434820999886],[-65.23074687199991,-44.14326334799995],[-65.26232156799992,-44.14775565899994],[-65.28256747099996,-44.15451721999993],[-65.29876554099992,-44.16647892499995],[-65.30870792199994,-44.20008451099996],[-65.30682808499992,-44.22471248299985],[-65.30472356499988,-44.240088918999874],[-65.29153031399991,-44.254899325999865],[-65.28461430399994,-44.26207904799999],[-65.27651933499993,-44.265557549999954],[-65.26798522599992,-44.27226956599992],[-65.27196204299989,-44.282403252999956],[-65.26870969899991,-44.29101550999995],[-65.26586637799994,-44.30141014699998],[-65.25233902599987,-44.30732067799998],[-65.25656303799988,-44.31474363299991],[-65.25820427099995,-44.32315771399985],[-65.2461949689999,-44.33466666899988],[-65.2291163969999,-44.3340722379999],[-65.22141201499988,-44.338449254999944],[-65.22108491799992,-44.35599715799987],[-65.21688470199985,-44.36641033799994],[-65.22885195399988,-44.37040143699993],[-65.2344351779999,-44.37921433099991],[-65.23538257699994,-44.386704173999945],[-65.24789998299994,-44.387865300999835],[-65.25974145199987,-44.388569697999856],[-65.2659142999999,-44.3950121219999],[-65.27028372899986,-44.40571585599984],[-65.2795158989999,-44.40694101999988],[-65.28565658699995,-44.41241619],[-65.2792712269999,-44.41676377900002],[-65.27882171699991,-44.421934402999824],[-65.28743716699992,-44.424111958999866],[-65.28949766199989,-44.42641766199995],[-65.28239947399993,-44.42937261499985],[-65.28580890199993,-44.43259038399998],[-65.29691513499995,-44.43143279999987],[-65.30457142499989,-44.42612022199995],[-65.30990843299989,-44.42836017799992],[-65.31144705899993,-44.43395939399992],[-65.30577661499987,-44.43970246200003],[-65.30926802199991,-44.444792565],[-65.31591706199991,-44.447005375999865],[-65.3207032439999,-44.4515991019999],[-65.32866424399992,-44.45378523399995],[-65.33159002299988,-44.460759638999875],[-65.32649707599992,-44.46414550499989],[-65.31541418099988,-44.46577722699999],[-65.31168703699987,-44.471015498999975],[-65.31418630699991,-44.47645521699984],[-65.31903168699998,-44.482457349999876],[-65.32190606299986,-44.48849790999998],[-65.31358728399991,-44.49429252399999],[-65.30759650399992,-44.49253803799995],[-65.30098631999994,-44.49173425599989],[-65.29629168499989,-44.489483415],[-65.28260115199988,-44.492575993999985],[-65.28282495599987,-44.498202468999935],[-65.28828928999991,-44.503253692999905],[-65.28718011899988,-44.50843776999992],[-65.2800599689999,-44.511397074],[-65.2792779409999,-44.51626327399985],[-65.28990188699993,-44.51839591],[-65.3029720519999,-44.51578439899984],[-65.30902854699991,-44.51894715299987],[-65.3125105519999,-44.52357023299993],[-65.31477113099987,-44.5305664899999],[-65.32013505599988,-44.532804395999875],[-65.3238375279999,-44.5266258209999],[-65.3207831199999,-44.51636022499997],[-65.32570991899989,-44.50827791699985],[-65.33747428799995,-44.50709431899989],[-65.3486729599999,-44.50920387099991],[-65.35279983899994,-44.51474429099993],[-65.35869333499994,-44.51508701299987],[-65.36515081999991,-44.51307309299986],[-65.37310176699992,-44.51618322099989],[-65.37459740499995,-44.521305883999815],[-65.36949622299991,-44.52955494599995],[-65.3614802729999,-44.53386809699987],[-65.36122495099991,-44.54039415799983],[-65.36990666099987,-44.54349670499994],[-65.3808872089999,-44.541366595999904],[-65.38831839899986,-44.545436131999814],[-65.3933082559999,-44.551921982],[-65.39056290199993,-44.56093879799998],[-65.3802702799999,-44.56725841599983],[-65.37169663199992,-44.56743541799999],[-65.36550405999992,-44.57298819599998],[-65.3563280539999,-44.57411801599993],[-65.3585530979999,-44.580172473999866],[-65.36867923099993,-44.58606198299991],[-65.37392641599993,-44.58548294599987],[-65.37551252599988,-44.5760637689999],[-65.3827724809999,-44.57638075499993],[-65.38821422999983,-44.58048997999992],[-65.3917602469999,-44.586516217999915],[-65.39470777299996,-44.59396366],[-65.4004372839999,-44.58914909299999],[-65.40819996399995,-44.58569929599983],[-65.4104393959999,-44.576266095999856],[-65.41690084999989,-44.57331130599989],[-65.42092922099988,-44.57510245299986],[-65.42415738199992,-44.57362393399991],[-65.42925624099989,-44.56975743699992],[-65.4379704329999,-44.57332396099987],[-65.4499328469999,-44.57587978299995],[-65.46181204799993,-44.576558053999946],[-65.46536503399992,-44.58258052099996],[-65.46574142799997,-44.591024349999984],[-65.46091465499993,-44.600993420999885],[-65.47537934299993,-44.600207758999986],[-65.47956505999986,-44.60528430699999],[-65.49995370399989,-44.604364021999885],[-65.54273928099991,-44.61959284999986],[-65.57829647799991,-44.64788459299992],[-65.59851526799994,-44.64274368399984],[-65.64320848299994,-44.667999982999845],[-65.66047115799996,-44.68303801899985],[-65.6709675109999,-44.6973864699999],[-65.67925204899987,-44.70516962699996],[-65.6855386819999,-44.712529511999975],[-65.69583112199993,-44.734810325999916],[-65.69317418799992,-44.762559638999875],[-65.69522940199997,-44.77799867299993],[-65.6998787759999,-44.79243810199996],[-65.70426436999993,-44.80125173699983],[-65.71760408699993,-44.80420860199996],[-65.72710046799988,-44.80960483399996],[-65.72677892299996,-44.83026519999993],[-65.71845424199995,-44.835638976999945],[-65.7245336659999,-44.838762152999976],[-65.72825457099991,-44.84758238699995],[-65.71544314199994,-44.86996254599994],[-65.69777553999995,-44.87415197499992],[-65.68582549599992,-44.873498085999984],[-65.6820509339999,-44.87780678299998],[-65.67413321399991,-44.87846056199999],[-65.66972315699988,-44.88326233899991],[-65.66472710999994,-44.88993176099983],[-65.64814242199989,-44.889380057999915],[-65.64816361699985,-44.889847484999876],[-65.63401342099985,-44.88455813999984],[-65.61752053899991,-44.88843224299992],[-65.59812991499984,-44.899220230999894],[-65.57291603999988,-44.89582897099997],[-65.55294959299997,-44.911023863999816],[-65.53526213999993,-44.915634867999934],[-65.52139967599996,-44.931897591999856],[-65.53408789199995,-44.93396784099989],[-65.54785573699994,-44.945394893],[-65.56000912099992,-44.95028720699996],[-65.56494035699988,-44.95674761299998],[-65.57378343399998,-44.961713424999914],[-65.58688086299992,-44.95813808799994],[-65.59518900499998,-44.96592822599985],[-65.60543577299993,-44.97274058499997],[-65.6000069959999,-44.98459188699982],[-65.58782782399992,-44.99377788299995],[-65.58380890299992,-45.00747171099992],[-65.60089922199992,-45.004273082999944],[-65.61191283499991,-44.99886710899986],[-65.62223153499988,-45.007071093999826],[-65.61722414499991,-45.01328070399997],[-65.60264260499993,-45.027686552999896],[-65.64338037699986,-45.04739188199998],[-65.66441422799991,-45.04268233799995],[-65.68505571199992,-45.04453787599992],[-65.69061894499987,-45.06272142699985],[-65.73461395199993,-45.03533572099997],[-65.75137518799995,-45.02364587899997],[-65.78595042199989,-45.027131829],[-65.80318599499992,-45.02757065899999],[-65.81739670499988,-45.040290191999915],[-65.83068670199992,-45.03474436799998],[-65.8285729289999,-45.016526893999895],[-65.84159184399991,-45.003216459999834],[-65.8564192979999,-45.0045827279999],[-65.87237126299993,-45.00332169699992],[-65.88980692499989,-45.00808525299989],[-65.89069084099995,-45.02631491899983],[-65.8876586509999,-45.03944443599992],[-65.90859841399985,-45.038927092999835],[-65.93623791099989,-45.04868440599999],[-65.96421969199992,-45.04187731699987],[-65.98535354299989,-45.02218601899997],[-66.01635697499997,-45.003107233999856],[-66.04470906799988,-45.00409292699996],[-66.11030849499986,-44.98841203699989],[-66.16857413699992,-44.996397419999965],[-66.20036661899994,-44.992919196999864],[-66.2213395089999,-45.01581514399989],[-66.2595853149999,-45.03909596399987],[-66.28157880799995,-45.057602903999836],[-66.30069467599992,-45.047486209999974],[-66.31529296999989,-45.04445424099984],[-66.3361879929999,-45.04384554999991],[-66.3497072959999,-45.043450414],[-66.36717067399988,-45.047286436999954],[-66.37255088899988,-45.05495597699985],[-66.3933494209999,-45.052597413000015],[-66.40407016999993,-45.06362699599991],[-66.46772005799997,-45.07701584399988],[-66.49658992299993,-45.08838184199999],[-66.52387280699992,-45.108972139999935],[-66.52530085399985,-45.13188012399998],[-66.47605071099994,-45.14257148199988],[-66.45475808399988,-45.149340906999896],[-66.47330234599991,-45.16867384399998],[-66.57142151199994,-45.14116984699981],[-66.58779863199987,-45.13933684699985],[-66.58821368299994,-45.166661960999974],[-66.54310183799996,-45.17418725699983],[-66.5225725279999,-45.193184622999865],[-66.52399711399991,-45.21609712699993],[-66.56085939499991,-45.21495794499991],[-66.66951510999988,-45.214589858],[-66.78576840599993,-45.22918251799993],[-66.86892147899994,-45.235597263],[-66.92926587199989,-45.256533542999975],[-66.96121441999992,-45.27688722199997],[-67.00926673099994,-45.30388762799987],[-67.06479532499995,-45.34994880399999],[-67.09638047799992,-45.39180435299994],[-67.13397512499995,-45.425778224999874],[-67.16735089099987,-45.461436009999936],[-67.20132884499995,-45.50175043199985],[-67.22332870099989,-45.52867760399991],[-67.26980527799992,-45.560825681999845],[-67.29369055899991,-45.58993905999995],[-67.30776933499995,-45.60149504999998],[-67.33192450099989,-45.61349140499985],[-67.34458865299987,-45.63327733499993],[-67.35628532699988,-45.65896466799991],[-67.35623091199992,-45.689883715999855],[-67.35442622499991,-45.70579875499995],[-67.33511308499992,-45.71884531000002],[-67.33983313699994,-45.72869231599995],[-67.34626217399995,-45.73398202900002],[-67.36390447099987,-45.73568268599986],[-67.36443040499995,-45.7498713],[-67.36967714499994,-45.76230233299988],[-67.36873016299992,-45.76900048199995],[-67.36063562299995,-45.77666154299984],[-67.36459739199992,-45.786610410999856],[-67.37706458199992,-45.79412200299991],[-67.39708768299992,-45.791030730999935],[-67.4276721999999,-45.807998242999886],[-67.44241760699995,-45.81774229299999],[-67.4558739739999,-45.825002835999975],[-67.47402389299988,-45.86221250099993],[-67.50474049399989,-45.878345699999954],[-67.51510157399989,-45.897353436999964],[-67.5362431639999,-45.91614268799994],[-67.54773162699993,-45.93344581599986],[-67.53311113199989,-45.958265882999925],[-67.55757025799997,-45.96751579699983],[-67.57848059799991,-45.99285247199991],[-67.58165442599997,-46.00001392999987],[-67.61351477799991,-46.07187265399993],[-67.62120520699992,-46.09954192499984],[-67.6244197259999,-46.13005950299987],[-67.62246660099993,-46.16375090899987],[-67.57469641799987,-46.322035414999846],[-67.54088294199991,-46.40129973799997],[-67.51813717399997,-46.43816497199987],[-67.4232197649999,-46.567419448999956],[-67.36507905799988,-46.606216299999886],[-67.33649814399986,-46.625191941999816],[-67.28742428299998,-46.63616301899985],[-67.25627145699985,-46.64342173099993],[-67.24606090799998,-46.65161870399986],[-67.23208574099988,-46.67099374799989],[-67.19363973099985,-46.6910040989999],[-67.15243243899988,-46.69713652799996],[-67.12999479199995,-46.70659560899986],[-67.1153865229999,-46.736016533999845],[-67.08210700299995,-46.757094293999884],[-67.04740196599991,-46.79563023899989],[-67.03319251199991,-46.81910572699991],[-67.02257239499995,-46.8212216129999],[-67.00926673099994,-46.82170989399999],[-66.99982662699992,-46.824883721999946],[-66.99022376199986,-46.839043877999984],[-66.98228919199988,-46.84221770599994],[-66.97199459499986,-46.84832122199985],[-66.88304602799985,-46.91871510199995],[-66.82457434799989,-46.98137786299995],[-66.7864477199999,-47.00660572699982],[-66.69924532,-47.037744204999896],[-66.66106381299997,-47.03568441199991],[-66.62879545299992,-47.05121808799988],[-66.58779863199987,-47.04078541499982],[-66.56749426999988,-47.04802825299993],[-66.54702714799993,-47.04648202899989],[-66.52627519399991,-47.0420874979999],[-66.50523841099988,-47.04078541499982],[-66.48932857999996,-47.04501718499992],[-66.45677649599992,-47.058363539999846],[-66.44066321499993,-47.061293226999865],[-66.38565019399996,-47.05779387799987],[-66.36872311099998,-47.061293226999865],[-66.35822506399992,-47.06698984199993],[-66.30427932699986,-47.07379151099987],[-66.20049277099989,-47.08958676899991],[-66.08580481699994,-47.08261484200001],[-66.02879798099985,-47.06731536299995],[-66.00328528599994,-47.06357187299992],[-65.97956295499995,-47.06617603999992],[-65.91929052599991,-47.09391610099992],[-65.88115573199988,-47.09655518499987],[-65.85806308199994,-47.11340716799995],[-65.84738115699993,-47.1396868179999],[-65.82408300799995,-47.15330224699997],[-65.80581620999996,-47.168064059999935],[-65.79645748599992,-47.174248955999914],[-65.74490219399988,-47.204164007999836],[-65.75535523499994,-47.223452039999856],[-65.73774471599998,-47.27758142799989],[-65.72431445799987,-47.30956267699989],[-65.71301381699993,-47.341497173999905],[-65.72679696299991,-47.40884756299991],[-65.73566515999997,-47.509535424999925],[-65.76185443499989,-47.56805745199998],[-65.79070200699994,-47.63270647499991],[-65.84562584399993,-47.742205726999885],[-65.86513411299995,-47.749905840999894],[-65.89495022999994,-47.75066397199992],[-65.92189692799994,-47.746529166999935],[-65.97287331299995,-47.74098663799991],[-66.03206441799995,-47.73952529599988],[-66.06193029499988,-47.758159252999874],[-66.09562115899993,-47.78745713499988],[-66.12196428299998,-47.79970499899996],[-66.14801079799992,-47.80656641599994],[-66.21043860599991,-47.8285458309999],[-66.27391516799992,-47.859470309999935],[-66.29637610599991,-47.863864842],[-66.3734431629999,-47.861260674999926],[-66.38914954299986,-47.863864842],[-66.34064693899998,-47.87517669099991],[-66.30109615799992,-47.87249114399984],[-66.22411048099985,-47.84270598799992],[-66.19977779899997,-47.83806731599989],[-66.14444317799985,-47.82820214099996],[-66.04937103399988,-47.791863522999876],[-66.02257205199996,-47.770993068999836],[-65.97414375699988,-47.764649706999904],[-65.92935031699997,-47.76762053799986],[-65.90182401399989,-47.769949848000024],[-65.88462771999991,-47.78383045199991],[-65.86721256899997,-47.83507742199987],[-65.85340938299989,-47.87959037199997],[-65.82703907299992,-47.89853302899992],[-65.7903558989999,-47.904777381999835],[-65.76173881699992,-47.91190762599996],[-65.78815330499992,-47.9253143199999],[-65.79512145899986,-47.93593418],[-65.7745879149999,-47.9439570199999],[-65.7619523379999,-47.948551587],[-65.78633148599991,-47.95338917499997],[-65.81244735999991,-47.96032816799997],[-65.8367417449999,-47.96299095799995],[-65.84706762499994,-47.94441661099999],[-65.89955863599994,-47.93237992399999],[-65.92738479899987,-47.94140874099999],[-65.94621396599985,-47.962501888999896],[-65.95200869399986,-47.98069202399993],[-65.92999068999993,-47.990950789],[-65.93687903599991,-48.015801690999865],[-65.94041907499991,-48.02092864399988],[-65.94688880099991,-48.02629973799991],[-65.94896399599992,-48.03826262799987],[-65.968445,-48.04716810799988],[-65.9641305619999,-48.05698808199996],[-65.93747650599987,-48.071685817999956],[-65.90318762899992,-48.07854583099992],[-65.8976881449999,-48.094456154999904],[-65.91723745599995,-48.113813629999896],[-65.94497130399989,-48.117797388999904],[-65.9531597569999,-48.104755297999944],[-65.97167519499993,-48.09944889099999],[-65.99007949899993,-48.107208971999924],[-66.01520800399993,-48.106470733999856],[-66.06152579999987,-48.11013456799995],[-66.09005949599992,-48.116261891999955],[-66.10863196499989,-48.123304945999976],[-66.13201060499995,-48.136340354999916],[-66.1400714939999,-48.16023757099984],[-66.1527694129999,-48.174897769999845],[-66.1595352859999,-48.18531666499993],[-66.20129786599998,-48.19885866799987],[-66.23828681399986,-48.20892340099988],[-66.2648120589999,-48.24277923499998],[-66.30085201699998,-48.25188567499992],[-66.31688391799987,-48.26425546699987],[-66.33678137899997,-48.286309502999956],[-66.35498753599992,-48.32121613099987],[-66.34111464199995,-48.35272452299991],[-66.35284255899997,-48.35613927099991],[-66.3862601189999,-48.35117457499983],[-66.42096018599995,-48.35038396099996],[-66.44859778599991,-48.35027434699995],[-66.4515681629999,-48.35507577899993],[-66.4695581229999,-48.364931785999985],[-66.46380813399993,-48.37876765599991],[-66.46849041399994,-48.400275158999904],[-66.50105555699992,-48.41398810799987],[-66.54497184999984,-48.42396739399999],[-66.57622911399989,-48.42390248699986],[-66.65099036399997,-48.43108489399995],[-66.6933673019999,-48.455087830999815],[-66.74983517199986,-48.475292013999876],[-66.7733538909999,-48.494180866999905],[-66.8092006299999,-48.5126828999999],[-66.83827796999988,-48.53957142399996],[-66.85781150099987,-48.548307111999875],[-66.86038775399987,-48.569846197999894],[-66.86643549499988,-48.58983435599984],[-66.88977315099993,-48.59589537799987],[-66.9154841719999,-48.60425682399998],[-66.98692313699988,-48.611697897999974],[-67.04413302199988,-48.644236874999926],[-67.11434848799988,-48.67375008599999],[-67.13675175199992,-48.69280075299982],[-67.14579291599995,-48.74242718099988],[-67.18463619399989,-48.771577001999894],[-67.19323122799989,-48.79610571199992],[-67.19828466699995,-48.818353344999956],[-67.24780769299988,-48.84564525699999],[-67.32183988399993,-48.86734733299991],[-67.40573688699996,-48.904235248999896],[-67.55654869799989,-49.015816863999845],[-67.5749421919999,-49.04786613499996],[-67.58993182099987,-49.08458553399995],[-67.59635898099992,-49.10679736399994],[-67.61543146899994,-49.11811372199995],[-67.63255774599989,-49.12997812299991],[-67.6351983369999,-49.155544871999936],[-67.61536684199984,-49.161142898999934],[-67.60992954699992,-49.178107404],[-67.62413489499994,-49.184828382999825],[-67.63170325399989,-49.19060637799996],[-67.6501358709999,-49.195977471999925],[-67.65587317599991,-49.20403411299996],[-67.66030839799986,-49.213962497999965],[-67.6683444999999,-49.224040974999944],[-67.6753600699999,-49.24878873099998],[-67.70250148499989,-49.26750864799998],[-67.7323298819999,-49.27467213299983],[-67.72288977799991,-49.284356377999885],[-67.71068274599992,-49.293715101999915],[-67.70417232999992,-49.303887627999956],[-67.71190344999994,-49.315606377999856],[-67.72630774599992,-49.31812916499995],[-67.73980888699992,-49.32754606099983],[-67.75780155399988,-49.33478111599992],[-67.74536619599994,-49.342422021],[-67.74577902999991,-49.35569259299988],[-67.77431215199996,-49.374408189999876],[-67.8308813139999,-49.37957122199985],[-67.83250891799992,-49.38543059699998],[-67.81427975199995,-49.39128997199993],[-67.79312089799991,-49.39177825299992],[-67.72518395899989,-49.39074554],[-67.69789541299988,-49.37196039099994],[-67.68288778099992,-49.3364791399999],[-67.68469529299989,-49.309964676999975],[-67.66907689699994,-49.29606517899994],[-67.66320732399991,-49.26715291299995],[-67.64574133999994,-49.252048434999864],[-67.6368302069999,-49.247247002999956],[-67.62218176999991,-49.250746351999865],[-67.60765540299988,-49.26506926899985],[-67.6078468399999,-49.284313579999896],[-67.61140455499992,-49.323192568999865],[-67.65330969999991,-49.377129815999815],[-67.65664628799993,-49.39470794099985],[-67.67638740999988,-49.46193873599998],[-67.70006262899997,-49.53427499799985],[-67.70628821499993,-49.562107028999904],[-67.70624909499989,-49.606033297999865],[-67.71354882399993,-49.62965601999989],[-67.71799844899994,-49.6705508399999],[-67.71253818899987,-49.68554912099985],[-67.73201204799992,-49.78130177299991],[-67.76317298099988,-49.84840260199994],[-67.77171790299991,-49.87086353999994],[-67.78685462099989,-49.892185154],[-67.79381262899997,-49.90536874799995],[-67.79889889199988,-49.90984465899984],[-67.83320700599995,-49.954540455999876],[-67.89492710599984,-49.99687492399985],[-67.98217462199989,-50.04319934099999],[-68.07635021999994,-50.08726796699991],[-68.17010877399994,-50.11403408499997],[-68.25836740999998,-50.12464710999995],[-68.3282771479999,-50.12021249799985],[-68.34186764199994,-50.117608330999936],[-68.35191809799991,-50.11052825299998],[-68.3766169909999,-50.083428643999945],[-68.39949716899986,-50.07531568399997],[-68.42195327399992,-50.051188993999986],[-68.4361957479999,-50.03152622899996],[-68.44511645399984,-50.005491527999936],[-68.46245273499994,-49.980390714],[-68.48663630999991,-49.95947119299991],[-68.52094919599992,-49.94052407399994],[-68.54185950399997,-49.91562265399998],[-68.5489413439999,-49.893675825999885],[-68.56906599999985,-49.85881865099997],[-68.5946665309999,-49.83462727499997],[-68.64126542899996,-49.77459075299993],[-68.65404212099992,-49.75790780999989],[-68.67223059799989,-49.74578215899999],[-68.69579016799995,-49.73560963299994],[-68.71987870999996,-49.72909921699986],[-68.73973548099988,-49.72771575299997],[-68.67711341099997,-49.75579192499988],[-68.66405188699989,-49.767510674999954],[-68.65811113199995,-49.78264739399996],[-68.6306064609999,-49.81776976599987],[-68.59578014499996,-49.85830677999981],[-68.57779826899991,-49.90282559399986],[-68.57727228799993,-49.927615881999856],[-68.5930883449999,-49.93759530999991],[-68.62645423099988,-49.953057549999926],[-68.65013587099992,-49.95818450299985],[-68.67438717399988,-49.96835702899988],[-68.70144621599985,-49.9703913559999],[-68.74298794899997,-49.96415360599982],[-68.80357382199989,-49.96831264899994],[-68.87537908599998,-49.96249530199992],[-68.91334172299989,-49.981101117999984],[-68.94596623399988,-49.991230396],[-68.97492428299995,-49.991875908999845],[-69.01349850199992,-50.007745049999876],[-69.01349850199992,-50.01523202899985],[-69.00837154899992,-50.01555754999987],[-68.99803626199989,-50.014906507999825],[-68.99299068899995,-50.01523202899985],[-68.96996008999989,-50.01376718499997],[-68.91501267499984,-50.011265855999866],[-68.88190670499998,-49.99260833099988],[-68.85602779899995,-49.98349374799988],[-68.84215247299997,-49.981052341999856],[-68.82900956899991,-49.981540622999844],[-68.8010699469999,-49.984534],[-68.76905515699991,-49.9819502539999],[-68.71745482399987,-49.989456520999866],[-68.67084224599995,-49.994725713999834],[-68.63898678299998,-49.9843075499999],[-68.6011852419999,-49.97254015399988],[-68.58346975799986,-49.970337441999874],[-68.56773088199988,-49.97414476799995],[-68.55960165199988,-49.979681881999966],[-68.55211341099991,-49.999688408999845],[-68.53232169799995,-50.00834316699989],[-68.51885100499996,-50.01566603199996],[-68.51896711399988,-50.025113135999845],[-68.51802370399987,-50.039667830999825],[-68.5115016579999,-50.060767608999825],[-68.49375364599985,-50.08011367499985],[-68.46666261699991,-50.10013224499992],[-68.44526254999992,-50.10966651999981],[-68.4192447209999,-50.11195050999997],[-68.40298368499995,-50.116975867000015],[-68.39111386399988,-50.12901289699996],[-68.36312930599993,-50.13424102899999],[-68.34987266699997,-50.14881046099986],[-68.36209878599992,-50.169314032],[-68.39590410099993,-50.177829685],[-68.41832434799994,-50.191827080999964],[-68.43809973899987,-50.20077890399998],[-68.61435785799992,-50.25202158199984],[-68.73664909799996,-50.29143435800001],[-68.76732952099987,-50.28867542499991],[-68.79167878099989,-50.30387651699999],[-68.7946533869999,-50.31752639699998],[-68.82551884099993,-50.32413316399995],[-68.8402550449999,-50.325729757999895],[-68.85621897799987,-50.32218916999987],[-68.8764293239999,-50.33057201899989],[-68.88093771599989,-50.35275568499986],[-68.89989173099991,-50.36199309699998],[-68.94631046399985,-50.40434286799989],[-68.97507873699993,-50.42890766499997],[-68.98961341099994,-50.45159270599995],[-69.0098734859999,-50.47724447999982],[-69.04386623999989,-50.51547155799994],[-69.06004759699991,-50.541335498999864],[-69.07651860799989,-50.56017205999992],[-69.07990810299987,-50.60453716099995],[-69.12267005099994,-50.67986419099984],[-69.14240475199998,-50.71949635199995],[-69.14997311099992,-50.74212004999992],[-69.14753170499989,-50.75872161299997],[-69.13257050399993,-50.784003255999856],[-69.12726696299997,-50.84672634999996],[-69.12806415499995,-50.87805752099981],[-69.13679981999985,-50.90348080799987],[-69.15906766299986,-50.91564219399998],[-69.2058726649999,-50.93558316299993],[-69.26048743399986,-50.97421640399999],[-69.34780839799994,-51.01864999799992],[-69.39012610599985,-51.048516534],[-69.41071529899989,-51.08391692499991],[-69.38072669199994,-51.064873955999836],[-69.32326410499988,-51.03237618899992],[-69.28808258399994,-51.01576894699984],[-69.22773077899984,-50.99214310499991],[-69.19666185599992,-50.98036212399992],[-69.16777830499993,-50.97822484799983],[-69.15866819999985,-50.99646176199992],[-69.15746008999992,-51.01572031],[-69.14541581899988,-51.0572242169999],[-69.1236966139999,-51.13453844399997],[-69.10845061599991,-51.18433658699995],[-69.10417679699987,-51.214858151999955],[-69.08690344999994,-51.23528411299989],[-69.0792537099999,-51.2776018209999],[-69.06265214799993,-51.32146575299994],[-68.96373450399994,-51.50074635199995],[-68.95620683499988,-51.52223072699989],[-68.95445716099988,-51.5429013],[-68.9625544909999,-51.56015390399999],[-68.98184160099993,-51.57154713299987],[-68.99941972599987,-51.56926848799989],[-69.01976477799988,-51.56316497199991],[-69.04759680899991,-51.56316497199991],[-69.06875566299993,-51.572360934999885],[-69.10130774599989,-51.59921640399996],[-69.11961829299986,-51.60475025799988],[-69.14753170499989,-51.603285414999924],[-69.17186438699987,-51.59937916499984],[-69.28433183499993,-51.55974700299999],[-69.36009680899991,-51.55575937299992],[-69.37718665299984,-51.556898695999955],[-69.38878333199997,-51.559665623],[-69.41812089799987,-51.5705705709999],[-69.47427324099988,-51.57529062299999],[-69.49990800699996,-51.58025481599995],[-69.5455623039999,-51.60588958099992],[-69.59414628799992,-51.616631768999845],[-69.61681067599989,-51.625176690999865],[-69.39872109399992,-51.59260062999986],[-69.35299021599988,-51.58836983799993],[-69.30455892199984,-51.593489703999886],[-69.20066835599997,-51.62049249799998],[-69.1569823559999,-51.6348833089999],[-69.16477974799997,-51.65175854099994],[-69.2189021479999,-51.680433851999965],[-69.2189021479999,-51.68670012799992],[-69.19896399599989,-51.68661874799993],[-69.18065344999994,-51.68157317499999],[-69.0980841569999,-51.65313123300001],[-69.05538131999992,-51.62986557799996],[-69.02892005099994,-51.61419036299999],[-69.00066337699994,-51.61135016399991],[-68.9735111439999,-51.619951744],[-68.93592766299992,-51.64551591499982],[-68.87315833199989,-51.7589657529999],[-68.82670866299986,-51.803747520999856],[-68.7530711869999,-51.914723998000014],[-68.68505901199995,-52.005006357999896],[-68.52159583199995,-52.16350676899988],[-68.39792135899995,-52.27523441599984],[-68.36561064099988,-52.306203708999945],[-68.35480913399994,-52.324977904999905],[-68.36247238499993,-52.33907152099984],[-68.39013823999991,-52.35787086400001],[-68.40705325699989,-52.371024240999866],[-68.41781478299988,-52.38605157099995],[-68.43474805699995,-52.390748518],[-68.44245100099994,-52.37948057399992],[-68.43629713899995,-52.366334805999905],[-68.44844041907211,-52.34688816023456],[-68.44803950999994,-52.310656026],[-68.45449906399998,-52.2999073279999],[-68.47780513499993,-52.295359801999865],[-68.55681839999991,-52.28368092899979],[-68.57314815299992,-52.28027028399995],[-68.60358557099991,-52.26797129299992],[-68.62172399899993,-52.263630472999935],[-68.82049739699994,-52.24316660599988],[-68.85866044199992,-52.233244730999886],[-69.00756608099996,-52.17908782999987],[-69.2122564289999,-52.13795338999989],[-69.48528885999988,-52.1324756869999],[-69.66393428599991,-52.08472666499992],[-69.83332963099994,-52.03935475699999],[-69.95275386599988,-52.00741872200001],[-70.0337566739999,-52.00659189899989],[-70.25924678599993,-52.00462819399987],[-70.4847110599999,-52.0026644899999],[-70.71014949599996,-52.0007007849999],[-70.93569128499996,-51.99873708099996],[-71.1611555579999,-51.99677337700002],[-71.38661983299997,-51.994706318999874],[-71.61213578299996,-51.99274261400002],[-71.8376000569999,-51.99077891099999],[-71.91769852799987,-51.99005543999991],[-71.9652408449999,-51.970625101999836],[-71.96022823199993,-51.92794036899993],[-71.94849768099994,-51.89600433299986],[-71.95847123199994,-51.86799570699985],[-71.98172562699997,-51.84494801899997],[-72.00983760599989,-51.82779144299992],[-72.07262447099995,-51.77859547899995],[-72.14212927199995,-51.73942474299991],[-72.18708776899987,-51.720717874999835],[-72.28113887599991,-51.7014942419999],[-72.30072424399994,-51.69146901499988],[-72.3141601159999,-51.67152191199995],[-72.32279007999995,-51.61622812899984],[-72.33090327999994,-51.59938161199995],[-72.35152217599995,-51.58346527099993],[-72.37570674699992,-51.57953786199996],[-72.40201005099996,-51.57974456799983],[-72.42914017799993,-51.576023864999904],[-72.45006913299991,-51.55266611799987],[-72.42231888899997,-51.522383727999845],[-72.35121211799995,-51.47597829199983],[-72.34831823699997,-51.468330179999946],[-72.34909338499997,-51.459028421999825],[-72.35105708799992,-51.449416606],[-72.35172888199989,-51.44042490599996],[-72.34831823699997,-51.430503030999965],[-72.34170365399987,-51.42295827199983],[-72.3344689539999,-51.41634368899992],[-72.32899125199992,-51.40879892999997],[-72.32356522599994,-51.39081553099998],[-72.32330684499996,-51.33448822099989],[-72.32046464099992,-51.31257741299992],[-72.3134366459999,-51.298004658999965],[-72.27049353099991,-51.25955739299992],[-72.25881465699987,-51.24519134599992],[-72.25757442199992,-51.23061859099987],[-72.27395585099995,-51.21676930799999],[-72.34945511899988,-51.18390309699996],[-72.38221797799989,-51.160597025999934],[-72.40309525599994,-51.12607716899986],[-72.40459387299995,-51.10582000699995],[-72.39653234899994,-51.09207407599992],[-72.36816198799997,-51.066649272],[-72.35074702999992,-51.04670216799998],[-72.33860306799994,-51.03698699899986],[-72.32248002199995,-51.032646178999876],[-72.29343786699987,-51.02923553499994],[-72.2770564379999,-51.007324727999894],[-72.2659460049999,-50.96071258499992],[-72.2567475999999,-50.87513641399997],[-72.26346553599993,-50.836275736999916],[-72.28392940299997,-50.81064422599986],[-72.31116288299998,-50.7887334179999],[-72.3381379809999,-50.760621439999866],[-72.34738806199991,-50.74315480599991],[-72.347698121,-50.72899546299996],[-72.34098018399996,-50.71514617899999],[-72.30491003399996,-50.664916686999945],[-72.3028429779999,-50.648896993999905],[-72.32191158099991,-50.64155893899999],[-72.34521765199992,-50.637321471999954],[-72.38335485899998,-50.620268249999924],[-72.50598303299992,-50.60125132199995],[-72.54913285399994,-50.61510060599992],[-72.61812089099996,-50.66677703799996],[-72.66261429899994,-50.66781056699994],[-72.6826647549999,-50.65954233799999],[-72.73351436399994,-50.62429901099992],[-72.75578690599988,-50.61644419399989],[-72.77842118399994,-50.619648131999945],[-72.90285803299994,-50.666570333],[-72.9384114179999,-50.685380554],[-73.01008662899997,-50.736436868999974],[-73.05173783399991,-50.7578309119999],[-73.09607621299995,-50.77064666699989],[-73.13948441599993,-50.77023325599987],[-73.17772497599992,-50.74945932999984],[-73.18671667499987,-50.716696471999924],[-73.18526973599998,-50.67845591199993],[-73.19224605399998,-50.64135223399986],[-73.20268469299992,-50.62646942199982],[-73.24490433799988,-50.58946909599995],[-73.25761674099994,-50.57303599099998],[-73.2618542079999,-50.55660288499992],[-73.26180253199996,-50.49903533899989],[-73.27404984599991,-50.44518849699986],[-73.27575516799996,-50.42555145199983],[-73.27275793499996,-50.38472707099984],[-73.27420487499995,-50.36446990999983],[-73.2843334559999,-50.33305063899998],[-73.30143835499993,-50.29956431099989],[-73.32293575099999,-50.26835174599991],[-73.34634517499994,-50.2436504109999],[-73.36510371999995,-50.23197153799983],[-73.4058247479999,-50.21698537199995],[-73.53057165599998,-50.14081431099995],[-73.54147538199996,-50.11373586099999],[-73.53150183199995,-50.08314341199998],[-73.48075557499996,-50.02268198599995],[-73.47858516499988,-50.00945281999996],[-73.48747351099989,-49.99115936299989],[-73.50021175199996,-49.97865366699989],[-73.55444616799988,-49.94713104299993],[-73.57273962499994,-49.932351582999914],[-73.56839880399988,-49.92005259199988],[-73.55398107999993,-49.90806365999982],[-73.5419404699999,-49.89452443499984],[-73.53827144399989,-49.87674774199991],[-73.53883988499993,-49.86155487099988],[-73.53449906399996,-49.84760223399998],[-73.48163407399991,-49.81111867299996],[-73.46297888199993,-49.787140807999954],[-73.46509761599992,-49.75995900499988],[-73.4926153159999,-49.72781626400002],[-73.52478389499993,-49.70600880999991],[-73.53951167899993,-49.692676288999806],[-73.546384644,-49.67675994899987],[-73.54072607499995,-49.65950001999988],[-73.5280911869999,-49.64441050199997],[-73.5181951499999,-49.62849416099995],[-73.52111486899992,-49.608960469999936],[-73.53294877199994,-49.59397430499997],[-73.5621976319999,-49.571753437999845],[-73.57555598999991,-49.55924774199985],[-73.58803584899991,-49.54054087299986],[-73.58658890799992,-49.52999888099998],[-73.5559447839999,-49.508088073000025],[-73.54258642699995,-49.49103485099999],[-73.54434342499994,-49.47759897899995],[-73.55072546499989,-49.46323292999995],[-73.5511388759999,-49.44400929699984],[-73.5404418549999,-49.42778289799991],[-73.52227758799995,-49.416724141999914],[-73.48380448499998,-49.40070444699987],[-73.46672542399995,-49.38757863299989],[-73.46204870599988,-49.374969583999956],[-73.47047196499997,-49.34220672599987],[-73.47111791999995,-49.31719533299996],[-73.45786291499994,-49.30768686899998],[-73.14501379499993,-49.30365610799998],[-73.14129309199993,-49.285569355999876],[-73.13064774599992,-49.278748066999924],[-73.09824662299994,-49.2727536009999],[-73.09762650599995,-49.26655242899999],[-73.16258378099991,-49.25818084699993],[-73.17044785899992,-49.25087001999997],[-73.18315100099991,-49.23906056699994],[-73.18433955999993,-49.214255879999904],[-73.17131709799989,-49.18934783899984],[-73.10718664599995,-49.13488087999993],[-73.09710974099991,-49.12134165499995],[-73.0948359789999,-49.10873260499992],[-73.09509436099997,-49.095813497],[-73.0922521569999,-49.08103403699999],[-73.07855790299999,-49.05870981899994],[-73.01757971199993,-48.998248392999905],[-73.0174763599999,-48.998248392999905],[-73.00972489499989,-48.99039357499997],[-72.96962398299988,-48.964348652999895],[-72.9222366939999,-48.952256367999915],[-72.82492997299997,-48.94450490299991],[-72.78121171099988,-48.93385955799991],[-72.74291947499998,-48.91380910299996],[-72.67196773299992,-48.86295949299995],[-72.61879268499986,-48.81965464199989],[-72.59233435099988,-48.791129251999934],[-72.58215409399992,-48.760536803999834],[-72.57801997899989,-48.721882833],[-72.58422115099995,-48.61594614699984],[-72.60659704699995,-48.56096242299991],[-72.61471024599987,-48.51000946099987],[-72.57677974399994,-48.45213185699984],[-72.53786739199998,-48.43125457699995],[-72.49647456899993,-48.415131530999886],[-72.43311926299992,-48.40035207099987],[-72.41673783399995,-48.39115366599995],[-72.38867753099991,-48.36428192199996],[-72.37715368699992,-48.35032928399997],[-72.37141760299994,-48.34640187599982],[-72.35865352399989,-48.342991230999885],[-72.34485591699993,-48.34371470199997],[-72.31540035099994,-48.35032928399997],[-72.30232621299986,-48.347538757],[-72.29509151199991,-48.33327606199994],[-72.30372147699995,-48.31601613399994],[-72.3175707599999,-48.29896291099992],[-72.3256322839999,-48.28552703899987],[-72.3241336669999,-48.268577167999865],[-72.31152461799988,-48.230956725999846],[-72.30950923699993,-48.21121632899988],[-72.33322871999988,-48.09081024199995],[-72.34304724199991,-48.07044972699983],[-72.37705033399996,-48.06218149799989],[-72.38800573699987,-48.057840677999906],[-72.39544714399997,-48.05091603599992],[-72.3977725829999,-48.042337747999895],[-72.3988577879999,-48.03324269599992],[-72.40257849099991,-48.024147643999854],[-72.41916662699992,-48.00957488999998],[-72.43689164299992,-48.00420054099992],[-72.45611527599996,-48.00109995599989],[-72.47745764199996,-47.993761901999804],[-72.50944535399995,-47.972987975999935],[-72.53528356999996,-47.94580617299986],[-72.54391353399993,-47.914800312999844],[-72.52422481299996,-47.882657571999815],[-72.50045365499992,-47.85289194799991],[-72.47440873199994,-47.78281870599997],[-72.45730383299988,-47.74912567199992],[-72.36283931499992,-47.63502410899983],[-72.35172888199989,-47.61828094499997],[-72.34444250599992,-47.60226125099983],[-72.33994665599991,-47.58520802799997],[-72.33756953999995,-47.56567433699996],[-72.31963781799995,-47.51193084699996],[-72.32087805199993,-47.4983916219999],[-72.33751786299993,-47.48795298299996],[-72.35829178899988,-47.483405455999915],[-72.370487427,-47.474517109999816],[-72.36118566999997,-47.45095265699982],[-72.34661291599991,-47.43627654999992],[-72.32873286999995,-47.42645802799986],[-72.28816687099993,-47.414985860999934],[-72.26294877199987,-47.41384897899984],[-72.20915360599994,-47.42025685599995],[-72.18734615099993,-47.41746632899991],[-72.17055131099997,-47.407544454],[-72.14538488799994,-47.38180959099992],[-72.05794836499987,-47.311943053999926],[-72.03815629099998,-47.287035012999965],[-72.02942297399991,-47.26967173299993],[-72.03055985499992,-47.259646504999836],[-72.0367093509999,-47.24962127699982],[-72.04316890499987,-47.23287811299994],[-72.04513260999991,-47.21582488999992],[-72.04146358299991,-47.20373260499984],[-72.03030147399997,-47.19753143299994],[-72.00983760599989,-47.1981515509999],[-71.9458105059999,-47.22771046899986],[-71.91253088499988,-47.2345317589999],[-71.8806982019999,-47.221922708999884],[-71.86328324399997,-47.1966012569999],[-71.86255977499988,-47.16890268899988],[-71.87413529499993,-47.1425477099999],[-71.89346227999997,-47.12136037199994],[-71.92028234899996,-47.1067876179999],[-71.98430944899988,-47.08053598999995],[-72.00518672699994,-47.06193247499991],[-71.99996740799992,-47.042192076999854],[-71.9347000729999,-47.01439015699989],[-71.9148046469999,-46.99847381599987],[-71.92669022599992,-46.983797708999965],[-71.96022823199993,-46.9621969599999],[-71.97035681199989,-46.94845102999996],[-71.96963334199998,-46.93398162899993],[-71.95320023699992,-46.87476043699995],[-71.94865270999989,-46.86752573699998],[-71.94183142099993,-46.86091115299989],[-71.9361986899999,-46.854296569999974],[-71.93537186799998,-46.84613169399987],[-71.94002274599993,-46.83827687599994],[-71.94622391799992,-46.831145527999986],[-71.95071976799994,-46.82360076899994],[-71.95009964999988,-46.81398895299985],[-71.93413163199995,-46.79951955099999],[-71.90746659399989,-46.79486867199985],[-71.85579016199995,-46.79445526099984],[-71.83408605999995,-46.78856414799992],[-71.8195649829999,-46.77895233099982],[-71.79321000199994,-46.751047057999926],[-71.77600174999998,-46.738127949999836],[-71.7201912029999,-46.715597026],[-71.68716996299995,-46.690068867999955],[-71.68019364499995,-46.659579772999884],[-71.6955415449999,-46.58712941499999],[-71.69321610599988,-46.569146016],[-71.68577469999994,-46.553849791999866],[-71.68050370299991,-46.53814015699997],[-71.6848961999999,-46.51922658299995],[-71.7518688559999,-46.39303273499995],[-71.76158402599995,-46.35799611399993],[-71.76292761299993,-46.31851531999991],[-71.75925858599993,-46.27293670599984],[-71.76334102399994,-46.24451466899991],[-71.78277136199992,-46.22467091799983],[-71.84292272999994,-46.19614552799987],[-71.89129186999989,-46.16296925799986],[-71.9004902749999,-46.158938496999866],[-71.90948197499995,-46.15666473399984],[-71.91470129399994,-46.15232391299995],[-71.9126342369999,-46.142091979999975],[-71.90446936099997,-46.13630421899991],[-71.89051672399998,-46.13341034000001],[-71.81636104299994,-46.12679575599983],[-71.79227982599988,-46.121938171],[-71.7701623129999,-46.11263641399987],[-71.75595129499992,-46.100647482],[-71.73543575099986,-46.071191914999915],[-71.72349849499992,-46.05765268999992],[-71.6491631919999,-45.999414157999894],[-71.6122908129999,-45.97052622499987],[-71.62438309799998,-45.934146015999886],[-71.64133296799989,-45.905723978999944],[-71.66587927299994,-45.88401987699996],[-71.70086421799996,-45.86851694699994],[-71.74318721599994,-45.85756154399988],[-71.75848343899992,-45.84815643299991],[-71.76489131699994,-45.83099985799994],[-71.76008540899994,-45.81591033899994],[-71.75145544499989,-45.801854349999836],[-71.74902665199993,-45.78676483099984],[-71.7628759359999,-45.76867807999983],[-71.78907588799993,-45.750901387999974],[-71.7985326749999,-45.73994598399992],[-71.80178828999996,-45.724029642999895],[-71.79951452599997,-45.71710500099991],[-71.78364986199995,-45.69850148499995],[-71.7804975999999,-45.68940643399998],[-71.78271968599998,-45.682895202999916],[-71.78638871299998,-45.67690073599997],[-71.7879390059999,-45.66945932999987],[-71.78587194899987,-45.6530262239999],[-71.78240962799993,-45.64176076299994],[-71.76458125799988,-45.61654266399998],[-71.7588451739999,-45.61168507899987],[-71.75150712099992,-45.60662078899989],[-71.74525427299992,-45.600936380999855],[-71.74282548099987,-45.594321797999854],[-71.74654618399995,-45.58729380299994],[-71.76173905499991,-45.57623504700001],[-71.76509802299992,-45.5724109909999],[-71.74959509299988,-45.549259947999985],[-71.71373164899995,-45.53324025499993],[-71.6720804449999,-45.52362843799985],[-71.6392142329999,-45.52001108799986],[-71.56169958499993,-45.523938496999826],[-71.5258361409999,-45.51897755899988],[-71.48909419799992,-45.49851369199992],[-71.47813879399993,-45.4827007039999],[-71.4813427329999,-45.467921243999896],[-71.50159989499991,-45.43877573699988],[-71.51033321199989,-45.41841522199995],[-71.50831783099994,-45.40838999400001],[-71.40791052299994,-45.378727721999965],[-71.38935868399992,-45.37076955099991],[-71.37432084199992,-45.35919403099995],[-71.35075638899994,-45.332839049999905],[-71.33432328399996,-45.322813822999954],[-71.31153397699995,-45.29945607499984],[-71.31716670699988,-45.267209980999965],[-71.33861242799992,-45.234240416999825],[-71.36326208599993,-45.20881561299998],[-71.39540482599995,-45.18597463],[-71.4489416099999,-45.15899953199995],[-71.4871821699999,-45.12334279399988],[-71.49705236899987,-45.11166392],[-71.5151391199999,-45.06577524799994],[-71.55518835499996,-45.00583058699995],[-71.58872635899988,-44.978132018999915],[-71.62396968599995,-44.974928079999934],[-71.66169348199992,-44.9791655479999],[-71.70236283399994,-44.97368784599991],[-71.71864090999989,-44.96438608799998],[-71.74484086099991,-44.94061492999984],[-71.75987870299988,-44.93182993599994],[-71.78246130399992,-44.92738576299985],[-71.8056640219999,-44.92924611399985],[-71.82845332899993,-44.935240579999956],[-71.84974401899989,-44.94340545699998],[-71.88943151899988,-44.94722951299984],[-71.92948075399997,-44.93379363999996],[-71.96968501799998,-44.91529347799993],[-72.00983760599989,-44.90454477999984],[-72.0532974849999,-44.90681854299986],[-72.0735029709999,-44.90216766399988],[-72.08094437699992,-44.88656138099985],[-72.07484655799996,-44.85317840599997],[-72.07412308799988,-44.837055358999976],[-72.08874751899994,-44.78279510499995],[-72.07624182099994,-44.76078094399987],[-72.04781978399993,-44.75478647799992],[-72.00983760599989,-44.76553517599996],[-71.98761673999986,-44.77245981799993],[-71.85454992799991,-44.79095998099987],[-71.83139888499991,-44.78816945399991],[-71.81320878099986,-44.77855763699999],[-71.80101314299995,-44.76677541099989],[-71.78690547699992,-44.757266947],[-71.76266922999994,-44.75437306699992],[-71.73998327699988,-44.757680359],[-71.6726488859999,-44.77855763699999],[-71.63120438699994,-44.780004576999985],[-71.54040889499996,-44.750445658999865],[-71.4971040449999,-44.7429009],[-71.45710648599993,-44.75220265699993],[-71.37886836799996,-44.79189015700001],[-71.33597692899991,-44.80160532599996],[-71.29783972199994,-44.79561086000001],[-71.26280310099992,-44.77711069799999],[-71.23815344299993,-44.747861836999945],[-71.2310220949999,-44.70951792399994],[-71.23929032399994,-44.674377949999894],[-71.24063391099992,-44.65815154999988],[-71.23489782699994,-44.63882456399993],[-71.21340043099991,-44.6070952349999],[-71.1993961179999,-44.591695657999836],[-71.1888024499999,-44.584771015999934],[-71.16725337799997,-44.58415089899988],[-71.14735795199996,-44.58084360699996],[-71.13164831499998,-44.57061167399989],[-71.12239823399997,-44.54942433699985],[-71.12265661699996,-44.53030405699985],[-71.13061478799992,-44.52038218199995],[-71.14265539599997,-44.512320657999865],[-71.15541947499993,-44.498574727],[-71.16265417499991,-44.48141815199996],[-71.16565140899993,-44.46632863299996],[-71.17133581499988,-44.45216929099992],[-71.18632198099994,-44.43800994899988],[-71.20978308099993,-44.427571308999845],[-71.23500117999997,-44.42385060599983],[-71.28683264199994,-44.42333384199998],[-71.43783117699988,-44.40152638699986],[-71.64319331899989,-44.402559915999845],[-71.69435298699996,-44.39336151200003],[-71.7378128659999,-44.39336151200003],[-71.78070430599992,-44.40266326899987],[-71.82204545099998,-44.40318003399999],[-71.86059606999996,-44.37713511099993],[-71.86416174299993,-44.35915171299993],[-71.8475736089999,-44.348092955999846],[-71.8249910079999,-44.34065154999992],[-71.81041825399993,-44.33362355499982],[-71.80401037699995,-44.3148133349999],[-71.81165848799995,-44.30055063899992],[-71.82395747899992,-44.28680470799989],[-71.83181229699994,-44.27016489699987],[-71.82793656499987,-44.25207814599986],[-71.8062841389999,-44.22251922599983],[-71.80509558099996,-44.2051559449999],[-71.8124853119999,-44.18779266299997],[-71.84405961099995,-44.14531463599985],[-71.85873571799993,-44.10779754699995],[-71.83522294099996,-44.0943616739999],[-71.79569047099992,-44.08599009199983],[-71.76220414199992,-44.06407928499987],[-71.74525991399994,-44.04499811699992],[-71.66959997599994,-43.95979624399985],[-71.65926468999996,-43.93974578899997],[-71.65988480699991,-43.92630991599994],[-71.71579870699992,-43.858717141999875],[-71.72871781499992,-43.84621144599997],[-71.73688268999993,-43.84176727299987],[-71.75579626499987,-43.8345325719999],[-71.76184240799992,-43.82843475299993],[-71.76427119999995,-43.817272643999914],[-71.76080887899994,-43.809624531999845],[-71.75564123499993,-43.80269988999986],[-71.75295406099991,-43.79360483799996],[-71.75502111899996,-43.77138397199985],[-71.7620491139999,-43.768903503999965],[-71.77553666199994,-43.775621438999806],[-71.79713741099991,-43.780789082999895],[-71.8154825439999,-43.774381204999955],[-71.8192032469999,-43.75805145299992],[-71.81341548699993,-43.73944793699995],[-71.80323522999996,-43.72601206399992],[-71.78638871299998,-43.71722707099984],[-71.74432409699995,-43.705238138999874],[-71.72572058099989,-43.697383321999936],[-71.70918412299991,-43.6843608599999],[-71.70365474499991,-43.671648457999844],[-71.71068273999992,-43.614080911999906],[-71.71430008999991,-43.60219533299997],[-71.72375687699989,-43.59475392599994],[-71.7661832279999,-43.57201629699988],[-71.77274613499989,-43.56746877099994],[-71.77884395399994,-43.56147430399999],[-71.78349483299989,-43.55537648499994],[-71.7897993569999,-43.549382018999914],[-71.80070308499998,-43.54421437499991],[-71.82344071499995,-43.54214731899987],[-71.85113928299998,-43.54256072999988],[-71.87382523599996,-43.53894337999989],[-71.88152502499993,-43.524473978999865],[-71.8782694099999,-43.519202983000014],[-71.85878739499995,-43.49925587999991],[-71.85863236499992,-43.498635762999925],[-71.85832230699992,-43.47744842499996],[-71.86881262199998,-43.462565612999924],[-71.8861242269999,-43.45336720799985],[-71.90622635899987,-43.44923309399982],[-71.91650996899993,-43.45088673899987],[-71.92694860899988,-43.45481414799984],[-71.93733557199991,-43.45688120499997],[-71.94741247599995,-43.45316050199997],[-71.95511226499994,-43.44354868599987],[-71.95077144399994,-43.43858774799983],[-71.9420898029999,-43.434246927999844],[-71.93676713099995,-43.426702168999896],[-71.94105627499991,-43.39838348399981],[-71.94095292199998,-43.39176890099999],[-71.93485510299993,-43.38277720199994],[-71.9274136969999,-43.378126322999975],[-71.91955887899988,-43.37430226699986],[-71.9123241779999,-43.367791035999886],[-71.90917191599996,-43.35972951299998],[-71.90736324099996,-43.32965382899992],[-71.90173050999994,-43.322005716999854],[-71.88943151899988,-43.31921519],[-71.86400671399988,-43.317561543999844],[-71.82437088999991,-43.30340220199997],[-71.80509558099996,-43.29999155699987],[-71.76086055499997,-43.306916198999936],[-71.7506802979999,-43.295340677999896],[-71.74840653499987,-43.27704722099992],[-71.74954341599997,-43.259167174999874],[-71.7514037679999,-43.25100229899994],[-71.75698482299988,-43.23529266299996],[-71.75765661699998,-43.22537078899998],[-71.7551244709999,-43.21637908999993],[-71.74566768499992,-43.199222513999885],[-71.74298050899998,-43.19012746199982],[-71.75016353399994,-43.17245412199982],[-71.7701623129999,-43.161395364999905],[-71.86188798099991,-43.13318003399985],[-72.00983760599989,-43.12036427799995],[-72.05443436699991,-43.10537811299989],[-72.09608557199994,-43.07850636799998],[-72.12931351799998,-43.042229512],[-72.14853715099989,-42.99871795599991],[-72.14212927199995,-42.96368133499989],[-72.11949499599989,-42.898569030999894],[-72.11267370599995,-42.863842467999945],[-72.12125199399989,-42.719665221999875],[-72.12564449099997,-42.70385223399997],[-72.13985550999993,-42.669849140999844],[-72.14145747899997,-42.6556897989998],[-72.13246577999993,-42.631711934999885],[-72.13158728099997,-42.62406382199989],[-72.13463618999992,-42.61476206499988],[-72.14543656399992,-42.600499368999905],[-72.14843379799996,-42.592644550999864],[-72.14321447799995,-42.55709116599982],[-72.12264725799994,-42.529909363],[-72.09282995699996,-42.51078908199992],[-72.04192867099994,-42.49104868599987],[-72.03918981999996,-42.48123016399989],[-72.04575272699995,-42.4698613489999],[-72.07520829299997,-42.4337911989999],[-72.07665523299997,-42.423352558999866],[-72.06068721599992,-42.368885599999956],[-72.06988562099991,-42.349972024999836],[-72.12156205199993,-42.313023376999894],[-72.13370601399996,-42.28759857199988],[-72.1247143159999,-42.26331064899989],[-72.1030102139999,-42.24088307699989],[-72.0771719969999,-42.22124603299994],[-72.05893021599994,-42.19757822699992],[-72.05138545799988,-42.170499775999865],[-72.03991328999987,-42.14466155999985],[-72.00983760599989,-42.12471445699983],[-71.97748815999991,-42.12533457399981],[-71.96136511299994,-42.14486826499998],[-71.94803259399993,-42.16729583699989],[-71.92379634699992,-42.17690765399999],[-71.90948197499995,-42.17225677499985],[-71.90080033399997,-42.16305836999984],[-71.89372066299995,-42.152619730999895],[-71.88426387599989,-42.14424814899983],[-71.87180985599991,-42.139700621999886],[-71.80132320199994,-42.13029551199993],[-71.77310787,-42.11996022599985],[-71.74944006399994,-42.10435394299998],[-71.73626257399988,-42.08389007599984],[-71.73956986599987,-42.03190358499991],[-71.74385900899995,-42.02435882599987],[-71.76251420199992,-42.007408955999864],[-71.7692595689999,-41.9996066219999],[-71.78065262899995,-41.98642832399986],[-71.77987748199993,-41.97226898199999],[-71.77507157499991,-41.95635264099997],[-71.77439978099994,-41.939196064999834],[-71.79403682499998,-41.86746917699983],[-71.81465572099998,-41.83780690499988],[-71.83894364499989,-41.81331227699991],[-71.85687536699993,-41.78613047299992],[-71.85858068899992,-41.74861338299985],[-71.86896765199992,-41.71554046599985],[-71.9259150799999,-41.65301198399986],[-71.92596675699991,-41.62293629999989],[-71.91185909099997,-41.610223896999926],[-71.8777009689999,-41.59492767299988],[-71.86348994999993,-41.584489033999844],[-71.85325801599996,-41.56733245899988],[-71.85687536699993,-41.55596364299989],[-71.86808915299989,-41.54511159299984],[-71.8806982019999,-41.52971201499986],[-71.88808793199993,-41.51276214599994],[-71.88870804899997,-41.500153097],[-71.88121496699995,-41.47038747099985],[-71.87883785099989,-41.451060485999804],[-71.87981970299998,-41.43669443699997],[-71.88431555199989,-41.42294850699985],[-71.89232539899987,-41.405378519999886],[-71.90395259599993,-41.36765472399992],[-71.90224727499998,-41.33592539499999],[-71.8777009689999,-41.269779561999925],[-71.87336014799993,-41.24921234199993],[-71.87594396999992,-41.23360605899991],[-71.88844966699992,-41.20032643599987],[-71.88943151899988,-41.17975921599988],[-71.8814216719999,-41.17262786799984],[-71.87134476799989,-41.166736754999846],[-71.86586706599988,-41.150407002999984],[-71.86261144999992,-41.11464691199997],[-71.85398148699994,-41.07888681999996],[-71.85284460499993,-41.05718271899997],[-71.86715897699995,-41.02018239399983],[-71.86740158899994,-41.01023528699996],[-71.86767574099989,-40.99899505599987],[-71.85144934099998,-40.9576539099999],[-71.85144934099998,-40.938326924999885],[-71.85987259899994,-40.91341888399991],[-71.87087967999993,-40.89574554499991],[-71.91067053299994,-40.85006357899997],[-71.92121252499993,-40.82773935899992],[-71.95557735299988,-40.72035573299986],[-71.94963456199994,-40.70929697699994],[-71.87336014799993,-40.647078551999854],[-71.85310298699991,-40.61638275199991],[-71.84772863799995,-40.57958913099982],[-71.85093257699992,-40.570287373999975],[-71.86059606999996,-40.55943532299993],[-71.86183630399997,-40.549720153999985],[-71.85878739499995,-40.5423821009999],[-71.84085567299991,-40.51602711999985],[-71.80416540599991,-40.426420185999966],[-71.79641394099991,-40.414534606999865],[-71.78473506699993,-40.41133066799989],[-71.74225703999991,-40.42083913199997],[-71.72928625599988,-40.421355895999824],[-71.71905432199989,-40.41298431399992],[-71.67848832199988,-40.34022389699987],[-71.67404414899997,-40.32410085099998],[-71.67368241499989,-40.313765563999965],[-71.67518102999989,-40.303947042],[-71.67926346899989,-40.295265401999934],[-71.68670487499992,-40.28854746499984],[-71.69874548399987,-40.28275970399994],[-71.70546341999992,-40.28193288199992],[-71.71848588099994,-40.2862737019999],[-71.72391190599993,-40.28999440499983],[-71.72572058099989,-40.295265401999934],[-71.72995804899995,-40.29857269299994],[-71.74267045099992,-40.29650563599989],[-71.75006018099992,-40.29154469899994],[-71.77073075399994,-40.26715342199991],[-71.80194331899992,-40.24234873499988],[-71.81599930899995,-40.227155862999936],[-71.82375077399993,-40.210102641],[-71.82235550999988,-40.2028679399999],[-71.81357051599988,-40.188191833999866],[-71.81207189999996,-40.184677835999906],[-71.81672277899995,-40.17454925499986],[-71.81646439599986,-40.16442067499982],[-71.80902298999993,-40.133828226999896],[-71.8047855229999,-40.124629821999974],[-71.80287349499989,-40.11605153399986],[-71.80711096199991,-40.10840342199997],[-71.81455236799994,-40.09961842799989],[-71.81403560399991,-40.092900492999874],[-71.80070308499998,-40.07967132599988],[-71.76675166899994,-40.07688079799992],[-71.72168981999991,-40.09383066900001],[-71.68370764199996,-40.098998311999836],[-71.67094356299992,-40.060757750999926],[-71.6731139739999,-40.05031911199998],[-71.6807620859999,-40.029131774999854],[-71.68282914299996,-40.01807301899993],[-71.68050370299991,-40.00949473099982],[-71.67440588399995,-40.00443043999992],[-71.66727453599992,-40.00050303099995],[-71.6620552169999,-39.99512868299982],[-71.62484818599997,-39.93104990699999],[-71.61663163299997,-39.90986256899993],[-71.621179159,-39.895083109999824],[-71.63451167799994,-39.88350758899996],[-71.66923824099987,-39.85921966599997],[-71.6793668219999,-39.84785085099989],[-71.68458614099993,-39.83348480299989],[-71.68691157999987,-39.81157399499993],[-71.69197587099993,-39.78997324699995],[-71.71047603399995,-39.74749521899983],[-71.71435176699993,-39.72630788199987],[-71.70877071199989,-39.708427836],[-71.69879715999988,-39.690237731999865],[-71.6940429279999,-39.673494567999825],[-71.71605708899996,-39.644762470999815],[-71.7187442629999,-39.62336842799998],[-71.71435176699993,-39.601354267999824],[-71.70541174399996,-39.58357757499997],[-71.68975378399993,-39.56838470499994],[-71.67740311799989,-39.568488057999886],[-71.64109884299994,-39.59999900099996],[-71.63239294499994,-39.6075554399999],[-71.61782019099991,-39.61665049299996],[-71.60076696899995,-39.61954437199986],[-71.57642736899993,-39.614686787999844],[-71.55498164999992,-39.61282643699984],[-71.53668819199996,-39.615720317],[-71.51999670399991,-39.61499684600001],[-71.50351192299993,-39.60166432699998],[-71.4956571049999,-39.56559417699998],[-71.54195918799988,-39.53231455499994],[-71.51565588399993,-39.50130869499992],[-71.50144486499997,-39.488286233999986],[-71.48247961499992,-39.46110443099991],[-71.47043900599994,-39.44911549899985],[-71.46165401199997,-39.4338192749998],[-71.4776220299999,-39.4021932979999],[-71.4765368249999,-39.38296966599988],[-71.46056880799993,-39.36715667699988],[-71.43907141199992,-39.35599456799986],[-71.42020951399991,-39.34214528399997],[-71.41204463699998,-39.317960713999824],[-71.40196773299994,-39.23600189199993],[-71.41266475499995,-39.100609639999945],[-71.4310098879999,-39.02598887099996],[-71.43023474199993,-38.99911712699998],[-71.41576533999998,-38.93534840899994],[-71.39990067499987,-38.910543721],[-71.37070349199993,-38.88801279699999],[-71.27975297099994,-38.85018564799991],[-71.25375972499998,-38.83271901499997],[-71.2409956459999,-38.81845631899998],[-71.23603470899995,-38.81163502999985],[-71.2280248619999,-38.80884450299989],[-71.15283565299987,-38.79881927499996],[-71.1368676349999,-38.79220469099987],[-71.07865413399988,-38.757064717999825],[-71.0484234219999,-38.74662607799996],[-71.00997615599994,-38.74631601999989],[-70.96723974699992,-38.750760192999905],[-70.94504471899998,-38.74724619599993],[-70.92949011299996,-38.73577402699992],[-70.91535660899991,-38.71220957499992],[-70.90954300999994,-38.70642181399995],[-70.87936397299987,-38.69463958699994],[-70.87383459499995,-38.691435648999885],[-70.87233597799994,-38.681617126],[-70.8769868569999,-38.67500254299992],[-70.88298132299994,-38.66880137099984],[-70.88579768899989,-38.66053314199989],[-70.88510005799992,-38.649474385999966],[-70.88342057299994,-38.64306650799985],[-70.87300777199991,-38.62777028399997],[-70.84773799699994,-38.59996836400002],[-70.8375835779999,-38.58446543399991],[-70.8343021249999,-38.564414977999874],[-70.84866817299991,-38.52762135899988],[-70.87982906099998,-38.50302337599997],[-70.91729447499995,-38.48297292099994],[-70.95047074399989,-38.45940846799984],[-70.97375097699998,-38.424681904999986],[-71.01669409199988,-38.26469167099992],[-71.019743001,-38.234305927999884],[-71.01788265,-38.20371348099995],[-71.00896846599997,-38.170330504999896],[-71.00865840699997,-38.16764333099995],[-71.00896846599997,-38.16505950899996],[-71.00997615599994,-38.162268981999986],[-71.01614241299987,-38.14369709399999],[-71.02305029299988,-38.12289154099999],[-71.02351538099992,-38.10459808399984],[-71.00997615599994,-38.08785491899998],[-71.00741817199994,-38.08227386399987],[-71.00664302599992,-38.0766928099999],[-71.00741817199994,-38.07100840299991],[-71.00997615599994,-38.06553070000001],[-71.03744217999991,-38.036591897999955],[-71.04645971699995,-38.02026214599992],[-71.05204077199997,-37.999281514999915],[-71.06113582399992,-37.978404235999946],[-71.08759415699993,-37.94016367599995],[-71.0949063729999,-37.89737558999984],[-71.13325028499992,-37.838464456999915],[-71.1850300699999,-37.70606943699994],[-71.19226477099997,-37.660904235999965],[-71.19076615499995,-37.64002695799982],[-71.18389318899997,-37.62586761499995],[-71.17242102099996,-37.614498798999875],[-71.15717647399993,-37.60250986699982],[-71.1330952559999,-37.590624287999795],[-71.12792761199998,-37.58442311599998],[-71.12730749599993,-37.5726408899999],[-71.13955480999994,-37.55486419699987],[-71.14172521999993,-37.543908792999986],[-71.1364025469999,-37.52437510199998],[-71.12084794099988,-37.48634124699986],[-71.117695679,-37.46649749799986],[-71.12307002799997,-37.44324310299993],[-71.1364025469999,-37.4250529989999],[-71.16828690599993,-37.39156667099989],[-71.19474523899993,-37.34350758899994],[-71.20461543799993,-37.31539560899991],[-71.2055972899999,-37.29265797899993],[-71.1972257079999,-37.2748812869999],[-71.15758988499994,-37.23571055099994],[-71.14647945199994,-37.21483327199996],[-71.14549759999994,-37.1954029339999],[-71.14797806799993,-37.1758692429998],[-71.14761633299993,-37.15478525799996],[-71.13929642799988,-37.13328786199983],[-71.12513708499992,-37.120058694999926],[-71.08911861199994,-37.10341888499991],[-71.12689408399989,-37.07758066799998],[-71.13955480999994,-37.06166432699996],[-71.14864986199991,-37.01350189199988],[-71.15603959199991,-37.002753193999865],[-71.18740718599994,-36.98683685299984],[-71.2071475839999,-36.9723674519999],[-71.20068802999995,-36.971437275999946],[-71.18110266199994,-36.97526133199989],[-71.16146561799991,-36.97546803799993],[-71.14332718899996,-36.96544281],[-71.13567907799998,-36.95149017399993],[-71.1401749269999,-36.937537536999926],[-71.16906205299995,-36.921931253999894],[-71.16854528799993,-36.914386494999945],[-71.1636360279999,-36.90632497099986],[-71.16105220499989,-36.89878021299991],[-71.16053544199994,-36.89040862999984],[-71.1585200609999,-36.88689463299988],[-71.15877844199989,-36.88265716499993],[-71.16523799699993,-36.87211517399996],[-71.17309281499986,-36.86612070699992],[-71.18280798399991,-36.86291676799995],[-71.1916446539999,-36.85836924199984],[-71.19686397399991,-36.84824066199988],[-71.19515865099996,-36.839145608999985],[-71.18895747999997,-36.83046396899985],[-71.18177445499992,-36.822402445999934],[-71.17671016499993,-36.814857686],[-71.15154374199992,-36.76049407900001],[-71.14684118699992,-36.74106374099986],[-71.1489082439999,-36.70396006199988],[-71.14534256999991,-36.688250426999986],[-71.1299429939999,-36.67688161199992],[-71.10999589099993,-36.67853525799987],[-71.0907722579999,-36.68949066099985],[-71.07302140299996,-36.69682871499992],[-71.05744095899992,-36.68763030999985],[-71.05532222599996,-36.67130055699998],[-71.06997249399993,-36.603811136999866],[-71.06891312699995,-36.5663974],[-71.06142004499992,-36.52040537499998],[-71.04328161599997,-36.48433522499998],[-71.02781930399995,-36.48116838999998],[-71.00997615599994,-36.47751393599985],[-70.9896414799999,-36.48330169699991],[-70.97103796399995,-36.48547210699982],[-70.9531579179999,-36.482474873999976],[-70.93496781399993,-36.4725529989999],[-70.92331477899998,-36.456740009999905],[-70.91626094599988,-36.419326272999925],[-70.90778601099996,-36.40516693099998],[-70.89037105399991,-36.4004127],[-70.86858943799993,-36.40465016699986],[-70.82882442199991,-36.41984303799988],[-70.82032364999992,-36.424597269999964],[-70.81432918399989,-36.42997161899993],[-70.80719783599994,-36.43338226299994],[-70.71865026899988,-36.41457204199993],[-70.70890926099995,-36.403203226999864],[-70.70859920299995,-36.379948833000014],[-70.7135859789999,-36.36816660599984],[-70.72911474599994,-36.346875914999856],[-70.73221533199995,-36.33426686599992],[-70.72968318699989,-36.325481872000026],[-70.71265580299996,-36.30026377299997],[-70.71159643599995,-36.29168548499986],[-70.71376684599994,-36.283520609999925],[-70.71487788899995,-36.27525238099997],[-70.71051123099997,-36.265847269999924],[-70.70312150099997,-36.26005950899996],[-70.69389725799995,-36.256648863999835],[-70.67503535999992,-36.25241139699989],[-70.66162532599988,-36.24455657899995],[-70.62467667699994,-36.20517913899994],[-70.61994828299996,-36.20228525799996],[-70.60865698299997,-36.19794443799998],[-70.60436783899993,-36.19463714599989],[-70.6013189299999,-36.188125914999915],[-70.60028540099992,-36.175206808],[-70.59832169599989,-36.16962575299989],[-70.58847733599991,-36.15019541399991],[-70.58142350299991,-36.14316741899999],[-70.56832352799992,-36.139033304999884],[-70.54530167599998,-36.14275400799998],[-70.49912878499993,-36.16363128599986],[-70.47114599599993,-36.16249440499986],[-70.4514831139999,-36.152262471999876],[-70.43510168499995,-36.136346130999854],[-70.43074804399996,-36.12940211799996],[-70.42272517999996,-36.116605732999886],[-70.41068456999992,-36.08373952199986],[-70.40430253199989,-36.07443776399984],[-70.38693924999987,-36.05872812899994],[-70.38032466699994,-36.046015727],[-70.38368363499987,-36.030512796999986],[-70.41272578999997,-35.96891448999986],[-70.41257076099993,-35.95733896899982],[-70.40502600099995,-35.938322041999854],[-70.3995999759999,-35.93274098699992],[-70.39146093799988,-35.92736663799995],[-70.38482051599995,-35.92116546599998],[-70.38368363499987,-35.913207296],[-70.39073746799997,-35.90586924199984],[-70.41236405399988,-35.90814300499994],[-70.42078731299995,-35.90380218499996],[-70.42024471099997,-35.868352151999844],[-70.35732865399989,-35.8152287799999],[-70.36156612199994,-35.78308603999987],[-70.37639725799997,-35.76138193799987],[-70.42153662099994,-35.659682718999846],[-70.42272517999996,-35.64386973099994],[-70.41226070199994,-35.60738616999993],[-70.41197648199994,-35.58743906599999],[-70.41810013899993,-35.54754486099996],[-70.40822993999993,-35.50620371499984],[-70.41642065499988,-35.49111419600001],[-70.43107092299994,-35.47778167699991],[-70.44546280999995,-35.46114186599989],[-70.46918229199991,-35.39468597399984],[-70.4717661139999,-35.37938974999997],[-70.46037146099991,-35.37101816799991],[-70.44060522499993,-35.3667807],[-70.4283837489999,-35.357065531],[-70.43975256399992,-35.332157490999926],[-70.47528011099988,-35.3140707399999],[-70.52070369499998,-35.309626566999924],[-70.5604170339999,-35.29836110499986],[-70.5788913579999,-35.25970713299986],[-70.54289872299992,-35.209270934999864],[-70.38662919099997,-35.1666895539998],[-70.36851660199994,-35.09713307699998],[-70.37244657199994,-35.027388544999965],[-70.37259903999987,-35.024682718999976],[-70.35371130399992,-34.95326588899981],[-70.27671341999991,-34.79823659299997],[-70.28069250499999,-34.78635101299994],[-70.29283646699989,-34.77756601999987],[-70.30751257399996,-34.763096618999924],[-70.31629756699996,-34.745629983999976],[-70.30945043999989,-34.739738870999886],[-70.29312068699997,-34.7365349329999],[-70.27314774599992,-34.727026468999924],[-70.25221879099993,-34.695813903999934],[-70.24242610699989,-34.619436136999894],[-70.22782751499992,-34.58532969099993],[-70.20919816099988,-34.56796640999991],[-70.1677795009999,-34.53840749099997],[-70.15072627799998,-34.51815032999997],[-70.12837622099991,-34.469471129999945],[-70.11429439299988,-34.44735361699985],[-70.0675788989999,-34.414590760000024],[-70.05869055199997,-34.39578053799992],[-70.05943986099996,-34.37293955499983],[-70.06365148899991,-34.343690693999875],[-70.06450415099994,-34.31351165799997],[-70.05757950899996,-34.291187439],[-70.04817621499987,-34.28346179499991],[-70.04034541799987,-34.277028096999956],[-69.98923742799991,-34.2690699259999],[-69.96820511999995,-34.27000010199985],[-69.94748286999996,-34.27382415799998],[-69.9115677499999,-34.28457285599991],[-69.90593501799995,-34.280748799999955],[-69.90484981299997,-34.27382415799998],[-69.90229182999988,-34.26865651499989],[-69.83276118999999,-34.24323170999996],[-69.8288854579999,-34.23330983399988],[-69.83730871699993,-34.20933196999995],[-69.86211340399987,-34.170161234999924],[-69.86859879599993,-34.156725361999875],[-69.8732496749999,-34.13998219799991],[-69.87237117499991,-34.130990497999974],[-69.86844376699989,-34.122618917],[-69.86397375599995,-34.107529398999986],[-69.85544714399995,-34.03115163199986],[-69.85580887899994,-33.98474619499994],[-69.8656015629999,-33.95766774499997],[-69.88428259299988,-33.95415374800001],[-69.90030228699993,-33.95901133199986],[-69.90955236799994,-33.95570403999986],[-69.90805375199994,-33.9279021199999],[-69.89864864099988,-33.88893808999991],[-69.89727921599989,-33.87136810299993],[-69.91477168799995,-33.793543395999805],[-69.9142549239999,-33.771942647999836],[-69.90650345899991,-33.76026377399994],[-69.8725520429999,-33.737422789999854],[-69.8600463459999,-33.72636403399992],[-69.85968461199991,-33.71137786799987],[-69.88678889999994,-33.67871836299999],[-69.89536718799988,-33.66228525799984],[-69.89392024799989,-33.64275156699992],[-69.87293961599991,-33.586010843999986],[-69.87376643899992,-33.57546885199993],[-69.87707373099991,-33.566787210999976],[-69.87883072899989,-33.55800221699981],[-69.87529089399993,-33.547356871999895],[-69.86927058999989,-33.54291269999999],[-69.84927181099997,-33.53650482099995],[-69.84146866899994,-33.53278411799985],[-69.83813553899995,-33.52110524499987],[-69.83415645299996,-33.474596455999844],[-69.83090083799996,-33.45816335099995],[-69.82059138999998,-33.442867126999914],[-69.79446895399988,-33.41465179399985],[-69.78674332699998,-33.39925221799996],[-69.78767350299992,-33.37940846699987],[-69.80568273899993,-33.34426849399992],[-69.81389929299996,-33.28949147599994],[-69.8368436289999,-33.265720316999975],[-69.86968400099991,-33.24959726999998],[-69.90528906299997,-33.238228453999824],[-69.94055822799996,-33.24287933399987],[-69.98386307799993,-33.29445241299989],[-70.01001135299992,-33.29910329199985],[-70.0411205659999,-33.23895192499991],[-70.05179174799989,-33.225309345999904],[-70.08569148799998,-33.20133148199989],[-70.10083268199992,-33.18686208099986],[-70.10946264699996,-33.16960215199987],[-70.10977270499995,-33.149448342999804],[-70.09217687999995,-33.09177744599991],[-70.09548417199997,-33.07131357899986],[-70.10527685599993,-33.0548804729999],[-70.10610066299995,-33.05259252099995],[-70.11119380799994,-33.03844736700002],[-70.1029514169999,-33.01829355899986],[-70.08892126499998,-33.008268330999925],[-70.05649430399987,-33.00134368899985],[-70.04248998999994,-32.99266204799997],[-70.03424759899991,-32.97695241299992],[-70.02427404899993,-32.93478444399996],[-70.01714270099987,-32.91659433999983],[-70.00016699299997,-32.88899912500001],[-70.00021866899996,-32.87659678099986],[-70.0143521729999,-32.86750172999989],[-70.0367797449999,-32.85975026399997],[-70.05432389399996,-32.85075856499992],[-70.08726761899993,-32.82326670299996],[-70.14002925699995,-32.768282978999835],[-70.15573889199993,-32.738414002],[-70.18044022699993,-32.630203552],[-70.18108618199992,-32.60756927499986],[-70.17876074299997,-32.58896575999999],[-70.1758926999999,-32.58049082499981],[-70.17057002799996,-32.5727393589999],[-70.14710892799988,-32.57211924299983],[-70.13772965499993,-32.56901865599988],[-70.15788346399992,-32.54245696999996],[-70.15979549199994,-32.52519704199996],[-70.15814184599988,-32.506490172999975],[-70.16082902099993,-32.485302835999846],[-70.17248205699988,-32.46494232199998],[-70.18852758899993,-32.45357350599991],[-70.22725907399987,-32.43465993299987],[-70.24531998699987,-32.40396413100002],[-70.24237443099989,-32.330273538999904],[-70.25611904399997,-32.31427788099998],[-70.26919449899995,-32.29906097399984],[-70.2925005699999,-32.29099945099985],[-70.30970882199998,-32.288312275999914],[-70.32180110799995,-32.280147399999976],[-70.32973343899991,-32.255549418],[-70.32978511599991,-32.24686777799994],[-70.32691707399994,-32.228781025999936],[-70.32725296999993,-32.21968597399987],[-70.33082360899996,-32.20958811899996],[-70.33130957099992,-32.20821380599995],[-70.34309179699994,-32.18692311599996],[-70.3455205899999,-32.17472747799994],[-70.34391861999995,-32.16573577899999],[-70.33686478699994,-32.14919931999982],[-70.3352369799999,-32.140000914999916],[-70.3389576829999,-32.13338633199983],[-70.35559749399994,-32.1226376339999],[-70.35991247599992,-32.11302581799997],[-70.35924068199992,-32.093698831999845],[-70.36120438699996,-32.0858440139999],[-70.36805151399992,-32.07705902099982],[-70.38461381099992,-32.061969502999915],[-70.38908382199995,-32.053081155999884],[-70.38748185299991,-32.04171234099991],[-70.37332250999995,-32.03039520300001],[-70.35231604099994,-32.03334075899984],[-70.31004471899988,-32.047706807999845],[-70.28469742899996,-32.04677663199989],[-70.27542150899987,-32.03778493299994],[-70.26720495699993,-32.00093963699993],[-70.25772233099994,-31.986160175999913],[-70.24767126499991,-31.974584655999877],[-70.24170263699996,-31.96145884199999],[-70.24446732699994,-31.94223520899997],[-70.25568111199989,-31.925698750999974],[-70.27500809799994,-31.906991882999904],[-70.29624711199992,-31.89097218799995],[-70.31332617299995,-31.882083841999844],[-70.35722530099989,-31.87650278699992],[-70.39399308299997,-31.877639668999915],[-70.42828039599999,-31.87009491],[-70.46414383999993,-31.83826222799992],[-70.47522843399994,-31.820072123999893],[-70.4839875899999,-31.79764455199989],[-70.48848343899994,-31.773873392999842],[-70.48631302899994,-31.73118865999984],[-70.49677750699989,-31.71454884800001],[-70.52721492499995,-31.68426645899997],[-70.58026078299989,-31.592282409999893],[-70.58976924699996,-31.567684428],[-70.59137121599991,-31.549597675999895],[-70.58137182599998,-31.50567270899987],[-70.57790950599994,-31.468879088999866],[-70.57899470999993,-31.431982116999848],[-70.57537735999995,-31.412965189999877],[-70.55778153499998,-31.381752623999986],[-70.55465511099993,-31.36294240299998],[-70.55990026899994,-31.34165171299999],[-70.56721248399992,-31.32304819699985],[-70.5689694829999,-31.30423797599984],[-70.5468002929999,-31.264550475999858],[-70.54289872299992,-31.246773782999906],[-70.54336381099995,-31.208119812],[-70.54140010599991,-31.1881727089999],[-70.53592240399993,-31.172566426999865],[-70.47980179899987,-31.09670542399985],[-70.46778702799992,-31.089367370999938],[-70.44809830699995,-31.097635598999897],[-70.44060522499993,-31.11882293699986],[-70.43561845,-31.141353861999963],[-70.42339697299997,-31.15375620499985],[-70.40864335099994,-31.150035501999923],[-70.39306290699992,-31.13763315899996],[-70.38089310799992,-31.12161346399999],[-70.3723923339999,-31.09215789799991],[-70.36249629799991,-31.073037617999915],[-70.33978450599994,-31.0417217],[-70.32094844599993,-31.033660175999913],[-70.27831538899994,-31.039447936999892],[-70.26655900099993,-31.036450703999872],[-70.26759252999992,-31.023841653999852],[-70.27986568299997,-31.01030242899996],[-70.30859777799995,-30.988184916999955],[-70.32513423699996,-30.971648457999958],[-70.335211141,-30.956042174999837],[-70.3392160649999,-30.93816212999995],[-70.31947566799991,-30.800806171999852],[-70.30503210499998,-30.765459492999852],[-70.30007116799995,-30.758121439999854],[-70.28229447499993,-30.737760924999915],[-70.27617081699995,-30.72556528699999],[-70.2766100669999,-30.71564341299991],[-70.27934891799993,-30.70561818399989],[-70.27986568299997,-30.69311248799997],[-70.27598994999991,-30.673062031999848],[-70.27020218899995,-30.65724904399994],[-70.25077185099994,-30.626553242999904],[-70.23539811199998,-30.591619975],[-70.21710465599992,-30.51513885499992],[-70.19697668499992,-30.486820169999845],[-70.17969091899994,-30.4771050009999],[-70.16377457799993,-30.47018035899983],[-70.15119136599988,-30.45974171899988],[-70.14393082699993,-30.439587910999908],[-70.14871089699992,-30.418710631999925],[-70.17377396699993,-30.382227070999917],[-70.17341223199995,-30.364657084999845],[-70.14692806099993,-30.35390838699983],[-70.06427160699987,-30.389255065999834],[-70.030191,-30.397109882999956],[-69.99445674599991,-30.388118184],[-69.9645877689999,-30.374785664999973],[-69.9380260829999,-30.355562031999963],[-69.91213619099995,-30.329517109999898],[-69.90280859399991,-30.312670593],[-69.8998630369999,-30.294377135999852],[-69.89808020099991,-30.256549987999872],[-69.89402360099993,-30.238049824999845],[-69.89074214699994,-30.228954772999955],[-69.8862462979999,-30.220996602],[-69.87707373099991,-30.213141784999877],[-69.85741084899988,-30.205493672999975],[-69.84896175099996,-30.199085794999856],[-69.8357584229999,-30.16187876299993],[-69.84973689899991,-30.126635436999877],[-69.88071691999991,-30.09976369199995],[-69.91867325899992,-30.08777476],[-69.9576631269999,-30.092735696999867],[-69.97324357099987,-30.08942840499986],[-69.9803749189999,-30.07247853599986],[-69.97562068699996,-30.058629251999978],[-69.94128169799987,-30.0130506389999],[-69.92797501699992,-29.976773782999853],[-69.92218725699988,-29.93956675199985],[-69.9155985109999,-29.80562143999985],[-69.92908605999993,-29.718288268999828],[-69.92935283799991,-29.717877116],[-69.93787105399994,-29.704749043999936],[-69.96350256399998,-29.685525410999915],[-69.97319189499993,-29.666095071999848],[-69.97293351299996,-29.643150736],[-69.96890275099989,-29.61307505299993],[-69.96846350099995,-29.583309427999847],[-69.99161454299994,-29.488121439999883],[-69.99613623099995,-29.47644256599999],[-70.00218237299993,-29.465590514999946],[-70.01001135299992,-29.45608205199997],[-70.01954565399993,-29.40440561899985],[-70.02698706099994,-29.389936217999903],[-70.03574621599992,-29.37691375699987],[-70.04261918099989,-29.36306447399998],[-70.0444795329999,-29.346114603999975],[-70.04065547799988,-29.2975387579999],[-70.03112117599997,-29.277178242999952],[-70.01001135299992,-29.266429544999852],[-69.9998569339999,-29.262915547999896],[-69.98934077999994,-29.257334492999963],[-69.98032324199997,-29.249996438999887],[-69.97474218799996,-29.240798033999965],[-69.97616328999993,-29.23345998099998],[-69.98810054599997,-29.220024108999937],[-69.98949580899995,-29.21444305499992],[-69.98505163699994,-29.20834523599987],[-69.9800648609999,-29.20586476699989],[-69.97505224599993,-29.204314472999954],[-69.95936844899998,-29.192118834999864],[-69.9326000579999,-29.17692596499992],[-69.92198055099993,-29.168037617999914],[-69.9152884529999,-29.156152037999885],[-69.91472001199995,-29.14881398499989],[-69.91094763199993,-29.143232930999957],[-69.89448868899987,-29.137238464999857],[-69.84436254899992,-29.12928029399988],[-69.82232255099993,-29.120081887999884],[-69.80392574099994,-29.098687845999876],[-69.79723364299991,-29.07667368499989],[-69.79576086499992,-29.050111998999967],[-69.80167781599994,-28.99998585999994],[-69.8063028569999,-28.980142109999946],[-69.80661291499987,-28.95988494899994],[-69.80278885999994,-28.939937845999935],[-69.79506323299992,-28.92081756599994],[-69.78539973999992,-28.905831400999872],[-69.7731265869999,-28.892705586999895],[-69.76731298899996,-28.8842306519999],[-69.76643448999997,-28.875859069999834],[-69.76682206199987,-28.86759084099988],[-69.76483251999991,-28.858599141999846],[-69.73584204099996,-28.81240041099988],[-69.73276729299991,-28.794313658999954],[-69.736384644,-28.77240285199983],[-69.7510607509999,-28.729821471999852],[-69.7559183359999,-28.70770395900001],[-69.7533861899999,-28.67339080799982],[-69.74085465600001,-28.6406279499999],[-69.72207027199991,-28.61065561899987],[-69.70088293499995,-28.584403991999935],[-69.69320898499987,-28.579753112999967],[-69.68512162299996,-28.57778940899985],[-69.67840368699991,-28.57386199899987],[-69.67483801299997,-28.56311330099986],[-69.6723575449999,-28.4576933799999],[-69.65404516399988,-28.400993547999903],[-69.65303055899994,-28.397852070999946],[-69.60732275399994,-28.356304219999956],[-69.55352758799992,-28.317856953999822],[-69.51009354699991,-28.267524108999936],[-69.501231039,-28.25036753299996],[-69.4905081789999,-28.198381041999937],[-69.4761679689999,-28.187942402999823],[-69.45606583699993,-28.195797220999932],[-69.43562780799995,-28.208509622999983],[-69.42030574499992,-28.212643737999926],[-69.41188248699993,-28.20251515699988],[-69.38986832699993,-28.16200083399987],[-69.36715653599995,-28.130374857999968],[-69.33082800299991,-28.05244679799999],[-69.31175939999991,-28.036530456999966],[-69.3109325769999,-28.02929575599991],[-69.31377478099995,-28.02268117199982],[-69.3131029869999,-28.014516296999982],[-69.30323278799992,-27.999530130999826],[-69.29106298899998,-27.989401550999872],[-69.27514664799989,-27.98289031999981],[-69.21589961799998,-27.96852427099998],[-69.1901905929999,-27.951367695999934],[-69.17300817899991,-27.92408253999983],[-69.13406045699993,-27.772343536999827],[-69.12432897999989,-27.734430032999896],[-69.11820532299993,-27.72213104199986],[-69.10833512399995,-27.71582651799984],[-69.08110164399994,-27.703837585999963],[-69.07583064799991,-27.69618947399999],[-69.08001643899996,-27.681513366],[-69.08745784599996,-27.669214375999957],[-69.09321976799993,-27.65650197399991],[-69.0923412689999,-27.640172220999887],[-69.08554581799986,-27.629320169999843],[-69.06298905399993,-27.609993183999975],[-69.05386816399994,-27.599657896999958],[-69.02857255099988,-27.551288757],[-69.01901240999987,-27.5243136599999],[-69.01627355999995,-27.50012908899984],[-69.01989091099992,-27.48689992300002],[-69.02051102699997,-27.473360697999862],[-69.01741044199994,-27.460441588999853],[-69.01014990299987,-27.448866067999816],[-68.99358760599998,-27.437703958999876],[-68.95862849999989,-27.421064147999854],[-68.94263464399992,-27.4088685099999],[-68.93144669599988,-27.395225931999917],[-68.88305171699994,-27.29497365299997],[-68.87930517599992,-27.278540547999924],[-68.8813722329999,-27.239059752999978],[-68.8797185879999,-27.221489766999923],[-68.87075272699991,-27.198442077999957],[-68.82902400699996,-27.1360169469999],[-68.81432206199995,-27.120307311999834],[-68.80109289599997,-27.112762552999882],[-68.76429927599989,-27.10459767699996],[-68.71861730999987,-27.106664733999835],[-68.68285721899994,-27.126921894999924],[-68.64947424299996,-27.151209818999916],[-68.61071691899994,-27.165679219999944],[-68.58586055499998,-27.162785338999967],[-68.57537023999993,-27.14934946699992],[-68.56916906799994,-27.12950571699993],[-68.55738684099995,-27.107388203999832],[-68.53976517799995,-27.09033498099997],[-68.51800939899994,-27.076899109000024],[-68.49423824099998,-27.06863087999997],[-68.4430785729999,-27.066667174999864],[-68.4221496179999,-27.062016296999985],[-68.37734615099991,-27.04444630899991],[-68.36649410099997,-27.04351613299987],[-68.33776200399987,-27.04558319099983],[-68.33047562699991,-27.044963072999863],[-68.32840856999994,-27.037418313999822],[-68.3311474199999,-27.01220021499986],[-68.32913203999992,-27.000107929999956],[-68.32380936699988,-26.980987649999957],[-68.30742793799992,-26.944607441999892],[-68.30210526499988,-26.926624042999904],[-68.30536088099986,-26.89799530099984],[-68.3201403409999,-26.870090025999943],[-68.51020625799993,-26.629071146999863],[-68.54420935099998,-26.589280293999934],[-68.57015091999992,-26.550626321999943],[-68.58741084899992,-26.508251647999842],[-68.59531734299995,-26.457298685999888],[-68.5939220789999,-26.378647155999914],[-68.5873591719999,-26.338029479999975],[-68.57516353399988,-26.3035096239999],[-68.54612137899997,-26.269093118999947],[-68.41987585499989,-26.17927947999993],[-68.40902380499995,-26.144242857999927],[-68.41708532699994,-26.09359995499987],[-68.48638342299995,-25.83656138099984],[-68.49847570799994,-25.75491261799985],[-68.50757076099993,-25.728867695999952],[-68.52188513199991,-25.705613301999946],[-68.54131547099988,-25.687319844999962],[-68.55935054599988,-25.663031920999885],[-68.56095251499991,-25.635229999999837],[-68.55960892699994,-25.608564961999974],[-68.56880733299994,-25.587791035999842],[-68.5550097249999,-25.572598164],[-68.56658524599995,-25.551720885999842],[-68.60291377799993,-25.51068979899989],[-68.60823644999996,-25.49291310599986],[-68.6099417729999,-25.47420623799988],[-68.60596268699996,-25.43699920699987],[-68.55422846999991,-25.29119196299993],[-68.5160456959999,-25.183577982999818],[-68.4964677989999,-25.15999651699991],[-68.49304968299995,-25.155879414999887],[-68.4740327559999,-25.145440774999855],[-68.45837479699995,-25.144924010999986],[-68.44194169099998,-25.14812795],[-68.42075435399994,-25.148748066999943],[-68.39920528199987,-25.14482065899996],[-68.37920650199993,-25.136759134999892],[-68.36664912899994,-25.12342661499987],[-68.36737259999992,-25.103376159],[-68.3889733479999,-25.0775379439999],[-68.42049597199994,-25.051182962999846],[-68.44354366099992,-25.02110727899995],[-68.44013301599998,-24.98369354199981],[-68.43739416599993,-24.97408172599998],[-68.43982295799992,-24.967570496],[-68.44493892499989,-24.96157602999989],[-68.45000321499998,-24.953927917],[-68.45387894799993,-24.94927703799993],[-68.46514440899998,-24.941422220999826],[-68.46907181799995,-24.936771341999858],[-68.4696402589999,-24.93201710999986],[-68.46860672999992,-24.92695281999988],[-68.46684973199987,-24.92312876399994],[-68.46571284999993,-24.922095234999958],[-68.47305090399993,-24.907935892999916],[-68.47930375199994,-24.899564309999846],[-68.48994909699994,-24.895843606999918],[-68.51020625799993,-24.89553354899985],[-68.51759598799993,-24.890055846999942],[-68.54157385299996,-24.877446797999838],[-68.55103063999994,-24.868765156999956],[-68.55516475499994,-24.86215057299988],[-68.57800573799994,-24.808717142999953],[-68.5785741789999,-24.79166391999983],[-68.57237300699991,-24.76985646599981],[-68.52131669099995,-24.67528859399999],[-68.51020625799993,-24.64128550199996],[-68.50803584899995,-24.62681610099993],[-68.50369502799995,-24.612346699999904],[-68.49553015099994,-24.601804707999847],[-68.48183589699991,-24.598807475],[-68.46281896999994,-24.62330210399996],[-68.45150183199988,-24.62929656999991],[-68.44437048399993,-24.610176289999913],[-68.43770422399993,-24.579687194999835],[-68.39765498899996,-24.500518899999918],[-68.3798266199999,-24.491113789999957],[-68.36241166199997,-24.4942143759999],[-68.34489335199993,-24.49979543100001],[-68.32680659999991,-24.49824513699981],[-68.31404252199994,-24.487289734],[-68.27683548999991,-24.432306009999976],[-68.26712032099996,-24.404194029999942],[-68.262417765,-24.39675262399983],[-68.24448604399993,-24.385383810000018],[-68.21105139199994,-24.372464701],[-68.16082189999992,-24.35313771599988],[-68.11064408399997,-24.33381072999991],[-68.06046626799994,-24.31438039099993],[-68.01023677599997,-24.295053405999894],[-67.88523148599992,-24.24389373699989],[-67.76022619699995,-24.192734069999972],[-67.6352209069999,-24.141471048999946],[-67.51026729399992,-24.09041473399989],[-67.50117224199997,-24.087107441999887],[-67.48122513899995,-24.080079447999964],[-67.46122635899991,-24.07294809999985],[-67.45218298399996,-24.069640807999928],[-67.4122887779999,-24.055584818000014],[-67.36236934499996,-24.030366718999957],[-67.33978674299992,-24.00060109499998],[-67.31813431899994,-23.93517873099991],[-67.2847321110657,-23.834136437844446],[-67.2513287399999,-23.73309062599982],[-67.24790604699987,-23.72273691799998],[-67.17767777499998,-23.510243428999853],[-67.1074495039999,-23.29774993899983],[-67.03727290899994,-23.0853598019999],[-67.0195478919999,-23.031926370999983],[-67.0139668379999,-23.000713805999823],[-67.19390417499997,-22.822223409],[-67.14269283099998,-22.74274505599992],[-67.11323726399988,-22.71008555099985],[-67.03768632099994,-22.65458506299987],[-67.02662756399994,-22.639392191000013],[-67.0243538009999,-22.617584737],[-67.0327253829999,-22.524567159000014],[-67.01567216099994,-22.523843688999847],[-66.99355464699994,-22.52580739299988],[-66.97815506999987,-22.522500100999878],[-66.96523596299994,-22.514335225999943],[-66.95557246899992,-22.500692646999937],[-66.93531530799993,-22.480538838999877],[-66.90865026899988,-22.467516377999843],[-66.7964607349999,-22.43485687299996],[-66.78509191899991,-22.4276221719999],[-66.78447180199993,-22.41728688499998],[-66.79051794399999,-22.388348082999926],[-66.7880374759999,-22.380079853999973],[-66.7751700439999,-22.365197041999934],[-66.76793534399994,-22.34256276399998],[-66.75610144099994,-22.268252054999977],[-66.74886674099997,-22.244894306999853],[-66.73589595599995,-22.225050557999865],[-66.71284826699987,-22.206447040999905],[-66.6993090419999,-22.20076263499986],[-66.68845699099995,-22.201692809999912],[-66.67739823399995,-22.20510345399992],[-66.65781286599992,-22.207377216999856],[-66.64137976099997,-22.212544859999866],[-66.63631546999997,-22.211304626],[-66.63326656099994,-22.204896748999886],[-66.63057938699991,-22.1973519899999],[-66.62675533099988,-22.19259775799985],[-66.51032832899995,-22.16293548599988],[-66.37746822099986,-22.127072040999934],[-66.35323197499989,-22.109605407999894],[-66.34917537499987,-22.10020029699993],[-66.3430000409999,-22.090485127999898],[-66.33524857599988,-22.08232025099997],[-66.32667028899994,-22.077359313999835],[-66.31406123899993,-22.075809021],[-66.30982377199987,-22.078186136999857],[-66.30760168499995,-22.07704925499985],[-66.3015038659999,-22.064956969999955],[-66.29716304599991,-22.05028086399987],[-66.28755122999993,-21.95695322599991],[-66.2400089109999,-21.79241546599991],[-66.22246476199993,-21.786937763999916],[-66.13781876599992,-21.81246592199986],[-66.09448807899997,-21.83292978999982],[-66.06358557199988,-21.864039000999952],[-66.05175166899994,-21.91261484799996],[-66.04653234899993,-21.917989196999926],[-65.95449662299993,-21.933078714999837],[-65.9326891689999,-21.94455088299985]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Bolivia","sov_a3":"BOL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bolivia","adm0_a3":"BOL","geou_dif":0,"geounit":"Bolivia","gu_a3":"BOL","su_dif":0,"subunit":"Bolivia","su_a3":"BOL","brk_diff":0,"name":"Bolivia","name_long":"Bolivia","brk_a3":"BOL","brk_name":"Bolivia","brk_group":null,"abbrev":"Bolivia","postal":"BO","formal_en":"Plurinational State of Bolivia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bolivia","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":3,"pop_est":9775246,"gdp_md_est":43270,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"BL","iso_a2":"BO","iso_a3":"BOL","iso_n3":"068","un_a3":"068","wb_a2":"BO","wb_a3":"BOL","woe_id":23424762,"woe_id_eh":23424762,"woe_note":"Exact WOE match as country","adm0_a3_is":"BOL","adm0_a3_us":"BOL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"BOL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-65.29246984899994,-11.50472300199992],[-65.25756241899995,-11.495317890999956],[-65.233041952,-11.508340352999909],[-65.22265498899989,-11.517435403999883],[-65.21598872899997,-11.53014780699992],[-65.21598872899997,-11.539966328999895],[-65.22361100299995,-11.55794972699988],[-65.22340429699997,-11.571075540999857],[-65.21924434399993,-11.584511413999904],[-65.21454178899998,-11.587508645999918],[-65.20735876499992,-11.587611998999932],[-65.1954473479999,-11.592159524999886],[-65.17397578999996,-11.606525572999885],[-65.16743872199999,-11.615517272999924],[-65.19092565999995,-11.623165384999908],[-65.19335445199994,-11.6323637899999],[-65.18927201299991,-11.657065123999912],[-65.19133907099987,-11.666883645999889],[-65.20025325499998,-11.681973164999889],[-65.20232031299994,-11.69148162899995],[-65.20185522499993,-11.727965189999878],[-65.1961966559999,-11.741814472999934],[-65.18245072499997,-11.756697285999891],[-65.16446732599988,-11.769823099999938],[-65.15149654199995,-11.773130390999938],[-65.14353837099989,-11.763828633999921],[-65.13800899299989,-11.715252786999926],[-65.13397823199998,-11.702643737999892],[-65.12785457399994,-11.694582213999908],[-65.1134110109999,-11.690551452999912],[-65.11046545499991,-11.699956563999876],[-65.11356603999994,-11.7225908399999],[-65.09919999199994,-11.736233418999916],[-65.08106156499991,-11.743468118999886],[-65.06555863499999,-11.753079935999907],[-65.05630855399997,-11.785636087999947],[-65.04331193099993,-11.80765024799993],[-65.03845434599992,-11.818709004999931],[-65.03744665499997,-11.828424173999878],[-65.03920365399995,-11.848681334999881],[-65.03845434599992,-11.858499856999854],[-65.03367427599994,-11.879790547999932],[-65.02809322099992,-11.888885598999906],[-65.01793880199995,-11.893639830999888],[-65.01452815799993,-11.893846536999945],[-65.00458044499993,-11.898394062999968],[-64.99812088999997,-11.908936054999856],[-64.99649308299993,-11.921235045999893],[-65.00085974099991,-11.931053567999868],[-65.01463151099993,-11.950277200999876],[-65.01633683299994,-11.968467304999919],[-65.00943802899994,-11.984280292999912],[-64.9974490969999,-11.99626922599988],[-64.98344478399989,-12.003917337999951],[-64.96760595699999,-12.007948099999851],[-64.92515376799993,-12.00991180399997],[-64.90448319599994,-12.01404591899991],[-64.88350256399994,-12.021383971999894],[-64.86208268299993,-12.024794616999925],[-64.83983597899996,-12.016733092999928],[-64.82761450299994,-12.022314147999865],[-64.80929520699996,-12.025828144999906],[-64.7925003659999,-12.032546080999836],[-64.78518815099991,-12.047428893999964],[-64.78048559599993,-12.06768605599997],[-64.76857417799991,-12.086496276999895],[-64.73679317199998,-12.119775898999933],[-64.74418290299988,-12.133625182999893],[-64.73953202399991,-12.144580585999961],[-64.7283957519999,-12.1498515829999],[-64.7162776289999,-12.146544290999913],[-64.71364213099989,-12.138482766999914],[-64.71028316299996,-12.111921080999906],[-64.7063815919999,-12.10613332099993],[-64.68992264899993,-12.104376321999949],[-64.6864603269999,-12.109957376999958],[-64.68157690499996,-12.126597187999892],[-64.68157690499996,-12.13486541699993],[-64.68857906199989,-12.147164408999885],[-64.6889924729999,-12.153882343999896],[-64.68594356299997,-12.159153339999932],[-64.67718440799986,-12.167628274999926],[-64.67534989499998,-12.171038919999956],[-64.66485957799992,-12.180960794999862],[-64.6405716549999,-12.195120136999904],[-64.59341691099989,-12.215997415999878],[-64.58104040599994,-12.217444355999874],[-64.55489213099995,-12.217754414999945],[-64.54843257699989,-12.219098001999924],[-64.53210282399996,-12.232223815999888],[-64.51148392799996,-12.242662454999916],[-64.51034704599994,-12.239561868999886],[-64.51024369299991,-12.237288105999951],[-64.50884842999994,-12.23604787199993],[-64.49424983799989,-12.238011575999863],[-64.48939225299995,-12.239458515999942],[-64.47303666199991,-12.253204446999888],[-64.46905757699992,-12.261059264999915],[-64.46815323999996,-12.27263478599987],[-64.46931595899991,-12.29485565199991],[-64.47443192599988,-12.316456400999883],[-64.49244116299988,-12.356557311999964],[-64.48977982599988,-12.373610533999909],[-64.48363033099989,-12.377641296999897],[-64.46164200899992,-12.385289407999963],[-64.45252111899993,-12.390353697999942],[-64.44407202199994,-12.399758808999906],[-64.43236730999988,-12.420946146999952],[-64.4248742269999,-12.431384785999896],[-64.41133500199993,-12.445130716999927],[-64.39572871899992,-12.45732635499985],[-64.37676346899994,-12.465904642999888],[-64.35319901599993,-12.469211934999876],[-64.31265885399992,-12.461873879999883],[-64.29769852799987,-12.465697936999916],[-64.2875441079999,-12.497117207999864],[-64.27824235099988,-12.49928761799994],[-64.268708049,-12.497220560999892],[-64.26385046399989,-12.495256855999855],[-64.25682246899996,-12.490812682999945],[-64.24571203599992,-12.479443867999862],[-64.23656530799997,-12.475413105999863],[-64.21522294099995,-12.473759459999911],[-64.19754960099995,-12.478720396999861],[-64.18310603899994,-12.487918802999957],[-64.15525244199995,-12.516960957999856],[-64.14478796399993,-12.520371601999969],[-64.1347627369999,-12.510863138999895],[-64.11982824699993,-12.489675801999852],[-64.10445450899996,-12.507142435999882],[-64.04445817099995,-12.509106139999915],[-64.0228315839999,-12.537838235999928],[-64.00417639199992,-12.535461120999884],[-63.972447062999976,-12.523885599999929],[-63.95932124899994,-12.528019713999866],[-63.950019490999885,-12.536804707999934],[-63.93906408699993,-12.544142760999932],[-63.92123571799996,-12.54434946699989],[-63.909143433,-12.534324238999957],[-63.90247717299987,-12.525435891999862],[-63.89689611799997,-12.515720722999916],[-63.86320308499992,-12.474792988999893],[-63.86289302599994,-12.469211934999876],[-63.845581420999935,-12.466938171999871],[-63.814988973999895,-12.457223001999921],[-63.80139807199993,-12.454949238999902],[-63.65773758999998,-12.475413105999863],[-63.6548437089999,-12.47830698599995],[-63.60042842699991,-12.506108906999899],[-63.55872554599998,-12.539905292999888],[-63.54218908699997,-12.547966816999875],[-63.520226602999905,-12.551170755999848],[-63.507514201999946,-12.55158416699986],[-63.49614538599988,-12.553341165999937],[-63.48575842299997,-12.557475280999952],[-63.47619828399988,-12.56481333399995],[-63.46875687699995,-12.575768737999923],[-63.46699987799997,-12.58579396499995],[-63.46637976199989,-12.59530242899993],[-63.46250402899994,-12.605120950999904],[-63.45423579999991,-12.612045592999891],[-63.44534745399998,-12.614836119999934],[-63.43816442899992,-12.619176940999921],[-63.43521887199992,-12.63033904999986],[-63.43144649299998,-12.636953633999951],[-63.39330928599995,-12.664548848999855],[-63.37108841999989,-12.669923196999918],[-63.359461221999936,-12.6746774289999],[-63.33041906699995,-12.69700164699988],[-63.31791337099994,-12.701962585999922],[-63.247323363999946,-12.70134246799995],[-63.23595454999989,-12.698551940999891],[-63.23202714099991,-12.691110534999964],[-63.22267370599988,-12.682532245999935],[-63.20184810499992,-12.667856139999856],[-63.19730057799998,-12.666822610999871],[-63.18557002799989,-12.668476256999924],[-63.180712443999965,-12.667856139999856],[-63.17611324099991,-12.663618672999903],[-63.17166906799991,-12.6523532099999],[-63.167069864999974,-12.647392272999895],[-63.139474649999954,-12.635610046999886],[-63.13668412299992,-12.633749694999977],[-63.125056925999864,-12.635920104999883],[-63.10521317599994,-12.645221862999904],[-63.07503413999987,-12.652663268999914],[-63.064750529999884,-12.666202493999904],[-63.05782588799988,-12.701962585999922],[-63.053588419999926,-12.708370462999952],[-63.04707718999995,-12.713538105999957],[-63.04345983899989,-12.71911916099988],[-63.051107950999956,-12.730798034999864],[-63.05219315699994,-12.736482441999897],[-63.051107950999956,-12.742166849999933],[-63.047904013,-12.746714375999971],[-63.02568314599995,-12.765731301999935],[-63.01472774299997,-12.777720234999904],[-63.010025187999894,-12.78795216899988],[-63.007079630999975,-12.809966328999863],[-62.99917313699996,-12.829086608999958],[-62.988011026999914,-12.843866067999969],[-62.975298624999965,-12.852857767999922],[-62.96449824999993,-12.85657847099992],[-62.95514481599989,-12.85750864699989],[-62.94651485199995,-12.85523488399987],[-62.93803991699994,-12.84944712299989],[-62.92889318899994,-12.846036478999862],[-62.92377722199987,-12.852857767999922],[-62.920469930999865,-12.862262878999971],[-62.867914998999964,-12.929028828999918],[-62.86507279499992,-12.935540058999976],[-62.860111857999954,-12.940294290999873],[-62.84900142399994,-12.94215464299988],[-62.838924519999914,-12.94277475999985],[-62.83143143799995,-12.9449451699999],[-62.82667720599997,-12.950009459999919],[-62.825075236999936,-12.958691100999971],[-62.820165974999924,-12.97491750099988],[-62.807401895999924,-12.988870137999882],[-62.789831909999975,-13.000652363999876],[-62.7704532479999,-13.010470885999936],[-62.768644571999914,-12.990627135999944],[-62.7578958739999,-12.98514943399995],[-62.741307739999876,-12.985356139999922],[-62.722032429999956,-12.98256561199986],[-62.70916499899994,-12.974607441999892],[-62.698984740999975,-12.966649270999937],[-62.68663407399992,-12.96499562599989],[-62.667462117999925,-12.976364440999873],[-62.65790197799993,-12.984632669999925],[-62.65133907099994,-12.99248748799995],[-62.64751501499998,-13.0015825399999],[-62.64518957599994,-13.025353698999893],[-62.6416755779999,-13.030004577999946],[-62.55460078899994,-13.066798196999853],[-62.49269242399992,-13.065041198999964],[-62.472125203999944,-13.068451843999895],[-62.45848262599995,-13.077960305999879],[-62.430939086999864,-13.109792988999926],[-62.42871700099994,-13.114547220999924],[-62.427476765999934,-13.124572448999942],[-62.42411779799991,-13.126536152999874],[-62.41026851399994,-13.1257093299999],[-62.406702840999884,-13.126536152999874],[-62.38970129399994,-13.137078144999933],[-62.38184647699993,-13.139868672999896],[-62.33502762899991,-13.14513966899993],[-62.321591756999936,-13.143692728999937],[-62.310533,-13.133977558999902],[-62.290327514999944,-13.142039082999887],[-62.273636026999924,-13.138421732999902],[-62.25916662599988,-13.130773619999928],[-62.221649536999905,-13.12126515699994],[-62.21152095499994,-13.12033498199989],[-62.20092728699987,-13.122712096999933],[-62.17395218999994,-13.140798848999864],[-62.17245357299993,-13.117854512999912],[-62.16237666899988,-13.1207483929999],[-62.139845743999864,-13.14700002099994],[-62.12914872299988,-13.150927428999907],[-62.12046708199997,-13.148757018999914],[-62.11467932199991,-13.15020395899991],[-62.112508910999935,-13.164776712999867],[-62.11245723499991,-13.231801045999887],[-62.10940832599991,-13.248957620999931],[-62.099228068999935,-13.262600198999849],[-62.07773067299987,-13.2778964229999],[-62.033598998999906,-13.325542093999942],[-62.019698038999906,-13.332570088999958],[-62.01866450999992,-13.336807555999911],[-62.00326493399987,-13.360475361999931],[-61.99778723199995,-13.364092711999916],[-61.975359660999885,-13.374117940999938],[-61.95835811399993,-13.385486754999931],[-61.909833943999864,-13.431892190999944],[-61.899498657999935,-13.439230244999933],[-61.87991328999994,-13.449152119999937],[-61.87231685399988,-13.45607676199991],[-61.86859615099987,-13.463931578999862],[-61.84797725399994,-13.530800881999921],[-61.836350057,-13.540619404999887],[-61.81397416199991,-13.544236755999876],[-61.79428544099997,-13.5403093459999],[-61.774234985999925,-13.533384704999918],[-61.75433955999991,-13.530284118999887],[-61.735115926999896,-13.53803558299998],[-61.71573726399992,-13.526563414999956],[-61.69289628099991,-13.517985127999935],[-61.66809159399988,-13.512507425999942],[-61.59711401399991,-13.50609954799991],[-61.59306017099996,-13.506794492999944],[-61.58807063899993,-13.507649840999932],[-61.56086299699996,-13.532661233999917],[-61.55081193099992,-13.53803558299998],[-61.50342464199994,-13.548164163999928],[-61.4587503669999,-13.54371999099993],[-61.41547135399995,-13.528113707999893],[-61.347723551999934,-13.49369720499993],[-61.33237565199997,-13.494834085999855],[-61.317131103999905,-13.5009319049999],[-61.28121598299995,-13.50723642999992],[-61.2600286469999,-13.520052184999898],[-61.24855647799998,-13.52439300499988],[-61.2378852949999,-13.52439300499988],[-61.21504431199988,-13.517468362999892],[-61.149105183999986,-13.519845478999938],[-61.1393124999999,-13.514057718999965],[-61.133576415999954,-13.494007262999913],[-61.11871944199993,-13.484498798999935],[-61.076008869999924,-13.47829762799995],[-61.07218481499987,-13.474370218999894],[-61.060118367999905,-13.467135518999925],[-61.0472250979999,-13.46455169699992],[-61.04125646999995,-13.474576924999937],[-61.04125646999995,-13.515194600999877],[-61.02200699899992,-13.535245055999923],[-60.977875325999946,-13.542996520999935],[-60.929299478999944,-13.546200458999905],[-60.89674332699991,-13.552918395999924],[-60.87824316399988,-13.570385029999969],[-60.87067256699993,-13.57544932099995],[-60.80196875099994,-13.604181415999946],[-60.725571722999916,-13.662844600999959],[-60.65270137599989,-13.718799742999906],[-60.61807816599989,-13.736886494999908],[-60.595082153999925,-13.7416407259999],[-60.58862259999998,-13.744534606999892],[-60.58487605799987,-13.749082131999927],[-60.57957922399992,-13.76107106499998],[-60.57513505099993,-13.765618590999921],[-60.56606583699993,-13.769959411999904],[-60.49061824599994,-13.787736104999922],[-60.472634846999966,-13.79786468499988],[-60.465270955999955,-13.81657155299996],[-60.46312638399988,-13.843443297999954],[-60.4573127859999,-13.870935160999935],[-60.448812011999905,-13.896773375999956],[-60.4385542409999,-13.918374124999929],[-60.4304410399999,-13.926745706999895],[-60.40863358599998,-13.944522399999926],[-60.40672155799988,-13.95041351299993],[-60.41160498099989,-13.960542093999976],[-60.40542964799991,-13.966743265999867],[-60.39574031599997,-13.970980733999923],[-60.389694173999935,-13.97490814199989],[-60.38718786699994,-13.983279723999956],[-60.38796301299996,-13.989377542999918],[-60.39651546199988,-14.008394470999889],[-60.40940873199988,-14.055316669999923],[-60.41943396099992,-14.076917418999898],[-60.437236490999936,-14.092006937999896],[-60.46139522399991,-14.098621520999899],[-60.46826818899989,-14.103685811999881],[-60.473513345999926,-14.117225036999855],[-60.47764746199993,-14.139962666999935],[-60.47893937199989,-14.162700296999915],[-60.47568375699989,-14.176032816999935],[-60.46240291399999,-14.19846038799993],[-60.46201534099989,-14.223885192999928],[-60.46563269099997,-14.25106699599992],[-60.4643407799999,-14.278352151999924],[-60.45431555199989,-14.2966456099999],[-60.39992610699991,-14.340777281999891],[-60.3913478189999,-14.357107034999926],[-60.376697551,-14.419945576999906],[-60.34380550199995,-14.490948994999895],[-60.338431151999906,-14.532600198999914],[-60.36920446799987,-14.54283213299989],[-60.35271968599997,-14.575388284999931],[-60.30404048699995,-14.608151142999944],[-60.291715657999895,-14.630061949999899],[-60.288821777999914,-14.690730081999973],[-60.284868530999944,-14.772688902999946],[-60.28088944499987,-14.854647724999923],[-60.276858683999954,-14.936606546999883],[-60.272905436999906,-15.018565367999955],[-60.26980484999987,-15.083367614999956],[-60.27497249399997,-15.095149840999866],[-60.389306599999934,-15.096493428999919],[-60.582240559999946,-15.09887054399988],[-60.529478922999914,-15.14372568699987],[-60.4601808269999,-15.22423756899994],[-60.352125406999924,-15.349604593999901],[-60.2604514159999,-15.456058043999917],[-60.24639542599991,-15.47827890999987],[-60.237972167999914,-15.502670185999891],[-60.22482051599994,-15.651394957999898],[-60.2069921469999,-15.853036396999883],[-60.19376297999988,-16.001451109999905],[-60.18696752999995,-16.10873138399995],[-60.17981034299991,-16.22200612299993],[-60.160690063999915,-16.264794209999963],[-60.12983923399992,-16.273062438999915],[-60.06041194699995,-16.27543955499995],[-59.87001013199992,-16.28215749099988],[-59.6795566409999,-16.288772074999883],[-59.48910314999995,-16.29538665699988],[-59.29867549699989,-16.302104593999896],[-59.10824784399994,-16.3087191769999],[-58.91776851499989,-16.31543711399992],[-58.727444214999906,-16.322155048999946],[-58.53696488499994,-16.328769632999936],[-58.46472123299992,-16.331250101999913],[-58.4422419839999,-16.328459574999954],[-58.4216230879999,-16.318434345999933],[-58.4142333579999,-16.308925882999855],[-58.4003323979999,-16.28422454799994],[-58.3929426679999,-16.27936696399992],[-58.34974117099994,-16.2804004919999],[-58.339560914,-16.289288838999923],[-58.33454829899994,-16.386647236999877],[-58.338837442999896,-16.400496520999937],[-58.36229854399997,-16.419306741999947],[-58.36359045399993,-16.436670022999863],[-58.342661498999945,-16.473153584999878],[-58.35609737199991,-16.509533792999957],[-58.45588456299989,-16.619087829999927],[-58.47267940299989,-16.649576924999902],[-58.48027583899994,-16.683683369999883],[-58.47665848799994,-16.72698821999994],[-58.45624629799991,-16.802435811999942],[-58.452939006,-16.841296487999898],[-58.455109415999885,-16.848324482999914],[-58.46404943899992,-16.86610117499994],[-58.46663326099991,-16.875506285999904],[-58.46627152599993,-16.887288512999902],[-58.45634965099992,-16.9370012409999],[-58.43919307499996,-16.967283629999926],[-58.432475138999926,-16.98537038099994],[-58.42679073099989,-17.055236917999935],[-58.4216230879999,-17.070636494999917],[-58.4109777429999,-17.08820648199989],[-58.40627518799994,-17.110117288999945],[-58.40482824699993,-17.19962086999996],[-58.39914383999987,-17.237448017999938],[-58.38116044199998,-17.26721364299992],[-58.34369502799992,-17.286954040999888],[-58.312172403999966,-17.29088144999986],[-58.30214717699993,-17.293775328999942],[-58.292276977999954,-17.299666442999936],[-58.27439693199997,-17.31403249099995],[-58.264526733999894,-17.320026956999882],[-58.25615515199993,-17.322507425999945],[-58.23992875199994,-17.32519459999989],[-58.23155716999995,-17.329742125999914],[-58.220240030999975,-17.34431488],[-58.20406530799996,-17.37738779699987],[-58.18840734899993,-17.3885499069999],[-58.17455806599997,-17.39206390399994],[-58.163189249999874,-17.39340749099992],[-58.15223384599992,-17.39640472399992],[-58.1393664149999,-17.404569599999945],[-58.11202958199996,-17.433508401999916],[-58.10112585499991,-17.44125986699991],[-58.065727498999905,-17.4559359739999],[-58.05368688999993,-17.462343851999947],[-58.01017533399992,-17.496760354999893],[-57.98149491399992,-17.508749286999944],[-57.943564412999905,-17.517844339999925],[-57.905685587999926,-17.520324808999902],[-57.877005167999926,-17.512263284999904],[-57.8541125079999,-17.508542581999905],[-57.8367492269999,-17.511023050999967],[-57.814425007999915,-17.519704691999934],[-57.800730753999886,-17.533450622999865],[-57.79075720299996,-17.55577484099993],[-57.78827673399991,-17.580579528999877],[-57.78956864399996,-17.604143981999883],[-57.787553263999904,-17.620473733999916],[-57.78796667499992,-17.658920999999864],[-57.78589961799997,-17.677524514999917],[-57.777941446999904,-17.695507913999904],[-57.76755448399987,-17.708737080999896],[-57.75489375899994,-17.72062265999992],[-57.74037268099991,-17.730234476999925],[-57.724456339999875,-17.736642353999883],[-57.73298295099996,-17.768475036999916],[-57.72931392399999,-17.77932708699997],[-57.71133052599989,-17.800824482999914],[-57.696809448999936,-17.825112406999907],[-57.6987731529999,-17.843095804999905],[-57.73008907099998,-17.846093037999907],[-57.63691646399988,-18.001122334999934],[-57.585498412999925,-18.122768656999895],[-57.55108190999997,-18.18364349299992],[-57.51118770399992,-18.205554300999978],[-57.49072383699988,-18.205554300999978],[-57.474549112999874,-18.20803476899995],[-57.465660766999946,-18.2177499389999],[-57.46679764899997,-18.239557393999917],[-57.535734008999974,-18.24048756899988],[-57.5538724369999,-18.244518330999966],[-57.56673986799992,-18.256093850999918],[-57.583017943999955,-18.30570322599989],[-57.63004349799991,-18.44843353299997],[-57.67701737499996,-18.59106048599992],[-57.72399125199993,-18.73368743899988],[-57.77106848199995,-18.876314391999927],[-57.782333943999895,-18.910420836999904],[-57.742233032999906,-18.913624776999967],[-57.73179439299997,-18.921996357999944],[-57.72755692599992,-18.94194346099995],[-57.721769164999934,-19.00116465199994],[-57.71582637599994,-19.04457285499994],[-57.77189530499996,-19.04870697099996],[-57.789000203999905,-19.059248961999927],[-57.81204789199995,-19.105034280999874],[-57.843105428999905,-19.166839294999875],[-57.91162837699991,-19.302851663999917],[-57.98004797399991,-19.438864033999977],[-58.011208862999894,-19.500669046999874],[-58.011208862999894,-19.500772398999896],[-58.011208862999894,-19.50087575299993],[-58.011260538999885,-19.50087575299993],[-58.023559529999936,-19.525680439999874],[-58.05048295099996,-19.58014739999987],[-58.0774580479999,-19.6347177129999],[-58.08975703999993,-19.659419046999915],[-58.12463863099989,-19.729905699999858],[-58.1169388429999,-19.75801767999989],[-58.041129516999916,-19.823440042999962],[-57.9604626059999,-19.8930998739999],[-57.85974523899991,-19.98012298599994],[-57.86977046799988,-19.99293874099993],[-57.881139281999936,-20.00916514099994],[-57.89560868299989,-20.024151305999908],[-57.917932902999944,-20.034176533999926],[-57.94320267799992,-20.02807871499988],[-57.959170694999955,-20.02621836299997],[-57.96635371899989,-20.031075947999895],[-57.968937541,-20.039757587999944],[-57.97581050699995,-20.047509053999946],[-57.98568070499994,-20.053090107999964],[-57.99710119599995,-20.055260517999955],[-58.02237097199991,-20.0649756869999],[-58.053531860999975,-20.107660420999906],[-58.07957678299996,-20.117375589999938],[-58.08624304299988,-20.120889587999983],[-58.09828365099994,-20.138149515999885],[-58.10355464799997,-20.144040628999885],[-58.116318725999946,-20.15044850599992],[-58.15879675299999,-20.165124612999918],[-58.15952022399997,-20.13907969199994],[-58.144740762999874,-20.086163024999863],[-58.14313879399993,-20.065285746999887],[-58.14448238199989,-20.023117777999925],[-58.141846883999875,-20.0008969109999],[-58.145154175999984,-19.96958099299988],[-58.162207397999914,-19.912323506999925],[-58.16422277899995,-19.88028411799992],[-58.16117386899992,-19.847211201999926],[-58.16442948399992,-19.83294850699987],[-58.175281534999954,-19.82137298499991],[-58.214452270999914,-19.798325296999863],[-58.30777990799996,-19.743651631999896],[-58.401004190999885,-19.68887461299991],[-58.49428015199993,-19.634200947999958],[-58.58750443499988,-19.579423929999876],[-58.68083207199993,-19.524750263999916],[-58.774108032999976,-19.470076598999867],[-58.86743566899992,-19.415299580999967],[-58.96065995299995,-19.3605225619999],[-59.01109615099995,-19.33096364399995],[-59.03967321799993,-19.31163665799991],[-59.069645548999894,-19.291482848999934],[-59.08954097499989,-19.286728616999937],[-59.17072464999993,-19.28776214599992],[-59.359085245999914,-19.29013926199987],[-59.547497517999915,-19.292413024999888],[-59.73585811399997,-19.294790140999936],[-59.92432206299989,-19.297063903999856],[-60.00638423699988,-19.298097431999935],[-60.15699519899991,-19.328999938999928],[-60.49547582999988,-19.398453063999895],[-60.83393062399994,-19.467906188999876],[-61.1723595789999,-19.53746266699997],[-61.510840210999866,-19.606915790999935],[-61.532285929999965,-19.610016377999983],[-61.579544026999905,-19.616837666999942],[-61.62672460999993,-19.623658954999897],[-61.648222005999884,-19.62675954199993],[-61.73723465999987,-19.639575296999922],[-61.75320267799992,-19.645879821999927],[-61.761212524999884,-19.65776540099995],[-61.7800744219999,-19.706961363999923],[-61.80818640099994,-19.780341897999875],[-61.83629838099998,-19.853825784999927],[-61.86441035999994,-19.92741302499992],[-61.89252233899995,-20.0008969109999],[-61.892574015999884,-20.0008969109999],[-61.90554479999991,-20.026735127999913],[-61.918412231999895,-20.052573343999924],[-61.92473979899995,-20.06512763899987],[-61.93138301699991,-20.07830820699992],[-61.944250447999906,-20.104146422999946],[-61.960941935999955,-20.128020934999924],[-61.97758174699996,-20.151792093999887],[-61.994169880999976,-20.175666604999975],[-62.01080969299991,-20.199541116999868],[-62.055509806999936,-20.26041595399991],[-62.1002099209999,-20.321187438999914],[-62.144961710999944,-20.382062275999957],[-62.18966182499989,-20.442833760999875],[-62.21057310199993,-20.471305462999922],[-62.23239823499993,-20.50102142299997],[-62.268830118999915,-20.55311126699993],[-62.277305053999925,-20.579776305999886],[-62.27616817299992,-20.67072682699998],[-62.275031290999976,-20.758680114999976],[-62.27379105699995,-20.854798277999905],[-62.27188577399997,-21.000423652999885],[-62.271879027999944,-21.00093922999991],[-62.27570308499989,-21.066568297999936],[-62.30789750199992,-21.169301045999944],[-62.34040197799996,-21.27286061599989],[-62.37549027599999,-21.384481709999914],[-62.411973837,-21.50085703499994],[-62.44618363499998,-21.60689707399986],[-62.49279577699997,-21.751797789999927],[-62.52922766199995,-21.865072529999907],[-62.572842569999914,-22.000774840999966],[-62.59940425699992,-22.089865010999887],[-62.62751623499997,-22.184536233999907],[-62.65035721899997,-22.234455667999953],[-62.6589871829999,-22.231665140999905],[-62.66182938699998,-22.22453379299988],[-62.66322465099994,-22.21554209399993],[-62.667462117999925,-22.20655039399989],[-62.679296020999935,-22.194768167999882],[-62.722032429999956,-22.166242776999923],[-62.76936804299989,-22.14474538099998],[-62.78347570899992,-22.130896097999923],[-62.79091711499987,-22.11322275799992],[-62.791072143999905,-22.081596781999934],[-62.79779007999994,-22.06940114399991],[-62.79505122899988,-22.06113291399987],[-62.79499955299988,-22.051211039999966],[-62.8013557539999,-22.013487242999926],[-62.804352986999895,-22.004082131999965],[-62.81856400599989,-22.000878193999895],[-62.86202388599988,-21.993230081999926],[-63.009921834999965,-22.00067148899994],[-63.010438598999905,-22.000774840999966],[-63.32491552749991,-21.999121195499967],[-63.63939245599991,-21.997467549999968],[-63.67783972199993,-22.003668720999954],[-63.69391109299991,-22.012040302999935],[-63.74041988099995,-22.050590921999913],[-63.75178869699993,-22.045733336999888],[-63.79302648999994,-22.011523538999896],[-63.81312862199991,-22.00304860499989],[-63.90640458199994,-21.997157490999896],[-63.93317297399991,-22.00180836999995],[-63.94759069899993,-22.007596129999925],[-63.950949666999946,-22.0108000689999],[-63.951466430999886,-22.0166911819999],[-63.961026570999906,-22.039118753999986],[-63.964643920999976,-22.058549092999964],[-63.96810624199991,-22.066507262999934],[-63.975806030999905,-22.073845315999915],[-63.98345414199989,-22.077359313999878],[-63.990378783999965,-22.07932301799991],[-63.99564978099992,-22.0829403689999],[-64.00438309799998,-22.099270120999932],[-64.01978267499996,-22.155390726999883],[-64.05102107799993,-22.22918467199993],[-64.05879838099995,-22.24034678099987],[-64.07887467499991,-22.250578714999847],[-64.08623856599989,-22.25791676799993],[-64.1605492759999,-22.438474222999982],[-64.18470800799997,-22.4712370809999],[-64.236332764,-22.51671234199995],[-64.25082800299992,-22.540690204999876],[-64.29397782399997,-22.690861917999968],[-64.29459794199994,-22.76289886499994],[-64.30348628799992,-22.782329202999918],[-64.32694738799992,-22.85922373499991],[-64.32529374199996,-22.871936136999878],[-64.34389725799991,-22.86366790699992],[-64.34772131399987,-22.81695241299992],[-64.3599944659999,-22.802999775999936],[-64.35232051599989,-22.779125263999944],[-64.35573116099994,-22.751943460999968],[-64.36898616599993,-22.729722594999927],[-64.39076778199987,-22.720524190999924],[-64.40172318499992,-22.71235931399991],[-64.42828487199995,-22.659029235999924],[-64.43823258499995,-22.65189788799998],[-64.44722428399989,-22.64869394899992],[-64.45370967599987,-22.642906188999945],[-64.45624182199995,-22.628023375999902],[-64.45520829299997,-22.616654560999905],[-64.45045406099987,-22.597120869999898],[-64.44942053199989,-22.587095641999966],[-64.44554480099993,-22.57624359099992],[-64.4372507329999,-22.567355244999916],[-64.42983516499996,-22.557123310999927],[-64.42828487199995,-22.542343851999917],[-64.48373368399993,-22.491184182999916],[-64.49812556999993,-22.472787373999918],[-64.50404252099995,-22.449946390999912],[-64.50781490099988,-22.44395192399989],[-64.52574662299992,-22.432996520999907],[-64.53132767799994,-22.42565846699992],[-64.53106929599997,-22.415529886999963],[-64.52329199299996,-22.39620290099991],[-64.52455806599991,-22.385350850999956],[-64.53789058499993,-22.37429209299995],[-64.55887121599994,-22.360649515999853],[-64.57202286799992,-22.34318288199991],[-64.56207515499999,-22.319825133999956],[-64.549156047,-22.305355732999928],[-64.54225724299991,-22.291506448999954],[-64.54277400699996,-22.275486755999907],[-64.55184322099993,-22.255022887999942],[-64.56021480299998,-22.24313730899992],[-64.58687984199995,-22.212751566999955],[-64.59620743899998,-22.20655039399989],[-64.61628373199993,-22.202209574999895],[-64.63871130399991,-22.191667581999937],[-64.657779908,-22.178438414999945],[-64.67904475999998,-22.175441182999933],[-64.68744217999995,-22.1728573599999],[-64.6952453209999,-22.174200947999893],[-64.71369380699991,-22.181745706999934],[-64.72289221199989,-22.183296],[-64.7623213299999,-22.17440765399995],[-64.83247208699996,-22.137510680999924],[-65.02036759499993,-22.096582946999902],[-65.19047821899997,-22.09847395899996],[-65.45734350599994,-22.10144053099992],[-65.51046687899989,-22.095859476999905],[-65.57989416599995,-22.08645436599994],[-65.58852413,-22.087281187999878],[-65.59343339099993,-22.09110524499991],[-65.59787756399993,-22.095652770999948],[-65.60531896999996,-22.099063414999875],[-65.74461279399992,-22.11404958099986],[-65.77530859399994,-22.105057880999905],[-65.80455745399989,-22.085834248999973],[-65.9326891689999,-21.944550882999888],[-65.95449662299993,-21.93307871499988],[-66.04653234899993,-21.91798919699997],[-66.05175166899994,-21.912614847999915],[-66.06358557199988,-21.86403900099992],[-66.09448807899997,-21.832929789999866],[-66.13781876599994,-21.8124659219999],[-66.22246476199993,-21.786937763999955],[-66.2400089109999,-21.792415465999863],[-66.28755122999993,-21.95695322599995],[-66.29716304599991,-22.050280863999916],[-66.3015038659999,-22.064956969999912],[-66.30760168499998,-22.077049254999892],[-66.30982377199987,-22.078186136999904],[-66.31406123899993,-22.075809020999955],[-66.32667028899996,-22.077359313999878],[-66.33524857599988,-22.082320250999928],[-66.3430000409999,-22.090485127999937],[-66.34917537499987,-22.100200296999972],[-66.35323197499989,-22.109605407999936],[-66.37746822099986,-22.127072040999888],[-66.51032832899995,-22.162935485999924],[-66.62675533099988,-22.192597757999888],[-66.63057938699991,-22.19735198999997],[-66.63326656099994,-22.20489674899993],[-66.63631546999997,-22.211304625999972],[-66.64137976099997,-22.21254485999991],[-66.65781286599992,-22.2073772169999],[-66.67739823399995,-22.205103453999897],[-66.68845699099995,-22.201692809999955],[-66.6993090419999,-22.200762634999904],[-66.71284826699987,-22.206447040999947],[-66.73589595599995,-22.225050557999907],[-66.74886674099997,-22.244894306999896],[-66.75610144099994,-22.268252054999948],[-66.76793534399994,-22.342562763999933],[-66.7751700439999,-22.365197041999892],[-66.7880374759999,-22.38007985399993],[-66.79051794399999,-22.38834808299988],[-66.78447180199993,-22.417286884999935],[-66.78509191899991,-22.427622171999943],[-66.7964607349999,-22.434856872999916],[-66.90865026899988,-22.467516377999885],[-66.93531530799993,-22.48053883899992],[-66.95557246899992,-22.50069264699991],[-66.96523596299994,-22.514335225999915],[-66.97815506999987,-22.52250010099992],[-66.99355464699994,-22.525807392999923],[-67.01567216099997,-22.52384368899989],[-67.0327253829999,-22.524567158999986],[-67.02435380099993,-22.61758473699996],[-67.02662756399994,-22.639392190999985],[-67.03768632099994,-22.654585062999914],[-67.11323726399988,-22.71008555099989],[-67.14269283099998,-22.74274505599996],[-67.19390417499997,-22.82222340899996],[-67.51026729399992,-22.885785420999937],[-67.54711258999995,-22.892503356999953],[-67.61677242099998,-22.897257587999945],[-67.77143998299991,-22.888679300999925],[-67.80358272299995,-22.878654072999893],[-67.81128251099994,-22.871626077999892],[-67.83303828999992,-22.84010345499992],[-67.83794754999988,-22.840826923999913],[-67.8763431399999,-22.833592223999858],[-67.8870918379999,-22.818709411999905],[-67.89148433499992,-22.792871195999894],[-67.89132930499996,-22.715666605999914],[-67.85872147699993,-22.56683847999997],[-67.85918656499996,-22.547304788999966],[-67.88967565999994,-22.491184182999916],[-67.89820227099995,-22.441471455999917],[-67.90693558799993,-22.4200774119999],[-67.94527950099993,-22.354241637999905],[-67.95189408399995,-22.334087828999927],[-67.95220414299993,-22.31414072699991],[-67.93478918499997,-22.251715596999944],[-67.93597774299991,-22.232285257999877],[-67.94496944199994,-22.208307392999952],[-67.97302974499986,-22.170583597999908],[-67.97659541899995,-22.159834899999893],[-67.97328812699996,-22.15042978899993],[-67.96062740100001,-22.133686624999882],[-67.95716507999995,-22.12459157299992],[-67.96062740100001,-22.102887470999917],[-67.97261633299986,-22.07880625399987],[-67.99018632099995,-22.057618916999914],[-68.01023677599997,-22.044906513999962],[-68.05876094599998,-22.000774840999966],[-68.0827388109999,-21.980310973999902],[-68.09204056899992,-21.96842539499988],[-68.09622635999995,-21.95395599399994],[-68.10759517399995,-21.789624938999907],[-68.1283690999999,-21.712316996999988],[-68.1905875249999,-21.606380309999906],[-68.19844234199994,-21.57186045299993],[-68.19373978699994,-21.328464456999892],[-68.20753739499989,-21.284332783999915],[-68.41631018099991,-20.959804788999932],[-68.43207149299991,-20.945025328999918],[-68.45393062299993,-20.939754333999886],[-68.49599523899988,-20.941614684999887],[-68.51020625799993,-20.940167744999897],[-68.53155442599987,-20.927688032999924],[-68.55511307799995,-20.913916116999957],[-68.57195959499991,-20.87236826599988],[-68.57278641799994,-20.742867126999982],[-68.56508662999994,-20.71950937899994],[-68.55020381699998,-20.699045511999884],[-68.48162919099988,-20.643028258999962],[-68.4809573979999,-20.624734802999896],[-68.51020625799993,-20.60189381899988],[-68.53630285699992,-20.591765237999937],[-68.58332841099991,-20.56303314199992],[-68.68554439299996,-20.516834410999877],[-68.70755855399995,-20.500918070999944],[-68.72967606599988,-20.479213968999943],[-68.75070837399997,-20.4518254599999],[-68.76541031999997,-20.421233011999988],[-68.76902766999987,-20.390537210999952],[-68.75768469299996,-20.364285583999926],[-68.73515376899996,-20.347542419999883],[-68.67851639899996,-20.32862884499994],[-68.71804886899992,-20.261966247999922],[-68.7294693609999,-20.22868662499988],[-68.7282808029999,-20.189619242999868],[-68.72326818899992,-20.160990498999894],[-68.72626542199993,-20.150965270999873],[-68.75902827999994,-20.144143981999914],[-68.78946569899992,-20.125850524999933],[-68.79259212199995,-20.106626891999923],[-68.7755389,-20.08967702199992],[-68.6528848879999,-20.054226988999886],[-68.62213741099995,-20.0513331089999],[-68.60777136199994,-20.053606872999907],[-68.59717769399995,-20.05670745799995],[-68.58834102399996,-20.05557057699994],[-68.57934932499991,-20.04544199599989],[-68.57454341599993,-20.03521006299991],[-68.56612015799992,-20.0008969109999],[-68.56493159999991,-19.98136321999989],[-68.5446227619999,-19.93475107799992],[-68.54157385299996,-19.9203850299999],[-68.54291743999991,-19.91418385799993],[-68.5469482009999,-19.908189391999898],[-68.55154740499995,-19.894443460999867],[-68.55252925699995,-19.864884540999938],[-68.55351110799998,-19.857856546999926],[-68.56110754399995,-19.84431732099995],[-68.5708227129999,-19.837599385999923],[-68.60157019099995,-19.825403747999914],[-68.61888179599995,-19.813414814999945],[-68.65035274299993,-19.7815821329999],[-68.69841182499997,-19.746338805999926],[-68.70543981899996,-19.73383310999992],[-68.70321773299989,-19.715539652999947],[-68.69029862499988,-19.695385843999887],[-68.64859574399995,-19.66034922299987],[-68.63097408099995,-19.641952412999956],[-68.57673588299996,-19.564606984999955],[-68.5321170659999,-19.50097910599996],[-68.5321170659999,-19.50087575299993],[-68.51020625799993,-19.47162689199989],[-68.49635697499988,-19.458397724999884],[-68.45610103399994,-19.441241149999925],[-68.44762609899993,-19.434626566999924],[-68.45501582899993,-19.4154029339999],[-68.4725858159999,-19.395455830999893],[-68.49320471199991,-19.37695566799995],[-68.60007157499996,-19.30336842899996],[-68.63572831299993,-19.29055267299988],[-68.66332352699993,-19.273602802999875],[-68.69846350099999,-19.21562184599992],[-68.72125280799989,-19.19174733499993],[-68.81540726799994,-19.113302509999926],[-68.84736914099994,-19.09201181999994],[-68.89478226699993,-19.076508890999918],[-68.90850235999994,-19.067930602999894],[-68.9196903079999,-19.053771260999937],[-68.94315140899997,-19.00116465199994],[-68.96170324699992,-18.969435322999928],[-68.97397639999994,-18.956206155999936],[-68.9896085209999,-18.946490986999905],[-68.95984289599991,-18.907837015999903],[-68.95178137199991,-18.88933685299987],[-68.95144547599992,-18.867322692999892],[-68.95464941499998,-18.856987406999878],[-69.01014990299987,-18.7452629599999],[-69.01053747599988,-18.74453948899992],[-69.01066666699992,-18.743712666999897],[-69.01053747599988,-18.7429891969999],[-69.00317358499987,-18.72955332399995],[-69.0011065269999,-18.71622080499993],[-69.00348364299995,-18.702681579999947],[-69.01014990299987,-18.68976247199994],[-69.03384354699992,-18.6494548539999],[-69.04283524599995,-18.600465596999882],[-69.04164668799993,-18.548892516999956],[-69.0349029139999,-18.50104013999987],[-69.03438614899994,-18.478302510999892],[-69.04169836499995,-18.457735289999903],[-69.07782019099994,-18.398824157999897],[-69.08187678999997,-18.382494404999946],[-69.07929296899997,-18.328027445999865],[-69.08102412999992,-18.31913909899994],[-69.09575191299993,-18.27676442399992],[-69.09683711799994,-18.267979430999944],[-69.09694047099995,-18.25754079099991],[-69.10035111499987,-18.234286396999888],[-69.11066056399997,-18.217956644999944],[-69.14120133499998,-18.186847432999897],[-69.15543819299995,-18.140235289999936],[-69.1259309499999,-18.111089782999912],[-69.08921484399994,-18.08308115699991],[-69.08172176199992,-18.039983011999894],[-69.082284087,-18.039077667999948],[-69.09205704799993,-18.02334319999997],[-69.10417517099992,-18.023756611999886],[-69.11988480699998,-18.029854430999933],[-69.14083959999996,-18.0307846069999],[-69.15771195499988,-18.02572031599992],[-69.17388667799993,-18.018899027999865],[-69.20416906799997,-18.001122334999934],[-69.2277851979999,-17.995541279999912],[-69.2348131919999,-17.99295745799992],[-69.24189286399994,-17.986756286999935],[-69.26204667199991,-17.96401865599995],[-69.27760127799993,-17.96753265399991],[-69.29002945999991,-17.97662770499988],[-69.30240596499996,-17.976214293999874],[-69.31785721899988,-17.95161631299989],[-69.32687475599994,-17.91513275099987],[-69.32764990299994,-17.84154551099988],[-69.33423864799994,-17.80578542099995],[-69.35940506999995,-17.75937998399986],[-69.39477758799998,-17.72113942499996],[-69.47578039599998,-17.652409769999892],[-69.497122763,-17.62140390999987],[-69.50611446099992,-17.585127054999898],[-69.51003631099988,-17.506588197999932],[-69.51009354699991,-17.50544199599994],[-69.50833654799992,-17.434025165999856],[-69.51138545799995,-17.398678486999938],[-69.5225992439999,-17.369119567999917],[-69.53709448299995,-17.35113616999993],[-69.55693823299993,-17.331499124999894],[-69.59727168799989,-17.300493265999876],[-69.61300716199989,-17.295118916999908],[-69.66441572199994,-17.28856246299992],[-69.6664922699999,-17.28829762799995],[-69.64941320899996,-17.262769469999924],[-69.63383276399992,-17.20726898099994],[-69.62279984599992,-17.185564879999944],[-69.61835567199992,-17.184221292999965],[-69.60114742099995,-17.181534118999945],[-69.5950496019999,-17.17967376699994],[-69.54099605399992,-17.132234801999857],[-69.51009354699991,-17.112080992999964],[-69.4828083909999,-17.10174570699988],[-69.4541538089999,-17.09657806399987],[-69.42743709299995,-17.086862894999925],[-69.40601721199994,-17.062988382999933],[-69.40126298099993,-17.047175394999936],[-69.40601721199994,-17.04087086899993],[-69.41330358899992,-17.03777028399989],[-69.41655920499998,-17.03198252299991],[-69.41358780999988,-17.022267353999965],[-69.40715409399994,-17.01565277099988],[-69.3643143319999,-16.991158141999918],[-69.35245459099988,-16.97772226999996],[-69.32594458,-16.92222178099989],[-69.2244520669999,-16.818248799999935],[-69.21065445999994,-16.79706146199989],[-69.19166337099998,-16.743007913999904],[-69.18236161299987,-16.72874521899992],[-69.16636775799992,-16.719133402999915],[-69.13058182799998,-16.715826110999913],[-69.11205582699995,-16.711485289999924],[-69.05381648799994,-16.682339782999918],[-69.03707332399996,-16.67024749699992],[-69.02051102699997,-16.64947357199989],[-69.00834122799998,-16.634177347999923],[-69.03513545799987,-16.598003844999894],[-69.04012223399991,-16.581364033999876],[-69.03764176499992,-16.55025482199993],[-69.0388819989999,-16.49186045299996],[-69.03681494199992,-16.471499938999926],[-69.02787491899997,-16.45413665799991],[-69.00172664399989,-16.422820739999903],[-68.96836950699992,-16.406387633999927],[-68.85584407599995,-16.363186135999896],[-68.83349401899997,-16.328976338999908],[-68.84364843799995,-16.302001240999868],[-68.86667028799988,-16.28691172299996],[-68.91876013199993,-16.266654560999967],[-68.95950699899993,-16.223349710999898],[-68.98203792399994,-16.210017190999878],[-69.01014990299987,-16.21911224399986],[-69.04273189399993,-16.209293721999884],[-69.05355810599988,-16.20836354599993],[-69.06451350999995,-16.212084248999943],[-69.0838921719999,-16.22655364999987],[-69.09518347199989,-16.23120452899994],[-69.12081498299995,-16.23120452899994],[-69.14468949499994,-16.223453063999926],[-69.16626440499999,-16.21043060299989],[-69.18486791999993,-16.19503102599991],[-69.21964615999991,-16.152759704999923],[-69.24212540799991,-16.098189391999895],[-69.28457759599993,-15.995043232999876],[-69.3271331389999,-15.892000426999871],[-69.36961116599994,-15.788957620999966],[-69.41221838399991,-15.685811462999949],[-69.42433650800001,-15.65625254299992],[-69.43002091599996,-15.626280211999884],[-69.42118424499995,-15.596411234999948],[-69.35640783799994,-15.501429951999853],[-69.35111100299991,-15.481896260999946],[-69.34852718099992,-15.461845804999895],[-69.34341121499992,-15.442208760999861],[-69.33036291499987,-15.424225361999973],[-69.32026017299992,-15.418851012999909],[-69.2929233399999,-15.40985931399996],[-69.28592118299991,-15.405415140999963],[-69.28540441899995,-15.396733499999911],[-69.29695410199992,-15.366967874999913],[-69.29116634199994,-15.350844827999936],[-69.27519832399987,-15.330277607999944],[-69.25589717699995,-15.313327738999945],[-69.22259171599997,-15.302165628999916],[-69.20913000599992,-15.263615010999928],[-69.18972550499987,-15.2623747759999],[-69.16613521399995,-15.263925068999923],[-69.15042557799998,-15.251626078999974],[-69.14810013899995,-15.233332620999903],[-69.17176794499997,-15.210801696999892],[-69.1964951169999,-15.176591897999899],[-69.2126698409999,-15.161295674999932],[-69.27220109099997,-15.118197529999918],[-69.2885825199999,-15.101971129999908],[-69.34609838899996,-15.016498311999896],[-69.36281571499998,-15.001305439999953],[-69.38431311099993,-14.98177174899986],[-69.39066931199996,-14.964408466999942],[-69.38622513899995,-14.94580495199989],[-69.36984370999991,-14.908287861999895],[-69.36775081399995,-14.90053639699988],[-69.3719882819999,-14.818680928999939],[-69.37054134199991,-14.801524352999891],[-69.36142045099993,-14.787985127999901],[-69.33904455599995,-14.77475596099991],[-69.28351822999994,-14.759666442999913],[-69.26762772699993,-14.750674742999962],[-69.25383011899999,-14.721839293999935],[-69.24749975599997,-14.593681741999914],[-69.23465816299998,-14.574251403999924],[-69.21494360399993,-14.5722876989999],[-69.19223181199993,-14.576938577999954],[-69.17039851899992,-14.577558695999924],[-69.16450740599993,-14.566396585999897],[-69.1674271249999,-14.520301207999877],[-69.16427486199996,-14.503041279999891],[-69.15820288099991,-14.498493753999938],[-69.14114965899995,-14.494152932999967],[-69.13401831099992,-14.490742289999941],[-69.0945633549999,-14.446403909999987],[-69.07513301599994,-14.432451272999899],[-69.01014990299987,-14.397104593999899],[-68.99025447599988,-14.379017842999884],[-68.99462113499996,-14.358967386999934],[-69.00831538899988,-14.339020283999915],[-69.0161702069999,-14.321140237999954],[-69.017229574,-14.282486266999868],[-69.01570511899988,-14.263159280999899],[-69.01014990299987,-14.245899352999913],[-68.98490596499991,-14.228329365999938],[-68.95131628399989,-14.219957783999872],[-68.88372351099991,-14.211482848999964],[-68.86444820199998,-14.191225686999957],[-68.86889237499989,-14.15618906599994],[-68.89372290099993,-14.089216410999938],[-68.89997574899994,-14.0547999059999],[-68.90576350899991,-14.039296975999974],[-68.9161763099999,-14.024930927999975],[-68.96971309499989,-13.99051442499993],[-68.98296809899998,-13.972220967999943],[-68.98904008099993,-13.940078226999914],[-68.9891951089999,-13.903698018999933],[-68.99299332799993,-13.869798278999921],[-69.01014990299987,-13.844373473999923],[-69.0230948489999,-13.806029561999907],[-69.02428340699993,-13.792490335999915],[-69.02082108599986,-13.776367288999936],[-69.01596350099996,-13.764585061999936],[-69.01596350099996,-13.753112894999916],[-69.02704809599996,-13.738230081999886],[-69.08104996799995,-13.695441995999943],[-69.10159134999992,-13.666606546999915],[-69.0875870369999,-13.64386891699985],[-69.07453873699987,-13.64262868199991],[-69.04402380399998,-13.648003031999862],[-69.0326291509999,-13.645935973999896],[-69.02384415799989,-13.634980569999925],[-69.02361161399992,-13.623301696999945],[-69.02552364199994,-13.610692646999922],[-69.02319820199992,-13.59694671599989],[-69.01539506,-13.58547454799988],[-68.99425939899996,-13.563046975999965],[-68.98565527399992,-13.550231221999894],[-68.97681860399993,-13.526253356999888],[-68.97074662299988,-13.501448668999942],[-68.97444148799988,-13.47881439199989],[-68.96278845299992,-13.283580829999947],[-68.97702530999996,-13.20492930099988],[-68.97966080799998,-13.16457000699991],[-68.97214188699994,-13.046127623999922],[-68.97393624599991,-13.031759582999937],[-68.98622371499995,-12.93336964999989],[-68.98658544899988,-12.890478209999939],[-68.98095271799994,-12.867947285999918],[-68.94943009499988,-12.843866067999969],[-68.93873307399987,-12.819681497999909],[-68.92661494999996,-12.800974629999912],[-68.9046266279999,-12.80397186299993],[-68.89199173999995,-12.775756530999956],[-68.87656632599996,-12.754982604999922],[-68.85620581099994,-12.741443378999946],[-68.77373022499991,-12.719429218999963],[-68.76613378899998,-12.710540872999943],[-68.74295690999989,-12.665789082999892],[-68.75298213799991,-12.654730325999893],[-68.78533158399998,-12.6459453329999],[-68.79460750399991,-12.636540221999937],[-68.79341894599989,-12.620210469999904],[-68.7838846439999,-12.605741068999876],[-68.77011287499994,-12.594372252999975],[-68.74026973499994,-12.578559264999896],[-68.7260587159999,-12.56595021599986],[-68.71453487199994,-12.551170755999848],[-68.7062666429999,-12.535977884999923],[-68.70022049999997,-12.516030781999902],[-68.69438106299998,-12.506832376999894],[-68.68425248299992,-12.502491556999914],[-68.68946323799995,-12.49341765599992],[-68.71422481399998,-12.450298359999934],[-68.81855952999993,-12.26922414199994],[-68.92286840899996,-12.088149922999932],[-69.0272806399999,-11.907075702999933],[-69.13158951899996,-11.72600148499994],[-69.2359500729999,-11.544927265999945],[-69.3403364669999,-11.36374969499991],[-69.44456783099992,-11.182675475999915],[-69.54895422399997,-11.001704609999946],[-69.5524940599999,-10.995606791999888],[-69.55611140999991,-10.98940561899991],[-69.5597287599999,-10.983101093999892],[-69.56326859599994,-10.976899922999905],[-69.56683426899994,-10.970698750999915],[-69.57050329599991,-10.964600931999954],[-69.57401729399997,-10.958503112999907],[-69.57763464399997,-10.952301940999916],[-69.50288468499994,-10.955299173999933],[-69.46337805199991,-10.951268411999934],[-69.3959403079999,-10.935042011999926],[-69.36307409699994,-10.940106301999904],[-69.32958776899997,-10.94940805999994],[-69.29351761899997,-10.954989114999947],[-69.23680273499994,-10.9529220579999],[-69.1585129399999,-10.962120462999891],[-69.12148677599991,-10.970595397999901],[-69.08688940499994,-10.96718475299987],[-69.07130896099997,-10.969975279999927],[-68.9969982509999,-11.001704609999946],[-68.99250240099988,-11.002428079999945],[-68.983381511,-11.002428079999945],[-68.97893733799988,-11.001704609999946],[-68.95542456099992,-11.00046437599991],[-68.90814062499996,-11.013383483999917],[-68.88403356999989,-11.016380716999933],[-68.85891882399997,-11.010489603999929],[-68.83168534399996,-11.000361021999879],[-68.8046585699999,-10.994676615999936],[-68.77455704799988,-11.003461608999928],[-68.75763301699996,-11.011936543999923],[-68.77398860699992,-11.035087584999914],[-68.78564164299988,-11.059272154999888],[-68.79117102099988,-11.085110371999903],[-68.78701106799993,-11.126038105999925],[-68.78398799699991,-11.135339863999945],[-68.77592647399993,-11.140610859999896],[-68.75833064899996,-11.141127623999921],[-68.61572953299992,-11.112498880999851],[-68.58803096599988,-11.098649596999891],[-68.53609615099995,-11.061545918999911],[-68.49330806499995,-11.047386575999951],[-68.47656490099989,-11.044802753999944],[-68.4596667079999,-11.044802753999944],[-68.44240677899992,-11.047696634999852],[-68.42819576099996,-11.043665872999936],[-68.3964147549999,-11.014417011999896],[-68.3782763269999,-11.005011900999946],[-68.3311474199999,-11.00046437599991],[-68.31383581599997,-10.993436380999894],[-68.2933202719999,-10.978966979999868],[-68.27435502199995,-10.960053405999929],[-68.25750850499989,-10.938762714999939],[-68.24376257399992,-10.916955260999913],[-68.21756262199992,-10.858044127999918],[-68.20355830899993,-10.838923848999912],[-68.14728267499993,-10.779599303999902],[-68.11209102399997,-10.714073587999891],[-68.0978800049999,-10.69774383499987],[-68.07457393399997,-10.681724140999904],[-68.04377478099991,-10.666944681999892],[-68.02713496999988,-10.661777038999972],[-68.01023677599997,-10.65970998099992],[-67.98181473899987,-10.664360859999888],[-67.8626488859999,-10.658779804999881],[-67.84776607299995,-10.66095021599996],[-67.83334834799993,-10.664980976999857],[-67.81427974499994,-10.675936380999929],[-67.77495397999986,-10.706528828999934],[-67.75578202299994,-10.71417694099992],[-67.7217272549999,-10.705495299999953],[-67.7051391199999,-10.676659850999926],[-67.69604406799994,-10.640486347999897],[-67.68467525199992,-10.610514017999947],[-67.67382320199997,-10.599351907999917],[-67.64348913599994,-10.574547219999886],[-67.6308284109999,-10.559561054999918],[-67.61113968999996,-10.528761900999939],[-67.59997758099992,-10.515429381999922],[-67.58462967899995,-10.50178680399992],[-67.56509598799994,-10.495895690999916],[-67.5293358979999,-10.4785324099999],[-67.48820145699995,-10.46478647799995],[-67.46804764899987,-10.452280781999958],[-67.45052933799991,-10.435951028999924],[-67.43662837799994,-10.4174508669999],[-67.43223588099994,-10.406082051999917],[-67.43187414599996,-10.39791717499989],[-67.42929032499994,-10.390372415999934],[-67.4183349199999,-10.381484069999928],[-67.40918819199999,-10.378796894999894],[-67.36500484199988,-10.378073424999897],[-67.35348099799995,-10.37621307399989],[-67.34283565299995,-10.372492370999892],[-67.33529089399991,-10.366291198999903],[-67.33368892399997,-10.356679382999886],[-67.33942500899994,-10.33487192799987],[-67.33782303899997,-10.326086933999875],[-67.32350866699991,-10.318852233999905],[-67.3006676839999,-10.315131529999903],[-67.2591715089999,-10.313684590999912],[-67.24103308199997,-10.316371764999928],[-67.20175899299991,-10.326810403999971],[-67.18470577,-10.326707051999946],[-67.17230342699992,-10.319575703999902],[-67.1648620199999,-10.308516947999903],[-67.15907425999993,-10.297148131999919],[-67.15173620699994,-10.288983254999891],[-67.14176265499992,-10.285572611999967],[-67.120730347,-10.284539082999885],[-67.11003332599998,-10.282575377999946],[-67.06429968299997,-10.256943867999894],[-66.90265580299996,-10.09312957699997],[-66.77062251799998,-9.992567240999946],[-66.75160559199992,-9.982645364999954],[-66.67000850399995,-9.951536152999905],[-66.66008662899995,-9.945334980999917],[-66.6548156339999,-9.937170104999906],[-66.65249019399997,-9.926111348999896],[-66.64892451999992,-9.91587941499992],[-66.64890434599994,-9.915853948999938],[-66.64261999599996,-9.907921243999866],[-66.63187129799988,-9.904303893999966],[-66.51384232599992,-9.883943379999932],[-66.45286413599993,-9.88869761199993],[-66.43271032799996,-9.886113788999934],[-66.41327998899997,-9.879189147999853],[-66.3717321369999,-9.855934752999929],[-66.35527319399992,-9.849630227999924],[-66.25732051599991,-9.8348507689999],[-66.23897538299994,-9.828132831999879],[-66.2079695239999,-9.808082376999934],[-66.1906579189999,-9.800847676999865],[-66.135467489,-9.795163268999914],[-66.13169510899988,-9.797023620999923],[-66.12792272999994,-9.801157734999947],[-66.12358190899997,-9.805085143999918],[-66.11818172199992,-9.806015319999872],[-66.11311743199994,-9.802397968999884],[-66.10606359899992,-9.790409036999932],[-66.10198116099991,-9.787411804999918],[-66.08699499599993,-9.784517923999928],[-66.081724,-9.785654804999936],[-66.06932165499992,-9.790098978999936],[-66.04278580799993,-9.80487843799996],[-66.02947912699992,-9.808289082999892],[-66.0103846849999,-9.804051614999935],[-65.96565873199995,-9.776766458999916],[-65.94695186399989,-9.771392109999866],[-65.92933020099989,-9.770255227999954],[-65.91527421099997,-9.771702168999937],[-65.87442399099986,-9.781313984999954],[-65.86246089699992,-9.781830748999893],[-65.85042028899993,-9.775319518999922],[-65.83406469699992,-9.758266295999903],[-65.83166174399994,-9.765294290999904],[-65.8273984379999,-9.773975930999953],[-65.82212744199995,-9.781830748999893],[-65.81652054899992,-9.785964863999922],[-65.8064178059999,-9.7844145709999],[-65.80370479399997,-9.775526224999894],[-65.80388566099992,-9.764777526999865],[-65.80264542699987,-9.757336120999938],[-65.79450638799995,-9.737699075999913],[-65.78856359899996,-9.733048196999944],[-65.78220739799991,-9.746277363999937],[-65.7799594729999,-9.755992532999883],[-65.77734981299999,-9.7634339399999],[-65.77244055299988,-9.768808287999958],[-65.76319046999996,-9.77232228599992],[-65.72549251399991,-9.756819355999907],[-65.7099637449999,-9.755992532999883],[-65.71373612499991,-9.778730162999864],[-65.7173017989999,-9.791235859999858],[-65.71311600799996,-9.79423309299996],[-65.70505448499995,-9.79330291699992],[-65.69707047499989,-9.794336445999903],[-65.69435746299996,-9.79371632899992],[-65.68360876499992,-9.789892272999893],[-65.67895788699988,-9.78937550799985],[-65.67262752399995,-9.792579446999923],[-65.66371333799992,-9.802914732999923],[-65.6584940189999,-9.807358906999937],[-65.62888342299996,-9.826892597999844],[-65.61438818399992,-9.833920592999945],[-65.59612056499995,-9.83795135399994],[-65.58397660399996,-9.837227884999947],[-65.5793774009999,-9.832783710999932],[-65.57705196199998,-9.826169128999936],[-65.57188431899996,-9.818831074999949],[-65.57061824599992,-9.815833841999932],[-65.56992061399993,-9.806015319999872],[-65.56798274799989,-9.802087910999902],[-65.56281510499991,-9.7991940299999],[-65.55080033399994,-9.797023620999923],[-65.54682124799987,-9.795163268999914],[-65.53532324199995,-9.782450865999877],[-65.52542720599996,-9.767878111999906],[-65.52139644399995,-9.758576354999889],[-65.5171331379999,-9.743176777999892],[-65.51077693699996,-9.734081725999928],[-65.46522416199987,-9.696461282999906],[-65.45183996699987,-9.68137176499991],[-65.4424865319999,-9.67982147199997],[-65.41623490499998,-9.680131530999873],[-65.39799312399992,-9.686746113999957],[-65.37050126199995,-9.710620625999852],[-65.35605769899992,-9.741626484999884],[-65.3537322599999,-9.745037128999897],[-65.34006384299997,-9.789685566999935],[-65.33032283599994,-9.800744323999936],[-65.31660274299992,-9.8125265499999],[-65.304381267,-9.825652363999907],[-65.29911027099988,-9.841258645999858],[-65.30358028199996,-9.864513040999952],[-65.32523270699993,-9.905130716999905],[-65.33329422999994,-9.926834817999904],[-65.33683406599991,-9.967245788999875],[-65.33293249599996,-10.008380228999952],[-65.32414750199987,-10.046414081999885],[-65.3055698249999,-10.098400572999907],[-65.3014615479999,-10.119691263999897],[-65.29911027099988,-10.162996113999952],[-65.29681066899994,-10.173331400999869],[-65.28683711799994,-10.196482441999862],[-65.28482173699987,-10.206817727999876],[-65.28807735199987,-10.216222838999926],[-65.30536311899996,-10.242164408999884],[-65.31562089099995,-10.291257018999914],[-65.32781652899988,-10.31440806099991],[-65.36502355999995,-10.332184752999936],[-65.37923457899993,-10.351408385999946],[-65.3901899819999,-10.37404266299991],[-65.39464619599994,-10.392070069999889],[-65.39473750899994,-10.39243947299991],[-65.39308386199988,-10.40019093799991],[-65.39143021699994,-10.403498228999908],[-65.38727026399991,-10.406702168999885],[-65.41093806999993,-10.449180195999915],[-65.42538163299997,-10.463132832999918],[-65.44997961499996,-10.468093769999953],[-65.44997961499996,-10.474915059999915],[-65.43791316799988,-10.492588398999914],[-65.43569108199998,-10.499202982999918],[-65.43672460899995,-10.504060566999925],[-65.44147884099993,-10.51336232499996],[-65.4424865319999,-10.519356790999893],[-65.44163387099988,-10.527831725999889],[-65.43930843199996,-10.538167011999903],[-65.43589778699993,-10.546952005999884],[-65.43199621599987,-10.550672708999896],[-65.42923152699993,-10.56142140699991],[-65.43563940499996,-10.610824075999844],[-65.43569108199998,-10.625810241999915],[-65.41861202099992,-10.644517109999896],[-65.4007836509999,-10.655472512999962],[-65.38675349899998,-10.669528502999896],[-65.38106909199993,-10.69805389399994],[-65.38225764999996,-10.715623880999914],[-65.38977657099989,-10.753761087999877],[-65.40473689799995,-10.799236348999926],[-65.39969844599997,-10.812258808999971],[-65.3602951659999,-10.822594095999888],[-65.34218257699987,-10.834893085999923],[-65.32711889699996,-10.850499368999863],[-65.31897985899995,-10.865382181999903],[-65.31277868699996,-10.950958352999862],[-65.31011734999996,-10.956539407999884],[-65.30451045799992,-10.962017109999863],[-65.29960119599988,-10.969665221999932],[-65.29911027099988,-10.982067565999913],[-65.30298600299992,-10.990749205999876],[-65.30965226199993,-10.99664031899988],[-65.31784297699993,-11.002014668999934],[-65.32644710299988,-11.009352721999917],[-65.34197587199992,-11.032813821999893],[-65.3426993409999,-11.050590514999923],[-65.33704077199988,-11.067747089999898],[-65.33329422999994,-11.088521016999932],[-65.34104569599995,-11.106607767999947],[-65.37967382799994,-11.136373391999939],[-65.39473750899994,-11.153426614999958],[-65.39814815299988,-11.178024596999947],[-65.38520320699995,-11.193630879999901],[-65.36833085099997,-11.205413105999895],[-65.3600109459999,-11.218848978999857],[-65.36605708899995,-11.23404184899988],[-65.37861446099996,-11.242000019999935],[-65.38861385099997,-11.253162129999879],[-65.38727026399991,-11.277553404999892],[-65.37448034699995,-11.295846861999877],[-65.35391312699994,-11.31062632299988],[-65.33481868499987,-11.321168313999848],[-65.32644710299988,-11.327782897999938],[-65.33006445399988,-11.340495300999905],[-65.34750524999988,-11.360752460999905],[-65.3537322599999,-11.372431334999874],[-65.35476578799998,-11.382353209999877],[-65.3530087899999,-11.390621438999915],[-65.31954829999991,-11.476404316999918],[-65.29246984899994,-11.50472300199992]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Brazil","sov_a3":"BRA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Brazil","adm0_a3":"BRA","geou_dif":0,"geounit":"Brazil","gu_a3":"BRA","su_dif":0,"subunit":"Brazil","su_a3":"BRA","brk_diff":0,"name":"Brazil","name_long":"Brazil","brk_a3":"BRA","brk_name":"Brazil","brk_group":null,"abbrev":"Brazil","postal":"BR","formal_en":"Federative Republic of Brazil","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Brazil","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":5,"mapcolor13":7,"pop_est":198739269,"gdp_md_est":1993000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"BR","iso_a2":"BR","iso_a3":"BRA","iso_n3":"076","un_a3":"076","wb_a2":"BR","wb_a3":"BRA","woe_id":23424768,"woe_id_eh":23424768,"woe_note":"Exact WOE match as country","adm0_a3_is":"BRA","adm0_a3_us":"BRA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"BRA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-48.54259192599997,-27.816664320999834],[-48.551869269999905,-27.819431247999884],[-48.55980383999989,-27.818454684999907],[-48.563791469999956,-27.817315362999878],[-48.56509355399996,-27.813653253],[-48.56354732999992,-27.739841403999904],[-48.55724036399988,-27.707940362999974],[-48.544422980999855,-27.68157317499997],[-48.55907141799985,-27.674493096999925],[-48.55016028599991,-27.658298434999878],[-48.52391516799989,-27.633721612999864],[-48.52599036399991,-27.611423434999917],[-48.54015051999994,-27.59148528399984],[-48.54710852799994,-27.57724374799993],[-48.52765865799992,-27.57170989399991],[-48.51577714799987,-27.570000908999987],[-48.508168097999935,-27.564873955999985],[-48.504261847999935,-27.55641041499986],[-48.50340735599994,-27.54501718499989],[-48.50670325399997,-27.539971612999864],[-48.513783331999946,-27.53541432099982],[-48.52391516799989,-27.53069426899999],[-48.52415930899994,-27.52353280999986],[-48.52163652299993,-27.51783619599996],[-48.51862545499992,-27.512872002999927],[-48.51707923099988,-27.507094007999868],[-48.52041581899991,-27.495782158999887],[-48.53490149599995,-27.48414478999996],[-48.53750566299993,-27.476169528999918],[-48.530832485999895,-27.46306731599995],[-48.51939856699993,-27.454522393999834],[-48.51207434799994,-27.444756768999895],[-48.51707923099988,-27.4283179669999],[-48.49941972599996,-27.42644622199984],[-48.44579016799988,-27.41236744599989],[-48.43455969999988,-27.404717705999943],[-48.426584438999924,-27.388929945999816],[-48.40876217399994,-27.39959075299994],[-48.39020748599992,-27.420505466999984],[-48.37987219999994,-27.435723565999965],[-48.377308722999906,-27.45818450299988],[-48.38524329299989,-27.47730885199986],[-48.39574133999985,-27.493584893999895],[-48.403065558999856,-27.512383721999935],[-48.40754146999993,-27.517266534],[-48.41197669199991,-27.523695570999834],[-48.414051886999914,-27.53411223799999],[-48.41250566299987,-27.54607512799994],[-48.40697180899985,-27.568617445999834],[-48.40721594999991,-27.579196872999972],[-48.41454016799992,-27.59514739399998],[-48.42756100199989,-27.61305103999993],[-48.441558397999955,-27.62769947699995],[-48.45197506399995,-27.633721612999864],[-48.49657141799992,-27.70273202899989],[-48.49746660099993,-27.723890882999896],[-48.48216712099986,-27.75945403399996],[-48.48607337099995,-27.774346612999906],[-48.49351966099994,-27.77906666499983],[-48.512562628999916,-27.783949476999894],[-48.52049719999988,-27.788344007999882],[-48.534657355999904,-27.807875257999953],[-48.54259192599997,-27.816664320999834]]],[[[-48.57852128799996,-26.420993747999912],[-48.58324133999986,-26.4210751279999],[-48.58629309799994,-26.41961028399984],[-48.592193162999905,-26.414157809999974],[-48.61131751199988,-26.412774347],[-48.62804114499991,-26.387953382999868],[-48.64313717399992,-26.35906340899994],[-48.65733801999991,-26.345310154000014],[-48.69969641799992,-26.31666432099986],[-48.7032771479999,-26.311944268999934],[-48.70116126199988,-26.30722421699994],[-48.68415279899991,-26.28134531000002],[-48.67528235599988,-26.27385833099987],[-48.664173956999946,-26.270765882999882],[-48.64647376199994,-26.26832447699985],[-48.63975989499988,-26.26165129999998],[-48.63670813699988,-26.251885674999855],[-48.630034959999925,-26.23967864399988],[-48.60724850199992,-26.227308851999936],[-48.57762610599988,-26.218438408999972],[-48.558094855999876,-26.205498955999886],[-48.56554114499996,-26.181329033999972],[-48.54759680899991,-26.167250257999925],[-48.53115800699993,-26.170342706],[-48.516346808999934,-26.184014580999943],[-48.49339758999986,-26.218926690999876],[-48.490142381999895,-26.227797132999925],[-48.489125128999945,-26.236016534],[-48.4928279289999,-26.243829033999916],[-48.50755774599989,-26.256605726999865],[-48.51610266799992,-26.28134531000002],[-48.539173956999946,-26.318942966999927],[-48.544422980999855,-26.34189218499992],[-48.54792232999995,-26.351820570999834],[-48.57542883999989,-26.376234632999967],[-48.57909094999994,-26.385430596999853],[-48.57982337099986,-26.397556248000015],[-48.57852128799996,-26.420993747999912]]],[[[-48.26952230299992,-25.47591248599991],[-48.29110736699994,-25.489116798999902],[-48.30922732599993,-25.485979611999937],[-48.323867434999954,-25.467521627999858],[-48.319268379999926,-25.45425302599989],[-48.321474959999904,-25.44197786599996],[-48.33952473999997,-25.42553465399986],[-48.33830429199989,-25.408171059999898],[-48.322324189999904,-25.3837080399999],[-48.29847116699992,-25.366431598999966],[-48.26896122799985,-25.34815504899997],[-48.255379340999895,-25.34821194],[-48.250917057999914,-25.364586946999836],[-48.25667422999993,-25.389096555999885],[-48.26816225399992,-25.426864187999822],[-48.267119565999906,-25.446285000999907],[-48.25588271299989,-25.465745115999866],[-48.26952230299992,-25.47591248599991]]],[[[-47.44831295499992,-24.693536065999893],[-47.49518795499994,-24.723890882999868],[-47.53026282499985,-24.732517184999963],[-47.55003821499989,-24.74236419099989],[-47.7853897779999,-24.923760674999908],[-47.82274329299986,-24.941664320999962],[-47.83804277299993,-24.958265882999925],[-47.85912024599995,-24.989027601999908],[-47.87743079299992,-25.027113539999974],[-47.888295050999886,-25.041192315999922],[-47.90013587099995,-25.03679778399986],[-47.89976966099994,-25.01572031],[-47.88377844999994,-24.982110283999987],[-47.87962805899991,-24.9647763],[-47.872425910999965,-24.958591403999947],[-47.83185787699994,-24.913262627999927],[-47.71739661399994,-24.830336195999916],[-47.67357337099989,-24.811455987999988],[-47.612945115999906,-24.754489841999884],[-47.561675584999875,-24.73601653399994],[-47.5353083979999,-24.710056247999873],[-47.51716061099998,-24.70094166499996],[-47.50670325399991,-24.699802341999927],[-47.483021613999874,-24.70094166499996],[-47.47325598899994,-24.697686455999925],[-47.459055141999926,-24.690199476999865],[-47.44831295499992,-24.686700127999956],[-47.44831295499992,-24.693536065999893]]],[[[-46.38145911399991,-23.92034270599991],[-46.348378058999884,-23.92644622199991],[-46.32795162699989,-23.92644622199991],[-46.31948808499996,-23.927666924999837],[-46.31867428299995,-23.9308407529999],[-46.31989498599995,-23.935316664999945],[-46.31737219999994,-23.940606377999842],[-46.302561001999976,-23.95842864399991],[-46.29161536399991,-23.97918059699991],[-46.291859503999945,-23.990899346999896],[-46.34137936099998,-23.96990325299994],[-46.35537675699993,-23.97063567499997],[-46.365793423999946,-23.981622002999938],[-46.374501105999904,-23.977959893999895],[-46.39159094999988,-23.97730885199985],[-46.39989173099994,-23.974786065999837],[-46.40465247299994,-23.970472915],[-46.42039954299989,-23.94744231599995],[-46.40689042899993,-23.941827080999857],[-46.40196692599997,-23.942803643999838],[-46.393666144999884,-23.94744231599995],[-46.39004472599993,-23.94085051899988],[-46.3883357409999,-23.93572356599995],[-46.389393683999884,-23.929457289999917],[-46.393666144999884,-23.920179945999948],[-46.38145911399991,-23.92034270599991]]],[[[-45.228098110999916,-23.77239348799995],[-45.23485266799986,-23.844414971999896],[-45.26573645699992,-23.839288018999966],[-45.27110755099997,-23.868910415000016],[-45.254994269999905,-23.898207289999945],[-45.22126217399992,-23.892266534],[-45.216420050999915,-23.89910247199994],[-45.21507727799994,-23.90203215899996],[-45.213734503999945,-23.90650807099983],[-45.226470506999895,-23.909274997999887],[-45.22691809799991,-23.91676197699995],[-45.222645636999886,-23.927666924999837],[-45.22126217399992,-23.940606377999842],[-45.21784420499989,-23.944919528999932],[-45.21825110599991,-23.949476820999976],[-45.22459876199994,-23.957696221999882],[-45.22891191299993,-23.961114190999893],[-45.24168860599988,-23.967950128],[-45.24649003799996,-23.96347421699994],[-45.25104732999992,-23.96209075299987],[-45.25601152299986,-23.96209075299987],[-45.262196417999945,-23.961114190999893],[-45.27183997299991,-23.946221612999935],[-45.28050696499988,-23.925225518999895],[-45.2904353509999,-23.91187916499989],[-45.30378170499992,-23.920179945999948],[-45.30996660099987,-23.9126929669999],[-45.34605872299991,-23.928155205999914],[-45.38573157499985,-23.938083592],[-45.421864386999886,-23.935235283999972],[-45.44713294199994,-23.9126929669999],[-45.45295162699989,-23.891371351999837],[-45.447377081999974,-23.877211195999816],[-45.43480383999989,-23.867282809999907],[-45.41982988199996,-23.85808684699984],[-45.355376756999874,-23.800062757999868],[-45.3447159499999,-23.782403252999853],[-45.33771725199995,-23.75212981599995],[-45.33385169199994,-23.74521249799986],[-45.32860266799986,-23.73748137799994],[-45.327056443999936,-23.730889580999868],[-45.32469641799989,-23.725274346999953],[-45.316802537999905,-23.72087981599998],[-45.30846106699994,-23.721368096999964],[-45.29710852799985,-23.724297783999987],[-45.2870173819999,-23.728204033999972],[-45.23656165299988,-23.76181406],[-45.228098110999916,-23.77239348799995]]],[[[-44.207020636999914,-23.104587498],[-44.18651282499988,-23.1176083309999],[-44.17076575399991,-23.110121351999837],[-44.16258704299991,-23.115899346999896],[-44.155140753999945,-23.125909112999874],[-44.141835089999915,-23.131280205999843],[-44.13532467399992,-23.12810637799987],[-44.13023841099991,-23.1210263],[-44.12669837099992,-23.113946221999853],[-44.12441972599993,-23.11077239399988],[-44.11302649599989,-23.114678643999877],[-44.11286373599992,-23.120700778999975],[-44.11693274599989,-23.12672291499989],[-44.11827551999997,-23.131280205999843],[-44.110585089999944,-23.14031340899993],[-44.100900844999984,-23.149021091999927],[-44.08543860599988,-23.161797783999873],[-44.08226477799991,-23.169528903999975],[-44.09776770699992,-23.17392343499995],[-44.10366777299995,-23.178643487999878],[-44.10773678299989,-23.179620049999855],[-44.112660285999965,-23.17742278399986],[-44.11628170499992,-23.172539971999967],[-44.1180720689999,-23.167657158999916],[-44.11827551999997,-23.165459893999923],[-44.12804114499991,-23.164971612999935],[-44.13536536399991,-23.165459893999923],[-44.14098059799991,-23.167738539999988],[-44.14557857999995,-23.172784112999835],[-44.15925045499998,-23.165785414999945],[-44.16820227799991,-23.171563409],[-44.176869269999905,-23.18132903399986],[-44.18968665299994,-23.186618748000015],[-44.23082434799991,-23.193536065999837],[-44.24120032499991,-23.19345468500002],[-44.25597083199989,-23.187676690999965],[-44.26585852799991,-23.18084075299987],[-44.276234503999916,-23.175225518999866],[-44.2926326159999,-23.172784112999835],[-44.301665818999936,-23.178317966999856],[-44.31114661399994,-23.19133879999984],[-44.31891842399992,-23.207207940999865],[-44.32310950399994,-23.22063567499994],[-44.32770748599989,-23.221286716999984],[-44.32896887899991,-23.219659112999963],[-44.32900956899991,-23.217054945999976],[-44.32994544199988,-23.21379973799993],[-44.337961391999926,-23.20663827899997],[-44.34170488199995,-23.198663018999937],[-44.34154212099989,-23.189629815999833],[-44.337391730999855,-23.179620049999855],[-44.3544815749999,-23.180352471999882],[-44.360707160999965,-23.178155205999882],[-44.36465410099996,-23.172784112999835],[-44.367095506999874,-23.165215752999885],[-44.36546790299985,-23.16399504999987],[-44.36001542899992,-23.1638322899999],[-44.32310950399994,-23.145603122999916],[-44.296376105999855,-23.1176083309999],[-44.28416907499988,-23.12322356599998],[-44.27086341099993,-23.115166924999865],[-44.24803626199994,-23.09099700299994],[-44.244862433999884,-23.086032809999907],[-44.24120032499991,-23.069756768999966],[-44.235096808999934,-23.0687802059999],[-44.230458136999914,-23.07146575299997],[-44.227772589999915,-23.074883721999967],[-44.22752844999988,-23.076755466999852],[-44.21910559799994,-23.077732029],[-44.20815995999996,-23.08074309699984],[-44.19668535099992,-23.085219007999896],[-44.18651282499988,-23.09099700299994],[-44.18651282499988,-23.097100518999852],[-44.193226691999904,-23.098077080999914],[-44.19774329299989,-23.100030205999868],[-44.20177161399994,-23.102308851999936],[-44.207020636999914,-23.104587498]]],[[[-29.332875128999948,-20.579685153999932],[-29.338246222999913,-20.58416106599998],[-29.34825598899991,-20.561293226999894],[-29.344309048999914,-20.550957940999965],[-29.332020636999854,-20.553317967000012],[-29.316883917999856,-20.568780205999943],[-29.323963995999918,-20.57146575299984],[-29.32860266799994,-20.57529062299986],[-29.332875128999948,-20.579685153999932]]],[[[-28.881255662999877,-20.516859632999967],[-28.883290167999917,-20.518731377999927],[-28.88190670499992,-20.51539479],[-28.881418423999946,-20.51238372199991],[-28.880482550999943,-20.510837497999873],[-28.877064581999946,-20.511651299999883],[-28.877837693999965,-20.51425546699997],[-28.879261847999942,-20.515720309999935],[-28.881255662999877,-20.516859632999967]]],[[[-38.90623938699986,-13.388848565999865],[-38.89635169199993,-13.453545830999971],[-38.8994034499999,-13.471368096999868],[-38.91633053299992,-13.483982028999932],[-38.90953528599988,-13.495212497999944],[-38.91454016799992,-13.508558851999865],[-38.92381751199988,-13.523125908999887],[-38.929921027999875,-13.53785572699988],[-38.934396938999924,-13.556247653999916],[-38.93196224899992,-13.568333033999949],[-38.91739115999991,-13.580965886999905],[-38.91472879699989,-13.592517056999966],[-38.90504393299989,-13.599892475999866],[-38.90667943099993,-13.606185091999947],[-38.906719997999915,-13.621402905999915],[-38.895952011999896,-13.63035770399992],[-38.89327546199988,-13.639286114999962],[-38.902013198999946,-13.67181217399991],[-38.91281391699991,-13.671780756999965],[-38.918743958999954,-13.667042918],[-38.92033601399996,-13.655495273999874],[-38.937595932999955,-13.655953579999958],[-38.94948897499995,-13.658024097999856],[-38.95752182899988,-13.632290606999888],[-38.97905585999984,-13.599694889999938],[-38.985452621999855,-13.573429162999986],[-38.98377952699988,-13.558211539999872],[-38.980539516999954,-13.547295830999985],[-38.97834225199995,-13.517347915],[-38.973215298999946,-13.508477471999882],[-38.967884894999884,-13.503350518999866],[-38.96784420499989,-13.498304945999918],[-38.97834225199995,-13.490166924999912],[-39.02676347599996,-13.472344658999845],[-39.04588782499994,-13.458184502999913],[-39.03359941299988,-13.442315362999892],[-39.042551235999895,-13.42392343500002],[-39.04190019399996,-13.405938408999987],[-39.03258216099991,-13.39251067499991],[-39.01553300699996,-13.387139580999943],[-38.99958248599995,-13.38982512799984],[-38.98346920499998,-13.394789320999891],[-38.965646938999896,-13.397881768999966],[-38.94420325399997,-13.39462655999992],[-38.91563880099997,-13.38347747199999],[-38.90623938699986,-13.388848565999865]]],[[[-38.61461341099994,-12.924981377999913],[-38.59288489499997,-12.964613540000014],[-38.58747311099992,-12.986911716999884],[-38.60496985599988,-12.996677342],[-38.624989386999935,-13.001641533999873],[-38.64244544199991,-13.01376718499995],[-38.67666581899988,-13.044528903999932],[-38.71849524599989,-13.072849216999984],[-38.73737545499992,-13.089939059999935],[-38.752430792999945,-13.112725518999866],[-38.76268469999988,-13.116794528999916],[-38.77049719999987,-13.121026299999938],[-38.77586829299992,-13.126560153999945],[-38.779123501999976,-13.133884372999873],[-38.78652910099996,-13.133884372999873],[-38.7862849599999,-13.118422132999854],[-38.79336503799988,-13.075127862999949],[-38.79124915299988,-13.05836354000003],[-38.78490149599992,-13.04973723799985],[-38.75926673099988,-13.037041924999883],[-38.73192298099988,-13.01775481599985],[-38.6692602199999,-12.961846612999963],[-38.6692602199999,-12.955010674999867],[-38.67878170499989,-12.9530575499999],[-38.68333899599995,-12.949965101999837],[-38.682769334999875,-12.944512627999984],[-38.67666581899988,-12.935235283999845],[-38.6744685539999,-12.937920830999914],[-38.67430579299992,-12.93906015399986],[-38.67341061099992,-12.940036716999927],[-38.6692602199999,-12.942071221999953],[-38.67064368399988,-12.924981377999913],[-38.67894446499985,-12.910088799999954],[-38.689442511999914,-12.895765882999966],[-38.69713294199994,-12.880547783999987],[-38.68346106699991,-12.873223565999893],[-38.6407771479999,-12.892754815999965],[-38.62230383999986,-12.905368747999859],[-38.61461341099994,-12.924981377999913]]],[[[-34.83801479999991,-7.810798622999869],[-34.84537289699989,-7.813504007999896],[-34.85818140399991,-7.813159570999814],[-34.87372202899991,-7.809366980999896],[-34.88422883399991,-7.804025585999809],[-34.88425892899991,-7.788236817999873],[-34.88277426999991,-7.765537376999844],[-34.880504068999926,-7.753620136999871],[-34.87084006199993,-7.742435084999896],[-34.86000424699989,-7.727775447999846],[-34.85773741199992,-7.714700707999925],[-34.856607621999984,-7.70431380699992],[-34.8527498599999,-7.697378619999853],[-34.84614565899997,-7.695815070999814],[-34.836052042999874,-7.696932735999908],[-34.83019563999991,-7.703828228999882],[-34.832092112999874,-7.711901048999919],[-34.827811777999926,-7.724202802999828],[-34.822331318999886,-7.738796994999888],[-34.822296911999985,-7.749181162999847],[-34.82687987999992,-7.765328242999871],[-34.83381307499991,-7.778418282999894],[-34.83687652899988,-7.795756857999905],[-34.83801479999991,-7.810798622999869]]],[[[-32.441517706999946,-3.88079192499994],[-32.454253709999904,-3.883070570999834],[-32.46279863199993,-3.878350518999909],[-32.45714270699992,-3.870863539999946],[-32.44676673099994,-3.863539320999934],[-32.44127356699991,-3.858575127999899],[-32.43691972599989,-3.849867445999819],[-32.42662512899989,-3.84579843499985],[-32.414173956999974,-3.842705987999864],[-32.40339107999995,-3.837823174999897],[-32.39216061099995,-3.83416106599985],[-32.38658606699994,-3.841241143999909],[-32.3885798819999,-3.852797132999839],[-32.3997289699999,-3.861993096999896],[-32.41437740799992,-3.865492445999806],[-32.441517706999946,-3.88079192499994]]],[[[-44.51593990799992,-2.823337497999958],[-44.51488196499988,-2.834161065999865],[-44.507191535999965,-2.822523695999948],[-44.48078365799998,-2.793145440999865],[-44.48814856699997,-2.872002862999821],[-44.4923396479999,-2.890801690999865],[-44.50047766799991,-2.903578382999896],[-44.50568600199992,-2.915134372999929],[-44.497303839999944,-2.949314059999921],[-44.515207485999895,-2.959730726999823],[-44.53819739499988,-2.969984632999925],[-44.55728105399987,-3.002862237999835],[-44.585357225999864,-3.035577080999943],[-44.58381100199991,-3.046482028999932],[-44.58853105399993,-3.052666924999983],[-44.58995520699992,-3.055433851999865],[-44.59064693899995,-3.060153903999875],[-44.59801184799994,-3.060153903999875],[-44.59850012899991,-3.051690362999835],[-44.60069739499991,-3.045017184999878],[-44.60313880099994,-3.039727471999896],[-44.60423743399991,-3.035902601999965],[-44.60411536399994,-3.025974216999884],[-44.6034236319999,-3.022149346999868],[-44.590891079999885,-2.999607028999876],[-44.58385169199991,-2.990411065999908],[-44.57848059799997,-2.98105234199987],[-44.574289516999926,-2.956963799999855],[-44.56533769399991,-2.932386976999836],[-44.56330318899998,-2.919854424999926],[-44.565663214999915,-2.902601820999919],[-44.58381100199991,-2.862074476999823],[-44.58568274599989,-2.845879815999865],[-44.584095831999946,-2.829522393999852],[-44.576324022999955,-2.799981377999885],[-44.54767818899998,-2.744073174999826],[-44.52660071499989,-2.727797132999967],[-44.48078365799998,-2.704359632999811],[-44.483957485999916,-2.761163018999866],[-44.49779212099995,-2.806817315999979],[-44.50780188699991,-2.808851821],[-44.51374264199995,-2.814629815999893],[-44.51593990799992,-2.823337497999958]]],[[[-42.10577578699988,-2.772749115999886],[-42.13169710699992,-2.773725842999966],[-42.17009871399992,-2.768002411999902],[-42.18930712599993,-2.754599894999856],[-42.215222361999935,-2.74408022199988],[-42.24976710899992,-2.736440982999824],[-42.258415027999945,-2.720160523999879],[-42.258435548999955,-2.696209624999881],[-42.250774627999874,-2.681833348],[-42.23926495099997,-2.680865270999931],[-42.22870271799991,-2.693310917999938],[-42.217182600999934,-2.701923685999887],[-42.19893911499992,-2.720112087999951],[-42.166309758999944,-2.725834115999916],[-42.149023766999846,-2.735402735999812],[-42.12692359499994,-2.754552514999844],[-42.10963028799995,-2.763166178999867],[-42.10577578699988,-2.772749115999886]]],[[[-42.059315558999856,-2.695245049999826],[-42.04824785099993,-2.710625908999944],[-42.044545050999965,-2.707940362999963],[-42.04352779899992,-2.706963799999897],[-42.041411912999905,-2.704359632999811],[-42.03526770699992,-2.704359632999811],[-42.035959438999946,-2.715427341999856],[-42.03477942599994,-2.725844007999925],[-42.031971808999884,-2.735935153999904],[-42.027821417999945,-2.744805596999853],[-42.03530839799993,-2.749769789999903],[-42.04352779899992,-2.754001559999921],[-42.05235755099997,-2.757094007999896],[-42.07396399599986,-2.760511976999823],[-42.08519446499988,-2.758721612999835],[-42.094960089999915,-2.753513278999932],[-42.102894660999965,-2.744805596999853],[-42.088937954999885,-2.739027601999879],[-42.082386847999906,-2.738539320999891],[-42.082386847999906,-2.73113372199991],[-42.09569251199994,-2.729180596999868],[-42.10533606699991,-2.724297783999887],[-42.1087540359999,-2.716078382999896],[-42.102894660999965,-2.704359632999811],[-42.12368730399996,-2.707289320999919],[-42.144154425999915,-2.700860283999916],[-42.186024542999945,-2.676446221999953],[-42.17088782499993,-2.672946872999872],[-42.09137936099992,-2.678399346999825],[-42.07347571499989,-2.684502862999906],[-42.059315558999856,-2.695245049999826]]],[[[-43.81362235799989,-2.45457254999981],[-43.803251744999976,-2.45654589899992],[-43.80078235399992,-2.455066167999888],[-43.79090708699988,-2.441748147999902],[-43.78991976099991,-2.439775075999904],[-43.77510569599988,-2.428924640999909],[-43.764242874999916,-2.428925300999865],[-43.75683420499985,-2.447668583999842],[-43.7612755399999,-2.460985253999894],[-43.76670593399987,-2.47627451999989],[-43.770658241999854,-2.496004145999862],[-43.781523585999935,-2.505377813999885],[-43.80917460799992,-2.512778049999866],[-43.825972856999925,-2.513768703999943],[-43.83832577499987,-2.507358061999866],[-43.842771898999956,-2.493544918999859],[-43.842771800999856,-2.49255821599985],[-43.84425354699991,-2.480224627999874],[-43.83783256499993,-2.463450991999891],[-43.83287907899998,-2.454079051999926],[-43.833879145999845,-2.442237799999916],[-43.84030644399991,-2.432368972999867],[-43.84870801099996,-2.423979566000014],[-43.84178343099998,-2.416582847999962],[-43.84030067099985,-2.415596687999908],[-43.82349856099992,-2.407710144999911],[-43.813122260999904,-2.409194079999864],[-43.80818172599993,-2.421033641999983],[-43.812135253999934,-2.435336330999903],[-43.813622221999964,-2.454079269999852],[-43.81362235799989,-2.45457254999981]]],[[[-43.56080927299987,-2.418036008999849],[-43.57365589099993,-2.423468359999916],[-43.58551419499992,-2.41508618099985],[-43.601814634999926,-2.411638868999901],[-43.60724792099998,-2.396840930999957],[-43.61169165999985,-2.385000984999976],[-43.60774593999989,-2.37316335700001],[-43.59193637599989,-2.368711075999954],[-43.5795855199999,-2.364756042999929],[-43.56476366199984,-2.361293080999829],[-43.54598306399989,-2.360292064999882],[-43.54203934499992,-2.371152828999925],[-43.54500221299992,-2.389905201999866],[-43.55587271099989,-2.403726598999825],[-43.560809354999975,-2.417049208999913],[-43.56080927299987,-2.418036008999849]]],[[[-43.63480545199988,-2.39989492099987],[-43.63924644299988,-2.404333982999986],[-43.65590842899988,-2.400265989999852],[-43.67552721599989,-2.400267454999963],[-43.68663153099993,-2.401007821999855],[-43.69292304099994,-2.40877502199983],[-43.70106602599992,-2.41136452899994],[-43.70439713199994,-2.415433309999884],[-43.70772814099985,-2.425050590999902],[-43.71254018599993,-2.426530346999868],[-43.72475545399996,-2.422092164999909],[-43.732899906999876,-2.419874568999916],[-43.74252353799989,-2.411737906999846],[-43.74326263499995,-2.40286125099999],[-43.73659972999985,-2.395094483999884],[-43.73030641499989,-2.374755107999917],[-43.73401235599991,-2.354414812999863],[-43.73660807799993,-2.334070748999864],[-43.72716223899988,-2.318047783999901],[-43.71540279899989,-2.289239190999879],[-43.7015681629999,-2.274672132999854],[-43.684478318999965,-2.263360283999873],[-43.668853318999965,-2.25872161299985],[-43.65607662699992,-2.257745049999869],[-43.63882402299993,-2.253024997999944],[-43.627308722999885,-2.252048434999878],[-43.60702064799992,-2.256328864999844],[-43.60406073599995,-2.26595419599991],[-43.599992718999914,-2.283722246999929],[-43.60962694999989,-2.301491534999869],[-43.62629900899992,-2.316303511999919],[-43.629633493999876,-2.332951803999919],[-43.63074496699991,-2.35958228499986],[-43.63259507399994,-2.376224452999807],[-43.64110830099992,-2.382882079999902],[-43.63591753299997,-2.39286772999985],[-43.63480545199988,-2.39989492099987]]],[[[-49.35952714799993,-1.883965752999871],[-49.36742102799988,-1.895114841999969],[-49.38548743399991,-1.887790622999887],[-49.42625891799989,-1.877618096999924],[-49.44249426999991,-1.867771091999913],[-49.45299231699988,-1.850192966999884],[-49.44762122299991,-1.837090752999913],[-49.422027147999955,-1.813164971999939],[-49.41885331899987,-1.80462004999984],[-49.415679490999906,-1.783868096999839],[-49.41148841099987,-1.775567315999851],[-49.401926235999895,-1.76734791499986],[-49.37364661399993,-1.751641533999972],[-49.35216223899991,-1.722426039999945],[-49.33812415299988,-1.712660414999903],[-49.318999803999894,-1.717461846999981],[-49.3163142569999,-1.731133721999924],[-49.309803839999915,-1.744398695999863],[-49.30011959499995,-1.754489841999927],[-49.28795325399997,-1.75847747199991],[-49.277007615999906,-1.767022393999838],[-49.28189042899987,-1.785821221999882],[-49.29332434799994,-1.80462004999984],[-49.301625128999916,-1.813164971999939],[-49.310210740999935,-1.818454685],[-49.33263098899994,-1.854099216999884],[-49.35952714799993,-1.883965752999871]]],[[[-49.46476861799994,-1.654265645999899],[-49.43643424999988,-1.664522553999816],[-49.4228437,-1.674181495999917],[-49.42172802399988,-1.684381510999913],[-49.42401842299994,-1.69684307899999],[-49.43197824099988,-1.708730287999884],[-49.444459422999984,-1.712676713],[-49.46828733399994,-1.719436272999843],[-49.48021824199989,-1.73075093099996],[-49.496124170999934,-1.74262639899986],[-49.50860929499993,-1.744872087999951],[-49.52277360599993,-1.735209881999864],[-49.52954501399992,-1.717057497999832],[-49.5278163449999,-1.704023309999812],[-49.527775192999854,-1.684185650999879],[-49.525482445999955,-1.672855280999954],[-49.51355587599991,-1.663241382999871],[-49.501637553999956,-1.658162209999901],[-49.49200020299986,-1.662151043999884],[-49.479513926999886,-1.655371806999852],[-49.46476861799994,-1.654265645999899]]],[[[-44.892241990999935,-1.271905205999914],[-44.87865149599989,-1.285088799999869],[-44.87645423099991,-1.296156507999811],[-44.88536536399994,-1.326429945999976],[-44.892241990999935,-1.326429945999976],[-44.89635169199991,-1.320000908999887],[-44.902699347999935,-1.314141533999845],[-44.910715298999975,-1.309258721999953],[-44.91954505099994,-1.305922132999839],[-44.918080206999974,-1.314629815999837],[-44.91405188699991,-1.321709893999881],[-44.907460089999915,-1.327732028999975],[-44.8985082669999,-1.332696221999853],[-44.90689042899996,-1.338067315999893],[-44.914662238999966,-1.345147393999866],[-44.92125403599994,-1.353122653999918],[-44.92638098899994,-1.360609632999967],[-44.93468176999994,-1.366631768999895],[-44.94322669199994,-1.370863539999903],[-44.952015753999916,-1.371677341999913],[-44.96117102799991,-1.367445570999905],[-44.96385657499987,-1.3905575499999],[-44.98033606699996,-1.396091403999875],[-45.00169837099991,-1.389825127999913],[-45.01891028599993,-1.377699476999837],[-45.02696692599997,-1.360528252999984],[-45.02692623599997,-1.34091562299993],[-45.02196204299992,-1.323418877999884],[-45.015736456999974,-1.312188408999972],[-45.00328528599994,-1.317478122999873],[-44.9962458979999,-1.326348565999822],[-44.99388587099992,-1.338555596999882],[-44.995269334999904,-1.353773695999862],[-44.98033606699996,-1.320489190999865],[-44.97793535099993,-1.300957940999893],[-44.991851365999906,-1.292413018999951],[-44.98997962099992,-1.284763278999932],[-44.98460852799988,-1.269952080999871],[-44.97435462099994,-1.26034921699997],[-44.9474177729999,-1.272881768999881],[-44.93919837099989,-1.268649997999873],[-44.93138587099988,-1.261325778999947],[-44.92296301999994,-1.257582289999917],[-44.915679490999935,-1.258965752999899],[-44.90758216099991,-1.262383721999825],[-44.892241990999935,-1.271905205999914]]],[[[-48.31908118399991,-1.189385674999912],[-48.33409583199992,-1.205010674999897],[-48.34874426999993,-1.208672783999845],[-48.36375891799986,-1.209730726999894],[-48.37987219999994,-1.217217705999872],[-48.38809160099992,-1.211602471999953],[-48.39244544199991,-1.204766533999859],[-48.39391028599988,-1.197198174999983],[-48.39354407499987,-1.189385674999912],[-48.40233313699994,-1.202894789999888],[-48.41429602799988,-1.198011976999823],[-48.43455969999988,-1.176364841999913],[-48.45026607999995,-1.168552341999927],[-48.462066209999904,-1.164483330999957],[-48.46544348899994,-1.157647393999852],[-48.45567786399988,-1.141534112999878],[-48.43195553299998,-1.123630466999927],[-48.42833411399991,-1.117282809999978],[-48.421498175999886,-1.079522393999923],[-48.40501868399991,-1.068780205999829],[-48.3834529289999,-1.065362237999821],[-48.338978644999884,-1.066501559999935],[-48.324208136999914,-1.075860283999887],[-48.310617641999954,-1.112481377999899],[-48.29735266799992,-1.12851327899989],[-48.315337693999965,-1.155205987999821],[-48.31944739499991,-1.159437757999839],[-48.31810462099992,-1.181247653999975],[-48.31908118399991,-1.189385674999912]]],[[[-48.22288977799985,-1.024834893999895],[-48.23770097599993,-1.02792734199987],[-48.287709113999966,-1.024834893999895],[-48.30711829299985,-1.020684502999856],[-48.31627356699994,-1.009535414999931],[-48.31899980399993,-0.993340752999885],[-48.31908118399991,-0.973728122999916],[-48.3126521479999,-0.953301690999851],[-48.2845352859999,-0.921482028999989],[-48.27379309799997,-0.895277601999879],[-48.25454667899993,-0.863051039999931],[-48.250152147999955,-0.850192966999899],[-48.24356035099987,-0.841729424999869],[-48.19493567599991,-0.819431247999916],[-48.16274980399987,-0.850192966999899],[-48.15587317599997,-0.866306247999873],[-48.181263800999886,-0.867120049999883],[-48.181263800999886,-0.874607028999861],[-48.15672766799989,-0.887790622999986],[-48.16246497299994,-0.920830987999864],[-48.19493567599991,-0.983819268999966],[-48.201893683999906,-1.011488539999874],[-48.20738684799994,-1.01783619599999],[-48.22288977799985,-1.024834893999895]]],[[[-47.95079505099991,-0.635837497999916],[-47.94855709499995,-0.641289971999939],[-47.93529212099992,-0.636651299999826],[-47.91462154899989,-0.641696872999944],[-47.89561926999991,-0.653497002999828],[-47.88707434799997,-0.669122002999913],[-47.89557857999992,-0.691094658999916],[-47.916371222999885,-0.708591403999961],[-47.962147589999915,-0.730645440999879],[-47.964100714999944,-0.715101820999877],[-47.97777258999989,-0.691664320999976],[-47.98265540299985,-0.67603932099999],[-47.97862708199989,-0.673109632999882],[-47.97105872299994,-0.665785414999888],[-47.9668676419999,-0.658298434999906],[-47.97793535099996,-0.651788018999824],[-47.97642981699991,-0.644707940999865],[-47.9720759759999,-0.637465101999837],[-47.96906490799989,-0.633884372999873],[-47.961496548999946,-0.632582289999874],[-47.9552302729999,-0.633070570999948],[-47.95079505099991,-0.635837497999916]]],[[[-50.828765428999894,-0.583428643999852],[-50.819203253999916,-0.62021249799993],[-50.81289628799988,-0.655043226999865],[-50.81305904899992,-0.669122002999913],[-50.822255011999914,-0.699883721999896],[-50.84312903599988,-0.71599700299987],[-50.87205969999988,-0.722263278999904],[-50.905506964999944,-0.72323984199997],[-50.934315558999884,-0.731703382999839],[-50.97618567599988,-0.769789320999905],[-51.00108801999991,-0.778415622999916],[-51.02672278599988,-0.78378671699987],[-51.05402584499995,-0.796563408999916],[-51.0780330069999,-0.812269789999888],[-51.09414628799987,-0.82626718499985],[-51.100412563999924,-0.82626718499985],[-51.10973059799997,-0.806735934999949],[-51.11168372299991,-0.782321872999916],[-51.10802161399996,-0.755954684999907],[-51.100412563999924,-0.730645440999879],[-51.08177649599994,-0.701104424999912],[-51.07677161399991,-0.695896091999913],[-51.07347571499985,-0.692966403999975],[-51.06859290299991,-0.67978280999985],[-51.06627356699994,-0.67603932099999],[-51.05882727799985,-0.675062757999925],[-51.04556230399993,-0.681329033999887],[-51.03892981699997,-0.68157317499984],[-51.01646887899994,-0.667901299999897],[-50.98013261599996,-0.626153252999941],[-50.956410285999965,-0.607110283999859],[-50.90953528599991,-0.583265882999882],[-50.86082923099988,-0.56560637799987],[-50.87913977799994,-0.600274346999853],[-50.88133704299992,-0.613946221999882],[-50.87441972599993,-0.613946221999882],[-50.840931769999884,-0.558689059999864],[-50.83674068899995,-0.561781507999939],[-50.83503170499995,-0.565036716999899],[-50.83348548099991,-0.572930596999868],[-50.828765428999894,-0.583428643999852]]],[[[-47.70375236299989,-0.577713644999946],[-47.68764824799987,-0.584553094999976],[-47.66051184799991,-0.579196873],[-47.64915930899994,-0.591566664999945],[-47.64077714799987,-0.60849374799993],[-47.63898678299998,-0.627862237999864],[-47.64688066299996,-0.648125908999873],[-47.64281165299991,-0.657972914999974],[-47.641835089999915,-0.67546965899993],[-47.643422003999945,-0.692966403999975],[-47.64688066299996,-0.702732028999932],[-47.65831458199992,-0.707696221999967],[-47.68565833199989,-0.706801039999974],[-47.701527472999906,-0.709567966999856],[-47.69896399599992,-0.69394296699987],[-47.704213019999884,-0.674899997999958],[-47.71561993499992,-0.636554550999904],[-47.75153607099989,-0.622250038999852],[-47.75089354699992,-0.606762994999912],[-47.76137900999993,-0.57577089699987],[-47.755788192999916,-0.566485160999932],[-47.74524840899994,-0.562782513999906],[-47.74336543699994,-0.547294045999848],[-47.73468157099995,-0.541729848999893],[-47.71547858099996,-0.547333440999907],[-47.706821919999925,-0.559739231999899],[-47.70375236299989,-0.577713644999946]]],[[[-51.2232559889999,-0.557875257999854],[-51.20327714799993,-0.604668877999828],[-51.18602454299992,-0.613946221999882],[-51.162912563999946,-0.620538018999852],[-51.15160071499989,-0.637139580999914],[-51.14997311099995,-0.65894947699995],[-51.15562903599994,-0.68157317499984],[-51.217640753999916,-0.801853122999887],[-51.23070227799988,-0.839288018999838],[-51.252308722999885,-0.961846612999864],[-51.271148240999906,-1.017673434999935],[-51.27562415299988,-1.025160414999917],[-51.285959438999896,-1.0316708309999],[-51.310292120999854,-1.002129815999851],[-51.33145097599987,-1.009942315999837],[-51.410023566999875,-1.153090101999822],[-51.43480383999994,-1.186700127999842],[-51.55626380099994,-1.288669528999932],[-51.597564256999874,-1.312188408999972],[-51.610218878999945,-1.315606377999899],[-51.61888587099995,-1.323663018999923],[-51.62621008999986,-1.332940362999892],[-51.63483639199995,-1.340101820999919],[-51.66270911399991,-1.349867445999877],[-51.669545050999915,-1.353773695999862],[-51.67125403599994,-1.357598565999965],[-51.67414303299995,-1.370375257999825],[-51.675770636999886,-1.37428150799991],[-51.681019660999965,-1.377129815999865],[-51.69513912699989,-1.381117445999933],[-51.70055091099994,-1.384454033999873],[-51.7408341139999,-1.420017184999935],[-51.78563391799986,-1.449965101999808],[-51.80671139199998,-1.45728932099999],[-51.851958787999905,-1.464043877999856],[-51.892486131999924,-1.483656507999811],[-51.91270911399994,-1.481377862999835],[-51.93028723899988,-1.470798434999878],[-51.94391842399992,-1.456231377999941],[-51.95409094999988,-1.422458591999956],[-51.94188391799989,-1.39137135199995],[-51.90294348899991,-1.340101820999919],[-51.89736894399991,-1.325127862999977],[-51.89305579299988,-1.305596612999906],[-51.889271613999966,-1.268161716999884],[-51.88426673099994,-1.256280205999829],[-51.87246660099996,-1.24325937299993],[-51.80565344999991,-1.193942966999941],[-51.79649817599994,-1.189385674999912],[-51.795318162999905,-1.184177341999913],[-51.78746497299994,-1.162286065999965],[-51.78563391799986,-1.158868096999868],[-51.781605597999885,-1.153903903999918],[-51.77204342399989,-1.151462497999887],[-51.75145423099988,-1.148370049999983],[-51.71788489499994,-1.129652601999922],[-51.683949347999885,-1.096937757999896],[-51.668365037999905,-1.057549737999821],[-51.69005286399988,-1.018649998],[-51.68610592399989,-0.88437265399989],[-51.675770636999886,-0.846774997999901],[-51.623605923999946,-0.79021575299997],[-51.582142706999946,-0.698663018999881],[-51.559803839999915,-0.664971612999878],[-51.53404700399997,-0.634698174999883],[-51.50511633999989,-0.607110283999859],[-51.45466061099995,-0.574639580999872],[-51.43993079299986,-0.562188408999944],[-51.42479407499988,-0.553806247999901],[-51.37043209499993,-0.534274997999915],[-51.35484778599994,-0.531996351999851],[-51.34740149599989,-0.531996351999851],[-51.356678839999915,-0.544040622999944],[-51.36302649599986,-0.562269790000016],[-51.36668860599991,-0.581638278999861],[-51.36790930899991,-0.59628671699987],[-51.36693274599986,-0.601657809999921],[-51.36538652299989,-0.605564059999921],[-51.36510169199988,-0.610609632999939],[-51.36790930899991,-0.62021249799993],[-51.37303626199994,-0.629327080999829],[-51.38475501199991,-0.644789321000019],[-51.38841712099989,-0.654880466999899],[-51.381581183999856,-0.654880466999899],[-51.37385006399995,-0.644707940999865],[-51.354400193999936,-0.626234632999925],[-51.34740149599989,-0.613946221999882],[-51.347889777999846,-0.600762627999842],[-51.353138800999936,-0.589450778999847],[-51.35366777299993,-0.580173434999978],[-51.34064693899992,-0.572930596999868],[-51.34064693899992,-0.592868747999944],[-51.333119269999884,-0.592868747999944],[-51.333119269999884,-0.572930596999868],[-51.32583574099996,-0.580498955999829],[-51.317982550999886,-0.586358330999872],[-51.309315558999884,-0.590427341999913],[-51.299631313999924,-0.592868747999944],[-51.32164466099994,-0.562595309999949],[-51.326975063999896,-0.551853122999859],[-51.329213019999884,-0.538669528999904],[-51.32652747299991,-0.532484632999839],[-51.32233639199995,-0.528497002999941],[-51.32013912699997,-0.521416924999897],[-51.30833899599992,-0.518731377999913],[-51.25377356699994,-0.531508070999862],[-51.23753821499988,-0.538262627999899],[-51.2232559889999,-0.557875257999854]]],[[[-51.37559973899993,-0.460544528999875],[-51.393788214999944,-0.466485283999987],[-51.405100063999924,-0.459649346999882],[-51.402007615999935,-0.435723565999837],[-51.39146887899997,-0.424411716999842],[-51.37559973899993,-0.416924737999878],[-51.36119544199988,-0.407484632999868],[-51.35484778599994,-0.391208591999927],[-51.35147050699993,-0.385918877999856],[-51.336537238999874,-0.375583591999842],[-51.33043372299991,-0.366143487999835],[-51.26427161399991,-0.21949635199995],[-51.24323482999998,-0.198663018999881],[-51.23265540299994,-0.179457289999931],[-51.22704016799992,-0.175062757999854],[-51.19782467399989,-0.170830987999835],[-51.18976803299995,-0.168226820999919],[-51.183583136999886,-0.163181247999901],[-51.16616777299993,-0.144463799999841],[-51.165272589999915,-0.140313408999972],[-51.12083899599992,-0.140313408999972],[-51.12026933499993,-0.145440362999906],[-51.121937628999945,-0.146742445999905],[-51.12474524599989,-0.146742445999905],[-51.12828528599988,-0.147719007999882],[-51.133941209999875,-0.160821221999853],[-51.13585364499994,-0.179375908999859],[-51.134877081999946,-0.195896091999927],[-51.13170325399988,-0.203057549999954],[-51.1441951159999,-0.211358330999857],[-51.148671027999875,-0.230564059999907],[-51.14883378799993,-0.263848565999893],[-51.166737433999884,-0.30559661299985],[-51.20128333199989,-0.343682549999826],[-51.27855383999991,-0.401055596999853],[-51.34219316299987,-0.433770440999879],[-51.37559973899993,-0.460544528999875]]],[[[-50.095773891999926,-0.132256768999852],[-50.03844153599991,-0.154554945999976],[-50.00812740799992,-0.153008721999939],[-49.79454505099994,-0.198825778999847],[-49.653472459999904,-0.241143487999864],[-49.51984615799992,-0.235609632999925],[-49.481312628999916,-0.225844007999896],[-49.459584113999966,-0.223402601999865],[-49.44933020699991,-0.224704684999864],[-49.42516028599994,-0.230401299999841],[-49.417958136999886,-0.234551690999965],[-49.3985082669999,-0.253513278999975],[-49.38731848899988,-0.257582289999945],[-49.38683020699989,-0.251560153999932],[-49.39810136599988,-0.236504815999837],[-49.40843665299991,-0.217461846999925],[-49.405018683999884,-0.199314059999935],[-49.38683020699989,-0.184747002999899],[-49.32648678299994,-0.154554945999976],[-49.31826738199996,-0.160088799999912],[-49.31285559799991,-0.160088799999912],[-49.3072403639999,-0.157321872999859],[-49.29857337099992,-0.154554945999976],[-49.28368079299986,-0.15520598799985],[-49.27464758999986,-0.154473565999822],[-49.26162675699987,-0.14902109199987],[-49.23643958199989,-0.147719007999882],[-49.21540279899997,-0.141208591999884],[-49.20604407499994,-0.140313408999972],[-49.19481360599994,-0.141534112999906],[-49.181711391999954,-0.149346612999892],[-49.16820227799988,-0.154554945999976],[-49.15762285099992,-0.154066664999988],[-49.14476477799991,-0.151299737999935],[-49.13158118399988,-0.152032158999873],[-49.12035071499986,-0.162041924999869],[-49.09137936099995,-0.153903903999932],[-49.02562415299988,-0.160088799999912],[-49.010606910999904,-0.159888876999972],[-48.99271863199991,-0.171848386999898],[-48.97960455799991,-0.186191328999854],[-48.9605013069999,-0.182636553999984],[-48.94735949699995,-0.173104866999864],[-48.927048843999955,-0.158808582999939],[-48.89361192799987,-0.152885719999887],[-48.88048935499992,-0.163647145999903],[-48.88171072599988,-0.191104082999829],[-48.892471071999886,-0.205416419999906],[-48.8919571609999,-0.215915622999887],[-48.85973059799997,-0.209242445999934],[-48.81651770699997,-0.207614841999913],[-48.70201575399997,-0.237237237999864],[-48.6842341789999,-0.236504815999837],[-48.646311001999976,-0.226250908999901],[-48.623524542999945,-0.223402601999865],[-48.60142981699994,-0.226169528999918],[-48.544422980999855,-0.244073174999883],[-48.42723548099988,-0.259942315999908],[-48.40099036399994,-0.271254164999888],[-48.39354407499987,-0.271254164999888],[-48.384388800999886,-0.281426690999922],[-48.37555904899992,-0.288506768999895],[-48.36888587099989,-0.297946872999901],[-48.36628170499998,-0.315362237999963],[-48.36978105399995,-0.360609632999811],[-48.373117641999976,-0.373711846999882],[-48.37889563699986,-0.384047132999967],[-48.38841712099995,-0.395603122999901],[-48.3997289699999,-0.4047177059999],[-48.41063391799992,-0.408461195999934],[-48.420643683999884,-0.414971612999835],[-48.43150794199988,-0.447198174999954],[-48.454701300999915,-0.485609632999882],[-48.46157792899992,-0.515557549999855],[-48.462513800999915,-0.576104424999926],[-48.46532141799985,-0.590427341999913],[-48.48289954299989,-0.627618096999825],[-48.48436438699994,-0.653578382999811],[-48.48717200399989,-0.664727471999839],[-48.49657141799992,-0.67603932099999],[-48.48582923099991,-0.684747002999899],[-48.48802649599989,-0.701836846999839],[-48.494455532999915,-0.722832940999965],[-48.49657141799992,-0.743747653999847],[-48.517689581999946,-0.734795830999914],[-48.53750566299993,-0.718926690999879],[-48.57233639199998,-0.68157317499984],[-48.56086178299994,-0.71396249799993],[-48.53791256399995,-0.744805596999896],[-48.523548956999974,-0.773370049999969],[-48.53750566299993,-0.798923434999878],[-48.526234503999945,-0.820245049999926],[-48.52342688699991,-0.846368096999896],[-48.52765865799992,-0.872653903999989],[-48.53750566299993,-0.894463799999869],[-48.56012936099992,-0.914320570999862],[-48.612945115999906,-0.932875257999868],[-48.63316809799991,-0.949151299999897],[-48.627674933999884,-0.958754164999888],[-48.63072669199997,-0.968926690999837],[-48.64745032499991,-0.9906552059999],[-48.657541469999956,-0.999200127999913],[-48.664784308999884,-1.001234632999939],[-48.66510982999991,-1.003106377999828],[-48.654286261999914,-1.011163018999852],[-48.645334438999896,-1.011895440999879],[-48.635853644999884,-1.008396091999899],[-48.62877356699994,-1.009698174999897],[-48.62694251199986,-1.024834893999895],[-48.630686001999976,-1.029066664999903],[-48.654286261999914,-1.045342705999843],[-48.654286261999914,-1.05282968499999],[-48.62828528599994,-1.047784112999963],[-48.62877356699994,-1.06316497199991],[-48.642811652999875,-1.083591403999975],[-48.65733801999991,-1.093682549999855],[-48.67243404899992,-1.101169529],[-48.717681443999936,-1.134047132999825],[-48.739898240999906,-1.141534112999878],[-48.75829016799986,-1.150648695999877],[-48.79613196499988,-1.192071221999882],[-48.81871497299996,-1.202894789999888],[-48.849598761999914,-1.198011976999823],[-48.875884568999936,-1.181247653999975],[-48.89769446499989,-1.158135674999841],[-48.91494706899991,-1.134698174999869],[-48.92113196499989,-1.141534112999878],[-48.91128495999993,-1.161228122999916],[-48.89484615799994,-1.181247653999975],[-48.87531490799997,-1.196709893999824],[-48.85631262899997,-1.202894789999888],[-48.84203040299988,-1.213311455999957],[-48.837147589999915,-1.23398202899989],[-48.84455318899998,-1.249281507999854],[-48.86717688699986,-1.243910414999974],[-48.86717688699986,-1.251397393999866],[-48.85387122299994,-1.254327080999886],[-48.824818488999966,-1.254652601999808],[-48.81187903599994,-1.257582289999917],[-48.796254035999965,-1.268487237999906],[-48.79308020699992,-1.279717705999985],[-48.80235755099994,-1.339776299999897],[-48.83299719999988,-1.415785414999917],[-48.83922278599994,-1.415785414999917],[-48.85838782499988,-1.399183851999865],[-48.94220943899998,-1.295830987999878],[-48.9637751939999,-1.282972914999945],[-48.99006100199992,-1.292413018999951],[-48.95738684799997,-1.295505466999856],[-48.946034308999906,-1.309014580999914],[-48.95498613199993,-1.324151299999911],[-48.98326575399989,-1.332696221999853],[-48.98326575399989,-1.340101820999919],[-48.9772029289999,-1.347263278999876],[-48.976633266999926,-1.35613372199991],[-48.98094641799992,-1.365655205999914],[-48.99006100199992,-1.37428150799991],[-48.97691809799994,-1.369073174999826],[-48.95311438699988,-1.350355726999865],[-48.94505774599991,-1.346368096999882],[-48.934966600999864,-1.351495049999897],[-48.929839647999955,-1.363539320999905],[-48.92634029899994,-1.37753671699987],[-48.92113196499989,-1.38787200299987],[-48.89883378799993,-1.393649997999844],[-48.89757239499991,-1.394707940999893],[-48.89240475199992,-1.398044528999918],[-48.88719641799992,-1.412692966999927],[-48.883900519999884,-1.415785414999917],[-48.87401282499988,-1.419366143999881],[-48.83922278599994,-1.442559502999828],[-48.83922278599994,-1.449965101999808],[-48.8553767569999,-1.453545830999872],[-48.871937628999945,-1.458916924999841],[-48.887562628999945,-1.466729424999826],[-48.901275193999965,-1.476739190999908],[-48.90461178299989,-1.483493747999844],[-48.90689042899996,-1.492771091999899],[-48.91063391799989,-1.501071872999873],[-48.918080206999974,-1.504571221999953],[-48.93529212099989,-1.49334075299987],[-48.94444739499997,-1.490980726999823],[-48.948475714999944,-1.501153252999856],[-48.95616614499997,-1.508721612999906],[-48.97386633999986,-1.514092705999872],[-49.024891730999855,-1.521579684999921],[-49.03652910099996,-1.528252862999892],[-49.04808508999988,-1.533298434999921],[-49.06578528599991,-1.531914971999839],[-49.0721736319999,-1.52695077899989],[-49.072417772999955,-1.520114841999956],[-49.073475714999915,-1.513929945999905],[-49.08250891799992,-1.511407158999887],[-49.09080969999991,-1.511163018999852],[-49.09691321499989,-1.510186455999872],[-49.10187740799995,-1.507989190999879],[-49.1067602199999,-1.504571221999953],[-49.11278235599991,-1.495293877999913],[-49.124989386999886,-1.463311455999914],[-49.12726803299995,-1.453057549999883],[-49.14952551999991,-1.409274998],[-49.15143795499998,-1.401625257999896],[-49.18187415299993,-1.401625257999896],[-49.18724524599989,-1.397637627999913],[-49.19151770699989,-1.391289971999967],[-49.19774329299986,-1.388360283999859],[-49.20909583199992,-1.394707940999893],[-49.19163977799988,-1.408623955999957],[-49.18439693899995,-1.429375908999873],[-49.18439693899995,-1.453383070999905],[-49.20409094999988,-1.529066664999902],[-49.20152747299997,-1.553155205999914],[-49.18187415299993,-1.56609465899983],[-49.19163977799988,-1.571954033999958],[-49.1954646479999,-1.573500257999825],[-49.19644120999995,-1.5687802059999],[-49.197621222999885,-1.566013278999847],[-49.20299231699994,-1.559828382999882],[-49.2079158189999,-1.565524997999859],[-49.21344967399992,-1.569105726999922],[-49.22028561099992,-1.571547132999953],[-49.22960364499988,-1.573500257999825],[-49.22203528599994,-1.583265882999854],[-49.211537238999966,-1.584242445999919],[-49.201568162999955,-1.586602471999967],[-49.1954646479999,-1.600844007999882],[-49.18895423099988,-1.593519789999888],[-49.18297278599996,-1.590101820999877],[-49.16820227799988,-1.586602471999967],[-49.18773352799988,-1.607598565999837],[-49.222767706999946,-1.621189059999963],[-49.256255662999905,-1.620049737999849],[-49.274572066999916,-1.62159322199993],[-49.293729208999935,-1.617531058999901],[-49.313877875999935,-1.60439363999987],[-49.33200330999995,-1.588234402999902],[-49.35317949099988,-1.573500257999825],[-49.38902747299988,-1.538832290000016],[-49.39411373599992,-1.528903903999932],[-49.391468878999916,-1.514743747999916],[-49.38646399599989,-1.503838799999926],[-49.383534308999856,-1.494235934999864],[-49.38731848899988,-1.484144789999888],[-49.39354407499985,-1.496189059999906],[-49.40652225999985,-1.517515745999944],[-49.41463114099986,-1.541702350999898],[-49.40962243599994,-1.563897014999895],[-49.375365149999936,-1.586142333999916],[-49.354233190999935,-1.614407902999872],[-49.35830571799994,-1.637586679999927],[-49.37243884299994,-1.646635346999972],[-49.40671414999994,-1.63750332899987],[-49.42486220199996,-1.632430420999896],[-49.44302450799992,-1.635422489999925],[-49.468228275999934,-1.623277590999848],[-49.483332109999964,-1.60207371599985],[-49.4845271479999,-1.568047783999873],[-49.490305141999954,-1.556084893999852],[-49.49657141799989,-1.497735283999859],[-49.50487219999988,-1.501397393999895],[-49.513254360999916,-1.502373955999871],[-49.52196204299991,-1.501153252999856],[-49.531320766999954,-1.497735283999859],[-49.524891730999855,-1.505629165],[-49.51573645699994,-1.513360283999845],[-49.50755774599986,-1.52263762799997],[-49.50397701699998,-1.535332940999936],[-49.50397701699998,-1.586602471999967],[-49.50926673099985,-1.582452080999843],[-49.51398678299995,-1.581638278999932],[-49.51878821499986,-1.581719658999916],[-49.52440344999985,-1.580336195999934],[-49.51390540299988,-1.592217705999886],[-49.51406816299993,-1.60808684699991],[-49.52196204299991,-1.622165622999858],[-49.534413214999944,-1.628106377999885],[-49.551258917999945,-1.633070570999919],[-49.55654863199993,-1.645440362999864],[-49.55345618399994,-1.660902601999893],[-49.544911261999914,-1.675957940999908],[-49.55919348899991,-1.675957940999908],[-49.55919348899991,-1.682793877999913],[-49.54539954299988,-1.686700127999828],[-49.54426021999995,-1.698337497999916],[-49.55174719999994,-1.720879815999908],[-49.55870520699992,-1.724216403999932],[-49.60326087099992,-1.717461846999981],[-49.62360592399989,-1.724867445999891],[-49.65416419199994,-1.760023695999948],[-49.669056769999884,-1.772149346999853],[-49.68834387899991,-1.769301039999903],[-49.705922003999945,-1.750583591999842],[-49.71873938699988,-1.722832940999865],[-49.72752844999985,-1.677666924999911],[-49.745350714999915,-1.652764580999957],[-49.75104732999991,-1.641778252999913],[-49.75011145699992,-1.624932549999912],[-49.73997962099986,-1.595147393999909],[-49.74421139199998,-1.580336195999934],[-49.748036261999914,-1.597914320999863],[-49.76113847599987,-1.630059502999828],[-49.76402747299991,-1.645196221999825],[-49.759755011999886,-1.669366143999838],[-49.7298884759999,-1.730564059999864],[-49.728505011999914,-1.741794528999876],[-49.72964433499996,-1.752618096999868],[-49.73265540299988,-1.762872002999884],[-49.73672441299993,-1.772149346999853],[-49.743763800999886,-1.780043226999908],[-49.77643795499991,-1.807224216999927],[-49.800282355999904,-1.817315362999892],[-49.80907141799989,-1.81926848799985],[-49.82355709499992,-1.816582940999865],[-49.83307857999992,-1.809828382999825],[-49.84166419199994,-1.801202080999829],[-49.8534236319999,-1.792657158999901],[-49.86339270699992,-1.789483330999843],[-49.88438880099994,-1.788262627999913],[-49.89439856699994,-1.785821221999882],[-49.90599524599995,-1.778090101999865],[-49.915353969999984,-1.769138278999847],[-49.92540442599994,-1.761651299999869],[-49.948109503999916,-1.756280205999914],[-49.968129035999965,-1.747002862999949],[-49.98005123599992,-1.744805596999868],[-50.00230872299994,-1.745538018999895],[-50.00739498599998,-1.741469007999854],[-50.028472459999904,-1.720472914999902],[-50.032338019999905,-1.715590101999922],[-50.032338019999905,-1.709730726999894],[-50.02594967399989,-1.660739841999927],[-50.02818762899997,-1.655450127999856],[-50.050282355999855,-1.657403252999899],[-50.05479895699992,-1.664727471999896],[-50.05199133999986,-1.679375908999916],[-50.05207271999993,-1.703871351999851],[-50.05988521999993,-1.717868747999987],[-50.08706620999993,-1.739190362999878],[-50.09300696499989,-1.748223565999965],[-50.15501868399991,-1.778985283999859],[-50.17003333199994,-1.77044036299985],[-50.17772376199986,-1.758965752999899],[-50.18700110599991,-1.749118747999958],[-50.224517381999924,-1.739027601999822],[-50.2337947259999,-1.724379164999903],[-50.237172003999916,-1.705336195999905],[-50.23460852799991,-1.633965752999913],[-50.23766028599991,-1.621270440999865],[-50.248361782999915,-1.615411065999908],[-50.26187089799989,-1.614190362999892],[-50.27358964799987,-1.610528252999856],[-50.278553839999915,-1.597426039999874],[-50.27623450399997,-1.588474216999856],[-50.27041581899991,-1.5858700499999],[-50.263661261999886,-1.584893487999963],[-50.25816809799994,-1.580336195999934],[-50.249623175999915,-1.563083591999927],[-50.24990800699996,-1.559340101999893],[-50.25381425699996,-1.543389580999886],[-50.26219641799992,-1.527113539999945],[-50.264963344999956,-1.518243096999896],[-50.26447506399998,-1.510918877999899],[-50.259429490999956,-1.49334075299987],[-50.25816809799994,-1.484144789999888],[-50.27594967399992,-1.497002862999821],[-50.27684485599991,-1.51458098799985],[-50.26301021999993,-1.550713799999883],[-50.26008053299989,-1.552666924999926],[-50.257883266999926,-1.554864190999837],[-50.25816809799994,-1.559828382999882],[-50.261097785999965,-1.564873955999914],[-50.26471920499991,-1.564873955999914],[-50.26842200399997,-1.564060153999904],[-50.271799282999886,-1.56609465899983],[-50.278553839999915,-1.574476820999891],[-50.285227016999976,-1.580743096999839],[-50.290272589999915,-1.587334893999824],[-50.29222571499986,-1.597426039999874],[-50.28123938699991,-1.61305103999986],[-50.25926673099988,-1.627048434999921],[-50.24258378799996,-1.641534112999878],[-50.24762936099998,-1.658868096999868],[-50.254994269999884,-1.675225518999881],[-50.26024329299986,-1.725274346999896],[-50.264963344999956,-1.744805596999868],[-50.271799282999886,-1.744805596999868],[-50.27472896999993,-1.724704684999921],[-50.29906165299988,-1.655450127999856],[-50.30650794199997,-1.655450127999856],[-50.28722083199992,-1.730889580999886],[-50.284779425999886,-1.755059502999899],[-50.294178839999915,-1.772719007999825],[-50.31655839799993,-1.77849700299987],[-50.343576626999976,-1.776950778999932],[-50.36668860599994,-1.772149346999853],[-50.34288489499994,-1.784926039999888],[-50.31212317599994,-1.793715101999851],[-50.296986456999946,-1.803480726999894],[-50.319569464999944,-1.81926848799985],[-50.348744269999884,-1.828708591999941],[-50.376779751999884,-1.832207940999851],[-50.405181443999936,-1.830987237999835],[-50.55972245999996,-1.799493096999825],[-50.5733943349999,-1.793633721999868],[-50.596424933999884,-1.7758114559999],[-50.603871222999935,-1.772149346999853],[-50.60667883999989,-1.764825127999927],[-50.60008704299992,-1.749281507999925],[-50.58600826699998,-1.734633071],[-50.56655839799987,-1.730564059999864],[-50.58788001199994,-1.684502862999835],[-50.7423396479999,-1.531182549999911],[-50.75792395699989,-1.508477471999868],[-50.76455644399996,-1.487562757999896],[-50.76862545499991,-1.478448174999912],[-50.79596920499989,-1.446221612999878],[-50.80321204299992,-1.434991143999866],[-50.80418860599988,-1.42498137799997],[-50.79938717399988,-1.401625257999896],[-50.797434048999946,-1.401543877999913],[-50.787953253999945,-1.394707940999893],[-50.785715298999946,-1.394707940999893],[-50.787953253999945,-1.388360283999859],[-50.79238847599993,-1.384942315999851],[-50.796945766999954,-1.382907809999921],[-50.79938717399988,-1.381117445999933],[-50.81163489499997,-1.349867445999877],[-50.81305904899992,-1.3363583309999],[-50.81086178299994,-1.314711195999905],[-50.77961178299998,-1.193942966999941],[-50.77822831899991,-1.17253997199991],[-50.78563391799988,-1.152113539999931],[-50.799224412999926,-1.126560153999847],[-50.805816209999904,-1.102308851999865],[-50.79255123599997,-1.086195570999891],[-50.780140753999945,-1.0883114559999],[-50.73729407499987,-1.113539320999948],[-50.67585201699998,-1.141534112999878],[-50.62930253799996,-1.150160414999888],[-50.61375891799986,-1.155205987999821],[-50.55972245999996,-1.183200778999847],[-50.571848110999944,-1.158623955999829],[-50.61668860599988,-1.119886976999893],[-50.589833136999886,-1.111504815999922],[-50.57652747299996,-1.102634372999887],[-50.56969153599994,-1.100518487999878],[-50.54230709499998,-1.105726820999877],[-50.53929602799988,-1.107354424999897],[-50.52208411399996,-1.096449476999908],[-50.522206183999934,-1.086602471999896],[-50.53416907499988,-1.078545830999857],[-50.55235755099997,-1.073337497999873],[-50.54434160099993,-1.052178643999866],[-50.54552161399993,-1.05282968499999],[-50.53001868399994,-1.038750908999873],[-50.51537024599992,-1.036716403999847],[-50.49864661399991,-1.039320570999934],[-50.47663326699998,-1.039157809999878],[-50.494984503999945,-1.029229424999869],[-50.51244055899991,-1.023858330999914],[-50.528472459999904,-1.025323174999883],[-50.54238847599987,-1.035332940999865],[-50.55846106699994,-1.051202080999971],[-50.57677161399991,-1.06316497199991],[-50.596587693999936,-1.070570570999905],[-50.61750240799989,-1.073337497999873],[-50.626128709999904,-1.076104424999826],[-50.645659959999875,-1.089450778999932],[-50.65469316299988,-1.093682549999855],[-50.66380774599989,-1.09490325299987],[-50.735178188999946,-1.089532158999916],[-50.7557673819999,-1.082207940999822],[-50.76455644399996,-1.069919528999861],[-50.768299933999884,-1.061130466999884],[-50.78612219999988,-1.033379815999822],[-50.79255123599997,-1.018649998],[-50.798003709999904,-0.984307549999954],[-50.798166469999984,-0.91130950299987],[-50.79255123599997,-0.874607028999861],[-50.78648841099988,-0.857354424999855],[-50.7786352199999,-0.842543226999879],[-50.774159308999934,-0.829847914999917],[-50.77822831899991,-0.819431247999916],[-50.76927649599986,-0.807305596999839],[-50.75763912699994,-0.806817315999851],[-50.74600175699996,-0.814222914999931],[-50.73729407499987,-0.82626718499985],[-50.74058997299991,-0.802015882999853],[-50.75377356699994,-0.792413018999881],[-50.770741339999915,-0.785739841999913],[-50.785715298999946,-0.770928643999937],[-50.78734290299988,-0.763278903999918],[-50.785715298999946,-0.733656507999882],[-50.783558722999935,-0.728773695999905],[-50.774240688999924,-0.720635674999883],[-50.77204342399992,-0.716403903999876],[-50.774159308999934,-0.710870049999855],[-50.78351803299995,-0.707289320999962],[-50.785715298999946,-0.702732028999932],[-50.77989661399991,-0.660577080999971],[-50.73729407499987,-0.551853122999859],[-50.72468014199998,-0.563653252999828],[-50.711293097999885,-0.586521091999927],[-50.70059160099996,-0.611748955999971],[-50.69635982999995,-0.630629164999917],[-50.68407141799989,-0.639825127999885],[-50.60753333199989,-0.67603932099999],[-50.587961391999926,-0.681329033999887],[-50.57738196499989,-0.682224216999884],[-50.55199133999986,-0.679620049999883],[-50.54845130099997,-0.677829684999978],[-50.550404425999915,-0.673760674999926],[-50.55235755099997,-0.665459893999866],[-50.56037350199992,-0.659274997999972],[-50.61375891799986,-0.641289971999939],[-50.673491990999935,-0.631036065999837],[-50.68268795499989,-0.623793226999893],[-50.685047980999855,-0.607842705999886],[-50.69074459499993,-0.587090752999899],[-50.71646074099988,-0.521742445999919],[-50.721547003999916,-0.503350518999881],[-50.72362219999994,-0.47991301899998],[-50.721058722999906,-0.465020440999851],[-50.703195766999954,-0.408461195999934],[-50.699940558999906,-0.371514580999886],[-50.69635982999995,-0.360039971999839],[-50.691761847999906,-0.354180596999896],[-50.67857825399994,-0.341078382999839],[-50.67585201699998,-0.335870049999841],[-50.67369544199988,-0.319268487999878],[-50.66832434799991,-0.298760674999912],[-50.65469316299988,-0.263848565999893],[-50.64647376199988,-0.255629164999903],[-50.613596157999886,-0.229180596999825],[-50.603871222999935,-0.223402601999865],[-50.598947719999984,-0.219333591999984],[-50.58336341099987,-0.192152601999894],[-50.57445227799985,-0.188083591999842],[-50.5625707669999,-0.188083591999842],[-50.550038214999915,-0.189222914999874],[-50.53929602799988,-0.188734632999967],[-50.52196204299989,-0.180352471999825],[-50.507801886999886,-0.168877862999963],[-50.49128170499989,-0.158868096999896],[-50.46666419199991,-0.154554945999976],[-50.443714972999906,-0.157972914999903],[-50.42658443899995,-0.163506768999824],[-50.411488410999965,-0.1644833309999],[-50.394642706999946,-0.154554945999976],[-50.38463294199988,-0.13892994599999],[-50.377797003999945,-0.120700778999918],[-50.36815344999991,-0.105645440999822],[-50.34996497299991,-0.09937916499986],[-50.327381964999915,-0.100925388999897],[-50.271799282999886,-0.113702080999857],[-50.095773891999926,-0.132256768999852]]],[[[-50.894886847999885,-0.30624765399989],[-50.923410610999895,-0.330498955999872],[-50.932036912999905,-0.328301690999879],[-50.94115149599989,-0.322035414999931],[-50.964955206999974,-0.314222914999931],[-50.96898352799985,-0.304864190999908],[-50.970366990999935,-0.29550546699987],[-50.97374426999994,-0.291192315999879],[-51.01280676999991,-0.273614190999851],[-51.03795325399989,-0.235935153999947],[-51.03868567599991,-0.200290622999901],[-51.00475012899997,-0.188734632999967],[-51.00475012899997,-0.182549737999906],[-51.01252193899995,-0.180108330999886],[-51.03278561099998,-0.168226820999919],[-50.9825740229999,-0.085544528999861],[-50.97240576399986,-0.042813515999853],[-50.947265908999896,-0.011973844999915],[-50.925145750999945,-0.006148943999875],[-50.88976759399989,0.001108879000142],[-50.81753522799991,0.034742430000065],[-50.766003720999976,0.046366758000147],[-50.73955032399993,0.034524682000068],[-50.724905645999876,0.008007150000154],[-50.70230058499995,-0.002496026999879],[-50.67585201699998,-0.010674737999892],[-50.66454016799992,-0.015476169999886],[-50.65526282499985,-0.023776950999945],[-50.647694464999915,-0.034030856999891],[-50.641713019999884,-0.044732354999908],[-50.64085852799988,-0.049574476999894],[-50.64232337099995,-0.060479424999869],[-50.641713019999884,-0.065240166999871],[-50.629628058999884,-0.081597588999884],[-50.62743079299988,-0.085707289999917],[-50.62889563699986,-0.104099216999955],[-50.638783331999946,-0.1210263],[-50.67585201699998,-0.154554945999976],[-50.69517981699991,-0.167413018999909],[-50.75841223899988,-0.195570570999905],[-50.781239386999886,-0.210056247999859],[-50.8372289699999,-0.267673434999907],[-50.85594641799991,-0.282484632999882],[-50.894886847999885,-0.30624765399989]]],[[[-49.48570716099991,0.069240627000113],[-49.48289954299985,0.063788153000175],[-49.46979732999989,0.06997304900014],[-49.45604407499988,0.074611721000082],[-49.44204667899993,0.075669664000131],[-49.42821204299992,0.071275132000139],[-49.39126542899987,0.051092841000113],[-49.38109290299991,0.043931382000082],[-49.36986243399991,0.028225002000113],[-49.369252081999946,0.016099351000108],[-49.371978318999936,0.006984768000038],[-49.37051347599987,-0.000339450999888],[-49.35912024599992,-0.008355402],[-49.35167395699992,-0.008477471999981],[-49.34752356699988,-0.009698174999826],[-49.34630286399988,-0.020847263999926],[-49.34898841099994,-0.030857028999918],[-49.35448157499988,-0.037163994999858],[-49.359283006999874,-0.044732354999908],[-49.35997473899991,-0.058444919999843],[-49.36473548099991,-0.056573174999954],[-49.37633216099994,-0.054131768999923],[-49.38109290299991,-0.052178643999881],[-49.385853644999905,-0.069634697999945],[-49.419992641999926,-0.095310153999904],[-49.42821204299992,-0.110202731999863],[-49.43871008999989,-0.120538018999952],[-49.46336829299989,-0.12802499799993],[-49.49201412699994,-0.132582289999874],[-49.686879035999965,-0.13543059699991],[-49.71621660099987,-0.147719007999882],[-49.83234615799989,-0.10312265399989],[-49.823475714999944,-0.070367119999872],[-49.80101477799985,-0.045953057999924],[-49.74046790299985,-0.000339450999888],[-49.67609615799995,0.028062242000146],[-49.62808183499996,0.057603257000025],[-49.52452551999994,0.073879299000055],[-49.49657141799989,0.085598049000126],[-49.49376380099994,0.079820054000066],[-49.48570716099991,0.069240627000113]]],[[[-50.4377293279999,-0.000032628999904],[-50.44749915299993,-0.015150648999864],[-50.487456834999875,-0.017429294999928],[-50.495716925999965,-0.016615492999918],[-50.50572669199994,-0.014336846999853],[-50.51406816299993,-0.011081638999897],[-50.517567511999914,-0.007256768999966],[-50.52306067599994,-0.003838799999869],[-50.55972245999996,-0.003838799999869],[-50.572173631999874,0.001654364000061],[-50.58812415299988,0.012111721000139],[-50.60171464799993,0.023993231000176],[-50.60753333199989,0.033758856000119],[-50.609730597999885,0.053412177],[-50.61546790299985,0.058823960000041],[-50.623890753999916,0.061224677000069],[-50.634266730999904,0.071275132000139],[-50.63768469999991,0.080552476000193],[-50.63662675699996,0.088202216000042],[-50.63442949099988,0.096096096000096],[-50.634266730999904,0.106105861],[-50.637562628999945,0.117661851000108],[-50.64671790299994,0.138902085000012],[-50.64854895699992,0.150458075000117],[-50.6368708979999,0.165269273000177],[-50.61058508999989,0.183417059000092],[-50.58300129599985,0.184031959],[-50.561085743999854,0.176257456000116],[-50.54432908999985,0.171069925000069],[-50.514694291999945,0.165850680000148],[-50.4902243949999,0.159361790000077],[-50.46964079199989,0.14517660700011],[-50.44649743499991,0.125851108000106],[-50.44395459799992,0.10914739600004],[-50.44400694599992,0.080890753000105],[-50.44017917899993,0.061617711000082],[-50.4325078789999,0.03591732800011],[-50.432546715999905,0.016653972000171],[-50.4377293279999,-0.000032628999904]]],[[[-50.165647739999876,0.261734493000134],[-50.22046084099995,0.246211701000078],[-50.21715247299994,0.263088283000144],[-50.199370897999955,0.288519598000079],[-50.13853919199994,0.326564846000068],[-50.11332416899995,0.338182138000107],[-50.09332056199989,0.339012601000164],[-50.08640388699985,0.320726597000174],[-50.0907842659999,0.305944799000144],[-50.10733365099992,0.292930690000091],[-50.165647739999876,0.261734493000134]]],[[[-49.528949677999975,0.300814630000133],[-49.6016033679999,0.265985334000049],[-49.6424739659999,0.232699301000096],[-49.69237219999988,0.205023505000099],[-49.76402747299991,0.133368231000162],[-49.78734290299991,0.092352606000077],[-49.806141730999855,0.048651434000178],[-49.829701300999915,0.011297919000128],[-49.86705481699997,-0.010674737999892],[-49.933908657999886,-0.028741143999909],[-49.96312415299994,-0.032769463999884],[-49.97500566299988,-0.036879164999917],[-49.98615475199989,-0.042535089],[-49.99400794199988,-0.048435153999861],[-50.00450598899994,-0.052788994999943],[-50.01292883999991,-0.045342705999872],[-50.024769660999965,-0.024265231999934],[-50.04507402299987,-0.002862237999892],[-50.06944739499991,0.016587632000096],[-50.097279425999886,0.030910549000083],[-50.127797003999916,0.037176825000131],[-50.17467200399997,0.029282945000162],[-50.182362433999884,0.033758856000119],[-50.1900935539999,0.041327216000084],[-50.20669511599996,0.03929271000014],[-50.22227942599994,0.033596096000068],[-50.22679602799991,0.030340887000122],[-50.248850063999896,0.02464427300005],[-50.27269446499989,0.014878648000192],[-50.297596808999906,0.012030341000155],[-50.32262122299994,0.026922919000114],[-50.34512285099993,0.047430731000162],[-50.35155188699994,0.058905341000113],[-50.35309811099998,0.078111070000162],[-50.34203040299994,0.11542389500012],[-50.34007727799988,0.133368231000162],[-50.35033118399991,0.126695054000123],[-50.357411261999886,0.116522528000161],[-50.36668860599994,0.091782945000105],[-50.37999426999994,0.110744533000116],[-50.383656378999916,0.129868882000082],[-50.38097083199992,0.19464752800009],[-50.377797003999945,0.208319403000132],[-50.366810675999915,0.214504299000097],[-50.3049026459999,0.216842620000122],[-50.279646278999905,0.228089134000129],[-50.25441614999991,0.229770548000161],[-50.23268400199993,0.224504579000097],[-50.19963686499992,0.222687356000108],[-50.12804114499997,0.22158437700007],[-50.10728919199997,0.222154039000131],[-50.06218987399993,0.262391925000173],[-50.036887774999855,0.299741052000044],[-50.00381158899995,0.310122529000054],[-49.959450836999935,0.308302756000032],[-49.92162215099992,0.292785814000098],[-49.85955442399995,0.301223583000052],[-49.825760286999866,0.32220726200012],[-49.745915021999906,0.353472638000127],[-49.650227465999905,0.386373379000162],[-49.56015660899993,0.385757444000177],[-49.5303563059999,0.35377954300003],[-49.528949677999975,0.300814630000133]]],[[[-50.34605872299991,0.527533270000148],[-50.35505123599992,0.412543035999988],[-50.35309811099998,0.400213934000035],[-50.34886633999986,0.390082098000065],[-50.33592688699986,0.368475653000075],[-50.32315019399991,0.340643622000101],[-50.31696961499995,0.308751238000013],[-50.32328549099992,0.286960311000115],[-50.33893374999988,0.271411345000104],[-50.34991904499992,0.252735941000068],[-50.36397202899988,0.248084005000095],[-50.37802102099994,0.244989516000118],[-50.39519807399989,0.240340940000081],[-50.41397518099993,0.226343190000165],[-50.42030938599989,0.202972625000129],[-50.41880199099998,0.188943023000164],[-50.41513429299991,0.176578859000074],[-50.419019657999854,0.167944121000076],[-50.42625891799994,0.168402410999988],[-50.45018469999991,0.17865631700009],[-50.45982825399997,0.181097723000121],[-50.48265540299991,0.182359117000132],[-50.49315344999988,0.185492255000028],[-50.50145423099985,0.19171784100017],[-50.516753709999904,0.208644924000154],[-50.51805579299991,0.214911200000103],[-50.51634680899991,0.243353583000115],[-50.51292883999989,0.256496486000088],[-50.50597083199989,0.266180731000134],[-50.49453691299993,0.269924221000082],[-50.48525956899991,0.268459377000028],[-50.48058020699997,0.266017971],[-50.47687740799992,0.265448309000107],[-50.47036699099993,0.269924221000082],[-50.469960089999944,0.274318752000155],[-50.43919837099986,0.397650458000029],[-50.43252519399991,0.413967190000051],[-50.43150794199993,0.415594794000071],[-50.422515428999894,0.419012762000079],[-50.41242428299995,0.421576239000075],[-50.40831458199989,0.420721747000172],[-50.40709387899989,0.430650132],[-50.41087805899991,0.43691640800013],[-50.416859503999916,0.441961981000148],[-50.421986456999946,0.448675848000022],[-50.42808997299991,0.465480861000032],[-50.43008378799996,0.478583075000174],[-50.42943274599991,0.506659247000087],[-50.43248450399991,0.534328518000081],[-50.43077551999991,0.548000393000123],[-50.421986456999946,0.564764716000141],[-50.379750128999916,0.611802476000065],[-50.36668860599994,0.619940497000158],[-50.36668860599994,0.615179755000071],[-50.36506100199992,0.612453518000109],[-50.362660285999965,0.609930731000176],[-50.36050370999996,0.606350002000113],[-50.347320115999906,0.571275132000125],[-50.34605872299991,0.527533270000148]]],[[[-50.031361456999946,0.584865627000084],[-50.03156490799989,0.561672268000066],[-50.030506964999944,0.556789455000086],[-50.02574622299994,0.547267971000096],[-50.024769660999965,0.5411644550001],[-50.02684485599988,0.535305080000157],[-50.036284959999904,0.525946356000119],[-50.04271399599992,0.510321356000134],[-50.166076622999945,0.413848198000053],[-50.1994836699999,0.39271555100018],[-50.229843381999984,0.377637716000081],[-50.2495950739999,0.361015578000192],[-50.28144590699995,0.356551537000058],[-50.3006892569999,0.375474351000136],[-50.31212317599994,0.413967190000051],[-50.317250128999966,0.457993882000054],[-50.31505286399988,0.497259833000072],[-50.3028865229999,0.530991929000066],[-50.278553839999915,0.55853913],[-50.25645911399994,0.569728908000087],[-50.25157630099997,0.575832424],[-50.25816809799994,0.585191148000106],[-50.242095506999874,0.592962958000029],[-50.18691972599993,0.592230536],[-50.17491614499991,0.595445054000052],[-50.167591925999915,0.605414130000128],[-50.15062415299994,0.597113348000065],[-50.120350714999944,0.571600653000147],[-50.11510169199994,0.586249091000155],[-50.134755011999914,0.59756094000015],[-50.13402258999989,0.612494208000101],[-50.12205969999985,0.626776434000178],[-50.10289466099988,0.639837957999987],[-50.08218339799987,0.647894598000107],[-50.06566321499988,0.647284247000144],[-50.03844153599991,0.606350002000113],[-50.0332738919999,0.593573309000163],[-50.031361456999946,0.584865627000084]]],[[[-29.369374152999914,0.833563544000128],[-29.390126105999908,0.83173248900006],[-29.410267706999942,0.834865627000127],[-29.421213344999927,0.844712632000053],[-29.42638098899991,0.858547268000152],[-29.423410610999895,0.871568101000051],[-29.408029751999948,0.884833075000159],[-29.381459113999906,0.891343492000161],[-29.356190558999856,0.882757880000142],[-29.345326300999968,0.866644598000079],[-29.34902910099993,0.852606512000122],[-29.357736782999897,0.84113190300009],[-29.369374152999914,0.833563544000128]]],[[[-50.08611409899996,0.916156201000149],[-50.058571530999956,0.901798794000143],[-50.02691645099995,0.903755647000139],[-50.01572262599995,0.892492567000104],[-50.022935283999885,0.873105230000135],[-50.03628412699993,0.852705365000048],[-50.04967289899989,0.821062719000096],[-50.06811764899993,0.807812338000033],[-50.076328513999954,0.798628470000082],[-50.08356542099992,0.779207005000117],[-50.10338294199997,0.755682684000149],[-50.11192786399988,0.752346096000124],[-50.12218176999991,0.751206773000177],[-50.15121870899991,0.749629965000096],[-50.20241617299985,0.749691605000137],[-50.24139894799987,0.744597210000066],[-50.27527428399992,0.745621947000117],[-50.283364272999876,0.769186393000041],[-50.27495184699998,0.809114176000179],[-50.225476444999885,0.859200128000069],[-50.1588056649999,0.886690241],[-50.132122691999875,0.914214011000112],[-50.11166581799998,0.918252711000065],[-50.08611409899996,0.916156201000149]]],[[[-50.03156490799989,0.934637762000136],[-50.062584762999904,0.923252138000095],[-50.07176302599993,0.931437248],[-50.09934734299992,0.938642789000141],[-50.100317377999886,0.959062901000038],[-50.07369237199987,0.977374878000035],[-50.04918372299991,0.985581773000064],[-50.03844153599991,1.006740627000156],[-50.0318904289999,1.014960028000147],[-50.01667232999991,1.025213934000178],[-49.99844316299996,1.034002997000059],[-49.96703040299991,1.043117580000128],[-49.94681709999992,1.062770898000096],[-49.926380350999864,1.069856741000095],[-49.916208485999896,1.056562666000147],[-49.93667558499993,1.02342357000019],[-49.94408118399994,1.008246161000102],[-49.95250403599988,0.996649481000091],[-49.95645097599987,0.986517645000049],[-49.964019334999925,0.973822333000072],[-49.997303839999915,0.952460028000033],[-50.00487219999988,0.945217190000093],[-50.00829016799989,0.940985419000171],[-50.02525794199994,0.936997789000102],[-50.03156490799989,0.934637762000136]]],[[[-50.39957760099989,2.115108435000181],[-50.38683922199991,2.097153077000115],[-50.3663640879999,2.06967947800014],[-50.35693424399994,2.059439787000059],[-50.35319764099995,2.034323965000127],[-50.33885392499993,2.009692265000098],[-50.32502810699995,1.991759141000102],[-50.31402721899994,1.968265657000103],[-50.312495585999955,1.947065252000044],[-50.32093895599991,1.935414237000145],[-50.33895114399988,1.912667935000158],[-50.37657806999991,1.878331518],[-50.394495571999954,1.87063537100012],[-50.4191189839999,1.862977863000168],[-50.44085207899991,1.86981039300008],[-50.45860755099994,1.881008205000043],[-50.47663326699998,1.942694403000146],[-50.49550952599995,1.967247660000069],[-50.49763213199989,1.984560276000167],[-50.50818834099988,1.995235034000018],[-50.5238127259999,2.00148207799998],[-50.52081191599987,2.03165613100019],[-50.51169695199993,2.056155705000108],[-50.51134192599994,2.079820054000123],[-50.50423024599985,2.095691820000098],[-50.48854350699992,2.098922196000117],[-50.470093535999865,2.097662774000099],[-50.45435769199986,2.110940625000125],[-50.441517191999964,2.108049102000066],[-50.42642770799998,2.11074233000015],[-50.409641295999904,2.112945047000068],[-50.39957760099989,2.115108435000181]]],[[[-50.51363108799989,2.18728617700009],[-50.49240063299993,2.186581474000135],[-50.46334761399992,2.186938223000155],[-50.448334695999876,2.176234837000067],[-50.430540436999905,2.164958241000079],[-50.41783217599993,2.144794625000088],[-50.41515808899993,2.12693108600007],[-50.4246923689999,2.119744763000099],[-50.44144522399995,2.118182758000088],[-50.45762113199987,2.120520425000151],[-50.46658644199994,2.116117802000119],[-50.473344436999916,2.10779592600008],[-50.48617926399987,2.110110630000108],[-50.49793202699993,2.107397909000099],[-50.50965321299995,2.109705501000079],[-50.520237437999924,2.115353448000121],[-50.5256847489999,2.137707348000148],[-50.53570564299991,2.144470345000073],[-50.54352144299992,2.146196723000102],[-50.55299502999995,2.151282856000023],[-50.55352275199991,2.156309261000146],[-50.54170497099989,2.167948347000035],[-50.51363108799989,2.18728617700009]]],[[[-60.19094661499991,5.239939677000166],[-60.17655472799993,5.227149760000188],[-60.13172542399993,5.243401998000109],[-60.12301794499987,5.231852316000171],[-60.09123693899994,5.158239238000164],[-60.088703914999975,5.15539380700011],[-60.075734008999916,5.140824280000145],[-60.055115112999914,5.125088806000164],[-60.01100927799993,5.100025737000152],[-59.98310400499994,5.085943909000136],[-59.98150203499992,5.057418518000176],[-59.99927872799995,4.996879578000133],[-60.000208902999894,4.958328960000159],[-60.003593708999915,4.939828796000128],[-60.01100927799993,4.921716207000202],[-60.01795975799993,4.892234802000189],[-60.0204660649999,4.832290141000115],[-60.03452205499994,4.787796733000121],[-60.030077880999926,4.744362691000119],[-60.03245499699998,4.725423279000083],[-60.0384753019999,4.708008321000135],[-60.047053588999944,4.691756084000133],[-60.075630655999895,4.650285747000154],[-60.08066910899995,4.638322652000113],[-60.083201253999874,4.627083028000158],[-60.08428645899994,4.616928610000102],[-60.08769710299986,4.607523499000138],[-60.097076374999915,4.598557638000101],[-60.10614558899989,4.595353699000128],[-60.126221883999925,4.59499196400013],[-60.13482600899996,4.593545024000136],[-60.16154272499995,4.565200500000145],[-60.164850016999935,4.546209412000081],[-60.15999243199991,4.527786763000165],[-60.148778645999954,4.513007304000155],[-60.132862304999946,4.504868266000145],[-60.12092504899991,4.502361959000069],[-60.1120108639999,4.502155253000112],[-60.10619726599989,4.506599427000126],[-60.10384598799996,4.517994080000122],[-60.09860083099994,4.52600392700019],[-60.087774617999905,4.525538839000163],[-60.07687089099994,4.519957785000145],[-60.07154821799989,4.512542216000128],[-60.06625138399994,4.494326274000173],[-60.05560603899994,4.491587422000137],[-60.04018062399987,4.495928243000122],[-60.02069860899988,4.498873800000126],[-59.996979125999935,4.490760600000115],[-59.98455094499994,4.488796895000178],[-59.97889237499991,4.495411479000083],[-59.97455155499992,4.503705546000134],[-59.96468135699984,4.506496074000097],[-59.953131673999906,4.505875956000125],[-59.943313151999945,4.503912252000177],[-59.93429561399997,4.498253683000144],[-59.919929564999904,4.479210917000088],[-59.91455521699993,4.474353333000152],[-59.905279296999915,4.475283509000107],[-59.885823119999905,4.484740296000084],[-59.872929849999935,4.484688620000156],[-59.868847411999916,4.480916240000141],[-59.871689615999884,4.468229675000188],[-59.8676330159999,4.4619768270001],[-59.86324051999989,4.460659078000134],[-59.852362629999924,4.460762431000162],[-59.84763423699994,4.460245667000123],[-59.82624019399993,4.454612936000103],[-59.817687744999915,4.456835022000107],[-59.80962622099992,4.465749207000115],[-59.796267862999876,4.448205058000155],[-59.737951008999936,4.415571391000185],[-59.729915323999954,4.407535706000188],[-59.72234472699992,4.397717184000129],[-59.71350805699989,4.389371440000161],[-59.701958374999975,4.385650737000148],[-59.69046036799995,4.384462179000138],[-59.68673966499992,4.381180725000135],[-59.6871150579999,4.3714655590001],[-59.68738562099992,4.364463399000101],[-59.693612630999986,4.340692240000138],[-59.727796589999876,4.305293884000206],[-59.73846777399989,4.286587016000141],[-59.736684935999904,4.282091167000203],[-59.726556355999946,4.270696513000118],[-59.724489298999885,4.264056091000114],[-59.726608032999955,4.257699891000186],[-59.7355222169999,4.245840149000159],[-59.737951008999936,4.240000712000082],[-59.74053483099993,4.22232737200008],[-59.74043147799993,4.213645732000117],[-59.73846777399989,4.202767842000156],[-59.72673722299991,4.176464539000122],[-59.710329956999935,4.164449768000154],[-59.66736100299996,4.150574646000095],[-59.64617366599993,4.134038187000101],[-59.64899003099986,4.119801330000129],[-59.66010046399989,4.103187357000195],[-59.66325272699995,4.079726258000136],[-59.65369258699994,4.064197489000207],[-59.61981868499995,4.032726543000165],[-59.605736857999915,4.007146708000121],[-59.59971655299998,4.002263285000183],[-59.595375732999905,3.996372172000179],[-59.59628007099993,3.970637309000097],[-59.59000138399994,3.966709900000125],[-59.58038956699994,3.967123311000136],[-59.54868607699992,3.96192983000013],[-59.536826334999915,3.957692362000088],[-59.52959163399992,3.949449971000135],[-59.5276537689999,3.939528097000135],[-59.52922989999993,3.931905823000164],[-59.53470760099992,3.927099915000156],[-59.5445778,3.925704651000089],[-59.56315547799994,3.918185730000147],[-59.58178483099991,3.899194641000178],[-59.59633174699988,3.875888570000142],[-59.60250707999995,3.855683085000152],[-59.59971655299998,3.833126322000127],[-59.595401570999904,3.816538188000123],[-59.59860550999988,3.802404683000176],[-59.618294230999936,3.787185974000138],[-59.65911861199993,3.768918355000082],[-59.67180517599987,3.756231792000051],[-59.680150919999924,3.731117045000118],[-59.68077103699991,3.719153951000152],[-59.6795566409999,3.710343120000161],[-59.680125081999925,3.701687317000121],[-59.68622290099998,3.690215149000096],[-59.69505957099997,3.683057963000067],[-59.71764217199992,3.673213603000178],[-59.75554683499993,3.638125305000059],[-59.83766068499994,3.609289857000106],[-59.86287878399989,3.581720479000126],[-59.86303381399992,3.552368266000059],[-59.84763423699994,3.53045745900009],[-59.82954748599993,3.509761048000157],[-59.8213567709999,3.484387919000085],[-59.838539184999966,3.44302093500005],[-59.841355550999936,3.425399272000149],[-59.82404394599993,3.431677959000154],[-59.82848811899995,3.383412171000131],[-59.82709285499996,3.376694234000112],[-59.820995035999914,3.363490906000123],[-59.82177018299993,3.356592102000064],[-59.82680863499991,3.351941223000097],[-59.83368159999994,3.350287578000135],[-59.83998612499997,3.34987416600012],[-59.84319006399994,3.349021505000096],[-59.8537320559999,3.315380148000144],[-59.879621948999926,3.272566223000126],[-59.884014444999934,3.262540995000094],[-59.89763118599993,3.21737579400012],[-59.90424576799992,3.208229065000054],[-59.91150630699991,3.201872864000109],[-59.916673949999904,3.194173076000126],[-59.91685481799996,3.181150615000092],[-59.913935098999865,3.17463938500012],[-59.90543432699994,3.16523427400007],[-59.90321223999984,3.158671367000167],[-59.905718546999935,3.154795634000038],[-59.918379272999886,3.152831929000087],[-59.92155737299993,3.150093079000058],[-59.92018794799994,3.143995260000096],[-59.912694864999935,3.133401591000109],[-59.91160965999993,3.126425273000109],[-59.91486527499993,3.119965719000148],[-59.9207563889999,3.116761780000089],[-59.92737097199992,3.114332988000044],[-59.932667806999945,3.110043844000074],[-59.959384520999926,3.066480611000131],[-59.969228881999896,3.042709453000072],[-59.97398311399988,3.017646382000152],[-59.9704174399999,2.96044057200011],[-59.972975422999895,2.939304911000164],[-59.99372351099992,2.857294414000179],[-60.00007971199997,2.694048564000127],[-59.9964623619999,2.674773255000105],[-59.965043090999956,2.613433329000046],[-59.965327311999914,2.60805898100017],[-59.97026241099988,2.595759989000044],[-59.970985880999955,2.592556051000159],[-59.96602494399991,2.588680318000101],[-59.953131673999906,2.583926086000119],[-59.949023396999905,2.579843648000022],[-59.940729328999936,2.562997131000131],[-59.939230713999926,2.555452372000075],[-59.93951493299991,2.542998352000012],[-59.93584590699993,2.523878072000016],[-59.90677791399992,2.458765767000102],[-59.905072591999954,2.447862041000135],[-59.904039062999885,2.426209615000161],[-59.90181697699995,2.415615947000092],[-59.90150691699997,2.404505513000075],[-59.91181636599989,2.387814026000043],[-59.91344417399992,2.378718974000151],[-59.90313472499991,2.359598694000155],[-59.88406612199994,2.34600779200008],[-59.84424943099993,2.32544057200009],[-59.813631144999896,2.299188945000139],[-59.80120296299992,2.292729390000189],[-59.791849527999965,2.290869039000185],[-59.772264160999946,2.29035227500006],[-59.76324662399991,2.287975159000098],[-59.74169755099987,2.263790588000134],[-59.74022477199995,2.229477438000103],[-59.745754150999886,2.190823466000111],[-59.744979003999866,2.15351308200016],[-59.73585811399997,2.123721619000165],[-59.73539302599994,2.113515524000107],[-59.738571126999915,2.103619487000117],[-59.74983658899987,2.085971985000114],[-59.75296301299991,2.07545583100007],[-59.75146439699992,2.062252503000082],[-59.74040563999992,2.041401063000194],[-59.73709834899992,2.030419821000037],[-59.73779598099992,2.022229106000097],[-59.74353206399988,2.005666810000193],[-59.745340738999936,1.997166036000095],[-59.74280859399997,1.970966085000072],[-59.743816283999934,1.961845194000176],[-59.74836380999998,1.951251526000107],[-59.760869507999956,1.931924540000153],[-59.76453853399997,1.920529887000157],[-59.76513281299992,1.904639384000149],[-59.763556681999916,1.882573548000152],[-59.75875077299989,1.862135518000017],[-59.74968155999994,1.851309306000146],[-59.73751175999993,1.850792542000121],[-59.71722875999992,1.85805308000009],[-59.70557572499984,1.857407125000108],[-59.667981119999915,1.842705180000124],[-59.655475423999945,1.839707947000192],[-59.64911922199991,1.841361593000144],[-59.64645788599998,1.839966329000077],[-59.64547603399993,1.827693176000053],[-59.66648250399993,1.787101339000117],[-59.68247635899988,1.765603943000158],[-59.68084855099994,1.757387390000133],[-59.658963582999974,1.734081319000111],[-59.64981685399991,1.727001648000083],[-59.639662434999934,1.721756490000146],[-59.628164428999916,1.718810933000157],[-59.607933104999915,1.71999949200017],[-59.590569824999896,1.724908752000118],[-59.57271561699994,1.727156677000039],[-59.55147660399987,1.720516256000124],[-59.53072851599995,1.703075460000179],[-59.50282324199995,1.657651876000131],[-59.486002563999904,1.636076965000086],[-59.45476415999991,1.611323954000142],[-59.4455140789999,1.601014506000141],[-59.42587703499996,1.56595204600012],[-59.4168336589999,1.555280864000039],[-59.41210526599991,1.553265483000174],[-59.39972875999985,1.552025249000053],[-59.39463863099987,1.549441427000133],[-59.39096960499995,1.543653667000157],[-59.38386409599993,1.527892354000173],[-59.380169229999915,1.523344828000148],[-59.36802526899992,1.520399271000059],[-59.347690592999925,1.526032003000168],[-59.338569701999944,1.524636739000186],[-59.32694250499989,1.509521383000091],[-59.324720418999874,1.49076283800018],[-59.32032792199996,1.473528748000206],[-59.30218949399994,1.462960918000135],[-59.29381791199997,1.452108867000092],[-59.27242386899988,1.404153138000154],[-59.25991817199985,1.387435812000206],[-59.2421414799999,1.377798157000185],[-59.177959350999885,1.357127584000182],[-59.01109615099995,1.327568664000154],[-58.97202466099994,1.312311316000205],[-58.96649938999994,1.310153707000125],[-58.94598384599997,1.298991598000086],[-58.92748368399992,1.284212138000072],[-58.91172237099993,1.260234273000151],[-58.906451375999914,1.238530172000154],[-58.89787308799989,1.217807922000134],[-58.8721382249999,1.197240702000144],[-58.852036091999935,1.188714091000122],[-58.834001017999924,1.185820211000134],[-58.81596594199984,1.187267151000128],[-58.795967162999915,1.191814677000167],[-58.77193762299996,1.201271465000133],[-58.752817341999865,1.214965718000158],[-58.73690100099995,1.232329],[-58.70920243399993,1.272274882000133],[-58.697730264999905,1.281059876000114],[-58.68258907099991,1.282455139000191],[-58.58052811699988,1.272739970000146],[-58.574171915999926,1.275375468000163],[-58.56140783699996,1.285142314000041],[-58.55696366399988,1.286899312000102],[-58.55231278499992,1.284625549000083],[-58.54673172999989,1.280439758000142],[-58.54275264499989,1.27635732000013],[-58.54306270399988,1.274393616000111],[-58.53505285599991,1.271551412000136],[-58.52714636199997,1.266848856000067],[-58.51892980999991,1.267262268000166],[-58.487613891999935,1.31645823200013],[-58.481102661999955,1.333873189000158],[-58.48172277799992,1.358057760000051],[-58.488078979999955,1.378883362000096],[-58.50699255399988,1.418183289000083],[-58.5136588139999,1.438879700000186],[-58.5017543459999,1.453781096000171],[-58.49887935399997,1.457379863000128],[-58.42643023299982,1.469805347000062],[-58.41345821199989,1.47203013100011],[-58.38637976099992,1.490194397000053],[-58.38591467299997,1.499728699000045],[-58.39170243399988,1.520838522000076],[-58.390255492999955,1.530760397000151],[-58.383124144999925,1.537219951000111],[-58.360283162999934,1.547374370000085],[-58.351394815999925,1.553317159000187],[-58.34426346899997,1.565486959000097],[-58.33873408999997,1.580188904000181],[-58.33191280099992,1.593392233000088],[-58.320492309999906,1.601221211000023],[-58.316151489999925,1.598895772000077],[-58.30633296799996,1.582772726000101],[-58.299201619999934,1.575176290000044],[-58.28199336799994,1.566572164000178],[-58.26054764899993,1.5603193150001],[-58.238585164999876,1.556701965000116],[-58.219671589999926,1.556056010000049],[-58.206959187999956,1.559957580000102],[-58.19776078299994,1.565900371000026],[-58.1872704669999,1.567605693000161],[-58.1706306559999,1.558820700000183],[-58.1628791919999,1.549183045000078],[-58.1555411379999,1.527375590000133],[-58.1486164959999,1.519081523000096],[-58.116422078999875,1.51055491200016],[-58.06913814299991,1.509004618000063],[-58.02722855699994,1.516859436000175],[-58.011157185999956,1.536186422000128],[-57.993587198999904,1.568484192000199],[-57.986972615999974,1.586829326000014],[-57.98392370699986,1.6041150920001],[-57.98976314299995,1.634604187000164],[-57.991003376999885,1.650417175000171],[-57.98500891099987,1.657703553000146],[-57.969144246999946,1.65548146500015],[-57.939016886999944,1.643311666000145],[-57.9222220469999,1.642484843000204],[-57.9053755299999,1.648556824000167],[-57.87147578999991,1.669253235000099],[-57.79075720299996,1.704935812000173],[-57.758821166999894,1.713462423000109],[-57.72311275299998,1.711653748000117],[-57.63857010899994,1.696176656000191],[-57.607874308999975,1.697106832000159],[-57.561158813999974,1.708966573000083],[-57.53128983599989,1.731549175000112],[-57.46478226699992,1.815730082000186],[-57.45429195199995,1.833816834000103],[-57.42948726499992,1.900298564000167],[-57.4195137129999,1.909186910000173],[-57.405561075999906,1.914277039000155],[-57.38452876799991,1.925206604000138],[-57.36876745699993,1.939650167000153],[-57.356158406999974,1.955282287000102],[-57.3414822999999,1.968847351000178],[-57.319416462999925,1.977141419000148],[-57.294818481999926,1.974841817000126],[-57.25864497899991,1.952233378000088],[-57.23843949399991,1.948538513000173],[-57.152914998999876,2.002204488000146],[-57.104494181999904,2.021453959000084],[-57.07405676299996,1.997166036000095],[-57.06780391499987,1.968692322000152],[-57.05597001199993,1.948073425000061],[-57.037469848999905,1.932389628000095],[-57.01116654499995,1.918566182000134],[-56.993234822999874,1.914845479000036],[-56.97685339399993,1.914587097000151],[-56.94352209499996,1.918256124000138],[-56.9219213469999,1.918101094000022],[-56.91344641199989,1.912830099000161],[-56.90683182799992,1.903244121000157],[-56.890708780999944,1.89019582100012],[-56.87763464399998,1.885648295000095],[-56.80647619699994,1.873581848000114],[-56.792730265999914,1.873530172000102],[-56.78063798099993,1.879059550000193],[-56.737643188999954,1.912985128000031],[-56.724155639999964,1.916137391000163],[-56.70410518499992,1.912830099000161],[-56.683951375999946,1.912106628000174],[-56.669662841999866,1.919858094000091],[-56.656407836999875,1.930064188000145],[-56.63956132099989,1.93685963900019],[-56.620234333999946,1.934560039000175],[-56.60442134599995,1.924586487000155],[-56.590106974999934,1.912985128000031],[-56.57486242699991,1.90546620700016],[-56.558920247999964,1.906654765000013],[-56.52850866699992,1.924018046000029],[-56.48181901099994,1.941613871000101],[-56.42980668199991,1.922700298000066],[-56.41518225099992,1.919703064000131],[-56.39652705899996,1.921666769000083],[-56.36717484599998,1.928875631000124],[-56.34795121299996,1.92660186800012],[-56.32862422699992,1.918462830000109],[-56.29270910699995,1.895466817000155],[-56.27379553199992,1.887508647000089],[-56.257930867999896,1.885648295000095],[-56.20976843299991,1.888542176000072],[-56.145276244999906,1.871773173000122],[-56.08264440899998,1.846555074000165],[-56.019650837999876,1.833506775000117],[-55.953815063999876,1.853273011000098],[-55.92203405799992,1.886216736000137],[-55.916763061999916,1.922235210000125],[-55.92234411599992,1.962155254],[-55.92358435099996,2.006596985000144],[-55.92038041299989,2.019386902000122],[-55.916763061999916,2.028507793000102],[-55.91513525399995,2.037654521000178],[-55.9182616779999,2.05039276100014],[-55.92580643799997,2.061684062000111],[-55.95996455899993,2.090984599000166],[-55.99577632699995,2.137390035000095],[-56.00440629099992,2.144986471000152],[-56.031329711999945,2.163486634000165],[-56.04484309999989,2.18472564700015],[-56.054015665999906,2.224051412000136],[-56.072929239999915,2.241518046000166],[-56.09145524099998,2.245910543000164],[-56.13525101799988,2.248546041000097],[-56.146774861999916,2.256194153000166],[-56.14388098099991,2.274745992000106],[-56.13199540299988,2.304356588000147],[-56.11680253099988,2.33308868400016],[-56.103780069999914,2.349056702000098],[-56.09145524099998,2.351898906000159],[-56.08228267399997,2.347713115000047],[-56.07342016699996,2.342390442000095],[-56.0621547039999,2.341563619000155],[-56.05024328699997,2.347041321000063],[-56.04256933699989,2.355102844000143],[-56.01334631399993,2.398821106000113],[-56.00817867099994,2.416287740000158],[-56.007506876999855,2.460677795000123],[-55.9969132089999,2.503259176000185],[-55.98923925799991,2.520829162000069],[-55.983012248999984,2.526461894000107],[-55.97102331599984,2.530337626000147],[-55.947200479999964,2.528167216000156],[-55.925031290999954,2.515661519000076],[-55.87066768399998,2.470909729000113],[-55.853769490999895,2.46264150000016],[-55.7831278079999,2.445174866000031],[-55.77356766799991,2.440058899000121],[-55.76612626199997,2.431273906000129],[-55.754602416999944,2.409414775000187],[-55.74411210199988,2.40104319300012],[-55.7242941899999,2.396909078000106],[-55.64538427699998,2.416649475000156],[-55.60830643699998,2.433961080000159],[-55.58732580599991,2.43385772700013],[-55.56820552599989,2.431273906000129],[-55.511309773999926,2.43638987200012],[-55.47430944899989,2.435821431000164],[-55.435552124999866,2.430860494000129],[-55.39958532799997,2.430188700000144],[-55.37105993699993,2.442539368000098],[-55.36276586899987,2.45793894500018],[-55.36007869499994,2.476232402000064],[-55.35452347799995,2.494887594000118],[-55.33775447699989,2.511269023000082],[-55.320520385999906,2.518297018000084],[-55.302795369999984,2.519692281000161],[-55.286982381999906,2.513904521000185],[-55.275251831999896,2.499331767000043],[-55.251919921999864,2.49788482700005],[-55.171950642999946,2.559328105000134],[-55.13779252199995,2.562170309000109],[-55.13308996599997,2.552868551000174],[-55.13660396399993,2.53379994800018],[-55.12885249899992,2.525686747000179],[-55.12089432799988,2.524808248000141],[-55.11247106999988,2.527805481000158],[-55.076297566999955,2.545220439000104],[-55.03774694899997,2.577931620000172],[-55.01774816999995,2.590592346000122],[-54.97687211099992,2.606922099000073],[-54.95909541799989,2.608989156000121],[-54.95366939299993,2.599067281000131],[-54.960232299999916,2.585683086000187],[-54.97955928599995,2.56609771800008],[-54.982814900999955,2.552351786000131],[-54.9785774339999,2.543050029000113],[-54.88028885999998,2.447345276000192],[-54.84191910799987,2.433495992000132],[-54.79249060099994,2.448172099000132],[-54.775494351999896,2.45733529400006],[-54.759805256999954,2.465793762000203],[-54.74303625599989,2.466517233000118],[-54.72117712399995,2.457990621000192],[-54.70766373799997,2.450342509000123],[-54.70319372599996,2.445846660000186],[-54.7025477709999,2.425744528000138],[-54.701100830999906,2.419905090000142],[-54.69683752399993,2.40910471600003],[-54.6955972899999,2.403523661000094],[-54.69725093599996,2.397322490000107],[-54.70203100599994,2.395720520000168],[-54.70727616399998,2.395875550000113],[-54.7099633379999,2.394790344000128],[-54.71569942299996,2.375928446000017],[-54.706733561999926,2.353190816000037],[-54.70544165099997,2.342545472000126],[-54.70655269399989,2.332881979000192],[-54.70412390199993,2.324820455000108],[-54.69249670499997,2.31898101800013],[-54.672859659999915,2.315983785000028],[-54.653377644999914,2.316500550000143],[-54.63412817399998,2.320117900000128],[-54.6152921149999,2.326267396000105],[-54.58816198799991,2.324355367000095],[-54.56464921099993,2.314846904000191],[-54.5442886969999,2.300222473000133],[-54.52640865099994,2.282652486000145],[-54.549146280999906,2.279448548000175],[-54.54578731399991,2.268596497000132],[-54.51142248599987,2.243430074000017],[-54.49266394099996,2.222707825000072],[-54.47664424699991,2.214129538000051],[-54.43395951399992,2.209323629000124],[-54.42708654899994,2.207153219000133],[-54.41148026599989,2.199711812000118],[-54.40254024299989,2.197127991000116],[-54.38781245999988,2.19630116800009],[-54.38052608299998,2.197696432000072],[-54.37391149899992,2.196507873000144],[-54.360940714999884,2.188187968000179],[-54.33505082199994,2.163900045000091],[-54.32285518499992,2.157337138000102],[-54.31401851399994,2.154856669000125],[-54.263789021999884,2.148190410000125],[-54.246477416999966,2.151601054000139],[-54.229785929999935,2.157233785000088],[-54.210045532999885,2.161574605000069],[-54.19449092599987,2.163073222000165],[-54.18854813699994,2.161316224000174],[-54.15738724899995,2.121654562000117],[-54.14813716599994,2.114394023000131],[-54.134908,2.110673320000132],[-54.111526696999846,2.114270443000123],[-54.11139522299996,2.114290670000116],[-54.098424438999956,2.127959086000117],[-54.084213419999884,2.169326070000153],[-54.07666866099993,2.183692119000156],[-54.06927893099993,2.188342998000124],[-54.048453328999955,2.188808086000151],[-54.043337361999875,2.187722880000152],[-54.033260457999944,2.180333150000067],[-54.02798946099992,2.178576152000175],[-54.02137487899992,2.180591532000122],[-54.011711384999984,2.190565084000127],[-54.00597530199994,2.194337464000071],[-53.963910685999906,2.209323629000124],[-53.946133992999954,2.22198435500016],[-53.938744262999954,2.240122783000018],[-53.93776241099991,2.264617412000149],[-53.932904825999884,2.269630026000115],[-53.92163936399992,2.265960999000114],[-53.901227173999956,2.26451405900012],[-53.88846309399992,2.273815817000155],[-53.879368041999925,2.290610657000116],[-53.866810668999925,2.304925028000113],[-53.843452921999955,2.306630351000081],[-53.830895548999955,2.310144348000122],[-53.82107702699997,2.323631897000098],[-53.81182694499997,2.340426737000143],[-53.800974893999914,2.35381093400018],[-53.78345658399988,2.364094544000181],[-53.764801391999896,2.368693746000048],[-53.7482649339999,2.364662985000052],[-53.737361205999946,2.349056702000098],[-53.738033,2.338824768000123],[-53.74816158099989,2.319342753000129],[-53.748730021999926,2.31267649400003],[-53.742167114999944,2.308542379000187],[-53.71317663599987,2.307353821000078],[-53.64599727399991,2.278466695000034],[-53.62946081599992,2.275314433000161],[-53.59530269399993,2.273867493000168],[-53.57902461799992,2.270405172000125],[-53.54734696499992,2.251749980000071],[-53.53179235899998,2.247047424000172],[-53.511535196999965,2.252266744000096],[-53.4732429609999,2.254127096000104],[-53.462132527999955,2.258984681000129],[-53.42544226099989,2.286011455000079],[-53.39040563999987,2.299033915000024],[-53.378520060999925,2.30756052700012],[-53.3510798749999,2.3417186490002],[-53.348806111999885,2.347661438000117],[-53.3441035569999,2.349625143000154],[-53.330926066999915,2.345697734000083],[-53.32255448499993,2.338566386000139],[-53.29743973799992,2.303684794000162],[-53.234187784999925,2.250974834000061],[-53.234652872999874,2.241259665000114],[-53.2543415939999,2.234179993000083],[-53.27222163899995,2.219968974000039],[-53.27971472199991,2.204982808000153],[-53.26850093599995,2.195732727000134],[-53.25284297699991,2.196507873000144],[-53.13228186099994,2.219297181000144],[-53.11336828599991,2.219348856000067],[-53.09223262599997,2.211907450000126],[-53.06122676599994,2.186275940000158],[-53.01911047399997,2.181986796000103],[-52.98092159099991,2.173253479000124],[-52.95968257699994,2.175217184000076],[-52.95322302299991,2.179041240000103],[-52.944386352999885,2.190978495000138],[-52.93906367999995,2.195732727000134],[-52.9341027429999,2.196404521000118],[-52.92314733899991,2.193665670000087],[-52.9171528729999,2.195732727000134],[-52.906714232999946,2.204982808000153],[-52.900306355999895,2.214129538000051],[-52.89239986199996,2.236867167000113],[-52.88015254699994,2.260379944000192],[-52.8627375899999,2.274229228000166],[-52.81969112199991,2.29154083300017],[-52.70770829299997,2.358926901000089],[-52.690603393999936,2.372982890000017],[-52.677219197999904,2.390397847000045],[-52.656083536999944,2.430912171000131],[-52.61918656499992,2.463468323000171],[-52.59040279099992,2.504706116000179],[-52.56906042499992,2.550388082000097],[-52.563686075999954,2.559328105000134],[-52.55794999299991,2.565632630000138],[-52.55345414199988,2.573384094000062],[-52.551903849999945,2.586561585000126],[-52.5557795819999,2.598137105000163],[-52.57205765799992,2.622993470000125],[-52.57577836099994,2.63374216700015],[-52.57159256999997,2.638599752000161],[-52.55102534999992,2.645989482000175],[-52.54296382699991,2.651518860000166],[-52.53960485899992,2.65942535400012],[-52.533300333999904,2.689862773000186],[-52.455268920999885,2.865045878000103],[-52.44844763199992,2.874347636000039],[-52.44162634299997,2.881323954000123],[-52.43346146699989,2.886594951000063],[-52.422351033999945,2.890522359000116],[-52.4092768969999,2.897343649000163],[-52.41067215999996,2.905560201000099],[-52.41785518399993,2.915482076000018],[-52.422196003999915,2.927471008000069],[-52.41656327299998,2.942508850000138],[-52.353207967999964,3.05841908800005],[-52.351554320999924,3.065963847000176],[-52.361114461999904,3.109320373000159],[-52.36183793099991,3.131954651000115],[-52.35532670099994,3.151591695000064],[-52.31935990399995,3.177636617000132],[-52.299102741999945,3.225333964000185],[-52.27946569799994,3.242490539000144],[-52.26701167799993,3.244919332000109],[-52.25926021399994,3.243317363000173],[-52.25119868999994,3.2430589800001],[-52.23807287599996,3.249725240000203],[-52.22791845699993,3.260112203000133],[-52.0927587489999,3.481390686000153],[-52.0920352789999,3.490201518000148],[-52.09379227799988,3.499399923000155],[-52.09358557099992,3.506867168000085],[-52.07418107099994,3.516634013000129],[-52.06599035699992,3.528855489000151],[-52.05449234999988,3.556709087000129],[-52.012763630999956,3.619108379000167],[-52.00310013899993,3.64231109600017],[-51.99537451199992,3.685331726000172],[-51.988424031999955,3.704555359000096],[-51.9728435879999,3.721686096000141],[-51.96330928599991,3.725458476000085],[-51.9558162029999,3.724424947000102],[-51.94871069399994,3.725096741000087],[-51.9400807289999,3.733959249000093],[-51.9381945399999,3.742511699000204],[-51.94098506699996,3.763569845000134],[-51.93865962799992,3.773569234000149],[-51.93093400099994,3.781398214000163],[-51.89972143499995,3.796668600000131],[-51.83541011599996,3.867542827000178],[-51.8186152749999,3.891081442000171],[-51.806238769999936,3.917513937000152],[-51.7975312909999,3.949966736000178],[-51.7831910809999,3.980946757000182],[-51.75794714399993,4.002521668000156],[-51.68321692599994,4.039374091000127],[-51.65160071499989,4.047674872000115],[-51.631743943999965,4.06781647300015],[-51.59581458199989,4.157863674000112],[-51.596906387999894,4.21550439300016],[-51.585346511999916,4.233817846000107],[-51.571603969999984,4.235419012000165],[-51.55968176999994,4.223700262000165],[-51.5521541009999,4.2071800800001],[-51.5392146479999,4.149237372000115],[-51.5118708979999,4.080308335000069],[-51.45099850199989,3.970526434000163],[-51.436838344999956,3.929510809000149],[-51.42821204299989,3.957749742000118],[-51.43541419199991,3.985907294000114],[-51.46349036399991,4.031927802000069],[-51.49815833199989,4.105414130000142],[-51.54670162699995,4.255031643000122],[-51.561024542999945,4.357123114000103],[-51.560047980999855,4.369370835000069],[-51.54768275799995,4.421784939000119],[-51.53784299299991,4.432061124000128],[-51.5164975769999,4.441122259000139],[-51.49067429399989,4.427744438000104],[-51.453424844999915,4.402280900000078],[-51.38923018399993,4.358902248000135],[-51.29828784599988,4.25853702100008],[-51.22443496799993,4.165042593000081],[-51.18692981899994,4.07884914500012],[-51.17943274599995,4.025213934000107],[-51.179439016999936,3.924936685000147],[-51.1802309949999,3.804443555000119],[-51.19748700899993,3.699520841000094],[-51.17613684799991,3.648342190000121],[-51.173451300999915,3.671332098000021],[-51.15562903599994,3.73773834800005],[-51.14883378799993,3.827093817000061],[-51.136382615999906,3.867743231000148],[-51.11636308499993,3.906195380000057],[-51.09315225999998,3.90722900300014],[-51.079904751999976,3.882269598000093],[-51.090003134999904,3.724950770000177],[-51.08443998599995,3.592072049000137],[-51.079385346999885,3.492087470000058],[-51.09647663699988,3.449020773000157],[-51.09274174299995,3.376328545000149],[-51.036003811999876,3.229214],[-51.0278158369999,3.181612555000115],[-51.04062690399984,3.150936818000147],[-51.03370854499985,3.127104360000175],[-51.01839603099997,3.092004588000165],[-51.013983212999904,3.072386024000152],[-51.01921494999988,3.056994705000136],[-51.01677941499989,3.035571925000156],[-51.00401851899991,3.022652221000087],[-50.99727863999993,3.005490675000075],[-50.988876321999896,2.980622523000108],[-50.98645069899993,2.958362067000095],[-50.979730322999984,2.938650009000156],[-50.96447137899991,2.916327455000058],[-50.95180834699994,2.8897525080001],[-50.94420122299991,2.875178105000174],[-50.945989883999914,2.863222737000157],[-50.949510974999924,2.84786094800009],[-50.948726249999936,2.836748692000099],[-50.94454021799987,2.822200538000132],[-50.93432673599991,2.814448006000134],[-50.92292232999991,2.808905341000099],[-50.91734778599991,2.800726630000085],[-50.90280318099985,2.793754509000081],[-50.89862286399992,2.779204369000041],[-50.89359908399993,2.762941752000145],[-50.88256450699987,2.748351906000011],[-50.87498464799995,2.72865617700009],[-50.873414062999956,2.703867967000093],[-50.86583311799993,2.684164640000077],[-50.85224682499995,2.666133364000132],[-50.84636658299988,2.647292705000083],[-50.843918235999894,2.626762253000123],[-50.83469411599989,2.593356260000022],[-50.818959113999966,2.552394924000154],[-50.82192949099988,2.528387762000107],[-50.830067511999886,2.518011786000116],[-50.836822068999936,2.514593817000019],[-50.84024003799993,2.506537177000069],[-50.839466925999915,2.497463283000158],[-50.83348548099991,2.490708726000122],[-50.82363847599989,2.489691473000065],[-50.81786048099991,2.495306707999987],[-50.81285559799988,2.5021019550001],[-50.80553137899997,2.504380601000164],[-50.7916153639999,2.49457428600013],[-50.774229411999954,2.465337205000182],[-50.762989717999915,2.443561682000137],[-50.76106780199987,2.418754529000154],[-50.75189891899993,2.397004624000189],[-50.742421027999875,2.3784854190001],[-50.744130011999886,2.367254950000017],[-50.73957271999993,2.351467190000065],[-50.73381923099995,2.313277547000112],[-50.72052681299988,2.292556262000076],[-50.717642562999885,2.258496444000144],[-50.712617557999856,2.23680346800009],[-50.69726772999991,2.216079307000172],[-50.68602985199993,2.198476740000075],[-50.679269985999895,2.171698309000149],[-50.69554602799993,2.147284247000101],[-50.703195766999954,2.141302802000098],[-50.71324622299994,2.138495184000135],[-50.729969855999855,2.139634507],[-50.73729407499987,2.134466864000075],[-50.765858527999846,2.143255927000141],[-50.77822831899991,2.149969794000085],[-50.785715298999946,2.161810614000146],[-50.79255123599997,2.161810614000146],[-50.79255123599997,2.154974677000041],[-50.79112708199992,2.150539455000143],[-50.785715298999946,2.141302802000098],[-50.780425584999875,2.136379299000126],[-50.77342688699991,2.133856512000107],[-50.767241990999935,2.130682684000149],[-50.76455644399996,2.123968817000019],[-50.76573645699989,2.117621161000073],[-50.77086341099991,2.108140367000075],[-50.77806555899994,2.083156643000137],[-50.779693162999955,2.070949611000074],[-50.771962042999945,2.060939846000096],[-50.76789303299998,2.051418361000088],[-50.76154537699994,2.043850002000056],[-50.75157630099994,2.045111395000063],[-50.74596106699996,2.053045966000113],[-50.74502519399987,2.064032294000171],[-50.74547278599987,2.075751044000071],[-50.744130011999886,2.086004950000088],[-50.73473059799994,2.103827216000155],[-50.720611131999924,2.119370835000069],[-50.70205644399991,2.130316473000136],[-50.679269985999895,2.134466864000075],[-50.65998287699995,2.130682684000149],[-50.61955508299991,2.105237894000168],[-50.600141351999895,2.075201618000079],[-50.59410559799991,2.028713283000059],[-50.589914516999954,2.017157294000114],[-50.55972245999996,1.963120835000041],[-50.53343665299985,1.930365302000112],[-50.522206183999934,1.912502346000054],[-50.515248175999936,1.872870184000106],[-50.50918535099996,1.857163804000052],[-50.50072180899991,1.843939520000106],[-50.490874803999894,1.832831122000087],[-50.46654212099992,1.815415757000025],[-50.43260657499988,1.802476304000109],[-50.393381313999946,1.797796942],[-50.35309811099998,1.804877020000148],[-50.33055579299989,1.818060614000103],[-50.305041789999876,1.813551323000127],[-50.29076087099992,1.811957098000107],[-50.26838131399998,1.811712957999987],[-50.257883266999926,1.807806708000072],[-50.22241713899987,1.813982981000137],[-50.20693108699993,1.81387062400016],[-50.183156480999855,1.818862693000113],[-50.164598388999934,1.815634186000068],[-50.13787522799987,1.798935353000132],[-50.091553114999925,1.782098293000132],[-50.004051141999895,1.751600782000082],[-49.950597040999924,1.721326457000103],[-49.92296003299995,1.690189407000062],[-49.91015891099991,1.664262758000092],[-49.90078925899988,1.611650521000072],[-49.89998937899986,1.577606284000098],[-49.89908301299991,1.557998575000099],[-49.895128033999896,1.531145434000123],[-49.887562628999916,1.469142971000139],[-49.87633880099992,1.433439076000155],[-49.87355149099997,1.392303629000182],[-49.87304648399993,1.359850407000138],[-49.88302553399995,1.30771392500013],[-49.895240980999915,1.289776742000157],[-49.91291909099996,1.272327269000115],[-49.94042792899989,1.258668816000039],[-49.97532832699994,1.245032823000045],[-50.02502076099994,1.23038026100005],[-50.06729586799989,1.225213376000099],[-50.10219309499993,1.214744241000119],[-50.118045191999954,1.215842820000077],[-50.13071701399994,1.220102035000139],[-50.14127256599997,1.225412148000117],[-50.149740667999936,1.221209164000172],[-50.147670334999866,1.205357301000063],[-50.13818887699989,1.193711803000099],[-50.12023911199995,1.18521485100014],[-50.09801706999991,1.194664258000131],[-50.06739555799987,1.187189696000033],[-50.02616519699995,1.197641488000087],[-49.998692950999924,1.199679483000125],[-49.975457251999956,1.197503832000066],[-49.94476327499987,1.218544704000166],[-49.92152184099987,1.218481244000145],[-49.90485592399992,1.206773179000066],[-49.890736456999974,1.186021226000165],[-49.887562628999916,1.174872137000136],[-49.89004472599993,1.165228583000086],[-49.90807044199997,1.133286851000079],[-49.93887285099993,1.097235419000029],[-49.97883053299989,1.072211005000099],[-50.01427161399988,1.070868231000119],[-50.03156490799989,1.105943101000193],[-50.04116777299987,1.087958075000159],[-50.04674231699988,1.052923895000077],[-50.06090247299991,1.018866278000061],[-50.096424933999884,1.003607489000089],[-50.10610917899993,0.995306708000101],[-50.14142818899995,0.941473700000159],[-50.15583248599992,0.927313544000128],[-50.17039954299986,0.916489976000136],[-50.24864661399994,0.880072333000072],[-50.26158606699994,0.869818427000055],[-50.302805141999926,0.825425523000121],[-50.312489386999886,0.817206122000115],[-50.34557044199991,0.736273505000142],[-50.3534236319999,0.726711330000072],[-50.36668860599994,0.715562242000132],[-50.43321692599994,0.67865631700009],[-50.45335852799988,0.664048570000162],[-50.46589108,0.646429755000142],[-50.49966386599996,0.555975653000161],[-50.560658331999946,0.447984117000075],[-50.60895748599995,0.373928127000099],[-50.69395911399991,0.286444403000061],[-50.79063880099991,0.169501044000029],[-50.801665818999965,0.169012762000122],[-50.819203253999916,0.173651434000064],[-50.85399329299986,0.173651434000064],[-50.928944464999915,0.155422268000081],[-50.97984778599994,0.120428778000161],[-51.01740475199995,0.071437893000024],[-51.069162563999946,-0.01934172999988],[-51.08141028599994,-0.03252532299993],[-51.09727942599994,-0.037896416999885],[-51.160145636999914,-0.039320570999948],[-51.201568162999926,-0.049086195999905],[-51.207875128999945,-0.053155205999857],[-51.2102758449999,-0.061822197999859],[-51.21519934799997,-0.068658135999868],[-51.23932857999998,-0.072564385999954],[-51.26545162699995,-0.083428643999852],[-51.30894934799997,-0.076755466999899],[-51.326975063999896,-0.079522393999866],[-51.326975063999896,-0.085707289999917],[-51.317697719999956,-0.090671481999962],[-51.29393469999985,-0.095798434999892],[-51.282215949999845,-0.10312265399989],[-51.275746222999935,-0.113213799999869],[-51.27253170499989,-0.12184010199995],[-51.266346808999934,-0.127129815999851],[-51.25121008999994,-0.127373955999886],[-51.32249915299994,-0.215264580999843],[-51.337554490999935,-0.261000257999868],[-51.356678839999915,-0.290459893999852],[-51.363840298999975,-0.326104424999897],[-51.37071692599997,-0.342950127999899],[-51.38841712099989,-0.373711846999882],[-51.400990363999966,-0.389580987999906],[-51.430775519999884,-0.414320570999962],[-51.443023240999935,-0.42839934699991],[-51.44554602799985,-0.44036223799985],[-51.44444739499991,-0.455336195999891],[-51.44517981699994,-0.471449476999865],[-51.45360266799989,-0.486748955999914],[-51.486236131999924,-0.517185153999876],[-51.506092902999846,-0.531914971999868],[-51.52183997299991,-0.538262627999899],[-51.5365291009999,-0.535577080999914],[-51.56248938699988,-0.52548593499985],[-51.58018958199989,-0.525160414999917],[-51.58018958199989,-0.531996351999851],[-51.57079016799989,-0.531670830999829],[-51.56432044199997,-0.533379815999837],[-51.55284583199992,-0.538262627999899],[-51.55284583199992,-0.545586846999981],[-51.569081183999884,-0.550062757999868],[-51.58763587099989,-0.551853122999859],[-51.58763587099989,-0.558689059999864],[-51.57359778599994,-0.559747002999913],[-51.56110592399992,-0.558689059999864],[-51.551625128999916,-0.554375908999873],[-51.54670162699995,-0.545586846999981],[-51.53237870999996,-0.551853122999859],[-51.57900956899987,-0.604261976999823],[-51.628570115999906,-0.67603932099999],[-51.635650193999965,-0.682224216999884],[-51.6498103509999,-0.690524997999944],[-51.65648352799985,-0.695896091999913],[-51.69749915299985,-0.747165622999859],[-51.700510219999956,-0.759698174999855],[-51.71373450399989,-0.793226820999891],[-51.72419186099998,-0.877699476999851],[-51.71084550699995,-0.978610934999892],[-51.71117102799988,-1.011163018999852],[-51.712880011999886,-1.020440362999906],[-51.7154841789999,-1.027520440999865],[-51.71910559799994,-1.033379815999822],[-51.72419186099998,-1.039157809999878],[-51.73273678299989,-1.045586846999882],[-51.75177975199989,-1.055271091999856],[-51.784820115999935,-1.083591403999975],[-51.80064856699988,-1.092705987999878],[-51.82209225199992,-1.123630466999927],[-51.83409583199994,-1.134698174999869],[-51.908314581999946,-1.157972914999874],[-51.929351365999906,-1.178317966999956],[-51.93024654899989,-1.223402601999837],[-51.916005011999886,-1.309177341999969],[-51.921457485999916,-1.325778903999932],[-51.93455969999988,-1.339532158999859],[-51.96442623599997,-1.360609632999967],[-51.995350714999915,-1.396416924999897],[-52.0084529289999,-1.401625257999896],[-52.06578528599991,-1.405043226999894],[-52.08726966099994,-1.401625257999896],[-52.1513565749999,-1.380954684999878],[-52.16612708199989,-1.370863539999903],[-52.17943274599992,-1.356866143999937],[-52.195383266999926,-1.344984632999811],[-52.21458899599988,-1.340020440999936],[-52.23810787699995,-1.346368096999882],[-52.249175584999875,-1.353773695999862],[-52.27599036399988,-1.384454033999873],[-52.28547115799998,-1.390069268999952],[-52.30833899599989,-1.393649997999844],[-52.333241339999915,-1.407810153999947],[-52.401966925999915,-1.42205169099995],[-52.42198645699989,-1.430352471999853],[-52.442209438999896,-1.443129164999888],[-52.457834438999896,-1.458265882999967],[-52.46401933499995,-1.473565362999849],[-52.47508704299988,-1.484063408999915],[-52.55809485599988,-1.518731377999885],[-52.5753474599999,-1.523125908999958],[-52.61827551999997,-1.525648695999891],[-52.68211829299989,-1.544854424999855],[-52.697417772999955,-1.552422783999887],[-52.70604407499985,-1.560642184999892],[-52.71003170499992,-1.567803643999923],[-52.7110896479999,-1.576836846999853],[-52.71104895699989,-1.590264580999843],[-52.70811926999997,-1.600030205999872],[-52.70055091099991,-1.60027434699991],[-52.69050045499995,-1.596449476999808],[-52.68004309799996,-1.594008070999877],[-52.6582738919999,-1.591485283999859],[-52.5950414699999,-1.573500257999825],[-52.42308508999994,-1.56609465899983],[-52.343902147999955,-1.552422783999887],[-52.3267716139999,-1.547051690999837],[-52.29124915299985,-1.523614190999865],[-52.27912350199995,-1.518243096999896],[-52.26349850199995,-1.525485935],[-52.250396287999905,-1.542250257999854],[-52.24144446499989,-1.561700127999856],[-52.23656165299991,-1.585381768999951],[-52.23338782499994,-1.593438408999901],[-52.231068488999966,-1.602715752999941],[-52.231922980999876,-1.614434502999842],[-52.236805792999945,-1.62558359199987],[-52.25230872299994,-1.644952080999886],[-52.258615688999896,-1.655450127999856],[-52.263335740999906,-1.676853122999901],[-52.26024329299992,-1.695245049999841],[-52.248768683999884,-1.703057549999841],[-52.2223201159999,-1.691176039999888],[-52.2088923819999,-1.691827080999843],[-52.203968878999945,-1.690199476999823],[-52.200347459999875,-1.684747002999955],[-52.19896399599989,-1.673923434999878],[-52.19713294199991,-1.66969166499986],[-52.162993943999936,-1.634942315999979],[-52.1419571609999,-1.62273528399983],[-52.123768683999906,-1.619073174999954],[-52.077381964999944,-1.621270440999865],[-52.072499152999875,-1.619561455999943],[-52.05663001199994,-1.610935153999861],[-52.04629472599993,-1.607598565999837],[-52.03661048099988,-1.607191664999917],[-52.01577714799989,-1.608656507999882],[-52.004750128999945,-1.607598565999837],[-51.958648240999906,-1.593357028999918],[-51.91462154899992,-1.570977471999981],[-51.669545050999915,-1.401625257999896],[-51.595041469999956,-1.386895440999893],[-51.57677161399988,-1.377699476999837],[-51.55797278599994,-1.365411065999879],[-51.48399817599994,-1.340101820999919],[-51.46202551999994,-1.329359632999825],[-51.437489386999914,-1.312676690999879],[-51.41771399599989,-1.291680596999924],[-51.4094945949999,-1.268161716999884],[-51.39964758999989,-1.25107187299993],[-51.37633216099988,-1.240004164999888],[-51.326975063999896,-1.230889580999985],[-51.326975063999896,-1.237074476999879],[-51.33482825399989,-1.240655205999843],[-51.3399145169999,-1.24488697699995],[-51.34357662699994,-1.250258070999919],[-51.34740149599989,-1.257582289999917],[-51.32848059799994,-1.253838799999897],[-51.3053279289999,-1.243829033999901],[-51.28343665299988,-1.231377862999892],[-51.268299933999884,-1.220391533999845],[-51.25218665299991,-1.201918226999823],[-51.22785396999993,-1.162692966999969],[-51.213693813999924,-1.144952080999886],[-51.187489386999886,-1.121677341999884],[-51.16148841099991,-1.103610934999864],[-51.03294837099995,-1.03801848799985],[-51.00340735599988,-1.01376718499985],[-50.991118943999936,-0.987237237999892],[-50.99657141799986,-0.970798434999978],[-51.00609290299985,-0.952813408999944],[-51.009755011999914,-0.935967705999943],[-50.99730383999989,-0.922458591999884],[-50.97667395699997,-0.92017994599999],[-50.957427537999926,-0.949883721999924],[-50.93590247299991,-0.956638278999875],[-50.93590247299991,-0.949151299999897],[-50.947377081999946,-0.942478122999859],[-50.9532771479999,-0.93132903399983],[-50.95221920499992,-0.919122002999941],[-50.94273841099991,-0.908786716999856],[-50.92861894399987,-0.905694268999866],[-50.88133704299992,-0.914971612999906],[-50.85423743399991,-0.911390882999854],[-50.83958899599989,-0.912774346999825],[-50.82664954299989,-0.922458591999884],[-50.82168535099992,-0.935316664999988],[-50.82192949099988,-0.950616143999952],[-50.82664954299989,-0.983819268999966],[-50.82445227799991,-1.030938408999873],[-50.82664954299989,-1.045342705999843],[-50.833892381999895,-1.058689059999864],[-50.84386145699991,-1.06585051899998],[-50.855458136999914,-1.071465752999899],[-50.86766516799989,-1.079522393999923],[-50.89240475199997,-1.112237237999949],[-50.9017634759999,-1.121026299999841],[-50.91234290299985,-1.12558359199987],[-50.92528235599985,-1.127699476999879],[-50.956410285999965,-1.12851327899989],[-50.84748287699994,-1.197849216999856],[-50.830067511999886,-1.213799737999864],[-50.81993567599994,-1.231703382999825],[-50.81859290299985,-1.252373955999843],[-50.829253709999875,-1.312107028999989],[-50.82664954299989,-1.370863539999903],[-50.823475714999915,-1.376397393999838],[-50.81655839799992,-1.382256768999881],[-50.80931555899991,-1.390232028999918],[-50.80553137899997,-1.401625257999896],[-50.813343878999966,-1.413750908999887],[-50.818104620999854,-1.424899997999987],[-50.819203253999916,-1.436293226999865],[-50.80968176999991,-1.457696221999825],[-50.77867591099988,-1.498630466999842],[-50.76671301999994,-1.540785414999888],[-50.75332597599996,-1.557061455999829],[-50.689279751999976,-1.612074476999894],[-50.67955481699993,-1.629001559999878],[-50.67048092399992,-1.696465752999856],[-50.66380774599989,-1.719414971999853],[-50.65469316299988,-1.737969658999859],[-50.67393958199992,-1.764743747999944],[-50.69102942599997,-1.765394789999988],[-50.73729407499987,-1.737969658999859],[-50.72642981699988,-1.761163018999881],[-50.71797742299989,-1.768763716999942],[-50.70950814999989,-1.790948470999822],[-50.71728258099995,-1.822473028999951],[-50.739507011999905,-1.832651286999933],[-50.758327883999925,-1.845397278999926],[-50.7669355999999,-1.863288958999874],[-50.76700867699989,-1.882057221999957],[-50.78756728699988,-1.897369651999938],[-50.814904649999875,-1.896456074999932],[-50.83621428399991,-1.882754929999876],[-50.85842751999985,-1.865648005999929],[-50.87980342399995,-1.85195062899983],[-50.88841532099991,-1.868147424999876],[-50.89273390499994,-1.8792346],[-50.87988748399991,-1.882672187999859],[-50.87051577899984,-1.901463277999895],[-50.8534216989999,-1.908323222999854],[-50.854384875999926,-1.933080238999849],[-50.84421518499994,-1.955300851999865],[-50.8314202279999,-1.963010771999976],[-50.81860699799995,-1.969006744999859],[-50.821947036999916,-1.945951999999849],[-50.82615952199993,-1.930576141999865],[-50.818440889999884,-1.924615872],[-50.791954984999926,-1.927230587999986],[-50.737207303999895,-1.92134836799984],[-50.71325829399987,-1.91456591799998],[-50.70214360399984,-1.909472010999949],[-50.6978202839999,-1.888166310999963],[-50.70034101399992,-1.871962251999861],[-50.698587769999904,-1.854062255999835],[-50.690020981999936,-1.842998459999947],[-50.676329423999874,-1.83024268799987],[-50.66773851199986,-1.808099979999909],[-50.660043748999925,-1.803004285999819],[-50.63360790899992,-1.811591092999933],[-50.61058067699989,-1.814202552999902],[-50.59170488199996,-1.843194268999895],[-50.565337693999965,-1.890720309999907],[-50.54723059799994,-1.906914971999853],[-50.52481035099993,-1.92148202899989],[-50.50450598899994,-1.929131768999824],[-50.48961341099988,-1.92848072699995],[-50.47622636599988,-1.92603932099992],[-50.46666419199991,-1.927829684999906],[-50.46296139199995,-1.939711195999863],[-50.46593176999997,-1.947198174999841],[-50.47996985599991,-1.967054945999934],[-50.48403886599988,-1.977634372999972],[-50.4700821609999,-1.969903252999885],[-50.456654425999915,-1.94394296699997],[-50.443023240999956,-1.935967705999843],[-50.44188391799992,-1.946954033999972],[-50.44322669199991,-1.956638278999847],[-50.44709225199991,-1.965508721999896],[-50.45335852799988,-1.973890882999854],[-50.45750891799992,-1.983819268999866],[-50.454253709999875,-1.99358489399998],[-50.443023240999956,-2.011651299999826],[-50.43590247299991,-2.045098565999879],[-50.428578253999916,-2.062920830999857],[-50.41576087099989,-2.073174737999963],[-50.40977942599994,-2.047458591999927],[-50.40387936099992,-2.035821221999825],[-50.394642706999946,-2.025485934999907],[-50.38247636599988,-2.017185153999932],[-50.37875643999985,-2.005425314999911],[-50.377907121999925,-1.998751533999908],[-50.373702916999974,-1.987077181999865],[-50.37284057099993,-1.973727897999879],[-50.364455860999925,-1.961227996999824],[-50.34100750099995,-1.93624510399988],[-50.312538998999905,-1.908773717999821],[-50.280769956999876,-1.893828695999957],[-50.25133216099994,-1.901788018999852],[-50.23155676999991,-1.895765882999924],[-50.20734615799992,-1.897149346999825],[-50.18272864499991,-1.904229424999883],[-50.16193600199992,-1.915622653999847],[-50.15477454299989,-1.882745049999855],[-50.13658606699988,-1.861993096999939],[-50.11042232999995,-1.849216403999989],[-50.02489173099993,-1.826104424999855],[-50.00059973899994,-1.823663018999824],[-49.97691809799994,-1.826104424999855],[-49.95270748599992,-1.833428643999866],[-49.93224036399988,-1.842950127999856],[-49.87535559799994,-1.879571221999967],[-49.86929277299993,-1.888767184999864],[-49.86705481699997,-1.905531507999882],[-49.870472785999965,-1.919040622999858],[-49.89439856699994,-1.963311455999985],[-49.87482662699995,-1.942966403999904],[-49.86025956899993,-1.922458591999856],[-49.85423743399991,-1.942966403999904],[-49.85065670499995,-1.962579033999958],[-49.850168423999975,-1.982679945999919],[-49.8534236319999,-2.004978122999859],[-49.86119544199991,-2.026543877999956],[-49.881947394999905,-2.066582940999908],[-49.887562628999916,-2.087497653999861],[-49.88072669199991,-2.087497653999861],[-49.86025956899993,-2.045830987999906],[-49.8534236319999,-2.045830987999906],[-49.84797115799998,-2.062432549999869],[-49.837513800999886,-2.081149997999929],[-49.82494055899991,-2.097751559999892],[-49.81248938699988,-2.108005467],[-49.82892818899998,-2.057793877999927],[-49.8391820949999,-2.004978122999859],[-49.837880011999914,-1.926690362999963],[-49.84658769399991,-1.909356377999884],[-49.84658769399991,-1.901788018999852],[-49.834706183999856,-1.905938408999887],[-49.83088131399992,-1.918064059999878],[-49.83234615799989,-1.949639580999872],[-49.82335364499997,-1.928155205999929],[-49.819813605999876,-1.911797783999915],[-49.81045488199996,-1.900567315999837],[-49.784535285999965,-1.895114841999969],[-49.76048743399991,-1.89674244599999],[-49.74718176999991,-1.904717705999872],[-49.73741614499996,-1.916273695999891],[-49.72370357999992,-1.929131768999824],[-49.727894660999965,-1.910821221999939],[-49.72130286399988,-1.904066664999917],[-49.71068274599995,-1.908298434999935],[-49.70262610599991,-1.922458591999856],[-49.6939998039999,-1.907321872999858],[-49.67609615799995,-1.908623955999857],[-49.65420488199993,-1.920179945999891],[-49.61945553299995,-1.950290622999915],[-49.604644334999904,-1.967868747999859],[-49.59434973899996,-1.988376559999907],[-49.59276282499994,-2.011651299999826],[-49.57941646999993,-1.994317315999837],[-49.592925584999904,-1.964043877999842],[-49.63434811099992,-1.909356377999884],[-49.64736894399991,-1.915622653999847],[-49.649281378999945,-1.907972914999903],[-49.65477454299989,-1.895114841999969],[-49.631703253999916,-1.867852471999896],[-49.59801184799991,-1.842705987999906],[-49.563343878999945,-1.835219007999854],[-49.53746497299994,-1.86093515399989],[-49.52236894399993,-1.795993747999916],[-49.51081295499989,-1.778985283999859],[-49.485218878999916,-1.763929945999934],[-49.46646074099996,-1.764336846999939],[-49.45799719999994,-1.778741143999909],[-49.463002081999974,-1.805759372999873],[-49.45287024599992,-1.799981377999984],[-49.43590247299994,-1.784926039999888],[-49.422027147999955,-1.778985283999859],[-49.42821204299992,-1.798760674999968],[-49.451161261999914,-1.8246395809999],[-49.45616614499994,-1.836683851999823],[-49.454213019999905,-1.85613372199991],[-49.44758053299992,-1.869886976999837],[-49.43480383999989,-1.879978122999972],[-49.41466223899994,-1.888278903999875],[-49.37922115799995,-1.896416924999969],[-49.37043209499998,-1.905043226999894],[-49.36742102799988,-1.925713799999897],[-49.36974036399993,-1.940199476999851],[-49.37580318899995,-1.957207940999908],[-49.38434811099995,-1.972832940999893],[-49.39411373599992,-1.983819268999866],[-49.39411373599992,-1.991306247999916],[-49.38109290299991,-1.991306247999916],[-49.38906816299988,-2.005629164999903],[-49.41291256399995,-2.027439059999949],[-49.422027147999955,-2.038995049999883],[-49.42552649599995,-2.050876559999935],[-49.42821204299992,-2.131524346999882],[-49.43049068899989,-2.141208591999842],[-49.44029700399991,-2.160902601999879],[-49.44554602799991,-2.183770440999879],[-49.45299231699988,-2.190850518999852],[-49.461984829999885,-2.196465752999856],[-49.469838019999884,-2.2035458309999],[-49.49583899599986,-2.246677341999927],[-49.500111456999974,-2.252211195999933],[-49.50300045499991,-2.258396091999913],[-49.50397701699998,-2.310235283999916],[-49.50645911399991,-2.319594007999939],[-49.51227779899994,-2.326755466999899],[-49.51903235599991,-2.333591403999904],[-49.52440344999985,-2.341241143999852],[-49.52721106699991,-2.35084400799991],[-49.52892005099991,-2.370782158999987],[-49.531320766999954,-2.380466403999861],[-49.548939581999974,-2.403090101999837],[-49.55174719999994,-2.412774346999882],[-49.550689256999874,-2.423760674999854],[-49.54600989499994,-2.442559502999899],[-49.54210364499997,-2.497165622999944],[-49.545765753999916,-2.516534112999878],[-49.607818162999955,-2.604913018999824],[-49.617258266999954,-2.615004164999888],[-49.640533006999874,-2.619724216999899],[-49.66063391799992,-2.631768487999906],[-49.67690995999996,-2.649102471999896],[-49.68895423099988,-2.669040622999887],[-49.663685675999915,-2.677666924999969],[-49.61986243399988,-2.670179945999919],[-49.544911261999914,-2.642347914999945],[-49.527414516999954,-2.62835051899998],[-49.523548956999946,-2.615655205999843],[-49.523793097999906,-2.600762627999885],[-49.518299933999884,-2.580254815999837],[-49.51195227799994,-2.573500257999896],[-49.49201412699994,-2.5624325499999],[-49.48656165299991,-2.560316664999931],[-49.482533331999946,-2.556817315999851],[-49.47940019399987,-2.538832289999916],[-49.477284308999856,-2.532484632999967],[-49.45274817599994,-2.507500908999873],[-49.44261633999989,-2.492364190999865],[-49.4356990229999,-2.470391533999859],[-49.43443762899997,-2.451836846999853],[-49.436756964999944,-2.413995049999897],[-49.4356990229999,-2.395277601999837],[-49.42682857999995,-2.367282809999906],[-49.33161373599998,-2.204766533999916],[-49.313954230999855,-2.160414320999891],[-49.30601966099991,-2.124444268999824],[-49.30475826699998,-2.104587497999901],[-49.30052649599986,-2.090915622999958],[-49.23200436099992,-1.948174737999906],[-49.20409094999988,-1.907321872999858],[-49.17564856699996,-1.881442966999856],[-49.16832434799997,-1.878106377999913],[-49.16002356699988,-1.875746351999865],[-49.14556909899994,-1.856758475999911],[-49.14276431199994,-1.839946013999807],[-49.12866458499988,-1.800707216999911],[-49.12300603299994,-1.768008304999881],[-49.08673009699996,-1.748893903999928],[-49.04964841999992,-1.721792002999891],[-49.008864368999895,-1.681124010999866],[-48.991542956999865,-1.635483829999842],[-48.965589459999904,-1.599719331999907],[-48.92607902299991,-1.59359905099987],[-48.903117159999844,-1.584229619999846],[-48.877873766999954,-1.571169416999965],[-48.86478048099991,-1.559961038999845],[-48.85636876099991,-1.559030551999854],[-48.857316833999924,-1.566525034999913],[-48.87508358699992,-1.586137351999852],[-48.892850973999884,-1.598251956],[-48.89567830699988,-1.622542589999867],[-48.903166455999944,-1.638421725999919],[-48.91160678299994,-1.672979591999848],[-48.93030272299998,-1.686040536999869],[-48.93684850399998,-1.693506880999919],[-48.94339430399987,-1.700037817999913],[-48.94620122299994,-1.704704712999884],[-48.942477072999935,-1.719651677999892],[-48.94343169499987,-1.742997409999916],[-48.955599372999956,-1.766329046999928],[-48.96870415599997,-1.785924677999915],[-48.99581502199993,-1.793367713999885],[-49.01172139899995,-1.807360388999911],[-49.01828883399995,-1.827901087999919],[-49.03232450899989,-1.839095985999918],[-49.033268927999956,-1.846567612999862],[-49.01732337099992,-1.847263278999947],[-49.002417737999934,-1.842860329999894],[-48.992123887999895,-1.832596080999807],[-48.98275523399994,-1.813926336999884],[-48.95657702199995,-1.803679459999898],[-48.92946479199992,-1.787832365999833],[-48.917292214999854,-1.762633650999888],[-48.910733301999954,-1.742097424999969],[-48.90025794199991,-1.734551690999851],[-48.89305579299985,-1.722832940999865],[-48.883900519999884,-1.717461846999981],[-48.881418423999946,-1.713474216999913],[-48.890248175999915,-1.693780205999886],[-48.89073645699992,-1.686455987999878],[-48.88239498599992,-1.679620049999855],[-48.864003058999884,-1.67156340899983],[-48.85631262899997,-1.665948174999912],[-48.8535863919999,-1.66187916499986],[-48.847767706999946,-1.649672132999882],[-48.84666907499991,-1.645196221999825],[-48.84508216099996,-1.641371351999823],[-48.84129798099994,-1.64169687299993],[-48.83678137899989,-1.642754815999893],[-48.82966061099992,-1.640557549999897],[-48.81969153599994,-1.640394789999931],[-48.815337693999936,-1.638360283999986],[-48.81281490799992,-1.634047132999896],[-48.81322180899994,-1.6254208309999],[-48.81187903599994,-1.621270440999865],[-48.73680579299992,-1.511407158999887],[-48.73542232999994,-1.507419528999989],[-48.735829230999855,-1.503106377999899],[-48.735829230999855,-1.498793226999808],[-48.733062303999894,-1.494317315999851],[-48.728993292999945,-1.492608330999843],[-48.718658006999924,-1.491957289999888],[-48.715687628999916,-1.490980726999823],[-48.703968878999916,-1.4789364559999],[-48.69933020699989,-1.472914320999976],[-48.69522050699995,-1.463636976999851],[-48.67637140799991,-1.417570647999824],[-48.656946270999924,-1.383379529999871],[-48.64212135399987,-1.385674793999883],[-48.630732977999855,-1.40621144099984],[-48.618205137999894,-1.4278905339999],[-48.60643469999991,-1.456231377999941],[-48.57591712099986,-1.512627862999906],[-48.561756964999944,-1.528903903999932],[-48.55231686099992,-1.544366143999866],[-48.54385331899988,-1.565606377999842],[-48.53502356699991,-1.581475518999866],[-48.52391516799989,-1.580336195999934],[-48.502308722999885,-1.612074476999894],[-48.490223761999886,-1.619073174999954],[-48.46593176999991,-1.621270440999865],[-48.45262610599988,-1.625664971999853],[-48.44204667899993,-1.636407158999944],[-48.433990037999905,-1.649672132999882],[-48.42833411399991,-1.662286065999865],[-48.421457485999895,-1.645114841999842],[-48.4244685539999,-1.626153252999842],[-48.4309789699999,-1.607191664999917],[-48.43455969999988,-1.590264580999843],[-48.443023240999906,-1.570000908999915],[-48.47838294199994,-1.535088799999897],[-48.48289954299989,-1.511407158999887],[-48.464833136999886,-1.522067967],[-48.4479060539999,-1.525974216999913],[-48.42804928299998,-1.524183851999837],[-48.37580318899995,-1.510511976999894],[-48.355824347999885,-1.500420830999829],[-48.33958899599995,-1.487237237999963],[-48.32530676999994,-1.470472914999945],[-48.33413652299993,-1.468682549999869],[-48.36628170499998,-1.470472914999945],[-48.377552863999966,-1.469170830999857],[-48.38809160099992,-1.466078382999882],[-48.397938605999855,-1.461846612999864],[-48.40721594999991,-1.456231377999941],[-48.417632615999906,-1.465101820999905],[-48.43492591099988,-1.470961195999934],[-48.45555579299992,-1.472914320999976],[-48.476144985999944,-1.470472914999945],[-48.49657141799992,-1.461358330999872],[-48.503285285999965,-1.448500257999854],[-48.50157630099997,-1.431247653999932],[-48.49657141799992,-1.408379815999837],[-48.48981686099998,-1.326918226999965],[-48.48275288299993,-1.281300493999851],[-48.454006543999895,-1.244159842999835],[-48.43590301599991,-1.218688411999878],[-48.4231728929999,-1.232515528999869],[-48.42853363499989,-1.265439599999894],[-48.42538650799992,-1.297312483999889],[-48.409820115999906,-1.302829684999864],[-48.33971106699991,-1.316013278999904],[-48.33458411399991,-1.313653252999856],[-48.331613735999895,-1.294203382999939],[-48.32648678299998,-1.279473565999865],[-48.32005774599989,-1.229587497999986],[-48.30504309799994,-1.188246351999879],[-48.28136145699992,-1.167087497999873],[-48.250152147999955,-1.189385674999912],[-48.25731360599988,-1.173516533999887],[-48.26939856699991,-1.161716403999904],[-48.27700761599993,-1.149997654],[-48.270659959999904,-1.134698174999869],[-48.27814693899995,-1.12851327899989],[-48.270659959999904,-1.121026299999841],[-48.258941209999904,-1.126153252999842],[-48.24815833199992,-1.122816664999917],[-48.23668372299996,-1.116875908999972],[-48.22288977799985,-1.113539320999948],[-48.23460852799985,-1.108819268999852],[-48.24714107999995,-1.109307549999841],[-48.2744034499999,-1.113539320999948],[-48.277821417999945,-1.10849374799993],[-48.291127081999974,-1.079522393999923],[-48.29600989499994,-1.055596612999878],[-48.291737433999906,-1.043633721999839],[-48.27769934799997,-1.03964609199987],[-48.23094641799989,-1.038750908999873],[-48.21251380099994,-1.036553643999881],[-48.19810950399989,-1.030450127999884],[-48.18748938699986,-1.018649998],[-48.18553626199991,-1.009942315999837],[-48.184681769999905,-0.998223565999936],[-48.1829320949999,-0.988213799999869],[-48.177845831999974,-0.983819268999966],[-48.17617753799996,-0.979750257999825],[-48.16380774599992,-0.962823174999841],[-48.16079667899993,-0.960056247999887],[-48.15868079299992,-0.93645598799985],[-48.153960740999906,-0.914971612999906],[-48.15217037699992,-0.914239190999879],[-48.14781653599994,-0.910577080999843],[-48.143055792999945,-0.905857029],[-48.14028886599988,-0.901299737999963],[-48.145741339999915,-0.886163018999966],[-48.14655514199992,-0.880791924999826],[-48.14110266799989,-0.854750257999939],[-48.14028886599988,-0.842950127999885],[-48.1435440749999,-0.833265882999825],[-48.1505427729999,-0.826755466999927],[-48.157582160999965,-0.821384372999958],[-48.16079667899993,-0.816013278999918],[-48.15916907499991,-0.796644789999903],[-48.15404212099989,-0.781833591999927],[-48.11156165299991,-0.724541924999969],[-48.03791256399995,-0.661716404],[-48.025257941999904,-0.675713799999969],[-48.02110755099994,-0.683526299999883],[-48.01744544199991,-0.695896091999913],[-48.01781165299991,-0.702732028999932],[-48.02354895699989,-0.715427341999899],[-48.0235896479999,-0.72323984199997],[-48.02135169199991,-0.725030205999957],[-48.012074347999935,-0.731052341999884],[-48.00999915299993,-0.733656507999882],[-48.00255286399994,-0.7465145809999],[-47.969634568999965,-0.779473565999879],[-47.962147589999915,-0.781833591999927],[-47.946115688999924,-0.740492445999976],[-47.87791907499991,-0.69687265399989],[-47.86623811599991,-0.673505404999943],[-47.850087042999945,-0.670993747999873],[-47.82127844999991,-0.67978280999985],[-47.80244441299987,-0.690333769999853],[-47.807380348999885,-0.677309867999867],[-47.82222997499994,-0.664892773999924],[-47.825285627999904,-0.639483049999825],[-47.82461635899994,-0.606651658999837],[-47.81591823299996,-0.588699799999972],[-47.812800148999884,-0.573835827999901],[-47.80907086099998,-0.565167442999879],[-47.789888970999925,-0.58254378399991],[-47.77504503699993,-0.599292497999883],[-47.76949982699995,-0.619743734999858],[-47.770253058999906,-0.637139580999914],[-47.746815558999934,-0.633884372999873],[-47.725168423999946,-0.644138278999975],[-47.71642005099997,-0.667738539999931],[-47.715728318999936,-0.712985934999864],[-47.72240149599989,-0.724379165],[-47.735218878999916,-0.735446872999859],[-47.743397589999915,-0.746270440999865],[-47.73631751199985,-0.757256768999824],[-47.72866777299992,-0.756524346999967],[-47.65282141799989,-0.723890882999925],[-47.62661699099993,-0.707207940999979],[-47.61058508999986,-0.69394296699987],[-47.59727942599994,-0.677341403999989],[-47.58828691299993,-0.641696872999944],[-47.57809959199989,-0.63540749299986],[-47.587163442999945,-0.613963781999914],[-47.584513539999904,-0.578246976999921],[-47.57347599799987,-0.582808732999894],[-47.55919596899989,-0.591270689999888],[-47.5384398399999,-0.610780268999846],[-47.543008736999916,-0.62700689899988],[-47.534494594999956,-0.63730234199987],[-47.529408331999946,-0.646091403999847],[-47.5274145169999,-0.657484632999896],[-47.52399654899989,-0.669122002999913],[-47.51943925699995,-0.67603932099999],[-47.50914466099994,-0.687269789999903],[-47.49327551999991,-0.71209075299987],[-47.48737545499998,-0.728285414999917],[-47.48766028599991,-0.74570077899989],[-47.49669348899991,-0.764743747999887],[-47.42406165299993,-0.764743747999887],[-47.408599412999905,-0.771091403999904],[-47.40636145699992,-0.801446221999882],[-47.39305579299992,-0.812595309999906],[-47.39305579299992,-0.800713799999855],[-47.39085852799991,-0.789727471999981],[-47.38634192599994,-0.779961846999868],[-47.37938391799986,-0.770928643999937],[-47.3849177729999,-0.767185153999918],[-47.389271613999874,-0.762627862999878],[-47.39199785099996,-0.756280205999929],[-47.39305579299992,-0.747165622999859],[-47.414133266999926,-0.736911716999913],[-47.43879146999993,-0.703301690999893],[-47.44831295499992,-0.695896091999913],[-47.45103919199988,-0.707126559999907],[-47.45470130099994,-0.716566664999931],[-47.46019446499986,-0.724541924999969],[-47.46873938699988,-0.730645440999879],[-47.470041469999984,-0.621840101999851],[-47.46442623599998,-0.609063408999901],[-47.44831295499992,-0.607110283999859],[-47.46190344999988,-0.592868747999944],[-47.44640051999993,-0.585137627999856],[-47.43016516799991,-0.580010674999841],[-47.41437740799995,-0.581231377999856],[-47.39981035099992,-0.592868747999944],[-47.404530402999846,-0.599786065999865],[-47.40965735599985,-0.609795830999929],[-47.414133266999926,-0.613946221999882],[-47.41002356699997,-0.628350518999852],[-47.4147029289999,-0.661309502999828],[-47.40733801999991,-0.68157317499984],[-47.40880286399996,-0.670098565999879],[-47.40729732999991,-0.660251559999949],[-47.40217037699989,-0.652520440999851],[-47.39305579299992,-0.648125908999873],[-47.390288865999935,-0.661553643999866],[-47.38573157499991,-0.672784112999949],[-47.37804114499997,-0.679864190999837],[-47.36571204299992,-0.68157317499984],[-47.36571204299992,-0.67603932099999],[-47.3740128249999,-0.670342705999829],[-47.380238410999965,-0.658868096999967],[-47.381092902999875,-0.645440362999892],[-47.37315833199992,-0.633884372999873],[-47.359445766999976,-0.63095468499985],[-47.346424933999884,-0.63730234199987],[-47.32469641799992,-0.654880466999899],[-47.32628333199994,-0.639092705999857],[-47.33267167899987,-0.629164320999863],[-47.34019934799994,-0.62021249799993],[-47.34520423099988,-0.607110283999859],[-47.32884680899985,-0.613457940999893],[-47.316639777999875,-0.607598565999936],[-47.30589758999989,-0.597914320999891],[-47.29401607999992,-0.592868747999944],[-47.279123501999976,-0.59921640399989],[-47.27708899599995,-0.614190362999835],[-47.27904212099988,-0.632500908999887],[-47.27635657499991,-0.648125908999873],[-47.269520636999886,-0.648125908999873],[-47.25788326699998,-0.640883070999934],[-47.250803188999924,-0.647067966999913],[-47.249582485999895,-0.660577080999971],[-47.25584876199986,-0.67603932099999],[-47.23875891799992,-0.664727471999839],[-47.23448645699989,-0.651055596999896],[-47.237660285999965,-0.635837497999916],[-47.24278723899988,-0.62021249799993],[-47.198109503999916,-0.651543877999885],[-47.194569464999944,-0.663832289999931],[-47.199940558999884,-0.676934502999984],[-47.20860755099988,-0.681817315999879],[-47.2154841789999,-0.669122002999913],[-47.2223201159999,-0.669122002999913],[-47.22533118399991,-0.679620049999883],[-47.2306208979999,-0.687269789999903],[-47.23851477799988,-0.692640882999953],[-47.24901282499994,-0.695896091999913],[-47.24901282499994,-0.702732028999932],[-47.23595130099994,-0.716403903999876],[-47.22911536399994,-0.716403903999876],[-47.22223873599992,-0.702325127999828],[-47.20824133999989,-0.699151299999869],[-47.19090735599988,-0.702813408999916],[-47.17393958199991,-0.709567966999856],[-47.17406165299988,-0.698825778999932],[-47.17198645699994,-0.692152601999965],[-47.16763261599996,-0.68718840899983],[-47.160878058999934,-0.68157317499984],[-47.15489661399991,-0.697523695999934],[-47.154204881999874,-0.713311455999886],[-47.15843665299991,-0.728773695999905],[-47.167103644999884,-0.743747653999847],[-47.173654751999976,-0.748467705999857],[-47.19090735599988,-0.756280205999929],[-47.19440670499998,-0.761000257999854],[-47.1908259759999,-0.77019622199991],[-47.18272864499997,-0.769707940999922],[-47.17357337099989,-0.764092705999843],[-47.167103644999884,-0.757256768999824],[-47.15575110599991,-0.764092705999843],[-47.148019985999916,-0.774102471999825],[-47.14305579299986,-0.786065362999935],[-47.13975989499991,-0.798923434999878],[-47.1346736319999,-0.780531507999839],[-47.13853919199991,-0.759698174999855],[-47.139556443999965,-0.74138762799997],[-47.126088019999884,-0.730645440999879],[-47.12474524599989,-0.737969658999873],[-47.120757615999906,-0.74504973799985],[-47.11929277299995,-0.750583591999856],[-47.115223761999914,-0.741875908999958],[-47.11571204299988,-0.736504815999908],[-47.11790930899988,-0.730645440999879],[-47.11929277299995,-0.719821872999873],[-47.1178279289999,-0.713148695999919],[-47.10993404899992,-0.702813408999916],[-47.10562089799993,-0.695896091999913],[-47.10289466099994,-0.674981377999941],[-47.098988410999965,-0.665622653999918],[-47.088246222999935,-0.661716404],[-47.07754472599993,-0.665704033999901],[-47.07306881399995,-0.67522551899998],[-47.07359778599994,-0.686455987999892],[-47.07835852799994,-0.695896091999913],[-47.075510219999984,-0.6976864559999],[-47.07371985599991,-0.697360934999878],[-47.07258053299994,-0.697930596999853],[-47.071522589999915,-0.702732028999932],[-47.079701300999915,-0.709649346999839],[-47.079660610999916,-0.735935153999847],[-47.08454342399989,-0.750583591999856],[-47.07835852799994,-0.757256768999824],[-47.071522589999915,-0.743747653999847],[-47.065988735999895,-0.759698174999855],[-47.06468665299991,-0.777032158999845],[-47.0598852199999,-0.789646092],[-47.04356848899988,-0.791436455999985],[-47.054269985999895,-0.802829684999864],[-47.07347571499986,-0.815362237999864],[-47.07835852799994,-0.82626718499985],[-47.07656816299993,-0.836602471999939],[-47.062611456999974,-0.855889580999971],[-47.05719967399992,-0.867120049999883],[-47.05418860599991,-0.856540622999844],[-47.05101477799985,-0.819431247999916],[-47.0477595689999,-0.810723565999851],[-47.042347785999965,-0.800713799999855],[-47.036000128999945,-0.791680596999853],[-47.02989661399993,-0.785251559999935],[-47.02611243399991,-0.787692966999955],[-47.01622473899991,-0.791436455999985],[-47.0165909499999,-0.770114841999927],[-47.01524817599994,-0.760023695999877],[-47.00841223899991,-0.757256768999824],[-46.99266516799986,-0.757256768999824],[-46.98460852799994,-0.749200127999884],[-46.977365688999896,-0.730564059999892],[-46.96910559799991,-0.695896091999913],[-46.95685787699995,-0.710137627999828],[-46.957020636999914,-0.735446872999859],[-46.96910559799991,-0.785251559999935],[-46.96165930899994,-0.785251559999935],[-46.95482337099992,-0.770928643999937],[-46.9462784499999,-0.776055596999868],[-46.94249426999997,-0.782403252999899],[-46.94286048099988,-0.790134372999987],[-46.947377081999946,-0.798923434999878],[-46.928089972999906,-0.798923434999878],[-46.93150794199991,-0.804945570999962],[-46.93785559799994,-0.820407809999892],[-46.94115149599988,-0.82626718499985],[-46.933094855999855,-0.823011976999808],[-46.93130449099996,-0.82195403399993],[-46.928089972999906,-0.819431247999916],[-46.92223059799997,-0.834567966999913],[-46.9303279289999,-0.842868747999901],[-46.94395911399994,-0.847832940999851],[-46.95482337099992,-0.853610934999907],[-46.96300208199992,-0.865004164999874],[-46.968373175999886,-0.879652601999894],[-46.96499589799987,-0.893324476999837],[-46.947377081999946,-0.901299737999963],[-46.94863847599995,-0.884698174999912],[-46.95164954299986,-0.871677341999842],[-46.94912675699993,-0.861504815999893],[-46.934315558999884,-0.853610934999907],[-46.91177324099987,-0.860039971999839],[-46.90078691299993,-0.857354424999855],[-46.90021725199994,-0.839288018999838],[-46.8927302729999,-0.846774997999901],[-46.89134680899991,-0.834161065999908],[-46.8927302729999,-0.785251559999935],[-46.884022589999915,-0.789971612999849],[-46.87767493399988,-0.795668226999837],[-46.873931443999936,-0.802911065999936],[-46.872873501999976,-0.812595309999906],[-46.86538652299993,-0.812595309999906],[-46.86168372299997,-0.806084893999824],[-46.858998175999886,-0.802504164999931],[-46.854644334999904,-0.800551039999888],[-46.84557044199991,-0.798923434999878],[-46.84984290299991,-0.791273696000019],[-46.85594641799992,-0.785577080999857],[-46.863636847999906,-0.781345309999935],[-46.872873501999976,-0.778415622999916],[-46.85863196499988,-0.765720309999864],[-46.832915818999936,-0.730075778999904],[-46.81822669199994,-0.72323984199997],[-46.81822669199994,-0.716403903999876],[-46.831288214999915,-0.709567966999856],[-46.819203253999916,-0.711683851999865],[-46.80919348899991,-0.717217705999886],[-46.80150305899991,-0.725762627999984],[-46.79653886599993,-0.736911716999913],[-46.80809485599988,-0.740004164999988],[-46.81086178299992,-0.74667734199987],[-46.80638587099989,-0.755466403999918],[-46.79653886599993,-0.764743747999887],[-46.81143144399991,-0.770684502999899],[-46.81822669199994,-0.770928643999937],[-46.81822669199994,-0.778415622999916],[-46.81191972599989,-0.78484465899983],[-46.813343878999945,-0.79078541499986],[-46.82046464799993,-0.795668226999837],[-46.831288214999915,-0.798923434999878],[-46.831288214999915,-0.805108330999929],[-46.82127844999994,-0.807793877999828],[-46.81786048099991,-0.814141533999859],[-46.81944739499994,-0.822930596999825],[-46.82445227799988,-0.833103122999859],[-46.812977667999945,-0.829847914999917],[-46.80443274599992,-0.825127862999906],[-46.79893958199989,-0.817152601999851],[-46.79653886599993,-0.805108330999929],[-46.790353969999984,-0.805108330999929],[-46.79759680899991,-0.860528252999913],[-46.79930579299992,-0.86248137799987],[-46.799672003999916,-0.865166924999841],[-46.79653886599993,-0.874607028999861],[-46.7855525379999,-0.893975518999881],[-46.782866990999906,-0.901299737999963],[-46.778635219999984,-0.885837497999944],[-46.7833552729999,-0.874444268999895],[-46.786366339999915,-0.862725518999909],[-46.77668209499995,-0.846774997999901],[-46.769886847999906,-0.846774997999901],[-46.769886847999906,-0.867120049999883],[-46.75963294199988,-0.861504815999893],[-46.75560462099991,-0.850192966999899],[-46.755523240999935,-0.819431247999916],[-46.745106574999845,-0.829278252999856],[-46.719634568999936,-0.864841403999918],[-46.71458899599992,-0.877699476999851],[-46.71873938699985,-0.894626559999921],[-46.74937903599996,-0.942966403999932],[-46.73326575399989,-0.930922132999825],[-46.70929928299994,-0.889825127999842],[-46.69786536399988,-0.880791924999826],[-46.69904537699992,-0.868422132999882],[-46.69762122299994,-0.843845309999878],[-46.688710089999915,-0.825778903999861],[-46.66738847599993,-0.833103122999859],[-46.66063391799991,-0.844903252999842],[-46.65990149599989,-0.855889580999971],[-46.656971808999856,-0.863946221999825],[-46.64321855399993,-0.867120049999883],[-46.63267981699997,-0.863213799999897],[-46.6351619129999,-0.853285414999974],[-46.65673278699998,-0.813972997999855],[-46.655913408999936,-0.801820417999934],[-46.63808735999993,-0.801853370999908],[-46.61379623299993,-0.813235674999859],[-46.598540818999965,-0.867120049999883],[-46.62246660099993,-0.898044528999932],[-46.62645423099991,-0.908786716999856],[-46.61900794199994,-0.908786716999856],[-46.6113988919999,-0.903903903999961],[-46.60875403599991,-0.911065362999821],[-46.611317511999914,-0.924004815999837],[-46.61900794199994,-0.935479424999954],[-46.63263912699997,-0.943454684999921],[-46.64622962099994,-0.945407809999878],[-46.65656490799995,-0.93914153399983],[-46.66002356699994,-0.922458591999884],[-46.66738847599993,-0.922458591999884],[-46.673085089999915,-0.936618747999987],[-46.6822810539999,-0.946709893999866],[-46.723540818999936,-0.972832940999837],[-46.73745683499993,-0.984307549999954],[-46.74705969999991,-0.99911874799993],[-46.74937903599996,-1.018649998],[-46.73814856699996,-1.001560153999961],[-46.720692511999914,-0.983982028999932],[-46.70042883999988,-0.969903252999984],[-46.681060350999864,-0.963474216999884],[-46.677235480999855,-0.965590101999894],[-46.653664335999935,-0.967025346999904],[-46.62611677799987,-0.962203237999972],[-46.605054684999885,-0.956563928999856],[-46.581590825999854,-0.97035583499995],[-46.56456228499991,-0.950950412999987],[-46.56129463399992,-0.928289615999887],[-46.5458934909999,-0.913739662999859],[-46.518351754999884,-0.900823914999861],[-46.5029481119999,-0.8838435709999],[-46.48755809799991,-0.879005632999821],[-46.475422039999955,-0.883877274999847],[-46.465696289999926,-0.876602409999848],[-46.44706800599997,-0.872575887999929],[-46.4276291299999,-0.868549980999902],[-46.416309164999944,-0.880708042999814],[-46.42118662599992,-0.894466062999868],[-46.43820179899989,-0.902541997999904],[-46.460878181999874,-0.906561914999884],[-46.480326844999865,-0.919490906999911],[-46.473063144999905,-0.936498756999839],[-46.47713306199995,-0.95268219699993],[-46.48929239099988,-0.964806755999916],[-46.488497125999885,-0.976139198999917],[-46.471506992999934,-0.98587640799991],[-46.47558130199988,-1.006917264999842],[-46.480091925999886,-1.022230726999894],[-46.46678626199986,-1.023125908999887],[-46.46271725199992,-1.0316708309999],[-46.47500566299996,-1.045342705999843],[-46.46458899599989,-1.04583098799992],[-46.4531957669999,-1.043552341999856],[-46.444081183999906,-1.037774346999896],[-46.44029700399989,-1.028252862999892],[-46.435658331999974,-1.023858330999914],[-46.4251195949999,-1.028741143999881],[-46.413726365999935,-1.036065362999892],[-46.40672766799986,-1.039157809999878],[-46.39268958199992,-1.02711353999986],[-46.38451087099992,-1.009860934999864],[-46.36489824099993,-1.008396091999899],[-46.36705481699994,-1.025485934999935],[-46.365793423999946,-1.045342705999843],[-46.361195441999904,-1.067315362999864],[-46.35651607999998,-1.075290622999916],[-46.3529353509999,-1.069105726999851],[-46.35147050699995,-1.049004815999979],[-46.34618079299988,-1.033949476999965],[-46.33446204299989,-1.02214934699991],[-46.322661912999905,-1.020277601999851],[-46.31737219999994,-1.035332940999865],[-46.31737219999994,-1.073337497999873],[-46.31899980399996,-1.081475518999966],[-46.32433020699992,-1.097344658999901],[-46.32481848899991,-1.107354424999897],[-46.30955969999985,-1.095879815999936],[-46.30125891799989,-1.079196872999901],[-46.297678188999896,-1.057712497999887],[-46.296864386999886,-1.0316708309999],[-46.29002844999988,-1.0316708309999],[-46.28062903599993,-1.048923434999907],[-46.25625566299988,-1.077080987999892],[-46.248443162999905,-1.093682549999855],[-46.25401770699992,-1.077406507999825],[-46.27110755099994,-1.053643487999835],[-46.27635657499994,-1.039157809999878],[-46.27904212099992,-1.036553643999881],[-46.28331458199992,-1.029392184999935],[-46.28331458199992,-1.022067966999927],[-46.26414954299986,-1.016696872999958],[-46.274650789999924,-1.005538991999842],[-46.28147903099992,-0.997448503999934],[-46.278978511999895,-0.986260995999857],[-46.267769363999975,-0.971353688999912],[-46.26214681399989,-0.950220064999954],[-46.2503082599999,-0.930954832999873],[-46.23424231699988,-0.917087497999916],[-46.20030676999994,-0.907647393999909],[-46.17178300699993,-0.920993748],[-46.173939581999946,-0.956638278999875],[-46.18016516799989,-0.956638278999875],[-46.19001217399992,-0.959161065999894],[-46.20348059799991,-0.976332289999917],[-46.21556555899991,-0.997328382999854],[-46.22118079299992,-1.011163018999852],[-46.20571855399987,-1.006605726999822],[-46.19859778599994,-1.010511976999808],[-46.201242641999926,-1.018243096999825],[-46.214955206999946,-1.024834893999895],[-46.21328691299993,-1.028578382999825],[-46.21231035099996,-1.031833591999956],[-46.21080481699991,-1.035088799999826],[-46.20750891799986,-1.039157809999878],[-46.21178137899997,-1.044203382999811],[-46.21703040299988,-1.05388762799987],[-46.22118079299992,-1.059014580999886],[-46.211496548999946,-1.074802341999927],[-46.26211503799993,-1.183200778999847],[-46.23053951699992,-1.147719007999939],[-46.22118079299992,-1.141534112999878],[-46.20885169199994,-1.143161716999899],[-46.196034308999906,-1.149346612999878],[-46.182118292999945,-1.153252862999878],[-46.16649329299986,-1.148370049999983],[-46.15542558499993,-1.126153252999842],[-46.14708411399994,-1.114190362999821],[-46.139230923999975,-1.113539320999948],[-46.13630123599995,-1.126071872999859],[-46.14452063699994,-1.161390882999882],[-46.14606686099998,-1.176364841999913],[-46.13280188699985,-1.163995049999969],[-46.12682044199994,-1.146091403999918],[-46.1255997389999,-1.103936455999886],[-46.12262936099992,-1.095310153999876],[-46.11571204299992,-1.085056247999859],[-46.10773678299995,-1.07675546699987],[-46.101673956999946,-1.073337497999873],[-46.093902147999955,-1.075860283999887],[-46.09048417899996,-1.082452080999943],[-46.088368292999945,-1.091241143999824],[-46.08458411399991,-1.100518487999878],[-46.06847083199994,-1.130466403999932],[-46.06468665299991,-1.147637627999956],[-46.07408606699994,-1.155205987999821],[-46.085560675999886,-1.162041924999926],[-46.094105597999906,-1.178317966999956],[-46.095326300999915,-1.196547132999939],[-46.08458411399991,-1.210381768999937],[-46.072377081999946,-1.201592705999886],[-46.06358801999996,-1.189629815999851],[-46.0504451159999,-1.162692966999969],[-46.040598110999895,-1.175225518999881],[-46.0397029289999,-1.187107028999932],[-46.044260219999956,-1.198500257999811],[-46.0504451159999,-1.210381768999937],[-46.03221594999994,-1.200778903999876],[-46.030100063999924,-1.184665622999901],[-46.0345352859999,-1.165785414999874],[-46.03620357999992,-1.148370049999983],[-46.031320766999926,-1.138441664999903],[-46.023304816999904,-1.127536716999913],[-46.01667232999992,-1.113213799999926],[-46.015736456999946,-1.093682549999855],[-46.00890051999994,-1.093682549999855],[-46.00885982999995,-1.098239841999984],[-46.00739498599998,-1.101169529],[-46.00511633999991,-1.103773695999919],[-46.002674933999884,-1.107354424999897],[-45.99083411399991,-1.104261976999823],[-45.99313394999987,-1.079090408999974],[-45.99258341099996,-1.067618006999851],[-45.97945403199986,-1.055083617999884],[-45.96415000199988,-1.063860776999846],[-45.964701454999954,-1.072598918999859],[-45.9610896479999,-1.086195570999891],[-45.96962706899993,-1.086790148999881],[-45.97443600199992,-1.091241143999824],[-45.9610896479999,-1.107354424999897],[-45.97191321499989,-1.111097914999917],[-45.97671464799987,-1.119398695999905],[-45.98159745999993,-1.141534112999878],[-45.97191321499989,-1.136976820999934],[-45.96275794199991,-1.135430596999896],[-45.95470130099997,-1.136895440999865],[-45.948068813999896,-1.141534112999878],[-45.96080481699997,-1.146091403999918],[-45.998890753999945,-1.151788018999909],[-46.002674933999884,-1.192803643999909],[-45.99795488199996,-1.201429945999919],[-45.98664303299998,-1.204034112999821],[-45.97297115799995,-1.205254815999837],[-45.9610896479999,-1.210381768999937],[-45.95571855399993,-1.219984632999839],[-45.95596269399988,-1.240411065999893],[-45.948068813999896,-1.251397393999866],[-45.939035610999895,-1.246270440999851],[-45.934478318999936,-1.240004164999888],[-45.93492591099994,-1.232517185],[-45.940663214999915,-1.223402601999837],[-45.936105923999975,-1.222751559999892],[-45.9330134759999,-1.221123955999872],[-45.93024654899991,-1.219008070999948],[-45.92638098899993,-1.217217705999872],[-45.93053137899997,-1.200941664999931],[-45.92332923099994,-1.173028252999899],[-45.91012489399995,-1.140941868999903],[-45.889889562999876,-1.0907451699999],[-45.8674869139999,-1.063470556999889],[-45.85384242199993,-1.067859856999888],[-45.853868819999974,-1.101172137999953],[-45.885243292999945,-1.140883070999934],[-45.89000403599994,-1.154392184999907],[-45.900217251999976,-1.167575778999861],[-45.90587317599997,-1.17253997199991],[-45.90721594999988,-1.197523696],[-45.90587317599997,-1.210381768999937],[-45.89801998599998,-1.183038018999881],[-45.891835089999915,-1.172051690999822],[-45.87922115799994,-1.162692966999969],[-45.882801886999914,-1.178806247999944],[-45.88536536399991,-1.183200778999847],[-45.87279212099992,-1.20224374799993],[-45.88060462099992,-1.219414971999868],[-45.89427649599986,-1.237074476999879],[-45.899647589999915,-1.257582289999917],[-45.87385006399998,-1.235446872999859],[-45.86485755099997,-1.230889580999985],[-45.86485755099997,-1.237074476999879],[-45.86847896999993,-1.244235934999907],[-45.86485755099997,-1.251397393999866],[-45.86485755099997,-1.257582289999917],[-45.87092037699995,-1.263360283999972],[-45.8814591139999,-1.277601820999976],[-45.88536536399991,-1.284844658999916],[-45.862538214999915,-1.27312590899983],[-45.84666907499988,-1.257012627999856],[-45.83836829299989,-1.234307549999912],[-45.83820553299992,-1.202894789999888],[-45.827381964999944,-1.218519789999874],[-45.82095292899993,-1.241794528999876],[-45.82054602799991,-1.262790623],[-45.82762610599988,-1.271905205999914],[-45.840565558999884,-1.279554946000019],[-45.83458411399996,-1.297133070999877],[-45.82095292899993,-1.315687757999882],[-45.81090247299994,-1.326429945999976],[-45.81948808499996,-1.296156507999811],[-45.809803839999915,-1.275079033999873],[-45.79369055899994,-1.267673434999892],[-45.78294837099992,-1.278008721999981],[-45.77432206899991,-1.264255466999884],[-45.76842200399997,-1.228773695999976],[-45.762440558999884,-1.210381768999937],[-45.74791419199993,-1.204034112999821],[-45.72158769399991,-1.134942315999908],[-45.70103919199997,-1.134698174999869],[-45.69603430899994,-1.160577080999872],[-45.72736568899998,-1.225681247999901],[-45.73452714799993,-1.251397393999866],[-45.72834225199994,-1.251397393999866],[-45.726918097999885,-1.247002862999878],[-45.721506313999924,-1.237074476999879],[-45.702951954999946,-1.222355767],[-45.68856755699994,-1.202188508999882],[-45.67965000599992,-1.209955486999846],[-45.67540498899987,-1.229359376999852],[-45.67269832699992,-1.244101166999869],[-45.675047979999896,-1.259230025999926],[-45.66458851799993,-1.268550851999919],[-45.654118224999934,-1.274379938999857],[-45.65957126299991,-1.29299218299991],[-45.65180882899992,-1.299986027999935],[-45.651054048999896,-1.317441322999926],[-45.6561057749999,-1.333347875999848],[-45.663484061999924,-1.346540233999818],[-45.670085783999916,-1.353910465999988],[-45.675535442999916,-1.366316418999915],[-45.64073645699992,-1.37053801899988],[-45.632313605999876,-1.367364190999822],[-45.62157141799986,-1.357191664999959],[-45.616363084999875,-1.348321221999839],[-45.61172441299993,-1.334567966999913],[-45.61046301999994,-1.32008228999986],[-45.61510169199997,-1.309177341999969],[-45.62295488199993,-1.295993747999844],[-45.619984503999945,-1.284274997999859],[-45.61025956899988,-1.275648695999934],[-45.598011847999906,-1.271905205999914],[-45.583241339999944,-1.274346612999935],[-45.57921301999997,-1.281508070999891],[-45.58462480399993,-1.289157809999921],[-45.598011847999906,-1.292413018999951],[-45.59410559799991,-1.294122002999956],[-45.59129798099988,-1.295993747999844],[-45.58824622299997,-1.297539971999882],[-45.58372962099991,-1.298516533999859],[-45.588002081999946,-1.307061455999872],[-45.589466925999886,-1.314222914999917],[-45.58812415299991,-1.320733330999914],[-45.58372962099991,-1.326429945999976],[-45.55980383999986,-1.283135674999912],[-45.543853318999936,-1.270277601999894],[-45.52969316299993,-1.284844658999916],[-45.542144334999925,-1.284763278999932],[-45.549387173999975,-1.289727471999882],[-45.55186926999991,-1.299411716999856],[-45.55020097599989,-1.312188408999972],[-45.54515540299985,-1.30999114399998],[-45.53551184799988,-1.308282158999887],[-45.52969316299993,-1.305922132999839],[-45.536732550999915,-1.318617445999905],[-45.54515540299985,-1.327406507999953],[-45.55101477799991,-1.337497653999932],[-45.55020097599989,-1.353773695999862],[-45.54637610599988,-1.351169528999876],[-45.53652910099996,-1.346368096999882],[-45.535715298999946,-1.336846612999878],[-45.52521725199995,-1.324883721999939],[-45.5228572259999,-1.312188408999972],[-45.51545162699992,-1.312188408999972],[-45.511789516999954,-1.353692315999879],[-45.51231848899994,-1.360609632999967],[-45.52342688699988,-1.385674737999878],[-45.529286261999914,-1.404473565999922],[-45.52969316299993,-1.415785414999917],[-45.51398678299995,-1.403497002999856],[-45.47134355399993,-1.350192966999899],[-45.468983527999875,-1.343194268999824],[-45.46849524599989,-1.333672783999916],[-45.466786261999886,-1.323011976999879],[-45.46080481699997,-1.312188408999972],[-45.45327714799992,-1.307061455999872],[-45.41982988199996,-1.292413018999951],[-45.44713294199994,-1.292413018999951],[-45.42837480399987,-1.286797783999873],[-45.415679490999906,-1.287692966999856],[-45.40851803299998,-1.296807549999855],[-45.40615800699993,-1.316013278999904],[-45.40721594999988,-1.325372002999927],[-45.41197669199996,-1.342705987999835],[-45.412993943999936,-1.350192966999899],[-45.41730709499993,-1.354180596999868],[-45.43602454299992,-1.353285414999874],[-45.440297003999916,-1.357191664999959],[-45.463042772999955,-1.364922783999887],[-45.468251105999855,-1.367445570999905],[-45.47305253799993,-1.375664971999981],[-45.4739477199999,-1.383721612999835],[-45.47350012899994,-1.392185153999961],[-45.47447669199991,-1.401625257999896],[-45.4845271479999,-1.4301083309999],[-45.48672441299987,-1.447198174999855],[-45.481312628999916,-1.463636976999851],[-45.50422115799992,-1.458672783999972],[-45.51829993399988,-1.464532158999845],[-45.54271399599992,-1.490980726999823],[-45.53107662699992,-1.489678643999824],[-45.522206183999856,-1.484144789999888],[-45.516835089999915,-1.475274346999853],[-45.51545162699992,-1.463636976999851],[-45.50177975199989,-1.469984632999868],[-45.49616451699998,-1.480889580999857],[-45.49864661399991,-1.49334075299987],[-45.509266730999855,-1.504571221999953],[-45.49840247299997,-1.505140882999925],[-45.49132239499991,-1.503350518999937],[-45.48619544199991,-1.498711846999825],[-45.481312628999916,-1.490980726999823],[-45.4645076159999,-1.500583591999884],[-45.46141516799992,-1.516289971999853],[-45.46312415299994,-1.533135674999855],[-45.46080481699997,-1.546156507999853],[-45.449126756999874,-1.528090101999837],[-45.44823157499988,-1.505059502999941],[-45.45457923099991,-1.460056247999873],[-45.45103919199994,-1.453708591999927],[-45.442494269999905,-1.443129164999888],[-45.43211829299992,-1.433282158999873],[-45.42332923099993,-1.428887627999885],[-45.418080206999946,-1.433851820999934],[-45.42031816299993,-1.445000908999859],[-45.42642167899993,-1.45680104],[-45.43293209499993,-1.463636976999851],[-45.423491990999906,-1.459079684999978],[-45.40851803299998,-1.445489190999851],[-45.402740037999905,-1.442559502999828],[-45.401275193999936,-1.437920830999886],[-45.38573157499985,-1.41220468499985],[-45.37954667899987,-1.393731377999828],[-45.35558020699992,-1.349541924999855],[-45.35464433499993,-1.3363583309999],[-45.360218878999945,-1.320245049999826],[-45.34683183499993,-1.311700127999984],[-45.32616126199994,-1.312920830999829],[-45.30996660099987,-1.326429945999976],[-45.307281053999894,-1.336032809999878],[-45.29629472599993,-1.415785414999917],[-45.30614173099988,-1.411390882999839],[-45.30996660099987,-1.408379815999837],[-45.32237708199991,-1.436781507999854],[-45.3418676419999,-1.453057549999883],[-45.36587480399993,-1.465915622999916],[-45.39195716099991,-1.484144789999888],[-45.38573157499985,-1.490980726999823],[-45.377837693999965,-1.479424737999892],[-45.369252081999946,-1.472832940999822],[-45.36017818899995,-1.471774997999944],[-45.35094153599991,-1.476739190999908],[-45.35850989499994,-1.489353122999972],[-45.365101691999904,-1.503838799999926],[-45.369699673999946,-1.519626559999878],[-45.37144934799994,-1.535332940999936],[-45.37873287699995,-1.540785414999888],[-45.39256751199985,-1.548028252999913],[-45.40094967399992,-1.560153903999904],[-45.39195716099991,-1.580336195999934],[-45.38621985599994,-1.564385674999826],[-45.38499915299991,-1.555840752999984],[-45.38573157499985,-1.546156507999853],[-45.35106360599988,-1.559991143999852],[-45.340199347999885,-1.58318450299987],[-45.34337317599994,-1.611586195999905],[-45.355376756999874,-1.654229424999841],[-45.36139889199998,-1.668226820999976],[-45.36558997299991,-1.684747002999955],[-45.36461341099994,-1.703871351999851],[-45.358876105999855,-1.719414971999853],[-45.350168423999975,-1.730075778999876],[-45.33836829299992,-1.737888278999876],[-45.32363847599993,-1.744805596999868],[-45.28441321499988,-1.732191664999974],[-45.27122962099995,-1.72161223799985],[-45.27647864499994,-1.703871351999851],[-45.26207434799997,-1.695896091999884],[-45.227894660999965,-1.683038018999952],[-45.22126217399992,-1.67278411299985],[-45.22630774599994,-1.656508070999905],[-45.2494197259999,-1.624688408999873],[-45.25536048099991,-1.607598565999837],[-45.24746660099993,-1.579278252999885],[-45.22728430899991,-1.547458591999842],[-45.20417232999995,-1.525160414999903],[-45.17967688699994,-1.525648695999891],[-45.175852016999926,-1.500420830999829],[-45.16319739499994,-1.4828427059999],[-45.14867102799991,-1.481540622999901],[-45.138661261999914,-1.504571221999953],[-45.13182532499991,-1.504571221999953],[-45.127674933999884,-1.486993096999925],[-45.1158341139999,-1.477797132999868],[-45.103423631999874,-1.472588799999954],[-45.0977270169999,-1.467054945999948],[-45.09137936099995,-1.464125257999839],[-45.08141028599996,-1.471612237999977],[-45.08120683499993,-1.481133721999896],[-45.10456295499992,-1.484144789999888],[-45.07892818899995,-1.483575127999828],[-45.07184811099998,-1.470391533999873],[-45.07066809799994,-1.45029062299993],[-45.06297766799994,-1.428887627999885],[-45.06151282499988,-1.466403903999904],[-45.056752081999974,-1.476739190999908],[-45.04971269399991,-1.482191664999945],[-45.03868567599994,-1.487562757999896],[-45.027211066999904,-1.490166924999983],[-45.01891028599993,-1.487562757999896],[-45.006743943999936,-1.490655205999971],[-44.99644934799994,-1.508721612999906],[-44.998036261999886,-1.52402109199987],[-45.02196204299992,-1.518243096999896],[-45.009673631999874,-1.533298434999921],[-44.99522864499991,-1.535414320999919],[-44.980458136999935,-1.536065362999963],[-44.967355923999975,-1.546156507999853],[-44.967355923999975,-1.552422783999887],[-44.98497473899988,-1.561211846999868],[-45.00536048099988,-1.567559502999885],[-45.02037512899989,-1.578708591999913],[-45.02196204299992,-1.600844007999882],[-45.015736456999974,-1.600844007999882],[-45.00894120999993,-1.582696221999882],[-44.99583899599989,-1.581963799999855],[-44.967355923999975,-1.594008070999877],[-44.97175045499994,-1.579359632999868],[-44.96727454299989,-1.564629815999865],[-44.95946204299989,-1.549086195999863],[-44.9537247389999,-1.531914971999839],[-44.953846808999884,-1.501722914999917],[-44.94713294199994,-1.492771091999899],[-44.92638098899994,-1.490980726999823],[-44.92638098899994,-1.484144789999888],[-44.93382727799994,-1.484144789999888],[-44.93382727799994,-1.476739190999908],[-44.91563880099994,-1.468682549999869],[-44.89509029899989,-1.456231377999941],[-44.878244594999984,-1.441176040000016],[-44.87120520699992,-1.425469658999958],[-44.868031378999945,-1.421319268999923],[-44.86119544199994,-1.426934502999842],[-44.854359503999916,-1.437107028999876],[-44.85130774599992,-1.446221612999878],[-44.84951738199993,-1.47625090899983],[-44.85130774599992,-1.484144789999888],[-44.85667883999988,-1.489353122999972],[-44.875721808999884,-1.498467705999886],[-44.88536536399994,-1.504571221999953],[-44.891468878999916,-1.512139580999914],[-44.897043423999946,-1.528008721999853],[-44.91307532499994,-1.54794687299993],[-44.91950436099995,-1.562758070999905],[-44.91978919199997,-1.580336195999934],[-44.91209876199986,-1.600844007999882],[-44.92625891799988,-1.601169528999904],[-44.94391842399988,-1.597344658999901],[-44.9537247389999,-1.600844007999882],[-44.93932044199993,-1.611016533999845],[-44.92174231699991,-1.629571221999839],[-44.915272589999915,-1.647230726999851],[-44.93382727799994,-1.655450127999856],[-44.918120897999955,-1.657484632999882],[-44.91193600199989,-1.653578382999967],[-44.90306555899994,-1.624688408999873],[-44.9037166009999,-1.617120049999911],[-44.9002986319999,-1.609795830999914],[-44.88536536399994,-1.600844007999882],[-44.87315833199997,-1.612888278999904],[-44.86115475199995,-1.630140882999811],[-44.84740149599992,-1.641289971999839],[-44.83018958199991,-1.634942315999979],[-44.84740149599992,-1.629001559999878],[-44.85069739499997,-1.616143487999935],[-44.84544837099988,-1.600681247999916],[-44.83702551999994,-1.586602471999967],[-44.844471808999906,-1.586602471999967],[-44.84239661399988,-1.581475518999866],[-44.84007727799991,-1.577406507999825],[-44.8380427729999,-1.57284921699987],[-44.83702551999994,-1.56609465899983],[-44.8229060539999,-1.575860283999873],[-44.814076300999936,-1.591241143999909],[-44.80996660099989,-1.609470309999892],[-44.81037350199989,-1.628106377999885],[-44.803618943999965,-1.609307549999841],[-44.80288652299992,-1.600844007999882],[-44.79181881399998,-1.61842213299991],[-44.79572506399998,-1.630059502999828],[-44.80508378799993,-1.639743747999887],[-44.81037350199989,-1.65203215899993],[-44.80638587099992,-1.659437757999839],[-44.78795325399989,-1.673028252999885],[-44.782378709999875,-1.682793877999913],[-44.78538977799988,-1.684177341999984],[-44.80288652299992,-1.703871351999851],[-44.79552161399994,-1.710137627999899],[-44.7774958979999,-1.720635674999869],[-44.77318274599992,-1.724297783999916],[-44.78636633999985,-1.737725518999909],[-44.794992641999954,-1.742771091999842],[-44.80288652299992,-1.751641533999972],[-44.80768795499992,-1.748467705999914],[-44.81078040299991,-1.747735283999887],[-44.82404537699992,-1.751641533999972],[-44.823150193999936,-1.756280205999914],[-44.821929490999935,-1.759209893999838],[-44.816517706999974,-1.765313408999916],[-44.77399654899992,-1.740655205999843],[-44.76781165299985,-1.7269833309999],[-44.77554277299995,-1.703871351999851],[-44.74205481699991,-1.719496351999837],[-44.72496497299997,-1.723402601999837],[-44.707875128999916,-1.717461846999981],[-44.720611131999874,-1.749607028999947],[-44.75084387899997,-1.773125908999916],[-44.81037350199989,-1.805759372999873],[-44.81037350199989,-1.813164971999939],[-44.79515540299991,-1.80754973799985],[-44.75682532499988,-1.801853122999873],[-44.744496222999935,-1.796075127999899],[-44.730458136999886,-1.785821221999882],[-44.723052537999905,-1.791273695999919],[-44.71735592399992,-1.803480726999894],[-44.707875128999916,-1.813164971999939],[-44.679351365999906,-1.811130466999913],[-44.66258704299989,-1.785414320999877],[-44.654652472999935,-1.74976979],[-44.652699347999885,-1.717461846999981],[-44.59801184799994,-1.744805596999868],[-44.61424719999988,-1.753676039999917],[-44.62523352799994,-1.763360283999873],[-44.63288326699995,-1.775648695999933],[-44.63902747299994,-1.792657158999901],[-44.640736456999946,-1.808200778999904],[-44.640614386999886,-1.821872653999932],[-44.64476477799991,-1.831149997999972],[-44.65953528599991,-1.833591404],[-44.65953528599991,-1.839776299999897],[-44.648996548999946,-1.83700937299993],[-44.63267981699991,-1.828057549999897],[-44.62100175699993,-1.826104424999855],[-44.61237545499992,-1.829766533999901],[-44.60680091099991,-1.837497653999918],[-44.60265051999997,-1.844821872999916],[-44.59801184799994,-1.847263278999947],[-44.591867641999954,-1.840427341999842],[-44.58922278599988,-1.828871351999908],[-44.58482825399989,-1.817966403999847],[-44.57323157499988,-1.813164971999939],[-44.565012173999975,-1.818454685],[-44.564442511999914,-1.830743096999967],[-44.56899980399996,-1.84441497199991],[-44.576324022999955,-1.854099216999884],[-44.57013912699989,-1.86093515399989],[-44.56236731699988,-1.850681247999873],[-44.55382239499996,-1.84441497199991],[-44.54653886599996,-1.837823174999855],[-44.54283606699991,-1.826104424999855],[-44.53575598899994,-1.829359632999896],[-44.530181443999936,-1.833754164999888],[-44.52570553299997,-1.839776299999897],[-44.5217179029999,-1.847263278999947],[-44.53766842399992,-1.864922783999958],[-44.57823645699991,-1.886814059999907],[-44.59064693899995,-1.901788018999852],[-44.57115637899994,-1.900567315999837],[-44.536610480999855,-1.891859632999839],[-44.5217179029999,-1.895114841999969],[-44.5130916009999,-1.904554945999905],[-44.50666256399998,-1.920098565999908],[-44.50259355399993,-1.937595309999864],[-44.501210089999944,-1.953383070999905],[-44.49913489499991,-1.961521092],[-44.490223761999886,-1.977959893999824],[-44.48814856699997,-1.987481377999913],[-44.490223761999886,-1.995375257999967],[-44.494699673999946,-2.000095309999892],[-44.49913489499991,-2.003838799999826],[-44.501210089999944,-2.008396091999956],[-44.50959225199992,-2.015557549999912],[-44.528553839999915,-2.017754815999908],[-44.54938717399989,-2.0160458309999],[-44.56330318899998,-2.011651299999826],[-44.57457434799997,-2.024021091999941],[-44.58812415299993,-2.030694268999909],[-44.617298956999974,-2.038995049999883],[-44.611439581999946,-2.039808851999894],[-44.60680091099991,-2.039808851999894],[-44.60265051999997,-2.041192315999965],[-44.59801184799994,-2.045830987999906],[-44.58096269399988,-2.034763278999875],[-44.56135006399992,-2.029554945999877],[-44.54100501199994,-2.029229424999854],[-44.5217179029999,-2.03232187299993],[-44.50450598899988,-2.031996351999823],[-44.4962458979999,-2.035577080999886],[-44.49437415299993,-2.045830987999906],[-44.50055904899989,-2.054457289999903],[-44.53538977799994,-2.080010674999897],[-44.55406653599991,-2.087172132999839],[-44.578846808999884,-2.122328382999896],[-44.60789954299986,-2.153741143999923],[-44.63902747299994,-2.148858330999872],[-44.64525305899991,-2.155694268999966],[-44.63219153599994,-2.159763278999847],[-44.61644446499989,-2.159356377999842],[-44.603382941999904,-2.15715911299985],[-44.59801184799994,-2.155694268999966],[-44.58861243399991,-2.165459893999824],[-44.59430904899989,-2.174248955999971],[-44.617298956999974,-2.189873955999957],[-44.65542558499996,-2.231133721999825],[-44.676258917999945,-2.239841403999989],[-44.707875128999916,-2.237562757999925],[-44.70103919199991,-2.244398695999948],[-44.6974991529999,-2.250420830999857],[-44.69359290299991,-2.265557549999855],[-44.73326575399994,-2.253350518999966],[-44.75137285099996,-2.252048434999878],[-44.76968339799993,-2.259698174999912],[-44.78473873599992,-2.275160414999931],[-44.80117753799993,-2.28573984199997],[-44.82404537699992,-2.279229424999897],[-44.804310675999915,-2.291436455999872],[-44.75942949099988,-2.274834893999909],[-44.71784420499992,-2.265557549999855],[-44.707875128999916,-2.299737237999935],[-44.7005102199999,-2.299737237999935],[-44.693226691999904,-2.285414320999947],[-44.67926998599992,-2.273858330999843],[-44.665638800999886,-2.270928643999824],[-44.65953528599991,-2.282647393999895],[-44.66185462099986,-2.296482028999904],[-44.66746985599988,-2.30527109199987],[-44.674183722999906,-2.312188408999873],[-44.68000240799995,-2.320896091999856],[-44.6880997389999,-2.343438408999844],[-44.692128058999856,-2.348077080999857],[-44.70421301999997,-2.358086846999853],[-44.71084550699993,-2.368340752999956],[-44.71519934799991,-2.392836195999905],[-44.72093665299991,-2.40211353999986],[-44.71410071499989,-2.408949476999879],[-44.71129309799991,-2.396905205999857],[-44.70718339799987,-2.388441664999917],[-44.7014054029999,-2.381768487999949],[-44.67430579299989,-2.360121351999879],[-44.66397050699987,-2.356703382999868],[-44.65953528599991,-2.364353122999887],[-44.6647029289999,-2.40398528399983],[-44.6634822259999,-2.420586846999882],[-44.652699347999885,-2.429457289999917],[-44.65558834499993,-2.420179945999877],[-44.656239386999886,-2.407484632999825],[-44.65416419199994,-2.394463799999826],[-44.64403235599988,-2.374769789999888],[-44.64598548099994,-2.366469007999896],[-44.65025794199994,-2.35881926899988],[-44.652699347999885,-2.351250908999916],[-44.6522517569999,-2.327894789999931],[-44.649769660999965,-2.308770440999865],[-44.64354407499991,-2.290785414999917],[-44.631581183999884,-2.271742446],[-44.58482825399989,-2.230157158999859],[-44.57323157499988,-2.224053643999866],[-44.56224524599992,-2.221774997999972],[-44.55402584499993,-2.216403903999932],[-44.54283606699991,-2.2035458309999],[-44.545155402999875,-2.204034112999977],[-44.54283606699991,-2.189873955999957],[-44.53978430899991,-2.185723565999922],[-44.533273891999926,-2.181084893999909],[-44.52916419199997,-2.176202080999843],[-44.497303839999944,-2.147881768999895],[-44.46165930899991,-2.14462655999985],[-44.42711341099991,-2.162367445999934],[-44.39879309799994,-2.197360934999935],[-44.38975989499994,-2.218357028999876],[-44.38560950399989,-2.23796965899993],[-44.38451087099995,-2.275567315999851],[-44.38182532499987,-2.277601820999876],[-44.36896725199995,-2.292738539999874],[-44.36465410099996,-2.299737237999935],[-44.36245683499996,-2.310316664999903],[-44.36359615799989,-2.333916924999926],[-44.37340247299991,-2.377373955999886],[-44.382313605999855,-2.394789320999948],[-44.39537512899994,-2.40211353999986],[-44.43073482999995,-2.406914971999853],[-44.45343990799989,-2.407484632999825],[-44.473947719999956,-2.40211353999986],[-44.48021399599991,-2.396579684999935],[-44.49071204299989,-2.383070570999948],[-44.49779212099995,-2.380466403999861],[-44.50011145699989,-2.379164320999863],[-44.50381425699993,-2.376397393999909],[-44.507191535999965,-2.373223565999851],[-44.50865637899991,-2.37118906],[-44.510650193999965,-2.3671200499999],[-44.51545162699995,-2.368829033999944],[-44.52098548099988,-2.372735283999859],[-44.5380753249999,-2.379652601999851],[-44.55142167899993,-2.391045830999914],[-44.56297766799994,-2.404717705999857],[-44.57013912699989,-2.416436455999929],[-44.523345506999924,-2.387139580999829],[-44.507435675999915,-2.389825127999898],[-44.501210089999944,-2.419528904],[-44.51085364499991,-2.469984632999854],[-44.52159583199992,-2.500095309999963],[-44.53538977799994,-2.518243096999882],[-44.54710852799991,-2.521416924999855],[-44.556263800999915,-2.519952080999886],[-44.56517493399994,-2.521172783999901],[-44.576324022999955,-2.532484632999967],[-44.588042772999955,-2.562188408999901],[-44.59434973899988,-2.566582940999893],[-44.61294511599988,-2.570245049999854],[-44.63707434799991,-2.579847915],[-44.65599524599992,-2.593194268999923],[-44.65953528599991,-2.608168226999865],[-44.64476477799991,-2.593031507999868],[-44.5990291009999,-2.573907158999901],[-44.580067511999886,-2.563571872999972],[-44.57127844999994,-2.552341403999889],[-44.56745357999991,-2.542250257999825],[-44.56143144399991,-2.53525155999985],[-44.5462540359999,-2.532484632999967],[-44.54039466099988,-2.538262627999856],[-44.54503333199992,-2.550551039999903],[-44.55284583199989,-2.5624325499999],[-44.55650794199994,-2.566582940999893],[-44.607533331999946,-2.669691664999931],[-44.631581183999884,-2.69695403399983],[-44.62523352799994,-2.706638278999876],[-44.62694251199994,-2.718845309999864],[-44.63902747299994,-2.744805596999853],[-44.64622962099989,-2.768243096999825],[-44.64769446499994,-2.787286065999908],[-44.64525305899991,-2.830743096999868],[-44.65013587099989,-2.854668877999913],[-44.68614661399993,-2.916680596999867],[-44.687326626999976,-2.924411716999884],[-44.68614661399993,-2.95387135199995],[-44.68736731699997,-2.965427341999884],[-44.69249426999997,-2.984633070999933],[-44.69359290299991,-2.994886976999879],[-44.68431555899988,-3.012627862999864],[-44.66295325399991,-3.017673434999892],[-44.639759894999884,-3.01897551899998],[-44.62474524599986,-3.025974216999884],[-44.622222459999925,-3.051039320999962],[-44.639759894999884,-3.069024346999825],[-44.661732550999886,-3.08326588299991],[-44.6725154289999,-3.097914320999919],[-44.67674719999991,-3.111748955999829],[-44.686838344999984,-3.120782158999844],[-44.69847571499988,-3.127862237999892],[-44.707875128999916,-3.135837497999858],[-44.71182206899991,-3.145114841999899],[-44.71715247299996,-3.168877862999906],[-44.72093665299991,-3.176853122999859],[-44.740589972999935,-3.186944268999838],[-44.76305091099994,-3.190687757999868],[-44.78156490799995,-3.196954033999901],[-44.7892146479999,-3.21461354],[-44.787098761999886,-3.233330987999892],[-44.78115800699996,-3.251722914999931],[-44.772328253999916,-3.26946379999984],[-44.76130123599995,-3.286065362999892],[-44.79600989499991,-3.300225518999909],[-44.76158606699988,-3.305596612999864],[-44.75373287699992,-3.289808851999823],[-44.76130123599995,-3.238213799999869],[-44.755197719999956,-3.220147393999852],[-44.74278723899994,-3.207452080999886],[-44.72541256399995,-3.199802341999856],[-44.67955481699997,-3.194024346999882],[-44.65998287699989,-3.184665622999859],[-44.64435787699992,-3.169691664999917],[-44.631581183999884,-3.149509372999972],[-44.61359615799992,-3.111993096999868],[-44.60008704299986,-3.104099216999898],[-44.57323157499988,-3.101657809999949],[-44.52916419199997,-3.032159112999935],[-44.48192298099991,-3.007419528999876],[-44.473947719999956,-3.001722914999974],[-44.468617316999875,-2.986586195999976],[-44.43297278599993,-2.950290622999887],[-44.42418372299997,-2.934502862999934],[-44.4154353509999,-2.913995049999897],[-44.40884355399993,-2.892185153999847],[-44.406239386999914,-2.872002862999821],[-44.40807044199991,-2.826348565999879],[-44.404286261999886,-2.804864190999936],[-44.39195716099994,-2.793145440999865],[-44.39533443899995,-2.789157809999878],[-44.39708411399994,-2.785332940999865],[-44.39997311099998,-2.781914971999868],[-44.406239386999914,-2.778903903999861],[-44.37096106699988,-2.667575778999918],[-44.36465410099996,-2.62867604],[-44.36107337099989,-2.636814059999935],[-44.35855058499996,-2.644626559999921],[-44.35732988199993,-2.652764580999857],[-44.35781816299993,-2.662774346999839],[-44.3509822259999,-2.662774346999839],[-44.368072068999965,-2.549574476999837],[-44.3574926419999,-2.536553643999852],[-44.35265051999991,-2.529066664999959],[-44.345204230999855,-2.525811455999829],[-44.32648678299998,-2.525079033999901],[-44.31224524599989,-2.531914971999825],[-44.30186926999997,-2.54802825299997],[-44.28892981699997,-2.580254815999837],[-44.28823808499993,-2.551446221999896],[-44.29198157499987,-2.539808851999894],[-44.30260169199991,-2.532484632999967],[-44.29979407499985,-2.521254164999888],[-44.30109615799994,-2.508477471999839],[-44.30064856699996,-2.494805596999896],[-44.2926326159999,-2.48105234199997],[-44.27896074099988,-2.475518487999864],[-44.22008216099991,-2.470391533999859],[-44.11148027299993,-2.415785414999974],[-44.082875128999945,-2.416436455999929],[-44.072987433999934,-2.399509372999944],[-44.05304928299994,-2.399997653999932],[-44.03441321499989,-2.415215752999913],[-44.02892005099994,-2.443047783999887],[-44.04637610599991,-2.438653252999899],[-44.07140051999991,-2.438083591999927],[-44.092152472999906,-2.443454684999892],[-44.097157355999855,-2.456719658999916],[-44.0697322259999,-2.460870049999855],[-44.063628709999904,-2.462985934999864],[-44.0606176419999,-2.471612237999878],[-44.060129360999916,-2.494886976999879],[-44.056223110999916,-2.505140882999825],[-44.05565344999985,-2.494317315999908],[-44.05435136599996,-2.486586195999905],[-44.04938717399992,-2.470391533999859],[-44.041900193999936,-2.470391533999859],[-44.0343318349999,-2.493340752999842],[-44.032704230999876,-2.513278903999918],[-44.03746497299997,-2.532403252999984],[-44.04938717399992,-2.552911065999865],[-44.06554114499997,-2.551364841999913],[-44.082875128999945,-2.560316664999931],[-44.097157355999855,-2.580254815999837],[-44.10334225199992,-2.583428643999894],[-44.11025956899991,-2.584730726999894],[-44.11758378799993,-2.587497653999861],[-44.12441972599993,-2.594496351999922],[-44.10655676999997,-2.602308851999837],[-44.11107337099992,-2.622002862999864],[-44.13719641799989,-2.670179945999919],[-44.1510310539999,-2.680108330999829],[-44.16714433499995,-2.68726978999986],[-44.17967688699986,-2.690118096999896],[-44.191070115999906,-2.688897393999881],[-44.197824673999946,-2.685153903999861],[-44.21385657499985,-2.669040622999887],[-44.210316535999965,-2.68645598799985],[-44.206695115999906,-2.692315362999977],[-44.2001846999999,-2.69695403399983],[-44.21222896999993,-2.707696221999925],[-44.239857550999915,-2.714532158999858],[-44.25169837099989,-2.721123955999829],[-44.27993730399996,-2.748304945999933],[-44.28551184799997,-2.752211195999934],[-44.31309973899988,-2.762139580999843],[-44.33849036399991,-2.78492603999986],[-44.34850012899988,-2.810235283999987],[-44.32994544199988,-2.827325127999856],[-44.32835852799985,-2.804131768999909],[-44.322743292999945,-2.785088799999826],[-44.312489386999914,-2.778741143999895],[-44.296376105999855,-2.793145440999865],[-44.305531378999916,-2.810235283999987],[-44.31004798099988,-2.814222914999888],[-44.31004798099988,-2.820489190999922],[-44.296376105999855,-2.834161065999865],[-44.28892981699997,-2.806817315999979],[-44.284047003999916,-2.805596612999963],[-44.27717037699989,-2.806898695999962],[-44.271066860999895,-2.807305596999967],[-44.26846269399991,-2.803399346999882],[-44.26781165299985,-2.790215752999927],[-44.265492316999904,-2.780531507999882],[-44.26146399599992,-2.772637627999899],[-44.25544186099992,-2.765313408999901],[-44.246164516999954,-2.77402109199997],[-44.22008216099991,-2.793145440999865],[-44.226144985999895,-2.776950778999989],[-44.218373175999915,-2.767754815999837],[-44.18651282499988,-2.759047132999939],[-44.18854732999989,-2.778090101999851],[-44.17471269399991,-2.807061455999929],[-44.18309485599988,-2.82390715899993],[-44.19115149599988,-2.829685153999904],[-44.207020636999914,-2.835870049999869],[-44.21385657499985,-2.84099700299997],[-44.21886145699989,-2.848239841999913],[-44.21849524599989,-2.851739190999893],[-44.21410071499989,-2.851739190999893],[-44.207020636999914,-2.848402601999879],[-44.20494544199991,-2.853448174999897],[-44.202463344999984,-2.857517184999949],[-44.20055091099994,-2.862074476999823],[-44.2001846999999,-2.868910414999917],[-44.16665605399987,-2.83806731599995],[-44.15925045499998,-2.827325127999856],[-44.15587317599997,-2.829522393999852],[-44.15477454299992,-2.829766533999887],[-44.153960740999906,-2.830498955999914],[-44.15176347599993,-2.834161065999865],[-44.14146887899989,-2.82040780999985],[-44.13272050699993,-2.803643487999921],[-44.12669837099992,-2.785902601999837],[-44.12441972599993,-2.768975518999852],[-44.1180720689999,-2.7577450499999],[-44.10602779899988,-2.749607028999932],[-44.09813391799992,-2.748711846999853],[-44.10460364499994,-2.759047132999939],[-44.10460364499994,-2.765313408999901],[-44.09264075399989,-2.761651299999854],[-44.08897864499994,-2.759047132999939],[-44.082875128999945,-2.752211195999934],[-44.07664954299989,-2.759047132999939],[-44.07945716099994,-2.766289971999882],[-44.07966061099989,-2.769301039999874],[-44.07835852799991,-2.77214934699991],[-44.07664954299989,-2.778903903999861],[-44.07420813699986,-2.772067966999927],[-44.07262122299994,-2.768975518999852],[-44.06981360599988,-2.765313408999901],[-44.06867428299995,-2.779066664999917],[-44.071929490999906,-2.7894833309999],[-44.082875128999945,-2.806817315999979],[-44.06810462099989,-2.795179945999891],[-44.062855597999885,-2.777032158999972],[-44.063628709999904,-2.734795830999872],[-44.06037350199995,-2.717705987999821],[-44.05247962099989,-2.701918226999879],[-44.03571529899997,-2.676446221999953],[-44.02293860599994,-2.648858330999857],[-44.01414954299986,-2.634698174999841],[-43.983998175999936,-2.615492445999877],[-43.98045813699986,-2.611586195999962],[-43.97590084499993,-2.610284112999963],[-43.94635982999995,-2.62867604],[-43.94635982999995,-2.621270440999837],[-43.95775305899991,-2.612399997999972],[-43.958363410999965,-2.600681247999901],[-43.94635982999995,-2.573988539999874],[-43.93260657499994,-2.555840752999885],[-43.9232478509999,-2.546807549999954],[-43.91905676999997,-2.549574476999837],[-43.891753709999904,-2.60051848799985],[-43.87804114499996,-2.634942315999879],[-43.87437903599991,-2.622816664999874],[-43.87726803299995,-2.61126067499994],[-43.88223222599989,-2.598565362999892],[-43.884877081999974,-2.583672783999845],[-43.87946529899992,-2.571221612999821],[-43.85326087099988,-2.559340101999865],[-43.8463156519999,-2.556338495999853],[-43.8385310539999,-2.55624765399989],[-43.834055141999926,-2.554945570999891],[-43.827618414999904,-2.551052755999848],[-43.82138426699996,-2.551054004999855],[-43.815744594999984,-2.551527601999879],[-43.80492102799988,-2.549248955999985],[-43.7818497389999,-2.532484632999967],[-43.766957160999965,-2.526299737999906],[-43.752797003999945,-2.524021091999842],[-43.74640865799992,-2.529229424999926],[-43.73856418199995,-2.517207448999983],[-43.74010169199988,-2.486911716999927],[-43.72411048099988,-2.477227471999867],[-43.712513800999965,-2.488539320999948],[-43.706532355999855,-2.513848565999979],[-43.70856686099998,-2.53972747199991],[-43.721058722999885,-2.552911065999865],[-43.721058722999885,-2.560316664999931],[-43.71361243399991,-2.560316664999931],[-43.71361243399991,-2.552911065999865],[-43.7066951159999,-2.552911065999865],[-43.7066951159999,-2.560316664999931],[-43.699289516999926,-2.560316664999931],[-43.69912675699996,-2.553643487999892],[-43.69762122299991,-2.549004815999865],[-43.693104620999854,-2.539320570999905],[-43.68464107999992,-2.543389580999857],[-43.67674719999985,-2.545586846999939],[-43.65831458199991,-2.54615650799991],[-43.680978969999956,-2.529554945999948],[-43.682443813999924,-2.504652601999837],[-43.66844641799986,-2.483330987999864],[-43.644642706999974,-2.477227471999867],[-43.65196692599997,-2.485446872999873],[-43.65733801999993,-2.493910414999903],[-43.66576087099989,-2.511976820999919],[-43.65241451699998,-2.50164153399983],[-43.63573157499994,-2.498304945999976],[-43.6219783189999,-2.50530364399988],[-43.6173396479999,-2.525079033999901],[-43.59748287699989,-2.516208591999856],[-43.55817623599998,-2.530857028999947],[-43.54222571499989,-2.525079033999901],[-43.54845130099994,-2.518243096999882],[-43.56045488199996,-2.519301039999931],[-43.56305904899994,-2.509535414999888],[-43.55825761599996,-2.495782158999873],[-43.54845130099994,-2.484633070999863],[-43.54845130099994,-2.505140882999825],[-43.53913326699998,-2.491143487999849],[-43.53673255099994,-2.478204033999845],[-43.54210364499991,-2.466566665000016],[-43.555897589999915,-2.456719658999916],[-43.53734290299991,-2.435967705999829],[-43.52367102799988,-2.442640882999882],[-43.5174861319999,-2.464939059999907],[-43.521839972999885,-2.491469007999882],[-43.50841223899991,-2.491631768999838],[-43.49982662699989,-2.524834893999852],[-43.487049933999934,-2.532484632999967],[-43.49449622299991,-2.54615650799991],[-43.48420162699992,-2.543715101999879],[-43.47695878799987,-2.537692966999884],[-43.47154700399994,-2.528903903999904],[-43.46654212099989,-2.518243096999882],[-43.45836341099988,-2.535088799999883],[-43.45287024599986,-2.552911065999865],[-43.44562740799992,-2.544854424999911],[-43.444203253999945,-2.530857028999947],[-43.44806881399995,-2.514825127999956],[-43.465402798999946,-2.486016533999845],[-43.45250403599994,-2.483819268999852],[-43.41877193899995,-2.491469007999882],[-43.41877193899995,-2.484633070999863],[-43.43504798099988,-2.482598565999836],[-43.44725501199986,-2.471612237999878],[-43.45547441299996,-2.456801039999903],[-43.45978756399995,-2.443047783999887],[-43.45287024599986,-2.443047783999887],[-43.448109503999945,-2.451918226999837],[-43.43862870999996,-2.456719658999916],[-43.42609615799995,-2.458184502999884],[-43.41193600199991,-2.456719658999916],[-43.428089972999885,-2.441664320999905],[-43.47402910099996,-2.417738540000016],[-43.487049933999934,-2.395277601999837],[-43.48273678299995,-2.379082940999879],[-43.47529216499993,-2.365923445999883],[-43.46736941599997,-2.353685655999839],[-43.467372921999896,-2.345767324999883],[-43.45440102099985,-2.341448772999968],[-43.44142936099984,-2.339290006999875],[-43.42629772999993,-2.337849610999896],[-43.407565444999875,-2.337129653999838],[-43.385232646999924,-2.340005775999856],[-43.36362079199992,-2.342883044999979],[-43.34057294799993,-2.345037583999911],[-43.3117664099999,-2.346467356999895],[-43.251263656999924,-2.367305972999958],[-43.199395482999904,-2.379510988999868],[-43.11865894099992,-2.416888538999941],[-43.01402747299991,-2.457207940999908],[-42.943106411999906,-2.481628122],[-42.916304694999916,-2.492436685999834],[-42.88284532599994,-2.510329143999925],[-42.85790785899991,-2.522171855999957],[-42.823841925999915,-2.543226820999891],[-42.819162563999924,-2.54615650799991],[-42.810658331999974,-2.54802825299997],[-42.775054490999906,-2.560316664999931],[-42.76598059799991,-2.561293226999908],[-42.70995032499987,-2.560316664999931],[-42.70002193899998,-2.563571872999972],[-42.69310462099989,-2.570407809999907],[-42.68781490799992,-2.577243747999916],[-42.6822810539999,-2.580254815999837],[-42.67284094999988,-2.589125257999882],[-42.630482550999965,-2.642347914999945],[-42.58088131399995,-2.672051690999879],[-42.565581834999904,-2.676446221999953],[-42.55557206899991,-2.677911065999837],[-42.539296027999875,-2.683282158999887],[-42.52745520699992,-2.683282158999887],[-42.516346808999884,-2.681084893999895],[-42.48713131399995,-2.669040622999887],[-42.48623613199996,-2.686781507999882],[-42.48949133999991,-2.6996395809999],[-42.49828040299988,-2.704196872999844],[-42.51439368399994,-2.69695403399983],[-42.50763912699992,-2.721856377999856],[-42.49351966099996,-2.731215101999894],[-42.47443600199989,-2.737399997999859],[-42.45299231699994,-2.752211195999934],[-42.446034308999856,-2.74700286299985],[-42.42739824099988,-2.738051039999903],[-42.41812089799993,-2.73113372199991],[-42.41197669199993,-2.738539320999891],[-42.40733801999991,-2.750176690999908],[-42.37840735599991,-2.756280205999886],[-42.26427161399994,-2.759047132999939],[-42.25450598899988,-2.766534112999821],[-42.2539770169999,-2.783461195999905],[-42.25934811099995,-2.802015882999811],[-42.267404751999884,-2.814222914999888],[-42.238636847999935,-2.804782809999864],[-42.234201626999976,-2.810723565999893],[-42.239409959999875,-2.834161065999865],[-42.23326575399991,-2.834161065999865],[-42.22935950399991,-2.822198174999926],[-42.22223873599995,-2.812432549999897],[-42.21369381399992,-2.804945570999919],[-42.205922003999916,-2.799981377999885],[-42.19310462099989,-2.809177341999856],[-42.176136847999906,-2.811781507999853],[-42.159535285999965,-2.809502862999878],[-42.14757239499993,-2.803399346999882],[-42.082386847999906,-2.799981377999885],[-42.084462042999945,-2.803969007999854],[-42.085519985999895,-2.804620049999897],[-42.0868220689999,-2.804620049999897],[-42.089833136999886,-2.806817315999979],[-42.08372962099992,-2.82097747199991],[-42.082386847999906,-2.827325127999856],[-42.06773841099991,-2.820000908999845],[-42.04718990799994,-2.821465752999899],[-42.028879360999895,-2.824965101999808],[-42.02090410099996,-2.82390715899993],[-42.01593990799989,-2.811293226999865],[-42.004017706999946,-2.812595309999864],[-41.96898352799988,-2.833672783999887],[-41.95543372299991,-2.839043877999927],[-41.943918423999946,-2.837660414999945],[-41.939035610999895,-2.82390715899993],[-41.936756964999915,-2.788018487999934],[-41.94041907499988,-2.773695570999948],[-41.95270748599992,-2.778903903999861],[-41.958892381999895,-2.778903903999861],[-41.9706111319999,-2.768243096999825],[-42.001616990999906,-2.749769789999903],[-42.01531402299989,-2.741134197],[-42.01040398899988,-2.727188783999821],[-41.99562321999994,-2.721434581999873],[-41.90027410699988,-2.725440723999952],[-41.838564525999885,-2.729480290999888],[-41.821265380999925,-2.733566980999882],[-41.84284420499995,-2.765313408999901],[-41.8426814439999,-2.765232028999918],[-41.832102016999926,-2.762465101999865],[-41.82396399599991,-2.757419528999918],[-41.80870520699994,-2.744805596999853],[-41.77867591099991,-2.782159112999906],[-41.69405618299996,-2.832881567999877],[-41.66506138599988,-2.855906813999852],[-41.65782630099997,-2.868910414999917],[-41.663726365999906,-2.865411065999837],[-41.679310675999915,-2.858168226999823],[-41.68517005099994,-2.854668877999913],[-41.68285071499989,-2.858005466999856],[-41.67833411399994,-2.868910414999917],[-41.688343878999916,-2.864922783999859],[-41.69884192599997,-2.862074476999823],[-41.69884192599997,-2.868910414999917],[-41.6861466139999,-2.875909112999906],[-41.67503821499988,-2.879571221999868],[-41.66392981699997,-2.877862237999864],[-41.65099036399994,-2.868910414999917],[-41.639881964999915,-2.884942315999907],[-41.62328040299988,-2.895603122999859],[-41.601551886999886,-2.901299737999921],[-41.516957160999965,-2.906996351999823],[-41.48961341099991,-2.903578382999896],[-41.46544348899991,-2.888767184999921],[-41.45494544199991,-2.897149346999896],[-41.4485570949999,-2.905938408999944],[-41.448882615999935,-2.916436455999829],[-41.458607550999965,-2.929782809999935],[-41.45579993399991,-2.930271091999927],[-41.44554602799991,-2.929782809999935],[-41.44762122299991,-2.933526299999869],[-41.44945227799991,-2.936130466999956],[-41.45091712099986,-2.938897393999838],[-41.451771613999966,-2.943454684999878],[-41.44469153599991,-2.943047783999873],[-41.440052863999966,-2.941664320999891],[-41.431874152999875,-2.936618747999944],[-41.440052863999966,-2.914239190999837],[-41.42210852799991,-2.908786716999899],[-41.3430883449999,-2.920342705999914],[-41.33568274599992,-2.922946873],[-41.329009568999965,-2.93222421699987],[-41.32787024599991,-2.941013278999847],[-41.332102016999954,-2.947442315999851],[-41.341908331999974,-2.950290622999887],[-41.337513800999915,-2.954522393999824],[-41.3275447259999,-2.961114190999893],[-41.32201087099989,-2.963799737999863],[-41.316477016999954,-2.960870049999855],[-41.31065833199991,-2.963474216999842],[-41.305287238999966,-2.969496351999936],[-41.30093339799987,-2.977634372999873],[-41.29474850199989,-2.977634372999873],[-41.29474850199989,-2.963799737999863],[-41.27391516799992,-2.980075778999904],[-41.256459113999966,-3.004815362999878],[-41.248117641999976,-3.012058200999903],[-41.244536912999905,-3.015232028999861],[-41.24010169199993,-2.98805103999986],[-41.24327551999991,-2.972751559999978],[-41.25690670499995,-2.949802341999899],[-41.26402747299991,-2.928399346999868],[-41.28237870999996,-2.915704033999901],[-41.28726152299992,-2.903008721999925],[-41.29629472599993,-2.907159112999878],[-41.30288652299993,-2.907891533999986],[-41.308583136999886,-2.906345309999949],[-41.31525631399995,-2.903008721999925],[-41.299712693999936,-2.896742445999891],[-41.27342688699994,-2.878838799999841],[-41.25690670499995,-2.875176690999879],[-41.198557094999956,-2.875176690999879],[-41.16795813699994,-2.878838799999841],[-41.13776607999991,-2.885837497999901],[-41.11070716099988,-2.897719007999868],[-41.08926347599995,-2.916680596999867],[-41.08250891799992,-2.916680596999867],[-41.08462480399993,-2.905205987999835],[-41.08995520699988,-2.894463799999912],[-41.10301673099988,-2.875176690999879],[-41.08926347599995,-2.882500908999887],[-41.08250891799992,-2.882500908999887],[-40.93846594999985,-2.868910414999917],[-40.928130662999926,-2.86980559699991],[-40.90855872299997,-2.874200127999984],[-40.90001380099994,-2.875176690999879],[-40.89195716099991,-2.873142184999935],[-40.88792883999994,-2.864027601999865],[-40.87950598899991,-2.862074476999823],[-40.848988410999965,-2.859307549999855],[-40.84137936099992,-2.864678643999909],[-40.83543860599988,-2.882500908999887],[-40.82860266799988,-2.882500908999887],[-40.81834876199994,-2.87167734199997],[-40.769195115999935,-2.846774997999859],[-40.75291907499988,-2.84099700299997],[-40.58161373599992,-2.827325127999856],[-40.52741451699995,-2.803399346999882],[-40.50987708199992,-2.799981377999885],[-40.506743943999965,-2.797946872999859],[-40.499623175999915,-2.786309502999842],[-40.49315344999991,-2.786716403999847],[-40.488107876999976,-2.788995049999912],[-40.48371334499998,-2.791680596999981],[-40.47911536399994,-2.793145440999865],[-40.403065558999856,-2.805922132999896],[-40.27375240799998,-2.806817315999979],[-40.18805904899992,-2.820489190999922],[-40.175038214999915,-2.824639580999957],[-40.15477454299992,-2.843519789999903],[-40.143422003999945,-2.848402601999879],[-40.132435675999886,-2.844008070999891],[-40.126861131999874,-2.83456796699987],[-40.12092037699994,-2.828383070999905],[-40.10863196499989,-2.834161065999865],[-40.09634355399993,-2.830743096999868],[-40.0821833979999,-2.836358330999857],[-40.066761847999885,-2.844414971499845],[-40.05060787699992,-2.848402601999879],[-40.00104732999989,-2.845635674999912],[-39.98570716099994,-2.848402601999879],[-39.903065558999856,-2.901788018999909],[-39.87242591099994,-2.909844658999859],[-39.86091061099992,-2.915704033999901],[-39.80748450399989,-2.967543226999894],[-39.79588782499988,-2.97470468499985],[-39.78335527299987,-2.977634372999873],[-39.76732337099989,-2.98560963299991],[-39.74303137899989,-3.003676040000016],[-39.72594153599994,-3.022393487999906],[-39.7318416009999,-3.032159112999935],[-39.725493943999965,-3.035332940999822],[-39.719105597999935,-3.037530205999985],[-39.71222896999993,-3.038995049999869],[-39.70457923099991,-3.039646091999913],[-39.71202551999996,-3.025974216999884],[-39.69790605399992,-3.017185153999904],[-39.681548631999924,-3.020440362999864],[-39.64313717399991,-3.039646091999913],[-39.63768469999988,-3.04062265399989],[-39.61888587099992,-3.039646091999913],[-39.614898240999935,-3.042250257999825],[-39.6107478509999,-3.055271091999899],[-39.60830644399987,-3.060153903999875],[-39.57111568899998,-3.090915622999859],[-39.497141079999885,-3.131117445999933],[-39.48546301999991,-3.145765882999854],[-39.39671790299985,-3.183526299999826],[-39.383941209999904,-3.186293226999879],[-39.37539628799987,-3.186130466999913],[-39.36782792899993,-3.184502862999892],[-39.358265753999945,-3.183526299999826],[-39.352772589999915,-3.186781507999868],[-39.34752356699994,-3.193780205999843],[-39.34089107999995,-3.200860283999986],[-39.3204646479999,-3.207614841999842],[-39.28685462099986,-3.232028903999975],[-39.27794348899994,-3.230401299999954],[-39.27257239499997,-3.232028903999975],[-39.267404751999976,-3.236423434999878],[-39.26406816299993,-3.241957289999888],[-39.261586066999904,-3.24765390399996],[-39.25890051999994,-3.251885674999897],[-39.19371497299991,-3.296807549999983],[-39.165272589999915,-3.32284921699987],[-39.15648352799994,-3.327569268999966],[-39.14565995999993,-3.329766533999958],[-39.12580318899992,-3.330498955999985],[-39.115549282999915,-3.3344052059999],[-39.10130774599992,-3.348565362999835],[-39.09243730399996,-3.364190362999906],[-39.08055579299992,-3.377048434999921],[-39.05719967399991,-3.382256768999838],[-39.01549231699997,-3.384047132999825],[-38.999663865999935,-3.388278903999932],[-38.98517818899998,-3.395928643999866],[-38.96035722599993,-3.418145440999822],[-38.94273841099991,-3.444594007999811],[-38.91633053299992,-3.505059502999899],[-38.89720618399994,-3.500258070999919],[-38.88329016799986,-3.50758229],[-38.87059485599991,-3.520684502999885],[-38.855458136999914,-3.532972914999945],[-38.80748450399991,-3.547295830999843],[-38.78954016799986,-3.573825778999975],[-38.76305091099988,-3.598239841999841],[-38.73200436099998,-3.619886976999922],[-38.707102016999926,-3.629164320999891],[-38.69440670499998,-3.6366513],[-38.67113196499986,-3.669040622999944],[-38.65965735599991,-3.676446221999853],[-38.59471594999985,-3.690687757999854],[-38.526193813999896,-3.71803150799991],[-38.49437415299988,-3.72128671699987],[-38.47740637899989,-3.697442315999879],[-38.46654212099992,-3.705498955999829],[-38.45734615799992,-3.718438408999916],[-38.435943162999905,-3.758396091999884],[-38.40977942599994,-3.793145440999837],[-38.40330969999985,-3.809340101999893],[-38.395822719999956,-3.840590101999865],[-38.38927161399988,-3.855157158999887],[-38.378041144999884,-3.869724216999913],[-38.320790167999945,-3.922784112999835],[-38.31021074099988,-3.9296200499999],[-38.26349850199989,-3.951592705999872],[-38.25133216099991,-3.961846612999978],[-38.18854732999994,-4.052015882999839],[-38.10667883999989,-4.157891533999916],[-38.02961178299992,-4.237399997999916],[-37.9345596999999,-4.307793877999842],[-37.919422980999904,-4.314548434999878],[-37.85423743399991,-4.375909112999878],[-37.83507239499994,-4.384942315999964],[-37.81371008999989,-4.39128997199991],[-37.79124915299988,-4.39519622199991],[-37.76862545499992,-4.396416924999826],[-37.71080481699991,-4.515394789999974],[-37.68374589799987,-4.548435153999932],[-37.64940344999991,-4.57878997199991],[-37.607248501999976,-4.608086846999839],[-37.5643611319999,-4.62948984199997],[-37.537342902999846,-4.638116143999895],[-37.52529863199993,-4.632582289999874],[-37.5138240229999,-4.623793226999808],[-37.48802649599986,-4.629978122999958],[-37.427113410999965,-4.661065362999963],[-37.32481848899994,-4.69646575299997],[-37.292551235999895,-4.717950127999913],[-37.27440344999991,-4.74236419099995],[-37.23110917899993,-4.842054945999806],[-37.182932094999956,-4.910902601999865],[-37.13491777299987,-4.931410414999917],[-37.11514238199996,-4.921970309999891],[-37.09813391799989,-4.92058684699991],[-37.08242753799993,-4.924493096999825],[-37.049387173999975,-4.9379208309999],[-37.037464972999935,-4.938734632999824],[-37.01138261599996,-4.931410414999917],[-36.982980923999946,-4.929782809999892],[-36.89875240799992,-4.938246351999837],[-36.88101152299993,-4.948500257999868],[-36.84764563699986,-4.98593515399989],[-36.84349524599992,-4.992852471999896],[-36.83311926999991,-4.997328382999868],[-36.820708787999905,-5.007745049999855],[-36.81029212099992,-5.020114841999884],[-36.8059789699999,-5.030043226999894],[-36.79088294199991,-5.051202080999886],[-36.75658118399994,-5.066827080999872],[-36.71955318899989,-5.075372002999899],[-36.696115688999924,-5.075453382999882],[-36.69570878799993,-5.089613539999903],[-36.68224036399994,-5.0922177059999],[-36.64146887899997,-5.089043877999842],[-36.60692298099988,-5.096368096999839],[-36.5899958979999,-5.102959893999824],[-36.561146613999966,-5.123223565999837],[-36.54442298099993,-5.12761809699991],[-36.53091386599996,-5.122735283999845],[-36.52538001199994,-5.105564059999907],[-36.53368079299992,-5.101006768999866],[-36.57054602799988,-5.091729424999826],[-36.5799861319999,-5.080987237999892],[-36.5450740229999,-5.089613539999903],[-36.42235266799989,-5.080987237999892],[-36.3397517569999,-5.089043877999842],[-36.30003821499989,-5.101169528999918],[-36.28136145699992,-5.104587497999844],[-36.2572322259999,-5.102146091999899],[-36.2572322259999,-5.095879815999851],[-36.291981574999845,-5.095879815999851],[-36.291981574999845,-5.089043877999842],[-36.13121497299994,-5.095879815999851],[-36.11359615799992,-5.09156666499986],[-36.07909094999991,-5.072360934999892],[-36.04283606699991,-5.064873955999828],[-36.01598059799991,-5.051039320999834],[-35.99718176999988,-5.047539971999839],[-35.91759192599988,-5.058282158999859],[-35.768422003999916,-5.08684661299985],[-35.659413214999944,-5.111260674999897],[-35.581939256999874,-5.118910414999917],[-35.54881751199994,-5.128350518999837],[-35.510568813999896,-5.143731377999885],[-35.49290930899988,-5.157403252999828],[-35.454904751999976,-5.196954033999859],[-35.43858801999994,-5.205173434999863],[-35.42052161399994,-5.211521091999884],[-35.40379798099991,-5.226495049999826],[-35.3900447259999,-5.244561455999842],[-35.371205206999946,-5.279066664999859],[-35.362416144999884,-5.300876559999907],[-35.356027798999946,-5.323500257999882],[-35.35350501199994,-5.345798434999907],[-35.34862219999988,-5.355645440999837],[-35.31875566299988,-5.383233330999857],[-35.262277798999946,-5.483330987999892],[-35.253895636999886,-5.524102471999853],[-35.2452693349999,-5.546156507999853],[-35.23412024599986,-5.566582940999822],[-35.22313391799992,-5.582614841999913],[-35.23062089799987,-5.588799737999878],[-35.22606360599994,-5.59856536299982],[-35.20677649599989,-5.668145440999822],[-35.20579993399991,-5.678806247999859],[-35.19566809799997,-5.689548434999863],[-35.19522050699987,-5.760023695999863],[-35.18773352799991,-5.773532809999921],[-35.17870032499991,-5.783461195999834],[-35.171131964999944,-5.796319268999852],[-35.167958136999886,-5.818454684999921],[-35.17121334499992,-5.833916924999855],[-35.171538865999935,-5.844333591999842],[-35.167958136999886,-5.856215101999808],[-35.15013587099992,-5.874769789999903],[-35.14745032499994,-5.876722914999945],[-35.1458227199999,-5.886814059999907],[-35.14745032499994,-5.921075127999885],[-35.145334438999924,-5.932061455999842],[-35.13597571499989,-5.945733330999872],[-35.13377844999988,-5.955254815999878],[-35.12999426999997,-5.959649346999853],[-35.11221269399988,-5.976657809999921],[-35.10651607999989,-5.986016533999859],[-35.10505123599992,-5.995538018999851],[-35.10651607999989,-6.027601820999834],[-35.11168372299991,-6.048516533999887],[-35.11119544199991,-6.057793877999842],[-35.10277258999986,-6.061700127999841],[-35.09935462099986,-6.066582940999822],[-35.09284420499995,-6.18580494599982],[-35.120716925999915,-6.164727471999896],[-35.124989386999914,-6.182793877999828],[-35.14976966099988,-6.20680103999986],[-35.150868292999945,-6.215997002999842],[-35.13426673099988,-6.224297783999901],[-35.120106574999845,-6.21461353999986],[-35.107574022999955,-6.199883721999868],[-35.09593665299985,-6.192071221999868],[-35.0870662099999,-6.197442315999837],[-35.07787024599992,-6.220879815999893],[-35.06895911399988,-6.226169528999876],[-35.04893958199992,-6.227227471999838],[-35.04124915299991,-6.230238539999931],[-35.03819739499991,-6.236504815999879],[-35.036000128999916,-6.258558851999879],[-35.02619381399998,-6.298923434999849],[-35.02391516799992,-6.318047783999916],[-35.025949673999946,-6.333916924999841],[-35.02424068899992,-6.342868747999873],[-35.01707923099991,-6.355889580999857],[-35.01060950399989,-6.362888278999847],[-34.99632727799991,-6.371026299999855],[-34.989165818999965,-6.377618096999839],[-34.98228919199994,-6.391371351999851],[-34.97227942599997,-6.433363539999917],[-34.95897376199994,-6.536879164999874],[-34.958485480999855,-6.582614841999884],[-34.969960089999915,-6.617282809999864],[-34.96080481699991,-6.638848565999879],[-34.957142706999974,-6.651299737999892],[-34.95327714799987,-6.674737237999864],[-34.947743292999945,-6.684828382999839],[-34.940988735999895,-6.694431247999901],[-34.93517005099994,-6.705987237999835],[-34.93492591099991,-6.724216403999917],[-34.94005286399991,-6.7445614559999],[-34.94273841099991,-6.766208591999899],[-34.93517005099994,-6.787855726999894],[-34.93517005099994,-6.781670830999829],[-34.91673743399991,-6.864190362999835],[-34.90416419199994,-6.887302341999869],[-34.89362545499995,-6.89430103999986],[-34.86571204299992,-6.907159112999878],[-34.86009680899991,-6.914646091999856],[-34.86009680899991,-6.962660414999931],[-34.86286373599998,-6.976006768999851],[-34.86925208199992,-6.982679945999806],[-34.87621008999989,-6.986993096999896],[-34.88060462099988,-6.993340752999842],[-34.88109290299988,-7.004571221999838],[-34.878163214999944,-7.028008721999824],[-34.88060462099988,-7.041192315999865],[-34.89635169199994,-7.081312757999882],[-34.89419511599993,-7.082777601999837],[-34.901844855999876,-7.090590101999837],[-34.90758216099994,-7.093194268999838],[-34.91348222599987,-7.090508721999853],[-34.921498175999915,-7.082777601999837],[-34.912220831999946,-7.09270598799985],[-34.907826300999886,-7.104180596999881],[-34.90851803299992,-7.116875908999845],[-34.91466223899991,-7.130547783999887],[-34.896066860999895,-7.11744557099982],[-34.87564042899993,-7.095635674999869],[-34.859364386999886,-7.071465752999856],[-34.85265051999994,-7.051690362999834],[-34.84878495999993,-7.030205987999906],[-34.83617102799988,-6.99179452899989],[-34.83958899599989,-6.972914320999862],[-34.82579505099997,-6.984470309999891],[-34.82420813699994,-7.003350518999824],[-34.832753058999856,-7.041192315999865],[-34.832753058999856,-7.099786065999893],[-34.82795162699995,-7.130059502999898],[-34.82530676999988,-7.137383721999896],[-34.818755662999905,-7.14421965899983],[-34.80211341099994,-7.154066664999931],[-34.797352667999945,-7.158461195999834],[-34.7936091789999,-7.176202080999828],[-34.79674231699988,-7.192966403999846],[-34.802072719999956,-7.208754164999888],[-34.80479895699992,-7.223321221999825],[-34.80479895699992,-7.370782158999886],[-34.814442511999886,-7.444512627999828],[-34.81460527299995,-7.483819268999837],[-34.80479895699992,-7.514092705999828],[-34.81550045499995,-7.542575778999918],[-34.819162563999896,-7.548272393999825],[-34.824289516999926,-7.548516533999859],[-34.833973761999886,-7.543064059999907],[-34.84162350199989,-7.541761976999822],[-34.88060462099988,-7.541599216999856],[-34.893381313999924,-7.542901299999855],[-34.897328253999916,-7.543226820999877],[-34.912668423999946,-7.547784112999835],[-34.92894446499989,-7.555759372999872],[-34.86546790299988,-7.553399346999826],[-34.83538611199995,-7.562727305999885],[-34.83140028399992,-7.582438221999909],[-34.82048871999993,-7.599686827999932],[-34.80894934799997,-7.613702080999871],[-34.805303868999935,-7.622715999999883],[-34.813003784999864,-7.638517500999811],[-34.81993059899994,-7.653544653999901],[-34.83030421999993,-7.680888124999853],[-34.83729503099997,-7.679757011999867],[-34.83726966099991,-7.667087497999915],[-34.83958899599989,-7.655938408999887],[-34.83958899599989,-7.64381275799981],[-34.843739386999914,-7.650567315999837],[-34.84544837099992,-7.656996351999851],[-34.84581458199992,-7.671807549999826],[-34.86782792899993,-7.632419528999846],[-34.873768683999856,-7.617771091999927],[-34.87604732999991,-7.637302341999899],[-34.86017027799996,-7.685986614999904],[-34.86436844199994,-7.705229648999846],[-34.87679655099993,-7.702963855999869],[-34.8872571629999,-7.708382440999841],[-34.89999798799991,-7.718044655999946],[-34.90721594999991,-7.733819268999866],[-34.88792883999989,-7.72356536299985],[-34.87753100099985,-7.714503222999937],[-34.869380401999955,-7.714475870999891],[-34.865876167999915,-7.717540457999873],[-34.86933293199985,-7.727550290999871],[-34.87589913299993,-7.736416902999864],[-34.88440294599991,-7.745289878999841],[-34.892095727999866,-7.762618068999885],[-34.893524820999886,-7.804926799999861],[-34.884944186999945,-7.81566313299983],[-34.84803774099993,-7.822837699999893],[-34.847226673999984,-7.834375810999859],[-34.8440796189999,-7.848216296999809],[-34.84581458199992,-7.884698174999854],[-34.832753058999856,-7.857354424999883],[-34.82648678299989,-7.869235934999921],[-34.81777910099993,-7.893812757999854],[-34.81163489499994,-7.905857028999861],[-34.81700598899991,-7.913344007999824],[-34.81883704299989,-7.919040622999901],[-34.81696529899992,-7.924737237999892],[-34.81163489499994,-7.932549737999877],[-34.821441209999875,-7.952243747999916],[-34.845773891999926,-8.041680596999825],[-34.84581458199992,-8.05917734199987],[-34.851185675999886,-8.068617445999806],[-34.863677537999905,-8.070407809999878],[-34.88060462099988,-8.062758070999848],[-34.90086829299988,-8.042657158999901],[-34.912668423999946,-8.035414320999877],[-34.92894446499989,-8.034926039999887],[-34.91344153599988,-8.045505466999842],[-34.90684973899991,-8.052666924999881],[-34.90103105399996,-8.062758070999848],[-34.897694464999915,-8.074965101999823],[-34.89757239499994,-8.084893487999835],[-34.89574133999988,-8.09384530999985],[-34.88735917899993,-8.103773695999863],[-34.883534308999906,-8.09693775799984],[-34.88060462099988,-8.089532158999859],[-34.88133704299992,-8.105401299999883],[-34.89419511599993,-8.141371351999851],[-34.900380011999914,-8.179620049999897],[-34.90416419199994,-8.189385674999839],[-34.92076575399989,-8.214450778999847],[-34.93211829299986,-8.24212004999984],[-34.93887285099989,-8.272067966999899],[-34.942616339999915,-8.310235283999873],[-34.942250128999916,-8.337334893999895],[-34.93858801999997,-8.347100518999852],[-34.93993079299986,-8.350762627999899],[-34.94591223899996,-8.356703382999825],[-34.95250403599994,-8.36467864399988],[-34.95567786399991,-8.374444268999824],[-34.95734615799992,-8.382500908999859],[-35.02623450399997,-8.575860283999901],[-35.06969153599991,-8.662367445999877],[-35.06895911399988,-8.672295830999886],[-35.0802302729999,-8.681084893999852],[-35.08421790299985,-8.701267184999878],[-35.086008266999954,-8.740655205999872],[-35.096506313999924,-8.761488539999931],[-35.12734941299988,-8.80624765399989],[-35.13377844999988,-8.826918226999808],[-35.13805091099991,-8.871351820999818],[-35.14745032499994,-8.91187916499993],[-35.18887285099993,-8.9906552059999],[-35.232248501999884,-9.047784112999892],[-35.260487433999884,-9.114027601999865],[-35.28941809799997,-9.153578382999811],[-35.30508378799993,-9.193047783999873],[-35.392160610999895,-9.305759372999887],[-35.41494706899991,-9.323418877999899],[-35.41494706899991,-9.31658294099988],[-35.43781490799992,-9.328383070999848],[-35.46231035099996,-9.346612237999835],[-35.482045050999886,-9.367852471999823],[-35.49010169199994,-9.388929945999848],[-35.49323482999989,-9.404066664999931],[-35.5736384759999,-9.522719007999882],[-35.58259029899992,-9.53289153399983],[-35.63036048099988,-9.563653252999899],[-35.657541469999984,-9.577080987999892],[-35.6751195949999,-9.608656507999882],[-35.696156378999945,-9.672946872999901],[-35.709339972999885,-9.674574476999837],[-35.71910559799994,-9.677829684999878],[-35.74331620999993,-9.67978280999992],[-35.75230872299994,-9.682712497999859],[-35.76085364499997,-9.687107028999932],[-35.778065558999884,-9.700127862999821],[-35.763050910999965,-9.675713799999867],[-35.74909420499989,-9.659844658999845],[-35.746245897999955,-9.641778252999828],[-35.7650447259999,-9.610772393999895],[-35.77342688699986,-9.600355726999823],[-35.786040818999936,-9.58855559699984],[-35.79991614499994,-9.584730726999837],[-35.812163865999906,-9.597832940999893],[-35.80988521999993,-9.60458749799993],[-35.79523678299992,-9.629164320999848],[-35.79173743399991,-9.642185153999918],[-35.79173743399991,-9.669122002999899],[-35.794911261999886,-9.67913176899988],[-35.80199133999986,-9.684258721999896],[-35.80899003799993,-9.686944268999866],[-35.853179490999906,-9.731215101999837],[-35.858143683999856,-9.73455169099985],[-35.86839758999989,-9.718031507999882],[-35.87710527299987,-9.696954033999859],[-35.877349412999905,-9.686618747999844],[-35.9084366529999,-9.63876718499992],[-35.905425584999904,-9.624769789999858],[-35.919585740999935,-9.608086846999825],[-35.94188391799989,-9.59978606599985],[-35.96304277299987,-9.610772393999895],[-35.95156816299993,-9.627618096999896],[-35.92320716099991,-9.645765882999811],[-35.9084366529999,-9.659274997999873],[-35.90217037699995,-9.671156507999825],[-35.878977016999926,-9.74920012799987],[-35.873646613999966,-9.755466403999904],[-35.86091061099992,-9.76002369599986],[-35.857411261999914,-9.755303643999852],[-35.85692298099994,-9.747002862999878],[-35.853179490999906,-9.741143487999835],[-35.81956946499988,-9.735528252999828],[-35.80557206899991,-9.73105234199987],[-35.79857337099995,-9.720635674999867],[-35.810617641999954,-9.744805596999882],[-35.862049933999856,-9.794040622999887],[-35.88267981699988,-9.855645440999837],[-35.90392005099994,-9.878187757999825],[-35.94937089799993,-9.913181247999916],[-35.9732966789999,-9.96575286299985],[-35.980376756999874,-9.974541924999826],[-35.99201412699997,-9.980726820999877],[-36.00218665299991,-9.995538018999852],[-36.03628495999993,-10.064141533999873],[-36.05011959499993,-10.078545830999843],[-36.09032141799992,-10.093438408999901],[-36.141184048999946,-10.159437757999825],[-36.25104732999992,-10.24822356599988],[-36.280506964999915,-10.279961846999838],[-36.28897050699996,-10.29705169099988],[-36.291981574999845,-10.320245049999912],[-36.2909236319999,-10.332289320999834],[-36.28917395699992,-10.338962497999873],[-36.28880774599989,-10.34400807099982],[-36.291981574999845,-10.351983330999872],[-36.40807044199988,-10.502129815999822],[-36.420765753999945,-10.508721612999892],[-36.457915818999936,-10.520440362999878],[-36.48607337099995,-10.523370049999897],[-36.50499426999994,-10.527764580999886],[-36.52013098899994,-10.533786716999884],[-36.53844153599991,-10.543633721999825],[-36.576568162999905,-10.55046965899983],[-36.58193925699996,-10.553806247999859],[-36.591786261999886,-10.567803643999824],[-36.59675045499992,-10.57097747199988],[-36.61091061099995,-10.575127862999835],[-36.768381313999896,-10.672621351999865],[-36.90306555899994,-10.772881768999866],[-36.95270748599995,-10.836358330999872],[-36.96336829299989,-10.86541106599985],[-36.978871222999885,-10.886488539999872],[-37.0293676419999,-10.935642184999892],[-37.03966223899991,-10.949151299999867],[-37.04442298099991,-10.964450778999916],[-37.045521613999966,-10.985284112999906],[-37.050445115999935,-10.999607028999888],[-37.12401282499991,-11.115329684999907],[-37.138295050999886,-11.125909112999864],[-37.14761308499993,-11.121758721999825],[-37.147043423999975,-11.11199309699988],[-37.14281165299985,-11.100681247999901],[-37.14171301999991,-11.091729424999869],[-37.14663652299987,-11.08521900799988],[-37.15217037699989,-11.083672783999845],[-37.15758216099994,-11.080987237999864],[-37.162220831999946,-11.071384372999873],[-37.16966712099995,-11.071384372999873],[-37.175689256999924,-11.08570728999986],[-37.185210740999935,-11.074151299999839],[-37.200062628999916,-11.043389580999857],[-37.20685787699992,-11.039157809999935],[-37.24852454299989,-11.02166106599988],[-37.25841223899991,-11.01978932099982],[-37.261545376999976,-11.015232028999876],[-37.268381313999896,-11.016371351999823],[-37.27513587099992,-11.02271900799984],[-37.27822831899991,-11.03337981599988],[-37.27611243399991,-11.041761976999837],[-37.27086341099991,-11.053317966999856],[-37.26431230399992,-11.064385674999897],[-37.25841223899991,-11.071384372999873],[-37.251576300999886,-11.073011976999808],[-37.24461829299988,-11.070896091999883],[-37.236887173999975,-11.069594007999896],[-37.22740637899997,-11.074802341999884],[-37.219309048999946,-11.081149997999916],[-37.21129309799991,-11.085870049999825],[-37.19635982999994,-11.091729424999869],[-37.19635982999994,-11.098565362999892],[-37.21422278599994,-11.091729424999869],[-37.220692511999914,-11.096774997999901],[-37.21678626199994,-11.10613372199984],[-37.20376542899993,-11.112237237999835],[-37.19444739499991,-11.110528252999828],[-37.190337693999936,-11.104750257999854],[-37.18781490799992,-11.099541924999869],[-37.18268795499992,-11.098565362999892],[-37.172678188999924,-11.103122653999932],[-37.16563880099997,-11.108819268999824],[-37.16392981699997,-11.11638762799987],[-37.16966712099995,-11.125909112999864],[-37.163319464999915,-11.13616301899988],[-37.16405188699994,-11.170342705999872],[-37.15538489499994,-11.187432549999825],[-37.15538489499994,-11.18124765399986],[-37.149159308999884,-11.187432549999825],[-37.17247473899988,-11.203545830999886],[-37.199452277999846,-11.215264580999886],[-37.22179114499997,-11.229587497999873],[-37.23110917899993,-11.252862237999878],[-37.23542232999992,-11.260837497999844],[-37.245350714999915,-11.267022393999895],[-37.25658118399991,-11.272230726999808],[-37.26463782499985,-11.277439059999892],[-37.26976477799988,-11.284844658999873],[-37.285755988999966,-11.317071221999825],[-37.31602942599997,-11.40642669099985],[-37.330067511999914,-11.420668226999851],[-37.37486731699994,-11.429864190999822],[-37.3880916009999,-11.426934502999899],[-37.38988196499989,-11.419040622999916],[-37.384429490999935,-11.409437757999854],[-37.384429490999935,-11.401950778999876],[-37.402455206999946,-11.399672132999811],[-37.37437903599996,-11.36239999799993],[-37.36827551999996,-11.351250908999901],[-37.36217200399989,-11.324802341999842],[-37.35830644399987,-11.315850518999895],[-37.347157355999855,-11.30339934699988],[-37.30557206899988,-11.269952080999829],[-37.294992641999926,-11.258233330999843],[-37.29051673099988,-11.254327080999843],[-37.27208411399994,-11.249444268999866],[-37.28587805899994,-11.236993096999852],[-37.28844153599994,-11.208184502999828],[-37.29938717399991,-11.194756768999838],[-37.30333411399991,-11.219821872999916],[-37.30308997299994,-11.231215101999894],[-37.29938717399991,-11.242608330999857],[-37.30557206899988,-11.242608330999857],[-37.3241267569999,-11.208591403999918],[-37.336781378999945,-11.190524997999901],[-37.34410559799997,-11.184258721999853],[-37.34788977799988,-11.204196872999844],[-37.319976365999935,-11.249769789999888],[-37.31920325399991,-11.269952080999829],[-37.32559160099995,-11.263116143999907],[-37.347157355999855,-11.249444268999866],[-37.34618079299989,-11.261000257999811],[-37.34129798099991,-11.26767343499985],[-37.33604895699992,-11.272881768999852],[-37.333485480999904,-11.280450127999899],[-37.33629309799997,-11.290134372999859],[-37.34312903599991,-11.292738539999858],[-37.35204016799992,-11.2933895809999],[-37.36082923099991,-11.296563408999873],[-37.371449347999935,-11.306329033999901],[-37.379750128999916,-11.317152601999808],[-37.39557857999995,-11.344984632999866],[-37.40819251199994,-11.395684502999826],[-37.415394660999965,-11.40642669099985],[-37.42955481699988,-11.405043226999865],[-37.43626868399994,-11.38876718499992],[-37.443348761999914,-11.351250908999901],[-37.44566809799997,-11.364434502999856],[-37.45177161399994,-11.370538018999852],[-37.460438605999855,-11.368910414999915],[-37.47008216099991,-11.358656507999811],[-37.460357225999864,-11.391778252999842],[-37.45372473899991,-11.403578382999811],[-37.443348761999914,-11.413262627999856],[-37.40172278599993,-11.42888762799984],[-37.39557857999995,-11.437432549999869],[-37.40599524599995,-11.470472914999915],[-37.431385870999854,-11.49285247199984],[-37.462961391999954,-11.507419528999874],[-37.49185136599988,-11.516289971999825],[-37.47484290299991,-11.520114841999842],[-37.453846808999884,-11.517673434999892],[-37.43276933499993,-11.511163018999895],[-37.415394660999965,-11.503187757999852],[-37.40196692599997,-11.49098072699988],[-37.38975989499991,-11.474379164999917],[-37.37677975199992,-11.460219007999896],[-37.36082923099991,-11.454847914999931],[-37.36823482999998,-11.473809502999854],[-37.434722459999904,-11.569268487999864],[-37.50918535099987,-11.723809502999885],[-37.51341712099989,-11.760674737999864],[-37.52281653599991,-11.77613697699988],[-37.54576575399989,-11.804375908999845],[-37.604237433999884,-11.949965101999851],[-37.63174394399991,-11.99529387799987],[-37.65465247299991,-12.049737237999864],[-37.717640753999916,-12.136407158999901],[-37.786709732999896,-12.264634132999886],[-37.871175348999905,-12.382262528999846],[-37.93339010899987,-12.475376159999868],[-37.99852454299992,-12.562188408999873],[-38.05089270699989,-12.641045831],[-38.06346594999988,-12.647230726999894],[-38.07396399599986,-12.65390390399993],[-38.14549719999991,-12.735039971999953],[-38.21324622299991,-12.820000908999987],[-38.29137122299994,-12.894952080999957],[-38.32042395699992,-12.935235283999845],[-38.3399958979999,-12.950290622999859],[-38.361398891999926,-12.961846612999963],[-38.371937628999916,-12.965264580999971],[-38.39427649599991,-12.968438408999859],[-38.40611731699988,-12.968845309999864],[-38.41624915299985,-12.973077080999886],[-38.437001105999855,-12.992364190999908],[-38.464955206999974,-13.0023739559999],[-38.48643958199992,-13.01376718499995],[-38.50967363199993,-13.021416924999896],[-38.53270423099991,-13.016534112999835],[-38.53831946499989,-13.00400155999992],[-38.51838131399992,-12.96689218499999],[-38.50792395699992,-12.931817315999837],[-38.49779212099989,-12.918389580999843],[-38.48619544199997,-12.915948174999981],[-38.47740637899989,-12.935235283999845],[-38.47907467399992,-12.915948174999981],[-38.487049933999856,-12.898858330999943],[-38.49120032499991,-12.882012627999941],[-38.47565670499989,-12.851657809999963],[-38.48009192599997,-12.842217705999872],[-38.48766028599991,-12.834730726999979],[-38.49176998599995,-12.829359632999937],[-38.492298956999946,-12.82244231599985],[-38.49413001199991,-12.817640882999937],[-38.50226803299995,-12.808282158999916],[-38.50405839799993,-12.80413176899988],[-38.50226803299995,-12.800551039999988],[-38.49974524599992,-12.79656340899993],[-38.49913489499997,-12.79119231599988],[-38.50890051999991,-12.722914320999875],[-38.526966925999915,-12.723077080999843],[-38.54238847599996,-12.721612237999878],[-38.55748450399994,-12.715508721999981],[-38.574289516999954,-12.701836846999939],[-38.605946417999945,-12.713636976999922],[-38.62621008999986,-12.70240650799991],[-38.63760331899991,-12.68075937299993],[-38.64858964799987,-12.63836028399993],[-38.65615800699993,-12.633721612999906],[-38.667144334999875,-12.634047132999939],[-38.68346106699991,-12.626722914999931],[-38.694569464999944,-12.61402760199988],[-38.69517981699991,-12.602797132999966],[-38.69180253799988,-12.589776299999967],[-38.690988735999944,-12.571465752999828],[-38.69713294199994,-12.571465752999828],[-38.71580969999991,-12.605075778999932],[-38.722075975999864,-12.62249114399999],[-38.72447669199991,-12.643487237999864],[-38.72447669199991,-12.671075127999956],[-38.72630774599989,-12.678887627999869],[-38.73033606699997,-12.68238697699995],[-38.73497473899988,-12.684502862999949],[-38.73814856699993,-12.687595309999935],[-38.75096594999988,-12.712823174999912],[-38.750396287999905,-12.724541924999897],[-38.73814856699993,-12.736586195999818],[-38.77721106699991,-12.807549737999892],[-38.789947068999965,-12.81853606599985],[-38.79548092399989,-12.82146575299987],[-38.80663001199991,-12.835137627999984],[-38.81383216099994,-12.839043877999899],[-38.82445227799988,-12.838148695999818],[-38.835560675999915,-12.828383070999962],[-38.84487870999996,-12.825941664999931],[-38.85582434799991,-12.816827080999929],[-38.86400305899991,-12.795098565999965],[-38.8827205069999,-12.722100518999866],[-38.88117428299995,-12.705336195999848],[-38.869862433999884,-12.69207122199991],[-38.84801184799991,-12.674493096999882],[-38.86168372299996,-12.654066664999988],[-38.868478969999984,-12.654066664999988],[-38.863392706999974,-12.669854424999938],[-38.869862433999884,-12.677829684999907],[-38.88243567599994,-12.684177341999927],[-38.895822719999956,-12.695000908999845],[-38.903187628999945,-12.7094052059999],[-38.90583248599995,-12.721774998000015],[-38.91051184799997,-12.731052341999984],[-38.92369544199991,-12.736586195999818],[-38.9146622389999,-12.748467705999957],[-38.90367591099994,-12.772393487999835],[-38.895822719999956,-12.784356377999941],[-38.888010219999956,-12.790459893999852],[-38.88149980399987,-12.791680596999866],[-38.87535559799991,-12.794528903999904],[-38.868478969999984,-12.804864190999908],[-38.869211391999926,-12.809014580999857],[-38.86913001199994,-12.820570570999877],[-38.86701412699992,-12.834649347],[-38.86168372299996,-12.845879815999908],[-38.853993292999945,-12.851250908999958],[-38.83429928299989,-12.86060963299991],[-38.82750403599988,-12.866957290000016],[-38.81212317599994,-12.853692315999908],[-38.80361894399991,-12.848728122999944],[-38.79710852799991,-12.849297783999916],[-38.79279537699991,-12.856703382999823],[-38.78880774599992,-12.86663176899999],[-38.78368079299992,-12.872979424999855],[-38.77599036399991,-12.870049737999835],[-38.76545162699992,-12.864678643999952],[-38.75230872299997,-12.864434502999913],[-38.73802649599988,-12.867933851999823],[-38.72447669199991,-12.873223565999893],[-38.733713344999984,-12.879571221999909],[-38.736317511999886,-12.882745049999967],[-38.74217688699991,-12.897149346999939],[-38.746937628999916,-12.904554945999847],[-38.750803188999924,-12.912774346999923],[-38.752430792999945,-12.924981377999913],[-38.7513321609999,-12.946384372999944],[-38.75210527299993,-12.957289320999934],[-38.75584876199986,-12.965427341999854],[-38.76744544199997,-12.979180596999951],[-38.78685462099989,-13.008070570999976],[-38.80089270699992,-13.024021091999984],[-38.81554114499994,-13.036716403999861],[-38.835113084999904,-13.050062757999868],[-38.857085740999935,-13.060642185],[-38.87901770699994,-13.064873955999843],[-38.88927161399988,-13.069756768999909],[-38.89500891799986,-13.080987237999906],[-38.896880662999905,-13.09465911299985],[-38.895822719999956,-13.106540622999987],[-38.893381313999924,-13.113457940999893],[-38.88975989499997,-13.118422132999854],[-38.88414466099996,-13.122328382999937],[-38.87535559799991,-13.12639739399998],[-38.80699622299991,-13.143812757999951],[-38.810658331999974,-13.153497002999927],[-38.819569464999915,-13.156670830999985],[-38.83092200399988,-13.157810154000016],[-38.841786261999886,-13.161228123000015],[-38.85179602799985,-13.168877862999963],[-38.87535559799991,-13.19540781],[-38.931752081999946,-13.233005466999927],[-38.94762122299996,-13.246758721999853],[-38.95750891799989,-13.264825127999869],[-38.96349036399991,-13.305840752999954],[-38.9708552729999,-13.325616143999893],[-38.95685787699995,-13.356622003],[-38.95457923099988,-13.372491143999852],[-38.96471106699991,-13.380303643999936],[-38.989613410999965,-13.363946221999923],[-38.998850063999924,-13.36044687299993],[-39.00959225199992,-13.360284112999878],[-39.039784308999856,-13.36663176899999],[-39.037668423999946,-13.357842705999843],[-39.03697669199991,-13.350192967],[-39.03770911399994,-13.341973565999908],[-39.039784308999856,-13.332452080999914],[-39.062489386999886,-13.399997653999975],[-39.06822669199997,-13.440606377999885],[-39.06029212099989,-13.47031015399999],[-39.07103430899991,-13.480075778999947],[-39.07994544199994,-13.495293877999927],[-39.08600826699995,-13.514092705999971],[-39.08820553299995,-13.534274997999987],[-39.08421790299988,-13.578789972],[-39.091420050999886,-13.593682549999953],[-39.115549282999915,-13.599379165000016],[-39.115549282999915,-13.606133721999882],[-39.08665930899991,-13.603936455999886],[-39.077381964999944,-13.590020440999908],[-39.080799933999856,-13.54111093499992],[-39.075021938999896,-13.51726653399993],[-39.05968176999993,-13.494805596999939],[-39.037668423999946,-13.48455169099999],[-39.01183020699992,-13.49700286299992],[-39.007069464999915,-13.504815362999835],[-39.003163214999915,-13.522556247999916],[-38.9954320949999,-13.534274997999987],[-38.99299068899998,-13.54111093499992],[-38.996937628999945,-13.547051690999936],[-39.00267493399994,-13.553480726999865],[-39.00568600199995,-13.561781507999937],[-39.001942511999914,-13.588067315999865],[-38.99278723899991,-13.60767994599992],[-38.98143469999985,-13.625746351999936],[-38.9708552729999,-13.647719007999939],[-38.96784420499989,-13.674004815999965],[-38.975738084999875,-13.69255950299997],[-38.98656165299988,-13.710219007999981],[-38.99201412699989,-13.733086846999896],[-38.9942113919999,-13.794610283999944],[-38.99201412699989,-13.812269789999874],[-38.98184160099996,-13.827569268999838],[-38.97996985599988,-13.835870049999912],[-38.98859615799989,-13.839532158999958],[-39.00169837099986,-13.837660414999988],[-39.011219855999855,-13.8324520809999],[-39.02989661399994,-13.815362237999864],[-39.03734290299991,-13.805352471999967],[-39.04076087099992,-13.794040622999972],[-39.04287675699993,-13.782321872999901],[-39.04662024599986,-13.77125416499996],[-39.05357825399994,-13.760918877999941],[-39.060170050999915,-13.755140882999894],[-39.066965298999946,-13.750420830999886],[-39.074533657999886,-13.743340752999913],[-39.07957923099994,-13.740980726999963],[-39.083973761999914,-13.741957290000029],[-39.08702551999991,-13.74114348799992],[-39.09162350199995,-13.712660415],[-39.09968014199998,-13.708916924999983],[-39.110951300999965,-13.708184502999956],[-39.13255774599989,-13.709242445999905],[-39.14110266799989,-13.719170830999914],[-39.14875240799992,-13.736911716999913],[-39.14403235599991,-13.744317315999979],[-39.115549282999915,-13.72356536299999],[-39.110015428999894,-13.731703382999825],[-39.10826575399989,-13.74041106599999],[-39.110096808999884,-13.749118747999887],[-39.115549282999915,-13.757582290000016],[-39.071603969999984,-13.779554945999848],[-39.06029212099989,-13.791761976999908],[-39.043202277999846,-13.82634856599999],[-39.03213456899991,-13.840590101999908],[-38.99771074099988,-13.851739190999936],[-38.99445553299992,-13.863457940999837],[-38.99998938699986,-13.87517669099999],[-39.00877844999991,-13.880547783999873],[-39.03490149599989,-13.87965260199988],[-39.04893958199992,-13.87590911299985],[-39.06712805899991,-13.867445570999905],[-39.074533657999886,-13.894219658999987],[-39.07115637899989,-13.90309010199995],[-39.06371008999991,-13.935804945999976],[-39.057484503999945,-13.937920830999985],[-39.04124915299991,-13.947198174999853],[-39.021595831999946,-13.95566171699997],[-39.007394985999944,-13.969659112999935],[-38.99669348899991,-13.985609632999953],[-38.99201412699989,-13.997247002999869],[-38.9928279289999,-14.00904713299984],[-38.99559485599988,-14.01913827899999],[-38.99567623599995,-14.029229424999869],[-38.98281816299993,-14.050713799999983],[-38.97956295499998,-14.061130466999884],[-38.980824347999885,-14.069512627999927],[-38.98859615799989,-14.072930596999853],[-39.02790279899989,-14.078301690999908],[-39.03986568899992,-14.07512786299985],[-39.05406653599994,-14.05925872199991],[-39.07103430899991,-14.076348565999865],[-39.07286536399988,-14.0858700499999],[-39.06029212099989,-14.09970468499995],[-39.066802537999905,-14.10564544099988],[-39.07290605399987,-14.115166924999969],[-39.0762426419999,-14.127373955999857],[-39.074533657999886,-14.140557549999897],[-39.06672115799992,-14.150079033999987],[-39.055897589999915,-14.155043226999851],[-39.045643683999884,-14.16139088299988],[-39.039784308999856,-14.17538827899993],[-39.03359941299988,-14.17538827899993],[-39.057036912999955,-14.133558851999908],[-39.06338456899988,-14.109958591999884],[-39.043202277999846,-14.09970468499995],[-39.024281378999945,-14.096856377999911],[-39.0028376939999,-14.089532158999987],[-38.957264777999846,-14.06609465899993],[-38.95909583199992,-14.057305596999868],[-38.95836341099987,-14.045993747999887],[-38.959706183999884,-14.03622812299993],[-38.96784420499989,-14.031914971999939],[-38.97227942599997,-14.026625257999866],[-38.97069251199994,-14.014825127999899],[-38.96471106699991,-13.997247002999869],[-38.96532141799989,-13.991957289999888],[-38.96910559799991,-13.989190362999835],[-38.971424933999884,-13.986260675],[-38.96784420499989,-13.98056405999992],[-38.9630427729999,-13.978285414999945],[-38.95295162699995,-13.976983330999857],[-38.95103919199988,-13.973565362999848],[-38.95287024599986,-13.962579033999887],[-38.95807857999995,-13.95598723799999],[-38.96666419199997,-13.952080987999906],[-38.97834225199995,-13.949395440999934],[-38.975656704999885,-13.945733330999886],[-38.9708552729999,-13.935804945999976],[-38.987538214999944,-13.939873955999929],[-38.98997962099989,-13.93084075299984],[-38.98375403599991,-13.916273695999903],[-38.97459876199994,-13.904473565999922],[-38.96385657499991,-13.897067966999856],[-38.94888261599988,-13.890313409],[-38.935658331999946,-13.88892994599992],[-38.929921027999875,-13.897637627999913],[-38.929066535999965,-13.983168226999922],[-38.92369544199991,-14.004082940999965],[-38.94668535099989,-14.102308851999936],[-38.95929928299998,-14.122165622999859],[-38.96471106699991,-14.133721612999963],[-38.966867641999926,-14.14592864399995],[-38.96837317599997,-14.170017184999963],[-38.9708552729999,-14.181573175],[-38.98924719999985,-14.212334893999978],[-38.99201412699989,-14.226657809999878],[-38.99201412699989,-14.267836195999847],[-38.98420162699992,-14.299411717000012],[-38.98517818899998,-14.312595309999978],[-38.992095506999874,-14.324965101999922],[-39.000721808999884,-14.335707289999931],[-39.00499426999991,-14.346856377999941],[-38.998850063999924,-14.360284112999933],[-39.00694739499994,-14.370293877999842],[-39.00763912699989,-14.383233330999841],[-39.005604620999854,-14.398207289999872],[-39.00568600199995,-14.41497161299989],[-39.02611243399991,-14.463311455999984],[-39.03359941299988,-14.539157809999947],[-39.05142167899996,-14.591973565999837],[-39.05626380099994,-14.622247002999913],[-39.065581834999875,-14.654880466999954],[-39.06712805899991,-14.674981378],[-39.05406653599994,-14.75408294099999],[-39.05085201699998,-14.76580169099999],[-39.03673255099994,-14.779473565999936],[-39.03359941299988,-14.79225025799988],[-39.045643683999884,-14.796075127999899],[-39.05296790299991,-14.801364841999956],[-39.05406653599994,-14.812188408999871],[-39.0482478509999,-14.818617445999962],[-39.03921464799987,-14.817559502999911],[-39.02969316299988,-14.81462981599999],[-39.022694464999915,-14.815850518999909],[-39.02611243399991,-14.857191664999943],[-39.022938605999855,-14.900323174999954],[-39.008900519999884,-14.97087981599985],[-39.00182044199994,-15.232028903999904],[-38.97964433499996,-15.323663018999978],[-38.97325598899994,-15.409356377999869],[-38.943267381999874,-15.565362237999947],[-38.923898891999954,-15.715590101999979],[-38.904896613999966,-15.7575009089999],[-38.89240475199995,-15.774997653999945],[-38.88857988199993,-15.782891534],[-38.8827205069999,-15.812676690999837],[-38.87791907499991,-15.822360934999892],[-38.86436926999994,-15.843357029000016],[-38.86168372299996,-15.854261976999908],[-38.86701412699992,-15.869724216999927],[-38.89049231699991,-15.904392184999905],[-38.895822719999956,-15.918877862999949],[-38.89875240799998,-15.940036716999941],[-38.92369544199991,-16.00514088299998],[-38.92418372299991,-16.02361419099999],[-38.92955481699994,-16.038344007999893],[-38.94420325399997,-16.066582940999965],[-38.94786536399991,-16.081475518999923],[-38.952748175999886,-16.167087498],[-38.957264777999846,-16.183282158999955],[-38.998036261999914,-16.252862237999864],[-39.00536048099991,-16.275079033999916],[-39.00767981699988,-16.299248955999914],[-39.00568600199995,-16.3265927059999],[-39.00690670499995,-16.359307549999926],[-39.018381313999896,-16.383070570999834],[-39.05406653599994,-16.436455987999878],[-39.04963131399995,-16.447035415],[-39.05064856699994,-16.456719658999887],[-39.06029212099989,-16.478122654000018],[-39.09227454299988,-16.657810153999932],[-39.13597571499989,-16.80022551899998],[-39.13597571499989,-16.844659112999906],[-39.13377844999991,-16.85572682099985],[-39.121693488999874,-16.878513278999876],[-39.12157141799992,-16.892022393999852],[-39.12360592399994,-16.89788176899998],[-39.14964758999991,-16.950453382999907],[-39.16881262899988,-17.075941664999974],[-39.18374589799993,-17.114922783999944],[-39.20205644399991,-17.144219658999972],[-39.20860755099997,-17.162204685],[-39.217355923999946,-17.295098565999865],[-39.209055141999954,-17.38209400799984],[-39.19001217399997,-17.430271091999884],[-39.186268683999856,-17.45208098799992],[-39.188384568999965,-17.578383070999905],[-39.18374589799993,-17.600844007999896],[-39.16673743399988,-17.633965752999927],[-39.146962042999945,-17.657159112999878],[-39.13711503799993,-17.67962004999997],[-39.14964758999991,-17.710707289999974],[-39.25890051999994,-17.820733330999914],[-39.26821855399987,-17.836521091999867],[-39.27135169199994,-17.846286716999984],[-39.27257239499997,-17.858575127999956],[-39.275054490999906,-17.866875908999845],[-39.28136145699994,-17.871026299999883],[-39.28929602799991,-17.874118747999958],[-39.31419837099995,-17.890313408999916],[-39.38239498599995,-17.90325286299992],[-39.41783606699993,-17.920993747999916],[-39.45018469999988,-17.948011976999865],[-39.49909420499995,-18.005629165000016],[-39.624989386999914,-18.19264088299985],[-39.65941321499986,-18.273614190999908],[-39.67259680899991,-18.32317473799985],[-39.724680141999954,-18.518731377999885],[-39.744862433999884,-18.681735934999864],[-39.741078253999945,-18.902113539999945],[-39.71922766799991,-19.090508721999868],[-39.698068813999896,-19.239922783999884],[-39.70140540299994,-19.37615325299994],[-39.709787563999896,-19.416110934999907],[-39.78620357999991,-19.6019833309999],[-39.806996222999885,-19.63616301899998],[-39.83486894399993,-19.657159112999835],[-39.950998501999976,-19.705173435],[-40.00942949099993,-19.747002862999935],[-40.02684485599991,-19.764418226999908],[-40.08364824099988,-19.895440362999977],[-40.08812415299994,-19.91448333099997],[-40.09740149599989,-19.930596612999935],[-40.14167232999995,-19.945570570999976],[-40.15705318899998,-19.958916924999897],[-40.134429490999906,-19.958916924999897],[-40.131988084999875,-19.9718563779999],[-40.14647376199994,-20.02304452899986],[-40.15387936099992,-20.027601820999887],[-40.16266842399988,-20.029554945999934],[-40.170033331999974,-20.033949476999837],[-40.17861894399991,-20.04338958099994],[-40.177479620999854,-20.0585263],[-40.17540442599994,-20.067315362999906],[-40.1660863919999,-20.08652109199987],[-40.16388912699989,-20.09612395599993],[-40.16592363199993,-20.105889580999886],[-40.17540442599994,-20.12525807099989],[-40.19098873599992,-20.189873955999943],[-40.19489498599992,-20.19850025799985],[-40.20254472599996,-20.20769622199991],[-40.222767706999974,-20.251560153999876],[-40.23277747299994,-20.266778252999853],[-40.24152584499993,-20.27556731599999],[-40.24437415299988,-20.277520440999865],[-40.247222459999904,-20.273532809999978],[-40.25609290299988,-20.26376718500002],[-40.26618404899992,-20.260511976999975],[-40.27354895699992,-20.267510674999883],[-40.27993730399992,-20.276950778999975],[-40.286732550999965,-20.281019789999945],[-40.29808508999994,-20.273695570999934],[-40.29320227799988,-20.245049737999878],[-40.300404425999915,-20.23267994599985],[-40.31639563699991,-20.227959893999838],[-40.336048956999946,-20.227634372999987],[-40.36929277299987,-20.23267994599985],[-40.35619055899991,-20.243340752999956],[-40.35090084499993,-20.256524346999907],[-40.35655676999991,-20.26637135199985],[-40.376128709999875,-20.266778252999853],[-40.376128709999875,-20.274183851999922],[-40.371734178999894,-20.27556731599999],[-40.368723110999895,-20.276950778999975],[-40.36188717399997,-20.281019789999945],[-40.37047278599991,-20.30103932099992],[-40.36597077699989,-20.32323118899994],[-40.34787808599992,-20.326205525999924],[-40.323947852999936,-20.32483816099986],[-40.32539155499995,-20.337532439999833],[-40.31469990299985,-20.334268206999923],[-40.30064856699994,-20.319431247999958],[-40.28246008999985,-20.314222914999874],[-40.25951087099989,-20.321465752999984],[-40.27505449099988,-20.33391692499991],[-40.29063880099997,-20.35068124799993],[-40.30247962099992,-20.370863539999945],[-40.31265214799987,-20.417250257999925],[-40.33653723899993,-20.455661717000012],[-40.34874426999991,-20.50009530999995],[-40.396595831999946,-20.56902434699998],[-40.418324347999906,-20.615329684999978],[-40.43321692599997,-20.628676039999988],[-40.45128333199989,-20.616875908999916],[-40.47533118399991,-20.637790622999887],[-40.48363196499991,-20.64820728999996],[-40.52448482999995,-20.715752862999846],[-40.53441321499986,-20.72673919099999],[-40.55606035099993,-20.74358489399999],[-40.56517493399994,-20.753024997999916],[-40.583423639999914,-20.801972291999917],[-40.60939919099985,-20.80728935299993],[-40.61956450199992,-20.833901291999936],[-40.628438377999885,-20.83921762199998],[-40.63390051999993,-20.82952239399999],[-40.63683020699994,-20.81894296699987],[-40.641590949999845,-20.808200778999947],[-40.65208899599991,-20.80803801899998],[-40.66246497299991,-20.812595310000017],[-40.667225714999915,-20.81552499799986],[-40.701378348999896,-20.83595638399997],[-40.73172478599989,-20.843837978],[-40.746303569999895,-20.852881542999896],[-40.75846325499987,-20.864194032999933],[-40.7609327179999,-20.882329444999883],[-40.773084601999955,-20.889107641],[-40.779186533999905,-20.902699790999915],[-40.78893099599986,-20.916284734999962],[-40.80110878599993,-20.930996160999854],[-40.808479621999965,-20.962725390999864],[-40.80736325699988,-20.99787486099997],[-40.81138185799991,-21.018847518999934],[-40.81461323399994,-21.03661158699998],[-40.8306778639999,-21.049248955999868],[-40.83958899599992,-21.068291924999954],[-40.84166419199994,-21.079278252999913],[-40.846547003999916,-21.094496351999894],[-40.92234944899988,-21.190463834999875],[-40.95180979499992,-21.238104397999848],[-40.96511796799987,-21.274021091999852],[-40.96519934799997,-21.274834893999866],[-40.96007239499994,-21.287367445999863],[-40.959217902999846,-21.303399346999853],[-40.96129309799997,-21.320245049999855],[-40.96519934799997,-21.335625908999972],[-40.963502513999885,-21.36450260099987],[-40.98325178099989,-21.39130670699987],[-41.01816398799991,-21.44172379599989],[-41.04954993399994,-21.469333591999856],[-41.057240363999966,-21.483819268999895],[-41.07186755599989,-21.523338531999897],[-41.05934587899992,-21.56104476899992],[-41.0185440749999,-21.608086846999925],[-41.01353919199997,-21.651543877999885],[-41.0247289509999,-21.71919005299992],[-41.00674394399993,-21.823418877999984],[-40.96727454299989,-21.947523695999976],[-40.972645636999935,-21.986748955999985],[-40.995269334999904,-22.014255466999927],[-41.14126542899993,-22.09677499799993],[-41.24369487699997,-22.14521276699996],[-41.345692511999914,-22.17205169099992],[-41.465728318999936,-22.202569268999863],[-41.55516516799992,-22.23235442499987],[-41.66649329299986,-22.281833591999913],[-41.74136308499993,-22.329034112999892],[-41.7708227199999,-22.354180596999967],[-41.775949673999946,-22.36256275799984],[-41.778960740999935,-22.380303643999838],[-41.784494594999956,-22.388604425],[-41.80260169199996,-22.4020321589999],[-41.834828253999916,-22.419528903999947],[-41.849680141999954,-22.433038018999923],[-41.86847896999993,-22.46851979],[-41.87352454299986,-22.473890882999953],[-41.88255774599986,-22.47584400799982],[-41.89268958199992,-22.480238539999903],[-41.90086829299992,-22.48577239399991],[-41.90428626199994,-22.49065520599997],[-41.91197669199994,-22.50798919099988],[-41.93004309799997,-22.51970794099995],[-41.96629798099988,-22.53541432099992],[-41.98607337099992,-22.564873955999914],[-41.996205206999946,-22.60930754999984],[-41.998117641999926,-22.657891533999887],[-41.99303137899989,-22.69988372199995],[-41.982899542999945,-22.716241143999966],[-41.94688880099997,-22.753594658999845],[-41.939035610999895,-22.765069268999966],[-41.93455969999994,-22.768731377999842],[-41.92491614499997,-22.761814059999935],[-41.911040818999965,-22.747165623000015],[-41.90160071499986,-22.74358489399995],[-41.88003495999993,-22.738864841999852],[-41.87010657499985,-22.734063408999944],[-41.86978105399993,-22.75212981599988],[-41.87657630099994,-22.762383722],[-41.88532467399992,-22.7706031229999],[-41.890614386999914,-22.782403252999956],[-41.9095759759999,-22.77662525799991],[-41.92227128799988,-22.78337981599985],[-41.94522050699996,-22.809747002999938],[-41.975249803999894,-22.821872653999932],[-41.9830623039999,-22.823418877999885],[-41.98961341099988,-22.82634856599999],[-41.99120032499991,-22.833672783999987],[-41.991322394999884,-22.842868747999972],[-41.9947810539999,-22.859795830999957],[-41.99502519399993,-22.868422132999864],[-41.996896938999896,-22.875258070999976],[-42.00357011599996,-22.87802499799993],[-42.01414954299992,-22.8788388],[-42.01992753799988,-22.881280205999968],[-42.02367102799991,-22.885674737999878],[-42.027821417999945,-22.892266533999944],[-42.03307044199994,-22.912530205999943],[-42.03026282499988,-22.93377044099985],[-42.022694464999944,-22.944512627999938],[-42.01353919199994,-22.93328215899986],[-42.00731360599988,-22.93328215899986],[-42.00291907499991,-22.947686456],[-42.00373287699992,-22.959161065999947],[-42.01353919199994,-22.981703382999854],[-42.02717037699989,-22.976250909],[-42.04600989499994,-22.95777760199998],[-42.058216925999915,-22.95378997199991],[-42.17414303299998,-22.9507789039999],[-42.37612870999993,-22.937432549999897],[-42.53172766799992,-22.934177341999856],[-42.624256964999915,-22.939548434999907],[-42.656239386999914,-22.945977472],[-42.66860917899995,-22.946954033999972],[-42.674549933999884,-22.949965101999894],[-42.68708248599998,-22.963636976999837],[-42.69566809799988,-22.966892184999878],[-42.76935787699995,-22.968519789999903],[-42.86270097599993,-22.977227471999967],[-42.93224036399994,-22.972100518999966],[-43.0314021479999,-22.97429778399996],[-43.05650794199988,-22.953301690999922],[-43.07396399599995,-22.944919528999947],[-43.0897517569999,-22.95378997199991],[-43.101633266999926,-22.942966404],[-43.12144934799994,-22.929945570999834],[-43.130767381999895,-22.919610283999916],[-43.11636308499993,-22.921156507999868],[-43.11058508999989,-22.922784112999977],[-43.103423631999924,-22.92644622199992],[-43.09190833199988,-22.917087497999898],[-43.09129798099994,-22.908298434999935],[-43.09935462099986,-22.90162525799988],[-43.11363684799997,-22.899102471999868],[-43.12946529899989,-22.894138279],[-43.12653561099998,-22.882419529],[-43.110259568999936,-22.860609632999967],[-43.10171464799993,-22.836521091999856],[-43.08120683499996,-22.814141533999916],[-43.034535285999965,-22.77556731599995],[-43.05296790299991,-22.777764580999943],[-43.06114661399991,-22.773858330999854],[-43.061431443999936,-22.76580169099999],[-43.056263800999936,-22.755140882999882],[-43.03490149599989,-22.746270440999922],[-43.02839107999989,-22.741469007999854],[-43.02513587099995,-22.735528253],[-43.02147376199988,-22.713555597],[-43.02122962099995,-22.704196872999873],[-43.02513587099995,-22.67896900799991],[-43.02839107999989,-22.672539971999896],[-43.040923631999895,-22.669366143999838],[-43.06578528599994,-22.671644789999903],[-43.07555091099988,-22.665704033999972],[-43.08356686099992,-22.67180754999987],[-43.09479732999992,-22.68726978999989],[-43.103423631999924,-22.69361744599992],[-43.11485755099997,-22.69768645599997],[-43.12218176999988,-22.697198174999983],[-43.12954667899987,-22.6950009089999],[-43.141346808999856,-22.69361744599992],[-43.15184485599991,-22.695977471999967],[-43.17609615799992,-22.70777760199985],[-43.216704881999895,-22.734063408999944],[-43.23619544199991,-22.734063408999944],[-43.25560462099992,-22.737074476999865],[-43.27017167899993,-22.74700286299995],[-43.27538001199994,-22.76816171699987],[-43.27106686099992,-22.78899504999985],[-43.240589972999885,-22.843926690999922],[-43.23379472599996,-22.843926690999922],[-43.2306208979999,-22.838555596999882],[-43.22704016799992,-22.83521900799985],[-43.22345943899995,-22.83269622199984],[-43.22012285099993,-22.829685154000014],[-43.21922766799992,-22.83953215899986],[-43.21544348899991,-22.846937757999925],[-43.20885169199994,-22.8527157529999],[-43.19961503799996,-22.857028903999904],[-43.20445716099994,-22.85759856599996],[-43.20714270699992,-22.85930754999997],[-43.20946204299989,-22.861748956],[-43.213286912999905,-22.86443450299997],[-43.173329230999855,-22.886976820999877],[-43.16209876199994,-22.89568450299994],[-43.16063391799989,-22.908623955999957],[-43.163197394999884,-22.927422784],[-43.16246497299997,-22.939711195999962],[-43.15123450399994,-22.93328215899986],[-43.15221106699994,-22.95110442499984],[-43.170765753999945,-22.9698218729999],[-43.196766730999904,-22.985935153999876],[-43.22012285099993,-22.995293877999984],[-43.44758053299998,-23.018161716999913],[-43.496001756999874,-23.03101978999993],[-43.54222571499989,-23.049411716999884],[-43.54832923099988,-23.054782809999935],[-43.55435136599996,-23.062188409],[-43.560373501999976,-23.0674781229999],[-43.56651770699994,-23.06633879999987],[-43.57721920499998,-23.051364841999927],[-43.580067511999914,-23.049411716999884],[-43.620757615999906,-23.042575778999947],[-43.87189693899998,-23.069756768999966],[-43.914051886999914,-23.069756768999966],[-43.93472245999993,-23.072686455999982],[-43.95006262899989,-23.080173434999864],[-43.96898352799991,-23.09270598799986],[-43.988758917999945,-23.09742603999987],[-44.003732876999976,-23.09107838299992],[-44.00841223899988,-23.069756768999966],[-44.00145423099991,-23.049248955999914],[-43.987131313999924,-23.041680596999953],[-43.95006262899989,-23.042575778999947],[-43.94001217399992,-23.045586846999868],[-43.916330532999886,-23.056410414999945],[-43.90538489499993,-23.05559661299993],[-43.900461391999954,-23.050062757999836],[-43.89171301999991,-23.021416924999954],[-43.86900794199994,-23.039646091999924],[-43.83202063699991,-23.047621351999894],[-43.75112870999993,-23.049411716999884],[-43.669300910999965,-23.037204684999907],[-43.62547766799992,-23.02402109199994],[-43.60374915299994,-23.00774504999991],[-43.623605923999946,-23.005629165],[-43.64606686099995,-22.998630466999927],[-43.664418097999906,-22.98845794099998],[-43.671986456999946,-22.97795989399999],[-43.676665818999965,-22.979668878],[-43.68748938699986,-22.978773695999834],[-43.69912675699996,-22.97665781],[-43.7066951159999,-22.97429778399996],[-43.71637936099998,-22.96575286299985],[-43.72883053299989,-22.945896092],[-43.73403886599987,-22.939548434999907],[-43.748890753999945,-22.934340101999823],[-43.79352779899992,-22.92815520599993],[-43.80296790299994,-22.929864190999847],[-43.80899003799993,-22.90976327899999],[-43.82412675699993,-22.90764739399998],[-43.844105597999906,-22.910577081],[-43.864369269999905,-22.905938408999887],[-43.85016842399992,-22.899102471999868],[-43.85016842399992,-22.892266533999944],[-43.864369269999905,-22.89617278399993],[-43.892730272999955,-22.90935637799998],[-43.901966925999915,-22.91220468500002],[-43.95376542899992,-22.919610283999916],[-43.966420050999915,-22.92343515399993],[-43.99583899599989,-22.936700127999867],[-44.00470943899995,-22.939548434999907],[-44.012440558999856,-22.945733330999957],[-44.01976477799988,-22.959161065999947],[-44.030751105999904,-22.97136809699994],[-44.04938717399992,-22.97429778399996],[-44.0428767569999,-22.958754164999945],[-44.03917395699997,-22.944105726999936],[-44.042307094999956,-22.935804945999877],[-44.056223110999916,-22.939548434999907],[-44.06232662699991,-22.948418877999853],[-44.07974199099988,-22.98723723799996],[-44.08910071499991,-22.99382903399993],[-44.11510169199991,-23.022393487999917],[-44.12791907499994,-23.028903904],[-44.15176347599993,-23.028903904],[-44.15729732999991,-23.031833591999852],[-44.17292232999992,-23.042575778999947],[-44.18004309799997,-23.04509856599988],[-44.186390753999916,-23.04900481599988],[-44.19098873599992,-23.048760674999837],[-44.19273841099994,-23.03915780999995],[-44.19692949099996,-23.03362395599984],[-44.206369594999984,-23.03785572699995],[-44.22008216099991,-23.049411716999884],[-44.23729407499991,-23.04697031000002],[-44.24299068899989,-23.042575778999947],[-44.24046790299988,-23.008965752999927],[-44.24181067599997,-22.99993254999984],[-44.25047766799988,-22.996189059999978],[-44.27155514199998,-22.995293877999984],[-44.28962154899992,-23.010918877999966],[-44.298736131999895,-23.012872002999842],[-44.30260169199991,-22.995293877999984],[-44.31712805899994,-23.00286223799995],[-44.323841925999886,-23.007907809999978],[-44.32994544199988,-23.01523202899989],[-44.35265051999991,-22.999281507999882],[-44.3544815749999,-22.986423434999864],[-44.34154212099989,-22.977471612999835],[-44.31997636599987,-22.97429778399996],[-44.311838344999956,-22.970147393999923],[-44.31163489499991,-22.96111419099999],[-44.31688391799991,-22.946954033999972],[-44.32095292899996,-22.943780205999914],[-44.32762610599991,-22.940118096999967],[-44.32896887899991,-22.934828382999893],[-44.31688391799991,-22.92644622199992],[-44.32591712099991,-22.921644789999945],[-44.335926886999886,-22.91936614399988],[-44.346587693999936,-22.918715101999837],[-44.35781816299993,-22.919610283999916],[-44.35155188699988,-22.93531666499989],[-44.35570227799991,-22.944431247999958],[-44.36432857999992,-22.951429945999863],[-44.37149003799996,-22.961195570999976],[-44.37511145699992,-22.955254815999965],[-44.38219153599988,-22.945977472],[-44.38451087099995,-22.939548434999907],[-44.391753709999875,-22.941989841999927],[-44.39488684799994,-22.94345468499999],[-44.39879309799994,-22.946954033999972],[-44.411366339999944,-22.937432549999897],[-44.4232478509999,-22.947930596999868],[-44.43976803299995,-22.981703382999854],[-44.43565833199992,-22.996758721999864],[-44.457386847999885,-23.009454033999916],[-44.48664303299992,-23.018243096999893],[-44.534047003999945,-23.02532317499994],[-44.60423743399991,-23.05559661299993],[-44.6025284499999,-23.050469658999845],[-44.60057532499985,-23.04111093499999],[-44.59801184799994,-23.03573984199994],[-44.630360480999855,-23.035088799999897],[-44.655100063999924,-23.043145440999837],[-44.67320716099994,-23.059340101999965],[-44.7005102199999,-23.107679945999976],[-44.69847571499988,-23.114515882999825],[-44.69489498599992,-23.12078215899996],[-44.69318600199992,-23.127373955999843],[-44.70246334499995,-23.14462656000002],[-44.712147589999915,-23.174981378],[-44.71410071499989,-23.186618748000015],[-44.70799719999988,-23.214613539999945],[-44.689320441999904,-23.211032809999878],[-44.66576087099986,-23.19524504999984],[-44.64525305899991,-23.186618748000015],[-44.62677975199997,-23.19524504999984],[-44.67320716099994,-23.229587497999887],[-44.68000240799995,-23.24863046699997],[-44.67015540299985,-23.23853932099982],[-44.65599524599992,-23.230401299999897],[-44.64000403599994,-23.227797132999893],[-44.62474524599986,-23.234958591999927],[-44.63988196499986,-23.250420830999957],[-44.64875240799989,-23.262139580999857],[-44.652699347999885,-23.27214934699984],[-44.65135657499991,-23.284763279],[-44.64704342399989,-23.282810153999957],[-44.62816321499985,-23.258233330999857],[-44.61363684799991,-23.243829033999887],[-44.60057532499985,-23.234307549999983],[-44.58336341099994,-23.229180596999882],[-44.55650794199994,-23.227471612999878],[-44.564035610999895,-23.239678643999852],[-44.568470831999974,-23.244398695999863],[-44.576324022999955,-23.24863046699997],[-44.558257615999935,-23.26336028399987],[-44.53302975199997,-23.26702239399991],[-44.510568813999974,-23.273370049999855],[-44.501210089999944,-23.296482028999904],[-44.52379309799991,-23.290704033999845],[-44.54141191299993,-23.303155205999943],[-44.56330318899998,-23.337334893999852],[-44.58381100199991,-23.35320403399996],[-44.60098222599995,-23.350192966999956],[-44.61644446499989,-23.342461846999868],[-44.631581183999884,-23.344821872999916],[-44.64704342399989,-23.33863697699985],[-44.674427863999966,-23.33806731599988],[-44.70425370999996,-23.342461846999868],[-44.72716223899994,-23.351006768999966],[-44.72756913999987,-23.352064710999926],[-44.73289954299992,-23.365817966999938],[-44.74779212099989,-23.37086353999989],[-44.76618404899992,-23.372979424999897],[-44.782378709999875,-23.379001559999907],[-44.79979407499985,-23.371270440999893],[-44.813303188999924,-23.377129815999933],[-44.82697506399995,-23.38543059699999],[-44.844471808999906,-23.385186455999957],[-44.850453253999916,-23.379001559999907],[-44.85399329299992,-23.36980559699984],[-44.85855058499993,-23.36150481599995],[-44.868031378999945,-23.3578427059999],[-44.87743079299989,-23.358168226999837],[-44.88434811099998,-23.35947030999992],[-44.8985082669999,-23.36467864399991],[-44.8919978509999,-23.340997002999895],[-44.91930091099988,-23.348809502999984],[-44.952626105999876,-23.368096612999835],[-44.96422278599991,-23.379001559999907],[-44.96922766799994,-23.381442966999927],[-44.97569739499994,-23.394219658999887],[-44.98102779899992,-23.399346612999977],[-44.98814856699994,-23.40203215899996],[-45.00153561099995,-23.40374114399988],[-45.008371548999975,-23.405531507999868],[-45.02830969999988,-23.416110935],[-45.036244269999905,-23.415622654000014],[-45.043080206999946,-23.405531507999868],[-45.05077063699986,-23.42815520599993],[-45.03966223899994,-23.4386532529999],[-45.0216365229999,-23.446465752999984],[-45.008371548999975,-23.460870049999954],[-45.03473873599998,-23.462090752999966],[-45.05016028599991,-23.473321221999882],[-45.07042395699992,-23.515394790000016],[-45.080189581999946,-23.497653903999932],[-45.091786261999886,-23.491875908999887],[-45.09764563699991,-23.497816664999984],[-45.09024003799993,-23.515394790000016],[-45.10191809799991,-23.51279062299993],[-45.113392706999974,-23.50774504999991],[-45.12458248599998,-23.500664971999853],[-45.13524329299992,-23.491875908999887],[-45.14777584499993,-23.487399997999916],[-45.15217037699989,-23.498793226999965],[-45.150624152999846,-23.51604583099997],[-45.14549719999994,-23.52906666499996],[-45.16421464799989,-23.53313567499984],[-45.183216925999915,-23.525974216999984],[-45.20034745999993,-23.52369557099992],[-45.213734503999945,-23.54273854],[-45.203236456999974,-23.561211846999925],[-45.200672980999876,-23.57203541499993],[-45.21068274599986,-23.57691822699989],[-45.22288977799994,-23.579196872999958],[-45.25194251199991,-23.590590101999936],[-45.26414954299988,-23.58749765399986],[-45.27879798099988,-23.573663018999948],[-45.28954016799992,-23.57008228999989],[-45.30174719999987,-23.5741513],[-45.312408006999895,-23.583754164999917],[-45.321115688999896,-23.593519789999945],[-45.327056443999936,-23.598077080999985],[-45.348378058999884,-23.604424737999935],[-45.36778723899991,-23.61663176899991],[-45.38829505099994,-23.62444426899999],[-45.412993943999936,-23.61785247199984],[-45.41706295499989,-23.629082940999837],[-45.428456183999856,-23.641859632999964],[-45.43293209499993,-23.65260182099989],[-45.4335017569999,-23.664727471999882],[-45.42821204299992,-23.686130466999927],[-45.426665818999965,-23.697035414999903],[-45.423085089999915,-23.710625908999944],[-45.41490637899989,-23.714776299999897],[-45.40575110599991,-23.71591562299993],[-45.39940344999988,-23.72087981599998],[-45.39830481699994,-23.734144789999917],[-45.40611731699994,-23.75611744599992],[-45.402740037999905,-23.7653134089999],[-45.393055792999945,-23.783461195999905],[-45.39484615799992,-23.803155205999943],[-45.40660559799991,-23.82040780999995],[-45.426665818999965,-23.830743096999864],[-45.43887285099995,-23.831719658999845],[-45.448068813999924,-23.829034112999864],[-45.45596269399991,-23.825616143999852],[-45.4645076159999,-23.823907158999926],[-45.478505011999886,-23.82634856599988],[-45.498768683999884,-23.836358330999957],[-45.509266730999855,-23.837579033999972],[-45.52887936099992,-23.829522393999852],[-45.55199133999989,-23.802422783999916],[-45.57408606699994,-23.796644789999945],[-45.6080216139999,-23.803155205999943],[-45.618478969999984,-23.80291106599999],[-45.623036261999914,-23.80038827899989],[-45.6271052729999,-23.79257577899997],[-45.63215084499993,-23.789808851999922],[-45.65135657499988,-23.789157809999978],[-45.65265865799998,-23.789808851999922],[-45.717518683999856,-23.77076588299994],[-45.78294837099992,-23.768731377999913],[-45.7942602199999,-23.765883070999877],[-45.81554114499996,-23.75725676899995],[-45.823882615999935,-23.755059502999966],[-45.86436926999997,-23.75644296699994],[-45.955637173999946,-23.777113539999874],[-45.989003058999934,-23.789808851999922],[-46.00763912699991,-23.80095794099995],[-46.017974412999926,-23.810235283999987],[-46.02692623599995,-23.82854583099987],[-46.03746497299991,-23.829034112999864],[-46.060658331999946,-23.823907158999926],[-46.079741990999935,-23.82781340899984],[-46.09894771999998,-23.837090752999984],[-46.13630123599995,-23.85173919099999],[-46.13780676999991,-23.84954192499991],[-46.139230923999975,-23.844414971999896],[-46.14606686099998,-23.844414971999896],[-46.159535285999965,-23.870538018999937],[-46.17959550699993,-23.890313408999955],[-46.2052302729999,-23.904473565999975],[-46.23542232999991,-23.9126929669999],[-46.23542232999991,-23.920179945999948],[-46.21353105399987,-23.919366143999937],[-46.19737708199992,-23.915704033999898],[-46.18301347599993,-23.907159112999878],[-46.14549719999991,-23.870782158999987],[-46.13190670499995,-23.86492278399986],[-46.11192786399988,-23.86492278399986],[-46.14997311099998,-23.90553150799994],[-46.15973873599992,-23.920179945999948],[-46.16445878799993,-23.935153903999986],[-46.16832434799994,-23.95468515399996],[-46.169545050999936,-23.972344658999972],[-46.16649329299986,-23.981622002999938],[-46.17503821499989,-23.990899346999896],[-46.18663489499991,-23.995375257999864],[-46.196888800999915,-23.993910414999903],[-46.20128333199992,-23.98503997199994],[-46.20750891799986,-23.979913018999937],[-46.22109941299993,-23.981703382999925],[-46.23412024599992,-23.986016533999916],[-46.25304114499994,-23.995863539999945],[-46.26773027299993,-24.010511976999865],[-46.28766842399992,-24.021172783999972],[-46.31737219999994,-24.016371351999894],[-46.309925910999965,-24.001560154000014],[-46.28482011599988,-23.992852471999853],[-46.27635657499994,-23.981622002999938],[-46.27725175699993,-23.967543226999894],[-46.28457597599993,-23.955987237999878],[-46.29295813699988,-23.94605885199988],[-46.296864386999886,-23.937188408999916],[-46.299468553999894,-23.92506275799984],[-46.30699622299994,-23.915297132999896],[-46.31883704299992,-23.90886809699988],[-46.34618079299988,-23.904961846999964],[-46.357777472999885,-23.900811455999943],[-46.36375891799992,-23.89421965899987],[-46.358306443999965,-23.886000257999967],[-46.358306443999965,-23.878594658999887],[-46.3854060539999,-23.873467705999957],[-46.38927161399991,-23.886407158999972],[-46.38735917899992,-23.903985284],[-46.39679928299994,-23.9126929669999],[-46.40929114499997,-23.91594817499994],[-46.41038977799991,-23.923272393999852],[-46.40802975199994,-23.93059661299995],[-46.409820115999935,-23.93385182099989],[-46.43268795499995,-23.931735934999892],[-46.453928188999924,-23.92644622199991],[-46.44957434799994,-23.938409112999846],[-46.44041907499988,-23.944919528999932],[-46.43130449099988,-23.948174737999977],[-46.42723548099991,-23.95086028399996],[-46.42560787699989,-23.956719658999983],[-46.41698157499988,-23.976169528999904],[-46.412953253999916,-23.981622002999938],[-46.40192623599998,-23.98414478999994],[-46.388295050999915,-23.98398202899999],[-46.37682044199988,-23.985121351999922],[-46.371937628999916,-23.99212004999991],[-46.37205969999988,-24.015801690999922],[-46.37604732999995,-24.024509372999916],[-46.38630123599998,-24.030043226999936],[-46.38809160099987,-24.021579684999978],[-46.39175370999993,-24.016208591999927],[-46.39781653599994,-24.012465101999908],[-46.40672766799986,-24.008965752999913],[-46.46898352799985,-24.03997161299985],[-46.59341386599996,-24.089532158999873],[-46.743072068999936,-24.176853122999955],[-46.85496985599994,-24.228448174999908],[-46.93663489499994,-24.273370049999926],[-46.966460740999935,-24.299086195999873],[-46.98892167899993,-24.33114999799986],[-46.9999080069999,-24.366794528999904],[-47.00633704299989,-24.37200286299999],[-47.00999915299985,-24.376885674999954],[-46.99950110599988,-24.400567315999893],[-46.99950110599988,-24.409844658999926],[-47.01537024599992,-24.422946873],[-47.03502356699997,-24.431084893999838],[-47.04979407499994,-24.427829684999963],[-47.05101477799985,-24.406182549999983],[-47.072092251999976,-24.448500257999896],[-47.08141028599994,-24.453871351999947],[-47.096913214999944,-24.459405205999957],[-47.12271074099996,-24.483330987999935],[-47.136341925999915,-24.488702080999985],[-47.18138587099989,-24.53337981599995],[-47.44204667899996,-24.68043385199992],[-47.45482337099992,-24.676690362999892],[-47.46906490799992,-24.680922132999907],[-47.49669348899991,-24.693536065999893],[-47.51846269399988,-24.688083591999856],[-47.5313207669999,-24.688164971999836],[-47.54076087099992,-24.70338307099982],[-47.55992591099988,-24.712660414999956],[-47.584706183999856,-24.73162200299997],[-47.63385982999998,-24.755629164999917],[-47.82555091099991,-24.89413827899996],[-47.84178626199986,-24.90984465899993],[-47.8666072259999,-24.940606377999913],[-47.87340247299994,-24.94540781],[-47.87987219999994,-24.948663018999852],[-47.886301235999944,-24.95305754999984],[-47.89329993399994,-24.96111419099995],[-47.93374589799987,-25.03346119599983],[-47.96056067599997,-25.049899997999916],[-48.00999915299993,-25.044203382999925],[-48.00169837099995,-25.027927341999984],[-47.98810787699989,-25.025811455999985],[-47.973500128999966,-25.027601820999962],[-47.962147589999915,-25.023125908999916],[-47.96117102799994,-25.013116143999838],[-47.972727016999954,-25.00937265399999],[-48.01691646999993,-25.010837497999944],[-48.0235896479999,-25.01506926899988],[-48.02440344999991,-25.022393487999977],[-48.0235896479999,-25.033623955999886],[-48.027007615999906,-25.04517994599982],[-48.03490149599986,-25.048760674999883],[-48.044178839999915,-25.045505467000012],[-48.051584438999896,-25.03679778399986],[-48.05162512899989,-25.05282968499993],[-48.03246008999991,-25.063246351999837],[-48.00645911399994,-25.06910572699988],[-47.98607337099986,-25.07097747199994],[-47.96300208199992,-25.07822030999995],[-47.94969641799988,-25.080010674999855],[-47.938303188999924,-25.074639580999985],[-47.927723761999886,-25.06560637799988],[-47.91535396999993,-25.059502862999977],[-47.901682094999984,-25.056573174999965],[-47.88707434799997,-25.057305597],[-47.92198645699989,-25.15862395599994],[-47.9517716139999,-25.20134856599996],[-48.003163214999915,-25.21428801899988],[-48.02000891799992,-25.226332289999885],[-48.068348761999914,-25.280043226999865],[-48.07628333199989,-25.293226820999816],[-48.08210201699992,-25.30730559699985],[-48.08336341099994,-25.310316664999945],[-48.09154212099986,-25.325290622999887],[-48.16828365799989,-25.369235935],[-48.17345130099991,-25.38103606599998],[-48.19652258999986,-25.416924737999963],[-48.209055141999954,-25.45761484199987],[-48.225087042999945,-25.459730726999876],[-48.24160722599993,-25.448174737999935],[-48.250152147999955,-25.42782968499986],[-48.247303839999915,-25.41090260199988],[-48.22288977799985,-25.352146091999956],[-48.22199459499995,-25.343357028999904],[-48.22215735599994,-25.339125257999967],[-48.21922766799992,-25.334567966999927],[-48.20921790299991,-25.324151299999855],[-48.20152747299991,-25.318291925],[-48.181263800999886,-25.30681731599986],[-48.137115037999905,-25.289646092],[-48.12730872299997,-25.279961846999882],[-48.14028886599988,-25.269626559999963],[-48.15257727799994,-25.281996351999908],[-48.17422441299993,-25.290622653999986],[-48.198719855999855,-25.29534270599991],[-48.21914628799993,-25.296807549999883],[-48.22960364499991,-25.300388278999943],[-48.24254309799991,-25.315362237999977],[-48.250152147999955,-25.31804778399996],[-48.259429490999906,-25.31365325299988],[-48.274322068999965,-25.296563408999845],[-48.28433183499993,-25.289971612999864],[-48.28307044199994,-25.306410415000027],[-48.28368079299988,-25.31601327899993],[-48.286284959999904,-25.322849216999856],[-48.29743404899992,-25.341241143999895],[-48.306752081999946,-25.351006768999923],[-48.318714972999885,-25.35767994599989],[-48.332753058999934,-25.358330987999846],[-48.31908118399991,-25.324151299999855],[-48.32530676999994,-25.324151299999855],[-48.33372962099991,-25.329685153999876],[-48.335519985999895,-25.31861744599992],[-48.331369594999956,-25.27019622199992],[-48.32575436099995,-25.243829033999845],[-48.32530676999994,-25.228610934999864],[-48.33800208199992,-25.23674895599997],[-48.35122636599996,-25.250664971999953],[-48.360991990999906,-25.26376718499992],[-48.363148566999904,-25.269626559999963],[-48.372629360999895,-25.271579685],[-48.372670050999886,-25.276136976999865],[-48.36628170499998,-25.283868096999967],[-48.364084438999974,-25.283461195999962],[-48.359364386999886,-25.28557708099997],[-48.354725714999944,-25.289239190999837],[-48.35260982999995,-25.29338958099987],[-48.35374915299988,-25.296970309999935],[-48.35887610599988,-25.296807549999883],[-48.360096808999906,-25.30022551899998],[-48.36742102799991,-25.30478281000002],[-48.383697068999936,-25.298109632999882],[-48.40721594999991,-25.283868096999967],[-48.4141332669999,-25.27353280999995],[-48.42393958199992,-25.25221119599989],[-48.43455969999988,-25.242282809999974],[-48.43455969999988,-25.26279062299986],[-48.44200598899994,-25.26279062299986],[-48.44505774599995,-25.256605726999965],[-48.44798743399988,-25.253676039999945],[-48.45128333199992,-25.251722915],[-48.45567786399988,-25.24846770599987],[-48.45197506399995,-25.2647437479999],[-48.42833411399991,-25.324151299999855],[-48.446603969999984,-25.324476820999877],[-48.4789119129999,-25.331638278999918],[-48.49657141799992,-25.331638278999918],[-48.49657141799992,-25.338474217000012],[-48.46263587099989,-25.342868747999916],[-48.44566809799991,-25.347426039999956],[-48.43455969999988,-25.358330987999846],[-48.45221920499998,-25.36825937299993],[-48.45742753799988,-25.379652601999908],[-48.45128333199992,-25.38567473799999],[-48.43455969999988,-25.37948984199994],[-48.430287238999966,-25.38941822699985],[-48.41685950399997,-25.404392184999963],[-48.414051886999914,-25.410088799999865],[-48.41783606699994,-25.42831796699994],[-48.42690995999993,-25.43230559699991],[-48.43814042899993,-25.43124765399996],[-48.448150193999936,-25.434014580999914],[-48.454253709999904,-25.44589609199997],[-48.45616614499997,-25.459567966999913],[-48.460194464999944,-25.470879815999893],[-48.472727016999926,-25.475681247999884],[-48.48814856699997,-25.473890882999896],[-48.49791419199991,-25.468682549999983],[-48.51707923099988,-25.447035415],[-48.52684485599991,-25.453220309999963],[-48.53742428299995,-25.45452239399988],[-48.548085089999915,-25.452243747999987],[-48.5580134759999,-25.447035415],[-48.56273352799991,-25.459567966999913],[-48.575062628999945,-25.462009372999944],[-48.62364661399991,-25.449639581],[-48.63536536399991,-25.444594007999882],[-48.68382727799988,-25.412774346999935],[-48.69139563699994,-25.40569426899988],[-48.73094641799989,-25.359633070999845],[-48.74303137899989,-25.352146091999956],[-48.74022376199994,-25.367445570999916],[-48.72313391799989,-25.406670830999857],[-48.71882076699998,-25.422621351999865],[-48.715687628999916,-25.42782968499986],[-48.710113084999904,-25.433038018999934],[-48.69896399599988,-25.438164971999868],[-48.69522050699995,-25.440850518999852],[-48.68358313699994,-25.462660414999988],[-48.68871008999986,-25.47332122199984],[-48.70555579299986,-25.474379164999885],[-48.729359503999945,-25.46819426899999],[-48.71084550699993,-25.49635182099989],[-48.68333899599989,-25.49871184699994],[-48.65143795499998,-25.492771091999927],[-48.62010657499994,-25.496189059999935],[-48.6223852199999,-25.503106377999842],[-48.62413489499991,-25.506036065999865],[-48.62694251199986,-25.509698174999908],[-48.635650193999936,-25.50302499799986],[-48.64305579299992,-25.502373955999985],[-48.649281378999966,-25.50701262799984],[-48.654286261999914,-25.516534112999835],[-48.6422419909999,-25.521742445999834],[-48.62828528599994,-25.524509372999887],[-48.61538652299993,-25.529961846999907],[-48.60643469999991,-25.54387786299999],[-48.59544837099995,-25.52776458099993],[-48.57819576699992,-25.526055596999925],[-48.558664516999954,-25.5272763],[-48.524037238999966,-25.51482512799991],[-48.50503495999996,-25.52320728999989],[-48.48607337099995,-25.53590260199985],[-48.46930904899992,-25.54387786299999],[-48.479359503999916,-25.555108330999897],[-48.48289954299989,-25.55820077899989],[-48.476144985999944,-25.5507138],[-48.490345831999946,-25.564060154000018],[-48.49693762899994,-25.568536065999893],[-48.50340735599994,-25.571872653999918],[-48.48249264199998,-25.57984791499996],[-48.47134355399996,-25.572930596999882],[-48.46434485599988,-25.559991143999966],[-48.45567786399988,-25.5507138],[-48.44041907499991,-25.550062757999953],[-48.42406165299991,-25.554294528999886],[-48.4063207669999,-25.555108330999897],[-48.38670813699994,-25.54387786299999],[-48.36119544199993,-25.57097747199984],[-48.38890540299994,-25.595472914999945],[-48.432728644999905,-25.62249114399991],[-48.51756751199986,-25.770196221999925],[-48.51707923099988,-25.797133070999887],[-48.53502356699991,-25.83945077899999],[-48.54100501199994,-25.845472914999817],[-48.558501756999895,-25.840997002999924],[-48.57241777299987,-25.82154713299994],[-48.586008266999926,-25.81755950299987],[-48.58067786399996,-25.801853122999898],[-48.57852128799996,-25.797133070999887],[-48.591786261999886,-25.799004815999865],[-48.603505011999886,-25.802178643999923],[-48.61314856699993,-25.80803801899995],[-48.62010657499994,-25.81755950299987],[-48.60826575399997,-25.818617445999916],[-48.59935462099995,-25.822849216999927],[-48.592193162999905,-25.829278252999856],[-48.586008266999926,-25.838067315999908],[-48.57990475199995,-25.85116952899989],[-48.58324133999986,-25.85466887799997],[-48.651234503999916,-25.844496351999837],[-48.74303137899989,-25.85173919099995],[-48.75304114499996,-25.855075778999975],[-48.76268469999994,-25.85979583099997],[-48.769439256999874,-25.867364190999936],[-48.77033443899995,-25.879652601999894],[-48.76577714799993,-25.88665129999997],[-48.75865637899997,-25.883884372999916],[-48.75047766799986,-25.877211195999863],[-48.74303137899989,-25.87281666499996],[-48.57852128799996,-25.87281666499996],[-48.571156378999945,-25.869073174999937],[-48.56700598899991,-25.864434502999913],[-48.56346594999994,-25.8658179669999],[-48.5580134759999,-25.879652601999894],[-48.55650794199994,-25.891208592],[-48.558583136999886,-25.901788018999966],[-48.57852128799996,-25.96160247199984],[-48.586008266999926,-25.995782158999916],[-48.60456295499991,-26.023370049999837],[-48.612660285999965,-26.040622654000018],[-48.60985266799992,-26.054375908999944],[-48.60008704299986,-26.071221612999864],[-48.58263098899991,-26.157159112999878],[-48.582915818999936,-26.172621351999894],[-48.59251868399991,-26.183851820999976],[-48.61668860599991,-26.188164971999896],[-48.6349177729999,-26.194512627999927],[-48.6461482409999,-26.209079684999864],[-48.65542558499996,-26.22527434699991],[-48.667876756999874,-26.236016534],[-48.687163865999906,-26.237725518999834],[-48.7122289699999,-26.233575127999966],[-48.73379472599993,-26.22470468499993],[-48.74303137899989,-26.212090752999956],[-48.74522864499996,-26.189141533999873],[-48.75064042899993,-26.173597914999874],[-48.76414954299989,-26.147149346999978],[-48.76903235599988,-26.12981536299999],[-48.77033443899995,-26.109307549999855],[-48.77253170499995,-26.10068124799993],[-48.78184973899991,-26.090997002999885],[-48.78864498599992,-26.063409112999963],[-48.79645748599992,-26.06845468499999],[-48.79800370999996,-26.088067315999865],[-48.784006313999896,-26.113051039999974],[-48.79051673099991,-26.124769789999874],[-48.791127081999946,-26.13534921699999],[-48.78819739499994,-26.145114841999956],[-48.784006313999896,-26.153985283999987],[-48.78001868399991,-26.15691497199984],[-48.77330481699988,-26.159844658999855],[-48.76695716099994,-26.163995049999983],[-48.76414954299989,-26.171075127999853],[-48.764393683999934,-26.182061456],[-48.76349850199995,-26.187188409],[-48.76065019399991,-26.191582940999908],[-48.75609290299988,-26.203545830999843],[-48.76414954299989,-26.22820403399993],[-48.76065019399991,-26.23967864399988],[-48.756214972999935,-26.24944426899999],[-48.759755011999914,-26.257094007999854],[-48.76793372299991,-26.2619768209999],[-48.77774003799996,-26.263278904],[-48.75731360599988,-26.29119231599995],[-48.770375128999945,-26.289727471999896],[-48.782093878999945,-26.29094817499991],[-48.79161536399994,-26.295586846999925],[-48.7982478509999,-26.304864190999893],[-48.75731360599988,-26.311455987999945],[-48.73770097599993,-26.319105726999894],[-48.729359503999945,-26.335219007999868],[-48.72179114499991,-26.34482187299993],[-48.65977942599994,-26.37070077899986],[-48.65078691299993,-26.37656015399999],[-48.64362545499989,-26.384860934999875],[-48.64061438699988,-26.396742445999834],[-48.639556443999936,-26.40862395599997],[-48.635853644999884,-26.418552341999884],[-48.62857011599988,-26.425225518999923],[-48.61668860599991,-26.42782968500002],[-48.60789954299986,-26.436700127999885],[-48.61424719999988,-26.456801039999917],[-48.66445878799996,-26.556084893999937],[-48.675445115999935,-26.594659112999835],[-48.68333899599989,-26.662367445999863],[-48.68219967399994,-26.719170831],[-48.678944464999915,-26.731052341999956],[-48.671131964999915,-26.739434503],[-48.62694251199986,-26.770928643999838],[-48.61489824099993,-26.77044036299985],[-48.59215247299991,-26.763929945999944],[-48.58226477799988,-26.76751067499991],[-48.57795162699989,-26.776543877999842],[-48.57921301999991,-26.78655364399999],[-48.58372962099994,-26.794854424999897],[-48.597727016999926,-26.804457289999874],[-48.60948645699989,-26.819431247999987],[-48.62047278599993,-26.83717213299998],[-48.62694251199986,-26.85230885199998],[-48.62877356699994,-26.864841403999986],[-48.62694251199986,-26.897067966999927],[-48.62482662699995,-26.902764581],[-48.61538652299993,-26.91204192499997],[-48.61327063699991,-26.917738539999856],[-48.61436926999997,-26.92392343499992],[-48.619048631999874,-26.93303801899999],[-48.62010657499994,-26.937920830999886],[-48.62132727799985,-26.974379164999945],[-48.62010657499994,-26.98259856599985],[-48.611195441999904,-26.993910414999917],[-48.60195878799993,-26.99773528399993],[-48.594838019999884,-26.997328382999925],[-48.592193162999905,-26.996270440999965],[-48.57518469999994,-27.01620859199987],[-48.57713782499988,-27.03297291499989],[-48.58653723899991,-27.04957447699985],[-48.59630286399994,-27.08611419099989],[-48.60374915299991,-27.09441497199995],[-48.60716712099991,-27.10442473799995],[-48.588042772999955,-27.15064869599986],[-48.57949785099993,-27.15846119599993],[-48.56517493399994,-27.161390882999953],[-48.55138098899994,-27.158135674999908],[-48.54474850199997,-27.150160414999874],[-48.54059811099992,-27.14006926899999],[-48.53441321499986,-27.130466404],[-48.51622473899996,-27.120782158999873],[-48.50690670499991,-27.13250090899986],[-48.496815558999884,-27.14910247199991],[-48.476144985999944,-27.153985283999887],[-48.483876105999855,-27.16594817499991],[-48.48888098899991,-27.170668226999922],[-48.49657141799992,-27.175062757999896],[-48.48696855399992,-27.198500257999882],[-48.48591061099998,-27.210707289999856],[-48.492909308999884,-27.215997002999842],[-48.50536048099988,-27.21868254999991],[-48.51598059799994,-27.22234465899996],[-48.52456620999993,-27.221286717],[-48.531361456999974,-27.20916106599999],[-48.51622473899996,-27.206312757999967],[-48.51260331899991,-27.198174737999864],[-48.518299933999884,-27.18873463299994],[-48.531361456999974,-27.181898695999834],[-48.541859503999945,-27.182386976999823],[-48.56037350199995,-27.192966403999947],[-48.56891842399997,-27.19548919099988],[-48.57335364499994,-27.199639580999914],[-48.60643469999991,-27.223402601999908],[-48.61440995999996,-27.232028903999918],[-48.6184789699999,-27.238457940999922],[-48.619984503999945,-27.246677341999927],[-48.62010657499994,-27.26067473799989],[-48.612904425999915,-27.29949309699991],[-48.60985266799992,-27.30535247199994],[-48.60659745999995,-27.306329033999912],[-48.57233639199998,-27.312188408999873],[-48.56094316299993,-27.324965101999823],[-48.55483964799993,-27.342461846999868],[-48.551869269999905,-27.38730234199997],[-48.562611456999946,-27.372816664999846],[-48.56554114499996,-27.367445570999976],[-48.571441209999904,-27.376641533999855],[-48.575510219999956,-27.384942315999922],[-48.577788865999935,-27.393812757999882],[-48.57852128799996,-27.404717705999943],[-48.58193925699996,-27.41668059699998],[-48.5904841789999,-27.421644789999846],[-48.60179602799988,-27.42400481599989],[-48.61327063699991,-27.4283179669999],[-48.62612870999993,-27.436781507999925],[-48.63695227799994,-27.446954033999887],[-48.64460201699995,-27.460625908999916],[-48.64745032499991,-27.47958749799993],[-48.60985266799992,-27.55868905999992],[-48.59015865799995,-27.563653252999966],[-48.57909094999994,-27.576348565999936],[-48.57750403599991,-27.594008070999948],[-48.586008266999926,-27.6132138],[-48.59455318899995,-27.60116952899997],[-48.61424719999988,-27.612399997999987],[-48.63512122299994,-27.63258228999983],[-48.64745032499991,-27.647393487999977],[-48.63805091099988,-27.66130950299997],[-48.631703253999945,-27.67978281],[-48.628081834999904,-27.700127862999892],[-48.62694251199986,-27.719659112999878],[-48.623890753999945,-27.725274346999967],[-48.610096808999856,-27.741143487999988],[-48.60643469999991,-27.750420830999857],[-48.61196855399993,-27.752699476999837],[-48.6224666009999,-27.759942315999936],[-48.62922115799992,-27.767510674999897],[-48.623524542999945,-27.77092864399991],[-48.618031378999916,-27.778008721999953],[-48.58193925699996,-27.812758070999834],[-48.57233639199998,-27.82545338299998],[-48.57408606699988,-27.833428643999852],[-48.58112545499995,-27.83684661299995],[-48.588693813999896,-27.83904387799994],[-48.592193162999905,-27.842950127999927],[-48.58824622299991,-27.853610934999875],[-48.57949785099993,-27.856703382999953],[-48.57042395699992,-27.857517184999963],[-48.56554114499996,-27.860284112999835],[-48.56969153599991,-27.878024998],[-48.59935462099995,-27.916761976999865],[-48.60643469999991,-27.932305596999864],[-48.61656653599994,-27.990817967],[-48.61327063699991,-28.01116301899991],[-48.6095271479999,-28.01702239399995],[-48.604807094999956,-28.02157968499999],[-48.600738084999904,-28.028415622999916],[-48.59898841099991,-28.04159921699987],[-48.602284308999856,-28.05095794099999],[-48.6095271479999,-28.057712498000015],[-48.616810675999886,-28.062920830999843],[-48.62010657499994,-28.068536065999922],[-48.621693488999966,-28.076918226999894],[-48.63316809799991,-28.10670338299998],[-48.64061438699988,-28.147637627999927],[-48.65371660099996,-28.19019947699988],[-48.65526282499991,-28.212823174999937],[-48.635894334999875,-28.23015715899993],[-48.65172278599991,-28.247165622999987],[-48.68838456899993,-28.278008721999953],[-48.6915583979999,-28.287530205999857],[-48.69489498599992,-28.312269789999913],[-48.695139126999976,-28.33603281],[-48.69640051999997,-28.342054945999934],[-48.724476691999875,-28.37135182099986],[-48.73106848899994,-28.384454034],[-48.74303137899989,-28.422051690999922],[-48.75739498599995,-28.444594007999896],[-48.76305091099994,-28.4569638],[-48.76065019399991,-28.46705494599982],[-48.756662563999924,-28.477634372999944],[-48.76121985599988,-28.4873999979999],[-48.770619269999905,-28.49195728999993],[-48.78087317599991,-28.487481377999885],[-48.79405676999997,-28.470798434999935],[-48.80345618399991,-28.452325127999913],[-48.807525193999965,-28.43173593499996],[-48.80504309799994,-28.40837981599998],[-48.79466712099995,-28.39267343499992],[-48.790882941999904,-28.38152434699998],[-48.7948298819999,-28.370538018999852],[-48.82213294199988,-28.346286716999938],[-48.83527584499993,-28.337660414999856],[-48.85057532499991,-28.323663018999895],[-48.86461341099994,-28.320896091999927],[-48.87401282499988,-28.346286716999938],[-48.87267005099988,-28.358656507999896],[-48.86229407499988,-28.38046640399993],[-48.85973059799997,-28.391289971999935],[-48.861927863999966,-28.400567315999893],[-48.8717341789999,-28.40976327899996],[-48.87401282499988,-28.418877862999864],[-48.869252081999974,-28.426690362999935],[-48.85850989499997,-28.42734140399999],[-48.84683183499996,-28.42603932099989],[-48.83922278599994,-28.428887627999927],[-48.83844967399991,-28.437188408999916],[-48.84300696499994,-28.44573333099993],[-48.84911048099993,-28.454522393999905],[-48.852894660999965,-28.463636976999975],[-48.85456295499998,-28.471286716999924],[-48.8548884759999,-28.47527434699999],[-48.85179602799991,-28.479261976999965],[-48.84300696499994,-28.487481377999885],[-48.80846106699994,-28.504571221999925],[-48.79869544199991,-28.514336846999868],[-48.78917395699992,-28.521416924999922],[-48.77774003799996,-28.525079033999972],[-48.76927649599992,-28.51767343499989],[-48.76089433499995,-28.512790623],[-48.74986731699991,-28.511407158999926],[-48.75609290299988,-28.528415622999987],[-48.765288865999935,-28.543633721999967],[-48.79596920499992,-28.57952239399988],[-48.80711829299985,-28.6001929669999],[-48.815337693999936,-28.610446873],[-48.82591712099992,-28.615004164999874],[-48.8705134759999,-28.620049737999988],[-48.88410396999993,-28.62322356599995],[-48.91246497299996,-28.63787200299997],[-48.94058183499996,-28.645440362999835],[-48.95539303299995,-28.655694268999934],[-48.97638912699997,-28.675225518999838],[-49.057036912999905,-28.718519789999903],[-49.34276282499991,-28.923516533999873],[-49.552316860999895,-29.127373955999982],[-49.7135310539999,-29.32447682099996],[-49.81065833199992,-29.443129164999828],[-49.86025956899993,-29.52857838299985],[-49.93358313699986,-29.634372653999947],[-49.99742591099987,-29.76458098799983],[-50.045318162999905,-29.81454843499995],[-50.20689856699991,-30.201104425],[-50.25137285099993,-30.322849216999927],[-50.315663214999944,-30.461521091999927],[-50.58763587099989,-30.85100676899999],[-50.59333248599998,-30.87151458099994],[-50.59951738199996,-30.881442966999956],[-50.72142493399994,-31.044528903999915],[-50.82843990799998,-31.142673434999907],[-50.88365637899988,-31.21990325299984],[-51.034575975999864,-31.37802499800001],[-51.15184485599994,-31.481540622999884],[-51.32396399599989,-31.603936455999943],[-51.56334387899988,-31.777439059999907],[-51.86351477799993,-31.931735934999974],[-51.889271613999966,-31.953789971999893],[-52.0326228509999,-32.10898202899996],[-52.068592902999875,-32.162367445999834],[-52.077381964999944,-32.167250257999896],[-52.08446204299989,-32.1469052059999],[-52.076893683999856,-32.123793226999936],[-52.05313066299993,-32.08782317499997],[-52.04670162699995,-32.07431406],[-52.03892981699993,-32.0518531229999],[-52.035755988999966,-32.02792734200001],[-52.04287675699993,-32.009535414999974],[-52.05663001199994,-31.98837655999989],[-52.04503333199992,-31.976820570999948],[-52.02472896999993,-31.966973565999847],[-52.01219641799992,-31.950616143999838],[-52.02586829299986,-31.919691664999885],[-52.08796139199998,-31.858575127999924],[-52.08726966099994,-31.827813408999944],[-52.04845130099994,-31.808282158999873],[-52.00182044199991,-31.821547132999896],[-51.92275956899991,-31.868747653999872],[-51.87999426999991,-31.871270440999897],[-51.83633378799993,-31.854913018999877],[-51.81371008999986,-31.828383070999905],[-51.83409583199994,-31.80046965899996],[-51.786040818999965,-31.79208749799992],[-51.743723110999944,-31.794854424999965],[-51.70449785099993,-31.79273853999996],[-51.6661677729999,-31.769707940999893],[-51.560210740999935,-31.667575779000018],[-51.54539954299986,-31.63974374799987],[-51.51256262899994,-31.615980726999968],[-51.50511633999989,-31.598077080999914],[-51.49868730399996,-31.574883721999882],[-51.48412024599992,-31.58294036299991],[-51.45726477799985,-31.615492445999976],[-51.447621222999885,-31.61272551899992],[-51.45099850199989,-31.595310153999858],[-51.46349036399991,-31.557224216999867],[-51.45909583199992,-31.53932057099982],[-51.44835364499991,-31.51685963299991],[-51.43496660099989,-31.49651458099991],[-51.4225154289999,-31.48512135199995],[-51.41348222599987,-31.517836195999973],[-51.377797003999945,-31.526950778999872],[-51.334543423999946,-31.51921965899996],[-51.30304928299992,-31.502211195999887],[-51.287831183999856,-31.49000416499983],[-51.256703253999945,-31.472588799999937],[-51.244984503999966,-31.464043877999842],[-51.2102758449999,-31.416192315999904],[-51.1795955069999,-31.358982028999932],[-51.15855872299997,-31.28639088299985],[-51.15477454299986,-31.212090752999927],[-51.17613684799991,-31.14934661299986],[-51.170155402999875,-31.135349216999895],[-51.162831183999884,-31.092950127999913],[-51.16185462099992,-31.07773202899993],[-51.15339107999998,-31.06715260199996],[-51.133900519999884,-31.069594007999825],[-51.09727942599994,-31.080987237999963],[-51.07799231699991,-31.077894789999885],[-51.0478409499999,-31.06406015399999],[-51.03278561099998,-31.06064218499989],[-51.013986782999915,-31.062758070999887],[-51.00641842399989,-31.07048919099991],[-51.00576738199993,-31.124200127999885],[-51.00316321499994,-31.13290780999995],[-50.99425208199989,-31.136325778999876],[-50.98350989499988,-31.135023695999877],[-50.97594153599994,-31.13095468500001],[-50.97150631399995,-31.123304945999894],[-50.9700414699999,-31.111748955999957],[-50.96467037699995,-31.10125090899997],[-50.95287024599988,-31.095472914999917],[-50.941070115999906,-31.091892184999864],[-50.93590247299991,-31.087823174999897],[-50.93993079299989,-31.07642994599993],[-50.94871985599993,-31.07480234199991],[-50.95958411399991,-31.076267184999878],[-50.9700414699999,-31.07431405999992],[-50.98766028599994,-31.045586846999964],[-50.97744706899988,-31.008965752999853],[-50.960113084999904,-30.96697356599995],[-50.956410285999965,-30.922784112999892],[-50.971831834999904,-30.90406666499983],[-50.97842363199996,-30.89332447699982],[-50.97374426999994,-30.888604424999986],[-50.96304277299993,-30.889825128],[-50.95006262899991,-30.89495208099984],[-50.93932044199991,-30.896091403999876],[-50.91388912699989,-30.89332447699982],[-50.89541581899988,-30.88583749799993],[-50.819569464999915,-30.831312757999868],[-50.779693162999955,-30.823825778999975],[-50.760121222999885,-30.815118096999907],[-50.74388587099994,-30.803887628],[-50.73106848899991,-30.792413018999866],[-50.69261633999991,-30.72649505],[-50.67943274599986,-30.64169687299993],[-50.689523891999926,-30.464043877999938],[-50.69469153599993,-30.446058851999908],[-50.71336829299992,-30.408379815999933],[-50.721099412999905,-30.379082940999908],[-50.726633266999926,-30.37037525799984],[-50.72565670499995,-30.363051039999917],[-50.7099503249999,-30.35418059699988],[-50.69717363199995,-30.350762627999952],[-50.68993079299992,-30.353204033999987],[-50.67585201699998,-30.36785247199999],[-50.64513098899991,-30.392185153999886],[-50.642648891999954,-30.398370049999937],[-50.64631100199992,-30.404554945999834],[-50.65184485599994,-30.41139088299994],[-50.65469316299988,-30.419366143999895],[-50.64989173099988,-30.43857187299986],[-50.63805091099994,-30.457207940999936],[-50.622629360999895,-30.473728122999912],[-50.60753333199989,-30.48512135199988],[-50.572173631999874,-30.46111419099992],[-50.565012173999946,-30.450127862999874],[-50.56672115799994,-30.43425872199985],[-50.57282467399992,-30.409437757999896],[-50.56867428299989,-30.39763762799991],[-50.55516516799992,-30.378838799999965],[-50.537261522999955,-30.32040780999998],[-50.53677324099988,-30.2940406229999],[-50.53986568899995,-30.267510674999922],[-50.54552161399993,-30.25115325299991],[-50.58336341099987,-30.232028903999947],[-50.587717251999976,-30.22682057099986],[-50.59837805899991,-30.202406507999893],[-50.603871222999935,-30.193780205999897],[-50.61481686099992,-30.18621184699994],[-50.62559973899991,-30.1833635399999],[-50.63662675699996,-30.184991143999927],[-50.64854895699992,-30.190362237999892],[-50.672474738999966,-30.217054945999905],[-50.67585201699998,-30.21770598799995],[-50.67829342399992,-30.22820403399984],[-50.676177537999905,-30.23162200299994],[-50.669585740999935,-30.23398202899999],[-50.65843665299991,-30.241469007999868],[-50.65343176999997,-30.25156015400002],[-50.65526282499985,-30.261651299999897],[-50.662180141999954,-30.275485934999892],[-50.671986456999974,-30.288995049999865],[-50.69517981699991,-30.294366143999923],[-50.761057094999956,-30.291436455999897],[-50.779123501999884,-30.293226820999887],[-50.793527798999946,-30.302504164999842],[-50.79938717399988,-30.323500257999886],[-50.85716712099991,-30.317071221999953],[-50.87441972599993,-30.320082289999874],[-50.89753170499997,-30.310479424999897],[-50.91299394399991,-30.316664320999948],[-50.92292232999991,-30.33318450299993],[-50.92906653599988,-30.35418059699988],[-50.932850714999915,-30.38062916499994],[-50.93028723899991,-30.39861419099998],[-50.91539466099994,-30.436211846999896],[-50.93639075399989,-30.43157317499995],[-50.98436438699988,-30.395196221999978],[-51.003895636999886,-30.388116143999838],[-51.02147376199991,-30.383721612999846],[-51.03408769399988,-30.37566497199991],[-51.03892981699997,-30.357598565999893],[-51.04027258999986,-30.343519789999945],[-51.03868567599991,-30.338962497999905],[-51.03278561099998,-30.326918226999894],[-51.02627519399988,-30.317803643999984],[-51.01939856699988,-30.31129322699991],[-51.013905402999846,-30.304945570999877],[-51.011626756999874,-30.29615650799991],[-51.01480058499993,-30.278578382999882],[-51.023101365999935,-30.263767184999903],[-51.03416907499988,-30.257419528999876],[-51.04576575399997,-30.265394789999917],[-51.05260169199991,-30.265394789999917],[-51.05760657499994,-30.241875908999873],[-51.07945716099987,-30.237888278999975],[-51.10338294199994,-30.243259372999855],[-51.11465410099993,-30.24814218499992],[-51.12254798099991,-30.256036065999893],[-51.1407771479999,-30.247491143999966],[-51.17613684799991,-30.224541924999883],[-51.171457485999895,-30.209405205999886],[-51.180490688999896,-30.200372002999966],[-51.2102758449999,-30.190362237999892],[-51.219227667999945,-30.188897393999838],[-51.22687740799995,-30.190199476999837],[-51.23302161399994,-30.189873955999985],[-51.23753821499988,-30.183526299999965],[-51.23558508999985,-30.178155205999914],[-51.221262173999946,-30.164971612999963],[-51.21711178299992,-30.15634530999995],[-51.22036699099988,-30.136407158999972],[-51.231597459999875,-30.12476978999987],[-51.244048631999895,-30.1168759089999],[-51.25121008999994,-30.107842705999968],[-51.25047766799992,-30.091566664999856],[-51.23888098899988,-30.05852629999998],[-51.23753821499988,-30.039646091999956],[-51.25934811099995,-30.04680754999991],[-51.26280676999994,-30.03297291499992],[-51.26207434799991,-30.013767184999864],[-51.27171790299988,-30.00481536299992],[-51.28351803299995,-30.007419529000014],[-51.285267706999946,-30.01262786299983],[-51.28380286399988,-30.02076588299994],[-51.285959438999896,-30.032159112999906],[-51.3036189439999,-30.063409112999878],[-51.30646725199995,-30.07024504999998],[-51.30426998599995,-30.076267184999974],[-51.29930579299992,-30.078871351999894],[-51.29434160099995,-30.080743096999868],[-51.29214433499995,-30.083916924999922],[-51.293324347999885,-30.090101820999973],[-51.298451300999915,-30.099704684999875],[-51.299631313999924,-30.104668877999913],[-51.300038214999944,-30.12704843500002],[-51.303089972999906,-30.136325778999986],[-51.31017005099988,-30.14568450299984],[-51.31395423099991,-30.15455494599996],[-51.312163865999935,-30.165134372999926],[-51.308501756999874,-30.17620208099987],[-51.30646725199995,-30.186944268999966],[-51.30890865799997,-30.197360934999875],[-51.326975063999896,-30.224541924999883],[-51.31651770699992,-30.223321221999864],[-51.29865475199995,-30.21884531],[-51.289051886999886,-30.21770598799995],[-51.282460089999915,-30.221368097],[-51.26488196499989,-30.244886976999883],[-51.29214433499995,-30.271661065999876],[-51.28062903599993,-30.287367445999845],[-51.24718176999996,-30.297539971999985],[-51.23753821499988,-30.31324635199995],[-51.22813880099997,-30.30706145599989],[-51.20864824099988,-30.288750909],[-51.2040909499999,-30.28533294099999],[-51.19717363199993,-30.29469166499994],[-51.195301886999886,-30.30901458099984],[-51.196603969999956,-30.337172132999825],[-51.18773352799991,-30.360121351999908],[-51.16612708199992,-30.36296965899994],[-51.11465410099993,-30.34734465899996],[-51.093413865999935,-30.34498463299991],[-51.090646938999896,-30.351983330999968],[-51.09630286399988,-30.366143487999988],[-51.100412563999924,-30.385349216999867],[-51.104725714999944,-30.393243096999935],[-51.11481686099989,-30.401055596999836],[-51.12637285099993,-30.40699635199986],[-51.13512122299991,-30.409437757999896],[-51.14110266799992,-30.407810153999876],[-51.15330969999988,-30.39861419099998],[-51.16185462099992,-30.395196221999978],[-51.20042883999989,-30.39983489399999],[-51.22948157499987,-30.425876559999892],[-51.25047766799992,-30.462334893999937],[-51.27794348899994,-30.54013437299994],[-51.28697669199994,-30.581638279000018],[-51.290191209999904,-30.62444426899992],[-51.285959438999896,-30.669610283999887],[-51.26756751199986,-30.734958591999952],[-51.26488196499989,-30.755547783999987],[-51.269683397999955,-30.781833591999913],[-51.28172766799988,-30.7965634089999],[-51.297678188999974,-30.795342705999886],[-51.31395423099991,-30.773207289999817],[-51.28945878799988,-30.76734791499996],[-51.2911677729999,-30.739922784],[-51.31395423099991,-30.683770440999908],[-51.32249915299994,-30.642185154000018],[-51.33283443899995,-30.636407158999873],[-51.35798092399992,-30.635430596999893],[-51.3771052729999,-30.642266534],[-51.38329016799986,-30.658868096999953],[-51.381581183999856,-30.776299737999892],[-51.37877356699991,-30.794122002999867],[-51.36546790299988,-30.83228932099993],[-51.36107337099992,-30.854587497999958],[-51.36188717399991,-30.879164320999887],[-51.37071692599997,-30.886488539999974],[-51.41258704299989,-30.882500908999912],[-51.437123175999915,-30.883884372999983],[-51.45543372299997,-30.88941822699982],[-51.46861731699991,-30.901625257999978],[-51.477772589999915,-30.922784112999892],[-51.485707160999965,-30.967054945999934],[-51.48420162699992,-31.01295338299992],[-51.47081458199992,-31.053317966999884],[-51.443023240999935,-31.080987237999963],[-51.56969153599994,-31.119561455999857],[-51.59068762899997,-31.122002862999896],[-51.623605923999946,-31.135349216999895],[-51.64297441299988,-31.167087497999855],[-51.650868292999945,-31.205498955999868],[-51.649037238999966,-31.238702080999882],[-51.63760331899991,-31.25025807099982],[-51.637521938999924,-31.25652434699995],[-51.65282141799989,-31.259209893999923],[-51.66340084499993,-31.257256768999977],[-51.67430579299992,-31.253676039999917],[-51.684722459999904,-31.252129815999883],[-51.693755662999905,-31.255791924999922],[-51.71255449099996,-31.26588307099989],[-51.73501542899987,-31.269138278999932],[-51.77940833199989,-31.266045830999854],[-51.79588782499988,-31.267022393999838],[-51.81895911399994,-31.27223072699992],[-51.839466925999886,-31.282159112999835],[-51.856922980999855,-31.31121184699998],[-51.87755286399988,-31.31121184699998],[-51.90208899599992,-31.30673593499993],[-51.92275956899991,-31.306898695999887],[-51.92747962099992,-31.311455987999846],[-51.932199673999946,-31.31853606599991],[-51.94001217399992,-31.32512786299996],[-51.95384680899991,-31.32805754999998],[-51.9635310539999,-31.33228932099983],[-51.96369381399995,-31.341729424999926],[-51.95726477799993,-31.35116952899986],[-51.947336391999926,-31.355401299999965],[-51.94286048099988,-31.35930754999995],[-51.95140540299988,-31.368096612999935],[-51.98766028599991,-31.392510674999965],[-51.99351966099994,-31.398207289999874],[-51.99852454299989,-31.40935637799997],[-52.00161699099987,-31.429131768999905],[-51.99852454299989,-31.495375257999886],[-51.99982662699989,-31.50701262799997],[-52.004750128999945,-31.527927341999852],[-52.004750128999945,-31.53972747199999],[-52.00080318899995,-31.551202080999957],[-51.98839270699992,-31.565362237999977],[-51.98485266799985,-31.573907158999983],[-52.001535610999895,-31.62428150799985],[-52.004750128999945,-31.63974374799987],[-52.00792395699992,-31.646172783999884],[-52.014881964999915,-31.63746510199998],[-52.02586829299986,-31.615492445999976],[-52.030181443999965,-31.589125257999967],[-52.0326228509999,-31.581312757999896],[-52.04015051999993,-31.570245049999937],[-52.04596920499992,-31.566338799999958],[-52.05272376199994,-31.564060153999886],[-52.06309973899994,-31.557224216999867],[-52.07323157499991,-31.554294528999932],[-52.083322719999956,-31.55868906000001],[-52.09105383999989,-31.56755950299997],[-52.09410559799997,-31.577569268999863],[-52.08995520699992,-31.60613372199985],[-52.07909094999985,-31.61003997199985],[-52.063791469999984,-31.605238539999856],[-52.04629472599993,-31.608086846999896],[-52.04124915299991,-31.622653904],[-52.04914303299997,-31.64397551899989],[-52.06334387899989,-31.665459893999905],[-52.077381964999944,-31.680596612999903],[-52.09577389199998,-31.691094658999887],[-52.20372473899991,-31.727308851999908],[-52.21861731699993,-31.74065520599991],[-52.22447669199991,-31.762465101999965],[-52.22223873599992,-31.774346612999924],[-52.21239173099988,-31.794122002999938],[-52.210194464999915,-31.80046965899996],[-52.21304277299993,-31.809258721999935],[-52.21906490799995,-31.817966404],[-52.22419186099995,-31.82822030999995],[-52.22447669199991,-31.8414039039999],[-52.24559485599991,-31.8409970029999],[-52.24844316299993,-31.86199309699992],[-52.23570716099991,-31.879652601999936],[-52.210194464999915,-31.868747653999872],[-52.18667558499993,-31.894789320999934],[-52.183501756999874,-31.900079034],[-52.17886308499996,-31.9027645809999],[-52.156809048999946,-31.906914971999935],[-52.14932206899988,-31.909763278999975],[-52.14244544199988,-31.915459893999863],[-52.13609778599993,-31.922539971999925],[-52.13385982999995,-31.930840752999984],[-52.13906816299996,-31.940524997999958],[-52.146962042999945,-31.941827080999957],[-52.16978919199994,-31.936455987999903],[-52.180043097999885,-31.940524997999958],[-52.197255011999886,-31.949965101999876],[-52.21898352799988,-31.95720794099999],[-52.23766028599994,-31.966403903999872],[-52.24559485599991,-31.98202890399986],[-52.24811764199992,-32.019138278999876],[-52.25206458199992,-32.03818124799996],[-52.258615688999896,-32.05364348799998],[-52.229237433999884,-32.05071379999986],[-52.21117102799988,-32.05673593499996],[-52.211659308999856,-32.067966403999876],[-52.23810787699995,-32.080987237999864],[-52.21397864499991,-32.086114190999965],[-52.18211829299989,-32.079034112999906],[-52.15440833199992,-32.06511809699984],[-52.142486131999874,-32.05022551899988],[-52.137115037999905,-32.03777434699995],[-52.12409420499992,-32.02947356599988],[-52.10822506399989,-32.025567315999965],[-52.09410559799997,-32.02646249799996],[-52.08141028599991,-32.031996351999894],[-52.0814509759999,-32.03769296699997],[-52.0978083979999,-32.05022551899988],[-52.14745032499991,-32.077894789999874],[-52.16893469999985,-32.100681247999894],[-52.1561580069999,-32.122653904],[-52.13971920499992,-32.11907317499994],[-52.10285396999993,-32.079685153999854],[-52.08726966099994,-32.06731536299992],[-52.10057532499988,-32.10621510199991],[-52.101551886999935,-32.122653904],[-52.09117591099994,-32.153903903999975],[-52.09117591099994,-32.166110934999864],[-52.12743079299986,-32.17750416499983],[-52.228627081999946,-32.25107187299999],[-52.25340735599991,-32.282484632999925],[-52.375314907999886,-32.49871184699997],[-52.443186001999976,-32.68596770599986],[-52.47085527299986,-32.800957940999936],[-52.621693488999966,-33.10198333099996],[-52.64488684799991,-33.13697682099988],[-52.74404863199996,-33.249200127999984],[-52.819488084999904,-33.32252369599993],[-52.92088782499994,-33.4030087219999],[-53.09166419199991,-33.52727629999985],[-53.19440670499991,-33.61972421699994],[-53.266346808999884,-33.67669036299988],[-53.37881425699995,-33.74049244599982],[-53.3790583979999,-33.74065520599987],[-53.37909456936376,-33.740675972445416],[-53.411282918999945,-33.74228037499995],[-53.42363358599991,-33.731014912999896],[-53.43081660999985,-33.71344492599984],[-53.44042842699989,-33.69711517399997],[-53.45670650299991,-33.68750335699988],[-53.47319128399996,-33.68740000399993],[-53.491071329999926,-33.69029388399993],[-53.511535196999965,-33.69029388399993],[-53.53964717599993,-33.64926279699989],[-53.53680497199994,-33.559862568999904],[-53.51401566599995,-33.39491139699989],[-53.53613317899996,-33.24463633199986],[-53.53685664899987,-33.17084238699999],[-53.52066175999991,-33.12497899199998],[-53.5116385499999,-33.09942555699989],[-53.511586872999914,-33.099322204999964],[-53.511535196999965,-33.09921885199985],[-53.48331986499991,-33.06728281599996],[-53.449110066999935,-33.0420647169999],[-53.32730871699994,-32.97364512199992],[-53.31630163599993,-32.96268971799985],[-53.309583699999905,-32.94439625999988],[-53.306999877999914,-32.90718922999987],[-53.29883500199989,-32.889102477999856],[-53.270826374999984,-32.863781026999874],[-53.2038537199999,-32.82243987999985],[-53.18283631199994,-32.79990410499987],[-53.163081013999914,-32.77872161899987],[-53.12685583499987,-32.754847106999875],[-53.11404008,-32.7405844109999],[-53.110836141999926,-32.72239430699986],[-53.119776164999934,-32.70740814199998],[-53.18612870399996,-32.64674001099989],[-53.201476603999936,-32.637231546999914],[-53.233722697999895,-32.624622496999805],[-53.26689896699992,-32.6073625689999],[-53.299093383999974,-32.60715586399985],[-53.31604325399988,-32.602711689999936],[-53.35908972199988,-32.58028411799985],[-53.415623738999926,-32.56416107199995],[-53.47463822399996,-32.508247171999955],[-53.537631795999886,-32.470213317999935],[-53.561299601999906,-32.44954274499983],[-53.581970174999924,-32.42577158599987],[-53.598920043999925,-32.39993336999993],[-53.609307006999956,-32.38784108499986],[-53.63478348899989,-32.36872080499987],[-53.64387853999994,-32.355594990999975],[-53.648684448999944,-32.33864512099997],[-53.6518367109999,-32.288312275999914],[-53.65855464699993,-32.25430918399988],[-53.670595255999984,-32.22640390999997],[-53.72144486499991,-32.162428487],[-53.750021931999896,-32.10403411899984],[-53.75136551899996,-32.068790791999874],[-53.75730830999996,-32.055044860999836],[-53.771829386999904,-32.04708668999987],[-53.83043046099993,-32.03644134499997],[-53.85807735199995,-32.021196796999845],[-53.87109981299997,-32.0114816279999],[-53.88143509999989,-32.00124969499991],[-53.88727453599998,-31.9905009969999],[-53.88975500499995,-31.98037241599985],[-53.89414750199995,-31.970140482999867],[-53.90582637599991,-31.95928843199999],[-53.93435176699995,-31.942545267999957],[-53.94876949099997,-31.936964212999854],[-53.96597774299997,-31.93252003999993],[-53.99889563099989,-31.92972951199997],[-54.008714152999886,-31.92652557399983],[-54.01770585099993,-31.91960093199984],[-54.02664587399994,-31.90482147199982],[-54.03264033999997,-31.89810353599989],[-54.049745239999936,-31.88714813199999],[-54.0688138429999,-31.87991343199985],[-54.08845088699994,-31.878156432999873],[-54.10731278499995,-31.883944192999845],[-54.12550288999992,-31.89851694799999],[-54.135063028999895,-31.908955586999934],[-54.146276814999936,-31.90988576299989],[-54.16958288599997,-31.8959331249999],[-54.21877884899996,-31.85665903699993],[-54.27422766199993,-31.823379414999888],[-54.34295731699989,-31.7693258659999],[-54.3734980879999,-31.73894012399985],[-54.403677124999966,-31.71465220099985],[-54.43649165799991,-31.6942916869999],[-54.4637251389999,-31.671864116],[-54.46722070599995,-31.664237422999847],[-54.47736771699991,-31.64209848999984],[-54.478969686999925,-31.6014808139999],[-54.483155477999894,-31.583910828],[-54.495041056999916,-31.565617369999853],[-54.50966548699998,-31.55228485099984],[-54.5623754479999,-31.51590464199985],[-54.57384761599994,-31.50246876999989],[-54.591520955999925,-31.471049498999857],[-54.604543416999974,-31.459784037999892],[-54.61968461099988,-31.455649921999875],[-54.654126952999945,-31.45575327499999],[-54.819775756999945,-31.435289407999843],[-54.84990311699994,-31.425057474999946],[-54.8633648279999,-31.41761606899985],[-54.87615474499995,-31.40635060599996],[-54.88780777999992,-31.393224793],[-54.90028763899991,-31.38206268299997],[-54.94080196099992,-31.365629577999822],[-54.96963741099995,-31.34082488999988],[-54.99534643599995,-31.311782734999962],[-55.01149532099993,-31.287804869999874],[-55.029375366999886,-31.26878794299999],[-55.04234615099992,-31.272611998999846],[-55.061104695999916,-31.30485809299999],[-55.07425634799998,-31.32056772799987],[-55.08725297099991,-31.326768899999863],[-55.10244584199995,-31.324288430999886],[-55.122237914999914,-31.313539732999953],[-55.169625203999914,-31.276436055999877],[-55.18828039599995,-31.266514179999888],[-55.22755448499992,-31.253491719999943],[-55.24434932499992,-31.244603372999915],[-55.25998144599995,-31.228687032],[-55.26874060099993,-31.21060028099998],[-55.282228149999895,-31.16905242999989],[-55.29370031699991,-31.153652852],[-55.32692826299993,-31.134945984],[-55.33803869699994,-31.12564422599982],[-55.344963338999946,-31.108487649999944],[-55.3484256589999,-31.07272755999992],[-55.35385168499997,-31.056294453999865],[-55.36857946799994,-31.037380878999926],[-55.44258011899987,-30.965550639],[-55.4890889079999,-30.929687194999868],[-55.511309773999926,-30.906122741999866],[-55.52748449699993,-30.894547220999826],[-55.56386470499993,-30.876460469999984],[-55.59187333199992,-30.848348490999868],[-55.61290563999995,-30.843387552999918],[-55.63404130099988,-30.84762501999995],[-55.64967342099993,-30.860957539999973],[-55.65458268299997,-30.878734232999832],[-55.65106868499993,-30.919972024999833],[-55.65274816899998,-30.938988952999892],[-55.66582230599991,-30.949324238999893],[-55.688301554999924,-30.947773945999884],[-55.71274450699988,-30.943433125999903],[-55.73189062499998,-30.94539682999992],[-55.74488724799991,-30.958625996999928],[-55.75550675499997,-30.992939147999948],[-55.76359411699988,-31.00844207699987],[-55.77814103199995,-31.020431009999907],[-55.832478800999894,-31.051746927999925],[-55.83839575199991,-31.058154805999873],[-55.84214229399992,-31.06394256499985],[-55.846586465999934,-31.069316914999902],[-55.8545963139999,-31.074587910999924],[-55.86425980699994,-31.07675832100001],[-55.88818599399994,-31.076965026999883],[-55.91934688399991,-31.082442728999965],[-55.9851568199999,-31.07882537899998],[-56.00987402099989,-31.08194549799985],[-56.011356770999896,-31.082132669999975],[-56.01701787399988,-31.074296298999954],[-56.022182983999954,-31.067146504999826],[-56.02238968899991,-31.045545755999854],[-56.01634354699988,-30.999863790000017],[-56.01551672399992,-30.93433807399984],[-56.011356770999896,-30.91263397199984],[-55.99386429899994,-30.885452167999944],[-55.98895503799991,-30.855789896999976],[-55.99531123899993,-30.82581756599994],[-56.011356770999896,-30.798222350999847],[-56.07685664899989,-30.75233367899996],[-56.09189449099998,-30.736107279999874],[-56.12504492199989,-30.6802967319999],[-56.13168534399989,-30.671925149999833],[-56.14031530799994,-30.664793801999803],[-56.15964229399989,-30.653941751999852],[-56.17080440299992,-30.645776876000014],[-56.17517106199992,-30.636061706999964],[-56.177832397999936,-30.62551971399992],[-56.18351680599997,-30.61456431099985],[-56.21509110499997,-30.581904805999955],[-56.235089884999894,-30.565368346999957],[-56.267956095999914,-30.551105651999904],[-56.32653133199994,-30.50831756599996],[-56.37260087099994,-30.485889993999972],[-56.38598506699989,-30.47576141399992],[-56.400454467999936,-30.458914896999858],[-56.42463903899991,-30.42356821699985],[-56.44127884999991,-30.408788756999837],[-56.494557250999975,-30.37933319099993],[-56.51130041499994,-30.366000672],[-56.52375443599993,-30.357319029999854],[-56.56078059899997,-30.32052541099995],[-56.569617268999906,-30.30801971499986],[-56.575017455999955,-30.302438659999936],[-56.5858178309999,-30.296547545999843],[-56.59561051399996,-30.295410664999835],[-56.605196492999966,-30.29561736999989],[-56.61540258799994,-30.29334360699987],[-56.631344766999945,-30.28466196699982],[-56.632429972999944,-30.278150736999848],[-56.629277709999904,-30.267712096999897],[-56.6325850019999,-30.24745493499998],[-56.641783406999906,-30.2339157099999],[-56.656821248999876,-30.221306660999986],[-56.67374527999996,-30.211281432999954],[-56.70477697799992,-30.198362324999863],[-56.76699540199991,-30.161362],[-56.77660721899994,-30.150923359999965],[-56.795159057999875,-30.12384491],[-56.83128088499998,-30.102037454999884],[-56.869211384999886,-30.102967631000023],[-56.90636673999998,-30.108548685999864],[-56.95452917499997,-30.096869811999962],[-56.974579630999926,-30.097489928999945],[-57.011269897999874,-30.10348439499988],[-57.018297892999975,-30.10575815899999],[-57.037883260999934,-30.11464650499991],[-57.048528605999905,-30.11454315199997],[-57.06723547399989,-30.106791686999884],[-57.07710567299998,-30.106068216999883],[-57.102272094999904,-30.121157735999883],[-57.12955725099994,-30.149993183999825],[-57.15084794199993,-30.182342631],[-57.158341023999945,-30.20787078799985],[-57.16381872599993,-30.239290059999973],[-57.183714152999954,-30.267505390999943],[-57.21260127799991,-30.287349140999936],[-57.2450540769999,-30.29334360699987],[-57.25006669199987,-30.290449726999878],[-57.26246903499995,-30.27866750099997],[-57.27037552899989,-30.275153503000016],[-57.27621496599996,-30.277737324999833],[-57.2886173099999,-30.290759785999864],[-57.296472126999866,-30.29334360699987],[-57.31099320499993,-30.28827931699989],[-57.32174190299994,-30.279804381999977],[-57.334299275999854,-30.272673033999933],[-57.353832967999956,-30.271949564999854],[-57.366597045999924,-30.27722056099998],[-57.389386352999935,-30.29489390099998],[-57.399256550999915,-30.29913136799985],[-57.414811156999946,-30.295720723],[-57.42979732299992,-30.2754635619999],[-57.443129842999916,-30.269469095999884],[-57.467211059999954,-30.269882506999892],[-57.510980997999944,-30.27670379699985],[-57.53599239099995,-30.274430033999835],[-57.567463338999914,-30.256343282],[-57.58684200099989,-30.20404673199999],[-57.61169836499993,-30.182962747999877],[-57.56865189699993,-30.176554871000018],[-57.54860144099991,-30.170043639999957],[-57.506175089999935,-30.14430877699988],[-57.411452188999924,-30.039612324999922],[-57.32515254799998,-29.98101125],[-57.318744669999944,-29.9655083209998],[-57.30851273699994,-29.84851287799999],[-57.29151118999994,-29.815129902999928],[-57.262572387999874,-29.792598978999987],[-57.219629272999974,-29.77833628299984],[-57.177461303999934,-29.772858581999856],[-57.13338130699995,-29.772135110999855],[-57.1128657639999,-29.766037291999808],[-57.09415889499991,-29.751981301999876],[-57.020933390999915,-29.68335500099984],[-57.01359533799993,-29.673123066999935],[-57.00884110599991,-29.662581074999974],[-56.979385538999935,-29.634985859999887],[-56.96579463799992,-29.600879415],[-56.9516352949999,-29.586306660999867],[-56.91241288299992,-29.55840138799988],[-56.904351358999946,-29.549616393999983],[-56.897271687999904,-29.535663756999977],[-56.81903356999996,-29.47499562599999],[-56.81495113199995,-29.467037454999936],[-56.81293575099991,-29.45711557999986],[-56.80756140099993,-29.44471323699989],[-56.799835774999934,-29.433964538999874],[-56.7834285079999,-29.425799661999942],[-56.782033243999905,-29.41660125699985],[-56.78255000899994,-29.40543914799983],[-56.780818847999875,-29.395310567999868],[-56.77578039499991,-29.386422220999947],[-56.76994095899991,-29.37908416699986],[-56.762706257999945,-29.372882995999873],[-56.75355952999987,-29.367405292999972],[-56.71813533499994,-29.351488951999954],[-56.705500447999924,-29.343737487999856],[-56.68865393099992,-29.329578144999815],[-56.67702673399987,-29.313351745999807],[-56.66064530499992,-29.27087371799986],[-56.650465047999944,-29.251340026999856],[-56.6572863369999,-29.237904153999978],[-56.656304483999946,-29.22343475299995],[-56.650671752999926,-29.20906870499986],[-56.6436695969999,-29.196149596999856],[-56.61728877799993,-29.16090627],[-56.584215860999876,-29.132277525999893],[-56.548300740999906,-29.109953307999927],[-56.51331579599989,-29.09372690900001],[-56.44427608299992,-29.07812062599989],[-56.42797216799991,-29.06985239699993],[-56.415750691999875,-29.051352233999822],[-56.41192663599995,-29.031818541999982],[-56.41091894599995,-28.991304219999808],[-56.39161779799991,-28.952236836999973],[-56.323069010999916,-28.916476745999958],[-56.3010031739999,-28.88144012399985],[-56.294827839999925,-28.795760598999948],[-56.28614619999988,-28.780154316999912],[-56.265475626999944,-28.771989440999814],[-56.21845007399989,-28.764134622999876],[-56.18470536299992,-28.74418752099986],[-56.10300492399992,-28.648069356000022],[-56.04081233699992,-28.60900197399991],[-56.02189876399987,-28.5857475789999],[-56.020503499999904,-28.546266783999968],[-56.0229581299999,-28.528283386999888],[-56.02143367599992,-28.510403340999925],[-56.01158931499995,-28.49655405699987],[-55.97913651599995,-28.489216002999967],[-55.951592976999876,-28.476710306999877],[-55.91908850099994,-28.47340301499996],[-55.910665242999954,-28.470509134999972],[-55.902035278999904,-28.465134785999837],[-55.89805619299992,-28.46069061300001],[-55.89691931199991,-28.45345591299994],[-55.89666092899995,-28.406843769999895],[-55.90038163199995,-28.39847218799983],[-55.90560095199996,-28.378008320999953],[-55.88735917199992,-28.363332214999872],[-55.8423489999999,-28.346382344999867],[-55.8125316979999,-28.353203632999907],[-55.77119055199995,-28.357544453999978],[-55.734603637999925,-28.365916035999874],[-55.71884232599993,-28.384519550999926],[-55.71496659399989,-28.40446665499985],[-55.705690673999946,-28.407670593999825],[-55.69424434399994,-28.40012583399995],[-55.684064086999875,-28.388033548999886],[-55.67737198899996,-28.373874206999844],[-55.663600219999914,-28.326538593999956],[-55.677216959999924,-28.301837259999953],[-55.687216348999925,-28.290055032999945],[-55.70145320699989,-28.284990742999966],[-55.71470821199992,-28.28189015699985],[-55.754602416999944,-28.265663756999842],[-55.76659134999991,-28.257602233999844],[-55.77253413899993,-28.231970723999876],[-55.74793615799993,-28.215744322999953],[-55.684064086999875,-28.196210631999943],[-55.641999470999934,-28.160347187999918],[-55.63254268399987,-28.154662780999956],[-55.62383520599991,-28.146187845999876],[-55.62304188899992,-28.144350089999875],[-55.61665218099995,-28.129548034999857],[-55.60474076399992,-28.116938984999834],[-55.58164139799996,-28.12107309999993],[-55.578540812999904,-28.127480976999887],[-55.57931595899993,-28.1363693239999],[-55.57709387199992,-28.144327493999867],[-55.5648723969999,-28.147738138999983],[-55.55347774299989,-28.145567727999904],[-55.54973120099987,-28.139883320999942],[-55.54828426099988,-28.13223520899997],[-55.543762572999945,-28.1241736849998],[-55.53787145999987,-28.119316100999953],[-55.52479732299991,-28.1106344599999],[-55.520223957999946,-28.10681040399987],[-55.50991451099995,-28.08396942099995],[-55.50593542499987,-28.078905130999967],[-55.49296464099987,-28.07394419399985],[-55.48653092499989,-28.07714813199999],[-55.48231929599987,-28.083142597999935],[-55.475498005999924,-28.08634653699991],[-55.464852660999924,-28.085106302999876],[-55.44074560599995,-28.078905130999967],[-55.43508703699993,-28.070740254999873],[-55.38984431999992,-28.024231465999932],[-55.38338476599998,-28.014206238],[-55.38142106099994,-28.00872853599992],[-55.38242875199992,-27.987334492999906],[-55.380930135999904,-27.978239439999925],[-55.376434284999895,-27.973175149999946],[-55.36909623199989,-27.970798033999827],[-55.35886429899991,-27.97028126999996],[-55.33790950499991,-27.963149922999847],[-55.33302608199989,-27.946613463999853],[-55.32987381999993,-27.92811330199983],[-55.314112508999955,-27.914987487999937],[-55.301761840999916,-27.913953958999954],[-55.2807812099999,-27.920568542999874],[-55.27008418799991,-27.92242889399988],[-55.260239827999925,-27.919224954999905],[-55.22404048699988,-27.893800149999976],[-55.212309936999894,-27.877160339999875],[-55.19773718299993,-27.86062388099988],[-55.177557535999966,-27.853595885999965],[-55.1614603269999,-27.858246764999933],[-55.13970454999989,-27.876746927999942],[-55.119240682999894,-27.88088104299989],[-55.11138586399997,-27.85297576899998],[-55.10869868999995,-27.846774596999907],[-55.09993953399995,-27.8437773639999],[-55.077899535999876,-27.84336395299989],[-55.0677192789999,-27.839333190999895],[-55.04580847199994,-27.850702005999977],[-55.02963374799995,-27.850702005999977],[-55.02580969299993,-27.840160013999917],[-55.040434122999976,-27.819489440999817],[-55.07125911499989,-27.794374694999973],[-55.08115515199995,-27.778251647999976],[-55.06430863499989,-27.771016948],[-55.04464575299994,-27.775047708999836],[-55.02759252899992,-27.783005879999806],[-55.00911820499991,-27.788380228999856],[-54.98519201699989,-27.78527964199982],[-54.93299881999991,-27.743835143999945],[-54.91320674599993,-27.73691050199987],[-54.90690222199993,-27.727091979999898],[-54.90157954899987,-27.704457701999857],[-54.89646358199988,-27.661152851999887],[-54.89827225699989,-27.623635761999893],[-54.889797322999954,-27.62063852999988],[-54.86540604699993,-27.620845234999916],[-54.84509720899993,-27.611853535999966],[-54.83700984699993,-27.590459492999965],[-54.83367671799993,-27.565344746999855],[-54.82752722199987,-27.545087584999933],[-54.81889725799991,-27.536199238999842],[-54.80504797399993,-27.526380716999867],[-54.79223221799995,-27.523176777999893],[-54.786547810999906,-27.53423553399999],[-54.78853735399994,-27.53857635499996],[-54.79212886599993,-27.544260763],[-54.79373083499987,-27.549221699999876],[-54.79001013199988,-27.551288757],[-54.7880205899999,-27.552839050999946],[-54.7816902269999,-27.560073750999916],[-54.78034663999992,-27.56214080799988],[-54.773938760999975,-27.563794454000018],[-54.731899983999966,-27.551288757],[-54.72195227099988,-27.550978698999856],[-54.69967972799992,-27.55304575599982],[-54.69032629399996,-27.551288757],[-54.68112788899987,-27.546431171999913],[-54.6772004799999,-27.541780292999942],[-54.6764511719999,-27.53423553399999],[-54.67668371599987,-27.520592956999806],[-54.673479776999976,-27.50974090599985],[-54.66645178199988,-27.50384979199994],[-54.65947546399988,-27.502816263999947],[-54.656194010999904,-27.507260436999868],[-54.651233072999865,-27.525863951999924],[-54.63952836099989,-27.526794127999878],[-54.62591162199996,-27.515321960999955],[-54.615240437999965,-27.496718444999985],[-54.609814412999896,-27.478528340999958],[-54.60531856299988,-27.467986347999897],[-54.598497273999925,-27.459098001999976],[-54.58945389799996,-27.452586770999915],[-54.58382116699993,-27.452070006999875],[-54.578550170999904,-27.45424041799987],[-54.57054032499993,-27.45568735699986],[-54.56723303299992,-27.459614766],[-54.557621215999916,-27.477804869999872],[-54.55379715999996,-27.48297251399995],[-54.54325516799991,-27.487003274999946],[-54.533539998999885,-27.48741668699988],[-54.46858272399993,-27.470260110999916],[-54.44837723799992,-27.458891296999838],[-54.44765376899994,-27.445765482999946],[-54.46455196099992,-27.42333791099996],[-54.46083125799993,-27.412589212999933],[-54.44455318199991,-27.40897186199996],[-54.40424556499994,-27.4074215699999],[-54.38889766499997,-27.41114227299994],[-54.37871740799991,-27.42271779399998],[-54.37499670399998,-27.445765482999946],[-54.371586059999885,-27.454447122999905],[-54.36347285999997,-27.45351694699987],[-54.354326130999965,-27.446282246999896],[-54.34771154799998,-27.435843607999868],[-54.34610957899994,-27.426541849999936],[-54.34771154799998,-27.394295755999877],[-54.33401729399994,-27.40607798299996],[-54.321511596999954,-27.419513854999835],[-54.306938843999916,-27.42891896599988],[-54.28688838699995,-27.42840220099994],[-54.28192744999989,-27.424371438999856],[-54.274899454999904,-27.4161032099999],[-54.26859493099997,-27.406388040999957],[-54.26580440299992,-27.39801645899989],[-54.26125687699991,-27.388714701999945],[-54.25071488499992,-27.385200703999985],[-54.23924271599992,-27.38385711599984],[-54.23164628199996,-27.380549824999846],[-54.22957922399988,-27.37197153799991],[-54.231801309999895,-27.351507669999943],[-54.22792557899993,-27.34303273499985],[-54.22255122899989,-27.336831562999947],[-54.21815873299997,-27.32928680399999],[-54.1895299889999,-27.260867207999922],[-54.1770242929999,-27.243400573999878],[-54.16477697799988,-27.250635273999848],[-54.155940307999884,-27.25766326899995],[-54.15805904199996,-27.27947072299996],[-54.12819006399994,-27.288875834],[-54.091758178999925,-27.285155131],[-54.01811926299993,-27.212291360999913],[-54.01088456299996,-27.193997903999858],[-54.00514847799991,-27.18821014399988],[-53.99729366099987,-27.187279967999928],[-53.99269445799993,-27.19007049599989],[-53.98845699099988,-27.19379119899999],[-53.98148067299987,-27.19565155],[-53.961791951999906,-27.191414082999852],[-53.96106848199992,-27.180768737999955],[-53.96623612499994,-27.16722951299988],[-53.964117390999945,-27.15400034599989],[-53.950888223999954,-27.1477991739999],[-53.93853755799992,-27.155447285999884],[-53.925411743999945,-27.16598927799994],[-53.90949540199992,-27.168263040999946],[-53.89941849799996,-27.158444518999985],[-53.890840209999936,-27.127128600999967],[-53.882210245999914,-27.119893901],[-53.86877437399993,-27.125888366999945],[-53.857870645999895,-27.140977884999852],[-53.84877559499992,-27.157514342999846],[-53.84200598099997,-27.1635088099999],[-53.830017049999924,-27.15679087299985],[-53.81921667499997,-27.1397376499999],[-53.81875158699995,-27.13146942099995],[-53.82826005099994,-27.121754251999832],[-53.828725138999886,-27.11441619900002],[-53.82433264199997,-27.10935190799995],[-53.80975988799991,-27.100980325999885],[-53.80490230399991,-27.094365742999884],[-53.803248656999955,-27.080619811999853],[-53.80500565599993,-27.052197773999836],[-53.80092321799992,-27.039071960999863],[-53.79580725099993,-27.03586802199989],[-53.780045939999944,-27.033800963999838],[-53.77317297399989,-27.030183613999853],[-53.7684704189999,-27.02408579499989],[-53.724597127999886,-26.940473327999953],[-53.7125048419999,-26.904506530999893],[-53.710696166999895,-26.87381072999986],[-53.7224267169999,-26.81438283299991],[-53.73400223799993,-26.77738250799986],[-53.73756791199992,-26.775728860999905],[-53.74966019699988,-26.774902037999965],[-53.75291581299987,-26.773248392999932],[-53.753897664999926,-26.763119811999886],[-53.74728308099995,-26.749063821999865],[-53.747851521999905,-26.73914194799987],[-53.75245072499993,-26.735938007999977],[-53.7610806889999,-26.73283742299995],[-53.76965897599993,-26.72663624999987],[-53.774309854999984,-26.714337259999837],[-53.7717260339999,-26.703691913999933],[-53.76361283399987,-26.700798034999934],[-53.753742634999895,-26.699557799999823],[-53.746042846999984,-26.693873391999873],[-53.739531616999926,-26.675579935999803],[-53.737877970999904,-26.65707977299996],[-53.74294226099996,-26.61914927099987],[-53.7423738199999,-26.600545755999818],[-53.72960974199995,-26.565819192999964],[-53.72681921399987,-26.548559264999966],[-53.728214477999956,-26.551866556999883],[-53.73183182799993,-26.545562031999964],[-53.735604207999955,-26.53512339299992],[-53.73746455899996,-26.52530486999987],[-53.73457067899997,-26.51827687599986],[-53.72743933099994,-26.511352233999958],[-53.7129182539999,-26.50050018299991],[-53.7129182539999,-26.500293477999875],[-53.71276322499995,-26.469597675999836],[-53.72444209799993,-26.376063333999824],[-53.71586380999992,-26.346711119999934],[-53.67323075299993,-26.29255421899992],[-53.66155187999993,-26.259791361000012],[-53.666719522999955,-26.21917368599989],[-53.68511633299994,-26.18765106199983],[-53.73338212099995,-26.126362813999876],[-53.746766316999896,-26.09163625100001],[-53.75348425399991,-26.05866668699997],[-53.76500809799995,-26.02807423899995],[-53.7927066659999,-26.000582376999986],[-53.7927066659999,-26.00047902399987],[-53.792861694999914,-26.00037567099984],[-53.82619299299998,-25.972677102999825],[-53.83342769399994,-25.962238464999967],[-53.836063191999955,-25.94973276799996],[-53.83394445899998,-25.94032765700001],[-53.83058548999989,-25.93164601599996],[-53.829603637999924,-25.92131072999986],[-53.841644246999884,-25.867670592999886],[-53.837303425999885,-25.80917287199989],[-53.84035233599994,-25.791396178999857],[-53.849344035999955,-25.772896016999837],[-53.85781896999987,-25.763180846999973],[-53.87704260299998,-25.746127623999953],[-53.883450480999926,-25.735585632999985],[-53.8855175379999,-25.72256317199995],[-53.8825203049999,-25.713468118999884],[-53.87828283799993,-25.70613006599997],[-53.876474162999955,-25.69786183600003],[-53.88753291899994,-25.66127492299999],[-53.89812658699992,-25.63946746799988],[-53.909960489999946,-25.62923553399999],[-53.948097696999895,-25.65062957699982],[-53.96773474099993,-25.653213398999824],[-53.97620967599994,-25.627581888999856],[-53.9782767339999,-25.607014668999867],[-53.984994669999935,-25.58934132899986],[-53.99744868999991,-25.57497527999986],[-54.0165172939999,-25.565053405999862],[-54.030211548999915,-25.562159525999874],[-54.036774454999914,-25.564536642],[-54.04292395,-25.56846404999989],[-54.05537797099995,-25.57073781299999],[-54.0724828699999,-25.555338236],[-54.08271480299987,-25.55006724099998],[-54.08927770999995,-25.558852233999957],[-54.088760945999915,-25.56836069699986],[-54.08648718299992,-25.579832864999958],[-54.08576371299992,-25.590581562999986],[-54.08963944599995,-25.597402851999945],[-54.09888952699987,-25.59719614699989],[-54.108966430999914,-25.59027150499982],[-54.11769974799998,-25.58055633499995],[-54.123125773999874,-25.571771341999977],[-54.12596797699993,-25.552030943999906],[-54.120180216999955,-25.535494486999838],[-54.111860310999894,-25.519371438999855],[-54.107157755999935,-25.50056121899993],[-54.11144689999989,-25.495910338999877],[-54.11640783699994,-25.494566751999898],[-54.12209224499989,-25.496220397999863],[-54.12819006399994,-25.50056121899993],[-54.15428666199992,-25.528259785999865],[-54.16508703599995,-25.534357604999826],[-54.177696085999884,-25.53580454499982],[-54.19671301299985,-25.52960337299991],[-54.206944946999926,-25.52794972699988],[-54.21479976499995,-25.531463723999916],[-54.1946976319999,-25.563296406999882],[-54.190253458999905,-25.580763040999926],[-54.209942179999956,-25.58220998099992],[-54.2289591059999,-25.577042337999913],[-54.23510860199988,-25.57673227999993],[-54.24368688999991,-25.577559102999942],[-54.249629679999934,-25.59326873799992],[-54.255624144999864,-25.598746438999825],[-54.2631689049999,-25.59006479899986],[-54.273659220999946,-25.568774108999875],[-54.284407918999875,-25.556785175999988],[-54.2992390549999,-25.55265106199998],[-54.32171830299992,-25.555131530999954],[-54.33308711799992,-25.561952819999913],[-54.34967525199991,-25.582416686999874],[-54.36011389199987,-25.584277037999883],[-54.37778723199994,-25.577662455999885],[-54.38621048999994,-25.57714569099994],[-54.395408894999946,-25.581073098999823],[-54.40285030099997,-25.59027150499982],[-54.403677124999966,-25.600193378999816],[-54.402798624999946,-25.610321960999954],[-54.405072387999944,-25.61983042399993],[-54.41266882299993,-25.62727182999987],[-54.431324014999916,-25.636883646999877],[-54.43742183399987,-25.645048521999897],[-54.43773189399994,-25.6553838089999],[-54.433132690999884,-25.676571146999862],[-54.43731848199994,-25.685252786999826],[-54.44734370899994,-25.689180195999967],[-54.45354488199993,-25.683185729999863],[-54.456542114999955,-25.672643736999973],[-54.45700720299996,-25.663135274],[-54.460572875999844,-25.64205128999988],[-54.47302689599993,-25.625824890999965],[-54.491061971999926,-25.614042663999953],[-54.51142248599987,-25.60618784600001],[-54.53229976399993,-25.61063201899985],[-54.53870764199988,-25.601330260999912],[-54.53999955299991,-25.58675750699986],[-54.54563228399988,-25.57476857499998],[-54.56005000799988,-25.57022104899987],[-54.60020261299988,-25.574944883999834],[-54.59994421499991,-25.57270151699984],[-54.59415645399994,-25.548620300999985],[-54.5914692789999,-25.52474578899991],[-54.598497273999925,-25.50583221399995],[-54.60852250199994,-25.48764210999992],[-54.61244991099991,-25.465524596999913],[-54.611829792999934,-25.44402720099997],[-54.609814412999896,-25.432761738999915],[-54.5979805099999,-25.39751841200002],[-54.575656290999916,-25.360311380999917],[-54.547079223999866,-25.336643574999897],[-54.528475708999906,-25.314319355999842],[-54.50356766799993,-25.278662617999938],[-54.48145015499992,-25.21324025399987],[-54.46940954599995,-25.19546356199984],[-54.43566483599997,-25.167041523999913],[-54.42662146099991,-25.14947153699994],[-54.429722045999966,-25.1305579629999],[-54.45519852699988,-25.09211069699995],[-54.4633117269999,-25.0727837119999],[-54.46419022599994,-25.055937194999927],[-54.46227819799992,-25.037230325999943],[-54.45328649899997,-25.002813821999894],[-54.407294474999865,-24.82122283899986],[-54.39974971599992,-24.80478973399998],[-54.37112097199994,-24.766652526999835],[-54.35842946499994,-24.731421747],[-54.3213048909999,-24.62836639399994],[-54.32068477399994,-24.59591359399992],[-54.33479243999997,-24.52728729299997],[-54.33453405799992,-24.49669484399996],[-54.32290685999993,-24.464345397999892],[-54.28409785999989,-24.411325377999887],[-54.27169551599994,-24.389414570999918],[-54.262187051999945,-24.35851206499993],[-54.26105017099993,-24.32946990899994],[-54.27433101399995,-24.298257344999868],[-54.282650919999895,-24.275313009000016],[-54.30626704899993,-24.246684264999853],[-54.314121866999955,-24.234178567999948],[-54.31897945199997,-24.196764830999967],[-54.33184688299988,-24.165035501999863],[-54.33463741099993,-24.148912454999888],[-54.324767211999955,-24.118216653999852],[-54.3010477299999,-24.08989796999985],[-54.26621781499995,-24.065920104999933],[-54.24528885899994,-24.05062388099988],[-54.24574984799989,-24.050393386],[-54.273607543999844,-24.03646453799992],[-54.36760697499997,-23.984684753999954],[-54.42290075699992,-23.913784688999897],[-54.44315791899993,-23.899935403999933],[-54.61255326399992,-23.811155294],[-54.63921830299998,-23.80443735699997],[-54.65459204099997,-23.8114653519999],[-54.679784301999916,-23.836683450999857],[-54.69683752399993,-23.845158385999937],[-54.827423868999915,-23.887016297],[-54.89191605699994,-23.920605976999937],[-54.90488684099998,-23.933008320999832],[-54.92674597199991,-23.95988006599991],[-54.94364416499991,-23.969181823999946],[-54.96105912299992,-23.971765644999945],[-54.994571289999925,-23.973109232999914],[-55.01149532099993,-23.980550638999844],[-55.0422944739999,-23.98902557399994],[-55.1055722659999,-23.9885088099999],[-55.131074584999936,-24.000394389],[-55.131074584999936,-24.00060109499998],[-55.13120377699996,-24.00060109499998],[-55.131281290999965,-24.00060109499998],[-55.16543941299997,-24.016827493999898],[-55.20086360699989,-24.01951466800001],[-55.23683040399996,-24.012693379999874],[-55.27235795099992,-24.00060109499998],[-55.272409627999934,-24.00060109499998],[-55.27256465699988,-24.000497741999865],[-55.272668008999915,-24.000497741999865],[-55.272719685999895,-24.000394389],[-55.30434566299991,-23.994089863999918],[-55.36718420399998,-23.989645690999822],[-55.398035033999946,-23.976829936000016],[-55.420669311999916,-23.954505715999957],[-55.430177774999976,-23.928564147999822],[-55.4453189699999,-23.7354493199999],[-55.466971395999906,-23.673230895999936],[-55.511309773999926,-23.629409280999838],[-55.53053340699995,-23.603467711999883],[-55.53389237499996,-23.569981383999888],[-55.533065551999954,-23.534014587],[-55.533795620999875,-23.53044413699989],[-55.53991267899991,-23.50052825999991],[-55.5424706629999,-23.465801696999957],[-55.51554724199988,-23.410197855999954],[-55.51386775799994,-23.379398701999904],[-55.52487483699991,-23.360485126999947],[-55.555596476999966,-23.33030609099987],[-55.562159383999955,-23.307878519999875],[-55.559007120999894,-23.29134206099988],[-55.535649373999945,-23.245866800999917],[-55.53523596299993,-23.229123635999954],[-55.55714676999989,-23.154709574999856],[-55.56086747299992,-23.14592457999987],[-55.58866939299995,-23.130111591999963],[-55.59939225299988,-23.11708913199992],[-55.60014156199989,-23.100552672999925],[-55.595232299999935,-23.064069111999913],[-55.600684163999915,-23.044535419999914],[-55.61145869999987,-23.02913584399984],[-55.63781367999991,-23.000713805999823],[-55.6399840899999,-22.983763935999903],[-55.634351359999954,-22.950070901999936],[-55.634299682999966,-22.932810973999864],[-55.656572224999906,-22.85570973699991],[-55.659001017999884,-22.818296],[-55.645926879999905,-22.787910257999982],[-55.628589436999896,-22.758971455999927],[-55.61833166599993,-22.72569183399989],[-55.61918432599995,-22.71690683999998],[-55.62566971899991,-22.70078379299983],[-55.62778845299987,-22.692102151999862],[-55.627013305999895,-22.68362721799994],[-55.62150976599988,-22.667090758999947],[-55.620476237999895,-22.659339293999864],[-55.623680175999965,-22.63866872199985],[-55.63119909699992,-22.626783141999823],[-55.64435074899998,-22.619548441999854],[-55.66468542599992,-22.61272715199989],[-55.697913371999924,-22.59557057699992],[-55.72393245399991,-22.569629006999975],[-55.74126989799993,-22.537176208999867],[-55.74829789299994,-22.500899352999905],[-55.751579345999914,-22.416253356999988],[-55.76023514799996,-22.391965434],[-55.77015702399987,-22.381423440999853],[-55.81077469899992,-22.353104756999855],[-55.86103002999997,-22.28954274499996],[-55.872011270999934,-22.310213316999977],[-55.87438838699998,-22.31734466500002],[-55.89294022599992,-22.306802673999954],[-55.95526200399988,-22.301324970999886],[-55.97086828699992,-22.293883564999945],[-55.985234334999916,-22.283238219999873],[-55.99856685399993,-22.277243753999926],[-56.011356770999896,-22.28385833799993],[-56.02471512899992,-22.28737233399998],[-56.19679764799989,-22.27931081199999],[-56.21426428299995,-22.275383401999928],[-56.231524210999936,-22.2653581739999],[-56.26108313099988,-22.238589783000023],[-56.316842,-22.207687275999845],[-56.34733109599997,-22.180402119999926],[-56.370843872999984,-22.147329202999924],[-56.39730220599997,-22.08624766100003],[-56.407637491999964,-22.075809021],[-56.421796834999924,-22.074465433999844],[-56.4938337819999,-22.086557718999924],[-56.51130041499994,-22.091415303999852],[-56.52163570199994,-22.09989023799986],[-56.530679077999906,-22.109088643999854],[-56.54597530099996,-22.130069274999855],[-56.5490758869999,-22.13627044699993],[-56.554605265999925,-22.152083435],[-56.55801590999994,-22.15642425499999],[-56.56530228699992,-22.15993825299995],[-56.56791194699991,-22.162315368999913],[-56.58496516899996,-22.19053070099997],[-56.595739705999904,-22.201486103999937],[-56.629174356999954,-22.224740497999875],[-56.637184204999954,-22.228254495999835],[-56.64834631399989,-22.231355081999965],[-56.65470251499991,-22.237349547999898],[-56.644134684999926,-22.255436299999914],[-56.64881140199992,-22.263497822999895],[-56.6645727129999,-22.259983825999853],[-56.69860164399992,-22.223500263999924],[-56.715370646999894,-22.21543874099994],[-56.720538289999894,-22.219469502999928],[-56.72854813599989,-22.237452900999926],[-56.73319901599993,-22.244067485],[-56.743534301999944,-22.250372008999847],[-56.74560135899991,-22.248408304999984],[-56.74678991699991,-22.2439641309999],[-56.75436051499989,-22.24262054399992],[-56.786994180999955,-22.25181894899984],[-56.7945647789999,-22.252542419999923],[-56.808284871999945,-22.247994893999973],[-56.81190222199993,-22.249648538999846],[-56.81314245599995,-22.256159769999908],[-56.81965368699991,-22.265461527000014],[-56.84284041999993,-22.289009746999838],[-56.842856404999935,-22.289025980999938],[-56.85605973299991,-22.293160094999944],[-56.87954667199988,-22.289956156999892],[-56.881717081999874,-22.277243753999926],[-56.892000691999975,-22.25223236099994],[-56.90367956599996,-22.236936136999887],[-56.914789998999964,-22.262877705999838],[-56.92494441799994,-22.262360941999987],[-56.94259191899994,-22.2539893599999],[-56.9521003829999,-22.253575947999906],[-56.96052364099997,-22.25481618199994],[-56.965484578999934,-22.25088877299997],[-56.96455440299991,-22.234869079999925],[-56.97571651299992,-22.241690368999883],[-56.98646521099994,-22.241380309999897],[-57.01116654499995,-22.23383555099994],[-57.027651326999944,-22.235075784999964],[-57.0594840089999,-22.232698668999845],[-57.07162796999997,-22.235695902999936],[-57.07922440599995,-22.238589783000023],[-57.08506384299994,-22.2380730189999],[-57.090748250999894,-22.23641937199994],[-57.10847326699991,-22.233525492999945],[-57.11327917499992,-22.229391377000013],[-57.114622761999954,-22.225050557999865],[-57.11503617399998,-22.22288014699987],[-57.12418290199989,-22.21853932699989],[-57.154155232999926,-22.207997335],[-57.17038163299992,-22.205723572],[-57.177926391999875,-22.207377216999856],[-57.18361079999991,-22.21089121499999],[-57.189967,-22.21357838899985],[-57.19952714099995,-22.21285491999994],[-57.206400105999904,-22.207480569999884],[-57.20944901599992,-22.192080992999987],[-57.213789835999904,-22.188153585],[-57.22748409099992,-22.19125417099997],[-57.25244380799992,-22.210581156999837],[-57.27166743999993,-22.213785094999977],[-57.31631587799995,-22.20365651399993],[-57.33176713099996,-22.20241627999991],[-57.33305904199992,-22.205413513],[-57.33481603999991,-22.21171803799993],[-57.339932006999895,-22.21698903399995],[-57.35124914599996,-22.217195738999834],[-57.36664872199995,-22.209134216999843],[-57.37502030399992,-22.207273864999834],[-57.37863765499991,-22.213371683999966],[-57.38499385599994,-22.213268330999952],[-57.417860066999964,-22.19383799199997],[-57.432277791999894,-22.188670348999874],[-57.44318151899994,-22.18794687899988],[-57.46395544499998,-22.180402119999926],[-57.472482055999905,-22.180298766999897],[-57.51118770399992,-22.18877370199999],[-57.53459712799989,-22.174407653999978],[-57.54229691599997,-22.171513773],[-57.5546992599999,-22.17027353899988],[-57.55997025599996,-22.17161712599984],[-57.56400101799996,-22.174407653999978],[-57.57273433399993,-22.177714944999977],[-57.59671219899985,-22.181022236999894],[-57.61407548099995,-22.17699147499981],[-57.627201294999935,-22.165105895999872],[-57.63893184499992,-22.144538675999883],[-57.65448644999994,-22.10454111699991],[-57.663684855999946,-22.100613708999944],[-57.6708162029999,-22.102370706999835],[-57.67851599199988,-22.10640146899992],[-57.68962642399989,-22.109295348999908],[-57.70993526299992,-22.108468525999882],[-57.72326778199994,-22.10474782299995],[-57.73634191899989,-22.10371429399997],[-57.756185669999894,-22.110638935999873],[-57.76026810699989,-22.1107422889999],[-57.76993159999992,-22.1074349969999],[-57.77365230299992,-22.107745055999885],[-57.77561600799996,-22.111155699999912],[-57.77742468299997,-22.11704681399999],[-57.77778641799995,-22.122317809999938],[-57.77540930199989,-22.123971455999893],[-57.78750158799991,-22.129655863999844],[-57.795304727999905,-22.13099945099999],[-57.80548498499988,-22.128622334999857],[-57.81576859499997,-22.12831227699988],[-57.831788289999935,-22.141128030999948],[-57.84388057499992,-22.14371185299994],[-57.84868648299991,-22.14030120799984],[-57.86284582599995,-22.125831806999894],[-57.87137243699987,-22.121180928999934],[-57.87819372599994,-22.12211110399997],[-57.89550533099995,-22.128932393000028],[-57.90625402899988,-22.128932393000028],[-57.93999873899992,-22.11839040099997],[-57.95245275899992,-22.105988056999905],[-57.961392781999926,-22.09007171599988],[-57.97286494999995,-22.081183369999962],[-57.973133663999896,-22.081048493999898],[-57.9862491459999,-22.074465433999844],[-57.98800614499996,-22.06413014699993],[-57.98836787999996,-22.049040628999933],[-57.98681758599994,-22.035294697999902],[-57.96485510299988,-21.97669362399988],[-57.96263301599989,-21.966978454999847],[-57.95322790499992,-21.958193460999937],[-57.9299218349999,-21.917369079999943],[-57.92537430899994,-21.90496673599989],[-57.932764037999874,-21.881919046999926],[-57.94666499899994,-21.86548594199986],[-57.955915079999954,-21.851119893999865],[-57.94893876099987,-21.833859964999874],[-57.93570959499996,-21.8120525099999],[-57.93477941999993,-21.792932229999934],[-57.93844844599991,-21.77463877299988],[-57.939016886999944,-21.755311787999915],[-57.895608682999864,-21.688442484999953],[-57.90113806199988,-21.678934020999872],[-57.91178340699986,-21.673042907999957],[-57.92434077999987,-21.658676858999954],[-57.93483109599992,-21.640693460999884],[-57.939016886999944,-21.62374359099988],[-57.93214392099989,-21.60669036899985],[-57.91932816599993,-21.58395273799995],[-57.912093464999934,-21.564005635999933],[-57.92160192899994,-21.555427346999906],[-57.939792032999975,-21.548192646999937],[-57.94811193899995,-21.530519307999853],[-57.94914546799993,-21.50829844099982],[-57.945269734999954,-21.487214456999965],[-57.9299218349999,-21.453108011999916],[-57.863310913999975,-21.356886494999955],[-57.85555944799998,-21.330738219999873],[-57.86630814599991,-21.320919697999894],[-57.88232784099994,-21.31637217199996],[-57.89064774599993,-21.305933531999926],[-57.89364497999994,-21.300352477999823],[-57.89994950399994,-21.295081480999883],[-57.9049104419999,-21.287433369999903],[-57.90429032399992,-21.27492767299999],[-57.89901932799998,-21.267176207999807],[-57.870700643999974,-21.24764251699989],[-57.847859660999895,-21.216223245999856],[-57.833958699999926,-21.173848571999926],[-57.829876261999914,-21.127029724],[-57.836025756999874,-21.082484638999915],[-57.85173539199993,-21.051995543999837],[-57.85245886299995,-21.037836201999966],[-57.825380411999895,-20.998562113999824],[-57.81602697799994,-20.97541107100001],[-57.81757726999987,-20.9536036169999],[-57.836025756999874,-20.93851409899999],[-57.84031490099994,-20.955980732999844],[-57.84703283699988,-20.955980732999844],[-57.86992549599998,-20.932726339000013],[-57.89302486199997,-20.91484629299987],[-57.898089151999955,-20.91484629299987],[-57.90113806199988,-20.91236582399989],[-57.90801102699993,-20.910505472999887],[-57.91483231599997,-20.905647888999948],[-57.917932902999915,-20.894382425999908],[-57.90868282099993,-20.88156667099983],[-57.86739335199991,-20.860069274999887],[-57.85710974199991,-20.84973398799997],[-57.859641885999906,-20.831647236999956],[-57.870700643999974,-20.81645436599993],[-57.887650512999905,-20.805912373999874],[-57.90801102699993,-20.801984964999903],[-57.93395259599989,-20.79971120199988],[-57.94041215099995,-20.793613382999837],[-57.933074096999945,-20.784621683999887],[-57.917932902999915,-20.77407969099999],[-57.90666743999989,-20.76219411199989],[-57.898760945999925,-20.756613056999967],[-57.877005167999926,-20.752375589999826],[-57.865274617999916,-20.747414651999872],[-57.85767818299987,-20.739869892999835],[-57.86021032699994,-20.730258076999903],[-57.868943644999916,-20.722196552999918],[-57.8843432219999,-20.711964619999847],[-57.89064774599993,-20.706383564999925],[-57.89447180199997,-20.699975687999967],[-57.90020788599992,-20.685196227999953],[-57.90429032399992,-20.678995055999977],[-57.918087930999974,-20.669796650999885],[-57.93400427299991,-20.667419534999937],[-57.947181762999975,-20.675067647],[-57.95638016799998,-20.70989756199988],[-57.965010131999925,-20.711034443999893],[-57.97441524299998,-20.704006448999962],[-57.98061641499996,-20.692740986999908],[-57.98108150299989,-20.681165465999964],[-57.973588419999935,-20.661941832999858],[-57.973123331999936,-20.651193135999915],[-57.97782588799989,-20.640134378999832],[-57.99095170099989,-20.620600686999907],[-57.99363887599992,-20.60675140399995],[-57.99255367099991,-20.585047301999865],[-57.99332881699993,-20.573781839999896],[-58.004749308999926,-20.549803974999975],[-58.00893509999994,-20.525722756999926],[-58.01002030499996,-20.500091246999958],[-58.007901570999955,-20.479834085999954],[-57.99214025899992,-20.450895284],[-57.989401407999964,-20.43311859199997],[-58.00418086799997,-20.425160420999916],[-58.02314611899993,-20.420716246999817],[-58.04562536699992,-20.40934743199992],[-58.06712276299996,-20.39353444400001],[-58.08298742799988,-20.376171161999903],[-58.090790568999886,-20.359427998999863],[-58.09771520999987,-20.334623310999916],[-58.09993729699997,-20.309198506999817],[-58.09032548099989,-20.28170664499984],[-58.09507971299987,-20.27219818099995],[-58.103089559999944,-20.264446715999853],[-58.10975581899995,-20.260726013000024],[-58.120039428999945,-20.261346129999907],[-58.126240600999914,-20.267030537999858],[-58.130943155999915,-20.272818298999923],[-58.13704097499996,-20.27436859099994],[-58.15631628499992,-20.261656187999805],[-58.162672485999934,-20.243156025999863],[-58.155282755999934,-20.226412861999904],[-58.11854081299995,-20.214423929999953],[-58.12050451699988,-20.203881937999892],[-58.12990962699994,-20.19251312199999],[-58.13704097499996,-20.18558847999992],[-58.14406896999989,-20.183521423999863],[-58.15233719899992,-20.18465830499987],[-58.15833166499996,-20.181144307999915],[-58.15879675299996,-20.165124612999946],[-58.116318725999946,-20.150448505999876],[-58.10355464799997,-20.14404062899993],[-58.09828365099994,-20.138149515999842],[-58.08624304299988,-20.12088958799994],[-58.07957678299996,-20.117375589999977],[-58.053531860999975,-20.107660420999935],[-58.02237097199991,-20.06497568699986],[-57.99710119599993,-20.055260517999912],[-57.98568070499994,-20.053090107999918],[-57.97581050699995,-20.047509053999903],[-57.968937540999974,-20.0397575879999],[-57.96635371899989,-20.031075947999938],[-57.95917069499993,-20.026218363],[-57.94320267799989,-20.028078714999836],[-57.917932902999915,-20.03417653399988],[-57.895608682999864,-20.024151305999865],[-57.881139281999936,-20.00916514099997],[-57.86977046799988,-19.992938740999957],[-57.85974523899991,-19.9801229859999],[-57.9604626059999,-19.89309987399986],[-58.041129516999916,-19.82344004299992],[-58.1169388429999,-19.758017679999853],[-58.12463863099989,-19.72990569999982],[-58.0897570399999,-19.659419046999943],[-58.0774580479999,-19.634717712999944],[-58.05048295099993,-19.58014739999983],[-58.023559529999936,-19.52568043999983],[-58.011260538999885,-19.500875752999974],[-58.011208862999894,-19.500875752999974],[-58.011208862999894,-19.500772398999857],[-58.011208862999894,-19.500669046999832],[-57.98004797399991,-19.438864034],[-57.91162837699991,-19.302851663999874],[-57.843105428999905,-19.166839294999818],[-57.81204789199995,-19.10503428099983],[-57.789000203999905,-19.059248961999884],[-57.77189530499996,-19.048706970999913],[-57.71582637599991,-19.0445728549999],[-57.721769164999934,-19.0011646519999],[-57.72755692599992,-18.94194346099991],[-57.73179439299994,-18.921996357999973],[-57.742233032999906,-18.913624777],[-57.782333943999895,-18.910420836999933],[-57.77106848199991,-18.876314391999884],[-57.72399125199993,-18.733687438999837],[-57.67701737499996,-18.591060485999872],[-57.63004349799991,-18.448433533],[-57.583017943999955,-18.30570322599985],[-57.56673986799992,-18.256093850999946],[-57.5538724369999,-18.24451833099999],[-57.535734008999974,-18.24048756899991],[-57.466797648999936,-18.23955739399987],[-57.465660766999946,-18.21774993899993],[-57.474549112999874,-18.208034768999894],[-57.49072383699988,-18.205554301],[-57.51118770399992,-18.205554301],[-57.55108190999997,-18.183643492999877],[-57.585498412999925,-18.122768656999924],[-57.63691646399988,-18.001122334999977],[-57.73008907099998,-17.846093037999864],[-57.6987731529999,-17.843095804999933],[-57.696809448999936,-17.82511240699986],[-57.71133052599989,-17.800824482999957],[-57.72931392399997,-17.779327087],[-57.73298295099996,-17.768475036999874],[-57.724456339999875,-17.736642353999912],[-57.740372680999876,-17.73023447699988],[-57.75489375899994,-17.720622659999872],[-57.76755448399987,-17.70873708099994],[-57.777941446999904,-17.695507913999933],[-57.78589961799994,-17.677524514999945],[-57.78796667499992,-17.658921],[-57.787553263999904,-17.620473733999944],[-57.78956864399996,-17.60414398199991],[-57.78827673399991,-17.58057952899992],[-57.79075720299996,-17.555774840999973],[-57.800730753999886,-17.533450622999823],[-57.814425007999915,-17.519704691999962],[-57.83674922699987,-17.511023051],[-57.8541125079999,-17.508542581999933],[-57.877005167999926,-17.51226328499986],[-57.90568558799989,-17.520324808999945],[-57.943564412999905,-17.517844339999968],[-57.98149491399992,-17.508749286999898],[-58.01017533399992,-17.496760354999846],[-58.0536868899999,-17.462343851999975],[-58.065727498999905,-17.455935973999857],[-58.10112585499991,-17.44125986699987],[-58.11202958199996,-17.433508401999944],[-58.1393664149999,-17.404569599999988],[-58.15223384599988,-17.39640472399988],[-58.163189249999874,-17.393407490999948],[-58.174558065999946,-17.392063903999897],[-58.18840734899993,-17.38854990699994],[-58.20406530799996,-17.377387796999912],[-58.220240030999975,-17.344314880000013],[-58.23155716999995,-17.32974212599987],[-58.23992875199991,-17.325194599999918],[-58.25615515199993,-17.322507425999902],[-58.264526733999894,-17.32002695699992],[-58.27439693199997,-17.314032490999974],[-58.29227697799993,-17.299666442999893],[-58.30214717699993,-17.293775328999985],[-58.31217240399993,-17.290881449999816],[-58.34369502799992,-17.286954040999845],[-58.38116044199998,-17.267213642999877],[-58.39914383999987,-17.23744801799998],[-58.40482824699993,-17.19962087],[-58.40627518799991,-17.110117288999973],[-58.4109777429999,-17.088206481999848],[-58.4216230879999,-17.07063649499996],[-58.42679073099989,-17.055236917999963],[-58.432475138999926,-16.985370380999896],[-58.43919307499996,-16.967283629999883],[-58.45634965099992,-16.937001240999862],[-58.46627152599993,-16.887288512999945],[-58.46663326099991,-16.875506285999933],[-58.46404943899992,-16.866101174999983],[-58.455109415999885,-16.848324482999956],[-58.45293900599998,-16.841296487999852],[-58.45624629799991,-16.802435811999985],[-58.47665848799994,-16.726988219999896],[-58.48027583899991,-16.683683369999926],[-58.47267940299986,-16.649576924999863],[-58.45588456299989,-16.61908783],[-58.35609737199988,-16.509533792999985],[-58.342661498999945,-16.473153584999835],[-58.36359045399993,-16.43667002299982],[-58.36229854399997,-16.419306741999975],[-58.338837442999896,-16.400496520999965],[-58.33454829899991,-16.38664723699992],[-58.33956091399998,-16.28928883899995],[-58.34974117099994,-16.280400491999856],[-58.3929426679999,-16.279366963999877],[-58.4003323979999,-16.284224547999983],[-58.414233357999876,-16.308925882999816],[-58.4216230879999,-16.31843434599989],[-58.4422419839999,-16.32845957499991],[-58.46472123299989,-16.33125010199987],[-58.53696488499991,-16.328769632999894],[-58.72744421499988,-16.32215504899999],[-58.91776851499989,-16.315437113999877],[-59.10824784399994,-16.308719176999944],[-59.29867549699989,-16.302104593999857],[-59.4891031499999,-16.295386656999924],[-59.6795566409999,-16.288772074999926],[-59.87001013199992,-16.282157490999836],[-60.06041194699995,-16.275439554999906],[-60.12983923399992,-16.273062438999943],[-60.160690063999915,-16.264794209999987],[-60.17981034299991,-16.222006122999883],[-60.18696752999995,-16.10873138399991],[-60.19376297999988,-16.001451109999863],[-60.20699214699987,-15.85303639699984],[-60.22482051599994,-15.651394957999855],[-60.237972167999914,-15.502670185999845],[-60.24639542599991,-15.4782789099999],[-60.2604514159999,-15.456058043999873],[-60.352125406999924,-15.349604593999855],[-60.46018082699987,-15.224237568999968],[-60.529478922999914,-15.143725686999899],[-60.582240559999946,-15.098870543999922],[-60.38930659999991,-15.096493428999878],[-60.27497249399997,-15.095149840999822],[-60.26980484999987,-15.083367615],[-60.272905436999906,-15.018565367999983],[-60.276858683999954,-14.936606546999839],[-60.28088944499987,-14.854647724999948],[-60.284868530999944,-14.772688902999986],[-60.288821777999914,-14.690730082000014],[-60.291715657999895,-14.6300619499999],[-60.30404048699995,-14.608151142999972],[-60.35271968599997,-14.575388284999887],[-60.36920446799987,-14.542832132999846],[-60.338431151999906,-14.53260019899996],[-60.34380550199995,-14.490948994999854],[-60.37669755099998,-14.41994557699995],[-60.3913478189999,-14.357107034999885],[-60.39992610699991,-14.340777281999848],[-60.45431555199989,-14.296645609999855],[-60.46434077999991,-14.278352151999883],[-60.46563269099997,-14.251066995999963],[-60.46201534099989,-14.223885192999887],[-60.462402913999966,-14.198460387999958],[-60.47568375699989,-14.176032816999964],[-60.47893937199987,-14.162700296999944],[-60.47764746199993,-14.139962666999963],[-60.473513345999926,-14.117225036999812],[-60.468268188999865,-14.103685811999924],[-60.46139522399991,-14.098621520999856],[-60.437236490999936,-14.092006937999855],[-60.41943396099992,-14.076917418999855],[-60.40940873199988,-14.055316669999883],[-60.39651546199988,-14.008394470999932],[-60.38796301299996,-13.98937754299996],[-60.38718786699994,-13.983279724],[-60.389694173999935,-13.974908141999933],[-60.39574031599997,-13.970980733999951],[-60.40542964799991,-13.966743265999822],[-60.41160498099989,-13.960542094000019],[-60.40672155799988,-13.950413512999972],[-60.40863358599998,-13.944522399999883],[-60.4304410399999,-13.926745706999853],[-60.4385542409999,-13.918374124999957],[-60.448812011999905,-13.896773375999985],[-60.4573127859999,-13.870935160999977],[-60.46312638399988,-13.843443297999912],[-60.465270955999955,-13.816571553],[-60.472634846999966,-13.797864684999835],[-60.49061824599994,-13.78773610499988],[-60.56606583699993,-13.769959411999933],[-60.5751350509999,-13.765618590999964],[-60.57957922399992,-13.76107106500001],[-60.58487605799987,-13.74908213199997],[-60.58862259999998,-13.744534606999848],[-60.595082153999925,-13.741640725999858],[-60.61807816599989,-13.736886494999865],[-60.65270137599989,-13.718799742999932],[-60.725571722999916,-13.662844601],[-60.80196875099994,-13.604181415999903],[-60.87067256699993,-13.575449320999978],[-60.87824316399988,-13.57038503000001],[-60.89674332699991,-13.552918395999882],[-60.929299478999944,-13.546200458999948],[-60.977875325999946,-13.542996520999964],[-61.02200699899992,-13.53524505599988],[-61.04125646999995,-13.515194600999834],[-61.04125646999995,-13.474576924999894],[-61.0472250979999,-13.464551696999962],[-61.060118367999905,-13.467135518999953],[-61.07218481499987,-13.474370218999923],[-61.07600886999989,-13.47829762799999],[-61.1187194419999,-13.48449879899998],[-61.133576415999954,-13.494007262999872],[-61.1393124999999,-13.514057719],[-61.14910518399994,-13.519845478999983],[-61.21504431199988,-13.51746836299985],[-61.2378852949999,-13.524393004999837],[-61.24855647799998,-13.524393004999837],[-61.2600286469999,-13.520052184999855],[-61.28121598299995,-13.50723642999995],[-61.317131103999905,-13.50093190499986],[-61.33237565199997,-13.494834085999898],[-61.347723551999934,-13.49369720499989],[-61.41547135399995,-13.528113707999935],[-61.4587503669999,-13.54371999099996],[-61.50342464199994,-13.548164163999886],[-61.55081193099992,-13.53803558300001],[-61.56086299699992,-13.532661233999875],[-61.58807063899993,-13.50764984099996],[-61.593060170999934,-13.506794492999987],[-61.59711401399988,-13.506099547999952],[-61.66809159399988,-13.5125074259999],[-61.69289628099991,-13.517985127999978],[-61.71573726399992,-13.526563414999911],[-61.735115926999896,-13.53803558300001],[-61.75433955999991,-13.530284118999916],[-61.774234985999925,-13.533384704999875],[-61.79428544099997,-13.540309345999857],[-61.81397416199991,-13.544236755999918],[-61.83635005699997,-13.540619404999845],[-61.84797725399994,-13.530800881999951],[-61.86859615099987,-13.46393157899989],[-61.87231685399988,-13.456076761999867],[-61.87991328999994,-13.449152119999965],[-61.899498657999935,-13.43923024499989],[-61.909833943999864,-13.431892190999973],[-61.95835811399993,-13.385486754999889],[-61.975359660999885,-13.374117940999895],[-61.99778723199995,-13.364092711999874],[-62.003264933999844,-13.360475361999889],[-62.01866450999992,-13.336807555999954],[-62.019698038999906,-13.332570088999987],[-62.033598998999906,-13.3255420939999],[-62.07773067299987,-13.27789642299986],[-62.099228068999935,-13.262600198999804],[-62.10940832599987,-13.248957620999889],[-62.11245723499991,-13.231801045999916],[-62.112508910999935,-13.164776712999823],[-62.11467932199991,-13.150203958999953],[-62.12046708199997,-13.148757018999959],[-62.12914872299988,-13.15092742899995],[-62.139845743999864,-13.147000020999968],[-62.16237666899988,-13.120748392999857],[-62.17245357299993,-13.11785451299987],[-62.17395218999994,-13.140798848999893],[-62.20092728699987,-13.12271209699989],[-62.21152095499994,-13.120334981999846],[-62.22164953699988,-13.121265156999897],[-62.25916662599988,-13.130773619999971],[-62.273636026999924,-13.13842173299986],[-62.290327514999944,-13.142039082999844],[-62.310533,-13.133977558999945],[-62.321591756999936,-13.14369272899998],[-62.33502762899988,-13.145139668999972],[-62.38184647699993,-13.139868672999851],[-62.38970129399994,-13.13707814499989],[-62.406702840999884,-13.126536152999833],[-62.41026851399994,-13.12570933],[-62.42411779799991,-13.126536152999833],[-62.42747676599989,-13.124572448999983],[-62.42871700099994,-13.114547220999953],[-62.430939086999864,-13.10979298899997],[-62.45848262599992,-13.077960305999838],[-62.472125203999944,-13.068451843999851],[-62.49269242399992,-13.065041199],[-62.55460078899994,-13.066798196999898],[-62.6416755779999,-13.03000457799999],[-62.64518957599994,-13.025353698999922],[-62.64751501499998,-13.001582539999958],[-62.65133907099994,-12.99248748799999],[-62.65790197799993,-12.984632669999954],[-62.667462117999925,-12.97636444099983],[-62.68663407399992,-12.964995625999933],[-62.698984740999975,-12.966649270999966],[-62.70916499899994,-12.97460744199985],[-62.72203242999992,-12.982565611999817],[-62.741307739999876,-12.98535613999995],[-62.7578958739999,-12.985149433999908],[-62.768644571999914,-12.990627135999901],[-62.7704532479999,-13.010470885999892],[-62.7898319099999,-13.000652363999833],[-62.807401895999924,-12.98887013799991],[-62.82016597499989,-12.974917500999837],[-62.825075236999936,-12.958691101],[-62.82667720599997,-12.950009459999947],[-62.83143143799995,-12.944945169999968],[-62.83892451999989,-12.942774759999807],[-62.84900142399994,-12.942154642999839],[-62.860111857999954,-12.94029429099983],[-62.86507279499992,-12.935540059000019],[-62.867914998999964,-12.929028828999945],[-62.920469930999865,-12.862262879],[-62.92377722199987,-12.85285776799995],[-62.92889318899994,-12.846036478999821],[-62.93803991699994,-12.849447122999848],[-62.94651485199992,-12.855234883999913],[-62.95514481599989,-12.857508646999916],[-62.96449824999993,-12.856578470999878],[-62.975298624999965,-12.85285776799995],[-62.988011026999914,-12.843866068000011],[-62.99917313699992,-12.829086608999987],[-63.007079630999975,-12.809966328999819],[-63.010025187999894,-12.787952168999837],[-63.01472774299995,-12.777720234999947],[-63.02568314599995,-12.765731301999892],[-63.04790401299996,-12.746714376000014],[-63.051107950999956,-12.74216684999989],[-63.05219315699994,-12.736482441999852],[-63.051107950999956,-12.730798034999893],[-63.04345983899989,-12.719119160999838],[-63.04707718999995,-12.713538106],[-63.053588419999926,-12.708370462999909],[-63.05782588799988,-12.70196258599995],[-63.064750529999856,-12.666202493999947],[-63.07503413999987,-12.652663268999873],[-63.10521317599994,-12.645221862999945],[-63.125056925999836,-12.635920104999911],[-63.136684122999895,-12.63374969500002],[-63.139474649999954,-12.635610046999844],[-63.167069864999945,-12.647392272999937],[-63.17166906799991,-12.652353209999886],[-63.17611324099991,-12.663618672999945],[-63.180712443999965,-12.667856139999813],[-63.18557002799989,-12.668476256999952],[-63.19730057799998,-12.66682261099983],[-63.20184810499992,-12.667856139999813],[-63.22267370599988,-12.68253224599998],[-63.23202714099991,-12.691110535],[-63.23595454999989,-12.698551940999849],[-63.247323363999946,-12.701342467999979],[-63.31791337099994,-12.70196258599995],[-63.33041906699995,-12.697001646999908],[-63.359461221999936,-12.674677428999857],[-63.37108841999989,-12.669923196999946],[-63.39330928599992,-12.664548848999814],[-63.43144649299998,-12.63695363399999],[-63.43521887199992,-12.630339049999819],[-63.43816442899992,-12.619176940999878],[-63.44534745399998,-12.614836119999893],[-63.45423579999988,-12.612045592999934],[-63.46250402899994,-12.605120950999861],[-63.46637976199989,-12.595302428999885],[-63.46699987799994,-12.58579396499999],[-63.46875687699991,-12.57576873799988],[-63.47619828399986,-12.564813333999894],[-63.48575842299993,-12.55747528099991],[-63.49614538599988,-12.553341165999882],[-63.507514201999946,-12.551584166999817],[-63.520226602999905,-12.551170755999804],[-63.54218908699997,-12.547966816999832],[-63.55872554599998,-12.539905292999833],[-63.60042842699991,-12.506108906999854],[-63.6548437089999,-12.478306985999893],[-63.65773758999998,-12.47541310599982],[-63.80139807199993,-12.454949238999859],[-63.814988973999895,-12.457223001999864],[-63.8455814209999,-12.466938171999814],[-63.86289302599991,-12.469211934999832],[-63.86320308499989,-12.474792988999852],[-63.89689611799997,-12.515720722999859],[-63.90247717299987,-12.525435891999805],[-63.909143433,-12.534324238999915],[-63.92123571799996,-12.544349466999847],[-63.93906408699993,-12.54414276099989],[-63.950019490999885,-12.536804707999892],[-63.95932124899991,-12.52801971399981],[-63.972447062999976,-12.523885599999884],[-64.00417639199992,-12.535461120999827],[-64.02283158399987,-12.537838235999871],[-64.04445817099995,-12.509106139999872],[-64.10445450899996,-12.507142435999839],[-64.11982824699993,-12.489675801999795],[-64.1347627369999,-12.510863138999852],[-64.14478796399993,-12.520371601999926],[-64.15525244199995,-12.516960957999814],[-64.18310603899994,-12.4879188029999],[-64.19754960099995,-12.478720396999817],[-64.21522294099995,-12.473759459999869],[-64.23656530799994,-12.47541310599982],[-64.24571203599992,-12.47944386799982],[-64.25682246899996,-12.490812682999888],[-64.26385046399989,-12.495256855999811],[-64.26870804899997,-12.497220560999835],[-64.27824235099988,-12.499287617999896],[-64.2875441079999,-12.497117207999821],[-64.29769852799987,-12.465697936999874],[-64.31265885399992,-12.461873879999843],[-64.35319901599993,-12.469211934999832],[-64.37676346899994,-12.46590464299983],[-64.39572871899988,-12.457326354999807],[-64.41133500199993,-12.445130716999884],[-64.4248742269999,-12.431384785999851],[-64.43236730999988,-12.420946146999908],[-64.44407202199994,-12.399758808999863],[-64.45252111899993,-12.390353697999899],[-64.46164200899992,-12.38528940799992],[-64.48363033099989,-12.377641296999853],[-64.48977982599988,-12.373610533999852],[-64.49244116299988,-12.356557311999907],[-64.47443192599988,-12.316456400999826],[-64.46931595899989,-12.294855651999853],[-64.46815323999996,-12.272634785999827],[-64.46905757699992,-12.261059264999872],[-64.47303666199991,-12.253204446999845],[-64.48939225299995,-12.2394585159999],[-64.49424983799989,-12.23801157599982],[-64.50884842999994,-12.236047871999872],[-64.51024369299991,-12.237288105999909],[-64.51034704599994,-12.239561868999829],[-64.51148392799996,-12.242662454999873],[-64.53210282399996,-12.232223815999845],[-64.54843257699989,-12.219098001999866],[-64.55489213099995,-12.217754414999902],[-64.58104040599994,-12.217444355999831],[-64.59341691099989,-12.215997415999837],[-64.6405716549999,-12.19512013699986],[-64.66485957799992,-12.18096079499982],[-64.67534989499998,-12.171038919999901],[-64.67718440799986,-12.167628274999885],[-64.68594356299994,-12.159153339999875],[-64.6889924729999,-12.153882343999854],[-64.68857906199989,-12.147164408999828],[-64.68157690499996,-12.134865416999885],[-64.68157690499996,-12.126597187999833],[-64.6864603269999,-12.109957376999914],[-64.68992264899993,-12.104376321999894],[-64.7063815919999,-12.106133320999872],[-64.71028316299996,-12.11192108099985],[-64.71364213099989,-12.13848276699987],[-64.7162776289999,-12.146544290999856],[-64.7283957519999,-12.149851582999858],[-64.73953202399991,-12.144580585999918],[-64.74418290299988,-12.133625182999848],[-64.73679317199998,-12.119775898999876],[-64.76857417799991,-12.086496276999839],[-64.78048559599993,-12.067686055999928],[-64.78518815099991,-12.047428893999921],[-64.7925003659999,-12.032546080999794],[-64.80929520699996,-12.025828144999863],[-64.82761450299994,-12.022314147999808],[-64.83983597899996,-12.016733092999885],[-64.86208268299993,-12.02479461699987],[-64.88350256399994,-12.021383971999853],[-64.90448319599994,-12.014045918999855],[-64.92515376799993,-12.009911803999927],[-64.96760595699999,-12.007948099999808],[-64.98344478399989,-12.003917337999894],[-64.9974490969999,-11.996269225999825],[-65.00943802899994,-11.98428029299987],[-65.01633683299991,-11.968467304999875],[-65.01463151099993,-11.950277200999835],[-65.00085974099991,-11.931053567999811],[-64.99649308299993,-11.921235045999834],[-64.99812088999997,-11.9089360549998],[-65.00458044499993,-11.898394062999927],[-65.01452815799993,-11.893846536999886],[-65.01793880199995,-11.893639830999843],[-65.02809322099992,-11.888885598999849],[-65.03367427599994,-11.879790547999875],[-65.03845434599992,-11.8584998569998],[-65.03920365399995,-11.848681334999824],[-65.03744665499997,-11.828424173999819],[-65.03845434599992,-11.818709004999874],[-65.04331193099993,-11.807650247999874],[-65.05630855399997,-11.78563608799989],[-65.06555863499999,-11.75307993599985],[-65.08106156499991,-11.743468118999843],[-65.09919999199994,-11.736233418999873],[-65.11356603999994,-11.722590839999867],[-65.11046545499991,-11.699956563999818],[-65.1134110109999,-11.690551452999854],[-65.12785457399991,-11.69458221399985],[-65.13397823199998,-11.70264373799985],[-65.13800899299989,-11.71525278699987],[-65.14353837099989,-11.763828633999864],[-65.15149654199993,-11.773130390999896],[-65.16446732599988,-11.769823099999897],[-65.18245072499997,-11.756697285999834],[-65.1961966559999,-11.74181447299989],[-65.20185522499992,-11.727965189999836],[-65.20232031299994,-11.69148162899991],[-65.20025325499998,-11.681973164999832],[-65.19133907099987,-11.66688364599983],[-65.18927201299991,-11.657065123999857],[-65.19335445199991,-11.632363789999857],[-65.19092565999995,-11.623165384999849],[-65.16743872199999,-11.615517272999867],[-65.17397578999996,-11.606525572999827],[-65.1954473479999,-11.592159524999827],[-65.20735876499992,-11.58761199899989],[-65.21454178899998,-11.587508645999861],[-65.21924434399993,-11.584511413999849],[-65.22340429699997,-11.5710755409998],[-65.22361100299995,-11.557949726999837],[-65.21598872899997,-11.539966328999853],[-65.21598872899997,-11.530147806999878],[-65.22265498899989,-11.517435403999825],[-65.233041952,-11.508340352999852],[-65.25756241899995,-11.495317890999914],[-65.29246984899994,-11.504723001999864],[-65.31954829999991,-11.476404316999876],[-65.3530087899999,-11.39062143899987],[-65.35476578799998,-11.382353209999819],[-65.3537322599999,-11.37243133499983],[-65.34750524999988,-11.360752460999848],[-65.33006445399988,-11.340495300999848],[-65.32644710299988,-11.327782897999896],[-65.33481868499987,-11.321168313999806],[-65.35391312699994,-11.310626322999836],[-65.37448034699995,-11.29584686199982],[-65.38727026399991,-11.277553404999848],[-65.38861385099997,-11.253162129999822],[-65.37861446099996,-11.242000019999878],[-65.36605708899995,-11.234041848999821],[-65.3600109459999,-11.218848978999802],[-65.36833085099997,-11.20541310599985],[-65.38520320699993,-11.193630879999844],[-65.39814815299988,-11.178024596999903],[-65.39473750899992,-11.153426614999914],[-65.37967382799994,-11.136373391999882],[-65.34104569599995,-11.10660776799989],[-65.33329422999994,-11.088521016999877],[-65.33704077199988,-11.06774708999984],[-65.3426993409999,-11.050590514999882],[-65.34197587199989,-11.032813821999852],[-65.32644710299988,-11.009352721999875],[-65.31784297699993,-11.002014668999877],[-65.30965226199993,-10.996640318999823],[-65.30298600299992,-10.990749205999819],[-65.29911027099988,-10.982067565999854],[-65.29960119599988,-10.96966522199989],[-65.30451045799992,-10.96201710999982],[-65.31011734999996,-10.956539407999827],[-65.31277868699996,-10.95095835299982],[-65.31897985899994,-10.865382181999863],[-65.32711889699996,-10.85049936899982],[-65.34218257699987,-10.834893085999866],[-65.36029516599986,-10.822594095999833],[-65.39969844599997,-10.812258808999914],[-65.40473689799995,-10.799236348999884],[-65.38977657099989,-10.753761087999834],[-65.38225764999996,-10.715623880999871],[-65.38106909199993,-10.698053893999884],[-65.38675349899995,-10.669528502999839],[-65.4007836509999,-10.655472512999921],[-65.41861202099992,-10.644517109999853],[-65.43569108199995,-10.625810241999858],[-65.43563940499996,-10.610824075999801],[-65.4292315269999,-10.56142140699987],[-65.43199621599987,-10.550672708999855],[-65.43589778699993,-10.546952005999842],[-65.43930843199993,-10.538167011999846],[-65.44163387099988,-10.527831725999846],[-65.4424865319999,-10.519356790999836],[-65.44147884099993,-10.513362324999903],[-65.43672460899995,-10.504060566999883],[-65.43569108199995,-10.49920298299986],[-65.43791316799988,-10.492588398999871],[-65.44997961499993,-10.474915059999859],[-65.44997961499993,-10.46809376999991],[-65.42538163299997,-10.463132832999861],[-65.41093806999993,-10.449180195999872],[-65.38727026399991,-10.406702168999828],[-65.39143021699994,-10.403498228999865],[-65.39308386199988,-10.400190937999866],[-65.39473750899992,-10.392439472999854],[-65.39464619599994,-10.392070069999846],[-65.3901899819999,-10.374042662999855],[-65.37923457899993,-10.351408385999903],[-65.36502355999995,-10.33218475299988],[-65.32781652899988,-10.314408060999853],[-65.31562089099995,-10.291257018999856],[-65.30536311899996,-10.242164408999827],[-65.28807735199987,-10.216222838999869],[-65.28482173699987,-10.20681772799982],[-65.28683711799991,-10.19648244199982],[-65.29681066899994,-10.173331400999828],[-65.29911027099988,-10.16299611399991],[-65.3014615479999,-10.119691263999854],[-65.3055698249999,-10.098400572999864],[-65.32414750199987,-10.046414081999842],[-65.33293249599996,-10.008380228999897],[-65.33683406599991,-9.967245788999831],[-65.33329422999994,-9.926834817999847],[-65.32523270699993,-9.90513071699985],[-65.30358028199996,-9.86451304099991],[-65.29911027099988,-9.841258645999801],[-65.30438126699997,-9.82565236399985],[-65.31660274299992,-9.812526549999887],[-65.33032283599994,-9.80074432399988],[-65.34006384299997,-9.789685566999879],[-65.3537322599999,-9.745037128999854],[-65.35605769899992,-9.741626484999825],[-65.37050126199995,-9.710620625999809],[-65.39799312399992,-9.686746113999902],[-65.41623490499998,-9.680131530999814],[-65.4424865319999,-9.67982147199993],[-65.45183996699987,-9.68137176499985],[-65.46522416199987,-9.696461282999849],[-65.51077693699996,-9.734081725999872],[-65.5171331379999,-9.74317677799985],[-65.52139644399995,-9.758576354999832],[-65.52542720599993,-9.767878111999861],[-65.53532324199995,-9.78245086599982],[-65.54682124799987,-9.79516326899987],[-65.55080033399994,-9.79702362099988],[-65.56281510499991,-9.799194029999867],[-65.56798274799989,-9.802087910999859],[-65.56992061399993,-9.80601531999983],[-65.57061824599992,-9.81583384199989],[-65.57188431899996,-9.818831074999892],[-65.57705196199996,-9.826169128999892],[-65.5793774009999,-9.832783710999891],[-65.58397660399996,-9.83722788499989],[-65.59612056499995,-9.837951353999898],[-65.61438818399992,-9.833920592999903],[-65.62888342299996,-9.826892597999802],[-65.6584940189999,-9.80735890699988],[-65.66371333799992,-9.80291473299988],[-65.67262752399995,-9.792579446999866],[-65.67895788699988,-9.789375507999807],[-65.68360876499992,-9.789892272999836],[-65.69435746299993,-9.793716328999878],[-65.69707047499989,-9.794336445999846],[-65.70505448499995,-9.793302916999863],[-65.71311600799993,-9.794233092999917],[-65.7173017989999,-9.791235859999816],[-65.71373612499991,-9.778730162999807],[-65.7099637449999,-9.755992532999825],[-65.72549251399991,-9.756819355999852],[-65.76319046999996,-9.772322285999863],[-65.77244055299988,-9.768808287999903],[-65.77734981299999,-9.763433939999857],[-65.7799594729999,-9.755992532999825],[-65.78220739799991,-9.74627736399988],[-65.78856359899993,-9.733048196999889],[-65.79450638799995,-9.737699075999856],[-65.80264542699987,-9.757336120999895],[-65.8038856609999,-9.764777526999822],[-65.80370479399994,-9.775526224999837],[-65.8064178059999,-9.784414570999855],[-65.81652054899992,-9.785964863999865],[-65.82212744199995,-9.781830748999852],[-65.8273984379999,-9.77397593099991],[-65.83166174399994,-9.765294290999861],[-65.83406469699992,-9.758266295999846],[-65.85042028899993,-9.77531951899988],[-65.86246089699992,-9.781830748999852],[-65.87442399099986,-9.781313984999896],[-65.91527421099997,-9.771702168999894],[-65.92933020099989,-9.770255227999897],[-65.94695186399989,-9.771392109999823],[-65.96565873199995,-9.776766458999873],[-66.0103846849999,-9.804051614999878],[-66.02947912699992,-9.808289082999833],[-66.0427858079999,-9.804878437999903],[-66.06932165499992,-9.790098978999893],[-66.081724,-9.78565480499988],[-66.08699499599993,-9.78451792399987],[-66.10198116099991,-9.787411804999863],[-66.10606359899992,-9.790409036999876],[-66.11311743199994,-9.80239796899984],[-66.11818172199992,-9.80601531999983],[-66.12358190899997,-9.805085143999861],[-66.12792272999994,-9.80115773499989],[-66.13169510899988,-9.79702362099988],[-66.13546748899996,-9.79516326899987],[-66.1906579189999,-9.80084767699982],[-66.2079695239999,-9.808082376999877],[-66.23897538299991,-9.828132831999838],[-66.25732051599991,-9.834850768999857],[-66.35527319399992,-9.849630227999867],[-66.3717321369999,-9.855934752999884],[-66.41327998899997,-9.879189147999808],[-66.43271032799996,-9.886113788999879],[-66.45286413599993,-9.888697611999888],[-66.51384232599992,-9.883943379999891],[-66.63187129799988,-9.904303893999924],[-66.64261999599996,-9.907921243999807],[-66.64890434599994,-9.915853948999894],[-66.64892451999992,-9.915879414999864],[-66.65249019399997,-9.926111348999854],[-66.6548156339999,-9.93717010499985],[-66.66008662899995,-9.945334980999874],[-66.67000850399992,-9.951536152999864],[-66.75160559199992,-9.982645364999911],[-66.77062251799998,-9.992567240999904],[-66.90265580299996,-10.093129576999928],[-67.06429968299997,-10.256943867999837],[-67.11003332599998,-10.282575377999905],[-67.120730347,-10.284539082999842],[-67.14176265499992,-10.28557261199991],[-67.15173620699991,-10.288983254999847],[-67.15907425999993,-10.297148131999862],[-67.1648620199999,-10.308516947999848],[-67.17230342699992,-10.31957570399986],[-67.18470576999997,-10.32670705199989],[-67.20175899299991,-10.326810403999914],[-67.24103308199997,-10.316371764999884],[-67.2591715089999,-10.313684590999856],[-67.3006676839999,-10.315131529999846],[-67.32350866699991,-10.318852233999863],[-67.33782303899997,-10.326086933999832],[-67.33942500899991,-10.334871927999814],[-67.33368892399997,-10.356679382999843],[-67.33529089399991,-10.366291198999846],[-67.34283565299995,-10.372492370999836],[-67.35348099799995,-10.37621307399985],[-67.36500484199988,-10.378073424999855],[-67.40918819199996,-10.378796894999851],[-67.4183349199999,-10.381484069999871],[-67.42929032499993,-10.390372415999892],[-67.43187414599993,-10.397917174999847],[-67.43223588099994,-10.40608205199986],[-67.43662837799994,-10.417450866999857],[-67.45052933799991,-10.435951028999881],[-67.46804764899987,-10.452280781999903],[-67.48820145699995,-10.464786477999908],[-67.5293358979999,-10.478532409999843],[-67.56509598799994,-10.495895690999859],[-67.58462967899993,-10.501786803999863],[-67.5999775809999,-10.515429381999866],[-67.61113968999996,-10.528761900999896],[-67.6308284109999,-10.559561054999861],[-67.64348913599994,-10.574547219999843],[-67.67382320199997,-10.599351907999875],[-67.68467525199992,-10.610514017999902],[-67.6960440679999,-10.640486347999854],[-67.7051391199999,-10.676659850999883],[-67.7217272549999,-10.7054953],[-67.75578202299994,-10.714176940999877],[-67.77495397999986,-10.706528828999893],[-67.81427974499994,-10.675936380999886],[-67.83334834799993,-10.664980976999814],[-67.84776607299995,-10.660950215999904],[-67.8626488859999,-10.658779804999824],[-67.98181473899987,-10.664360859999846],[-68.01023677599997,-10.659709980999878],[-68.02713496999988,-10.66177703899993],[-68.04377478099991,-10.666944681999837],[-68.07457393399997,-10.68172414099986],[-68.0978800049999,-10.697743834999812],[-68.11209102399997,-10.714073587999849],[-68.14728267499993,-10.779599303999845],[-68.20355830899989,-10.838923848999869],[-68.21756262199992,-10.858044127999861],[-68.24376257399992,-10.91695526099987],[-68.25750850499989,-10.938762714999896],[-68.27435502199995,-10.960053405999872],[-68.2933202719999,-10.978966979999825],[-68.31383581599997,-10.993436380999853],[-68.3311474199999,-11.000464375999854],[-68.3782763269999,-11.005011900999888],[-68.3964147549999,-11.014417011999853],[-68.42819576099996,-11.043665872999895],[-68.44240677899992,-11.047696634999795],[-68.4596667079999,-11.044802753999903],[-68.47656490099989,-11.044802753999903],[-68.49330806499995,-11.047386575999907],[-68.53609615099995,-11.061545918999855],[-68.58803096599988,-11.098649596999833],[-68.6157295329999,-11.112498880999807],[-68.75833064899996,-11.141127623999878],[-68.77592647399993,-11.140610859999839],[-68.78398799699991,-11.135339863999901],[-68.78701106799993,-11.126038105999882],[-68.79117102099988,-11.08511037199986],[-68.78564164299988,-11.059272154999846],[-68.7739886069999,-11.035087584999872],[-68.75763301699996,-11.01193654399988],[-68.77455704799988,-11.003461608999869],[-68.8046585699999,-10.994676615999879],[-68.83168534399996,-11.000361021999836],[-68.85891882399997,-11.010489603999885],[-68.88403356999989,-11.016380716999876],[-68.90814062499996,-11.013383483999874],[-68.95542456099992,-11.000464375999854],[-68.97893733799988,-11.00170460999989],[-68.98338151099998,-11.002428079999888],[-68.99250240099988,-11.002428079999888],[-68.9969982509999,-11.00170460999989],[-69.07130896099997,-10.969975279999872],[-69.08688940499991,-10.967184752999827],[-69.12148677599991,-10.970595397999844],[-69.1585129399999,-10.962120462999849],[-69.23680273499994,-10.952922057999842],[-69.29351761899997,-10.954989114999902],[-69.32958776899997,-10.949408059999882],[-69.36307409699994,-10.940106301999862],[-69.3959403079999,-10.935042011999883],[-69.46337805199991,-10.951268411999889],[-69.50288468499994,-10.95529917399989],[-69.57763464399993,-10.952301940999874],[-69.59623815899991,-10.951991881999888],[-69.72020992,-10.964910989999808],[-69.75343786699992,-10.958296406999807],[-69.79105830999995,-10.93431854299989],[-69.80831823799994,-10.927187194999846],[-69.8350866289999,-10.925326842999851],[-69.87570430599993,-10.928014016999867],[-69.89513464399994,-10.926877136999863],[-69.9142032469999,-10.92139943399988],[-69.95611283399998,-10.919332376999819],[-70.19873368299992,-11.041185403999833],[-70.2394805509999,-11.055138040999822],[-70.28939998399994,-11.064749857999828],[-70.34102473999988,-11.067230325999901],[-70.39130590899993,-11.059065449999878],[-70.43727209499994,-11.036741231999912],[-70.46249019399997,-11.013900247999814],[-70.50719030799993,-10.961293639999909],[-70.53411372899993,-10.93814259899983],[-70.55555944899996,-10.942793477999883],[-70.64134232599989,-11.010799661999867],[-70.64113562099993,-10.929874368999874],[-70.64085139999993,-10.802646991999907],[-70.64051550299996,-10.675419616999847],[-70.64020544499996,-10.54808888699985],[-70.63984370999995,-10.42086151099987],[-70.63948197399998,-10.293530781999877],[-70.63917191599998,-10.166200052999883],[-70.6388618579999,-10.03886932399989],[-70.63865963799995,-9.955891641999813],[-70.63855179899991,-9.91164194799991],[-70.6384484459999,-9.851800638999862],[-70.62901749699992,-9.811596374999835],[-70.62322973699995,-9.801054381999876],[-70.61509069899995,-9.792269388999884],[-70.60545304399992,-9.78503468899983],[-70.59524694899993,-9.779040221999892],[-70.59007930499993,-9.779040221999892],[-70.57956315099997,-9.78565480499988],[-70.57416296399992,-9.784931334999882],[-70.56915035099988,-9.779143574999821],[-70.56666988099997,-9.767051289999841],[-70.56336258999995,-9.760746764999823],[-70.55124446699998,-9.74410695399989],[-70.54341548699998,-9.726950377999842],[-70.54186519399994,-9.70824350999986],[-70.5486348069999,-9.687676289999871],[-70.56021032799993,-9.673310241999857],[-70.58961421699993,-9.65026255299989],[-70.60080216599997,-9.635276386999834],[-70.60728755699992,-9.61677622499981],[-70.61467728699992,-9.584116719999827],[-70.62441829499997,-9.565823262999857],[-70.61922481399995,-9.564479674999802],[-70.59266312799994,-9.56375620499989],[-70.58744380799993,-9.565616556999899],[-70.57387874399996,-9.567786965999801],[-70.56452530899992,-9.565409850999842],[-70.57806453499998,-9.54184539799985],[-70.57615250699988,-9.529132994999884],[-70.56785843999992,-9.519211119999795],[-70.55512019899996,-9.516007180999821],[-70.5571872559999,-9.512596537999796],[-70.55979691599991,-9.50494842499991],[-70.56194148799992,-9.501744486999854],[-70.54326045799993,-9.493476256999898],[-70.53829951999998,-9.480970559999902],[-70.53566402199996,-9.464434102999817],[-70.52535457399995,-9.446760761999897],[-70.52375260399991,-9.44397023499985],[-70.52499283899996,-9.430947773999902],[-70.56697993999995,-9.43528859499989],[-70.58687536699998,-9.439526061999842],[-70.60638321999997,-9.448827819999863],[-70.62713130799992,-9.466604511999888],[-70.6620904139999,-9.509185892999866],[-70.6808489579999,-9.52768605499989],[-70.74727901299997,-9.564583027999916],[-70.76779455599993,-9.57987925199987],[-70.80538916099994,-9.618016458999847],[-70.82518123499992,-9.633622741999872],[-70.87548824099989,-9.660494485999877],[-70.89158544999995,-9.67858123699989],[-70.92026586899996,-9.720129088999883],[-70.93155716999993,-9.72974090599989],[-70.95747290099987,-9.745347188999844],[-70.96904842199993,-9.754855651999918],[-70.97760087099994,-9.766741230999854],[-70.98956396499997,-9.792062682999827],[-70.99721207699989,-9.803534850999853],[-71.01542801999992,-9.817487486999838],[-71.07746557699996,-9.833817239999874],[-71.14425736499993,-9.863066100999914],[-71.16105220499989,-9.87557179799991],[-71.17391963799989,-9.89727589899982],[-71.18311804199996,-9.92063364699986],[-71.19650223899993,-9.939857278999794],[-71.24512976199992,-9.956083678999889],[-71.2803214109999,-9.983472187999837],[-71.29970007399996,-9.993394062999839],[-71.3134460039999,-9.994220885999852],[-71.32171423399993,-9.98946665399987],[-71.3289489339999,-9.983368834999808],[-71.33964595499992,-9.979751484999923],[-71.35406367999994,-9.981301777999846],[-71.35959305899993,-9.986882832999868],[-71.3636238199999,-9.994530943999846],[-71.37339066599988,-10.00228240999985],[-71.39142574099988,-10.006829934999885],[-71.42868444899992,-10.006726581999857],[-71.60701981599995,-10.006519876999889],[-71.7853551849999,-10.006106465999878],[-71.96363887499987,-10.005899759999835],[-72.1419742439999,-10.005693053999877],[-72.1956660569999,-10.005589700999849],[-72.1846072999999,-9.984609069999848],[-72.183522095,-9.967039081999872],[-72.18553747599995,-9.949675800999856],[-72.18393550699992,-9.929005228999841],[-72.17835445199998,-9.918669941999923],[-72.16269649299994,-9.90006642699987],[-72.16042272999991,-9.887664082999903],[-72.16290319899987,-9.87722544299987],[-72.17111975099994,-9.85686492899984],[-72.17385860199997,-9.84580617299983],[-72.19473588099993,-9.805808613999858],[-72.26522253499991,-9.762193704999902],[-72.277004761,-9.724263203999895],[-72.26511918099996,-9.68653940799986],[-72.26165686099992,-9.667419127999864],[-72.26765132699995,-9.649539082999809],[-72.29488480699987,-9.617499694999893],[-72.30413488799988,-9.600859883999874],[-72.30692541599993,-9.579982604999898],[-72.30563350499997,-9.550630390999826],[-72.3067703859999,-9.540915221999796],[-72.3126615,-9.532543639999815],[-72.32294510999989,-9.532130228999904],[-72.33452063099992,-9.53399057999981],[-72.34454585799995,-9.532853697999897],[-72.36247757999993,-9.520658059999889],[-72.39022782499987,-9.496473489999815],[-72.4095031329999,-9.486344909999858],[-72.43022538299994,-9.482210794999844],[-72.49079016099998,-9.486448261999882],[-72.53564530399987,-9.481590677999876],[-72.55445552599988,-9.476009622999852],[-72.59605505399989,-9.455545755999893],[-72.63651770099997,-9.442936706999873],[-72.65594803899995,-9.439009297999801],[-72.65982377199992,-9.439836119999825],[-72.66778194199989,-9.445313821999902],[-72.67227779199989,-9.446657409999872],[-72.67801387599994,-9.445003763999836],[-72.68679886899994,-9.437459003999876],[-72.69170813099994,-9.435081887999928],[-72.81330277499991,-9.410897317999869],[-73.21498368399995,-9.409036966999864],[-73.19353796399992,-9.375653991999798],[-73.1408280039999,-9.322840677999833],[-73.11757360799989,-9.291938171999846],[-73.10119217899992,-9.260002135999867],[-73.09023677599995,-9.244189147999862],[-73.07840287299993,-9.236851094999878],[-73.06419185499996,-9.234784036999912],[-73.04791377799994,-9.230339863999816],[-73.03437455199989,-9.22258839899989],[-73.02853511599997,-9.210599466999838],[-73.02786332199992,-9.183107604999876],[-72.98238806199996,-9.14714080799989],[-72.97200109899993,-9.134428405999842],[-72.96368119399996,-9.115514830999814],[-72.9593920499999,-9.085645853999893],[-72.9700373949999,-9.001930032999852],[-72.97608353699994,-8.985393574999847],[-73.00367875199993,-8.944155781999852],[-73.01670121299989,-8.930409850999823],[-73.05380489199987,-8.906018574999791],[-73.06863602699988,-8.89371958399984],[-73.14584061699995,-8.78220184299984],[-73.16346227999995,-8.739620462999866],[-73.17457271299989,-8.720706888999842],[-73.19198767099991,-8.703860371999852],[-73.21100459799996,-8.693938496999863],[-73.26914058499997,-8.681639504999822],[-73.2898628339999,-8.670477395999796],[-73.30810461499996,-8.653217467999895],[-73.35058264199998,-8.598337096999884],[-73.35699051899992,-8.581800638999894],[-73.35766231399992,-8.562990416999881],[-73.34825720299995,-8.518341979999846],[-73.34929073199993,-8.498084817999853],[-73.35642207899988,-8.479791360999869],[-73.37052974499991,-8.465218606999912],[-73.37941809099993,-8.461911315999913],[-73.40050207599995,-8.459430846999851],[-73.4102172449999,-8.45550343799988],[-73.42024247299992,-8.446201679999845],[-73.43652054899994,-8.425221048999845],[-73.44726924699995,-8.416125996999881],[-73.52654089399991,-8.372407734999811],[-73.54082942699998,-8.359075215999878],[-73.54767655499995,-8.340161640999838],[-73.5527150069999,-8.299130553999888],[-73.56173254399997,-8.272672219999889],[-73.5906196699999,-8.234741719999889],[-73.60328039599995,-8.211590677999894],[-73.60617427599993,-8.192780455999895],[-73.60054154499991,-8.155470071999858],[-73.60110998599995,-8.136143086999892],[-73.61185868399987,-8.112578633999902],[-73.6447248949999,-8.068343607999793],[-73.65164953699991,-8.04601938799982],[-73.66803096599993,-8.01377329499985],[-73.70590979099993,-7.993826191999843],[-73.7484911709999,-7.976979674999852],[-73.77879939799993,-7.954138691999859],[-73.78494889399991,-7.940392760999913],[-73.79577510599995,-7.892230325999833],[-73.79463822499993,-7.874143574999905],[-73.77960038299994,-7.874453632999803],[-73.74611405499988,-7.886442565999857],[-73.71371293199988,-7.866288756999879],[-73.70255082299994,-7.82784149099993],[-73.71216263899993,-7.788153991999848],[-73.74223832199989,-7.764072774999818],[-73.77960038299994,-7.75291066399987],[-73.81114884499992,-7.739268086999872],[-73.83879573599995,-7.720561217999887],[-73.96938207999992,-7.584652200999855],[-74.00966385999996,-7.561087747999863],[-74.01847469099997,-7.543517760999876],[-73.9844863999999,-7.529407299999888],[-73.97142329999988,-7.523984068999879],[-73.95871089799994,-7.501969908999798],[-73.95778072199997,-7.480369160999828],[-73.9498742279999,-7.465176289999889],[-73.94431901099992,-7.448743183999837],[-73.95054602099992,-7.423215026999799],[-73.97943314599988,-7.374535827999864],[-73.9828954679999,-7.356449076999851],[-73.96106217499995,-7.356449076999851],[-73.92047033799994,-7.37215871199983],[-73.90202185099992,-7.373398945999866],[-73.87974930899989,-7.365027363999886],[-73.8434207759999,-7.343116555999841],[-73.82585078999992,-7.337432148999881],[-73.80027095599988,-7.335675149999816],[-73.76076432399994,-7.337432148999881],[-73.74125646999994,-7.334434915999879],[-73.72474584999995,-7.324823098999857],[-73.7130928139999,-7.304669290999882],[-73.7160900479999,-7.286375833999911],[-73.724539144,-7.267565612999902],[-73.73453853399991,-7.225087585999859],[-73.80355240899988,-7.126488952999877],[-73.80676214999997,-7.117879292999831],[-73.81233740199994,-7.102924498999868],[-73.8065754799999,-7.078223164999855],[-73.7922611089999,-7.050007831999892],[-73.76771480299992,-6.959264017999843],[-73.7654927169999,-6.904176939999871],[-73.7594207359999,-6.887433776999913],[-73.74859452299992,-6.87554819799989],[-73.70678828999986,-6.849606627999847],[-73.69696976799992,-6.837204284999871],[-73.68508418799988,-6.811882832999799],[-73.67195837399993,-6.800720723999859],[-73.64405310099994,-6.783977559999812],[-73.59387528499991,-6.743980000999841],[-73.51320837499989,-6.697781269999894],[-73.44540889499987,-6.639593606999881],[-73.40628983599993,-6.615615742999864],[-73.37068477399994,-6.583886413999848],[-73.34918737899991,-6.576445007999922],[-73.27849401899991,-6.575721536999835],[-73.23358719899991,-6.564042662999852],[-73.1989639889999,-6.545645852999854],[-73.17147212799992,-6.517430521999884],[-73.1478043219999,-6.476192727999886],[-73.13178462799993,-6.435264994999869],[-73.12703039599995,-6.413044127999825],[-73.12697871899992,-6.391340026999927],[-73.13380000899987,-6.368085631999818],[-73.15571081599995,-6.322713723999883],[-73.16155025199993,-6.299769388999849],[-73.17204056899999,-6.21967091899988],[-73.17767329999992,-6.202410989999805],[-73.22599076299994,-6.147944029999806],[-73.23529252199995,-6.123656106999888],[-73.23477575799993,-6.077560729999874],[-73.2188594159999,-6.040250345999837],[-73.1971036379999,-6.005007018999862],[-73.14000117999987,-5.878503112999795],[-73.10563635299994,-5.846980488999833],[-73.0013533129999,-5.708797708999882],[-72.98719396999986,-5.681099140999848],[-72.97691035999995,-5.651746927999881],[-72.96047725499992,-5.559246113999848],[-72.96032222599987,-5.531237487999831],[-72.96910721899994,-5.499198098999926],[-72.97349971599994,-5.466125182999846],[-72.96419795799991,-5.433775735999859],[-72.93479406699993,-5.372177428999819],[-72.93050492399996,-5.356467793999855],[-72.9239936939999,-5.313576354999896],[-72.91624222799999,-5.299106953999868],[-72.90539017699993,-5.285671080999819],[-72.89665686099997,-5.271615091999891],[-72.89489986199999,-5.255698749999866],[-72.90032588699995,-5.194617207999869],[-72.90559688399989,-5.179114277999858],[-72.91495031799994,-5.164438171999875],[-72.92197831299993,-5.1468681839998],[-72.91794755099994,-5.132088724999875],[-72.89381465699998,-5.125887552999899],[-72.88068884299992,-5.125267434999927],[-72.87283402499989,-5.123613789999879],[-72.85893306499992,-5.116069030999839],[-72.85769282999988,-5.112141621999867],[-72.8570210369999,-5.097568867999897],[-72.85397212699988,-5.092504577999833],[-72.84901118999991,-5.092091165999817],[-72.83635046399988,-5.096225280999846],[-72.83113114399995,-5.096638691999857],[-72.79030676399994,-5.088783873999915],[-72.77294348199993,-5.081135762999835],[-72.76017940299997,-5.06470265699987],[-72.74757035399995,-5.055090840999867],[-72.72881180899995,-5.057261250999858],[-72.70798620699989,-5.063152363999848],[-72.65419104099996,-5.063152363999848],[-72.64478592999993,-5.060568541999857],[-72.63507076099998,-5.051783548999864],[-72.63243526199997,-5.042791849999915],[-72.63160843899993,-5.033180032999908],[-72.62726761899995,-5.022431334999794],[-72.61434851099995,-5.009718932999832],[-72.58659826699991,-4.996696471999897],[-72.5622069909999,-4.970238138999903],[-72.5464456789999,-4.958249206999852],[-72.52851395699994,-4.950187682999854],[-72.50975541199995,-4.947500508999923],[-72.49513098199994,-4.946983743999795],[-72.48892980999997,-4.941195983999818],[-72.48588090099994,-4.932566019999953],[-72.48066158099994,-4.923367613999872],[-72.47967972799995,-4.919646910999944],[-72.47993811099994,-4.914169209999955],[-72.47947302299991,-4.908071390999822],[-72.4764757899999,-4.902490335999801],[-72.47177323399993,-4.900733336999821],[-72.45797562699997,-4.900423278999924],[-72.45260127799992,-4.899183043999898],[-72.43110388199996,-4.8878142289999],[-72.41467077699991,-4.876342060999974],[-72.40412878499993,-4.860219013999909],[-72.39684240699995,-4.805648701999885],[-72.38609370899992,-4.793969827999902],[-72.3447008869999,-4.782601012999834],[-72.33942989099995,-4.777330016999883],[-72.33684607,-4.769888610999871],[-72.33193680799991,-4.763274026999866],[-72.3197928469999,-4.760173441999838],[-72.28237910999997,-4.765444436999857],[-72.2693049719999,-4.764927672999831],[-72.25106319199995,-4.75882985399987],[-72.23313146999996,-4.748391214999827],[-72.1824368899999,-4.710667418999961],[-72.12709143199996,-4.680074970999868],[-72.1080228269999,-4.664261982999874],[-72.09660233599996,-4.649792581999847],[-72.07872228999992,-4.61341237399985],[-72.07112585499996,-4.605144143999908],[-72.06270259599994,-4.605660908999852],[-72.05355586799999,-4.610208434999876],[-72.04358231599988,-4.61382578599995],[-72.03552079299999,-4.611862080999841],[-72.02616735899993,-4.605660908999852],[-72.00983760599989,-4.591604918999835],[-71.98027868699998,-4.582303160999814],[-71.93314978099997,-4.536724548999828],[-71.90720821199992,-4.518431090999854],[-71.89015498899997,-4.513676858999858],[-71.80762772699995,-4.504478454999941],[-71.80065140799988,-4.502411396999975],[-71.79698238199995,-4.497967223999879],[-71.79574214699993,-4.49114593499992],[-71.7930549729999,-4.484634703999859],[-71.78483841999989,-4.480500589999849],[-71.77434810399993,-4.481534118999916],[-71.75145544499989,-4.492076110999888],[-71.74018998199995,-4.495590107999845],[-71.72106970199994,-4.492799580999886],[-71.70964921099994,-4.484738056999973],[-71.69931392499993,-4.481637470999857],[-71.6833459069999,-4.493523050999883],[-71.67306229699992,-4.50365163099984],[-71.66520747899997,-4.507579039999897],[-71.65652583799991,-4.506752217999875],[-71.64381343699995,-4.502308043999861],[-71.62350459799993,-4.482257587999825],[-71.6134276949999,-4.479260355999983],[-71.6171483979999,-4.500344339999841],[-71.57156978399993,-4.480707295999977],[-71.55756547099992,-4.479363707999838],[-71.53234737199998,-4.484634703999859],[-71.52459590699996,-4.485151468999902],[-71.51906652799995,-4.479157002999869],[-71.51286535699998,-4.457142842999886],[-71.50614742099995,-4.448564553999859],[-71.49234981399991,-4.442776794999972],[-71.47741532499995,-4.440606383999892],[-71.44697790599989,-4.44029632599999],[-71.40077917599993,-4.433371683999923],[-71.38698156799995,-4.434921975999941],[-71.37762813299992,-4.442673441999858],[-71.37116857999986,-4.453215432999826],[-71.36326208599993,-4.459209899999863],[-71.34956783099992,-4.453525492999901],[-71.34589880399992,-4.450114847999885],[-71.33701045799998,-4.438332620999887],[-71.3307576089999,-4.435128681999813],[-71.32409134999997,-4.436575622999896],[-71.31845861899987,-4.43936614999987],[-71.31515132699994,-4.439986266999838],[-71.30538448199991,-4.427067158999833],[-71.30512609899992,-4.41662851999989],[-71.30724483299991,-4.406809997999829],[-71.3046093339999,-4.394924417999889],[-71.28848628799992,-4.380765074999928],[-71.26481848099988,-4.3754940799999],[-71.2416674399999,-4.38004160599985],[-71.214072225,-4.41084075899991],[-71.20068802999995,-4.395647887999885],[-71.18616695199992,-4.372186787999823],[-71.1696821699999,-4.362781676999858],[-71.16311926299994,-4.369086201999863],[-71.15247391799994,-4.391720478999915],[-71.14410233599997,-4.399265238999874],[-71.12849605299994,-4.401849059999875],[-71.1195560299999,-4.396371357999882],[-71.10604264399993,-4.373840432999856],[-71.08157385299998,-4.364125263999909],[-71.02932897999997,-4.385829365999825],[-71.00997615599994,-4.36980967199986],[-71.00545446799988,-4.347588805999834],[-70.98971899499992,-4.366192321999876],[-70.96868668699992,-4.38531260199987],[-70.94809362799992,-4.364228617999856],[-70.93884354699992,-4.345108337999861],[-70.92633785099991,-4.328985289999878],[-70.89639135799987,-4.29983978199985],[-70.8865728349999,-4.283510029999917],[-70.88112097199993,-4.265629984999862],[-70.8737054039999,-4.250747171999905],[-70.85825415099993,-4.243305764999973],[-70.8427512209999,-4.238138121999881],[-70.8398056639999,-4.228733011999921],[-70.84830643799992,-4.204445088999833],[-70.84518001399996,-4.191009215999884],[-70.83223506699994,-4.179433694999844],[-70.78456355799997,-4.156282653999853],[-70.7742541099999,-4.155042418999812],[-70.71211319999992,-4.171888935999888],[-70.69405228799991,-4.172302346999814],[-70.68307104599992,-4.163827412999808],[-70.67203812699992,-4.13344166999984],[-70.66289139799994,-4.122176208999875],[-70.64676835199995,-4.115664977999813],[-70.6310587159999,-4.118972268999812],[-70.62958593799995,-4.13344166999984],[-70.63317744999995,-4.151838479999839],[-70.63253149499988,-4.16682464599991],[-70.58527339699994,-4.194523213999844],[-70.57656591799989,-4.183877868999843],[-70.57232845099992,-4.165894469999856],[-70.56563635299992,-4.148841247999826],[-70.54969417399988,-4.140676370999898],[-70.53411372899993,-4.146774189999859],[-70.52938533499994,-4.161346943999831],[-70.52638810299993,-4.176023049999813],[-70.5159753019999,-4.182327575999835],[-70.50088578299992,-4.177366637999882],[-70.4600097249999,-4.144603779999869],[-70.44422257599993,-4.137369078999909],[-70.42993404199993,-4.134165140999926],[-70.41533544899997,-4.13561208099992],[-70.39866980099993,-4.142330016999864],[-70.37368424599994,-4.164550882999976],[-70.36143693099993,-4.16816823299996],[-70.34306595999993,-4.139436136999876],[-70.33061193899994,-4.143156839999875],[-70.31870052099993,-4.156282653999853],[-70.31110408499995,-4.17085540699982],[-70.30934708699996,-4.191215921999927],[-70.31839046299993,-4.228939716999889],[-70.31671097899996,-4.247026467999902],[-70.30699580999993,-4.260255634999808],[-70.2575931399999,-4.299219665999885],[-70.24798132399991,-4.302113545999872],[-70.23917049199991,-4.301803486999887],[-70.23131567399989,-4.303663837999892],[-70.22472692899998,-4.313068948999856],[-70.21674291999992,-4.328881936999849],[-70.20563248699996,-4.342937926999866],[-70.18656388399992,-4.326298115999847],[-70.17025996899989,-4.288470967999871],[-70.15726334699994,-4.270177510999885],[-70.13889237499987,-4.260462340999851],[-70.11651647999989,-4.25829193099986],[-70.09662105399988,-4.265733336999887],[-70.08574316499991,-4.283923441999917],[-70.08109228599994,-4.308831481999889],[-70.07561458299995,-4.316169534999801],[-70.06334143099994,-4.328468525999838],[-70.05096492599995,-4.337253518999916],[-70.03703812699987,-4.340870869999904],[-70.02290462299993,-4.33890716599987],[-69.98939245599993,-4.314619241999864],[-69.9718224699999,-4.290951435999844],[-69.96257238799987,-4.264286396999892],[-69.96494950399997,-4.236484476999848],[-69.96386429899991,-4.234314066999858],[-69.962727417,-4.232040303999837],[-69.96164221299998,-4.229766539999915],[-69.9605053309999,-4.227596129999824],[-69.95942012499998,-4.225425719999834],[-69.9583349209999,-4.223151956999828],[-69.9571980389999,-4.220878193999809],[-69.95611283399998,-4.218811136999847],[-69.9550793059999,-4.216640725999852],[-69.9539165859999,-4.214366962999918],[-69.95277970399988,-4.212093199999813],[-69.9516944989999,-4.209922790999912],[-69.95055761799998,-4.207752379999832],[-69.94942073599988,-4.205581969999841],[-69.94833553099997,-4.20341155999985],[-69.94719864899989,-4.201137796999844],[-69.9178464359999,-4.040010680999941],[-69.88852006099992,-3.878780211999853],[-69.85916784699994,-3.717653095999864],[-69.82981563399997,-3.556525980999893],[-69.80046341999991,-3.395295511999876],[-69.77116288299993,-3.234168395999816],[-69.74173315499993,-3.072937926999898],[-69.71240677899996,-2.911810811],[-69.68308040399992,-2.750683694999835],[-69.65370235199993,-2.589453226999836],[-69.62435013799987,-2.428326110999847],[-69.59499792499989,-2.26709564199993],[-69.5656973879999,-2.10596852599987],[-69.53631933599993,-1.944841409999967],[-69.50696712299995,-1.783610940999878],[-69.47761490999997,-1.622483825999979],[-69.46642696099994,-1.561092223999907],[-69.45193172299992,-1.510862731999865],[-69.4522676189999,-1.490502216999843],[-69.43394832399991,-1.422185973999959],[-69.43469763199991,-1.376400654999841],[-69.41831620299986,-1.284106546999865],[-69.42106507199995,-1.239310156999849],[-69.42110672999993,-1.238631285999901],[-69.39945430499995,-1.182717386999812],[-69.41046138599992,-1.152745055999873],[-69.44815934299999,-1.092076924999887],[-69.44828853399991,-1.080398050999818],[-69.4419323329999,-1.059830830999829],[-69.439761922,-1.04866872099997],[-69.44503291899994,-1.010738219999965],[-69.44286250899995,-1.008361103999931],[-69.44691910799995,-1.00081634499989],[-69.44996801799995,-0.996785582999891],[-69.45508398499996,-0.9946151729999],[-69.46513505099998,-0.993064879999792],[-69.47123286999994,-0.988000589999984],[-69.49314367699989,-0.956167906999852],[-69.50247127399993,-0.950276793999862],[-69.52427872799986,-0.940975036999916],[-69.53259863299994,-0.934050394999844],[-69.53923905399992,-0.920614521999895],[-69.53861893799986,-0.910589293999877],[-69.53621598299992,-0.901184183999817],[-69.53732702699992,-0.889505309999848],[-69.54329565399993,-0.878653258999805],[-69.55024613499991,-0.873175556999897],[-69.55750667399988,-0.869454853999798],[-69.56419877199991,-0.86346038799995],[-69.57324214799988,-0.84919769199989],[-69.57567093899993,-0.839172464999862],[-69.57272538299992,-0.813540954999894],[-69.5806835539999,-0.799381611999863],[-69.61835567199992,-0.756903584999904],[-69.62838090099996,-0.733442483999838],[-69.6219730219999,-0.715355732999825],[-69.59076045799992,-0.668226827],[-69.58422338899996,-0.644559020999793],[-69.5869622399999,-0.632466735999813],[-69.59269832399994,-0.624095153999917],[-69.59926123099993,-0.616447040999859],[-69.60453222699996,-0.606318460999901],[-69.60657344599991,-0.596499938999926],[-69.60706437199994,-0.566837665999955],[-69.61171525099991,-0.544616800999933],[-69.6197509359999,-0.524566344999968],[-69.63207576499994,-0.506893005999885],[-69.6495165609999,-0.492010192999928],[-69.6664922699999,-0.482915140999864],[-69.74646154799993,-0.453046162999939],[-69.76157690499994,-0.440850524999846],[-69.79144588199995,-0.408191019999862],[-69.80175533099995,-0.400956318999903],[-69.8247771809999,-0.390207620999874],[-69.83477657099994,-0.383179625999873],[-69.84229549199998,-0.373154398999844],[-69.85167476399991,-0.350830179999875],[-69.85810848099996,-0.341425068999825],[-69.87523921799993,-0.330573017999882],[-69.91497839399992,-0.321684671999947],[-69.9336335859999,-0.314346618999863],[-69.94435644599992,-0.305458272999857],[-69.96665482599997,-0.272282002999845],[-70.01755611199988,-0.225669859999869],[-70.05636511299994,-0.181021422999848],[-70.06804398599989,-0.160144144999876],[-70.07380590799995,-0.124900817999887],[-70.07248815999992,-0.074671324999855],[-70.07181636599992,-0.049143167999901],[-70.06995601499992,0.018036194000146],[-70.06726883999991,0.113017477000142],[-70.06427160699987,0.221951396000151],[-70.0613777259999,0.33088531500006],[-70.05869055199997,0.425866598000155],[-70.05683020099995,0.493045960000103],[-70.05610673099997,0.518574117000057],[-70.05424637899995,0.588130595000138],[-70.03941524299992,0.574591369000075],[-70.02065669799993,0.579862366000015],[-69.99923681699991,0.589784241000189],[-69.97649918599993,0.590404358000072],[-69.9528572179999,0.585753480000093],[-69.93389196799987,0.588957418000078],[-69.91446162999998,0.594538473000085],[-69.84591284199996,0.598672587000024],[-69.80532100499991,0.606940816000147],[-69.76754553299995,0.620686748000097],[-69.73287064599992,0.638980205000152],[-69.69468176299995,0.668745829000059],[-69.67948889199994,0.670037740000097],[-69.65127355999996,0.657377014000147],[-69.61915665699993,0.650659078000047],[-69.60458390299996,0.667402242000179],[-69.59411942599993,0.689313049000049],[-69.574224,0.697943014000089],[-69.55564632199989,0.700165100000092],[-69.52342606599993,0.720939026000124],[-69.50371150799998,0.729620667000177],[-69.47807999699992,0.73282460600015],[-69.45787451199993,0.728070374000154],[-69.43971024599998,0.715771382000128],[-69.36893937199994,0.644406230000129],[-69.3625573319999,0.6409439090001],[-69.34232600899992,0.650245667000206],[-69.32026017299992,0.656343486000168],[-69.30214758400001,0.656550191000136],[-69.29281998699989,0.645594788000068],[-69.29705745499993,0.618102925000173],[-69.27899654199993,0.619239807000014],[-69.24238378899989,0.613762106000195],[-69.22618322799988,0.614795634000174],[-69.21905187999994,0.61954986600017],[-69.20835485799992,0.634639384000167],[-69.20060339399993,0.639496969000106],[-69.19013891699987,0.639703674000145],[-69.17140620899997,0.632779033000162],[-69.16233699599991,0.631435445000108],[-69.14365596599995,0.637533265000158],[-69.13745479399995,0.650142314000092],[-69.14120133499998,0.668177388000089],[-69.15207922399992,0.690553283000071],[-69.15949479199995,0.697322897000106],[-69.18119889399995,0.707503154000079],[-69.18926041699991,0.715151266000149],[-69.19225764999996,0.728948873000192],[-69.18502294999986,0.737682190000086],[-69.17455847199994,0.745433655000085],[-69.16776302199989,0.756027323000154],[-69.16776302199989,0.778971659000192],[-69.17760738099989,0.823568421000118],[-69.17538529499987,0.844445699000175],[-69.16931331399991,0.84806304900016],[-69.15975317399992,0.849613342000097],[-69.15233760599992,0.854264221000065],[-69.1523892829999,0.867803446000124],[-69.1589263519999,0.876175028000191],[-69.1707344159999,0.883151347000108],[-69.19388545699991,0.892091370000045],[-69.20998266599996,0.907542623000126],[-69.20432409699993,0.943664449000138],[-69.22618322799988,0.957203675000116],[-69.22912878499997,0.967435608000102],[-69.23016231399995,0.979114482000085],[-69.23284948799997,0.98836456300009],[-69.24023921699998,0.995650941000079],[-69.25718908699989,1.006916402000044],[-69.27426814799992,1.02820709300012],[-69.28881506399996,1.038439026000091],[-69.33878617399995,1.064122213000161],[-69.35496089799994,1.067067770000165],[-69.37085139999996,1.062985332000068],[-69.41816117299993,1.028620504000131],[-69.42841894599991,1.030480855000135],[-69.44728084399995,1.041694641000078],[-69.45237097199993,1.046242167000031],[-69.45541988199994,1.050738017000128],[-69.45976070099994,1.055182190000139],[-69.46872656299988,1.059419657000191],[-69.47826086499995,1.060659892000046],[-69.51009354699991,1.056112366000193],[-69.54295975699995,1.055595601000149],[-69.55329504399995,1.05683583600009],[-69.59675492399995,1.071925354000101],[-69.61990596599995,1.072752177000112],[-69.71602412899993,1.058592835000169],[-69.72651444599992,1.061021627000045],[-69.72806473799994,1.082984111000187],[-69.73682389299991,1.088358459000148],[-69.7496654869999,1.090528870000142],[-69.76255875699991,1.091097310000109],[-69.78767350299992,1.084224345000138],[-69.82935054599994,1.057249248000105],[-69.85219152899994,1.059419657000191],[-69.85193314599988,1.119260966000155],[-69.85154557399997,1.187990621000125],[-69.85110632399997,1.256616923000166],[-69.85077042599997,1.32534657800015],[-69.85035701499996,1.394050395000122],[-69.84999527999994,1.462805888000105],[-69.84960770699988,1.531483866000158],[-69.84924597199995,1.600187684000119],[-69.84880672299994,1.6688915000001],[-69.85617061399995,1.707674663000134],[-69.84118458799988,1.707579109000122],[-69.80754309099993,1.707364603000059],[-69.78919795799993,1.712790629000125],[-69.7463581949999,1.735166525000096],[-69.72914994299992,1.738990581000053],[-69.71145076499991,1.738525493000111],[-69.6900825609999,1.735476583000093],[-69.64905147299996,1.738938904000122],[-69.58029597999987,1.770228983000123],[-69.54195206699987,1.7727094520001],[-69.46919165099989,1.757387390000133],[-69.39338232499998,1.725270488000206],[-69.35240291399995,1.720206197000138],[-69.30452469999994,1.720206197000138],[-69.17838252799999,1.720309550000152],[-68.99999548399992,1.720464580000112],[-68.79548600299995,1.720671285000151],[-68.5910281989999,1.720877991000123],[-68.41264115499993,1.721033021000153],[-68.28644730699995,1.721136373000178],[-68.2385949299999,1.72118804900019],[-68.16330236799988,1.721291402000134],[-68.18040726799993,1.729688823000117],[-68.18877884999998,1.735838318000091],[-68.1917244059999,1.742427063000164],[-68.19074255499991,1.755010274000099],[-68.19353308199989,1.763743592000154],[-68.20154292799995,1.768678691000105],[-68.23895666499993,1.770280660000054],[-68.2411270759999,1.788341573000139],[-68.23895666499993,1.810252380000108],[-68.24831009899998,1.822112121000117],[-68.27368322799995,1.825264385000168],[-68.28024613499994,1.829398499000192],[-68.26081579699986,1.858208110000135],[-68.20081945799987,2.007837219000095],[-68.19218949399993,2.01489105200011],[-68.18743526299994,2.008250631000095],[-68.18728023299988,1.988200175000145],[-68.18516149999991,1.980758769000133],[-68.17709997599992,1.973188172000164],[-68.16976192199994,1.969725851000135],[-68.14914302699992,1.96554006000018],[-68.12614701399988,1.956212463000071],[-68.111109172,1.942414856000198],[-68.10123897299991,1.924121399000142],[-68.07922481299994,1.859965109000115],[-68.05865759299994,1.816401876000072],[-68.03178584899993,1.777515361000113],[-67.99824784299992,1.749971823000038],[-67.96486486899997,1.740153300000145],[-67.92884639499997,1.741290181000153],[-67.89318965699997,1.749713440000065],[-67.86053015199991,1.761521505000161],[-67.82084265199993,1.784000753000072],[-67.79045690999996,1.812577820000129],[-67.66974076299996,1.97334320100012],[-67.59294958599992,2.054811096000151],[-67.55439896699994,2.073130392000124],[-67.52732051599989,2.096591492000101],[-67.51026729399992,2.107417705000145],[-67.47533402499992,2.111861877000152],[-67.46608394399993,2.116357727000164],[-67.44913407399994,2.134134420000109],[-67.43972896299996,2.139560445000086],[-67.42463944599987,2.138113505000092],[-67.38174800599992,2.122739767000112],[-67.36577998899989,2.114962464000101],[-67.34061356599994,2.090106100000142],[-67.32040808199994,2.053079936000088],[-67.28862707599993,1.974893494000127],[-67.26475256399993,1.932544657000122],[-67.15571529199991,1.788083191000169],[-67.11716467399992,1.709793396000023],[-67.08295487499993,1.604631856000125],[-67.07360144099991,1.541199035000105],[-67.09819942199996,1.25336130800018],[-67.09447871899997,1.201219788000117],[-67.086107137,1.176001689000159],[-67.06522985899991,1.172694397000072],[-66.97820674699996,1.196827291000133],[-66.91340450099997,1.214862366000133],[-66.87506058799994,1.222510478000103],[-66.85676713099988,1.206077372000138],[-66.80855301999989,1.162772522000168],[-66.74039180599996,1.101587626000153],[-66.66220536299991,1.031411031000175],[-66.5840705979999,0.961131083000097],[-66.51590938399997,0.899946187000154],[-66.46769527199987,0.856641337000099],[-66.4494534909999,0.840208232000137],[-66.4070788169999,0.80207102500016],[-66.34620397999996,0.759386292000073],[-66.28507076099994,0.745847066000096],[-66.22827836099992,0.762796936000185],[-66.20874466999989,0.763106995000086],[-66.18903011099992,0.754942119000077],[-66.1730620939999,0.743056539000051],[-66.15634476699998,0.733031311000119],[-66.13438228399991,0.731119284000101],[-66.1111278889999,0.7418163050001],[-66.0791918539999,0.777576396000114],[-66.0574619139999,0.78698150600016],[-66.01384700599996,0.789668681000109],[-65.99418412299991,0.794732971000087],[-65.97408199099993,0.806980286000112],[-65.9526621099999,0.827960917000112],[-65.9142406819999,0.874624736000087],[-65.89176143399999,0.895605368000176],[-65.87196936099991,0.908989563000119],[-65.78541133699989,0.949142151000046],[-65.74543961599991,0.974153545000121],[-65.72097082599998,0.98190500900013],[-65.70104956099996,0.984385478000192],[-65.62872839399992,0.982008362000073],[-65.6081094969999,0.985263977000059],[-65.59604305099991,0.983610331000193],[-65.58294307499997,0.977667542000091],[-65.57085079,0.968572490000028],[-65.5598437099999,0.957978821000125],[-65.53581416899996,0.928471578000114],[-65.52511714699995,0.908317769000135],[-65.51850256399987,0.886510315000109],[-65.51700394699995,0.862790833000162],[-65.53317867099994,0.81633372000006],[-65.56328019299994,0.777938130000109],[-65.58733557199989,0.73912913000008],[-65.58521683799998,0.69148345900004],[-65.57431311099991,0.670244446000154],[-65.56048966599988,0.656033427000182],[-65.54266129599992,0.649315491000067],[-65.519691121,0.650865784000175],[-65.49783199099994,0.658720601000127],[-65.47287227499996,0.67251820900016],[-65.4512198489999,0.690139872000159],[-65.43274552499997,0.720939026000124],[-65.41388362599994,0.741609599000057],[-65.40943945399994,0.755252177000145],[-65.41083471699991,0.783880921000133],[-65.40962032099989,0.792149150000085],[-65.40000850399989,0.816540426000103],[-65.38902726199989,0.835660706000098],[-65.3271964109999,0.910281474000072],[-65.3102723799999,0.918653056000139],[-65.28438248699987,0.919376526000136],[-65.24337723899993,0.913123678000147],[-65.22314591499992,0.914363912000084],[-65.20304378299994,0.923820699000146],[-65.17898840299992,0.955395000000124],[-65.16844641199995,0.996477763000101],[-65.16017818299991,1.080193584000142],[-65.13676875899995,1.126909078000125],[-65.10051774199991,1.136107483000046],[-65.05961584499997,1.132386780000118],[-65.02248632899996,1.139983216000175],[-65.02070349199991,1.144013977],[-65.01969580199994,1.157708232000019],[-65.01744787599992,1.162979228000125],[-65.01321040899998,1.165769756000188],[-65.00334020999989,1.169387106000073],[-64.99936112499992,1.171970927000174],[-64.96646907599997,1.200599670000145],[-64.95605627399993,1.206800843000053],[-64.93293107099996,1.213002015000128],[-64.914663453,1.21475901300002],[-64.89740352399991,1.219668274000128],[-64.87771480399996,1.234912822000169],[-64.85531306999987,1.258683981000132],[-64.8392933759999,1.270827942000139],[-64.82143916799996,1.270569559000165],[-64.77131302999996,1.24674672400009],[-64.75121089799997,1.243336080000077],[-64.73087622099987,1.247573548000034],[-64.60421728599994,1.331289368000157],[-64.5911689859999,1.350099589000166],[-64.57026586899991,1.395497335000115],[-64.55119726599995,1.419526876000134],[-64.52791703299991,1.435727437000054],[-64.47505204299995,1.463012594000148],[-64.43309077999996,1.494044292000183],[-64.4090095629999,1.507506002000056],[-64.38642696199989,1.510244853000174],[-64.36459366899993,1.497093201000112],[-64.36381852299994,1.477352803000144],[-64.38503169799989,1.436399232000127],[-64.39136206099991,1.417718201000142],[-64.39477270599994,1.392190044000116],[-64.38957922399993,1.369297384000092],[-64.37009720899994,1.358729554000206],[-64.35294063399996,1.365835063000063],[-64.34074499599987,1.384206034000144],[-64.32188309799994,1.424436137000072],[-64.30152258399991,1.446657003000027],[-64.23214697299994,1.497144877000125],[-64.17708573399997,1.551146749000097],[-64.12972428399992,1.578070170000032],[-64.10954463699993,1.598456523000067],[-64.09295650299993,1.622615255000113],[-64.08086421799996,1.647394104000142],[-64.07541235399995,1.665429179000142],[-64.07254431199989,1.684575297000066],[-64.07595495599992,1.745372620000083],[-64.06029699799987,1.807461853000135],[-64.05360489999995,1.893709819000165],[-64.03662919099992,1.927273661000185],[-63.99502966299994,1.958021139000152],[-63.958339396999946,1.970707703000187],[-63.92082230599997,1.974325053000171],[-63.802276570999936,1.972309672000137],[-63.78320796799997,1.974996847000156],[-63.76264074799988,1.985668030000156],[-63.617533324999954,2.101164856000139],[-63.56198116099994,2.126357117000097],[-63.54895869999992,2.128372498000132],[-63.5205366619999,2.124496765000174],[-63.510666463999904,2.124600119000206],[-63.443435425999944,2.137183329000123],[-63.41175777199993,2.149378967000146],[-63.40219763199994,2.170514628000177],[-63.4039029539999,2.188498026000076],[-63.400595662999905,2.204621074000144],[-63.38654594199997,2.235888844000086],[-63.37263871299993,2.266839498000152],[-63.370519979999926,2.281153870000139],[-63.372793741999935,2.349108378000111],[-63.37124344899994,2.365128073000164],[-63.36111486899997,2.400009664000137],[-63.36488724799992,2.413083802000102],[-63.38483435099994,2.420576884000127],[-63.510666463999904,2.424659322000053],[-63.57381506399988,2.43437449100017],[-63.70409134999996,2.437578431000062],[-63.767033243999975,2.429310201000192],[-63.83131872599994,2.428638408000126],[-63.95182816599989,2.461504618000063],[-64.01079097599992,2.468170878000151],[-64.03249507699991,2.463003235000158],[-64.0479721689999,2.471323140000123],[-64.05662797099986,2.488531393000102],[-64.0578165289999,2.510442200000142],[-64.05053015199991,2.534678447000047],[-64.0121862389999,2.603769837000101],[-64.00769038899998,2.622786763000164],[-64.00443477399998,2.679527486000097],[-63.997871866999894,2.705985819000176],[-63.997561808999905,2.714925842000113],[-64.00086909999989,2.725364482000145],[-64.01223791599992,2.744019674000029],[-64.02908443299988,2.79796986900007],[-64.10595312599997,2.947211405000118],[-64.13750158799994,2.987260640000102],[-64.1734683839999,3.05190785700016],[-64.20530106699997,3.089166565000099],[-64.22292272999994,3.123996481000148],[-64.22537735999992,3.165596009000069],[-64.21630814699995,3.251430562000081],[-64.21987381999992,3.292875062000135],[-64.24560868299992,3.4189397170001],[-64.24214636299988,3.442969259000037],[-64.23212113499994,3.46113352500015],[-64.20506852299991,3.497074483000119],[-64.19785965999995,3.515083720000121],[-64.19563757299994,3.532912089000149],[-64.19574092599996,3.570067444000145],[-64.20297562699992,3.594717102000146],[-64.22209590699993,3.61621449800019],[-64.26555578699993,3.652207133000075],[-64.32415685999987,3.724114889000106],[-64.34735957899994,3.738300069000076],[-64.39448848499995,3.756076762000191],[-64.43453771999995,3.778478496000091],[-64.53143103099995,3.853512675000161],[-64.57496842499998,3.914206645000164],[-64.59610408599994,3.935884908000147],[-64.64289709499997,3.972962748000128],[-64.66279252199988,3.996914774000131],[-64.66279252199988,3.996992290000151],[-64.66289587499998,3.996992290000151],[-64.66289587499998,3.997043966000163],[-64.7074409589999,4.082956034000119],[-64.71953324399996,4.123237813000159],[-64.72710384199993,4.140781962000119],[-64.74190913899994,4.157189230000171],[-64.76294144699997,4.168997294000177],[-64.783663697,4.177084656000176],[-64.80125952199998,4.188530985000099],[-64.8130417489999,4.210570984000184],[-64.81554805499988,4.231034851000146],[-64.81291255799994,4.252790629000159],[-64.80505773899992,4.271885071000142],[-64.79162186699996,4.28441660600015],[-64.74593990099996,4.287620545000124],[-64.69987036199991,4.264159444000143],[-64.66098384699995,4.227469177000089],[-64.6480241889999,4.207904544000186],[-64.63690262899992,4.191114808000108],[-64.62106380299991,4.146879781000081],[-64.60822220899992,4.126493429000135],[-64.58967036999991,4.118871155000164],[-64.36498124199993,4.151866557000133],[-64.24059606999995,4.142022197000159],[-64.17269323699989,4.12339284300019],[-64.14669999199992,4.110551249000196],[-64.12509924299988,4.088485412000111],[-64.10814937299995,4.058099670000161],[-64.09577286799988,4.024380799000184],[-64.07902970399994,3.953093160000122],[-64.06381099499993,3.911596985000145],[-64.0376627199999,3.882503154000148],[-63.99642492699991,3.880797832000084],[-63.956944132999894,3.901881816000113],[-63.91684322199998,3.929373678000089],[-63.87514034099994,3.949811707000137],[-63.83111201999989,3.949449971000135],[-63.790597696999974,3.933042705000091],[-63.77101232999987,3.928805237000134],[-63.74589758399991,3.930278015000127],[-63.69075882999993,3.943998108000159],[-63.67158687399993,3.946246033000165],[-63.622804321999894,3.935213114000163],[-63.55422969599996,3.875371806000203],[-63.510666463999904,3.854546204000144],[-63.468860229999876,3.867232768000108],[-63.455372680999886,3.90058990500016],[-63.44824133299994,3.939373068000108],[-63.42540034999984,3.968363546000177],[-63.39144893399992,3.97156748500015],[-63.351709757999934,3.958725891000157],[-63.28597733599989,3.920821229000154],[-63.251199096999926,3.886559754000146],[-63.19321813999996,3.806745504000161],[-63.130844685999925,3.76212290500014],[-63.02495967699994,3.63776357100015],[-63.01069698099988,3.61497426300015],[-62.99705440299996,3.599135437000143],[-62.975143595999924,3.583064067000094],[-62.95106237799988,3.570170797000173],[-62.931011922999915,3.563762919000055],[-62.9077058519999,3.560972392000082],[-62.88941239499991,3.560817362000137],[-62.87199743699997,3.565468241000104],[-62.85127518799996,3.577224630000018],[-62.83158646699991,3.594872131000102],[-62.8223363859999,3.598825378000157],[-62.80776363199993,3.596680807000084],[-62.79644649299987,3.597300924000066],[-62.78631791299991,3.604406434000083],[-62.77102168799984,3.623345846000134],[-62.74957596899991,3.660372010000088],[-62.739912475999915,3.700447083000171],[-62.74042924099993,3.741943258000148],[-62.74957596899991,3.783568624000154],[-62.76683589699991,3.822041727000127],[-62.77019486499992,3.847828267000124],[-62.774277302999934,3.85485626200014],[-62.77980668199992,3.861289978000172],[-62.785129353999885,3.872297058000172],[-62.78879838099996,3.899401347000136],[-62.78280391499996,3.920046081000151],[-62.77319209899994,3.939941508000146],[-62.76626745599995,3.96469452000018],[-62.76740433799998,3.987096252000157],[-62.77065995299995,4.005389710000131],[-62.766215779999946,4.020711772000197],[-62.744356648999904,4.034018453000115],[-62.7274584559999,4.038514302000138],[-62.67066605699997,4.043656108000135],[-62.588655558999896,4.030711162000117],[-62.56095699099986,4.037790833000145],[-62.54881302999987,4.077452494000113],[-62.548606322999916,4.098071391000119],[-62.54643591399994,4.113910218000128],[-62.53697912599995,4.12540822400014],[-62.514913289999946,4.133108012000136],[-62.48370072499998,4.139179993000184],[-62.475174112999944,4.143882548000163],[-62.46985144099991,4.151608175000163],[-62.46654414899993,4.168738912000123],[-62.462978474999936,4.174707540000142],[-62.428096883999864,4.183182475000137],[-62.38417191599993,4.173467306000191],[-62.192659057999926,4.094738261000201],[-62.15359167499988,4.090294088000107],[-62.11111364799988,4.10484100400015],[-62.03504593999989,4.159876404000116],[-61.9901907959999,4.166413473000176],[-61.96859004699993,4.160083110000159],[-61.950348266999946,4.152228292000132],[-61.93148636999993,4.146414693000153],[-61.908231973999925,4.146156311000183],[-61.88812984199986,4.150161235000084],[-61.866890828999885,4.15703420000014],[-61.84704707899991,4.166051737000188],[-61.83102738499994,4.176929627000149],[-61.77919592299986,4.232688497000183],[-61.756354939999966,4.246356914000117],[-61.73780310099991,4.252067159000163],[-61.71888952599996,4.254650980000164],[-61.68054561399995,4.252480571000163],[-61.64915218099992,4.243411357000112],[-61.64052221799997,4.241912740000187],[-61.628223225999925,4.243463033000126],[-61.610188150999925,4.251627909000135],[-61.59907771799994,4.254392599000184],[-61.585409301999896,4.253410746000128],[-61.57657263199991,4.249715881000128],[-61.56727087499987,4.248527324000108],[-61.55215551799998,4.25496104000014],[-61.54210445199993,4.263022562000131],[-61.5335003259999,4.273590393000106],[-61.52673071299998,4.285501811000145],[-61.522364054999876,4.297774964000084],[-61.51642126499988,4.374772848000191],[-61.501874348999905,4.401851298000153],[-61.458181925999945,4.419137064000154],[-61.438622396999925,4.421152446000106],[-61.3810806889999,4.417741801000175],[-61.36002254299988,4.4189303590001],[-61.33322831299998,4.423865459000139],[-61.308242756999896,4.433322246000117],[-61.29304988599998,4.448050029000115],[-61.29584041399994,4.469004822000102],[-61.32294470299991,4.508847351000128],[-61.3155808109999,4.520784607000166],[-61.297261515999935,4.52373016400017],[-61.23806616299992,4.515875346000144],[-61.220108602999936,4.510681865000123],[-61.18592464199988,4.49411956800013],[-61.168587198999944,4.490243835000172],[-61.15119807999994,4.492052510000164],[-61.09546504699998,4.507684631000117],[-61.0119559329999,4.51830413800019],[-60.97728104699988,4.534969788000126],[-60.94779964299996,4.573597921000129],[-60.94040991199994,4.594061788000175],[-60.93105647799993,4.637392477000148],[-60.90343542499991,4.699585062000153],[-60.895813151999924,4.708525085000176],[-60.8879583339999,4.711134745000095],[-60.86868302499996,4.711186422000196],[-60.86002722199993,4.712426656000147],[-60.76367651399994,4.755085552000139],[-60.71814957699988,4.784282735000161],[-60.68006404699991,4.817949931000114],[-60.6126263029999,4.900580546000156],[-60.59192989199997,4.949724834000122],[-60.59867366599991,4.996879578000133],[-60.66430273499994,5.170254008000143],[-60.68486995499992,5.188314921000142],[-60.711018228999926,5.19815928200012],[-60.73985367899988,5.202138367000188],[-60.69517940299994,5.211931051000163],[-60.672958536999886,5.213016256000159],[-60.61355647799984,5.208933818000148],[-60.60177425199995,5.206582540000113],[-60.58970780399997,5.201208191000148],[-60.57939835699997,5.194851990000117],[-60.56828792399994,5.189710185000123],[-60.55384436099993,5.188056539000172],[-60.49741369699989,5.195937195000113],[-60.47749243199988,5.191932271000127],[-60.47002518699995,5.186867981000148],[-60.46312638399988,5.180020853000187],[-60.456356770999946,5.174698181000139],[-60.448967040999946,5.174233094000114],[-60.439122680999866,5.181390279000155],[-60.42741796899988,5.200768942000124],[-60.41979569599991,5.207228496000184],[-60.39894425499995,5.208313700000176],[-60.35499344899989,5.193172506000167],[-60.33308264199994,5.193766785000122],[-60.31406571499988,5.206918436000193],[-60.2737322599999,5.247355245000094],[-60.255206258999884,5.256450297000157],[-60.21342586299994,5.267224833000085],[-60.20030004899988,5.263452453000156],[-60.19094661499991,5.239939677000166]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Chile","sov_a3":"CHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Chile","adm0_a3":"CHL","geou_dif":0,"geounit":"Chile","gu_a3":"CHL","su_dif":0,"subunit":"Chile","su_a3":"CHL","brk_diff":0,"name":"Chile","name_long":"Chile","brk_a3":"CHL","brk_name":"Chile","brk_group":null,"abbrev":"Chile","postal":"CL","formal_en":"Republic of Chile","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Chile","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":5,"mapcolor13":9,"pop_est":16601707,"gdp_md_est":244500,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"CI","iso_a2":"CL","iso_a3":"CHL","iso_n3":"152","un_a3":"152","wb_a2":"CL","wb_a3":"CHL","woe_id":23424782,"woe_id_eh":23424782,"woe_note":"Exact WOE match as country","adm0_a3_is":"CHL","adm0_a3_us":"CHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"CHL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-67.25609290299991,-55.82887135199992],[-67.24510657499988,-55.839613539999846],[-67.22862708199997,-55.844984632999896],[-67.21739661399988,-55.85173919099993],[-67.21495520699995,-55.86101653399989],[-67.22524980399996,-55.87379322699984],[-67.2194718089999,-55.87525807099989],[-67.21007239499995,-55.879489842],[-67.20417232999995,-55.88062916499985],[-67.22411048099991,-55.897556248],[-67.25812740799995,-55.89104583099984],[-67.3208715489999,-55.867608330999865],[-67.33844967399995,-55.864922783999965],[-67.34593665299994,-55.857679945999855],[-67.35020911399994,-55.84775155999995],[-67.35838782499985,-55.83660247199993],[-67.37132727799985,-55.8319638],[-67.4022110669999,-55.836683851999915],[-67.41706295499998,-55.83359140400002],[-67.4034724599999,-55.8186174459999],[-67.38267981699993,-55.81170012799989],[-67.3585505849999,-55.81047942499988],[-67.28197180899994,-55.820977471999946],[-67.25609290299991,-55.82887135199992]]],[[[-67.08995520699997,-55.91375090899997],[-67.10142981699991,-55.914808851999844],[-67.11432857999992,-55.91269296700001],[-67.12401282499988,-55.90699635199985],[-67.13927161399997,-55.89153411299991],[-67.14769446499992,-55.88616301899995],[-67.16490637899992,-55.879652601999965],[-67.17003333199995,-55.87379322699984],[-67.17186438699991,-55.862074476999936],[-67.16917883999994,-55.85165780999986],[-67.1637263659999,-55.842217705999836],[-67.15697180899986,-55.83359140400002],[-67.14037024599992,-55.8173153629999],[-67.12116451699995,-55.807549737999864],[-67.10081946499986,-55.80543385199994],[-67.08063717399992,-55.812432549999926],[-67.08145097599993,-55.818780205999865],[-67.08421790299991,-55.82236093499992],[-67.08869381399995,-55.824395440999865],[-67.09430904899995,-55.82610442499986],[-67.09740149599995,-55.83904387799996],[-67.09471594999988,-55.857191664999874],[-67.08755449099993,-55.876153252999885],[-67.07750403599994,-55.89153411299991],[-67.07237708199995,-55.90292734199997],[-67.07843990799992,-55.910088799999926],[-67.08995520699997,-55.91375090899997]]],[[[-67.56765903099992,-55.807184430000014],[-67.55190995999996,-55.81194426899994],[-67.52461958199987,-55.80744486399989],[-67.51326267999988,-55.809644969999844],[-67.50767981699991,-55.81568775799996],[-67.50161699099989,-55.82105885199992],[-67.49811676299993,-55.812576977999974],[-67.48156947999993,-55.80769089499991],[-67.47160273699987,-55.817704146999915],[-67.47559173099995,-55.82906354799984],[-67.47201342799991,-55.842599294999886],[-67.50729169899995,-55.83030665000002],[-67.53155443799989,-55.84083332899996],[-67.52931525199989,-55.85720740899993],[-67.54385718599988,-55.889845515],[-67.56813635799998,-55.89894387499998],[-67.59450192299991,-55.884544395999875],[-67.60984911999991,-55.890845806999984],[-67.60893898799995,-55.90863943299982],[-67.6218425799999,-55.91850422299979],[-67.64078281099992,-55.91411576299996],[-67.6469183159999,-55.904111216999965],[-67.64406590299987,-55.88919013799986],[-67.63232592199988,-55.87362087099996],[-67.63203018699994,-55.85939638199995],[-67.64866985999996,-55.85988550899983],[-67.66521814899994,-55.86330778299984],[-67.67530444599987,-55.861096895999964],[-67.68681062399986,-55.86743356099997],[-67.69591652699992,-55.88021595499995],[-67.69355835499996,-55.88952097799989],[-67.7125158669999,-55.88652334299993],[-67.73132691599997,-55.87709805399998],[-67.72101614499985,-55.86861084099986],[-67.72597259099986,-55.86358055599994],[-67.7320935219999,-55.85428033799995],[-67.7484089189999,-55.849203520999914],[-67.75497183099989,-55.85910579299997],[-67.77416036299992,-55.867507190999845],[-67.79327716599991,-55.872356563999894],[-67.79982838899988,-55.880850443999954],[-67.80281018299988,-55.89795643299999],[-67.82415486799988,-55.88993989799991],[-67.8365696939999,-55.879886013999915],[-67.85440228799987,-55.882603660999976],[-67.87728597099994,-55.88523808699999],[-67.90357904099994,-55.87431832399985],[-67.9019932629999,-55.86295898499993],[-67.90928221399992,-55.85082962599989],[-67.91394471199986,-55.836566116999855],[-67.89915837599992,-55.828412409999956],[-67.87526586199994,-55.826551144999875],[-67.8477022209999,-55.82370166599992],[-67.82750403599988,-55.816664320999855],[-67.80064856699991,-55.812432549999926],[-67.78817139399987,-55.82051212599999],[-67.7630100799999,-55.82566383099982],[-67.73523001099997,-55.82656410299988],[-67.71119170799994,-55.825316041],[-67.68839846299997,-55.82407009499994],[-67.67039562999989,-55.81573188399989],[-67.65801381899993,-55.82287287899983],[-67.61876380099989,-55.82610442499986],[-67.58349858899986,-55.84051170199991],[-67.56061764199995,-55.837985934999914],[-67.56918326699991,-55.82068757899985],[-67.58670034699995,-55.80990899599985],[-67.58907505499988,-55.80206994999997],[-67.56765903099992,-55.807184430000014]]],[[[-67.15697180899986,-55.778252862999935],[-67.16787675699993,-55.78329843499996],[-67.17992102799985,-55.78460051899987],[-67.19229081899988,-55.78289153399996],[-67.20417232999995,-55.778252862999935],[-67.21165930899991,-55.795342705999886],[-67.2285050119999,-55.79843515399996],[-67.24010169199991,-55.789727471999974],[-67.23208574099988,-55.77141692499991],[-67.21397864499997,-55.761976820999905],[-67.18781490799992,-55.756931247999965],[-67.16490637899992,-55.76083749799987],[-67.15697180899986,-55.778252862999935]]],[[[-67.35582434799994,-55.59205494599993],[-67.35692298099987,-55.5936825499999],[-67.36180579299986,-55.593357028999925],[-67.34825598899991,-55.6003557269999],[-67.34508216099994,-55.6081682269999],[-67.34874426999988,-55.6237118469999],[-67.34520423099991,-55.633396091999956],[-67.32774817599994,-55.644707940999844],[-67.3208715489999,-55.654066664999874],[-67.33706620999988,-55.66171640399999],[-67.3500056629999,-55.67197031000002],[-67.35871334499987,-55.68629322699983],[-67.36180579299986,-55.706231377999906],[-67.34911048099991,-55.71062590899998],[-67.26992753799993,-55.71624114399998],[-67.26817786399994,-55.71933359199988],[-67.27721106699994,-55.734470309999956],[-67.27989661399991,-55.74081796699999],[-67.27529863199987,-55.74684010199991],[-67.26537024599989,-55.749200127999956],[-67.25584876199987,-55.75302499799987],[-67.25255286399994,-55.76392994599995],[-67.26475989499991,-55.77776458099985],[-67.29039466099987,-55.78329843499996],[-67.31932532499988,-55.78622812299989],[-67.34137936099998,-55.79192473799987],[-67.33971106699997,-55.76873137799984],[-67.34300696499992,-55.75855885199981],[-67.35423743399991,-55.754815362999956],[-67.37608801999994,-55.75090911299987],[-67.38369706899991,-55.74814218499991],[-67.38853919199997,-55.744886976999865],[-67.39395097599993,-55.742933851999815],[-67.40343176999991,-55.74423593499999],[-67.42223059799997,-55.76051197699985],[-67.43073482999992,-55.76392994599995],[-67.44554602799988,-55.76262786299995],[-67.45213782499985,-55.756931247999965],[-67.45653235599994,-55.749688408999944],[-67.46483313699991,-55.74423593499999],[-67.47630774599986,-55.742445570999834],[-67.51329505099991,-55.74423593499999],[-67.53282630099997,-55.74130624799998],[-67.55182857999998,-55.73560963299982],[-67.56851152299993,-55.72730885199984],[-67.58153235599991,-55.71624114399998],[-67.58153235599991,-55.709405205999964],[-67.55068925699993,-55.70614999799992],[-67.53905188699994,-55.66008879999997],[-67.50584876199991,-55.654066664999874],[-67.49132239499988,-55.65894947699994],[-67.46654212099992,-55.67245859199992],[-67.44774329299989,-55.67522551899997],[-67.43504798099991,-55.6828752579999],[-67.42804928299992,-55.69784921699994],[-67.42064368399994,-55.70745208099992],[-67.40680904899995,-55.69939544099998],[-67.4043676419999,-55.689629815999936],[-67.40343176999991,-55.64788176899991],[-67.41209876199991,-55.63762786299988],[-67.42320716099994,-55.63128020599986],[-67.43285071499992,-55.62379322699989],[-67.43687903599988,-55.61003997199996],[-67.43199622299991,-55.595472914999846],[-67.41982988199992,-55.58709075299997],[-67.35912024599989,-55.57390715899984],[-67.34870357999989,-55.57561614399992],[-67.35496985599994,-55.585870049999954],[-67.35606848899988,-55.58912525799982],[-67.35582434799994,-55.59205494599993]]],[[[-67.71458899599992,-55.61988697699998],[-67.73119055899988,-55.621514581],[-67.73859615799995,-55.61687590899989],[-67.73688717399995,-55.60637786299991],[-67.73208574099996,-55.59636809699983],[-67.72468014199997,-55.588799737999885],[-67.71495520699992,-55.585870049999954],[-67.70148678299995,-55.58407968499988],[-67.69229081899987,-55.57935963299996],[-67.68667558499988,-55.572686456],[-67.68394934799991,-55.565362237999906],[-67.68382727799994,-55.55217864399995],[-67.68834387899989,-55.5442033829999],[-67.69420325399993,-55.53834400799995],[-67.69762122299994,-55.531182549999826],[-67.7012426419999,-55.51295338299993],[-67.69937089799991,-55.505466403999954],[-67.69139563699989,-55.49716562299998],[-67.68545488199996,-55.493829033999866],[-67.6787003249999,-55.49163176899987],[-67.67170162699995,-55.49065520599998],[-67.66490637899992,-55.49049244599984],[-67.66051184799994,-55.49098072699983],[-67.65534420499992,-55.492445570999884],[-67.64313717399995,-55.497328382999946],[-67.61758378799996,-55.51287200299995],[-67.59557044199997,-55.53313567499987],[-67.58531653599994,-55.55413176899999],[-67.59520423099994,-55.572198174999826],[-67.5906469389999,-55.57903411299985],[-67.58775794199997,-55.585870049999954],[-67.61530514199998,-55.58806731599986],[-67.66104081899991,-55.60865650799989],[-67.71458899599992,-55.61988697699998]]],[[[-69.6561580069999,-55.364190362999956],[-69.64037024599995,-55.37704843499998],[-69.63731848899994,-55.388360283999866],[-69.65550696499994,-55.38583749799986],[-69.6884659499999,-55.37363046699997],[-69.70645097599996,-55.37688567499983],[-69.70116126199989,-55.38469817499982],[-69.67145748599995,-55.401462497999844],[-69.68602454299989,-55.40732187299997],[-69.70274817599991,-55.408949476999815],[-69.80174719999991,-55.407810153999954],[-69.79417883999994,-55.39869557099997],[-69.78929602799988,-55.390313408999916],[-69.78380286399994,-55.38372161299985],[-69.77440344999994,-55.3804664039999],[-69.7809138659999,-55.36541106599997],[-69.80174719999991,-55.33261484199996],[-69.71450761599988,-55.34498463299982],[-69.67467200399992,-55.355238539999924],[-69.6561580069999,-55.364190362999956]]],[[[-69.94513912699992,-55.29851653399986],[-69.97984778599988,-55.32634856599983],[-69.98216712099995,-55.33505624799999],[-69.98460852799988,-55.35947030999995],[-69.9866837229999,-55.36614348799982],[-70.00645911399991,-55.37444426899998],[-70.0169978509999,-55.360935154],[-70.02611243399988,-55.341485283999916],[-70.04133053299994,-55.33261484199996],[-70.03758704299992,-55.330743096999896],[-70.03482011599996,-55.3290341129999],[-70.03189042899993,-55.32740650799997],[-70.02765865799992,-55.32634856599983],[-70.02765865799992,-55.31894296699984],[-70.04832923099994,-55.31145598799987],[-70.06802324099988,-55.311700128],[-70.08820553299988,-55.30901458099993],[-70.11021887899992,-55.29225025799991],[-70.09504146999993,-55.29176197699992],[-70.06932532499988,-55.28525155999993],[-70.05500240799998,-55.28484465899992],[-70.04454505099991,-55.28866952899985],[-70.02358964799994,-55.30266692499999],[-70.01402747299997,-55.305922132999854],[-69.97150631399992,-55.28826262799984],[-69.94782467399989,-55.283868096999946],[-69.94513912699992,-55.29851653399986]]],[[[-66.89631100199998,-55.33261484199996],[-66.93805904899992,-55.334567967],[-67.06017005099997,-55.32634856599983],[-67.0501195949999,-55.307305596999925],[-67.0553279289999,-55.29924895599989],[-67.0665583979999,-55.292657158999916],[-67.07445227799985,-55.278008722],[-67.06940670499992,-55.26718515399991],[-67.05573482999989,-55.25457122199983],[-67.03941809799997,-55.243584893999966],[-67.02660071499994,-55.23699309699999],[-66.99225826699998,-55.22869231599983],[-66.87511145699989,-55.230889581],[-66.86530514199995,-55.23300546699992],[-66.85716712099995,-55.23788827899998],[-66.85106360599985,-55.24765390400002],[-66.84943600199992,-55.25351327899997],[-66.84850012899994,-55.261651299999976],[-66.84992428299992,-55.26864999799996],[-66.85533606699997,-55.27117278399998],[-66.82957923099994,-55.282484632999875],[-66.83958899599992,-55.302504164999846],[-66.86766516799992,-55.32219817499988],[-66.89631100199998,-55.33261484199996]]],[[[-66.47175045499995,-55.182386976999844],[-66.4606013659999,-55.18303801899989],[-66.43635006399992,-55.18141041499987],[-66.42674719999985,-55.18547942499991],[-66.42080644399994,-55.20086028399986],[-66.43635006399992,-55.20964934699992],[-66.47175045499995,-55.21648528399985],[-66.48265540299991,-55.22722747199995],[-66.50401770699996,-55.25798919099993],[-66.51549231699991,-55.26433684699987],[-66.53522701699995,-55.26751067499993],[-66.56932532499985,-55.281670830999865],[-66.58779863199987,-55.28484465899992],[-66.59349524599985,-55.28142669099991],[-66.59829667899996,-55.2749976539999],[-66.60391191299996,-55.270765882999974],[-66.62083899599995,-55.279473565999865],[-66.62975012899997,-55.27792734200001],[-66.63752193899997,-55.27206796699988],[-66.64305579299989,-55.26433684699987],[-66.64525305899988,-55.250746351999915],[-66.6429744129999,-55.23333098799994],[-66.63805091099994,-55.21672942499989],[-66.63219153599991,-55.20598723799987],[-66.61913001199993,-55.19801197699983],[-66.56729081899994,-55.182386976999844],[-66.54613196499992,-55.16838958099987],[-66.53482011599993,-55.16277434699997],[-66.52245032499991,-55.160332940999936],[-66.5086156889999,-55.16301848799983],[-66.4845271479999,-55.176853122999916],[-66.47175045499995,-55.182386976999844]]],[[[-66.83096269399991,-55.06226978999993],[-66.80687415299988,-55.11288827899992],[-66.8517146479999,-55.106622002999956],[-66.92784583199989,-55.062676690999936],[-66.99010169199988,-55.047621351999915],[-67.03571529899992,-55.02849700299985],[-67.06623287699995,-55.02214934699991],[-67.07095292899987,-55.01677825299995],[-67.07091223899988,-55.00945403399995],[-67.06602942599991,-55.00115325299997],[-67.0470271479999,-54.991143487999985],[-67.02391516799986,-54.992445570999806],[-66.97858639199995,-55.00457122199989],[-66.89561926999993,-55.0157203099999],[-66.86900794199991,-55.02410247199996],[-66.84801184799997,-55.03932057099994],[-66.83096269399991,-55.06226978999993]]],[[[-68.34569251199986,-54.9984677059999],[-68.3350723949999,-55.01043059699983],[-68.32860266799992,-55.02792734199988],[-68.32835852799988,-55.04615650799987],[-68.33482825399997,-55.06243254999989],[-68.34870357999995,-55.073174737999814],[-68.3727107409999,-55.07496510199981],[-68.39362545499998,-55.06536223799983],[-68.41266842399995,-55.052504164999895],[-68.43126380099994,-55.04461028399982],[-68.44139563699991,-55.04566822699988],[-68.44383704299995,-55.052504164999895],[-68.44005286399994,-55.06389739399995],[-68.43126380099994,-55.07878997199991],[-68.48062089799993,-55.10279713299986],[-68.51081295499995,-55.11239999799992],[-68.53058834499987,-55.10979583099984],[-68.54613196499989,-55.09596119599993],[-68.57359778599991,-55.076755466999884],[-68.60260982999992,-55.066094658999944],[-68.62303626199989,-55.07878997199991],[-68.62022864499994,-55.0866024719999],[-68.60753333199997,-55.09140390399998],[-68.59243730399996,-55.09514739399992],[-68.58210201699994,-55.09978606599986],[-68.57575436099992,-55.10947031],[-68.56997636599996,-55.12314218499994],[-68.56944739499988,-55.1354305969999],[-68.57868404899995,-55.140801690999865],[-68.59024003799996,-55.14299895599986],[-68.61607825399989,-55.1522762999999],[-68.62950598899988,-55.154473565999986],[-68.64663652299993,-55.15300872199993],[-68.69131425699987,-55.140801690999865],[-68.75340735599991,-55.13396575299985],[-68.79173743399994,-55.12200286299982],[-68.80492102799988,-55.120293877999906],[-68.82591712099992,-55.11516692499998],[-68.89053300699987,-55.07878997199991],[-68.96556555899991,-55.05445728999994],[-68.99299068899995,-55.05201588299981],[-69.00389563699994,-55.04208749799999],[-69.02798417899996,-55.02459075299995],[-69.05190995999993,-55.01921965899999],[-69.06187903599991,-55.04461028399982],[-69.05699622299994,-55.06080494599988],[-69.04621334499984,-55.063164971999925],[-69.03286699099993,-55.059665622999844],[-69.02025305899986,-55.05828215899995],[-69.00495357999989,-55.06324635199991],[-68.99767005099997,-55.06951262799986],[-68.99315344999994,-55.07724374799987],[-68.98615475199995,-55.0861955709999],[-68.96784420499998,-55.100762627999835],[-68.94847571499986,-55.110935153999876],[-68.78661048099991,-55.165215753],[-68.76244055899991,-55.169040622999916],[-68.67857825399992,-55.16838958099987],[-68.60879472599987,-55.175388278999854],[-68.58551998599995,-55.18547942499991],[-68.56403561099992,-55.19198984199991],[-68.41405188699994,-55.17994557099981],[-68.3831274079999,-55.184502862999935],[-68.35753333199992,-55.21306731599984],[-68.29702714799993,-55.220635674999976],[-68.2742406889999,-55.23015715899997],[-68.28819739499995,-55.229668877999984],[-68.32884680899986,-55.23699309699999],[-68.23884029899989,-55.25750090899986],[-68.21784420499995,-55.25969817499994],[-68.20921790299985,-55.262872003],[-68.20531165299984,-55.27117278399998],[-68.20807857999992,-55.2828101539999],[-68.21637936099998,-55.28915781000001],[-68.22760982999989,-55.29176197699992],[-68.23916581899991,-55.29225025799991],[-68.2747289699999,-55.27971770599999],[-68.28380286399987,-55.28142669099991],[-68.29279537699992,-55.28630950299998],[-68.30492102799991,-55.28923919099991],[-68.4315486319999,-55.29851653399986],[-68.45368404899997,-55.29225025799991],[-68.46654212099989,-55.29070403399987],[-68.47223873599998,-55.295342705999985],[-68.47671464799993,-55.30396900799981],[-68.48745683499995,-55.309177341999984],[-68.50007076699993,-55.31145598799987],[-68.59251868399994,-55.31275807099987],[-68.61681067599991,-55.305922132999854],[-68.62824459499987,-55.29509856599986],[-68.64940344999988,-55.26392994599987],[-68.6609594389999,-55.25750090899986],[-68.70173092399997,-55.25505950299983],[-68.72215735599993,-55.25855885199991],[-68.74596106699994,-55.27117278399998],[-68.70055091099994,-55.26572030999986],[-68.68004309799987,-55.26718515399991],[-68.67145748599998,-55.28142669099991],[-68.67491614499997,-55.28630950299998],[-68.68028723899994,-55.292087497999944],[-68.68032792899993,-55.296563409],[-68.65684973899994,-55.300388278999925],[-68.6480199859999,-55.30510833099984],[-68.64464270699997,-55.311700128],[-68.65038001199986,-55.31894296699984],[-68.63170325399997,-55.32659270599996],[-68.60826575399989,-55.32838307099985],[-68.56159420499989,-55.32634856599983],[-68.57315019399994,-55.33505624799999],[-68.58527584499993,-55.341729424999954],[-68.59581458199997,-55.349216403999925],[-68.60252844999994,-55.35995859199984],[-68.58381100199995,-55.35881926899999],[-68.51325436099998,-55.33277760199993],[-68.49290930899988,-55.328871351999844],[-68.44798743399988,-55.32634856599983],[-68.42617753799993,-55.32878997199986],[-68.41075598899991,-55.33261484199996],[-68.40534420499995,-55.335625908999965],[-68.39924068899995,-55.3402645809999],[-68.39110266799986,-55.344414971999846],[-68.37975012899997,-55.346286716999906],[-68.35578365799992,-55.342543226999965],[-68.34532630099994,-55.34400807099984],[-68.3350723949999,-55.35312265400001],[-68.33112545499992,-55.36337655999986],[-68.33291581899991,-55.371840101999894],[-68.33584550699993,-55.3795712219999],[-68.3350723949999,-55.38730234199991],[-68.3243708979999,-55.39950937299997],[-68.31476803299992,-55.39674244599993],[-68.30333411399995,-55.387627862999935],[-68.2872615229999,-55.3804664039999],[-68.27623450399994,-55.3791643209999],[-68.26634680899991,-55.380140882999875],[-68.25743567599989,-55.38396575299998],[-68.23957271999993,-55.398532809999914],[-68.23208574099996,-55.39902109199999],[-68.22394771999984,-55.396091403999876],[-68.21214758999989,-55.39397551899987],[-68.16909745999993,-55.397230726999915],[-68.14647376199989,-55.404392184999864],[-68.14663652299993,-55.41790129999983],[-68.15127519399996,-55.42555103999987],[-68.15135657499994,-55.43238697699997],[-68.14989173099988,-55.43808359199995],[-68.15005449099993,-55.441827080999985],[-68.15684973899997,-55.448500257999946],[-68.17031816299993,-55.45517343499991],[-68.17735755099991,-55.462334893999945],[-68.15680904899997,-55.47047291499996],[-68.07872473899994,-55.462334893999945],[-68.05748450399994,-55.469008070999905],[-68.06484941299996,-55.48406340899983],[-68.09544837099989,-55.51002369599991],[-68.10138912699989,-55.527601820999934],[-68.09072831899996,-55.53590260199992],[-68.07135982999995,-55.54257577899988],[-68.05109615799995,-55.55510833099997],[-68.0448298819999,-55.56487395599983],[-68.04381262899992,-55.57203541499987],[-68.0404353509999,-55.578708592],[-68.02721106699997,-55.585870049999954],[-68.01121985599988,-55.588555596999846],[-67.98013261599996,-55.58757903399995],[-67.96515865799991,-55.593357028999925],[-67.97960364499988,-55.597588799999855],[-67.98672441299993,-55.605889580999836],[-67.99152584499993,-55.6163876279999],[-67.99925696499994,-55.627536717],[-68.01781165299994,-55.641371351999915],[-68.02717037699998,-55.650160414999974],[-68.03335527299996,-55.66155364399985],[-67.9981990229999,-55.66041432099981],[-67.98485266799987,-55.66415780999985],[-67.98558508999992,-55.67522551899997],[-67.99290930899991,-55.67701588299996],[-68.03677324099996,-55.69573333099984],[-68.06159420499992,-55.71306731599992],[-68.07152258999992,-55.71624114399998],[-68.08922278599991,-55.715264580999914],[-68.09829667899993,-55.71209075299985],[-68.11595618399994,-55.69573333099984],[-68.13560950399997,-55.68124765399989],[-68.14378821499989,-55.67294687299991],[-68.15005449099993,-55.66155364399985],[-68.15025794199988,-55.65585702899987],[-68.14403235599994,-55.64706796699989],[-68.14321855399993,-55.64104583099989],[-68.1462296209999,-55.634942315999986],[-68.15510006399995,-55.62672291499982],[-68.15689042899996,-55.6237118469999],[-68.15196692599989,-55.60361093499995],[-68.15330969999988,-55.596286716999856],[-68.16372636599988,-55.593357028999925],[-68.17666581899988,-55.59587981599985],[-68.21153723899991,-55.61370208099983],[-68.23534094999991,-55.61744557099995],[-68.26748613199996,-55.617852471999946],[-68.28978430899991,-55.610121351999936],[-68.28380286399987,-55.589532159],[-68.25609290299991,-55.55868905999986],[-68.24864661399991,-55.54176197699987],[-68.25251217399992,-55.524509372999866],[-68.26984615799992,-55.516534112999906],[-68.32900956899994,-55.503187757999896],[-68.34186764199994,-55.49374765399988],[-68.35362708199992,-55.47527434699985],[-68.38011633999989,-55.48040129999996],[-68.42503821499992,-55.5038388],[-68.45750891799989,-55.503106377999906],[-68.50047766799995,-55.49098072699983],[-68.53807532499994,-55.47258879999996],[-68.55418860599991,-55.45232512799987],[-68.55418860599991,-55.43254973799985],[-68.55577551999993,-55.42351653399993],[-68.56090247299994,-55.42115650799988],[-68.57184811099992,-55.42131926899993],[-68.5758357409999,-55.42400481599982],[-68.5797419909999,-55.429782809999885],[-68.58560136599992,-55.434828382999825],[-68.59508216099994,-55.435642185],[-68.59679114499994,-55.430840752999934],[-68.59788977799991,-55.4210751279999],[-68.60301673099991,-55.41179778399985],[-68.61681067599991,-55.407810153999954],[-68.61750240799995,-55.42327239399997],[-68.6151423819999,-55.43743254999991],[-68.61021887899994,-55.450453382999804],[-68.60252844999994,-55.462334893999945],[-68.68468176999991,-55.45794036299987],[-68.71178137899993,-55.466078382999974],[-68.73151607999998,-55.46493905999994],[-68.77330481699991,-55.42880624799991],[-68.80113684799997,-55.42131926899993],[-68.77448482999992,-55.451267185],[-68.77220618399986,-55.46379973799982],[-68.80113684799997,-55.462334893999945],[-68.77651933499996,-55.48219166499986],[-68.76829993399986,-55.49260833099985],[-68.78010006399992,-55.49716562299998],[-68.79893958199997,-55.49911874799984],[-68.83291581899991,-55.50807057099987],[-68.85269120999993,-55.51002369599991],[-68.86534583199992,-55.50530364399999],[-68.88255774599992,-55.49431731599994],[-68.8976944649999,-55.48186614399984],[-68.9042048819999,-55.47283294099983],[-68.90925045499995,-55.4629859349999],[-68.93594316299996,-55.45338307099992],[-68.94859778599994,-55.44557057099993],[-68.96735592399989,-55.42994557099994],[-68.97105872299994,-55.42115650799988],[-68.96568762899997,-55.407810153999954],[-68.95596269399994,-55.40260182099988],[-68.9042048819999,-55.38730234199991],[-68.88402258999989,-55.38518645599999],[-68.82795162699995,-55.38730234199991],[-68.77232825399992,-55.38005950299989],[-68.75340735599991,-55.3804664039999],[-68.76789303299995,-55.37810637799985],[-68.80866451699993,-55.35995859199984],[-68.80866451699993,-55.35312265400001],[-68.76024329299992,-55.33261484199996],[-68.78600012899997,-55.33196379999992],[-68.9505102199999,-55.38111744599994],[-68.9630427729999,-55.38225676899997],[-68.97130286399988,-55.37712981599987],[-68.96605383999989,-55.368422132999974],[-68.9276423819999,-55.34010182099993],[-68.91746985599994,-55.334730726999965],[-68.90762285099993,-55.33261484199996],[-68.89785722599987,-55.32781340899997],[-68.89639238199993,-55.3165015599999],[-68.89781653599988,-55.30315520599997],[-68.89679928299992,-55.29225025799991],[-68.8887426419999,-55.2815080709999],[-68.85582434799991,-55.25750090899986],[-68.86074785099987,-55.252862237999835],[-68.86530514199993,-55.24635182099984],[-68.87010657499991,-55.24382903399991],[-68.86424719999985,-55.2334937479999],[-68.85484778599994,-55.22470468499984],[-68.84349524599985,-55.218682549999926],[-68.83161373599992,-55.21648528399985],[-68.82640540299991,-55.21266041499984],[-68.80850175699996,-55.19451262799992],[-68.80113684799997,-55.18865325299998],[-68.82477779899989,-55.18759530999993],[-68.9042048819999,-55.222751559999985],[-68.94908606699991,-55.23219166499991],[-68.95946204299992,-55.23699309699999],[-68.96568762899997,-55.25514088299981],[-68.96910559799989,-55.26091887799995],[-68.97655188699989,-55.26441822699986],[-68.98668372299991,-55.26523202899987],[-69.03718014199984,-55.26230234199985],[-69.0567927729999,-55.25351327899997],[-69.08853105399996,-55.222751559999985],[-69.09805253799992,-55.21640390399987],[-69.10798092399995,-55.211521091999984],[-69.11660722599996,-55.20566171699985],[-69.12267005099994,-55.196058851999965],[-69.12389075399997,-55.18287525799983],[-69.11880449099993,-55.15984465899986],[-69.12267005099994,-55.14763762799997],[-69.15143795499989,-55.170830987999814],[-69.14439856699991,-55.19638437299999],[-69.12311764199987,-55.22144947699981],[-69.10903886599989,-55.24382903399991],[-69.13410396999988,-55.247735284],[-69.16486568899998,-55.24212004999991],[-69.19359290299994,-55.23056405999998],[-69.2127172519999,-55.21648528399985],[-69.22008216099991,-55.20566171699985],[-69.22647050699993,-55.1924781229999],[-69.2308650379999,-55.17839934699995],[-69.23253333199992,-55.16497161299987],[-69.23737545499992,-55.156508070999834],[-69.24596106699991,-55.151950778999876],[-69.24974524599995,-55.14430103999994],[-69.23997962099992,-55.12712981599992],[-69.25047766799989,-55.12997812299996],[-69.26732337099989,-55.13884856599982],[-69.27383378799996,-55.140801690999865],[-69.32095292899996,-55.13958098799984],[-69.35244706899988,-55.1522762999999],[-69.41454016799992,-55.15642669099985],[-69.43862870999993,-55.161879164999974],[-69.41950436099995,-55.16611093499999],[-69.38475501199991,-55.158135674999855],[-69.3666072259999,-55.158135674999855],[-69.35212154899995,-55.164239190999844],[-69.30557206899994,-55.16545989399986],[-69.28783118399994,-55.16814544099993],[-69.29710852799988,-55.17351653399998],[-69.30085201699993,-55.174981377999856],[-69.29190019399987,-55.19036223799989],[-69.27212480399996,-55.21347421699985],[-69.26732337099989,-55.23015715899997],[-69.29613196499992,-55.222263279],[-69.32233639199984,-55.22673919099996],[-69.37718665299984,-55.24382903399991],[-69.40904700399997,-55.24684010199982],[-69.4249568349999,-55.24586353999985],[-69.43179277299993,-55.24041106599991],[-69.43809973899994,-55.23064544099987],[-69.4525447259999,-55.22942473799986],[-69.46857662699989,-55.232842705999865],[-69.47960364499993,-55.23699309699999],[-69.47960364499993,-55.24382903399991],[-69.47044837099986,-55.249118747999894],[-69.46153723899994,-55.25750090899986],[-69.45466061099991,-55.26604583099988],[-69.45164954299992,-55.27117278399998],[-69.45006262899989,-55.27971770599999],[-69.44981848899994,-55.287286065999865],[-69.45225989499997,-55.295586846999846],[-69.45909583199989,-55.305922132999854],[-69.44684811099992,-55.30348072699982],[-69.42906653599994,-55.289727471999896],[-69.41812089799987,-55.28484465899992],[-69.40583248599992,-55.28443775799992],[-69.39281165299994,-55.28736744599985],[-69.3804418609999,-55.292657158999916],[-69.36974036399997,-55.29851653399986],[-69.36009680899991,-55.305433851999865],[-69.35521399599995,-55.31047942499998],[-69.34898841099988,-55.31462981599992],[-69.33560136599988,-55.31894296699984],[-69.32054602799985,-55.31894296699984],[-69.30703691299986,-55.31454843499986],[-69.29405676999988,-55.31226978999988],[-69.28038489499994,-55.31894296699984],[-69.28840084499988,-55.32366301899993],[-69.30581620999996,-55.33066171699992],[-69.31509355399993,-55.33261484199996],[-69.31509355399993,-55.33945077899988],[-69.3060603509999,-55.34295012799997],[-69.30231686099998,-55.34661223799993],[-69.30321204299989,-55.35198333099998],[-69.3082576159999,-55.35995859199984],[-69.29015051999988,-55.3627255189999],[-69.26187089799993,-55.36435312299992],[-69.24058997299997,-55.36956145599983],[-69.24339758999992,-55.38388437299999],[-69.28042558499993,-55.401462497999844],[-69.29889889199987,-55.413750908999894],[-69.30085201699993,-55.428155205999865],[-69.29283606699997,-55.43027109199996],[-69.26357988199993,-55.427911065999915],[-69.25365149599995,-55.428155205999865],[-69.24795488199995,-55.43303801899983],[-69.24396725199998,-55.44011809699998],[-69.2386775379999,-55.44646575299992],[-69.22948157499994,-55.449314059999956],[-69.20616614499994,-55.43775807099993],[-69.19497636599989,-55.435642185],[-69.1651912099999,-55.43710702899989],[-69.13703365799991,-55.441827080999985],[-69.17223059799989,-55.4616838519999],[-69.17796790299985,-55.469821872999916],[-69.17430579299992,-55.47771575299989],[-69.15514075399994,-55.48495859199991],[-69.15062415299988,-55.49374765399988],[-69.16161048099994,-55.514336846999825],[-69.18639075399992,-55.50408294099998],[-69.22638912699995,-55.469821872999916],[-69.24909420499988,-55.46917083099987],[-69.29938717399995,-55.490329684999956],[-69.31883704299986,-55.486911716999956],[-69.3294164699999,-55.47991301899997],[-69.33922278599994,-55.474867445999855],[-69.34642493399988,-55.46721770599982],[-69.34923255099991,-55.45232512799987],[-69.34740149599995,-55.41765715899998],[-69.34923255099991,-55.407810153999954],[-69.36286373599995,-55.388929945999934],[-69.37608801999991,-55.39039478999981],[-69.38621985599984,-55.404880466999934],[-69.39020748599992,-55.42473723799986],[-69.39102128799993,-55.44638437299994],[-69.39484615799995,-55.46917083099987],[-69.40330969999991,-55.4880510399998],[-69.41812089799987,-55.49716562299998],[-69.43708248599998,-55.49130624799985],[-69.44237219999987,-55.472426039999824],[-69.43862870999993,-55.431898695999806],[-69.45152747299994,-55.408868096999825],[-69.50804602799988,-55.40862395599997],[-69.52057857999995,-55.39397551899987],[-69.5040583979999,-55.3804664039999],[-69.39769446499992,-55.35995859199984],[-69.41608639199987,-55.35312265400001],[-69.48704993399991,-55.35995859199984],[-69.48704993399991,-55.35312265400001],[-69.48106848899991,-55.350274346999974],[-69.46593176999991,-55.33945077899988],[-69.49376380099997,-55.33611419099986],[-69.50934811099995,-55.34612395599984],[-69.52293860599991,-55.35947030999995],[-69.54478919199995,-55.36614348799982],[-69.60765540299991,-55.365492445999955],[-69.63044186099995,-55.35995859199984],[-69.61253821499989,-55.35442473799992],[-69.60651607999998,-55.34791432099993],[-69.60985266799992,-55.33993905999988],[-69.62018795499992,-55.32952239399989],[-69.63068600199998,-55.32659270599996],[-69.66421464799993,-55.32830169099987],[-69.67882239499994,-55.32634856599983],[-69.68919837099995,-55.32057057099986],[-69.69847571499989,-55.3138973939999],[-69.70986894399996,-55.3082821589999],[-69.72667395699997,-55.305922132999854],[-69.78807532499988,-55.305922132999854],[-69.77725175699996,-55.29420338299995],[-69.76187089799993,-55.29143645599989],[-69.74498450399994,-55.292087497999944],[-69.72964433499988,-55.29111093499987],[-69.67080644399991,-55.274183851999894],[-69.64997311099992,-55.27166106599988],[-69.56895911399997,-55.27117278399998],[-69.59300696499992,-55.263278904],[-69.61628170499992,-55.261651299999976],[-69.66828365799998,-55.26433684699987],[-69.67398027299987,-55.260349216999984],[-69.67003333199997,-55.2512346329999],[-69.65770423099994,-55.23699309699999],[-69.63914954299992,-55.228773695999806],[-69.54637610599991,-55.20582447699982],[-69.53111731699994,-55.19915129999986],[-69.5038956369999,-55.18059661299986],[-69.50007076699993,-55.174981377999856],[-69.5078832669999,-55.171807549999976],[-69.55158443899998,-55.174981377999856],[-69.56895911399997,-55.17994557099981],[-69.60586503799993,-55.20330169099998],[-69.62360592399992,-55.20964934699992],[-69.63902747299994,-55.2089169249999],[-69.6494848299999,-55.20582447699982],[-69.6581925119999,-55.20566171699985],[-69.66828365799998,-55.21306731599984],[-69.6725154289999,-55.21941497199996],[-69.67528235599987,-55.225030205999865],[-69.68049068899995,-55.23064544099987],[-69.69188391799992,-55.23699309699999],[-69.71690833199992,-55.24374765399993],[-69.84805253799988,-55.25790780999986],[-69.86685136599993,-55.25408294099985],[-69.86314856699988,-55.23699309699999],[-69.87840735599985,-55.23300546699992],[-69.9105525379999,-55.229180597],[-69.92467200399994,-55.222751559999985],[-69.87608801999988,-55.22144947699981],[-69.85240637899997,-55.215508721999875],[-69.83527584499984,-55.20232512799992],[-69.89403235599993,-55.201104424999905],[-69.91161048099988,-55.196058851999965],[-69.90160071499989,-55.18613046699996],[-69.84268144399994,-55.16814544099993],[-69.86733964799993,-55.163750908999944],[-69.95958411399997,-55.1617977839999],[-69.98326575399989,-55.16497161299987],[-70.00210527299993,-55.17115650799993],[-70.02000891799989,-55.164239190999844],[-70.03148352799994,-55.15325286299997],[-70.03107662699992,-55.14763762799997],[-70.02183997299997,-55.14316171699991],[-69.9866837229999,-55.11288827899992],[-69.97716223899991,-55.12509530999998],[-69.96593176999991,-55.126641533999845],[-69.9564509759999,-55.11882903399985],[-69.94758053299994,-55.08709075299989],[-69.93529212099989,-55.0792782529999],[-69.88597571499992,-55.06357187299993],[-69.82217363199987,-55.06511809699996],[-69.77301998599995,-55.05339934699989],[-69.65025794199994,-55.05169036299988],[-69.61681067599989,-55.04143645599995],[-69.58747311099997,-55.04119231599982],[-69.57526607999992,-55.06633879999998],[-69.56997636599993,-55.100518487999885],[-69.56151282499991,-55.12712981599992],[-69.58202063699994,-55.154473565999986],[-69.54149329299992,-55.145114841999956],[-69.53819739499988,-55.12086353999997],[-69.5467830069999,-55.087985934999885],[-69.5416560539999,-55.05201588299981],[-69.54621334499984,-55.03753020599986],[-69.52757727799985,-55.031996351999936],[-69.47960364499993,-55.03093840899989],[-69.4457087879999,-55.018324476999815],[-69.43862870999993,-55.01669687299997],[-69.42593339799987,-55.02304452899991],[-69.42650305899994,-55.03134530999989],[-69.43480383999992,-55.039157809999885],[-69.44546464799996,-55.04461028399982],[-69.42979895699996,-55.052666924999855],[-69.41673743399991,-55.04989999799999],[-69.40416419199991,-55.042901299999826],[-69.39020748599992,-55.038344007999875],[-69.37458248599995,-55.03980885199993],[-69.34463456899988,-55.04924895599994],[-69.32876542899996,-55.05201588299981],[-69.33763587099992,-55.03899504999992],[-69.38341223899991,-55.01669687299997],[-69.31965084499987,-54.99334075299998],[-69.28563391799995,-54.987074476999844],[-69.25365149599995,-54.99065520599991],[-69.21328691299986,-55.013441664999924],[-69.19871985599985,-55.01669687299997],[-69.18553626199991,-55.013278903999876],[-69.18883216099994,-55.00546640399988],[-69.20055091099994,-54.996758721999896],[-69.2127172519999,-54.99065520599991],[-69.18370520699992,-54.992445570999806],[-69.12584387899992,-54.9885393209999],[-69.09601803299992,-54.99065520599991],[-69.06305904899995,-55.00204843499996],[-69.05101477799994,-55.003594659],[-69.03966223899995,-55.00042083099994],[-69.02415930899986,-54.98642343499998],[-69.01349850199992,-54.983168226999936],[-68.83438066299996,-54.981540622999916],[-68.73546301999997,-54.9496395809999],[-68.6847224599999,-54.94215260199993],[-68.57526607999992,-54.94215260199993],[-68.56444251199994,-54.9401180969999],[-68.5391332669999,-54.93092213299983],[-68.52745520699989,-54.92848072699981],[-68.5135798819999,-54.928887627999984],[-68.44115149599989,-54.9397111959999],[-68.41698157499988,-54.948418877999885],[-68.40611731699988,-54.95435963299981],[-68.37385006399995,-54.980889580999865],[-68.34569251199986,-54.9984677059999]]],[[[-67.80577551999991,-54.91375090899999],[-67.7241918609999,-54.93515390399995],[-67.70181230399987,-54.93173593499985],[-67.67931067599997,-54.924899997999916],[-67.6498103509999,-54.921075128],[-67.46182206899991,-54.922051690999886],[-67.30182857999995,-54.928887627999984],[-67.22272701699995,-54.948418877999885],[-67.18309485599991,-54.96803150799994],[-67.1490779289999,-54.99488697699984],[-67.1153865229999,-55.03093840899989],[-67.09813391799989,-55.04517994599989],[-67.07860266799987,-55.05738697699995],[-67.06187903599997,-55.07203541499997],[-67.05337480399993,-55.09368254999987],[-67.05455481699997,-55.1047502579999],[-67.05186926999988,-55.12363046699984],[-67.05333411399994,-55.13396575299985],[-67.05968176999997,-55.1449520809999],[-67.07701575399997,-55.166680596999875],[-67.08063717399992,-55.17864348799999],[-67.08849036399991,-55.19052499799985],[-67.22557532499988,-55.29111093499987],[-67.27061926999995,-55.30689869599991],[-67.35228430899986,-55.302992445999834],[-67.41331946499994,-55.29273853999981],[-67.43382727799988,-55.28142669099991],[-67.4432673819999,-55.274509372999916],[-67.45116126199989,-55.271579684999985],[-67.45665442599991,-55.266778252999906],[-67.45860755099994,-55.25408294099985],[-67.45360266799992,-55.24146900799986],[-67.4303279289999,-55.227797132999925],[-67.42324785099993,-55.21648528399985],[-67.44399980399993,-55.18230559699986],[-67.50291907499991,-55.17213307099981],[-67.5684708319999,-55.17717864399994],[-67.6087947259999,-55.18865325299998],[-67.62230383999989,-55.20029062299989],[-67.62975012899994,-55.21217213299994],[-67.6429744129999,-55.24382903399991],[-67.64525305899986,-55.254001559999956],[-67.64395097599996,-55.25888437299993],[-67.64736894399996,-55.26148853999984],[-67.66344153599992,-55.26433684699987],[-67.67638098899997,-55.26482512799986],[-67.71190344999994,-55.25750090899986],[-67.73525956899994,-55.256280205999836],[-67.80064856699991,-55.26433684699987],[-67.82164466099994,-55.26148853999984],[-67.88316809799991,-55.24382903399991],[-67.86050370999993,-55.232354424999876],[-67.73859615799995,-55.23699309699999],[-67.75792395699989,-55.22437916499992],[-67.83629309799994,-55.21038176899995],[-67.86270097599991,-55.20232512799992],[-67.88548743399988,-55.178969007999925],[-67.89810136599993,-55.168715101999894],[-67.90367591099997,-55.17156340899994],[-67.90680904899992,-55.18629322699993],[-67.91417395699992,-55.19524504999995],[-67.92320716099994,-55.195000908999916],[-67.93101966099994,-55.182386976999844],[-67.93781490799994,-55.182386976999844],[-67.95734615799992,-55.21054452899992],[-67.98558508999992,-55.223565362999906],[-68.08185787699992,-55.2330868469999],[-68.1105037099999,-55.23023853999987],[-68.1350805329999,-55.2188453099999],[-68.15689042899996,-55.196058851999965],[-68.14956620999996,-55.18914153399996],[-68.13931230399993,-55.183770440999915],[-68.11595618399994,-55.174981377999856],[-68.14683997299989,-55.160821221999925],[-68.15689042899996,-55.154473565999986],[-68.16429602799994,-55.146416924999954],[-68.18809973899994,-55.10442473799997],[-68.18838456899996,-55.09661223799998],[-68.18545488199993,-55.09026458099995],[-68.18175208199992,-55.077080987999906],[-68.17731686099992,-55.0714657529999],[-68.1674698559999,-55.06170012799986],[-68.16392981699994,-55.05486419099994],[-68.16539466099988,-55.04924895599994],[-68.1686905589999,-55.04404062299986],[-68.1705623039999,-55.038344007999875],[-68.17686926999994,-54.99765390399988],[-68.18635006399992,-54.97820403399997],[-68.20156816299989,-54.97975025799984],[-68.22581946499992,-54.98992278399987],[-68.26292883999992,-54.995293877999835],[-68.30125891799995,-54.99553801899988],[-68.32884680899986,-54.99065520599991],[-68.3434138659999,-54.976983330999964],[-68.35692298099988,-54.95338307099984],[-68.36050370999993,-54.93092213299983],[-68.34528561099995,-54.921075128],[-68.25487219999988,-54.92392343499986],[-68.22581946499992,-54.921075128],[-68.22492428299992,-54.91920338299994],[-68.22175045499995,-54.91513437299989],[-68.21703040299994,-54.910577080999936],[-68.21153723899991,-54.90797291499994],[-67.94180253799993,-54.90545012799983],[-67.80577551999991,-54.91375090899999]]],[[[-70.50544186099995,-54.95077890399993],[-70.50967363199996,-54.988213799999876],[-70.52452551999994,-54.996758721999896],[-70.57542883999994,-54.98601653399997],[-70.5971573559999,-54.98650481599987],[-70.59679114499991,-55.003594659],[-70.66152910099993,-55.00017669099999],[-70.69066321499989,-54.99391041499986],[-70.71971594999985,-54.983168226999936],[-70.73029537699992,-55.00481536299993],[-70.72984778599991,-55.01336028399986],[-70.71629798099985,-55.01669687299997],[-70.69981848899997,-55.018649998000015],[-70.65143795499995,-55.03093840899989],[-70.56582597599987,-55.03093840899989],[-70.5579320949999,-55.028741143999895],[-70.54222571499994,-55.01897551899986],[-70.53164628799988,-55.01669687299997],[-70.50792395699997,-55.01677825299995],[-70.4973852199999,-55.01897551899986],[-70.48692786399992,-55.02410247199996],[-70.49400794199988,-55.02564869599982],[-70.50597083199992,-55.030043226999894],[-70.51366126199994,-55.03093840899989],[-70.4935603509999,-55.04062265399994],[-70.46442623599992,-55.047133070999934],[-70.40811113199987,-55.05201588299981],[-70.3976130849999,-55.048760674999954],[-70.37633216099994,-55.034274998],[-70.3634333979999,-55.03093840899989],[-70.30943762899992,-55.02792734199988],[-70.29515540299991,-55.03093840899989],[-70.27774003799993,-55.048516533999916],[-70.29694576699988,-55.05738697699995],[-70.32721920499988,-55.062676690999936],[-70.34292558499996,-55.06910572699985],[-70.33551998599995,-55.078383070999905],[-70.30264238199987,-55.0778947899999],[-70.29515540299991,-55.08245208099996],[-70.29234778599997,-55.09579843499988],[-70.28538977799988,-55.10019296699986],[-70.27623450399989,-55.103204033999866],[-70.26724199099996,-55.11288827899992],[-70.31159420499992,-55.126641533999845],[-70.33844967399989,-55.128513278999904],[-70.35045325399992,-55.11663176899986],[-70.35846920499995,-55.100762627999835],[-70.37751217399995,-55.08831145599991],[-70.39989173099988,-55.08066171699997],[-70.41808020699995,-55.07878997199991],[-70.39757239499991,-55.106622002999956],[-70.41380774599995,-55.105889580999936],[-70.4369197259999,-55.101820570999884],[-70.45250403599991,-55.1052385399998],[-70.44603430899987,-55.12712981599992],[-70.42821204299992,-55.1389299459998],[-70.38438880099994,-55.14446379999991],[-70.37026933499993,-55.161879164999974],[-70.39061438699991,-55.169040622999916],[-70.42772376199994,-55.17156340899994],[-70.44603430899987,-55.174981377999856],[-70.45995032499988,-55.183200778999854],[-70.47940019399996,-55.20387135199996],[-70.49445553299998,-55.20964934699992],[-70.48851477799988,-55.18466562299991],[-70.49571692599989,-55.167413018999895],[-70.51329505099991,-55.15748463299981],[-70.5384822259999,-55.154473565999986],[-70.54832923099991,-55.160821221999925],[-70.52403723899994,-55.193942966999956],[-70.52794348899994,-55.20964934699992],[-70.54808508999989,-55.21355559699983],[-70.56061764199987,-55.19915129999986],[-70.5670466789999,-55.17701588299988],[-70.56891842399995,-55.158135674999855],[-70.56407630099997,-55.140313408999965],[-70.55138098899991,-55.127211195999905],[-70.53368079299992,-55.11834075299986],[-70.51366126199994,-55.11288827899992],[-70.51366126199994,-55.106622002999956],[-70.54796301999991,-55.098321221999974],[-70.56273352799988,-55.09107838299996],[-70.57530676999997,-55.06023528399999],[-70.59007727799985,-55.05046965899996],[-70.60631262899992,-55.048923434999914],[-70.61729895699995,-55.05828215899995],[-70.60802161399991,-55.058851820999834],[-70.60191809799991,-55.061781507999854],[-70.58999589799987,-55.073174737999814],[-70.60033118399987,-55.07642994599986],[-70.62043209499984,-55.07683684699986],[-70.63036048099994,-55.07683684699986],[-70.63434811099992,-55.07415129999997],[-70.64020748599995,-55.072523695999955],[-70.64525305899988,-55.073174737999814],[-70.64582271999987,-55.07561614399985],[-70.64468339799993,-55.08375416499987],[-70.64525305899988,-55.0861955709999],[-70.66657467399995,-55.106622002999956],[-70.67894446499987,-55.11288827899992],[-70.6992895169999,-55.11288827899992],[-70.70034745999993,-55.125583591999884],[-70.71580969999988,-55.122816664999824],[-70.73501542899993,-55.111993096999925],[-70.74767005099989,-55.09978606599986],[-70.7303767569999,-55.0866024719999],[-70.72252356699991,-55.068536065999886],[-70.7289932929999,-55.053969007999854],[-70.75450598899991,-55.05201588299981],[-70.76569576699993,-55.056817315999986],[-70.77391516799992,-55.06389739399995],[-70.7835180329999,-55.07040780999985],[-70.79889889199984,-55.073174737999814],[-70.80231686099995,-55.07537200299999],[-70.80500240799991,-55.080173434999885],[-70.80858313699989,-55.08464934699986],[-70.81533769399994,-55.0861955709999],[-70.8236384759999,-55.083428643999845],[-70.82787024599992,-55.07903411299995],[-70.8302302729999,-55.074883721999825],[-70.83332271999987,-55.073174737999814],[-70.8404841789999,-55.070082289999924],[-70.84764563699986,-55.06373463299989],[-70.85684160099991,-55.0585263],[-70.87059485599994,-55.05828215899995],[-70.88263912699995,-55.06340911299996],[-70.89907792899996,-55.076267184999985],[-70.91218014199993,-55.07878997199991],[-70.92975826699987,-55.07683684699986],[-70.94098873599994,-55.07203541499997],[-70.95995032499988,-55.05828215899995],[-70.97915605399993,-55.047458591999956],[-70.9895727199999,-55.04517994599989],[-71.00715084499984,-55.04461028399982],[-71.00715084499984,-55.038344007999875],[-70.99111894399994,-55.03362395599996],[-70.99181067599989,-55.025485934999935],[-70.99669348899997,-55.01506926899995],[-70.9934789699999,-55.003594659],[-70.97411048099988,-54.996758721999896],[-70.93032792899993,-55.00123463299995],[-70.91901607999992,-54.99065520599991],[-70.95250403599988,-54.987399997999866],[-70.9925837879999,-54.97844817499984],[-71.01284745999992,-54.965020440999936],[-70.98721269399994,-54.948418877999885],[-70.96760006399998,-54.94589609199987],[-70.92540442599994,-54.94931405999987],[-70.90538489499988,-54.948418877999885],[-70.89122473899997,-54.94296640399993],[-70.87779700399997,-54.93547942499997],[-70.86440995999988,-54.930840752999856],[-70.85008704299987,-54.93417734199997],[-70.86611894399987,-54.95761484199995],[-70.86412512899994,-54.96559010199991],[-70.84675045499995,-54.968926690999844],[-70.82111568899998,-54.96599700299991],[-70.80972245999993,-54.96770598799983],[-70.79548092399992,-54.97633228999983],[-70.79653886599986,-54.95322030999996],[-70.79482988199987,-54.945489190999865],[-70.79613196499989,-54.93678150799997],[-70.79548092399992,-54.93417734199997],[-70.78856360599991,-54.93222421699993],[-70.78233801999997,-54.93531666499982],[-70.77660071499989,-54.939873955999865],[-70.77122962099995,-54.94215260199993],[-70.7635798819999,-54.94443124799999],[-70.74990800699987,-54.95370859199986],[-70.74054928299992,-54.95582447699987],[-70.73082434799989,-54.95663827899988],[-70.72191321499994,-54.95907968499991],[-70.71361243399988,-54.96306731599989],[-70.70612545499989,-54.968926690999844],[-70.69050045499992,-54.96087005],[-70.67638098899988,-54.96087005],[-70.64525305899988,-54.968926690999844],[-70.5626521479999,-54.968926690999844],[-70.5626521479999,-54.96209075299982],[-70.60334225199989,-54.958591403999925],[-70.61506100199998,-54.95322030999996],[-70.61046301999994,-54.94215260199993],[-70.59312903599994,-54.93368905999989],[-70.54995683499993,-54.92693450299995],[-70.49205481699994,-54.89999765399989],[-70.39224199099993,-54.89910247199989],[-70.35045325399992,-54.893731377999934],[-70.31566321499986,-54.90056731599995],[-70.31566321499986,-54.90797291499994],[-70.44542395699995,-54.9384091129999],[-70.49380449099993,-54.94215260199993],[-70.50544186099995,-54.95077890399993]]],[[[-69.50934811099995,-54.9081356749999],[-69.52057857999995,-54.92848072699981],[-69.53107662699995,-54.94085051899993],[-69.53001868399988,-54.94605885199984],[-69.51374264199987,-54.948418877999885],[-69.50218665299991,-54.94670989399987],[-69.4936417309999,-54.94215260199993],[-69.46393795499998,-54.91423919099989],[-69.44733639199991,-54.904392184999956],[-69.42638098899997,-54.899590752999885],[-69.39769446499992,-54.90056731599995],[-69.37144934799997,-54.906508070999884],[-69.32632402299993,-54.923272393999895],[-69.30085201699993,-54.92848072699981],[-69.23493404899997,-54.931898695999905],[-69.17235266799986,-54.954034112999885],[-69.16429602799991,-54.95582447699987],[-69.2084041009999,-54.97014739399986],[-69.25967363199993,-54.97087981599988],[-69.35606848899994,-54.95582447699987],[-69.33812415299988,-54.97161223799991],[-69.33189856699994,-54.979668877999856],[-69.33901933499988,-54.983168226999936],[-69.3688044909999,-54.985528252999984],[-69.42686926999994,-54.99749114399992],[-69.44253495999993,-54.9984677059999],[-69.45543372299994,-54.99374765399998],[-69.47370357999992,-54.97918059699987],[-69.48517818899995,-54.97519296699997],[-69.50007076699993,-54.97633228999983],[-69.48485266799995,-54.99553801899988],[-69.49864661399994,-55.005791924999905],[-69.52505449099993,-55.009860934999956],[-69.54784094999985,-55.01043059699983],[-69.59129798099991,-55.00400156],[-69.60244706899991,-55.003594659],[-69.61139889199987,-55.0070940079999],[-69.62881425699993,-55.019952080999836],[-69.63727779899993,-55.02410247199996],[-69.77643795499995,-55.03460051899984],[-69.79698645699989,-55.02971770599987],[-69.81602942599989,-55.01669687299997],[-69.83706620999993,-55.03289153399993],[-69.86217200399992,-55.03899504999992],[-69.91779537699995,-55.038344007999875],[-69.91779537699995,-55.03093840899989],[-69.90754146999993,-55.02459075299995],[-69.90233313699991,-55.01751067499998],[-69.90143795499992,-55.00855885199996],[-69.90416419199991,-54.996758721999896],[-69.9122208319999,-54.98455169099983],[-69.92332923099985,-54.98121510199989],[-69.93610592399992,-54.979668877999856],[-69.94884192599994,-54.97258879999989],[-69.9503474599999,-54.95289478999985],[-69.91608639199984,-54.94638437299985],[-69.84268144399994,-54.948418877999885],[-69.84268144399994,-54.94215260199993],[-69.90876217399992,-54.925469658999894],[-69.92467200399994,-54.91423919099989],[-69.92829342399992,-54.89763762799984],[-69.91559811099995,-54.88689544099983],[-69.89460201699988,-54.88111744599986],[-69.86180579299989,-54.87753671699998],[-69.84894771999987,-54.873711846999875],[-69.8363337879999,-54.872247003],[-69.82559160099986,-54.876397393999945],[-69.8051651679999,-54.90056731599995],[-69.78563391799992,-54.906508070999884],[-69.77953040299994,-54.920993748000015],[-69.77855383999986,-54.939060153999854],[-69.77440344999994,-54.95582447699987],[-69.76329505099989,-54.94557057099985],[-69.75088456899996,-54.93808359199988],[-69.73737545499988,-54.93661874799999],[-69.72288977799985,-54.945245049999826],[-69.71349036399991,-54.94882577899989],[-69.70360266799992,-54.94597747199985],[-69.69835364499991,-54.939385674999876],[-69.70246334499987,-54.931329033999845],[-69.73346920499989,-54.91423919099989],[-69.72354081899991,-54.908949476999915],[-69.71279863199987,-54.90797291499994],[-69.70189368399991,-54.9099260399998],[-69.69188391799992,-54.91423919099989],[-69.70579993399991,-54.900974216999956],[-69.71361243399988,-54.89576588299996],[-69.72288977799985,-54.893731377999934],[-69.7519425119999,-54.8921851539999],[-69.76773027299987,-54.88795338299996],[-69.77440344999994,-54.87948984199984],[-69.76012122299994,-54.86834075299991],[-69.72834225199998,-54.864515882999804],[-69.67145748599995,-54.86646900799985],[-69.51374264199987,-54.893731377999934],[-69.50658118399991,-54.89804452899984],[-69.50934811099995,-54.9081356749999]]],[[[-70.41173255099994,-54.850274346999896],[-70.40196692599989,-54.85963307099993],[-70.39688066299996,-54.86907317499994],[-70.40099036399991,-54.87330494599987],[-70.45287024599992,-54.87948984199984],[-70.50743567599989,-54.87948984199984],[-70.58088131399997,-54.89788176899988],[-70.65453040299992,-54.90195077899993],[-70.67853756399998,-54.8982072899999],[-70.69245357999995,-54.88689544099983],[-70.68724524599989,-54.87908294099984],[-70.69155839799987,-54.875909112999956],[-70.71288001199994,-54.87330494599987],[-70.71703040299988,-54.87517669099993],[-70.71987870999993,-54.88079192499984],[-70.72435462099989,-54.88616301899998],[-70.73338782499991,-54.88689544099983],[-70.73273678299995,-54.88534921699996],[-70.74767005099989,-54.87330494599987],[-70.74767005099989,-54.86646900799985],[-70.71092688699989,-54.85214609199995],[-70.68960527299993,-54.84677499799999],[-70.67536373599992,-54.84905364399988],[-70.65729732999989,-54.85564544099986],[-70.63947506399992,-54.84880950299984],[-70.62246660099996,-54.83798593499993],[-70.60708574099993,-54.83228932099986],[-70.54161536399997,-54.83228932099986],[-70.4217830069999,-54.845961195999806],[-70.41173255099994,-54.850274346999896]]],[[[-71.34557044199991,-54.82854583099992],[-71.32306881399992,-54.838555597],[-71.31017005099991,-54.84050872199986],[-71.29576575399994,-54.838555597],[-71.2035212879999,-54.845961195999806],[-71.19151770699996,-54.83652109199997],[-71.18028723899997,-54.83147551899985],[-71.16539466099991,-54.83228932099986],[-71.15514075399989,-54.835870049999926],[-71.14781653599988,-54.84002044099987],[-71.14419511599993,-54.84710051899983],[-71.14488684799997,-54.859063408999866],[-71.12474524599992,-54.85881926899991],[-71.07787024599989,-54.880140882999974],[-71.0592341789999,-54.876397393999945],[-71.04605058499993,-54.868584893999945],[-71.02603105399987,-54.86158619599997],[-71.00617428299995,-54.857679945999884],[-70.9934789699999,-54.859063408999866],[-70.98790442599989,-54.873711846999875],[-70.97736568899992,-54.879327080999964],[-70.96320553299992,-54.87835051899999],[-70.94688880099989,-54.87330494599987],[-70.94815019399991,-54.88689544099983],[-70.9554744129999,-54.89690520599999],[-70.9632869129999,-54.903903903999975],[-70.96617591099991,-54.90797291499994],[-70.95714270699992,-54.91415781],[-70.92577063699987,-54.916436455999886],[-70.91152910099986,-54.921075128],[-70.92658443899998,-54.928399346999825],[-70.94562740799998,-54.93027109199988],[-70.98379472599993,-54.92848072699981],[-70.9907934239999,-54.926527601999936],[-70.9973852199999,-54.92253997199987],[-71.00495357999995,-54.91969166499984],[-71.01455644399994,-54.921075128],[-71.02183997299994,-54.92571379999993],[-71.02920488199992,-54.93710702899999],[-71.03506425699987,-54.94215260199993],[-71.06427975199992,-54.9496395809999],[-71.11803137899997,-54.93368905999989],[-71.15172278599988,-54.93417734199997],[-71.14150956899994,-54.92294687299988],[-71.12580318899998,-54.914483330999836],[-71.10765540299988,-54.90911223799997],[-71.0902400379999,-54.90797291499994],[-71.10728919199997,-54.894789320999806],[-71.12067623599994,-54.89226653399988],[-71.18248450399994,-54.907321872999894],[-71.19298255099994,-54.90797291499994],[-71.20482337099989,-54.9064266909999],[-71.20579993399988,-54.90178801899996],[-71.20376542899993,-54.895114842],[-71.21031653599991,-54.878513278999954],[-71.20836341099997,-54.87200286299987],[-71.20982825399993,-54.86793385199991],[-71.22374426999991,-54.86646900799985],[-71.26158606699994,-54.87330494599987],[-71.27228756399998,-54.867282809999864],[-71.27904212099992,-54.86541106599989],[-71.28209387899992,-54.86988697699994],[-71.28408769399994,-54.879815362999864],[-71.28954016799989,-54.885674737999985],[-71.29800370999993,-54.88795338299996],[-71.30882727799991,-54.88689544099983],[-71.30406653599994,-54.904961846999846],[-71.30785071499993,-54.92506275799989],[-71.31818600199995,-54.94158294099996],[-71.33299719999994,-54.948418877999885],[-71.33901933499993,-54.95037200299992],[-71.34487870999988,-54.953789971999846],[-71.35098222599987,-54.95435963299981],[-71.35781816299988,-54.948418877999885],[-71.36115475199992,-54.94019947699989],[-71.35806230399993,-54.93710702899999],[-71.35301673099991,-54.934340101999936],[-71.3503311839999,-54.92848072699981],[-71.33641516799995,-54.911553643999824],[-71.33462480399994,-54.902276299999954],[-71.3503311839999,-54.90056731599995],[-71.38170325399994,-54.92864348799986],[-71.40282141799989,-54.94264088299991],[-71.41246497299994,-54.93816497199986],[-71.41600501199991,-54.91375090899999],[-71.4260147779999,-54.90252044099999],[-71.44098873599992,-54.89421965899992],[-71.45958411399994,-54.87948984199984],[-71.40493730399987,-54.859063408999866],[-71.41649329299992,-54.835870049999926],[-71.40412350199998,-54.82984791499983],[-71.38280188699991,-54.830743096999825],[-71.36774654899989,-54.82854583099992],[-71.35777747299987,-54.82512786299991],[-71.34557044199991,-54.82854583099992]]],[[[-72.01158606699988,-54.63990650799988],[-71.99152584499993,-54.66432057099992],[-71.97911536399991,-54.673109632999896],[-71.96670488199987,-54.67986419099993],[-71.95555579299985,-54.688246351999894],[-71.94684811099995,-54.70256926899987],[-71.92926998599992,-54.694919528999854],[-71.92125403599991,-54.70525481599994],[-71.92088782499988,-54.72275155999991],[-71.92638098899991,-54.73674895599987],[-71.93838456899994,-54.74578215899987],[-71.95360266799992,-54.751234632999825],[-71.96983801999994,-54.75416432099993],[-71.98497473899994,-54.755303643999966],[-71.99746660099996,-54.753106377999885],[-72.00706946499994,-54.74684010199993],[-72.00967363199993,-54.737888278999904],[-72.00133216099997,-54.72771575299986],[-71.9933162099999,-54.72177499799993],[-71.98745683499988,-54.71526458099993],[-71.98607337099989,-54.70769622199998],[-71.99152584499993,-54.69890715899992],[-72.02196204299987,-54.67522551899999],[-72.03359941299989,-54.65789153399991],[-72.04027258999994,-54.65048593499992],[-72.04987545499992,-54.64739348799994],[-72.06427975199989,-54.65162525799996],[-72.06574459499987,-54.661309502999835],[-72.06338456899991,-54.67099374799988],[-72.06631425699993,-54.67522551899999],[-72.08018958199992,-54.674411716999984],[-72.08788001199994,-54.6713192689999],[-72.10081946499994,-54.65789153399991],[-72.10431881399992,-54.644789320999855],[-72.09093176999991,-54.636000257999974],[-72.0716039699999,-54.63128020599988],[-72.03770911399994,-54.628513279],[-72.02818762899994,-54.629327080999836],[-72.01943925699987,-54.63298919099997],[-72.01158606699988,-54.63990650799988]]],[[[-72.95757871099988,-54.44658966099989],[-72.95378448099993,-54.4568583829999],[-72.96534822399988,-54.46682693799984],[-72.97533763099995,-54.4870267509999],[-72.98911544599986,-54.49569742899985],[-73.01288256299995,-54.49010667099983],[-73.03898050199987,-54.48575372],[-73.0570116699999,-54.49303707499982],[-73.08570725899989,-54.4949971299999],[-73.09831420699993,-54.48580811999988],[-73.07760342299989,-54.4709345729998],[-73.0547177419999,-54.45610446999996],[-73.03717898599984,-54.456461416999915],[-72.9728412439999,-54.44501187699991],[-72.95757871099988,-54.44658966099989]]],[[[-72.34032141799992,-54.331312757999896],[-72.33983313699991,-54.33147551899995],[-72.31151282499988,-54.32903411299992],[-72.30138098899991,-54.33277760199995],[-72.29694576699987,-54.34579843499985],[-72.30532792899989,-54.365166924999954],[-72.32799231699997,-54.36028411299989],[-72.35558020699997,-54.34978606599983],[-72.3788142569999,-54.352634372999866],[-72.37120520699995,-54.35808684699998],[-72.3619685539999,-54.36736419099986],[-72.3567602199999,-54.376071872999844],[-72.36082923099987,-54.37981536299996],[-72.39150956899996,-54.37981536299996],[-72.39976966099994,-54.377699476999865],[-72.40440833199997,-54.373223565999986],[-72.40786699099988,-54.36874765400001],[-72.41234290299994,-54.36679452899997],[-72.43521074099992,-54.37721119599987],[-72.45177161399991,-54.41838958099984],[-72.47069251199994,-54.4276669249999],[-72.47777258999992,-54.42310963299994],[-72.50169837099986,-54.393487237999906],[-72.53278561099995,-54.363051039999945],[-72.54173743399991,-54.343031507999974],[-72.49962317599994,-54.34921640399995],[-72.50169837099986,-54.33147551899995],[-72.44774329299995,-54.335219007999974],[-72.42686926999988,-54.33017343499986],[-72.43346106699994,-54.31161874799986],[-72.42495683499992,-54.305922132999875],[-72.41588294199991,-54.30413176899988],[-72.4068904289999,-54.30608489399992],[-72.39806067599993,-54.31161874799986],[-72.38296464799993,-54.3148739559999],[-72.35728919199988,-54.32838307099988],[-72.34032141799992,-54.331312757999896]]],[[[-70.3845922519999,-54.18808359199984],[-70.36213131399991,-54.189629815999886],[-70.31322180899993,-54.18466562299992],[-70.28774980399993,-54.18808359199984],[-70.28693600199992,-54.19052499799988],[-70.2735896479999,-54.20452239399984],[-70.26724199099996,-54.20916106599995],[-70.25621497299991,-54.21200937299999],[-70.23521887899997,-54.21233489399984],[-70.22630774599995,-54.21542734199991],[-70.21865800699989,-54.234633070999955],[-70.22960364499988,-54.24651458099983],[-70.24592037699992,-54.25562916499991],[-70.25422115799998,-54.26653411299997],[-70.26943925699996,-54.27109140400002],[-70.3397517569999,-54.26580169099995],[-70.36042232999992,-54.260023695999806],[-70.38170325399997,-54.24968840899988],[-70.43447831899996,-54.24228280999989],[-70.45909583199997,-54.235935153999954],[-70.47911536399994,-54.22470468499987],[-70.49705969999988,-54.20989348799998],[-70.51154537699992,-54.19264088299989],[-70.52110755099991,-54.174411716999906],[-70.49168860599994,-54.14837004999984],[-70.45543372299991,-54.153578382999925],[-70.3845922519999,-54.18808359199984]]],[[[-72.25621497299997,-54.10019296699988],[-72.23973548099988,-54.11207447699993],[-72.24168860599994,-54.12664153399986],[-72.23078365799995,-54.1286760399998],[-72.22126217399995,-54.132256768999866],[-72.20628821499992,-54.14031340899998],[-72.20628821499992,-54.14771900799997],[-72.23721269399995,-54.1446265599999],[-72.24697831899991,-54.14861419099988],[-72.2547501289999,-54.161309502999934],[-72.25373287699995,-54.172784112999885],[-72.24962317599991,-54.18621184699997],[-72.25064042899996,-54.19752369599986],[-72.26524817599987,-54.20232512799994],[-72.28331458199992,-54.200290622999916],[-72.29206295499998,-54.197849216999884],[-72.29674231699991,-54.20094166499996],[-72.30308997299991,-54.21542734199991],[-72.29816646999987,-54.23886484199989],[-72.30150305899988,-54.25139739399997],[-72.31989498599991,-54.25693124799991],[-72.34854081899991,-54.24944426899993],[-72.37852942599996,-54.22380950299988],[-72.39806067599993,-54.229099216999856],[-72.41047115799998,-54.239678643999895],[-72.4176326159999,-54.24863046699993],[-72.42650305899988,-54.254652601999844],[-72.44371497299987,-54.25693124799991],[-72.46056067599989,-54.25595468500002],[-72.47443600199998,-54.253024998],[-72.50169837099986,-54.24277109199998],[-72.50169837099986,-54.235935153999954],[-72.49453691299993,-54.232028903999876],[-72.48997962099989,-54.22771575299996],[-72.48131262899997,-54.21542734199991],[-72.51537024599989,-54.20232512799994],[-72.4933162099999,-54.19052499799988],[-72.44005286399994,-54.171319268999824],[-72.41926021999984,-54.16822682099993],[-72.36851966099988,-54.16765715899987],[-72.34479732999998,-54.15960051899993],[-72.3304337229999,-54.14031340899998],[-72.36318925699993,-54.13795338299994],[-72.37718665299987,-54.139743748],[-72.39183508999989,-54.14771900799997],[-72.38971920499998,-54.12883879999995],[-72.36009680899994,-54.12151458099994],[-72.32262122299991,-54.11874765399989],[-72.29694576699987,-54.113539320999806],[-72.3434138659999,-54.106133722],[-72.36481686099995,-54.10711028399997],[-72.37140865799992,-54.106133722],[-72.38670813699989,-54.099216404],[-72.39313717399989,-54.0944963519999],[-72.36733964799994,-54.08424244599988],[-72.34044348899988,-54.06959400799986],[-72.31456458199997,-54.06308359199996],[-72.29694576699987,-54.07878997199993],[-72.27916419199997,-54.089532158999944],[-72.25621497299997,-54.10019296699988]]],[[[-70.29330233499988,-54.068474988],[-70.29123731099992,-54.09330388899991],[-70.29814328699987,-54.1259526529998],[-70.32287559699995,-54.15072535099994],[-70.3496563709999,-54.155874397999916],[-70.40513417699995,-54.15044166],[-70.46711542899996,-54.1240959599999],[-70.51369144999995,-54.091285822999915],[-70.5048350369999,-54.07303931399983],[-70.48045125099989,-54.069213619999836],[-70.43607851099995,-54.08505665299983],[-70.40260341199988,-54.078632689999885],[-70.36018035999987,-54.070918390999935],[-70.3400224139999,-54.057906439999876],[-70.3132526329999,-54.05275010599993],[-70.29330233499988,-54.068474988]]],[[[-73.24282792899996,-54.042575779],[-73.24901282499991,-54.07195403399991],[-73.23053951699988,-54.07048919099995],[-73.20738684799994,-54.05877044099987],[-73.18785559799997,-54.05364348799995],[-73.18008378799988,-54.07195403399991],[-73.18224036399997,-54.07838307099992],[-73.1847224599999,-54.09286874799988],[-73.18700110599988,-54.09929778399998],[-73.17983964799993,-54.1005184879999],[-73.16685950399992,-54.10507577899995],[-73.15965735599991,-54.106133722],[-73.17845618399986,-54.12721119599993],[-73.20531165299994,-54.122653903999975],[-73.23326575399994,-54.11150481599996],[-73.25523841099988,-54.113539320999806],[-73.25324459499984,-54.12566497199988],[-73.27892005099989,-54.12664153399986],[-73.31338456899991,-54.12118905999992],[-73.32355709499987,-54.113539320999806],[-73.33043372299997,-54.1027157529999],[-73.33234615799992,-54.094333591999934],[-73.33096269399994,-54.075372002999835],[-73.33739173099988,-54.06585051899984],[-73.35142981699991,-54.064711195999806],[-73.36554928299995,-54.06894296699991],[-73.37193762899996,-54.075372002999835],[-73.3860570949999,-54.080254815999986],[-73.41808020699989,-54.080987237999835],[-73.45270748599998,-54.07822030999987],[-73.47435462099986,-54.07195403399991],[-73.45909583199989,-54.06454843499992],[-73.4279679029999,-54.05820077899998],[-73.41291256399998,-54.05144622199987],[-73.39159094999991,-54.03183359199999],[-73.37987219999994,-54.025811455999985],[-73.35826575399994,-54.02361419099999],[-73.27497311099992,-54.02825286299993],[-73.24282792899996,-54.042575779]]],[[[-71.52399654899992,-53.98601653399999],[-71.51480058499996,-53.989434502999906],[-71.50084387899989,-53.987074476999865],[-71.4977107409999,-53.98056405999987],[-71.49811764199993,-53.971612237999935],[-71.4942927729999,-53.96209075299985],[-71.48814856699991,-53.95232512799999],[-71.48570716099988,-53.94605885199986],[-71.47984778599994,-53.94264088299994],[-71.46328691299986,-53.94158294099998],[-71.45567786399994,-53.94646575299986],[-71.45246334499988,-53.95769622199995],[-71.45287024599989,-53.97031015399984],[-71.45645097599996,-53.97918059699989],[-71.44733639199987,-53.98381926899982],[-71.43586178299992,-54.004164320999905],[-71.41860917899993,-54.04404062299988],[-71.39635169199997,-54.06275807099994],[-71.3793025379999,-54.04119231599984],[-71.37694251199986,-54.00400155999985],[-71.39879309799991,-53.97576262799997],[-71.37564042899996,-53.96917083099999],[-71.3379613919999,-53.97625090899996],[-71.30150305899991,-53.99146900799993],[-71.28209387899992,-54.009942315999865],[-71.27672278599994,-54.02402109199999],[-71.27114824099992,-54.05046965899997],[-71.26471920499992,-54.061781507999875],[-71.26113847599996,-54.07431405999996],[-71.27017167899987,-54.08473072699986],[-71.2825414699999,-54.094821872999916],[-71.28892981699994,-54.106133722],[-71.26964270699989,-54.10173919099992],[-71.25340735599985,-54.111586195999934],[-71.24107825399992,-54.129001559999914],[-71.23363196499992,-54.14771900799997],[-71.2363988919999,-54.15829843500002],[-71.23696855399996,-54.166273695999884],[-71.23363196499992,-54.174411716999906],[-71.22105872299994,-54.18466562299992],[-71.21190344999985,-54.18417734199994],[-71.20946204299992,-54.17636484199995],[-71.21690833199989,-54.16472747199985],[-71.21450761599993,-54.15007903399984],[-71.18834387899992,-54.09807708099996],[-71.17967688699991,-54.08562590899986],[-71.16364498599992,-54.08652109199994],[-71.16270911399992,-54.10564544099983],[-71.17223059799994,-54.15081145599987],[-71.16685950399997,-54.15390390399995],[-71.15514075399989,-54.155368748],[-71.1434220039999,-54.15276458099991],[-71.13809160099993,-54.143975518999945],[-71.13809160099993,-54.1027157529999],[-71.13068600199995,-54.08294036299988],[-71.11245683499996,-54.07048919099995],[-71.09007727799985,-54.06487395599994],[-71.06981360599994,-54.06511809699999],[-71.02887936099992,-54.08562590899986],[-71.01622473899994,-54.09539153399989],[-71.0125219389999,-54.10084400799984],[-71.01455644399994,-54.12322356599986],[-71.02139238199993,-54.148044529],[-71.05296790299994,-54.182305596999875],[-71.06236731699997,-54.20232512799994],[-71.04552161399997,-54.201592705999914],[-71.03433183499993,-54.19304778399989],[-71.01797441299993,-54.171319268999824],[-71.00495357999995,-54.16643645599986],[-70.99669348899997,-54.174574476999865],[-70.99486243399988,-54.18889739399986],[-71.00088456899988,-54.20232512799994],[-70.99421139199984,-54.21282317499982],[-70.99327551999993,-54.22380950299988],[-70.99864661399991,-54.2323544249999],[-71.01085364499988,-54.235935153999954],[-71.02798417899993,-54.237399998000015],[-71.02578691299993,-54.240980726999894],[-71.00715084499984,-54.24944426899993],[-70.99014238199986,-54.26580169099995],[-70.99242102799985,-54.272067966999906],[-71.0077205069999,-54.28053150799985],[-71.02033443899998,-54.28573984199985],[-71.03416907499988,-54.28964609199993],[-71.04845130099997,-54.29168059699995],[-71.06236731699997,-54.2911109349999],[-71.05459550699996,-54.29664478999992],[-71.04710852799988,-54.304620049999876],[-71.04287675699987,-54.313409112999935],[-71.04527747299991,-54.32146575299988],[-71.05646725199992,-54.3300106749999],[-71.06314042899987,-54.32773202900001],[-71.06944739499991,-54.321384372999894],[-71.07945716099991,-54.31780364399983],[-71.09947669199997,-54.314222914999945],[-71.13792883999989,-54.299737237999985],[-71.15794837099995,-54.29729583099987],[-71.14932206899994,-54.30950286299984],[-71.14171301999991,-54.31658294099999],[-71.11758378799988,-54.32830169099989],[-71.08739173099988,-54.331801039999974],[-71.08283443899992,-54.335137628],[-71.08381100199989,-54.34197356599984],[-71.08625240799992,-54.34986744599981],[-71.08971106699994,-54.356622002999934],[-71.09365800699993,-54.359307549999826],[-71.09727942599997,-54.362481377999885],[-71.10118567599997,-54.36956145599985],[-71.10651607999995,-54.37664153399999],[-71.11388098899994,-54.37981536299996],[-71.14830481699997,-54.37981536299996],[-71.15436764199987,-54.37460702899997],[-71.16926021999993,-54.34978606599983],[-71.17682857999996,-54.32773202900001],[-71.18614661399991,-54.339532158999894],[-71.19367428299998,-54.35898202899998],[-71.1926977199999,-54.36679452899997],[-71.20750891799989,-54.369235935],[-71.22081458199989,-54.36272551899992],[-71.24054928299992,-54.34579843499985],[-71.29515540299988,-54.31780364399983],[-71.33153235599988,-54.31373463299986],[-71.34752356699997,-54.309177342],[-71.35781816299988,-54.29729583099987],[-71.34772701699993,-54.284844658999944],[-71.33584550699987,-54.28476327899996],[-71.32274329299992,-54.28923919099993],[-71.30882727799991,-54.2911109349999],[-71.29889889199993,-54.28679778399999],[-71.29320227799994,-54.27955494599988],[-71.28595943899991,-54.27288176899991],[-71.27122962099992,-54.269952080999985],[-71.26366126199989,-54.271742445999884],[-71.24665279899992,-54.27809010199982],[-71.24054928299992,-54.277439059999956],[-71.23444576699984,-54.27060312299985],[-71.23786373599995,-54.26637135199992],[-71.24437415299992,-54.26360442499987],[-71.24791419199991,-54.260023695999806],[-71.24364173099991,-54.24976978999995],[-71.22191321499993,-54.23837656],[-71.21320553299994,-54.229099216999856],[-71.22345943899998,-54.219496351999965],[-71.23119055899988,-54.21559010199988],[-71.23851477799991,-54.21672942499991],[-71.24791419199991,-54.22226327900002],[-71.26158606699994,-54.23935312299987],[-71.26431230399993,-54.24675872199986],[-71.27098548099988,-54.249118747999916],[-71.27892005099994,-54.25009530999989],[-71.30077063699989,-54.26140715899996],[-71.31334387899997,-54.25481536299989],[-71.3231095039999,-54.241387627999906],[-71.32982337099986,-54.229099216999856],[-71.32872473899991,-54.22551848799997],[-71.32530676999991,-54.21982187299999],[-71.32331295499998,-54.21282317499982],[-71.32648678299991,-54.20574309699986],[-71.33169511599992,-54.20403411299986],[-71.33731035099993,-54.206963799999876],[-71.3417048819999,-54.212497653999975],[-71.34349524599989,-54.218845309999914],[-71.3548070949999,-54.244561455999964],[-71.38117428299998,-54.24627044099988],[-71.41100012899997,-54.233330987999956],[-71.4329320949999,-54.21542734199991],[-71.4459529289999,-54.185316664999974],[-71.42931067599994,-54.171482028999975],[-71.39907792899993,-54.16415780999996],[-71.37144934799994,-54.15390390399995],[-71.38548743399988,-54.149346612999906],[-71.41344153599991,-54.151950778999904],[-71.41860917899993,-54.143975518999945],[-71.41698157499991,-54.13925546699985],[-71.41307532499991,-54.13176848799988],[-71.40855872299994,-54.12615325299988],[-71.40493730399987,-54.12664153399986],[-71.41209876199991,-54.11402760199997],[-71.41661536399988,-54.1100399719999],[-71.41860917899993,-54.11679452899985],[-71.43211829299987,-54.13445403399986],[-71.46202551999995,-54.13689544099998],[-71.4925837879999,-54.135186455999886],[-71.50796464799993,-54.14031340899998],[-71.50548255099991,-54.14983489399989],[-71.48607337099992,-54.159437757999875],[-71.48131262899992,-54.171319268999824],[-71.48778235599991,-54.17538827899988],[-71.50059973899994,-54.17986419099985],[-71.50959225199995,-54.18678150799994],[-71.49986731699991,-54.21103280999993],[-71.51048743399986,-54.217054945999934],[-71.5353083979999,-54.22226327900002],[-71.54002844999991,-54.231215101999865],[-71.54214433499993,-54.269952080999985],[-71.5755916009999,-54.255466403999854],[-71.5906469389999,-54.24382903399994],[-71.59679114499988,-54.229099216999856],[-71.5906469389999,-54.212497653999975],[-71.57689368399988,-54.20305754999997],[-71.56118730399993,-54.194919528999954],[-71.5496313139999,-54.18181731599989],[-71.58771725199998,-54.193617445999955],[-71.60045325399994,-54.19548919099984],[-71.60553951699987,-54.20183684699995],[-71.61221269399991,-54.229587497999844],[-71.62124589799993,-54.235935153999954],[-71.6515193349999,-54.232028903999876],[-71.66405188699991,-54.22144947699983],[-71.67235266799989,-54.205336195999855],[-71.68984941299992,-54.184991143999945],[-71.69981848899994,-54.16619231599991],[-71.69107011599996,-54.14812590899998],[-71.6722712879999,-54.13201262799982],[-71.6520076159999,-54.11980559699994],[-71.61424719999994,-54.10572682099981],[-71.60415605399987,-54.09929778399998],[-71.5963435539999,-54.08782317499994],[-71.59968014199993,-54.08033619599996],[-71.61192786399988,-54.07740650799986],[-71.63093014199988,-54.07878997199993],[-71.63426673099991,-54.04420338299985],[-71.65054277299993,-54.012627862999935],[-71.65705318899992,-53.98316822699996],[-71.63093014199988,-53.95525481599992],[-71.61217200399992,-53.9480119769999],[-71.58218339799996,-53.940850518999945],[-71.5543513659999,-53.94182708099992],[-71.54214433499993,-53.95867278399993],[-71.53954016799992,-53.96803150799996],[-71.53286699099988,-53.97812265400002],[-71.52399654899992,-53.98601653399999]]],[[[-71.86644446499989,-53.886488539999846],[-71.83014889199987,-53.92058684699985],[-71.84089107999988,-53.93572356599985],[-71.85179602799988,-53.95826588299992],[-71.85187740799995,-53.97405364399996],[-71.83014889199987,-53.96949635199984],[-71.82900956899994,-53.96477629999992],[-71.80907141799986,-53.934177341999984],[-71.7980037099999,-53.90455494599986],[-71.79259192599997,-53.89706796699989],[-71.78400631399995,-53.89657968499999],[-71.76537024599986,-53.9074032529999],[-71.75593014199987,-53.898207289999924],[-71.7423396479999,-53.896661065999886],[-71.72728430899988,-53.89861419099992],[-71.69579016799989,-53.91236744599985],[-71.66763261599988,-53.91814544099982],[-71.65290279899989,-53.926364842],[-71.71324622299994,-53.96868254999982],[-71.73521887899994,-53.9786923159999],[-71.78026282499991,-53.98772551899991],[-71.79222571499984,-53.99797942499993],[-71.78807532499991,-54.00595468499989],[-71.76187089799987,-54.00367603999992],[-71.71800696499992,-53.98503997199984],[-71.70059160099996,-53.98544687299984],[-71.69359290299988,-54.00693124799995],[-71.70201575399992,-54.03069426899996],[-71.72227942599993,-54.037530205999886],[-71.74697831899994,-54.03997161299983],[-71.76866614499991,-54.05144622199987],[-71.75743567599991,-54.05071379999984],[-71.74665279899989,-54.051853122999866],[-71.73643958199995,-54.05437590899989],[-71.72712154899992,-54.05836353999987],[-71.73607337099995,-54.07919687299994],[-71.74079342399995,-54.08562590899986],[-71.71873938699986,-54.08570728999993],[-71.6891169909999,-54.07634856599989],[-71.66315670499992,-54.07244231599999],[-71.6520076159999,-54.08904387799995],[-71.66063391799992,-54.10377369599995],[-71.71344967399996,-54.14771900799997],[-71.76610266799987,-54.163995049999826],[-71.80809485599988,-54.14812590899998],[-71.87108313699991,-54.08562590899986],[-71.9078669909999,-54.057224217],[-71.92625891799995,-54.038750908999894],[-71.92267818899995,-54.03045012799992],[-71.91832434799997,-54.02613697699983],[-71.91934160099993,-54.01702239399983],[-71.92552649599992,-54.007907809999935],[-71.93626868399991,-54.00367603999992],[-71.9471736319999,-54.00693124799995],[-71.9523005849999,-54.01490650799991],[-71.95368404899989,-54.02597421699986],[-71.95303300699992,-54.03785572699991],[-71.9501033189999,-54.050225518999845],[-71.94493567599991,-54.057793877999984],[-71.93871008999986,-54.06373463299992],[-71.93252519399988,-54.07195403399991],[-71.92015540299985,-54.10857512799985],[-71.91551673099991,-54.11679452899985],[-71.8961482409999,-54.13046640399997],[-71.83698482999989,-54.161309502999934],[-71.8236384759999,-54.17669036299996],[-71.81200110599988,-54.19451262799995],[-71.79832923099994,-54.20924244599994],[-71.75715084499987,-54.21965911299984],[-71.74445553299992,-54.2310523419999],[-71.74461829299989,-54.24635182099986],[-71.76187089799987,-54.26311614399988],[-71.7738337879999,-54.25920989399997],[-71.8175349599999,-54.25448984199987],[-71.83698482999989,-54.24944426899993],[-71.83926347599987,-54.26311614399988],[-71.84723873599992,-54.27271900799986],[-71.85850989499991,-54.27922942499985],[-71.87108313699991,-54.28362395599993],[-71.86131751199986,-54.28866952899987],[-71.83014889199987,-54.29729583099987],[-71.84972083199995,-54.30925872199999],[-71.85741126199989,-54.31161874799986],[-71.85741126199989,-54.31780364399983],[-71.85000566299988,-54.32024504999986],[-71.83014889199987,-54.33147551899995],[-71.84605872299989,-54.33798593499986],[-71.86522376199986,-54.33489348799987],[-71.88565019399994,-54.3287085919999],[-71.90526282499991,-54.32529062299998],[-71.94871985599994,-54.32708098799988],[-71.97061113199987,-54.32529062299998],[-71.98786373599998,-54.31780364399983],[-71.96231035099989,-54.29778411299995],[-71.93687903599988,-54.245863539999874],[-71.90526282499991,-54.229099216999856],[-71.93057206899992,-54.212497653999975],[-71.95860755099994,-54.20501067499983],[-72.01512610599988,-54.20232512799994],[-72.0426326159999,-54.196547132999974],[-72.11070716099992,-54.15390390399995],[-72.09430904899995,-54.148044529],[-72.05850175699993,-54.14544036299982],[-72.04238847599996,-54.14031340899998],[-72.06041419199988,-54.133558851999865],[-72.08165442599997,-54.131931247999844],[-72.12437903599988,-54.13347747199988],[-72.11457271999987,-54.11687590899982],[-72.09251868399986,-54.111586195999934],[-72.04238847599996,-54.113539320999806],[-72.05313066299986,-54.10751718499998],[-72.07750403599994,-54.101250908999845],[-72.08678137899989,-54.09587981599997],[-72.09166419199994,-54.087172132999896],[-72.09788977799991,-54.06552499799999],[-72.10387122299994,-54.05836353999987],[-72.11733964799993,-54.05982838299983],[-72.13524329299989,-54.07195403399991],[-72.16905676999994,-54.1027157529999],[-72.18610592399989,-54.10491301899998],[-72.20531165299985,-54.09189218499999],[-72.22118079299989,-54.07317473799984],[-72.22801673099991,-54.05836353999987],[-72.20303300699987,-54.00514088299988],[-72.20319576699984,-53.99627044099993],[-72.22935950399989,-53.99195728999984],[-72.23973548099988,-53.98056405999987],[-72.24551347599996,-53.964125257999875],[-72.25816809799991,-53.94508228999988],[-72.2591039699999,-53.9298641909999],[-72.23200436099998,-53.9250627579999],[-72.12804114499994,-53.934177341999984],[-72.11774654899992,-53.93914153399985],[-72.11107337099985,-53.95037200299995],[-72.1061091789999,-53.9631486959999],[-72.10081946499994,-53.97275155999988],[-72.09105383999989,-53.97926197699987],[-72.07787024599995,-53.98381926899982],[-72.06476803299998,-53.98357512799996],[-72.05549068899991,-53.97576262799997],[-72.05724036399991,-53.96835702899998],[-72.06582597599993,-53.96021900799996],[-72.08340410099986,-53.94850025799988],[-72.07144120999993,-53.947035414999924],[-72.06029212099992,-53.94882577899991],[-72.0504451159999,-53.95378997199987],[-72.04238847599996,-53.96209075299985],[-72.03929602799988,-53.951104424999976],[-72.04019120999996,-53.94280364399999],[-72.03970292899987,-53.93466562299998],[-72.03254146999984,-53.9242489559999],[-72.02074133999989,-53.917168877999934],[-72.0084529289999,-53.911553643999845],[-72.0021052729999,-53.90292734199984],[-72.00829016799995,-53.88640715899995],[-71.9955134759999,-53.886000257999946],[-71.98330644399994,-53.88746510199982],[-71.9605199859999,-53.89381275799993],[-71.96637936099995,-53.884372653999925],[-71.97459876199994,-53.876885674999954],[-71.98448645699995,-53.87086353999986],[-71.99522864499997,-53.8658993469999],[-71.94570878799993,-53.85279713299993],[-71.90387936099992,-53.86174895599996],[-71.86644446499989,-53.886488539999846]]],[[[-70.41971855199998,-53.87122647699996],[-70.45221920499995,-53.886895440999844],[-70.44432532499988,-53.905205987999906],[-70.42613684799991,-53.921156507999825],[-70.40811113199987,-53.92799244599984],[-70.39582271999993,-53.93629322699982],[-70.35944576699984,-53.97877369599988],[-70.33627699399989,-54.00740331599994],[-70.34279526499992,-54.02806889899998],[-70.38477128999989,-54.050359984999965],[-70.43925242199992,-54.06040917199984],[-70.4956547959999,-54.03323146699992],[-70.53538977799991,-54.00367603999992],[-70.61050370999993,-53.948418877999906],[-70.64894762799986,-53.938694478],[-70.66996194899991,-53.95034151699991],[-70.67113196499992,-53.96770598799984],[-70.63508053299995,-54.00139739399985],[-70.59337317599989,-54.03281015399997],[-70.56891842399995,-54.06511809699999],[-70.56676184799993,-54.078057549999905],[-70.56786048099991,-54.08798593499991],[-70.57286536399994,-54.094903252999906],[-70.58259029899988,-54.09929778399998],[-70.5484106109999,-54.120538018999966],[-70.53880774599992,-54.13420989399991],[-70.53538977799991,-54.15764739399989],[-70.53819739499995,-54.16676197699988],[-70.5440974599999,-54.174574476999865],[-70.54906165299984,-54.183363539999924],[-70.54906165299984,-54.19548919099984],[-70.54434160099993,-54.20094166499996],[-70.53482011599993,-54.20745208099986],[-70.52354895699995,-54.21282317499982],[-70.51366126199994,-54.21542734199991],[-70.54043535099996,-54.22161223799988],[-70.59341386599988,-54.21379973799989],[-70.68561764199987,-54.18808359199984],[-70.8227432929999,-54.113539320999806],[-70.80646725199998,-54.095961195999955],[-70.83047441299993,-54.07577890400002],[-70.86595618399991,-54.05266692499988],[-70.88418535099989,-54.027032159],[-70.88483639199984,-53.99879322699994],[-70.89732825399994,-53.94793059699992],[-70.89753170499992,-53.93124765399988],[-70.88780676999994,-53.92156340899983],[-70.86375891799992,-53.92058684699985],[-70.89268958199992,-53.891045830999886],[-70.90054277299988,-53.873711846999896],[-70.88109290299991,-53.8658993469999],[-70.85753333199995,-53.860039971999946],[-70.88150532299994,-53.842263989999985],[-70.85536954299988,-53.839512335999856],[-70.81994212399988,-53.83694665399985],[-70.7886449859999,-53.831801039999895],[-70.77656970099991,-53.82467905199984],[-70.71806123199991,-53.84226240899994],[-70.67207760599989,-53.84969748199988],[-70.63440387299991,-53.87334533499995],[-70.60611442699994,-53.86512520199988],[-70.60054127099993,-53.82915218299984],[-70.63255774599992,-53.813897393999845],[-70.6992895169999,-53.78720468499991],[-70.70612545499989,-53.74635182099996],[-70.70421301999994,-53.740492445999834],[-70.70083574099993,-53.73593515399988],[-70.6992895169999,-53.73121510199996],[-70.70262610599991,-53.72535572699984],[-70.70612545499989,-53.72079843499988],[-70.70970618399988,-53.71404387799994],[-70.71239173099984,-53.706963799999976],[-70.71288001199994,-53.70142994599987],[-70.7005916009999,-53.690606377999956],[-70.66366840999993,-53.68560724699996],[-70.62726803299995,-53.661065362999906],[-70.60863196499986,-53.65325286299991],[-70.56645303699989,-53.626053264999875],[-70.54659234199991,-53.59677599599997],[-70.54749477499988,-53.57698551299985],[-70.53555253799988,-53.56047942499997],[-70.51060950399994,-53.558038018999945],[-70.48643958199995,-53.56129322699981],[-70.46953406199987,-53.566314955],[-70.46261091199992,-53.57636062899984],[-70.45503586899986,-53.61159801499986],[-70.46205624099986,-53.64327010699994],[-70.47315572799992,-53.665345213999906],[-70.46926929699988,-53.69173706699981],[-70.4453398229999,-53.7628468319999],[-70.42163887799997,-53.8025270109999],[-70.4313176199999,-53.826604604],[-70.41971855199998,-53.87122647699996]]],[[[-73.68785559799994,-53.5232072899999],[-73.70177161399994,-53.53818124799985],[-73.71662350199989,-53.54143645599989],[-73.75523841099997,-53.53687916499985],[-73.77953040299985,-53.53915781],[-73.78457597599987,-53.54566822699982],[-73.7835994129999,-53.55657317499989],[-73.78966223899991,-53.57170989399989],[-73.80418860599994,-53.58025481599991],[-73.82725989499991,-53.58668385199982],[-73.84854081899988,-53.58831145599984],[-73.85789954299992,-53.58163827899988],[-73.85362708199989,-53.5656063779999],[-73.8436580069999,-53.5577938779999],[-73.83250891799989,-53.55087655999991],[-73.82445227799984,-53.53687916499985],[-73.8743383449999,-53.53972747199988],[-73.88589433499993,-53.53687916499985],[-73.89232337099993,-53.52629973799998],[-73.8834529289999,-53.52011484200001],[-73.86815344999994,-53.5171851539999],[-73.85484778599991,-53.51653411299995],[-73.83336341099988,-53.50579192499985],[-73.84434973899994,-53.48235442499986],[-73.86058508999987,-53.45891692499989],[-73.85484778599991,-53.44817473799987],[-73.84422766799987,-53.44988372199988],[-73.83446204299992,-53.454766533999944],[-73.82725989499991,-53.46233489399999],[-73.82445227799984,-53.472100518999845],[-73.81973222599993,-53.47966887799997],[-73.80850175699993,-53.484144789999945],[-73.73021399599986,-53.49968840899986],[-73.70645097599996,-53.50823333099988],[-73.68785559799994,-53.5232072899999]]],[[[-73.5567113919999,-53.404554945999955],[-73.54670162699992,-53.407321873000015],[-73.5343318349999,-53.40496184699997],[-73.51431230399993,-53.39519622199993],[-73.50568600199992,-53.39299895599985],[-73.44847571499986,-53.39153411299988],[-73.43455969999988,-53.394219658999866],[-73.39244544199991,-53.407321873000015],[-73.39244544199991,-53.413995049999976],[-73.45726477799991,-53.43572356599995],[-73.48802649599992,-53.451592705999886],[-73.50910396999993,-53.47551848799994],[-73.49689693899995,-53.478773695999806],[-73.49111894399988,-53.47600676899992],[-73.4859106109999,-53.471286717],[-73.47496497299991,-53.468682549999926],[-73.46788489499997,-53.471856377999984],[-73.45299231699991,-53.48601653399991],[-73.44395911399991,-53.489190362999885],[-73.43423417899996,-53.49472421699999],[-73.39244544199991,-53.53069426899987],[-73.40062415299994,-53.54143645599989],[-73.41331946499989,-53.545098565999844],[-73.44395911399991,-53.544366143999824],[-73.45221920499989,-53.54827239399991],[-73.47101803299995,-53.566338799999926],[-73.48180091099994,-53.57170989399989],[-73.50723222599996,-53.56861744599981],[-73.52049719999988,-53.55242278399994],[-73.52977454299995,-53.53045012799984],[-73.54328365799992,-53.51034921699998],[-73.55247962099989,-53.540459893999916],[-73.55964107999992,-53.54664478999989],[-73.57799231699988,-53.544366143999824],[-73.5942276679999,-53.526543877999934],[-73.60130774599989,-53.5232072899999],[-73.6497289699999,-53.51653411299995],[-73.66185462099989,-53.51091887799995],[-73.69115149599988,-53.484633070999934],[-73.70767167899987,-53.47551848799994],[-73.76500403599991,-53.457452080999836],[-73.77940833199997,-53.45501067499998],[-73.78136145699992,-53.451267184999864],[-73.79922441299988,-53.4359677059999],[-73.80333411399994,-53.434502862999935],[-73.80321204299985,-53.42205169099982],[-73.79816646999984,-53.41855234199993],[-73.77940833199997,-53.42083098799999],[-73.76598059799989,-53.42546965899984],[-73.69115149599988,-53.467217705999865],[-73.68073482999992,-53.468682549999926],[-73.65343176999991,-53.467217705999865],[-73.63914954299992,-53.4679501279999],[-73.62889563699991,-53.472100518999845],[-73.61327063699991,-53.48251718500001],[-73.5934138659999,-53.490004164999895],[-73.57494055899988,-53.49114348799992],[-73.56371008999989,-53.48235442499986],[-73.59382076699993,-53.471774998],[-73.60606848899988,-53.46461353999987],[-73.61900794199988,-53.45501067499998],[-73.59976152299994,-53.44793059699984],[-73.57941646999987,-53.44939544099989],[-73.55833899599992,-53.453708591999984],[-73.53701738199987,-53.45501067499998],[-73.54849199099989,-53.443291924999905],[-73.59788977799988,-53.424004815999865],[-73.59805253799993,-53.392673435],[-73.5926000639999,-53.3858374979999],[-73.57799231699988,-53.38681405999988],[-73.56916256399992,-53.39153411299988],[-73.5567113919999,-53.404554945999955]]],[[[-73.0113826159999,-53.489190362999885],[-73.00202389199987,-53.49325937299994],[-72.99258378799996,-53.48512135199992],[-72.98835201699984,-53.465590101999844],[-72.98957271999987,-53.44752369599983],[-72.99388587099986,-53.432875257999825],[-73.00226803299992,-53.42180754999997],[-73.01561438699994,-53.413995049999976],[-73.01561438699994,-53.407321873000015],[-72.98477128799988,-53.411309502999906],[-72.93517005099994,-53.43572356599995],[-72.91323808499993,-53.427015882999875],[-72.9134008449999,-53.45077890399987],[-72.91808020699992,-53.471774998],[-72.92634029899988,-53.49016692499986],[-72.93683834499987,-53.506280205999836],[-72.9409887359999,-53.518324476999936],[-72.9366755849999,-53.52703215899992],[-72.9298396479999,-53.530531507999825],[-72.92625891799992,-53.52703215899992],[-72.9219457669999,-53.51490650799984],[-72.91120357999989,-53.5098609349999],[-72.89801998599995,-53.51083749799996],[-72.88589433499996,-53.51653411299995],[-72.87254798099994,-53.534844658999916],[-72.87653561099992,-53.55169036299983],[-72.88683020699993,-53.56894296700001],[-72.89598548099991,-53.59978606599997],[-72.91002356699997,-53.612969658999845],[-72.91323808499993,-53.62322356599995],[-72.91095943899995,-53.63209400799991],[-72.90534420499995,-53.6399065079999],[-72.89281165299984,-53.65357838299985],[-72.88923092399997,-53.67294687299995],[-72.88414466099997,-53.681329033999916],[-72.87230383999989,-53.68035247199994],[-72.86424719999987,-53.67156340899988],[-72.86510169199997,-53.65976327899999],[-72.87230383999989,-53.6368954409999],[-72.86778723899994,-53.62704843499997],[-72.8580216139999,-53.61988697699984],[-72.84821529899997,-53.61451588299988],[-72.84373938699991,-53.609307549999976],[-72.84015865799992,-53.598321221999925],[-72.82298743399991,-53.57529062299995],[-72.8170466789999,-53.56487395599987],[-72.81493079299989,-53.5392391909999],[-72.82481848899988,-53.5236955709999],[-72.83751380099994,-53.51083749799996],[-72.84703528599992,-53.4847958309999],[-72.86156165299988,-53.470472914999824],[-72.86485755099991,-53.458754164999924],[-72.85846920499989,-53.45273202899992],[-72.84455318899992,-53.45940520599988],[-72.82384192599991,-53.47551848799994],[-72.80833899599989,-53.477634372999944],[-72.79279537699989,-53.47795989399997],[-72.78087317599994,-53.48300546699991],[-72.77603105399987,-53.4994442689999],[-72.77065995999993,-53.50457122199983],[-72.75829016799987,-53.5098609349999],[-72.73448645699989,-53.51653411299995],[-72.74327551999994,-53.537774346999846],[-72.74815833199992,-53.544366143999824],[-72.73102779899989,-53.554294529],[-72.69098873599995,-53.58440520599994],[-72.67983964799993,-53.599053643999945],[-72.6760961579999,-53.61158619599986],[-72.67593339799993,-53.62249114399993],[-72.68032792899993,-53.632745049999954],[-72.69009355399987,-53.64373137799983],[-72.69611568899995,-53.65699635199994],[-72.68927975199995,-53.66765715899997],[-72.67857825399992,-53.67327239399997],[-72.67300370999992,-53.67107512799989],[-72.6678767569999,-53.66961028399984],[-72.64232337099992,-53.67148202899989],[-72.63206946499989,-53.66790129999983],[-72.63048255099994,-53.659926039999874],[-72.63442949099993,-53.5975887999999],[-72.64191646999993,-53.57740650799996],[-72.65461178299998,-53.56047942499997],[-72.67300370999992,-53.544366143999824],[-72.67300370999992,-53.53687916499985],[-72.65587317599989,-53.53679778399996],[-72.55797278599994,-53.57878997199985],[-72.54613196499989,-53.588474216999906],[-72.5335180329999,-53.591403903999925],[-72.49779212099986,-53.575860283999916],[-72.48131262899997,-53.57170989399989],[-72.46418209499984,-53.575127862999985],[-72.44652258999994,-53.583591403999925],[-72.43683834499987,-53.59531015400001],[-72.44371497299987,-53.609307549999976],[-72.43724524599989,-53.615411065999965],[-72.41551673099991,-53.6226539039999],[-72.39728756399992,-53.63347747199998],[-72.4017634759999,-53.65016041499984],[-72.41673743399991,-53.655938408999894],[-72.45474199099993,-53.653741143999895],[-72.47443600199998,-53.661065362999906],[-72.4846899079999,-53.67400481599982],[-72.48444576699987,-53.68710702899988],[-72.47484290299988,-53.69736093499991],[-72.43805904899988,-53.70549895599992],[-72.43614661399994,-53.715508722],[-72.45327714799987,-53.74236419099989],[-72.43663489499991,-53.749281507999974],[-72.42780514199987,-53.74114348799988],[-72.42064368399991,-53.72844817499991],[-72.40892493399993,-53.72193775799992],[-72.40660559799997,-53.71445077899994],[-72.39077714799993,-53.69939544099984],[-72.37303626199994,-53.68775807099993],[-72.3645727199999,-53.690850518999824],[-72.34752356699994,-53.710137627999856],[-72.23424231699997,-53.728773695999934],[-72.27326412699992,-53.759209893999895],[-72.26838131399995,-53.76344166499982],[-72.22618567599991,-53.76628997199986],[-72.18700110599988,-53.776543877999885],[-72.15274003799993,-53.79615650799994],[-72.13866126199989,-53.79762135199981],[-72.15733801999994,-53.807793877999856],[-72.20026607999992,-53.813653252999984],[-72.21715247299991,-53.82122161299985],[-72.22765051999988,-53.835544528999925],[-72.22036699099996,-53.8516578099999],[-72.2311091789999,-53.86931731599982],[-72.25088456899991,-53.877536717],[-72.27464758999992,-53.872328382999825],[-72.29625403599991,-53.86150481599983],[-72.32848059799993,-53.83961353999988],[-72.34862219999988,-53.83131275799982],[-72.36994381399994,-53.831801039999895],[-72.39183508999989,-53.845391533999944],[-72.35090084499987,-53.85963307099995],[-72.35619055899994,-53.87835051899983],[-72.34406490799995,-53.91008879999997],[-72.35090084499987,-53.92799244599984],[-72.3866267569999,-53.904066664999874],[-72.40953528599991,-53.893161716999984],[-72.41978919199991,-53.89706796699989],[-72.41608639199987,-53.91757577899994],[-72.4056697259999,-53.93124765399988],[-72.39028886599993,-53.94060637799991],[-72.37140865799992,-53.94850025799988],[-72.3797094389999,-53.95956796700001],[-72.39195716099997,-53.962497653999854],[-72.4059952459999,-53.9635555969999],[-72.41978919199991,-53.96949635199984],[-72.38516191299993,-53.98105234199995],[-72.32359778599988,-53.989434502999906],[-72.31777910099993,-54.00212981599988],[-72.32054602799988,-54.01897551899988],[-72.32990475199992,-54.034600518999866],[-72.3434138659999,-54.04404062299988],[-72.35480709499987,-54.04550546699993],[-72.36774654899995,-54.04404062299988],[-72.37979081899987,-54.03997161299983],[-72.38841712099989,-54.03411223799987],[-72.39704342399997,-54.032484632999946],[-72.42308508999986,-54.04176197699981],[-72.43346106699994,-54.04404062299988],[-72.45421301999994,-54.03826262799991],[-72.45905514199984,-54.02678801899987],[-72.45327714799987,-53.989434502999906],[-72.46886145699995,-53.995782158999845],[-72.4855037099999,-53.99635182099991],[-72.50157630099989,-53.991875908999944],[-72.51537024599989,-53.982598565999986],[-72.51720130099997,-53.99504973799991],[-72.52330481699997,-54.008477472],[-72.53278561099995,-54.02361419099999],[-72.51866614499994,-54.03020598799997],[-72.51911373599992,-54.0456682269999],[-72.52965247299987,-54.075372002999835],[-72.54328365799995,-54.10003020599983],[-72.57437089799996,-54.09547291499996],[-72.60875403599988,-54.076755466999906],[-72.63206946499989,-54.05836353999987],[-72.62629146999984,-54.04827239399999],[-72.6234431629999,-54.03687916499993],[-72.62572180899986,-54.02743906],[-72.63548743399991,-54.02361419099999],[-72.64464270699989,-54.02695077900002],[-72.65025794199988,-54.03484465899999],[-72.65436764199984,-54.044122002999856],[-72.6587621739999,-54.05144622199987],[-72.68004309799989,-54.06878020599986],[-72.69261633999989,-54.075860284],[-72.70348059799997,-54.07878997199993],[-72.70677649599992,-54.080987237999835],[-72.70982825399989,-54.08611419099993],[-72.71141516799992,-54.09189218499999],[-72.71060136599989,-54.09587981599997],[-72.70689856699987,-54.10328541499996],[-72.71426347599987,-54.10377369599995],[-72.72411048099988,-54.101169528999854],[-72.72765051999995,-54.09929778399998],[-72.78628495999989,-54.09246184699987],[-72.79352779899992,-54.097263278999954],[-72.8170466789999,-54.12664153399986],[-72.84308834499987,-54.133558851999865],[-72.89736894399991,-54.12118905999992],[-72.92625891799992,-54.11980559699994],[-72.89655514199988,-54.11256275799992],[-72.88280188699989,-54.10564544099983],[-72.87848873599995,-54.09246184699987],[-72.88508053299995,-54.083916924999855],[-72.89712480399996,-54.08733489399995],[-72.91006425699996,-54.09498463299989],[-72.91942298099988,-54.09929778399998],[-72.92479407499985,-54.09710051899999],[-72.93390865799995,-54.08782317499994],[-72.93683834499987,-54.08562590899986],[-72.94371497299997,-54.08668385199991],[-72.95555579299992,-54.09124114399986],[-72.98424231699988,-54.09661223799982],[-72.99510657499988,-54.09685637799995],[-73.00885982999989,-54.09246184699987],[-73.02684485599994,-54.074883721999846],[-73.00450598899991,-54.06454843499992],[-72.93374589799987,-54.05836353999987],[-72.82628333199995,-54.06780364399988],[-72.79596920499995,-54.05836353999987],[-72.88072669199994,-54.03443775799981],[-72.88589433499996,-54.02361419099999],[-72.86095130099991,-54.01677825299998],[-72.7624405589999,-54.03045012799992],[-72.77293860599988,-54.01677825299998],[-72.80776933499993,-54.005791924999926],[-72.82384192599991,-53.99627044099993],[-72.80968176999988,-53.99586353999992],[-72.79735266799995,-53.99228280999995],[-72.78628495999989,-53.98544687299984],[-72.77603105399987,-53.97576262799997],[-72.84015865799992,-53.960381768999845],[-72.85057532499994,-53.95525481599992],[-72.84142005099994,-53.94719817499988],[-72.7828669909999,-53.92799244599984],[-72.7560115229999,-53.90260182099981],[-72.74307206899991,-53.89364999799997],[-72.72142493399991,-53.88640715899995],[-72.68057206899996,-53.8788388],[-72.66258704299992,-53.87224700299984],[-72.64513098899997,-53.85963307099995],[-72.74181067599989,-53.876071872999944],[-72.76862545499989,-53.87273528399982],[-72.74254309799991,-53.86093515399995],[-72.73298092399995,-53.85320403399994],[-72.72765051999995,-53.83863697699982],[-72.74950110599991,-53.841566664999924],[-72.78709876199991,-53.858168226999894],[-72.80955969999991,-53.85963307099995],[-72.7828669909999,-53.831801039999895],[-72.78880774599992,-53.82008228999982],[-72.80166581899994,-53.81747812299991],[-72.81627356699997,-53.82097747199999],[-72.84520423099988,-53.84148528399986],[-72.89720618399993,-53.867282809999885],[-72.91942298099988,-53.87273528399982],[-72.94367428299998,-53.86825937299995],[-72.95543372299994,-53.85759856599992],[-72.96548417899993,-53.85198333099992],[-73.00731360599985,-53.873711846999896],[-73.01610266799992,-53.86174895599996],[-73.02183997299989,-53.82431406000001],[-73.04063880099994,-53.80803801899989],[-73.05601966099987,-53.812758070999806],[-73.06647701699987,-53.83131275799982],[-73.0702205069999,-53.856052341999884],[-73.07648678299995,-53.87566497199994],[-73.10167395699992,-53.91041432099981],[-73.10440019399988,-53.934177341999984],[-73.0918676419999,-53.95126718499994],[-73.04621334499987,-53.97380950299993],[-73.03620357999995,-53.98601653399999],[-73.04405676999994,-53.999118747999965],[-73.0624080069999,-54.01669687299999],[-73.08311926999991,-54.031914971999974],[-73.09825598899991,-54.03785572699991],[-73.10407467399995,-54.03533294099989],[-73.10830644399988,-54.03045012799992],[-73.11530514199987,-54.020440362999935],[-73.12344316299988,-54.014336846999946],[-73.12946529899989,-54.012627862999935],[-73.13585364499991,-54.012139580999865],[-73.14537512899992,-54.009942315999865],[-73.19225012899994,-53.99195728999984],[-73.2040909499999,-53.989434502999906],[-73.27440344999985,-53.984063408999944],[-73.30894934799994,-53.97380950299993],[-73.33775794199988,-53.95525481599992],[-73.32445227799985,-53.95061614399999],[-73.29596920499995,-53.945733330999836],[-73.28258216099992,-53.94158294099998],[-73.26471920499998,-53.932061455999886],[-73.26219641799986,-53.92595794099999],[-73.26475989499997,-53.91912200299998],[-73.26207434799989,-53.90748463299988],[-73.25255286399991,-53.901950778999954],[-73.24071204299995,-53.89999765399991],[-73.23639889199984,-53.89657968499999],[-73.24901282499991,-53.88640715899995],[-73.26821855399987,-53.880059502999835],[-73.28087317599994,-53.88152434699989],[-73.28791256399991,-53.879571221999846],[-73.29002844999994,-53.86288827899999],[-73.29430091099994,-53.851820570999955],[-73.31305904899989,-53.84449635199995],[-73.31729081899991,-53.8352190079999],[-73.30972245999986,-53.82431406000001],[-73.29308020699992,-53.819756768999966],[-73.27647864499997,-53.81780364399993],[-73.26891028599991,-53.814711195999855],[-73.25715084499984,-53.79827239399986],[-73.25283769399994,-53.78606536299997],[-73.25865637899989,-53.773370049999826],[-73.26886959499993,-53.76425546700001],[-73.27993730399996,-53.756442966999835],[-73.29332434799996,-53.75123463299985],[-73.3104548819999,-53.750420830999836],[-73.3104548819999,-53.74236419099989],[-73.26073157499991,-53.72714609199991],[-73.24535071499986,-53.71575286299986],[-73.26207434799989,-53.70142994599987],[-73.27489173099994,-53.70086028399999],[-73.30211341099994,-53.71257903399989],[-73.31387285099989,-53.71559010199998],[-73.36245683499996,-53.713311455999914],[-73.53416907499994,-53.75212981599993],[-73.59166419199991,-53.75603606599984],[-73.56578528599991,-53.74041106599985],[-73.51927649599989,-53.721368096999946],[-73.48485266799995,-53.70086028399999],[-73.49486243399991,-53.68035247199994],[-73.49669348899991,-53.66497161299999],[-73.52623450399994,-53.664483330999914],[-73.56334387899997,-53.66790129999983],[-73.58796139199987,-53.664483330999914],[-73.59874426999988,-53.658868096999825],[-73.60875403599997,-53.65683359199998],[-73.61607825399997,-53.65162525799998],[-73.61900794199988,-53.6368954409999],[-73.6180720689999,-53.62330494599994],[-73.61534583199995,-53.614027601999894],[-73.61091061099995,-53.606622002999906],[-73.60472571499989,-53.599053643999945],[-73.58470618399994,-53.58277760199992],[-73.56509355399987,-53.57952239399988],[-73.49559485599985,-53.588474216999906],[-73.4828181629999,-53.587985935],[-73.47126217399989,-53.58163827899988],[-73.45787512899989,-53.569756768999845],[-73.4469294909999,-53.56422291499991],[-73.43545488199987,-53.56324635199985],[-73.42031816299988,-53.56487395599987],[-73.36558997299994,-53.57732512799998],[-73.33629309799991,-53.588962497999894],[-73.32355709499987,-53.60271575299999],[-73.31680253799993,-53.61931731599987],[-73.30044511599989,-53.63445403399996],[-73.28026282499988,-53.64625416499993],[-73.26207434799989,-53.65357838299985],[-73.20421301999987,-53.66619231599982],[-72.97394771999987,-53.66985442499987],[-72.95287024599986,-53.664483330999914],[-72.94737708199992,-53.64674244599992],[-72.95848548099985,-53.633233330999936],[-72.97655188699989,-53.63713958099985],[-72.99632727799991,-53.64763762799991],[-73.0121964179999,-53.65357838299985],[-73.0593969389999,-53.65309010199985],[-73.08079993399986,-53.648207289999974],[-73.08079993399986,-53.6368954409999],[-73.03726152299991,-53.60051848799983],[-73.02928626199989,-53.584730726999965],[-73.03819739499991,-53.591973565999986],[-73.04771887899992,-53.596368096999875],[-73.05833899599995,-53.5984026019999],[-73.0702205069999,-53.599053643999945],[-73.08096269399991,-53.602471612999864],[-73.08844967399997,-53.61052825299999],[-73.09825598899991,-53.62639739399984],[-73.11546790299991,-53.63958098799997],[-73.13483639199984,-53.64625416499993],[-73.15807044199997,-53.6481259089999],[-73.20763098899991,-53.64495208099984],[-73.25865637899989,-53.635186455999985],[-73.27635657499988,-53.62639739399984],[-73.29124915299985,-53.60588958099988],[-73.28856360599988,-53.589532158999866],[-73.26207434799989,-53.558038018999945],[-73.31578528599997,-53.55510833099983],[-73.33999589799986,-53.54794687299989],[-73.41283118399991,-53.49325937299994],[-73.42031816299988,-53.47893645599994],[-73.42125403599997,-53.47087981599983],[-73.42100989499991,-53.46689218499984],[-73.41539466099991,-53.46461353999987],[-73.39981035099993,-53.462497653999954],[-73.3873591789999,-53.462172132999925],[-73.34459387899989,-53.468682549999926],[-73.29775956899994,-53.48284270599986],[-73.27619381399992,-53.494317315999986],[-73.26207434799989,-53.51034921699998],[-73.22301184799994,-53.4939104149998],[-73.1695857409999,-53.49920012799987],[-73.07713782499991,-53.53069426899987],[-73.08820553299992,-53.51384856599988],[-73.10366777299994,-53.504652601999815],[-73.11953691299988,-53.49822356599989],[-73.13170325399997,-53.489190362999885],[-73.13556881399995,-53.47275155999998],[-73.13292395699989,-53.454766533999944],[-73.13491777299993,-53.440362237999885],[-73.15257727799994,-53.434502862999935],[-73.1739802729999,-53.430271092],[-73.17516028599991,-53.42083098799999],[-73.16152910099986,-53.41139088299989],[-73.13853919199988,-53.407321873000015],[-73.11416581899994,-53.40569426899999],[-73.09080969999992,-53.40048593499999],[-73.05724036399991,-53.38681405999988],[-73.0377091139999,-53.38551197699988],[-73.0326228509999,-53.39031340899996],[-73.03620357999995,-53.42083098799999],[-73.03783118399987,-53.424899997999866],[-73.04051673099988,-53.428887627999934],[-73.04019120999992,-53.43499114399992],[-73.02061926999997,-53.457940362999906],[-73.01695716099991,-53.46453215899997],[-73.0113826159999,-53.489190362999885]]],[[[-74.18846594999991,-53.32927825299989],[-74.19371497299989,-53.33147551899997],[-74.20221920499992,-53.33074309699994],[-74.21735592399992,-53.32586028399997],[-74.22508704299992,-53.32463958099996],[-74.23888098899994,-53.31462981599997],[-74.24217688699989,-53.31096770599983],[-74.24372311099992,-53.30282968499999],[-74.24128170499998,-53.29998137799996],[-74.23770097599989,-53.298597914999796],[-74.23595130099991,-53.29404062299985],[-74.22362219999987,-53.28101978999995],[-74.14590410099996,-53.242771092],[-74.12393144399994,-53.23503997199999],[-74.09581458199995,-53.228448174999826],[-74.07079016799995,-53.230889580999865],[-74.05809485599988,-53.25025807099996],[-74.0657445949999,-53.26002369599982],[-74.07774817599991,-53.26392994599991],[-74.0917048819999,-53.26620859199998],[-74.10496985599994,-53.270114841999884],[-74.09801184799994,-53.29265715899996],[-74.11611894399994,-53.30738697699995],[-74.14513098899994,-53.315524997999965],[-74.17048092399997,-53.31780364399985],[-74.17662512899994,-53.32000090899984],[-74.18846594999991,-53.32927825299989]]],[[[-70.72515517799988,-52.91360801299994],[-70.76444247199996,-52.91547588499994],[-70.78974034899994,-52.900540723],[-70.76945195799993,-52.887803135999924],[-70.73143812899988,-52.86884716999984],[-70.68681436699984,-52.84738951699998],[-70.63173666299994,-52.83265736999989],[-70.6192519869999,-52.84338431899989],[-70.63498535499988,-52.853594600999855],[-70.6492346729999,-52.87695724299986],[-70.67626578599996,-52.89483012699985],[-70.72515517799988,-52.91360801299994]]],[[[-73.61172441299988,-52.82170989399986],[-73.55235755099991,-52.85320403399996],[-73.52961178299996,-52.838067315999865],[-73.50885982999998,-52.85247161299984],[-73.47850501199991,-52.86630624799993],[-73.44969641799989,-52.87273528399985],[-73.43342037699995,-52.865411065999936],[-73.38532467399997,-52.897637627999885],[-73.37877356699988,-52.91033294099985],[-73.38174394399991,-52.927015882999974],[-73.39012610599985,-52.94158294099982],[-73.4029027989999,-52.95240650799981],[-73.41930091099991,-52.957696221999974],[-73.43626868399988,-52.95728932099997],[-73.45710201699987,-52.95305754999986],[-73.47630774599992,-52.94524504999987],[-73.48863684799997,-52.934258722],[-73.49250240799995,-52.92197030999986],[-73.48908443899995,-52.9126929669999],[-73.47838294199994,-52.90732187299994],[-73.46068274599992,-52.90691497199993],[-73.46068274599992,-52.90007903399991],[-73.47248287699989,-52.89812590899987],[-73.49168860599985,-52.888278903999854],[-73.50194251199989,-52.885918877999984],[-73.55011959499984,-52.885918877999984],[-73.5606176419999,-52.88738372199985],[-73.5688370429999,-52.88958098799994],[-73.57721920499995,-52.8893368469999],[-73.58796139199987,-52.882745049999926],[-73.59683183499992,-52.87916432099986],[-73.60960852799987,-52.87810637799999],[-73.63263912699993,-52.87957122199987],[-73.66197669199994,-52.891696872999944],[-73.67332923099991,-52.89332447699997],[-73.71540279899989,-52.89185963299992],[-73.72883053299998,-52.89332447699997],[-73.78734290299994,-52.91318124799988],[-73.81078040299991,-52.91375090899986],[-73.79808508999986,-52.89861419099995],[-73.75890051999991,-52.891696872999944],[-73.74185136599995,-52.87957122199987],[-73.7481990229999,-52.86923593499995],[-73.7364802729999,-52.866469007999896],[-73.71808834499987,-52.86598072699991],[-73.70466061099995,-52.86223723799987],[-73.69351152299994,-52.852797132999946],[-73.68455969999991,-52.84970468499988],[-73.67442786399997,-52.8500302059999],[-73.64622962099989,-52.854424737999885],[-73.61538652299993,-52.86345794099989],[-73.60130774599989,-52.865411065999936],[-73.59243730399993,-52.860609632999946],[-73.60391191299988,-52.849867445999934],[-73.63263912699993,-52.831231377999856],[-73.61172441299988,-52.82170989399986]]],[[[-74.67442786399994,-52.721286716999984],[-74.6426488919999,-52.74472421699996],[-74.59845943899992,-52.76978932099996],[-74.57213294199991,-52.779066664999824],[-74.48916581899991,-52.797051690999865],[-74.4944555329999,-52.81170012799996],[-74.49767005099994,-52.81845468499991],[-74.50283769399994,-52.824965101999894],[-74.48932857999998,-52.83538176899997],[-74.44912675699987,-52.849379164999945],[-74.44078528599991,-52.85540129999986],[-74.43399003799988,-52.86874765399996],[-74.4178767569999,-52.87086353999988],[-74.38243567599991,-52.865411065999936],[-74.37096106699997,-52.87265390399987],[-74.38117428299992,-52.888604424999876],[-74.40721594999988,-52.91375090899986],[-74.40147864499991,-52.92180754999989],[-74.3587947259999,-52.94793059699994],[-74.3426407539999,-52.925713799999976],[-74.32689368399988,-52.924086195999955],[-74.27098548099991,-52.95761484199999],[-74.26146399599992,-52.96021900799981],[-74.24893144399991,-52.96160247199988],[-74.24510657499991,-52.95973072699982],[-74.23985755099991,-52.950778903999975],[-74.23595130099991,-52.94793059699994],[-74.22964433499988,-52.94817473799998],[-74.21837317599989,-52.95387135199987],[-74.21141516799989,-52.95533619599993],[-74.2057185539999,-52.951836846999846],[-74.19786536399994,-52.94491952899985],[-74.18830318899995,-52.94052499799995],[-74.17760169199991,-52.94451262799984],[-74.15660559799989,-52.97039153399985],[-74.15339107999992,-52.97861093499985],[-74.14297441299993,-52.989678643999966],[-74.1197810539999,-52.98300546700001],[-74.08385169199991,-52.96160247199988],[-74.11237545499992,-52.95256926899987],[-74.12393144399994,-52.94573333099986],[-74.13288326699987,-52.934258722],[-74.08934485599985,-52.94654713299987],[-74.07457434799997,-52.94793059699994],[-74.0298966139999,-52.98202890399995],[-74.02562415299988,-52.963555596999925],[-74.00780188699991,-52.96656666499983],[-73.96776282499987,-52.989434502999934],[-73.94713294199994,-52.99309661299989],[-73.93822180899991,-52.99618905999988],[-73.9343155589999,-53.00318775799986],[-73.93932044199997,-53.00847747199983],[-73.97524980399996,-53.00937265400001],[-73.96471106699987,-53.01848723799991],[-73.96003170499998,-53.02141692499993],[-73.9547419909999,-53.02361419099984],[-73.9615779289999,-53.02361419099984],[-73.94546464799993,-53.02532317499984],[-73.89952551999995,-53.03728606599995],[-73.90428626199989,-53.023044528999954],[-73.90233313699991,-53.01230234199994],[-73.89305579299989,-53.00554778399991],[-73.87588456899994,-53.00318775799986],[-73.86603756399992,-53.00953541499989],[-73.84170488199995,-53.037774346999946],[-73.82787024599986,-53.044122002999885],[-73.82396399599986,-53.047295830999936],[-73.81965084499987,-53.0543759089999],[-73.81419837099992,-53.061455987999956],[-73.80703691299986,-53.064629815999844],[-73.79832923099987,-53.06243254999993],[-73.79255123599992,-53.057712497999844],[-73.78954016799992,-53.05299244599993],[-73.78966223899991,-53.0509579409999],[-73.77204342399997,-53.052422783999866],[-73.7555232409999,-53.05754973799988],[-73.72883053299998,-53.07146575299994],[-73.68297278599988,-53.107517185],[-73.66982988199993,-53.112399997999965],[-73.6600642569999,-53.11777109199993],[-73.63621985599991,-53.14120859199991],[-73.62889563699991,-53.146579684999956],[-73.61034094999991,-53.14185963299986],[-73.61497962099992,-53.131117445999855],[-73.6388240229999,-53.112399997999965],[-73.6458227199999,-53.10068124799989],[-73.6599828769999,-53.05779387799983],[-73.64110266799989,-53.057224216999856],[-73.62328040299991,-53.059828382999854],[-73.60822506399997,-53.066582940999886],[-73.59788977799988,-53.07887135199993],[-73.59919186099997,-53.08367278399984],[-73.60285396999983,-53.09140390399985],[-73.60484778599997,-53.100355726999865],[-73.60130774599989,-53.10906340899986],[-73.59593665299994,-53.110772393999945],[-73.57054602799991,-53.112399997999965],[-73.57054602799991,-53.09929778399999],[-73.56794186099992,-53.10369231599998],[-73.5554906889999,-53.11394622199983],[-73.5511775379999,-53.11842213299988],[-73.54308020699995,-53.14104583099986],[-73.54523678299995,-53.15585702900001],[-73.55443274599995,-53.167657158999894],[-73.57799231699988,-53.18759530999997],[-73.54967200399994,-53.20810312299993],[-73.54328365799992,-53.21477629999989],[-73.53282630099994,-53.23398202899994],[-73.52977454299995,-53.24431731599986],[-73.53331458199992,-53.24895598799996],[-73.51634680899986,-53.26140715899999],[-73.5065811839999,-53.26392994599991],[-73.5023087229999,-53.25261809699983],[-73.49986731699997,-53.2380510399999],[-73.49303137899993,-53.23015715899984],[-73.48224850199995,-53.225844007999925],[-73.46812903599991,-53.22226327899986],[-73.47386633999989,-53.211114190999844],[-73.48176021999986,-53.20159270599993],[-73.49132239499993,-53.193617445999976],[-73.5023087229999,-53.18759530999997],[-73.48534094999994,-53.171075127999984],[-73.49771074099996,-53.14324309699993],[-73.48180091099994,-53.13290781000002],[-73.45954342399989,-53.13290781000002],[-73.43512936099995,-53.14023202899984],[-73.42202714799987,-53.152439059999914],[-73.43342037699995,-53.167087497999916],[-73.42003333199995,-53.16594817499989],[-73.4081111319999,-53.16668059699992],[-73.39858964799988,-53.170993748],[-73.39244544199991,-53.180759372999866],[-73.40607662699998,-53.18759530999997],[-73.35521399599995,-53.204522393999866],[-73.33775794199988,-53.21477629999989],[-73.31802324099993,-53.22991301899989],[-73.3116755849999,-53.238864841999906],[-73.32042395699989,-53.242771092],[-73.35875403599991,-53.245293877999835],[-73.37193762899996,-53.242771092],[-73.36302649599992,-53.25310637799983],[-73.35826575399994,-53.25644296699994],[-73.36603756399992,-53.271172783999845],[-73.3432511059999,-53.27206796699992],[-73.28624426999991,-53.26327890399987],[-73.26646887899997,-53.26873137799999],[-73.19444739499994,-53.30413176899991],[-73.20343990799995,-53.309665623000015],[-73.20742753799993,-53.31096770599983],[-73.20742753799993,-53.31780364399985],[-73.17861894399991,-53.319268487999906],[-73.1397192049999,-53.32781340899984],[-73.10545813699994,-53.34091562299999],[-73.09080969999992,-53.35572682099996],[-73.1078181629999,-53.36891041499992],[-73.18944251199991,-53.358168226999815],[-73.21739661399994,-53.362481377999906],[-73.23094641799989,-53.368096612999906],[-73.24718176999994,-53.365166924999976],[-73.27635657499988,-53.35263437299989],[-73.28905188699984,-53.34124114399983],[-73.2962133449999,-53.3383114559999],[-73.29743404899992,-53.34091562299999],[-73.30304928299991,-53.34596119599993],[-73.3104548819999,-53.35076262799983],[-73.31729081899991,-53.35263437299989],[-73.34557044199997,-53.342868747999844],[-73.37515214799993,-53.32439544099982],[-73.40172278599988,-53.302666924999855],[-73.42031816299988,-53.283135674999954],[-73.43390865799992,-53.294691664999895],[-73.44489498599997,-53.30852629999998],[-73.45799719999985,-53.32000090899984],[-73.4780981109999,-53.32463958099996],[-73.55964107999992,-53.32366301899998],[-73.58421790299985,-53.31780364399985],[-73.60204016799992,-53.30901458099997],[-73.60960852799987,-53.300062757999946],[-73.60362708199995,-53.293226820999834],[-73.58112545499995,-53.29062265399993],[-73.53184973899997,-53.29989999799997],[-73.5078832669999,-53.300957940999844],[-73.49486243399991,-53.29062265399993],[-73.51447506399997,-53.28460051899984],[-73.55842037699992,-53.27809010199984],[-73.57799231699988,-53.270114841999884],[-73.59072831899992,-53.2577450499999],[-73.6000056629999,-53.2414690079999],[-73.59976152299994,-53.227634373],[-73.58421790299985,-53.22226327899986],[-73.59618079299987,-53.217868747999965],[-73.60594641799992,-53.211114190999844],[-73.6116430329999,-53.201348565999986],[-73.61148027299993,-53.18759530999997],[-73.62132727799985,-53.19158294099994],[-73.63548743399988,-53.20501067499985],[-73.64256751199994,-53.20794036299996],[-73.65461178299995,-53.20663827899987],[-73.65868079299992,-53.20273202899997],[-73.66055253799988,-53.196221612999885],[-73.66616777299987,-53.18759530999997],[-73.69489498599992,-53.154554945999834],[-73.71003170499992,-53.141534112999935],[-73.72883053299998,-53.13290781000002],[-73.72642981699994,-53.14251067499991],[-73.71458899599989,-53.167087497999916],[-73.74453691299993,-53.16578541499992],[-73.7611384759999,-53.15064869599992],[-73.76829993399994,-53.12916432099981],[-73.76984615799998,-53.10906340899986],[-73.77843176999991,-53.108168226999865],[-73.81981360599991,-53.11305103999984],[-73.83433997299993,-53.10906340899986],[-73.85936438699987,-53.078301690999965],[-73.8804418609999,-53.057712497999844],[-73.88410396999984,-53.05836353999989],[-73.8860570949999,-53.06487395599997],[-73.89268958199995,-53.07146575299994],[-73.91209876199986,-53.079359632999925],[-73.92308508999992,-53.08033619599981],[-73.94050045499989,-53.07887135199993],[-74.03482011599996,-53.05624765399997],[-74.05719967399989,-53.05779387799983],[-74.04735266799986,-53.06633879999985],[-74.01622473899997,-53.08513762799989],[-74.02354895699997,-53.08904387799998],[-74.03026282499991,-53.09091562299986],[-74.04662024599992,-53.09124114399988],[-74.05443274599992,-53.093519789999945],[-74.06045488199993,-53.1032854149998],[-74.06773841099994,-53.105564059999956],[-74.08629309799994,-53.104913018999824],[-74.09410559799994,-53.101983330999886],[-74.10155188699991,-53.095310153999925],[-74.11119544199988,-53.08961353999985],[-74.12100175699993,-53.09172942499987],[-74.13052324099989,-53.09661223799984],[-74.13939368399986,-53.09929778399999],[-74.16974850199995,-53.089776299999826],[-74.21963456899991,-53.047133070999976],[-74.24893144399991,-53.03728606599995],[-74.23607337099989,-53.05836353999989],[-74.23200436099992,-53.072849216999835],[-74.23985755099991,-53.08294036299989],[-74.26260331899994,-53.09124114399988],[-74.28685462099995,-53.08513762799989],[-74.29019120999996,-53.08733489399997],[-74.28966223899988,-53.09710051899983],[-74.29369055899986,-53.09929778399999],[-74.30630449099993,-53.09921640400002],[-74.31834876199986,-53.09734465899996],[-74.32738196499986,-53.09221770599986],[-74.33092200399994,-53.08196379999983],[-74.3289281889999,-53.07024504999993],[-74.32559160099987,-53.05950286299992],[-74.32494055899991,-53.04900481599986],[-74.33092200399994,-53.03728606599995],[-74.33641516799986,-53.03337981599987],[-74.3458552729999,-53.02955494599994],[-74.3548884759999,-53.03053150799992],[-74.3587947259999,-53.040704033999965],[-74.36558997299991,-53.04631926899996],[-74.3807673819999,-53.04322682099989],[-74.39712480399993,-53.03630950299989],[-74.40721594999988,-53.02988046699997],[-74.40660559799991,-53.02507903399998],[-74.40241451699988,-53.01864999799988],[-74.40221106699994,-53.011000257999854],[-74.41344153599994,-53.00318775799986],[-74.4093318349999,-52.99504973799993],[-74.40733801999994,-52.98707447699989],[-74.40721594999988,-52.96900807099987],[-74.42503821499986,-52.97380950299995],[-74.49933834499986,-52.96803150799998],[-74.50755774599986,-52.96591562299997],[-74.51707923099985,-52.96160247199988],[-74.51764889199993,-52.958754164999846],[-74.51707923099985,-52.94451262799984],[-74.51935787699992,-52.94101327899993],[-74.5247289699999,-52.94085051899997],[-74.53107662699992,-52.94158294099982],[-74.58063717399995,-52.932386976999936],[-74.59654700399997,-52.922946872999916],[-74.58486894399996,-52.89568450299984],[-74.5860896479999,-52.886976820999855],[-74.58922278599995,-52.88062916499992],[-74.59162350199992,-52.87957122199987],[-74.5876358709999,-52.871514580999836],[-74.58299719999991,-52.86484140399987],[-74.57115637899993,-52.85173919099999],[-74.58202063699991,-52.84579843499997],[-74.59219316299988,-52.83766041499987],[-74.60871334499987,-52.821384373000015],[-74.70848548099985,-52.785577080999914],[-74.73086503799986,-52.77263762799999],[-74.74986731699988,-52.75554778399996],[-74.74278723899991,-52.749200127999835],[-74.73534094999985,-52.74651458099995],[-74.72813880099991,-52.74488697699993],[-74.72191321499986,-52.74187590899984],[-74.71760006399995,-52.74089934699986],[-74.70588131399994,-52.74277109199992],[-74.70148678299996,-52.74187590899984],[-74.70091712099992,-52.739353123],[-74.70205644399992,-52.73056405999994],[-74.70148678299996,-52.728204033999894],[-74.69798743399988,-52.72519296699989],[-74.69522050699993,-52.72144947699995],[-74.69151770699989,-52.71851978999993],[-74.68512936099995,-52.71770598799991],[-74.67442786399994,-52.721286716999984]]],[[[-73.3692113919999,-52.7286109349999],[-73.38857988199993,-52.73739999799995],[-73.39981035099993,-52.728204033999894],[-73.37193762899996,-52.707696221999846],[-73.36290442599994,-52.70330169099995],[-73.33096269399994,-52.6940243469999],[-73.33096269399994,-52.70086028399982],[-73.3692113919999,-52.7286109349999]]],[[[-74.34925666099986,-52.62298078399996],[-74.36930506999991,-52.629196088999876],[-74.41940814399987,-52.609082205999826],[-74.45978758899992,-52.59008473599986],[-74.48196030499989,-52.5707651399999],[-74.49157234099991,-52.55181071599994],[-74.46654478999992,-52.53559023499999],[-74.45070993999988,-52.529277129999976],[-74.42775741499989,-52.50366163599991],[-74.41531300099987,-52.504873848999935],[-74.39419819099987,-52.51990271399988],[-74.38206474899995,-52.5431376599998],[-74.36199781699989,-52.57170642499988],[-74.35444024899994,-52.59992384299994],[-74.34925666099986,-52.62298078399996]]],[[[-69.18594316299989,-52.66773853999988],[-69.14024817599989,-52.68377044099988],[-69.08853105399996,-52.68035247199996],[-69.02025305899986,-52.65016041499986],[-68.96586479899989,-52.65093213499994],[-68.92065656299991,-52.64017525299987],[-68.8776627279999,-52.62323493599985],[-68.8358041519999,-52.60489930199994],[-68.81315844199986,-52.591282337999836],[-68.80063095399993,-52.5748916139999],[-68.79260930399997,-52.557802616999844],[-68.77902610599998,-52.54825385],[-68.76740475199998,-52.5484351539999],[-68.74596106699994,-52.556898695999934],[-68.6738988919999,-52.615411065999986],[-68.65632076699997,-52.62639739399986],[-68.62840735599994,-52.63925546699997],[-68.6276167764898,-52.63957169896503],[-68.62937211099992,-52.90720876099999],[-68.6312324629999,-53.17509938599989],[-68.6329894609999,-53.44288665799985],[-68.63474646099988,-53.71088063499996],[-68.63655513599997,-53.97877126099995],[-68.63831213399993,-54.24655853299991],[-68.64009704999992,-54.514767871999894],[-68.64188192681613,-54.78297131576286],[-68.70006262899994,-54.76783619599988],[-68.71239173099991,-54.770928643999945],[-68.7054744129999,-54.78069426899998],[-68.68374589799993,-54.788832289999824],[-68.64354407499994,-54.79810963299996],[-68.6419978509999,-54.799167576],[-68.64198759746944,-54.79917412426754],[-68.64234289599995,-54.85365325899987],[-68.65413512199987,-54.88624370799999],[-68.65413543192139,-54.88624456459053],[-68.66584225199998,-54.88640715899993],[-68.68614661399997,-54.879327080999964],[-68.73981686099995,-54.84710051899983],[-68.92857825399997,-54.778497002999906],[-68.96568762899997,-54.78443775799984],[-68.96568762899997,-54.790704033999965],[-68.88296464799993,-54.80771249799985],[-68.87010657499991,-54.82170989399999],[-68.86058508999992,-54.835056247999916],[-68.83844967399992,-54.85100676899992],[-68.8131404289999,-54.865329685],[-68.79434160099993,-54.87330494599987],[-68.74449622299997,-54.88640715899993],[-68.73786373599988,-54.89609140399998],[-68.76024329299992,-54.91122812299998],[-68.78799394399991,-54.92017994599983],[-69.06700598899992,-54.94882577899989],[-69.13011633999992,-54.94215260199993],[-69.28270423099991,-54.89910247199989],[-69.50593014199987,-54.86150481599998],[-69.56151282499991,-54.845961195999806],[-69.59251868399991,-54.829034112999814],[-69.60244706899991,-54.824883721999875],[-69.61799068899991,-54.823337498000015],[-69.63353430899991,-54.82390715899998],[-69.64830481699991,-54.82252369599983],[-69.66144771999987,-54.815036716999856],[-69.67442786399997,-54.804782809999914],[-69.67772376199991,-54.799004815999865],[-69.67882239499994,-54.78769296699997],[-69.67235266799995,-54.77800872199991],[-69.6573787099999,-54.77467213299998],[-69.64118404899995,-54.77385833099997],[-69.63044186099995,-54.770928643999945],[-69.62437903599994,-54.760837497999894],[-69.62523352799984,-54.75164153399983],[-69.62873287699995,-54.74358489399989],[-69.63044186099995,-54.73674895599987],[-69.62706458199992,-54.692071222],[-69.63914954299992,-54.69768645599991],[-69.66356360599988,-54.75351327899988],[-69.67882239499994,-54.76474374799998],[-69.69212805899988,-54.749688408999965],[-69.69774329299985,-54.699802342],[-69.71605383999992,-54.6890601539999],[-69.72130286399991,-54.69817473799998],[-69.71231035099989,-54.76474374799998],[-69.71300208199995,-54.78476327899986],[-69.71467037699993,-54.79176197699984],[-69.71979732999995,-54.79810963299996],[-69.73078365799992,-54.8031552059999],[-69.74681555899991,-54.80575937299999],[-69.76130123599995,-54.80364348799998],[-69.76756751199991,-54.7945289039999],[-69.76060950399992,-54.74928150799996],[-69.76170813699986,-54.72730885199985],[-69.77440344999994,-54.71559010199995],[-69.79084225199992,-54.72144947699991],[-69.79637610599994,-54.74179452899999],[-69.79491126199989,-54.78769296699997],[-69.80899003799993,-54.81096770599989],[-69.84215247299994,-54.82105885199995],[-69.88093014199987,-54.82219817499998],[-69.91161048099988,-54.81861744599991],[-69.93057206899988,-54.81072356599994],[-69.95067298099994,-54.79615650799992],[-69.96662350199995,-54.77841562299992],[-69.97301184799997,-54.76091887799988],[-69.97301184799997,-54.71933359199989],[-69.96979732999992,-54.709405205999985],[-69.96312415299985,-54.70191822699984],[-69.95807857999992,-54.69378020599999],[-69.9593806629999,-54.68157317499993],[-69.96955318899995,-54.676853123000015],[-69.9832250639999,-54.690199476999936],[-69.99522864499991,-54.71217213299986],[-70.00035559799994,-54.733330987999864],[-69.99771074099993,-54.75603606599999],[-69.98460852799988,-54.78687916499996],[-69.97984778599988,-54.804375908999916],[-69.97850501199989,-54.82219817499998],[-69.9822485019999,-54.831149998],[-69.99327551999997,-54.835056247999916],[-70.08006751199989,-54.84986744599989],[-70.09284420499992,-54.84905364399988],[-70.09829667899987,-54.83538176899993],[-70.09410559799994,-54.820570570999955],[-70.08678137899994,-54.80641041499985],[-70.08291581899992,-54.7945289039999],[-70.08714758999994,-54.77857838299989],[-70.09654700399997,-54.78093840899993],[-70.10594641799987,-54.794203382999875],[-70.11021887899992,-54.811211846999925],[-70.13878333199989,-54.7971330709998],[-70.14293372299994,-54.807061455999985],[-70.14439856699991,-54.827569268999945],[-70.16486568899995,-54.845961195999806],[-70.20030676999997,-54.854750257999946],[-70.23973548099994,-54.85784270599985],[-70.27790279899992,-54.853122653999925],[-70.30943762899992,-54.838555597],[-70.3266495429999,-54.81707122199988],[-70.32380123599998,-54.79753997199999],[-70.30833899599986,-54.77996184699996],[-70.27131100199992,-54.75139739399988],[-70.2385961579999,-54.714450778999925],[-70.22630774599995,-54.6950822899999],[-70.24453691299992,-54.6890601539999],[-70.25446529899992,-54.699802342],[-70.26309160099993,-54.71526458099993],[-70.27782141799992,-54.72307708099993],[-70.28937740799994,-54.72714609199989],[-70.3224177729999,-54.74651458099991],[-70.32933508999992,-54.753838799999905],[-70.3319392569999,-54.761163018999916],[-70.33824622299994,-54.76653411299988],[-70.34532630099991,-54.771254164999974],[-70.35045325399992,-54.77703215899985],[-70.35277258999989,-54.78394947699985],[-70.35464433499992,-54.79778411299985],[-70.35659745999989,-54.804375908999916],[-70.35708574099988,-54.810479424999905],[-70.35521399599992,-54.827080987999956],[-70.35659745999989,-54.83228932099986],[-70.36534583199997,-54.83521900799988],[-70.37450110599985,-54.83220794099988],[-70.38170325399997,-54.827325127999906],[-70.3845922519999,-54.824883721999875],[-70.43089758999987,-54.81243254999995],[-70.46222896999984,-54.80934010199987],[-70.50544186099995,-54.799493096999846],[-70.54320227799991,-54.78394947699985],[-70.58116614499991,-54.77898528399989],[-70.61050370999993,-54.78069426899998],[-70.61046301999994,-54.790704033999965],[-70.62706458199989,-54.801934502999885],[-70.65225175699987,-54.80820077900002],[-70.69587154899996,-54.811211846999925],[-70.71764075399994,-54.81804778399986],[-70.73680579299992,-54.831312757999974],[-70.75877844999991,-54.840590101999844],[-70.7886449859999,-54.83538176899993],[-70.82494055899991,-54.821465752999956],[-70.83409583199989,-54.81031666499994],[-70.83702551999991,-54.78769296699997],[-70.82738196499994,-54.77743905999986],[-70.80500240799991,-54.767510674999855],[-70.77969316299988,-54.76018645599984],[-70.71324622299994,-54.753838799999905],[-70.62458248599998,-54.731540622999965],[-70.54556230399996,-54.69768645599991],[-70.45287024599992,-54.63372161299982],[-70.49103756399998,-54.613864841999906],[-70.54308020699993,-54.623467705999886],[-70.63097083199989,-54.667738539999846],[-70.61904863199996,-54.67408619599996],[-70.59455318899992,-54.68279387799995],[-70.58259029899988,-54.6890601539999],[-70.60635331899991,-54.703789971999896],[-70.63817298099993,-54.717380466999856],[-70.67145748599992,-54.72673919099988],[-70.6992895169999,-54.729913018999945],[-70.71642005099991,-54.72673919099988],[-70.72915605399987,-54.72177499799993],[-70.7422989569999,-54.71917083099984],[-70.76065019399988,-54.72307708099993],[-70.77326412699995,-54.73023853999997],[-70.78575598899997,-54.73935312299996],[-70.79954993399988,-54.747002862999985],[-70.81590735599991,-54.750420830999985],[-70.8919978509999,-54.74895598799985],[-70.92723548099994,-54.738213799999926],[-70.92210852799991,-54.71257903399986],[-70.89085852799984,-54.69817473799998],[-70.80825761599996,-54.69304778399997],[-70.77432206899991,-54.68157317499993],[-70.79971269399994,-54.67376067499994],[-70.85619055899987,-54.68141041499996],[-70.88418535099989,-54.68157317499993],[-70.92638098899994,-54.670017185],[-70.94481360599988,-54.67213307099992],[-70.95995032499988,-54.6890601539999],[-70.9398494129999,-54.70208098799989],[-70.95018469999991,-54.721368096999925],[-71.0104060539999,-54.77060312299992],[-71.02757727799991,-54.77703215899985],[-71.04234778599991,-54.775567315999886],[-71.04869544199991,-54.76091887799988],[-71.04259192599994,-54.746189059999885],[-71.02830969999994,-54.73512135199985],[-71.01231848899994,-54.725762628],[-71.00088456899988,-54.71559010199995],[-70.99575761599988,-54.70012786299985],[-70.99815833199992,-54.687107028999854],[-71.00186113199995,-54.67457447699995],[-71.00088456899988,-54.661065362999885],[-70.96084550699996,-54.632012627999906],[-70.94969641799993,-54.62688567499998],[-70.94798743399994,-54.62330494599992],[-70.9515681629999,-54.61638762799992],[-70.95921790299994,-54.612237237999885],[-70.97695878799993,-54.62004973799987],[-70.98615475199989,-54.62086353999989],[-71.00401770699995,-54.62004973799987],[-71.01520748599998,-54.61549244599993],[-71.04405676999991,-54.595961195999855],[-71.06236731699997,-54.59270598799999],[-71.05597896999984,-54.60621510199988],[-71.04808508999984,-54.61744557099997],[-71.0423070949999,-54.62835051899986],[-71.04185950399992,-54.640557549999926],[-71.05003821499992,-54.65740325299993],[-71.06078040299994,-54.662204685],[-71.07233639199987,-54.659763278999975],[-71.08283443899992,-54.65488046699991],[-71.08608964799987,-54.649102471999946],[-71.08641516799989,-54.64120859199997],[-71.09007727799985,-54.63494231599984],[-71.10334225199998,-54.63372161299982],[-71.10484778599994,-54.63738372199987],[-71.14826412699998,-54.68726978999992],[-71.16266842399995,-54.69817473799998],[-71.17967688699991,-54.70256926899987],[-71.19212805899994,-54.69890715899992],[-71.21861731699991,-54.68141041499996],[-71.23363196499992,-54.67522551899999],[-71.27009029899989,-54.67742278399999],[-71.28966223899997,-54.67644622199983],[-71.30260169199997,-54.667738539999846],[-71.30370032499991,-54.65243905999997],[-71.28962154899997,-54.646905205999865],[-71.21841386599993,-54.64430103999987],[-71.20433508999992,-54.63844166499992],[-71.1926977199999,-54.62688567499998],[-71.21833248599995,-54.62175872199988],[-71.24038652299996,-54.62102629999985],[-71.2557673819999,-54.613864841999906],[-71.26292883999994,-54.580743096999875],[-71.26500403599997,-54.575127862999956],[-71.26537024599989,-54.56861744599997],[-71.26158606699994,-54.55852629999991],[-71.25479081899992,-54.54998137799989],[-71.23997962099986,-54.54029713299984],[-71.23363196499992,-54.53134531],[-71.26305091099991,-54.534356377999906],[-71.28123938699991,-54.5498999979999],[-71.29796301999994,-54.55934010199992],[-71.32306881399992,-54.545017184999935],[-71.3379613919999,-54.521579684999956],[-71.34707597599987,-54.51718515399988],[-71.36091061099995,-54.52752044099998],[-71.36217200399997,-54.53826262799999],[-71.35440019399988,-54.5498999979999],[-71.34365800699995,-54.55982838299991],[-71.33604895699992,-54.565524997999894],[-71.36131751199989,-54.56829192499995],[-71.38304602799985,-54.558851820999934],[-71.40029863199996,-54.55608489399988],[-71.41246497299994,-54.579196873000015],[-71.37193762899992,-54.587497654],[-71.3509008449999,-54.59498463299997],[-71.33604895699992,-54.606377862999935],[-71.35045325399987,-54.6134579409999],[-71.35985266799992,-54.61028411299984],[-71.36864173099987,-54.603448174999826],[-71.38109290299991,-54.59954192499991],[-71.39464270699995,-54.60393645599999],[-71.39875240799992,-54.61451588299986],[-71.39989173099985,-54.628024998],[-71.40493730399987,-54.640557549999926],[-71.41710364499997,-54.65129973799985],[-71.42271887899997,-54.6475562479999],[-71.4289444649999,-54.63876718499984],[-71.44286048099991,-54.63372161299982],[-71.45189368399991,-54.63811614399989],[-71.45836341099991,-54.64706796699992],[-71.46833248599992,-54.654554945999884],[-71.48753821499986,-54.65488046699991],[-71.47736568899992,-54.67644622199983],[-71.48786373599998,-54.687432549999876],[-71.50658118399986,-54.683526299999976],[-71.5210668609999,-54.661065362999885],[-71.52179928299992,-54.637790622999866],[-71.51402747299994,-54.62078215899999],[-71.4942927729999,-54.59270598799999],[-71.51512610599988,-54.59823984199991],[-71.53416907499988,-54.61256275799982],[-71.54723059799994,-54.632500908999894],[-71.5496313139999,-54.65488046699991],[-71.55785071499989,-54.64869557099994],[-71.56639563699991,-54.6467424459999],[-71.57494055899994,-54.64869557099994],[-71.58311926999993,-54.65488046699991],[-71.59162350199998,-54.63876718499984],[-71.5841365229999,-54.61882903399995],[-71.56932532499994,-54.599704684999885],[-71.55577551999995,-54.585870049999976],[-71.56452389199985,-54.58513762799994],[-71.5698949859999,-54.58782317499983],[-71.57502193899992,-54.59107838299988],[-71.58311926999993,-54.59270598799999],[-71.5911352199999,-54.589288018999895],[-71.59422766799989,-54.583184502999906],[-71.59776770699995,-54.58098723799991],[-71.60732988199993,-54.589288018999895],[-71.61070716099997,-54.596449476999844],[-71.60920162699992,-54.60230885199997],[-71.60846920499998,-54.608493747999944],[-71.61412512899997,-54.61663176899996],[-71.63776607999989,-54.63372161299982],[-71.64061438699993,-54.639418226999894],[-71.63951575399989,-54.644789320999855],[-71.6394750639999,-54.64999765399994],[-71.6451716789999,-54.65488046699991],[-71.65208899599989,-54.65618254999991],[-71.66112219999991,-54.65585702899988],[-71.66982988199987,-54.65398528399983],[-71.67560787699995,-54.65105559699999],[-71.68504798099985,-54.634698174999976],[-71.67992102799994,-54.621840101999865],[-71.6520076159999,-54.59954192499991],[-71.66454016799992,-54.600274346999946],[-71.68765214799996,-54.60572682099989],[-71.69981848899994,-54.606377862999935],[-71.71393795499998,-54.60361093499997],[-71.73973548099991,-54.59482187299999],[-71.75446529899988,-54.59270598799999],[-71.74046790299992,-54.61419036299993],[-71.75959225199992,-54.62281666499993],[-71.79161536399991,-54.623223565999936],[-71.81651770699992,-54.62004973799987],[-71.80736243399986,-54.63095468499986],[-71.8045141269999,-54.64039478999996],[-71.80919348899994,-54.648532809999885],[-71.8226619129999,-54.65488046699991],[-71.84972083199995,-54.6475562479999],[-71.87083899599985,-54.6471493469999],[-71.91893469999992,-54.65488046699991],[-71.94432532499985,-54.654554945999884],[-71.96190344999988,-54.6471493469999],[-71.97350012899992,-54.63323333099992],[-71.98094641799989,-54.61321379999986],[-71.96076412699995,-54.60686614399992],[-71.94399980399992,-54.60507577899985],[-71.92686926999988,-54.60735442499991],[-71.90526282499991,-54.61321379999986],[-71.91445878799996,-54.60295989399983],[-71.91893469999992,-54.59954192499991],[-71.90233313699989,-54.590590101999894],[-71.89549719999985,-54.585056247999965],[-71.89159094999985,-54.579196873000015],[-71.88975989499988,-54.5681291649998],[-71.89378821499994,-54.56698984199995],[-71.90184485599988,-54.570000908999944],[-71.91209876199991,-54.571709893999866],[-71.94664466099991,-54.570570570999834],[-71.9532771479999,-54.56487395599985],[-71.93252519399988,-54.5512020809999],[-71.94786536399994,-54.54998137799989],[-72.00145423099994,-54.571709893999866],[-72.00108801999991,-54.558282158999866],[-71.99669348899994,-54.54802825299985],[-71.9895727199999,-54.53948333099982],[-71.98094641799989,-54.53134531],[-71.99836178299995,-54.517022393999916],[-72.0067032539999,-54.51311614399983],[-72.00772050699987,-54.50530364399984],[-72.00401770699995,-54.49895598799989],[-71.99836178299995,-54.49993254999987],[-71.98639889199993,-54.50652434699985],[-71.96873938699991,-54.51051197699992],[-71.95128333199995,-54.511976820999976],[-71.94001217399995,-54.510837497999944],[-71.99006100199998,-54.47861093499991],[-72.00234941299993,-54.45907968500001],[-71.97350012899992,-54.44866301899984],[-71.94180253799993,-54.46021900799987],[-71.92145748599995,-54.46428801899983],[-71.91746985599988,-54.468438408999866],[-71.91510982999992,-54.472914320999834],[-71.91209876199991,-54.47600676899991],[-71.88536536399991,-54.48284270599983],[-71.8658341139999,-54.50139739399993],[-71.85968990799995,-54.51279062299999],[-71.85741126199989,-54.52752044099998],[-71.84976152299993,-54.538181248],[-71.83185787699998,-54.54241301899994],[-71.79600989499997,-54.545017184999935],[-71.70592200399992,-54.56894296699999],[-71.67186438699991,-54.571709893999866],[-71.6830948559999,-54.56373463299982],[-71.70628821499994,-54.554864190999865],[-71.71686764199988,-54.54802825299985],[-71.74030514199987,-54.518324476999915],[-71.74819902299993,-54.510837497999944],[-71.71068274599992,-54.51051197699992],[-71.63170325399992,-54.54680754999983],[-71.58311926999993,-54.545017184999935],[-71.6576228509999,-54.513604425],[-71.69127356699991,-54.491387627999856],[-71.69359290299988,-54.46933359199995],[-71.71666419199994,-54.46266041499981],[-71.73778235599985,-54.465508721999846],[-71.75885982999998,-54.471937757999946],[-71.78172766799989,-54.47600676899991],[-71.83067786399994,-54.46900807099993],[-71.84068762899994,-54.46591562299985],[-71.85065670499992,-54.45452239399997],[-71.85285396999993,-54.445977471999946],[-71.8464249339999,-54.44109465899998],[-71.83014889199987,-54.44133879999984],[-71.83275305899988,-54.43222421699984],[-71.83698482999989,-54.42498137799983],[-71.84288489499994,-54.41912200299987],[-71.85065670499992,-54.414646092],[-71.81387285099993,-54.41619231599986],[-71.80284583199989,-54.414646092],[-71.79869544199994,-54.410414320999884],[-71.79426021999988,-54.40325286299994],[-71.7864477199999,-54.396579684999885],[-71.7720841139999,-54.393487237999906],[-71.74913489499991,-54.39714934699995],[-71.7250056629999,-54.405450127999934],[-71.71519934799997,-54.414808851999965],[-71.7345271479999,-54.421482028999925],[-71.7345271479999,-54.4276669249999],[-71.68919837099988,-54.44019947699981],[-71.61485755099991,-54.50139739399993],[-71.56322180899986,-54.510837497999944],[-71.56248938699991,-54.49179452899986],[-71.49522864499988,-54.493747653999904],[-71.4942927729999,-54.47600676899991],[-71.5167130199999,-54.46502044099986],[-71.57966061099995,-54.46209075299993],[-71.60415605399987,-54.44866301899984],[-71.60912024599992,-54.44215260199985],[-71.6148982409999,-54.43189869599982],[-71.6178279289999,-54.420668226999915],[-71.61412512899997,-54.41090260199988],[-71.59825598899994,-54.40105559699986],[-71.58731035099986,-54.405368747999944],[-71.56944739499991,-54.4276669249999],[-71.55915279899989,-54.43515390399987],[-71.54417883999984,-54.44345468499985],[-71.52892005099987,-54.448337498],[-71.51793372299994,-54.44500090899989],[-71.51402747299994,-54.433770440999886],[-71.51797441299993,-54.422539971999974],[-71.52627519399991,-54.41326262799993],[-71.5353083979999,-54.40715911299985],[-71.52000891799995,-54.40960051899988],[-71.49657141799989,-54.424086195999834],[-71.45958411399994,-54.43515390399987],[-71.45201575399989,-54.435316664999924],[-71.43488521999987,-54.433770440999886],[-71.41722571499994,-54.43596770599988],[-71.41055253799988,-54.43523528399985],[-71.40640214799993,-54.436944268999945],[-71.40493730399987,-54.44500090899989],[-71.40269934799991,-54.45281340899988],[-71.39696204299992,-54.457207940999865],[-71.38927161399991,-54.45728932099985],[-71.36701412699995,-54.444431247999916],[-71.33584550699987,-54.43857187299996],[-71.32306881399992,-54.4276669249999],[-71.34487870999988,-54.417657159],[-71.40599524599995,-54.41301848799998],[-71.4329320949999,-54.40097421699988],[-71.42345130099989,-54.39861419099983],[-71.41539466099997,-54.394219658999845],[-71.40908769399991,-54.3878720029999],[-71.40493730399987,-54.37981536299996],[-71.39146887899989,-54.385918877999856],[-71.38312740799992,-54.38274504999998],[-71.37559973899997,-54.376397393999866],[-71.36461341099991,-54.37297942499995],[-71.35212154899992,-54.37517669099985],[-71.33141028599991,-54.38445403399999],[-71.30064856699991,-54.39023202899995],[-71.18927975199989,-54.4284807269999],[-71.16730709499987,-54.44133879999984],[-71.14989173099991,-54.476983330999886],[-71.13084876199991,-54.49146900799984],[-71.0902400379999,-54.510837497999944],[-71.13955644399991,-54.45134856599991],[-71.14488684799997,-54.43515390399987],[-71.12515214799993,-54.43352629999984],[-71.01085364499988,-54.44866301899984],[-70.97240149599989,-54.46900807099993],[-70.96617591099991,-54.46591562299985],[-70.96617591099991,-54.440524998],[-70.96153723899991,-54.43124765399996],[-70.94969641799993,-54.4276669249999],[-70.93415279899992,-54.415948175],[-70.93639075399992,-54.38909270599992],[-70.95250403599988,-54.338799737999956],[-70.92931067599994,-54.34417083099983],[-70.90672766799989,-54.33603281],[-70.88394120999996,-54.3239885399998],[-70.8603409499999,-54.31780364399983],[-70.80064856699994,-54.31585051899996],[-70.7713923819999,-54.31951262799983],[-70.74767005099989,-54.33147551899995],[-70.7455134759999,-54.345310153999854],[-70.72484290299988,-54.3468563779999],[-70.68561764199987,-54.338799737999956],[-70.68211829299986,-54.33652109199989],[-70.67568925699993,-54.32773202900001],[-70.67194576699993,-54.32529062299998],[-70.66466223899991,-54.32496510199996],[-70.65412350199995,-54.3300106749999],[-70.64834550699986,-54.33147551899995],[-70.62804114499997,-54.33245208099993],[-70.61921139199991,-54.334730726999815],[-70.61046301999994,-54.338799737999956],[-70.70262610599991,-54.41806406],[-70.70775305899991,-54.420668226999915],[-70.72345943899998,-54.425713799999855],[-70.72716223899994,-54.4276669249999],[-70.72838294199994,-54.43482838299984],[-70.72557532499991,-54.43889739399998],[-70.72166907499991,-54.44182708099983],[-70.71971594999985,-54.44500090899989],[-70.71703040299988,-54.45859140399985],[-70.7125544909999,-54.46933359199995],[-70.71157792899992,-54.48072682099983],[-70.71971594999985,-54.49651458099996],[-70.77407792899987,-54.54412200299994],[-70.78180904899989,-54.56194426899983],[-70.78066972599996,-54.57154713299981],[-70.77745520699989,-54.58407968499989],[-70.77196204299986,-54.594903252999984],[-70.76439368399991,-54.59954192499991],[-70.75739498599992,-54.59335702899995],[-70.74815833199997,-54.56267669099985],[-70.74022376199991,-54.5512020809999],[-70.70514889199991,-54.581475518999895],[-70.68423417899987,-54.59433359200001],[-70.64146887899997,-54.60279713299996],[-70.63402258999989,-54.600274346999946],[-70.64150956899996,-54.589288018999895],[-70.65062415299985,-54.58212655999986],[-70.67878170499992,-54.565524997999894],[-70.70116126199986,-54.53346119599991],[-70.69692949099993,-54.49480559699995],[-70.67690995999996,-54.45712655999997],[-70.65143795499995,-54.4276669249999],[-70.6348363919999,-54.41423919099999],[-70.61046301999994,-54.399021092],[-70.58519446499989,-54.39055754999997],[-70.56582597599987,-54.397230726999936],[-70.56383216099994,-54.40203215899984],[-70.56212317599991,-54.412692966999956],[-70.5592341789999,-54.414646092],[-70.55500240799998,-54.415785414999846],[-70.54234778599991,-54.421970309999914],[-70.52887936099992,-54.43075937299997],[-70.49445553299998,-54.44133879999984],[-70.45889238199993,-54.46770598799993],[-70.43976803299995,-54.47844817499993],[-70.39574133999994,-54.486586195999955],[-70.34626217399997,-54.50693124799986],[-70.32933508999992,-54.517022393999916],[-70.28062903599997,-54.56170012799997],[-70.2494197259999,-54.575372002999906],[-70.23314368399986,-54.5512020809999],[-70.2571508449999,-54.54265715899989],[-70.27599036399994,-54.53240325299986],[-70.29059811099994,-54.517998955999886],[-70.30199133999992,-54.49651458099996],[-70.2601619129999,-54.50497812299999],[-70.17577063699994,-54.540459893999895],[-70.13072669199997,-54.545017184999935],[-70.15355383999989,-54.52996184699983],[-70.20872962099992,-54.512302342],[-70.25251217399997,-54.48609791499997],[-70.42764238199996,-54.43767669099997],[-70.44937089799993,-54.42449309699983],[-70.45567786399997,-54.41627369599984],[-70.45840410099993,-54.406996351999965],[-70.45909583199997,-54.38323333099997],[-70.50177975199989,-54.36712005],[-70.51366126199994,-54.359307549999826],[-70.49811764199984,-54.34099700299995],[-70.51032467399992,-54.3208960919999],[-70.55247962099986,-54.28736744599987],[-70.57770748599992,-54.27483489399996],[-70.6580297519999,-54.26409270599986],[-70.80719967399992,-54.2694638],[-70.84325110599988,-54.26311614399988],[-70.8685603509999,-54.246189059999985],[-70.88044186099994,-54.222426039999895],[-70.88752193899992,-54.198907158999845],[-70.8985082669999,-54.18181731599989],[-70.89167232999995,-54.174411716999906],[-70.87669837099992,-54.18206145599984],[-70.85826575399989,-54.188409112999864],[-70.8227432929999,-54.19548919099984],[-70.86929277299993,-54.165297132999825],[-70.88792883999992,-54.161309502999934],[-70.90290279899993,-54.15585702899999],[-70.91734778599991,-54.14267343499986],[-70.92821204299992,-54.12672291499994],[-70.93268795499998,-54.113539320999806],[-70.54043535099996,-54.2565243469999],[-70.42463131399995,-54.29306405999994],[-70.32249915299988,-54.32529062299998],[-70.3102921209999,-54.33310312299997],[-70.29991614499991,-54.34205494599982],[-70.28880774599989,-54.34937916499982],[-70.24596106699991,-54.35719166499982],[-70.22679602799992,-54.369235935],[-70.19212805899986,-54.40097421699988],[-70.1504613919999,-54.423923434999956],[-70.13687089799991,-54.4276669249999],[-70.14464270699995,-54.39137135199981],[-70.13573157499991,-54.388360283999894],[-70.08604895699992,-54.38323333099997],[-70.07290605399993,-54.37761809699988],[-70.07481848899991,-54.36980559699988],[-70.09593665299991,-54.359307549999826],[-70.16576087099986,-54.34929778399992],[-70.18529212099995,-54.338799737999956],[-70.19904537699995,-54.320570570999884],[-70.19286048099988,-54.31161874799986],[-70.1585994129999,-54.30478281000002],[-70.13988196499994,-54.29664478999992],[-70.13296464799996,-54.28736744599987],[-70.12677975199998,-54.27629973799983],[-70.11021887899992,-54.26311614399988],[-70.09019934799994,-54.25318775799997],[-70.07298743399991,-54.248793226999894],[-70.05549068899998,-54.250176690999965],[-70.03449459499984,-54.25693124799991],[-70.0000707669999,-54.27239348799993],[-69.9832250639999,-54.28386809699997],[-69.97301184799997,-54.29729583099987],[-69.97297115799998,-54.314711195999934],[-69.97695878799993,-54.3317196589999],[-69.97394771999984,-54.345310153999854],[-69.9525447259999,-54.352634372999866],[-69.9668676419999,-54.37981536299996],[-69.93858801999994,-54.373223565999986],[-69.92467200399994,-54.37379322699995],[-69.91161048099988,-54.37981536299996],[-69.90672766799992,-54.39006926899999],[-69.90758216099991,-54.401462497999866],[-69.90428626199989,-54.410739841999906],[-69.88707434799994,-54.414646092],[-69.87486731699997,-54.42099374799994],[-69.87059485599988,-54.43515390399987],[-69.87287350199995,-54.44931405999998],[-69.88023841099994,-54.455661717],[-69.88402258999986,-54.46087004999991],[-69.88365637899993,-54.50335051899997],[-69.87425696499992,-54.49960702899985],[-69.85798092399996,-54.48593515399991],[-69.85317949099989,-54.48284270599983],[-69.8487849599999,-54.481622003],[-69.83604895699995,-54.475355726999865],[-69.82485917899996,-54.46835702899988],[-69.81826738199986,-54.4699846329999],[-69.81187903599994,-54.47389088299981],[-69.78522701699993,-54.484144789999924],[-69.78477942599991,-54.502862237999985],[-69.79369055899986,-54.52353281],[-69.80174719999991,-54.537530205999964],[-69.79027258999986,-54.54094817499988],[-69.77538001199991,-54.554864190999865],[-69.76756751199991,-54.554864190999865],[-69.75747636599992,-54.54851653399983],[-69.75413977799991,-54.54290129999992],[-69.75666256399992,-54.53639088299993],[-69.76423092399997,-54.52752044099998],[-69.76378333199997,-54.519707940999986],[-69.74571692599997,-54.49871184699986],[-69.74030514199993,-54.48967864399985],[-69.74132239499988,-54.47795989399995],[-69.74681555899991,-54.46851978999994],[-69.76081295499998,-54.455661717],[-69.77912350199992,-54.44345468499985],[-69.79930579299986,-54.433200779],[-69.81554114499991,-54.4211565079999],[-69.82217363199987,-54.404066664999945],[-69.80801347599996,-54.384372654],[-69.80988521999993,-54.38152434699996],[-69.8137914699999,-54.37957122199992],[-69.82119706899991,-54.36858489399987],[-69.84430904899995,-54.36003997199985],[-69.84951738199993,-54.34921640399995],[-69.84894771999987,-54.33766041499992],[-69.85094153599991,-54.33294036299982],[-69.85700436099992,-54.32529062299998],[-69.86823482999992,-54.31804778399996],[-69.87779700399989,-54.31682708099994],[-69.88194739499994,-54.31267669099991],[-69.87682044199991,-54.29729583099987],[-69.85912024599992,-54.28036874799989],[-69.83511308499988,-54.279961846999875],[-69.77647864499994,-54.292738539999824],[-69.74714107999992,-54.30478281000002],[-69.69188391799992,-54.31780364399983],[-69.65241451699987,-54.34099700299995],[-69.63805091099988,-54.35588958099991],[-69.64342200399994,-54.36679452899997],[-69.63719641799989,-54.376071872999844],[-69.62926184799991,-54.38209400799994],[-69.60993404899989,-54.393487237999906],[-69.60545813699991,-54.39544036299995],[-69.59434973899991,-54.39812590899993],[-69.58877519399988,-54.40097421699988],[-69.58413652299996,-54.40691497199999],[-69.58202063699994,-54.419040622999894],[-69.57860266799995,-54.42449309699983],[-69.55858313699989,-54.436455987999956],[-69.53600012899989,-54.44207122199987],[-69.52204342399992,-54.436455987999956],[-69.52798417899996,-54.414646092],[-69.55874589799993,-54.38892994599995],[-69.5708715489999,-54.3728166649998],[-69.56525631399992,-54.356052341999956],[-69.54360917899993,-54.34124114399999],[-69.52293860599991,-54.33749765399987],[-69.50047766799992,-54.342217705999964],[-69.28783118399994,-54.4276669249999],[-69.24958248599998,-54.436455987999956],[-69.23997962099992,-54.44133879999984],[-69.23412024599986,-54.449639581],[-69.22785396999988,-54.463799737999835],[-69.22667395699997,-54.476983330999886],[-69.23631751199986,-54.48284270599983],[-69.25914466099997,-54.48853932099981],[-69.27627519399991,-54.50188567499992],[-69.2914119129999,-54.51783619599993],[-69.3082576159999,-54.53134531],[-69.34496008999992,-54.545017184999935],[-69.35606848899994,-54.5512020809999],[-69.36522376199991,-54.560479424999954],[-69.37364661399997,-54.579359632999974],[-69.38027910099993,-54.589288018999895],[-69.41746985599994,-54.62330494599992],[-69.39020748599992,-54.64739348799994],[-69.39622962099995,-54.65862395599994],[-69.39509029899992,-54.668226820999834],[-69.38817298099991,-54.67603932099982],[-69.37718665299984,-54.68157317499993],[-69.36823482999992,-54.663181247999894],[-69.37254798099991,-54.63811614399989],[-69.37303626199991,-54.61589934699993],[-69.35265051999994,-54.606377862999935],[-69.33165442599989,-54.599704684999885],[-69.3164770169999,-54.583428643999945],[-69.30321204299989,-54.56340911299988],[-69.28783118399994,-54.545017184999935],[-69.26943925699989,-54.53240325299986],[-69.24754798099985,-54.525485934999864],[-69.22443600199989,-54.5272763],[-69.20213782499988,-54.54119231599992],[-69.18163001199991,-54.5728492169999],[-69.1699112619999,-54.57822030999995],[-69.15746008999992,-54.55852629999991],[-69.1600642569999,-54.54216887799989],[-69.17516028599991,-54.48772551899999],[-69.17487545499996,-54.47600676899991],[-69.16966712099989,-54.47177499799997],[-69.16437740799988,-54.46249765399993],[-69.15746008999992,-54.45305754999992],[-69.14753170499989,-54.44866301899984],[-69.09813391799992,-54.44719817499997],[-69.08234615799998,-54.44866301899984],[-69.0701798169999,-54.45289478999995],[-69.04076087099992,-54.46933359199995],[-69.0096736319999,-54.47144947699995],[-68.99494381399992,-54.468438408999866],[-68.99640865799996,-54.45907968500001],[-68.9967341789999,-54.45094166499991],[-68.99168860599988,-54.440524998],[-68.98900305899988,-54.43141041499984],[-69.04076087099992,-54.40715911299985],[-69.0913793609999,-54.39137135199981],[-69.17174231699991,-54.38241952899996],[-69.19399980399993,-54.37184010199991],[-69.23253333199992,-54.34579843499985],[-69.27961178299992,-54.32154713299986],[-69.50690670499992,-54.260023695999806],[-69.53111731699994,-54.25693124799991],[-69.53872636599996,-54.25359465899997],[-69.55772864499997,-54.237481378],[-69.56851152299986,-54.22478606599994],[-69.58495032499988,-54.222426039999895],[-69.61681067599989,-54.22226327900002],[-69.88365637899993,-54.161309502999934],[-69.9123429029999,-54.14283619599991],[-69.92121334499987,-54.14031340899998],[-69.92585201699987,-54.13762786299983],[-69.9732152989999,-54.11874765399989],[-70.01402747299997,-54.113539320999806],[-70.05675208199997,-54.08700937299993],[-70.07359778599988,-54.05234140399986],[-70.08299719999991,-54.01230234199991],[-70.10338294199988,-53.96949635199984],[-70.12092037699992,-53.95086028399993],[-70.13621985599988,-53.93767669099989],[-70.14708411399988,-53.92229583099986],[-70.15591386599993,-53.873711846999896],[-70.17821204299989,-53.833428643999916],[-70.18529212099995,-53.811293226999936],[-70.17516028599988,-53.760511976999894],[-70.13695227799991,-53.738702080999936],[-70.0587199979999,-53.71212225799993],[-69.98036359399993,-53.6875849339999],[-69.92546440299986,-53.67885725299995],[-69.9157767239999,-53.66147519299989],[-69.87927704499987,-53.657886030999926],[-69.80676495999992,-53.66548269799991],[-69.65143988,-53.63623052499995],[-69.36084245099995,-53.52167450899983],[-69.32400882099995,-53.49227775599981],[-69.31861272699987,-53.450522830999915],[-69.32917216199985,-53.415372731999916],[-69.33315899599995,-53.38975997399991],[-69.35090084499984,-53.36321379999993],[-69.35265051999994,-53.35572682099996],[-69.39783447899994,-53.35420459999987],[-69.46330742799992,-53.35635950299991],[-69.67547349699987,-53.35835772499986],[-69.80497038399994,-53.38243556399997],[-69.89782239599992,-53.38664375099991],[-69.95029330899987,-53.39943047899989],[-69.98708747299992,-53.41785603799987],[-70.02160166299987,-53.43632606099997],[-70.05870520699992,-53.427015882999875],[-70.11644446499989,-53.434502862999935],[-70.13902747299993,-53.441664320999884],[-70.17955481699997,-53.463962498],[-70.2027074859999,-53.468682549999926],[-70.23094641799989,-53.46689218499984],[-70.25670325399992,-53.4610328099999],[-70.28018144399988,-53.45037200299987],[-70.30199133999992,-53.434502862999935],[-70.3285212879999,-53.404066664999974],[-70.34471594999994,-53.39177825299983],[-70.36717688699994,-53.38681405999988],[-70.39342200399997,-53.38372161299989],[-70.4195857409999,-53.37558359199988],[-70.44253495999989,-53.362481377999906],[-70.45909583199997,-53.345147393999916],[-70.46678626199989,-53.32952239399993],[-70.47354081899994,-53.30925872199983],[-70.46176415499994,-53.27214471099988],[-70.46259107399987,-53.22065406099994],[-70.45288245599994,-53.19457802299996],[-70.44719196999995,-53.18155585999995],[-70.43477675199998,-53.16864182299983],[-70.43395107199987,-53.151513879999925],[-70.43620465899988,-53.1282947979999],[-70.4401907259999,-53.106061168999965],[-70.43181700599985,-53.07093407799992],[-70.43226689799985,-53.044735618999844],[-70.42640421699991,-53.026713603999866],[-70.41899261099988,-53.011716395999954],[-70.3949004029999,-52.99800780499999],[-70.36241057599992,-52.983420429999974],[-70.34004007499993,-52.96967890899995],[-70.32811286599994,-52.96483221399995],[-70.31486503799991,-52.96804770099999],[-70.31371387399989,-52.98014655599981],[-70.32933975299994,-52.992998597999865],[-70.34292558499996,-53.006280205999936],[-70.33039266399993,-53.01714213799999],[-70.3157150209999,-53.026427546999905],[-70.31804379699994,-53.04149197699987],[-70.33523874899987,-53.051295798999966],[-70.32394519999988,-53.0615357689999],[-70.29696323599993,-53.05791917999989],[-70.24345211099995,-53.06172485899991],[-70.18349535799987,-53.02938145399998],[-70.13422928499993,-53.01195062199997],[-70.11633664399992,-52.981020916999945],[-70.1089800559999,-52.96301811499986],[-70.0980909689999,-52.94617644400002],[-70.08917481599991,-52.91106302299986],[-70.11042232999995,-52.887790622999866],[-70.13072669199997,-52.87957122199987],[-70.13817298099994,-52.87916432099986],[-70.14378821499994,-52.88152434699991],[-70.14899654899995,-52.88445403399993],[-70.15489661399997,-52.885918877999984],[-70.16193600199995,-52.884047132999925],[-70.1725154289999,-52.87558359199998],[-70.17788652299994,-52.87273528399985],[-70.20482337099992,-52.86630624799993],[-70.21939042899993,-52.8651669249999],[-70.22964433499988,-52.86907317499998],[-70.24449622299994,-52.87916432099986],[-70.26324142699988,-52.89336495799986],[-70.27546759299995,-52.90626291699989],[-70.30089064099988,-52.914930228],[-70.30365799899988,-52.90180310899983],[-70.28618728399995,-52.882948795],[-70.25720176399994,-52.86829617599991],[-70.26713081799991,-52.825869445999935],[-70.28265985499986,-52.79844867699999],[-70.3358455069999,-52.777032158999894],[-70.41551673099985,-52.77874114399999],[-70.42552649599995,-52.77662525799988],[-70.42589270699995,-52.766371351999865],[-70.41612708199992,-52.758070570999884],[-70.3687652209999,-52.745688931999936],[-70.27472896999984,-52.73560963299988],[-70.19865473099986,-52.73729588599987],[-70.16012232199998,-52.729804912999924],[-70.12861520899986,-52.73228248199984],[-70.11456260099996,-52.756648024999954],[-70.04666151899997,-52.810941099999866],[-70.00113300999996,-52.841733788999925],[-69.94976229799991,-52.84943707599985],[-69.91139976299985,-52.84790427399986],[-69.85321566599987,-52.79929942399995],[-69.82440308099987,-52.78252016399985],[-69.78434885599992,-52.77794612599993],[-69.73435108499987,-52.77445919099999],[-69.71398750899992,-52.76058094099994],[-69.70030782599989,-52.747632343999975],[-69.69155853199989,-52.73261308399983],[-69.67281922199989,-52.716685534999954],[-69.64038189699994,-52.68577291799992],[-69.61829704799995,-52.667845284],[-69.60465315299993,-52.654863512999974],[-69.59101107499987,-52.64187341099986],[-69.60142981699994,-52.61565520599993],[-69.60724850199992,-52.596937757999875],[-69.61790930899994,-52.57968515399987],[-69.62360592399992,-52.56031666499985],[-69.61815344999988,-52.53753020599982],[-69.60387122299987,-52.52117278399999],[-69.5838923819999,-52.50986093499992],[-69.5069473949999,-52.48853932099986],[-69.47130286399997,-52.47087981599985],[-69.45225989499997,-52.4650204409999],[-69.44054114499987,-52.45891692499991],[-69.42955481699994,-52.45484791499986],[-69.41756511599989,-52.4514724159999],[-69.39631580099987,-52.45574519899984],[-69.37415891799989,-52.47028987199989],[-69.34456476099987,-52.506105194999854],[-69.32806608899992,-52.524702660999935],[-69.31824114399984,-52.539829373999815],[-69.29730102399992,-52.5632446199999],[-69.2762235539999,-52.57981622899997],[-69.22594153599994,-52.63925546699997],[-69.18594316299989,-52.66773853999988]]],[[[-73.72516842399992,-52.40471770599994],[-73.70702063699991,-52.44011809699987],[-73.67788652299987,-52.47332122199988],[-73.67699133999989,-52.48512135199994],[-73.68883216099994,-52.500909112999985],[-73.69566809799994,-52.507582289999945],[-73.71442623599991,-52.51246510199983],[-73.72423255099994,-52.51783619599997],[-73.73192298099984,-52.52532317499994],[-73.73965410099987,-52.54550546699988],[-73.75096594999985,-52.55006275799992],[-73.77940833199997,-52.55006275799992],[-73.78734290299994,-52.55429452899984],[-73.78172766799995,-52.56373463299986],[-73.76984615799998,-52.57317473799996],[-73.75890051999991,-52.577325128],[-73.7368871739999,-52.59286874799999],[-73.7485245429999,-52.62786223799991],[-73.77481035099993,-52.66513437299998],[-73.79649817599991,-52.68718840899989],[-73.80703691299986,-52.692966403999854],[-73.83739173099985,-52.70086028399982],[-73.85789954299992,-52.70086028399982],[-73.85781816299993,-52.70273202899989],[-73.86237545499996,-52.707289320999834],[-73.87218176999991,-52.715101820999834],[-73.87804114499994,-52.715427341999856],[-73.88670813699994,-52.708672784],[-73.89268958199995,-52.707696221999846],[-73.89793860599994,-52.710625908999866],[-73.90184485599994,-52.715427341999856],[-73.90632076699988,-52.71982187299993],[-73.91319739499991,-52.72136809699996],[-73.9361466139999,-52.7203915339999],[-73.94579016799986,-52.716729424999855],[-73.9547419909999,-52.707696221999846],[-73.95140540299987,-52.688164971999946],[-73.93980872299994,-52.67603932099987],[-73.90977942599991,-52.65642669099999],[-73.86412512899997,-52.611586195999884],[-73.84487870999992,-52.59783294099996],[-73.87633216099994,-52.60995859199986],[-73.95897376199991,-52.656182549999954],[-73.98204505099997,-52.653008721999896],[-73.98216712099995,-52.63250090899994],[-73.96694902299987,-52.616469007999946],[-73.88418535099991,-52.56511809699993],[-73.87218176999991,-52.55006275799992],[-73.9093318349999,-52.560153903999975],[-73.99400091999985,-52.61187774299994],[-74.03817026199994,-52.656688717],[-74.12341927399993,-52.706616519999855],[-74.1433184709999,-52.70697442699989],[-74.14696519299991,-52.696616521999886],[-74.1358947839999,-52.68621043499997],[-74.12778058899991,-52.66591508599982],[-74.1815485839999,-52.64794902499985],[-74.18954017099989,-52.61697404599999],[-74.18436800099994,-52.58680072399993],[-74.14383421699992,-52.57453332500002],[-74.09808427699988,-52.57086345499995],[-74.04971269399991,-52.56373463299986],[-74.01842200399994,-52.53777434699987],[-73.97705546499986,-52.49833247599987],[-73.94399946399994,-52.48278773399995],[-73.94811926399983,-52.470025142],[-73.98709026099988,-52.46678611599989],[-74.0342098239999,-52.475987113999835],[-74.04225415499991,-52.45119044299993],[-74.02972872799995,-52.42991772699983],[-73.97574775599995,-52.426855086999915],[-73.93773642799991,-52.42485124099985],[-73.89488456799992,-52.408141363999896],[-73.85517595499988,-52.41965822399997],[-73.82030188699991,-52.42424895599984],[-73.78966223899991,-52.4278296849999],[-73.7745662099999,-52.4079729149999],[-73.74909420499988,-52.39983489399989],[-73.72516842399992,-52.40471770599994]]],[[[-74.46188344799987,-52.43759345799997],[-74.48223251399992,-52.44165825799985],[-74.50870107899988,-52.425849980999885],[-74.53776972999991,-52.40432651099982],[-74.53644852799994,-52.36873619699991],[-74.5287212289999,-52.32957785599992],[-74.5082056689999,-52.30396777799995],[-74.47636839899985,-52.30966691599988],[-74.48401238299994,-52.328167209999904],[-74.4690641849999,-52.353010645999866],[-74.48785232999995,-52.37681214599994],[-74.48888678299991,-52.38990657],[-74.45232240799986,-52.39478346399991],[-74.46149547099992,-52.41324099699987],[-74.46188344799987,-52.43759345799997]]],[[[-74.83214270699995,-52.21754322699996],[-74.81517493399988,-52.23658619599987],[-74.79344641799987,-52.231377862999956],[-74.75951087099986,-52.21428801899992],[-74.68407141799992,-52.21428801899992],[-74.67454993399991,-52.21054452899998],[-74.6456599599999,-52.20452239399988],[-74.62067623599998,-52.20427825299985],[-74.58928500599987,-52.21289965299998],[-74.57771854199987,-52.235117416999934],[-74.54442183999993,-52.246159275999865],[-74.53609616999992,-52.27190454699993],[-74.54194958399992,-52.289019266999894],[-74.56042936599992,-52.31484789999992],[-74.56815757499987,-52.33645354199985],[-74.5735905569999,-52.36632019499985],[-74.59383867099987,-52.394820257999925],[-74.67256560099986,-52.39054882199982],[-74.70352141199993,-52.38592848999981],[-74.7019195449999,-52.349563286999825],[-74.7132776819999,-52.34282817299998],[-74.74451902799987,-52.34182505099994],[-74.75548191399992,-52.36514557599992],[-74.78408487399992,-52.36786199299988],[-74.81541341399989,-52.35044694999984],[-74.82039556599992,-52.32205468199989],[-74.80072239799992,-52.30175502399983],[-74.80666038899997,-52.284244089999945],[-74.87669837099992,-52.25530364399993],[-74.90632076699987,-52.23479583099997],[-74.91340084499984,-52.21949635199983],[-74.91161048099984,-52.20281340899997],[-74.90029863199987,-52.190036716999934],[-74.8789770169999,-52.18694426899986],[-74.86668860599985,-52.19280364399999],[-74.83214270699995,-52.21754322699996]]],[[[-74.01622473899997,-52.15960051899997],[-74.0100805329999,-52.16057708099995],[-73.99559485599994,-52.15862395599991],[-73.98957271999984,-52.15960051899997],[-73.98424231699995,-52.16448333099986],[-73.97520911399995,-52.176934502999956],[-73.97154700399992,-52.17945728999989],[-73.96288001199991,-52.18279387799991],[-73.9573461579999,-52.190036716999934],[-73.95030676999991,-52.19736093499985],[-73.92686926999993,-52.203383070999855],[-73.89268958199995,-52.221774997999894],[-73.81533769399996,-52.24114348799982],[-73.80333411399994,-52.252129815999865],[-73.79906165299991,-52.258070570999806],[-73.78966223899991,-52.26539478999981],[-73.78026282499988,-52.274834893999824],[-73.77599036399997,-52.2865536439999],[-73.78014075399992,-52.29851653399993],[-73.79605058499993,-52.31902434699989],[-73.79649817599991,-52.33163827899996],[-73.7814021479999,-52.34197356599988],[-73.7593888009999,-52.34807708099996],[-73.74933834499984,-52.35767994599985],[-73.76984615799998,-52.37932708099993],[-73.78636633999986,-52.38795338299993],[-73.80711829299986,-52.39324309699991],[-73.82868404899997,-52.39364999799991],[-73.84776770699995,-52.387790622999965],[-73.87267005099987,-52.37615325299987],[-73.8821508449999,-52.36956145599989],[-73.88589433499993,-52.36199309699994],[-73.87751217399996,-52.35637786299985],[-73.82445227799984,-52.34465911299995],[-73.82445227799984,-52.33847421699998],[-73.83844967399992,-52.33611419099993],[-73.84618079299992,-52.33033619599996],[-73.8514705069999,-52.32341887799996],[-73.85789954299992,-52.31796640400002],[-73.90392005099994,-52.30738697699997],[-73.91690019399994,-52.300225518999845],[-73.93496660099987,-52.28394947699981],[-73.9426977199999,-52.27890390399987],[-73.96666419199994,-52.26816171699986],[-73.99107825399989,-52.26116301899988],[-74.00255286399992,-52.25579192499991],[-74.0207413399999,-52.23951588299989],[-74.05370032499991,-52.20134856599983],[-74.09288489499991,-52.185235283999944],[-74.09276282499985,-52.16659921699995],[-74.07917232999989,-52.14771900799984],[-74.05719967399989,-52.13909270599983],[-74.04222571499984,-52.14128997199992],[-74.03278561099992,-52.14666106599988],[-74.02529863199987,-52.153415623],[-74.01622473899997,-52.15960051899997]]],[[[-74.23668372299994,-52.109470309999885],[-74.11913001199986,-52.181817315999936],[-74.08291581899994,-52.21200937299986],[-74.04181881399995,-52.235039971999825],[-74.0230199859999,-52.24830494599995],[-73.99571692599991,-52.27629973799987],[-73.95103919199994,-52.30706145599994],[-73.9356990229999,-52.32488372199983],[-73.93968665299988,-52.33196379999998],[-73.98204505099997,-52.33163827899996],[-73.96776282499987,-52.34465911299995],[-73.99034583199993,-52.34872812299999],[-74.01919511599988,-52.34465911299995],[-74.03941809799991,-52.34417083099987],[-74.03604081899988,-52.35816822699984],[-74.05797278599991,-52.37460702900001],[-74.09040279899989,-52.39055754999984],[-74.12254798099985,-52.39771900799997],[-74.14411373599995,-52.38827890399995],[-74.16576087099986,-52.37615325299987],[-74.18732662699998,-52.3673641909999],[-74.19810950399997,-52.35295989399993],[-74.18748938699994,-52.3241513],[-74.22565670499989,-52.32642994599988],[-74.23595130099991,-52.3241513],[-74.24535071499994,-52.31658294099985],[-74.24567623599995,-52.31015390399984],[-74.23839270699993,-52.30543385199992],[-74.22508704299992,-52.30364348799994],[-74.21556555899994,-52.301202081],[-74.20531165299991,-52.295342705999865],[-74.19709225199992,-52.28769296699993],[-74.19371497299989,-52.28004322699991],[-74.23595130099991,-52.24830494599995],[-74.2071020169999,-52.22633228999984],[-74.1707657539999,-52.23381926899999],[-74.13426673099984,-52.248467705999914],[-74.10496985599994,-52.24830494599995],[-74.12950598899994,-52.227959893999866],[-74.20303300699992,-52.20289478999987],[-74.2216690749999,-52.18694426899986],[-74.20189368399991,-52.18678150799998],[-74.16563880099989,-52.19345468499994],[-74.14590410099996,-52.193780205999964],[-74.21450761599988,-52.16936614399983],[-74.24242102799991,-52.1664364559999],[-74.25519771999987,-52.163262627999835],[-74.27354895699992,-52.149183851999894],[-74.28343665299994,-52.14592864399985],[-74.29816646999991,-52.14885833099987],[-74.32363847599993,-52.162041924999826],[-74.3383682929999,-52.1664364559999],[-74.35985266799995,-52.16415781],[-74.39049231699994,-52.15553150799983],[-74.41466223899997,-52.14299895599992],[-74.41685950399993,-52.12900155999995],[-74.4019262359999,-52.118259372999944],[-74.34455318899997,-52.09075286299991],[-74.32217363199996,-52.084649346999925],[-74.3099666009999,-52.0834286439999],[-74.29735266799992,-52.08456796699994],[-74.28677324099996,-52.088636976999815],[-74.26455644399991,-52.101739190999965],[-74.23668372299994,-52.109470309999885]]],[[[-74.65636145699992,-52.12265390400002],[-74.66421464799988,-52.13372161299996],[-74.66734778599988,-52.14950937299991],[-74.67194576699993,-52.16301848799989],[-74.68358313699991,-52.16668059699994],[-74.71507727799994,-52.1664364559999],[-74.74937903599991,-52.18279387799991],[-74.77037512899994,-52.18759531],[-74.79084225199989,-52.17945728999989],[-74.80329342399992,-52.172133070999884],[-74.80418860599991,-52.15927499799995],[-74.79702714799987,-52.12900155999995],[-74.79385331899991,-52.12395598799993],[-74.78636633999994,-52.121351820999834],[-74.77033443899995,-52.11874765399993],[-74.76451575399989,-52.11891041499981],[-74.75694739499993,-52.124118747999894],[-74.75291907499988,-52.12216562299985],[-74.74982662699989,-52.119724217],[-74.6876521479999,-52.08782317499998],[-74.63752193899998,-52.07732512799991],[-74.63255774599992,-52.073988539999895],[-74.62800045499989,-52.061618747999944],[-74.61778723899992,-52.05934010199989],[-74.60728919199988,-52.061944268999966],[-74.60179602799985,-52.06406015399998],[-74.59923255099994,-52.070245049999954],[-74.61034094999988,-52.0839169249999],[-74.65636145699992,-52.12265390400002]]],[[[-74.35716712099986,-52.07415129999986],[-74.37279212099995,-52.078301690999986],[-74.38780676999997,-52.07724374799994],[-74.39879309799993,-52.070896092],[-74.40330969999987,-52.06487395599999],[-74.40640214799987,-52.0583635399999],[-74.40782630099993,-52.051039320999905],[-74.40721594999988,-52.04306405999986],[-74.35973059799997,-52.05681731599987],[-74.34455318899997,-52.06406015399998],[-74.35716712099986,-52.07415129999986]]],[[[-74.72044837099989,-52.084161065999936],[-74.73558508999989,-52.08456796699994],[-74.7324926419999,-52.07366301899987],[-74.72199459499984,-52.049981377999856],[-74.70714270699996,-52.02629973799993],[-74.69090735599994,-52.01572030999997],[-74.67979895699989,-52.01165129999991],[-74.6468806629999,-51.99228281],[-74.64000403599991,-51.98528411299992],[-74.62677975199998,-51.980564059999914],[-74.54381262899996,-51.92066822699988],[-74.53709876199991,-51.92742278399999],[-74.51935787699992,-51.93474700299983],[-74.50963294199988,-51.940606377999956],[-74.49986731699993,-51.95183684699987],[-74.4974666009999,-51.9611955709999],[-74.49681555899986,-51.969903252999885],[-74.49229895699989,-51.97869231599994],[-74.49388587099992,-51.99228281],[-74.51406816299996,-52.00530364399997],[-74.62588456899988,-52.042738539999924],[-74.64305579299992,-52.053155205999914],[-74.64948482999992,-52.059258721999896],[-74.6573787099999,-52.06471119599985],[-74.66673743399991,-52.068617445999934],[-74.69326738199987,-52.073174737999885],[-74.72044837099989,-52.084161065999936]]],[[[-74.01964270699997,-51.92376067499995],[-73.98859615799995,-51.948825778999954],[-73.97069251199991,-51.95761484200001],[-73.95103919199994,-51.96103281000002],[-73.93663489499988,-51.96640390399998],[-73.7840063139999,-52.05966562299991],[-73.75890051999991,-52.081149997999844],[-73.72671464799987,-52.125664971999925],[-73.70767167899987,-52.15960051899997],[-73.70889238199989,-52.16057708099995],[-73.70909583199995,-52.178969007999804],[-73.70767167899987,-52.18694426899986],[-73.70384680899986,-52.191664320999955],[-73.69151770699992,-52.20134856599983],[-73.68785559799994,-52.20810312299995],[-73.68761145699992,-52.216485283999916],[-73.6940811839999,-52.24228280999994],[-73.70693925699992,-52.23788827899987],[-73.71922766799989,-52.230889580999886],[-73.72996985599991,-52.221774997999894],[-73.73814856699991,-52.21070728999986],[-73.74673417899993,-52.195082289999874],[-73.75145423099993,-52.1901994769999],[-73.79649817599991,-52.15960051899997],[-73.80675208199995,-52.14397551899999],[-73.81078040299991,-52.13909270599983],[-73.87124589799993,-52.09490325299995],[-73.91026770699989,-52.083265882999854],[-73.96495520699992,-52.050469658999845],[-74.01964270699997,-52.03801848799983],[-74.09024003799993,-52.0100236959999],[-74.11241614499991,-51.99456145599988],[-74.10480709499987,-51.999281507999974],[-74.09797115799995,-52.001885674999876],[-74.0912166009999,-52.00074635199985],[-74.08385169199991,-51.99456145599988],[-74.07461503799995,-52.00017669099988],[-74.06501217399997,-52.00416432099995],[-74.05475826699987,-52.007012627999984],[-74.04352779899995,-52.008884372999866],[-74.05260169199994,-51.994724216999934],[-74.06700598899991,-51.989922783999944],[-74.08332271999984,-51.9879696589999],[-74.09813391799992,-51.98211028399995],[-74.11021887899992,-51.96892669099991],[-74.1097712879999,-51.95891692499983],[-74.09845943899992,-51.95378997199991],[-74.07770748599992,-51.95476653399989],[-74.09455318899992,-51.93962981599998],[-74.09439042899986,-51.92701588299982],[-74.08071855399993,-51.92148202899989],[-74.05719967399989,-51.926934502999835],[-74.06419837099986,-51.910902601999844],[-74.05329342399989,-51.90846119599981],[-74.03498287699992,-51.91448333099991],[-74.01964270699997,-51.92376067499995]]],[[[-74.73070227799991,-51.86728280999993],[-74.72874915299988,-51.872247002999885],[-74.71324622299994,-51.86858489399984],[-74.66954505099997,-51.87004973799989],[-74.66047115799998,-51.868829033999965],[-74.65269934799996,-51.857842705999914],[-74.61644446499986,-51.846286716999884],[-74.60521399599986,-51.83749765400001],[-74.59845943899992,-51.83749765400001],[-74.60753333199992,-51.85613372199991],[-74.62315833199992,-51.87900156],[-74.6409399079999,-51.89820728999997],[-74.66588294199991,-51.91139088299983],[-74.69090735599994,-51.944024346999875],[-74.70372473899997,-51.95305754999988],[-74.71670488199996,-51.96013762799985],[-74.72793535099996,-51.96884531000001],[-74.73558508999989,-51.98211028399995],[-74.72057044199997,-51.980564059999914],[-74.69749915299991,-51.9698218729999],[-74.68097896999993,-51.96843840899983],[-74.68565833199995,-51.9767391909999],[-74.69522050699993,-51.9879696589999],[-74.70714270699996,-51.99781666499983],[-74.71849524599995,-52.00204843499985],[-74.72630774599995,-52.007256768999845],[-74.74986731699988,-52.04306405999986],[-74.76805579299987,-52.06853606599995],[-74.78294837099992,-52.08294036299992],[-74.80329342399992,-52.08928801899986],[-74.83800208199989,-52.09075286299991],[-74.83617102799991,-52.11207447699997],[-74.85057532499988,-52.13014088299981],[-74.87071692599991,-52.13713958099997],[-74.8863826159999,-52.12558359199995],[-74.89635169199987,-52.11305103999986],[-74.88890540299991,-52.092380466999934],[-74.87340247299987,-52.070896092],[-74.85912024599989,-52.056573174999826],[-74.80040442599989,-52.02532317499986],[-74.78335527299993,-52.008884372999866],[-74.81517493399988,-52.0100236959999],[-74.82494055899991,-52.008884372999866],[-74.82896887899997,-52.0100236959999],[-74.83202063699989,-52.01360442499996],[-74.83556067599993,-52.01572030999997],[-74.84142005099989,-52.012302341999956],[-74.84390214799993,-52.007989190999865],[-74.84544837099986,-52.00204843499985],[-74.8448787099999,-51.99675872199996],[-74.84142005099989,-51.99456145599988],[-74.83360755099991,-51.98528411299992],[-74.77989661399994,-51.87167734199991],[-74.75088456899994,-51.83391692499995],[-74.74616451699984,-51.83131275799986],[-74.73387610599988,-51.83318450299991],[-74.72834225199995,-51.83879973799992],[-74.72907467399989,-51.847426039999924],[-74.73558508999989,-51.85857512799994],[-74.73070227799991,-51.86728280999993]]],[[[-73.8282442229999,-51.85112979599995],[-73.81514329399994,-51.86405867199997],[-73.79043109899993,-51.85351601699995],[-73.77901279899993,-51.83467373199994],[-73.76953483899987,-51.82759548399996],[-73.73916140699986,-51.83234576399989],[-73.71832960599994,-51.84886004599991],[-73.70898675999987,-51.88302049299991],[-73.6976729289999,-51.907756778999875],[-73.69977356999989,-51.94307014099997],[-73.72075294599988,-51.938316086999905],[-73.71131412799988,-51.95716964399995],[-73.70377803099987,-51.976018038],[-73.71345073599994,-51.99600695799993],[-73.73840732599993,-52.011253246999935],[-73.76705946999988,-52.00529691699986],[-73.80511865999998,-51.980471233999864],[-73.83710739299997,-51.94388603999989],[-73.83864973399994,-51.916838612],[-73.8768275839999,-51.90138996399986],[-73.91313114299993,-51.90006650699988],[-73.94361923299992,-51.89287532999987],[-73.95097702899994,-51.86812677699986],[-73.97935816199987,-51.83854388899998],[-73.96586041199994,-51.818567548999845],[-73.9371117899999,-51.80811321699994],[-73.90074879099984,-51.803603080999984],[-73.8778311719999,-51.81435160799998],[-73.86067045899995,-51.830949356999895],[-73.8282442229999,-51.85112979599995]]],[[[-74.9857478509999,-51.76140715899992],[-74.99624589799987,-51.77662525799991],[-74.97516842399993,-51.77662525799991],[-75.00088456899991,-51.84384530999995],[-75.01305091099988,-51.86199309699986],[-75.02375240799988,-51.86907317499982],[-75.04930579299989,-51.875420830999936],[-75.06114661399994,-51.88225676899996],[-75.07359778599997,-51.89169687299997],[-75.08747311099995,-51.89804452899991],[-75.10212154899995,-51.899509372999965],[-75.11685136599996,-51.894138279],[-75.11978105399987,-51.878106377999835],[-75.11286373599997,-51.86150481599987],[-75.10171464799996,-51.84384530999995],[-75.0924373039999,-51.82447682099993],[-75.1075740229999,-51.806898695999905],[-75.09536699099992,-51.776462497999944],[-75.05459550699996,-51.724867445999884],[-75.03978430899987,-51.716403903999854],[-75.01935787699992,-51.71306731599983],[-74.99860592399992,-51.71493905999998],[-74.98265540299991,-51.72144947699997],[-74.96996008999986,-51.736748955999936],[-74.97398841099991,-51.74920012799986],[-74.9857478509999,-51.76140715899992]]],[[[-74.37189693899994,-51.76921965899992],[-74.35753333199997,-51.76970794099982],[-74.31786048099985,-51.762383722],[-74.32420813699989,-51.76726653399988],[-74.3297419909999,-51.774102471999896],[-74.33018958199992,-51.780205987999885],[-74.31163489499991,-51.786553643999824],[-74.3125707669999,-51.79534270599997],[-74.31602942599989,-51.80575937299987],[-74.31411699099993,-51.81389739399989],[-74.29727128799993,-51.82187265399985],[-74.27892005099997,-51.82219817499987],[-74.23900305899991,-51.817071221999946],[-74.22874915299988,-51.81959400799996],[-74.22451738199996,-51.825778903999925],[-74.22150631399995,-51.83261484199995],[-74.2149145169999,-51.83749765400001],[-74.20531165299991,-51.837985935],[-74.18224036399992,-51.835381768999824],[-74.17389889199987,-51.83749765400001],[-74.16307532499988,-51.85556405999985],[-74.17739824099995,-51.86598072699993],[-74.20189368399991,-51.87102629999987],[-74.2216690749999,-51.872247002999885],[-74.1820369129999,-51.883477471999974],[-74.16079667899989,-51.88640715899999],[-74.13906816299993,-51.885349216999856],[-74.10220292899987,-51.8734677059999],[-74.09630286399992,-51.877373955999985],[-74.10496985599994,-51.89959075299994],[-74.11241614499991,-51.91130950299985],[-74.13597571499984,-51.93971119599996],[-74.14590410099996,-51.9473609349999],[-74.16734778599991,-51.95110442499984],[-74.19473222599996,-51.950290623],[-74.22179114499987,-51.9460588519999],[-74.24217688699989,-51.940606377999956],[-74.25153561099992,-51.92734140400002],[-74.2597550119999,-51.9209937479999],[-74.28376217399995,-51.91326262799989],[-74.29751542899987,-51.91529713299992],[-74.30638587099992,-51.91285572699989],[-74.31041419199988,-51.90300872199986],[-74.31362870999993,-51.898695570999955],[-74.32127844999988,-51.89560312299987],[-74.33031165299988,-51.893324476999815],[-74.36945553299992,-51.89128997199997],[-74.38101152299996,-51.88437265399997],[-74.3855688139999,-51.868829033999965],[-74.39207923099988,-51.86345794099991],[-74.43455969999985,-51.84490325299999],[-74.42247473899994,-51.83473072699996],[-74.41112219999988,-51.82097747199985],[-74.40965735599991,-51.808689059999885],[-74.4435115229999,-51.79851653399985],[-74.45738684799997,-51.78753020599997],[-74.46141516799995,-51.775974216999956],[-74.4481501939999,-51.76921965899992],[-74.4481501939999,-51.762383722],[-74.46788489499994,-51.75253671699998],[-74.49400794199991,-51.72275155999997],[-74.50963294199988,-51.71461353999987],[-74.50283769399994,-51.70720794099988],[-74.41588294199988,-51.727146091999956],[-74.37584387899994,-51.74228280999986],[-74.37189693899994,-51.76921965899992]]],[[[-73.87218176999991,-51.680433851999965],[-73.85973059799989,-51.68450286299993],[-73.85399329299992,-51.683282159],[-73.85057532499991,-51.683851820999884],[-73.84487870999992,-51.693536065999936],[-73.84459387899989,-51.702569268999945],[-73.85334225199995,-51.72014739399997],[-73.85171464799993,-51.72820403399991],[-73.83983313699989,-51.73308684699989],[-73.8065486319999,-51.728448174999954],[-73.78966223899991,-51.73503997199993],[-73.77839107999992,-51.74879322699986],[-73.77122962099986,-51.76572031000001],[-73.7715551419999,-51.781019789999895],[-73.78282630099989,-51.78972747199988],[-73.79027258999986,-51.783949476999915],[-73.79845130099996,-51.779961846999846],[-73.80736243399991,-51.777520440999986],[-73.81696529899997,-51.77662525799991],[-73.80622311099994,-51.7926571589999],[-73.79478919199991,-51.80543385199985],[-73.79539954299989,-51.81389739399989],[-73.8207087879999,-51.817071221999946],[-73.83877519399992,-51.81259530999998],[-73.8553767569999,-51.80144622199996],[-73.86754309799997,-51.78720468499995],[-73.87645423099991,-51.75986093499989],[-73.88678951699991,-51.740166924999855],[-73.89915930899986,-51.722344658999965],[-73.90977942599991,-51.71461353999987],[-73.92983964799996,-51.70875416499992],[-73.93871008999992,-51.69491952899992],[-73.94078528599994,-51.67791106599995],[-73.94050045499989,-51.66318124799995],[-73.93040930899991,-51.65642669099984],[-73.90807044199991,-51.662855726999936],[-73.87218176999991,-51.680433851999965]]],[[[-74.85635331899992,-51.63811614399996],[-74.83800208199989,-51.645684502999906],[-74.82282467399989,-51.633233330999985],[-74.80724036399991,-51.63420989399987],[-74.79344641799987,-51.64430103999993],[-74.78335527299993,-51.659356377999856],[-74.79035396999993,-51.679375908999916],[-74.77721106699994,-51.71379973799986],[-74.79084225199989,-51.72820403399991],[-74.77599036399994,-51.73796965899995],[-74.77135169199991,-51.75188567499993],[-74.76943925699996,-51.767673434999885],[-74.76292883999986,-51.78289153399986],[-74.7701716789999,-51.78435637799992],[-74.78282630099994,-51.78875090899999],[-74.79084225199989,-51.78972747199988],[-74.78465735599994,-51.80632903399984],[-74.78758704299985,-51.81926848799985],[-74.79369055899994,-51.830336195999884],[-74.80247962099992,-51.85735442499992],[-74.82632402299988,-51.881524346999925],[-74.8318578769999,-51.89617278399985],[-74.83165442599994,-51.92986419099994],[-74.83433997299993,-51.9473609349999],[-74.84142005099989,-51.95476653399989],[-74.85716712099986,-51.962172132999875],[-74.87865149599989,-51.99456145599988],[-74.88980058499989,-52.00204843499985],[-74.90396074099993,-52.00676848799986],[-74.90111243399988,-52.018243096999896],[-74.89171301999994,-52.03191497199984],[-74.8863826159999,-52.04306405999986],[-74.94953365799996,-52.11060963299992],[-74.96422278599988,-52.11760833099989],[-74.97516842399993,-52.111911717],[-74.97394771999991,-52.09970468499985],[-74.94786536399997,-52.056573174999826],[-74.99058997299997,-52.09221770599988],[-75.01398678299995,-52.10409921700001],[-75.02358964799993,-52.08456796699994],[-75.00694739499988,-52.075860283999866],[-74.99225826699988,-52.065606377999835],[-74.98110917899987,-52.052829684999885],[-74.97516842399993,-52.03622812299993],[-74.99453691299996,-52.041680596999875],[-75.00690670499989,-52.03622812299993],[-75.01622473899994,-52.02711353999993],[-75.03600012899997,-52.018243096999896],[-75.05117753799996,-52.00774504999983],[-75.0652563139999,-51.99456145599988],[-75.07140051999995,-51.98211028399995],[-75.06257076699993,-51.96900807099989],[-75.02472896999987,-51.96599700299997],[-75.01618404899995,-51.95110442499984],[-75.00918535099986,-51.946465752999906],[-74.97769120999996,-51.93580494599988],[-74.96898352799987,-51.926934502999835],[-74.98875891799989,-51.92815520599985],[-75.0077205069999,-51.93320077899997],[-75.02440344999985,-51.93328215899995],[-75.03722083199989,-51.92066822699988],[-75.0081680979999,-51.88681406],[-74.98412024599989,-51.8418921849999],[-74.95750891799992,-51.81560637799989],[-74.92052161399988,-51.83749765400001],[-74.9335017569999,-51.85637786299994],[-74.91466223899994,-51.86402760199988],[-74.88491777299991,-51.868747653999975],[-74.86534583199995,-51.8790829409999],[-74.85765540299994,-51.86687590899992],[-74.83844967399989,-51.84832122199991],[-74.8318578769999,-51.83749765400001],[-74.85411536399997,-51.83806731599989],[-74.86750240799995,-51.83180103999994],[-74.86815344999991,-51.820000908999965],[-74.85228430899988,-51.80339934699982],[-74.87425696499989,-51.79216887799991],[-74.88292395699989,-51.783949476999915],[-74.8863826159999,-51.77304452899985],[-74.88206946499989,-51.76490650799983],[-74.87132727799988,-51.76433684699986],[-74.85777747299991,-51.76531340899984],[-74.8448380199999,-51.762383722],[-74.8448380199999,-51.75554778399998],[-74.8599747389999,-51.74830494599987],[-74.86449133999986,-51.73552825299992],[-74.86099199099996,-51.72063567499996],[-74.85228430899988,-51.70720794099988],[-74.86412512899994,-51.70134856599993],[-74.87612870999996,-51.70110442499989],[-74.88817298099988,-51.70224374799992],[-74.90005449099993,-51.700941664999924],[-74.89468339799987,-51.68857187299998],[-74.89183508999992,-51.684177341999906],[-74.8863826159999,-51.680433851999965],[-74.8863826159999,-51.67302825299998],[-74.92223059799989,-51.655857028999954],[-74.92516028599991,-51.63600025799986],[-74.90343176999994,-51.62102629999992],[-74.86534583199995,-51.61834075299985],[-74.87279212099995,-51.625176690999865],[-74.86506100199992,-51.63250090899996],[-74.85635331899992,-51.63811614399996]]],[[[-74.03148352799994,-51.600355726999815],[-74.0298966139999,-51.615004164999824],[-74.02550208199992,-51.63005950299993],[-74.01500403599994,-51.64267343499999],[-73.99266516799992,-51.66318124799995],[-73.9889216789999,-51.67782968499988],[-73.99762936099995,-51.69068775799981],[-74.00772050699993,-51.702569268999945],[-74.00877844999988,-51.71461353999987],[-74.00169837099992,-51.720879815999815],[-73.99323482999989,-51.72112395599994],[-73.9840388659999,-51.719903252999934],[-73.97524980399996,-51.72144947699997],[-73.94713294199994,-51.738376559999956],[-73.94391842399988,-51.74130624799988],[-73.93683834499983,-51.743910414999974],[-73.93138587099989,-51.75025807099991],[-73.92804928299998,-51.75823333099987],[-73.92682857999995,-51.76580169099991],[-73.92853756399995,-51.77629973799998],[-73.93297278599992,-51.77947356599986],[-73.93956458199992,-51.779961846999846],[-73.97984778599987,-51.79713307099987],[-74.01455644399994,-51.79973723799995],[-74.04963131399992,-51.79338958099993],[-74.23224850199998,-51.70720794099988],[-74.24063066299993,-51.69850025799998],[-74.23558508999992,-51.68189869599984],[-74.21910559799991,-51.67131926899997],[-74.19371497299989,-51.680433851999965],[-74.18333899599989,-51.6677385399999],[-74.1690567699999,-51.667901299999876],[-74.15355383999989,-51.67099374799995],[-74.13906816299993,-51.666761976999844],[-74.13247636599996,-51.654554945999955],[-74.1341039699999,-51.639906507999946],[-74.14077714799991,-51.62574635199984],[-74.14964758999989,-51.615004164999824],[-74.14964758999989,-51.60418059699992],[-74.12360592399992,-51.60320403399985],[-74.09093176999988,-51.60564544099997],[-74.0714412099999,-51.60475025799988],[-74.10098222599996,-51.56511809699995],[-74.10496985599994,-51.55331796699989],[-74.09813391799992,-51.538995049999905],[-74.08214270699992,-51.538181247999894],[-74.06379146999987,-51.54583098799991],[-74.04971269399991,-51.556898695999955],[-74.04222571499984,-51.568780206],[-74.03587805899991,-51.58416106599986],[-74.03148352799994,-51.600355726999815]]],[[[-74.30624893199987,-51.417783641999954],[-74.33557616899992,-51.42678698099981],[-74.36984453899996,-51.41784527599991],[-74.39648801099989,-51.41308238099991],[-74.40124205899988,-51.39213824199991],[-74.39347656999988,-51.37355080799995],[-74.4120264279999,-51.36704433799983],[-74.39634794199995,-51.34869430899989],[-74.38427881399991,-51.336189565999874],[-74.35903594299985,-51.33794079799983],[-74.34505327599986,-51.34235284499993],[-74.32868256599991,-51.357754936999946],[-74.31094719699985,-51.376155530999895],[-74.29651017299992,-51.39538906599994],[-74.30624893199987,-51.417783641999954]]],[[[-74.16510982999992,-51.28704192499991],[-74.15965735599988,-51.29998137799983],[-74.15835527299987,-51.30885182099987],[-74.15514075399992,-51.31845468499985],[-74.14590410099996,-51.33782317499995],[-74.13853919199995,-51.34840260199982],[-74.11851966099991,-51.370375257999925],[-74.11241614499991,-51.37883879999996],[-74.10777747299989,-51.40129973799996],[-74.10968990799992,-51.427992445999806],[-74.11937415299991,-51.44744231599989],[-74.13792883999992,-51.44752369599987],[-74.15892493399994,-51.41887786299999],[-74.16706295499995,-51.41350676899985],[-74.1764216789999,-51.413262627999984],[-74.18663489499994,-51.42392343500002],[-74.19713294199991,-51.426690362999985],[-74.22207597599993,-51.42164478999987],[-74.2385961579999,-51.40960051899994],[-74.24046790299988,-51.39397551899996],[-74.2216690749999,-51.37883879999996],[-74.24815833199989,-51.37135182099981],[-74.25999915299985,-51.35312265399992],[-74.26292883999987,-51.32789478999995],[-74.26260331899994,-51.29998137799983],[-74.25462805899988,-51.29078541499985],[-74.23643958199992,-51.29111093499996],[-74.21666419199988,-51.29387786299993],[-74.20425370999996,-51.292738539999895],[-74.19294186099995,-51.28639088299987],[-74.17796790299992,-51.28346119599985],[-74.16510982999992,-51.28704192499991]]],[[[-75.15453040299994,-51.363702080999964],[-75.14883378799996,-51.36712004999988],[-75.13866126199991,-51.366143487999906],[-75.12975012899997,-51.36174895599992],[-75.12409420499998,-51.35263437299993],[-75.11717688699987,-51.32740650799987],[-75.11294511599996,-51.31747812299987],[-75.11164303299995,-51.31121184699992],[-75.11180579299992,-51.30429452899991],[-75.11001542899993,-51.298516533999944],[-75.10240637899989,-51.2961565079999],[-75.09235592399992,-51.29843515399997],[-75.08495032499994,-51.30299244599992],[-75.07941646999993,-51.307712498000015],[-75.07510331899991,-51.309991143999895],[-75.0716853509999,-51.312676690999965],[-75.06334387899994,-51.32610442499987],[-75.05772864499994,-51.33098723799985],[-75.04971269399991,-51.332207940999865],[-75.03172766799986,-51.33001067499996],[-75.02358964799993,-51.33098723799985],[-75.0121150379999,-51.33603280999988],[-75.00352942599989,-51.341892185],[-74.99815833199992,-51.34986744599988],[-74.99624589799987,-51.36174895599992],[-74.99722245999993,-51.37468840899983],[-75.00059973899997,-51.390394789999895],[-75.00670325399994,-51.40471770599997],[-75.01618404899995,-51.41350676899985],[-75.03132076699987,-51.41179778399994],[-75.05223548099991,-51.40439218499995],[-75.07079016799992,-51.40064869599992],[-75.07876542899986,-51.409844658999894],[-75.0811254549999,-51.426934502999934],[-75.08726966099991,-51.4340145809999],[-75.0959366529999,-51.43824635199983],[-75.10610917899993,-51.44703541499989],[-75.10952714799996,-51.454685154],[-75.1092830069999,-51.461358330999964],[-75.10838782499991,-51.466892184999885],[-75.10952714799996,-51.470961195999855],[-75.11595618399986,-51.47323984199992],[-75.12385006399992,-51.4716122379999],[-75.13060462099989,-51.468031507999925],[-75.1334122389999,-51.46412525799984],[-75.13585364499994,-51.45061614399995],[-75.14195716099994,-51.439222914999895],[-75.15074622299991,-51.430922132999825],[-75.16075598899991,-51.426690362999985],[-75.15770423099991,-51.45061614399995],[-75.13817298099991,-51.503513279],[-75.1334122389999,-51.53281015399993],[-75.1417537099999,-51.56503671699997],[-75.16242428299992,-51.573174737999985],[-75.18903561099995,-51.56536223799999],[-75.21540279899995,-51.54949309699996],[-75.2208552729999,-51.574802342],[-75.20864824099989,-51.59197356599985],[-75.20579993399988,-51.601739190999886],[-75.23924719999994,-51.60475025799988],[-75.25194251199989,-51.60759856599984],[-75.28941809799991,-51.627862237999935],[-75.30125891799989,-51.631280205999936],[-75.30748450399994,-51.631442967],[-75.31289628799988,-51.629164320999934],[-75.31725012899997,-51.62216562299995],[-75.31761633999989,-51.613213799999926],[-75.31663977799991,-51.60393645599988],[-75.31704667899993,-51.59539153399985],[-75.31895911399988,-51.59075286299983],[-75.32384192599994,-51.58220794099999],[-75.32526607999992,-51.577406507999825],[-75.32298743399986,-51.5718726539999],[-75.31468665299988,-51.543145440999844],[-75.31468665299988,-51.53655364399987],[-75.30601966099987,-51.53443775799995],[-75.29605058499988,-51.52988046699991],[-75.28693600199989,-51.524102471999946],[-75.28058834499987,-51.51913827899999],[-75.27037512899992,-51.51287200299985],[-75.24689693899995,-51.507256768999945],[-75.2359106109999,-51.50172291499984],[-75.22533118399986,-51.49065520599989],[-75.22443600199995,-51.4828427059999],[-75.22765051999991,-51.47584400799992],[-75.22964433499996,-51.467543226999936],[-75.22057044199994,-51.412774346999825],[-75.21629798099994,-51.40357838299994],[-75.20482337099988,-51.38909270599998],[-75.2000219389999,-51.38616301899996],[-75.19424394399994,-51.38420989399992],[-75.18944251199986,-51.38128020599999],[-75.18740800699993,-51.375420830999865],[-75.19025631399995,-51.367933851999894],[-75.19664466099988,-51.366387627999856],[-75.2035212879999,-51.36679452899986],[-75.20791581899988,-51.36516692499984],[-75.21450761599996,-51.349704685],[-75.22081458199989,-51.326592705999865],[-75.21983801999991,-51.30543385199995],[-75.20482337099988,-51.2961565079999],[-75.18512936099995,-51.28866952899993],[-75.16319739499994,-51.27402109200001],[-75.14240475199995,-51.26384856599997],[-75.12604732999992,-51.27019622199991],[-75.12608801999991,-51.2862281229999],[-75.14240475199995,-51.34002044099986],[-75.15453040299994,-51.363702080999964]]],[[[-73.75487219999985,-51.29762135199996],[-73.75890051999991,-51.31365325299994],[-73.76691646999987,-51.32919687299995],[-73.77179928299992,-51.3475888],[-73.77892005099987,-51.36345794099984],[-73.79369055899988,-51.37102629999996],[-73.80256100199992,-51.36858489399994],[-73.80996660099989,-51.365329684999985],[-73.8150935539999,-51.35995859199993],[-73.81696529899997,-51.3514950499999],[-73.83031165299988,-51.35735442499985],[-73.84349524599995,-51.360935153999904],[-73.85724850199995,-51.36150481599997],[-73.87218176999991,-51.358330987999906],[-73.88121497299991,-51.35369231599998],[-73.89037024599989,-51.34563567499995],[-73.89557857999989,-51.33521900799987],[-73.89268958199995,-51.32415129999983],[-73.87995357999989,-51.32830169099996],[-73.85944576699987,-51.32439544099987],[-73.83849036399991,-51.31519947699981],[-73.82445227799984,-51.303643487999956],[-73.87539628799996,-51.313571872999965],[-73.90005449099993,-51.31373463299993],[-73.92064368399988,-51.303643487999956],[-73.90013587099992,-51.28069426899997],[-73.8647354809999,-51.258721612999864],[-73.82534745999993,-51.24797942499995],[-73.79308020699992,-51.258721612999864],[-73.76520748599995,-51.28215911299985],[-73.75487219999985,-51.29762135199996]]],[[[-74.67772376199989,-51.201429945999834],[-74.65925045499995,-51.20419687299989],[-74.64305579299992,-51.19695403399986],[-74.60191809799991,-51.20598723799996],[-74.55573482999992,-51.25042083099998],[-74.54898027299987,-51.28435637799984],[-74.62633216099988,-51.26213958099988],[-74.62389075399994,-51.28093840899992],[-74.57994544199991,-51.31829192499988],[-74.57795162699998,-51.33782317499995],[-74.56651770699992,-51.34107838299982],[-74.55671139199988,-51.34661223799983],[-74.54906165299985,-51.354587497999965],[-74.54381262899996,-51.36516692499984],[-74.59422766799992,-51.39950937299989],[-74.62315833199992,-51.40699635199986],[-74.64622962099986,-51.3925106749999],[-74.64525305899988,-51.38787200299997],[-74.64207923099994,-51.37957122199999],[-74.64020748599995,-51.37021249799996],[-74.64305579299992,-51.36174895599992],[-74.65070553299992,-51.355157158999944],[-74.66608639199987,-51.34514739399996],[-74.67349199099995,-51.33782317499995],[-74.67951412699995,-51.32789478999995],[-74.68447831899991,-51.31462981599984],[-74.68736731699993,-51.299086195999834],[-74.6871638659999,-51.28329843499997],[-74.69920813699991,-51.294366143999916],[-74.70763098899997,-51.309014580999836],[-74.71792558499988,-51.314060153999954],[-74.73558508999989,-51.2961565079999],[-74.74205481699988,-51.30706145599997],[-74.7407120429999,-51.31658294099988],[-74.7342830069999,-51.32545338299983],[-74.72533118399984,-51.33440520599986],[-74.72459876199994,-51.34124114399987],[-74.72838294199994,-51.3514950499999],[-74.73403886599993,-51.36191171699998],[-74.73900305899991,-51.36858489399994],[-74.79084225199989,-51.41969166499982],[-74.78335527299993,-51.426690362999985],[-74.79865475199989,-51.432305596999896],[-74.8318578769999,-51.43873463299981],[-74.86632239499994,-51.441338799999905],[-74.90632076699987,-51.453301690999844],[-74.92027747299993,-51.45256926899999],[-74.93317623599995,-51.449314059999864],[-74.94554602799991,-51.44890715899986],[-74.95811926999987,-51.45696379999989],[-74.97118079299986,-51.46835702899995],[-74.98542232999998,-51.47454192499992],[-75.00047766799989,-51.474704684999885],[-75.01618404899995,-51.467543226999936],[-75.02415930899991,-51.456231377999856],[-75.01793372299994,-51.44280364399995],[-75.00316321499986,-51.43132903399983],[-74.96764075399989,-51.422133070999855],[-74.87026933499993,-51.37753671699996],[-74.85533606699988,-51.367364190999915],[-74.84142005099989,-51.35491301899999],[-74.8284399079999,-51.346368096999974],[-74.81240800699989,-51.33896249799999],[-74.79832923099988,-51.33001067499996],[-74.79084225199989,-51.31747812299987],[-74.9217830069999,-51.363702080999964],[-74.95128333199997,-51.36174895599992],[-74.96377519399988,-51.343682549999905],[-74.9627986319999,-51.32935963299992],[-74.95177161399997,-51.31666432099986],[-74.93419348899994,-51.303643487999956],[-74.91026770699995,-51.29225025799982],[-74.86196855399993,-51.28394947699984],[-74.83800208199989,-51.275811456],[-74.83625240799988,-51.25505950299991],[-74.81761633999992,-51.229750257999875],[-74.79308020699989,-51.21119557099987],[-74.77375240799995,-51.21062590899999],[-74.76036536399994,-51.2140438779999],[-74.7445369129999,-51.208184502999956],[-74.72862708199989,-51.19915129999995],[-74.71507727799994,-51.193780205999985],[-74.69688880099994,-51.195896091999906],[-74.67772376199989,-51.201429945999834]]],[[[-74.87694251199989,-51.15846119599996],[-74.89146887899992,-51.16025155999995],[-74.92080644399994,-51.15911223799982],[-74.94196529899992,-51.161390882999974],[-75.00389563699989,-51.17595794099983],[-75.02049719999985,-51.17278411299995],[-75.02269446499994,-51.16187916499988],[-75.01622473899994,-51.147556247999894],[-75.00674394399994,-51.13355885199992],[-74.99889075399993,-51.12444426899994],[-74.98985755099993,-51.11646900799989],[-74.97984778599997,-51.109958591999984],[-74.96898352799987,-51.10442473799987],[-74.94481360599987,-51.10125090899991],[-74.91002356699991,-51.10312265399997],[-74.87881425699992,-51.11003997199997],[-74.86534583199995,-51.12151458099983],[-74.86363684799994,-51.12867603999987],[-74.86082923099991,-51.13616301899984],[-74.86021887899994,-51.14381275799995],[-74.86534583199995,-51.1522763],[-74.87694251199989,-51.15846119599996]]],[[[-74.45441646999987,-51.04583098799984],[-74.4602758449999,-51.062107028999954],[-74.47345943899995,-51.06910572699994],[-74.48741614499991,-51.06536223799991],[-74.49543209499987,-51.04924895599985],[-74.51268469999988,-51.059502862999956],[-74.5211482409999,-51.078220309999935],[-74.51952063699989,-51.09636809699984],[-74.50625566299996,-51.10442473799987],[-74.49693762899992,-51.10523853999989],[-74.47297115799994,-51.11060963299994],[-74.45421301999991,-51.119805596999825],[-74.44237219999985,-51.11777109199998],[-74.43077551999994,-51.11321379999985],[-74.42027747299994,-51.11126067499998],[-74.39452063699991,-51.122247002999856],[-74.38536536399994,-51.14373137799997],[-74.38988196499989,-51.16936614399985],[-74.40514075399994,-51.19264088299995],[-74.41417395699997,-51.20037200299996],[-74.42389889199993,-51.205173434999864],[-74.43415279899995,-51.20582447699991],[-74.44489498599995,-51.201348565999844],[-74.45563717399997,-51.19182708099994],[-74.46003170499995,-51.188897393999916],[-74.47508704299989,-51.181898695999934],[-74.52041581899988,-51.16871510199981],[-74.55093339799991,-51.16594817499993],[-74.5743708979999,-51.1548804669999],[-74.59137936099995,-51.129164320999855],[-74.60171464799987,-51.10051848799997],[-74.60521399599986,-51.080254815999865],[-74.50283769399994,-51.021905205999964],[-74.48607337099992,-51.021254164999824],[-74.47044837099995,-51.025648695999905],[-74.45889238199993,-51.03411223799994],[-74.45441646999987,-51.04583098799984]]],[[[-74.26260331899994,-51.24146900799995],[-74.27599036399992,-51.243340752999835],[-74.28457597599987,-51.235609632999825],[-74.28380286399994,-51.214288018999945],[-74.28380286399994,-51.2140438779999],[-74.28538977799988,-51.19646575299988],[-74.28978430899986,-51.17937590899984],[-74.31615149599986,-51.11012135199995],[-74.33287512899989,-51.0321591129999],[-74.33409583199992,-51.015232029],[-74.33092200399994,-50.9945614559999],[-74.32310950399993,-50.973565362999864],[-74.32176673099984,-50.96477629999998],[-74.32469641799989,-50.95370859199995],[-74.33055579299992,-50.947198174999954],[-74.33873450399992,-50.94296640399985],[-74.34683183499995,-50.93694426899993],[-74.35195878799988,-50.92571379999984],[-74.32274329299992,-50.92164478999996],[-74.30134029899989,-50.93922291499982],[-74.2881973949999,-50.9681942689999],[-74.28376217399995,-50.997979425],[-74.27623450399987,-51.02385833099982],[-74.24347896999987,-51.06926848799982],[-74.2273656889999,-51.130791924999876],[-74.19692949099992,-51.17538827899995],[-74.2005509109999,-51.200127862999835],[-74.20938066299996,-51.209161065999844],[-74.24893144399991,-51.234795830999985],[-74.26260331899994,-51.24146900799995]]],[[[-74.47549394399987,-50.79973723799998],[-74.46621660099991,-50.82382577899991],[-74.44444739499997,-50.828383070999855],[-74.41930091099988,-50.829685153999854],[-74.39976966099991,-50.84441497199985],[-74.39492753799993,-50.869805596999875],[-74.40420488199987,-50.89031340899992],[-74.43455969999985,-50.92571379999984],[-74.41832434799991,-50.93417734199988],[-74.40404212099992,-50.95012786299988],[-74.3855688139999,-50.98105234200001],[-74.37938391799992,-51.0036760399998],[-74.38027910099991,-51.027520440999965],[-74.38927161399994,-51.03834400799996],[-74.40721594999988,-51.021905205999964],[-74.40501868399988,-51.0373674459998],[-74.39517167899987,-51.06308359199985],[-74.39297441299988,-51.080254815999865],[-74.39830481699994,-51.08684661299985],[-74.41002356699994,-51.07854583099995],[-74.4217830069999,-51.06226978999984],[-74.43219967399989,-51.03093840899997],[-74.4447322259999,-51.014418226999815],[-74.46056067599994,-51.00090911299993],[-74.47549394399987,-50.9945614559999],[-74.48940995999996,-50.997328382999946],[-74.53636633999987,-51.021905205999964],[-74.57713782499984,-51.031996351999844],[-74.61546790299988,-51.0355770809999],[-74.63438880099991,-51.04013437299986],[-74.63621985599987,-51.05185312299994],[-74.63036048099994,-51.06829192499993],[-74.62633216099988,-51.08709075299998],[-74.7083227199999,-51.10442473799987],[-74.72545325399993,-51.10507577900001],[-74.73961341099997,-51.10149504999995],[-74.74998938699986,-51.09254322699992],[-74.75601152299987,-51.07642994599995],[-74.74136308499996,-51.07333749799987],[-74.73692786399988,-51.064629815999886],[-74.74046790299984,-51.05339934699997],[-74.74986731699988,-51.04241301899992],[-74.73086503799986,-51.0355770809999],[-74.70982825399994,-51.0329729149999],[-74.69151770699989,-51.02662525799988],[-74.68097896999993,-51.00823333099984],[-74.74478105399996,-51.01002369599992],[-74.75951087099986,-51.00481536299983],[-74.77456620999988,-50.99334075299988],[-74.77623450399989,-51.002373955999886],[-74.77464758999986,-51.02117278399993],[-74.78026282499985,-51.03899504999982],[-74.80011959499987,-51.06536223799991],[-74.81232662699992,-51.07398853999992],[-74.8318578769999,-51.07642994599995],[-74.83372962099989,-51.07480234199993],[-74.86534583199995,-51.063571873000015],[-74.88402258999994,-51.06047942499994],[-74.88988196499989,-51.05754973799992],[-74.8932185539999,-51.04924895599985],[-74.83800208199989,-50.97421640399999],[-74.85277258999987,-50.97063567499993],[-74.8581436839999,-50.97063567499993],[-74.86534583199995,-50.97421640399999],[-74.87828528599997,-50.96607838299998],[-74.88939368399988,-50.96087004999989],[-74.90046139199984,-50.95875416499989],[-74.91368567599997,-50.960544528999876],[-74.92381751199991,-50.96754322699985],[-74.93358313699989,-50.9777157529999],[-74.94522050699987,-50.982842706],[-74.96153723899991,-50.97421640399999],[-74.96654212099995,-50.96363697699995],[-74.96642005099997,-50.949883721999846],[-74.96222896999984,-50.93596770599986],[-74.95470130099989,-50.92571379999984],[-74.94444739499994,-50.92099374799992],[-74.93089758999989,-50.91920338299984],[-74.90005449099993,-50.91952890399987],[-74.93089758999989,-50.89462656000001],[-74.92796790299988,-50.88779062299991],[-74.90318762899992,-50.88543059699986],[-74.87865149599989,-50.886325778999854],[-74.69591223899997,-50.91765715899999],[-74.66047115799998,-50.93320077899999],[-74.65371660099993,-50.923760674999976],[-74.64452063699986,-50.91920338299984],[-74.63459225199995,-50.919691664999924],[-74.62547766799989,-50.924899998],[-74.59727942599989,-50.89527760199988],[-74.58478756399998,-50.88543059699986],[-74.64045162699992,-50.88543059699986],[-74.65672766799995,-50.87476978999983],[-74.64305579299992,-50.84783294099994],[-74.62092037699992,-50.83766041499991],[-74.56899980399993,-50.83294036299999],[-74.55809485599988,-50.81707122199997],[-74.59007727799988,-50.82146575299986],[-74.6067602199999,-50.81161874799984],[-74.61766516799989,-50.79420338299996],[-74.63255774599992,-50.77613697699994],[-74.67796790299991,-50.746270440999865],[-74.67931067599991,-50.73528411299999],[-74.66047115799998,-50.72771575299994],[-74.55064856699988,-50.751641533999916],[-74.53888912699992,-50.76336028399999],[-74.48729407499985,-50.78215911299995],[-74.47549394399987,-50.79973723799998]]],[[[-74.74242102799991,-50.7072079409999],[-74.75340735599988,-50.72014739399999],[-74.75352942599994,-50.7330868469999],[-74.75153561099988,-50.74504973799985],[-74.75601152299987,-50.755059502999835],[-74.74689693899995,-50.770277601999815],[-74.72378495999993,-50.790297132999875],[-74.71507727799994,-50.802829684999956],[-74.77721106699994,-50.802829684999956],[-74.75934811099988,-50.81682708099993],[-74.74136308499996,-50.82431405999989],[-74.72744706899988,-50.83375416499982],[-74.72191321499986,-50.85466887799988],[-74.71816972599993,-50.86150481599989],[-74.71019446499986,-50.853773695999884],[-74.70295162699995,-50.842054945999806],[-74.70148678299996,-50.83757903399984],[-74.67349199099995,-50.81023528399995],[-74.66047115799998,-50.823907158999894],[-74.6784561839999,-50.87167734199993],[-74.69302324099992,-50.890069268999966],[-74.71507727799994,-50.88543059699986],[-74.78197180899986,-50.882012627999934],[-74.8448380199999,-50.87118905999986],[-74.85928300699995,-50.86630624799997],[-74.88174394399996,-50.85515715899986],[-74.8932185539999,-50.85125090899996],[-74.90855872299994,-50.85084400799995],[-74.92076575399994,-50.853204034],[-74.9312638009999,-50.85100676899983],[-74.9416397779999,-50.83757903399984],[-74.92406165299988,-50.83066171699993],[-74.85912024599989,-50.823907158999894],[-74.8802791009999,-50.81698984199998],[-74.90412350199989,-50.815118096999925],[-74.9260961579999,-50.810804945999834],[-74.9416397779999,-50.79656340899983],[-74.90632076699987,-50.79656340899983],[-74.94774329299987,-50.77996184699987],[-74.9615779289999,-50.769219658999944],[-74.94786536399997,-50.76246510199982],[-74.95897376199989,-50.72828541499983],[-74.92634029899995,-50.725355726999894],[-74.8448380199999,-50.7482235659999],[-74.85411536399997,-50.73113372199986],[-74.89439856699994,-50.716078382999854],[-74.90632076699987,-50.700372002999885],[-74.90111243399988,-50.67603932099991],[-74.87759355399992,-50.68181731599987],[-74.8318578769999,-50.7072079409999],[-74.8223770819999,-50.69548919099982],[-74.82787024599992,-50.67815520599992],[-74.82848059799989,-50.665134372999844],[-74.80451412699993,-50.66627369599988],[-74.74242102799991,-50.7072079409999]]],[[[-75.02668209499993,-50.669366143999945],[-75.02009029899995,-50.672946873000015],[-75.01496334499983,-50.67148202899996],[-75.01146399599995,-50.668145440999936],[-75.0099177729999,-50.66627369599988],[-75.00112870999993,-50.6618791649998],[-74.99225826699988,-50.65553150799995],[-74.98542232999998,-50.657159112999885],[-74.98265540299991,-50.67620208099988],[-74.98473059799994,-50.68962981599987],[-74.99413001199986,-50.711114190999986],[-74.99624589799987,-50.72429778399985],[-74.99624589799987,-50.75872161299997],[-74.99913489499991,-50.78118254999988],[-74.9964900379999,-50.79208749799995],[-74.98570716099991,-50.79656340899983],[-74.98448645699989,-50.79656340899983],[-74.98241126199989,-50.79713307099989],[-74.98151607999998,-50.797784112999935],[-74.98135331899991,-50.80006275799991],[-74.98468990799995,-50.80331796699986],[-74.99986731699994,-50.81161874799984],[-75.00548255099991,-50.81357187299989],[-75.00706946499986,-50.81389739399991],[-75.01683508999992,-50.81275807099988],[-75.03709876199991,-50.80592213299986],[-75.0677791009999,-50.79119231599996],[-75.07510331899991,-50.7897274719999],[-75.08389238199987,-50.783623955999914],[-75.0968318349999,-50.75465260199983],[-75.10240637899989,-50.74504973799985],[-75.11253821499986,-50.73251718499985],[-75.11314856699991,-50.72128671699985],[-75.1058650379999,-50.71233489399982],[-75.0924373039999,-50.7072079409999],[-75.07917232999998,-50.710544528999925],[-75.06680253799993,-50.7184384089999],[-75.05524654899992,-50.72079843499995],[-75.04405676999991,-50.7072079409999],[-75.06273352799987,-50.691582940999915],[-75.0803930329999,-50.671075127999956],[-75.0816951159999,-50.654880467],[-75.05150305899988,-50.65260182099993],[-75.04393469999994,-50.654880467],[-75.03795325399992,-50.6583798159999],[-75.02668209499993,-50.669366143999945]]],[[[-74.60265051999993,-50.56308359199994],[-74.64045162699992,-50.58635833099987],[-74.67349199099995,-50.57691822699986],[-74.67137610599985,-50.556898695999976],[-74.68455969999991,-50.53199635199994],[-74.68097896999993,-50.51482512799992],[-74.66649329299989,-50.50310637799984],[-74.64757239499994,-50.50448984199991],[-74.62730872299994,-50.510918877999835],[-74.60871334499987,-50.51482512799992],[-74.58409583199995,-50.530938408999894],[-74.60265051999993,-50.56308359199994]]],[[[-75.36314856699993,-50.48674895599983],[-75.35260982999989,-50.50115325299998],[-75.34154212099986,-50.487888278999854],[-75.33763587099986,-50.474867445999955],[-75.33092200399992,-50.46648528399991],[-75.31159420499989,-50.46705494599997],[-75.29991614499987,-50.473809502999906],[-75.28917395699996,-50.494398695999855],[-75.27684485599994,-50.50115325299998],[-75.26891028599997,-50.50009530999993],[-75.26162675699995,-50.49553801899989],[-75.25674394399988,-50.490655205999914],[-75.25633704299989,-50.48805103999992],[-75.24937903599988,-50.490655205999914],[-75.24242102799991,-50.49504973799989],[-75.23737545499995,-50.49944426899997],[-75.2359106109999,-50.50115325299998],[-75.23058020699993,-50.50302499799985],[-75.22752844999985,-50.50554778399987],[-75.22345943899998,-50.50790780999992],[-75.21540279899995,-50.508558851999965],[-75.20763098899994,-50.506442966999956],[-75.20372473899994,-50.502129815999865],[-75.20055091099988,-50.49749114399993],[-75.1948949859999,-50.494317315999865],[-75.16246497299991,-50.49236419099982],[-75.12604732999992,-50.494317315999865],[-75.10533606699991,-50.49578215899984],[-75.09740149599986,-50.49724700299989],[-75.0988663399999,-50.50237395599999],[-75.11168372299994,-50.52369557099996],[-75.11986243399986,-50.533623955999964],[-75.12954667899993,-50.54273853999987],[-75.13963782499987,-50.549004815999815],[-75.15514075399989,-50.55103932099985],[-75.16637122299989,-50.54957447699997],[-75.17446855399993,-50.552992445999884],[-75.18065344999988,-50.57000090899986],[-75.18805904899997,-50.56389739399996],[-75.19635982999995,-50.55966562299985],[-75.20543372299994,-50.55706145599994],[-75.21540279899995,-50.5564104149998],[-75.20360266799989,-50.580824476999936],[-75.20246334499983,-50.59295012799985],[-75.21540279899995,-50.59693775799992],[-75.24608313699986,-50.59734465899992],[-75.26891028599997,-50.58977629999997],[-75.30077063699989,-50.556573174999954],[-75.32152258999989,-50.549004815999815],[-75.34557044199991,-50.56072356599989],[-75.27086341099991,-50.62053801899995],[-75.2904353509999,-50.64576588299992],[-75.29735266799989,-50.63836028399993],[-75.30475826699987,-50.64576588299992],[-75.28246008999992,-50.652927341999956],[-75.27204342399995,-50.657647393999866],[-75.26317298099988,-50.66627369599988],[-75.27501380099994,-50.67546965899985],[-75.28075110599991,-50.68108489399985],[-75.28302975199989,-50.68621184699995],[-75.28429114499991,-50.69353606599995],[-75.28123938699991,-50.69947682099989],[-75.27749589799987,-50.70916106599994],[-75.28229732999995,-50.716078382999854],[-75.30475826699987,-50.71404387799983],[-75.30475826699987,-50.720879815999844],[-75.29002844999988,-50.72828541499983],[-75.27912350199988,-50.739841403999854],[-75.27464758999994,-50.75408294099986],[-75.27892005099994,-50.77011484199985],[-75.29059811099995,-50.78183359199993],[-75.30793209499984,-50.789483330999865],[-75.32506262899997,-50.788995049999876],[-75.33604895699992,-50.776462497999965],[-75.33617102799991,-50.770684503],[-75.33242753799996,-50.75758228999994],[-75.33141028599991,-50.751641533999916],[-75.33629309799997,-50.74081796699991],[-75.34654700399989,-50.746270440999865],[-75.35631262899994,-50.75725676899991],[-75.35936438699994,-50.76246510199982],[-75.38646399599985,-50.772067966999884],[-75.41063391799986,-50.772393487999906],[-75.46182206899991,-50.76246510199982],[-75.45799719999991,-50.75400155999996],[-75.45189368399991,-50.7478166649999],[-75.4437556629999,-50.74382903399992],[-75.43390865799998,-50.74195728999995],[-75.44863847599987,-50.72380950299986],[-75.4549861319999,-50.71233489399982],[-75.4515681629999,-50.7072079409999],[-75.43854732999992,-50.70598723799988],[-75.4238988919999,-50.70208098799998],[-75.41201738199993,-50.69459400799992],[-75.40713456899988,-50.683282158999845],[-75.4070531889999,-50.67376067499984],[-75.40892493399984,-50.67131926899999],[-75.48228919199988,-50.67506275799984],[-75.49657141799989,-50.67245859199984],[-75.50755774599995,-50.66562265400001],[-75.51427161399988,-50.65683359199986],[-75.5138240229999,-50.64910247199985],[-75.50332597599993,-50.64576588299992],[-75.48643958199992,-50.64609140399994],[-75.47581946499989,-50.64430103999995],[-75.47028561099995,-50.63730234199997],[-75.46861731699994,-50.62127044099998],[-75.45596269399988,-50.606377862999835],[-75.4269099599999,-50.604099216999956],[-75.37303626199989,-50.61101653399986],[-75.37511145699989,-50.60654062299999],[-75.37800045499992,-50.5953101539999],[-75.37987219999988,-50.590508722],[-75.35936438699994,-50.590508722],[-75.37694251199986,-50.57236093499991],[-75.39028886599986,-50.5525041649999],[-75.40689042899993,-50.538181247999916],[-75.43390865799998,-50.535902601999844],[-75.43199622299991,-50.531182549999926],[-75.42951412699989,-50.51970794099989],[-75.42764238199993,-50.51482512799992],[-75.44147701699983,-50.51482512799992],[-75.45303300699996,-50.511488539999895],[-75.46206620999996,-50.50465260199988],[-75.46861731699994,-50.494317315999865],[-75.46035722599996,-50.49130624799995],[-75.45221920499995,-50.4894345029999],[-75.43419348899991,-50.48805103999992],[-75.42418372299994,-50.48381926899999],[-75.41657467399989,-50.464532158999866],[-75.40379798099985,-50.46013762799997],[-75.3819880849999,-50.463962497999894],[-75.37071692599991,-50.473565362999956],[-75.36314856699993,-50.48674895599983]]],[[[-74.48916581899991,-50.473809502999906],[-74.47667395699992,-50.47633228999984],[-74.43081620999993,-50.473809502999906],[-74.41026770699997,-50.46795012799996],[-74.39614824099993,-50.45810312299994],[-74.38312740799995,-50.455987237999935],[-74.3656306629999,-50.473809502999906],[-74.35631262899994,-50.490655205999914],[-74.34748287699992,-50.51165129999986],[-74.33267167899993,-50.57732512799986],[-74.31867428299998,-50.591973565999865],[-74.28376217399995,-50.61101653399986],[-74.27110755099989,-50.62428150799998],[-74.23900305899991,-50.67620208099988],[-74.24925696499994,-50.68010833099996],[-74.34455318899997,-50.66627369599988],[-74.38654537699995,-50.651055596999896],[-74.40876217399992,-50.64690520599994],[-74.42711341099988,-50.65260182099993],[-74.40257727799985,-50.664320570999834],[-74.34398352799991,-50.672051690999844],[-74.31053626199986,-50.68906015399999],[-74.29816646999991,-50.6920712219999],[-74.28795325399989,-50.69768645599999],[-74.28376217399995,-50.71062590899991],[-74.27806555899987,-50.720391533999944],[-74.26524817599994,-50.72063567499998],[-74.24242102799991,-50.71404387799983],[-74.22264563699989,-50.72161223799987],[-74.20348059799994,-50.73992278399984],[-74.18858801999988,-50.76238372199984],[-74.18130449099996,-50.782321872999916],[-74.18065344999991,-50.80803801899996],[-74.18610592399995,-50.83310312299996],[-74.19920813699991,-50.84832122199994],[-74.23672441299993,-50.84107838299991],[-74.24266516799986,-50.80535247199989],[-74.25641842399997,-50.7897274719999],[-74.26935787699988,-50.786553643999845],[-74.27765865799995,-50.7893205709999],[-74.28628495999988,-50.79412200299997],[-74.31550045499992,-50.800713799999954],[-74.31737219999988,-50.81047942499999],[-74.31041419199988,-50.83416106599983],[-74.32217363199996,-50.84587981599991],[-74.34801184799989,-50.842054945999806],[-74.37376868399991,-50.827406507999974],[-74.3855688139999,-50.8065731749999],[-74.3967992829999,-50.7914364559999],[-74.41685950399993,-50.77613697699994],[-74.42479407499991,-50.761488539999846],[-74.39976966099991,-50.7482235659999],[-74.43309485599988,-50.74342213299992],[-74.48302161399994,-50.74195728999995],[-74.51707923099985,-50.731622002999856],[-74.50283769399994,-50.700372002999885],[-74.53823808499996,-50.692640882999875],[-74.54381262899996,-50.69019947699984],[-74.54698645699993,-50.682224216999884],[-74.56769771999984,-50.65569426899983],[-74.5812068349999,-50.63355885199985],[-74.57022050699996,-50.62004973799996],[-74.53014075399994,-50.60418059699994],[-74.5272517569999,-50.59889088299995],[-74.52391516799989,-50.58961353999982],[-74.51952063699989,-50.58074309699996],[-74.51341712099992,-50.57691822699986],[-74.46532141799993,-50.57000090899986],[-74.46117102799991,-50.56568775799994],[-74.46865800699996,-50.54412200299985],[-74.46865800699996,-50.535902601999844],[-74.45962480399996,-50.530450127999906],[-74.44640051999991,-50.52792734199989],[-74.43219967399989,-50.52752044099988],[-74.42027747299994,-50.528497002999856],[-74.43146725199998,-50.52068450299987],[-74.44399980399987,-50.51555754999995],[-74.45685787699989,-50.51531340899991],[-74.46865800699996,-50.52223072699991],[-74.48741614499991,-50.51311614399991],[-74.50145423099988,-50.50920989399983],[-74.56053626199991,-50.50701262799992],[-74.57957923099988,-50.50139739399983],[-74.5951228509999,-50.49081796699997],[-74.60521399599986,-50.473809502999906],[-74.62092037699992,-50.479180596999875],[-74.63963782499991,-50.481866143999945],[-74.6582738919999,-50.48056405999986],[-74.67349199099995,-50.473809502999906],[-74.65355383999989,-50.46526458099989],[-74.61058508999992,-50.43857187299987],[-74.59504146999993,-50.43287525799988],[-74.56956946499992,-50.42937590899999],[-74.55247962099986,-50.423923434999864],[-74.5371801419999,-50.42457447699991],[-74.51707923099985,-50.439711195999905],[-74.50967363199987,-50.44939544099995],[-74.50454667899996,-50.45875416499981],[-74.49864661399991,-50.46705494599997],[-74.48916581899991,-50.473809502999906]]],[[[-74.58006751199989,-50.37607187299993],[-74.56769771999984,-50.37818775799993],[-74.54938717399997,-50.37818775799993],[-74.5445857409999,-50.38209400799985],[-74.54381262899996,-50.39185963299988],[-74.55500240799998,-50.40374114399984],[-74.57892818899995,-50.409844658999916],[-74.62633216099988,-50.41236744599984],[-74.62633216099988,-50.418633721999974],[-74.62295488199996,-50.42799244599983],[-74.62873287699992,-50.43962981599992],[-74.64085852799991,-50.44931405999988],[-74.65672766799995,-50.453301690999865],[-74.67503821499992,-50.45435963299982],[-74.68447831899991,-50.45777760199992],[-74.72028561099992,-50.489353122999916],[-74.7303767569999,-50.49309661299986],[-74.74616451699984,-50.494317315999865],[-74.77676347599996,-50.493340752999984],[-74.7853083979999,-50.4894345029999],[-74.78335527299993,-50.48064544099993],[-74.77757727799988,-50.46119557099984],[-74.76634680899988,-50.444024347],[-74.73558508999989,-50.41236744599984],[-74.74400794199994,-50.409274997999944],[-74.76292883999986,-50.3986955709999],[-74.73672441299993,-50.37184010199982],[-74.69595292899994,-50.36239999799999],[-74.60871334499987,-50.363946221999846],[-74.59959876199986,-50.366306247999894],[-74.58006751199989,-50.37607187299993]]],[[[-74.97626633699991,-50.43288751599984],[-75.04452230199988,-50.47599439799995],[-75.11166039099987,-50.46896464999988],[-75.17158148999997,-50.46215001499994],[-75.16850483699993,-50.43038424299993],[-75.12117753099997,-50.38208595499998],[-75.07170163399992,-50.34751543399998],[-74.97027669299985,-50.287516392999926],[-74.92659713399988,-50.275426110999845],[-74.88925839099988,-50.29492320099993],[-74.92852759699991,-50.3367542139999],[-74.96250745399988,-50.35830182899992],[-74.95444723699993,-50.38815379899986],[-74.97626633699991,-50.43288751599984]]],[[[-75.29161536399991,-50.02890390399997],[-75.28726152299993,-50.039727471999875],[-75.2804255849999,-50.04989999799991],[-75.27684485599994,-50.059258721999946],[-75.27147376199987,-50.06707122199994],[-75.2595922519999,-50.06015390399994],[-75.23350989499994,-50.031996351999865],[-75.22964433499996,-50.02890390399997],[-75.22716223899994,-50.030694268999866],[-75.20173092399992,-50.035739841999984],[-75.1714981759999,-50.02337004999986],[-75.15705318899995,-50.021416925],[-75.12873287699992,-50.029554945999834],[-75.12474524599992,-50.04851653399984],[-75.13101152299987,-50.06943124799999],[-75.1334122389999,-50.083428643999945],[-75.12181555899991,-50.09303150799993],[-75.10936438699989,-50.088311455999836],[-75.09679114499991,-50.07935963299981],[-75.08503170499992,-50.076592705999936],[-75.07909094999991,-50.082696221999925],[-75.05540930899988,-50.12322356599994],[-75.05211341099994,-50.125176690999986],[-75.04405676999991,-50.125095309999914],[-75.03522701699984,-50.1212704409999],[-75.03258216099997,-50.114922783999866],[-75.03213456899996,-50.10816822699993],[-75.02977454299992,-50.103936456],[-75.01577714799996,-50.10027434699995],[-75.00031490799992,-50.097914320999905],[-74.98778235599991,-50.09254322699994],[-74.98265540299991,-50.080010674999855],[-74.97716223899988,-50.07219817499986],[-74.96524003799993,-50.072360935],[-74.9532771479999,-50.07976653399999],[-74.94786536399997,-50.09400807099982],[-74.95213782499988,-50.10881926899997],[-74.96271725199992,-50.11630624799994],[-74.98884029899997,-50.125095309999914],[-75.07140051999995,-50.1796200499999],[-75.07140051999995,-50.186455987999906],[-75.05101477799988,-50.18564218499999],[-75.0366918609999,-50.18320077899996],[-74.99290930899993,-50.16692473799984],[-74.9801326159999,-50.16521575299993],[-74.94786536399997,-50.16529713299991],[-74.94298255099989,-50.166761976999965],[-74.93358313699989,-50.17253997199993],[-74.92804928299995,-50.17278411299997],[-74.92365475199995,-50.16969166499989],[-74.92023678299995,-50.16090260199983],[-74.91710364499988,-50.15911223799985],[-74.90111243399988,-50.152601820999855],[-74.8932185539999,-50.15162525799997],[-74.87828528599997,-50.15488046699991],[-74.86945553299992,-50.15829843499993],[-74.86046301999988,-50.15520598799994],[-74.8448380199999,-50.13876718499985],[-74.85065670499995,-50.13469817499998],[-74.85342363199992,-50.13030364399991],[-74.85553951699984,-50.12468840899991],[-74.85912024599989,-50.117608330999936],[-74.81501217399992,-50.11891041499985],[-74.79971269399994,-50.125420830999936],[-74.79084225199989,-50.14560312299987],[-74.79369055899994,-50.16985442499986],[-74.81590735599991,-50.195489190999915],[-74.81126868399988,-50.21379973799998],[-74.83385169199994,-50.21949635199987],[-74.94237219999994,-50.220147393999916],[-74.95128333199997,-50.224053643999824],[-74.95278886599993,-50.233168226999815],[-74.95055091099992,-50.24578215899989],[-74.95221920499995,-50.25676848799985],[-74.98151607999998,-50.26588307099984],[-75.01756751199994,-50.28508879999989],[-75.04063880099989,-50.289483330999964],[-75.05931555899988,-50.29778411299985],[-75.07559160099989,-50.31373463299995],[-75.09410559799991,-50.32439544099989],[-75.11978105399987,-50.31682708099984],[-75.11628170499989,-50.32350025799981],[-75.11367753799989,-50.332696221999875],[-75.1148982409999,-50.3407528629999],[-75.12287350199995,-50.344170830999914],[-75.13499915299985,-50.34644947699998],[-75.1400447259999,-50.35198333099991],[-75.14248613199993,-50.358575127999885],[-75.14647376199991,-50.363946221999846],[-75.17072506399998,-50.37818775799993],[-75.18077551999997,-50.38079192499985],[-75.18468176999993,-50.387139580999964],[-75.18675696499987,-50.39478932099981],[-75.19115149599986,-50.40178801899997],[-75.20327714799996,-50.415704033999866],[-75.21129309799991,-50.42782968499994],[-75.22288977799991,-50.436455987999864],[-75.24608313699986,-50.439711195999905],[-75.30557206899987,-50.43230559699992],[-75.32115637899997,-50.42750416499984],[-75.32420813699989,-50.419203382999946],[-75.32506262899997,-50.409844658999916],[-75.32323157499991,-50.40032317499992],[-75.31777910099996,-50.39185963299988],[-75.27647864499991,-50.373793226999865],[-75.27375240799995,-50.37078215899995],[-75.25365149599989,-50.36248137799996],[-75.23021399599992,-50.342868747999916],[-75.1948949859999,-50.302504164999945],[-75.21446692599997,-50.30396900799992],[-75.24258378799996,-50.31373463299995],[-75.27009029899988,-50.32756926899995],[-75.29698645699996,-50.34644947699998],[-75.30776933499988,-50.34742603999986],[-75.31358801999991,-50.3433570289999],[-75.30817623599998,-50.33326588299984],[-75.29059811099995,-50.32195403399995],[-75.2852270169999,-50.315362237999885],[-75.2904353509999,-50.30877044099991],[-75.3045955069999,-50.305271092],[-75.31167558499986,-50.311130466999956],[-75.31688391799986,-50.32105885199996],[-75.32526607999992,-50.32984791499984],[-75.33641516799995,-50.333754164999924],[-75.34593665299994,-50.33326588299984],[-75.35627193899995,-50.331231378],[-75.36961829299986,-50.32984791499984],[-75.39093990799992,-50.33806731599983],[-75.41169186099992,-50.35458749799999],[-75.43272864499993,-50.36736419099994],[-75.45494544199991,-50.363946221999846],[-75.46092688699991,-50.35003020599986],[-75.44505774599988,-50.27662525799985],[-75.43740800699987,-50.26881275799986],[-75.42756100199995,-50.26344166499981],[-75.40086829299992,-50.257989190999865],[-75.40412350199998,-50.24993254999983],[-75.42145748599995,-50.23495859199989],[-75.42015540299988,-50.2224260399998],[-75.41624915299988,-50.216403903999975],[-75.41128495999989,-50.21257903399987],[-75.40713456899988,-50.20696379999996],[-75.39745032499991,-50.17164478999994],[-75.39045162699995,-50.1622860659999],[-75.36709550699993,-50.14739348799995],[-75.34788977799988,-50.14519622199986],[-75.29735266799989,-50.15911223799985],[-75.2678930329999,-50.15862395599995],[-75.25975501199989,-50.1622860659999],[-75.25609290299992,-50.170179945999884],[-75.2592667309999,-50.17799244599988],[-75.26618404899989,-50.184014580999964],[-75.27375240799995,-50.186455987999906],[-75.31761633999989,-50.18857187299992],[-75.3391820949999,-50.192803643999845],[-75.35260982999989,-50.20077890399998],[-75.33189856699988,-50.219008070999884],[-75.31891842399989,-50.22616952900001],[-75.30817623599998,-50.224053643999824],[-75.29474850199989,-50.21754322699983],[-75.28612219999988,-50.22576262799983],[-75.27916419199988,-50.239353122999965],[-75.27061926999997,-50.24863046700001],[-75.2562149729999,-50.24968840899997],[-75.24233964799993,-50.24578215899989],[-75.22793535099996,-50.244073174999876],[-75.21165930899991,-50.25164153399984],[-75.19798743399988,-50.25628020599995],[-75.1793106759999,-50.25579192499996],[-75.14647376199991,-50.24863046700001],[-75.15672766799992,-50.221449476999915],[-75.14492753799996,-50.19703541499996],[-75.12726803299995,-50.17083098799993],[-75.11978105399987,-50.13876718499985],[-75.16478430899986,-50.16155364399988],[-75.18797766799989,-50.16415780999988],[-75.2150772779999,-50.15545012799989],[-75.22667395699995,-50.14853280999989],[-75.24608313699986,-50.12810637799983],[-75.25869706899992,-50.12346770599989],[-75.29088294199987,-50.12688567499999],[-75.30475826699987,-50.125095309999914],[-75.32152258999989,-50.11272551899988],[-75.33800208199997,-50.096612237999906],[-75.35749264199987,-50.08261484199994],[-75.38329016799989,-50.076592705999936],[-75.38638261599988,-50.071709893999866],[-75.39785722599993,-50.047784112999906],[-75.40038001199994,-50.03915781],[-75.39476477799994,-50.031996351999865],[-75.38166256399995,-50.03289153399986],[-75.36583411399994,-50.03582122199996],[-75.35260982999989,-50.035739841999984],[-75.3430883449999,-50.02841562299997],[-75.3301488919999,-50.00709400799983],[-75.32526607999992,-50.0015601539999],[-75.31289628799988,-50.00042083099987],[-75.29698645699996,-50.00286223799999],[-75.28571529899997,-50.008965752999885],[-75.28742428299998,-50.01824309699994],[-75.29161536399991,-50.02890390399997]]],[[[-75.48519168399989,-49.56466565699986],[-75.47223205799989,-49.572738470999894],[-75.45858781699994,-49.570768721999904],[-75.44621974399985,-49.57883543199996],[-75.43383839999984,-49.58288291599983],[-75.41153686099989,-49.58494433299995],[-75.39423567499995,-49.591006717999825],[-75.38157881399988,-49.60323644499999],[-75.35533944599987,-49.61017613999981],[-75.34532630099989,-49.63567473799997],[-75.32848059799989,-49.652032158999894],[-75.31159420499989,-49.67253997199985],[-75.30752519399994,-49.680108330999985],[-75.30109615799992,-49.69882577899987],[-75.29735266799989,-49.706719658999845],[-75.29141191299996,-49.70956796699997],[-75.28246008999992,-49.711032809999935],[-75.27424068899992,-49.714776299999876],[-75.26943925699993,-49.727227471999974],[-75.26691646999993,-49.73113372199989],[-75.26431230399993,-49.736586195999834],[-75.26317298099988,-49.74423593499995],[-75.2535701159999,-49.76043059699999],[-75.21129309799991,-49.79273853999984],[-75.20173092399992,-49.81218840899984],[-75.17788652299993,-49.884209893999866],[-75.18065344999988,-49.90536874799995],[-75.19298255099994,-49.891289971999825],[-75.20734615799992,-49.884698174999855],[-75.2220759759999,-49.87981536299997],[-75.2359106109999,-49.87118905999988],[-75.24714107999989,-49.85605234199996],[-75.2532445949999,-49.84351978999988],[-75.26276607999988,-49.834567966999856],[-75.28429114499991,-49.829522393999916],[-75.27603105399993,-49.84140390399996],[-75.26935787699995,-49.857191664999824],[-75.2648005849999,-49.87395598799984],[-75.26317298099988,-49.887872002999906],[-75.27041581899991,-49.898044528999954],[-75.2864884109999,-49.895114841999934],[-75.30308997299994,-49.88591887799987],[-75.31159420499989,-49.87737395599985],[-75.33971106699988,-49.85955169099987],[-75.3673396479999,-49.828871351999865],[-75.37572180899986,-49.79859791499997],[-75.34577389199987,-49.78183359199995],[-75.36620032499985,-49.72031015399998],[-75.37303626199989,-49.72031015399998],[-75.38451087099992,-49.74822356599993],[-75.43125425699989,-49.75837686299989],[-75.44810950399987,-49.77499765399993],[-75.47554811899991,-49.78138109199998],[-75.48990700999994,-49.786738867],[-75.50649980399986,-49.79550546699989],[-75.5206192699999,-49.80071379999997],[-75.5402373819999,-49.80818033799994],[-75.54279399199996,-49.82357674899993],[-75.54413818799989,-49.83667820699984],[-75.57414489999991,-49.84739479899996],[-75.61738695599985,-49.86422267899981],[-75.63485425899995,-49.82794301999998],[-75.62030425799992,-49.80951103999991],[-75.63545525299992,-49.781722598],[-75.62678626299996,-49.75634257099997],[-75.5885084249999,-49.74570073899982],[-75.55500244599995,-49.73426623499999],[-75.52525159499996,-49.739723542999975],[-75.5107572769999,-49.71822296499986],[-75.52136676999996,-49.7051241179999],[-75.54041469599991,-49.704301656999974],[-75.56354732999998,-49.707452080999865],[-75.58667750799992,-49.6879982219999],[-75.58290930599989,-49.66571432899988],[-75.58149384299992,-49.64264951699984],[-75.61351964699986,-49.63637545399986],[-75.5740707109999,-49.61268836599984],[-75.56301177299989,-49.599764945],[-75.54801928399992,-49.588968173999916],[-75.52938104999993,-49.58621901699991],[-75.51186060399986,-49.58827716699985],[-75.49751930199987,-49.58350369299995],[-75.49881389699988,-49.57386525799996],[-75.5087412609999,-49.56378898199989],[-75.5043518679999,-49.55697339599996],[-75.49505736099994,-49.557404383],[-75.48519168399989,-49.56466565699986]]],[[[-74.39700273299984,-49.618422132999875],[-74.41539466099988,-49.62379322699984],[-74.42601477799992,-49.61492278399997],[-74.43529212099988,-49.60279713299988],[-74.43309485599988,-49.572523695999806],[-74.44017493399986,-49.55103932099987],[-74.43407141799986,-49.53427499799985],[-74.43761145699995,-49.52516041499986],[-74.46373450399992,-49.508884373],[-74.46861731699997,-49.50115325299999],[-74.46678626199987,-49.49342213299981],[-74.46080481699987,-49.487074476999865],[-74.45352128799996,-49.481052341999956],[-74.44810950399992,-49.47389088299992],[-74.44493567599994,-49.46510182099995],[-74.44261633999987,-49.45549895599988],[-74.44070390499992,-49.43572356599986],[-74.43643144399991,-49.42701588299995],[-74.4270320299999,-49.42652760199997],[-74.41771399599986,-49.430759372999894],[-74.41336015499988,-49.43572356599986],[-74.40855872299997,-49.44801197699991],[-74.39700273299984,-49.45183684699983],[-74.38333085799991,-49.45191822699981],[-74.37181555899987,-49.45338307099987],[-74.35313880099989,-49.46526458099991],[-74.3069148429999,-49.51864999799986],[-74.29898027299993,-49.53232187299999],[-74.29360917899987,-49.53875090899991],[-74.28799394399988,-49.548435153999954],[-74.29308020699989,-49.55462004999993],[-74.37181555899987,-49.5936825499999],[-74.3795466789999,-49.606133721999825],[-74.39700273299984,-49.618422132999875]]],[[[-75.4705813239999,-49.40314945500002],[-75.46120726499996,-49.41855571699984],[-75.46721344399987,-49.434691946999855],[-75.46848242299988,-49.44929831199985],[-75.45905925699995,-49.458557635999824],[-75.44475428999993,-49.45016819999988],[-75.43529417199994,-49.45712748299989],[-75.42943267599992,-49.46636515599993],[-75.4342555929999,-49.48017988599989],[-75.43312914199987,-49.48940315099999],[-75.4308366409999,-49.50170311299984],[-75.44041954199992,-49.517810861999884],[-75.45109330399995,-49.518547777999935],[-75.45577813999998,-49.51008088899989],[-75.46638622099991,-49.497746882999884],[-75.49245701399987,-49.49535086399997],[-75.4995054849999,-49.48533071799992],[-75.51249538499991,-49.478358791999845],[-75.53135242899988,-49.464452353999945],[-75.54429919599997,-49.45286636699992],[-75.53710461099985,-49.440588078999916],[-75.51815099699988,-49.43912132499988],[-75.50157544599995,-49.438411026],[-75.50264592099995,-49.42148808999991],[-75.5167997209999,-49.414512727999906],[-75.53578466299986,-49.42136179399994],[-75.5475541019999,-49.411311342999966],[-75.54149375899992,-49.39055984999992],[-75.52130818799989,-49.379099001999855],[-75.5059767199999,-49.38685564799985],[-75.48951388599991,-49.40307624999991],[-75.4705813239999,-49.40314945500002]]],[[[-75.07921301999997,-49.03753020599999],[-75.05337480399993,-49.05478281],[-75.01475989499988,-49.070570570999855],[-74.99974524599986,-49.07976653399984],[-74.99006100199989,-49.07659270599996],[-74.98330644399996,-49.03093840899983],[-74.97203528599997,-49.031670830999865],[-74.91681881399995,-49.07048919099988],[-74.90318762899992,-49.07675546700001],[-74.89045162699993,-49.095472914999895],[-74.8949275379999,-49.137627862999935],[-74.91368567599997,-49.20574309699997],[-74.9156794909999,-49.25139739399991],[-74.92052161399988,-49.272637627999984],[-74.93569902299987,-49.28045012799997],[-74.94912675699987,-49.27711353999995],[-74.96271725199992,-49.27060312299996],[-75.01284745999993,-49.237725518999966],[-75.05996660099993,-49.19646575299992],[-75.07876542899986,-49.172295830999914],[-75.07433020699989,-49.16806405999998],[-75.06948808499989,-49.16578541499983],[-75.06407630099996,-49.16521575299995],[-75.05772864499994,-49.16545989399998],[-75.08975175699993,-49.158379815999844],[-75.20173092399992,-49.172295830999914],[-75.20173092399992,-49.16545989399998],[-75.16698157499984,-49.14495208099984],[-75.1305232409999,-49.13681406000001],[-75.11978105399987,-49.13128020599991],[-75.15762285099993,-49.12859465899984],[-75.2039281889999,-49.140883070999976],[-75.23558508999989,-49.14495208099984],[-75.22964433499996,-49.11695728999983],[-75.22032630099991,-49.10613372199992],[-75.15843665299994,-49.05103932099997],[-75.13931230399996,-49.04631926899987],[-75.09870357999995,-49.0487606749999],[-75.1080216139999,-49.04412200299997],[-75.11579342399988,-49.03818124799986],[-75.12181555899991,-49.03069426899989],[-75.12604732999992,-49.02141692499984],[-75.11245683499988,-49.02410247199991],[-75.09544837099992,-49.02988046699988],[-75.07921301999997,-49.03753020599999]]],[[[-75.36652584499987,-49.040785414999945],[-75.37303626199989,-49.056247653999876],[-75.34854081899994,-49.04810963299986],[-75.3378800119999,-49.046563409],[-75.32526607999992,-49.0487606749999],[-75.31297766799986,-49.05535247199988],[-75.30345618399988,-49.06511809699992],[-75.28742428299998,-49.08660247199985],[-75.29320227799985,-49.10670338299989],[-75.31590735599988,-49.13347747199999],[-75.33893795499995,-49.146416924999905],[-75.34577389199987,-49.12444426899998],[-75.3893123039999,-49.17913176899993],[-75.40379798099985,-49.186618747999894],[-75.42052161399988,-49.18132903399992],[-75.42174231699991,-49.16790129999984],[-75.41315670499998,-49.15007903399995],[-75.40038001199994,-49.13128020599991],[-75.4151912099999,-49.134942315999865],[-75.42198645699995,-49.14527760199987],[-75.42638098899991,-49.15886809699983],[-75.43390865799998,-49.172295830999914],[-75.44005286399997,-49.17571379999983],[-75.45441646999984,-49.176039320999855],[-75.46182206899991,-49.17913176899993],[-75.46861731699994,-49.20574309699997],[-75.47166907499985,-49.20891692499985],[-75.4749242829999,-49.21013762799986],[-75.47850501199984,-49.21282317499993],[-75.48224850199989,-49.21998463299988],[-75.48200436099995,-49.22429778399997],[-75.47911536399991,-49.22795989399993],[-75.47622636599988,-49.23259856599986],[-75.47606360599991,-49.23992278399996],[-75.48265540299991,-49.25408294099998],[-75.49376380099991,-49.263441664999824],[-75.50804602799991,-49.26799895599987],[-75.52383378799988,-49.267836195999905],[-75.53331458199997,-49.26392994599982],[-75.54898027299996,-49.252373955999886],[-75.55797278599997,-49.247328382999946],[-75.56798255099994,-49.24439869599993],[-75.58804277299988,-49.24212004999986],[-75.63508053299992,-49.22893645599991],[-75.65147864499994,-49.219496351999894],[-75.66104081899991,-49.20574309699997],[-75.64981035099993,-49.204847914999974],[-75.63902747299991,-49.20525481599998],[-75.62901770699992,-49.20769622199983],[-75.62010657499988,-49.212579033999894],[-75.63011633999989,-49.18474700299984],[-75.60732988199993,-49.15105559699983],[-75.56871497299989,-49.12273528399989],[-75.5306697259999,-49.11077239399986],[-75.55113684799994,-49.14495208099984],[-75.53555253799996,-49.138929945999934],[-75.50499426999994,-49.13258228999982],[-75.49657141799989,-49.12444426899998],[-75.50511633999992,-49.12810637799985],[-75.5102432929999,-49.128838799999876],[-75.52383378799988,-49.12444426899998],[-75.48375403599994,-49.100274346999974],[-75.46324622299987,-49.09099700299992],[-75.44810950399987,-49.09644947699987],[-75.44115149599992,-49.08521900799996],[-75.42235266799986,-49.071872653999854],[-75.4139705069999,-49.06243254999985],[-75.43390865799998,-49.06064218499995],[-75.44298255099989,-49.05559661299992],[-75.44102942599994,-49.04534270599998],[-75.42764238199993,-49.02825286299986],[-75.40697180899991,-49.0077450499999],[-75.39427649599986,-48.998142185],[-75.35130774599989,-48.985528252999934],[-75.33726966099994,-48.98935312299986],[-75.33141028599991,-49.010918877999956],[-75.3379613919999,-49.02353280999984],[-75.36652584499987,-49.040785414999945]]],[[[-75.42682857999992,-48.87835051899993],[-75.42162024599992,-48.88420989399989],[-75.40713456899988,-48.87737395599987],[-75.40135657499991,-48.89275481599991],[-75.39240475199989,-48.90667083099998],[-75.3789770169999,-48.91611093499999],[-75.35936438699994,-48.91838958099988],[-75.38329016799989,-48.87957122199995],[-75.38670813699991,-48.86687590899999],[-75.37926184799991,-48.85222747199988],[-75.36196855399993,-48.850274346999846],[-75.32835852799991,-48.85702890399997],[-75.3059789699999,-48.86492278399994],[-75.28490149599986,-48.88420989399989],[-75.26927649599989,-48.90789153399999],[-75.26065019399988,-48.939629815999865],[-75.24022376199991,-48.986911717],[-75.23810787699989,-48.99667734199986],[-75.2359106109999,-49.00090911299997],[-75.23058020699993,-49.00603606599989],[-75.21955318899998,-49.011407158999944],[-75.21540279899995,-49.014580987999906],[-75.20759029899995,-49.03460051899997],[-75.21320553299995,-49.05266692499999],[-75.22813880099991,-49.066094658999894],[-75.24864661399994,-49.07203541499992],[-75.27603105399993,-49.06324635199986],[-75.29214433499989,-49.03915781000001],[-75.31505286399987,-48.965508721999875],[-75.31387285099996,-48.95728932099988],[-75.31651770699993,-48.95370859199999],[-75.33141028599991,-48.95256926899996],[-75.3517146479999,-48.96510182099987],[-75.36392167899987,-48.96672942499989],[-75.37303626199989,-48.95256926899996],[-75.37531490799995,-48.963636976999815],[-75.37987219999988,-48.96803150799989],[-75.38634192599989,-48.969821872999965],[-75.39415442599989,-48.97307708099983],[-75.39976966099987,-48.97437916499992],[-75.41193600199993,-48.97372812299987],[-75.41771399599992,-48.976739190999965],[-75.42080644399991,-48.98105234199987],[-75.42577063699986,-48.991143487999935],[-75.42764238199993,-48.99407317499995],[-75.46507727799987,-49.03639088299996],[-75.4791560539999,-49.04192473799998],[-75.49933834499984,-49.03915781000001],[-75.5206192699999,-49.031426690999915],[-75.5332738919999,-49.019463799999976],[-75.52725175699987,-49.00408294099985],[-75.5099177729999,-48.99179452899989],[-75.49323482999995,-48.982598565999915],[-75.47883053299998,-48.971123955999964],[-75.46861731699994,-48.95256926899996],[-75.48680579299995,-48.95208098799997],[-75.50527910099986,-48.963067315999844],[-75.52424068899997,-48.97730885199993],[-75.54377193899994,-48.986586195999806],[-75.56956946499989,-48.989515882999825],[-75.59740149599995,-48.98772551899983],[-75.62437903599991,-48.98040129999983],[-75.64736894399987,-48.96689218499985],[-75.65664628799993,-48.951918226999915],[-75.65855872299989,-48.93230559699986],[-75.65485592399995,-48.91106536299996],[-75.64736894399987,-48.89120859199987],[-75.63365637899994,-48.87232838299993],[-75.61473548099994,-48.85865650799981],[-75.59658769399994,-48.858005466999856],[-75.58531653599994,-48.87737395599987],[-75.57843990799991,-48.86077239399991],[-75.5681860019999,-48.85247161299993],[-75.55455481699997,-48.85312265399988],[-75.5375056629999,-48.8632138],[-75.54067949099988,-48.83367278399997],[-75.52318274599992,-48.83538176899989],[-75.49559485599991,-48.84587981599994],[-75.46861731699994,-48.84270598799989],[-75.47960364499991,-48.85711028399995],[-75.52098548099994,-48.897067967],[-75.52725175699987,-48.908135674999855],[-75.51105709499993,-48.90862395599984],[-75.48672441299996,-48.89771900799995],[-75.46458899599989,-48.883558851999844],[-75.45494544199991,-48.874118748],[-75.44591223899991,-48.86223723799996],[-75.42564856699988,-48.84286874799986],[-75.40489661399991,-48.827732028999854],[-75.39415442599989,-48.82903411299995],[-75.39728756399995,-48.838474216999956],[-75.40632076699987,-48.84970468499996],[-75.41681881399991,-48.85914478999989],[-75.42454993399986,-48.8632138],[-75.42650305899988,-48.86842213299985],[-75.42682857999992,-48.87835051899993]]],[[[-75.09072831899991,-48.91448333099997],[-75.10090084499984,-48.922295830999964],[-75.10952714799996,-48.925225518999895],[-75.12621008999987,-48.91952890399991],[-75.13556881399991,-48.91765715899985],[-75.13963782499987,-48.921807549999976],[-75.13707434799997,-48.92929452899994],[-75.13048255099991,-48.9342587219999],[-75.12181555899991,-48.93726978999982],[-75.11294511599996,-48.93889739399984],[-75.07868404899989,-48.92937590899993],[-75.06444251199989,-48.94833749799985],[-75.07282467399995,-48.970310153999954],[-75.10582434799991,-48.96990325299994],[-75.13597571499992,-48.97079843499994],[-75.16515051999988,-48.98601653399992],[-75.1939998039999,-48.99570077899997],[-75.22301184799989,-48.97893645599995],[-75.23648027299987,-48.95598723799988],[-75.24714107999989,-48.92457447699985],[-75.24893144399988,-48.89332447699988],[-75.2359106109999,-48.87070077899991],[-75.25304114499993,-48.86874765399987],[-75.26813717399995,-48.86248137799991],[-75.28075110599991,-48.853204033999866],[-75.2904353509999,-48.84270598799989],[-75.30386308499988,-48.81617603999984],[-75.30907141799989,-48.801446221999846],[-75.30817623599998,-48.79485442499986],[-75.27489173099988,-48.79705169099995],[-75.21060136599996,-48.811781507999854],[-75.12083899599992,-48.84978606599986],[-75.09142005099994,-48.87070077899991],[-75.07876542899986,-48.89462655999988],[-75.08238684799993,-48.904473565999986],[-75.09072831899991,-48.91448333099997]]],[[[-74.68097896999993,-48.72665780999994],[-74.66486568899995,-48.73040129999988],[-74.63516191299993,-48.71900807099983],[-74.62267005099991,-48.72283294099993],[-74.6188044909999,-48.734144789999824],[-74.62555904899995,-48.74553801899988],[-74.63512122299994,-48.7575822899998],[-74.64000403599991,-48.7709286439999],[-74.63756262899996,-48.782484632999925],[-74.62755286399988,-48.80722421699999],[-74.62633216099988,-48.81536223799982],[-74.63467363199993,-48.827569268999895],[-74.65929114499994,-48.843031507999825],[-74.66734778599988,-48.85702890399997],[-74.65119381399992,-48.85751718499995],[-74.6348363919999,-48.8552385399998],[-74.62092037699992,-48.85035572699983],[-74.61213131399995,-48.84270598799989],[-74.60997473899997,-48.83261484200001],[-74.60928300699993,-48.81487395599993],[-74.61082923099985,-48.79656340899987],[-74.61546790299988,-48.78476327899998],[-74.61632239499988,-48.76336028399986],[-74.59764563699991,-48.73560963299997],[-74.56993567599991,-48.71257903399999],[-74.54381262899996,-48.706149997999894],[-74.52550208199992,-48.72283294099993],[-74.52261308499988,-48.752373955999985],[-74.53014075399994,-48.81194426899991],[-74.53014075399994,-48.86687590899999],[-74.53791256399992,-48.88176848799985],[-74.5531306629999,-48.89088307099985],[-74.56387285099993,-48.900974216999906],[-74.55809485599988,-48.91838958099988],[-74.52867591099988,-48.90593840899995],[-74.50584876199986,-48.905694268999824],[-74.48851477799988,-48.918877862999956],[-74.47549394399987,-48.94638437299999],[-74.47411048099991,-48.97437916499992],[-74.48656165299991,-48.99627044099986],[-74.50706946499989,-49.01360442499985],[-74.53014075399994,-49.02825286299986],[-74.50706946499989,-49.03948333099986],[-74.49461829299986,-49.05771249799993],[-74.48534094999991,-49.07927825299984],[-74.46178137899994,-49.11931731599988],[-74.47345943899995,-49.1482072899998],[-74.46865800699996,-49.172295830999914],[-74.46353105399996,-49.18010833099991],[-74.45250403599991,-49.191827080999985],[-74.4481501939999,-49.19963958099997],[-74.44481360599988,-49.21306731599997],[-74.4452205069999,-49.22275155999993],[-74.44709225199995,-49.23186614399984],[-74.4481501939999,-49.24374765399988],[-74.44579016799986,-49.30234140399992],[-74.4481501939999,-49.322442315999865],[-74.46654212099986,-49.379815362999885],[-74.47085527299996,-49.42327239399993],[-74.47679602799988,-49.442640882999946],[-74.48534094999991,-49.45956796699984],[-74.49543209499987,-49.47389088299992],[-74.50479081899991,-49.482679945999976],[-74.52920488199996,-49.500746351999815],[-74.53636633999987,-49.50798919099984],[-74.53941809799987,-49.5193010399999],[-74.53433183499996,-49.52385833099995],[-74.52700761599996,-49.528252862999935],[-74.52013098899994,-49.54892343499995],[-74.50601152299993,-49.563734632999925],[-74.50283769399994,-49.57293059699999],[-74.50365149599986,-49.587497653999925],[-74.50674394399994,-49.59343840899986],[-74.53132076699987,-49.60898202899986],[-74.54686438699986,-49.615980726999844],[-74.55435136599993,-49.62102629999996],[-74.55846106699988,-49.62908294099999],[-74.55646725199993,-49.64918385199986],[-74.55809485599988,-49.65829843499985],[-74.57030188699994,-49.66814544099996],[-74.58885657499985,-49.67913176899983],[-74.60383053299998,-49.69353606599998],[-74.60521399599986,-49.71355559699986],[-74.59325110599994,-49.72421640399988],[-74.5774633449999,-49.71559010199989],[-74.56187903599987,-49.69939544099993],[-74.53856360599988,-49.66871510199993],[-74.53477942599994,-49.641859632999854],[-74.52672278599994,-49.62786223799998],[-74.50829016799989,-49.620293877999934],[-74.48395748599991,-49.62314218499997],[-74.46043860599988,-49.631768487999885],[-74.44448808499996,-49.64177825299987],[-74.4300837879999,-49.657891533999845],[-74.42300370999993,-49.673109632999825],[-74.42052161399991,-49.68962981599989],[-74.42031816299993,-49.7341447899998],[-74.42365475199998,-49.744886976999815],[-74.43468176999991,-49.74732838299984],[-74.4581599599999,-49.74700286299991],[-74.46857662699996,-49.745049737999864],[-74.48326575399989,-49.736423434999956],[-74.49543209499987,-49.733982028999925],[-74.5064184239999,-49.735039971999974],[-74.51671301999994,-49.73805103999988],[-74.53636633999987,-49.74700286299991],[-74.51349850199989,-49.75758228999996],[-74.45433508999989,-49.772637627999885],[-74.43455969999985,-49.788669528999876],[-74.43195553299995,-49.80982838299997],[-74.43610592399989,-49.84124114399999],[-74.44448808499996,-49.87037525799987],[-74.45441646999987,-49.88486093499999],[-74.4603572259999,-49.861504815999915],[-74.4654841789999,-49.851332289999874],[-74.47549394399987,-49.84319426899986],[-74.47667395699992,-49.86386484199996],[-74.48940995999996,-49.86939869599989],[-74.50719153599994,-49.86532968499993],[-74.52330481699991,-49.85686614399998],[-74.52489173099985,-49.87070077899989],[-74.51618404899995,-49.884209893999866],[-74.50157630099993,-49.89446379999989],[-74.48546301999997,-49.89853280999994],[-74.47105872299991,-49.90699635199997],[-74.4684138659999,-49.92587656],[-74.47423255099996,-49.944512627999906],[-74.48546301999997,-49.953057549999926],[-74.50348873599988,-49.95549895599996],[-74.51732337099989,-49.95973072699989],[-74.53148352799991,-49.9605445289999],[-74.55064856699988,-49.953057549999926],[-74.59593665299991,-49.919691664999945],[-74.61213131399995,-49.91155364399993],[-74.54767818899998,-49.97323984199986],[-74.53636633999987,-49.99472421699998],[-74.56322180899988,-50.00416432099981],[-74.62633216099988,-50.042413018999945],[-74.64126542899993,-50.04705169099988],[-74.66063391799995,-50.05055103999996],[-74.67992102799988,-50.05022551899993],[-74.69465084499987,-50.042413018999945],[-74.70067298099988,-50.02849700299996],[-74.69391842399992,-50.01832447699992],[-74.68219967399995,-50.008233330999865],[-74.67349199099995,-49.99472421699998],[-74.68732662699995,-49.99879322699985],[-74.72720292899993,-50.016534112999935],[-74.73558508999989,-50.02507903399986],[-74.74054928299995,-50.04094817499989],[-74.7527970039999,-50.050388278999904],[-74.76842200399989,-50.05331796700001],[-74.78335527299993,-50.04924895599987],[-74.8042699859999,-50.03948333099983],[-74.81627356699991,-50.024021091999906],[-74.81712805899991,-50.00554778399997],[-74.80451412699993,-49.98723723799982],[-74.82144120999993,-49.989353123000015],[-74.83336341099997,-49.99797942499984],[-74.83771725199995,-50.01148853999982],[-74.8318578769999,-50.02890390399997],[-74.86774654899992,-50.01620859199991],[-74.85627193899995,-49.99130624799988],[-74.82233639199993,-49.964776299999826],[-74.73965410099996,-49.921807549999954],[-74.72191321499986,-49.9190406229999],[-74.70714270699996,-49.92359791499985],[-74.67780514199985,-49.944512627999906],[-74.66047115799998,-49.953057549999926],[-74.68053137899992,-49.92839934699993],[-74.70490475199989,-49.908623956],[-74.73460852799991,-49.899102471999825],[-74.77033443899995,-49.90536874799995],[-74.83897864499997,-49.94264088299985],[-74.88121497299987,-49.958916924999876],[-74.90005449099993,-49.950290622999866],[-74.90200761599986,-49.94646575299995],[-74.91100012899989,-49.93328215899999],[-74.91368567599997,-49.92587656],[-74.91340084499984,-49.91676197699983],[-74.90770423099985,-49.90325286299995],[-74.90221106699994,-49.87688567499986],[-74.89122473899997,-49.86785247199985],[-74.8750707669999,-49.86467864399997],[-74.85570227799988,-49.86435312299995],[-74.83975175699986,-49.86785247199985],[-74.82087154899993,-49.87444426899983],[-74.80223548099988,-49.878513278999876],[-74.78718014199987,-49.87428150799995],[-74.77183997299991,-49.86451588299992],[-74.74229895699995,-49.852471612999906],[-74.72874915299988,-49.84319426899986],[-74.79181881399998,-49.85198333099982],[-74.82266191299993,-49.851169529],[-74.83800208199989,-49.83635833099984],[-74.8344620429999,-49.826104425],[-74.82506262899989,-49.81259531000002],[-74.81456458199992,-49.80055103999983],[-74.80785071499986,-49.79550546699989],[-74.79588782499994,-49.79111093499991],[-74.78111731699994,-49.78142669099994],[-74.77122962099995,-49.77190520599986],[-74.77375240799995,-49.767510674999954],[-74.80695553299998,-49.76441822699989],[-74.81818600199998,-49.767510674999954],[-74.8469945949999,-49.794691664999874],[-74.85582434799997,-49.80136484199984],[-74.86388098899991,-49.802829684999985],[-74.87287350199992,-49.80291106599988],[-74.8789770169999,-49.801690362999864],[-74.88255774599989,-49.79697030999985],[-74.88996334499987,-49.760837498],[-74.89000403599994,-49.749444268999945],[-74.88292395699989,-49.74236419099997],[-74.86534583199995,-49.741469007999896],[-74.86534583199995,-49.733982028999925],[-74.88149980399993,-49.727146092],[-74.9015193349999,-49.71168385199998],[-74.91730709499984,-49.693942966999984],[-74.92052161399988,-49.67937590899996],[-74.90615800699989,-49.671563408999965],[-74.88560950399996,-49.67750416499981],[-74.86351477799988,-49.688083591999856],[-74.8448380199999,-49.69361744599996],[-74.8448380199999,-49.686211846999974],[-74.88267981699994,-49.660577080999914],[-74.89769446499989,-49.64560312299997],[-74.8932185539999,-49.63160572699983],[-74.89195716099991,-49.614434502999984],[-74.8668513659999,-49.61484140399998],[-74.78502356699994,-49.64169687299989],[-74.77009029899992,-49.64470794099998],[-74.75951087099986,-49.64177825299987],[-74.74852454299989,-49.635511976999915],[-74.73424231699991,-49.6329891909999],[-74.71971594999987,-49.63404713299986],[-74.7083227199999,-49.63836028399995],[-74.71837317599997,-49.62525807099989],[-74.73371334499993,-49.62428150799982],[-74.75084387899993,-49.6260718729999],[-74.76659094999991,-49.62102629999996],[-74.77041581899992,-49.61191171699996],[-74.75841223899991,-49.589939059999956],[-74.75601152299987,-49.5763485659999],[-74.7696833979999,-49.584567966999906],[-74.77847245999996,-49.59351978999993],[-74.78905188699991,-49.60068124799988],[-74.80785071499986,-49.60369231599997],[-74.82795162699992,-49.6023088519999],[-74.84679114499994,-49.59775155999994],[-74.86400305899988,-49.58945077899997],[-74.8789770169999,-49.5763485659999],[-74.88613847599996,-49.56462981599982],[-74.89073645699989,-49.54859791499984],[-74.88695227799985,-49.53460051899987],[-74.8690079419999,-49.528497002999885],[-74.86314856699997,-49.52353280999993],[-74.80785071499986,-49.497491143999945],[-74.79185950399996,-49.481540622999944],[-74.78294837099992,-49.47869231599991],[-74.74917558499993,-49.51531340899993],[-74.7433162099999,-49.51873137799985],[-74.74209550699987,-49.510674737999906],[-74.74242102799991,-49.490655205999936],[-74.74665279899992,-49.47470468499993],[-74.75308183499993,-49.46550872199995],[-74.75255286399997,-49.45769622199996],[-74.73558508999989,-49.44597747199988],[-74.71739661399991,-49.4406877579999],[-74.67808997299989,-49.43873463299986],[-74.66047115799998,-49.43230559699994],[-74.67951412699995,-49.42693450299998],[-74.69737708199992,-49.42831796699987],[-74.7156469389999,-49.43157317499991],[-74.73558508999989,-49.43230559699994],[-74.71617591099988,-49.41041432099982],[-74.66270911399994,-49.375909112999985],[-74.64622962099986,-49.349786065999936],[-74.67088782499988,-49.355889580999836],[-74.72874915299988,-49.39128997199993],[-74.73892167899993,-49.39592864399986],[-74.74697831899994,-49.398044528999876],[-74.77375240799995,-49.39812590899986],[-74.78380286399994,-49.39527760199982],[-74.79971269399994,-49.382012627999885],[-74.81126868399988,-49.37769947699997],[-74.8038630849999,-49.39169687299994],[-74.78880774599989,-49.40496184699987],[-74.77037512899994,-49.414808851999894],[-74.75291907499988,-49.418633722],[-74.74889075399992,-49.42489999799995],[-74.76455644399988,-49.43816497199988],[-74.79393469999988,-49.45663827899991],[-74.81737219999988,-49.476250908999965],[-74.85163326699984,-49.4981421849999],[-74.88023841099991,-49.50359465899985],[-74.8863826159999,-49.47389088299992],[-74.90005449099993,-49.488457940999936],[-74.90998287699992,-49.51148853999992],[-74.92259680899991,-49.532810153999975],[-74.9447322259999,-49.54216887799983],[-74.96426347599987,-49.531508070999976],[-74.96324622299991,-49.48463307099984],[-74.97887122299989,-49.47389088299992],[-74.98770097599991,-49.47926197699988],[-74.98888098899997,-49.49098072699996],[-74.98851477799984,-49.50269947699986],[-74.99254309799991,-49.50798919099984],[-75.00438391799989,-49.51091887799985],[-75.00951087099989,-49.51864999799986],[-75.01060950399994,-49.52947356599995],[-75.0099177729999,-49.54216887799983],[-75.00279700399994,-49.58017343499992],[-75.01195227799994,-49.589939059999956],[-75.04405676999991,-49.59002044099985],[-75.03701738199993,-49.598809503],[-75.01683508999992,-49.61077239399994],[-75.0099177729999,-49.6178524719999],[-75.00674394399994,-49.63005950299997],[-75.00934811099992,-49.639255466999856],[-75.01378333199992,-49.648858330999836],[-75.01618404899995,-49.66204192499997],[-75.01097571499986,-49.676039320999934],[-74.99815833199992,-49.663506768999845],[-74.98159745999996,-49.64267343499986],[-74.96524003799993,-49.63160572699983],[-74.95287024599992,-49.64088307099988],[-74.95864824099996,-49.662204684999935],[-74.97203528599997,-49.68499114399995],[-74.98265540299991,-49.69931405999986],[-75.01325436099992,-49.725681247999944],[-75.02257239499997,-49.7421200499999],[-75.01618404899995,-49.76132577899999],[-75.00426184799991,-49.745700779],[-74.99274654899997,-49.73756275799981],[-74.98106848899987,-49.739841403999876],[-74.96898352799987,-49.754489841999884],[-74.9658096999999,-49.76043059699999],[-74.96344967399995,-49.76637135199993],[-74.96202551999988,-49.774183851999915],[-74.96153723899991,-49.78525155999995],[-74.99254309799991,-49.80852629999997],[-75.01398678299995,-49.81170012799985],[-75.03502356699988,-49.81902434699985],[-75.04344641799995,-49.82634856599986],[-75.02668209499993,-49.829522393999916],[-75.01219641799989,-49.83733489399991],[-75.00841223899994,-49.85613372199995],[-75.0099177729999,-49.89853280999994],[-75.02188066299993,-49.89519622199992],[-75.05052649599992,-49.89251067499985],[-75.06114661399994,-49.887872002999906],[-75.08079993399991,-49.8689104149999],[-75.09097245999993,-49.86532968499993],[-75.10952714799996,-49.86435312299995],[-75.1339412099999,-49.85833098799986],[-75.14932206899994,-49.842868748000015],[-75.17442786399992,-49.801690362999864],[-75.19831295499989,-49.77117278399982],[-75.20669511599996,-49.76043059699999],[-75.20929928299995,-49.753024998],[-75.20514889199993,-49.716078382999875],[-75.2069392569999,-49.70842864399994],[-75.21540279899995,-49.69931405999986],[-75.22785396999987,-49.69247812299993],[-75.25210527299996,-49.686944268999824],[-75.26317298099988,-49.67937590899996],[-75.25983639199985,-49.67343515399985],[-75.25304114499993,-49.657891533999845],[-75.24950110599985,-49.652032158999894],[-75.2838435539999,-49.64031340899999],[-75.29393469999988,-49.63836028399995],[-75.29723059799991,-49.6329891909999],[-75.2981664699999,-49.62102629999996],[-75.29527747299997,-49.609063408999845],[-75.28742428299998,-49.60369231599997],[-75.26618404899989,-49.59937916499988],[-75.2527563139999,-49.588555596999974],[-75.2359106109999,-49.55584075299994],[-75.25413977799988,-49.56316497199995],[-75.28075110599991,-49.56471119599981],[-75.30540930899991,-49.56015390399986],[-75.31777910099996,-49.549004815999844],[-75.3102107409999,-49.537855726999915],[-75.26935787699995,-49.509535414999874],[-75.25633704299989,-49.49382903399999],[-75.27208411399994,-49.49928150799994],[-75.3219294909999,-49.511163018999895],[-75.33519446499992,-49.511163018999895],[-75.34878495999988,-49.49635182099992],[-75.34683183499993,-49.487399997999894],[-75.3365779289999,-49.47730885199984],[-75.32526607999992,-49.45964934699982],[-75.35065670499995,-49.45956796699984],[-75.3620499339999,-49.46135833099983],[-75.37303626199989,-49.46648528399993],[-75.37547766799992,-49.45680103999997],[-75.37214107999998,-49.448988539999974],[-75.35936438699994,-49.43230559699994],[-75.38304602799985,-49.43474700299996],[-75.4066721189999,-49.42728022999989],[-75.42320033399992,-49.411058337999904],[-75.43254090499997,-49.384878707999874],[-75.44076559299995,-49.369449413999924],[-75.45494544199991,-49.349786065999936],[-75.45791581899994,-49.34254322699991],[-75.46288001199989,-49.33806731599986],[-75.46727454299986,-49.332696221999896],[-75.46861731699994,-49.322442315999865],[-75.46198482999996,-49.30657317499985],[-75.44688880099997,-49.2911923159999],[-75.42723548099991,-49.27947356599982],[-75.40713456899988,-49.27467213299983],[-75.38329016799989,-49.28045012799997],[-75.36896725199992,-49.295017184999914],[-75.35749264199987,-49.314060154],[-75.33088131399992,-49.34693775799981],[-75.28868567599989,-49.41611093499989],[-75.20531165299988,-49.479099216999906],[-75.16698157499984,-49.50115325299999],[-75.17560787699995,-49.48495859199986],[-75.19245357999995,-49.46697356599983],[-75.20156816299993,-49.45061614399999],[-75.18740800699993,-49.43914153399986],[-75.22093665299988,-49.426039320999806],[-75.2596736319999,-49.40146249799997],[-75.28831946499989,-49.37078215899997],[-75.29173743399988,-49.340101820999884],[-75.30736243399988,-49.32968515399998],[-75.32054602799991,-49.315362237999906],[-75.3258357409999,-49.298760674999855],[-75.31777910099996,-49.281426690999865],[-75.32335364499997,-49.263604424999976],[-75.30606035099987,-49.25457122199997],[-75.28026282499992,-49.25465260199994],[-75.25975501199989,-49.264092705999964],[-75.18517005099994,-49.34726327900001],[-75.1771541009999,-49.360446872999965],[-75.17072506399998,-49.367120049999926],[-75.15221106699997,-49.37769947699997],[-75.13390051999991,-49.37965260199984],[-75.0924373039999,-49.370293877999984],[-75.10887610599991,-49.36394622199987],[-75.14561926999991,-49.35849374799992],[-75.16075598899991,-49.349786065999936],[-75.16836503799993,-49.33798593499996],[-75.18740800699993,-49.29517994599997],[-75.18740800699993,-49.28826262799997],[-75.15998287699998,-49.29412200299992],[-75.11115475199998,-49.31943124799995],[-75.09870357999995,-49.30877044099993],[-75.10301673099985,-49.2994117169999],[-75.11139889199993,-49.2855770809999],[-75.11253821499986,-49.27320728999987],[-75.09557044199988,-49.267836195999905],[-75.06651770699992,-49.26848723799994],[-75.04995683499993,-49.26637135199985],[-75.03722083199989,-49.26043059699992],[-75.05492102799987,-49.249444268999866],[-75.07262122299989,-49.23455169099991],[-75.08641516799989,-49.21721770599983],[-75.0924373039999,-49.19963958099997],[-75.06688391799992,-49.20973072699985],[-75.00308183499986,-49.267836195999905],[-74.95299231699988,-49.296563408999944],[-74.93016516799986,-49.314222914999874],[-74.92052161399988,-49.3331031229999],[-74.91930091099988,-49.345472914999846],[-74.91486568899988,-49.35963307099995],[-74.90648352799994,-49.368340752999934],[-74.8932185539999,-49.364027601999844],[-74.8863826159999,-49.31218840899994],[-74.8850805329999,-49.25457122199997],[-74.87319902299993,-49.232842705999985],[-74.8448380199999,-49.23992278399996],[-74.86876380099997,-49.225355726999844],[-74.87621008999994,-49.21624114399985],[-74.8789770169999,-49.202732028999876],[-74.8758845689999,-49.19117603999985],[-74.86799068899994,-49.18368905999997],[-74.8570043609999,-49.17962004999992],[-74.8448380199999,-49.17913176899993],[-74.8448380199999,-49.172295830999914],[-74.85728919199991,-49.1628557269999],[-74.85643469999991,-49.151788018999866],[-74.84813391799995,-49.140557549999954],[-74.83800208199989,-49.13128020599991],[-74.84552975199995,-49.12704843499998],[-74.85049394399991,-49.122165622999916],[-74.85912024599989,-49.11077239399986],[-74.84634355399996,-49.10621510199991],[-74.8330785799999,-49.10442473799992],[-74.80451412699993,-49.10393645599984],[-74.95470130099989,-49.007094007999854],[-74.93687903599991,-48.998630466999906],[-74.8569229809999,-48.976495049999926],[-74.84496008999989,-48.979668877999984],[-74.81818600199998,-49.007094007999854],[-74.81871497299994,-48.97437916499992],[-74.8236384759999,-48.95037200299988],[-74.8375544909999,-48.93954843499997],[-74.86534583199995,-48.94638437299999],[-74.91323808499988,-48.97340260199985],[-74.94172115799998,-48.98512135199993],[-74.96898352799987,-48.986586195999806],[-74.96422278599988,-48.97682057099995],[-74.96153723899991,-48.97307708099983],[-74.98631751199986,-48.967380466999934],[-74.98326575399997,-48.952894789999796],[-74.95470130099989,-48.91838958099988],[-74.98753821499989,-48.92009856599997],[-75.0038142569999,-48.91822682099991],[-75.01618404899995,-48.911553643999945],[-75.02098548099994,-48.900485935],[-75.01520748599998,-48.891778252999835],[-75.00230872299997,-48.8863257789999],[-74.98570716099991,-48.88420989399989],[-74.97227942599991,-48.88103606599983],[-74.9442439439999,-48.866387628],[-74.88377844999991,-48.84832122199998],[-74.87279212099995,-48.84270598799989],[-74.9161270819999,-48.845147393999916],[-74.9645076159999,-48.86223723799996],[-75.01183020699995,-48.87322356599984],[-75.05150305899988,-48.85702890399997],[-75.06110592399995,-48.83700937299991],[-75.05797278599987,-48.81666432099982],[-75.04548092399997,-48.80120208099998],[-75.02668209499993,-48.79485442499986],[-74.99860592399992,-48.80632903399991],[-74.97520911399994,-48.810642185],[-74.96251380099997,-48.81585051899999],[-74.95042883999989,-48.82244231599997],[-74.9416397779999,-48.82903411299995],[-74.9446915359999,-48.82187265399991],[-74.94823157499988,-48.818536065999886],[-74.95262610599985,-48.816094658999944],[-74.95811926999987,-48.81194426899991],[-74.97203528599997,-48.789727471999946],[-74.97085527299993,-48.78533294099987],[-74.97199459499987,-48.78232187299996],[-74.99718176999994,-48.78069426899994],[-75.00316321499986,-48.778741143999895],[-75.0099177729999,-48.77434661299982],[-74.98501542899987,-48.759047132999946],[-74.87783769399996,-48.719414971999825],[-74.86750240799995,-48.712334893999866],[-74.84854081899994,-48.69557057099984],[-74.83031165299988,-48.68954843500002],[-74.82005774599995,-48.70232512799997],[-74.80785071499986,-48.736504815999865],[-74.79478919199988,-48.747247002999885],[-74.79308020699989,-48.740329684999885],[-74.79600989499991,-48.725681247999965],[-74.79702714799987,-48.712985935],[-74.79173743399987,-48.69882577899989],[-74.78331458199995,-48.687758070999855],[-74.77155514199985,-48.68075937299987],[-74.75633704299989,-48.678155205999964],[-74.6966446609999,-48.67986419099987],[-74.68097896999993,-48.68499114399998],[-74.66779537699998,-48.69638437299986],[-74.66104081899994,-48.70956796699999],[-74.66429602799988,-48.720879815999886],[-74.68097896999993,-48.72665780999994]]],[[[-75.11925208199989,-48.817152601999815],[-75.13215084499993,-48.820082289999924],[-75.14879309799996,-48.818780205999836],[-75.21471106699991,-48.801934502999835],[-75.2320043609999,-48.7946916649999],[-75.24608313699986,-48.78476327899998],[-75.24913489499994,-48.766778252999956],[-75.22960364499997,-48.752373955999985],[-75.20189368399987,-48.74309661299985],[-75.18065344999988,-48.740329684999885],[-75.18065344999988,-48.732842705999914],[-75.18297278599994,-48.718926690999844],[-75.13817298099991,-48.690687757999875],[-75.12604732999992,-48.66806405999991],[-75.09349524599986,-48.64251067499992],[-75.08503170499992,-48.63730234200001],[-75.07201087099992,-48.637790623],[-75.06411699099996,-48.64324309699994],[-75.05992591099994,-48.65439218499996],[-75.05772864499994,-48.671482029],[-75.06065833199995,-48.69939544099995],[-75.08031165299991,-48.74928150799991],[-75.08503170499992,-48.7709286439999],[-75.08893795499992,-48.78264739399998],[-75.09821529899997,-48.79648202899988],[-75.10944576699987,-48.809177341999856],[-75.11925208199989,-48.817152601999815]]],[[[-74.96861731699997,-48.65325286299984],[-74.94725501199991,-48.65536874799985],[-74.89810136599988,-48.642673434999885],[-74.87222245999988,-48.64519622199999],[-74.82494055899991,-48.658379815999936],[-74.82494055899991,-48.66448333099984],[-74.85204016799995,-48.67620208099992],[-74.92804928299995,-48.71917083099997],[-74.98827063699991,-48.74049244599994],[-75.02306067599994,-48.74456145599999],[-75.04405676999991,-48.732842705999914],[-75.04051673099991,-48.718926690999844],[-75.02668209499993,-48.70029062299994],[-75.02358964799993,-48.68873463299983],[-75.01821855399986,-48.681084893999895],[-75.00527910099987,-48.680596612999906],[-74.97516842399993,-48.68499114399998],[-74.99168860599991,-48.67701588299993],[-75.00324459499984,-48.66814544099998],[-75.00938880099991,-48.655694268999866],[-75.0099177729999,-48.63730234200001],[-74.96861731699997,-48.65325286299984]]],[[[-75.34235592399997,-48.661390882999946],[-75.33844967399997,-48.66253020599998],[-75.32746334499993,-48.65935637799991],[-75.32152258999989,-48.658379815999936],[-75.30882727799994,-48.657647393999916],[-75.30199133999992,-48.658135674999905],[-75.29723059799991,-48.66375090899999],[-75.2904353509999,-48.678155205999964],[-75.28628495999993,-48.695000908999965],[-75.28795325399994,-48.712985935],[-75.29698645699996,-48.727146091999835],[-75.31468665299988,-48.732842705999914],[-75.32701575399992,-48.73455169099982],[-75.33629309799997,-48.737074476999844],[-75.34508216099994,-48.736748956],[-75.35602779899992,-48.72975025799983],[-75.36221269399988,-48.72747161299986],[-75.37694251199986,-48.726495049999976],[-75.37987219999988,-48.72283294099993],[-75.3784073559999,-48.717054945999955],[-75.37287350199992,-48.702732028999975],[-75.37303626199989,-48.69866301899992],[-75.36620032499985,-48.69866301899992],[-75.3841853509999,-48.69646575299984],[-75.39781653599994,-48.70574309699989],[-75.42145748599995,-48.732842705999914],[-75.42983964799993,-48.73748137799984],[-75.44713294199991,-48.74334075299998],[-75.45494544199991,-48.7471656229999],[-75.46149654899989,-48.752373955999985],[-75.47179114499991,-48.763848565999936],[-75.47606360599991,-48.76751067499998],[-75.49323482999995,-48.77556731599984],[-75.5098363919999,-48.77890390399986],[-75.55113684799994,-48.78134530999989],[-75.59178626199993,-48.79216887799997],[-75.61261959499993,-48.79485442499986],[-75.63312740799998,-48.78801848799994],[-75.64785722599987,-48.77890390399986],[-75.65363521999984,-48.760837497999844],[-75.65355383999986,-48.715997002999906],[-75.64183508999984,-48.70134856599999],[-75.6143692699999,-48.703220309999956],[-75.55797278599997,-48.71917083099997],[-75.50755774599995,-48.71754322699995],[-75.46051998599992,-48.69988372199994],[-75.34557044199991,-48.62688567499993],[-75.33893795499995,-48.62420012799986],[-75.32774817599994,-48.62712981599997],[-75.32555091099995,-48.6339657529999],[-75.32900956899996,-48.6408830709999],[-75.33519446499992,-48.64413827899994],[-75.34129798099991,-48.64592864399984],[-75.34496008999986,-48.65032317499991],[-75.34544837099986,-48.65593840899999],[-75.34235592399997,-48.661390882999946]]],[[[-75.37922115799992,-48.45582447699984],[-75.37877356699994,-48.460137627999835],[-75.3771866529999,-48.45907968499988],[-75.36620032499985,-48.45289478999982],[-75.36563066299988,-48.448011976999936],[-75.35582434799994,-48.435642184999985],[-75.34434973899991,-48.427422783999894],[-75.33893795499995,-48.435479424999926],[-75.34056555899988,-48.45842864399984],[-75.35260982999989,-48.52117278399999],[-75.35448157499988,-48.52581145599984],[-75.36620032499985,-48.54168059699986],[-75.35309811099997,-48.540785414999874],[-75.34341386599992,-48.54208749799987],[-75.33576412699989,-48.54583098799999],[-75.32835852799991,-48.55217864399984],[-75.32298743399986,-48.56129322699992],[-75.31883704299992,-48.57537200299986],[-75.31773841099997,-48.589532158999965],[-75.32152258999989,-48.60003020599986],[-75.33991451699984,-48.61484140400001],[-75.50621497299994,-48.69475676899984],[-75.54165605399993,-48.700860283999916],[-75.55724036399994,-48.70094166499981],[-75.57323157499994,-48.69915129999991],[-75.58844967399992,-48.69443124799999],[-75.60122636599996,-48.685642184999935],[-75.60781816299992,-48.67693450299995],[-75.61017818899997,-48.66806405999991],[-75.60655676999991,-48.66106536299983],[-75.59552975199998,-48.658379815999936],[-75.52725175699987,-48.66448333099984],[-75.49937903599994,-48.66008879999995],[-75.47329667899987,-48.64812590899983],[-75.45250403599988,-48.630954684999985],[-75.4406632149999,-48.61052825299992],[-75.46442623599992,-48.613457940999844],[-75.51414954299992,-48.6325822899999],[-75.54377193899994,-48.63730234200001],[-75.52879798099991,-48.62810637799994],[-75.49901282499991,-48.61500416499989],[-75.48912512899992,-48.603692315999986],[-75.5366918609999,-48.606133721999846],[-75.55113684799994,-48.61052825299992],[-75.58604895699997,-48.6339657529999],[-75.5989477199999,-48.63730234200001],[-75.62612870999989,-48.632012627999856],[-75.64443925699996,-48.61842213299989],[-75.67536373599988,-48.58318450299985],[-75.65697180899984,-48.56707122199997],[-75.65387936099998,-48.54802825299998],[-75.66104081899991,-48.504082940999865],[-75.65575110599994,-48.48503997199995],[-75.64293372299991,-48.48251718499995],[-75.62706458199997,-48.48113372199997],[-75.61261959499993,-48.46591562299999],[-75.61457271999987,-48.457696221999896],[-75.62149003799988,-48.45134856599995],[-75.62242591099994,-48.445733330999865],[-75.60643469999985,-48.43922291499987],[-75.5953669909999,-48.440036716999884],[-75.57917232999995,-48.444268487999906],[-75.56436113199989,-48.450372002999984],[-75.55797278599997,-48.455987237999885],[-75.54771887899994,-48.47291432099988],[-75.52432206899996,-48.471856378],[-75.49885006399995,-48.4620093729999],[-75.48224850199989,-48.45289478999982],[-75.45059160099993,-48.42888762799987],[-75.4386287099999,-48.428480726999865],[-75.43073482999992,-48.45842864399984],[-75.42393958199989,-48.45875416499986],[-75.41710364499997,-48.452813408999916],[-75.41185462099989,-48.435967705999914],[-75.40660559799991,-48.430352471999925],[-75.39989173099984,-48.42644622199984],[-75.3935440749999,-48.42498137799987],[-75.38219153599994,-48.42791106599989],[-75.38141842399992,-48.43450286299994],[-75.38670813699991,-48.44548919099992],[-75.37922115799992,-48.45582447699984]]],[[[-74.40005449099993,-48.52548593499991],[-74.42902584499984,-48.52581145599984],[-74.43854732999992,-48.51653411299996],[-74.46182206899994,-48.47958749799993],[-74.46524003799996,-48.47210051899986],[-74.46568762899994,-48.46705494599992],[-74.4667048819999,-48.46233489399992],[-74.47207597599987,-48.455987237999885],[-74.50625566299996,-48.42839934699988],[-74.51024329299995,-48.408298435],[-74.47687740799995,-48.405531507999946],[-74.40721594999988,-48.418145440999936],[-74.31395423099988,-48.464288018999966],[-74.30699622299997,-48.46591562299999],[-74.3033748039999,-48.470310153999954],[-74.30313066299986,-48.47991301899995],[-74.30654863199987,-48.489434502999856],[-74.31411699099993,-48.493829033999845],[-74.34170488199993,-48.500258070999934],[-74.40005449099993,-48.52548593499991]]],[[[-74.05418860599988,-48.455010675],[-74.06859290299985,-48.47966887799991],[-74.09068762899994,-48.47958749799993],[-74.11099199099992,-48.473565362999835],[-74.17906653599988,-48.44312916499987],[-74.20079505099994,-48.422133070999834],[-74.24551347599989,-48.39421965899988],[-74.25080318899998,-48.37802499799993],[-74.23521887899989,-48.36809661299991],[-74.21190344999988,-48.36370208099986],[-74.19371497299989,-48.36345794099991],[-74.16380774599992,-48.37395598799988],[-74.12043209499987,-48.404880467],[-74.08726966099992,-48.41130950299984],[-74.05719967399989,-48.425551039999846],[-74.05418860599988,-48.455010675]]],[[[-74.30231686099994,-48.36337655999992],[-74.2822159499999,-48.38543059699991],[-74.23224850199998,-48.421563408999944],[-74.22329667899993,-48.44491952899986],[-74.24303137899997,-48.45924244599985],[-74.27171790299994,-48.462660414999945],[-74.33910071499994,-48.422946873000015],[-74.46084550699987,-48.384454033999944],[-74.49543209499987,-48.34986744599995],[-74.45824133999989,-48.340752862999864],[-74.42406165299988,-48.346612237999906],[-74.3587947259999,-48.37029387799991],[-74.38223222599987,-48.348402601999894],[-74.39517167899987,-48.33017343499991],[-74.39317786399994,-48.31316497199985],[-74.37189693899994,-48.29517994599981],[-74.35765540299985,-48.28753020599997],[-74.34544837099989,-48.283298434999864],[-74.33210201699987,-48.28134530999991],[-74.31411699099993,-48.2809384089999],[-74.29796301999997,-48.28801848799995],[-74.29845130099994,-48.30396900799997],[-74.31041419199988,-48.332452080999886],[-74.30231686099994,-48.36337655999992]]],[[[-74.72130286399991,-48.22193775799995],[-74.7083227199999,-48.23349374799989],[-74.70148678299996,-48.229424737999835],[-74.69615637899992,-48.22869231599989],[-74.68439693899992,-48.23739999799997],[-74.67259680899988,-48.25090911299994],[-74.66734778599988,-48.26425546699987],[-74.67943274599989,-48.29070403399993],[-74.68004309799994,-48.303399347],[-74.64183508999989,-48.31609465899987],[-74.61778723899992,-48.33375416499997],[-74.59703528599994,-48.35588958099994],[-74.58478756399998,-48.376560153999876],[-74.58690344999991,-48.403415622999944],[-74.61314856699991,-48.4083798159999],[-74.64736894399991,-48.40781015400002],[-74.67349199099995,-48.418145440999936],[-74.63560950399992,-48.43157317499994],[-74.61803137899987,-48.44207122199991],[-74.60521399599986,-48.459161065999865],[-74.60212154899997,-48.47527434699983],[-74.60521399599986,-48.528008721999925],[-74.60342363199987,-48.54949309699993],[-74.59943600199989,-48.56365325299997],[-74.59146074099993,-48.57537200299986],[-74.54743404899992,-48.615980726999865],[-74.53062903599991,-48.62175872199983],[-74.52330481699991,-48.607110284],[-74.52651933499988,-48.583428643999895],[-74.52013098899994,-48.58245208099983],[-74.49913489499991,-48.58318450299985],[-74.48713131399998,-48.59042734199988],[-74.48302161399994,-48.607110284],[-74.48525956899991,-48.6261532529999],[-74.49229895699989,-48.64072031000002],[-74.51406816299996,-48.666110934999864],[-74.5277400379999,-48.67489999799992],[-74.5626521479999,-48.680596612999906],[-74.5921117829999,-48.69133879999992],[-74.60732988199987,-48.693942967],[-74.6210017569999,-48.6918270809999],[-74.6556697259999,-48.67180754999985],[-74.66738847599986,-48.66676197699991],[-74.69212805899986,-48.65935637799991],[-74.70490475199989,-48.658379815999936],[-74.71296139199993,-48.65504322699983],[-74.73900305899991,-48.63404713299988],[-74.75059973899991,-48.62948984199984],[-74.76439368399991,-48.630954684999985],[-74.79084225199989,-48.63730234200001],[-74.81753495999993,-48.63640715899993],[-74.86701412699998,-48.626641533999894],[-74.94713294199994,-48.61956145599993],[-74.97411048099988,-48.61337655999995],[-74.99624589799987,-48.603692315999986],[-75.01085364499988,-48.58684661299999],[-75.01671301999994,-48.54469166499995],[-75.02668209499993,-48.52459075299991],[-75.03307044199994,-48.50448984199987],[-75.02375240799988,-48.48463307099995],[-75.00829016799989,-48.468438409],[-74.94562740799998,-48.417575778999975],[-74.93106035099996,-48.41130950299984],[-74.92015540299988,-48.410332940999865],[-74.89826412699993,-48.40601978999985],[-74.88609778599997,-48.405043226999965],[-74.87149003799992,-48.40195077899999],[-74.84593665299985,-48.39023202899999],[-74.8318578769999,-48.39080169099988],[-74.81997636599996,-48.40349700299993],[-74.81102454299992,-48.449802342],[-74.80077063699991,-48.469659112999835],[-74.78156490799995,-48.48503997199995],[-74.76561438699994,-48.48935312299987],[-74.75088456899994,-48.484795830999914],[-74.73558508999989,-48.47332122199988],[-74.71715247299994,-48.453545830999936],[-74.71344967399992,-48.43824635199998],[-74.7259822259999,-48.428480726999865],[-74.75633704299989,-48.42498137799987],[-74.81126868399988,-48.36345794099991],[-74.81358801999994,-48.34254322699985],[-74.80451412699993,-48.28435637799991],[-74.79865475199989,-48.26637135199988],[-74.7713923819999,-48.229750257999854],[-74.76292883999986,-48.212090752999835],[-74.7618302069999,-48.18824635199995],[-74.76475989499994,-48.169691664999945],[-74.76431230399993,-48.1526018209999],[-74.75291907499988,-48.13355885199982],[-74.73766028599991,-48.12574635199991],[-74.72223873599998,-48.13054778399998],[-74.70921790299988,-48.142754815999965],[-74.70148678299996,-48.157403252999984],[-74.69806881399995,-48.17083098799998],[-74.69762122299997,-48.184340101999865],[-74.70335852799985,-48.19491952899998],[-74.71849524599995,-48.198988539999874],[-74.7285863919999,-48.20671965899997],[-74.72130286399991,-48.22193775799995]]],[[[-74.4512426419999,-48.19003671699993],[-74.40957597599993,-48.21306731599991],[-74.38141842399995,-48.23552825299991],[-74.37340247299991,-48.24423593499997],[-74.37262936099998,-48.25318775799992],[-74.37930253799993,-48.267266533999866],[-74.39085852799988,-48.28150807099988],[-74.40392005099994,-48.28997161299999],[-74.41763261599988,-48.294122002999856],[-74.44098873599995,-48.29680754999983],[-74.44513912699992,-48.300713799999926],[-74.44810950399992,-48.305271091999956],[-74.45441646999987,-48.30885182099985],[-74.48916581899991,-48.31568775799987],[-74.51939856699991,-48.33318450299991],[-74.53441321499994,-48.335625908999944],[-74.54381262899996,-48.32195403399999],[-74.55158443899994,-48.30348072699998],[-74.5558162099999,-48.28557708099993],[-74.55809485599988,-48.24342213299997],[-74.5294490229999,-48.20989348799985],[-74.52188066299993,-48.194512627999984],[-74.54381262899996,-48.198988539999874],[-74.55577551999991,-48.210544528999975],[-74.56411699099988,-48.226495049999976],[-74.57510331899994,-48.240655205999914],[-74.59504146999993,-48.246840101999894],[-74.60374915299991,-48.23544687299992],[-74.60179602799985,-48.209567967],[-74.59390214799987,-48.181735934999864],[-74.58478756399998,-48.16423919099991],[-74.59044348899988,-48.16301848799989],[-74.59959876199986,-48.15886809699994],[-74.60521399599986,-48.157403252999984],[-74.5803930329999,-48.13437265399992],[-74.55817623599995,-48.12232838299991],[-74.53384355399987,-48.124607028999975],[-74.50283769399994,-48.14373137799994],[-74.47411048099991,-48.17978281],[-74.46532141799993,-48.18531666499993],[-74.4512426419999,-48.19003671699993]]],[[[-75.12047278599991,-48.102634372999866],[-75.07140051999995,-48.109633070999934],[-75.07140051999995,-48.10279713299984],[-75.07689368399991,-48.09970468500002],[-75.07966061099995,-48.096856377999984],[-75.0816951159999,-48.09368254999992],[-75.08503170499992,-48.0897763],[-75.04527747299991,-48.09319426899994],[-75.01750464499989,-48.08302013599986],[-74.97760815299992,-48.09388870799994],[-74.91008644499988,-48.114759646999914],[-74.88951024399994,-48.11973542599986],[-74.86601980299993,-48.12964263099996],[-74.82782024399998,-48.14549165699993],[-74.81232662699992,-48.17278411299992],[-74.80451412699993,-48.17449309699992],[-74.80557206899991,-48.212985935],[-74.81053626199994,-48.23202890399992],[-74.83486894399991,-48.24928150799984],[-74.83934485599988,-48.27044036299992],[-74.83739173099993,-48.344821872999916],[-74.84129798099991,-48.35930754999987],[-74.85228430899988,-48.37029387799991],[-74.86388098899991,-48.374200128],[-74.87352454299986,-48.37281666499984],[-74.88280188699991,-48.37029387799991],[-74.8932185539999,-48.37029387799991],[-74.90257727799984,-48.37468840899998],[-74.92137610599988,-48.387953382999925],[-74.96393795499995,-48.40325286299998],[-74.9986873039999,-48.427422783999894],[-75.03111731699991,-48.443780205999914],[-75.05675208199995,-48.43271249799997],[-75.05988521999984,-48.428480726999865],[-75.06236731699995,-48.42400481599989],[-75.06395423099991,-48.41952890400001],[-75.06676184799994,-48.40471770599994],[-75.07656816299988,-48.39421965899988],[-75.07876542899986,-48.38738372199995],[-75.08389238199987,-48.37607187299989],[-75.11978105399987,-48.335625908999944],[-75.14419511599993,-48.32170989399995],[-75.15583248599992,-48.31218840899987],[-75.16075598899991,-48.29843515399986],[-75.15534420499995,-48.28687916499991],[-75.12905839799993,-48.27288176899995],[-75.11978105399987,-48.261000257999825],[-75.14073645699992,-48.26295338299987],[-75.1581111319999,-48.26067473799989],[-75.17003333199995,-48.25058359199992],[-75.17442786399992,-48.229424737999835],[-75.17906653599997,-48.22722747199983],[-75.18976803299998,-48.22519296699998],[-75.20107988199995,-48.220961195999976],[-75.20791581899988,-48.212090752999835],[-75.20445716099988,-48.20777760199992],[-75.19615637899992,-48.20256926899993],[-75.18858801999994,-48.19524504999984],[-75.18740800699993,-48.18531666499993],[-75.19530188699991,-48.176690362999835],[-75.21760006399992,-48.16855234199991],[-75.22223873599995,-48.16082122199998],[-75.22109941299993,-48.15488046699997],[-75.21760006399992,-48.14421965899993],[-75.21882076699987,-48.140313408999944],[-75.22964433499996,-48.126722914999974],[-75.23204505099989,-48.118096612999885],[-75.23766028599991,-48.11305103999986],[-75.2442113919999,-48.10906340899997],[-75.24950110599985,-48.10279713299984],[-75.25096594999991,-48.096612237999864],[-75.25259355399993,-48.08245208099984],[-75.25633704299989,-48.07545338299995],[-75.25633704299989,-48.06861744599985],[-75.16759192599991,-48.07529062299999],[-75.15330969999991,-48.078708591999984],[-75.14354407499988,-48.094496351999936],[-75.12047278599991,-48.102634372999866]]],[[[-75.34911048099991,-48.05917734200001],[-75.33495032499988,-48.07480234199999],[-75.32526607999992,-48.0897763],[-75.32485917899993,-48.09742603999987],[-75.32567298099993,-48.106703382999925],[-75.32115637899997,-48.11077239399996],[-75.30475826699987,-48.10279713299984],[-75.29873613199996,-48.12542083099998],[-75.28087317599989,-48.145684502999984],[-75.26891028599997,-48.16594817499991],[-75.28058834499987,-48.18857187299997],[-75.2864884109999,-48.19597747199987],[-75.29076087099992,-48.20631275799997],[-75.28994706899991,-48.21550872199985],[-75.28058834499987,-48.21949635199992],[-75.27603105399993,-48.216485283999916],[-75.2744034499999,-48.211032809999956],[-75.27147376199987,-48.20777760199992],[-75.26317298099988,-48.212090752999835],[-75.26089433499993,-48.21835702899989],[-75.2630916009999,-48.22698333099997],[-75.26720130099994,-48.235039971999925],[-75.27061926999997,-48.24000416499996],[-75.25645911399994,-48.2450497379999],[-75.24836178299992,-48.25188567499992],[-75.21092688699987,-48.3129208309999],[-75.20791581899988,-48.325616143999866],[-75.2039281889999,-48.33554452899996],[-75.19473222599993,-48.347914320999905],[-75.18455969999988,-48.35881926899988],[-75.17756100199992,-48.36345794099991],[-75.16478430899986,-48.36956145599998],[-75.16934160099989,-48.38339609199998],[-75.18740800699993,-48.41130950299984],[-75.15176347599987,-48.40894947699988],[-75.13426673099991,-48.42253997199984],[-75.12108313699989,-48.44402434699987],[-75.09870357999995,-48.46591562299999],[-75.11131751199994,-48.470391533999944],[-75.13878333199997,-48.4762509089999],[-75.14989173099991,-48.48300546699993],[-75.14476477799991,-48.488702081],[-75.10383053299995,-48.498955987999935],[-75.08873450399994,-48.50066497199994],[-75.0834041009999,-48.50774504999991],[-75.0855199859999,-48.523532809999864],[-75.0924373039999,-48.549086195999934],[-75.08824622299997,-48.55877044099991],[-75.07359778599997,-48.58245208099983],[-75.07140051999995,-48.596286717],[-75.08275305899986,-48.613457940999844],[-75.10692298099985,-48.6339657529999],[-75.13292395699995,-48.65113697699992],[-75.14989173099991,-48.658379815999936],[-75.16462154899989,-48.663344007999804],[-75.20543372299994,-48.699802341999956],[-75.22447669199994,-48.706475518999916],[-75.23961341099994,-48.701429945999976],[-75.24941972599987,-48.686944268999845],[-75.25291907499988,-48.665622653999876],[-75.24917558499993,-48.656996351999865],[-75.24120032499988,-48.65097421699995],[-75.23326575399992,-48.64674244599985],[-75.22964433499996,-48.64413827899994],[-75.22964433499996,-48.63730234200001],[-75.2437231109999,-48.637383722],[-75.25552324099995,-48.64031340899984],[-75.26622473899988,-48.64153411299994],[-75.27684485599994,-48.63730234200001],[-75.28282630099994,-48.63054778399998],[-75.28404700399994,-48.62363046699989],[-75.28001868399988,-48.61687590899986],[-75.27061926999997,-48.61052825299992],[-75.28246008999992,-48.604424737999835],[-75.29572506399994,-48.59197356599991],[-75.30410722599991,-48.57773202899991],[-75.30101477799994,-48.56585051899995],[-75.29116777299993,-48.552666925],[-75.29320227799985,-48.541110934999885],[-75.31468665299988,-48.51775481599998],[-75.32066809799989,-48.49244557099986],[-75.30992591099988,-48.46135833099986],[-75.29059811099995,-48.43523528399999],[-75.27061926999997,-48.42498137799987],[-75.27061926999997,-48.418145440999936],[-75.30162512899989,-48.40846119599989],[-75.3180232409999,-48.40146249799999],[-75.32526607999992,-48.39421965899988],[-75.31798255099991,-48.36321379999986],[-75.31794186099992,-48.34889088299988],[-75.32835852799991,-48.34303150799984],[-75.33678137899994,-48.34856536299995],[-75.35753333199995,-48.375176690999886],[-75.36620032499985,-48.383965752999956],[-75.3802384109999,-48.39031340899997],[-75.39696204299992,-48.39462655999989],[-75.41372636599993,-48.39527760199985],[-75.42764238199993,-48.39080169099988],[-75.4381404289999,-48.405531507999946],[-75.46019446499987,-48.41659921699999],[-75.48656165299991,-48.42302825299999],[-75.5102432929999,-48.42498137799987],[-75.53734290299985,-48.41578541499989],[-75.55418860599984,-48.39714934699991],[-75.55500240799995,-48.3785946589999],[-75.5340876939999,-48.37029387799991],[-75.52464758999989,-48.36858489399991],[-75.47443600199989,-48.35369231599995],[-75.43073482999992,-48.34986744599995],[-75.40558834499984,-48.34441497199991],[-75.38438880099994,-48.33131275799985],[-75.34577389199987,-48.30144622199995],[-75.34577389199987,-48.29517994599981],[-75.36375891799992,-48.29534270599987],[-75.3784887359999,-48.30152760199993],[-75.39199785099987,-48.309828382999825],[-75.40713456899988,-48.31568775799987],[-75.40269934799991,-48.294122002999856],[-75.39415442599989,-48.27410247199996],[-75.41193600199993,-48.28346119599992],[-75.44249426999988,-48.307386976999965],[-75.46182206899991,-48.31568775799987],[-75.46715247299989,-48.31129322699988],[-75.47716223899997,-48.306084893999966],[-75.48224850199989,-48.30144622199995],[-75.51073157499991,-48.31991952899997],[-75.52765865799998,-48.325778904],[-75.54377193899994,-48.32195403399999],[-75.55431067599991,-48.30771249799999],[-75.55150305899988,-48.29371510199985],[-75.54141191299989,-48.281996351999865],[-75.5306697259999,-48.27410247199996],[-75.47305253799993,-48.24618906000002],[-75.44692949099996,-48.22665780999995],[-75.43390865799998,-48.198988539999874],[-75.45787512899994,-48.202732028999904],[-75.49608313699989,-48.22722747199983],[-75.52049719999985,-48.233168226999865],[-75.53050696499992,-48.23137786299988],[-75.54010982999989,-48.226250908999944],[-75.54491126199987,-48.218519789999945],[-75.5405981109999,-48.208916924999954],[-75.53254146999987,-48.199314059999885],[-75.53246008999989,-48.194268487999864],[-75.55410722599987,-48.176690362999835],[-75.56078040299991,-48.17489999799993],[-75.56582597599996,-48.171319268999966],[-75.57164466099991,-48.157403252999984],[-75.57164466099991,-48.11956145599986],[-75.5738012359999,-48.111260674999954],[-75.58324133999992,-48.09742603999987],[-75.58531653599994,-48.08570728999989],[-75.55113684799994,-48.055759372999916],[-75.53514563699986,-48.04583098799999],[-75.50462805899991,-48.03134530999995],[-75.47508704299986,-48.02629973799991],[-75.46182206899991,-48.04509856599996],[-75.45645097599987,-48.06552499799986],[-75.44424394399988,-48.05852629999997],[-75.42145748599995,-48.027764580999985],[-75.4061580069999,-48.019219658999866],[-75.37808183499989,-48.008233330999914],[-75.35098222599986,-48.004489841999884],[-75.33893795499995,-48.01751067499987],[-75.34166419199994,-48.02874114399995],[-75.35094153599988,-48.05120208099987],[-75.34911048099991,-48.05917734200001]]],[[[-74.83136959499993,-47.810804945999905],[-74.81818600199998,-47.81552499799999],[-74.78832381299989,-47.81232427099994],[-74.77662731099988,-47.82881146799994],[-74.76775708999995,-47.85405467800001],[-74.76573686799995,-47.88421156299996],[-74.78004467999992,-47.903413053],[-74.78864287199991,-47.91684502599992],[-74.80724196399987,-47.92834842099994],[-74.81298195599987,-47.938897176000026],[-74.78436874099995,-47.94948566900001],[-74.77718186899993,-47.97061189899999],[-74.7842006699999,-47.988849792999986],[-74.81866054099987,-47.9935848319999],[-74.83486894399991,-48.00790780999989],[-74.82152258999992,-48.01409270599994],[-74.78442177299988,-48.011833982999846],[-74.76441883699997,-48.02144139099994],[-74.75735143799989,-48.0425461249999],[-74.72737923799986,-48.10589183899992],[-74.79331029099993,-48.077992696999914],[-74.85207335299991,-48.07214127799999],[-74.89648605899988,-48.06821373099992],[-74.9416397779999,-48.055759372999916],[-74.9636938139999,-48.046970309999935],[-75.01284745999993,-48.04143645599993],[-75.03351803299995,-48.03118254999998],[-75.03644771999987,-48.02288176899992],[-75.02660071499994,-48.00546640399986],[-75.02977454299992,-47.99358489399999],[-75.03872636599993,-47.9883765599999],[-75.05235755099989,-47.9862606749999],[-75.06688391799992,-47.9862606749999],[-75.10240637899989,-47.9901669249999],[-75.11998450399992,-47.99781666499983],[-75.13463294199994,-48.00937265399994],[-75.14989173099991,-48.02434661299998],[-75.16909745999996,-48.03386809699988],[-75.19810950399994,-48.039971612999956],[-75.22785396999987,-48.042657158999944],[-75.24950110599985,-48.041924737999906],[-75.25495357999989,-48.0389950499999],[-75.27061926999997,-48.027764580999985],[-75.23167883999989,-48.00546640399986],[-75.22321529899993,-47.99260833099992],[-75.2359106109999,-47.9724260399999],[-75.20702134399994,-47.91694724199985],[-75.16777265099995,-47.893604282999874],[-75.08789732899987,-47.86730647399984],[-75.04439757999995,-47.86824174099995],[-75.00818474399995,-47.86820653399997],[-74.94292566799989,-47.88366560899999],[-74.92125588499991,-47.86515173799991],[-74.90233313699991,-47.84710051899999],[-74.89073645699989,-47.828708591999956],[-74.87279212099995,-47.81552499799999],[-74.85407467399997,-47.822930596999896],[-74.8417862619999,-47.817478122999944],[-74.83136959499993,-47.810804945999905]]],[[[-73.97569739499994,-47.859795830999865],[-73.93138587099989,-47.88014088299995],[-73.90758216099991,-47.88388437299997],[-73.88414466099994,-47.87997812299999],[-73.86168372299994,-47.86695728999982],[-73.83690344999988,-47.85686614399985],[-73.81843014199984,-47.86638762799993],[-73.80890865799995,-47.88738372199988],[-73.81078040299991,-47.91171640399995],[-73.83120683499986,-47.93824635199982],[-73.82799231699994,-47.937269789999846],[-73.82603919199988,-47.94109465899986],[-73.82673092399992,-47.94695403399998],[-73.83120683499986,-47.95256926899989],[-73.83702551999994,-47.95387135199989],[-73.86168372299994,-47.95256926899989],[-73.90977942599991,-47.955987237999906],[-73.92300370999993,-47.96363697699992],[-73.93000240799992,-47.95769622199991],[-73.9343155589999,-47.93824635199982],[-73.93077551999994,-47.940199476999865],[-73.92625891799989,-47.93482838299998],[-73.9222712879999,-47.92693450299993],[-73.92064368399988,-47.92131926899984],[-73.92487545499992,-47.915948174999954],[-73.93447831899988,-47.91773853999986],[-73.95103919199994,-47.92457447699988],[-73.96336829299989,-47.92693450299993],[-73.99571692599991,-47.94589609199993],[-74.02452551999994,-47.95387135199989],[-74.11554928299998,-47.94589609199993],[-74.13023841099988,-47.94703541499996],[-74.16706295499995,-47.95940520599991],[-74.31847083199992,-47.98121510199995],[-74.34455318899997,-47.9724260399999],[-74.36217200399992,-47.962009373],[-74.37482662699996,-47.95077890399998],[-74.38963782499985,-47.941989841999934],[-74.41372636599988,-47.93824635199982],[-74.46153723899991,-47.936293226999865],[-74.48216712099995,-47.93035247199992],[-74.50283769399994,-47.9179013],[-74.47667395699992,-47.89625416499992],[-74.42153886599996,-47.86028411299995],[-74.39635169199991,-47.83945077899987],[-74.36424719999994,-47.830824476999965],[-74.32363847599993,-47.84531015399992],[-74.28258216099994,-47.86614348799998],[-74.24893144399991,-47.876885674999905],[-74.26089433499993,-47.860935153999904],[-74.28429114499994,-47.84579843499991],[-74.33092200399994,-47.82219817499987],[-74.28990637899992,-47.807386976999894],[-74.24522864499997,-47.80641041499983],[-74.07481848899991,-47.84783294099992],[-73.99547278599997,-47.85361093499998],[-73.97569739499994,-47.859795830999865]]],[[[-74.52017946999987,-47.838069091999955],[-74.52467136499993,-47.86835127799996],[-74.54573996099992,-47.87241401899985],[-74.59397231499992,-47.864388601999906],[-74.62119463599987,-47.87856549599998],[-74.62428586899995,-47.904864208],[-74.62131733999989,-47.92105745299993],[-74.64401579199992,-47.92311027299988],[-74.65909359499994,-47.90187218099989],[-74.67422963399989,-47.890760191999824],[-74.68779564299984,-47.862437786999976],[-74.6892302849999,-47.83411712199999],[-74.6891702829999,-47.81389416599997],[-74.64986523399995,-47.797742236999824],[-74.62870288099992,-47.80078372999995],[-74.5954827739999,-47.80482872199997],[-74.55779015799988,-47.80683929399996],[-74.5261805069999,-47.8128680989999],[-74.52017946999987,-47.838069091999955]]],[[[-75.07639317799988,-47.70097077699994],[-75.06278898599993,-47.73396075699999],[-75.05936917999986,-47.74988696499993],[-75.09508216099991,-47.76531340899993],[-75.10631262899989,-47.766289972],[-75.11636308499988,-47.77076588299995],[-75.1231990229999,-47.78191497199998],[-75.11558997299994,-47.78582122199997],[-75.10142981699991,-47.783868096999925],[-75.08873450399994,-47.77727629999986],[-75.07713782499985,-47.77271900799982],[-75.06895911399994,-47.77939218499988],[-75.04403389499987,-47.79082663499996],[-75.02368236099997,-47.8033250299999],[-75.05075579199988,-47.82269933200003],[-75.09386145699997,-47.826836846999896],[-75.09870357999995,-47.832207940999936],[-75.13218739499993,-47.839869279999945],[-75.16105118399989,-47.83761379399985],[-75.22731378999995,-47.85471428799988],[-75.22052053699991,-47.8467483859999],[-75.19671426499988,-47.836491596999906],[-75.18236243399988,-47.83147551899991],[-75.19156572699987,-47.8080117599999],[-75.22209778799993,-47.79207358299985],[-75.2661624379999,-47.77610704199993],[-75.30475826699987,-47.76767343499998],[-75.3425464009999,-47.78286244199993],[-75.33395781599991,-47.75895262699997],[-75.35591345599994,-47.736140027999824],[-75.33719132799985,-47.72136131599987],[-75.31848630099992,-47.70658413999996],[-75.29475457399985,-47.70319582799992],[-75.26767713699988,-47.71233355799987],[-75.24568452699992,-47.7237383579999],[-75.20840736099987,-47.716925926999956],[-75.18638407899992,-47.71123931099993],[-75.1677622899999,-47.70896605899986],[-75.15135657499988,-47.703057549999926],[-75.15330969999991,-47.69882577899992],[-75.1170041799999,-47.67936435899985],[-75.09163752899991,-47.68049221699991],[-75.07639317799988,-47.70097077699994]]],[[[-74.93138587099988,-47.77320728999982],[-74.95772277599986,-47.77479505999992],[-74.96788837099987,-47.772533251999896],[-74.98484009799992,-47.765729775],[-75.00519377999993,-47.75210257099985],[-75.02723100199995,-47.73847422099994],[-75.0391478789999,-47.71117972899988],[-75.05442142099994,-47.68957206099994],[-75.04262510099994,-47.66679884999988],[-75.00038361399992,-47.662200149999876],[-74.9496241409999,-47.6780542809999],[-74.90395468799994,-47.685935364999956],[-74.88522879899992,-47.71206318199988],[-74.86137525099988,-47.74387616999989],[-74.86804045299988,-47.76324224199989],[-74.93138587099988,-47.77320728999982]]],[[[-74.44078528599991,-47.163750908999944],[-74.45470130099987,-47.167738539999824],[-74.46694902299996,-47.166192315999965],[-74.47154700399989,-47.15935637799987],[-74.4624731109999,-47.14755624799999],[-74.46816972599987,-47.13860442499987],[-74.48375403599997,-47.12509530999989],[-74.48916581899991,-47.11646900799998],[-74.49217688699991,-47.09889088299995],[-74.48778235599994,-47.08782317499999],[-74.47899329299989,-47.08074309699995],[-74.46865800699996,-47.074965101999894],[-74.43932044199993,-47.06145598799992],[-74.39842688699991,-47.049493096999974],[-74.35667883999987,-47.04501718499992],[-74.32469641799989,-47.053887627999956],[-74.31639563699991,-47.06487395599992],[-74.31578528599994,-47.07805754999988],[-74.32115637899989,-47.09124114399984],[-74.33092200399994,-47.10230885199995],[-74.34292558499996,-47.108819268999866],[-74.37682044199991,-47.12118905999998],[-74.39297441299988,-47.12957122199995],[-74.44078528599991,-47.163750908999944]]],[[[-74.11864173099988,-47.03020598799995],[-74.11119544199988,-47.053887627999956],[-74.09508216099991,-47.04762135199992],[-74.07974199099996,-47.03020598799995],[-74.07457434799997,-47.020277601999936],[-74.04735266799986,-47.022637627999984],[-74.02269446499987,-47.02898528399984],[-73.97524980399996,-47.04762135199992],[-74.02326412699995,-47.08114999799996],[-74.0298966139999,-47.091973565999865],[-74.03600012899987,-47.106703382999854],[-74.05044511599993,-47.12363046699993],[-74.06737219999994,-47.13746510199984],[-74.14590410099996,-47.17115650799984],[-74.1725154289999,-47.16920338299997],[-74.18285071499992,-47.159763278999876],[-74.17658443899995,-47.15064869599996],[-74.15339107999992,-47.15064869599996],[-74.1556697259999,-47.14853280999996],[-74.16356360599988,-47.13909270599986],[-74.16714433499993,-47.13591887799997],[-74.1725154289999,-47.13396575299993],[-74.17829342399995,-47.13290780999998],[-74.21003170499992,-47.13144296700001],[-74.21922766799989,-47.12867603999995],[-74.2264705069999,-47.122002862999906],[-74.23070227799994,-47.102146091999984],[-74.22419186099992,-47.07935963299988],[-74.21239173099988,-47.05779387799987],[-74.18586178299992,-47.02304452899998],[-74.17735755099997,-47.016534112999906],[-74.16706295499995,-47.01287200299987],[-74.1568904289999,-47.01474374799993],[-74.12535559799991,-47.02564869599982],[-74.11864173099988,-47.03020598799995]]],[[[-75.13221358599986,-46.77799480599991],[-75.16177566599988,-46.78157945999986],[-75.20696718799991,-46.7518110859999],[-75.25044481099988,-46.74345719699997],[-75.26606236099985,-46.72439208499992],[-75.30765842799994,-46.71365679799994],[-75.34225186199987,-46.70173659099998],[-75.3231468519999,-46.68508931199989],[-75.28158313599994,-46.68390565499992],[-75.25209962399992,-46.68153114399991],[-75.21910701499993,-46.674402070999975],[-75.17399230399985,-46.677963655999974],[-75.1461990009999,-46.6970154939999],[-75.1357133999999,-46.72681088199986],[-75.12180152999991,-46.747033992999974],[-75.13221358599986,-46.77799480599991]]],[[[-73.7918188139999,-46.042250257999974],[-73.77940833199997,-46.04705169099988],[-73.7521052729999,-46.042250257999974],[-73.73888098899994,-46.04265715899999],[-73.72508704299995,-46.05046965899988],[-73.71198482999998,-46.05877044099995],[-73.69815019399988,-46.0646298159999],[-73.68667558499993,-46.07284921699999],[-73.68040930899988,-46.08806731599998],[-73.68407141799995,-46.10540129999997],[-73.70864824099993,-46.126722914999846],[-73.71458899599989,-46.13958098799995],[-73.71776282499994,-46.14251067499997],[-73.72484290299991,-46.143487237999864],[-73.73180091099987,-46.145928643999895],[-73.73501542899993,-46.15357838299992],[-73.73766028599994,-46.17180755],[-73.74543209499984,-46.187188408999944],[-73.75804602799991,-46.197035414999874],[-73.7754613919999,-46.199476820999905],[-73.79206295499995,-46.196872653999904],[-73.80846106699994,-46.19109465899993],[-73.82201087099992,-46.18141041499989],[-73.83031165299988,-46.166680596999896],[-73.83104407499991,-46.16375090899987],[-73.82933508999992,-46.1519507789999],[-73.82140051999994,-46.14332447699997],[-73.80968176999997,-46.13811614399999],[-73.82355709499986,-46.134860934999864],[-73.84235592399992,-46.12957122199988],[-73.89281165299994,-46.094414972],[-73.9270727199999,-46.07805754999998],[-73.94050045499989,-46.068129164999895],[-73.9192602199999,-46.02760182099996],[-73.90977942599991,-46.01637135199988],[-73.89647376199989,-46.01148853999982],[-73.87531490799998,-46.010186456],[-73.83739173099985,-46.01295338299995],[-73.82241777299993,-46.01978932099989],[-73.7918188139999,-46.042250257999974]]],[[[-73.74811764199993,-45.92359791499994],[-73.73888098899994,-45.92498137799993],[-73.71629798099988,-45.92148202899993],[-73.70767167899987,-45.92359791499994],[-73.70348059799994,-45.93531666499984],[-73.70596269399996,-45.971612237999935],[-73.68317623599995,-46.01767343499988],[-73.71263587099992,-46.02157968499988],[-73.8194880849999,-45.99871184699987],[-73.82632402299993,-45.985772393999866],[-73.82176673099988,-45.968926690999865],[-73.78628495999988,-45.91383228999982],[-73.77212480399994,-45.89869557099982],[-73.7555232409999,-45.88884856599989],[-73.74836178299995,-45.91887786299985],[-73.74811764199993,-45.92359791499994]]],[[[-74.72109941299993,-45.809828382999875],[-74.71300208199992,-45.82187265399989],[-74.71507727799994,-45.848402601999936],[-74.72288977799994,-45.865492445999976],[-74.74522864499994,-45.89999765399999],[-74.75153561099988,-45.92717864399991],[-74.76292883999986,-45.958265882999925],[-74.76634680899988,-45.98886484199994],[-74.77033443899995,-45.99871184699987],[-74.78075110599994,-46.01148853999982],[-74.79649817599987,-46.02507903399996],[-74.81358801999994,-46.03582122199988],[-74.85212154899992,-46.04501718499993],[-74.86778723899991,-46.05657317499997],[-74.8932185539999,-46.08806731599998],[-74.91966712099989,-46.10418059699995],[-74.95213782499988,-46.111423434999956],[-74.98615475199989,-46.11207447699984],[-75.04771887899994,-46.10572682099989],[-75.06285559799994,-46.101657809999935],[-75.07433020699989,-46.093845309999935],[-75.08185787699995,-46.08147551899991],[-75.08747311099995,-46.068129164999895],[-75.09447180899994,-46.055922132999925],[-75.10610917899993,-46.04705169099988],[-75.09732011599988,-46.034437757999896],[-75.08438066299988,-46.02678801899995],[-74.98884029899997,-46.00554778399989],[-74.95563717399995,-46.006605726999936],[-74.92267818899988,-46.01441822699984],[-74.89045162699993,-46.01620859199991],[-74.85912024599989,-45.99871184699987],[-74.86534583199995,-45.9924455709999],[-74.90200761599986,-46.006605726999936],[-74.91368567599997,-46.01295338299995],[-74.96564693899995,-45.98284270599984],[-74.98265540299991,-45.97877369599996],[-74.99413001199986,-45.98072682099983],[-75.02057857999992,-45.99032968499991],[-75.03351803299995,-45.9924455709999],[-75.04580644399991,-45.99179452899996],[-75.07876542899986,-45.98503997199984],[-75.07087154899989,-45.97478606599999],[-75.05899003799993,-45.97128671699991],[-75.02977454299992,-45.97193775799987],[-75.02977454299992,-45.96453215899995],[-75.08873450399994,-45.95029062299987],[-75.08503170499992,-45.916680596999846],[-75.09015865799991,-45.90976327899994],[-75.10887610599991,-45.89218515399992],[-75.11294511599996,-45.885674737999835],[-75.10826575399994,-45.874200127999885],[-75.09658769399994,-45.86695728999986],[-75.08189856699994,-45.86321379999991],[-75.06798255099997,-45.86207447699998],[-75.05435136599989,-45.863539320999934],[-75.01618404899995,-45.87574635199992],[-74.96979732999989,-45.88543059699988],[-74.95811926999987,-45.89251067499994],[-74.94058183499993,-45.906345309999935],[-74.91319739499988,-45.92107512799984],[-74.88353430899986,-45.929375909],[-74.85912024599989,-45.92359791499994],[-74.87791907499985,-45.908379815999965],[-74.96458899599989,-45.87078215899987],[-74.97052975199992,-45.86288827899999],[-74.96153723899991,-45.8546688779999],[-74.94737708199997,-45.85409921699993],[-74.93712317599994,-45.86174895599996],[-74.92796790299988,-45.87118905999988],[-74.91710364499988,-45.87574635199992],[-74.90689042899993,-45.87818775799995],[-74.89696204299995,-45.882012627999956],[-74.88939368399988,-45.88193124799997],[-74.8863826159999,-45.872328382999825],[-74.88499915299991,-45.85621510199985],[-74.88068600199992,-45.85426197699989],[-74.87311764199987,-45.85881926899993],[-74.86217200399989,-45.86207447699998],[-74.83600826699987,-45.85881926899993],[-74.82933508999989,-45.84880950299994],[-74.8314509759999,-45.831719659],[-74.8318578769999,-45.8075497379999],[-74.80402584499987,-45.81975676899987],[-74.79393469999988,-45.82122161299985],[-74.78233801999997,-45.81902434699985],[-74.76231848899991,-45.8097470029999],[-74.75291907499988,-45.8075497379999],[-74.73566646999987,-45.80722421699988],[-74.72109941299993,-45.809828382999875]]],[[[-73.70783443899992,-45.86394622199993],[-73.6940811839999,-45.88884856599989],[-73.71568762899992,-45.886000257999854],[-73.73863684799991,-45.877536717],[-73.76317298099994,-45.87135182099985],[-73.78966223899991,-45.87574635199992],[-73.80308997299989,-45.892022393999945],[-73.81281490799995,-45.91521575299997],[-73.82469641799989,-45.930596612999835],[-73.84487870999992,-45.92359791499994],[-73.84284420499988,-45.93425872199988],[-73.84142005099991,-45.938246351999865],[-73.83739173099985,-45.94402434699991],[-73.85655676999991,-45.96754322699988],[-73.88312740799995,-45.98088958099997],[-73.91095943899992,-45.98259856599989],[-73.9343155589999,-45.97193775799987],[-73.94493567599997,-45.93971119599992],[-73.94570878799988,-45.92506275799991],[-73.94050045499989,-45.909926039999895],[-73.92857825399994,-45.893487237999906],[-73.91144771999993,-45.87525807099993],[-73.89264889199987,-45.86077239399998],[-73.87588456899994,-45.8546688779999],[-73.83653723899994,-45.84954192499996],[-73.80207271999991,-45.835870049999855],[-73.74185136599995,-45.79387786299996],[-73.71629798099988,-45.81218840899992],[-73.71007239499991,-45.83700937299989],[-73.70783443899992,-45.86394622199993]]],[[[-74.00877844999988,-45.745375257999896],[-73.98810787699998,-45.747002862999906],[-73.94774329299992,-45.744235934999864],[-73.92682857999995,-45.745375257999896],[-73.9668676419999,-45.76978932099984],[-73.97524980399996,-45.78020598799992],[-73.96344967399996,-45.78687916499988],[-73.96202551999991,-45.79566822699995],[-73.96540279899992,-45.80608489399985],[-73.96776282499987,-45.81804778399996],[-73.96983801999991,-45.82073333099985],[-73.97451738199993,-45.823988539999895],[-73.97935950399989,-45.828301690999986],[-73.98204505099997,-45.83473072699982],[-73.98005123599992,-45.839288018999866],[-73.97008216099994,-45.85125090899997],[-73.96776282499987,-45.85833098799995],[-73.97598222599987,-45.88054778399999],[-73.99478105399993,-45.90276458099987],[-74.01561438699991,-45.913995049999954],[-74.0298966139999,-45.903090101999894],[-74.04295813699989,-45.86663176899984],[-74.04971269399991,-45.8546688779999],[-74.05919348899991,-45.84563567499998],[-74.06871497299991,-45.83863697699982],[-74.07225501199991,-45.82976653399996],[-74.0640356109999,-45.81503671699995],[-74.09097245999988,-45.81462981599995],[-74.1024063789999,-45.788832289999846],[-74.0945938789999,-45.76392994599989],[-74.0640356109999,-45.76653411299998],[-74.05968176999991,-45.74439869599992],[-74.04458574099989,-45.73845794099989],[-74.02546139199984,-45.74114348799987],[-74.00877844999988,-45.745375257999896]]],[[[-74.76943925699996,-45.70452239399985],[-74.77505449099996,-45.70525481599988],[-74.79710852799985,-45.697523695999955],[-74.85228430899988,-45.65667083099999],[-74.86359615799995,-45.652520440999965],[-74.87059485599985,-45.65081145599997],[-74.8751521479999,-45.64674244599992],[-74.8789770169999,-45.63551197699991],[-74.87926184799994,-45.62460702900002],[-74.87584387899992,-45.61345794099992],[-74.86986243399991,-45.60491301899998],[-74.86217200399989,-45.60149504999998],[-74.83910071499994,-45.601820570999905],[-74.81582597599993,-45.60515715899993],[-74.79800370999993,-45.6144345029999],[-74.79084225199989,-45.632500908999916],[-74.74986731699988,-45.69768645599993],[-74.75243079299989,-45.69963958099997],[-74.76943925699996,-45.70452239399985]]],[[[-74.6114802729999,-45.75139739399998],[-74.63630123599994,-45.752862237999864],[-74.66344153599988,-45.75090911299999],[-74.68569902299993,-45.74334075299987],[-74.7005102199999,-45.7276343729999],[-74.70563717399992,-45.70094166499996],[-74.70238196499989,-45.673923435],[-74.69371497299987,-45.646091403999876],[-74.67967688699991,-45.62070077899993],[-74.66047115799998,-45.60149504999998],[-74.64346269399991,-45.594333591999856],[-74.60407467399992,-45.58619557099992],[-74.58128821499989,-45.574639580999985],[-74.57217363199989,-45.57390715899996],[-74.55435136599993,-45.57480234199987],[-74.54133053299994,-45.57870859199987],[-74.53888912699992,-45.58749765400002],[-74.54149329299992,-45.59661223799991],[-74.54381262899996,-45.60149504999998],[-74.56529700399989,-45.63323333099994],[-74.5726619129999,-45.65406666499983],[-74.55044511599993,-45.67131926899984],[-74.55406653599991,-45.688897393999866],[-74.56379146999984,-45.70761484199993],[-74.5838923819999,-45.73528411299983],[-74.59569251199986,-45.745782158999894],[-74.6114802729999,-45.75139739399998]]],[[[-73.95457923099994,-45.71396249799996],[-74.00007076699988,-45.72161223799989],[-74.04356848899994,-45.715508722],[-74.0714412099999,-45.69085051899991],[-74.10094153599997,-45.6420223939999],[-74.10728919199988,-45.61549244599995],[-74.11172441299996,-45.607842706],[-74.1146541009999,-45.59970468499991],[-74.11241614499991,-45.58782317499994],[-74.08405514199987,-45.57048919099995],[-74.08071855399993,-45.56731536299999],[-74.06843014199988,-45.559747002999856],[-74.05044511599993,-45.54461028399986],[-74.03058834499983,-45.533135674999905],[-74.01252193899992,-45.53655364399991],[-74.00169837099992,-45.54338958099984],[-73.97874915299994,-45.549493096999925],[-73.96776282499987,-45.55364348799995],[-73.94497636599996,-45.57236093500001],[-73.9374080069999,-45.57480234199987],[-73.9102270169999,-45.590997003],[-73.90062415299991,-45.62835051899988],[-73.90526282499985,-45.669610283999916],[-73.92064368399988,-45.69768645599993],[-73.95457923099994,-45.71396249799996]]],[[[-74.28990637899992,-45.62249114399984],[-74.27122962099986,-45.63591887799991],[-74.24937903599991,-45.63486093499996],[-74.22744706899987,-45.63095468499988],[-74.20799719999988,-45.63551197699991],[-74.22093665299988,-45.64918385199994],[-74.23009192599997,-45.66334400799988],[-74.24181067599994,-45.675957940999865],[-74.26260331899994,-45.68466562299993],[-74.33568274599995,-45.687758070999834],[-74.3587947259999,-45.69768645599993],[-74.33763587099989,-45.69736093499991],[-74.3262833319999,-45.70370859200001],[-74.32428951699987,-45.71379973799999],[-74.33092200399994,-45.72486744599985],[-74.34162350199995,-45.733086846999925],[-74.40615800699993,-45.76685963299991],[-74.43968665299988,-45.77695077899988],[-74.47044837099995,-45.77499765399993],[-74.49327551999997,-45.74781666499992],[-74.50283769399994,-45.73235442499999],[-74.46532141799993,-45.69426848799992],[-74.45604407499988,-45.677422783999916],[-74.45742753799996,-45.65097421699993],[-74.4481501939999,-45.642998955999886],[-74.45685787699989,-45.63152434699994],[-74.48029537699998,-45.62118906000002],[-74.49229895699989,-45.61239999799987],[-74.48912512899992,-45.606622002999984],[-74.45897376199991,-45.593845309999864],[-74.4481501939999,-45.58782317499994],[-74.46544348899991,-45.57244231599999],[-74.46963456899994,-45.54664478999989],[-74.46393795499995,-45.518324476999936],[-74.45128333199989,-45.49529387799987],[-74.42125403599994,-45.454278252999956],[-74.40387936099995,-45.447360934999864],[-74.37189693899994,-45.45126718499986],[-74.31777910099987,-45.46697356599992],[-74.29352779899989,-45.47909921699991],[-74.27354895699992,-45.49529387799987],[-74.25739498599995,-45.5153947899999],[-74.24864661399988,-45.53557708099994],[-74.25316321499994,-45.553480726999894],[-74.27696692599991,-45.56731536299999],[-74.26154537699988,-45.57154713299991],[-74.24128170499998,-45.574395440999865],[-74.22496497299994,-45.58212655999988],[-74.2216690749999,-45.60149504999998],[-74.23131262899989,-45.61419036299995],[-74.24937903599991,-45.62037525799991],[-74.28990637899992,-45.62249114399984]]],[[[-73.62279212099992,-45.618910414999945],[-73.61148027299993,-45.62932708099986],[-73.62905839799987,-45.63583749799993],[-73.64671790299988,-45.63486093499996],[-73.68040930899988,-45.62249114399984],[-73.66958574099988,-45.64560312299989],[-73.66315670499998,-45.65471770599996],[-73.6531469389999,-45.66350676899994],[-73.63052324099993,-45.67278411299989],[-73.61888587099992,-45.679457289999945],[-73.61148027299993,-45.69085051899991],[-73.61388098899988,-45.7146135399999],[-73.62987219999988,-45.73756275799998],[-73.65392005099991,-45.75269947699998],[-73.68040930899988,-45.752862237999864],[-73.69782467399995,-45.72926197699992],[-73.72142493399988,-45.70517343499998],[-73.76805579299989,-45.680271091999956],[-73.77599036399997,-45.67376067499987],[-73.78620357999989,-45.67058684699998],[-73.80581620999996,-45.657159112999906],[-73.81826738199987,-45.6425106749999],[-73.80703691299986,-45.63551197699991],[-73.74185136599995,-45.60898202899986],[-73.74185136599995,-45.60149504999998],[-73.78620357999989,-45.56991952899999],[-73.77090410099993,-45.51197682099982],[-73.7222387359999,-45.45777760199993],[-73.66616777299987,-45.436944268999966],[-73.63141842399992,-45.443942966999856],[-73.60317949099996,-45.45769622199995],[-73.58600826699984,-45.48015715899987],[-73.58421790299985,-45.512627862999864],[-73.58739173099991,-45.52027760199998],[-73.59190833199995,-45.52646249799986],[-73.5960587229999,-45.53337981599995],[-73.59788977799988,-45.54338958099984],[-73.59679114499994,-45.56747812299996],[-73.59788977799988,-45.57480234199987],[-73.60651607999998,-45.589613539999846],[-73.61799068899992,-45.60507577899995],[-73.62279212099992,-45.618910414999945]]],[[[-73.90664628799993,-45.467543226999894],[-73.88589433499993,-45.47112395599996],[-73.8441462879999,-45.452894789999974],[-73.82502193899992,-45.45208098799996],[-73.81696529899997,-45.47478606599999],[-73.82152258999992,-45.49260833099997],[-73.83259029899995,-45.513278903999904],[-73.87047278599991,-45.5617001279999],[-73.88589433499993,-45.56113046699993],[-73.8985896479999,-45.55885182099986],[-73.92267818899992,-45.549004815999936],[-73.93053137899989,-45.546807549999855],[-73.95616614499997,-45.53533294099999],[-73.98119055899988,-45.531508070999884],[-74.01622473899997,-45.51946379999997],[-74.02965247299994,-45.51734791499996],[-74.06061764199988,-45.51946379999997],[-74.0726619129999,-45.52263762799993],[-74.0978083979999,-45.53679778399995],[-74.10871334499987,-45.539971612999835],[-74.11424719999988,-45.54501718499986],[-74.12189693899992,-45.56796640399995],[-74.12608801999994,-45.57480234199987],[-74.1426488919999,-45.57496510199984],[-74.14500891799986,-45.55803801899985],[-74.13955644399994,-45.535414320999976],[-74.13288326699987,-45.51946379999997],[-74.1262914699999,-45.51197682099982],[-74.11961829299995,-45.507094007999925],[-74.11449133999992,-45.50058359199994],[-74.11241614499991,-45.488457940999936],[-74.10659745999996,-45.471856377999984],[-74.0929255849999,-45.45175546699994],[-74.07689368399991,-45.43377044099991],[-74.0640356109999,-45.423272393999916],[-74.04710852799991,-45.4216447899999],[-73.98940995999988,-45.42750416499986],[-73.97154700399992,-45.43385182099989],[-73.95518958199989,-45.44500090899998],[-73.93171139199993,-45.45761484199997],[-73.90664628799993,-45.467543226999894]]],[[[-74.5000707669999,-45.56357187299987],[-74.50133216099991,-45.58806731599998],[-74.52330481699991,-45.580987237999935],[-74.52733313699987,-45.57040780999998],[-74.53376217399988,-45.55925872199987],[-74.54279537699992,-45.55038827899992],[-74.55435136599993,-45.546807549999855],[-74.57103430899988,-45.53972747199997],[-74.56818600199992,-45.523695570999976],[-74.55064856699988,-45.49911874799989],[-74.51976477799994,-45.444105726999815],[-74.49885006399998,-45.42473723799998],[-74.46865800699996,-45.417168877999856],[-74.44566809799987,-45.428155205999985],[-74.45494544199994,-45.45387135199995],[-74.49913489499991,-45.502536716999984],[-74.50438391799989,-45.52809010199988],[-74.5000707669999,-45.56357187299987]]],[[[-73.94102942599997,-45.36630624799991],[-73.8907771479999,-45.376641533999916],[-73.85582434799989,-45.37135182099995],[-73.82823645699997,-45.372328382999925],[-73.82445227799984,-45.395928643999866],[-73.83779863199996,-45.40976327899995],[-73.86339270699995,-45.420342705999914],[-73.89370683499993,-45.42742278399996],[-73.92174231699994,-45.43043385199988],[-73.98306230399993,-45.420668226999936],[-74.01121985599991,-45.411228123],[-74.0230199859999,-45.392673435],[-74.00894120999996,-45.38079192499987],[-73.97667395699992,-45.370700778999904],[-73.94102942599997,-45.36630624799991]]],[[[-74.34532630099991,-45.40203215899986],[-74.35753333199997,-45.403578382999896],[-74.37804114499994,-45.4009742169999],[-74.48916581899991,-45.35507577899992],[-74.51081295499992,-45.33855559699994],[-74.52635657499991,-45.31552499799987],[-74.52578691299993,-45.295017185],[-74.49913489499991,-45.28606536299989],[-74.42902584499984,-45.279554945999976],[-74.38927161399994,-45.28167083099998],[-74.37189693899994,-45.296644789999846],[-74.36790930899988,-45.303969007999854],[-74.3414200509999,-45.33766041499994],[-74.33385169199997,-45.35165780999991],[-74.32949785099987,-45.366143487999864],[-74.32339433499988,-45.379327080999985],[-74.31041419199988,-45.389255467],[-74.32140051999994,-45.39470794099985],[-74.33311926999994,-45.39902109199985],[-74.34532630099991,-45.40203215899986]]],[[[-74.0298966139999,-45.25261809699984],[-73.98607337099995,-45.27076588299984],[-73.87279212099985,-45.260837498000015],[-73.82445227799984,-45.26628997199987],[-73.80968176999997,-45.27939218500002],[-73.79214433499993,-45.30234140399992],[-73.78123938699986,-45.32415129999997],[-73.78624426999987,-45.33391692499991],[-73.8147680329999,-45.34539153399994],[-73.82787024599986,-45.347588799999855],[-73.98005123599992,-45.349379164999846],[-73.99632727799988,-45.352797132999854],[-74.01227779899997,-45.353610934999864],[-74.0714412099999,-45.33391692499991],[-74.11851966099991,-45.32830169099999],[-74.12950598899994,-45.323988539999895],[-74.13914954299992,-45.31226978999983],[-74.15196692599994,-45.29265715899995],[-74.16291256399992,-45.270928643999895],[-74.16706295499995,-45.25261809699984],[-74.15807044199994,-45.235528252999885],[-74.13857988199996,-45.22869231599995],[-74.11522376199986,-45.2242164039999],[-74.07038326699984,-45.204278252999906],[-74.05431067599994,-45.21453215899993],[-74.0298966139999,-45.25261809699984]]],[[[-74.30748450399994,-45.29452890400002],[-74.32534745999993,-45.30234140399992],[-74.33849036399988,-45.29859791499989],[-74.39317786399994,-45.26824309699991],[-74.40550696499989,-45.25888437299997],[-74.41510982999995,-45.247002862999835],[-74.42027747299994,-45.23211028399996],[-74.41966712099989,-45.199802341999856],[-74.40831458199992,-45.17197030999989],[-74.38756262899992,-45.15520598799987],[-74.3587947259999,-45.15642669099989],[-74.3431697259999,-45.164808851999936],[-74.30357825399997,-45.19801197699995],[-74.29649817599991,-45.200778904],[-74.2796931629999,-45.204278252999906],[-74.27354895699992,-45.20794036299996],[-74.27086341099994,-45.215915623],[-74.27684485599985,-45.22063567499984],[-74.28990637899992,-45.225274346999946],[-74.2991430329999,-45.27239348799995],[-74.30748450399994,-45.29452890400002]]],[[[-73.84557044199997,-45.001234632999896],[-73.77814693899995,-45.038750909],[-73.76984615799998,-45.046563408999916],[-73.75959225199995,-45.06210702899992],[-73.7607315749999,-45.06804778399992],[-73.76642818899998,-45.07097747199987],[-73.76984615799998,-45.07756926899994],[-73.7599177729999,-45.08587005],[-73.73786373599998,-45.097751559999956],[-73.71458899599989,-45.11419036299995],[-73.70152747299987,-45.13591887799984],[-73.70079505099997,-45.16057708099993],[-73.70689856699994,-45.181329033999916],[-73.71788489499991,-45.19915129999998],[-73.73192298099984,-45.21477629999997],[-73.74217688699989,-45.23560963299987],[-73.73184160099987,-45.267266533999845],[-73.74185136599995,-45.27996184699998],[-73.7679744129999,-45.28460051899984],[-73.78986568899994,-45.273532809999885],[-73.80968176999997,-45.25644296699994],[-73.83014889199984,-45.24309661299992],[-73.84284420499988,-45.239678643999916],[-73.86961829299987,-45.23821379999987],[-73.96251380099989,-45.249118748000015],[-73.98957271999984,-45.245782159],[-74.00739498599992,-45.23211028399996],[-74.02696692599987,-45.19207122199993],[-74.03978430899991,-45.18368905999996],[-74.05801347599989,-45.17506275799988],[-74.08409583199993,-45.14006926899988],[-74.10496985599994,-45.13591887799984],[-74.11139889199984,-45.14120859199991],[-74.11579342399992,-45.15032317499998],[-74.12169348899997,-45.15911223799996],[-74.13288326699987,-45.163262628],[-74.14362545499998,-45.15740325299987],[-74.15721594999994,-45.146661065999936],[-74.16893469999992,-45.1416968729999],[-74.17389889199987,-45.15300872199988],[-74.18358313699994,-45.16952890399986],[-74.20547441299988,-45.169366143999895],[-74.2286677729999,-45.1600888],[-74.24217688699989,-45.149590752999956],[-74.25011145699995,-45.10963307099992],[-74.23542232999995,-45.07236093500001],[-74.20693925699993,-45.042657158999916],[-74.17389889199987,-45.02605559699986],[-74.14940344999984,-45.02361419099984],[-74.07457434799997,-45.033461195999934],[-74.06330318899994,-45.03134530999993],[-74.04426021999987,-45.02157968499998],[-74.03294837099988,-45.01921965899993],[-73.98916581899994,-45.020684502999984],[-73.97524980399996,-45.01921965899993],[-73.95392818899998,-45.01246510199991],[-73.91470292899996,-44.995293877999885],[-73.88931230399993,-44.99187590899987],[-73.86607825399992,-44.99456145599986],[-73.84557044199997,-45.001234632999896]]],[[[-73.91783606699993,-44.95647551899986],[-73.93809973899994,-44.969170830999914],[-73.94391842399988,-44.97144947699997],[-73.95494544199994,-44.97372812299987],[-73.97565670499993,-44.98300546700001],[-73.98574785099993,-44.98512135199992],[-73.99762936099995,-44.98308684699999],[-74.02399654899997,-44.974053643999895],[-74.0432022779999,-44.97014739399997],[-74.05614173099994,-44.96559010199995],[-74.0640356109999,-44.96404387799991],[-74.06017005099989,-44.97234465899997],[-74.05394446499994,-44.97918059699991],[-74.03604081899988,-44.99187590899987],[-74.06578528599991,-44.998793226999965],[-74.18748938699994,-44.99187590899987],[-74.21670488199987,-45.002048435],[-74.24840247299994,-45.01767343499999],[-74.28014075399989,-45.027439059999935],[-74.30955969999987,-45.019626559999935],[-74.33629309799989,-45.018812757999925],[-74.35692298099991,-45.01148853999993],[-74.36359615799998,-44.99724700299993],[-74.34825598899994,-44.97486744599982],[-74.33128821499986,-44.9645321589999],[-74.27009029899992,-44.94410572699984],[-74.2533259759999,-44.93230559699995],[-74.21141516799989,-44.88583749799999],[-74.18830318899995,-44.869073174999976],[-74.16372636599993,-44.86467864399991],[-74.1383357409999,-44.86825937299997],[-74.0419815749999,-44.89381275799987],[-73.98664303299991,-44.89771900799987],[-73.96959387899994,-44.903985284],[-73.94050045499989,-44.92986419099992],[-73.9166560539999,-44.94443124799986],[-73.91319739499991,-44.95037200299997],[-73.91783606699993,-44.95647551899986]]],[[[-74.03929602799994,-44.853122653999975],[-74.0714412099999,-44.854180596999925],[-74.09727942599991,-44.84156666499986],[-74.1762589179999,-44.81845468499991],[-74.18748938699994,-44.806329034],[-74.16633053299991,-44.80071379999991],[-74.03864498599998,-44.78337981599992],[-74.00991777299993,-44.77320728999996],[-73.99571692599991,-44.77214934699991],[-73.97329667899989,-44.77564869599981],[-73.96349036399997,-44.78053150799988],[-73.9612524079999,-44.790704033999916],[-73.9615779289999,-44.810153904],[-73.97374426999991,-44.83456796699996],[-74.00328528599997,-44.84775155999992],[-74.03929602799994,-44.853122653999975]]],[[[-73.81696529899997,-44.83424244599995],[-73.76231848899994,-44.92986419099992],[-73.77867591099992,-44.9463843729999],[-73.79458574099996,-44.95680103999988],[-73.8137100899999,-44.960870049999855],[-73.8396703769999,-44.958591403999876],[-73.88320878799993,-44.928155205999914],[-73.92369544199988,-44.892673435],[-73.92886308499988,-44.88103606599992],[-73.93028723899994,-44.8651669249999],[-73.92674719999988,-44.85442473799996],[-73.91690019399994,-44.85784270599997],[-73.88988196499992,-44.882745049999926],[-73.87535559799997,-44.891045830999985],[-73.85789954299992,-44.89568450299984],[-73.86876380099989,-44.888278903999925],[-73.87767493399994,-44.878024997999916],[-73.88365637899994,-44.86728280999991],[-73.88874264199987,-44.84384531],[-73.89647376199989,-44.83757903399997],[-73.90758216099991,-44.833916924999926],[-73.92064368399988,-44.82740650799984],[-73.93089758999992,-44.8205705709999],[-73.9391169909999,-44.812920830999886],[-73.94058183499988,-44.80291106599999],[-73.93053137899989,-44.78923919099995],[-73.91051184799993,-44.77499765399995],[-73.89777584499987,-44.76864999799993],[-73.88589433499993,-44.76539478999989],[-73.8544815749999,-44.76873137799991],[-73.83678137899989,-44.78411223799995],[-73.81696529899997,-44.83424244599995]]],[[[-75.08519446499989,-44.92343515399999],[-75.10981686899993,-44.92597822199983],[-75.13061157899992,-44.92593727399999],[-75.15235794499995,-44.92121388799988],[-75.1646665419999,-44.91383540199983],[-75.1589139859999,-44.90512386899988],[-75.14833457499995,-44.89037733300002],[-75.1463514989999,-44.878323374],[-75.1548561729999,-44.86492926099986],[-75.18512868999989,-44.83876287799987],[-75.20021264199997,-44.81661513199992],[-75.19832239499988,-44.80723242299987],[-75.17460927399992,-44.78315836899989],[-75.14718188599997,-44.76376652599989],[-75.11317938199988,-44.76651821599994],[-75.09998328699987,-44.77659055799993],[-75.0914732549999,-44.796056056],[-75.06328310099987,-44.83090345699999],[-75.02173439899991,-44.84366472299982],[-75.02647063199993,-44.85304619099986],[-75.04250521699987,-44.87043797600002],[-75.03503483499995,-44.889893787999966],[-75.0312720629999,-44.903969271],[-75.05114545099988,-44.905965001999846],[-75.0691625639999,-44.920098565999965],[-75.08519446499989,-44.92343515399999]]],[[[-73.60472571499989,-44.74488697699984],[-73.60488847599996,-44.75807057099996],[-73.62230383999992,-44.780205987999864],[-73.62205969999988,-44.78923919099995],[-73.61339270699989,-44.81267669099985],[-73.62730872299997,-44.82976653399989],[-73.65241451699987,-44.83912525799991],[-73.6773168609999,-44.84026458099994],[-73.70128333199995,-44.83375416499996],[-73.72826087099992,-44.821058851999894],[-73.74925696499986,-44.80282968499992],[-73.7555232409999,-44.77955494599981],[-73.74168860599991,-44.754652601999965],[-73.71776282499994,-44.75172291499994],[-73.68960527299996,-44.75318775799991],[-73.66307532499991,-44.741875908999916],[-73.65025794199995,-44.734470309999935],[-73.63304602799985,-44.731540622999916],[-73.61628170499992,-44.73430754999988],[-73.60472571499989,-44.74488697699984]]],[[[-74.32778886599996,-44.84791432099989],[-74.39354407499985,-44.85702890399996],[-74.41030839799987,-44.851006768999966],[-74.42369544199997,-44.84303150799982],[-74.45588131399992,-44.83505624799996],[-74.46939042899989,-44.82683684699987],[-74.47484290299994,-44.81959400799994],[-74.4884333979999,-44.79452890400002],[-74.5250544909999,-44.754001559999914],[-74.5277400379999,-44.74325937299999],[-74.52285722599993,-44.73357512799985],[-74.50963294199988,-44.725030205999914],[-74.49083411399994,-44.71965911299996],[-74.46556555899988,-44.716241143999866],[-74.4417211579999,-44.715427341999856],[-74.42711341099988,-44.71819426899991],[-74.41893469999988,-44.729099216999884],[-74.4126684239999,-44.74586353999982],[-74.40868079299995,-44.763278903999876],[-74.40721594999988,-44.775974217],[-74.39879309799993,-44.78769296700001],[-74.37922115799995,-44.7972958309999],[-74.35716712099986,-44.80388762799997],[-74.3414200509999,-44.806329034],[-74.33169511599995,-44.812920830999886],[-74.31786048099985,-44.827080987999906],[-74.31236731699994,-44.841403903999975],[-74.32778886599996,-44.84791432099989]]],[[[-74.45441646999987,-44.67351653399994],[-74.45836341099994,-44.69003671700001],[-74.46898352799988,-44.69719817499987],[-74.48436438699991,-44.698418877999885],[-74.56712805899988,-44.69304778399991],[-74.59325110599994,-44.68222421699993],[-74.60871334499987,-44.684014580999914],[-74.62474524599995,-44.68808359199997],[-74.6387426419999,-44.68938567499997],[-74.65225175699987,-44.68621184699991],[-74.66348222599987,-44.67994557099986],[-74.66950436099998,-44.67017994599991],[-74.66734778599988,-44.656182549999954],[-74.66095943899995,-44.653741143999916],[-74.62800045499989,-44.628187757999925],[-74.62267005099991,-44.62200286299996],[-74.57013912699998,-44.62004973799992],[-74.55064856699988,-44.62200286299996],[-74.49819902299993,-44.63445403399989],[-74.4823298819999,-44.63632577899986],[-74.46930904899992,-44.639092705999914],[-74.46068274599992,-44.64706796699987],[-74.45592200399992,-44.65878671699994],[-74.45441646999987,-44.67351653399994]]],[[[-73.92682857999995,-44.62883879999997],[-73.89313717399995,-44.66033294099998],[-73.87755286399997,-44.680596612999906],[-73.87588456899994,-44.69402434699998],[-73.96776282499987,-44.704522393999966],[-74.01183020699987,-44.7164852839999],[-74.09316972599996,-44.75335051899996],[-74.19566809799994,-44.77841562299987],[-74.24730383999989,-44.8012020809999],[-74.25869706899994,-44.804457289999924],[-74.26935787699988,-44.805352471999925],[-74.2796931629999,-44.80380624799999],[-74.32046464799996,-44.78980885199992],[-74.3395889959999,-44.77922942499988],[-74.35602779899992,-44.765069268999866],[-74.36876380099987,-44.74749114399984],[-74.37287350199992,-44.725274346999946],[-74.3608292309999,-44.71331145599984],[-74.34007727799991,-44.709079685],[-74.31786048099985,-44.710137627999956],[-74.31786048099985,-44.704522393999966],[-74.33551998599998,-44.70484791499989],[-74.40697180899994,-44.69426848799985],[-74.41380774599986,-44.68596770599987],[-74.41344153599994,-44.65276458099986],[-74.40054277299993,-44.626071873000015],[-74.36945553299992,-44.62127044099993],[-74.29735266799992,-44.62883879999997],[-74.30679277299993,-44.61638762799987],[-74.2921443349999,-44.608005467],[-74.2671606109999,-44.60312265399993],[-74.02562415299988,-44.60312265399993],[-73.97134355399996,-44.611016534],[-73.92682857999995,-44.62883879999997]]],[[[-74.78302975199992,-44.55510833099985],[-74.77721106699994,-44.581149998],[-74.74152584499993,-44.572360934999864],[-74.73253333199989,-44.593194268999916],[-74.73908443899998,-44.62664153399999],[-74.74986731699988,-44.656182549999954],[-74.74779212099986,-44.66562265399987],[-74.76402747299991,-44.67327239399999],[-74.78673255099994,-44.67685312299996],[-74.8038630849999,-44.67376067499998],[-74.81891842399992,-44.655694268999966],[-74.8258357409999,-44.63095468499998],[-74.82705644399991,-44.604424737999935],[-74.82494055899991,-44.581149998],[-74.81484941299993,-44.558526299999954],[-74.7982478509999,-44.548760675],[-74.78302975199992,-44.55510833099985]]],[[[-73.67992102799991,-44.544854424999905],[-73.66315670499998,-44.55966562299999],[-73.6531469389999,-44.57366301899995],[-73.67357337099986,-44.57366301899995],[-73.66323808499995,-44.58660247199987],[-73.63337154899997,-44.60808684699998],[-73.62515214799987,-44.62200286299996],[-73.62686113199987,-44.64055754999997],[-73.63678951699987,-44.653741143999916],[-73.64952551999994,-44.66464609199989],[-73.6599828769999,-44.676527601999936],[-73.64053300699989,-44.677015882999925],[-73.62661699099993,-44.67522551899994],[-73.6146541009999,-44.67685312299996],[-73.60130774599989,-44.68718840899989],[-73.59154212099995,-44.70671965899995],[-73.6029353509999,-44.71575286299988],[-73.62466386599988,-44.71819426899991],[-73.64598548099984,-44.71819426899991],[-73.71324622299989,-44.737074476999936],[-73.75251217399989,-44.74138762799992],[-73.76984615799998,-44.725030205999914],[-73.78709876199989,-44.70378997199994],[-73.83788001199994,-44.66432057099987],[-73.84430904899995,-44.65252044099991],[-73.83120683499986,-44.64251067499991],[-73.8207087879999,-44.653415622999894],[-73.8164770169999,-44.63738372199991],[-73.81696529899997,-44.61370208099997],[-73.8207087879999,-44.60149504999991],[-73.82705644399994,-44.59441497199994],[-73.82140051999994,-44.57870859199997],[-73.80939693899991,-44.562188409],[-73.79649817599991,-44.5531552059999],[-73.7767634759999,-44.55169036299985],[-73.75519771999986,-44.55282968499988],[-73.73452714799996,-44.55169036299985],[-73.71800696499989,-44.54355234200001],[-73.69953365799995,-44.53679778399988],[-73.67992102799991,-44.544854424999905]]],[[[-74.17686926999988,-44.50383879999991],[-74.15436764199988,-44.53899504999988],[-74.13288326699987,-44.54697031000002],[-74.15420488199993,-44.55974700299997],[-74.24893144399991,-44.56666432099988],[-74.30089270699989,-44.57781340899999],[-74.3263240229999,-44.57968515399994],[-74.34455318899997,-44.57366301899995],[-74.35822506399992,-44.55917734199999],[-74.36888587099985,-44.54111093499989],[-74.36839758999986,-44.52556731599998],[-74.32843990799992,-44.51474374799997],[-74.2943416009999,-44.49944426899984],[-74.25438391799986,-44.505954684999914],[-74.21202551999994,-44.493422132999925],[-74.19371497299989,-44.49228280999989],[-74.17686926999988,-44.50383879999991]]],[[[-73.95962480399987,-44.551446221999896],[-73.98839270699992,-44.55413176899988],[-74.04588782499991,-44.5531552059999],[-74.07066809799997,-44.55201588299987],[-74.1016332669999,-44.545505466999956],[-74.12645423099985,-44.53427499799987],[-74.13288326699987,-44.51897551899991],[-74.11815344999988,-44.5116513],[-74.03604081899988,-44.49846770599994],[-74.05894934799989,-44.476006768999945],[-74.14366614499997,-44.4581031229999],[-74.16706295499995,-44.43027109199993],[-74.15404212099989,-44.432549737999985],[-74.14488684799989,-44.43824635199989],[-74.13658606699991,-44.44500090899993],[-74.12608801999994,-44.45061614399984],[-74.11388098899997,-44.45338307099989],[-74.01622473899997,-44.4568010399999],[-74.00475012899992,-44.460056247999944],[-73.98216712099995,-44.46917083099984],[-73.97154700399992,-44.471286716999856],[-73.95742753799988,-44.479261976999894],[-73.95030676999991,-44.49895598799985],[-73.9473363919999,-44.54355234200001],[-73.95962480399987,-44.551446221999896]]],[[[-74.2230525379999,-44.467380466999856],[-74.24014238199993,-44.47812265399996],[-74.30357825399997,-44.48479583099999],[-74.35680091099994,-44.49911874799999],[-74.42027747299994,-44.50530364399988],[-74.41071529899997,-44.51433684699996],[-74.40265865799992,-44.52450937299993],[-74.39659583199995,-44.53525156000002],[-74.39297441299988,-44.54697031000002],[-74.42100989499988,-44.54664478999981],[-74.49400794199991,-44.535902601999894],[-74.52330481699991,-44.52646249799997],[-74.54059811099992,-44.502048435],[-74.54771887899997,-44.47665780999991],[-74.54112708199989,-44.453789971999896],[-74.51707923099985,-44.43710702899986],[-74.50304114499991,-44.434502862999864],[-74.43879146999987,-44.43914153399989],[-74.43004309799991,-44.445570570999884],[-74.42516028599994,-44.456312757999825],[-74.42027747299994,-44.471286716999856],[-74.36558997299991,-44.41139088299991],[-74.34825598899994,-44.4022763],[-74.3211156889999,-44.39544036299999],[-74.30638587099992,-44.3937313779999],[-74.28551184799994,-44.40309010199984],[-74.26813717399997,-44.406426690999865],[-74.25951087099986,-44.412855726999965],[-74.23900305899991,-44.44011809699986],[-74.2230525379999,-44.467380466999856]]],[[[-73.82046464799987,-44.460544528999925],[-73.86701412699989,-44.46607838299994],[-73.88853919199991,-44.46013762799993],[-73.90412350199992,-44.44491952899995],[-73.91193600199989,-44.419366143999866],[-73.91095943899992,-44.39674244599989],[-73.90282141799992,-44.37835051899995],[-73.88768469999991,-44.36923593499995],[-73.86538652299987,-44.374932549999855],[-73.85362708199989,-44.38534921700001],[-73.84699459499984,-44.40447356599991],[-73.8380427729999,-44.412855726999965],[-73.82494055899994,-44.416599216999984],[-73.79893958199995,-44.41757577899996],[-73.78966223899991,-44.42278411299988],[-73.78294837099986,-44.44304778399989],[-73.79718990799994,-44.45452239399984],[-73.82046464799987,-44.460544528999925]]],[[[-72.93390865799995,-44.45094166499986],[-72.98094641799986,-44.512139580999985],[-72.95555579299992,-44.51360442499994],[-72.90583248599992,-44.45273202900002],[-72.87230383999989,-44.43710702899986],[-72.85167395699997,-44.440362237999906],[-72.80972245999988,-44.45387135199988],[-72.78628495999989,-44.4568010399999],[-72.76891028599994,-44.466566664999846],[-72.74657141799989,-44.50920989399996],[-72.73106848899988,-44.51897551899991],[-72.72118079299989,-44.52800872199991],[-72.72984778599997,-44.548435153999975],[-72.74518795499992,-44.56951262799991],[-72.80113684799997,-44.62883879999997],[-72.81334387899994,-44.63632577899986],[-72.9007869129999,-44.63095468499998],[-72.94127356699994,-44.620375257999854],[-72.98094641799986,-44.60149504999991],[-72.97744706899996,-44.622328382999896],[-72.9625544909999,-44.63290781000002],[-72.94237219999988,-44.6403947899999],[-72.92292232999998,-44.65276458099986],[-72.90233313699986,-44.66155364399999],[-72.84740149599986,-44.66757577899992],[-72.83128821499989,-44.676527601999936],[-72.83763587099992,-44.710137627999956],[-72.87677975199995,-44.74138762799992],[-72.9681697259999,-44.78769296700001],[-73.00755774599989,-44.81324635199982],[-73.01561438699994,-44.82366301899998],[-73.02000891799992,-44.827813408999845],[-73.02965247299989,-44.830498955999914],[-73.03921464799987,-44.83505624799996],[-73.04698645699997,-44.851006768999966],[-73.05483964799996,-44.85808684699984],[-73.14745032499991,-44.91187916499989],[-73.19005286399997,-44.92742278399989],[-73.25698808499988,-44.94003671699986],[-73.27578691299993,-44.939385675],[-73.29141191299989,-44.932386976999936],[-73.30304928299991,-44.91619231599998],[-73.36510169199994,-44.86842213299994],[-73.39313717399995,-44.841403903999975],[-73.40758216099991,-44.822442315999965],[-73.4029841789999,-44.813734632999896],[-73.35997473899994,-44.8150367169999],[-73.34459387899989,-44.81023528399999],[-73.32725989499991,-44.79648202899989],[-73.30748450399989,-44.78590260199993],[-73.28844153599991,-44.78980885199992],[-73.25523841099988,-44.813734632999896],[-73.24388587099992,-44.80901458099997],[-73.21963456899991,-44.8041317689999],[-73.20742753799993,-44.80006275799987],[-73.20742753799993,-44.79265715899995],[-73.21825110599994,-44.790459893999966],[-73.2996313139999,-44.75855885199995],[-73.30654863199989,-44.761325779],[-73.33775794199988,-44.77955494599981],[-73.35875403599991,-44.788995049999905],[-73.36937415299987,-44.791680596999974],[-73.38247636599993,-44.79265715899995],[-73.39342200399989,-44.78866952899999],[-73.40074622299991,-44.77890390399986],[-73.40477454299989,-44.76653411299992],[-73.40607662699998,-44.75514088299995],[-73.40941321499989,-44.74651458099986],[-73.43342037699995,-44.725030205999914],[-73.44261633999992,-44.70680103999993],[-73.45567786399988,-44.66171640399996],[-73.46812903599991,-44.64251067499991],[-73.4271541009999,-44.60100676899984],[-73.41661536399994,-44.59465911299998],[-73.40721594999991,-44.59351978999994],[-73.39126542899989,-44.588962497999916],[-73.38247636599993,-44.58782317499988],[-73.37559973899991,-44.59148528399993],[-73.35944576699987,-44.60881926899991],[-73.35142981699991,-44.615166924999855],[-73.31895911399994,-44.60295989399988],[-73.3104548819999,-44.60149504999991],[-73.29743404899992,-44.60613372199993],[-73.2706192699999,-44.624688408999944],[-73.25104732999995,-44.63193124799987],[-73.24644934799991,-44.63730234199993],[-73.24120032499994,-44.639336846999946],[-73.23167883999992,-44.63258228999983],[-73.22618567599991,-44.6205380189999],[-73.23338782499994,-44.61256275799993],[-73.25523841099988,-44.60149504999991],[-73.26744544199993,-44.58603280999989],[-73.2796524729999,-44.56292083099992],[-73.28050696499992,-44.541761976999936],[-73.25865637899989,-44.53264739399985],[-73.23672441299996,-44.53557708099987],[-73.15916907499991,-44.57040780999991],[-73.14899654899995,-44.57170989399991],[-73.13914954299993,-44.56666432099988],[-73.13243567599989,-44.55632903399987],[-73.13158118399987,-44.54517994599993],[-73.13695227799985,-44.5363095029999],[-73.14907792899993,-44.53264739399985],[-73.17275956899996,-44.53093840899993],[-73.2238663399999,-44.519952080999886],[-73.24156653599994,-44.512139580999985],[-73.26121985599988,-44.47722747199997],[-73.24624589799996,-44.43718840899984],[-73.21031653599987,-44.408868096999896],[-73.16710364499997,-44.409112237999935],[-73.16100012899989,-44.41497161299996],[-73.14655514199984,-44.43564218499998],[-73.13914954299993,-44.443291924999926],[-73.13841712099992,-44.43873463299988],[-73.13683020699997,-44.436130466999884],[-73.13451087099992,-44.43385182099982],[-73.12267005099994,-44.43434010199998],[-73.11115475199992,-44.432549737999985],[-73.0999649729999,-44.42766692499993],[-73.08458411399997,-44.43027109199993],[-73.07209225199995,-44.44068775799984],[-73.05040442599989,-44.47144947699982],[-73.03620357999995,-44.48479583099999],[-73.04820716099988,-44.44548919099991],[-73.0497940749999,-44.433689059999935],[-73.05479895699995,-44.41863372199984],[-73.06651770699993,-44.41521575299991],[-73.08018958199989,-44.41301848799992],[-73.09080969999992,-44.4022763],[-73.08381100199995,-44.38453541499983],[-73.02049719999991,-44.37411874799993],[-73.00202389199987,-44.361260674999905],[-72.97923743399986,-44.374444268999866],[-72.9535212879999,-44.39446379999992],[-72.93321692599991,-44.416924737999835],[-72.92625891799992,-44.43710702899986],[-72.93390865799995,-44.45094166499986]]],[[[-73.67870032499988,-44.434502862999864],[-73.69151770699992,-44.43792083099987],[-73.70864824099993,-44.43352629999997],[-73.72647050699993,-44.425062757999854],[-73.78966223899991,-44.382419529],[-73.74596106699991,-44.36370208099994],[-73.73192298099984,-44.361260674999905],[-73.69782467399995,-44.361260674999905],[-73.69017493399991,-44.35898202899993],[-73.68211829299987,-44.34889088299997],[-73.67357337099986,-44.346937757999925],[-73.65412350199995,-44.35084400799991],[-73.65135657499991,-44.35881926899988],[-73.65632076699987,-44.370375257999974],[-73.6599828769999,-44.38551197699997],[-73.66942298099991,-44.38844166499983],[-73.72883053299998,-44.388604424999876],[-73.69668535099991,-44.398207289999945],[-73.68053137899994,-44.407484632999825],[-73.67357337099986,-44.41961028399999],[-73.67870032499988,-44.434502862999864]]],[[[-74.0298966139999,-44.35458749799986],[-74.00218665299991,-44.35621510199988],[-73.95055091099997,-44.348565362999935],[-73.92682857999995,-44.35458749799986],[-73.93464107999995,-44.37916432099996],[-73.92886308499988,-44.431247654],[-73.94050045499989,-44.45061614399984],[-73.98802649599989,-44.419040623],[-74.00633704299986,-44.41301848799992],[-74.0311173169999,-44.409356377999885],[-74.04295813699989,-44.40569426899984],[-74.06322180899988,-44.39218515399986],[-74.08153235599985,-44.38396575299994],[-74.09068762899994,-44.374932549999855],[-74.09618079299986,-44.36492278399995],[-74.10586503799993,-44.338962497999866],[-74.11241614499991,-44.32724374799989],[-74.09142005099997,-44.32024504999998],[-74.07054602799991,-44.32919687299993],[-74.05003821499994,-44.343845309999935],[-74.0298966139999,-44.35458749799986]]],[[[-73.24400794199988,-44.310316664999895],[-73.2145076159999,-44.323988539999846],[-73.21056067599991,-44.32382577899987],[-73.17715410099996,-44.36777109199998],[-73.17674719999985,-44.374932549999855],[-73.26280676999991,-44.38844166499983],[-73.28319251199991,-44.3815243469999],[-73.29849199099996,-44.368096612999835],[-73.30272376199989,-44.34970468499998],[-73.29002844999994,-44.32724374799989],[-73.2827042309999,-44.32195403399999],[-73.25804602799994,-44.30917734199987],[-73.24901282499991,-44.306735935],[-73.24400794199988,-44.310316664999895]]],[[[-73.80345618399991,-44.27556731599985],[-73.78905188699994,-44.30950286299989],[-73.80748450399996,-44.32512786299987],[-73.83849036399991,-44.332289320999905],[-73.86538652299987,-44.334079684999985],[-73.89614824099996,-44.334730726999936],[-73.93248450399994,-44.328545830999886],[-73.96263587099986,-44.313897393999966],[-73.97524980399996,-44.289646091999884],[-73.96288001199991,-44.28378671699993],[-73.87970943899995,-44.29924895599996],[-73.85106360599988,-44.29631926899994],[-73.84121660099987,-44.28980885199985],[-73.83739173099985,-44.275648695999834],[-73.83470618399988,-44.271742445999834],[-73.8281957669999,-44.26832447699991],[-73.82042395699997,-44.26604583099994],[-73.81383216099991,-44.265069268999966],[-73.80565344999991,-44.26637135199996],[-73.80382239499991,-44.270114841999984],[-73.80345618399991,-44.27556731599985]]],[[[-74.2900284499999,-44.297295830999914],[-74.29816646999991,-44.30950286299989],[-74.31411699099993,-44.302992445999976],[-74.33844967399989,-44.29631926899994],[-74.37706458199995,-44.292575778999904],[-74.40990149599986,-44.284437757999974],[-74.41685950399993,-44.26490650799991],[-74.4115291009999,-44.25855885199988],[-74.40347245999993,-44.254489842],[-74.38662675699993,-44.24993254999996],[-74.3665258449999,-44.24675872199991],[-74.34390214799993,-44.246189059999935],[-74.32201087099989,-44.24944426899998],[-74.30357825399997,-44.25823333099986],[-74.2913305329999,-44.27678801899986],[-74.2900284499999,-44.297295830999914]]],[[[-73.66616777299987,-44.265069268999966],[-73.67536373599995,-44.2779273419999],[-73.69688880099997,-44.29314544099988],[-73.72203528599994,-44.30282968500002],[-73.74185136599995,-44.29924895599996],[-73.75739498599995,-44.282403252999956],[-73.75967363199993,-44.262872002999885],[-73.75316321499994,-44.25286223799998],[-73.74185136599995,-44.265069268999966],[-73.69835364499994,-44.241875908999845],[-73.67568925699987,-44.24130624799987],[-73.66616777299987,-44.265069268999966]]],[[[-74.03636633999992,-44.162286065999865],[-73.99608313699991,-44.201429945999884],[-73.98420162699998,-44.20794036299989],[-73.91515051999994,-44.2152645809999],[-73.90294348899988,-44.220798435],[-73.89362545499995,-44.239353123],[-73.91417395699989,-44.24236419099984],[-73.94627844999985,-44.241387627999856],[-73.97154700399992,-44.24814218499989],[-73.98485266799992,-44.25400156000002],[-73.99815833199995,-44.25400156000002],[-74.00934811099995,-44.25725676899988],[-74.01622473899997,-44.272556248000015],[-74.01382402299993,-44.28525156],[-73.98957271999984,-44.32724374799989],[-74.01793372299997,-44.32773202899987],[-74.03140214799996,-44.325860283999894],[-74.04352779899995,-44.32040780999994],[-74.09439042899986,-44.282403252999956],[-74.10065670499992,-44.26970794099998],[-74.10216223899988,-44.240004164999874],[-74.10871334499987,-44.22747161299988],[-74.1262914699999,-44.20029062299995],[-74.11050370999993,-44.18914153399993],[-74.07909094999991,-44.18962981599984],[-74.04971269399991,-44.19687265399986],[-74.04971269399991,-44.190036717],[-74.05793209499993,-44.182549737999956],[-74.06818600199995,-44.168552342],[-74.07286536399997,-44.15504322699992],[-74.06432044199994,-44.14902109199992],[-74.0489802729999,-44.15292734200001],[-74.03636633999992,-44.162286065999865]]],[[[-74.26634680899988,-44.17693450299986],[-74.33739173099994,-44.18987395599996],[-74.3855688139999,-44.15960051899988],[-74.37726803299992,-44.150567315999965],[-74.3578181629999,-44.145603122999916],[-74.29621334499987,-44.14332447699985],[-74.28612219999991,-44.14519622199991],[-74.27696692599991,-44.14902109199992],[-74.26952063699986,-44.15504322699992],[-74.26121985599988,-44.16448333099986],[-74.25816809799997,-44.17310963299994],[-74.26634680899988,-44.17693450299986]]],[[[-73.87970943899995,-44.15585702899993],[-73.8717341789999,-44.160821221999896],[-73.86554928299992,-44.158623955999985],[-73.85936438699987,-44.15504322699992],[-73.85171464799993,-44.15585702899993],[-73.84190833199992,-44.158623955999985],[-73.83568274599995,-44.15813567499999],[-73.83226477799994,-44.160821221999896],[-73.83120683499986,-44.17294687299997],[-73.83568274599995,-44.18303801899995],[-73.84626217399989,-44.19019947699998],[-73.85920162699992,-44.19475676899985],[-73.87035071499992,-44.19654713299984],[-73.91144771999993,-44.194105726999894],[-73.95238196499994,-44.18629322699989],[-73.98875891799992,-44.17017994599992],[-74.01622473899997,-44.14283619599986],[-73.95270748599995,-44.10475025799997],[-73.91763261599988,-44.09840260199985],[-73.88280188699994,-44.11834075299993],[-73.86790930899987,-44.13128020599984],[-73.86461341099992,-44.13925546699997],[-73.87588456899994,-44.14283619599986],[-73.87857011599993,-44.14430103999983],[-73.8804418609999,-44.14804452899986],[-73.88097083199997,-44.15227629999997],[-73.87970943899995,-44.15585702899993]]],[[[-74.20799719999988,-44.019301039999945],[-74.29832923099988,-44.03191497199983],[-74.30699622299997,-44.029229424999855],[-74.31452389199984,-44.02117278399991],[-74.3168025379999,-44.016534112999885],[-74.31183834499987,-44.01392994599989],[-74.29735266799992,-44.011895440999865],[-74.27741451699993,-44.011895440999865],[-74.20799719999988,-44.019301039999945]]],[[[-73.63341223899997,-44.12379322699995],[-73.6505427729999,-44.13193124799989],[-73.66543535099996,-44.12981536299988],[-73.67357337099986,-44.114922783999916],[-73.66812089799993,-44.09441497199987],[-73.67194576699984,-44.08074309699984],[-73.68346106699988,-44.07040780999992],[-73.70905514199987,-44.05624765399999],[-73.72398841099991,-44.050469658999845],[-73.72883053299998,-44.046563408999845],[-73.73180091099987,-44.03818124799997],[-73.73355058499988,-44.01751067499986],[-73.73843339799996,-44.00847747199994],[-73.74840247299993,-43.99765390399986],[-73.75499426999991,-43.98528411299992],[-73.7549535799999,-43.97087981599995],[-73.74498450399994,-43.95354583099987],[-73.72834225199989,-43.94068775799994],[-73.71133378799993,-43.93718840899986],[-73.70189368399991,-43.94443124799996],[-73.70767167899987,-43.96404387799984],[-73.69001217399995,-43.968031507999825],[-73.66901607999992,-43.97812265399996],[-73.65001380099991,-43.991387628],[-73.6388240229999,-44.005059502999934],[-73.63927161399991,-44.01946379999991],[-73.64899654899993,-44.02809010199982],[-73.65550696499994,-44.03736744599996],[-73.64631100199998,-44.053399346999946],[-73.61644446499989,-44.07252369599992],[-73.61021887899992,-44.08513762799991],[-73.61900794199988,-44.10808684699998],[-73.63341223899997,-44.12379322699995]]],[[[-73.17332923099994,-44.02556731599998],[-73.18700110599988,-44.026543877999956],[-73.2032771479999,-44.023614190999936],[-73.21825110599994,-44.018243096999896],[-73.22793535099989,-44.011895440999865],[-73.23981686099995,-44.001397393999895],[-73.27513587099989,-43.99407317499997],[-73.28258216099992,-43.98154062299989],[-73.28648841099994,-43.95012786299986],[-73.28416907499988,-43.935723565999886],[-73.27261308499996,-43.91936614399988],[-73.24966386599996,-43.90300872199987],[-73.21751868399991,-43.88811614399991],[-73.1847224599999,-43.879489841999984],[-73.15965735599991,-43.88152434699984],[-73.14427649599986,-43.89251067499998],[-73.14077714799987,-43.90357838299984],[-73.14537512899992,-43.93328215899986],[-73.14879309799991,-43.94524504999997],[-73.16372636599996,-43.971286716999956],[-73.16710364499997,-43.98154062299989],[-73.16120357999995,-43.997735283999845],[-73.15176347599993,-44.00790780999998],[-73.15160071499986,-44.015801690999865],[-73.17332923099994,-44.02556731599998]]],[[[-73.85822506399992,-43.76677825299997],[-73.79332434799994,-43.82903411299996],[-73.77513587099986,-43.855726820999905],[-73.76231848899994,-43.88892994599992],[-73.84650631399995,-43.89185963299994],[-73.87218176999991,-43.88892994599992],[-73.9074600899999,-43.87371184699994],[-73.91319739499991,-43.867852471999896],[-73.90416419199991,-43.85995859200001],[-73.87535559799997,-43.85833098799999],[-73.86538652299987,-43.84734465899993],[-73.89354407499985,-43.840264580999886],[-73.92845618399988,-43.84075286299996],[-73.95938066299993,-43.84978606599988],[-73.97524980399996,-43.867852471999896],[-73.95628821499994,-43.88128020599997],[-73.91930091099991,-43.89560312299996],[-73.90636145699989,-43.90943775799996],[-73.93171139199993,-43.912855726999965],[-73.9702856109999,-43.934340101999815],[-73.99571692599991,-43.93670012799987],[-74.0069880849999,-43.92978280999995],[-74.0156957669999,-43.9196916649999],[-74.02110755099994,-43.908868097],[-74.0230199859999,-43.89861419099987],[-74.03189042899993,-43.89299895599997],[-74.05174719999985,-43.89478932099995],[-74.08385169199991,-43.90203215899989],[-74.13792883999992,-43.89080169099998],[-74.14964758999989,-43.885186455999886],[-74.16087805899988,-43.87639739399991],[-74.16539466099994,-43.87509530999992],[-74.16637122299991,-43.87297942499991],[-74.16706295499995,-43.86101653399997],[-74.16616777299987,-43.85377369599986],[-74.1491119419999,-43.84404374799985],[-74.14393779299986,-43.82755091699991],[-74.11651950899997,-43.80959957899991],[-74.0452446649999,-43.796093797999944],[-73.99579647899992,-43.81390284999989],[-73.96734975599989,-43.828833634999896],[-73.91319739499991,-43.81324635199992],[-73.92096920499992,-43.79924895599995],[-73.90282141799992,-43.79371510199995],[-73.87791907499988,-43.79216887799991],[-73.86538652299987,-43.78932057099988],[-73.86603756399992,-43.770196221999896],[-73.86510169199994,-43.762627862999935],[-73.85822506399992,-43.76677825299997]]],[[[-74.64824680299998,-43.5540061519999],[-74.61819872099989,-43.57795846199984],[-74.58266836099997,-43.59768465899997],[-74.55748608999994,-43.62740974699989],[-74.57843017799985,-43.635652790999885],[-74.67273330699987,-43.639392184999934],[-74.7226727449999,-43.6529064949999],[-74.73820896499993,-43.67165143000001],[-74.75845471199995,-43.67694915099993],[-74.77542723499988,-43.674631303],[-74.7898879699999,-43.658271497999976],[-74.81818600199998,-43.63502369599996],[-74.8147020449999,-43.61800085599988],[-74.82453431899995,-43.59464236299986],[-74.82733188799996,-43.57179302699997],[-74.82502555799992,-43.562412198999965],[-74.81036583599987,-43.566525658999964],[-74.78441602499996,-43.57529697899999],[-74.76268041599991,-43.57058875099988],[-74.7449005929999,-43.565905912999845],[-74.7409375709999,-43.55128304499992],[-74.74514063599986,-43.536033660999834],[-74.7379004849999,-43.53017743199996],[-74.71525091099991,-43.53309881899983],[-74.69580235899994,-43.540704573999854],[-74.68110993399992,-43.553022067999834],[-74.64824680299998,-43.5540061519999]]],[[[-74.25216283699984,-43.41774357099993],[-74.25730730799997,-43.4274521],[-74.26619245299992,-43.424782374999936],[-74.28402606999992,-43.41783755499989],[-74.28113286699991,-43.40760085899987],[-74.27610005499989,-43.38980408599987],[-74.2732600699999,-43.37039074899995],[-74.27405297199996,-43.36123122899998],[-74.2533613809999,-43.350392082999925],[-74.24741946399986,-43.3525298739999],[-74.24657134599994,-43.37031159599989],[-74.25164434799984,-43.38865216899994],[-74.2463636679999,-43.39995549799994],[-74.23077253299988,-43.405827687999974],[-74.23072644099989,-43.41336956999996],[-74.24701011999991,-43.41342115499995],[-74.25216283699984,-43.41774357099993]]],[[[-73.6469790049999,-43.229240616999974],[-73.66123828499985,-43.24479598399989],[-73.68821396999994,-43.23118656199988],[-73.71852394299995,-43.21598090599986],[-73.7266903359999,-43.19168550199994],[-73.7146042599999,-43.180219113999875],[-73.69109160899991,-43.188156497999984],[-73.67211486799991,-43.1904407429999],[-73.65642222099989,-43.196000224999906],[-73.6469790049999,-43.229240616999974]]],[[[-73.38451087099986,-42.97063567499984],[-73.36510169199994,-42.99081796699987],[-73.37352454299992,-42.990411065999865],[-73.38036048099991,-42.99277109199991],[-73.38634192599994,-42.99586353999989],[-73.39220130099989,-42.998223565999936],[-73.42381751199986,-42.99749114399991],[-73.45006262899989,-42.99374765399989],[-73.47227942599994,-42.98455169099999],[-73.49176998599991,-42.967217705999914],[-73.50259355399993,-42.961032809999864],[-73.53400631399995,-42.954359632999974],[-73.54670162699992,-42.946872653999925],[-73.55882727799991,-42.9418270809999],[-73.59683183499992,-42.93938567499987],[-73.61148027299993,-42.93621184699998],[-73.58844967399995,-42.91350676899995],[-73.55280514199993,-42.91863372199995],[-73.49176998599991,-42.943047783999916],[-73.46056067599994,-42.946384372999944],[-73.4206436839999,-42.9556617169999],[-73.38451087099986,-42.97063567499984]]],[[[-72.98165715799988,-42.733850897999886],[-72.95832154499988,-42.7371628339999],[-72.95534970599992,-42.723714964999836],[-72.94392179099992,-42.71623278099983],[-72.93044389399998,-42.72334016999982],[-72.92800117399992,-42.75622415299991],[-72.91881519199987,-42.78653235899995],[-72.93698349699989,-42.79290244399988],[-72.9565246809999,-42.807804137999874],[-72.97029039199987,-42.79095652299998],[-72.9843044539999,-42.7619218799999],[-73.01654005299984,-42.73313659999984],[-73.03361629099993,-42.71388626899993],[-73.03072158499988,-42.69678717499991],[-73.00919178399991,-42.69525942699998],[-72.99580145599992,-42.699940103999936],[-72.99039049699985,-42.716920187999946],[-72.98165715799988,-42.733850897999886]]],[[[-73.3073409289999,-42.627343397999915],[-73.27753151399993,-42.62818675299987],[-73.27422165699991,-42.628144820999964],[-73.2410381639999,-42.63137144299995],[-73.23895066699995,-42.65082611999982],[-73.26031886199988,-42.65840312399986],[-73.29518144299996,-42.65395117299983],[-73.3251978449999,-42.64334148599987],[-73.35692687699992,-42.62903736099992],[-73.34386657699994,-42.62038707399989],[-73.3073409289999,-42.627343397999915]]],[[[-73.60846920499992,-42.62224700299994],[-73.60716712099992,-42.63738372199994],[-73.61676998599992,-42.63876718499992],[-73.65526282499991,-42.62379322699981],[-73.67235266799995,-42.62265390399995],[-73.68911699099996,-42.624118748],[-73.70555579299986,-42.6281063779999],[-73.72142493399988,-42.6345354149999],[-73.73338782499991,-42.626397393999895],[-73.74893144399994,-42.61223723799988],[-73.7550349599999,-42.598809502999885],[-73.73843339799996,-42.59295012799984],[-73.66307532499991,-42.58668385199988],[-73.64688066299993,-42.581475518999895],[-73.63394120999993,-42.57195403399989],[-73.62096106699994,-42.568047783999894],[-73.60472571499989,-42.57927825299989],[-73.59927324099996,-42.59392669099991],[-73.60846920499992,-42.62224700299994]]],[[[-73.42080644399996,-42.55339934699988],[-73.41942298099988,-42.56422291499989],[-73.42121334499986,-42.56357187299993],[-73.43203691299996,-42.5546200499999],[-73.47126217399989,-42.50074635199988],[-73.47960364499994,-42.49529387799984],[-73.48908443899995,-42.49342213299995],[-73.49909420499995,-42.49285247199998],[-73.50910396999993,-42.49114348799998],[-73.54515540299988,-42.47307708099987],[-73.55321204299992,-42.469984632999896],[-73.56916256399992,-42.4673804669999],[-73.61266028599997,-42.451836846999896],[-73.62515214799987,-42.44345468499992],[-73.62901770699996,-42.43515390399986],[-73.63133704299995,-42.42473723799995],[-73.63263912699993,-42.40496184699984],[-73.63727779899995,-42.39804452899985],[-73.64610755099991,-42.39324309699994],[-73.65160071499986,-42.38648853999982],[-73.64631100199998,-42.37379322699985],[-73.63101152299993,-42.36793385199982],[-73.60708574099992,-42.36874765399992],[-73.54320227799994,-42.37916432099982],[-73.5338435539999,-42.392347914999945],[-73.52912350199989,-42.40935637799991],[-73.51903235599994,-42.425713799999926],[-73.41738847599996,-42.517673434999864],[-73.41234290299991,-42.52564869599981],[-73.41307532499984,-42.52947356599984],[-73.41832434799994,-42.53834400799987],[-73.4202367829999,-42.54241301899983],[-73.42096920499992,-42.54794687299985],[-73.42080644399996,-42.55339934699988]]],[[[-73.06920325399992,-42.27792734199993],[-73.07323157499991,-42.288995049999876],[-73.08922278599991,-42.29957447699983],[-73.11620032499985,-42.31031666499993],[-73.14159094999988,-42.31373463299994],[-73.15282141799989,-42.30242278399987],[-73.15876217399992,-42.30152760199988],[-73.17105058499996,-42.29290129999987],[-73.18199622299991,-42.282972914999874],[-73.18350175699987,-42.27825286299995],[-73.18748938699986,-42.272719007999854],[-73.19249426999991,-42.26083749799989],[-73.19391842399996,-42.24911874799999],[-73.18700110599988,-42.244235934999935],[-73.17666581899996,-42.25009530999996],[-73.16047115799992,-42.27312590899986],[-73.14537512899992,-42.27825286299995],[-73.12319902299993,-42.25286223799984],[-73.1060684889999,-42.240980726999894],[-73.08763587099986,-42.247491143999966],[-73.07945716099997,-42.25660572699988],[-73.07225501199991,-42.26685963299981],[-73.06920325399992,-42.27792734199993]]],[[[-72.50804602799991,-42.13892994599982],[-72.51817786399994,-42.1506486959998],[-72.54271399599989,-42.141045830999914],[-72.60798092399997,-42.111911716999856],[-72.61778723899991,-42.103610934999956],[-72.61074785099993,-42.088474216999884],[-72.59422766799995,-42.07146575299982],[-72.57494055899991,-42.05738697699987],[-72.55972245999993,-42.05169036299997],[-72.52985592399995,-42.05364348799985],[-72.51475989499994,-42.06047942499987],[-72.50926673099991,-42.07333749799989],[-72.50658118399994,-42.116387627999906],[-72.50804602799991,-42.13892994599982]]],[[[-73.95457923099994,-41.810723565999865],[-73.94985917899993,-41.81218840899982],[-73.94391842399988,-41.80901458099994],[-73.94078528599994,-41.80388762799984],[-73.93492591099988,-41.78785572699985],[-73.9343155589999,-41.78484465899986],[-73.91706295499992,-41.782647393999866],[-73.90147864499991,-41.790622653999904],[-73.89024817599991,-41.80510833099985],[-73.88589433499993,-41.822686455999886],[-73.89610755099997,-41.842705987999864],[-73.9193416009999,-41.84254322699981],[-73.9615779289999,-41.826429945999834],[-73.98306230399993,-41.8208960919999],[-73.99327551999988,-41.82122161299992],[-74.00255286399992,-41.826429945999834],[-74.00938880099994,-41.837579033999845],[-74.00617428299988,-41.845147393999895],[-73.99937903599995,-41.851169528999904],[-73.99571692599991,-41.85711028399991],[-73.98355058499993,-41.86646900799987],[-73.90636145699989,-41.88103606599989],[-73.88898678299992,-41.88713958099987],[-73.86603756399992,-41.89226653399997],[-73.84605872299994,-41.88738372199991],[-73.83739173099985,-41.8637020809999],[-73.82583574099993,-41.856866143999966],[-73.80077063699991,-41.87127044099993],[-73.77721106699988,-41.891289971999825],[-73.76984615799998,-41.90154387799984],[-73.76032467399989,-41.896254164999874],[-73.7636612619999,-41.88600025799984],[-73.77599036399997,-41.870375257999854],[-73.77741451699984,-41.85808684699998],[-73.74596106699991,-41.837009372999866],[-73.70763098899988,-41.8208960919999],[-73.69098873599992,-41.80901458099994],[-73.67833411399997,-41.81414153399987],[-73.65599524599992,-41.82732512799982],[-73.63467363199987,-41.83294036299982],[-73.61949622299989,-41.80632903399987],[-73.60606848899988,-41.80038827899986],[-73.59044348899991,-41.797784112999864],[-73.57799231699988,-41.79851653399989],[-73.56493079299992,-41.80494557099989],[-73.55455481699991,-41.81552499799986],[-73.53701738199987,-41.840020440999965],[-73.52830969999988,-41.834649346999825],[-73.51952063699991,-41.83310312299989],[-73.51081295499992,-41.83505624799993],[-73.5023087229999,-41.840020440999965],[-73.5023087229999,-41.8468563779999],[-73.52969316299996,-41.85637786299998],[-73.53701738199987,-41.860528252999835],[-73.5476781889999,-41.87004973799992],[-73.54869544199997,-41.87371184699997],[-73.54548092399992,-41.87664153399999],[-73.54124915299988,-41.88974374799996],[-73.53209387899992,-41.89723072699985],[-73.52961178299996,-41.90154387799984],[-73.53026282499994,-41.90691497199998],[-73.53563391799989,-41.91423919099991],[-73.54076087099989,-41.92880624799993],[-73.54979407499991,-41.92839934699984],[-73.56078040299988,-41.925713799999855],[-73.57054602799991,-41.92880624799993],[-73.57843990799998,-41.94548919099988],[-73.56769771999987,-41.95338307099993],[-73.54906165299987,-41.95842864399988],[-73.53331458199992,-41.96607838299981],[-73.49693762899994,-42.017185153999876],[-73.48521887899993,-42.02450937299989],[-73.47020423099994,-42.030205987999864],[-73.4564509759999,-42.044366143999895],[-73.44749915299988,-42.062269789999846],[-73.44701087099989,-42.07968515399991],[-73.45791581899987,-42.08912525799984],[-73.49437415299992,-42.10328541499986],[-73.5023087229999,-42.11663176899995],[-73.48908443899995,-42.14560312299985],[-73.45742753799988,-42.16611093499991],[-73.38621985599988,-42.19573333099986],[-73.38988196499992,-42.199883721999974],[-73.39525305899988,-42.20973072699982],[-73.39981035099993,-42.216241143999824],[-73.38410396999987,-42.226250908999894],[-73.37559973899991,-42.24000416499982],[-73.37401282499988,-42.25741952899989],[-73.37877356699988,-42.27825286299995],[-73.38475501199991,-42.293064059999935],[-73.38963782499988,-42.301446221999896],[-73.39610755099996,-42.30901458099984],[-73.4029027989999,-42.30966562299989],[-73.42438717399992,-42.30169036299985],[-73.43342037699995,-42.29941171699987],[-73.45335852799994,-42.3031552059999],[-73.48688717399997,-42.32122161299982],[-73.50910396999993,-42.32610442499988],[-73.57241777299987,-42.3230119769998],[-73.59166419199991,-42.32610442499988],[-73.6505427729999,-42.34547291499982],[-73.66616777299987,-42.354099216999906],[-73.68154863199992,-42.37004973799982],[-73.68236243399994,-42.38241952899986],[-73.6769099599999,-42.393975518999966],[-73.67357337099986,-42.40797291499993],[-73.6781306629999,-42.428887627999984],[-73.68541419199991,-42.44133879999991],[-73.68854732999988,-42.45273202899989],[-73.68040930899988,-42.469984632999896],[-73.6656388009999,-42.482842705999914],[-73.62804114499991,-42.4984677059999],[-73.61148027299993,-42.511651299999855],[-73.62311764199984,-42.5162085919999],[-73.70767167899987,-42.53834400799987],[-73.73009192599989,-42.53923919099995],[-73.75373287699992,-42.53362395599987],[-73.77481035099993,-42.52206796699993],[-73.78966223899991,-42.50416432099988],[-73.77745520699992,-42.49700286299984],[-73.76939856699988,-42.48699309699985],[-73.7555232409999,-42.46314869599988],[-73.76231848899994,-42.45712655999986],[-73.80260169199991,-42.47795989399985],[-73.81818600199989,-42.49309661299985],[-73.82445227799984,-42.514418226999815],[-73.82005774599986,-42.523532809999885],[-73.80089270699989,-42.53573984199987],[-73.79649817599991,-42.541761976999965],[-73.79954993399991,-42.555108330999886],[-73.81354732999998,-42.57634856599988],[-73.81696529899997,-42.58668385199988],[-73.80915279899989,-42.60865650799981],[-73.78888912699998,-42.624200127999984],[-73.76471920499998,-42.63730234199995],[-73.73534094999988,-42.65829843499999],[-73.72350012899992,-42.66122812299993],[-73.69782467399995,-42.6617977839999],[-73.69884192599991,-42.666599216999884],[-73.68919837099995,-42.676853122999916],[-73.67784583199997,-42.68629322699992],[-73.67357337099986,-42.68914153399996],[-73.64146887899989,-42.73211028399983],[-73.63243567599989,-42.74065520599986],[-73.62205969999988,-42.74439869599989],[-73.59776770699992,-42.748142184999914],[-73.57603919199993,-42.757012627999956],[-73.51667232999998,-42.78923919099999],[-73.50145423099991,-42.801527601999965],[-73.49193274599989,-42.818617445999905],[-73.48863684799997,-42.84368254999991],[-73.49429277299996,-42.86679452899996],[-73.5095108709999,-42.87769947699985],[-73.53111731699994,-42.88095468499989],[-73.57188880099989,-42.879978122999916],[-73.58560136599993,-42.87721119599986],[-73.61148027299993,-42.86736419099992],[-73.62205969999988,-42.88632577899993],[-73.6497289699999,-42.88323333099996],[-73.68228105399996,-42.87232838299997],[-73.70767167899987,-42.86736419099992],[-73.70767167899987,-42.874688408999845],[-73.65392005099991,-42.89763762799993],[-73.64631100199998,-42.905450128],[-73.64801998599998,-42.914646091999984],[-73.6539607409999,-42.92864348799995],[-73.6531469389999,-42.93621184699998],[-73.64639238199996,-42.94166432099985],[-73.63707434799991,-42.94231536299989],[-73.62877356699994,-42.94410572699988],[-73.62181555899994,-42.96200937299992],[-73.6133520169999,-42.96461353999992],[-73.59105383999986,-42.96355559699997],[-73.57738196499992,-42.96575286299995],[-73.57380123599995,-42.97177499799987],[-73.57371985599988,-42.98040129999997],[-73.57054602799991,-42.99081796699987],[-73.52277584499987,-43.05291106599989],[-73.54670162699992,-43.05120208099997],[-73.58755449099988,-43.03427499799999],[-73.60879343999994,-43.03560619299991],[-73.61174070099987,-43.0495490539999],[-73.56824408999995,-43.0537462839999],[-73.52868607099995,-43.0734698789999],[-73.49006100199992,-43.10003020599997],[-73.5023087229999,-43.12802499799999],[-73.52428137899992,-43.13103606599999],[-73.54694576699987,-43.123142184999935],[-73.56867428299995,-43.112399998000015],[-73.58796139199987,-43.10686614399991],[-73.6124161449999,-43.11077239399999],[-73.65086829299992,-43.12883879999991],[-73.72142493399988,-43.141696872999944],[-73.72809811099995,-43.13437265400002],[-73.73350989499988,-43.122653903999854],[-73.73851477799994,-43.10686614399991],[-73.76382402299987,-43.10963307099996],[-73.7757462229999,-43.118096612999906],[-73.7571225399999,-43.136251480999874],[-73.74568503799989,-43.17039591799997],[-73.75007593499993,-43.19330569399989],[-73.75455699499989,-43.20934364999985],[-73.74498450399994,-43.226983331],[-73.72826087099992,-43.239027601999915],[-73.71068274599989,-43.247491143999866],[-73.69762122299991,-43.25823333099997],[-73.6752032389999,-43.279841766999866],[-73.66604711099984,-43.29440738499994],[-73.66580805499986,-43.309844090999896],[-73.6802130449999,-43.31724048199992],[-73.70477883099989,-43.316576216999934],[-73.73154340499991,-43.31673093299994],[-73.71031653599997,-43.32732512799996],[-73.69544411599988,-43.33931825999984],[-73.67162503199995,-43.35105231799986],[-73.66901449799988,-43.36384718999988],[-73.68173184999988,-43.381101788999885],[-73.70758013599993,-43.388169165999955],[-73.73110919199983,-43.392640296999964],[-73.74898521699993,-43.38514428999987],[-73.76105709499993,-43.372816664999945],[-73.77599036399997,-43.368259372999916],[-73.79997615399992,-43.35977589],[-73.80092236899986,-43.37690361899989],[-73.79836557299987,-43.39143875099994],[-73.8004816129999,-43.409443546999924],[-73.81347032299989,-43.40868423699989],[-73.8277131659999,-43.40194260399994],[-73.83345517599994,-43.413969353999846],[-73.84749065799994,-43.423483242999836],[-73.87700444599997,-43.42195944299988],[-73.88904690799993,-43.40062566099988],[-73.90682897599993,-43.39217247399997],[-73.9176159629999,-43.37597068399988],[-73.9295296149999,-43.36489890499995],[-73.95546823099994,-43.365881118999866],[-73.9731119009999,-43.36940650099997],[-73.9918201719999,-43.38833412999983],[-74.00373301699997,-43.37469491499992],[-74.02623815699988,-43.364522815999834],[-74.05337875199984,-43.362935892999985],[-74.07923384399993,-43.37675323899988],[-74.08494839499988,-43.40162808299986],[-74.09799782699994,-43.39482440699993],[-74.11586056399997,-43.37005282099989],[-74.12995357999993,-43.35686614399994],[-74.1655732809999,-43.34197420899994],[-74.20095615799997,-43.34550252099994],[-74.21522515699994,-43.33012464199988],[-74.24851415299995,-43.32670240099988],[-74.29338084499992,-43.319964515999985],[-74.31505286399991,-43.29664478999989],[-74.33462480399986,-43.28167083099986],[-74.36331975799993,-43.291730798],[-74.37950598899991,-43.26930103999992],[-74.40099036399991,-43.26043059699995],[-74.40721594999988,-43.23788827899989],[-74.40306555899994,-43.23072682099985],[-74.37553859999991,-43.217010814999895],[-74.35839078999996,-43.17741480500001],[-74.3587947259999,-43.15837981599998],[-74.35383053299992,-43.15309010199982],[-74.32970130099991,-43.142836195999976],[-74.31171424699988,-43.13751586899994],[-74.3078737659999,-43.12476715799999],[-74.32420813699989,-43.118340752999856],[-74.33405514199993,-43.110284112999906],[-74.3383682929999,-43.10003020599997],[-74.33063717399992,-43.08766041499986],[-74.31784979699995,-43.0721185349999],[-74.29901786499994,-43.07578957199998],[-74.28008990699996,-43.068489339999914],[-74.25729944399986,-43.04658627599998],[-74.23959978799991,-43.03289267199993],[-74.22951976999988,-43.0228769859999],[-74.22820667299993,-43.0101189669999],[-74.24945244699995,-43.00278414999998],[-74.2556499939999,-42.990917052999976],[-74.2468434999999,-42.98090955099991],[-74.21924761999995,-42.977298288999904],[-74.21165186599984,-42.96362671999997],[-74.21530946999988,-42.946291326999884],[-74.22525339399994,-42.93805458499996],[-74.23267312699994,-42.92890524699985],[-74.23224850199998,-42.91668059699991],[-74.2230525379999,-42.91326262799991],[-74.21153723899997,-42.91204192499989],[-74.18253350599986,-42.903478048],[-74.16736273699988,-42.88251407899986],[-74.16221169399992,-42.85972144499986],[-74.16209998599993,-42.84057350599988],[-74.17206078699985,-42.82870281699985],[-74.16697518199987,-42.81685741399994],[-74.15687611999988,-42.804113810999894],[-74.1618183819999,-42.79225017599991],[-74.17053441099995,-42.78310932699988],[-74.17043650499994,-42.76669563199999],[-74.15035692799995,-42.75855255999993],[-74.1465421989999,-42.74762750399987],[-74.14895752599992,-42.73212526999983],[-74.16138894699989,-42.71840455499993],[-74.1538758719999,-42.71022532899996],[-74.13888826399997,-42.703898561999885],[-74.13139085599994,-42.692981927999924],[-74.12750680099992,-42.67113293199985],[-74.12838184999991,-42.64113624199992],[-74.1368509159999,-42.60377467099991],[-74.14428532999993,-42.57817967599986],[-74.15339107999992,-42.55885182099983],[-74.15664628799988,-42.55234140399993],[-74.16120357999992,-42.54648202899989],[-74.16527258999989,-42.53923919099995],[-74.16706295499995,-42.52809010199985],[-74.1741759439999,-42.52400915799987],[-74.18558657299988,-42.52098179799985],[-74.19372842499985,-42.51418919899996],[-74.19044571499992,-42.496903696999894],[-74.18296488099995,-42.48340203099991],[-74.18471343299984,-42.46387616999985],[-74.18965838199989,-42.45260413499987],[-74.18961766399991,-42.43190601699989],[-74.15384608799991,-42.36151624399986],[-74.14321641499987,-42.318648013999876],[-74.15954187699992,-42.29011658399986],[-74.16877411099995,-42.26532668499998],[-74.15950347999984,-42.241297913999844],[-74.14710021799986,-42.21652426899989],[-74.1233954049999,-42.19480723499997],[-74.06952878399994,-42.152874969999964],[-74.05333551599992,-42.130345173999956],[-74.0563370739999,-42.112295406999905],[-74.0640356109999,-42.089532158999845],[-74.05996660099993,-42.08074309699987],[-74.05174719999985,-42.069268487999835],[-74.04527747299994,-42.057793877999885],[-74.04662024599992,-42.0485979149999],[-74.04991614499997,-42.040622653999854],[-74.05882727799991,-41.98788827899994],[-74.05874589799993,-41.9652645809999],[-74.05528723899994,-41.94500090899988],[-74.04662024599992,-41.93629322699989],[-74.05308997299994,-41.9332821589999],[-74.04458574099989,-41.92693450299986],[-74.03209387899989,-41.92099374799993],[-74.02643795499989,-41.91887786299991],[-74.01235917899996,-41.907810153999975],[-74.00914466099991,-41.900811455999914],[-74.00877844999988,-41.8878720029999],[-74.0204158189999,-41.86687590899987],[-74.03058834499983,-41.85312265399985],[-74.03978430899991,-41.8468563779999],[-74.05679277299987,-41.84303150799997],[-74.06208248599995,-41.833265882999854],[-74.06224524599992,-41.820000908999916],[-74.0640356109999,-41.80592213299987],[-74.05345618399986,-41.79892343499989],[-74.04552161399988,-41.78753020599983],[-74.03978430899991,-41.77662525799994],[-74.03604081899988,-41.771172783999916],[-74.02257239499991,-41.77068450299983],[-74.01528886599988,-41.778415622999844],[-74.0091853509999,-41.787692966999884],[-73.99913489499991,-41.792250257999925],[-73.98884029899992,-41.79452890399999],[-73.96996008999989,-41.80380624799985],[-73.9590551419999,-41.807712497999944],[-73.95457923099994,-41.810723565999865]]],[[[-73.00963294199991,-41.857679945999806],[-73.03620357999995,-41.860528252999835],[-73.06354732999995,-41.85564544099995],[-73.07664954299992,-41.85133228999986],[-73.08763587099986,-41.84343840899997],[-73.08812415299985,-41.83603280999991],[-73.08193925699987,-41.82708098799988],[-73.07433020699995,-41.81853606599985],[-73.0702205069999,-41.81210702899985],[-73.08470618399993,-41.7720679669999],[-73.08580481699988,-41.74781666499983],[-73.06688391799986,-41.736993096999825],[-73.0533748039999,-41.747165622999866],[-73.02554277299993,-41.80901458099994],[-73.01024329299989,-41.82610442499998],[-73.00300045499995,-41.844333591999884],[-73.00963294199991,-41.857679945999806]]],[[[-73.89224199099996,-38.413995049999855],[-73.89924068899992,-38.41423919099989],[-73.91209876199986,-38.40992603999989],[-73.92796790299988,-38.39609140399989],[-73.94701087099989,-38.37281666499996],[-73.95002193899998,-38.358005466999984],[-73.94957434799987,-38.33904387799998],[-73.95482337099989,-38.32244231599992],[-73.9534399079999,-38.31357187299989],[-73.93077551999994,-38.323825779],[-73.88243567599991,-38.360772393999866],[-73.87531490799998,-38.368422132999896],[-73.87157141799995,-38.38665129999996],[-73.87816321499992,-38.401462497999944],[-73.88499915299994,-38.409600518999866],[-73.89224199099996,-38.413995049999855]]],[[[-73.46975854899992,-37.036296939],[-73.45881235099988,-37.04827833199987],[-73.44649378399993,-37.05916951999994],[-73.46289108499985,-37.05482520999995],[-73.47656671699994,-37.049381246],[-73.49296140299992,-37.041765197999986],[-73.51071030199995,-37.05049215299989],[-73.5161585299999,-37.07120112799997],[-73.51888449499994,-37.07992152899986],[-73.52846040999991,-37.06902844599989],[-73.53668453699996,-37.041773966],[-73.55168501999985,-37.02762067499985],[-73.54348799899995,-37.0189037329999],[-73.54081951999987,-37.00034573799997],[-73.54083025699985,-36.98944149599997],[-73.53265461499984,-36.973084666999824],[-73.52309595899987,-36.97526537499994],[-73.52034843299991,-36.989440769],[-73.52029844299997,-37.005813045999986],[-73.5066573929999,-37.017784998999886],[-73.48479304599988,-37.02540866799988],[-73.46975854899992,-37.036296939]]],[[[-80.71532141799995,-33.77288176899991],[-80.73208574099996,-33.77532317499985],[-80.74889075399997,-33.773532809999864],[-80.75934811099995,-33.76677825299991],[-80.77733313699989,-33.73447031],[-80.76707923099985,-33.70110442499991],[-80.74083411399994,-33.685153904],[-80.71092688699986,-33.70533619599985],[-80.7072647779999,-33.71624114399991],[-80.70360266799995,-33.73447031],[-80.70205644399991,-33.75359465899996],[-80.70470130099989,-33.76677825299991],[-80.71532141799995,-33.77288176899991]]],[[[-78.81578528599994,-33.60881926899988],[-78.80675208199992,-33.60963307099989],[-78.78897050699993,-33.609063409],[-78.78038489499991,-33.61345794099991],[-78.75763912699989,-33.64324309699991],[-78.76927649599989,-33.64234791499983],[-78.78018144399988,-33.64299895599987],[-78.79051673099988,-33.64560312299987],[-78.79987545499992,-33.650648695999884],[-78.80850175699993,-33.644301039999874],[-78.81285559799991,-33.650648695999884],[-78.84105383999989,-33.636325779],[-78.86363684799993,-33.630466403999876],[-78.8849991529999,-33.63274504999993],[-78.92100989499988,-33.64788176899993],[-78.94469153599991,-33.652927341999956],[-78.95689856699988,-33.65691497199985],[-78.97948157499985,-33.66912200299991],[-78.98737545499992,-33.66855234199994],[-78.99168860599991,-33.65691497199985],[-78.96703040299994,-33.633396091999984],[-78.94322669199994,-33.61646900799991],[-78.93317623599995,-33.61272551899988],[-78.91112219999987,-33.60702890399997],[-78.90168209499987,-33.60222747199999],[-78.89830481699994,-33.59636809699987],[-78.89565995999993,-33.587497654],[-78.89183508999994,-33.57919687299993],[-78.88487708199995,-33.575616143999866],[-78.87002519399988,-33.57683684699988],[-78.84813391799995,-33.5814755189999],[-78.82835852799991,-33.59059010199997],[-78.81973222599991,-33.60564544099999],[-78.81578528599994,-33.60881926899988]]],[[[-109.27916419199988,-27.097100518999852],[-109.26943925699993,-27.099297783999845],[-109.2613419259999,-27.097344658999972],[-109.25194251199989,-27.093438408999987],[-109.2418513659999,-27.090752862999903],[-109.23159745999989,-27.09246184699991],[-109.22004146999987,-27.105238539999956],[-109.22655188699986,-27.11874765399993],[-109.24356035099991,-27.12916432099983],[-109.27391516799989,-27.13567473799992],[-109.29222571499984,-27.145603123],[-109.30426998599988,-27.14771900799984],[-109.32384192599993,-27.149021091999927],[-109.33238684799996,-27.150811455999914],[-109.34146074099995,-27.153985283999887],[-109.35130774599988,-27.159844658999916],[-109.35924231699994,-27.166761976999837],[-109.36778723899997,-27.172621351999965],[-109.37930253799989,-27.175062757999896],[-109.38874264199993,-27.175469659],[-109.39582271999988,-27.176853122999972],[-109.41030839799993,-27.181898695999834],[-109.41856848899992,-27.19198984199997],[-109.42926998599985,-27.19939544099988],[-109.4406632149999,-27.201429945999905],[-109.45132402299994,-27.19548919099988],[-109.45372473899987,-27.187758070999962],[-109.45103919199991,-27.179294529],[-109.4467667309999,-27.17115650799991],[-109.4234106109999,-27.099297783999845],[-109.41319739499995,-27.08473072699982],[-109.39688066299993,-27.069268487999892],[-109.37962805899991,-27.059502862999935],[-109.36632239499991,-27.06178150799991],[-109.3110245429999,-27.0856259089999],[-109.30134029899993,-27.087823174999897],[-109.27916419199988,-27.097100518999852]]],[[[-105.46190344999988,-26.460625908999926],[-105.45954342399993,-26.464776299999883],[-105.47093665299988,-26.45769622199991],[-105.46593176999995,-26.455498955999925],[-105.46349036399991,-26.456963799999983],[-105.46190344999988,-26.460625908999926]]],[[[-79.89020748599998,-26.35605234199994],[-79.89736894399994,-26.35881926899999],[-79.90941321499994,-26.35816822699995],[-79.9017634759999,-26.347426039999846],[-79.89073645699995,-26.35173919099985],[-79.89020748599998,-26.35605234199994]]],[[[-80.09044348899994,-26.274509372999916],[-80.09923255099991,-26.275323174999926],[-80.10777747299994,-26.274997653999904],[-80.09569251199994,-26.266045830999957],[-80.09483801999993,-26.267836195999863],[-80.09268144399994,-26.269463799999883],[-80.09072831899988,-26.271416924999837],[-80.09044348899994,-26.274509372999916]]],[[[-69.47578039599998,-17.652409769999934],[-69.39477758799998,-17.721139424999986],[-69.35940506999995,-17.759379983999892],[-69.33423864799994,-17.80578542099991],[-69.32764990299992,-17.841545510999836],[-69.32687475599994,-17.91513275099983],[-69.31785721899988,-17.95161631299993],[-69.30240596499996,-17.976214293999917],[-69.29002945999991,-17.976627704999927],[-69.27760127799993,-17.967532653999953],[-69.26204667199991,-17.96401865599999],[-69.24189286399994,-17.986756286999963],[-69.2348131919999,-17.99295745799995],[-69.2277851979999,-17.99554127999987],[-69.20416906799997,-18.001122334999977],[-69.17388667799993,-18.018899027999822],[-69.15771195499988,-18.025720315999962],[-69.14083959999996,-18.03078460699993],[-69.11988480699998,-18.02985443099989],[-69.10417517099992,-18.023756611999843],[-69.09205704799993,-18.0233432],[-69.082284087,-18.039077667999905],[-69.08172176199992,-18.03998301199985],[-69.08921484399994,-18.08308115699994],[-69.1259309499999,-18.11108978299987],[-69.15543819299995,-18.140235289999964],[-69.14120133499998,-18.18684743299985],[-69.11066056399997,-18.2179566449999],[-69.10035111499987,-18.234286396999835],[-69.09694047099995,-18.25754079099994],[-69.09683711799991,-18.267979430999972],[-69.09575191299993,-18.27676442399988],[-69.08102412999992,-18.31913909899988],[-69.07929296899997,-18.32802744599981],[-69.08187678999997,-18.382494404999903],[-69.07782019099994,-18.39882415799984],[-69.04169836499995,-18.457735289999846],[-69.03438614899994,-18.47830251099992],[-69.0349029139999,-18.501040139999816],[-69.04164668799993,-18.548892516999913],[-69.04283524599995,-18.60046559699984],[-69.03384354699992,-18.649454853999927],[-69.01014990299987,-18.689762471999884],[-69.00348364299995,-18.702681579999904],[-69.0011065269999,-18.716220804999963],[-69.00317358499987,-18.729553323999895],[-69.01053747599988,-18.742989196999858],[-69.01066666699992,-18.74371266699985],[-69.01053747599988,-18.744539488999877],[-69.01014990299987,-18.745262959999877],[-68.95464941499998,-18.856987406999835],[-68.95144547599992,-18.86732269299983],[-68.95178137199991,-18.88933685299982],[-68.95984289599991,-18.907837015999927],[-68.9896085209999,-18.946490986999933],[-68.97397639999994,-18.95620615599988],[-68.96170324699992,-18.969435322999885],[-68.94315140899997,-19.0011646519999],[-68.9196903079999,-19.053771260999895],[-68.90850235999994,-19.06793060299985],[-68.89478226699993,-19.07650889099987],[-68.84736914099994,-19.092011819999968],[-68.81540726799994,-19.113302509999954],[-68.72125280799989,-19.19174733499989],[-68.69846350099996,-19.215621845999877],[-68.66332352699993,-19.273602802999832],[-68.63572831299993,-19.290552672999837],[-68.60007157499996,-19.3033684289999],[-68.49320471199991,-19.37695566799991],[-68.4725858159999,-19.39545583099992],[-68.45501582899993,-19.415402933999857],[-68.44762609899993,-19.434626566999878],[-68.45610103399994,-19.44124114999987],[-68.49635697499988,-19.45839772499984],[-68.51020625799993,-19.471626891999914],[-68.5321170659999,-19.500875752999974],[-68.5321170659999,-19.50097910599999],[-68.57673588299994,-19.56460698499991],[-68.63097408099995,-19.641952412999913],[-68.64859574399992,-19.660349222999912],[-68.69029862499988,-19.69538584399993],[-68.70321773299989,-19.715539652999908],[-68.70543981899996,-19.73383310999988],[-68.69841182499997,-19.74633880599997],[-68.6503527429999,-19.78158213299986],[-68.61888179599995,-19.813414814999902],[-68.60157019099995,-19.825403747999943],[-68.5708227129999,-19.837599385999965],[-68.56110754399995,-19.844317320999977],[-68.55351110799998,-19.85785654699997],[-68.55252925699992,-19.864884540999967],[-68.55154740499995,-19.894443460999824],[-68.5469482009999,-19.908189391999855],[-68.54291743999991,-19.914183857999973],[-68.54157385299996,-19.92038502999995],[-68.54462276199988,-19.934751077999962],[-68.56493159999991,-19.9813632199999],[-68.56612015799992,-20.000896910999927],[-68.57454341599993,-20.035210062999866],[-68.57934932499991,-20.04544199599985],[-68.58834102399996,-20.055570576999898],[-68.59717769399995,-20.056707457999902],[-68.60777136199994,-20.053606872999865],[-68.62213741099995,-20.05133310899994],[-68.6528848879999,-20.05422698899993],[-68.7755389,-20.089677021999947],[-68.79259212199995,-20.106626891999948],[-68.78946569899992,-20.12585052499989],[-68.75902827999994,-20.144143981999946],[-68.72626542199993,-20.150965270999905],[-68.72326818899992,-20.160990498999936],[-68.72828080299988,-20.189619242999825],[-68.7294693609999,-20.22868662499984],[-68.71804886899992,-20.26196624799988],[-68.67851639899996,-20.32862884499997],[-68.73515376899994,-20.347542419999925],[-68.75768469299996,-20.364285583999955],[-68.76902766999987,-20.39053721099991],[-68.76541031999997,-20.42123301199994],[-68.75070837399997,-20.451825459999863],[-68.72967606599988,-20.4792139689999],[-68.70755855399995,-20.5009180709999],[-68.68554439299996,-20.51683441099983],[-68.58332841099991,-20.56303314199988],[-68.53630285699992,-20.591765237999965],[-68.51020625799993,-20.60189381899984],[-68.4809573979999,-20.62473480299994],[-68.48162919099988,-20.64302825899999],[-68.55020381699998,-20.69904551199984],[-68.56508662999994,-20.71950937899997],[-68.57278641799994,-20.742867127000025],[-68.57195959499991,-20.872368265999924],[-68.55511307799992,-20.91391611699991],[-68.53155442599987,-20.927688032999953],[-68.51020625799993,-20.940167744999854],[-68.49599523899988,-20.94161468499985],[-68.45393062299993,-20.939754333999844],[-68.43207149299991,-20.94502532899996],[-68.41631018099991,-20.959804788999975],[-68.20753739499989,-21.284332783999943],[-68.19373978699994,-21.328464456999853],[-68.19844234199994,-21.571860452999886],[-68.1905875249999,-21.606380309999864],[-68.1283690999999,-21.712316997000027],[-68.10759517399991,-21.789624938999935],[-68.09622635999995,-21.953955993999898],[-68.09204056899992,-21.96842539499984],[-68.0827388109999,-21.980310973999863],[-68.05876094599998,-22.000774841],[-68.01023677599997,-22.04490651399999],[-67.99018632099992,-22.057618916999868],[-67.97261633299986,-22.07880625399983],[-67.96062740100001,-22.10288747099996],[-67.95716507999995,-22.124591572999947],[-67.96062740100001,-22.13368662499984],[-67.97328812699993,-22.150429788999887],[-67.97659541899995,-22.159834899999936],[-67.97302974499986,-22.170583597999865],[-67.94496944199994,-22.208307393],[-67.93597774299991,-22.232285257999834],[-67.93478918499997,-22.2517155969999],[-67.95220414299993,-22.314140726999867],[-67.95189408399995,-22.334087828999884],[-67.94527950099993,-22.354241637999863],[-67.90693558799993,-22.420077411999852],[-67.89820227099995,-22.441471455999945],[-67.88967565999994,-22.49118418299987],[-67.85918656499993,-22.54730478899999],[-67.85872147699993,-22.56683848],[-67.89132930499996,-22.715666605999957],[-67.89148433499992,-22.792871195999936],[-67.8870918379999,-22.818709411999862],[-67.8763431399999,-22.833592223999812],[-67.83794754999988,-22.84082692399987],[-67.83303828999992,-22.840103454999873],[-67.81128251099992,-22.871626077999935],[-67.80358272299995,-22.87865407299985],[-67.77143998299991,-22.88867930099995],[-67.61677242099998,-22.897257587999903],[-67.54711258999995,-22.89250335699991],[-67.51026729399992,-22.885785420999966],[-67.19390417499997,-22.822223409],[-67.0139668379999,-23.000713805999823],[-67.0195478919999,-23.031926370999983],[-67.03727290899994,-23.0853598019999],[-67.1074495039999,-23.29774993899983],[-67.17767777499998,-23.510243428999853],[-67.24790604699987,-23.72273691799998],[-67.2513287399999,-23.73309062599982],[-67.2847321110657,-23.834136437844446],[-67.31813431899994,-23.93517873099991],[-67.33978674299992,-24.00060109499998],[-67.36236934499996,-24.030366718999957],[-67.4122887779999,-24.055584818000014],[-67.45218298399996,-24.069640807999928],[-67.46122635899991,-24.07294809999985],[-67.48122513899995,-24.080079447999964],[-67.50117224199997,-24.087107441999887],[-67.51026729399992,-24.09041473399989],[-67.6352209069999,-24.141471048999946],[-67.76022619699995,-24.192734069999972],[-67.88523148599992,-24.24389373699989],[-68.01023677599997,-24.295053405999894],[-68.06046626799994,-24.31438039099993],[-68.11064408399997,-24.33381072999991],[-68.16082189999992,-24.35313771599988],[-68.21105139199994,-24.372464701],[-68.24448604399993,-24.385383810000018],[-68.262417765,-24.39675262399983],[-68.26712032099996,-24.404194029999942],[-68.27683548999991,-24.432306009999976],[-68.31404252199994,-24.487289734],[-68.32680659999991,-24.49824513699981],[-68.34489335199993,-24.49979543100001],[-68.36241166199997,-24.4942143759999],[-68.3798266199999,-24.491113789999957],[-68.39765498899996,-24.500518899999918],[-68.43770422399993,-24.579687194999835],[-68.44437048399993,-24.610176289999913],[-68.45150183199988,-24.62929656999991],[-68.46281896999994,-24.62330210399996],[-68.48183589699991,-24.598807475],[-68.49553015099994,-24.601804707999847],[-68.50369502799995,-24.612346699999904],[-68.50803584899995,-24.62681610099993],[-68.51020625799993,-24.64128550199996],[-68.52131669099995,-24.67528859399999],[-68.57237300699991,-24.76985646599981],[-68.5785741789999,-24.79166391999983],[-68.57800573799994,-24.808717142999953],[-68.55516475499994,-24.86215057299988],[-68.55103063999994,-24.868765156999956],[-68.54157385299996,-24.877446797999838],[-68.51759598799993,-24.890055846999942],[-68.51020625799993,-24.89553354899985],[-68.48994909699994,-24.895843606999918],[-68.47930375199994,-24.899564309999846],[-68.47305090399993,-24.907935892999916],[-68.46571284999993,-24.922095234999958],[-68.46684973199987,-24.92312876399994],[-68.46860672999992,-24.92695281999988],[-68.4696402589999,-24.93201710999986],[-68.46907181799995,-24.936771341999858],[-68.46514440899998,-24.941422220999826],[-68.45387894799993,-24.94927703799993],[-68.45000321499998,-24.953927917],[-68.44493892499989,-24.96157602999989],[-68.43982295799992,-24.967570496],[-68.43739416599993,-24.97408172599998],[-68.44013301599998,-24.98369354199981],[-68.44354366099992,-25.02110727899995],[-68.42049597199994,-25.051182962999846],[-68.3889733479999,-25.0775379439999],[-68.36737259999992,-25.103376159],[-68.36664912899994,-25.12342661499987],[-68.37920650199993,-25.136759134999892],[-68.39920528199987,-25.14482065899996],[-68.42075435399994,-25.148748066999943],[-68.44194169099998,-25.14812795],[-68.45837479699995,-25.144924010999986],[-68.4740327559999,-25.145440774999855],[-68.49304968299995,-25.155879414999887],[-68.4964677989999,-25.15999651699991],[-68.5160456959999,-25.183577982999818],[-68.55422846999991,-25.29119196299993],[-68.60596268699996,-25.43699920699987],[-68.6099417729999,-25.47420623799988],[-68.60823644999996,-25.49291310599986],[-68.60291377799993,-25.51068979899989],[-68.56658524599995,-25.551720885999842],[-68.5550097249999,-25.572598164],[-68.56880733299994,-25.587791035999842],[-68.55960892699994,-25.608564961999974],[-68.56095251499991,-25.635229999999837],[-68.55935054599988,-25.663031920999885],[-68.54131547099988,-25.687319844999962],[-68.52188513199991,-25.705613301999946],[-68.50757076099993,-25.728867695999952],[-68.49847570799994,-25.75491261799985],[-68.48638342299995,-25.83656138099984],[-68.41708532699994,-26.09359995499987],[-68.40902380499995,-26.144242857999927],[-68.41987585499989,-26.17927947999993],[-68.54612137899997,-26.269093118999947],[-68.57516353399988,-26.3035096239999],[-68.5873591719999,-26.338029479999975],[-68.5939220789999,-26.378647155999914],[-68.59531734299995,-26.457298685999888],[-68.58741084899992,-26.508251647999842],[-68.57015091999992,-26.550626321999943],[-68.54420935099998,-26.589280293999934],[-68.51020625799993,-26.629071146999863],[-68.3201403409999,-26.870090025999943],[-68.30536088099986,-26.89799530099984],[-68.30210526499988,-26.926624042999904],[-68.30742793799992,-26.944607441999892],[-68.32380936699988,-26.980987649999957],[-68.32913203999992,-27.000107929999956],[-68.3311474199999,-27.01220021499986],[-68.32840856999994,-27.037418313999822],[-68.33047562699991,-27.044963072999863],[-68.33776200399987,-27.04558319099983],[-68.36649410099997,-27.04351613299987],[-68.37734615099991,-27.04444630899991],[-68.4221496179999,-27.062016296999985],[-68.4430785729999,-27.066667174999864],[-68.49423824099998,-27.06863087999997],[-68.51800939899994,-27.076899109000024],[-68.53976517799995,-27.09033498099997],[-68.55738684099995,-27.107388203999832],[-68.56916906799994,-27.12950571699993],[-68.57537023999993,-27.14934946699992],[-68.58586055499998,-27.162785338999967],[-68.61071691899994,-27.165679219999944],[-68.64947424299996,-27.151209818999916],[-68.68285721899994,-27.126921894999924],[-68.71861730999987,-27.106664733999835],[-68.76429927599989,-27.10459767699996],[-68.80109289599997,-27.112762552999882],[-68.81432206199995,-27.120307311999834],[-68.82902400699996,-27.1360169469999],[-68.87075272699991,-27.198442077999957],[-68.8797185879999,-27.221489766999923],[-68.8813722329999,-27.239059752999978],[-68.87930517599992,-27.278540547999924],[-68.88305171699994,-27.29497365299997],[-68.93144669599988,-27.395225931999917],[-68.94263464399992,-27.4088685099999],[-68.95862849999989,-27.421064147999854],[-68.99358760599998,-27.437703958999876],[-69.01014990299987,-27.448866067999816],[-69.01741044199994,-27.460441588999853],[-69.02051102699997,-27.473360697999862],[-69.01989091099992,-27.48689992300002],[-69.01627355999995,-27.50012908899984],[-69.01901240999987,-27.5243136599999],[-69.02857255099988,-27.551288757],[-69.05386816399994,-27.599657896999958],[-69.06298905399993,-27.609993183999975],[-69.08554581799986,-27.629320169999843],[-69.0923412689999,-27.640172220999887],[-69.09321976799993,-27.65650197399991],[-69.08745784599996,-27.669214375999957],[-69.08001643899996,-27.681513366],[-69.07583064799991,-27.69618947399999],[-69.08110164399994,-27.703837585999963],[-69.10833512399995,-27.71582651799984],[-69.11820532299993,-27.72213104199986],[-69.12432897999989,-27.734430032999896],[-69.13406045699993,-27.772343536999827],[-69.17300817899991,-27.92408253999983],[-69.1901905929999,-27.951367695999934],[-69.21589961799998,-27.96852427099998],[-69.27514664799989,-27.98289031999981],[-69.29106298899998,-27.989401550999872],[-69.30323278799992,-27.999530130999826],[-69.3131029869999,-28.014516296999982],[-69.31377478099995,-28.02268117199982],[-69.3109325769999,-28.02929575599991],[-69.31175939999991,-28.036530456999966],[-69.33082800299991,-28.05244679799999],[-69.36715653599995,-28.130374857999968],[-69.38986832699993,-28.16200083399987],[-69.41188248699993,-28.20251515699988],[-69.42030574499992,-28.212643737999926],[-69.43562780799995,-28.208509622999983],[-69.45606583699993,-28.195797220999932],[-69.4761679689999,-28.187942402999823],[-69.4905081789999,-28.198381041999937],[-69.501231039,-28.25036753299996],[-69.51009354699991,-28.267524108999936],[-69.55352758799992,-28.317856953999822],[-69.60732275399994,-28.356304219999956],[-69.65303055899994,-28.397852070999946],[-69.65404516399988,-28.400993547999903],[-69.6723575449999,-28.4576933799999],[-69.67483801299997,-28.56311330099986],[-69.67840368699991,-28.57386199899987],[-69.68512162299996,-28.57778940899985],[-69.69320898499987,-28.579753112999967],[-69.70088293499995,-28.584403991999935],[-69.72207027199991,-28.61065561899987],[-69.74085465600001,-28.6406279499999],[-69.7533861899999,-28.67339080799982],[-69.7559183359999,-28.70770395900001],[-69.7510607509999,-28.729821471999852],[-69.736384644,-28.77240285199983],[-69.73276729299991,-28.794313658999954],[-69.73584204099996,-28.81240041099988],[-69.76483251999991,-28.858599141999846],[-69.76682206199987,-28.86759084099988],[-69.76643448999997,-28.875859069999834],[-69.76731298899996,-28.8842306519999],[-69.7731265869999,-28.892705586999895],[-69.78539973999992,-28.905831400999872],[-69.79506323299992,-28.92081756599994],[-69.80278885999994,-28.939937845999935],[-69.80661291499987,-28.95988494899994],[-69.8063028569999,-28.980142109999946],[-69.80167781599994,-28.99998585999994],[-69.79576086499992,-29.050111998999967],[-69.79723364299991,-29.07667368499989],[-69.80392574099994,-29.098687845999876],[-69.82232255099993,-29.120081887999884],[-69.84436254899992,-29.12928029399988],[-69.89448868899987,-29.137238464999857],[-69.91094763199993,-29.143232930999957],[-69.91472001199995,-29.14881398499989],[-69.9152884529999,-29.156152037999885],[-69.92198055099993,-29.168037617999914],[-69.9326000579999,-29.17692596499992],[-69.95936844899998,-29.192118834999864],[-69.97505224599993,-29.204314472999954],[-69.9800648609999,-29.20586476699989],[-69.98505163699994,-29.20834523599987],[-69.98949580899995,-29.21444305499992],[-69.98810054599997,-29.220024108999937],[-69.97616328999993,-29.23345998099998],[-69.97474218799996,-29.240798033999965],[-69.98032324199997,-29.249996438999887],[-69.98934077999994,-29.257334492999963],[-69.9998569339999,-29.262915547999896],[-70.01001135299992,-29.266429544999852],[-70.03112117599997,-29.277178242999952],[-70.04065547799988,-29.2975387579999],[-70.0444795329999,-29.346114603999975],[-70.04261918099989,-29.36306447399998],[-70.03574621599992,-29.37691375699987],[-70.02698706099994,-29.389936217999903],[-70.01954565399993,-29.40440561899985],[-70.01001135299992,-29.45608205199997],[-70.00218237299993,-29.465590514999946],[-69.99613623099995,-29.47644256599999],[-69.99161454299994,-29.488121439999883],[-69.96846350099995,-29.583309427999847],[-69.96890275099989,-29.61307505299993],[-69.97293351299996,-29.643150736],[-69.97319189499993,-29.666095071999848],[-69.96350256399998,-29.685525410999915],[-69.93787105399994,-29.704749043999936],[-69.92935283799991,-29.717877116],[-69.92908605999993,-29.718288268999828],[-69.9155985109999,-29.80562143999985],[-69.92218725699988,-29.93956675199985],[-69.92797501699992,-29.976773782999853],[-69.94128169799987,-30.0130506389999],[-69.97562068699996,-30.058629251999978],[-69.9803749189999,-30.07247853599986],[-69.97324357099987,-30.08942840499986],[-69.9576631269999,-30.092735696999867],[-69.91867325899992,-30.08777476],[-69.88071691999991,-30.09976369199995],[-69.84973689899991,-30.126635436999877],[-69.8357584229999,-30.16187876299993],[-69.84896175099996,-30.199085794999856],[-69.85741084899988,-30.205493672999975],[-69.87707373099991,-30.213141784999877],[-69.8862462979999,-30.220996602],[-69.89074214699994,-30.228954772999955],[-69.89402360099993,-30.238049824999845],[-69.89808020099991,-30.256549987999872],[-69.8998630369999,-30.294377135999852],[-69.90280859399991,-30.312670593],[-69.91213619099995,-30.329517109999898],[-69.9380260829999,-30.355562031999963],[-69.9645877689999,-30.374785664999973],[-69.99445674599991,-30.388118184],[-70.030191,-30.397109882999956],[-70.06427160699987,-30.389255065999834],[-70.14692806099993,-30.35390838699983],[-70.17341223199995,-30.364657084999845],[-70.17377396699993,-30.382227070999917],[-70.14871089699992,-30.418710631999925],[-70.14393082699993,-30.439587910999908],[-70.15119136599988,-30.45974171899988],[-70.16377457799993,-30.47018035899983],[-70.17969091899994,-30.4771050009999],[-70.19697668499992,-30.486820169999845],[-70.21710465599992,-30.51513885499992],[-70.23539811199998,-30.591619975],[-70.25077185099994,-30.626553242999904],[-70.27020218899995,-30.65724904399994],[-70.27598994999991,-30.673062031999848],[-70.27986568299997,-30.69311248799997],[-70.27934891799993,-30.70561818399989],[-70.2766100669999,-30.71564341299991],[-70.27617081699995,-30.72556528699999],[-70.28229447499993,-30.737760924999915],[-70.30007116799995,-30.758121439999854],[-70.30503210499998,-30.765459492999852],[-70.31947566799991,-30.800806171999852],[-70.3392160649999,-30.93816212999995],[-70.335211141,-30.956042174999837],[-70.32513423699996,-30.971648457999958],[-70.30859777799995,-30.988184916999955],[-70.27986568299997,-31.01030242899996],[-70.26759252999992,-31.023841653999852],[-70.26655900099993,-31.036450703999872],[-70.27831538899994,-31.039447936999892],[-70.32094844599993,-31.033660175999913],[-70.33978450599994,-31.0417217],[-70.36249629799991,-31.073037617999915],[-70.3723923339999,-31.09215789799991],[-70.38089310799992,-31.12161346399999],[-70.39306290699992,-31.13763315899996],[-70.40864335099994,-31.150035501999923],[-70.42339697299997,-31.15375620499985],[-70.43561845,-31.141353861999963],[-70.44060522499993,-31.11882293699986],[-70.44809830699995,-31.097635598999897],[-70.46778702799992,-31.089367370999938],[-70.47980179899987,-31.09670542399985],[-70.53592240399993,-31.172566426999865],[-70.54140010599991,-31.1881727089999],[-70.54336381099995,-31.208119812],[-70.54289872299992,-31.246773782999906],[-70.5468002929999,-31.264550475999858],[-70.5689694829999,-31.30423797599984],[-70.56721248399992,-31.32304819699985],[-70.55990026899994,-31.34165171299999],[-70.55465511099993,-31.36294240299998],[-70.55778153499998,-31.381752623999986],[-70.57537735999995,-31.412965189999877],[-70.57899470999993,-31.431982116999848],[-70.57790950599994,-31.468879088999866],[-70.58137182599998,-31.50567270899987],[-70.59137121599991,-31.549597675999895],[-70.58976924699996,-31.567684428],[-70.58026078299989,-31.592282409999893],[-70.52721492499995,-31.68426645899997],[-70.49677750699989,-31.71454884800001],[-70.48631302899994,-31.73118865999984],[-70.48848343899994,-31.773873392999842],[-70.4839875899999,-31.79764455199989],[-70.47522843399994,-31.820072123999893],[-70.46414383999993,-31.83826222799992],[-70.42828039599999,-31.87009491],[-70.39399308299997,-31.877639668999915],[-70.35722530099989,-31.87650278699992],[-70.31332617299995,-31.882083841999844],[-70.29624711199992,-31.89097218799995],[-70.27500809799994,-31.906991882999904],[-70.25568111199989,-31.925698750999974],[-70.24446732699994,-31.94223520899997],[-70.24170263699996,-31.96145884199999],[-70.24767126499991,-31.974584655999877],[-70.25772233099994,-31.986160175999913],[-70.26720495699993,-32.00093963699993],[-70.27542150899987,-32.03778493299994],[-70.28469742899996,-32.04677663199989],[-70.31004471899988,-32.047706807999845],[-70.35231604099994,-32.03334075899984],[-70.37332250999995,-32.03039520300001],[-70.38748185299991,-32.04171234099991],[-70.38908382199995,-32.053081155999884],[-70.38461381099992,-32.061969502999915],[-70.36805151399992,-32.07705902099982],[-70.36120438699996,-32.0858440139999],[-70.35924068199992,-32.093698831999845],[-70.35991247599992,-32.11302581799997],[-70.35559749399994,-32.1226376339999],[-70.3389576829999,-32.13338633199983],[-70.3352369799999,-32.140000914999916],[-70.33686478699994,-32.14919931999982],[-70.34391861999995,-32.16573577899999],[-70.3455205899999,-32.17472747799994],[-70.34309179699994,-32.18692311599996],[-70.33130957099992,-32.20821380599995],[-70.33082360899996,-32.20958811899996],[-70.32725296999993,-32.21968597399987],[-70.32691707399994,-32.228781025999936],[-70.32978511599991,-32.24686777799994],[-70.32973343899991,-32.255549418],[-70.32180110799995,-32.280147399999976],[-70.30970882199998,-32.288312275999914],[-70.2925005699999,-32.29099945099985],[-70.26919449899995,-32.29906097399984],[-70.25611904399997,-32.31427788099998],[-70.24237443099989,-32.330273538999904],[-70.24531998699987,-32.40396413100002],[-70.22725907399987,-32.43465993299987],[-70.18852758899993,-32.45357350599991],[-70.17248205699988,-32.46494232199998],[-70.16082902099993,-32.485302835999846],[-70.15814184599988,-32.506490172999975],[-70.15979549199994,-32.52519704199996],[-70.15788346399992,-32.54245696999996],[-70.13772965499993,-32.56901865599988],[-70.14710892799988,-32.57211924299983],[-70.17057002799996,-32.5727393589999],[-70.1758926999999,-32.58049082499981],[-70.17876074299997,-32.58896575999999],[-70.18108618199992,-32.60756927499986],[-70.18044022699993,-32.630203552],[-70.15573889199993,-32.738414002],[-70.14002925699995,-32.768282978999835],[-70.08726761899993,-32.82326670299996],[-70.05432389399996,-32.85075856499992],[-70.0367797449999,-32.85975026399997],[-70.0143521729999,-32.86750172999989],[-70.00021866899996,-32.87659678099986],[-70.00016699299997,-32.88899912500001],[-70.01714270099987,-32.91659433999983],[-70.02427404899993,-32.93478444399996],[-70.03424759899991,-32.97695241299992],[-70.04248998999994,-32.99266204799997],[-70.05649430399987,-33.00134368899985],[-70.08892126499998,-33.008268330999925],[-70.1029514169999,-33.01829355899986],[-70.11119380799994,-33.03844736700002],[-70.10610066299995,-33.05259252099995],[-70.10527685599993,-33.0548804729999],[-70.09548417199997,-33.07131357899986],[-70.09217687999995,-33.09177744599991],[-70.10977270499995,-33.149448342999804],[-70.10946264699996,-33.16960215199987],[-70.10083268199992,-33.18686208099986],[-70.08569148799998,-33.20133148199989],[-70.05179174799989,-33.225309345999904],[-70.0411205659999,-33.23895192499991],[-70.01001135299992,-33.29910329199985],[-69.98386307799993,-33.29445241299989],[-69.94055822799996,-33.24287933399987],[-69.90528906299997,-33.238228453999824],[-69.86968400099991,-33.24959726999998],[-69.8368436289999,-33.265720316999975],[-69.81389929299996,-33.28949147599994],[-69.80568273899993,-33.34426849399992],[-69.78767350299992,-33.37940846699987],[-69.78674332699998,-33.39925221799996],[-69.79446895399988,-33.41465179399985],[-69.82059138999998,-33.442867126999914],[-69.83090083799996,-33.45816335099995],[-69.83415645299996,-33.474596455999844],[-69.83813553899995,-33.52110524499987],[-69.84146866899994,-33.53278411799985],[-69.84927181099997,-33.53650482099995],[-69.86927058999989,-33.54291269999999],[-69.87529089399993,-33.547356871999895],[-69.87883072899989,-33.55800221699981],[-69.87707373099991,-33.566787210999976],[-69.87376643899992,-33.57546885199993],[-69.87293961599991,-33.586010843999986],[-69.89392024799989,-33.64275156699992],[-69.89536718799988,-33.66228525799984],[-69.88678889999994,-33.67871836299999],[-69.85968461199991,-33.71137786799987],[-69.8600463459999,-33.72636403399992],[-69.8725520429999,-33.737422789999854],[-69.90650345899991,-33.76026377399994],[-69.9142549239999,-33.771942647999836],[-69.91477168799995,-33.793543395999805],[-69.89727921599989,-33.87136810299993],[-69.89864864099988,-33.88893808999991],[-69.90805375199994,-33.9279021199999],[-69.90955236799994,-33.95570403999986],[-69.90030228699993,-33.95901133199986],[-69.88428259299988,-33.95415374800001],[-69.8656015629999,-33.95766774499997],[-69.85580887899994,-33.98474619499994],[-69.85544714399995,-34.03115163199986],[-69.86397375599995,-34.107529398999986],[-69.86844376699989,-34.122618917],[-69.87237117499991,-34.130990497999974],[-69.8732496749999,-34.13998219799991],[-69.86859879599993,-34.156725361999875],[-69.86211340399987,-34.170161234999924],[-69.83730871699993,-34.20933196999995],[-69.8288854579999,-34.23330983399988],[-69.83276118999999,-34.24323170999996],[-69.90229182999988,-34.26865651499989],[-69.90484981299997,-34.27382415799998],[-69.90593501799995,-34.280748799999955],[-69.9115677499999,-34.28457285599991],[-69.94748286999996,-34.27382415799998],[-69.96820511999995,-34.27000010199985],[-69.98923742799991,-34.2690699259999],[-70.04034541799987,-34.277028096999956],[-70.04817621499987,-34.28346179499991],[-70.05757950899996,-34.291187439],[-70.06450415099994,-34.31351165799997],[-70.06365148899991,-34.343690693999875],[-70.05943986099996,-34.37293955499983],[-70.05869055199997,-34.39578053799992],[-70.0675788989999,-34.414590760000024],[-70.11429439299988,-34.44735361699985],[-70.12837622099991,-34.469471129999945],[-70.15072627799998,-34.51815032999997],[-70.1677795009999,-34.53840749099997],[-70.20919816099988,-34.56796640999991],[-70.22782751499992,-34.58532969099993],[-70.24242610699989,-34.619436136999894],[-70.25221879099993,-34.695813903999934],[-70.27314774599992,-34.727026468999924],[-70.29312068699997,-34.7365349329999],[-70.30945043999989,-34.739738870999886],[-70.31629756699996,-34.745629983999976],[-70.30751257399996,-34.763096618999924],[-70.29283646699989,-34.77756601999987],[-70.28069250499999,-34.78635101299994],[-70.27671341999991,-34.79823659299997],[-70.35371130399992,-34.95326588899981],[-70.37259903999987,-35.024682718999976],[-70.37244657199994,-35.027388544999965],[-70.36851660199994,-35.09713307699998],[-70.38662919099997,-35.1666895539998],[-70.54289872299992,-35.209270934999864],[-70.5788913579999,-35.25970713299986],[-70.5604170339999,-35.29836110499986],[-70.52070369499998,-35.309626566999924],[-70.47528011099988,-35.3140707399999],[-70.43975256399992,-35.332157490999926],[-70.4283837489999,-35.357065531],[-70.44060522499993,-35.3667807],[-70.46037146099991,-35.37101816799991],[-70.4717661139999,-35.37938974999997],[-70.46918229199991,-35.39468597399984],[-70.44546280999995,-35.46114186599989],[-70.43107092299994,-35.47778167699991],[-70.41642065499988,-35.49111419600001],[-70.40822993999993,-35.50620371499984],[-70.41810013899993,-35.54754486099996],[-70.41197648199994,-35.58743906599999],[-70.41226070199994,-35.60738616999993],[-70.42272517999996,-35.64386973099994],[-70.42153662099994,-35.659682718999846],[-70.37639725799997,-35.76138193799987],[-70.36156612199994,-35.78308603999987],[-70.35732865399989,-35.8152287799999],[-70.42024471099997,-35.868352151999844],[-70.42078731299995,-35.90380218499996],[-70.41236405399988,-35.90814300499994],[-70.39073746799997,-35.90586924199984],[-70.38368363499987,-35.913207296],[-70.38482051599995,-35.92116546599998],[-70.39146093799988,-35.92736663799995],[-70.3995999759999,-35.93274098699992],[-70.40502600099995,-35.938322041999854],[-70.41257076099993,-35.95733896899982],[-70.41272578999997,-35.96891448999986],[-70.38368363499987,-36.030512796999986],[-70.38032466699994,-36.046015727],[-70.38693924999987,-36.05872812899994],[-70.40430253199989,-36.07443776399984],[-70.41068456999992,-36.08373952199986],[-70.42272517999996,-36.116605732999886],[-70.43074804399996,-36.12940211799996],[-70.43510168499995,-36.136346130999854],[-70.4514831139999,-36.152262471999876],[-70.47114599599993,-36.16249440499986],[-70.49912878499993,-36.16363128599986],[-70.54530167599998,-36.14275400799998],[-70.56832352799992,-36.139033304999884],[-70.58142350299991,-36.14316741899999],[-70.58847733599991,-36.15019541399991],[-70.59832169599989,-36.16962575299989],[-70.60028540099992,-36.175206808],[-70.6013189299999,-36.188125914999915],[-70.60436783899993,-36.19463714599989],[-70.60865698299997,-36.19794443799998],[-70.61994828299996,-36.20228525799996],[-70.62467667699994,-36.20517913899994],[-70.66162532599988,-36.24455657899995],[-70.67503535999992,-36.25241139699989],[-70.69389725799995,-36.256648863999835],[-70.70312150099997,-36.26005950899996],[-70.71051123099997,-36.265847269999924],[-70.71487788899995,-36.27525238099997],[-70.71376684599994,-36.283520609999925],[-70.71159643599995,-36.29168548499986],[-70.71265580299996,-36.30026377299997],[-70.72968318699989,-36.325481872000026],[-70.73221533199995,-36.33426686599992],[-70.72911474599994,-36.346875914999856],[-70.7135859789999,-36.36816660599984],[-70.70859920299995,-36.379948833000014],[-70.70890926099995,-36.403203226999864],[-70.71865026899988,-36.41457204199993],[-70.80719783599994,-36.43338226299994],[-70.81432918399989,-36.42997161899993],[-70.82032364999992,-36.424597269999964],[-70.82882442199991,-36.41984303799988],[-70.86858943799993,-36.40465016699986],[-70.89037105399991,-36.4004127],[-70.90778601099996,-36.40516693099998],[-70.91626094599988,-36.419326272999925],[-70.92331477899998,-36.456740009999905],[-70.93496781399993,-36.4725529989999],[-70.9531579179999,-36.482474873999976],[-70.97103796399995,-36.48547210699982],[-70.9896414799999,-36.48330169699991],[-71.00997615599994,-36.47751393599985],[-71.02781930399995,-36.48116838999998],[-71.04328161599997,-36.48433522499998],[-71.06142004499992,-36.52040537499998],[-71.06891312699995,-36.5663974],[-71.06997249399993,-36.603811136999866],[-71.05532222599996,-36.67130055699998],[-71.05744095899992,-36.68763030999985],[-71.07302140299996,-36.69682871499992],[-71.0907722579999,-36.68949066099985],[-71.10999589099993,-36.67853525799987],[-71.1299429939999,-36.67688161199992],[-71.14534256999991,-36.688250426999986],[-71.1489082439999,-36.70396006199988],[-71.14684118699992,-36.74106374099986],[-71.15154374199992,-36.76049407900001],[-71.17671016499993,-36.814857686],[-71.18177445499992,-36.822402445999934],[-71.18895747999997,-36.83046396899985],[-71.19515865099996,-36.839145608999985],[-71.19686397399991,-36.84824066199988],[-71.1916446539999,-36.85836924199984],[-71.18280798399991,-36.86291676799995],[-71.17309281499986,-36.86612070699992],[-71.16523799699993,-36.87211517399996],[-71.15877844199989,-36.88265716499993],[-71.1585200609999,-36.88689463299988],[-71.16053544199994,-36.89040862999984],[-71.16105220499989,-36.89878021299991],[-71.1636360279999,-36.90632497099986],[-71.16854528799993,-36.914386494999945],[-71.16906205299995,-36.921931253999894],[-71.1401749269999,-36.937537536999926],[-71.13567907799998,-36.95149017399993],[-71.14332718899996,-36.96544281],[-71.16146561799991,-36.97546803799993],[-71.18110266199994,-36.97526133199989],[-71.20068802999995,-36.971437275999946],[-71.2071475839999,-36.9723674519999],[-71.18740718599994,-36.98683685299984],[-71.15603959199991,-37.002753193999865],[-71.14864986199991,-37.01350189199988],[-71.13955480999994,-37.06166432699996],[-71.12689408399989,-37.07758066799998],[-71.08911861199994,-37.10341888499991],[-71.12513708499992,-37.120058694999926],[-71.13929642799988,-37.13328786199983],[-71.14761633299993,-37.15478525799996],[-71.14797806799993,-37.1758692429998],[-71.14549759999994,-37.1954029339999],[-71.14647945199994,-37.21483327199996],[-71.15758988499994,-37.23571055099994],[-71.1972257079999,-37.2748812869999],[-71.2055972899999,-37.29265797899993],[-71.20461543799993,-37.31539560899991],[-71.19474523899993,-37.34350758899994],[-71.16828690599993,-37.39156667099989],[-71.1364025469999,-37.4250529989999],[-71.12307002799997,-37.44324310299993],[-71.117695679,-37.46649749799986],[-71.12084794099988,-37.48634124699986],[-71.1364025469999,-37.52437510199998],[-71.14172521999993,-37.543908792999986],[-71.13955480999994,-37.55486419699987],[-71.12730749599993,-37.5726408899999],[-71.12792761199998,-37.58442311599998],[-71.1330952559999,-37.590624287999795],[-71.15717647399993,-37.60250986699982],[-71.17242102099996,-37.614498798999875],[-71.18389318899997,-37.62586761499995],[-71.19076615499995,-37.64002695799982],[-71.19226477099997,-37.660904235999965],[-71.1850300699999,-37.70606943699994],[-71.13325028499992,-37.838464456999915],[-71.0949063729999,-37.89737558999984],[-71.08759415699993,-37.94016367599995],[-71.06113582399992,-37.978404235999946],[-71.05204077199997,-37.999281514999915],[-71.04645971699995,-38.02026214599992],[-71.03744217999991,-38.036591897999955],[-71.00997615599994,-38.06553070000001],[-71.00741817199994,-38.07100840299991],[-71.00664302599992,-38.0766928099999],[-71.00741817199994,-38.08227386399987],[-71.00997615599994,-38.08785491899998],[-71.02351538099992,-38.10459808399984],[-71.02305029299988,-38.12289154099999],[-71.01614241299987,-38.14369709399999],[-71.00997615599994,-38.162268981999986],[-71.00896846599997,-38.16505950899996],[-71.00865840699997,-38.16764333099995],[-71.00896846599997,-38.170330504999896],[-71.01788265,-38.20371348099995],[-71.019743001,-38.234305927999884],[-71.01669409199988,-38.26469167099992],[-70.97375097699998,-38.424681904999986],[-70.95047074399989,-38.45940846799984],[-70.91729447499995,-38.48297292099994],[-70.87982906099998,-38.50302337599997],[-70.84866817299991,-38.52762135899988],[-70.8343021249999,-38.564414977999874],[-70.8375835779999,-38.58446543399991],[-70.84773799699994,-38.59996836400002],[-70.87300777199991,-38.62777028399997],[-70.88342057299994,-38.64306650799985],[-70.88510005799992,-38.649474385999966],[-70.88579768899989,-38.66053314199989],[-70.88298132299994,-38.66880137099984],[-70.8769868569999,-38.67500254299992],[-70.87233597799994,-38.681617126],[-70.87383459499995,-38.691435648999885],[-70.87936397299987,-38.69463958699994],[-70.90954300999994,-38.70642181399995],[-70.91535660899991,-38.71220957499992],[-70.92949011299996,-38.73577402699992],[-70.94504471899998,-38.74724619599993],[-70.96723974699992,-38.750760192999905],[-71.00997615599994,-38.74631601999989],[-71.0484234219999,-38.74662607799996],[-71.07865413399988,-38.757064717999825],[-71.1368676349999,-38.79220469099987],[-71.15283565299987,-38.79881927499996],[-71.2280248619999,-38.80884450299989],[-71.23603470899995,-38.81163502999985],[-71.2409956459999,-38.81845631899998],[-71.25375972499998,-38.83271901499997],[-71.27975297099994,-38.85018564799991],[-71.37070349199993,-38.88801279699999],[-71.39990067499987,-38.910543721],[-71.41576533999998,-38.93534840899994],[-71.43023474199993,-38.99911712699998],[-71.4310098879999,-39.02598887099996],[-71.41266475499995,-39.100609639999945],[-71.40196773299994,-39.23600189199993],[-71.41204463699998,-39.317960713999824],[-71.42020951399991,-39.34214528399997],[-71.43907141199992,-39.35599456799986],[-71.46056880799993,-39.36715667699988],[-71.4765368249999,-39.38296966599988],[-71.4776220299999,-39.4021932979999],[-71.46165401199997,-39.4338192749998],[-71.47043900599994,-39.44911549899985],[-71.48247961499992,-39.46110443099991],[-71.50144486499997,-39.488286233999986],[-71.51565588399993,-39.50130869499992],[-71.54195918799988,-39.53231455499994],[-71.4956571049999,-39.56559417699998],[-71.50351192299993,-39.60166432699998],[-71.51999670399991,-39.61499684600001],[-71.53668819199996,-39.615720317],[-71.55498164999992,-39.61282643699984],[-71.57642736899993,-39.614686787999844],[-71.60076696899995,-39.61954437199986],[-71.61782019099991,-39.61665049299996],[-71.63239294499994,-39.6075554399999],[-71.64109884299994,-39.59999900099996],[-71.67740311799989,-39.568488057999886],[-71.68975378399993,-39.56838470499994],[-71.70541174399996,-39.58357757499997],[-71.71435176699993,-39.601354267999824],[-71.7187442629999,-39.62336842799998],[-71.71605708899996,-39.644762470999815],[-71.6940429279999,-39.673494567999825],[-71.69879715999988,-39.690237731999865],[-71.70877071199989,-39.708427836],[-71.71435176699993,-39.72630788199987],[-71.71047603399995,-39.74749521899983],[-71.69197587099993,-39.78997324699995],[-71.68691157999987,-39.81157399499993],[-71.68458614099993,-39.83348480299989],[-71.6793668219999,-39.84785085099989],[-71.66923824099987,-39.85921966599997],[-71.63451167799994,-39.88350758899996],[-71.621179159,-39.895083109999824],[-71.61663163299997,-39.90986256899993],[-71.62484818599997,-39.93104990699999],[-71.6620552169999,-39.99512868299982],[-71.66727453599992,-40.00050303099995],[-71.67440588399995,-40.00443043999992],[-71.68050370299991,-40.00949473099982],[-71.68282914299996,-40.01807301899993],[-71.6807620859999,-40.029131774999854],[-71.6731139739999,-40.05031911199998],[-71.67094356299992,-40.060757750999926],[-71.68370764199996,-40.098998311999836],[-71.72168981999991,-40.09383066900001],[-71.76675166899994,-40.07688079799992],[-71.80070308499998,-40.07967132599988],[-71.81403560399991,-40.092900492999874],[-71.81455236799994,-40.09961842799989],[-71.80711096199991,-40.10840342199997],[-71.80287349499989,-40.11605153399986],[-71.8047855229999,-40.124629821999974],[-71.80902298999993,-40.133828226999896],[-71.81646439599986,-40.16442067499982],[-71.81672277899995,-40.17454925499986],[-71.81207189999996,-40.184677835999906],[-71.81357051599988,-40.188191833999866],[-71.82235550999988,-40.2028679399999],[-71.82375077399993,-40.210102641],[-71.81599930899995,-40.227155862999936],[-71.80194331899992,-40.24234873499988],[-71.77073075399994,-40.26715342199991],[-71.75006018099992,-40.29154469899994],[-71.74267045099992,-40.29650563599989],[-71.72995804899995,-40.29857269299994],[-71.72572058099989,-40.295265401999934],[-71.72391190599993,-40.28999440499983],[-71.71848588099994,-40.2862737019999],[-71.70546341999992,-40.28193288199992],[-71.69874548399987,-40.28275970399994],[-71.68670487499992,-40.28854746499984],[-71.67926346899989,-40.295265401999934],[-71.67518102999989,-40.303947042],[-71.67368241499989,-40.313765563999965],[-71.67404414899997,-40.32410085099998],[-71.67848832199988,-40.34022389699987],[-71.71905432199989,-40.41298431399992],[-71.72928625599988,-40.421355895999824],[-71.74225703999991,-40.42083913199997],[-71.78473506699993,-40.41133066799989],[-71.79641394099991,-40.414534606999865],[-71.80416540599991,-40.426420185999966],[-71.84085567299991,-40.51602711999985],[-71.85878739499995,-40.5423821009999],[-71.86183630399997,-40.549720153999985],[-71.86059606999996,-40.55943532299993],[-71.85093257699992,-40.570287373999975],[-71.84772863799995,-40.57958913099982],[-71.85310298699991,-40.61638275199991],[-71.87336014799993,-40.647078551999854],[-71.94963456199994,-40.70929697699994],[-71.95557735299988,-40.72035573299986],[-71.92121252499993,-40.82773935899992],[-71.91067053299994,-40.85006357899997],[-71.87087967999993,-40.89574554499991],[-71.85987259899994,-40.91341888399991],[-71.85144934099998,-40.938326924999885],[-71.85144934099998,-40.9576539099999],[-71.86767574099989,-40.99899505599987],[-71.86740158899994,-41.01023528699996],[-71.86715897699995,-41.02018239399983],[-71.85284460499993,-41.05718271899997],[-71.85398148699994,-41.07888681999996],[-71.86261144999992,-41.11464691199997],[-71.86586706599988,-41.150407002999984],[-71.87134476799989,-41.166736754999846],[-71.8814216719999,-41.17262786799984],[-71.88943151899988,-41.17975921599988],[-71.88844966699992,-41.20032643599987],[-71.87594396999992,-41.23360605899991],[-71.87336014799993,-41.24921234199993],[-71.8777009689999,-41.269779561999925],[-71.90224727499998,-41.33592539499999],[-71.90395259599993,-41.36765472399992],[-71.89232539899987,-41.405378519999886],[-71.88431555199989,-41.42294850699985],[-71.87981970299998,-41.43669443699997],[-71.87883785099989,-41.451060485999804],[-71.88121496699995,-41.47038747099985],[-71.88870804899997,-41.500153097],[-71.88808793199993,-41.51276214599994],[-71.8806982019999,-41.52971201499986],[-71.86808915299989,-41.54511159299984],[-71.85687536699993,-41.55596364299989],[-71.85325801599996,-41.56733245899988],[-71.86348994999993,-41.584489033999844],[-71.8777009689999,-41.59492767299988],[-71.91185909099997,-41.610223896999926],[-71.92596675699991,-41.62293629999989],[-71.9259150799999,-41.65301198399986],[-71.86896765199992,-41.71554046599985],[-71.85858068899992,-41.74861338299985],[-71.85687536699993,-41.78613047299992],[-71.83894364499989,-41.81331227699991],[-71.81465572099998,-41.83780690499988],[-71.79403682499998,-41.86746917699983],[-71.77439978099994,-41.939196064999834],[-71.77507157499991,-41.95635264099997],[-71.77987748199993,-41.97226898199999],[-71.78065262899995,-41.98642832399986],[-71.7692595689999,-41.9996066219999],[-71.76251420199992,-42.007408955999864],[-71.74385900899995,-42.02435882599987],[-71.73956986599987,-42.03190358499991],[-71.73626257399988,-42.08389007599984],[-71.74944006399994,-42.10435394299998],[-71.77310787,-42.11996022599985],[-71.80132320199994,-42.13029551199993],[-71.87180985599991,-42.139700621999886],[-71.88426387599989,-42.14424814899983],[-71.89372066299995,-42.152619730999895],[-71.90080033399997,-42.16305836999984],[-71.90948197499995,-42.17225677499985],[-71.92379634699992,-42.17690765399999],[-71.94803259399993,-42.16729583699989],[-71.96136511299994,-42.14486826499998],[-71.97748815999991,-42.12533457399981],[-72.00983760599989,-42.12471445699983],[-72.03991328999987,-42.14466155999985],[-72.05138545799988,-42.170499775999865],[-72.05893021599994,-42.19757822699992],[-72.0771719969999,-42.22124603299994],[-72.1030102139999,-42.24088307699989],[-72.1247143159999,-42.26331064899989],[-72.13370601399996,-42.28759857199988],[-72.12156205199993,-42.313023376999894],[-72.06988562099991,-42.349972024999836],[-72.06068721599992,-42.368885599999956],[-72.07665523299997,-42.423352558999866],[-72.07520829299997,-42.4337911989999],[-72.04575272699995,-42.4698613489999],[-72.03918981999996,-42.48123016399989],[-72.04192867099994,-42.49104868599987],[-72.09282995699996,-42.51078908199992],[-72.12264725799994,-42.529909363],[-72.14321447799995,-42.55709116599982],[-72.14843379799996,-42.592644550999864],[-72.14543656399992,-42.600499368999905],[-72.13463618999992,-42.61476206499988],[-72.13158728099997,-42.62406382199989],[-72.13246577999993,-42.631711934999885],[-72.14145747899997,-42.6556897989998],[-72.13985550999993,-42.669849140999844],[-72.12564449099997,-42.70385223399997],[-72.12125199399989,-42.719665221999875],[-72.11267370599995,-42.863842467999945],[-72.11949499599989,-42.898569030999894],[-72.14212927199995,-42.96368133499989],[-72.14853715099989,-42.99871795599991],[-72.12931351799998,-43.042229512],[-72.09608557199994,-43.07850636799998],[-72.05443436699991,-43.10537811299989],[-72.00983760599989,-43.12036427799995],[-71.86188798099991,-43.13318003399985],[-71.7701623129999,-43.161395364999905],[-71.75016353399994,-43.17245412199982],[-71.74298050899998,-43.19012746199982],[-71.74566768499992,-43.199222513999885],[-71.7551244709999,-43.21637908999993],[-71.75765661699998,-43.22537078899998],[-71.75698482299988,-43.23529266299996],[-71.7514037679999,-43.25100229899994],[-71.74954341599997,-43.259167174999874],[-71.74840653499987,-43.27704722099992],[-71.7506802979999,-43.295340677999896],[-71.76086055499997,-43.306916198999936],[-71.80509558099996,-43.29999155699987],[-71.82437088999991,-43.30340220199997],[-71.86400671399988,-43.317561543999844],[-71.88943151899988,-43.31921519],[-71.90173050999994,-43.322005716999854],[-71.90736324099996,-43.32965382899992],[-71.90917191599996,-43.35972951299998],[-71.9123241779999,-43.367791035999886],[-71.91955887899988,-43.37430226699986],[-71.9274136969999,-43.378126322999975],[-71.93485510299993,-43.38277720199994],[-71.94095292199998,-43.39176890099999],[-71.94105627499991,-43.39838348399981],[-71.93676713099995,-43.426702168999896],[-71.9420898029999,-43.434246927999844],[-71.95077144399994,-43.43858774799983],[-71.95511226499994,-43.44354868599987],[-71.94741247599995,-43.45316050199997],[-71.93733557199991,-43.45688120499997],[-71.92694860899988,-43.45481414799984],[-71.91650996899993,-43.45088673899987],[-71.90622635899987,-43.44923309399982],[-71.8861242269999,-43.45336720799985],[-71.86881262199998,-43.462565612999924],[-71.85832230699992,-43.47744842499996],[-71.85863236499992,-43.498635762999925],[-71.85878739499995,-43.49925587999991],[-71.8782694099999,-43.519202983000014],[-71.88152502499993,-43.524473978999865],[-71.87382523599996,-43.53894337999989],[-71.85113928299998,-43.54256072999988],[-71.82344071499995,-43.54214731899987],[-71.80070308499998,-43.54421437499991],[-71.7897993569999,-43.549382018999914],[-71.78349483299989,-43.55537648499994],[-71.77884395399994,-43.56147430399999],[-71.77274613499989,-43.56746877099994],[-71.7661832279999,-43.57201629699988],[-71.72375687699989,-43.59475392599994],[-71.71430008999991,-43.60219533299997],[-71.71068273999992,-43.614080911999906],[-71.70365474499991,-43.671648457999844],[-71.70918412299991,-43.6843608599999],[-71.72572058099989,-43.697383321999936],[-71.74432409699995,-43.705238138999874],[-71.78638871299998,-43.71722707099984],[-71.80323522999996,-43.72601206399992],[-71.81341548699993,-43.73944793699995],[-71.8192032469999,-43.75805145299992],[-71.8154825439999,-43.774381204999955],[-71.79713741099991,-43.780789082999895],[-71.77553666199994,-43.775621438999806],[-71.7620491139999,-43.768903503999965],[-71.75502111899996,-43.77138397199985],[-71.75295406099991,-43.79360483799996],[-71.75564123499993,-43.80269988999986],[-71.76080887899994,-43.809624531999845],[-71.76427119999995,-43.817272643999914],[-71.76184240799992,-43.82843475299993],[-71.75579626499987,-43.8345325719999],[-71.73688268999993,-43.84176727299987],[-71.72871781499992,-43.84621144599997],[-71.71579870699992,-43.858717141999875],[-71.65988480699991,-43.92630991599994],[-71.65926468999996,-43.93974578899997],[-71.66959997599994,-43.95979624399985],[-71.74525991399994,-44.04499811699992],[-71.76220414199992,-44.06407928499987],[-71.79569047099992,-44.08599009199983],[-71.83522294099996,-44.0943616739999],[-71.85873571799993,-44.10779754699995],[-71.84405961099995,-44.14531463599985],[-71.8124853119999,-44.18779266299997],[-71.80509558099996,-44.2051559449999],[-71.8062841389999,-44.22251922599983],[-71.82793656499987,-44.25207814599986],[-71.83181229699994,-44.27016489699987],[-71.82395747899992,-44.28680470799989],[-71.81165848799995,-44.30055063899992],[-71.80401037699995,-44.3148133349999],[-71.81041825399993,-44.33362355499982],[-71.8249910079999,-44.34065154999992],[-71.8475736089999,-44.348092955999846],[-71.86416174299993,-44.35915171299993],[-71.86059606999996,-44.37713511099993],[-71.82204545099998,-44.40318003399999],[-71.78070430599992,-44.40266326899987],[-71.7378128659999,-44.39336151200003],[-71.69435298699996,-44.39336151200003],[-71.64319331899989,-44.402559915999845],[-71.43783117699988,-44.40152638699986],[-71.28683264199994,-44.42333384199998],[-71.23500117999997,-44.42385060599983],[-71.20978308099993,-44.427571308999845],[-71.18632198099994,-44.43800994899988],[-71.17133581499988,-44.45216929099992],[-71.16565140899993,-44.46632863299996],[-71.16265417499991,-44.48141815199996],[-71.15541947499993,-44.498574727],[-71.14265539599997,-44.512320657999865],[-71.13061478799992,-44.52038218199995],[-71.12265661699996,-44.53030405699985],[-71.12239823399997,-44.54942433699985],[-71.13164831499998,-44.57061167399989],[-71.14735795199996,-44.58084360699996],[-71.16725337799997,-44.58415089899988],[-71.1888024499999,-44.584771015999934],[-71.1993961179999,-44.591695657999836],[-71.21340043099991,-44.6070952349999],[-71.23489782699994,-44.63882456399993],[-71.24063391099992,-44.65815154999988],[-71.23929032399994,-44.674377949999894],[-71.2310220949999,-44.70951792399994],[-71.23815344299993,-44.747861836999945],[-71.26280310099992,-44.77711069799999],[-71.29783972199994,-44.79561086000001],[-71.33597692899991,-44.80160532599996],[-71.37886836799996,-44.79189015700001],[-71.45710648599993,-44.75220265699993],[-71.4971040449999,-44.7429009],[-71.54040889499996,-44.750445658999865],[-71.63120438699994,-44.780004576999985],[-71.6726488859999,-44.77855763699999],[-71.73998327699988,-44.757680359],[-71.76266922999994,-44.75437306699992],[-71.78690547699992,-44.757266947],[-71.80101314299995,-44.76677541099989],[-71.81320878099986,-44.77855763699999],[-71.83139888499991,-44.78816945399991],[-71.85454992799991,-44.79095998099987],[-71.98761673999986,-44.77245981799993],[-72.00983760599989,-44.76553517599996],[-72.04781978399993,-44.75478647799992],[-72.07624182099994,-44.76078094399987],[-72.08874751899994,-44.78279510499995],[-72.07412308799988,-44.837055358999976],[-72.07484655799996,-44.85317840599997],[-72.08094437699992,-44.88656138099985],[-72.0735029709999,-44.90216766399988],[-72.0532974849999,-44.90681854299986],[-72.00983760599989,-44.90454477999984],[-71.96968501799998,-44.91529347799993],[-71.92948075399997,-44.93379363999996],[-71.88943151899988,-44.94722951299984],[-71.84974401899989,-44.94340545699998],[-71.82845332899993,-44.935240579999956],[-71.8056640219999,-44.92924611399985],[-71.78246130399992,-44.92738576299985],[-71.75987870299988,-44.93182993599994],[-71.74484086099991,-44.94061492999984],[-71.71864090999989,-44.96438608799998],[-71.70236283399994,-44.97368784599991],[-71.66169348199992,-44.9791655479999],[-71.62396968599995,-44.974928079999934],[-71.58872635899988,-44.978132018999915],[-71.55518835499996,-45.00583058699995],[-71.5151391199999,-45.06577524799994],[-71.49705236899987,-45.11166392],[-71.4871821699999,-45.12334279399988],[-71.4489416099999,-45.15899953199995],[-71.39540482599995,-45.18597463],[-71.36326208599993,-45.20881561299998],[-71.33861242799992,-45.234240416999825],[-71.31716670699988,-45.267209980999965],[-71.31153397699995,-45.29945607499984],[-71.33432328399996,-45.322813822999954],[-71.35075638899994,-45.332839049999905],[-71.37432084199992,-45.35919403099995],[-71.38935868399992,-45.37076955099991],[-71.40791052299994,-45.378727721999965],[-71.50831783099994,-45.40838999400001],[-71.51033321199989,-45.41841522199995],[-71.50159989499991,-45.43877573699988],[-71.4813427329999,-45.467921243999896],[-71.47813879399993,-45.4827007039999],[-71.48909419799992,-45.49851369199992],[-71.5258361409999,-45.51897755899988],[-71.56169958499993,-45.523938496999826],[-71.6392142329999,-45.52001108799986],[-71.6720804449999,-45.52362843799985],[-71.71373164899995,-45.53324025499993],[-71.74959509299988,-45.549259947999985],[-71.76509802299992,-45.5724109909999],[-71.76173905499991,-45.57623504700001],[-71.74654618399995,-45.58729380299994],[-71.74282548099987,-45.594321797999854],[-71.74525427299992,-45.600936380999855],[-71.75150712099992,-45.60662078899989],[-71.7588451739999,-45.61168507899987],[-71.76458125799988,-45.61654266399998],[-71.78240962799993,-45.64176076299994],[-71.78587194899987,-45.6530262239999],[-71.7879390059999,-45.66945932999987],[-71.78638871299998,-45.67690073599997],[-71.78271968599998,-45.682895202999916],[-71.7804975999999,-45.68940643399998],[-71.78364986199995,-45.69850148499995],[-71.79951452599997,-45.71710500099991],[-71.80178828999996,-45.724029642999895],[-71.7985326749999,-45.73994598399992],[-71.78907588799993,-45.750901387999974],[-71.7628759359999,-45.76867807999983],[-71.74902665199993,-45.78676483099984],[-71.75145544499989,-45.801854349999836],[-71.76008540899994,-45.81591033899994],[-71.76489131699994,-45.83099985799994],[-71.75848343899992,-45.84815643299991],[-71.74318721599994,-45.85756154399988],[-71.70086421799996,-45.86851694699994],[-71.66587927299994,-45.88401987699996],[-71.64133296799989,-45.905723978999944],[-71.62438309799998,-45.934146015999886],[-71.6122908129999,-45.97052622499987],[-71.6491631919999,-45.999414157999894],[-71.72349849499992,-46.05765268999992],[-71.73543575099986,-46.071191914999915],[-71.75595129499992,-46.100647482],[-71.7701623129999,-46.11263641399987],[-71.79227982599988,-46.121938171],[-71.81636104299994,-46.12679575599983],[-71.89051672399998,-46.13341034000001],[-71.90446936099997,-46.13630421899991],[-71.9126342369999,-46.142091979999975],[-71.91470129399994,-46.15232391299995],[-71.90948197499995,-46.15666473399984],[-71.9004902749999,-46.158938496999866],[-71.89129186999989,-46.16296925799986],[-71.84292272999994,-46.19614552799987],[-71.78277136199992,-46.22467091799983],[-71.76334102399994,-46.24451466899991],[-71.75925858599993,-46.27293670599984],[-71.76292761299993,-46.31851531999991],[-71.76158402599995,-46.35799611399993],[-71.7518688559999,-46.39303273499995],[-71.6848961999999,-46.51922658299995],[-71.68050370299991,-46.53814015699997],[-71.68577469999994,-46.553849791999866],[-71.69321610599988,-46.569146016],[-71.6955415449999,-46.58712941499999],[-71.68019364499995,-46.659579772999884],[-71.68716996299995,-46.690068867999955],[-71.7201912029999,-46.715597026],[-71.77600174999998,-46.738127949999836],[-71.79321000199994,-46.751047057999926],[-71.8195649829999,-46.77895233099982],[-71.83408605999995,-46.78856414799992],[-71.85579016199995,-46.79445526099984],[-71.90746659399989,-46.79486867199985],[-71.93413163199995,-46.79951955099999],[-71.95009964999988,-46.81398895299985],[-71.95071976799994,-46.82360076899994],[-71.94622391799992,-46.831145527999986],[-71.94002274599993,-46.83827687599994],[-71.93537186799998,-46.84613169399987],[-71.9361986899999,-46.854296569999974],[-71.94183142099993,-46.86091115299989],[-71.94865270999989,-46.86752573699998],[-71.95320023699992,-46.87476043699995],[-71.96963334199998,-46.93398162899993],[-71.97035681199989,-46.94845102999996],[-71.96022823199993,-46.9621969599999],[-71.92669022599992,-46.983797708999965],[-71.9148046469999,-46.99847381599987],[-71.9347000729999,-47.01439015699989],[-71.99996740799992,-47.042192076999854],[-72.00518672699994,-47.06193247499991],[-71.98430944899988,-47.08053598999995],[-71.92028234899996,-47.1067876179999],[-71.89346227999997,-47.12136037199994],[-71.87413529499993,-47.1425477099999],[-71.86255977499988,-47.16890268899988],[-71.86328324399997,-47.1966012569999],[-71.8806982019999,-47.221922708999884],[-71.91253088499988,-47.2345317589999],[-71.9458105059999,-47.22771046899986],[-72.00983760599989,-47.1981515509999],[-72.03030147399997,-47.19753143299994],[-72.04146358299991,-47.20373260499984],[-72.04513260999991,-47.21582488999992],[-72.04316890499987,-47.23287811299994],[-72.0367093509999,-47.24962127699982],[-72.03055985499992,-47.259646504999836],[-72.02942297399991,-47.26967173299993],[-72.03815629099998,-47.287035012999965],[-72.05794836499987,-47.311943053999926],[-72.14538488799994,-47.38180959099992],[-72.17055131099997,-47.407544454],[-72.18734615099993,-47.41746632899991],[-72.20915360599994,-47.42025685599995],[-72.26294877199987,-47.41384897899984],[-72.28816687099993,-47.414985860999934],[-72.32873286999995,-47.42645802799986],[-72.34661291599991,-47.43627654999992],[-72.36118566999997,-47.45095265699982],[-72.370487427,-47.474517109999816],[-72.35829178899988,-47.483405455999915],[-72.33751786299993,-47.48795298299996],[-72.32087805199993,-47.4983916219999],[-72.31963781799995,-47.51193084699996],[-72.33756953999995,-47.56567433699996],[-72.33994665599991,-47.58520802799997],[-72.34444250599992,-47.60226125099983],[-72.35172888199989,-47.61828094499997],[-72.36283931499992,-47.63502410899983],[-72.45730383299988,-47.74912567199992],[-72.47440873199994,-47.78281870599997],[-72.50045365499992,-47.85289194799991],[-72.52422481299996,-47.882657571999815],[-72.54391353399993,-47.914800312999844],[-72.53528356999996,-47.94580617299986],[-72.50944535399995,-47.972987975999935],[-72.47745764199996,-47.993761901999804],[-72.45611527599996,-48.00109995599989],[-72.43689164299992,-48.00420054099992],[-72.41916662699992,-48.00957488999998],[-72.40257849099991,-48.024147643999854],[-72.3988577879999,-48.03324269599992],[-72.3977725829999,-48.042337747999895],[-72.39544714399997,-48.05091603599992],[-72.38800573699987,-48.057840677999906],[-72.37705033399996,-48.06218149799989],[-72.34304724199991,-48.07044972699983],[-72.33322871999988,-48.09081024199995],[-72.30950923699993,-48.21121632899988],[-72.31152461799988,-48.230956725999846],[-72.3241336669999,-48.268577167999865],[-72.3256322839999,-48.28552703899987],[-72.3175707599999,-48.29896291099992],[-72.30372147699995,-48.31601613399994],[-72.29509151199991,-48.33327606199994],[-72.30232621299986,-48.347538757],[-72.31540035099994,-48.35032928399997],[-72.34485591699993,-48.34371470199997],[-72.35865352399989,-48.342991230999885],[-72.37141760299994,-48.34640187599982],[-72.37715368699992,-48.35032928399997],[-72.38867753099991,-48.36428192199996],[-72.41673783399995,-48.39115366599995],[-72.43311926299992,-48.40035207099987],[-72.49647456899993,-48.415131530999886],[-72.53786739199998,-48.43125457699995],[-72.57677974399994,-48.45213185699984],[-72.61471024599987,-48.51000946099987],[-72.60659704699995,-48.56096242299991],[-72.58422115099995,-48.61594614699984],[-72.57801997899989,-48.721882833],[-72.58215409399992,-48.760536803999834],[-72.59233435099988,-48.791129251999934],[-72.61879268499986,-48.81965464199989],[-72.67196773299992,-48.86295949299995],[-72.74291947499998,-48.91380910299996],[-72.78121171099988,-48.93385955799991],[-72.82492997299997,-48.94450490299991],[-72.9222366939999,-48.952256367999915],[-72.96962398299988,-48.964348652999895],[-73.00972489499989,-48.99039357499997],[-73.0174763599999,-48.998248392999905],[-73.01757971199993,-48.998248392999905],[-73.07855790299999,-49.05870981899994],[-73.0922521569999,-49.08103403699999],[-73.09509436099997,-49.095813497],[-73.0948359789999,-49.10873260499992],[-73.09710974099991,-49.12134165499995],[-73.10718664599995,-49.13488087999993],[-73.17131709799989,-49.18934783899984],[-73.18433955999993,-49.214255879999904],[-73.18315100099991,-49.23906056699994],[-73.17044785899992,-49.25087001999997],[-73.16258378099991,-49.25818084699993],[-73.09762650599995,-49.26655242899999],[-73.09824662299994,-49.2727536009999],[-73.13064774599992,-49.278748066999924],[-73.14129309199993,-49.285569355999876],[-73.14501379499993,-49.30365610799998],[-73.45786291499994,-49.30768686899998],[-73.47111791999995,-49.31719533299996],[-73.47047196499997,-49.34220672599987],[-73.46204870599988,-49.374969583999956],[-73.46672542399995,-49.38757863299989],[-73.48380448499998,-49.40070444699987],[-73.52227758799995,-49.416724141999914],[-73.5404418549999,-49.42778289799991],[-73.5511388759999,-49.44400929699984],[-73.55072546499989,-49.46323292999995],[-73.54434342499994,-49.47759897899995],[-73.54258642699995,-49.49103485099999],[-73.5559447839999,-49.508088073000025],[-73.58658890799992,-49.52999888099998],[-73.58803584899991,-49.54054087299986],[-73.57555598999991,-49.55924774199985],[-73.5621976319999,-49.571753437999845],[-73.53294877199994,-49.59397430499997],[-73.52111486899992,-49.608960469999936],[-73.5181951499999,-49.62849416099995],[-73.5280911869999,-49.64441050199997],[-73.54072607499995,-49.65950001999988],[-73.546384644,-49.67675994899987],[-73.53951167899993,-49.692676288999806],[-73.52478389499993,-49.70600880999991],[-73.4926153159999,-49.72781626400002],[-73.46509761599992,-49.75995900499988],[-73.46297888199993,-49.787140807999954],[-73.48163407399991,-49.81111867299996],[-73.53449906399996,-49.84760223399998],[-73.53883988499993,-49.86155487099988],[-73.53827144399989,-49.87674774199991],[-73.5419404699999,-49.89452443499984],[-73.55398107999993,-49.90806365999982],[-73.56839880399988,-49.92005259199988],[-73.57273962499994,-49.932351582999914],[-73.55444616799988,-49.94713104299993],[-73.50021175199996,-49.97865366699989],[-73.48747351099989,-49.99115936299989],[-73.47858516499988,-50.00945281999996],[-73.48075557499996,-50.02268198599995],[-73.53150183199995,-50.08314341199998],[-73.54147538199996,-50.11373586099999],[-73.53057165599998,-50.14081431099995],[-73.4058247479999,-50.21698537199995],[-73.36510371999995,-50.23197153799983],[-73.34634517499994,-50.2436504109999],[-73.32293575099999,-50.26835174599991],[-73.30143835499993,-50.29956431099989],[-73.2843334559999,-50.33305063899998],[-73.27420487499995,-50.36446990999983],[-73.27275793499996,-50.38472707099984],[-73.27575516799996,-50.42555145199983],[-73.27404984599991,-50.44518849699986],[-73.26180253199996,-50.49903533899989],[-73.2618542079999,-50.55660288499992],[-73.25761674099994,-50.57303599099998],[-73.24490433799988,-50.58946909599995],[-73.20268469299992,-50.62646942199982],[-73.19224605399998,-50.64135223399986],[-73.18526973599998,-50.67845591199993],[-73.18671667499987,-50.716696471999924],[-73.17772497599992,-50.74945932999984],[-73.13948441599993,-50.77023325599987],[-73.09607621299995,-50.77064666699989],[-73.05173783399991,-50.7578309119999],[-73.01008662899997,-50.736436868999974],[-72.9384114179999,-50.685380554],[-72.90285803299994,-50.666570333],[-72.77842118399994,-50.619648131999945],[-72.75578690599988,-50.61644419399989],[-72.73351436399994,-50.62429901099992],[-72.6826647549999,-50.65954233799999],[-72.66261429899994,-50.66781056699994],[-72.61812089099996,-50.66677703799996],[-72.54913285399994,-50.61510060599992],[-72.50598303299992,-50.60125132199995],[-72.38335485899998,-50.620268249999924],[-72.34521765199992,-50.637321471999954],[-72.32191158099991,-50.64155893899999],[-72.3028429779999,-50.648896993999905],[-72.30491003399996,-50.664916686999945],[-72.34098018399996,-50.71514617899999],[-72.347698121,-50.72899546299996],[-72.34738806199991,-50.74315480599991],[-72.3381379809999,-50.760621439999866],[-72.31116288299998,-50.7887334179999],[-72.28392940299997,-50.81064422599986],[-72.26346553599993,-50.836275736999916],[-72.2567475999999,-50.87513641399997],[-72.2659460049999,-50.96071258499992],[-72.2770564379999,-51.007324727999894],[-72.29343786699987,-51.02923553499994],[-72.32248002199995,-51.032646178999876],[-72.33860306799994,-51.03698699899986],[-72.35074702999992,-51.04670216799998],[-72.36816198799997,-51.066649272],[-72.39653234899994,-51.09207407599992],[-72.40459387299995,-51.10582000699995],[-72.40309525599994,-51.12607716899986],[-72.38221797799989,-51.160597025999934],[-72.34945511899988,-51.18390309699996],[-72.27395585099995,-51.21676930799999],[-72.25757442199992,-51.23061859099987],[-72.25881465699987,-51.24519134599992],[-72.27049353099991,-51.25955739299992],[-72.3134366459999,-51.298004658999965],[-72.32046464099992,-51.31257741299992],[-72.32330684499996,-51.33448822099989],[-72.32356522599994,-51.39081553099998],[-72.32899125199992,-51.40879892999997],[-72.3344689539999,-51.41634368899992],[-72.34170365399987,-51.42295827199983],[-72.34831823699997,-51.430503030999965],[-72.35172888199989,-51.44042490599996],[-72.35105708799992,-51.449416606],[-72.34909338499997,-51.459028421999825],[-72.34831823699997,-51.468330179999946],[-72.35121211799995,-51.47597829199983],[-72.42231888899997,-51.522383727999845],[-72.45006913299991,-51.55266611799987],[-72.42914017799993,-51.576023864999904],[-72.40201005099996,-51.57974456799983],[-72.37570674699992,-51.57953786199996],[-72.35152217599995,-51.58346527099993],[-72.33090327999994,-51.59938161199995],[-72.32279007999995,-51.61622812899984],[-72.3141601159999,-51.67152191199995],[-72.30072424399994,-51.69146901499988],[-72.28113887599991,-51.7014942419999],[-72.18708776899987,-51.720717874999835],[-72.14212927199995,-51.73942474299991],[-72.07262447099995,-51.77859547899995],[-72.00983760599989,-51.82779144299992],[-71.98172562699997,-51.84494801899997],[-71.95847123199994,-51.86799570699985],[-71.94849768099994,-51.89600433299986],[-71.96022823199993,-51.92794036899993],[-71.9652408449999,-51.970625101999836],[-71.91769852799987,-51.99005543999991],[-71.8376000569999,-51.99077891099999],[-71.61213578299996,-51.99274261400002],[-71.38661983299997,-51.994706318999874],[-71.1611555579999,-51.99677337700002],[-70.93569128499996,-51.99873708099996],[-70.71014949599996,-52.0007007849999],[-70.4847110599999,-52.0026644899999],[-70.25924678599993,-52.00462819399987],[-70.0337566739999,-52.00659189899989],[-69.95275386599988,-52.00741872200001],[-69.83332963099994,-52.03935475699999],[-69.66393428599991,-52.08472666499992],[-69.48528885999988,-52.1324756869999],[-69.2122564289999,-52.13795338999989],[-69.00756608099996,-52.17908782999987],[-68.85866044199992,-52.233244730999886],[-68.82049739699994,-52.24316660599988],[-68.62172399899993,-52.263630472999935],[-68.60358557099991,-52.26797129299992],[-68.57314815299992,-52.28027028399995],[-68.55681839999991,-52.28368092899979],[-68.47780513499993,-52.295359801999865],[-68.45449906399998,-52.2999073279999],[-68.44803950999994,-52.310656026],[-68.44844041907211,-52.34688816023456],[-68.44860973299987,-52.346617015999854],[-68.47167491399995,-52.337225984999904],[-68.56546333799994,-52.340929181999975],[-68.71276452599992,-52.306908268999976],[-68.78188573699988,-52.31330547699993],[-68.82164466099991,-52.30364348799994],[-68.89846139999986,-52.30353719899994],[-68.94737708199992,-52.28720468499986],[-68.96568762899997,-52.28378671699985],[-69.00812740799995,-52.26726653399996],[-69.08604895699992,-52.22519296699999],[-69.13011633999992,-52.20810312299995],[-69.18537350199995,-52.19890715899989],[-69.23470812199992,-52.20314306999998],[-69.34621833099993,-52.24456519699987],[-69.40310363099991,-52.24599134699992],[-69.44200598899994,-52.252129815999865],[-69.45181230399987,-52.26034921699987],[-69.47093665299984,-52.2727190079999],[-69.47960364499993,-52.28378671699985],[-69.4824926419999,-52.29045989399999],[-69.48949133999986,-52.366143487999885],[-69.49693762899994,-52.385349216999934],[-69.51744544199988,-52.39299895599987],[-69.54531816299993,-52.3993466129999],[-69.55528723899994,-52.41480885199982],[-69.55736243399986,-52.43466562299992],[-69.56151282499991,-52.45387135199997],[-69.5748591789999,-52.46795012799992],[-69.61632239499991,-52.488051039999874],[-69.63385982999995,-52.49920012799989],[-69.65453040299988,-52.51539478999994],[-69.67235149599992,-52.53085653799992],[-69.71557905499989,-52.535439929999896],[-69.77981956099998,-52.52261401399987],[-69.81243476299991,-52.50608700199986],[-69.82853882499991,-52.49178794899989],[-69.84657959699987,-52.48654268599995],[-69.8717361359999,-52.49632505699995],[-69.91161048099988,-52.510349217],[-69.94568934699987,-52.531094213999864],[-70.0834158189999,-52.57522103399999],[-70.15198189399985,-52.5865083189998],[-70.18032668699996,-52.60296893599992],[-70.19937089799987,-52.62167734199994],[-70.20771568199987,-52.65100346799989],[-70.24212928599992,-52.639388501999875],[-70.27472896999984,-52.639418226999936],[-70.29165206399995,-52.63460857699989],[-70.32179292399991,-52.63814717200002],[-70.33055693199992,-52.64504038999998],[-70.33300686399986,-52.660114607999866],[-70.36613923799987,-52.65553092599986],[-70.38351465499991,-52.671387167999974],[-70.51773438899988,-52.723254926999935],[-70.54823529899997,-52.72272184399998],[-70.54978728999995,-52.702743204000015],[-70.52363005299992,-52.68785921499997],[-70.5017732229999,-52.67749491899987],[-70.50598845599987,-52.66128854099992],[-70.52587829099986,-52.65992706799997],[-70.54616250499987,-52.666622140999976],[-70.56792451999986,-52.669250834999865],[-70.58303941299994,-52.67199926599999],[-70.59216323899997,-52.687965814999906],[-70.56957641399995,-52.70249632799984],[-70.58682268699997,-52.714283523999896],[-70.60800327399991,-52.70482225399991],[-70.63318248499994,-52.708383212999934],[-70.65883955599989,-52.72101341899993],[-70.68402282799988,-52.724570388999894],[-70.69817809699995,-52.739432125999876],[-70.71641305299997,-52.737063819999854],[-70.71563213699991,-52.72295426299993],[-70.72345943899998,-52.70427825299993],[-70.73403886599993,-52.70142994599989],[-70.74445553299992,-52.70794036299988],[-70.7545466789999,-52.71689218499999],[-70.76439368399991,-52.72136809699996],[-70.80699622299994,-52.72779713299989],[-70.8227432929999,-52.728204033999894],[-70.83438066299992,-52.725274346999875],[-70.84333248599995,-52.72079843499991],[-70.8522029289999,-52.71843840899986],[-70.86375891799992,-52.72136809699996],[-70.85684160099991,-52.73398202899986],[-70.8470352859999,-52.73739999799995],[-70.83531653599991,-52.73796965899993],[-70.80577551999994,-52.747735283999965],[-70.80231686099995,-52.749281507999825],[-70.80142167899996,-52.753350518999966],[-70.80329342399992,-52.76588307099988],[-70.80231686099995,-52.76978932099996],[-70.79149329299995,-52.77605559699992],[-70.78490149599989,-52.776299737999956],[-70.77668209499987,-52.77507903399985],[-70.7427465489999,-52.778415622999965],[-70.73884029899992,-52.78386809699991],[-70.74767005099989,-52.797051690999865],[-70.75633704299987,-52.801039320999934],[-70.79548092399992,-52.810723565999986],[-70.80626380099991,-52.816827080999886],[-70.81212317599997,-52.821384373000015],[-70.8227432929999,-52.838067315999865],[-70.82681230399986,-52.8474260399999],[-70.83218339799993,-52.86581796699994],[-70.83702551999991,-52.87273528399985],[-70.84124811099989,-52.90342732499993],[-70.85969622399995,-52.90180881099995],[-70.8782138499999,-52.901428372],[-70.88921476599992,-52.91362639399995],[-70.86054074099992,-52.91670158799984],[-70.83604888099993,-52.92092823899988],[-70.81045488199996,-52.92717864399985],[-70.80870520699993,-52.94207122199999],[-70.80915279899993,-52.96160247199988],[-70.81151282499991,-52.97926197699989],[-70.81688391799989,-52.99244557099985],[-70.86611894399987,-53.04973723799988],[-70.87059485599994,-53.061211846999925],[-70.87515214799988,-53.08912525799996],[-70.8871150379999,-53.11386484199985],[-70.93879146999987,-53.17685312299996],[-70.95055091099994,-53.197523695999884],[-70.95759029899992,-53.22283294099992],[-70.95909583199995,-53.302666924999855],[-70.96373450399989,-53.32675546699987],[-70.98692786399991,-53.36419036299982],[-70.99274654899997,-53.382989190999865],[-70.9947810539999,-53.40439218499991],[-70.9934789699999,-53.427015882999875],[-70.98289954299995,-53.46770598799995],[-70.94953365799998,-53.54697031],[-70.93944251199991,-53.592217705999936],[-70.94017493399994,-53.61394622199991],[-70.94562740799998,-53.63884856599994],[-70.95555579299989,-53.65935637799999],[-70.96987870999996,-53.66790129999983],[-70.97948157499994,-53.67929452899989],[-70.97838294199991,-53.70549895599992],[-70.97398841099991,-53.7349585919999],[-70.97362219999991,-53.75603606599984],[-70.99583899599986,-53.787286065999986],[-71.03425045499995,-53.8097470029999],[-71.22874915299985,-53.87468840899987],[-71.28502356699994,-53.886000257999946],[-71.33604895699992,-53.879571221999846],[-71.42975826699983,-53.842461846999925],[-71.47984778599994,-53.82935963299995],[-71.64464270699992,-53.82366301899988],[-71.72032630099989,-53.79762135199981],[-71.73005123599995,-53.79216887799987],[-71.74547278599997,-53.78134530999996],[-71.75446529899988,-53.776543877999885],[-71.81607011599993,-53.76018645599987],[-71.83755449099996,-53.74570077899992],[-71.84752356699993,-53.74236419099989],[-71.86514238199987,-53.73316822699983],[-71.87441972599991,-53.696547132999896],[-71.89159094999985,-53.694024346999875],[-71.90245520699995,-53.701836846999875],[-71.91746985599988,-53.72421640399998],[-71.92943274599988,-53.728773695999934],[-71.94302324099996,-53.72437916499986],[-71.96178137899992,-53.70574309699995],[-71.97728430899991,-53.69719817499994],[-71.99233964799993,-53.678399346999896],[-72.00145423099994,-53.674086195999806],[-72.01553300699987,-53.67603932099985],[-72.01805579299989,-53.68092213299991],[-72.01744544199994,-53.687432549999905],[-72.02196204299987,-53.694024346999875],[-72.04246985599994,-53.706801039999824],[-72.05345618399991,-53.706963799999976],[-72.06631425699993,-53.69768645599993],[-72.07730058499988,-53.69166432099983],[-72.10387122299994,-53.689060153999925],[-72.1144099599999,-53.684014580999985],[-72.18700110599988,-53.62639739399984],[-72.22826087099995,-53.60035572699995],[-72.25177975199989,-53.589288018999916],[-72.28408769399994,-53.581231377999885],[-72.28844153599991,-53.57236093500002],[-72.29084225199995,-53.56129322699981],[-72.29694576699987,-53.55120208099993],[-72.30650794199994,-53.54461028399995],[-72.32567298099991,-53.53720468499996],[-72.33722896999993,-53.53069426899987],[-72.38923092399989,-53.484958591999956],[-72.39806067599993,-53.47893645599994],[-72.40636145699992,-53.45916106599993],[-72.4435929029999,-53.42131926899997],[-72.45327714799987,-53.407321873000015],[-72.44489498599992,-53.385918877999885],[-72.42259680899988,-53.37346770599996],[-72.40648352799991,-53.36158619599991],[-72.41608639199987,-53.341729425],[-72.42345130099997,-53.33180103999981],[-72.42345130099997,-53.323988539999824],[-72.41881262899994,-53.317315362999864],[-72.41234290299994,-53.31096770599983],[-72.40977942599994,-53.31080494599987],[-72.39183508999989,-53.30413176899991],[-72.30125891799995,-53.248793226999915],[-72.28229732999993,-53.242771092],[-72.15908769399994,-53.25644296699994],[-72.13703365799994,-53.25497812299988],[-72.11461341099994,-53.25676848799996],[-72.09723873599995,-53.26775481599983],[-72.08043372299993,-53.32903411299994],[-72.07730058499988,-53.35027434699984],[-72.08340410099986,-53.37249114399998],[-72.09064693899998,-53.38274504999982],[-72.09959876199991,-53.39006926899983],[-72.10993404899992,-53.391289971999846],[-72.13573157499985,-53.371270440999965],[-72.14268958199993,-53.37607187299986],[-72.14854895699989,-53.396661065999986],[-72.16869055899994,-53.411553643999945],[-72.21768144399991,-53.424086195999855],[-72.24168860599994,-53.434502862999935],[-72.21141516799995,-53.441989841999906],[-72.18248450399994,-53.43840911299984],[-72.15392005099994,-53.43108489399983],[-72.10521399599992,-53.425957940999915],[-72.09251868399986,-53.42262135199997],[-72.06973222599993,-53.407321873000015],[-72.05597896999993,-53.394219658999866],[-72.04893958199993,-53.38982512799997],[-72.04157467399995,-53.38982512799997],[-72.02285722599987,-53.39519622199993],[-72.01512610599988,-53.39299895599985],[-72.00446529899995,-53.35027434699984],[-72.01805579299989,-53.29583098799993],[-72.02171790299994,-53.24732838299986],[-71.98094641799989,-53.22226327899986],[-71.96495520699997,-53.22332122199991],[-71.93927975199992,-53.23284270599991],[-71.92577063699994,-53.23528411299985],[-71.91368567599994,-53.233330987999985],[-71.89329993399984,-53.22429778399989],[-71.88166256399995,-53.22226327899986],[-71.8556208979999,-53.225355726999936],[-71.84178626199989,-53.23503997199999],[-71.83495032499988,-53.252048434999956],[-71.81798255099989,-53.342217705999985],[-71.81651770699992,-53.362481377999906],[-71.81061764199988,-53.3793270809999],[-71.79841061099991,-53.39820728999984],[-71.78844153599994,-53.419040622999916],[-71.78917395699995,-53.44133879999986],[-71.80308997299994,-53.45680103999988],[-71.82795162699998,-53.47234465899997],[-71.85472571499989,-53.48430754999991],[-71.87450110599991,-53.489190362999885],[-71.90119381399992,-53.49179452899988],[-71.96727454299993,-53.51653411299995],[-71.9938044909999,-53.52223072699984],[-72.00413977799991,-53.52825286299985],[-72.00829016799995,-53.54070403399986],[-72.00796464799993,-53.554294529],[-72.00544186099992,-53.561618748],[-71.99836178299995,-53.56438567499988],[-71.98444576699987,-53.56487395599987],[-71.96275794199987,-53.56023528399994],[-71.92003333199997,-53.53834400799981],[-71.89842688699989,-53.53069426899987],[-71.84178626199989,-53.52646249799995],[-71.81419837099986,-53.520684502999984],[-71.79259192599997,-53.506280205999836],[-71.75999915299991,-53.47226327899998],[-71.75446529899988,-53.462497653999954],[-71.75523841099991,-53.45086028399986],[-71.76537024599986,-53.431573174999826],[-71.76866614499991,-53.42083098799999],[-71.76235917899994,-53.398695570999834],[-71.76056881399997,-53.38534921699991],[-71.76524817599989,-53.3793270809999],[-71.76764889199984,-53.374200127999984],[-71.77550208199992,-53.341729425],[-71.77318274599986,-53.319268487999906],[-71.74242102799988,-53.22340260199989],[-71.72862708199997,-53.212090753],[-71.69212805899991,-53.207126559999864],[-71.67931067599989,-53.20273202899997],[-71.67186438699991,-53.20110442499995],[-71.6451716789999,-53.20110442499995],[-71.62999426999991,-53.19801197699987],[-71.62100175699987,-53.19378020599994],[-71.58470618399988,-53.166924737999956],[-71.57266191299996,-53.162041924999976],[-71.54360917899989,-53.15797291499993],[-71.47984778599994,-53.13551197699992],[-71.4671117829999,-53.13290781000002],[-71.42015540299985,-53.1343726539999],[-71.40493730399987,-53.13290781000002],[-71.38292395699997,-53.12639739399994],[-71.36021887899992,-53.116143487999906],[-71.33853105399996,-53.103122653999925],[-71.31965084499993,-53.088148695999806],[-71.31183834499993,-53.07878997199995],[-71.29775956899988,-53.055352471999974],[-71.28892981699994,-53.044122002999885],[-71.27940833199992,-53.0367164039999],[-71.26170813699991,-53.025974216999884],[-71.25413977799988,-53.01677825299999],[-71.2479548819999,-52.997653903999925],[-71.24339758999986,-52.97486744599982],[-71.23485266799995,-52.955824476999915],[-71.19858154699992,-52.92390359199994],[-71.17247899399987,-52.930656388999914],[-71.11876433599986,-52.919635769999964],[-71.1204931119999,-52.88028949699988],[-71.14874283399986,-52.842785498999895],[-71.16928539699994,-52.81281300599985],[-71.21015453799993,-52.81551970599998],[-71.24918179699992,-52.78875586399994],[-71.30927851899986,-52.80571263399998],[-71.35211477999988,-52.807111447999894],[-71.36888587099992,-52.783949476999894],[-71.38117428299998,-52.768243096999925],[-71.39879309799991,-52.728204033999894],[-71.40233313699989,-52.7510718729999],[-71.40200761599996,-52.77044036299983],[-71.40428626199994,-52.788506768999845],[-71.3999093489999,-52.82062216099983],[-71.39862915399993,-52.83171545899985],[-71.42142735999994,-52.837276921999845],[-71.44745309899994,-52.83045963699986],[-71.46751868399991,-52.825616143999945],[-71.48395748599988,-52.82488372199992],[-71.49095618399988,-52.82822030999994],[-71.50055904899995,-52.838636976999844],[-71.50597083199989,-52.84343840899992],[-71.51138261599992,-52.84547291499985],[-71.53080014399984,-52.86665627199993],[-71.57719946699987,-52.88998026299985],[-71.61198780999987,-52.89272641499987],[-71.64222483799995,-52.91645046499993],[-71.66671098099994,-52.91698514299994],[-71.70465205099993,-52.9343414179999],[-71.73577311699998,-52.94206748799985],[-71.77839394699993,-52.9666621],[-71.83878231499995,-52.9833530019999],[-71.8627263969999,-53.00236944499992],[-71.90623283899995,-53.010888517999845],[-71.92308508999989,-53.03427499799986],[-71.99522864499997,-53.09124114399988],[-72.0137426419999,-53.118584893999945],[-72.02196204299987,-53.12542083099987],[-72.03335527299996,-53.12639739399994],[-72.0460505849999,-53.12297942499984],[-72.05964107999993,-53.121758721999825],[-72.08560136599996,-53.1343726539999],[-72.10155188699989,-53.1334774719999],[-72.11705481699987,-53.12859465899993],[-72.13670813699993,-53.11598072699986],[-72.15566972599993,-53.10662200299983],[-72.1652725899999,-53.09929778399999],[-72.17300370999993,-53.09059010199983],[-72.18443762899989,-53.073988539999874],[-72.19326738199993,-53.064629815999844],[-72.20441646999987,-53.055108330999936],[-72.21495520699992,-53.048760675],[-72.22667395699992,-53.045179945999934],[-72.25413977799985,-53.04192473799989],[-72.27574622299994,-53.03215911299986],[-72.28600012899997,-53.02988046699997],[-72.3136287099999,-53.03337981599987],[-72.30654863199993,-53.04290129999987],[-72.28498287699992,-53.05624765399997],[-72.26895097599993,-53.07146575299994],[-72.2884822259999,-53.07154713299993],[-72.30752519399991,-53.06853606599992],[-72.36412512899992,-53.052015882999854],[-72.38003495999993,-53.05038827900002],[-72.49478105399996,-53.055922132999946],[-72.53498287699995,-53.06454843499995],[-72.56314042899993,-53.07887135199993],[-72.54279537699995,-53.08554452899989],[-72.5201716789999,-53.08196379999983],[-72.49681555899988,-53.07488372199986],[-72.47443600199998,-53.07146575299994],[-72.4332576159999,-53.083103122999866],[-72.41270911399997,-53.08538176899993],[-72.39500891799986,-53.075127862999906],[-72.3670955069999,-53.068129164999924],[-72.32164466099994,-53.13209400799983],[-72.22712154899992,-53.15016041499994],[-72.21003170499995,-53.1568335919999],[-72.19749915299987,-53.169528903999954],[-72.19139563699987,-53.1805966129999],[-72.19367428299995,-53.19085051899992],[-72.20628821499992,-53.20110442499995],[-72.22557532499988,-53.20598723799992],[-72.25348873599988,-53.20680103999993],[-72.27855383999992,-53.20224374799998],[-72.29873613199993,-53.182549737999935],[-72.32046464799988,-53.179864190999865],[-72.3645727199999,-53.180759372999866],[-72.3645727199999,-53.18759530999997],[-72.3282771479999,-53.191176039999945],[-72.31578528599988,-53.20671965899986],[-72.32762610599985,-53.221286716999884],[-72.3645727199999,-53.22226327899986],[-72.45205644399994,-53.18962981599991],[-72.48802649599992,-53.18759530999997],[-72.45006262899992,-53.20476653399999],[-72.43529212099992,-53.21640390399991],[-72.44029700399997,-53.228448174999826],[-72.46198482999993,-53.22991301899989],[-72.48509680899991,-53.21754322699994],[-72.51537024599989,-53.194268487999835],[-72.53819739499991,-53.197360935],[-72.53709876199989,-53.207452080999886],[-72.52163652299994,-53.21949635199981],[-72.50169837099986,-53.228448174999826],[-72.45128333199992,-53.23552825299998],[-72.42662512899994,-53.24228280999992],[-72.41234290299994,-53.25644296699994],[-72.42568925699996,-53.265069268999945],[-72.43521074099992,-53.27467213299992],[-72.44701087099992,-53.281914971999946],[-72.4669490229999,-53.283135674999954],[-72.48420162699992,-53.276543877999984],[-72.50031490799998,-53.26677825299995],[-72.51695716099994,-53.261895440999886],[-72.53587805899986,-53.270114841999884],[-72.51549231699997,-53.28630950299984],[-72.50377356699988,-53.313897393999945],[-72.50475012899994,-53.34368254999986],[-72.5222061839999,-53.366306248],[-72.55825761599986,-53.37460702899999],[-72.59349524599992,-53.36402760199994],[-72.6238500639999,-53.34254322699983],[-72.64513098899997,-53.31780364399985],[-72.65147864499991,-53.34075286299984],[-72.63727779899989,-53.358493748000015],[-72.59113521999987,-53.38681405999988],[-72.57872473899994,-53.399183851999815],[-72.5702205069999,-53.41008879999989],[-72.55923417899996,-53.41790129999988],[-72.53929602799988,-53.42083098799999],[-72.53575598899988,-53.41773853999992],[-72.5314021479999,-53.40390390399992],[-72.52965247299987,-53.40048593499999],[-72.5222061839999,-53.39950937299984],[-72.49828040299985,-53.40048593499999],[-72.48346920499998,-53.40911223799991],[-72.38231360599988,-53.523858330999865],[-72.3645727199999,-53.53687916499985],[-72.52253170499995,-53.544366143999824],[-72.53172766799992,-53.54208749799993],[-72.53722083199995,-53.53655364399983],[-72.5421443349999,-53.52955494599985],[-72.54954993399988,-53.5232072899999],[-72.57135982999995,-53.515313408999845],[-72.61676998599992,-53.50741952899987],[-72.63890540299991,-53.496677341999856],[-72.6462296209999,-53.4882138],[-72.65086829299995,-53.479099217],[-72.65721594999988,-53.47161223799986],[-72.66966712099989,-53.468682549999926],[-72.71198482999989,-53.46461353999987],[-72.72142493399991,-53.462497653999954],[-72.73306230399993,-53.44915129999985],[-72.73131262899992,-53.41773853999992],[-72.74132239499991,-53.40048593499999],[-72.76317298099985,-53.38779062299994],[-72.76976477799994,-53.399021091999856],[-72.77086341099988,-53.41936614399994],[-72.77603105399987,-53.434502862999935],[-72.79466712099985,-53.44011809699984],[-72.80068925699987,-53.42546965899984],[-72.80280514199988,-53.403497002999906],[-72.80955969999991,-53.38681405999988],[-72.82843990799995,-53.38437265399984],[-72.85680091099988,-53.38534921699991],[-72.87730872299994,-53.38193124799999],[-72.87230383999989,-53.366306248],[-72.88719641799986,-53.36012135199986],[-72.94367428299998,-53.35263437299989],[-73.07835852799991,-53.286390882999825],[-73.14118404899997,-53.268649998],[-73.17137610599988,-53.25644296699994],[-73.19908606699997,-53.240817966999956],[-73.22109941299988,-53.22226327899986],[-73.2521052729999,-53.184177341999956],[-73.26455644399991,-53.175957940999965],[-73.29279537699989,-53.165704033999845],[-73.30304928299991,-53.15341562299998],[-73.18236243399994,-53.185804945999806],[-73.13914954299993,-53.18759530999997],[-73.11888587099992,-53.18271249799991],[-73.0848282539999,-53.16969166499983],[-72.98094641799986,-53.16025155999991],[-72.95636959499984,-53.16057708099993],[-72.94050045499992,-53.16643645599988],[-72.92870032499985,-53.17685312299996],[-72.91637122299991,-53.19101327899989],[-72.90607662699998,-53.19540780999996],[-72.87950598899994,-53.193617445999976],[-72.86856035099987,-53.19768645599985],[-72.86070716099988,-53.20322030999995],[-72.77611243399986,-53.233086846999946],[-72.75869706899988,-53.23528411299985],[-72.75234941299996,-53.242120049999954],[-72.75690670499988,-53.257582289999974],[-72.76659094999988,-53.273858330999914],[-72.77603105399987,-53.283135674999954],[-72.76764889199993,-53.290134372999944],[-72.75682532499991,-53.294854424999855],[-72.74522864499991,-53.293633721999846],[-72.73448645699989,-53.283135674999954],[-72.71955318899995,-53.292575778999975],[-72.7132869129999,-53.29029713299991],[-72.71519934799994,-53.28036874799991],[-72.72451738199989,-53.26669687299996],[-72.71593176999988,-53.26230234199989],[-72.6998591789999,-53.251397393999824],[-72.68919837099989,-53.24032968499988],[-72.69664466099994,-53.23528411299985],[-72.72276770699992,-53.228448174999826],[-72.75438391799989,-53.212009373],[-72.78209387899997,-53.19158294099994],[-72.79596920499995,-53.173272393999895],[-72.77818762899997,-53.173028252999856],[-72.72765051999995,-53.18759530999997],[-72.73790442599991,-53.169528903999954],[-72.75487219999988,-53.15553150799981],[-72.76329505099991,-53.14568450299997],[-72.74815833199992,-53.13909270599999],[-72.72679602799988,-53.13958098799989],[-72.65257727799984,-53.15341562299998],[-72.66071529899995,-53.141778252999885],[-72.6752009759999,-53.13551197699992],[-72.69212805899988,-53.131280206],[-72.7071833979999,-53.12542083099987],[-72.71393795499995,-53.10849374799989],[-72.71397864499994,-53.105564059999956],[-72.72545325399989,-53.10515715899995],[-72.73102779899989,-53.109470309999864],[-72.73485266799992,-53.11492278399999],[-72.74132239499991,-53.118584893999945],[-72.78750566299993,-53.115817966999884],[-72.80337480399996,-53.118584893999945],[-72.82974199099993,-53.142347914999945],[-72.84508216099991,-53.15016041499994],[-72.91218014199987,-53.118829033999894],[-72.93374589799987,-53.104750257999946],[-72.93004309799994,-53.088148695999806],[-72.89102128799996,-53.05681731599985],[-72.87608801999991,-53.036390882999875],[-72.87848873599995,-53.01677825299999],[-72.89488684799997,-53.03020598799999],[-72.90453040299994,-53.03630950299989],[-72.91323808499993,-53.03728606599995],[-72.92076575399989,-53.03248463299997],[-72.92642167899987,-53.02459075299999],[-72.92796790299991,-53.015313408999944],[-72.92292232999998,-53.006280205999936],[-72.9172257149999,-52.989434502999934],[-72.92601477799988,-52.9701473939999],[-72.93932044199988,-52.95086028399996],[-72.94737708199992,-52.934258722],[-72.94766191299996,-52.92636484199984],[-72.94595292899996,-52.920342705999836],[-72.93993079299995,-52.90691497199993],[-72.93472245999996,-52.90081145599994],[-72.9274796209999,-52.894219658999965],[-72.92398027299993,-52.88640715899997],[-72.93004309799994,-52.87615325299995],[-72.96861731699991,-52.851250908999916],[-72.9764705069999,-52.83879973799989],[-72.96035722599991,-52.824965101999894],[-72.93431555899986,-52.81853606599998],[-72.87816321499994,-52.813083591999856],[-72.83397376199989,-52.78704192499996],[-72.7624405589999,-52.76978932099996],[-72.74445553299998,-52.75741952900002],[-72.70348059799997,-52.707696221999846],[-72.69017493399986,-52.708916924999855],[-72.68163001199991,-52.712660414999796],[-72.6587621739999,-52.728204033999894],[-72.61913001199987,-52.738946222],[-72.61156165299994,-52.74187590899984],[-72.61131751199987,-52.774102471999875],[-72.65029863199986,-52.80169036299998],[-72.69749915299985,-52.82708098799982],[-72.72142493399991,-52.85173919099999],[-72.71483313699994,-52.86939869599983],[-72.6947322259999,-52.860039971999974],[-72.66991126199994,-52.84140390399989],[-72.62755286399994,-52.822930596999875],[-72.60850989499994,-52.8068173159999],[-72.58820553299995,-52.79599374799999],[-72.56314042899993,-52.80388762799997],[-72.57966061099992,-52.812758070999834],[-72.59365800699987,-52.82439544099993],[-72.59585527299986,-52.83424244599995],[-72.57681230399987,-52.838067315999865],[-72.56224524599995,-52.83367278399988],[-72.53502356699994,-52.814873955999836],[-72.52594967399995,-52.810723565999986],[-72.49063066299993,-52.80437590899996],[-72.47398841099987,-52.806410414999895],[-72.4669490229999,-52.821384373000015],[-72.46092688699991,-52.8405087219999],[-72.44701087099992,-52.85491301899987],[-72.43126380099997,-52.85662200299988],[-72.41978919199991,-52.838067315999865],[-72.42589270699992,-52.824802341999934],[-72.42007402299996,-52.808282158999866],[-72.40868079299989,-52.79306405999988],[-72.39806067599993,-52.783461195999905],[-72.38097083199992,-52.77467213299985],[-72.31309973899991,-52.75115325299988],[-72.30394446499992,-52.74651458099995],[-72.29515540299988,-52.740655206],[-72.28600012899997,-52.73186614399985],[-72.28189042899993,-52.72519296699989],[-72.27367102799994,-52.70671965899996],[-72.26895097599993,-52.70086028399982],[-72.24742591099991,-52.694594007999875],[-72.1985977859999,-52.693291924999876],[-72.1795955069999,-52.68035247199996],[-72.1775439189999,-52.65772970899998],[-72.16087419899989,-52.6521177649998],[-72.11457750299991,-52.65856662399986],[-72.09597158199992,-52.654253042],[-72.07765337,-52.65361839899998],[-72.06383945599987,-52.65772635499988],[-72.04289702099993,-52.67433316],[-72.0145144119999,-52.672730365],[-72.0071668439999,-52.6557396119999],[-72.00037768399994,-52.646098129],[-71.98014009999986,-52.64546107999997],[-71.9643014939999,-52.64961575499991],[-71.9494688129999,-52.66728446799998],[-71.92031105899994,-52.681624195999845],[-71.8505285659999,-52.694709557999836],[-71.62943764999994,-52.6837837],[-71.59820797799998,-52.674817823999966],[-71.58500453099987,-52.660390830999894],[-71.51951629699997,-52.656069738999946],[-71.4781028509999,-52.64613773299991],[-71.49181067599997,-52.61256275799986],[-71.53484369599991,-52.58038301399988],[-71.57161105299988,-52.56127786799989],[-71.63111050099988,-52.574400153],[-71.6868251219999,-52.56309545399999],[-71.72912830999988,-52.561930561999894],[-71.75989235999987,-52.56840723599985],[-71.8333749709999,-52.55279222499989],[-71.9112086859999,-52.54196763199981],[-71.97535046999988,-52.56085692499997],[-72.00283053699985,-52.55145126799987],[-72.02773140199994,-52.559260642999874],[-72.04777239499991,-52.55741889999981],[-72.07223762399994,-52.537089719999976],[-72.0872289699999,-52.520928643999866],[-72.09764563699987,-52.51653411299997],[-72.12482662699996,-52.51327890400002],[-72.20319576699984,-52.5233700499999],[-72.28156490799992,-52.5138485659999],[-72.30992591099994,-52.51653411299997],[-72.3277888659999,-52.52516041499997],[-72.3455704419999,-52.54045989399994],[-72.35912024599985,-52.55820077899993],[-72.3645727199999,-52.57431405999991],[-72.37393144399994,-52.588148695999905],[-72.41852779899992,-52.60670338299991],[-72.43346106699994,-52.61891041499989],[-72.42406165299994,-52.61419036299997],[-72.41515051999988,-52.61256275799986],[-72.40648352799991,-52.61435312299993],[-72.39806067599993,-52.61891041499989],[-72.41364498599995,-52.64885833099994],[-72.41926021999984,-52.653008721999896],[-72.43163001199987,-52.65097421699987],[-72.44139563699991,-52.64560312299991],[-72.46076412699993,-52.63201262799995],[-72.50169837099986,-52.61532968499991],[-72.5059301419999,-52.611423435],[-72.52594967399995,-52.600192967],[-72.54914303299998,-52.59156666499982],[-72.54157467399995,-52.577243748000015],[-72.50792395699992,-52.55006275799992],[-72.48688717399989,-52.538750908999845],[-72.46898352799994,-52.535088799999976],[-72.42662512899994,-52.536390882999974],[-72.40172278599991,-52.531019789999924],[-72.38768469999985,-52.519301039999846],[-72.38963782499991,-52.507582289999945],[-72.41266842399997,-52.502211195999806],[-72.42398027299996,-52.504082940999865],[-72.44322669199991,-52.51311614399987],[-72.45327714799987,-52.51653411299997],[-72.4652400379999,-52.5173479149998],[-72.48981686099992,-52.51580169099994],[-72.50169837099986,-52.51653411299997],[-72.53062903599997,-52.528415623000015],[-72.53929602799988,-52.530205987999906],[-72.54743404899997,-52.53435637799995],[-72.55907141799989,-52.55266692499982],[-72.56997636599995,-52.556898695999934],[-72.58922278599991,-52.55413176899988],[-72.61245683499992,-52.5471330709999],[-72.63003495999996,-52.53834400799984],[-72.63206946499989,-52.530205987999906],[-72.65611731699994,-52.52166106599989],[-72.67935136599993,-52.524834893999945],[-72.70205644399991,-52.53232187299992],[-72.7794490229999,-52.54387786299986],[-72.79503333199997,-52.541192315999965],[-72.80028235599988,-52.53435637799995],[-72.80264238199993,-52.52556731599998],[-72.80955969999991,-52.51653411299997],[-72.84837805899994,-52.50286223799985],[-72.8580216139999,-52.502211195999806],[-72.86192786399991,-52.51018645599994],[-72.85728919199997,-52.529717705999836],[-72.86143958199992,-52.540134372999916],[-72.86717688699987,-52.54827239399992],[-72.87059485599988,-52.55592213299986],[-72.87205969999985,-52.56170012799983],[-72.87230383999989,-52.56373463299986],[-72.88988196499992,-52.5885555969999],[-72.89281165299984,-52.594821872999866],[-72.89610755099989,-52.61370208099989],[-72.90453040299994,-52.6296526019999],[-72.91539466099992,-52.64267343499998],[-72.92625891799992,-52.653008721999896],[-72.98009192599994,-52.69410572699989],[-72.98835201699984,-52.70427825299993],[-72.97264563699989,-52.71705494599988],[-72.93716386599988,-52.690606377999984],[-72.86432857999995,-52.611911716999906],[-72.8410538399999,-52.59433359199988],[-72.81920325399989,-52.58652109199988],[-72.79873613199993,-52.615411065999986],[-72.77342688699987,-52.624200127999956],[-72.72142493399991,-52.63201262799995],[-72.69522050699987,-52.632094007999925],[-72.68700110599988,-52.63420989399985],[-72.67642167899993,-52.642836195999855],[-72.67389889199993,-52.65252044099991],[-72.68016516799986,-52.66253020599989],[-72.71320553299992,-52.69255950299985],[-72.7624405589999,-52.728204033999894],[-72.77969316299993,-52.745782158999916],[-72.79084225199995,-52.75269947699992],[-72.80650794199991,-52.75554778399996],[-72.83242753799993,-52.75611744599984],[-72.8451228509999,-52.75937265399988],[-72.85057532499994,-52.766289971999875],[-72.86042232999995,-52.78883228999987],[-72.88434811099991,-52.7951799459998],[-72.93993079299995,-52.797051690999865],[-73.00527910099993,-52.83326588299988],[-73.01561438699994,-52.84172942499991],[-73.00739498599992,-52.85588958099985],[-72.96760006399995,-52.879001559999985],[-72.95360266799989,-52.89332447699997],[-72.96939042899993,-52.9074846329999],[-72.97252356699991,-52.92473723799982],[-72.96727454299992,-52.958428643999824],[-72.96418209499984,-52.96379973799996],[-72.9505102199999,-52.97698333099983],[-72.94737708199992,-52.98577239399989],[-72.95360266799989,-53.02361419099984],[-72.9630427729999,-53.03736744599994],[-72.97956295499998,-53.054782809999914],[-72.99510657499988,-53.064141533999944],[-73.00202389199987,-53.0543759089999],[-73.0104874339999,-53.05624765399997],[-73.11628170499992,-53.096937757999946],[-73.1397192049999,-53.09921640400002],[-73.16340084499984,-53.088148695999806],[-73.17796790299985,-53.073500257999974],[-73.1846817699999,-53.064629815999844],[-73.18700110599988,-53.05779387799983],[-73.1803279289999,-53.0509579409999],[-73.16828365799988,-53.044610283999866],[-73.15868079299992,-53.03630950299989],[-73.15965735599991,-53.02361419099984],[-73.17666581899996,-53.01523202899996],[-73.19489498599995,-53.03036874799996],[-73.20815995999988,-53.05315520599989],[-73.21056067599991,-53.06804778399985],[-73.20213782499988,-53.07366301899985],[-73.19139563699986,-53.078545830999914],[-73.18268795499995,-53.08407968500002],[-73.18008378799988,-53.09124114399988],[-73.18724524599992,-53.10247161299997],[-73.19847571499992,-53.104913018999824],[-73.21076412699998,-53.10263437299994],[-73.22109941299988,-53.09929778399999],[-73.23249264199984,-53.0941708309999],[-73.24185136599988,-53.08733489399997],[-73.25291907499991,-53.081475518999845],[-73.32725989499991,-53.07146575299994],[-73.35826575399994,-53.0509579409999],[-73.38621985599988,-53.01677825299999],[-73.3990779289999,-53.01474374799997],[-73.42625891799989,-53.017754815999886],[-73.43712317599987,-53.013116143999945],[-73.45287024599995,-52.996677341999956],[-73.45596269399994,-52.986504815999915],[-73.44395911399991,-52.98202890399995],[-73.40436764199987,-52.98072682099995],[-73.39244544199991,-52.98202890399995],[-73.38414466099994,-52.98601653399984],[-73.37633216099994,-52.992120049999826],[-73.36636308499996,-52.9965145809999],[-73.35142981699991,-52.99578215899987],[-73.35765540299988,-52.98707447699989],[-73.3644099599999,-52.98064544099996],[-73.36974036399988,-52.97421640399995],[-73.37193762899996,-52.96526458099993],[-73.36628170499996,-52.9567196589999],[-73.35277258999992,-52.955010674999905],[-73.32355709499987,-52.95533619599993],[-73.32249915299991,-52.951592705999985],[-73.32266191299988,-52.94451262799984],[-73.32091223899988,-52.937432549999876],[-73.31387285099989,-52.934258722],[-73.3087458979999,-52.93531666499987],[-73.29918372299991,-52.940036716999956],[-73.27839107999992,-52.94394296699987],[-73.25503495999993,-52.957126559999914],[-73.24156653599994,-52.96160247199988],[-73.24518795499989,-52.95126718499996],[-73.26207434799989,-52.92742278399998],[-73.23599199099993,-52.930759372999916],[-73.22793535099989,-52.934258722],[-73.23265540299991,-52.91375090899986],[-73.22354081899991,-52.90146249799998],[-73.20474199099996,-52.89690520599986],[-73.21385657499985,-52.887790622999866],[-73.28872636599993,-52.90211353999985],[-73.30304928299991,-52.882745049999926],[-73.30785071499992,-52.8737932269999],[-73.31993567599991,-52.877618096999825],[-73.33568274599986,-52.884535414999824],[-73.35142981699991,-52.885918877999984],[-73.36204993399986,-52.87590911299982],[-73.37071692599994,-52.85979583099993],[-73.38263912699989,-52.84482187299999],[-73.4029841789999,-52.838067315999865],[-73.49205481699997,-52.825616143999945],[-73.54185950399994,-52.81243255],[-73.56371008999989,-52.797051690999865],[-73.54088294199997,-52.7800432269998],[-73.49449622299991,-52.77532317499988],[-73.45885169199994,-52.78484465899989],[-73.46812903599991,-52.810723565999986],[-73.44798743399987,-52.8068173159999],[-73.42463131399998,-52.78240325299985],[-73.40949459499987,-52.77662525799988],[-73.39622962099993,-52.782647393999895],[-73.38418535099993,-52.80380624799998],[-73.37535559799989,-52.800469658999866],[-73.36717688699989,-52.79599374799999],[-73.35484778599994,-52.79241301899993],[-73.34251868399988,-52.791192315999915],[-73.32485917899986,-52.79753997199985],[-73.31541907499985,-52.79371510199993],[-73.30597896999984,-52.78728606599983],[-73.2962133449999,-52.783461195999905],[-73.25377356699991,-52.791192315999915],[-73.2330623039999,-52.790622653999854],[-73.22109941299988,-52.77662525799988],[-73.23363196499989,-52.77809010199994],[-73.24413001199986,-52.777032158999894],[-73.25015214799996,-52.772393487999864],[-73.24901282499991,-52.762872002999956],[-73.26085364499988,-52.75400155999992],[-73.28758704299989,-52.76165129999995],[-73.30304928299991,-52.75554778399996],[-73.30833899599989,-52.74871184699985],[-73.3104548819999,-52.74163176899989],[-73.3104548819999,-52.724786065999886],[-73.30663001199989,-52.715427341999856],[-73.29796301999987,-52.71550872199984],[-73.28258216099992,-52.72136809699996],[-73.26235917899993,-52.71314869599997],[-73.24937903599994,-52.703871351999915],[-73.23936926999994,-52.69150155999998],[-73.22793535099989,-52.67359791499984],[-73.22667395699989,-52.665785414999846],[-73.22752844999988,-52.656833592],[-73.22598222599996,-52.64934661299985],[-73.21739661399994,-52.646254164999945],[-73.18008378799988,-52.646254164999945],[-73.16331946499986,-52.642998956],[-73.15269934799991,-52.63396575299999],[-73.14708411399991,-52.619886976999865],[-73.14537512899992,-52.60165780999997],[-73.12730872299989,-52.55828215899991],[-73.12214107999998,-52.55006275799992],[-73.04865475199989,-52.55462004999986],[-73.02301998599992,-52.56406015399988],[-73.0110570949999,-52.56316497199989],[-73.00397701699993,-52.55828215899991],[-73.00885982999989,-52.55006275799992],[-73.01675370999988,-52.54827239399992],[-73.0497940749999,-52.55006275799992],[-73.10814368399991,-52.536390882999974],[-73.11799068899992,-52.532810153999904],[-73.11558997299989,-52.52410247199992],[-73.10850989499994,-52.514255466999906],[-73.10440019399988,-52.50628020599986],[-73.09162350199995,-52.49382903399993],[-73.06224524599995,-52.4908993469999],[-73.00885982999989,-52.49602629999983],[-72.9288223949999,-52.51344166499989],[-72.90746008999986,-52.527032158999944],[-72.89928137899994,-52.530205987999906],[-72.88585364499997,-52.52564869599996],[-72.8873591789999,-52.515313408999866],[-72.89647376199991,-52.503838799999826],[-72.90583248599992,-52.49602629999983],[-72.91795813699994,-52.491794528999904],[-72.96035722599991,-52.48853932099986],[-73.0213923819999,-52.474786065999936],[-73.05577551999994,-52.471449476999815],[-73.08079993399986,-52.478692315999844],[-73.10057532499988,-52.48935312299987],[-73.12262936099995,-52.49285247199995],[-73.14354407499994,-52.49000416499992],[-73.15965735599991,-52.48170338299985],[-73.18224036399997,-52.44557057099981],[-73.19497636599993,-52.429864190999844],[-73.20059160099991,-52.437432549999976],[-73.19859778599988,-52.44670989399984],[-73.1946508449999,-52.45671965899983],[-73.19212805899987,-52.466729424999905],[-73.19444739499994,-52.475518487999956],[-73.20372473899991,-52.47975025799998],[-73.21629798099987,-52.47942473799987],[-73.22817949099993,-52.48235442499989],[-73.23534094999988,-52.49602629999983],[-73.19652258999986,-52.500909112999985],[-73.18089758999989,-52.51482512799988],[-73.17365475199995,-52.536065362999864],[-73.15965735599991,-52.56373463299986],[-73.18578040299985,-52.59205494599981],[-73.20319576699991,-52.60564544099994],[-73.22447669199991,-52.6115048159999],[-73.23884029899997,-52.62004973799992],[-73.25621497299994,-52.660414320999884],[-73.26891028599991,-52.67359791499984],[-73.2910863919999,-52.67294687299997],[-73.31859290299991,-52.66277434699993],[-73.33775794199988,-52.64666106599996],[-73.33438066299996,-52.62883879999989],[-73.31379146999993,-52.61207447699987],[-73.30492102799988,-52.60182057099985],[-73.30304928299991,-52.59156666499982],[-73.30846106699995,-52.584649346999825],[-73.31663977799988,-52.58562590899998],[-73.32673092399992,-52.58961353999996],[-73.33775794199988,-52.59156666499982],[-73.35167395699995,-52.59075286299999],[-73.36245683499996,-52.58806731599992],[-73.36945553299994,-52.581149997999916],[-73.37193762899996,-52.56747812299998],[-73.37523352799991,-52.55820077899993],[-73.3834529289999,-52.54900481599996],[-73.39362545499993,-52.544122002999984],[-73.4029841789999,-52.54697031000002],[-73.40697180899986,-52.5643856749999],[-73.38536536399997,-52.60556405999987],[-73.38621985599988,-52.62574635199981],[-73.39732825399989,-52.6364885399999],[-73.40990149599989,-52.63746510199989],[-73.43712317599987,-52.63201262799995],[-73.44969641799989,-52.63518645599983],[-73.45295162699992,-52.64316171699988],[-73.45335852799994,-52.6534156229999],[-73.45759029899995,-52.6633440079999],[-73.47325598899991,-52.66432057099996],[-73.49351966099994,-52.65634530999992],[-73.50869706899991,-52.6560197899998],[-73.50910396999993,-52.68035247199996],[-73.53477942599989,-52.674899998000015],[-73.55793209499993,-52.68531666499992],[-73.59788977799988,-52.72136809699996],[-73.60334225199992,-52.722344658999944],[-73.61034094999991,-52.72112395599993],[-73.6163630849999,-52.72096119599996],[-73.61900794199988,-52.724786065999886],[-73.61778723899988,-52.73105234199984],[-73.61522376199989,-52.73406340899984],[-73.61266028599997,-52.73609791499995],[-73.61148027299993,-52.73870208099996],[-73.61644446499989,-52.74911874799986],[-73.6280818349999,-52.74521249799995],[-73.6531469389999,-52.728204033999894],[-73.68517005099987,-52.72136809699996],[-73.69953365799995,-52.71453215899995],[-73.69782467399995,-52.70427825299993],[-73.67096920499995,-52.68010833099992],[-73.6599828769999,-52.67359791499984],[-73.60826575399997,-52.66269296699994],[-73.5843806629999,-52.653252862999935],[-73.57054602799991,-52.63201262799995],[-73.59154212099995,-52.63396575299999],[-73.64631100199998,-52.646254164999945],[-73.66958574099988,-52.64324309699986],[-73.6773168609999,-52.63225676899999],[-73.67983964799993,-52.61630624799998],[-73.68785559799994,-52.59783294099996],[-73.65794837099989,-52.59075286299999],[-73.6444392569999,-52.584405205999964],[-73.6388240229999,-52.57431405999991],[-73.63585364499988,-52.56316497199989],[-73.62852942599989,-52.56129322699983],[-73.61961829299986,-52.56340911299992],[-73.61148027299993,-52.56373463299986],[-73.60484778599997,-52.55925872199998],[-73.60326087099995,-52.55478281000001],[-73.60065670499995,-52.551364842],[-73.59105383999986,-52.55006275799992],[-73.5839737619999,-52.55120208099995],[-73.5801488919999,-52.55348072699984],[-73.5775447259999,-52.555840752999885],[-73.57428951699984,-52.556898695999934],[-73.56183834499993,-52.55535247199989],[-73.55337480399987,-52.551039320999806],[-73.55089270699995,-52.54452890399998],[-73.55626380099991,-52.536390882999974],[-73.56704667899993,-52.53167083099988],[-73.61522376199989,-52.5233700499999],[-73.61925208199995,-52.52044036299988],[-73.60863196499989,-52.51360442499986],[-73.58421790299985,-52.502211195999806],[-73.57689368399994,-52.49570077899999],[-73.56550045499998,-52.47893645599997],[-73.55996660099996,-52.475518487999956],[-73.49486243399991,-52.475518487999956],[-73.51878821499987,-52.4650204409999],[-73.53091386599988,-52.45696379999987],[-73.53018144399992,-52.44426848799999],[-73.5152888659999,-52.420342705999936],[-73.53294837099992,-52.41529713299982],[-73.5472712879999,-52.425957940999936],[-73.56200110599988,-52.44068775799984],[-73.58112545499995,-52.44833749799986],[-73.65440833199989,-52.430759373000015],[-73.66616777299987,-52.42400481599989],[-73.66510982999992,-52.40007903399984],[-73.66026770699995,-52.38388437299988],[-73.64903723899994,-52.37476978999989],[-73.62889563699991,-52.372002862999835],[-73.62035071499989,-52.37517669099989],[-73.61375891799992,-52.38176848799987],[-73.60692298099988,-52.38697682099995],[-73.59788977799988,-52.386163018999945],[-73.5891820949999,-52.37908294099998],[-73.5851944649999,-52.36972421699995],[-73.58421790299985,-52.348321222],[-73.57835852799991,-52.34384530999985],[-73.56786048099994,-52.333265882999974],[-73.56297766799986,-52.32284921699999],[-73.57428951699984,-52.31796640400002],[-73.59837805899988,-52.30217864399989],[-73.60472571499989,-52.296807549999926],[-73.61266028599997,-52.27743906],[-73.60676021999993,-52.26458098799997],[-73.59479732999988,-52.252211195999855],[-73.58421790299985,-52.23479583099997],[-73.58055579299989,-52.20842864399997],[-73.59137936099998,-52.20045338299992],[-73.61070716099991,-52.199639580999914],[-73.63263912699993,-52.193780205999964],[-73.63215084499987,-52.1888973939999],[-73.6371150379999,-52.1755510399998],[-73.64329993399988,-52.16366952899985],[-73.64631100199998,-52.16301848799989],[-73.65070553299995,-52.15813567499992],[-73.68040930899988,-52.14592864399985],[-73.68834387899994,-52.12232838299982],[-73.71963456899991,-52.095798434999935],[-73.74498450399994,-52.065362237999885],[-73.73501542899993,-52.029961846999974],[-73.71589107999998,-52.020603122999944],[-73.69896399599989,-52.02629973799993],[-73.67699133999989,-52.04306405999986],[-73.67430579299989,-52.05144622199991],[-73.6388240229999,-52.098239841999884],[-73.62547766799989,-52.13014088299981],[-73.61457271999991,-52.14470794099984],[-73.60130774599989,-52.14251067499993],[-73.5813695949999,-52.13437265399991],[-73.56826738199993,-52.14861419099992],[-73.55894934799989,-52.170993747999844],[-73.55011959499984,-52.18694426899986],[-73.52887936099995,-52.19557057099986],[-73.51085364499991,-52.18987395599988],[-73.49449622299991,-52.17945728999989],[-73.4780981109999,-52.173923434999864],[-73.46833248599995,-52.16904062299999],[-73.48387610599988,-52.15764739399993],[-73.52277584499987,-52.13909270599983],[-73.49571692599991,-52.13193124799989],[-73.4629613919999,-52.13836028399998],[-73.43171139199984,-52.153008722],[-73.38719641799993,-52.19117603999997],[-73.36196855399987,-52.207940362999985],[-73.33385169199988,-52.21868255],[-73.30304928299991,-52.221774997999894],[-73.27159583199989,-52.21607838299991],[-73.24282792899996,-52.20208098799986],[-73.22179114499991,-52.17986419099989],[-73.2136938139999,-52.14950937299991],[-73.2161759109999,-52.12509530999987],[-73.21377519399988,-52.119235934999914],[-73.2040909499999,-52.1080868469999],[-73.19131425699987,-52.10377369599981],[-73.17341061099992,-52.10711028399984],[-73.15611731699991,-52.11516692499987],[-73.14537512899992,-52.12558359199995],[-73.11880449099992,-52.10214609199997],[-73.08690344999994,-52.08245208099984],[-73.05260169199997,-52.06910572699992],[-73.01878821499989,-52.06406015399998],[-72.99779212099986,-52.06487395599999],[-72.98766028599991,-52.06926848799998],[-72.98363196499993,-52.079522393999824],[-72.98094641799986,-52.098239841999884],[-72.98082434799989,-52.10979583099991],[-72.98298092399989,-52.126722914999796],[-72.98745683499993,-52.14299895599992],[-72.9945369129999,-52.15292734200001],[-73.00348873599992,-52.15422942499983],[-73.0235082669999,-52.147881768999895],[-73.03270423099988,-52.14592864399985],[-73.04088294199987,-52.14885833099987],[-73.04588782499994,-52.15553150799983],[-73.04942786399991,-52.16375090899983],[-73.05353756399995,-52.17017994599984],[-73.06371008999992,-52.1815731749999],[-73.07380123599995,-52.19573333099982],[-73.08153235599988,-52.21087004999982],[-73.08458411399997,-52.22519296699999],[-73.0792537099999,-52.23707447699986],[-73.06749426999991,-52.2321102839999],[-73.02745520699987,-52.192966403999954],[-73.01431230399993,-52.18743254999985],[-72.9945369129999,-52.18694426899986],[-72.94664466099991,-52.20175546700001],[-72.92198645699989,-52.2139624979999],[-72.91637122299991,-52.22519296699999],[-72.92210852799988,-52.23845794099993],[-72.91283118399991,-52.24480559699987],[-72.88589433499996,-52.24830494599995],[-72.87267005099991,-52.25335051899989],[-72.86644446499986,-52.256768487999985],[-72.86115475199996,-52.255954684999885],[-72.84068762899992,-52.240655205999914],[-72.83482825399997,-52.233982028999954],[-72.83202063699991,-52.22527434699997],[-72.83128821499989,-52.21119557099984],[-72.82795162699995,-52.20061614399998],[-72.81297766799992,-52.179131768999866],[-72.80955969999991,-52.17017994599984],[-72.80679277299996,-52.146579684999985],[-72.79873613199993,-52.12965260199982],[-72.76862545499989,-52.098239841999884],[-72.7543025379999,-52.07512786299993],[-72.75487219999988,-52.05681731599987],[-72.76838131399995,-52.051202080999865],[-72.82579505099993,-52.09140390399987],[-72.84117591099991,-52.105726820999855],[-72.85057532499994,-52.12558359199995],[-72.85098222599993,-52.16122812299999],[-72.85460364499988,-52.17848072699982],[-72.86856035099987,-52.19719817499988],[-72.88369706899996,-52.198337497999916],[-72.90746008999986,-52.190036716999934],[-72.93146725199992,-52.177829684999956],[-72.94737708199992,-52.1664364559999],[-72.9409887359999,-52.15129973799999],[-72.94884192599987,-52.121758721999846],[-72.94017493399988,-52.095635674999976],[-72.95030676999994,-52.064629815999865],[-72.94737708199992,-52.049737237999906],[-72.93272864499991,-52.03948333099997],[-72.92031816299988,-52.04566822699994],[-72.91022701699993,-52.0575497379999],[-72.90233313699986,-52.06406015399998],[-72.89452063699986,-52.057061456],[-72.88707434799989,-52.02369557099984],[-72.8822322259999,-52.012302341999956],[-72.87474524599992,-51.999607029],[-72.87059485599988,-51.96819426899988],[-72.86485755099991,-51.95476653399989],[-72.85362708199992,-51.948337497999965],[-72.83446204299986,-51.94198984199985],[-72.81493079299989,-51.937595309999864],[-72.80280514199988,-51.9374325499999],[-72.74132239499991,-51.96843840899983],[-72.69579016799995,-51.981377862999835],[-72.68667558499996,-51.98837655999991],[-72.68879146999987,-52.00750090899997],[-72.70421301999991,-52.021742445999976],[-72.71507727799988,-52.03728606599998],[-72.70348059799997,-52.060316664999945],[-72.69395911399997,-52.06715260199988],[-72.67027747299993,-52.077732028999925],[-72.6587621739999,-52.08456796699994],[-72.65184485599991,-52.0925432269999],[-72.64875240799992,-52.10003020599987],[-72.64403235599991,-52.10662200299985],[-72.63206946499989,-52.111911717],[-72.63158118399991,-52.10849374799991],[-72.62816321499989,-52.10214609199997],[-72.62242591099994,-52.09807708099983],[-72.61465410099993,-52.10133228999996],[-72.60138912699988,-52.111911717],[-72.59825598899991,-52.11712004999991],[-72.58088131399992,-52.13909270599983],[-72.57681230399987,-52.14251067499993],[-72.56851152299988,-52.16432057099989],[-72.55125891799989,-52.179131768999866],[-72.5365291009999,-52.19557057099986],[-72.53587805899986,-52.221774997999894],[-72.54137122299989,-52.22812265400001],[-72.55064856699994,-52.233982028999954],[-72.55939693899992,-52.241306247999965],[-72.56314042899993,-52.252129815999865],[-72.56432044199995,-52.26018645599999],[-72.56944739499988,-52.275160414999846],[-72.57420813699989,-52.30917734199986],[-72.58478756399992,-52.32708098799992],[-72.60171464799993,-52.33928801899999],[-72.62462317599991,-52.34465911299995],[-72.63670813699991,-52.34392669099992],[-72.64903723899995,-52.340915623],[-72.66030839799996,-52.33554452899987],[-72.66966712099989,-52.32781340899986],[-72.67902584499993,-52.32301197699996],[-72.68578040299987,-52.32870859199994],[-72.69664466099994,-52.348321222],[-72.7145076159999,-52.36288827899993],[-72.74006100199989,-52.374932549999855],[-72.76537024599995,-52.37786223799996],[-72.7828669909999,-52.365655205999985],[-72.77521725199995,-52.38258228999988],[-72.78160559799989,-52.38697682099995],[-72.79381262899994,-52.38583749799992],[-72.80337480399996,-52.386163018999945],[-72.8113500639999,-52.39251067499988],[-72.83128821499989,-52.413506768999824],[-72.85216223899997,-52.4252255189999],[-72.87938391799985,-52.43466562299992],[-72.90827389199987,-52.44011809699987],[-72.93374589799987,-52.440850518999895],[-72.9305313789999,-52.4481747379999],[-72.92699133999994,-52.45175546699996],[-72.92170162699995,-52.45322030999993],[-72.91323808499993,-52.45387135199997],[-72.88898678299992,-52.451836846999946],[-72.8394262359999,-52.437432549999976],[-72.79076087099986,-52.429864190999844],[-72.74596106699993,-52.411716403999925],[-72.72142493399991,-52.406670830999985],[-72.69298255099987,-52.4079729149999],[-72.61465410099993,-52.420342705999936],[-72.58995520699995,-52.42791106599997],[-72.57144120999993,-52.4429664039999],[-72.55142167899996,-52.45354583099995],[-72.5222061839999,-52.44833749799986],[-72.50568600199995,-52.43368905999986],[-72.52098548099991,-52.4252255189999],[-72.60631262899994,-52.417087497999894],[-72.62193762899994,-52.412774346999974],[-72.63206946499989,-52.406670830999985],[-72.63756262899992,-52.39763762799998],[-72.63414466099991,-52.39397551899993],[-72.62458248599992,-52.391534112999906],[-72.61156165299994,-52.386163018999945],[-72.57681230399987,-52.36541106599986],[-72.54613196499989,-52.34148528399998],[-72.52647864499994,-52.3297665339999],[-72.50999915299992,-52.32488372199983],[-72.49714107999992,-52.31536223799984],[-72.46959387899989,-52.223402601999915],[-72.4669490229999,-52.20427825299985],[-72.47565670499989,-52.18743254999985],[-72.5797419909999,-52.096937757999974],[-72.60850989499994,-52.083591403999876],[-72.64867102799985,-52.04900481599988],[-72.6587621739999,-52.03622812299993],[-72.66470292899993,-51.97063567499991],[-72.66966712099989,-51.96103281000002],[-72.66112219999988,-51.95745208099996],[-72.65440833199992,-51.950453382999974],[-72.64598548099988,-51.94540780999986],[-72.63206946499989,-51.9473609349999],[-72.6251521479999,-51.95435963299988],[-72.6199438139999,-51.96461353999982],[-72.61229407499988,-51.97332122199998],[-72.59797115799998,-51.975274346999846],[-72.5875544909999,-51.96843840899983],[-72.58242753799988,-51.94548919099993],[-72.57371985599991,-51.940606377999956],[-72.56175696499986,-51.94280364399986],[-72.5413305329999,-51.952569268999895],[-72.52904212099995,-51.95476653399989],[-72.5040177069999,-51.95142994599986],[-72.48497473899994,-51.942478123000015],[-72.46898352799994,-51.92929452899988],[-72.45327714799987,-51.91326262799989],[-72.46642005099991,-51.89641692499989],[-72.4981176419999,-51.87411874799994],[-72.50792395699992,-51.85857512799994],[-72.50837154899992,-51.83709075299983],[-72.49815833199997,-51.82097747199985],[-72.4669490229999,-51.78972747199988],[-72.49494381399992,-51.76921965899992],[-72.5098363919999,-51.72820403399991],[-72.52204342399995,-51.71306731599983],[-72.56322180899991,-51.702732028999904],[-72.60798092399997,-51.67848072699992],[-72.62462317599991,-51.666761976999844],[-72.63548743399991,-51.65504322699994],[-72.66966712099989,-51.6081682269998],[-72.68903561099992,-51.59343840899999],[-72.71251380099996,-51.58220794099999],[-72.73770097599996,-51.57463958099995],[-72.7624405589999,-51.5705705709999],[-72.82754472599996,-51.5705705709999],[-72.83751380099994,-51.56731536299985],[-72.85838782499991,-51.55282968499999],[-72.86856035099987,-51.54949309699996],[-72.89899654899992,-51.54900481599998],[-72.91515051999988,-51.547051690999936],[-72.92625891799992,-51.54265715899995],[-72.93272864499991,-51.53460051899983],[-72.94220943899992,-51.5152320289999],[-72.94737708199992,-51.50847747199996],[-72.96947180899991,-51.49846770599988],[-73.02916419199991,-51.488539320999884],[-73.05353756399995,-51.487481377999835],[-73.06794186099992,-51.47861093499996],[-73.0797419909999,-51.45826588299989],[-73.0843806629999,-51.43564218499992],[-73.07713782499991,-51.41969166499982],[-73.0909724599999,-51.42083098799986],[-73.12262936099995,-51.439711195999884],[-73.13914954299993,-51.44703541499989],[-73.24547278599994,-51.46502044099992],[-73.26036536399988,-51.471123956],[-73.2676488919999,-51.48056406000001],[-73.26207434799989,-51.49488697699982],[-73.24559485599991,-51.5066057269999],[-73.22712154899989,-51.5079078099999],[-73.17357337099989,-51.497328382999854],[-73.15733801999993,-51.49000416499994],[-73.14061438699991,-51.48756275799982],[-73.12214107999998,-51.49830494599992],[-73.1051326159999,-51.50221119599982],[-73.05431067599996,-51.50261809699983],[-73.04356848899997,-51.51189544099988],[-73.04161536399991,-51.522637627999885],[-73.03868567599989,-51.52890390399985],[-73.03888912699995,-51.53533294099986],[-73.04674231699994,-51.54607512799986],[-73.05410722599993,-51.55169036299987],[-73.07306881399991,-51.56129322699985],[-73.1061091789999,-51.583916925],[-73.11074785099993,-51.593357029],[-73.09825598899991,-51.60475025799988],[-73.0377091139999,-51.56511809699995],[-73.02464758999994,-51.560642184999985],[-73.0231013659999,-51.55462004999989],[-73.02367102799988,-51.54778411299996],[-73.02183997299989,-51.54265715899995],[-73.01341712099995,-51.53622812299985],[-73.0017797519999,-51.52939218500001],[-72.98916581899994,-51.52662525799995],[-72.97777258999989,-51.53281015399993],[-72.94957434799991,-51.55917734199984],[-72.94367428299998,-51.56316497199991],[-72.92296301999997,-51.567478123],[-72.8580216139999,-51.5973446589999],[-72.83568274599988,-51.59840260199994],[-72.81456458199995,-51.595472914999924],[-72.79381262899994,-51.596123955999886],[-72.77232825399994,-51.6081682269998],[-72.75792395699997,-51.62346770599995],[-72.71589107999989,-51.68181731599986],[-72.71060136599989,-51.69101327900001],[-72.70295162699989,-51.69801197699981],[-72.69009355399987,-51.700941664999924],[-72.63548743399991,-51.70720794099988],[-72.63243567599991,-51.70907968499984],[-72.62336178299992,-51.71819426899992],[-72.61778723899991,-51.72144947699997],[-72.60973059799997,-51.722344658999965],[-72.59251868399994,-51.720879815999815],[-72.56261145699997,-51.72478606599991],[-72.55524654899997,-51.72966887799997],[-72.54954993399988,-51.74130624799988],[-72.55158443899991,-51.75758228999992],[-72.56240800699989,-51.778252862999835],[-72.5780330069999,-51.795993748],[-72.6048884759999,-51.80722421699993],[-72.63190670499992,-51.825616143999966],[-72.64513098899997,-51.83131275799986],[-72.65819251199986,-51.83269622199993],[-72.69969641799995,-51.83131275799986],[-72.71580969999991,-51.83660247199983],[-72.72411048099988,-51.83814869599988],[-72.72765051999995,-51.834405205999936],[-72.72899329299986,-51.830173435],[-72.7355850899999,-51.81926848799985],[-72.73790442599991,-51.817071221999946],[-72.78628495999989,-51.81080494599981],[-72.80003821499992,-51.80250416499983],[-72.81248938699993,-51.7848446589999],[-72.82974199099993,-51.76799895599991],[-72.8580216139999,-51.762383722],[-72.88451087099989,-51.77385833099986],[-72.89932206899994,-51.77605559699994],[-72.90583248599992,-51.76580169099991],[-72.9094132149999,-51.757745049999876],[-72.91795813699994,-51.757419528999854],[-72.96271725199998,-51.76848723799998],[-72.97667395699995,-51.76921965899992],[-72.98835201699984,-51.762383722],[-72.99038652299987,-51.75318775799993],[-72.98619544199994,-51.74358489399995],[-72.98314368399986,-51.73333098799992],[-72.98835201699984,-51.72144947699997],[-72.99815833199997,-51.71892669099996],[-73.02940833199995,-51.716729424999876],[-73.03620357999995,-51.710870049999926],[-73.03986568899991,-51.70208098799995],[-73.04881751199984,-51.69687265399996],[-73.05996660099987,-51.69426848799996],[-73.0702205069999,-51.693536065999936],[-73.12328040299991,-51.7019182269999],[-73.15078691299993,-51.703057549999926],[-73.17332923099994,-51.693536065999936],[-73.18480383999987,-51.670017184999885],[-73.18028723899991,-51.65064869599987],[-73.18244381399992,-51.637465101999915],[-73.22842363199987,-51.62908294099995],[-73.24201412699995,-51.61150481599992],[-73.25523841099988,-51.60475025799988],[-73.26838131399992,-51.60377369599991],[-73.28001868399994,-51.60621510199994],[-73.28962154899992,-51.61142343499985],[-73.2962133449999,-51.61834075299985],[-73.2538142569999,-51.63648853999994],[-73.23753821499989,-51.64739348799983],[-73.22793535099989,-51.666761976999844],[-73.22842363199987,-51.67929452899993],[-73.23224850199989,-51.688164971999974],[-73.23302161399991,-51.69752369599983],[-73.22447669199991,-51.710870049999926],[-73.21385657499985,-51.7174618469999],[-73.19953365799995,-51.72047291499982],[-73.07005774599992,-51.72454192499986],[-73.02668209499987,-51.74407317499994],[-72.9945369129999,-51.78972747199988],[-73.02757727799987,-51.77743905999992],[-73.06680253799988,-51.755059502999984],[-73.10602779899992,-51.74488697699995],[-73.13914954299993,-51.76921965899992],[-73.12840735599994,-51.77556731599994],[-73.11644446499987,-51.776462497999944],[-73.10464433499993,-51.772719007999825],[-73.09447180899988,-51.76580169099991],[-73.08421790299985,-51.76132577899995],[-73.07408606699991,-51.76295338299997],[-73.06037350199998,-51.76921965899992],[-73.04922441299996,-51.777927342],[-73.04564368399988,-51.79762135199985],[-73.04674231699994,-51.818617445999806],[-73.0497940749999,-51.83131275799986],[-73.08234615799988,-51.85361093499998],[-73.17414303299995,-51.85979583099996],[-73.20742753799993,-51.8790829409999],[-73.19041907499988,-51.88738372199988],[-73.16803951699987,-51.88982512799991],[-73.14565995999993,-51.886163018999866],[-73.1285701159999,-51.87566497199998],[-73.11831620999996,-51.87102629999987],[-73.07713782499991,-51.872247002999885],[-73.06663977799991,-51.86842213299996],[-73.04356848899997,-51.851169528999954],[-73.00861568899995,-51.832207940999936],[-72.97240149599992,-51.82170989399988],[-72.94078528599992,-51.827732028999975],[-72.91942298099988,-51.85857512799994],[-72.93761145699989,-51.86939869599985],[-73.00202389199987,-51.885349216999856],[-73.06135006399995,-51.91611093499993],[-73.08079993399986,-51.92066822699988],[-73.10326087099995,-51.92245859199995],[-73.12682044199991,-51.928480726999865],[-73.14533443899992,-51.940036716999984],[-73.15282141799989,-51.95794036299986],[-73.15575110599991,-51.97185637799993],[-73.17332923099994,-52.02255624799999],[-73.17438717399988,-52.04705169099984],[-73.17271887899997,-52.06658294099991],[-73.17666581899996,-52.08123137799983],[-73.19444739499994,-52.09075286299991],[-73.22370357999998,-52.09148528399985],[-73.24193274599986,-52.079034112999835],[-73.27261308499996,-52.03964609199985],[-73.27501380099991,-52.02320728999985],[-73.26821855399987,-51.97193775799991],[-73.27261308499996,-51.96103281000002],[-73.28014075399992,-51.95240650799984],[-73.30304928299991,-51.89959075299994],[-73.29527747299991,-51.87167734199991],[-73.29971269399988,-51.831963799999905],[-73.32677161399991,-51.7269833309999],[-73.33849036399991,-51.69980234199989],[-73.35680091099988,-51.676446221999896],[-73.38621985599988,-51.65252044099993],[-73.38670813699986,-51.670830987999985],[-73.37995357999992,-51.68352629999986],[-73.35826575399994,-51.70720794099988],[-73.35065670499989,-51.72144947699997],[-73.34129798099985,-51.752699476999936],[-73.33263098899997,-51.801853122999965],[-73.3285212879999,-51.86142343499998],[-73.31143144399988,-51.957696222],[-73.30797278599988,-52.02206796699999],[-73.28502356699988,-52.10442473799986],[-73.28258216099992,-52.14251067499993],[-73.29283606699988,-52.16570403399987],[-73.31623287699993,-52.16611093499988],[-73.34166419199988,-52.155368747999866],[-73.35826575399994,-52.14592864399985],[-73.39439856699995,-52.1344540339999],[-73.39981035099993,-52.12900155999995],[-73.40265865799995,-52.11785247199994],[-73.40965735599993,-52.10800546699992],[-73.41942298099988,-52.100844007999875],[-73.45156816299992,-52.09433359199998],[-73.54002844999987,-52.055271092],[-73.56354732999992,-52.03997161299987],[-73.58128821499992,-52.02190520599994],[-73.58112545499995,-52.00546640399995],[-73.57290605399996,-51.98365650799981],[-73.5831599599999,-51.96526458099995],[-73.6000056629999,-51.948988539999824],[-73.61148027299993,-51.93434010199982],[-73.60130774599989,-51.934991143999866],[-73.59312903599988,-51.93401458099998],[-73.58576412699988,-51.931247653999925],[-73.57799231699988,-51.926934502999835],[-73.59496008999986,-51.91187916499991],[-73.6223852199999,-51.88128020599989],[-73.64557857999995,-51.84872812299992],[-73.6497289699999,-51.827894789999846],[-73.62092037699995,-51.81218840899997],[-73.59927324099996,-51.82268645599986],[-73.56371008999989,-51.86541106599995],[-73.53770911399991,-51.88355885199996],[-73.52708899599986,-51.895196221999875],[-73.52277584499987,-51.90984465899997],[-73.52049719999988,-51.92392343499992],[-73.51402747299989,-51.93857187299993],[-73.50422115799995,-51.950127862999864],[-73.4642227859999,-51.96738046699986],[-73.4518123039999,-51.99334075299986],[-73.43643144399992,-52.01523202899998],[-73.39981035099993,-52.01572030999997],[-73.41551673099988,-51.990411065999844],[-73.48180091099994,-51.91326262799989],[-73.47557532499988,-51.91155364399989],[-73.46939042899993,-51.908868097],[-73.46263587099989,-51.906670830999914],[-73.45449785099987,-51.906426690999965],[-73.4611710279999,-51.89568450299986],[-73.47044837099989,-51.892185153999954],[-73.48013261599993,-51.8903134089999],[-73.48863684799997,-51.885349216999856],[-73.49225826699993,-51.875420830999936],[-73.49303137899993,-51.854913018999895],[-73.49852454299989,-51.851169528999954],[-73.51984615799995,-51.84644947699986],[-73.53062903599992,-51.83473072699996],[-73.53148352799985,-51.81926848799985],[-73.52277584499987,-51.80339934699982],[-73.55044511599996,-51.78948333099984],[-73.57982337099986,-51.76864999799995],[-73.5891820949999,-51.74960702899987],[-73.53400631399995,-51.73601653399991],[-73.50348873599992,-51.72275155999997],[-73.47565670499995,-51.705010674999976],[-73.46068274599992,-51.68670012799992],[-73.48818925699986,-51.68759530999991],[-73.50987708199995,-51.69605885199995],[-73.55011959499984,-51.72144947699997],[-73.55011959499984,-51.680433851999965],[-73.5624080069999,-51.689548434999956],[-73.5787654289999,-51.713555597],[-73.59166419199991,-51.72144947699997],[-73.6116430329999,-51.71998463299992],[-73.62328040299991,-51.70769622199987],[-73.6301977199999,-51.693454684999864],[-73.63573157499991,-51.68670012799992],[-73.65485592399989,-51.68857187299998],[-73.65929114499997,-51.69443124799993],[-73.6604711579999,-51.704196872999965],[-73.67764238199993,-51.72812265399993],[-73.6837458979999,-51.74187590899986],[-73.68553626199989,-51.75660572699985],[-73.68040930899988,-51.76921965899992],[-73.69945227799988,-51.785251559999914],[-73.71890214799987,-51.77581145599989],[-73.76231848899994,-51.73503997199993],[-73.76276607999992,-51.715101820999855],[-73.81200110599994,-51.68857187299998],[-73.80703691299986,-51.670017184999885],[-73.78636633999986,-51.65992603999992],[-73.73717200399994,-51.65097421699989],[-73.71458899599989,-51.638848565999986],[-73.7364802729999,-51.63738372199993],[-73.76016191299992,-51.642510674999855],[-73.78416907499988,-51.644952080999886],[-73.80703691299986,-51.635837497999894],[-73.81891842399992,-51.62883879999991],[-73.8285212879999,-51.62851327899989],[-73.83861243399988,-51.63103606599999],[-73.8514298169999,-51.63258228999985],[-73.86384029899992,-51.62867603999994],[-73.87458248599994,-51.62167734199996],[-73.88581295499995,-51.6180966129999],[-73.89952551999995,-51.625176690999865],[-73.90298417899987,-51.61825937299986],[-73.9042048819999,-51.61174895599987],[-73.90318762899992,-51.604913018999945],[-73.89952551999995,-51.5973446589999],[-73.89122473899991,-51.586683851999865],[-73.88414466099994,-51.58342864399983],[-73.87621008999989,-51.58220794099999],[-73.86538652299987,-51.577406507999825],[-73.82603919199988,-51.54656340899986],[-73.81696529899997,-51.53655364399987],[-73.88145911399994,-51.536797784],[-73.9092504549999,-51.526950778999975],[-73.92064368399988,-51.49830494599992],[-73.91722571499989,-51.49089934699993],[-73.9106339179999,-51.484958592],[-73.90632076699988,-51.47877369599985],[-73.90977942599991,-51.470961195999855],[-73.9141332669999,-51.46550872199991],[-73.9193416009999,-51.45566171699989],[-73.92369544199988,-51.45029062299993],[-73.92878170499988,-51.439141534],[-73.92829342399992,-51.415215752999856],[-73.9343155589999,-51.40601978999988],[-73.9343155589999,-51.39934661299992],[-73.89928137899992,-51.375176690999915],[-73.88036048099991,-51.367933851999894],[-73.87218176999991,-51.38225676899988],[-73.86143958199989,-51.39283619599992],[-73.81403561099995,-51.39218515399988],[-73.80333411399994,-51.40276458099993],[-73.79662024599989,-51.418145440999965],[-73.78075110599985,-51.43303801899992],[-73.74811764199993,-51.453301690999844],[-73.71344967399995,-51.469821873],[-73.69953365799995,-51.48007577899985],[-73.68785559799994,-51.49488697699982],[-73.66356360599988,-51.54127369599997],[-73.65453040299988,-51.56658294099982],[-73.63060462099992,-51.596123955999886],[-73.62083899599986,-51.62818775799987],[-73.61188717399995,-51.62542083099999],[-73.60448157499985,-51.61142343499985],[-73.60472571499989,-51.591078382999946],[-73.61001542899987,-51.57838307099989],[-73.6388240229999,-51.53655364399987],[-73.61644446499989,-51.52288176899993],[-73.6046036449999,-51.51295338299984],[-73.60814368399991,-51.50847747199996],[-73.63914954299992,-51.509372653999954],[-73.65143795499989,-51.50554778399985],[-73.6599828769999,-51.49488697699982],[-73.65558834499993,-51.46843840899993],[-73.59968014199987,-51.45126718499991],[-73.59788977799988,-51.432793877999885],[-73.63792883999992,-51.44646575299982],[-73.6690974599999,-51.438653252999835],[-73.69220943899995,-51.41448333099983],[-73.71955318899992,-51.356540623000015],[-73.72142493399988,-51.347751559999956],[-73.72142493399988,-51.309991143999895],[-73.7201228509999,-51.29924895599997],[-73.7174373039999,-51.2935523419999],[-73.71768144399996,-51.28850676899996],[-73.72508704299995,-51.27947356599995],[-73.74038652299988,-51.269219658999845],[-73.74596106699991,-51.263116143999945],[-73.74811764199993,-51.251885674999855],[-73.75283769399991,-51.248711846999974],[-73.7754613919999,-51.240899346999974],[-73.78282630099989,-51.234795830999985],[-73.78429114499994,-51.22356536299999],[-73.77940833199997,-51.21510182099995],[-73.77293860599987,-51.20875416499983],[-73.76984615799998,-51.20378997199988],[-73.75959225199995,-51.195000909],[-73.73713131399995,-51.20842864399999],[-73.70466061099995,-51.238213799999905],[-73.7010798819999,-51.24749114399996],[-73.70164954299986,-51.25823333099997],[-73.70103919199991,-51.26832447699985],[-73.6940811839999,-51.275811456],[-73.68272864499994,-51.27597421699988],[-73.68175208199997,-51.26490650799993],[-73.68785559799994,-51.24504973799993],[-73.69261633999986,-51.214532158999894],[-73.68919837099995,-51.20232512799982],[-73.67357337099986,-51.193780205999985],[-73.67357337099986,-51.18767669099991],[-73.69041907499988,-51.190850518999966],[-73.70490475199992,-51.19060637799993],[-73.71751868399988,-51.186781507999825],[-73.72883053299998,-51.179620049999876],[-73.72118079299995,-51.167901299999976],[-73.6940811839999,-51.13925546699991],[-73.70628821499987,-51.1315243469999],[-73.71548417899987,-51.135023695999806],[-73.72411048099988,-51.14218515399993],[-73.73501542899993,-51.145440362999885],[-73.74437415299988,-51.14185963299991],[-73.76984615799998,-51.11809661299982],[-73.77399654899992,-51.128350518999845],[-73.7710668609999,-51.13339609199996],[-73.76569576699984,-51.13746510199984],[-73.76231848899994,-51.145440362999885],[-73.76138261599993,-51.15960051899999],[-73.7628474599999,-51.163832289999924],[-73.76919511599992,-51.1661109349999],[-73.78282630099989,-51.1734351539999],[-73.85789954299992,-51.22795989399989],[-73.87938391799995,-51.23788827899988],[-73.89757239499991,-51.23853932099993],[-73.91397050699993,-51.23154062299995],[-73.94139563699989,-51.20924244599983],[-73.96727454299989,-51.19410572699983],[-73.97524980399996,-51.18767669099991],[-73.97813880099989,-51.1799455709999],[-73.98204505099997,-51.1522763],[-73.99217688699993,-51.136895440999865],[-74.00829016799992,-51.11858489399999],[-74.02330481699994,-51.111016533999944],[-74.0298966139999,-51.128024998],[-74.02562415299988,-51.14869557099992],[-74.01846269399992,-51.17050546699988],[-74.0169978509999,-51.190850518999966],[-74.0298966139999,-51.207614841999984],[-74.05402584499993,-51.2123348939999],[-74.07945716099994,-51.20468515399987],[-74.10505123599992,-51.19345468499996],[-74.12950598899994,-51.18767669099991],[-74.13597571499984,-51.176934502999984],[-74.13288326699987,-51.11126067499998],[-74.13459225199998,-51.09295012799992],[-74.14964758999989,-51.080254815999865],[-74.15444902299987,-51.070733330999964],[-74.15294348899994,-51.06096770599993],[-74.14806067599994,-51.05217864399996],[-74.09821529899988,-51.001641533999866],[-74.07770748599992,-50.98788827899994],[-74.08633378799993,-50.98162200299998],[-74.08682206899992,-50.97389088299997],[-74.08116614499993,-50.96624114399985],[-74.0714412099999,-50.960544528999876],[-74.0714412099999,-50.95370859199995],[-74.0891820949999,-50.95712655999995],[-74.10216223899988,-50.964532158999944],[-74.18399003799993,-51.03394947699988],[-74.19664466099991,-51.037692967],[-74.23224850199998,-51.0355770809999],[-74.23936926999991,-51.02792734199996],[-74.23884029899993,-50.98967864399984],[-74.24217688699989,-50.97421640399999],[-74.22451738199996,-50.96575286299987],[-74.22520911399991,-50.95582447699996],[-74.23790442599997,-50.94646575299993],[-74.25641842399997,-50.939385674999954],[-74.2325740229999,-50.90748463299994],[-74.19554602799988,-50.885023695999855],[-74.15103105399987,-50.87281666499997],[-74.10496985599994,-50.87118905999986],[-73.99571692599991,-50.88543059699986],[-73.97524980399996,-50.890801690999815],[-73.95173092399989,-50.89316171699987],[-73.93297278599992,-50.88640715899984],[-73.92682857999995,-50.86435312299993],[-73.90221106699994,-50.87330494599995],[-73.87425696499992,-50.88909270599991],[-73.85545813699989,-50.909600518999866],[-73.85789954299992,-50.93320077899999],[-73.80333411399994,-50.960544528999876],[-73.80174719999991,-50.94703541499981],[-73.79035396999984,-50.93132903399993],[-73.78966223899991,-50.91952890399987],[-73.81696529899997,-50.878024997999866],[-73.85789954299992,-50.84441497199985],[-73.86375891799985,-50.84286874799999],[-73.87096106699988,-50.84335702899998],[-73.87706458199996,-50.84189218499993],[-73.87970943899995,-50.83416106599983],[-73.87751217399996,-50.828383070999855],[-73.87254798099991,-50.82561614399999],[-73.86758378799996,-50.82382577899991],[-73.86538652299987,-50.820489190999886],[-73.85460364499997,-50.79729583099986],[-73.82998613199986,-50.79705169099991],[-73.80337480399993,-50.80852629999995],[-73.77660071499992,-50.82586028399994],[-73.7616267569999,-50.830010674999876],[-73.74791419199997,-50.82935963299983],[-73.74185136599995,-50.820489190999886],[-73.74787350199998,-50.81267669099989],[-73.77782141799995,-50.802341403999975],[-73.78966223899991,-50.79656340899983],[-73.78331458199996,-50.78826262799985],[-73.7767634759999,-50.7741838519999],[-73.77183997299991,-50.75847747199993],[-73.76984615799998,-50.74504973799985],[-73.77245032499988,-50.72966887799999],[-73.78254146999983,-50.700372002999885],[-73.78282630099989,-50.68678150799992],[-73.77293860599987,-50.67066822699995],[-73.75544186099992,-50.66025155999987],[-73.73542232999995,-50.65439218499992],[-73.70010331899994,-50.65032317499987],[-73.66820227799991,-50.640557549999826],[-73.6531469389999,-50.63836028399993],[-73.63670813699989,-50.63990650799997],[-73.62002519399996,-50.64446379999992],[-73.60448157499985,-50.650974216999906],[-73.59166419199991,-50.65886809699989],[-73.56114661399987,-50.700616143999916],[-73.55321204299992,-50.7072079409999],[-73.53335527299991,-50.70647551899987],[-73.53010006399995,-50.703383070999976],[-73.53237870999993,-50.69719817499982],[-73.52961178299996,-50.68678150799992],[-73.51992753799992,-50.67685312299992],[-73.50865637899992,-50.672784112999864],[-73.47435462099986,-50.67245859199984],[-73.48713131399992,-50.660088799999905],[-73.50767981699993,-50.65748463299982],[-73.53058834499987,-50.65748463299982],[-73.55011959499984,-50.65260182099993],[-73.55703691299993,-50.63355885199985],[-73.55996660099996,-50.628350518999945],[-73.56773841099997,-50.62444426899985],[-73.5778702459999,-50.62363046699985],[-73.59821529899992,-50.62468840899999],[-73.63536536399991,-50.618422132999854],[-73.66869055899988,-50.602634372999894],[-73.72508704299995,-50.559502862999885],[-73.72801673099988,-50.548028252999934],[-73.72105872299996,-50.533135674999976],[-73.70933997299987,-50.520277601999865],[-73.69782467399995,-50.51482512799992],[-73.65933183499996,-50.51295338299986],[-73.64216061099992,-50.50888437299999],[-73.62515214799987,-50.50115325299998],[-73.60700436099995,-50.483493747999965],[-73.58202063699986,-50.43206145599988],[-73.56371008999989,-50.40496184699985],[-73.58755449099988,-50.40341562299999],[-73.60912024599989,-50.424248955999886],[-73.64631100199998,-50.473809502999906],[-73.65794837099989,-50.48202890399991],[-73.6699926419999,-50.48845794099992],[-73.68317623599995,-50.49277109200001],[-73.70954342399995,-50.49667734199991],[-73.72911536399991,-50.506442966999956],[-73.7593888009999,-50.51572030999991],[-73.76781165299985,-50.53329843499994],[-73.77599036399997,-50.57691822699986],[-73.78380286399994,-50.58733489399994],[-73.79283606699997,-50.59343840899984],[-73.80020097599996,-50.60068124799986],[-73.80333411399994,-50.61443450299996],[-73.80117753799993,-50.62664153399985],[-73.79796301999988,-50.63616301899993],[-73.79832923099987,-50.645196221999946],[-73.8255102199999,-50.67945728999983],[-73.82298743399988,-50.69841887799984],[-73.81346594999987,-50.71754322699991],[-73.81078040299991,-50.74195728999995],[-73.82262122299997,-50.757907809999864],[-73.84609941299993,-50.77581145599992],[-73.87092037699989,-50.78964609199992],[-73.88613847599987,-50.79314544099982],[-73.89801998599992,-50.79241301899997],[-73.90733801999997,-50.799899997999944],[-73.92064368399988,-50.81707122199997],[-73.93712317599997,-50.82708098799986],[-73.94701087099989,-50.829766533999845],[-73.98521887899994,-50.830010674999876],[-74.04271399599995,-50.82203541499992],[-74.06061764199988,-50.81365325299987],[-74.11266028599992,-50.778008721999825],[-74.12608801999994,-50.76246510199982],[-74.06826738199993,-50.736097914999824],[-74.05719967399989,-50.72771575299994],[-74.06017005099989,-50.71200937299998],[-74.07848059799994,-50.70110442499991],[-74.11864173099988,-50.68678150799992],[-74.11709550699992,-50.70094166499994],[-74.11563066299996,-50.706963799999855],[-74.11241614499991,-50.71404387799983],[-74.1341039699999,-50.73300546699993],[-74.14712480399987,-50.72869231599984],[-74.16706295499995,-50.68678150799992],[-74.18195553299992,-50.666680596999875],[-74.22069251199984,-50.62607187299988],[-74.23595130099991,-50.60418059699994],[-74.21959387899992,-50.58570728999992],[-74.20262610599994,-50.572035414999974],[-74.19871985599994,-50.55901458099998],[-74.2216690749999,-50.54273853999987],[-74.23542232999995,-50.539971612999985],[-74.24864661399988,-50.53964609199997],[-74.25865637899994,-50.534763279],[-74.26622473899991,-50.506117445999934],[-74.27505449099996,-50.49667734199991],[-74.29735266799992,-50.48064544099993],[-74.28066972599987,-50.47470468499991],[-74.22105872299997,-50.46379973799992],[-74.20799719999988,-50.46363697699987],[-74.20400956899991,-50.477715753],[-74.19432532499985,-50.49537525799983],[-74.1820369129999,-50.51262786299993],[-74.17048092399997,-50.52548593499995],[-74.16038977799991,-50.54070403399993],[-74.14134680899991,-50.57976653399989],[-74.12608801999994,-50.590508722],[-74.10789954299986,-50.587823174999926],[-74.11579342399992,-50.56943124799988],[-74.14590410099996,-50.535902601999844],[-74.14069576699987,-50.531182549999926],[-74.13125566299993,-50.51970794099989],[-74.12608801999994,-50.51482512799992],[-74.14842688699989,-50.5062802059999],[-74.15680904899992,-50.493584893999845],[-74.14981035099996,-50.48308684699996],[-74.12608801999994,-50.48064544099993],[-74.10765540299991,-50.48837655999985],[-74.07127844999994,-50.51620859199999],[-74.05345618399986,-50.52223072699991],[-73.93871008999992,-50.539483330999914],[-73.91763261599988,-50.54599374799991],[-73.8972875639999,-50.549086195999806],[-73.87970943899995,-50.54273853999987],[-73.90709387899992,-50.5300432269999],[-73.97508704299989,-50.511488539999895],[-74.00568600199992,-50.508558851999965],[-74.01650956899991,-50.50269947699983],[-74.02009029899997,-50.48919036299995],[-74.01805579299995,-50.47421640399992],[-74.01252193899992,-50.46363697699987],[-74.0091853509999,-50.45533619599989],[-74.01500403599994,-50.44915129999992],[-74.02464758999992,-50.44670989399988],[-74.03294837099988,-50.449883721999946],[-74.05719967399989,-50.46705494599997],[-74.07335364499994,-50.46941497199984],[-74.08165442599991,-50.46624114399996],[-74.09813391799992,-50.44654713299983],[-74.12132727799985,-50.43230559699992],[-74.12889563699989,-50.42294687299989],[-74.11554928299998,-50.418633721999974],[-74.10098222599996,-50.41668059699993],[-74.08665930899988,-50.41082122199998],[-74.07579505099989,-50.401299737999985],[-74.0714412099999,-50.38827890399999],[-74.06436113199993,-50.37981536299987],[-74.04796301999991,-50.372491143999866],[-74.01622473899997,-50.363946221999846],[-74.0333552729999,-50.36296965899996],[-74.06725012899994,-50.35458749799999],[-74.08385169199991,-50.357191664999895],[-74.08653723899991,-50.362074476999965],[-74.08926347599987,-50.37981536299987],[-74.09068762899994,-50.384454033999894],[-74.09723873599992,-50.38730234199984],[-74.11180579299995,-50.389825127999856],[-74.16551673099991,-50.409600518999966],[-74.18130449099996,-50.41236744599984],[-74.2122289699999,-50.40569426899988],[-74.22874915299988,-50.40545012799984],[-74.25255286399988,-50.440524997999916],[-74.28746497299989,-50.42652760199994],[-74.31786048099985,-50.39934661299994],[-74.32127844999988,-50.384454033999894],[-74.31456458199992,-50.37761809699996],[-74.28990637899992,-50.340427341999884],[-74.28258216099994,-50.332207940999886],[-74.26915442599994,-50.3256161439999],[-74.26292883999987,-50.31707122199989],[-74.27696692599991,-50.302504164999945],[-74.26984615799998,-50.28069426899999],[-74.28270423099991,-50.26490650799995],[-74.30109615799994,-50.25855885199984],[-74.31041419199988,-50.26531340899996],[-74.31480872299997,-50.284356377999856],[-74.33397376199994,-50.3117815079999],[-74.3383682929999,-50.32642994599992],[-74.35484778599991,-50.35955169099995],[-74.39378821499989,-50.36589934699989],[-74.43932044199993,-50.35711028399982],[-74.47549394399987,-50.344170830999914],[-74.47020423099991,-50.34099700299985],[-74.46007239499994,-50.33294036299991],[-74.45441646999987,-50.32984791499984],[-74.46788489499994,-50.32431406],[-74.49543209499987,-50.32529062299988],[-74.50963294199988,-50.32301197699982],[-74.51488196499986,-50.31878020599989],[-74.53636633999987,-50.29631926899998],[-74.52281653599992,-50.282403253],[-74.49303137899992,-50.261488539999945],[-74.48176021999984,-50.24863046700001],[-74.49689693899992,-50.24928150799997],[-74.52155514199993,-50.2608374979999],[-74.53636633999987,-50.261488539999945],[-74.54914303299992,-50.254489841999956],[-74.54381262899996,-50.244073174999876],[-74.53148352799991,-50.23219166499984],[-74.52330481699991,-50.2206356749999],[-74.54784094999994,-50.22535572699982],[-74.56981360599984,-50.234551690999886],[-74.5925186839999,-50.240329684999935],[-74.61888587099989,-50.23495859199989],[-74.61461341099988,-50.22372812299998],[-74.60838782499994,-50.2146135399998],[-74.60065670499992,-50.20720794099982],[-74.59162350199992,-50.20077890399998],[-74.59845943899992,-50.19329192499984],[-74.62385006399995,-50.206231377999934],[-74.6556697259999,-50.21445077899993],[-74.68301347599996,-50.20940520599999],[-74.69465084499987,-50.18303801899999],[-74.69131425699993,-50.16855234199986],[-74.68309485599994,-50.15976327899998],[-74.66047115799998,-50.14560312299987],[-74.6405330069999,-50.12468840899991],[-74.6282852859999,-50.114922783999866],[-74.61546790299988,-50.11077239399984],[-74.60118567599989,-50.10857512799993],[-74.57371985599985,-50.09929778399989],[-74.55748450399992,-50.097100518999895],[-74.53673255099991,-50.10116952899994],[-74.53189042899993,-50.11060963299996],[-74.53302975199995,-50.12200286299993],[-74.53014075399994,-50.131280205999886],[-74.51870683499988,-50.134372653999954],[-74.50438391799989,-50.13193124799993],[-74.49518795499992,-50.12468840899991],[-74.49913489499991,-50.114190362999935],[-74.5064998039999,-50.10418059699986],[-74.50792395699997,-50.09433359199984],[-74.5039770169999,-50.08505624799997],[-74.49543209499987,-50.076592705999936],[-74.47679602799988,-50.08554452899996],[-74.46182206899994,-50.097100518999895],[-74.46865800699996,-50.097100518999895],[-74.46031653599991,-50.098402601999894],[-74.34764563699987,-50.086114190999844],[-74.3357641269999,-50.09010182099991],[-74.33092200399994,-50.10735442499992],[-74.3255102199999,-50.11223723799989],[-74.29942786399994,-50.12493254999995],[-74.28990637899992,-50.131280205999886],[-74.31753495999993,-50.161390882999825],[-74.32469641799989,-50.17278411299997],[-74.31432044199988,-50.16855234199986],[-74.30223548099988,-50.16529713299991],[-74.28941809799994,-50.16415780999988],[-74.27696692599991,-50.16529713299991],[-74.27163652299996,-50.16806405999996],[-74.26817786399997,-50.1757138],[-74.26260331899994,-50.1796200499999],[-74.24217688699989,-50.186455987999906],[-74.22496497299994,-50.19703541499996],[-74.20913652299991,-50.2107072899999],[-74.20295162699995,-50.22771575299987],[-74.2149145169999,-50.24863046700001],[-74.19440670499992,-50.25969817499987],[-74.17735755099997,-50.253187757999875],[-74.14590410099996,-50.22747161299992],[-74.12144934799991,-50.223077080999936],[-74.0964249339999,-50.227797132999854],[-73.95856686099992,-50.28777434699996],[-73.90599524599989,-50.29810963299997],[-73.85789954299992,-50.289483330999964],[-73.87677975199995,-50.274509372999844],[-73.97524980399996,-50.254815362999985],[-73.99913489499991,-50.241794529],[-74.02131100199988,-50.22478606599985],[-74.02550208199992,-50.21233489399992],[-73.99571692599991,-50.21379973799998],[-74.00609290299991,-50.201918226999844],[-74.02448482999995,-50.20086028399997],[-74.06432044199994,-50.20696379999996],[-74.07066809799997,-50.20484791499995],[-74.08226477799988,-50.19589609199993],[-74.09068762899994,-50.19329192499984],[-74.09886633999994,-50.194105726999844],[-74.11375891799989,-50.19939544099983],[-74.15908769399991,-50.20232512799985],[-74.17471269399988,-50.198500257999925],[-74.19371497299989,-50.186455987999906],[-74.20457923099988,-50.17620208099998],[-74.20889238199987,-50.16757577899997],[-74.2149145169999,-50.13876718499985],[-74.22191321499984,-50.123711846999925],[-74.23884029899993,-50.09775155999985],[-74.24217688699989,-50.080010674999855],[-74.2507218089999,-50.08098723799992],[-74.28970292899987,-50.065606377999885],[-74.3004451159999,-50.059258721999946],[-74.34666907499991,-50.01523202899985],[-74.36485755099989,-49.99032968499999],[-74.3587947259999,-49.973565362999885],[-74.36485755099989,-49.95110442499988],[-74.34943600199995,-49.93531666499993],[-74.32843990799992,-49.92750416499993],[-74.31786048099985,-49.929294528999925],[-74.31265214799987,-49.94963958099983],[-74.29971269399996,-49.948663018999845],[-74.28294837099995,-49.93873463299994],[-74.26634680899988,-49.93254973799987],[-74.22813880099991,-49.940524998],[-74.19810950399997,-49.960219007999875],[-74.14964758999989,-50.01140715899992],[-74.13947506399995,-50.01588307099989],[-74.13023841099988,-50.01181405999993],[-74.12132727799985,-50.005059502999984],[-74.11241614499991,-50.0015601539999],[-74.1037491529999,-50.00286223799999],[-74.07770748599992,-50.01523202899985],[-74.07310950399992,-50.019463799999954],[-74.06297766799993,-50.03167083099984],[-74.05719967399989,-50.035739841999984],[-74.04893958199989,-50.03704192499998],[-73.95417232999992,-50.02605559699993],[-73.9343155589999,-50.02890390399997],[-73.91954505099994,-50.04070403399985],[-73.90367591099991,-50.06943124799999],[-73.88589433499993,-50.076592705999936],[-73.88532467399995,-50.05608489399989],[-73.88902747299991,-50.03557708099993],[-73.89793860599994,-50.01848723799998],[-73.91319739499991,-50.007745049999876],[-73.94591223899994,-50.01767343499987],[-73.98371334499988,-50.01083749799995],[-74.00767981699994,-49.99138762799986],[-73.99913489499991,-49.96331145599994],[-73.96019446499994,-49.930596612999835],[-73.95103919199994,-49.92587656],[-73.91380774599986,-49.926039320999884],[-73.89598548099988,-49.924248955999985],[-73.87970943899995,-49.9190406229999],[-73.90416419199991,-49.91570403399996],[-73.91014563699991,-49.90162525799983],[-73.90636145699989,-49.85686614399998],[-73.91982988199987,-49.867364190999865],[-73.93492591099988,-49.89478932099991],[-73.9473363919999,-49.90536874799995],[-73.95702063699989,-49.906345309999935],[-73.98070227799988,-49.9030087219999],[-73.98957271999984,-49.90536874799995],[-73.99111894399988,-49.9108212219999],[-73.99388587099995,-49.93238697699982],[-73.99571692599991,-49.93938567499998],[-74.01471920499992,-49.95956796699992],[-74.0359594389999,-49.964776299999826],[-74.08726966099992,-49.95989348799994],[-74.11046301999994,-49.95468515399995],[-74.12336178299998,-49.941827080999836],[-74.13288326699987,-49.9259579409999],[-74.14590410099996,-49.91155364399993],[-74.18854732999989,-49.89812590899994],[-74.28892981699994,-49.89348723799991],[-74.32469641799989,-49.87118905999988],[-74.34227454299992,-49.830010674999905],[-74.34886633999989,-49.80575937299991],[-74.34825598899994,-49.79208749799997],[-74.3357641269999,-49.787041924999855],[-74.32209225199998,-49.78932057099991],[-74.30874589799987,-49.793715101999815],[-74.29735266799992,-49.79550546699989],[-74.28579667899987,-49.79168059699997],[-74.27985592399995,-49.78630950299983],[-74.2757869129999,-49.780368747999894],[-74.27009029899992,-49.77499765399993],[-74.2472224599999,-49.76336028399984],[-74.22280839799996,-49.75457122199987],[-74.19713294199991,-49.748955987999956],[-74.09316972599996,-49.74822356599993],[-74.0714412099999,-49.741469007999896],[-74.07603919199991,-49.73512135199996],[-74.07530676999988,-49.72820403399995],[-74.07070878799996,-49.720879815999865],[-74.0640356109999,-49.71355559699986],[-74.09886633999994,-49.71257903399997],[-74.16698157499988,-49.71884530999992],[-74.20164954299986,-49.728448175],[-74.24893144399991,-49.72771575299997],[-74.27892005099997,-49.740899346999925],[-74.28990637899992,-49.741469007999896],[-74.31627356699994,-49.719496351999965],[-74.32677161399991,-49.677178643999966],[-74.32225501199994,-49.632500909],[-74.30357825399997,-49.60369231599997],[-74.26231848899991,-49.58709075299992],[-74.25951087099986,-49.58375416499989],[-74.25377356699988,-49.58049895599994],[-74.24494381399991,-49.57333749799999],[-74.23387610599991,-49.56601327899999],[-74.2216690749999,-49.562676690999965],[-74.16954505099989,-49.559991143999895],[-74.14696204299992,-49.55584075299994],[-74.1037491529999,-49.541273695999834],[-74.07852128799993,-49.53687916499994],[-74.05382239499995,-49.53932057099997],[-74.03294837099988,-49.55242278399985],[-74.02855383999992,-49.5690243469999],[-74.03307044199997,-49.58814869599997],[-74.03514563699989,-49.60572682099982],[-74.0230199859999,-49.6178524719999],[-74.00690670499992,-49.57105885199993],[-73.99913489499991,-49.55925872199986],[-73.98350989499994,-49.55291106599993],[-73.96182206899996,-49.553480726999894],[-73.94074459499984,-49.55966562299987],[-73.92682857999995,-49.56951262799989],[-73.93390865799992,-49.58269622199984],[-73.92821204299995,-49.591403904],[-73.9183650379999,-49.600274346999875],[-73.91319739499991,-49.61419036299986],[-73.91177324099993,-49.62786223799998],[-73.90782630099994,-49.63982512799983],[-73.90135657499984,-49.64999765399987],[-73.89268958199995,-49.65829843499985],[-73.80882727799988,-49.68840911299987],[-73.79649817599991,-49.70289478999983],[-73.7555232409999,-49.72771575299997],[-73.74596106699991,-49.73674895599998],[-73.7395727199999,-49.745049737999864],[-73.73607337099989,-49.75546640399986],[-73.73501542899993,-49.77117278399982],[-73.72785396999988,-49.78167083099989],[-73.71198482999998,-49.76555754999992],[-73.69579016799992,-49.7396786439999],[-73.68785559799994,-49.72031015399998],[-73.71255449099993,-49.716078382999875],[-73.72435462099992,-49.71257903399997],[-73.73501542899993,-49.706719658999845],[-73.74038652299988,-49.70094166499997],[-73.74632727799994,-49.68938567499985],[-73.75182044199994,-49.68279387799988],[-73.7726944649999,-49.668552341999956],[-73.79063880099997,-49.66472747199986],[-73.81061764199987,-49.66399504999983],[-73.83739173099985,-49.65829843499985],[-73.85252844999985,-49.65325286299982],[-73.85496985599988,-49.65081145599988],[-73.8536677729999,-49.64544036299983],[-73.86424719999994,-49.61646900799983],[-73.86896725199995,-49.608168226999844],[-73.87588456899994,-49.600518487999906],[-73.87877356699987,-49.58814869599997],[-73.87633216099994,-49.54436614399991],[-73.87970943899995,-49.528497002999885],[-73.91527258999992,-49.51051197699985],[-74.07770748599992,-49.50115325299999],[-74.09097245999988,-49.49716562299992],[-74.10216223899988,-49.49187590899995],[-74.10968990799992,-49.48357512799997],[-74.11241614499991,-49.47014739399989],[-74.10753333199995,-49.44833749799993],[-74.10777747299989,-49.437188409],[-74.11554928299998,-49.43230559699994],[-74.12352454299995,-49.42262135199989],[-74.11961829299995,-49.40081145599993],[-74.09068762899994,-49.32236093499997],[-74.08576412699998,-49.2994117169999],[-74.08385169199991,-49.27809010199993],[-74.07445227799988,-49.26165129999993],[-74.0523982409999,-49.25855885199986],[-74.02745520699997,-49.264580987999864],[-74.00877844999988,-49.27467213299983],[-73.99266516799992,-49.29404062299994],[-73.97972571499992,-49.314060154],[-73.96353105399996,-49.32976653399996],[-73.92735755099994,-49.33798593499996],[-73.9092504549999,-49.34685637799983],[-73.89952551999995,-49.349786065999936],[-73.84487870999992,-49.349786065999936],[-73.84487870999992,-49.3435197899998],[-73.92454993399988,-49.32122161299986],[-73.9473363919999,-49.30877044099993],[-73.98509680899988,-49.27337004999983],[-74.00243079299986,-49.24920012799983],[-74.00877844999988,-49.22625090899984],[-74.00462805899986,-49.215264580999964],[-73.98204505099997,-49.186618747999894],[-73.97793535099993,-49.171156507999875],[-73.97972571499992,-49.16423919099997],[-73.98460852799988,-49.15960051899986],[-73.98957271999984,-49.151788018999866],[-73.99762936099995,-49.12493254999997],[-74.00255286399992,-49.11695728999983],[-74.01097571499989,-49.10735442499994],[-74.04352779899995,-49.082940362999985],[-73.97760982999989,-49.03736744599984],[-73.94225012899987,-49.02353280999984],[-73.89952551999995,-49.02825286299986],[-73.87169348899991,-49.048272393999916],[-73.85472571499994,-49.057061455999886],[-73.83739173099985,-49.056247653999876],[-73.82184811099995,-49.04225025799991],[-73.83287512899989,-49.03215911299994],[-73.86876380099989,-49.01799895599992],[-73.88923092399995,-49.007419528999876],[-73.91274980399989,-49.00725676899991],[-74.03058834499983,-49.022881768999895],[-74.04662024599992,-49.01799895599992],[-74.05748450399992,-49.012465101999815],[-74.06265214799993,-49.020765882999974],[-74.06411699099986,-49.033868096999946],[-74.0640356109999,-49.04192473799998],[-74.06004798099991,-49.051202080999936],[-74.04649817599994,-49.069594007999974],[-74.04352779899995,-49.07976653399984],[-74.04771887899996,-49.10003020599993],[-74.05394446499994,-49.11663176899999],[-74.05308997299994,-49.13111744599994],[-74.03604081899988,-49.14495208099984],[-74.0787654289999,-49.198663018999824],[-74.10643469999988,-49.22128671699997],[-74.13288326699987,-49.22625090899984],[-74.14150956899987,-49.22079843499989],[-74.1572973299999,-49.20403411299996],[-74.16706295499995,-49.19963958099997],[-74.17662512899994,-49.19988372199984],[-74.18667558499992,-49.202732028999876],[-74.19286048099988,-49.208184503],[-74.19066321499989,-49.21640390399999],[-74.18268795499995,-49.22161223799999],[-74.16344153599991,-49.23007577899994],[-74.15965735599988,-49.23691171699995],[-74.15811113199993,-49.24439869599993],[-74.15013587099989,-49.261163018999945],[-74.14590410099996,-49.267836195999905],[-74.15196692599994,-49.2764624979999],[-74.1539607409999,-49.28508879999991],[-74.15196692599994,-49.293715101999915],[-74.14590410099996,-49.302015882999896],[-74.15245520699995,-49.313653252999984],[-74.15672766799986,-49.32586028399988],[-74.15892493399994,-49.338799737999885],[-74.15965735599988,-49.353204033999944],[-74.1629532539999,-49.36728280999989],[-74.17796790299992,-49.386325778999975],[-74.18130449099996,-49.39470794099985],[-74.19473222599996,-49.469984632999825],[-74.18748938699994,-49.48756275799986],[-74.2149145169999,-49.52312590899992],[-74.24111894399991,-49.52792734199991],[-74.27049719999991,-49.50994231599987],[-74.30699622299997,-49.476983330999985],[-74.31859290299987,-49.46298593499985],[-74.32725989499988,-49.44817473799996],[-74.33714758999989,-49.43499114399983],[-74.35195878799988,-49.42546965899992],[-74.38023841099994,-49.41887786299986],[-74.39488684799994,-49.41318124799987],[-74.41030839799987,-49.40129973799982],[-74.42275956899988,-49.384698174999954],[-74.42414303299995,-49.37118905999998],[-74.41685950399993,-49.359063408999894],[-74.40347245999993,-49.346774997999844],[-74.3946833979999,-49.333184502999885],[-74.39354407499985,-49.317478122999916],[-74.41270911399991,-49.21884530999985],[-74.40404212099992,-49.1935360659999],[-74.37189693899994,-49.186618747999894],[-74.40127519399995,-49.15764739399999],[-74.41087805899993,-49.140557549999954],[-74.41344153599994,-49.11695728999983],[-74.41087805899993,-49.105645440999936],[-74.40176347599993,-49.08863697699987],[-74.39976966099991,-49.07976653399984],[-74.40550696499989,-49.06780364399999],[-74.4183650379999,-49.070407809999985],[-74.43224036399988,-49.0803361959999],[-74.44078528599991,-49.090427341999956],[-74.45396887899994,-49.08017343500002],[-74.46263587099985,-49.06633879999993],[-74.46727454299989,-49.04989999799994],[-74.46865800699996,-49.031670830999865],[-74.46133378799996,-49.01970794099984],[-74.44448808499996,-49.01230234199985],[-74.42601477799992,-49.00693124799989],[-74.41344153599994,-49.00090911299997],[-74.40314693899992,-48.98723723799985],[-74.40054277299993,-48.97478606599992],[-74.40526282499994,-48.96233489399999],[-74.41685950399993,-48.9493954409999],[-74.42247473899994,-48.93499114399993],[-74.4063207669999,-48.92880624799996],[-74.38263912699998,-48.92864348799999],[-74.3656306629999,-48.932061456],[-74.38052324099996,-48.92107512799995],[-74.41226152299993,-48.91253020599992],[-74.42711341099988,-48.904717705999936],[-74.43464107999992,-48.89568450299993],[-74.43895423099994,-48.884047132999825],[-74.43565833199989,-48.87420012799999],[-74.42027747299994,-48.87070077899991],[-74.42027747299994,-48.8632138],[-74.44595292899993,-48.85149504999986],[-74.45348059799997,-48.83098723799999],[-74.44790605399987,-48.80779387799996],[-74.43455969999985,-48.78801848799994],[-74.39976966099991,-48.760837497999844],[-74.39281165299991,-48.74895598799997],[-74.38833574099993,-48.737888278999854],[-74.38263912699998,-48.727634373],[-74.37189693899994,-48.71917083099997],[-74.34105383999989,-48.752373955999985],[-74.33482825399994,-48.75505950299988],[-74.33641516799986,-48.75107187299999],[-74.3383682929999,-48.740329684999885],[-74.30687415299991,-48.749932549999954],[-74.27236894399988,-48.741387627999934],[-74.23643958199992,-48.726983330999964],[-74.2005509109999,-48.71917083099997],[-74.11864173099988,-48.72665780999994],[-74.10472571499989,-48.732028903999904],[-74.09097245999988,-48.739190362999935],[-74.07575436099988,-48.74358489399983],[-74.06672115799998,-48.74195728999982],[-74.05719967399989,-48.740329684999885],[-74.05719967399989,-48.732842705999914],[-74.08922278599988,-48.71721770599993],[-74.12816321499984,-48.70720794099994],[-74.16934160099993,-48.70330169099985],[-74.20799719999988,-48.706149997999894],[-74.2727758449999,-48.725030205999914],[-74.30622311099995,-48.727715752999984],[-74.33092200399994,-48.712985935],[-74.32237708199992,-48.70403411299988],[-74.31281490799992,-48.69752369599989],[-74.30211341099991,-48.69353606599982],[-74.28990637899992,-48.69247812299995],[-74.29796301999997,-48.68287525799988],[-74.30711829299995,-48.67913176899985],[-74.31468665299991,-48.67506275799988],[-74.31786048099985,-48.66448333099984],[-74.3289281889999,-48.67799244599982],[-74.34715735599988,-48.68474700299994],[-74.36432857999992,-48.68230559699991],[-74.37189693899994,-48.66806405999991],[-74.37026933499993,-48.639092706],[-74.37189693899994,-48.63103606599988],[-74.3790583979999,-48.62460702899987],[-74.38829505099994,-48.62330494599987],[-74.39622962099992,-48.620782158999944],[-74.39976966099991,-48.61052825299992],[-74.39216061099995,-48.59905364399988],[-74.32799231699991,-48.54900481599995],[-74.30874589799987,-48.54143645599991],[-74.28807532499985,-48.53655364399985],[-74.27009029899992,-48.53484465899993],[-74.28327389199987,-48.523532809999864],[-74.27037512899994,-48.510918877999885],[-74.23224850199998,-48.490166924999876],[-74.22545325399994,-48.48495859199997],[-74.21593176999994,-48.47958749799993],[-74.20567786399991,-48.475192966999856],[-74.19713294199991,-48.47332122199988],[-74.18663489499994,-48.47665780999991],[-74.16576087099986,-48.49065520599987],[-74.13687089799996,-48.50017669099995],[-74.08385169199991,-48.54168059699986],[-74.0528051419999,-48.549899997999944],[-74.04352779899995,-48.555352471999896],[-74.03701738199996,-48.56340911299992],[-74.02708899599985,-48.583672783999845],[-74.0230199859999,-48.58945077899999],[-73.99347896999984,-48.597263278999975],[-73.97541256399992,-48.58407968499985],[-73.97183183499993,-48.56503671699994],[-73.98574785099993,-48.555352471999896],[-74.00987708199995,-48.549086195999934],[-74.02061926999994,-48.533623955999914],[-74.02330481699994,-48.512465101999915],[-74.0230199859999,-48.490166924999876],[-74.02855383999992,-48.448011976999936],[-74.01984615799992,-48.438409112999864],[-73.91641191299996,-48.41887786299996],[-73.89268958199995,-48.41130950299984],[-73.89956620999996,-48.40195077899999],[-73.90367591099991,-48.39959075299994],[-73.91319739499991,-48.3976376279999],[-73.93529212099989,-48.395684502999856],[-73.99551347599996,-48.41415780999987],[-74.0298966139999,-48.41130950299984],[-74.03677324099989,-48.40732187299985],[-74.04991614499997,-48.394952080999914],[-74.05719967399989,-48.39080169099988],[-74.06529700399992,-48.389743748],[-74.08242753799993,-48.391208591999884],[-74.09068762899994,-48.39080169099988],[-74.10928300699993,-48.38567473799995],[-74.12022864499991,-48.37908294099989],[-74.13906816299993,-48.36345794099991],[-74.15493730399986,-48.357842705999985],[-74.22728430899991,-48.353936456],[-74.23790442599997,-48.35076262799994],[-74.23696855399987,-48.345310153999904],[-74.2216690749999,-48.335625908999944],[-74.20555579299985,-48.3306617169999],[-74.15339107999992,-48.329359632999896],[-74.10334225199992,-48.31731536299997],[-74.08385169199991,-48.31568775799987],[-74.10716712099992,-48.306084893999966],[-74.13560950399994,-48.303399347],[-74.18748938699994,-48.30885182099985],[-74.21104895699996,-48.31519947699988],[-74.26158606699988,-48.335137627999956],[-74.27009029899992,-48.335625908999944],[-74.27863521999983,-48.326836846999875],[-74.27481035099993,-48.31796640399993],[-74.2667537099999,-48.30917734199987],[-74.26260331899994,-48.30144622199995],[-74.26423092399997,-48.28932057099995],[-74.2671606109999,-48.28134530999991],[-74.27696692599991,-48.267266533999866],[-74.29088294199991,-48.255547783999965],[-74.30793209499987,-48.24439869599986],[-74.31969153599994,-48.231052341999856],[-74.31786048099985,-48.212090752999835],[-74.39826412699995,-48.199314059999885],[-74.4424942699999,-48.18238697699982],[-74.46182206899994,-48.15439218499989],[-74.46963456899994,-48.14706796699988],[-74.50177975199989,-48.10564544099996],[-74.50625566299996,-48.09596119599982],[-74.5120743479999,-48.08993905999991],[-74.49889075399997,-48.07642994599992],[-74.46865800699996,-48.055759372999916],[-74.46865800699996,-48.04810963299997],[-74.4732966789999,-48.0407040339999],[-74.47272701699993,-48.03671640399992],[-74.46865800699996,-48.027764580999985],[-74.49461829299986,-48.03386809699988],[-74.54112708199989,-48.064385675],[-74.56427975199992,-48.07545338299995],[-74.58803602899991,-48.07998514899992],[-74.60814797099988,-48.07520362999989],[-74.62682328499992,-48.058903881999846],[-74.63257070399993,-48.034923552],[-74.62970345499994,-48.021493307999954],[-74.6254093239999,-48.00422707199999],[-74.6039070249999,-47.9965485999999],[-74.59504146999993,-47.99358489399999],[-74.57274329299989,-47.987725518999866],[-74.53746497299994,-47.96306731599995],[-74.51707923099985,-47.95940520599991],[-74.5051977199999,-47.96355559699993],[-74.48399817599991,-47.977146092],[-74.47207597599987,-47.97991301899995],[-74.4273982409999,-47.97991301899995],[-74.41539466099988,-47.98365650799998],[-74.3855688139999,-48.00790780999989],[-74.37584387899994,-48.01132577899999],[-74.3539119129999,-48.016289971999846],[-74.34455318899997,-48.02092864399988],[-74.33438066299993,-48.03215911299988],[-74.30870520699997,-48.07170989399992],[-74.30357825399997,-48.08570728999989],[-74.29674231699994,-48.12867603999984],[-74.28376217399995,-48.17107512799993],[-74.27647864499994,-48.18450286299991],[-74.27236894399988,-48.18816497199996],[-74.25267493399986,-48.18531666499993],[-74.24583899599992,-48.18824635199995],[-74.24054928299995,-48.19524504999984],[-74.23713131399995,-48.203057549999926],[-74.23595130099991,-48.208916924999954],[-74.22691809799991,-48.22869231599989],[-74.20563717399992,-48.231052341999856],[-74.1803279289999,-48.22291432099992],[-74.1719864569999,-48.21860116999993],[-74.18504798099991,-48.21892669099995],[-74.19603430899986,-48.213474216999906],[-74.2005509109999,-48.20240650799988],[-74.20091712099992,-48.19296640399995],[-74.20303300699992,-48.19109465899998],[-74.2083227199999,-48.189711195999905],[-74.21825110599991,-48.181735934999864],[-74.23249264199993,-48.16464609199991],[-74.23460852799994,-48.15911223799997],[-74.23595130099991,-48.15113697699985],[-74.23387610599991,-48.14641692499984],[-74.2225642569999,-48.14283619599995],[-74.2216690749999,-48.13689544099993],[-74.22590084499984,-48.13160572699986],[-74.23200436099992,-48.13095468499999],[-74.23802649599995,-48.13152434699988],[-74.24217688699989,-48.13014088299998],[-74.25129146999986,-48.11956145599986],[-74.25763912699989,-48.11394622199985],[-74.26138261599993,-48.10702890399995],[-74.26260331899994,-48.092868748],[-74.28209387899994,-48.06731536299985],[-74.28685462099995,-48.062432549999954],[-74.29767818899992,-48.05445728999992],[-74.31407630099993,-48.035902601999815],[-74.32787024599995,-48.015232028999975],[-74.33092200399994,-48.00042083099999],[-74.3099666009999,-47.990411065999936],[-74.24535071499994,-47.99968840899997],[-74.22508704299992,-47.99700286299999],[-74.20417232999996,-47.98992278399985],[-74.06061764199988,-48.00042083099999],[-74.04954993399984,-48.00579192499988],[-74.04149329299992,-48.02922942499994],[-74.03294837099988,-48.034437757999854],[-74.02375240799992,-48.032647393999866],[-74.02033443899992,-48.029066664999974],[-74.01561438699991,-48.02646249799998],[-74.00255286399992,-48.027764580999985],[-73.99250240799995,-48.03215911299988],[-73.97297115799998,-48.04534270599991],[-73.9615779289999,-48.04810963299997],[-73.91698157499994,-48.02947356599998],[-73.89110266799992,-48.02223072699988],[-73.87970943899995,-48.03118254999998],[-73.87645423099991,-48.03883228999993],[-73.86925208199996,-48.04094817499994],[-73.86172441299993,-48.04094817499994],[-73.85789954299992,-48.041924737999906],[-73.85773678299995,-48.04876067499983],[-73.86025956899996,-48.05380624799987],[-73.8635147779999,-48.05779387799994],[-73.86538652299987,-48.062432549999954],[-73.86969967399996,-48.06910572699983],[-73.87755286399997,-48.077406507999896],[-73.88288326699993,-48.08660247199988],[-73.87970943899995,-48.09596119599982],[-73.86685136599993,-48.09238046699992],[-73.82164466099991,-48.05689869599995],[-73.79027258999986,-48.04436614399994],[-73.7805883449999,-48.02922942499994],[-73.76984615799998,-48.027764580999985],[-73.76211503799988,-48.03248463299998],[-73.75890051999991,-48.041273695999955],[-73.75914466099997,-48.05201588299988],[-73.76231848899994,-48.062432549999954],[-73.79238847599987,-48.090752862999906],[-73.80418860599994,-48.108086847],[-73.79308020699992,-48.11589934699989],[-73.78502356699997,-48.11060963299991],[-73.76207434799989,-48.08749765399987],[-73.74811764199993,-48.08171965899999],[-73.73839270699995,-48.084405205999886],[-73.70152747299987,-48.10279713299984],[-73.6769099599999,-48.108005467],[-73.6497289699999,-48.109633070999934],[-73.63621985599991,-48.112888278999975],[-73.61188717399995,-48.12688567499993],[-73.60130774599989,-48.13014088299998],[-73.5917048819999,-48.14072030999995],[-73.59137936099998,-48.16464609199991],[-73.59683183499992,-48.190199476999894],[-73.60472571499989,-48.20582447699998],[-73.58755449099988,-48.212090752999835],[-73.57738196499992,-48.22112395599994],[-73.55626380099991,-48.246840101999894],[-73.54743404899995,-48.23406340899985],[-73.52961178299996,-48.198988539999874],[-73.51650956899991,-48.185723565999936],[-73.5023494129999,-48.17717864399999],[-73.4863988919999,-48.17253997199998],[-73.46751868399984,-48.17107512799993],[-73.43358313699991,-48.176690362999835],[-73.35142981699991,-48.21949635199992],[-73.35252844999988,-48.20476653399993],[-73.34919186099992,-48.19150156],[-73.34089107999995,-48.181735934999864],[-73.31582597599996,-48.173760675],[-73.29336503799996,-48.15545012799994],[-73.28624426999991,-48.15113697699985],[-73.27668209499993,-48.1383602839999],[-73.27623450399992,-48.10947030999998],[-73.28180904899992,-48.079278252999956],[-73.29002844999994,-48.062432549999954],[-73.29116777299987,-48.07244231599995],[-73.29002844999994,-48.11272551899984],[-73.29458574099986,-48.127048435],[-73.30565344999991,-48.13453541499988],[-73.33096269399994,-48.14373137799994],[-73.35065670499989,-48.15455494599995],[-73.37482662699989,-48.162530205999985],[-73.40029863199989,-48.162041925],[-73.43545488199987,-48.13990650799994],[-73.48180091099994,-48.123304945999976],[-73.50645911399992,-48.09482187299996],[-73.51219641799992,-48.0897763],[-73.53091386599988,-48.08367278399986],[-73.59166419199991,-48.041924737999906],[-73.58063717399997,-48.02288176899992],[-73.58096269399991,-48.01287200299993],[-73.5917048819999,-48.00701262799989],[-73.62718665299991,-47.99342213299994],[-73.64220130099991,-47.983575128],[-73.64720618399988,-47.9737281229999],[-73.63263912699993,-47.96624114399984],[-73.63263912699993,-47.95940520599991],[-73.6458227199999,-47.95110442499984],[-73.65526282499991,-47.93230559699997],[-73.65855872299994,-47.91179778399993],[-73.6531469389999,-47.898044529],[-73.64268958199992,-47.89657968499995],[-73.58210201699984,-47.907647393999895],[-73.57559160099993,-47.90984465899989],[-73.55772864499995,-47.93368905999995],[-73.54759680899991,-47.95289478999983],[-73.54015051999994,-47.96282317499991],[-73.5325821609999,-47.96754322699984],[-73.50706946499989,-47.97795989399991],[-73.49852454299989,-47.97991301899995],[-73.42609615799992,-47.9883765599999],[-73.34483801999994,-47.978936455999985],[-73.31460527299993,-47.98007577900002],[-73.27318274599992,-48.00115325299985],[-73.24596106699991,-48.00725676899994],[-73.22785396999993,-48.00408294099987],[-73.23534094999988,-47.986748955999886],[-73.2573136059999,-47.97649504999995],[-73.31354732999998,-47.971937757999825],[-73.35558020699995,-47.955661716999884],[-73.44082597599993,-47.96624114399984],[-73.46833248599995,-47.96591562299998],[-73.48131262899994,-47.96306731599995],[-73.52619381399995,-47.93206145599993],[-73.52599036399991,-47.92839934699998],[-73.51260331899991,-47.90797291499992],[-73.50910396999993,-47.898044529],[-73.51109778599997,-47.88640715899999],[-73.51683508999994,-47.87851327899993],[-73.52574622299997,-47.8734677059999],[-73.53701738199987,-47.870049737999885],[-73.54092363199996,-47.88420989399999],[-73.54979407499991,-47.89023202899992],[-73.56151282499991,-47.8886044249999],[-73.57428951699984,-47.88030364399991],[-73.58360755099989,-47.8760718729999],[-73.61217200399997,-47.867771092],[-73.61900794199988,-47.863864842],[-73.61302649599989,-47.848402601999894],[-73.59292558499993,-47.83098723799992],[-73.56867428299995,-47.81609465899997],[-73.55011959499984,-47.80803801899985],[-73.57823645699992,-47.79973723799995],[-73.67357337099986,-47.79436614399991],[-73.69839433499993,-47.78590260199995],[-73.70970618399991,-47.77605559699985],[-73.71751868399988,-47.762465101999894],[-73.73192298099984,-47.74309661299988],[-73.74095618399988,-47.703057549999926],[-73.7071020169999,-47.67351653399996],[-73.6690974599999,-47.6470679669999],[-73.66616777299987,-47.61630624799991],[-73.68346106699988,-47.62444426899984],[-73.70152747299987,-47.62981536299989],[-73.7084041009999,-47.60947030999998],[-73.70278886599989,-47.593194268999866],[-73.68956458199995,-47.57984791499986],[-73.67357337099986,-47.56845468499989],[-73.68248450399992,-47.559258722],[-73.69286048099991,-47.55478280999995],[-73.70384680899986,-47.55527109199993],[-73.71458899599989,-47.56161874799987],[-73.72321529899997,-47.55388762799995],[-73.7279353509999,-47.54656340899986],[-73.72765051999994,-47.539971612999956],[-73.72142493399988,-47.5342749979999],[-73.72142493399988,-47.52743905999996],[-73.73631751199993,-47.53533294099995],[-73.7549535799999,-47.57577890399997],[-73.77599036399997,-47.58896249799993],[-73.77599036399997,-47.595798434999864],[-73.73094641799989,-47.62371184699998],[-73.74323482999995,-47.65837981599988],[-73.77525794199994,-47.697686455999886],[-73.78966223899991,-47.739678643999866],[-73.78563391799992,-47.74944426899999],[-73.77257239499994,-47.76523202899995],[-73.76984615799998,-47.77076588299995],[-73.77293860599987,-47.77947356599995],[-73.78652910099993,-47.7926571589999],[-73.78966223899991,-47.798028252999956],[-73.80186926999997,-47.80706145599987],[-73.87970943899995,-47.82219817499987],[-73.91319739499991,-47.840101820999834],[-73.92369544199988,-47.84270598799992],[-73.93472245999993,-47.841729424999855],[-73.95372473899994,-47.83709075299999],[-73.99543209499987,-47.83538176899999],[-74.00934811099995,-47.83318450299991],[-74.0230199859999,-47.8285458309999],[-74.0350642569999,-47.82146575299984],[-74.03892981699991,-47.81585051899992],[-74.04002844999985,-47.80982838299983],[-74.04352779899995,-47.80185312299996],[-74.06773841099994,-47.77076588299995],[-74.07371985599984,-47.77304452900002],[-74.1974991529999,-47.789239190999886],[-74.2216690749999,-47.788181248000015],[-74.26414954299989,-47.77304452900002],[-74.29137122299987,-47.768161716999956],[-74.31798255099994,-47.78972747199988],[-74.35069739499997,-47.788506768999866],[-74.38573157499985,-47.779066664999945],[-74.40721594999988,-47.76767343499998],[-74.39073645699989,-47.76425546699996],[-74.34386145699995,-47.760511976999844],[-74.3383682929999,-47.754001559999935],[-74.35496985599988,-47.74439869599988],[-74.37840735599985,-47.74480559699988],[-74.47744706899994,-47.76213958099987],[-74.53258216099997,-47.78199635199996],[-74.5488988919999,-47.78476327900002],[-74.54381262899996,-47.77385833099986],[-74.54381262899996,-47.76767343499998],[-74.57868404899989,-47.77214934699985],[-74.62840735599988,-47.76775481599995],[-74.67007402299996,-47.75457122199999],[-74.68097896999993,-47.73284270599994],[-74.6939998039999,-47.73821379999998],[-74.71076412699992,-47.73739999799997],[-74.72618567599997,-47.730726820999934],[-74.73558508999989,-47.718682549999905],[-74.73623613199993,-47.70452239399998],[-74.72883053299994,-47.696058851999865],[-74.70490475199989,-47.681329033999866],[-74.68504798099988,-47.65837981599988],[-74.67271887899994,-47.648207289999924],[-74.65672766799995,-47.644138278999876],[-74.6378474599999,-47.645765882999896],[-74.59504146999993,-47.65650807099982],[-74.57795162699998,-47.66399504999988],[-74.58291581899991,-47.67066822699992],[-74.59162350199992,-47.6919898419999],[-74.57787024599989,-47.68873463299994],[-74.56761633999986,-47.68092213299987],[-74.55064856699988,-47.66399504999988],[-74.5626521479999,-47.653415623000015],[-74.58307857999998,-47.64226653399999],[-74.60521399599986,-47.63347747199994],[-74.62267005099991,-47.62981536299989],[-74.63219153599991,-47.62127044099995],[-74.62559973899994,-47.602146091999984],[-74.6148982409999,-47.58123137799984],[-74.61213131399995,-47.56845468499989],[-74.55671139199988,-47.550062757999854],[-74.5332738919999,-47.54794687299993],[-74.52232825399994,-47.560316664999874],[-74.52261308499988,-47.58513762799993],[-74.52065995999992,-47.60320403399994],[-74.50283769399994,-47.595798434999864],[-74.49624589799987,-47.586114190999986],[-74.48940995999996,-47.564060153999904],[-74.48176021999984,-47.55478280999995],[-74.47118079299989,-47.55055103999993],[-74.46051998599995,-47.55103932099992],[-74.43765214799993,-47.55478280999995],[-74.41991126199993,-47.563409112999864],[-74.41218014199984,-47.60361093499995],[-74.39976966099991,-47.61630624799991],[-74.39867102799985,-47.60393645599997],[-74.39354407499985,-47.593194268999866],[-74.38442949099996,-47.58717213299995],[-74.37189693899994,-47.58896249799993],[-74.36961829299989,-47.59498463299985],[-74.35195878799988,-47.62656015400002],[-74.34455318899997,-47.6366513],[-74.37413489499994,-47.65618254999997],[-74.45588131399992,-47.671563408999916],[-74.48176021999984,-47.69882577899992],[-74.3855688139999,-47.67831796699987],[-74.36620032499988,-47.67197031000002],[-74.35602779899992,-47.66985442499991],[-74.34455318899997,-47.67083098799998],[-74.32876542899993,-47.67555103999982],[-74.32738196499986,-47.6794572899999],[-74.32966061099991,-47.68613046699994],[-74.32469641799989,-47.69882577899992],[-74.29588782499985,-47.72535572699988],[-74.25328528599991,-47.74716562299993],[-74.20506751199986,-47.75660572699985],[-74.15965735599988,-47.746514580999886],[-74.25267493399986,-47.739678643999866],[-74.26976477799988,-47.73259856599999],[-74.28233801999987,-47.71550872199995],[-74.30357825399997,-47.67831796699987],[-74.27261308499992,-47.66334400799984],[-74.17381751199989,-47.674248955999985],[-74.13288326699987,-47.66399504999988],[-74.16071529899992,-47.65667083099996],[-74.21418209499987,-47.66326262799985],[-74.24217688699989,-47.65781015399999],[-74.26260331899994,-47.642022393999866],[-74.25389563699986,-47.63128020599986],[-74.22980709499984,-47.625095309999956],[-74.1932266919999,-47.62200286299998],[-74.17442786399994,-47.617282809999885],[-74.16331946499992,-47.61630624799991],[-74.15249589799993,-47.61834075299994],[-74.13219153599994,-47.62769947699988],[-74.1223852199999,-47.62981536299989],[-74.07453365799998,-47.628106377999885],[-74.05370032499991,-47.622165622999944],[-74.04352779899995,-47.60947030999998],[-74.09007727799988,-47.61093515399986],[-74.10496985599994,-47.60947030999998],[-74.11510169199988,-47.604587498000015],[-74.12995357999993,-47.59531015399987],[-74.1400040359999,-47.586195570999976],[-74.13597571499984,-47.58212655999992],[-74.11327063699991,-47.57773202900002],[-74.09056555899986,-47.56658294099992],[-74.07079016799995,-47.55120208099988],[-74.05719967399989,-47.5342749979999],[-74.07689368399991,-47.546156507999854],[-74.11766516799987,-47.55396900799994],[-74.13906816299993,-47.56161874799987],[-74.15054277299988,-47.56951262799994],[-74.15904700399992,-47.57773202900002],[-74.16808020699992,-47.584567966999956],[-74.18130449099996,-47.58896249799993],[-74.19375566299988,-47.589125257999896],[-74.21422278599994,-47.58359140399989],[-74.22508704299992,-47.58212655999992],[-74.23607337099989,-47.583754164999945],[-74.26447506399992,-47.59351978999989],[-74.27354895699992,-47.59905364399991],[-74.28359941299989,-47.603773695999905],[-74.29442298099987,-47.602146091999984],[-74.30500240799992,-47.59791432099988],[-74.31411699099993,-47.595798434999864],[-74.32835852799994,-47.58570728999989],[-74.33511308499988,-47.56267669099983],[-74.33910071499994,-47.53728606599999],[-74.34455318899997,-47.519952080999914],[-74.36896725199992,-47.53484465899987],[-74.39232337099992,-47.53476327899988],[-74.41429602799985,-47.523695570999934],[-74.43455969999985,-47.507012628],[-74.45352128799996,-47.48105234199991],[-74.44204667899993,-47.470635674999926],[-74.3855688139999,-47.45916106599996],[-74.39439856699994,-47.44654713299998],[-74.40851803299998,-47.44540780999995],[-74.42491614499988,-47.44752369599988],[-74.44078528599991,-47.44548919099985],[-74.44717363199993,-47.43873463299991],[-74.45055091099994,-47.42962005],[-74.45518958199997,-47.42156340899989],[-74.46532141799993,-47.41814544099987],[-74.46617591099994,-47.43157317499987],[-74.48473059799994,-47.456231377999956],[-74.50658118399988,-47.46965911299995],[-74.52855383999992,-47.431735935],[-74.52887936099992,-47.422295830999914],[-74.51341712099992,-47.41814544099987],[-74.50283769399994,-47.413018487999864],[-74.49449622299989,-47.40113697699982],[-74.48176021999984,-47.37664153399997],[-74.46727454299989,-47.36288827899995],[-74.45051021999987,-47.354261976999865],[-74.40721594999988,-47.34246184699998],[-74.41616777299988,-47.32138437299987],[-74.39525305899986,-47.305922132999854],[-74.3665258449999,-47.29070403399987],[-74.35195878799988,-47.26978932099982],[-74.32469641799989,-47.21892669099988],[-74.31407630099993,-47.21949635199985],[-74.30378170499992,-47.22747161299999],[-74.29381262899992,-47.23796965899987],[-74.28376217399995,-47.246270440999936],[-74.27871660099993,-47.22437916499992],[-74.27428137899994,-47.21559010199993],[-74.26634680899988,-47.21217213299994],[-74.25584876199991,-47.21640390399995],[-74.23786373599998,-47.23512135199983],[-74.23224850199998,-47.23943450299984],[-74.2216690749999,-47.23609791499982],[-74.2230525379999,-47.2282854149999],[-74.22716223899994,-47.21819426899985],[-74.22508704299992,-47.20875416499993],[-74.21572831899991,-47.204685153999876],[-74.20254472599996,-47.20378997199988],[-74.17760169199991,-47.20525481599985],[-74.16771399599992,-47.21575286299999],[-74.15965735599988,-47.28101978999982],[-74.14952551999991,-47.298028252999956],[-74.13516191299993,-47.316827081],[-74.11937415299991,-47.33310312299986],[-74.11241614499991,-47.33554452899989],[-74.11070716099991,-47.32903411299997],[-74.10606848899988,-47.322360934999935],[-74.10496985599994,-47.315118097],[-74.10948645699989,-47.3065731749999],[-74.12608801999994,-47.287286065999865],[-74.13670813699989,-47.26962656000002],[-74.14012610599987,-47.256605726999865],[-74.13906816299993,-47.22234465899988],[-74.13223222599991,-47.20452239399991],[-74.11538652299993,-47.19296640399989],[-74.09422766799992,-47.18670012799984],[-74.07457434799997,-47.18482838299995],[-74.05553137899997,-47.19036223799989],[-74.04702714799993,-47.19011809699985],[-74.04352779899995,-47.181084893999916],[-74.04002844999985,-47.17831796699996],[-74.03189042899993,-47.17644622199991],[-74.02281653599994,-47.176039320999905],[-74.01622473899997,-47.17742278399989],[-74.0030818349999,-47.19939544099998],[-73.98704993399991,-47.23503997199985],[-73.97350012899994,-47.25497812299993],[-73.96776282499987,-47.229180597],[-73.97118079299989,-47.21575286299999],[-73.98615475199992,-47.18678150799982],[-73.98957271999984,-47.16741301899998],[-73.99893144399995,-47.16497161299995],[-74.05719967399989,-47.15691497199984],[-73.95763098899994,-47.06031666499989],[-73.9473363919999,-47.04762135199992],[-73.94127356699991,-47.027927341999884],[-73.94896399599992,-47.0155575499999],[-74.02009029899997,-46.978285414999874],[-74.04059811099992,-46.97185637799994],[-74.0640356109999,-46.97258879999997],[-74.10289466099991,-46.98674895599999],[-74.11864173099988,-46.98805103999982],[-74.13906816299993,-46.97869231599988],[-74.15322831899995,-46.96721770599993],[-74.20645097599993,-46.907891533999944],[-74.20864824099993,-46.89397551899988],[-74.20042883999994,-46.88152434699987],[-74.18130449099996,-46.869398695999955],[-74.17194576699984,-46.86858489399995],[-74.16022701699984,-46.86972421699998],[-74.15013587099989,-46.868096612999956],[-74.14590410099996,-46.85955169099985],[-74.14452063699989,-46.85149504999991],[-74.14045162699992,-46.84449635199984],[-74.13418535099987,-46.83912525799996],[-74.12608801999994,-46.83538176899994],[-74.12608801999994,-46.82854583099999],[-74.16795813699986,-46.83757903399993],[-74.18130449099996,-46.84221770599994],[-74.19102942599991,-46.84880950299984],[-74.20905514199983,-46.86500416499989],[-74.2216690749999,-46.869398695999955],[-74.2433162099999,-46.864678643999866],[-74.26549231699988,-46.83074309699991],[-74.28990637899992,-46.82170989399999],[-74.2818904289999,-46.812432549999855],[-74.27257239499994,-46.80877044099998],[-74.26512610599988,-46.80478280999992],[-74.26260331899994,-46.793715101999965],[-74.26683508999989,-46.78167083099987],[-74.2761124339999,-46.779717706],[-74.28892981699994,-46.78134531000002],[-74.30357825399997,-46.78004322699985],[-74.31017005099994,-46.778008722],[-74.31700598899995,-46.77507903399998],[-74.32249915299988,-46.77027760199991],[-74.32469641799989,-46.76336028399999],[-74.32762610599991,-46.758233330999985],[-74.33360755099991,-46.75994231599998],[-74.33853105399987,-46.76433684699988],[-74.3383682929999,-46.76718515399991],[-74.44139563699987,-46.76718515399991],[-74.45616614499994,-46.764906507999854],[-74.48216712099995,-46.755547783999916],[-74.52122962099988,-46.75009530999987],[-74.59162350199992,-46.72551848799995],[-74.59162350199992,-46.732354424999876],[-74.52090410099987,-46.763116143999866],[-74.47765051999988,-46.772393487999906],[-74.48379472599996,-46.784112237999906],[-74.50450598899997,-46.79599374799986],[-74.52672278599994,-46.80120208099986],[-74.58812415299991,-46.793715101999965],[-74.60041256399995,-46.79045989399992],[-74.61327063699989,-46.783786716999884],[-74.62657630099991,-46.77857838299997],[-74.64000403599991,-46.78004322699985],[-74.65086829299989,-46.788344007999925],[-74.65192623599995,-46.79697031],[-74.64854895699992,-46.80641041499993],[-74.64622962099986,-46.8182919249999],[-74.64883378799996,-46.82927825299985],[-74.6556697259999,-46.83684661299999],[-74.67349199099995,-46.84905364399988],[-74.55093339799991,-46.83538176899994],[-74.5333552729999,-46.83977629999991],[-74.50767981699993,-46.85898202899996],[-74.49229895699989,-46.863376559999864],[-74.45018469999994,-46.85605234199994],[-74.43455969999985,-46.855889580999985],[-74.47915605399993,-46.902276299999954],[-74.54572506399992,-46.8956031229999],[-74.61831620999993,-46.876071873],[-74.68097896999993,-46.883884372999916],[-74.69102942599991,-46.87656015399999],[-74.70225989499991,-46.865655205999836],[-74.71133378799989,-46.85426197699996],[-74.71507727799994,-46.84563567499987],[-74.72154700399994,-46.84002044099994],[-74.76292883999986,-46.814873955999886],[-74.78791256399998,-46.80722421699994],[-74.79954993399987,-46.80120208099986],[-74.80451412699993,-46.79070403399997],[-74.80748450399994,-46.775811455999914],[-74.81525631399995,-46.76848723799991],[-74.82603919199994,-46.769707940999936],[-74.83800208199989,-46.78004322699985],[-74.8318578769999,-46.78004322699985],[-74.84626217399997,-46.80681731599993],[-74.85635331899992,-46.8138973939999],[-74.8695369129999,-46.805922132999946],[-74.8932185539999,-46.78753020599991],[-74.90062415299991,-46.78362395599991],[-74.9549454419999,-46.76165129999998],[-74.95811926999987,-46.75969817499994],[-75.0064998039999,-46.75351327899989],[-75.01500403599994,-46.749200127999885],[-75.01622473899994,-46.73943450299994],[-75.01488196499986,-46.72820403399993],[-75.01618404899995,-46.7193335919999],[-75.07510331899991,-46.66073984199994],[-75.08336341099991,-46.64088307099995],[-75.07518469999991,-46.62004973799988],[-75.05919348899991,-46.60222747199989],[-75.02586829299992,-46.579278253],[-75.01545162699992,-46.56601327899996],[-75.00731360599991,-46.55250416499981],[-74.99624589799987,-46.539971612999906],[-74.97980709499987,-46.53191497199995],[-74.95921790299994,-46.5253231749999],[-74.9416397779999,-46.516778252999956],[-74.93419348899994,-46.50269947699984],[-74.9369197259999,-46.48267994599995],[-74.94139563699986,-46.47047291499989],[-74.94229081899992,-46.458184502999835],[-74.93419348899994,-46.43759530999998],[-74.96458899599989,-46.454034112999885],[-74.98814856699994,-46.49089934699987],[-75.01406816299993,-46.5201148419999],[-75.05150305899988,-46.513278903999975],[-75.07506262899992,-46.558363539999945],[-75.11164303299995,-46.586846612999864],[-75.20173092399992,-46.62997812299996],[-75.20775305899991,-46.60491301899988],[-75.20791581899988,-46.595147393999916],[-75.23448645699992,-46.62314218499986],[-75.24836178299992,-46.63250090899997],[-75.26691646999993,-46.63616301899985],[-75.32477779899995,-46.64006926899994],[-75.33893795499995,-46.64364999799999],[-75.33999589799993,-46.64625416499982],[-75.33877519399991,-46.651055596999896],[-75.33844967399997,-46.6553687479999],[-75.34235592399997,-46.657321872999944],[-75.38654537699993,-46.65553150799987],[-75.39614824099989,-46.65227629999991],[-75.40038001199994,-46.64666106599999],[-75.40465247299994,-46.62981536299999],[-75.41486568899998,-46.63274504999983],[-75.42707271999987,-46.64348723799993],[-75.43724524599992,-46.64983489399988],[-75.56175696499989,-46.680759373],[-75.57506262899992,-46.687920830999865],[-75.58336341099991,-46.693780206],[-75.5911352199999,-46.69703541499986],[-75.59675045499988,-46.70086028399987],[-75.5989477199999,-46.70842864399991],[-75.5992732409999,-46.71697356599985],[-75.60057532499991,-46.7227515599999],[-75.6028539699999,-46.72722747199995],[-75.60643469999985,-46.732354424999876],[-75.61778723899994,-46.74236419099995],[-75.64659583199995,-46.755954684999914],[-75.66104081899991,-46.76718515399991],[-75.63133704299989,-46.785414320999905],[-75.59772701699987,-46.75855885199991],[-75.56566321499989,-46.718682549999855],[-75.5405981109999,-46.698174737999885],[-75.46373450399997,-46.699883721999896],[-75.4406632149999,-46.705010674999905],[-75.42247473899992,-46.713962498000015],[-75.41759192599993,-46.721937757999896],[-75.42613684799989,-46.72665781],[-75.44810950399987,-46.72551848799995],[-75.44131425699987,-46.74236419099995],[-75.44884192599991,-46.75652434699998],[-75.46296139199987,-46.76718515399991],[-75.47606360599991,-46.77402109199993],[-75.40001380099991,-46.77695077899995],[-75.38670813699991,-46.78004322699985],[-75.38231360599991,-46.80632903399996],[-75.3988337879999,-46.828708591999884],[-75.42096920499998,-46.84758879999991],[-75.43390865799998,-46.863376559999864],[-75.39435787699992,-46.85173919099995],[-75.37205969999991,-46.84880950299984],[-75.35260982999989,-46.855889580999985],[-75.34630286399994,-46.866794528999876],[-75.3469945949999,-46.87916432099982],[-75.35260982999989,-46.90056731599995],[-75.36119544199991,-46.90260182099997],[-75.41055253799988,-46.93157317499988],[-75.42479407499988,-46.933200778999904],[-75.46861731699994,-46.94524504999991],[-75.52082271999987,-46.94931405999988],[-75.55174719999991,-46.9483374979999],[-75.56895911399994,-46.939873955999936],[-75.58348548099988,-46.90984465899999],[-75.58531653599994,-46.90357838299995],[-75.59361731699991,-46.89902109199991],[-75.61681067599994,-46.89348723799989],[-75.62633216099992,-46.8899065079999],[-75.64224199099996,-46.88014088299988],[-75.65021725199992,-46.87322356599996],[-75.65355383999986,-46.86638762799987],[-75.65294348899988,-46.84465911299989],[-75.65387936099998,-46.833428643999895],[-75.66026770699989,-46.82447682099995],[-75.70702063699987,-46.78655364399993],[-75.71141516799985,-46.74439869599997],[-75.70832271999987,-46.65471770599985],[-75.70470130099991,-46.63925546699993],[-75.69469153599992,-46.62835051899993],[-75.67536373599988,-46.61565520599997],[-75.66038977799988,-46.60133228999982],[-75.64952551999988,-46.585625908999845],[-75.6360570949999,-46.573011976999865],[-75.6131892569999,-46.567803643999866],[-75.57144120999996,-46.569105726999865],[-75.55797278599997,-46.567803643999866],[-75.54922441299989,-46.56389739399995],[-75.54210364499994,-46.55803801899992],[-75.53262285099993,-46.5538062479999],[-75.51707923099994,-46.55429452899989],[-75.53425045499995,-46.532403252999934],[-75.54259192599991,-46.519138279],[-75.5405981109999,-46.513278903999975],[-75.4723201159999,-46.513278903999975],[-75.45299231699997,-46.50937265399989],[-75.44619706899992,-46.50009531000002],[-75.44286048099991,-46.48853932099982],[-75.43390865799998,-46.47844817499994],[-75.41881262899997,-46.47437916499989],[-75.38906816299996,-46.476739190999936],[-75.37303626199989,-46.471612237999835],[-75.37303626199989,-46.46542734199994],[-75.39932206899987,-46.44890715899997],[-75.40111243399988,-46.440524997999916],[-75.39045162699995,-46.427341403999876],[-75.34532630099989,-46.3947893209999],[-75.33519446499992,-46.390313408999845],[-75.3128149079999,-46.38632577899995],[-75.29686438699987,-46.37712981599989],[-75.28400631399995,-46.36760833099998],[-75.27061926999997,-46.3623999979999],[-75.25426184799993,-46.365492445999976],[-75.23867753799996,-46.37574635199982],[-75.22695878799986,-46.389825127999856],[-75.22223873599995,-46.40398528399996],[-75.21165930899991,-46.335137628],[-75.20494544199997,-46.330498955999886],[-75.20360266799989,-46.31991952900002],[-75.20384680899991,-46.30836353999982],[-75.20173092399992,-46.30095794099991],[-75.19627844999988,-46.29827239399994],[-75.18700110599991,-46.29599374799987],[-75.17829342399995,-46.29697030999993],[-75.17442786399992,-46.304375908999916],[-75.15318762899993,-46.32431406],[-75.10578365799992,-46.34710051899994],[-75.05650794199991,-46.35784270599986],[-75.02977454299992,-46.34197356599984],[-75.05711829299989,-46.338799737999864],[-75.1062719389999,-46.325127862999835],[-75.12975012899997,-46.322035414999846],[-75.13866126199991,-46.31406015399989],[-75.13621985599988,-46.296482028999854],[-75.12279212099989,-46.27955494599988],[-75.09870357999995,-46.27361419099985],[-75.09870357999995,-46.26677825299993],[-75.11164303299995,-46.26043059699989],[-75.11632239499988,-46.249607028999904],[-75.11412512899987,-46.23723723799995],[-75.10610917899993,-46.22584400799998],[-75.09068762899992,-46.21607838299987],[-75.07070878799993,-46.21054452900002],[-75.04930579299989,-46.20907968499996],[-75.02977454299992,-46.21217213299987],[-75.00658118399988,-46.227227471999875],[-74.98509680899986,-46.249118747999916],[-74.96051998599992,-46.267836195999976],[-74.92804928299995,-46.27361419099985],[-74.95177161399997,-46.24822356599992],[-74.96153723899991,-46.2301571589999],[-74.95811926999987,-46.21526458099986],[-74.92422441299993,-46.187676690999915],[-74.91942298099985,-46.179294528999876],[-74.91002356699991,-46.15016041499992],[-74.89146887899992,-46.14714934699991],[-74.87954667899987,-46.14674244599982],[-74.86534583199995,-46.15016041499992],[-74.83800208199989,-46.17058684699998],[-74.80955969999988,-46.19850025799984],[-74.79539954299995,-46.20916106599986],[-74.77721106699994,-46.21217213299987],[-74.78575598899988,-46.1964657529999],[-74.79084225199989,-46.19109465899993],[-74.78376217399995,-46.183770440999936],[-74.77550208199995,-46.17913176899991],[-74.76634680899988,-46.177341404],[-74.75601152299987,-46.17799244599988],[-74.7722875639999,-46.16545989399988],[-74.80516516799989,-46.15398528399993],[-74.81818600199998,-46.142673434999935],[-74.82445227799991,-46.125909112999835],[-74.82119706899988,-46.112237237999885],[-74.81480872299994,-46.099379164999874],[-74.81126868399988,-46.08464934699988],[-74.78148352799987,-46.04697030999998],[-74.77375240799995,-46.04029713299994],[-74.70148678299996,-46.03289153399986],[-74.70592200399994,-46.02271900799991],[-74.71076412699992,-46.02166106599995],[-74.71686764199991,-46.02459075299997],[-74.72533118399984,-46.02654387799991],[-74.73786373599995,-46.02312590899991],[-74.73786373599995,-46.01490650799982],[-74.72874915299988,-45.99871184699987],[-74.72451738199996,-45.99358489399994],[-74.71739661399991,-45.989515882999896],[-74.71336829299992,-45.984470309999864],[-74.71849524599995,-45.975355726999965],[-74.72484290299988,-45.96754322699988],[-74.72740637899989,-45.96103280999998],[-74.72874915299988,-45.94402434699991],[-74.69090735599994,-45.84156666499993],[-74.66559811099998,-45.82333749799986],[-74.64732825399992,-45.81617603999982],[-74.62946529899995,-45.824883721999896],[-74.61660722599993,-45.8395321589999],[-74.6067602199999,-45.845879815999915],[-74.59626217399992,-45.843519789999974],[-74.58136959499987,-45.831719659],[-74.55996660099991,-45.82626718499987],[-74.54605058499996,-45.84449635199995],[-74.54401607999992,-45.87428150799987],[-74.55809485599988,-45.903090101999894],[-74.5449926419999,-45.904066664999874],[-74.52892005099991,-45.90276458099987],[-74.51537024599986,-45.90422942499984],[-74.50963294199988,-45.91326262799992],[-74.50743567599989,-45.92742278399996],[-74.50194251199986,-45.92929452900002],[-74.49510657499985,-45.92555103999989],[-74.48916581899991,-45.92359791499994],[-74.47663326699993,-45.92489999799994],[-74.47183183499993,-45.92376067499991],[-74.46800696499992,-45.92506275799991],[-74.4581599599999,-45.93385182099988],[-74.45299231699988,-45.94402434699991],[-74.45494544199994,-45.95525481599992],[-74.4593806629999,-45.966078382999825],[-74.46182206899994,-45.975355726999965],[-74.46654212099986,-45.98674895599984],[-74.47545325399989,-45.99749114399985],[-74.48094641799992,-46.00839609200001],[-74.47549394399987,-46.01978932099989],[-74.46471106699988,-46.02214934699993],[-74.45335852799991,-46.01637135199988],[-74.44440670499996,-46.00798919099991],[-74.44078528599991,-46.00212981599988],[-74.4382218089999,-45.9924455709999],[-74.43219967399989,-45.98495859199985],[-74.42540442599997,-45.978204034],[-74.42027747299994,-45.97193775799987],[-74.41730709499984,-45.960707289999945],[-74.41661536399991,-45.950372002999856],[-74.4126684239999,-45.94215260199995],[-74.39976966099991,-45.9371884089999],[-74.39976966099991,-45.93043385199995],[-74.4239802729999,-45.91708749799986],[-74.44701087099989,-45.894219658999944],[-74.46369381399992,-45.865817967],[-74.46865800699996,-45.83473072699982],[-74.46056067599994,-45.83912525799989],[-74.45295162699989,-45.84124114399991],[-74.43455969999985,-45.84156666499993],[-74.4498591789999,-45.82878997199998],[-74.46182206899994,-45.81503671699995],[-74.44664466099997,-45.808282158999845],[-74.39297441299988,-45.80071379999997],[-74.3596085279999,-45.790297132999896],[-74.34508216099997,-45.79111093499991],[-74.33092200399994,-45.80071379999997],[-74.32819576699987,-45.807061455999914],[-74.32530676999994,-45.82463958099986],[-74.32127844999988,-45.831719659],[-74.31362870999993,-45.833103122999965],[-74.30540930899994,-45.82773202899993],[-74.29723059799994,-45.82008228999982],[-74.28990637899992,-45.81503671699995],[-74.1893611319999,-45.793633721999925],[-74.17027747299991,-45.79176197699986],[-74.15648352799991,-45.79729583099997],[-74.10313880099994,-45.836846612999835],[-74.11554928299998,-45.85361093500002],[-74.13548743399988,-45.86712005],[-74.14590410099996,-45.865492445999976],[-74.15379798099993,-45.87175872199985],[-74.17210852799988,-45.877618096999974],[-74.1927791009999,-45.88193124799997],[-74.18455969999991,-45.882500908999944],[-74.11864173099988,-45.89625416499996],[-74.12450110599991,-45.90504322699985],[-74.13036048099985,-45.911879164999945],[-74.13719641799989,-45.91773853999982],[-74.14590410099996,-45.92359791499994],[-74.14590410099996,-45.93043385199995],[-74.07994544199991,-45.921156507999825],[-74.05919348899991,-45.92986419099998],[-74.0640356109999,-45.96453215899995],[-74.08006751199989,-45.981866143999866],[-74.10716712099992,-45.994561455999914],[-74.13849850199998,-46.002536716999884],[-74.16706295499995,-46.00554778399989],[-74.16706295499995,-46.01295338299995],[-74.15176347599989,-46.01832447699984],[-74.10155188699991,-46.01295338299995],[-74.08600826699993,-46.01783619599984],[-74.08385169199991,-46.02971770599997],[-74.09850012899992,-46.080824476999865],[-74.11803137899992,-46.10230885199989],[-74.16706295499995,-46.1364071589999],[-74.13947506399995,-46.131117445999834],[-74.10533606699994,-46.11589934699985],[-74.07628333199997,-46.096123956],[-74.0640356109999,-46.077813408999944],[-74.05638587099989,-46.027927341999984],[-74.06061764199988,-46.01978932099989],[-74.06924394399991,-46.011895440999986],[-74.0697322259999,-45.99537525799992],[-74.06135006399992,-45.98088958099997],[-74.04352779899995,-45.97877369599996],[-74.03697669199997,-45.98609791499989],[-74.0341690749999,-45.99765390399999],[-74.03001868399987,-46.00839609200001],[-73.98204505099997,-46.02971770599997],[-73.97960364499994,-46.03972747199997],[-73.96947180899988,-46.06096770599994],[-73.96776282499987,-46.074395440999936],[-73.97057044199994,-46.08416106599989],[-73.98957271999984,-46.11598072699984],[-74.02131100199988,-46.148207289999874],[-74.06358801999991,-46.172051690999936],[-74.19151770699987,-46.218357028999925],[-74.2640274729999,-46.2305640599999],[-74.31322180899994,-46.249932549999926],[-74.3383682929999,-46.25253671700001],[-74.35948645699992,-46.245863539999874],[-74.3976130849999,-46.22332122199997],[-74.41685950399993,-46.218438408999916],[-74.4243057929999,-46.21510182099989],[-74.4806208979999,-46.16863372199994],[-74.48916581899991,-46.16375090899987],[-74.48989824099993,-46.189385674999926],[-74.46568762899994,-46.20818450299997],[-74.41030839799987,-46.23577239399999],[-74.40029863199987,-46.243829033999845],[-74.38784745999996,-46.250746351999936],[-74.37376868399991,-46.256117445999976],[-74.3587947259999,-46.26002369599989],[-74.34215247299994,-46.2608374979999],[-74.18984941299988,-46.24228280999998],[-74.07721920499995,-46.203789972],[-74.04971269399991,-46.19109465899993],[-74.04352779899995,-46.19793059699986],[-74.05553137899997,-46.215508721999896],[-74.0714412099999,-46.23267994599992],[-74.03892981699991,-46.247002862999906],[-74.04165605399987,-46.27076588299989],[-74.07770748599992,-46.322035414999846],[-74.06175696499992,-46.31707122199998],[-74.03648841099988,-46.292413018999895],[-74.02643795499989,-46.286716404],[-74.00853430899986,-46.28899504999997],[-73.94151770699995,-46.304945570999976],[-73.92935136599988,-46.31454843499988],[-73.91860917899996,-46.32586028399986],[-73.90636145699989,-46.335137628],[-73.89244544199991,-46.33977629999984],[-73.84487870999992,-46.34197356599984],[-73.9452205069999,-46.26572030999988],[-73.95815995999989,-46.24944426899994],[-73.95299231699991,-46.23154062299989],[-73.97459876199991,-46.22226327900002],[-74.01622473899997,-46.218438408999916],[-74.01927649599986,-46.20435963299997],[-74.01162675699993,-46.18580494599996],[-73.99864661399994,-46.167413018999916],[-73.98574785099993,-46.15357838299992],[-73.9681697259999,-46.14470794099988],[-73.94326738199996,-46.139418226999894],[-73.89610755099997,-46.1364071589999],[-73.88182532499987,-46.14177825299994],[-73.87267005099987,-46.15488046700001],[-73.85789954299992,-46.184258721999925],[-73.82848059799991,-46.20452239399992],[-73.79552161399994,-46.21640390399989],[-73.76984615799998,-46.23455169099998],[-73.76231848899994,-46.27361419099985],[-73.77306067599994,-46.320896091999984],[-73.79417883999984,-46.361586195999884],[-73.82323157499994,-46.39763762799994],[-73.85789954299992,-46.43075937299997],[-73.91250566299988,-46.46884530999995],[-73.92064368399988,-46.48186614399994],[-73.92772376199986,-46.497165623],[-73.97524980399996,-46.539971612999906],[-73.98916581899994,-46.55974700299993],[-73.98375403599988,-46.56650155999995],[-73.96629798099991,-46.57097747199984],[-73.92454993399988,-46.59693775799991],[-73.8996475899999,-46.602715752999885],[-73.87389075399992,-46.60222747199989],[-73.85171464799993,-46.595147393999916],[-73.8316137359999,-46.57789478999992],[-73.82091223899995,-46.557305596999896],[-73.81273352799985,-46.53590260199985],[-73.79133053299992,-46.505059502999885],[-73.78734290299994,-46.497165623],[-73.78213456899994,-46.49480559699995],[-73.76984615799998,-46.49960702899993],[-73.76024329299992,-46.50652434699985],[-73.75328528599991,-46.51523202900002],[-73.74185136599995,-46.533786717],[-73.73729407499991,-46.52166106599985],[-73.73859615799991,-46.50798919099991],[-73.74396725199998,-46.49675872199999],[-73.75182044199994,-46.49212004999988],[-73.76549231699988,-46.48626067499984],[-73.76646887899997,-46.4725887999999],[-73.7555232409999,-46.44443124799991],[-73.74233964799996,-46.420993748000015],[-73.69098873599992,-46.37330494599988],[-73.67227128799995,-46.359551690999865],[-73.62214107999995,-46.334242445999905],[-73.60130774599989,-46.31845468499996],[-73.58018958199997,-46.31023528399987],[-73.51431230399993,-46.30754973799989],[-73.48863684799997,-46.30095794099991],[-73.52977454299995,-46.29989999799995],[-73.55052649599993,-46.29558684699987],[-73.56371008999989,-46.286716404],[-73.56834876199991,-46.27044036299996],[-73.5624080069999,-46.25758228999986],[-73.55211341099987,-46.24578215899989],[-73.54328365799992,-46.23267994599992],[-73.52391516799989,-46.17522551899999],[-73.50645911399992,-46.155368748],[-73.47435462099986,-46.15016041499992],[-73.48180091099994,-46.142673434999935],[-73.42373613199987,-46.071384372999944],[-73.40367591099994,-46.059991143999966],[-73.35765540299988,-46.042168878],[-73.34459387899989,-46.02654387799991],[-73.36156165299987,-46.02271900799991],[-73.38634192599994,-46.02011484199991],[-73.41173255099994,-46.02157968499988],[-73.43028723899997,-46.02971770599997],[-73.4452205069999,-46.04892343500002],[-73.46947180899991,-46.08928801899999],[-73.57632402299987,-46.20183684699995],[-73.61148027299993,-46.218438408999916],[-73.61148027299993,-46.22584400799998],[-73.59984290299994,-46.24675872199987],[-73.62437903599994,-46.27646249799989],[-73.68785559799994,-46.322035414999846],[-73.70152747299987,-46.29355234199993],[-73.69180253799992,-46.256442967],[-73.66637122299994,-46.22625090899999],[-73.63263912699993,-46.218438408999916],[-73.64810136599996,-46.19475676899989],[-73.64207923099985,-46.16432057099985],[-73.62791907499994,-46.13193124799993],[-73.61900794199988,-46.10230885199989],[-73.62018795499992,-46.08310312299993],[-73.62645423099988,-46.07105885199992],[-73.6497289699999,-46.05046965899988],[-73.65123450399994,-46.04168059699991],[-73.6531469389999,-45.99553801899998],[-73.65648352799991,-45.984795830999886],[-73.66148841099997,-45.980157158999944],[-73.66055253799988,-45.97568124799999],[-73.64631100199998,-45.96453215899995],[-73.62193762899992,-45.950372002999856],[-73.61925208199995,-45.94557057099995],[-73.61900794199988,-45.93385182099988],[-73.60960852799987,-45.903090101999894],[-73.58604895699992,-45.885511976999865],[-73.55483964799993,-45.877618096999974],[-73.52277584499987,-45.87574635199992],[-73.53648841099988,-45.87070077899988],[-73.54930579299992,-45.86345794099995],[-73.55915279899995,-45.85369231599984],[-73.56371008999989,-45.84156666499993],[-73.5602107409999,-45.82976653399996],[-73.54149329299992,-45.81218840899992],[-73.53701738199987,-45.804131768999895],[-73.40208899599989,-45.701918226999936],[-73.35631262899989,-45.688083591999856],[-73.19749915299994,-45.67717864399988],[-73.18854732999992,-45.67213307099985],[-73.18578040299985,-45.66253020599987],[-73.18887285099993,-45.65585702899999],[-73.19749915299994,-45.66008879999984],[-73.2962133449999,-45.64983489399999],[-73.31183834499987,-45.643975518999866],[-73.31627356699994,-45.63811614399999],[-73.31843014199985,-45.63054778399987],[-73.32725989499991,-45.61907317499991],[-73.33364824099993,-45.621026299999954],[-73.36025956899988,-45.63388437299999],[-73.36851966099997,-45.63933684699983],[-73.37816321499992,-45.64373137799991],[-73.42031816299988,-45.64983489399999],[-73.42589270699989,-45.65447356599984],[-73.4737849599999,-45.71257903399988],[-73.48965410099993,-45.72665780999992],[-73.51219641799992,-45.73235442499999],[-73.53278561099994,-45.74114348799987],[-73.56550045499998,-45.7764624979999],[-73.59166419199991,-45.78020598799992],[-73.58169511599993,-45.75139739399998],[-73.57518469999994,-45.72323984199991],[-73.57054602799991,-45.66008879999984],[-73.56533769399991,-45.63258228999988],[-73.54230709499984,-45.581475518999916],[-73.53482011599988,-45.53622812299999],[-73.52497311099995,-45.50554778399999],[-73.52135169199988,-45.47193775799997],[-73.51732337099992,-45.46038176899985],[-73.51085364499991,-45.45175546699994],[-73.5023087229999,-45.44378020599997],[-73.47508704299989,-45.424574476999915],[-73.44587154899995,-45.413506768999895],[-73.42247473899988,-45.419528903999904],[-73.41291256399998,-45.45126718499986],[-73.40607662699998,-45.45126718499986],[-73.3990779289999,-45.38787200299993],[-73.39244544199991,-45.375583591999956],[-73.37096106699991,-45.36687590899989],[-73.35334225199998,-45.37265390399995],[-73.32355709499987,-45.395928643999866],[-73.32494055899986,-45.37810637799997],[-73.32884680899994,-45.35759856599992],[-73.3277074859999,-45.34091562299999],[-73.31387285099989,-45.33391692499991],[-73.30524654899992,-45.33196379999987],[-73.28693600199995,-45.32293059699995],[-73.27574622299994,-45.32089609199992],[-73.26520748599995,-45.32048919099992],[-73.25812740799992,-45.31902434699987],[-73.25218665299988,-45.31568775799984],[-73.24535071499986,-45.31031666499996],[-73.22642981699994,-45.300876559999864],[-73.20864824099996,-45.302178643999866],[-73.1929418609999,-45.311781507999925],[-73.18008378799988,-45.32708098799998],[-73.17666581899996,-45.335219007999825],[-73.17271887899997,-45.352308851999865],[-73.16710364499997,-45.361911717],[-73.16197669199997,-45.36565520599987],[-73.13914954299993,-45.375583591999956],[-73.10545813699994,-45.39869557099983],[-73.0878800119999,-45.406670830999964],[-73.06688391799986,-45.40960051899998],[-73.04478919199988,-45.41619231599988],[-73.01431230399993,-45.444756768999866],[-72.99152584499988,-45.45126718499986],[-72.90404212099986,-45.46477629999984],[-72.85952714799996,-45.464450778999904],[-72.8580216139999,-45.44378020599997],[-72.83775794199988,-45.42799244599984],[-72.83063717399995,-45.418064059999935],[-72.83438066299988,-45.40618254999998],[-72.84520423099988,-45.396416924999855],[-72.85846920499989,-45.389255467],[-72.87433834499993,-45.38616301899992],[-72.89281165299984,-45.389255467],[-72.90436764199987,-45.39478932099983],[-72.91397050699996,-45.40154387799987],[-72.92491614499991,-45.407321873000015],[-72.94054114499991,-45.40960051899998],[-72.95514889199991,-45.408379815999965],[-72.98151607999992,-45.4009742169999],[-73.07909094999985,-45.354750257999896],[-73.17666581899996,-45.28167083099998],[-73.21629798099987,-45.25888437299997],[-73.25666256399995,-45.24822356599985],[-73.2962133449999,-45.25945403399994],[-73.32896887899992,-45.28394947699988],[-73.34642493399988,-45.290622653999925],[-73.37535559799989,-45.2929013],[-73.39879309799994,-45.291761976999965],[-73.42520097599993,-45.287692966999906],[-73.44806881399994,-45.27947356599999],[-73.46068274599992,-45.26628997199987],[-73.46263587099989,-45.24618906],[-73.45881100199995,-45.22096119599986],[-73.45006262899989,-45.199476820999834],[-73.43712317599987,-45.190606377999885],[-73.38272050699987,-45.19402434699998],[-73.35594641799989,-45.19068775799986],[-73.33096269399994,-45.1775041649999],[-73.33234615799992,-45.16187916499992],[-73.31704667899987,-45.15398528399986],[-73.30443274599989,-45.14478932099997],[-73.31387285099989,-45.1256649719999],[-73.33169511599988,-45.10906340899986],[-73.33775794199988,-45.10173919099985],[-73.33828691299995,-45.09441497199994],[-73.33482825399994,-45.08782317499987],[-73.33706620999993,-45.083103122999944],[-73.35484778599994,-45.08131275799996],[-73.37018795499998,-45.07545338299984],[-73.38609778599991,-45.06145598799996],[-73.39924068899995,-45.04338958099986],[-73.40607662699998,-45.02605559699986],[-73.40526282499984,-45.00611744599988],[-73.3977758449999,-44.9882138],[-73.38581295499993,-44.97372812299987],[-73.37193762899996,-44.96404387799991],[-73.34825598899994,-44.95777760199986],[-73.23436438699991,-44.96526458099993],[-73.22109941299988,-44.96404387799991],[-73.20995032499985,-44.960219007999896],[-73.19050045499995,-44.9485002579999],[-73.18008378799988,-44.94410572699984],[-73.15855872299993,-44.94304778399987],[-73.11709550699993,-44.948337497999944],[-73.10130774599988,-44.940687757999825],[-73.08385169199994,-44.92392343499998],[-73.02928626199989,-44.889418226999965],[-73.00706946499992,-44.86549244599992],[-72.99828040299985,-44.861586195999834],[-72.95702063699989,-44.861586195999834],[-72.93565833199995,-44.857679945999834],[-72.91478430899988,-44.84783294099991],[-72.81004798099991,-44.767754815999936],[-72.76634680899991,-44.75066497199989],[-72.72765051999995,-44.75855885199995],[-72.72386633999986,-44.74627044099991],[-72.71068274599989,-44.73316822699985],[-72.7071833979999,-44.725030205999914],[-72.71003170499993,-44.7173804669999],[-72.72427324099996,-44.70077890399993],[-72.72765051999995,-44.69402434699998],[-72.73151607999998,-44.67424895599997],[-72.72915605399993,-44.66562265399987],[-72.70824133999984,-44.642347914999945],[-72.70360266799995,-44.634372653999904],[-72.68578040299987,-44.58033619599982],[-72.68150794199994,-44.56015390399997],[-72.67983964799993,-44.54355234200001],[-72.66901607999995,-44.53199635199998],[-72.64403235599991,-44.51921965899986],[-72.6165258449999,-44.50896575299993],[-72.59797115799998,-44.50530364399988],[-72.61815344999991,-44.46526458099993],[-72.61595618399991,-44.42156340899986],[-72.59113521999987,-44.340752862999864],[-72.5948380199999,-44.350192966999956],[-72.61156165299994,-44.37151458099984],[-72.61522376199989,-44.37151458099984],[-72.63011633999994,-44.39128997199987],[-72.63206946499989,-44.39544036299999],[-72.64256751199986,-44.405450127999885],[-72.64948482999993,-44.40813567499987],[-72.66250566299993,-44.409112237999935],[-72.66641191299993,-44.41301848799992],[-72.66087805899991,-44.432549737999985],[-72.66250566299993,-44.44011809699986],[-72.67247473899994,-44.45435963299987],[-72.68675696499994,-44.48845794099987],[-72.69969641799995,-44.49846770599994],[-72.72191321499992,-44.50139739399988],[-72.73448645699989,-44.494805597],[-72.74006100199989,-44.48056406],[-72.74132239499991,-44.460625908999916],[-72.75023352799985,-44.44898853999982],[-72.77106686099992,-44.43938567499984],[-72.79503333199997,-44.43271249799996],[-72.81334387899994,-44.43027109199993],[-72.81720943899995,-44.4274227839999],[-72.83751380099994,-44.409112237999935],[-72.84845943899992,-44.40243905999996],[-72.92463131399997,-44.37371184699983],[-72.93374589799987,-44.36467864399991],[-72.9305313789999,-44.34636809699995],[-72.9257706369999,-44.332777601999894],[-72.92658443899992,-44.320570570999834],[-72.93993079299995,-44.306735935],[-72.9613337879999,-44.29876067499997],[-73.01390540299994,-44.2921688779999],[-73.0515844389999,-44.273370049999855],[-73.15953528599994,-44.26043059699985],[-73.17227128799988,-44.25611744599984],[-73.18350175699987,-44.24814218499989],[-73.18879146999987,-44.241631768999895],[-73.19273841099994,-44.23365650799994],[-73.1920466789999,-44.22682057099983],[-73.13914954299993,-44.21054452899989],[-73.12218176999997,-44.18922291499983],[-73.11864173099988,-44.18320077899992],[-73.11847896999991,-44.15911223799989],[-73.12808183499989,-44.14576588299988],[-73.13975989499991,-44.14519622199991],[-73.15330969999988,-44.177341403999876],[-73.17296301999991,-44.18914153399993],[-73.19766191299989,-44.19548919099988],[-73.22109941299988,-44.19687265399986],[-73.24510657499991,-44.19443124799991],[-73.26732337099989,-44.187432549999926],[-73.2835994129999,-44.174086195999834],[-73.29002844999994,-44.152439059999935],[-73.28693600199995,-44.12346770599993],[-73.27774003799988,-44.11003997199985],[-73.26260331899988,-44.10849374799998],[-73.24156653599994,-44.114922783999916],[-73.23452714799987,-44.120700778999975],[-73.22793535099989,-44.12737395599984],[-73.22301184799994,-44.12704843499999],[-73.22109941299988,-44.11150481599991],[-73.22109941299988,-44.077325128],[-73.21540279899989,-44.06796640399989],[-73.20177161399994,-44.06145598799989],[-73.1859024729999,-44.05868906000001],[-73.17332923099994,-44.05966562299999],[-73.16836503799988,-44.06406015399989],[-73.15982011599995,-44.08001067499989],[-73.15282141799989,-44.08757903399994],[-73.12718665299991,-44.0968563779999],[-73.11611894399988,-44.085707289999974],[-73.11579342399995,-44.06853606599995],[-73.12214107999998,-44.05966562299999],[-73.13280188699991,-44.048597914999874],[-73.13805091099991,-44.024102471999925],[-73.13914954299993,-43.985121351999865],[-73.13206946499989,-43.968031507999825],[-73.12035071499989,-43.952080987999906],[-73.09447180899988,-43.92652760199991],[-73.08397376199991,-43.9196916649999],[-73.07664954299992,-43.91806405999988],[-73.07042395699995,-43.914483330999985],[-73.06346594999985,-43.90203215899989],[-73.06175696499986,-43.89316171699993],[-73.06236731699991,-43.884047132999854],[-73.06191972599993,-43.87379322699992],[-73.05724036399991,-43.86101653399997],[-73.03075110599994,-43.82683684699998],[-73.02000891799992,-43.80828215899989],[-73.01561438699994,-43.78248463299994],[-73.01268469999991,-43.77214934699985],[-73.00584876199989,-43.774102471999896],[-72.9945369129999,-43.78590260199986],[-72.98936926999991,-43.79583098799995],[-72.98843339799993,-43.80584075299985],[-72.98371334499993,-43.81454843500001],[-72.96727454299992,-43.82008228999986],[-72.95128333199992,-43.803643487999864],[-72.92686926999997,-43.78728606599985],[-72.89891516799995,-43.77695077899993],[-72.87230383999989,-43.77906666499993],[-72.86693274599995,-43.78630950299987],[-72.86302649599995,-43.79778411299999],[-72.8567602199999,-43.80852629999992],[-72.84406490799992,-43.81324635199992],[-72.83063717399995,-43.81194426899992],[-72.82461503799993,-43.80787525799988],[-72.82591712099992,-43.80046965899997],[-72.8441055979999,-43.77548593499988],[-72.84959876199986,-43.75920989399994],[-72.85155188699991,-43.74000416499989],[-72.85057532499994,-43.71697356599999],[-72.84386145699997,-43.70037200299994],[-72.84227454299995,-43.689711195999834],[-72.8471573559999,-43.67945728999989],[-72.85407467399992,-43.67888762799993],[-72.85732988199996,-43.69019947699982],[-72.85912024599995,-43.704766533999845],[-72.86143958199992,-43.713555597],[-72.8679906889999,-43.72380950299984],[-72.87096106699991,-43.734063408999944],[-72.8753149079999,-43.74342213299989],[-72.88589433499996,-43.751153252999984],[-72.8968806629999,-43.753106377999856],[-72.92218990799995,-43.75074635199998],[-72.93374589799987,-43.751153252999984],[-72.94513912699995,-43.7550595029999],[-72.95946204299992,-43.76384856599995],[-72.97093665299988,-43.76539478999982],[-72.97935950399992,-43.76116301899998],[-72.98867753799996,-43.74187590899986],[-72.99828040299985,-43.73748137799987],[-73.02415930899986,-43.735446873000015],[-73.04230709499987,-43.72958749799999],[-73.04588782499994,-43.728448174999954],[-73.05524654899995,-43.71559010199992],[-73.04356848899997,-43.69597747199997],[-73.02521725199992,-43.685235283999944],[-73.00462805899988,-43.67766692499991],[-72.98786373599995,-43.666436456],[-72.97301184799989,-43.62135182099985],[-72.95343990799992,-43.61492278399993],[-72.9288630849999,-43.61419036299999],[-72.90583248599992,-43.60767994599981],[-72.91710364499994,-43.58863697699982],[-72.93297278599997,-43.5858700499999],[-72.97777258999989,-43.59417083099984],[-73.00719153599988,-43.59270598799988],[-73.02603105399993,-43.58668385199995],[-73.03872636599988,-43.57415129999987],[-73.06822669199994,-43.513929945999905],[-73.07994544199993,-43.49627044099989],[-73.11131751199989,-43.46103281000002],[-73.11180579299989,-43.443291924999855],[-73.09080969999992,-43.40243905999991],[-73.0852758449999,-43.382500908999916],[-73.08458411399997,-43.31633879999984],[-73.07591712099988,-43.3013648419999],[-73.05573482999995,-43.288669528999925],[-72.95466061099992,-43.247165623],[-72.93004309799994,-43.24407317499994],[-72.91218014199987,-43.23544687299986],[-72.90632076699993,-43.21493905999997],[-72.9081111319999,-43.19011809699994],[-72.91323808499993,-43.169040622999916],[-72.93032792899987,-43.124607028999904],[-72.93443762899992,-43.098239841999984],[-72.92292232999998,-43.08635833099986],[-72.90746008999986,-43.07756926899998],[-72.86485755099991,-43.018731377999984],[-72.8480525379999,-43.01091887799991],[-72.82506262899992,-43.0075009089999],[-72.80467688699986,-43.013929945999905],[-72.78986568899998,-43.054457289999846],[-72.7745255199999,-43.06764088299997],[-72.75454667899994,-43.07594166499996],[-72.73448645699989,-43.07968515399998],[-72.75658118399988,-43.0350888],[-72.76105709499984,-43.009047132999854],[-72.75157630099994,-42.98772551899988],[-72.7500707669999,-42.978936455999914],[-72.74714107999995,-42.90976327899992],[-72.75316321499989,-42.900811455999985],[-72.76862545499989,-42.88844166499986],[-72.82144120999988,-42.85751718499999],[-72.84219316299995,-42.83806731599999],[-72.85057532499994,-42.80966562299989],[-72.85252844999988,-42.79355234199991],[-72.86485755099991,-42.751234632999896],[-72.86400305899991,-42.73723723799985],[-72.86115475199996,-42.72478606599984],[-72.86001542899993,-42.711683851999865],[-72.86485755099991,-42.69654713299987],[-72.8355606759999,-42.688083592],[-72.82701575399997,-42.68027109199993],[-72.82384192599991,-42.66529713299989],[-72.82909094999991,-42.65260182099992],[-72.8549698559999,-42.63355885199983],[-72.86485755099991,-42.62086353999995],[-72.86705481699991,-42.590427342],[-72.85680091099988,-42.555922132999896],[-72.84032141799989,-42.52483489399998],[-72.82384192599991,-42.50416432099988],[-72.79552161399997,-42.49382903399996],[-72.75357011599988,-42.491875908999916],[-72.71076412699998,-42.49602629999987],[-72.67983964799993,-42.50416432099988],[-72.66734778599992,-42.512627862999835],[-72.65416419199988,-42.52410247199995],[-72.63914954299986,-42.53411223799985],[-72.60655676999991,-42.54265715899995],[-72.57966061099992,-42.561293226999865],[-72.56314042899993,-42.56568775799985],[-72.53941809799994,-42.558282158999944],[-72.5413305329999,-42.541599217],[-72.55846106699994,-42.52483489399998],[-72.58055579299992,-42.51726653399986],[-72.60212154899992,-42.51433684699984],[-72.6587621739999,-42.49114348799998],[-72.67845618399986,-42.47844817499984],[-72.71776282499988,-42.432549737999864],[-72.72223873599991,-42.422458591999884],[-72.71613521999984,-42.400567315999865],[-72.72142493399991,-42.38811614399983],[-72.72972571499989,-42.384535414999874],[-72.7534887359999,-42.383721612999864],[-72.7624405589999,-42.38128020599983],[-72.77306067599997,-42.3658179669999],[-72.79112708199989,-42.31617603999989],[-72.79283606699987,-42.30559661299983],[-72.81407630099997,-42.30543385199987],[-72.83413652299993,-42.302911065999865],[-72.84630286399991,-42.29485442499991],[-72.84373938699991,-42.27825286299995],[-72.80972245999988,-42.24325937299986],[-72.76585852799994,-42.22698333099983],[-72.67300370999992,-42.2094052059999],[-72.6199438139999,-42.184747002999984],[-72.59455318899998,-42.182061455999914],[-72.57217363199996,-42.190606377999856],[-72.55793209499986,-42.21111419099989],[-72.45616614499991,-42.44085051899992],[-72.44033769399996,-42.45891692499994],[-72.42601477799988,-42.46298593499999],[-72.41978919199991,-42.43962981599991],[-72.42650305899988,-42.39617278399996],[-72.44029700399997,-42.354099216999906],[-72.45079505099994,-42.33928801899984],[-72.46442623599998,-42.32431405999991],[-72.47618567599997,-42.30779387799983],[-72.48131262899997,-42.288506768999895],[-72.47350012899989,-42.269789320999834],[-72.45482337099992,-42.258884372999844],[-72.43219967399995,-42.24993254999982],[-72.41234290299994,-42.237399997999916],[-72.43797766799992,-42.237399997999916],[-72.46003170499992,-42.23430754999984],[-72.47541256399995,-42.22307708099984],[-72.48131262899997,-42.199151299999954],[-72.47691809799991,-42.173760674999855],[-72.46515865799992,-42.16350676899991],[-72.44758053299998,-42.1579729149998],[-72.42601477799988,-42.14723072699987],[-72.4427791009999,-42.144138278999904],[-72.4601130849999,-42.14299895599987],[-72.47590084499984,-42.13892994599982],[-72.48802649599992,-42.12753671699984],[-72.49014238199993,-42.1168759089999],[-72.48985755099991,-42.08025481599988],[-72.48802649599992,-42.06471119599988],[-72.46255449099993,-41.9855282529999],[-72.46434485599991,-41.976169528999876],[-72.4846899079999,-41.95924244599989],[-72.51720130099997,-41.9509416649999],[-72.54100501199989,-41.977797132999896],[-72.56065833199992,-42.013441664999846],[-72.58055579299992,-42.03118254999983],[-72.60826575399992,-42.03313567499988],[-72.61778723899991,-42.03118254999983],[-72.62629146999984,-42.01604583099984],[-72.63304602799988,-42.00953541499986],[-72.65465247299997,-42.02060312299997],[-72.66759192599997,-42.01572030999992],[-72.67886308499995,-42.005791924999826],[-72.68667558499996,-41.997165622999916],[-72.71011308499993,-42.015557549999855],[-72.73729407499984,-42.013929945999834],[-72.8160701159999,-41.9790992169999],[-72.82664954299986,-41.972344658999944],[-72.83751380099994,-41.96233489399988],[-72.8399145169999,-41.95761484199987],[-72.84117591099991,-41.94654713299983],[-72.84373938699991,-41.94182708099983],[-72.85033118399988,-41.937432549999926],[-72.86497962099989,-41.932549737999864],[-72.87230383999989,-41.92880624799993],[-72.88027910099996,-41.92327239399982],[-72.88801021999987,-41.916599216999856],[-72.88857988199993,-41.91082122199989],[-72.86359615799992,-41.905938408999916],[-72.85448157499991,-41.89983489399984],[-72.84064693899992,-41.8844540339999],[-72.83551998599992,-41.8814429669999],[-72.82115637899994,-41.87664153399999],[-72.8170466789999,-41.87420012799995],[-72.81623287699998,-41.8697242169999],[-72.81802324099995,-41.858005467],[-72.8170466789999,-41.85369231599991],[-72.80919348899991,-41.845147393999895],[-72.72036699099996,-41.778415622999844],[-72.70348059799997,-41.771172783999916],[-72.69180253799988,-41.76441822699988],[-72.66331946499986,-41.732679945999834],[-72.64513098899997,-41.72283294099989],[-72.62035071499992,-41.723321221999875],[-72.59471594999992,-41.728773695999834],[-72.56948808499988,-41.73056406],[-72.53425045499992,-41.71363697699983],[-72.52179928299992,-41.71396249799985],[-72.50869706899994,-41.71624114399984],[-72.49494381399992,-41.71656666499986],[-72.48379472599989,-41.71355559699985],[-72.46076412699993,-41.70224374799987],[-72.42467200399989,-41.696384373],[-72.41608639199987,-41.69231536299995],[-72.38194739499997,-41.668145440999865],[-72.37657630099991,-41.66545989399988],[-72.36046301999994,-41.652764580999914],[-72.35090084499987,-41.648207289999874],[-72.33958899599988,-41.64690520599996],[-72.30308997299991,-41.648207289999874],[-72.32872473899991,-41.63551197699982],[-72.33800208199995,-41.6276994769999],[-72.3434138659999,-41.612969658999916],[-72.3417048819999,-41.600192966999884],[-72.32359778599988,-41.56511809699998],[-72.32306881399988,-41.558770440999865],[-72.32469641799992,-41.544528903999854],[-72.32359778599988,-41.538344007999896],[-72.30614173099991,-41.528578382999854],[-72.30308997299991,-41.524102471999896],[-72.30724036399995,-41.51189544099991],[-72.32542883999986,-41.493584893999845],[-72.3304337229999,-41.48316822699994],[-72.32510331899994,-41.45696379999984],[-72.29987545499998,-41.405205987999906],[-72.30308997299991,-41.380791924999855],[-72.32135982999989,-41.36744557099993],[-72.33922278599997,-41.371514580999985],[-72.34414628799993,-41.38681405999995],[-72.32359778599988,-41.40797291499987],[-72.32970130099997,-41.42099374799986],[-72.34479732999998,-41.44207122199988],[-72.35090084499987,-41.455824476999894],[-72.37267005099991,-41.59010182099982],[-72.38194739499997,-41.60979583099986],[-72.3905330069999,-41.620700778999925],[-72.4068904289999,-41.64674244599982],[-72.41608639199987,-41.658298434999935],[-72.42617753799993,-41.66399504999982],[-72.45860755099994,-41.67343515399993],[-72.52098548099991,-41.68189869599988],[-72.53278561099995,-41.685479424999855],[-72.54279537699995,-41.69280364399993],[-72.5724177729999,-41.70671965899983],[-72.58429928299995,-41.70973072699992],[-72.60944576699993,-41.70671965899983],[-72.65054277299993,-41.68718840899986],[-72.66966712099989,-41.682386976999865],[-72.67747962099989,-41.67359791499989],[-72.68610592399988,-41.63005950299995],[-72.69351152299987,-41.612969658999916],[-72.7279353509999,-41.59042734199984],[-72.73106848899988,-41.586195570999834],[-72.73639889199985,-41.581231377999956],[-72.75157630099994,-41.54843515399995],[-72.75885982999995,-41.543877862999906],[-72.7897029289999,-41.5309384089999],[-72.81932532499985,-41.5089657529999],[-72.84308834499987,-41.49968840899993],[-72.85387122299997,-41.497165622999916],[-72.86440995999993,-41.49871184699995],[-72.87539628799988,-41.50709400799984],[-72.88556881399991,-41.51165129999986],[-72.89537512899994,-41.50750090899984],[-72.90371660099993,-41.50042083099996],[-72.90953528599988,-41.496840101999894],[-72.93553626199986,-41.48552825299982],[-72.94737708199992,-41.48316822699994],[-72.95726477799994,-41.483575127999956],[-72.97801388899994,-41.515737159999816],[-73.02206288799995,-41.51466222899987],[-73.03590123099991,-41.52922436499993],[-73.03557638799992,-41.5568427919999],[-73.07713782499991,-41.56511809699998],[-73.08633378799996,-41.57024504999991],[-73.09544837099986,-41.57268645599986],[-73.10411536399992,-41.57659270599984],[-73.11188717399995,-41.586195570999834],[-73.1061091789999,-41.59091562299993],[-73.09642493399994,-41.60214609199993],[-73.09080969999992,-41.60670338299988],[-73.09410559799997,-41.610528252999885],[-73.09557044199994,-41.61370208099994],[-73.09650631399992,-41.61663176899988],[-73.09825598899991,-41.62029387799984],[-73.0801488919999,-41.6276994769999],[-73.0745336579999,-41.63681405999991],[-73.07713782499991,-41.66513437299986],[-73.07237708199989,-41.67400481599989],[-73.06371008999992,-41.686455987999814],[-73.05919348899994,-41.69744231599988],[-73.06688391799986,-41.70224374799987],[-73.08861243399994,-41.7042782529999],[-73.09972083199997,-41.710544528999925],[-73.11864173099988,-41.736993096999825],[-73.12922115799994,-41.747491143999895],[-73.14171301999994,-41.75481536299989],[-73.15636145699995,-41.756768487999935],[-73.17332923099994,-41.75066497199987],[-73.20140540299994,-41.784763278999876],[-73.2762751939999,-41.78411223799982],[-73.3631892569999,-41.773532809999864],[-73.4271541009999,-41.77800872199984],[-73.42381751199986,-41.78281015399992],[-73.42174231699993,-41.78655364399985],[-73.4188126289999,-41.78948333099987],[-73.41291256399998,-41.792250257999925],[-73.41291256399998,-41.79851653399989],[-73.43541419199988,-41.79322682099982],[-73.45543372299994,-41.79599374799987],[-73.49486243399991,-41.80592213299987],[-73.51504472599994,-41.80364348799989],[-73.57054602799991,-41.77800872199984],[-73.6599828769999,-41.757500908999866],[-73.73534094999988,-41.75448984199987],[-73.75994602599991,-41.74884134899996],[-73.75466311099987,-41.740956403999846],[-73.74057544899989,-41.73570623399985],[-73.7282531439999,-41.72650903699994],[-73.7106636629999,-41.69759769699985],[-73.70011595499992,-41.68182513199983],[-73.69836762299994,-41.66868028099996],[-73.69486121599988,-41.65158802099991],[-73.69663178799993,-41.63712451399984],[-73.68394934799997,-41.627048434999864],[-73.66893469999994,-41.61663176899988],[-73.63947506399995,-41.612969658999916],[-73.58189856699988,-41.614841403999975],[-73.55475826699987,-41.60849374799986],[-73.54328365799992,-41.58928801899991],[-73.53600012899992,-41.56650155999996],[-73.50340735599985,-41.52988046699994],[-73.49486243399991,-41.51043059699985],[-73.5276993479999,-41.53728606599985],[-73.54784094999987,-41.566582940999865],[-73.57160396999987,-41.59010182099982],[-73.61522376199989,-41.59986744599986],[-73.62661699099993,-41.59807708099996],[-73.64793860599991,-41.589125257999854],[-73.6599828769999,-41.586195570999834],[-73.66763261599993,-41.58684661299988],[-73.68492591099992,-41.59140390399992],[-73.6940811839999,-41.592380466999884],[-73.71349036399994,-41.589125257999854],[-73.74494381399995,-41.575616143999866],[-73.75890051999991,-41.57252369599989],[-73.76618404899992,-41.56991952899989],[-73.77041581899992,-41.56454843499992],[-73.7749731109999,-41.5603166649999],[-73.78282630099989,-41.561700127999885],[-73.78742428299992,-41.56365325299992],[-73.79271399599989,-41.56511809699998],[-73.79816646999984,-41.56568775799995],[-73.80680348999994,-41.5562331749999],[-73.81028697499994,-41.54570959099986],[-73.7997375279999,-41.53520051999986],[-73.80147361299993,-41.523368443999814],[-73.81369517799993,-41.497064270999886],[-73.84171261999998,-41.466819861999895],[-73.84865061999992,-41.44052934699984],[-73.85383943899987,-41.422118283999815],[-73.8431846839999,-41.39584873199999],[-73.84121670299986,-41.332820541999865],[-73.85482280799988,-41.27904908499987],[-73.87407446399993,-41.22780855599992],[-73.89495775099994,-41.18443716499995],[-73.91966475399988,-41.15269793599991],[-73.91399399199992,-41.13453456899995],[-73.91749529799989,-41.11611461299999],[-73.93168451999992,-41.094883543999885],[-73.92989280299992,-41.07517352799994],[-73.94058512099988,-41.04996438999992],[-73.93692855199993,-41.021112991999914],[-73.9406754229999,-40.9939545799999],[-73.94690423799993,-40.97284059799997],[-73.9379734479999,-40.95948593699989],[-73.9260700619999,-40.95392728199995],[-73.90211447699994,-40.94948337199989],[-73.89191206499991,-40.93726202199997],[-73.87256230199995,-40.9306026169999],[-73.8546403689999,-40.91616273999992],[-73.85621775199994,-40.90169782399991],[-73.87418317599995,-40.889409877999896],[-73.88894652099987,-40.87824853799992],[-73.8932297829999,-40.86378244399991],[-73.89022173799987,-40.85266292199985],[-73.87976977199989,-40.84046072599992],[-73.87080176899984,-40.82047051699989],[-73.87093706399995,-40.79482097699993],[-73.86217915599988,-40.76471425899997],[-73.84564734799991,-40.739308199],[-73.82801827499995,-40.71594909099994],[-73.80888528199995,-40.705985947999906],[-73.82224505299993,-40.69026609799996],[-73.83850411199998,-40.67678856999986],[-73.84149523299993,-40.666706764999944],[-73.83125513999988,-40.657762048999984],[-73.82101918699993,-40.641002011999866],[-73.80483272399994,-40.63101373299989],[-73.7607014679999,-40.60775881699992],[-73.74901671699988,-40.57426518699985],[-73.72849765799987,-40.54418016299989],[-73.73733003299986,-40.522943763999876],[-73.74811764199993,-40.50367603999993],[-73.74815833199992,-40.48837655999998],[-73.75133216099995,-40.475681248],[-73.76231848899994,-40.455254815999936],[-73.76939856699988,-40.44784921699987],[-73.77599036399997,-40.44345468499996],[-73.78091386599993,-40.4372697899999],[-73.78282630099989,-40.424574476999936],[-73.77965247299991,-40.415459893999866],[-73.76553300699987,-40.40162525799987],[-73.76231848899994,-40.39023202899999],[-73.76292883999989,-40.34758879999987],[-73.76109778599991,-40.32781340899993],[-73.74864661399988,-40.27304452899992],[-73.74811764199993,-40.260430596999925],[-73.7460017569999,-40.24944426899988],[-73.73713131399995,-40.231377862999864],[-73.73306230399989,-40.21982187299993],[-73.72411048099988,-40.214532158999944],[-73.72142493399988,-40.208916924999954],[-73.72207597599991,-40.20370859199987],[-73.72435462099992,-40.197849217],[-73.72704016799989,-40.19394296700001],[-73.72883053299998,-40.195245049999905],[-73.72935950399994,-40.18954843499993],[-73.73485266799989,-40.18035247199995],[-73.73501542899993,-40.17473723799996],[-73.71873938699991,-40.16529713299994],[-73.71458899599989,-40.16106536299991],[-73.69912675699996,-40.13176848799999],[-73.69782467399995,-40.126397393999945],[-73.68663489499994,-40.126397393999945],[-73.6742244129999,-40.125095309999864],[-73.66405188699989,-40.12029387799987],[-73.6599828769999,-40.10955169099995],[-73.66405188699989,-40.06707122199997],[-73.6685277989999,-40.045668226999936],[-73.67357337099986,-40.03085702899996],[-73.70026607999989,-39.99993254999991],[-73.71418209499987,-39.97844817499989],[-73.71117102799988,-39.9686825499999],[-73.70152747299987,-39.96412525799991],[-73.68321692599994,-39.942478122999916],[-73.67357337099986,-39.93450286299995],[-73.66234290299988,-39.93189869599996],[-73.63263912699993,-39.93450286299995],[-73.61148027299993,-39.926202080999886],[-73.58283443899995,-39.90471770599994],[-73.53746497299997,-39.89690520599987],[-73.51707923099988,-39.88762786299999],[-73.49852454299989,-39.87428150799998],[-73.48180091099994,-39.85881926899988],[-73.4668676419999,-39.839939059999935],[-73.45840410099996,-39.833754164999974],[-73.44395911399991,-39.83147551899991],[-73.43443762899992,-39.833265882999896],[-73.42430579299986,-39.837823174999926],[-73.41616777299993,-39.84343840899984],[-73.41291256399998,-39.84889088299988],[-73.41063391799992,-39.87151458099993],[-73.40404212099995,-39.895440362999906],[-73.39329993399991,-39.90894947699988],[-73.37877356699988,-39.900485934999935],[-73.37267005099991,-39.880466403999876],[-73.37572180899988,-39.85767994599985],[-73.38463294199994,-39.83652109199993],[-73.39610755099996,-39.82138437299993],[-73.40192623599992,-39.80413176899992],[-73.39500891799992,-39.782810153999876],[-73.38426673099991,-39.761000257999825],[-73.37877356699988,-39.74277109200001],[-73.38565019399991,-39.722263278999975],[-73.39867102799988,-39.708103122999944],[-73.40607662699998,-39.69491952899999],[-73.39610755099996,-39.67791106599985],[-73.35903886599996,-39.66415781],[-73.34630286399991,-39.65593840899993],[-73.35826575399994,-39.64714934699987],[-73.31688391799992,-39.606703382999925],[-73.29796301999987,-39.58269622199988],[-73.29002844999994,-39.560804945999934],[-73.28807532499988,-39.55103932099982],[-73.28282630099987,-39.53875090899985],[-73.27505449099989,-39.52809010199991],[-73.26549231699991,-39.52369557099993],[-73.26276607999992,-39.51832447699988],[-73.26056881399995,-39.506931247999916],[-73.25487219999988,-39.49504973799995],[-73.24156653599994,-39.489515882999854],[-73.25177975199998,-39.468438409],[-73.24998938699989,-39.450290623],[-73.23981686099995,-39.43368905999995],[-73.22447669199991,-39.41725025799995],[-73.22594153599997,-39.410577080999914],[-73.24502519399994,-39.3903134089999],[-73.24901282499991,-39.379652601999965],[-73.24364173099984,-39.369073175],[-73.23420162699995,-39.36321379999997],[-73.22508704299986,-39.3561337219999],[-73.22109941299988,-39.341729424999855],[-73.22427324099993,-39.31812916499982],[-73.23599199099993,-39.27044036299985],[-73.23534094999988,-39.24928150799993],[-73.21165930899986,-39.21347421699992],[-73.20982825399989,-39.19378020599988],[-73.23534094999988,-39.18092213299987],[-73.23298092399992,-39.20663827899999],[-73.23814856699994,-39.22210051899984],[-73.24543209499984,-39.22128671699999],[-73.2521052729999,-39.17791106599986],[-73.26577714799993,-39.143487237999835],[-73.28343665299985,-39.07529062299999],[-73.3613175119999,-38.913832289999874],[-73.43342037699995,-38.68694426899988],[-73.44082597599993,-38.68694426899988],[-73.4375707669999,-38.73357512799996],[-73.4271541009999,-38.77629973799999],[-73.43748938699991,-38.77206796699988],[-73.44505774599995,-38.761407158999944],[-73.45449785099987,-38.734795830999985],[-73.45759029899995,-38.71453215899999],[-73.45848548099994,-38.693617445999934],[-73.46153723899994,-38.67376067499983],[-73.48322506399992,-38.63746510199984],[-73.5023087229999,-38.570977472],[-73.5156143869999,-38.53915780999996],[-73.52065995999996,-38.52157968499993],[-73.52513587099992,-38.47568124799987],[-73.54328365799992,-38.42066822699989],[-73.54185950399994,-38.39918385199988],[-73.5277400379999,-38.3519833309999],[-73.52619381399995,-38.341241143999966],[-73.53099524599985,-38.332126559999885],[-73.52489173099987,-38.326267184999935],[-73.51520748599992,-38.32170989399999],[-73.50910396999993,-38.31650155999991],[-73.5079646479999,-38.30673593499996],[-73.52065995999996,-38.267022393999866],[-73.51992753799992,-38.25774505],[-73.51219641799992,-38.24504973799985],[-73.50503495999988,-38.2400041649999],[-73.49494381399988,-38.23430754999984],[-73.48574785099993,-38.227308851999936],[-73.48180091099994,-38.218031507999896],[-73.46279863199993,-38.091729424999926],[-73.4629613919999,-38.051202080999985],[-73.47069251199991,-38.01189544099999],[-73.5032445949999,-37.93328215899999],[-73.55768795499998,-37.84612395599987],[-73.62205969999988,-37.75872161299989],[-73.63170325399994,-37.75107187299996],[-73.65192623599998,-37.741387627999984],[-73.6599828769999,-37.73479583099993],[-73.66657467399989,-37.72551848799988],[-73.66808020699995,-37.71941497199998],[-73.66616777299987,-37.662774346999896],[-73.6695043609999,-37.652439059999885],[-73.68447831899992,-37.63176848799987],[-73.68785559799994,-37.621677342],[-73.6851293609999,-37.598402601999894],[-73.67764238199993,-37.57935963299998],[-73.66657467399989,-37.56365325299984],[-73.6531469389999,-37.549899997999916],[-73.61904863199987,-37.527032159],[-73.60411536399994,-37.512383721999974],[-73.59788977799988,-37.491875908999944],[-73.59927324099996,-37.44784921700001],[-73.60334225199992,-37.428969007999896],[-73.61148027299993,-37.412692966999956],[-73.67178300699987,-37.36256275799997],[-73.68040930899988,-37.347832940999965],[-73.67568925699987,-37.32626718499988],[-73.65355383999989,-37.290297132999896],[-73.64631100199998,-37.26873137799997],[-73.64464270699995,-37.20142994599995],[-73.63573157499991,-37.18336353999993],[-73.62035071499989,-37.166273695999884],[-73.60757402299993,-37.155450127999984],[-73.59447180899988,-37.15243906],[-73.57799231699988,-37.15886809699991],[-73.56590735599988,-37.17400481599991],[-73.55699622299994,-37.18279387799997],[-73.54670162699992,-37.18678150799994],[-73.54283606699991,-37.18914153399999],[-73.50251217399995,-37.207777601999894],[-73.4776912099999,-37.20476653399997],[-73.46812903599991,-37.20720794099984],[-73.46471106699991,-37.215508722],[-73.46654212099989,-37.22527434699985],[-73.46739661399987,-37.23463307099996],[-73.46068274599992,-37.24195728999989],[-73.44880123599998,-37.24138762799991],[-73.42845618399988,-37.22714609199991],[-73.40339107999989,-37.236586195999834],[-73.38849850199995,-37.23479583099993],[-73.36168372299994,-37.227715752999885],[-73.31993567599991,-37.22356536299984],[-73.28258216099992,-37.21404387799994],[-73.23696855399989,-37.191501559999864],[-73.20905514199987,-37.160251559999885],[-73.17332923099994,-37.07634856599991],[-73.17153886599993,-37.02695077900002],[-73.17723548099994,-37.01051197699985],[-73.17931067599994,-37.00139739399995],[-73.18008378799988,-36.99089934699997],[-73.17723548099994,-36.98503997199993],[-73.15965735599991,-36.96021900799997],[-73.15689042899993,-36.949965101999865],[-73.14537512899992,-36.833916924999905],[-73.15094967399992,-36.80868905999995],[-73.16535396999986,-36.793145440999936],[-73.18529212099986,-36.78337981599991],[-73.20742753799993,-36.77532317499997],[-73.19859778599988,-36.76392994599982],[-73.1869197259999,-36.75212981599985],[-73.1734919909999,-36.74179452899993],[-73.15965735599991,-36.73495859199991],[-73.14928137899989,-36.74675872199997],[-73.13170325399997,-36.73642343499988],[-73.12645423099988,-36.71835702899986],[-73.15282141799989,-36.7069637999999],[-73.13052324099993,-36.67766692499997],[-73.12555904899989,-36.66545989399998],[-73.1328832669999,-36.64999765399996],[-73.12913977799985,-36.63258228999982],[-73.12189693899992,-36.614353123000015],[-73.11864173099988,-36.59710051899991],[-73.09243730399996,-36.618340752999984],[-73.09089107999992,-36.68743254999991],[-73.0702205069999,-36.71379973799999],[-73.05451412699992,-36.71884531000002],[-73.03587805899994,-36.72079843499989],[-73.01740475199992,-36.71933359199993],[-73.00202389199987,-36.71379973799999],[-72.9880264959999,-36.70256926899991],[-72.98192298099993,-36.690362237999935],[-72.98094641799986,-36.65585702899992],[-72.97891191299993,-36.648207289999974],[-72.97423255099991,-36.64023202899993],[-72.96861731699991,-36.633070570999976],[-72.96385657499991,-36.62810637799994],[-72.95946204299992,-36.62070077899986],[-72.96117102799994,-36.614027601999894],[-72.96507727799994,-36.6075171849999],[-72.97052975199995,-36.592705987999935],[-72.9850154289999,-36.57789478999995],[-72.98835201699984,-36.573174737999864],[-72.98810787699989,-36.52898528399989],[-72.98619544199994,-36.52141692499984],[-72.98106848899994,-36.516778253],[-72.97093665299988,-36.51523202899996],[-72.9622289699999,-36.518324476999936],[-72.96051998599998,-36.52548593499989],[-72.96056067599996,-36.53248463299997],[-72.95702063699989,-36.53573984199999],[-72.94220943899992,-36.532403252999984],[-72.93224036399994,-36.52361419099984],[-72.92528235599994,-36.510511976999865],[-72.90518144399988,-36.45501067499998],[-72.89586341099994,-36.438083592],[-72.8822322259999,-36.42245859200001],[-72.87840735599988,-36.41423919099993],[-72.87230383999989,-36.378024997999916],[-72.86766516799989,-36.36695728999997],[-72.85057532499994,-36.34392669099991],[-72.84089107999995,-36.327325127999856],[-72.83234615799995,-36.30803801899999],[-72.82616126199989,-36.28704192499997],[-72.82384192599991,-36.265069268999866],[-72.8373103509999,-36.196547132999825],[-72.83751380099994,-36.17937590899997],[-72.83116614499991,-36.169203382999854],[-72.81334387899994,-36.15447356599995],[-72.80955969999991,-36.141778252999984],[-72.81183834499988,-36.13095468499998],[-72.82164466099991,-36.11052825299991],[-72.82384192599991,-36.1006812479999],[-72.81908118399991,-36.081149998],[-72.79674231699988,-36.04973723799989],[-72.7897029289999,-36.028497003],[-72.79002844999994,-36.019138278999876],[-72.79214433499992,-36.007582289999945],[-72.79556230399996,-35.99781666499982],[-72.80431067599994,-35.988864841999884],[-72.80016028599991,-35.97812265399996],[-72.79332434799997,-35.96746184699984],[-72.78014075399992,-35.95256926899988],[-72.6856990229999,-35.88339609199996],[-72.6717830069999,-35.865899346999925],[-72.6661677729999,-35.84677499799996],[-72.61099199099996,-35.81910572699995],[-72.59797115799998,-35.81015390399993],[-72.58356686099992,-35.77060312299997],[-72.58682206899996,-35.72966887799986],[-72.60065670499995,-35.69101327899999],[-72.64915930899993,-35.60735442499995],[-72.65257727799984,-35.58660247199997],[-72.64659583199992,-35.56658294099991],[-72.63206946499989,-35.552911065999965],[-72.53868567599991,-35.498793226999894],[-72.52965247299987,-35.49041106599992],[-72.50523841099994,-35.44801197699985],[-72.48802649599992,-35.4183895809999],[-72.4907120429999,-35.404554945999905],[-72.49185136599993,-35.39080169099998],[-72.48936926999991,-35.37704843499996],[-72.48131262899997,-35.363213799999954],[-72.4652400379999,-35.35222747199991],[-72.44709225199989,-35.34539153399999],[-72.43219967399995,-35.3345679669999],[-72.42601477799988,-35.31194426899992],[-72.42454993399991,-35.2887509089999],[-72.4198298819999,-35.26816171699987],[-72.41120357999992,-35.24968840899993],[-72.39806067599993,-35.23349374799997],[-72.36400305899994,-35.207777601999844],[-72.28823808499996,-35.168552342],[-72.2547501289999,-35.144707940999936],[-72.2305802069999,-35.116143487999935],[-72.21349036399997,-35.0813127579999],[-72.20343990799996,-35.040622654],[-72.19326738199993,-34.908298434999935],[-72.1878149079999,-34.88551197699992],[-72.17479407499991,-34.86695728999992],[-72.15904700399993,-34.8492977839999],[-72.14541581899991,-34.829359632999825],[-72.13182532499988,-34.78435637799984],[-72.12645423099991,-34.77841562299999],[-72.10301673099994,-34.76091887799994],[-72.09764563699987,-34.750258070999834],[-72.09349524599992,-34.73414478999986],[-72.0628962879999,-34.67848072699992],[-72.05724036399991,-34.658786716999984],[-72.05394446499989,-34.569512627999856],[-72.04238847599996,-34.5079078099999],[-72.04259192599991,-34.48609791499986],[-72.05280514199987,-34.449395440999936],[-72.05549068899991,-34.42815520599987],[-72.04808508999994,-34.403903903999954],[-72.03066972599987,-34.389906507999825],[-72.01065019399991,-34.38062916499996],[-71.99522864499997,-34.37004973799999],[-71.98908443899988,-34.355238539999846],[-71.98713131399995,-34.335056248],[-71.98912512899989,-34.25416432099992],[-71.99522864499997,-34.212497653999876],[-72.00487219999992,-34.197930596999846],[-72.0188695949999,-34.181410414999874],[-72.02684485599985,-34.1626929669999],[-72.01854407499988,-34.14080169099995],[-71.97276770699997,-34.09197356599995],[-71.9605199859999,-34.075290623000015],[-71.94371497299989,-34.03972747199995],[-71.93138587099995,-34.02206796699994],[-71.90660559799989,-34.00945403399996],[-71.90477454299992,-33.99749114399984],[-71.90583248599995,-33.98365650799984],[-71.90526282499991,-33.972832940999936],[-71.90029863199993,-33.96493905999995],[-71.8779190749999,-33.94548919099994],[-71.86025956899991,-33.91187916499993],[-71.83531653599988,-33.82642994599992],[-71.81651770699992,-33.78728606599988],[-71.80809485599988,-33.77695077899987],[-71.80199133999989,-33.773044528999876],[-71.79539954299992,-33.77027760199982],[-71.78547115799992,-33.76376718499992],[-71.77578691299996,-33.76018645599985],[-71.75365149599989,-33.760918877999885],[-71.74449622299991,-33.7569312479999],[-71.72516842399997,-33.742608330999914],[-71.70579993399984,-33.73308684699991],[-71.68765214799996,-33.72087981599985],[-71.67186438699991,-33.698500257999925],[-71.65436764199987,-33.65650807099985],[-71.6477758449999,-33.63388437299997],[-71.6451716789999,-33.61288827899993],[-71.64663652299996,-33.57903411299988],[-71.6451716789999,-33.56878020599994],[-71.64073645699992,-33.560804945999884],[-71.62751217399997,-33.54656340899989],[-71.62466386599993,-33.54143645599996],[-71.6407771479999,-33.50058359199993],[-71.70592200399992,-33.434340101999865],[-71.70726477799991,-33.38990650799993],[-71.70270748599995,-33.37900155999995],[-71.69749915299988,-33.37037525799987],[-71.68919837099988,-33.36516692499987],[-71.67560787699995,-33.36337655999996],[-71.67218990799992,-33.358575127999984],[-71.67121334499987,-33.347426039999874],[-71.67186438699991,-33.325778903999975],[-71.67609615799992,-33.30095794099984],[-71.68590247299994,-33.28386809699988],[-71.69749915299988,-33.26783619599989],[-71.70726477799991,-33.24667734199997],[-71.72032630099989,-33.167575778999975],[-71.72573808499993,-33.153985283999845],[-71.7522680329999,-33.11353932099989],[-71.76187089799987,-33.10198333099996],[-71.74351966099992,-33.08635833099997],[-71.69033769399994,-33.085625908999944],[-71.67931067599989,-33.071547132999825],[-71.67747962099992,-33.06072356599992],[-71.67271887899992,-33.04794687299997],[-71.66616777299993,-33.036065362999835],[-71.65880286399992,-33.02752044099991],[-71.64574133999986,-33.018975518999966],[-71.63805091099994,-33.017998956],[-71.63048255099989,-33.02011484199999],[-71.59357662699992,-33.019463799999954],[-71.58238684799991,-33.01685963299997],[-71.57286536399991,-33.010186455999914],[-71.56822669199988,-33.001885674999926],[-71.56452389199985,-32.98406340899995],[-71.5526423819999,-32.96428801899994],[-71.55378170499992,-32.95378997199995],[-71.55687415299991,-32.943454684999864],[-71.55577551999995,-32.931898695999934],[-71.54857337099993,-32.92197031000002],[-71.52892005099987,-32.90764739399985],[-71.5210668609999,-32.89657968499991],[-71.51829993399994,-32.87314218500002],[-71.52619381399992,-32.85165780999991],[-71.53685462099995,-32.83123137799984],[-71.54434160099993,-32.80445728999992],[-71.54792232999989,-32.7955054669999],[-71.54869544199991,-32.784844658999866],[-71.54214433499993,-32.77361419099994],[-71.53213456899994,-32.76921965899989],[-71.5094294909999,-32.769707940999965],[-71.50112870999992,-32.76677825299985],[-71.49498450399994,-32.74618906],[-71.50352942599997,-32.726006768999966],[-71.50674394399991,-32.71087004999996],[-71.46548417899987,-32.699476820999834],[-71.45417232999998,-32.68564218499992],[-71.44831295499995,-32.665704033999845],[-71.44591223899991,-32.642754815999936],[-71.44912675699996,-32.59710051899999],[-71.45474199099996,-32.573011976999894],[-71.47671464799987,-32.53525156],[-71.47142493399988,-32.51580169099984],[-71.45616614499991,-32.49920012799995],[-71.43968665299994,-32.48503997199985],[-71.44139563699994,-32.472263278999904],[-71.43175208199997,-32.42669036299995],[-71.42609615799998,-32.410577080999886],[-71.41812089799993,-32.39983489399995],[-71.41100012899997,-32.39413827899988],[-71.40794837099989,-32.386325778999975],[-71.41246497299994,-32.36956145599996],[-71.44591223899991,-32.34172942499991],[-71.45075436099998,-32.33953215899999],[-71.46426347599996,-32.33513762799993],[-71.4671117829999,-32.33171965899992],[-71.46735592399993,-32.330743096999946],[-71.46776282499994,-32.31617603999992],[-71.4671117829999,-32.315036716999984],[-71.47622636599988,-32.27752044099988],[-71.48131262899992,-32.266534112999906],[-71.49624589799996,-32.25164153399996],[-71.51390540299987,-32.240166925],[-71.53050696499992,-32.22665781000002],[-71.54214433499993,-32.205173435],[-71.54385331899994,-32.19329192499987],[-71.54214433499993,-32.160088799999855],[-71.53990637899994,-32.14902109199991],[-71.52790279899992,-32.126071873],[-71.52696692599994,-32.083672783999845],[-71.5077205069999,-31.977471612999988],[-71.51138261599992,-31.961195570999962],[-71.52013098899991,-31.95110442499991],[-71.52599036399997,-31.9411760399999],[-71.52879798099991,-31.930108330999953],[-71.52790279899992,-31.9165992169999],[-71.52269446499992,-31.90650807099993],[-71.51402747299994,-31.89959075299984],[-71.50560462099989,-31.89430103999994],[-71.50112870999992,-31.8898251279999],[-71.50645911399988,-31.869235934999864],[-71.53962154899992,-31.837660414999874],[-71.53872636599989,-31.824639580999882],[-71.52171790299985,-31.806247653999932],[-71.51451575399992,-31.79045989399989],[-71.51496334499993,-31.775485934999864],[-71.56322180899986,-31.608086846999896],[-71.5703832669999,-31.591566664999835],[-71.56944739499991,-31.51921965899996],[-71.5936580069999,-31.444105726999847],[-71.60846920499998,-31.420179945999973],[-71.64712480399993,-31.202080987999864],[-71.66616777299993,-31.169854424999908],[-71.66783606699993,-31.150485934999978],[-71.65274003799993,-31.068942966999867],[-71.65099036399994,-31.022393487999853],[-71.65493730399993,-30.97600676899988],[-71.66563880099994,-30.93710702899996],[-71.66999264199984,-30.930759372999944],[-71.67442786399991,-30.925957940999865],[-71.67788652299993,-30.919040622999944],[-71.68032792899996,-30.895684502999867],[-71.68512936099992,-30.875909112999846],[-71.6891169909999,-30.843031507999857],[-71.70726477799991,-30.779473565999865],[-71.69896399599995,-30.708916924999965],[-71.70352128799988,-30.697442315999847],[-71.71344967399996,-30.614922783999845],[-71.70970618399986,-30.5936825499999],[-71.69489498599998,-30.544854424999937],[-71.69668535099996,-30.529229424999954],[-71.70348059799989,-30.508558851999947],[-71.69937089799993,-30.485039971999896],[-71.6861466139999,-30.449802341999852],[-71.67682857999995,-30.342543226999876],[-71.63923092399993,-30.252211195999962],[-71.63776607999989,-30.241469007999868],[-71.63463294199991,-30.2382138],[-71.62779700399992,-30.240492445999887],[-71.62096106699987,-30.246677341999952],[-71.6087947259999,-30.27516041499987],[-71.58747311099992,-30.284926039999817],[-71.56232662699993,-30.287286065999865],[-71.54214433499993,-30.28533294099999],[-71.51756751199991,-30.278578382999882],[-71.50609290299988,-30.271905206],[-71.50112870999992,-30.261814059999864],[-71.50352942599997,-30.25115325299991],[-71.50658118399986,-30.24374765399993],[-71.50438391799986,-30.239515882999825],[-71.49095618399988,-30.2382138],[-71.48615475199998,-30.22682057099986],[-71.44591223899991,-30.162367445999877],[-71.43297278599991,-30.173923434999974],[-71.42430579299989,-30.184747002999984],[-71.41462154899995,-30.18808359199999],[-71.39879309799991,-30.176690362999864],[-71.38817298099984,-30.1626929669999],[-71.38255774599986,-30.147719007999864],[-71.37767493399988,-30.11467864399991],[-71.37645423099988,-30.078871351999894],[-71.3823949859999,-30.046075127999885],[-71.39460201699987,-30.01677825299987],[-71.41246497299994,-29.99179452899993],[-71.40733801999991,-29.98267994599986],[-71.4010310539999,-29.978122653999986],[-71.39346269399994,-29.978610934999978],[-71.38442949099993,-29.98430754999988],[-71.38312740799992,-29.976169528999947],[-71.37995357999995,-29.96965911299996],[-71.37482662699993,-29.965427341999856],[-71.3585505849999,-29.96160247199984],[-71.35850989499991,-29.956312757999953],[-71.36050370999996,-29.949639580999897],[-71.35781816299988,-29.943291924999954],[-71.35399329299989,-29.938164971999953],[-71.35358639199987,-29.933770440999876],[-71.35069739499994,-29.930840752999853],[-71.33983313699994,-29.929782809999974],[-71.33608964799993,-29.931817315999837],[-71.32632402299987,-29.94117603999995],[-71.31965084499993,-29.943291924999954],[-71.29775956899988,-29.933851820999863],[-71.28661048099988,-29.91025156],[-71.28258216099991,-29.880140882999964],[-71.28209387899992,-29.850844007999868],[-71.28514563699991,-29.836114190999876],[-71.2928767569999,-29.82545338299994],[-71.31248938699989,-29.809665622999983],[-71.31944739499997,-29.79998137799984],[-71.32412675699986,-29.78728606599988],[-71.33592688699986,-29.728122653999957],[-71.3353572259999,-29.711195570999976],[-71.32648678299991,-29.703789971999893],[-71.3202205069999,-29.696954033999972],[-71.3175349599999,-29.681817315999965],[-71.3185115229999,-29.66562265400002],[-71.32306881399992,-29.655938408999873],[-71.29718990799992,-29.622653903999872],[-71.28807532499994,-29.60312265399997],[-71.29881751199994,-29.594496351999894],[-71.31151282499991,-29.586683851999975],[-71.32335364499997,-29.56780364399995],[-71.33218339799993,-29.544854424999883],[-71.33604895699992,-29.524997653999872],[-71.33348548099991,-29.50408294099999],[-71.31944739499997,-29.471856377999956],[-71.31419837099989,-29.44402434699991],[-71.31012936099991,-29.433038018999948],[-71.30724036399988,-29.421156507999896],[-71.30882727799991,-29.408868096999853],[-71.31456458199989,-29.40105559699995],[-71.32998613199993,-29.390801690999837],[-71.33604895699992,-29.38103606599989],[-71.34117591099992,-29.357191664999817],[-71.34276282499988,-29.336602471999967],[-71.34715735599985,-29.31682708099986],[-71.36091061099995,-29.295586846999864],[-71.37608801999994,-29.282403252999913],[-71.46939042899996,-29.228773695999834],[-71.48692786399991,-29.211846612999846],[-71.4942927729999,-29.19264088299998],[-71.49461829299992,-29.142347914999913],[-71.49575761599996,-29.13892994599992],[-71.49620520699995,-29.134698174999897],[-71.4942927729999,-29.127129815999936],[-71.49156653599994,-29.1221656229999],[-71.48350989499991,-29.11239999799994],[-71.48131262899992,-29.107842705999914],[-71.48208574099993,-29.093438408999948],[-71.48916581899988,-29.08619557099983],[-71.4973038399999,-29.080173435],[-71.50112870999992,-29.069756768999834],[-71.49901282499991,-29.060967705999953],[-71.48965410099987,-29.04664478999996],[-71.48753821499986,-29.035577080999847],[-71.50112870999992,-28.99114348799992],[-71.49925696499986,-28.986586195999877],[-71.49754798099985,-28.97682057099993],[-71.50112870999992,-28.970798435],[-71.51480058499996,-28.977634372999944],[-71.52196204299989,-28.94011809699984],[-71.51121985599988,-28.889580987999835],[-71.48778235599991,-28.84514739399991],[-71.45645097599996,-28.826104424999908],[-71.4407445949999,-28.822930596999853],[-71.40184485599991,-28.806573174999837],[-71.39134680899991,-28.799493096999967],[-71.38036048099988,-28.780450127999885],[-71.36815344999991,-28.74081796699986],[-71.35781816299988,-28.723728122999983],[-71.3185115229999,-28.69264088299998],[-71.30186926999994,-28.674899997999987],[-71.28766842399992,-28.61891041499996],[-71.28892981699994,-28.607028904],[-71.29466712099989,-28.59954192499985],[-71.30402584499984,-28.591973565999975],[-71.31261145699995,-28.58342864399988],[-71.3162328769999,-28.572930597],[-71.30748450399994,-28.561700127999984],[-71.28868567599989,-28.55242278399986],[-71.27009029899989,-28.54045989399991],[-71.26158606699994,-28.521661065999965],[-71.26988684799994,-28.486016533999916],[-71.26781165299991,-28.476657809999978],[-71.26048743399991,-28.47242603999996],[-71.2505997389999,-28.47136809699991],[-71.24071204299989,-28.47136809699991],[-71.23363196499992,-28.470472914999913],[-71.2103572259999,-28.44670989399999],[-71.18858801999994,-28.40545012799987],[-71.17393958199995,-28.36060963299994],[-71.17223059799994,-28.326429945999948],[-71.17845618399988,-28.309014580999886],[-71.18333899599986,-28.30152760199982],[-71.18932044199988,-28.298516534],[-71.19359290299988,-28.294366143999962],[-71.18691972599993,-28.284763278999975],[-71.17223059799994,-28.267754815999837],[-71.17003333199995,-28.25009531],[-71.16014563699994,-28.211683851999908],[-71.15709387899994,-28.14283619599985],[-71.16002356699997,-28.120212497999955],[-71.17308508999994,-28.092950127999885],[-71.16783606699994,-28.083591403999947],[-71.15880286399994,-28.074151299999837],[-71.15172278599988,-28.06454843499986],[-71.14732825399989,-28.048923434999878],[-71.13809160099993,-27.945977471999896],[-71.13263912699989,-27.923516533999983],[-71.12437903599991,-27.90129973799993],[-71.11872311099992,-27.895196221999853],[-71.11107337099989,-27.890394789999945],[-71.10326087099989,-27.884209893999895],[-71.09715735599991,-27.87395598799995],[-71.1028539699999,-27.852227471999896],[-71.10472571499986,-27.838962497999958],[-71.10020911399991,-27.832940362999864],[-71.08971106699994,-27.830173434999978],[-71.0846248039999,-27.822930596999964],[-71.08299719999988,-27.81292083099997],[-71.08283443899992,-27.801934502999842],[-71.07876542899996,-27.78069426899985],[-71.05785071499992,-27.74439869599993],[-71.04869544199991,-27.723077080999886],[-71.04369055899988,-27.70191822699988],[-71.04185950399992,-27.67848072699989],[-71.03868567599994,-27.66643645599997],[-71.03160559799997,-27.65740325299988],[-71.0245662099999,-27.655450127999842],[-71.02139238199993,-27.664727471999967],[-71.01325436099992,-27.6715634089999],[-70.97109941299988,-27.66033294099999],[-70.95250403599988,-27.66106536299992],[-70.94749915299994,-27.649183851999965],[-70.9395238919999,-27.6382789039999],[-70.93040930899991,-27.63005950299999],[-70.92210852799991,-27.626885674999937],[-70.91242428299995,-27.621840101999823],[-70.91222083199992,-27.61003997199994],[-70.91901607999992,-27.586032809999974],[-70.91856848899994,-27.54387786299995],[-70.8953751289999,-27.502536717],[-70.89167232999995,-27.493096612999906],[-70.89557857999995,-27.469821872999972],[-70.90518144399994,-27.44150156000002],[-70.91734778599991,-27.415134372999944],[-70.94579016799995,-27.37184010199995],[-70.94493567599994,-27.349541924999922],[-70.93700110599988,-27.326429945999877],[-70.93268795499998,-27.298028252999853],[-70.9381404289999,-27.281426690999893],[-70.94831295499995,-27.262465101999876],[-70.95490475199992,-27.243584893999852],[-70.94493567599994,-27.214939059999878],[-70.94880123599995,-27.204359632999925],[-70.95995032499988,-27.188164971999967],[-70.96100826699993,-27.181410414999846],[-70.96104895699992,-27.16806405999992],[-70.95995032499988,-27.161390882999953],[-70.94847571499992,-27.132419528999876],[-70.94688880099989,-27.123630467],[-70.94131425699987,-27.113376559999963],[-70.92926998599995,-27.106703382999925],[-70.91706295499998,-27.10686614399998],[-70.91152910099986,-27.11679452899989],[-70.90819251199994,-27.12916432099983],[-70.90046139199993,-27.13250090899986],[-70.89134680899994,-27.130547783999987],[-70.88418535099989,-27.127211195999962],[-70.87083899599989,-27.117852471999853],[-70.86896725199992,-27.11003997199994],[-70.87132727799988,-27.102146091999884],[-70.87059485599994,-27.09246184699991],[-70.86506100199992,-27.084405205999886],[-70.8582250639999,-27.07830169099998],[-70.85244706899994,-27.071547132999868],[-70.85008704299987,-27.06178150799991],[-70.84874426999991,-27.048028252999984],[-70.8452042309999,-27.045993747999958],[-70.83983313699986,-27.04900481599988],[-70.83332271999987,-27.051527601999894],[-70.81843014199993,-27.047946873],[-70.81696529899995,-27.039727471999925],[-70.82111568899998,-27.030450127999956],[-70.8227432929999,-27.02361419099995],[-70.81501217399992,-27.01523202899997],[-70.79417883999992,-27.002536716999927],[-70.7886449859999,-26.996270440999965],[-70.79076087099992,-26.977797132999953],[-70.80695553299995,-26.93059661299996],[-70.80573482999995,-26.921156507999868],[-70.80638587099989,-26.91619231599999],[-70.8227432929999,-26.886976820999877],[-70.82420813699989,-26.873793226999837],[-70.8224177729999,-26.865817966999956],[-70.78604081899991,-26.788018487999878],[-70.77806555899986,-26.777927341999913],[-70.7717992829999,-26.772393487999892],[-70.74893848099995,-26.76055710299985],[-70.7324669429999,-26.749280592999952],[-70.74868730399996,-26.72942473799993],[-70.7528376939999,-26.72242603999986],[-70.75617428299992,-26.713636976999894],[-70.75450598899991,-26.70208098799995],[-70.74693762899994,-26.692071221999882],[-70.73033606699991,-26.68181731599995],[-70.72716223899994,-26.671482028999932],[-70.7259822259999,-26.66008879999988],[-70.71499589799996,-26.608575127999984],[-70.69530188699991,-26.568536065999965],[-70.69245357999995,-26.544366143999866],[-70.70470130099994,-26.511488539999874],[-70.70665442599997,-26.492852471999967],[-70.69587154899996,-26.472426039999903],[-70.68984941299996,-26.46453215899984],[-70.68663489499991,-26.45647551899999],[-70.68541419199991,-26.446954033999987],[-70.68561764199987,-26.434502862999892],[-70.68809973899997,-26.42376067499997],[-70.69766191299996,-26.400648695999834],[-70.6992895169999,-26.392998955999985],[-70.69127065599989,-26.383551259999876],[-70.66663609499997,-26.38526924999982],[-70.65654834699991,-26.355824160999887],[-70.62995437299992,-26.340976922999943],[-70.64241290899992,-26.315330990999854],[-70.68144343799989,-26.304495915999965],[-70.67544562999987,-26.276909054999948],[-70.65705663999998,-26.265802165999958],[-70.64826412699989,-26.23577239399988],[-70.65485592399997,-26.219170831],[-70.66454016799992,-26.202813408999987],[-70.66494706899992,-26.175713799999883],[-70.67194576699993,-26.160821221999925],[-70.66543535099993,-26.149672132999896],[-70.66173255099997,-26.13404713299991],[-70.65827389199987,-26.09937916499993],[-70.65965735599985,-26.07252369599986],[-70.65827389199987,-26.06462981599998],[-70.6534317699999,-26.05641041499989],[-70.64220130099989,-26.04973723799992],[-70.63780676999991,-26.044122002999842],[-70.63072669199994,-26.009535414999846],[-70.63597571499994,-25.974704684999978],[-70.64891516799995,-25.94361744599989],[-70.66510982999989,-25.92058684699991],[-70.6966853509999,-25.885186455999914],[-70.70384680899994,-25.867364190999936],[-70.70612545499989,-25.84189218500002],[-70.71035722599993,-25.835381768999937],[-70.73111677899993,-25.82928883400002],[-70.73998509499998,-25.82932275899998],[-70.73338782499991,-25.80396900799991],[-70.72399857599991,-25.778712574999883],[-70.70031251799989,-25.77337680199983],[-70.69161801999994,-25.741454066999964],[-70.69383704299995,-25.71404387799999],[-70.69245357999995,-25.69133879999997],[-70.6866755849999,-25.668064059999864],[-70.67341061099997,-25.65390390399993],[-70.65080870499995,-25.648306369999883],[-70.63477473399988,-25.62550241999992],[-70.63780676999991,-25.58147551899998],[-70.63996334499993,-25.57138437299993],[-70.64932206899994,-25.551202080999982],[-70.65143795499995,-25.540785414999913],[-70.6503800119999,-25.52857838299994],[-70.6468806629999,-25.521661065999847],[-70.62287350199998,-25.504164320999887],[-70.61872311099992,-25.503187757999825],[-70.61375891799989,-25.503594659],[-70.60366777299993,-25.50164153399996],[-70.58495032499985,-25.493584893999937],[-70.55113684799997,-25.47242603999993],[-70.5384822259999,-25.46819426899999],[-70.53091386599993,-25.456801039999945],[-70.52135169199997,-25.403252862999846],[-70.51366126199994,-25.386325778999947],[-70.47642981699997,-25.386325778999947],[-70.46491451699993,-25.382419528999957],[-70.45848548099991,-25.3736304669999],[-70.4542537099999,-25.36321379999991],[-70.44937089799993,-25.355157158999955],[-70.44481360599987,-25.344903252999856],[-70.44660396999987,-25.333103122999972],[-70.45287024599992,-25.31804778399996],[-70.45083574099988,-25.30632903399996],[-70.43919837099989,-25.276462497999887],[-70.43439693899998,-25.236097915000016],[-70.43700110599987,-25.193454684999978],[-70.44908606699987,-25.15292734199997],[-70.47272701699993,-25.11931731599995],[-70.48912512899992,-25.110446872999987],[-70.49718176999993,-25.104261976999936],[-70.50059973899997,-25.095472914999874],[-70.49966386599988,-25.0845679669999],[-70.49535071499989,-25.069024346999893],[-70.49445553299998,-25.060967705999943],[-70.48859615799995,-25.03948333099993],[-70.47704016799992,-25.02027760199988],[-70.46873938699993,-25.00009531000002],[-70.47272701699993,-24.975274346999978],[-70.52098548099985,-24.9190406229999],[-70.52794348899994,-24.896172783999987],[-70.53172766799986,-24.87314218499992],[-70.54979407499988,-24.832452080999925],[-70.55589758999989,-24.810804945999948],[-70.55589758999989,-24.765883070999934],[-70.55907141799995,-24.75628020599987],[-70.57310950399989,-24.737237237999878],[-70.57640540299991,-24.731703382999953],[-70.57640540299991,-24.653252862999988],[-70.55479895699992,-24.605889580999953],[-70.55650794199993,-24.595147393999866],[-70.56045488199989,-24.584405205999943],[-70.56541907499988,-24.5617001279999],[-70.57160396999984,-24.553806248000015],[-70.5782771479999,-24.54680754999985],[-70.58259029899988,-24.537204684999963],[-70.58283443899992,-24.524834893999834],[-70.57945716099991,-24.517510674999926],[-70.57420813699994,-24.511407158999845],[-70.56891842399995,-24.50237395599993],[-70.56111663699997,-24.481820529999922],[-70.55387106499998,-24.449467664999915],[-70.54191744599993,-24.415228686999892],[-70.54906165299984,-24.38567473799993],[-70.54979407499988,-24.379815362999892],[-70.55492102799991,-24.371026299999922],[-70.55589758999989,-24.36516692499988],[-70.55370032499988,-24.36484140399986],[-70.54865475199995,-24.36052825299994],[-70.54369055899988,-24.3551571589999],[-70.54161536399997,-24.351495049999855],[-70.54491126199991,-24.341485283999955],[-70.54774673099988,-24.32725544399994],[-70.53927191899996,-24.318406465999896],[-70.5328842429999,-24.305731630999944],[-70.53458530299989,-24.292207285999947],[-70.5307060899999,-24.278842053999966],[-70.53429114499997,-24.261000257999978],[-70.53058834499993,-24.244724216999938],[-70.51366126199994,-24.214450778999947],[-70.51968339799994,-24.20134856599989],[-70.51764889199993,-24.18954843499992],[-70.50609783799987,-24.16738079699985],[-70.5145089639999,-24.145807873999868],[-70.51955152899987,-24.1238217569999],[-70.50941827199998,-24.12219606600003],[-70.50401770699997,-24.114841404],[-70.50031490799992,-24.09742604000003],[-70.50230872299997,-24.067640882999925],[-70.50841223899997,-24.03769296699987],[-70.52635657499991,-23.996270440999947],[-70.51984615799992,-23.96526458099993],[-70.50059973899997,-23.9126929669999],[-70.50389563699991,-23.88632577899999],[-70.51227779899995,-23.871840101999936],[-70.51329505099991,-23.859063408999987],[-70.4944555329999,-23.837579033999972],[-70.49852454299995,-23.784600518999937],[-70.49445553299998,-23.768731377999913],[-70.4839981759999,-23.754978122999987],[-70.4525447259999,-23.728773695999863],[-70.43919837099989,-23.71404387799987],[-70.42125403599994,-23.68466562299987],[-70.40526282499992,-23.6508114559999],[-70.39411373599992,-23.614353123000015],[-70.39073645699989,-23.57691822699989],[-70.40430665399995,-23.551877717999986],[-70.41308475999989,-23.511252712999877],[-70.44051304399994,-23.492646751999985],[-70.46624467199985,-23.480260512999834],[-70.49698299399995,-23.469472339999925],[-70.51223515899989,-23.48050274999997],[-70.5206638599999,-23.504010854999848],[-70.53253026799993,-23.51658433400003],[-70.53931501599986,-23.53227310599996],[-70.56138517799988,-23.526090538],[-70.58186274399992,-23.5199257399999],[-70.60582978599993,-23.510653127],[-70.6213376559999,-23.53109045799991],[-70.63161225499994,-23.51703864599996],[-70.62502700799986,-23.474748596999945],[-70.61636308499988,-23.45501067499991],[-70.61388098899994,-23.44719817499991],[-70.60171464799987,-23.444105726999936],[-70.59178626199986,-23.43572356599988],[-70.5850723949999,-23.423597914999885],[-70.59622597699988,-23.405831344999896],[-70.59929150599993,-23.404909207999893],[-70.60242528199987,-23.379715002999873],[-70.60463327199994,-23.357283424999988],[-70.59154212099992,-23.326267184999907],[-70.59658206099994,-23.30134891899989],[-70.60079990799994,-23.281724608999937],[-70.59889996599986,-23.26301189899999],[-70.60012342599993,-23.244225197999896],[-70.58610137099987,-23.213268524999947],[-70.56779540899993,-23.200222239999974],[-70.5628398369999,-23.17500251],[-70.5722134849999,-23.15520113199993],[-70.56516912399988,-23.130994751000017],[-70.58068510699991,-23.108320772999974],[-70.57270085599993,-23.080221472999924],[-70.56224524599989,-23.059828382999953],[-70.53697669199994,-23.032810153999918],[-70.51183020699997,-23.014906507999868],[-70.50890051999994,-23.010023695999976],[-70.50617428299998,-23.010023695999976],[-70.49754798099988,-23.01832447699988],[-70.49351966099991,-23.02662525799994],[-70.4935603509999,-23.03728606599998],[-70.49644934799991,-23.047621351999894],[-70.50059973899997,-23.05559661299993],[-70.49347923299985,-23.073023166999945],[-70.48438615799995,-23.086034159],[-70.46803367499989,-23.09623137],[-70.45075148499984,-23.097075416999985],[-70.42542318899993,-23.08853015099986],[-70.39710605199988,-23.070622592999925],[-70.37285934899988,-23.05087423899992],[-70.35635331899994,-23.0298804669999],[-70.33714758999989,-23.00261809699991],[-70.32933508999992,-22.97047291499994],[-70.32884680899991,-22.962172132999953],[-70.32750403599994,-22.95680104],[-70.32249915299988,-22.946954033999972],[-70.32079016799989,-22.94605885199998],[-70.30874589799987,-22.93328215899986],[-70.29702714799987,-22.917738539999945],[-70.29157467399995,-22.901950778999904],[-70.28856360599994,-22.884698174999894],[-70.28774980399993,-22.86809661299985],[-70.29426021999993,-22.845147393999937],[-70.30622311099995,-22.818780205999854],[-70.3125707669999,-22.790622653999876],[-70.30199133999992,-22.76197682099989],[-70.30321204299995,-22.747735283999987],[-70.29124915299991,-22.72405364399988],[-70.28111731699997,-22.6952450499999],[-70.28774980399993,-22.665704033999972],[-70.28099524599989,-22.657891533999887],[-70.28286699099996,-22.650323174999926],[-70.28718014199987,-22.641859632999893],[-70.28774980399993,-22.631605726999965],[-70.28229732999998,-22.62379322699988],[-70.27550208199995,-22.622328382999825],[-70.2696833979999,-22.619561455999943],[-70.26724199099996,-22.607110283999845],[-70.26939856699997,-22.596368096999925],[-70.27879798099991,-22.57805754999987],[-70.28087317599991,-22.56617604],[-70.27855383999984,-22.556735934999978],[-70.24315344999985,-22.496514580999843],[-70.24058997299994,-22.487562757999896],[-70.24266516799986,-22.478285414999945],[-70.25422115799998,-22.456638278999947],[-70.24673417899993,-22.3851864559999],[-70.24819902299987,-22.327569268999838],[-70.24364173099994,-22.313164971999868],[-70.2355037099999,-22.298109632999854],[-70.22288977799994,-22.162367445999948],[-70.22496497299994,-22.14690520599993],[-70.21117102799985,-22.101739190999893],[-70.21324622299996,-22.08294036299985],[-70.19847571499989,-22.075127862999945],[-70.19005286399994,-22.059747002999913],[-70.18614661399994,-22.041436455999857],[-70.18529212099995,-22.02499765399986],[-70.20010331899991,-22.00554778399986],[-70.19835364499991,-22.002862237999878],[-70.19440670499992,-22.00188567499998],[-70.19212805899986,-22.00107187299997],[-70.19041907499985,-21.994724216999956],[-70.17788652299994,-21.973077080999868],[-70.18276933499993,-21.963962497999972],[-70.17992102799988,-21.9556617169999],[-70.17442786399994,-21.945896091999956],[-70.17162024599989,-21.932061455999957],[-70.17381751199989,-21.917657158999987],[-70.17886308499993,-21.906508070999877],[-70.19212805899986,-21.884372653999986],[-70.1500544909999,-21.861993096999882],[-70.14606686099992,-21.811700127999913],[-70.15314693899997,-21.759942315999893],[-70.1443578769999,-21.733493747999912],[-70.14879309799989,-21.72275156],[-70.15196692599994,-21.664808851999823],[-70.15021725199995,-21.653497002999927],[-70.13984449699987,-21.632645740999962],[-70.12250852599988,-21.619303006],[-70.10364476399988,-21.608698752999928],[-70.09614534799996,-21.59122151599982],[-70.0946621569999,-21.573689076],[-70.08971106699994,-21.55917734199994],[-70.08716044399993,-21.545629573999975],[-70.07440289199988,-21.537940490999883],[-70.07141491199994,-21.522555838999892],[-70.07516473099986,-21.51129708299986],[-70.07893586699987,-21.500733822999816],[-70.08272197399987,-21.48881317599999],[-70.08291581899992,-21.483330987999906],[-70.07145276299985,-21.465656909999936],[-70.06170154399987,-21.45029691799985],[-70.05869493799989,-21.433377481999955],[-70.06625805599992,-21.415151199999954],[-70.08286348999985,-21.391308895999956],[-70.09269761699997,-21.365340174999986],[-70.09410559799994,-21.345472915],[-70.08746519499994,-21.337105618000024],[-70.0822091169999,-21.3272810169999],[-70.07290605399993,-21.31585051899995],[-70.06867428299992,-21.305840752999885],[-70.07626142599992,-21.282394643999904],[-70.07781762199988,-21.26355824199986],[-70.08683179399992,-21.255054173999937],[-70.08698482999998,-21.24586353999996],[-70.08309098899994,-21.24031493399995],[-70.08009447099991,-21.233325009999987],[-70.08360755099997,-21.225844007999896],[-70.08914506299993,-21.216478774999942],[-70.09518221099992,-21.20316163299995],[-70.09520052999994,-21.189839004999865],[-70.11026629599993,-21.173703363999987],[-70.11168372299997,-21.162692966999913],[-70.11831620999993,-21.140069268999852],[-70.12279212099989,-21.13486093499995],[-70.1275935539999,-21.130140882999854],[-70.13072669199997,-21.123955987999878],[-70.13023841099987,-21.118340752999966],[-70.12779700399994,-21.112888278999932],[-70.12490800699989,-21.109551690999908],[-70.12328040299988,-21.11028411299985],[-70.12730158499988,-21.089202698999856],[-70.14014817899994,-21.076460935999947],[-70.16442234499996,-21.040497935999937],[-70.17129472599987,-21.014580987999892],[-70.16828365799996,-20.99700286299986],[-70.16222083199997,-20.98756275799994],[-70.15014089699994,-20.96280085499997],[-70.13046911599989,-20.946577923999982],[-70.12746248499988,-20.935275],[-70.14112133799989,-20.915463422999863],[-70.1365754059999,-20.90068351699999],[-70.14113267099995,-20.880916861999893],[-70.14781653599991,-20.86736419099986],[-70.15400677199996,-20.856210541999914],[-70.16841617399993,-20.842014652999865],[-70.18356600599992,-20.82856298399984],[-70.19416895299989,-20.81583272299983],[-70.21232721199996,-20.813702572999887],[-70.21384425299986,-20.811577406999987],[-70.19720008499985,-20.80452936699993],[-70.19041788999994,-20.79178261999988],[-70.20409413699988,-20.762707340999977],[-70.20563717399992,-20.739353122999887],[-70.19212805899986,-20.719903252999885],[-70.19212805899986,-20.71306731599995],[-70.1971736319999,-20.711602472],[-70.19937089799987,-20.71013762799994],[-70.20148678299998,-20.708265882999882],[-70.20579993399988,-20.706231377999856],[-70.19562740799994,-20.676934502999927],[-70.19420325399997,-20.644626559999907],[-70.20382638099994,-20.5419583099999],[-70.20579993399988,-20.52809010199988],[-70.1988826159999,-20.51588307099989],[-70.17650305899988,-20.491794528999876],[-70.17144826599989,-20.476168487999985],[-70.16668639799987,-20.44806905299991],[-70.17162024599989,-20.421644789999988],[-70.17491614499994,-20.40357838299998],[-70.1888728509999,-20.379571221999853],[-70.19212805899986,-20.366794528999904],[-70.18687903599997,-20.35426197699989],[-70.16388912699988,-20.339125257999896],[-70.14574177499992,-20.33041470499994],[-70.14167232999992,-20.301690362999963],[-70.13687089799991,-20.294122003],[-70.13072669199997,-20.266778252999853],[-70.16047115799998,-20.22087981599996],[-70.16486568899995,-20.208754164999956],[-70.16234290299985,-20.19654713299998],[-70.15648352799991,-20.192559502999913],[-70.14964758999989,-20.189060153999932],[-70.1443578769999,-20.17864348799985],[-70.14517167899993,-20.171563408999887],[-70.15078691299993,-20.148370049999855],[-70.15119381399992,-20.137627862999935],[-70.14525305899991,-20.123142184999892],[-70.12706458199992,-20.091729424999954],[-70.12328040299988,-20.072198174999883],[-70.12535559799991,-20.066176039999874],[-70.13483639199993,-20.0513648419999],[-70.13687089799991,-20.041599216999952],[-70.13475501199993,-20.03142669099999],[-70.12555904899995,-20.009698174999937],[-70.12328040299988,-19.999932549999983],[-70.12486731699991,-19.97820403399993],[-70.13459225199998,-19.94931406],[-70.13805091099997,-19.916192315999965],[-70.1443578769999,-19.890069268999838],[-70.14289303299995,-19.879327080999914],[-70.13695227799991,-19.86052825299987],[-70.13687089799991,-19.84905364399991],[-70.1585994129999,-19.81845468499999],[-70.1585994129999,-19.790704034],[-70.14932206899995,-19.737237237999977],[-70.15119381399992,-19.71941497199991],[-70.17495683499992,-19.660414320999877],[-70.17788652299994,-19.640232028999932],[-70.1841452159999,-19.629385974999863],[-70.20899806599991,-19.616768420999843],[-70.23822354299989,-19.603279931999978],[-70.24254412699989,-19.598202934999833],[-70.21442008399993,-19.59635864],[-70.20836341099991,-19.580254815999837],[-70.20274817599989,-19.569024346999925],[-70.20396887899992,-19.552422783999873],[-70.19957434799994,-19.534356377999856],[-70.20763098899997,-19.489841403999947],[-70.2139839299999,-19.461097488999926],[-70.22613596899993,-19.436903671999815],[-70.22630774599995,-19.41082122199984],[-70.24058997299994,-19.373304945999905],[-70.26602128799996,-19.33473072699985],[-70.26414954299989,-19.328301690999837],[-70.26081295499995,-19.32350025799984],[-70.26992753799992,-19.313246351999823],[-70.28213456899994,-19.3038062479999],[-70.28774980399993,-19.300957940999865],[-70.28840084499987,-19.29192473799993],[-70.2825821609999,-19.273207289999874],[-70.28087317599991,-19.263441665000016],[-70.28221594999991,-19.22340260199981],[-70.27953040299994,-19.204278252999842],[-70.2662247389999,-19.17839934699991],[-70.27033443899995,-19.171482028999918],[-70.27721106699997,-19.16611093499995],[-70.28087317599991,-19.160414320999877],[-70.2752986319999,-19.13307057099982],[-70.27472896999984,-19.12281666499989],[-70.27741451699991,-19.10898202899989],[-70.31273352799994,-19.02190520599984],[-70.31380310899988,-19.0070847569999],[-70.3089641199999,-18.971466043999854],[-70.32012321999993,-18.944281530999916],[-70.33016351799998,-18.879214406999935],[-70.34518712899992,-18.83935780999981],[-70.3530981109999,-18.79705169099988],[-70.35659745999989,-18.7733700499999],[-70.35423743399994,-18.763116143999838],[-70.34292558499996,-18.735935153999918],[-70.34292558499996,-18.708265882999907],[-70.34154212099989,-18.696465752999856],[-70.33617102799991,-18.6757138],[-70.33617102799991,-18.66350676899988],[-70.33922278599991,-18.653985283999884],[-70.34805253799996,-18.643324476999936],[-70.35045325399992,-18.636325778999876],[-70.33524749299988,-18.617575090999907],[-70.3388565749999,-18.578220309999907],[-70.33429928299995,-18.545993747999958],[-70.3254288399999,-18.524021091999856],[-70.32249915299988,-18.513360283999916],[-70.32286536399991,-18.502129815999833],[-70.32835852799994,-18.480075778999918],[-70.32933508999992,-18.471856377999842],[-70.30636896499993,-18.46055498599983],[-70.30356149199991,-18.44543894199994],[-70.31371008999992,-18.430108330999886],[-70.32591712099989,-18.413750908999873],[-70.34947680399995,-18.383180690999936],[-70.37009034899994,-18.362701001999895],[-70.3925753259999,-18.339558742999923],[-70.39470274608738,-18.33774620693788],[-70.36939030599993,-18.32472947399988],[-70.31789473999996,-18.32121547699991],[-70.21087284899997,-18.331240703999853],[-70.1590672269999,-18.32596970899999],[-70.13415918599992,-18.318941713999905],[-70.06323328199994,-18.28070115299991],[-70.03935877,-18.27305304199993],[-70.010006557,-18.27263963099992],[-69.98778569199996,-18.264268048999853],[-69.97034489499993,-18.25062547099985],[-69.92280257799989,-18.196468569999837],[-69.8834509749999,-18.163602357999977],[-69.86533838499989,-18.14458543199983],[-69.84358260699989,-18.113166160999896],[-69.78309534299993,-17.981597962999942],[-69.77989140399987,-17.96258103699988],[-69.78237187299993,-17.943874167999894],[-69.79061426399997,-17.9247538879999],[-69.812783453,-17.888270326999887],[-69.81815780199997,-17.87142380999991],[-69.8200956679999,-17.84610235799984],[-69.82903569099992,-17.803831036999853],[-69.84608891399995,-17.769104473999988],[-69.85756108199988,-17.73417120599983],[-69.84983545499998,-17.691589825999856],[-69.81805444899993,-17.65913702599984],[-69.77580896599994,-17.65696661599985],[-69.72904179499994,-17.66327113999995],[-69.6839024309999,-17.65603644],[-69.63832381799992,-17.62606411000003],[-69.51008875199994,-17.506588197999974],[-69.51003631099988,-17.506588197999974],[-69.50611446099992,-17.58512705499986],[-69.49712276299996,-17.621403909999913],[-69.47578039599998,-17.652409769999934]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Colombia","sov_a3":"COL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Colombia","adm0_a3":"COL","geou_dif":0,"geounit":"Colombia","gu_a3":"COL","su_dif":0,"subunit":"Colombia","su_a3":"COL","brk_diff":0,"name":"Colombia","name_long":"Colombia","brk_a3":"COL","brk_name":"Colombia","brk_group":null,"abbrev":"Col.","postal":"CO","formal_en":"Republic of Colombia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Colombia","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":1,"pop_est":45644023,"gdp_md_est":395400,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"CO","iso_a2":"CO","iso_a3":"COL","iso_n3":"170","un_a3":"170","wb_a2":"CO","wb_a3":"COL","woe_id":23424787,"woe_id_eh":23424787,"woe_note":"Exact WOE match as country","adm0_a3_is":"COL","adm0_a3_us":"COL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"COL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-78.2048906179999,2.687339382000118],[-78.1876770679999,2.678285431000091],[-78.16591935499991,2.685515512000123],[-78.14508573499992,2.673748199000102],[-78.13951575399994,2.655422268000109],[-78.13170325399994,2.646185614000061],[-78.12897701699987,2.633693752000141],[-78.13141842399992,2.627264716000042],[-78.12999426999994,2.62246328300013],[-78.10655676999997,2.593817450000159],[-78.09727942599991,2.572170315000079],[-78.09618079299986,2.54002513200011],[-78.10728919199991,2.512518622000172],[-78.1344294909999,2.504380601000164],[-78.15758216099997,2.518133856000091],[-78.18455969999991,2.545396226000165],[-78.20702063699991,2.575344143000137],[-78.21642005099994,2.596869208000072],[-78.21328691299996,2.610744533000144],[-78.20645097599996,2.61684804900014],[-78.19969641799992,2.621527411000059],[-78.19496592099992,2.632143556000131],[-78.20220820299991,2.643003083000082],[-78.21669624799998,2.670149764000172],[-78.21486798099994,2.681913849000097],[-78.2048906179999,2.687339382000118]]],[[[-77.80842037699995,2.578599351000179],[-77.83991451699987,2.577337958],[-77.86974036399997,2.584418036000145],[-77.88805091099994,2.593817450000159],[-77.88068600199995,2.600002346000139],[-77.88805091099994,2.607407945000119],[-77.86717688699986,2.62718333500014],[-77.8675024079999,2.639837958000115],[-77.88072669199994,2.646429755000099],[-77.8985896479999,2.648382880000142],[-77.91405188699991,2.65867747600015],[-77.92023678299998,2.679754950000088],[-77.91637122299989,2.697211005000142],[-77.90233313699991,2.696234442000076],[-77.88801021999983,2.687445380000099],[-77.85049394399992,2.638128973000107],[-77.83531653599994,2.62636953300013],[-77.80162512899994,2.607082424000097],[-77.78502356699988,2.593817450000159],[-77.80842037699995,2.578599351000179]]],[[[-77.87132727799991,2.714300848000093],[-77.8600968089999,2.709865627000027],[-77.85749264199988,2.71613190300016],[-77.85456295499998,2.719061591000084],[-77.85106360599988,2.720892645000063],[-77.84707597599993,2.724107164000031],[-77.81920325399996,2.696234442000076],[-77.81525631399998,2.688462632000068],[-77.81053626199989,2.669419664000159],[-77.80614173099988,2.662054755000085],[-77.76768958199989,2.632554429000109],[-77.75413977799991,2.617987372000172],[-77.75910396999987,2.603094794000114],[-77.77586829299989,2.601019598000107],[-77.80174719999991,2.613959052000112],[-77.84707597599993,2.648382880000142],[-77.87458248599995,2.684759833000115],[-77.88068600199995,2.696234442000076],[-77.88390051999988,2.707993882000139],[-77.88512122299991,2.719631252000141],[-77.88255774599992,2.72459544500019],[-77.8744197259999,2.716701565000122],[-77.87132727799991,2.714300848000093]]],[[[-78.19322349799991,2.93361656100015],[-78.20815496299988,2.929889171000042],[-78.22028891999986,2.933616538000151],[-78.22029021999985,2.943867961000066],[-78.20442330899995,2.945731374000147],[-78.19972362399994,2.96062137800007],[-78.19502830399995,2.980156382000089],[-78.18661157599988,2.990372525000097],[-78.17264338699991,3.002495520000139],[-78.16426995299987,3.001595525000099],[-78.1661295559999,2.987616597000155],[-78.16613085499992,2.973648910000079],[-78.1670908299999,2.959704273000128],[-78.18202567499995,2.942935303000169],[-78.19322349799991,2.93361656100015]]],[[[-81.58226477799991,3.991522528000103],[-81.57872473899991,3.978176174000097],[-81.58031165299985,3.976019598000093],[-81.58486894399991,3.974595445000119],[-81.58901933499993,3.970282294000128],[-81.59422766799995,3.970770575000117],[-81.60631262899994,3.960191148000149],[-81.61172441299988,3.958970445000133],[-81.61530514199985,3.961330471000096],[-81.61632239499991,3.963812567000119],[-81.6146541009999,3.969183661000087],[-81.60985266799992,3.974920966000141],[-81.60411536399994,3.976874091000098],[-81.60240637899993,3.979559637000165],[-81.60142981699997,3.988348700000145],[-81.59618079299989,3.991197007000082],[-81.59056555899988,3.990464585000055],[-81.58519446499992,3.992377020000106],[-81.58226477799991,3.991522528000103]]],[[[-77.35301673099985,4.265326239000146],[-77.3324275379999,4.255031643000122],[-77.31163489499994,4.257554429000137],[-77.29116777299987,4.26235586100013],[-77.27171790299988,4.258490302000126],[-77.29002844999994,4.229437567000147],[-77.30296790299994,4.217596747000087],[-77.31566321499989,4.222723700000102],[-77.33315995999993,4.244818427000097],[-77.35777747299993,4.235541083000129],[-77.38158118399994,4.231634833000143],[-77.43407141799989,4.232123114000132],[-77.45376542899993,4.236395575000131],[-77.46629798099994,4.237372137000108],[-77.48167883999989,4.234442450000087],[-77.49054928299992,4.227362372000129],[-77.49681555899988,4.218573309000163],[-77.50450598899991,4.210638739000103],[-77.54133053299996,4.199408270000106],[-77.54548092399992,4.196356512000108],[-77.54954993399988,4.204779364000146],[-77.54914303299995,4.218654690000136],[-77.5442602199999,4.231634833000143],[-77.53490149599986,4.237372137000108],[-77.52159583199995,4.241685289000117],[-77.4996638659999,4.260972398000149],[-77.48713131399991,4.265326239000146],[-77.47378495999989,4.263739325000117],[-77.44953365799992,4.258286851000165],[-77.43561764199984,4.258490302000126],[-77.44029700399994,4.266546942000062],[-77.45547441299992,4.27700429900014],[-77.46288001199991,4.285793361000103],[-77.42813066299988,4.285793361000103],[-77.45201575399994,4.291693427000141],[-77.44937089799996,4.301255601000122],[-77.43293209499986,4.311835028000175],[-77.41510982999998,4.320502020000077],[-77.42056230399993,4.322333075000145],[-77.42389889199985,4.324367580000086],[-77.42788652299993,4.326157945000162],[-77.43561764199984,4.327337958000101],[-77.43431555899994,4.331529039000117],[-77.43297278599994,4.334418036000145],[-77.42813066299988,4.341009833000129],[-77.40147864499994,4.327337958000101],[-77.3861384759999,4.314642645000134],[-77.37539628799988,4.300441799000112],[-77.36729895699995,4.28412506700009],[-77.35301673099985,4.265326239000146]]],[[[-75.5353199189999,10.350646060000159],[-75.54626327799994,10.339266993000123],[-75.55591494999987,10.340542755000072],[-75.56749790099991,10.343719089000075],[-75.57586148699994,10.338658252000116],[-75.57843272599987,10.325996191000144],[-75.5822901119999,10.319033361000109],[-75.59066132499996,10.319043831000087],[-75.5945264289999,10.331077056000169],[-75.59581281599995,10.34753747500018],[-75.59259450699994,10.360198024000113],[-75.58680116199994,10.367791823000118],[-75.5758301349999,10.377872464000106],[-75.56810808699996,10.372799271000105],[-75.55590429899988,10.367757667000133],[-75.53788788699993,10.362673061000166],[-75.5353199189999,10.350646060000159]]],[[[-71.65615800699993,12.46531810100008],[-71.62608801999991,12.45148346600017],[-71.60415605399987,12.447211005000069],[-71.53160559799997,12.447211005000069],[-71.51130123599995,12.44326406500008],[-71.49063066299993,12.433823960000069],[-71.45958411399994,12.413723049000112],[-71.4459529289999,12.400580145000147],[-71.43907630099997,12.396185614000075],[-71.42609615799998,12.39256419500019],[-71.39024817599997,12.393296617000132],[-71.38109290299991,12.389146226000094],[-71.3612361319999,12.374457098000091],[-71.34093176999988,12.367173570000174],[-71.29515540299988,12.358465887000094],[-71.26183020699989,12.341864325000131],[-71.24229895699992,12.327704169000114],[-71.2315974599999,12.310858466000113],[-71.22716223899991,12.305405992000173],[-71.22264563699989,12.297308661000145],[-71.2190649079999,12.278265692000147],[-71.15843665299992,12.176703192000062],[-71.15172278599988,12.149603583000129],[-71.11388098899994,12.094387111000117],[-71.10749264199991,12.074937242000118],[-71.11367753799988,12.052394924000126],[-71.12608801999991,12.031195380000128],[-71.13809160099993,12.015814520000092],[-71.16490637899992,11.996161200000145],[-71.23399817599993,11.95888906500008],[-71.25413977799988,11.936957098000136],[-71.2686661449999,11.929185289000143],[-71.28563391799989,11.922919012000179],[-71.29881751199994,11.920233466000113],[-71.30357825399993,11.9116885440001],[-71.32306881399992,11.858140367000175],[-71.3274633449999,11.85008372600005],[-71.32750403599991,11.850002346000068],[-71.32750653361438,11.849997690656224],[-71.3576293539999,11.850802307000093],[-71.37545772399994,11.841087138000148],[-71.40966752199992,11.812303365000133],[-71.44945837399993,11.795456848000143],[-71.4764851489999,11.788583883000172],[-71.53508622299992,11.773546041000188],[-71.59363562099992,11.758508199000117],[-71.65228837099994,11.743573710000147],[-71.71088944499988,11.728535868000165],[-71.7694388429999,11.713549703000181],[-71.8280399169999,11.69856353800013],[-71.88664099199994,11.683525696000132],[-71.94524206599996,11.66853953000016],[-71.97108028199997,11.661924948000163],[-71.9906139739999,11.64905751600017],[-72.0079255789999,11.624614563000137],[-72.01800248299992,11.606114400000193],[-72.04781978399993,11.551311544000114],[-72.07763708499994,11.496534526000133],[-72.10745438699993,11.441757507000148],[-72.13727168799994,11.386980489000166],[-72.16708898999994,11.33220347100017],[-72.19690629099992,11.2774006140001],[-72.22677526899994,11.222571920000092],[-72.25659256999995,11.167794902000196],[-72.26708288599991,11.154901632000104],[-72.28465287299989,11.150457458000103],[-72.32185990499997,11.160095113000123],[-72.34134191899997,11.162110494000158],[-72.36144405099995,11.15800221800015],[-72.41699621599994,11.137615865000114],[-72.45999100799992,11.135807190000122],[-72.48148840299987,11.132525737000122],[-72.49931677299989,11.12079518700014],[-72.50381262299993,11.111777649000189],[-72.50469112199997,11.092709045000104],[-72.50748164899991,11.08299387600016],[-72.51502640899989,11.072477722000201],[-72.5339399819999,11.052375590000153],[-72.54205318299992,11.04108429000017],[-72.57646968599997,10.95736846900013],[-72.59450476099997,10.932977193000113],[-72.61310827699992,10.915252177000184],[-72.65672318499998,10.885202332000132],[-72.6829748129999,10.855617575000096],[-72.7061258549999,10.81125335700014],[-72.75439164199992,10.674853414000083],[-72.78141841699994,10.631316020000142],[-72.84301672399997,10.560596822000136],[-72.86141353399998,10.50809356700016],[-72.875417847,10.489645081000146],[-72.892005982,10.472927755000114],[-72.90756058799991,10.452463888000153],[-72.91489864099992,10.432904358000128],[-72.91523210499989,10.428171730000159],[-72.91624222799999,10.41383575500015],[-72.91551875899998,10.39427622500014],[-72.93562089099994,10.175193991000114],[-72.9877107339999,9.999416606000153],[-72.98786576399993,9.960426738000152],[-72.99618566899991,9.92128184000012],[-72.99696081499991,9.90071462000013],[-72.99044958499994,9.874979757000148],[-72.98161291499994,9.856557108000132],[-72.97763382999995,9.838056946000108],[-72.98554032399991,9.812167053000167],[-73.01690791899992,9.748605041000104],[-73.07189164299986,9.664088237000144],[-73.09716141799993,9.59636627200014],[-73.10765173399997,9.577995301000144],[-73.12361975099992,9.56125213700011],[-73.16372066299994,9.536344096000136],[-73.17844844599992,9.523037415000204],[-73.19741369699997,9.478673197000163],[-73.27740881299991,9.361806946000115],[-73.31177364099995,9.276230774000153],[-73.32438269099998,9.255921936000135],[-73.3421593839999,9.239178772000102],[-73.37910803299994,9.213883159000204],[-73.39083858299992,9.194504496000148],[-73.39114864099992,9.17277455600015],[-73.3778161219999,9.164687195000155],[-73.36364498199995,9.165032761000148],[-73.25384436099992,9.16771026600017],[-73.21224483299991,9.173446350000134],[-73.17617468299991,9.190938823000181],[-73.14186153199998,9.22302988700011],[-73.12434322199992,9.234476217000122],[-73.09876338799998,9.241581727000138],[-73.07602575699991,9.254268290000182],[-73.03266923099991,9.294601746000152],[-73.00972489499989,9.295376892000164],[-73.00357539899991,9.287909648000138],[-72.99112137899994,9.251684468000178],[-72.9914314369999,9.247937927000164],[-72.9954621999999,9.239101258000161],[-72.99561722799996,9.235354716000145],[-72.99220658399992,9.23034210200018],[-72.9828531499999,9.220962830000147],[-72.98006262299992,9.216518656000133],[-72.97603186099994,9.192127380000116],[-72.97866735899993,9.150140280000187],[-72.97318965699993,9.1284361780001],[-72.95530961199998,9.103993225000153],[-72.93639603699995,9.099187317000156],[-72.91619055199996,9.10696462100016],[-72.88198075399994,9.129366353000151],[-72.87402258299991,9.133422954000153],[-72.86172359299988,9.137040304000138],[-72.85025142399992,9.136730245000152],[-72.84151810799997,9.133784688000148],[-72.83412837799997,9.133629659000121],[-72.82668697199995,9.141691182000102],[-72.80767004399988,9.123733622000131],[-72.79103023299987,9.113940939000159],[-72.78560420799997,9.102442933000134],[-72.8000219329999,9.07944692000018],[-72.78307206299989,9.059939067000187],[-72.77805944899993,9.041051331000162],[-72.76658727999992,8.997384746000193],[-72.75506343599997,8.953743998000135],[-72.74353959199996,8.910051575000168],[-72.73206742399995,8.8663849900002],[-72.72049190299988,8.822744243000145],[-72.70901973499988,8.779051819000173],[-72.69749589099993,8.735385234000205],[-72.68602372299992,8.691692810000134],[-72.67543005399995,8.651514384000123],[-72.65543127499993,8.617898865000186],[-72.63708614099994,8.598184306000135],[-72.61734574499988,8.57704864500009],[-72.59776037699996,8.55596466100016],[-72.5780716559999,8.534854839000117],[-72.5585379639999,8.513719178000173],[-72.53884924399995,8.49260935500014],[-72.51921219999991,8.471525371000112],[-72.49952347899995,8.450441386000179],[-72.47993811099994,8.429331563000147],[-72.45627030499992,8.40393259700015],[-72.44453975399992,8.394114075000173],[-72.43441117399996,8.390186666000204],[-72.4249543869999,8.387706197000142],[-72.41560920699992,8.382691114000151],[-72.41508418799992,8.382409363000193],[-72.403250286,8.370497946000157],[-72.39353511599995,8.355382589000158],[-72.3867655029999,8.338613587000111],[-72.38397497599996,8.321792908000134],[-72.38583532799996,8.30551483100011],[-72.39477535099991,8.272803650000128],[-72.39596390799991,8.25660308800012],[-72.39053788299995,8.234330546000166],[-72.3572582599999,8.172137960000072],[-72.33576086499997,8.103899231000128],[-72.33384883599993,8.065477804000182],[-72.35007523599995,8.042585144000071],[-72.36723181199991,8.042688497000185],[-72.38831579699993,8.046176657000146],[-72.40707434199993,8.04377370200018],[-72.41709956899987,8.025764465000108],[-72.42185380099994,8.006230774000187],[-72.43012202999998,7.990521139000123],[-72.44190425699989,7.977136942000186],[-72.45673539199993,7.964941304000163],[-72.46743241399994,7.959670309000145],[-72.47880122899991,7.955536194000117],[-72.48779292899988,7.949179993000186],[-72.49120357299998,7.937501119000117],[-72.48665604699997,7.928716126000126],[-72.46567541499988,7.904583232000164],[-72.45864741999993,7.893524475000163],[-72.45446162999991,7.876161194000147],[-72.45177445499986,7.832804667000161],[-72.45415157099993,7.815234681000106],[-72.47415034999995,7.754153137000102],[-72.48334875499995,7.649353333000121],[-72.48040319899988,7.628941142000173],[-72.46681229699996,7.589873759000156],[-72.46340165199992,7.57075347900016],[-72.46738073799992,7.548739319000092],[-72.47590734899993,7.52863718700013],[-72.482005168,7.508018290000123],[-72.4786978759999,7.484453837000117],[-72.45130936699996,7.440218811000193],[-72.4146190999999,7.413812155000129],[-72.39581243299992,7.407491518000199],[-72.37079748599987,7.399084371000128],[-72.32180822799994,7.390040995000163],[-72.23969437699994,7.391281230000104],[-72.20620804899997,7.381876119000154],[-72.17168819199989,7.337331034000143],[-72.16631384399992,7.334075419000158],[-72.16404008,7.328856099000149],[-72.17349686699995,7.288186747000097],[-72.17422033799997,7.279608460000162],[-72.17148148699994,7.249894511000179],[-72.16414343299994,7.220800680000181],[-72.1533430579999,7.192585348000121],[-72.09825598199991,7.086752014000155],[-72.08099605299995,7.066598206000094],[-72.06957556199993,7.05920847600008],[-72.04208369999995,7.046909485000143],[-72.02869950399992,7.038847962000148],[-72.00529007999995,7.01910756400018],[-71.99399817999995,7.012952970000142],[-71.99381791199993,7.012854716000092],[-71.96402071699993,7.005920692000132],[-71.8810082599999,6.986603089000155],[-71.84819372599988,6.983864238000194],[-71.83263911999995,6.986448059000111],[-71.82189042199994,6.992959290000087],[-71.81212357599989,7.001175842000109],[-71.7996178789999,7.009185689000091],[-71.78855912299989,7.009702454000134],[-71.77775874899996,7.007532044000143],[-71.77150589999994,7.011149394000128],[-71.77403804599993,7.028926086000155],[-71.74535762499993,7.029339498000155],[-71.72168981999991,7.033421936000167],[-71.69802201399997,7.034972229000103],[-71.66959997599994,7.027737529000134],[-71.67352738499991,7.044222310000109],[-71.66701615399995,7.051508688000183],[-71.65430375199992,7.053369039000188],[-71.6204040129999,7.052128805000152],[-71.6121874599999,7.046341044000172],[-71.60650305199991,7.038279521000092],[-71.59472082599993,7.030114645000168],[-71.58779618299994,7.029287821000152],[-71.58061315999988,7.031561584000158],[-71.56707393499991,7.039313050000175],[-71.55844396999996,7.041225078000181],[-71.55358638599995,7.037297668000122],[-71.55105423999996,7.031819967000132],[-71.54934891799988,7.029132793000201],[-71.548625448,7.028305969000172],[-71.52883337499992,7.02706573500015],[-71.52909175699997,7.028305969000172],[-71.52805822799989,7.029856262000108],[-71.50991979999989,7.034610494000106],[-71.48764725799992,7.028926086000155],[-71.4677001549999,7.012441304000163],[-71.45576289899995,7.015696920000152],[-71.4294595949999,7.027737529000134],[-71.41390498899997,7.030993144000206],[-71.39819535399991,7.029494527000111],[-71.36600093599998,7.020709534000119],[-71.34936112599993,7.019469299000178],[-71.30776159799996,7.027375793000131],[-71.29251704899991,7.025773824000098],[-71.28352534999996,7.018849183000114],[-71.2814582929999,7.007221985000156],[-71.2806831469999,6.994612936000124],[-71.27551550399997,6.984381002000148],[-71.26202795399993,6.9786965950002],[-71.21324540299997,6.977508036000174],[-71.20151485199996,6.971875305000154],[-71.19381506399989,6.96531239800008],[-71.18404821799993,6.962573547000119],[-71.16632320199992,6.968102926000128],[-71.15361079899995,6.977094625000162],[-71.14539424699991,6.986189678000144],[-71.13604081299988,6.992132467000147],[-71.06547664399992,6.98453603100009],[-71.0112680659999,6.990892232000121],[-70.96132279499992,7.00944407200015],[-70.91881892899997,7.039468079000116],[-70.90809606999994,7.053369039000188],[-70.90344519099997,7.063187561000163],[-70.89553869699995,7.068510233000111],[-70.87481644699992,7.069182027000181],[-70.83662756399994,7.081894430000148],[-70.7930643319999,7.085098369000206],[-70.73296463999998,7.099309388000165],[-70.70330236899991,7.099929504000143],[-70.69673946199993,7.096673889000158],[-70.68260595799997,7.084633281000094],[-70.67317500799993,7.081170959000147],[-70.6392752689999,7.073471171000151],[-70.62289383999988,7.074091288000119],[-70.5946785079999,7.082979635000143],[-70.57860713799994,7.085821838000115],[-70.57147578999991,7.079362284000155],[-70.52091040099995,7.015593567000123],[-70.5107043059999,7.009702454000134],[-70.49481380199995,7.005516663000094],[-70.48414261999997,7.005309957000136],[-70.46130163699986,7.008307190000153],[-70.45166398199993,7.00768707300017],[-70.44701310299988,7.00474151600018],[-70.4409669599999,6.995749817000132],[-70.43778885999987,6.993010966000099],[-70.42293188499994,6.987791646000176],[-70.31906225599991,6.938285624000129],[-70.28761714699996,6.936942037000151],[-70.23126399799995,6.968516337000139],[-70.19501297999992,6.977559713000105],[-70.15778011099988,6.979523418000127],[-70.12920304399992,6.972547099000138],[-70.09662105399988,6.944435120000094],[-70.0794128019999,6.922834371000121],[-70.00357763699989,6.827362163000174],[-69.92771663499988,6.731838278000126],[-69.85182979399997,6.636314393000177],[-69.77596879099994,6.540816345000124],[-69.70021114099987,6.445292460000175],[-69.62435013799987,6.349768575000127],[-69.54848913699993,6.254296366000176],[-69.47262813399993,6.158746643000114],[-69.44363765499993,6.122237244000188],[-69.43201856899995,6.122237244000188],[-69.43108028199993,6.122237244000188],[-69.40614640399987,6.129342753000131],[-69.35816483599993,6.15161529500017],[-69.33139644399995,6.156369527000081],[-69.31134598799991,6.146215108000206],[-69.2685837409999,6.097458395000159],[-69.24610449299988,6.080663554000111],[-69.18915706399991,6.112625427000182],[-69.12996171099994,6.169934591000157],[-69.10841263899997,6.182569479000094],[-69.0801973069999,6.209389547000171],[-69.06112870299992,6.217838644000082],[-69.03689245599995,6.218768819000132],[-69.0161702069999,6.213988750000127],[-68.97857560199989,6.197323100000104],[-68.96090226299988,6.202361553000159],[-68.93834549999997,6.197116394000147],[-68.91447098799998,6.18869313500015],[-68.89292191599992,6.18432647700017],[-68.82912735999989,6.187788798000113],[-68.80786250799991,6.18432647700017],[-68.7440937909999,6.164921977000105],[-68.72161454299996,6.162519023000144],[-68.70089229399994,6.157971497000105],[-68.65934444199995,6.138670349000164],[-68.63531490099993,6.135879822000106],[-68.62198238199991,6.141925964000151],[-68.59567907699993,6.164921977000105],[-68.58472367399989,6.170012106000171],[-68.52250524999995,6.173293559000172],[-68.4490213629999,6.194997661000158],[-68.42742061399994,6.197323100000104],[-68.4066983649999,6.194894308000144],[-68.34112097199997,6.176833394000127],[-68.30417232299996,6.176988424000172],[-68.19027746699989,6.217838644000082],[-68.14650752799992,6.223781433000099],[-68.01902176999995,6.211611634000178],[-67.97799068299992,6.217838644000082],[-67.94331579599988,6.229698385000105],[-67.93365230399988,6.231455383000167],[-67.92414384,6.234555970000201],[-67.91628902199994,6.242229920000099],[-67.91106970299995,6.252306824000144],[-67.90915767499993,6.262512919000115],[-67.90430008999991,6.275147807000138],[-67.8928279219999,6.2783000700001],[-67.87928869699991,6.277938334000112],[-67.86812658799997,6.279876201000135],[-67.85763627099993,6.288454488000156],[-67.8391361089999,6.307523092000139],[-67.82719885299993,6.313414205000143],[-67.8185172119999,6.313750102000128],[-67.80079219599989,6.308608297000134],[-67.73097733599991,6.302691345000127],[-67.57398433499995,6.266233622000129],[-67.54489050299995,6.248069356000187],[-67.51827713999992,6.222541199000147],[-67.49047521999995,6.201638082000073],[-67.45097237199988,6.198035463000153],[-67.44996089699995,6.197943218000162],[-67.45629939999992,6.193223721000109],[-67.47616084799998,6.178435364000165],[-67.4869612219999,6.16678232800011],[-67.49140539599992,6.152958883000139],[-67.49119868999993,6.114485779000091],[-67.45430171699994,6.056789042000119],[-67.42856685399994,6.038469747000135],[-67.42097041899987,6.01834177600017],[-67.41859330299994,5.995345764000206],[-67.42246903499998,5.978240865000173],[-67.43476802599992,5.968163961000129],[-67.47088985299993,5.952841899000163],[-67.48520422399994,5.94408274300018],[-67.53238480699994,5.8925613400001],[-67.54158321099996,5.876722514000093],[-67.60121781499996,5.820576070000129],[-67.62514400299995,5.784505921000132],[-67.64116369599992,5.74484425900016],[-67.64912186699988,5.701952820000201],[-67.64907019099996,5.65608998600014],[-67.63775305199997,5.597308045000162],[-67.63599605299989,5.577593485000121],[-67.63258540899997,5.573071798000085],[-67.61765091999993,5.558524882000128],[-67.6142919519999,5.553667298000121],[-67.61703080299995,5.54160085100014],[-67.62297359199997,5.533410136000114],[-67.63000158699998,5.526898906000142],[-67.63599605299989,5.519535014000141],[-67.6470031339999,5.483361511000112],[-67.65248083499998,5.477961324000147],[-67.66446976799995,5.474912415000118],[-67.67527014199996,5.46718678800012],[-67.69371862799997,5.4472138470001],[-67.70214188699998,5.441400248000207],[-67.73164912999991,5.430134786000153],[-67.73702347799994,5.42581980400017],[-67.74668697199988,5.414321798000145],[-67.75211299699995,5.409670919000177],[-67.7567121989999,5.408792420000154],[-67.76792598499993,5.410497742000117],[-67.77257686399992,5.409670919000177],[-67.80978389599991,5.378820089000115],[-67.83458858299997,5.33931345600017],[-67.84368363499992,5.297248840000137],[-67.8340201419999,5.258879090000121],[-67.82497676599993,5.242781881000141],[-67.81862056499992,5.227821554000172],[-67.81474483299988,5.210277405000113],[-67.81350459899993,5.186557923000165],[-67.8155716549999,5.177902120000113],[-67.82456335499991,5.154337667000121],[-67.82719885299993,5.142116191000184],[-67.82756058799995,5.1306956990001],[-67.82663041299989,5.120386251000184],[-67.82451167799994,5.110593567000122],[-67.82099768099997,5.100594177000119],[-67.81474483299988,5.090956523000102],[-67.79676143399988,5.070156759000142],[-67.7930924069999,5.063335470000183],[-67.79521114199997,5.052715963000196],[-67.79986201999992,5.045868835000135],[-67.8045645759999,5.040856221000169],[-67.8067349859999,5.035714417000179],[-67.80497798699992,4.991246846000194],[-67.80668330899996,4.972255757000141],[-67.8196024179999,4.933317566000156],[-67.82637202999993,4.894844462000108],[-67.82719885299993,4.871538391000172],[-67.82523514899992,4.864897970000172],[-67.81614009599994,4.847302145000185],[-67.81350459899993,4.84050669400014],[-67.81386633399993,4.828259379000201],[-67.81712194899993,4.821515605000172],[-67.81862056499992,4.815676168000095],[-67.81350459899993,4.806348572000161],[-67.82053259399993,4.78764170400018],[-67.82285803299996,4.743587545000196],[-67.83060949699988,4.727542013000146],[-67.8406347259999,4.711496480000093],[-67.84564733899995,4.689740703000083],[-67.84879960099991,4.634188538000089],[-67.85515580299995,4.607730204000105],[-67.85370886299994,4.575820007000132],[-67.85515580299995,4.566156515000102],[-67.86063350499992,4.557965800000176],[-67.86760982299992,4.553159892000167],[-67.8733975839999,4.546519471000167],[-67.87505122899995,4.532644348000189],[-67.87179561399996,4.521559753000176],[-67.86507767699993,4.512077128000115],[-67.85655106699994,4.504170634000161],[-67.84766272099992,4.497891948000144],[-67.84766272099992,4.504687399000189],[-67.82905920399995,4.491432394000184],[-67.82187618099991,4.478229065000107],[-67.81350459899993,4.443269959000119],[-67.80942215999991,4.439290873000132],[-67.79707149299996,4.434924215000137],[-67.7930924069999,4.428981425000131],[-67.79267899599998,4.420842387000121],[-67.79836340399993,4.406915589000135],[-67.79986201999992,4.398905741000149],[-67.79665808199996,4.385805766000188],[-67.78265376899995,4.36379160600012],[-67.77939815299996,4.350794983000185],[-67.78198197499995,4.338883565000145],[-67.79986201999992,4.306069031000135],[-67.80492631099992,4.268474426000125],[-67.79944860899991,4.235323995000115],[-67.79076696799987,4.204266459000166],[-67.78621944199992,4.172976380000165],[-67.77774450699991,4.153933614000096],[-67.758934285,4.138559875000126],[-67.74017574099992,4.118716126000123],[-67.73164912999991,4.086366679000136],[-67.7206420489999,4.07497202600014],[-67.71407914199992,4.056497701000125],[-67.71693248199992,4.039878247000104],[-67.71702469899992,4.039341125000163],[-67.71041011599993,4.035723775000179],[-67.70162512199994,4.011952616000116],[-67.69857621299991,3.949966736000178],[-67.69387365799992,3.928598531000162],[-67.65387609899993,3.859248759000124],[-67.64441931199987,3.834624939000136],[-67.63878658099995,3.785170594000107],[-67.63175858599995,3.761864523000071],[-67.61413692199997,3.740573832000081],[-67.59480993699992,3.73091034000015],[-67.57651647999995,3.730703633000189],[-67.5579129649999,3.734165955000136],[-67.53744909699992,3.735509542000102],[-67.4998286549999,3.71791371700013],[-67.4714066169999,3.680060730000136],[-67.40391719599995,3.504464213000134],[-67.3901195889999,3.485059713000069],[-67.37539180499991,3.474905294000095],[-67.33782303899997,3.460099996000167],[-67.30464676899994,3.425709331000135],[-67.30945267799987,3.383928935000171],[-67.33529089399991,3.342096863000108],[-67.39580399599991,3.266571757000094],[-67.40805130999988,3.25727],[-67.41838659699997,3.253704325000015],[-67.44024572799992,3.249415182000135],[-67.45218298399996,3.243679098000172],[-67.47094152899987,3.226315816000067],[-67.51383296799992,3.186731670000185],[-67.55662105299993,3.147044170000114],[-67.5995124929999,3.107460022000154],[-67.64230057799992,3.067824198000011],[-67.68514033999995,3.028240052000129],[-67.72798010299991,2.988604228000071],[-67.77076818899991,2.948968404000183],[-67.81360795099997,2.909332581000044],[-67.83861934499996,2.886129863000122],[-67.85525915499997,2.858172913000132],[-67.85593094899995,2.78975331600013],[-67.84125484199987,2.801432190000028],[-67.83334834799993,2.815229798000161],[-67.8233231209999,2.827322083000141],[-67.80332434099994,2.832593078000087],[-67.78141353399991,2.831507874000181],[-67.77019974799995,2.83243805000005],[-67.75102779099987,2.842101542000151],[-67.74255285699996,2.838587545000024],[-67.73164912999991,2.826340231000088],[-67.69041133699996,2.806341451000137],[-67.66560664899995,2.80132883700017],[-67.64565954699992,2.808666891000087],[-67.62659094299994,2.813421122000079],[-67.60845251499991,2.798589986000053],[-67.59429317299995,2.776110738000128],[-67.58705847199991,2.758127340000058],[-67.58147741699989,2.713065491000108],[-67.5755863039999,2.691103007000137],[-67.56370072499996,2.68174957300009],[-67.51879390499997,2.681026103000193],[-67.50029374199994,2.675341695000142],[-67.48520422399994,2.661905823000097],[-67.48101843299989,2.653534241000131],[-67.47502396699988,2.63467234300019],[-67.47088985299993,2.627127584000064],[-67.46174312299988,2.62040964700013],[-67.44034908099992,2.610022685000103],[-67.4361632899999,2.60356313000014],[-67.43264929299994,2.595398255000134],[-67.41699133299991,2.575761210000096],[-67.4129088949999,2.571885478000056],[-67.40035152299998,2.56821645100014],[-67.39322017499993,2.559328105000134],[-67.38810420799996,2.548165996000193],[-67.38154130099988,2.537779032000173],[-67.37203283699998,2.53044097900009],[-67.34986364799997,2.518452047000039],[-67.34061356599994,2.510493876000154],[-67.33580765899993,2.500313619000096],[-67.3312601319999,2.486671041000179],[-67.3254206949999,2.474630432000112],[-67.31663570199993,2.469462789000119],[-67.30568029799994,2.466207174000132],[-67.29472489499997,2.458352356000191],[-67.2757079669999,2.439387106000054],[-67.26656123899991,2.433754375000206],[-67.23136958799995,2.422333883000107],[-67.19762487799998,2.402025045000187],[-67.18971838399993,2.394376933000117],[-67.18610103399996,2.384455058000114],[-67.18573929899995,2.365489808000163],[-67.18015824399995,2.356498108000125],[-67.17375036599992,2.33644765200016],[-67.1870312099999,2.315983785000028],[-67.20630651899995,2.297793681000158],[-67.21767533399995,2.284512838000154],[-67.2172619219999,2.266064351000139],[-67.20134558099991,2.227927144000176],[-67.19426591099997,2.197024638000187],[-67.17783280499992,2.154494934000127],[-67.1692545169999,2.14116241500011],[-67.15411332199997,2.132687480000115],[-67.13602657099995,2.127132263000107],[-67.12098872899988,2.119096578000111],[-67.11463252799993,2.102999370000134],[-67.1111702069999,2.048842469000121],[-67.11463252799993,2.031298320000161],[-67.11902502499993,2.023986105000162],[-67.13514807199991,2.003341370000157],[-67.13261592599994,1.99080983500015],[-67.12553625599992,1.980500386000159],[-67.1180948489999,1.972387187000066],[-67.11034338399988,1.959519755000159],[-67.09158483899998,1.946523133000042],[-67.08729569499991,1.938823344000127],[-67.08481522699995,1.927997132000101],[-67.06683182799995,1.89412323000009],[-66.9808939209999,1.665945943000011],[-66.97805171699994,1.644293518000026],[-66.97805171699994,1.599722596000106],[-66.97417598499999,1.58003387500014],[-66.96446081599993,1.55830393500014],[-66.94317012599996,1.523189799000192],[-66.93360998599988,1.501692403000163],[-66.92968257699991,1.479497375000136],[-66.93650386599995,1.438517965000187],[-66.93273148599991,1.424642843000044],[-66.92337805199989,1.414359232000137],[-66.91190588499994,1.405186666000134],[-66.9017256269999,1.394463806000132],[-66.89118363499992,1.374542542000114],[-66.88353552199996,1.349944560000125],[-66.88250199499996,1.326018372000135],[-66.90089880399997,1.288966370000153],[-66.89588618999991,1.265298564000048],[-66.87506058799994,1.222510478000103],[-66.91340450099997,1.214862366000133],[-66.97820674699996,1.196827291000133],[-67.06522985899991,1.172694397000072],[-67.086107137,1.176001689000159],[-67.09447871899997,1.201219788000117],[-67.09819942199996,1.25336130800018],[-67.07360144099991,1.541199035000105],[-67.08295487499993,1.604631856000125],[-67.11716467399992,1.709793396000023],[-67.15571529199991,1.788083191000169],[-67.26475256399993,1.932544657000122],[-67.28862707599993,1.974893494000127],[-67.32040808199994,2.053079936000088],[-67.34061356599994,2.090106100000142],[-67.36577998899989,2.114962464000101],[-67.38174800599992,2.122739767000112],[-67.42463944599987,2.138113505000092],[-67.43972896299996,2.139560445000086],[-67.44913407399994,2.134134420000109],[-67.46608394399993,2.116357727000164],[-67.47533402499992,2.111861877000152],[-67.51026729399992,2.107417705000145],[-67.52732051599989,2.096591492000101],[-67.55439896699994,2.073130392000124],[-67.59294958599992,2.054811096000151],[-67.66974076299996,1.97334320100012],[-67.79045690999996,1.812577820000129],[-67.82084265199993,1.784000753000072],[-67.86053015199991,1.761521505000161],[-67.89318965699997,1.749713440000065],[-67.92884639499997,1.741290181000153],[-67.96486486899997,1.740153300000145],[-67.99824784299992,1.749971823000038],[-68.03178584899993,1.777515361000113],[-68.05865759299994,1.816401876000072],[-68.07922481299994,1.859965109000115],[-68.10123897299991,1.924121399000142],[-68.111109172,1.942414856000198],[-68.12614701399988,1.956212463000071],[-68.14914302699992,1.96554006000018],[-68.16976192199994,1.969725851000135],[-68.17709997599992,1.973188172000164],[-68.18516149999991,1.980758769000133],[-68.18728023299988,1.988200175000145],[-68.18743526299994,2.008250631000095],[-68.19218949399993,2.01489105200011],[-68.20081945799987,2.007837219000095],[-68.26081579699986,1.858208110000135],[-68.28024613499994,1.829398499000192],[-68.27368322799995,1.825264385000168],[-68.24831009899998,1.822112121000117],[-68.23895666499993,1.810252380000108],[-68.2411270759999,1.788341573000139],[-68.23895666499993,1.770280660000054],[-68.20154292799995,1.768678691000105],[-68.19353308199989,1.763743592000154],[-68.19074255499991,1.755010274000099],[-68.1917244059999,1.742427063000164],[-68.18877884999998,1.735838318000091],[-68.18040726799993,1.729688823000117],[-68.16330236799988,1.721291402000134],[-68.2385949299999,1.72118804900019],[-68.28644730699995,1.721136373000178],[-68.41264115499993,1.721033021000153],[-68.5910281989999,1.720877991000123],[-68.79548600299995,1.720671285000151],[-68.99999548399992,1.720464580000112],[-69.17838252799999,1.720309550000152],[-69.30452469999994,1.720206197000138],[-69.35240291399995,1.720206197000138],[-69.39338232499998,1.725270488000206],[-69.46919165099989,1.757387390000133],[-69.54195206699987,1.7727094520001],[-69.58029597999987,1.770228983000123],[-69.64905147299996,1.738938904000122],[-69.6900825609999,1.735476583000093],[-69.71145076499991,1.738525493000111],[-69.72914994299992,1.738990581000053],[-69.7463581949999,1.735166525000096],[-69.78919795799993,1.712790629000125],[-69.80754309099993,1.707364603000059],[-69.84118458799988,1.707579109000122],[-69.85617061399995,1.707674663000134],[-69.84880672299994,1.6688915000001],[-69.84924597199995,1.600187684000119],[-69.84960770699988,1.531483866000158],[-69.84999527999994,1.462805888000105],[-69.85035701499996,1.394050395000122],[-69.85077042599997,1.32534657800015],[-69.85110632399997,1.256616923000166],[-69.85154557399997,1.187990621000125],[-69.85193314599988,1.119260966000155],[-69.85219152899994,1.059419657000191],[-69.82935054599994,1.057249248000105],[-69.78767350299992,1.084224345000138],[-69.76255875699991,1.091097310000109],[-69.7496654869999,1.090528870000142],[-69.73682389299991,1.088358459000148],[-69.72806473799994,1.082984111000187],[-69.72651444599992,1.061021627000045],[-69.71602412899993,1.058592835000169],[-69.61990596599995,1.072752177000112],[-69.59675492399995,1.071925354000101],[-69.55329504399995,1.05683583600009],[-69.54295975699995,1.055595601000149],[-69.51009354699991,1.056112366000193],[-69.47826086499995,1.060659892000046],[-69.46872656299988,1.059419657000191],[-69.45976070099994,1.055182190000139],[-69.45541988199994,1.050738017000128],[-69.45237097199993,1.046242167000031],[-69.44728084399995,1.041694641000078],[-69.42841894599991,1.030480855000135],[-69.41816117299993,1.028620504000131],[-69.37085139999996,1.062985332000068],[-69.35496089799994,1.067067770000165],[-69.33878617399995,1.064122213000161],[-69.28881506399996,1.038439026000091],[-69.27426814799992,1.02820709300012],[-69.25718908699989,1.006916402000044],[-69.24023921699998,0.995650941000079],[-69.23284948799997,0.98836456300009],[-69.23016231399995,0.979114482000085],[-69.22912878499997,0.967435608000102],[-69.22618322799988,0.957203675000116],[-69.20432409699993,0.943664449000138],[-69.20998266599996,0.907542623000126],[-69.19388545699991,0.892091370000045],[-69.1707344159999,0.883151347000108],[-69.1589263519999,0.876175028000191],[-69.1523892829999,0.867803446000124],[-69.15233760599992,0.854264221000065],[-69.15975317399992,0.849613342000097],[-69.16931331399991,0.84806304900016],[-69.17538529499987,0.844445699000175],[-69.17760738099989,0.823568421000118],[-69.16776302199989,0.778971659000192],[-69.16776302199989,0.756027323000154],[-69.17455847199994,0.745433655000085],[-69.18502294999986,0.737682190000086],[-69.19225764999996,0.728948873000192],[-69.18926041699991,0.715151266000149],[-69.18119889399995,0.707503154000079],[-69.15949479199995,0.697322897000106],[-69.15207922399992,0.690553283000071],[-69.14120133499998,0.668177388000089],[-69.13745479399995,0.650142314000092],[-69.14365596599995,0.637533265000158],[-69.16233699599991,0.631435445000108],[-69.17140620899997,0.632779033000162],[-69.19013891699987,0.639703674000145],[-69.20060339399993,0.639496969000106],[-69.20835485799992,0.634639384000167],[-69.21905187999994,0.61954986600017],[-69.22618322799988,0.614795634000174],[-69.24238378899989,0.613762106000195],[-69.27899654199993,0.619239807000014],[-69.29705745499993,0.618102925000173],[-69.29281998699989,0.645594788000068],[-69.30214758400001,0.656550191000136],[-69.32026017299992,0.656343486000168],[-69.34232600899992,0.650245667000206],[-69.3625573319999,0.6409439090001],[-69.36893937199994,0.644406230000129],[-69.43971024599998,0.715771382000128],[-69.45787451199993,0.728070374000154],[-69.47807999699992,0.73282460600015],[-69.50371150799998,0.729620667000177],[-69.52342606599993,0.720939026000124],[-69.55564632199989,0.700165100000092],[-69.574224,0.697943014000089],[-69.59411942599993,0.689313049000049],[-69.60458390299996,0.667402242000179],[-69.61915665699993,0.650659078000047],[-69.65127355999996,0.657377014000147],[-69.67948889199994,0.670037740000097],[-69.69468176299995,0.668745829000059],[-69.73287064599992,0.638980205000152],[-69.76754553299995,0.620686748000097],[-69.80532100499991,0.606940816000147],[-69.84591284199996,0.598672587000024],[-69.91446162999998,0.594538473000085],[-69.93389196799987,0.588957418000078],[-69.9528572179999,0.585753480000093],[-69.97649918599993,0.590404358000072],[-69.99923681699991,0.589784241000189],[-70.02065669799993,0.579862366000015],[-70.03941524299992,0.574591369000075],[-70.05424637899995,0.588130595000138],[-70.05610673099997,0.518574117000057],[-70.05683020099995,0.493045960000103],[-70.05869055199997,0.425866598000155],[-70.0613777259999,0.33088531500006],[-70.06427160699987,0.221951396000151],[-70.06726883999991,0.113017477000142],[-70.06995601499992,0.018036194000146],[-70.07181636599992,-0.049143167999901],[-70.07248815999992,-0.074671324999855],[-70.07380590799995,-0.124900817999887],[-70.06804398599989,-0.160144144999876],[-70.05636511299994,-0.181021422999848],[-70.01755611199988,-0.225669859999869],[-69.96665482599997,-0.272282002999845],[-69.94435644599992,-0.305458272999857],[-69.9336335859999,-0.314346618999863],[-69.91497839399992,-0.321684671999947],[-69.87523921799993,-0.330573017999882],[-69.85810848099996,-0.341425068999825],[-69.85167476399991,-0.350830179999875],[-69.84229549199998,-0.373154398999844],[-69.83477657099994,-0.383179625999873],[-69.8247771809999,-0.390207620999874],[-69.80175533099995,-0.400956318999903],[-69.79144588199995,-0.408191019999862],[-69.76157690499994,-0.440850524999846],[-69.74646154799993,-0.453046162999939],[-69.6664922699999,-0.482915140999864],[-69.6495165609999,-0.492010192999928],[-69.63207576499994,-0.506893005999885],[-69.6197509359999,-0.524566344999968],[-69.61171525099991,-0.544616800999933],[-69.60706437199994,-0.566837665999955],[-69.60657344599991,-0.596499938999926],[-69.60453222699996,-0.606318460999901],[-69.59926123099993,-0.616447040999859],[-69.59269832399994,-0.624095153999917],[-69.5869622399999,-0.632466735999813],[-69.58422338899996,-0.644559020999793],[-69.59076045799992,-0.668226827],[-69.6219730219999,-0.715355732999825],[-69.62838090099996,-0.733442483999838],[-69.61835567199992,-0.756903584999904],[-69.5806835539999,-0.799381611999863],[-69.57272538299992,-0.813540954999894],[-69.57567093899993,-0.839172464999862],[-69.57324214799988,-0.84919769199989],[-69.56419877199991,-0.86346038799995],[-69.55750667399988,-0.869454853999798],[-69.55024613499991,-0.873175556999897],[-69.54329565399993,-0.878653258999805],[-69.53732702699992,-0.889505309999848],[-69.53621598299992,-0.901184183999817],[-69.53861893799986,-0.910589293999877],[-69.53923905399992,-0.920614521999895],[-69.53259863299994,-0.934050394999844],[-69.52427872799986,-0.940975036999916],[-69.50247127399993,-0.950276793999862],[-69.49314367699989,-0.956167906999852],[-69.47123286999994,-0.988000589999984],[-69.46513505099998,-0.993064879999792],[-69.45508398499996,-0.9946151729999],[-69.44996801799995,-0.996785582999891],[-69.44691910799995,-1.00081634499989],[-69.44286250899995,-1.008361103999931],[-69.44503291899994,-1.010738219999965],[-69.439761922,-1.04866872099997],[-69.4419323329999,-1.059830830999829],[-69.44828853399991,-1.080398050999818],[-69.44815934299999,-1.092076924999887],[-69.41046138599992,-1.152745055999873],[-69.39945430499995,-1.182717386999812],[-69.42110672999993,-1.238631285999901],[-69.42106507199995,-1.239310156999849],[-69.41831620299986,-1.284106546999865],[-69.43469763199991,-1.376400654999841],[-69.43394832399991,-1.422185973999959],[-69.4522676189999,-1.490502216999843],[-69.45193172299992,-1.510862731999865],[-69.46642696099994,-1.561092223999907],[-69.47761490999997,-1.622483825999979],[-69.50696712299995,-1.783610940999878],[-69.53631933599993,-1.944841409999967],[-69.5656973879999,-2.10596852599987],[-69.59499792499989,-2.26709564199993],[-69.62435013799987,-2.428326110999847],[-69.65370235199993,-2.589453226999836],[-69.68308040399992,-2.750683694999835],[-69.71240677899996,-2.911810811],[-69.74173315499993,-3.072937926999898],[-69.77116288299993,-3.234168395999816],[-69.80046341999991,-3.395295511999876],[-69.82981563399997,-3.556525980999893],[-69.85916784699994,-3.717653095999864],[-69.88852006099992,-3.878780211999853],[-69.9178464359999,-4.040010680999941],[-69.94719864899989,-4.201137796999844],[-69.94833553099997,-4.20341155999985],[-69.94942073599988,-4.205581969999841],[-69.95055761799998,-4.207752379999832],[-69.9516944989999,-4.209922790999912],[-69.95277970399988,-4.212093199999813],[-69.9539165859999,-4.214366962999918],[-69.9550793059999,-4.216640725999852],[-69.95611283399998,-4.218811136999847],[-69.9571980389999,-4.220878193999809],[-69.9583349209999,-4.223151956999828],[-69.95942012499998,-4.225425719999834],[-69.9605053309999,-4.227596129999824],[-69.96164221299998,-4.229766539999915],[-69.962727417,-4.232040303999837],[-69.96386429899991,-4.234314066999858],[-69.96494950399997,-4.236484476999848],[-69.99275142399993,-4.180880634999838],[-70.01021805899998,-4.155145771999926],[-70.0305010589999,-4.131581318999835],[-70.06049922699994,-4.107190042999989],[-70.16170751999996,-4.05561696399981],[-70.1883983969999,-4.028951923999855],[-70.19894038899989,-3.995982360999975],[-70.20457312099998,-3.960118915999857],[-70.21697546399989,-3.924978942999899],[-70.24087581499995,-3.890872496999833],[-70.27356115699992,-3.856559345999813],[-70.31110408499995,-3.829274189999808],[-70.3495771899999,-3.815838317999933],[-70.37768916899995,-3.818835550999864],[-70.3992124029999,-3.831858011999898],[-70.43851232899996,-3.867721455999841],[-70.46424719299995,-3.878780211999853],[-70.49088639399987,-3.87847015399987],[-70.5442939859999,-3.865240986999865],[-70.55496516999992,-3.857902933999881],[-70.69064164299996,-3.786796162999863],[-70.73412735999997,-3.782041930999867],[-70.70056351799988,-3.729642027999915],[-70.62211869399994,-3.607272236999961],[-70.54372554499994,-3.485005797999861],[-70.46528072099994,-3.362532653999963],[-70.38683589699991,-3.24016286199992],[-70.308365234,-3.117793069999877],[-70.22994624899991,-2.995319925999809],[-70.15150142399997,-2.873053486999879],[-70.07305659999989,-2.750683694999835],[-70.05062902799997,-2.715130309999878],[-70.05044816099993,-2.714303486999938],[-70.05600337799993,-2.712443135999933],[-70.06747554499994,-2.703451435999895],[-70.07579545099992,-2.69135915099983],[-70.08212581399994,-2.676579690999816],[-70.09496740699993,-2.632551370999849],[-70.10579361999996,-2.625213316999932],[-70.12620581099992,-2.638752542999924],[-70.13194189499987,-2.647950948],[-70.13643774399988,-2.658596292999917],[-70.14183793199996,-2.666967874999884],[-70.15046789599997,-2.669241637999988],[-70.15971797699991,-2.663970641999881],[-70.16147497599991,-2.655185647999971],[-70.16113907899998,-2.645057067999844],[-70.1640846359999,-2.635031838999822],[-70.18387671,-2.619528910999804],[-70.200904094,-2.62438649499991],[-70.21751806699993,-2.632137959999838],[-70.23606990599986,-2.625109964999908],[-70.2473095299999,-2.607229918999863],[-70.26139135799993,-2.564751891999919],[-70.27394873099996,-2.546251728999891],[-70.2958853769999,-2.535399678999852],[-70.31508317099994,-2.541807555999966],[-70.33510778899998,-2.55400319399989],[-70.35960241699993,-2.560617777999894],[-70.36461503099989,-2.557620543999874],[-70.3709195559999,-2.550282490999891],[-70.3757254649999,-2.541084085999969],[-70.37634558099998,-2.532609150999889],[-70.37156551099989,-2.527958271999822],[-70.35453812699987,-2.521550393999874],[-70.3496288659999,-2.518346455999989],[-70.34492631099994,-2.496642353999903],[-70.35753536099995,-2.486927184999956],[-70.37877437399993,-2.484653421999852],[-70.40024593199988,-2.484860127999823],[-70.41133052599989,-2.487443948999911],[-70.43484330299995,-2.497675882999886],[-70.44525610399998,-2.498502706],[-70.45698665399999,-2.492714944999932],[-70.4625935469999,-2.484240009999851],[-70.46610754399995,-2.474008076999865],[-70.47192114299995,-2.463156025999822],[-70.48445267799993,-2.452510680999822],[-70.5019968269999,-2.443829039999869],[-70.52091040099995,-2.438041279999894],[-70.53773107899991,-2.435870869999803],[-70.55320817099994,-2.428119404999975],[-70.56553300099996,-2.413753356999891],[-70.57860713799994,-2.405485127999853],[-70.59607377099988,-2.416543883999935],[-70.59858007799994,-2.425845641999871],[-70.59775325499993,-2.437111103999925],[-70.59863175499996,-2.446619567999917],[-70.60635738099994,-2.450753682999931],[-70.64759517499996,-2.450753682999931],[-70.65446813999995,-2.445379332999877],[-70.65625097699991,-2.43308034199984],[-70.65622513899993,-2.419231058999884],[-70.65754288799988,-2.409102477999838],[-70.66371822199994,-2.39825042699988],[-70.69524084499992,-2.372102151999868],[-70.69903906299996,-2.37013844799985],[-70.69906490099996,-2.341096292999936],[-70.70144201699992,-2.333241474999824],[-70.70658382199991,-2.328280537999873],[-70.73247371499994,-2.324973245999871],[-70.75105139199988,-2.320529072999946],[-70.7878708499999,-2.307403258999898],[-70.82236486799988,-2.284768981999932],[-70.87419632999993,-2.229578551999936],[-70.9045562339999,-2.211078388999823],[-70.92525264499992,-2.220276794999918],[-70.95031571499993,-2.215419208999904],[-70.99271622799994,-2.197435811999824],[-71.02144832399995,-2.196712340999909],[-71.0319903159999,-2.210768330999926],[-71.02979406799992,-2.233505960999906],[-71.02062150099994,-2.258930765999835],[-71.0296907149999,-2.263995055999899],[-71.04142126499995,-2.26533864299995],[-71.05392696199996,-2.262651468999834],[-71.07911922199992,-2.247561949999834],[-71.09221919799998,-2.247251891999937],[-71.11996944199991,-2.252109476999877],[-71.14281042499992,-2.262858174999806],[-71.16193070599994,-2.310193785999857],[-71.1902493899999,-2.32455983499986],[-71.20905961199992,-2.339235940999842],[-71.21985998599988,-2.341509703999946],[-71.23045365399994,-2.337995706999905],[-71.24244258599988,-2.329107360999885],[-71.25334631399997,-2.326626891999908],[-71.26817745,-2.332414652999972],[-71.28905472899996,-2.34337005599987],[-71.3076065679999,-2.34781422899988],[-71.31546138499994,-2.334068297999849],[-71.38698156799995,-2.368898213999984],[-71.42082963099998,-2.376029561999928],[-71.43214676899993,-2.355152281999864],[-71.42816768399987,-2.347504170999883],[-71.41437007699992,-2.335101826999917],[-71.41163122599997,-2.326626891999908],[-71.41524857699994,-2.316291604999989],[-71.4389680589999,-2.286215921999926],[-71.45648636899995,-2.25510670899989],[-71.46666662699991,-2.251489358999905],[-71.48056758699991,-2.265752054999879],[-71.49043778599987,-2.303269143999955],[-71.49813757299998,-2.315051370999868],[-71.51405391499989,-2.307403258999898],[-71.52097855599996,-2.292107034999844],[-71.52227046799993,-2.250352476999893],[-71.52712805199994,-2.231542256999887],[-71.53839351399992,-2.222963968999849],[-71.59596105999995,-2.211078388999823],[-71.61663163299997,-2.199916279999883],[-71.63523514899993,-2.185550231999798],[-71.65492386899987,-2.173768004999886],[-71.67853999899998,-2.169530536999929],[-71.71202632699989,-2.186790465999835],[-71.73140498899994,-2.18989105199995],[-71.73998327699988,-2.172941181999945],[-71.73848465999998,-2.137697854999885],[-71.74613277299994,-2.132323506999825],[-71.76794022699997,-2.142245381999828],[-71.8261278889999,-2.179039000999907],[-71.83620479399994,-2.179762470999904],[-71.84106237899994,-2.190097756999833],[-71.87718420399993,-2.245288186999829],[-71.92441646299999,-2.281875101999944],[-71.93175451699996,-2.289626565999868],[-71.93635371999994,-2.311847431999894],[-71.94865270999989,-2.324146423999849],[-71.96627437399988,-2.328487242999913],[-72.0289578859999,-2.319598896999906],[-72.06151403899995,-2.320012307999917],[-72.08941931199993,-2.33096771199989],[-72.1173762609999,-2.355152281999864],[-72.16145625899989,-2.405691832999892],[-72.17639074699994,-2.41034271199986],[-72.240934611,-2.395459899999821],[-72.25095983999992,-2.396286721999843],[-72.2766947019999,-2.401557718999882],[-72.28186234499992,-2.405691832999892],[-72.28098384599988,-2.426155699999867],[-72.28382604999994,-2.433183694999954],[-72.2924043379999,-2.435870869999803],[-72.31565873199989,-2.438351337999876],[-72.35560461499995,-2.448893330999837],[-72.37803218699993,-2.450753682999931],[-72.39658402599989,-2.446516214999804],[-72.41425736499988,-2.437111103999925],[-72.42753820899989,-2.42501881899986],[-72.4326541749999,-2.412926533999951],[-72.4415941979999,-2.405175068999867],[-72.54412023899997,-2.389052021999873],[-72.56298213799991,-2.383057555999855],[-72.60840572199993,-2.346367288999886],[-72.62597570799991,-2.336858824999808],[-72.6443208419999,-2.334068297999849],[-72.6568265379999,-2.350191344999828],[-72.68318151899987,-2.404761657999856],[-72.69584224499991,-2.416543883999935],[-72.7124303789999,-2.422124938999872],[-72.7183214929999,-2.419851175999852],[-72.72173213699992,-2.393702900999841],[-72.72457434099991,-2.38347096799987],[-72.72876013199993,-2.374685973999959],[-72.73372106999997,-2.367554626999848],[-72.74607173699994,-2.373445739999838],[-72.75418493699993,-2.380680440999896],[-72.75904252099988,-2.389982197999842],[-72.76167801999989,-2.402281187999876],[-72.78798132399993,-2.383574319999894],[-72.80467281099995,-2.377786559999919],[-72.82947749899992,-2.390188902999881],[-72.85805456599988,-2.400317484999845],[-72.86999182199992,-2.411789651999854],[-72.88378943,-2.416750588999903],[-72.92616410399998,-2.425225523999899],[-72.9354141849999,-2.425328877999931],[-72.94326900199994,-2.419024352999912],[-72.9527774659999,-2.402281187999876],[-72.96977901299994,-2.356082457999918],[-72.98430008999989,-2.34337005599987],[-72.98755570599995,-2.337685648999823],[-73.05644038899996,-2.299858499999843],[-73.05886918199994,-2.310607197999872],[-73.07070308499992,-2.333241474999824],[-73.08382889899991,-2.34512705499985],[-73.0899783939999,-2.323836363999945],[-73.09886674,-2.314948017999853],[-73.14248164899996,-2.30409596699981],[-73.15891475499993,-2.293037210999884],[-73.1613952239999,-2.285389098999815],[-73.16630448399994,-2.25552012099989],[-73.1694567459999,-2.250145771999925],[-73.18309932499997,-2.239707132999811],[-73.18625158699992,-2.234746195999861],[-73.1883186449999,-2.228751729999914],[-73.19777543199987,-2.213558857999899],[-73.19984248899993,-2.203740335999925],[-73.1985505779999,-2.193818460999921],[-73.19529496299988,-2.187203877999835],[-73.18625158699992,-2.176351826999792],[-73.14992305499996,-2.143588968999878],[-73.14051794399992,-2.121884866999892],[-73.11106237799993,-2.07341237399983],[-73.12454992699989,-2.060803323999892],[-73.13235306899989,-2.039822692999806],[-73.13783077,-2.016878356999854],[-73.14460038299993,-1.998171487999869],[-73.16196366399994,-1.972436624999887],[-73.16873327699997,-1.959310810999824],[-73.17255733299992,-1.943601175999845],[-73.17116206899993,-1.929545185999828],[-73.16113684099992,-1.904430440999903],[-73.15891475499993,-1.895232034999907],[-73.16470251599989,-1.87848887099986],[-73.1883186449999,-1.850686950999901],[-73.19364131799993,-1.836837666999927],[-73.18625158699992,-1.799630635999918],[-73.19302119999989,-1.78867523199986],[-73.20139278199994,-1.783300882999896],[-73.21069453999986,-1.779270120999811],[-73.2203063569999,-1.772345478999824],[-73.24702307099994,-1.742373147999956],[-73.25725500599992,-1.742373147999956],[-73.26133744399993,-1.768831481999868],[-73.26769364399988,-1.772242125999881],[-73.3012316489999,-1.763560485999918],[-73.31657954999993,-1.765420836999922],[-73.33270259599993,-1.781130471999816],[-73.3402990319999,-1.792189228999817],[-73.35053096599997,-1.79063893599988],[-73.3745605069999,-1.768831481999868],[-73.3870662029999,-1.760873311999902],[-73.3991584879999,-1.759219664999847],[-73.4102172449999,-1.75973642999989],[-73.42442826399994,-1.758082783999839],[-73.43543534399996,-1.759529723999833],[-73.4400862219999,-1.758702900999907],[-73.44153316299992,-1.755292256999965],[-73.44484045399992,-1.741856383999931],[-73.4462873949999,-1.738135680999917],[-73.51093461199997,-1.698551533999861],[-73.5309850669999,-1.673746845999915],[-73.52881465699991,-1.635092874999913],[-73.51742000299993,-1.602019958999932],[-73.5088158769999,-1.586827086999989],[-73.4845279539999,-1.572461038999904],[-73.48354610199993,-1.553340758999823],[-73.49406225599998,-1.511586201999862],[-73.49545751999995,-1.498460387999899],[-73.49527665199992,-1.487918395999841],[-73.49716284199991,-1.477996520999838],[-73.50488846899992,-1.467247822999909],[-73.52597245399994,-1.451744892999898],[-73.53713456299997,-1.434278258999868],[-73.57421240299995,-1.416914977999852],[-73.58343664599997,-1.401722106999912],[-73.5677528489999,-1.382705179999846],[-73.56292110299998,-1.372163186999884],[-73.57857906099994,-1.36492848699983],[-73.58426346899998,-1.358313903999829],[-73.58896602399997,-1.35025237999983],[-73.59087805199997,-1.343431090999871],[-73.5920666099999,-1.321726988999885],[-73.59397863799992,-1.313355406999904],[-73.59713089999988,-1.306120706999849],[-73.6008774419999,-1.305190531999969],[-73.61418412299992,-1.307050882999974],[-73.61821488499989,-1.306120706999849],[-73.62002355999991,-1.301573180999895],[-73.62154801499992,-1.290617777999927],[-73.6288085539999,-1.275114847999816],[-73.6313923749999,-1.264056090999901],[-73.6365600179999,-1.255167744999895],[-73.66007279499986,-1.248346454999847],[-73.67911555999987,-1.234290465999919],[-73.69020015499987,-1.23108652699986],[-73.71340287399997,-1.227159118999879],[-73.73236812399992,-1.216513772999804],[-73.74637243699993,-1.201320901999949],[-73.7547181809999,-1.18333750399988],[-73.7697818609999,-1.188918557999898],[-73.78585323199988,-1.21424000999987],[-73.80254471899991,-1.223645120999919],[-73.81448197399993,-1.223335062999851],[-73.83047583099997,-1.21992441799992],[-73.85716670799994,-1.210519306999871],[-73.8710159909999,-1.201424255999896],[-73.88075699899994,-1.190985615999864],[-73.89876623599994,-1.16277028399989],[-73.91411413599991,-1.123082783999905],[-73.91990189699999,-1.113781025999884],[-73.93641251699995,-1.107786559999937],[-73.96762508199996,-1.114814554999867],[-73.98129349799987,-1.107476501999869],[-73.98268876099993,-1.099208271999828],[-73.97333532699992,-1.081638284999855],[-73.97447220899991,-1.073370055999902],[-73.98279211399998,-1.066238707999858],[-73.98783056699995,-1.068925882999807],[-73.99134456399987,-1.075333759999921],[-73.99496191499989,-1.07967458099999],[-74.00589147999995,-1.084842223999914],[-74.01111079999995,-1.090009866999821],[-74.0167952069999,-1.091560159999929],[-74.02909419799994,-1.086392516999837],[-74.03720739799996,-1.07967458099999],[-74.04203914399997,-1.071096292999883],[-74.06544856799994,-1.001436462999862],[-74.07689489799995,-0.990894469999972],[-74.09237198899993,-1.020143330999843],[-74.11963130699993,-1.020970153999869],[-74.18053198299988,-0.997715758999931],[-74.2401924239999,-0.986863708999806],[-74.26675410999994,-0.972290954999835],[-74.28913000599991,-0.943042093999793],[-74.30339269999988,-0.897773538999971],[-74.3133662519999,-0.884441019999869],[-74.33832596899994,-0.867697855999907],[-74.34442378799992,-0.858602802999854],[-74.33755082199997,-0.846820575999843],[-74.32514847899998,-0.844546813999926],[-74.30905126999991,-0.847337340999886],[-74.29512447199994,-0.847337340999886],[-74.28913000599991,-0.836278584999874],[-74.2946077069999,-0.823669534999851],[-74.30483964099997,-0.813127542999894],[-74.31060156299995,-0.801448668999825],[-74.30279842199991,-0.785428975999949],[-74.31057572499992,-0.782018330999932],[-74.32786149099994,-0.781501565999889],[-74.33755082199997,-0.778607685999901],[-74.34432043499989,-0.774060159999877],[-74.3781943369999,-0.736543069999883],[-74.38514481599988,-0.721970315999911],[-74.3847572439999,-0.702850035999916],[-74.38013220199994,-0.694271748999896],[-74.36726477099992,-0.683212991999895],[-74.3648876549999,-0.676184996999964],[-74.41266251699997,-0.573142191999878],[-74.41467789799992,-0.56415049199984],[-74.41471693699995,-0.56375655599993],[-74.41581477899993,-0.552678324999832],[-74.41795935099992,-0.54265309599981],[-74.42292028899996,-0.538312275999829],[-74.43653702899996,-0.537795511999875],[-74.44188553899991,-0.535521747999866],[-74.45056717899988,-0.521569111999867],[-74.46377050899994,-0.506789651999853],[-74.47563024999997,-0.496454365999853],[-74.53635005799998,-0.459970804999841],[-74.56239497899995,-0.439403584999852],[-74.6044595949999,-0.394961852999955],[-74.63272660399997,-0.347419534999858],[-74.64231258199996,-0.339771422999959],[-74.65308711799989,-0.341941833999869],[-74.66140702299995,-0.34679941799989],[-74.66771154799997,-0.351553649999872],[-74.67275000099994,-0.354034118999849],[-74.6865734459999,-0.353414000999877],[-74.6925162359999,-0.349693297999877],[-74.69564265999995,-0.344629007999799],[-74.70073278799993,-0.339771422999959],[-74.70765742999993,-0.334603779999867],[-74.71184322099995,-0.330262959999885],[-74.71812190799997,-0.327265726999883],[-74.7430041099999,-0.324888610999921],[-74.76269283099998,-0.319824319999853],[-74.77300227899988,-0.318687437999856],[-74.7907014569999,-0.312589618999894],[-74.78284663899987,-0.299153746999849],[-74.75532893899998,-0.278276468999863],[-74.78946122199993,-0.209030049999939],[-74.80369807999992,-0.188979593999903],[-74.8246528729999,-0.170479430999961],[-74.83653845299995,-0.173269957999835],[-74.8614723309999,-0.213164163999878],[-74.87271195499997,-0.22194915699987],[-74.88271134499986,-0.22277598099997],[-74.89932531799991,-0.216781513999862],[-74.93345760199989,-0.20944346099995],[-74.95487748199987,-0.2000383499999],[-74.96821000199992,-0.1897030639999],[-75.00911189799993,-0.145261332],[-75.01536474599993,-0.140507100999841],[-75.02469234299997,-0.137716572999878],[-75.04223649099991,-0.137303160999949],[-75.05073726399992,-0.134305928999936],[-75.06231278599998,-0.123143818999907],[-75.10163854999988,-0.069090269999919],[-75.12065547799995,-0.054104104999865],[-75.14168778599995,-0.04345876],[-75.1866979569999,-0.031263121999856],[-75.20674841399992,-0.029092711999866],[-75.22209631399991,-0.032400003999868],[-75.2317081299999,-0.042631937999928],[-75.23511877499992,-0.061958923999896],[-75.24013138899991,-0.074774677999869],[-75.25253373299994,-0.089554137999883],[-75.26834672099997,-0.101749775999807],[-75.28348791499987,-0.107020771999842],[-75.30196223999991,-0.096065368999945],[-75.36544673699996,-0.07281097399985],[-75.42141231299996,-0.062165628999935],[-75.44089432899995,-0.048109638999918],[-75.46492386899988,-0.039738056999852],[-75.52311153199989,-0.003977965999837],[-75.57013708499996,0.037983297000068],[-75.5879654549999,0.043874410000157],[-75.598249065,0.050385641000048],[-75.61096146699995,0.064648336000104],[-75.62677445499993,0.078911031000175],[-75.64666988099995,0.085422262000066],[-75.66550594099996,0.083148499000131],[-75.7086299239999,0.073329977000157],[-75.73162593599994,0.07115956700008],[-75.75384680199997,0.073019918000085],[-75.77322546399995,0.077774149000078],[-75.78971024599991,0.084388733000083],[-75.81787390199989,0.100098369000136],[-75.85797481299997,0.129760640000185],[-75.86634639499992,0.143506572000049],[-75.92711787899995,0.181023662000044],[-75.9519742439999,0.203967997000163],[-75.96298132399991,0.220091044000057],[-75.96752884999992,0.239314677000067],[-75.97248978699989,0.25192372700019],[-76.0395141199999,0.336673076000125],[-76.04385493999987,0.348558655000062],[-76.05346675699988,0.363544820000115],[-76.0759976809999,0.360754293000156],[-76.10131913299998,0.352692769000072],[-76.11956091399995,0.351762594000206],[-76.12467688099994,0.359617411000144],[-76.13030961099996,0.386075745000056],[-76.13630407799991,0.396721090000128],[-76.14467565999986,0.400441793000141],[-76.1558377689999,0.401268616000081],[-76.1775935469999,0.400131735000073],[-76.20208817599988,0.401785380000206],[-76.22374060099995,0.40674631800016],[-76.24368770399988,0.415427958000123],[-76.2629113369999,0.428037008000146],[-76.2905065519999,0.457182516000074],[-76.3004801029999,0.46162668900017],[-76.31159053599993,0.458526103000125],[-76.32972896399994,0.444780172000179],[-76.33494828399995,0.441679586000063],[-76.3405293379999,0.436615296000085],[-76.36538570199994,0.406953023000113],[-76.37468745999986,0.403542378000097],[-76.38533280499986,0.401475322000124],[-76.40693355399992,0.400131735000073],[-76.41639033999991,0.401888733000135],[-76.41587357699987,0.395377503000162],[-76.41835404499992,0.320860087000128],[-76.40801875799991,0.254507548000092],[-76.42569209899992,0.242725322000183],[-76.52491084799996,0.231253154000086],[-76.5508007409999,0.217920635000155],[-76.56542517199998,0.216060283000061],[-76.58433874499994,0.222571513000034],[-76.61105546099988,0.247479553000176],[-76.62686844899989,0.258538310000091],[-76.64123449699987,0.262775778000133],[-76.68996537299992,0.268150126000108],[-76.72453690599991,0.277555237000158],[-76.7368875739999,0.27290435800009],[-76.7343554279999,0.233113505000091],[-76.74959997599993,0.23270009400008],[-76.78525671399993,0.248719788000116],[-76.79786576399994,0.249960022000153],[-76.8673188889999,0.23952138200012],[-76.88246008299993,0.240141500000092],[-76.89682613199994,0.245309143000014],[-76.91387935399987,0.257814840000179],[-76.9356868079999,0.279829000000163],[-76.94586706599995,0.287063701000136],[-76.96245520099987,0.292851461000112],[-76.97490921999994,0.294918518000173],[-77.0149067799999,0.29564198800017],[-77.0446207279999,0.305667216000103],[-77.08286128799998,0.34886871300013],[-77.1038560799999,0.354140948000179],[-77.11743282099988,0.357550354000182],[-77.134796102,0.354346416000126],[-77.18518062399997,0.335432841000085],[-77.206936402,0.334192607000148],[-77.22254268499992,0.338843486000115],[-77.23727046699995,0.346388245000071],[-77.25613236599995,0.3532095340002],[-77.36253413899996,0.374810283],[-77.39746740699988,0.387626038000164],[-77.42439082899996,0.408296610000178],[-77.4347261159999,0.433824769000111],[-77.43911861199987,0.463693746000047],[-77.44816198799992,0.49728342700007],[-77.45456986499997,0.602393290000123],[-77.46805741399993,0.650865784000175],[-77.50934688399997,0.661201070000104],[-77.51413779499987,0.660531216000095],[-77.543349976,0.656446838000193],[-77.5798335369999,0.67091623900005],[-77.64556595999997,0.716288147000157],[-77.66680497299993,0.747707418000019],[-77.6733162029999,0.819641012000147],[-77.70318518099991,0.843102112000125],[-77.72788651499994,0.843308818000168],[-77.80762325099991,0.813026428000143],[-77.82772538299996,0.808892314000119],[-77.84798254399996,0.809254048000128],[-77.86932491099995,0.814059957000126],[-77.8926309819999,0.82305165600016],[-77.90322464999988,0.832095032000126],[-77.90529170799994,0.842895406000153],[-77.90498164899995,0.85400584000017],[-77.90854732299994,0.864186096000139],[-77.91826249199997,0.874418030000044],[-77.92306840099988,0.875038147000097],[-77.92818436699994,0.872350972000078],[-77.93903641799992,0.872557678000121],[-78.00704260299997,0.898189189],[-78.07794266799993,0.900773011000098],[-78.12000728399997,0.921236878000144],[-78.25015437899994,1.019628804000092],[-78.27061824599991,1.030480855000135],[-78.33007198099995,1.046500550000175],[-78.34921809999994,1.055802307000107],[-78.37280839099995,1.073785705000105],[-78.46691117399992,1.178378805000122],[-78.47812265099995,1.187119956000117],[-78.4852046309999,1.192641500000178],[-78.54060176699994,1.205353902000141],[-78.55561376999992,1.204113668000105],[-78.57005733299988,1.195845439000067],[-78.5756900639999,1.211968486000146],[-78.59661901899997,1.234085998000154],[-78.60044307499993,1.244421285000072],[-78.60214839699998,1.263644918000182],[-78.61152766899994,1.266435445000056],[-78.62555782099994,1.261991272000131],[-78.64126745599992,1.259407450000126],[-78.66467687999997,1.266642151000099],[-78.68428808699991,1.281886698000136],[-78.69935176599998,1.302040507000115],[-78.70919612599997,1.324158020000041],[-78.71947973599995,1.341056214000034],[-78.74898697899997,1.364853210000092],[-78.76996761099988,1.394102072000123],[-78.82865444843216,1.434326243234594],[-78.81285559799991,1.441799221000082],[-78.81956946499986,1.459702867000132],[-78.83193925699989,1.470363674000154],[-78.84520423099991,1.478827216000098],[-78.85448157499988,1.490179755000085],[-78.85562089799993,1.505438544000057],[-78.8535050119999,1.524400132000068],[-78.85334225199995,1.543361721000068],[-78.86070716099994,1.558498440000065],[-78.86709550699996,1.560288804000052],[-78.87999426999997,1.55414459799999],[-78.89959934699993,1.545328417000079],[-78.90793175099985,1.555049163000135],[-78.91811527899992,1.564306070000086],[-78.93107867699987,1.566157600000082],[-78.94080074399994,1.574951140000067],[-78.9625709899999,1.586986923],[-78.9715129149999,1.591281121000108],[-78.99798007699991,1.607936954000124],[-79.01268631199991,1.623613374000101],[-79.02151154699996,1.638310358000126],[-79.01661153399988,1.654964673000023],[-79.00876975399987,1.66476014600012],[-78.99308465999988,1.670634053000128],[-78.97347963199994,1.6755266320001],[-78.95583993599986,1.692179301000039],[-78.94016326999986,1.722558300000145],[-78.92644272699988,1.741178241000128],[-78.90095847599994,1.766663027000135],[-78.88037174499993,1.790193196000132],[-78.86664505099989,1.804905033000068],[-78.84605195599991,1.821585486000075],[-78.79938717399992,1.832017320000077],[-78.77684485599985,1.828436591000013],[-78.75944780599988,1.830547266000124],[-78.73760027599991,1.82580073400014],[-78.71860444199993,1.817256321000073],[-78.69725501199986,1.812079169000171],[-78.66372636599993,1.809759833000115],[-78.64159094999985,1.804877020000148],[-78.61263584699986,1.801310645000029],[-78.60753832099991,1.798764066000089],[-78.60052735899987,1.790488726000163],[-78.59097341999986,1.783484927000032],[-78.58078814899991,1.780299772000191],[-78.57123041799994,1.782207066000083],[-78.57184861899992,1.796212322000159],[-78.57056393599996,1.803852028000065],[-78.5667267179999,1.819768385000174],[-78.55332755199996,1.834412355000083],[-78.5462956129999,1.859884284000088],[-78.5540665359999,1.876206773000135],[-78.55284583199989,1.891180731000162],[-78.55117753799988,1.894476630000028],[-78.54784094999985,1.899318752000099],[-78.54515540299987,1.905910549000069],[-78.54539954299992,1.914740302000127],[-78.54835034699991,1.920613375000144],[-78.5522995719999,1.916645812000127],[-78.5584828149999,1.904170269000147],[-78.57149668099996,1.896806241000135],[-78.59136712399993,1.89684264100012],[-78.59763030699989,1.909884940000026],[-78.59820906099989,1.928567313000116],[-78.59382076699988,1.948879299000126],[-78.59251868399991,1.964056708000115],[-78.58747311099994,1.988470770000063],[-78.58633378799993,2.000392971000096],[-78.58958899599989,2.009100653000175],[-78.5977270169999,2.019354559000107],[-78.60802161399991,2.027980861000032],[-78.61799068899988,2.03143952000012],[-78.62901770699995,2.025336005000042],[-78.63719641799986,2.012355861000046],[-78.6474741339999,1.980641280000086],[-78.65824358599986,1.974992279000133],[-78.6656057779999,1.982915292000129],[-78.66734778599987,2.003648179000052],[-78.67068359499984,2.030994482000068],[-78.68298691999988,2.065041284000159],[-78.69176876699987,2.112479953000133],[-78.70054843799997,2.146743957000083],[-78.70315874699995,2.189805173000138],[-78.69170593399991,2.214419156000034],[-78.67936109299991,2.241683269000163],[-78.67229827899988,2.267190010000107],[-78.64537512899997,2.27826569200009],[-78.6369522779999,2.306586005000142],[-78.60741126199986,2.359808661000116],[-78.58568274599989,2.403143622000101],[-78.57408606699997,2.433172919000057],[-78.55899003799996,2.449164130000057],[-78.56529700399992,2.432562567],[-78.56627356699987,2.415513414000046],[-78.56358801999991,2.398342190000022],[-78.55899003799996,2.381537177000013],[-78.5449112619999,2.426743882000125],[-78.53620290799998,2.475151515000064],[-78.52504513299994,2.495506662000182],[-78.50645794499991,2.49087127900016],[-78.48138847699991,2.522313629000152],[-78.45633337399994,2.551898515000104],[-78.4322158459999,2.58702825200011],[-78.4108871039999,2.595331203000086],[-78.39327648799991,2.611963180000174],[-78.37196326799994,2.632291167000076],[-78.34601823899987,2.647985921000071],[-78.33397298399987,2.647045418000147],[-78.32470669299994,2.623909973000025],[-78.31359514999991,2.597081555000145],[-78.29786003299998,2.571180762000012],[-78.27750360599993,2.542509370000133],[-78.25475012899997,2.541896877000084],[-78.26546333399989,2.575777132],[-78.27100939199994,2.604440755000113],[-78.27007633099993,2.634952070000153],[-78.26174337499995,2.649741391000092],[-78.24693074399994,2.663600774000187],[-78.2358255769999,2.646015167000158],[-78.22843126999987,2.615495700000068],[-78.2349174699999,2.593315008000062],[-78.22474465599993,2.576667705000133],[-78.21550105999991,2.555402443000119],[-78.20775305899986,2.53733958500014],[-78.19310462099995,2.521429755000113],[-78.18439693899995,2.515204169000071],[-78.14879309799987,2.49754466400006],[-78.13247636599996,2.492743231000148],[-78.12295488199987,2.493638414000145],[-78.10655676999997,2.504380601000164],[-78.08665930899988,2.510565497000129],[-78.0852758449999,2.516058661000073],[-78.08507239499994,2.523586330000114],[-78.08576412699998,2.529852606000162],[-78.08665930899988,2.531683661000059],[-78.08311926999988,2.537543036000088],[-78.08165442599991,2.541489976000165],[-78.08136124599991,2.577489655000107],[-78.08504930599987,2.592281302000075],[-78.08966275699987,2.607996460000052],[-78.09982697399992,2.624637143000143],[-78.10536494399993,2.64220430800016],[-78.09610490199988,2.65145139000019],[-78.0739016249999,2.64682026300008],[-78.0637179869999,2.654210089000088],[-78.03965606999986,2.655126742000078],[-78.02114699799992,2.654194966000176],[-78.00448538999987,2.65511360800015],[-77.99151711399989,2.663432042000082],[-77.96928335499985,2.676372319000066],[-77.94984012999996,2.674518088000042],[-77.93586178299995,2.662054755000085],[-77.92544511599988,2.643215236000131],[-77.91759192599989,2.632269598000079],[-77.90689042899987,2.629461981000034],[-77.88805091099994,2.634711005000099],[-77.89704342399995,2.619086005000113],[-77.9054255849999,2.598211981000063],[-77.90428626199989,2.579982815000079],[-77.8843481109999,2.572088934000092],[-77.87254798099991,2.570786851000193],[-77.8523656889999,2.566107489000089],[-77.83967037699992,2.56586334800005],[-77.81383216099991,2.57123444200009],[-77.80239824099996,2.572088934000092],[-77.77794348899991,2.577704169000015],[-77.76040605399987,2.591620184000163],[-77.75121008999992,2.609605210000112],[-77.75153561099991,2.627264716000042],[-77.7576391269999,2.63996002800009],[-77.76891028599991,2.657171942000105],[-77.78335527299987,2.671372789000117],[-77.79869544199991,2.675726630000028],[-77.79869544199991,2.681870835000097],[-77.77818762899994,2.681870835000097],[-77.77818762899994,2.689398505000142],[-77.79133053299992,2.691961981000148],[-77.79759680899988,2.698716539000188],[-77.79775956899994,2.707668361000117],[-77.79246985599985,2.716701565000122],[-77.80288652299993,2.719387111000103],[-77.80630449099992,2.725531317],[-77.80443274599989,2.734076239000103],[-77.79869544199991,2.743963934000035],[-77.80752519399996,2.745794989000103],[-77.81175696499989,2.748480536000073],[-77.81285559799994,2.754095770000077],[-77.81236731699994,2.764471747000172],[-77.7947891919999,2.757269598000136],[-77.78091386599992,2.763169664000173],[-77.76829993399986,2.773342190000037],[-77.75462805899991,2.778753973000079],[-77.7481990229999,2.779527085000097],[-77.73924719999987,2.782049872000101],[-77.7335505849999,2.786118882000068],[-77.73721269399994,2.791734117000075],[-77.74551347599993,2.793158270000049],[-77.76195227799991,2.785589911000087],[-77.77074133999989,2.785589911000087],[-77.7857559889999,2.79482656500015],[-77.78184973899991,2.802150783000144],[-77.77082271999987,2.808742580000043],[-77.76455644399991,2.815659898000121],[-77.7576391269999,2.813299872000172],[-77.74156653599994,2.81004466400013],[-77.72321529899997,2.808742580000043],[-77.70933997299989,2.812241929000123],[-77.70518958199995,2.805650132000138],[-77.69847571499992,2.797512111000131],[-77.69627844999991,2.791734117000075],[-77.68883216099994,2.791734117000075],[-77.69859778599988,2.813137111000117],[-77.73542232999995,2.82249583500014],[-77.7235408189999,2.84015534100007],[-77.70815995999996,2.848456122000129],[-77.69359290299992,2.850165106000134],[-77.6802465489999,2.853664455000128],[-77.66832434799989,2.867499091000127],[-77.65859941299993,2.863470770000063],[-77.65070553299995,2.859116929000081],[-77.64488684799991,2.853745835000112],[-77.64171301999994,2.846380927000112],[-77.63605709499987,2.869614976000136],[-77.65770423099994,2.876898505000057],[-77.68822180899988,2.87250397299999],[-77.70933997299989,2.860663153000118],[-77.7149145169999,2.875677802000141],[-77.71568762899992,2.897528387000179],[-77.7100723949999,2.918117580000114],[-77.69627844999991,2.928941148000106],[-77.68260657499988,2.927313544000085],[-77.67345130099989,2.919175523000163],[-77.6651912099999,2.909247137000079],[-77.65465247299994,2.901597398000135],[-77.64338131399995,2.898138739000131],[-77.64012610599991,2.900051174000097],[-77.63906816299996,2.906154690000093],[-77.6341853509999,2.915350653000147],[-77.6250707669999,2.92446523600006],[-77.62071692599991,2.927679755000099],[-77.61969967399995,2.931586005000099],[-77.62051347599994,2.942613023000149],[-77.62393144399996,2.947984117000104],[-77.63768469999988,2.951727606000134],[-77.64171301999994,2.956244208000101],[-77.64146887899989,2.96133047100011],[-77.63589433499989,2.964829820000105],[-77.63109290299991,2.977972723000065],[-77.62588456899991,2.979681708000072],[-77.62315833199995,2.981838283000073],[-77.62734941299996,2.991034247000144],[-77.63390051999994,2.994859117000146],[-77.64216061099992,2.994289455000086],[-77.64976966099987,2.995550848000093],[-77.65465247299994,3.004706122000087],[-77.65611731699991,2.997503973000135],[-77.65754146999987,2.995835679000123],[-77.65754146999987,2.995184637000178],[-77.65465247299994,2.991034247000144],[-77.66543535099996,2.984564520000134],[-77.67662512899993,2.98232656500015],[-77.68541419199994,2.985907294000043],[-77.68883216099994,2.997259833000101],[-77.71393795499992,2.974758205000114],[-77.7235408189999,2.969916083000044],[-77.72179114499991,2.982001044000128],[-77.68502328799991,3.025839156000174],[-77.6622563669999,3.058458759000047],[-77.6477068479999,3.073852830000021],[-77.57142868499994,3.138075139000094],[-77.55143701099988,3.17514888000008],[-77.53962883999995,3.196844681000101],[-77.5251207179999,3.201353588000131],[-77.50865637899994,3.194566148000135],[-77.50552324099995,3.204575914000117],[-77.50450598899991,3.213202216000042],[-77.50182044199991,3.223374742000161],[-77.49486243399991,3.22361888200011],[-77.48574785099991,3.221380927000126],[-77.47968397499994,3.227463768000092],[-77.48543641699993,3.237703861000128],[-77.50079992199994,3.244758117000089],[-77.51617724099987,3.239661555000026],[-77.53860164799994,3.237124141000123],[-77.5417945189999,3.246080663000015],[-77.52960372199993,3.26141701600001],[-77.50523863099994,3.282491318000112],[-77.4885727649999,3.292702895000019],[-77.46486434099998,3.301625682000122],[-77.47765840399984,3.313153257000109],[-77.47655188699986,3.333644924000154],[-77.4686580069999,3.344671942000019],[-77.45738684799991,3.356146552000141],[-77.44546464799996,3.363226630000113],[-77.43561764199984,3.36098867400004],[-77.41905676999997,3.365220445000148],[-77.40485592399995,3.36717357000019],[-77.40046139199987,3.370021877000127],[-77.38097083199989,3.387640692000062],[-77.35850989499988,3.34577057500006],[-77.34373938699991,3.329413153000047],[-77.31891842399993,3.319973049000112],[-77.32347571499989,3.331122137000051],[-77.3567602199999,3.37091705900012],[-77.36563066299993,3.385646877000113],[-77.3670548169999,3.402085679000109],[-77.36245683499988,3.417792059000178],[-77.35301673099985,3.4298363300001],[-77.34943600199998,3.421332098000064],[-77.34268144399994,3.412054755000113],[-77.33608964799987,3.407171942000133],[-77.33315995999993,3.411810614000075],[-77.33519446499989,3.419256903000132],[-77.3441462879999,3.432033596000082],[-77.34618079299995,3.43602122600015],[-77.3411352199999,3.456244208],[-77.33169511599986,3.473334052000041],[-77.32628333199993,3.490668036000031],[-77.33315995999993,3.511786200000131],[-77.32290605399993,3.512396552000084],[-77.31273352799987,3.511786200000131],[-77.31582597599996,3.50690338700015],[-77.31773841099991,3.501776434000135],[-77.3186742829999,3.495550848000093],[-77.31891842399993,3.487616278000118],[-77.31615149599989,3.480373440000093],[-77.30980383999984,3.480210679000137],[-77.30028235599985,3.486558335000069],[-77.28282630099989,3.485174872000087],[-77.27818762899997,3.482611395000077],[-77.26915442599994,3.473944403000175],[-77.26427161399988,3.4708519550001],[-77.26549231699991,3.480414130000085],[-77.2694392569999,3.48794179900014],[-77.27586829299992,3.493475653000075],[-77.28477942599994,3.497503973000136],[-77.28050696499994,3.499701239000117],[-77.27586829299992,3.50299713700015],[-77.27171790299988,3.504950262000108],[-77.29051673099991,3.511542059000092],[-77.29898027299996,3.511786200000131],[-77.29478919199994,3.521144924000154],[-77.29100501199991,3.52366771],[-77.28595943899995,3.521918036],[-77.27794348899994,3.517971096000096],[-77.27489173099994,3.532782294000157],[-77.28905188699986,3.538072007000138],[-77.3095596999999,3.536851304000123],[-77.32575436099995,3.532212632000096],[-77.32176673099987,3.547837632000082],[-77.31053626199989,3.55019765800013],[-77.2949926419999,3.547023830000071],[-77.27794348899994,3.545884507000139],[-77.28319251199991,3.548570054000109],[-77.29356848899991,3.555894273000035],[-77.29898027299996,3.55898672100011],[-77.29328365799996,3.561183986000103],[-77.28990637899994,3.563421942000076],[-77.28587805899988,3.565334377000127],[-77.27794348899994,3.566392320000176],[-77.28099524599992,3.570461330000143],[-77.28477942599994,3.580633856000091],[-77.26475989499988,3.585028387000165],[-77.24376380099994,3.586900132000139],[-77.24376380099994,3.580633856000091],[-77.24860592399992,3.571519273000192],[-77.23884029899997,3.571682033000158],[-77.20962480399993,3.580633856000091],[-77.22386633999994,3.584214585000069],[-77.22716223899988,3.5910098330001],[-77.22264563699991,3.600165106000162],[-77.20490475199992,3.621242580000014],[-77.19863847599986,3.633530992000146],[-77.18919837099986,3.662583726000122],[-77.17772376199991,3.654445705000029],[-77.16954505099991,3.652248440000036],[-77.16185462099989,3.655951239000075],[-77.15127519399994,3.665716864000103],[-77.14028886599988,3.669826565000065],[-77.12486731699993,3.67373281500015],[-77.11827551999988,3.678045966000141],[-77.13394120999996,3.683050848000093],[-77.14720618399988,3.681097723000135],[-77.1605525379999,3.676214911000073],[-77.17080644399991,3.67719147300015],[-77.17491614499997,3.692694403000161],[-77.1678767569999,3.694973049000126],[-77.15221106699991,3.697943427000141],[-77.13573157499994,3.704413153000061],[-77.12645423099988,3.717230536],[-77.14366614499991,3.715073960000083],[-77.18541419199993,3.70359935100005],[-77.19871985599985,3.71002838700015],[-77.20295162699998,3.72549062700007],[-77.20079505099987,3.743475653000103],[-77.19542395699992,3.758205471000096],[-77.1673884759999,3.737941799000097],[-77.15233313699989,3.733099677000027],[-77.13019771999991,3.731512762000165],[-77.12564042899987,3.733547268000024],[-77.12824459499987,3.737982489000089],[-77.1353653639999,3.742499091000127],[-77.14443925699993,3.744533596000067],[-77.15526282499991,3.744452216000084],[-77.16344153599994,3.745347398000163],[-77.16978919199994,3.749253648000163],[-77.17491614499997,3.758205471000096],[-77.15843665299987,3.756903387000108],[-77.14443925699993,3.759588934000178],[-77.13365637899992,3.766750393000038],[-77.12645423099988,3.778713283000144],[-77.1419978509999,3.788478908000101],[-77.15147864499988,3.800441799000126],[-77.15038001199986,3.813666083000072],[-77.13394120999996,3.827093817000061],[-77.12612870999996,3.821600653000132],[-77.12149003799992,3.816351630000142],[-77.11969967399995,3.809515692000133],[-77.1202693349999,3.799139716000127],[-77.1056208979999,3.81346263200011],[-77.11188717399995,3.834051825000145],[-77.11449133999986,3.85260651200015],[-77.06859290299988,3.867743231000148],[-77.05630449099989,3.884344794000114],[-77.04600989499991,3.902777411000144],[-77.03156490799995,3.91583893400012],[-77.03156490799995,3.922064520000091],[-77.09300696499992,3.909002997000101],[-77.09300696499992,3.91583893400012],[-77.08600826699984,3.918158270000092],[-77.07933508999989,3.922064520000091],[-77.10464433499993,3.92177969000015],[-77.11607825399987,3.923814195000176],[-77.12645423099988,3.929510809000149],[-77.12303626199989,3.886135158000101],[-77.18114173099993,3.852972723000078],[-77.25316321499986,3.840806382000096],[-77.29161536399997,3.860581773000106],[-77.28954016799995,3.869818427000083],[-77.27521725199995,3.87775299700013],[-77.27171790299988,3.88540273600016],[-77.27525794199994,3.889227606000176],[-77.29263261599993,3.897772528000104],[-77.30479895699992,3.905829169000143],[-77.30915279899992,3.905951239000117],[-77.31175696499992,3.90843333500014],[-77.31273352799987,3.919012762000178],[-77.31163489499994,3.927557684000106],[-77.30915279899992,3.934800523000135],[-77.30524654899992,3.943182684000092],[-77.30020097599987,3.969142971000096],[-77.29507402299987,3.977972723000136],[-77.28477942599994,3.984076239000132],[-77.27041581899996,3.986395575000102],[-77.26089433499986,3.983140367000146],[-77.25999915299988,3.975409247000129],[-77.27171790299988,3.964260158000116],[-77.22398841099991,3.971991278000132],[-77.20962480399993,3.977280992000189],[-77.20962480399993,3.984076239000132],[-77.24376380099994,3.977280992000189],[-77.23924719999988,3.989935614000074],[-77.23228919199987,4.001206773000163],[-77.20539303299992,4.032619533000101],[-77.18919837099986,4.067328192000076],[-77.19981848899991,4.066880601000165],[-77.20474199099996,4.068101304000095],[-77.20693925699996,4.072170315000136],[-77.20962480399993,4.080308335000069],[-77.2249242829999,4.07697174700013],[-77.23668372299996,4.085353908000101],[-77.24860592399992,4.098211981000119],[-77.26427161399988,4.108221747000101],[-77.25999915299988,4.098537502000141],[-77.25853430899991,4.087632554000066],[-77.25999915299988,4.076890367000146],[-77.26427161399988,4.067328192000076],[-77.27293860599988,4.072088934000163],[-77.28160559799989,4.073553778000118],[-77.29039466099994,4.071844794000114],[-77.29898027299996,4.067328192000076],[-77.29898027299996,4.059881903000175],[-77.29409745999989,4.055487372000101],[-77.29377193899995,4.054999091000112],[-77.29600989499994,4.053371486000103],[-77.29898027299996,4.045599677000098],[-77.30345618399991,4.049790757000125],[-77.3065079419999,4.050970770000148],[-77.31069902299996,4.051255601000178],[-77.31891842399993,4.05304596600017],[-77.31582597599996,4.034247137000122],[-77.31891842399993,4.006537177000125],[-77.32632402299993,3.981390692000147],[-77.33653723899995,3.970445054000094],[-77.33971106699993,3.964422919000171],[-77.34325110599991,3.936957098000136],[-77.34618079299995,3.929510809000149],[-77.36213131399995,3.928045966000099],[-77.37466386599993,3.936428127000155],[-77.37979081899996,3.950018622000115],[-77.37352454299992,3.964260158000116],[-77.42503821499989,4.004584052000084],[-77.43077551999994,4.012640692000119],[-77.43517005099994,4.029364325000145],[-77.43040930899993,4.04401276200015],[-77.40827389199987,4.045599677000098],[-77.4198298819999,4.060207424000112],[-77.42398027299993,4.067328192000076],[-77.43114173099988,4.094387111000102],[-77.43504798099988,4.124904690000136],[-77.43517005099994,4.155218817000119],[-77.43285071499989,4.169012762000136],[-77.42666581899991,4.180365302000112],[-77.41510982999998,4.190171617000132],[-77.4011938139999,4.193304755000113],[-77.38776607999992,4.19171784100017],[-77.37755286399988,4.19358958500014],[-77.37352454299992,4.20693594000015],[-77.36961829299992,4.213934637000136],[-77.36009680899991,4.221136786000073],[-77.3480525379999,4.224676825000145],[-77.33653723899995,4.220607815000093],[-77.31981360599994,4.200832424000069],[-77.31309973899988,4.198879299000126],[-77.29898027299996,4.203192450000117],[-77.28099524599992,4.213771877000084],[-77.26496334499984,4.228745835000112],[-77.23631751199986,4.265326239000146],[-77.32091223899988,4.266343492000104],[-77.33653723899995,4.268744208000143],[-77.35033118399988,4.285793361000103],[-77.38719641799995,4.347235419000086],[-77.35899817599997,4.387193101000136],[-77.35301673099985,4.4024925800001],[-77.34508216099988,4.44554271000014],[-77.3351130849999,4.460923570000176],[-77.31273352799987,4.471380927000069],[-77.31273352799987,4.478176174000083],[-77.33315995999993,4.471380927000069],[-77.33043372299989,4.499660549000112],[-77.31956946499989,4.546616929000137],[-77.31891842399993,4.683661200000131],[-77.31566321499989,4.674383856000175],[-77.31167558499993,4.667181708000143],[-77.30630449099996,4.661200262000122],[-77.29898027299996,4.655707098000107],[-77.2944229809999,4.665716864000088],[-77.29161536399997,4.682074286000101],[-77.2949926419999,4.697333075000159],[-77.31883704299985,4.709662177000112],[-77.32213294199991,4.722845770000063],[-77.32310950399996,4.738755601000178],[-77.32575436099995,4.752508856000105],[-77.30333411399994,4.749212958000072],[-77.2857966789999,4.737005927000084],[-77.27293860599988,4.720607815000079],[-77.26427161399988,4.70408763200011],[-77.25804602799992,4.70408763200011],[-77.26976477799991,4.736070054000108],[-77.31216386599989,4.787176825000174],[-77.31891842399993,4.820868231000175],[-77.32359778599997,4.818793036000059],[-77.33535722599993,4.815497137000122],[-77.33999589799987,4.813381252000113],[-77.34862219999988,4.85419342700007],[-77.36050370999992,4.982489325000174],[-77.36668860599988,4.99892812700007],[-77.37287350199995,5.149155992000189],[-77.36790930899991,5.183254299000112],[-77.35899817599997,5.215643622000115],[-77.34618079299995,5.244777736000074],[-77.36058508999992,5.253485419000157],[-77.36156165299988,5.275213934000135],[-77.35920162699992,5.297308661000116],[-77.3635961579999,5.307440497000171],[-77.3730362619999,5.315659898000163],[-77.37824459499991,5.335191148000149],[-77.38097083199989,5.375067450000117],[-77.39574133999984,5.370347398000121],[-77.40465247299991,5.374701239000102],[-77.40855872299991,5.38617584800015],[-77.40827389199987,5.403021552000055],[-77.40147864499994,5.403021552000055],[-77.39696204299989,5.398423570000119],[-77.39342200399992,5.395941473000092],[-77.38878333199997,5.397040106000134],[-77.38097083199989,5.403021552000055],[-77.3912654289999,5.40957265800013],[-77.39533443899995,5.418687242000132],[-77.40257727799988,5.449652411000073],[-77.40160071499992,5.453111070000162],[-77.40225175699996,5.457220770000106],[-77.40827389199987,5.464504299000126],[-77.4129125639999,5.46621328300013],[-77.42931067599989,5.468939520000105],[-77.43561764199984,5.471340236000145],[-77.4468888009999,5.482082424000154],[-77.45396887899989,5.492621161000115],[-77.46214758999987,5.501044012000165],[-77.47655188699986,5.505438544000143],[-77.49087480399996,5.505438544000143],[-77.50133216099994,5.50242747600015],[-77.5079239569999,5.495754299000097],[-77.51065019399988,5.484930731000105],[-77.52269446499989,5.495550848000136],[-77.53453528599992,5.494940497000172],[-77.54478919199997,5.491115627000155],[-77.55223548099985,5.491848049000097],[-77.55919348899994,5.503078518000095],[-77.55687415299988,5.511908270000148],[-77.54784094999988,5.517645575000131],[-77.53490149599986,5.519720770000148],[-77.52623450399997,5.530178127000127],[-77.5027563139999,5.579250393000081],[-77.49083411399995,5.594794012000165],[-77.48184160099993,5.597601630000128],[-77.45954342399988,5.599025783000101],[-77.44981848899992,5.601629950000088],[-77.4378962879999,5.610174872000115],[-77.42910722599993,5.618963934000178],[-77.41950436099995,5.625677802000126],[-77.40485592399995,5.628363348000107],[-77.38719641799995,5.623195705000099],[-77.37218176999991,5.613470770000148],[-77.35562089799996,5.607896226000136],[-77.33315995999993,5.615301825000131],[-77.32677161399994,5.621283270000134],[-77.32445227799988,5.627386786000129],[-77.32298743399991,5.634426174000097],[-77.31891842399993,5.642564195000119],[-77.31794186099995,5.647040106000176],[-77.31973222599996,5.658514716000127],[-77.31891842399993,5.66303131700009],[-77.31444251199989,5.664292710000097],[-77.30785071499992,5.66303131700009],[-77.30166581899994,5.662543036000101],[-77.29898027299996,5.666164455000157],[-77.29430091099992,5.676947333000072],[-77.2832738919999,5.685777085000112],[-77.27061926999991,5.693548895000119],[-77.26113847599993,5.700913804000109],[-77.25450598899994,5.71092357000019],[-77.24941972599993,5.722316799000154],[-77.24592037699995,5.734198309000107],[-77.24376380099994,5.745672919000157],[-77.24644934799991,5.787339585000112],[-77.26158606699991,5.822495835000083],[-77.30239824099996,5.888251044000157],[-77.30589758999986,5.891506252000113],[-77.31273352799987,5.89642975500007],[-77.31346594999991,5.918402411000088],[-77.35301673099985,6.02619049700013],[-77.36046301999994,6.02619049700013],[-77.36046301999994,5.99892812700014],[-77.36668860599988,5.99892812700014],[-77.38280188699986,6.042629299000126],[-77.40843665299994,6.081976630000128],[-77.46971594999985,6.156480210000082],[-77.48062089799993,6.174058335000112],[-77.48436438699986,6.188788153000103],[-77.48338782499987,6.228501695000119],[-77.47655188699986,6.264064846000096],[-77.47569739499997,6.281561591000141],[-77.48338782499987,6.294338283000087],[-77.47655188699986,6.300523179000052],[-77.43903561099995,6.269476630000128],[-77.41510982999998,6.239081122000158],[-77.40501868399991,6.246242580000114],[-77.39488684799997,6.263576565000108],[-77.38097083199989,6.300523179000052],[-77.37759355399987,6.319240627000113],[-77.37669837099989,6.336859442000133],[-77.37791907499988,6.351792710000083],[-77.38097083199989,6.362616278000175],[-77.39928137899994,6.38764069200009],[-77.39647376199989,6.395819403000104],[-77.37352454299992,6.40420156500015],[-77.37083899599992,6.397935289000102],[-77.36766516799986,6.395086981000162],[-77.36412512899987,6.393133856000119],[-77.36046301999994,6.389878648000163],[-77.35631262899989,6.405178127000126],[-77.35993404899995,6.419175523000177],[-77.3688044909999,6.430487372000172],[-77.38097083199989,6.437689520000105],[-77.38097083199989,6.444525458000128],[-77.36579342399988,6.470038153000118],[-77.36082923099985,6.486070054000109],[-77.36046301999994,6.506577867000161],[-77.34752356699991,6.521551825000102],[-77.34300696499989,6.543768622000158],[-77.34536699099993,6.566107489000089],[-77.35301673099985,6.581732489000074],[-77.38719641799995,6.609035549000154],[-77.39415442599994,6.616685289000173],[-77.39883378799993,6.62368398600016],[-77.4046931629999,6.630113023000163],[-77.41510982999998,6.636297919000143],[-77.41466223899988,6.647447007000067],[-77.40953528599987,6.66828034100014],[-77.40827389199987,6.681057033000087],[-77.41124426999988,6.69379303600013],[-77.41869055899986,6.698716539000188],[-77.42870032499994,6.701564846000139],[-77.46263587099989,6.720689195000118],[-77.48615475199995,6.715073960000112],[-77.50568600199992,6.700140692000076],[-77.5174861319999,6.684759833000129],[-77.51333574099993,6.677923895000106],[-77.51065019399988,6.671087958000101],[-77.5187068349999,6.669582424000139],[-77.5242813789999,6.667466539000131],[-77.53180904899997,6.663641669000113],[-77.53799394399994,6.663641669000113],[-77.53819739499991,6.688910223000079],[-77.5364884109999,6.700832424000112],[-77.53180904899997,6.712062893000108],[-77.57335364499997,6.801011460000126],[-77.59325110599985,6.828111070000148],[-77.62181555899986,6.855943101000107],[-77.63621985599991,6.865423895000119],[-77.66250566299993,6.871771552000141],[-77.66673743399986,6.876857815000079],[-77.67105058499996,6.879706122000115],[-77.68260657499988,6.87592194200009],[-77.68602454299989,6.870184637000122],[-77.68569902299986,6.861883856000133],[-77.68736731699988,6.853989976000165],[-77.69627844999991,6.849188544000171],[-77.70132402299996,6.918361721000068],[-77.69220943899995,6.947251695000176],[-77.66466223899994,6.959051825000144],[-77.6527400379999,6.976629950000174],[-77.66502844999984,7.015570380000071],[-77.69627844999991,7.074530341000126],[-77.70311438699994,7.074530341000126],[-77.6967667309999,7.062689520000077],[-77.6937149729999,7.058742580000086],[-77.68883216099994,7.054632880000127],[-77.68883216099994,7.047186591000155],[-77.69627844999991,7.047186591000155],[-77.71324622299987,7.070502020000148],[-77.78693600199992,7.148871161000115],[-77.79767818899995,7.154933986000117],[-77.81578528599997,7.157049872000129],[-77.8255916009999,7.162787177000098],[-77.83185787699995,7.175238348000121],[-77.83958899599995,7.187241929000138],[-77.85391191299993,7.191839911000089],[-77.84707597599993,7.19806549700013],[-77.85985266799986,7.201849677000069],[-77.87140865799998,7.21112702000012],[-77.88805091099994,7.232814846000097],[-77.89582271999984,7.23509349200016],[-77.89583915079834,7.235098056351107],[-77.85501053899989,7.365391337000162],[-77.8201806239999,7.476547343000164],[-77.79630611199994,7.471276347000141],[-77.77424027499991,7.474738668000086],[-77.75511999499994,7.486107483000168],[-77.74023718299989,7.504607645000193],[-77.73124548399993,7.530342509000177],[-77.73424271699997,7.55178822800012],[-77.7568253179999,7.595558167000206],[-77.76581701699993,7.626460674000114],[-77.77051957199993,7.668990377000156],[-77.7642150479999,7.705732320000138],[-77.74023718299989,7.718858134000115],[-77.72990189699999,7.713328756000109],[-77.6799307869999,7.670954081000105],[-77.67021561799994,7.659947001000191],[-77.67062902899997,7.657311504000177],[-77.674763143,7.648423157000167],[-77.67481481999991,7.644650778000141],[-77.6718692629999,7.641963603000121],[-77.66339432799992,7.639948222000072],[-77.6607588299999,7.638036194000151],[-77.63306026199987,7.600674134000187],[-77.62546382699992,7.587444967000109],[-77.6133198659999,7.537473857000123],[-77.60267451999991,7.526053365000124],[-77.57998856699996,7.528378805000159],[-77.55492549699994,7.548480937000121],[-77.50934688399997,7.594111227000113],[-77.36909704599995,7.680772603000064],[-77.33974483299997,7.707230937000148],[-77.34599768099989,7.725731099000171],[-77.36651322499995,7.745109762000141],[-77.37989742099998,7.77441029900011],[-77.37664180599998,7.786605937000117],[-77.3471862389999,7.823812968000126],[-77.32160640499987,7.881018779000073],[-77.30041906799998,7.902102763000187],[-77.26972326699995,7.918122457000152],[-77.23613358599994,7.92923289000008],[-77.20605790299994,7.935485738000167],[-77.16900589999997,7.935072326000152],[-77.16326981599993,7.939258117000094],[-77.17107295799993,7.954916077000148],[-77.1808398039999,7.965148010000135],[-77.1915368249999,7.972847799000121],[-77.20120031799993,7.981994527000111],[-77.2077632239999,7.996567281000168],[-77.20962357599993,8.02070017500013],[-77.23106929499994,8.09873158800012],[-77.26011144999991,8.154025371000145],[-77.26943425099992,8.167700643000103],[-77.29519974799986,8.205495097000139],[-77.31690384999986,8.250841166000157],[-77.32434525599989,8.26120229100016],[-77.33716101099988,8.266628316000137],[-77.3504935309999,8.26740346300015],[-77.36320593299996,8.27208018000013],[-77.37436804299998,8.289314270000204],[-77.38299800599992,8.32494517100018],[-77.3912662359999,8.393545634000134],[-77.40578731399992,8.42845306400011],[-77.42232377099992,8.456410014000198],[-77.43271073499994,8.465065816000163],[-77.44960892799992,8.470646871000085],[-77.4796846109999,8.467856343000122],[-77.48872798699995,8.473644104000186],[-77.48867630999993,8.496536764000112],[-77.48035640499998,8.52619903600008],[-77.46937330099993,8.53781160600016],[-77.44113399299994,8.56766937200014],[-77.42909338499996,8.592629090000116],[-77.43023026499993,8.610457459000159],[-77.43503617399996,8.620637716000132],[-77.43400264499986,8.6282599890001],[-77.41767289299995,8.638466085000175],[-77.40154984599988,8.642031759000147],[-77.38537512199987,8.643633728000168],[-77.37493648399993,8.650945944000156],[-77.37352454299992,8.66474030200011],[-77.37315833199987,8.669338283000144],[-77.37144934799989,8.672186591000099],[-77.36896725199995,8.674750067000105],[-77.36668860599988,8.67841217700014],[-77.35167395699993,8.669338283000144],[-77.34137936099995,8.632473049000083],[-77.32945716099991,8.613511460000069],[-77.31712805899984,8.601385809000163],[-77.30711829299989,8.589016018000137],[-77.29881751199987,8.574286200000145],[-77.29161536399997,8.555487372000101],[-77.28319251199991,8.516791083000143],[-77.27472896999987,8.495794989000117],[-77.20962480399993,8.451849677000082],[-77.15916907499991,8.431708075000143],[-77.14443925699993,8.4210879580001],[-77.13361568899992,8.408392645000134],[-77.05280514199984,8.276312567000105],[-77.03156490799995,8.259995835000081],[-77.01773027299996,8.25763580900012],[-76.98985755099989,8.257269598000107],[-76.98542232999992,8.256170966000155],[-76.97630774599992,8.2538516300001],[-76.97012285099987,8.266750393000123],[-76.96202551999994,8.266546942000076],[-76.95612545499988,8.256537177000084],[-76.95641028599994,8.24017975500007],[-76.96263587099989,8.24017975500007],[-76.96597245999993,8.243353583000129],[-76.97008216099988,8.246405341000127],[-76.97012285099987,8.221340236000131],[-76.96312415299988,8.20368073100012],[-76.95083574099992,8.197088934000135],[-76.93529212099992,8.205389716000113],[-76.93529212099992,8.184963283000144],[-76.92170162699998,8.199204820000148],[-76.91759192599991,8.188950914000117],[-76.92711341099991,8.17275625200007],[-76.92853756399998,8.157660223000065],[-76.93301347599996,8.159613348000107],[-76.94444739499991,8.16254303600013],[-76.94896399599986,8.164496161000088],[-76.94253495999993,8.128851630000128],[-76.91832434799994,8.113918361000088],[-76.89574133999989,8.117254950000117],[-76.89370683499993,8.13654205900015],[-76.83226477799988,8.13654205900015],[-76.83836829299986,8.127875067000147],[-76.84361731699993,8.117987372000144],[-76.84675045499992,8.10712311400006],[-76.84654700399993,8.095526434000135],[-76.83910071499989,8.095526434000135],[-76.8356013659999,8.098334052000098],[-76.82542883999986,8.103013414000117],[-76.82542883999986,8.095526434000135],[-76.86021887899989,8.082505601000065],[-76.86021887899989,8.07566966400013],[-76.85122636599988,8.074164130000085],[-76.84528561099995,8.071519273000192],[-76.83706620999996,8.062486070000176],[-76.83824622299989,8.060777085000083],[-76.83812415299991,8.057928778000147],[-76.83910071499989,8.054632880000113],[-76.84341386599988,8.059393622000101],[-76.84923255099994,8.06232330900012],[-76.85680091099988,8.063177802000126],[-76.86644446499986,8.061997789000186],[-76.85826575399994,8.05329010600012],[-76.84837805899993,8.047023830000157],[-76.83897864499991,8.039618231000176],[-76.83226477799988,8.027289130000128],[-76.85728919199988,8.039007880000128],[-76.88438880099991,8.046332098000121],[-76.90770423099991,8.044094143000137],[-76.92170162699998,8.027289130000128],[-76.92202714799988,8.023016669000128],[-76.92076575399989,8.021918036000088],[-76.91832434799994,8.021918036000088],[-76.91539466099994,8.021063544000171],[-76.93370520699989,7.964585679000137],[-76.90705318899995,7.929510809000162],[-76.85358639199984,7.912746486000144],[-76.79133053299995,7.911200262000108],[-76.77961178299995,7.913234768000124],[-76.76764889199993,7.91742584800015],[-76.75723222599993,7.923570054000137],[-76.75035559799991,7.931708075000145],[-76.74714107999993,7.940497137000122],[-76.7474666009999,7.946437893000138],[-76.74925696499989,7.952622789000116],[-76.75035559799991,7.962103583000115],[-76.74819902299993,7.970282294000128],[-76.73884029899989,7.980292059000107],[-76.73668372299989,7.98973216400013],[-76.7306208979999,8.051336981000162],[-76.73200436099994,8.0792910830001],[-76.74413001199984,8.103013414000117],[-76.74665279899997,8.095160223000121],[-76.74767005099994,8.089992580000128],[-76.74693762899992,8.084540106000176],[-76.74413001199984,8.07566966400013],[-76.75035559799991,8.07566966400013],[-76.75548255099994,8.09162018400015],[-76.75918535099987,8.114691473000107],[-76.75938880099994,8.137884833000143],[-76.74791419199988,8.171535549000154],[-76.75177975199989,8.1929385440001],[-76.76463782499991,8.22589752800016],[-76.77017167899993,8.258490302000126],[-76.77009029899995,8.398016669000143],[-76.77481035099987,8.41669342700011],[-76.78791256399992,8.424505927000112],[-76.80207271999987,8.430161851000108],[-76.80842037699989,8.444159247000158],[-76.81224524599989,8.461981512000136],[-76.81859290299994,8.47915273600016],[-76.83861243399991,8.50043366100013],[-76.86998450399994,8.521551825000145],[-76.90648352799988,8.5386416690001],[-76.93529212099992,8.541815497000158],[-76.93529212099992,8.534369208000086],[-76.94717363199987,8.545477606000118],[-76.93081620999995,8.570705471000082],[-76.90636145699992,8.599310614000146],[-76.89370683499993,8.620347398000177],[-76.79474850199995,8.651068427000084],[-76.77061926999994,8.652980861000131],[-76.67320716099988,8.680405992000175],[-76.66022701699988,8.68744538000007],[-76.65477454299993,8.69574616100013],[-76.65453040299991,8.706529039000143],[-76.65294348899997,8.718166408000144],[-76.64875240799992,8.728013414000158],[-76.64049231699994,8.733628648000163],[-76.64049231699994,8.739813544000143],[-76.64732825399996,8.739813544000143],[-76.64732825399996,8.747300523000192],[-76.6282445949999,8.75047435100008],[-76.56045488199987,8.775376695000103],[-76.54686438699991,8.784572658000087],[-76.50279700399992,8.82880280200014],[-76.45099850199988,8.8644473330001],[-76.42821204299989,8.884466864000075],[-76.42821204299989,8.890692450000117],[-76.43553626199989,8.902573960000081],[-76.42686926999988,8.910549221000123],[-76.36611894399994,8.925441799000083],[-76.34251868399991,8.93911367400011],[-76.32396399599989,8.9413516300001],[-76.31554114499994,8.947739976000122],[-76.31037350199993,8.957464911000073],[-76.30125891799985,8.969794012000122],[-76.26427161399991,8.996323960000083],[-76.25625566299988,9.007391669000114],[-76.26500403599994,9.042181708000072],[-76.25495357999998,9.070786851000136],[-76.23546301999988,9.093573309000163],[-76.20181230399987,9.123114325000131],[-76.19261633999989,9.1349144550001],[-76.18651282499991,9.149725653000175],[-76.17487545499989,9.23285553600013],[-76.16812089799987,9.24697500200007],[-76.16250566299996,9.248114325000103],[-76.13442949099996,9.258612372000172],[-76.12999426999987,9.261216539000173],[-76.11693274599992,9.265814520000106],[-76.11253821499992,9.276353257000082],[-76.11290442599994,9.29474518400012],[-76.11082923099991,9.312160549000081],[-76.10704505099991,9.321600653000104],[-76.09609941299993,9.333197333000115],[-76.08657792899993,9.33991120000016],[-76.07799231699991,9.343817450000158],[-76.03750566299989,9.356594143000109],[-76.00528580399987,9.366241125000087],[-75.97692515699987,9.382517238000133],[-75.9532846219999,9.402296152000176],[-75.95090072999992,9.426762639000117],[-75.94379804299984,9.440734321000178],[-75.9213432869999,9.438369571000095],[-75.9099828769999,9.42816803600013],[-75.87743079299995,9.429999091000113],[-75.84288489499993,9.43650950700011],[-75.81867428299992,9.446193752000156],[-75.81102454299992,9.443548895000077],[-75.80329342399989,9.438544012000136],[-75.79808508999992,9.430365302000125],[-75.79820716099988,9.418198960000138],[-75.81200110599988,9.424221096000153],[-75.82673092399997,9.42601146000014],[-75.84080969999991,9.422512111000145],[-75.85285396999993,9.41205475500007],[-75.84487870999988,9.406724351000108],[-75.83885657499988,9.404852606000134],[-75.83275305899988,9.406561591000141],[-75.8248591789999,9.41205475500007],[-75.81908118399994,9.406154690000136],[-75.81525631399992,9.403387762000165],[-75.81289628799988,9.399847723000093],[-75.81187903599991,9.391546942000119],[-75.78111731699994,9.41242096600017],[-75.76203365799995,9.421820380000113],[-75.73924719999991,9.4257266300001],[-75.71678626199991,9.422064520000148],[-75.6982722649999,9.416896877000141],[-75.69737708199992,9.416652736000103],[-75.67260785199996,9.409990145000137],[-75.65864387299993,9.419943330000137],[-75.6206327729999,9.452853128000127],[-75.59657686899992,9.498749423000119],[-75.57716746499989,9.56221350900016],[-75.5763669039999,9.621085904000068],[-75.5872138419999,9.648615712000066],[-75.59961827099994,9.663148619000111],[-75.60667883999989,9.669256903000147],[-75.61803137899997,9.689276434000105],[-75.63374166599989,9.689159259000093],[-75.64736894399987,9.699408270000076],[-75.65779442699989,9.705232142000098],[-75.67797281199995,9.704476967000145],[-75.69116558099995,9.699126972000071],[-75.70280623999987,9.690716519000162],[-75.70513735399993,9.700661772000132],[-75.6492519409999,9.756470368000121],[-75.6399450619999,9.783262609000118],[-75.6228623229999,9.838364154000132],[-75.62363949699991,9.861348866000128],[-75.6174175619999,9.882749292000128],[-75.60467505199992,9.910354199000139],[-75.59366611499988,9.943990109000168],[-75.58951592099993,9.96418933900017],[-75.58995520699997,9.984849351000108],[-75.57619138599995,10.04184712000007],[-75.5738483399999,10.073960264000148],[-75.58859107299989,10.108378036000119],[-75.58936070599988,10.12826143300019],[-75.58392088299993,10.135911362000142],[-75.58006751199986,10.139146226000108],[-75.57233639199984,10.14081452000012],[-75.56550045499992,10.14447663000007],[-75.56163489499991,10.1499697940001],[-75.55113684799994,10.172349351000122],[-75.54401607999989,10.182684637000122],[-75.54088294199991,10.188544012000165],[-75.5375056629999,10.199693101000094],[-75.53620357999992,10.21100495000016],[-75.53636633999989,10.221014716000155],[-75.53551184799997,10.230617580000128],[-75.5306697259999,10.240668036000102],[-75.56285467299993,10.22308499200011],[-75.60400224599994,10.196124838000088],[-75.64378608699991,10.15437570300014],[-75.68488010799992,10.131519625000124],[-75.70357664599993,10.134428033000162],[-75.68892232599988,10.167966257000101],[-75.6601497389999,10.184107151000134],[-75.64644230099987,10.193508987000186],[-75.63768469999991,10.203680731000162],[-75.63084876199991,10.213446356000103],[-75.62535559799997,10.225816148000135],[-75.61632239499997,10.237534898000135],[-75.61363684799989,10.248765367000132],[-75.61774654899995,10.261135158000158],[-75.61510169199994,10.269517320000134],[-75.59215247299994,10.268622137000136],[-75.59752356699991,10.277004299000097],[-75.59935462099989,10.285630601000108],[-75.59752356699991,10.294378973000079],[-75.59215247299994,10.302720445000148],[-75.58381100199989,10.282375393000152],[-75.56338456899991,10.287095445000162],[-75.52725175699987,10.309556382000068],[-75.51569576699987,10.318996486000088],[-75.51642818899997,10.341457424000083],[-75.52179928299995,10.368394273000149],[-75.52383378799988,10.391506252000099],[-75.5306697259999,10.391506252000099],[-75.53917395699992,10.3862979190001],[-75.54430091099994,10.393011786000145],[-75.55113684799994,10.41941966400013],[-75.55797278599997,10.41941966400013],[-75.56094316299988,10.409857489000146],[-75.56419837099992,10.403713283000073],[-75.56940670499992,10.400132554000109],[-75.57848059799991,10.398342190000122],[-75.57469641799989,10.406887111000131],[-75.56940670499992,10.425279039000173],[-75.56550045499992,10.433050848000093],[-75.55931555899986,10.438950914000117],[-75.54710852799988,10.444240627000097],[-75.5405981109999,10.449855861000103],[-75.51211503799988,10.481675523000135],[-75.50275631399995,10.487738348000121],[-75.50796464799993,10.470851955000128],[-75.51866614499997,10.450262762000108],[-75.52220618399986,10.432928778000116],[-75.50649980399986,10.425604559000107],[-75.49327551999994,10.434637762000122],[-75.48713131399995,10.455877997000101],[-75.48631751199986,10.480943101000108],[-75.48912512899992,10.501369533000073],[-75.49327551999994,10.505682684000163],[-75.50035559799991,10.507391669000171],[-75.5102432929999,10.508205471000096],[-75.50963294199994,10.51410553600013],[-75.50413977799992,10.526841539000173],[-75.50275631399995,10.52928294500012],[-75.50438391799989,10.540716864000075],[-75.50446529899995,10.551581122000144],[-75.5081274079999,10.559637762000179],[-75.52049719999985,10.562811591000155],[-75.52452551999991,10.56708405200007],[-75.51960201699987,10.576483466000099],[-75.5098363919999,10.585842190000122],[-75.49962317599997,10.590073960000138],[-75.48802649599986,10.591620184000178],[-75.47549394399996,10.59601471600017],[-75.46385657499985,10.602728583000115],[-75.45494544199991,10.61123281500015],[-75.45482337099995,10.616400458000143],[-75.46251380099994,10.62645091400013],[-75.46182206899991,10.631048895000063],[-75.45864824099996,10.633002020000104],[-75.45099850199992,10.635891018000137],[-75.44810950399987,10.637884833000086],[-75.43956458199997,10.642035223000121],[-75.43089758999989,10.641343492000175],[-75.42418372299994,10.643296617000132],[-75.42145748599995,10.655259507000068],[-75.41771399599992,10.65570709800015],[-75.41002356699991,10.66461823100009],[-75.40367591099988,10.675034898000177],[-75.40379798099985,10.680121161000102],[-75.39757239499988,10.681870835000096],[-75.37303626199989,10.693101304000109],[-75.30728105399989,10.709540106000103],[-75.29735266799989,10.717352606000174],[-75.28746497299997,10.73346588700015],[-75.2796117829999,10.742743231000118],[-75.27375240799995,10.744330145000148],[-75.26878821499989,10.741400458000129],[-75.26305091099991,10.7398135440001],[-75.25829016799992,10.737127997000115],[-75.25633704299989,10.731024481000118],[-75.2584529289999,10.727199611000117],[-75.26203365799995,10.724188544000114],[-75.26276607999988,10.720282294000114],[-75.25633704299989,10.713609117000146],[-75.25633704299989,10.709336656000145],[-75.25633704299989,10.706773179000137],[-75.24950110599985,10.706773179000137],[-75.24376380099989,10.714748440000093],[-75.22223873599995,10.73468659100017],[-75.22638912699992,10.742824611000103],[-75.22866777299987,10.750067450000117],[-75.22972571499994,10.758042710000083],[-75.22964433499996,10.768255927000112],[-75.24518795499995,10.754950262000179],[-75.24950110599985,10.747748114000146],[-75.27000891799992,10.75910065300013],[-75.27554277299993,10.777777411000102],[-75.26740475199992,10.795314846000139],[-75.23167883999989,10.807318427000068],[-75.21568762899989,10.826605536000102],[-75.20482337099988,10.830959377000099],[-75.19343014199983,10.831854559000178],[-75.18224036399991,10.834540106000162],[-75.17137610599993,10.83881256700009],[-75.10798092399992,10.880438544000143],[-75.06989498599992,10.889553127000141],[-75.04954993399994,10.901190497000144],[-75.03595943899998,10.91669342700007],[-75.03722083199989,10.93268463700015],[-75.03282630099991,10.942694403000132],[-75.02774003799988,10.965521552000068],[-75.02358964799993,10.974310614000117],[-75.0141495429999,10.980414130000113],[-75.0003962879999,10.986395575000131],[-74.98197123199989,10.987428285000135],[-74.9628092799999,10.99489422600014],[-74.95001692999989,11.009460454000177],[-74.92571787299995,11.028578244000144],[-74.92357057499991,11.045671746000139],[-74.89550253899998,11.045590797000102],[-74.86151017299993,11.048833740000106],[-74.84533802499986,11.062129538000107],[-74.84699246499991,11.08048096700017],[-74.84822490999991,11.098001480000136],[-74.85033665099985,11.103430570000098],[-74.84437231499993,11.109669657000111],[-74.8193358639999,11.09791931700009],[-74.79675052199991,11.09036515700015],[-74.74317374699993,11.072652528000106],[-74.64542423399985,11.033087540000125],[-74.57229983599987,11.008623930000155],[-74.52295091599984,10.995924341000189],[-74.47126217399995,10.989691473000063],[-74.40347245999993,10.982855536000145],[-74.33726966099997,10.986965236000103],[-74.29782954799992,10.991499283000081],[-74.31240800699993,10.980943101000094],[-74.36180579299989,10.971665757000139],[-74.4581599599999,10.974310614000117],[-74.46983801999987,10.976060289000117],[-74.48078365799994,10.978949286000145],[-74.49156653599997,10.979478257000125],[-74.50283769399994,10.974310614000117],[-74.50576738199986,10.965765692000103],[-74.50450598899997,10.954169012000179],[-74.50503495999993,10.943915106000146],[-74.51341712099992,10.939601955000157],[-74.51744544199997,10.92666250200014],[-74.50633704299995,10.897772528000132],[-74.48176021999984,10.850816148000192],[-74.49714107999998,10.858954169000114],[-74.51170813699991,10.874457098000136],[-74.52501380099991,10.883449611000145],[-74.53636633999987,10.87189362200013],[-74.54336503799988,10.88141510600012],[-74.56720943899995,10.88141510600012],[-74.58136959499987,10.888088283000087],[-74.58922278599995,10.88467031500008],[-74.59699459499987,10.86782461100016],[-74.60289466099991,10.84756094000015],[-74.60521399599986,10.834051825000174],[-74.60635331899991,10.803656317000119],[-74.6046036449999,10.789007880000113],[-74.59845943899992,10.781927802000139],[-74.58462480399993,10.786851304000109],[-74.57872473899988,10.802557684000163],[-74.57420813699993,10.820135809000107],[-74.56427975199992,10.830959377000099],[-74.56432044199991,10.82050202000012],[-74.56090247299991,10.813421942000147],[-74.5540258449999,10.809556382000054],[-74.54381262899996,10.809230861000131],[-74.54552161399987,10.799383856000103],[-74.54381262899996,10.76203034100014],[-74.52855383999992,10.755275783000116],[-74.51231848899997,10.756008205000143],[-74.49966386599988,10.764715887000122],[-74.49543209499987,10.781927802000139],[-74.50674394399994,10.775783596000068],[-74.51561438699989,10.778225002000099],[-74.52131100199998,10.787746486000103],[-74.52330481699991,10.802964585000083],[-74.51927649599995,10.81606679900014],[-74.51146399599986,10.825100002000156],[-74.50617428299998,10.833482164000117],[-74.50963294199988,10.844549872000144],[-74.4896541009999,10.841050523000163],[-74.47712154899992,10.827582098000079],[-74.47057044199991,10.807847398000149],[-74.46568762899994,10.759670315000093],[-74.45661373599994,10.748032945000176],[-74.44147701699987,10.745835679000095],[-74.40208899599986,10.748032945000176],[-74.39509029899989,10.749497789000145],[-74.3855688139999,10.754584052000084],[-74.36656653599988,10.77277252800016],[-74.36217200399992,10.775702216000083],[-74.3600154289999,10.784816799000083],[-74.33092200399994,10.837144273000163],[-74.33006751199994,10.844305731000103],[-74.33092200399994,10.87189362200013],[-74.31965084499984,10.89370351800008],[-74.31786048099985,10.902004299000154],[-74.31460527299993,10.907171942000062],[-74.30060787699995,10.923488674000081],[-74.29735266799992,10.929348049000126],[-74.28990637899992,10.967474677000112],[-74.28042558499992,10.989732164000145],[-74.21812903599994,11.079087632000082],[-74.2149145169999,11.08698151200015],[-74.21784420499992,11.098822333000115],[-74.23180091099988,11.115708726000108],[-74.23595130099991,11.125148830000114],[-74.23570716099988,11.135972398000105],[-74.22996985599991,11.15302155200007],[-74.22850501199994,11.162746486000117],[-74.23037675699989,11.172674872000115],[-74.23932857999992,11.190741278000132],[-74.24217688699989,11.200262762000136],[-74.24034583199989,11.204250393000109],[-74.23070227799994,11.212836005000128],[-74.22850501199994,11.217678127000099],[-74.22964433499988,11.223537502000141],[-74.23224850199998,11.226304429000109],[-74.2347712879999,11.228013414000117],[-74.23595130099991,11.230658270000104],[-74.23363196499986,11.241156317000076],[-74.22813880099991,11.250881252000113],[-74.2149145169999,11.2691104190001],[-74.2096248039999,11.274847723000079],[-74.20506751199986,11.277655341000127],[-74.20177161399994,11.282049872000101],[-74.2005509109999,11.292710679000137],[-74.18748938699994,11.316961981000118],[-74.17186438699986,11.318101304000066],[-74.15900631399992,11.31513092700014],[-74.15184485599988,11.319728908000087],[-74.15339107999992,11.34365469000015],[-74.14590410099996,11.34365469000015],[-74.14533443899998,11.337225653000132],[-74.14366614499997,11.332953192000119],[-74.13906816299993,11.32371653900016],[-74.12848873599998,11.3378360050001],[-74.12608801999994,11.34365469000015],[-74.12271074099993,11.341538804000137],[-74.12149003799989,11.341498114000144],[-74.12071692599987,11.341009833000072],[-74.11864173099988,11.337388414000188],[-74.11241614499991,11.337388414000188],[-74.11241614499991,11.357896226000065],[-74.10244706899991,11.349920966000097],[-74.09487870999996,11.334418036000088],[-74.08385169199991,11.330633856000162],[-74.07412675699987,11.33539459800015],[-74.06956946499992,11.34577057500016],[-74.06541907499988,11.351752020000077],[-74.05719967399989,11.34365469000015],[-74.04971269399991,11.34365469000015],[-74.04792232999992,11.350816148000177],[-74.04401607999992,11.354641018000109],[-74.03799394399994,11.356390692000105],[-74.0298966139999,11.357896226000065],[-74.00462805899986,11.35529205900015],[-73.98525956899994,11.347805080000086],[-73.96849524599992,11.335923570000134],[-73.95103919199994,11.320298570000146],[-73.94359290299988,11.317368882000125],[-73.89777584499987,11.307684637000165],[-73.86538652299987,11.2890078800001],[-73.82603919199988,11.27676015800013],[-73.70514889199987,11.268255927000096],[-73.59239661399994,11.277044989000073],[-73.56558183499996,11.277085679000066],[-73.4024958979999,11.277248440000122],[-73.29238847599987,11.294012762000136],[-73.28258216099992,11.299546617000146],[-73.27619381399992,11.308050848000093],[-73.24575761599988,11.330877997000101],[-73.22004146999993,11.344875393000066],[-73.21495520699989,11.348944403000118],[-73.20742753799993,11.357896226000065],[-73.19566809799997,11.381577867000159],[-73.19066321499992,11.38519928600013],[-73.17902584499993,11.388617255000142],[-73.17027747299994,11.396877346000124],[-73.15623938699989,11.41624583500014],[-73.14525305899993,11.425523179000109],[-73.11188717399995,11.440415757000068],[-73.05483964799996,11.493963934000163],[-72.93399003799993,11.556789455000128],[-72.75967363199996,11.69708893400015],[-72.74132239499991,11.707953192000131],[-72.70470130099989,11.720363674000069],[-72.64391028599994,11.733303127000084],[-72.62832597599996,11.74042389500012],[-72.59797115799998,11.761948960000138],[-72.57746334499993,11.756048895000106],[-72.55626380099994,11.766587632000082],[-72.5343318349999,11.781642971000096],[-72.51162675699996,11.78925202000012],[-72.45205644399994,11.791327216000141],[-72.43346106699994,11.796087958000143],[-72.41759192599991,11.805121161000145],[-72.39199785099996,11.8261172550001],[-72.35960852799985,11.833970445000176],[-72.31615149599992,11.864976304000109],[-72.26305091099991,11.885972398000135],[-72.25055904899997,11.901678778000104],[-72.23216712099995,11.919745184000119],[-72.22801673099991,11.930161851000122],[-72.22630774599989,11.938950914000172],[-72.21373450399992,11.974839585000083],[-72.17796790299988,12.029852606000148],[-72.16787675699993,12.063381252000084],[-72.14549719999991,12.092515367000145],[-72.13866126199989,12.10455963700015],[-72.13711503799993,12.124090887000136],[-72.14122473899987,12.180324611000117],[-72.14541581899991,12.200832424000083],[-72.15111243399991,12.208482164000102],[-72.16051184799991,12.216538804000137],[-72.1692602199999,12.221828518000123],[-72.17275956899988,12.221258856000148],[-72.17052161399991,12.234279690000136],[-72.16197669199988,12.24286530200014],[-72.13866126199989,12.256048895000104],[-72.10753333199997,12.24502187700014],[-72.00487219999992,12.262884833000115],[-71.96963456899991,12.25511302300012],[-71.97354081899991,12.23655833500011],[-72.01512610599988,12.19399648600016],[-72.00015214799993,12.18622467700007],[-71.98485266799989,12.160956122000101],[-71.96727454299993,12.15302155200014],[-71.93761145699992,12.16644928600013],[-71.93252519399988,12.169745184000163],[-71.92992102799988,12.182766018000152],[-71.92324785099993,12.19407786700013],[-71.91441809799997,12.202785549000126],[-71.90526282499991,12.207668361000103],[-71.89232337099989,12.208319403000147],[-71.87877356699991,12.206773179000109],[-71.86803137899992,12.208238023000163],[-71.86363684799991,12.217840887000136],[-71.86766516799989,12.228094794000157],[-71.87486731699994,12.237127997000172],[-71.87832597599993,12.246039130000113],[-71.87108313699991,12.256048895000104],[-71.88121497299994,12.263861395000092],[-71.88658606699991,12.271307684000163],[-71.89273027299988,12.277777411000073],[-71.90526282499991,12.28270091400013],[-71.91832434799997,12.283921617000145],[-71.93065344999991,12.281887111000117],[-71.9407445949999,12.276922919000157],[-71.94684811099995,12.269029039000188],[-71.95303300699992,12.269029039000188],[-71.9605199859999,12.28270091400013],[-71.91478430899988,12.31362539300008],[-71.8779190749999,12.34479401200015],[-71.87547766799989,12.34955475500007],[-71.87124589799987,12.362616278000132],[-71.86742102799985,12.365301825000117],[-71.84943600199992,12.364325262000136],[-71.84439042899987,12.365301825000117],[-71.82909094999991,12.376206773000177],[-71.82091223899991,12.377875067000105],[-71.80907141799986,12.372137762000136],[-71.82681230399996,12.363348700000158],[-71.84007727799988,12.351711330000157],[-71.84312903599997,12.33808014500012],[-71.83014889199987,12.32367584800015],[-71.82286536399997,12.319810289000145],[-71.81769771999987,12.319281317000074],[-71.80284583199989,12.32367584800015],[-71.80182857999992,12.32640208500011],[-71.80296790299988,12.3312442080001],[-71.80321204299992,12.335882880000128],[-71.79942786399987,12.337958075000145],[-71.78538977799994,12.337144273000135],[-71.78172766799989,12.337958075000145],[-71.76329505099994,12.347601630000113],[-71.75108801999997,12.356187242000118],[-71.7440486319999,12.367621161000088],[-71.74079342399995,12.385728257000096],[-71.74339758999986,12.38719310100005],[-71.74868730399993,12.387844143000095],[-71.75182044199991,12.390814520000104],[-71.74819902299993,12.399400132000123],[-71.7415258449999,12.405747789000145],[-71.73253333199997,12.410223700000117],[-71.72276770699992,12.412787177000126],[-71.71344967399996,12.413723049000112],[-71.71983801999991,12.395982164000117],[-71.71377519399991,12.387030341000083],[-71.70421301999991,12.379217841000099],[-71.69981848899994,12.365301825000117],[-71.69359290299988,12.365301825000117],[-71.69098873599998,12.368963934000163],[-71.68708248599998,12.375921942000147],[-71.68545488199996,12.382717190000093],[-71.68984941299992,12.385728257000096],[-71.69676673099994,12.388128973000136],[-71.69163977799994,12.393377997000115],[-71.68297278599992,12.398138739000117],[-71.67931067599989,12.399400132000123],[-71.66759192599989,12.405747789000145],[-71.65379798099988,12.41006094000015],[-71.64073645699992,12.4159610050001],[-71.63093014199988,12.42739492400014],[-71.6433813139999,12.425970770000076],[-71.65387936099995,12.421210028000175],[-71.66234290299991,12.41608307500016],[-71.66877193899992,12.413723049000112],[-71.67910722599993,12.416978257000068],[-71.67731686099995,12.424790757000139],[-71.66869055899994,12.433742580000086],[-71.65880286399992,12.440375067000131],[-71.67007402299993,12.440415757000125],[-71.6800837879999,12.438381252000097],[-71.68809973899994,12.434068101000108],[-71.69359290299988,12.42739492400014],[-71.69188391799989,12.443426825000131],[-71.69025631399995,12.449164130000113],[-71.6861466139999,12.454657294000128],[-71.69928951699987,12.446275132000082],[-71.72569739499994,12.42348867400014],[-71.7345271479999,12.413723049000112],[-71.74079342399995,12.419907945000176],[-71.73053951699993,12.438055731000176],[-71.71572831899996,12.453517971000096],[-71.69725501199994,12.464300848000105],[-71.67560787699995,12.468329169000171],[-71.65615800699993,12.46531810100008]]],[[[-81.70474199099995,12.504461981000105],[-81.71739661399992,12.50242747600008],[-81.72370357999996,12.511542059000163],[-81.71149654899989,12.52293528900013],[-81.71979732999998,12.543158270000148],[-81.71694902299993,12.563218492000118],[-81.7063695949999,12.580308335000069],[-81.69102942599994,12.591253973000121],[-81.68639075399992,12.58006419500012],[-81.70474199099995,12.504461981000105]]],[[[-81.3653458319999,13.323879299000081],[-81.38263912699989,13.319159247000158],[-81.3861384759999,13.341457424000112],[-81.37873287699992,13.362697658000101],[-81.3653458319999,13.37396881700009],[-81.35138912699992,13.366197007000082],[-81.34630286399991,13.348700262000136],[-81.35216223899994,13.334173895000092],[-81.3653458319999,13.323879299000081]]],[[[-80.08991451699987,13.578355210000081],[-80.08991451699987,13.577704169000128],[-80.08934485599991,13.577866929000095],[-80.08942623599998,13.576849677000125],[-80.09040279899993,13.576605536000088],[-80.09040279899993,13.577297268000123],[-80.09089107999995,13.577093817000076],[-80.09089107999995,13.57802969000015],[-80.08991451699987,13.578355210000081]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Falkland Islands","adm0_a3":"FLK","geou_dif":0,"geounit":"Falkland Islands","gu_a3":"FLK","su_dif":0,"subunit":"Falkland Islands","su_a3":"FLK","brk_diff":1,"name":"Falkland Is.","name_long":"Falkland Islands","brk_a3":"B12","brk_name":"Falkland Is.","brk_group":null,"abbrev":"Flk. Is.","postal":"FK","formal_en":"Falkland Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":"Admin. by U.K.; Claimed by Argentina","name_sort":"Falkland Islands","name_alt":"Islas Malvinas","mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":3140,"gdp_md_est":105.1,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"FK","iso_a2":"FK","iso_a3":"FLK","iso_n3":"238","un_a3":"238","wb_a2":"-99","wb_a3":"-99","woe_id":23424814,"woe_id_eh":23424814,"woe_note":"Exact WOE match as country","adm0_a3_is":"FLK","adm0_a3_us":"FLK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":12,"long_len":16,"abbrev_len":8,"tiny":-99,"homepart":-99,"filename":"FLK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.74249485099995,-52.357972579999895],[-59.720248753999954,-52.367199659999876],[-59.68117300499994,-52.36386960699995],[-59.65409245299991,-52.35540539899985],[-59.641989457999934,-52.36779029999989],[-59.667308905999896,-52.379366408999985],[-59.687520661999876,-52.391940769999884],[-59.695821882999915,-52.406522725999906],[-59.723177084999946,-52.398368277999865],[-59.74544368599992,-52.38913602599982],[-59.76090801299994,-52.378829878999824],[-59.78638989599989,-52.38103391899993],[-59.798459005999916,-52.36863427499983],[-59.82069379599994,-52.358356531999874],[-59.790304715999895,-52.34264170899983],[-59.764871664999895,-52.33836264199989],[-59.76842776699988,-52.326960799999924],[-59.75168766799993,-52.30922812499989],[-59.726288671999924,-52.303902329999865],[-59.69232088999987,-52.30371251899988],[-59.688744570999916,-52.31511136199987],[-59.712467479999866,-52.3193991319999],[-59.71226365299989,-52.33289450899998],[-59.730790202999884,-52.344414800999985],[-59.74249485099995,-52.357972579999895]]],[[[-59.78180904899994,-52.13876718499999],[-59.765858527999946,-52.1664364559999],[-59.716542120999854,-52.16301848799989],[-59.695179816999904,-52.16627369599993],[-59.680165167999895,-52.17945728999989],[-59.68480383999988,-52.18425872199997],[-59.68887285099996,-52.191094658999894],[-59.692250128999966,-52.19915129999992],[-59.69444739499997,-52.20810312299995],[-59.67686926999993,-52.21559010199992],[-59.67918860599991,-52.229261976999865],[-59.693267381999924,-52.24244557099981],[-59.71125240799998,-52.24830494599995],[-59.71971594999991,-52.24968840899993],[-59.72996985599986,-52.25335051899989],[-59.73859615799995,-52.25888437299999],[-59.746693488999874,-52.27402109199999],[-59.75601152299993,-52.27361419099998],[-59.76423092399992,-52.266371351999965],[-59.76500403599994,-52.254327080999865],[-59.76549231699991,-52.252699476999844],[-59.766346808999906,-52.25123463299997],[-59.767567511999935,-52.249769789999824],[-59.76952063699988,-52.24830494599995],[-59.7586970689999,-52.24081796699998],[-59.749501105999904,-52.22779713299981],[-59.744984503999966,-52.21152109199987],[-59.74840247299988,-52.193780205999964],[-59.76097571499989,-52.180922132999854],[-59.77700761599996,-52.17449309699993],[-59.791005011999914,-52.16668059699994],[-59.79686438699985,-52.14950937299991],[-59.79214433499996,-52.13054778399999],[-59.78180904899994,-52.13876718499999]]],[[[-58.44399980399995,-52.00497812299996],[-58.43854732999992,-52.00554778399992],[-58.42951412699989,-52.004652601999936],[-58.423817511999914,-52.000095309999985],[-58.42511959499993,-51.99334075299986],[-58.42080644399991,-51.992364190999886],[-58.41559811099992,-51.99407317499989],[-58.402211066999904,-52.00212981599992],[-58.402007615999956,-52.003513278999904],[-58.40648352799994,-52.00505950299994],[-58.407826300999915,-52.01213958099991],[-58.41079667899992,-52.02019622199994],[-58.42247473899994,-52.02044036299998],[-58.44127356699988,-52.01539478999985],[-58.45026607999989,-52.015557549999826],[-58.45026607999989,-52.01970794099994],[-58.444203253999916,-52.02955494599997],[-58.4489639959999,-52.03378671699989],[-58.46007239499993,-52.03289153399999],[-58.46125240799995,-52.035577080999886],[-58.45075436099999,-52.03997161299987],[-58.4398494129999,-52.036879164999974],[-58.43130449099988,-52.03085702899997],[-58.42951412699989,-52.03297291499989],[-58.4341934889999,-52.04208749799988],[-58.43643144399991,-52.05169036299995],[-58.434722459999904,-52.06096770599991],[-58.42617753799987,-52.07252369599984],[-58.42707271999988,-52.07838307099996],[-58.43004309799988,-52.0826148419999],[-58.429351365999935,-52.088799737999864],[-58.42275956899996,-52.096368096999825],[-58.427601691999946,-52.100681247999916],[-58.44831295499994,-52.09832122199987],[-58.45616614499994,-52.09303150799989],[-58.4489639959999,-52.087579033999944],[-58.44835364499994,-52.08074309699983],[-58.454009568999936,-52.080661716999856],[-58.46475175699994,-52.08294036299992],[-58.48058020699989,-52.077732028999925],[-58.494984503999945,-52.070977471999974],[-58.51797441299993,-52.06365325299998],[-58.520415818999965,-52.058526299999876],[-58.52074133999989,-52.049737237999906],[-58.52562415299985,-52.041680596999875],[-58.5384008449999,-52.03427499799989],[-58.54674231699997,-52.0255673159999],[-58.53962154899992,-52.01897551899992],[-58.52733313699986,-52.01344166499982],[-58.513335740999906,-52.0087216129999],[-58.49885006399995,-52.00628020599996],[-58.48892167899996,-52.00212981599992],[-58.479644334999904,-52.000909112999906],[-58.47695878799993,-51.999607029],[-58.484120245999854,-51.995049737999956],[-58.48058020699989,-51.99228281],[-58.465646938999924,-51.99277109199989],[-58.45396887899994,-51.995782158999894],[-58.44823157499987,-52.00058359199988],[-58.44399980399995,-52.00497812299996]]],[[[-59.6739802729999,-51.97039153399987],[-59.67170162699992,-51.980564059999914],[-59.68028723899994,-51.98772551899995],[-59.690174933999856,-51.989922783999944],[-59.69587154899994,-51.98870208099993],[-59.69762122299994,-51.98577239399991],[-59.70006262899997,-51.982517184999956],[-59.703765428999894,-51.97966887799992],[-59.70885169199993,-51.97942473799997],[-59.71483313699986,-51.98015715899991],[-59.71890214799989,-51.97616952900002],[-59.71300208199998,-51.96396249799995],[-59.714914516999926,-51.956312757999925],[-59.71129309799997,-51.94589609199993],[-59.69888261599994,-51.93840911299996],[-59.68871008999989,-51.940606377999956],[-59.68830318899998,-51.94719817499993],[-59.69163977799991,-51.95533619599995],[-59.68635006399992,-51.96282317499992],[-59.67992102799993,-51.96559010199997],[-59.6739802729999,-51.97039153399987]]],[[[-61.23497473899994,-51.83131275799986],[-61.23497473899994,-51.83749765400001],[-61.22565670499992,-51.84091562299992],[-61.21556555899994,-51.8418921849999],[-61.20494544199991,-51.8405901019999],[-61.19399980399993,-51.83749765400001],[-61.217518683999884,-51.86207447699984],[-61.25226803299995,-51.86199309699986],[-61.2888077459999,-51.846368096999875],[-61.318186001999884,-51.82447682099993],[-61.313303188999924,-51.82138437299986],[-61.30833899599989,-51.81926848799985],[-61.297678188999924,-51.817071221999946],[-61.2887263659999,-51.81975676899984],[-61.26732337099986,-51.82366301899992],[-61.25064042899992,-51.8337541649998],[-61.246083136999886,-51.82968515400002],[-61.24242102799993,-51.817071221999946],[-61.23916581899988,-51.81218840899997],[-61.23721269399993,-51.80535247199986],[-61.23289954299991,-51.79908619599991],[-61.22227942599988,-51.79656340899999],[-61.2135310539999,-51.79794687299988],[-61.20616614499991,-51.80193450299995],[-61.19969641799991,-51.808526299999926],[-61.19399980399993,-51.817071221999946],[-61.2049861319999,-51.81926848799985],[-61.23497473899994,-51.83131275799986]]],[[[-60.87930253799996,-51.85857512799994],[-60.88565019399991,-51.870375257999825],[-60.90729732999998,-51.89959075299994],[-60.86571204299991,-51.89959075299994],[-60.87360592399997,-51.90878671700001],[-60.88060462099987,-51.92701588299982],[-60.886789516999926,-51.93434010199982],[-60.900786912999905,-51.940606377999956],[-60.94762122299994,-51.9473609349999],[-60.97642981699988,-51.953383070999905],[-60.99669348899991,-51.95273202899986],[-61.043812628999895,-51.940606377999956],[-61.03954016799988,-51.93059661299997],[-61.03697669199997,-51.926934502999835],[-61.051340298999946,-51.926690362999885],[-61.0576065749999,-51.92034270599986],[-61.06053626199991,-51.91220468500002],[-61.06493079299992,-51.906426690999965],[-61.07481848899991,-51.90390390399986],[-61.09593665299994,-51.90252044099988],[-61.10586503799993,-51.89959075299994],[-61.10948645699989,-51.89714934699992],[-61.11180579299986,-51.89462656],[-61.11461341099991,-51.892754815999844],[-61.11953691299996,-51.892754815999844],[-61.11180579299986,-51.87078215899983],[-61.11864173099988,-51.856540622999916],[-61.13434811099992,-51.84832122199991],[-61.153065558999906,-51.84490325299999],[-61.13565019399993,-51.831719658999866],[-61.12189693899992,-51.825860283999916],[-61.10594641799991,-51.82431405999988],[-61.065256313999924,-51.824802341999956],[-61.059478318999965,-51.82390715899987],[-61.047230597999906,-51.80706145599987],[-61.02839107999995,-51.788506768999866],[-61.01667232999998,-51.78118254999986],[-61.002268032999886,-51.77662525799991],[-60.99767005099997,-51.77605559699994],[-60.98688717399994,-51.77605559699994],[-60.98232988199993,-51.77662525799991],[-60.97459876199991,-51.78004322699983],[-60.97183183499994,-51.78386809699993],[-60.97093665299985,-51.787286065999844],[-60.968658006999874,-51.78972747199988],[-60.94839433499987,-51.796075128],[-60.93980872299994,-51.80339934699982],[-60.94420325399994,-51.81389739399989],[-60.96312415299988,-51.82390715899987],[-61.012196417999924,-51.841566664999974],[-61.030181443999936,-51.85857512799994],[-61.032622850999864,-51.86687590899992],[-61.02745520699997,-51.86923593499997],[-60.95494544199994,-51.85377369599986],[-60.92454993399988,-51.836521091999856],[-60.904855923999946,-51.82968515400002],[-60.88853919199991,-51.81926848799985],[-60.87930253799996,-51.79656340899999],[-60.88365637899994,-51.78826262799982],[-60.89329993399991,-51.78508879999995],[-60.897938605999855,-51.78085702900001],[-60.886789516999926,-51.76921965899992],[-60.87401282499988,-51.76189544099983],[-60.862863735999944,-51.76091887799994],[-60.85505123599998,-51.76669687299991],[-60.852040167999895,-51.77988046699986],[-60.85391191299993,-51.78875090899999],[-60.85855058499997,-51.79892343499986],[-60.86432857999991,-51.80803801899993],[-60.86937415299985,-51.81389739399989],[-60.87498938699985,-51.82301197699988],[-60.87710527299986,-51.84758879999989],[-60.87930253799996,-51.85857512799994]]],[[[-61.19399980399993,-51.693536065999936],[-61.21117102799985,-51.699883721999875],[-61.25047766799986,-51.698337498],[-61.26667232999991,-51.70403411299982],[-61.274322068999936,-51.714043877999984],[-61.27733313699985,-51.7256812479999],[-61.277211066999875,-51.75554778399998],[-61.28954016799992,-51.75253671699998],[-61.302113410999915,-51.747653904],[-61.312408006999924,-51.73992278399999],[-61.318186001999884,-51.72820403399991],[-61.31200110599991,-51.70826588299984],[-61.304351365999906,-51.69491952899992],[-61.291818813999896,-51.68621184699993],[-61.27037512899994,-51.680433851999965],[-61.248850063999924,-51.68010833099994],[-61.212961391999954,-51.690850518999866],[-61.19399980399993,-51.693536065999936]]],[[[-59.36485755099994,-51.35491301899999],[-59.35732988199987,-51.3614234349999],[-59.255970831999946,-51.38738372199998],[-59.229074673999946,-51.39910247199988],[-59.21401933499993,-51.41350676899985],[-59.25690670499991,-51.412041924999976],[-59.27448482999995,-51.4171688779999],[-59.282866990999906,-51.432793877999885],[-59.27916419199996,-51.44784921699989],[-59.26634680899994,-51.44841887799987],[-59.24986731699994,-51.44491952899997],[-59.23517818899995,-51.44703541499989],[-59.26183020699989,-51.45696379999989],[-59.308216925999936,-51.49000416499994],[-59.33136959499989,-51.50172291499984],[-59.33800208199994,-51.49065520599989],[-59.348459438999924,-51.48707447699982],[-59.36058508999992,-51.48919036299993],[-59.372303839999915,-51.49488697699982],[-59.372303839999915,-51.50172291499984],[-59.36864173099989,-51.507012627999906],[-59.369862433999884,-51.51287200299985],[-59.37852942599997,-51.52898528399982],[-59.37140865799992,-51.52629973799985],[-59.350575324999845,-51.522719007999875],[-59.350575324999845,-51.52898528399982],[-59.38223222599993,-51.556898695999955],[-59.385812954999885,-51.563246351999894],[-59.389068162999926,-51.590997002999956],[-59.396148240999906,-51.5973446589999],[-59.40851803299992,-51.60182057099986],[-59.43317623599992,-51.62135182099994],[-59.44737708199994,-51.625176690999865],[-59.45860755099994,-51.62118905999988],[-59.46410071499988,-51.61248137799989],[-59.46450761599988,-51.60165781],[-59.46043860599992,-51.591078382999946],[-59.49156653599991,-51.61443450299994],[-59.50861568899995,-51.62314218499993],[-59.52253170499995,-51.61834075299985],[-59.5771378249999,-51.65252044099993],[-59.54942786399994,-51.65113697699986],[-59.55357825399997,-51.662041924999926],[-59.58800208199988,-51.69011809699984],[-59.632394985999916,-51.74130624799988],[-59.65953528599994,-51.76165129999997],[-59.725656704999956,-51.79924895599988],[-59.83136959499987,-51.894952080999836],[-59.85147050699993,-51.92066822699988],[-59.86095130099994,-51.936211846999875],[-59.87173417899992,-51.948988539999824],[-59.88703365799989,-51.95777760199998],[-59.9310603509999,-51.96502044099982],[-59.99486243399994,-51.99456145599988],[-60.00251217399997,-51.96526458099995],[-60.00572669199994,-51.96103281000002],[-60.030913865999906,-51.95867278399997],[-60.044300910999915,-51.95566171699996],[-60.05011959499986,-51.95110442499984],[-60.05435136599988,-51.94019947699994],[-60.06419837099988,-51.940606377999956],[-60.07461503799988,-51.94597747199992],[-60.08088131399993,-51.95110442499984],[-60.0831599599999,-51.96152109199992],[-60.07127844999985,-51.98202890399997],[-60.07404537699992,-51.991469007999974],[-60.09410559799996,-51.998711846999825],[-60.18040930899992,-51.99456145599988],[-60.20360266799994,-52.002699476999894],[-60.2154434889999,-52.00359465899989],[-60.221424933999906,-51.99456145599988],[-60.2180883449999,-51.98853932099996],[-60.200103318999936,-51.97665781],[-60.194081183999934,-51.96843840899983],[-60.25987708199992,-51.98544687299989],[-60.27603105399987,-51.99456145599988],[-60.28652910099993,-52.01279062299995],[-60.2806697259999,-52.02809010199991],[-60.269195115999956,-52.044854424999926],[-60.26301021999989,-52.06715260199988],[-60.26813717399989,-52.08212656],[-60.28034420499998,-52.094496351999936],[-60.36042232999995,-52.15357838299997],[-60.3722224599999,-52.15960051899997],[-60.39427649599991,-52.15878671699996],[-60.42536373599992,-52.14478932099981],[-60.44733639199992,-52.14592864399985],[-60.44322669199988,-52.147393487999906],[-60.44188391799989,-52.15260182099981],[-60.44253495999993,-52.15886809699994],[-60.44424394399994,-52.16301848799989],[-60.45103919199996,-52.16562265399989],[-60.45791581899988,-52.16155364399984],[-60.464751756999895,-52.15585702899985],[-60.4814347,-52.14853280999985],[-60.50011145699992,-52.12981536299988],[-60.505970831999946,-52.12558359199995],[-60.517567511999886,-52.122735284],[-60.53709876199986,-52.11199309699999],[-60.55036373599998,-52.111911717],[-60.55654863199995,-52.116143487999935],[-60.55833899599995,-52.122979424999855],[-60.55528723899993,-52.129489841999856],[-60.52839107999998,-52.137872003],[-60.513172980999876,-52.151625257999925],[-60.50218665299994,-52.16936614399983],[-60.495757615999935,-52.18694426899986],[-60.53661048099988,-52.217054945999976],[-60.59276282499988,-52.236748955999836],[-60.64671790299988,-52.23308684699997],[-60.68130449099988,-52.193780205999964],[-60.668324347999885,-52.194594007999974],[-60.65851803299994,-52.19687265399986],[-60.64956620999993,-52.197523695999905],[-60.63906816299996,-52.193780205999964],[-60.6578669909999,-52.18482838299994],[-60.6825251939999,-52.167575778999925],[-60.70449785099993,-52.14812590899984],[-60.714833136999914,-52.132419528999876],[-60.707264777999875,-52.12932708099997],[-60.69399980399992,-52.11956145599994],[-60.68858801999992,-52.10914478999995],[-60.704253709999875,-52.10442473799986],[-60.80492102799989,-52.101739190999965],[-60.81786048099988,-52.10442473799986],[-60.82607988199987,-52.11174895599995],[-60.82013912699995,-52.11598072699988],[-60.80711829299986,-52.11809661299998],[-60.79430091099993,-52.11874765399993],[-60.774077928999894,-52.12476978999994],[-60.751454230999855,-52.13974374799987],[-60.73224850199989,-52.15789153399988],[-60.72227942599991,-52.173923434999864],[-60.78034420499995,-52.173923434999864],[-60.79678300699995,-52.1720516909999],[-60.805043097999935,-52.1672502579999],[-60.81021074099993,-52.160414320999806],[-60.85545813699988,-52.12216562299985],[-60.86729895699994,-52.11516692499987],[-60.88023841099993,-52.11386484199987],[-60.893788214999915,-52.11419036299989],[-60.90729732999998,-52.111911717],[-60.924916144999905,-52.10133228999996],[-60.957590298999946,-52.07301197699982],[-60.97557532499988,-52.06406015399998],[-61.02159583199992,-52.0575497379999],[-61.03693600199997,-52.04656340899994],[-61.030181443999936,-52.02255624799999],[-61.019764777999846,-52.01246510199993],[-60.994699673999946,-52.01588307099985],[-60.940785285999944,-52.029961846999974],[-60.897206183999906,-52.03191497199984],[-60.886789516999926,-52.03622812299993],[-60.88239498599996,-52.045993747999965],[-60.88288326699992,-52.05730559699986],[-60.8783259759999,-52.06519947699984],[-60.85887610599988,-52.06406015399998],[-60.87315833199988,-52.029961846999974],[-60.805490688999946,-52.024346612999885],[-60.742176886999886,-52.008884372999866],[-60.742176886999886,-52.00204843499985],[-60.77399654899992,-51.99081796699985],[-60.80101477799988,-51.98772551899995],[-60.82437089799986,-51.97991301899996],[-60.845204230999855,-51.95476653399989],[-60.75841223899993,-51.95427825299989],[-60.71296139199996,-51.961358330999865],[-60.69440670499995,-51.98211028399995],[-60.68757076699992,-51.98211028399995],[-60.683664516999926,-51.97478606599985],[-60.67951412699989,-51.97014739399992],[-60.66706295499998,-51.96103281000002],[-60.665394660999965,-51.97136809699993],[-60.660267706999946,-51.98015715899991],[-60.65245520699994,-51.98381926899986],[-60.64256751199986,-51.97869231599994],[-60.63219153599993,-51.971774997999944],[-60.62254798099988,-51.971286716999956],[-60.61192786399994,-51.97372812299998],[-60.58405514199998,-51.97665781],[-60.573801235999944,-51.97991301899996],[-60.55719967399992,-51.98837655999991],[-60.540638800999936,-51.99968840899998],[-60.53205318899992,-51.99993254999983],[-60.523060675999915,-51.98837655999991],[-60.53673255099994,-51.98211028399995],[-60.53673255099994,-51.975274346999846],[-60.51130123599992,-51.97568124799985],[-60.48302161399996,-51.97226327899993],[-60.45604407499991,-51.965101820999806],[-60.434315558999934,-51.95476653399989],[-60.40843665299994,-51.92522551899983],[-60.4029434889999,-51.92066822699988],[-60.399891730999904,-51.916599217],[-60.405506964999915,-51.90878671700001],[-60.41665605399993,-51.90422942499988],[-60.43057206899991,-51.90984465899997],[-60.466786261999914,-51.93043385199991],[-60.51471920499993,-51.941827080999964],[-60.56432044199993,-51.94117603999984],[-60.60558020699991,-51.926934502999835],[-60.52619381399998,-51.93027109199995],[-60.505970831999946,-51.92376067499995],[-60.49864661399994,-51.92050546699991],[-60.479237433999856,-51.915215752999934],[-60.475249803999866,-51.90984465899997],[-60.472035285999915,-51.900811455999964],[-60.46442623599998,-51.891778252999956],[-60.45518958199992,-51.884047132999946],[-60.44733639199992,-51.8790829409999],[-60.45665442599997,-51.86728280999993],[-60.45563717399992,-51.859470309999935],[-60.450428839999915,-51.85295989399985],[-60.44733639199992,-51.84490325299999],[-60.44855709499984,-51.835381768999824],[-60.453684048999946,-51.81365325299985],[-60.454741990999906,-51.7999813779999],[-60.444488084999904,-51.78289153399986],[-60.420318162999884,-51.77044036299985],[-60.392893032999915,-51.76531340899984],[-60.3722224599999,-51.76921965899992],[-60.37995357999992,-51.777601820999976],[-60.38833574099988,-51.7849260399998],[-60.40636145699991,-51.79656340899999],[-60.375721808999906,-51.79192473799996],[-60.36310787699992,-51.79192473799996],[-60.35798092399991,-51.7999813779999],[-60.36070716099987,-51.809340101999936],[-60.37970943899998,-51.83749765400001],[-60.367990688999896,-51.84221770599992],[-60.33873450399995,-51.85857512799994],[-60.3372289699999,-51.842380466999984],[-60.329335089999944,-51.83001067499986],[-60.31582597599987,-51.823418877999885],[-60.2971085279999,-51.82447682099993],[-60.30899003799993,-51.80974700299994],[-60.3126521479999,-51.7982723939999],[-60.31078040299993,-51.76580169099991],[-60.30699622299991,-51.75644296699988],[-60.29775956899993,-51.75042083099988],[-60.286366339999894,-51.74797942499985],[-60.27603105399987,-51.74871184699987],[-60.269439256999895,-51.75335051899999],[-60.26231848899993,-51.76930103999982],[-60.25617428299994,-51.77662525799991],[-60.24933834499988,-51.77556731599994],[-60.24022376199986,-51.77076588299995],[-60.232289191999904,-51.76970794099982],[-60.22887122299988,-51.77988046699986],[-60.2245173819999,-51.78248463299986],[-60.21471106699997,-51.77849700299996],[-60.18407141799985,-51.76116301899998],[-60.181223110999916,-51.74277109199994],[-60.18236243399985,-51.72185637799997],[-60.18040930899992,-51.70720794099988],[-60.20718339799989,-51.70134856599993],[-60.2318416009999,-51.704685153999954],[-60.255686001999976,-51.711114190999965],[-60.27977454299992,-51.71461353999987],[-60.33844967399992,-51.709161065999915],[-60.36400305899991,-51.71412525799996],[-60.35798092399991,-51.73503997199993],[-60.365956183999856,-51.74651458099997],[-60.37328040299988,-51.74651458099997],[-60.38170325399991,-51.74236419099993],[-60.392689581999974,-51.74130624799988],[-60.43757076699998,-51.75953541499996],[-60.45103919199996,-51.762383722],[-60.49608313699986,-51.762383722],[-60.5101619129999,-51.7658830709999],[-60.51773027299993,-51.774102471999896],[-60.523060675999915,-51.783135674999905],[-60.53050696499989,-51.78972747199988],[-60.55064856699992,-51.789808851999865],[-60.56090247299994,-51.77499765399989],[-60.570383266999954,-51.757256768999895],[-60.58824622299991,-51.74871184699987],[-60.61017818899995,-51.74277109199994],[-60.62897701699989,-51.72747161299998],[-60.640126105999904,-51.70728932099986],[-60.63906816299996,-51.68670012799992],[-60.62498938699991,-51.66961028399988],[-60.60887610599985,-51.67148202899994],[-60.58999589799992,-51.680922132999946],[-60.49010169199994,-51.700372002999856],[-60.46157792899993,-51.700941664999924],[-60.43797766799988,-51.69426848799996],[-60.39199785099993,-51.67164478999982],[-60.368804490999906,-51.666761976999844],[-60.28994706899994,-51.67180754999996],[-60.219593878999945,-51.65422942499993],[-60.198841925999936,-51.65642669099984],[-60.15697180899991,-51.682793877999835],[-60.13312740799995,-51.68987395599998],[-60.07738196499995,-51.693536065999936],[-60.09194902299987,-51.67498137799984],[-60.11603756399989,-51.664727472],[-60.14386959499986,-51.66033294099992],[-60.169911261999935,-51.659356377999856],[-60.18980872299991,-51.653252862999956],[-60.24876868399988,-51.611586195999905],[-60.25938880099991,-51.60767994599982],[-60.27961178299994,-51.60279713299985],[-60.29027258999989,-51.5973446589999],[-60.31761633999986,-51.5705705709999],[-60.34357662699995,-51.568780206],[-60.49038652299986,-51.52646249799999],[-60.50255286399993,-51.51913827899999],[-60.5130509109999,-51.49846770599988],[-60.515288865999906,-51.48650481599986],[-60.505970831999946,-51.48121510199988],[-60.44733639199992,-51.48121510199988],[-60.39924068899995,-51.48919036299993],[-60.38878333199998,-51.48447030999992],[-60.4029434889999,-51.46412525799984],[-60.42349199099993,-51.45061614399995],[-60.45010331899988,-51.44150155999987],[-60.47801673099994,-51.43572356599999],[-60.516102667999924,-51.432549737999935],[-60.543771938999924,-51.4340145809999],[-60.55719967399992,-51.432793877999885],[-60.58853105399995,-51.42148202899999],[-60.60216223899991,-51.41969166499982],[-60.61204993399991,-51.41741301899994],[-60.62319902299992,-51.41139088299993],[-60.63072669199988,-51.40357838299994],[-60.62950598899996,-51.395928643999824],[-60.625843878999916,-51.385023695999934],[-60.63097083199991,-51.37297942499983],[-60.645985480999855,-51.3514950499999],[-60.634673631999874,-51.35222747199992],[-60.62425696499989,-51.351657809999864],[-60.6146134109999,-51.349053643999866],[-60.60558020699991,-51.34400807099993],[-60.57266191299993,-51.35816822699986],[-60.46157792899993,-51.38567473799998],[-60.42674719999991,-51.39910247199988],[-60.324452277999875,-51.453301690999844],[-60.24290930899994,-51.47893645599999],[-60.153146938999924,-51.487481377999835],[-59.98863684799988,-51.467543226999936],[-60.0126846999999,-51.44988372199992],[-60.083607550999915,-51.44597747199984],[-60.07404537699992,-51.42327239399989],[-60.05308997299997,-51.40593840899999],[-60.029611782999886,-51.3925106749999],[-60.02403723899988,-51.37932708099995],[-60.0174861319999,-51.375176690999915],[-60.00572669199994,-51.38225676899988],[-60.00206458199997,-51.38836028399996],[-59.99486243399994,-51.41350676899985],[-59.934437628999916,-51.38176848799989],[-59.90147864499994,-51.37281666499987],[-59.871937628999895,-51.37883879999996],[-59.871937628999895,-51.38567473799998],[-59.877593553999866,-51.38884856599985],[-59.880441860999916,-51.392022393999916],[-59.882435675999936,-51.39560312299998],[-59.88560950399991,-51.39934661299992],[-59.79161536399988,-51.410577080999914],[-59.76207434799991,-51.41969166499982],[-59.777902798999946,-51.42457447699989],[-59.79478919199993,-51.426690362999985],[-59.830393032999886,-51.426690362999985],[-59.80182857999991,-51.44703541499989],[-59.74852454299985,-51.44703541499989],[-59.56037350199989,-51.41969166499982],[-59.54255123599992,-51.41513437299987],[-59.50885982999992,-51.39568450299996],[-59.488392706999946,-51.3925106749999],[-59.488392706999946,-51.39934661299992],[-59.55874589799986,-51.43132903399983],[-59.584584113999874,-51.4396298159999],[-59.53929602799988,-51.455743096999875],[-59.49132239499997,-51.456231377999856],[-59.392811652999875,-51.432793877999885],[-59.39964758999989,-51.423435153999854],[-59.41161048099991,-51.41480885199985],[-59.42536373599992,-51.40846119599991],[-59.43748938699994,-51.40601978999988],[-59.44395911399993,-51.4003231749999],[-59.44456946499989,-51.370863539999824],[-59.44737708199994,-51.358330987999906],[-59.43895423099988,-51.35898202899987],[-59.42162024599991,-51.357598565999886],[-59.413238084999925,-51.358330987999906],[-59.41510982999992,-51.35377369599996],[-59.417632615999935,-51.34246184699989],[-59.419504360999895,-51.33782317499995],[-59.40526282499988,-51.33766041499981],[-59.387074347999906,-51.34010182099984],[-59.371490037999905,-51.34563567499995],[-59.36485755099994,-51.35491301899999]]],[[[-59.71680840099987,-51.347017197999946],[-59.6893982999999,-51.35971971999989],[-59.68784807699989,-51.339458053999955],[-59.66564089699992,-51.3415119249998],[-59.66038378699989,-51.35748447099994],[-59.63810181699995,-51.36592891199991],[-59.60048060999986,-51.368977288999986],[-59.59694621499992,-51.380689702999895],[-59.625967287999934,-51.38507109599995],[-59.6634701599999,-51.39693560199983],[-59.69415073599993,-51.40769648899997],[-59.723186637999845,-51.40991809199984],[-59.75231041999984,-51.39828142999998],[-59.74899398399989,-51.38335371599995],[-59.72857578099987,-51.37263651799997],[-59.75250827499988,-51.36844336299986],[-59.79174030099991,-51.372807605],[-59.82252847299986,-51.36115211499983],[-59.829411414999875,-51.350506596],[-59.80212272799991,-51.34831624899987],[-59.773132268999944,-51.346115469999944],[-59.764718204999916,-51.32797103099995],[-59.744239089999915,-51.328977582999926],[-59.73052254899994,-51.33853136299993],[-59.71680840099987,-51.347017197999946]]],[[[-59.91803951699992,-51.33896249799999],[-59.940988735999916,-51.34449635199991],[-59.961333787999905,-51.34400807099993],[-59.98086503799988,-51.3363583309999],[-59.99819902299987,-51.32512786299989],[-60.01252193899995,-51.311455987999956],[-60.02281653599988,-51.2961565079999],[-59.975738084999875,-51.28687916499994],[-59.96031653599994,-51.286797783999866],[-59.94493567599988,-51.289483330999936],[-59.90587317599994,-51.303399346999925],[-59.89928137899994,-51.303643487999956],[-59.91380774599989,-51.30950286299991],[-59.9203181629999,-51.309991143999895],[-59.9203181629999,-51.31747812299987],[-59.90648352799991,-51.32919687299995],[-59.91803951699992,-51.33896249799999]]],[[[-60.20579993399992,-51.302911065999936],[-60.17829342399988,-51.30478280999991],[-60.153146938999924,-51.303643487999956],[-60.0991918609999,-51.295586846999925],[-60.074289516999954,-51.29998137799983],[-60.063710089999915,-51.320733330999914],[-60.05923417899993,-51.32488372199986],[-60.05150305899994,-51.33554452899989],[-60.04914303299997,-51.34644947699996],[-60.06065833199992,-51.3514950499999],[-60.09850012899994,-51.37883879999996],[-60.114165818999936,-51.40195077899992],[-60.11900794199991,-51.40601978999988],[-60.12938391799991,-51.405450128],[-60.1583552729999,-51.39511484199999],[-60.169911261999935,-51.3925106749999],[-60.24128170499993,-51.40113697699991],[-60.256092902999875,-51.39959075299987],[-60.274403449999845,-51.39446379999995],[-60.28868567599994,-51.3851864559999],[-60.29149329299989,-51.37167734200001],[-60.27745520699994,-51.35735442499985],[-60.25275631399995,-51.349053643999866],[-60.204660610999895,-51.34400807099993],[-60.19367428299992,-51.34840260199982],[-60.173451300999915,-51.36760833099987],[-60.16307532499991,-51.37200286299986],[-60.14830481699994,-51.37127044099983],[-60.13540605399993,-51.369073174999926],[-60.12344316299988,-51.364841404],[-60.11156165299994,-51.358330987999906],[-60.12970943899992,-51.34726327899997],[-60.18455969999985,-51.32756926899993],[-60.22297115799996,-51.319919528999904],[-60.26988684799988,-51.29827239399982],[-60.28351803299995,-51.289483330999936],[-60.29979407499988,-51.27499765399999],[-60.30089270699992,-51.26824309699987],[-60.29027258999989,-51.26213958099988],[-60.27391516799986,-51.26091887799986],[-60.26496334499984,-51.267347914999874],[-60.25914466099987,-51.277276299999876],[-60.252430792999945,-51.286309502999885],[-60.2318009109999,-51.297295830999936],[-60.20579993399992,-51.302911065999936]]],[[[-60.52110755099994,-51.315036716999835],[-60.527007615999906,-51.31658294099988],[-60.530181443999965,-51.31096770599987],[-60.531158006999924,-51.30535247199997],[-60.534413214999894,-51.300957940999886],[-60.54649817599988,-51.29802825299996],[-60.566070115999935,-51.29501718499987],[-60.58629309799997,-51.28460051899988],[-60.59666907499987,-51.26336028399989],[-60.582875128999945,-51.25497812299992],[-60.555246548999946,-51.26930103999992],[-60.54124915299991,-51.27988046699996],[-60.53343665299991,-51.283379815999865],[-60.520171678999866,-51.292738539999895],[-60.5165909499999,-51.30478280999991],[-60.52110755099994,-51.315036716999835]]],[[[-58.73350989499993,-51.32830169099996],[-58.71003170499998,-51.33098723799985],[-58.65908769399987,-51.33098723799985],[-58.64761308499993,-51.3341610659999],[-58.63760331899993,-51.33928801899983],[-58.62645423099991,-51.343438408999866],[-58.61139889199989,-51.34400807099993],[-58.61139889199989,-51.33782317499995],[-58.615142381999924,-51.32545338299983],[-58.59992428299995,-51.31462981599984],[-58.57652747299988,-51.30673593499995],[-58.48143469999988,-51.300957940999886],[-58.46393795499992,-51.306817315999844],[-58.447377081999974,-51.31519947699981],[-58.40660559799991,-51.32382577899999],[-58.38882402299993,-51.33440520599986],[-58.343617316999875,-51.36842213299988],[-58.33702551999991,-51.38225676899988],[-58.33336341099994,-51.40252044099998],[-58.32909094999985,-51.416273695999905],[-58.33381100199995,-51.42750416499982],[-58.35749264199995,-51.4396298159999],[-58.37702389199995,-51.445082289999846],[-58.402902798999946,-51.449395440999936],[-58.428334113999874,-51.45061614399995],[-58.446888800999886,-51.44703541499989],[-58.456695115999906,-51.43564218499992],[-58.473459438999924,-51.401625257999896],[-58.48786373599989,-51.3925106749999],[-58.50475012899989,-51.39527760199996],[-58.52074133999989,-51.406426690999886],[-58.549224412999905,-51.432793877999885],[-58.51545162699992,-51.433363539999945],[-58.50934811099992,-51.44687265400001],[-58.52196204299991,-51.49114348799996],[-58.50890051999994,-51.498223565999936],[-58.44546464799989,-51.47625090899992],[-58.42235266799985,-51.47779713299996],[-58.41795813699988,-51.48821379999986],[-58.41966712099989,-51.50090911299982],[-58.4235733709999,-51.51409270599987],[-58.425770636999886,-51.525974217],[-58.42467200399992,-51.543226820999834],[-58.42121334499992,-51.549411716999984],[-58.40591386599996,-51.54949309699996],[-58.402007615999956,-51.54794687299993],[-58.39500891799988,-51.53866952899988],[-58.38882402299993,-51.53655364399987],[-58.384673631999874,-51.53964609199995],[-58.37840735599993,-51.554457289999924],[-58.37486731699993,-51.56015390399999],[-58.36143958199994,-51.565687757999925],[-58.34561113199993,-51.56511809699995],[-58.33165442599994,-51.55934010199981],[-58.32396399599991,-51.54949309699996],[-58.30296790299988,-51.55730559699996],[-58.2903946609999,-51.56755950299998],[-58.28404700399997,-51.581638278999925],[-58.28237870999995,-51.60100676899986],[-58.27647864499992,-51.61451588299992],[-58.2623591789999,-51.63160572699996],[-58.24535071499991,-51.64641692499994],[-58.230865037999884,-51.65252044099993],[-58.21336829299991,-51.64609140399992],[-58.2215876939999,-51.631117445999976],[-58.247629360999895,-51.60475025799988],[-58.236927863999966,-51.59254322699982],[-58.21540279899994,-51.595310153999876],[-58.17251542899987,-51.611586195999905],[-58.17992102799988,-51.588067315999936],[-58.203968878999895,-51.57805754999987],[-58.22956295499998,-51.5718726539999],[-58.241444464999915,-51.56015390399999],[-58.23468990799989,-51.55282968499999],[-58.221424933999856,-51.54656340899986],[-58.2122289699999,-51.538506768999916],[-58.217193162999926,-51.525974217],[-58.230051235999944,-51.52157968500001],[-58.26060950399988,-51.530450127999885],[-58.27550208199994,-51.52898528399982],[-58.28547115799992,-51.521091403999854],[-58.286366339999915,-51.51344166499992],[-58.28530839799986,-51.50514088299984],[-58.289173956999974,-51.49488697699982],[-58.29393469999988,-51.489353122999894],[-58.30101477799993,-51.48308684699993],[-58.307484503999945,-51.48186614399992],[-58.31029212099988,-51.49114348799996],[-58.31436113199995,-51.50074635199995],[-58.32420813699988,-51.50603606599993],[-58.33653723899991,-51.50823333099992],[-58.3478083979999,-51.50847747199996],[-58.35936438699994,-51.50465260199986],[-58.35464433499993,-51.49578215899999],[-58.33702551999991,-51.48121510199988],[-58.29124915299991,-51.42253997199986],[-58.27896074099994,-51.41350676899985],[-58.26768958199994,-51.41033294099997],[-58.24087480399996,-51.39568450299996],[-58.227447068999965,-51.3925106749999],[-58.01789303299995,-51.38274504999986],[-57.962880011999886,-51.37184010199998],[-57.93293209499992,-51.37200286299986],[-57.90640214799987,-51.37664153399988],[-57.89525305899994,-51.38225676899988],[-57.88451087099992,-51.3925106749999],[-57.86758378799994,-51.43352629999991],[-57.86095130099989,-51.4396298159999],[-57.850412563999924,-51.44491952899997],[-57.819650844999835,-51.47779713299996],[-57.80907141799989,-51.484633070999976],[-57.79515540299991,-51.489678643999916],[-57.76781165299994,-51.49488697699982],[-57.77599036399993,-51.50481536299991],[-57.79515540299991,-51.512302341999884],[-57.80260169199988,-51.522719007999875],[-57.77708899599989,-51.52255624799991],[-57.769154425999915,-51.53167083099989],[-57.777943488999874,-51.54306405999995],[-57.80260169199988,-51.54949309699996],[-57.92723548099993,-51.53883228999994],[-58.01134192599997,-51.507256768999945],[-58.03209387899997,-51.504327080999836],[-58.04088294199993,-51.512302341999884],[-58.028553839999894,-51.53655364399987],[-58.08193925699993,-51.52239348799994],[-58.1451716789999,-51.54265715899995],[-58.12751217399988,-51.561130466999884],[-58.09382076699998,-51.57634856599986],[-58.056711391999976,-51.58684661299993],[-58.028553839999894,-51.591078382999946],[-57.97105872299991,-51.58220794099999],[-57.943104620999854,-51.593031507999804],[-57.84968014199998,-51.59905364399999],[-57.81232662699992,-51.60588958099992],[-57.78099524599988,-51.6193986959999],[-57.76781165299994,-51.64226653399999],[-57.78620357999998,-51.65504322699994],[-57.827748175999965,-51.66464609200001],[-57.898793097999906,-51.67302825299998],[-57.898793097999906,-51.680433851999965],[-57.83869381399992,-51.69410572699991],[-57.81623287699991,-51.693536065999936],[-57.77643795499995,-51.68466562299989],[-57.75690670499994,-51.68303801899987],[-57.7342830069999,-51.68670012799992],[-57.7342830069999,-51.693536065999936],[-57.762359178999894,-51.695000908999894],[-57.86384029899992,-51.72625090899987],[-57.88442949099993,-51.72869231599999],[-57.95230058499994,-51.72958749799998],[-57.96556555899988,-51.73259856599989],[-57.96642005099998,-51.740329685],[-57.97911536399993,-51.74749114399986],[-57.99242102799986,-51.75107187299992],[-58.14439856699988,-51.76230234200001],[-58.2220352859999,-51.754571221999825],[-58.26130123599992,-51.75554778399998],[-58.26130123599992,-51.762383722],[-58.24901282499988,-51.763929945999855],[-58.21410071499986,-51.77662525799991],[-58.19762122299997,-51.78036874799985],[-58.1451716789999,-51.78289153399986],[-58.1451716789999,-51.78972747199988],[-58.17320716099991,-51.795098565999844],[-58.23216712099988,-51.792738539999974],[-58.26130123599992,-51.79656340899999],[-58.33063717399988,-51.82382577899988],[-58.35749264199995,-51.82447682099993],[-58.33592688699985,-51.83098723799993],[-58.315337693999936,-51.83001067499986],[-58.253163214999915,-51.81113046700001],[-58.1861466139999,-51.81080494599981],[-58.19985917899996,-51.8220354149999],[-58.22496497299994,-51.83318450299991],[-58.25226803299992,-51.841566664999974],[-58.29503333199991,-51.84929778399989],[-58.37116451699989,-51.8790829409999],[-58.419056769999905,-51.892185153999954],[-58.511219855999876,-51.882989190999986],[-58.56289628799993,-51.885349216999856],[-58.5989477199999,-51.892754815999844],[-58.75780188699991,-51.89128997199997],[-58.78209387899991,-51.885349216999856],[-58.81615149599992,-51.86541106599995],[-58.86241614499991,-51.85458749799987],[-58.88467363199987,-51.84254322699995],[-58.90623938699988,-51.83513762799996],[-58.916371222999935,-51.827894789999846],[-58.921376105999876,-51.81943124799999],[-58.925038214999915,-51.80917734199997],[-58.93040930899988,-51.80055103999997],[-58.94029700399989,-51.79656340899999],[-58.952788865999906,-51.80242278399994],[-58.96373450399997,-51.816501559999885],[-58.97150631399995,-51.831719658999866],[-58.974436001999884,-51.841241143999945],[-58.969105597999906,-51.85377369599986],[-58.955962693999965,-51.86598072699993],[-58.93911699099996,-51.875420830999936],[-58.892567511999935,-51.88437265399997],[-58.85216223899988,-51.89755624799992],[-58.81550045499997,-51.91529713299992],[-58.796294725999935,-51.93434010199982],[-58.81041419199993,-51.951918226999844],[-58.78416907499994,-51.957126559999935],[-58.72740637899994,-51.9473609349999],[-58.69847571499986,-51.94850025799993],[-58.66071529899989,-51.955010674999926],[-58.632313605999876,-51.96795012799984],[-58.63182532499988,-51.98837655999991],[-58.60448157499991,-52.00204843499985],[-58.656483527999875,-52.02402109199986],[-58.67284094999987,-52.03622812299993],[-58.6611221999999,-52.04314544099993],[-58.65387936099997,-52.05217864399994],[-58.649281378999945,-52.06357187299999],[-58.64077714799989,-52.09775155999998],[-58.6412247389999,-52.10784270599986],[-58.64891516799991,-52.11142343499993],[-58.6659236319999,-52.111911717],[-58.67511959499986,-52.10711028399984],[-58.706288214999866,-52.070245049999954],[-58.71776282499991,-52.05974700299989],[-58.72940019399991,-52.051039320999905],[-58.743478969999835,-52.04509856599997],[-58.76183020699989,-52.04306405999986],[-58.770741339999944,-52.04094817499985],[-58.78278561099995,-52.03191497199984],[-58.78917395699998,-52.029961846999974],[-58.795277472999935,-52.03191497199984],[-58.79792232999995,-52.03639088299989],[-58.80211341099988,-52.04094817499985],[-58.81309973899994,-52.04306405999986],[-58.821888800999886,-52.04192473799991],[-58.8365372389999,-52.03720468499991],[-58.84410559799994,-52.03622812299993],[-58.857085740999935,-52.03964609199985],[-58.85643469999991,-52.04745859199984],[-58.85118567599992,-52.05681731599987],[-58.85094153599988,-52.06406015399998],[-58.864491339999944,-52.073174737999885],[-58.89561926999993,-52.08513762799991],[-58.90929114499997,-52.09441497199996],[-58.92577063699985,-52.10165780999989],[-58.93626868399991,-52.090020440999886],[-58.94774329299989,-52.056573174999826],[-58.96857662699995,-52.070977471999974],[-58.97988847599993,-52.06259530999992],[-58.986968553999894,-52.04452890399991],[-58.99494381399995,-52.029961846999974],[-59.016509568999965,-52.02312590899996],[-59.03864498599992,-52.02654387799988],[-59.05589758999994,-52.02629973799993],[-59.06322180899985,-52.008884372999866],[-59.08136959499984,-52.01490650799996],[-59.096180792999924,-52.01213958099991],[-59.12531490799997,-51.99456145599988],[-59.13267981699996,-51.98707447699991],[-59.13829505099998,-51.98333098799988],[-59.14574133999986,-51.98211028399995],[-59.15778561099995,-51.98528411299992],[-59.16234290299991,-51.990411065999844],[-59.16543535099989,-51.996351820999955],[-59.173085089999915,-52.00204843499985],[-59.1874080069999,-52.006524347],[-59.20026607999992,-52.00758228999987],[-59.213124152999846,-52.00579192499997],[-59.22765051999989,-52.00204843499985],[-59.23656165299994,-51.998142184999935],[-59.24323482999989,-51.99342213299985],[-59.25084387899991,-51.989841403999954],[-59.262440558999934,-51.98837655999991],[-59.26960201699998,-51.99049244599983],[-59.284250454999885,-51.999769789999874],[-59.292836066999904,-52.00204843499985],[-59.30329342399989,-52.00790780999997],[-59.29751542899993,-52.01921965899987],[-59.28258216099987,-52.02613697699987],[-59.2530818349999,-52.01433684699998],[-59.20067298099993,-52.02255624799999],[-59.18602454299992,-52.02898528399991],[-59.184071417999895,-52.04322682099991],[-59.18447831899988,-52.0575497379999],[-59.17682857999994,-52.06406015399998],[-59.15713456899991,-52.06178150799992],[-59.14362545499994,-52.05803801899989],[-59.13036048099991,-52.05722421699988],[-59.11164303299995,-52.06406015399998],[-59.14574133999986,-52.09075286299991],[-59.109445766999954,-52.08928801899986],[-59.09166419199996,-52.0912411439999],[-59.0768123039999,-52.098239841999884],[-59.093617316999904,-52.1080868469999],[-59.13255774599988,-52.117933851999915],[-59.14574133999986,-52.12558359199995],[-59.153431769999976,-52.14421965899994],[-59.13890540299993,-52.15016041499995],[-59.115793423999975,-52.14885833099987],[-59.05846106699993,-52.13648853999984],[-59.03888912699998,-52.13583749799997],[-59.03587805899989,-52.14592864399985],[-59.04649817599991,-52.15439218499998],[-59.0979711579999,-52.173923434999864],[-59.08531653599994,-52.187107029],[-59.06265214799986,-52.19931405999989],[-59.04898027299992,-52.21249765399984],[-59.06322180899985,-52.22861093499999],[-59.08470618399988,-52.23154062299993],[-59.10952714799992,-52.225030205999936],[-59.152577277999875,-52.20810312299995],[-59.17870032499991,-52.2061499979999],[-59.20128333199989,-52.20859140399994],[-59.22166907499989,-52.20720794099995],[-59.24132239499995,-52.193780205999964],[-59.24644934799994,-52.18515390399996],[-59.24868730399992,-52.17685312299998],[-59.25251217399994,-52.168552342],[-59.262440558999934,-52.15960051899997],[-59.274037238999966,-52.155368747999866],[-59.28620357999994,-52.15357838299997],[-59.29816646999986,-52.14967213299988],[-59.3095597,-52.13909270599983],[-59.32689368399991,-52.14397551899999],[-59.36685136599987,-52.11516692499987],[-59.38597571499986,-52.111911717],[-59.39024817599997,-52.11809661299998],[-59.39468339799993,-52.129978122999844],[-59.39964758999989,-52.14950937299991],[-59.40485592399989,-52.15593840899984],[-59.41633053299992,-52.14910247199991],[-59.4337458979999,-52.132419528999876],[-59.45604407499993,-52.14218515399991],[-59.44635982999998,-52.15992603999981],[-59.413238084999925,-52.18694426899986],[-59.41698157499987,-52.18678150799998],[-59.423939581999974,-52.192966403999954],[-59.43077551999988,-52.20208098799986],[-59.4337458979999,-52.21119557099984],[-59.42857825399989,-52.21795012799997],[-59.41649329299989,-52.22031015400002],[-59.392811652999875,-52.221774997999894],[-59.368072068999915,-52.23072682099992],[-59.352162238999874,-52.242120049999976],[-59.3459366529999,-52.25693124799995],[-59.350575324999845,-52.27629973799987],[-59.35667883999994,-52.27996184699992],[-59.36839758999991,-52.28932057099995],[-59.373890753999945,-52.299086195999806],[-59.36143958199992,-52.30364348799994],[-59.35924231699993,-52.30754973799985],[-59.33678137899994,-52.322930596999974],[-59.33136959499989,-52.3241513],[-59.33893795499994,-52.34172942499984],[-59.358957485999895,-52.335707289999924],[-59.392811652999875,-52.31047942499986],[-59.41584225199994,-52.30201588299983],[-59.46670488199987,-52.295668226999894],[-59.488392706999946,-52.28378671699985],[-59.484445766999954,-52.26441822699992],[-59.49681555899991,-52.25204843499997],[-59.516835089999894,-52.245049737999906],[-59.562814907999915,-52.23788827899987],[-59.580189581999925,-52.22966887799987],[-59.580637173999925,-52.217217705999936],[-59.55663001199986,-52.20061614399998],[-59.57359778599994,-52.195082289999874],[-59.608021613999966,-52.202243748],[-59.622181769999884,-52.19719817499988],[-59.624623175999915,-52.19158294099997],[-59.62393144399987,-52.17864348799988],[-59.62555904899992,-52.173923434999864],[-59.656849738999966,-52.15195077899995],[-59.69383704299991,-52.134535414999974],[-59.70335852799991,-52.128350518999824],[-59.71442623599995,-52.11874765399993],[-59.72154700399989,-52.10759856599991],[-59.7193497389999,-52.09685637799999],[-59.71255449099988,-52.09343840899989],[-59.703846808999884,-52.09433359199998],[-59.694976365999935,-52.097426039999874],[-59.68797766799985,-52.10100676899994],[-59.66698157499991,-52.115899346999896],[-59.65965735599991,-52.11874765399993],[-59.64122473899988,-52.117933851999915],[-59.62828528599988,-52.11060963299992],[-59.62596594999991,-52.09889088299984],[-59.639230923999946,-52.08456796699994],[-59.598011847999885,-52.07919687299998],[-59.57966061099992,-52.07138437299999],[-59.570301886999886,-52.056573174999826],[-59.58824622299994,-52.051202080999865],[-59.60822506399992,-52.04192473799991],[-59.62474524599989,-52.02988046699999],[-59.632394985999916,-52.01572030999997],[-59.631174282999915,-52.00676848799986],[-59.626128709999875,-52.0026180969999],[-59.618234829999885,-52.00400155999989],[-59.60814368399994,-52.012302341999956],[-59.598500128999966,-52.01637135199984],[-59.58397376199994,-52.01718515399985],[-59.55663001199986,-52.01572030999997],[-59.572336391999926,-51.99618905999989],[-59.58047441299993,-51.98902760199995],[-59.591420050999915,-51.98211028399995],[-59.574777798999946,-51.97698333099985],[-59.539173956999896,-51.97332122199998],[-59.52253170499995,-51.96843840899983],[-59.52253170499995,-51.96103281000002],[-59.57860266799989,-51.951267184999985],[-59.604725714999915,-51.940524997999965],[-59.60509192599994,-51.92066822699988],[-59.58128821499986,-51.91130950299985],[-59.548207160999915,-51.91887786299989],[-59.51431230399996,-51.93084075299992],[-59.488392706999946,-51.93434010199982],[-59.46739661399991,-51.922133070999934],[-59.48224850199997,-51.90976327899999],[-59.50865637899995,-51.897393487999956],[-59.52253170499995,-51.885349216999856],[-59.51667232999992,-51.87428150799991],[-59.50377356699988,-51.873630466999956],[-59.48835201699995,-51.875583592],[-59.47472083199991,-51.872247002999885],[-59.468495245999854,-51.86402760199988],[-59.46890214799987,-51.85523853999992],[-59.47565670499989,-51.84832122199991],[-59.488392706999946,-51.84490325299999],[-59.47105872299998,-51.83806731599989],[-59.396148240999906,-51.820733330999985],[-59.37608801999993,-51.83294036299996],[-59.363758917999895,-51.82236093500001],[-59.350575324999845,-51.77662525799991],[-59.33486894399987,-51.786553643999824],[-59.318755662999905,-51.788506768999866],[-59.282866990999906,-51.78289153399986],[-59.29979407499991,-51.75920989399994],[-59.303374803999866,-51.74871184699987],[-59.20718339799993,-51.70720794099988],[-59.19054114499988,-51.720879815999815],[-59.17764238199987,-51.71445077899998],[-59.16502844999988,-51.700941664999924],[-59.14915930899986,-51.693536065999936],[-59.07282467399991,-51.68466562299989],[-59.05638587099992,-51.68670012799992],[-59.05064856699993,-51.69443124799993],[-59.0504451159999,-51.70330169099997],[-59.051665818999915,-51.71249765399995],[-59.050160285999965,-51.72144947699997],[-59.044789191999904,-51.72893645599994],[-59.03795325399989,-51.7356096329999],[-59.032093878999945,-51.74293385199991],[-59.029652472999906,-51.75212981599997],[-59.03258216099993,-51.76148853999982],[-59.03807532499988,-51.77044036299985],[-59.04190019399987,-51.77874114399983],[-59.03612219999991,-51.79338958099993],[-59.036773240999956,-51.801853122999965],[-59.03954016799992,-51.81023528399993],[-59.04271399599989,-51.817071221999946],[-59.02594967399997,-51.81267669099987],[-59.0067439439999,-51.80974700299994],[-58.990101691999975,-51.803643487999864],[-58.981271938999924,-51.78972747199988],[-58.985991990999906,-51.77532317499991],[-58.998036261999935,-51.75798919099992],[-59.00755774599992,-51.74000416499988],[-59.003895636999886,-51.71363697699998],[-59.01695716099994,-51.70533619599982],[-59.0283097,-51.693780205999886],[-59.022206183999934,-51.67302825299998],[-59.0133357409999,-51.667901299999876],[-59.001942511999914,-51.66692473799989],[-58.99225826699995,-51.66464609200001],[-58.98810787699991,-51.65593840899994],[-58.99120032499991,-51.64657968499991],[-58.999134894999884,-51.64560312299993],[-59.009144660999965,-51.64641692499994],[-59.030100063999924,-51.63860442499995],[-59.10069739499996,-51.621758721999946],[-59.14574133999986,-51.5973446589999],[-59.16783606699994,-51.57366301899997],[-59.15005449099993,-51.55681731599997],[-59.12165279899992,-51.53622812299985],[-59.11164303299995,-51.50172291499984],[-59.06094316299988,-51.562758070999905],[-59.02912350199994,-51.583916925],[-59.00796464799992,-51.556898695999955],[-59.03457597599987,-51.53362395599994],[-59.041127081999946,-51.510837498],[-59.02611243399994,-51.49895598799996],[-58.98810787699991,-51.50847747199996],[-59.01427161399988,-51.491794528999925],[-59.105376756999895,-51.46575286299995],[-59.12531490799997,-51.45696379999989],[-59.12169348899992,-51.44182708099989],[-59.112172003999916,-51.42571379999991],[-59.09902910099995,-51.412530205999964],[-59.08429928299994,-51.40601978999988],[-59.07819576699998,-51.40781015399987],[-59.05850175699993,-51.417087497999916],[-59.050160285999965,-51.41969166499982],[-59.03770911399994,-51.41985442499997],[-59.00487219999985,-51.41350676899985],[-58.996164516999954,-51.409274997999916],[-58.991078253999945,-51.39959075299987],[-58.987782355999904,-51.38990650799982],[-58.98468990799993,-51.38567473799998],[-58.91706295499997,-51.38445403399987],[-58.89346269399993,-51.38005950299997],[-58.87360592399992,-51.371758722],[-58.86461341099991,-51.358330987999906],[-58.870472785999944,-51.34465911299997],[-58.89903723899994,-51.318047783999845],[-58.90957597599991,-51.300713799999855],[-58.91893469999994,-51.292901299999855],[-58.92951412699989,-51.286065362999935],[-58.93687903599988,-51.28329843499997],[-58.941761847999935,-51.2789039039999],[-58.95396887899991,-51.248467705999936],[-58.932769334999925,-51.2538387999999],[-58.90086829299992,-51.27776458099986],[-58.88565019399993,-51.28329843499997],[-58.86367753799993,-51.28525156000001],[-58.816477016999954,-51.296644789999796],[-58.73350989499993,-51.32830169099996]]],[[[-59.7149958979999,-51.25693124799997],[-59.69074459499993,-51.26213958099988],[-59.58800208199988,-51.255303643999945],[-59.57917232999994,-51.25676848799983],[-59.57848059799991,-51.260430596999875],[-59.57982337099989,-51.265232028999954],[-59.5771378249999,-51.27019622199991],[-59.57054602799994,-51.27703215899984],[-59.56725012899991,-51.28329843499997],[-59.5611873039999,-51.28777434699994],[-59.546457485999916,-51.289483330999936],[-59.53954016799991,-51.286797783999866],[-59.535227016999926,-51.28053150799992],[-59.532297329999885,-51.27410247199999],[-59.52936764199995,-51.27019622199991],[-59.51915442599994,-51.26506926899998],[-59.51187089799992,-51.26295338299989],[-59.502023891999904,-51.26213958099988],[-59.47948157499991,-51.26751067499984],[-59.462513800999936,-51.28167083099995],[-59.45164954299986,-51.301527601999865],[-59.44737708199994,-51.32415129999983],[-59.47166907499991,-51.32789478999995],[-59.494984503999916,-51.33603280999988],[-59.55321204299985,-51.33782317499995],[-59.57677161399991,-51.33025481599982],[-59.610096808999884,-51.297051690999986],[-59.63581295499992,-51.289483330999936],[-59.74840247299988,-51.28329843499997],[-59.79051673099993,-51.27662525799983],[-59.79995683499994,-51.27304452899994],[-59.806630011999914,-51.26458098799982],[-59.80874589799993,-51.2559546849999],[-59.80386308499993,-51.24968840899995],[-59.789418097999885,-51.248467705999936],[-59.76675370999993,-51.24114348799984],[-59.74120032499985,-51.246840101999915],[-59.7149958979999,-51.25693124799997]]],[[[-61.04869544199996,-51.080336195999855],[-61.05654863199994,-51.08171965899984],[-61.070220506999874,-51.07919687299999],[-61.103098110999944,-51.06959400799993],[-61.11681067599988,-51.06764088299989],[-61.125803188999924,-51.06519947699986],[-61.12633216099991,-51.05999114399995],[-61.11803137899991,-51.055271091999856],[-61.112212693999965,-51.05087655999987],[-61.112945115999906,-51.04607512799997],[-61.1197810539999,-51.03639088299992],[-61.119211391999926,-51.027764580999914],[-61.10562089799989,-51.029961847],[-61.09239661399993,-51.03834400799996],[-61.078521287999955,-51.05095794099994],[-61.07388261599993,-51.05673593499999],[-61.069894985999944,-51.06340911299987],[-61.06761633999989,-51.06650155999986],[-61.05557206899996,-51.070977471999825],[-61.04963131399995,-51.0753720029999],[-61.04869544199996,-51.080336195999855]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Guyana","sov_a3":"GUY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guyana","adm0_a3":"GUY","geou_dif":0,"geounit":"Guyana","gu_a3":"GUY","su_dif":0,"subunit":"Guyana","su_a3":"GUY","brk_diff":0,"name":"Guyana","name_long":"Guyana","brk_a3":"GUY","brk_name":"Guyana","brk_group":null,"abbrev":"Guy.","postal":"GY","formal_en":"Co-operative Republic of Guyana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guyana","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":772298,"gdp_md_est":2966,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"GY","iso_a2":"GY","iso_a3":"GUY","iso_n3":"328","un_a3":"328","wb_a2":"GY","wb_a3":"GUY","woe_id":23424836,"woe_id_eh":23424836,"woe_note":"Exact WOE match as country","adm0_a3_is":"GUY","adm0_a3_us":"GUY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GUY.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-58.44102942599994,6.904771226000108],[-58.460519985999916,6.883368231000161],[-58.46349036399994,6.90029531500015],[-58.45750891799992,6.923041083000086],[-58.44701087099986,6.943060614000146],[-58.43175208199989,6.954657294000157],[-58.42251542899993,6.968329169000099],[-58.418934699999845,6.972113348000121],[-58.40965735599991,6.973618882000081],[-58.378570115999906,6.972113348000121],[-58.333607550999886,6.965277411000116],[-58.33470618399994,6.961004950000102],[-58.39102128799991,6.919867255000113],[-58.44102942599994,6.904771226000108]]],[[[-59.609852667999945,8.242092190000122],[-59.60594641799994,8.240301825000131],[-59.59972083199989,8.240952867000175],[-59.54344641799992,8.229478257000137],[-59.536122199999916,8.222479559000163],[-59.523019985999916,8.206488348000065],[-59.4337458979999,8.130316473000093],[-59.45677649599986,8.167222398000149],[-59.49168860599988,8.201320705000157],[-59.533558722999906,8.228908596000082],[-59.60863196499992,8.259426174000112],[-59.70067298099991,8.322739976000065],[-59.761301235999895,8.355454820000176],[-59.76952063699988,8.366522528000132],[-59.78184973899994,8.394191799000126],[-59.77953040299988,8.407131252000127],[-59.75584876199985,8.41087474200016],[-59.73936926999997,8.40363190300013],[-59.70396887899994,8.375555731000132],[-59.6632380849999,8.363470770000134],[-59.64338131399998,8.350002346000153],[-59.61123613199993,8.322739976000065],[-59.54539954299987,8.283758856000176],[-59.45409094999988,8.242621161000102],[-59.347889777999875,8.166815497000144],[-59.16515051999994,8.058742580000157],[-59.10480709499992,8.0136172550001],[-59.09012937999998,8.00002717400018],[-59.07542998799994,7.98078941700014],[-59.021432893999894,7.931002064000083],[-58.88475193099986,7.778687500000061],[-58.83341638099998,7.738300239000096],[-58.80419289399989,7.696217931000105],[-58.778616957999894,7.662363706000136],[-58.754053349999936,7.612114488000145],[-58.73762950199992,7.58833420600014],[-58.73391804299987,7.594694043000118],[-58.74390150899989,7.619352058000088],[-58.74200435999995,7.630278444000155],[-58.72821716899989,7.629295072000146],[-58.70343372499995,7.620962696000134],[-58.682377268999886,7.603534104000133],[-58.66316323399994,7.585201298000101],[-58.646717044999946,7.565057085000105],[-58.63029246699989,7.54035108700016],[-58.60931461199993,7.506494794000105],[-58.58405514199992,7.475775458000072],[-58.568180262999874,7.453340613000094],[-58.48973548099988,7.376125393000122],[-58.47158769399996,7.345404364000131],[-58.46422278599996,7.312201239000117],[-58.47419186099995,7.279974677000083],[-58.467355923999946,7.287420966000155],[-58.47252356699994,7.244452216000099],[-58.467355923999946,7.116115627000098],[-58.48501542899995,7.010809637000165],[-58.4973852199999,6.994818427000083],[-58.519602016999954,6.977647203000146],[-58.53563391799994,6.965277411000116],[-58.55068925699996,6.94708893400012],[-58.56159420499991,6.927232164000117],[-58.56818600199992,6.906805731000134],[-58.57404537699995,6.868394273000135],[-58.59772701699995,6.808294989000132],[-58.59984290299988,6.787258205000114],[-58.59772701699995,6.721625067000105],[-58.59984290299988,6.711330471000082],[-58.60920162699992,6.698919989000146],[-58.61139889199989,6.687811591000127],[-58.61139889199989,6.509711005000142],[-58.61701412699992,6.488145249000127],[-58.619943813999924,6.47687409100014],[-58.686431443999936,6.382473049000083],[-58.6822403639999,6.379828192000105],[-58.67959550699993,6.376206773000134],[-58.64883378799993,6.40420156500015],[-58.63866126199991,6.410345770000134],[-58.63560950399991,6.414374091000099],[-58.63292395699992,6.420070705000086],[-58.62889563699986,6.42332591400013],[-58.61538652299989,6.417385158000101],[-58.60680091099987,6.416327216000141],[-58.60214918324195,6.41656374412372],[-58.6019994779999,6.416571356000091],[-58.590240037999905,6.417222398000135],[-58.59772701699995,6.423407294000114],[-58.581166144999905,6.463446356000148],[-58.57721920499992,6.594712632000068],[-58.567005988999874,6.636704820000148],[-58.461537238999874,6.821844794000099],[-58.43488521999986,6.857814846000082],[-58.398426886999886,6.883368231000161],[-58.35440019399988,6.894354559000121],[-58.31216386599996,6.892157294000128],[-58.27383378799993,6.880519924000126],[-58.21410071499986,6.849188544000171],[-58.194488084999904,6.830959377000099],[-58.18956458199992,6.828111070000148],[-58.18651282499994,6.824530341000169],[-58.17821204299986,6.817572333000101],[-58.17369544199991,6.815375067000105],[-58.16966712099994,6.813421942000147],[-58.16567949099997,6.817857164000131],[-58.162220831999946,6.829535223000121],[-58.15371660099992,6.832220770000105],[-58.06786340499988,6.821702861000091],[-58.005674540999905,6.791757882000084],[-57.98581301699996,6.77522329100016],[-57.95605476499986,6.75291201600011],[-57.918596674999975,6.716302682000077],[-57.891891301999856,6.696441843000102],[-57.838075396999926,6.64530222100015],[-57.80613834899995,6.613178006000155],[-57.796986152999864,6.598146822000089],[-57.778857437999925,6.590347242000106],[-57.75698131199991,6.567700740000106],[-57.69962545299998,6.521614996000082],[-57.667938585999934,6.495933437000147],[-57.64681924299989,6.47780940300008],[-57.63325259299995,6.463473072000127],[-57.61817510999989,6.448377075000124],[-57.59857774699994,6.427246229000133],[-57.57799231699996,6.378159898000177],[-57.54762201899984,6.30714458400017],[-57.536673478999916,6.293162901000173],[-57.53352244899986,6.273656378000112],[-57.52891272499994,6.265709146000161],[-57.52042734199995,6.277992549000145],[-57.51869212199992,6.287130867000158],[-57.5170419769999,6.298223379000191],[-57.51703716899993,6.315075983000142],[-57.5041918309999,6.32903953400016],[-57.4942612719999,6.334821824000116],[-57.490632656999956,6.33892093900009],[-57.48607043299996,6.339505005000191],[-57.46637022799984,6.337906198000056],[-57.44559134699995,6.33036645100016],[-57.4289448099999,6.322750581000193],[-57.408800535999916,6.31276489700015],[-57.37743079299988,6.294338283000087],[-57.365044046999856,6.287483771000125],[-57.33046618999989,6.264391639000123],[-57.28982366999991,6.234738597000131],[-57.20749372999998,6.15137783600015],[-57.186659817999946,6.121188246000172],[-57.1673070949999,6.085109768000109],[-57.15843665299985,6.044378973000121],[-57.15535746899991,6.019666901000122],[-57.15188838499994,6.007802647000162],[-57.14675216699996,5.997589870000168],[-57.144435934999905,5.989022398000144],[-57.143613224999854,5.977984624000101],[-57.15831458199988,5.99892812700014],[-57.16576087099986,6.005682684000178],[-57.14792602399993,5.969916189000159],[-57.14196452499996,5.955741944000138],[-57.141683996999916,5.934178120000112],[-57.14000403599993,5.917914130000098],[-57.13725897599991,5.882091552000148],[-57.153675910999965,5.847113348000078],[-57.15819251199991,5.828599351000165],[-57.16543535099993,5.811346747000158],[-57.1700205759999,5.799621837000103],[-57.17061466799992,5.779035644000132],[-57.180675733999884,5.754928247000151],[-57.183054671999905,5.731410052000157],[-57.15957320399994,5.69291198500018],[-57.16151750599997,5.638905690000101],[-57.17332878599987,5.607472667000181],[-57.185658331999946,5.587347723000092],[-57.196929490999935,5.564764716000126],[-57.247670050999915,5.491848049000097],[-57.247670050999915,5.48493073100019],[-57.25693965699994,5.464086202000175],[-57.260091918999905,5.448195699000152],[-57.2612288009999,5.426749980000125],[-57.2652078859999,5.403366395000176],[-57.27549149599989,5.387398377000138],[-57.32411901899991,5.338589987000177],[-57.3322838949999,5.327867127000161],[-57.33569453899994,5.316885885000175],[-57.33171545499997,5.307609965000154],[-57.32282710799992,5.307609965000154],[-57.30840938399994,5.313475240000145],[-57.298332478999974,5.311020610000185],[-57.29202795499987,5.311330668000081],[-57.28882401599989,5.308540141000108],[-57.28727372299996,5.23869944200014],[-57.28546504799991,5.230818787000188],[-57.28045243399992,5.225341085000196],[-57.27166743999993,5.222860616000133],[-57.26303747599991,5.223997497000141],[-57.25642289299989,5.228286641000111],[-57.253787394999875,5.234927063000114],[-57.264019327999875,5.247045186000193],[-57.26918697199997,5.256708679000127],[-57.267429972999906,5.266294657000131],[-57.25900671399998,5.271203919000158],[-57.247637898999926,5.271772360000128],[-57.23761267099987,5.268723450000095],[-57.233323526999925,5.262573954000118],[-57.23252170199993,5.260572120000134],[-57.22572709199994,5.243608704000167],[-57.19239579299992,5.203171896000171],[-57.184902709999875,5.183147278000135],[-57.189811971999916,5.169220480000149],[-57.20200760899991,5.15761912100011],[-57.21776892199997,5.148549907000145],[-57.233323526999925,5.142116191000184],[-57.238749552999906,5.162011617000189],[-57.24727616399991,5.172372742000121],[-57.25993688999995,5.176300150000174],[-57.277713582999894,5.176920268000146],[-57.288979044999934,5.171029155000141],[-57.29554195199992,5.157205709000095],[-57.302208211999925,5.128473612000093],[-57.317091023999886,5.094754741000131],[-57.32019160999993,5.083411764000147],[-57.32143184399987,5.070156759000142],[-57.31693599499993,5.058968811000098],[-57.28045243399992,5.026102600000172],[-57.290477660999954,5.020289001000094],[-57.29869421499998,5.02111582400012],[-57.3064973559999,5.024448955000125],[-57.31523067199987,5.026102600000172],[-57.32944169199993,5.024087220000126],[-57.33807165499988,5.020754089000206],[-57.345513060999906,5.016619975000181],[-57.356210083999905,5.012434184000156],[-57.38137650599995,5.00574208600014],[-57.46049312299994,4.997628886000129],[-57.47733963999991,4.992487081000135],[-57.49025874899993,4.991350199000124],[-57.49687333199992,4.994657491000126],[-57.512221232999906,5.009152731000156],[-57.517595580999874,5.012434184000156],[-57.54327876799993,5.01109059700019],[-57.56622310399987,5.007085673000105],[-57.61009639499988,4.991350199000124],[-57.649370482999956,5.00842926000017],[-57.686939249999874,5.006258851000084],[-57.720477253999974,4.989799906000201],[-57.74729732299996,4.964013367000106],[-57.762335164999854,4.935539653000163],[-57.77396236199991,4.926444601000185],[-57.79845699099988,4.923059795000171],[-57.81096268799987,4.925540263000144],[-57.820574503999886,4.93029449500014],[-57.83023799599991,4.933059184000101],[-57.84279536999991,4.929881083000126],[-57.850340128999875,4.922801412000112],[-57.870700643999974,4.88892751100019],[-57.884188191999954,4.872261861000169],[-57.902429972999926,4.852728170000162],[-57.918501342999974,4.829757996000126],[-57.92537430899994,4.796142476000099],[-57.91782954999991,4.78237070700014],[-57.90113806199988,4.773921611000148],[-57.88454992699988,4.762862854000147],[-57.871165730999934,4.721728414000083],[-57.84434566299993,4.687518616000176],[-57.836025756999874,4.669845276000075],[-57.83742102099995,4.65088002500012],[-57.84543086799993,4.63351674400019],[-57.863310913999975,4.607730204000105],[-57.87912390199997,4.556828918000164],[-57.89607377099989,4.528510234000166],[-57.914470580999904,4.484068502000183],[-57.921860310999904,4.450943909000102],[-57.93131709799987,4.437843933000138],[-57.942789266999874,4.425105693000176],[-57.95265946399987,4.409731954000108],[-57.956638549999944,4.391438497000124],[-57.9534862879999,4.375703024000146],[-57.94806026199993,4.360484314000118],[-57.945269734999954,4.343922018000114],[-57.94738846899995,4.318755595000169],[-57.95384802299989,4.29901519800012],[-57.96495845599992,4.282039490000102],[-58.05203324399989,4.193104350000141],[-58.065934203999944,4.171839498000153],[-58.067691202999924,4.151143087000136],[-58.055082152999915,4.108070780000133],[-58.04200801599995,4.02303721100013],[-58.03213781699995,3.987716370000129],[-58.007901570999955,3.957278951000162],[-57.94211747299991,3.90544749000017],[-57.92583939699997,3.886404724000116],[-57.875144815999896,3.812197368000142],[-57.85385412699991,3.766670430000161],[-57.849616658999956,3.747472636000069],[-57.84692948499994,3.702100729000122],[-57.84098669399992,3.68099090600019],[-57.8297729089999,3.662439066000147],[-57.81313309799995,3.651845398000162],[-57.76424719299987,3.631588236000169],[-57.72610998599992,3.607196961000057],[-57.722492635999934,3.59996226],[-57.717480021999876,3.582443950000112],[-57.70952185099992,3.567690329000115],[-57.708643351999875,3.564124654000053],[-57.70735144099993,3.560662334000185],[-57.70285559099988,3.555675558000146],[-57.69799800599989,3.553608500000081],[-57.68724930799996,3.552161560000087],[-57.685130574999874,3.549164327000085],[-57.68125484199993,3.54730397600008],[-57.66042924099988,3.535185852],[-57.64404781199991,3.516659851000057],[-57.6454947519999,3.498986511000055],[-57.66068762199993,3.469505107000046],[-57.66053259299991,3.462993877000073],[-57.658362182999916,3.450617371000106],[-57.658930623999964,3.443899435000077],[-57.66399491399994,3.425838521000159],[-57.66461503199991,3.417544454000108],[-57.66254797399994,3.407079976000162],[-57.65820715299994,3.395220235000139],[-57.65484818599995,3.390130107000076],[-57.64993892399991,3.385944315000131],[-57.641463988999924,3.382430318000075],[-57.61324865799994,3.3766425580001],[-57.59640214099997,3.367237447000136],[-57.59619259399985,3.367120724000159],[-57.565137898999886,3.349822490000108],[-57.55423417199992,3.346747742000076],[-57.545035766999916,3.348143006000157],[-57.53526892099995,3.367780050000178],[-57.522401489999964,3.3652479040001],[-57.509637410999915,3.35767730700006],[-57.50390132699994,3.353336487000078],[-57.49583980399987,3.35297475200008],[-57.48798498599993,3.351527812000086],[-57.48204219599998,3.348556417000168],[-57.47971675599987,3.343388774000076],[-57.47625443599992,3.338944601000151],[-57.468761352999906,3.343182068000203],[-57.46168168199997,3.349977518000145],[-57.459201212999886,3.353336487000078],[-57.43093420499991,3.360622864000149],[-57.42395788699991,3.369382019000042],[-57.4250430909999,3.387494609000143],[-57.39346879099995,3.373826193000127],[-57.366752075999976,3.365609639000098],[-57.340035359999916,3.370157166000141],[-57.30840938399994,3.394910177000156],[-57.28355301999997,3.343802185000087],[-57.28045243399992,3.329772034000158],[-57.28277787299996,3.295045471000122],[-57.28422481399994,3.288792623000134],[-57.2924930419999,3.276286926000125],[-57.29027095599988,3.26796702100016],[-57.28401810699998,3.259750468000135],[-57.28045243399992,3.247813212000096],[-57.281744344999964,3.235927632000156],[-57.28711869299993,3.21536041200008],[-57.28794551699988,3.203113099000063],[-57.285671752999946,3.19210601800016],[-57.27492305499993,3.169006653000082],[-57.277713582999894,3.156914368000017],[-57.284173136999925,3.148956197000131],[-57.28603348899994,3.142393291000146],[-57.27492305499993,3.13428009100015],[-57.264897827999896,3.132626444000095],[-57.25497595199991,3.135830384000158],[-57.24624263599991,3.141618144000134],[-57.239473022999896,3.147870992000136],[-57.23761267099987,3.14487375900012],[-57.237405965999926,3.143995260000096],[-57.23673417199987,3.143478495000139],[-57.233323526999925,3.141669820000146],[-57.24856807499995,3.112369283000191],[-57.239473022999896,3.094127503000053],[-57.22221309399989,3.078262838000043],[-57.212859659999964,3.056041972000088],[-57.21177445599997,3.048342184000106],[-57.207020223999876,3.03568145800007],[-57.20598669499989,3.028136699000115],[-57.209242309999894,3.024054261000018],[-57.22324662299988,3.024777730000096],[-57.22645056199994,3.021263733000055],[-57.224693562999875,3.009171448000146],[-57.22179968299989,3.00043813100018],[-57.22117956499991,2.992583313000139],[-57.22645056199994,2.983384908000062],[-57.23461543799996,2.970362448000117],[-57.22185135899991,2.963024394000115],[-57.18862341299987,2.959510397000074],[-57.18381750499986,2.944679261000047],[-57.19472123199992,2.93062327100003],[-57.21032751499987,2.918220927000135],[-57.219629272999974,2.90829905200006],[-57.206348429999906,2.856570943000094],[-57.202265991999894,2.846235657000094],[-57.19425614499991,2.841998189000137],[-57.19105220599994,2.832593078000087],[-57.186608031999924,2.823239644000139],[-57.17461909999988,2.81895050100016],[-57.165265665999925,2.821069234000149],[-57.145215209999975,2.830422669000185],[-57.13338130699995,2.832593078000087],[-57.126404988999866,2.826030171000184],[-57.143664916999874,2.790011698000114],[-57.137050333999944,2.771149801000092],[-57.13374304299995,2.773423564000097],[-57.09953324399996,2.77859120700019],[-57.08986975099995,2.773888652000124],[-57.09214351499995,2.763036601000167],[-57.09901647999993,2.750375875000131],[-57.10294388799991,2.740454],[-57.097724568999894,2.727379862000177],[-57.071886352999854,2.700094707000176],[-57.061964477999965,2.68174957300009],[-57.05597001199993,2.642372131000101],[-57.048011840999976,2.636481018000012],[-57.027237914999915,2.648211568000178],[-57.02046830299989,2.635447489000029],[-57.02315547699993,2.623665263000106],[-57.027909708999914,2.61059112500007],[-57.027237914999915,2.593589580000142],[-57.02238033099991,2.584546204000091],[-56.99711055599994,2.555142314000179],[-56.99530188099996,2.547855937000108],[-57.00057287599989,2.51416290300007],[-56.99411332199992,2.504861146000124],[-56.980005655999975,2.509718730000145],[-56.959593464999955,2.524704895000127],[-56.95127355999997,2.515454814000108],[-56.952617146999955,2.504551086000149],[-56.95752640899988,2.493492330000137],[-56.959593464999955,2.48377716100019],[-56.956363688999964,2.470031230000159],[-56.9516352949999,2.461246236000179],[-56.93507299799998,2.445898336000198],[-56.93024125199989,2.436183167000081],[-56.932024088999945,2.42579620400015],[-56.93845780399991,2.411430155000147],[-56.93083553099993,2.393291728000122],[-56.89504960099992,2.362079163000132],[-56.88388749199987,2.339754944000163],[-56.884430093999924,2.303736471000093],[-56.88014095099996,2.294796448000156],[-56.87086503099994,2.290145569000088],[-56.84779150399996,2.285856425000119],[-56.83887731899995,2.281102193000137],[-56.8261907559999,2.261671855000145],[-56.816346395999915,2.217591858000077],[-56.80874995999997,2.195784404000065],[-56.80146358199997,2.165967103000142],[-56.70519038899994,2.02964467400011],[-56.677801879999976,2.018405050000069],[-56.57977168799994,2.016803080000116],[-56.5420737309999,1.997166036000095],[-56.53649267599988,1.988639425000158],[-56.52938716699995,1.981792298000116],[-56.52096390899995,1.976728007000048],[-56.49998327699987,1.969984232000101],[-56.491198282999875,1.962904562000176],[-56.48510046399991,1.953215231000058],[-56.48181901099994,1.941613871000101],[-56.52850866699992,1.924018046000029],[-56.558920247999964,1.906654765000013],[-56.57486242699991,1.90546620700016],[-56.590106974999934,1.912985128000031],[-56.60442134599995,1.924586487000155],[-56.620234333999946,1.934560039000175],[-56.63956132099989,1.93685963900019],[-56.656407836999875,1.930064188000145],[-56.669662841999866,1.919858094000091],[-56.683951375999946,1.912106628000174],[-56.70410518499992,1.912830099000161],[-56.724155639999964,1.916137391000163],[-56.737643188999954,1.912985128000031],[-56.78063798099993,1.879059550000193],[-56.792730265999914,1.873530172000102],[-56.80647619699994,1.873581848000114],[-56.87763464399998,1.885648295000095],[-56.890708780999944,1.89019582100012],[-56.90683182799992,1.903244121000157],[-56.91344641199989,1.912830099000161],[-56.9219213469999,1.918101094000022],[-56.94352209499996,1.918256124000138],[-56.97685339399993,1.914587097000151],[-56.993234822999874,1.914845479000036],[-57.01116654499995,1.918566182000134],[-57.037469848999905,1.932389628000095],[-57.05597001199993,1.948073425000061],[-57.06780391499987,1.968692322000152],[-57.07405676299996,1.997166036000095],[-57.104494181999904,2.021453959000084],[-57.152914998999876,2.002204488000146],[-57.23843949399991,1.948538513000173],[-57.25864497899991,1.952233378000088],[-57.294818481999926,1.974841817000126],[-57.319416462999925,1.977141419000148],[-57.3414822999999,1.968847351000178],[-57.356158406999974,1.955282287000102],[-57.36876745699993,1.939650167000153],[-57.38452876799991,1.925206604000138],[-57.405561075999906,1.914277039000155],[-57.4195137129999,1.909186910000173],[-57.42948726499992,1.900298564000167],[-57.45429195199995,1.833816834000103],[-57.46478226699992,1.815730082000186],[-57.53128983599989,1.731549175000112],[-57.561158813999974,1.708966573000083],[-57.607874308999975,1.697106832000159],[-57.63857010899994,1.696176656000191],[-57.72311275299998,1.711653748000117],[-57.758821166999894,1.713462423000109],[-57.79075720299996,1.704935812000173],[-57.87147578999991,1.669253235000099],[-57.9053755299999,1.648556824000167],[-57.9222220469999,1.642484843000204],[-57.939016886999944,1.643311666000145],[-57.969144246999946,1.65548146500015],[-57.98500891099987,1.657703553000146],[-57.991003376999885,1.650417175000171],[-57.98976314299995,1.634604187000164],[-57.98392370699986,1.6041150920001],[-57.986972615999974,1.586829326000014],[-57.993587198999904,1.568484192000199],[-58.011157185999956,1.536186422000128],[-58.02722855699994,1.516859436000175],[-58.06913814299991,1.509004618000063],[-58.116422078999875,1.51055491200016],[-58.1486164959999,1.519081523000096],[-58.1555411379999,1.527375590000133],[-58.1628791919999,1.549183045000078],[-58.1706306559999,1.558820700000183],[-58.1872704669999,1.567605693000161],[-58.19776078299994,1.565900371000026],[-58.206959187999956,1.559957580000102],[-58.219671589999926,1.556056010000049],[-58.238585164999876,1.556701965000116],[-58.26054764899993,1.5603193150001],[-58.28199336799994,1.566572164000178],[-58.299201619999934,1.575176290000044],[-58.30633296799996,1.582772726000101],[-58.316151489999925,1.598895772000077],[-58.320492309999906,1.601221211000023],[-58.33191280099992,1.593392233000088],[-58.33873408999997,1.580188904000181],[-58.34426346899997,1.565486959000097],[-58.351394815999925,1.553317159000187],[-58.360283162999934,1.547374370000085],[-58.383124144999925,1.537219951000111],[-58.390255492999955,1.530760397000151],[-58.39170243399988,1.520838522000076],[-58.38591467299997,1.499728699000045],[-58.38637976099992,1.490194397000053],[-58.41345821199989,1.47203013100011],[-58.42643023299982,1.469805347000062],[-58.49887935399997,1.457379863000128],[-58.5017543459999,1.453781096000171],[-58.5136588139999,1.438879700000186],[-58.50699255399988,1.418183289000083],[-58.488078979999955,1.378883362000096],[-58.48172277799992,1.358057760000051],[-58.481102661999955,1.333873189000158],[-58.487613891999935,1.31645823200013],[-58.51892980999991,1.267262268000166],[-58.52714636199997,1.266848856000067],[-58.53505285599991,1.271551412000136],[-58.54306270399988,1.274393616000111],[-58.54275264499989,1.27635732000013],[-58.54673172999989,1.280439758000142],[-58.55231278499992,1.284625549000083],[-58.55696366399988,1.286899312000102],[-58.56140783699996,1.285142314000041],[-58.574171915999926,1.275375468000163],[-58.58052811699988,1.272739970000146],[-58.68258907099991,1.282455139000191],[-58.697730264999905,1.281059876000114],[-58.70920243399993,1.272274882000133],[-58.73690100099995,1.232329],[-58.752817341999865,1.214965718000158],[-58.77193762299996,1.201271465000133],[-58.795967162999915,1.191814677000167],[-58.81596594199984,1.187267151000128],[-58.834001017999924,1.185820211000134],[-58.852036091999935,1.188714091000122],[-58.8721382249999,1.197240702000144],[-58.89787308799989,1.217807922000134],[-58.906451375999914,1.238530172000154],[-58.91172237099993,1.260234273000151],[-58.92748368399992,1.284212138000072],[-58.94598384599997,1.298991598000086],[-58.96649938999994,1.310153707000125],[-58.97202466099994,1.312311316000205],[-59.01109615099995,1.327568664000154],[-59.177959350999885,1.357127584000182],[-59.2421414799999,1.377798157000185],[-59.25991817199985,1.387435812000206],[-59.27242386899988,1.404153138000154],[-59.29381791199997,1.452108867000092],[-59.30218949399994,1.462960918000135],[-59.32032792199996,1.473528748000206],[-59.324720418999874,1.49076283800018],[-59.32694250499989,1.509521383000091],[-59.338569701999944,1.524636739000186],[-59.347690592999925,1.526032003000168],[-59.36802526899992,1.520399271000059],[-59.380169229999915,1.523344828000148],[-59.38386409599993,1.527892354000173],[-59.39096960499995,1.543653667000157],[-59.39463863099987,1.549441427000133],[-59.39972875999985,1.552025249000053],[-59.41210526599991,1.553265483000174],[-59.4168336589999,1.555280864000039],[-59.42587703499996,1.56595204600012],[-59.4455140789999,1.601014506000141],[-59.45476415999991,1.611323954000142],[-59.486002563999904,1.636076965000086],[-59.50282324199995,1.657651876000131],[-59.53072851599995,1.703075460000179],[-59.55147660399987,1.720516256000124],[-59.57271561699994,1.727156677000039],[-59.590569824999896,1.724908752000118],[-59.607933104999915,1.71999949200017],[-59.628164428999916,1.718810933000157],[-59.639662434999934,1.721756490000146],[-59.64981685399991,1.727001648000083],[-59.658963582999974,1.734081319000111],[-59.68084855099994,1.757387390000133],[-59.68247635899988,1.765603943000158],[-59.66648250399993,1.787101339000117],[-59.64547603399993,1.827693176000053],[-59.64645788599998,1.839966329000077],[-59.64911922199991,1.841361593000144],[-59.655475423999945,1.839707947000192],[-59.667981119999915,1.842705180000124],[-59.70557572499984,1.857407125000108],[-59.71722875999992,1.85805308000009],[-59.73751175999993,1.850792542000121],[-59.74968155999994,1.851309306000146],[-59.75875077299989,1.862135518000017],[-59.763556681999916,1.882573548000152],[-59.76513281299992,1.904639384000149],[-59.76453853399997,1.920529887000157],[-59.760869507999956,1.931924540000153],[-59.74836380999998,1.951251526000107],[-59.743816283999934,1.961845194000176],[-59.74280859399997,1.970966085000072],[-59.745340738999936,1.997166036000095],[-59.74353206399988,2.005666810000193],[-59.73779598099992,2.022229106000097],[-59.73709834899992,2.030419821000037],[-59.74040563999992,2.041401063000194],[-59.75146439699992,2.062252503000082],[-59.75296301299991,2.07545583100007],[-59.74983658899987,2.085971985000114],[-59.738571126999915,2.103619487000117],[-59.73539302599994,2.113515524000107],[-59.73585811399997,2.123721619000165],[-59.744979003999866,2.15351308200016],[-59.745754150999886,2.190823466000111],[-59.74022477199995,2.229477438000103],[-59.74169755099987,2.263790588000134],[-59.76324662399991,2.287975159000098],[-59.772264160999946,2.29035227500006],[-59.791849527999965,2.290869039000185],[-59.80120296299992,2.292729390000189],[-59.813631144999896,2.299188945000139],[-59.84424943099993,2.32544057200009],[-59.88406612199994,2.34600779200008],[-59.90313472499991,2.359598694000155],[-59.91344417399992,2.378718974000151],[-59.91181636599989,2.387814026000043],[-59.90150691699997,2.404505513000075],[-59.90181697699995,2.415615947000092],[-59.904039062999885,2.426209615000161],[-59.905072591999954,2.447862041000135],[-59.90677791399992,2.458765767000102],[-59.93584590699993,2.523878072000016],[-59.93951493299991,2.542998352000012],[-59.939230713999926,2.555452372000075],[-59.940729328999936,2.562997131000131],[-59.949023396999905,2.579843648000022],[-59.953131673999906,2.583926086000119],[-59.96602494399991,2.588680318000101],[-59.970985880999955,2.592556051000159],[-59.97026241099988,2.595759989000044],[-59.965327311999914,2.60805898100017],[-59.965043090999956,2.613433329000046],[-59.9964623619999,2.674773255000105],[-60.00007971199997,2.694048564000127],[-59.99372351099992,2.857294414000179],[-59.972975422999895,2.939304911000164],[-59.9704174399999,2.96044057200011],[-59.97398311399988,3.017646382000152],[-59.969228881999896,3.042709453000072],[-59.959384520999926,3.066480611000131],[-59.932667806999945,3.110043844000074],[-59.92737097199992,3.114332988000044],[-59.9207563889999,3.116761780000089],[-59.91486527499993,3.119965719000148],[-59.91160965999993,3.126425273000109],[-59.912694864999935,3.133401591000109],[-59.92018794799994,3.143995260000096],[-59.92155737299993,3.150093079000058],[-59.918379272999886,3.152831929000087],[-59.905718546999935,3.154795634000038],[-59.90321223999984,3.158671367000167],[-59.90543432699994,3.16523427400007],[-59.913935098999865,3.17463938500012],[-59.91685481799996,3.181150615000092],[-59.916673949999904,3.194173076000126],[-59.91150630699991,3.201872864000109],[-59.90424576799992,3.208229065000054],[-59.89763118599993,3.21737579400012],[-59.884014444999934,3.262540995000094],[-59.879621948999926,3.272566223000126],[-59.8537320559999,3.315380148000144],[-59.84319006399994,3.349021505000096],[-59.83998612499997,3.34987416600012],[-59.83368159999994,3.350287578000135],[-59.82680863499991,3.351941223000097],[-59.82177018299993,3.356592102000064],[-59.820995035999914,3.363490906000123],[-59.82709285499996,3.376694234000112],[-59.82848811899995,3.383412171000131],[-59.82404394599993,3.431677959000154],[-59.841355550999936,3.425399272000149],[-59.838539184999966,3.44302093500005],[-59.8213567709999,3.484387919000085],[-59.82954748599993,3.509761048000157],[-59.84763423699994,3.53045745900009],[-59.86303381399992,3.552368266000059],[-59.86287878399989,3.581720479000126],[-59.83766068499994,3.609289857000106],[-59.75554683499993,3.638125305000059],[-59.71764217199992,3.673213603000178],[-59.69505957099997,3.683057963000067],[-59.68622290099998,3.690215149000096],[-59.680125081999925,3.701687317000121],[-59.6795566409999,3.710343120000161],[-59.68077103699991,3.719153951000152],[-59.680150919999924,3.731117045000118],[-59.67180517599987,3.756231792000051],[-59.65911861199993,3.768918355000082],[-59.618294230999936,3.787185974000138],[-59.59860550999988,3.802404683000176],[-59.595401570999904,3.816538188000123],[-59.59971655299998,3.833126322000127],[-59.60250707999995,3.855683085000152],[-59.59633174699988,3.875888570000142],[-59.58178483099991,3.899194641000178],[-59.56315547799994,3.918185730000147],[-59.5445778,3.925704651000089],[-59.53470760099992,3.927099915000156],[-59.52922989999993,3.931905823000164],[-59.5276537689999,3.939528097000135],[-59.52959163399992,3.949449971000135],[-59.536826334999915,3.957692362000088],[-59.54868607699992,3.96192983000013],[-59.58038956699994,3.967123311000136],[-59.59000138399994,3.966709900000125],[-59.59628007099993,3.970637309000097],[-59.595375732999905,3.996372172000179],[-59.59971655299998,4.002263285000183],[-59.605736857999915,4.007146708000121],[-59.61981868499995,4.032726543000165],[-59.65369258699994,4.064197489000207],[-59.66325272699995,4.079726258000136],[-59.66010046399989,4.103187357000195],[-59.64899003099986,4.119801330000129],[-59.64617366599993,4.134038187000101],[-59.66736100299996,4.150574646000095],[-59.710329956999935,4.164449768000154],[-59.72673722299991,4.176464539000122],[-59.73846777399989,4.202767842000156],[-59.74043147799993,4.213645732000117],[-59.74053483099993,4.22232737200008],[-59.737951008999936,4.240000712000082],[-59.7355222169999,4.245840149000159],[-59.726608032999955,4.257699891000186],[-59.724489298999885,4.264056091000114],[-59.726556355999946,4.270696513000118],[-59.736684935999904,4.282091167000203],[-59.73846777399989,4.286587016000141],[-59.727796589999876,4.305293884000206],[-59.693612630999986,4.340692240000138],[-59.68738562099992,4.364463399000101],[-59.6871150579999,4.3714655590001],[-59.68673966499992,4.381180725000135],[-59.69046036799995,4.384462179000138],[-59.701958374999975,4.385650737000148],[-59.71350805699989,4.389371440000161],[-59.72234472699992,4.397717184000129],[-59.729915323999954,4.407535706000188],[-59.737951008999936,4.415571391000185],[-59.796267862999876,4.448205058000155],[-59.80962622099992,4.465749207000115],[-59.817687744999915,4.456835022000107],[-59.82624019399993,4.454612936000103],[-59.84763423699994,4.460245667000123],[-59.852362629999924,4.460762431000162],[-59.86324051999989,4.460659078000134],[-59.8676330159999,4.4619768270001],[-59.871689615999884,4.468229675000188],[-59.868847411999916,4.480916240000141],[-59.872929849999935,4.484688620000156],[-59.885823119999905,4.484740296000084],[-59.905279296999915,4.475283509000107],[-59.91455521699993,4.474353333000152],[-59.919929564999904,4.479210917000088],[-59.93429561399997,4.498253683000144],[-59.943313151999945,4.503912252000177],[-59.953131673999906,4.505875956000125],[-59.96468135699984,4.506496074000097],[-59.97455155499992,4.503705546000134],[-59.97889237499991,4.495411479000083],[-59.98455094499994,4.488796895000178],[-59.996979125999935,4.490760600000115],[-60.02069860899988,4.498873800000126],[-60.04018062399987,4.495928243000122],[-60.05560603899994,4.491587422000137],[-60.06625138399994,4.494326274000173],[-60.07154821799989,4.512542216000128],[-60.07687089099994,4.519957785000145],[-60.087774617999905,4.525538839000163],[-60.09860083099994,4.52600392700019],[-60.10384598799996,4.517994080000122],[-60.10619726599989,4.506599427000126],[-60.1120108639999,4.502155253000112],[-60.12092504899991,4.502361959000069],[-60.132862304999946,4.504868266000145],[-60.148778645999954,4.513007304000155],[-60.15999243199991,4.527786763000165],[-60.164850016999935,4.546209412000081],[-60.16154272499995,4.565200500000145],[-60.13482600899996,4.593545024000136],[-60.126221883999925,4.59499196400013],[-60.10614558899989,4.595353699000128],[-60.097076374999915,4.598557638000101],[-60.08769710299986,4.607523499000138],[-60.08428645899994,4.616928610000102],[-60.083201253999874,4.627083028000158],[-60.08066910899995,4.638322652000113],[-60.075630655999895,4.650285747000154],[-60.047053588999944,4.691756084000133],[-60.0384753019999,4.708008321000135],[-60.03245499699998,4.725423279000083],[-60.030077880999926,4.744362691000119],[-60.03452205499994,4.787796733000121],[-60.0204660649999,4.832290141000115],[-60.01795975799993,4.892234802000189],[-60.01100927799993,4.921716207000202],[-60.003593708999915,4.939828796000128],[-60.000208902999894,4.958328960000159],[-59.99927872799995,4.996879578000133],[-59.98150203499992,5.057418518000176],[-59.98310400499994,5.085943909000136],[-60.01100927799993,5.100025737000152],[-60.055115112999914,5.125088806000164],[-60.075734008999916,5.140824280000145],[-60.088703914999975,5.15539380700011],[-60.09123693899994,5.158239238000164],[-60.12301794499987,5.231852316000171],[-60.13172542399993,5.243401998000109],[-60.17655472799993,5.227149760000188],[-60.19094661499991,5.239939677000166],[-60.20030004899988,5.263452453000156],[-60.21342586299994,5.267224833000085],[-60.255206258999884,5.256450297000157],[-60.2737322599999,5.247355245000094],[-60.31406571499988,5.206918436000193],[-60.33308264199994,5.193766785000122],[-60.35499344899989,5.193172506000167],[-60.39894425499995,5.208313700000176],[-60.41979569599991,5.207228496000184],[-60.42741796899988,5.200768942000124],[-60.439122680999866,5.181390279000155],[-60.448967040999946,5.174233094000114],[-60.456356770999946,5.174698181000139],[-60.46312638399988,5.180020853000187],[-60.47002518699995,5.186867981000148],[-60.47749243199988,5.191932271000127],[-60.49741369699989,5.195937195000113],[-60.55384436099993,5.188056539000172],[-60.56828792399994,5.189710185000123],[-60.57939835699997,5.194851990000117],[-60.58970780399997,5.201208191000148],[-60.60177425199995,5.206582540000113],[-60.61355647799984,5.208933818000148],[-60.672958536999886,5.213016256000159],[-60.69517940299994,5.211931051000163],[-60.73985367899988,5.202138367000188],[-60.816903239999895,5.285079041000131],[-60.892660888999906,5.368562317000126],[-60.96849605399989,5.452071432000196],[-61.044253702999896,5.535606385000107],[-61.12001135299996,5.619115499000188],[-61.195820678999944,5.702676290000099],[-61.27160416699993,5.786107890000082],[-61.347361816999914,5.869668681000163],[-61.37960791099991,5.905299581000151],[-61.39671280899994,5.945581360000105],[-61.38627417099991,5.956588440000189],[-61.352762003999906,5.975191956000145],[-61.33808589699993,5.986793314000096],[-61.291189534999965,6.061155701000189],[-61.27855464699993,6.093040060000162],[-61.26938208099994,6.107225240000119],[-61.25610123699994,6.114382426000162],[-61.222924967999916,6.120531921000136],[-61.20651770099997,6.125777079000159],[-61.19447709099998,6.132856750000172],[-61.18473608499994,6.146008403000152],[-61.17398738699992,6.171639913000206],[-61.16111995499992,6.182879537000176],[-61.14734818499997,6.185049948000156],[-61.13269791699992,6.18355133100016],[-61.1215616449999,6.186651916000187],[-61.118357706999916,6.202568258000127],[-61.11804764899992,6.216236674000143],[-61.11285416699991,6.254141337000134],[-61.11479203299993,6.264011536000125],[-61.11794429499992,6.267241313000099],[-61.12135493999992,6.269463400000106],[-61.12414546799996,6.276233012000134],[-61.129080566999924,6.283312683000162],[-61.1467022299999,6.294216411000121],[-61.15197322599994,6.303363139000112],[-61.159492146999895,6.331268412000099],[-61.16091324899988,6.342353007000113],[-61.15481542999993,6.390567119000195],[-61.14993200799998,6.404442241000169],[-61.1410953379999,6.416457011000134],[-61.13897660299992,6.424802755000201],[-61.1385631919999,6.433070984000153],[-61.139751749999924,6.441261698000175],[-61.1425939529999,6.449426575000188],[-61.15347184299994,6.464361064000158],[-61.16303198299994,6.494281718000181],[-61.17086096199997,6.50924204500015],[-61.186131347999925,6.523323873000081],[-61.2000839849999,6.531101176000092],[-61.20966996299992,6.540971375000169],[-61.211969563999844,6.56143524200013],[-61.20478653999991,6.595825908000165],[-61.19018794799993,6.632877909000143],[-61.17065425599992,6.66850881000012],[-61.1393124999999,6.704449768000188],[-61.12982987499993,6.715844421000085],[-61.110967976999916,6.719513449000175],[-61.08905716999996,6.717498067000135],[-61.07040197799998,6.711865336000102],[-61.06122941099997,6.730081279000145],[-61.04006791199993,6.726980693000201],[-61.01867386999994,6.72044362400014],[-61.00025122099992,6.734370422000126],[-60.954595093999934,6.728737691000092],[-60.93382116699988,6.731734925000112],[-60.92836930399997,6.735869039000121],[-60.901239176999916,6.764420268000094],[-60.899482177999936,6.768554383000108],[-60.899068766999925,6.776770935000144],[-60.90129085299992,6.786021016000149],[-60.91116105199993,6.800025329000149],[-60.91338313799991,6.811213277000192],[-60.90756953999993,6.815244039000092],[-60.89457291699992,6.814158834000096],[-60.87240372799996,6.808112692000151],[-60.86571162999987,6.803306783000153],[-60.85852860499992,6.796459656000181],[-60.8496144209999,6.789948426000123],[-60.83762548799992,6.786356913000148],[-60.8282978929999,6.787132059000156],[-60.80525020399994,6.792480571000111],[-60.79351965299994,6.793824158000163],[-60.773055785999894,6.788423971000114],[-60.73646887199995,6.764782003000093],[-60.72153438299998,6.759691874000097],[-60.70034704699992,6.767081604000111],[-60.68414648499993,6.784031474000116],[-60.655801961999934,6.824571635000126],[-60.63954972399992,6.837723287000187],[-60.62068782599991,6.845888164000115],[-60.54872839399993,6.863096415000186],[-60.42095841499991,6.94221303400019],[-60.394190022999936,6.948465881000089],[-60.37734350599997,6.938544007000189],[-60.368093424999955,6.988101705000162],[-60.35969600399997,7.004896546000126],[-60.34458064799989,7.017608948000174],[-60.32755326399994,7.028564352000146],[-60.313419759999896,7.040243225000125],[-60.303575398999925,7.054144185000112],[-60.29579809599991,7.070732321000107],[-60.291586466999966,7.088302307000092],[-60.29233577499988,7.105252177000181],[-60.29993221099994,7.121013489000163],[-60.31282548099994,7.132589009000114],[-60.34757788099998,7.151915995000167],[-60.34827287499994,7.152684071000124],[-60.3601094169999,7.165765279000126],[-60.372020833999926,7.172276509000198],[-60.3851724859999,7.173310038000182],[-60.40147640099993,7.170881246000121],[-60.41581660999992,7.171346334000149],[-60.42674617499997,7.176875713000143],[-60.43713313799992,7.183748678000113],[-60.449509643999875,7.18834788000008],[-60.47532202199989,7.188502910000111],[-60.49661271199998,7.180596416000157],[-60.5128649499999,7.165196839000173],[-60.53490494799987,7.125767721000159],[-60.54800492399994,7.125509338000184],[-60.61763891599994,7.180389710000114],[-60.62841345299998,7.191138408000128],[-60.64306372099989,7.220904032000121],[-60.64355464699992,7.250669658000106],[-60.63110062699991,7.277696432000141],[-60.60676102799991,7.299452209000151],[-60.602239339999905,7.306531881000168],[-60.59996557699994,7.313921610000179],[-60.599862223999935,7.321879781000148],[-60.60177425199995,7.330148011000104],[-60.61055924499993,7.343635559000163],[-60.622005574999946,7.371540833000139],[-60.628981892999946,7.384356588000131],[-60.63608740299989,7.389834290000111],[-60.645156616999934,7.393399963000177],[-60.65324397799994,7.39846425400016],[-60.65727473999994,7.408127747000094],[-60.65691300499992,7.416551005000173],[-60.65582779999993,7.422855530000091],[-60.65626704999996,7.428798320000098],[-60.66063370799994,7.436136373000181],[-60.67419877199992,7.445489807000128],[-60.68812556999992,7.44864207000009],[-60.70065710499992,7.4534996550002],[-60.723833984999914,7.495822652000115],[-60.729699259999904,7.510343730000158],[-60.730577758999935,7.525433248000154],[-60.71649593199993,7.551581523000152],[-60.6711498619999,7.56605092400018],[-60.65562109399988,7.585222880000103],[-60.64148758999993,7.610906067000172],[-60.63169490599998,7.624600322000105],[-60.6251578369999,7.629457906000126],[-60.61066259799987,7.626822408000108],[-60.601257486999906,7.63385040300011],[-60.597459269999966,7.646717834000114],[-60.599862223999935,7.661548971000144],[-60.58451432299995,7.688524068000162],[-60.58441096999994,7.699376119000121],[-60.587718261999925,7.71834137000016],[-60.58699479199993,7.727126363000153],[-60.5820855309999,7.736324769000149],[-60.55958044499988,7.763041483000122],[-60.53984004799992,7.800093486000094],[-60.525758219999915,7.813374329000098],[-60.50327897199988,7.820867412000126],[-60.418503784999956,7.819368795000116],[-60.37475968499987,7.823606263000072],[-60.350420084999975,7.8417963670002],[-60.3424102379999,7.864792379000164],[-60.32034440099997,7.884739482000086],[-60.27187190799992,7.917760722000152],[-60.26799843699987,7.921262469000169],[-60.253294229999966,7.934555562000113],[-60.24301061999997,7.950575256000164],[-60.231125040999956,7.964114482000141],[-60.18309179699988,7.98266632100018],[-60.16572851599997,7.99703236900018],[-60.14978633699994,8.01346547500016],[-60.12921911699996,8.028813375000126],[-60.10790258899996,8.035557150000159],[-60.06800838299991,8.03175893200013],[-60.046485148999885,8.032921652000141],[-60.0295869549999,8.042817688000126],[-60.019458373999925,8.060310161000174],[-60.01100927799993,8.100436911000187],[-59.99933040399995,8.115397237000153],[-59.99801265499992,8.12705027300012],[-60.000544799999886,8.138548279000148],[-60.00067399099992,8.152940165000146],[-59.99331009899992,8.168520609000097],[-59.96767858899997,8.188390198000178],[-59.95705908199997,8.200146587000177],[-59.939721638999885,8.208440654000128],[-59.88975052899988,8.219886983000137],[-59.86920914699991,8.221127218000092],[-59.84846105999989,8.227741801000178],[-59.82928910299995,8.245105083000098],[-59.81665421599993,8.26719675700019],[-59.81559484899995,8.287763977000097],[-59.855618244999924,8.352126974000086],[-59.95969458099997,8.46816640300011],[-60.02097657399985,8.557976760000187],[-60.02098548099991,8.558010158000116],[-60.001088019999905,8.548895575000117],[-59.968169725999935,8.527573960000069],[-59.932484503999966,8.491766669000143],[-59.87531490799992,8.405218817000076],[-59.8377986319999,8.369289455000086],[-59.80939693899995,8.354681708000072],[-59.760568813999946,8.341498114000117],[-59.73542232999998,8.32892487200013],[-59.68057206899988,8.289211330000114],[-59.65184485599991,8.273667710000112],[-59.622181769999884,8.267523505000142],[-59.61310787699989,8.252142645000106],[-59.61123613199993,8.250148830000157],[-59.609852667999945,8.242092190000122]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ecuador","sov_a3":"ECU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ecuador","adm0_a3":"ECU","geou_dif":0,"geounit":"Ecuador","gu_a3":"ECU","su_dif":0,"subunit":"Ecuador","su_a3":"ECU","brk_diff":0,"name":"Ecuador","name_long":"Ecuador","brk_a3":"ECU","brk_name":"Ecuador","brk_group":null,"abbrev":"Ecu.","postal":"EC","formal_en":"Republic of Ecuador","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ecuador","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":12,"pop_est":14573101,"gdp_md_est":107700,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"EC","iso_a2":"EC","iso_a3":"ECU","iso_n3":"218","un_a3":"218","wb_a2":"EC","wb_a3":"ECU","woe_id":23424801,"woe_id_eh":23424801,"woe_note":"Exact WOE match as country","adm0_a3_is":"ECU","adm0_a3_us":"ECU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ECU.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-80.11510169199994,-2.997979424999855],[-80.13103311999987,-3.020920851999918],[-80.16681881399987,-3.017347914999959],[-80.18675696499986,-3.028985283999887],[-80.20372473899992,-3.034112237999977],[-80.2280981109999,-3.032159112999935],[-80.25157630099994,-3.026055596999868],[-80.26593990799991,-3.018487237999821],[-80.27185378199994,-2.996405234999912],[-80.2657982599999,-2.9609532529999],[-80.26220378999989,-2.840848014999906],[-80.25865637899992,-2.827325127999856],[-80.22496497299991,-2.765313408999901],[-80.21068274599992,-2.724867445999947],[-80.19640051999991,-2.714613539999931],[-80.1355688139999,-2.69695403399983],[-80.08088131399987,-2.669854424999897],[-80.05988521999993,-2.662774346999839],[-80.01451575399992,-2.664239190999893],[-79.94579016799992,-2.706638278999876],[-79.90282141799985,-2.717461846999882],[-79.90440833199989,-2.72519296699997],[-79.90721594999985,-2.732354424999841],[-79.91124426999991,-2.738864841999913],[-79.91649329299992,-2.744805596999853],[-79.92764238199993,-2.754164320999877],[-79.9779353509999,-2.775811455999957],[-79.98110917899996,-2.784600518999838],[-79.99518795499989,-2.798028252999842],[-79.99840247299994,-2.803399346999882],[-80.00446529899993,-2.818780205999829],[-80.01268469999985,-2.834161065999865],[-80.02098548099991,-2.842868747999858],[-80.02310136599993,-2.843031507999825],[-80.03370921499992,-2.861226874999857],[-80.04571553799991,-2.885232936999884],[-80.05832398399988,-2.908038894999933],[-80.0649291849999,-2.924243592999829],[-80.08115258099994,-2.930851659999902],[-80.09437160899998,-2.945861655999906],[-80.0937632559999,-2.969266838999872],[-80.10899817599994,-2.983575127999885],[-80.11510169199994,-2.997979424999855]]],[[[-79.83323667999994,-2.636017325],[-79.85751088699996,-2.651186078999899],[-79.87723938099992,-2.649677722999968],[-79.88180112699987,-2.626939803999874],[-79.86815874399989,-2.589033273999817],[-79.8469355469999,-2.534443061999838],[-79.81963971599987,-2.485910851999975],[-79.80900672999994,-2.511684664999904],[-79.78472090999992,-2.520767103999901],[-79.77257069499986,-2.541987347999921],[-79.79380542299992,-2.573840450999966],[-79.82870193999989,-2.59205063799989],[-79.83323667999994,-2.636017325]]],[[[-89.66128495999993,-1.340101820999919],[-89.6346736319999,-1.348809502999913],[-89.61457271999984,-1.370049737999892],[-89.61327063699994,-1.391696872999972],[-89.64329993399988,-1.401625257999896],[-89.67609615799988,-1.39755624799993],[-89.75690670499989,-1.360609632999967],[-89.73639889199984,-1.340101820999919],[-89.72069251199989,-1.343194268999824],[-89.67369544199993,-1.34254322699995],[-89.66128495999993,-1.340101820999919]]],[[[-90.47191321499992,-1.216729424999883],[-90.4625544909999,-1.230889580999985],[-90.4426977199999,-1.225681247999901],[-90.41535396999993,-1.231133721999853],[-90.39110266799992,-1.242445570999919],[-90.38068600199993,-1.254489841999842],[-90.37852942599994,-1.257256768999895],[-90.37385006399992,-1.260430596999953],[-90.36900794199994,-1.264906507999839],[-90.36636308499996,-1.271905205999914],[-90.36705481699991,-1.278741143999838],[-90.36949622299994,-1.282647393999838],[-90.37197831899996,-1.285414320999891],[-90.37319902299987,-1.288669528999932],[-90.37588456899994,-1.292413018999951],[-90.38898678299992,-1.296156507999811],[-90.39370683499993,-1.298516533999859],[-90.39476477799988,-1.302911065999837],[-90.39289303299991,-1.315036716999927],[-90.39370683499993,-1.319594007999882],[-90.39932206899994,-1.325860283999916],[-90.43211829299995,-1.345961195999877],[-90.43862870999992,-1.347426039999931],[-90.47520911399995,-1.342054945999962],[-90.48949133999986,-1.33163827899989],[-90.50316321499989,-1.318291924999883],[-90.52403723899997,-1.305922132999839],[-90.5148005849999,-1.295586846999839],[-90.50621497299989,-1.282403252999885],[-90.49986731699997,-1.268161716999884],[-90.49323482999989,-1.237969658999873],[-90.48346920499995,-1.222263278999904],[-90.47191321499992,-1.216729424999883]]],[[[-89.30809485599988,-0.685642184999892],[-89.29564368399994,-0.693454684999963],[-89.28258216099997,-0.693291924999826],[-89.2694392569999,-0.688246351999879],[-89.25719153599994,-0.68157317499984],[-89.2547908189999,-0.719170830999829],[-89.27318274599995,-0.759942315999893],[-89.30211341099994,-0.795993747999859],[-89.3316951159999,-0.819431247999916],[-89.36729895699995,-0.829766533999845],[-89.37267005099991,-0.83611419099995],[-89.37458248599998,-0.845472914999902],[-89.38634192599994,-0.874607028999861],[-89.40660559799997,-0.905043226999823],[-89.42003333199995,-0.91936614399998],[-89.43472245999996,-0.929294528999904],[-89.45030676999994,-0.934258721999939],[-89.46556555899991,-0.935967705999943],[-89.49962317599994,-0.935479424999954],[-89.50999915299994,-0.938734632999825],[-89.53075110599994,-0.953301690999851],[-89.54458574099993,-0.956638278999875],[-89.55431067599989,-0.953708591999856],[-89.57591712099988,-0.940036716999913],[-89.58556067599994,-0.935479424999954],[-89.62120520699992,-0.93027109199987],[-89.62995357999998,-0.925876559999892],[-89.63141842399995,-0.91668059699991],[-89.62511145699989,-0.905938408999987],[-89.61290442599991,-0.891045830999857],[-89.60460364499994,-0.883070570999891],[-89.56480872299993,-0.864190362999864],[-89.55142167899996,-0.853610934999907],[-89.54088294199987,-0.819431247999916],[-89.53050696499987,-0.818291924999883],[-89.48892167899993,-0.808200779],[-89.47720292899993,-0.796807549999869],[-89.46202551999994,-0.764743747999887],[-89.45303300699993,-0.753187757999854],[-89.42662512899994,-0.728285414999917],[-89.42105058499992,-0.719821872999873],[-89.41323808499993,-0.713474216999856],[-89.37718665299988,-0.700290622999901],[-89.36644446499986,-0.68962981599995],[-89.35118567599989,-0.688897393999923],[-89.32022050699996,-0.680759372999915],[-89.30809485599988,-0.685642184999892]]],[[[-90.24063066299995,-0.507012627999828],[-90.24156653599994,-0.518487237999878],[-90.24058997299997,-0.528008721999953],[-90.23298092399992,-0.531996351999851],[-90.22276770699989,-0.532891533999845],[-90.20311438699994,-0.537286065999822],[-90.19196529899992,-0.538262627999899],[-90.18053137899994,-0.54851653399983],[-90.18297278599991,-0.572035414999874],[-90.19570878799993,-0.613946221999882],[-90.19522050699996,-0.625746351999936],[-90.18960527299996,-0.640313408999873],[-90.18822180899987,-0.651543877999885],[-90.19058183499992,-0.654392184999921],[-90.19920813699994,-0.676364841999842],[-90.19880123599992,-0.68157317499984],[-90.21556555899984,-0.688246351999879],[-90.22765051999994,-0.703871351999865],[-90.23818925699993,-0.722263278999904],[-90.2503555979999,-0.736911716999913],[-90.25951087099988,-0.743340752999842],[-90.26475989499997,-0.74504973799985],[-90.31362870999996,-0.74382903399983],[-90.31859290299991,-0.747165622999859],[-90.32384192599989,-0.766859632999896],[-90.33706620999993,-0.776950778999861],[-90.35480709499993,-0.779880466999884],[-90.37319902299987,-0.778415622999916],[-90.40729732999998,-0.76669687299993],[-90.4288630849999,-0.762465101999823],[-90.43553626199994,-0.757582290000016],[-90.44029700399994,-0.752699476999865],[-90.44554602799994,-0.750583591999856],[-90.4530330069999,-0.74382903399983],[-90.47435462099986,-0.712579033999859],[-90.48306230399996,-0.702732028999932],[-90.49767005099997,-0.704359632999854],[-90.51634680899994,-0.699965101999879],[-90.53380286399991,-0.691827080999943],[-90.54454505099991,-0.68157317499984],[-90.54625403599994,-0.668877862999864],[-90.54454505099991,-0.62021249799993],[-90.53868567599996,-0.594170830999943],[-90.52757727799985,-0.569919528999876],[-90.5130916009999,-0.548760674999869],[-90.49738521999983,-0.531996351999851],[-90.48770097599987,-0.52548593499985],[-90.46056067599994,-0.513848565999851],[-90.44896399599995,-0.510918877999913],[-90.43805904899995,-0.511325778999918],[-90.41551673099988,-0.51677825299987],[-90.40794837099992,-0.517754815999851],[-90.39850826699993,-0.515069268999866],[-90.38711503799996,-0.507500908999916],[-90.38068600199993,-0.504652601999879],[-90.28587805899988,-0.493910414999945],[-90.26398678299995,-0.483005466999884],[-90.25845292899993,-0.485121351999894],[-90.25251217399992,-0.488539320999905],[-90.24697831899988,-0.492771091999913],[-90.24282792899993,-0.49724700299997],[-90.24063066299995,-0.507012627999828]]],[[[-91.45567786399997,-0.257582289999945],[-91.42088782499991,-0.293064059999935],[-91.41161048099985,-0.298597914999945],[-91.39952551999994,-0.307875257999825],[-91.39683997299997,-0.329034112999906],[-91.40111243399988,-0.366875908999944],[-91.40111243399988,-0.452894789999945],[-91.41087805899994,-0.458428643999866],[-91.48005123599991,-0.486260674999841],[-91.49742591099991,-0.489922783999887],[-91.50755774599986,-0.490411065999865],[-91.51695716099988,-0.487237237999906],[-91.53819739499997,-0.473077080999886],[-91.5567113919999,-0.468357028999875],[-91.58665930899986,-0.456312757999868],[-91.59137936099987,-0.455661716999913],[-91.60187740799992,-0.456963799999912],[-91.60651607999995,-0.456312757999868],[-91.61139889199993,-0.452813408999873],[-91.61156165299988,-0.449639580999985],[-91.61082923099985,-0.446221612999977],[-91.61335201699987,-0.44198984199987],[-91.6305232409999,-0.424004815999837],[-91.64366614499994,-0.403578382999868],[-91.65196692599993,-0.381117445999948],[-91.65868079299989,-0.335219007999967],[-91.67137610599993,-0.297539971999896],[-91.6685684889999,-0.28492604],[-91.58096269399996,-0.287204684999978],[-91.54381262899997,-0.268243096999967],[-91.49730383999992,-0.257582289999945],[-91.47419186099988,-0.249281507999868],[-91.46739661399994,-0.2504208309999],[-91.45567786399997,-0.257582289999945]]],[[[-90.77725175699996,-0.147719007999882],[-90.75755774599992,-0.161797783999916],[-90.68932044199991,-0.184828382999882],[-90.66494706899996,-0.188734632999967],[-90.63247636599996,-0.201267184999878],[-90.58043372299991,-0.259698174999869],[-90.55199133999989,-0.278090101999808],[-90.55626380099991,-0.279066664999874],[-90.5589086579999,-0.280450127999856],[-90.56501217399997,-0.28492604],[-90.55150305899991,-0.292738539999917],[-90.55817623599995,-0.310804945999934],[-90.5792537099999,-0.343031507999882],[-90.58678137899994,-0.363702080999886],[-90.60488847599994,-0.369805596999882],[-90.62751217399992,-0.366875908999944],[-90.6702774729999,-0.353936455999857],[-90.74006100199998,-0.353936455999857],[-90.75938880099991,-0.34783294099995],[-90.77717037699998,-0.336683851999851],[-90.79588782499985,-0.330661716999927],[-90.81822669199988,-0.339613539999874],[-90.83210201699987,-0.322686455999886],[-90.83861243399987,-0.297051690999908],[-90.84894771999987,-0.275648695999877],[-90.87413489499994,-0.271254164999888],[-90.83165442599997,-0.212660414999945],[-90.82909094999988,-0.199314059999935],[-90.83507239499988,-0.181573174999841],[-90.8268123039999,-0.164157809999878],[-90.81037350199989,-0.151299737999935],[-90.79157467399995,-0.147719007999882],[-90.78433183499993,-0.153008721999939],[-90.78136145699992,-0.152601820999934],[-90.77725175699996,-0.147719007999882]]],[[[-91.33967037699992,0.15379466400006],[-91.32363847599993,0.139308986000017],[-91.31602942599996,0.116278387000122],[-91.31240800699993,0.094916083000072],[-91.30858313699991,0.085598049000126],[-91.29531816299988,0.075913804000081],[-91.2835180329999,0.033189195000148],[-91.27476966099994,0.023504950000017],[-91.26854407499988,0.019273179000081],[-91.25438391799995,0.00043366100013],[-91.24742591099997,-0.003838799999869],[-91.22598222599993,-0.004733981999863],[-91.21597245999993,-0.006849867999961],[-91.20929928299998,-0.010674737999892],[-91.20221920499992,-0.028252862999835],[-91.20067298099988,-0.052788994999943],[-91.20303300699993,-0.09937916499986],[-91.1845596999999,-0.211032809999921],[-91.17357337099995,-0.228448174999897],[-91.13194739499988,-0.266208591999941],[-91.12804114499988,-0.270765882999811],[-91.12718665299987,-0.27654387799987],[-91.12734941299993,-0.288181247999873],[-91.12413489499987,-0.299574476999922],[-91.11709550699993,-0.304294528999847],[-91.11009680899994,-0.305922132999868],[-91.1068416009999,-0.308851820999891],[-91.00503495999996,-0.373142184999907],[-90.99762936099987,-0.384209893999852],[-90.9952693349999,-0.393487237999892],[-90.98957271999993,-0.401625257999825],[-90.97647050699996,-0.415297132999939],[-90.97199459499988,-0.418145440999893],[-90.95604407499988,-0.422133070999877],[-90.95571855399996,-0.427992445999905],[-90.95824133999989,-0.434014580999829],[-90.96108964799993,-0.439060153999861],[-90.96226966099994,-0.44198984199987],[-90.95335852799991,-0.480075778999947],[-90.94920813699989,-0.521416924999897],[-90.95506751199991,-0.540297132999825],[-90.98204505099997,-0.563409112999878],[-90.9901423819999,-0.579196873],[-90.96784420499995,-0.56454843499999],[-90.96125240799998,-0.573174737999906],[-90.96056067599994,-0.591892184999878],[-90.95604407499988,-0.607110283999859],[-90.91372636599988,-0.614922783999859],[-90.89297441299988,-0.625746351999936],[-90.89460201699988,-0.648125908999873],[-90.88060462099993,-0.649997653999932],[-90.86900794199994,-0.655368747999887],[-90.85973059799997,-0.664157809999864],[-90.85301673099994,-0.67603932099999],[-90.85985266799995,-0.68962981599995],[-90.84642493399986,-0.695245049999869],[-90.81143144399996,-0.730645440999879],[-90.80211341099991,-0.735528252999842],[-90.79596920499992,-0.735528252999842],[-90.79259192599991,-0.738946221999939],[-90.79157467399995,-0.754001559999864],[-90.7965388659999,-0.759942315999893],[-90.82066809799991,-0.769789320999905],[-90.82909094999988,-0.774672132999967],[-90.86046301999991,-0.872653903999989],[-90.8565567699999,-0.897149346999839],[-90.85863196499994,-0.915459893999895],[-90.88027910099991,-0.908786716999856],[-90.89191646999993,-0.925469658999887],[-90.91755123599988,-0.954196872999844],[-90.92870032499991,-0.970310153999989],[-90.9456274079999,-0.962497653999918],[-90.96214758999989,-0.960870049999897],[-90.9938858709999,-0.963474216999884],[-91.01305091099991,-0.968682549999969],[-91.04515540299988,-0.992282809999921],[-91.15977942599994,-1.030205987999935],[-91.18199622299991,-1.024834893999895],[-91.19741777299993,-1.029554945999891],[-91.28726152299993,-1.016859632999925],[-91.39972896999988,-1.018487237999864],[-91.42080644399994,-1.011814059999907],[-91.43586178299995,-0.997491143999909],[-91.44017493399986,-0.986993096999853],[-91.44196529899995,-0.976250908999845],[-91.44200598899994,-0.952813408999944],[-91.44579016799995,-0.941501559999878],[-91.45498613199993,-0.938653252999842],[-91.46654212099995,-0.938571872999859],[-91.47740637899994,-0.935479424999954],[-91.50230872299997,-0.896254164999945],[-91.49323482999998,-0.850681247999887],[-91.46589107999989,-0.807875257999811],[-91.43586178299995,-0.778415622999916],[-91.31916256399987,-0.702732028999932],[-91.31387285099987,-0.694594007999825],[-91.31387285099987,-0.687920830999857],[-91.31045488199987,-0.683282158999845],[-91.29491126199989,-0.68157317499984],[-91.26952063699994,-0.671075127999856],[-91.23477128799988,-0.661879164999888],[-91.22297115799991,-0.661716404],[-91.21198482999993,-0.664727471999839],[-91.2056778639999,-0.66904062299993],[-91.20132402299993,-0.673028252999899],[-91.1961970689999,-0.67603932099999],[-91.17886308499993,-0.681898695999948],[-91.1680802069999,-0.682712497999873],[-91.15778561099988,-0.678806247999873],[-91.15265865799998,-0.672784112999949],[-91.14305579299992,-0.657891533999901],[-91.13756262899996,-0.654880466999899],[-91.13731848899994,-0.64430103999986],[-91.12832597599991,-0.623467705999872],[-91.11436926999994,-0.608005466999941],[-91.09943600199992,-0.613946221999882],[-91.08751380099997,-0.597426039999903],[-91.08678137899994,-0.582452080999872],[-91.09422766799992,-0.569431247999887],[-91.1068416009999,-0.558689059999864],[-91.12018795499989,-0.552422783999916],[-91.14964758999989,-0.543633721999939],[-91.16148841099994,-0.538262627999899],[-91.18517005099997,-0.516534112999835],[-91.20889238199987,-0.484633070999905],[-91.22789466099988,-0.448825778999975],[-91.23721269399991,-0.415297132999939],[-91.23570716099995,-0.386407158999845],[-91.23867753799986,-0.376153252999913],[-91.25084387899997,-0.366875908999944],[-91.25877844999992,-0.36435312299993],[-91.27188066299989,-0.362969658999859],[-91.27818762899994,-0.360039971999839],[-91.28172766799992,-0.355726820999934],[-91.29124915299991,-0.339613539999874],[-91.35195878799996,-0.30722421699987],[-91.37498938699994,-0.28191497199991],[-91.37376868399991,-0.25017669099995],[-91.3937068349999,-0.238376559999978],[-91.40648352799985,-0.216403903999876],[-91.40453040299991,-0.195896091999927],[-91.38060462099995,-0.188734632999967],[-91.39879309799991,-0.162855726999879],[-91.40575110599991,-0.148044528999904],[-91.40851803299998,-0.130791924999897],[-91.40851803299998,-0.096286716999884],[-91.40953528599994,-0.087497653999904],[-91.41372636599995,-0.071343682999938],[-91.41470292899993,-0.061822197999859],[-91.42332923099985,-0.028578382999854],[-91.44554602799991,-0.012058200999874],[-91.47642981699995,-0.011081638999897],[-91.51097571499986,-0.024265231999934],[-91.54552161399997,-0.047946872999873],[-91.56309973899991,-0.051771742999875],[-91.58291581899991,-0.041314385999982],[-91.60338294199988,-0.014214776999879],[-91.60651607999995,-0.007256768999966],[-91.60435950399994,0.001450914000102],[-91.59874426999993,0.005804755000014],[-91.59113521999993,0.008856512000179],[-91.52354895699995,0.046372789000102],[-91.50446529899997,0.066148179000123],[-91.49730383999992,0.106105861],[-91.47256425699996,0.098211981000105],[-91.45274817599994,0.103745835000126],[-91.43374589799993,0.113714911000116],[-91.40111243399988,0.122503973],[-91.39427649599989,0.130560614000117],[-91.38833574099993,0.139878648000078],[-91.38060462099995,0.147040106000105],[-91.36876380099997,0.150620835000083],[-91.35020911399997,0.149888414000145],[-91.33967037699992,0.15379466400006]]],[[[-90.45457923099994,0.267401434000149],[-90.47565670499993,0.263088283000144],[-90.48766028599988,0.267075914000046],[-90.50080318899984,0.280666408000087],[-90.51378333199995,0.283514716000042],[-90.5235082669999,0.287095445000105],[-90.53311113199996,0.295314846000096],[-90.54084225199996,0.304429429000095],[-90.54454505099991,0.310858466000099],[-90.54230709499984,0.333563544000057],[-90.52647864499991,0.350287177000084],[-90.50446529899988,0.361029364000089],[-90.48306230399996,0.365464584999984],[-90.46043860599987,0.35822174700013],[-90.43643144399994,0.346625067000119],[-90.41698157499994,0.330877997000158],[-90.40794837099992,0.310858466000099],[-90.41454016799992,0.296291408000073],[-90.43211829299995,0.280096747000115],[-90.45457923099994,0.267401434000149]]],[[[-90.74449622299993,0.585394598000065],[-90.76056881399992,0.553697007000096],[-90.80524654899989,0.571600653000147],[-90.79816646999991,0.592759506999982],[-90.80492102799988,0.635565497000144],[-90.79775956899991,0.653509833000101],[-90.75698808499996,0.630601304000109],[-90.74449622299993,0.585394598000065]]],[[[-78.89928137899992,1.271429755000099],[-78.91250566299993,1.245266018000066],[-78.93639075399992,1.256822007000082],[-78.9459529289999,1.245591539000088],[-78.95689856699988,1.236314195000119],[-78.97716223899988,1.251776434000149],[-78.99209550699993,1.268296617000118],[-78.99543209499987,1.286810614000132],[-78.98078365799994,1.308335678999981],[-78.90168209499987,1.374172268000038],[-78.90151933499989,1.36465078300013],[-78.90013587099992,1.357977606000162],[-78.8954158189999,1.346177476000108],[-78.89443925699993,1.312648830000072],[-78.89928137899992,1.271429755000099]]],[[[-91.81273352799994,1.372381903000132],[-91.81773841099995,1.368068752000127],[-91.82262122299993,1.371039130000142],[-91.82530676999991,1.377020575000074],[-91.8253474599999,1.382717190000136],[-91.81916256399984,1.386419989000089],[-91.81456458199992,1.384711005000085],[-91.81094316299993,1.377183335000041],[-91.81273352799994,1.372381903000132]]],[[[-91.81753495999993,1.394761460000069],[-91.82046464799991,1.391343492000061],[-91.82201087099989,1.394476630000128],[-91.81753495999993,1.394761460000069]]],[[[-78.68428808699991,1.281886698000136],[-78.66467687999997,1.266642151000099],[-78.64126745599992,1.259407450000126],[-78.62555782099994,1.261991272000131],[-78.61152766899994,1.266435445000056],[-78.60214839699998,1.263644918000182],[-78.60044307499993,1.244421285000072],[-78.59661901899997,1.234085998000154],[-78.5756900639999,1.211968486000146],[-78.57005733299988,1.195845439000067],[-78.55561376999992,1.204113668000105],[-78.54060176699994,1.205353902000141],[-78.4852046309999,1.192641500000178],[-78.47812265099995,1.187119956000117],[-78.46691117399992,1.178378805000122],[-78.37280839099995,1.073785705000105],[-78.34921809999994,1.055802307000107],[-78.33007198099995,1.046500550000175],[-78.27061824599991,1.030480855000135],[-78.25015437899994,1.019628804000092],[-78.12000728399997,0.921236878000144],[-78.07794266799993,0.900773011000098],[-78.00704260299997,0.898189189],[-77.93903641799992,0.872557678000121],[-77.92818436699994,0.872350972000078],[-77.92306840099988,0.875038147000097],[-77.91826249199997,0.874418030000044],[-77.90854732299994,0.864186096000139],[-77.90498164899995,0.85400584000017],[-77.90529170799994,0.842895406000153],[-77.90322464999988,0.832095032000126],[-77.8926309819999,0.82305165600016],[-77.86932491099995,0.814059957000126],[-77.84798254399996,0.809254048000128],[-77.82772538299996,0.808892314000119],[-77.80762325099991,0.813026428000143],[-77.72788651499994,0.843308818000168],[-77.70318518099991,0.843102112000125],[-77.6733162029999,0.819641012000147],[-77.66680497299993,0.747707418000019],[-77.64556595999997,0.716288147000157],[-77.5798335369999,0.67091623900005],[-77.543349976,0.656446838000193],[-77.51413779499987,0.660531216000095],[-77.50934688399997,0.661201070000104],[-77.46805741399993,0.650865784000175],[-77.45456986499997,0.602393290000123],[-77.44816198799992,0.49728342700007],[-77.43911861199987,0.463693746000047],[-77.4347261159999,0.433824769000111],[-77.42439082899996,0.408296610000178],[-77.39746740699988,0.387626038000164],[-77.36253413899996,0.374810283],[-77.25613236599995,0.3532095340002],[-77.23727046699995,0.346388245000071],[-77.22254268499992,0.338843486000115],[-77.206936402,0.334192607000148],[-77.18518062399997,0.335432841000085],[-77.134796102,0.354346416000126],[-77.11743282099988,0.357550354000182],[-77.1038560799999,0.354140948000179],[-77.08286128799998,0.34886871300013],[-77.0446207279999,0.305667216000103],[-77.0149067799999,0.29564198800017],[-76.97490921999994,0.294918518000173],[-76.96245520099987,0.292851461000112],[-76.94586706599995,0.287063701000136],[-76.9356868079999,0.279829000000163],[-76.91387935399987,0.257814840000179],[-76.89682613199994,0.245309143000014],[-76.88246008299993,0.240141500000092],[-76.8673188889999,0.23952138200012],[-76.79786576399994,0.249960022000153],[-76.78525671399993,0.248719788000116],[-76.74959997599993,0.23270009400008],[-76.7343554279999,0.233113505000091],[-76.7368875739999,0.27290435800009],[-76.72453690599991,0.277555237000158],[-76.68996537299992,0.268150126000108],[-76.64123449699987,0.262775778000133],[-76.62686844899989,0.258538310000091],[-76.61105546099988,0.247479553000176],[-76.58433874499994,0.222571513000034],[-76.56542517199998,0.216060283000061],[-76.5508007409999,0.217920635000155],[-76.52491084799996,0.231253154000086],[-76.42569209899992,0.242725322000183],[-76.40801875799991,0.254507548000092],[-76.41835404499992,0.320860087000128],[-76.41587357699987,0.395377503000162],[-76.41639033999991,0.401888733000135],[-76.40693355399992,0.400131735000073],[-76.38533280499986,0.401475322000124],[-76.37468745999986,0.403542378000097],[-76.36538570199994,0.406953023000113],[-76.3405293379999,0.436615296000085],[-76.33494828399995,0.441679586000063],[-76.32972896399994,0.444780172000179],[-76.31159053599993,0.458526103000125],[-76.3004801029999,0.46162668900017],[-76.2905065519999,0.457182516000074],[-76.2629113369999,0.428037008000146],[-76.24368770399988,0.415427958000123],[-76.22374060099995,0.40674631800016],[-76.20208817599988,0.401785380000206],[-76.1775935469999,0.400131735000073],[-76.1558377689999,0.401268616000081],[-76.14467565999986,0.400441793000141],[-76.13630407799991,0.396721090000128],[-76.13030961099996,0.386075745000056],[-76.12467688099994,0.359617411000144],[-76.11956091399995,0.351762594000206],[-76.10131913299998,0.352692769000072],[-76.0759976809999,0.360754293000156],[-76.05346675699988,0.363544820000115],[-76.04385493999987,0.348558655000062],[-76.0395141199999,0.336673076000125],[-75.97248978699989,0.25192372700019],[-75.96752884999992,0.239314677000067],[-75.96298132399991,0.220091044000057],[-75.9519742439999,0.203967997000163],[-75.92711787899995,0.181023662000044],[-75.86634639499992,0.143506572000049],[-75.85797481299997,0.129760640000185],[-75.81787390199989,0.100098369000136],[-75.78971024599991,0.084388733000083],[-75.77322546399995,0.077774149000078],[-75.75384680199997,0.073019918000085],[-75.73162593599994,0.07115956700008],[-75.7086299239999,0.073329977000157],[-75.66550594099996,0.083148499000131],[-75.64666988099995,0.085422262000066],[-75.62677445499993,0.078911031000175],[-75.61096146699995,0.064648336000104],[-75.598249065,0.050385641000048],[-75.5879654549999,0.043874410000157],[-75.57013708499996,0.037983297000068],[-75.52311153199989,-0.003977965999837],[-75.46492386899988,-0.039738056999852],[-75.44089432899995,-0.048109638999918],[-75.42141231299996,-0.062165628999935],[-75.36544673699996,-0.07281097399985],[-75.30196223999991,-0.096065368999945],[-75.28348791499987,-0.107020771999842],[-75.2953476559999,-0.122316995999896],[-75.31795609599993,-0.138336689999932],[-75.33074601299992,-0.144641214999865],[-75.34405269399994,-0.149085387999861],[-75.36002071199997,-0.149912210999972],[-75.39423050999997,-0.145054625999876],[-75.40257625399994,-0.145778095999873],[-75.42949967499996,-0.163658141999832],[-75.45526037699995,-0.161177672999855],[-75.5257470299999,-0.12324717199985],[-75.53926041799988,-0.120043232999876],[-75.55329056799988,-0.119836527999908],[-75.57117061399994,-0.121696878999913],[-75.58677689599998,-0.118699645999811],[-75.60501867699995,-0.111361592999828],[-75.62300207599992,-0.106607360999831],[-75.63760066799998,-0.111464945999842],[-75.6432075609999,-0.128828226999858],[-75.63840165199991,-0.150945738999866],[-75.62863480699994,-0.170479430999961],[-75.61956559299998,-0.180918069999905],[-75.61013464399994,-0.182985127999871],[-75.5887147629999,-0.181331482],[-75.57897375499996,-0.182675068999885],[-75.56682979399997,-0.190013122999886],[-75.54590083899987,-0.209753518999847],[-75.53352433299992,-0.216058043999865],[-75.5121561279999,-0.223086038999867],[-75.49618811099995,-0.233111266999799],[-75.48476761999987,-0.247684020999941],[-75.45272823099995,-0.360648701999935],[-75.43422806899994,-0.403023375999865],[-75.40562516299988,-0.442400817999868],[-75.38699580999992,-0.459970804999841],[-75.37565283299992,-0.466998798999853],[-75.36539506099993,-0.468755797999918],[-75.35307023199996,-0.46772226899985],[-75.34735998599993,-0.470926208999813],[-75.34327754699993,-0.476817321999903],[-75.30428767899994,-0.507099710999839],[-75.30002437399989,-0.511750589999806],[-75.29485673099995,-0.523222757999832],[-75.29098099799992,-0.527976989999914],[-75.28591670799995,-0.529010517999893],[-75.27653743599988,-0.524152933999957],[-75.27204158499987,-0.525703225999976],[-75.26069860899989,-0.543479918999836],[-75.25702958199989,-0.561980081999849],[-75.26013016799993,-0.601254170999823],[-75.25930334499992,-0.609522399999875],[-75.25697790599988,-0.616757100999934],[-75.2555826419999,-0.624301858999885],[-75.25764969999994,-0.633190204999892],[-75.26663539199993,-0.642692317999973],[-75.2666413979999,-0.642698668999884],[-75.27875952199989,-0.648899840999874],[-75.2894307059999,-0.656031188999819],[-75.29397823099991,-0.667916767999841],[-75.29294470299993,-0.677735289999902],[-75.28865555799987,-0.696132100999904],[-75.28813879399992,-0.706260680999861],[-75.29025752799993,-0.716492613999833],[-75.29661372899993,-0.73447601299992],[-75.29702713999987,-0.746981709999915],[-75.25261124699998,-0.897876891999914],[-75.2523011889999,-0.906868590999864],[-75.25390315799993,-0.924128519999854],[-75.25206864499995,-0.933430276999872],[-75.24434301799994,-0.944799092999872],[-75.23475703999995,-0.953170674999839],[-75.22749650099988,-0.963092549999843],[-75.2272639579999,-0.969810484999869],[-75.23620397999994,-0.970430602999926],[-75.28348791499987,-0.970430602999926],[-75.32594010499992,-0.975494892999905],[-75.34872941099991,-0.97497812899995],[-75.35859961,-0.966916604999881],[-75.36441320799997,-0.956891377999938],[-75.37805578699997,-0.941181741999884],[-75.40640030999998,-0.915136819999816],[-75.41257564299994,-0.923921812999893],[-75.42523636899998,-0.973324482999914],[-75.45526037699995,-1.091146748999918],[-75.48528438399988,-1.209072366999877],[-75.51530838999997,-1.326997985999824],[-75.54533239799991,-1.444820250999925],[-75.56003434299993,-1.502594501999823],[-75.57303096599995,-1.537321064999944],[-75.5807400969999,-1.546639795999951],[-75.59654374199994,-1.565743102999875],[-75.65147578999995,-1.616696064999914],[-75.691731731,-1.663618265999958],[-75.74162532599988,-1.721702575999942],[-75.7915447599999,-1.77989023799995],[-75.8415417069999,-1.838077900999877],[-75.89146114199988,-1.89626556399989],[-75.94138057499993,-1.954453226999888],[-75.9913516849999,-2.012640888999897],[-76.04127111899996,-2.070725198999881],[-76.09124222899996,-2.128912861999979],[-76.15087683199994,-2.174594827999911],[-76.21051143399987,-2.220276794999918],[-76.27024938999998,-2.265855406999904],[-76.32988399299998,-2.311537374],[-76.38962194899992,-2.357322692999944],[-76.44925655099993,-2.402901305999848],[-76.50894282999994,-2.448583271999851],[-76.56862910999988,-2.494265238999873],[-76.62526647999994,-2.537673441999857],[-76.66966155799989,-2.564588924999924],[-76.68459102499996,-2.573640238999843],[-76.7766784269999,-2.605782978999869],[-76.90245886199995,-2.649811299999925],[-77.02818762199993,-2.693736266999949],[-77.1540197349999,-2.73766123499989],[-77.2797484949999,-2.781689554999858],[-77.40547725399993,-2.825614522999899],[-77.5312060139999,-2.869642841999863],[-77.65698645099988,-2.913567809999975],[-77.78271520999992,-2.957492776999828],[-77.81036941199991,-2.967149115999888],[-77.84901607299994,-2.980643818999908],[-77.86782629399997,-2.990255634999841],[-77.94146520999996,-3.054541116999899],[-78.04254431199993,-3.189933369999878],[-78.09086177599997,-3.230034280999874],[-78.10491776599989,-3.24543385799987],[-78.1358202729999,-3.304655049999852],[-78.14817093899993,-3.322431742999967],[-78.18460282399994,-3.349510192999929],[-78.19641088899994,-3.363669534999971],[-78.19651424199994,-3.38558034299993],[-78.18496455899991,-3.403770446999886],[-78.16920324699996,-3.414932555999826],[-78.15664587399993,-3.429298603999911],[-78.15452714099987,-3.456790465999802],[-78.16372554599995,-3.477254332999848],[-78.17912512299993,-3.483765563999909],[-78.19685013899996,-3.487589619999866],[-78.21268896599994,-3.500508727999872],[-78.22630570499987,-3.507019958999848],[-78.23586584599997,-3.488829854999977],[-78.24968929099991,-3.424544371999929],[-78.25718237299995,-3.409558206999861],[-78.2696880699999,-3.399532978999929],[-78.31301875899993,-3.387440693999935],[-78.33397355199992,-3.384546813999947],[-78.35079423099998,-3.389611103999925],[-78.36172379599995,-3.408524677999878],[-78.3607936199999,-3.414932555999826],[-78.35469580099993,-3.434569600999851],[-78.35529007999992,-3.445525003999919],[-78.36293819199996,-3.488726500999874],[-78.37587184799995,-3.529348453999901],[-78.37725256399997,-3.533684997999885],[-78.39567521199987,-3.57378590899988],[-78.4023931479999,-3.59435312899987],[-78.40471858799992,-3.613783466999934],[-78.40425349999992,-3.64975026399982],[-78.4000935469999,-3.670110778999856],[-78.40073950199996,-3.679825947999802],[-78.40836177599994,-3.685613708999867],[-78.4211000169999,-3.687784118999858],[-78.42585424899997,-3.689437763999905],[-78.42642268899993,-3.694605406999898],[-78.42637101299991,-3.707214456999921],[-78.41358109499996,-3.771809996999877],[-78.4196789149999,-3.791033629999986],[-78.44407019099991,-3.81480478899995],[-78.45200252399988,-3.819869078999929],[-78.46432735299993,-3.825656839999823],[-78.47037349499996,-3.830204365999847],[-78.48068294299989,-3.8495313519999],[-78.48784012899992,-3.86865163199981],[-78.4977103269999,-3.942652282999816],[-78.49763281299997,-3.949576924999888],[-78.50176692699992,-3.953711038999898],[-78.5157195639999,-3.961359150999968],[-78.5286386729999,-3.965389912999882],[-78.54075679499991,-3.966320088999922],[-78.55189306699992,-3.969213968999909],[-78.5620733239999,-3.979755960999796],[-78.5669050699999,-3.996189065999857],[-78.56592321799994,-4.055720316999924],[-78.5766202399999,-4.100058694999873],[-78.6375725919999,-4.227389423999952],[-78.64710689399989,-4.271107685999851],[-78.65573685699994,-4.290641376999858],[-78.67413366799994,-4.305937600999812],[-78.68242773499989,-4.326918232999901],[-78.68121333899987,-4.364435322999896],[-78.67315181499995,-4.40153900099989],[-78.66098201599996,-4.420659280999885],[-78.63721085599991,-4.435128681999813],[-78.63989803099994,-4.451251728999893],[-78.65534928499994,-4.470165302999831],[-78.66979284699997,-4.493419697999855],[-78.67237666899987,-4.511816507999853],[-78.67144649299989,-4.531763609999871],[-78.67266088899993,-4.550987242999895],[-78.68167842699998,-4.567110290999878],[-78.70893477599992,-4.585108369999915],[-78.71971227999992,-4.592225036999977],[-78.8112829179999,-4.628708597999989],[-78.85306331499996,-4.652273049999819],[-78.89864192799993,-4.694234313999814],[-78.9173487959999,-4.719969177999815],[-78.92861425799988,-4.747461038999958],[-78.9278907879999,-4.774849547999906],[-78.90533402499995,-4.819808043999927],[-78.90021805899997,-4.84368255599982],[-78.91081172699995,-4.863526305999812],[-78.93396276899995,-4.868693948999905],[-78.9602660729999,-4.868900654999877],[-78.98034236699993,-4.873964944999855],[-78.9910135499999,-4.890398050999821],[-79.00209814499992,-4.939128926999857],[-79.0092811689999,-4.960109557999857],[-79.03509354699992,-4.987498066999891],[-79.06392899599996,-5.011372578999882],[-79.0824549969999,-4.993079121999813],[-79.09338456299994,-4.985120950999857],[-79.10415909799988,-4.980056660999878],[-79.1145202239999,-4.978816426999842],[-79.13066910899997,-4.982847187999837],[-79.14084936599994,-4.983260598999848],[-79.15831599899991,-4.97933319099988],[-79.19175065199995,-4.967654316999813],[-79.20932063799995,-4.964760436999825],[-79.23368869399991,-4.965647838999885],[-79.28027237999993,-4.967344257999827],[-79.30321671599995,-4.961246438999865],[-79.31716935299994,-4.944399921999889],[-79.32784053599994,-4.923264261999847],[-79.34104386399994,-4.904247333999876],[-79.34985469599992,-4.898459574999904],[-79.36936254899993,-4.891121519999899],[-79.37807002799991,-4.884816995999898],[-79.38341853899996,-4.87623870799986],[-79.38992976899993,-4.856498310999982],[-79.39532995699997,-4.84760996499989],[-79.41269323799992,-4.834794209999814],[-79.43331213499991,-4.823942158999941],[-79.4505720629999,-4.81019622799991],[-79.45775508599996,-4.789008890999867],[-79.46082314399987,-4.770455597999969],[-79.46103653999995,-4.769165139999955],[-79.48721065299995,-4.719969177999815],[-79.49870865899997,-4.660644632999889],[-79.5278541669999,-4.618063252999917],[-79.52718237299993,-4.596565856999959],[-79.50413468499994,-4.555638121999863],[-79.50162837699989,-4.540962015999952],[-79.50720943199988,-4.531556904999903],[-79.52754410799992,-4.519671324999876],[-79.55162532599988,-4.519878031999838],[-79.55777482199994,-4.51657073999985],[-79.57203751599991,-4.506028746999959],[-79.57984065799994,-4.502308043999861],[-79.63032853299995,-4.452491963999918],[-79.65797542299995,-4.438746031999898],[-79.69412308799988,-4.44360361699999],[-79.72859126899993,-4.46406748399987],[-79.795744792,-4.484738056999973],[-79.83287430899989,-4.478950296999826],[-79.85773067299993,-4.453318785999939],[-79.87873714199995,-4.422002867999851],[-79.90408443199993,-4.398645120999902],[-79.93033605999995,-4.392030537999815],[-79.95601924699994,-4.391720478999915],[-79.9820124929999,-4.38861989299987],[-80.00909094299995,-4.373840432999856],[-80.02927058999992,-4.359681090999814],[-80.06162003599992,-4.324437764999843],[-80.07965511099992,-4.30903818799986],[-80.0968633629999,-4.30283701599987],[-80.11722387799993,-4.299116312999942],[-80.13386368799986,-4.29394866899986],[-80.14024572799988,-4.283096617999902],[-80.14308793199987,-4.284130146999885],[-80.18383479799994,-4.289401142999906],[-80.1947643639999,-4.293121846999924],[-80.20504797399991,-4.298186136999902],[-80.21344539399988,-4.304904072999918],[-80.22194616699997,-4.318960062999934],[-80.23220393899996,-4.353996683999952],[-80.23967118299988,-4.36980967199986],[-80.2554066569999,-4.386759541999865],[-80.33230118899988,-4.445670673999871],[-80.3732547609999,-4.467581481999929],[-80.38286657799992,-4.476263121999892],[-80.39074723399995,-4.476986591999889],[-80.40849808799996,-4.477503355999914],[-80.42511206099991,-4.471508889999896],[-80.46996720399997,-4.446084085999971],[-80.48353226799995,-4.433991799999902],[-80.49229142299995,-4.413011168999901],[-80.48854488199993,-4.395957946999871],[-80.3563048919999,-4.22056813499999],[-80.34527197299991,-4.198450621999896],[-80.39141902699993,-4.204135029999847],[-80.4347238779999,-4.216950784999838],[-80.46960546899997,-4.21323008199991],[-80.4907669679999,-4.168995055999815],[-80.49068945399992,-4.15969329799988],[-80.48683955899995,-4.140676370999898],[-80.48717545599995,-4.131271259999849],[-80.49260148199994,-4.118455505999876],[-80.50906042499992,-4.095821227999821],[-80.51407303899994,-4.083418883999855],[-80.51229385599993,-4.065033996999858],[-80.51221268699996,-4.064195251999834],[-80.50358272399991,-4.039080504999902],[-80.49198136399997,-4.014895934999842],[-80.48107763699991,-3.998772887999848],[-80.46614314799993,-3.988127542999862],[-80.44769466199992,-3.982753193999898],[-80.42746333899993,-3.981306253999904],[-80.4071028239999,-3.982443135999816],[-80.3864580899999,-3.988954365999887],[-80.34426428299992,-4.01158864299984],[-80.32550573799992,-4.015412698999867],[-80.30462845899987,-4.005180765999796],[-80.28780778099988,-3.984406839999934],[-80.27328670299994,-3.961255797999854],[-80.2590756839999,-3.943685810999795],[-80.18114762399992,-3.907925719999952],[-80.1652571219999,-3.890045673999822],[-80.16507379399991,-3.880695936999814],[-80.16505041599993,-3.879503682999853],[-80.17109655799996,-3.873612568999931],[-80.18006241899991,-3.867824808999956],[-80.18876989799989,-3.857696226999821],[-80.19145707199989,-3.849117939999971],[-80.19145707199989,-3.830617776999858],[-80.19272314499995,-3.821626078999827],[-80.20155981499994,-3.801472269999848],[-80.22163610899992,-3.769432880999843],[-80.22631282599988,-3.749279072999868],[-80.22445247399988,-3.741630960999885],[-80.22018916899992,-3.734706318999983],[-80.2168560389999,-3.726954853999899],[-80.21786372899999,-3.717136331999839],[-80.22398738599995,-3.698429462999854],[-80.2249434009999,-3.690677998999845],[-80.2249434009999,-3.680652770999828],[-80.22328975399995,-3.671867776999918],[-80.21677852399996,-3.652437438999854],[-80.21520239299993,-3.64251556399985],[-80.21639095099997,-3.631560159999879],[-80.22212703499993,-3.612439879999883],[-80.22228206399988,-3.601277770999857],[-80.22499507699993,-3.591872659999893],[-80.2336767169999,-3.587841898999897],[-80.24354691599987,-3.584637959999924],[-80.2499806319999,-3.577713317999851],[-80.24990311699989,-3.569961852999839],[-80.24212581499998,-3.542986754999902],[-80.24026546299986,-3.523866475999824],[-80.24029130099987,-3.514047952999846],[-80.24266841699992,-3.50515960699984],[-80.24907629399988,-3.497924905999952],[-80.26556107599991,-3.491103616999822],[-80.27163305699989,-3.48552256299989],[-80.2738809819999,-3.464645282999825],[-80.26778316299993,-3.443871357999881],[-80.26566442899988,-3.426404723999923],[-80.279746257,-3.41555267299988],[-80.31762508199998,-3.405527444999947],[-80.33390315799991,-3.397052509999867],[-80.34072866642742,-3.393497653523383],[-80.34072831899994,-3.393487237999835],[-80.34288489499991,-3.386325778999889],[-80.34410559799994,-3.378838799999826],[-80.34105383999986,-3.368584893999895],[-80.32762610599985,-3.360528252999941],[-80.32144120999989,-3.348728122999887],[-80.31647701699983,-3.334730726999836],[-80.30687415299985,-3.320733330999872],[-80.3170059889999,-3.34880950299987],[-80.32054602799991,-3.355564059999907],[-80.31432044199994,-3.376071872999944],[-80.30231686099992,-3.366794528999904],[-80.29670162699992,-3.335381768999881],[-80.2864477199999,-3.320733330999872],[-80.25910396999993,-3.348077080999843],[-80.24551347599996,-3.342380466999941],[-80.1731664699999,-3.327569268999966],[-80.16071529899989,-3.328789971999981],[-80.1524958979999,-3.330824476999837],[-80.14517167899987,-3.331231377999842],[-80.1355688139999,-3.327569268999966],[-80.11278235599988,-3.300713799999897],[-80.10826575399992,-3.296807549999983],[-80.07046464799987,-3.218194268999895],[-80.05988521999993,-3.204034112999878],[-80.0375056629999,-3.208265882999896],[-80.03286699099988,-3.232110283999958],[-80.03994706899992,-3.279880467],[-80.02920488199993,-3.273532809999892],[-80.02257239499994,-3.263848565999837],[-80.01691646999986,-3.252699476999823],[-80.0089412099999,-3.241875908999916],[-79.99982662699992,-3.234633070999891],[-79.96800696499987,-3.21461354],[-79.95319576699988,-3.197442315999979],[-79.94347083199993,-3.176527601999837],[-79.93797766799992,-3.153985283999858],[-79.9333389959999,-3.115411065999965],[-79.91706295499998,-3.079278252999842],[-79.88341223899997,-3.025485934999892],[-79.87486731699994,-3.005466404],[-79.88483639199984,-2.98805103999986],[-79.88121497299997,-2.965427341999884],[-79.8680313789999,-2.926364841999927],[-79.86583411399994,-2.908786716999899],[-79.83458411399995,-2.806817315999979],[-79.81346594999985,-2.768975518999852],[-79.81118730399987,-2.762383721999882],[-79.80138098899992,-2.740980726999922],[-79.7976781889999,-2.717705987999821],[-79.77643795499992,-2.659437757999896],[-79.76496334499987,-2.642266533999873],[-79.7349747389999,-2.611586195999962],[-79.72642981699988,-2.593845309999878],[-79.72508704299989,-2.569756768999866],[-79.73151607999992,-2.525079033999901],[-79.74502519399987,-2.490166924999883],[-79.74828040299994,-2.484633070999863],[-79.77017167899987,-2.485935153999861],[-79.78148352799985,-2.484958591999884],[-79.78954016799987,-2.48105234199997],[-79.80162512899987,-2.462579033999859],[-79.8209122389999,-2.408949476999879],[-79.83340410099993,-2.389255466999927],[-79.83946692599991,-2.377048434999864],[-79.84129798099991,-2.362888278999932],[-79.84044348899991,-2.304620049999826],[-79.84715735599984,-2.258070570999891],[-79.84756425699996,-2.245049737999906],[-79.84142005099997,-2.223077080999971],[-79.83983313699994,-2.209567966999913],[-79.84447180899988,-2.2035458309999],[-79.8460994129999,-2.199476820999948],[-79.85879472599996,-2.182386976999808],[-79.86188717399995,-2.179620049999855],[-79.86339270699989,-2.172784112999835],[-79.8663630849999,-2.167738539999888],[-79.86864173099988,-2.160902601999879],[-79.8680313789999,-2.148858330999872],[-79.86302649599989,-2.137872002999899],[-79.85643469999991,-2.129327080999886],[-79.85411536399994,-2.12029387799987],[-79.86188717399995,-2.108005467],[-79.84642493399991,-2.091729424999969],[-79.83063717399997,-2.087090752999856],[-79.81834876199991,-2.079847914999931],[-79.81346594999985,-2.056410414999945],[-79.80589758999987,-2.045179945999863],[-79.78937740799992,-2.037692966999884],[-79.77285722599993,-2.026625257999939],[-79.76561438699991,-2.004978122999859],[-79.82494055899988,-2.038669528999861],[-79.8313695949999,-2.043552341999842],[-79.83397376199991,-2.052341403999904],[-79.83458411399995,-2.070000908999916],[-79.84190833199995,-2.073174737999963],[-79.87433834499987,-2.075372002999956],[-79.88170325399994,-2.083754164999931],[-79.88341223899997,-2.091566665],[-79.89195716099988,-2.115899346999896],[-79.90046139199991,-2.155938408999916],[-79.90184485599988,-2.184828382999839],[-79.89574133999992,-2.213799737999835],[-79.86530514199987,-2.26677825299987],[-79.86302649599989,-2.297133070999948],[-79.87857011599988,-2.491875908999887],[-79.88914954299992,-2.532484632999967],[-79.89610755099991,-2.543389580999857],[-79.92349199099986,-2.573907158999901],[-79.93321692599993,-2.580254815999837],[-79.94933020699992,-2.585137627999899],[-79.98399817599989,-2.605157158999873],[-79.99840247299994,-2.608168226999865],[-80.00845292899993,-2.603204033999916],[-80.01431230399986,-2.589776299999826],[-80.02228756399992,-2.587090752999856],[-80.04369055899987,-2.589450778999904],[-80.0508520169999,-2.587009372999873],[-80.06358801999997,-2.577243747999916],[-80.06891842399992,-2.560804945999919],[-80.05553137899992,-2.545179945999933],[-80.02570553299991,-2.525079033999901],[-80.01659094999994,-2.504082940999865],[-80.01211503799988,-2.489027601999851],[-80.00177975199995,-2.480157158999887],[-79.97484290299991,-2.477227471999867],[-79.96849524599986,-2.481377862999821],[-79.96251380099994,-2.489922783999844],[-79.95494544199991,-2.497653903999932],[-79.9437556629999,-2.498304945999976],[-79.93419348899991,-2.492608330999914],[-79.92967688699986,-2.484144789999874],[-79.93040930899988,-2.473890882999854],[-79.9363500639999,-2.462985934999864],[-79.94082597599987,-2.483982028999989],[-79.95433508999994,-2.479587497999916],[-79.9779353509999,-2.456719658999916],[-79.99986731699991,-2.459242445999934],[-80.01984615799998,-2.469414971999882],[-80.03433183499993,-2.473890882999854],[-80.03994706899992,-2.459893487999878],[-80.03575598899991,-2.437920830999872],[-80.01695716099994,-2.395196221999853],[-80.01268469999985,-2.37118906],[-80.0089412099999,-2.35881926899988],[-79.9999080069999,-2.353936455999985],[-79.98851477799994,-2.351739190999822],[-79.9779353509999,-2.347426039999903],[-79.97036699099992,-2.339613539999917],[-79.95002193899984,-2.307224216999913],[-79.95921790299991,-2.309665622999859],[-79.96434485599994,-2.312758070999934],[-79.97484290299991,-2.323663018999909],[-79.98314368399987,-2.327080987999821],[-80.00340735599988,-2.325453382999896],[-80.01268469999985,-2.326429945999877],[-80.0239965489999,-2.334161065999965],[-80.03286699099988,-2.346368096999853],[-80.07603919199988,-2.457696221999896],[-80.14427649599989,-2.55331796699987],[-80.17511959499987,-2.586683851999851],[-80.20759029899995,-2.600762627999885],[-80.21507727799991,-2.613864841999856],[-80.22256425699987,-2.623223565999879],[-80.23180091099994,-2.62867604],[-80.24136308499993,-2.628513278999946],[-80.24657141799992,-2.624444268999895],[-80.25031490799995,-2.61825937299993],[-80.25536048099988,-2.611586195999962],[-80.27000891799989,-2.60507577899989],[-80.27961178299995,-2.612562757999939],[-80.28311113199995,-2.629082940999836],[-80.27961178299995,-2.649183851999879],[-80.27578691299995,-2.652113539999903],[-80.24852454299986,-2.679864190999879],[-80.24502519399988,-2.688164971999853],[-80.24425208199995,-2.699476820999934],[-80.24543209499987,-2.721123955999829],[-80.25548255099994,-2.730238539999917],[-80.27843176999994,-2.727146091999842],[-80.32054602799991,-2.710625908999944],[-80.36278235599991,-2.674737237999949],[-80.37751217399992,-2.666436455999886],[-80.39045162699992,-2.653741143999824],[-80.39631100199995,-2.649183851999879],[-80.40257727799991,-2.647393487999892],[-80.42039954299989,-2.644952080999943],[-80.42979895699992,-2.642347914999945],[-80.46788489499991,-2.617933851999823],[-80.5740860669999,-2.492852471999853],[-80.65664628799989,-2.415785414999974],[-80.68886411199995,-2.405296028999928],[-80.71805255999996,-2.391256953999885],[-80.75051539499992,-2.392357752999927],[-80.80345618399994,-2.374769789999888],[-80.82188880099997,-2.366387627999913],[-80.86392167899993,-2.329278252999913],[-80.88597571499994,-2.320896091999856],[-80.90172278599991,-2.321058851999823],[-80.91364498599992,-2.318780205999929],[-80.92121334499988,-2.309747002999842],[-80.92711341099991,-2.275974216999856],[-80.93480383999994,-2.260918877999842],[-80.95116126199986,-2.237562757999925],[-80.96499589799996,-2.223321221999839],[-81.00206458199996,-2.193617445999905],[-81.00617428299992,-2.187188408999887],[-81.01089433499993,-2.176690362999835],[-81.01301021999984,-2.166924737999878],[-81.00918535099993,-2.1625302059999],[-81.00121008999989,-2.164483330999857],[-80.99754798099991,-2.168715101999865],[-80.9954320949999,-2.173435153999961],[-80.99209550699987,-2.176202080999843],[-80.96666419199997,-2.182305596999825],[-80.95466061099995,-2.183038018999852],[-80.94933020699997,-2.18621184699991],[-80.94429530599983,-2.203276790999851],[-80.93128631899987,-2.217333015999969],[-80.9063429229999,-2.21625838099996],[-80.87057254999993,-2.203300895999973],[-80.81966152899987,-2.162267918999873],[-80.78070235699992,-2.142843412999838],[-80.74497918999987,-2.102914607999864],[-80.73744665699988,-2.043497173999896],[-80.75155230899992,-2.013202027999881],[-80.75951087099992,-1.982028903999875],[-80.76252193899992,-1.973890882999854],[-80.75807680499992,-1.963458463999899],[-80.74725887199995,-1.961306621999839],[-80.73318504399987,-1.953769676999826],[-80.73021399599989,-1.929375908999944],[-80.73302161399994,-1.903985283999844],[-80.76057227399988,-1.797547836999812],[-80.77562415299988,-1.755466403999904],[-80.78213456899988,-1.736993096999882],[-80.79092363199993,-1.72161223799985],[-80.80036373599995,-1.710137627999899],[-80.81224524599992,-1.691582940999893],[-80.83576412699995,-1.633558851999908],[-80.84951738199987,-1.615817966999913],[-80.85407467399992,-1.60295989399998],[-80.85558020699997,-1.588311455999971],[-80.85155188699991,-1.576918226999837],[-80.81648955599991,-1.552254752999929],[-80.82079016799992,-1.528903903999932],[-80.82054602799988,-1.499932549999841],[-80.81152079499992,-1.491621345999974],[-80.79962449899989,-1.480804758999852],[-80.78736971699996,-1.477706595999919],[-80.77086166499993,-1.477829952999912],[-80.76653414599988,-1.464880202999865],[-80.76704284099986,-1.450601601999892],[-80.76490687499997,-1.431131261999894],[-80.75978246199992,-1.413859530999986],[-80.76429015999994,-1.390887025999845],[-80.76001603699987,-1.376596628999891],[-80.74266293699989,-1.368161967999839],[-80.74425633599992,-1.343773381999867],[-80.7740408899999,-1.302542716999923],[-80.83358911199993,-1.231234576999938],[-80.88215084499993,-1.145765882999896],[-80.90324857699994,-1.094778514999859],[-80.91618021799991,-1.065524767999861],[-80.90961091499994,-1.044915051999808],[-80.89753888599991,-1.032872908999892],[-80.8835128979999,-1.021009453999824],[-80.87051183799989,-1.00693659],[-80.86287121499988,-0.997150887999823],[-80.85529091399994,-0.987413462999911],[-80.84235965699989,-0.973397790999854],[-80.83044574199991,-0.959330922999911],[-80.82718637599986,-0.950673189999875],[-80.81636519899989,-0.946343556999849],[-80.8022792719999,-0.950636333999853],[-80.78820442599994,-0.95061502299987],[-80.77413810199994,-0.941956099999828],[-80.76116686099988,-0.936550725999865],[-80.74602239599994,-0.939774388999879],[-80.73413742299988,-0.935453456999937],[-80.72224517699993,-0.931125513999874],[-80.7243746689999,-0.939885310999912],[-80.70600196499996,-0.948515145999849],[-80.69087493099997,-0.949588742999865],[-80.67896237599993,-0.939261472999888],[-80.67140005499994,-0.936020513999878],[-80.66384166999993,-0.926304456999858],[-80.65304171999992,-0.923064662999849],[-80.64332184299985,-0.937097954999942],[-80.63468061599986,-0.939254297999838],[-80.61632039899986,-0.941408096999865],[-80.59148470799994,-0.931688217999891],[-80.56988313499988,-0.912242570999879],[-80.54721196199989,-0.888489750999923],[-80.53282630099997,-0.82626718499985],[-80.52904212099995,-0.806735934999949],[-80.51591191399987,-0.742090066999921],[-80.4975616259999,-0.692437545],[-80.47489948299994,-0.64711344499986],[-80.46247311099995,-0.617933851999865],[-80.4576098689999,-0.612543677999923],[-80.44896909699985,-0.606060152999845],[-80.43493099799991,-0.603898058999917],[-80.42199164699991,-0.599599732999891],[-80.41983869299995,-0.625512978999907],[-80.40582460299993,-0.646034024999977],[-80.37879806299989,-0.657885419999928],[-80.35287163099986,-0.661117855999862],[-80.29900694999986,-0.662228620999841],[-80.29899604999986,-0.650355188999853],[-80.32694953299992,-0.642759213999824],[-80.35717556499992,-0.636277967999845],[-80.37770089799989,-0.636283700999883],[-80.39173722899989,-0.625486672999855],[-80.40253840999989,-0.597418192999868],[-80.41555964099989,-0.573753469999829],[-80.4295829969999,-0.568350741],[-80.43712541999992,-0.557538114999858],[-80.43821881999989,-0.533825280999835],[-80.44897657199994,-0.505675044999833],[-80.45205644399996,-0.476739190999922],[-80.46623890999987,-0.4451707099999],[-80.48459650899991,-0.42359078399987],[-80.49646354799992,-0.381374052999874],[-80.48565043199989,-0.367220490999856],[-80.46515615099987,-0.365253926999856],[-80.43272473999988,-0.339187024000012],[-80.4014694649999,-0.291919569999919],[-80.39134680899991,-0.274346612999878],[-80.38878333199992,-0.260837497999901],[-80.37988294999988,-0.239015817999856],[-80.37123233499989,-0.222830502999869],[-80.34965820699992,-0.215264482999842],[-80.33669524699991,-0.19475603199983],[-80.32369525199996,-0.173172607999874],[-80.30535045599993,-0.189366935999971],[-80.28372267899994,-0.17857494699993],[-80.2599432559999,-0.160218461999975],[-80.2318478599999,-0.139698740999918],[-80.1723346119999,-0.074876502999857],[-80.12482662699989,-0.013604424999912],[-80.10789954299992,0.007066148000192],[-80.10081946499993,0.026922919000114],[-80.09878495999989,0.039211330000157],[-80.09382076699987,0.043443101000094],[-80.08726966099987,0.045599677000084],[-80.06645895699992,0.052209779000165],[-80.05134909199992,0.089992461000108],[-80.0427204769999,0.123460201000071],[-80.03697669199991,0.17597077000012],[-80.0384008449999,0.200018622000144],[-80.0462133449999,0.242621161000088],[-80.04849199099996,0.318304755000085],[-80.03937740799995,0.344712632000068],[-80.03905188699994,0.353338934000078],[-80.03652910099993,0.357082424000097],[-80.02570553299991,0.351874091000113],[-80.02110755099989,0.346909898000149],[-80.01732337099986,0.339544989000061],[-80.01268469999985,0.324530341000127],[-80.00523841099997,0.324530341000127],[-80.00373287699992,0.337062893000137],[-79.9934789699999,0.356634833000101],[-79.99095618399988,0.365464584999984],[-79.99331620999993,0.378119208000129],[-79.99913489499988,0.386908270000106],[-80.01268469999985,0.400213934000035],[-80.03644771999984,0.439154364000103],[-80.0435684889999,0.458929755000128],[-80.0462133449999,0.479071356000162],[-80.04336503799993,0.501206773000149],[-80.03644771999984,0.512681382000011],[-80.02757727799991,0.522121486000103],[-80.01891028599991,0.538031317000119],[-80.01695716099994,0.558905341000013],[-80.02236894399991,0.579169012000023],[-80.02953040299985,0.596625067000076],[-80.03636633999986,0.62523021000014],[-80.04539954299987,0.637152411000088],[-80.05943762899992,0.644680080000057],[-80.07750403599994,0.647284247000144],[-80.09032141799989,0.652167059000107],[-80.09919186099992,0.664211330000128],[-80.10496985599988,0.679673570000148],[-80.10826575399992,0.695054429000095],[-80.10863196499994,0.738104559000121],[-80.09727942599997,0.78034088700015],[-80.07583574099993,0.816148179000066],[-80.0462133449999,0.839667059000035],[-80.02912350199995,0.83104075700011],[-80.01447506399984,0.829291083000115],[-79.98131262899992,0.832220770000134],[-79.96642005099994,0.836493231000148],[-79.9467667309999,0.854803778000033],[-79.93321692599993,0.858954169000157],[-79.91893469999994,0.861232815000122],[-79.89386959499984,0.871039130000071],[-79.86217200399997,0.876410223000121],[-79.84333248599992,0.890570380000142],[-79.83079993399994,0.893744208000101],[-79.82339433499992,0.897447007000054],[-79.79295813699989,0.921616929000066],[-79.78575598899997,0.929185289000102],[-79.77293860599991,0.947821356000091],[-79.76561438699991,0.955145575000103],[-79.74181067599991,0.965969143],[-79.68195553299998,0.98493073100002],[-79.65575110599985,1.003607489000089],[-79.65038001199987,0.993353583000058],[-79.64997311099998,0.984198309000163],[-79.67007402299993,0.921616929000066],[-79.6654353509999,0.906683661000116],[-79.65713456899994,0.897935289000131],[-79.64663652299994,0.890692450000117],[-79.63532467399997,0.880072333000072],[-79.62189693899997,0.852932033000144],[-79.61485755099991,0.845282294000114],[-79.63121497299991,0.890122789000145],[-79.64411373599992,0.901068427000027],[-79.64830481699997,0.907416083000143],[-79.64826412699998,0.912990627000141],[-79.64313717399995,0.922186591000127],[-79.6421606109999,0.9278832050001],[-79.64366614499994,0.952948309000021],[-79.64142818899994,0.971991278000104],[-79.63267981699988,0.986029364000061],[-79.61485755099991,0.996079820000119],[-79.57176673099987,0.983710028000175],[-79.52448482999992,1.010443427000098],[-79.45653235599985,1.072455145000148],[-79.43504798099991,1.07802969000015],[-79.3646541009999,1.072455145000148],[-79.35594641799992,1.074530341000155],[-79.3331599599999,1.083482164000102],[-79.32339433499996,1.085516669000128],[-79.2960505849999,1.085028387000051],[-79.28343665299991,1.087103583000058],[-79.27220618399991,1.092962958000101],[-79.24815833199997,1.080267645000134],[-79.21983801999991,1.084214585000041],[-79.19115149599986,1.094142971000124],[-79.16576087099995,1.099798895000035],[-79.14732825399992,1.109564520000063],[-79.07184811099998,1.209540106000119],[-79.05724036399992,1.217515367000175],[-79.03258216099997,1.209051825000131],[-79.01305091099988,1.192775783000101],[-79.00047766799989,1.17230866100013],[-78.99376380099994,1.147894598],[-78.99168860599991,1.119696356000119],[-78.97256425699996,1.12982819199999],[-78.96214758999986,1.144680080000128],[-78.95775305899988,1.163397528000018],[-78.9545792309999,1.207342841000127],[-78.94839433499993,1.218817450000174],[-78.9395238919999,1.22797272300015],[-78.92894446499993,1.243150132000139],[-78.92564856699991,1.234605210000126],[-78.91978919199995,1.230658270000049],[-78.91169186099992,1.231268622000101],[-78.90168209499987,1.236314195000119],[-78.89264889199984,1.24477773600016],[-78.89122473899988,1.251857815000122],[-78.89167232999996,1.259711005000028],[-78.88801021999993,1.270453192000119],[-78.8716934889999,1.288967190000136],[-78.85505123599995,1.291652736000117],[-78.81285559799991,1.277289130000057],[-78.82013912699992,1.291734117000189],[-78.83804277299988,1.296454169000114],[-78.85895748599995,1.298570054000123],[-78.87498938699994,1.305243231000162],[-78.8819473949999,1.319281317000119],[-78.87848873599992,1.332464911000073],[-78.86969967399995,1.344142971000082],[-78.8323461579999,1.381333726000165],[-78.82656816299993,1.394598700000103],[-78.82701575399994,1.4097354190001],[-78.83055579299992,1.42332591400006],[-78.82868404899995,1.434312242000104],[-78.82865444843216,1.434326243234594],[-78.76996761099988,1.394102072000123],[-78.74898697899997,1.364853210000092],[-78.71947973599995,1.341056214000034],[-78.70919612599997,1.324158020000041],[-78.69935176599998,1.302040507000115],[-78.68428808699991,1.281886698000136]]],[[[-91.9998266269999,1.65119049700003],[-92.00666256399985,1.649603583],[-92.0115860669999,1.658636786000088],[-92.00609290299988,1.664374091000155],[-91.9998266269999,1.659979559000177],[-91.9998266269999,1.65119049700003]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Peru","sov_a3":"PER","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Peru","adm0_a3":"PER","geou_dif":0,"geounit":"Peru","gu_a3":"PER","su_dif":0,"subunit":"Peru","su_a3":"PER","brk_diff":0,"name":"Peru","name_long":"Peru","brk_a3":"PER","brk_name":"Peru","brk_group":null,"abbrev":"Peru","postal":"PE","formal_en":"Republic of Peru","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Peru","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":11,"pop_est":29546963,"gdp_md_est":247300,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"PE","iso_a2":"PE","iso_a3":"PER","iso_n3":"604","un_a3":"604","wb_a2":"PE","wb_a3":"PER","woe_id":23424919,"woe_id_eh":23424919,"woe_note":"Exact WOE match as country","adm0_a3_is":"PER","adm0_a3_us":"PER","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PER.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.17565995399988,-14.28837484699987],[-76.17958508399994,-14.29520815199993],[-76.19134067,-14.292920521999932],[-76.20700649299994,-14.281514231999948],[-76.22032433499989,-14.274666426999929],[-76.22031113699995,-14.263275687999977],[-76.21247039799994,-14.259481970999886],[-76.19523153899993,-14.263294351999932],[-76.18897196499988,-14.27469269199996],[-76.18584462799987,-14.283050279999856],[-76.17565995399988,-14.28837484699987]]],[[[-76.44144082499993,-13.853906215999913],[-76.4507312319999,-13.856144834999952],[-76.46162872499988,-13.856126434999851],[-76.47024955399988,-13.853855728999989],[-76.46769938699993,-13.841755636999975],[-76.45912833399987,-13.83346985199999],[-76.45683138799987,-13.822912215999892],[-76.4459799629999,-13.823689177999967],[-76.44366865999987,-13.830487871999921],[-76.43668900399987,-13.833521613999935],[-76.43673975599988,-13.844095640999965],[-76.44144082499993,-13.853906215999913]]],[[[-77.18531648199985,-12.10938242099985],[-77.1815408039999,-12.115912219999856],[-77.1920014159999,-12.113077161999854],[-77.20439315899998,-12.114887611999805],[-77.21768023999996,-12.105525421999843],[-77.2366679489999,-12.093344583999823],[-77.24801708099994,-12.077473468999898],[-77.25365964899989,-12.063488095999858],[-77.2441079139999,-12.058877654999861],[-77.23271360499992,-12.06544323499989],[-77.19383939799991,-12.10004112599985],[-77.18531648199985,-12.10938242099985]]],[[[-80.8395838829999,-6.475245538999943],[-80.85079905599989,-6.476945109999875],[-80.86384079399991,-6.475839133999941],[-80.86744375599994,-6.466522455999921],[-80.86357713199992,-6.456379224999822],[-80.86709169199986,-6.440577799999886],[-80.87537971899985,-6.433052594999864],[-80.8678114169999,-6.424814657999846],[-80.86481161599994,-6.410032490999868],[-80.85313507899988,-6.374988469999862],[-80.84297014399996,-6.381611945999879],[-80.84866830399989,-6.388945959999901],[-80.85542783599988,-6.405527953999836],[-80.85002226499992,-6.419499688999821],[-80.84175087099987,-6.428882325999865],[-80.84098241299998,-6.440938901999828],[-80.8421417909999,-6.45760300499991],[-80.8395838829999,-6.475245538999943]]],[[[-75.00911189799993,-0.145261332],[-74.96821000199992,-0.1897030639999],[-74.95487748199987,-0.2000383499999],[-74.93345760199989,-0.20944346099995],[-74.89932531799991,-0.216781513999862],[-74.88271134499986,-0.22277598099997],[-74.87271195499997,-0.22194915699987],[-74.8614723309999,-0.213164163999878],[-74.83653845299995,-0.173269957999835],[-74.8246528729999,-0.170479430999961],[-74.80369807999992,-0.188979593999903],[-74.78946122199993,-0.209030049999939],[-74.75532893899998,-0.278276468999863],[-74.78284663899987,-0.299153746999849],[-74.7907014569999,-0.312589618999894],[-74.77300227899988,-0.318687437999856],[-74.76269283099998,-0.319824319999853],[-74.7430041099999,-0.324888610999921],[-74.71812190799997,-0.327265726999883],[-74.71184322099995,-0.330262959999885],[-74.70765742999993,-0.334603779999867],[-74.70073278799993,-0.339771422999959],[-74.69564265999995,-0.344629007999799],[-74.6925162359999,-0.349693297999877],[-74.6865734459999,-0.353414000999877],[-74.67275000099994,-0.354034118999849],[-74.66771154799997,-0.351553649999872],[-74.66140702299995,-0.34679941799989],[-74.65308711799989,-0.341941833999869],[-74.64231258199996,-0.339771422999959],[-74.63272660399997,-0.347419534999858],[-74.6044595949999,-0.394961852999955],[-74.56239497899995,-0.439403584999852],[-74.53635005799998,-0.459970804999841],[-74.47563024999997,-0.496454365999853],[-74.46377050899994,-0.506789651999853],[-74.45056717899988,-0.521569111999867],[-74.44188553899991,-0.535521747999866],[-74.43653702899996,-0.537795511999875],[-74.42292028899996,-0.538312275999829],[-74.41795935099992,-0.54265309599981],[-74.41581477899993,-0.552678324999832],[-74.41471693699995,-0.56375655599993],[-74.41467789799992,-0.56415049199984],[-74.41266251699997,-0.573142191999878],[-74.3648876549999,-0.676184996999964],[-74.36726477099992,-0.683212991999895],[-74.38013220199994,-0.694271748999896],[-74.3847572439999,-0.702850035999916],[-74.38514481599988,-0.721970315999911],[-74.3781943369999,-0.736543069999883],[-74.34432043499989,-0.774060159999877],[-74.33755082199997,-0.778607685999901],[-74.32786149099994,-0.781501565999889],[-74.31057572499992,-0.782018330999932],[-74.30279842199991,-0.785428975999949],[-74.31060156299995,-0.801448668999825],[-74.30483964099997,-0.813127542999894],[-74.2946077069999,-0.823669534999851],[-74.28913000599991,-0.836278584999874],[-74.29512447199994,-0.847337340999886],[-74.30905126999991,-0.847337340999886],[-74.32514847899998,-0.844546813999926],[-74.33755082199997,-0.846820575999843],[-74.34442378799992,-0.858602802999854],[-74.33832596899994,-0.867697855999907],[-74.3133662519999,-0.884441019999869],[-74.30339269999988,-0.897773538999971],[-74.28913000599991,-0.943042093999793],[-74.26675410999994,-0.972290954999835],[-74.2401924239999,-0.986863708999806],[-74.18053198299988,-0.997715758999931],[-74.11963130699993,-1.020970153999869],[-74.09237198899993,-1.020143330999843],[-74.07689489799995,-0.990894469999972],[-74.06544856799994,-1.001436462999862],[-74.04203914399997,-1.071096292999883],[-74.03720739799996,-1.07967458099999],[-74.02909419799994,-1.086392516999837],[-74.0167952069999,-1.091560159999929],[-74.01111079999995,-1.090009866999821],[-74.00589147999995,-1.084842223999914],[-73.99496191499989,-1.07967458099999],[-73.99134456399987,-1.075333759999921],[-73.98783056699995,-1.068925882999807],[-73.98279211399998,-1.066238707999858],[-73.97447220899991,-1.073370055999902],[-73.97333532699992,-1.081638284999855],[-73.98268876099993,-1.099208271999828],[-73.98129349799987,-1.107476501999869],[-73.96762508199996,-1.114814554999867],[-73.93641251699995,-1.107786559999937],[-73.91990189699999,-1.113781025999884],[-73.91411413599991,-1.123082783999905],[-73.89876623599994,-1.16277028399989],[-73.88075699899994,-1.190985615999864],[-73.8710159909999,-1.201424255999896],[-73.85716670799994,-1.210519306999871],[-73.83047583099997,-1.21992441799992],[-73.81448197399993,-1.223335062999851],[-73.80254471899991,-1.223645120999919],[-73.78585323199988,-1.21424000999987],[-73.7697818609999,-1.188918557999898],[-73.7547181809999,-1.18333750399988],[-73.74637243699993,-1.201320901999949],[-73.73236812399992,-1.216513772999804],[-73.71340287399997,-1.227159118999879],[-73.69020015499987,-1.23108652699986],[-73.67911555999987,-1.234290465999919],[-73.66007279499986,-1.248346454999847],[-73.6365600179999,-1.255167744999895],[-73.6313923749999,-1.264056090999901],[-73.6288085539999,-1.275114847999816],[-73.62154801499992,-1.290617777999927],[-73.62002355999991,-1.301573180999895],[-73.61821488499989,-1.306120706999849],[-73.61418412299992,-1.307050882999974],[-73.6008774419999,-1.305190531999969],[-73.59713089999988,-1.306120706999849],[-73.59397863799992,-1.313355406999904],[-73.5920666099999,-1.321726988999885],[-73.59087805199997,-1.343431090999871],[-73.58896602399997,-1.35025237999983],[-73.58426346899998,-1.358313903999829],[-73.57857906099994,-1.36492848699983],[-73.56292110299998,-1.372163186999884],[-73.5677528489999,-1.382705179999846],[-73.58343664599997,-1.401722106999912],[-73.57421240299995,-1.416914977999852],[-73.53713456299997,-1.434278258999868],[-73.52597245399994,-1.451744892999898],[-73.50488846899992,-1.467247822999909],[-73.49716284199991,-1.477996520999838],[-73.49527665199992,-1.487918395999841],[-73.49545751999995,-1.498460387999899],[-73.49406225599998,-1.511586201999862],[-73.48354610199993,-1.553340758999823],[-73.4845279539999,-1.572461038999904],[-73.5088158769999,-1.586827086999989],[-73.51742000299993,-1.602019958999932],[-73.52881465699991,-1.635092874999913],[-73.5309850669999,-1.673746845999915],[-73.51093461199997,-1.698551533999861],[-73.4462873949999,-1.738135680999917],[-73.44484045399992,-1.741856383999931],[-73.44153316299992,-1.755292256999965],[-73.4400862219999,-1.758702900999907],[-73.43543534399996,-1.759529723999833],[-73.42442826399994,-1.758082783999839],[-73.4102172449999,-1.75973642999989],[-73.3991584879999,-1.759219664999847],[-73.3870662029999,-1.760873311999902],[-73.3745605069999,-1.768831481999868],[-73.35053096599997,-1.79063893599988],[-73.3402990319999,-1.792189228999817],[-73.33270259599993,-1.781130471999816],[-73.31657954999993,-1.765420836999922],[-73.3012316489999,-1.763560485999918],[-73.26769364399988,-1.772242125999881],[-73.26133744399993,-1.768831481999868],[-73.25725500599992,-1.742373147999956],[-73.24702307099994,-1.742373147999956],[-73.2203063569999,-1.772345478999824],[-73.21069453999986,-1.779270120999811],[-73.20139278199994,-1.783300882999896],[-73.19302119999989,-1.78867523199986],[-73.18625158699992,-1.799630635999918],[-73.19364131799993,-1.836837666999927],[-73.1883186449999,-1.850686950999901],[-73.16470251599989,-1.87848887099986],[-73.15891475499993,-1.895232034999907],[-73.16113684099992,-1.904430440999903],[-73.17116206899993,-1.929545185999828],[-73.17255733299992,-1.943601175999845],[-73.16873327699997,-1.959310810999824],[-73.16196366399994,-1.972436624999887],[-73.14460038299993,-1.998171487999869],[-73.13783077,-2.016878356999854],[-73.13235306899989,-2.039822692999806],[-73.12454992699989,-2.060803323999892],[-73.11106237799993,-2.07341237399983],[-73.14051794399992,-2.121884866999892],[-73.14992305499996,-2.143588968999878],[-73.18625158699992,-2.176351826999792],[-73.19529496299988,-2.187203877999835],[-73.1985505779999,-2.193818460999921],[-73.19984248899993,-2.203740335999925],[-73.19777543199987,-2.213558857999899],[-73.1883186449999,-2.228751729999914],[-73.18625158699992,-2.234746195999861],[-73.18309932499997,-2.239707132999811],[-73.1694567459999,-2.250145771999925],[-73.16630448399994,-2.25552012099989],[-73.1613952239999,-2.285389098999815],[-73.15891475499993,-2.293037210999884],[-73.14248164899996,-2.30409596699981],[-73.09886674,-2.314948017999853],[-73.0899783939999,-2.323836363999945],[-73.08382889899991,-2.34512705499985],[-73.07070308499992,-2.333241474999824],[-73.05886918199994,-2.310607197999872],[-73.05644038899996,-2.299858499999843],[-72.98755570599995,-2.337685648999823],[-72.98430008999989,-2.34337005599987],[-72.96977901299994,-2.356082457999918],[-72.9527774659999,-2.402281187999876],[-72.94326900199994,-2.419024352999912],[-72.9354141849999,-2.425328877999931],[-72.92616410399998,-2.425225523999899],[-72.88378943,-2.416750588999903],[-72.86999182199992,-2.411789651999854],[-72.85805456599988,-2.400317484999845],[-72.82947749899992,-2.390188902999881],[-72.80467281099995,-2.377786559999919],[-72.78798132399993,-2.383574319999894],[-72.76167801999989,-2.402281187999876],[-72.75904252099988,-2.389982197999842],[-72.75418493699993,-2.380680440999896],[-72.74607173699994,-2.373445739999838],[-72.73372106999997,-2.367554626999848],[-72.72876013199993,-2.374685973999959],[-72.72457434099991,-2.38347096799987],[-72.72173213699992,-2.393702900999841],[-72.7183214929999,-2.419851175999852],[-72.7124303789999,-2.422124938999872],[-72.69584224499991,-2.416543883999935],[-72.68318151899987,-2.404761657999856],[-72.6568265379999,-2.350191344999828],[-72.6443208419999,-2.334068297999849],[-72.62597570799991,-2.336858824999808],[-72.60840572199993,-2.346367288999886],[-72.56298213799991,-2.383057555999855],[-72.54412023899997,-2.389052021999873],[-72.4415941979999,-2.405175068999867],[-72.4326541749999,-2.412926533999951],[-72.42753820899989,-2.42501881899986],[-72.41425736499988,-2.437111103999925],[-72.39658402599989,-2.446516214999804],[-72.37803218699993,-2.450753682999931],[-72.35560461499995,-2.448893330999837],[-72.31565873199989,-2.438351337999876],[-72.2924043379999,-2.435870869999803],[-72.28382604999994,-2.433183694999954],[-72.28098384599988,-2.426155699999867],[-72.28186234499992,-2.405691832999892],[-72.2766947019999,-2.401557718999882],[-72.25095983999992,-2.396286721999843],[-72.240934611,-2.395459899999821],[-72.17639074699994,-2.41034271199986],[-72.16145625899989,-2.405691832999892],[-72.1173762609999,-2.355152281999864],[-72.08941931199993,-2.33096771199989],[-72.06151403899995,-2.320012307999917],[-72.0289578859999,-2.319598896999906],[-71.96627437399988,-2.328487242999913],[-71.94865270999989,-2.324146423999849],[-71.93635371999994,-2.311847431999894],[-71.93175451699996,-2.289626565999868],[-71.92441646299999,-2.281875101999944],[-71.87718420399993,-2.245288186999829],[-71.84106237899994,-2.190097756999833],[-71.83620479399994,-2.179762470999904],[-71.8261278889999,-2.179039000999907],[-71.76794022699997,-2.142245381999828],[-71.74613277299994,-2.132323506999825],[-71.73848465999998,-2.137697854999885],[-71.73998327699988,-2.172941181999945],[-71.73140498899994,-2.18989105199995],[-71.71202632699989,-2.186790465999835],[-71.67853999899998,-2.169530536999929],[-71.65492386899987,-2.173768004999886],[-71.63523514899993,-2.185550231999798],[-71.61663163299997,-2.199916279999883],[-71.59596105999995,-2.211078388999823],[-71.53839351399992,-2.222963968999849],[-71.52712805199994,-2.231542256999887],[-71.52227046799993,-2.250352476999893],[-71.52097855599996,-2.292107034999844],[-71.51405391499989,-2.307403258999898],[-71.49813757299998,-2.315051370999868],[-71.49043778599987,-2.303269143999955],[-71.48056758699991,-2.265752054999879],[-71.46666662699991,-2.251489358999905],[-71.45648636899995,-2.25510670899989],[-71.4389680589999,-2.286215921999926],[-71.41524857699994,-2.316291604999989],[-71.41163122599997,-2.326626891999908],[-71.41437007699992,-2.335101826999917],[-71.42816768399987,-2.347504170999883],[-71.43214676899993,-2.355152281999864],[-71.42082963099998,-2.376029561999928],[-71.38698156799995,-2.368898213999984],[-71.31546138499994,-2.334068297999849],[-71.3076065679999,-2.34781422899988],[-71.28905472899996,-2.34337005599987],[-71.26817745,-2.332414652999972],[-71.25334631399997,-2.326626891999908],[-71.24244258599988,-2.329107360999885],[-71.23045365399994,-2.337995706999905],[-71.21985998599988,-2.341509703999946],[-71.20905961199992,-2.339235940999842],[-71.1902493899999,-2.32455983499986],[-71.16193070599994,-2.310193785999857],[-71.14281042499992,-2.262858174999806],[-71.11996944199991,-2.252109476999877],[-71.09221919799998,-2.247251891999937],[-71.07911922199992,-2.247561949999834],[-71.05392696199996,-2.262651468999834],[-71.04142126499995,-2.26533864299995],[-71.0296907149999,-2.263995055999899],[-71.02062150099994,-2.258930765999835],[-71.02979406799992,-2.233505960999906],[-71.0319903159999,-2.210768330999926],[-71.02144832399995,-2.196712340999909],[-70.99271622799994,-2.197435811999824],[-70.95031571499993,-2.215419208999904],[-70.92525264499992,-2.220276794999918],[-70.9045562339999,-2.211078388999823],[-70.87419632999993,-2.229578551999936],[-70.82236486799988,-2.284768981999932],[-70.7878708499999,-2.307403258999898],[-70.75105139199988,-2.320529072999946],[-70.73247371499994,-2.324973245999871],[-70.70658382199991,-2.328280537999873],[-70.70144201699992,-2.333241474999824],[-70.69906490099996,-2.341096292999936],[-70.69903906299996,-2.37013844799985],[-70.69524084499992,-2.372102151999868],[-70.66371822199994,-2.39825042699988],[-70.65754288799988,-2.409102477999838],[-70.65622513899993,-2.419231058999884],[-70.65625097699991,-2.43308034199984],[-70.65446813999995,-2.445379332999877],[-70.64759517499996,-2.450753682999931],[-70.60635738099994,-2.450753682999931],[-70.59863175499996,-2.446619567999917],[-70.59775325499993,-2.437111103999925],[-70.59858007799994,-2.425845641999871],[-70.59607377099988,-2.416543883999935],[-70.57860713799994,-2.405485127999853],[-70.56553300099996,-2.413753356999891],[-70.55320817099994,-2.428119404999975],[-70.53773107899991,-2.435870869999803],[-70.52091040099995,-2.438041279999894],[-70.5019968269999,-2.443829039999869],[-70.48445267799993,-2.452510680999822],[-70.47192114299995,-2.463156025999822],[-70.46610754399995,-2.474008076999865],[-70.4625935469999,-2.484240009999851],[-70.45698665399999,-2.492714944999932],[-70.44525610399998,-2.498502706],[-70.43484330299995,-2.497675882999886],[-70.41133052599989,-2.487443948999911],[-70.40024593199988,-2.484860127999823],[-70.37877437399993,-2.484653421999852],[-70.35753536099995,-2.486927184999956],[-70.34492631099994,-2.496642353999903],[-70.3496288659999,-2.518346455999989],[-70.35453812699987,-2.521550393999874],[-70.37156551099989,-2.527958271999822],[-70.37634558099998,-2.532609150999889],[-70.3757254649999,-2.541084085999969],[-70.3709195559999,-2.550282490999891],[-70.36461503099989,-2.557620543999874],[-70.35960241699993,-2.560617777999894],[-70.33510778899998,-2.55400319399989],[-70.31508317099994,-2.541807555999966],[-70.2958853769999,-2.535399678999852],[-70.27394873099996,-2.546251728999891],[-70.26139135799993,-2.564751891999919],[-70.2473095299999,-2.607229918999863],[-70.23606990599986,-2.625109964999908],[-70.21751806699993,-2.632137959999838],[-70.200904094,-2.62438649499991],[-70.18387671,-2.619528910999804],[-70.1640846359999,-2.635031838999822],[-70.16113907899998,-2.645057067999844],[-70.16147497599991,-2.655185647999971],[-70.15971797699991,-2.663970641999881],[-70.15046789599997,-2.669241637999988],[-70.14183793199996,-2.666967874999884],[-70.13643774399988,-2.658596292999917],[-70.13194189499987,-2.647950948],[-70.12620581099992,-2.638752542999924],[-70.10579361999996,-2.625213316999932],[-70.09496740699993,-2.632551370999849],[-70.08212581399994,-2.676579690999816],[-70.07579545099992,-2.69135915099983],[-70.06747554499994,-2.703451435999895],[-70.05600337799993,-2.712443135999933],[-70.05044816099993,-2.714303486999938],[-70.05062902799997,-2.715130309999878],[-70.07305659999989,-2.750683694999835],[-70.15150142399997,-2.873053486999879],[-70.22994624899991,-2.995319925999809],[-70.308365234,-3.117793069999877],[-70.38683589699991,-3.24016286199992],[-70.46528072099994,-3.362532653999963],[-70.54372554499994,-3.485005797999861],[-70.62211869399994,-3.607272236999961],[-70.70056351799988,-3.729642027999915],[-70.73412735999997,-3.782041930999867],[-70.69064164299996,-3.786796162999863],[-70.55496516999992,-3.857902933999881],[-70.5442939859999,-3.865240986999865],[-70.49088639399987,-3.87847015399987],[-70.46424719299995,-3.878780211999853],[-70.43851232899996,-3.867721455999841],[-70.3992124029999,-3.831858011999898],[-70.37768916899995,-3.818835550999864],[-70.3495771899999,-3.815838317999933],[-70.31110408499995,-3.829274189999808],[-70.27356115699992,-3.856559345999813],[-70.24087581499995,-3.890872496999833],[-70.21697546399989,-3.924978942999899],[-70.20457312099998,-3.960118915999857],[-70.19894038899989,-3.995982360999975],[-70.1883983969999,-4.028951923999855],[-70.16170751999996,-4.05561696399981],[-70.06049922699994,-4.107190042999989],[-70.0305010589999,-4.131581318999835],[-70.01021805899998,-4.155145771999926],[-69.99275142399993,-4.180880634999838],[-69.96494950399997,-4.236484476999848],[-69.96257238799987,-4.264286396999892],[-69.9718224699999,-4.290951435999844],[-69.98939245599993,-4.314619241999864],[-70.02290462299993,-4.33890716599987],[-70.03703812699987,-4.340870869999904],[-70.05096492599995,-4.337253518999916],[-70.06334143099994,-4.328468525999838],[-70.07561458299995,-4.316169534999801],[-70.08109228599994,-4.308831481999889],[-70.08574316499991,-4.283923441999917],[-70.09662105399988,-4.265733336999887],[-70.11651647999989,-4.25829193099986],[-70.13889237499987,-4.260462340999851],[-70.15726334699994,-4.270177510999885],[-70.17025996899989,-4.288470967999871],[-70.18656388399992,-4.326298115999847],[-70.20563248699996,-4.342937926999866],[-70.21674291999992,-4.328881936999849],[-70.22472692899998,-4.313068948999856],[-70.23131567399989,-4.303663837999892],[-70.23917049199991,-4.301803486999887],[-70.24798132399991,-4.302113545999872],[-70.2575931399999,-4.299219665999885],[-70.30699580999993,-4.260255634999808],[-70.31671097899996,-4.247026467999902],[-70.31839046299993,-4.228939716999889],[-70.30934708699996,-4.191215921999927],[-70.31110408499995,-4.17085540699982],[-70.31870052099993,-4.156282653999853],[-70.33061193899994,-4.143156839999875],[-70.34306595999993,-4.139436136999876],[-70.36143693099993,-4.16816823299996],[-70.37368424599994,-4.164550882999976],[-70.39866980099993,-4.142330016999864],[-70.41533544899997,-4.13561208099992],[-70.42993404199993,-4.134165140999926],[-70.44422257599993,-4.137369078999909],[-70.4600097249999,-4.144603779999869],[-70.50088578299992,-4.177366637999882],[-70.5159753019999,-4.182327575999835],[-70.52638810299993,-4.176023049999813],[-70.52938533499994,-4.161346943999831],[-70.53411372899993,-4.146774189999859],[-70.54969417399988,-4.140676370999898],[-70.56563635299992,-4.148841247999826],[-70.57232845099992,-4.165894469999856],[-70.57656591799989,-4.183877868999843],[-70.58527339699994,-4.194523213999844],[-70.63253149499988,-4.16682464599991],[-70.63317744999995,-4.151838479999839],[-70.62958593799995,-4.13344166999984],[-70.6310587159999,-4.118972268999812],[-70.64676835199995,-4.115664977999813],[-70.66289139799994,-4.122176208999875],[-70.67203812699992,-4.13344166999984],[-70.68307104599992,-4.163827412999808],[-70.69405228799991,-4.172302346999814],[-70.71211319999992,-4.171888935999888],[-70.7742541099999,-4.155042418999812],[-70.78456355799997,-4.156282653999853],[-70.83223506699994,-4.179433694999844],[-70.84518001399996,-4.191009215999884],[-70.84830643799992,-4.204445088999833],[-70.8398056639999,-4.228733011999921],[-70.8427512209999,-4.238138121999881],[-70.85825415099993,-4.243305764999973],[-70.8737054039999,-4.250747171999905],[-70.88112097199993,-4.265629984999862],[-70.8865728349999,-4.283510029999917],[-70.89639135799987,-4.29983978199985],[-70.92633785099991,-4.328985289999878],[-70.93884354699992,-4.345108337999861],[-70.94809362799992,-4.364228617999856],[-70.96868668699992,-4.38531260199987],[-70.98971899499992,-4.366192321999876],[-71.00545446799988,-4.347588805999834],[-71.00997615599994,-4.36980967199986],[-71.02932897999997,-4.385829365999825],[-71.08157385299998,-4.364125263999909],[-71.10604264399993,-4.373840432999856],[-71.1195560299999,-4.396371357999882],[-71.12849605299994,-4.401849059999875],[-71.14410233599997,-4.399265238999874],[-71.15247391799994,-4.391720478999915],[-71.16311926299994,-4.369086201999863],[-71.1696821699999,-4.362781676999858],[-71.18616695199992,-4.372186787999823],[-71.20068802999995,-4.395647887999885],[-71.214072225,-4.41084075899991],[-71.2416674399999,-4.38004160599985],[-71.26481848099988,-4.3754940799999],[-71.28848628799992,-4.380765074999928],[-71.3046093339999,-4.394924417999889],[-71.30724483299991,-4.406809997999829],[-71.30512609899992,-4.41662851999989],[-71.30538448199991,-4.427067158999833],[-71.31515132699994,-4.439986266999838],[-71.31845861899987,-4.43936614999987],[-71.32409134999997,-4.436575622999896],[-71.3307576089999,-4.435128681999813],[-71.33701045799998,-4.438332620999887],[-71.34589880399992,-4.450114847999885],[-71.34956783099992,-4.453525492999901],[-71.36326208599993,-4.459209899999863],[-71.37116857999986,-4.453215432999826],[-71.37762813299992,-4.442673441999858],[-71.38698156799995,-4.434921975999941],[-71.40077917599993,-4.433371683999923],[-71.44697790599989,-4.44029632599999],[-71.47741532499995,-4.440606383999892],[-71.49234981399991,-4.442776794999972],[-71.50614742099995,-4.448564553999859],[-71.51286535699998,-4.457142842999886],[-71.51906652799995,-4.479157002999869],[-71.52459590699996,-4.485151468999902],[-71.53234737199998,-4.484634703999859],[-71.55756547099992,-4.479363707999838],[-71.57156978399993,-4.480707295999977],[-71.6171483979999,-4.500344339999841],[-71.6134276949999,-4.479260355999983],[-71.62350459799993,-4.482257587999825],[-71.64381343699995,-4.502308043999861],[-71.65652583799991,-4.506752217999875],[-71.66520747899997,-4.507579039999897],[-71.67306229699992,-4.50365163099984],[-71.6833459069999,-4.493523050999883],[-71.69931392499993,-4.481637470999857],[-71.70964921099994,-4.484738056999973],[-71.72106970199994,-4.492799580999886],[-71.74018998199995,-4.495590107999845],[-71.75145544499989,-4.492076110999888],[-71.77434810399993,-4.481534118999916],[-71.78483841999989,-4.480500589999849],[-71.7930549729999,-4.484634703999859],[-71.79574214699993,-4.49114593499992],[-71.79698238199995,-4.497967223999879],[-71.80065140799988,-4.502411396999975],[-71.80762772699995,-4.504478454999941],[-71.89015498899997,-4.513676858999858],[-71.90720821199992,-4.518431090999854],[-71.93314978099997,-4.536724548999828],[-71.98027868699998,-4.582303160999814],[-72.00983760599989,-4.591604918999835],[-72.02616735899993,-4.605660908999852],[-72.03552079299999,-4.611862080999841],[-72.04358231599988,-4.61382578599995],[-72.05355586799999,-4.610208434999876],[-72.06270259599994,-4.605660908999852],[-72.07112585499996,-4.605144143999908],[-72.07872228999992,-4.61341237399985],[-72.09660233599996,-4.649792581999847],[-72.1080228269999,-4.664261982999874],[-72.12709143199996,-4.680074970999868],[-72.1824368899999,-4.710667418999961],[-72.23313146999996,-4.748391214999827],[-72.25106319199995,-4.75882985399987],[-72.2693049719999,-4.764927672999831],[-72.28237910999997,-4.765444436999857],[-72.3197928469999,-4.760173441999838],[-72.33193680799991,-4.763274026999866],[-72.33684607,-4.769888610999871],[-72.33942989099995,-4.777330016999883],[-72.3447008869999,-4.782601012999834],[-72.38609370899992,-4.793969827999902],[-72.39684240699995,-4.805648701999885],[-72.40412878499993,-4.860219013999909],[-72.41467077699991,-4.876342060999974],[-72.43110388199996,-4.8878142289999],[-72.45260127799992,-4.899183043999898],[-72.45797562699997,-4.900423278999924],[-72.47177323399993,-4.900733336999821],[-72.4764757899999,-4.902490335999801],[-72.47947302299991,-4.908071390999822],[-72.47993811099994,-4.914169209999955],[-72.47967972799995,-4.919646910999944],[-72.48066158099994,-4.923367613999872],[-72.48588090099994,-4.932566019999953],[-72.48892980999997,-4.941195983999818],[-72.49513098199994,-4.946983743999795],[-72.50975541199995,-4.947500508999923],[-72.52851395699994,-4.950187682999854],[-72.5464456789999,-4.958249206999852],[-72.5622069909999,-4.970238138999903],[-72.58659826699991,-4.996696471999897],[-72.61434851099995,-5.009718932999832],[-72.62726761899995,-5.022431334999794],[-72.63160843899993,-5.033180032999908],[-72.63243526199997,-5.042791849999915],[-72.63507076099998,-5.051783548999864],[-72.64478592999993,-5.060568541999857],[-72.65419104099996,-5.063152363999848],[-72.70798620699989,-5.063152363999848],[-72.72881180899995,-5.057261250999858],[-72.74757035399995,-5.055090840999867],[-72.76017940299997,-5.06470265699987],[-72.77294348199993,-5.081135762999835],[-72.79030676399994,-5.088783873999915],[-72.83113114399995,-5.096638691999857],[-72.83635046399988,-5.096225280999846],[-72.84901118999991,-5.092091165999817],[-72.85397212699988,-5.092504577999833],[-72.8570210369999,-5.097568867999897],[-72.85769282999988,-5.112141621999867],[-72.85893306499992,-5.116069030999839],[-72.87283402499989,-5.123613789999879],[-72.88068884299992,-5.125267434999927],[-72.89381465699998,-5.125887552999899],[-72.91794755099994,-5.132088724999875],[-72.92197831299993,-5.1468681839998],[-72.91495031799994,-5.164438171999875],[-72.90559688399989,-5.179114277999858],[-72.90032588699995,-5.194617207999869],[-72.89489986199999,-5.255698749999866],[-72.89665686099997,-5.271615091999891],[-72.90539017699993,-5.285671080999819],[-72.91624222799999,-5.299106953999868],[-72.9239936939999,-5.313576354999896],[-72.93050492399996,-5.356467793999855],[-72.93479406699993,-5.372177428999819],[-72.96419795799991,-5.433775735999859],[-72.97349971599994,-5.466125182999846],[-72.96910721899994,-5.499198098999926],[-72.96032222599987,-5.531237487999831],[-72.96047725499992,-5.559246113999848],[-72.97691035999995,-5.651746927999881],[-72.98719396999986,-5.681099140999848],[-73.0013533129999,-5.708797708999882],[-73.10563635299994,-5.846980488999833],[-73.14000117999987,-5.878503112999795],[-73.1971036379999,-6.005007018999862],[-73.2188594159999,-6.040250345999837],[-73.23477575799993,-6.077560729999874],[-73.23529252199995,-6.123656106999888],[-73.22599076299994,-6.147944029999806],[-73.17767329999992,-6.202410989999805],[-73.17204056899999,-6.21967091899988],[-73.16155025199993,-6.299769388999849],[-73.15571081599995,-6.322713723999883],[-73.13380000899987,-6.368085631999818],[-73.12697871899992,-6.391340026999927],[-73.12703039599995,-6.413044127999825],[-73.13178462799993,-6.435264994999869],[-73.1478043219999,-6.476192727999886],[-73.17147212799992,-6.517430521999884],[-73.1989639889999,-6.545645852999854],[-73.23358719899991,-6.564042662999852],[-73.27849401899991,-6.575721536999835],[-73.34918737899991,-6.576445007999922],[-73.37068477399994,-6.583886413999848],[-73.40628983599993,-6.615615742999864],[-73.44540889499987,-6.639593606999881],[-73.51320837499989,-6.697781269999894],[-73.59387528499991,-6.743980000999841],[-73.64405310099994,-6.783977559999812],[-73.67195837399993,-6.800720723999859],[-73.68508418799988,-6.811882832999799],[-73.69696976799992,-6.837204284999871],[-73.70678828999986,-6.849606627999847],[-73.74859452299992,-6.87554819799989],[-73.7594207359999,-6.887433776999913],[-73.7654927169999,-6.904176939999871],[-73.76771480299992,-6.959264017999843],[-73.7922611089999,-7.050007831999892],[-73.8065754799999,-7.078223164999855],[-73.81233740199994,-7.102924498999868],[-73.80676214999997,-7.117879292999831],[-73.80355240899988,-7.126488952999877],[-73.73453853399991,-7.225087585999859],[-73.724539144,-7.267565612999902],[-73.7160900479999,-7.286375833999911],[-73.7130928139999,-7.304669290999882],[-73.72474584999995,-7.324823098999857],[-73.74125646999994,-7.334434915999879],[-73.76076432399994,-7.337432148999881],[-73.80027095599988,-7.335675149999816],[-73.82585078999992,-7.337432148999881],[-73.8434207759999,-7.343116555999841],[-73.87974930899989,-7.365027363999886],[-73.90202185099992,-7.373398945999866],[-73.92047033799994,-7.37215871199983],[-73.96106217499995,-7.356449076999851],[-73.9828954679999,-7.356449076999851],[-73.97943314599988,-7.374535827999864],[-73.95054602099992,-7.423215026999799],[-73.94431901099992,-7.448743183999837],[-73.9498742279999,-7.465176289999889],[-73.95778072199997,-7.480369160999828],[-73.95871089799994,-7.501969908999798],[-73.97142329999988,-7.523984068999879],[-73.9844863999999,-7.529407299999888],[-74.01847469099997,-7.543517760999876],[-74.00966385999996,-7.561087747999863],[-73.96938207999992,-7.584652200999855],[-73.83879573599995,-7.720561217999887],[-73.81114884499992,-7.739268086999872],[-73.77960038299994,-7.75291066399987],[-73.74223832199989,-7.764072774999818],[-73.71216263899993,-7.788153991999848],[-73.70255082299994,-7.82784149099993],[-73.71371293199988,-7.866288756999879],[-73.74611405499988,-7.886442565999857],[-73.77960038299994,-7.874453632999803],[-73.79463822499993,-7.874143574999905],[-73.79577510599995,-7.892230325999833],[-73.78494889399991,-7.940392760999913],[-73.77879939799993,-7.954138691999859],[-73.7484911709999,-7.976979674999852],[-73.70590979099993,-7.993826191999843],[-73.66803096599993,-8.01377329499985],[-73.65164953699991,-8.04601938799982],[-73.6447248949999,-8.068343607999793],[-73.61185868399987,-8.112578633999902],[-73.60110998599995,-8.136143086999892],[-73.60054154499991,-8.155470071999858],[-73.60617427599993,-8.192780455999895],[-73.60328039599995,-8.211590677999894],[-73.5906196699999,-8.234741719999889],[-73.56173254399997,-8.272672219999889],[-73.5527150069999,-8.299130553999888],[-73.54767655499995,-8.340161640999838],[-73.54082942699998,-8.359075215999878],[-73.52654089399991,-8.372407734999811],[-73.44726924699995,-8.416125996999881],[-73.43652054899994,-8.425221048999845],[-73.42024247299992,-8.446201679999845],[-73.4102172449999,-8.45550343799988],[-73.40050207599995,-8.459430846999851],[-73.37941809099993,-8.461911315999913],[-73.37052974499991,-8.465218606999912],[-73.35642207899988,-8.479791360999869],[-73.34929073199993,-8.498084817999853],[-73.34825720299995,-8.518341979999846],[-73.35766231399992,-8.562990416999881],[-73.35699051899992,-8.581800638999894],[-73.35058264199998,-8.598337096999884],[-73.30810461499996,-8.653217467999895],[-73.2898628339999,-8.670477395999796],[-73.26914058499997,-8.681639504999822],[-73.21100459799996,-8.693938496999863],[-73.19198767099991,-8.703860371999852],[-73.17457271299989,-8.720706888999842],[-73.16346227999995,-8.739620462999866],[-73.14584061699995,-8.78220184299984],[-73.06863602699988,-8.89371958399984],[-73.05380489199987,-8.906018574999791],[-73.01670121299989,-8.930409850999823],[-73.00367875199993,-8.944155781999852],[-72.97608353699994,-8.985393574999847],[-72.9700373949999,-9.001930032999852],[-72.9593920499999,-9.085645853999893],[-72.96368119399996,-9.115514830999814],[-72.97200109899993,-9.134428405999842],[-72.98238806199996,-9.14714080799989],[-73.02786332199992,-9.183107604999876],[-73.02853511599997,-9.210599466999838],[-73.03437455199989,-9.22258839899989],[-73.04791377799994,-9.230339863999816],[-73.06419185499996,-9.234784036999912],[-73.07840287299993,-9.236851094999878],[-73.09023677599995,-9.244189147999862],[-73.10119217899992,-9.260002135999867],[-73.11757360799989,-9.291938171999846],[-73.1408280039999,-9.322840677999833],[-73.19353796399992,-9.375653991999798],[-73.21498368399995,-9.409036966999864],[-72.81330277499991,-9.410897317999869],[-72.69170813099994,-9.435081887999928],[-72.68679886899994,-9.437459003999876],[-72.67801387599994,-9.445003763999836],[-72.67227779199989,-9.446657409999872],[-72.66778194199989,-9.445313821999902],[-72.65982377199992,-9.439836119999825],[-72.65594803899995,-9.439009297999801],[-72.63651770099997,-9.442936706999873],[-72.59605505399989,-9.455545755999893],[-72.55445552599988,-9.476009622999852],[-72.53564530399987,-9.481590677999876],[-72.49079016099998,-9.486448261999882],[-72.43022538299994,-9.482210794999844],[-72.4095031329999,-9.486344909999858],[-72.39022782499987,-9.496473489999815],[-72.36247757999993,-9.520658059999889],[-72.34454585799995,-9.532853697999897],[-72.33452063099992,-9.53399057999981],[-72.32294510999989,-9.532130228999904],[-72.3126615,-9.532543639999815],[-72.3067703859999,-9.540915221999796],[-72.30563350499997,-9.550630390999826],[-72.30692541599993,-9.579982604999898],[-72.30413488799988,-9.600859883999874],[-72.29488480699987,-9.617499694999893],[-72.26765132699995,-9.649539082999809],[-72.26165686099992,-9.667419127999864],[-72.26511918099996,-9.68653940799986],[-72.277004761,-9.724263203999895],[-72.26522253499991,-9.762193704999902],[-72.19473588099993,-9.805808613999858],[-72.17385860199997,-9.84580617299983],[-72.17111975099994,-9.85686492899984],[-72.16290319899987,-9.87722544299987],[-72.16042272999991,-9.887664082999903],[-72.16269649299994,-9.90006642699987],[-72.17835445199998,-9.918669941999923],[-72.18393550699992,-9.929005228999841],[-72.18553747599995,-9.949675800999856],[-72.183522095,-9.967039081999872],[-72.1846072999999,-9.984609069999848],[-72.1956660569999,-10.005589700999849],[-72.1419742439999,-10.005693053999877],[-71.96363887499987,-10.005899759999835],[-71.7853551849999,-10.006106465999878],[-71.60701981599995,-10.006519876999889],[-71.42868444899992,-10.006726581999857],[-71.39142574099988,-10.006829934999885],[-71.37339066599988,-10.00228240999985],[-71.3636238199999,-9.994530943999846],[-71.35959305899993,-9.986882832999868],[-71.35406367999994,-9.981301777999846],[-71.33964595499992,-9.979751484999923],[-71.3289489339999,-9.983368834999808],[-71.32171423399993,-9.98946665399987],[-71.3134460039999,-9.994220885999852],[-71.29970007399996,-9.993394062999839],[-71.2803214109999,-9.983472187999837],[-71.24512976199992,-9.956083678999889],[-71.19650223899993,-9.939857278999794],[-71.18311804199996,-9.92063364699986],[-71.17391963799989,-9.89727589899982],[-71.16105220499989,-9.87557179799991],[-71.14425736499993,-9.863066100999914],[-71.07746557699996,-9.833817239999874],[-71.01542801999992,-9.817487486999838],[-70.99721207699989,-9.803534850999853],[-70.98956396499997,-9.792062682999827],[-70.97760087099994,-9.766741230999854],[-70.96904842199993,-9.754855651999918],[-70.95747290099987,-9.745347188999844],[-70.93155716999993,-9.72974090599989],[-70.92026586899996,-9.720129088999883],[-70.89158544999995,-9.67858123699989],[-70.87548824099989,-9.660494485999877],[-70.82518123499992,-9.633622741999872],[-70.80538916099994,-9.618016458999847],[-70.76779455599993,-9.57987925199987],[-70.74727901299997,-9.564583027999916],[-70.6808489579999,-9.52768605499989],[-70.6620904139999,-9.509185892999866],[-70.62713130799992,-9.466604511999888],[-70.60638321999997,-9.448827819999863],[-70.58687536699998,-9.439526061999842],[-70.56697993999995,-9.43528859499989],[-70.52499283899996,-9.430947773999902],[-70.52375260399991,-9.44397023499985],[-70.52535457399995,-9.446760761999897],[-70.53566402199996,-9.464434102999817],[-70.53829951999998,-9.480970559999902],[-70.54326045799993,-9.493476256999898],[-70.56194148799992,-9.501744486999854],[-70.55979691599991,-9.50494842499991],[-70.5571872559999,-9.512596537999796],[-70.55512019899996,-9.516007180999821],[-70.56785843999992,-9.519211119999795],[-70.57615250699988,-9.529132994999884],[-70.57806453499998,-9.54184539799985],[-70.56452530899992,-9.565409850999842],[-70.57387874399996,-9.567786965999801],[-70.58744380799993,-9.565616556999899],[-70.59266312799994,-9.56375620499989],[-70.61922481399995,-9.564479674999802],[-70.62441829499997,-9.565823262999857],[-70.61467728699992,-9.584116719999827],[-70.60728755699992,-9.61677622499981],[-70.60080216599997,-9.635276386999834],[-70.58961421699993,-9.65026255299989],[-70.56021032799993,-9.673310241999857],[-70.5486348069999,-9.687676289999871],[-70.54186519399994,-9.70824350999986],[-70.54341548699998,-9.726950377999842],[-70.55124446699998,-9.74410695399989],[-70.56336258999995,-9.760746764999823],[-70.56666988099997,-9.767051289999841],[-70.56915035099988,-9.779143574999821],[-70.57416296399992,-9.784931334999882],[-70.57956315099997,-9.78565480499988],[-70.59007930499993,-9.779040221999892],[-70.59524694899993,-9.779040221999892],[-70.60545304399992,-9.78503468899983],[-70.61509069899995,-9.792269388999884],[-70.62322973699995,-9.801054381999876],[-70.62901749699992,-9.811596374999835],[-70.6384484459999,-9.851800638999862],[-70.63855179899991,-9.91164194799991],[-70.63865963799995,-9.955891641999813],[-70.6388618579999,-10.03886932399989],[-70.63917191599998,-10.166200052999883],[-70.63948197399998,-10.293530781999877],[-70.63984370999995,-10.42086151099987],[-70.64020544499996,-10.54808888699985],[-70.64051550299996,-10.675419616999847],[-70.64085139999993,-10.802646991999907],[-70.64113562099993,-10.929874368999874],[-70.64134232599989,-11.010799661999867],[-70.55555944899996,-10.942793477999883],[-70.53411372899993,-10.93814259899983],[-70.50719030799993,-10.961293639999909],[-70.46249019399997,-11.013900247999814],[-70.43727209499994,-11.036741231999912],[-70.39130590899993,-11.059065449999878],[-70.34102473999988,-11.067230325999901],[-70.28939998399994,-11.064749857999828],[-70.2394805509999,-11.055138040999822],[-70.19873368299992,-11.041185403999833],[-69.95611283399998,-10.919332376999819],[-69.9142032469999,-10.92139943399988],[-69.89513464399994,-10.926877136999863],[-69.87570430599993,-10.928014016999867],[-69.8350866289999,-10.925326842999851],[-69.80831823799994,-10.927187194999846],[-69.79105830999995,-10.93431854299989],[-69.75343786699992,-10.958296406999807],[-69.72020992,-10.964910989999808],[-69.59623815899991,-10.951991881999888],[-69.57763464399993,-10.952301940999874],[-69.57401729399996,-10.958503112999864],[-69.57050329599991,-10.96460093199991],[-69.56683426899991,-10.970698750999873],[-69.56326859599994,-10.976899922999863],[-69.5597287599999,-10.98310109399985],[-69.55611140999991,-10.989405618999852],[-69.5524940599999,-10.995606791999847],[-69.54895422399997,-11.00170460999989],[-69.44456783099992,-11.182675475999872],[-69.3403364669999,-11.363749694999868],[-69.2359500729999,-11.544927265999888],[-69.13158951899996,-11.726001484999884],[-69.0272806399999,-11.90707570299989],[-68.92286840899996,-12.088149922999888],[-68.8185595299999,-12.269224141999885],[-68.71422481399995,-12.45029835999989],[-68.68946323799995,-12.493417655999863],[-68.68425248299991,-12.50249155699987],[-68.69438106299998,-12.506832376999853],[-68.70022049999994,-12.516030781999845],[-68.7062666429999,-12.535977884999866],[-68.71453487199994,-12.551170755999804],[-68.7260587159999,-12.56595021599982],[-68.74026973499994,-12.578559264999924],[-68.77011287499994,-12.594372252999932],[-68.7838846439999,-12.605741068999833],[-68.79341894599989,-12.620210469999861],[-68.79460750399991,-12.636540221999894],[-68.78533158399998,-12.645945332999943],[-68.75298213799991,-12.654730325999921],[-68.74295690999989,-12.665789082999936],[-68.76613378899995,-12.7105408729999],[-68.77373022499991,-12.71942921899999],[-68.85620581099994,-12.741443378999975],[-68.87656632599996,-12.754982604999967],[-68.89199173999995,-12.775756530999912],[-68.9046266279999,-12.803971862999886],[-68.92661494999996,-12.800974629999871],[-68.93873307399987,-12.819681497999936],[-68.94943009499988,-12.843866068000011],[-68.98095271799994,-12.86794728599996],[-68.98658544899988,-12.89047820999997],[-68.98622371499995,-12.933369649999845],[-68.97393624599991,-13.031759582999982],[-68.97214188699994,-13.046127623999878],[-68.97966080799998,-13.164570006999867],[-68.97702530999996,-13.204929300999837],[-68.96278845299992,-13.283580829999975],[-68.97444148799988,-13.478814391999846],[-68.97074662299988,-13.501448668999984],[-68.9768186039999,-13.526253356999929],[-68.98565527399992,-13.550231221999852],[-68.99425939899996,-13.563046975999924],[-69.01539505999997,-13.585474547999922],[-69.02319820199992,-13.596946715999849],[-69.02552364199994,-13.610692646999878],[-69.02361161399992,-13.623301696999903],[-69.02384415799989,-13.634980569999968],[-69.0326291509999,-13.645935973999853],[-69.04402380399998,-13.64800303199982],[-69.07453873699987,-13.642628681999938],[-69.0875870369999,-13.643868916999892],[-69.10159134999992,-13.666606546999873],[-69.08104996799995,-13.6954419959999],[-69.02704809599996,-13.738230081999916],[-69.01596350099996,-13.753112894999873],[-69.01596350099996,-13.76458506199998],[-69.02082108599986,-13.776367288999893],[-69.0242834069999,-13.792490335999872],[-69.0230948489999,-13.806029561999935],[-69.01014990299987,-13.844373473999951],[-68.9929933279999,-13.86979827899988],[-68.9891951089999,-13.903698018999888],[-68.98904008099993,-13.940078226999873],[-68.98296809899998,-13.972220967999903],[-68.96971309499989,-13.990514424999956],[-68.9161763099999,-14.024930928],[-68.90576350899991,-14.039296976000015],[-68.89997574899994,-14.054799905999927],[-68.89372290099993,-14.089216410999896],[-68.86889237499989,-14.156189065999982],[-68.86444820199998,-14.191225687],[-68.88372351099991,-14.21148284899999],[-68.95131628399989,-14.219957783999917],[-68.98490596499991,-14.228329365999983],[-69.01014990299987,-14.24589935299987],[-69.01570511899988,-14.263159280999856],[-69.017229574,-14.282486266999896],[-69.0161702069999,-14.321140238],[-69.00831538899988,-14.339020283999874],[-68.99462113499996,-14.358967386999979],[-68.99025447599988,-14.379017842999843],[-69.01014990299987,-14.397104593999854],[-69.07513301599994,-14.432451272999856],[-69.0945633549999,-14.446403910000027],[-69.13401831099992,-14.49074229],[-69.14114965899995,-14.494152933],[-69.15820288099991,-14.498493753999893],[-69.16427486199996,-14.503041279999922],[-69.1674271249999,-14.520301207999921],[-69.1645074059999,-14.566396585999854],[-69.17039851899992,-14.577558695999883],[-69.19223181199993,-14.57693857799991],[-69.21494360399993,-14.572287698999942],[-69.23465816299998,-14.574251403999881],[-69.24749975599997,-14.593681741999943],[-69.25383011899999,-14.721839293999963],[-69.26762772699993,-14.750674743],[-69.28351822999994,-14.759666442999942],[-69.33904455599992,-14.774755960999954],[-69.3614204509999,-14.78798512799986],[-69.37054134199987,-14.80152435299992],[-69.37198828199988,-14.818680928999896],[-69.36775081399992,-14.90053639699984],[-69.36984370999991,-14.908287861999936],[-69.38622513899995,-14.945804951999932],[-69.39066931199994,-14.96440846699997],[-69.38431311099993,-14.981771748999819],[-69.36281571499998,-15.001305439999909],[-69.34609838899992,-15.01649831199994],[-69.2885825199999,-15.101971129999868],[-69.27220109099997,-15.118197529999874],[-69.2126698409999,-15.161295674999977],[-69.1964951169999,-15.176591897999927],[-69.17176794499997,-15.210801696999921],[-69.14810013899995,-15.23333262099986],[-69.15042557799998,-15.251626079],[-69.16613521399995,-15.263925068999951],[-69.18972550499987,-15.262374775999946],[-69.20913000599992,-15.263615010999887],[-69.22259171599997,-15.302165628999944],[-69.25589717699995,-15.313327738999973],[-69.27519832399987,-15.33027760799999],[-69.29116634199991,-15.350844827999977],[-69.29695410199989,-15.366967874999872],[-69.28540441899995,-15.39673349999994],[-69.28592118299991,-15.40541514099999],[-69.2929233399999,-15.409859313999915],[-69.32026017299992,-15.418851012999864],[-69.33036291499987,-15.424225362],[-69.34341121499992,-15.442208760999817],[-69.34852718099992,-15.461845804999854],[-69.35111100299991,-15.481896260999974],[-69.35640783799994,-15.50142995199981],[-69.42118424499995,-15.596411234999904],[-69.43002091599996,-15.626280211999912],[-69.42433650800001,-15.65625254299995],[-69.41221838399991,-15.685811462999977],[-69.36961116599994,-15.788957620999922],[-69.3271331389999,-15.892000426999829],[-69.28457759599993,-15.995043232999919],[-69.24212540799991,-16.098189391999853],[-69.21964615999988,-16.152759704999966],[-69.18486791999993,-16.195031025999953],[-69.16626440499999,-16.21043060299985],[-69.14468949499994,-16.223453063999884],[-69.12081498299995,-16.231204528999967],[-69.09518347199989,-16.231204528999967],[-69.0838921719999,-16.226553649999826],[-69.06451350999993,-16.21208424899997],[-69.05355810599988,-16.208363545999973],[-69.04273189399993,-16.209293721999842],[-69.01014990299987,-16.219112243999902],[-68.98203792399994,-16.21001719099983],[-68.9595069989999,-16.223349710999855],[-68.91876013199993,-16.266654561],[-68.86667028799988,-16.286911722999918],[-68.84364843799992,-16.30200124099983],[-68.83349401899997,-16.328976338999937],[-68.85584407599995,-16.36318613599985],[-68.96836950699992,-16.406387633999884],[-69.00172664399989,-16.422820739999935],[-69.02787491899997,-16.454136657999953],[-69.03681494199992,-16.47149993899997],[-69.03888199899987,-16.491860452999987],[-69.03764176499992,-16.550254821999957],[-69.04012223399991,-16.58136403399983],[-69.03513545799987,-16.59800384499985],[-69.00834122799998,-16.63417734799988],[-69.02051102699997,-16.64947357199992],[-69.03707332399996,-16.670247496999878],[-69.05381648799994,-16.682339782999943],[-69.11205582699995,-16.711485289999885],[-69.13058182799998,-16.715826110999956],[-69.16636775799992,-16.719133402999944],[-69.18236161299987,-16.728745218999876],[-69.19166337099998,-16.743007913999932],[-69.21065445999994,-16.79706146199993],[-69.2244520669999,-16.818248799999893],[-69.32594458,-16.92222178099985],[-69.35245459099988,-16.977722269999916],[-69.3643143319999,-16.991158141999875],[-69.40715409399994,-17.015652770999836],[-69.41358780999988,-17.022267353999922],[-69.41655920499998,-17.03198252299987],[-69.41330358899992,-17.037770283999933],[-69.40601721199994,-17.04087086899996],[-69.40126298099993,-17.047175394999982],[-69.40601721199994,-17.06298838299989],[-69.42743709299995,-17.086862894999967],[-69.4541538089999,-17.096578063999914],[-69.4828083909999,-17.101745706999907],[-69.51009354699991,-17.11208099299992],[-69.54099605399992,-17.132234801999815],[-69.5950496019999,-17.179673766999983],[-69.60114742099995,-17.181534118999977],[-69.61835567199992,-17.184221292999922],[-69.62279984599992,-17.185564879999973],[-69.63383276399992,-17.20726898099997],[-69.64941320899996,-17.262769469999952],[-69.6664922699999,-17.288297628],[-69.66441572199994,-17.288562462999877],[-69.61300716199989,-17.295118916999954],[-69.59727168799989,-17.30049326599992],[-69.55693823299993,-17.33149912499985],[-69.53709448299995,-17.35113616999996],[-69.5225992439999,-17.36911956799996],[-69.51138545799995,-17.3986784869999],[-69.50833654799992,-17.434025165999813],[-69.51009354699991,-17.505441995999902],[-69.51003631099988,-17.506588197999974],[-69.51008875199994,-17.506588197999974],[-69.63832381799992,-17.62606411000003],[-69.6839024309999,-17.65603644],[-69.72904179499994,-17.66327113999995],[-69.77580896599994,-17.65696661599985],[-69.81805444899993,-17.65913702599984],[-69.84983545499998,-17.691589825999856],[-69.85756108199988,-17.73417120599983],[-69.84608891399995,-17.769104473999988],[-69.82903569099992,-17.803831036999853],[-69.8200956679999,-17.84610235799984],[-69.81815780199997,-17.87142380999991],[-69.812783453,-17.888270326999887],[-69.79061426399997,-17.9247538879999],[-69.78237187299993,-17.943874167999894],[-69.77989140399987,-17.96258103699988],[-69.78309534299993,-17.981597962999942],[-69.84358260699989,-18.113166160999896],[-69.86533838499989,-18.14458543199983],[-69.8834509749999,-18.163602357999977],[-69.92280257799989,-18.196468569999837],[-69.97034489499993,-18.25062547099985],[-69.98778569199996,-18.264268048999853],[-70.010006557,-18.27263963099992],[-70.03935877,-18.27305304199993],[-70.06323328199994,-18.28070115299991],[-70.13415918599992,-18.318941713999905],[-70.1590672269999,-18.32596970899999],[-70.21087284899997,-18.331240703999853],[-70.31789473999996,-18.32121547699991],[-70.36939030599993,-18.32472947399988],[-70.39470274608738,-18.33774620693788],[-70.4197391209999,-18.31641551999986],[-70.46940313699989,-18.286093817999884],[-70.53125161699992,-18.243258732999877],[-70.56219465599989,-18.22447728799993],[-70.59780617799996,-18.20570523299989],[-70.63440577899988,-18.186867579999912],[-70.68325609099995,-18.16169783799988],[-70.73338782499991,-18.115492445999806],[-70.73668372299994,-18.111097914999917],[-70.74217688699986,-18.10035572699981],[-70.74767005099989,-18.094414971999882],[-70.7523494129999,-18.091729424999983],[-70.76244055899987,-18.090427341999984],[-70.76817786399994,-18.088148695999916],[-70.82616126199991,-18.036716403999932],[-70.84349524599992,-18.026625257999953],[-70.87889563699991,-18.016696872999873],[-70.89167232999995,-18.005629165000016],[-70.90489661399991,-17.966566664999874],[-70.91462154899995,-17.94654713299998],[-70.92886308499996,-17.937920830999897],[-70.94489498599995,-17.93157317499987],[-70.98704993399988,-17.900811455999886],[-71.00715084499984,-17.890232028999932],[-71.06631425699993,-17.87175872199991],[-71.08657792899994,-17.86907317499984],[-71.13809160099993,-17.820733330999914],[-71.15957597599996,-17.808200778999918],[-71.17308508999994,-17.79631926899995],[-71.2035212879999,-17.76262786299995],[-71.21922766799986,-17.751560154],[-71.26781165299991,-17.731215101999922],[-71.30455481699991,-17.705987237999878],[-71.32579505099989,-17.695245049999954],[-71.34691321499992,-17.691013278999932],[-71.38003495999993,-17.695245049999954],[-71.38442949099993,-17.69784921699994],[-71.38516191299996,-17.687269789999903],[-71.37865149599986,-17.675713799999883],[-71.36400305899986,-17.656182549999897],[-71.35960852799987,-17.633070570999934],[-71.36278235599994,-17.6132138],[-71.36839758999994,-17.593194268999877],[-71.37767493399988,-17.492364190999908],[-71.38194739499991,-17.473809502999984],[-71.3958227199999,-17.43417734199997],[-71.40025794199997,-17.40032317499991],[-71.4044490229999,-17.39609140399989],[-71.41075598899992,-17.394301039999903],[-71.41860917899993,-17.38933684699994],[-71.44591223899991,-17.355157158999955],[-71.48131262899992,-17.3312313779999],[-71.48387610599991,-17.328383070999863],[-71.4977107409999,-17.29713307099989],[-71.51451575399992,-17.284600518999895],[-71.5305883449999,-17.279717706],[-71.56944739499991,-17.273207290000013],[-71.59308834499983,-17.265557549999897],[-71.60252844999985,-17.259535414999974],[-71.61998450399992,-17.24431731599999],[-71.63683020699992,-17.233656507999882],[-71.64146887899994,-17.231622002999856],[-71.80760657499991,-17.191338799999965],[-71.84569251199989,-17.174574476999947],[-71.8779190749999,-17.14910247199985],[-71.92442786399997,-17.09563567499991],[-71.94859778599997,-17.073500257999854],[-72.00308183499995,-17.042575778999904],[-72.02456620999988,-17.033623955999953],[-72.04727128799993,-17.02776458099993],[-72.10993404899992,-17.0231259089999],[-72.11815344999994,-17.01930103999989],[-72.12352454299989,-17.00937265399989],[-72.12218176999988,-16.988213799999883],[-72.12437903599988,-16.977715752999913],[-72.13805091099991,-16.9647763],[-72.17853756399995,-16.942152601999847],[-72.18700110599988,-16.93336353999996],[-72.19725501199991,-16.916436455999985],[-72.2210994129999,-16.905938409],[-72.26895097599993,-16.89519622199991],[-72.29336503799988,-16.880629164999974],[-72.29796301999991,-16.86296965899987],[-72.29735266799986,-16.843519789999874],[-72.30650794199994,-16.824151299999855],[-72.36221269399994,-16.76132577899989],[-72.38508053299994,-16.745700778999904],[-72.39635169199994,-16.74236419099988],[-72.40562903599991,-16.74236419099988],[-72.41397050699996,-16.741306248],[-72.42292232999988,-16.73479583099993],[-72.4332576159999,-16.720310153999975],[-72.44009355399992,-16.714450778999932],[-72.45018469999988,-16.712090752999885],[-72.45645097599991,-16.709161065999865],[-72.47809811099992,-16.695082289999917],[-72.48802649599992,-16.69036223799999],[-72.52965247299987,-16.683526299999897],[-72.58775794199994,-16.65935637799997],[-72.69235303099995,-16.660653909999866],[-72.78132076699987,-16.629327080999843],[-72.88833574099988,-16.554620049999926],[-73.06024642499993,-16.494881019999895],[-73.09382076699984,-16.460137627999984],[-73.13792883999992,-16.438571872999884],[-73.17516028599991,-16.413262627999927],[-73.1925349599999,-16.40715911299995],[-73.23167883999992,-16.40797291499996],[-73.2503962879999,-16.40300872199991],[-73.26573645699995,-16.393731377999956],[-73.28014075399992,-16.388360283999898],[-73.2962133449999,-16.395603123000015],[-73.30467688699994,-16.381931247999972],[-73.31729081899991,-16.3404273419999],[-73.32599850199989,-16.330743096999925],[-73.33604895699997,-16.326267184999878],[-73.36510169199994,-16.319919529000018],[-73.42031816299988,-16.293145440999936],[-73.48180091099994,-16.278903903999932],[-73.59890933499986,-16.239849265999908],[-73.67620239899989,-16.227872934999922],[-73.7006869059999,-16.244594385999946],[-73.70027772999987,-16.220696357999955],[-73.71849524599985,-16.206231377999856],[-73.7279353509999,-16.196058851999904],[-73.73501542899993,-16.190118096999882],[-73.77135794599991,-16.1782018869999],[-73.84264075399994,-16.146661065999936],[-73.87218176999991,-16.128676039999903],[-73.93442092699985,-16.086441470000025],[-74.00407705199993,-16.037059399999933],[-74.03282630099991,-16.012302341999927],[-74.03316469199984,-16.000782705999896],[-74.0279042459999,-15.988802543999938],[-74.03575805399993,-15.973241911999947],[-74.04662024599992,-15.960137627999984],[-74.07710435099993,-15.946034487999894],[-74.1616918609999,-15.901055596999882],[-74.17739824099995,-15.896905205999841],[-74.22061113199987,-15.891289971999926],[-74.23692786399987,-15.881036065999908],[-74.25017353099992,-15.866150007999948],[-74.25336307299995,-15.855733609999902],[-74.26573862199993,-15.847661498999912],[-74.28995140599991,-15.839599725999987],[-74.32793664299993,-15.848055468999831],[-74.36311836899995,-15.839254798999962],[-74.39801188199996,-15.826863044999898],[-74.4417211579999,-15.798028253],[-74.44640051999991,-15.792250257999951],[-74.44896399599992,-15.772719007999882],[-74.4515274729999,-15.76262786299999],[-74.45669511599993,-15.75457122199988],[-74.4576470339999,-15.740821364999958],[-74.46306827599994,-15.726723526999862],[-74.48851477799988,-15.717705987999906],[-74.53831798999991,-15.70263977899988],[-74.68097896999993,-15.642022393999921],[-74.7512232359999,-15.604642783999934],[-74.8475599899999,-15.566293733999926],[-74.8686449269999,-15.538050754999901],[-74.97911536399994,-15.482354424999967],[-75.00641842399992,-15.461195570999877],[-75.01988684799989,-15.45712656],[-75.03477942599994,-15.459242445999832],[-75.04161536399997,-15.462172132999855],[-75.04869544199994,-15.460707289999888],[-75.06456458199995,-15.449639580999941],[-75.09487870999993,-15.417168877999956],[-75.10610917899993,-15.408623955999843],[-75.12572180899991,-15.40260182099992],[-75.14549719999994,-15.399509372999942],[-75.1607966789999,-15.39332447699988],[-75.16698157499984,-15.37761809699991],[-75.17210852799988,-15.37363046700001],[-75.18941600299988,-15.369544973999934],[-75.19098976099988,-15.36210097799997],[-75.18946098199987,-15.358371153],[-75.17559195599998,-15.351614275999948],[-75.15542235799992,-15.346419662999933],[-75.15164083299996,-15.332988079999978],[-75.16685950399989,-15.311293226999863],[-75.19595292899996,-15.293633721999853],[-75.23643958199997,-15.27678801899985],[-75.26317298099988,-15.250420830999856],[-75.24380449099988,-15.251397393999923],[-75.23277747299991,-15.245782159],[-75.22842363199993,-15.235772393999937],[-75.22964433499996,-15.223728123000017],[-75.23412024599992,-15.214532158999859],[-75.24111894399991,-15.205336195999974],[-75.28962154899996,-15.161065362999834],[-75.30955969999985,-15.152032158999916],[-75.36180579299986,-15.144789320999976],[-75.37645423099988,-15.134047132999882],[-75.38524329299995,-15.11695728999993],[-75.39415442599989,-15.093926690999949],[-75.44102942599994,-15.027764580999971],[-75.44810950399987,-15.007989190999949],[-75.45579993399991,-14.998142185000019],[-75.49160722599993,-14.9745419249999],[-75.50275631399995,-14.963636976999908],[-75.50438391799989,-14.956963799999867],[-75.50275631399995,-14.925469658999859],[-75.50658118399986,-14.918226820999832],[-75.55064856699997,-14.884942315999837],[-75.63288326699984,-14.845798434999892],[-75.65991378699994,-14.831718243999916],[-75.6805325679999,-14.82102661799982],[-75.70474199099989,-14.805759372999859],[-75.74833209599984,-14.770979643999949],[-75.79820716099988,-14.74732838299988],[-75.80166581899987,-14.74244557099982],[-75.80996660099996,-14.736993096999953],[-75.81989498599995,-14.732191664999974],[-75.82827714799993,-14.730238539999933],[-75.83942623599992,-14.726332289999931],[-75.84691321499992,-14.717054945999976],[-75.8529353509999,-14.705987237999848],[-75.85968990799995,-14.696058851999851],[-75.8667699859999,-14.689548434999933],[-75.87417558499989,-14.684258721999969],[-75.91588294199994,-14.663832289999904],[-75.93065344999991,-14.649346612999949],[-75.92729030899991,-14.626830893999852],[-75.9304168329999,-14.603422610999985],[-75.93276944199994,-14.580015125],[-75.94607485199992,-14.558889795999933],[-75.96327508799986,-14.534760010999959],[-75.97343438099998,-14.528741470999973],[-75.97651060599986,-14.517386182999871],[-75.97184844099985,-14.508342295999867],[-75.9648320339999,-14.492490385999842],[-75.9689390039999,-14.483759687999822],[-75.9806361259999,-14.461098797999881],[-76.00340735599988,-14.449802341999927],[-76.03718014199987,-14.429294528999959],[-76.0491430329999,-14.418064059999876],[-76.06843014199984,-14.39137135199995],[-76.08185787699992,-14.377699476999908],[-76.09215247299993,-14.373142184999876],[-76.1166072259999,-14.370700778999932],[-76.12657630099989,-14.36712004999987],[-76.13320878799993,-14.359633070999891],[-76.14355257899985,-14.327895112999967],[-76.11611326799988,-14.324873809999913],[-76.10827712499989,-14.31574029099987],[-76.10670895599989,-14.305859528999989],[-76.11376205999994,-14.292927167999949],[-76.12316263899987,-14.273908143999888],[-76.12930253799992,-14.263441664999943],[-76.13707434799994,-14.241875908999859],[-76.14915930899986,-14.223890882999825],[-76.16470292899996,-14.216403903999932],[-76.18114173099985,-14.210625908999887],[-76.18952389199993,-14.196954033999944],[-76.19489498599995,-14.181084893999907],[-76.20225989499997,-14.168552342],[-76.21544348899991,-14.161228122999916],[-76.2499396239999,-14.14780620299996],[-76.25156666399994,-14.169807381999846],[-76.27119345499995,-14.200930401999969],[-76.29043535099996,-14.167413018999964],[-76.28205618199986,-14.14092443799997],[-76.28280594299991,-14.103694801999865],[-76.29173743399986,-14.080987237999977],[-76.28120009199992,-14.073314226999969],[-76.28087317599997,-14.057386976999851],[-76.2679072379999,-14.049715412999888],[-76.27418071399993,-14.039040030999985],[-76.27181973399988,-14.030684073999879],[-76.26944939399995,-14.020059455999913],[-76.27886350799984,-14.008602180999887],[-76.28457597599993,-13.991631768999866],[-76.27280498199984,-13.987397577999912],[-76.27043882599995,-13.962500100999932],[-76.27742903799992,-13.945103258999893],[-76.29531010699989,-13.934502471999934],[-76.29784094999985,-13.922133070999934],[-76.29686438699989,-13.914971612999906],[-76.29377193899998,-13.907484632999925],[-76.29271399599992,-13.900485934999864],[-76.29784094999985,-13.894219658999987],[-76.30846106699987,-13.891778252999954],[-76.31505286399997,-13.89666106599985],[-76.31784365799984,-13.912702095999975],[-76.32485993199987,-13.921000375],[-76.3373008039999,-13.916453254999837],[-76.35439941999987,-13.919437095999896],[-76.37302667399985,-13.908831455999902],[-76.39395968899993,-13.908020420999947],[-76.39354407499991,-13.881931247999859],[-76.39110266799986,-13.86785247199991],[-76.37760155599995,-13.835888123999894],[-76.36671345499992,-13.822023559999906],[-76.37136106299988,-13.809178307999971],[-76.36201552599987,-13.80164219799984],[-76.3441320739999,-13.805446922999877],[-76.32575436099998,-13.791192315999936],[-76.30809485599988,-13.791761976999908],[-76.29590351399986,-13.793435777999932],[-76.29047349799993,-13.804770452999861],[-76.30060154699993,-13.819101517999897],[-76.30295190599986,-13.832688930999948],[-76.29360977899998,-13.840256135999908],[-76.28058834499983,-13.84685637799987],[-76.26177321599997,-13.861428284999946],[-76.2539846309999,-13.85086795099997],[-76.25318291599993,-13.82973194199998],[-76.24771711599993,-13.808601830999876],[-76.23289938099987,-13.764072735999946],[-76.22431705799994,-13.733871439999886],[-76.22492428299992,-13.713636976999979],[-76.22134355399996,-13.686618747999859],[-76.20970618399994,-13.653985283999901],[-76.19815019399991,-13.622491143999895],[-76.18126380099991,-13.5394833309999],[-76.1878555979999,-13.46493905999995],[-76.19603430899991,-13.428155205999872],[-76.2211015269999,-13.357555918999921],[-76.27428137899989,-13.28728606599995],[-76.30695451799994,-13.257044706999864],[-76.37096106699991,-13.17359791499996],[-76.45095044299993,-13.071710555],[-76.48334719299993,-13.036295975999892],[-76.49094831699992,-13.0120790239999],[-76.50548255099989,-12.990166924999926],[-76.51647444299996,-12.946153000999985],[-76.51167287999996,-12.910820269999903],[-76.51623308699988,-12.86991882799984],[-76.53197180899986,-12.843926690999963],[-76.54230709499987,-12.831963799999926],[-76.61107337099986,-12.774346612999878],[-76.63003495999988,-12.750664971999939],[-76.67247473899994,-12.668552341999941],[-76.6817927729999,-12.655368747999987],[-76.68065344999984,-12.628676039999888],[-76.68146725199995,-12.619317315999936],[-76.68932044199993,-12.60963307099989],[-76.7047669409999,-12.594410911000011],[-76.7361804629999,-12.552415255999918],[-76.78001668499988,-12.523388818999905],[-76.7990792869999,-12.509342092999844],[-76.81175696499992,-12.482679945999877],[-76.79112708199987,-12.456719658999873],[-76.78242985599988,-12.419212948999856],[-76.7908855869999,-12.3810469739999],[-76.82542883999986,-12.352471612999906],[-76.8536460359999,-12.302644124999816],[-76.94896399599986,-12.25009530999989],[-77.0062556629999,-12.226332289999887],[-77.01720130099997,-12.225762627999828],[-77.02086341099991,-12.220635674999826],[-77.03831946499989,-12.204359632999882],[-77.04454505099994,-12.194756768999895],[-77.0469457669999,-12.180759372999844],[-77.04417883999992,-12.172051690999865],[-77.04010982999995,-12.1644833309999],[-77.03831946499989,-12.153741143999893],[-77.05394446499986,-12.11419036299985],[-77.08897864499994,-12.088962497999887],[-77.11440995999988,-12.081312757999854],[-77.1328832669999,-12.075778903999847],[-77.17491614499997,-12.071872653999845],[-77.16649329299992,-12.05331796699984],[-77.15510006399995,-12.038995049999855],[-77.14509029899996,-12.023044528999847],[-77.14073645699997,-11.999200127999856],[-77.14590410099989,-11.9320614559999],[-77.15436764199991,-11.909437757999838],[-77.16185462099989,-11.87948984199987],[-77.16637122299994,-11.869561455999857],[-77.18171139199988,-11.84587981599985],[-77.1872452459999,-11.825290622999901],[-77.18144065699987,-11.800578023999847],[-77.1963737419999,-11.776822169999903],[-77.19633631899991,-11.767835058999891],[-77.17797808399989,-11.770370520999805],[-77.1670597589999,-11.756536131999907],[-77.1710856209999,-11.736138062999885],[-77.19542395699992,-11.691338799999896],[-77.19981848899991,-11.670098565999822],[-77.21092688699994,-11.646416924999896],[-77.22545325399997,-11.627211195999848],[-77.24006100199989,-11.61939869599986],[-77.25300045499989,-11.614841403999904],[-77.26423092399989,-11.604261976999865],[-77.28136145699995,-11.582126559999878],[-77.28473873599995,-11.57537200299984],[-77.27774003799988,-11.565850518999852],[-77.27794348899994,-11.557305596999825],[-77.2818904289999,-11.54949309699984],[-77.29898027299996,-11.529961846999852],[-77.31273352799987,-11.504815362999878],[-77.3204646479999,-11.49374765399993],[-77.32945716099991,-11.489027601999837],[-77.34032141799989,-11.485935153999845],[-77.34801184799991,-11.478285414999903],[-77.36046301999994,-11.46111419099988],[-77.37779700399992,-11.44988372199988],[-77.42080644399995,-11.430759372999901],[-77.45335852799994,-11.403741143999866],[-77.60850989499991,-11.32244231599988],[-77.6341853509999,-11.30339934699988],[-77.64725670599998,-11.292316286999906],[-77.64484993899987,-11.279902764999818],[-77.64701713799985,-11.256763438999897],[-77.6520897629999,-11.236992145999864],[-77.64513417599994,-11.230823806999837],[-77.6479675409999,-11.222346117999875],[-77.63984978999989,-11.213929789999922],[-77.63063069099985,-11.213418070999865],[-77.6185571249999,-11.216305756999873],[-77.6093328529999,-11.210719672999886],[-77.59779929899986,-11.206836516999843],[-77.59367704499994,-11.191068729999854],[-77.59468411699996,-11.165117081999867],[-77.6083306469999,-11.141921577999836],[-77.61860031599991,-11.12719363699992],[-77.61276177599993,-11.11539622699982],[-77.63336825699986,-11.092689533999902],[-77.6286895239999,-11.08257188499988],[-77.63898243099987,-11.064978995999866],[-77.63431646299989,-11.056557865999876],[-77.6428655209999,-11.03728244599992],[-77.66130667699994,-11.014460244999881],[-77.65722139299996,-11.006014782999912],[-77.64680611499989,-10.996477374999841],[-77.65588135999994,-10.976118735999876],[-77.66438129299988,-10.96026614099989],[-77.66314234299993,-10.947298411999851],[-77.67053876699987,-10.927519692999823],[-77.6813487679999,-10.909966748999835],[-77.69615571199996,-10.890697914999905],[-77.71155430699989,-10.868034238999911],[-77.70916981399995,-10.852246908999817],[-77.73493404899997,-10.832289320999818],[-77.75315523499988,-10.815768816999906],[-77.75305182399987,-10.80109131899988],[-77.74780338299985,-10.79207221099989],[-77.76487744399992,-10.76885104299987],[-77.7636761999999,-10.761524056999818],[-77.79246985599985,-10.734958591999842],[-77.8076821409999,-10.724043615999918],[-77.81346594999991,-10.712172132999811],[-77.81920325399996,-10.701348565999822],[-77.82689368399988,-10.692803643999895],[-77.84850012899989,-10.673760674999897],[-77.91197290599985,-10.56638966899989],[-77.90957058799994,-10.555114385999914],[-77.9225920929999,-10.53078531899989],[-77.94204667899993,-10.51580169099985],[-77.96849524599992,-10.493910414999917],[-77.9662987349999,-10.478073023999853],[-77.97715943199995,-10.455981312999853],[-77.99546449199991,-10.432118454999852],[-78.01097571499989,-10.412774346999894],[-78.01292883999994,-10.403252862999892],[-78.00483075299994,-10.393745897999864],[-78.0064265709999,-10.382481975999937],[-78.01781165299991,-10.371758721999882],[-78.05580446599993,-10.347524045999847],[-78.05733659199983,-10.328350971999924],[-78.05817278999984,-10.301908290999904],[-78.07689368399994,-10.286553643999909],[-78.08554820099997,-10.277426314999929],[-78.08766827799988,-10.26159383399991],[-78.09551117399988,-10.24066715499984],[-78.09073175499995,-10.228844450999873],[-78.10041625699992,-10.214692903999847],[-78.10493434499992,-10.201132252999868],[-78.12434157699994,-10.179554607999862],[-78.16659629299987,-10.141410896999886],[-78.1755627609999,-10.12104401199987],[-78.18233507499988,-10.110846269999868],[-78.18283556799989,-10.100684181999895],[-78.17423231399994,-10.099053353999878],[-78.16796892799996,-10.093415519999866],[-78.1696140009999,-10.080973612999813],[-78.1787080119999,-10.06904391199987],[-78.17580996399991,-10.062845394999925],[-78.17742702199985,-10.050984808999843],[-78.17794284199991,-10.042507099999867],[-78.19390382699989,-10.020878555999914],[-78.19797643299998,-9.99738628699984],[-78.20353911,-9.98661839699983],[-78.21226572499992,-9.973036966999828],[-78.2150681789999,-9.962858039999873],[-78.22548307799994,-9.958830110999841],[-78.22889470799994,-9.954286911999901],[-78.23463008499994,-9.95254915499983],[-78.23630829099997,-9.946889298999864],[-78.23454181499991,-9.941820757999892],[-78.2287408139999,-9.935654783999894],[-78.22984371599995,-9.924894552999886],[-78.22898387399994,-9.91316790999987],[-78.22992342899988,-9.900726964999905],[-78.23448041499988,-9.885083587999901],[-78.24160152699989,-9.875977280999805],[-78.24325856699994,-9.8589395059999],[-78.23889185499985,-9.838725993999859],[-78.22989113099987,-9.825043712999857],[-78.22942242699992,-9.793784130999896],[-78.26891286199992,-9.758605415999837],[-78.3011233369999,-9.721917471999886],[-78.30753675699992,-9.698406957999808],[-78.32443220699989,-9.680981534999901],[-78.3324629469999,-9.66295608099989],[-78.34251866299984,-9.65289857599987],[-78.35447341099992,-9.632200538999882],[-78.36990378699988,-9.61543226099981],[-78.37443538299993,-9.584780583999873],[-78.36807141899988,-9.556929344999915],[-78.3870342849999,-9.546713148999814],[-78.39090104199994,-9.530073163999873],[-78.39001746799991,-9.516168561999862],[-78.39940344999991,-9.501885674999897],[-78.40591386599988,-9.477715752999885],[-78.39769532799997,-9.463903195999846],[-78.38507788999996,-9.451430494999926],[-78.3932133499999,-9.435382636999847],[-78.4062950449999,-9.435219879999892],[-78.42711535499987,-9.419739687999892],[-78.4316135569999,-9.392422655999908],[-78.4286765309999,-9.375848977999851],[-78.42101243299993,-9.36800008699987],[-78.41475375999988,-9.362127347999873],[-78.42572722099993,-9.357956050999888],[-78.43459339299989,-9.346493630999888],[-78.44298255099991,-9.340915622999859],[-78.44859778599991,-9.328220309999892],[-78.46133378799996,-9.323500257999882],[-78.47516842399995,-9.324883721999868],[-78.48395748599992,-9.330254815999822],[-78.50648570699991,-9.30503845499983],[-78.5077524339999,-9.295728014999895],[-78.50967454799988,-9.28441943899982],[-78.5190492939999,-9.278360823999904],[-78.52672278599992,-9.26962655999985],[-78.51757509799995,-9.263093342999838],[-78.50875636799992,-9.255862824999852],[-78.49728382299989,-9.253306809999842],[-78.48970312799989,-9.23345055999988],[-78.48818841999989,-9.213536931999883],[-78.49741098599992,-9.18953847799986],[-78.51615427399989,-9.178086694999834],[-78.53565999799989,-9.17256608299985],[-78.55052659799992,-9.178412979999834],[-78.55856518799987,-9.183727466999827],[-78.56192373399995,-9.191722086999874],[-78.55734789699989,-9.199684855999863],[-78.55687870699998,-9.212249814999877],[-78.55226892899995,-9.232258424999841],[-78.55310687599989,-9.244181686999866],[-78.56444696199992,-9.240791445999847],[-78.57766568499994,-9.213447990999896],[-78.5970240629999,-9.19133986899986],[-78.61115499299989,-9.176522352999896],[-78.61039443599985,-9.165888486999876],[-78.61439507999995,-9.160530021999904],[-78.6096392279999,-9.155918899999932],[-78.59418234999988,-9.161384555999815],[-78.57056710199996,-9.168326976999849],[-78.56452955299991,-9.16032810899989],[-78.55969069599993,-9.148428983999807],[-78.55945087599989,-9.128186674999881],[-78.5680301349999,-9.104223964999873],[-78.57867318899989,-9.089518090999917],[-78.59202654999987,-9.07744389199982],[-78.60549437099988,-9.076667897999826],[-78.62372509399992,-9.079178267999879],[-78.63242604199988,-9.072458728999905],[-78.6417216059999,-9.056427985999917],[-78.64022133699987,-9.039822941999844],[-78.63333032299991,-9.02326565299991],[-78.62851097899993,-9.013338417999918],[-78.63718550999994,-9.00462244699986],[-78.6613783919999,-8.995765399999868],[-78.6619627139999,-8.98512333899987],[-78.65387333999983,-8.987193059999882],[-78.64909172199988,-8.980590222999878],[-78.6489114129999,-8.95865411399987],[-78.6547717289999,-8.933333138999927],[-78.66274534499993,-8.917957306999867],[-78.67403098399987,-8.897232536999894],[-78.68199688499996,-8.882521678999879],[-78.69671170899994,-8.865064573999817],[-78.71727454299992,-8.836846612999906],[-78.76429990199989,-8.775111853999858],[-78.76218533699989,-8.765816773999859],[-78.7620939389999,-8.756508648999926],[-78.75460793999991,-8.747929216999893],[-78.74305158599995,-8.74001917599982],[-78.74074604299997,-8.71145797199992],[-78.7452580959999,-8.68817796299983],[-78.74308222799989,-8.67291195999988],[-78.75027483399995,-8.64694629799989],[-78.75932805199992,-8.60832735299985],[-78.78945878799992,-8.566827080999886],[-78.81973222599991,-8.528252862999821],[-78.85924231699988,-8.491306247999873],[-78.8819473949999,-8.474541924999855],[-78.91331946499986,-8.462497653999847],[-78.92784583199989,-8.45061614399988],[-78.94026169199992,-8.435525562999885],[-78.93479362799994,-8.422951991999867],[-78.92464144599998,-8.424410694999864],[-78.9193269839999,-8.427106067999857],[-78.90655746299984,-8.417899062999851],[-78.90166259899985,-8.397349081999863],[-78.9021250819999,-8.376761354999871],[-78.96368760799993,-8.286699685999864],[-78.96548519299998,-8.264763838999869],[-78.98995619299984,-8.23197858099988],[-78.98574001199994,-8.2174205539999],[-79.01835588099988,-8.180565205999855],[-79.12422330699991,-8.089650475999875],[-79.1246562499999,-8.065072533999851],[-79.18374589799987,-8.025648695999832],[-79.29971269399994,-7.93865325299987],[-79.35171310599986,-7.88071076499989],[-79.38408064399994,-7.833788339999928],[-79.39569943799992,-7.79243221999981],[-79.44471722099988,-7.737414687999902],[-79.45653235599985,-7.726332289999903],[-79.46594209599994,-7.715929211999878],[-79.4611660269999,-7.70866974899981],[-79.4490467409999,-7.70480782999985],[-79.43684103299995,-7.69363419499993],[-79.43528685199988,-7.674386646999877],[-79.44844316099989,-7.650336509999845],[-79.48425046799987,-7.593484959999898],[-79.55556548899992,-7.495709142999858],[-79.58250891799989,-7.463636976999807],[-79.58443443999997,-7.439575130999856],[-79.58959725199992,-7.420910492999909],[-79.58873450399994,-7.411309502999899],[-79.57793883099995,-7.399779778999828],[-79.57376128899989,-7.386539424999897],[-79.58486345399984,-7.357164644999912],[-79.5966841119999,-7.3310881969999],[-79.59577973599997,-7.312500444999912],[-79.61275968199988,-7.266392093999882],[-79.64470478899989,-7.23175032499985],[-79.68377578399995,-7.192111662999906],[-79.69701205299988,-7.178009189999869],[-79.69072993099988,-7.156809580999862],[-79.6890855129999,-7.130911014999825],[-79.7082403499999,-7.106777354999807],[-79.81446558499997,-7.000931219999842],[-79.86626296799997,-6.949747992999946],[-79.87747647999988,-6.928975008999884],[-79.93154863199993,-6.883477471999868],[-79.94538153699995,-6.852025214999856],[-79.94901601999992,-6.820090827999834],[-79.96467956599992,-6.78735510599985],[-79.98840547099985,-6.757846698999828],[-80.00454667899993,-6.740899346999853],[-80.11891636099992,-6.650611101999843],[-80.16942981499992,-6.618712367999847],[-80.29809584599991,-6.544447811999845],[-80.46020693099985,-6.462652661999826],[-80.72766054199991,-6.329450588999876],[-80.79052806199988,-6.299691754999826],[-80.85312845399997,-6.239497572999881],[-80.92606831299986,-6.189385925999915],[-81.0138943129999,-6.139070919999894],[-81.1014570359999,-6.072068060999882],[-81.13081112999987,-6.034561306999862],[-81.15141998099992,-5.975873226999838],[-81.14903907399994,-5.93600770999987],[-81.14938605699987,-5.8923905259999],[-81.15021572099994,-5.883073312999926],[-81.12941208199993,-5.865809967999922],[-81.12359125799989,-5.846354009999857],[-81.11885387699995,-5.839907272999895],[-81.09634433599993,-5.838563691999838],[-81.0857865589999,-5.815509717999888],[-81.08467238399989,-5.799684702999869],[-81.07519399599991,-5.786785397999907],[-81.05749808599992,-5.787973996999838],[-81.03827900999991,-5.818103118999886],[-81.00956231399994,-5.831579916999843],[-80.97159284799991,-5.845957222999899],[-80.93993079299986,-5.850844007999839],[-80.90339107999992,-5.814629815999822],[-80.86401229599988,-5.743936439999814],[-80.85621181599993,-5.650461607999844],[-80.88121606799984,-5.573868265999906],[-80.93182413799985,-5.463815405999867],[-80.96206667699988,-5.430046733999873],[-81.05528723899997,-5.339939059999878],[-81.07219584199993,-5.318920736999857],[-81.09445532399985,-5.313043178999834],[-81.10759351399989,-5.317459064999895],[-81.13160622099994,-5.300401875999896],[-81.15249589799987,-5.267673434999892],[-81.17821204299992,-5.238539320999847],[-81.19847571499992,-5.208103122999887],[-81.19353888299992,-5.198295701999854],[-81.18687763199998,-5.190024877999861],[-81.17370839399987,-5.184603003999868],[-81.16598754599991,-5.164327717999882],[-81.16958220999987,-5.153171963999839],[-81.1778223279999,-5.142860991999896],[-81.17668952899987,-5.129886113999888],[-81.16261625499992,-5.126342029999833],[-81.1670437309999,-5.108679846999876],[-81.17140029099994,-5.08729902799989],[-81.16277207899986,-5.072572221999877],[-81.14693825699993,-5.074632234999882],[-81.1291261689999,-5.064691117999899],[-81.1125733669999,-5.08158404999989],[-81.0827573519999,-5.079213886999895],[-81.06759009399985,-5.057201638999899],[-81.06335474399988,-5.022042810999892],[-81.08502129699991,-4.974485715999889],[-81.11807678499989,-4.940654648999882],[-81.14940738599995,-4.917033109999949],[-81.1731397749999,-4.881456521999936],[-81.1895015,-4.85153808],[-81.22340037299995,-4.806488091999881],[-81.30348569799989,-4.720718123999958],[-81.33755752899992,-4.678304297999915],[-81.33268782599987,-4.664447122999916],[-81.32038878799992,-4.658193013999892],[-81.30525274199988,-4.64356756699992],[-81.30791329599992,-4.623896788999858],[-81.31651770699992,-4.60125090899983],[-81.3079320949999,-4.550062757999953],[-81.30748450399987,-4.534274998],[-81.3131404289999,-4.516289971999967],[-81.32266191299988,-4.495863539999903],[-81.32892818899984,-4.476657809999864],[-81.32481848899988,-4.461602471999839],[-81.31432044199991,-4.45232512799997],[-81.3073624339999,-4.447360934999935],[-81.30134029899992,-4.441664320999863],[-81.29381262899994,-4.430433851999851],[-81.27953040299988,-4.396416924999826],[-81.27916419199994,-4.373630466999899],[-81.29381262899994,-4.31755950299987],[-81.28897050699986,-4.29778411299985],[-81.2776586579999,-4.274102471999839],[-81.26402747299994,-4.252373955999857],[-81.25279700399994,-4.238702080999914],[-81.16563880099991,-4.179375908999859],[-81.14297441299996,-4.156182549999912],[-81.12433834499987,-4.123223565999936],[-81.11034094999991,-4.10759856599995],[-81.09142005099989,-4.101006768999895],[-81.07331295499989,-4.096774997999872],[-81.06248938699987,-4.085707289999931],[-81.04674231699994,-4.053155205999872],[-80.99290930899987,-3.972100518999824],[-80.96157792899993,-3.939385674999897],[-80.92381751199989,-3.90984465899983],[-80.88292395699995,-3.886895440999851],[-80.86778723899994,-3.872735283999916],[-80.86180579299995,-3.851739190999879],[-80.85912024599986,-3.82927825299987],[-80.85236568899992,-3.808282158999844],[-80.83446204299985,-3.773207289999945],[-80.80760657499988,-3.73943450299987],[-80.77171790299988,-3.710137627999856],[-80.61310787699989,-3.615655205999914],[-80.58458411399987,-3.588067315999979],[-80.54230709499987,-3.526136976999837],[-80.53624426999988,-3.505303643999937],[-80.52818762899994,-3.502048434999907],[-80.51817786399995,-3.500420830999886],[-80.50926673099991,-3.495212497999887],[-80.49372311099992,-3.489190362999963],[-80.42418372299991,-3.491469007999939],[-80.40501868399984,-3.487237237999921],[-80.38451087099989,-3.478692315999908],[-80.36823482999995,-3.465508721999868],[-80.36148027299993,-3.447686455999886],[-80.35871334499986,-3.436700127999828],[-80.34544837099992,-3.41415780999985],[-80.34105383999986,-3.403252862999863],[-80.34072866642742,-3.393497653523383],[-80.33390315799991,-3.397052509999867],[-80.31762508199998,-3.405527444999947],[-80.279746257,-3.41555267299988],[-80.26566442899988,-3.426404723999923],[-80.26778316299993,-3.443871357999881],[-80.2738809819999,-3.464645282999825],[-80.27163305699989,-3.48552256299989],[-80.26556107599991,-3.491103616999822],[-80.24907629399988,-3.497924905999952],[-80.24266841699992,-3.50515960699984],[-80.24029130099987,-3.514047952999846],[-80.24026546299986,-3.523866475999824],[-80.24212581499998,-3.542986754999902],[-80.24990311699989,-3.569961852999839],[-80.2499806319999,-3.577713317999851],[-80.24354691599987,-3.584637959999924],[-80.2336767169999,-3.587841898999897],[-80.22499507699993,-3.591872659999893],[-80.22228206399988,-3.601277770999857],[-80.22212703499993,-3.612439879999883],[-80.21639095099997,-3.631560159999879],[-80.21520239299993,-3.64251556399985],[-80.21677852399996,-3.652437438999854],[-80.22328975399995,-3.671867776999918],[-80.2249434009999,-3.680652770999828],[-80.2249434009999,-3.690677998999845],[-80.22398738599995,-3.698429462999854],[-80.21786372899999,-3.717136331999839],[-80.2168560389999,-3.726954853999899],[-80.22018916899992,-3.734706318999983],[-80.22445247399988,-3.741630960999885],[-80.22631282599988,-3.749279072999868],[-80.22163610899992,-3.769432880999843],[-80.20155981499994,-3.801472269999848],[-80.19272314499995,-3.821626078999827],[-80.19145707199989,-3.830617776999858],[-80.19145707199989,-3.849117939999971],[-80.18876989799989,-3.857696226999821],[-80.18006241899991,-3.867824808999956],[-80.17109655799996,-3.873612568999931],[-80.16505041599993,-3.879503682999853],[-80.16507379399991,-3.880695936999814],[-80.1652571219999,-3.890045673999822],[-80.18114762399992,-3.907925719999952],[-80.2590756839999,-3.943685810999795],[-80.27328670299994,-3.961255797999854],[-80.28780778099988,-3.984406839999934],[-80.30462845899987,-4.005180765999796],[-80.32550573799992,-4.015412698999867],[-80.34426428299992,-4.01158864299984],[-80.3864580899999,-3.988954365999887],[-80.4071028239999,-3.982443135999816],[-80.42746333899993,-3.981306253999904],[-80.44769466199992,-3.982753193999898],[-80.46614314799993,-3.988127542999862],[-80.48107763699991,-3.998772887999848],[-80.49198136399997,-4.014895934999842],[-80.50358272399991,-4.039080504999902],[-80.51221268699996,-4.064195251999834],[-80.51229385599993,-4.065033996999858],[-80.51407303899994,-4.083418883999855],[-80.50906042499992,-4.095821227999821],[-80.49260148199994,-4.118455505999876],[-80.48717545599995,-4.131271259999849],[-80.48683955899995,-4.140676370999898],[-80.49068945399992,-4.15969329799988],[-80.4907669679999,-4.168995055999815],[-80.46960546899997,-4.21323008199991],[-80.4347238779999,-4.216950784999838],[-80.39141902699993,-4.204135029999847],[-80.34527197299991,-4.198450621999896],[-80.3563048919999,-4.22056813499999],[-80.48854488199993,-4.395957946999871],[-80.49229142299995,-4.413011168999901],[-80.48353226799995,-4.433991799999902],[-80.46996720399997,-4.446084085999971],[-80.42511206099991,-4.471508889999896],[-80.40849808799996,-4.477503355999914],[-80.39074723399995,-4.476986591999889],[-80.38286657799992,-4.476263121999892],[-80.3732547609999,-4.467581481999929],[-80.33230118899988,-4.445670673999871],[-80.2554066569999,-4.386759541999865],[-80.23967118299988,-4.36980967199986],[-80.23220393899996,-4.353996683999952],[-80.22194616699997,-4.318960062999934],[-80.21344539399988,-4.304904072999918],[-80.20504797399991,-4.298186136999902],[-80.1947643639999,-4.293121846999924],[-80.18383479799994,-4.289401142999906],[-80.14308793199987,-4.284130146999885],[-80.14024572799988,-4.283096617999902],[-80.13386368799986,-4.29394866899986],[-80.11722387799993,-4.299116312999942],[-80.0968633629999,-4.30283701599987],[-80.07965511099992,-4.30903818799986],[-80.06162003599992,-4.324437764999843],[-80.02927058999992,-4.359681090999814],[-80.00909094299995,-4.373840432999856],[-79.9820124929999,-4.38861989299987],[-79.95601924699994,-4.391720478999915],[-79.93033605999995,-4.392030537999815],[-79.90408443199993,-4.398645120999902],[-79.87873714199995,-4.422002867999851],[-79.85773067299993,-4.453318785999939],[-79.83287430899989,-4.478950296999826],[-79.795744792,-4.484738056999973],[-79.72859126899993,-4.46406748399987],[-79.69412308799988,-4.44360361699999],[-79.65797542299995,-4.438746031999898],[-79.63032853299995,-4.452491963999918],[-79.57984065799994,-4.502308043999861],[-79.57203751599991,-4.506028746999959],[-79.55777482199994,-4.51657073999985],[-79.55162532599988,-4.519878031999838],[-79.52754410799992,-4.519671324999876],[-79.50720943199988,-4.531556904999903],[-79.50162837699989,-4.540962015999952],[-79.50413468499994,-4.555638121999863],[-79.52718237299993,-4.596565856999959],[-79.5278541669999,-4.618063252999917],[-79.49870865899997,-4.660644632999889],[-79.48721065299995,-4.719969177999815],[-79.46103653999995,-4.769165139999955],[-79.46082314399987,-4.770455597999969],[-79.45775508599996,-4.789008890999867],[-79.4505720629999,-4.81019622799991],[-79.43331213499991,-4.823942158999941],[-79.41269323799992,-4.834794209999814],[-79.39532995699997,-4.84760996499989],[-79.38992976899993,-4.856498310999982],[-79.38341853899996,-4.87623870799986],[-79.37807002799991,-4.884816995999898],[-79.36936254899993,-4.891121519999899],[-79.34985469599992,-4.898459574999904],[-79.34104386399994,-4.904247333999876],[-79.32784053599994,-4.923264261999847],[-79.31716935299994,-4.944399921999889],[-79.30321671599995,-4.961246438999865],[-79.28027237999993,-4.967344257999827],[-79.23368869399991,-4.965647838999885],[-79.20932063799995,-4.964760436999825],[-79.19175065199995,-4.967654316999813],[-79.15831599899991,-4.97933319099988],[-79.14084936599994,-4.983260598999848],[-79.13066910899997,-4.982847187999837],[-79.1145202239999,-4.978816426999842],[-79.10415909799988,-4.980056660999878],[-79.09338456299994,-4.985120950999857],[-79.0824549969999,-4.993079121999813],[-79.06392899599996,-5.011372578999882],[-79.03509354699992,-4.987498066999891],[-79.0092811689999,-4.960109557999857],[-79.00209814499992,-4.939128926999857],[-78.9910135499999,-4.890398050999821],[-78.98034236699993,-4.873964944999855],[-78.9602660729999,-4.868900654999877],[-78.93396276899995,-4.868693948999905],[-78.91081172699995,-4.863526305999812],[-78.90021805899997,-4.84368255599982],[-78.90533402499995,-4.819808043999927],[-78.9278907879999,-4.774849547999906],[-78.92861425799988,-4.747461038999958],[-78.9173487959999,-4.719969177999815],[-78.89864192799993,-4.694234313999814],[-78.85306331499996,-4.652273049999819],[-78.8112829179999,-4.628708597999989],[-78.71971227999992,-4.592225036999977],[-78.70893477599992,-4.585108369999915],[-78.68167842699998,-4.567110290999878],[-78.67266088899993,-4.550987242999895],[-78.67144649299989,-4.531763609999871],[-78.67237666899987,-4.511816507999853],[-78.66979284699997,-4.493419697999855],[-78.65534928499994,-4.470165302999831],[-78.63989803099994,-4.451251728999893],[-78.63721085599991,-4.435128681999813],[-78.66098201599996,-4.420659280999885],[-78.67315181499995,-4.40153900099989],[-78.68121333899987,-4.364435322999896],[-78.68242773499989,-4.326918232999901],[-78.67413366799994,-4.305937600999812],[-78.65573685699994,-4.290641376999858],[-78.64710689399989,-4.271107685999851],[-78.6375725919999,-4.227389423999952],[-78.5766202399999,-4.100058694999873],[-78.56592321799994,-4.055720316999924],[-78.5669050699999,-3.996189065999857],[-78.5620733239999,-3.979755960999796],[-78.55189306699992,-3.969213968999909],[-78.54075679499991,-3.966320088999922],[-78.5286386729999,-3.965389912999882],[-78.5157195639999,-3.961359150999968],[-78.50176692699992,-3.953711038999898],[-78.49763281299997,-3.949576924999888],[-78.4977103269999,-3.942652282999816],[-78.48784012899992,-3.86865163199981],[-78.48068294299989,-3.8495313519999],[-78.47037349499996,-3.830204365999847],[-78.46432735299993,-3.825656839999823],[-78.45200252399988,-3.819869078999929],[-78.44407019099991,-3.81480478899995],[-78.4196789149999,-3.791033629999986],[-78.41358109499996,-3.771809996999877],[-78.42637101299991,-3.707214456999921],[-78.42642268899993,-3.694605406999898],[-78.42585424899997,-3.689437763999905],[-78.4211000169999,-3.687784118999858],[-78.40836177599994,-3.685613708999867],[-78.40073950199996,-3.679825947999802],[-78.4000935469999,-3.670110778999856],[-78.40425349999992,-3.64975026399982],[-78.40471858799992,-3.613783466999934],[-78.4023931479999,-3.59435312899987],[-78.39567521199987,-3.57378590899988],[-78.37725256399997,-3.533684997999885],[-78.37587184799995,-3.529348453999901],[-78.36293819199996,-3.488726500999874],[-78.35529007999992,-3.445525003999919],[-78.35469580099993,-3.434569600999851],[-78.3607936199999,-3.414932555999826],[-78.36172379599995,-3.408524677999878],[-78.35079423099998,-3.389611103999925],[-78.33397355199992,-3.384546813999947],[-78.31301875899993,-3.387440693999935],[-78.2696880699999,-3.399532978999929],[-78.25718237299995,-3.409558206999861],[-78.24968929099991,-3.424544371999929],[-78.23586584599997,-3.488829854999977],[-78.22630570499987,-3.507019958999848],[-78.21268896599994,-3.500508727999872],[-78.19685013899996,-3.487589619999866],[-78.17912512299993,-3.483765563999909],[-78.16372554599995,-3.477254332999848],[-78.15452714099987,-3.456790465999802],[-78.15664587399993,-3.429298603999911],[-78.16920324699996,-3.414932555999826],[-78.18496455899991,-3.403770446999886],[-78.19651424199994,-3.38558034299993],[-78.19641088899994,-3.363669534999971],[-78.18460282399994,-3.349510192999929],[-78.14817093899993,-3.322431742999967],[-78.1358202729999,-3.304655049999852],[-78.10491776599989,-3.24543385799987],[-78.09086177599997,-3.230034280999874],[-78.04254431199993,-3.189933369999878],[-77.94146520999996,-3.054541116999899],[-77.86782629399997,-2.990255634999841],[-77.84901607299994,-2.980643818999908],[-77.81036941199991,-2.967149115999888],[-77.78271520999992,-2.957492776999828],[-77.65698645099988,-2.913567809999975],[-77.5312060139999,-2.869642841999863],[-77.40547725399993,-2.825614522999899],[-77.2797484949999,-2.781689554999858],[-77.1540197349999,-2.73766123499989],[-77.02818762199993,-2.693736266999949],[-76.90245886199995,-2.649811299999925],[-76.7766784269999,-2.605782978999869],[-76.68459102499996,-2.573640238999843],[-76.66966155799989,-2.564588924999924],[-76.62526647999994,-2.537673441999857],[-76.56862910999988,-2.494265238999873],[-76.50894282999994,-2.448583271999851],[-76.44925655099993,-2.402901305999848],[-76.38962194899992,-2.357322692999944],[-76.32988399299998,-2.311537374],[-76.27024938999998,-2.265855406999904],[-76.21051143399987,-2.220276794999918],[-76.15087683199994,-2.174594827999911],[-76.09124222899996,-2.128912861999979],[-76.04127111899996,-2.070725198999881],[-75.9913516849999,-2.012640888999897],[-75.94138057499993,-1.954453226999888],[-75.89146114199988,-1.89626556399989],[-75.8415417069999,-1.838077900999877],[-75.7915447599999,-1.77989023799995],[-75.74162532599988,-1.721702575999942],[-75.691731731,-1.663618265999958],[-75.65147578999995,-1.616696064999914],[-75.59654374199994,-1.565743102999875],[-75.5807400969999,-1.546639795999951],[-75.57303096599995,-1.537321064999944],[-75.56003434299993,-1.502594501999823],[-75.54533239799991,-1.444820250999925],[-75.51530838999997,-1.326997985999824],[-75.48528438399988,-1.209072366999877],[-75.45526037699995,-1.091146748999918],[-75.42523636899998,-0.973324482999914],[-75.41257564299994,-0.923921812999893],[-75.40640030999998,-0.915136819999816],[-75.37805578699997,-0.941181741999884],[-75.36441320799997,-0.956891377999938],[-75.35859961,-0.966916604999881],[-75.34872941099991,-0.97497812899995],[-75.32594010499992,-0.975494892999905],[-75.28348791499987,-0.970430602999926],[-75.23620397999994,-0.970430602999926],[-75.2272639579999,-0.969810484999869],[-75.22749650099988,-0.963092549999843],[-75.23475703999995,-0.953170674999839],[-75.24434301799994,-0.944799092999872],[-75.25206864499995,-0.933430276999872],[-75.25390315799993,-0.924128519999854],[-75.2523011889999,-0.906868590999864],[-75.25261124699998,-0.897876891999914],[-75.29702713999987,-0.746981709999915],[-75.29661372899993,-0.73447601299992],[-75.29025752799993,-0.716492613999833],[-75.28813879399992,-0.706260680999861],[-75.28865555799987,-0.696132100999904],[-75.29294470299993,-0.677735289999902],[-75.29397823099991,-0.667916767999841],[-75.2894307059999,-0.656031188999819],[-75.27875952199989,-0.648899840999874],[-75.2666413979999,-0.642698668999884],[-75.26663539199993,-0.642692317999973],[-75.25764969999994,-0.633190204999892],[-75.2555826419999,-0.624301858999885],[-75.25697790599988,-0.616757100999934],[-75.25930334499992,-0.609522399999875],[-75.26013016799993,-0.601254170999823],[-75.25702958199989,-0.561980081999849],[-75.26069860899989,-0.543479918999836],[-75.27204158499987,-0.525703225999976],[-75.27653743599988,-0.524152933999957],[-75.28591670799995,-0.529010517999893],[-75.29098099799992,-0.527976989999914],[-75.29485673099995,-0.523222757999832],[-75.30002437399989,-0.511750589999806],[-75.30428767899994,-0.507099710999839],[-75.34327754699993,-0.476817321999903],[-75.34735998599993,-0.470926208999813],[-75.35307023199996,-0.46772226899985],[-75.36539506099993,-0.468755797999918],[-75.37565283299992,-0.466998798999853],[-75.38699580999992,-0.459970804999841],[-75.40562516299988,-0.442400817999868],[-75.43422806899994,-0.403023375999865],[-75.45272823099995,-0.360648701999935],[-75.48476761999987,-0.247684020999941],[-75.49618811099995,-0.233111266999799],[-75.5121561279999,-0.223086038999867],[-75.53352433299992,-0.216058043999865],[-75.54590083899987,-0.209753518999847],[-75.56682979399997,-0.190013122999886],[-75.57897375499996,-0.182675068999885],[-75.5887147629999,-0.181331482],[-75.61013464399994,-0.182985127999871],[-75.61956559299998,-0.180918069999905],[-75.62863480699994,-0.170479430999961],[-75.63840165199991,-0.150945738999866],[-75.6432075609999,-0.128828226999858],[-75.63760066799998,-0.111464945999842],[-75.62300207599992,-0.106607360999831],[-75.60501867699995,-0.111361592999828],[-75.58677689599998,-0.118699645999811],[-75.57117061399994,-0.121696878999913],[-75.55329056799988,-0.119836527999908],[-75.53926041799988,-0.120043232999876],[-75.5257470299999,-0.12324717199985],[-75.45526037699995,-0.161177672999855],[-75.42949967499996,-0.163658141999832],[-75.40257625399994,-0.145778095999873],[-75.39423050999997,-0.145054625999876],[-75.36002071199997,-0.149912210999972],[-75.34405269399994,-0.149085387999861],[-75.33074601299992,-0.144641214999865],[-75.31795609599993,-0.138336689999932],[-75.2953476559999,-0.122316995999896],[-75.28348791499987,-0.107020771999842],[-75.26834672099997,-0.101749775999807],[-75.25253373299994,-0.089554137999883],[-75.24013138899991,-0.074774677999869],[-75.23511877499992,-0.061958923999896],[-75.2317081299999,-0.042631937999928],[-75.22209631399991,-0.032400003999868],[-75.20674841399992,-0.029092711999866],[-75.1866979569999,-0.031263121999856],[-75.14168778599995,-0.04345876],[-75.12065547799995,-0.054104104999865],[-75.10163854999988,-0.069090269999919],[-75.06231278599998,-0.123143818999907],[-75.05073726399992,-0.134305928999936],[-75.04223649099991,-0.137303160999949],[-75.02469234299997,-0.137716572999878],[-75.01536474599993,-0.140507100999841],[-75.00911189799993,-0.145261332]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Suriname","sov_a3":"SUR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Suriname","adm0_a3":"SUR","geou_dif":0,"geounit":"Suriname","gu_a3":"SUR","su_dif":0,"subunit":"Suriname","su_a3":"SUR","brk_diff":0,"name":"Suriname","name_long":"Suriname","brk_a3":"SUR","brk_name":"Suriname","brk_group":null,"abbrev":"Sur.","postal":"SR","formal_en":"Republic of Suriname","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Suriname","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":7,"mapcolor13":6,"pop_est":481267,"gdp_md_est":4254,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"NS","iso_a2":"SR","iso_a3":"SUR","iso_n3":"740","un_a3":"740","wb_a2":"SR","wb_a3":"SUR","woe_id":23424913,"woe_id_eh":23424913,"woe_note":"Exact WOE match as country","adm0_a3_is":"SUR","adm0_a3_us":"SUR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SUR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-54.17096517463119,5.348376149408466],[-54.19046016499996,5.325748393000125],[-54.269163370999934,5.269085185000051],[-54.311331339999896,5.22580617300008],[-54.32065194299989,5.212454410000063],[-54.33200191299991,5.196195577000125],[-54.34357743299995,5.156378886000113],[-54.350036986999925,5.149583436000071],[-54.36543656399991,5.138757222000038],[-54.36988073799992,5.132375183000093],[-54.37230952999997,5.121058045000026],[-54.375616821999955,5.11488271100005],[-54.430238810999924,5.053387757000038],[-54.44863561999992,5.024293925000037],[-54.4547851159999,5.008532613000057],[-54.45757564299993,4.991350199000081],[-54.44884232599995,4.951481832000141],[-54.4508060309999,4.936728211000045],[-54.45550858599997,4.931431377000095],[-54.48212194899992,4.912802022000037],[-54.486721150999955,4.902957662000063],[-54.48496415299987,4.89275156700009],[-54.47865962699987,4.878669739000159],[-54.47865962699987,4.755188904000107],[-54.47540401199998,4.741727194000148],[-54.467290812999885,4.736197815000139],[-54.45700720299999,4.733329773000165],[-54.44734370899996,4.727852071000086],[-54.43545813099993,4.709403585000075],[-54.43514807099993,4.69237620000014],[-54.43855871599996,4.673281759000062],[-54.43773189399994,4.648735453000086],[-54.42527787299997,4.616050110000103],[-54.42346919799988,4.60434539800012],[-54.42346919799988,4.563391825000095],[-54.42817175299996,4.546157736000112],[-54.44796382699994,4.509544983000069],[-54.4508060309999,4.484223532000087],[-54.43344274899996,4.376374817000083],[-54.4029536539999,4.312941997000053],[-54.39411698399991,4.269818013000133],[-54.39318680899992,4.244393209000123],[-54.39959468599997,4.227262472000078],[-54.41055008999987,4.208581441000091],[-54.40657100399997,4.191528219000062],[-54.394892129999896,4.177911479000059],[-54.38248978699994,4.169565735000091],[-54.34890010599992,4.160522359000126],[-54.3385648199999,4.152331645000103],[-54.33468908699996,4.131712748000112],[-54.337582966999946,4.116649068000115],[-54.351018839999966,4.082077535000124],[-54.35515295399992,4.0665229290001],[-54.35386104299997,4.041718241000054],[-54.34435258099998,4.024949239000094],[-54.31019445899997,3.994201762000046],[-54.3038899339999,3.9844607550001],[-54.29314123599997,3.94981170700008],[-54.28647497599994,3.940716655000116],[-54.27252233899995,3.929528707000074],[-54.26580440299992,3.922526551000075],[-54.24105139199992,3.876353658000127],[-54.22224117099998,3.866199239000068],[-54.21800370299994,3.857646789000043],[-54.21454138199991,3.858215230000098],[-54.20704829899995,3.846484680000103],[-54.19748815999998,3.826899312000094],[-54.18735957799993,3.814677837000161],[-54.18162349499997,3.811008810000075],[-54.170203002999955,3.805815328000065],[-54.1360965579999,3.79573842400012],[-54.12550288999992,3.788736267000118],[-54.10478063999997,3.758040467000072],[-54.094445352999884,3.747059225000086],[-54.07403316299994,3.676107483000109],[-54.05067541599996,3.640554098000052],[-54.05010697499992,3.634533793000116],[-54.03940995299993,3.636445821000038],[-54.02840287299992,3.639830627000066],[-54.01786088099996,3.641458435000104],[-54.008817504999904,3.637918599000045],[-53.994813191999896,3.623604228000147],[-53.98881872599989,3.610995178000124],[-53.990265665999885,3.595698955000075],[-53.99827551299995,3.573038839000105],[-54.00628535999991,3.531025900000088],[-54.003029744999935,3.455397441000045],[-54.019359497999886,3.415374044000075],[-54.05568802899995,3.377676086000122],[-54.06033890799992,3.364214376000078],[-54.06271602399994,3.346696066000106],[-54.0694856369999,3.327084859000081],[-54.080234334999915,3.309721578000065],[-54.080804556999844,3.309314029000092],[-54.11428910399988,3.285381979000149],[-54.14002396699996,3.24502268500008],[-54.17655920499999,3.200580953000113],[-54.19046016499996,3.178101705000103],[-54.21118241399998,3.127407125000033],[-54.18797969599989,3.130972799000091],[-54.17707596799991,3.116555074000075],[-54.17469885299997,3.093920797000123],[-54.1770242929999,3.072785136000093],[-54.17945308399996,3.070304668000105],[-54.1840006109999,3.067979228000084],[-54.188496459999925,3.064620260000069],[-54.190666869999916,3.059142558000076],[-54.18854813699994,3.058315735000065],[-54.17919470299998,3.05159779900012],[-54.1770242929999,3.048910625000104],[-54.17087479699992,3.024829407000155],[-54.16916947399997,3.010721741000125],[-54.1736136479999,3.004520569000135],[-54.18513749199991,2.997802633000106],[-54.17976314399996,2.983746643000089],[-54.16875606299996,2.971395976000039],[-54.16343339099993,2.969742330000088],[-54.1629683029999,2.955996399000056],[-54.170203002999955,2.925403951000135],[-54.17325191299997,2.919512837000141],[-54.18704951999993,2.899307353000054],[-54.190666869999916,2.887835185000128],[-54.191338663999915,2.877344870000087],[-54.18963334199992,2.870626933000068],[-54.18338049399995,2.863857320000122],[-54.170203002999955,2.853056946000081],[-54.182191935999924,2.846545716000108],[-54.188909871999925,2.838277486000067],[-54.20472285999995,2.791768698000041],[-54.21252600199995,2.776420797000071],[-54.28533809499992,2.677977193000117],[-54.32042639199997,2.606663717000046],[-54.35944209799996,2.508013408000124],[-54.375616821999955,2.483777161000148],[-54.42346919799988,2.435924784000051],[-54.43545813099993,2.431118876000141],[-54.45054764799994,2.428948466000051],[-54.472613484999926,2.428690084000081],[-54.483310505999924,2.422850647000089],[-54.49338741099987,2.417062886000124],[-54.52031083199998,2.348901672000096],[-54.53157629399993,2.340168356000035],[-54.551161661999885,2.338101298000069],[-54.58475134299991,2.34833323100014],[-54.59922074399992,2.345801087000069],[-54.6152921149999,2.326267396000063],[-54.63412817400001,2.320117900000085],[-54.65337764499995,2.3165005500001],[-54.672859659999936,2.315983785000057],[-54.69249670499997,2.318981018000073],[-54.70412390199993,2.324820455000065],[-54.70655269399989,2.332881979000148],[-54.70544165099997,2.342545472000083],[-54.706733561999926,2.353190816000065],[-54.71569942299996,2.375928446000046],[-54.7099633379999,2.394790344000072],[-54.70727616399998,2.395875550000071],[-54.70203100599994,2.395720520000125],[-54.69725093599996,2.397322490000064],[-54.6955972899999,2.403523661000051],[-54.69683752399993,2.409104716000058],[-54.701100830999906,2.4199050900001],[-54.7025477709999,2.425744528000081],[-54.70319372599996,2.445846660000143],[-54.70766373799997,2.450342509000066],[-54.72117712399995,2.457990621000135],[-54.74303625599989,2.466517233000062],[-54.759805256999954,2.46579376200016],[-54.775494351999924,2.457335294000089],[-54.79249060099994,2.448172099000075],[-54.84191910799987,2.43349599200009],[-54.88028885999998,2.447345276000149],[-54.9785774339999,2.543050029000142],[-54.982814900999955,2.552351786000088],[-54.97955928599995,2.566097718000108],[-54.960232299999916,2.585683086000131],[-54.95366939299993,2.599067281000075],[-54.95909541799992,2.608989156000078],[-54.97687211099992,2.606922099000101],[-55.01774816999995,2.590592346000079],[-55.03774694899997,2.577931620000129],[-55.076297566999955,2.545220439000047],[-55.11247106999988,2.527805481000115],[-55.12089432799988,2.524808248000099],[-55.12885249899992,2.525686747000137],[-55.13660396399993,2.533799948000137],[-55.13308996599997,2.552868551000117],[-55.13779252199995,2.562170309000052],[-55.171950642999946,2.559328105000077],[-55.251919921999864,2.497884827000078],[-55.275251831999896,2.499331767000072],[-55.286982381999906,2.513904521000129],[-55.302795369999984,2.519692281000104],[-55.320520385999906,2.518297018000041],[-55.33775447699989,2.511269023000111],[-55.35452347799995,2.494887594000076],[-55.36007869499994,2.476232402000093],[-55.3627658689999,2.457938945000123],[-55.37105993699993,2.442539368000055],[-55.39958532799997,2.430188700000087],[-55.435552124999866,2.430860494000072],[-55.47430944899989,2.435821431000122],[-55.511309773999955,2.436389872000078],[-55.56820552599989,2.431273906000086],[-55.58732580599991,2.433857727000088],[-55.60830643699998,2.433961080000117],[-55.64538427699998,2.416649475000114],[-55.7242941899999,2.396909078000135],[-55.74411210199988,2.401043193000078],[-55.754602416999944,2.409414775000144],[-55.76612626199997,2.431273906000086],[-55.77356766799991,2.440058899000078],[-55.7831278079999,2.445174866000059],[-55.853769490999895,2.462641500000103],[-55.87066768399998,2.470909729000141],[-55.925031290999954,2.515661519000105],[-55.947200479999964,2.528167216000113],[-55.97102331599987,2.530337626000104],[-55.98301224900001,2.526461894000136],[-55.98923925799991,2.520829162000027],[-55.9969132089999,2.503259176000142],[-56.007506876999884,2.46067779500008],[-56.00817867099994,2.416287740000115],[-56.01334631399996,2.398821106000071],[-56.04256933699989,2.355102844000086],[-56.05024328699997,2.347041321000091],[-56.0621547039999,2.341563619000112],[-56.07342016699996,2.342390442000124],[-56.08228267399997,2.347713115000076],[-56.09145524099998,2.351898906000116],[-56.103780069999914,2.349056702000055],[-56.11680253099988,2.333088684000103],[-56.131995402999905,2.304356588000104],[-56.14388098099991,2.274745992000064],[-56.146774861999916,2.256194153000109],[-56.13525101799988,2.24854604100004],[-56.09145524099998,2.245910543000122],[-56.07292923999995,2.241518046000124],[-56.054015665999906,2.22405141200008],[-56.04484309999992,2.184725647000093],[-56.031329711999945,2.163486634000122],[-56.00440629099992,2.144986471000095],[-55.99577632699995,2.137390035000124],[-55.95996455899996,2.090984599000123],[-55.92580643799997,2.061684062000069],[-55.9182616779999,2.050392761000097],[-55.91513525399995,2.037654521000135],[-55.916763061999916,2.02850779300006],[-55.92038041299989,2.019386902000079],[-55.92358435099996,2.006596985000101],[-55.92234411599992,1.962155254000024],[-55.916763061999916,1.922235210000082],[-55.92203405799995,1.886216736000094],[-55.953815063999876,1.853273011000041],[-56.019650837999876,1.833506775000074],[-56.08264440899998,1.846555074000108],[-56.145276244999906,1.871773173000065],[-56.20976843299991,1.88854217600003],[-56.257930867999896,1.885648295000124],[-56.27379553199992,1.887508647000047],[-56.29270910699995,1.895466817000098],[-56.32862422699992,1.918462830000053],[-56.34795121299996,1.926601868000148],[-56.36717484599998,1.928875631000082],[-56.39652705899996,1.921666769000112],[-56.41518225099992,1.919703064000089],[-56.42980668199991,1.922700298000095],[-56.48181901099994,1.941613871000129],[-56.485100463999935,1.953215231000087],[-56.4911982829999,1.962904562000119],[-56.49998327699987,1.969984232000058],[-56.52096390899995,1.976728007000077],[-56.52938716699995,1.981792298000059],[-56.53649267599991,1.988639425000116],[-56.5420737309999,1.997166036000124],[-56.57977168799994,2.016803080000074],[-56.677801879999976,2.018405050000098],[-56.70519038899994,2.029644674000068],[-56.80146358199997,2.165967103000099],[-56.80874995999997,2.195784404000093],[-56.81634639599994,2.217591858000034],[-56.8261907559999,2.261671855000102],[-56.83887731899995,2.281102193000081],[-56.84779150399996,2.285856425000077],[-56.87086503099994,2.290145569000046],[-56.88014095099996,2.294796448000099],[-56.884430093999924,2.303736471000121],[-56.8838874919999,2.33975494400012],[-56.89504960099992,2.362079163000089],[-56.93083553099993,2.393291728000065],[-56.93845780399991,2.41143015500009],[-56.932024088999945,2.425796204000093],[-56.93024125199989,2.436183167000109],[-56.93507299799998,2.445898336000155],[-56.9516352949999,2.461246236000121],[-56.956363688999964,2.470031230000117],[-56.959593464999955,2.483777161000148],[-56.95752640899988,2.493492330000095],[-56.952617146999955,2.504551086000092],[-56.95127355999997,2.515454814000065],[-56.959593464999955,2.52470489500007],[-56.980005656,2.509718730000102],[-56.99411332199992,2.504861146000081],[-57.00057287599989,2.514162903000098],[-56.99530188099996,2.547855937000065],[-56.99711055599994,2.555142314000136],[-57.02238033099991,2.584546204000034],[-57.027237914999944,2.593589580000085],[-57.027909708999914,2.610591125000099],[-57.02315547699993,2.623665263000063],[-57.02046830299989,2.635447489000057],[-57.027237914999944,2.648211568000121],[-57.048011840999976,2.63648101800004],[-57.05597001199993,2.642372131000045],[-57.061964477999965,2.681749573000047],[-57.071886352999876,2.700094707000119],[-57.097724568999894,2.727379862000134],[-57.10294388799991,2.740454],[-57.09901647999993,2.750375875000088],[-57.092143514999975,2.763036601000124],[-57.08986975099995,2.773888652000082],[-57.09953324399996,2.778591207000147],[-57.13374304299995,2.773423564000055],[-57.137050333999944,2.771149801000121],[-57.143664916999874,2.790011698000058],[-57.12640498899989,2.826030171000141],[-57.13338130699998,2.832593078000116],[-57.145215209999975,2.830422669000129],[-57.165265665999925,2.821069234000092],[-57.17461909999988,2.818950501000117],[-57.186608031999924,2.823239644000083],[-57.19105220599994,2.832593078000116],[-57.19425614499991,2.84199818900008],[-57.202265991999894,2.846235657000122],[-57.206348429999906,2.856570943000051],[-57.21962927300001,2.908299052000089],[-57.21032751499987,2.918220927000093],[-57.19472123199994,2.930623271000059],[-57.183817504999894,2.944679261000075],[-57.18862341299987,2.959510397000102],[-57.22185135899991,2.963024394000072],[-57.23461543799996,2.97036244800006],[-57.22645056199996,2.98338490800009],[-57.22117956499991,2.992583313000097],[-57.22179968299989,3.000438131000124],[-57.224693562999875,3.009171448000103],[-57.22645056199996,3.021263733000083],[-57.22324662299988,3.024777730000053],[-57.209242309999894,3.024054261000046],[-57.20598669499989,3.028136699000058],[-57.207020223999876,3.035681458000099],[-57.21177445599997,3.048342184000134],[-57.212859659999964,3.056041972000045],[-57.22221309399989,3.078262838000071],[-57.239473022999896,3.094127503000081],[-57.24856807499995,3.112369283000135],[-57.233323526999925,3.141669820000104],[-57.23673417199987,3.143478495000096],[-57.237405965999926,3.143995260000039],[-57.23761267099991,3.144873759000077],[-57.239473022999896,3.147870992000094],[-57.24624263599995,3.141618144000091],[-57.25497595199991,3.135830384000115],[-57.264897827999896,3.132626444000053],[-57.27492305499993,3.134280091000093],[-57.28603348899994,3.142393291000104],[-57.284173136999954,3.148956197000089],[-57.277713582999894,3.156914368000045],[-57.27492305499993,3.169006653000039],[-57.285671752999946,3.192106018000104],[-57.28794551699988,3.203113099000092],[-57.28711869299993,3.215360412000038],[-57.281744344999964,3.235927632000113],[-57.28045243399992,3.247813212000053],[-57.28401810699998,3.259750468000092],[-57.290270955999915,3.267967021000118],[-57.2924930419999,3.276286926000083],[-57.28422481399994,3.288792623000077],[-57.28277787299996,3.29504547100008],[-57.28045243399992,3.329772034000115],[-57.28355301999997,3.343802185000115],[-57.30840938399994,3.394910177000114],[-57.340035359999916,3.370157166000084],[-57.366752075999976,3.365609639000056],[-57.39346879099995,3.373826193000085],[-57.4250430909999,3.3874946090001],[-57.42395788699991,3.36938201900007],[-57.43093420499991,3.360622864000092],[-57.45920121299991,3.353336487000107],[-57.46168168199997,3.349977518000102],[-57.468761352999906,3.343182068000147],[-57.47625443599992,3.338944601000108],[-57.47971675599987,3.343388774000104],[-57.482042196,3.348556417000111],[-57.48798498599993,3.351527812000114],[-57.49583980399987,3.352974752000108],[-57.50390132699994,3.353336487000107],[-57.509637410999915,3.357677307000088],[-57.522401489999964,3.365247904000057],[-57.53526892099995,3.367780050000135],[-57.545035766999916,3.3481430060001],[-57.55423417199992,3.346747742000034],[-57.565137898999886,3.349822490000065],[-57.59619259399985,3.367120724000117],[-57.59640214099997,3.367237447000093],[-57.61324865799994,3.376642558000057],[-57.641463988999924,3.382430318000033],[-57.64993892399991,3.385944315000074],[-57.65484818599995,3.390130107000104],[-57.65820715299998,3.395220235000096],[-57.66254797399994,3.407079976000119],[-57.66461503199991,3.417544454000065],[-57.66399491399994,3.425838521000117],[-57.658930623999964,3.443899435000034],[-57.658362182999916,3.450617371000135],[-57.66053259299991,3.462993877000102],[-57.660687621999955,3.469505107000074],[-57.6454947519999,3.498986511000084],[-57.64404781199991,3.516659851000085],[-57.66042924099988,3.535185852000026],[-57.68125484199993,3.547303976000109],[-57.6851305749999,3.549164327000113],[-57.68724930799996,3.552161560000044],[-57.69799800599989,3.553608500000038],[-57.70285559099991,3.555675558000089],[-57.70735144099993,3.560662334000142],[-57.708643351999875,3.564124654000082],[-57.70952185099992,3.567690329000058],[-57.717480021999876,3.58244395000007],[-57.722492635999934,3.599962260000026],[-57.72610998599992,3.607196961000084],[-57.76424719299987,3.631588236000113],[-57.81313309799995,3.65184539800012],[-57.8297729089999,3.662439066000104],[-57.84098669399992,3.680990906000133],[-57.84692948499994,3.702100729000079],[-57.849616658999956,3.747472636000097],[-57.85385412699991,3.766670430000119],[-57.875144815999896,3.812197368000099],[-57.92583939699997,3.886404724000059],[-57.94211747299991,3.905447490000128],[-58.00790157099999,3.957278951000106],[-58.03213781699998,3.987716370000086],[-58.04200801599995,4.023037211000087],[-58.055082152999915,4.108070780000091],[-58.067691202999924,4.151143087000094],[-58.065934203999944,4.171839498000111],[-58.05203324399989,4.193104350000084],[-57.96495845599992,4.282039490000059],[-57.95384802299989,4.299015198000063],[-57.94738846899995,4.318755595000127],[-57.945269734999954,4.343922018000072],[-57.94806026199993,4.360484314000075],[-57.9534862879999,4.375703024000102],[-57.956638549999944,4.39143849700008],[-57.95265946399987,4.409731954000051],[-57.94278926699991,4.42510569300012],[-57.93131709799987,4.437843933000081],[-57.921860310999904,4.450943909000046],[-57.914470580999904,4.484068502000142],[-57.89607377099989,4.528510234000123],[-57.87912390199997,4.556828918000107],[-57.863310913999975,4.607730204000049],[-57.84543086799993,4.633516744000147],[-57.83742102099995,4.650880025000077],[-57.836025756999895,4.669845276000032],[-57.84434566299995,4.687518616000119],[-57.871165730999934,4.721728414000026],[-57.88454992699988,4.762862854000089],[-57.90113806199988,4.773921611000105],[-57.91782954999991,4.782370707000098],[-57.92537430899994,4.796142476000043],[-57.918501342999974,4.829757996000069],[-57.902429972999926,4.852728170000105],[-57.884188191999954,4.872261861000112],[-57.870700644,4.888927511000148],[-57.850340128999875,4.922801412000055],[-57.84279536999991,4.929881083000083],[-57.83023799599991,4.933059184000044],[-57.820574503999886,4.930294495000084],[-57.81096268799987,4.925540263000102],[-57.79845699099988,4.923059795000113],[-57.77396236199993,4.926444601000142],[-57.762335164999875,4.935539653000106],[-57.74729732299996,4.964013367000049],[-57.720477253999974,4.989799906000144],[-57.686939249999874,5.006258851000041],[-57.649370482999956,5.008429260000113],[-57.61009639499992,4.991350199000081],[-57.56622310399987,5.007085673000062],[-57.54327876799993,5.011090597000134],[-57.517595580999874,5.012434184000099],[-57.512221232999906,5.009152731000114],[-57.49687333199992,4.994657491000083],[-57.49025874899993,4.991350199000081],[-57.4773396399999,4.992487081000093],[-57.46049312299994,4.997628886000086],[-57.38137650599995,5.005742086000083],[-57.356210083999905,5.012434184000099],[-57.345513060999906,5.01661997500014],[-57.33807165499988,5.020754089000163],[-57.32944169199993,5.024087220000069],[-57.3152306719999,5.026102600000115],[-57.3064973559999,5.024448955000068],[-57.29869421499998,5.021115824000063],[-57.290477660999954,5.020289001000052],[-57.28045243399992,5.026102600000115],[-57.31693599499993,5.058968811000057],[-57.32143184399987,5.070156759000085],[-57.32019160999993,5.08341176400009],[-57.317091023999886,5.094754741000074],[-57.30220821199995,5.128473612000036],[-57.29554195199992,5.157205709000052],[-57.288979044999934,5.171029155000099],[-57.277713582999894,5.176920268000103],[-57.25993688999995,5.17630015000013],[-57.24727616399991,5.172372742000063],[-57.238749552999906,5.162011617000147],[-57.233323526999925,5.142116191000142],[-57.217768922,5.148549907000088],[-57.20200760899991,5.157619121000053],[-57.189811971999916,5.169220480000106],[-57.184902709999875,5.183147278000092],[-57.19239579299992,5.203171896000129],[-57.22572709199997,5.24360870400011],[-57.23252170199993,5.260572120000091],[-57.233323526999925,5.262573954000075],[-57.23761267099991,5.268723450000052],[-57.247637898999926,5.27177236000007],[-57.259006714,5.271203919000115],[-57.267429972999906,5.266294657000088],[-57.26918697199997,5.256708679000083],[-57.264019327999875,5.24704518600015],[-57.253787394999904,5.234927063000058],[-57.25642289299989,5.228286641000053],[-57.26303747599991,5.223997497000084],[-57.27166743999993,5.222860616000077],[-57.28045243399992,5.225341085000152],[-57.28546504799991,5.230818787000132],[-57.28727372299996,5.238699442000083],[-57.288824015999914,5.308540141000066],[-57.29202795499989,5.311330668000025],[-57.298332478999974,5.311020610000128],[-57.30840938399994,5.313475240000102],[-57.32282710799995,5.307609965000111],[-57.33171545499997,5.307609965000111],[-57.33569453899994,5.316885885000119],[-57.3322838949999,5.327867127000104],[-57.32411901899991,5.33858998700012],[-57.27549149599989,5.387398377000082],[-57.2652078859999,5.40336639500012],[-57.2612288009999,5.426749980000081],[-57.260091918999905,5.448195699000109],[-57.25693965699994,5.464086202000117],[-57.247670050999915,5.484930731000134],[-57.23399817599997,5.498968817000089],[-57.225087042999945,5.507513739000031],[-57.19302324099996,5.519720770000092],[-57.17951412699997,5.530585028000075],[-57.17015540299985,5.542792059000064],[-57.16368567599994,5.557074286000059],[-57.13963782499991,5.66510651200005],[-57.13487708199991,5.7599144550001],[-57.12800045499992,5.793158270000021],[-57.125769912999914,5.818145202000039],[-57.11384695299989,5.858844279000052],[-57.10228335599987,5.886415857000145],[-57.07579505099988,5.929999091000056],[-57.07164466099993,5.94122955900005],[-57.06602942599994,5.950100002000098],[-57.05768795499998,5.955877997000059],[-57.03482011599996,5.959906317000033],[-57.027902798999975,5.964422919000086],[-57.02269446499989,5.968939520000034],[-57.017445441999875,5.970933335000068],[-57.01280676999997,5.973863023000092],[-57.00011145699992,5.987982489000032],[-56.99449622299991,5.992661851000136],[-56.98468990799997,5.996283270000106],[-56.97459876199991,5.998114325000087],[-56.96387174799992,6.00915194800011],[-56.95653728299993,6.011573766000125],[-56.92884361699987,6.004262377000117],[-56.86697231999992,5.989636515000115],[-56.83035597899993,5.985556838000065],[-56.780724424999875,5.985508468000148],[-56.70263103499991,5.982190205000038],[-56.65951168499993,5.979715570000096],[-56.642432053999926,5.973222757000144],[-56.611421739999884,5.953646911000106],[-56.59310418799987,5.945752637000098],[-56.57395023099994,5.940756315000058],[-56.52685903299994,5.936548576000078],[-56.41831440699991,5.911349189000076],[-56.355023984999946,5.894670237000099],[-56.30380659999989,5.892507929000074],[-56.256765973999904,5.880405812000063],[-56.22283396699987,5.870753118000052],[-56.19163977799991,5.862616278000047],[-56.12425696499989,5.84804922100011],[-56.08303628399989,5.834365957000017],[-56.05859455299986,5.82773731200011],[-56.03799394399996,5.824164130000042],[-55.99918207299996,5.810712549000115],[-55.93600595099991,5.804660631000047],[-55.91787675699996,5.784735419000071],[-55.90355383999988,5.776353257000011],[-55.89769446499991,5.76300690300009],[-55.89769446499991,5.676703192000062],[-55.897246873999926,5.676703192000062],[-55.89024817599994,5.676703192000062],[-55.88499915299988,5.692450262000122],[-55.88329016799986,5.708075262000108],[-55.88402258999989,5.741929429000066],[-55.887277798999946,5.759466864000018],[-55.90453040299985,5.797186591000083],[-55.915361592999936,5.821770989000099],[-55.89996263099994,5.841963548000081],[-55.91000285199993,5.850917821000053],[-55.92224529699993,5.850352823000023],[-55.9339586859999,5.849827132000128],[-55.94787193199994,5.861520820000095],[-55.951168793999955,5.8815108000001],[-55.94666862099993,5.89649264100008],[-55.93043306399997,5.91758029500005],[-55.923612552999884,5.927844941000075],[-55.91039502299989,5.941615553000105],[-55.90065382699993,5.951945171000091],[-55.88605193499992,5.962954274000069],[-55.86799044599988,5.969812878000099],[-55.84438197899988,5.975961707000095],[-55.820094528999924,5.977274794000039],[-55.729088531999935,5.981216439000121],[-55.678578253999945,5.985256252000056],[-55.63731848899988,5.9859072940001],[-55.394987880999906,5.973876003000015],[-55.3359673359999,5.962708199000048],[-55.30787081499991,5.943349544000043],[-55.29204537399994,5.9367269520001],[-55.27082271999989,5.929999091000056],[-55.26378333199992,5.926418361000074],[-55.25320390499988,5.917792059000077],[-55.242909308999856,5.909369208000029],[-55.23289954299989,5.903265692000033],[-55.22976640499991,5.902411200000131],[-55.22142493399994,5.900213934000135],[-55.21288001199991,5.900213934000135],[-55.202432893999884,5.898761043000092],[-55.188360541999934,5.897395008000046],[-55.17690766699991,5.901290001000077],[-55.164051886999914,5.906683661000045],[-55.14784048599989,5.908177475000102],[-55.130726892999945,5.895855436000105],[-55.11082923099993,5.881170966000056],[-55.10310721299996,5.866412291000074],[-55.11510121199989,5.837128193000041],[-55.12987219999991,5.820746161000031],[-55.12861080599993,5.821356512000093],[-55.101039358999934,5.830499325000105],[-55.091712277999925,5.852791383000081],[-55.090748842999886,5.87511666900005],[-55.08551998599998,5.882798570000077],[-55.06342342299993,5.882882815000115],[-55.03038489499994,5.859767971000096],[-55.01012122299994,5.855536200000074],[-54.99705969999985,5.858465887000094],[-54.98892167899993,5.863674221000096],[-54.98119055899994,5.865464585000083],[-54.95881100199992,5.851792710000055],[-54.95030676999996,5.850287177000097],[-54.94180253799993,5.852118231000077],[-54.93195553299992,5.855536200000074],[-54.92414303299992,5.860419012000051],[-54.91869055899988,5.867092190000108],[-54.91197669199994,5.872870184000064],[-54.90025794199997,5.875392971000082],[-54.890777147999955,5.873358466000056],[-54.88072669199988,5.868353583000015],[-54.86302649599989,5.855536200000074],[-54.867543097999935,5.863674221000096],[-54.874338344999956,5.871568101000064],[-54.88219153599994,5.878363348000093],[-54.89028886599996,5.882798570000077],[-54.903472459999904,5.885402736000074],[-54.91258039499988,5.884024968000119],[-54.92185060699998,5.87662534400009],[-54.93331850699991,5.86967186900003],[-54.95620749599988,5.867574735000062],[-54.97156550399998,5.877266689000038],[-54.98563364599994,5.880387456000065],[-55.00151675999987,5.871258979000075],[-55.01659094999994,5.87197500200007],[-55.031727667999945,5.884466864000089],[-55.04727128799993,5.892279364000075],[-55.10529537699991,5.908921617000118],[-55.1256404289999,5.91864655200007],[-55.142974412999905,5.930121161000031],[-55.15038001199988,5.940863348000036],[-55.15412350199992,5.951361395000106],[-55.15996561999995,5.958113974000057],[-55.15332344099997,5.968592041000065],[-55.14449955899997,5.974247897000055],[-55.116851365999935,5.985256252000056],[-55.085301141999906,5.990649034000043],[-55.04479900499993,5.993104941000111],[-55.01390540299985,5.993394273000078],[-54.77358964799987,5.985256252000056],[-54.755360480999876,5.98094310100015],[-54.712555109999954,5.976183871000102],[-54.673556009999906,5.969191628000118],[-54.47178092299987,5.940969850000059],[-54.348630125999954,5.913755159000103],[-54.252699443999916,5.894808339000064],[-54.1693416009999,5.867905992000118],[-54.09739562699991,5.847339381000083],[-54.07445630999984,5.844887488000069],[-54.06203176999991,5.840558518000094],[-54.0367314449999,5.842350790000069],[-54.03094366199991,5.834184262000093],[-54.02046226899989,5.830250206000102],[-54.01468747699994,5.820148403000047],[-54.01630686199991,5.809703943000073],[-53.99208500999995,5.763497386000083],[-53.98635745399989,5.74566457100012],[-53.99592037699995,5.734523830000086],[-54.01975292699993,5.688979194000069],[-54.03114763399992,5.66930974200011],[-54.03643877499994,5.629502342000066],[-54.05036373599995,5.552069403000103],[-54.061105923999946,5.512884833000071],[-54.073597785999965,5.489813544000114],[-54.09178626199985,5.467922268000081],[-54.10912024599995,5.452826239000075],[-54.11847896999998,5.442775783000101],[-54.12254798099993,5.433417059000064],[-54.128529425999936,5.414292710000097],[-54.17096920499992,5.348374742000146],[-54.17096517463119,5.348376149408466]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Paraguay","sov_a3":"PRY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Paraguay","adm0_a3":"PRY","geou_dif":0,"geounit":"Paraguay","gu_a3":"PRY","su_dif":0,"subunit":"Paraguay","su_a3":"PRY","brk_diff":0,"name":"Paraguay","name_long":"Paraguay","brk_a3":"PRY","brk_name":"Paraguay","brk_group":null,"abbrev":"Para.","postal":"PY","formal_en":"Republic of Paraguay","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Paraguay","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":2,"pop_est":6995655,"gdp_md_est":28890,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"PA","iso_a2":"PY","iso_a3":"PRY","iso_n3":"600","un_a3":"600","wb_a2":"PY","wb_a3":"PRY","woe_id":23424917,"woe_id_eh":23424917,"woe_note":"Exact WOE match as country","adm0_a3_is":"PRY","adm0_a3_us":"PRY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"PRY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-58.15879675299999,-20.165124612999918],[-58.15833166499996,-20.181144307999958],[-58.15233719899992,-20.184658304999914],[-58.14406896999989,-20.183521423999906],[-58.13704097499996,-20.18558847999988],[-58.12990962699994,-20.19251312199995],[-58.12050451699988,-20.203881937999938],[-58.11854081299995,-20.2144239299999],[-58.155282755999934,-20.226412861999876],[-58.162672485999934,-20.24315602599991],[-58.15631628499992,-20.261656187999844],[-58.13704097499996,-20.2743685909999],[-58.130943155999915,-20.272818298999965],[-58.12624060099994,-20.2670305379999],[-58.120039428999945,-20.2613461299999],[-58.10975581899995,-20.26072601299998],[-58.103089559999944,-20.264446715999895],[-58.09507971299987,-20.272198180999908],[-58.09032548099989,-20.281706644999886],[-58.099937297,-20.309198506999863],[-58.0977152099999,-20.334623310999874],[-58.090790568999914,-20.359427998999905],[-58.08298742799988,-20.37617116199995],[-58.06712276299996,-20.393534443999965],[-58.04562536699992,-20.40934743199996],[-58.02314611899993,-20.420716246999856],[-58.00418086799997,-20.425160420999955],[-57.989401407999964,-20.43311859199993],[-57.99214025899992,-20.450895283999955],[-58.00790157099999,-20.479834085999926],[-58.01002030499996,-20.50009124699993],[-58.008935099999974,-20.525722756999897],[-58.004749308999926,-20.54980397499993],[-57.99332881699993,-20.57378183999994],[-57.99255367099991,-20.585047301999907],[-57.99363887599992,-20.60675140399991],[-57.99095170099989,-20.62060068699988],[-57.977825887999934,-20.640134378999875],[-57.973123331999936,-20.65119313599989],[-57.97358841999996,-20.6619418329999],[-57.98108150299989,-20.681165465999925],[-57.98061641499996,-20.69274098699988],[-57.97441524299998,-20.704006448999934],[-57.965010131999925,-20.711034443999935],[-57.95638016799998,-20.709897561999924],[-57.947181762999975,-20.675067646999963],[-57.93400427299991,-20.667419534999894],[-57.918087930999974,-20.669796650999924],[-57.90429032399992,-20.678995055999934],[-57.90020788599992,-20.685196227999924],[-57.89447180199997,-20.699975687999938],[-57.89064774599993,-20.706383564999967],[-57.88434322199993,-20.71196461999989],[-57.868943644999916,-20.72219655299996],[-57.86021032699994,-20.730258076999874],[-57.85767818299987,-20.739869892999874],[-57.865274617999944,-20.747414651999918],[-57.877005167999926,-20.752375589999872],[-57.898760945999925,-20.756613056999925],[-57.90666743999989,-20.762194111999932],[-57.917932902999944,-20.774079690999965],[-57.933074096999945,-20.78462168399993],[-57.94041215099995,-20.79361338299988],[-57.93395259599989,-20.799711201999926],[-57.90801102699993,-20.801984964999946],[-57.887650512999926,-20.805912373999917],[-57.870700644,-20.816454365999974],[-57.859641885999906,-20.831647236999913],[-57.85710974199991,-20.849733987999926],[-57.86739335199991,-20.86006927499993],[-57.90868282099993,-20.881566670999874],[-57.917932902999944,-20.89438242599995],[-57.91483231599999,-20.90564788899992],[-57.90801102699993,-20.910505472999926],[-57.90113806199988,-20.912365823999934],[-57.898089151999955,-20.91484629299991],[-57.89302486199997,-20.91484629299991],[-57.86992549599998,-20.93272633899997],[-57.84703283699988,-20.95598073299989],[-57.84031490099994,-20.95598073299989],[-57.836025756999895,-20.938514098999946],[-57.81757726999987,-20.95360361699994],[-57.81602697799994,-20.975411070999968],[-57.825380411999895,-20.998562113999867],[-57.85245886299995,-21.037836201999937],[-57.85173539199993,-21.051995543999876],[-57.836025756999895,-21.082484638999873],[-57.829876261999914,-21.127029723999964],[-57.833958699999926,-21.173848571999898],[-57.847859660999916,-21.2162232459999],[-57.870700644,-21.24764251699993],[-57.89901932799998,-21.267176207999853],[-57.90429032399992,-21.27492767299995],[-57.9049104419999,-21.287433369999945],[-57.89994950399994,-21.295081480999926],[-57.89364497999994,-21.300352477999866],[-57.89064774599993,-21.305933531999884],[-57.88232784099994,-21.316372171999916],[-57.86630814599991,-21.32091969799994],[-57.85555944799998,-21.330738219999915],[-57.863310913999975,-21.356886494999927],[-57.9299218349999,-21.453108011999873],[-57.945269734999954,-21.487214456999936],[-57.94914546799993,-21.508298440999866],[-57.94811193899995,-21.530519307999896],[-57.939792032999975,-21.548192646999905],[-57.92160192899994,-21.555427346999874],[-57.912093464999934,-21.564005635999905],[-57.91932816599993,-21.58395273799992],[-57.93214392099989,-21.606690368999892],[-57.939016886999944,-21.623743590999922],[-57.93483109599992,-21.640693460999923],[-57.92434077999987,-21.65867685899992],[-57.91178340699988,-21.67304290799993],[-57.90113806199988,-21.678934020999918],[-57.89560868299989,-21.68844248499991],[-57.939016886999944,-21.755311787999887],[-57.93844844599991,-21.77463877299992],[-57.93477941999993,-21.792932229999902],[-57.93570959499996,-21.8120525099999],[-57.94893876099987,-21.833859964999917],[-57.955915079999954,-21.851119893999908],[-57.94666499899994,-21.865485941999907],[-57.932764037999874,-21.881919046999965],[-57.92537430899994,-21.904966735999935],[-57.9299218349999,-21.917369079999915],[-57.95322790499992,-21.958193460999908],[-57.96263301599989,-21.96697845499989],[-57.964855102999906,-21.976693623999918],[-57.98681758599994,-22.035294697999944],[-57.98836787999996,-22.04904062899989],[-57.98800614499998,-22.06413014699997],[-57.9862491459999,-22.07446543399989],[-57.973133663999896,-22.081048493999944],[-57.97286494999997,-22.0811833699999],[-57.961392781999926,-22.090071715999926],[-57.95245275899992,-22.105988056999944],[-57.93999873899995,-22.118390400999928],[-57.90625402899988,-22.128932392999985],[-57.89550533099995,-22.128932392999985],[-57.87819372599994,-22.12211110399994],[-57.87137243699991,-22.121180928999888],[-57.86284582599995,-22.12583180699994],[-57.84868648299993,-22.14030120799988],[-57.84388057499992,-22.14371185299991],[-57.831788289999935,-22.14112803099991],[-57.81576859499997,-22.12831227699992],[-57.80548498499988,-22.128622334999903],[-57.795304727999934,-22.13099945099995],[-57.78750158799991,-22.129655863999886],[-57.775409301999936,-22.123971455999936],[-57.77778641799995,-22.1223178099999],[-57.77742468299997,-22.117046813999963],[-57.77561600799996,-22.111155699999955],[-57.77365230299995,-22.107745055999928],[-57.76993159999992,-22.10743499699994],[-57.76026810699991,-22.110742288999944],[-57.756185669999894,-22.110638935999916],[-57.73634191899989,-22.103714293999943],[-57.72326778199994,-22.104747822999922],[-57.70993526299992,-22.108468525999925],[-57.68962642399989,-22.109295348999947],[-57.67851599199988,-22.106401468999962],[-57.6708162029999,-22.102370706999878],[-57.663684855999946,-22.100613708999987],[-57.65448644999994,-22.104541116999954],[-57.638931844999945,-22.144538675999925],[-57.627201294999935,-22.16510589599991],[-57.614075480999986,-22.176991474999852],[-57.59671219899988,-22.181022236999937],[-57.57273433399993,-22.17771494499995],[-57.56400101799996,-22.17440765399995],[-57.559970255999986,-22.171617125999887],[-57.5546992599999,-22.170273538999922],[-57.54229691599997,-22.17151377299996],[-57.53459712799989,-22.17440765399995],[-57.51118770399992,-22.18877370199995],[-57.472482055999905,-22.18029876699994],[-57.46395544499998,-22.180402119999968],[-57.44318151899994,-22.187946878999924],[-57.432277791999894,-22.18867034899992],[-57.417860066999964,-22.193837991999928],[-57.38499385599994,-22.21326833099991],[-57.37863765499991,-22.213371683999938],[-57.37502030399992,-22.207273864999877],[-57.36664872199995,-22.20913421699988],[-57.35124914599996,-22.217195738999877],[-57.339932006999895,-22.216989033999923],[-57.33481603999991,-22.211718037999972],[-57.33305904199992,-22.205413512999968],[-57.33176713099996,-22.202416279999866],[-57.31631587799998,-22.203656513999903],[-57.27166743999993,-22.21378509499995],[-57.25244380799992,-22.21058115699988],[-57.22748409099995,-22.191254170999926],[-57.213789835999926,-22.18815358499998],[-57.20944901599995,-22.192080992999948],[-57.206400105999904,-22.2074805699999],[-57.19952714099995,-22.212854919999895],[-57.189967,-22.213578388999892],[-57.18361079999991,-22.21089121499996],[-57.177926391999875,-22.2073772169999],[-57.17038163299992,-22.205723571999954],[-57.154155232999926,-22.20799733499997],[-57.12418290199989,-22.21853932699993],[-57.11503617399998,-22.222880146999913],[-57.11462276199998,-22.225050557999907],[-57.11327917499992,-22.229391376999985],[-57.10847326699991,-22.233525492999917],[-57.090748250999894,-22.2364193719999],[-57.08506384299994,-22.23807301899994],[-57.07922440599995,-22.23858978299998],[-57.07162796999997,-22.235695902999908],[-57.0594840089999,-22.232698668999888],[-57.027651326999944,-22.235075784999935],[-57.01116654499995,-22.2338355509999],[-56.98646521099994,-22.2413803099999],[-56.97571651299992,-22.241690368999926],[-56.96455440299991,-22.234869079999967],[-56.965484578999956,-22.250888772999925],[-56.960523641,-22.254816181999985],[-56.95210038299993,-22.253575947999945],[-56.94259191899994,-22.253989359999963],[-56.92494441799994,-22.262360941999944],[-56.914789998999964,-22.262877705999884],[-56.90367956599996,-22.23693613699993],[-56.892000691999975,-22.252232360999898],[-56.88171708199991,-22.277243753999898],[-56.87954667199992,-22.289956156999935],[-56.85605973299991,-22.293160094999916],[-56.842856404999935,-22.289025980999977],[-56.84284041999993,-22.28900974699988],[-56.81965368699994,-22.265461526999985],[-56.81314245599995,-22.256159769999954],[-56.81190222199993,-22.249648538999892],[-56.808284871999945,-22.247994893999945],[-56.79456477899993,-22.25254241999997],[-56.786994180999955,-22.251818948999883],[-56.75436051499989,-22.242620543999887],[-56.746789916999944,-22.243964130999938],[-56.74560135899991,-22.248408304999955],[-56.743534301999944,-22.250372008999886],[-56.73319901599993,-22.244067484999974],[-56.72854813599989,-22.237452900999884],[-56.720538289999894,-22.2194695029999],[-56.715370646999894,-22.215438740999986],[-56.69860164399995,-22.223500263999895],[-56.6645727129999,-22.259983825999893],[-56.64881140199992,-22.263497822999867],[-56.644134684999926,-22.255436299999957],[-56.65470251499991,-22.23734954799994],[-56.64834631399989,-22.231355081999922],[-56.637184204999954,-22.228254495999874],[-56.62917435699998,-22.224740497999917],[-56.595739705999904,-22.201486103999912],[-56.58496516899996,-22.19053070099993],[-56.56791194699994,-22.162315368999955],[-56.56530228699992,-22.159938252999922],[-56.55801590999994,-22.156424254999962],[-56.554605265999925,-22.152083434999977],[-56.5490758869999,-22.136270446999973],[-56.54597530099996,-22.130069274999897],[-56.530679077999906,-22.109088643999897],[-56.52163570199994,-22.0998902379999],[-56.51130041499994,-22.091415303999895],[-56.4938337819999,-22.086557718999885],[-56.421796834999924,-22.07446543399989],[-56.407637491999964,-22.075809020999955],[-56.39730220599997,-22.086247660999987],[-56.370843872999984,-22.147329202999895],[-56.34733109599997,-22.180402119999968],[-56.316842,-22.207687275999884],[-56.26108313099988,-22.23858978299998],[-56.231524210999936,-22.26535817399987],[-56.21426428299995,-22.27538340199989],[-56.19679764799989,-22.27931081199995],[-56.02471512899992,-22.28737233399994],[-56.01135677099992,-22.283858337999973],[-55.99856685399993,-22.277243753999898],[-55.985234334999916,-22.283238219999916],[-55.97086828699992,-22.293883564999916],[-55.95526200399988,-22.30132497099993],[-55.89294022599992,-22.306802673999925],[-55.87438838699998,-22.31734466499998],[-55.872011270999934,-22.31021331699995],[-55.86103002999997,-22.28954274499993],[-55.81077469899992,-22.353104756999898],[-55.77015702399987,-22.381423440999892],[-55.76023514799996,-22.391965433999957],[-55.751579345999914,-22.41625335699996],[-55.74829789299994,-22.500899352999866],[-55.74126989799993,-22.53717620899991],[-55.72393245399991,-22.569629006999932],[-55.697913371999924,-22.59557057699989],[-55.66468542599992,-22.612727151999934],[-55.64435074899998,-22.619548441999896],[-55.63119909699992,-22.626783141999866],[-55.623680175999965,-22.63866872199989],[-55.620476237999895,-22.659339293999906],[-55.62150976599988,-22.66709075899992],[-55.627013305999895,-22.683627217999913],[-55.62778845299991,-22.692102151999904],[-55.62566971899991,-22.70078379299987],[-55.61918432599995,-22.71690684],[-55.61833166599993,-22.72569183399993],[-55.628589436999896,-22.758971455999884],[-55.64592687999993,-22.78791025799994],[-55.659001017999884,-22.818296],[-55.656572224999906,-22.855709736999955],[-55.634299682999966,-22.932810973999906],[-55.63435135999998,-22.950070901999908],[-55.6399840899999,-22.983763935999946],[-55.63781367999991,-23.00071380599986],[-55.61145869999987,-23.029135843999878],[-55.600684163999915,-23.04453542],[-55.595232299999935,-23.064069111999885],[-55.60014156199989,-23.100552672999896],[-55.59939225299988,-23.11708913199989],[-55.58866939299995,-23.130111591999917],[-55.56086747299992,-23.145924579999914],[-55.55714676999989,-23.1547095749999],[-55.53523596299993,-23.229123635999922],[-55.535649373999945,-23.245866800999877],[-55.559007120999894,-23.291342060999924],[-55.562159383999955,-23.307878519999917],[-55.555596476999966,-23.330306090999912],[-55.52487483699994,-23.36048512699992],[-55.51386775799994,-23.379398701999946],[-55.515547241999904,-23.410197855999925],[-55.5424706629999,-23.46580169699993],[-55.53991267899991,-23.5005282599999],[-55.533795620999875,-23.53044413699986],[-55.533065551999954,-23.534014586999955],[-55.53389237499996,-23.56998138399993],[-55.53053340699995,-23.603467711999926],[-55.511309773999955,-23.62940928099988],[-55.466971395999906,-23.67323089599998],[-55.4453189699999,-23.7354493199999],[-55.430177775,-23.928564147999865],[-55.420669311999916,-23.95450571599991],[-55.398035033999975,-23.976829935999973],[-55.36718420399998,-23.989645690999865],[-55.30434566299991,-23.99408986399996],[-55.27271968599993,-24.00039438899998],[-55.272668008999915,-24.000497741999908],[-55.27256465699988,-24.000497741999908],[-55.272409627999934,-24.000601094999936],[-55.27235795099992,-24.000601094999936],[-55.23683040399996,-24.012693379999913],[-55.20086360699989,-24.01951466799997],[-55.16543941299997,-24.016827493999937],[-55.13128129099999,-24.000601094999936],[-55.13120377699996,-24.000601094999936],[-55.131074584999936,-24.000601094999936],[-55.131074584999936,-24.00039438899998],[-55.1055722659999,-23.988508809999942],[-55.0422944739999,-23.989025573999896],[-55.01149532099993,-23.980550638999883],[-54.99457128999995,-23.97310923299996],[-54.96105912299992,-23.971765644999905],[-54.94364416499991,-23.969181823999904],[-54.92674597199991,-23.959880065999883],[-54.90488684099998,-23.933008320999875],[-54.89191605699994,-23.92060597699991],[-54.827423868999915,-23.887016296999974],[-54.69683752399993,-23.84515838599991],[-54.679784301999916,-23.836683450999896],[-54.65459204099997,-23.81146535199994],[-54.63921830299998,-23.80443735699994],[-54.612553263999956,-23.811155293999956],[-54.44315791899993,-23.899935403999887],[-54.42290075699992,-23.91378468899994],[-54.36760697499997,-23.984684753999915],[-54.27360754399987,-24.03646453799989],[-54.24574984799992,-24.050393385999953],[-54.24528885899994,-24.05062388099992],[-54.26621781499995,-24.065920104999886],[-54.3010477299999,-24.089897969999896],[-54.324767211999955,-24.118216653999895],[-54.33463741099993,-24.148912454999927],[-54.33184688299988,-24.16503550199991],[-54.31897945199997,-24.19676483099994],[-54.314121866999955,-24.234178567999905],[-54.30626704899993,-24.2466842649999],[-54.282650919999924,-24.275313008999973],[-54.27433101399995,-24.29825734499991],[-54.26105017099993,-24.329469908999982],[-54.262187051999945,-24.35851206499997],[-54.27169551599994,-24.38941457099989],[-54.28409785999992,-24.41132537799993],[-54.32290685999993,-24.464345397999935],[-54.33453405799992,-24.496694843999933],[-54.33479243999997,-24.527287292999944],[-54.32068477399994,-24.595913593999896],[-54.32130489099992,-24.62836639399991],[-54.35842946499994,-24.73142174699997],[-54.37112097199994,-24.766652526999874],[-54.39974971599992,-24.80478973399994],[-54.407294474999865,-24.821222838999898],[-54.45328649899997,-25.002813821999933],[-54.46227819799992,-25.037230325999897],[-54.46419022599994,-25.05593719499997],[-54.4633117269999,-25.072783711999946],[-54.45519852699991,-25.09211069699991],[-54.429722045999966,-25.130557962999944],[-54.42662146099994,-25.149471536999982],[-54.43566483599997,-25.167041523999956],[-54.46940954599995,-25.195463561999887],[-54.48145015499992,-25.213240253999913],[-54.50356766799993,-25.2786626179999],[-54.528475708999906,-25.314319355999885],[-54.547079223999866,-25.33664357499994],[-54.575656290999916,-25.36031138099989],[-54.5979805099999,-25.397518411999982],[-54.609814412999896,-25.432761738999957],[-54.611829792999934,-25.444027200999926],[-54.61244991099991,-25.465524596999956],[-54.60852250199994,-25.487642109999882],[-54.598497273999925,-25.50583221399992],[-54.5914692789999,-25.52474578899995],[-54.59415645399994,-25.548620300999943],[-54.59994421499991,-25.572701516999885],[-54.6002026129999,-25.574944883999876],[-54.602217976999924,-25.592441914999952],[-54.58624995999989,-25.62468800899991],[-54.58335607899991,-25.644841816999886],[-54.598497273999925,-25.65383351699992],[-54.633714763,-25.65207651699995],[-54.64288732999998,-25.66158498099993],[-54.64314571099995,-25.687939961999902],[-54.62492976899991,-25.740236510999907],[-54.62206172699993,-25.759976908999874],[-54.61715246599991,-25.773516133999948],[-54.594518188999956,-25.7987342329999],[-54.58790360499995,-25.810826517999885],[-54.58955725099989,-25.832944029999894],[-54.59922074399992,-25.850720722999924],[-54.61007279499998,-25.866533711999917],[-54.615240437999965,-25.882863464999957],[-54.60733394399991,-25.927925312999903],[-54.60640376799998,-25.946632181999888],[-54.615240437999965,-25.96172169999988],[-54.623689533999965,-25.964305520999886],[-54.64795161999987,-25.965649108999855],[-54.656194010999904,-25.969163105999908],[-54.66226599099994,-25.979911803999926],[-54.66159419799995,-25.989937031999943],[-54.658261067999966,-26.000375670999887],[-54.65332596899992,-26.030761412999937],[-54.64252559499999,-26.062800801999856],[-54.64314571099995,-26.085228373999936],[-54.66381628399997,-26.149203796999927],[-54.65994055199991,-26.16439666699995],[-54.641853800999904,-26.1840337109999],[-54.63828812699992,-26.196952819999908],[-54.644696004999865,-26.208218281999862],[-54.656194010999904,-26.222997741999873],[-54.6643330489999,-26.236226908999882],[-54.6649738179999,-26.238863213999963],[-54.666141723999914,-26.243668314999894],[-54.66366125499994,-26.26330535899993],[-54.66366125499994,-26.308367207999964],[-54.67906083199992,-26.33988983199994],[-54.68043025799997,-26.345264179999987],[-54.6834016519999,-26.35084523499991],[-54.693065144999935,-26.411926777999906],[-54.69766434799996,-26.428153177999917],[-54.70647517899996,-26.44179575599992],[-54.7371709809999,-26.473215026999867],[-54.76530879799995,-26.494092305999928],[-54.78034663999995,-26.510422057999875],[-54.78982926499992,-26.528508808999973],[-54.78876989799991,-26.542564798999905],[-54.783498901999906,-26.55672414199995],[-54.78034663999995,-26.575224303999885],[-54.781276814999984,-26.598168639999912],[-54.7849458419999,-26.6227666219999],[-54.793059041999896,-26.644987487999927],[-54.807011678999885,-26.661213886999946],[-54.81732112699989,-26.66576141399989],[-54.82282466699987,-26.663280944999908],[-54.827423868999915,-26.658113301999904],[-54.83496862799987,-26.65439259899989],[-54.879358683999925,-26.65439259899989],[-54.903336548999874,-26.659870299999877],[-54.91989884499995,-26.674132995999855],[-54.9307250569999,-26.69397674499994],[-54.94387670899996,-26.739968770999937],[-54.95113724799995,-26.75753875699992],[-54.96100744599991,-26.772318216999935],[-54.97527014199991,-26.787821145999942],[-54.99178076199988,-26.794642435999904],[-55.040744181999884,-26.79846649199993],[-55.06089798999997,-26.80518442799986],[-55.125777750999895,-26.863578795999924],[-55.13267655499996,-26.88063201899986],[-55.11887894699992,-26.92000946099995],[-55.12231542999987,-26.941713561999862],[-55.138360962999904,-26.953702493999913],[-55.161563679999915,-26.9573198449999],[-55.2011995039999,-26.955459492999893],[-55.21665075699988,-26.951222025999936],[-55.23517675799991,-26.942230325999986],[-55.256544962999925,-26.934582213999914],[-55.28060034199987,-26.934272155999935],[-55.32940873199993,-26.958456725999906],[-55.37622757999995,-26.963831074999874],[-55.396329711999975,-26.969308776999952],[-55.41400305199991,-26.979850768999924],[-55.43084956899989,-26.996387226999914],[-55.44276098699993,-27.01550750699991],[-55.44883296699996,-27.035868021999928],[-55.45131343599993,-27.082066751999886],[-55.46185542899991,-27.09798309299991],[-55.48640173399988,-27.100050149999973],[-55.51399694899995,-27.097466328999886],[-55.53384069899997,-27.09943003399991],[-55.54536454299998,-27.115243021999902],[-55.54952449599992,-27.13581024199989],[-55.55533809499991,-27.15379363999997],[-55.57174536199997,-27.161545104999888],[-55.59828120999998,-27.167539570999917],[-55.59897884199995,-27.18262908999992],[-55.5748717859999,-27.223556823999928],[-55.57058264199994,-27.235339049999933],[-55.56867061399993,-27.245984394999923],[-55.570711832999876,-27.25642303499995],[-55.5840701909999,-27.276783548999987],[-55.58324336799998,-27.283501484999917],[-55.58076289899992,-27.29166636099994],[-55.58164139799996,-27.305515645999904],[-55.59133072899999,-27.32835662799991],[-55.60747961499996,-27.34551320399987],[-55.628718628999934,-27.356365254999915],[-55.6536266679999,-27.360085957999928],[-55.68171280999994,-27.37941294399988],[-55.71749873899995,-27.417343444999887],[-55.7547316079999,-27.44369842499995],[-55.81516719599992,-27.414139505999913],[-55.84209061699991,-27.407421569999897],[-55.85415706399991,-27.401220397999904],[-55.86278702799992,-27.39109181699986],[-55.877850708999944,-27.353574726999867],[-55.89283687400001,-27.334867858999885],[-55.913094034999915,-27.32783986399997],[-55.93637426799992,-27.32825327499998],[-55.960662190999926,-27.331560566999883],[-55.96609441599989,-27.33172306899992],[-55.98484676099991,-27.33228403699988],[-56.0068867599999,-27.32825327499998],[-56.00689354499994,-27.328250904999962],[-56.07375606299988,-27.304895527999932],[-56.07424597799991,-27.304811111999882],[-56.0989483239999,-27.300554706999947],[-56.124553995999975,-27.298901061999914],[-56.14997879999996,-27.31182016999992],[-56.16889237499993,-27.324739277999925],[-56.20542761299993,-27.362153014999887],[-56.22801021299997,-27.371248066999954],[-56.2567681479999,-27.37827606199997],[-56.279841674999936,-27.389644876999863],[-56.28531937699995,-27.411348977999864],[-56.28146948299991,-27.438634134999873],[-56.28531937699995,-27.46095835299994],[-56.296998250999934,-27.48090545699995],[-56.31648026599993,-27.500439147999955],[-56.33598811899992,-27.525657246999913],[-56.34965653499992,-27.55635304799995],[-56.36753658099988,-27.58064097099995],[-56.39973099799993,-27.58684214299994],[-56.400298629999924,-27.58663624099995],[-56.431356974999915,-27.575369976999923],[-56.46148433499991,-27.553872577999883],[-56.48732255099992,-27.527207538999846],[-56.50621028699996,-27.50012908899988],[-56.54644038899991,-27.455067240999938],[-56.54693334499993,-27.455002941999847],[-56.61299963399997,-27.446385598999882],[-56.638015874999915,-27.452911574999913],[-56.68312455299994,-27.46467905699994],[-56.73423254399992,-27.500439147999955],[-56.77115535499996,-27.506743671999885],[-56.77151064999995,-27.50654844899989],[-56.8074580489999,-27.486796569999868],[-56.869263061999895,-27.43150278699993],[-56.904351358999946,-27.41868703199995],[-56.90444715299995,-27.41869594899988],[-56.9409899499999,-27.422097675999876],[-56.97731848199995,-27.435326842999885],[-57.07622717399994,-27.48400604299991],[-57.108990030999934,-27.490620625999895],[-57.148160766999894,-27.488966979999944],[-57.1566873779999,-27.487726745999908],[-57.18009680199995,-27.487313333999907],[-57.1804525069999,-27.487214066999854],[-57.191207234999894,-27.484212747999944],[-57.2004056399999,-27.478941751999926],[-57.22707067899992,-27.458684590999923],[-57.23709590699994,-27.454240417999912],[-57.23758762399987,-27.454120240999913],[-57.28302631699992,-27.443014888999883],[-57.2924930419999,-27.44070119299994],[-57.30298335799995,-27.435533548999928],[-57.31011574999987,-27.429207701999925],[-57.32628942999989,-27.414862975999906],[-57.33522945099992,-27.40948862699986],[-57.356466096999945,-27.404342991999897],[-57.36039587499993,-27.403390807999898],[-57.3866991779999,-27.403494160999927],[-57.48767492699994,-27.41641326899993],[-57.513358113999914,-27.414139505999913],[-57.51993790499998,-27.41209855199989],[-57.53568233299998,-27.40721486399994],[-57.69779130099994,-27.333524271999917],[-57.69818345599995,-27.333398221999868],[-57.709366821999964,-27.329803568999903],[-57.81158280399995,-27.31068328899991],[-57.81191293,-27.310582987999865],[-57.8547843019999,-27.297557474999845],[-57.855088470999924,-27.297499001999896],[-57.89950352199992,-27.28896065899988],[-57.913385376,-27.28629201299988],[-57.944029500999925,-27.27461313899991],[-57.9443564339999,-27.274551133999935],[-58.00366413399994,-27.263303121999893],[-58.02195755999991,-27.259833678999897],[-58.02204621299995,-27.259831356999968],[-58.053531860999975,-27.259006855999868],[-58.113993285999925,-27.268928730999875],[-58.128824422999934,-27.269652200999957],[-58.238223428999866,-27.257043151999937],[-58.510764932999905,-27.27843719499994],[-58.600165160999914,-27.312957051999927],[-58.60419592299991,-27.31626434299993],[-58.604134633999905,-27.315548077999907],[-58.59990677999994,-27.2661382039999],[-58.60156042499997,-27.24567433699994],[-58.61401444499995,-27.226657409999884],[-58.6387157799999,-27.21012095099989],[-58.6523583579999,-27.1980286659999],[-58.658404499999925,-27.185109557999894],[-58.65328853399993,-27.156274108999952],[-58.638819132999906,-27.13591359499992],[-58.616133178999945,-27.1238213099999],[-58.565490274999966,-27.11596649099991],[-58.560529337999924,-27.105527852999955],[-58.56238968999994,-27.090128275999888],[-58.5621829829999,-27.072144876999896],[-58.55970251499992,-27.063359883999905],[-58.556395223999914,-27.05550506599988],[-58.55169266799994,-27.04816701199988],[-58.5454398199999,-27.04103566499994],[-58.53625859699994,-27.036293713999896],[-58.536034708999885,-27.036178079999928],[-58.53050533099989,-27.0405189009999],[-58.5280248619999,-27.047753600999968],[-58.5280248619999,-27.05168100999994],[-58.52704300999994,-27.054161478999916],[-58.52003209399993,-27.05836802799989],[-58.519808308999956,-27.058502298999898],[-58.51154007999991,-27.060155944999934],[-58.50756099499995,-27.055091654999956],[-58.5067341719999,-27.038451842999844],[-58.504873819999915,-27.031527200999857],[-58.50135982299994,-27.023672383999923],[-58.4923681239999,-27.009719746999934],[-58.474539754999874,-26.9900827029999],[-58.46663326099991,-26.975923359999854],[-58.48161942599999,-26.963831074999874],[-58.48368648299996,-26.950601907999967],[-58.47546993099993,-26.93799285899985],[-58.45981197099987,-26.928174336999888],[-58.41552526899995,-26.917528991999887],[-58.39387284299993,-26.909674173999946],[-58.38467443899995,-26.897065124999923],[-58.374700886999925,-26.88755666099985],[-58.3289155679999,-26.884146015999914],[-58.31578975399995,-26.87412078899989],[-58.32214595599996,-26.856757506999966],[-58.34038773699992,-26.844458515999932],[-58.35237666799989,-26.83050587999993],[-58.34002600199992,-26.80859507199989],[-58.32333451299991,-26.803840839999893],[-58.305506143999935,-26.80911183699993],[-58.288556274999934,-26.81148895299988],[-58.27481034399991,-26.7983631389999],[-58.27847936999989,-26.79019826199989],[-58.2865408939999,-26.778726094999882],[-58.28793615799997,-26.76859751399992],[-58.271399698999886,-26.76425669399994],[-58.259255736999954,-26.764463398999894],[-58.25176265499993,-26.763223164999953],[-58.247938599,-26.75815887499989],[-58.24519974799995,-26.680230814999916],[-58.24065222199994,-26.661213886999946],[-58.235536254999936,-26.649845072999952],[-58.232280639999935,-26.648604837999912],[-58.22716467299995,-26.652015482999943],[-58.19569372599991,-26.657493183999932],[-58.18385982299989,-26.65676971499994],[-58.17864050299996,-26.65067189499989],[-58.18137935399991,-26.64157684299991],[-58.18716711499991,-26.63361867199994],[-58.192076375999925,-26.62462697399991],[-58.192283081999875,-26.612844746999897],[-58.188510701999945,-26.609744160999952],[-58.17150915499994,-26.598582050999923],[-58.16494624899993,-26.592277526999908],[-58.170527302999886,-26.586799824999925],[-58.17931229699996,-26.572640482999887],[-58.18541011599993,-26.564992369999896],[-58.20799271699994,-26.55021291099989],[-58.213367065999904,-26.544528502999935],[-58.2173461509999,-26.52757863299993],[-58.21419388899994,-26.512385762999912],[-58.208716186999936,-26.496882832999898],[-58.2059256599999,-26.479416197999853],[-58.20272171999991,-26.471561380999916],[-58.1886657309999,-26.462052916999923],[-58.18541011599993,-26.451717630999923],[-58.20959468699999,-26.43125376299987],[-58.213057006999925,-26.41864471399994],[-58.206184041999876,-26.402728372999917],[-58.17269771399996,-26.34929494299989],[-58.167633422999906,-26.335032246999916],[-58.16494624899993,-26.318599140999947],[-58.17001053899992,-26.286559752999946],[-58.16995886299992,-26.270333353999927],[-58.161845662999916,-26.26330535899993],[-58.14598099799991,-26.260101419999955],[-58.123295043999946,-26.25152313199993],[-58.10598343899994,-26.23953419999988],[-58.10660355699992,-26.226098326999917],[-58.12122798699997,-26.216693216999957],[-58.13714432799989,-26.2094585169999],[-58.14892655499992,-26.199329935999938],[-58.1513036699999,-26.181449889999982],[-58.1411750899999,-26.184757181999885],[-58.13321691899991,-26.188994649999938],[-58.12763586499992,-26.194679055999885],[-58.12401851499994,-26.201913756999943],[-58.115233520999936,-26.19095835299987],[-58.10629349799992,-26.170287780999956],[-58.096681680999914,-26.136698099999933],[-58.08650142399994,-26.12718963599994],[-58.021595826,-26.10569223999991],[-57.9882128499999,-26.088535664999938],[-57.87271602399994,-26.010297545999975],[-57.859693562999915,-25.99427785199992],[-57.859590210999976,-25.98094533299991],[-57.905840617999864,-25.968646341999957],[-57.8982441819999,-25.95355682299987],[-57.863310913999975,-25.92761525499992],[-57.85710974199991,-25.91986378899992],[-57.851373656999954,-25.908391621999897],[-57.85240718599994,-25.89795298199995],[-57.875351521999875,-25.890201517999852],[-57.87819372599994,-25.88317352299994],[-57.875351521999875,-25.876145527999938],[-57.854215860999915,-25.86891082699988],[-57.83323522999992,-25.858782246999922],[-57.81966196599987,-25.84977922099992],[-57.812823039999984,-25.845243021999934],[-57.801867635,-25.831393737999875],[-57.81706050699992,-25.79749399799996],[-57.82062617999989,-25.77827036499994],[-57.805588338999904,-25.769898782999874],[-57.787243204999925,-25.7641110229999],[-57.76791621999988,-25.750675149999935],[-57.75106970299989,-25.734862161999942],[-57.74037268099991,-25.722149759999894],[-57.75112137899992,-25.71956593799989],[-57.7605781659999,-25.715638528999914],[-57.7684846599999,-25.70995412199997],[-57.774582478999974,-25.70168589199993],[-57.753705199999935,-25.672747089999874],[-57.74125118099994,-25.661895038999912],[-57.719908812999925,-25.65383351699992],[-57.70869502799987,-25.65290334099997],[-57.69820471199994,-25.65362681099988],[-57.68833451399988,-25.652696634999927],[-57.67898107999991,-25.647012226999976],[-57.67526037599989,-25.639260762999882],[-57.67004105699999,-25.616936543999913],[-57.668077351999955,-25.61228566499994],[-57.63877681499988,-25.615799661999898],[-57.623067179999936,-25.61538625099989],[-57.61629756699997,-25.6091850789999],[-57.611646687999915,-25.585930683999976],[-57.600691283999936,-25.57879933699985],[-57.58715205899994,-25.575698750999905],[-57.57531815699994,-25.564433288999933],[-57.570047159999916,-25.546656595999906],[-57.556921345999946,-25.459840189999923],[-57.558109904999974,-25.443510436999887],[-57.565292927999934,-25.430384622999924],[-57.57872879999988,-25.416742044999904],[-57.64079219599994,-25.372610371999926],[-57.64120560799996,-25.36051808699993],[-57.67148799699998,-25.29013478599991],[-57.671975553999914,-25.28983098099991],[-57.70233882699995,-25.270911152999883],[-57.721769164999934,-25.246106465999944],[-57.75406693499991,-25.18089080799993],[-57.76600419199997,-25.167868346999892],[-57.79732010999996,-25.153915709999907],[-57.81240962799995,-25.143683776999918],[-57.85648962399994,-25.096761575999963],[-57.870700644,-25.08528940799995],[-57.890492715999905,-25.07867482499995],[-57.96976436399993,-25.078468119999894],[-57.98376867699991,-25.07423065199994],[-57.98986649599999,-25.064102070999894],[-57.99363887599992,-25.05273325599991],[-58.000460164999964,-25.04436167399993],[-58.0098135989999,-25.042501322999925],[-58.03213781699998,-25.045085143999923],[-58.04205969299996,-25.04436167399993],[-58.11151281799993,-25.01232228599993],[-58.12401851499994,-25.012942402999894],[-58.13388871299992,-24.997852884999897],[-58.22406408799992,-24.94121551499991],[-58.242512572999935,-24.94173227899995],[-58.25915238499993,-24.95299774199991],[-58.287264363999974,-24.979766133999888],[-58.29930497299995,-24.987724303999936],[-58.3119656989999,-24.993615416999944],[-58.32328283699988,-24.99526906399998],[-58.33599523899994,-24.99185841899987],[-58.34131791199988,-24.986174010999918],[-58.34436682099991,-24.978319193999894],[-58.35056799299988,-24.968604023999944],[-58.414801798999946,-24.903078307999944],[-58.43852128099987,-24.872795918999913],[-58.450768595999904,-24.861737161999912],[-58.47340287299996,-24.851298522999883],[-58.69421626799996,-24.812024434999913],[-58.69938391199997,-24.807270202999916],[-58.70191605599988,-24.799312031999946],[-58.70811722799993,-24.795074564999908],[-58.715972045999955,-24.791870625999934],[-58.72325842399994,-24.786702982999927],[-58.737469441999906,-24.782775572999952],[-58.788474080999976,-24.781638691999945],[-58.80919632999991,-24.776781106999934],[-59.000915893999974,-24.644179381999905],[-59.032696899999934,-24.637048034999864],[-59.04241206899988,-24.630536803999902],[-59.062462524999916,-24.612346699999943],[-59.07217769399994,-24.60676564499994],[-59.078327189999925,-24.605628762999928],[-59.097189087999936,-24.605422057999874],[-59.11698116099993,-24.59880747499997],[-59.154394897999914,-24.576276549999946],[-59.17790767499989,-24.568731790999905],[-59.20648474199996,-24.550231628999967],[-59.24808426999993,-24.53720916799993],[-59.25764440899993,-24.53018117299993],[-59.263122111999934,-24.5234632359999],[-59.27046016499991,-24.518192239999877],[-59.2856013599999,-24.51612518299991],[-59.29505814599992,-24.51292124499993],[-59.30808060699993,-24.498761901999984],[-59.34097265699998,-24.48759979299996],[-59.35740576199995,-24.468996276999903],[-59.37776627699989,-24.43354624399997],[-59.387093871999916,-24.42383107499992],[-59.4260320649999,-24.39251515699992],[-59.450268310999974,-24.382386575999874],[-59.453808146999926,-24.374531758999932],[-59.45628861499992,-24.36543670599987],[-59.45972509799994,-24.35851206499997],[-59.465900431999934,-24.353551126999932],[-59.487656208999944,-24.344766132999947],[-59.51041967799993,-24.332673847999956],[-59.52114253799993,-24.32502573699989],[-59.53202042699991,-24.314070332999904],[-59.53997859799995,-24.30879933599988],[-59.55842708299988,-24.30538869199995],[-59.57540279199989,-24.295880228999877],[-59.60051753799991,-24.292882994999943],[-59.610516927999925,-24.28957570399994],[-59.61772579,-24.283477884999897],[-59.63532161499995,-24.261463724999913],[-59.673639688999884,-24.22539357499991],[-60.033669392999904,-24.00700897199988],[-60.0517303069999,-24.002874857999952],[-60.07237504099992,-24.00483856199989],[-60.119297241999874,-24.020238138999968],[-60.14324926799989,-24.02519907599992],[-60.21812841899992,-24.027369486999916],[-60.296418212999896,-24.016414082999926],[-60.32801835099988,-24.017964375999952],[-60.33737178599991,-24.016414082999926],[-60.34804296899992,-24.010833027999922],[-60.367576659999905,-23.99470998099993],[-60.378351196999944,-23.988508809999942],[-60.38742041099991,-23.987165221999888],[-60.42305131099991,-23.988508809999942],[-60.484882161999906,-23.97734669999991],[-60.517722533999915,-23.955745951999944],[-60.535964314999966,-23.94758107499993],[-60.5717502439999,-23.94603078199991],[-60.57753800499998,-23.944170430999904],[-60.593583536999944,-23.912234394999928],[-60.59461706599993,-23.90654998799988],[-60.60384130899994,-23.90468963599997],[-60.621152913999936,-23.89580128999995],[-60.63215999399992,-23.89228729299991],[-60.64370967699995,-23.891357116999956],[-60.68967586299993,-23.893630879999876],[-60.69941687099989,-23.891253763999927],[-60.71985489899992,-23.87502736399992],[-60.729285849000014,-23.87213348399993],[-60.787776137999906,-23.87344515699992],[-60.81685156299999,-23.874097187999965],[-60.83762548799992,-23.871823424999945],[-60.866357584999946,-23.855907083999924],[-60.899947265999884,-23.830482279999913],[-60.936663370999945,-23.81384246799989],[-60.97482641699991,-23.824074401999965],[-61.00634903999989,-23.805470885999924],[-61.01580582699995,-23.796685892999932],[-61.03022355099998,-23.77462005599993],[-61.03624385599991,-23.76883229599987],[-61.03805253099998,-23.755396422999908],[-61.04998978699992,-23.734725850999894],[-61.06621618699995,-23.715708922999923],[-61.0925194909999,-23.701859638999878],[-61.109650227999936,-23.675608011999927],[-61.11884863299995,-23.666409606999935],[-61.10975358099998,-23.64997650099987],[-61.106239583999916,-23.627238871999893],[-61.10985693399991,-23.606981709999985],[-61.12223343999997,-23.598196715999904],[-61.13949336799996,-23.59271901399991],[-61.15445369499991,-23.580316670999935],[-61.16781205199995,-23.566570738999914],[-61.18024023399994,-23.557165628999954],[-61.18773331699996,-23.556235453999903],[-61.20768042099988,-23.557579040999954],[-61.21439835599991,-23.557165628999954],[-61.22357092299998,-23.55127451599995],[-61.24292374699988,-23.53308441199991],[-61.25194128399991,-23.529260354999874],[-61.27261185699994,-23.52357594799993],[-61.282947143999934,-23.509933369999914],[-61.28896744899995,-23.494120380999917],[-61.29695145699995,-23.481407979999872],[-61.36177954099994,-23.45474294099992],[-61.38485306799993,-23.453709411999938],[-61.39867651399999,-23.450092061999953],[-61.40872757999992,-23.44358083099989],[-61.42050980699991,-23.4336589559999],[-61.43570267799993,-23.4237370809999],[-61.45192907799995,-23.417432555999895],[-61.47030004899994,-23.414125264999896],[-61.491849121999905,-23.413195088999927],[-61.501073363999886,-23.407820739999874],[-61.51037512299993,-23.384359638999893],[-61.526343139999966,-23.37474782299998],[-61.525464639999946,-23.36472259499996],[-61.52078792399996,-23.35325042699995],[-61.51605952999998,-23.344982197999894],[-61.53396541399993,-23.344568785999897],[-61.545773478999934,-23.342605082999867],[-61.55463598599996,-23.33836761499991],[-61.605149699999885,-23.289275003999958],[-61.61961910099993,-23.28286712599993],[-61.66685136,-23.28286712599993],[-61.68031306999998,-23.279249775999943],[-61.6887621669999,-23.274495543999947],[-61.70442012499987,-23.25837249799987],[-61.71852779199988,-23.2492774449999],[-61.73299719299993,-23.2433863319999],[-61.744262654999964,-23.234808043999877],[-61.748810180999925,-23.21734141099992],[-61.749481974999895,-23.19884124699989],[-61.75227250199995,-23.187059020999897],[-61.75847367399993,-23.17744720499988],[-61.76927404899996,-23.16556162499995],[-61.78002274699989,-23.15687998499989],[-61.80265702299993,-23.144994404999863],[-61.81428421999991,-23.1351758829999],[-61.83697017499998,-23.10468678799991],[-61.84498002199992,-23.097245381999898],[-61.956446085999936,-23.034406839999917],[-61.992051147999916,-22.99812998499995],[-62.00590043099996,-22.97890635199994],[-62.00605546099991,-22.974358824999896],[-62.008949340999976,-22.96970794599993],[-62.00378169799998,-22.946350198999895],[-62.00605546099991,-22.936841735999906],[-62.01716589399993,-22.92175221799991],[-62.03582108599992,-22.884855244999883],[-62.05044551599988,-22.86449473099995],[-62.071632853999915,-22.84392751099996],[-62.080831258999915,-22.832351988999918],[-62.08460363799994,-22.82015635099991],[-62.08935786999992,-22.81994964599994],[-62.099228068999935,-22.813748473999865],[-62.10785803199988,-22.806513773999896],[-62.108788207999936,-22.802999775999936],[-62.11586787999993,-22.799795836999877],[-62.119743611999894,-22.79214772499989],[-62.12253413999995,-22.78315602699986],[-62.12615148999993,-22.77571461999993],[-62.15348832299997,-22.74780934599994],[-62.159741169999876,-22.737164000999954],[-62.164081990999925,-22.72589853899998],[-62.17079992699988,-22.71732025099996],[-62.1841841229999,-22.713702900999873],[-62.18826656099992,-22.708328552999916],[-62.175915893999864,-22.684867451999935],[-62.195036173999966,-22.67360199],[-62.194622762999956,-22.660579528999847],[-62.18764644399994,-22.638565368999963],[-62.192969116999905,-22.628230081999945],[-62.19658646699988,-22.62647308399997],[-62.202529256999895,-22.627196552999877],[-62.214931599999964,-22.62430267299989],[-62.239736287999904,-22.613760680999917],[-62.25281042499995,-22.60363210099996],[-62.252965454999895,-22.591126402999876],[-62.23885778899995,-22.573039651999864],[-62.23322505699994,-22.556296487999916],[-62.24118322799998,-22.53841644299986],[-62.26335241699991,-22.51443857799994],[-62.268830118999915,-22.512991638999935],[-62.27559973199993,-22.513508401999967],[-62.28138749199991,-22.51206146299998],[-62.283816284999965,-22.50482676199992],[-62.283609578999915,-22.493768005999925],[-62.28453975399989,-22.488703714999943],[-62.2872269289999,-22.483949482999947],[-62.29451330599997,-22.479815368999922],[-62.30572709199993,-22.47671478199989],[-62.34135696699991,-22.47226104799998],[-62.34872188399993,-22.471340433999927],[-62.36825557499992,-22.46441579199994],[-62.43807043499991,-22.419664000999887],[-62.45496862799988,-22.40385101299998],[-62.46194494699997,-22.38876149399989],[-62.470574910999915,-22.38183685299991],[-62.51072749899992,-22.370157978999927],[-62.52338822499987,-22.364886982999906],[-62.54762447099995,-22.335328063999963],[-62.564677693999975,-22.321995543999943],[-62.5882938229999,-22.316414488999925],[-62.5996109619999,-22.315174254999903],[-62.613150186999945,-22.31145355199989],[-62.62529414899986,-22.305045674999946],[-62.63268387899986,-22.295950622999964],[-62.630823526999876,-22.287682393999926],[-62.62420894399997,-22.27889739899993],[-62.620281535,-22.268458760999906],[-62.62643103099995,-22.255022887999942],[-62.61960974099992,-22.255022887999942],[-62.62482906099993,-22.24727142299994],[-62.63180537899993,-22.240760192999886],[-62.64038366799997,-22.236212666999847],[-62.65035721899997,-22.234455667999953],[-62.62751623499997,-22.184536233999907],[-62.59940425699992,-22.089865010999887],[-62.572842569999914,-22.000774840999966],[-62.52922766199995,-21.865072529999907],[-62.49279577699997,-21.751797789999927],[-62.44618363499998,-21.60689707399986],[-62.411973837,-21.50085703499994],[-62.37549027599999,-21.384481709999914],[-62.34040197799996,-21.27286061599989],[-62.30789750199992,-21.169301045999944],[-62.27570308499989,-21.066568297999936],[-62.271879027999944,-21.00093922999991],[-62.27188577399997,-21.000423652999885],[-62.27379105699995,-20.854798277999905],[-62.275031290999976,-20.758680114999976],[-62.27616817299992,-20.67072682699998],[-62.277305053999925,-20.579776305999886],[-62.268830118999915,-20.55311126699993],[-62.23239823499993,-20.50102142299997],[-62.21057310199993,-20.471305462999922],[-62.18966182499989,-20.442833760999875],[-62.144961710999944,-20.382062275999957],[-62.1002099209999,-20.321187438999914],[-62.055509806999936,-20.26041595399991],[-62.01080969299991,-20.199541116999868],[-61.994169880999976,-20.175666604999975],[-61.97758174699996,-20.151792093999887],[-61.960941935999955,-20.128020934999924],[-61.944250447999906,-20.104146422999946],[-61.93138301699991,-20.07830820699992],[-61.92473979899995,-20.06512763899987],[-61.918412231999895,-20.052573343999924],[-61.90554479999991,-20.026735127999913],[-61.892574015999884,-20.0008969109999],[-61.89252233899995,-20.0008969109999],[-61.86441035999994,-19.92741302499992],[-61.83629838099998,-19.853825784999927],[-61.80818640099994,-19.780341897999875],[-61.7800744219999,-19.706961363999923],[-61.761212524999884,-19.65776540099995],[-61.75320267799992,-19.645879821999927],[-61.73723465999987,-19.639575296999922],[-61.648222005999884,-19.62675954199993],[-61.62672460999993,-19.623658954999897],[-61.579544026999905,-19.616837666999942],[-61.532285929999965,-19.610016377999983],[-61.510840210999866,-19.606915790999935],[-61.1723595789999,-19.53746266699997],[-60.83393062399994,-19.467906188999876],[-60.49547582999988,-19.398453063999895],[-60.15699519899991,-19.328999938999928],[-60.00638423699988,-19.298097431999935],[-59.92432206299989,-19.297063903999856],[-59.73585811399997,-19.294790140999936],[-59.547497517999915,-19.292413024999888],[-59.359085245999914,-19.29013926199987],[-59.17072464999993,-19.28776214599992],[-59.08954097499989,-19.286728616999937],[-59.069645548999894,-19.291482848999934],[-59.03967321799993,-19.31163665799991],[-59.01109615099995,-19.33096364399995],[-58.96065995299995,-19.3605225619999],[-58.86743566899992,-19.415299580999967],[-58.774108032999976,-19.470076598999867],[-58.68083207199993,-19.524750263999916],[-58.58750443499988,-19.579423929999876],[-58.49428015199993,-19.634200947999958],[-58.401004190999885,-19.68887461299991],[-58.30777990799996,-19.743651631999896],[-58.214452270999914,-19.798325296999863],[-58.175281534999954,-19.82137298499991],[-58.16442948399992,-19.83294850699987],[-58.16117386899992,-19.847211201999926],[-58.16422277899995,-19.88028411799992],[-58.162207397999914,-19.912323506999925],[-58.145154175999984,-19.96958099299988],[-58.141846883999875,-20.0008969109999],[-58.14448238199989,-20.023117777999925],[-58.14313879399993,-20.065285746999887],[-58.144740762999874,-20.086163024999863],[-58.15952022399997,-20.13907969199994],[-58.15879675299999,-20.165124612999918]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Uruguay","sov_a3":"URY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uruguay","adm0_a3":"URY","geou_dif":0,"geounit":"Uruguay","gu_a3":"URY","su_dif":0,"subunit":"Uruguay","su_a3":"URY","brk_diff":0,"name":"Uruguay","name_long":"Uruguay","brk_a3":"URY","brk_name":"Uruguay","brk_group":null,"abbrev":"Ury.","postal":"UY","formal_en":"Oriental Republic of Uruguay","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uruguay","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":10,"pop_est":3494382,"gdp_md_est":43160,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"UY","iso_a2":"UY","iso_a3":"URY","iso_n3":"858","un_a3":"858","wb_a2":"UY","wb_a3":"URY","woe_id":23424979,"woe_id_eh":23424979,"woe_note":"Exact WOE match as country","adm0_a3_is":"URY","adm0_a3_us":"URY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"URY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-56.90636673999998,-30.108548685999907],[-56.869211384999886,-30.10296763099998],[-56.83128088499998,-30.102037454999927],[-56.795159057999875,-30.12384491],[-56.77660721899994,-30.150923359999922],[-56.766995401999935,-30.161362],[-56.70477697799992,-30.198362324999906],[-56.67374528,-30.21128143299992],[-56.656821248999904,-30.221306660999943],[-56.641783406999906,-30.233915709999877],[-56.6325850019999,-30.24745493499995],[-56.629277709999904,-30.267712096999944],[-56.632429972999944,-30.27815073699989],[-56.631344766999966,-30.28466196699986],[-56.61540258799994,-30.29334360699991],[-56.605196492999966,-30.29561736999993],[-56.59561051399996,-30.295410664999878],[-56.5858178309999,-30.296547545999882],[-56.575017455999955,-30.302438659999982],[-56.569617268999906,-30.3080197149999],[-56.56078059899999,-30.320525410999906],[-56.52375443599993,-30.357319029999896],[-56.51130041499994,-30.366000671999956],[-56.494557251,-30.37933319099997],[-56.44127884999991,-30.408788756999883],[-56.42463903899991,-30.423568216999897],[-56.400454467999936,-30.458914896999897],[-56.38598506699989,-30.475761413999887],[-56.37260087099994,-30.485889993999933],[-56.32653133199994,-30.50831756599993],[-56.267956095999914,-30.551105651999944],[-56.235089884999894,-30.565368346999932],[-56.21509110499997,-30.581904805999923],[-56.18351680599997,-30.614564310999892],[-56.177832397999936,-30.625519713999967],[-56.17517106199992,-30.63606170699994],[-56.17080440299992,-30.64577687599997],[-56.15964229399989,-30.653941751999895],[-56.14031530799994,-30.66479380199985],[-56.13168534399992,-30.67192514999988],[-56.12504492199991,-30.680296731999945],[-56.09189449099998,-30.7361072799999],[-56.07685664899992,-30.75233367899993],[-56.01135677099992,-30.798222350999893],[-55.99531123899996,-30.82581756599998],[-55.98895503799991,-30.855789896999937],[-55.993864298999966,-30.885452167999897],[-56.01135677099992,-30.912633971999878],[-56.015516723999944,-30.93433807399988],[-56.01634354699988,-30.999863789999978],[-56.02238968899991,-31.045545755999896],[-56.022182983999954,-31.067146504999865],[-56.01701787399988,-31.07429629899993],[-56.01135677099992,-31.0821326699999],[-56.00987402099989,-31.081945497999897],[-55.9851568199999,-31.078825378999937],[-55.91934688399991,-31.08244272899992],[-55.88818599399994,-31.07696502699993],[-55.86425980699994,-31.07675832099997],[-55.8545963139999,-31.07458791099989],[-55.846586465999934,-31.069316914999945],[-55.84214229399992,-31.063942564999888],[-55.83839575199991,-31.05815480599992],[-55.832478800999915,-31.05174692799997],[-55.77814103199995,-31.020431009999882],[-55.76359411699988,-31.008442076999913],[-55.75550675499999,-30.992939147999902],[-55.74488724799991,-30.958625996999967],[-55.73189062499998,-30.945396829999893],[-55.71274450699988,-30.943433125999945],[-55.688301554999924,-30.947773945999927],[-55.66582230599993,-30.94932423899986],[-55.65274816899998,-30.93898895299994],[-55.65106868499993,-30.91997202499988],[-55.65458268299997,-30.87873423299987],[-55.64967342099993,-30.86095753999994],[-55.63404130099988,-30.847625019999924],[-55.61290563999995,-30.843387552999953],[-55.59187333199992,-30.84834849099991],[-55.56386470499993,-30.876460469999955],[-55.52748449699993,-30.89454722099987],[-55.511309773999955,-30.90612274199991],[-55.4890889079999,-30.929687194999914],[-55.44258011899987,-30.965550638999954],[-55.36857946799994,-31.037380878999965],[-55.35385168499997,-31.05629445399991],[-55.3484256589999,-31.072727559999887],[-55.344963338999946,-31.108487649999898],[-55.33803869699997,-31.125644225999864],[-55.32692826299996,-31.134945983999984],[-55.29370031699991,-31.15365285199997],[-55.282228149999895,-31.169052429999866],[-55.26874060099993,-31.21060028099994],[-55.25998144599995,-31.22868703199995],[-55.24434932499992,-31.24460337299989],[-55.227554484999956,-31.2534917199999],[-55.18828039599998,-31.2665141799999],[-55.169625203999914,-31.276436055999923],[-55.12223791499994,-31.313539732999914],[-55.10244584199995,-31.32428843099993],[-55.08725297099991,-31.32676889999991],[-55.07425634799998,-31.320567727999915],[-55.061104695999916,-31.30485809299995],[-55.04234615099992,-31.272611998999892],[-55.029375366999915,-31.268787942999946],[-55.01149532099993,-31.2878048699999],[-54.99534643599995,-31.311782734999937],[-54.96963741099995,-31.34082488999992],[-54.94080196099992,-31.36562957799987],[-54.90028763899991,-31.38206268299993],[-54.88780777999994,-31.393224792999955],[-54.87615474499995,-31.40635060599993],[-54.8633648279999,-31.41761606899989],[-54.84990311699994,-31.42505747499992],[-54.819775756999945,-31.43528940799989],[-54.654126952999945,-31.45575327499995],[-54.61968461099988,-31.45564992199992],[-54.604543416999974,-31.45978403799994],[-54.591520955999925,-31.471049498999903],[-54.57384761599994,-31.502468769999933],[-54.56237544799992,-31.515904641999896],[-54.50966548699998,-31.552284850999886],[-54.495041056999916,-31.565617369999895],[-54.483155477999894,-31.583910827999972],[-54.47896968699996,-31.60148081399994],[-54.47736771699991,-31.64209848999988],[-54.46722070599995,-31.664237422999886],[-54.4637251389999,-31.671864115999966],[-54.43649165799991,-31.694291686999875],[-54.403677124999966,-31.714652200999893],[-54.3734980879999,-31.738940123999893],[-54.34295731699989,-31.769325865999942],[-54.27422766199993,-31.823379414999934],[-54.21877884899996,-31.856659036999886],[-54.16958288599997,-31.89593312499994],[-54.146276814999965,-31.909885762999938],[-54.13506302899992,-31.90895558699989],[-54.12550288999992,-31.898516947999948],[-54.107312784999976,-31.88394419299989],[-54.08845088699994,-31.878156432999912],[-54.0688138429999,-31.879913431999896],[-54.049745239999936,-31.887148131999968],[-54.03264033999997,-31.898103535999933],[-54.02664587399994,-31.904821471999863],[-54.01770585099993,-31.919600931999877],[-54.008714152999886,-31.926525573999864],[-53.998895630999925,-31.929729511999938],[-53.96597774299997,-31.9325200399999],[-53.94876949099997,-31.936964212999897],[-53.93435176699998,-31.942545267999922],[-53.905826375999936,-31.959288431999962],[-53.89414750199995,-31.970140482999906],[-53.88975500499995,-31.980372415999895],[-53.88727453599998,-31.990500996999938],[-53.88143509999989,-32.001249694999956],[-53.87109981299997,-32.01148162799994],[-53.85807735199995,-32.02119679699989],[-53.83043046099993,-32.03644134499993],[-53.771829386999904,-32.047086689999915],[-53.75730830999996,-32.055044860999885],[-53.75136551899996,-32.068790791999916],[-53.750021931999896,-32.10403411899989],[-53.72144486499994,-32.16242848699996],[-53.670595256,-32.226403909999945],[-53.65855464699993,-32.25430918399992],[-53.6518367109999,-32.28831227599995],[-53.648684448999944,-32.33864512099994],[-53.64387853999994,-32.35559499099995],[-53.63478348899989,-32.36872080499991],[-53.609307006999956,-32.387841084999906],[-53.598920043999925,-32.3999333699999],[-53.581970174999924,-32.42577158599991],[-53.561299601999906,-32.44954274499987],[-53.537631795999886,-32.470213317999885],[-53.47463822399996,-32.508247171999926],[-53.415623738999926,-32.56416107199992],[-53.35908972199988,-32.580284117999895],[-53.31604325399988,-32.602711689999886],[-53.299093383999974,-32.60715586399989],[-53.26689896699992,-32.60736256899994],[-53.233722697999916,-32.62462249699985],[-53.201476603999936,-32.637231546999956],[-53.18612870399996,-32.64674001099986],[-53.119776164999934,-32.707408141999935],[-53.110836141999926,-32.7223943069999],[-53.11404008,-32.74058441099994],[-53.12685583499987,-32.75484710699992],[-53.163081013999914,-32.77872161899991],[-53.18283631199994,-32.79990410499991],[-53.2038537199999,-32.82243987999989],[-53.270826374999984,-32.863781026999916],[-53.29883500199989,-32.88910247799989],[-53.306999877999914,-32.907189229999915],[-53.30958369999993,-32.9443962599999],[-53.31630163599993,-32.96268971799989],[-53.32730871699994,-32.973645121999965],[-53.449110066999935,-33.042064716999874],[-53.48331986499991,-33.06728281599992],[-53.511535196999965,-33.09921885199989],[-53.511586872999914,-33.09932220499992],[-53.5116385499999,-33.09942555699986],[-53.52066175999991,-33.12497899199994],[-53.53685664899987,-33.17084238699995],[-53.53613317899996,-33.2446363319999],[-53.51401566599995,-33.39491139699993],[-53.53680497199994,-33.55986256899986],[-53.53964717599993,-33.649262796999935],[-53.511535196999965,-33.6902938839999],[-53.491071329999926,-33.6902938839999],[-53.47319128399996,-33.68740000399991],[-53.45670650299991,-33.687503356999926],[-53.44042842699989,-33.69711517399995],[-53.43081660999988,-33.71344492599988],[-53.42363358599991,-33.73101491299987],[-53.411282918999945,-33.74228037499992],[-53.37909456936376,-33.74067597244537],[-53.39635169199991,-33.75058359199993],[-53.41478430899994,-33.76441822699992],[-53.45091712099988,-33.801527601999936],[-53.47305253799993,-33.834567966999984],[-53.485585089999944,-33.86931731599993],[-53.505523240999935,-33.95232512799993],[-53.524647589999915,-34.002373955999936],[-53.5299373039999,-34.04810963299987],[-53.53945878799988,-34.062432549999954],[-53.57445227799988,-34.08269622199995],[-53.5912166009999,-34.0954729149999],[-53.63996334499993,-34.14763762799992],[-53.69359290299991,-34.181735934999935],[-53.711008266999976,-34.198825778999975],[-53.74665279899992,-34.25741952899993],[-53.755970831999974,-34.26767343499995],[-53.75829016799994,-34.27849700299994],[-53.77989661399994,-34.336032809999935],[-53.763661261999886,-34.372491143999895],[-53.764881964999915,-34.39039478999986],[-53.80577551999994,-34.40097421699991],[-53.89830481699994,-34.443942966999956],[-53.97223873599992,-34.487237237999935],[-54.124623175999936,-34.61044687299993],[-54.13678951699995,-34.623955987999906],[-54.14093990799998,-34.64104583099994],[-54.14049231699988,-34.65642669099989],[-54.14590410099993,-34.667575778999904],[-54.23680579299988,-34.68450286299989],[-54.259673631999895,-34.68596770599994],[-54.25560462099995,-34.67750416499991],[-54.249501105999855,-34.670993747999916],[-54.23232988199993,-34.6581356749999],[-54.23932857999992,-34.653090101999865],[-54.245676235999944,-34.64690520599989],[-54.250477667999945,-34.63933684699994],[-54.25283769399988,-34.630791924999926],[-54.25121008999985,-34.6183407529999],[-54.241078253999916,-34.594008070999934],[-54.23859615799997,-34.58977629999991],[-54.25328528599988,-34.57756926899994],[-54.28034420499991,-34.56796640399996],[-54.30894934799991,-34.562188408999894],[-54.32860266799985,-34.561781507999896],[-54.31737219999985,-34.568617445999905],[-54.28014075399997,-34.58228932099995],[-54.28815670499992,-34.594821872999944],[-54.30443274599995,-34.608575127999956],[-54.323109503999916,-34.61939869599986],[-54.338490363999966,-34.623955987999906],[-54.344634568999936,-34.63062916499986],[-54.34479732999991,-34.644219658999916],[-54.33739173099991,-34.654717705999886],[-54.32115637899997,-34.65252044099989],[-54.32258053299995,-34.64470794099991],[-54.307687954999885,-34.64739348799988],[-54.28921464799986,-34.66025155999991],[-54.28014075399997,-34.682305596999896],[-54.28807532499994,-34.69500090899995],[-54.306467251999976,-34.707696221999925],[-54.530791795999875,-34.80689869599988],[-54.54206295499995,-34.81178150799994],[-54.6041560539999,-34.82642994599995],[-54.63646399599992,-34.848809502999956],[-54.65689042899987,-34.856622002999956],[-54.69945227799994,-34.86744557099986],[-54.872710740999935,-34.93621184699993],[-54.893706834999875,-34.939222914999945],[-54.913726365999935,-34.9452450499999],[-54.93932044199991,-34.96990325299994],[-54.958607550999936,-34.973402601999936],[-54.953968878999916,-34.96331145599995],[-54.95181230399993,-34.9569638],[-54.95177161399994,-34.95289478999989],[-54.96222896999993,-34.93962981599995],[-54.975738084999904,-34.92848072699992],[-54.99356035099987,-34.92099374799996],[-55.03307044199991,-34.916761976999936],[-55.03547115799995,-34.912855726999936],[-55.03453528599988,-34.90650807099992],[-55.041127081999946,-34.897637627999956],[-55.05125891799992,-34.89137135199992],[-55.06037350199992,-34.887790622999944],[-55.08214270699997,-34.88396575299993],[-55.129790818999936,-34.885918877999885],[-55.22175045499995,-34.90374114399995],[-55.260243292999945,-34.897637627999956],[-55.28648841099988,-34.876234632999925],[-55.338286912999905,-34.818780205999914],[-55.376942511999935,-34.801446221999925],[-55.40192623599995,-34.79998137799995],[-55.46820360799998,-34.79540215299997],[-55.50963582199989,-34.799064531999946],[-55.56117305499987,-34.787834173999954],[-55.60179446399988,-34.77241464899993],[-55.646730843999904,-34.78109997799993],[-55.69344767599992,-34.76474114699997],[-55.75650301499991,-34.78266635899995],[-55.792050812999946,-34.774133854999974],[-55.858786482999875,-34.793060669999946],[-55.889101437999926,-34.80347481799991],[-55.954431525999894,-34.83940229199992],[-56.004051819999916,-34.86910175799994],[-56.06963449299991,-34.90100253399993],[-56.10519841799995,-34.8984161289999],[-56.13563268999994,-34.91282873699993],[-56.149891730999876,-34.920342705999914],[-56.15608835099993,-34.94118826299993],[-56.17728986599991,-34.916324502999984],[-56.19450992799997,-34.91350868799988],[-56.21300164399992,-34.907693230999925],[-56.20466061099998,-34.89869557099992],[-56.20345465699995,-34.887502625999915],[-56.2145891639999,-34.8795878859999],[-56.230550958999885,-34.87774999899997],[-56.23650847099995,-34.89288421099995],[-56.25633704299992,-34.9061825499999],[-56.265823667999875,-34.90626615199997],[-56.28797603899994,-34.90348919599998],[-56.311268683999906,-34.9061825499999],[-56.34276282499994,-34.88396575299993],[-56.4029434889999,-34.854750257999896],[-56.41844641799992,-34.84303150799991],[-56.42076575399997,-34.828220309999935],[-56.40375055599989,-34.81605142099991],[-56.38684753399994,-34.801870234999924],[-56.361281585999905,-34.79663604999992],[-56.37611966099987,-34.782729245999896],[-56.39573833799989,-34.77588006599994],[-56.448432032999904,-34.75827246199988],[-56.48508775499993,-34.75354986399992],[-56.52044438899989,-34.75482088499993],[-56.541900193999936,-34.76702239399989],[-56.55801347599993,-34.76506926899994],[-56.57359778599991,-34.758965752999956],[-56.61095130099997,-34.739434502999885],[-56.628529425999886,-34.73259856599994],[-56.64636207799992,-34.72264151799988],[-56.71354449299988,-34.70703725399993],[-56.79528944499992,-34.69849235399991],[-56.873890753999916,-34.670179945999905],[-56.890695766999926,-34.6600888],[-56.904164191999904,-34.63551197699992],[-56.91974850199989,-34.62322356599988],[-56.95287024599995,-34.60344817499993],[-56.97657717699991,-34.58104557399989],[-56.997417070999916,-34.56406881499997],[-57.01578753199993,-34.55209148499999],[-57.042717102999944,-34.5381248499999],[-57.05742538599991,-34.527127071999885],[-57.05589758999989,-34.51344166499989],[-57.0624080069999,-34.50652434699988],[-57.077015753999916,-34.498142184999914],[-57.083159959999875,-34.49358489399988],[-57.10195878799993,-34.47584400799988],[-57.120025193999936,-34.46298593499995],[-57.15196415799991,-34.45093220299995],[-57.203198013999916,-34.44207349299991],[-57.292158428999926,-34.44033264899993],[-57.346941661999885,-34.443459326999914],[-57.3651999219999,-34.43044041099991],[-57.411428258999905,-34.431505619999925],[-57.436973813999934,-34.4445755629999],[-57.449130182999916,-34.43153807199987],[-57.47466288499987,-34.42954124999993],[-57.50263528199991,-34.440582482999915],[-57.53791369999993,-34.45361368799986],[-57.569475453999964,-34.42650397499999],[-57.5949972249999,-34.425472969999944],[-57.624177455999956,-34.43045196199996],[-57.66432357799997,-34.445437727999916],[-57.72030011399988,-34.46337320299993],[-57.73853539199985,-34.46131766899994],[-57.764114822999936,-34.47429458499994],[-57.79330204399985,-34.47219671799991],[-57.822509555999936,-34.47510857199997],[-57.855354161999884,-34.470967084999955],[-57.84558468399987,-34.46297908699992],[-57.85404767099997,-34.447881645999885],[-57.8820192039999,-34.4407241699999],[-57.900189818999934,-34.41652468099994],[-57.89759955999994,-34.37633881199993],[-57.92275956899987,-34.35369231599995],[-57.94273841099996,-34.326267184999985],[-58.0169164699999,-34.25310637799993],[-58.04979407499989,-34.24000416499986],[-58.06139075399989,-34.22470468499991],[-58.07697506399998,-34.19198984199997],[-58.094593878999916,-34.17782968499995],[-58.11937415299988,-34.16920338299994],[-58.14590410099992,-34.16513437299997],[-58.16909745999987,-34.1639950499999],[-58.196197068999915,-34.15943775799991],[-58.20872962099988,-34.14763762799992],[-58.220326300999915,-34.11003997199994],[-58.23184160099996,-34.08879973799995],[-58.316517706999946,-33.98650481599992],[-58.334828253999916,-33.97332122199988],[-58.37242591099991,-33.95435963299987],[-58.38882402299993,-33.94207122199991],[-58.402699347999906,-33.92278411299988],[-58.410023566999904,-33.90227629999991],[-58.43464107999991,-33.784926039999874],[-58.43936113199993,-33.69850025799988],[-58.425770636999886,-33.612888278999975],[-58.42902584499992,-33.592054945999905],[-58.43504798099991,-33.57236093499996],[-58.43834387899994,-33.55144622199991],[-58.43321692599994,-33.527764580999886],[-58.419585740999906,-33.50823333099991],[-58.3853653639999,-33.47031015399997],[-58.378570115999906,-33.448663018999895],[-58.384877081999946,-33.42913176899991],[-58.41258704299992,-33.40960051899994],[-58.418934699999845,-33.389906507999896],[-58.41258704299992,-33.37167734199991],[-58.397206183999884,-33.35564544099992],[-58.36119544199992,-33.32577890399993],[-58.35073808499993,-33.30575937299996],[-58.349232550999886,-33.282810153999975],[-58.366037563999896,-33.196058851999865],[-58.36693274599989,-33.15374114399994],[-58.35138912699997,-33.121677341999956],[-58.31029212099988,-33.10881926899994],[-58.21735592399991,-33.113539320999855],[-58.17442786399994,-33.11044687299995],[-58.13776607999992,-33.09514739399991],[-58.10016842399991,-33.06560637799994],[-58.08372962099992,-33.047539971999925],[-58.07697506399998,-33.03069426899992],[-58.07530676999996,-33.00750090899989],[-58.07066809799994,-32.98951588299995],[-58.0558162099999,-32.95183684699988],[-58.04849199099988,-32.91171640399995],[-58.05711829299989,-32.88176848799989],[-58.07721920499993,-32.85784270599993],[-58.12047278599994,-32.81926848799995],[-58.13076738199994,-32.8026669249999],[-58.1361384759999,-32.78435637799993],[-58.13776607999992,-32.763441664999874],[-58.135853644999976,-32.7183570289999],[-58.1376847,-32.69557057099988],[-58.1451716789999,-32.67815520599991],[-58.13776607999992,-32.670668226999936],[-58.14622962099986,-32.64495208099989],[-58.1572159499999,-32.57512786299995],[-58.16909745999987,-32.56080494599987],[-58.1771134109999,-32.54501718499992],[-58.19741777299993,-32.469821872999916],[-58.20010331899991,-32.447198174999954],[-58.20011185209165,-32.4471299123439],[-58.1997244879999,-32.44478851299988],[-58.18995764199994,-32.433936461999934],[-58.16494624899993,-32.38949472999986],[-58.101590942999934,-32.31135996499992],[-58.09652665299995,-32.28097422299987],[-58.10691361499997,-32.251828714999945],[-58.175229858999955,-32.17410736099992],[-58.18654699699994,-32.15292002399988],[-58.18086258999997,-32.13245615599992],[-58.15879675299999,-32.101553648999925],[-58.148306437999935,-32.06289967799992],[-58.14530920399991,-32.01788950599989],[-58.14902990699995,-31.975204772999884],[-58.15879675299999,-31.94388885499997],[-58.190319376999945,-31.913296406999873],[-58.202618367999975,-31.893142597999894],[-58.1960037849999,-31.872575377999908],[-58.168615274999944,-31.846013691999886],[-58.15285396399988,-31.835988464999954],[-58.1308398029999,-31.82782358799994],[-58.08345251499991,-31.819762063999857],[-58.05926794399994,-31.811493834999904],[-58.04888098199992,-31.797127786999905],[-57.98862626099994,-31.642821960999882],[-57.979582885999974,-31.59879363999991],[-57.98681758599994,-31.554145202999887],[-58.013327596999936,-31.52561981199993],[-58.03897801099989,-31.508637468999908],[-58.05079300899993,-31.500815124999903],[-58.07523596199988,-31.475183613999928],[-58.06257523599992,-31.444281107999927],[-58.043558308999955,-31.43063852999992],[-58.00593786599995,-31.4110014849999],[-57.990228230999975,-31.399322611999924],[-57.980513061999936,-31.380512389999907],[-57.975552123999904,-31.335140481999883],[-57.96635371899989,-31.314573261999982],[-57.959480753999934,-31.3079586789999],[-57.94299597199995,-31.29679656999987],[-57.93560624199994,-31.29028533899989],[-57.91483231599999,-31.252458190999917],[-57.905117146999935,-31.240986022999902],[-57.90501379399993,-31.21504445399995],[-57.911731730999946,-31.170602721999966],[-57.89901932799998,-31.126471048999885],[-57.873749552999925,-31.093088073999905],[-57.8552493899999,-31.05898162799994],[-57.863310913999975,-31.012266133999944],[-57.905478881999954,-30.95883270199994],[-57.911731730999946,-30.947360534999916],[-57.903980265999934,-30.929687194999914],[-57.88532507299996,-30.91883514399996],[-57.84279536999991,-30.90922332699995],[-57.819644327999924,-30.911600442999895],[-57.80724198499987,-30.9075696819999],[-57.801867635,-30.8924801629999],[-57.79613155099994,-30.868398945999957],[-57.7949946699999,-30.85796030699993],[-57.79602819899991,-30.816205748999977],[-57.79939710199994,-30.791460706999896],[-57.801867635,-30.77331430999993],[-57.808659168999974,-30.747331216999907],[-57.81788732999987,-30.712026061999964],[-57.82620723499992,-30.68970184299991],[-57.848531453999975,-30.64794728599988],[-57.863310913999975,-30.62862029999991],[-57.885790160999896,-30.589862975999978],[-57.88976924699997,-30.550795592999876],[-57.87710852099993,-30.514828795999904],[-57.849616658999956,-30.485269877999958],[-57.652729451999875,-30.329103698999926],[-57.6310770259999,-30.29706430999992],[-57.62373897299992,-30.258100280999937],[-57.637949991999875,-30.21510548899995],[-57.64244584199988,-30.193091328999884],[-57.633970906999984,-30.18358286499989],[-57.61169836499993,-30.182962747999923],[-57.58684200099989,-30.20404673199995],[-57.567463338999914,-30.25634328199996],[-57.53599239099995,-30.274430033999877],[-57.510980997999944,-30.276703796999897],[-57.46721105999998,-30.269882506999934],[-57.443129842999916,-30.26946909599992],[-57.42979732299992,-30.275463561999867],[-57.414811156999946,-30.295720722999956],[-57.399256550999915,-30.29913136799989],[-57.389386352999935,-30.294893900999934],[-57.366597045999924,-30.277220560999936],[-57.35383296799998,-30.2719495649999],[-57.33429927599988,-30.272673033999908],[-57.32174190299994,-30.279804381999934],[-57.31099320499993,-30.28827931699993],[-57.296472126999895,-30.29334360699991],[-57.2886173099999,-30.29075978599991],[-57.27621496599996,-30.277737324999872],[-57.27037552899989,-30.27515350299997],[-57.26246903499995,-30.27866750099993],[-57.25006669199987,-30.29044972699992],[-57.2450540769999,-30.29334360699991],[-57.21260127799991,-30.28734914099989],[-57.183714152999954,-30.2675053909999],[-57.16381872599993,-30.239290059999927],[-57.158341023999945,-30.20787078799989],[-57.15084794199993,-30.182342630999955],[-57.12955725099994,-30.149993183999868],[-57.102272094999925,-30.12115773599993],[-57.07710567299998,-30.10606821699993],[-57.067235473999915,-30.106791686999923],[-57.048528605999905,-30.11454315199994],[-57.037883260999934,-30.11464650499995],[-57.018297892999975,-30.105758158999947],[-57.01126989799991,-30.103484394999924],[-56.974579630999926,-30.097489928999906],[-56.95452917499997,-30.096869811999937],[-56.90636673999998,-30.108548685999907]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Venezuela","sov_a3":"VEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Venezuela","adm0_a3":"VEN","geou_dif":0,"geounit":"Venezuela","gu_a3":"VEN","su_dif":0,"subunit":"Venezuela","su_a3":"VEN","brk_diff":0,"name":"Venezuela","name_long":"Venezuela","brk_a3":"VEN","brk_name":"Venezuela","brk_group":null,"abbrev":"Ven.","postal":"VE","formal_en":"Bolivarian Republic of Venezuela","formal_fr":"República Bolivariana de Venezuela","note_adm0":null,"note_brk":null,"name_sort":"Venezuela, RB","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":1,"mapcolor13":4,"pop_est":26814843,"gdp_md_est":357400,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"VE","iso_a2":"VE","iso_a3":"VEN","iso_n3":"862","un_a3":"862","wb_a2":"VE","wb_a3":"VEN","woe_id":23424982,"woe_id_eh":23424982,"woe_note":"Exact WOE match as country","adm0_a3_is":"VEN","adm0_a3_us":"VEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"VEN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.39027141599987,8.580580853000143],[-61.369863965999876,8.571331386000082],[-61.34435088399993,8.573009216000088],[-61.31460259899995,8.571314151000166],[-61.30526326899985,8.552818554000082],[-61.30442238299992,8.536009002000142],[-61.302737306999944,8.514990475000118],[-61.290848432999894,8.50237095300011],[-61.27640426399993,8.496478163000148],[-61.26026411199984,8.486377083000164],[-61.259425508999925,8.472074035000132],[-61.26368803799991,8.456088496000147],[-61.276442879999905,8.450201880000165],[-61.29343794399992,8.456939487000128],[-61.317223413999926,8.475457410000118],[-61.32570680899991,8.494808830000139],[-61.33844429599989,8.509952477000084],[-61.365634630999885,8.509972194000127],[-61.40050395199992,8.508283828000131],[-61.43368759199993,8.514154007000085],[-61.45412019199994,8.530957661000073],[-61.46858495899997,8.541046091000084],[-61.48986341199991,8.55113244600011],[-61.50859634699992,8.55280763500015],[-61.54011635099993,8.565410528000113],[-61.53584747899987,8.575509178000075],[-61.51539728199989,8.57299485700014],[-61.47623033199988,8.567118394000119],[-61.43876942099993,8.568810347000124],[-61.41578787199992,8.58226482100011],[-61.39027141599987,8.580580853000143]]],[[[-60.992543097999935,8.576727606000176],[-61.00568600199992,8.553534247000144],[-61.02769934799991,8.543117580000157],[-61.05064856699991,8.555487372000101],[-61.05199133999989,8.541937567000131],[-61.043771938999896,8.528631903000116],[-61.04157467399991,8.518540757000139],[-61.1263728509999,8.507066148000192],[-61.23281816299993,8.516058661000116],[-61.27037512899994,8.51455312700007],[-61.259429490999906,8.536851304000109],[-61.246083136999886,8.557277736000088],[-61.22760982999995,8.571600653000159],[-61.201486782999886,8.57599518400015],[-61.180246548999925,8.569647528000118],[-61.148182745999954,8.543850002000099],[-61.1263728509999,8.534369208000086],[-61.13817298099985,8.550685940000108],[-61.14000403599994,8.551743882000068],[-61.13784745999993,8.559759833000115],[-61.133168097999906,8.565375067000103],[-61.12852942599989,8.569281317000105],[-61.1263728509999,8.572577216000141],[-61.09845943899995,8.60268789300008],[-61.086740688999946,8.606838283000116],[-61.02179928299997,8.610988674000154],[-61.01646887899992,8.610093492000159],[-61.01097571499988,8.608058986000131],[-61.00772050699993,8.60590241100013],[-61.00373287699995,8.60398997600008],[-60.99600175699996,8.60268789300008],[-60.992543097999935,8.576727606000176]]],[[[-60.67875695899996,8.69316706800008],[-60.66602201399991,8.68641794000014],[-60.63541098599995,8.68718918400019],[-60.6116108779999,8.683771178000171],[-60.60484456899989,8.67115049700007],[-60.60828853099991,8.654354408000088],[-60.617677110999914,8.636722733000068],[-60.63213511699991,8.633391557000138],[-60.65083410999995,8.63427060100014],[-60.67377153699993,8.641887719000124],[-60.69417239099991,8.64277061400017],[-60.71373770999988,8.637763759000151],[-60.73584481099991,8.636966033000135],[-60.757100672999854,8.637844547000086],[-60.77157084999997,8.631144078000174],[-60.790279934999944,8.631175717000119],[-60.808134479999914,8.632888276000159],[-60.809813764999966,8.642141443000156],[-60.79787763199994,8.656413876000144],[-60.78678239899992,8.674889663000101],[-60.77312928899993,8.69672022700017],[-60.76033258899994,8.71770775100012],[-60.745023913999916,8.719358815000135],[-60.72716218199986,8.721844549000181],[-60.7143811109999,8.734424935000149],[-60.69735372899989,8.744474456000134],[-60.683719728999876,8.757891580000134],[-60.67605593799993,8.762917274000117],[-60.67181168199994,8.759546953000054],[-60.67693730399995,8.748633526000091],[-60.687181683999874,8.73016589000018],[-60.68722529499985,8.709995234000147],[-60.67875695899996,8.69316706800008]]],[[[-60.728084565999886,8.878516473000133],[-60.73759805799995,8.866613498000092],[-60.73158261799995,8.858086618000142],[-60.71779482999992,8.852949484000177],[-60.71352477699995,8.835058079000163],[-60.71096389199988,8.823980968000155],[-60.6980484959999,8.81117904900016],[-60.6860428859999,8.789014680000093],[-60.69899416799989,8.777972864000063],[-60.72402223199995,8.762701467000113],[-60.7481626919999,8.760202839000144],[-60.76973496699992,8.741511392000106],[-60.78356747699994,8.71513966400009],[-60.79911191199991,8.69387917200011],[-60.80689574499993,8.672588730000143],[-60.82760428999998,8.651323661000148],[-60.846576004999946,8.637715260000135],[-60.88448476499991,8.635226289000158],[-60.92065845899986,8.639546060000086],[-60.947372049999835,8.634470945000187],[-60.96891464599988,8.62939514200015],[-61.00335366499985,8.639670676000094],[-61.05420719399993,8.638842688000153],[-61.093874137999904,8.633744133000093],[-61.11201351999993,8.623504618000112],[-61.13016616599986,8.609847085000112],[-61.14227043199986,8.602158043000117],[-61.15264592799991,8.596175548000105],[-61.169914750999936,8.5953135930001],[-61.176799951999925,8.603848377000176],[-61.17416561499993,8.62432984900009],[-61.17154765899995,8.637980656000153],[-61.1697697599999,8.663570018000186],[-61.167108220999886,8.699385415000151],[-61.154981475999904,8.722399798000126],[-61.12643995399992,8.756478098000159],[-61.09534312499994,8.779460746000069],[-61.05996897299988,8.798163462000074],[-61.03151540399991,8.808349378000159],[-60.99702943499989,8.82107789600012],[-60.973764236999955,8.824451649000109],[-60.95136115099987,8.827825132000072],[-60.904834799999975,8.8337143440001],[-60.88328907799985,8.840489143000113],[-60.87206103499994,8.85749383300012],[-60.861699455999904,8.870245144000107],[-60.83154095699992,8.870194079000143],[-60.77810632899988,8.870097702000166],[-60.75652808099991,8.882828685000149],[-60.732365478999895,8.892149504000159],[-60.728084565999886,8.878516473000133]]],[[[-61.06773841099993,8.828070380000113],[-61.09162350199992,8.822414455000128],[-61.035267706999974,8.863185940000093],[-61.01671301999996,8.880316473000121],[-60.9828181629999,8.930161851000094],[-60.97134355399996,8.963324286000116],[-60.961293097999885,8.973130601000136],[-60.948841925999965,8.981146552000098],[-60.93765214799995,8.990627346000096],[-60.93370520699997,9.000881252000127],[-60.93492591099987,9.009833075000145],[-60.93325761599987,9.018744208000086],[-60.92027747299988,9.028469143000137],[-60.89757239499993,9.033392645000106],[-60.875477667999945,9.027980861000145],[-60.85533606699991,9.015814520000077],[-60.83836829299994,9.000555731000105],[-60.859283006999895,8.994696356000146],[-60.86571204299991,8.994330145000134],[-60.85081946499985,8.970648505000113],[-60.86497962099989,8.94122955900012],[-60.891672329999885,8.914374091000141],[-60.93358313699992,8.883937893000095],[-61.06773841099993,8.828070380000113]]],[[[-60.85533606699991,9.069647528000102],[-60.85887610599988,9.061957098000093],[-60.85887610599988,9.069403387000165],[-60.86656653599991,9.051743882000054],[-60.875640428999894,9.043646552000126],[-60.88927161399993,9.041408596000139],[-60.91071529899989,9.041489976000122],[-60.9270727199999,9.036851304000095],[-60.942982550999915,9.025824286000145],[-61.02708899599986,8.948675848000107],[-61.03221594999987,8.93988678600013],[-61.03844153599994,8.91986725500007],[-61.043812628999895,8.91176992400014],[-61.07713782499987,8.893133856000146],[-61.085438605999855,8.890692450000117],[-61.09658769399987,8.900580145000134],[-61.09288489499994,8.920070705000128],[-61.083729620999854,8.942938544000128],[-61.078521287999955,8.962958075000103],[-61.06932532499989,8.978827216000127],[-61.04751542899993,8.987290757000068],[-61.022124803999894,8.993068752000127],[-61.002268032999886,9.000555731000105],[-60.98412024599992,9.018947658000144],[-60.94688880099992,9.06610748900013],[-60.93081620999993,9.075628973000121],[-60.90636145699988,9.077704169000143],[-60.852040167999895,9.096136786000088],[-60.852040167999895,9.086737372000144],[-60.85309811099992,9.077948309000178],[-60.85533606699991,9.069647528000102]]],[[[-60.86245683499996,9.12592194200009],[-60.87315833199988,9.110419012000165],[-60.87315833199988,9.116603908000144],[-60.88971920499995,9.098578192000119],[-60.939686652999875,9.082098700000131],[-60.961293097999885,9.069403387000165],[-60.943837042999924,9.103989976000065],[-60.94229081899987,9.136623440000108],[-60.93675696499985,9.164618231000132],[-60.90729732999998,9.1854922550001],[-60.87214107999991,9.19476959800015],[-60.853342251999976,9.194037177000126],[-60.845204230999855,9.182359117000118],[-60.847482876999926,9.163031317000103],[-60.853586391999926,9.143866278000132],[-60.86245683499996,9.12592194200009]]],[[[-60.72850501199986,9.192938544000171],[-60.73924719999988,9.188177802000084],[-60.752837693999936,9.187323309000163],[-60.769520636999886,9.189195054000137],[-60.79743404899992,9.17182038000007],[-60.80516516799991,9.157212632000139],[-60.81224524599989,9.138251044000128],[-60.82380123599989,9.12230052300012],[-60.845204230999855,9.116603908000144],[-60.83690344999987,9.14203522300015],[-60.828968878999916,9.187689520000092],[-60.81786048099988,9.206000067000145],[-60.80288652299995,9.217596747000158],[-60.78050696499992,9.228745835000096],[-60.75792395699994,9.2304141300001],[-60.742176886999886,9.213446356000134],[-60.73900305899994,9.208929755000085],[-60.73363196499989,9.198797919000114],[-60.72850501199986,9.192938544000171]]],[[[-62.320057745999954,9.862250067000089],[-62.32575436099992,9.844183661000073],[-62.33861243399994,9.845689195000118],[-62.349354620999854,9.872300523000149],[-62.35090084499989,9.897365627000156],[-62.3487849599999,9.913723049000069],[-62.34337317599994,9.924221096000137],[-62.3353572259999,9.923570054000095],[-62.33112545499997,9.920558986000088],[-62.32274329299992,9.910060940000122],[-62.316395636999886,9.885646877000156],[-62.320057745999954,9.862250067000089]]],[[[-62.39606686099996,9.978094794000171],[-62.408924933999884,9.97256094000015],[-62.42052161399988,9.98265208500011],[-62.42756100199994,10.00039297100011],[-62.43565833199988,10.03318919500012],[-62.43618730399995,10.046576239000117],[-62.42686926999991,10.049221096000108],[-62.41563880099991,10.035101630000085],[-62.40330969999989,10.006293036000145],[-62.397613084999904,10.003851630000113],[-62.39110266799988,9.993353583000143],[-62.39606686099996,9.978094794000171]]],[[[-62.28840084499987,9.98802317900008],[-62.29800370999993,9.98371002800016],[-62.29857337099992,9.996649481000176],[-62.286366339999944,10.024400132000068],[-62.26756751199988,10.044907945000105],[-62.2493790359999,10.052069403000147],[-62.240834113999966,10.051499742000173],[-62.23570716099996,10.04425690300016],[-62.23062089799993,10.028143622000087],[-62.23534094999985,10.01386139500009],[-62.24518795499995,10.003607489000075],[-62.25792395699992,9.994289455000128],[-62.27391516799992,9.98993561400013],[-62.28840084499987,9.98802317900008]]],[[[-62.6598201159999,10.31000397300015],[-62.66559811099995,10.31000397300015],[-62.66584225199992,10.321600653000175],[-62.669545050999936,10.331122137000165],[-62.68594316299996,10.345770575000172],[-62.692860480999855,10.35455963700015],[-62.7103165359999,10.372015692000105],[-62.74103756399993,10.39492422100011],[-62.7696833979999,10.411607164000145],[-62.78758704299994,10.430121161000073],[-62.793080206999974,10.44794342700014],[-62.79157467399992,10.46613190300013],[-62.790191209999925,10.47264232000012],[-62.78620357999994,10.485174872000115],[-62.78111731699993,10.49290599200013],[-62.77696692599988,10.492621161000102],[-62.747181769999884,10.460272528000175],[-62.722523566999904,10.427801825000103],[-62.66515051999997,10.366359768000123],[-62.658273891999954,10.360174872000144],[-62.649403449999916,10.344916083000086],[-62.65099036399993,10.325873114000089],[-62.6598201159999,10.31000397300015]]],[[[-63.90916907499989,10.735541083000086],[-63.93553626199988,10.733710028000104],[-63.956776495999854,10.74412669500019],[-63.95612545499992,10.76203034100014],[-63.98277747299994,10.764349677000112],[-63.996449347999885,10.768459377000154],[-64.00450598899991,10.775702216000083],[-64.00536048099991,10.788397528000147],[-63.99889075399991,10.79926178600013],[-63.98827063699988,10.806708075000117],[-63.976551886999886,10.809230861000131],[-63.95665442599988,10.79995351800008],[-63.92833411399994,10.790838934000178],[-63.90363521999987,10.777289130000113],[-63.89464270699994,10.754584052000084],[-63.90916907499989,10.735541083000086]]],[[[-64.19029700399992,10.828111070000148],[-64.17218990799992,10.826808986000158],[-64.16860917899992,10.82794830900009],[-64.15953528599994,10.824896552000098],[-64.15587317599987,10.811957098000093],[-64.17479407499991,10.799221096000139],[-64.20181230399996,10.797064520000134],[-64.22093665299994,10.806463934000163],[-64.21825110599985,10.821030992000189],[-64.20343990799998,10.827297268000137],[-64.19029700399992,10.828111070000148]]],[[[-65.24469967399992,10.954657294000171],[-65.22760982999995,10.953802802000068],[-65.21983801999997,10.954291083000058],[-65.21133378799993,10.953843492000159],[-65.20824133999994,10.949896552000084],[-65.2167048819999,10.939601955000157],[-65.2019750639999,10.91815827000012],[-65.20494544199991,10.904364325000117],[-65.22081458199995,10.894517320000176],[-65.24461829299992,10.884955145000106],[-65.24071204299992,10.894842841000113],[-65.23786373599998,10.898586330000143],[-65.25877844999985,10.891424872000101],[-65.27696692599994,10.889553127000141],[-65.31663977799985,10.89109935100008],[-65.33657792899993,10.89594147300015],[-65.35505123599994,10.905178127000127],[-65.37218176999991,10.910956122000172],[-65.38805091099992,10.905462958000058],[-65.41177324099992,10.92475006700009],[-65.40192623599992,10.948431708000115],[-65.37669837099986,10.966050523000135],[-65.35448157499991,10.967474677000112],[-65.32990475199989,10.97760651200015],[-65.30626380099993,10.976467190000122],[-65.25495357999992,10.95652903900013],[-65.24469967399992,10.954657294000171]]],[[[-63.79344641799985,11.001125393000123],[-63.78766842399988,10.973781643000137],[-63.819569464999915,10.980536200000174],[-63.81908118399991,10.973944403000102],[-63.82005774599988,10.960394598000136],[-63.819569464999915,10.953802802000068],[-63.83421790299991,10.964422919000114],[-63.842925584999904,10.967759507000137],[-63.8468318349999,10.963771877000156],[-63.849964972999885,10.957505601000108],[-63.87169348899994,10.937404690000065],[-63.89806067599994,10.884955145000106],[-63.95563717399992,10.894354559000119],[-63.976551886999886,10.89109935100008],[-64.0426326159999,10.868475653000118],[-64.05972245999993,10.857611395000133],[-64.05687415299991,10.88711172100011],[-64.07420813699987,10.890936591000113],[-64.09609941299993,10.890936591000113],[-64.11636308499993,10.928615627000097],[-64.13784745999996,10.943589585000126],[-64.16112219999988,10.95595937700007],[-64.17585201699995,10.967474677000112],[-64.20295162699989,10.944403387000136],[-64.22435462099995,10.939357815000108],[-64.2975154289999,10.947414455000143],[-64.30260169199994,10.949693101000122],[-64.30663001199991,10.952134507000068],[-64.31236731699997,10.953802802000068],[-64.33800208199995,10.952948309000163],[-64.34715735599991,10.953802802000068],[-64.38902747299994,10.966050523000135],[-64.40855872299991,10.967474677000112],[-64.3839412099999,11.019842841000084],[-64.38060462099989,11.032375393000095],[-64.3783259759999,11.053534247000087],[-64.37059485599991,11.062486070000118],[-64.35606848899997,11.064195054000123],[-64.33348548099988,11.063666083000143],[-64.32262122299991,11.06574127800016],[-64.31476803299992,11.069525458000086],[-64.30211341099994,11.080471096000153],[-64.2918595039999,11.083929755000055],[-64.27139238199996,11.076971747000158],[-64.24445553299998,11.088120835000081],[-64.22008216099994,11.091538804000095],[-64.19831295499993,11.087632554000095],[-64.18883216099997,11.07363515800013],[-64.18936113199993,11.061021226000065],[-64.18830318899998,11.04633209800015],[-64.18163001199991,11.034084377000099],[-64.14753170499992,11.023586330000114],[-64.11070716099994,11.000189520000134],[-64.08983313699989,10.994818427000084],[-64.04906165299991,10.990708726000122],[-64.03197180899986,10.995998440000108],[-64.01756751199989,11.01528554900014],[-64.01573645699992,11.025702216000127],[-64.01756751199989,11.056219794000157],[-64.01134192599994,11.065252997000172],[-63.996937628999966,11.07672760600012],[-63.99083411399989,11.083563544000143],[-63.98672441299993,11.094549872000101],[-63.987172003999916,11.102240302000112],[-63.98582923099994,11.109279690000093],[-63.976551886999886,11.118312893000095],[-63.96808834499984,11.121079820000148],[-63.94505774599989,11.122381903000147],[-63.93561764199995,11.125148830000114],[-63.92096920499995,11.137640692000119],[-63.89610755099991,11.168036200000088],[-63.88097083199991,11.179144598000121],[-63.87743079299991,11.161200262000165],[-63.865467902999875,11.151597398000192],[-63.8528539699999,11.144842841000155],[-63.8468318349999,11.135402736000145],[-63.84357662699995,11.114894924000096],[-63.82900956899993,11.077785549000083],[-63.82575436099998,11.060003973000093],[-63.79344641799985,11.001125393000123]]],[[[-66.8084203769999,11.751206773000135],[-66.8171280589999,11.748968817000147],[-66.82778886599993,11.746242580000084],[-66.85106360599985,11.747015692000105],[-66.85460364499994,11.751369533000101],[-66.8331599599999,11.749090887000122],[-66.81818600199995,11.751044012000165],[-66.81309973899994,11.752264716000084],[-66.80955969999988,11.75295644700013],[-66.74998938699994,11.777573960000126],[-66.73582923099991,11.78310781500015],[-66.72850501199991,11.783596096000137],[-66.72801673099994,11.782049872000101],[-66.77521725199992,11.76276276200015],[-66.77993730399993,11.758530992000132],[-66.8084203769999,11.751206773000135]]],[[[-66.60826575399994,11.78310781500015],[-66.59276282499994,11.782538153000173],[-66.58779863199987,11.78310781500015],[-66.60651607999995,11.767238674000124],[-66.64183508999989,11.761460679000066],[-66.67943274599989,11.766546942000089],[-66.70449785099987,11.78310781500015],[-66.6741430329999,11.776027736000088],[-66.65086829299987,11.780178127000127],[-66.63198808499995,11.795965887000165],[-66.61510169199997,11.824042059000163],[-66.6062719389999,11.817368882000125],[-66.60138912699993,11.806708075000174],[-66.60167395699997,11.794501044000114],[-66.60826575399994,11.78310781500015]]],[[[-66.10850989499991,11.825832424000154],[-66.10293535099989,11.819281317000076],[-66.10118567599989,11.799790757000096],[-66.11400305899993,11.779933986000088],[-66.14313717399988,11.781805731000148],[-66.17454993399991,11.79710521000011],[-66.19432532499994,11.817694403000145],[-66.17955481699997,11.823187567000074],[-66.16197669199994,11.824774481000103],[-66.13219153599991,11.824042059000163],[-66.10850989499991,11.825832424000154]]],[[[-66.81480872299994,11.87323639500009],[-66.73338782499988,11.869940497000144],[-66.7160538399999,11.870591539000186],[-66.71178137899989,11.867905992000116],[-66.73704993399994,11.865301825000131],[-66.74058997299991,11.865871486000103],[-66.75381425699996,11.862372137000108],[-66.77106686099995,11.865871486000103],[-66.7804255849999,11.865871486000103],[-66.78709876199986,11.868353583000115],[-66.81786048099994,11.871079820000174],[-66.81480872299994,11.87323639500009]]],[[[-64.55284583199992,11.823716539000145],[-64.56285559799991,11.816595770000104],[-64.60558020699992,11.818019924000069],[-64.62930253799993,11.821966864000146],[-64.6487930979999,11.830267645000134],[-64.6459041009999,11.838283596000082],[-64.64439856699994,11.840725002000111],[-64.64509029899997,11.843207098000136],[-64.6487930979999,11.851304429000066],[-64.63565019399996,11.861395575000131],[-64.61888587099995,11.889227606000174],[-64.60716712099995,11.899115302000096],[-64.59463456899994,11.892482815000136],[-64.56285559799991,11.868109442000074],[-64.5567927729999,11.85732656500008],[-64.55215410099987,11.839911200000103],[-64.55284583199992,11.823716539000145]]],[[[-67.63760331899994,11.980047919000171],[-67.64622962099995,11.9786644550001],[-67.66588294199988,11.982001044000114],[-67.67365475199989,11.985337632000139],[-67.67487545499992,11.989650783000144],[-67.67198645699997,11.993109442000147],[-67.6671443349999,11.991766669000157],[-67.66266842399992,11.987534898000135],[-67.65802975199992,11.984930731000134],[-67.64899654899989,11.983954169000157],[-67.63760331899994,11.980047919000171]]],[[[-67.67906653599994,12.028143622000144],[-67.68040930899991,12.025051174000152],[-67.68154863199996,12.025783596000096],[-67.67906653599994,12.028143622000144]]],[[[-67.67638098899997,12.027818101000122],[-67.67666581899991,12.026922919000128],[-67.67760169199997,12.027818101000122],[-67.67723548099985,12.030015367000104],[-67.67638098899997,12.027818101000122]]],[[[-67.67467200399994,12.048407294000143],[-67.67609615799992,12.044419664000173],[-67.67699133999992,12.046332098000136],[-67.67723548099985,12.050238348000121],[-67.67467200399994,12.048407294000143]]],[[[-67.68138587099989,12.063706773000106],[-67.68101966099988,12.061835028000147],[-67.68443762899989,12.063462632000068],[-67.68138587099989,12.063706773000106]]],[[[-67.68708248599998,12.067531643000123],[-67.68732662699992,12.06557851800008],[-67.68883216099988,12.068996486000088],[-67.68708248599998,12.067531643000123]]],[[[-69.81676184799991,11.932440497000087],[-69.81590735599991,11.846380927000112],[-69.80858313699991,11.803615627000099],[-69.74714107999992,11.63226959800015],[-69.70030676999997,11.540187893000066],[-69.66584225199995,11.497748114000089],[-69.62360592399992,11.467759507000125],[-69.5886938139999,11.463039455000112],[-69.56338456899996,11.47842031500015],[-69.5372615229999,11.49868398600016],[-69.50007076699993,11.508734442000147],[-69.41551673099988,11.495591539000173],[-69.37669837099986,11.494045315000136],[-69.33560136599988,11.508734442000147],[-69.30760657499984,11.526556708000115],[-69.2909236319999,11.533351955000143],[-69.27041581899996,11.536037502000125],[-69.26024329299992,11.532863674000154],[-69.23985755099994,11.518744208000129],[-69.22948157499994,11.51557038000007],[-69.19554602799987,11.517075914000117],[-69.18541419199994,11.51557038000007],[-69.12100175699993,11.489894924000112],[-69.10903886599989,11.491359768000066],[-69.1034236319999,11.480861721000094],[-69.09015865799996,11.469305731000162],[-69.07445227799991,11.459377346000068],[-69.06187903599991,11.453517971000124],[-69.01992753799993,11.446234442000105],[-68.8631892569999,11.45286692900008],[-68.84439042899996,11.447414455000128],[-68.82892818899992,11.435695705000143],[-68.79596920499995,11.400620835000069],[-68.77623450399992,11.386216539000186],[-68.75438391799989,11.374090887000108],[-68.72028561099998,11.36176178600006],[-68.70433508999984,11.358058986000117],[-68.69041907499988,11.357001044000157],[-68.68447831899996,11.361639716000083],[-68.67918860599988,11.358303127000156],[-68.65566972599993,11.347886460000067],[-68.65038001199986,11.340521552000084],[-68.63996334499986,11.322211005000113],[-68.61522376199989,11.303412177000068],[-68.54051673099988,11.265041408000144],[-68.51797441299989,11.249335028000175],[-68.50007076699993,11.23240794500019],[-68.4927465489999,11.217678127000099],[-68.48350989499997,11.206935940000093],[-68.41759192599991,11.179144598000121],[-68.41266842399995,11.188869533000158],[-68.41104081899994,11.193345445000134],[-68.41075598899991,11.200262762000136],[-68.40330969999992,11.200262762000136],[-68.4003800119999,11.194159247000144],[-68.39028886599993,11.179144598000121],[-68.39028886599993,11.17291901200015],[-68.39793860599988,11.153998114000132],[-68.38866126199991,11.128241278000104],[-68.34968014199993,11.071844794000143],[-68.28823808499996,10.953314520000092],[-68.27843176999994,10.925482489000117],[-68.2872615229999,10.912827867000146],[-68.29478919199994,10.917141018000152],[-68.30504309799997,10.926703192000133],[-68.31834876199989,10.935980536000102],[-68.3350723949999,10.939601955000157],[-68.34776770699997,10.936957098000079],[-68.35952714799996,10.931708075000172],[-68.36953691299993,10.925238348000079],[-68.3766169909999,10.919094143000109],[-68.3434138659999,10.910386460000112],[-68.26268469999988,10.903143622000101],[-68.23884029899989,10.884955145000106],[-68.24982662699995,10.865912177000112],[-68.26618404899995,10.858099677000112],[-68.31143144399991,10.857611395000133],[-68.3265681629999,10.849269924000154],[-68.33193925699993,10.829575914000117],[-68.33145097599994,10.806830145000092],[-68.31834876199989,10.74518463700015],[-68.28709876199991,10.657904364000146],[-68.27375240799992,10.634222723000121],[-68.2517390619999,10.595119533000087],[-68.2423396479999,10.578436591000141],[-68.20958411399995,10.537258205000157],[-68.17113196499986,10.50372955900012],[-68.1295466789999,10.487738348000121],[-68.00645911399997,10.488470770000148],[-67.98875891799986,10.484686591000127],[-67.96515865799991,10.474066473000093],[-67.94123287699995,10.466457424000154],[-67.92442786399994,10.469712632000096],[-67.90998287699989,10.476874091000141],[-67.89281165299988,10.480861721000124],[-67.88060462099989,10.47996653900013],[-67.87328040299988,10.476467190000136],[-67.86986243399988,10.469183661000116],[-67.86921139199993,10.461249091000155],[-67.86888587099992,10.456976630000142],[-67.86538652299993,10.45221588700015],[-67.85781816299996,10.459295966000113],[-67.85069739499991,10.469468492000145],[-67.84837805899986,10.474066473000093],[-67.81777910099993,10.487616278000145],[-67.77757727799994,10.495998440000122],[-67.64500891799992,10.5060082050001],[-67.56017005099994,10.528265692000147],[-67.47817949099993,10.534084377000097],[-67.39175370999993,10.543076890000123],[-67.32607988199993,10.549953518000123],[-67.24339758999986,10.546616929000109],[-67.17003333199995,10.55597565300013],[-67.11302649599992,10.5855166690001],[-67.07408606699994,10.593410549000083],[-67.03465735599988,10.607977606000103],[-67.01235917899993,10.61123281500015],[-66.88585364499991,10.609523830000143],[-66.77660071499989,10.619045315000136],[-66.54157467399997,10.63271719000008],[-66.42784583199989,10.630845445000105],[-66.41649329299992,10.627997137000165],[-66.40485592399992,10.620835679000123],[-66.35045325399992,10.611151434000163],[-66.33397376199991,10.61123281500015],[-66.3216039699999,10.620428778000118],[-66.30947831899991,10.63418203300013],[-66.29515540299991,10.646714585000138],[-66.27586829299989,10.652167059000163],[-66.25177975199995,10.6485863300001],[-66.19058183499989,10.617417710000112],[-66.12458248599998,10.601955471000096],[-66.10440019399994,10.584418036000145],[-66.05797278599991,10.579046942000105],[-66.04653886599993,10.576483466000099],[-66.05382239499994,10.56240469000015],[-66.07616126199987,10.548895575000172],[-66.10240637899992,10.540757554000066],[-66.12169348899994,10.542954820000146],[-66.12083899599995,10.531317450000145],[-66.12222245999993,10.507025458000072],[-66.11827551999994,10.497951565000065],[-66.08751380099994,10.46662018400012],[-66.01183020699997,10.408596096000137],[-66.00426184799991,10.398993231000162],[-65.97093665299994,10.378851630000128],[-65.95287024599992,10.351629950000131],[-65.88206946499992,10.309556382000068],[-65.8963516919999,10.30906810100008],[-65.91014563699991,10.31167226800008],[-65.92186438699987,10.316555080000143],[-65.92992102799994,10.323187567000103],[-65.93761145699995,10.316961981000148],[-65.94416256399992,10.309556382000068],[-65.92300370999993,10.282212632000096],[-65.89696204299986,10.287990627000156],[-65.87132727799988,10.27293528900013],[-65.82750403599994,10.234442450000143],[-65.80211341099991,10.225653387000179],[-65.77501380099996,10.221502997000144],[-65.71764075399994,10.22016022300015],[-65.74730383999989,10.239243882000139],[-65.84732011599993,10.281398830000086],[-65.86847896999986,10.309556382000068],[-65.58043372299991,10.185451565000093],[-65.45909583199989,10.149359442000133],[-65.42577063699991,10.143418687000107],[-65.31012936099995,10.122870184000163],[-65.16954505099991,10.097316799000083],[-65.12857011599988,10.076157945000176],[-65.09146074099996,10.066880601000122],[-65.08018958199997,10.062567450000117],[-65.08018958199997,10.055650132000123],[-65.15575110599988,10.079901434000107],[-65.17568925699987,10.08364492400014],[-65.16698157499991,10.069403387000136],[-65.14891516799989,10.058417059000178],[-65.12800045499992,10.05133698100012],[-65.08397376199991,10.047512111000103],[-65.07335364499997,10.048895575000174],[-65.06395423099994,10.052191473000121],[-65.04710852799994,10.060777085000138],[-65.01683508999994,10.067084052000084],[-64.98094641799995,10.089260158000144],[-64.96349036399988,10.097316799000083],[-64.94359290299988,10.099798895000106],[-64.88833574099988,10.08982982000012],[-64.81419837099995,10.085109768000109],[-64.77660071499994,10.090399481000176],[-64.74811764199993,10.106878973000079],[-64.73704993399988,10.1210391300001],[-64.72862708199995,10.136053778000118],[-64.71703040299991,10.172349351000122],[-64.7167048819999,10.187974351000108],[-64.7218318349999,10.21401601800008],[-64.71703040299991,10.227606512000122],[-64.70913652299996,10.218939520000134],[-64.69933020699992,10.213812567000119],[-64.68809973899991,10.212062893000123],[-64.6760961579999,10.21332428600013],[-64.68346106699987,10.203680731000162],[-64.68757076699993,10.201361395000106],[-64.69660396999986,10.199693101000094],[-64.68517005099989,10.186021226000065],[-64.66763261599996,10.18732330900015],[-64.65762285099987,10.196682033000087],[-64.66860917899993,10.207098700000174],[-64.65709387899989,10.215236721000096],[-64.63141842399995,10.248114325000174],[-64.61676998599992,10.250474351000136],[-64.5882869129999,10.260321356000148],[-64.5724177729999,10.261704820000132],[-64.57510331899996,10.254828192000131],[-64.57673092399989,10.252020575000174],[-64.57990475199995,10.248114325000174],[-64.57433020699995,10.249741929000109],[-64.56505286399991,10.25136953300013],[-64.5593969389999,10.254339911000145],[-64.55223548099985,10.242336330000114],[-64.54637610599991,10.243841864000075],[-64.54002844999988,10.25055573100012],[-64.5360815089999,10.252305406000119],[-64.53148352799988,10.254339911000145],[-64.52098548099988,10.251776434000135],[-64.49901282499988,10.242336330000114],[-64.49054928299992,10.240668036000102],[-64.46837317599997,10.248602606000162],[-64.44017493399988,10.276271877000156],[-64.4085994129999,10.2843692080001],[-64.39028886599993,10.293768622000115],[-64.38438880099991,10.295884507000125],[-64.37669837099989,10.30076732000019],[-64.37669837099989,10.310248114000103],[-64.3822322259999,10.316961981000148],[-64.40957597599987,10.30467357000019],[-64.4327693349999,10.30597565300009],[-64.45494544199995,10.313421942000074],[-64.4700414699999,10.323187567000103],[-64.46336829299992,10.332831122000172],[-64.45303300699993,10.331447658000101],[-64.44102942599989,10.32591380400008],[-64.42906653599997,10.323187567000103],[-64.41665605399992,10.326727606000176],[-64.39533443899995,10.339504299000126],[-64.38060462099989,10.34369538000007],[-64.38353430899991,10.356512762000094],[-64.38304602799991,10.361517645000133],[-64.38060462099989,10.370998440000136],[-64.40241451699993,10.370998440000136],[-64.40241451699993,10.378485419000114],[-64.38125566299993,10.386216539000117],[-64.37108313699989,10.382228908000144],[-64.36782792899993,10.370103257000054],[-64.36754309799991,10.353949286000088],[-64.36461341099988,10.338324286000102],[-64.35741126199994,10.338690497000115],[-64.34825598899997,10.3491885440001],[-64.33971106699994,10.364203192000119],[-64.33918209499987,10.390692450000172],[-64.29918372299991,10.406480210000126],[-64.24718176999994,10.419867255000128],[-64.21056067599994,10.439276434000135],[-64.20213782499988,10.455389716000113],[-64.19774329299989,10.468654690000136],[-64.18854732999992,10.477606512000165],[-64.16559811099992,10.480861721000124],[-64.14346269399996,10.480129299000097],[-64.12767493399991,10.477606512000165],[-64.11461341099994,10.473211981000176],[-64.07038326699995,10.452622789000143],[-64.05182857999995,10.44794342700014],[-64.02843176999988,10.446112372000158],[-64.00487219999994,10.447902736000145],[-63.943023240999935,10.46039459800015],[-63.92316646999984,10.459418036000088],[-63.88402258999989,10.44871653900016],[-63.86363684799991,10.446112372000158],[-63.820383266999926,10.447577216000127],[-63.68346106699991,10.479722398000177],[-63.65501868399989,10.494533596000153],[-63.678089972999935,10.496975002000099],[-63.703684048999925,10.495306708000086],[-63.72972571499991,10.497503973000079],[-63.75405839799987,10.511623440000108],[-63.77183997299994,10.525051174000097],[-63.82315019399988,10.54938385600016],[-63.8468318349999,10.55597565300013],[-63.89972896999986,10.55711497600008],[-63.92373613199991,10.560288804000137],[-63.94644120999997,10.573391018000109],[-63.96666419199996,10.58136627800016],[-63.99347896999986,10.580796617000187],[-64.04548092399995,10.570257880000128],[-64.04051673099988,10.575140692000105],[-64.03184973899988,10.590073960000138],[-64.04629472599996,10.589585679000066],[-64.05671139199993,10.58348216400016],[-64.06484941299996,10.575751044000157],[-64.07274329299992,10.570257880000128],[-64.08617102799991,10.567124742000146],[-64.15550696499989,10.572699286000073],[-64.16905676999994,10.570257880000128],[-64.19953365799998,10.552191473000107],[-64.20685787699989,10.549139716000111],[-64.21540279899992,10.543768622000158],[-64.22427324099996,10.520412502000154],[-64.23387610599994,10.515041408000116],[-64.24913489499991,10.520453192000147],[-64.25609290299991,10.533351955000072],[-64.25788326699998,10.548041083000072],[-64.25772050699993,10.559393622000144],[-64.26671301999994,10.579087632000096],[-64.2845759759999,10.59979889500009],[-64.29767818899995,10.619859117000146],[-64.29255123599995,10.637884833000086],[-64.28189042899993,10.64362213700015],[-64.2747289699999,10.650580145000134],[-64.27098548099984,10.659898179000095],[-64.27074133999992,10.67267487200013],[-64.26455644399994,10.67267487200013],[-64.25475012899992,10.654933986000131],[-64.24079342399995,10.646063544000086],[-64.19627844999994,10.637884833000086],[-64.1839086579999,10.633490302000098],[-64.15721594999988,10.620184637000165],[-64.14476477799985,10.617417710000112],[-64.13121497299989,10.619696356000176],[-64.07249915299988,10.647894598000065],[-64.06261145699997,10.651027736000131],[-64.04889889199995,10.652167059000163],[-64.04271399599988,10.65021393400012],[-64.03937740799995,10.645738023000163],[-64.03648841099991,10.641017971000153],[-64.03184973899988,10.637884833000086],[-63.93732662699995,10.63890208500014],[-63.91510982999992,10.631048895000063],[-63.90038001199991,10.6382510440001],[-63.86164303299997,10.646307684000135],[-63.8468318349999,10.652167059000163],[-63.83682206899991,10.662339585000126],[-63.82835852799988,10.676825262000165],[-63.822377081999946,10.694403387000108],[-63.819569464999915,10.713609117000146],[-63.81212317599994,10.713609117000146],[-63.799672003999916,10.691148179000066],[-63.78066972599992,10.675848700000103],[-63.756947394999905,10.665594794000157],[-63.653187628999916,10.641262111000103],[-63.55333411399994,10.629136460000112],[-63.53156490799994,10.631048895000063],[-63.49022376199994,10.657619533000116],[-63.466175910999915,10.667629299000097],[-63.44904537699995,10.658392645000134],[-63.44220943899995,10.658392645000134],[-63.43895423099991,10.67137278900013],[-63.429921027999875,10.672593492000145],[-63.41763261599993,10.66860586100016],[-63.40489661399988,10.665838934000107],[-63.39940344999985,10.669989325000145],[-63.39346269399993,10.690904039000115],[-63.387562628999895,10.699367580000143],[-63.38093014199992,10.69245026200015],[-63.374256964999894,10.688788153000104],[-63.36742102799985,10.688910223000079],[-63.36021887899992,10.693101304000109],[-63.35399329299986,10.686346747000158],[-63.36021887899992,10.680121161000102],[-63.33975175699996,10.67267487200013],[-63.331532355999855,10.685370184000178],[-63.31773841099993,10.684230861000145],[-63.301340298999946,10.677313544000157],[-63.28514563699988,10.67267487200013],[-63.284535285999944,10.676459052000055],[-63.27989661399991,10.683661200000172],[-63.2717179029999,10.687933661000102],[-63.260609503999966,10.683254299000083],[-63.25129146999993,10.680568752000097],[-63.24087480399993,10.685126044000143],[-63.17129472599993,10.731594143000095],[-63.16161048099988,10.73468659100017],[-63.15859941299988,10.729681708000129],[-63.15558834499986,10.720160223000136],[-63.149484829999885,10.710923570000176],[-63.137440558999884,10.706773179000137],[-63.125884568999936,10.70685455900012],[-63.11620032499988,10.708156643000123],[-63.10753333199989,10.71234772300015],[-63.09951738199996,10.721096096000124],[-63.08250891799988,10.71552155200011],[-63.01423092399989,10.721096096000124],[-62.99176998599997,10.717840887000165],[-62.951730923999946,10.703314520000134],[-62.92821204299988,10.699367580000143],[-62.904286261999935,10.702215887000179],[-62.86339270699988,10.717515367000145],[-62.82770748599995,10.723293361000117],[-62.719634568999965,10.759995835000124],[-62.70567786399992,10.76203034100014],[-62.68301347599993,10.749986070000134],[-62.671538865999906,10.747748114000146],[-62.65925045499994,10.746893622000144],[-62.63805091099994,10.742621161000145],[-62.54157467399997,10.74095286700013],[-62.39704342399992,10.715480861000117],[-62.31875566299993,10.704738674000112],[-62.27391516799992,10.698879299000154],[-62.202056443999936,10.696722723000063],[-62.17076575399988,10.686509507000125],[-62.15420488199993,10.686346747000158],[-62.14183508999988,10.691799221000108],[-62.11510169199997,10.70970286700016],[-62.10240637899992,10.713609117000146],[-62.03624426999991,10.714016018000152],[-62.00706946499989,10.7199160830001],[-61.98232988199991,10.73468659100017],[-61.97126217399994,10.723089911000073],[-61.944203253999916,10.731756903000147],[-61.935170050999915,10.721096096000124],[-61.91869055899991,10.731187242000175],[-61.892201300999936,10.740423895000148],[-61.864816860999895,10.744818427000126],[-61.845773891999904,10.74095286700013],[-61.86196855399996,10.73346588700015],[-61.876861131999895,10.722723700000145],[-61.88491777299993,10.707424221000096],[-61.880482550999965,10.686346747000158],[-61.886708136999914,10.680121161000102],[-61.89769446499989,10.690375067000133],[-61.906849738999966,10.684068101000094],[-61.91881262899989,10.672186591000141],[-61.93822180899991,10.665838934000107],[-61.941965298999946,10.664007880000128],[-61.95457923099991,10.655259507000068],[-61.96247311099989,10.652167059000163],[-61.97443600199991,10.65180084800015],[-61.983998175999915,10.653550523000149],[-61.99315344999989,10.65277741100013],[-62.00401770699997,10.644720770000104],[-62.06700598899991,10.638128973000121],[-62.08893795499992,10.631293036000102],[-62.17446855399992,10.642279364000075],[-62.23985755099988,10.637884833000086],[-62.25267493399994,10.632391669000143],[-62.26480058499993,10.619289455000086],[-62.313628709999925,10.547837632000125],[-62.33495032499989,10.530218817000105],[-62.35594641799992,10.532375393000095],[-62.37913977799988,10.545070705000157],[-62.398345506999924,10.544256903000145],[-62.41783606699991,10.538275458000129],[-62.4416397779999,10.53546784100017],[-62.453114386999935,10.53778717700014],[-62.472279425999915,10.546454169000143],[-62.48322506399998,10.549139716000111],[-62.492583787999905,10.54881419500019],[-62.50938880099991,10.544134833000086],[-62.52106686099992,10.542954820000146],[-62.541859503999916,10.545314846000108],[-62.60676021999989,10.562811591000155],[-62.66234290299991,10.567043361000074],[-62.89586341099988,10.537543036000102],[-62.923329230999904,10.530829169000157],[-62.935129360999895,10.518459377000113],[-62.94538326699992,10.502427476000122],[-62.96890214799987,10.483628648000177],[-62.99445553299996,10.467678127000068],[-63.01081295499998,10.46039459800015],[-63.01081295499998,10.45355866100013],[-62.98029537699995,10.46580638200011],[-62.9251195949999,10.51178620000016],[-62.89411373599998,10.52928294500012],[-62.85700436099998,10.531561591000084],[-62.84117591099994,10.51178620000016],[-62.838002081999974,10.482652085000112],[-62.83885657499987,10.456976630000142],[-62.83275305899988,10.425848700000145],[-62.83112545499995,10.406805731000148],[-62.83576412699989,10.398342190000122],[-62.84406490799995,10.39704010600012],[-62.8594457669999,10.392035223000077],[-62.866118943999965,10.391506252000099],[-62.87474524599986,10.395493882000082],[-62.88971920499989,10.409002997000144],[-62.89781653599993,10.41201406500015],[-62.9640193349999,10.415187893000123],[-62.995187954999885,10.407863674000112],[-63.00397701699995,10.38467031500008],[-62.997222459999925,10.389593817000131],[-62.97598222599992,10.398342190000122],[-62.970570441999875,10.373968817000147],[-62.965565558999856,10.364162502000125],[-62.95616614499991,10.3573672550001],[-62.96788489499991,10.350490627000099],[-62.98375403599993,10.330511786000116],[-62.99714107999995,10.323187567000103],[-62.97858639199992,10.31098053600013],[-62.98078365799992,10.300238348000121],[-62.99278723899993,10.289048570000105],[-63.00397701699995,10.275376695000162],[-62.94591223899991,10.27814362200013],[-62.931630011999914,10.285630601000108],[-62.92715410099992,10.303371486000103],[-62.94762122299992,10.34271881700009],[-62.942494269999884,10.364203192000119],[-62.95368404899989,10.371527411000116],[-62.95710201699989,10.383775132000094],[-62.95323645699992,10.396551825000131],[-62.942494269999884,10.405178127000127],[-62.924672003999916,10.405666408000116],[-62.907826300999915,10.397121486000103],[-62.87979081899991,10.370998440000136],[-62.86998450399997,10.378363348000136],[-62.8603409499999,10.380845445000162],[-62.850168423999946,10.381822007000137],[-62.83885657499987,10.38467031500008],[-62.80797278599991,10.402492580000157],[-62.80162512899989,10.405178127000127],[-62.78425045499992,10.4022891300001],[-62.76447506399998,10.395331122000115],[-62.746937628999945,10.386664130000113],[-62.736439581999974,10.378485419000114],[-62.733143683999934,10.370672919000114],[-62.73224850199995,10.353013414000102],[-62.72899329299989,10.34369538000007],[-62.722320115999935,10.335598049000138],[-62.698882615999956,10.32013580900012],[-62.68488521999989,10.306708075000117],[-62.6749568349999,10.29336172100011],[-62.6693009109999,10.276922919000114],[-62.6681208979999,10.254339911000145],[-62.6749568349999,10.224839585000069],[-62.6749568349999,10.21332428600013],[-62.66331946499988,10.190619208000086],[-62.66136633999986,10.182318427000112],[-62.65802975199991,10.179103908000144],[-62.65074622299991,10.176092841000141],[-62.64354407499988,10.171210028000173],[-62.63805091099994,10.153998114000075],[-62.628773566999875,10.13637929900014],[-62.626576300999915,10.130804755000128],[-62.63072669199994,10.114488023000192],[-62.64195716099993,10.096625067000131],[-62.65660559799994,10.082180080000086],[-62.671538865999906,10.076157945000176],[-62.68285071499989,10.075100002000127],[-62.70246334499984,10.0704613300001],[-62.712554490999906,10.069322007000068],[-62.72549394399991,10.071234442000119],[-62.732818162999905,10.075506903000132],[-62.7377009759999,10.080267645000118],[-62.74327551999989,10.08364492400014],[-62.75959225199992,10.086818752000113],[-62.77745520699989,10.086493231000174],[-62.7919815749999,10.080267645000118],[-62.79792232999995,10.065904039000145],[-62.80011959499985,10.057114976000094],[-62.80589758999991,10.049505927000139],[-62.81387285099995,10.044094143000095],[-62.82274329299991,10.042059637000165],[-62.82770748599995,10.046047268000137],[-62.83275305899988,10.065497137000136],[-62.83576412699989,10.07273997600008],[-62.85138912699997,10.080389716000099],[-62.87897701699998,10.066229559000163],[-62.89411373599998,10.069322007000068],[-62.896473761999935,10.076727606000146],[-62.894602016999954,10.08673737200013],[-62.89435787699992,10.096625067000131],[-62.901519334999875,10.10346100500007],[-62.91120357999992,10.103501695000148],[-62.92056230399987,10.09870026200015],[-62.928863084999925,10.091253973000093],[-62.935129360999895,10.08364492400014],[-62.9384659499999,10.094061591000127],[-62.94456946499992,10.101304429000066],[-62.95287024599989,10.10651276200015],[-62.96300208199994,10.110296942000074],[-62.97850501199986,10.098089911000102],[-62.98932857999995,10.09625885600012],[-63.017648891999904,10.10346100500007],[-63.01309160099996,10.097398179000066],[-63.009999152999875,10.093207098000136],[-62.995838995999954,10.07880280200007],[-62.98216712099992,10.069077867000118],[-62.97598222599992,10.07273997600008],[-62.971791144999905,10.082220770000076],[-62.96231035099989,10.088039455000128],[-62.95299231699997,10.08808014500012],[-62.948719855999855,10.079901434000107],[-62.94444739499993,10.029608466000141],[-62.93602454299988,10.008246161000102],[-62.92076575399991,10.007961330000157],[-62.93248450399992,10.022650458000072],[-62.930409308999884,10.03481679900014],[-62.926177537999955,10.046291408000087],[-62.931630011999914,10.059068101000136],[-62.931711391999976,10.065008856000146],[-62.92821204299988,10.07465241100013],[-62.92218990799989,10.08266836100016],[-62.91462154899995,10.08364492400014],[-62.90990149599991,10.077215887000136],[-62.914865688999974,10.061183986000145],[-62.91120357999992,10.0523135440001],[-62.89557857999995,10.044012762000122],[-62.881703253999945,10.04743073100012],[-62.868031378999916,10.054144598000079],[-62.85313880099997,10.055650132000123],[-62.8404841789999,10.048773505000113],[-62.830922003999916,10.038804429000123],[-62.81867428299995,10.030666408000101],[-62.79792232999995,10.028998114000089],[-62.809803839999894,10.003729559000135],[-62.80109615799992,9.995998440000122],[-62.785715298999975,10.002020575000131],[-62.77741451699989,10.018459377000127],[-62.78734290299992,10.051459052000096],[-62.78498287699994,10.06976959800015],[-62.76431230399992,10.076157945000176],[-62.75772050699996,10.072007554000137],[-62.739654100999935,10.054266669000143],[-62.72899329299989,10.048895575000174],[-62.71670488199993,10.0484072940001],[-62.66356360599993,10.060858466000113],[-62.639393683999934,10.074042059000163],[-62.618519660999965,10.091620184000107],[-62.60676021999989,10.110296942000074],[-62.60594641799989,10.133246161000073],[-62.62218176999991,10.175726630000128],[-62.626576300999915,10.196275132000082],[-62.61953691299993,10.224432684000163],[-62.60216223899994,10.230943101000065],[-62.57994544199989,10.224432684000163],[-62.558257615999906,10.21332428600013],[-62.517567511999914,10.184149481000176],[-62.49494381399995,10.151800848000079],[-62.469553188999924,10.069322007000068],[-62.46084550699996,10.051906643000095],[-62.45002193899995,10.03685130400008],[-62.441883917999945,10.021063544000128],[-62.4416397779999,10.00104401200015],[-62.42943274599992,9.980861721000123],[-62.42617753799988,9.967515367000118],[-62.430653449999845,9.953924872000158],[-62.4416397779999,9.932806708000143],[-62.423491990999906,9.93231842700007],[-62.408924933999884,9.92401764500009],[-62.396962042999945,9.911444403000104],[-62.37759355399993,9.884670315000093],[-62.324289516999954,9.785630601000108],[-62.318714972999935,9.768296617000118],[-62.320057745999954,9.751613674000081],[-62.32506262899997,9.736517645000077],[-62.326975063999924,9.72182851800008],[-62.32534745999991,9.718817450000174],[-62.318714972999935,9.706244208000086],[-62.29076087099992,9.733303127000127],[-62.2704971999999,9.766669012000108],[-62.24299068899996,9.842840887000165],[-62.24095618399994,9.874945380000142],[-62.25772050699995,9.937811591000099],[-62.25723222599987,9.974351304000137],[-62.23936926999991,9.960842190000065],[-62.22199459499984,9.938381252000156],[-62.18492591099991,9.867743231000105],[-62.17870032499985,9.846136786000116],[-62.17589270699989,9.70498281500008],[-62.18761145699988,9.662665106000162],[-62.215687628999895,9.637925523000192],[-62.18187415299991,9.648871161000073],[-62.16242428299992,9.682277736000131],[-62.15428626199991,9.726141669000171],[-62.16047115799995,9.85024648600016],[-62.166411912999905,9.873439846000096],[-62.18781490799994,9.911688544000143],[-62.19517981699994,9.932806708000143],[-62.136830206999946,9.925970770000134],[-62.11945553299994,9.921454169000171],[-62.11245683499987,9.910345770000148],[-62.10822506399995,9.896551825000143],[-62.09898841099991,9.883734442000103],[-62.088449673999946,9.879299221000137],[-62.05650794199994,9.871975002000127],[-62.03693600199995,9.870306708000115],[-62.028675910999965,9.870672919000128],[-62.02733313699988,9.874416408000158],[-62.03750566299993,9.883734442000103],[-62.046254035999915,9.887925523000135],[-62.076161261999886,9.89642975500007],[-62.089019334999904,9.898098049000081],[-62.090321417999924,9.90326569200009],[-62.11945553299994,9.932806708000143],[-62.13560950399991,9.940619208000143],[-62.14867102799991,9.944647528000118],[-62.20836341099987,9.946030992000189],[-62.221424933999856,9.951808986000145],[-62.23680579299992,9.966945705000143],[-62.223215298999946,9.987005927000112],[-62.21678626199994,10.003851630000113],[-62.20653235599992,10.014349677000084],[-62.19647551199994,10.019677793000126],[-62.11085605199986,9.99769470700015],[-62.06128480699993,9.977875020000099],[-62.0253828459999,9.95735713900011],[-61.9249753599999,9.879634937000105],[-61.90697213899995,9.864044232000126],[-61.87676478299991,9.823682135000098],[-61.84800627199987,9.8038512440001],[-61.8314509759999,9.791937567000145],[-61.83071855399987,9.77846914300008],[-61.828195766999954,9.771063544000171],[-61.81476803299998,9.75775788000007],[-61.81037350199989,9.748195705000086],[-61.81191972599993,9.738023179000123],[-61.822336391999926,9.708482164000158],[-61.841704881999924,9.671942450000117],[-61.845773891999904,9.65102773600016],[-61.83893795499998,9.65102773600016],[-61.81163489499991,9.706244208000086],[-61.79735266799991,9.760891018000137],[-61.780100063999896,9.759222723000121],[-61.765492316999875,9.738674221000082],[-61.7532852859999,9.713771877000141],[-61.74331620999991,9.699408270000076],[-61.748646613999874,9.680080471000139],[-61.74331620999991,9.596380927000112],[-61.73424231699991,9.61660390800013],[-61.730336066999904,9.638861395000077],[-61.729644334999875,9.682359117000116],[-61.73102779899994,9.694037177000112],[-61.73473059799988,9.703029690000122],[-61.74010169199994,9.710191148000163],[-61.746449347999885,9.716782945000148],[-61.7532852859999,9.727525132000068],[-61.75792395699991,9.750311591000083],[-61.76317298099991,9.760891018000137],[-61.76992753799993,9.764837958000129],[-61.78954016799991,9.769598700000117],[-61.79735266799991,9.77456289300008],[-61.79857337099991,9.780951239000103],[-61.81515287399992,9.802554011000053],[-61.82165200599987,9.812894288000123],[-61.82382201599992,9.820737273000148],[-61.828171711999914,9.827158454000141],[-61.81909547599991,9.829639643000077],[-61.79009955299992,9.8306671200001],[-61.75217154199996,9.82315549700013],[-61.67442786399993,9.79873281500008],[-61.662709113999966,9.797430731000176],[-61.59251868399991,9.781968492000159],[-61.573801235999916,9.794582424000138],[-61.57811438699994,9.80882396000014],[-61.5911759109999,9.82245514500009],[-61.60204016799991,9.836737372000172],[-61.60924231699993,9.839544989000132],[-61.61652584499986,9.844183661000073],[-61.63334276099996,9.854776602000172],[-61.634728994999904,9.862560162000165],[-61.6370594629999,9.87035128900007],[-61.65145024999992,9.873572056000114],[-61.66491982999992,9.885037500000095],[-61.67096567299993,9.896498654000183],[-61.665365447999925,9.90014468800014],[-61.63673469899996,9.898770728000144],[-61.62695207299993,9.894534815000142],[-61.61167174099995,9.887279259000138],[-61.582931373999884,9.87216310000015],[-61.54269543599992,9.846855951000107],[-61.50979709699987,9.825775999000143],[-61.475700638999854,9.801701271000113],[-61.461118064999965,9.78368515600009],[-61.42226539499995,9.736261109000083],[-61.42708333899989,9.763835590000141],[-61.45135390999989,9.794448017000121],[-61.45804239699995,9.81245804000018],[-61.487872540999945,9.823326474000154],[-61.50309831099994,9.839566517000137],[-61.49944091199992,9.841957867000119],[-61.484826478999885,9.82992067400015],[-61.470825328999865,9.82689046200008],[-61.45195376299995,9.825046339000082],[-61.439167779999934,9.81841130000008],[-61.42883906699984,9.806995450000102],[-61.402141394999944,9.777575385000105],[-61.38574081699991,9.761352697000149],[-61.369967780999836,9.747537967000099],[-61.354801418999976,9.73132629400007],[-61.33782151299988,9.712114966000085],[-61.32508227099993,9.701898305000128],[-61.305667500999895,9.68627532900014],[-61.25834840199988,9.649007465000153],[-61.23650797799988,9.632169292000157],[-61.2262481139999,9.600966557000092],[-61.206044074999845,9.577378648000192],[-61.19196529899992,9.583319403000132],[-61.20832271999993,9.603827216000083],[-61.18419348899991,9.604071356000132],[-61.13011633999991,9.57249583500014],[-61.112049933999906,9.583319403000132],[-61.1055395169999,9.580145575000158],[-61.06802324099988,9.583319403000132],[-61.05321204299991,9.581284898000192],[-61.01646887899992,9.562892971000151],[-60.977040167999945,9.54962799700013],[-60.960601365999935,9.538723049000154],[-60.955067511999914,9.521307684000178],[-60.96174068899998,9.522365627000141],[-60.964914516999954,9.525458075000117],[-60.968658006999874,9.53497955900012],[-60.97061113199994,9.501939195000162],[-60.968658006999874,9.493963934000107],[-60.961293097999885,9.487453518000123],[-60.9542537099999,9.48818594000015],[-60.946685350999864,9.491766669000114],[-60.93765214799995,9.493963934000107],[-60.920725063999974,9.490301825000158],[-60.89976966099994,9.481146552000084],[-60.87901770699991,9.468898830000114],[-60.86229407499991,9.456122137000165],[-60.853586391999926,9.446437893000109],[-60.83824622299996,9.42519765800013],[-60.823353644999905,9.41054922100011],[-60.82013912699995,9.406195380000128],[-60.818430141999954,9.401190497000172],[-60.81786048099988,9.394680080000086],[-60.81529700399998,9.392279364000144],[-60.80239824099996,9.388902085000126],[-60.79743404899992,9.3847110050001],[-60.78905188699985,9.364243882000125],[-60.78380286399996,9.33860911700016],[-60.78538977799992,9.313544012000165],[-60.79743404899992,9.29474518400012],[-60.79938717399994,9.303168036000073],[-60.801991339999866,9.307684637000122],[-60.81041419199991,9.315863348000121],[-60.81574459499987,9.30158112200013],[-60.81749426999997,9.285630601000122],[-60.821888800999936,9.272772528000102],[-60.83527584499987,9.267401434000135],[-60.85065670499989,9.264227606000176],[-60.87360592399997,9.250148830000128],[-60.88304602799991,9.24697500200007],[-60.89464270699991,9.245794989000144],[-60.906971808999856,9.242824611000131],[-60.918365037999926,9.238470770000134],[-60.92711341099991,9.233303127000127],[-60.93342037699995,9.222357489000075],[-60.93797766799989,9.216131903000102],[-60.94420325399994,9.213446356000134],[-60.94554602799993,9.212347723000093],[-60.968658006999874,9.206000067000145],[-61.024159308999934,9.153265692000147],[-61.047230597999906,9.145168361000131],[-61.06676184799988,9.132310289000102],[-61.085438605999855,9.102443752000111],[-61.112049933999906,9.041489976000122],[-61.09764563699994,9.047186591000113],[-61.084543423999946,9.059393622000172],[-61.07481848899991,9.073919989000117],[-61.07115637899994,9.086493231000103],[-61.06627356699989,9.095119533000116],[-60.98399817599994,9.167385158000087],[-60.95913652299989,9.182521877000083],[-60.955067511999914,9.165025132000137],[-60.96003170499998,9.15509674700013],[-60.975168423999975,9.139960028000132],[-60.98232988199993,9.130845445000148],[-60.98521887899994,9.12213776200015],[-60.98875891799992,9.100409247000087],[-60.99258378799993,9.093003648000192],[-60.99901282499985,9.08527252800009],[-61.001820441999904,9.07737864800012],[-61.002268032999886,9.058539130000085],[-61.006581183999906,9.048773505000142],[-61.01683508999994,9.043158270000134],[-61.02843176999993,9.039496161000088],[-61.03697669199997,9.035305080000157],[-61.071888800999886,8.997748114000144],[-61.078521287999955,8.997463283000116],[-61.0821833979999,8.9884300800001],[-61.099680141999954,8.960353908000101],[-61.10586503799993,8.945298570000176],[-61.117746548999975,8.903713283000116],[-61.11953691299996,8.887600002000141],[-61.112660285999965,8.867254950000145],[-61.112049933999906,8.857123114000089],[-61.12682044199988,8.814520575000145],[-61.18008378799996,8.73582591400016],[-61.19399980399993,8.692694403000147],[-61.19871985599994,8.644680080000157],[-61.20946204299986,8.609035549000112],[-61.233306443999936,8.589300848000079],[-61.277211066999875,8.589016018000137],[-61.33551998599998,8.60748932500016],[-61.34854081899997,8.610093492000159],[-61.523060675999886,8.596625067000076],[-61.566883917999945,8.60659414300008],[-61.60553951699989,8.630560614000117],[-61.62535559799991,8.630194403000102],[-61.64517167899992,8.62665436400013],[-61.659047003999916,8.616522528000159],[-61.6607559889999,8.596421617000118],[-61.651966925999936,8.58584219000008],[-61.59874426999996,8.555487372000101],[-61.56114661399996,8.548041083000115],[-61.5519099599999,8.54498932500013],[-61.545643683999856,8.538234768000095],[-61.54116777299989,8.531236070000105],[-61.5372615229999,8.527573960000069],[-61.52660071499985,8.52716705900015],[-61.50918535099989,8.532863674000124],[-61.499663865999906,8.534369208000086],[-61.498158331999946,8.531480210000055],[-61.48664303299992,8.518296617000187],[-61.470773891999976,8.504136460000083],[-61.4641820949999,8.501288153000132],[-61.45164954299992,8.500230210000083],[-61.44652258999988,8.497259833000072],[-61.437896287999905,8.483140367000132],[-61.43423417899993,8.47915273600016],[-61.414662238999966,8.476792710000112],[-61.37596594999991,8.485988674000083],[-61.35912024599992,8.48655833500014],[-61.34911048099995,8.47931549700013],[-61.342518683999856,8.465806382000054],[-61.33751380099991,8.450628973000065],[-61.33177649599995,8.43817780200014],[-61.32115637899991,8.428208726000065],[-61.295277472999885,8.412339585000126],[-61.28404700399989,8.39720286700013],[-61.25279700399991,8.418605861000074],[-61.24014238199995,8.43211497600005],[-61.23497473899994,8.448716539000102],[-61.22838294199989,8.460598049000154],[-61.21288001199986,8.474188544000114],[-61.19489498599992,8.486273505000113],[-61.18101966099994,8.493394273000163],[-61.15904700399991,8.49827708500014],[-61.09508216099994,8.493394273000163],[-61.04857337099988,8.50177643400012],[-61.02660071499989,8.500921942000119],[-61.02391516799989,8.48655833500014],[-61.04015051999994,8.47284577000012],[-61.07799231699988,8.466457424000096],[-61.085438605999855,8.448716539000102],[-61.0865779289999,8.426947333000143],[-61.085764126999976,8.415594794000171],[-61.08202063699985,8.407782294000171],[-61.071888800999886,8.40330638200011],[-61.06956946499991,8.412665106000148],[-61.07115637899994,8.43817780200014],[-61.06655839799993,8.456284898000149],[-61.06191972599989,8.459865627000127],[-61.05064856699991,8.466131903000175],[-61.040842251999976,8.468085028000118],[-61.02965247299997,8.467515367000146],[-61.020375128999916,8.468817450000145],[-61.01646887899992,8.476019598000093],[-61.01447506399998,8.484849351000136],[-61.00951087099992,8.49506256700009],[-61.003814256999924,8.503566799000112],[-60.992421027999875,8.512193101000122],[-60.99038652299995,8.524155992000146],[-60.9892471999999,8.548041083000115],[-60.98729407499988,8.557806708000072],[-60.98721269399988,8.564886786000116],[-60.984771287999955,8.570542710000112],[-60.97557532499988,8.57599518400015],[-60.956613735999944,8.56899648600016],[-60.93712317599988,8.572211005000128],[-60.917103644999905,8.579046942000147],[-60.81798255099994,8.590277411000145],[-60.69245357999989,8.604681708000115],[-60.673898891999904,8.59271881700009],[-60.6678767569999,8.58258698100012],[-60.653960740999906,8.571193752000156],[-60.63805091099991,8.561183986000088],[-60.62608801999997,8.555487372000101],[-60.606312628999945,8.551092841000113],[-60.544178839999915,8.548041083000115],[-60.47891191299993,8.532375393000137],[-60.46157792899993,8.534369208000086],[-60.458241339999915,8.538885809000135],[-60.44733639199992,8.561712958000058],[-60.42686926999996,8.582831122000158],[-60.40371660099992,8.622503973000093],[-60.37189693899998,8.635402736000103],[-60.19782467399997,8.623846747000172],[-60.157460089999915,8.613348700000103],[-60.11900794199991,8.596421617000118],[-60.083607550999915,8.573716539000173],[-60.06436113199996,8.565130927000068],[-60.02098548099991,8.558010158000116],[-60.02097657399985,8.557976760000187],[-59.95969458099997,8.46816640300011],[-59.855618244999924,8.352126974000086],[-59.81559484899995,8.287763977000097],[-59.81665421599993,8.26719675700019],[-59.82928910299995,8.245105083000098],[-59.84846105999989,8.227741801000178],[-59.86920914699991,8.221127218000092],[-59.88975052899988,8.219886983000137],[-59.939721638999885,8.208440654000128],[-59.95705908199997,8.200146587000177],[-59.96767858899997,8.188390198000178],[-59.99331009899992,8.168520609000097],[-60.00067399099992,8.152940165000146],[-60.000544799999886,8.138548279000148],[-59.99801265499992,8.12705027300012],[-59.99933040399995,8.115397237000153],[-60.01100927799993,8.100436911000187],[-60.019458373999925,8.060310161000174],[-60.0295869549999,8.042817688000126],[-60.046485148999885,8.032921652000141],[-60.06800838299991,8.03175893200013],[-60.10790258899996,8.035557150000159],[-60.12921911699996,8.028813375000126],[-60.14978633699994,8.01346547500016],[-60.16572851599997,7.99703236900018],[-60.18309179699988,7.98266632100018],[-60.231125040999956,7.964114482000141],[-60.24301061999997,7.950575256000164],[-60.253294229999966,7.934555562000113],[-60.26799843699987,7.921262469000169],[-60.27187190799992,7.917760722000152],[-60.32034440099997,7.884739482000086],[-60.3424102379999,7.864792379000164],[-60.350420084999975,7.8417963670002],[-60.37475968499987,7.823606263000072],[-60.418503784999956,7.819368795000116],[-60.50327897199988,7.820867412000126],[-60.525758219999915,7.813374329000098],[-60.53984004799992,7.800093486000094],[-60.55958044499988,7.763041483000122],[-60.5820855309999,7.736324769000149],[-60.58699479199993,7.727126363000153],[-60.587718261999925,7.71834137000016],[-60.58441096999994,7.699376119000121],[-60.58451432299995,7.688524068000162],[-60.599862223999935,7.661548971000144],[-60.597459269999966,7.646717834000114],[-60.601257486999906,7.63385040300011],[-60.61066259799987,7.626822408000108],[-60.6251578369999,7.629457906000126],[-60.63169490599998,7.624600322000105],[-60.64148758999993,7.610906067000172],[-60.65562109399988,7.585222880000103],[-60.6711498619999,7.56605092400018],[-60.71649593199993,7.551581523000152],[-60.730577758999935,7.525433248000154],[-60.729699259999904,7.510343730000158],[-60.723833984999914,7.495822652000115],[-60.70065710499992,7.4534996550002],[-60.68812556999992,7.44864207000009],[-60.67419877199992,7.445489807000128],[-60.66063370799994,7.436136373000181],[-60.65626704999996,7.428798320000098],[-60.65582779999993,7.422855530000091],[-60.65691300499992,7.416551005000173],[-60.65727473999994,7.408127747000094],[-60.65324397799994,7.39846425400016],[-60.645156616999934,7.393399963000177],[-60.63608740299989,7.389834290000111],[-60.628981892999946,7.384356588000131],[-60.622005574999946,7.371540833000139],[-60.61055924499993,7.343635559000163],[-60.60177425199995,7.330148011000104],[-60.599862223999935,7.321879781000148],[-60.59996557699994,7.313921610000179],[-60.602239339999905,7.306531881000168],[-60.60676102799991,7.299452209000151],[-60.63110062699991,7.277696432000141],[-60.64355464699992,7.250669658000106],[-60.64306372099989,7.220904032000121],[-60.62841345299998,7.191138408000128],[-60.61763891599994,7.180389710000114],[-60.54800492399994,7.125509338000184],[-60.53490494799987,7.125767721000159],[-60.5128649499999,7.165196839000173],[-60.49661271199998,7.180596416000157],[-60.47532202199989,7.188502910000111],[-60.449509643999875,7.18834788000008],[-60.43713313799992,7.183748678000113],[-60.42674617499997,7.176875713000143],[-60.41581660999992,7.171346334000149],[-60.40147640099993,7.170881246000121],[-60.3851724859999,7.173310038000182],[-60.372020833999926,7.172276509000198],[-60.3601094169999,7.165765279000126],[-60.34827287499994,7.152684071000124],[-60.34757788099998,7.151915995000167],[-60.31282548099994,7.132589009000114],[-60.29993221099994,7.121013489000163],[-60.29233577499988,7.105252177000181],[-60.291586466999966,7.088302307000092],[-60.29579809599991,7.070732321000107],[-60.303575398999925,7.054144185000112],[-60.313419759999896,7.040243225000125],[-60.32755326399994,7.028564352000146],[-60.34458064799989,7.017608948000174],[-60.35969600399997,7.004896546000126],[-60.368093424999955,6.988101705000162],[-60.37734350599997,6.938544007000189],[-60.394190022999936,6.948465881000089],[-60.42095841499991,6.94221303400019],[-60.54872839399993,6.863096415000186],[-60.62068782599991,6.845888164000115],[-60.63954972399992,6.837723287000187],[-60.655801961999934,6.824571635000126],[-60.68414648499993,6.784031474000116],[-60.70034704699992,6.767081604000111],[-60.72153438299998,6.759691874000097],[-60.73646887199995,6.764782003000093],[-60.773055785999894,6.788423971000114],[-60.79351965299994,6.793824158000163],[-60.80525020399994,6.792480571000111],[-60.8282978929999,6.787132059000156],[-60.83762548799992,6.786356913000148],[-60.8496144209999,6.789948426000123],[-60.85852860499992,6.796459656000181],[-60.86571162999987,6.803306783000153],[-60.87240372799996,6.808112692000151],[-60.89457291699992,6.814158834000096],[-60.90756953999993,6.815244039000092],[-60.91338313799991,6.811213277000192],[-60.91116105199993,6.800025329000149],[-60.90129085299992,6.786021016000149],[-60.899068766999925,6.776770935000144],[-60.899482177999936,6.768554383000108],[-60.901239176999916,6.764420268000094],[-60.92836930399997,6.735869039000121],[-60.93382116699988,6.731734925000112],[-60.954595093999934,6.728737691000092],[-61.00025122099992,6.734370422000126],[-61.01867386999994,6.72044362400014],[-61.04006791199993,6.726980693000201],[-61.06122941099997,6.730081279000145],[-61.07040197799998,6.711865336000102],[-61.08905716999996,6.717498067000135],[-61.110967976999916,6.719513449000175],[-61.12982987499993,6.715844421000085],[-61.1393124999999,6.704449768000188],[-61.17065425599992,6.66850881000012],[-61.19018794799993,6.632877909000143],[-61.20478653999991,6.595825908000165],[-61.211969563999844,6.56143524200013],[-61.20966996299992,6.540971375000169],[-61.2000839849999,6.531101176000092],[-61.186131347999925,6.523323873000081],[-61.17086096199997,6.50924204500015],[-61.16303198299994,6.494281718000181],[-61.15347184299994,6.464361064000158],[-61.1425939529999,6.449426575000188],[-61.139751749999924,6.441261698000175],[-61.1385631919999,6.433070984000153],[-61.13897660299992,6.424802755000201],[-61.1410953379999,6.416457011000134],[-61.14993200799998,6.404442241000169],[-61.15481542999993,6.390567119000195],[-61.16091324899988,6.342353007000113],[-61.159492146999895,6.331268412000099],[-61.15197322599994,6.303363139000112],[-61.1467022299999,6.294216411000121],[-61.129080566999924,6.283312683000162],[-61.12414546799996,6.276233012000134],[-61.12135493999992,6.269463400000106],[-61.11794429499992,6.267241313000099],[-61.11479203299993,6.264011536000125],[-61.11285416699991,6.254141337000134],[-61.11804764899992,6.216236674000143],[-61.118357706999916,6.202568258000127],[-61.1215616449999,6.186651916000187],[-61.13269791699992,6.18355133100016],[-61.14734818499997,6.185049948000156],[-61.16111995499992,6.182879537000176],[-61.17398738699992,6.171639913000206],[-61.18473608499994,6.146008403000152],[-61.19447709099998,6.132856750000172],[-61.20651770099997,6.125777079000159],[-61.222924967999916,6.120531921000136],[-61.25610123699994,6.114382426000162],[-61.26938208099994,6.107225240000119],[-61.27855464699993,6.093040060000162],[-61.291189534999965,6.061155701000189],[-61.33808589699993,5.986793314000096],[-61.352762003999906,5.975191956000145],[-61.38627417099991,5.956588440000189],[-61.39671280899994,5.945581360000105],[-61.37960791099991,5.905299581000151],[-61.347361816999914,5.869668681000163],[-61.27160416699993,5.786107890000082],[-61.195820678999944,5.702676290000099],[-61.12001135299996,5.619115499000188],[-61.044253702999896,5.535606385000107],[-60.96849605399989,5.452071432000196],[-60.892660888999906,5.368562317000126],[-60.816903239999895,5.285079041000131],[-60.73985367899988,5.202138367000188],[-60.711018228999926,5.19815928200012],[-60.68486995499992,5.188314921000142],[-60.66430273499994,5.170254008000143],[-60.59867366599991,4.996879578000133],[-60.59192989199997,4.949724834000122],[-60.6126263029999,4.900580546000156],[-60.68006404699991,4.817949931000114],[-60.71814957699988,4.784282735000161],[-60.76367651399994,4.755085552000139],[-60.86002722199993,4.712426656000147],[-60.86868302499996,4.711186422000196],[-60.8879583339999,4.711134745000095],[-60.895813151999924,4.708525085000176],[-60.90343542499991,4.699585062000153],[-60.93105647799993,4.637392477000148],[-60.94040991199994,4.594061788000175],[-60.94779964299996,4.573597921000129],[-60.97728104699988,4.534969788000126],[-61.0119559329999,4.51830413800019],[-61.09546504699998,4.507684631000117],[-61.15119807999994,4.492052510000164],[-61.168587198999944,4.490243835000172],[-61.18592464199988,4.49411956800013],[-61.220108602999936,4.510681865000123],[-61.23806616299992,4.515875346000144],[-61.297261515999935,4.52373016400017],[-61.3155808109999,4.520784607000166],[-61.32294470299991,4.508847351000128],[-61.29584041399994,4.469004822000102],[-61.29304988599998,4.448050029000115],[-61.308242756999896,4.433322246000117],[-61.33322831299998,4.423865459000139],[-61.36002254299988,4.4189303590001],[-61.3810806889999,4.417741801000175],[-61.438622396999925,4.421152446000106],[-61.458181925999945,4.419137064000154],[-61.501874348999905,4.401851298000153],[-61.51642126499988,4.374772848000191],[-61.522364054999876,4.297774964000084],[-61.52673071299998,4.285501811000145],[-61.5335003259999,4.273590393000106],[-61.54210445199993,4.263022562000131],[-61.55215551799998,4.25496104000014],[-61.56727087499987,4.248527324000108],[-61.57657263199991,4.249715881000128],[-61.585409301999896,4.253410746000128],[-61.59907771799994,4.254392599000184],[-61.610188150999925,4.251627909000135],[-61.628223225999925,4.243463033000126],[-61.64052221799997,4.241912740000187],[-61.64915218099992,4.243411357000112],[-61.68054561399995,4.252480571000163],[-61.71888952599996,4.254650980000164],[-61.73780310099991,4.252067159000163],[-61.756354939999966,4.246356914000117],[-61.77919592299986,4.232688497000183],[-61.83102738499994,4.176929627000149],[-61.84704707899991,4.166051737000188],[-61.866890828999885,4.15703420000014],[-61.88812984199986,4.150161235000084],[-61.908231973999925,4.146156311000183],[-61.93148636999993,4.146414693000153],[-61.950348266999946,4.152228292000132],[-61.96859004699993,4.160083110000159],[-61.9901907959999,4.166413473000176],[-62.03504593999989,4.159876404000116],[-62.11111364799988,4.10484100400015],[-62.15359167499988,4.090294088000107],[-62.192659057999926,4.094738261000201],[-62.38417191599993,4.173467306000191],[-62.428096883999864,4.183182475000137],[-62.462978474999936,4.174707540000142],[-62.46654414899993,4.168738912000123],[-62.46985144099991,4.151608175000163],[-62.475174112999944,4.143882548000163],[-62.48370072499998,4.139179993000184],[-62.514913289999946,4.133108012000136],[-62.53697912599995,4.12540822400014],[-62.54643591399994,4.113910218000128],[-62.548606322999916,4.098071391000119],[-62.54881302999987,4.077452494000113],[-62.56095699099986,4.037790833000145],[-62.588655558999896,4.030711162000117],[-62.67066605699997,4.043656108000135],[-62.7274584559999,4.038514302000138],[-62.744356648999904,4.034018453000115],[-62.766215779999946,4.020711772000197],[-62.77065995299995,4.005389710000131],[-62.76740433799998,3.987096252000157],[-62.76626745599995,3.96469452000018],[-62.77319209899994,3.939941508000146],[-62.78280391499996,3.920046081000151],[-62.78879838099996,3.899401347000136],[-62.785129353999885,3.872297058000172],[-62.77980668199992,3.861289978000172],[-62.774277302999934,3.85485626200014],[-62.77019486499992,3.847828267000124],[-62.76683589699991,3.822041727000127],[-62.74957596899991,3.783568624000154],[-62.74042924099993,3.741943258000148],[-62.739912475999915,3.700447083000171],[-62.74957596899991,3.660372010000088],[-62.77102168799984,3.623345846000134],[-62.78631791299991,3.604406434000083],[-62.79644649299987,3.597300924000066],[-62.80776363199993,3.596680807000084],[-62.8223363859999,3.598825378000157],[-62.83158646699991,3.594872131000102],[-62.85127518799996,3.577224630000018],[-62.87199743699997,3.565468241000104],[-62.88941239499991,3.560817362000137],[-62.9077058519999,3.560972392000082],[-62.931011922999915,3.563762919000055],[-62.95106237799988,3.570170797000173],[-62.975143595999924,3.583064067000094],[-62.99705440299996,3.599135437000143],[-63.01069698099988,3.61497426300015],[-63.02495967699994,3.63776357100015],[-63.130844685999925,3.76212290500014],[-63.19321813999996,3.806745504000161],[-63.251199096999926,3.886559754000146],[-63.28597733599989,3.920821229000154],[-63.351709757999934,3.958725891000157],[-63.39144893399992,3.97156748500015],[-63.42540034999984,3.968363546000177],[-63.44824133299994,3.939373068000108],[-63.455372680999886,3.90058990500016],[-63.468860229999876,3.867232768000108],[-63.510666463999904,3.854546204000144],[-63.55422969599996,3.875371806000203],[-63.622804321999894,3.935213114000163],[-63.67158687399993,3.946246033000165],[-63.69075882999993,3.943998108000159],[-63.74589758399991,3.930278015000127],[-63.77101232999987,3.928805237000134],[-63.790597696999974,3.933042705000091],[-63.83111201999989,3.949449971000135],[-63.87514034099994,3.949811707000137],[-63.91684322199998,3.929373678000089],[-63.956944132999894,3.901881816000113],[-63.99642492699991,3.880797832000084],[-64.0376627199999,3.882503154000148],[-64.06381099499993,3.911596985000145],[-64.07902970399994,3.953093160000122],[-64.09577286799988,4.024380799000184],[-64.10814937299995,4.058099670000161],[-64.12509924299988,4.088485412000111],[-64.14669999199992,4.110551249000196],[-64.17269323699989,4.12339284300019],[-64.24059606999995,4.142022197000159],[-64.36498124199993,4.151866557000133],[-64.58967036999991,4.118871155000164],[-64.60822220899992,4.126493429000135],[-64.62106380299991,4.146879781000081],[-64.63690262899992,4.191114808000108],[-64.6480241889999,4.207904544000186],[-64.66098384699995,4.227469177000089],[-64.69987036199991,4.264159444000143],[-64.74593990099996,4.287620545000124],[-64.79162186699996,4.28441660600015],[-64.80505773899992,4.271885071000142],[-64.81291255799994,4.252790629000159],[-64.81554805499988,4.231034851000146],[-64.8130417489999,4.210570984000184],[-64.80125952199998,4.188530985000099],[-64.783663697,4.177084656000176],[-64.76294144699997,4.168997294000177],[-64.74190913899994,4.157189230000171],[-64.72710384199993,4.140781962000119],[-64.71953324399996,4.123237813000159],[-64.7074409589999,4.082956034000119],[-64.66289587499998,3.997043966000163],[-64.66289587499998,3.996992290000151],[-64.66279252199988,3.996992290000151],[-64.66279252199988,3.996914774000131],[-64.64289709499997,3.972962748000128],[-64.59610408599994,3.935884908000147],[-64.57496842499998,3.914206645000164],[-64.53143103099995,3.853512675000161],[-64.43453771999995,3.778478496000091],[-64.39448848499995,3.756076762000191],[-64.34735957899994,3.738300069000076],[-64.32415685999987,3.724114889000106],[-64.26555578699993,3.652207133000075],[-64.22209590699993,3.61621449800019],[-64.20297562699992,3.594717102000146],[-64.19574092599996,3.570067444000145],[-64.19563757299994,3.532912089000149],[-64.19785965999995,3.515083720000121],[-64.20506852299991,3.497074483000119],[-64.23212113499994,3.46113352500015],[-64.24214636299988,3.442969259000037],[-64.24560868299992,3.4189397170001],[-64.21987381999992,3.292875062000135],[-64.21630814699995,3.251430562000081],[-64.22537735999992,3.165596009000069],[-64.22292272999994,3.123996481000148],[-64.20530106699997,3.089166565000099],[-64.1734683839999,3.05190785700016],[-64.13750158799994,2.987260640000102],[-64.10595312599997,2.947211405000118],[-64.02908443299988,2.79796986900007],[-64.01223791599992,2.744019674000029],[-64.00086909999989,2.725364482000145],[-63.997561808999905,2.714925842000113],[-63.997871866999894,2.705985819000176],[-64.00443477399998,2.679527486000097],[-64.00769038899998,2.622786763000164],[-64.0121862389999,2.603769837000101],[-64.05053015199991,2.534678447000047],[-64.0578165289999,2.510442200000142],[-64.05662797099986,2.488531393000102],[-64.0479721689999,2.471323140000123],[-64.03249507699991,2.463003235000158],[-64.01079097599992,2.468170878000151],[-63.95182816599989,2.461504618000063],[-63.83131872599994,2.428638408000126],[-63.767033243999975,2.429310201000192],[-63.70409134999996,2.437578431000062],[-63.57381506399988,2.43437449100017],[-63.510666463999904,2.424659322000053],[-63.38483435099994,2.420576884000127],[-63.36488724799992,2.413083802000102],[-63.36111486899997,2.400009664000137],[-63.37124344899994,2.365128073000164],[-63.372793741999935,2.349108378000111],[-63.370519979999926,2.281153870000139],[-63.37263871299993,2.266839498000152],[-63.38654594199997,2.235888844000086],[-63.400595662999905,2.204621074000144],[-63.4039029539999,2.188498026000076],[-63.40219763199994,2.170514628000177],[-63.41175777199993,2.149378967000146],[-63.443435425999944,2.137183329000123],[-63.510666463999904,2.124600119000206],[-63.5205366619999,2.124496765000174],[-63.54895869999992,2.128372498000132],[-63.56198116099994,2.126357117000097],[-63.617533324999954,2.101164856000139],[-63.76264074799988,1.985668030000156],[-63.78320796799997,1.974996847000156],[-63.802276570999936,1.972309672000137],[-63.92082230599997,1.974325053000171],[-63.958339396999946,1.970707703000187],[-63.99502966299994,1.958021139000152],[-64.03662919099992,1.927273661000185],[-64.05360489999995,1.893709819000165],[-64.06029699799987,1.807461853000135],[-64.07595495599992,1.745372620000083],[-64.07254431199989,1.684575297000066],[-64.07541235399995,1.665429179000142],[-64.08086421799996,1.647394104000142],[-64.09295650299993,1.622615255000113],[-64.10954463699993,1.598456523000067],[-64.12972428399992,1.578070170000032],[-64.17708573399997,1.551146749000097],[-64.23214697299994,1.497144877000125],[-64.30152258399991,1.446657003000027],[-64.32188309799994,1.424436137000072],[-64.34074499599987,1.384206034000144],[-64.35294063399996,1.365835063000063],[-64.37009720899994,1.358729554000206],[-64.38957922399993,1.369297384000092],[-64.39477270599994,1.392190044000116],[-64.39136206099991,1.417718201000142],[-64.38503169799989,1.436399232000127],[-64.36381852299994,1.477352803000144],[-64.36459366899993,1.497093201000112],[-64.38642696199989,1.510244853000174],[-64.4090095629999,1.507506002000056],[-64.43309077999996,1.494044292000183],[-64.47505204299995,1.463012594000148],[-64.52791703299991,1.435727437000054],[-64.55119726599995,1.419526876000134],[-64.57026586899991,1.395497335000115],[-64.5911689859999,1.350099589000166],[-64.60421728599994,1.331289368000157],[-64.73087622099987,1.247573548000034],[-64.75121089799997,1.243336080000077],[-64.77131302999996,1.24674672400009],[-64.82143916799996,1.270569559000165],[-64.8392933759999,1.270827942000139],[-64.85531306999987,1.258683981000132],[-64.87771480399996,1.234912822000169],[-64.89740352399991,1.219668274000128],[-64.914663453,1.21475901300002],[-64.93293107099996,1.213002015000128],[-64.95605627399993,1.206800843000053],[-64.96646907599997,1.200599670000145],[-64.99936112499992,1.171970927000174],[-65.00334020999989,1.169387106000073],[-65.01321040899998,1.165769756000188],[-65.01744787599992,1.162979228000125],[-65.01969580199994,1.157708232000019],[-65.02070349199991,1.144013977],[-65.02248632899996,1.139983216000175],[-65.05961584499997,1.132386780000118],[-65.10051774199991,1.136107483000046],[-65.13676875899995,1.126909078000125],[-65.16017818299991,1.080193584000142],[-65.16844641199995,0.996477763000101],[-65.17898840299992,0.955395000000124],[-65.20304378299994,0.923820699000146],[-65.22314591499992,0.914363912000084],[-65.24337723899993,0.913123678000147],[-65.28438248699987,0.919376526000136],[-65.3102723799999,0.918653056000139],[-65.3271964109999,0.910281474000072],[-65.38902726199989,0.835660706000098],[-65.40000850399989,0.816540426000103],[-65.40962032099989,0.792149150000085],[-65.41083471699991,0.783880921000133],[-65.40943945399994,0.755252177000145],[-65.41388362599994,0.741609599000057],[-65.43274552499997,0.720939026000124],[-65.4512198489999,0.690139872000159],[-65.47287227499996,0.67251820900016],[-65.49783199099994,0.658720601000127],[-65.519691121,0.650865784000175],[-65.54266129599992,0.649315491000067],[-65.56048966599988,0.656033427000182],[-65.57431311099991,0.670244446000154],[-65.58521683799998,0.69148345900004],[-65.58733557199989,0.73912913000008],[-65.56328019299994,0.777938130000109],[-65.53317867099994,0.81633372000006],[-65.51700394699995,0.862790833000162],[-65.51850256399987,0.886510315000109],[-65.52511714699995,0.908317769000135],[-65.53581416899996,0.928471578000114],[-65.5598437099999,0.957978821000125],[-65.57085079,0.968572490000028],[-65.58294307499997,0.977667542000091],[-65.59604305099991,0.983610331000193],[-65.6081094969999,0.985263977000059],[-65.62872839399992,0.982008362000073],[-65.70104956099996,0.984385478000192],[-65.72097082599998,0.98190500900013],[-65.74543961599991,0.974153545000121],[-65.78541133699989,0.949142151000046],[-65.87196936099991,0.908989563000119],[-65.89176143399999,0.895605368000176],[-65.9142406819999,0.874624736000087],[-65.9526621099999,0.827960917000112],[-65.97408199099993,0.806980286000112],[-65.99418412299991,0.794732971000087],[-66.01384700599996,0.789668681000109],[-66.0574619139999,0.78698150600016],[-66.0791918539999,0.777576396000114],[-66.1111278889999,0.7418163050001],[-66.13438228399991,0.731119284000101],[-66.15634476699998,0.733031311000119],[-66.1730620939999,0.743056539000051],[-66.18903011099992,0.754942119000077],[-66.20874466999989,0.763106995000086],[-66.22827836099992,0.762796936000185],[-66.28507076099994,0.745847066000096],[-66.34620397999996,0.759386292000073],[-66.4070788169999,0.80207102500016],[-66.4494534909999,0.840208232000137],[-66.46769527199987,0.856641337000099],[-66.51590938399997,0.899946187000154],[-66.5840705979999,0.961131083000097],[-66.66220536299991,1.031411031000175],[-66.74039180599996,1.101587626000153],[-66.80855301999989,1.162772522000168],[-66.85676713099988,1.206077372000138],[-66.87506058799994,1.222510478000103],[-66.89588618999991,1.265298564000048],[-66.90089880399997,1.288966370000153],[-66.88250199499996,1.326018372000135],[-66.88353552199996,1.349944560000125],[-66.89118363499992,1.374542542000114],[-66.9017256269999,1.394463806000132],[-66.91190588499994,1.405186666000134],[-66.92337805199989,1.414359232000137],[-66.93273148599991,1.424642843000044],[-66.93650386599995,1.438517965000187],[-66.92968257699991,1.479497375000136],[-66.93360998599988,1.501692403000163],[-66.94317012599996,1.523189799000192],[-66.96446081599993,1.55830393500014],[-66.97417598499999,1.58003387500014],[-66.97805171699994,1.599722596000106],[-66.97805171699994,1.644293518000026],[-66.9808939209999,1.665945943000011],[-67.06683182799995,1.89412323000009],[-67.08481522699995,1.927997132000101],[-67.08729569499991,1.938823344000127],[-67.09158483899998,1.946523133000042],[-67.11034338399988,1.959519755000159],[-67.1180948489999,1.972387187000066],[-67.12553625599992,1.980500386000159],[-67.13261592599994,1.99080983500015],[-67.13514807199991,2.003341370000157],[-67.11902502499993,2.023986105000162],[-67.11463252799993,2.031298320000161],[-67.1111702069999,2.048842469000121],[-67.11463252799993,2.102999370000134],[-67.12098872899988,2.119096578000111],[-67.13602657099995,2.127132263000107],[-67.15411332199997,2.132687480000115],[-67.1692545169999,2.14116241500011],[-67.17783280499992,2.154494934000127],[-67.19426591099997,2.197024638000187],[-67.20134558099991,2.227927144000176],[-67.2172619219999,2.266064351000139],[-67.21767533399995,2.284512838000154],[-67.20630651899995,2.297793681000158],[-67.1870312099999,2.315983785000028],[-67.17375036599992,2.33644765200016],[-67.18015824399995,2.356498108000125],[-67.18573929899995,2.365489808000163],[-67.18610103399996,2.384455058000114],[-67.18971838399993,2.394376933000117],[-67.19762487799998,2.402025045000187],[-67.23136958799995,2.422333883000107],[-67.26656123899991,2.433754375000206],[-67.2757079669999,2.439387106000054],[-67.29472489499997,2.458352356000191],[-67.30568029799994,2.466207174000132],[-67.31663570199993,2.469462789000119],[-67.3254206949999,2.474630432000112],[-67.3312601319999,2.486671041000179],[-67.33580765899993,2.500313619000096],[-67.34061356599994,2.510493876000154],[-67.34986364799997,2.518452047000039],[-67.37203283699998,2.53044097900009],[-67.38154130099988,2.537779032000173],[-67.38810420799996,2.548165996000193],[-67.39322017499993,2.559328105000134],[-67.40035152299998,2.56821645100014],[-67.4129088949999,2.571885478000056],[-67.41699133299991,2.575761210000096],[-67.43264929299994,2.595398255000134],[-67.4361632899999,2.60356313000014],[-67.44034908099992,2.610022685000103],[-67.46174312299988,2.62040964700013],[-67.47088985299993,2.627127584000064],[-67.47502396699988,2.63467234300019],[-67.48101843299989,2.653534241000131],[-67.48520422399994,2.661905823000097],[-67.50029374199994,2.675341695000142],[-67.51879390499997,2.681026103000193],[-67.56370072499996,2.68174957300009],[-67.5755863039999,2.691103007000137],[-67.58147741699989,2.713065491000108],[-67.58705847199991,2.758127340000058],[-67.59429317299995,2.776110738000128],[-67.60845251499991,2.798589986000053],[-67.62659094299994,2.813421122000079],[-67.64565954699992,2.808666891000087],[-67.66560664899995,2.80132883700017],[-67.69041133699996,2.806341451000137],[-67.73164912999991,2.826340231000088],[-67.74255285699996,2.838587545000024],[-67.75102779099987,2.842101542000151],[-67.77019974799995,2.83243805000005],[-67.78141353399991,2.831507874000181],[-67.80332434099994,2.832593078000087],[-67.8233231209999,2.827322083000141],[-67.83334834799993,2.815229798000161],[-67.84125484199987,2.801432190000028],[-67.85593094899995,2.78975331600013],[-67.85525915499997,2.858172913000132],[-67.83861934499996,2.886129863000122],[-67.81360795099997,2.909332581000044],[-67.77076818899991,2.948968404000183],[-67.72798010299991,2.988604228000071],[-67.68514033999995,3.028240052000129],[-67.64230057799992,3.067824198000011],[-67.5995124929999,3.107460022000154],[-67.55662105299993,3.147044170000114],[-67.51383296799992,3.186731670000185],[-67.47094152899987,3.226315816000067],[-67.45218298399996,3.243679098000172],[-67.44024572799992,3.249415182000135],[-67.41838659699997,3.253704325000015],[-67.40805130999988,3.25727],[-67.39580399599991,3.266571757000094],[-67.33529089399991,3.342096863000108],[-67.30945267799987,3.383928935000171],[-67.30464676899994,3.425709331000135],[-67.33782303899997,3.460099996000167],[-67.37539180499991,3.474905294000095],[-67.3901195889999,3.485059713000069],[-67.40391719599995,3.504464213000134],[-67.4714066169999,3.680060730000136],[-67.4998286549999,3.71791371700013],[-67.53744909699992,3.735509542000102],[-67.5579129649999,3.734165955000136],[-67.57651647999995,3.730703633000189],[-67.59480993699992,3.73091034000015],[-67.61413692199997,3.740573832000081],[-67.63175858599995,3.761864523000071],[-67.63878658099995,3.785170594000107],[-67.64441931199987,3.834624939000136],[-67.65387609899993,3.859248759000124],[-67.69387365799992,3.928598531000162],[-67.69857621299991,3.949966736000178],[-67.70162512199994,4.011952616000116],[-67.71041011599993,4.035723775000179],[-67.71702469899992,4.039341125000163],[-67.71693248199992,4.039878247000104],[-67.71407914199992,4.056497701000125],[-67.7206420489999,4.07497202600014],[-67.73164912999991,4.086366679000136],[-67.74017574099992,4.118716126000123],[-67.758934285,4.138559875000126],[-67.77774450699991,4.153933614000096],[-67.78621944199992,4.172976380000165],[-67.79076696799987,4.204266459000166],[-67.79944860899991,4.235323995000115],[-67.80492631099992,4.268474426000125],[-67.79986201999992,4.306069031000135],[-67.78198197499995,4.338883565000145],[-67.77939815299996,4.350794983000185],[-67.78265376899995,4.36379160600012],[-67.79665808199996,4.385805766000188],[-67.79986201999992,4.398905741000149],[-67.79836340399993,4.406915589000135],[-67.79267899599998,4.420842387000121],[-67.7930924069999,4.428981425000131],[-67.79707149299996,4.434924215000137],[-67.80942215999991,4.439290873000132],[-67.81350459899993,4.443269959000119],[-67.82187618099991,4.478229065000107],[-67.82905920399995,4.491432394000184],[-67.84766272099992,4.504687399000189],[-67.84766272099992,4.497891948000144],[-67.85655106699994,4.504170634000161],[-67.86507767699993,4.512077128000115],[-67.87179561399996,4.521559753000176],[-67.87505122899995,4.532644348000189],[-67.8733975839999,4.546519471000167],[-67.86760982299992,4.553159892000167],[-67.86063350499992,4.557965800000176],[-67.85515580299995,4.566156515000102],[-67.85370886299994,4.575820007000132],[-67.85515580299995,4.607730204000105],[-67.84879960099991,4.634188538000089],[-67.84564733899995,4.689740703000083],[-67.8406347259999,4.711496480000093],[-67.83060949699988,4.727542013000146],[-67.82285803299996,4.743587545000196],[-67.82053259399993,4.78764170400018],[-67.81350459899993,4.806348572000161],[-67.81862056499992,4.815676168000095],[-67.81712194899993,4.821515605000172],[-67.81386633399993,4.828259379000201],[-67.81350459899993,4.84050669400014],[-67.81614009599994,4.847302145000185],[-67.82523514899992,4.864897970000172],[-67.82719885299993,4.871538391000172],[-67.82637202999993,4.894844462000108],[-67.8196024179999,4.933317566000156],[-67.80668330899996,4.972255757000141],[-67.80497798699992,4.991246846000194],[-67.8067349859999,5.035714417000179],[-67.8045645759999,5.040856221000169],[-67.79986201999992,5.045868835000135],[-67.79521114199997,5.052715963000196],[-67.7930924069999,5.063335470000183],[-67.79676143399988,5.070156759000142],[-67.81474483299988,5.090956523000102],[-67.82099768099997,5.100594177000119],[-67.82451167799994,5.110593567000122],[-67.82663041299989,5.120386251000184],[-67.82756058799995,5.1306956990001],[-67.82719885299993,5.142116191000184],[-67.82456335499991,5.154337667000121],[-67.8155716549999,5.177902120000113],[-67.81350459899993,5.186557923000165],[-67.81474483299988,5.210277405000113],[-67.81862056499992,5.227821554000172],[-67.82497676599993,5.242781881000141],[-67.8340201419999,5.258879090000121],[-67.84368363499992,5.297248840000137],[-67.83458858299997,5.33931345600017],[-67.80978389599991,5.378820089000115],[-67.77257686399992,5.409670919000177],[-67.76792598499993,5.410497742000117],[-67.7567121989999,5.408792420000154],[-67.75211299699995,5.409670919000177],[-67.74668697199988,5.414321798000145],[-67.73702347799994,5.42581980400017],[-67.73164912999991,5.430134786000153],[-67.70214188699998,5.441400248000207],[-67.69371862799997,5.4472138470001],[-67.67527014199996,5.46718678800012],[-67.66446976799995,5.474912415000118],[-67.65248083499998,5.477961324000147],[-67.6470031339999,5.483361511000112],[-67.63599605299989,5.519535014000141],[-67.63000158699998,5.526898906000142],[-67.62297359199997,5.533410136000114],[-67.61703080299995,5.54160085100014],[-67.6142919519999,5.553667298000121],[-67.61765091999993,5.558524882000128],[-67.63258540899997,5.573071798000085],[-67.63599605299989,5.577593485000121],[-67.63775305199997,5.597308045000162],[-67.64907019099996,5.65608998600014],[-67.64912186699988,5.701952820000201],[-67.64116369599992,5.74484425900016],[-67.62514400299995,5.784505921000132],[-67.60121781499996,5.820576070000129],[-67.54158321099996,5.876722514000093],[-67.53238480699994,5.8925613400001],[-67.48520422399994,5.94408274300018],[-67.47088985299993,5.952841899000163],[-67.43476802599992,5.968163961000129],[-67.42246903499998,5.978240865000173],[-67.41859330299994,5.995345764000206],[-67.42097041899987,6.01834177600017],[-67.42856685399994,6.038469747000135],[-67.45430171699994,6.056789042000119],[-67.49119868999993,6.114485779000091],[-67.49140539599992,6.152958883000139],[-67.4869612219999,6.16678232800011],[-67.47616084799998,6.178435364000165],[-67.45629939999992,6.193223721000109],[-67.44996089699995,6.197943218000162],[-67.45097237199988,6.198035463000153],[-67.49047521999995,6.201638082000073],[-67.51827713999992,6.222541199000147],[-67.54489050299995,6.248069356000187],[-67.57398433499995,6.266233622000129],[-67.73097733599991,6.302691345000127],[-67.80079219599989,6.308608297000134],[-67.8185172119999,6.313750102000128],[-67.82719885299993,6.313414205000143],[-67.8391361089999,6.307523092000139],[-67.85763627099993,6.288454488000156],[-67.86812658799997,6.279876201000135],[-67.87928869699991,6.277938334000112],[-67.8928279219999,6.2783000700001],[-67.90430008999991,6.275147807000138],[-67.90915767499993,6.262512919000115],[-67.91106970299995,6.252306824000144],[-67.91628902199994,6.242229920000099],[-67.92414384,6.234555970000201],[-67.93365230399988,6.231455383000167],[-67.94331579599988,6.229698385000105],[-67.97799068299992,6.217838644000082],[-68.01902176999995,6.211611634000178],[-68.14650752799992,6.223781433000099],[-68.19027746699989,6.217838644000082],[-68.30417232299996,6.176988424000172],[-68.34112097199997,6.176833394000127],[-68.4066983649999,6.194894308000144],[-68.42742061399994,6.197323100000104],[-68.4490213629999,6.194997661000158],[-68.52250524999995,6.173293559000172],[-68.58472367399989,6.170012106000171],[-68.59567907699993,6.164921977000105],[-68.62198238199991,6.141925964000151],[-68.63531490099993,6.135879822000106],[-68.65934444199995,6.138670349000164],[-68.70089229399994,6.157971497000105],[-68.72161454299996,6.162519023000144],[-68.7440937909999,6.164921977000105],[-68.80786250799991,6.18432647700017],[-68.82912735999989,6.187788798000113],[-68.89292191599992,6.18432647700017],[-68.91447098799998,6.18869313500015],[-68.93834549999997,6.197116394000147],[-68.96090226299988,6.202361553000159],[-68.97857560199989,6.197323100000104],[-69.0161702069999,6.213988750000127],[-69.03689245599995,6.218768819000132],[-69.06112870299992,6.217838644000082],[-69.0801973069999,6.209389547000171],[-69.10841263899997,6.182569479000094],[-69.12996171099994,6.169934591000157],[-69.18915706399991,6.112625427000182],[-69.24610449299988,6.080663554000111],[-69.2685837409999,6.097458395000159],[-69.31134598799991,6.146215108000206],[-69.33139644399995,6.156369527000081],[-69.35816483599993,6.15161529500017],[-69.40614640399987,6.129342753000131],[-69.43108028199993,6.122237244000188],[-69.43201856899995,6.122237244000188],[-69.44363765499993,6.122237244000188],[-69.47262813399993,6.158746643000114],[-69.54848913699993,6.254296366000176],[-69.62435013799987,6.349768575000127],[-69.70021114099987,6.445292460000175],[-69.77596879099994,6.540816345000124],[-69.85182979399997,6.636314393000177],[-69.92771663499988,6.731838278000126],[-70.00357763699989,6.827362163000174],[-70.0794128019999,6.922834371000121],[-70.09662105399988,6.944435120000094],[-70.12920304399992,6.972547099000138],[-70.15778011099988,6.979523418000127],[-70.19501297999992,6.977559713000105],[-70.23126399799995,6.968516337000139],[-70.28761714699996,6.936942037000151],[-70.31906225599991,6.938285624000129],[-70.42293188499994,6.987791646000176],[-70.43778885999987,6.993010966000099],[-70.4409669599999,6.995749817000132],[-70.44701310299988,7.00474151600018],[-70.45166398199993,7.00768707300017],[-70.46130163699986,7.008307190000153],[-70.48414261999997,7.005309957000136],[-70.49481380199995,7.005516663000094],[-70.5107043059999,7.009702454000134],[-70.52091040099995,7.015593567000123],[-70.57147578999991,7.079362284000155],[-70.57860713799994,7.085821838000115],[-70.5946785079999,7.082979635000143],[-70.62289383999988,7.074091288000119],[-70.6392752689999,7.073471171000151],[-70.67317500799993,7.081170959000147],[-70.68260595799997,7.084633281000094],[-70.69673946199993,7.096673889000158],[-70.70330236899991,7.099929504000143],[-70.73296463999998,7.099309388000165],[-70.7930643319999,7.085098369000206],[-70.83662756399994,7.081894430000148],[-70.87481644699992,7.069182027000181],[-70.89553869699995,7.068510233000111],[-70.90344519099997,7.063187561000163],[-70.90809606999994,7.053369039000188],[-70.91881892899997,7.039468079000116],[-70.96132279499992,7.00944407200015],[-71.0112680659999,6.990892232000121],[-71.06547664399992,6.98453603100009],[-71.13604081299988,6.992132467000147],[-71.14539424699991,6.986189678000144],[-71.15361079899995,6.977094625000162],[-71.16632320199992,6.968102926000128],[-71.18404821799993,6.962573547000119],[-71.19381506399989,6.96531239800008],[-71.20151485199996,6.971875305000154],[-71.21324540299997,6.977508036000174],[-71.26202795399993,6.9786965950002],[-71.27551550399997,6.984381002000148],[-71.2806831469999,6.994612936000124],[-71.2814582929999,7.007221985000156],[-71.28352534999996,7.018849183000114],[-71.29251704899991,7.025773824000098],[-71.30776159799996,7.027375793000131],[-71.34936112599993,7.019469299000178],[-71.36600093599998,7.020709534000119],[-71.39819535399991,7.029494527000111],[-71.41390498899997,7.030993144000206],[-71.4294595949999,7.027737529000134],[-71.45576289899995,7.015696920000152],[-71.4677001549999,7.012441304000163],[-71.48764725799992,7.028926086000155],[-71.50991979999989,7.034610494000106],[-71.52805822799989,7.029856262000108],[-71.52909175699997,7.028305969000172],[-71.52883337499992,7.02706573500015],[-71.548625448,7.028305969000172],[-71.54934891799988,7.029132793000201],[-71.55105423999996,7.031819967000132],[-71.55358638599995,7.037297668000122],[-71.55844396999996,7.041225078000181],[-71.56707393499991,7.039313050000175],[-71.58061315999988,7.031561584000158],[-71.58779618299994,7.029287821000152],[-71.59472082599993,7.030114645000168],[-71.60650305199991,7.038279521000092],[-71.6121874599999,7.046341044000172],[-71.6204040129999,7.052128805000152],[-71.65430375199992,7.053369039000188],[-71.66701615399995,7.051508688000183],[-71.67352738499991,7.044222310000109],[-71.66959997599994,7.027737529000134],[-71.69802201399997,7.034972229000103],[-71.72168981999991,7.033421936000167],[-71.74535762499993,7.029339498000155],[-71.77403804599993,7.028926086000155],[-71.77150589999994,7.011149394000128],[-71.77775874899996,7.007532044000143],[-71.78855912299989,7.009702454000134],[-71.7996178789999,7.009185689000091],[-71.81212357599989,7.001175842000109],[-71.82189042199994,6.992959290000087],[-71.83263911999995,6.986448059000111],[-71.84819372599988,6.983864238000194],[-71.8810082599999,6.986603089000155],[-71.96402071699993,7.005920692000132],[-71.99381791199993,7.012854716000092],[-71.99399817999995,7.012952970000142],[-72.00529007999995,7.01910756400018],[-72.02869950399992,7.038847962000148],[-72.04208369999995,7.046909485000143],[-72.06957556199993,7.05920847600008],[-72.08099605299995,7.066598206000094],[-72.09825598199991,7.086752014000155],[-72.1533430579999,7.192585348000121],[-72.16414343299994,7.220800680000181],[-72.17148148699994,7.249894511000179],[-72.17422033799997,7.279608460000162],[-72.17349686699995,7.288186747000097],[-72.16404008,7.328856099000149],[-72.16631384399992,7.334075419000158],[-72.17168819199989,7.337331034000143],[-72.20620804899997,7.381876119000154],[-72.23969437699994,7.391281230000104],[-72.32180822799994,7.390040995000163],[-72.37079748599987,7.399084371000128],[-72.39581243299992,7.407491518000199],[-72.4146190999999,7.413812155000129],[-72.45130936699996,7.440218811000193],[-72.4786978759999,7.484453837000117],[-72.482005168,7.508018290000123],[-72.47590734899993,7.52863718700013],[-72.46738073799992,7.548739319000092],[-72.46340165199992,7.57075347900016],[-72.46681229699996,7.589873759000156],[-72.48040319899988,7.628941142000173],[-72.48334875499995,7.649353333000121],[-72.47415034999995,7.754153137000102],[-72.45415157099993,7.815234681000106],[-72.45177445499986,7.832804667000161],[-72.45446162999991,7.876161194000147],[-72.45864741999993,7.893524475000163],[-72.46567541499988,7.904583232000164],[-72.48665604699997,7.928716126000126],[-72.49120357299998,7.937501119000117],[-72.48779292899988,7.949179993000186],[-72.47880122899991,7.955536194000117],[-72.46743241399994,7.959670309000145],[-72.45673539199993,7.964941304000163],[-72.44190425699989,7.977136942000186],[-72.43012202999998,7.990521139000123],[-72.42185380099994,8.006230774000187],[-72.41709956899987,8.025764465000108],[-72.40707434199993,8.04377370200018],[-72.38831579699993,8.046176657000146],[-72.36723181199991,8.042688497000185],[-72.35007523599995,8.042585144000071],[-72.33384883599993,8.065477804000182],[-72.33576086499997,8.103899231000128],[-72.3572582599999,8.172137960000072],[-72.39053788299995,8.234330546000166],[-72.39596390799991,8.25660308800012],[-72.39477535099991,8.272803650000128],[-72.38583532799996,8.30551483100011],[-72.38397497599996,8.321792908000134],[-72.3867655029999,8.338613587000111],[-72.39353511599995,8.355382589000158],[-72.403250286,8.370497946000157],[-72.41508418799992,8.382409363000193],[-72.41560920699992,8.382691114000151],[-72.4249543869999,8.387706197000142],[-72.43441117399996,8.390186666000204],[-72.44453975399992,8.394114075000173],[-72.45627030499992,8.40393259700015],[-72.47993811099994,8.429331563000147],[-72.49952347899995,8.450441386000179],[-72.51921219999991,8.471525371000112],[-72.53884924399995,8.49260935500014],[-72.5585379639999,8.513719178000173],[-72.5780716559999,8.534854839000117],[-72.59776037699996,8.55596466100016],[-72.61734574499988,8.57704864500009],[-72.63708614099994,8.598184306000135],[-72.65543127499993,8.617898865000186],[-72.67543005399995,8.651514384000123],[-72.68602372299992,8.691692810000134],[-72.69749589099993,8.735385234000205],[-72.70901973499988,8.779051819000173],[-72.72049190299988,8.822744243000145],[-72.73206742399995,8.8663849900002],[-72.74353959199996,8.910051575000168],[-72.75506343599997,8.953743998000135],[-72.76658727999992,8.997384746000193],[-72.77805944899993,9.041051331000162],[-72.78307206299989,9.059939067000187],[-72.8000219329999,9.07944692000018],[-72.78560420799997,9.102442933000134],[-72.79103023299987,9.113940939000159],[-72.80767004399988,9.123733622000131],[-72.82668697199995,9.141691182000102],[-72.83412837799997,9.133629659000121],[-72.84151810799997,9.133784688000148],[-72.85025142399992,9.136730245000152],[-72.86172359299988,9.137040304000138],[-72.87402258299991,9.133422954000153],[-72.88198075399994,9.129366353000151],[-72.91619055199996,9.10696462100016],[-72.93639603699995,9.099187317000156],[-72.95530961199998,9.103993225000153],[-72.97318965699993,9.1284361780001],[-72.97866735899993,9.150140280000187],[-72.97603186099994,9.192127380000116],[-72.98006262299992,9.216518656000133],[-72.9828531499999,9.220962830000147],[-72.99220658399992,9.23034210200018],[-72.99561722799996,9.235354716000145],[-72.9954621999999,9.239101258000161],[-72.9914314369999,9.247937927000164],[-72.99112137899994,9.251684468000178],[-73.00357539899991,9.287909648000138],[-73.00972489499989,9.295376892000164],[-73.03266923099991,9.294601746000152],[-73.07602575699991,9.254268290000182],[-73.09876338799998,9.241581727000138],[-73.12434322199992,9.234476217000122],[-73.14186153199998,9.22302988700011],[-73.17617468299991,9.190938823000181],[-73.21224483299991,9.173446350000134],[-73.25384436099992,9.16771026600017],[-73.36364498199995,9.165032761000148],[-73.3778161219999,9.164687195000155],[-73.39114864099992,9.17277455600015],[-73.39083858299992,9.194504496000148],[-73.37910803299994,9.213883159000204],[-73.3421593839999,9.239178772000102],[-73.32438269099998,9.255921936000135],[-73.31177364099995,9.276230774000153],[-73.27740881299991,9.361806946000115],[-73.19741369699997,9.478673197000163],[-73.17844844599992,9.523037415000204],[-73.16372066299994,9.536344096000136],[-73.12361975099992,9.56125213700011],[-73.10765173399997,9.577995301000144],[-73.09716141799993,9.59636627200014],[-73.07189164299986,9.664088237000144],[-73.01690791899992,9.748605041000104],[-72.98554032399991,9.812167053000167],[-72.97763382999995,9.838056946000108],[-72.98161291499994,9.856557108000132],[-72.99044958499994,9.874979757000148],[-72.99696081499991,9.90071462000013],[-72.99618566899991,9.92128184000012],[-72.98786576399993,9.960426738000152],[-72.9877107339999,9.999416606000153],[-72.93562089099994,10.175193991000114],[-72.91551875899998,10.39427622500014],[-72.91624222799999,10.41383575500015],[-72.91523210499989,10.428171730000159],[-72.91489864099992,10.432904358000128],[-72.90756058799991,10.452463888000153],[-72.892005982,10.472927755000114],[-72.875417847,10.489645081000146],[-72.86141353399998,10.50809356700016],[-72.84301672399997,10.560596822000136],[-72.78141841699994,10.631316020000142],[-72.75439164199992,10.674853414000083],[-72.7061258549999,10.81125335700014],[-72.6829748129999,10.855617575000096],[-72.65672318499998,10.885202332000132],[-72.61310827699992,10.915252177000184],[-72.59450476099997,10.932977193000113],[-72.57646968599997,10.95736846900013],[-72.54205318299992,11.04108429000017],[-72.5339399819999,11.052375590000153],[-72.51502640899989,11.072477722000201],[-72.50748164899991,11.08299387600016],[-72.50469112199997,11.092709045000104],[-72.50381262299993,11.111777649000189],[-72.49931677299989,11.12079518700014],[-72.48148840299987,11.132525737000122],[-72.45999100799992,11.135807190000122],[-72.41699621599994,11.137615865000114],[-72.36144405099995,11.15800221800015],[-72.34134191899997,11.162110494000158],[-72.32185990499997,11.160095113000123],[-72.28465287299989,11.150457458000103],[-72.26708288599991,11.154901632000104],[-72.25659256999995,11.167794902000196],[-72.22677526899994,11.222571920000092],[-72.19690629099992,11.2774006140001],[-72.16708898999994,11.33220347100017],[-72.13727168799994,11.386980489000166],[-72.10745438699993,11.441757507000148],[-72.07763708499994,11.496534526000133],[-72.04781978399993,11.551311544000114],[-72.01800248299992,11.606114400000193],[-72.0079255789999,11.624614563000137],[-71.9906139739999,11.64905751600017],[-71.97108028199997,11.661924948000163],[-71.94524206599996,11.66853953000016],[-71.88664099199994,11.683525696000132],[-71.8280399169999,11.69856353800013],[-71.7694388429999,11.713549703000181],[-71.71088944499988,11.728535868000165],[-71.65228837099994,11.743573710000147],[-71.59363562099992,11.758508199000117],[-71.53508622299992,11.773546041000188],[-71.4764851489999,11.788583883000172],[-71.44945837399993,11.795456848000143],[-71.40966752199992,11.812303365000133],[-71.37545772399994,11.841087138000148],[-71.3576293539999,11.850802307000093],[-71.32750653361438,11.849997690656224],[-71.34064693899995,11.825506903000132],[-71.34386145699992,11.807521877000097],[-71.33604895699992,11.78925202000012],[-71.36359615799995,11.786200262000136],[-71.37144934799994,11.78310781500015],[-71.37547766799989,11.775580145000092],[-71.37584387899992,11.76634349200013],[-71.37816321499989,11.758449611000145],[-71.38784745999993,11.755113023000119],[-71.40998287699992,11.751166083000143],[-71.4671117829999,11.721625067000074],[-71.50706946499994,11.709784247000115],[-71.67442786399991,11.684719143000123],[-71.86180579299995,11.628159898000192],[-71.90070553299995,11.621323960000097],[-71.92516028599988,11.612779039000158],[-71.9475805329999,11.601792710000112],[-71.9605199859999,11.59125397300015],[-71.97130286399991,11.554836330000086],[-71.97012285099989,11.511379299000126],[-71.93932044199991,11.38076406500015],[-71.85692298099987,11.216986395000063],[-71.79600989499997,11.131984768000137],[-71.76976477799985,11.106350002000154],[-71.65290279899989,11.041205145000134],[-71.63780676999988,11.029038804000066],[-71.62645423099991,11.014960028000118],[-71.62466386599993,11.000962632000068],[-71.63247636599993,10.998236395000092],[-71.67931067599989,10.98798248900006],[-71.6752823559999,11.003607489000144],[-71.68224036399991,11.016669012000122],[-71.69713294199997,11.025580145000147],[-71.72427324099988,11.030829169000143],[-71.73477128799993,11.034369208000129],[-71.74421139199985,11.035956122000158],[-71.74819902299993,11.032375393000095],[-71.75080318899992,11.027777411000145],[-71.75670325399997,11.022609768000137],[-71.76866614499991,11.01528554900014],[-71.75987708199995,11.003810940000093],[-71.72370357999992,10.970892645000118],[-71.71568762899997,10.957749742000146],[-71.71605383999989,10.945624091000155],[-71.71947180899988,10.933172919000143],[-71.72032630099989,10.919094143000109],[-71.71043860599988,10.878607489000075],[-71.69359290299988,10.837144273000163],[-71.6740616529999,10.802394924000112],[-71.64997311099998,10.770819403000116],[-71.6183162099999,10.743475653000147],[-71.57628333199992,10.721096096000124],[-71.58649654899995,10.698879299000154],[-71.59496008999992,10.65961334800015],[-71.61042232999992,10.637884833000086],[-71.60533606699991,10.630072333000086],[-71.6036677729999,10.61977773600016],[-71.6053767569999,10.608384507000109],[-71.61042232999992,10.597560940000108],[-71.60558020699995,10.58185455900015],[-71.61343339799993,10.561224677000126],[-71.62498938699986,10.53896719000008],[-71.63093014199988,10.518459377000113],[-71.62954667899989,10.463527736000131],[-71.62800045499995,10.457709052000082],[-71.62954667899989,10.454006252000125],[-71.63776607999989,10.446112372000158],[-71.64468339799988,10.442328192000133],[-71.67186438699991,10.433050848000093],[-71.69416256399994,10.409369208000072],[-71.69668535099996,10.405178127000127],[-71.71300208199989,10.401068427000082],[-71.72972571499992,10.391506252000099],[-71.75446529899988,10.370998440000136],[-71.77904212099992,10.341742255000113],[-71.83698482999989,10.234442450000143],[-71.89159094999985,10.16217682500016],[-71.89769446499993,10.139227606000176],[-71.91291256399992,10.128973700000145],[-71.95303300699992,10.117743231000148],[-71.96906490799992,10.105698960000138],[-71.98249264199993,10.088283596000082],[-71.99181067599997,10.067450262000179],[-72.00047766799986,10.02529531500015],[-72.02354895699992,9.985419012000165],[-72.04369055899986,9.929592190000093],[-72.10944576699984,9.856146552000098],[-72.12437903599988,9.82607656500015],[-72.12132727799988,9.812201239000075],[-72.10244706899996,9.772772528000175],[-72.09024003799988,9.754624742000175],[-72.02196204299987,9.685736395000134],[-71.99893144399991,9.654730536000102],[-71.94684811099995,9.541164455000086],[-71.96483313699991,9.551092841000099],[-71.97321529899997,9.569728908000087],[-71.97866777299988,9.591253973000093],[-71.98786373599998,9.61005280200014],[-71.99522864499997,9.603827216000083],[-71.99205481699991,9.59983958500011],[-71.9903865229999,9.596747137000122],[-71.98786373599998,9.589544989000089],[-71.99697831899995,9.58771393400012],[-72.00096594999985,9.585150458000115],[-72.00352942599994,9.581284898000192],[-72.00829016799995,9.575873114000146],[-71.99351966099997,9.569240627000099],[-71.97789466099987,9.555894273000177],[-71.96548417899996,9.538153387000179],[-71.9605199859999,9.51788971600017],[-71.96751868399988,9.49823639500012],[-71.98371334499984,9.497463283000101],[-72.0020238919999,9.507757880000113],[-72.01512610599988,9.521307684000178],[-72.01927649599992,9.502875067000147],[-72.0109757149999,9.483343817000076],[-71.99522864499997,9.459214585000055],[-71.97984778599994,9.47011953300013],[-71.95726477799985,9.490301825000158],[-71.93639075399989,9.500189520000077],[-71.92638098899991,9.480292059000163],[-71.91893469999992,9.480292059000163],[-71.91893469999992,9.500189520000077],[-71.90855872299994,9.493353583000143],[-71.88166256399995,9.462958075000174],[-71.87140865799992,9.45620351800015],[-71.86172441299996,9.453599351000065],[-71.85277258999994,9.449855861000117],[-71.84439042899987,9.43935781500015],[-71.87474524599986,9.445257880000085],[-71.90074622299993,9.434556382000068],[-71.91380774599992,9.412583726000136],[-71.90526282499991,9.3847110050001],[-71.89476477799991,9.418850002000097],[-71.89159094999985,9.4257266300001],[-71.83356686099998,9.4257266300001],[-71.80825761599993,9.410467841000127],[-71.78473873599998,9.381781317000076],[-71.76085364499991,9.364732164000117],[-71.7345271479999,9.3847110050001],[-71.73814856699997,9.368109442000133],[-71.74079342399995,9.36359284100017],[-71.73037675699996,9.355414130000085],[-71.72801673099991,9.348089911000073],[-71.73395748599992,9.343451239000146],[-71.74819902299993,9.343166408000116],[-71.74819902299993,9.336330471000096],[-71.73582923099991,9.324855861000145],[-71.7344864569999,9.307603257000139],[-71.73997962099995,9.289374091000155],[-71.74819902299993,9.274847723000121],[-71.75820878799992,9.283392645000134],[-71.77806555899994,9.268866278000104],[-71.81651770699992,9.233303127000127],[-71.80703691299993,9.225490627000141],[-71.79613196499994,9.233872789000186],[-71.7850642569999,9.240301825000117],[-71.77550208199992,9.226467190000122],[-71.76773027299993,9.230129299000069],[-71.76211503799993,9.233832098000107],[-71.75792395699989,9.238959052000126],[-71.75446529899988,9.24697500200007],[-71.74469967399995,9.23761627800013],[-71.74787350199992,9.227199611000145],[-71.74937903599997,9.21629466400016],[-71.7345271479999,9.206000067000145],[-71.75324459499986,9.204250393000152],[-71.75182044199991,9.190741278000173],[-71.7345271479999,9.165025132000137],[-71.75816809799994,9.138983466000155],[-71.76187089799987,9.130845445000148],[-71.75885982999998,9.120062567000133],[-71.75153561099995,9.11570872600005],[-71.74413001199989,9.112982489000087],[-71.74079342399995,9.106919664000173],[-71.73473059799994,9.106350002000113],[-71.72252356699988,9.100246486000131],[-71.71349036399997,9.093247789000145],[-71.71686764199988,9.089911200000117],[-71.71837317599994,9.08584219000015],[-71.70856686099992,9.076727606000162],[-71.6861466139999,9.061957098000093],[-71.64590410099993,9.049627997000144],[-71.60220292899993,9.042303778000132],[-71.55768795499992,9.041571356000103],[-71.51480058499996,9.0489769550001],[-71.37140865799995,9.093329169000128],[-71.27354895699989,9.135077216000155],[-71.24103756399992,9.155747789000172],[-71.22061113199993,9.179266669000143],[-71.20641028599994,9.232163804000095],[-71.18748938699991,9.246486721000082],[-71.16185462099995,9.278753973000121],[-71.15172278599988,9.28851959800015],[-71.14305579299989,9.291245835000126],[-71.11701412699992,9.29474518400012],[-71.10973059799991,9.298285223000093],[-71.10301673099985,9.302883205000128],[-71.09569251199994,9.306708075000145],[-71.08657792899994,9.30841705900015],[-71.07282467399995,9.313544012000165],[-71.06240800699996,9.326646226000136],[-71.05650794199991,9.344468492000102],[-71.05614173099991,9.36359284100017],[-71.07335364499991,9.41901276200015],[-71.07925370999995,9.502508856000132],[-71.08283443899992,9.521307684000178],[-71.08824622299997,9.53416575700011],[-71.09080969999988,9.544094143000109],[-71.0902400379999,9.555405992000189],[-71.08568274599986,9.563421942000133],[-71.0660701159999,9.589544989000089],[-71.06627356699994,9.601996161000116],[-71.04869544199991,9.672756252000127],[-71.04869544199991,9.719916083000115],[-71.04214433499993,9.7265078800001],[-71.03758704299989,9.732814846000137],[-71.03506425699987,9.740383205000086],[-71.03563391799995,9.744086005000128],[-71.04185950399992,9.760891018000137],[-71.05455481699997,9.776516018000123],[-71.07184811099995,9.79279205900015],[-71.08617102799985,9.811997789000115],[-71.0902400379999,9.83661530200011],[-71.07974199099993,9.838120835000067],[-71.07282467399995,9.84162018400015],[-71.06981360599994,9.85024648600016],[-71.07241777299993,9.857855536000102],[-71.0902400379999,9.877590236000131],[-71.10846920499989,9.905340887000108],[-71.16246497299989,9.970933335000124],[-71.18390865799992,9.985296942000103],[-71.2069392569999,9.980617580000086],[-71.22850501199991,10.070054429000095],[-71.24567623599992,10.114569403000173],[-71.26781165299991,10.151922919000143],[-71.3059789699999,10.190497137000122],[-71.32843990799998,10.20673248900006],[-71.36388098899988,10.219956773000192],[-71.37319902299993,10.236232815000136],[-71.38442949099993,10.275376695000162],[-71.39317786399991,10.2886416690001],[-71.41441809799989,10.313462632000068],[-71.42259680899988,10.343166408000087],[-71.43219967399997,10.3595238300001],[-71.45335852799987,10.38467031500008],[-71.4645076159999,10.395249742000132],[-71.46934973899997,10.401800848000121],[-71.47386633999992,10.41201406500015],[-71.47508704299995,10.421576239000132],[-71.46886145699989,10.437486070000148],[-71.46275794199991,10.489081122000115],[-71.46629798099988,10.502142645000092],[-71.48131262899992,10.515041408000116],[-71.52647864499994,10.544745184000135],[-71.54157467399995,10.564886786000073],[-71.54214433499993,10.590073960000138],[-71.53746497299991,10.597967841000113],[-71.50283769399992,10.62693919500012],[-71.50011145699995,10.627997137000165],[-71.50475012899997,10.630601304000066],[-71.53286699099988,10.676499742000146],[-71.5353083979999,10.686346747000158],[-71.53384355399996,10.699774481000148],[-71.5279841789999,10.725897528000116],[-71.52790279899992,10.74095286700013],[-71.53136145699992,10.752671617000116],[-71.53795325399989,10.760484117000104],[-71.55577551999995,10.775702216000083],[-71.5664770169999,10.792222398000163],[-71.57306881399995,10.799302476000122],[-71.58311926999993,10.802964585000083],[-71.58311926999993,10.809230861000131],[-71.50999915299988,10.812648830000128],[-71.47813880099994,10.809393622000087],[-71.44591223899991,10.796210028000132],[-71.43529212099985,10.818915106000174],[-71.4398494129999,10.838853257000082],[-71.4493708979999,10.856390692000119],[-71.45335852799987,10.87189362200013],[-71.44640051999988,10.886908270000148],[-71.42202714799993,10.902777411000088],[-71.41246497299994,10.919094143000109],[-71.43822180899987,10.918687242000187],[-71.4476619129999,10.920396226000108],[-71.45958411399994,10.925930080000114],[-71.46959387899992,10.934027411000145],[-71.48859615799992,10.953802802000068],[-71.50112870999992,10.960028387000122],[-71.45832271999991,10.97492096600017],[-71.41844641799986,10.9800479190001],[-71.33604895699992,10.980536200000174],[-71.29393469999988,10.98663971600017],[-71.28201249899993,10.991441148000149],[-71.17593339799986,11.034125067000089],[-71.1312556629999,11.060003973000093],[-71.1222224599999,11.068345445000162],[-71.06236731699997,11.090399481000146],[-70.86969967399995,11.196275132000068],[-70.71320553299995,11.237046617000116],[-70.68561764199987,11.248032945000176],[-70.66413326699993,11.23871491100013],[-70.62975012899997,11.239203192000119],[-70.51390540299988,11.253159898000177],[-70.4960831369999,11.263861395000118],[-70.4801326159999,11.2890078800001],[-70.48981686099995,11.285305080000143],[-70.49787350199988,11.279282945000148],[-70.50389563699991,11.271307684000178],[-70.50743567599989,11.261664130000128],[-70.51060950399994,11.286363023000192],[-70.48643958199995,11.295111395000092],[-70.4339483489999,11.28759701900016],[-70.40098671999988,11.296984251000154],[-70.32433020699995,11.332831122000144],[-70.28795325399997,11.35708242400014],[-70.26861178899989,11.356336830000174],[-70.23106749799985,11.351587093000106],[-70.18000240799995,11.376369533000087],[-70.15900631399992,11.401434637000165],[-70.14517167899993,11.428941148000105],[-70.1443578769999,11.447251695000162],[-70.14600377799994,11.454411962000108],[-70.15321011699987,11.460920558000126],[-70.16440294899985,11.462932823000173],[-70.15446600299994,11.469974238000148],[-70.14129050999986,11.468594785000136],[-70.1268324349999,11.462037248000156],[-70.11900805199988,11.4497090590001],[-70.10919754199995,11.438659169000118],[-70.0993738649999,11.429547051000057],[-70.08812415299991,11.43402741100013],[-70.08291581899992,11.443833726000065],[-70.07900956899994,11.457342841000141],[-70.06969153599988,11.456935940000136],[-70.05846106699988,11.450832424000138],[-70.04873613199993,11.447251695000162],[-70.0411677729999,11.44086334800015],[-70.03652910099996,11.440904039000145],[-70.03449459499984,11.450384833000143],[-70.03453528599994,11.459906317000145],[-70.03587805899991,11.466538804000109],[-70.04010982999992,11.470933335000096],[-70.04873613199993,11.473944403000104],[-70.04759680899991,11.478501695000132],[-70.04637610599988,11.481512762000136],[-70.04133053299994,11.4882266300001],[-70.05587947899988,11.493201909000076],[-70.05390927299996,11.506482221000127],[-70.0967911449999,11.520697333000086],[-70.11986243399988,11.52240631700009],[-70.12315833199992,11.525213934000135],[-70.11856035099987,11.530951239000103],[-70.11127350599986,11.530708229000155],[-70.09630131999998,11.531066220000113],[-70.1046657139999,11.53891644400012],[-70.11617193299989,11.543278768000105],[-70.12955532099994,11.547311140000145],[-70.14157927099987,11.55396293000011],[-70.16159753499991,11.568545162000149],[-70.12276539399991,11.559097438000123],[-70.0952731619999,11.543896980000099],[-70.06823908899987,11.529960113000172],[-70.05052539599993,11.521128887000174],[-70.04212047399993,11.518779432000116],[-70.0243738689999,11.514073355000107],[-70.00780188699991,11.51557038000007],[-69.99032078199991,11.510885619000135],[-69.97562495199989,11.502896389000083],[-69.95677770599994,11.510652434000122],[-69.94597799799996,11.519773538000123],[-69.92589882399994,11.513060548000155],[-69.92064516799991,11.497254248000088],[-69.91262248299995,11.493254027000134],[-69.89917497699992,11.495788909000083],[-69.89261739399993,11.478645437000125],[-69.87658135199985,11.469328099000151],[-69.85652453499992,11.458665455000142],[-69.84460451299987,11.436231517000152],[-69.81407630099993,11.425604559000178],[-69.79491126199989,11.436712958000115],[-69.7892146479999,11.450995184000107],[-69.75999915299985,11.468085028000145],[-69.74714107999992,11.480780341000113],[-69.74364173099994,11.503363348000093],[-69.76475989499994,11.537665106000148],[-69.76081295499998,11.55711497600005],[-69.76915442599994,11.568589585000097],[-69.78514563699994,11.615668036000102],[-69.79137122299991,11.64533112200013],[-69.81602942599989,11.693670966000141],[-69.82217363199987,11.693670966000141],[-69.82502193899992,11.675238348000105],[-69.83299719999988,11.677232164000145],[-69.84235592399989,11.687567450000158],[-69.84951738199993,11.693670966000141],[-69.8626195949999,11.690375067000105],[-69.87100175699987,11.683335679000137],[-69.87637285099993,11.676418361000131],[-69.88023841099994,11.673244533000073],[-69.92772376199994,11.658433335000097],[-69.95006262899996,11.656683661000102],[-69.94513912699992,11.673244533000073],[-69.98550370999988,11.655259507000137],[-69.9969376289999,11.652736721000124],[-70.02676347599991,11.651800848000136],[-70.04149329299992,11.648627020000076],[-70.05186926999991,11.642157294000157],[-70.07380123599992,11.631903387000136],[-70.1383357409999,11.62596263200011],[-70.18651282499985,11.602687893000109],[-70.21178137899992,11.609076239000117],[-70.22988847599993,11.627875067000076],[-70.23314368399986,11.652736721000124],[-70.22935950399994,11.659491278000145],[-70.21735592399992,11.672674872000101],[-70.21324622299996,11.680080471000096],[-70.21239173099988,11.687201239000146],[-70.2144262359999,11.691839911000073],[-70.21735592399992,11.695868231000134],[-70.21947180899991,11.701117255000128],[-70.21947180899991,11.72785065300013],[-70.22142493399988,11.729478257000068],[-70.23053951699987,11.74201080900015],[-70.23314368399986,11.748358466000099],[-70.22716223899994,11.744818427000112],[-70.21174068899992,11.73802317900008],[-70.20579993399988,11.734686591000155],[-70.20592200399994,11.762518622000115],[-70.20799719999988,11.774318752000083],[-70.21324622299996,11.78310781500015],[-70.2239477199999,11.788397528000118],[-70.22899329299992,11.7811953800001],[-70.23302161399988,11.769720770000147],[-70.24058997299994,11.761948960000138],[-70.24535071499994,11.779364325000117],[-70.26724199099996,11.816595770000104],[-70.27212480399993,11.822821356000146],[-70.27651933499993,11.825669664000186],[-70.2796931629999,11.83014557500016],[-70.28160559799994,11.8511416690001],[-70.28453528599997,11.85732656500008],[-70.29100501199989,11.85960521000014],[-70.30199133999992,11.858140367000175],[-70.29678300699993,11.871893622000101],[-70.28897050699993,11.908677476000094],[-70.28774980399993,11.923325914000188],[-70.28355872299989,11.939642645000118],[-70.26520748599994,11.971625067000119],[-70.2610570949999,11.991644598000091],[-70.25462805899988,12.006822007000082],[-70.22378495999993,12.041815497000172],[-70.21324622299996,12.056789455000114],[-70.21003170499992,12.073553778000132],[-70.21129309799991,12.102728583000086],[-70.20579993399988,12.112005927000125],[-70.1620987619999,12.113104559000178],[-70.14427649599992,12.117987372000144],[-70.12702389199993,12.128810940000136],[-70.06456458199997,12.18146393400015],[-70.04133053299994,12.19399648600016],[-70.01773027299991,12.198919989000116],[-70.00348873599992,12.193508205000072],[-69.99030514199985,12.184800523000177],[-69.94420325399992,12.17450592700007],[-69.92536373599998,12.159613348000121],[-69.83531653599994,12.015204169000128],[-69.82217363199987,11.974839585000083],[-69.81676184799991,11.932440497000087]]],[[[-63.63394120999987,15.696193752000068],[-63.635487433999906,15.694037177000084],[-63.63988196499989,15.696030992000102],[-63.64362545499991,15.700588283000156],[-63.63963782499985,15.70294830900009],[-63.63459225199991,15.700588283000156],[-63.63394120999987,15.696193752000068]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Afghanistan","sov_a3":"AFG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Afghanistan","adm0_a3":"AFG","geou_dif":0,"geounit":"Afghanistan","gu_a3":"AFG","su_dif":0,"subunit":"Afghanistan","su_a3":"AFG","brk_diff":0,"name":"Afghanistan","name_long":"Afghanistan","brk_a3":"AFG","brk_name":"Afghanistan","brk_group":null,"abbrev":"Afg.","postal":"AF","formal_en":"Islamic State of Afghanistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Afghanistan","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":8,"mapcolor13":7,"pop_est":28400000,"gdp_md_est":22270,"pop_year":-99,"lastcensus":1979,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"AF","iso_a2":"AF","iso_a3":"AFG","iso_n3":"004","un_a3":"004","wb_a2":"AF","wb_a3":"AFG","woe_id":23424739,"woe_id_eh":23424739,"woe_note":"Exact WOE match as country","adm0_a3_is":"AFG","adm0_a3_us":"AFG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AFG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[71.04980228700008,38.40866445000009],[71.05714034000005,38.40902618400008],[71.0649434820001,38.411816712000046],[71.07698409100004,38.41217844700014],[71.0893864340001,38.409853007],[71.11739506000004,38.39863922100008],[71.15594567900013,38.376211650000066],[71.21769901600008,38.325827128000064],[71.3001229250001,38.29869700100011],[71.3343843990001,38.28066192700001],[71.35815555800013,38.25125803700013],[71.36451176000007,38.206816305000046],[71.35908573400013,38.18410451300007],[71.34094730600009,38.14092885400004],[71.33453942900013,38.11167999300011],[71.31603926600013,38.08328379300008],[71.3023966880001,38.04233022100007],[71.27263106300012,37.997991842],[71.26591312700008,37.97254119900009],[71.25578454600003,37.94988108300004],[71.25454431200012,37.93928741500005],[71.25826501500012,37.92647165900007],[71.26353601100004,37.9243529260001],[71.27118412300011,37.9261874390001],[71.28182946800011,37.92499888100007],[71.31975996900013,37.90058176700003],[71.34115401300005,37.89329539000008],[71.36099776200012,37.90202870700003],[71.37918786600005,37.91293243400008],[71.50119592300013,37.94621205700014],[71.5370593670001,37.944455058000074],[71.56734175700012,37.92807362900001],[71.59772749900003,37.898359681000045],[71.59028609300003,37.891435038000054],[71.59338667800006,37.87934275300006],[71.59504032400014,37.85753529900006],[71.59421350100007,37.833764140000085],[71.59028609300003,37.815729065000085],[71.57467981000008,37.79800404900007],[71.53778283700007,37.779038798000016],[71.52951460800011,37.76113291500005],[71.53116825400008,37.751753642],[71.54026330600004,37.73051462900014],[71.54253706900005,37.71955922500007],[71.54088342300007,37.70971486500008],[71.52951460800011,37.67857981400002],[71.52476037600013,37.64772898400013],[71.52207320200012,37.637626241000106],[71.51721561700008,37.62922882100011],[71.5051233320001,37.615999655000024],[71.50150598200008,37.61034108500007],[71.49716516100011,37.56654530900008],[71.51122115100003,37.48587839800007],[71.50150598200008,37.44577748700007],[71.49024052000004,37.42337575300007],[71.4871399330001,37.4090872190001],[71.49468469200013,37.37069163100006],[71.49654504400007,37.328523662000094],[71.49385787000011,37.30754303],[71.48786340400011,37.2949856570001],[71.48703658000005,37.26705454600011],[71.45013960700004,37.216670024000024],[71.45375695800004,37.19261464500008],[71.44683231600004,37.18359710700014],[71.44104455600007,37.1684300740001],[71.43318973800012,37.12734731100005],[71.43112268100009,37.06698923700014],[71.43318973800012,37.05474192400004],[71.43918420400007,37.04409657800002],[71.45644413300005,37.02254750600008],[71.45995813000012,37.01073944100005],[71.45995813000012,36.969785868000145],[71.46305871600009,36.94808176700013],[71.47174035600011,36.93004669200013],[71.52848107900013,36.856149394000056],[71.53850630700008,36.8360989380001],[71.5453275960001,36.79000356100008],[71.55287235600008,36.76959137000006],[71.56393111200008,36.750677796000105],[71.57736698400004,36.73326283800009],[71.6110600180001,36.704840800000056],[71.65302128100006,36.68701243100011],[71.69994348200004,36.67864084900011],[71.74851932800004,36.67864084900011],[71.79761193900009,36.686082255000144],[71.83657596900012,36.6991563920001],[72.12668746000007,36.87273752900006],[72.15283573400006,36.89570770300011],[72.1868388260001,36.91139150000006],[72.19593387900011,36.918987936000036],[72.21040328000004,36.93660959900012],[72.22032515500013,36.94554962200004],[72.25980594900005,36.96730540000007],[72.36098840400012,37.00027496400011],[72.40594689900013,37.00766469300004],[72.47498661300011,36.997484436000065],[72.50867964700006,37.01107533800007],[72.65771447800006,37.028826192000075],[72.66660282400004,37.038334656000075],[72.67270064300004,37.0576099650001],[72.71435184800002,37.10998402900012],[72.7609639900001,37.18749867800008],[72.7907296140001,37.220261536000095],[72.8305204670001,37.23976938900009],[72.87744266800007,37.246874898000044],[72.90224735600009,37.253799541],[72.92426151500007,37.27483184900012],[72.99557499200006,37.3093000290001],[73.06750858600009,37.31506195100005],[73.0877657480001,37.326069031000145],[73.09923791500012,37.3398666380001],[73.11639449000006,37.36906382300003],[73.13210412600006,37.384385885000086],[73.17024133300004,37.40826039600009],[73.1790263260001,37.41074086600013],[73.20062707500006,37.404177959000066],[73.21147912600014,37.40826039600009],[73.26026167900005,37.45004079200004],[73.27607466700005,37.4594717410001],[73.29633182800006,37.46494944300007],[73.32123986800013,37.46701650000006],[73.34501102700011,37.46448435500005],[73.36185754400009,37.45639699400004],[73.3783940030001,37.4525470990001],[73.44061242700008,37.47993560800006],[73.48526086400011,37.480969137000045],[73.60504683500005,37.44577748700007],[73.67449995900012,37.43104970300007],[73.71780481000008,37.431824850000076],[73.75346154800008,37.42838836700014],[73.74705367000013,37.403118592000084],[73.74591678900003,37.394902039000044],[73.74571008300006,37.35286326200011],[73.73909550000008,37.33834218400008],[73.7222489830001,37.32245168100007],[73.70498905400012,37.310953674000125],[73.69041630000004,37.30521759100009],[73.65196903500009,37.30206532800011],[73.63098840300012,37.29599334800008],[73.60990441900009,37.28139475600011],[73.59729536900005,37.261809387000085],[73.60163619000014,37.2408804320001],[73.6176558840001,37.2331806440001],[73.65992720500009,37.243748475000075],[73.68049442500006,37.24245656300013],[73.6880391840001,37.2369013470001],[73.70240523300009,37.22116587400003],[73.70922652200005,37.217005920000105],[73.7199752200001,37.21754852400005],[73.73620161900008,37.227651266000095],[73.74612349500005,37.23054514600008],[73.76865441900001,37.228891500000145],[73.78395064300014,37.22589426700003],[73.79821333900014,37.22852976500013],[73.83624719200009,37.256745097000106],[73.85640100100005,37.261576843000114],[73.89929244000012,37.265478415000075],[73.95561975100003,37.28676910400006],[73.97670373600005,37.29028310200002],[74.05215132600011,37.312245586000074],[74.16325565700004,37.33007395400003],[74.18764693200006,37.3383938610001],[74.20604374200013,37.35565378900009],[74.2076973880001,37.38991526300009],[74.22392378800009,37.40335113600014],[74.25038212100009,37.40368703200005],[74.27942427600009,37.39751169900006],[74.30381555200012,37.40017303500008],[74.31559777900003,37.42691558800004],[74.32086877400013,37.413893128],[74.3324442960001,37.420352681000054],[74.3438131100001,37.42099863700014],[74.35363163200003,37.41590850900004],[74.36820438600012,37.39637481800014],[74.37812626200008,37.393765158000036],[74.38939172400006,37.393403422000034],[74.41833052600003,37.389191793000094],[74.43590051300009,37.39234405500005],[74.45481408700003,37.393635966],[74.47662154100004,37.38609120800007],[74.51269169100004,37.37722869900006],[74.52116662600008,37.375600891],[74.52984826700003,37.375755921000035],[74.63144413300012,37.3810785930001],[74.66038293500009,37.3939718630001],[74.78854048700003,37.33115916000011],[74.81685917200014,37.30692291300005],[74.86264449100014,37.244601135],[74.89230676300014,37.23111358700004],[74.81313846800009,37.21542978900007],[74.7940181890001,37.21393117300008],[74.78326949100011,37.21966725700014],[74.74399540200011,37.28839691200011],[74.73738081900012,37.296122538000105],[74.7214644770001,37.297776185000146],[74.7093721920001,37.29082570400007],[74.69893355300007,37.28030955000011],[74.67629927600011,37.263721415000106],[74.67092492700003,37.26134429900006],[74.65097782400004,37.259638977000094],[74.64632694500006,37.254833069000085],[74.64301965300007,37.24837351500014],[74.62999719300012,37.238296611000095],[74.62720666500007,37.23431752500011],[74.62327925600009,37.23080352800005],[74.6150110270001,37.228374736],[74.60901656100002,37.23018341100009],[74.59651086500014,37.240751241000055],[74.58999963400008,37.243360901000074],[74.57594364500005,37.24214650500005],[74.53222538200009,37.232198792000126],[74.50008264200005,37.23163035100009],[74.48726688600004,37.225945943000056],[74.47662154100004,37.21005544100012],[74.46762984200012,37.18992747000004],[74.45667443900004,37.17731842000012],[74.44158492000014,37.17054880800009],[74.42029423100007,37.168068339000115],[74.38226037600002,37.1720474250001],[74.36830774000003,37.167060649000035],[74.36613732900014,37.14775950100008],[74.38257043400012,37.12657216400004],[74.41440311700006,37.10783945700004],[74.47662154100004,37.08313812300014],[74.4940881760001,37.06647247300012],[74.50576705000009,37.04704213500011],[74.51920292200003,37.03024729400008],[74.54235396300002,37.02166900600014],[74.54741825400008,37.015674540000106],[74.54927860600003,37.00893076600007],[74.5481417240001,37.001644390000074],[74.54421431500003,36.994022115000114],[74.53739302600007,36.96224110900007],[74.52137333100012,36.95849456800008],[74.50173628700009,36.97242136700007],[74.48364953600009,36.99397043900009],[74.48034224400008,36.99691599500011],[74.47662154100004,36.99931895000006],[74.45698449700012,37.00438324000004],[74.43559045400013,37.00322052100012],[74.39404260300012,36.994022115000114],[74.36810103300007,36.97676218700013],[74.28459191900009,36.93423248300007],[74.23570601500012,36.90216725700006],[74.21172815000011,36.89513926200007],[74.14599572800012,36.901702169000146],[74.12966597500008,36.898420716000146],[74.11529992700008,36.889532369000044],[74.10878869600003,36.87563140900004],[74.1039311120001,36.84131825800003],[74.0943192950001,36.8312413540001],[74.03530480900014,36.81558339400004],[74.00636600700011,36.815738424000074],[73.97670373600005,36.82483347600006],[73.94693811000012,36.8308796180001],[73.86508264200012,36.87258249900012],[73.83407678300006,36.882866109000105],[73.77289188700007,36.89201283800011],[73.7118419910002,36.89413889400006],[73.71133490400007,36.8941565530001],[73.71112830200013,36.89416374800007],[73.70948256500003,36.89422106100002],[73.64008345600007,36.896637878000064],[73.50934208200003,36.87868031800008],[73.4768892820001,36.882866109000105],[73.44588342300011,36.88648346000011],[73.37973759000005,36.879248759000035],[73.33178186100008,36.88209096300011],[73.28186242700012,36.86798329700008],[73.26749637900014,36.866536357000086],[73.25271691900014,36.86803497300008],[73.2234680580001,36.87433949800001],[73.19184208200011,36.87702667300004],[73.0424971920001,36.86426259400008],[73.0262707930001,36.859456685000055],[73.00229292800009,36.84612416600004],[72.99051070200011,36.8415766410001],[72.97676477100003,36.84209340400014],[72.94586226400013,36.852221985000085],[72.92105757600012,36.84736440000008],[72.89687300600013,36.836977437000144],[72.86772749800014,36.83041453100006],[72.77936079900013,36.826797180000085],[72.69585168500004,36.83671905500008],[72.6296024990001,36.83294667600006],[72.56521366400011,36.82059600800011],[72.51674117000005,36.80059722900006],[72.45410933400012,36.75796417300008],[72.43312870300014,36.75341664600006],[72.38734338400008,36.755793762000074],[72.34620894400013,36.74489003500014],[72.3019739180001,36.742719625000035],[72.2136072190001,36.72644154900012],[72.16968225100004,36.71135203100001],[72.15345585200004,36.70210194900011],[72.14963179600011,36.68933787000014],[72.16461796100009,36.67006256200011],[72.17164595600008,36.65362945600012],[72.15417932100013,36.645464579000105],[72.09609501100005,36.63890167200011],[72.07087691200013,36.632287089000044],[72.0590946860001,36.62711944600005],[72.05041304500014,36.61864451200003],[72.05217004400004,36.61037628200009],[72.05630415900004,36.60190134700007],[72.0549605710001,36.59285797200002],[72.03883752500008,36.58045562700004],[71.99780643800004,36.572445780000066],[71.97703251100012,36.563040670000106],[71.96090946500004,36.549604797000086],[71.91347050000012,36.52759063700009],[71.89972456900011,36.51834055600008],[71.88763228300012,36.50800526900008],[71.87471317600011,36.49906524600004],[71.85859012900004,36.494155986000095],[71.7937878820001,36.49074534100009],[71.77322066200014,36.480048320000066],[71.77456425000008,36.44842234300009],[71.7915141200001,36.42129221600001],[71.794408,36.4075979620001],[71.78262577300006,36.396539205000096],[71.76691613800011,36.3918366500001],[71.75099979700008,36.391113179000115],[71.73632369000012,36.39591908800011],[71.7068681230001,36.42144724500005],[71.64930057800007,36.45276316300007],[71.6291467690001,36.45953277600008],[71.61043990000013,36.457930806000064],[71.60072473100007,36.44930084300012],[71.5887357990001,36.41845001300004],[71.58036421700012,36.40232696500007],[71.57230269400003,36.39168162000007],[71.5471879480001,36.37163116500011],[71.54222701000009,36.35638661800007],[71.55266565000011,36.34098704100009],[71.55835005700004,36.32786122700011],[71.5389197180001,36.31928293900009],[71.51463179500007,36.31520050100008],[71.49582157400005,36.309619446000056],[71.47907841000011,36.30052439400009],[71.4027523200001,36.231381327000086],[71.38244348100005,36.218565573000035],[71.31913985200003,36.20058217400015],[71.31397220900004,36.19401926700007],[71.30901127100009,36.17272857700007],[71.30208662900002,36.16332346700011],[71.29268151800005,36.157897441000046],[71.26229577600003,36.14611521500003],[71.22307336400007,36.12539296500012],[71.21769901600008,36.11805491200002],[71.21263472600003,36.096815898000045],[71.20762211100002,36.08761749300004],[71.17537601700008,36.061159159000056],[71.16591923000003,36.045707906000075],[71.16991342200004,36.03080174600004],[71.17093184400011,36.027001037000076],[71.18188724800007,36.01883616200007],[71.21785404400003,36.00271311400007],[71.23191003400007,35.99397979800011],[71.25743819200011,35.971552226000114],[71.28430993600011,35.962457174000036],[71.31252526900003,35.95739288300007],[71.34156742400006,35.94726430300011],[71.35639856000006,35.93305328400007],[71.36068770400004,35.90029042600014],[71.37133304900004,35.88514923100013],[71.41670495600005,35.85884592700009],[71.43101932800005,35.84370473300007],[71.46440230300004,35.79471547400007],[71.47091353400009,35.779936015000146],[71.47205041500013,35.76996246300004],[71.47101688700012,35.76133250000009],[71.47112024000005,35.75228912400013],[71.47556441300009,35.74102366100007],[71.48135217300012,35.73409902000009],[71.49613163300006,35.724590556000095],[71.50274621600005,35.71906117800012],[71.51535526600009,35.701491191000024],[71.51979943800005,35.6837661750001],[71.51401167800009,35.66557607100009],[71.4959249260001,35.646610820000035],[71.48331587700005,35.626560364000085],[71.49272098800003,35.60955881800007],[71.51277144300008,35.59627797500005],[71.56785852100012,35.574212138000064],[71.5841882740001,35.564186911000036],[71.59349003100009,35.549355774000105],[71.5928699140001,35.53018381700008],[71.5860486250001,35.51209706600008],[71.58170780500012,35.49313181600013],[71.58780562400005,35.47091095000007],[71.59342197900014,35.464193788000046],[71.60072473100007,35.45545969600008],[71.61395389800009,35.44321238200006],[71.62242883300007,35.429621481000055],[71.62087854000004,35.41013946500007],[71.6110600180001,35.395463359000075],[71.56227746600013,35.36058176700001],[71.53158166500009,35.32792226200013],[71.52982466700013,35.300895488000094],[71.5478080640001,35.27562571200011],[71.60320520000005,35.22338084000003],[71.63369429600004,35.203123678000026],[71.6379317630001,35.18968780600008],[71.62925012200003,35.17010243800004],[71.60413537600009,35.138166402000074],[71.53499231000012,35.098582256000014],[71.50894738800014,35.0720205690001],[71.50750044800003,35.02819895400009],[71.51297815000004,35.01812205000007],[71.51132450400006,35.008716939000095],[71.50429650900014,35.00060373900009],[71.49344445800011,34.994195862000055],[71.49344445800011,34.99414418500004],[71.49334110500007,34.99414418500004],[71.49334110500007,34.994040833000014],[71.48538293500013,34.983498841000134],[71.47670129500005,34.96029612300006],[71.46956994700014,34.949702454000054],[71.45995813000012,34.942674459000074],[71.44523879700012,34.93775674800014],[71.32492761200012,34.8975609340001],[71.2894775800001,34.87503000900008],[71.27082238800011,34.84428253200011],[71.2556295170001,34.810227763000086],[71.20307458500014,34.74816436800012],[71.18953536000004,34.73705393500009],[71.15093306500006,34.720310771000044],[71.08060144100006,34.67292348300006],[71.0701628010001,34.66124460900008],[71.06876753700004,34.645948385000054],[71.07626062000014,34.62362416600007],[71.07987797100002,34.602901916000036],[71.07657067900004,34.578510641],[71.06582198100011,34.55846018500006],[71.04752852400014,34.551122132000074],[71.00696252500012,34.556341451000094],[70.9858268640001,34.55618642200005],[70.98335594700012,34.555256107000076],[70.96867028900004,34.54972686800008],[70.95699141500005,34.532001852000064],[70.95564782700012,34.51001353],[70.9612288820001,34.48761179600012],[70.97084069800013,34.468879090000115],[70.99151127200014,34.443066711000114],[71.01982995600014,34.41443796900003],[71.05093916900006,34.389788310000135],[71.12204593900009,34.35681874600007],[71.12638675900007,34.332220764000084],[71.09708622300013,34.262457581000035],[71.09687951700005,34.24434499100002],[71.10654301000011,34.2093858850001],[71.1094885660001,34.189206238000054],[71.1080933020001,34.16522837300002],[71.10178877800013,34.15181833900007],[71.07388350400004,34.125256653000065],[71.0627730710001,34.105309550000044],[71.06385827700012,34.088928121000095],[71.0672689210001,34.07301178000006],[71.06261804200005,34.05425323500006],[71.04670170100013,34.04187672900011],[70.99771244300013,34.03332428000007],[70.97714522300004,34.027407328000066],[70.96572473200013,34.01381642700008],[70.95399418200003,34.00482472700014],[70.93973148600008,34.000923157000074],[70.92123132300014,34.002240906000054],[70.89430790300014,34.009372254000084],[70.8843343510001,34.00704681500013],[70.87999353000004,33.99425689800006],[70.8622168370001,33.96477549200006],[70.79131677300006,33.95356170700012],[70.65618290200013,33.954750265000115],[70.52197920700006,33.938704732000076],[70.49149011200006,33.9396090700001],[70.40896285000014,33.954414368000045],[70.3281925870001,33.95728241000012],[70.30989912900002,33.961674907000116],[70.27558597800004,33.976170146000044],[70.21884525600012,33.98069183400008],[70.00283776900011,34.04378875800012],[69.96909305800006,34.04572662300006],[69.91602136300014,34.038879497000096],[69.88925297100013,34.03120554600011],[69.87261316000011,34.017227071],[69.8704427490001,34.00133656800008],[69.87385339400008,33.9863245650001],[69.87199304200004,33.971519267000076],[69.85421634900013,33.956352234000065],[69.84109053600014,33.94180531900011],[69.84718835500013,33.92694834400007],[69.87648889100006,33.90255706800005],[69.8854289140001,33.88945709300009],[69.89876143400004,33.85150075300007],[69.90754642800009,33.83561025000006],[69.93131758600009,33.80643890400003],[69.94010258000007,33.79147857700008],[69.94723392800012,33.771970724000084],[69.9575175380001,33.752695415000034],[69.97265873300012,33.74484059700009],[69.99647814300005,33.74209099500007],[70.01182946800003,33.74031890900008],[70.06557295800013,33.721017762000116],[70.10815433800013,33.72729644800003],[70.11812788900005,33.716521912000104],[70.12655114700004,33.67696360300005],[70.13254561300005,33.661434835000136],[70.13688643400013,33.656293030000136],[70.1459814860001,33.64988515200011],[70.16251794400011,33.643244731000095],[70.17021773300007,33.63867136600007],[70.17409346600004,33.63210845900008],[70.17347334800007,33.607872213000086],[70.15300948100008,33.544749451000115],[70.15135583500006,33.525861715000104],[70.15497318500013,33.50661224400008],[70.16375817900013,33.48865468300008],[70.17760746300007,33.47341013600004],[70.18546228000014,33.468965963000045],[70.21336755400011,33.46134368900007],[70.22044722500003,33.456021017000126],[70.22783695500004,33.43994964600006],[70.23300459800004,33.432611593000075],[70.2857145590001,33.38287302700004],[70.30157922400008,33.35178965300011],[70.29444787600005,33.31894928000008],[70.12479414900014,33.19903411900009],[70.10536381100006,33.18980987600008],[70.08365970900007,33.191282654000105],[70.05978519700011,33.19805226700004],[70.04800297000008,33.19407318100005],[70.0145166420001,33.14076894200008],[70.00686853000008,33.131803080000026],[69.9947245680001,33.127333069000116],[69.96573409000013,33.12940012600009],[69.95581221600013,33.12769480500012],[69.88093306500008,33.08924753900006],[69.83871342000003,33.08666371700007],[69.77184411600011,33.114775696],[69.73298343900007,33.109297994000116],[69.68600956200004,33.08077260400006],[69.66776778200006,33.077000224000045],[69.65877608200003,33.078421326000125],[69.65019779400012,33.08185780900007],[69.64068933100003,33.08423492500011],[69.60833988500013,33.07906728200001],[69.58777266400011,33.07953237000004],[69.5475167240001,33.07501068200011],[69.51418542500005,33.056691386000125],[69.48772709200006,33.02837270100014],[69.47812524800008,33.01135007800005],[69.46850345900003,32.99429209500008],[69.48721032700013,32.885874939000104],[69.4772884520001,32.85683278500002],[69.47144901600012,32.85223358200008],[69.44555912300007,32.835671285000075],[69.42106449400012,32.806809998000034],[69.38716475400014,32.78533844000009],[69.37631270300005,32.77187672900004],[69.37806970300005,32.75231720000002],[69.38323734600004,32.7444623830001],[69.39042036900008,32.73789947600011],[69.39915368700008,32.73296437600007],[69.40773197400011,32.72994130500003],[69.41465661600012,32.72557464600007],[69.41724043800008,32.718004049000086],[69.41910079000012,32.70045990000003],[69.42912601700004,32.66736114600013],[69.42602543100008,32.65508799200009],[69.41393314600009,32.63547678700007],[69.36122318600006,32.568478293000084],[69.34354984600009,32.556050110000086],[69.30210534700012,32.54377695700006],[69.28195153800004,32.53279571500008],[69.25156579600007,32.50054962100012],[69.23285892700011,32.462670797000044],[69.22800134300007,32.421303813000094],[69.23854333500003,32.378283183000086],[69.26443322800009,32.322369284000104],[69.26810225400008,32.3013369760001],[69.26696537200007,32.279581197000084],[69.25998905400007,32.23681894900005],[69.25952396600013,32.19452179000007],[69.2518758550001,32.15225046900008],[69.25104903100002,32.13064972000012],[69.27063440000005,32.03597849500008],[69.30215702300012,31.959910787000123],[69.30479252100014,31.94694000300009],[69.30115729900012,31.941281701000097],[69.29884973100013,31.937689922000086],[69.2509456790001,31.907045797000052],[69.22376387600013,31.881931051000038],[69.11431319200011,31.73775380400005],[69.1000504970001,31.724007874000023],[69.08475427200005,31.715791321000097],[69.07162845800008,31.69785959900011],[69.04010583500012,31.673106588000085],[69.00403568500012,31.651092428000112],[68.97726729300007,31.6414806110001],[68.94099043800009,31.643651022000086],[68.90698734600005,31.634297588000063],[68.84352868600011,31.606495666000086],[68.80384118600011,31.602568258000133],[68.77727950000012,31.618587952000066],[68.73118412300009,31.675535381000145],[68.70544926000008,31.701270244000057],[68.69790450100004,31.715946350000138],[68.69490726700013,31.756357321000106],[68.68829268400003,31.76860463400004],[68.67578698700004,31.774702453000085],[68.61945967600013,31.783487448000074],[68.56106530800007,31.81180613200007],[68.52747562700006,31.822968242000115],[68.50509973100009,31.822658183000044],[68.48148360200014,31.815681865000045],[68.43817875200006,31.796044821000095],[68.41874841300012,31.78302236000007],[68.42221073400003,31.77315216100007],[68.43957401600004,31.76658925400008],[68.4614331460001,31.763592021000076],[68.52127445500014,31.764780579000103],[68.54060144100009,31.7625068160001],[68.54979984600008,31.75351511700003],[68.5368290610001,31.74100942000004],[68.51517663600009,31.729950663000043],[68.49802006100003,31.72524810800007],[68.4609680590001,31.73046742800008],[68.35606490100008,31.7625068160001],[68.31653243000011,31.765193991000015],[68.27694828300008,31.763592021000076],[68.25503747500011,31.766382548000138],[68.24263513200003,31.776924541000113],[68.23229984500006,31.790153707000087],[68.2068233650001,31.80787872300002],[68.18475752800003,31.818214010000105],[68.15912601800005,31.825913798000013],[68.13855879800008,31.82467356400008],[68.12574304200007,31.811496074000107],[68.10450402900011,31.768759664000072],[68.09834042600005,31.75912360900011],[68.09349694800011,31.75155141200011],[68.06047570800007,31.72555816700015],[68.0555664470001,31.71656646800011],[68.05225915500012,31.695430807000065],[68.04657474800007,31.688402812000046],[67.99407149300002,31.663443095000073],[67.97732832900004,31.65186757400002],[67.96606286700012,31.638224996000105],[67.95521081600003,31.633212382000067],[67.91469649300006,31.631352031000063],[67.8843107510001,31.635641175000014],[67.87066817200008,31.635176087000076],[67.8427112230001,31.62349721300012],[67.78116459100005,31.5641726690001],[67.74828016400005,31.544392093000084],[67.72669763200008,31.531409811000085],[67.69631189000012,31.52081614200011],[67.66546106000003,31.51812896700008],[67.60050378400007,31.530479635000034],[67.56898116000012,31.52985951700006],[67.55611372900012,31.512186178000064],[67.56340010600007,31.497251689000105],[67.57807621300009,31.482110494000093],[67.59109867400014,31.464798889000093],[67.59698978700004,31.425679830000067],[67.61145918800014,31.41079701800004],[67.63140629100008,31.40009999600002],[67.65114668800004,31.3952940880001],[67.73429406800011,31.404750875000072],[67.77036421700012,31.39467397100014],[67.77506677200012,31.352764384000068],[67.76473148600007,31.334057516000083],[67.74943526200013,31.328011373000034],[67.7090242920001,31.329303284000073],[67.69279789200004,31.325220846000068],[67.6789486080001,31.316590882000128],[67.66592614800004,31.30625559500004],[67.60215743000003,31.271115621000064],[67.58365726700009,31.26522450800007],[67.53022383600006,31.25664622000005],[67.49332686400004,31.242951965000117],[67.43389896600013,31.236079],[67.3646008710001,31.210705872000062],[67.3462040610001,31.20776031500006],[67.28217696100006,31.21277292900004],[67.23029382300007,31.210602519000133],[67.2137573650001,31.21225616500007],[67.19319014500013,31.21850901300007],[67.15670658300007,31.23592397100012],[67.13675948100007,31.241091614000112],[67.11686405500006,31.24031646800009],[67.07846846500013,31.232048238000065],[67.05821130400005,31.232358297000133],[67.03526696800009,31.23592397100012],[67.02286462400014,31.239386292000063],[67.0152681890001,31.244657288000067],[67.0138729250001,31.25266713500005],[67.01790368600007,31.258713277000112],[67.02343306500006,31.264862773000058],[67.0259652100001,31.27302764900009],[67.02389815300012,31.295300191000134],[67.01681848200008,31.30914947500011],[67.00209069800007,31.315867411000024],[66.94328291800008,31.314730530000105],[66.90592085800004,31.305532125000127],[66.83848311300005,31.277006734000082],[66.80861413600013,31.25473419200011],[66.7853080650001,31.231789856000088],[66.75952152500008,31.214788310000078],[66.72128096500006,31.210292460000062],[66.69699304200009,31.195823059000105],[66.6630933030001,31.083116760000078],[66.64397302200007,31.060172424000058],[66.55002526800007,30.976973368000046],[66.52749434500004,30.968343405000013],[66.39230879700011,30.944623922000062],[66.3753589270001,30.936717428000122],[66.36626387600012,30.92286814400006],[66.26797530100002,30.6013890590001],[66.26492639100007,30.557825826000055],[66.28192793800014,30.518138326000066],[66.30611250800007,30.49111155200004],[66.31376062000004,30.478295797000072],[66.31939335100009,30.457831930000083],[66.32182214400007,30.437368063000033],[66.30301192200005,30.305283101000043],[66.30528568500006,30.244770000000102],[66.30089318800009,30.2255980430001],[66.23634932500005,30.111599834000113],[66.22172489400003,30.073721009000028],[66.2192961020001,30.057856344000125],[66.22523889100012,30.044420471000077],[66.26043054200005,30.023129781000076],[66.30156498200006,29.98674957300011],[66.33236413600014,29.966079],[66.34052901300004,29.9565705360001],[66.3368083090001,29.95202301000006],[66.32843672700005,29.94954254100008],[66.3224422610001,29.94654530900007],[66.30177168800009,29.91569447900008],[66.27521000100006,29.885153707000086],[66.19562829600005,29.835337627000058],[66.1104655360001,29.813633525000057],[66.05238122600014,29.798854065000054],[65.99429691500006,29.78402293000002],[65.93610925300004,29.76929514600002],[65.87823164900004,29.7544898480001],[65.82014733900013,29.739736226000076],[65.76206302900005,29.724905091000064],[65.70403039500007,29.71015146900004],[65.64584273300011,29.69534617100004],[65.58781009900014,29.68056671200011],[65.52972578900004,29.665735576000085],[65.47174483200007,29.65095611600006],[65.41366052300009,29.636176656000146],[65.35578291900009,29.62142303500013],[65.29759525600008,29.606643576000124],[65.23951094500006,29.591838278000097],[65.18142663600008,29.577110494000095],[65.03637089000011,29.540161845000053],[64.98660648600014,29.54155710900005],[64.8203117270001,29.567886251000086],[64.68388594600002,29.568816427000055],[64.49947701700006,29.570202960000103],[64.47769698100007,29.570366720000063],[64.20773929900012,29.499983419000046],[64.17259932500008,29.484299622000094],[64.1497583420001,29.45846140600005],[64.11337813400013,29.396294658000073],[64.08609297700008,29.38660532600005],[63.971991414000115,29.429574280000107],[63.78791996300009,29.460580140000047],[63.56860518400009,29.497477112000066],[63.41595300300008,29.484971415000075],[63.36680871600003,29.48094065400008],[63.31776778200003,29.476909892000066],[63.2686751710001,29.472879130000077],[63.219685913000085,29.468796692000073],[63.17069665600007,29.464765931000077],[63.12160404500014,29.46078684500009],[63.072614787000134,29.45675608400009],[63.02362552900013,29.452673645000086],[62.97453291800008,29.448642883000105],[62.925543660000066,29.444637960000108],[62.87645105000013,29.440581360000095],[62.827461792000115,29.436602275000038],[62.778420858000054,29.43251983700011],[62.72937992400005,29.428489075000098],[62.68039066600005,29.424458313000116],[62.63134973200004,29.420427551000046],[62.60258113200013,29.41806962800007],[62.47750899300012,29.40781850200011],[62.37446618600012,29.424871725000028],[62.27943322800012,29.451485087000066],[62.196285848000116,29.474920349000033],[62.1129834400001,29.49822642100005],[62.029629354000114,29.521635844000027],[61.94653365100003,29.54504526800008],[61.86323124200004,29.56835133900012],[61.7799288330001,29.591786601000077],[61.696626424000044,29.615196025000046],[61.61342736800003,29.63850209600008],[61.53022831200013,29.661859843000027],[61.446925904000125,29.685320944000097],[61.36372684800011,29.708627015000047],[61.28042443900006,29.73201060000008],[61.197225383000045,29.755342509000027],[61.11402632700008,29.77872609400009],[61.03062056400012,29.802161357000042],[60.947421508000104,29.82551910400008],[60.876004679000054,29.84551788400003],[60.844378703000075,29.858178610000067],[60.90215295400009,29.91688303600011],[60.97811731000014,29.99413930300011],[60.9784273680001,29.99439768500008],[61.13304325300004,30.15428456600011],[61.21562219300005,30.239705709000134],[61.27215621000011,30.298306783000044],[61.38036665800013,30.410289612000067],[61.46170536300013,30.494522196000077],[61.46170536300013,30.494573873000093],[61.576220337000045,30.613894755000103],[61.702620891000095,30.74551462800005],[61.785199829000135,30.831400859000095],[61.80225305200013,30.847058818000047],[61.7997725830001,30.852381491000102],[61.7984289960001,30.853466695000094],[61.79987593600009,30.871501770000094],[61.80235640400007,30.878529765000106],[61.80835087000008,30.881423646000083],[61.80452681500008,30.949739888000064],[61.80018599500011,30.961418762000022],[61.81930627500008,30.99392323800006],[61.82643762200013,31.01495554600007],[61.826334269000085,31.034592591],[61.821476684000054,31.05448801700001],[61.80928104600009,31.08714752200009],[61.79181441300011,31.11892852800011],[61.789333944000134,31.129315491000053],[61.787680298000105,31.15861602900011],[61.779205363000074,31.18109527600012],[61.75243697100013,31.219129130000052],[61.74272180200006,31.2395413210001],[61.74230839100006,31.2594367480001],[61.74923303200006,31.302379863000056],[61.74230839100006,31.320880025000093],[61.70654829900013,31.35984405500008],[61.6869112550001,31.373176575000084],[61.66117639100014,31.381909892000067],[61.606258630000134,31.388741288000062],[61.490850871000134,31.40309722900014],[61.29479048700006,31.4276435350001],[61.125148649000096,31.448887156000097],[61.12353479000012,31.449089254000025],[60.95599979700011,31.470069885000047],[60.855024048000075,31.482730611000083],[60.821744425000134,31.494667868000107],[60.80996219900004,31.588357239000064],[60.79497603400006,31.636674704000086],[60.792598918000124,31.66008412700006],[60.8053113200001,31.733981426000128],[60.7914620360001,31.826533916000077],[60.789291626000136,31.87495473300004],[60.796733032000134,31.936759746000035],[60.79497603400006,31.958463847000132],[60.79104862500008,31.969160868000127],[60.786087688000066,31.978979390000088],[60.7840206300001,31.989263000000108],[60.792598918000124,32.011277161000066],[60.786707804000116,32.016909892000115],[60.778336222000064,32.021044006000125],[60.774925578000136,32.027193502000095],[60.78267704300004,32.04254140200007],[60.80882531700013,32.07117014600004],[60.814819783000075,32.08786163300007],[60.82825565600012,32.167443339000016],[60.8303227130001,32.24888539700004],[60.796319621000116,32.35590728800011],[60.75229130100007,32.4945809940001],[60.71167362500011,32.61031036400004],[60.674880005000034,32.71560109500004],[60.6400500900001,32.81551747700009],[60.60615035000007,32.9123591100001],[60.57752160700011,32.994343770000086],[60.56294885300014,33.058267518000065],[60.56150191200004,33.13730662100002],[60.56759973100008,33.15128509600004],[60.61596887300004,33.20619130500006],[60.67033247900007,33.26771209800006],[60.71901167800012,33.323031719000085],[60.75704553300005,33.366336568000065],[60.7858809810001,33.387782288000096],[60.818643840000114,33.40488718700004],[60.829082479000135,33.41628184100002],[60.83466353400008,33.43625478100006],[60.832803182000134,33.45346303400004],[60.82928918400012,33.47012868200005],[60.83218306500009,33.48449473100007],[60.84985640500008,33.494364930000046],[60.89729537000005,33.49702626500007],[60.91207482900006,33.501522116000075],[60.91978829300007,33.512570519000114],[60.92085982200007,33.514105326000106],[60.911971476000076,33.528445536000106],[60.89512495900009,33.541132101000045],[60.87962203000006,33.54870269800011],[60.84603234800005,33.55578237000012],[60.807378377000134,33.55815948600008],[60.733894490000075,33.55485219400009],[60.655553019000074,33.55989064500005],[60.574834432000046,33.587795919000115],[60.511789185000104,33.63838714600007],[60.486881145000034,33.71138010700011],[60.494942668000135,33.744117126000106],[60.52584517400004,33.80214976000008],[60.52801558500005,33.84144968700005],[60.499386841000046,33.99425689800006],[60.48846068000012,34.08092732000006],[60.48677779100012,34.09427663200006],[60.49277225700007,34.13902842200011],[60.52088423700007,34.18613149],[60.552406861000065,34.2200570680001],[60.58744348200008,34.25026194300003],[60.6349857990001,34.271216736000014],[60.65059208200006,34.28535024100006],[60.64366744000006,34.30664093000004],[60.71436079900007,34.3101290890001],[60.8159566650001,34.31527089500008],[60.890474080000104,34.31891408300007],[60.87910526600012,34.337646790000065],[60.80489790800004,34.41748687800006],[60.78908492000004,34.443480123000114],[60.77936975100005,34.45508148200008],[60.76727746600005,34.46415069600005],[60.74278283700011,34.47345245400007],[60.733894490000075,34.48042877200007],[60.725316203000034,34.50427744600006],[60.718908325000086,34.5111504110001],[60.71033003800005,34.51512949700009],[60.69968469200006,34.51639556900005],[60.71436079900007,34.53742787700014],[60.73926884000013,34.548021546000115],[60.79404585800012,34.554119365000076],[60.818953898000075,34.55990712500005],[60.838487590000106,34.57091420500006],[60.88385949700011,34.61370229100006],[60.88892378800011,34.621660462000136],[60.89543501800006,34.62832672200005],[60.90887089000011,34.63468292200008],[60.922823527000105,34.636543274000076],[60.93584598800003,34.63566477500004],[60.94752486200013,34.63799021400007],[60.95796350100005,34.64941070600008],[60.96199426300006,34.6737503060001],[60.958686971000134,34.699588521000095],[60.95992720600009,34.72320465100003],[60.97801395700009,34.74061960900004],[61.009639933000074,34.76098012300008],[61.02907027200006,34.7897122200001],[61.03475468000011,34.80624867800009],[61.06545048000004,34.8147236130001],[61.073408651000136,34.84769317700005],[61.07774947200011,34.88303985600006],[61.07702600100009,34.89172149600011],[61.072581828000125,34.91032501300006],[61.07154829900015,34.92055694600015],[61.07475223800008,34.933114319000055],[61.08891158100005,34.95192454100007],[61.092012166000075,34.96148468000007],[61.095319458000056,34.98101837200008],[61.109892212000034,35.018535462000074],[61.115886678000095,35.05987660800011],[61.12312137900011,35.07419097900009],[61.14730594900009,35.10209625200008],[61.13676395600003,35.111191305000055],[61.135213664000105,35.119407857000084],[61.13790083800006,35.12829620400009],[61.1398645430001,35.13966501900009],[61.13707401600004,35.14390248700005],[61.10152063000004,35.18322825200002],[61.09635298700004,35.19320180200011],[61.1023474530001,35.19769765300006],[61.11237268100012,35.20203847200011],[61.11278609300012,35.21165028900015],[61.1079285080001,35.22126210500005],[61.1023474530001,35.225602926000136],[61.10162398300009,35.23531809500008],[61.10245080600003,35.25666046200007],[61.10834191900011,35.27795115200007],[61.12270796700011,35.2876663210001],[61.14399865700011,35.288079732000114],[61.16787316900007,35.2913870240001],[61.18709680200009,35.30037872300005],[61.195054973000076,35.318103740000055],[61.19040409400009,35.36957346600005],[61.195054973000076,35.390089010000025],[61.200842733000066,35.40114776600012],[61.221823364000045,35.42424713200009],[61.22730106700005,35.43447906500009],[61.23598270700011,35.465846660000096],[61.24704146300007,35.485070293000035],[61.270502563000086,35.50842804000007],[61.2838350830001,35.52728993800011],[61.290036255000075,35.54806386300003],[61.28755578700003,35.56826934900005],[61.27701379400015,35.609197082000065],[61.26967574100012,35.618498840000086],[61.283318319000045,35.6226329560001],[61.33571822100009,35.63090118400007],[61.344193156000074,35.63090118400007],[61.351531210000076,35.627800599000096],[61.36093632000007,35.62103098600008],[61.36010949700011,35.61839548800014],[61.351531210000076,35.60713002600011],[61.363933553000045,35.59824167900007],[61.365483846000075,35.59850006100006],[61.367654256000094,35.59798329700001],[61.38346724500008,35.58645945300009],[61.38388065600009,35.58211863200009],[61.37995324700011,35.571318258000076],[61.380263305000085,35.56733917300007],[61.386877889000125,35.55953603200007],[61.39318241400007,35.553593241000044],[61.40124393700011,35.54982086200002],[61.412612752000086,35.54832224600011],[61.41930908800009,35.54589138400007],[61.42770227100009,35.54284454300002],[61.49271122300012,35.494165344000095],[61.53870324700006,35.45230743400003],[61.60474572800007,35.43060333200011],[61.739621216000046,35.413756816000046],[61.79904911300008,35.41747751900007],[61.91935184700009,35.451842346],[61.97774621600012,35.45091217100014],[62.007460164000115,35.438923239000104],[62.03381514500006,35.423988750000035],[62.136341187000134,35.341358134000075],[62.16388472500011,35.326165263000064],[62.2190234780001,35.30626983600004],[62.23369958500006,35.29376414000006],[62.24434493000006,35.278054505000085],[62.25121789600012,35.26038116500007],[62.252613159000134,35.242811178000096],[62.250959513000055,35.202348532000116],[62.25685062700006,35.18715566000008],[62.275712525000074,35.15103383500008],[62.28620284000004,35.14064687100006],[62.30201582800004,35.14751983700012],[62.39932255100007,35.25593699200007],[62.4318787030001,35.28063832600009],[62.45890547700009,35.281878561000035],[62.52458622200004,35.232165833000124],[62.535489950000056,35.22735992400001],[62.545515177000084,35.228031718000096],[62.55543705200012,35.23040883400003],[62.5661857500001,35.23077056900013],[62.59564131700011,35.22059031200007],[62.60452966300005,35.219401754000046],[62.62106612200011,35.22270904500004],[62.693619832000145,35.24839223200013],[62.7086059980001,35.25604034500009],[62.721628458000055,35.26642730800012],[62.734237508000085,35.2807416790001],[62.760489136000096,35.3024457810001],[62.82306342900006,35.3275140640001],[62.82756514500005,35.32931752500011],[62.91820560700006,35.38817698200008],[62.98528161600006,35.414583639000085],[63.00553877800007,35.41840769500001],[63.04708662900009,35.421353251000106],[63.06682702700004,35.42559071900007],[63.08021122200006,35.43706288700008],[63.086257365000115,35.45566640300004],[63.090494832000104,35.49354522800013],[63.10072676600003,35.52496449900008],[63.097212769000116,35.53545481400002],[63.080572957000065,35.54651357000003],[63.07736901800013,35.558760885000055],[63.07494022700006,35.60981720000012],[63.07664554900003,35.62470001200006],[63.10315555800014,35.64604237900008],[63.179895060000085,35.66645457000001],[63.20769698100014,35.68319773400005],[63.213588094000045,35.69229278600005],[63.214414917000056,35.69926910500004],[63.20935062700004,35.70448842400015],[63.18392582200004,35.71234324200008],[63.17725956300006,35.71689076800001],[63.16325525000013,35.73229034500011],[63.11204390500012,35.76991078700013],[63.105687704000104,35.782881572000065],[63.10129520700014,35.80055491200005],[63.09132165500011,35.8133189910001],[63.08439701300011,35.82608306900008],[63.088634481000106,35.84339467400008],[63.10408573400007,35.85646881100004],[63.125273072000134,35.86024119100006],[63.34293420400008,35.85626210600009],[63.4302156980001,35.87104156500009],[63.51108931500004,35.90184071900006],[63.5259204510001,35.912692770000035],[63.54958825700004,35.93904775100009],[63.56343754000011,35.95062327100004],[63.58209273200003,35.95904653000011],[63.60229821800004,35.96266388000009],[63.72570153800006,35.96886505200007],[63.76590580200007,35.97728831000006],[63.859853556000125,36.02209177700004],[63.889825887000136,36.02963653600008],[63.90632706100007,36.031732344000034],[63.921968628000116,36.03371897400009],[63.94997725400009,36.02886138900007],[64.04511356600005,35.99873403000009],[64.04557865400011,36.01129140200001],[64.0363802490001,36.058575338000054],[64.03622522000012,36.07640370700011],[64.04464847900005,36.09232004900011],[64.05725752800002,36.10523915600004],[64.12335168400011,36.146063538000135],[64.15869836500013,36.160274556000076],[64.19590539500012,36.16590728800011],[64.23714318900005,36.160429586000134],[64.25373132300012,36.154848531000106],[64.26613366700013,36.15247141600008],[64.27605554200011,36.15924102800011],[64.29186853100009,36.199445292000036],[64.30365075700013,36.21153757800002],[64.31894698100007,36.21975413000004],[64.33724043800002,36.225955302000045],[64.41087935400003,36.23985626200002],[64.4445723880001,36.24998484300008],[64.47769698100007,36.27163726800006],[64.49816084800005,36.29142934200013],[64.57665734900006,36.389614564000105],[64.59438236500011,36.4241860970001],[64.60585453300013,36.46108306900003],[64.61050541200007,36.50092559800004],[64.60776656100012,36.52164784800007],[64.59371057100003,36.55983673100005],[64.58900801600004,36.580248922000095],[64.58880131100005,36.600454407000086],[64.59200524900007,36.62107330300009],[64.60482100400003,36.660554098000034],[64.62135746300004,36.69259348500012],[64.72854862900009,36.85056954700005],[64.7652246500001,36.90462188800004],[64.7787638750001,36.938469950000126],[64.77462976100009,36.97758901000006],[64.75561283400009,37.05363088000013],[64.76016036000004,37.09262074800011],[64.7787638750001,37.118045553000115],[64.8079093830001,37.135512187000074],[64.98908695500012,37.21367279100011],[65.06308760600011,37.233232321000116],[65.48792177900009,37.24199746800005],[65.50140710500006,37.242275696000064],[65.53685713700008,37.25710683300011],[65.58315922000014,37.30805979500004],[65.61127120000009,37.33105580600011],[65.62408695500005,37.34513763500012],[65.62946130400013,37.36542063400012],[65.62889286300009,37.38753814700004],[65.62098636900004,37.43040374800009],[65.62574060100013,37.45280548100007],[65.63576582900004,37.47409617100007],[65.64816817200011,37.49383656800012],[65.64827152500004,37.49393992200007],[65.64832320200014,37.493991598000065],[65.64832320200014,37.494146627000106],[65.65871016400007,37.510269674000085],[65.66883874500013,37.52055328400007],[65.68103438400004,37.526392720000075],[65.69829431200003,37.529415792000094],[65.7394287520001,37.52905405700008],[65.75265791800012,37.537864889000076],[65.7588590900001,37.564116517000116],[65.76144291200012,37.5783792120001],[65.77653243000007,37.572901510000094],[65.79647953300014,37.56933583600005],[65.80433435100014,37.56530507400004],[65.82107751500007,37.53517771500006],[65.82908736200005,37.525617574000044],[65.83606368000005,37.519158020000106],[65.85518396000009,37.50794423500005],[66.07966638200014,37.440868225000116],[66.09785648600013,37.428414205000045],[66.12560673000013,37.39870025700009],[66.14291833500005,37.385057679000084],[66.16307214300014,37.37689280200004],[66.17464766500007,37.375497538000076],[66.20772058100005,37.37689280200004],[66.21846927900009,37.37479990600008],[66.23252526900006,37.36542063400012],[66.24187870300011,37.36330190000007],[66.25084771600005,37.35965002200007],[66.25774336800002,37.35684234600009],[66.27438317900004,37.343277283000106],[66.29443363400009,37.33121083600014],[66.32068526200004,37.32914377800009],[66.3896216230001,37.34717885400008],[66.41349613500006,37.34963348400004],[66.42362471500013,37.34568023700007],[66.4386625570001,37.32790354400004],[66.45106490100005,37.322942607000094],[66.46145186400008,37.32444122300009],[66.46992679900012,37.329763896000145],[66.48522302300006,37.34340647400006],[66.50289636200006,37.35565378900009],[66.51958785000011,37.364180400000095],[66.53901818900005,37.36908966100012],[66.5645980220001,37.37069163100006],[66.58857588700003,37.36846954300006],[66.65467004400011,37.346145325000094],[66.66702071100013,37.3443108110001],[66.6940991620001,37.34340647400006],[66.7047445070001,37.346532899000096],[66.72443322700013,37.36014963800011],[66.73497522000008,37.36330190000007],[66.86576827000005,37.36792694100012],[66.95764896600014,37.38521270800001],[67.00591475400012,37.384385885000086],[67.02410485800004,37.377487081000105],[67.06410241700013,37.35456858300009],[67.08508304900005,37.34963348400004],[67.09738203900008,37.3405901080001],[67.11391849800009,37.29718190500008],[67.12332360900012,37.28196319600005],[67.1434774170001,37.271860453],[67.18781579600005,37.258243714000116],[67.20796960500012,37.24346425400009],[67.21799483200004,37.22625600300012],[67.22528121000005,37.20770416300007],[67.23675337700013,37.192407939000134],[67.25912927200011,37.18514740000006],[67.2814534910001,37.18866139800011],[67.31959069800007,37.20842763300007],[67.3452222090001,37.21302683600003],[67.36951013200013,37.21468048100007],[67.39116255700009,37.21958974200001],[67.41126468900006,37.227909648000065],[67.43110843900007,37.23976938900009],[67.46397465000007,37.2662793980001],[67.48237146000008,37.27736399300011],[67.50314538600014,37.28196319600005],[67.52614139800005,37.272893982000085],[67.54500329600012,37.23152699800005],[67.56138472500004,37.21989980100008],[67.57218509900008,37.22315541600008],[67.57993656400009,37.232663880000075],[67.58603438300014,37.24261159300008],[67.59228723100006,37.247184957000115],[67.60272587100008,37.24827016200001],[67.62179447400007,37.252921041000064],[67.63316329000014,37.25405792300008],[67.64463545700004,37.2512157190001],[67.6664429120001,37.23801239100001],[67.6775016680001,37.23354237900011],[67.69016239400014,37.232250468000046],[67.72587080900013,37.23354237900011],[67.74659305800009,37.229408265000075],[67.76426639800007,37.22088165300008],[67.77599694800006,37.207549134000146],[67.78054447500011,37.18886810300006],[67.77196618700007,37.12497019500009],[67.77305139200007,37.10998402900012],[67.7853503820001,37.096548157000086],[67.80803633700009,37.08324147600007],[67.8328927010001,37.073087057000095],[67.87810957900012,37.064431254000056],[67.89195886200008,37.05202891100009],[67.90250085500014,37.034381409000076],[67.91841719600006,37.0138141890001],[67.92926924600009,37.006243592000146],[67.95293705300014,36.99624420200013],[67.96182539900013,36.98993967700011],[67.99619022600007,36.955781555000044],[68.00202966300009,36.947487488000085],[68.0060604250001,36.93867665700009],[68.01112471500005,36.93087351600008],[68.02021976800012,36.92568003400007],[68.02481969200005,36.92551846600011],[68.03272546400012,36.92524078400003],[68.04471439600007,36.92921986900012],[68.05494633000005,36.934645894000084],[68.12109216300011,36.980276185000086],[68.1333911540001,36.98652903200008],[68.15199467000014,36.99278188100009],[68.16796268800005,37.00608856200009],[68.18641117300007,37.01831003800004],[68.21255944800009,37.02125559500013],[68.25374556500007,37.01022267700003],[68.27777510600009,37.010067648000074],[68.28831709800005,37.024407857000085],[68.28159916200013,37.06647247300012],[68.28077233900012,37.0866521210001],[68.28831709800005,37.10321441700008],[68.3072823490001,37.114221497000074],[68.32666101100004,37.11303293900004],[68.34609135000005,37.1069092810001],[68.36583174600014,37.10321441700008],[68.39187666900011,37.10543650300011],[68.41146203600009,37.113368836000056],[68.41802494300009,37.12827748600009],[68.40371057100003,37.15163523400013],[68.46577396700008,37.15535593700005],[68.51331628400008,37.1639859010001],[68.52385827600006,37.164657694000084],[68.5327466230001,37.168998515000055],[68.54654423000011,37.18822214800008],[68.55145349100007,37.19261464500008],[68.57140059500006,37.19470754100004],[68.60881433200012,37.20408681300009],[68.62690108300006,37.20625722200009],[68.6307768150001,37.21382782000006],[68.63640954600004,37.22992502900013],[68.64860518400013,37.24436859100004],[68.67123946100008,37.247184957000115],[68.66545170100005,37.25938059500004],[68.66266117300006,37.263721415000106],[68.6575452070001,37.267674662000076],[68.66886234500004,37.27829416900008],[68.68694909600009,37.27901764000006],[68.72591312700007,37.274521790000044],[68.74653202300004,37.2762271120001],[68.75960616100014,37.27524526000013],[68.77128503400007,37.270723572000094],[68.80849206500011,37.25162913000011],[68.82037764500012,37.250905660000114],[68.8246151130001,37.26062083000005],[68.8220312900001,37.28196319600005],[68.81019738800006,37.31209055600004],[68.81381473800013,37.32340769500013],[68.83582889800005,37.32914377800009],[68.85675785300003,37.32490631100012],[68.86802331600006,37.31214223300006],[68.8770150150001,37.29609670100009],[68.89029585800012,37.28196319600005],[68.90471358200006,37.27669220000013],[68.91582401600004,37.27906931600006],[68.92114668800008,37.28795766300009],[68.91763269100005,37.302427064000106],[68.9129818120001,37.306767883000106],[68.89675541200006,37.31648305300004],[68.89029585800012,37.322942607000094],[68.88507653800008,37.33482818600004],[68.88786706600007,37.33813547800011],[68.89365482600004,37.33715362500007],[68.89716882400012,37.33596506800003],[68.96543339100003,37.32914377800009],[68.98522546400011,37.32035878500008],[69.00548262600012,37.305527649000055],[69.02103723200014,37.28795766300009],[69.03576501500004,37.25157745400011],[69.05560876500004,37.23710805300007],[69.07839807200014,37.22517079700012],[69.09643314600004,37.21302683600003],[69.11431319200011,37.177473450000065],[69.1236149500001,37.16920522100011],[69.14573246300012,37.156957907000105],[69.15100345900004,37.15504587800007],[69.24567468300006,37.10388621000007],[69.26577681500004,37.1054106660001],[69.28562056500004,37.112929586000035],[69.30861667800006,37.11688204300012],[69.31207889800002,37.117477112000074],[69.32391280200005,37.120991110000034],[69.33476485200008,37.1290526330001],[69.35083622300004,37.14414215100001],[69.39119551600004,37.164657694000084],[69.40773197400011,37.177473450000065],[69.44214847900008,37.22362050400011],[69.44519738800011,37.23641042100007],[69.4268522540001,37.239459331],[69.40985070800008,37.245660503000096],[69.41791223100005,37.267674662000076],[69.40969567900004,37.27674387700006],[69.40308109500006,37.3111603800001],[69.39460616000014,37.326069031000145],[69.38943851700003,37.3329161580001],[69.38644128500005,37.34152028400003],[69.38489099100013,37.350899557000076],[69.38447758000012,37.36014963800011],[69.38582116700007,37.3631468720001],[69.38850834100009,37.36376698800009],[69.39088545700012,37.3653172810001],[69.39119551600004,37.37069163100006],[69.38830163600005,37.37510996600008],[69.37894820200012,37.3771253460001],[69.37703617400007,37.38066518200009],[69.37631270300005,37.41885406500006],[69.37837976100013,37.4374059050001],[69.38447758000012,37.45327056900001],[69.38964522300012,37.4587999470001],[69.40401127100012,37.4668614710001],[69.41171106000007,37.472520040000035],[69.41558679200006,37.4775068160001],[69.42178796400003,37.48949574800013],[69.4254053140001,37.494249980000035],[69.46974369400004,37.52013987300006],[69.49144779500006,37.53698639000007],[69.50865604600006,37.57897349000006],[69.52865482600009,37.586027324000064],[69.66497725500011,37.576157125000094],[69.68730147300009,37.57959360800004],[69.72957279500014,37.59408884800007],[69.75427413000006,37.596672669000064],[69.76223230000005,37.595794169000044],[69.78445316600005,37.59041982000008],[69.79184289500006,37.5861048380001],[69.80222985800009,37.581505636000145],[69.81266849800005,37.58584645600013],[69.82300378500014,37.59295196600007],[69.83292565900013,37.596672669000064],[69.85328617400006,37.60122019400009],[69.89524743600009,37.6181700650001],[69.91881189000007,37.61713653600012],[69.93524499600004,37.605664368000106],[69.94454675300005,37.58969635000008],[69.95539880400013,37.57548533100001],[69.9765861410001,37.56933583600005],[69.9895052490001,37.5673204550001],[69.9946728920001,37.56225616500012],[69.99849694800014,37.555589905],[70.00418746200005,37.551370519000045],[70.00759200100009,37.54884613100006],[70.01689375800004,37.5459780890001],[70.04800297000008,37.54143056200007],[70.04169844600004,37.54884613100006],[70.06919030800003,37.54520294200009],[70.09905928600006,37.53657297800004],[70.1291349690001,37.53228383400008],[70.15786706500012,37.54143056200007],[70.1926969810001,37.57602793400005],[70.19941491700013,37.57928355000004],[70.2019470620001,37.58799102900011],[70.21646814000012,37.61713653600012],[70.21843184500011,37.61744659500002],[70.23765547700003,37.618118388000084],[70.24096276900013,37.61713653600012],[70.24607873600007,37.62127065000004],[70.24830082200009,37.62333770800012],[70.25393355300014,37.630804952000034],[70.25522546400009,37.637471212000065],[70.25388187700014,37.64659210200003],[70.25357181800013,37.6545761110001],[70.25770593300007,37.65809010800007],[70.2625635170001,37.660880636000115],[70.2751208900001,37.675479228000086],[70.27703291800003,37.68798492500008],[70.28054691600005,37.69604644800006],[70.28307906100014,37.70483144200006],[70.28189050300011,37.71955922500007],[70.2717619230001,37.74870473300006],[70.26959151200009,37.76263153100007],[70.2751208900001,37.774181213000105],[70.26556075100007,37.78120920800009],[70.25651737500004,37.791802878000084],[70.24985111500013,37.804877015000045],[70.24716394000012,37.81916554800011],[70.24034265200004,37.82756296800011],[70.20747644000011,37.83562449200008],[70.19600427300009,37.839913636000055],[70.17915775600011,37.860790914000034],[70.16520511900012,37.889910584000035],[70.16050256400013,37.9206580610001],[70.17212976100011,37.94608286600001],[70.1922318930001,37.93287953800012],[70.21471114100007,37.929262187000035],[70.23812056500003,37.93236277300008],[70.26152998900011,37.93928741500005],[70.25367517100004,37.94740061500008],[70.25016117400008,37.9556171670001],[70.25041955600004,37.96414377900001],[70.25393355300014,37.973393860000044],[70.26090987200013,37.97646860800006],[70.27269209900004,37.97817393000011],[70.28375085500005,37.98186879500011],[70.28871179200007,37.99080881800006],[70.29377608300007,37.9961056520001],[70.29858315700005,37.998134279000084],[70.31796065300011,38.00631174800006],[70.32628055800006,38.01127268500002],[70.37118737800012,38.0582982380001],[70.41537072700008,38.09452341800005],[70.42596439700007,38.10064707400011],[70.46007084200005,38.112248434000065],[70.4703027750001,38.120516663000096],[70.48260176600007,38.13736318000008],[70.50854333500013,38.192501933000074],[70.5379472250001,38.23805470800005],[70.5471973060001,38.26265269000004],[70.55939294400014,38.268182068000016],[70.57303552300004,38.27105011000009],[70.58306075100006,38.2750808720001],[70.59659997600005,38.309187318000056],[70.59670332800005,38.31758473700006],[70.59556644700007,38.327790833000016],[70.5957731520001,38.33817779600014],[70.60001062000009,38.34706614200004],[70.60931237800007,38.35120025700007],[70.63210168500007,38.35011505200009],[70.64135176600007,38.354197489000086],[70.6766984460001,38.37491973900012],[70.68475996900008,38.386650289],[70.66486454300008,38.39863922100008],[70.66486454300008,38.4054088340001],[70.68331302900009,38.414581401000106],[70.74181075100012,38.41943898500011],[70.75421309400008,38.436466370000055],[70.76108606000014,38.44352020300008],[70.77726078300003,38.44646575900006],[70.80888675900013,38.44636240700004],[70.81798181200008,38.44499298100007],[70.83410485800005,38.44060048400007],[70.84304488100008,38.440161235000055],[70.84981449400004,38.44282257100008],[70.85358687400009,38.447421774000105],[70.85932295700013,38.45165924100007],[70.87100183100011,38.45320953400008],[70.91223962400011,38.43765492800005],[70.93621748900011,38.43300404900009],[70.94675948100007,38.44323598300008],[70.94345218900008,38.465947775000046],[70.95073856600004,38.47305328400009],[70.97404463700008,38.473673402000145],[70.98680871600004,38.47090871200001],[70.99822920700007,38.46566355400009],[71.0085644940001,38.458583883000045],[71.0186413990001,38.44982472700008],[71.02458418800012,38.44191823300011],[71.03295577000011,38.42365061500007],[71.039467,38.4153307090001],[71.04980228700008,38.40866445000009]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"United Arab Emirates","sov_a3":"ARE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"United Arab Emirates","adm0_a3":"ARE","geou_dif":0,"geounit":"United Arab Emirates","gu_a3":"ARE","su_dif":0,"subunit":"United Arab Emirates","su_a3":"ARE","brk_diff":0,"name":"United Arab Emirates","name_long":"United Arab Emirates","brk_a3":"ARE","brk_name":"United Arab Emirates","brk_group":null,"abbrev":"U.A.E.","postal":"AE","formal_en":"United Arab Emirates","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United Arab Emirates","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":3,"pop_est":4798491,"gdp_md_est":184300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"AE","iso_a2":"AE","iso_a3":"ARE","iso_n3":"784","un_a3":"784","wb_a2":"AE","wb_a3":"ARE","woe_id":23424738,"woe_id_eh":23424738,"woe_note":"Exact WOE match as country","adm0_a3_is":"ARE","adm0_a3_us":"ARE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":20,"long_len":20,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"ARE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.863047722,24.234686591000138],[53.88860110800013,24.219956773000078],[53.89234459700006,24.21784088700015],[53.926605665000096,24.21137116100006],[53.933929884000094,24.208644924000097],[53.954600457000225,24.20099518400015],[53.96485436300017,24.172593492000132],[53.95101972700016,24.149725653000033],[53.92042076900005,24.13983795800003],[53.884613477000094,24.14118073100009],[53.85499108200011,24.15216705900015],[53.85710696700019,24.161444403000118],[53.84937584700017,24.17422109600015],[53.83741295700017,24.177435614],[53.82699629000015,24.158392645000035],[53.83448326900005,24.15216705900015],[53.807302280000016,24.135972398000106],[53.774668816000165,24.13011302300005],[53.74146569100017,24.13349030200008],[53.711599155000066,24.14472077000009],[53.69434655000006,24.153591213000126],[53.694183790000096,24.153631903000118],[53.68425540500019,24.156724351000022],[53.656993035000106,24.158392645000035],[53.63949629000015,24.160467841000028],[53.62818444100017,24.16421133000007],[53.62777754000015,24.171942450000174],[53.64332116000017,24.18626536700016],[53.65463300900015,24.19261302299999],[53.6560978520001,24.193426825000117],[53.6560978520001,24.1935082050001],[53.68067467500012,24.20184967700005],[53.69117272200012,24.206732489000117],[53.710215691000165,24.22231679900004],[53.71583092500012,24.22569407800013],[53.72282962300008,24.229885158000073],[53.7271427740001,24.231146552000084],[53.73894290500007,24.234686591000138],[53.74830162900017,24.234442450000117],[53.76295006600017,24.22870514500015],[53.765147332000055,24.228257554000052],[53.77027428500011,24.22724030199999],[53.777110222,24.229885158000073],[53.80103600400016,24.247748114000117],[53.82862389400012,24.25844961100016],[53.83961022200006,24.264349677],[53.84815514400005,24.275051174],[53.85352623800023,24.262681382],[53.85230553500011,24.25975169500005],[53.84815514400005,24.254584052000055],[53.84815514400005,24.25454336100016],[53.85840905000011,24.239203192000033],[53.863047722,24.234686591000138]]],[[[54.19882246200021,24.253078518],[54.19076582100009,24.22724030199999],[54.18083743600019,24.245062567000062],[54.159353061000076,24.25381094000012],[54.1341251960001,24.260402736000017],[54.112559441000165,24.271673895],[54.10157311300023,24.297674872000087],[54.10157311300023,24.29775625200007],[54.11524498800017,24.318508205000157],[54.13697350400011,24.3268903670001],[54.142100457000225,24.322699286],[54.15040123800022,24.315985419000143],[54.17587324300021,24.290147203000018],[54.18832441500015,24.277492580000153],[54.198903842000185,24.253119208],[54.19882246200021,24.253078518]]],[[[54.247813347000175,24.28318919500013],[54.23926842500006,24.28119538],[54.22828209700012,24.281398830000125],[54.22217858200011,24.284491278000033],[54.20508873800005,24.302923895000063],[54.19239342500012,24.311102606000176],[54.18311608200022,24.315008856000148],[54.17945397200012,24.321437893000095],[54.18458092500012,24.337062893000066],[54.19190514400012,24.346177476000047],[54.20378665500007,24.353745835000026],[54.21802819100017,24.357977606000034],[54.23243248800023,24.357570705000015],[54.24122155000012,24.340765692],[54.25114993600019,24.32656484600001],[54.27344811300023,24.302923895000063],[54.26636803500017,24.29450104400003],[54.257334832000055,24.287746486000074],[54.247813347000175,24.28318919500013]]],[[[52.608653191000116,24.268255927],[52.59215425400012,24.253367801000067],[52.579064850000144,24.266259262000077],[52.56813929600017,24.283127345000153],[52.55610432700021,24.306946332000095],[52.558239364000116,24.326812872000104],[52.57447350400011,24.34393952000006],[52.58716881600017,24.360500393000123],[52.61109459700006,24.373236395],[52.634461163000225,24.36659971400003],[52.6453747300001,24.350718968000038],[52.6508548310002,24.324899146000018],[52.64877363400015,24.309515692000144],[52.62720787900011,24.283596096000124],[52.608653191000116,24.268255927]]],[[[54.335297071000156,24.363999742000132],[54.33611087300002,24.35032786700019],[54.325450066000116,24.32127513200011],[54.30892988400015,24.31386953300013],[54.28158613400014,24.35748932500003],[54.27906334700006,24.36444733300011],[54.28614342500011,24.365545966000166],[54.29721113400015,24.362860419000086],[54.30689537900011,24.35724518400009],[54.31137129000015,24.35529205900006],[54.31267337300008,24.35984935099999],[54.3099064460001,24.365179755000053],[54.29517662900011,24.37523021000014],[54.29200280000006,24.384507554],[54.30486087300008,24.385931708000058],[54.325856967000135,24.37303294500005],[54.335297071000156,24.363999742000132]]],[[[53.427632111000065,24.328759424000125],[53.38833985400018,24.31205650000014],[53.369773005000155,24.30121764000002],[53.345792875000114,24.29833507300016],[53.33158924100016,24.28846306500004],[53.331541685000126,24.277545987000124],[53.322759164000075,24.262690637000144],[53.30866644600022,24.278623028000155],[53.294504348,24.27966690300009],[53.27600799300015,24.288666325000165],[53.26614240500007,24.27380950500004],[53.228001436000085,24.27889735600003],[53.21383753800009,24.280925668000165],[53.192718946000156,24.27700429900007],[53.189138217000185,24.275864976000136],[53.186534050000056,24.27594635600012],[53.18409264400006,24.281236070000162],[53.18458092500006,24.28701406500015],[53.18767337300014,24.29425690300017],[53.191254102000094,24.300360419000143],[53.19434655000006,24.302964585000055],[53.2317814460001,24.295558986000074],[53.24187259200008,24.297796942000062],[53.26758873800023,24.308254299000126],[53.272715691000116,24.31256745000003],[53.27808678500011,24.31614817900011],[53.3110460500001,24.328245655000085],[53.32960659200015,24.336115326000098],[53.33832707000013,24.336080495000047],[53.34806495400008,24.3201617590001],[53.35784931600008,24.315160629],[53.36670983200011,24.319240627000095],[53.368907097000175,24.330145575000145],[53.36768639400006,24.34088776200018],[53.36158287900017,24.350734768],[53.36158287900017,24.350775458],[53.39909915500019,24.401434637000147],[53.41675866000011,24.412827867000132],[53.41765384200019,24.407049872000172],[53.42212975400017,24.397162177000055],[53.423594597,24.391750393],[53.44678795700016,24.379950262000037],[53.44703209700011,24.379828192000062],[53.44044030000012,24.341253973],[53.427632111000065,24.328759424000125]]],[[[54.470550977000094,24.425034898000103],[54.45671634200002,24.4208031270001],[54.43043053500011,24.425238348000065],[54.382578972000175,24.439520575000145],[54.334808790000146,24.453192450000085],[54.334808790000146,24.46893952000015],[54.334808790000146,24.468980210000137],[54.37533613400014,24.503607489000117],[54.38941491000011,24.522691148000106],[54.396250847000054,24.522691148000106],[54.396250847000054,24.52265045800011],[54.38941491000011,24.501613674000097],[54.38941491000011,24.501572984000102],[54.396657748000024,24.48346588700018],[54.41431725400017,24.470607815000065],[54.45142662900016,24.453192450000085],[54.46973717500011,24.436468817000062],[54.470550977000094,24.425034898000103]]],[[[52.32622365200021,24.48064608600002],[52.314227638,24.47565074200004],[52.299652540000096,24.482896226000108],[52.294444207000225,24.488999742000104],[52.28956139400006,24.491603908000013],[52.28321373800023,24.497015692000147],[52.282337560000116,24.510402430000042],[52.29102750300015,24.521363981000075],[52.29862101000006,24.533317401000104],[52.30974368600019,24.539496161000116],[52.332564694000126,24.525414058000152],[52.339238422000136,24.501552021000133],[52.32622365200021,24.48064608600002]]],[[[56.282978993000164,25.255476134000116],[56.26302625800022,25.249222903000103],[56.259578304000144,25.275981892000104],[56.26507541900011,25.28117541900012],[56.27381171300007,25.281289265000012],[56.28832793600017,25.27192625800008],[56.282978993000164,25.255476134000116]]],[[[56.17468957500009,25.96652984600003],[56.17055546100019,25.876819560000154],[56.16383752400017,25.862453512000158],[56.14451053900021,25.837907206000082],[56.13965295400007,25.822972717000127],[56.144097127000094,25.805919495000083],[56.167351522000125,25.777704163000024],[56.17200240100007,25.76525014300013],[56.164871053000155,25.752176005000095],[56.15195194500015,25.74313262900013],[56.14120324800009,25.73269399100009],[56.14037642400009,25.715537415000043],[56.14513065600008,25.670837301000077],[56.15081506400023,25.658848369000125],[56.15249605900012,25.65796117700007],[56.15639611800006,25.655902812000036],[56.17985721900013,25.65207875599999],[56.18884891800016,25.645412496000073],[56.19877079200015,25.625258687000027],[56.20579878700008,25.61776560400007],[56.22150842300002,25.61383819600009],[56.237528117000096,25.616577047000064],[56.27905523463928,25.627445697787252],[56.27906334700012,25.627427476000047],[56.30030358200011,25.616156317000062],[56.32325280000006,25.607814846000096],[56.340017123000194,25.604559637000033],[56.34799238400015,25.59308502800009],[56.369965040000146,25.525702216000084],[56.36378014400012,25.43325429900007],[56.365000847,25.423163153000118],[56.36833743600001,25.396307684000032],[56.36695397200006,25.388861395000063],[56.35922285200016,25.37641022300012],[56.360199415000096,25.367254950000145],[56.369965040000146,25.351304429000052],[56.37468509200007,25.341213283000073],[56.37916100400011,25.334621486000017],[56.38249759200008,25.326849677000027],[56.38298587300008,25.321275132],[56.383636915000096,25.313462632000025],[56.3826603520001,25.302232164000102],[56.37842858200011,25.28261953300013],[56.3752547540001,25.252752997000144],[56.36597741000017,25.20921458500011],[56.362233920000136,25.06826406500015],[56.36198978000019,25.0572777360001],[56.38331139400006,24.978216864],[56.32899540200006,24.972688701],[56.32445085900011,24.967938686000092],[56.319280233000114,24.96253428200005],[56.316053243000084,24.929912347000155],[56.314277597000086,24.91196217600016],[56.31359582600007,24.90507008900012],[56.30832482900021,24.89517405200003],[56.280316203000126,24.876983948000188],[56.27468280600013,24.871949287000078],[56.2416622320002,24.84243825300011],[56.22367883300009,24.83448008300014],[56.186265096000085,24.830242615000188],[56.17136626700013,24.824068785000136],[56.171175577000064,24.823989766000082],[56.15484582500014,24.78670522100016],[56.13334842900011,24.762830709000085],[56.12725061,24.745699972000025],[56.118258912000066,24.735416362000038],[56.09913863200009,24.730507100000082],[56.077951294000144,24.729757792],[56.07626952200016,24.729972135000153],[56.0621383060002,24.731773173000036],[56.031545858000214,24.754149068000018],[56.002090291000194,24.82300791400003],[55.964779907000064,24.853858744000107],[55.95764855900015,24.868664042000134],[55.96085249800009,24.881247254000144],[55.978422486000085,24.886104838000062],[55.992375122000084,24.883004252000134],[56.00529423000009,24.876983948000188],[56.029272095000096,24.861170959],[56.025252234000135,24.88256236500017],[56.01697310400007,24.92661916200008],[56.00560428900004,24.9561780800001],[55.978422486000085,24.97175852500005],[55.975872913000075,24.972112462000112],[55.9354276940002,24.977727152000067],[55.89698042800014,24.96860626199999],[55.8621505130001,24.94845245400002],[55.85782570100011,24.944850718000097],[55.82938765500009,24.921167298000015],[55.799105265000065,24.886104838000062],[55.78866662600015,24.855202332000157],[55.79703820800009,24.778359477],[55.79703820800009,24.75954925500018],[55.79269738800022,24.72229054800006],[55.79476444500008,24.70391957700015],[55.799981385000166,24.693258293],[55.81491825400016,24.662733460000183],[55.81822554600014,24.643380636000032],[55.79021691900007,24.619867859000053],[55.784015747000154,24.58632985500013],[55.76995975800011,24.57240305600014],[55.7598311770001,24.55852793400008],[55.76117476400005,24.537443949000032],[55.77368046100017,24.49530181900009],[55.77368046100017,24.495250143000177],[55.77140669800022,24.44109324200015],[55.7746106370001,24.425900371000026],[55.78101851400007,24.418872376000124],[55.80106896900011,24.406470032000144],[55.80861372900003,24.39763336200015],[55.81088749200015,24.389235941000077],[55.80737349500012,24.34078928700002],[55.80096561700006,24.326268209000077],[55.762104940000114,24.262964579000155],[55.75414677000006,24.24547210700011],[55.75569706200005,24.2303309120001],[55.76768599500022,24.22487904900011],[55.830317831000144,24.21227],[55.84716434800011,24.21141733800006],[55.90318160000007,24.232242940000035],[55.93315393100008,24.220719096],[55.948966919000064,24.184829814000025],[55.9607491460001,24.142429301],[55.99785282400014,24.081270244],[55.98679406800008,24.065379740000154],[55.92354211400018,24.05114288300011],[55.80706343600011,24.00747629900006],[55.78845992000018,24.009569194],[55.762414998000196,24.02814687100006],[55.74443160000013,24.02527882900007],[55.72799849500015,24.019594421000036],[55.71259891800016,24.019232687000123],[55.680042765000195,24.02427113900002],[55.646866496000115,24.025020447000102],[55.618341105000155,24.020137025000096],[55.59105594900015,24.01000844300013],[55.561703735000066,23.995228984000036],[55.54227339700017,23.985436299000142],[55.49979537000016,23.970605164000016],[55.45680057800004,23.963163758000107],[55.452769816000085,23.948565166000137],[55.461554810000074,23.93055592900005],[55.478297974000185,23.916577454000148],[55.51457482900017,23.896604512000025],[55.53059452300013,23.874667867000156],[55.53514204900014,23.84588409400014],[55.538345988000195,23.770048930000044],[55.53410852000016,23.756768087000026],[55.487393025000046,23.69325775200015],[55.478297974000185,23.676359559000087],[55.44532840900015,23.552258607000155],[55.431479126000085,23.532931620000014],[55.39416874200006,23.49528534000008],[55.39396203600009,23.49518198600005],[55.37525516700012,23.469343771000027],[55.364093058000066,23.43601247200017],[55.34321578000018,23.336276957000067],[55.32109826600018,23.275092061000137],[55.22591027900014,23.121251322000045],[55.194801066000046,23.025081482000033],[55.1912870690002,22.995470886000177],[55.1912870690002,22.99536753400004],[55.197591593000226,22.849459127],[55.186842895000126,22.703576559000066],[55.12038700400015,22.623426412000086],[55.10529748500008,22.62094594300011],[54.9685616460001,22.63774078400017],[54.82944869000019,22.654897360000135],[54.69033573400011,22.67195058200015],[54.55132613100014,22.689003805000098],[54.41241988100009,22.706160380000156],[54.27330692600017,22.723265279000103],[54.13429732200021,22.740318502000047],[53.995287720000164,22.7574492400001],[53.8560714110001,22.774579977000073],[53.71706180800007,22.791684876000105],[53.578052206000194,22.80876393700005],[53.43893925000012,22.825868835],[53.29992964700014,22.842973735000143],[53.160920044000164,22.86005279600009],[53.02180708900007,22.877131857000123],[52.88279748500011,22.89423675600007],[52.743787883000124,22.911341654000026],[52.58307417800003,22.931107890000092],[52.55847619600015,22.938575134000118],[52.538477417000216,22.95474985800011],[52.48483728100004,23.018337708],[52.43264408400009,23.080375265000143],[52.38050256400012,23.142412822],[52.32830936600013,23.20445037800006],[52.276271200000075,23.266410421],[52.22407800300019,23.328422140000143],[52.171988159000165,23.390485535000025],[52.11979496300008,23.452523092000046],[52.067705119000124,23.514483134],[52.01551192300022,23.57649485300014],[51.96342207800009,23.638558248000106],[51.91122888200019,23.700518290000147],[51.85903568500012,23.762530009],[51.806842489000104,23.824490051000126],[51.75475264500008,23.886553446000093],[51.70255944800007,23.948591003000143],[51.650469605000154,24.01060272300019],[51.59352217700009,24.07832468700009],[51.578536011000125,24.101837464000184],[51.57316166200016,24.127830709000037],[51.575228719000194,24.191935324000053],[51.575538778000094,24.21772186300016],[51.56934655000006,24.25617096600008],[51.590668165000096,24.28440989800005],[51.591644727000094,24.328599351000108],[51.57398522200017,24.36444733300011],[51.593760613000114,24.3849144550001],[51.602386915000096,24.367905992000132],[51.62378991000011,24.339341539000046],[51.62794030000006,24.319728908000073],[51.62794030000006,24.262030341000024],[51.63445071700008,24.22687409100017],[51.64869225400017,24.21857330900009],[51.662933790000096,24.232814846000096],[51.672618035000106,24.278062242000104],[51.67937259200008,24.26577383000007],[51.6893009770001,24.234686591000138],[51.695974155000016,24.224351304000052],[51.700694207000225,24.221909898000103],[51.70980879000015,24.22109609600001],[51.71827233200005,24.223089911000145],[51.72364342500012,24.227769273000046],[51.72486412900017,24.232570705000125],[51.72087649800008,24.234686591000138],[51.7400822270001,24.27753327000015],[51.75879967500012,24.290513414000046],[51.77947024800019,24.262030341000024],[51.78223717500006,24.24038320500013],[51.77198326900006,24.176336981000148],[51.773448113000114,24.153225002000013],[51.78565514400006,24.103745835000055],[51.786794467000135,24.093003648000046],[51.78565514400006,24.059312242000043],[51.78777103000019,24.048570054000137],[51.79712975400011,24.028225002000124],[51.79916425900015,24.01837799700003],[51.809418165000096,24.000677802000112],[51.833262566000165,23.99494049700006],[51.88184655000012,23.993882554],[51.89356530000012,23.9903832050001],[51.90251712300002,23.985663153000086],[51.919688347000054,23.970363674000126],[51.92872155000006,23.964748440000122],[51.936371290000096,23.964748440000122],[51.93913821700008,23.969183661],[51.93336022200012,23.977118231000148],[51.93140709700006,23.98798248900006],[51.952891472000175,23.990912177000084],[52.01002037900017,23.987860419000086],[52.016937696000156,23.989691473000065],[52.02393639400006,23.987860419000086],[52.03638756600017,23.977118231000148],[52.06739342500006,23.963446356000034],[52.07569420700017,23.963812567000147],[52.11793053500016,23.970892645],[52.135590040000096,23.96653880400011],[52.14551842500012,23.971991278000147],[52.15552819100017,23.96653880400011],[52.17107181100019,23.973374742000132],[52.18824303500011,23.974269924000126],[52.206309441000116,23.97313060099999],[52.22437584700006,23.974025783000073],[52.24097741000011,23.979641018000095],[52.279063347000175,24.001369533000158],[52.29590905000012,24.003729559000092],[52.32781009200019,24.003851630000085],[52.341075066000116,24.007513739000117],[52.352549675000056,24.01634349200019],[52.36475670700005,24.02789948100012],[52.378103061000076,24.03799062700007],[52.392344597000175,24.042303778000175],[52.40886478000007,24.045233466000113],[52.428070509000094,24.05263906500009],[52.44418379000009,24.062689520000063],[52.450938347,24.073309637000094],[52.45655358200011,24.084662177000084],[52.48698978000019,24.096625067],[52.50180097700016,24.10748932500009],[52.5149845710001,24.11981842700014],[52.532481316000116,24.131822007000054],[52.55005944100017,24.141058661000116],[52.56364993600002,24.14472077000009],[52.57455488400009,24.15208567900008],[52.57764733200011,24.16901276200015],[52.5779728520001,24.18744538],[52.58073978000019,24.19936758000013],[52.60027103000007,24.209540106000173],[52.61841881600017,24.203680731000034],[52.63412519600009,24.189886786000113],[52.670095248000194,24.14472077000009],[52.68132571700019,24.140814520000088],[52.68539472700016,24.143459377000067],[52.68864993600019,24.148586330000068],[52.69743899800008,24.15216705900015],[52.72006269600015,24.151516018],[52.760996941000165,24.140611070000134],[52.782725457000225,24.137884833000058],[52.79542076900012,24.139878648000018],[52.81690514400011,24.149318752000013],[52.827647332000225,24.15216705900015],[52.83920332100015,24.152004299000097],[52.847829623000074,24.149603583000058],[52.85474694100017,24.14667389500012],[52.86198978000019,24.14472077000009],[52.9471134770001,24.137884833000058],[52.95671634200008,24.139634507000054],[52.99219811300017,24.15216705900015],[52.99691816500015,24.155910549000097],[52.99830162900017,24.161363023000135],[52.999766472,24.165676174000126],[53.005869988000114,24.165838934000092],[53.010996941000116,24.162787177],[53.01482181100002,24.158433335000023],[53.01758873800006,24.154364325000145],[53.01954186300023,24.15216705900015],[53.04883873800023,24.129950262000094],[53.067230665000096,24.121893622000144],[53.10718834700006,24.137884833000058],[53.12769616000011,24.130682684000035],[53.14649498800023,24.12132396],[53.163422071000156,24.124823309000174],[53.14966881600011,24.132228908000073],[53.14576256600011,24.141750393000066],[53.14535566500009,24.153062242000047],[53.1424259770001,24.165838934000092],[53.165293816000116,24.170314846000153],[53.191579623000194,24.15940989799999],[53.21558678500017,24.141546942000033],[53.2317814460001,24.124823309000174],[53.245616082000105,24.104152736000074],[53.2537541020001,24.098781643],[53.30909264400011,24.095770575000117],[53.43702233200011,24.11981842700014],[53.44581139400005,24.11981842700014],[53.454600457000225,24.114406643],[53.468272332000105,24.100327867000047],[53.47877037900017,24.09369538],[53.49301191500015,24.090643622000087],[53.50782311300023,24.091538804],[53.519297722000175,24.096869208000054],[53.53744550900009,24.08429596600014],[53.5481876960001,24.07876211100013],[53.55738366000017,24.076402085],[53.56153405000012,24.072577216000166],[53.57439212300014,24.05438873900009],[53.581309441000116,24.048529364000146],[53.58961022200012,24.047064520000088],[53.60108483200022,24.04718659100014],[53.61207116000011,24.04897695500013],[53.62916100400017,24.057033596000068],[53.63941491000017,24.05475495000009],[53.64893639400006,24.05036041900003],[53.656993035000106,24.048529364000146],[53.687836134000094,24.062079169000114],[53.694590691000116,24.06647370000009],[53.702810092000185,24.070502020000063],[53.712412957000105,24.06883372600005],[53.722422722000175,24.065090236000017],[53.73210696700002,24.062730210000055],[53.85377037900017,24.06199778900013],[53.87891686300023,24.064846096000064],[53.88982181100002,24.073309637000094],[53.95118248800023,24.103745835000055],[54.01433353000013,24.11326732000005],[54.03419030000012,24.12274811400006],[54.05518639400006,24.126410223000036],[54.08155358200017,24.137884833000058],[54.11207116000011,24.141791083000054],[54.12256920700005,24.14472077000009],[54.13542728000018,24.152044989000085],[54.153656446000156,24.165269273000106],[54.170095248000074,24.181097723000065],[54.177093946000156,24.19619375200007],[54.18702233200022,24.20359935100005],[54.25277754000015,24.22109609600001],[54.305918816000116,24.256781317000147],[54.31495201900006,24.258246161],[54.32300866000017,24.270656643000123],[54.341970248000194,24.26976146000014],[54.382578972000175,24.254584052000055],[54.390147332000225,24.265855210000055],[54.427256707000225,24.292141018000066],[54.445974155000016,24.31614817900011],[54.485606316000116,24.388332424],[54.479991082000225,24.413397528000086],[54.48316491000011,24.42511627800009],[54.49927819100017,24.432684637000033],[54.490000847000054,24.43838125200001],[54.485606316000116,24.439520575000145],[54.485606316000116,24.446966864000117],[54.501149936000076,24.44562409100014],[54.52572675900014,24.435207424000154],[54.540293816000165,24.432684637000033],[54.53394616000016,24.445257880000113],[54.516856316000116,24.46238841400016],[54.513438347,24.474310614],[54.52833092500006,24.467962958000086],[54.544281446000156,24.463568427],[54.55860436300023,24.457709052000055],[54.56812584700006,24.446966864000117],[54.574392123000194,24.446966864000117],[54.57129967500012,24.473334052000112],[54.552500847000175,24.481634833000026],[54.52605228000019,24.482855536000113],[54.49927819100017,24.487941799000154],[54.440684441000116,24.523911851000108],[54.41732832100015,24.528957424000154],[54.41732832100015,24.535101630000142],[54.42937259200007,24.538275458],[54.44166100400011,24.545721747000172],[54.45191491000011,24.556545315000065],[54.45362389400006,24.55019765800013],[54.45704186300017,24.54189687700007],[54.46509850400011,24.535101630000142],[54.46241295700011,24.54535553600006],[54.46583092500011,24.55434804900007],[54.47877037900011,24.569891669000086],[54.485606316000116,24.569891669000086],[54.4935001960001,24.542303778000147],[54.51286868600001,24.51528554900004],[54.53744550900015,24.49843984600004],[54.56128991000011,24.501613674000097],[54.55518639400006,24.504584052],[54.540293816000165,24.51585521],[54.55176842500006,24.51532623900003],[54.57325280000006,24.508978583000086],[54.581797722000175,24.508449611000017],[54.58513431100013,24.51194896],[54.593760613000114,24.525824286000088],[54.598887566000116,24.528957424000154],[54.63640384200008,24.59780508000004],[54.61980228000019,24.60431549700003],[54.61215254000015,24.613226630000053],[54.61589603000019,24.62116120000003],[54.632985873000024,24.624497789000046],[54.64340254000015,24.630560614000146],[54.64633222700015,24.64423248900009],[54.652110222,24.658392645],[54.67058353000007,24.66608307500003],[54.67058353000007,24.672308661000088],[54.66187584700006,24.678127346000124],[54.65772545700011,24.68838125200007],[54.65479576900012,24.700995184000035],[54.650157097000175,24.71385325700008],[54.65552819100011,24.721096096000096],[54.6482853520001,24.725327867000104],[54.6404728520001,24.73261139500012],[54.64332116000017,24.748683986000017],[54.65251712300014,24.75800202000015],[54.69166100400017,24.782171942000062],[54.696543816000116,24.788885809000092],[54.70134524800014,24.79828522300012],[54.707041863000114,24.803900458000115],[54.73780358200011,24.790920315000122],[54.73943118600019,24.789618231000034],[54.75416100400011,24.792425848000093],[54.768565300000056,24.801459052],[54.77361087300019,24.814764716000028],[54.76002037900011,24.83055247600005],[54.86882571700008,24.888657945000105],[54.917735222000054,24.920884507000054],[54.948090040000096,24.946437893000123],[54.9681095710001,24.958644924000012],[54.99284915500007,24.966009833000115],[54.99496504000015,24.96666087400014],[54.99935957100015,24.967962958000058],[55.00334720100014,24.969142971000096],[55.00586998800022,24.96991608300003],[55.01075280000012,24.97260163],[55.01400800900015,24.974351304],[55.01579837300008,24.975327867000047],[55.017995639000134,24.97650788],[55.02222741000016,24.97882721600014],[55.04997806100002,24.99339427299999],[55.04460696700019,25.01390208500011],[55.077647332000225,25.020249742000075],[55.08228600400017,25.016831773000046],[55.15691165500018,25.09674713700015],[55.259043816000165,25.215277411000116],[55.26417076900006,25.231187242000043],[55.26335696700007,25.244940497000144],[55.28239993600007,25.260687567000115],[55.29835045700017,25.25849030200011],[55.31332441500009,25.23891836100016],[55.31836998800022,25.225287177000112],[55.314219597000175,25.212062893000066],[55.301117384000094,25.193670966000028],[55.32886803500011,25.201483466000028],[55.33423912900017,25.219224351000104],[55.32650800900015,25.24119700700011],[55.306407097000175,25.275051174000097],[55.30372155000011,25.28302643400006],[55.309255405000016,25.291734117000132],[55.339366082000055,25.321437893000063],[55.34815514400006,25.32477448100009],[55.36329186300023,25.32404205900015],[55.358653191000116,25.33657461100016],[55.35938561300023,25.34857819200009],[55.36548912900011,25.358587958000054],[55.37696373800005,25.36497630399999],[55.38705488400015,25.357082424],[55.40723717500006,25.37274811400009],[55.43897545700011,25.412787177000112],[55.445160352000094,25.412787177000112],[55.44955488400014,25.40062083500014],[55.45533287900011,25.399888414000102],[55.46119225400017,25.407375393000066],[55.46566816500015,25.419623114000117],[55.47250410200016,25.412787177000112],[55.486094597,25.449937242000104],[55.495616082000105,25.46613190300017],[55.50660241000017,25.474839585000055],[55.49415123800023,25.480780341000084],[55.50049889400006,25.492987372000144],[55.51335696700019,25.50885651200018],[55.52027428500011,25.525702216000084],[55.52466881600017,25.54262929900007],[55.53565514400006,25.56240469],[55.55103600400017,25.57859935100005],[55.568125847000054,25.58466217700014],[55.55958092500012,25.568304755000113],[55.54859459700006,25.55487702000012],[55.542246941000116,25.542547919000086],[55.548187696000156,25.529486395],[55.563731316000116,25.523749091000052],[55.5833439460001,25.52684153900013],[55.60515384200007,25.53294505400011],[55.626312696000156,25.53632233300011],[55.632578972,25.544175523000106],[55.648122592000185,25.583156643000095],[55.65691165500019,25.59772370000003],[55.68344160200016,25.62352122600005],[55.6994735040001,25.634711005000057],[55.733897332000055,25.64679596600014],[55.75953209700006,25.67967357000005],[55.77051842500006,25.68716054900004],[55.77955162900011,25.688421942000115],[55.79224694100017,25.692043361000103],[55.80347741000017,25.697414455000125],[55.80836022200006,25.70416901200018],[55.81283613400009,25.706529039000046],[55.84245853000007,25.71381256700006],[55.87810306100019,25.740057684000178],[55.932465040000096,25.80255768400012],[55.95972741000011,25.82367584800012],[55.95378665500019,25.81460195500013],[55.947438998000024,25.794094143000063],[55.937185092000135,25.77667877800009],[55.94125410200016,25.770697333],[55.948496941000116,25.7689476580001],[55.95232181100013,25.77212148600016],[55.9544376960001,25.78709544500019],[55.96371504000009,25.815375067000147],[55.965993686000076,25.834214585],[55.97234134200019,25.842840887000094],[56.01441491000011,25.878851630000057],[56.023203972,25.889227606000148],[56.03077233200016,25.90086497600008],[56.03687584700006,25.91510651200015],[56.041026238000114,25.93353913],[56.03419030000006,25.93353913],[56.0306095710001,25.92426178600006],[56.024668816000165,25.91644928600006],[56.01693769600015,25.91046784100014],[56.00757897200006,25.906887111000074],[56.03370201900005,25.946437893000038],[56.055349155000066,25.988755601000104],[56.07325280000012,26.05231354400003],[56.077396672527215,26.061048175440746],[56.100585571000096,26.062854716000018],[56.15133182800017,26.074791972000142],[56.16270064300007,26.073551737000017],[56.17841027800014,26.03500111900003],[56.1834745690002,26.014537252000153],[56.18130415900012,25.996243795],[56.17468957500009,25.96652984600003]],[[56.26062458100009,25.331075419000072],[56.23362458100015,25.312526258000062],[56.2356677650001,25.296286519000105],[56.238880452000075,25.286246902000144],[56.24488716200014,25.277987676000137],[56.235126258000065,25.26747593300011],[56.208375419000184,25.25537374200009],[56.20612290300007,25.23059606300008],[56.20762458100015,25.220835160000078],[56.21995813000009,25.215257874000102],[56.23577111800009,25.2111754350001],[56.25220422400017,25.217634990000146],[56.28176314300012,25.236910299],[56.29314974300016,25.245846388000146],[56.31642574400009,25.253354775000034],[56.3443754190001,25.266527936],[56.34912290300016,25.2940245810001],[56.3093687090001,25.301327936000163],[56.29068832500016,25.327543033],[56.26062458100009,25.331075419000072]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Armenia","sov_a3":"ARM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Armenia","adm0_a3":"ARM","geou_dif":0,"geounit":"Armenia","gu_a3":"ARM","su_dif":0,"subunit":"Armenia","su_a3":"ARM","brk_diff":0,"name":"Armenia","name_long":"Armenia","brk_a3":"ARM","brk_name":"Armenia","brk_group":null,"abbrev":"Arm.","postal":"ARM","formal_en":"Republic of Armenia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Armenia","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":2,"mapcolor13":10,"pop_est":2967004,"gdp_md_est":18770,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"AM","iso_a2":"AM","iso_a3":"ARM","iso_n3":"051","un_a3":"051","wb_a2":"AM","wb_a3":"ARM","woe_id":23424743,"woe_id_eh":23424743,"woe_note":"Exact WOE match as country","adm0_a3_is":"ARM","adm0_a3_us":"ARM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ARM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.54717289200002,40.62155263300009],[45.51368656500003,40.601967265000084],[45.47927006000012,40.60982208300011],[45.47327559400017,40.61943390000012],[45.47131188900001,40.62987253800015],[45.4733789470001,40.640311178],[45.47927006000012,40.65023305300009],[45.49177575700017,40.65710601800008],[45.50557336400007,40.66020660400001],[45.5201977950002,40.66041331000015],[45.53466719600013,40.65891469300006],[45.56071211800022,40.6476492310001],[45.54717289200002,40.62155263300009]]],[[[45.00239994400013,41.29045237300014],[45.039400268000094,41.23117950500013],[45.029323364000135,41.21009552000011],[45.03485274200014,41.197693176000044],[45.05200931800019,41.192112121000136],[45.11732832900023,41.1920604460001],[45.13443322800018,41.18787465400008],[45.18678145300012,41.15686879500005],[45.19975223800023,41.14265777600009],[45.201044149000175,41.12674143500005],[45.16673099800008,41.107776185000105],[45.067822307000114,41.11092844700006],[45.05717696100012,41.07878570600003],[45.070044393000074,41.06209421900009],[45.09169681800009,41.05103546100009],[45.11102380400021,41.04953684499999],[45.11712162300009,41.06142242500012],[45.120015503000076,41.07961252900016],[45.136551962000084,41.07289459300012],[45.169211467000224,41.04715973000005],[45.18967533400021,41.03754791300003],[45.20517826400012,41.024887187],[45.2216113690001,41.014448548000146],[45.26874027500017,41.01026275700012],[45.31256189000007,40.99662017900003],[45.335351196000175,40.99382965200006],[45.381947947000214,41.01144811000013],[45.39152347800004,41.015068665000044],[45.41911869300023,41.017342428000134],[45.425216512000105,40.993674622000114],[45.41643151900021,40.96132517500003],[45.42873050900007,40.95119659500007],[45.4428427830002,40.948380197000105],[45.45281172700018,40.94639068600016],[45.47927006000012,40.92990590400007],[45.522058146000205,40.88815134700003],[45.53787113500013,40.87590403300011],[45.55823164800003,40.87094309600015],[45.58179610200014,40.86965118400012],[45.59915938300017,40.86267486600012],[45.60096805800006,40.8405573530001],[45.58220951300003,40.79937123700002],[45.55585453300009,40.776581930000035],[45.47833511100012,40.74818305300006],[45.437928915000064,40.73338043299999],[45.39880985500022,40.70893748000004],[45.37364343200008,40.67529612200009],[45.373585186000156,40.65129838300013],[45.37354008000008,40.63271474200003],[45.38780277500015,40.60951202400004],[45.407026408000064,40.59509430000009],[45.42723189300014,40.58295033800012],[45.44464685000016,40.566362203000104],[45.448574260000065,40.55649200400002],[45.45084802200009,40.53437449200011],[45.4554472250002,40.5236257940001],[45.46469730600015,40.51571930000013],[45.485419556000146,40.50528066000011],[45.493842814000146,40.49365346300006],[45.52619226100015,40.44104685500015],[45.585413452000154,40.398723857000064],[45.818370809,40.297799785000116],[45.819151645000176,40.29714101300006],[45.8616756590001,40.26126454700001],[45.881726115000134,40.26043772399999],[45.88850421200007,40.2619569530001],[45.902706746000064,40.26514028000015],[45.924617553000104,40.26617380800006],[45.939190307000075,40.26028269500013],[45.95355635600006,40.249585673000055],[45.97923954300032,40.223592428000174],[45.98109989500003,40.21780466700001],[45.98177168800012,40.211913555000095],[45.98109989500003,40.205970764000185],[45.96296146600011,40.14168528300003],[45.950765828000186,40.11719065400017],[45.931697225000136,40.097553609000116],[45.90952803600007,40.08267079700009],[45.90580733300007,40.07507436100012],[45.8940251060001,40.02908233700013],[45.88720381700014,40.01843699200013],[45.87376794400009,40.00975535100015],[45.8039014080002,40.004484355000145],[45.63957035300015,40.02541331000013],[45.576266724000135,39.99389068600006],[45.57758344100009,39.98398292600008],[45.579418986000206,39.97017120400004],[45.611148315,39.95916412300012],[45.71543135600004,39.95089589500016],[45.74276818900009,39.94050893100014],[45.764420613000055,39.92206044600014],[45.8091774440002,39.85126167200012],[45.81682051600009,39.839171448000045],[45.86188236500007,39.80454823800004],[45.883187644000174,39.796147871000144],[45.91614261900011,39.78315419500011],[45.97923954300015,39.76847808800004],[46.00657637500015,39.74791086800003],[46.045126994000064,39.68755279600013],[46.076546264000086,39.66812245700005],[46.11447676600008,39.65964752200013],[46.13168501800006,39.65215443900011],[46.14610274300017,39.638460185],[46.169563842000144,39.604095358000144],[46.18423995000015,39.59324330700009],[46.20646081500015,39.58792063500006],[46.241187378000205,39.593501689000064],[46.30950362200005,39.62052846300013],[46.34371342000017,39.61861643500002],[46.3578727620002,39.60967641200007],[46.38143721500009,39.58502675400016],[46.396423381000055,39.57665517200009],[46.41616377800008,39.57401967400007],[46.47931237800012,39.57867055300015],[46.49543542500007,39.575931702],[46.512023560000074,39.56756012000012],[46.52427087400022,39.55464101200012],[46.527268107000026,39.53815623000004],[46.518276408000105,39.525443827000075],[46.503703654000134,39.518467509000075],[46.492024780000094,39.51019928000012],[46.49171472200007,39.493662821000136],[46.498587687000025,39.483120830000175],[46.49822595200007,39.47376739500013],[46.49140466300011,39.46642934200004],[46.47931237800012,39.46188181600011],[46.47895196100015,39.46182942400013],[46.40572513800012,39.4511847940001],[46.37399580900009,39.43599192400008],[46.36086999500023,39.410257060000085],[46.374615927000065,39.378837789000144],[46.40737878500008,39.35914906800009],[46.47931237800012,39.33424102800005],[46.49528039500015,39.32400909400015],[46.50267012600013,39.3094880170001],[46.50794112100019,39.29357167500008],[46.51765629100012,39.27884389300009],[46.541840861000104,39.259051819000106],[46.5845255940001,39.23577158700009],[46.5911401770002,39.231069031000104],[46.5978581140001,39.22507456500007],[46.59914138200017,39.22248710700005],[46.602612346000086,39.21548858700008],[46.593827352000204,39.21212961900015],[46.57279504400011,39.21150950100018],[46.52644128400012,39.18582631500003],[46.51414229300004,39.18443105100012],[46.45337080900006,39.20840891600012],[46.41833418800015,39.211922913000095],[46.39528649900009,39.19517974900005],[46.39626835100014,39.1644322720001],[46.421848186000176,39.14464019800012],[46.455127807000025,39.129938253000105],[46.47931237800012,39.114771220000094],[46.49192142800021,39.08190500900015],[46.49750248200015,39.053534648000046],[46.49460860200017,39.025526022000136],[46.48148278800008,38.99377085400012],[46.48075931800011,38.99061859100006],[46.47931237800012,38.98775055],[46.47579838000015,38.975606588000076],[46.47409305900006,38.96323008300011],[46.475074911000064,38.95106028200003],[46.47931237800012,38.93938140900006],[46.51403894000006,38.882175599],[46.496055542000164,38.88607716900016],[46.391875855000166,38.92235402400003],[46.37823327700008,38.92470530300015],[46.36758793200008,38.92362009700015],[46.34335168500016,38.91747060199999],[46.3045426840001,38.91625620500015],[46.29131351700002,38.913930766000036],[46.27193485500007,38.90656687400003],[46.21994836500002,38.87716298400012],[46.20248173000018,38.870548401000136],[46.13587080900018,38.86370127400009],[46.07757979300007,38.95049184200015],[46.0254899500002,39.06376658100014],[46.0052327880002,39.09544423400014],[45.97923954300015,39.12443471300013],[45.95810388200019,39.151513163000075],[45.949008830000224,39.17779063000002],[45.9551066490001,39.20324127300013],[45.97923954300015,39.227942607000145],[45.986009155000175,39.23468638100017],[45.98807621300014,39.24189524400005],[45.985802450000136,39.24944000300009],[45.97923954300015,39.25729482000012],[45.9588273520001,39.27243601500014],[45.90178842600019,39.29412397600014],[45.88720381700014,39.299669495000146],[45.863329306000225,39.314035543000145],[45.844312378000176,39.33005523700008],[45.823745158000094,39.34307769800013],[45.76700443600018,39.35439483600011],[45.76437068000021,39.35914210000006],[45.75863285400007,39.369484355],[45.76498905400009,39.389483134000145],[45.79863041200005,39.43242624900002],[45.803074585000076,39.44818756199999],[45.79403121000021,39.493869528000104],[45.79403121000021,39.49392120400002],[45.79403121000021,39.49397288100012],[45.7972868250001,39.51939768500013],[45.797080119000064,39.53634755500006],[45.78808842000009,39.54895660400017],[45.76545414200004,39.561565654],[45.737858927000076,39.56978220600003],[45.71465621000007,39.569472148000145],[45.70906573600004,39.56842210300012],[45.58644698100014,39.54539093099999],[45.55967858900013,39.53681264300017],[45.47927006000012,39.4971768190001],[45.46862471500012,39.493662821000136],[45.45746260600018,39.489270325000135],[45.446093790000106,39.48751332600007],[45.43482832800012,39.488856914000124],[45.42407963000019,39.49371449800016],[45.42393727800007,39.493826942000126],[45.39235030100005,39.51877756800017],[45.374883667000205,39.5258572390001],[45.32754805500005,39.52926788300012],[45.31297530100019,39.533815409000155],[45.30289839700018,39.54508087200012],[45.29106449400015,39.56585479800016],[45.266191021000196,39.592918128000015],[45.25995528200011,39.59970286000004],[45.23318689000021,39.59272654200008],[45.204764852000125,39.572314352000106],[45.16791955500011,39.565544739000174],[45.14833418800018,39.575259909000025],[45.1444067790002,39.58983266300008],[45.15422530100008,39.625851136000065],[45.155878947000105,39.6492088830001],[45.15153812600013,39.66770904600004],[45.141254516000146,39.68440053300016],[45.07499903900006,39.74982027200009],[45.06751224800021,39.75721262600013],[45.03350915500007,39.770390116000144],[44.99599206500008,39.76046824200013],[44.95909509300023,39.73850575800016],[44.953215052000104,39.735965352000036],[44.92715905800017,39.72470815100003],[44.893052612000105,39.71840362600001],[44.84933435100007,39.71892039000015],[44.802928914000205,39.712409159000075],[44.77455855300022,39.702797343000086],[44.759107300000124,39.72310618100009],[44.697767374000165,39.78527292900016],[44.69203129100017,39.793024394],[44.687173706000095,39.7963833620001],[44.682419474000056,39.79721018500011],[44.67125736500023,39.79586659800007],[44.666193075000166,39.7963833620001],[44.647692911000064,39.80511667900008],[44.61151940900001,39.83731109600002],[44.59818688900012,39.831006572000106],[44.59446618600006,39.83679433200008],[44.594156128000094,39.84805979400012],[44.59105554200008,39.85782664],[44.57596602400017,39.86635325100012],[44.567491089000065,39.873019512000106],[44.56377038600013,39.881701152000076],[44.55911950700008,39.896894023000115],[44.54785404500009,39.91146677600007],[44.52217085800007,39.93353261300016],[44.46434493000001,39.972289937000184],[44.38092555300008,40.00980379300007],[44.32564538600016,40.03466339200004],[44.28905847200011,40.04339670800012],[44.25526208500011,40.04339670800012],[44.195007365000066,40.0307876590001],[44.16637862100018,40.02804880800015],[44.14591475400019,40.02339792900007],[44.1354761150001,40.02231272400009],[44.12700118000018,40.024483135000146],[44.1142887780002,40.03393992100013],[44.104470256000155,40.035955302],[44.08312788900017,40.03161448200002],[44.04834965000011,40.01285593700011],[44.032433309000076,40.00861847000006],[43.91213057400009,40.02432810500012],[43.802783244000096,40.07073354100014],[43.7112126060002,40.090732321000175],[43.665427287000085,40.11016265900015],[43.65250817900008,40.1389981090001],[43.666357463000196,40.148919983],[43.71162601700021,40.15646474200004],[43.72139286300015,40.16938385100006],[43.71493330900009,40.18064931300002],[43.683720744000226,40.2101048790001],[43.67307539900011,40.22772654300009],[43.691368856000196,40.238630269000154],[43.69034759000007,40.24044318800004],[43.6759692790001,40.26596710200009],[43.631475871000106,40.31030548100012],[43.604449097000185,40.32978749600012],[43.59421716300019,40.345445455000075],[43.601038452000154,40.36182688400014],[43.609565064000066,40.37298899400015],[43.624463001000116,40.41113748500008],[43.62532637500007,40.41334828800005],[43.62532637500007,40.42016957599999],[43.584863728000045,40.44657623400015],[43.5636247150002,40.46471466100009],[43.55949060100008,40.47789215200008],[43.593700399000085,40.50900136300011],[43.615301147000224,40.52042185500012],[43.638968954000084,40.52259226500011],[43.63628177900014,40.52977528900005],[43.634628133000064,40.53277252200017],[43.631475871000106,40.536854960000184],[43.63757369000009,40.53514963800002],[43.64201786300012,40.53437449200011],[43.64646203700008,40.53303090500005],[43.65250817900008,40.52941355400016],[43.65147465000009,40.55339141899999],[43.66480716900017,40.57406199200001],[43.70718184400019,40.6119408170001],[43.69953373200022,40.63457509400014],[43.705631551000096,40.64077626600012],[43.726405477000206,40.668991598],[43.72935103300014,40.6771047970001],[43.72413171400009,40.74635121700011],[43.72061771700007,40.762887676],[43.71131595900013,40.78164622100008],[43.669768107000124,40.83213409500003],[43.65953617400007,40.851977844000096],[43.65416182400011,40.87471547500009],[43.651939738000095,40.894765931000116],[43.647650594000226,40.91388621100013],[43.636178426000214,40.93352325500016],[43.60486250900013,40.96334055600006],[43.565433390000095,40.9881452440001],[43.522386922000095,41.00447499600013],[43.47959883700017,41.009125875],[43.46047855700007,41.02287180600014],[43.44456221600014,41.05144887300009],[43.436293986000095,41.08322987900014],[43.44042810000022,41.10658762600009],[43.450453328000066,41.10467559900017],[43.4603235270001,41.104520569000115],[43.4701420490002,41.10617421500008],[43.52414392100016,41.122814026000086],[43.566621948,41.12405426100004],[43.729712769000145,41.10669097900002],[43.754155721000046,41.10824127200014],[43.7737410890002,41.11449412100013],[43.82035323100015,41.14549998000017],[43.863244670000114,41.158987528000026],[43.95584883700005,41.16048614500012],[43.97775529000009,41.16453733800013],[43.97818639000016,41.16461706200006],[44.00111739100006,41.16885772700003],[44.04132165500018,41.18255198200004],[44.061268758000125,41.184153951000056],[44.1036434320001,41.17516225200002],[44.12472741700017,41.178056132],[44.144364461000094,41.18606597899999],[44.16007409700015,41.1978998820001],[44.16519006400003,41.20766672800015],[44.16586185700012,41.21614166300007],[44.16844567900014,41.22358306900015],[44.180331258000166,41.22993927],[44.19097660400004,41.23004262300013],[44.218106731,41.221567688000114],[44.26647587100015,41.19619456000014],[44.284976034000096,41.190871887000085],[44.30848881000006,41.193817444],[44.31773889100012,41.198571676000185],[44.324921916000136,41.204824524000074],[44.33308679200016,41.21035390200008],[44.344920695000184,41.21324778200007],[44.35727136300014,41.212162578000076],[44.41060144100001,41.18771962500013],[44.432460571000064,41.1816734830001],[44.45493982000008,41.18048492400008],[44.479227743000166,41.18580759700002],[44.49938155100003,41.20280914400002],[44.50589278200013,41.20658152300014],[44.516641480000054,41.20683990500014],[44.521912476000146,41.19929514600007],[44.52552982600016,41.18906321200011],[44.53100752800012,41.18146677700004],[44.55152307100022,41.17702260400013],[44.56625085500022,41.18694447900013],[44.57844649300014,41.20280914400002],[44.59136560100015,41.215779928000146],[44.61286299600019,41.223117981000044],[44.63312015800008,41.221050924000096],[44.67492639100007,41.208493551000075],[44.82153243000019,41.206219788000155],[44.8477840570001,41.20890696200008],[44.85770593300012,41.21934560200013],[44.85382048600015,41.22351397000013],[44.84706058800012,41.23076609400011],[44.80954349800001,41.244408672000034],[44.80127526900017,41.25851633700007],[44.820705607000065,41.273347474],[44.91723718300008,41.26177195200016],[44.95516768400009,41.262702128000015],[44.967363322000125,41.26900665300012],[44.98999759900008,41.28445790700012],[45.00239994400013,41.29045237300014]],[[44.97945560700006,41.0326386520001],[45.01573246300003,41.02323354100004],[45.029995158000105,41.046281230000105],[45.018884725000106,41.07490997300008],[44.97945560700006,41.08204132100012],[44.96395267800008,41.07377309200017],[44.960697062000094,41.05992380800002],[44.96694991000018,41.04483429000011],[44.97945560700006,41.0326386520001]],[[45.18678145300012,40.970833639000105],[45.20993249500012,40.967991435000116],[45.220474487000075,40.97905019100013],[45.191845744000176,40.99780873600003],[45.187711629000056,40.99837717700008],[45.18378422000009,40.99791208900017],[45.180270223000065,40.996413473000146],[45.177169637000105,40.99382965200006],[45.18678145300012,40.970833639000105]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Azerbaijan","sov_a3":"AZE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Azerbaijan","adm0_a3":"AZE","geou_dif":0,"geounit":"Azerbaijan","gu_a3":"AZE","su_dif":0,"subunit":"Azerbaijan","su_a3":"AZE","brk_diff":0,"name":"Azerbaijan","name_long":"Azerbaijan","brk_a3":"AZE","brk_name":"Azerbaijan","brk_group":null,"abbrev":"Aze.","postal":"AZ","formal_en":"Republic of Azerbaijan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Azerbaijan","name_alt":null,"mapcolor7":1,"mapcolor8":6,"mapcolor9":5,"mapcolor13":8,"pop_est":8238672,"gdp_md_est":77610,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"AJ","iso_a2":"AZ","iso_a3":"AZE","iso_n3":"031","un_a3":"031","wb_a2":"AZ","wb_a3":"AZE","woe_id":23424741,"woe_id_eh":23424741,"woe_note":"Exact WOE match as country","adm0_a3_is":"AZE","adm0_a3_us":"AZE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AZE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.07499903900006,39.74982027200009],[45.141254516000146,39.68440053300016],[45.15153812600013,39.66770904600004],[45.155878947000105,39.6492088830001],[45.15422530100008,39.625851136000065],[45.1444067790002,39.58983266300008],[45.14833418800018,39.575259909000025],[45.16791955500011,39.565544739000174],[45.204764852000125,39.572314352000106],[45.23318689000021,39.59272654200008],[45.25995528200011,39.59970286000004],[45.266191021000196,39.592918128000015],[45.29106449400015,39.56585479800016],[45.30289839700018,39.54508087200012],[45.31297530100019,39.533815409000155],[45.32754805500005,39.52926788300012],[45.374883667000205,39.5258572390001],[45.39235030100005,39.51877756800017],[45.42393727800007,39.493826942000126],[45.42407963000019,39.49371449800016],[45.43482832800012,39.488856914000124],[45.446093790000106,39.48751332600007],[45.45746260600018,39.489270325000135],[45.46862471500012,39.493662821000136],[45.47927006000012,39.4971768190001],[45.55967858900013,39.53681264300017],[45.58644698100014,39.54539093099999],[45.70906573600004,39.56842210300012],[45.71465621000007,39.569472148000145],[45.737858927000076,39.56978220600003],[45.76545414200004,39.561565654],[45.78808842000009,39.54895660400017],[45.797080119000064,39.53634755500006],[45.7972868250001,39.51939768500013],[45.79403121000021,39.49397288100012],[45.79403121000021,39.49392120400002],[45.79403121000021,39.493869528000104],[45.803074585000076,39.44818756199999],[45.79863041200005,39.43242624900002],[45.76498905400009,39.389483134000145],[45.75863285400007,39.369484355],[45.76437068000021,39.35914210000006],[45.76700443600018,39.35439483600011],[45.823745158000094,39.34307769800013],[45.844312378000176,39.33005523700008],[45.863329306000225,39.314035543000145],[45.88720381700014,39.299669495000146],[45.90178842600019,39.29412397600014],[45.9588273520001,39.27243601500014],[45.97923954300015,39.25729482000012],[45.985802450000136,39.24944000300009],[45.98807621300014,39.24189524400005],[45.986009155000175,39.23468638100017],[45.97923954300015,39.227942607000145],[45.9551066490001,39.20324127300013],[45.949008830000224,39.17779063000002],[45.95810388200019,39.151513163000075],[45.97923954300015,39.12443471300013],[46.0052327880002,39.09544423400014],[46.0254899500002,39.06376658100014],[46.07757979300007,38.95049184200015],[46.13587080900018,38.86370127400009],[46.126052286000146,38.86266774500011],[46.06796797700022,38.87411407500012],[46.00182214300017,38.897471822000156],[45.79108565300012,38.932095032000156],[45.76807409200009,38.93912990300011],[45.71687829600015,38.95478098600013],[45.627788127000116,38.95550445600013],[45.57084069800007,38.96638234500007],[45.543142131000224,38.96713165300018],[45.53556486900006,38.968452898000166],[45.53084314000009,38.96927622500006],[45.51027592000011,38.978655497000105],[45.49452900800005,38.98191651900011],[45.482577352000106,38.98439158200007],[45.45983972200011,38.99312489800015],[45.43860070800022,39.004235331000146],[45.42707686400021,39.014880677000164],[45.42526818900009,39.02562937500009],[45.428213745000136,39.03410431000016],[45.43229618400014,39.042475892000155],[45.434518270000154,39.05278534000014],[45.429712361000014,39.05947743700007],[45.405837850000154,39.06787485800005],[45.39638106300018,39.07332672200015],[45.39131677200007,39.08174998000011],[45.38346195500017,39.10324737600017],[45.37932784000023,39.111153870000024],[45.36992272900008,39.118957011000035],[45.36062097200007,39.12322031600008],[45.35193933100018,39.128310445000075],[45.34527307100009,39.13843902600003],[45.35390303500023,39.15319264700004],[45.348218628000176,39.16391550700014],[45.33488610800006,39.17042673800001],[45.32093347200017,39.17259714800012],[45.31111495000019,39.17629201300012],[45.31132165600016,39.18484446200013],[45.31390547700008,39.19424957299999],[45.31111495000019,39.20052826000001],[45.301709839000154,39.20138092100005],[45.292614787000076,39.19861623100017],[45.2856901440002,39.19492136700008],[45.28310632300011,39.19306101500017],[45.17892663600017,39.21982940700006],[45.15272668500009,39.21352488300012],[45.1462671310002,39.22866607700014],[45.13582849100018,39.27848215800016],[45.12890384900018,39.289282532000115],[45.12037723800009,39.29889434800013],[45.11434974800008,39.309349676000025],[45.09603763800007,39.34111399400011],[45.08797611500009,39.3507258100001],[45.07872603300004,39.35475657200003],[45.068649129000136,39.364213359000175],[45.06048425300011,39.374600322],[45.05717696100012,39.381731670000036],[45.05169925900012,39.38684763600013],[45.015629109000116,39.40596791600002],[45.01211511300008,39.40948191300007],[45.00994470200006,39.41402944000011],[45.00637902800011,39.41795684800017],[44.9985758870001,39.41961049500013],[44.98772383600013,39.419352112000134],[44.982504517000194,39.42017893500017],[44.95702803600008,39.43449330700015],[44.95330733300008,39.44162465500001],[44.96162723800014,39.453768616],[44.940698283000046,39.468082988],[44.92839929200014,39.488236796000145],[44.89842696100018,39.58435496],[44.886438029,39.60595570900015],[44.86535404500009,39.61758290600004],[44.86928145300007,39.62052846300013],[44.87227868700009,39.62507598900005],[44.849230997000205,39.62559275299999],[44.827836955000095,39.62879669200008],[44.82395307300007,39.63054002600016],[44.80964685100017,39.63696156900009],[44.8069928290001,39.63990171200008],[44.795745891000166,39.65236114600016],[44.784325399000096,39.690239970000064],[44.77455855300022,39.702797343000086],[44.802928914000205,39.712409159000075],[44.84933435100007,39.71892039000015],[44.893052612000105,39.71840362600001],[44.92715905800017,39.72470815100003],[44.953215052000104,39.735965352000036],[44.95909509300023,39.73850575800016],[44.99599206500008,39.76046824200013],[45.03350915500007,39.770390116000144],[45.06751224800021,39.75721262600013],[45.07499903900006,39.74982027200009]]],[[[50.60694420700005,40.33783600500003],[50.621267123000024,40.32607656500012],[50.62574303500011,40.31037018400015],[50.618907097000175,40.29999420800006],[50.60010826900006,40.30369700700011],[50.58757571700002,40.300604559000114],[50.57276451900006,40.310044664000046],[50.56299889400005,40.32485586100002],[50.565277540000096,40.33783600500003],[50.578298373000194,40.330023505000106],[50.58790123800006,40.33234284100017],[50.59669030000006,40.337469794000086],[50.60694420700005,40.33783600500003]]],[[[50.32642662900017,40.481878973000065],[50.33863366000016,40.47687409100002],[50.35368899800008,40.48065827000015],[50.36052493600018,40.47443268400009],[50.36280358200005,40.453558661000116],[50.37256920700011,40.44257233300006],[50.38502037900011,40.433986721000146],[50.39527428500011,40.42039622600002],[50.396250847,40.40851471600014],[50.388438347000054,40.40167877800003],[50.37354576900006,40.39907461100013],[50.35368899800008,40.399888414000046],[50.358653191000116,40.42422109600001],[50.32601972700015,40.45807526200018],[50.32642662900017,40.481878973000065]]],[[[45.220474487000075,40.97905019100013],[45.20993249500012,40.967991435000116],[45.18678145300012,40.970833639000105],[45.177169637000105,40.99382965200006],[45.180270223000065,40.996413473000146],[45.18378422000009,40.99791208900017],[45.187711629000056,40.99837717700008],[45.191845744000176,40.99780873600003],[45.220474487000075,40.97905019100013]]],[[[45.029995158000105,41.046281230000105],[45.01573246300003,41.02323354100004],[44.97945560700006,41.0326386520001],[44.96694991000018,41.04483429000011],[44.960697062000094,41.05992380800002],[44.96395267800008,41.07377309200017],[44.97945560700006,41.08204132100012],[45.018884725000106,41.07490997300008],[45.029995158000105,41.046281230000105]]],[[[46.43089156100004,41.89044159000015],[46.45233728000008,41.88617828400011],[46.47931237800012,41.88700510700012],[46.525511109000064,41.882302552000155],[46.543546183000075,41.87429270500008],[46.54912723800007,41.85537913000006],[46.54432133000009,41.81476145400002],[46.54985070800009,41.79775990899999],[46.56757572500007,41.78667531399999],[46.586592651000075,41.786778667000085],[46.603955933000094,41.79517608700009],[46.636512085000135,41.816518453000086],[46.65707930500011,41.82199615500015],[46.69749027500009,41.82822316500007],[46.70955494600011,41.83506555700008],[46.71557702600008,41.83848093700006],[46.73242354300007,41.85140004500006],[46.74079512500006,41.85124501600002],[46.745032593000104,41.8401345830001],[46.75402429200008,41.80088633200013],[46.75939864100022,41.78729543100006],[46.76911381100015,41.77571991000009],[46.834794556000105,41.730244650000046],[46.85189945400006,41.722338155],[46.864508504000156,41.71967681900015],[46.89055342600014,41.71709299700016],[46.9022323,41.71275217700018],[46.906883179000175,41.70693857800002],[46.91225752700014,41.688619283000136],[46.915978230000036,41.68094533300014],[46.92951745600013,41.66722524000012],[46.97923018400016,41.635495911000085],[47.00393151800003,41.605420227000124],[47.012613160000086,41.5754995730001],[47.02703088400014,41.55694773400016],[47.02826236300004,41.55707465900017],[47.069147177000076,41.56128855500013],[47.08826745600007,41.56697296099999],[47.10749108900009,41.56991851800008],[47.12557784000009,41.56630116800001],[47.14139082800008,41.55240020800012],[47.148728881000096,41.53508860300011],[47.15224287900017,41.518138733000015],[47.15932255100009,41.503514303000046],[47.176995890000086,41.493489075000106],[47.17924955000009,41.491732376000144],[47.187072794000215,41.48563425700017],[47.1918270260002,41.47669423500007],[47.19513431800013,41.466979065000096],[47.20050866700015,41.456850485000146],[47.2314628500001,41.42754994800002],[47.239059285000025,41.41571604400018],[47.24277998800008,41.391273092000134],[47.240919637000076,41.33892486600003],[47.25084151200022,41.316032206],[47.26841149900011,41.302803040000114],[47.34447920800008,41.26823150700001],[47.3672917100001,41.26178943800009],[47.37558842000012,41.25944651300004],[47.47914799000009,41.251953430000086],[47.50095544500019,41.24632069900015],[47.529170776000086,41.216555074000084],[47.547309205000175,41.205651347000114],[47.56777307200016,41.20549631800016],[47.603171427000085,41.2232730110001],[47.6224984130001,41.22906077100008],[47.64254886900008,41.22725209600016],[47.69488884300014,41.20713402100013],[47.72455936700007,41.19572947200011],[47.74373132300016,41.19268056200017],[47.81349103700009,41.197387753],[47.82873905400007,41.198416647000144],[47.871113729000086,41.208183492],[47.89462650600015,41.219293925000116],[47.898863973000196,41.22906077100008],[47.89379968200014,41.241876526000155],[47.88925215700007,41.262443746000045],[47.89214603700006,41.28326934800002],[47.90144779500011,41.29298451800003],[47.91478031400007,41.300219218],[47.92945642100014,41.313551738000044],[47.937931356,41.331741842000056],[47.9426855880001,41.34739980100012],[47.95322758000006,41.355771383],[47.97916914900022,41.352412415000074],[48.001648397000025,41.36207590800011],[48.03456628400008,41.43364776700015],[48.05353153500002,41.46129465800006],[48.086552775000115,41.47664255800014],[48.20184289500011,41.493489075000106],[48.23135013800007,41.50547800700015],[48.28369836400006,41.539532776000115],[48.37015303500007,41.580150452000154],[48.39304569500009,41.59888315900007],[48.41325118000006,41.62761525500015],[48.45541914900011,41.714405823000114],[48.462210945000066,41.720992372000026],[48.53066003500007,41.78737294600016],[48.578951939870734,41.845280617371984],[48.589366082000055,41.83836497600005],[48.62012780000006,41.82440827000009],[48.65544681100019,41.80060455900009],[48.743662957000055,41.708929755],[48.777842644000174,41.683010158000016],[48.79184004000009,41.667425848],[48.79761803500017,41.643133856000034],[48.86589603000018,41.58539459800009],[48.90406334700006,41.52338288000014],[48.924327019000174,41.51780833500014],[48.94117272200006,41.50462474199999],[48.95386803500011,41.48908112200017],[48.962168816000116,41.47614166900017],[48.98536217500006,41.45050690300012],[48.98943118600019,41.444525458],[48.994476759000094,41.44041575700014],[49.019216342000185,41.43475983300006],[49.02759850400017,41.43121979400017],[49.04249108200011,41.41437409100017],[49.07862389400023,41.35753001500002],[49.108897332000225,41.309759833000086],[49.12338300900009,41.293687242000104],[49.13591556100019,41.27496979400003],[49.1419376960001,41.253159897999986],[49.15430748800023,41.166449286000145],[49.16065514400005,41.1480980490001],[49.171641472,41.140366929],[49.17847741000011,41.12885163000014],[49.195485873000194,41.05727773600002],[49.243174675000056,40.997219143],[49.3631291020001,40.894232489000146],[49.37305748800011,40.88279857],[49.38200931100002,40.86664459800012],[49.403168165000146,40.85272858300014],[49.44874108200011,40.831284898000106],[49.47103925900015,40.83576080900017],[49.48991946700008,40.8231468770001],[49.50782311300023,40.806219794000114],[49.52784264400012,40.79779694200006],[49.53882897200006,40.78807200700011],[49.53435306100019,40.76618073100017],[49.5169376960001,40.72890859600001],[49.510996941000165,40.709540106000176],[49.50953209700006,40.69904205900012],[49.51075280000006,40.68793366100009],[49.514903191000165,40.68158600500006],[49.52833092500006,40.66885000200001],[49.53126061300011,40.6637230490001],[49.53191165500007,40.662868557000174],[49.538910352000094,40.653998114000146],[49.55665123800023,40.64118073100009],[49.576182488000114,40.629950262000094],[49.58961022200012,40.62518952],[49.63306725400011,40.62319570500007],[49.6525985040001,40.61920807500009],[49.66846764400006,40.61220937700001],[49.70411217500012,40.588080145],[49.72380618600002,40.580755927],[49.77393639400006,40.575628973000065],[49.81674238400014,40.56537506700015],[49.84034264400005,40.56378815300012],[49.858653191000116,40.566636460000055],[49.914235873000074,40.58429596600017],[49.938161655000016,40.58746979400003],[50.05201256600017,40.58429596600017],[50.06039472700016,40.577948309000035],[50.06478925900014,40.57094961100015],[50.06804446700008,40.563706773000135],[50.07252037900011,40.556952216000084],[50.09034264400012,40.54022858300005],[50.109385613000114,40.52708567900011],[50.12964928500011,40.518459377],[50.2200626960001,40.50364817900014],[50.23755944100011,40.496161200000145],[50.24854576900012,40.48118724200013],[50.26075280000006,40.45807526200018],[50.27588951900006,40.43659088700014],[50.295664910000106,40.4272321640001],[50.31739342500006,40.42121002800012],[50.33594811300006,40.405951239000146],[50.350596550000056,40.38589101800009],[50.36052493600018,40.365179755000085],[50.37077884200013,40.28261953300007],[50.37769616000011,40.274400132],[50.385996941000116,40.25568268400012],[50.39112389400012,40.2350121110001],[50.387868686000076,40.221136786000116],[50.36866295700011,40.249701239],[50.34791100400011,40.274400132],[50.323090040000146,40.29657623900006],[50.27369225400017,40.32733795800014],[50.25261478000007,40.33633047100015],[50.22999108200011,40.342759507000075],[50.18531334700006,40.34747955900018],[50.14771569100011,40.35691966400019],[50.12769616000017,40.35895416900003],[50.11646569100017,40.35797760600006],[50.1028751960001,40.353420315],[50.09359785200016,40.35150788000014],[50.05518639400006,40.35150788000014],[50.03760826900011,40.34577057500017],[50.00375410200016,40.32420482000008],[49.9837345710001,40.32420482000008],[49.97657311300022,40.32904694200015],[49.96371504000009,40.344794012000094],[49.95582116000011,40.35150788000014],[49.94532311300005,40.35472239800002],[49.91960696700002,40.358140367000104],[49.893402540000096,40.36904531500009],[49.87354576900006,40.36058177300005],[49.84034264400005,40.33783600500003],[49.84717858200011,40.31415436400009],[49.81902103000019,40.292059637000094],[49.77833092500011,40.27582428600005],[49.71192467500006,40.26434967700011],[49.6536564460001,40.238430080000015],[49.577159050000056,40.21674225500011],[49.559255405000016,40.206691799000154],[49.5208439460001,40.17422109600007],[49.50359134200019,40.16494375200001],[49.49252363400015,40.153998114000146],[49.49040774800008,40.13239166900014],[49.495860222000175,40.10521067900014],[49.49659264400012,40.094549872000115],[49.442637566000116,40.078436591000056],[49.43262780000012,40.06297435100011],[49.43506920700005,40.04279205900018],[49.44874108200011,40.02252838700018],[49.457692905000016,40.015041408000016],[49.47193444100011,40.006496486000074],[49.479746941000116,39.99896881700012],[49.483897332000055,39.98867422100001],[49.47828209700006,39.98232656500009],[49.468272332000055,39.97736237200003],[49.450694207000225,39.96482982000013],[49.44288170700017,39.96185944200011],[49.4353947270001,39.957668361000074],[49.42823326900023,39.94745514500014],[49.423675977000094,39.93549225500011],[49.423106316000116,39.92649974200019],[49.42823326900023,39.90643952000015],[49.43970787900011,39.884995835000026],[49.44312584700012,39.873358466000084],[49.43848717500006,39.86176178600009],[49.429698113000114,39.854315497000115],[49.422048373000074,39.84943268400003],[49.41651451900023,39.84373607000005],[49.41456139400012,39.834173895000056],[49.416351759000094,39.82859935100005],[49.419688347,39.82330963700018],[49.42237389400012,39.81732819200006],[49.421397332000225,39.810248114],[49.41716556100019,39.805853583000115],[49.40088951900006,39.796616929000045],[49.39478600400017,39.782456773000135],[49.39519290500019,39.77619049700009],[49.40088951900006,39.769273179],[49.3963322270001,39.75617096600003],[49.40202884200019,39.742499091000084],[49.42481530000006,39.71808502800003],[49.423594597,39.70954010600011],[49.40984134200019,39.701361395],[49.38396243600019,39.690130927],[49.3587345710001,39.66657135600015],[49.3372501960001,39.64642975500011],[49.318044467000014,39.62140534100011],[49.319021030000016,39.604193427],[49.307383660000106,39.58759186400012],[49.29712975400017,39.56557851800012],[49.289235873000194,39.5423851580001],[49.284922722,39.52220286700016],[49.28581790500019,39.49518463700012],[49.295746290000096,39.4767113300001],[49.38884524800008,39.41079336100013],[49.40088951900006,39.399359442],[49.40894616000011,39.38641998900009],[49.4080509770001,39.382025458],[49.40357506600011,39.37848541900002],[49.397308790000096,39.34516022300012],[49.39869225400017,39.33515045800006],[49.40707441500015,39.323675848],[49.39478600400017,39.32868073100015],[49.385590040000096,39.33494700699999],[49.378672722,39.342474677000055],[49.37305748800011,39.350978908000094],[49.36687259200002,39.350978908000094],[49.37061608200005,39.33616771000011],[49.37907962300014,39.3198102890001],[49.39136803500017,39.305487372000115],[49.40707441500015,39.29694245000009],[49.40707441500015,39.289496161000116],[49.38453209700006,39.29368724200005],[49.370371941000116,39.305853583000115],[49.35767662900016,39.320135809000035],[49.306407097000054,39.34650299700003],[49.27312259200002,39.33657461100001],[49.247325066000116,39.310695705000015],[49.23707116000017,39.278957424000154],[49.23780358200011,39.16950104400008],[49.234304233000124,39.156358140000016],[49.22966556100019,39.13865794500013],[49.21558678500017,39.10635000200001],[49.21078535200016,39.090765692],[49.20785566500015,39.05540599200019],[49.203298373000194,39.03412506700012],[49.19385826900006,39.01634349200013],[49.11882571700008,38.97532786700013],[49.07927493600019,38.963324286],[49.05152428500011,38.98102448100009],[49.054698113000114,38.99274323100009],[49.05437259200008,39.00079987200003],[49.05583743600002,39.00751373900009],[49.06519616000017,39.0151227890001],[49.11011803500017,39.021958726000136],[49.12549889400012,39.02814362200009],[49.13868248800023,39.04344310100005],[49.146820509000094,39.06342194200011],[49.14771569100017,39.083441473],[49.13640384200008,39.10228099200005],[49.11638431100013,39.11029694200009],[49.06861412900017,39.11139557500003],[49.06861412900017,39.120306708000086],[49.06275475400011,39.16132233300008],[49.05892988400009,39.17279694200012],[49.041188998000194,39.18439362200006],[49.02222741000011,39.18821849200005],[48.97950280000006,39.18707916900003],[48.96762129000015,39.18382396000008],[48.961761915000096,39.17584870000012],[48.957855665000096,39.16567617400007],[48.949554884000094,39.15127187700001],[48.94874108200011,39.14618561400009],[48.949066602000094,39.13532135600009],[48.94695071700002,39.12750885600009],[48.94214928500011,39.125392971000096],[48.937266472000175,39.12543366100009],[48.934825066000116,39.124416408000016],[48.932953321000156,39.07770416900003],[48.936371290000096,39.05312734600004],[48.95264733200011,39.031642971000096],[48.948578321000156,39.00722890800013],[48.92172285200016,38.93545156500014],[48.91822350400017,38.92894114800005],[48.89869225400011,38.89305247600008],[48.896250847000054,38.89073314000011],[48.86793053500011,38.863836981000034],[48.831797722000175,38.871161200000024],[48.83253014400012,38.835638739000146],[48.83472741000011,38.81928131700012],[48.839203321000156,38.80353424700017],[48.863129102000094,38.75665924700003],[48.8685001960001,38.602484442],[48.874278191000116,38.43423086100013],[48.874278191000116,38.43406810099999],[48.874278368142505,38.43406279107354],[48.809712769000186,38.44463124600012],[48.77772505700008,38.44481211400007],[48.7553491620001,38.435226136000054],[48.73560876500008,38.41956817600011],[48.710287313000066,38.407114156000134],[48.6832088620001,38.39801910400014],[48.6591276450001,38.392644755],[48.612962151,38.395646443000125],[48.60786462400003,38.39597788500002],[48.575928589000085,38.420369161000124],[48.54864343200009,38.45625844400017],[48.535641255000115,38.4691540460001],[48.51081628400018,38.493775534000164],[48.49593347200002,38.51031199100008],[48.47908695500004,38.524755555000084],[48.46265384900019,38.54493520100009],[48.446634155000226,38.55640737],[48.43371504700022,38.56997243300016],[48.42673872900011,38.59645660400015],[48.41526656100021,38.61810903000007],[48.391753784000144,38.61810903000007],[48.341059204000054,38.59958302900013],[48.310311727000084,38.60015147000017],[48.2922249760002,38.61356150300013],[48.2765153400002,38.63177744600007],[48.22804284700007,38.662189026000036],[48.22618249500007,38.679087219000124],[48.230316609000084,38.698620911000134],[48.22563499700007,38.713193254000046],[48.222978556000186,38.72146189400003],[48.21036950700014,38.72975596100018],[48.077974487000084,38.780941467],[48.012965535,38.82155914300013],[47.993121786000216,38.850084534000175],[47.99074467000017,38.891218974000154],[48.000046428000104,38.90258778900015],[48.052446330000144,38.92790924100002],[48.05534021000014,38.93436879500008],[48.055133504000054,38.94191355400012],[48.058544149000085,38.9483731080001],[48.24318404200008,38.97387542800011],[48.284370158000144,38.99377085400012],[48.284370158000144,38.99379669200012],[48.28447351000008,38.99395172100016],[48.28447351000008,38.99400339800009],[48.28462854000023,38.99400339800009],[48.29367191600008,39.00459706700014],[48.3014233800001,39.01746449800005],[48.301590395000034,39.01794599900001],[48.30628096500013,39.03146881100015],[48.30679773000023,39.04539561000014],[48.301475057000204,39.05803049700007],[48.2712960210001,39.10831166600006],[48.25625817900013,39.11978383400016],[48.1991040450001,39.13823232100016],[48.14215661600022,39.181201274000145],[48.11776534000009,39.20804718000014],[48.104329468000145,39.23484141100012],[48.10618982000002,39.26918040000005],[48.12458662900021,39.29760243800017],[48.15352543200012,39.31904815700001],[48.18721846500008,39.33258738200008],[48.24985030100018,39.34235422800013],[48.302456909000085,39.36989776600002],[48.32840548400006,39.376329778000105],[48.338940471000086,39.37894114200016],[48.316719604000156,39.41516632100003],[48.28860762600012,39.44503529900014],[48.2200846760002,39.494024557000145],[48.05203291900014,39.65008738300004],[47.99074467000017,39.694270732000135],[47.9714176840001,39.704554342000144],[47.957708154000066,39.70725622000005],[47.957258341000085,39.70734486900001],[47.945682820000144,39.69396067400008],[47.935244182000105,39.68651926700015],[47.92294519100008,39.6841421510001],[47.84687748200011,39.6852790320001],[47.82310632300002,39.680318095000146],[47.80377933800016,39.669931132000144],[47.78821212300008,39.65765063500011],[47.745281616000085,39.62378407800009],[47.62498028300009,39.57141074000005],[47.60699548400012,39.56358103500004],[47.554078817000146,39.521981507000035],[47.54115970900014,39.51516021700008],[47.518732137000114,39.51319651400014],[47.44876224700013,39.494696350000126],[47.40690433800014,39.47681630400017],[47.374244833000176,39.45557729100001],[47.324532104000156,39.40596791600002],[47.32441724900016,39.40587667600011],[47.291355835000076,39.37961293500013],[47.26131955200012,39.366383556000144],[47.24970463000014,39.36126780300015],[47.15007246900004,39.33114044200009],[47.10222009300016,39.30840281200001],[47.092504924000224,39.29982452400016],[47.08909427900019,39.28985097200016],[47.05292077600009,39.24494415300016],[47.03607425900006,39.20701365200016],[47.03090661600018,39.19959808400013],[47.02046797700015,39.18996042900012],[47.01362785800015,39.186956287000086],[46.95375370300022,39.16065989200017],[46.94160974100012,39.15890289400009],[46.92662357600014,39.16205515600013],[46.89871830200016,39.171744487000076],[46.8830086670001,39.1714085900001],[46.866391477000064,39.1654447530001],[46.86616215,39.16536244800015],[46.85096927900011,39.15549224900015],[46.83737837800018,39.14324493400012],[46.81169519000011,39.108518372],[46.806010783000175,39.10239471500013],[46.798052613000124,39.097382101000065],[46.781516154000116,39.09037994400008],[46.773764690000085,39.08536733000001],[46.76162072800011,39.07058787099999],[46.74482588800006,39.040253804000045],[46.72839278200009,39.02795481400001],[46.67041182500022,39.004907125000145],[46.65217004400009,38.99294403100002],[46.63883752400014,38.979482320000145],[46.61067386900018,38.9340070600001],[46.59920170100011,38.9196926880001],[46.58535241700022,38.907703756000146],[46.5698494870002,38.89773020400012],[46.553726440000126,38.88982371000016],[46.532074016000166,38.88300242100003],[46.51403894000006,38.882175599],[46.47931237800012,38.93938140900006],[46.475074911000064,38.95106028200003],[46.47409305900006,38.96323008300011],[46.47579838000015,38.975606588000076],[46.47931237800012,38.98775055],[46.48075931800011,38.99061859100006],[46.48148278800008,38.99377085400012],[46.49460860200017,39.025526022000136],[46.49750248200015,39.053534648000046],[46.49192142800021,39.08190500900015],[46.47931237800012,39.114771220000094],[46.455127807000025,39.129938253000105],[46.421848186000176,39.14464019800012],[46.39626835100014,39.1644322720001],[46.39528649900009,39.19517974900005],[46.41833418800015,39.211922913000095],[46.45337080900006,39.20840891600012],[46.51414229300004,39.18443105100012],[46.52644128400012,39.18582631500003],[46.57279504400011,39.21150950100018],[46.593827352000204,39.21212961900015],[46.602612346000086,39.21548858700008],[46.59914138200017,39.22248710700005],[46.5978581140001,39.22507456500007],[46.5911401770002,39.231069031000104],[46.5845255940001,39.23577158700009],[46.541840861000104,39.259051819000106],[46.51765629100012,39.27884389300009],[46.50794112100019,39.29357167500008],[46.50267012600013,39.3094880170001],[46.49528039500015,39.32400909400015],[46.47931237800012,39.33424102800005],[46.40737878500008,39.35914906800009],[46.374615927000065,39.378837789000144],[46.36086999500023,39.410257060000085],[46.37399580900009,39.43599192400008],[46.40572513800012,39.4511847940001],[46.47895196100015,39.46182942400013],[46.47931237800012,39.46188181600011],[46.49140466300011,39.46642934200004],[46.49822595200007,39.47376739500013],[46.498587687000025,39.483120830000175],[46.49171472200007,39.493662821000136],[46.492024780000094,39.51019928000012],[46.503703654000134,39.518467509000075],[46.518276408000105,39.525443827000075],[46.527268107000026,39.53815623000004],[46.52427087400022,39.55464101200012],[46.512023560000074,39.56756012000012],[46.49543542500007,39.575931702],[46.47931237800012,39.57867055300015],[46.41616377800008,39.57401967400007],[46.396423381000055,39.57665517200009],[46.38143721500009,39.58502675400016],[46.3578727620002,39.60967641200007],[46.34371342000017,39.61861643500002],[46.30950362200005,39.62052846300013],[46.241187378000205,39.593501689000064],[46.20646081500015,39.58792063500006],[46.18423995000015,39.59324330700009],[46.169563842000144,39.604095358000144],[46.14610274300017,39.638460185],[46.13168501800006,39.65215443900011],[46.11447676600008,39.65964752200013],[46.076546264000086,39.66812245700005],[46.045126994000064,39.68755279600013],[46.00657637500015,39.74791086800003],[45.97923954300015,39.76847808800004],[45.91614261900011,39.78315419500011],[45.883187644000174,39.796147871000144],[45.86188236500007,39.80454823800004],[45.81682051600009,39.839171448000045],[45.8091774440002,39.85126167200012],[45.764420613000055,39.92206044600014],[45.74276818900009,39.94050893100014],[45.71543135600004,39.95089589500016],[45.611148315,39.95916412300012],[45.579418986000206,39.97017120400004],[45.57758344100009,39.98398292600008],[45.576266724000135,39.99389068600006],[45.63957035300015,40.02541331000013],[45.8039014080002,40.004484355000145],[45.87376794400009,40.00975535100015],[45.88720381700014,40.01843699200013],[45.8940251060001,40.02908233700013],[45.90580733300007,40.07507436100012],[45.90952803600007,40.08267079700009],[45.931697225000136,40.097553609000116],[45.950765828000186,40.11719065400017],[45.96296146600011,40.14168528300003],[45.98109989500003,40.205970764000185],[45.98177168800012,40.211913555000095],[45.98109989500003,40.21780466700001],[45.97923954300032,40.223592428000174],[45.95355635600006,40.249585673000055],[45.939190307000075,40.26028269500013],[45.924617553000104,40.26617380800006],[45.902706746000064,40.26514028000015],[45.88850421200007,40.2619569530001],[45.881726115000134,40.26043772399999],[45.8616756590001,40.26126454700001],[45.819151645000176,40.29714101300006],[45.818370809,40.297799785000116],[45.585413452000154,40.398723857000064],[45.52619226100015,40.44104685500015],[45.493842814000146,40.49365346300006],[45.485419556000146,40.50528066000011],[45.46469730600015,40.51571930000013],[45.4554472250002,40.5236257940001],[45.45084802200009,40.53437449200011],[45.448574260000065,40.55649200400002],[45.44464685000016,40.566362203000104],[45.42723189300014,40.58295033800012],[45.407026408000064,40.59509430000009],[45.38780277500015,40.60951202400004],[45.37354008000008,40.63271474200003],[45.373585186000156,40.65129838300013],[45.37364343200008,40.67529612200009],[45.39880985500022,40.70893748000004],[45.437928915000064,40.73338043299999],[45.47833511100012,40.74818305300006],[45.55585453300009,40.776581930000035],[45.58220951300003,40.79937123700002],[45.60096805800006,40.8405573530001],[45.59915938300017,40.86267486600012],[45.58179610200014,40.86965118400012],[45.55823164800003,40.87094309600015],[45.53787113500013,40.87590403300011],[45.522058146000205,40.88815134700003],[45.47927006000012,40.92990590400007],[45.45281172700018,40.94639068600016],[45.4428427830002,40.948380197000105],[45.42873050900007,40.95119659500007],[45.41643151900021,40.96132517500003],[45.425216512000105,40.993674622000114],[45.41911869300023,41.017342428000134],[45.39152347800004,41.015068665000044],[45.381947947000214,41.01144811000013],[45.335351196000175,40.99382965200006],[45.31256189000007,40.99662017900003],[45.26874027500017,41.01026275700012],[45.2216113690001,41.014448548000146],[45.20517826400012,41.024887187],[45.18967533400021,41.03754791300003],[45.169211467000224,41.04715973000005],[45.136551962000084,41.07289459300012],[45.120015503000076,41.07961252900016],[45.11712162300009,41.06142242500012],[45.11102380400021,41.04953684499999],[45.09169681800009,41.05103546100009],[45.070044393000074,41.06209421900009],[45.05717696100012,41.07878570600003],[45.067822307000114,41.11092844700006],[45.16673099800008,41.107776185000105],[45.201044149000175,41.12674143500005],[45.19975223800023,41.14265777600009],[45.18678145300012,41.15686879500005],[45.13443322800018,41.18787465400008],[45.11732832900023,41.1920604460001],[45.05200931800019,41.192112121000136],[45.03485274200014,41.197693176000044],[45.029323364000135,41.21009552000011],[45.039400268000094,41.23117950500013],[45.00239994400013,41.29045237300014],[45.097833500000064,41.34991880900019],[45.24961999600012,41.4444998170001],[45.2817110600001,41.4529230750001],[45.314422241000074,41.45163116500014],[45.33309559700015,41.44435245600009],[45.381239868000165,41.42558624300007],[45.396794475000064,41.42326080400012],[45.41694828300015,41.424604391000095],[45.450021200000066,41.43220082700015],[45.464800659000076,41.43018544500002],[45.47927006000012,41.417679749000015],[45.51182621300015,41.39458038300013],[45.65559004700012,41.35236073900016],[45.720702352000075,41.34238718700006],[45.74406010000021,41.335359192000155],[45.74530033400018,41.32915802000015],[45.73103763900011,41.32326690700016],[45.70809330300008,41.31711741200009],[45.68587243600021,41.296240133000126],[45.70974694800011,41.26771474300006],[45.75108809400015,41.24099802700003],[45.77033685200021,41.23210190300007],[45.82074792500006,41.208803610000146],[45.9691626380002,41.16828928600016],[46.017428426000116,41.16379343700014],[46.04161299600016,41.165447083000075],[46.061353394000065,41.17092478500016],[46.08760799100017,41.18365905100016],[46.11313317900013,41.196039531000096],[46.13540572100007,41.19991526300005],[46.2105949300001,41.20017364500002],[46.22857832800017,41.195419413000124],[46.244391317000094,41.18374054000004],[46.27343347200005,41.15630035400001],[46.3323446040001,41.11588938400003],[46.353118531000206,41.10653595000018],[46.41264978000018,41.09185984300008],[46.42903120900016,41.08095611600011],[46.456988159000076,41.05243072500018],[46.47491988100009,41.044110820000114],[46.496779012000076,41.04483429000011],[46.50556400500014,41.05527292900014],[46.51114506000007,41.07098256500002],[46.52241052200011,41.08700225800008],[46.543546183000075,41.097027487],[46.563131551000104,41.09558054600011],[46.58214847900015,41.09165313700014],[46.601785523000075,41.09403025300015],[46.615538650000104,41.108665934],[46.62111250800015,41.11459747300016],[46.62948409000009,41.146740214000104],[46.63475508600007,41.181053365000125],[46.64447025500007,41.20797678600003],[46.65036136900019,41.21417795800012],[46.66359053500016,41.22353139300016],[46.66948164900006,41.229887594],[46.67160038200003,41.23645050100008],[46.672685588000064,41.25396881100012],[46.67464929200016,41.261668600000014],[46.68343428600004,41.269471741000146],[46.69170251400013,41.268541565000085],[46.694803101000076,41.26978179900011],[46.688498576000114,41.284354553000085],[46.65707930500011,41.32063140900014],[46.637752320000146,41.33696116200018],[46.631034383000014,41.345539449000015],[46.62984053200009,41.34613637500002],[46.62286950700022,41.349621887000026],[46.607366578000125,41.345022685000075],[46.591553589000085,41.372927959000044],[46.54246097800014,41.39499379500013],[46.44510258000011,41.42594797800017],[46.39828373200007,41.45871083600015],[46.37792321800006,41.46248321600008],[46.36624434500018,41.46656565400009],[46.313947794000086,41.493747457],[46.29673954200021,41.510387268],[46.287851196000105,41.532143046000115],[46.27987105800017,41.57117159000001],[46.27839440900012,41.57839345300009],[46.25617354300019,41.610329489000044],[46.25389978000007,41.61591054300008],[46.24005049700011,41.61549713200016],[46.23343591300008,41.60795237300011],[46.22847497500007,41.598728129],[46.219689982000176,41.59330210400013],[46.19276656100007,41.610174459000014],[46.180002482000106,41.655158793000126],[46.17953739400016,41.70587921200003],[46.18899418200013,41.74014068600003],[46.20832116700009,41.755514425000015],[46.230128622000194,41.75732310000011],[46.276947470000124,41.749313253000125],[46.297773071000194,41.75081187000005],[46.313741089000104,41.75665130600011],[46.32831384300019,41.766418152000156],[46.37130863500008,41.80569224100004],[46.39275435400012,41.8316854860001],[46.43089156100004,41.89044159000015]],[[45.47927006000012,40.60982208300011],[45.51368656500003,40.601967265000084],[45.54717289200002,40.62155263300009],[45.56071211800022,40.6476492310001],[45.53466719600013,40.65891469300006],[45.5201977950002,40.66041331000015],[45.50557336400007,40.66020660400001],[45.49177575700017,40.65710601800008],[45.47927006000012,40.65023305300009],[45.4733789470001,40.640311178],[45.47131188900001,40.62987253800015],[45.47327559400017,40.61943390000012],[45.47927006000012,40.60982208300011]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Bangladesh","sov_a3":"BGD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bangladesh","adm0_a3":"BGD","geou_dif":0,"geounit":"Bangladesh","gu_a3":"BGD","su_dif":0,"subunit":"Bangladesh","su_a3":"BGD","brk_diff":0,"name":"Bangladesh","name_long":"Bangladesh","brk_a3":"BGD","brk_name":"Bangladesh","brk_group":null,"abbrev":"Bang.","postal":"BD","formal_en":"People's Republic of Bangladesh","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bangladesh","name_alt":null,"mapcolor7":3,"mapcolor8":4,"mapcolor9":7,"mapcolor13":7,"pop_est":156050883,"gdp_md_est":224000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"BG","iso_a2":"BD","iso_a3":"BGD","iso_n3":"050","un_a3":"050","wb_a2":"BD","wb_a3":"BGD","woe_id":23424759,"woe_id_eh":23424759,"woe_note":"Exact WOE match as country","adm0_a3_is":"BGD","adm0_a3_us":"BGD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BGD.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[91.9387313160001,21.714829820000105],[91.97486412900011,21.648749091000113],[91.98389733200023,21.60919830900015],[91.98170006600006,21.588080145000145],[91.97242272200012,21.546087958000058],[91.97022545700011,21.52358633000007],[91.96111087300014,21.50617096600011],[91.93921959700018,21.505357164000188],[91.91407311300011,21.509466864000146],[91.89454186300011,21.506781317000062],[91.89454186300011,21.501410223],[91.89918053500004,21.493841864000057],[91.89966881600006,21.48602936400006],[91.88770592500012,21.480129299000126],[91.87712649800008,21.481024481000034],[91.86841881600017,21.486761786],[91.86255944100006,21.494940497000083],[91.85824629000008,21.512640692],[91.85523522199999,21.51947663000011],[91.85547936300006,21.526678778000143],[91.87110436300006,21.547674872000087],[91.87370853000007,21.558010158000016],[91.87403405000006,21.58185455900009],[91.86890709700006,21.622219143000148],[91.84791100400011,21.68878815300003],[91.8535262380001,21.725816148000078],[91.86296634200002,21.745591539000188],[91.87232506600017,21.754828192000062],[91.88331139400012,21.753892320000162],[91.89795983200023,21.743312893000123],[91.90284264400012,21.730292059000035],[91.89820397200018,21.714829820000105],[91.89087975400017,21.698960679],[91.88770592500012,21.684963283000044],[91.90333092500012,21.702866929],[91.90951582100016,21.726792710000055],[91.90837649800014,21.752183335000083],[91.90121504000008,21.774318752000124],[91.91911868600002,21.77684153900016],[91.93555748800006,21.781154690000065],[91.93588300900015,21.76512278900016],[91.93555748800006,21.759995835000055],[91.9387313160001,21.714829820000105]]],[[[89.14470462300018,21.739325262000037],[89.13249759200002,21.721625067000147],[89.102305535,21.736761786000145],[89.05152428500016,21.793198960000083],[89.05144290500019,21.797105210000083],[89.05779056100013,21.803290106000034],[89.06421959700006,21.822088934000092],[89.0638126960001,21.841457424],[89.05372155000006,21.87474192900011],[89.05111738400015,21.890326239],[89.04468834700006,21.907782294000143],[89.04566491000006,21.917059637000122],[89.05738366,21.91766998900006],[89.06153405000006,21.91494375200001],[89.06495201900006,21.91022370000009],[89.06763756600006,21.90436432500014],[89.07154381600006,21.890326239],[89.08130944100017,21.822943427],[89.09278405000012,21.793402411000116],[89.11573326900012,21.781154690000065],[89.1390080090001,21.76683177299999],[89.14470462300018,21.739325262000037]]],[[[91.84107506600012,21.735419012000065],[91.83253014400005,21.725816148000078],[91.82398522200006,21.742621161000088],[91.83985436300004,21.82550690300009],[91.83253014400005,21.876695054000052],[91.83619225400011,21.89411041900003],[91.84343509200008,21.906968492000047],[91.86719811300006,21.931952216000166],[91.87110436300006,21.928859768000095],[91.87273196700008,21.925604559000032],[91.87403405000006,21.91766998900006],[91.8860783210001,21.880275783000044],[91.88770592500012,21.866156317],[91.88445071700008,21.850287177000055],[91.87037194099999,21.82461172100001],[91.86280358200005,21.789984442000115],[91.84107506600012,21.735419012000065]]],[[[90.59083092500006,21.93512604400003],[90.58082116000006,21.912502346000068],[90.57252037900015,21.91766998900006],[90.56560306100008,21.91766998900006],[90.55713951900006,21.897528387000037],[90.540782097,21.87592194200012],[90.52125084700006,21.86147695500007],[90.50359134200002,21.86245351800015],[90.50359134200002,21.869859117000047],[90.51075280000006,21.871405341000084],[90.52344811300006,21.875677802],[90.53150475400017,21.876695054000052],[90.52295983200023,21.888088283000016],[90.5179142590001,21.893255927000112],[90.51042728000007,21.897853908000158],[90.51693769600016,21.90448639500012],[90.51685631600006,21.91217682500006],[90.51539147200018,21.92129140800013],[90.51783287900011,21.931952216000166],[90.52198326900006,21.93878815300009],[90.52637780000005,21.943589585000083],[90.593516472,21.98655833500011],[90.593516472,21.966131903000147],[90.59734134200002,21.961330471000068],[90.600840691,21.954575914000127],[90.60661868600019,21.93878815300009],[90.59083092500006,21.93512604400003]]],[[[90.3322046230002,21.84951406500015],[90.32292728,21.843898830000125],[90.3186141290001,21.84625885600009],[90.3186141290001,21.89280833500011],[90.32252037900011,21.916693427],[90.3322046230002,21.93878815300009],[90.35401451900006,21.97675202],[90.3714298840001,21.994777736000042],[90.394297722,22.000230210000055],[90.39063561300006,21.978257554000052],[90.36548912900017,21.938706773000106],[90.34156334699999,21.860296942000147],[90.3322046230002,21.84951406500015]]],[[[90.34595787900011,21.972316799000122],[90.33961022200018,21.972316799000122],[90.34587649800012,21.993597723],[90.35865319100017,22.022691148000078],[90.37387129000014,22.045558986000074],[90.387461785,22.048041083],[90.38111412900017,22.02309804900007],[90.35279381600004,21.992987372000055],[90.34595787900011,21.972316799000122]]],[[[90.43189537900011,21.907782294000143],[90.41553795700011,21.90053945500013],[90.40235436300004,21.906887111000074],[90.39454186300004,21.921454169000086],[90.394297722,21.93878815300009],[90.39975019600016,21.952948309000092],[90.4064233730002,21.96336497599999],[90.41187584700006,21.976019598000065],[90.4142358730002,21.99713776200018],[90.41187584700006,22.028713283000073],[90.41553795700011,22.03831614800005],[90.42847741,22.048041083],[90.43523196700008,22.041205145000088],[90.47331790500002,22.003648179000077],[90.48617597700016,21.97679271],[90.47632897200006,21.945013739000146],[90.454844597,21.933050848],[90.43189537900011,21.907782294000143]]],[[[90.6134546230002,22.16404857000005],[90.593516472,22.102606512000147],[90.59343509200002,22.11253489799999],[90.59180748800011,22.119086005000057],[90.58619225400011,22.130560614],[90.5745548840001,22.096136786000056],[90.56869550900014,22.05809153900016],[90.55974368600002,22.023749091000028],[90.53834069100017,22.000230210000055],[90.51954186300006,21.994696356000063],[90.50904381600017,21.999416408000158],[90.50464928500016,22.01048411700019],[90.50359134200002,22.02411530200014],[90.50896243600019,22.033148505000057],[90.54444420700005,22.06167226800015],[90.53834069100017,22.06850820500007],[90.49537194100006,22.044989325000117],[90.48991946700019,22.034979559000035],[90.48365319100006,22.034979559000035],[90.48560631600017,22.05833567900011],[90.49170983200005,22.080145575000174],[90.50310306100002,22.096340236000017],[90.52084394600014,22.102606512000147],[90.5334578790001,22.110052802000055],[90.56006920700017,22.137681382000054],[90.57252037900015,22.137396552000112],[90.58106530000012,22.14887116100006],[90.59278405000006,22.159409898000135],[90.60450280000006,22.165594794000082],[90.6134546230002,22.16404857000005]]],[[[90.95411217500005,22.20807526200015],[90.95671634200008,22.198879299000094],[90.95671634200008,22.144842841000084],[90.94898522200006,22.121649481000148],[90.92937259200019,22.11688873900006],[90.91920006600006,22.132147528000033],[90.9202580090001,22.16006094000006],[90.927500847,22.190252997000087],[90.93555748800006,22.212469794000143],[90.94174238400015,22.205023505000085],[90.9471134770001,22.211615302000055],[90.95118248800006,22.212469794000143],[90.95411217500005,22.20807526200015]]],[[[90.98780358200005,22.19537995000009],[90.9764103520001,22.18577708500011],[90.97706139400005,22.239203192000062],[90.9829207690001,22.25918203300013],[90.99691816500015,22.25348541900014],[90.99781334700006,22.235093492000104],[90.99480228000006,22.21381256700012],[90.98780358200005,22.19537995000009]]],[[[90.99008222700016,22.2813988300001],[90.95289147200005,22.22675202000015],[90.93718509200019,22.23273346600014],[90.94019616000017,22.246812242000104],[90.9505314460001,22.26361725500011],[90.95671634200008,22.27765534100014],[90.96021569100004,22.32298411700016],[90.9661564460001,22.34739817900011],[90.9764103520001,22.36334870000003],[90.98389733200005,22.35590241100006],[90.98951256600017,22.340765692000062],[90.99350019600016,22.32233307500003],[90.9943953790001,22.302069403000118],[90.99008222700016,22.2813988300001]]],[[[91.08240771900014,22.101382523000055],[91.06329364900014,22.08984755199999],[91.0385848320001,22.091131903000033],[91.02247155000005,22.094875393000066],[91.01125716900006,22.10209066500012],[91.00511111500012,22.116821943000147],[91.03395508300011,22.148779882000056],[91.05225670700023,22.175441799000012],[91.05909264400006,22.192043361000074],[91.06827393900008,22.240732781000144],[91.06911953400005,22.311029637000118],[91.0748006630001,22.388589827000132],[91.0922569840001,22.39133829200007],[91.12689879300008,22.374864818000145],[91.14884715400015,22.357056968],[91.15645027600006,22.332078852],[91.17139733200004,22.319647528000058],[91.18140709700018,22.283596096000093],[91.18189537900017,22.260321356000176],[91.186784662,22.227757465000092],[91.17057633900018,22.197170808000052],[91.160899285,22.182074286000088],[91.15430748800006,22.169663804000052],[91.14146765000012,22.146201361000134],[91.12071197100008,22.13030138800015],[91.10637395300009,22.12165790000013],[91.09368931800012,22.118858822],[91.08240771900014,22.101382523000055]]],[[[90.63314863400015,22.431626695000134],[90.64771569100017,22.407212632],[90.65870201900012,22.379543361000074],[90.66114342500006,22.35590241100006],[90.650157097,22.376166083000058],[90.64747155000012,22.383775132000025],[90.64039147200018,22.366034247000115],[90.64673912900011,22.326076565000065],[90.64014733200023,22.30874258000007],[90.63502037900011,22.317613023000106],[90.63404381600004,22.328355210000108],[90.63428795700005,22.339544989000146],[90.63331139400012,22.34967682500009],[90.64014733200023,22.34967682500009],[90.6337996750001,22.367621161000145],[90.62614993600008,22.406968492000047],[90.61963951900006,22.42475006700012],[90.61361738400015,22.428615627000127],[90.60694420700011,22.427435614],[90.6014103520001,22.429185289000188],[90.59913170700011,22.442124742000104],[90.60157311300006,22.44830963700015],[90.60759524800008,22.450344143],[90.61443118600008,22.449042059000092],[90.61963951900006,22.44525788000008],[90.63314863400015,22.431626695000134]]],[[[90.65365644600008,22.431057033000158],[90.64747155000012,22.42475006700012],[90.65349368600002,22.483465887000037],[90.65601647200006,22.480698960000083],[90.66114342500006,22.48004791900003],[90.665293816,22.469142971000153],[90.6670028000001,22.45844147300012],[90.66732832100016,22.439032294000025],[90.6570744150001,22.433661200000145],[90.65365644600008,22.431057033000158]]],[[[91.15953324100016,22.45067424700015],[91.13416328800017,22.44948040000004],[91.11370966000007,22.461414850000107],[91.12356215000008,22.489145564000054],[91.15861860500014,22.503423074000082],[91.19998796600012,22.514694415000108],[91.21083048600005,22.495521457],[91.20101719800019,22.47219599600005],[91.18024445400007,22.459238753000093],[91.15953324100016,22.45067424700015]]],[[[91.55517907800018,22.4020312440001],[91.50751921700012,22.396796588000043],[91.47605216500014,22.413317257000173],[91.44651727100015,22.4532424530001],[91.42965828600009,22.493002901000082],[91.42378639900019,22.525301950000156],[91.44676458700005,22.57630398300007],[91.46755661400019,22.586309651000093],[91.55636062500017,22.478210170000025],[91.56363308400013,22.435621052000116],[91.55517907800018,22.4020312440001]]],[[[90.82789147200018,22.15241120000014],[90.77475019600016,22.075913804000052],[90.75733483200011,22.06167226800015],[90.75586998800006,22.065985419000143],[90.7500106130001,22.075995184000035],[90.72706139400012,22.053697007],[90.71778405000006,22.04840729400003],[90.69166100400011,22.007025458],[90.68287194100006,22.00397370000009],[90.67042076900012,21.997707424000154],[90.65772545700015,21.992865302000084],[90.64747155000012,21.994045315],[90.63941491000011,22.01609935099999],[90.65121504000015,22.044623114],[90.66993248800006,22.07493724200016],[90.68181399800008,22.102606512000147],[90.62598717500012,22.027167059000035],[90.61003665500017,22.02411530200014],[90.6035262380001,22.044012762000037],[90.60775800900008,22.072333075000174],[90.6189884770001,22.10130442900008],[90.63331139400012,22.12311432500003],[90.62224368600008,22.14508698100003],[90.63184655000006,22.18211497600008],[90.67351321700018,22.266424872000144],[90.67847741000006,22.28278229400017],[90.68181399800008,22.30190664300015],[90.68189537900017,22.360419012000094],[90.68799889400006,22.377630927000112],[90.67994225400011,22.407171942],[90.67774498800011,22.426703192000062],[90.68181399800008,22.439032294000025],[90.68181399800008,22.44525788000008],[90.67058353000017,22.463853257000082],[90.65894616000016,22.524400132000054],[90.64747155000012,22.54828522300012],[90.63135826900006,22.56159088700015],[90.574961785,22.59886302300013],[90.55876712300008,22.602932033000073],[90.55396569100017,22.63979726800015],[90.55632571700014,22.67470937700007],[90.57862389400006,22.757025458000115],[90.58545983200005,22.76805247600008],[90.59620201900012,22.775376695000162],[90.6134546230002,22.781683661000116],[90.63103274800002,22.785630601000104],[90.65056399800018,22.787420966000084],[90.66061944900017,22.75780489600014],[90.67154649400018,22.72241031500006],[90.6840952520001,22.694372801000057],[90.7013694870002,22.661898417000046],[90.71550702300011,22.638283560000144],[90.73127161300013,22.62052727800001],[90.74697855800011,22.596906803000095],[90.7545073850001,22.54843435400012],[90.76694021600021,22.517531391000162],[90.79055251900014,22.49533302300013],[90.83463688000009,22.45829561000012],[90.85502409100016,22.434665140000092],[90.83502200900014,22.339615964000146],[90.83619225400017,22.178168036],[90.82789147200018,22.15241120000014]]],[[[90.60661868600019,22.877264716000084],[90.62676027600006,22.857215927000098],[90.64525350300019,22.84928934900007],[90.66362959200009,22.82891803300005],[90.67823326900012,22.808335679000052],[90.66236412900017,22.805487372000115],[90.62805225200006,22.812082197000066],[90.59095563400015,22.813918922000155],[90.56177819100017,22.78880442900008],[90.54656009200019,22.78367747600005],[90.53155868500019,22.769236749000086],[90.52967723600014,22.744363068000112],[90.53461211700002,22.728775291000105],[90.52099282900011,22.711765344000113],[90.51096129300016,22.722723883000086],[90.49822024800008,22.733832098],[90.49675540500019,22.74315013200014],[90.49284915500013,22.75324127800009],[90.48292076900012,22.75975169500019],[90.45573978000019,22.767401434000035],[90.46420332100016,22.77887604400017],[90.4656681650001,22.78807200700014],[90.46265709700012,22.815822658000016],[90.46314537900017,22.83405182500009],[90.466075066,22.85175202],[90.473399285,22.865139065],[90.48682701900012,22.870428778000175],[90.52116946700008,22.864650783000016],[90.53760826900006,22.86676666900003],[90.54444420700005,22.880682684000092],[90.55274498800006,22.881740627000067],[90.59229576900012,22.881903387000037],[90.60661868600019,22.877264716000084]]],[[[90.6453556650001,22.97483958500011],[90.66732832100016,22.95917389500015],[90.66732832100016,22.953029690000065],[90.64161217500006,22.95229726800012],[90.63331139400012,22.953029690000065],[90.64470462300008,22.945990302],[90.6546330090001,22.93732330900009],[90.66236412900017,22.92780182500009],[90.66732832100016,22.91819896000011],[90.63624108200023,22.921332098],[90.62712649800002,22.92503489800005],[90.61963951900006,22.932521877000013],[90.60767662900011,22.95258209800006],[90.59913170700011,22.95917389500015],[90.5887150400001,22.962062893000066],[90.58472741000006,22.960394598000065],[90.58122806100008,22.956529039000046],[90.57252037900015,22.953029690000065],[90.56169681100017,22.95156484600001],[90.53451582100016,22.951239325000174],[90.52409915500019,22.953029690000065],[90.5080672540001,22.975775458],[90.52800540500019,23.007635809000032],[90.56128991000017,23.03261953300013],[90.58619225400011,23.03489817900011],[90.6072697270001,23.01813385600009],[90.6453556650001,22.97483958500011]]],[[[90.47779381600012,23.012396552000112],[90.469493035,23.007635809000032],[90.46094811300011,23.04848867400007],[90.45573978000019,23.06281159100014],[90.49439537900015,23.062933661000113],[90.50245201900012,23.064886786000084],[90.51042728000007,23.069037177000112],[90.5171004570001,23.05931224200016],[90.51563561300006,23.051947333000086],[90.5001733730002,23.038031317],[90.47779381600012,23.012396552000112]]],[[[90.53939863400015,23.35000234600001],[90.57764733200011,23.3236351580001],[90.58619225400011,23.301743882000054],[90.54957116000017,23.326239325000085],[90.52955162900011,23.333563544000086],[90.52409915500019,23.322251695000105],[90.50611412900011,23.31419505399999],[90.48707116000004,23.319037177000055],[90.46876061300011,23.331610419000143],[90.43726647200018,23.36180247600008],[90.42660566500015,23.375962632],[90.42969811300011,23.385158596000068],[90.45573978000019,23.384955145],[90.49187259200002,23.373032945000162],[90.53939863400015,23.35000234600001]]],[[[88.50682458500009,26.48763498900003],[88.5268233640002,26.475387676000096],[88.54976770000022,26.466654358000127],[88.55798425300006,26.465724182000155],[88.57917159000013,26.46603424100006],[88.59116052200007,26.461228333000136],[88.59787845900021,26.45146148700009],[88.60356286700008,26.44019602500013],[88.61152103700013,26.430842591],[88.62237308800016,26.42453806600015],[88.63301843300016,26.42009389300007],[88.6562728270001,26.415132955000118],[88.65193200700011,26.407071432000023],[88.64986495000002,26.398389791000067],[88.65224206600007,26.391516826],[88.66107873600018,26.38888132800018],[88.66852014200012,26.38572906500003],[88.6674349370002,26.368159078000147],[88.67337772700014,26.360717672000035],[88.69627038600007,26.350279032000103],[88.70970625900011,26.340615540000087],[88.7122384030001,26.328264872000105],[88.7029883220001,26.309661357000053],[88.69012089100008,26.299842835],[88.65327559400006,26.283099671000127],[88.64583418800007,26.276019999000127],[88.66340417500012,26.264444479000172],[88.74794681800009,26.29250478200002],[88.78401696800009,26.279947409],[88.79202681500007,26.264599508000014],[88.79848636900013,26.247649638000112],[88.8079948320001,26.23343861900007],[88.82484134900008,26.226565654000083],[88.84065433800016,26.232043355000158],[88.85564050400015,26.265116272000157],[88.87579431100012,26.27736358599999],[88.90271773300006,26.27291941400007],[88.94684940600021,26.2329218550001],[88.97532312000007,26.224343567000076],[89.01945479300016,26.234472148000048],[89.03971195500017,26.24718455],[89.0343376060001,26.265788066000038],[89.02353723100006,26.268836975000067],[89.01159997600021,26.26919871100007],[89.00436527500008,26.275709941000127],[89.00798262600014,26.297155660000055],[88.9986291920002,26.291522929000124],[88.98968916900017,26.289404195000074],[88.98173099800013,26.29183298700012],[88.97532312000007,26.299946188000106],[88.96602136200013,26.328471578000077],[88.9412166750001,26.34009877500013],[88.91243290200006,26.348935445000123],[88.89186568200009,26.36877919600012],[88.89124556500022,26.38578074100006],[88.89946211800006,26.404487610000118],[88.91196781400006,26.42123077399999],[88.92457686400009,26.432134501000135],[88.94100996900013,26.43942087800012],[88.95015669700015,26.436940410000044],[88.95930342700008,26.42856882800008],[88.97532312000007,26.41787180600006],[88.98653690600011,26.412704163000157],[89.00178145400017,26.397149557000134],[89.01087650500014,26.39017323900005],[89.0217802330001,26.386245829000174],[89.04374271700007,26.381078186000153],[89.05263106300018,26.37461863200012],[89.05728194200006,26.36262970000014],[89.05407800300006,26.353948059000103],[89.05521488500008,26.347023417000017],[89.0718546960002,26.340615540000087],[89.09572920800011,26.33451772100001],[89.10291223200014,26.327334696000076],[89.10353234900012,26.31369211800016],[89.09479903200022,26.309506327000022],[89.08032963100018,26.31560414600007],[89.06885746200007,26.314260559000033],[89.06942590300011,26.287388815000114],[89.07588545700011,26.271059062000074],[89.0958842370002,26.24103505500001],[89.10337732000008,26.225170390000116],[89.1116972250002,26.16450225900003],[89.11919030800007,26.14662221300007],[89.13159265100015,26.133754781000064],[89.19784183700014,26.10770985900008],[89.21262129800007,26.09897654300012],[89.22305993600017,26.08657419800015],[89.22926110800009,26.067195537000156],[89.23763269000014,26.05810048400012],[89.27297937100016,26.043476054000124],[89.29690555800008,26.018154603000156],[89.31514733900009,26.006785787000165],[89.33530114700007,25.99856923500012],[89.35147587100008,25.99686391200008],[89.36775394700007,26.00544220000002],[89.37974287900008,26.01531239899999],[89.39142175300006,26.015467428000036],[89.40661462500006,25.99505523700016],[89.41126550300012,25.99319488499999],[89.4161230870002,25.992626444000123],[89.4211873780001,25.99319488499999],[89.4263550210002,25.994900208000143],[89.4263550210002,25.99495188400006],[89.42640669700015,25.995003560000058],[89.42640669700015,25.99505523700016],[89.48061527500008,25.999241028000128],[89.48562789000013,25.99872426300008],[89.4906405030001,25.997329],[89.49534305900006,25.99505523700016],[89.50945072500011,25.972627665000072],[89.51818404200017,25.962085674000107],[89.52841597500006,25.95712473499999],[89.54169681900007,25.959708558000084],[89.54908654800008,25.968855286000164],[89.55182539900007,25.981516012],[89.55068851700011,25.99505523700016],[89.55916345200009,26.022237040000064],[89.60288171400006,26.055258280000047],[89.6113566490001,26.07220815000015],[89.60386356700015,26.084662171000115],[89.59078942900007,26.085023906000043],[89.57694014500012,26.08264679000008],[89.56701827000015,26.08709096299999],[89.5669149170001,26.09897654300012],[89.57787032100005,26.107244771000165],[89.59254642800008,26.113962708000187],[89.60422530100007,26.12073232000013],[89.58577681500006,26.122902731000025],[89.56939538600008,26.13008575400006],[89.5627808030001,26.14259145200016],[89.5734261480001,26.1607298790001],[89.57993737800015,26.166104228000066],[89.58675866700011,26.16920481400011],[89.59399336800007,26.169721578000136],[89.61440555800013,26.16419220000013],[89.61528405800007,26.169101461000153],[89.60846276900011,26.18067698200012],[89.60639571100015,26.211011047000156],[89.61332035300019,26.219382629000123],[89.6349211020001,26.225842183000097],[89.65300785400021,26.222689921000136],[89.65838220200007,26.207858785],[89.65782860800019,26.187174483000103],[89.65724532100015,26.165380758000154],[89.65579838100003,26.161298320000142],[89.65817549700009,26.159231262],[89.67037113400013,26.154115296],[89.67770918800012,26.15313344300013],[89.69765629100002,26.15478708900018],[89.70654463700006,26.15416697200011],[89.71848189300007,26.145537008000144],[89.72432133000008,26.130654195000133],[89.72876550300006,26.11416941300014],[89.73672367300006,26.10057851100005],[89.74984948700009,26.083887024000102],[89.75114139900009,26.07153635700014],[89.74871260600011,26.059030660000147],[89.7502112230002,26.041564026000017],[89.75584395400014,26.032417297000123],[89.77641117400006,26.008232727000163],[89.78395593200017,25.995106913000097],[89.78943363500017,25.987975565000156],[89.79553145400021,25.985960185000025],[89.8020426840001,25.988647360000055],[89.80886397300006,25.995106913000097],[89.80917403100014,25.995106913000097],[89.80932906100006,25.99521026600003],[89.81103438300013,25.99603708900004],[89.8126880290001,25.99634714800014],[89.8141349690001,25.996140442000083],[89.81527185000019,25.995106913000097],[89.82865604700012,25.979397278000032],[89.8256071370001,25.965703024],[89.81155114700019,25.955212708000047],[89.79201745600008,25.949114889],[89.81072432500017,25.9387796030001],[89.82643396,25.937487691000126],[89.83439213000011,25.931751608000084],[89.83005131100012,25.907980449000107],[89.78695316600007,25.839147441000122],[89.78312911000015,25.81444610700011],[89.80152592000016,25.724684144000108],[89.82421187300022,25.674092916000077],[89.83439213000011,25.634767151000073],[89.82509037300017,25.564487203000095],[89.82323002100006,25.489142965000113],[89.80856794000007,25.43950711200007],[89.80069909700015,25.412868551000102],[89.79923403500007,25.40289280899999],[89.7950146900001,25.374162903000084],[89.79852868700007,25.340056458000035],[89.80736535600012,25.30450307300005],[89.81904423000012,25.284969381000153],[89.83459883600014,25.28243723600015],[89.87020389800009,25.295563050000126],[89.90813440000012,25.296906637000077],[90.1300846770001,25.211588847000098],[90.28692264800006,25.18006622300005],[90.36464400300017,25.14999054000016],[90.39978397700011,25.149008687],[90.50137984200009,25.168800761000067],[90.58333866400007,25.162031149000043],[90.62343957500016,25.171436259000085],[90.63759891800012,25.171074524000105],[90.6489677330002,25.16781890900002],[90.67056848100017,25.158775533000053],[90.70767216000016,25.152987773000078],[90.7163538000001,25.153556214000144],[90.72203820800004,25.156605123000148],[90.73268355400015,25.166888733000164],[90.7379545490002,25.169420879000043],[90.75397424300016,25.167560527000045],[90.76689335100016,25.16053253200012],[90.77939904800014,25.15195424400009],[90.79397180200013,25.145391337000106],[90.82198042800022,25.14229075200008],[90.9348213860001,25.15635985800013],[90.94342004500012,25.157431946000187],[90.97514937400015,25.16781890900002],[91.13534631400013,25.191228333000154],[91.19084680200015,25.18947133400009],[91.20314579300006,25.19133168600011],[91.22495324700012,25.201615296000014],[91.23570194500022,25.20192535400018],[91.28396773300003,25.17898101800013],[91.43186568300021,25.137949931000023],[91.47103641800018,25.133919170000112],[91.48075158700013,25.135262757000145],[91.50090539600009,25.141153870000082],[91.51165409400018,25.142497457000115],[91.52343632100009,25.145184632000067],[91.54017948400016,25.15763865200013],[91.54875777200019,25.161100973000188],[91.5661210530001,25.159964091000074],[91.5734591070001,25.152264302],[91.58017704300012,25.14089548800011],[91.59619673700008,25.128906555000142],[91.61314660700006,25.12513417600003],[91.638674764,25.124048971000107],[91.66203251100015,25.127201233000093],[91.67226444500014,25.13650299100003],[91.67743208800007,25.152626038000093],[91.68890425700008,25.152987773000078],[91.70182336400009,25.147148336],[91.71071171100019,25.144667868000123],[91.71773970600012,25.14983551100012],[91.72373417200006,25.161927796000114],[91.73014204900008,25.16745717400012],[91.74533492100008,25.16936920200014],[91.79370406100006,25.165338440000042],[91.90057092300017,25.177585754000077],[91.9562781170001,25.16978261300015],[91.97508833800012,25.17536366800006],[92.00175337700009,25.18296010400003],[92.0339994710001,25.18166819300008],[92.06603886000002,25.17453684500005],[92.09291060400014,25.164718323000088],[92.10045536300017,25.159085592000125],[92.1103772380001,25.14487457299999],[92.11616499900006,25.139448548000118],[92.12412316900011,25.13696807900014],[92.13859257000016,25.13639963800007],[92.14551721200021,25.131697082000088],[92.15099491400022,25.12973337900017],[92.16474084500007,25.13355743400011],[92.17269901600011,25.13195546500016],[92.17921024600017,25.126684469000125],[92.19409305900015,25.109166159],[92.20804569500008,25.09810740100006],[92.22013798000009,25.090381775000154],[92.23367720600018,25.084955750000102],[92.25155725100015,25.08079579700008],[92.30354374200007,25.074284566000088],[92.3121220300001,25.06860015900015],[92.32814172400006,25.048007101000067],[92.35625370300008,25.037000021000082],[92.38105839100015,25.023434957000077],[92.38493703500015,25.00477323600002],[92.38687592400018,24.995444456000158],[92.38692635100008,24.995201830000056],[92.38694950400004,24.99509043400009],[92.39470096900007,24.993230082000178],[92.41186000600013,24.987527227000115],[92.41213950000015,24.987434336000074],[92.41227095600011,24.987390646],[92.41246032100017,24.98436081700005],[92.41247766200016,24.984083354000106],[92.44444627300018,24.962427197000167],[92.4445170490001,24.962379252000105],[92.45376877000015,24.958231063000156],[92.45402551300006,24.958115947000135],[92.4578281280001,24.953557685000092],[92.45805627500008,24.95328420100013],[92.4500284860002,24.946636187000124],[92.44981386800012,24.946458457000162],[92.44978804600012,24.946437073000155],[92.47427233300019,24.93671537100012],[92.47438602700018,24.936670228000096],[92.48379113800014,24.92822113000001],[92.4912671480001,24.912424218000027],[92.49133589700008,24.91227895100009],[92.49453983600007,24.894863993000158],[92.49154260200007,24.883727722000046],[92.47769331900011,24.863909810000123],[92.44203658000018,24.85540903700003],[92.38074833200002,24.83670216900005],[92.37092980900016,24.83791656500007],[92.36359175600009,24.84101715100003],[92.3635074090001,24.84112001400011],[92.35935428900021,24.846184794000024],[92.35932057700009,24.846428366000012],[92.35832076000023,24.853652039000153],[92.35814605200008,24.85374889899999],[92.29041792900009,24.89129832000016],[92.29024450000006,24.891351286000102],[92.25217736800019,24.902977194000144],[92.22303186100007,24.8913758340001],[92.21765751100006,24.87458099400014],[92.22175905800012,24.857046883000024],[92.22179162600017,24.856907654000125],[92.2349278610001,24.824990710000137],[92.23502079300007,24.824764914000113],[92.23688114400008,24.808590190000114],[92.23646773300005,24.793035584000094],[92.23378055900011,24.777532654000154],[92.18293094900011,24.647256368000072],[92.17342248600019,24.608395692000116],[92.16887496000017,24.574315084000048],[92.16360396300016,24.559199728000138],[92.15316532400011,24.544549459000063],[92.14997986200015,24.542182954],[92.13859257000016,24.533723246000037],[92.12319299300006,24.525377503000144],[92.11089400300014,24.514292908000144],[92.10593306500019,24.495250143000177],[92.1112040610001,24.43429779100002],[92.10758671100021,24.405979106000032],[92.08825972500009,24.381639507],[92.06273156800015,24.37102000000011],[92.03337935400006,24.36884959000004],[91.94997359200006,24.375386658000096],[91.9488367110001,24.363526917000073],[91.9713676350001,24.329678853000086],[91.97219445900006,24.31606211400019],[91.95307417800015,24.32298675500006],[91.93095666500014,24.33696523100015],[91.92186161300017,24.34450999000002],[91.89984745300008,24.33805043500014],[91.89643680900016,24.320118714],[91.90687544800019,24.280353699],[91.90594527200014,24.260639140000038],[91.88434452300007,24.17555389500002],[91.87710982300021,24.158035584000128],[91.86450077300017,24.150594177000027],[91.84424361200016,24.155322571000013],[91.81375451700009,24.18312449200006],[91.81137740100016,24.192038676],[91.80972375500019,24.214543763],[91.80703658100018,24.221132507],[91.79659794100021,24.22159759500012],[91.73293257600014,24.234284159000154],[91.72301070200015,24.220977478000137],[91.7258012290001,24.202063904000013],[91.73200240000008,24.181677551000078],[91.73262251800006,24.164314270000048],[91.72115035100013,24.148992208],[91.70368371600007,24.14294606500006],[91.68415002500008,24.14547821100014],[91.66616662600009,24.155916850000082],[91.65717492700006,24.17136810400008],[91.63950158700007,24.211701559000133],[91.62906294800021,24.215318909000118],[91.6245154210001,24.203459168],[91.61376672300017,24.14010386200009],[91.60601525900015,24.11886484800003],[91.59650679500007,24.10498972600014],[91.5818306890001,24.09610138000012],[91.5586796470001,24.08966766300007],[91.51754520700008,24.085197652000076],[91.4804415290001,24.088014018000038],[91.4045805260001,24.103129374000115],[91.36303267500014,24.099847921000148],[91.35083703600012,24.07424224900008],[91.34928674300008,24.036053366000104],[91.33905481000014,23.995228984000036],[91.32706587800007,23.987865092000035],[91.3162138270002,23.989467062000145],[91.30843257700022,23.99250103500019],[91.30494836400007,23.993859558000125],[91.29161584500011,23.994815573000025],[91.2741492110001,23.98822682700002],[91.26092004400019,23.977271424000133],[91.25037805200012,23.96404225700006],[91.21627160700015,23.908386739000104],[91.21193078600018,23.894459941000136],[91.21275760900019,23.88073984800012],[91.22402307100006,23.857485453],[91.22815718600006,23.84497975700019],[91.22526330600007,23.82614369800008],[91.20521285000015,23.77157338500014],[91.19498091600016,23.755166118000187],[91.17658410700008,23.74653615400014],[91.1575671790001,23.74498586100013],[91.1417541910001,23.73989573200005],[91.13234908000007,23.720646261000113],[91.13658654800011,23.69889048300008],[91.1523995370001,23.691009827000144],[91.16893599500011,23.68537709600004],[91.17524052000007,23.670313416000127],[91.16645552600019,23.654087016000016],[91.15229618400016,23.655094707],[91.13968713400007,23.65357025100009],[91.1362764890001,23.629514872000144],[91.14082401500016,23.612099915000115],[91.16986617000006,23.5619737760001],[91.17751428300014,23.544274597000182],[91.18588586500019,23.511563416000016],[91.19508426900009,23.49518198600005],[91.20335249900013,23.48792144800008],[91.2208191330001,23.477896220000062],[91.22733036300016,23.468775330000156],[91.2297074790001,23.461178894000014],[91.23446171100008,23.436270854000142],[91.24789758300001,23.3937669890001],[91.25812951700013,23.37363901800002],[91.2709452720002,23.364595643000158],[91.28396773300003,23.361443380000097],[91.28727502500013,23.35555226700002],[91.28293420400004,23.347645773000167],[91.27290897700007,23.338499044000073],[91.2657776290001,23.329352315],[91.26753462700017,23.321549174000083],[91.27290897700007,23.313487651000074],[91.27724979600012,23.30325571700011],[91.30050419200015,23.142309469000068],[91.31352665200009,23.10104583800016],[91.33740116400006,23.071073507000037],[91.37088749200004,23.062779440000057],[91.37460819500009,23.09572316500011],[91.35590132700011,23.17964569100012],[91.35569462100014,23.224139099000112],[91.36096561700018,23.24752268500005],[91.37212772600012,23.261888733000077],[91.39434859200004,23.262663879000073],[91.41357222500008,23.24863372800014],[91.42814498000021,23.229513449000148],[91.4365165610001,23.21486318000008],[91.43620650200009,23.21571584100012],[91.43961714700006,23.222640482000102],[91.43992720500009,23.223518983000034],[91.44643843600008,23.21553497300006],[91.44674849500008,23.20879119900003],[91.44540490800007,23.203029277000084],[91.44643843600008,23.197887471000072],[91.46121789600008,23.184425761000014],[91.46359501200007,23.184115702000113],[91.47041630100007,23.15329071100014],[91.47506717900015,23.143084615000173],[91.49811486900015,23.069962464000028],[91.50328251200013,23.044408468000157],[91.5060730390002,23.0411786910001],[91.51558150200017,23.03880157500005],[91.51816532400008,23.035080872000137],[91.5194055580001,23.005625305000038],[91.52364302600007,22.995212504],[91.53656213400009,22.98185414600009],[91.54979130000018,22.977229106000106],[91.56312382000006,22.974981181000103],[91.57676639900009,22.968805848000112],[91.58307092300012,22.95779876700014],[91.58296757000019,22.947902731000156],[91.5860681560001,22.944466248000126],[91.60239790900008,22.95296702100002],[91.60828902200015,22.960330913000018],[91.61200972500009,22.96983937600011],[91.61666060400015,22.978055929000146],[91.6257556560001,22.98154408800009],[91.63278365100021,22.980303853000137],[91.63991499800008,22.978004253000123],[91.64694299300007,22.976583150000135],[91.65407434100021,22.978055929000146],[91.66761356600009,22.982629293000073],[91.69469201700022,22.98813283300008],[91.70699100800019,22.99536753400004],[91.71443241400019,23.003118998000062],[91.73127893100016,23.017330018],[91.73830692600009,23.024668071000022],[91.75505009000013,23.048232524000113],[91.75629032400016,23.052159933000084],[91.75556685400008,23.056836650000047],[91.75598026500009,23.061539206000035],[91.76094120300014,23.065492453],[91.76424849400021,23.065647481000138],[91.773756958,23.064898173000028],[91.77623742700008,23.06525990900003],[91.79132694500018,23.080375265000143],[91.79556441200006,23.08949615500002],[91.79194706200016,23.1011491900001],[91.77902795400016,23.131767476],[91.76393843600007,23.200626323000037],[91.74915897700006,23.23240732900014],[91.74368127400007,23.272327373],[91.76259484900018,23.321549174000083],[91.79163700400007,23.368342183],[91.81768192600005,23.40092417400014],[91.83380497300007,23.413894959000157],[91.88909875500015,23.435934958000146],[91.90511844900011,23.446631979000145],[91.91814091000006,23.459938660000162],[91.94077518800012,23.49518198600005],[91.94232548000011,23.53443023700011],[91.91597050000004,23.65015960700005],[91.91442020700006,23.688322653000125],[91.9164872640001,23.70987172500018],[91.92268843600019,23.72297170000006],[91.93664107300017,23.7235401410001],[91.94914677000006,23.709768372000056],[91.96165246600016,23.6911390180001],[92.00351037700013,23.64742075700012],[92.01901330600005,23.64005686500012],[92.0423710530001,23.645560405000097],[92.0596309810002,23.659487203000097],[92.09218713400006,23.70134511400006],[92.10841353400016,23.71824330700015],[92.15078820800008,23.731653341000097],[92.17063195800009,23.703644714000077],[92.1807605390002,23.66537831700019],[92.19429976400008,23.648144226000014],[92.20938928200009,23.661605937000058],[92.22210168500013,23.70777882900002],[92.23874149600007,23.716848043000155],[92.25930871600016,23.706486918000067],[92.2597366050002,23.702640572000135],[92.26168583200008,23.685118713000136],[92.2500069580001,23.642614848],[92.25279748500006,23.609309388000057],[92.29103804500008,23.49528534000008],[92.29682580600016,23.446580302000044],[92.3014766850001,23.43180084200013],[92.306747681,23.423868510000162],[92.31977014200018,23.412163798],[92.32535119700017,23.403507995000137],[92.32690149000021,23.396014913],[92.32535119700017,23.38216562900014],[92.32669478400007,23.375266825000082],[92.3316557210002,23.368652243000085],[92.34488488800011,23.359117940000157],[92.3486055910001,23.354105326000123],[92.34953576700016,23.344958598000133],[92.34674523900011,23.325295715],[92.34705529800007,23.315425517],[92.35222294100016,23.298837382],[92.35687382000006,23.289122213000056],[92.3574939370002,23.278941956],[92.35067264900007,23.260984395000108],[92.33268925000019,23.22625783300016],[92.32855513500006,23.21119415300008],[92.32762495900013,23.17142913800008],[92.35304976500012,23.029913228000126],[92.35222294100016,22.960330913000018],[92.35987105300008,22.926612040000165],[92.3786812750001,22.900437928000045],[92.41185754400007,22.88793223100005],[92.42632694500006,22.87105987600007],[92.43500858600007,22.79328684600013],[92.44203658000018,22.762926941],[92.45371545400005,22.74796661400002],[92.4806905520002,22.72615915900009],[92.49154260200007,22.711069641],[92.49588342300015,22.695618388000113],[92.50291141800014,22.618620504000162],[92.50084436000006,22.560536194000107],[92.5045650640001,22.543793030000145],[92.51738081900007,22.51258046500008],[92.5189311120001,22.49537221300001],[92.57701542200007,22.168673808000122],[92.57556848200008,22.143300680000138],[92.56419966700011,22.138339742000184],[92.54931685400007,22.13849477200013],[92.53732792100018,22.12862457300004],[92.55996219900011,22.06134185900008],[92.5730880130001,21.995402731000137],[92.57515507000008,21.986566061000143],[92.57587854000016,21.977574362000027],[92.59024458800015,21.917164612000093],[92.5930351160001,21.88693389900008],[92.57556848200008,21.733971660000023],[92.59024458800015,21.49553660100004],[92.59272505700002,21.47016347200004],[92.6032670490001,21.42008901000004],[92.63923384600017,21.318699850000186],[92.6410399060002,21.308585918000105],[92.64285119700017,21.29844268800018],[92.6337561440001,21.282216289000175],[92.6143258060001,21.26314768499999],[92.59086470600002,21.24888499000012],[92.57060754400001,21.24728302000007],[92.5587219650001,21.259840393],[92.55159061700007,21.280510966000023],[92.5439425050001,21.32092193699999],[92.52451216700008,21.361126201000033],[92.49867395000008,21.366603902000108],[92.46539432800014,21.35983429000005],[92.42312300700016,21.363658345000104],[92.40028202400006,21.370996400000095],[92.38963667800007,21.3765257780001],[92.38116174400008,21.38479400600015],[92.37423710100009,21.402312318],[92.37217004400011,21.419055481000058],[92.36793257700018,21.43543691000009],[92.3547034100001,21.45181834000006],[92.32266402200015,21.461895243000086],[92.28452681500019,21.419055481000058],[92.25290083800022,21.419520569000085],[92.23626102800007,21.41709177700004],[92.22509891700017,21.397454732000185],[92.21155969200018,21.354873352000098],[92.18365441900019,21.31720123300009],[92.17828007100009,21.299734599000132],[92.17807336400007,21.280149231],[92.18520471200011,21.24041005500011],[92.18396447700016,21.220876364],[92.17838342300016,21.191265767000157],[92.17497277900004,21.175607809000027],[92.1807605390002,21.1578827930001],[92.18830529800007,21.144085185000122],[92.21176639800015,21.123517965000143],[92.21838098200013,21.108635152000105],[92.22427209500015,21.09318389900001],[92.26514733200017,21.061102606000087],[92.25855553500016,21.022528387000037],[92.25709069100006,20.981105861000014],[92.261485222,20.940252997000172],[92.27198326900006,20.903509833000086],[92.30062910200016,20.862372137000094],[92.30543053500006,20.85195547100001],[92.30762780000012,20.833197333000143],[92.32593834700018,20.780585028000033],[92.3332625660001,20.7677269550001],[92.3362736340001,20.75714752800006],[92.33399498800011,20.746405341000024],[92.3255314460001,20.73871491100003],[92.31934655000012,20.742010809000064],[92.31421959700012,20.749253648000078],[92.30909264400012,20.753241278000147],[92.30103600400017,20.762274481000148],[92.27808678500017,20.81411367400007],[92.20972741000017,20.93081289300015],[92.1928817070001,20.995672919000143],[92.18628991,21.00584544500019],[92.1341251960001,21.04751211100013],[92.12435957100016,21.06045156500015],[92.10808353000017,21.08991120000003],[92.09685306100019,21.105861721000124],[92.05250084700018,21.154771226000108],[92.04542076900012,21.17096588700018],[92.04395592500006,21.192043361000103],[92.05225670700023,21.256659247000144],[92.05046634200002,21.280462958000143],[92.04525800900015,21.299546617000104],[91.98975670700011,21.394232489],[91.98047936300006,21.403753973],[91.96941165500019,21.40961334800015],[91.95972741000006,21.423976955000043],[91.9529728520001,21.441839911],[91.94971764400006,21.458400783000158],[91.9559025400001,21.458400783000158],[91.95801842500006,21.455023505000142],[91.95883222700016,21.454413153000175],[91.96013431100008,21.454250393000038],[91.96338951900012,21.45213450700011],[91.97087649800008,21.470038153000147],[91.98292076900006,21.48883698100012],[91.99903405000006,21.499497789000046],[92.01791425900008,21.49310944200012],[92.00538170700005,21.504299221000124],[91.99537194100016,21.522609768],[91.98975670700011,21.543402411],[91.99000084700006,21.56199778900016],[91.99854576900006,21.573187567],[92.01246178500006,21.585394598000065],[92.02214603000017,21.599351304000137],[92.01791425900008,21.616034247000172],[92.03296959700018,21.633002020000145],[92.03581790500002,21.640448309000035],[92.03174889400006,21.650132554],[92.03777103000019,21.659572658000016],[92.035899285,21.668158270000035],[92.028575066,21.67479075699999],[92.02279707100016,21.67682526200009],[92.0255639980002,21.687241929],[92.02930748800006,21.69623444200012],[92.02930748800006,21.70490143400012],[92.02540123800006,21.712836005000085],[92.02393639400006,21.70465729400017],[92.02214603000017,21.701564846000096],[92.01791425900008,21.698553778000175],[92.02540123800006,21.698553778000175],[92.01238040500006,21.664211330000125],[92.00074303500006,21.649807033000158],[91.98389733200023,21.650132554],[91.97608483200015,21.662054755000113],[91.9788517590001,21.677720445000105],[91.98422285200016,21.69350820500013],[91.98389733200023,21.705389716000084],[91.97706139400012,21.705389716000084],[91.971934441,21.688218492000157],[91.96265709700016,21.689520575000174],[91.95362389400006,21.70140208500011],[91.94971764400006,21.71596914300015],[91.9529728520001,21.738348700000174],[91.96192467500012,21.743841864],[91.97478274800007,21.746486721000096],[91.99000084700006,21.759995835000055],[91.98389733200023,21.76683177299999],[91.96729576900012,21.75543854400003],[91.9602970710001,21.76382070500007],[91.96656334700006,21.778876044000086],[91.99000084700006,21.787909247000083],[91.99000084700006,21.794826565],[91.94369550900015,21.791408596000096],[91.92408287900011,21.78522370000003],[91.90870201900006,21.781154690000065],[91.89926191500015,21.789496161000116],[91.90088951900005,21.813299872000027],[91.91138756600006,21.83470286700016],[91.92937259200008,21.843166408000016],[91.92164147200006,21.853420315000122],[91.92554772200006,21.862860419000143],[91.93628991000017,21.87083567900011],[91.94971764400006,21.876695054000052],[91.94971764400006,21.884182033000016],[91.93921959700018,21.88304271],[91.92994225400011,21.878648179000024],[91.92212975400011,21.87156810100005],[91.91570071700002,21.86245351800015],[91.91032962300008,21.874904690000065],[91.90560957100016,21.89557526200018],[91.90121504000008,21.935370184000178],[91.89820397200018,21.94489166900017],[91.88404381600004,21.960150458000143],[91.88086998800011,21.96918366100006],[91.88086998800011,22.007025458],[91.85523522199999,22.109198309000064],[91.8535262380001,22.14362213700018],[91.86394290500019,22.139593817000033],[91.86719811300006,22.137396552000112],[91.86207116000006,22.15062083500005],[91.85328209700018,22.148749091000084],[91.84603925900015,22.13597239800005],[91.84603925900015,22.11688873900006],[91.83985436300004,22.11688873900006],[91.82911217500006,22.13410065300009],[91.81934655000012,22.155951239000117],[91.81299889400012,22.180324611000074],[91.81202233200023,22.205023505000085],[91.81690514400012,22.220282294000057],[91.82585696700014,22.230047919000086],[91.83472741000017,22.237616278000033],[91.83985436300004,22.246649481000034],[91.83838951900012,22.26308828300013],[91.8298445970001,22.271307684000035],[91.81918379000014,22.275824286],[91.81202233200023,22.2813988300001],[91.80884850400017,22.306341864000117],[91.8265080090001,22.31826406500006],[91.8523869150001,22.325344143000123],[91.87403405000006,22.336004950000145],[91.88493899800008,22.353827216000028],[91.9080509770001,22.42475006700012],[91.90186608200023,22.42405833499999],[91.88770592500012,22.42475006700012],[91.88550865999999,22.409654039000102],[91.87574303500017,22.37107982000005],[91.87745201900006,22.36334870000003],[91.8704533210001,22.358099677000055],[91.859141472,22.346625067],[91.84400475400011,22.334947007000025],[91.8263452480002,22.329169012000037],[91.82325280000012,22.32416413],[91.79859459700006,22.31191640800013],[91.7913517590001,22.30190664300015],[91.79395592500012,22.286037502000042],[91.80453535200016,22.278469143000063],[91.8172306650001,22.274074611000103],[91.8263452480002,22.26776764500015],[91.82593834700012,22.248480536000116],[91.80892988400014,22.236273505000142],[91.78711998800011,22.23794179900015],[91.77165774800008,22.260321356000176],[91.75440514400006,22.374660549000012],[91.74366295700023,22.41107819200009],[91.67603600400011,22.534613348],[91.54810631600012,22.700344143000123],[91.51636803500006,22.71222565300009],[91.49870853000002,22.7272809920001],[91.48462975400011,22.7455101580001],[91.47681725400011,22.761175848000065],[91.46900475400011,22.757066148000103],[91.46241295700023,22.76190827],[91.45801842500005,22.772284247000087],[91.45630944100004,22.784816799000094],[91.45834394600016,22.797064520000063],[91.46778405000006,22.809312242000132],[91.47396894600016,22.83832428600003],[91.49000084700006,22.880560614000117],[91.4904891290001,22.904527085],[91.48308353000006,22.904527085],[91.479665561,22.885891018],[91.46241295700023,22.833441473000118],[91.4524845710001,22.82265859600012],[91.43043053500006,22.81631094],[91.41675866000011,22.799994208000086],[91.41163170700011,22.777818101000108],[91.41472415500006,22.75372955900009],[91.39966881600006,22.76430898600013],[91.38502037900011,22.770697333000058],[91.36833743600019,22.773993231000087],[91.34644616000017,22.774847723],[91.34644616000017,22.767401434000035],[91.36744225400011,22.761664130000053],[91.37012780000006,22.752183335000055],[91.360118035,22.74339427299999],[91.34262129000015,22.739447333],[91.29078209700006,22.73843008000013],[91.30884850400017,22.733099677000055],[91.3250431650001,22.726141669000167],[91.33277428500006,22.720200914000046],[91.3299259770001,22.705715236000103],[91.3173934250001,22.697211005000053],[91.30054772200018,22.693264065000093],[91.284434441,22.692287502000013],[91.28345787900017,22.693345445000077],[91.25277754000015,22.69928620000009],[91.24838300900015,22.69822825700014],[91.24480228000019,22.698391018],[91.243418816,22.702215887000094],[91.24390709700012,22.717433986000074],[91.243418816,22.720200914000046],[91.23121178500004,22.724310614],[91.21607506600004,22.726060289000188],[91.18189537900017,22.72646719],[91.18189537900017,22.720200914000046],[91.19459069099999,22.709662177],[91.19922936300006,22.698797919000086],[91.19214928500017,22.69163646000005],[91.16895592500006,22.692287502000013],[91.16895592500006,22.684881903000033],[91.22689863400014,22.671087958000115],[91.25342858200011,22.66071198100012],[91.26449629000015,22.64081452000012],[91.26107832100008,22.62787506700003],[91.25310306100006,22.613836981000144],[91.24156880000007,22.575395765000067],[91.22136457600018,22.557192605000026],[91.20274304600015,22.543219639000043],[91.17656568400017,22.536419414000036],[91.12734345800007,22.527025948000173],[91.08920058200012,22.544430256000012],[91.06957967100013,22.571556869000162],[91.05860436300006,22.614325262000065],[91.04867597700009,22.62616608300003],[91.03793379000015,22.643866278000118],[91.02670332100016,22.674261786000088],[91.01832116,22.683091539000046],[91.00375410200016,22.678656317000062],[91.01872806100019,22.66445547100015],[91.03223717500006,22.63686758000013],[91.04021243600002,22.607733466000166],[91.03793379000015,22.588609117000104],[91.01758873800006,22.579291083000058],[90.98511803500017,22.5743675800001],[90.95492597700016,22.575832424000154],[90.94174238400015,22.585882880000113],[90.93555748800006,22.59967682500003],[90.90821373800011,22.617865302000112],[90.90202884200014,22.6271019550001],[90.8987736340001,22.636175848],[90.88412519600016,22.65448639500006],[90.87647545700021,22.682806708],[90.86548912900017,22.687160549000097],[90.83594811300011,22.684881903000033],[90.83130944100016,22.690578518],[90.81950931100013,22.72646719],[90.811778191,22.732367255000113],[90.8025822270001,22.73639557500009],[90.79493248800011,22.74135976800015],[90.78834069100004,22.759222723000036],[90.77418053499999,22.778062242000047],[90.77100670700023,22.784816799000094],[90.76954186300006,22.795355536000056],[90.75733483200011,22.82265859600012],[90.7500106130001,22.85675690300006],[90.74195397200018,22.874212958],[90.73292076900006,22.889064846000068],[90.72559655000006,22.905707098000033],[90.72266686300011,22.928452867000047],[90.71745853,22.940619208000143],[90.64014733200023,23.038031317],[90.62940514400012,23.064398505],[90.62712649800002,23.075873114000117],[90.6272078790001,23.086655992000047],[90.63868248800006,23.147894598000065],[90.64014733200023,23.188869533000073],[90.6458439460001,23.210923570000162],[90.6570744150001,23.230373440000093],[90.66521243600002,23.248765367000132],[90.66114342500006,23.267645575000145],[90.66732832100016,23.267645575000145],[90.65088951900006,23.300238348],[90.650157097,23.313544012000037],[90.66114342500006,23.322251695000105],[90.65772545700015,23.323228257],[90.65479576900006,23.32330963700015],[90.6531681650001,23.32465241100006],[90.65365644600008,23.329738674000097],[90.62842858200021,23.32151927299999],[90.61133873800011,23.34247467700014],[90.6017358730002,23.3724632830001],[90.59913170700011,23.391180731000148],[90.60027103000007,23.44993724200016],[90.6087345710001,23.47272370000009],[90.63331139400012,23.486761786000145],[90.69157962300014,23.486476955000015],[90.7150171230002,23.49835846600014],[90.71583092500012,23.53514232000005],[90.71119225400017,23.548814195000162],[90.70557701900006,23.55451080900015],[90.69581139400005,23.55548737200006],[90.67823326900012,23.555080471000124],[90.67546634200008,23.5509300800001],[90.68433678500011,23.541734117000132],[90.70215905000006,23.528387762000122],[90.69532311300006,23.507879950000145],[90.67774498800011,23.51727936400009],[90.66675866000017,23.518215236000074],[90.64747155000012,23.507879950000145],[90.62208092500012,23.500067450000145],[90.60775800900008,23.491115627000127],[90.60336347700016,23.49469635600012],[90.58814537900017,23.534165757000082],[90.59205162900017,23.562486070000105],[90.60816491000006,23.585760809000035],[90.63331139400012,23.59662506700012],[90.62712649800002,23.603461005000142],[90.62533613400015,23.599351304],[90.62525475400017,23.598334052000112],[90.62403405000006,23.598089911000088],[90.61963951900006,23.59662506700012],[90.61198978000007,23.606105861000046],[90.59546959700018,23.60439687700004],[90.55876712300008,23.590399481000148],[90.56446373800006,23.576402085],[90.5594181650001,23.567938544000143],[90.54721113400015,23.563788153000033],[90.53150475400017,23.562486070000105],[90.51465905000006,23.563788153000033],[90.50171959700006,23.567938544000143],[90.47632897200006,23.58295319200009],[90.48438561300006,23.567450262000147],[90.49838300900015,23.557277736000046],[90.5149845710001,23.551418361000074],[90.53150475400017,23.548814195000162],[90.56869550900014,23.54751211100007],[90.57683353000017,23.539496161000145],[90.5789494150001,23.449855861000074],[90.57593834700018,23.438950914000102],[90.56812584700016,23.43292877800009],[90.55990644600008,23.41840241100006],[90.55372155000012,23.400702216000138],[90.55193118600002,23.384955145],[90.51832116,23.398260809000035],[90.32243899800008,23.433294989000117],[90.28443444100004,23.446193752000127],[90.25033613400015,23.466945705000125],[90.24935957100016,23.455389716000113],[90.25879967500006,23.444566148000106],[90.38851972700016,23.372381903000118],[90.40414472700016,23.36041901200018],[90.41342207100008,23.34796784100017],[90.41968834700006,23.335598049000126],[90.42847741,23.326117255000113],[90.46021569100017,23.319728908000013],[90.48796634200002,23.306830145000088],[90.50359134200002,23.301743882000054],[90.56910241000017,23.29498932500003],[90.57732181100006,23.288397528000147],[90.60661868600019,23.24721914300009],[90.6108504570001,23.230780341000084],[90.61451256600006,23.195461330000153],[90.61036217500012,23.20115794500005],[90.60271243600019,23.21100495000014],[90.593516472,23.219875393],[90.59839928500017,23.200425523000106],[90.60287519600016,23.141302802],[90.59913170700011,23.117499091000113],[90.57195071700018,23.08173248900009],[90.56560306100008,23.075873114000117],[90.55372155000012,23.078558661000116],[90.55128014400012,23.086900132],[90.555918816,23.096828518000095],[90.56560306100008,23.103827216000166],[90.56560306100008,23.11066315300009],[90.55876712300008,23.11066315300009],[90.54761803500004,23.09674713700009],[90.53663170700005,23.08681875200001],[90.5227970710001,23.080145575000145],[90.50359134200002,23.075873114000117],[90.466075066,23.076849677000112],[90.45362389400012,23.072333075000145],[90.44890384200019,23.055731512000094],[90.45012454500008,23.049343166000156],[90.454356316,23.02753327000012],[90.46827233200011,22.996079820000105],[90.48698978000007,22.966131903000033],[90.50700931100002,22.94208405199999],[90.50928795700011,22.93699778900016],[90.50757897200012,22.92536041900017],[90.51042728000007,22.91819896000011],[90.51295006600017,22.91705963700009],[90.51685631600006,22.916815497000144],[90.52100670700011,22.915676174000012],[90.52409915500019,22.912014065000065],[90.53598066500014,22.90338776200015],[90.54004967500006,22.89655182500003],[90.53492272200016,22.887152411000027],[90.5200301440001,22.880194403000033],[90.50513756600017,22.881659247000087],[90.49048912900017,22.885199286000056],[90.47632897200006,22.884100653000118],[90.45720462300008,22.861761786],[90.44809004000015,22.828436591000084],[90.43604576900006,22.800604559000035],[90.40796959700006,22.79466380400011],[90.42400149800002,22.781683661000116],[90.41993248800011,22.768255927000112],[90.4064233730002,22.763088283000016],[90.394297722,22.774847723],[90.37256920700021,22.761419989],[90.38721764400005,22.751288153000147],[90.41578209700006,22.742499091000084],[90.43523196700008,22.733303127000013],[90.44459069100017,22.75165436400006],[90.46168053500004,22.74884674700003],[90.47901451900012,22.735012111000017],[90.48991946700019,22.720200914000046],[90.49293053500011,22.70990631700012],[90.49675540500019,22.678656317000062],[90.50896243600019,22.64642975500011],[90.51270592500012,22.611476955000015],[90.51002037900011,22.60423411700016],[90.5001733730002,22.592352606000034],[90.49138431100008,22.587836005000085],[90.4685978520001,22.584702867000104],[90.45923912900011,22.579291083000058],[90.45346113400015,22.564195054000052],[90.44214928500006,22.50873444200009],[90.44206790500007,22.493638414000156],[90.44499759200019,22.504136460000055],[90.45118248800006,22.510158596000153],[90.45801842500005,22.51463450700011],[90.46265709700012,22.520982164000042],[90.46355228000019,22.53143952000012],[90.46045983200011,22.551174221000068],[90.46265709700012,22.561957098000065],[90.4725041020001,22.575588283000013],[90.4873153000001,22.583726304000137],[90.50513756600017,22.586249091000138],[90.52409915500019,22.58307526200018],[90.55974368600002,22.562323309000178],[90.57781009200008,22.533677476000108],[90.5896916020001,22.500433661],[90.60661868600019,22.465765692000115],[90.59131920700023,22.470526434000035],[90.58619225400011,22.47321198100009],[90.58643639400006,22.45058828300013],[90.5935978520001,22.432318427000084],[90.6134546230002,22.396877346000064],[90.61841881600006,22.37665436400006],[90.61931399800001,22.35590241100006],[90.6134546230002,22.314886786000145],[90.58155358200011,22.23822663],[90.55795332100016,22.203355210000055],[90.53834069100017,22.198879299000094],[90.51172936300006,22.185288804000137],[90.50114993600017,22.17670319200012],[90.49675540500019,22.16779205900009],[90.49439537900015,22.154242255000113],[90.48829186300004,22.138617255000142],[90.45964603000019,22.091945705000125],[90.4500431650001,22.080796617000104],[90.43864993600008,22.075995184000035],[90.42546634200018,22.07884349200016],[90.40845787900011,22.085923570000134],[90.39380944100006,22.094712632],[90.387461785,22.102606512000147],[90.39323978000007,22.127386786000145],[90.41749108200023,22.175034898000106],[90.42164147200018,22.198879299000094],[90.4100041020001,22.227280992000104],[90.40796959700006,22.24042389500009],[90.41407311300006,22.271795966000028],[90.41089928500016,22.284247137000037],[90.394297722,22.288234768],[90.39869225400011,22.267482815000037],[90.38868248800011,22.223211981000148],[90.39087975400011,22.208807684000092],[90.39909915500019,22.202215887000122],[90.405528191,22.19953034100014],[90.41049238400008,22.195705471000124],[90.4142358730002,22.18577708500011],[90.41285241000006,22.178045966000028],[90.40821373800011,22.17121002800009],[90.40056399800008,22.16404857000005],[90.39918053500017,22.162339585000055],[90.39714603000007,22.16063060100005],[90.39519290500013,22.15721263200014],[90.39258873800011,22.143011786000116],[90.38868248800011,22.143459377000013],[90.38379967500006,22.14573802299999],[90.38005618600013,22.14362213700018],[90.3771264980002,22.133612372000087],[90.37378991000017,22.102606512000147],[90.36988366000017,22.089829820000134],[90.3657332690001,22.081203518000123],[90.34742272200018,22.055324611000017],[90.33472741,22.04181549700006],[90.3322046230002,22.03807200700011],[90.32789147200018,22.020493882000082],[90.30860436300004,21.984035549000012],[90.30437259200002,21.965765692000144],[90.29997806100008,21.927679755000057],[90.29070071700019,21.890326239],[90.28288821700019,21.870794989000117],[90.27271569100006,21.857407945000105],[90.2176212900001,21.813462632],[90.20378665500019,21.804592190000122],[90.18482506600012,21.80097077000009],[90.1643986340001,21.80426666900003],[90.1268009770001,21.81879303600006],[90.10906009200002,21.822088934000092],[90.09294681100008,21.830267645],[90.08855228000017,21.84674713700018],[90.09538821700019,21.85944245000014],[90.11247806100002,21.856268622000083],[90.10499108200005,21.87026601800012],[90.11085045700011,21.880113023000074],[90.12086022200012,21.88930898600013],[90.12623131600006,21.901190497000083],[90.12452233200021,21.909735419000114],[90.12183678500017,21.915350653000118],[90.12134850400017,21.921576239000057],[90.12623131600006,21.931952216000166],[90.11622155000006,21.91933828300007],[90.0984806650001,21.87860748900003],[90.08887780000012,21.869859117000047],[90.079356316,21.866929429000106],[90.06690514400006,21.853420315000122],[90.05787194100017,21.84935130399999],[90.04932701900006,21.851019598],[90.03630618600008,21.86115143400015],[90.02442467500012,21.86245351800015],[90.03126061300006,21.889227606000148],[90.03394616,21.94354889500009],[90.04493248800006,21.966131903000147],[90.05420983200023,21.97337474200016],[90.06576582100016,21.979885158000073],[90.0771590500001,21.987982489],[90.0857853520001,22.000230210000055],[90.090586785,22.015448309000032],[90.09253991000006,22.02798086100013],[90.09595787900017,22.040106512000037],[90.10564212300014,22.054266669000143],[90.14673912900011,22.089016018000038],[90.15162194100017,22.094875393000066],[90.15886478000019,22.10691966400016],[90.16407311300011,22.113226630000113],[90.17286217500006,22.117010809000035],[90.1818139980002,22.114813544000143],[90.18970787900017,22.110825914000156],[90.19507897199999,22.10952383000007],[90.21615644600016,22.123236395],[90.23170006600006,22.145656643],[90.23910566500015,22.172267971000153],[90.23609459700006,22.198879299000094],[90.21827233200017,22.155707098000093],[90.20582116000004,22.13296133000013],[90.19166100400011,22.12311432500003],[90.16480553500006,22.119818427],[90.14828535200016,22.110785223000093],[90.08887780000012,22.051174221000068],[90.08179772200006,22.041001695000134],[90.07374108200011,22.01923248900006],[90.06104576900006,22.00079987200003],[90.05795332100016,21.99371979400017],[90.052419467,21.98899974200016],[90.03809655000005,21.98655833500011],[90.02816816500015,21.98810455900015],[89.99634850400011,22.000230210000055],[90.00212649800008,22.01410553600006],[90.00318444100006,22.02936432500003],[90.01075280000006,22.041205145000088],[90.02019290500017,22.048814195000105],[90.02898196700008,22.052964585000055],[90.03541100400017,22.05980052299999],[90.03809655000005,22.07534414300009],[90.03467858200023,22.10516998900009],[90.0390731130001,22.116278387000094],[90.04273522200018,22.131252346000124],[90.0520939460001,22.14109935100008],[90.06324303500006,22.14573802299999],[90.07260175900014,22.152044989000117],[90.07837975400011,22.16404857000005],[90.0525822270001,22.15546295800014],[90.04004967500012,22.138088283000158],[90.02442467500012,22.089016018000038],[90.01539147199999,22.077866929],[89.98853600400011,22.05304596600014],[89.98275800900015,22.044623114],[89.9851994150001,21.999416408000158],[89.98275800900015,21.98655833500011],[89.96778405000012,21.974554755000025],[89.94971764400012,21.98090241100014],[89.93441816500015,21.997707424000154],[89.92823326900006,22.017279364000117],[89.92628014400012,22.027167059000035],[89.91749108200005,22.04987213700018],[89.91456139400006,22.06167226800015],[89.91236412900017,22.135565497000144],[89.90308678500011,22.176906643000066],[89.90088951900012,22.201971747000172],[89.8982853520001,22.211655992000043],[89.88550866000017,22.23061758000013],[89.88038170700023,22.24042389500009],[89.87663821700014,22.25348541900014],[89.8753361340001,22.263983466000028],[89.87680097700009,22.27472565300003],[89.88038170700023,22.288234768],[89.90015709700018,22.333929755000142],[89.98275800900015,22.44525788000008],[89.98829186300006,22.45774974200016],[89.99195397200006,22.469875393000066],[89.99789472700016,22.480861721000124],[90.01010175900015,22.490220445000162],[89.98275800900015,22.47321198100009],[89.97950280000012,22.47007884300002],[89.94743899800002,22.439683335000055],[89.93360436300006,22.423529364],[89.92823326900006,22.40770091400016],[89.92042076900006,22.39183177300005],[89.90308678500011,22.396429755000085],[89.8728947270001,22.418605861000128],[89.8748478520001,22.397650458],[89.88054446700019,22.380601304000137],[89.88412519600008,22.36351146],[89.88038170700023,22.342230536000113],[89.83871504000008,22.26776764500015],[89.85084069100017,22.24652741100006],[89.86133873800006,22.21100495000009],[89.8728947270001,22.14362213700018],[89.87427819100016,22.10883209800012],[89.87134850400011,22.091864325000145],[89.86296634200019,22.07904694200012],[89.84620201900006,22.07062409100017],[89.83155358200023,22.07196686400006],[89.816172722,22.075995184000035],[89.7972111340001,22.075995184000035],[89.7972111340001,22.06850820500007],[89.81836998800011,22.06004466400013],[89.83594811300006,22.049465236000074],[89.84791100400017,22.033880927000084],[89.85238691500014,22.010443427],[89.85108483200023,22.000881252000013],[89.84595787900011,21.98289622599999],[89.84620201900006,21.972316799000122],[89.85027103000002,21.963120835000055],[89.86378014400012,21.943304755000142],[89.87183678500004,21.924261786000145],[89.88160241000017,21.912990627000156],[89.88721764400006,21.900091864000146],[89.88038170700023,21.884182033000016],[89.8732202480002,21.881577867000132],[89.85092207100016,21.877508856000148],[89.82520592500012,21.856268622000083],[89.819590691,21.849554755000142],[89.81763756600017,21.844916083000026],[89.81421959700018,21.840806382000054],[89.80469811300004,21.835760809000032],[89.786387566,21.828924872000115],[89.7757267590001,21.82758209800012],[89.771169467,21.832342841000028],[89.76587975400017,21.84674713700018],[89.75342858200023,21.843898830000125],[89.7384546230002,21.834418036000145],[89.725840691,21.828924872000115],[89.70915774800007,21.83006419500005],[89.69044030000012,21.833726304],[89.67335045700004,21.84007396000011],[89.66130618600008,21.84935130399999],[89.65691165500007,21.85712311400009],[89.65316816500015,21.867743231000034],[89.65259850400017,21.878851630000057],[89.66334069100017,21.896307684000117],[89.66130618600008,21.905829169000114],[89.64698326900006,21.925116278000147],[89.61898847700016,21.869859117000047],[89.63038170700011,21.85146719],[89.6497501960001,21.826361395],[89.67204837300008,21.80426666900003],[89.69206790500002,21.794826565],[89.70069420700023,21.784857489],[89.6899520190001,21.765204169000143],[89.66822350400017,21.75088125200007],[89.64356530000006,21.75690338700018],[89.63152103000007,21.76406484600004],[89.62037194100006,21.764349677000055],[89.59546959700018,21.759995835000055],[89.59278405000012,21.75438060100005],[89.60377037900017,21.727687893000123],[89.60596764400006,21.719061591000028],[89.58692467500006,21.700832424000154],[89.56568444100016,21.71336497600005],[89.53711998800011,21.75381094],[89.53891035200014,21.771470445000105],[89.52735436300006,21.812811591000056],[89.53028405000006,21.835760809000032],[89.538340691,21.848618882000054],[89.55689537900011,21.86880117400007],[89.56446373800004,21.884182033000016],[89.56763756600006,21.900702216000084],[89.56348717500006,21.973130601000133],[89.57129967500006,22.03123607000019],[89.57667076900006,22.051703192000062],[89.60059655000012,22.091253973],[89.60596764400006,22.113226630000113],[89.60254967500005,22.134507554],[89.59376061300006,22.15542226800015],[89.58139082100016,22.17405833500014],[89.56788170700005,22.188910223],[89.5672306650001,22.20282623900009],[89.59791100400011,22.240301825000117],[89.60596764400006,22.25690338700015],[89.60710696700019,22.27826569200012],[89.61060631600017,22.298895575000145],[89.616953972,22.31842682500003],[89.62647545700011,22.336004950000145],[89.61548912900017,22.32827383000013],[89.606211785,22.315619208000083],[89.59245853000017,22.288234768],[89.58082116000016,22.277248440000065],[89.57715905000012,22.26850006700009],[89.58619225400011,22.245428778000033],[89.58033287900011,22.236761786000116],[89.56104576900006,22.223089911],[89.5491642590001,22.20526764500003],[89.55030358200021,22.192124742000047],[89.57129967500006,22.15790436400009],[89.5763452480002,22.14549388200005],[89.57878665500007,22.135891018000066],[89.579356316,22.113226630000113],[89.57699629000015,22.101263739000085],[89.56674238400015,22.08209870000003],[89.56446373800004,22.072211005000028],[89.5564884770001,22.00844961100016],[89.55144290500019,21.994045315],[89.53288821700008,21.98468659100014],[89.52475019600016,22.00014883000007],[89.52344811300006,22.044623114],[89.52613366000006,22.05512116100006],[89.53646894600016,22.07583242400007],[89.53711998800011,22.089016018000038],[89.49203535200009,22.188381252000042],[89.48943118600002,22.208807684000092],[89.49415123800006,22.253566799000126],[89.4930119150001,22.27350495000003],[89.48316491000017,22.295070705000125],[89.47575931100019,22.295070705000125],[89.46745853000013,22.228989976000108],[89.47575931100019,22.102606512000147],[89.48316491000017,22.102606512000147],[89.48406009200006,22.116685289000102],[89.48878014400005,22.129584052000112],[89.49415123800006,22.136867580000125],[89.496836785,22.13397858300011],[89.4982202480002,22.125311591000028],[89.50171959700018,22.113104559000035],[89.50684655000012,22.10101959800012],[89.51295006600017,22.092433986000046],[89.51832116000006,22.081000067000062],[89.51742597700016,22.066473700000028],[89.50912519600016,22.041205145000088],[89.50416100400011,22.03668854400003],[89.49187259200008,22.034572658000013],[89.48943118600002,22.03123607000019],[89.4904077480002,22.023993231000148],[89.49268639400006,22.019191799000065],[89.496836785,22.013861395],[89.50049889400006,22.002590236000017],[89.51270592500006,21.978094794000086],[89.52003014400006,21.96918366100006],[89.52182050900015,21.962307033000126],[89.5125431650001,21.909125067000147],[89.50228925900015,21.897528387000037],[89.4891056650001,21.88837311400006],[89.47575931100019,21.876695054000052],[89.46461022200016,21.859198309000092],[89.46363366000011,21.845038153000175],[89.46705162900011,21.82859935099999],[89.46949303500004,21.804388739],[89.46583092500005,21.78131745000003],[89.45622806100019,21.762396552000027],[89.44271894600014,21.746649481000148],[89.40642337300002,21.71735260600003],[89.39519290500002,21.716376044000143],[89.36963951900005,21.743312893000123],[89.36426842500012,21.758205471000068],[89.36280358200021,21.78384023600013],[89.36589603000012,21.828924872000115],[89.37126712300008,21.847154039000188],[89.38428795700015,21.8778343770001],[89.3869735040001,21.901190497000083],[89.38266035200016,21.92133209800012],[89.36402428500006,21.955064195000105],[89.35962975400017,21.972316799000122],[89.35222415500019,21.972316799000122],[89.34595787900011,21.957017320000162],[89.34880618600008,21.94415924700006],[89.35523522200018,21.93162669500005],[89.35962975400017,21.91766998900006],[89.35962975400017,21.901678778000175],[89.35596764400012,21.892523505],[89.33912194099999,21.876695054000052],[89.32886803500017,21.86465078300013],[89.32260175900015,21.854641018000066],[89.30616295700023,21.817613023000135],[89.30128014400005,21.80939362200003],[89.29623457100016,21.809068101000108],[89.29070071700014,21.822088934000092],[89.28394616000017,21.822088934000092],[89.28443444100017,21.796820380000142],[89.29468834700018,21.75779857000016],[89.29070071700014,21.73334381700012],[89.27369225400017,21.69879791900003],[89.27662194100017,21.68756745000003],[89.297536655,21.678127346],[89.28589928500006,21.665594794000114],[89.26872806100019,21.653998114],[89.24870853000002,21.645900783000073],[89.22925866000006,21.643947658000016],[89.21045983200011,21.65412018400015],[89.2044376960001,21.67267487200017],[89.20826256600012,21.690619208000115],[89.21859785200009,21.698553778000175],[89.22071373800011,21.70941803600006],[89.1897078790001,21.79124583500011],[89.18824303500006,21.799709377000067],[89.18767337300008,21.81150950700014],[89.18336022200006,21.815619208],[89.17408287900011,21.81004466400016],[89.16456139400012,21.800197658000158],[89.16041100400015,21.791327216000113],[89.15455162900011,21.786851304000052],[89.14128665500019,21.790228583000058],[89.11939537900017,21.80097077000009],[89.10906009200008,21.809515692],[89.10466556100008,21.81586334800012],[89.0799259770001,21.897406317000062],[89.07781009200019,21.914252020000063],[89.0804142590001,21.934881903000086],[89.09107506599999,21.97679271],[89.09148196700014,22.000230210000055],[89.08423912900011,22.021185614000117],[89.06202233200023,22.049505927000055],[89.05738366,22.06509023600016],[89.06348717500012,22.111029364000117],[89.06040430813172,22.129810510583198],[89.06069258700009,22.130484925000147],[89.07815922000012,22.15084543900018],[89.07619551700006,22.17503000900014],[89.07071781400005,22.194822083000034],[89.06229455500007,22.21156524700008],[89.01862797100014,22.264688619000125],[89.00911950700007,22.285617575000018],[89.02353723100006,22.29481597900009],[89.00694909700016,22.321429342000116],[89.0015230710001,22.333676656000147],[88.98958581600007,22.38690338200003],[88.98948246300019,22.396670227000172],[88.99216963700016,22.40695383700007],[89.00074792500017,22.420131328000068],[89.00250492300003,22.427986145000162],[88.99837080900014,22.451240539000096],[88.979974,22.490928039],[88.97098230000009,22.52792836500005],[88.95904504400008,22.53681671100007],[88.92798750900013,22.548133850000127],[88.95031172700007,22.5619831340001],[88.95640954600006,22.584979146000038],[88.95201704900015,22.61190256800016],[88.94235355700019,22.637482402],[88.93000288900006,22.658618063000134],[88.92592045100017,22.680838928000085],[88.92250980600012,22.693706360000178],[88.91057255100006,22.72259348600012],[88.9081437580002,22.74078359],[88.91496504800008,22.75440033000008],[88.92623051000012,22.767035218],[88.93687585500012,22.782331441000064],[88.9412166750001,22.795663961000074],[88.94514408400008,22.81509430000007],[88.94679773000021,22.834524638000133],[88.9445239660001,22.848012187],[88.9331034750002,22.858114929000138],[88.90514652600021,22.86643483500002],[88.89346765200011,22.8796381640001],[88.87217696100005,22.92676707000011],[88.8617383220002,22.94239919000016],[88.84277307100015,22.96456838000007],[88.83879398700017,22.975808004000115],[88.83941410300022,22.99536753400004],[88.84871586100004,23.023841248000092],[88.85129968300006,23.075130107000017],[88.86478723200011,23.100270691000148],[88.9190991620001,23.15385915200001],[88.94586755400005,23.17434885700008],[88.95470422400015,23.183805644000145],[88.95982019100003,23.19445098900003],[88.95997522000019,23.202693380000156],[88.95423913600014,23.20742177300015],[88.92695398000015,23.206517436000027],[88.91806563300011,23.20858449300009],[88.9096423750001,23.212434388000034],[88.83962080900018,23.234810283000016],[88.82267093900012,23.237962545000144],[88.80954512500013,23.236050517000038],[88.80096683800011,23.230753683],[88.79419722500003,23.224965922000038],[88.78618737800016,23.221529439],[88.77569706300014,23.221632792000108],[88.71001631700008,23.241218160000145],[88.69658044500012,23.252354432000075],[88.68660689300012,23.271603902000024],[88.68593510000002,23.293308004],[88.6950301510001,23.31260915200015],[88.7192663980002,23.34829172800012],[88.76789392100008,23.46727671300006],[88.77016768400014,23.48882578600002],[88.75683516500013,23.498799337000136],[88.74370935100015,23.489316711000143],[88.73192712400012,23.472625224000023],[88.71942142800006,23.4681035360001],[88.704641968,23.49518198600005],[88.69378991700009,23.49980702800009],[88.66448938000022,23.518307190000044],[88.64764286400006,23.53507619300008],[88.6242334400001,23.57385935500004],[88.60924727400018,23.58879384400008],[88.60128910400013,23.590344137],[88.58154870600016,23.588328756000134],[88.57142012600009,23.59233367900005],[88.56170495600011,23.60202301],[88.56108483900013,23.608611756000172],[88.56439213100012,23.616208191000126],[88.56635583500022,23.62873972600012],[88.56123986800017,23.63248626800005],[88.55095625800006,23.634424134000184],[88.5415511480002,23.638764954000163],[88.54010420800007,23.649952901000105],[88.56118819200006,23.74100677500006],[88.55974125200007,23.750282695000166],[88.5525065510001,23.76542389000018],[88.55271325700002,23.774984029000066],[88.5576741940001,23.785681051],[88.57235030200016,23.806894226000125],[88.5775179450001,23.818521424000025],[88.5776212970002,23.82761647600007],[88.57545088700013,23.836556499000025],[88.57436568200015,23.84562571200017],[88.5776212970002,23.85516001400005],[88.59358931500006,23.866916402000143],[88.61317468300015,23.867846578000112],[88.6339486090002,23.866141256000148],[88.65312056500014,23.869784445000118],[88.66650476100008,23.879499614000068],[88.70443526200009,23.913709412000074],[88.71415043100009,23.925155742000168],[88.71714766500011,23.943139140000156],[88.71435713700006,23.96440399200004],[88.70836267100006,23.983550110000138],[88.7015930580001,23.995280660000116],[88.71384037300012,24.014685161],[88.72546757000006,24.028896179000142],[88.72500248200006,24.03837880500005],[88.70092126500012,24.04364980100017],[88.69782067900005,24.056258850000106],[88.67901045700015,24.071219178000074],[88.67410119700006,24.082639669000073],[88.67539310700008,24.091838074000165],[88.68180098500014,24.112663676000025],[88.68298954300022,24.124290873000074],[88.67828698800017,24.144651388000014],[88.67808028100008,24.154289043000134],[88.68376468900007,24.166536356000066],[88.69378991700009,24.17532135100005],[88.7159074300001,24.182917786000118],[88.73145573500014,24.189771315000158],[88.73161706600015,24.189842428000087],[88.73482100400022,24.198420715000125],[88.74639652500015,24.214078675000067],[88.7498071700002,24.22325124200007],[88.74748173000015,24.226971945000074],[88.74494958500006,24.24337921200005],[88.74303755700006,24.247539165000077],[88.73750817900005,24.28709747300003],[88.7145638430002,24.31541615800002],[88.68180098500014,24.333890483000133],[88.66014856000007,24.338257141000113],[88.64950321500007,24.315364482000106],[88.63451705000008,24.294125468000047],[88.61245121300007,24.292885234],[88.56310021900016,24.30820729600005],[88.49834965000015,24.31097198500011],[88.47540531400014,24.31546783500012],[88.40130131100007,24.369418030000087],[88.13878503400005,24.495250143000177],[88.10994958500007,24.500986227000123],[88.10793420400009,24.507962545000126],[88.09878747600013,24.522483623000152],[88.090002483,24.53299977700011],[88.08602339700022,24.53672048000014],[88.08498986800006,24.54173309300002],[88.08498986800006,24.59387461400017],[88.0818376060001,24.59986908000009],[88.06726485200014,24.61366668700005],[88.05723962400012,24.634104716000095],[88.04090987200019,24.640435079000113],[88.02178959200009,24.645602722000135],[88.02716394100017,24.6757300820001],[88.03543216900019,24.69381683400003],[88.04845463100011,24.71120595300006],[88.0532088620001,24.754975891000143],[88.06426761900009,24.759161682000084],[88.07698002200017,24.76117706300012],[88.08400801600007,24.770452983000055],[88.08535160400007,24.784018046000043],[88.08824548300007,24.796136170000025],[88.09480839000011,24.80311248800002],[88.10777917500016,24.80109710700016],[88.11739099100006,24.819261373000117],[88.13124027500012,24.831767070000108],[88.14095544500017,24.844582825000188],[88.13806156400007,24.863496399000113],[88.12493575100021,24.898145447000147],[88.12033654800004,24.906775411000083],[88.11491052200009,24.912020569000035],[88.11491052200009,24.916413066000118],[88.16451989700008,24.941114400000018],[88.18302006100012,24.946979675000122],[88.20245039900007,24.945300191000154],[88.21878015100012,24.935145772000013],[88.23283614100015,24.918273417000123],[88.24187951700017,24.898765564000097],[88.24275801600001,24.88060129900016],[88.25485030100012,24.879955343000105],[88.29681156400014,24.869697571000117],[88.31360640500006,24.868302307000036],[88.32275313400007,24.87468434700015],[88.34089156100016,24.904139913000066],[88.37566980000022,24.945610251000133],[88.38786543800003,24.968761292000025],[88.3910177010001,24.99509043400009],[88.41411706500017,25.02152292900017],[88.42579593900003,25.051056010000096],[88.43416752100015,25.116659241000107],[88.43148034700017,25.173038229000138],[88.44129886900006,25.18972971600006],[88.47540531400014,25.19510406500002],[88.49183842000011,25.191124980000055],[88.52315433800013,25.17980784100017],[88.55002608200013,25.173141582000156],[88.55467696100018,25.171126201000035],[88.55937951600006,25.170764466000108],[88.57069665500015,25.173244935000085],[88.57772465000002,25.177482401000034],[88.59012699400009,25.19014312700007],[88.59911869300007,25.19314036100009],[88.63425866700018,25.192261862000137],[88.66459273300015,25.186887512000013],[88.72453739400012,25.166475322000153],[88.78422367300007,25.160945944000147],[88.79233687400003,25.166578675],[88.8025171310002,25.188127747000053],[88.80913171400013,25.195259094000065],[88.81708988500006,25.196809387000187],[88.82360111500006,25.194845683000054],[88.83021569900015,25.19133168600011],[88.89863529500022,25.169317526000114],[88.92416345200016,25.16787058500013],[88.9096423750001,25.189161275000018],[88.92788415600009,25.192726949000086],[88.93077803600008,25.202648825],[88.92798750900013,25.215929667000083],[88.92907271300012,25.229417216000158],[88.93775435400008,25.240165914000087],[88.97532312000007,25.265228984000156],[88.98235111500017,25.274892477000108],[88.98493493700019,25.284969381000153],[88.98271285000007,25.294477844000042],[88.97532312000007,25.302642721000055],[88.92648889200021,25.300472310000075],[88.90287276200009,25.30341786700016],[88.88612959800011,25.319075826000113],[88.88018680800022,25.32346832300003],[88.8592578540001,25.324708557000132],[88.84902592000006,25.327189026000113],[88.84199792500013,25.332821757000048],[88.81833011900018,25.359641826000043],[88.81404097600014,25.370390524000143],[88.81326582800013,25.38005401600016],[88.81037194800015,25.388425598000154],[88.79962325000022,25.39560862300003],[88.79931319200014,25.40170644200016],[88.81631473800003,25.437208151],[88.8149194750001,25.458602193000118],[88.80582442200009,25.471676331000154],[88.79311202000017,25.481959941000166],[88.78096805800006,25.495189108000158],[88.7723380950001,25.50195872000002],[88.74195235200008,25.512759094000145],[88.74257246900001,25.495189108000158],[88.73265059500012,25.491003317000136],[88.72314213100006,25.491416728000146],[88.71415043100009,25.492811992000114],[88.70619226100014,25.491675110000116],[88.69565026900008,25.483613586000118],[88.68707198100006,25.473898417000083],[88.67808028100008,25.46588857000002],[88.66634973200021,25.46289133800009],[88.64542077600005,25.467335510000012],[88.61317468300015,25.486404114],[88.59358931500006,25.49508575500012],[88.55095625800006,25.49648101800001],[88.53028568600016,25.500201721000124],[88.52046716400015,25.509296774000106],[88.51276737500008,25.523714498000018],[88.48558557100009,25.542628072000138],[88.47540531400014,25.562575176000067],[88.43778487200021,25.579835104000054],[88.42378055900011,25.592237447000127],[88.41943973800012,25.653784078000157],[88.39298140400014,25.680759176],[88.32027266500009,25.72525258400016],[88.25991459200011,25.789021301],[88.22746179300006,25.804265849000146],[88.1827100020001,25.792431946000033],[88.16622522000014,25.78364695300006],[88.14643314600008,25.775740458000186],[88.1277262780001,25.774913635000146],[88.11491052200009,25.78726430300013],[88.10803755700013,25.806281230000092],[88.10333500200014,25.814807841000018],[88.08757369000008,25.83098256400011],[88.08757369000008,25.83997426400005],[88.08896895400002,25.848655904],[88.08204431200008,25.863848776000125],[88.07439620000017,25.908135478000144],[88.07739343300008,25.91278635700003],[88.08266442900006,25.915938619000187],[88.0880387780002,25.92322499600006],[88.1065389400002,25.979965719000077],[88.12586592600005,26.01340037100006],[88.15103234900019,26.03133209300013],[88.15790531400009,26.05045237300014],[88.15640669800004,26.061407776000024],[88.15098067200009,26.066988830000025],[88.14477950000011,26.07050282800016],[88.1411621500001,26.075463766000112],[88.13992191600019,26.0853339640001],[88.14136885600007,26.09050160700012],[88.1444694420002,26.09587595700016],[88.15563155100008,26.12848378500003],[88.1637964280001,26.140472717000094],[88.19692102100007,26.159644674],[88.20565433800007,26.166414287000133],[88.21195886300004,26.173752340000036],[88.21888350500015,26.18016021699999],[88.2297872320001,26.184035950000023],[88.2503027760001,26.188015035000106],[88.30869714400013,26.206101787000037],[88.3262671310001,26.215920309000083],[88.33453536000016,26.230803121000136],[88.33293339100013,26.267235006000032],[88.33660241700014,26.28180776],[88.35169193600021,26.30097971700009],[88.366781454,26.31343373599999],[88.4138070070002,26.340202129000076],[88.4211967370002,26.348728740000084],[88.42600264500012,26.357927145000176],[88.43168705300016,26.36221628900013],[88.44202233900009,26.356118470000084],[88.44863692200008,26.35343129500013],[88.45799035600012,26.353017883000135],[88.46791223200009,26.354051412000118],[88.47540531400014,26.355808411000012],[88.49762618100007,26.352707825000053],[88.49545577000018,26.37808095300015],[88.47540531400014,26.43203114800012],[88.46114261900007,26.453890280000152],[88.43458093200016,26.465155741000032],[88.37691003500018,26.475335999],[88.3535522870002,26.48458608],[88.34652429200011,26.48401763900013],[88.34301029400015,26.47719635100016],[88.3402197670001,26.454148662000122],[88.33562056500013,26.448205872000113],[88.3225464270001,26.45177154600016],[88.31510502100016,26.46505238900009],[88.31386478700003,26.481537170000152],[88.31934248900014,26.494869690000183],[88.31934248900014,26.49492136700009],[88.33236495000008,26.51466176400005],[88.35282881700002,26.578688864000142],[88.36027022300007,26.593106588000083],[88.37251753700016,26.61160675100011],[88.38528161700006,26.623544007000064],[88.39437666800019,26.61801462800004],[88.39592696100013,26.59956614200003],[88.39499678600006,26.57837880500007],[88.39789066600005,26.55869008400013],[88.41101648000014,26.54509918200013],[88.44646651200017,26.53553904300004],[88.46238285300008,26.528821106000024],[88.47540531400014,26.514971823000153],[88.48791101100014,26.505773418000146],[88.49865970900007,26.494869690000183],[88.50682458500009,26.48763498900003]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Brunei","sov_a3":"BRN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Brunei","adm0_a3":"BRN","geou_dif":0,"geounit":"Brunei","gu_a3":"BRN","su_dif":0,"subunit":"Brunei","su_a3":"BRN","brk_diff":0,"name":"Brunei","name_long":"Brunei Darussalam","brk_a3":"BRN","brk_name":"Brunei","brk_group":null,"abbrev":"Brunei","postal":"BN","formal_en":"Negara Brunei Darussalam","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Brunei","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":6,"mapcolor13":12,"pop_est":388190,"gdp_md_est":20250,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"BX","iso_a2":"BN","iso_a3":"BRN","iso_n3":"096","un_a3":"096","wb_a2":"BN","wb_a3":"BRN","woe_id":23424773,"woe_id_eh":23424773,"woe_note":"Exact WOE match as country","adm0_a3_is":"BRN","adm0_a3_us":"BRN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":6,"long_len":17,"abbrev_len":6,"tiny":2,"homepart":1,"filename":"BRN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.13453209700006,4.908840236000117],[115.14584394600004,4.908514716000099],[115.14616946700008,4.908514716000184],[115.14680057800014,4.885620219000187],[115.15599898300005,4.876292623000069],[115.16933150200023,4.86998809800015],[115.18225061100017,4.861228943000171],[115.20736535700011,4.825598043000184],[115.27268436700014,4.636772359000176],[115.27702518800011,4.613052877000143],[115.27547489399997,4.59574127200014],[115.2674133710001,4.556208802000185],[115.26689660600006,4.516857198000196],[115.27247766200017,4.474663391000135],[115.28560347500016,4.435363465000165],[115.308651164,4.404693502000129],[115.34379113800017,4.371672261000157],[115.35826053900009,4.350278219000145],[115.36074100800025,4.329555970000115],[115.34627160700015,4.313768820000121],[115.32436080000015,4.314595642000142],[115.30120975800011,4.32469838500019],[115.28312300700016,4.336764832000171],[115.27433801300018,4.340020447000157],[115.2551143810001,4.339245300000144],[115.24467574100008,4.343663635000141],[115.22906945800011,4.356763611000105],[115.22069787600012,4.359760844000121],[115.1908288980002,4.356763611000105],[115.16995162000002,4.361259460000127],[115.11300419200002,4.382369284000163],[115.09977502500024,4.391231791000166],[115.0918168540002,4.405416972000125],[115.07982792200002,4.503963928000189],[115.06814904800014,4.543367208000106],[115.0354895430002,4.62124359200007],[115.02680790200023,4.660026754000113],[115.02277714100015,4.741365458000104],[115.02977835200024,4.820641508000151],[115.02979576900006,4.820624091000126],[115.04810631600004,4.801825262000179],[115.06641686300011,4.813544012000165],[115.08619225400005,4.83563873900006],[115.10857181100008,4.847479559000121],[115.13021894600004,4.852036851000164],[115.13086998800011,4.863714911000073],[115.12232506600017,4.879380601000136],[115.11646569100002,4.896063544000171],[115.11866295700011,4.903753973000093],[115.1251733730002,4.907660223000093],[115.13453209700006,4.908840236000117]]],[[[114.94836307800018,4.818931783000082],[114.93244673700009,4.80913909900012],[114.9148767500002,4.808725688000109],[114.8964799400002,4.811826274000154],[114.87818648300005,4.812808126000121],[114.85575891100004,4.806658630000143],[114.83767216000015,4.795315654000163],[114.80542606700017,4.764568177000115],[114.78847619700016,4.753896993000112],[114.75178593000011,4.738523255000132],[114.74319203400003,4.730585208000149],[114.74196740800004,4.729454040000164],[114.74134729000016,4.712943420000087],[114.74878869699998,4.694391581000147],[114.76811568300016,4.657494609000125],[114.77390344200002,4.636824036000106],[114.77731408700005,4.614654847000168],[114.78217167200008,4.497788595000131],[114.78816613800011,4.461201680000087],[114.80604618300005,4.433322246000117],[114.82568322700008,4.426190898000172],[114.84046268800003,4.428619691000137],[114.84790409400013,4.423736268000198],[114.8456303310002,4.395107524000124],[114.8364319250002,4.357228699000132],[114.8289905190001,4.340485535000184],[114.81824182100016,4.323458151000153],[114.79416325000008,4.300239528000162],[114.78785607900012,4.294157613000095],[114.78196496600012,4.284933370000189],[114.78258508400008,4.264417826000113],[114.81379764900024,4.277104391000165],[114.8172082930001,4.25966359500012],[114.80997359200003,4.241292623000135],[114.78713260900011,4.20721201600017],[114.7801046150001,4.187755839000175],[114.77452356000016,4.14646637000007],[114.7668754480002,4.131816101000183],[114.67489139800003,4.044069519000146],[114.62776249200013,4.016681010000113],[114.58662805200007,4.021435242000095],[114.5816671150001,4.029341736000148],[114.57422570800017,4.054146423000176],[114.56936812400025,4.064404195000164],[114.5614099530001,4.072026469000136],[114.54022261600014,4.086935120000192],[114.47738407500006,4.144967753000159],[114.46312137900017,4.164139709000082],[114.45330285700012,4.183699239000177],[114.43252893100018,4.246925354000155],[114.41991988200007,4.260128683000147],[114.40141971900013,4.261213887000139],[114.3604919850001,4.253875834000155],[114.31677372200014,4.262505799000095],[114.28266727700023,4.264908753000141],[114.27801639800018,4.274055481000133],[114.27625940000021,4.289015808000102],[114.27946333800017,4.294881084000096],[114.29341597500014,4.307050883000102],[114.29672326700009,4.316662700000108],[114.28990197800012,4.361311137000143],[114.27625940000021,4.381852519000119],[114.27625940000021,4.409731954000108],[114.26850793500003,4.437740581000114],[114.2626168210002,4.448721823000184],[114.25207483000023,4.460349020000152],[114.24876753800007,4.466886088000123],[114.24783736200017,4.474766744000163],[114.24556359900018,4.481433004000081],[114.2383288980001,4.484223532000143],[114.222929322,4.484636943000154],[114.21672814900013,4.48766001400017],[114.20908003800017,4.508149719000144],[114.19729781100014,4.515823670000131],[114.17269983000008,4.525228780000177],[114.14004032400007,4.550653585000177],[114.1189563400001,4.561634827000162],[114.06417932200006,4.570032247000157],[113.99878991000017,4.601141669000128],[114.25171959700006,4.592678127000084],[114.32667076900012,4.606878973000107],[114.395762566,4.645738023000192],[114.49447675900014,4.681260484000092],[114.5293074880001,4.693793036000088],[114.55030358200023,4.714422919000114],[114.56568444100017,4.743353583000115],[114.60181725400004,4.779974677000141],[114.72266686300023,4.876044012000108],[114.76018313900023,4.898749091000155],[114.92839603000007,5.000555731000091],[115.05779056100019,5.054103908000101],[115.08285566499997,5.057196356000175],[115.10173587300002,5.049872137000179],[115.10320071700019,5.036851304000095],[115.08863366000016,5.026597398000163],[115.05738366000011,5.012640692000105],[115.049082879,4.999172268000108],[115.03248131600004,4.959418036000116],[115.02955162900005,4.947455145000092],[115.02279707099999,4.933742580000157],[114.99170983200011,4.904974677000112],[114.98170006600012,4.889064846000096],[114.95890507000011,4.866293234000152],[114.9557011310002,4.85091949500017],[114.95487430900018,4.834202169000136],[114.94836307800018,4.818931783000082]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Bahrain","sov_a3":"BHR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bahrain","adm0_a3":"BHR","geou_dif":0,"geounit":"Bahrain","gu_a3":"BHR","su_dif":0,"subunit":"Bahrain","su_a3":"BHR","brk_diff":0,"name":"Bahrain","name_long":"Bahrain","brk_a3":"BHR","brk_name":"Bahrain","brk_group":null,"abbrev":"Bahr.","postal":"BH","formal_en":"Kingdom of Bahrain","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bahrain","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":9,"pop_est":727785,"gdp_md_est":26820,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"BA","iso_a2":"BH","iso_a3":"BHR","iso_n3":"048","un_a3":"048","wb_a2":"BH","wb_a3":"BHR","woe_id":23424753,"woe_id_eh":23424753,"woe_note":"Exact WOE match as country","adm0_a3_is":"BHR","adm0_a3_us":"BHR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"BHR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[50.55160566500006,26.194240627000028],[50.59473717500009,26.160305080000057],[50.60487053991403,26.174731594388586],[50.61989816690732,26.185465613669578],[50.626338578475895,26.170437986676205],[50.63277899004447,26.146823144258146],[50.645659813181624,26.145749742329997],[50.635506518265515,26.134382379256323],[50.63492579390066,26.115694488343337],[50.61475670700014,26.11115143400005],[50.62061608200008,26.052964585000012],[50.61841881600009,25.964748440000022],[50.60352623800014,25.854559637000108],[50.59449303500014,25.832709052000066],[50.56544030000009,25.78969961100003],[50.565277540000125,25.789536851000065],[50.55860436300014,25.81976959800008],[50.547211134000065,25.852932033000084],[50.53142337300005,25.885239976000037],[50.51140384200005,25.913031317000105],[50.46778405000009,25.957586981000077],[50.46045983200008,25.985256252000084],[50.46045983200008,25.985296942000076],[50.47999108200014,26.018866278000104],[50.485443556000064,26.03343333500004],[50.490896030000044,26.048000393000052],[50.490896030000044,26.04804108300004],[50.485199415000125,26.085638739000046],[50.469981316000144,26.122626044000096],[50.45297285200007,26.149562893000052],[50.44890384200004,26.161607164000056],[50.449554884000065,26.17796458500007],[50.46119225400008,26.22524648600003],[50.46851647200009,26.236883856000045],[50.481455925000084,26.24258047100002],[50.48161868600004,26.242539781000033],[50.48259524800005,26.242539781000033],[50.50391686300008,26.24201080900005],[50.516368035000134,26.239691473000107],[50.532399936000104,26.23309967700004],[50.54542076900009,26.22772858300007],[50.545502149000065,26.227769273000064],[50.58668053500014,26.24249909100004],[50.59327233200014,26.23859284100004],[50.59742272200009,26.225531317000076],[50.60474694100009,26.21649811400007],[50.60694420700008,26.212388414000117],[50.609141472000026,26.208319403000043],[50.609141472000026,26.208278713000055],[50.60352623800014,26.19765859600002],[50.59408613400012,26.195298570000062],[50.56560306100005,26.19887929900005],[50.55160566500006,26.194240627000028]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Bhutan","sov_a3":"BTN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bhutan","adm0_a3":"BTN","geou_dif":0,"geounit":"Bhutan","gu_a3":"BTN","su_dif":0,"subunit":"Bhutan","su_a3":"BTN","brk_diff":0,"name":"Bhutan","name_long":"Bhutan","brk_a3":"BTN","brk_name":"Bhutan","brk_group":null,"abbrev":"Bhutan","postal":"BT","formal_en":"Kingdom of Bhutan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bhutan","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":1,"mapcolor13":8,"pop_est":691141,"gdp_md_est":3524,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"BT","iso_a2":"BT","iso_a3":"BTN","iso_n3":"064","un_a3":"064","wb_a2":"BT","wb_a3":"BTN","woe_id":23424770,"woe_id_eh":23424770,"woe_note":"Exact WOE match as country","adm0_a3_is":"BTN","adm0_a3_us":"BTN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"BTN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[90.26180417819833,28.335353986475592],[90.26180417819833,28.299140502558956],[90.29147017500006,28.261351014000137],[90.3295040280001,28.25579579700006],[90.3539839554409,28.299140502558956],[90.38690530445606,28.299140502558956],[90.4165345185698,28.282679828051343],[90.45604013738804,28.282679828051343],[90.5054221609108,28.249758479036085],[90.54821991463055,28.246466344134504],[90.58772553344883,28.23329780452856],[90.59760193815342,28.200376455513393],[90.56797272403983,28.19050005080875],[90.54821991463055,28.157578701793582],[90.51529856561538,28.15428656689211],[90.4856693515018,28.12465735277827],[90.47523156700012,28.07234446300002],[90.4925948490002,28.07441151900015],[90.51006148300003,28.07410146100007],[90.57527714000017,28.065833232000113],[90.59739465400011,28.070587464000127],[90.62188928300006,28.072964579000157],[90.65103479000018,28.086994731000075],[90.66746789600015,28.090327860000073],[90.68390100100012,28.0870722450001],[90.72689579300018,28.061699118000107],[90.75527753600014,28.05517321500015],[90.7887008060001,28.047488098000045],[90.85091923100018,28.044025777000016],[90.9095203040001,28.03265696300012],[90.96057662000007,27.994726461000095],[90.97514937400015,27.98209157300009],[91.0088424080001,27.966769512000113],[91.0519405520001,27.962790426000037],[91.09255822800006,27.971678772000143],[91.11942997200006,27.994726461000095],[91.11942997200006,27.99477813800003],[91.11963667900008,27.99488149000014],[91.13379602000006,28.01410512300008],[91.17586063600017,28.05748748800006],[91.19467085800008,28.070587464000127],[91.22061242700013,28.074876607000178],[91.24614058500018,28.071465963000048],[91.26970503800007,28.072861227000047],[91.2901689050001,28.091413066000158],[91.30959924300012,28.056402283000168],[91.34143192600007,28.030564067000128],[91.41884322100012,27.994726461000095],[91.43648287100015,27.989375107000097],[91.44643843600008,27.98635487900013],[91.46090783700011,27.984365336000096],[91.49749475100006,27.984081116000127],[91.5374923100002,27.969353333000115],[91.5786267500001,27.964702454000147],[91.60064091000018,27.95927642900007],[91.62172489400021,27.950723979000045],[91.63795129500012,27.93974273700017],[91.65283410700006,27.916746725000124],[91.6489066980001,27.897213033000114],[91.63712447100008,27.877240093000083],[91.62833947800013,27.85269378700012],[91.62730594900015,27.829826966000027],[91.63288700400003,27.75944366500009],[91.62668583200016,27.716423035],[91.57986698400006,27.65797699000002],[91.57325240100013,27.619710592000118],[91.59505985500006,27.546381734000093],[91.6044649660001,27.53214487700002],[91.63288700400003,27.511655172000147],[91.64167199800013,27.494963684000126],[91.65738163300009,27.479150696000133],[91.68022261600012,27.472846171000114],[91.70492395000022,27.468763733000102],[91.72704146300012,27.460004577000017],[91.72709172100011,27.45994159900006],[91.74368127400007,27.43915313800015],[91.74481815600004,27.42375356000015],[91.75008915200007,27.41615712500011],[91.77964807200013,27.418844300000146],[91.85736942500013,27.443080546000132],[91.88434452300007,27.447162984000116],[91.92093143700012,27.4451476040001],[91.93374719300019,27.449126689000153],[91.96330611200014,27.468918763000048],[91.97508833800012,27.472432760000103],[91.99730920500016,27.44866160100004],[92.08484908100016,27.304225973000186],[92.08877648900014,27.292340394000163],[92.08185184800001,27.275132141000185],[92.05063928300015,27.251412659000053],[92.0367899980001,27.236478170000098],[92.03317264800009,27.227434794000132],[92.02996871000002,27.20846954400018],[92.02707482900016,27.19983958000013],[92.02149377500021,27.191829733000148],[92.0084713140001,27.17947906500011],[92.00578806200022,27.17611234300007],[92.0029936120002,27.172606100000124],[91.99586226400018,27.15803334600015],[91.99079797400012,27.14077341799999],[91.98790409400013,27.122273255000053],[91.98769738800014,27.10403147400011],[91.99989302600008,27.071526998000152],[92.04970910700008,27.026826885000116],[92.0669690350002,26.99494252600006],[92.0669690350002,26.994839172000027],[92.0839189050001,26.9373233030001],[92.08037091600008,26.92157089100006],[92.07275679500017,26.88776560500004],[92.03585982200009,26.854847718000187],[91.97508833800012,26.846631165000147],[91.95741499800013,26.854279277000145],[91.92568566900009,26.87867055300016],[91.90821903500014,26.885181784000125],[91.89312951700006,26.881357727000093],[91.8955066330001,26.868283590000047],[91.8955066330001,26.853504131000037],[91.87400923700008,26.84430572500004],[91.8858948160001,26.830869853000177],[91.88692834500009,26.814436747000016],[91.87866011600013,26.803016256000106],[91.86305383300007,26.804773255],[91.85240848800017,26.818519185000028],[91.84951460800019,26.834745586000125],[91.8439335530002,26.849370015000105],[91.82512333200006,26.858465068000086],[91.79525435400014,26.853504131000037],[91.73158898900007,26.81619374600008],[91.70213342300016,26.803481344000044],[91.65376428300013,26.797951965000134],[91.63795129500012,26.79898549400012],[91.59371626800012,26.81076772100012],[91.57562951700018,26.810147603000146],[91.53935266200013,26.79883046500008],[91.52064579300006,26.79759023000004],[91.50741662600015,26.808028870000086],[91.48447229000013,26.852728984000024],[91.47506717900015,26.8655447390001],[91.46059777800022,26.869368795000053],[91.42018680900004,26.871539205000133],[91.40633752400018,26.86952382400007],[91.38845747900021,26.858465068000086],[91.37812219300021,26.842807108000116],[91.37006066900014,26.824668681],[91.35838179600015,26.80616851900008],[91.34556604000008,26.794696350000052],[91.33006311000017,26.785497945000046],[91.31321659300008,26.778676657000105],[91.29657678200007,26.774594218000072],[91.2760095620001,26.774077454000135],[91.26195357300017,26.77903839200009],[91.23249800600014,26.79516143799999],[91.19818485600015,26.802344462000022],[91.12707808500012,26.800897522000025],[91.09193811100008,26.804773255],[91.06206913300016,26.80456654900003],[91.0127808070001,26.784348086000037],[91.00739546800011,26.782138977000145],[90.9444925800001,26.778869550000152],[90.71707727100014,26.767049459000035],[90.5877828380001,26.780071920000083],[90.47523156700012,26.8324201460001],[90.38262740100005,26.89179636700014],[90.34883101400007,26.896653951000147],[90.32857385300017,26.890659485000025],[90.31420780500017,26.88037587500004],[90.30087528500022,26.868283590000047],[90.28444218000006,26.857069804],[90.26599369300006,26.8515921030001],[90.22914839700016,26.852884013000065],[90.21090661700006,26.851488750000083],[90.17742028900008,26.832058410000016],[90.15220218900006,26.771752014000025],[90.12719079600005,26.751391500000082],[90.08915694200019,26.741728008000067],[89.97526208500008,26.731857809000175],[89.9121134850001,26.716716614000163],[89.8904093840001,26.71485626200014],[89.88028080200016,26.716251526000136],[89.8599202880001,26.72188425700007],[89.85870063400009,26.72205652400011],[89.85077355900015,26.723176168000023],[89.84700118000009,26.72482981400016],[89.83904301000015,26.731237691],[89.83496057100015,26.731547750000104],[89.8297412510001,26.72762034100013],[89.82767419500006,26.72245269800011],[89.82726078300007,26.717905172000187],[89.82674401900013,26.71568308500018],[89.82679569500013,26.713512675000104],[89.8252454020002,26.707673239000098],[89.82209314000013,26.7010069790001],[89.81728723200015,26.696201070000185],[89.81366988200013,26.69614939400016],[89.80405806500002,26.69976674400006],[89.80007898000017,26.700490214000137],[89.76028812700022,26.70018015600006],[89.75466966300016,26.70098856800008],[89.73873905400009,26.703280742000018],[89.68515059500012,26.724571431000086],[89.6632397870001,26.72550160700014],[89.62830651800019,26.712530823000023],[89.60980635600005,26.71222076500014],[89.59750736500021,26.720954081000013],[89.61347538300005,26.74854929600012],[89.6113566490001,26.765964254000053],[89.58608687400013,26.78405100500005],[89.54650272600006,26.797538554000127],[89.50541996200009,26.803688049000087],[89.44289148000021,26.797021789],[89.40733809400015,26.81340321900005],[89.36889455700005,26.837358593000047],[89.34165734900009,26.854330953000055],[89.30016117300013,26.84440907800014],[89.28636356600006,26.84497751900001],[89.27359948700021,26.84389231400003],[89.2629541420001,26.83634755500016],[89.25261885600011,26.82678741500017],[89.24083662900007,26.819759420000153],[89.21282800300011,26.813041484000124],[89.18461267100022,26.810561015000143],[89.12807865500005,26.813454895000135],[89.09650435400007,26.821413066],[89.08244836400016,26.836037496000085],[89.07433516500006,26.85639801000012],[89.06069258700009,26.881461080000022],[89.0448795990001,26.897119039000174],[89.02157352700013,26.912673645000027],[88.99661381100005,26.922750549000128],[88.97532312000007,26.921717021000163],[88.9658146570001,26.91546417300016],[88.95454919500011,26.912621969],[88.94276696800014,26.91370717400018],[88.93232832800018,26.919236552000182],[88.92530033400007,26.929365133000047],[88.92540368600012,26.93902862600008],[88.92695398000015,26.949415588000093],[88.92447351100006,26.961662903000118],[88.9066451410001,26.981093242],[88.88643965700012,26.97897450800012],[88.86711267100006,26.964246725000024],[88.85171309400019,26.945436504000025],[88.84561527500013,26.994839172000027],[88.84561527500013,26.99494252600006],[88.84561527500013,27.04956451400001],[88.8408093670001,27.07524770100018],[88.82763187700007,27.097881979000036],[88.80525598100014,27.113023173000144],[88.74257246900001,27.142737122000124],[88.73308231500008,27.14897238700017],[88.73006677200013,27.15095367400015],[88.73843835400012,27.17978912299999],[88.7543546960002,27.212603658000106],[88.77585209100008,27.24087066700018],[88.80117354300015,27.256425273],[88.86142826300014,27.270377910000022],[88.87611560500008,27.28048567900011],[88.88463098200012,27.286345927000053],[88.8923307700002,27.315543111000164],[88.91516001698491,27.330869457273153],[88.95080816584576,27.328228853653926],[88.97193299480031,27.31238523193799],[88.99701872918372,27.330869457273153],[88.98117510746786,27.354634889847105],[88.96401118394223,27.39292364232726],[88.9510595513103,27.433144260415233],[88.9575490987651,27.456939267749604],[88.96620182870484,27.47803029697776],[88.98296649296324,27.492631778751118],[88.98004625332291,27.49798038056919],[88.97520970564696,27.506838820587618],[88.97295541963885,27.517659393426342],[88.9783657060582,27.530283395071436],[88.99279313650985,27.537497110297224],[89.00496628095331,27.549670254740604],[89.00271199494526,27.56049082757933],[89.01623771099369,27.575819972434218],[89.03337028465486,27.578975972845555],[89.03968228547741,27.594305117700245],[89.05095371551775,27.608281690950303],[89.06402857436447,27.615946263377694],[89.09153086366277,27.62586512181302],[89.10235143650154,27.623610835805025],[89.10586459484793,27.62295211861506],[89.10956515172725,27.622258264200255],[89.11948401016271,27.61820054938569],[89.12465494572709,27.6148515891506],[89.12735892383331,27.627289888439023],[89.15602109175879,27.665686377546862],[89.19820315021522,27.73058185209511],[89.21659020133725,27.771141523687916],[89.2249202880001,27.80781280600003],[89.25871667500004,27.82755320299999],[89.29948938000015,27.84424469000011],[89.3360246180001,27.86907521600007],[89.37013106300006,27.909356995],[89.4173636780001,27.988654027000038],[89.42098067200007,27.994726461000095],[89.4211873780001,27.994726461000095],[89.44454512600007,28.031184184000107],[89.45880782100014,28.047798157000113],[89.47534428000014,28.061337382000104],[89.49534305900006,28.06800364200002],[89.51503177900011,28.081904602000108],[89.56148889100021,28.134640401000024],[89.5794206140001,28.144639791000046],[89.59781742400011,28.149807434000035],[89.71781010000021,28.16908274399999],[89.75584395400014,28.18437896700014],[89.77362064600018,28.212775167000142],[89.78085534700014,28.228769023],[89.79604821800015,28.24018951500001],[89.8297412510001,28.25915476500016],[89.83862959800015,28.26791392100013],[89.85402917500014,28.287266744000092],[89.86291752100013,28.295793356000033],[89.87361454300006,28.30059926300011],[89.88131433100014,28.297524516000077],[89.91613001353883,28.315601177066483],[89.95252445500009,28.308247376000093],[89.97159305900007,28.318040060000058],[89.99045495700008,28.320623881000145],[90.07086035391026,28.345230391180262],[90.12353451233453,28.335353986475592],[90.1531637264483,28.322185446869568],[90.17620867075877,28.325477581771153],[90.19925361506958,28.348522526081652],[90.22559069428156,28.358398930786294],[90.26180417819833,28.335353986475592]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"China","sov_a3":"CH1","adm0_dif":1,"level":2,"type":"Country","admin":"China","adm0_a3":"CHN","geou_dif":0,"geounit":"China","gu_a3":"CHN","su_dif":0,"subunit":"China","su_a3":"CHN","brk_diff":0,"name":"China","name_long":"China","brk_a3":"CHN","brk_name":"China","brk_group":null,"abbrev":"China","postal":"CN","formal_en":"People's Republic of China","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"China","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":3,"pop_est":1338612968,"gdp_md_est":7973000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"CH","iso_a2":"CN","iso_a3":"CHN","iso_n3":"156","un_a3":"156","wb_a2":"CN","wb_a3":"CHN","woe_id":23424781,"woe_id_eh":23424781,"woe_note":"Exact WOE match as country","adm0_a3_is":"CHN","adm0_a3_us":"CHN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"CHN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.20460045700011,15.779242255000055],[111.19654381600017,15.775376695000046],[111.19410241000006,15.77610911700016],[111.19288170700005,15.778225002000097],[111.19629967500006,15.785711981000146],[111.19939212300012,15.789211330000127],[111.20753014400005,15.789292710000112],[111.2085067070001,15.786281643000121],[111.20753014400005,15.782171942000062],[111.20460045700011,15.779242255000055]]],[[[111.76587975400005,16.045314846000068],[111.76335696700019,16.043443101000108],[111.75310306100019,16.04466380400011],[111.75342858200011,16.047430731000176],[111.76140384200008,16.048651434000092],[111.76587975400005,16.045314846000068]]],[[[111.60889733200005,16.52724844000015],[111.60629316500015,16.52423737200006],[111.60279381600017,16.52464427300005],[111.60010826900012,16.527289130000142],[111.59986412900005,16.527492580000096],[111.600840691,16.531968492000043],[111.60287519600016,16.53335195500013],[111.60572350400011,16.533514716000084],[111.60816491000006,16.53180573100009],[111.60962975400017,16.528265692],[111.60889733200005,16.52724844000015]]],[[[111.68165123800011,16.580186265000076],[111.6802677740002,16.578151760000154],[111.67888431100008,16.581122137000175],[111.68165123800011,16.580186265000076]]],[[[112.73682701900023,16.660223700000174],[112.73503665500007,16.657945054],[112.73015384200008,16.660223700000174],[112.72527103000019,16.66620514500009],[112.72624759200008,16.669012762000037],[112.72877037900011,16.669256903000175],[112.73340905000012,16.666083075000117],[112.73682701900023,16.660223700000174]]],[[[112.33725019599997,16.82843659100014],[112.333181186,16.82501862200003],[112.32715905000023,16.829738674000126],[112.325938347,16.833238023000135],[112.32789147200018,16.83710358300014],[112.33057701900023,16.83763255400011],[112.33545983200011,16.832586981000176],[112.33725019599997,16.82843659100014]]],[[[112.341075066,16.926988023000135],[112.34050540500007,16.92357005400011],[112.33545983200011,16.923814195000162],[112.33366946700002,16.92641836100016],[112.33366946700002,16.933254299000097],[112.33668053500006,16.93211497600005],[112.33708743600002,16.932033596000068],[112.33757571700014,16.931341864000117],[112.341075066,16.926988023000135]]],[[[110.68506920700005,20.153306382],[110.71094811300006,20.075181382000082],[110.72445722700016,20.063869533000073],[110.75277754000008,20.047512111000074],[110.77466881599999,20.020209052],[110.78834069100006,20.01040273600016],[110.86988366000017,19.997015692000062],[110.89014733200011,19.999172268000066],[110.89307701900012,20.00165436400009],[110.89380944100006,20.00438060100005],[110.89633222700016,20.004584052000027],[110.90430748800011,19.999172268000066],[110.92066491000006,20.012030341000084],[110.93458092500012,19.995062567],[110.97706139400005,19.865871486000017],[110.98316491000016,19.80776601800015],[110.996836785,19.749172268],[111.00001061300004,19.721665757],[110.99439537900017,19.69428131700012],[110.99659264400006,19.686590887000094],[111.01050866000006,19.68378327000015],[111.01636803500016,19.678045966000166],[111.03467858200005,19.64223867400007],[111.02035566500015,19.635972398000106],[111.00912519600016,19.641750393000063],[110.99333743600019,19.643011786000088],[110.97730553500006,19.640773830000015],[110.96583092500006,19.635972398000106],[110.91358483200004,19.583685614000032],[110.88770592500006,19.550604559000146],[110.87647545700005,19.53978099200016],[110.85865319100017,19.53481679900004],[110.84278405000006,19.539943752000127],[110.82984459700006,19.552069403000033],[110.82178795700011,19.5677757830001],[110.81853274800007,19.591050523000106],[110.82569420700011,19.603257554],[110.84115644600008,19.60797760600009],[110.86264082100014,19.608710028000033],[110.84766686300011,19.62246328300013],[110.82642662900004,19.621771552],[110.80632571700019,19.61273834800009],[110.79444420700005,19.601263739000146],[110.80355879000015,19.589178778000033],[110.81299889400005,19.563381252000013],[110.82178795700011,19.554103908000158],[110.80738366000006,19.53058502800009],[110.80250084700018,19.51740143400015],[110.8006291020001,19.495428778000033],[110.7962345710001,19.48460521000014],[110.78549238400008,19.47190989799999],[110.77230879000015,19.461655992000043],[110.76026451900006,19.45791250200001],[110.76026451900006,19.451646226000076],[110.76449629000015,19.44082265800007],[110.75757897200018,19.430894273000078],[110.74512780000006,19.422674872000172],[110.73243248800011,19.416937567],[110.72437584700006,19.415961005000113],[110.70622806100008,19.418280341000084],[110.69825280000012,19.416937567],[110.69499759200008,19.411810614],[110.68580162900017,19.393052476000136],[110.6814884770001,19.38898346600017],[110.669688347,19.381740627000127],[110.67066491000017,19.365057684000092],[110.67603600400005,19.346747137000037],[110.6779077480002,19.334377346],[110.66602623800004,19.31976959800009],[110.64136803500016,19.31244538],[110.63672936300006,19.29653554900007],[110.6326603520001,19.264471747000083],[110.62159264400006,19.23065827],[110.6062931650001,19.19985586100013],[110.58904056100008,19.176703192],[110.58033287900011,19.15517812700007],[110.57585696700002,19.157049872000144],[110.568614129,19.163072007000054],[110.54908287900005,19.151760158000073],[110.54444420700011,19.15005117400007],[110.51010175900015,19.15005117400007],[110.50220787900015,19.153143622000144],[110.49691816500008,19.159898179],[110.49048912900017,19.166571356000034],[110.47917728000019,19.169256903000033],[110.47917728000019,19.163072007000054],[110.48975670700005,19.15298086100007],[110.49756920700005,19.14154694200012],[110.5073348320001,19.1322289080001],[110.52418053500017,19.1283226580001],[110.5356551440001,19.1322289080001],[110.54151451900006,19.138617255000113],[110.5462345710001,19.139878648000106],[110.55494225400017,19.1283226580001],[110.55681399800002,19.12002187700001],[110.55494225400017,19.087347723000065],[110.56234785200016,19.102362372000087],[110.575450066,19.15005117400007],[110.58228600400005,19.15005117400007],[110.56999759200018,19.100897528000033],[110.5672306650001,19.065578518],[110.56324303500004,19.055650132000107],[110.54753665500019,19.040187893000095],[110.53077233200005,19.018377997000027],[110.51807701900012,18.99347565300009],[110.50993899800008,18.964341539000046],[110.50709069100006,18.930324611000014],[110.508067254,18.922186591000084],[110.51238040500013,18.913519598],[110.51335696700019,18.906398830000157],[110.50912519600016,18.897772528000147],[110.50001061300006,18.895738023000106],[110.49089603000019,18.89565664300012],[110.48658287900017,18.89248281500006],[110.48389733200011,18.88719310099999],[110.477712436,18.88523997600005],[110.470469597,18.88426341400016],[110.46558678500006,18.88190338700012],[110.46314537899998,18.87514883000007],[110.46127363400015,18.85602448100012],[110.45875084700006,18.848334052],[110.45435631600004,18.84446849200016],[110.44109134200018,18.836493231000034],[110.4345809250001,18.83038971600014],[110.43148847700016,18.821478583],[110.43580162900005,18.814154364],[110.4419051440001,18.80825429900007],[110.44507897200018,18.80365631700012],[110.45093834700006,18.804999091000028],[110.46501712300008,18.804510809000035],[110.4808048840001,18.80097077000015],[110.492849155,18.79311758000007],[110.5008244150001,18.802923895],[110.5024520190001,18.811224677000084],[110.49968509200008,18.837551174000097],[110.493418816,18.86261627800009],[110.49366295700004,18.87604401200018],[110.50342858200011,18.88190338700012],[110.51002037900015,18.868597723],[110.53443444099999,18.785630601000022],[110.51905358200004,18.783107815000093],[110.50717207100008,18.783514716000084],[110.49854576900012,18.781642971000124],[110.492849155,18.772040106000063],[110.48658287900017,18.772040106000063],[110.46900475400017,18.77716705900015],[110.45036868600008,18.75653717700014],[110.42457116000006,18.70376211100013],[110.43100019600016,18.69245026200015],[110.4267684250001,18.68089427300005],[110.41602623800011,18.67055898600013],[110.40349368600013,18.662787177000112],[110.38868248800006,18.675034898000188],[110.34449303500017,18.66461823100009],[110.335215691,18.673325914000188],[110.34538821700008,18.680853583000058],[110.36866295700005,18.685939846000068],[110.410899285,18.690130927],[110.410899285,18.697495835],[110.40349368600013,18.70376211100013],[110.39722741000017,18.70376211100013],[110.38013756599999,18.690497137000122],[110.32732181100008,18.679348049000012],[110.30787194100004,18.662787177000112],[110.30103600400005,18.662787177000112],[110.2708439460001,18.66815827000009],[110.22722415500019,18.642157294000114],[110.15699303500017,18.580796617000104],[110.12110436300006,18.555812893000095],[110.10328209700018,18.539374091000084],[110.08814537900011,18.504339911],[110.07064863400014,18.50202057500003],[110.03419030000006,18.51194896000014],[110.03419030000006,18.505764065000065],[110.046153191,18.49591705900006],[110.07406660200016,18.48908112200003],[110.0825301440001,18.47776927300005],[110.08130944100017,18.464544989],[110.06983483200005,18.426988023000188],[110.0682072270001,18.40892161700016],[110.0613712900001,18.40892161700016],[110.06072024800002,18.42959219],[110.05323326900005,18.440619208000143],[110.04460696700008,18.440130927000055],[110.04029381600017,18.42597077000012],[110.0444442070001,18.411363023000106],[110.05111738400015,18.399644273000135],[110.0525822270001,18.390204169000114],[110.04029381600017,18.38226959800015],[110.02621504000008,18.380601304000137],[109.99512780000012,18.382310289000046],[109.96859785200016,18.389837958],[109.96859785200016,18.40550364800016],[109.97592207100016,18.40664297100001],[109.98707116000017,18.403998114000114],[110.0003361340001,18.403021552000055],[110.01368248800011,18.40892161700016],[110.0198673840001,18.41766998900006],[110.02344811300006,18.429388739000146],[110.02393639400006,18.441229559000092],[110.02051842500005,18.450506903000147],[110.01734459700018,18.444973049000126],[110.00928795700005,18.43480052300019],[110.00619550900015,18.429388739000146],[110.00318444100006,18.433579820000162],[109.9925236340001,18.44306061400009],[109.99236087300008,18.43964264500006],[109.99284915500006,18.432766018000066],[109.9925236340001,18.429388739000146],[109.98194420700005,18.435492255000113],[109.9773869150001,18.43146393400015],[109.9736434250001,18.423081773000106],[109.96517988400015,18.416327216000166],[109.95801842500012,18.414374091000028],[109.95411217500012,18.41425202000015],[109.94874108200005,18.41522858300011],[109.9153751960001,18.416815497000144],[109.8982853520001,18.41425202000015],[109.88209069100016,18.40753815300009],[109.83545983200004,18.38226959800015],[109.82520592500006,18.385891018],[109.82154381600016,18.39166901200015],[109.81959069100006,18.397772528000147],[109.81446373800006,18.402085679000052],[109.79566491000017,18.405178127000127],[109.7762150400001,18.40403880400011],[109.75904381600006,18.40037669500005],[109.74610436300006,18.3959007830001],[109.75001061300006,18.373602606000148],[109.72657311300004,18.303778387000122],[109.73178144600016,18.27301666900003],[109.71778405000012,18.273098049000012],[109.71338951900012,18.279852606000148],[109.71159915500002,18.28799062700007],[109.70460045700005,18.29222239800016],[109.69678795700005,18.28986237200003],[109.67042076900006,18.27301666900003],[109.67042076900006,18.265570380000057],[109.68620853000013,18.267645575000174],[109.69402103000017,18.267157294000082],[109.71192467500005,18.25873444200012],[109.71778405000012,18.258449611000103],[109.73454837300014,18.25999583500014],[109.73926842500012,18.25873444200012],[109.74146569100006,18.250799872000172],[109.738536004,18.243231512000122],[109.73178144600016,18.23419830900012],[109.72803795700005,18.224676825000117],[109.71900475400005,18.21482982000019],[109.70875084700018,18.207220770000063],[109.70118248800006,18.20408763199999],[109.69068444100017,18.209173895],[109.68433678500006,18.221136786000145],[109.6772567070001,18.245062567],[109.66374759200018,18.237616278000033],[109.62907962300002,18.227362372000083],[109.6219181650001,18.220851955000015],[109.61915123800006,18.217271226000136],[109.60613040500007,18.208889065000065],[109.60206139400006,18.20408763199999],[109.60352623800006,18.19879791900011],[109.61304772200006,18.18305084800015],[109.61573326900012,18.176174221000124],[109.60132897200006,18.18121979400017],[109.58765709699999,18.181586005],[109.57601972700009,18.177476304000137],[109.56804446700006,18.169338283000044],[109.56120853000007,18.169338283000044],[109.56251061300004,18.17698802300005],[109.56804446700006,18.193182684000092],[109.56576582100008,18.201361395000035],[109.56120853000007,18.20579661700019],[109.5564884770001,18.20921458499999],[109.55445397200012,18.214056708000083],[109.55323326900006,18.217678127000127],[109.54859459700005,18.217678127000127],[109.54761803500017,18.220851955000015],[109.5496525400001,18.22553131700012],[109.55445397200012,18.22882721600014],[109.55909264400012,18.23053620000014],[109.56120853000007,18.230780341000113],[109.56332441500015,18.238023179000134],[109.56625410200016,18.242987372000172],[109.5665796230002,18.24884674700003],[109.56120853000007,18.25873444200012],[109.55225670700011,18.24477773600016],[109.538828972,18.236761786000116],[109.52955162900017,18.227687893000123],[109.53394616000006,18.21035390800013],[109.5107528000001,18.21360911700016],[109.47868899800002,18.192694403000115],[109.4650171230002,18.20408763199999],[109.47803795700011,18.212795315000065],[109.48471113400015,18.221502997000144],[109.4926863940001,18.22809479400003],[109.5096134770001,18.230780341000113],[109.5102645190001,18.238592841000084],[109.50652103000017,18.252752997000027],[109.50017337300008,18.259507554000052],[109.49293053500006,18.245062567],[109.48072350400017,18.26479726800012],[109.4627384770001,18.279689846000096],[109.43995201900012,18.288967190000122],[109.33350670700005,18.304266669000086],[109.21810957100016,18.305650132000082],[109.19060306100017,18.299709377000152],[109.17310631600006,18.288153387000037],[109.16260826900005,18.287827867000104],[109.14966881600017,18.299709377000152],[109.1438908210001,18.314154364000032],[109.14234459700018,18.328680731000148],[109.13949629000015,18.34072500200007],[109.12916100400005,18.347479559000092],[109.13599694100004,18.361151434000035],[109.12208092500005,18.358221747000115],[109.1111759770001,18.361273505000028],[109.10157311300011,18.366034247000115],[109.0916447270001,18.368597723],[109.00074303500006,18.36717357000005],[108.99089603000002,18.368719794000086],[108.97901451900006,18.37482330900015],[108.96778405000005,18.384466864000146],[108.96094811300006,18.393866278000143],[108.95281009200002,18.402289130000113],[108.9373478520001,18.40892161700016],[108.88591556100013,18.42666250200007],[108.87598717500012,18.43317291900017],[108.86866295700011,18.443833726000022],[108.83106530000012,18.468695380000057],[108.79558353000002,18.48655833500011],[108.77556399800007,18.493068752000013],[108.75513756600017,18.496975002000013],[108.71070397200016,18.49966054900007],[108.69499759200019,18.50482819200009],[108.68490644600016,18.515204169000082],[108.6772567070001,18.532416083],[108.67408287900005,18.554836330000015],[108.67945397200012,18.572251695000162],[108.68718509200019,18.587836005000085],[108.69092858200005,18.604722398000163],[108.6971134770001,18.68329498900009],[108.69361412900005,18.719875393000034],[108.68336022200018,18.756170966000028],[108.6681421230002,18.788641669000114],[108.64942467500006,18.813625393000123],[108.63697350400004,18.82510000200007],[108.62745201900006,18.835882880000085],[108.62387129000015,18.849188544000086],[108.62891686300011,18.86823151200018],[108.64722741000016,18.9032250020001],[108.65381920700005,18.921047268000063],[108.65626061300004,18.94399648600013],[108.65357506600017,18.964341539000046],[108.65040123800011,18.973578192],[108.64600670700004,18.977484442],[108.64258873800006,18.982814846000068],[108.64258873800006,19.018459377000013],[108.61524498800006,19.101629950000174],[108.62907962300007,19.11090729400003],[108.64429772200006,19.12417226800015],[108.65691165500013,19.139797268000123],[108.66309655000006,19.156236070000134],[108.67896569099999,19.152044989],[108.68344160200016,19.15005117400007],[108.68344160200016,19.156236070000134],[108.6760360040001,19.162176825000145],[108.67188561300006,19.17300039300015],[108.6699324880001,19.19407786700016],[108.6639103520001,19.209621486000074],[108.65007571700019,19.21279531500015],[108.63428795700005,19.212551174000012],[108.62208092500006,19.217718817],[108.62175540500007,19.228094794000114],[108.6307072270001,19.237982489000114],[108.637950066,19.248968817000062],[108.62696373800006,19.274969794000143],[108.63168379000015,19.286281643000123],[108.64112389400005,19.29490794500005],[108.64942467500006,19.299627997000144],[108.64730879000015,19.303534247000144],[108.64478600400004,19.31037018400015],[108.64966881600016,19.31122467700005],[108.6626082690001,19.309719143],[108.66456139400006,19.31427643400015],[108.66309655000006,19.32050202000012],[108.6668400400001,19.325181382000135],[108.6772567070001,19.327582098000093],[108.6772567070001,19.334377346],[108.66928144600016,19.34373607000005],[108.67253665500019,19.351263739],[108.6795353520001,19.358099677000112],[108.68344160200016,19.36542389500012],[108.68653405000005,19.377875067000147],[108.69434655000005,19.380316473000065],[108.71452884200018,19.375921942],[108.72917728000019,19.37799713700012],[108.75220787900017,19.38694896000014],[108.76295006600017,19.38898346600017],[108.77068118600019,19.394354559000035],[108.79029381600006,19.423163153000147],[108.7981876960001,19.42584870000003],[108.81788170700004,19.439195054000052],[108.82748457100016,19.44424062700007],[108.86980228000007,19.45791250200001],[108.90333092500006,19.493353583000115],[108.92448978000017,19.506252346000124],[108.9373478520001,19.492010809000035],[108.94483483200011,19.492010809000035],[108.94483483200011,19.498846747000144],[108.94076582100008,19.514105536000116],[108.95655358200005,19.534613348000065],[108.99268639400012,19.5677757830001],[109.002207879,19.58722565300009],[109.00847415500006,19.597072658000016],[109.01587975400005,19.601263739000146],[109.06706790500019,19.608710028000033],[109.07886803500017,19.61273834800009],[109.1033634770001,19.626288153000147],[109.118418816,19.631170966000028],[109.12891686300006,19.64020416900003],[109.13257897200006,19.64223867400007],[109.133555535,19.643377997000087],[109.156504754,19.64964427300005],[109.19206790500007,19.67845286700016],[109.20582116000017,19.698431708000058],[109.2049259770001,19.718573309000092],[109.21119225400005,19.724798895000063],[109.21851647200006,19.722967841000084],[109.24398847700016,19.729925848000065],[109.25896243600017,19.731634833000086],[109.272715691,19.7293968770001],[109.28321373800006,19.724798895000063],[109.30046634200019,19.71112702000012],[109.30738366000017,19.71112702000012],[109.2981876960001,19.72679271],[109.28158613400015,19.74433014500012],[109.27466881600006,19.75722890800013],[109.29420006600006,19.75950755400011],[109.29420006600006,19.765692450000085],[109.28679446700006,19.765692450000085],[109.28679446700006,19.77317942900005],[109.2957462900001,19.774644273000106],[109.30046634200019,19.776841539000102],[109.30738366000017,19.786851304],[109.29737389400012,19.786851304],[109.28923587300008,19.787909247000144],[109.28150475400017,19.790187893000123],[109.27320397200018,19.793646552000112],[109.26099694099999,19.77871328300007],[109.23560631600017,19.76235586100016],[109.21013431100019,19.749741929],[109.19752037899998,19.745835679],[109.18132571700008,19.73598867400007],[109.17481530000006,19.730373440000065],[109.17017662900005,19.724798895000063],[109.163340691,19.724798895000063],[109.167246941,19.74274323100009],[109.163340691,19.790269273000106],[109.1668400400001,19.805487372000083],[109.17554772200018,19.814032294000114],[109.18677819100017,19.820013739000117],[109.19752037899998,19.82782623900003],[109.200938347,19.83258698100012],[109.20736738400014,19.843573309000146],[109.21119225400005,19.848293361000074],[109.21949303500004,19.854681708],[109.22486412900017,19.855536200000085],[109.2295028000001,19.855373440000122],[109.23560631600017,19.858832098000118],[109.24870853000006,19.868841864000114],[109.25171959700018,19.87470123900006],[109.25269616000006,19.885891018000066],[109.25513756600017,19.89834219],[109.2615666020001,19.900824286000116],[109.27051842500012,19.900091864],[109.28003991,19.902899481000034],[109.30372155000012,19.921698309000092],[109.31137129000014,19.919501044000086],[109.3142195970001,19.89984772300015],[109.32129967500006,19.89203522300015],[109.33790123800011,19.88987864800005],[109.36882571700008,19.889308986000074],[109.39576256600006,19.869533596000068],[109.41260826900012,19.86139557500006],[109.42750084700018,19.865383205000015],[109.44361412900017,19.872992255000057],[109.45533287900005,19.864935614000117],[109.46265709700005,19.849310614000146],[109.4650171230002,19.834051825000174],[109.47242272200016,19.834051825000174],[109.47950280000006,19.844183661000116],[109.4939884770001,19.850165106000034],[109.51140384200008,19.855047919000114],[109.52702884200008,19.861965236000017],[109.53296959700016,19.85260651200018],[109.54509524800007,19.85374583500011],[109.561778191,19.857407945000162],[109.58171634200019,19.855698960000055],[109.58171634200019,19.861965236000017],[109.52930748800011,19.87547435099999],[109.52019290500002,19.88247304900007],[109.5156356130001,19.905218817],[109.5254012380001,19.91185130400008],[109.55445397200012,19.910345770000035],[109.5574650400001,19.91730377800009],[109.55225670700011,19.927476304000052],[109.54460696700019,19.93333567899999],[109.54078209700016,19.927150783000044],[109.53736412900017,19.92446523600013],[109.53093509200008,19.93012116100014],[109.5258895190001,19.940375067000062],[109.52702884200008,19.95136139500012],[109.58139082100016,19.984808661000088],[109.59571373800006,19.993150132000054],[109.61166425900015,19.99787018400015],[109.62631269600016,19.997951565000122],[109.63624108200005,19.99233633000013],[109.64258873800011,19.99233633000013],[109.65211022200012,20.002183335000055],[109.6681421230002,20.006903387000147],[109.68669681100017,20.00787995000006],[109.70460045700005,20.006577867000047],[109.71290123800006,20.010077216000028],[109.71900475400005,20.010646877000013],[109.7255965500001,20.006577867000047],[109.72836347700016,19.99787018400015],[109.71989993600013,19.985296942000062],[109.7255965500001,19.978664455000015],[109.7255965500001,19.971828518000095],[109.72217858200011,19.96613190300009],[109.7181095710001,19.957505601000022],[109.7255965500001,19.957505601000022],[109.73755944100006,19.97809479400003],[109.76368248800006,19.974351304000024],[109.80762780000012,19.95136139500012],[109.81055748800004,19.965521552000055],[109.81169681100008,19.98183828300007],[109.81592858200011,19.991197007000025],[109.8279728520001,19.98484935100008],[109.83513431100008,19.97333405200014],[109.83855228000006,19.958441473000093],[109.83838951900012,19.943264065],[109.83545983200004,19.930853583000058],[109.85466556100002,19.94135163000014],[109.87037194100017,19.953355210000055],[109.88038170700005,19.967596747000144],[109.88331139400012,19.98484935100008],[109.89527428500004,19.985174872000083],[109.914805535,19.990220445000134],[109.92090905000012,19.988592841000113],[109.9266056650001,19.98432038],[109.92945397199999,19.98615143400015],[109.93132571700019,19.99013906500015],[109.93458092500012,19.99233633000013],[109.94263756600017,19.990912177000084],[109.9433699880001,19.987453518000066],[109.94223066500015,19.982896226000108],[109.9446720710001,19.978664455000015],[109.9572046230002,19.96727122600005],[109.97242272200018,19.948187567000062],[109.97559655000006,19.93227773600013],[109.9515080090001,19.930853583000058],[109.95997155000005,19.917792059000092],[109.97380618600008,19.908921617000047],[109.9900822270001,19.905951239000117],[110.00619550900015,19.910345770000035],[110.00619550900015,19.916571356000176],[109.99219811300011,19.925360419000057],[110.001231316,19.932847398000106],[110.01465905000012,19.94086334800015],[110.01368248800011,19.957505601000022],[110.05030358200005,19.974066473000065],[110.0682072270001,19.978664455000015],[110.07634524800014,19.979152736000103],[110.08961022200006,19.97809479400003],[110.10254967500006,19.973944403000086],[110.10987389400006,19.96499258000007],[110.12273196700019,19.974310614000032],[110.1368921230002,19.996730861000017],[110.14958743600006,20.006577867000047],[110.13884524800008,20.002630927000055],[110.12330162900017,19.98969147300015],[110.11548912900017,19.98484935100008],[110.1049910820001,19.98297760600009],[110.0682072270001,19.98484935100008],[110.11491946700019,20.001939195000105],[110.12973066500015,20.012762762000122],[110.13746178500017,20.02435944200012],[110.14966881600006,20.05581289300015],[110.15699303500017,20.067368882000082],[110.17115319100016,20.060777085],[110.20866946700019,20.04950592700011],[110.22217858200005,20.047512111000074],[110.23259524800008,20.044501044000167],[110.24512780000006,20.03831614800002],[110.26099694100017,20.033148505],[110.28052819100017,20.03327057500014],[110.29517662900017,20.039374091000138],[110.31690514400005,20.05735911700019],[110.32496178500016,20.061224677],[110.34473717500012,20.05805084800012],[110.35889733200005,20.04979075700005],[110.3689884770001,20.03864166900003],[110.376719597,20.026434637000065],[110.376719597,20.020209052],[110.36817467500006,20.007798570000077],[110.37517337300007,19.996771552000112],[110.39722741000017,19.978664455000015],[110.40251712300002,19.964341539000102],[110.40650475400005,19.935939846000096],[110.410899285,19.923407294000086],[110.417735222,19.923407294000086],[110.4143986340001,19.932074286],[110.41334069100006,19.93431224200016],[110.410899285,19.93768952000009],[110.410899285,19.943915106000063],[110.417735222,19.943915106000063],[110.417735222,19.95136139500012],[110.41456139400006,19.957993882],[110.40943444100006,19.980047919000082],[110.4070744150001,19.98484935100008],[110.39714603000019,19.98704661700016],[110.39063561300011,19.99306875200007],[110.38648522200005,20.001898505000113],[110.38298587300007,20.012762762000122],[110.38331139400006,20.01414622599999],[110.37818444100016,20.03986237200006],[110.376719597,20.04385000200001],[110.37501061300011,20.063625393000123],[110.37647545700005,20.071966864000032],[110.38298587300007,20.08104075700011],[110.42457116000006,20.047512111000074],[110.43116295700011,20.05060455900015],[110.47022545700005,20.03180573100009],[110.4959416020001,20.02350495000003],[110.52759850400011,20.020209052],[110.52759850400011,20.012762762000122],[110.52076256600017,20.012762762000122],[110.52076256600017,20.006577867000047],[110.5356551440001,19.99957916900014],[110.55054772200016,19.98847077000012],[110.564138217,19.98452383000013],[110.575450066,19.999172268000066],[110.58033287900011,19.97972239800005],[110.59864342500006,19.943996486000042],[110.60271243600017,19.927150783000044],[110.60580488400008,19.923163153000147],[110.61296634200002,19.925726630000057],[110.61988366000006,19.9323591170001],[110.62322024800007,19.940741278000175],[110.621348504,19.95001862200003],[110.61841881600017,19.957220770000063],[110.61784915500017,19.96393463700012],[110.62322024800007,19.971828518000095],[110.609141472,19.989894924000012],[110.60645592500006,20.007635809000092],[110.60092207100008,20.021063544000086],[110.57886803500006,20.026434637000065],[110.5708113940001,20.030666408000073],[110.57016035200016,20.04026927300005],[110.57227623800004,20.050726630000113],[110.572032097,20.057521877000152],[110.56617272200018,20.069525458000086],[110.56934655000012,20.079779364],[110.59310957100016,20.10732656500012],[110.60417728000007,20.110825914000102],[110.64014733200004,20.108343817],[110.65202884200019,20.11701080900009],[110.67074629000015,20.154974677],[110.6779077480002,20.163560289000102],[110.68506920700005,20.153306382]]],[[[110.44263756600006,20.663519598],[110.44752037900005,20.658351955000015],[110.4627384770001,20.654771226000136],[110.47136478000019,20.647365627000156],[110.47632897200006,20.6315778670001],[110.47803795700005,20.610785223000036],[110.47584069100017,20.59593333500005],[110.47120201900005,20.59259674700003],[110.46485436300011,20.590765692000147],[110.45728600400017,20.586859442000062],[110.45167076900006,20.589178778000118],[110.4480900400001,20.596258856000176],[110.43921959700005,20.62946198100009],[110.43580162900005,20.638495184000092],[110.42660566500015,20.642889716000084],[110.41765384200002,20.654771226000136],[110.42204837300012,20.662258205000015],[110.4300236340001,20.662014065000065],[110.43336022200012,20.66376373900006],[110.43336022200012,20.667425848],[110.43702233200005,20.66791413],[110.44263756600006,20.663519598]]],[[[110.60954837300001,20.897284247000115],[110.58920332100016,20.883490302000027],[110.57569420700005,20.88882070500007],[110.56348717500006,20.90346914300009],[110.54753665500019,20.917710679],[110.57488040500006,20.947455145],[110.58961022200006,20.959377346000124],[110.60271243600017,20.964911200000145],[110.5958764980002,20.958726304],[110.60613040500002,20.953843492000132],[110.61793053500017,20.952378648000078],[110.62794030000005,20.948635158000126],[110.63249759200014,20.936672268],[110.63038170700011,20.925767320000105],[110.62452233200005,20.915187893000066],[110.60954837300001,20.897284247000115]]],[[[109.10523522200016,21.02448151200018],[109.10092207100016,21.021185614000146],[109.095957879,21.022040106000034],[109.09050540500007,21.04193756700012],[109.099864129,21.0606957050001],[109.12273196700019,21.06541575700002],[109.13624108200011,21.05101146000014],[109.12769616000017,21.032171942],[109.11255944100017,21.02708567900008],[109.10523522200016,21.02448151200018]]],[[[110.38982181100019,21.09589264500015],[110.40040123800006,21.06391022300015],[110.40821373800011,21.048244533000073],[110.417735222,21.040594794000143],[110.42318769600016,21.05141836100013],[110.43213951900006,21.057277736000074],[110.44410241,21.059963283000073],[110.45875084700006,21.061102606000087],[110.45191491,21.061102606000087],[110.47282962300008,21.061672268000063],[110.48406009200006,21.067857164000046],[110.492930535,21.07599518400015],[110.50709069100006,21.082220770000035],[110.52637780000006,21.08209870000006],[110.53882897200018,21.07306549700003],[110.54558353000002,21.05735911700016],[110.54753665500019,21.037258205000015],[110.54379316500014,21.022772528000175],[110.52686608200005,20.989203192000147],[110.52076256600017,20.972357489000142],[110.52222741000006,20.962591864],[110.52564537900005,20.951076565000065],[110.52605228000007,20.94159577000006],[110.51693769600016,20.93764883000007],[110.50798587300002,20.940375067000147],[110.50269616000017,20.947495835],[110.50017337300002,20.95750560099999],[110.49968509200008,20.96865469],[110.4930119150001,20.97797272300012],[110.47689863400015,20.990423895000063],[110.45769290500007,21.001206773000074],[110.44141686300006,21.00584544500019],[110.36304772200018,21.00584544500019],[110.33366946700008,20.99628327],[110.29867597700014,20.980658270000117],[110.26661217500012,20.972642320000162],[110.24586022200018,20.98602936400009],[110.2618921230002,20.992987372000144],[110.26539147200018,21.004339911000145],[110.2592879570001,21.016994533000016],[110.24586022200018,21.027573960000055],[110.26482181100019,21.03310781500009],[110.275075717,21.034328518],[110.28736412900011,21.033840236000017],[110.28736412900011,21.040594794000143],[110.27637780000012,21.04116445500001],[110.27068118600008,21.044867255000057],[110.2695418630001,21.051581122000115],[110.27312259200019,21.061102606000087],[110.290212436,21.054266669000086],[110.30990644600016,21.052923895],[110.32691491000006,21.057440497000144],[110.335215691,21.06858958500008],[110.32211347700016,21.064032294000025],[110.3079533210001,21.06085846600014],[110.29542076900012,21.063055731000148],[110.28736412900011,21.07444896000011],[110.34262129000008,21.07465241100006],[110.37134850400017,21.08095937700001],[110.38982181100019,21.09589264500015]]],[[[110.47917728000019,21.184637762000122],[110.492930535,21.183905341000084],[110.50416100400005,21.18768952],[110.52637780000006,21.20083242400007],[110.53223717500012,21.20331452],[110.53785241000004,21.204494533000016],[110.54322350400017,21.20416901200009],[110.5496525400001,21.20246002800009],[110.56617272200018,21.193345445000187],[110.568614129,21.19147370000003],[110.55543053500004,21.176825262000122],[110.55005944100012,21.16844310100005],[110.54753665500019,21.15672435100008],[110.55494225400017,21.15672435100008],[110.57732181100017,21.190985419000143],[110.59400475400005,21.202785549000012],[110.616953972,21.198919989],[110.616953972,21.19147370000003],[110.59945722700016,21.178290106000176],[110.57691491000017,21.13092682500006],[110.56519616000011,21.112616278000175],[110.54322350400017,21.104966539000046],[110.52068118600019,21.11180247600008],[110.50586998800011,21.126857815000093],[110.50709069100006,21.143703518000095],[110.49659264400005,21.146307684000178],[110.48902428500006,21.150091864],[110.48357181100017,21.155829169000086],[110.47917728000019,21.164129950000145],[110.47291100400005,21.164129950000145],[110.47917728000019,21.15045807500003],[110.46143639400012,21.151068427],[110.44947350400017,21.156236070000162],[110.44532311300006,21.165676174],[110.45191491,21.178452867000047],[110.44336998800011,21.17788320500007],[110.42611738400008,21.1791039080001],[110.417735222,21.178452867000047],[110.417735222,21.184637762000122],[110.43433678500017,21.18659088700015],[110.44483483200005,21.193793036],[110.45264733200005,21.201483466000028],[110.46216881600004,21.20514557500014],[110.48780358200011,21.208644924000154],[110.49984785200009,21.206284898000106],[110.49626712300002,21.195217190000065],[110.47095787899998,21.193670966000028],[110.46338951900005,21.190741278000086],[110.47917728000019,21.184637762000122]]],[[[111.93848717500006,21.652573960000108],[111.94516035200016,21.650132554],[111.95093834700012,21.651109117000075],[111.95582116000017,21.65639883000013],[111.96265709700018,21.657619533000158],[111.98951256600017,21.65778229400003],[111.9998478520001,21.653998114],[112.00733483200023,21.643947658000016],[112.00733483200023,21.636542059000035],[111.9998478520001,21.62116120000009],[111.98145592500006,21.612046617000104],[111.92904707100016,21.60187409100014],[111.91976972700009,21.60187409100014],[111.90967858200005,21.600531317000062],[111.89747155000006,21.595526434000035],[111.88819420700011,21.58893463700006],[111.87110436300006,21.573228257],[111.86329186300006,21.568264065000122],[111.82243899800002,21.56199778900016],[111.80933678500017,21.56549713700015],[111.81006920700011,21.568345445000105],[111.81690514400012,21.571356512000122],[111.82243899800002,21.575100002000156],[111.842051629,21.606838283000013],[111.8450626960001,21.623968817000147],[111.83529707100016,21.643947658000016],[111.84717858200011,21.64740631700012],[111.88379967500006,21.650132554],[111.89600670700011,21.653957424000012],[111.9158634770001,21.662746486000074],[111.92823326900006,21.664455471000068],[111.93140709699999,21.66229889500006],[111.93433678500006,21.65745677299999],[111.93848717500006,21.652573960000108]]],[[[112.62378991000017,21.63328685099999],[112.61646569100017,21.61920807500006],[112.60718834700006,21.616034247000172],[112.57992597700004,21.615545966000084],[112.56714928500011,21.61762116100003],[112.55591881600017,21.623439846000068],[112.54908287900017,21.616400458],[112.53923587300007,21.59894440300003],[112.53492272200005,21.595526434000035],[112.52540123800023,21.59886302300005],[112.51929772200018,21.60667552300005],[112.51823978000013,21.616766669000114],[112.52426191500004,21.626898505000057],[112.55982506600017,21.64838288],[112.56788170700023,21.660630601000047],[112.55591881600017,21.678127346],[112.57781009200002,21.683010158000073],[112.62012780000023,21.704494533000016],[112.64535566499998,21.712836005000085],[112.65455162900017,21.69847239800002],[112.6513778000001,21.688299872000144],[112.64332116000017,21.678168036],[112.637950066,21.664455471000068],[112.64991295700023,21.64931875200007],[112.65040123800023,21.640448309000035],[112.62378991000017,21.63328685099999]]],[[[112.86255944100006,21.769435940000065],[112.86817467500023,21.75755442900011],[112.86255944100006,21.745591539000188],[112.83179772200006,21.73590729400003],[112.82056725400004,21.726507880000113],[112.81251061300011,21.717108466000084],[112.79753665500019,21.705877997000087],[112.80046634200019,21.689764716000028],[112.80713951900023,21.671291408000098],[112.81055748800017,21.657619533000158],[112.80323326900022,21.638169664000046],[112.79444420700011,21.62311432500003],[112.7934676440001,21.608221747000083],[112.81055748800017,21.589300848000065],[112.79965253999998,21.579087632000107],[112.79021243600008,21.57758209800006],[112.76490319100006,21.58185455900009],[112.761485222,21.583685614000057],[112.75831139400023,21.588080145000145],[112.75611412900017,21.59373607000005],[112.75367272200006,21.607367255],[112.74968509200008,21.608791408000158],[112.74390709700018,21.608791408000158],[112.73715254000015,21.612616278000147],[112.73438561300011,21.628729559000035],[112.7675887380001,21.6634789080001],[112.77442467500012,21.69171784100014],[112.75961347700016,21.686346747000115],[112.73666425900015,21.68109772300012],[112.71558678500006,21.68024323100012],[112.70622806100017,21.688381252000127],[112.71168053500006,21.702541408000158],[112.724375847,21.715806382],[112.74781334700016,21.73334381700012],[112.76490319100006,21.731756903000086],[112.7775171230002,21.77265045800011],[112.79566491,21.76683177299999],[112.80762780000023,21.77277252800009],[112.82113691500004,21.77480703300013],[112.85027103000006,21.774318752000124],[112.84400475400005,21.774318752000124],[112.86255944100006,21.769435940000065]]],[[[113.26775149800008,21.886460679],[113.25847415500019,21.880438544000086],[113.25074303500011,21.883205471000153],[113.23462975400005,21.89345937700007],[113.22974694100006,21.89874909100014],[113.22584069100004,21.90082428600006],[113.22169030000012,21.91412995000009],[113.23170006600012,21.934475002000067],[113.24773196700018,21.94318268400015],[113.25766035199999,21.946600653000175],[113.26783287900005,21.943304755000142],[113.27515709700006,21.931545315000065],[113.27800540500017,21.925034898000074],[113.28093509200018,21.922837632000082],[113.28565514400012,21.91811758000007],[113.28370201900017,21.91351959800012],[113.27865644600004,21.90737539300015],[113.27515709700006,21.897528387000037],[113.26775149800008,21.886460679]]],[[[113.7759210840002,21.98585878200005],[113.7644767830001,21.96681792700015],[113.74820564800021,21.972788470000165],[113.73905611400008,21.985972906000185],[113.73627928000009,21.997162124000155],[113.74550153700007,21.997795254000135],[113.75685926600025,22.000390400000086],[113.77174662900019,22.0003434100001],[113.7759210840002,21.98585878200005]]],[[[114.30250084700018,22.044867255000142],[114.22242272199999,22.021673895],[114.20671634200008,22.025783596000153],[114.21680748800023,22.032171942000062],[114.27165774800002,22.05052317900011],[114.28296959699999,22.052557684000146],[114.29297936300011,22.057806708000143],[114.29542076900023,22.062811591000084],[114.29859459700018,22.06712474200016],[114.3042098320001,22.06928131700009],[114.31006920700023,22.068589585000055],[114.309336785,22.06256745000003],[114.3068139980002,22.057196356000176],[114.30534915500002,22.05027903900016],[114.30250084700018,22.044867255000142]]],[[[113.39356530000023,22.071600653000147],[113.39893639400012,22.06850820500007],[113.41260826900023,22.075995184000035],[113.41032962300007,22.063544012000122],[113.39144941500003,22.02753327000015],[113.39893639400012,22.021918036000145],[113.40162194100017,22.018459377000127],[113.40267988400004,22.014349677],[113.40577233200011,22.007025458],[113.32349694100006,22.011948960000055],[113.30941816500004,22.02411530200014],[113.34359785199999,22.06850820500007],[113.35279381600017,22.0731468770001],[113.36329186300023,22.075995184000035],[113.37273196700008,22.080145575000174],[113.37777753999997,22.089016018000038],[113.38266035200016,22.089585679],[113.38404381600006,22.08812083500011],[113.38404381600006,22.085394598000065],[113.38526451900017,22.082180080000015],[113.38721764400012,22.07819245000003],[113.38990319100017,22.074693101000136],[113.39356530000023,22.071600653000147]]],[[[113.53891035199999,22.08209870000003],[113.48471113400014,22.071356512000094],[113.47022545700011,22.077622789000046],[113.47396894600004,22.08812083500011],[113.47348066500015,22.098537502000013],[113.46599368600019,22.101507880000113],[113.46485436300023,22.10814036700019],[113.47152753999998,22.11408112200003],[113.51889082100004,22.12726471600017],[113.52711022200005,22.1258812520001],[113.53272545700023,22.120306708000086],[113.53093509200008,22.11294179900007],[113.52711022200005,22.10610586100016],[113.53256269600016,22.095363674000154],[113.54761803500017,22.092596747000087],[113.53891035199999,22.08209870000003]]],[[[113.3647567070001,22.15790436400009],[113.35401451900012,22.13084544500005],[113.33619225400005,22.10049062700007],[113.31364993600002,22.07640208500014],[113.28907311300021,22.06850820500007],[113.27914472700004,22.074693101000136],[113.268809441,22.088324286000088],[113.26417076900006,22.10492584800012],[113.27173912900005,22.120021877000127],[113.27914472700004,22.12319570500001],[113.28972415500007,22.12547435099999],[113.29867597699999,22.12856679900007],[113.30274498800016,22.13397858300011],[113.30420983200021,22.14183177299999],[113.30844160200004,22.14862702000012],[113.31495201900023,22.15399811400009],[113.32309004000014,22.15790436400009],[113.32797285200004,22.145819403000175],[113.33545983200011,22.14887116100006],[113.34717858200005,22.156439520000035],[113.3647567070001,22.15790436400009]]],[[[113.62337888300024,22.43987218600016],[113.63488321100007,22.438044736000037],[113.64959548400023,22.43856570300015],[113.65786970800005,22.432023345000076],[113.65782457200024,22.423751330000087],[113.65329326100013,22.41372844400017],[113.64242195799997,22.41142060300008],[113.64234696300011,22.400189681000043],[113.63144949100003,22.396102116000137],[113.62118666100005,22.391419027],[113.6122721830001,22.397961588000086],[113.61044137500008,22.413337446000142],[113.61181578900019,22.43047025200009],[113.62337888300024,22.43987218600016]]],[[[113.64183151700016,22.601623679000014],[113.62801481900023,22.595784940000087],[113.60260957400024,22.61152128900012],[113.5624271510001,22.65568324900015],[113.52533118000011,22.683182073000168],[113.49136813499997,22.705773852000064],[113.47651141600019,22.719514324],[113.47653944900011,22.73126768100009],[113.50208046400022,22.73611194000007],[113.52550121900006,22.744872770000097],[113.54675920200006,22.741884151000093],[113.55950467400012,22.73499972200007],[113.56370736800014,22.72030299800015],[113.57320394300021,22.700697745000085],[113.57532173500007,22.698734278000174],[113.60393909400001,22.68495169000012],[113.63568652400014,22.656474951000106],[113.64510971700017,22.625115360000123],[113.64183151700016,22.601623679000014]]],[[[113.48780358200023,22.892808335],[113.52702884200008,22.846625067],[113.54672285199999,22.834865627000013],[113.57300866,22.830064195000105],[113.57642662900005,22.823919989000146],[113.587657097,22.794623114000117],[113.59351647200018,22.784816799000094],[113.60287519599997,22.772447007000054],[113.602793816,22.76264069200012],[113.59457441500004,22.756089585000137],[113.57984459700006,22.75372955900009],[113.55827884200014,22.75787995000003],[113.54460696700019,22.768784898000106],[113.53565514400023,22.784328518],[113.5285750660001,22.802150783000073],[113.52116946700018,22.787909247000172],[113.50611412900011,22.798041083000115],[113.49529056100019,22.813869533000073],[113.48080488400015,22.84931061400006],[113.47396894600004,22.84931061400006],[113.47315514400012,22.825384833],[113.45590254000004,22.830755927000055],[113.43409264400017,22.84906647300012],[113.40211022200018,22.88287995000009],[113.396169467,22.898098049000065],[113.40512129000015,22.908107815000065],[113.43295332100004,22.912014065000065],[113.47559655000023,22.900702216000166],[113.48780358200023,22.892808335]]],[[[113.55354151500003,22.885811368000176],[113.5450136910001,22.879960560000043],[113.5237572450001,22.896679122000094],[113.50995973500002,22.921216480000126],[113.5057535000001,22.951609447000138],[113.5153758380001,22.96922034900014],[113.52920975100014,22.96035383800016],[113.52918592300003,22.94859404100005],[113.54513977500014,22.93776231400001],[113.55359928200019,22.911280871000045],[113.55354151500003,22.885811368000176]]],[[[117.12256920700005,23.465521552000055],[117.13409051900024,23.46046900900008],[117.14179358900006,23.449653305000126],[117.13736671400008,23.419564710000042],[117.12878132000016,23.39936918400018],[117.10694420700005,23.403550523000106],[117.08287717300006,23.411144377000127],[117.04889680300002,23.40470955799999],[117.02393639400005,23.41453685100005],[117.01544726200004,23.416249271000183],[117.00400864499997,23.419758833000046],[116.99244515000022,23.419212783000045],[116.96934496399999,23.418945631000085],[116.94809769200006,23.421805245000158],[116.94298929100007,23.430062179000156],[116.953110066,23.442087018000066],[116.96763467800004,23.453148053000078],[116.98218834700006,23.45945872600008],[116.9887801440001,23.455633856000148],[116.99390709700005,23.448309637000037],[117.00025475400017,23.441555080000015],[117.01002037899998,23.438950914000102],[117.01742597699997,23.441880601000136],[117.02685730100009,23.44385463000013],[117.03757899000017,23.446900552000084],[117.04434843200012,23.464467225000035],[117.04908330000002,23.47408369],[117.06299889400022,23.478461005000057],[117.07081139400023,23.47532786700019],[117.07154381600017,23.473089911000027],[117.09032773100014,23.461077402000157],[117.10214777500006,23.46799307900001],[117.10894473700013,23.48229427600016],[117.1258521570002,23.482691873000093],[117.12256920700005,23.465521552000055]]],[[[117.00513756600006,23.562933661000116],[117.00928795700005,23.554999091000138],[117.00367272200018,23.54621002800009],[116.99586022200016,23.53851959800006],[116.99293053500017,23.53388092700014],[116.98780358200023,23.524115302],[116.97095787900004,23.514634507],[116.95093834700016,23.517401434000146],[116.93726647200006,23.526271877000013],[116.93604576900022,23.535549221000153],[116.9465438160001,23.539455471000153],[116.95777428499999,23.54490794500019],[116.96753991000007,23.554348049],[116.97437584700005,23.55939362200003],[116.97852623800011,23.559271552000055],[116.98585045700011,23.560451565],[116.99561608200021,23.56354401200018],[117.00513756600006,23.562933661000116]]],[[[117.43482506600012,23.750718492000075],[117.44778172300018,23.742251607000114],[117.4689006670001,23.75309046400004],[117.50416100400005,23.74990469000015],[117.52666076500006,23.74010690500002],[117.51619127600016,23.716277715000146],[117.49594160200014,23.72016022300012],[117.48415604000004,23.710793044000113],[117.47654291,23.689431710000132],[117.47983528300003,23.662678062000126],[117.46721918500023,23.657933737000075],[117.44483483200005,23.664943752000013],[117.43266955400013,23.66011701400008],[117.42114944500011,23.646464419000107],[117.41776554900017,23.627465821000058],[117.41537519599999,23.60822174700003],[117.42383873800021,23.601996161000088],[117.43155864400003,23.58263023500011],[117.37446006000008,23.57265430500017],[117.32048272800009,23.574015926000115],[117.3378190980001,23.59646257200008],[117.36912531100008,23.622357128000047],[117.39372806100019,23.679185289000102],[117.38672936300023,23.68488190300009],[117.37549889400022,23.689398505000057],[117.36394290500019,23.691473700000174],[117.35613040500012,23.689398505000057],[117.34644616000006,23.684759833000115],[117.34050540500002,23.688950914000046],[117.34245853000007,23.699652411000088],[117.37668889000012,23.728865309000167],[117.37566165500019,23.74730052300005],[117.37924238400015,23.74681224200016],[117.37273196700008,23.76675039300015],[117.38591556100013,23.774155992000047],[117.40430748800017,23.774155992000047],[117.4135848320001,23.771673895],[117.41976972700009,23.754299221000124],[117.43482506600012,23.750718492000075]]],[[[118.13786868600019,24.536525783000013],[118.16309655000022,24.531968492000072],[118.18140709700002,24.535101630000142],[118.18230228000013,24.52265045800011],[118.18930097699999,24.50307851800015],[118.18873131600006,24.494126695000105],[118.18083743600008,24.48346588700018],[118.17164147200016,24.478461005000142],[118.16391035200014,24.47190989800005],[118.16081790500019,24.45693594000012],[118.1538192070001,24.43707916900003],[118.13648522199999,24.42926666900003],[118.114024285,24.43060944200012],[118.092051629,24.438462632],[118.08106530000023,24.445217190000122],[118.07341556100012,24.452704169000114],[118.06999759200019,24.460272528000147],[118.07203209700005,24.467474677],[118.08155358200023,24.47260163],[118.09343509200006,24.47467682500003],[118.10303795700015,24.479885158000016],[118.10621178500006,24.494126695000105],[118.08228600400015,24.48232656500015],[118.07471764400012,24.483954169000167],[118.07203209700005,24.49787018400015],[118.0752059250001,24.512152411000145],[118.08936608200021,24.538397528000175],[118.09253991000017,24.556219794000143],[118.11207116000017,24.545599677000027],[118.13786868600019,24.536525783000013]]],[[[119.52279707099999,25.208441473],[119.53402753999998,25.20722077],[119.54346764400012,25.209377346000096],[119.55103600400015,25.20945872600008],[119.56104576900023,25.20864492400007],[119.56755618600003,25.204901434000035],[119.56324303500006,25.198797919000057],[119.55339603000012,25.195257880000057],[119.54818769600004,25.185980536],[119.54867597699997,25.172430731000034],[119.54216556100017,25.165350653000175],[119.52898196700008,25.165350653000175],[119.51734459700006,25.17145416900017],[119.51091556100002,25.182318427000055],[119.51295006600017,25.191392320000045],[119.5127059250001,25.198797919000057],[119.50326582100004,25.203802802],[119.49293053499999,25.20050690300006],[119.48894290500003,25.19627513200011],[119.46119225400004,25.20331452],[119.44947350400015,25.214341539000046],[119.44467207100016,25.229071356000034],[119.44654381600004,25.235988674000126],[119.45435631600006,25.238470770000063],[119.45818118600006,25.241115627000127],[119.47038821700014,25.252183335],[119.47608483200011,25.250555731000144],[119.48145592500023,25.245021877000124],[119.48666425900016,25.24485911700016],[119.49170983200011,25.241400458000086],[119.49642988399998,25.231350002000013],[119.50261478000007,25.221014716000084],[119.51197350399998,25.213446356000148],[119.52279707099999,25.208441473]]],[[[119.30258222700014,25.42291901200015],[119.29688561300006,25.42291901200015],[119.28834069100006,25.44367096600017],[119.28565514400005,25.454738674000012],[119.28158613400004,25.463812567],[119.28150475400005,25.48289622599999],[119.30372155000005,25.537746486000103],[119.30502363399998,25.54336172100001],[119.30746504000004,25.54682038],[119.31031334700016,25.548651434000178],[119.31820722700004,25.557074286000116],[119.32129967500012,25.561224677000055],[119.33171634200018,25.57127513200014],[119.34327233200023,25.573309637000147],[119.34652753999998,25.56671784100008],[119.345957879,25.56110260600009],[119.35206139400013,25.552232164000046],[119.34913170700005,25.544012762000065],[119.34359785200014,25.515366929],[119.33472741,25.48969147300012],[119.33057701900007,25.46735260600009],[119.33480878999997,25.449896552000112],[119.33497155000023,25.43797435099999],[119.32601972700003,25.43398672100001],[119.31373131600017,25.429917710000055],[119.30258222700014,25.42291901200015]]],[[[119.7802840500001,25.617417710000055],[119.79200280000006,25.604559637000033],[119.80372155000006,25.610744533000016],[119.81348717500012,25.60883209800015],[119.82292728000003,25.60138580900015],[119.83285566500003,25.590887762000094],[119.81690514400022,25.579820054000052],[119.83008873800004,25.57200755400008],[119.85515384200006,25.565130927000055],[119.8745223320001,25.5567894550001],[119.86247806100019,25.546291408000016],[119.8465275400001,25.53632233300011],[119.83448326900016,25.54913971600014],[119.81861412900005,25.545803127000127],[119.80469811300023,25.532619533000073],[119.79883873800011,25.51581452000006],[119.80640709700006,25.495835679],[119.83969160200014,25.47915273600016],[119.8465275400001,25.461167710000108],[119.82105553500016,25.467515367000047],[119.79460696700019,25.4630394550001],[119.77198326900013,25.450588283000073],[119.75782311300011,25.43325429900007],[119.7573348320001,25.42133209800012],[119.76002037900011,25.410630601000108],[119.7573348320001,25.40493398600013],[119.73991946700002,25.407782294000167],[119.72217858200023,25.413804429],[119.70386803500016,25.42357005400011],[119.69304446700019,25.43764883000007],[119.6977645190001,25.45661041900017],[119.70101972700016,25.45994700700002],[119.7089949880001,25.465643622000087],[119.71176191500015,25.469549872000087],[119.71225019600016,25.473578192000147],[119.71225019600016,25.48021067900011],[119.71159915500017,25.486232815000122],[119.70997155000006,25.487860419000143],[119.69988040500012,25.482326565000122],[119.68921959700016,25.48045482000005],[119.67847741000016,25.482326565000122],[119.66846764400006,25.487860419000143],[119.67774498800023,25.50120677300005],[119.68620853000007,25.50771719000015],[119.69605553500011,25.50934479400017],[119.74854576900023,25.50259023600013],[119.76636803500006,25.506252346000093],[119.77833092500022,25.522040106000034],[119.75879967500005,25.530747789000102],[119.72632897200018,25.52513255400011],[119.71615644600014,25.53632233300011],[119.71762129000004,25.54490794500005],[119.73047936300023,25.581000067],[119.7270613940001,25.590887762000094],[119.71876061300023,25.591253973000033],[119.70923912900004,25.585598049000126],[119.70264733200005,25.57729726800015],[119.69271894600016,25.594224351000136],[119.69874108200005,25.612616278000175],[119.71363366000006,25.630601304000106],[119.73047936300023,25.646144924000012],[119.74545332100014,25.64907461100013],[119.75049889400012,25.65298086100013],[119.76351972700009,25.659491278000033],[119.78174889400017,25.659165757],[119.77702884200008,25.652085679000134],[119.77588951900012,25.635728257000107],[119.7802840500001,25.617417710000055]]],[[[119.39063561300004,25.96698639500006],[119.38111412900017,25.96698639500006],[119.37159264400005,25.97158437700001],[119.345957879,25.97638580900009],[119.31202233200004,25.986761786],[119.30201256600016,25.991848049000012],[119.29053795700023,25.995266018000038],[119.27328535200004,25.99713776200018],[119.25757897200018,26.001450914000188],[119.25074303500007,26.012396552000055],[119.24683678500004,26.026556708000086],[119.23755944099999,26.037583726000108],[119.2267358730002,26.047674872000083],[119.21778405000005,26.05902741100006],[119.20923912900017,26.098578192],[119.22120201900006,26.089544989],[119.24333743600008,26.057074286000116],[119.25757897200018,26.04755280200011],[119.27222741000017,26.042059637000094],[119.30543053500011,26.035956122000087],[119.36980228000019,26.014227606000034],[119.40121504000003,25.996039130000142],[119.40495853000006,25.97793203300013],[119.39063561300004,25.96698639500006]]],[[[119.63884524800001,26.07050202],[119.620371941,26.06419505400008],[119.56527754000017,26.08047109600001],[119.55396569100017,26.095648505],[119.57488040500003,26.119533596000068],[119.59937584700016,26.128119208000086],[119.61312910199997,26.121161200000085],[119.62696373800004,26.10789622600005],[119.638926629,26.088568427000112],[119.64405358200021,26.078436591000166],[119.63884524800001,26.07050202]]],[[[120.36304772200006,26.963039455000157],[120.36890709700016,26.955674546000136],[120.37387129000003,26.943589585000055],[120.37769616000006,26.93984609600004],[120.38420657600014,26.937974351000047],[120.38567142000008,26.935166734000102],[120.35254967500018,26.923773505000142],[120.32683353000002,26.939683335000055],[120.31853274800001,26.94859446800008],[120.32024173300026,26.958197333000083],[120.32219485800006,26.962103583000054],[120.32618248800004,26.961778062000132],[120.33708743600008,26.970038153000033],[120.34489993600002,26.971950588000183],[120.35092207100016,26.97117747600008],[120.35531660200004,26.968858140000105],[120.35751386800023,26.96605052300005],[120.36304772200006,26.963039455000157]]],[[[121.10347872300021,27.460070019000014],[121.10336493000013,27.451879507000015],[121.0931237550001,27.45289444100014],[121.07471580200016,27.4567218320001],[121.06648675400018,27.454983920000117],[121.06945127100002,27.446761769000044],[121.07651703400009,27.438498163000034],[121.06726355500014,27.436770104000157],[121.05915926700007,27.444133394000104],[121.05008762500007,27.45605582800006],[121.04610864399999,27.46519949400006],[121.053402954,27.473320017000148],[121.07400226299998,27.47948388600015],[121.08314306000013,27.473018559000153],[121.09433796400002,27.466534876000154],[121.10347872300021,27.460070019000014]]],[[[121.18751061300023,27.845933335000137],[121.18539472700004,27.84381745000003],[121.18034915500019,27.84227122599999],[121.175059441,27.843695380000057],[121.17302493600019,27.841009833000086],[121.17481530000006,27.825873114000085],[121.17123457099999,27.818793036000113],[121.16000410199999,27.818508205000068],[121.1474715500001,27.82436758000004],[121.13843834700018,27.824855861000017],[121.13005618600002,27.82050202000012],[121.11638431100017,27.817816473000118],[121.09799238400014,27.817816473000118],[121.09603925900002,27.82786692900011],[121.11402428500004,27.844142971000153],[121.13306725400004,27.847154039000046],[121.14918053499999,27.845770575000174],[121.15674889400022,27.848781643000066],[121.152598504,27.852769273000046],[121.15365644600014,27.856431382000025],[121.15870201900012,27.858140367000104],[121.16797936300016,27.859686591000138],[121.18165123800013,27.8646507830001],[121.1884871750001,27.863714911000113],[121.18970787900005,27.85529205900015],[121.18930097700003,27.848293361000074],[121.18751061300023,27.845933335000137]]],[[[121.11133873800004,27.98379140800013],[121.12745201900022,27.97748444200009],[121.13965905000012,27.965765692],[121.1391707690001,27.956976630000142],[121.12582441500004,27.95136139500012],[121.10328209700006,27.946193752000124],[121.092946811,27.947739976000076],[121.08334394600014,27.954738674000154],[121.07178795700011,27.957261460000083],[121.0493270190001,27.950873114000146],[121.04468834700018,27.951971747000087],[121.04021243600002,27.957953192],[121.04517662900017,27.967474677000023],[121.06478925900015,27.98143138200008],[121.07016035199999,27.982896226000136],[121.07569420700011,27.98139069200009],[121.08082116000006,27.98065827000015],[121.11133873800004,27.98379140800013]]],[[[121.28535242000011,28.101945631000078],[121.27914472700006,28.0854352890001],[121.26783287900007,28.08454010600012],[121.25709069100006,28.085150458000083],[121.24724368600012,28.08779531500006],[121.23812910200004,28.092922268000063],[121.23568769599997,28.085516669000086],[121.23365319100004,28.08242422100001],[121.23389733200011,28.079087632000082],[121.23812910200004,28.071193752000013],[121.23145592500018,28.065008856000034],[121.21924889400012,28.06785716400016],[121.21851239999997,28.05846334900015],[121.20244170800017,28.054753871000017],[121.18640047700002,28.04370018300007],[121.16689887200017,28.043081974000174],[121.15157280200017,28.041232470000082],[121.14673393799997,28.057810957000086],[121.15523523500015,28.071368142000054],[121.15235145599999,28.078073949000142],[121.1427514980002,28.082586981000148],[121.13746178500001,28.094183661000088],[121.1306258470001,28.103461005000142],[121.13232919800005,28.114314296000185],[121.12735929800007,28.126556316000134],[121.12037194100016,28.13568756700009],[121.12501061300011,28.140082098000065],[121.1349389980002,28.14305247600008],[121.16528325500009,28.15053352299999],[121.18753112400023,28.168901841000135],[121.20406983500007,28.189707446000124],[121.20897557200024,28.200131985000052],[121.21094811300011,28.2089704450001],[121.23058760400025,28.21973251800007],[121.25640250600023,28.214798309000045],[121.26889341600022,28.193941892000097],[121.27024056900002,28.18229047300018],[121.26183975900001,28.168809099],[121.25553061199999,28.140000892],[121.26453571900016,28.121594912000045],[121.28535242000011,28.101945631000078]]],[[[121.86459394600016,29.123846747000083],[121.8673608730002,29.115790106000148],[121.86101321700006,29.10683828300013],[121.85352623800011,29.097560940000065],[121.84205162900018,29.095038153000143],[121.83725019600014,29.099798895000063],[121.82667076900012,29.107977606000148],[121.81446373800023,29.115383205000153],[121.80250084699999,29.118638414000184],[121.79273522200018,29.11855703300002],[121.78581790500007,29.119696356000148],[121.7827254570001,29.124660549000012],[121.78353925900002,29.132879950000085],[121.78598066500003,29.143744208],[121.78980553500006,29.14984772300006],[121.79623457100014,29.14940013200008],[121.84392337300002,29.141913153000118],[121.85678144600014,29.134263414000156],[121.86215254000003,29.129584052000055],[121.86459394600016,29.123846747000083]]],[[[121.95834394600014,29.101874091000166],[121.93531334700018,29.062892971],[121.92514082100003,29.063055731000148],[121.9122827480002,29.071356512000033],[121.88868248800006,29.072333075000117],[121.900157097,29.093736070000077],[121.88843834699999,29.110296942000115],[121.87159264400012,29.12661367400015],[121.86817467500012,29.147406317000144],[121.88135826900017,29.160305080000157],[121.90333092500006,29.16657135600009],[121.92660566499997,29.16673411700016],[121.94320722700016,29.161118882000082],[121.95191491000006,29.152289130000113],[121.95541425900002,29.143500067000144],[121.95753014400022,29.119533596000096],[121.95883222700003,29.10805898600013],[121.95834394600014,29.101874091000166]]],[[[122.14323978000006,29.73338450700014],[122.17701256600006,29.696844794000086],[122.18685957100014,29.673407294000114],[122.16293378999998,29.65452708500008],[122.16976972700004,29.675034898000135],[122.16521243600008,29.673163153000143],[122.1494246750001,29.66885000200007],[122.1494246750001,29.681830145000063],[122.13892662900017,29.672593492000185],[122.132578972,29.668890692000062],[122.1274520190001,29.669012762000037],[122.12501061300006,29.673244533000126],[122.12305748800023,29.686468817000094],[122.12110436300006,29.69171784100017],[122.11524498800023,29.698391018000123],[122.10873457100016,29.704006252000127],[122.10368899800018,29.71051666900003],[122.10157311300011,29.71971263199999],[122.09278405000023,29.725775458],[122.07390384200019,29.724432684000092],[122.05681399800008,29.719794012000175],[122.05307050900004,29.71600983300006],[122.04509524800007,29.71698639500012],[122.04004967500025,29.71637604400017],[122.03646894600016,29.71747467700011],[122.03337649800008,29.72345612200003],[122.03288821700019,29.73094310099999],[122.03532962300002,29.73997630400011],[122.039317254,29.747544664000046],[122.043223504,29.750799872000087],[122.04859459700006,29.756089585000083],[122.05665123800011,29.76780833500005],[122.06820722700004,29.779527085000055],[122.08448326900022,29.784898179000113],[122.09799238400002,29.786851304000052],[122.10743248800021,29.78961823100012],[122.11475670700021,29.78851959800006],[122.12208092500022,29.77871328300013],[122.12378991000016,29.77090078300013],[122.12094160200003,29.757798570000162],[122.12208092500022,29.750799872000087],[122.12647545700023,29.74506256700012],[122.14031009200002,29.73460521000005],[122.14323978000006,29.73338450700014]]],[[[122.31470787900015,29.78367747599999],[122.30836022200008,29.776271877000013],[122.29558353000019,29.77912018400006],[122.27247155000023,29.792141018000123],[122.26539147200016,29.798000393000063],[122.25131269600014,29.806097723],[122.23755944100006,29.823797919000114],[122.23267662900015,29.82782623900009],[122.23170006600017,29.83624909100003],[122.24773196700008,29.846096096000153],[122.27116946700006,29.846828518000066],[122.28419030000022,29.842840887000097],[122.31202233200011,29.829046942],[122.31039472700014,29.82461172100004],[122.30469811300011,29.81745026200018],[122.31218509200008,29.79515208500014],[122.31470787900015,29.78367747599999]]],[[[121.99244225400017,29.908270575000145],[121.9741317070001,29.899847723],[121.9461369150001,29.90395742400015],[121.93360436300006,29.921332098000118],[121.94092858200005,29.93768952000015],[121.95191491000006,29.948065497000144],[121.95997155000006,29.953192450000145],[121.96648196700006,29.951727606000087],[121.9702254570001,29.946844794000025],[121.97217858200021,29.944769598],[121.98682701900022,29.929877020000063],[121.99350019600004,29.918850002000013],[121.99244225400017,29.908270575000145]]],[[[122.34644616000006,29.949408270000117],[122.35914147200018,29.946275132000054],[122.388926629,29.94879791900017],[122.40064537900011,29.95294830900012],[122.40674889400006,29.95270416900017],[122.40943444100006,29.945705471000093],[122.40902754000015,29.93667226800009],[122.40748131599999,29.93060944200009],[122.40316816500003,29.92625560099999],[122.39519290500007,29.922064520000063],[122.4096785820001,29.91120026200018],[122.40805097700016,29.899847723],[122.39519290500007,29.883612372000144],[122.39226321700002,29.87641022300012],[122.38672936300013,29.87067291900014],[122.3828231130001,29.86473216400013],[122.38591556100017,29.85687897300015],[122.39405358200013,29.847886460000137],[122.39551842500006,29.842678127000124],[122.39519290500007,29.83331940300009],[122.38477623800017,29.835191148000074],[122.37720787899998,29.838934637000094],[122.36540774800002,29.849758205000096],[122.35710696700006,29.861721096000124],[122.35922285200016,29.869777736000156],[122.36548912900005,29.876288153000147],[122.36915123800006,29.883612372000144],[122.36736087300018,29.895900783000013],[122.36207116,29.90448639500012],[122.35385175900004,29.910589911000116],[122.33350670700023,29.920599677000023],[122.32520592500022,29.927883205000015],[122.32056725400007,29.93724192900005],[122.32203209700016,29.948431708000058],[122.32545006600017,29.95392487200009],[122.33008873800011,29.95823802299999],[122.33545983200005,29.961330471000064],[122.3418074880001,29.963039455000068],[122.34644616000006,29.949408270000117]]],[[[121.88965905000022,29.983954169000143],[121.87159264400012,29.97671133000001],[121.86011803500018,29.978094794000082],[121.84742272199999,29.982123114000057],[121.836192254,29.98867422100015],[121.828868035,29.997503973],[121.82740319100006,30.00421784100014],[121.82911217500022,30.009100653000033],[121.83220462300001,30.013657945000073],[121.83513431100008,30.01943594000012],[121.83594811300006,30.025702216000084],[121.83448326900012,30.038560289000102],[121.83472741000006,30.044989325000117],[121.83741295700023,30.05589427299999],[121.84766686300016,30.0831566430001],[121.8530379570001,30.087144273000074],[121.86475670700011,30.08592357000005],[121.87647545700011,30.081610419000146],[121.88184655000023,30.076361395000063],[121.88526451900016,30.061183986000074],[121.89307701900023,30.05621979400003],[121.90211022200006,30.053534247000055],[121.90919030000012,30.044989325000117],[121.91049238400002,30.024115302000055],[121.90333092500006,30.001776434000117],[121.88965905000022,29.983954169000143]]],[[[122.17359459700005,30.102240302000084],[122.18246503999998,30.098578192000115],[122.19369550899998,30.099798895000117],[122.20386803500004,30.099554755],[122.22934004000004,30.091620184000035],[122.23878014400023,30.086615302],[122.24537194099999,30.08014557500017],[122.249685092,30.073431708000147],[122.25611412900004,30.068182684000146],[122.26954186300023,30.066066799000126],[122.2895613940001,30.067328192000144],[122.29712975400004,30.062567450000145],[122.30014082100016,30.04873281500015],[122.3042098320001,30.041978257000107],[122.32252037900017,30.031927802000137],[122.32748457100004,30.02448151200015],[122.32667076900012,30.010809637000037],[122.32097415500002,30.00592682500014],[122.31324303499999,30.003485419000025],[122.30697675900014,29.997219143000066],[122.3029891290001,29.98631419500002],[122.30103600400004,29.975897528000118],[122.30014082100016,29.952460028000033],[122.29363040500007,29.93378327000015],[122.27784264400013,29.939927476000133],[122.24561608200005,29.969875393],[122.22917728000006,29.97866445500007],[122.18474368600008,29.994452216000113],[122.14421634200002,30.00039297100012],[122.09896894599999,30.014471747000172],[122.07740319100012,30.01764557500014],[122.06527753999998,30.015936591000138],[122.0488387380001,30.007391669000025],[122.03467858200004,30.00202057500015],[122.03052819100006,29.99933502800017],[122.02572675900015,29.997259833000054],[122.01905358200011,29.997219143000066],[122.01050866000017,30.00031159100014],[122.00961347700009,30.004339911000116],[122.01172936300011,30.00844961100007],[122.01221764400006,30.01141998900009],[122.0112410820001,30.015082098000118],[122.0135197270001,30.02582428600006],[122.01221764400006,30.031927802000137],[122.00879967500006,30.033392645],[121.99545332100016,30.03656647300006],[121.99170983200021,30.038072007000114],[121.97681725400017,30.05365631700003],[121.97339928500017,30.059963283000158],[121.97185306100003,30.067694403000147],[121.97380618600006,30.072577216000028],[121.97730553500016,30.077337958000115],[121.98031660200014,30.08462148600013],[121.98080488400015,30.09007396],[121.97803795700011,30.107082424000154],[121.96550540500019,30.129706122000115],[121.96314537900004,30.142401434000174],[121.97461998800006,30.148016669000175],[122.08741295700005,30.147528387000175],[122.103282097,30.143703518000063],[122.11744225400005,30.135931708000083],[122.13233483200005,30.12376536700019],[122.14079837300014,30.121323960000055],[122.16480553500016,30.12051015800013],[122.16976972700004,30.117254950000092],[122.17359459700005,30.102240302000084]]],[[[122.39991295700017,30.274603583000086],[122.40772545700021,30.265936591000084],[122.41065514400006,30.254706122000087],[122.40853925900014,30.243963934000146],[122.39584394599997,30.239447333000115],[122.38453209699999,30.250148830000125],[122.38355553500006,30.261542059000092],[122.380625847,30.26373932500009],[122.37501061300021,30.26215241100006],[122.35718834700006,30.247748114],[122.34571373800011,30.241929429000137],[122.32911217500022,30.239081122000083],[122.31568444100007,30.240301825000117],[122.30534915500006,30.240139065000147],[122.29476972699999,30.23672109600015],[122.28337649800002,30.235256252000095],[122.27759850400018,30.235541083000115],[122.27833092500012,30.240627346000124],[122.287445509,30.247788804],[122.30250084700012,30.252101955000096],[122.31299889400005,30.259955145000063],[122.31861412900015,30.268377997000027],[122.32398522200005,30.272162177000137],[122.33187910199997,30.27366771],[122.34205162900004,30.27362702],[122.38257897200016,30.277167059000178],[122.39991295700017,30.274603583000086]]],[[[122.21452884200006,30.24730052300002],[122.20232181100019,30.241929429000137],[122.1879988940001,30.243638414000046],[122.17408287900004,30.247992255000145],[122.13770592500022,30.2546247420001],[122.114024285,30.26508209800009],[122.07357832100008,30.291408596000096],[122.08399498800006,30.302435614000146],[122.08790123800004,30.30565013199999],[122.09571373800016,30.310695705000125],[122.10417728000019,30.314154364000117],[122.12208092500022,30.319281317000144],[122.14722741000004,30.321478583000115],[122.15284264400023,30.322699286000145],[122.16602623800006,30.33169179900007],[122.19467207100016,30.338568427000084],[122.21143639400005,30.346625067000033],[122.22510826900012,30.332342841000024],[122.21876061300004,30.326076565000065],[122.22046959700016,30.320705471],[122.22787519600016,30.316351630000113],[122.23878014400023,30.31313711100016],[122.20386803500004,30.291408596000096],[122.20386803500004,30.285142320000045],[122.22380618600012,30.278876044000086],[122.23194420700023,30.277736721000153],[122.21957441499997,30.270453192000147],[122.21705162900015,30.262518622000172],[122.21753991000017,30.254584052000112],[122.21452884200006,30.24730052300002]]],[[[122.290782097,30.47166575700008],[122.29948978000019,30.471340236000135],[122.31128991000016,30.47264232000005],[122.33741295700021,30.458482164000134],[122.34880618600019,30.460638739000114],[122.36915123800006,30.476996161000145],[122.36850019600004,30.463202216000028],[122.37468509200018,30.457342841000084],[122.38542728000013,30.45620351800015],[122.39893639400005,30.45648834800009],[122.41098066499998,30.45213450699999],[122.4165145190001,30.441595770000117],[122.42310631600017,30.414943752000013],[122.40406334700012,30.41864655200014],[122.36378014400013,30.433417059000035],[122.3479923840001,30.435980536000116],[122.30600019599999,30.42316315300009],[122.28541100400017,30.422064520000145],[122.2727970710001,30.435980536000116],[122.27735436300011,30.436712958000058],[122.28711998800016,30.442206122000087],[122.27800540500007,30.445746161000084],[122.27377363400015,30.451361395000063],[122.2727970710001,30.459295966000056],[122.2727970710001,30.469468492000157],[122.27662194100017,30.47980377800009],[122.28003991,30.482611395000145],[122.28711998800016,30.483140367000104],[122.290782097,30.47166575700008]]],[[[122.47291100400017,30.717230536000145],[122.4843856130001,30.714667059000035],[122.49634850400005,30.71678294500005],[122.50196373800021,30.71898021000014],[122.50961347700016,30.721177476000136],[122.52458743600019,30.72357819200009],[122.5293074880001,30.72077057500003],[122.52637780000012,30.714178778000147],[122.53109785199999,30.704413153000118],[122.52475019600014,30.70180898600002],[122.49317467500005,30.703111070000105],[122.48731530000022,30.701849677000027],[122.47437584700006,30.702582098000118],[122.46656334700005,30.69912344000012],[122.46306399800002,30.696356512000182],[122.46070397200018,30.694037177000112],[122.45525149800007,30.693996486000017],[122.44516035199999,30.69676341400016],[122.43197675900015,30.697984117000185],[122.42725670700021,30.70392487200003],[122.43262780000005,30.714829820000105],[122.43474368600019,30.727118231000148],[122.42920983200004,30.738023179000137],[122.429942254,30.74306875200007],[122.44076582100006,30.74103424700003],[122.4580184250001,30.73065827000012],[122.47291100400017,30.717230536000145]]],[[[121.85108483200007,31.29393138199999],[121.83472741000006,31.29254791900011],[121.82341556100008,31.302394924000126],[121.81324303500004,31.320786851000076],[121.79420006600006,31.368801174000154],[121.80445397200006,31.374701239],[121.83773847700016,31.3751488300001],[121.85377037900005,31.372992255],[121.86784915500017,31.36619700700005],[121.87794030000025,31.354315497000112],[121.88184655000023,31.336615302000023],[121.87745201900005,31.319647528000036],[121.86622155000018,31.304185289000102],[121.85108483200007,31.29393138199999]]],[[[121.78003991,31.325181382000057],[121.76636803500017,31.320624091000113],[121.75163821700018,31.330511786000116],[121.72046959700012,31.357733466000024],[121.59880618600006,31.429144598000097],[121.58448326900005,31.441392320000052],[121.59115644600003,31.445868231000116],[121.60254967500005,31.444240627000095],[121.61817467500005,31.443793036],[121.69125410200016,31.41917552300002],[121.7255965500001,31.402736721],[121.74594160199999,31.38849518400009],[121.76238040500019,31.373765367000104],[121.77418053500016,31.359198309000178],[121.78223717500012,31.3417829450001],[121.78003991,31.325181382000057]]],[[[121.91288969500025,31.456332207000017],[121.85137350400025,31.43917890500016],[121.81732579100017,31.446650375000086],[121.78335209000026,31.465686100000095],[121.73023522200006,31.48476797100004],[121.71016757599996,31.49507702699999],[121.68462982400015,31.506807045000027],[121.61468863000002,31.52158167500009],[121.57154381600017,31.52936432500009],[121.5413413520001,31.553785129000072],[121.5174563640002,31.568391911],[121.48462975400015,31.579901434000092],[121.40461395300011,31.613714639000147],[121.37552303300018,31.634133802000136],[121.34473717500023,31.64130280199999],[121.31446373800019,31.65558502800009],[121.30290774800002,31.671454169000114],[121.28589928500017,31.704046942000062],[121.22451110300018,31.737666620000184],[121.20557825800009,31.756618803000137],[121.18663053400005,31.774115982000023],[121.17628760400012,31.784322892000073],[121.18144309100005,31.795980353000132],[121.19516035200016,31.805243231000148],[121.21930074500014,31.8294727720001],[121.26406453299997,31.841076794000013],[121.32256352100003,31.829330658000075],[121.36208870500016,31.817608154000038],[121.38613317100005,31.811735768000073],[121.42388503800024,31.795639063000134],[121.47530402100018,31.7707699190001],[121.50096557900005,31.750328782000068],[121.53517581600013,31.728409827000135],[121.5710912300001,31.713752432000106],[121.60524304800018,31.691824392000157],[121.62570177100005,31.67575615300008],[121.64105310100014,31.665520354000037],[121.66322259500011,31.652351670000158],[121.72122670200022,31.63031279100009],[121.84407535199998,31.60794696800015],[121.91896634000013,31.578462856],[121.98008567500003,31.540295811000064],[121.98659839600023,31.503897262000137],[121.97785060400022,31.47777100200001],[121.91288969500025,31.456332207000017]]],[[[119.90137780000005,32.082464911],[119.90186608200005,32.073391018],[119.890310092,32.07538483300014],[119.85873457100016,32.10154857],[119.84351647200018,32.10814036700005],[119.81519616000006,32.115220445000105],[119.80486087300018,32.12030670800014],[119.79517662900017,32.12055084800009],[119.79200280000006,32.121771552],[119.78711998800011,32.129584052],[119.78834069100006,32.133612372000144],[119.79127037900017,32.13686758],[119.79200280000006,32.14227936400005],[119.7910262380001,32.16547272300009],[119.79883873800011,32.17869700700011],[119.80990644600016,32.18911367400001],[119.81934655000018,32.203762111000046],[119.78931725399998,32.211493231000034],[119.74984785200016,32.2280134140001],[119.71949303500016,32.24957916900003],[119.71615644600014,32.272650458000086],[119.75082441500003,32.29311758000013],[119.78532962300004,32.291693427000084],[119.81430097700004,32.275580145],[119.83285566500003,32.25214264500012],[119.87501061300004,32.15521881700006],[119.88070722700014,32.12518952],[119.90137780000005,32.082464911]]],[[[120.75879967500023,37.90753815300003],[120.75456790500003,37.89667389500015],[120.74659264400006,37.897894598000065],[120.73698978000019,37.904608466000106],[120.72632897200019,37.90884023600013],[120.72242272200016,37.919094143000066],[120.72706139400012,37.94765859600015],[120.73454837300007,37.94765859600015],[120.74838300900014,37.9387067730001],[120.75733483200011,37.92267487200003],[120.75879967500023,37.90753815300003]]],[[[120.62289472699999,37.948797919000086],[120.61841881600006,37.947007554000024],[120.61548912899998,37.948309637000094],[120.60938561300023,37.95502350500014],[120.60189863400014,37.969305731000034],[120.60678144600004,37.9798851580001],[120.61898847699999,37.981146552],[120.62582441500005,37.97256094000009],[120.62566165500006,37.958685614],[120.62289472699999,37.948797919000086]]],[[[120.72730553500006,37.96942780200011],[120.720469597,37.964016018000066],[120.70915774800002,37.96576569200006],[120.70053144600003,37.969875393],[120.69499759200014,37.97467682500009],[120.69092858200015,37.98143138200014],[120.68824303500017,37.98525625200015],[120.69019616000004,37.99062734600001],[120.70411217500012,37.98965078300013],[120.72006269600003,37.98094310100005],[120.72730553500006,37.96942780200011]]],[[[120.77328535199997,38.15973541900017],[120.76124108200011,38.15802643400015],[120.75456790500003,38.158189195000126],[120.74659264400006,38.161851304],[120.73878014400005,38.17560455900009],[120.74268639400007,38.18756745000003],[120.76042728000007,38.17047760600017],[120.77271569100004,38.16543203300016],[120.77328535199997,38.15973541900017]]],[[[120.80648847700004,38.288234768000116],[120.800059441,38.28750234600001],[120.79997806100002,38.29389069200012],[120.80274498800004,38.29840729400017],[120.80738366,38.304877020000085],[120.81983483200023,38.31366608300014],[120.833750847,38.31256745000009],[120.83619225400005,38.30426666900003],[120.82837975400004,38.29881419499999],[120.8243921230001,38.29832591400018],[120.82048587300007,38.29751211100007],[120.81332441500005,38.29376862200014],[120.80648847700004,38.288234768000116]]],[[[120.92457116000016,38.386867580000015],[120.92318769600003,38.383246161000145],[120.91724694100016,38.38442617400007],[120.91423587300008,38.38410065300015],[120.90756269600003,38.38515859600001],[120.90691165500007,38.39256419499999],[120.91781660200014,38.39545319200012],[120.92457116000016,38.386867580000015]]],[[[118.64873628100005,39.044651167],[118.59432056600004,38.972197399],[118.514308354,38.91944503100002],[118.50269895000022,38.91902775800006],[118.48027591300016,38.93481952200007],[118.49090040699998,38.94318689100005],[118.47069796600006,38.97055075399999],[118.46947714000018,39.00631855200014],[118.4784827450002,39.042857813000055],[118.4881931580002,39.05049224800014],[118.5263810740001,39.0466938820001],[118.55971776100014,39.003125154000045],[118.57781186700007,39.00861929800005],[118.610195595,39.034034371000146],[118.6287112130001,39.04855385900008],[118.61463708200009,39.067648967000125],[118.63274299100007,39.07458077300008],[118.6486724150002,39.05585067800003],[118.64873628100005,39.044651167]]],[[[123.19581139400006,39.0653343770001],[123.19556725400005,39.05206940300015],[123.18523196700014,39.04230377800003],[123.17253665500007,39.03367747600011],[123.1606551440001,39.02924225500014],[123.1499129570001,39.03656647300015],[123.14519290500019,39.043280341000084],[123.14812259200018,39.05634186400009],[123.15308678500017,39.062323309000085],[123.16488691500004,39.06049225500011],[123.16472415500007,39.06639232000005],[123.15919030000022,39.071682033000044],[123.15088951900016,39.07343170800011],[123.14332115999999,39.07583242400007],[123.14356530000025,39.08087799700009],[123.1681421230001,39.083929755],[123.17628014400012,39.0899925800001],[123.18067467500005,39.09194570500013],[123.184825066,39.08612702000009],[123.19581139400006,39.0653343770001]]],[[[122.3974715500001,39.165838934000035],[122.40259850400004,39.15912506700009],[122.388926629,39.15232982000008],[122.37631269600003,39.160589911000145],[122.35523522200013,39.15155670800014],[122.33399498800011,39.14630768400015],[122.32129967500023,39.16596100500003],[122.33057701900012,39.180121161000116],[122.35482832099997,39.19562409100014],[122.38257897200016,39.20831940300009],[122.40259850400004,39.21381256700012],[122.39291425899998,39.203802802000055],[122.38990319100016,39.19354889500012],[122.388926629,39.18707916900003],[122.3974715500001,39.165838934000035]]],[[[122.74195397200012,39.23607005399999],[122.73951256600016,39.222235419000086],[122.72559655000005,39.210028387000094],[122.69068444100017,39.193304755000085],[122.69214928500006,39.20140208500002],[122.692556186,39.20766836100016],[122.6936955090001,39.21377187700013],[122.69752037900018,39.22125885600012],[122.68360436300011,39.224310614],[122.63599694100004,39.228013414000046],[122.63599694100004,39.23427969],[122.66211998800006,39.232733466000134],[122.71859785200003,39.24188873900012],[122.74195397200012,39.23607005399999]]],[[[122.68441816500004,39.262193101000136],[122.64307701900005,39.25507233300008],[122.58619225400005,39.25800202],[122.53345787900017,39.27167389500014],[122.505056186,39.29694245000009],[122.53663170700023,39.29804108300014],[122.54656009200014,39.29694245000009],[122.58472741000016,39.284369208],[122.64389082099997,39.27850983300005],[122.66325931100012,39.272202867000104],[122.68441816500004,39.262193101000136]]],[[[121.35254967500022,39.48240794500008],[121.38843834700005,39.474514065],[121.41325931100019,39.47650788000014],[121.42253665500007,39.474514065],[121.44239342500025,39.46287669499999],[121.45045006600017,39.450262762000115],[121.44312584700018,39.44114817900011],[121.416270379,39.44033437700001],[121.416270379,39.433539130000085],[121.42554772200006,39.43012116100009],[121.43197675900014,39.424261786000116],[121.43555748800023,39.416205145],[121.43604576900012,39.40981679900007],[121.43360436300007,39.38580963700004],[121.42172285200003,39.37368398600013],[121.40349368600008,39.370591539000046],[121.35320071700019,39.37319570500013],[121.33692467500022,39.37738678600009],[121.33611087300001,39.387355861000074],[121.35425866000006,39.406195380000106],[121.37175540500017,39.41754791900008],[121.37964928500016,39.42487213700017],[121.38160240999999,39.433539130000085],[121.37525475400012,39.44236888200014],[121.36426842500023,39.44546133000004],[121.35189863399997,39.444281317],[121.34058678499999,39.44033437700001],[121.32732181100019,39.42763906500015],[121.31332441500004,39.408433335],[121.2961531910001,39.39142487200003],[121.27295983200005,39.385077216000084],[121.26441491000006,39.38690827000006],[121.2594507170002,39.39150625200001],[121.257578972,39.39964427300013],[121.2586369150001,39.41242096600017],[121.26172936300017,39.42780182500012],[121.265879754,39.43357982000008],[121.29476972700003,39.4433454450001],[121.30290774800002,39.44521719000009],[121.31104576900023,39.44794342700005],[121.32016035200003,39.45400625200012],[121.32471764400006,39.46076080900018],[121.32732181100019,39.468451239],[121.33130944100006,39.47577545800003],[121.34058678499999,39.48135000200001],[121.35254967500022,39.48240794500008]]],[[[123.02995853000006,39.507879950000174],[123.00570722700016,39.497300523000135],[122.97974694100017,39.49933502800015],[122.96436608200021,39.51544830900003],[122.96802819100016,39.54108307500009],[122.98975670700017,39.54950592700014],[123.01758873800011,39.544501044000114],[123.0400496750001,39.529730536000116],[123.02995853000006,39.507879950000174]]],[[[123.47140873300012,53.51900828100004],[123.48153731300023,53.51807810500015],[123.48551639800021,53.52598460000003],[123.48608483900009,53.543916321],[123.49476648000014,53.56009104499999],[123.51440352500016,53.56241648400011],[123.53528080300022,53.55461334200011],[123.54747644100016,53.540505676000166],[123.53936324100006,53.53704335600004],[123.5325936290002,53.53249583000008],[123.51957116700017,53.51999013300009],[123.54189538600022,53.5140990200001],[123.56091231300005,53.52417592400003],[123.59191817300015,53.55786895800018],[123.61429406800013,53.56334666],[123.6395638430001,53.551254374000095],[123.67775272700023,53.51999013300009],[123.70178226800019,53.510068258],[123.73216801000015,53.503763733000184],[123.8501969810002,53.49497874000009],[123.87655196200008,53.4886742150001],[123.97055139200019,53.455187887000086],[123.98972334900022,53.441493632000075],[124.01008386300022,53.41467356400009],[124.01737023900013,53.4070254520001],[124.02992761300007,53.399945781000085],[124.05566247600015,53.39488149],[124.06889164200005,53.38961049400016],[124.10025923700006,53.363358867000144],[124.12180830900003,53.352687684000145],[124.14025679600005,53.35780365000012],[124.15777510600016,53.370025126000044],[124.18221805900012,53.37855173800007],[124.20877974500016,53.38268585200008],[124.23270593300005,53.3816523230001],[124.25306644700018,53.37550282800014],[124.27539066600005,53.36470245400001],[124.29342574100022,53.35129242000006],[124.30474288000013,53.32904571600004],[124.32138269100012,53.309770406000084],[124.3258268640002,53.30599802700005],[124.34251835200011,53.272485860000145],[124.35993330900013,53.2594633990001],[124.38370446800016,53.24613088000008],[124.40819909700022,53.23569224100005],[124.45393273900007,53.22819915800004],[124.50049320500003,53.21367808000015],[124.52819177300013,53.21034495100015],[124.64022627800007,53.21034495100015],[124.65159509300015,53.208768820000145],[124.67867354400013,53.19933787000018],[124.68828536000002,53.193601787000105],[124.69639856000006,53.18375742600013],[124.69686364800022,53.17634185900012],[124.69557173700011,53.16980478900014],[124.69825891200004,53.1626476040001],[124.72016971900008,53.14882415800007],[124.74729984600017,53.14771311500014],[124.80135339400024,53.155154521000085],[124.82202396700009,53.14724802700012],[124.84812056500007,53.11368418400009],[124.8701347250002,53.10799977600006],[124.89623132400013,53.11766326999999],[124.89178715100005,53.134251404000096],[124.87917810100011,53.15386261100012],[124.88041833500016,53.17251780200009],[124.89767826400012,53.185514425000015],[124.91917566000009,53.193937683000016],[125.0194279380001,53.21073252400008],[125.07368819200022,53.212205303000175],[125.12743168100016,53.20654673300014],[125.42808516500023,53.09469309500004],[125.45640385000003,53.0908948780001],[125.4765059820002,53.0835051480001],[125.49950199400014,53.050613099000074],[125.52130944900009,53.042422384000034],[125.58404463700012,53.05890716600011],[125.62135502200023,53.062136943],[125.63799483300025,53.04614308700015],[125.65019047100017,53.023379619000146],[125.67861250800004,53.00568044000006],[125.73354455600023,52.98165090000013],[125.72429447400012,52.95276377400007],[125.71985030200018,52.94630422000004],[125.71106530800003,52.941214092000116],[125.68858606000012,52.936459860000134],[125.67887089100017,52.93323008200015],[125.6609391690001,52.919354960000085],[125.64708988500016,52.90090647400008],[125.64646976800016,52.884886780000144],[125.66869063300012,52.87796213800006],[125.69173832200023,52.88129526800016],[125.7364901120002,52.895790507000086],[125.83736250800015,52.90672007300016],[125.85694787700005,52.899046123000076],[125.86371748900005,52.88858164500014],[125.8618571370001,52.881450297000114],[125.8575163170001,52.87442230300009],[125.85694787700005,52.86431956000014],[125.86103031500026,52.85602549200008],[125.86743819200004,52.84935923300018],[125.97694055200016,52.76499745800005],[125.98526045800021,52.76453237000013],[126.00748132400017,52.77866587400017],[126.0178166100001,52.78238657700008],[126.06670251500023,52.783187562000094],[126.08804488100023,52.77541025800009],[126.10406457600018,52.754455465000014],[126.06603072100009,52.744171855],[126.04902917600023,52.73709218300017],[126.0351282150002,52.727118633000075],[126.06194828300025,52.69662953699999],[126.06861454300015,52.679886373000144],[126.05264652600013,52.672496644000134],[126.02768680800015,52.67117889400007],[126.00257206300013,52.66549448700012],[125.98277998900008,52.65304046700014],[125.97316817300022,52.6315689090001],[125.97730228700006,52.61076914500016],[125.99084151200023,52.58642954500014],[126.00923832300022,52.56839447100005],[126.02804854400014,52.56637909000009],[126.03952071200014,52.569660544],[126.05078617400012,52.5711849980001],[126.05910607900009,52.575499980000174],[126.0625167240001,52.58717885400012],[126.06861454300015,52.59531789200015],[126.08277388500014,52.593354187000116],[126.17036543800012,52.54759470700019],[126.21232670100012,52.53304779100013],[126.2104663490002,52.51142120400006],[126.20064782700014,52.4865390020001],[126.20033776900007,52.467082825000105],[126.2167708750002,52.46475738600019],[126.24679488100016,52.46584259100008],[126.2759920660002,52.463284608],[126.2889628500002,52.450029603000175],[126.2961975510001,52.435198466000045],[126.31268233300003,52.41742177300004],[126.34368819200019,52.391376852000136],[126.35071618700013,52.37690745100012],[126.34430830900018,52.35758046500016],[126.3157312420001,52.31621348100013],[126.34441166300022,52.30262257900013],[126.42120284000018,52.287300517000155],[126.43928959200011,52.275285747],[126.39205733300017,52.26435618100014],[126.31221724500007,52.22795013400004],[126.3093233650001,52.21386830700011],[126.3167130950001,52.19976064100008],[126.33283614100016,52.193378601000134],[126.35071618700013,52.191699117],[126.45329390500011,52.165628358],[126.4938082280001,52.16126169800013],[126.53117028800015,52.15265757200008],[126.55597497600009,52.130643412000026],[126.55132409700005,52.112970073],[126.51980147300017,52.061267802000046],[126.51442712500004,52.04871042900014],[126.51442712500004,52.04253509600006],[126.49158614200009,52.038788554000135],[126.46709151200005,52.031657207000094],[126.44735111500007,52.018789775000116],[126.43928959200011,51.99786082000013],[126.44605920400012,51.98253875700006],[126.64790734900018,51.741261496],[126.66242842600005,51.73343251600009],[126.7135880950001,51.723174744000104],[126.7157585040002,51.71749033600004],[126.72557702700017,51.708731182000164],[126.7279541430001,51.70304677400012],[126.72485355700009,51.69754323400004],[126.71787723900009,51.69092865000012],[126.71074589100026,51.686019389000094],[126.7073352460002,51.68563181600008],[126.7157585040002,51.66317840699999],[126.72454349800003,51.6495875050001],[126.72371667500025,51.63589325000008],[126.70397627800011,51.61359486900004],[126.67514082900007,51.58837677000015],[126.67689782700015,51.57659454300007],[126.70056563400018,51.562719422],[126.77559981300023,51.54576955200018],[126.80743249600012,51.53421986900007],[126.83037683200016,51.50812327100006],[126.80159305800012,51.477220765000155],[126.79270471200012,51.45905649800012],[126.78929406800009,51.43580210400002],[126.80030114800016,51.41895558700004],[126.82593265800014,51.41208262200016],[126.8768856200002,51.40988637300016],[126.8901147870001,51.40701833200007],[126.90194869000017,51.40099802700014],[126.90944177300004,51.39110199000008],[126.90892500900011,51.377020162000136],[126.8975045170001,51.36195648200005],[126.88029626500011,51.35622039800007],[126.86086592700022,51.35392079700016],[126.8434509690002,51.34937327100012],[126.82701786300005,51.338986308000116],[126.81415043200005,51.32493031899999],[126.8073291420001,51.30810964000001],[126.80898278900021,51.289066875000124],[126.82371057200022,51.265554098000145],[126.84587976100023,51.251472270000036],[126.86990930200001,51.251730652],[126.89068322800014,51.27149688700017],[126.89290531400003,51.28201304100012],[126.88918461100005,51.2893252570001],[126.88484379100024,51.295629781000045],[126.88530887900016,51.30289032000009],[126.89135502100011,51.31051259400006],[126.8993648680001,51.31650706],[126.9082532150002,51.321235453000085],[126.91729659100017,51.32472361300013],[126.93445316600005,51.328754375000024],[126.95460697500019,51.32958119800004],[126.97217696100009,51.324000143000134],[126.98116866100023,51.30885894800012],[126.97775801700018,51.29655995700007],[126.96793949500014,51.28154795400009],[126.94711389200009,51.258138530000124],[126.91631473800012,51.23276540200014],[126.90892500900011,51.221629131000114],[126.90515262900024,51.208115743000135],[126.90380904200012,51.19338796000015],[126.9054110110002,51.16426829100014],[126.90959680200008,51.14600067200016],[126.92298099800021,51.107915142000124],[126.92582320200009,51.086004334000066],[126.9317659920001,51.063783468000125],[126.94644209900017,51.04833221500002],[126.98116866100023,51.027687480000125],[127.03232832900014,50.97244537400012],[127.04710778800015,50.96722605399999],[127.11077315300022,50.93151763999999],[127.14425948100013,50.90350901300017],[127.22074060100013,50.78816721600004],[127.24110111500025,50.77467966700008],[127.26621586100018,50.7640859990001],[127.287351522,50.751011862000055],[127.29644657500009,50.73008290700006],[127.29551639900005,50.72279652900009],[127.29324263600019,50.715355123000066],[127.2898836680001,50.70837880500006],[127.28580122900009,50.702487692000076],[127.28228723200012,50.69483958000008],[127.28383752500017,50.68827667300009],[127.28709314000005,50.68202382400001],[127.28895349200015,50.67515085900014],[127.29494795800015,50.666417542000076],[127.32709069800003,50.63727203400005],[127.3439888920001,50.62776357000014],[127.35871667500011,50.605025940000175],[127.36708825800015,50.57779246000008],[127.36481449400017,50.55474477200012],[127.35685632300019,50.54461619100006],[127.33370528200012,50.52503082300014],[127.32362837800015,50.51376536100018],[127.31029585800016,50.488392233000084],[127.30264774600006,50.47759185900016],[127.28895349200015,50.46601633700011],[127.30466312700011,50.45144358400016],[127.34915653500009,50.426173808],[127.35850997000014,50.415115051000086],[127.35964685100024,50.39289418600005],[127.35871667500011,50.38131866500002],[127.35478926600003,50.37346384700008],[127.34574589000019,50.36442047200002],[127.33752933800022,50.352689921000106],[127.3318449300002,50.34018422500013],[127.33065637200015,50.32819529200007],[127.35463423700011,50.29863637400002],[127.40481205300013,50.275950419000154],[127.57839318800009,50.22055328400001],[127.59064050300013,50.20871938100002],[127.58981368000009,50.18639516300014],[127.58671309500006,50.16717153000012],[127.58061527600002,50.1491364540001],[127.57017663600006,50.130222880000176],[127.5066146240001,50.06345693000004],[127.48666752200009,50.02562978200014],[127.49441898600016,49.9731782030001],[127.52160079000024,49.94119049100011],[127.53400313300014,49.92248362200002],[127.53224613500007,49.90765248600009],[127.52087732000014,49.891787822000175],[127.51162723800016,49.869050192000095],[127.50671797700014,49.84429718100007],[127.50811324100019,49.8223346970001],[127.53865401200021,49.7899335740001],[127.64428064000016,49.76714426700012],[127.6799890550001,49.73918731800002],[127.68629358000011,49.71681142200004],[127.6869653730001,49.69887970000018],[127.689962606,49.68146474200013],[127.70360518500004,49.66063914100009],[127.72200199400011,49.64859853100002],[127.77000940000006,49.633870748],[127.78990482600008,49.62307037400008],[127.8096452240002,49.60710235600014],[127.83088423700009,49.59387318900003],[127.85465539500015,49.584881491000104],[127.90731368100015,49.58023061200013],[127.9206978760001,49.58110911100009],[127.93015466400007,49.58519154900007],[127.94080000800007,49.5958885700001],[127.94793135600011,49.60121124300004],[127.95547611600014,49.60301991800013],[127.9679301350002,49.60322662400007],[127.99159794100015,49.59873077400006],[128.01247522000014,49.58741363500009],[128.04689172400015,49.558268128000165],[128.06714888600018,49.54669260700002],[128.09247033800008,49.54157664000003],[128.19830367000023,49.538992819000114],[128.2250720630001,49.5418350230001],[128.24543257700023,49.551395162000105],[128.2678601480002,49.558784893],[128.32036340400018,49.54478057900009],[128.3447546800002,49.54798451800018],[128.3528162040001,49.55449574900013],[128.3650118410002,49.56974029600009],[128.37203983600014,49.575321350000095],[128.38351200400012,49.5793521130001],[128.55125370300013,49.58844716400007],[128.6286649980002,49.575321350000095],[128.6351762290002,49.57816355400017],[128.66618208900016,49.60947947199999],[128.67186649600006,49.61144317700003],[128.68674930900013,49.60322662400007],[128.7341882740002,49.584416402999985],[128.75950972500019,49.57780181900007],[128.78658817600015,49.575321350000095],[128.79692346200008,49.572479146000134],[128.80167769400018,49.56514109300004],[128.8032279870001,49.55516754200012],[128.80343469200014,49.54426381500015],[128.79950728400016,49.531861471000084],[128.79041223200002,49.5271072390001],[128.7792501220001,49.52509185900006],[128.76932824700015,49.520699361000155],[128.75413537600005,49.50245758099999],[128.75020796700008,49.48452585800014],[128.76012984200017,49.47088328100013],[128.78658817600015,49.46545725500006],[128.8098425710002,49.46871287000012],[128.85356083200014,49.48054677400013],[128.87919234200004,49.47971995100012],[128.9019299730002,49.47171010400014],[128.94709517400017,49.449540914000025],[128.99815149000014,49.44127268500007],[129.01458459500012,49.431092428000014],[129.0505513920002,49.37667714500013],[129.06688114500005,49.36163930300013],[129.0878617760002,49.352079163000056],[129.1153536380002,49.34877187100015],[129.13602421100018,49.35414622000012],[129.17116418500015,49.38034617100011],[129.19390181500015,49.389699605000075],[129.21787968000015,49.39078481100016],[129.24557824700017,49.38592722600005],[129.27234663900006,49.37528188100005],[129.31606490100003,49.34412099300009],[129.3409729410001,49.341175436000086],[129.36205692600012,49.349805400000136],[129.37321903500006,49.36985585600017],[129.37146203600017,49.41057688500014],[129.37869673700007,49.42504628600007],[129.40339807200016,49.430679017],[129.45507450400012,49.427268372000164],[129.48060266200005,49.42127390600014],[129.50241011600016,49.41078359],[129.51967004400015,49.39708933600017],[129.52773156800006,49.38484202100015],[129.5302120360001,49.36933909100004],[129.53207238800022,49.321538391000146],[129.5389970300001,49.30371002200009],[129.55181278500018,49.29048085600003],[129.5717598890001,49.27983551000001],[129.6191988530002,49.274254456],[129.66922163900009,49.27916371700003],[129.7111829020001,49.27415110300008],[129.73505741400018,49.23890777600009],[129.73753788300016,49.20547312400011],[129.74177535100003,49.19570627800006],[129.75562463400016,49.18428578700015],[129.7759851490001,49.17756785100012],[129.8246643470002,49.17415720600009],[129.84151086400018,49.16718088800012],[129.84543827300016,49.15405507400014],[129.84151086400018,49.10919993100005],[129.8624914960001,49.10651275600012],[129.88316206900012,49.099794821],[129.92067915900012,49.08186309900013],[129.91168745900006,49.05928049700018],[129.9134444580002,49.03954010000002],[129.92646692000008,49.025690816000164],[129.97421594300025,49.015148825],[129.9968502200002,49.002384746000025],[130.03746789600015,48.97199900300008],[130.20179895100006,48.88259877500009],[130.2493412680001,48.86451202400015],[130.2935762940001,48.87014475500011],[130.33812137900023,48.88533762600003],[130.38680057800016,48.89629303000011],[130.43971724500014,48.896499736000166],[130.4653487560001,48.891332093000145],[130.47620080600015,48.87949819000015],[130.48663944500018,48.86368520200013],[130.51165083900017,48.855520325000114],[130.5408996990002,48.853453268000166],[130.56487756400023,48.85588206000013],[130.62492557800024,48.87433054600013],[130.62528640000005,48.87435952800005],[130.65066044100016,48.876397604000104],[130.67432824800008,48.87081654899999],[130.67649865800016,48.85743235300005],[130.66668013600008,48.84146433500011],[130.6278194580002,48.79604075100015],[130.53325158700014,48.63579213500013],[130.5297375900001,48.61625844300012],[130.54079634600012,48.59835256000015],[130.56239709500005,48.58814646399999],[130.5863749600001,48.583443909000025],[130.6076656500001,48.57672597300008],[130.62017134600015,48.56049957300017],[130.62079146300013,48.549311626000026],[130.61479699800012,48.53016550700012],[130.61345341000006,48.51946848600012],[130.61572717300024,48.50809967100004],[130.6243054610001,48.488359274000075],[130.62637251800007,48.48226145500011],[130.63929162700006,48.47724884100013],[130.71587609900013,48.499056295000074],[130.7442981370002,48.497325135000025],[130.7589742430001,48.48572377500015],[130.75959436100007,48.46792124500003],[130.7464685470001,48.447793275000045],[130.73830367100007,48.42980987600005],[130.74326460800003,48.41159393400001],[130.76362512300014,48.38296519000012],[130.7737537030001,48.36423248300004],[130.7796448160001,48.356377665000096],[130.79029016100017,48.34821279],[130.80341597500015,48.342735087],[130.81447473200012,48.33997039900005],[130.82212284300013,48.33376922600014],[130.82512007700015,48.31777537100011],[130.82398319500024,48.294159241],[130.81943566900011,48.28188608800015],[130.773857056,48.24418813100011],[130.76889611800007,48.236746725],[130.76362512300014,48.225274556999985],[130.7527730720001,48.18961781900002],[130.7464685470001,48.18437266100007],[130.72951867700024,48.17796478300012],[130.70729781100013,48.16336619100015],[130.6747416590001,48.135926006000105],[130.66337284400018,48.11644399000003],[130.66481978400012,48.102052104],[130.67091760300016,48.08657501200009],[130.6747416590001,48.063940735000145],[130.68238977100017,48.050349834000066],[130.85736617100008,47.927773336000044],[130.9069755460001,47.88426178000013],[130.94170210800021,47.82059641500002],[130.94232222500003,47.78982310000008],[130.93829146400012,47.751091614000146],[130.94180546100014,47.71796702100015],[130.96567997300022,47.703936870000135],[130.9834566650001,47.70003529899999],[131.0233508710002,47.68228444500015],[131.04412479700014,47.67722015400007],[131.0843290610001,47.67512725900009],[131.1038627530002,47.6765483600001],[131.12918420400015,47.68122507800017],[131.1672180590002,47.697141419],[131.21010949700016,47.70920786500007],[131.41836552000015,47.74261667900005],[131.44089644400006,47.74116973900006],[131.47500288900014,47.734477641000026],[131.50776574700004,47.72153269400012],[131.53794478400013,47.70321339900012],[131.5774255780002,47.66856435200013],[131.58476363200023,47.664688619000074],[131.59396203700024,47.662311503000026],[131.60326379400018,47.66153635700011],[131.61246219900025,47.66200144500014],[131.62166060500024,47.66381012000012],[131.6306523030001,47.66685902900015],[131.6835689700001,47.694609274000086],[131.7029993090001,47.69615956700012],[131.7804106040002,47.679106344],[131.79901412000007,47.679364726000145],[131.8359110920001,47.68453237000007],[131.85461796100017,47.68406728200013],[131.86484989400006,47.68156097400005],[131.89430546100007,47.67001129200012],[131.90350386600008,47.66809926400001],[131.91404585800004,47.66763417600008],[131.9244844980002,47.668926087000116],[131.93295943300015,47.672233379000104],[131.95735070800018,47.686935323000014],[131.96654911400014,47.690010071000145],[132.02535689300024,47.69786488900008],[132.08922896300012,47.69476430300013],[132.11703088400017,47.68944163000002],[132.16167932100018,47.690010071000145],[132.18896447800003,47.69564280200008],[132.2021936450001,47.700500386],[132.2507694910001,47.725356751000064],[132.2644120690002,47.72884491000009],[132.3324182540001,47.73651886],[132.36652469900017,47.73533030200015],[132.40063114500012,47.729800924000145],[132.4532377530002,47.710525615000115],[132.47576867700005,47.70675323500011],[132.5246545820001,47.7075283810001],[132.5364368090002,47.711068217000054],[132.54718550700014,47.716778463000125],[132.55669397000023,47.723496399000155],[132.57416060400018,47.73959360800002],[132.58036177600013,47.747991028000015],[132.5823254800001,47.756130066000125],[132.58077518800013,47.76483754499999],[132.57364384000013,47.78222666400002],[132.57385054500014,47.788350322000085],[132.5764343670002,47.794241435000075],[132.58139530400015,47.80070098900001],[132.60744022700013,47.827624410000126],[132.65880660100018,47.869818218000106],[132.66800500500008,47.881316224000116],[132.67234582600022,47.89444203700002],[132.6714156500001,47.902503560000085],[132.66810835800018,47.909324850000026],[132.6640775960001,47.91583608100002],[132.66087365700005,47.92301910400006],[132.6603568930001,47.931339010000116],[132.66314742000023,47.938677063000014],[132.66810835800018,47.94513661700007],[132.67461958900014,47.95061431900014],[132.6890889900001,47.957693990000095],[132.70572880100022,47.96038116400002],[132.7224719650001,47.958934225000014],[132.73818160000022,47.9541283170001],[132.76257287700017,47.9393746950001],[132.77487186700003,47.93376780199999],[132.78965132700003,47.932734274],[132.80587772700014,47.93619659400004],[132.82065718600015,47.942371928000014],[132.83336958800012,47.95159617100002],[132.85362675000013,47.97614247700001],[132.86478885900024,47.985650940000156],[132.94033980300017,48.02257375100011],[132.94075321400018,48.02670786600014],[133.0246757410001,48.05244272900001],[133.03284061700012,48.056757711],[133.03935184800017,48.061511943000184],[133.04400272700005,48.06621449800015],[133.0475167240002,48.07164052300014],[133.05103072100022,48.078539327000115],[133.06095259600013,48.09184600900012],[133.07542199700018,48.10091522200009],[133.09195845600007,48.106780497],[133.1851827390001,48.124815572999985],[133.2237333580001,48.12597829300002],[133.26280074100015,48.11944122300004],[133.2727226160001,48.115152079000055],[133.29070601500015,48.104403381000125],[133.30145471300008,48.10127695699999],[133.32367557800004,48.100114237000085],[133.3794861250001,48.10631541000008],[133.39622928900022,48.10592783700015],[133.41317915900007,48.10295644100013],[133.45079960100017,48.09138092100001],[133.46371871000017,48.089520569000015],[133.52438684100017,48.095437521000015],[133.5440238860002,48.10150950100014],[133.5599402270001,48.11329172800005],[133.5720325120001,48.132773743000044],[133.57782027200008,48.14502105700008],[133.58484826700018,48.15535634399999],[133.59383996600005,48.16419301399999],[133.6055188400002,48.1716344200001],[133.62143518100012,48.17726715100004],[133.65450809700022,48.18390757300013],[133.6702177330001,48.18997955300009],[133.68551395700004,48.202071838000094],[133.7077348230001,48.23165659600012],[133.72127404800008,48.244756572000156],[133.73791386000008,48.251086935],[133.79661828600004,48.25059600800007],[133.81480839000005,48.255117696000084],[133.8495349530002,48.269302877000044],[133.86762170400013,48.27431549100011],[133.87754357900022,48.27529734400018],[133.93697147700007,48.27328196200013],[133.96642704300015,48.27865631100009],[133.98244673700012,48.28516754200013],[134.02482141100018,48.31506235799999],[134.04063440000013,48.32247792600002],[134.0571708580002,48.32718048200017],[134.11608199100013,48.33519032800014],[134.2062056890002,48.359659119000085],[134.36712609900022,48.37704823900013],[134.38634973200024,48.38133738300009],[134.40547001200017,48.37033030200008],[134.4531156830001,48.344182027],[134.47130578700015,48.33989288300005],[134.48980594900016,48.33916941400003],[134.50820275900017,48.34258005800014],[134.52587609900016,48.348987936000086],[134.54261926300003,48.35730784100014],[134.56949100800003,48.315527446000104],[134.61134891800012,48.28542592400014],[134.66116499900014,48.26697743700011],[134.70085249900004,48.261525574000025],[134.71873254400018,48.26341176400014],[134.7030229090001,48.252559713],[134.68741662600016,48.219848531000096],[134.68297245300008,48.13551259400001],[134.66271529200003,48.107969056000016],[134.64793583200003,48.10218129500005],[134.58644087700023,48.061150208000086],[134.5672172450002,48.04037628200013],[134.55936242700005,48.00952545200006],[134.56690718600012,47.98549591100014],[134.6013236910001,47.94412892700011],[134.58768111200007,47.92591298400005],[134.59904992700015,47.9106942750001],[134.6227177330001,47.90022979800007],[134.64576542200015,47.89630238900009],[134.6577543540001,47.88669057200009],[134.66757287700008,47.864676412],[134.67408410700014,47.840440166000015],[134.6764612230002,47.82431711900013],[134.69651167900022,47.79506825800008],[134.76978885900022,47.741014710000016],[134.7651379800001,47.718173727000085],[134.7725793870002,47.71073232100017],[134.7254504810002,47.66324167900008],[134.71397831300018,47.65613617000004],[134.69289432900015,47.64890146900008],[134.68669315600008,47.63115061500015],[134.68617639200014,47.608852234],[134.68266239500016,47.58784576400007],[134.66819299400007,47.573996481000115],[134.62426802600012,47.549631043000105],[134.61496626800025,47.536634420000084],[134.6041142180002,47.527720236000064],[134.5606026620002,47.481805725000086],[134.5568819590001,47.4711862190001],[134.53528121000014,47.46557932600017],[134.50045129400016,47.43891428700012],[134.48463830600016,47.43018097000005],[134.4719259030002,47.428630676000026],[134.4365792240002,47.42981923500015],[134.41497847500014,47.439224345000106],[134.40185266100016,47.43736399300009],[134.3890369070002,47.43276479100014],[134.37818485600022,47.43018097000005],[134.35400028500024,47.42935414700004],[134.33260624200014,47.42635691400001],[134.31286584500018,47.420129904000035],[134.29281539000024,47.409717103],[134.27948287000012,47.39780568500005],[134.25746870900005,47.36723907500006],[134.2450663660001,47.355095113000125],[134.20300175000014,47.338429464000036],[134.18357141100014,47.327499899000046],[134.17550988800014,47.3104208380001],[134.1701355390002,47.28680470800001],[134.16000695900007,47.27163767500018],[134.15411584500023,47.257891744000126],[134.16186731000005,47.238435568000156],[134.16837854100007,47.230580749000026],[134.1864652920002,47.21370839500004],[134.19318322800007,47.21047861700005],[134.19721398900018,47.20533681300016],[134.19556034400003,47.193709616000106],[134.18977258300006,47.172935689000056],[134.1987642830001,47.15554657000003],[134.21623091700022,47.13766652400006],[134.2272896730002,47.11774526000006],[134.2171610930001,47.09443918900003],[134.19711063600013,47.08516326900012],[134.14574426300018,47.081184184000115],[134.12424686700015,47.07051300100012],[134.11422164000012,47.05581105600014],[134.08734989400003,46.99881195100015],[134.08083866400014,46.99268829400007],[134.07412072800005,46.98814076800014],[134.0691597900001,46.98124196400006],[134.06698938000002,46.967780253000015],[134.06698938000002,46.92680084300018],[134.06275191300014,46.90685374000016],[134.02048059100005,46.83404164600007],[134.01665653500012,46.8194688920001],[134.0214107670001,46.80613637300008],[134.03588016800015,46.789599915],[134.04466516200003,46.772004090000124],[134.04177128200004,46.75270294200008],[134.0258549400002,46.71081919300009],[134.01479618300016,46.665033874000144],[134.00528772000018,46.64583608000005],[133.9984976210001,46.637704225],[133.98802779200005,46.625165507000034],[133.9673572190002,46.611187033000036],[133.92033166600007,46.59033559200016],[133.9024516200001,46.57364410400011],[133.8988342700001,46.563257142],[133.89635380100012,46.538194072000074],[133.89190962700005,46.528969828000086],[133.84932824800015,46.48029063000014],[133.84581425000016,46.470652975000135],[133.84777795500023,46.456984558000116],[133.8543925380002,46.44465972900017],[133.86152388500008,46.44104237900011],[133.87041223100005,46.44047393800004],[133.88188440000016,46.43711497000014],[133.9002812100001,46.426572978000145],[133.92146854700016,46.410139872000016],[133.93387089100008,46.39076121100014],[133.92601607300017,46.37130503400006],[133.88085087100004,46.353657532000156],[133.86338423700025,46.33929148400016],[133.87444299400025,46.31978363100013],[133.88519169200018,46.326579082000094],[133.89635380100012,46.32719919900016],[133.90699914600012,46.32247080500018],[133.91599084500015,46.31298818],[133.893769979,46.30187774700009],[133.8940800380001,46.291335754000116],[133.90193485600005,46.278054912000115],[133.9024516200001,46.25898630800013],[133.89004927600004,46.25082143200002],[133.86958540900005,46.244516907],[133.8553227140001,46.236558737000124],[133.8609037690001,46.22358795200002],[133.85284224500012,46.21754180900017],[133.83661584500018,46.20043691000002],[133.83010461500012,46.19687123700005],[133.8212162690002,46.20012685200014],[133.81294803900008,46.21418284100015],[133.80623010300022,46.21738678000004],[133.79351770100018,46.21428619400008],[133.78648970600008,46.20668975900013],[133.7817354740001,46.19671620700002],[133.77512089000018,46.186690979],[133.766025839,46.17795766200011],[133.74101444500005,46.15904408800016],[133.72003381400012,46.15020741799999],[133.69874312400023,46.14901886000014],[133.68737430900015,46.141835836],[133.69636600800015,46.1150157680001],[133.7193103440002,46.07930735300003],[133.72003381400012,46.06375274700018],[133.69481571500015,46.02277333600016],[133.6581254480001,45.93450999000008],[133.64985721900013,45.92784373000016],[133.62773970600014,45.93776560500005],[133.6176111250002,45.93626698800013],[133.6100663660002,45.9298074340001],[133.60696578000002,45.91947214800008],[133.6061389570002,45.90510610000008],[133.60303837100005,45.898646546000016],[133.58650191300015,45.888414612000055],[133.58443485500018,45.88412546900018],[133.58608850200014,45.87983632500011],[133.58588179500018,45.87632232700015],[133.5796806230001,45.874772034000145],[133.5700688070002,45.87642568000008],[133.56407434100007,45.88055979400012],[133.5591134030001,45.885210673000174],[133.55229211500014,45.888414612000055],[133.53162154100013,45.888156230000064],[133.51436161300015,45.87926788400016],[133.50268273900016,45.86200795500015],[133.49834191900018,45.837203268000124],[133.49400109900003,45.83332753500018],[133.48490604700012,45.82841827400013],[133.47725793500015,45.82009836900009],[133.47725793500015,45.805835673],[133.48376916600003,45.796585592],[133.50340621000024,45.78764556900016],[133.51136438100005,45.778550517],[133.48490604700012,45.768473613000154],[133.47085005700004,45.72888946600001],[133.44304813700012,45.70966583300016],[133.45162642400018,45.69917551700003],[133.47663781800017,45.69359446200012],[133.4877999270001,45.686669820000034],[133.49152063000022,45.67338897800012],[133.4828389900001,45.66289866200015],[133.45669071500006,45.648790995000056],[133.46216841700007,45.64403676400006],[133.47178023300015,45.632461243000094],[133.47725793500015,45.62770701100011],[133.45844771400007,45.62264272100013],[133.44201460800016,45.6206273400001],[133.42764856000016,45.61525299100013],[133.41514286300017,45.60042185499999],[133.4251680910002,45.58042307500007],[133.4134892180001,45.573343405000124],[133.37483524600012,45.57308502200006],[133.3625362550001,45.56791737900006],[133.33029016200013,45.54926218700008],[133.2988708900002,45.542079163000054],[133.2716890870001,45.52843658500014],[133.2408899330002,45.52326894200003],[133.2021326090002,45.511280009000174],[133.18921350200017,45.50414866200005],[133.17980839100014,45.49381337500013],[133.14022424400017,45.435419007000164],[133.13319624900018,45.41960601900017],[133.12875207500016,45.40275950199999],[133.12720178300006,45.385086161000075],[133.10188033100016,45.287210999000095],[133.10673791500008,45.264628398000134],[133.0975395100002,45.243544413000116],[133.1065312100002,45.21470896400008],[133.12069055200007,45.18344472300002],[133.12720178300006,45.155384420000175],[133.1252380780002,45.14132843100005],[133.1215173750002,45.13125152600012],[133.11541955600015,45.12303497300008],[133.098779745,45.10779042600013],[133.0733549400002,45.09063385000009],[133.0496871340001,45.08174550400015],[133.0238489180001,45.05833608000002],[132.99263635200015,45.04846588200003],[132.96617802000017,45.02888051400011],[132.9533622640001,45.02438466400018],[132.92121952300025,45.02789866200014],[132.83977746600024,45.05916290300003],[132.40471358250008,45.1464960735001],[131.96964969900003,45.233829244],[131.9688228760002,45.233984274000036],[131.94990930200007,45.23972035700008],[131.93151249200017,45.248712057000134],[131.91456262200015,45.26013254900012],[131.9004032800001,45.272896627000094],[131.88841434800023,45.29113840700016],[131.88045617700018,45.309896952000074],[131.87074100800024,45.326330058000124],[131.85306766800014,45.33759552],[131.81803104700023,45.33278961200007],[131.78526818900005,45.30472930900005],[131.72315311800006,45.21532908200005],[131.71126753800004,45.208662822000136],[131.6669291590001,45.20959299800002],[131.64450158700018,45.20644073600015],[131.62775842400006,45.19848256500007],[131.61514937400003,45.18494334000012],[131.6052274990001,45.16463450100009],[131.60491744000004,45.14742625000012],[131.62238407400017,45.12365509100006],[131.61980025300008,45.10365631100002],[131.60905155500015,45.08970367400003],[131.47148889200017,44.99663442000003],[131.4657011310002,44.99322377600011],[131.45216190600004,44.98371531200003],[131.44296350100004,44.97131296900007],[131.43376509700013,44.961287740000145],[131.41950240100007,44.95896230100003],[131.35035933500015,44.968005677000164],[131.3294820560001,44.967643942000066],[131.31315230400006,44.96366485599999],[131.29992313700015,44.956481832000044],[131.2589954030002,44.928163147000035],[131.24462935400012,44.92216868100011],[131.17651981600014,44.90341013600003],[131.15801965400019,44.90170481400004],[131.14044966600014,44.906820781000036],[131.12360314900016,44.91560577400013],[131.11006392400017,44.91953318300009],[131.0958012290001,44.91911977100007],[131.05156620300025,44.90904286700005],[131.0453650320001,44.905425517000154],[131.04112756400005,44.89777740500007],[131.0420577400001,44.882481181000045],[131.03885380100022,44.87457468700008],[131.02479781200012,44.862430726000085],[131.0082613530001,44.85628123000011],[130.99027795500004,44.85416249600003],[130.97157108600004,44.85405914400009],[130.9334338790001,44.841708476000136],[130.93012658700016,44.82496531200009],[130.97157108600004,44.7756143190001],[131.0075378830002,44.75732086200012],[131.02138716700009,44.74688222300007],[131.06582889900005,44.68202830100016],[131.16515100150008,44.36811981300014],[131.2644731040001,44.05421132499999],[131.26147587100004,44.04609812400015],[131.25155399700012,44.04155059900013],[131.2353275960002,44.031111959],[131.21775761000006,44.01607411700003],[131.21310673100007,44.006875712000024],[131.21290002500018,43.99323313400011],[131.20669885300012,43.97478464800009],[131.20793908700006,43.959488424000035],[131.21837772700007,43.92587290500002],[131.21734419800012,43.90848378599999],[131.19284956900015,43.86024383500008],[131.17279911300002,43.79911061600016],[131.17031864400022,43.78110138000006],[131.1778634030001,43.72549753800017],[131.1749695230001,43.701467998000126],[131.17507287600014,43.69376820900005],[131.17744999200025,43.68446645100012],[131.18540816300006,43.666328024000094],[131.1879919850001,43.656664530000064],[131.18726851400007,43.64798289000011],[131.1814807540001,43.62984446300008],[131.18024051900014,43.62302317300011],[131.1824109300002,43.61403147400007],[131.1907825120002,43.59589304600014],[131.19202274600005,43.58863250700007],[131.18571822100003,43.57444732700013],[131.16566776500017,43.54902252300012],[131.16070682800014,43.532770284000016],[131.16690800000012,43.521065573000115],[131.2528484630001,43.46916859100004],[131.26168257700024,43.46383392300008],[131.27429162600018,43.45119903600012],[131.27780562300015,43.43848663300018],[131.28183638600015,43.39314056500017],[131.28090621000007,43.38022145600014],[131.26964074800006,43.36474436500005],[131.2577551680001,43.3557268280001],[131.24793664600023,43.34420298200017],[131.2424589440002,43.32141367600018],[131.24204553300004,43.283767395000055],[131.23770471200024,43.26583567400017],[131.22550907400014,43.25193471300009],[131.193056275,43.230799053000155],[131.1785868740001,43.21738901800002],[131.16907841000003,43.201705221000154],[131.1672180590002,43.18155141199999],[131.1749695230001,43.168399761],[131.1848913980002,43.15633331300002],[131.18985233600014,43.13915089900014],[131.18396122300024,43.12080576600006],[131.1693884680001,43.10780914400014],[131.1343518470001,43.089334819000115],[131.12660038300024,43.082384339000114],[131.12401656100016,43.075356344000014],[131.12298303300017,43.06773407000004],[131.11988244600005,43.05900075300018],[131.11244104000005,43.05186940600014],[131.09404423100003,43.04683095300008],[131.08546594300017,43.04210256000008],[131.07833459500014,43.0318189500001],[131.07523400900018,43.019597473000076],[131.07430383400006,42.99339752200014],[131.08277876900016,42.965233867],[131.09931522600004,42.935442403000096],[131.10303592900007,42.910431010000096],[131.07399377400017,42.896581726000036],[131.03947391800003,42.89800282900005],[131.02386763600023,42.89627166800007],[131.00877811700016,42.88689239500012],[131.0019568290002,42.87330149300011],[130.99957971300014,42.85875457800007],[130.99244836500012,42.84872935000014],[130.85622928900003,42.84976287800011],[130.81654178900013,42.86405141200011],[130.79432092300019,42.86906402600005],[130.76951623600021,42.86580841100009],[130.7568038330002,42.853276876000066],[130.74801884000019,42.8374897260001],[130.73489302600004,42.82449310300014],[130.73096561700007,42.82588836700013],[130.64911014900022,42.82893727700015],[130.58647831300019,42.817258403],[130.49098026600015,42.78082651800009],[130.40716109200017,42.73537709600005],[130.37966923100012,42.69667144800003],[130.40375044800024,42.677551168000136],[130.43806359900017,42.675303244000034],[130.4743404540002,42.679049785000025],[130.5038993740001,42.677809551],[130.5267403560001,42.665768941000024],[130.5511316330002,42.64561513300005],[130.57190555900016,42.6218181360001],[130.58430790200012,42.59889963900015],[130.5845146080001,42.568901469000096],[130.56756473800024,42.552752584000025],[130.5307711190001,42.53048004200014],[130.52519006400016,42.54923858700006],[130.51950565600012,42.58859019000006],[130.51650842300003,42.59936472700009],[130.50141890500018,42.6107852170001],[130.48415897600003,42.61001007099999],[130.4678292240001,42.600398254000154],[130.45511682200012,42.58515370700003],[130.47103316300004,42.56975413000005],[130.4679325770002,42.55489715600011],[130.452533,42.54934194000002],[130.43124231000004,42.561511739000096],[130.4263847250002,42.57210540800018],[130.4300020750001,42.59148407000005],[130.42772831200006,42.59936472700009],[130.42049361200012,42.60427398700004],[130.4127421470001,42.604635722000026],[130.4039571540002,42.604067281000155],[130.39300175000014,42.60623769200005],[130.3247888590001,42.65029185000013],[130.31714074800013,42.66739674899999],[130.26267378700013,42.708608704000156],[130.2430367430001,42.74336110500012],[130.24220992100007,42.78201507600003],[130.25647261600014,42.866893616000155],[130.23900598200012,42.90224029600007],[130.19384078000022,42.90820892300008],[130.14040734900018,42.90712371900009],[130.09875614500018,42.92151560500012],[130.1115719000001,42.929060364000165],[130.12252730300023,42.94332306000014],[130.130485474,42.95947194500003],[130.13358606000023,42.97272695000014],[130.12149377400024,42.981847840000015],[130.0943119720001,42.97693857800009],[130.04728641800003,42.96190073600009],[130.0082190350001,42.96055714900002],[129.99571333800012,42.96190073600009],[129.98134729000017,42.966732484000104],[129.9717354740001,42.9737346400001],[129.94155643700017,43.00362945600013],[129.93411503100006,43.00840952600013],[129.92067915900012,43.010269878000045],[129.9092069910001,43.008435364000135],[129.89070682800016,42.99941782700007],[129.87975142500002,42.996033020000155],[129.88409224500018,42.988514099000106],[129.89008671100015,42.98280385400007],[129.89773482300006,42.978747253000066],[129.9070365810002,42.976137593000075],[129.89329065000007,42.97153839100009],[129.8631116130001,42.968980408000036],[129.85174279800017,42.96190073600009],[129.8476086830002,42.95128123000002],[129.8466785080001,42.928233541000125],[129.84151086400018,42.9177949020001],[129.83417281100012,42.90748545400011],[129.79903283700006,42.83666290300006],[129.7950020760001,42.80648386600016],[129.78952437400008,42.79247955300015],[129.77350468000012,42.766951396000124],[129.7613090420002,42.74604827900005],[129.75727828000012,42.734705302000165],[129.75562463400016,42.72227712000007],[129.75758833900002,42.70364776600003],[129.76440962700022,42.696852315000065],[129.7745382090001,42.69333831800013],[129.78652714100016,42.68473419200008],[129.78756066900021,42.67685353600014],[129.77939579300013,42.67039398200008],[129.7722644460001,42.661660665],[129.77670861800019,42.647191264000085],[129.75107710800003,42.64292795800013],[129.74156864400007,42.629001160000044],[129.7462195230001,42.615513611000075],[129.7630660400001,42.61238718700003],[129.7630660400001,42.60623769200005],[129.73650435400017,42.58515370700003],[129.73144006400017,42.55091807100003],[129.7336104740002,42.511799011],[129.7288562420001,42.47585805300004],[129.70332808500015,42.442371724000125],[129.67118534400012,42.43792755200003],[129.6334615490001,42.44542063400014],[129.59170699100005,42.44795277900014],[129.59563440000002,42.4356021120001],[129.59449751800017,42.42221791700014],[129.5876762290002,42.411365866000104],[129.5631816000001,42.40410532700004],[129.5602877200001,42.39679311200014],[129.55946089700012,42.38700042700018],[129.55418990100023,42.37687184700003],[129.54530155500012,42.37131663000004],[129.53517297400006,42.36955963100014],[129.52680139200018,42.3730736290001],[129.52339074700012,42.38338307700009],[129.51708622300023,42.39095367400015],[129.48887089100018,42.402555034000116],[129.48246301300006,42.410719910000026],[129.4340938720002,42.44110565300009],[129.41879764900014,42.44105397599999],[129.40618859900022,42.435963847],[129.39543990100017,42.43020192500002],[129.3862414960001,42.428109029000055],[129.37208215400014,42.432553202000165],[129.36309045400012,42.44500722300013],[129.35213505000004,42.44795277900014],[129.3401461180001,42.445472311000074],[129.33859582500023,42.43836680100004],[129.34376346800016,42.42922007300014],[129.35213505000004,42.42061594700011],[129.33787235600008,42.414414775000054],[129.32650354000018,42.42676544199999],[129.31544478400016,42.42232126900008],[129.3070732020001,42.407619324000095],[129.30376591000018,42.389584249000094],[129.29663456200012,42.38723297100013],[129.24309777900012,42.37870636100003],[129.2360697840002,42.37436554000005],[129.23110884600024,42.36764760300004],[129.2280082600001,42.359198507000045],[129.22862837800008,42.35020680800009],[129.2342094330002,42.346563619],[129.2403072520002,42.34403147400012],[129.24227095600017,42.338734640000084],[129.23627648900006,42.32387766600014],[129.2261479090001,42.31814158100018],[129.19390181500015,42.31824493400002],[129.19390181500015,42.31077769000008],[129.2037203370002,42.3101575730001],[129.21240197700013,42.30775461800006],[129.22067020700004,42.30367218000005],[129.2280082600001,42.29772939100003],[129.2161226810001,42.29106313100011],[129.21415897700015,42.283699239000114],[129.2147790930002,42.27563771600004],[129.21116174300013,42.267007752],[129.20289351500017,42.26274444600012],[129.19214481700024,42.25985056600014],[129.18335982300007,42.254553732000105],[129.18077600100017,42.24310740200009],[129.1868738200002,42.23602773100008],[129.2093013920001,42.2346841440001],[129.21426232900015,42.22569244400016],[129.21116174300013,42.2199563600001],[129.2042371020002,42.21432362900007],[129.19638228400012,42.20918182400008],[129.17767541600014,42.19344635],[129.14801314300016,42.17370595300004],[129.11979781200003,42.14936635300002],[129.10553511600014,42.14210581500005],[129.08848189400018,42.14319102000006],[129.06471073400022,42.1537588500001],[129.06347050000002,42.136085511000104],[129.05334192000024,42.12285634400003],[129.02657352700018,42.1018757120001],[129.00890018800024,42.09508026200017],[128.9850256760001,42.09290985200008],[128.96383833800022,42.08851735500009],[128.95484663900018,42.07523651100008],[128.94006718000017,42.03536814400014],[128.9034802650001,42.02627309200007],[128.88317189700015,42.030408857000154],[128.81707727100013,42.04386891800005],[128.72095910700014,42.04758962100006],[128.70928023300016,42.03017466300004],[128.6825118410001,42.025730489000026],[128.60789107300005,42.03017466300004],[128.59755578700012,42.02712575300002],[128.58773726400014,42.01999440600015],[128.57368127500004,42.004310609000115],[128.5643795170001,42.000796611000155],[128.5533207610001,42.00663604800003],[128.54370894400006,42.00805714900004],[128.50236779900015,41.99609405500017],[128.48831180900012,41.99751515800007],[128.4539986580002,42.01033091200004],[128.4075932210001,42.008341370000025],[128.3871293540002,42.020692038000064],[128.3637716070002,42.026479797000135],[128.26196903500013,42.032861837000056],[128.10053186000007,41.99909128899999],[128.0546431890002,41.99831614200018],[128.03459273300015,41.993742778000055],[128.02146691900018,41.97981597900015],[128.02043339100018,41.96506235800014],[128.03996708200012,41.87958953900012],[128.04782190000006,41.863983256],[128.05764042200008,41.84984975200014],[128.09102339800006,41.84173655200014],[128.0970178630001,41.82261627200013],[128.14425012300015,41.75471344099999],[128.15489546700022,41.7337586470001],[128.1591329350001,41.711822001000044],[128.1860046790001,41.69290842700009],[128.22414188700023,41.66944732700004],[128.25091027900012,41.66011973100008],[128.26899703000007,41.64337656600004],[128.28139937300003,41.62299021500008],[128.28325972500016,41.605058492000026],[128.3030001220001,41.583406067000126],[128.2876005460001,41.54470041900014],[128.18569462100018,41.40445058200011],[128.14611047400015,41.37633860300018],[128.1039425050001,41.37912913000004],[128.11820520100017,41.39344350200003],[128.1039425050001,41.3995929980001],[128.0881295170001,41.388895976000086],[128.06415165200016,41.38843088800017],[128.04689172400015,41.39876617400007],[128.05061242700017,41.420728658000044],[128.0336625570001,41.413752340000045],[128.02384403500005,41.41147857700004],[128.0151623950001,41.41328725200013],[128.0115450450002,41.42434600900013],[128.01309533700012,41.4422777300001],[128.0123718670002,41.46010610000006],[128.00141646300014,41.47085479800016],[127.99273482300016,41.461139629000044],[127.98446659400021,41.454008281000185],[127.97423466100022,41.450339254000184],[127.94421065300017,41.47085479800016],[127.90359297800013,41.46625559500002],[127.88147546400013,41.460881246000056],[127.87186364800012,41.453749899000016],[127.86514571200011,41.43742014600018],[127.84886763600015,41.43132232700013],[127.82886885700024,41.43395782500012],[127.81036869300013,41.44356964100014],[127.7846338300002,41.43690338200004],[127.6902726650001,41.4389704390001],[127.66267745000019,41.446980286000084],[127.65812992400006,41.446566874000055],[127.64707116800004,41.43297597300007],[127.63833785000017,41.42987538700014],[127.63068973900019,41.43287262000014],[127.59751346900018,41.450339254000184],[127.55880782100016,41.45824574800004],[127.54475183100024,41.46889109300004],[127.54289147900025,41.49131866500012],[127.52583825700012,41.48434234600005],[127.50847497600002,41.48816640200006],[127.49100834100014,41.495401103000134],[127.47411014900015,41.49881174700006],[127.45710860200015,41.49472930900005],[127.44305261300022,41.48801137300001],[127.42734297800017,41.483102112],[127.40512211100013,41.48449737600008],[127.4013497320001,41.48682281500002],[127.39592370700021,41.49137034100012],[127.3884823000001,41.49602122],[127.37897383700013,41.49881174700006],[127.37111901900008,41.49808827800017],[127.35370406100006,41.492713928000015],[127.3442472740001,41.49131866500012],[127.30512821500021,41.49467763300014],[127.28636967000014,41.49901845300012],[127.26905806500021,41.50496124300004],[127.2751558840001,41.50733835900017],[127.28357914200008,41.512195944],[127.28978031500016,41.51855214500004],[127.28895349200015,41.52547678600011],[127.2814604090001,41.53105784100002],[127.2746907960001,41.530437725000134],[127.26745609600019,41.52733713800002],[127.25830936700014,41.52547678600011],[127.24451176000015,41.52800893199999],[127.22198083500014,41.540773010000166],[127.20709802300021,41.54594065300015],[127.20032841000008,41.54206492200002],[127.18725427300004,41.52149770200013],[127.17970951300018,41.516950174999984],[127.17433516500002,41.51927561400011],[127.17035607900013,41.52392649400018],[127.16513676000002,41.52852569600013],[127.15593835500012,41.53054107700008],[127.14239912900021,41.52392649400018],[127.13464766500012,41.52201446600015],[127.12823978800016,41.53157460500016],[127.12085005700017,41.53477854400013],[127.11196171100006,41.53663889600013],[127.10467533400016,41.53741404300014],[127.118007853,41.55575917600013],[127.13650801600014,41.5692467250001],[127.15785038300012,41.578600159000025],[127.17970951300018,41.58516306600002],[127.16606693600023,41.594955750000096],[127.11397709200011,41.61035532700008],[127.09723392800007,41.612448222000054],[127.10188480700012,41.62229258300003],[127.10467533400016,41.62616831500015],[127.07403121000009,41.63570261600016],[127.05899336800017,41.6432990520001],[127.04943322800007,41.65342763300008],[127.04545414300017,41.66800038700004],[127.04896814000016,41.67774139400007],[127.05961348500014,41.68223724400009],[127.07661503100016,41.68079030300011],[127.06834680200019,41.69358022100009],[127.04679773000024,41.71923756900004],[127.04266361600006,41.73264760400009],[127.03315515200015,41.73158823700011],[126.99963111400021,41.75204923000011],[126.98116866100023,41.76331756600002],[126.95858606000009,41.76680572600016],[126.94613204000022,41.766185608000015],[126.9406543380002,41.77176666300012],[126.93962080900022,41.79372914600019],[126.92980228700017,41.801041361999985],[126.90851159700017,41.79615793900014],[126.88711755400007,41.7849183150001],[126.87745406100024,41.773549500000016],[126.8647933350002,41.74727203400006],[126.80887943600013,41.72983123800013],[126.79627038600009,41.70494903600017],[126.78862227400012,41.695905661000104],[126.77136234600015,41.70448394800006],[126.74154504400023,41.72918528200016],[126.72728234900015,41.736910909000144],[126.71250288900004,41.74122589200012],[126.69658654800011,41.74122589200012],[126.67948164900021,41.73598073300009],[126.68712976100012,41.72401763900014],[126.69963545800013,41.716421204000184],[126.71415653500016,41.70990997400013],[126.7279541430001,41.701254171000144],[126.71224450800004,41.69417450000004],[126.68010176600002,41.671901957],[126.6693013920001,41.66712188700008],[126.63395471200019,41.668620504],[126.61788334200011,41.66593333000016],[126.60207035300012,41.64205881800008],[126.56703373200011,41.614153544000104],[126.56651696800022,41.60193206800007],[126.57726566600014,41.58831532900008],[126.58088301700016,41.57524119100013],[126.57726566600014,41.56180531800008],[126.55876550300016,41.53415842800017],[126.54222904500014,41.4889932250001],[126.50760583500006,41.44723866900012],[126.50130131100005,41.43437123600013],[126.5082776290002,41.40915313700019],[126.5221269120001,41.37763051400013],[126.5221269120001,41.35194732700016],[126.48765873200014,41.34440256800009],[126.48765873200014,41.35179229800012],[126.49375655100019,41.35478953000005],[126.49649540200012,41.358045146],[126.4982007250002,41.361765849000115],[126.50130131100005,41.366106669000104],[126.4725175380001,41.3665200810001],[126.44089156100021,41.34838165300009],[126.39148889200013,41.30342315700007],[126.3805851650002,41.290814107000145],[126.35733077000012,41.249421285],[126.34616866100016,41.237690735000015],[126.32100223900012,41.218880514000105],[126.30953007000014,41.20782175700002],[126.28436364800008,41.16410349500002],[126.27475183200019,41.152579651000096],[126.26069584200015,41.14312286400012],[126.1474211020001,41.09227325500011],[126.12375329700014,41.07553009100014],[126.13817102100009,41.05697825200012],[126.12644047100015,41.043232320000165],[126.11150598200011,41.032431946000045],[126.10132572500007,41.02209665900013],[126.10406457600018,41.00917755200011],[126.09336755400003,41.00623199500002],[126.08370406100006,41.00251129200002],[126.0756425380001,40.997085267000145],[126.06928633600015,40.989385478000045],[126.07197351100008,40.98060048500015],[126.06582401600022,40.96861155300009],[126.04551517800009,40.94468536400011],[126.02856530800003,40.935280253000045],[126.00954838100019,40.93269643100014],[125.99203007100006,40.928355612000146],[125.98055790200023,40.913627828000145],[125.99662927300018,40.9149197390001],[126.01001346900013,40.91388621100013],[126.01533614200011,40.90913197900012],[126.00784305900007,40.899313457000076],[125.99507898000009,40.89414581300015],[125.96427982600012,40.891303610000094],[125.94960371900007,40.88257029300003],[125.93616784700016,40.8774026490001],[125.92402388500003,40.88406890900005],[125.9122933350001,40.89414581300015],[125.90154463700017,40.899313457000076],[125.88521488500024,40.89750478200006],[125.87270918800007,40.89269887300016],[125.83167810100011,40.87083974300013],[125.82196293100006,40.869754537000134],[125.77917484600015,40.88463734900007],[125.77080326400008,40.886239319000126],[125.76093306500016,40.885670878000056],[125.75473189300018,40.881691794000076],[125.75075280800004,40.874767151000114],[125.74589522300018,40.8681525680001],[125.73700687700007,40.86520701100001],[125.70641442900015,40.860452779000106],[125.7040896920001,40.85919462500003],[125.68321171100017,40.84789540700011],[125.6448161210002,40.81058502300006],[125.67334151200016,40.784075012000145],[125.68264327000011,40.768882141000134],[125.66869063300012,40.762164205000104],[125.60993453000006,40.76128570600015],[125.60812585500015,40.76417958600014],[125.60032271400023,40.77270619800008],[125.5865251060001,40.781852926000155],[125.57174564700009,40.78490183600009],[125.5600667730001,40.7783389290001],[125.55536421800004,40.758753561000084],[125.55334883600007,40.73710113600002],[125.54647587100011,40.72593902600006],[125.53309167500016,40.72180491200013],[125.49164717600004,40.7209264130001],[125.47877974500003,40.71875600200012],[125.46906457500008,40.71291656600012],[125.4598144940001,40.701341044000074],[125.45692061400008,40.69369293300009],[125.45630049700011,40.67968862000002],[125.45299320500011,40.673384094000184],[125.44369144800018,40.66873321500013],[125.42632816600016,40.67116200800008],[125.4188867600002,40.66656280600013],[125.41515982600005,40.652684880000024],[125.41495935100023,40.65193837500005],[125.41712976200009,40.639277649000014],[125.41325402900011,40.63178456600018],[125.39087813400012,40.63245636000006],[125.38457360900011,40.63509185800008],[125.37248132300013,40.643928528000075],[125.36359297700018,40.64671905500013],[125.35604821800015,40.64604726200015],[125.33666955600019,40.641138001000044],[125.32318200800013,40.64485870400013],[125.30819584200017,40.64981964200008],[125.29331302900013,40.64857940700013],[125.27718998200025,40.643618470000014],[125.27098881000013,40.63245636000006],[125.26483931500009,40.62248280900015],[125.25610599800021,40.61504140200013],[125.24241174300018,40.61132069900013],[125.21641849800014,40.60263905900017],[125.18153690700014,40.593957418000016],[125.15306319300012,40.583983867000185],[125.1330644120001,40.57287343300008],[125.11461592700007,40.564140117000086],[125.08965620900008,40.55551015200014],[125.07358484000021,40.54801707000003],[125.05002038600011,40.54181589800014],[125.02511234500005,40.53437449200011],[125.01529382300016,40.521972148000046],[125.01529382300016,40.508277894000045],[125.02769616800006,40.49587555000015],[125.03885827700017,40.483473206],[125.04629968300013,40.471070862000104],[125.04128706900023,40.46109731000011],[125.02630090400018,40.457376607000086],[125.00661218300004,40.456136373000064],[124.98661340400011,40.457376607000086],[124.95958663000025,40.45365590400009],[124.93529870600005,40.45556793200011],[124.92589359600018,40.45789337200012],[124.91793542600013,40.46109731000011],[124.91514489800025,40.46585154200001],[124.90563643400017,40.476496888],[124.89550785400003,40.48362823500012],[124.89065026900018,40.47789215200008],[124.88382898000023,40.46554148400009],[124.84987756400014,40.43159006800009],[124.8008366290002,40.394072978000096],[124.77985599800004,40.38347931000011],[124.75680830900015,40.37919016600015],[124.74120202700013,40.37035349600013],[124.73128015200021,40.34973459900014],[124.72296024600016,40.32668691],[124.71246993000003,40.31030548100012],[124.69303959200013,40.302812398000086],[124.64260339400013,40.29428578699999],[124.62720381700004,40.28612091100017],[124.61118412300017,40.27216827500017],[124.57087650600013,40.252427877],[124.55485681100016,40.24142079700011],[124.5517562260002,40.23620147800001],[124.55020593300013,40.2247293090001],[124.54865564000018,40.22090525300014],[124.54302290900013,40.21764963800014],[124.53237756400007,40.21599599200003],[124.52819177300013,40.21413564100003],[124.38556482000008,40.11047271800014],[124.36996504000014,40.098293361000124],[124.35824629000015,40.08905670800008],[124.35694420700017,40.07632070500013],[124.36255944100004,40.046779690000065],[124.36402428499999,40.02090078300016],[124.36133873800023,40.011175848],[124.35230553500006,39.99896881700012],[124.307871941,39.9610863300001],[124.30298912900005,39.95408763200011],[124.29908287900005,39.94037506700009],[124.29420006600016,39.933783270000035],[124.28671308700021,39.929348049000126],[124.2802840500001,39.928697007],[124.27369225400005,39.92890045800014],[124.26636803499999,39.926947333],[124.20215905000006,39.87860748900009],[124.15503991000016,39.86131419499999],[124.1372176440001,39.84235260600017],[124.11817467500013,39.833156643],[124.08814537900017,39.85187409100017],[124.06690514400006,39.836167710000026],[124.05543053500004,39.82990143400015],[124.04102623800004,39.824530341000084],[123.9980574880001,39.81590403900019],[123.98568769600016,39.810248114],[123.9751082690001,39.81500885600009],[123.9677840500001,39.82054271000011],[123.95492597699999,39.834173895000056],[123.94214928500006,39.84056224200019],[123.93067467500013,39.83685944200015],[123.92025800900002,39.82949453300013],[123.91065514400022,39.824530341000084],[123.88754316499998,39.822902736000074],[123.86036217500005,39.82440827000012],[123.83407636800004,39.82916901200012],[123.8144637380001,39.83759186400009],[123.80762780000006,39.83759186400009],[123.7730412120001,39.81834544500013],[123.72006269600014,39.83055247600011],[123.66968834700012,39.856594143000066],[123.64307701900017,39.87856679900009],[123.6567488940001,39.91950104400003],[123.64014733200023,39.91469961100013],[123.63095136800008,39.903998114],[123.62623131600016,39.88910553600006],[123.62256920700011,39.871730861000074],[123.60157311300004,39.81708405200011],[123.59766686300006,39.79262929900007],[123.5914005870002,39.784328518],[123.56373131600006,39.770941473],[123.56324303500006,39.76878489800002],[123.56324303500006,39.77041250200004],[123.55372155000022,39.7761091170001],[123.55079186300013,39.77948639500012],[123.54737389400012,39.78534577000006],[123.54184003999997,39.791693427],[123.53321373800011,39.796616929000045],[123.51319420700023,39.79779694200009],[123.49561608200011,39.79071686400012],[123.48153730600004,39.77968984600007],[123.44564863400014,39.73704661700005],[123.42774498800011,39.726629950000145],[123.410411004,39.73517487200017],[123.40845787900017,39.745998440000065],[123.410411004,39.796616929000045],[123.41309655000008,39.80182526200015],[123.41822350399998,39.806545315000065],[123.421153191,39.813218492000104],[123.41708418100009,39.824530341000084],[123.41163170700023,39.82566966400013],[123.403086785,39.82355377800003],[123.39820397200005,39.81834544500013],[123.40357506600017,39.810248114],[123.38672936300011,39.789618231000176],[123.36451256600004,39.78522370000009],[123.33936608200021,39.78489817900008],[123.31405683700021,39.7761091170001],[123.30298912900017,39.78449127800015],[123.28500410200003,39.80345286700016],[123.27320397200006,39.810248114],[123.26417076900022,39.797308661],[123.25717207100016,39.80109284100002],[123.25277753999997,39.81118398600007],[123.25204511800004,39.81708405200011],[123.24472089900004,39.81403229400003],[123.23804772200016,39.80923086100013],[123.2358504570001,39.80243561400003],[123.24219811300023,39.793524481000176],[123.25277753999997,39.78290436400012],[123.26351972699997,39.767645575000145],[123.26539147200018,39.75409577],[123.24903405000023,39.74823639500015],[123.22299238399998,39.754950262000094],[123.20997155000012,39.754950262000094],[123.2041935560002,39.74506256700009],[123.20639082100003,39.734686591000084],[123.21216881600017,39.73139069200015],[123.22079511800008,39.73069896000011],[123.24227949300021,39.72549062700001],[123.2492781910001,39.72532786700005],[123.25513756600006,39.724107164000046],[123.26295006600004,39.71808502800003],[123.26913496200021,39.70758698100014],[123.26587975400015,39.701076565000065],[123.22315514400022,39.67975495000008],[123.17432701900023,39.66575755400014],[123.12842858200004,39.664862372000144],[123.10800214900009,39.690130927],[123.09994550900015,39.68577708500011],[123.05811608200023,39.674750067000055],[123.03980553500016,39.67308177300005],[123.02963300900002,39.67470937700007],[123.01661217500023,39.67951080900015],[123.00912519600016,39.68048737200003],[123.00570722700016,39.677435614000146],[123.00058027400003,39.67108795800003],[122.99195397200005,39.665920315],[122.97763105600008,39.66624583500011],[122.97763105600008,39.65884023600013],[122.99634850400005,39.64964427300008],[122.99244225400005,39.63670482000008],[122.96412194100017,39.61163971600016],[122.94491621200021,39.61969635600009],[122.8715926440001,39.60578034100003],[122.8486434250001,39.61786530200011],[122.78817793100019,39.572333075000145],[122.77979576900023,39.560451565],[122.76913496200021,39.55817291900006],[122.71078535200004,39.53595612200017],[122.696543816,39.52387116100009],[122.68824303500004,39.518622137000094],[122.67676842500006,39.51544830900003],[122.67294355600009,39.51996491100009],[122.66098066500015,39.52802155200011],[122.64844811300021,39.532416083],[122.64258873800011,39.526027736000074],[122.63656660199997,39.50844961100013],[122.58790123800021,39.46698639500015],[122.57691491000011,39.47565338700004],[122.56910241,39.483547268],[122.5621037120002,39.48676178600006],[122.55323326900006,39.48135000200001],[122.55323326900006,39.477525132000025],[122.55722089900004,39.47329336100007],[122.56104576900005,39.467962958000115],[122.56006920700011,39.46076080900018],[122.55543053500016,39.45600006700009],[122.55111738400014,39.45595937700009],[122.54647871200014,39.45661041900014],[122.54004967500023,39.45400625200012],[122.4956160820001,39.42719147300015],[122.46981855600009,39.416693427000084],[122.44703209700005,39.41242096600017],[122.41382897200006,39.413641669000086],[122.39633222699999,39.4110375020001],[122.38331139400012,39.39565664300015],[122.35596764400023,39.387884833000136],[122.34473717500022,39.382025458],[122.33326256600019,39.37205638200011],[122.3188582690001,39.36200592700014],[122.30355879000015,39.35415273600016],[122.29004967500005,39.350978908000094],[122.28370201900023,39.343410549000126],[122.27711022200016,39.328517971000096],[122.26742597700003,39.31801992400001],[122.25147545700011,39.323675848],[122.25074303500016,39.319037177000084],[122.24952233200005,39.31655508000016],[122.24537194099999,39.31061432500003],[122.2402449880001,39.28563060100011],[122.19857832100016,39.251206772999986],[122.11500084700016,39.20075104400014],[122.1167098320001,39.18866608300005],[122.110606316,39.174994208000115],[122.10401451900022,39.1638044290001],[122.1045028000001,39.15912506700009],[122.13583418100009,39.158148505000106],[122.14991295700011,39.15444570500007],[122.16268964900004,39.1461449240001],[122.14267011800008,39.14630768400015],[122.1274520190001,39.14199453300016],[122.07333418100013,39.10455963700012],[122.06397545700011,39.10175202000006],[122.05567467500012,39.10138580900014],[122.04786217500023,39.09918854400014],[122.039317254,39.09088776200018],[122.05128014400023,39.06712474200016],[122.04232832100003,39.059719143000095],[121.98804772200016,39.062933661000145],[121.98047936300021,39.05878327],[121.97128339900006,39.04962799700003],[121.95932050900004,39.04047272300015],[121.94296308700021,39.03628164300004],[121.92945397200005,39.03986237200009],[121.91724694100004,39.04633209800009],[121.90430748800021,39.049383856000176],[121.88843834699999,39.04246653900018],[121.90194746200008,39.03803131700003],[121.91293379000015,39.030707098],[121.92025800900015,39.020941473000065],[121.923187696,39.00897858300014],[121.8794051440001,39.027411200000174],[121.85596764400022,39.03375885600009],[121.82691491000017,39.03628164300004],[121.8379826180001,39.01508209800012],[121.88013756600006,38.997015692],[121.89527428500006,38.98102448100009],[121.89478600400015,38.970770575000174],[121.88754316500003,38.9623884140001],[121.87134850400017,38.95062897300012],[121.85987389400023,38.94464752800003],[121.847911004,38.94745514500006],[121.8115340500001,38.97284577],[121.78711998800006,39.00690338700012],[121.77247155000018,39.021958726000136],[121.74488366000006,39.03351471600014],[121.7247013680002,39.03017812700013],[121.72006269599999,39.01951732000002],[121.73878014400016,39.00897858300014],[121.73878014400016,39.00153229400014],[121.71045983200011,39.006740627000156],[121.68018639400012,39.00897858300014],[121.67090905000016,39.00771719000012],[121.63575280000012,38.995306708],[121.6492619150001,38.994452216000084],[121.65601647199999,38.990627346000096],[121.6578068370001,38.98387278900004],[121.65634199300015,38.974188544000086],[121.65259850399998,38.963446356000176],[121.64779707100003,38.95937734600001],[121.62891686300006,38.95433177299999],[121.60434004000008,38.95197174700002],[121.59213300899998,38.94867584800009],[121.58741295700011,38.940090236000074],[121.59253991,38.935980536000116],[121.61817467500005,38.926418361000124],[121.65919030000006,38.92625560099999],[121.67676842500012,38.92153554900007],[121.69361412899998,38.90961334800012],[121.70362389400012,38.89191315300003],[121.70484459700002,38.873114325000174],[121.69629967500006,38.86294179900012],[121.67611738400015,38.871161200000024],[121.65479576900012,38.85785553600003],[121.58106530000022,38.86298248900012],[121.5527449880001,38.85814036700005],[121.51221764400012,38.826971747000144],[121.50489342500008,38.82648346600017],[121.49887128999998,38.814642645],[121.4849552740001,38.80988190300012],[121.38013756600004,38.81659577000006],[121.34473717500023,38.814642645],[121.28760826900006,38.788072007000046],[121.26075280000006,38.79511139500011],[121.23666425900015,38.798488674000154],[121.21753991000016,38.77558014500014],[121.22559655000012,38.77631256700009],[121.24472089900009,38.77558014500014],[121.1984969410001,38.72785065300009],[121.17953535200009,38.720933335],[121.15308678499999,38.72760651200015],[121.141368035,38.74274323100015],[121.13241621200008,38.75873444200015],[121.11451256600006,38.768133856000176],[121.1241154310002,38.778387762000094],[121.134043816,38.78221263200011],[121.13925214900009,38.789496161000116],[121.13485761800021,38.80975983300014],[121.12777754000015,38.81891510600012],[121.11793053500006,38.828192450000174],[121.11133873800004,38.84027741100009],[121.11451256600006,38.85814036700005],[121.1401473320001,38.874253648000106],[121.15235436300006,38.88629791900003],[121.14852949300005,38.899074611000074],[121.0904240240001,38.899074611000074],[121.08619225400017,38.90570709800012],[121.09620201900006,38.920599677],[121.11793053500006,38.94342682500012],[121.12875410200003,38.94733307500009],[121.17953535200009,38.95433177299999],[121.18881269600004,38.95229726800015],[121.20199629,38.942857164000046],[121.21070397200018,38.940090236000074],[121.21949303500006,38.94049713700018],[121.2343856130001,38.945624091000084],[121.25684655000008,38.94965241100006],[121.29184003999998,38.96735260600015],[121.3203231130001,38.96649811400006],[121.33432050900016,38.96857330900018],[121.34034264400007,38.97760651200009],[121.33814537900017,38.98525625200013],[121.32886803500006,39.00141022300009],[121.32675214900021,39.01203034100003],[121.33423912900017,39.02659739800005],[121.352305535,39.03807200700002],[121.3748478520001,39.04417552299999],[121.3955184250001,39.04246653900018],[121.40333092500006,39.03827545800006],[121.40853925899997,39.03286367400001],[121.41920006599999,39.01854075700011],[121.42807050900015,39.014715887000094],[121.44149824300004,39.013902085],[121.46729576900005,39.0151227890001],[121.48633873800004,39.01959870000017],[121.54647871200002,39.049261786000116],[121.63233483200011,39.06948476800012],[121.67408287900004,39.08803945500013],[121.68978925899998,39.11815013200008],[121.68100019600004,39.136419989000146],[121.64918053500011,39.158148505000106],[121.64193769600016,39.176214911000116],[121.62989342500025,39.173244533],[121.60670006600006,39.180812893000066],[121.59262128999997,39.19220612200003],[121.60792076900022,39.20075104400014],[121.6059676440001,39.205389716000084],[121.60336347699997,39.21649811400003],[121.60165449300008,39.22125885600012],[121.62631269599997,39.22451406500015],[121.63306725400004,39.23615143400015],[121.60408577000005,39.25294959500003],[121.58993856400015,39.26405396400018],[121.61198414700017,39.274980894000024],[121.63697350400005,39.272650458000115],[121.64193769600016,39.27216217700011],[121.6469832690001,39.2648786480001],[121.65845787900004,39.266791083000086],[121.68018639400012,39.27521393400012],[121.71778405000012,39.29694245000009],[121.73609459700018,39.31175364800008],[121.73829186300004,39.31964752800003],[121.73129316499998,39.330471096000124],[121.75350996200005,39.35521067900011],[121.76514733200017,39.36538320500016],[121.77979576900006,39.371486721000124],[121.791270379,39.37132396000008],[121.83749433700021,39.364650783000044],[121.86548912900004,39.370550848000065],[121.91504967500018,39.39541250200001],[121.94296308700021,39.399359442],[121.93124433700021,39.41718170800006],[121.92237389400007,39.415228583000115],[121.91268964900021,39.40525950700011],[121.89869225400005,39.399359442],[121.88095136800004,39.397162177],[121.84888756600016,39.387355861000074],[121.83065839900011,39.385077216000084],[121.74537194100004,39.39789459800012],[121.70777428500004,39.39565664300015],[121.71778405000012,39.371486721000124],[121.5489201180001,39.36188385600015],[121.52588951900024,39.364650783000044],[121.49195397200016,39.388983466000084],[121.46143639400022,39.47370026200018],[121.43604576900012,39.508612372000115],[121.41993248800023,39.51605866100009],[121.39950605600008,39.52020905200011],[121.35401451900012,39.52220286700016],[121.34042402400003,39.51927317900014],[121.31942793100019,39.50568268400017],[121.30616295700004,39.50177643400009],[121.29981530000023,39.50336334800012],[121.28248131600006,39.512152411],[121.27271569099999,39.51544830900003],[121.2368270190001,39.514715887000094],[121.22779381599999,39.51886627800003],[121.22339928500006,39.528631903000175],[121.22852623800023,39.53644440300015],[121.23837324300004,39.54148997600002],[121.24854576900012,39.54340241100006],[121.26000136500019,39.563673366000145],[121.29151451900005,39.586371161000116],[121.30616295700004,39.59796784100003],[121.3265080090001,39.602362372000115],[121.38218295200006,39.60133684000009],[121.44980538500013,39.61509802500005],[121.4707137380001,39.63214752800012],[121.46387780000006,39.64581940300015],[121.49816543800003,39.652924192000015],[121.52588951900024,39.61786530200011],[121.5332951180002,39.62230052300002],[121.53614342500023,39.626654364],[121.5372013680002,39.63198476800015],[121.53956139400017,39.638983466000056],[121.53768964900009,39.64142487200017],[121.52784264400005,39.649603583000086],[121.52588951900024,39.65265534100017],[121.52865644599997,39.65595123900003],[121.53768964900009,39.66290924700009],[121.53956139400017,39.66624583500011],[121.54232832100004,39.669378973],[121.54737389400022,39.67316315300003],[121.55014082100003,39.67865631700006],[121.54647871200002,39.686712958],[121.53744550900014,39.69253164300015],[121.53028405000012,39.690985419000114],[121.52401777400004,39.68732330900014],[121.51840254000015,39.686712958],[121.50684655000023,39.69432200700014],[121.49086364000011,39.72099406900012],[121.46387780000006,39.738592841000084],[121.46265709700006,39.74152252800012],[121.45980879000004,39.744330145000056],[121.457286004,39.748480536],[121.47418492300008,39.75607402900009],[121.48461221900006,39.764005018000105],[121.48732049700007,39.77800009900007],[121.4775496750001,39.78676992400012],[121.47152754000003,39.80508047100001],[121.4707137380001,39.810248114],[121.50991686300007,39.824031398000116],[121.535899285,39.86176178600009],[121.56629232600002,39.858841518000034],[121.61609295800022,39.87170050600004],[121.63597173500001,39.896686768],[121.68490644600004,39.92251211100001],[121.70712324300008,39.926947333],[121.73438561300004,39.92328522300015],[121.75464928500016,39.91828034100011],[121.77442467500013,39.920843817],[121.7996525400001,39.940008856000176],[121.8038029310002,39.948716539000074],[121.80518639400012,39.957831122000144],[121.80966230600004,39.96503327000009],[121.83602949300004,39.97113678600006],[121.85474694099999,39.98517487200003],[121.87378991,39.991400458000086],[121.88013756600006,39.998724677],[121.88095136800004,40.00796133000013],[121.87476647200018,40.01630280200011],[121.86475670700011,40.01943594000009],[121.83790123800011,40.02045319200006],[121.82691491000017,40.02252838700018],[121.88046117600018,40.0414986120001],[121.9294677300002,40.0772864530001],[121.93311608200011,40.10138580900003],[121.99566779300002,40.12389527500015],[122.00635826900023,40.15631745000012],[121.99146569100017,40.1869977890001],[122.01596113400002,40.188137111000124],[122.03858483200007,40.196356512000065],[122.0588485040001,40.20921458500008],[122.09164569300017,40.22720738800005],[122.10230553500004,40.24872467700011],[122.10751386800021,40.262152411000116],[122.1093856130001,40.27545807500006],[122.10816491000018,40.283880927],[122.10865319100017,40.291815497000144],[122.10611611999998,40.31012281700011],[122.12868679100004,40.32591700700006],[122.18032824699999,40.352419843000106],[122.2110294930001,40.38060130400011],[122.20362389400006,40.4272321640001],[122.24195397199999,40.4272321640001],[122.25009199300021,40.43060944200012],[122.2509871750001,40.43842194200012],[122.249766472,40.447333075000145],[122.25147545700011,40.45392487200006],[122.26563561300023,40.461371161000116],[122.27955162899998,40.46572500200001],[122.28809655000025,40.47284577000006],[122.28687584700002,40.488714911],[122.30184980600004,40.502346096000124],[122.29395592500006,40.52301666900014],[122.27564537899998,40.543646552000084],[122.22486412900017,40.57851797100001],[122.17649690600003,40.58658253599999],[122.15043401500023,40.603864464000125],[122.137585657,40.624020286000174],[122.16797936300021,40.65350983300006],[122.17066490999999,40.68650950700011],[122.15943444099999,40.701605536000116],[122.136973504,40.68512604400003],[122.121836785,40.680121161],[122.10865319100017,40.69953034100011],[122.06714928500017,40.735052802000084],[122.04908287900004,40.746079820000126],[121.89718453999997,40.807836502000114],[121.87200534999995,40.81505719300016],[121.85108483200007,40.83226146],[121.84376061300007,40.85968659100005],[121.840586785,40.91380442900011],[121.836192254,40.919745184000035],[121.82837975400005,40.93390534100014],[121.82593834700016,40.94818756700006],[121.83749433700021,40.95477936400012],[121.84888756600016,40.95844147300009],[121.85889733200005,40.967474677],[121.87476647200018,40.989569403000175],[121.86793053500017,40.995794989000146],[121.82601972700016,40.974025783000066],[121.80738366000017,40.960028387000115],[121.7777090380001,40.93497152900009],[121.78005610600023,40.90790972200007],[121.76920249300022,40.88894928400008],[121.75838975800004,40.87199238],[121.7395523200001,40.84907871800014],[121.69442329400006,40.84836295100014],[121.59496186300012,40.84592356800003],[121.57504316500017,40.841498114000146],[121.56763756600017,40.84552643400012],[121.52888779000014,40.867266987],[121.51042757300003,40.879356704000045],[121.47999656000016,40.88448912000017],[121.45020592500023,40.88593170800006],[121.44092858200011,40.891343492000104],[121.43685957100004,40.89907461100002],[121.43458092500023,40.90721263200014],[121.42977949300008,40.91380442900011],[121.41846764400006,40.91889069200012],[121.39454186300023,40.92422109600001],[121.38477623800004,40.93060944200012],[121.36133873800011,40.93964264500012],[121.33725019599997,40.928168036],[121.31552168100019,40.91014232000008],[121.29932701900017,40.89960358299999],[121.28565514400013,40.89923737200009],[121.27393639400022,40.90302155200011],[121.26490319100004,40.910386460000026],[121.25839277400021,40.920640367000125],[121.24472089900009,40.90639883000013],[121.2249455090001,40.92706940300006],[121.2002873060001,40.930731512000094],[121.17579186300021,40.922308661000145],[121.15536543100008,40.90639883000013],[121.14242597700016,40.900702216000134],[121.1306258470001,40.893296617000075],[121.11996504000014,40.8849144550001],[121.111094597,40.87604401200015],[121.1060490240001,40.873236395],[121.0835880870001,40.865423895],[121.07992597700004,40.86298248900009],[121.08008873800011,40.857082424000126],[121.08114668100004,40.85024648600001],[121.08017011800008,40.84491608300006],[121.08027266400015,40.828395108],[121.06572061200022,40.81839583600002],[121.0683507770001,40.80338908600011],[121.04985010700014,40.797400734000135],[121.04192398899995,40.81440147100009],[121.02963300900008,40.82648346600003],[121.00497480600009,40.833075262000094],[120.99097740999999,40.831284898000106],[120.9819442070001,40.82680898600013],[120.97046959700016,40.817938544000086],[120.96322675900015,40.80658600500011],[120.96705162900015,40.79401276200004],[120.968516472,40.78359609600015],[120.95785566499998,40.77472565300009],[120.94385826900012,40.765855210000055],[120.93628991000017,40.75556061400012],[120.93954511800023,40.740545966000106],[120.95603623200012,40.73733066699999],[120.97584685800008,40.73934102100016],[120.99439537900007,40.73627350499999],[121.01026451900022,40.73086172100015],[121.02073790800013,40.719330067],[120.99564874300009,40.71531853800009],[120.96263662700007,40.709290141],[120.94019490100005,40.69124623900008],[120.923029893,40.689222616000066],[120.89530456400009,40.68518129900018],[120.8847762380001,40.680487372000115],[120.86768639400023,40.67865631700012],[120.84776417300021,40.683096775000095],[120.82532081500007,40.67403348000009],[120.81959069100017,40.656927802000055],[120.81641686300011,40.640041408000066],[120.80860436300023,40.618353583],[120.79843183700008,40.59967682500012],[120.78858483200017,40.59174225500014],[120.77003014400023,40.585760809000035],[120.70011311600015,40.537244223000144],[120.6787883970002,40.52191605100002],[120.66961900300012,40.50284098100003],[120.66570294700003,40.49080019000014],[120.65911435200022,40.483761494000035],[120.6333113940001,40.475165106000034],[120.62094160200016,40.47443268400009],[120.60409589900004,40.46515534100014],[120.597015821,40.450018622000144],[120.59848066500014,40.43183014500015],[120.59737637200007,40.422423150000114],[120.58407636800008,40.413723049000126],[120.5621037120001,40.411322333],[120.54566491000016,40.402411200000145],[120.53907311300013,40.382879950000174],[120.54752644700004,40.37615916700018],[120.56731603700015,40.380237147000074],[120.58839554700016,40.38432034100008],[120.591152897,40.36729769300008],[120.56486835200022,40.35418214200017],[120.53458443400004,40.34405893500012],[120.50175764500004,40.326909952000065],[120.50098717500012,40.30784739800004],[120.50131269600004,40.29189687700013],[120.50660240999999,40.27334219000012],[120.5048934250001,40.24909088700004],[120.4925236340001,40.23126862200017],[120.47201582100003,40.214300848],[120.45069420700017,40.20107656500014],[120.43604576900023,40.194484768000095],[120.3943521840001,40.19431209],[120.35800214900009,40.191799221],[120.33358808700004,40.1869977890001],[120.30902673000016,40.17966794800019],[120.28947444500014,40.16348444100008],[120.26132246200011,40.14671458500014],[120.24635697700016,40.14412336900013],[120.22546919099996,40.13494699500011],[120.1939396490001,40.12665436400009],[120.18897545700023,40.126166083],[120.18319746200004,40.12323639500006],[120.15496447700004,40.11135492700011],[120.11842925100022,40.100035438000035],[119.9502769200001,40.056502133],[119.91531026300017,40.03615345600015],[119.91179826600002,40.01110570800007],[119.9119978480002,39.998088133000074],[119.87550094400014,39.994739075],[119.8501896490002,39.98631419500004],[119.81104576900006,39.973049221000124],[119.79249108200004,39.96344635600015],[119.77442467500023,39.95050690300006],[119.74964876900012,39.9523967440001],[119.70821725900024,39.934934962000014],[119.66089928500004,39.93268463700015],[119.62061608200017,39.91103750200007],[119.60303795700021,39.90643952000015],[119.57186375200004,39.90429628500008],[119.55369991300019,39.899062558000125],[119.53559238800008,39.890825588],[119.5249129570001,39.871730861000074],[119.5198673840001,39.85830312700007],[119.52489928500015,39.841649302000135],[119.530698935,39.814702212000135],[119.49552420000013,39.8132356710001],[119.4667951800001,39.814847782000086],[119.42940637800004,39.795305952000135],[119.41153788600016,39.77802936400009],[119.38586899000013,39.7596304720001],[119.36786571600007,39.74834820700006],[119.35580488400014,39.73578522300012],[119.34986412899998,39.73175690300015],[119.33961022200016,39.715562242000104],[119.3140568370001,39.641180731000034],[119.3023380870002,39.61782461100013],[119.28492272200006,39.5954450540001],[119.28101647200006,39.59674713700012],[119.26758873800021,39.59796784100003],[119.2453719410001,39.59446849200005],[119.22323652400021,39.58466217700011],[119.20858808700021,39.569566148000106],[119.2089949880001,39.55019765800007],[119.23267662900007,39.56622955900018],[119.24301191500014,39.570705471000124],[119.23804772200019,39.56273021],[119.23414147200016,39.55438873900011],[119.23121178500017,39.545477606000176],[119.22934004000003,39.53595612200017],[119.24268639400012,39.545884507],[119.26239651600005,39.57751181200011],[119.27014167200016,39.58063606700013],[119.28139813600002,39.575013724000186],[119.26198127500018,39.535084241000064],[119.25642455900001,39.49311137600007],[119.27076255400003,39.48906080400003],[119.29710321500013,39.45521661900001],[119.3050753810002,39.43297778700018],[119.29612802500012,39.411639023000035],[119.27942932900008,39.384005608000066],[119.25566027300013,39.36552154900015],[119.22584968500004,39.35776693100014],[119.20334492500017,39.36343799300015],[119.18480422500025,39.35481411000016],[119.12926608300008,39.29407360400013],[119.0937674080002,39.260808364000056],[119.0623486220002,39.23146551500003],[119.03931725400015,39.21287669500005],[119.01563561300017,39.18976471600008],[118.99350019599997,39.17963288000014],[118.94019616,39.138861395000085],[118.926036004,39.130601304],[118.910411004,39.12543366100009],[118.89429772200006,39.124416408000016],[118.89429772200006,39.13182200700011],[118.93189537900005,39.15224844000009],[118.94198652400009,39.15912506700009],[118.94760175900005,39.1686058610001],[118.95069420700011,39.17902252800017],[118.95630944100017,39.18805573100009],[118.96998131600004,39.193304755000085],[118.94556725400017,39.19212474200005],[118.90267988400002,39.17666250200013],[118.88062584699999,39.17279694200012],[118.88550866000017,39.185248114000146],[118.87142988400004,39.20010000200001],[118.87378991000016,39.21381256700012],[118.85897871200021,39.20750560099999],[118.84053530200016,39.17563023000015],[118.81620026699999,39.16366540100016],[118.79599059200021,39.151777127000074],[118.7746944520002,39.14817017000014],[118.72777874000005,39.14724971000011],[118.6872044190001,39.1534732870001],[118.64908209600011,39.15973155800019],[118.61935987000005,39.16104245200001],[118.59015064900011,39.148312352000104],[118.56049306700018,39.147042929000136],[118.52711022199999,39.14923737200017],[118.51937910199997,39.139349677000055],[118.52914601800009,39.12465276300004],[118.51214550700014,39.11598015400004],[118.48709561800014,39.102018411000174],[118.46910620000018,39.09779346099999],[118.40995940100007,39.06289983500001],[118.38011530900006,39.050422282000035],[118.36035134000011,39.041948274],[118.34426958599997,39.03070861800013],[118.3260962890001,39.03093224600018],[118.30012638000018,39.040563804000115],[118.26785485100005,39.04300412000008],[118.23528462200008,39.05309756600006],[118.20712242500011,39.07670581300011],[118.18680376100005,39.110080198],[118.17093646400012,39.135250764000105],[118.14052807300007,39.17283510700018],[118.09640359000005,39.202391937000115],[118.04537990800004,39.21897204800017],[118.02801994200011,39.219798051000126],[117.97372480600009,39.21613190300009],[117.93116295700023,39.212103583000115],[117.88559003999998,39.201117255000085],[117.81181550800012,39.15136979500012],[117.75733483200004,39.114447333000115],[117.73755944100006,39.106390692],[117.71542402400003,39.11139557500003],[117.7182723320001,39.093003647999986],[117.72664914300016,39.088291184000084],[117.7378169560002,39.07838718200016],[117.75147784100014,39.06791408700011],[117.75748395000008,39.04508591500009],[117.76577158100011,39.02615531500008],[117.77361510300001,38.998904163000034],[117.77526394499996,38.981058362000155],[117.7432560560002,38.98224518400012],[117.72950280000013,38.98436107000013],[117.70191491000017,38.995306708],[117.70435631599999,38.98615143400012],[117.70557701900022,38.98436107000013],[117.708750847,38.98102448100009],[117.58399498800006,38.81159088700012],[117.57837975400017,38.792669989],[117.57626386800003,38.77374909100017],[117.57322225600002,38.713747808],[117.55877791300011,38.69094144700013],[117.55724628600015,38.67234853300006],[117.56047272400012,38.657096624000026],[117.55295345300013,38.64344657500014],[117.54354902400021,38.621323960000055],[117.56597071300008,38.612507449000034],[117.58043785300012,38.584810466000064],[117.66804518100017,38.44615737100018],[117.71608248499999,38.37851093200011],[117.8038938230001,38.2940181260001],[117.83716881600017,38.27090078300012],[117.900157097,38.246161200000174],[117.94169775100013,38.23394647100018],[117.96334610900011,38.21069368600011],[117.97754417700018,38.19483706400014],[117.98899518300001,38.198565751],[118.00719688600024,38.197009842000156],[118.03822468700005,38.18071770500002],[118.05372658700004,38.17325326400005],[118.05778493400014,38.16107936200016],[118.05240830600022,38.15365906600012],[118.06521373100023,38.1430820370001],[118.08179772200018,38.140692450000174],[118.0848087900001,38.13873932500003],[118.0957951180002,38.142320054000024],[118.10767662900015,38.14858633000015],[118.11923261800021,38.15228913],[118.14608808700008,38.142482815000065],[118.21583092500023,38.144964911],[118.31202233200011,38.12787506700015],[118.42400472600016,38.111568595000065],[118.44892844400013,38.107787122],[118.472504852,38.10188103500012],[118.49415123800023,38.09381745000003],[118.51229902400014,38.08808014500015],[118.53394616000006,38.072943427000055],[118.54297936300021,38.068345445000105],[118.55062910200016,38.07001373900012],[118.55689537900005,38.07391998900012],[118.56153405000023,38.07607656500012],[118.57300866000011,38.079901434000064],[118.58350670700005,38.08917877800009],[118.59937584700018,38.11082591400019],[118.61577700899997,38.125120383000116],[118.65487094300026,38.14569459600007],[118.76035265500015,38.155132046000126],[118.80543053499999,38.151800848],[118.82506583500016,38.151642167000134],[118.84009850400017,38.15257396000011],[118.89824518200005,38.12329876700012],[118.95003676100023,38.09726186800019],[118.92481530000005,38.057766018000066],[118.94198652400009,38.04938385600012],[118.95614668100019,38.03359609600007],[118.97339928500004,37.996486721000146],[118.99659264400007,37.96312083500008],[119.04840455700005,37.94797820300011],[119.09249331000004,37.912773115],[119.11694226300013,37.853270747000025],[119.15569743300016,37.823964263],[119.20683608900018,37.80283855900011],[119.24308307099997,37.769482336000024],[119.2595974560002,37.71584741200003],[119.25566353600001,37.6718665770001],[119.21773647400006,37.675247980000094],[119.18931322400012,37.70073456600015],[119.120140997,37.737507864000165],[119.06947218100007,37.74063064900015],[119.0371277260001,37.72208882600015],[119.02752700200003,37.70394293100004],[119.02540081300006,37.68992311800018],[119.01075280000005,37.65375397300006],[118.99244225400005,37.633368231000176],[118.9766544930001,37.610907294000086],[118.96998131600004,37.59345123900012],[118.96778405000022,37.573228257000025],[118.95785566500004,37.53139883000007],[118.94459069099999,37.37811920800006],[118.94947350400017,37.336167710000055],[118.96119225400017,37.29564036700005],[118.97242272200008,37.280666408000016],[118.99048912900017,37.274725653000175],[119.01474043100008,37.26984284100011],[119.03012129000004,37.2577985700001],[119.04273522200018,37.24237702000006],[119.05860436300011,37.22760651200018],[119.11500084700018,37.20111725500011],[119.14551842500012,37.178859768000066],[119.28711998800021,37.137274481000084],[119.44117272200016,37.120550848000065],[119.47510826900023,37.13328685100011],[119.5245060560001,37.13906484600007],[119.53858483200023,37.13760000200001],[119.56348717500006,37.14179108300014],[119.66073652400004,37.13760000200001],[119.71680748800011,37.141587632],[119.77059980600004,37.15184153900013],[119.7789005870002,37.167059637000094],[119.79184004000003,37.18056875200007],[119.87745201900012,37.23383209800015],[119.89730879000003,37.24941640800013],[119.88672936300004,37.28465403900018],[119.86353600400005,37.321926174000154],[119.84628339900021,37.34369538000011],[119.8588973320001,37.360174872000115],[119.88233483200011,37.370754299000154],[119.9289656910001,37.38458893400015],[119.98829186300006,37.413275458000115],[119.99781334700006,37.42182038000014],[120.00904381600017,37.4223493510001],[120.059825066,37.44041575700014],[120.18759199300015,37.51178620000003],[120.29761803500016,37.59788646],[120.322520379,37.632391669000114],[120.30640709700006,37.66518789300012],[120.29379316500015,37.670314846000124],[120.27857506600016,37.67243073100006],[120.24756920700004,37.672593492000104],[120.23536217500005,37.674750067],[120.22291100400015,37.6794294290001],[120.21566816500015,37.68406810100005],[120.21998131600007,37.68626536700005],[120.31185957099999,37.68626536700005],[120.36850019600008,37.69472890800007],[120.38599694100006,37.704535223000036],[120.39136803500017,37.706732489],[120.41098066500014,37.71210358300006],[120.443125847,37.73818594000012],[120.46338951900012,37.74774811400012],[120.55616295700023,37.761379299000154],[120.56454511800021,37.764349677000084],[120.59359785200009,37.78188711100002],[120.63526451900022,37.788723049000126],[120.6743270190001,37.80198802300008],[120.70492597700004,37.820949611000074],[120.73804772200006,37.83397044500008],[120.78492272199999,37.82965729400014],[120.82162519600003,37.81732819200003],[120.83668053500004,37.81598541900003],[120.84644616000017,37.81810130400014],[120.86597741000004,37.82754140800013],[120.87769616000006,37.82965729400014],[120.8994246750001,37.82705312700015],[120.92579186300011,37.81928131700006],[120.94076582100004,37.806463934000035],[120.9288029310002,37.788723049000126],[120.94092858200011,37.77399323100003],[120.95687910200003,37.760891018000066],[120.97535241000006,37.75136953300007],[120.99463951900006,37.74774811400012],[121.00538170700011,37.744289455000015],[121.01148522200016,37.73590729400014],[121.01612389400012,37.725734768],[121.02198326900023,37.716701565],[121.03256269599997,37.710394598000065],[121.04354902400004,37.710353908000066],[121.05469811300004,37.71271393400012],[121.066661004,37.71356842700011],[121.11329186300011,37.70823802300005],[121.137950066,37.70115794500002],[121.14852949300005,37.68939850500011],[121.14242597700016,37.67682526200004],[121.13217207100017,37.66449616100009],[121.13013756600002,37.65180084800012],[121.14852949300005,37.63788483300014],[121.13550866000017,37.62628815300003],[121.13436933700014,37.61054108300005],[121.14210045700021,37.59467194200014],[121.15536543100008,37.582586981000034],[121.171641472,37.577093817],[121.19149824300021,37.57518138200005],[121.30811608200024,37.58124420800014],[121.34473717500023,37.59080638200014],[121.37452233200015,37.61054108300005],[121.36060631600017,37.631333726000044],[121.35401451900012,37.63788483300014],[121.3721623060002,37.632717190000115],[121.39356530000022,37.622463283000016],[121.41407311300011,37.60968659100016],[121.42977949300008,37.596869208000115],[121.39844811300011,37.594875393000095],[121.38143964900004,37.58299388200014],[121.38168378999998,37.566107489000146],[121.40170332100014,37.549058335],[121.42457116000018,37.536322333000136],[121.44678795700023,37.51959870000012],[121.46395918100002,37.49945709800006],[121.4707137380001,37.47646719],[121.47689863400014,37.46800364800004],[121.49146569100012,37.46295807500003],[121.52222741000016,37.45970286700016],[121.53711998800023,37.456244208000086],[121.54981530000006,37.447821356000034],[121.57032311300021,37.42865631700006],[121.59164472700004,37.42446523600013],[121.65162194100006,37.437079169000114],[121.67611738400015,37.43919505400011],[121.65487714900009,37.45770905200013],[121.63428795700023,37.462388414000046],[121.58741295700011,37.453558661],[121.59278405000023,37.46385325700011],[121.60254967500005,37.47186920800006],[121.61304772200006,37.477280992000104],[121.62142988400002,37.480169989000146],[121.63502037900015,37.48126862200009],[121.644786004,37.47846100500014],[121.65235436300017,37.47467682500012],[121.659434441,37.472723700000145],[121.73243248800021,37.46173737200011],[121.93783613399998,37.464260158000016],[121.95728600400012,37.45970286700016],[121.95728600400012,37.453558661],[121.94906660199999,37.448391018000095],[121.94459069100006,37.44074127800015],[121.94459069100006,37.43252187700007],[121.9497990240002,37.42560455900015],[121.95728600400012,37.42381419499999],[121.98804772200016,37.42560455900015],[121.99740644600003,37.43406810100011],[121.97779381600004,37.47166575700011],[121.98121178500006,37.480169989000146],[121.99463951900023,37.486721096000124],[122.016368035,37.51756419499999],[122.02564537900015,37.528021552000055],[122.0437931650001,37.53392161700019],[122.06153405000018,37.537176825000145],[122.0717879570001,37.544501044000135],[122.06714928500017,37.56273021000014],[122.07333418100013,37.56273021000014],[122.08204186300011,37.552923895],[122.09506269600004,37.54913971600017],[122.1094669930001,37.55223216400016],[122.121836785,37.56273021000014],[122.13949629000005,37.550604559000035],[122.15186608200004,37.53286367400012],[122.15259850400011,37.51455312700007],[122.13550866000006,37.500677802],[122.12989342500023,37.48346588700017],[122.14144941500008,37.456610419000086],[122.16211998800011,37.43309153900013],[122.1831974620002,37.41815827000009],[122.19776451900023,37.4323591170001],[122.20972741000016,37.447333075000024],[122.2242130870002,37.45799388200008],[122.24537194099999,37.45970286700016],[122.2618107430002,37.45091380400011],[122.27857506600006,37.423895575000145],[122.29647871200008,37.41815827000009],[122.45704186300023,37.41815827000009],[122.4615177740001,37.419623114000146],[122.46607506600006,37.422674872000144],[122.47120201900017,37.42536041900003],[122.47803795700005,37.42560455900015],[122.482188347,37.422674872000144],[122.48495527400009,37.41380442899999],[122.48804772200019,37.411932684000035],[122.57056725400017,37.40155670800011],[122.59164472699999,37.404364325000174],[122.60092207100014,37.41502513200011],[122.6123966810001,37.418605861000074],[122.66504967500013,37.41404857000005],[122.68043053500006,37.41502513200011],[122.68824303500004,37.40981679900004],[122.688731316,37.38971588700015],[122.67896569100016,37.374660549000154],[122.65609785200016,37.38458893400015],[122.61459394600008,37.370917059000114],[122.58505293100019,37.35268789300012],[122.57740319100016,37.349839585],[122.57081139400012,37.34479401200015],[122.59115644599999,37.31415436400006],[122.59473717500005,37.295233466000056],[122.55762780000022,37.319077867000104],[122.54965254000005,37.31976959800006],[122.54908287900004,37.31085846600003],[122.56006920700011,37.274725653000175],[122.56666100400015,37.26634349200013],[122.5898543630001,37.24335358300014],[122.59473717500005,37.236883856000034],[122.59669030000012,37.22089264500015],[122.60287519599997,37.20990631700009],[122.61353600400005,37.20307038000006],[122.62891686300017,37.19965241100006],[122.62891686300017,37.19281647300012],[122.58521569100017,37.18870677299999],[122.57431074300008,37.18537018400014],[122.56324303500017,37.17316315300009],[122.56885826900016,37.16567617400004],[122.57715905000022,37.15778229400014],[122.57431074300008,37.14443594000012],[122.54346764400024,37.15664297100001],[122.51002037900017,37.15521881700015],[122.48267662899998,37.139960028000175],[122.47071373800006,37.11029694200012],[122.46444746200021,37.11029694200012],[122.46583092500012,37.14516836100015],[122.46444746200021,37.15184153900013],[122.45394941500015,37.15428294500005],[122.44760175900002,37.14744700700014],[122.44434655000006,37.13654205900015],[122.44174238399998,37.117092190000065],[122.43628991000004,37.099188544000114],[122.43637129000004,37.089789130000085],[122.4405216810001,37.084906317000026],[122.44752037900004,37.08226146000011],[122.4541121750001,37.07746002800003],[122.45704186300023,37.0659040390001],[122.448496941,37.057196356000034],[122.41122480600004,37.036525783000016],[122.4023543630001,37.02147044499999],[122.40919030000012,37.006293036],[122.42432701900012,37.00364817900011],[122.43702233200005,37.011623440000065],[122.43637129000004,37.027736721000124],[122.46119225400015,37.03082916900002],[122.51303144600011,37.02049388200011],[122.54004967500023,37.027736721000124],[122.52540123800011,36.944484768],[122.53272545700023,36.925930080000015],[122.5264591810001,36.91425202],[122.51734459700018,36.90314362200017],[122.5074162120001,36.89801666900014],[122.49854576900022,36.90420156500012],[122.5000919930001,36.91559479400008],[122.50904381599999,36.926255601000136],[122.51270592500022,36.93463776200018],[122.49854576900022,36.938910223],[122.493907097,36.93260325700005],[122.47730553500006,36.92597077],[122.4566349620002,36.92064036700013],[122.43995201900013,36.918443101000136],[122.43051191500008,36.92011139500015],[122.42090905000012,36.92308177300007],[122.41220136800021,36.92475006700009],[122.4057723320001,36.92218659100017],[122.40219160200004,36.914496161000145],[122.40341230600004,36.90664297100007],[122.40748131599999,36.90045807500009],[122.41260826900012,36.89801666900014],[122.4213973320001,36.89516836100002],[122.42945397199999,36.88812897300015],[122.43515058700021,36.87921784100011],[122.43637129000004,36.870672919000086],[122.43100019600016,36.86465078300007],[122.42066491000017,36.86078522300009],[122.4023543630001,36.85700104400014],[122.39722741000016,36.85691966400016],[122.39332116000016,36.85911692900008],[122.38990319100016,36.86196523600002],[122.38559004000008,36.86322663000011],[122.37973066500004,36.861395575000024],[122.37777753999997,36.85712311400012],[122.37720787899998,36.852484442],[122.37574303500004,36.849554755000085],[122.37118574300021,36.845648505000085],[122.36109459700006,36.833441473],[122.35523522200013,36.82908763200011],[122.3198348320001,36.82294342700014],[122.20028730600004,36.84275950700005],[122.185313347,36.849920966000084],[122.1806746750001,36.866400458000086],[122.18482506600004,36.884955145000085],[122.19686933700004,36.89801666900014],[122.26587975400017,36.89801666900014],[122.25294030000006,36.90595123900012],[122.21119225400004,36.918443101000136],[122.17465253999997,36.941107489],[122.16268964900004,36.94578685100011],[122.17855878999998,36.98627350500014],[122.1796981130001,37.00580475500011],[122.16610761800005,37.014105536],[122.14999433700008,37.00531647300012],[122.14795983200005,36.98501211100013],[122.14918053500016,36.962144273000106],[122.14291425900002,36.94578685100011],[122.12842858200011,36.94562409100014],[122.11011803500006,36.95189036700018],[122.09433027400009,36.95091380400011],[122.087657097,36.92902252800009],[122.08090253999998,36.91657135600015],[122.06519615999999,36.90672435100005],[122.04688561300017,36.900336005000106],[122.03305097700016,36.89801666900014],[122.035411004,36.916815497000115],[122.03475996200004,36.941839911000116],[122.03760826900012,36.96369049700014],[122.04981530000006,36.973089911],[122.05380293100004,36.9752464860001],[122.04916425900004,36.979925848],[122.03964277400021,36.98460521000011],[122.02930748800023,36.986761786000116],[122.00416100400005,36.986029364],[121.96143639400024,36.99286530200011],[121.92628014400006,36.99359772300015],[121.91488691500004,36.985825914000046],[121.92335045700023,36.96849192900005],[121.9497990240002,36.938910223],[121.91513105600004,36.92023346600003],[121.78598066500003,36.891180731000055],[121.77686608200023,36.88646067900013],[121.75586998800011,36.872300523000106],[121.75180097700016,36.866929429000045],[121.75001061300019,36.85740794500008],[121.74488366000006,36.847235419000114],[121.73715254000004,36.83917877800017],[121.72803795700024,36.83592357000013],[121.70850670700005,36.832831122000144],[121.67147871200014,36.81928131700009],[121.64942467500023,36.816066799000126],[121.64942467500023,36.82225169500002],[121.67408287900004,36.83323802300005],[121.68417402400011,36.83592357000013],[121.68417402400011,36.84275950700005],[121.6582137380001,36.84015534100014],[121.637461785,36.83136627800009],[121.62452233200013,36.81476471600003],[121.62142988400002,36.788763739000146],[121.63209069100006,36.76121653900013],[121.63428795700023,36.7465681010001],[121.62525475400005,36.74038320500013],[121.61255944100017,36.74298737200005],[121.60352623800016,36.7496605490001],[121.5976668630001,36.758490302000055],[121.59424889400012,36.76764557500003],[121.5830184250001,36.76284414300015],[121.57300866000006,36.76361725500006],[121.5600692070001,36.76764557500003],[121.55038496200004,36.764349677],[121.53711998800023,36.75576406500009],[121.52588951900024,36.75397370000009],[121.50350996200021,36.760443427],[121.49642988400016,36.77448151200015],[121.50318444100019,36.78864166900017],[121.52222741000016,36.79498932500012],[121.53711998800023,36.79564036700005],[121.54737389400022,36.798163153000175],[121.55518639400023,36.803412177000055],[121.56324303500016,36.81232330900009],[121.57300866000006,36.81964752800008],[121.59522545700005,36.82632070500016],[121.60474694100016,36.83250560100011],[121.607188347,36.84495677300005],[121.58814537900004,36.84617747600005],[121.56283613399998,36.84137604400017],[121.54647871200002,36.83592357000013],[121.5380965500001,36.82884349200016],[121.53052819100006,36.81989166900014],[121.52222741000016,36.812160549000126],[121.51156660200004,36.80857982000008],[121.49813886800003,36.81085846600003],[121.49423261800003,36.816880601000136],[121.4922794930002,36.82391998900003],[121.48438561300021,36.82908763200011],[121.4594832690001,36.82868073100012],[121.45297285199999,36.81639232000005],[121.45801842500022,36.80194733299999],[121.46729576900005,36.79498932500012],[121.4707137380001,36.78961823100015],[121.46615644600017,36.77757396000014],[121.453379754,36.757391669000114],[121.44483483200011,36.753485419000114],[121.43246504000015,36.75275299700017],[121.4089461600001,36.75397370000009],[121.39014733200021,36.74681224200005],[121.37777754000004,36.731512762000094],[121.37940514400022,36.71698639500006],[121.40170332100014,36.71238841400013],[121.38526451900006,36.706488348000086],[121.36841881600016,36.70677317900011],[121.33350670700024,36.71238841400013],[121.314219597,36.711818752000156],[121.15772545700021,36.66860586100016],[121.12802168100019,36.650946356000034],[121.08969160200014,36.61640045800014],[121.08017011800008,36.61001211100002],[121.062754754,36.61005280200002],[121.04249108200013,36.62767161700013],[121.032481316,36.624253648000106],[121.03077233200011,36.617092190000065],[121.03402754000014,36.596828518000066],[121.032481316,36.589504299000154],[121.02352949300008,36.58392975500006],[121.01465905000023,36.58454010600012],[121.006114129,36.587632554],[120.99838300900002,36.589504299000154],[120.94467207100004,36.59121328300016],[120.9288029310002,36.596340236000074],[120.93653405000012,36.61196523600016],[120.93336022200005,36.620266018000116],[120.92212975400005,36.62368398600013],[120.9055281910001,36.624253648000106],[120.89267011800008,36.62848541900006],[120.86475670700023,36.64671458500011],[120.85059655000012,36.650946356000034],[120.82406660200016,36.64398834800015],[120.77084394600016,36.61717357000005],[120.75058027400004,36.616848049000126],[120.74732506599999,36.60822174700002],[120.74691816499997,36.6031761740001],[120.75001061300006,36.59983958500008],[120.75757897200006,36.596340236000074],[120.74732506599999,36.577297268000095],[120.7422794930001,36.55585358300014],[120.75025475400005,36.54075755400014],[120.77865644600014,36.54108307500014],[120.79379316500015,36.55097077000009],[120.81356855600009,36.583685614],[120.82642662899998,36.596340236000074],[120.85035241000017,36.60455963700018],[120.86459394600014,36.597723700000145],[120.89478600400017,36.56159088700012],[120.90528405000023,36.55707428600006],[120.9140731130001,36.55703359600007],[120.92025800899998,36.553290106000034],[120.92261803500004,36.53766510600015],[120.927500847,36.53290436400006],[120.93848717500018,36.534369208000115],[120.95020592500023,36.54002513200011],[120.95679772200008,36.54791901200018],[120.96363366000004,36.54791901200018],[120.96143639400023,36.53143952],[120.95191491000017,36.51992422100007],[120.94117272200006,36.50971100500011],[120.93628991000017,36.497015692000055],[120.93783613400002,36.487697658000016],[120.949961785,36.45917389500012],[120.93433678500006,36.45677317900008],[120.91952558700002,36.45648834800015],[120.90626061300021,36.45237864799999],[120.89478600400017,36.43866608300005],[120.90097089900004,36.42767975500011],[120.90137780000022,36.41901276200012],[120.89828535200014,36.411607164000124],[120.89039147200012,36.39793528900019],[120.88266035199999,36.38873932500003],[120.87427819100004,36.38060130400011],[120.86744225399998,36.377183335],[120.8497013680002,36.386135158000044],[120.84400475400004,36.422674872000165],[120.82642662899998,36.43252187700009],[120.83204186300011,36.45526764500011],[120.80689537900005,36.46393463700012],[120.77247155000005,36.46352773600002],[120.75058027400004,36.45917389500012],[120.74781334700016,36.455633856000034],[120.74048912900011,36.442816473],[120.73707116000016,36.43866608300005],[120.73170006599999,36.43622467700014],[120.71900475400015,36.43235911700013],[120.71412194100016,36.42869700700008],[120.68653405000005,36.387152411],[120.69068444099999,36.37083567900008],[120.70956464900014,36.34935130400014],[120.72217858200021,36.33055247599999],[120.70728600400017,36.32265859600001],[120.69369550900004,36.324896552],[120.6690373060002,36.334621486000124],[120.66195722700016,36.33633047100015],[120.64771569100006,36.330877997000115],[120.6436466810002,36.322495835000055],[120.64869225400005,36.31240469000009],[120.66195722700016,36.301499742000104],[120.65455162900015,36.288275458000086],[120.66024824300004,36.277329820000105],[120.67042076900012,36.26581452000006],[120.675629102,36.250637111000074],[120.68751061300023,36.18789297100001],[120.69336998800011,36.17487213700012],[120.70484459700005,36.15623607000013],[120.69678795700011,36.14398834800006],[120.62777754000008,36.11652252800012],[120.62387129000008,36.117661851000044],[120.62061608200021,36.12128327000012],[120.61670983200023,36.123358466000056],[120.59359785200009,36.10976797100009],[120.56519616000006,36.11579010600009],[120.55160566499998,36.11371491100006],[120.5459090500001,36.09975820500009],[120.53622480600002,36.09145742400004],[120.51417076900016,36.088568427],[120.47364342500023,36.08926015800013],[120.46192467500022,36.085760809000035],[120.43563886800015,36.06850820500013],[120.42172285200014,36.06195709800015],[120.36947675900014,36.048773505],[120.35352623800023,36.040838934000035],[120.3393660820001,36.04995351800012],[120.3247176440001,36.05719635600015],[120.3090926440001,36.06150950700005],[120.29200280000006,36.06195709800015],[120.29200280000006,36.06810130400011],[120.30844160200016,36.07953522300009],[120.31226647200016,36.091294664000074],[120.31348717500012,36.10447825700011],[120.32276451900017,36.11994049700003],[120.33497155000022,36.13613515800007],[120.36158287900017,36.19163646000014],[120.34848066500003,36.21336497600011],[120.33920332100014,36.222601630000085],[120.32276451900017,36.22638580900009],[120.31177819099999,36.265855210000055],[120.30640709700006,36.27423737200002],[120.28646894600016,36.26382070500013],[120.27352949300003,36.23427969000006],[120.27515709700018,36.20408763200005],[120.29883873800011,36.19163646000014],[120.28451582100006,36.17597077000006],[120.2642521490001,36.180853583000115],[120.24398847699999,36.19110748900006],[120.22999108200024,36.19163646000014],[120.22608483200021,36.19407786700016],[120.22388756600006,36.196519273000106],[120.22128339900016,36.198391018000066],[120.21631920700011,36.19912344],[120.21908613400015,36.22190989800013],[120.18677819100006,36.219061591000084],[120.1445418630001,36.20888906500015],[120.11727949300021,36.209662177000055],[120.11239668100002,36.217474677000055],[120.1114201180001,36.22272370000006],[120.10816491000006,36.225531317],[120.09717858200005,36.22638580900009],[120.09286543100008,36.223211981000034],[120.08790123800011,36.21621328300013],[120.08594811300006,36.2091332050001],[120.09034264400022,36.20595937700004],[120.1053166020001,36.200873114],[120.1092228520001,36.18878815300009],[120.10523522200012,36.17422109600007],[120.08936608200005,36.147691148000106],[120.08643639400023,36.130031643000095],[120.08969160199997,36.111721096000124],[120.10018964900003,36.09609609600015],[120.11679121200022,36.08759186400012],[120.13575280000023,36.08340078300007],[120.1540633470001,36.077053127000156],[120.16846764400006,36.06195709800015],[120.17188561300006,36.046128648000106],[120.17074629000015,36.00869375200007],[120.17530358200011,35.993638414000074],[120.18604576900012,35.98452383000007],[120.19776451900005,35.98529694200009],[120.22999108200024,35.99990469],[120.22950280000022,35.97280508000007],[120.24276777400009,35.973578192],[120.27491295700023,35.993638414000074],[120.28077233200005,35.998236395],[120.28199303500011,36.006659247000144],[120.284922722,36.01093170800005],[120.29542076900006,36.003322658000016],[120.30307050900004,35.994045315000065],[120.3052677740002,35.987005927],[120.30347741000007,35.98053620000008],[120.29883873800011,35.97313060100011],[120.28443444100006,35.962591864000146],[120.24439537899998,35.953070380000135],[120.22681725400017,35.94183991100014],[120.18515058700021,35.903753973000065],[120.17530358200011,35.89004140800013],[120.17050214900011,35.9074567730001],[120.179453972,35.92007070500007],[120.18970787900004,35.93154531500012],[120.18897545700023,35.94525788000006],[120.16846764400006,35.93842194200012],[120.16285241000017,35.93329498900012],[120.14551842500006,35.91380442900014],[120.14185631600006,35.907945054],[120.13575280000023,35.90412018400018],[120.10718834700005,35.903998114],[120.09717858200005,35.900824286000145],[120.05225670700005,35.862616278000175],[120.03882897200016,35.84284088700015],[120.01978600400018,35.75975169499999],[120.00294030000005,35.72776927299999],[119.969981316,35.732367255000106],[119.9497176440001,35.753810940000065],[119.93775475400017,35.76113515800016],[119.92554772200018,35.75682200700005],[119.90821373800011,35.74485911700013],[119.90015709700005,35.73627350500011],[119.9312443370001,35.71084219],[119.93563886800003,35.70502350500006],[119.93075605600008,35.69953034100002],[119.9082951180001,35.680894273000135],[119.90162194099999,35.67153554900001],[119.90048261800008,35.660549221000124],[119.90292402400021,35.65241120000003],[119.90674889400022,35.64447663000006],[119.90845787900005,35.633978583],[119.90455162900005,35.62457916900017],[119.8955998060002,35.62030670800006],[119.8852645190001,35.61762116100009],[119.87745201900012,35.61318594],[119.86019941500004,35.60610586100013],[119.84327233200023,35.61579010600009],[119.83407636800003,35.635321356000176],[119.84009850400017,35.65790436400005],[119.81161543100004,35.64789459800006],[119.77100670700021,35.593329169000086],[119.743907097,35.57591380400014],[119.74805748800017,35.599798895],[119.74838300899997,35.60932038],[119.743907097,35.616888739000146],[119.73251386800003,35.62083567900014],[119.71876061300023,35.619533596000124],[119.70712324300021,35.61416250200007],[119.70240319100006,35.60602448100014],[119.69678795700023,35.59943268400018],[119.68384850400004,35.59398021000005],[119.66895592500018,35.59031810099999],[119.65772545700005,35.58893463700012],[119.64795983200021,35.583929755000085],[119.64136803500004,35.57200755400014],[119.63412519600004,35.548041083000086],[119.60409589900009,35.48802317900008],[119.59986412900015,35.46918366100011],[119.59595787900015,35.46198151200009],[119.56959069100019,35.434759833],[119.5645451180002,35.42470937700004],[119.56226647200006,35.400620835],[119.55892988400004,35.39032623900009],[119.55152428500006,35.380031643000066],[119.52230879000005,35.352728583000086],[119.51351972700003,35.33930084800009],[119.50766035199997,35.33234284100008],[119.46957441500004,35.321478583000115],[119.43580162900004,35.32257721600014],[119.42872155000018,35.321478583000115],[119.42392011800008,35.31346263200008],[119.42188561300023,35.30052317900005],[119.42188561300023,35.27741120000012],[119.41871178500017,35.271307684000114],[119.40455162900017,35.25372955900009],[119.38770592500022,35.20538971600017],[119.37061608200011,35.11741771000013],[119.35800214900023,35.09711334800012],[119.33619225400017,35.08869049700009],[119.31430097700004,35.08624909100014],[119.2802840500001,35.07660553600009],[119.25049889400012,35.068182684000035],[119.22909589900003,35.06610748900003],[119.22120201900006,35.064032294000086],[119.21265709700019,35.05801015800007],[119.20728600399998,35.048407294000114],[119.20394941499997,35.02496979400002],[119.19931074300004,35.01666901200015],[119.19288170700021,35.000433661000024],[119.19288170700021,34.974025783000016],[119.19703209700018,34.947699286000116],[119.203379754,34.93162669500013],[119.18869763400006,34.85627416800018],[119.19312584700016,34.80988190300012],[119.20191491000004,34.78497955900015],[119.18905683700021,34.76654694200012],[119.19532311300006,34.75971100500011],[119.19027754000015,34.749253648000135],[119.188731316,34.733058986000074],[119.192230665,34.71820709800012],[119.203379754,34.71190013199999],[119.20980879000003,34.718573309000035],[119.22095787900005,34.7494164080001],[119.22934004000003,34.75971100500011],[119.2417912120002,34.76166413000005],[119.29135175900015,34.75348541900014],[119.31177819100006,34.755072333],[119.32496178500016,34.75999583500005],[119.33505293100004,34.76850006700009],[119.34669030000025,34.78082916900002],[119.35800214900023,34.774603583000086],[119.37558027400003,34.759344794000114],[119.38770592500022,34.75348541900014],[119.40145918100009,34.751125393],[119.42823326900005,34.749945380000085],[119.44223066500003,34.746039130000085],[119.46322675899997,34.73236725500014],[119.47421308700014,34.715277411],[119.4727482430001,34.69814687700006],[119.45655358200021,34.68455638200011],[119.53174889400012,34.61570872600005],[119.58871504000003,34.58222077],[119.59986412900015,34.56854889500006],[119.60922285199997,34.562730210000026],[119.64096113400015,34.55052317900014],[119.64096113400015,34.54572174700006],[119.64144941500004,34.54083893400015],[119.64340253999997,34.536566473000065],[119.64771569100017,34.5338402360001],[119.65845787899998,34.53156159100003],[119.68531334700016,34.5338402360001],[119.70533287900004,34.53115469],[119.72885175900002,34.52411530200014],[119.75123131600004,34.514227606000034],[119.79525800900015,34.48167552300008],[119.82618248800006,34.47040436400006],[119.86207116000016,34.46580638200014],[119.90503991000004,34.46491120000006],[119.93995201900023,34.457912502000156],[119.98292076900012,34.44074127800003],[120.02295983200021,34.41937897300009],[120.07870527400016,34.37750885600015],[120.11817467500012,34.35960521000011],[120.23975670700005,34.32367584800012],[120.25709069100004,34.31183502800015],[120.26400800900015,34.29075755400005],[120.26669355600013,34.26630280200002],[120.274180535,34.244533596000124],[120.29883873800011,34.204250393000066],[120.30937427900007,34.17407134900016],[120.31721231500003,34.15212340500015],[120.32496554200011,34.136451072000156],[120.32522375900022,34.11129799900006],[120.34823652400003,34.076849677000055],[120.35352623800023,34.060777085000076],[120.35849043100009,34.05345286700016],[120.36532636800021,34.04564036700015],[120.37134850399998,34.0360375020001],[120.38502037900005,33.97040436400009],[120.40796959700006,33.91681549700009],[120.41334069100012,33.8973656270001],[120.41260826900006,33.887518622000144],[120.39844811300023,33.87897370000006],[120.39966881600019,33.86933014500006],[120.40707441500014,33.859767971000096],[120.4189559250001,33.85537344],[120.431407097,33.84601471600017],[120.44336998800023,33.82469310100011],[120.45093834700012,33.80149974200015],[120.44971764400005,33.78644440300015],[120.46412194100004,33.774969794000114],[120.48243248800011,33.76512278900019],[120.49830162900007,33.753322658000016],[120.5048934250001,33.735581773000135],[120.50586998800006,33.69717031500004],[120.51172936300021,33.65672435100008],[120.50269616,33.66156647300014],[120.49512780000006,33.66217682500012],[120.48902428500016,33.65839264500009],[120.48373457100003,33.64996979400005],[120.52597089900021,33.61066315300003],[120.53907311300013,33.59467194200012],[120.563243035,33.54800039300012],[120.57325280000008,33.533270575000145],[120.62777754000008,33.47801341400013],[120.63436933700004,33.4669457050001],[120.65211022200006,33.42812734600007],[120.65577233200011,33.41315338700003],[120.66195722700016,33.33803945500013],[120.66724694100004,33.32510000200004],[120.68002363399998,33.30801015800007],[120.6950789720001,33.293158270000035],[120.70728600400017,33.28681061400009],[120.720469597,33.28497955900009],[120.73788496200008,33.27928294500013],[120.75025475400005,33.269598700000145],[120.74756920700021,33.25580475500005],[120.74268639400007,33.25267161700016],[120.73707116000016,33.25092194200009],[120.732188347,33.248236395],[120.73023522200005,33.24213288000011],[120.7325138680002,33.23712799700017],[120.74252363400004,33.22776927300005],[120.74439537900015,33.22410716400019],[120.74350019599999,33.20864492400006],[120.74008222700009,33.205511786],[120.73023522200005,33.204901434000035],[120.78524824300021,33.16502513200008],[120.80697675900002,33.13776276200018],[120.79224694099999,33.10871002800009],[120.8125106130001,33.10578034100017],[120.81893964900021,33.092189846000124],[120.81959069100017,33.05410390800013],[120.82593834699999,33.03017812700007],[120.833750847,33.02562083500011],[120.84644616000017,33.02985260600015],[120.86744225399998,33.032375393000066],[120.89014733200017,33.026109117000104],[120.89576256600006,33.01357656500004],[120.88851972700004,32.977728583000115],[120.8886824880001,32.96271393400018],[120.9078068370001,32.84389883000007],[120.90479576900017,32.812648830000015],[120.88030821400017,32.77203182900014],[120.852386915,32.75600820500004],[120.86142011800011,32.71967194200012],[120.8604435560002,32.68976471600014],[120.85018964900009,32.696600653000175],[120.84310957100003,32.70392487200017],[120.84140058700014,32.711086330000015],[120.84693444100006,32.7176781270001],[120.84009850400005,32.724514065],[120.8301701180002,32.709418036],[120.830332879,32.697658596000124],[120.86386823800015,32.67105755700014],[120.90661411500015,32.65971027300016],[120.91119932700009,32.63012129600013],[120.94388695400018,32.60522416300007],[120.97502096700023,32.59511507700013],[121.02070551400011,32.56852178800007],[121.042782071,32.557541816000125],[121.06625410199997,32.54401276200018],[121.08619225400017,32.53603750200013],[121.09872480600009,32.52114492400007],[121.10084069100012,32.49795156500015],[121.107676629,32.49795156500015],[121.1202091810002,32.50739166900014],[121.15725641600015,32.495595517000154],[121.17379998200008,32.48762507900015],[121.19150740800009,32.47865253499999],[121.21510394400016,32.472664414000164],[121.27170993600012,32.44773449200015],[121.35413965600017,32.41482275900007],[121.38940888400025,32.38494757500008],[121.40111730900017,32.35213194900017],[121.41602623800023,32.26894765800013],[121.41773522200005,32.255275783000016],[121.41928144599999,32.25031159100014],[121.415782097,32.24860260600014],[121.40170332100014,32.24469635600014],[121.37720787900005,32.241644598000065],[121.36670983200004,32.238959052000084],[121.36085045700023,32.231634833000086],[121.36801191500014,32.227362372000144],[121.39869225400015,32.168931382],[121.42514082100016,32.1640485700001],[121.43116295700021,32.15135325700005],[121.43213951900012,32.133856512000094],[121.44336998800021,32.11432526200012],[121.44947350399998,32.11273834800009],[121.45614668100009,32.11554596600014],[121.46241295700011,32.119696356000176],[121.46729576900005,32.121771552],[121.4729923840001,32.11961497600002],[121.48194420700011,32.11025625200006],[121.48804772200018,32.10814036700005],[121.49659264400012,32.11025625200006],[121.53081178900017,32.10851859600008],[121.55423799100018,32.102498235000056],[121.59424889400012,32.08706289300012],[121.65536543100009,32.062933661000116],[121.68311608200021,32.04262929900001],[121.71778405000012,32.02558014500006],[121.727305535,32.01658763200014],[121.76436590100016,31.99528688200003],[121.79864398299999,31.970474858],[121.82194511600018,31.952486444000144],[121.82520592500023,31.9277204450001],[121.84783311500003,31.90460728500015],[121.87496019900001,31.86372290000016],[121.8746872200002,31.825903471000014],[121.90177628000005,31.78648745800002],[121.92205718300025,31.754378129000184],[121.93038277800004,31.726714179000098],[121.914842041,31.706434259000062],[121.8719979410001,31.69068168799999],[121.81730624900014,31.69094942500014],[121.7490450610002,31.711633711000115],[121.70291018200012,31.72055464700018],[121.67555427200003,31.72357259400003],[121.65505996999998,31.732380486000142],[121.60719438800018,31.748550791000024],[121.5743107430002,31.76552969000015],[121.5516056650001,31.773749091000138],[121.52906334700018,31.77920156500009],[121.51742597699997,31.783433335],[121.5079044930001,31.79287344000004],[121.50049889400012,31.80219147300006],[121.49488366,31.80646393400015],[121.48023522200018,31.810980536000116],[121.41602623800023,31.840643622000144],[121.3173968340001,31.883248006000162],[121.286418364,31.89058916600005],[121.22786432600017,31.865903812000123],[121.1851505870001,31.836737372000144],[121.11508706100001,31.79633360300015],[121.08662362000011,31.80183591500004],[121.06241343500018,31.813500849000107],[121.03993490600018,31.81933228400006],[121.00536508300003,31.820779027000025],[120.97781679200001,31.814365316000035],[120.95062836200012,31.825236128000043],[120.94056409400004,31.844647237000043],[120.94312584700018,31.867905992000043],[120.94312584700018,31.875311591000056],[120.94483483200011,31.88458893400009],[120.94141686300011,31.892523505000057],[120.92579186300011,31.895900783000073],[120.91928144600004,31.89935944200006],[120.91089928500007,31.917669989000117],[120.9055281910001,31.925970770000035],[120.84693444100006,31.991441148000074],[120.81080162900001,32.02260976800015],[120.743644416,32.03604475700003],[120.63437647600018,32.07700959800009],[120.5654876220001,32.07671334500019],[120.52236056199999,32.082601237000105],[120.49075762900016,32.08245338200011],[120.42782102700008,32.0529299870001],[120.36158287900017,32.02558014500006],[120.30030358200015,31.97166575700014],[120.26710045700021,31.948675848000065],[120.22372480600008,31.93683502800009],[120.17587324300004,31.93667226800012],[120.13135826900023,31.943182684000035],[120.090098504,31.955023505],[120.05233808700004,31.970933335000108],[120.02003014400013,31.99079010600012],[119.99203535199999,32.01585521000011],[119.92139733200021,32.108547268000066],[119.9122013680001,32.123724677000055],[119.90845787900005,32.13886139500015],[119.91098066500014,32.158148505000085],[119.92115319099999,32.19647858300011],[119.92212975400017,32.21743398600016],[119.90048261800008,32.19818756700012],[119.88754316499997,32.213853257],[119.87427819100006,32.26512278900013],[119.86215254000015,32.28115469000004],[119.84213300899998,32.29905833500008],[119.81836998800011,32.31370677299999],[119.79517662900017,32.31976959800009],[119.78199303499999,32.32123444200014],[119.75806725400005,32.326971747000115],[119.743907097,32.32721588700015],[119.69239342500022,32.31976959800009],[119.67684980600002,32.32843659100017],[119.66089928500004,32.345770575000145],[119.64087975400015,32.358832098000114],[119.61288496200002,32.35455963700004],[119.64901777400011,32.336086330000015],[119.66073652400004,32.32721588700015],[119.67855879000014,32.306219794000114],[119.68539472700016,32.292425848],[119.67847741000016,32.28628164300012],[119.67603600400005,32.27806224200013],[119.654551629,32.23476797100015],[119.64901777400011,32.21954987200017],[119.63575280000022,32.211004950000145],[119.61988366000006,32.20490143400015],[119.6060490240002,32.19692617400001],[119.62769616,32.18939850500006],[119.64527428500007,32.19521719],[119.65975996200008,32.20791250200007],[119.67164147200005,32.22077057500009],[119.6904403000001,32.23533763200011],[119.70142662900005,32.23346588700014],[119.71216881600016,32.22260163000006],[119.73023522200016,32.210598049000126],[119.75513756599999,32.20587799700003],[119.77857506600012,32.20465729400003],[119.78858483200005,32.198635158000016],[119.76376386800021,32.16250234600007],[119.76441491000018,32.143744208000115],[119.77247155000012,32.126776434000035],[119.78492272200006,32.11432526200012],[119.85556074300008,32.08698151200015],[119.86695397200006,32.07709381700014],[119.90716251700005,32.045384713000104],[119.93850207500005,32.01804285100012],[119.96122240600008,31.99061580100009],[119.97868014300016,31.968956602000063],[120.00639553200008,31.95030499900012],[120.03882897200016,31.94306061400006],[120.13095136800004,31.91229889500009],[120.1783146490001,31.904201565000147],[120.22999108200024,31.90888092700008],[120.34117085600015,31.9563205080001],[120.41822350400017,31.969671942],[120.4322208990002,31.975165106000034],[120.45578104300014,31.982518923],[120.45415713800006,32.00318557000004],[120.45541233499998,32.0214284420001],[120.46949303500001,32.02513255400008],[120.51783287899998,32.01874420800014],[120.60425866,31.991441148000074],[120.67001386800008,31.998846747000144],[120.68995201900006,31.99823639500009],[120.75035387400023,31.97833627600015],[120.77981815899999,31.91588266800012],[120.80744703300003,31.873769896000013],[120.82479860100014,31.82870246600005],[120.80775223800008,31.809740522000098],[120.75147545700021,31.82469310100005],[120.73853600400005,31.836818752000124],[120.72763105600009,31.850653387000037],[120.71713300899998,31.861070054000134],[120.72079511800004,31.83193594000006],[120.73145592500005,31.813869533000158],[120.74838300900014,31.802232164000042],[120.83189897999998,31.777766057000136],[120.89536285100021,31.763320274000122],[120.94849694100006,31.757879950000117],[120.9807235040001,31.75120677300005],[121.01376436400018,31.74303425700013],[121.06702629300004,31.724085562000123],[121.14440229000009,31.684658291000076],[121.21168053500004,31.627630927000055],[121.24472089900009,31.60040924700014],[121.3203231130001,31.50482819200009],[121.34091230600015,31.49095286700019],[121.36085045700023,31.477484442],[121.41773522200005,31.452785549000037],[121.44800866000004,31.4264997420001],[121.54623457100003,31.366115627000067],[121.63160241000017,31.335760809000092],[121.66993248800011,31.313055731000148],[121.72516399500003,31.281567150000157],[121.77750171300025,31.214393784000077],[121.87702454800014,31.09913587800004],[121.950820062,30.982080909000032],[121.97738292300006,30.914923436],[121.96007537800003,30.874256782000188],[121.90739924100008,30.85708552400017],[121.81080854200005,30.853230646000057],[121.73283463300017,30.84631690600018],[121.63113225500014,30.836555533000062],[121.54293703800012,30.816494909000067],[121.49203744900014,30.797734233000153],[121.45640612300022,30.783278050000046],[121.41059758600012,30.767388095000097],[121.3505965500001,30.71344635600012],[121.33350670700024,30.70307038000011],[121.26465905000006,30.689195054000134],[121.22193444100017,30.674994208000115],[121.20289147200016,30.665106512000094],[121.1777449880001,30.645656643],[121.15894616000007,30.636704819999988],[121.14852949300005,30.627834377000127],[121.14161217500023,30.617743231000148],[121.13656660200004,30.608140367000185],[121.13086998800023,30.59975820500013],[121.12134850400004,30.59300364799999],[121.10238691500003,30.589056708000026],[121.04740039100014,30.58275702800013],[121.02022566299998,30.57107114600002],[120.99814597000014,30.557924187000182],[120.97775867700001,30.543317594000158],[120.94889073600014,30.506815232000108],[120.93165123800021,30.47304922100015],[120.9288029310002,30.45307038000009],[120.93238366000017,30.43939850500014],[120.93848717500018,30.43073151200007],[120.93954511800023,30.42194245000017],[120.9288029310002,30.408107815000093],[120.92164147200018,30.405218817000144],[120.9017033210001,30.403550523000135],[120.89478600400017,30.40127187700007],[120.90455162900004,30.388617255],[120.90902753999997,30.38442617400007],[120.91513105600009,30.380764065],[120.91513105600009,30.374579169000143],[120.90072675900004,30.373602606000148],[120.88819420700011,30.36855703300013],[120.8505801630001,30.33021752800012],[120.83179130300006,30.305250446000155],[120.8107317260001,30.2965677020001],[120.78743319500008,30.293625282000097],[120.76961920800025,30.30602772300007],[120.75398941000005,30.32706166400014],[120.74496302100023,30.35961442900016],[120.72711885500004,30.375846261000092],[120.69814822600019,30.393950619000137],[120.66700167799998,30.40149997300001],[120.61919297100005,30.406095993000164],[120.47914493200003,30.403523661000133],[120.43031537899999,30.38984006200012],[120.41602459900007,30.367709702000113],[120.40723189700012,30.354235897000123],[120.39748223900008,30.32157964100004],[120.3888316580001,30.290844994000093],[120.37896691200004,30.273523748000073],[120.36455484100021,30.26863725700015],[120.34227554700024,30.274246356],[120.31625410200014,30.290920315],[120.28516686300017,30.298814194999988],[120.2579044930001,30.29808177300005],[120.23977767200019,30.28888044900016],[120.19576726000004,30.23288844600002],[120.14709443299996,30.198890965000185],[120.17896569100006,30.200669664000184],[120.19996178500016,30.217840887000122],[120.2302429900001,30.236035389000065],[120.25001061300011,30.270086981000034],[120.27438713500024,30.277618205000024],[120.29552252500017,30.278726003000102],[120.31456869600005,30.26351106900013],[120.331367696,30.249238020000075],[120.35033783500003,30.240734061000083],[120.36812084700014,30.240851155000186],[120.38472004300016,30.249588166000095],[120.39503014400023,30.264715887000147],[120.40463300900004,30.27993398600013],[120.42095557900008,30.305419965000155],[120.45049431400007,30.368860059000053],[120.4771330770002,30.374754400000157],[120.52490840700014,30.377872730000078],[120.621605795,30.37256287800001],[120.6516706160002,30.35927045500004],[120.65734748100013,30.336294046000106],[120.68494114100011,30.271780919000133],[120.69868588700005,30.251796329000015],[120.72551766500007,30.24263562900005],[120.73440116100008,30.2322131430001],[120.69135210999998,30.19745101900004],[120.66595566100013,30.166241500000137],[120.64381338500003,30.145872987000175],[120.63010994900006,30.13497216400016],[120.63178902200015,30.122387742000157],[120.65332335800016,30.102544600000112],[120.68246504000003,30.08490631700009],[120.70101972700004,30.08075592700014],[120.72339928500006,30.07973867400007],[120.75497480600015,30.08685944200012],[120.76498457100004,30.086615302],[120.77198326900012,30.083197333000086],[120.78402754000003,30.071682033000126],[120.79224694099999,30.066066799000126],[120.78370201900005,30.089300848000065],[120.76465905000012,30.096625067000062],[120.71412194100016,30.093329169000025],[120.68799889400023,30.097805080000096],[120.66456139400016,30.109605210000055],[120.64625084700012,30.126939195000045],[120.66285241000007,30.141180731000148],[120.70104639799999,30.184552056000097],[120.75142508700006,30.225625953000144],[120.81348715800017,30.213253156000135],[120.82862042500007,30.184990129000127],[120.85321522200014,30.174436014000136],[120.89281215100017,30.16979639900002],[120.92350395900004,30.185866239000134],[120.95419355600013,30.19196198100009],[120.96021569100004,30.195786851000108],[120.99439537900007,30.211086330000068],[121.10914147200018,30.282782294000086],[121.12877910600015,30.30162684],[121.14969672600004,30.32575333000015],[121.18538938300006,30.33756379800009],[121.25410242800014,30.348393234000024],[121.31321751800023,30.338191748],[121.37738414700006,30.325063579000084],[121.42959194500011,30.292976266000142],[121.50684671500008,30.220026009000076],[121.55459636900017,30.16089136600014],[121.58703420200013,30.11151193900018],[121.62332169700008,30.059874673000095],[121.64319368799997,30.03649266800009],[121.65830555600004,30.018388939000186],[121.67775592200009,30.00064095200004],[121.70676302900016,29.985109125000132],[121.7323437380001,29.978602543000093],[121.72193444100006,29.96051666900017],[121.73224787500011,29.962060135000158],[121.75011008200012,29.972505187000177],[121.76748188600006,29.973176555000023],[121.79664147200018,29.963039455000068],[121.81642969700006,29.95148136800016],[121.8498142990002,29.940380340000115],[121.87323052699999,29.932336897000095],[121.89925264600006,29.923139473],[121.91487649700005,29.918695843000066],[121.93555748800011,29.887355861000106],[121.94959078100011,29.886934479000146],[121.96241295700011,29.88849518400004],[121.98170006600007,29.89028554900004],[122.0562443370001,29.887355861000106],[122.06763756600007,29.8895531270001],[122.08668053500004,29.89935944200012],[122.10588654700021,29.906953422000147],[122.12914330200023,29.9037765020001],[122.13641456400015,29.884535001000117],[122.11475531500005,29.87155391900005],[122.06861412900004,29.85154857],[122.02816816499997,29.83600495000017],[121.98303901000004,29.82317576300015],[121.9660468110002,29.81124658200015],[121.93677819100004,29.79169342700014],[121.92441021800008,29.77347324300008],[121.90217086500004,29.752539493000157],[121.88532463900006,29.761283764000055],[121.8731489440001,29.753828466000027],[121.86610718400013,29.736565399000067],[121.86244825200006,29.708002121000064],[121.8345978930001,29.68708635500012],[121.77646532300001,29.65262473600016],[121.71772654500015,29.588653511000174],[121.70411217500005,29.572007554000077],[121.68734785200014,29.562648830000125],[121.66700280000005,29.556586005000142],[121.648203972,29.556708075000117],[121.63589838100009,29.554350982000027],[121.62387129000015,29.554429429000052],[121.60914147200006,29.545721747000144],[121.59253991,29.54360586100013],[121.5743107430002,29.552150783000073],[121.53082229500015,29.510014922000106],[121.52255000100004,29.5129216880001],[121.52011920599998,29.528061679000086],[121.51683591600013,29.546090835000044],[121.5110434650002,29.548988326000156],[121.49927819100016,29.549261786000145],[121.48438561300021,29.544663804000106],[121.47543379000004,29.53876373900006],[121.46786543100002,29.53119538000011],[121.45834394600016,29.525213934000096],[121.44336998800021,29.524237372000027],[121.44336998800021,29.51801178600009],[121.44825280000012,29.514105536000088],[121.45701871399999,29.50087088800016],[121.4553237260001,29.489355303000092],[121.441159789,29.481526372000086],[121.42783560400007,29.467946956000063],[121.44271132200005,29.43976717400001],[121.44259289400023,29.41536925200016],[121.46507415900011,29.42088645200012],[121.47346109500013,29.4489334440001],[121.47974694099999,29.47475820500007],[121.50489342500008,29.483832098000093],[121.50009199300008,29.475897528000118],[121.49179121200021,29.455959377000127],[121.51368248800021,29.451971747000144],[121.5117293630001,29.43756745000009],[121.49716230600009,29.422186591000145],[121.48096764400012,29.414984442000122],[121.47763105600009,29.41274648600013],[121.4766544930002,29.407782294000086],[121.47885175900005,29.402899481000123],[121.484864074,29.39054011200015],[121.49731378400011,29.393352530000147],[121.50892998500004,29.398349478000124],[121.51970976700014,29.406974949000173],[121.53132511900012,29.41703677800011],[121.53797279100014,29.424224223000163],[121.54879612300023,29.438601128000084],[121.5538085090001,29.450117227000092],[121.55965554800015,29.463073242000135],[121.56964134800013,29.474573824000018],[121.58125579200012,29.478139107000132],[121.60199445200024,29.483113264000036],[121.64267244900012,29.495218252000182],[121.67554772200018,29.5104841170001],[121.67430000100013,29.520331513000155],[121.68175557900011,29.523910369000145],[121.69979902400009,29.534328518],[121.71094811300011,29.538641669000086],[121.72461998800023,29.53847890800013],[121.72535241000017,29.535467841000024],[121.72535241000017,29.52903880400011],[121.72657311300006,29.522284247000087],[121.73129316499998,29.51801178600009],[121.73764082100003,29.51898834800015],[121.74586022199999,29.523098049000094],[121.76399931200004,29.530761435],[121.76646070199999,29.52064866500002],[121.75722263799999,29.499048921000124],[121.76128901000001,29.486046644000098],[121.76456720800006,29.47665015400004],[121.77838131000007,29.46942307800016],[121.79032644300017,29.47579545300003],[121.81198839800005,29.490118476000088],[121.82132672999997,29.51459860700011],[121.83057701900012,29.528062242000043],[121.84742272199999,29.524237372000027],[121.8448185560002,29.53620026200015],[121.83651777400016,29.542385158000133],[121.82553144599999,29.546372789000102],[121.81397545700015,29.552150783000073],[121.79981530000023,29.54559967699999],[121.7827254570001,29.54344310099999],[121.7657169930002,29.545721747000144],[121.75827350300018,29.54809864200008],[121.74496504000003,29.544663804000106],[121.74842207900004,29.562566943000107],[121.77432204500016,29.575436248000084],[121.79612041300001,29.60059115600014],[121.81836998800021,29.606634833000058],[121.83452772000024,29.61557007200004],[121.8540145190001,29.61591217700011],[121.86793053500017,29.627264716000084],[121.88013756600006,29.62352122600005],[121.89964357200007,29.62752679],[121.9157820970001,29.64085521000014],[121.92725670700021,29.634466864000117],[121.94263756600017,29.611273505],[121.95362389400023,29.606146552000084],[121.96631920700011,29.602484442000115],[121.97120201900006,29.59332916900014],[121.97095787900005,29.56891510600009],[121.96371504000003,29.560207424],[121.94971764400023,29.556341864],[121.941172722,29.551174221000014],[121.9497990240002,29.53847890800013],[121.92212975400004,29.531154690000122],[121.91041100400005,29.52456289300015],[121.9123641290001,29.51430898600013],[121.92221113400004,29.509222723],[121.93555748800011,29.504380601000136],[121.94410241000004,29.49770742400007],[121.9399520190001,29.48700592700005],[121.94271894600014,29.479722398000135],[121.97095787900005,29.44912344000004],[121.96933027400009,29.439154364000114],[121.96322675900004,29.431952216000084],[121.95777428500016,29.423081773000046],[121.95728600400012,29.408148505],[121.94752037900004,29.421087958],[121.93628991000006,29.427720445000165],[121.93005624400016,29.42531477700005],[121.92255563600013,29.418146385000068],[121.92910204500006,29.408735091000143],[121.92157721900007,29.398634371000085],[121.91572936400011,29.390703566000166],[121.92144327000008,29.38130345000017],[121.91634801900003,29.36329405300007],[121.91624575700008,29.348936661000078],[121.92701256600012,29.338609117000185],[121.92945397200005,29.33926015800013],[121.93148847700014,29.331203518],[121.93140709700016,29.323879299],[121.92505944100006,29.3190778670001],[121.90894616000017,29.318793036000088],[121.91163170700017,29.315008856000144],[121.9157820970001,29.305121161000145],[121.90048261800014,29.298651434000035],[121.9058537120001,29.28461334800009],[121.92221113400004,29.270493882000054],[121.9399520190001,29.264146226000108],[121.94955488399997,29.267279364],[121.96265709700006,29.28143952000012],[121.97437584700008,29.28461334800009],[121.97559655000022,29.280951239000114],[121.98585045700005,29.263332424000012],[121.99146569100017,29.2573102890001],[121.96656334700006,29.255764065000065],[121.9532169930002,29.24966054900007],[121.95069420700011,29.23712799700017],[121.95728600400012,29.21637604400017],[121.94296308700021,29.22321198100009],[121.93970787900015,29.210109768000123],[121.9399520190001,29.204291083000083],[121.94296308700021,29.195868231000034],[121.92212975400004,29.19578685100005],[121.89380944100016,29.18707916900014],[121.840586785,29.161118882000082],[121.81255120299996,29.16148464700014],[121.78534674400005,29.16808548800007],[121.78803572600005,29.201943108000034],[121.78977036700009,29.21562526300012],[121.79490121800002,29.24370471800013],[121.79586869199997,29.266036602000113],[121.80182094300008,29.292667717000104],[121.7996525400001,29.305121161000145],[121.80868574300008,29.311753648000103],[121.81836998800021,29.316229559000153],[121.828868035,29.31854889500012],[121.840586785,29.318793036000088],[121.83065839900011,29.333889065000097],[121.81698652400004,29.33218008000007],[121.80494225400004,29.323716539000046],[121.7996525400001,29.318793036000088],[121.7881779310002,29.328558661000116],[121.78793378999998,29.342596747000172],[121.7996525400001,29.373968817],[121.78663170700013,29.374497789000188],[121.77588951900005,29.37262604400003],[121.76685631600016,29.367743231000148],[121.75863691500014,29.359767971000093],[121.77084394600004,29.33779531500009],[121.77788054600013,29.29638384499999],[121.77431375900007,29.253887369000136],[121.75863691500014,29.22939687700007],[121.74569746200004,29.201605536],[121.73878014400016,29.195868231000034],[121.72432815900007,29.182034848000132],[121.70446018300012,29.17418236200002],[121.67059743200004,29.17574791400007],[121.652457796,29.183020241000136],[121.64193769600016,29.202093817000087],[121.63917076900012,29.217271226000083],[121.64161217500022,29.267564195000134],[121.64576256600016,29.28119538000009],[121.65455162900005,29.29999420800011],[121.64039147200005,29.30662669500019],[121.62484785200003,29.301459052],[121.62891686300006,29.28461334800009],[121.6228947270001,29.264105536000116],[121.63233483200011,29.210638739],[121.62891686300006,29.188421942000147],[121.61475670700004,29.206000067000087],[121.60645592500005,29.22736237200003],[121.58871503999998,29.291489976],[121.58399498800006,29.299872137000154],[121.5743107430002,29.305121161000145],[121.56308027400021,29.304185289000074],[121.56202233200005,29.295843817000087],[121.56723066500015,29.28530508000013],[121.5743107430002,29.27777741100006],[121.562754754,29.271877346000124],[121.550547722,29.27142975500014],[121.52588951900024,29.27777741100006],[121.52588951900024,29.270982164000042],[121.53638756600012,29.25828685099999],[121.53052819100006,29.238226630000113],[121.51693769599999,29.21906159100014],[121.50489342500008,29.208929755],[121.50489342500008,29.202093817000087],[121.5117293630001,29.18927643400015],[121.50350996200021,29.178941148000046],[121.49097741,29.175970770000117],[121.48438561300021,29.18528880400008],[121.48023522200018,29.19721100500011],[121.47120201900006,29.19135163000009],[121.46151777400021,29.176459052000112],[121.45639082100004,29.161118882000082],[121.43140709700016,29.172186591000113],[121.419769727,29.171454169000167],[121.40853925899997,29.161118882000082],[121.44336998800021,29.147406317000144],[121.43930097700014,29.145453192],[121.43848717500022,29.144842841000028],[121.43808027400004,29.143866278000147],[121.43604576900012,29.14061107000011],[121.45639082100004,29.14061107000011],[121.45639082100004,29.13377513199999],[121.44149824300004,29.131089585000108],[121.42831464900023,29.12714264500012],[121.41537519599999,29.119696356000148],[121.40170332100014,29.10651276200009],[121.49683678500006,29.104437567000087],[121.52865644599997,29.115057684000035],[121.62142988400002,29.113267320000045],[121.62452233200013,29.1043968770001],[121.62460371200008,29.08828359600012],[121.62142988400002,29.070868231000144],[121.61475670700004,29.05805084800012],[121.59921308700004,29.05023834800012],[121.58505293100015,29.053615627000127],[121.57113691500014,29.060858466000173],[121.55640709700019,29.064886786000148],[121.53687584700016,29.0611839860001],[121.53028405000012,29.05117422100001],[121.53207441499997,29.02049388200011],[121.5380965500001,29.01805247600008],[121.54859459700018,29.021429755],[121.5527449880001,29.02871328300002],[121.53956139400017,29.03758372600005],[121.55738366000006,29.049017645],[121.61744225400004,29.039984442],[121.64193769600016,29.05125560099999],[121.68173261800003,29.026760158000155],[121.68978925899998,29.017075914000102],[121.67587324300021,29.013251044000086],[121.6617130870001,29.002915757000082],[121.65381920700021,28.98859284100008],[121.659434441,28.972723700000145],[121.663828972,28.969916083000115],[121.6689559250001,28.96898021000014],[121.68018639400012,28.969305731000148],[121.68466230600009,28.967515367000157],[121.68417402400011,28.96344635600012],[121.68287194100012,28.95888906500006],[121.68417402400011,28.95563385600012],[121.69214928500004,28.953355210000055],[121.70948326900022,28.951157945000045],[121.71778405000012,28.94879791900011],[121.69752037899998,28.936835028000175],[121.68946373800006,28.92780182500014],[121.68417402400011,28.914699611000103],[121.62850996200008,28.93195221600011],[121.60531660200016,28.942572333000143],[121.58741295700011,28.963120835],[121.5852970710001,28.938299872000027],[121.57081139400023,28.93008047100012],[121.55429121200004,28.93569570500013],[121.54647871200002,28.952215887000122],[121.53711998800023,28.955023505000057],[121.51685631599999,28.956366278000147],[121.49781334699999,28.949652411],[121.49179121200021,28.92837148600013],[121.50489342500008,28.935207424000154],[121.50766035200016,28.92499420800012],[121.5118107430001,28.91693756700009],[121.5176701180002,28.912787177000144],[121.52588951900024,28.914699611000103],[121.53516686300004,28.903713283000126],[121.54981530000006,28.897853908000098],[121.566172722,28.89337799700003],[121.58057701900006,28.886786200000145],[121.5903426440001,28.891913153000147],[121.60165449300008,28.893622137000154],[121.61085045700005,28.891180731000038],[121.61695397200006,28.880275783000155],[121.62671959700018,28.88084544500013],[121.62891686300006,28.87714264500009],[121.62777754000015,28.870835679000052],[121.62265058700015,28.861273505000057],[121.62142988400002,28.8563500020001],[121.62354576900022,28.842271226000047],[121.62826582100004,28.84125397300009],[121.63502037900015,28.84520091400016],[121.64193769600016,28.84585195500013],[121.65650475400001,28.83803945500013],[121.66236412900005,28.833441473],[121.66993248800011,28.825344143000066],[121.65381920700021,28.81195709800006],[121.64673912900015,28.807684637000147],[121.63575280000012,28.80483633000001],[121.63575280000012,28.798041083],[121.66260826900006,28.798041083],[121.66260826900006,28.79059479400011],[121.65113366000004,28.78790924700003],[121.64258873800013,28.784002997000062],[121.63550866000017,28.77850983300011],[121.62891686300006,28.77069733300011],[121.62623131600002,28.768052476000133],[121.62232506599999,28.765529690000037],[121.61825605600004,28.761948960000137],[121.61475670700004,28.756415106000034],[121.61972089900021,28.74827708500011],[121.62240644599999,28.74188873900009],[121.62142988400002,28.735907294000167],[121.60556074300011,28.72467682500017],[121.50277754000011,28.700384833],[121.35116621200004,28.71185944200012],[121.33423912900017,28.71702708500014],[121.32016035200003,28.72483958500014],[121.30616295700004,28.735907294000167],[121.2984318370001,28.74363841400016],[121.29493248800006,28.74811432500014],[121.29029381600006,28.751613674000122],[121.27890058700011,28.756415106000034],[121.26889082099999,28.75828685099999],[121.24642988400002,28.760077216000166],[121.2378849620001,28.763861395],[121.23471113400004,28.769964911],[121.22738691500004,28.791408596000124],[121.22437584699999,28.798041083],[121.21444746200021,28.80731842700014],[121.20801842500005,28.809556382000107],[121.20101972700004,28.80951569200012],[121.19003339900004,28.811672268000123],[121.17359459700006,28.8178571640001],[121.16285241000006,28.825344143000066],[121.15772545700021,28.83148834800015],[121.15577233200005,28.837551174000154],[121.15211022200006,28.842515367000185],[121.14234459700016,28.84585195500013],[121.14234459700016,28.83958567900008],[121.15967858200004,28.813544012000094],[121.17188561300023,28.806952216000028],[121.19345136800004,28.80483633000001],[121.20606530000022,28.799058335000055],[121.21827233200011,28.785793361000046],[121.22738691500004,28.770738023000106],[121.23121178500004,28.760158596000153],[121.2408146490001,28.752752997000172],[121.28589928500017,28.738267320000134],[121.29932701900017,28.72288646],[121.29867597700004,28.701239325000085],[121.28646894600004,28.692694403000175],[121.27035566500015,28.68744538],[121.25839277400021,28.67511627800003],[121.3276473320001,28.692043361000017],[121.36500084700006,28.696030992000185],[121.38135826900005,28.681952216000138],[121.41382897200005,28.696600653000147],[121.45484459700018,28.689520575000113],[121.49000084700005,28.66571686400012],[121.51012813400014,28.65705930900019],[121.5255562400001,28.62465465100017],[121.53036950800018,28.59947887600005],[121.53843327399996,28.571445577000148],[121.54943924500004,28.551010215000062],[121.57315982200012,28.525133728000142],[121.58161920600016,28.5046902590001],[121.55087324300004,28.502142645000063],[121.53492272200005,28.50340403900016],[121.52100670700015,28.501044012000122],[121.51156660200004,28.489488023000018],[121.5212508470001,28.490708726000104],[121.54492634100002,28.49247389800014],[121.58460110400003,28.489102413000165],[121.60774270100015,28.477202856000062],[121.60036092900006,28.465425109000147],[121.58443942799995,28.45421464300004],[121.58377693300005,28.442946184000093],[121.59287430900015,28.431106205],[121.60746340000004,28.420318753000075],[121.6158883200001,28.397214387000034],[121.63226304600019,28.37944568300004],[121.62852500900006,28.363901837000025],[121.6315316650001,28.355842956000075],[121.6340438160001,28.347235419000025],[121.640879754,28.34967682500014],[121.64771569100007,28.348456122000027],[121.65634199300015,28.33930084800015],[121.6416935560002,28.321844794000082],[121.62134850400005,28.28510163],[121.60792076900022,28.27045319200009],[121.5855412120002,28.25682200700014],[121.57813561300023,28.260321356000034],[121.58057701900006,28.300848700000145],[121.56748856099998,28.30449500700003],[121.54149122500016,28.32178681500009],[121.52196069100002,28.326868963000138],[121.49998648600014,28.33267302000003],[121.47308608900018,28.330602852000155],[121.45639082100004,28.31883372599999],[121.44776451900013,28.31590403900016],[121.44125410200006,28.311712958000143],[121.43726647200006,28.305609442000147],[121.43604576900012,28.29710521000011],[121.42977949300008,28.29710521000011],[121.42066491000016,28.30418528900016],[121.4089461600001,28.30491771000011],[121.3989363940001,28.298488674000012],[121.3955184250001,28.284084377000124],[121.40137780000023,28.27610911700016],[121.41146894600004,28.27391185099999],[121.41879316500004,28.269720770000063],[121.41602623800023,28.256170966000084],[121.40805097699999,28.24628327000009],[121.3989363940001,28.243841864000146],[121.38803144600006,28.242661851000104],[121.37452233200015,28.236273505],[121.36483808700011,28.225816148000106],[121.36109459700016,28.214748440000093],[121.35889733200005,28.20221588700018],[121.35401451900012,28.187892971000093],[121.36866295700011,28.19204336100013],[121.37452233200015,28.19525788],[121.37671959700006,28.184149481000148],[121.37403405000005,28.172593492000132],[121.36817467500012,28.162014065000093],[121.36085045700023,28.153753973],[121.35141035199999,28.14655182500014],[121.3457951180002,28.14516836100007],[121.34009850400004,28.146429755],[121.33008873800023,28.147528387000033],[121.32618248800021,28.151800848000146],[121.30933678500006,28.174872137000094],[121.29721113400015,28.17645905200014],[121.28785241,28.180894273000106],[121.27518434200009,28.208199163000145],[121.26169450400012,28.225790679000127],[121.22516539300008,28.238862571000183],[121.24887129000003,28.27020905200014],[121.2368270190001,28.30609772300012],[121.2031356130001,28.331854559000178],[121.21029707100016,28.34373607000013],[121.21753991000016,28.352362372000027],[121.23047936300011,28.348089911000116],[121.24415123800023,28.349107164000184],[121.25619550900015,28.35516998900009],[121.26465905000006,28.36603424700017],[121.23096764400006,28.35907623900009],[121.21412194100017,28.360581773000135],[121.18409264400023,28.38214752800003],[121.16895592500023,28.384833075000117],[121.16163170700021,28.37750885600012],[121.16895592500023,28.35976797100004],[121.14429772200005,28.343573309000146],[121.13025003800006,28.305554447000034],[121.08847089900004,28.29319896000011],[121.07211347700003,28.291693427000084],[121.066661004,28.311428127000013],[121.05909264400023,28.311428127000013],[121.03492272200006,28.308172919000143],[121.02499433700002,28.304592190000093],[121.03956139400006,28.285345770000145],[121.05811608200004,28.2799339860001],[121.07894941500017,28.278143622000112],[121.12180321299999,28.28436223600012],[121.13009527200008,28.265928751],[121.124753056,28.235520137000105],[121.11946677900008,28.218936170000106],[121.10894349800004,28.199610238000147],[121.10052737800011,28.184894263000146],[121.08583632600003,28.16650385900014],[121.0533845670001,28.14816311700015],[121.03137613800007,28.126106653000036],[121.0093782180002,28.103132635000136],[121.00201713000014,28.085642366000098],[121.00088550300016,28.050635666000158],[120.99351229800006,28.025779091000103],[120.98093608400009,28.005536972000083],[120.96522777500014,27.987144917000034],[120.92139733200023,27.981675523000106],[120.89844811300023,27.992661851000076],[120.87997480600019,27.998724677000084],[120.85580488400004,27.99673086100013],[120.81959069100017,27.989243882000082],[120.80079186300021,27.993394273000106],[120.78109785199999,28.002386786000116],[120.76270592500023,28.01430898600016],[120.74756920700021,28.02708567900011],[120.7310490240001,28.03583405199999],[120.70753014400012,28.04120514500015],[120.66195722700016,28.044501044000167],[120.62094160200016,28.039943752000124],[120.60604902400009,28.042222398000106],[120.59017988400008,28.054388739],[120.58497155000005,28.095526434000146],[120.57699629000003,28.11562734600004],[120.55958092500023,28.11277903900016],[120.57447350399998,28.100002346000124],[120.5801701180001,28.08978913],[120.5800887380001,28.046128648000106],[120.58204186300016,28.034328518000123],[120.58895918100004,28.02667877800009],[120.60425866,28.023993231000034],[120.65894616000017,28.023993231000034],[120.67359459700018,28.021714585000055],[120.70728600400017,28.00971100500011],[120.73853600400005,27.983099677],[120.75058027400004,27.97557200700014],[120.83529707100014,27.95595937700007],[120.8472599620001,27.948960679],[120.85425866000016,27.934637762000094],[120.86376174800014,27.918105656000122],[120.86261188600022,27.902874352000097],[120.86836368100013,27.882559233],[120.85227198200019,27.85819188600003],[120.82700426300019,27.849049252],[120.80748625600009,27.83482669300015],[120.79601825800015,27.805369744000032],[120.76963001400007,27.772849369000124],[120.74096005100014,27.73320273300014],[120.72261449600015,27.715909536000154],[120.7042548940001,27.712838551000075],[120.68726647200002,27.726711330000043],[120.65267988400004,27.753241278000175],[120.63526451900022,27.76333242400015],[120.6367293630001,27.745835679],[120.64527428500006,27.734279690000065],[120.67245527400021,27.71149323100006],[120.67359459700018,27.704250393000123],[120.6801805490002,27.68637929900011],[120.66986121199999,27.67721302299999],[120.66757717300017,27.66806019900004],[120.67310631600019,27.65961334800015],[120.675629102,27.659654039000042],[120.66648375600002,27.62535791],[120.63559004000015,27.608710028000033],[120.61833143800018,27.593725426],[120.6068742470001,27.58148778300007],[120.59657442500006,27.57028277800005],[120.60578497500002,27.549958836000126],[120.61384852800009,27.52963320700006],[120.6184590840002,27.516421152000035],[120.63338728600017,27.507312262000184],[120.65211022200006,27.503363348],[120.66195722700016,27.50324127800003],[120.67684980600019,27.494614976000133],[120.68197675900004,27.481594143000148],[120.67807050900004,27.46645742400015],[120.6656193370002,27.451727606000148],[120.65601647200006,27.44627513200011],[120.65048261800021,27.446112372000144],[120.64649498800023,27.444484768000123],[120.63770592500006,27.424302476000108],[120.63624108200011,27.41600169500013],[120.63941491000017,27.408270575000117],[120.64893639400006,27.400213934000178],[120.63941491000017,27.384426174000126],[120.63526451900022,27.379706122000027],[120.62256920700004,27.38035716400016],[120.55958092500023,27.402085679000052],[120.5459090500001,27.403265692000087],[120.54493248800023,27.38519928600006],[120.53964277400003,27.365220445000162],[120.52735436300011,27.34979889500015],[120.5048934250001,27.344956773000078],[120.5048934250001,27.338771877000013],[120.5171818370001,27.337225653000147],[120.53419030000023,27.333197333],[120.54745527400004,27.327582098000093],[120.54932701900022,27.321030992000104],[120.54615319100017,27.31549713700018],[120.54525800900008,27.30849844],[120.5459090500001,27.29401276200015],[120.54395592500005,27.28595612200003],[120.53939863400004,27.28188711100016],[120.53467858200011,27.27960846600008],[120.53158613400004,27.276678778000175],[120.52597089900021,27.272650458],[120.52149498800006,27.268296617000104],[120.51783287899998,27.263006903000033],[120.52003014400012,27.26170482000013],[120.52271569100016,27.25381094000006],[120.52597089900021,27.23883698100003],[120.52100670700004,27.22955963700018],[120.51205488400015,27.223618882000054],[120.50814863400015,27.216009833000115],[120.51783287899998,27.201605536000145],[120.49903405000018,27.197211005000057],[120.48145592500022,27.186346747000172],[120.4683537120001,27.182196356000034],[120.46338951900012,27.1979027360001],[120.45972741000016,27.220445054],[120.45028730600002,27.223293361000042],[120.4370223320001,27.219468492000104],[120.42172285200014,27.222072658000013],[120.41871178500006,27.209662177000084],[120.41920006600004,27.20636627800006],[120.42042076900017,27.1979027360001],[120.42920983200021,27.173651434000117],[120.4067488940001,27.18423086100016],[120.37623131600016,27.236273505000113],[120.34725996200011,27.249416408000073],[120.33326256600004,27.247300523000074],[120.31788170700011,27.24323151200012],[120.30307050900004,27.24225495000003],[120.29200280000006,27.249416408000073],[120.28809655000006,27.264471747000083],[120.29525800900002,27.276271877000067],[120.30762780000019,27.284816799000097],[120.31934655000022,27.290350653000118],[120.31112714900006,27.29389069200009],[120.3100692070001,27.295314846000153],[120.31031334700005,27.294175523000106],[120.30640709700006,27.290350653000118],[120.29883873800011,27.29779694200009],[120.30575605600008,27.300604559000035],[120.3090926440001,27.303941148000078],[120.31185957099999,27.31769440300017],[120.29151451900012,27.308905341000113],[120.28516686300017,27.30402252800006],[120.28077233200005,27.31175364800005],[120.27613366000006,27.316717841000113],[120.26400800900015,27.32444896000011],[120.26571699300004,27.31635163],[120.26596113400004,27.311916408000013],[120.26710045700021,27.30857982000019],[120.27149498800023,27.30402252800006],[120.25855553499999,27.299994208000086],[120.2483016290001,27.303534247000144],[120.23788496200021,27.309149481000148],[120.22372480600008,27.311468817000115],[120.22730553500006,27.303941148000078],[120.23072350400017,27.29832591400016],[120.23560631600004,27.29401276200015],[120.24366295700005,27.290350653000118],[120.24366295700005,27.283514716000084],[120.22567793100022,27.268622137000033],[120.2192488940001,27.270941473],[120.21298261800003,27.283026434000092],[120.19581139400022,27.29779694200009],[120.19214928500017,27.287665106000034],[120.19312584700005,27.278062242000047],[120.195567254,27.269761460000083],[120.19581139400022,27.263006903000033],[120.19141686300016,27.25604889500015],[120.17530358200011,27.23883698100003],[120.17554772200006,27.228949286000116],[120.17750084700018,27.221502997000055],[120.18238366000004,27.216864325000117],[120.19239342500025,27.215277411000088],[120.20191491000006,27.217840887000175],[120.20541425900004,27.22386302299999],[120.20663496200015,27.230454820000162],[120.20948326900006,27.23509349200019],[120.23934980600008,27.251125393000095],[120.25660241000016,27.256903387000065],[120.26400800900015,27.252834377000095],[120.27003014400016,27.239447333],[120.29761803500016,27.22679271000011],[120.30640709700006,27.215277411000088],[120.31910240999999,27.225897528000033],[120.33358808700004,27.23509349200019],[120.33358808700004,27.228908596000124],[120.33985436300011,27.228908596000124],[120.34131920700005,27.23305898600016],[120.3427840500001,27.23582591400013],[120.34725996200011,27.242580471000064],[120.36483808700022,27.225083726000104],[120.36548912900015,27.209621486000103],[120.34725996200011,27.180487372000027],[120.36988366000004,27.187486070000105],[120.38624108200005,27.17951080900015],[120.40186608200015,27.165228583000054],[120.42172285200014,27.153143622000144],[120.42172285200014,27.14695872599999],[120.40658613400015,27.146429755000113],[120.38461347700016,27.14984772300012],[120.37387129000003,27.14695872599999],[120.40796959700006,27.139553127000013],[120.40796959700006,27.132717190000093],[120.3813582690001,27.12523021000011],[120.37387129000003,27.132717190000093],[120.36703535200004,27.12523021000011],[120.3813582690001,27.11904531500015],[120.3813582690001,27.11225006700012],[120.37387129000003,27.11225006700012],[120.37387129000003,27.106024481000148],[120.39503014400023,27.106024481000148],[120.3775333990001,27.09857819200009],[120.35792076900012,27.09837474200013],[120.28272545700023,27.11229075700011],[120.27491295700023,27.115627346000124],[120.26205488400004,27.129950262000037],[120.25513756599999,27.13304271000011],[120.24366295700005,27.132717190000093],[120.24716230600004,27.121649481000144],[120.25245201900023,27.113959052000112],[120.25839277400004,27.10708242400004],[120.26400800900015,27.09857819200009],[120.27833092500025,27.063788153000033],[120.27149498800023,27.05756256700009],[120.25782311300011,27.072658596000096],[120.2452091810002,27.06533437700007],[120.23218834699999,27.05068594000006],[120.21631920700011,27.04393138200014],[120.21631920700011,27.0370954450001],[120.24154707100014,27.03400299700003],[120.2556258470001,27.01752350500014],[120.25521894599999,26.997056382],[120.23739668100019,26.981878973],[120.22999108200024,26.98932526200015],[120.21607506600004,26.98407623900009],[120.19320722700004,26.981350002000013],[120.14869225400005,26.981878973],[120.18702233200004,26.96352773600013],[120.19955488400008,26.96137116100014],[120.21387780000022,26.963812567000062],[120.22592207100017,26.967352606000148],[120.23568769600003,26.966376044000082],[120.24366295700005,26.955145575000174],[120.23934980600008,26.952337958000115],[120.23471113400015,26.945624091000084],[120.22999108200024,26.94090403900016],[120.23739668100019,26.927232164000046],[120.22860761800003,26.923000393000034],[120.2241317070001,26.9186872420001],[120.21908613400015,26.915432033000073],[120.20948326900006,26.9135602890001],[120.20077558700008,26.915432033000073],[120.16846764400006,26.927232164000046],[120.14722741000017,26.929022528000033],[120.12574303500006,26.927313544000025],[120.11361738400015,26.918768622000087],[120.12069746200021,26.89988841400016],[120.10962975400017,26.894354559000064],[120.10279381600016,26.890082098000118],[120.09555097700003,26.88727448100009],[120.08326256600017,26.886297919000114],[120.07911217500023,26.888373114000117],[120.07349694100007,26.893052476000047],[120.06568444100006,26.897853908000126],[120.05575605600002,26.89988841400016],[120.03199303500004,26.89988841400016],[120.05526777400004,26.889390367000185],[120.04420006600004,26.876695054000137],[120.02515709700006,26.860174872000144],[120.02450605600009,26.837876695000105],[120.03370201900022,26.829738674000012],[120.04761803500006,26.82322825700011],[120.06299889400006,26.81891510600009],[120.07626386800021,26.817368882000054],[120.08505293100009,26.813706773000103],[120.09652754000004,26.805894273000106],[120.11085045700013,26.798732815000065],[120.12818444100016,26.796942450000085],[120.11963951900006,26.784165757000054],[120.1069442070001,26.771795966000113],[120.09774824300021,26.758490302],[120.10018964900003,26.74290599200019],[120.11239668100002,26.735744533000158],[120.12875410200014,26.735052802000112],[120.14283287900001,26.732814846000124],[120.14869225400005,26.721177476000108],[120.14356530000022,26.710109768000095],[120.1319279310002,26.707220770000063],[120.11850019600003,26.706366278000147],[120.10767662900005,26.701320705000015],[120.10206139400023,26.689154364000117],[120.10360761800008,26.675279039000046],[120.11044355600009,26.660630601000133],[120.12069746200021,26.646063544000114],[120.13436933700002,26.653509833],[120.13436933700002,26.646063544000114],[120.09896894600016,26.628363348],[120.09034264400022,26.622219143000123],[120.08041425900014,26.61741771000014],[120.07520592500023,26.62148672100001],[120.07650800900015,26.63011302300002],[120.08668053500011,26.63922760600009],[120.07968183700021,26.646063544000114],[120.02784264400012,26.61530182500003],[120.014903191,26.611273505000057],[119.95997155000012,26.611273505000057],[119.94874108200011,26.606146552000055],[119.94117272200018,26.593329169000114],[119.93702233200021,26.576727606000144],[119.93563886800003,26.560451565000122],[119.88428795700023,26.523179429000052],[119.84717858200023,26.523627020000145],[119.83570397200016,26.531398830000125],[119.83261152400009,26.550482489000117],[119.8359481130001,26.56150950700008],[119.84164472699997,26.562404690000065],[119.84815514400013,26.560736395000063],[119.853770379,26.56411367400007],[119.85482832100016,26.571926174000065],[119.85206139400012,26.591009833000058],[119.853770379,26.59829336100016],[119.86850019599997,26.610052802000137],[119.88843834700018,26.61713288],[119.9289656910001,26.62563711100013],[119.94483483200023,26.632025458000058],[119.96851647200006,26.64793528900016],[119.98414147199999,26.653509833],[119.9820255870002,26.65814850500011],[119.97877037900017,26.66962311400006],[119.97681725400007,26.67401764500012],[119.98633873800011,26.67963288000014],[120.000254754,26.70770905200014],[120.01148522200013,26.721177476000108],[120.0122990240002,26.719061591000024],[120.01783287900004,26.717027085],[120.02816816500004,26.714992580000157],[120.03231855600008,26.716620184000174],[120.03199303500004,26.720404364],[120.03052819100016,26.72492096600014],[120.03199303500004,26.728583075000113],[120.07764733200011,26.785589911000116],[120.07968183700021,26.796942450000085],[120.06747480600004,26.80048248900006],[120.014903191,26.79002513199999],[119.94629967500005,26.796942450000085],[119.9251408210001,26.792181708],[119.92367597700003,26.781236070000134],[119.93563886800003,26.759019273000078],[119.92408287900005,26.732489325000117],[119.90186608200005,26.710109768000095],[119.88803144600014,26.687241929],[119.90162194099999,26.659735419000143],[119.879649285,26.655340887000147],[119.85694420700004,26.653509833],[119.853770379,26.68768952000006],[119.85059655000023,26.689520575000145],[119.82919355600008,26.714992580000157],[119.81959069099999,26.711371161],[119.80307050900005,26.693793036000056],[119.79175866000006,26.68768952000006],[119.79151451900012,26.704779364000117],[119.80225670700013,26.766791083000058],[119.81153405000006,26.775783596000096],[119.84009850400017,26.79002513199999],[119.82837975400015,26.79564036700019],[119.81576582099999,26.797593492000047],[119.8032332690001,26.795721747000172],[119.79175866000006,26.79002513199999],[119.79737389400023,26.81639232000019],[119.81503339900006,26.82562897300015],[119.83480878999998,26.83250560100005],[119.84628339900021,26.852199611000017],[119.81983483200024,26.84926992400007],[119.79835045700023,26.841376044000114],[119.78199303499999,26.828517971000096],[119.77059980600004,26.81053294500005],[119.76522871200011,26.79409414300015],[119.76587975400004,26.784002997000087],[119.76880944100006,26.77440013200011],[119.77059980600004,26.759019273000078],[119.76644941500003,26.74494049700003],[119.75619550899998,26.737738348],[119.74301191500004,26.73712799700003],[119.73023522200016,26.74290599200019],[119.73023522200016,26.74909088700015],[119.73267662900005,26.763413804000052],[119.72608483200023,26.786525783000016],[119.7120060560002,26.807928778000147],[119.69239342500022,26.817368882000054],[119.68580162900018,26.811997789000102],[119.68018639400005,26.799627997000172],[119.67628014400005,26.785874742000043],[119.67505944100004,26.776434637000033],[119.67798912900017,26.763128973000033],[119.68384850400004,26.754217841000084],[119.71029707099999,26.729885158000016],[119.72022545700011,26.72451406500015],[119.72738691500017,26.717922268000063],[119.73023522200016,26.704738674000122],[119.72494550900004,26.69782135600003],[119.71314537900005,26.699855861000156],[119.69613691500008,26.70819733300011],[119.68043053499999,26.721828518000066],[119.66382897200006,26.74054596600014],[119.64600670700004,26.753322658000073],[119.6265568370001,26.74909088700015],[119.620371941,26.765570380000057],[119.6226505870001,26.77716705900015],[119.62183678500017,26.786769924000126],[119.6060490240002,26.796942450000085],[119.59774824300004,26.797105210000055],[119.58456464900009,26.794623114000117],[119.57553144599997,26.788031317000062],[119.579437696,26.776434637000033],[119.57154381599999,26.76654694200012],[119.55762780000023,26.75877513200011],[119.55209394600003,26.74909088700015],[119.55030358200023,26.73720937700001],[119.55152428500006,26.72516510600009],[119.55469811300011,26.714829820000187],[119.55892988400004,26.70819733300011],[119.57081139400006,26.70327383000007],[119.58375084700016,26.703924872000027],[119.59595787900015,26.703314520000063],[119.6060490240002,26.694525458],[119.60824629000004,26.683539130000142],[119.60645592500022,26.669907945000187],[119.59986412900015,26.646063544000114],[119.56812584700012,26.664536851000136],[119.55892988400004,26.666571356000148],[119.54444420700004,26.66250234600001],[119.54110761800004,26.65631745000003],[119.54542076900023,26.636175848],[119.55420983200023,26.615179755000053],[119.5923771490001,26.59088776200018],[119.59986412900015,26.57037995000003],[119.6060490240002,26.57037995000003],[119.61890709700006,26.587836005],[119.63778730600008,26.598822333000143],[119.657969597,26.607652085],[119.67505944100004,26.618801174],[119.68751061300004,26.611273505000057],[119.70093834700018,26.608587958000086],[119.73023522200016,26.611273505000057],[119.72274824300021,26.611273505000057],[119.73519941500003,26.6119652360001],[119.74219811300011,26.608628648000078],[119.74293053500004,26.601752020000063],[119.73642011800005,26.591457424000122],[119.7486271490002,26.587958075000145],[119.77173912900018,26.583889065],[119.78492272200006,26.577826239],[119.78223717500025,26.564764716000028],[119.78272545700023,26.559637762000094],[119.78492272200006,26.550482489000117],[119.774180535,26.55951569200012],[119.77059980600004,26.56411367400007],[119.76172936300011,26.550726630000085],[119.76587975400004,26.534369208000054],[119.77914472700014,26.520697333000115],[119.79859459700018,26.515773830000157],[119.79525800900015,26.511623440000122],[119.79346764400023,26.50820547100001],[119.79061933700021,26.505194403000118],[119.78492272200006,26.50202057500006],[119.79428144600016,26.497137762000147],[119.80225670700013,26.489447333000058],[119.81226647200012,26.47479889500015],[119.81771894600004,26.462144273000078],[119.81885826900006,26.45319245000006],[119.81674238400014,26.444728908000016],[119.81226647200012,26.43378327000012],[119.80884850400011,26.433050848],[119.79574629000005,26.434271552000112],[119.79175866000006,26.43378327000012],[119.7911076180001,26.429917710000108],[119.79249108200004,26.416652736000103],[119.79175866000006,26.413316148000074],[119.77206464900009,26.40672435099999],[119.76197350400005,26.40745677300013],[119.75204511800015,26.43146393400015],[119.73764082100016,26.443670966000138],[119.71876061300023,26.451849677000055],[119.69922936300017,26.45490143400006],[119.68978925900014,26.45945872599999],[119.66456139400007,26.492132880000113],[119.65365644600004,26.498032945000162],[119.64698326900023,26.494045315000093],[119.64096113400015,26.482163804000137],[119.63575280000022,26.47943756700006],[119.6254988940001,26.47093333500014],[119.620371941,26.467962958000115],[119.605723504,26.474351304000052],[119.59986412900015,26.47479889500015],[119.57960045700023,26.47089264500015],[119.57129967500018,26.465725002000127],[119.56641686300011,26.45490143400006],[119.57309004000015,26.437811591000113],[119.59408613399998,26.433579820000162],[119.61630293100002,26.43740469],[119.6265568370001,26.444322007],[119.63086998800006,26.44871653900016],[119.63998457100014,26.44440338700018],[119.6484481130001,26.43744538],[119.65430748800019,26.429022528000033],[119.65552819100019,26.35561758000004],[119.665293816,26.340155341000113],[119.68873131600017,26.337591864],[119.6866154310001,26.333075262000037],[119.68384850400004,26.321682033000073],[119.68189537900015,26.317124742000132],[119.69629967500025,26.316839911],[119.73568769600004,26.322211005000053],[119.74708092500006,26.3276227890001],[119.74838300899997,26.35887278900016],[119.75440514400012,26.37205638200011],[119.77059980600004,26.36493561400006],[119.78012129000015,26.37498607000005],[119.78467858200011,26.386379299000012],[119.78736412900015,26.397406317000062],[119.79175866000006,26.406480210000055],[119.79769941500008,26.411322333000115],[119.8257755870001,26.426947333000115],[119.83480878999998,26.41209544500005],[119.84628339900021,26.40241120000009],[119.85132897200006,26.39280833500011],[119.84009850400017,26.378566799000012],[119.85580488400002,26.377630927000112],[119.88013756600012,26.36310455900009],[119.89478600400001,26.358710028000118],[119.90845787900005,26.360500393],[119.93482506600006,26.370550848000065],[119.94996178500004,26.372300523000078],[119.94996178500004,26.36493561400006],[119.88819420700023,26.318833726000136],[119.87745201900012,26.313381252000013],[119.85474694100016,26.327541408000016],[119.82675214900003,26.32835521000014],[119.80111738399998,26.317572333000115],[119.78492272200006,26.296616929],[119.79086347700016,26.295558986000017],[119.80543053500016,26.290432033000016],[119.79273522199999,26.284084377000067],[119.78467858200011,26.28709544500016],[119.77662194100004,26.29328034100014],[119.76441491000018,26.296616929],[119.7534285820001,26.294419664000188],[119.73267662900005,26.28506094000015],[119.71933027400021,26.282945054000052],[119.69459069100004,26.282945054000052],[119.67359459700016,26.280503648000106],[119.65430748800019,26.27240631700009],[119.63412519600004,26.255072333],[119.65170332100016,26.250067450000145],[119.66822350400007,26.24201080900012],[119.66480553500006,26.231634833000115],[119.66822350400007,26.221502997000144],[119.65243574300008,26.217596747000144],[119.63697350400015,26.211655992000047],[119.62501061300024,26.202948309000146],[119.620371941,26.190497137000033],[119.61353600400012,26.182196356000148],[119.60010826900013,26.176336981000116],[119.59180748800011,26.16640859600001],[119.59986412900015,26.14581940300017],[119.5611271490002,26.12498607000019],[119.53736412900004,26.096828518],[119.51832116000006,26.064886786],[119.49374433700021,26.032863674],[119.47315514400005,25.99713776200018],[119.45850670700004,25.98248932500017],[119.43555748800004,25.981350002000127],[119.43173261800004,25.98529694200012],[119.42147871200015,26.00238678600006],[119.41504967500012,26.009263414000156],[119.4048771490001,26.01386139500003],[119.38282311300006,26.018622137000122],[119.3733830090001,26.02228424700014],[119.3433537120002,26.042059637000094],[119.32691491000004,26.048041083],[119.27711022200005,26.052923895000063],[119.26124108200023,26.060532945000105],[119.23316491,26.087795315],[119.21583092500022,26.100083726000047],[119.20093834700018,26.104681708],[119.16114342500008,26.111639716000084],[119.15162194100017,26.11570872600005],[119.12020918100002,26.135931708000058],[119.1036076180001,26.14313385600009],[119.09351647200006,26.14581940300017],[119.09351647200006,26.139593817000115],[119.11597741000004,26.123195705000015],[119.13648522200018,26.102932033000016],[119.15731855600009,26.09076569200012],[119.18148847700009,26.098618882],[119.19516035200003,26.08759186400006],[119.20069420700023,26.075913804000052],[119.2089949880001,26.043402411000088],[119.2173771490001,26.02895742400004],[119.23731530000022,26.006252346000068],[119.24301191500014,25.99502187700007],[119.24683678500004,25.967230536],[119.25497480600009,25.96328359600004],[119.29615319100006,25.956976630000085],[119.32984459700006,25.94428131700012],[119.34669030000025,25.94037506700012],[119.37753339900021,25.941392320000162],[119.40975996200005,25.949855861000046],[119.44092858200021,25.963812567],[119.49000084700018,25.994208075000145],[119.496836785,26.00177643400012],[119.50001061300007,26.01019928600006],[119.50180097700016,26.029201565000065],[119.50424238399997,26.035956122000087],[119.51905358200017,26.044501044000025],[119.55429121200021,26.045640367000075],[119.56641686300011,26.050238348],[119.61939537900004,26.02350495000009],[119.6484481130001,26.015448309000064],[119.67505944100004,26.02228424700014],[119.69540449300004,26.00263092700011],[119.70069420700023,25.995184637000037],[119.70240319100006,25.98505280199999],[119.698985222,25.97256094000006],[119.67505944100004,25.926092841000028],[119.66553795700017,25.915350653000118],[119.65430748800019,25.906927802000055],[119.64039147200018,25.901353257000054],[119.62354576900006,25.899400132000025],[119.61646569100002,25.89264557500014],[119.59986412900015,25.844183661000088],[119.5840763680002,25.876939195000105],[119.57422936300011,25.884914455000157],[119.56641686300011,25.87205638200014],[119.57789147200006,25.86237213700015],[119.57911217500023,25.841253973000065],[119.58301842500023,25.820217190000122],[119.60303795700021,25.810614325000145],[119.60792076900012,25.805161851000104],[119.60840905000005,25.792669989],[119.6060490240002,25.76902903900016],[119.60987389400023,25.767157294000114],[119.61670983200015,25.76471588700015],[119.62086022200012,25.76032135600009],[119.61670983200015,25.75226471600014],[119.59644616000004,25.731512762000147],[119.59376061300006,25.721869208],[119.59302819100004,25.693182684000035],[119.58993574300003,25.68716054900004],[119.58716881600012,25.685695705000157],[119.58432050900014,25.68260325700008],[119.57992597700016,25.67999909100008],[119.57260175900016,25.67967357000005],[119.56763756599999,25.681952216000024],[119.56430097699999,25.68968333500014],[119.53541100400015,25.705877997000087],[119.52279707099999,25.705796617000104],[119.51734459700006,25.690171617000132],[119.5005802740002,25.68968333500014],[119.48707116000016,25.687323309000178],[119.47706139400006,25.67967357000005],[119.46949303500004,25.68357982000005],[119.46363366000017,25.685288804000052],[119.44906660200017,25.68716054900004],[119.4559025400001,25.663723049000126],[119.45972741000017,25.63287995000009],[119.4670516290001,25.613918361000074],[119.48324629000015,25.625677802000055],[119.47934004000017,25.601548570000134],[119.48104902400003,25.58047109600001],[119.492442254,25.56476471600014],[119.51734459700006,25.5567894550001],[119.52206464900003,25.561509507],[119.52670332099999,25.570990302000027],[119.5344344410001,25.57587311400009],[119.54883873800006,25.567043361000017],[119.55844160200003,25.563788153000175],[119.56812584700012,25.569037177000055],[119.57569420700023,25.577785549000122],[119.579437696,25.58466217700014],[119.56836998800023,25.547430731000148],[119.57227623800023,25.53343333499999],[119.59310957100004,25.529486395],[119.58741295700021,25.521918036000056],[119.58301842500023,25.517320054000106],[119.57691491000018,25.515326239],[119.56641686300011,25.51581452000006],[119.5816349620001,25.509263414000188],[119.58985436300006,25.507879950000117],[119.59986412900015,25.50836823100009],[119.58741295700021,25.498724677000112],[119.5816349620001,25.49616120000003],[119.57260175900016,25.494696356000148],[119.57260175900016,25.487860419000143],[119.5984806650001,25.49274323100012],[119.6036076180001,25.49115631700009],[119.59986412900015,25.48102448100003],[119.59986412900015,25.474839585000055],[119.61142011800008,25.47410716400013],[119.62240644600003,25.469427802000112],[119.62802168100004,25.461371161000088],[119.62354576900006,25.450344143000123],[119.61402428500016,25.43878815300009],[119.61670983200015,25.437241929000052],[119.62533613400014,25.438055731000148],[119.63412519600004,25.43325429900007],[119.64527428500007,25.41046784100014],[119.64600670700004,25.39256419500019],[119.6372990240001,25.37799713700015],[119.620371941,25.36497630399999],[119.63778730600008,25.363592841000113],[119.64559980600009,25.361558335000083],[119.654551629,25.35814036700016],[119.60287519600016,25.346136786000145],[119.579437696,25.344468492000132],[119.58301842500023,25.353013414000046],[119.58790123800023,25.36078522300015],[119.59359785199997,25.36709219],[119.59986412900015,25.371161200000145],[119.58871504000003,25.401312567000062],[119.57797285200004,25.418687242000047],[119.58253014400006,25.42560455900015],[119.58985436300006,25.431830145],[119.59310957100004,25.439439195000045],[119.58969160200003,25.443264065000065],[119.57626386800021,25.46283600500014],[119.57601972700014,25.46735260600009],[119.56836998800023,25.46625397300015],[119.56153405000012,25.463283596000124],[119.55600019600003,25.458929755000142],[119.55209394600003,25.45376211100013],[119.54818769600004,25.45697663],[119.54542076900023,25.458644924000012],[119.53858483200023,25.461167710000108],[119.53589928500017,25.449937242000104],[119.5344344410001,25.433783270000063],[119.53598066500014,25.419134833000058],[119.54200280000023,25.412787177000112],[119.55616295700005,25.41046784100014],[119.55819746200008,25.40460846600011],[119.55209394600003,25.388861395000063],[119.54444420700004,25.377183335000055],[119.52588951900006,25.37409088700015],[119.50326582100004,25.373928127000013],[119.48324629000015,25.371161200000145],[119.49122155000013,25.383205471000068],[119.49781334700016,25.39940013200011],[119.50253339900009,25.41620514500012],[119.50424238399997,25.429877020000063],[119.5020451180001,25.43398672100001],[119.496836785,25.436753648000078],[119.49219811300006,25.440375067000115],[119.49073326900012,25.446926174],[119.49366295700023,25.45425039300012],[119.50294030000006,25.462469794000025],[119.5054630870002,25.472316799000126],[119.50733483200007,25.47443268400015],[119.50489342500022,25.474920966000052],[119.46615644599999,25.474839585000055],[119.45826256600006,25.466294664000046],[119.4532169930001,25.449774481000148],[119.44703209700002,25.43878815300009],[119.43555748800004,25.446926174],[119.43311608200023,25.45954010600009],[119.44556725400017,25.490139065000037],[119.44906660200017,25.505275783000013],[119.44190514400012,25.509507554000137],[119.36597741000016,25.520697333000143],[119.35653730600009,25.526922919000114],[119.35287519600006,25.53974030200014],[119.35604902400009,25.55072663],[119.38086998800023,25.590887762000094],[119.368907097,25.58490631700009],[119.36475670700005,25.582180080000015],[119.36036217500005,25.57729726800015],[119.35287519600006,25.58466217700014],[119.35629316500003,25.600043036000088],[119.34302819100012,25.60919830900015],[119.32260175900002,25.611029364000146],[119.30518639400022,25.604559637000033],[119.32138105600019,25.58734772300012],[119.3105574880001,25.57786692900011],[119.27784264400006,25.57046133000013],[119.27198326900023,25.557521877000042],[119.26880944100017,25.526922919000114],[119.26075280000025,25.512111721000124],[119.23780358200024,25.481756903000147],[119.22934004000003,25.474839585000055],[119.215098504,25.470282294000114],[119.18336022200006,25.46499258000013],[119.17164147200005,25.457464911000088],[119.16138756600006,25.44891998900006],[119.12867272200012,25.429999091000028],[119.11670983200005,25.42641836100016],[119.10254967500023,25.420314846000068],[119.109629754,25.40680573100009],[119.15699303500006,25.36261627800003],[119.16529381600006,25.349554755000057],[119.16846764400012,25.333929755000053],[119.17318769599999,25.325140692],[119.18311608200011,25.329413153000118],[119.19239342500023,25.342027085],[119.19532311300006,25.35814036700016],[119.203379754,25.35814036700016],[119.22315514400022,25.31659577000009],[119.20150800900015,25.30634186400006],[119.19174238400002,25.299546617000132],[119.18148847700009,25.28925202],[119.19320722700016,25.27496979400011],[119.19678795700023,25.263332424000012],[119.20126386800008,25.25971100500014],[119.2163192070001,25.26935455900012],[119.225840691,25.27968984600004],[119.23471113400014,25.294867255000028],[119.24122155000022,25.312567450000117],[119.24301191500014,25.330226955000043],[119.25416100400017,25.32282135600003],[119.26514733200011,25.317572333000058],[119.27369225400004,25.31858958500011],[119.27784264400006,25.330226955000043],[119.2886662120001,25.32542552300013],[119.29330488400002,25.321966864000114],[119.29835045700024,25.31659577000009],[119.29135175900015,25.31659577000009],[119.29696699300003,25.307196356000148],[119.31885826900006,25.27936432500009],[119.32422936300023,25.27509186400009],[119.33578535200016,25.27228424700003],[119.34750410200016,25.267767645000088],[119.35287519600006,25.25849030200011],[119.34424889400012,25.242377020000063],[119.32374108200015,25.23798248900006],[119.28126061300011,25.241441148000074],[119.27247155000012,25.231756903000118],[119.28882897200006,25.18911367400007],[119.28126061300011,25.179388739000117],[119.25562625300009,25.17589713600016],[119.24275343100022,25.189987132000155],[119.22937574000005,25.193215206000062],[119.21265709700019,25.186224677000055],[119.19288170700021,25.182318427000055],[119.17562910200004,25.176499742000104],[119.16467866300005,25.191573740000152],[119.15335906500005,25.206954893000116],[119.14197462600006,25.220978417000126],[119.11609619800011,25.21378183500009],[119.10179393100022,25.19663441900009],[119.10418013400013,25.182947837000185],[119.11425057600016,25.173056235000033],[119.11988366000004,25.160711981000144],[119.12484785199999,25.15550364800005],[119.1292423840001,25.14866771000014],[119.1337996750001,25.13841380400011],[119.14657636800004,25.143744208000086],[119.15308678500006,25.139715887000122],[119.1499129570001,25.131577867000185],[119.1337996750001,25.124741929],[119.11670983200005,25.126613674000122],[119.10352623800011,25.13324616100003],[119.09327233200011,25.135646877000156],[119.0854598320001,25.124741929],[119.09034264400006,25.1212425800001],[119.09310957100004,25.118068752000042],[119.09571373800023,25.114732164000188],[119.09913170700023,25.111151434000035],[119.0894474620001,25.113674221000124],[119.06478925899997,25.124741929],[119.07398522200005,25.145656643000123],[119.07919355600002,25.152085679000052],[119.06470787900001,25.162543036000116],[119.05323326900017,25.157619533000073],[119.04590905000023,25.14305247600005],[119.0444442070001,25.124741929],[119.02906334700005,25.140529690000122],[119.03402754000004,25.158677476000108],[119.05860436300011,25.186224677000055],[119.06910241000017,25.203680731000116],[119.06885826900023,25.216742255],[119.05738365999999,25.225002346000068],[119.03475996200015,25.227769273000135],[118.98731530000012,25.22223541900003],[118.9693302740001,25.22638580900015],[118.97999108200011,25.24485911700016],[119.00001061300004,25.254055080000157],[119.0249459530002,25.25928888800003],[119.02729761500004,25.27823796900016],[118.98365319100016,25.28302643400006],[118.91846764400023,25.264390367000075],[118.9078068370002,25.25849030200011],[118.89649498800021,25.257513739000057],[118.87558027400009,25.243841864000117],[118.86483808700002,25.227972723000093],[118.88404381599999,25.220363674000154],[118.91114342500023,25.217230536000088],[118.913828972,25.20868561400006],[118.90927168100009,25.195705471000153],[118.91529381600017,25.179388739000117],[118.92090905000006,25.18793366100006],[118.93295332099997,25.194566148000103],[118.94825280000022,25.197170315000037],[118.96314537900001,25.193670966000028],[118.97461998800023,25.182562567],[118.97217858200013,25.17206452000012],[118.95557701900017,25.152085679000052],[118.94898522200018,25.136948960000055],[118.94906660200014,25.118963934000117],[118.94727623800006,25.11318594000015],[118.9429630870001,25.108832098000065],[118.93515058700011,25.104315497000115],[118.92139733200004,25.101385809000178],[118.90316816499998,25.102484442000115],[118.88559004000015,25.10614655199999],[118.86768996700002,25.100408375000125],[118.85767662899998,25.09804922100015],[118.84896894600004,25.086615302],[118.84913170700011,25.07379791900017],[118.86011803500006,25.056545315000065],[118.87794030000012,25.040716864000117],[118.895762566,25.033514716000084],[118.93515058700011,25.022365627000067],[118.92831464900004,25.014878648000106],[118.940684441,25.006659247000115],[118.9537052740001,25.00299713700015],[118.967051629,25.004543361000103],[118.97999108200011,25.01178620000003],[118.99048912900017,25.04018789300015],[118.9973250660001,25.05353424700014],[119.00416100399998,25.05023834800012],[119.0034285820001,25.040472723000093],[118.99952233200011,25.024074611000074],[118.993418816,25.00873444200012],[118.98666425900014,25.001898505000028],[118.98324629000017,24.995103257],[118.98731530000012,24.97972239800005],[118.9973250660001,24.953436591000028],[119.01319420700023,24.958197333000115],[119.0176701180001,24.960272528000033],[119.00904381600016,24.94733307500003],[118.99268639400005,24.93695709800012],[118.97706139400005,24.934027411000113],[118.96998131600004,24.943548895],[118.96371504000008,24.954413153000086],[118.94849694100012,24.95677317900005],[118.91163170700023,24.953436591000028],[118.90113366000017,24.937811591000052],[118.909922722,24.90717194200012],[118.9341740240002,24.886053778000115],[118.96998131600004,24.89887116100006],[118.9732365240001,24.893784898000135],[118.97388756599999,24.891913153000147],[118.97250410200003,24.89012278900016],[118.96998131600004,24.885199286000116],[118.97299238400005,24.883734442000062],[118.97494550899998,24.883856512000037],[118.97584069100017,24.882717190000093],[118.97616621200008,24.877752997000027],[118.95199628999998,24.870754299000154],[118.9244083990001,24.869940497000144],[118.8979598320001,24.875799872000083],[118.87720787900001,24.888617255000113],[118.86670983200023,24.891017971000068],[118.83765709700005,24.880560614],[118.82593834700005,24.877752997000027],[118.81275475399998,24.88165924700003],[118.80274498800023,24.88808828300013],[118.79208418100008,24.89109935100005],[118.77759850400004,24.885199286000116],[118.78012129000015,24.86782461100013],[118.76197350400017,24.85797760600012],[118.73633873800011,24.851385809000035],[118.71607506600017,24.843573309000064],[118.70606530000012,24.846625067000147],[118.69979902400004,24.8515485700001],[118.69809004000015,24.859523830000157],[118.7017521490001,24.871527411000088],[118.70777428500001,24.87726471600014],[118.7251896490001,24.882798570000162],[118.729746941,24.885199286000116],[118.72950280000006,24.90053945500007],[118.72046959700018,24.91689687700007],[118.70753014400017,24.931219794000143],[118.69556725400005,24.94041575700014],[118.69752037900017,24.90680573100012],[118.69556725400005,24.89887116100006],[118.68881269599997,24.89573802299999],[118.684825066,24.90330638200011],[118.68433678500004,24.915472723],[118.68808027400003,24.926174221000124],[118.68270918100019,24.930975653000033],[118.67725670700007,24.937404690000122],[118.66773522200016,24.953436591000028],[118.66163170700011,24.94086334800012],[118.64405358200018,24.924139716000113],[118.6403914720001,24.915594794000082],[118.64747155000016,24.908514716000028],[118.66211998800006,24.898382880000057],[118.67343183700004,24.88662344000009],[118.67115319100017,24.87466054900015],[118.65121503999997,24.86688873900006],[118.62411543100008,24.86782461100013],[118.59579511800023,24.874741929000137],[118.57203209699999,24.885199286000116],[118.61280358200013,24.855780341000028],[118.61988366000004,24.843573309000064],[118.62061608200005,24.829291083000058],[118.61801191499998,24.817531643000066],[118.61793053499999,24.805324611000103],[118.63257897199999,24.77724844],[118.63795006600019,24.772121486000074],[118.6403914720001,24.77875397300015],[118.643809441,24.78221263200005],[118.65162194099999,24.782538153000175],[118.66065514400012,24.781887111000017],[118.66773522200016,24.782171942000062],[118.68653405000013,24.792792059000092],[118.69752037900017,24.801662502000127],[118.7017521490001,24.810044664000102],[118.71102949300004,24.80487702],[118.71509850400001,24.798325914000102],[118.71631920700024,24.789943752000152],[118.71607506600017,24.77875397300015],[118.71998131600016,24.769354559000035],[118.72877037900005,24.76947663],[118.74341881600004,24.775336005000142],[118.75953209700006,24.767767645],[118.76295006600004,24.762681382000082],[118.763926629,24.751695054000106],[118.74854576900007,24.725165106000148],[118.74683678500018,24.720689195000162],[118.7320255870001,24.71645742400007],[118.72022545700023,24.70555247599999],[118.69874108200013,24.67601146000011],[118.68539472699999,24.666489976000136],[118.67579186300011,24.671454169000086],[118.66651451900022,24.683010158000016],[118.65406334700005,24.69342682500009],[118.64210045700011,24.678697007000025],[118.63599694099999,24.66376373900006],[118.6338810560002,24.64728424700017],[118.63355553500017,24.627875067000062],[118.64022871200015,24.616929429],[118.6538192070001,24.616400458000115],[118.6641544930001,24.61225006700009],[118.66146894600003,24.590318101000047],[118.6465763680001,24.568426825000028],[118.62045332100003,24.545477606000034],[118.59083092500005,24.528062242000157],[118.56519616,24.522691148000106],[118.56128990999999,24.520697333000058],[118.55722089900004,24.51723867400007],[118.55396569099999,24.51805247599999],[118.55160566500015,24.528957424000154],[118.5508732430002,24.537014065],[118.55136152400009,24.545965887000122],[118.55445397200018,24.55320872600005],[118.56153405000023,24.556219794000143],[118.57813561300011,24.560207424000126],[118.57113691500003,24.568996486000103],[118.501231316,24.608140367000132],[118.48609459699999,24.610825914000102],[118.474864129,24.614325262000094],[118.44532311300023,24.628973700000117],[118.42807050900015,24.63133372600008],[118.43270918100008,24.644720770000063],[118.43466230600019,24.659002997000144],[118.43490644600014,24.689642645000063],[118.43124433700022,24.69969310100005],[118.422618035,24.69285716400013],[118.4114689460001,24.680121161000088],[118.40088951900023,24.672308661000088],[118.42188561300007,24.624497789000046],[118.40479576900012,24.606634833000086],[118.37989342500006,24.590236721000068],[118.35165449300021,24.582342841000113],[118.32504316499998,24.590318101000047],[118.31739342500023,24.586981512000033],[118.30713951900012,24.588324286000116],[118.28402754000008,24.59780508000004],[118.27979576900023,24.584702867000047],[118.27295983200023,24.57440827000012],[118.26319420700013,24.570379950000174],[118.24984785200009,24.576117255000142],[118.24179121200002,24.54376862200003],[118.21900475400005,24.54144928600006],[118.19434655000012,24.55646393400009],[118.18116295700007,24.576117255000142],[118.18165123800006,24.59780508000004],[118.19166100400004,24.600897528000118],[118.20508873800023,24.598700262000122],[118.21583092500023,24.60398997599999],[118.21517988400002,24.614813544000086],[118.20370527400004,24.621527411000116],[118.18783613400004,24.624660549000012],[118.17432701900016,24.624497789000046],[118.18384850400015,24.64276764500012],[118.1875919930001,24.657375393000123],[118.18140709700002,24.67275625200007],[118.16049238400016,24.69342682500009],[118.15748131600006,24.662665106000116],[118.15088951900007,24.658636786000145],[118.14527428500016,24.658636786000145],[118.14144941500015,24.656968492000132],[118.13746178500011,24.633775132],[118.1309513680001,24.620062567000062],[118.12216230600015,24.607855536],[118.1128035820001,24.59780508000004],[118.11036217500019,24.584051825000117],[118.10336347700009,24.584784247000027],[118.09229576900023,24.59780508000004],[118.04444420700011,24.617661851000136],[118.03695722700014,24.59780508000004],[118.04476972700003,24.575995184000146],[118.03736412900015,24.56061432500003],[118.02108808700022,24.554999091000024],[118.00294030000013,24.562445380000028],[118.00928795700017,24.580715236000074],[117.99244225400007,24.571478583000115],[117.97486412900005,24.55272044500005],[117.978770379,24.542547919000114],[118.0207625660001,24.536566473],[118.04403730600019,24.52826569200012],[118.05811608200015,24.51585521],[118.04428144600017,24.498032945000105],[118.0367130870002,24.490871486000074],[118.02711022200005,24.487941799000154],[118.01392662900017,24.487616278000033],[118.00936933700015,24.485541083],[118.0069279310002,24.480454820000162],[117.99952233200011,24.470851955000015],[118.00757897200005,24.4657250020001],[118.02027428499999,24.454657294000143],[118.02173912900015,24.445746161000116],[117.99610436300011,24.446966864000117],[117.9118758470001,24.478949286000116],[117.86768639400012,24.489569403000175],[117.82593834700016,24.480454820000162],[117.8462833990001,24.475083726000104],[117.86622155000018,24.47357819200006],[117.88485761800003,24.46865469],[117.90113366000017,24.453192450000085],[117.81568444100007,24.471625067000115],[117.791270379,24.467474677],[117.791270379,24.46063873900006],[117.8746037120002,24.396307684000146],[117.90731855600004,24.3849144550001],[117.98934980600009,24.39476146000011],[118.01954186300006,24.406195380000057],[118.03012129000003,24.412827867000132],[118.04297936300017,24.40668366100006],[118.0474552740002,24.399074611000017],[118.04688561300021,24.389634507],[118.04078209700018,24.365627346000153],[118.03573652400021,24.361029364000117],[118.03003991000006,24.35814036700019],[118.02393639400017,24.350775458],[118.01587975400005,24.326849677000112],[118.024180535,24.323553778000086],[118.03736412900015,24.331284898000106],[118.04444420700011,24.340521552000055],[118.05298912900005,24.34690989799999],[118.0717879570001,24.348863023000135],[118.09058678500006,24.341457424000154],[118.09913170700005,24.319728908000073],[118.10230553500004,24.314276434000032],[118.11646569100006,24.304510809000092],[118.11963951900012,24.299261786000116],[118.12061608200011,24.279527085],[118.1226505870002,24.270738023000103],[118.12647545700023,24.262030341000024],[118.10873457100003,24.261053778000147],[118.08472741000011,24.249090887000033],[118.0717879570001,24.254584052000055],[118.05933678500016,24.245510158000158],[118.03834069100007,24.220200914000102],[118.02393639400017,24.206732489000117],[118.01620527400004,24.203111070000162],[117.99642988400002,24.19741445500007],[117.98926842500006,24.19310130399999],[117.98642011800003,24.187160549000154],[117.98251386800004,24.169175523000106],[117.978770379,24.16209544500005],[117.96786543100004,24.159816799000094],[117.96265709700006,24.17381419500005],[117.95850670700011,24.20307038000008],[117.94361412900004,24.21259186400006],[117.93213951900012,24.207953192000147],[117.92090905000012,24.196682033000158],[117.90731855600004,24.18626536700016],[117.93238366000006,24.17829010600012],[117.937754754,24.161688544000143],[117.93051191499998,24.141099351000108],[117.90137780000012,24.098618882000054],[117.89576256600006,24.08661530200011],[117.89364668100019,24.073309637000094],[117.89559980600008,24.06098053600006],[117.89869225400005,24.050523179],[117.89942467500006,24.040187893000066],[117.89364668100019,24.028021552],[117.86231530000019,24.03522370000003],[117.83912194100006,24.02362702],[117.79810631600006,23.980210679000052],[117.77198326900005,23.958929755000085],[117.7654728520001,23.947333075000145],[117.7632755870001,23.92934804900004],[117.75863691500014,23.915472723000118],[117.74805748800011,23.907538153000147],[117.73658287900018,23.908107815000122],[117.72925866000018,23.91937897300012],[117.73788496200004,23.950506903000033],[117.79135175899998,24.00153229400003],[117.79810631600006,24.021795966000028],[117.78646894600004,24.028143622000144],[117.76172936300023,24.014837958000143],[117.757090691,24.024888414000102],[117.76978600400017,24.03131745000003],[117.77613366,24.03729889500012],[117.77418053500017,24.04539622600008],[117.77027428500016,24.051459052000055],[117.7632755870001,24.070257880000113],[117.757090691,24.070257880000113],[117.75001061300017,24.03729889500012],[117.72413170700024,24.033758856000144],[117.69223066500004,24.046535549000012],[117.66708418100002,24.062730210000055],[117.67099043100002,24.048000393000066],[117.67969811300023,24.039048570000134],[117.69223066500004,24.03522370000003],[117.708750847,24.03546784100014],[117.68848717500012,23.99750397300015],[117.68726647200018,23.97907135600012],[117.69507897200016,23.953558661000116],[117.67156489500006,23.931411491000134],[117.64863267600008,23.909233582000113],[117.63359979200001,23.874158079000082],[117.62553554500019,23.84015333399999],[117.62600780300018,23.812232888],[117.6392694800002,23.794102300000176],[117.61939537900017,23.774807033000073],[117.61255944100017,23.762681382],[117.59166878800025,23.737064446000158],[117.589524738,23.75615410500002],[117.58746244400017,23.777780118000138],[117.60201234700004,23.798949107000013],[117.60010826900023,23.83397044500019],[117.59815514400012,23.85244375200001],[117.59205162899998,23.87099844000012],[117.58236738400015,23.889308986000074],[117.57105553500017,23.903265692000062],[117.55673261800008,23.91323476800015],[117.53736412900017,23.91937897300012],[117.47461998800011,23.92096588700015],[117.45484459700018,23.92560455900009],[117.43018639400006,23.943752346000096],[117.41659589900021,23.94684479400017],[117.40707441500003,23.933050848000065],[117.4096785820001,23.913397528000118],[117.42709394599999,23.91038646000011],[117.4497990240002,23.9134789080001],[117.46851647200012,23.91193268400015],[117.49959628800003,23.874072232000074],[117.49007276800003,23.83257870900006],[117.46347744400006,23.788287134000072],[117.43433140800018,23.775922097000077],[117.38241621200021,23.79523346600014],[117.36890709700005,23.79262929900007],[117.36093183700011,23.785956122000115],[117.35458418100008,23.777411200000085],[117.34555097700016,23.76854075700014],[117.31910241000018,23.761623440000122],[117.30396569100017,23.775580145],[117.2925724620002,23.789496161],[117.27735436300021,23.782212632000082],[117.2923283210001,23.762152411000113],[117.28573652400009,23.74677155200008],[117.27192081500007,23.721306450000114],[117.27624182700012,23.687743259000158],[117.26796469200022,23.679791608000087],[117.26364898600009,23.655424769000046],[117.27912211100013,23.636267573000012],[117.25709264900003,23.615616376],[117.23896432,23.605472819000155],[117.23596388500013,23.624310503000018],[117.23553754000001,23.63981941100009],[117.24408975600008,23.65754849299999],[117.235606316,23.671454169000114],[117.2295028000001,23.69281647300006],[117.22518964900021,23.684719143000123],[117.20850670700005,23.664943752000013],[117.21718120000016,23.65251135700005],[117.22041024000005,23.640201411000177],[117.21920130500003,23.62962787900007],[117.18588300900004,23.621039130000085],[117.17465254000003,23.61635976800015],[117.15082981200023,23.60686733500016],[117.12846022200003,23.57235377700006],[117.09946427700007,23.55430956500011],[117.08422775799995,23.550605513000065],[117.07840664300006,23.564611083000088],[117.08046765200018,23.574346566000102],[117.08355969400023,23.58894968300011],[117.07600336800014,23.60462739899999],[117.07918982300025,23.622489485000088],[117.07788112300013,23.63882981000002],[117.06841298800012,23.651272715000133],[117.05779791000023,23.653964983000048],[117.04444420700023,23.655666408000158],[117.0342716810001,23.661322333000058],[117.02344811300011,23.65867747600005],[117.01832116000017,23.64789459800006],[117.00950178399997,23.644542386000168],[116.98535568500019,23.64022847300002],[116.96507212100008,23.61543765100005],[116.95070523000007,23.61088329500008],[116.92758222699999,23.624741929000106],[116.91757246200022,23.637925523000074],[116.94092858200011,23.65867747600005],[116.92750084699999,23.664496161000116],[116.91651451900023,23.662746486000014],[116.90894616,23.654608466000113],[116.90609785200016,23.64130280199999],[116.90072675900004,23.634263414000102],[116.87745201900006,23.618353583],[116.87208092500022,23.60687897300015],[116.87427819099999,23.598618882000054],[116.87916100400011,23.593573309000032],[116.88404381600017,23.586615302000137],[116.88624108200017,23.573065497000172],[116.88331139400023,23.55963776200018],[116.87549889400022,23.54706452],[116.85499108200011,23.52488841400013],[116.8497013680002,23.51129791900017],[116.85425866000006,23.49738190300009],[116.87262115300004,23.47380653100008],[116.86662820400025,23.450232931000116],[116.77322445099999,23.349432372000095],[116.7529403000001,23.35024648600013],[116.74656684900016,23.349206660000064],[116.73241003700015,23.351131609],[116.71298926300007,23.355628883000136],[116.69288170700011,23.359930731000087],[116.6807560560002,23.357001044000167],[116.65784363400016,23.354452091000113],[116.62191816500005,23.369126695000162],[116.5689396490001,23.391017971],[116.55787194100006,23.401760158000016],[116.55347741000017,23.41425202000012],[116.54322350400005,23.421210028000115],[116.53174889400012,23.422552802000027],[116.52320397200018,23.418524481000034],[116.521739129,23.411200262000037],[116.52320397200018,23.377508856000034],[116.53321373800021,23.36188385600006],[116.55225670700023,23.341498114000057],[116.57300866000004,23.323675848000093],[116.5879826180001,23.316107489000142],[116.60840905000025,23.32046133000013],[116.64188900700005,23.318835408000055],[116.66097618700003,23.337223022],[116.69124035800009,23.338976648000155],[116.70941427800004,23.319769649000094],[116.72707447100002,23.316115909000033],[116.73011154700023,23.330753946000144],[116.74863483000004,23.32628833300005],[116.76563084100022,23.297350702000116],[116.76852783199999,23.272821140000087],[116.777110222,23.24038320500007],[116.78617904300002,23.23572280000012],[116.79426890800008,23.239622147000162],[116.80482248900002,23.23612246100005],[116.78394616000006,23.212388414000046],[116.75416100400004,23.233384507],[116.73129316500004,23.25771719000015],[116.70557701900019,23.27659739799999],[116.66724694100004,23.281317450000085],[116.67920983200004,23.271389065000093],[116.69507897200018,23.265692450000117],[116.70899498800006,23.25853099200016],[116.71509850400015,23.24380117400007],[116.70550223000012,23.238344027],[116.68930798100011,23.229730599],[116.67116605600015,23.21463881699999],[116.66174784000022,23.193648388000085],[116.64675495900003,23.16299138300006],[116.63702102300024,23.164017894000082],[116.62929588000013,23.173969803000162],[116.61521596500009,23.178349308000136],[116.61377172000002,23.19060742300009],[116.61675443900016,23.202770202000053],[116.6181479410001,23.221479117000015],[116.61151014100002,23.23872960900003],[116.58858539900021,23.24493380200009],[116.56997645400007,23.246972843000133],[116.51685631600006,23.235174872000172],[116.50888105600008,23.23411692900011],[116.50928795700011,23.21637604400003],[116.52698753700021,23.200621073000136],[116.54142873000015,23.21010457200016],[116.55315787300012,23.216373354000083],[116.56397545700023,23.22296784100008],[116.57455488399998,23.22410716400013],[116.60294916000012,23.21773845200012],[116.60450424899997,23.209556543000033],[116.60149581500004,23.196580792000063],[116.56991582300012,23.177691875],[116.54512080800006,23.144775094000167],[116.53364811400003,23.109134538000163],[116.55165559100024,23.086724106000087],[116.54849613500012,23.06640189800011],[116.55484606100006,23.03609439900005],[116.56325009500009,23.018773721000017],[116.54785154900017,23.006039146000163],[116.52193572500003,22.99841091500015],[116.51847389200022,22.967455536000145],[116.49468791299999,22.93935241300012],[116.45850966200013,22.947419938000067],[116.42629040700015,22.93742547600011],[116.37960727900004,22.92898441300015],[116.35303795700021,22.938055731000034],[116.33825115100016,22.951857250000145],[116.29848707000023,22.963246737000144],[116.28906383900019,22.978943018000095],[116.26225996800011,22.973737028000116],[116.23471113400002,22.980414130000113],[116.21363365999999,22.982814846000064],[116.20101972700004,22.97345612200003],[116.2348738940001,22.96027252800009],[116.25228925900014,22.959051825000174],[116.26937910200003,22.96662018400012],[116.28145839200019,22.95785727499999],[116.24618135200014,22.931590004],[116.22100908600008,22.919009820000056],[116.21456253200003,22.90852205300014],[116.20008802000021,22.89655534600014],[116.17098930300008,22.86446526900012],[116.1449099130002,22.847822500000134],[116.12965056100009,22.8391347980001],[116.11356126700004,22.83291023700015],[116.09568990500004,22.825900457000145],[116.08467166600016,22.849765350000112],[116.09125331300018,22.86840986],[116.1237210400001,22.89472923900014],[116.0870060560002,22.906561591000028],[116.04210490800003,22.932918286000028],[116.04188078800004,22.92232107700012],[116.07129967500023,22.897772528000147],[116.08725382200011,22.889693668000135],[116.07617780700015,22.867871480000147],[116.05377223500012,22.855228638000156],[116.04786217500008,22.85179271],[116.03744550899997,22.85089752800009],[116.0261074920001,22.845127110000035],[116.01179603500023,22.83804350300015],[115.99671759400009,22.836684122000023],[115.9660750660001,22.817206122000087],[115.9580136020002,22.80474320899999],[115.93948765200017,22.807515862000074],[115.93326333900002,22.805993707000155],[115.9037375390001,22.789376442000062],[115.88349730700007,22.794618575000086],[115.85488226100009,22.77879012600006],[115.84321232500022,22.770024884000023],[115.82595611500018,22.746643521000163],[115.81002986900013,22.74609077500015],[115.79781189200006,22.754449576000138],[115.79545956600012,22.769988070000082],[115.7904838470001,22.78720037000012],[115.7880385030001,22.79784174100014],[115.79501386800008,22.800279039000102],[115.7994083990001,22.79466380400011],[115.80136152400021,22.78685130400011],[115.80648847700004,22.778265692],[115.81356855600009,22.77627187700007],[115.81470787900005,22.786118882],[115.81275475400017,22.79954661700016],[115.80990644600016,22.808335679000052],[115.80477949300021,22.815090236000074],[115.79843183700008,22.819525458000058],[115.79037519600016,22.821926174000012],[115.78505513500025,22.825677925000107],[115.77634434500008,22.832345699000154],[115.76323712500007,22.841487071000145],[115.73686960900012,22.85167302800015],[115.69703558500007,22.850671122],[115.70358083900013,22.869323194000074],[115.68426622900014,22.87777909800012],[115.68246504000004,22.88816966400016],[115.69263756600016,22.900091864000117],[115.7051701180001,22.90737539300012],[115.71387780000018,22.904527085],[115.72128339900003,22.904527085],[115.72754967500012,22.92275625200007],[115.73373457100016,22.931870835000055],[115.73031660200014,22.934230861000017],[115.69198652400021,22.92902252800003],[115.6831160820001,22.924261786000116],[115.66659589900021,22.904527085],[115.65333092500005,22.893744208],[115.6394149100001,22.889349677],[115.58399498800023,22.880316473],[115.57789147200006,22.877264716000084],[115.57406660200006,22.87173086100007],[115.56495201900023,22.853257554000052],[115.56055748800021,22.84931061400006],[115.53988691500003,22.85293203300013],[115.53296959700006,22.8620466170001],[115.5366317070001,22.874335028000175],[115.54688561300011,22.887152411000027],[115.54761803500006,22.895412502000013],[115.53378339900016,22.898260809000035],[115.50562584700005,22.897772528000147],[115.49634850399998,22.903062242000132],[115.46827233200011,22.926499742000104],[115.450938347,22.931870835000055],[115.4423934250001,22.92967357000016],[115.43832441500003,22.920355536000116],[115.4301863940001,22.91819896000011],[115.42383873800011,22.918768622000087],[115.406016472,22.92503489800005],[115.41854902400021,22.907700914000046],[115.42725670700011,22.900620835],[115.43702233200021,22.897772528000147],[115.44613691500004,22.899969794000143],[115.45541425899997,22.909735419000082],[115.46420332100014,22.912014065000065],[115.48300214900011,22.9018415390001],[115.49610436300017,22.880316473],[115.49415123800011,22.860785223],[115.46802819100017,22.85675690300006],[115.46802819100017,22.84931061400006],[115.4786076180002,22.847479559000092],[115.50562584700005,22.84931061400006],[115.51514733200017,22.847316799000126],[115.53036543100015,22.83832428600003],[115.54004967500012,22.836249091000084],[115.55941816500003,22.836086330000125],[115.5659285820001,22.83795807500009],[115.57789147200006,22.843166408000098],[115.58692467500022,22.849351304000052],[115.59335371200002,22.85639069200012],[115.60059655000006,22.861883856000144],[115.61207116000004,22.86359284100014],[115.59131920700023,22.847479559000092],[115.55624428600008,22.807435384000158],[115.5389658280002,22.788904414000072],[115.52701696900007,22.767042406000158],[115.52393639400012,22.741766669000143],[115.5555881820002,22.714370293000073],[115.56575300400007,22.737080860000116],[115.56732101300022,22.747281344],[115.586192254,22.745103257],[115.590098504,22.737209377000013],[115.58090254000015,22.723334052000112],[115.56251061300011,22.705633856000116],[115.56421959700012,22.684881903000033],[115.57521894800007,22.668335972000037],[115.53615557400022,22.66812338800004],[115.5220955020002,22.676503287000102],[115.49119293900006,22.68758681300001],[115.464818129,22.701034142000125],[115.43826484100005,22.700598507000123],[115.42126350300006,22.690235633000057],[115.39429772199999,22.689683335000108],[115.37350802300001,22.694177267000057],[115.36127204300024,22.704137359000114],[115.34820519500023,22.717368990000026],[115.33847089900014,22.733099677000055],[115.35067793100022,22.746893622000172],[115.35840905000022,22.74868398600016],[115.38892662900015,22.746893622000172],[115.39755293100009,22.748765367000047],[115.40975996200004,22.75787995000003],[115.42413342800015,22.761993113000088],[115.42237254800001,22.771797403000118],[115.41120822500008,22.788267543000146],[115.38624108200011,22.782904364000117],[115.37476689900008,22.77328464100019],[115.36399407500019,22.763644780000064],[115.33057039700023,22.788540419000167],[115.28914445700003,22.79155339100005],[115.25108133600015,22.787980248000096],[115.23339092700004,22.78820850700005],[115.23276710300016,22.805339609000143],[115.25856378500012,22.820463023000013],[115.30304042100013,22.838613734000162],[115.3201603520001,22.850531317000087],[115.3247990240002,22.85956452],[115.31373131600016,22.86359284100014],[115.30941816500014,22.869370835000108],[115.3105574880001,22.882473049000097],[115.31714928500017,22.904527085],[115.30380293100008,22.90302155200014],[115.29224694100006,22.895331122000027],[115.27222741000017,22.873846747000087],[115.25595136800015,22.84784577],[115.24561608200021,22.8353539080001],[115.23145592500012,22.830064195000105],[115.2172939450002,22.834891183000092],[115.19601300300022,22.831897692000112],[115.17294355600004,22.82119375200007],[115.1744072810002,22.806892026000142],[115.18027057299999,22.784805971000182],[115.15827282300009,22.792417197000034],[115.15056624700006,22.809633511000143],[115.13287802700003,22.811453821000114],[115.11166425900002,22.802150783000073],[115.10108483200005,22.800116278000147],[115.06547548,22.795984798000077],[115.05030358200023,22.781683661000116],[115.04566491,22.77586497600008],[115.04102623800004,22.761623440000065],[115.03663170700011,22.75372955900009],[115.02232988000016,22.743512898000045],[115.01782843800007,22.73704405200003],[115.02208124900018,22.72639153000013],[115.03079380000021,22.717322203000077],[115.02890347400013,22.70837658400002],[115.01827742200024,22.70686864400015],[115.00851347199998,22.703720144000144],[114.99877219200019,22.702201447000064],[114.99252068300021,22.697380891000094],[114.98534174000017,22.68930900100004],[114.98002977300021,22.68855402200002],[114.97125781200022,22.692735185000018],[114.95983548000005,22.69613433700006],[114.95467022500006,22.703544178000143],[114.9565836940002,22.715740246],[114.95237039800021,22.728832825000083],[114.94581139400012,22.742254950000056],[114.94166100400017,22.753851630000057],[114.9267684250001,22.761175848000065],[114.91675866000006,22.74404531500012],[114.9031100770001,22.74892445000016],[114.88905903200012,22.763747734000063],[114.8767193670001,22.7679572360001],[114.86252380000003,22.763215635000094],[114.87037907000004,22.75334849799999],[114.88187326500011,22.747523043000015],[114.88621679400013,22.736074693000106],[114.87814452500005,22.729637968000173],[114.88073575600006,22.721469944000162],[114.89044712900012,22.714054656000155],[114.90285798600009,22.713934062000035],[114.909995801,22.723615477000134],[114.92672625500009,22.716930079000136],[114.93722904300004,22.70949155699999],[114.94668867200002,22.696328688000065],[114.95530177500021,22.684793556],[114.96662940100016,22.67648694400016],[114.95045006600007,22.66498444200012],[114.93873131600006,22.657294012000094],[114.92489668100004,22.638657945000105],[114.90193762400023,22.59805688100012],[114.90521329800012,22.578440025000177],[114.91911854600006,22.56115516400014],[114.89596642500007,22.547524404000157],[114.88364080000005,22.55091562300008],[114.88021450300018,22.559112545000072],[114.8892339150001,22.572893832000105],[114.88682041100017,22.590871783000082],[114.86581619100016,22.60174461100017],[114.83222895100009,22.602076657000012],[114.80641643100016,22.592508912000095],[114.77460903400006,22.597692709000015],[114.754145298,22.589714066000127],[114.74377585100002,22.609404292000036],[114.74224181900004,22.627380042000098],[114.74248302600007,22.64696352300014],[114.73745015700004,22.66904582500017],[114.74998970200024,22.678724066000157],[114.75377792100007,22.693385353000064],[114.73887902200013,22.710646967000045],[114.74195106600021,22.73265274000012],[114.75254524100013,22.749661867000057],[114.77855131300012,22.762452811000013],[114.79542076900012,22.769924221000124],[114.80201256600016,22.773382880000142],[114.8132430350001,22.774847723],[114.81763756600016,22.77912018400012],[114.8212520660002,22.790560097000125],[114.81695432,22.800389479],[114.80727862600006,22.805382640000133],[114.79846598500004,22.808735808000122],[114.79273522200005,22.810939846000153],[114.78475996200008,22.815863348],[114.77523847699999,22.815822658000016],[114.76978600400004,22.810451565000065],[114.76246178500004,22.79108307500006],[114.7548934250001,22.781683661000116],[114.73414147200012,22.775783596000096],[114.71673233300012,22.790803400000087],[114.69548075400003,22.792641588000134],[114.68381192600022,22.781332801000033],[114.66421875199997,22.774175831000104],[114.645483957,22.767005894000178],[114.63778730600019,22.755072333000086],[114.61719811300017,22.75006745000003],[114.60254629900024,22.7404576360001],[114.57937799500021,22.733310589000112],[114.56332441500003,22.73273346600014],[114.5649860350002,22.71791575300007],[114.57109590700011,22.70235435000002],[114.5523380870001,22.694525458],[114.542246941,22.695298570000105],[114.53248131600017,22.699530341000028],[114.5220646490001,22.705959377000127],[114.52378006100015,22.687213932000148],[114.51710045700023,22.676418361000074],[114.50592603700024,22.66368896300004],[114.49957584500005,22.65311388700009],[114.50660702000019,22.64652286900009],[114.534905587,22.644647692000106],[114.52341051100004,22.645563161],[114.54821647600014,22.644540536000036],[114.5625106130001,22.648342190000065],[114.57325280000023,22.65444570500007],[114.58253014400006,22.655259507000082],[114.59034264400006,22.643866278000118],[114.5776473320001,22.635891018000066],[114.56088300899998,22.60879140800013],[114.54664147200018,22.602932033000073],[114.52914472700004,22.598334052000055],[114.51392662900015,22.587347723],[114.50220787900017,22.573919989],[114.49537194100006,22.561957098000065],[114.50204511800021,22.55084870000003],[114.50928795700023,22.549546617000043],[114.5181583990001,22.55280182500009],[114.52955162900004,22.55512116100006],[114.5297957690001,22.557359117000132],[114.53248131600017,22.562323309000178],[114.5371199880001,22.567206122000144],[114.54322350400017,22.569403387000037],[114.54721113400015,22.567084052],[114.55477949300021,22.55731842700014],[114.55990644600004,22.55512116100006],[114.57276451900023,22.551459052],[114.59327233200013,22.541896877000013],[114.61158287900017,22.528713283000158],[114.61768639400022,22.514146226000133],[114.6075138680002,22.50438060099999],[114.58765709700012,22.495591539000127],[114.57053206300006,22.484291258000113],[114.54216235700002,22.47799288500009],[114.52966684100025,22.468285095000127],[114.51581621400007,22.452642803000128],[114.50155683700021,22.452093817],[114.49219811300011,22.463975328000128],[114.49114017000014,22.464626369000182],[114.48511803500006,22.46832916900003],[114.4844669930001,22.474351304000052],[114.48324629000015,22.48456452000009],[114.47722415500007,22.48952871300004],[114.47681725400005,22.489894924000122],[114.47698001400013,22.490423895000117],[114.48015384200008,22.500148830000068],[114.47641035200016,22.509426174000126],[114.48454837300008,22.516994533000073],[114.48698978000019,22.521918036000113],[114.48511803500006,22.53440989800005],[114.47958418100019,22.539333401000093],[114.47958418100019,22.546210028000118],[114.47120201900022,22.551703192000144],[114.46216881600006,22.561753648000106],[114.45573978000002,22.57050202],[114.44695071700008,22.57155996300004],[114.44532311300023,22.571763414000102],[114.4403589200002,22.568670966000028],[114.436778191,22.57737864800002],[114.4373478520001,22.57937246300004],[114.4384871750001,22.582953192],[114.43303470099997,22.591091213000123],[114.42432701900012,22.60167064000008],[114.41423587300002,22.604803778000147],[114.40870201900012,22.61163971600017],[114.395762566,22.61351146000014],[114.39559980600004,22.61351146000014],[114.38013756600004,22.610337632000082],[114.36068769600003,22.604803778000147],[114.34026126400025,22.597886460000055],[114.32911217500023,22.605007229000094],[114.32846113399998,22.605454820000105],[114.32805423300019,22.604763088000155],[114.32455488399998,22.598537502000013],[114.31723066499998,22.60232168200004],[114.317149285,22.602362372000027],[114.31690514400022,22.60219961100016],[114.30534915500002,22.594183661000027],[114.30713951900012,22.585435289000046],[114.30217532599997,22.582953192],[114.27621504000008,22.587958075000145],[114.26962324300008,22.582953192],[114.24968509200019,22.57050202],[114.23829186300021,22.559922593000138],[114.22982832100004,22.555812893000095],[114.2207137380001,22.55512116100006],[114.19988163300016,22.556195374000126],[114.18303511600018,22.556195374000126],[114.17321740100017,22.563946032000057],[114.16195113200015,22.560536194000107],[114.15388960900022,22.551854554000144],[114.14872196500008,22.5381086230001],[114.13817997200017,22.53934885700015],[114.12887821400007,22.5381086230001],[114.11709598800016,22.527566630000038],[114.11399540200001,22.52880686400009],[114.10841434700004,22.534387919],[114.09146447800016,22.534387919],[114.08236738400014,22.529364325000117],[114.07911217500006,22.52757396000011],[114.07968183700004,22.523749091000113],[114.06723066500014,22.521918036000113],[114.05844160200016,22.516994533000073],[114.05526777400021,22.506944078000103],[114.04200280000006,22.50678131700012],[114.038747592,22.510565497000144],[114.03809655000006,22.51137929900007],[114.03581790500019,22.513820705000015],[114.03549238399997,22.514146226000133],[114.035411004,22.51422760600012],[114.0185653000001,22.522569078000075],[113.99927819100017,22.530625718000024],[113.98747806100019,22.531846421000054],[113.98438561300011,22.5337181660001],[113.97063235800006,22.5337181660001],[113.96379642000024,22.538112697000184],[113.96029707099999,22.528469143000034],[113.95193877700015,22.523841151000095],[113.94890085200004,22.51119979000005],[113.94881613900023,22.50034809500012],[113.94775777800024,22.49040645399999],[113.93580162900017,22.48891836100007],[113.92505944100006,22.487046617000104],[113.91529381600012,22.488674221000124],[113.91342207100004,22.487616278000175],[113.91032962300008,22.485825914000188],[113.90967858200011,22.477647203000075],[113.89034489800022,22.45271239900002],[113.88147873500006,22.47333294000016],[113.87436286199997,22.47818427200012],[113.8678732970002,22.494828602000055],[113.86615533000011,22.511493140000155],[113.88184655000023,22.514146226000133],[113.89389082100016,22.521144924000012],[113.87989342500012,22.53668854400003],[113.84376061300023,22.561957098000065],[113.83383222700016,22.57192617400007],[113.82235761800021,22.587225653000033],[113.81283613400004,22.604396877000127],[113.79915745100007,22.63100106100002],[113.793568,22.661614499000095],[113.7729335110001,22.67244751300016],[113.76465905000023,22.73480866100006],[113.75806725400017,22.75340403900016],[113.74439537900004,22.761175848000065],[113.712168816,22.763332424000065],[113.69971764400012,22.761175848000065],[113.69507897200018,22.75747304900004],[113.69117272200018,22.75161367400007],[113.68458092500012,22.746893622000172],[113.67237389400012,22.746893622000172],[113.65357506600016,22.758734442000115],[113.65626061300021,22.776841539000046],[113.66260826900005,22.798081773000106],[113.65528405000005,22.819240627000127],[113.64356530000006,22.83417389500006],[113.63257897200006,22.853094794000086],[113.61719811300011,22.890285549000097],[113.61085045700017,22.876369533000016],[113.61011803500006,22.8620466170001],[113.6128849620001,22.84837474200016],[113.61719811300011,22.836249091000084],[113.6055607430001,22.847235419000143],[113.60230553500006,22.866359768000123],[113.60499108200011,22.88751862200003],[113.61036217500018,22.904527085],[113.60287519599997,22.897650458000086],[113.59799238400004,22.88963450700014],[113.59603925899998,22.880560614000117],[113.59229576900023,22.889064846000068],[113.61133873800023,22.93378327000012],[113.61719811300011,22.95604075700008],[113.61915123800023,22.97939687700007],[113.62435957100003,22.999212958000086],[113.63819420700021,23.03489817900011],[113.63070722700016,23.03489817900011],[113.61670983200011,23.00787995000017],[113.61207116000017,22.994696356000034],[113.60914147200006,22.962876695000162],[113.60181725400005,22.930609442000062],[113.59669030000023,22.91819896000011],[113.59498131600006,22.929592190000093],[113.59506269600004,22.944769598000065],[113.59799238400004,22.960516669000025],[113.6040958990002,22.97345612200003],[113.60263105600002,22.98773834800012],[113.6050724620001,23.001410223000065],[113.61719811300011,23.03489817900011],[113.59921308700004,23.009222723000065],[113.58668053500006,22.953558661000145],[113.57618248800006,22.93870677299999],[113.58204186300023,22.957464911000145],[113.58383222700003,22.978461005000085],[113.5830184250001,23.02122630399999],[113.56421959700006,22.996893622000115],[113.55396569099999,22.987616278000147],[113.54200280000006,22.986517645000035],[113.53272545700023,22.99575429900007],[113.52881920700023,23.010809637000094],[113.52833092500023,23.038031317],[113.53638756600017,23.063137111000074],[113.55640709700006,23.084133205000043],[113.58212324300021,23.098456122000115],[113.63721764400023,23.10911692900005],[113.6919865240001,23.13255442900011],[113.72022545700023,23.13792552299999],[113.73145592500023,23.133856512000122],[113.7442326180001,23.126044012000037],[113.75806725400017,23.12156810100005],[113.78443444100017,23.13174062700001],[113.8008732430001,23.12840403900016],[113.83008873800011,23.117499091000113],[113.813243035,23.129787502000156],[113.79794355600004,23.13434479400011],[113.76107832099999,23.13792552299999],[113.74537194100006,23.143011786],[113.71981855600015,23.155340887000037],[113.70313561300011,23.157782294000082],[113.67392011800003,23.150458075000174],[113.62647545700023,23.117987372000083],[113.59327233200023,23.11066315300009],[113.587657097,23.10610586100013],[113.5508732430002,23.08787669500005],[113.54200280000006,23.08641185099999],[113.53687584700018,23.075018622000027],[113.52466881600012,23.06659577000009],[113.50912519599997,23.062160549000012],[113.49423261800015,23.06281159100014],[113.44516035199999,23.089341539000102],[113.41749108200011,23.096991278000147],[113.39869225400017,23.083319403000115],[113.41928144599999,23.065497137000037],[113.45142662900005,23.06232330900015],[113.48121178500016,23.05149974200016],[113.5023120010002,23.020423688],[113.503843993,22.989832793000133],[113.4912316410001,22.95395288300007],[113.48096764400012,22.93569570500007],[113.48422285200016,22.929348049000126],[113.48397871200021,22.924261786000116],[113.47372480600009,22.91819896000011],[113.46786543100004,22.919012762000037],[113.4463810560002,22.928452867000047],[113.42994225400005,22.93134186400009],[113.33651777400016,22.897772528000147],[113.30762780000023,22.894110419000086],[113.21298261800021,22.912014065000065],[113.21298261800021,22.904527085],[113.23487389400016,22.899644273000106],[113.258067254,22.897772528000147],[113.26392662900004,22.89459870000009],[113.28305097700003,22.880438544000143],[113.29224694100017,22.877264716000084],[113.3125919930001,22.881008205000125],[113.33204186300006,22.88751862200003],[113.35043379000004,22.889715887000122],[113.36793053500017,22.880682684000092],[113.42587324300003,22.815822658000016],[113.4400333990001,22.80414459800012],[113.49423261800015,22.774847723],[113.46338951900006,22.76239655199999],[113.45191491000006,22.755113023000078],[113.43954511800008,22.739447333],[113.42603600400004,22.749416408000073],[113.37753339900003,22.767401434000035],[113.39503014400012,22.748195705000068],[113.45362389400022,22.725734768000066],[113.4663192070001,22.716498114],[113.47632897200016,22.69985586100016],[113.51627743499996,22.671417566000017],[113.55304258400022,22.63847230300003],[113.56384382800005,22.61444370800008],[113.59916999500004,22.57517984600015],[113.59473803000017,22.523389661000024],[113.56251061300021,22.480414130000142],[113.54635483700011,22.437585488000035],[113.55157107300025,22.395836745000125],[113.55811608200017,22.380764065],[113.58163496200021,22.37132396],[113.61036217500018,22.370184637000065],[113.59945722699999,22.350531317],[113.59725996200021,22.341538804],[113.59669030000023,22.32575104400003],[113.59229576900023,22.316148179000052],[113.5830184250001,22.309515692],[113.5735783210001,22.300726630000113],[113.5747024890002,22.284831527000065],[113.57720985199998,22.266637463000066],[113.58374784400016,22.263458627000134],[113.5899867300002,22.25341532900002],[113.58765470099999,22.237882255],[113.56119560400023,22.233730112],[113.5528574840001,22.21900641500018],[113.53858483200004,22.221747137000094],[113.52295983200011,22.21303945500001],[113.52295983200011,22.212998765000023],[113.5294702480002,22.20286692900008],[113.5298771490001,22.202256578000018],[113.528086785,22.199937242000047],[113.52149498800023,22.19131094000015],[113.49722991400007,22.171640502000102],[113.48374549000019,22.155142169000058],[113.45921374300009,22.158004487000095],[113.42562910200004,22.186224677000112],[113.41903730600004,22.208807684000092],[113.4118758470001,22.22553131700012],[113.36451256600017,22.26776764500015],[113.36231530000006,22.274969794000086],[113.36019941500015,22.29315827000006],[113.3570255870001,22.30190664300015],[113.35157311300017,22.308335679000052],[113.30323326900023,22.343654690000093],[113.27637780000022,22.37205638200011],[113.25562584700018,22.403876044000143],[113.24268639400023,22.457464911000056],[113.23194420700023,22.479071356000148],[113.17758222700004,22.56411367400007],[113.16529381600016,22.575588283000013],[113.15845787900005,22.506740627000127],[113.16016686300021,22.487616278000175],[113.1656193370001,22.47874583500011],[113.18921959700006,22.462591864000057],[113.22730553499999,22.425279039000102],[113.30298912899998,22.309759833000115],[113.3181583950002,22.289166392000098],[113.3285060530001,22.268475656000092],[113.35401451900012,22.243557033000158],[113.36451256600017,22.23012929900007],[113.40197053000023,22.179574118000076],[113.362559441,22.171454169000057],[113.35084069100006,22.17153554900004],[113.325450066,22.183661200000117],[113.31299889400006,22.18577708500011],[113.30274498800016,22.183294989],[113.29794355600009,22.176825262000094],[113.294688347,22.167873440000065],[113.28565514400012,22.153265692000147],[113.28223717500012,22.14541250200007],[113.27816816500015,22.14052969],[113.27352949300021,22.138373114],[113.26343834700006,22.13703034100011],[113.25098717500023,22.11566803600006],[113.24659264400023,22.103461005000085],[113.25586998800011,22.08266836100007],[113.2549748060002,22.071112372000144],[113.25123131600016,22.060736395000063],[113.2471623060002,22.054266669000143],[113.23056074300003,22.043158270000117],[113.21412194100017,22.045314846000124],[113.19469215800014,22.046395047000075],[113.1783141750001,22.040914172000086],[113.1574666160001,22.02469964500007],[113.13962991200016,22.03685178200014],[113.11885684100004,22.06583849800016],[113.11060631600006,22.099188544000143],[113.1153263680002,22.11347077000006],[113.1245223320001,22.13108958499999],[113.11824435300016,22.143745558000163],[113.12745201900023,22.160956122000172],[113.11915123800023,22.17194245000003],[113.11329186300011,22.18740469000015],[113.11036217500006,22.20416901200015],[113.11060631600006,22.219305731000148],[113.08505293100015,22.207586981000176],[113.0772903340002,22.147266677000104],[113.05789313,22.12109389400011],[113.02661394800012,22.143212451000025],[113.02063776899999,22.125977567000163],[113.02211028100024,22.101146484000154],[113.017620467,22.08184254300006],[113.01610515000007,22.057711938000025],[113.01830428500003,22.034950080000087],[113.01828600200011,22.02115791600012],[113.02272908800002,22.002534256],[113.02121337500003,21.984604708000134],[113.018968822,21.97702006800007],[113.02119483900016,21.972191247000026],[113.0286183420002,21.961148361000095],[113.02562004300003,21.949425357000038],[113.01667585600003,21.94253333800016],[113.00147545700005,21.938706773000106],[112.99472089900016,21.938421942000062],[112.98934980600009,21.937323309000035],[112.98707115999999,21.928534247000144],[112.9859318370001,21.920558986000017],[112.98096764400023,21.907171942],[112.97958418100004,21.901190497000083],[112.97266686300021,21.892075914000188],[112.95708123400001,21.875653459000105],[112.92877957200012,21.86529893100011],[112.911586066,21.856290824000055],[112.87940514400023,21.87518952],[112.87110436300023,21.89374420800003],[112.85897871200004,21.932521877000127],[112.85157311300006,21.94830963700018],[112.84083092500023,21.960923570000077],[112.82601972700009,21.966131903000147],[112.81478925899998,21.961574611000017],[112.8077091810002,21.952826239000117],[112.80038496200021,21.94717031500015],[112.78858483200023,21.951808986000074],[112.74374433700021,21.931952216000166],[112.74024498800023,21.92544179900007],[112.73764082100004,21.896877346000096],[112.73047936300011,21.890326239],[112.70606530000023,21.891791083000058],[112.70045006600006,21.890326239],[112.69629967500012,21.885809637000033],[112.69092858200023,21.87514883000001],[112.68555748800011,21.869859117000047],[112.64511152400004,21.84935130399999],[112.64755293100009,21.822658596000068],[112.63306725400005,21.79580312700007],[112.60800214900021,21.77509186400006],[112.57911217500012,21.76683177299999],[112.55087324300004,21.772853908000073],[112.44320722700016,21.828436591000024],[112.42603600400004,21.84516022300015],[112.41504967500012,21.868475653000147],[112.4111434250001,21.901190497000083],[112.42416425899998,21.917792059000035],[112.48145592500012,21.944647528000033],[112.49366295700011,21.966131903000147],[112.48617597700004,21.966131903000147],[112.46884199300014,21.955959377000013],[112.43628991000016,21.945624091000113],[112.40479576900016,21.942857164000046],[112.39063561300021,21.955511786000116],[112.38843834700005,21.963120835000055],[112.37850996200004,21.976874091000166],[112.37631269600014,21.98655833500011],[112.37720787900005,21.994574286000088],[112.38168379000003,22.006740627000156],[112.39283287900004,22.056301174000097],[112.39747155000023,22.06850820500007],[112.37818444100004,22.05841705900009],[112.36483808700021,22.034491278000033],[112.35751386800021,22.00535716400016],[112.35653730600015,21.979722398000106],[112.37012780000006,21.93878815300009],[112.38770592500012,21.908758856000034],[112.39063561300021,21.901190497000083],[112.3877873060002,21.876166083000086],[112.38843834700005,21.862250067],[112.39405358200023,21.856268622000083],[112.39795983200021,21.850572007],[112.40113366,21.83746979400003],[112.40430748800006,21.81150950700014],[112.40211022200018,21.801418361000074],[112.39283287900004,21.78514232000005],[112.38795006600016,21.756089585000055],[112.38143964900009,21.748521226000104],[112.37256920700021,21.742621161000088],[112.36329186300006,21.73334381700012],[112.3321232430001,21.724066473000065],[112.2862248060002,21.708807684000092],[112.24488366000017,21.706529039000046],[112.22681725400017,21.729641018000095],[112.21664472700004,21.735541083000115],[112.19686933700008,21.74233633000013],[112.18238366000006,21.75299713700018],[112.18897545700011,21.770575262000122],[112.19898522200018,21.786810614000057],[112.20313561300021,21.806708075000145],[112.20093834700005,21.82672760600012],[112.19263756600017,21.843166408000016],[112.1822208990001,21.823146877000127],[112.17269941500008,21.814439195000077],[112.08554121200004,21.79608795800003],[112.04721113400002,21.794989325000145],[112.02816816500004,21.797349351000108],[112.01303144600004,21.804388739],[112.007090691,21.818670966000084],[112.01295006600006,21.8346214860001],[112.03736412899998,21.86249420800014],[112.04127037900011,21.884182033000016],[112.03443444100017,21.884182033000016],[112.01880944100016,21.85980866100006],[111.99317467500012,21.834173895],[111.96924889400005,21.824042059000035],[111.95167076900012,21.86497630400008],[111.93409264400012,21.89044830900015],[111.91187584700006,21.91356028900013],[111.890391472,21.925116278000147],[111.88892662900005,21.899115302000055],[111.89063561300004,21.86737702],[111.89576256600017,21.837062893000123],[111.90406334700006,21.815252997000172],[111.92066491,21.80003489799999],[111.94638105600004,21.78587474200016],[111.97510826900012,21.776190497000115],[112.00025475400017,21.774318752000124],[111.991953972,21.76382070500007],[111.91456139400012,21.719061591000028],[111.90577233200004,21.71588776200015],[111.90406334700006,21.708807684000092],[111.9041447270001,21.701727606000063],[111.90064537900005,21.698553778000175],[111.89576256600017,21.69586823100009],[111.8842879570001,21.682847398000106],[111.87671959700016,21.678127346],[111.86793053499999,21.676703192000115],[111.8388778000001,21.678127346],[111.83692467500006,21.685288804000052],[111.84229576900006,21.69904205900015],[111.85377037900015,21.707424221000124],[111.86988366000017,21.698553778000175],[111.87671959700016,21.698553778000175],[111.8753361340001,21.709702867000104],[111.86947675900015,21.716742255000085],[111.86060631599999,21.721502997000172],[111.84937584700012,21.725816148000078],[111.83619225400015,21.716986395000035],[111.82935631600006,21.728705145],[111.82894941500015,21.749212958000058],[111.8350529310002,21.76683177299999],[111.82227623800004,21.7521019550001],[111.80689537900005,21.743312893000123],[111.79395592500012,21.744533596000124],[111.78793379000008,21.759995835000055],[111.76978600400005,21.753607489000146],[111.7579044930001,21.753322658000016],[111.72584069100017,21.76683177299999],[111.72120201900005,21.762640692000147],[111.70093834700006,21.768377997000027],[111.67807050900015,21.781154690000065],[111.695567254,21.761419989000114],[111.76059004000015,21.725816148000078],[111.77247155000012,21.705471096000068],[111.77963300900015,21.675441799000126],[111.77369225400005,21.650132554],[111.7469181650001,21.643947658000016],[111.76034589900021,21.640204169000086],[111.77247155000012,21.635199286000145],[111.7820744150001,21.627590236000017],[111.78793379000008,21.616034247000172],[111.74813886800021,21.61444733300014],[111.7283634770001,21.616359768],[111.71290123800011,21.623439846000068],[111.69044030000006,21.603827216000113],[111.66578209700018,21.558661200000145],[111.65137780000012,21.540920315000065],[111.64047285200016,21.533148505000057],[111.6304630870001,21.529852606000034],[111.61972089900004,21.533026434000092],[111.6064559250001,21.544623114],[111.60092207100008,21.554144598],[111.5965275400001,21.56549713700015],[111.59107506600016,21.575751044000086],[111.5818791020001,21.58185455900009],[111.58082116000004,21.568345445000105],[111.58204186300004,21.555487372000087],[111.58643639400006,21.543768622000087],[111.59555097700016,21.534084377000127],[111.5777287120001,21.530015367000157],[111.55665123800004,21.522365627000152],[111.53785241000011,21.520453192],[111.52719160200016,21.534084377000127],[111.52100670700011,21.534084377000127],[111.51661217500012,21.52456289300015],[111.50448652400021,21.518215236000017],[111.4893498060002,21.514715887000037],[111.47608483200011,21.513617255000085],[111.46810957100016,21.518255927000027],[111.46713300900015,21.529445705000015],[111.47266686300006,21.55459219],[111.4553328790001,21.551174221000096],[111.44410241000011,21.563625393],[111.43222089900016,21.602972723],[111.42432701900006,21.590277411000145],[111.41211998800011,21.576320705000068],[111.4111434250001,21.568264065000122],[111.41553795700011,21.55768463700018],[111.43091881600006,21.544012762000037],[111.43799889400012,21.534084377000127],[111.3877873060002,21.541449286000145],[111.3628035820001,21.541205145],[111.34970136800015,21.526678778000143],[111.36304772200005,21.532416083000115],[111.37647545700005,21.53270091400016],[111.40430748800011,21.526678778000143],[111.39356530000006,21.51968008000007],[111.3628035820001,21.506781317000062],[111.35645592500006,21.501288153000033],[111.3443302740001,21.487494208000115],[111.29249108200005,21.450628973000065],[111.26734459700012,21.43935781500006],[111.25294030000012,21.444728908000016],[111.2690535820001,21.45213450700011],[111.28028405000012,21.46531810100005],[111.30128014400005,21.49933502800009],[111.2797957690001,21.506293036000088],[111.25562584699999,21.517279364000117],[111.23218834700006,21.52456289300015],[111.21265709700006,21.520453192],[111.20630944100004,21.532049872000115],[111.19239342500005,21.531195380000113],[111.157969597,21.520453192],[111.157969597,21.513617255000085],[111.17164147200006,21.513617255000085],[111.1675724620001,21.50861237200003],[111.16496829500008,21.506008205000125],[111.17164147200006,21.49933502800009],[111.18417402400016,21.505764065],[111.19882246200004,21.507798570000134],[111.21363366000004,21.50568268400012],[111.22632897200016,21.49933502800009],[111.18458092500006,21.485663153000147],[111.16163170700004,21.476385809000092],[111.14364668100019,21.465806382000054],[111.13404381600006,21.471625067],[111.11988366000004,21.47337474200019],[111.08838951900012,21.472642320000077],[111.08838951900012,21.480129299000126],[111.12997480600009,21.49310944200012],[111.12997480600009,21.49933502800009],[111.12671959700006,21.50259023600013],[111.12378991000006,21.506781317000062],[111.11670983200005,21.50096263200011],[111.10767662900005,21.495794989],[111.097911004,21.492661851000136],[111.08838951900012,21.49310944200012],[111.079356316,21.497870184000035],[111.0784611340001,21.502875067000062],[111.079356316,21.50812409100014],[111.075450066,21.513617255000085],[111.03443444100012,21.531480210000055],[111.02759850400017,21.540920315000065],[111.0232853520001,21.52781810099999],[111.01172936300006,21.521185614000117],[110.98593183700021,21.513617255000085],[110.9956974620001,21.50763580900015],[111.00220787900017,21.48993561400006],[111.01392662900004,21.485663153000147],[111.00131269600016,21.462876695000105],[110.99244225400005,21.45498281500015],[110.97974694100006,21.45213450700011],[110.97974694100006,21.444728908000016],[110.99537194100006,21.44529857000019],[111.00814863400008,21.44989655200011],[111.01693769600016,21.458075262000037],[111.02011152400021,21.46922435100005],[111.02686608200005,21.47931549700003],[111.04224694100017,21.48456452],[111.05860436300011,21.48309967700014],[111.06861412900011,21.472642320000077],[111.04371178500006,21.469387111000017],[111.02491295700011,21.456529039000184],[110.992930535,21.424872137000122],[110.96591230600004,21.432847398000078],[110.94117272200018,21.422064520000063],[110.917246941,21.405910549000012],[110.89332116000017,21.397528387000037],[110.88965905000012,21.39549388200011],[110.87728925900015,21.386135158000073],[110.86988366000017,21.38324616100006],[110.86939537900011,21.38471100500011],[110.85230553500006,21.38914622599999],[110.82984459700006,21.39223867400007],[110.82982264748878,21.392247348205856],[110.80616295700005,21.401597398000106],[110.79053795700005,21.403753973],[110.76815839900021,21.397528387000037],[110.7439884770001,21.38255442900011],[110.70484459700016,21.348537502000067],[110.6900333990001,21.331000067000147],[110.67628014400005,21.30963776200018],[110.6648869150001,21.28563060100005],[110.65707441500015,21.260402736000074],[110.65088951900005,21.260402736000074],[110.65479576900006,21.31460195500013],[110.66285241000011,21.33722565300009],[110.6775822270001,21.348537502000067],[110.6645613940001,21.348374742000104],[110.65552819100017,21.34275950700011],[110.64893639400012,21.33331940300009],[110.64332115999999,21.321844794000143],[110.64185631600004,21.337307033000073],[110.63575280000005,21.34642161700016],[110.63184655000006,21.35537344],[110.63648522200016,21.37026601800015],[110.64478600400017,21.37457916900014],[110.67164147200006,21.381293036],[110.69239342500006,21.39915599200016],[110.72461998800011,21.40314362200014],[110.75538170700005,21.413397528000175],[110.76636803500006,21.444728908000016],[110.760020379,21.444728908000016],[110.72730553500017,21.418890692],[110.6355900400001,21.381048895000063],[110.61670983200005,21.345404364],[110.61573326900012,21.301214911000116],[110.6197208990001,21.290757554000052],[110.64332115999999,21.25291575700011],[110.63648522200016,21.23016998900009],[110.616953972,21.229681708],[110.57520592500005,21.246730861000128],[110.57715905000012,21.240383205000015],[110.58017011800021,21.234605210000055],[110.5840763680002,21.229681708],[110.58871504000015,21.22557200700014],[110.48145592500005,21.217189846000068],[110.4632267590001,21.21214427300005],[110.4476017590001,21.203599351000108],[110.43116295700011,21.19147370000003],[110.4243270190001,21.19147370000003],[110.42701256600017,21.20600006700006],[110.43555748800011,21.22630442900008],[110.4373478520001,21.239243882000082],[110.4334416020001,21.25128815300009],[110.42701256600017,21.26154205900012],[110.42579186300006,21.269232489000117],[110.4373478520001,21.27338288000008],[110.43580162900005,21.27920156500012],[110.43311608200004,21.28286367400007],[110.42929121200004,21.28534577],[110.4243270190001,21.287665106000148],[110.42733808700008,21.28856028900016],[110.4299422540001,21.28847890800007],[110.43148847700016,21.289496161000145],[110.43116295700011,21.293890692000115],[110.4373478520001,21.293890692000115],[110.44629967500012,21.28998444200012],[110.45663496200021,21.28774648600013],[110.46631920700005,21.283433335000055],[110.47266686300011,21.27338288000008],[110.4788517590001,21.27338288000008],[110.48031660200016,21.28168366100006],[110.48218834700012,21.28656647300012],[110.48633873800004,21.293890692000115],[110.48633873800004,21.30133698100009],[110.4788517590001,21.30133698100009],[110.47315514400012,21.295477606000148],[110.46607506600006,21.296087958000115],[110.4570418630001,21.29930247599999],[110.44483483200005,21.30133698100009],[110.44483483200005,21.307562567000062],[110.48633873800004,21.328680731000176],[110.48633873800004,21.335516669000086],[110.47803795700005,21.336371161],[110.47266686300011,21.33490631700012],[110.46876061300011,21.332017320000105],[110.46534264400012,21.328680731000176],[110.46534264400012,21.348537502000067],[110.45118248800006,21.331976630000113],[110.4419051440001,21.314357815],[110.43392988400008,21.30878327000009],[110.4243270190001,21.328680731000176],[110.4239201180001,21.341620184000178],[110.4373478520001,21.397528387000037],[110.43116295700011,21.397528387000037],[110.4195255870002,21.37742747599999],[110.4009708990001,21.38703034100017],[110.3689884770001,21.424872137000122],[110.37867272200005,21.43748607000019],[110.38314863400008,21.441473700000174],[110.38949629000014,21.444728908000016],[110.38949629000014,21.45213450700011],[110.3584904310002,21.435736395],[110.37208092500006,21.40302155200008],[110.3943791020001,21.363999742000104],[110.38949629000014,21.328680731000176],[110.3858341810002,21.33148834800012],[110.37647545700005,21.335516669000086],[110.38266035200016,21.321844794000143],[110.36817467500006,21.32534414300015],[110.34498131600006,21.33885325700011],[110.32813561300006,21.342271226000133],[110.32813561300006,21.335516669000086],[110.34140058700008,21.330023505000057],[110.35670006600006,21.319159247000087],[110.36630293100019,21.306097723],[110.36280358200005,21.293890692000115],[110.36280358200005,21.287665106000148],[110.37378991000017,21.280585028000115],[110.38485761800021,21.271063544000114],[110.39340254000015,21.260402736000074],[110.39698326900012,21.249823309000032],[110.39901777400004,21.245550848000036],[110.40821373800011,21.23802317900005],[110.41065514400006,21.232367255000053],[110.40992272200006,21.22378164300015],[110.40748131600017,21.21698639500012],[110.40455162900017,21.212062893000066],[110.40316816500008,21.208482164000184],[110.40235436300004,21.193670966000028],[110.39942467500006,21.17658112200017],[110.39405358200011,21.162543036000116],[110.38607832100016,21.15672435100008],[110.37533613400015,21.152655341000028],[110.34742272200018,21.13320547100001],[110.33375084700006,21.116359768],[110.31527754000015,21.10765208500011],[110.28028405000012,21.09589264500015],[110.26929772200018,21.08917877800009],[110.22177168100009,21.03266022300009],[110.21884199300003,21.027573960000055],[110.21021569100006,21.03457265800013],[110.20557701900012,21.04938385600012],[110.203868035,21.066961981000063],[110.20460045700005,21.082220770000035],[110.19556725400005,21.071275132000054],[110.19068444100017,21.05906810100008],[110.18409264400012,21.033840236000017],[110.17782636800015,21.02008698100009],[110.15674889400012,20.98602936400009],[110.14307701900006,20.99225495000003],[110.14307701900006,20.98602936400009],[110.15479576900005,20.977280992000104],[110.15512129000008,20.961981512000037],[110.15097089900004,20.943182684000092],[110.14926191500015,20.92397695500013],[110.1541447270001,20.90643952],[110.17164147200018,20.87702057500009],[110.17725670700004,20.862494208000058],[110.16724694100017,20.872992255000142],[110.1641544930002,20.87677643400015],[110.15674889400012,20.87677643400015],[110.1606551440001,20.867905992000104],[110.16187584700006,20.862209377000127],[110.1606551440001,20.856675523000106],[110.15674889400012,20.848863023000106],[110.1607365240001,20.847845770000063],[110.16293379000008,20.847886460000055],[110.16391035200016,20.846747137000094],[110.1641544930002,20.842027085],[110.16871178500006,20.842678127000156],[110.16944420700004,20.843939520000063],[110.16879316500015,20.846096096000068],[110.17042076900006,20.848863023000106],[110.17750084699999,20.847479559000035],[110.18018639400012,20.846014716000084],[110.18336022200006,20.846096096000068],[110.1914982430001,20.848863023000106],[110.1914982430001,20.835842190000122],[110.211680535,20.840521552000055],[110.28711998800006,20.842027085],[110.30079186300006,20.852118231000148],[110.3196720710001,20.859930731000148],[110.3357853520001,20.858832098],[110.34180748800011,20.842027085],[110.34864342500012,20.848863023000106],[110.35523522200018,20.83966705900006],[110.36109459700005,20.835882880000113],[110.36581464900021,20.838568427],[110.3689884770001,20.848863023000106],[110.38624108200011,20.82599518400012],[110.4026798840001,20.790106512000122],[110.40943444100006,20.750962632000082],[110.39698326900012,20.718491929],[110.38355553500004,20.713446356000148],[110.3689884770001,20.71967194200012],[110.35645592500012,20.732326565000093],[110.34864342500012,20.746405341000024],[110.34725996200021,20.761786200000174],[110.3481551440001,20.803045966000028],[110.34180748800011,20.82151927300005],[110.33375084700006,20.805731512000094],[110.32862389400006,20.799750067000087],[110.32129967500006,20.794256903000147],[110.3330184250001,20.77875397300015],[110.33212324300021,20.76788971600014],[110.32252037900015,20.759955145],[110.3076278000001,20.753241278000147],[110.31446373800011,20.746405341000024],[110.31063886800021,20.745062567000147],[110.30884850400005,20.745103257000135],[110.30811608200011,20.743963934000092],[110.3076278000001,20.738959052000055],[110.3374943370001,20.72581614799999],[110.32943769600016,20.70722077],[110.30884850400005,20.683986721000064],[110.30079186300006,20.657049872000115],[110.30770918100009,20.66038646000014],[110.31348717500006,20.664862372000087],[110.31796308700021,20.670599677000084],[110.32129967500006,20.677557684000146],[110.32813561300006,20.677557684000146],[110.32960045700011,20.664455471],[110.328379754,20.652655341000028],[110.32374108200004,20.64305247600005],[110.31446373800011,20.63654205900015],[110.32593834700018,20.630764065],[110.33936608200004,20.631537177000112],[110.3521427740001,20.63654205900015],[110.36280358200005,20.643377997000172],[110.36280358200005,20.62230052300005],[110.37183678500006,20.634344794000143],[110.380625847,20.633775132],[110.38917076900012,20.625921942000033],[110.39698326900012,20.61611562700007],[110.3919376960001,20.606756903000147],[110.39747155000012,20.59544505400008],[110.40853925900015,20.58592357000016],[110.4251408210001,20.580064195000134],[110.4429630870001,20.570868231000148],[110.45167076900006,20.56769440300009],[110.45801842500012,20.56736888200005],[110.47266686300011,20.568589585],[110.4788517590001,20.56769440300009],[110.49520918100009,20.55316803600006],[110.51148522199999,20.52789948100009],[110.53419030000005,20.478257554],[110.515391472,20.434759833000058],[110.50228925900015,20.412746486000128],[110.48267662900011,20.403225002000156],[110.47535241000017,20.39765045800014],[110.45850670700011,20.36225006700012],[110.40683027400016,20.30516185100005],[110.39999433700021,20.300767320000077],[110.376719597,20.305243231000034],[110.36207115999999,20.30487702],[110.3554793630001,20.29734935100005],[110.34433027400021,20.27924225500014],[110.3196720710001,20.26972077000015],[110.29403730600004,20.262925523000106],[110.28028405000012,20.252997137000122],[110.26563561300011,20.264146226000136],[110.25635826900006,20.269354559000035],[110.24561608200004,20.27342357000019],[110.2371525400001,20.27496979400003],[110.20801842500005,20.27342357000019],[110.1966251960001,20.270249742000132],[110.19263756599999,20.263251044000143],[110.19117272200005,20.256170966000084],[110.18775475400005,20.252997137000122],[110.1275333990001,20.247992255000085],[110.10962975400005,20.252997137000122],[110.09310957100016,20.270575262000065],[110.08570397200006,20.27342357000019],[110.07764733200011,20.274562893000123],[110.06983483200005,20.277777411000088],[110.06373131600006,20.28302643400015],[110.06112714900016,20.290228583],[110.05762780000006,20.29637278900016],[110.0489201180001,20.300238348000093],[110.03785241000006,20.301703192000147],[110.027110222,20.300767320000077],[110.0215763680001,20.29702383000013],[110.01181074300004,20.283677476000104],[110.00595136800021,20.28034088700009],[110.00098717500006,20.28082916900017],[109.9952091810002,20.28278229400003],[109.99146569100017,20.28497955900012],[109.99227949300008,20.286525783000158],[109.96583092500012,20.280951239000146],[109.95093834700005,20.272162177],[109.94442793100004,20.256089585],[109.94141686300006,20.251857815000093],[109.9339298840001,20.244126695000162],[109.92489668100009,20.238267320000134],[109.91724694100006,20.23932526200018],[109.91456139400006,20.248480536000056],[109.91724694100006,20.259955145],[109.9217228520001,20.269680080000157],[109.92408287900017,20.27342357000019],[109.9285587900001,20.294582424000097],[109.93091881600017,20.317816473000036],[109.92872155000006,20.32636139500012],[109.91944420700005,20.34223053600006],[109.91724694100006,20.352280992000047],[109.88575280000012,20.366359768000095],[109.8741154310002,20.37628815300009],[109.88990319100016,20.38271719],[109.86280358200005,20.40631745000003],[109.86573326900006,20.410060940000065],[109.87891686300011,20.41087474200016],[109.8880314460001,20.414048570000045],[109.89380944100017,20.420477606000148],[109.89608808700015,20.431097723],[109.903575066,20.431097723],[109.91488691500008,20.41864655199999],[109.94581139400006,20.39573802299999],[109.95809980600009,20.38271719],[109.97486412899998,20.354641018],[109.98243248800004,20.351548570000105],[109.98544355600009,20.372137762000037],[109.99244225400005,20.38495514500009],[110.00611412900015,20.40119049700003],[110.0154728520001,20.418402411000145],[110.00977623800006,20.434230861000074],[109.98397871200021,20.45319245000009],[109.97225996200021,20.46454498900006],[109.96493574300021,20.478257554],[109.96298261800003,20.47199127800003],[109.96045983200005,20.466253973000065],[109.95850670700011,20.459906317000115],[109.95809980600009,20.451605536000056],[109.94361412900005,20.460679429000052],[109.93921959700006,20.473863023000106],[109.93751061300006,20.48965078300013],[109.93091881600017,20.506252346],[109.929942254,20.471380927000084],[109.92701256600017,20.45490143400009],[109.91724694100006,20.444769598000118],[109.914805535,20.457017320000105],[109.90951582100016,20.471177476000108],[109.90292402400004,20.48419830900012],[109.89608808700015,20.492580471000068],[109.88282311300011,20.49774811400009],[109.8497013680001,20.500921942000144],[109.83521569100006,20.506252346],[109.8274845710001,20.511460679000024],[109.82211347700016,20.51654694200012],[109.81959069100006,20.523504950000117],[109.821055535,20.534125067000062],[109.82569420700005,20.542792059000146],[109.831797722,20.544582424000126],[109.8374943370002,20.544378973000093],[109.8414005870001,20.547186591000028],[109.84376061300006,20.557074286000145],[109.84522545700011,20.58112213700018],[109.84823652400021,20.59564850500011],[109.8414005870001,20.59564850500011],[109.82772871200004,20.554632880000113],[109.821055535,20.554632880000113],[109.81885826900012,20.589097398000135],[109.802012566,20.616278387000037],[109.77588951900006,20.63133372600005],[109.745860222,20.62978750200001],[109.75171959700006,20.645412502000013],[109.75025475400011,20.660467841000028],[109.75155683700008,20.67373281500015],[109.76571699300021,20.684393622000083],[109.77515709700006,20.68618398600007],[109.77979576900006,20.683539130000085],[109.7852482430001,20.67959219],[109.79712975400005,20.677557684000146],[109.805918816,20.679510809000117],[109.81275475400005,20.684515692000062],[109.82772871200004,20.697984117000047],[109.8306583990001,20.693670966000028],[109.8370060560002,20.68915436400009],[109.8414005870001,20.684393622000083],[109.84424889400006,20.689683335000055],[109.84888756600017,20.69627513200014],[109.85409589900004,20.701849677000137],[109.8587345710001,20.704250393000095],[109.86190839900003,20.708156643000095],[109.86044355600008,20.715480861000074],[109.854746941,20.719916083000058],[109.82943769600016,20.707912502000127],[109.81397545700005,20.708441473000036],[109.80103600400004,20.706284898000103],[109.79371178500004,20.69114817900011],[109.786875847,20.69114817900011],[109.76026451900006,20.729966539000046],[109.75643964900004,20.749701239000057],[109.77320397200018,20.76691315300009],[109.76343834700005,20.776556708000058],[109.75814863400015,20.792792059000092],[109.76026451900006,20.807806708000115],[109.77320397200018,20.81411367400007],[109.77320397200018,20.82151927300005],[109.7520451180001,20.842027085],[109.7520451180001,20.848863023000106],[109.75953209700006,20.848863023000106],[109.75953209700006,20.855047919000086],[109.75302168100002,20.863714911000088],[109.745371941,20.86766185100008],[109.73780358200005,20.8653832050001],[109.7315373060002,20.855047919000086],[109.73902428500017,20.807847398000106],[109.72836347700016,20.815130927000112],[109.71387780000012,20.833685614000117],[109.70435631599999,20.842027085],[109.70679772200006,20.83185455900015],[109.71786543100009,20.807847398000106],[109.68946373800006,20.83539459800012],[109.66561933700008,20.88092682500009],[109.66122480600009,20.927557684000092],[109.69125410200014,20.958726304],[109.67896569100017,20.97386302299999],[109.68067467500012,20.994452216000024],[109.69752037900011,21.040594794000143],[109.70077558700015,21.038560289000102],[109.70850670700005,21.035874742000047],[109.71168053499999,21.033840236000017],[109.70980879000015,21.05719635600009],[109.69996178500004,21.082993882000135],[109.68555748800006,21.106594143000063],[109.67017662900005,21.12323639500012],[109.67660566500015,21.138495184000092],[109.6958927740001,21.170111395000063],[109.70435631599999,21.178452867000047],[109.72022545700005,21.183417059000092],[109.72836347700016,21.17788320500007],[109.73642011800008,21.169012762000037],[109.7520451180001,21.164129950000145],[109.7466740240002,21.179673570000077],[109.75489342500012,21.192938544000086],[109.76710045700011,21.204535223],[109.77320397200018,21.21539948100009],[109.77027428500017,21.27130768400015],[109.76571699300021,21.280829169000143],[109.76571699300021,21.287665106000148],[109.77352949300021,21.29970937700007],[109.77393639400012,21.318670966000084],[109.76571699300021,21.35594310100008],[109.77637780000006,21.3536644550001],[109.78370201900006,21.34829336100013],[109.78736412899998,21.33991120000017],[109.786875847,21.328680731000176],[109.79981530000012,21.332912502000013],[109.80347741000017,21.341213283000073],[109.80396569100016,21.350043036000113],[109.80738366000017,21.35594310100008],[109.81625410200009,21.3575707050001],[109.8414005870001,21.35594310100008],[109.92408287900017,21.362779039000188],[109.92408287900017,21.37026601800015],[109.90479576900012,21.390692450000028],[109.9175724620001,21.413804429],[109.94052168100004,21.43720123900006],[109.9512638680001,21.458400783000158],[109.9334416020001,21.453802802000112],[109.92457116000006,21.46503327000012],[109.92725670700005,21.47980377800009],[109.94442793100004,21.485663153000147],[109.94442793100004,21.49310944200012],[109.91797936300006,21.48940664300009],[109.88697350400005,21.481512762000094],[109.85897871200021,21.48281484600001],[109.8414005870001,21.506781317000062],[109.82772871200004,21.49310944200012],[109.82772871200004,21.485663153000147],[109.83521569100006,21.485663153000147],[109.83521569100006,21.480129299000126],[109.82691491000004,21.47052643400015],[109.82374108200011,21.46503327000012],[109.821055535,21.458400783000158],[109.81421959700016,21.458400783000158],[109.80274498800004,21.473334052],[109.79908287900011,21.498602606000148],[109.80054772200006,21.55459219],[109.78329511800014,21.546372789000102],[109.7701115240001,21.551581122000087],[109.76514733200005,21.56338125200007],[109.77320397200018,21.575100002000156],[109.77320397200018,21.58185455900009],[109.7480574880001,21.57493724200019],[109.7480574880001,21.574611721000068],[109.74781334700006,21.54523346600014],[109.76026451900006,21.511623440000122],[109.77320397200018,21.49310944200012],[109.77320397200018,21.485663153000147],[109.76571699300021,21.485663153000147],[109.76571699300021,21.49310944200012],[109.75953209700006,21.49310944200012],[109.74146569100006,21.47402578300013],[109.7085880870002,21.4833031270001],[109.64966881600016,21.520453192],[109.65992272200016,21.528062242000047],[109.66822350400017,21.559637762000037],[109.67701256600006,21.575100002000156],[109.67335045700011,21.58209870000003],[109.67172285200016,21.596625067000062],[109.67017662900005,21.602972723],[109.6736759770001,21.606390692],[109.67676842500012,21.61005280200005],[109.677989129,21.615301825000145],[109.67701256600006,21.623439846000068],[109.65878339900004,21.614935614000117],[109.63721764400006,21.601629950000117],[109.62525475400005,21.585394598000065],[109.63599694100006,21.568264065000122],[109.62891686300006,21.56683991100006],[109.62232506600012,21.56781647300012],[109.6158146490001,21.570705471000068],[109.60800214900021,21.575100002000156],[109.60800214900021,21.58185455900009],[109.61280358200011,21.589789130000053],[109.61353600400005,21.601223049000012],[109.61085045700005,21.61151764500012],[109.60499108200011,21.616034247000172],[109.60303795700005,21.62059153900013],[109.61548912900017,21.650132554],[109.59449303500006,21.634182033000073],[109.58529707100016,21.630845445000045],[109.58139082100016,21.640204169000086],[109.5799259770001,21.650458075000117],[109.57593834700006,21.659369208000058],[109.56942793100015,21.666489976000022],[109.5608830090001,21.671291408000098],[109.56421959700006,21.691229559000174],[109.56771894600016,21.698553778000175],[109.56080162900004,21.707261460000055],[109.56788170700011,21.71995677300013],[109.58155358200005,21.732367255000057],[109.59449303500006,21.740179755000057],[109.59449303500006,21.746405341000113],[109.58334394600008,21.744533596000124],[109.57496178500017,21.74567291900017],[109.56942793100015,21.750637111000046],[109.56771894600016,21.759995835000055],[109.4926863940001,21.698553778000175],[109.49805748800006,21.695379950000117],[109.50098717500006,21.691880601000108],[109.50326582100016,21.688381252000127],[109.5061955090001,21.684963283000044],[109.5030216810002,21.68451569200012],[109.49594160200014,21.685003973000036],[109.4926863940001,21.684963283000044],[109.4926863940001,21.678127346],[109.49927819100017,21.680161851000133],[109.51343834700018,21.68268463700015],[109.51986738400008,21.684963283000044],[109.52100670700005,21.665757554000077],[109.50635826900006,21.65766022300015],[109.48471113400015,21.65802643400015],[109.46469160200016,21.664455471000068],[109.46469160200016,21.657619533000158],[109.5298771490001,21.63568756700012],[109.5405379570001,21.626898505000057],[109.543223504,21.61957428600006],[109.57276451900005,21.581732489000114],[109.57105553500016,21.57623932500009],[109.56495201900005,21.57273997599999],[109.5608830090001,21.568264065000122],[109.56226647200018,21.536932684000178],[109.5608830090001,21.526678778000143],[109.5569767590001,21.52155182500006],[109.5433048840001,21.508246161000113],[109.5405379570001,21.503078518000038],[109.53077233200011,21.491644598000065],[109.48585045700005,21.47431061400009],[109.47217858200005,21.465806382000054],[109.4668888680001,21.47483958500005],[109.46583092500012,21.48289622599999],[109.46786543100004,21.49087148600013],[109.47217858200005,21.49933502800009],[109.46387780000005,21.49298737200014],[109.4546004570001,21.48183828300013],[109.4472762380001,21.47011953300013],[109.44418379000008,21.462103583],[109.4382430350001,21.455064195000134],[109.4244083990001,21.45237864800005],[109.34376061300006,21.453517971000096],[109.33521569100006,21.458156643],[109.32081139400006,21.480129299000126],[109.3155216810002,21.459051825000117],[109.29892011800015,21.443264065000065],[109.27759850400017,21.4369977890001],[109.25863691500015,21.444728908000016],[109.2537541020001,21.440334377000127],[109.250254754,21.438299872000115],[109.2476505870002,21.43626536700016],[109.2449650400001,21.43162669500005],[109.23878014400006,21.43162669500005],[109.23715254000015,21.458685614],[109.23878014400006,21.485663153000147],[109.22706139400006,21.472235419000143],[109.21973717500006,21.44912344],[109.21461022200005,21.41742584800012],[109.1719669930002,21.417547919000114],[109.15707441500015,21.423529364000114],[109.14942467500006,21.43854401200015],[109.144297722,21.427557684000092],[109.14462324300004,21.417954820000105],[109.14893639400006,21.40997955900015],[109.15626061300006,21.403753973],[109.13868248800011,21.401597398000106],[109.0964461600001,21.42519765800013],[109.077403191,21.43162669500005],[109.0501408210001,21.43716054900007],[109.039805535,21.450262762000037],[109.043711785,21.46625397300012],[109.06006920700011,21.480129299000126],[109.0825301440001,21.48602936400006],[109.10987389400012,21.48956940300006],[109.13282311300006,21.495917059000178],[109.14258873800011,21.510199286000056],[109.14210045700004,21.553452867000075],[109.1357528000001,21.602972723],[109.12891686300006,21.602972723],[109.12435957100016,21.590969143000066],[109.11605879000014,21.59056224200016],[109.10718834699999,21.59796784100014],[109.10108483200011,21.60919830900015],[109.09481855600009,21.60919830900015],[109.0874129570001,21.599554755],[109.07764733200005,21.596991278000086],[109.06967207100008,21.602240302000084],[109.06674238400008,21.616034247000172],[109.06006920700011,21.616034247000172],[109.05665123800011,21.61155833500011],[109.04639733200005,21.602972723],[109.04981530000006,21.61408112200003],[109.05469811300006,21.622056382],[109.06674238400008,21.636542059000035],[109.06674238400008,21.643947658000016],[109.04843183700021,21.63690827000015],[109.01376386800021,21.61538320500013],[108.99244225400017,21.60919830900015],[108.97022545700011,21.606350002000013],[108.95899498800011,21.606594143000066],[108.94459069100006,21.60919830900015],[108.92798912900015,21.615057684000092],[108.92074629000015,21.622015692],[108.90650475400017,21.650824286000116],[108.90170332100016,21.665187893],[108.89747155000006,21.671291408000098],[108.89161217500012,21.67267487200017],[108.87549889400012,21.670152085000055],[108.86947675900008,21.671291408000098],[108.85726972700016,21.683417059000178],[108.855235222,21.684963283000044],[108.855235222,21.694281317000062],[108.86036217500012,21.697902736000128],[108.86646569099999,21.700181382000025],[108.86947675900008,21.705389716000084],[108.86426842500012,21.731878973000065],[108.8614201180001,21.73334381700012],[108.86548912900005,21.739732164000046],[108.86744225400011,21.741400458000058],[108.8699650400001,21.74233633000013],[108.87574303500017,21.746405341000113],[108.88599694100012,21.750433661000088],[108.9165958990002,21.75381094],[108.92237389400006,21.762884833],[108.92408287900017,21.76683177299999],[108.91684004000015,21.764349677000055],[108.90430748800004,21.762762762000122],[108.89747155000006,21.759995835000055],[108.90308678500004,21.774318752000124],[108.89380944100017,21.771551825000085],[108.88632246200021,21.767157294000114],[108.88062584700006,21.761175848000093],[108.87574303500017,21.75381094],[108.86947675900008,21.75381094],[108.8614201180001,21.759995835000055],[108.8614201180001,21.76683177299999],[108.866953972,21.77415599200016],[108.87574303500017,21.80097077000009],[108.86947675900008,21.80097077000009],[108.8582462900001,21.78729889500015],[108.855235222,21.781154690000065],[108.84986412900017,21.791693427000112],[108.85067793100008,21.800523179],[108.855235222,21.808172919000114],[108.8614201180001,21.815252997000172],[108.84083092500006,21.81159088700012],[108.8013615240001,21.81834544500005],[108.77955162900005,21.815252997000172],[108.78891035200016,21.810939846000064],[108.82105553500006,21.80097077000009],[108.81739342500006,21.796576239],[108.81625410200016,21.793361721000124],[108.81592858200011,21.789007880000057],[108.814219597,21.781154690000065],[108.83261152400004,21.78384023600013],[108.84253991000017,21.76805247599999],[108.84351647200006,21.745021877000127],[108.83472741000017,21.725816148000078],[108.82894941500008,21.720038153000118],[108.8221134770001,21.715033270000063],[108.81666100400004,21.716376044000143],[108.814219597,21.729641018000095],[108.81405683700002,21.741115627000127],[108.81210371200021,21.752427476000108],[108.80591881600006,21.758449611000017],[108.79306074300021,21.75381094],[108.79859459700006,21.748277085000083],[108.80054772200018,21.744818427000084],[108.79989668100019,21.73334381700012],[108.79664147200016,21.736965236000103],[108.79517662900005,21.73798248900006],[108.79281660200014,21.738430080000157],[108.78687584700005,21.740179755000057],[108.79306074300021,21.73334381700012],[108.78980553500017,21.729152736000103],[108.78638756600004,21.72785065300009],[108.78296959700006,21.727443752000095],[108.77955162900005,21.725816148000078],[108.79989668100019,21.725816148000078],[108.79989668100019,21.719061591000028],[108.79306074300021,21.719061591000028],[108.79306074300021,21.712836005000085],[108.81666100400004,21.699693101000108],[108.83432050900015,21.68573639500015],[108.83863366000017,21.66803620000006],[108.82105553500006,21.643947658000016],[108.8423771490001,21.64638906500015],[108.851817254,21.645982164000046],[108.8614201180001,21.643947658000016],[108.84994550900015,21.625962632],[108.83399498800006,21.627997137000094],[108.81544030000012,21.637925523000106],[108.79647871200021,21.643947658000016],[108.78736412900005,21.641424872000087],[108.78207441500014,21.63548411700016],[108.77808678500017,21.628729559000035],[108.77271569099999,21.623439846000068],[108.7627873060002,21.62055084800012],[108.74594160200009,21.620266018],[108.73853600400005,21.616034247000172],[108.74537194100006,21.602972723],[108.73349043100009,21.61273834800012],[108.7312931650001,21.629461981000148],[108.72754967500006,21.64476146000011],[108.71119225400017,21.650132554],[108.71119225400017,21.657619533000158],[108.73316491000016,21.662420966000138],[108.74032636800021,21.660142320000162],[108.74537194100006,21.650132554],[108.7515568370002,21.650132554],[108.7515568370002,21.69171784100014],[108.74244225400005,21.68414948100012],[108.74024498800006,21.67999909100017],[108.73853600400005,21.671291408000098],[108.731700066,21.671291408000098],[108.712657097,21.68842194200012],[108.7154240240001,21.709133205000125],[108.72470136800021,21.729722398000078],[108.72486412900011,21.746405341000113],[108.7178654310002,21.743150132000054],[108.71119225400017,21.746405341000113],[108.70045006600004,21.722479559000032],[108.69410240999999,21.712144273000135],[108.6831974620002,21.705389716000084],[108.67457116000006,21.715399481000176],[108.65430748800011,21.723537502000013],[108.649180535,21.73334381700012],[108.6587833990001,21.733221747000144],[108.66700280000006,21.73484935099999],[108.6831974620002,21.740179755000057],[108.6831974620002,21.746405341000113],[108.66537519600016,21.751857815000147],[108.652598504,21.749986070000162],[108.64633222700016,21.751369533000158],[108.649180535,21.76683177299999],[108.6556095710001,21.778225002000127],[108.66480553500016,21.787176825000174],[108.67310631600017,21.798000393000066],[108.67701256600017,21.815252997000172],[108.66968834700006,21.815252997000172],[108.66700280000006,21.809515692],[108.66016686300006,21.80133698100009],[108.656016472,21.794826565],[108.64975019600016,21.814154364000117],[108.649180535,21.822088934000092],[108.64234459700016,21.822088934000092],[108.64307701900012,21.80939362200003],[108.64218183700021,21.796861070000134],[108.6396590500001,21.784979559000178],[108.63550866000017,21.774318752000124],[108.62867272200006,21.774318752000124],[108.62330162900011,21.783514716000024],[108.62183678500004,21.787909247000083],[108.615000847,21.787909247000083],[108.62501061300011,21.76780833500005],[108.62916100400004,21.756089585000055],[108.62867272200006,21.746405341000113],[108.59449303500017,21.740179755000057],[108.59376061300006,21.754828192000062],[108.59750410200014,21.766546942000147],[108.60751386800004,21.787909247000083],[108.58057701900005,21.78131745000003],[108.56942793100008,21.794378973],[108.5713810560002,21.812811591000056],[108.58423912900005,21.822088934000092],[108.60059655000005,21.83063385600012],[108.62208092500006,21.87107982000005],[108.63550866000017,21.884182033000016],[108.63550866000017,21.890326239],[108.62256920700005,21.896226304000137],[108.59449303500017,21.91766998900006],[108.59408613400015,21.91120026200015],[108.59229576900006,21.90680573100009],[108.58969160200016,21.90289948100009],[108.58765709700006,21.897853908000158],[108.58334394600016,21.90053945500013],[108.57960045700011,21.90180084800015],[108.56714928500017,21.904608466000084],[108.57089277400021,21.90127187700007],[108.573985222,21.89996979400017],[108.5769962900001,21.899359442],[108.58082116000006,21.897853908000158],[108.57032311300004,21.893377997000087],[108.56031334700018,21.895493882000025],[108.5537215500001,21.903753973],[108.55298912900017,21.91766998900006],[108.55811608200005,21.923651434000092],[108.56690514400006,21.92780182500003],[108.57382246200004,21.93545156500006],[108.57333418100002,21.951808986000074],[108.56714928500017,21.951808986000074],[108.5669865240002,21.948553778000033],[108.56739342500012,21.941961981000148],[108.56714928500017,21.93878815300009],[108.55982506600017,21.93878815300009],[108.558360222,21.94257233300003],[108.55298912900017,21.951808986000074],[108.55054772200006,21.93545156500006],[108.54566491000016,21.923814195000045],[108.53768964900021,21.914496161],[108.52564537900011,21.904608466000084],[108.52149498800006,21.906724351000104],[108.50513756600006,21.910834052000055],[108.50513756600006,21.904608466000084],[108.51075280000006,21.90159739799999],[108.51319420700005,21.898504950000117],[108.51539147200018,21.894924221000124],[108.51880944100017,21.890326239],[108.50171959700006,21.885809637000033],[108.48487389400012,21.877101955000157],[108.47836347700016,21.866400458000143],[108.491465691,21.856268622000083],[108.46314537900017,21.862982489000117],[108.460703972,21.887111721000124],[108.47779381600016,21.945013739000146],[108.47022545700011,21.940252997000144],[108.46469160200009,21.934312242000104],[108.460703972,21.926947333000115],[108.45801842500006,21.91766998900006],[108.457286004,21.88833242400007],[108.44874108200011,21.865790106000173],[108.4556583990001,21.848781643],[108.46957441500015,21.83295319200009],[108.48462975400017,21.822088934000092],[108.4815373060002,21.821478583000115],[108.47095787900005,21.822088934000092],[108.4720158210001,21.81753164300015],[108.47388756600017,21.814439195000077],[108.47608483200004,21.811712958],[108.47779381600016,21.807806708],[108.48829186300006,21.814764716000084],[108.49708092500012,21.809027411000116],[108.50294030000006,21.797593492000075],[108.50513756600006,21.787909247000083],[108.50196373800004,21.776678778000086],[108.49610436300006,21.76825592700005],[108.49130293100004,21.757717190000093],[108.491465691,21.740179755000057],[108.48218834700006,21.743597723000065],[108.4759220710001,21.74433014500009],[108.47046959700018,21.74306875200007],[108.46347089900009,21.740179755000057],[108.4754337900001,21.736761786000145],[108.48682701900005,21.731878973000065],[108.49691816500015,21.725897528000147],[108.50513756600006,21.719061591000028],[108.50513756600006,21.712836005000085],[108.491465691,21.712836005000085],[108.49170983200004,21.708685614000117],[108.49390709700006,21.705877997000087],[108.49504642000008,21.705633856000034],[108.4976505870001,21.705389716000084],[108.49634850400017,21.704779364000146],[108.49382571700008,21.705389716000084],[108.47779381600016,21.705389716000084],[108.47779381600016,21.698553778000175],[108.48642011800008,21.697251695000162],[108.49634850400017,21.692938544000082],[108.50513756600006,21.69171784100014],[108.50513756600006,21.684963283000044],[108.50147545700011,21.68036530199999],[108.50082441500015,21.680324611000103],[108.50228925900008,21.679144598000065],[108.50513756600006,21.671291408000098],[108.51303144600008,21.700181382000025],[108.5201115240001,21.71263255400011],[108.53305097700009,21.719061591000028],[108.53052819100016,21.71019114799999],[108.52597089900021,21.705389716000084],[108.52149498800006,21.702297268],[108.51880944100017,21.698553778000175],[108.51791425900008,21.689276434000035],[108.52076256600004,21.680568752000127],[108.51880944100017,21.671291408000098],[108.5240177740001,21.675604559000092],[108.52792402400003,21.67767975500011],[108.53101647200005,21.67987702],[108.53305097700009,21.684963283000044],[108.53711998800004,21.685370184000035],[108.53858483200011,21.684027411000145],[108.53931725400005,21.678127346],[108.54224694100006,21.68382396],[108.55298912900017,21.698553778000175],[108.55982506600017,21.698553778000175],[108.56544030000005,21.678534247000115],[108.55722089900009,21.67161692900011],[108.54517662900017,21.66608307500009],[108.53931725400005,21.650132554],[108.54883873800011,21.65619538],[108.55298912900017,21.657619533000158],[108.54688561300006,21.643052476000108],[108.5359806650001,21.63800690300009],[108.5234481130001,21.639308986000103],[108.51197350400017,21.643947658000016],[108.51197350400017,21.636542059000035],[108.51734459699999,21.634955145],[108.52100670700005,21.633002020000145],[108.52540123800006,21.63117096600017],[108.53305097700009,21.630316473000065],[108.53052819100016,21.62051015800013],[108.52686608200011,21.614243882],[108.52100670700005,21.610785223],[108.51197350400017,21.60919830900015],[108.51661217500006,21.599188544000167],[108.51880944100017,21.595526434000035],[108.49048912900005,21.583685614000057],[108.48121178500017,21.58185455900009],[108.48007246200015,21.587836005],[108.48178144600016,21.599514065],[108.48910566500015,21.60761139500012],[108.50513756600006,21.602972723],[108.50513756600006,21.60919830900015],[108.491465691,21.623439846000068],[108.47852623800011,21.606146552000055],[108.47177168100009,21.60049062700007],[108.46347089900009,21.595526434000035],[108.46998131600016,21.58690013200011],[108.47120201900012,21.581203518000123],[108.46713300900015,21.577541408000073],[108.45801842500006,21.575100002000156],[108.45801842500006,21.568264065000122],[108.46102949300004,21.56785716400013],[108.47095787900005,21.568264065000122],[108.47095787900005,21.56199778900016],[108.42001386800015,21.556870835000083],[108.40211022200018,21.55980052299999],[108.38965905000006,21.575100002000156],[108.39063561300004,21.59536367400007],[108.4067488940001,21.60024648600013],[108.42090905000012,21.594224351000108],[108.41635175900008,21.58185455900009],[108.43189537900011,21.583238023000078],[108.43873131599999,21.594183661000116],[108.44369550900015,21.623439846000068],[108.43751061300011,21.623439846000068],[108.43246504000015,21.618109442],[108.4275822270001,21.616685289000127],[108.42237389400012,21.618719794000143],[108.41635175900008,21.623439846000068],[108.41635175900008,21.630316473000065],[108.42123457100016,21.635158596000153],[108.42733808700004,21.639146226000136],[108.434825066,21.64215729400003],[108.44369550900015,21.643947658000016],[108.44141686300011,21.652085679000137],[108.44809004000014,21.658107815000122],[108.45948326900012,21.662095445000105],[108.47095787900005,21.664455471000068],[108.47095787900005,21.671291408000098],[108.42343183700004,21.663275458000143],[108.40967858200005,21.664455471000068],[108.42359459699999,21.679388739000117],[108.427012566,21.68773021],[108.42383873800006,21.698553778000175],[108.42090905000012,21.693182684000035],[108.41358483200005,21.684800523000078],[108.40967858200005,21.678127346],[108.4080509770001,21.683294989000032],[108.40699303500004,21.683294989000032],[108.40333092500012,21.684963283000044],[108.39795983200004,21.67283763200014],[108.385996941,21.672919012000122],[108.33765709700012,21.69745514500012],[108.3359481130001,21.70685455900015],[108.34131920700005,21.725816148000078],[108.32154381600006,21.709662177000112],[108.3113712900001,21.681708075000174],[108.31275475400015,21.651841539000188],[108.32764733200011,21.630316473000065],[108.3064884770001,21.630316473000065],[108.31112714900021,21.619940497000172],[108.31397545700005,21.616034247000172],[108.30640709700006,21.61273834800012],[108.30079186300006,21.60724518400012],[108.29664147200018,21.59943268400012],[108.29346764400012,21.589300848000065],[108.30909264400012,21.58893463700006],[108.31397545700005,21.589300848000065],[108.31397545700005,21.58185455900009],[108.30713951900005,21.57811107000005],[108.28956139400012,21.564032294000114],[108.28598066500014,21.558294989000142],[108.28378339900004,21.544745184000178],[108.27784264400006,21.540106512000065],[108.26913496200004,21.538641669000086],[108.2586369150001,21.534084377000127],[108.22641035200016,21.50800202000009],[108.21102949300021,21.500637111000074],[108.21029707100014,21.513617255000085],[108.2193302740001,21.52936432500003],[108.24496504000015,21.564357815000122],[108.25196373800006,21.58185455900009],[108.25277754000015,21.58852773600013],[108.2525333990001,21.595282294000086],[108.24935957100016,21.60309479400017],[108.24170983200011,21.612616278000147],[108.22681725400004,21.625555731000176],[108.2278751960001,21.632066148000074],[108.23829186300011,21.643947658000016],[108.21688886800003,21.635402736000103],[108.21029707100014,21.630316473000065],[108.2098087900001,21.63349030200014],[108.21029707100014,21.643947658000016],[108.20606530000005,21.64256419500005],[108.20093834700006,21.638617255000057],[108.19727623800011,21.636542059000035],[108.2046818370001,21.631008205000015],[108.2088322270001,21.623928127000156],[108.2088322270001,21.61619700700014],[108.20411217500012,21.60919830900015],[108.20411217500012,21.602972723],[108.21029707100014,21.602972723],[108.17636152400021,21.575751044000086],[108.15796959700018,21.57151927299999],[108.13526451900006,21.58185455900009],[108.1284285820001,21.575100002000156],[108.13233483200011,21.565375067],[108.12826582100016,21.562730210000108],[108.12094160200016,21.566310940000093],[108.11475670700011,21.575100002000156],[108.10580488400015,21.55906810100005],[108.09278405000006,21.558661200000145],[108.0784611340001,21.563218492000104],[108.0662541020001,21.56199778900016],[108.0769962900001,21.54547760600009],[108.07105553500011,21.536566473000065],[108.05689537900017,21.5360375020001],[108.03199303500004,21.551906643000038],[108.0171004570001,21.555243231000063],[108.0022892590001,21.554266669000167],[107.99122155000006,21.54840729400003],[108.0273543630001,21.523342190000122],[108.03956139400006,21.520453192],[108.0186466810002,21.51894765800013],[108.01124108200005,21.506537177000112],[108.01368248800006,21.49241771],[108.02222741000011,21.485663153000147],[108.03622480600004,21.488226630000057],[108.04761803500004,21.49315013200011],[108.06104576900012,21.49616120000003],[108.0805770190001,21.49310944200012],[108.0805770190001,21.485663153000147],[108.04322350400005,21.481634833000083],[108.01661217500012,21.470363674000097],[107.97071373800011,21.43162669500005],[107.9638778000001,21.43162669500005],[107.96534264400005,21.44733307500003],[107.97266686300004,21.460272528000033],[107.99122155000006,21.480129299000126],[107.99122155000006,21.485663153000147],[107.94419112200015,21.530779928000115],[107.93096195500006,21.534242248000155],[107.89613204000008,21.569433899000032],[107.86771000200017,21.589225973000097],[107.85546268800012,21.60033640600001],[107.84445560700013,21.61749298100007],[107.83985640500012,21.629895325000135],[107.83236332200006,21.63935211200011],[107.81164107300006,21.64782704700012],[107.77789636300005,21.655991923000112],[107.76011967000012,21.658214010000123],[107.74482344600007,21.657542217000138],[107.72942386900009,21.65196116100004],[107.69025313300014,21.624727682000028],[107.67185632300007,21.6176480110001],[107.6132035730001,21.605607402000047],[107.59284305800006,21.605607402000047],[107.55098514800008,21.610826721000148],[107.53305342600007,21.608656311000075],[107.52654219600007,21.6032819630001],[107.518273967,21.587365621000075],[107.50985070800013,21.58178456700007],[107.5013240970002,21.581526184],[107.49119551600009,21.584110006000103],[107.47378055800013,21.590569560000134],[107.46101648000015,21.59635732000011],[107.45703739400007,21.631497294000084],[107.44592696200006,21.64694854700015],[107.42603153500008,21.652064514000145],[107.40996016500017,21.645398255000046],[107.3828817140002,21.61888824500015],[107.34815515200009,21.599354553000136],[107.33357556600018,21.612508760000065],[107.32965498900009,21.616046041000075],[107.30319665500011,21.688703105000016],[107.27265588400009,21.71831370100007],[107.24387211100006,21.71516143800001],[107.21214278200013,21.70523956300012],[107.17235192900014,21.71505808500008],[107.09483728100005,21.778981832000127],[107.06584680200008,21.795828349000132],[107.02373051000015,21.804096578000085],[107.00290490800009,21.810556132000116],[106.98910730000014,21.824250387000134],[106.9871435950001,21.844817607000138],[106.99753055800012,21.860837301000075],[107.0118449300002,21.875565084000087],[107.02114668800007,21.892256571000033],[107.02021651300018,21.91292714400005],[107.00936446200015,21.92744822200008],[106.99189782700009,21.93535471600013],[106.97122725400018,21.93581980400016],[106.95376062100016,21.928998515],[106.93774092600009,21.920006816000168],[106.92037764500017,21.91695790600012],[106.8988285730002,21.92775828000016],[106.88539270000015,21.943312887],[106.87686608900006,21.957317200000105],[106.86477380400007,21.968065898000035],[106.84053755700009,21.973595276000125],[106.79909305900011,21.972613423000055],[106.78152307100005,21.97504221600012],[106.76100752800008,21.98506744400005],[106.75614994400016,21.989511617000133],[106.7483468020001,21.99995025700018],[106.74255904200007,22.00387766600015],[106.72876143400012,22.008321839000146],[106.72235355700015,22.006978251000092],[106.68974572800019,21.97287180600013],[106.67460453300006,21.962174785000016],[106.65894657500021,21.962794901000095],[106.65310713700015,21.968892720000053],[106.64959314000006,21.977574362000027],[106.64814620000018,21.987031149000174],[106.6481978770001,21.99550608300008],[106.66788659700015,22.042686666000108],[106.67300256400003,22.06609609000007],[106.67217574100013,22.09250274700004],[106.67005700700004,22.096636861000047],[106.66132369000015,22.106558737000157],[106.65868819200008,22.111933085000103],[106.65837813400017,22.120097962000116],[106.66147871900014,22.13632436100012],[106.66132369000015,22.143559062000108],[106.65610437100005,22.155134583000134],[106.64866296500006,22.165056458000052],[106.64235843900022,22.17611521400015],[106.63967126500019,22.190894674000063],[106.65181522700017,22.205622457000075],[106.66054854300008,22.213425598000086],[106.66292565900018,22.223295797000063],[106.63967126500019,22.29667633100011],[106.63378015100008,22.30944041],[106.61729537000022,22.32277292900001],[106.57745284100011,22.3245816040001],[106.55533532700011,22.3319713340001],[106.5417961020001,22.34509714800008],[106.53652510600007,22.360548401000145],[106.5345097250001,22.39754872600012],[106.53302821800011,22.403444519000132],[106.52691329000005,22.427779440000123],[106.52691329000005,22.438269755000178],[106.53032393400011,22.449276836000152],[106.54138269100011,22.464263001000134],[106.54587854000013,22.472531230000087],[106.5687712000001,22.57459218300012],[106.57714278200008,22.595314433000155],[106.58799483200006,22.607768453000133],[106.6076318770001,22.609990540000055],[106.61951745600012,22.59732981400019],[106.63005944800008,22.580121562000116],[106.64633752500012,22.568804423000145],[106.66788659700015,22.56911448200013],[106.68018558800011,22.57944976800003],[106.69770389900006,22.630867818000112],[106.70509362800007,22.64611236600014],[106.7265910240002,22.677273255000113],[106.73553104700014,22.695411682000056],[106.73956180800022,22.726779277000063],[106.74664148000008,22.74434926300013],[106.75847538300016,22.754219462000105],[106.79149662300014,22.772125346000095],[106.7987313230001,22.784372660000102],[106.78984297700018,22.797188416],[106.76844893400018,22.799229635000145],[106.74509118700021,22.797188416],[106.73036340400013,22.797627665000118],[106.73103519700012,22.800108134000098],[106.7149121510001,22.82610137900015],[106.68514652500008,22.848218893000148],[106.67439782700015,22.861473897000067],[106.66747318500015,22.86752004000003],[106.65682784000015,22.86997467000016],[106.64793949400016,22.866977438000063],[106.63987797000006,22.853386536000173],[106.63274662300007,22.849614156000044],[106.6103707280001,22.852869771000126],[106.59915694200018,22.864987895000027],[106.59171553500008,22.88087839800012],[106.58169030800016,22.895270284000148],[106.56696252400016,22.903771057000156],[106.51693973800016,22.915424093000027],[106.50117842600017,22.92170278000013],[106.48779423100021,22.925423483000046],[106.47797570900016,22.919609884000167],[106.47373824100012,22.897104797000154],[106.45797692900011,22.888965759000044],[106.31566003400016,22.853799947000184],[106.29638472500012,22.85111277300014],[106.27659265200006,22.85103525800004],[106.25540531400011,22.854652609000098],[106.23401127200006,22.863851013000115],[106.22708663000017,22.875555726000087],[106.22300419100006,22.912375183],[106.2023852940001,22.946998393000015],[106.17003584900007,22.966015320000068],[106.13210534700008,22.975007019000103],[106.07758671000006,22.981027324000067],[105.99924524000019,22.975368754000115],[105.98999515800008,22.97061452300012],[105.97397546400012,22.939892884000173],[105.96121138500015,22.932399801000045],[105.94482995600012,22.927697246000047],[105.91320398000019,22.924389954000063],[105.90369551600011,22.925500997000157],[105.88664229400008,22.929764303000027],[105.87599694900008,22.92826568700012],[105.87010583500009,22.92309804300011],[105.86659183800006,22.915062358000128],[105.86225101700009,22.907750143000143],[105.85387943500008,22.904649556],[105.83568933100005,22.91723276800012],[105.77936202000015,22.976118062000022],[105.76613285400006,22.995160828000095],[105.76602950100013,22.995160828000095],[105.76582279400006,22.995315857000136],[105.76582279400006,22.995470886000177],[105.75471236200022,23.005676982000136],[105.74324019400015,23.01079294800003],[105.7316129970001,23.01422943100006],[105.7196757410002,23.019603781000125],[105.70071049000009,23.03781972200009],[105.69032352700006,23.043969218000043],[105.66495039900016,23.043374939],[105.6368384190001,23.05133311000004],[105.5659900310001,23.054097799000104],[105.55157230700016,23.059678854000122],[105.53968672700013,23.075466003000102],[105.53529423100022,23.094095358000075],[105.53523999500005,23.099012778000155],[105.5348291430001,23.136263327000123],[105.52826623600012,23.155512797000156],[105.52132535800008,23.163147762],[105.51715580200018,23.16773427300008],[105.4738509520001,23.19450266500014],[105.46434248900007,23.206000672000172],[105.44398197500013,23.245145569000115],[105.44398197500013,23.24519724600013],[105.44398197500013,23.245223084000045],[105.43085616100014,23.267805685000084],[105.42589522400013,23.27320587200013],[105.4144747320001,23.278476868000084],[105.40667159100009,23.2774691770001],[105.39912683100012,23.274885356000095],[105.38951501499999,23.275427958000037],[105.37571740700015,23.281499939000085],[105.3596460370002,23.29155100500013],[105.34403975500005,23.304185893000138],[105.33225752800014,23.317957662000097],[105.32435103400022,23.336742045],[105.32006189000006,23.354337870000094],[105.31215539600012,23.36581003900001],[105.29365523300005,23.366275127000122],[105.28006433200008,23.35878204400008],[105.24554447500012,23.33017913800002],[105.2359326580001,23.319792176000092],[105.22766442900016,23.300646057],[105.2238920500001,23.281706645000053],[105.21753584900009,23.26535105500001],[105.20089603700009,23.25400807700011],[105.18957889800016,23.25219940200013],[105.18244755100007,23.25442148800012],[105.17660811400017,23.25775461900004],[105.16896000200009,23.259434103],[105.16580773900014,23.260570984000097],[105.15841801000013,23.26576446600002],[105.15562748200009,23.266849670000013],[105.1503564860002,23.264756775000038],[105.14777266500013,23.260881043],[105.14591231300014,23.256695252000057],[105.14239831500018,23.25374969500014],[105.06105961100016,23.232459005000166],[105.04664188700015,23.226826274000032],[105.01568770300005,23.206827494000024],[104.9814262290001,23.19036855100005],[104.94520105000018,23.159827779000025],[104.93507246900006,23.15427256300002],[104.92101648000013,23.155771179000126],[104.89476485200007,23.170343933000183],[104.88086389200012,23.17171335900015],[104.87006351800008,23.163548482000138],[104.86675622600009,23.149466655000126],[104.86551599200006,23.133472799000074],[104.86127852400008,23.119597677000012],[104.83590539600019,23.099753926000016],[104.81146244300005,23.09618825300005],[104.79792321800008,23.08556874600005],[104.82701704900009,22.954284770000086],[104.82794722500014,22.934156799000032],[104.82360640500016,22.924131572000093],[104.77420373600015,22.89622629800003],[104.76288659700006,22.884728292000162],[104.72821171100006,22.839098002000085],[104.71534427900022,22.827083232000017],[104.70077152500019,22.818246562000024],[104.68320153900012,22.812174581000146],[104.66273767200008,22.810934346000053],[104.62904463800007,22.82077870700003],[104.6098210050001,22.823000794],[104.6044466550002,22.82021026600016],[104.59426639800014,22.809022318000117],[104.58842696200006,22.806851909000116],[104.57922855600006,22.80886729000015],[104.57447432400008,22.812277934000107],[104.5704952400001,22.81625701900016],[104.5646558020002,22.81995188400016],[104.56124515800016,22.8243960570001],[104.56269209900009,22.82984792100008],[104.56238203900007,22.83439544700012],[104.55354537000008,22.836049093000057],[104.55121993000014,22.832845154],[104.53333988400018,22.814396668000157],[104.4686409920001,22.764864807000105],[104.44900394700008,22.745176087000075],[104.36191128100015,22.692535546000116],[104.35546960500008,22.688642069000096],[104.34017338100007,22.68636830600009],[104.32523889200016,22.69251780200007],[104.30441328900011,22.70466176400005],[104.24948124200009,22.72832957000018],[104.23682051600021,22.742075501000116],[104.22968916800019,22.76194508900012],[104.22875899300001,22.783442485000148],[104.2330998130001,22.804810690000167],[104.24116133700008,22.8243960570001],[104.2132560630001,22.825016175000158],[104.12819665500008,22.7968266810001],[104.09905114800019,22.79460459400009],[104.0868555100001,22.791555685000063],[104.07331628500012,22.782667339000156],[104.06597823100012,22.774011536],[104.05404097500015,22.753754374],[104.0447392180001,22.745176087000075],[104.02381026300006,22.71918284100009],[104.01394006400008,22.691019185000144],[104.00748051000019,22.630247701000044],[104.00339807100008,22.61495147700016],[103.99006555200017,22.58534088100005],[103.98556970200016,22.57025136400013],[103.98556970200016,22.55454172800007],[103.98737837800016,22.540175680000075],[103.98536299700018,22.527153219000027],[103.9739941810001,22.515267639000015],[103.95952478000018,22.507102763000162],[103.95094649200016,22.516456197000124],[103.9407145590001,22.52467275000005],[103.9254183350001,22.528238424000122],[103.91704675300011,22.53325103800007],[103.9027840580001,22.55857249000014],[103.89461918200006,22.569217835000142],[103.88867639200012,22.57174998000015],[103.8726566980001,22.573610332000055],[103.8668172610002,22.57541900700015],[103.84418298400013,22.599293519000025],[103.83632816600019,22.602755839000064],[103.8296619060001,22.609163717000012],[103.80966312700015,22.63872263600014],[103.80532230700007,22.647404277000092],[103.79421187400007,22.659444886000173],[103.72641239500015,22.716288961000103],[103.65850956200009,22.793209330000124],[103.64693404200013,22.799048768000105],[103.60383589700015,22.776026917000067],[103.5900382900002,22.768017070000084],[103.58254520700015,22.755795593000144],[103.57680912300012,22.740835267000094],[103.56833418800008,22.724970602000084],[103.54714685000013,22.70068267900008],[103.5445630290002,22.691019185000144],[103.54992302200006,22.648662168],[103.55091923000006,22.640789694000105],[103.54621667500007,22.63143625900007],[103.51428064000012,22.587356262000085],[103.50363529500012,22.58141347300007],[103.48544519000009,22.58410064700011],[103.4731462000001,22.591645406000154],[103.44751469000008,22.618258769000175],[103.41092777500015,22.67474110900004],[103.4043131920001,22.688797099000155],[103.40234948700018,22.706522115000055],[103.40400313400002,22.723885397000075],[103.40172937100013,22.737838033000074],[103.38751835200017,22.745176087000075],[103.37894006300021,22.756777446000015],[103.36875980700009,22.767138570000142],[103.3570809330001,22.776026917000067],[103.3441618250001,22.782977397000035],[103.32157922400013,22.790392965000148],[103.3096419680002,22.787938334],[103.26995446800012,22.723265279000103],[103.25248783400016,22.678565165000165],[103.24489139800019,22.668694967000093],[103.22840661600006,22.655827536000103],[103.16846195500013,22.626475321000115],[103.14174524000006,22.607044983000137],[103.1300146900002,22.577951151000136],[103.13259851100011,22.569786276000016],[103.14469079600009,22.555781963000115],[103.14572432500009,22.54555002900004],[103.14200362100014,22.537798564000028],[103.09125736500008,22.505087382000127],[103.0744108480001,22.49816274000015],[103.05828780100009,22.49547556600011],[103.04418013600016,22.486483867000075],[103.04485192900009,22.472892965000185],[103.04908939600007,22.456821594000033],[103.04505863500012,22.440543518000098],[103.02903894100002,22.430156555000067],[103.00893680900012,22.430311585000126],[102.98909305800012,22.43759796199999],[102.95653690600008,22.45971547400002],[102.91958825700013,22.469223938000184],[102.90258671100011,22.477233785000166],[102.89369836400007,22.487362366000028],[102.85928186100014,22.55051096600009],[102.85313236500016,22.56844268900015],[102.84517419400012,22.58523752900011],[102.8318416750001,22.599706930000035],[102.81339318800016,22.608698629000074],[102.7712252200001,22.61779368100015],[102.75189823400015,22.62528676400008],[102.69272871900009,22.670503642000156],[102.67216149900011,22.67835845900011],[102.63226729400006,22.684973043000113],[102.6124752200001,22.691587626000015],[102.60611901900013,22.696703593],[102.5911845300001,22.712568258000104],[102.58668868000008,22.716082256000064],[102.57619836500012,22.71380849300014],[102.57035892700004,22.707090556000125],[102.5657597250001,22.699545797000084],[102.55836999500015,22.6949465950001],[102.53578739400015,22.695825094000057],[102.52891442900008,22.707814026000037],[102.52633060700006,22.72595245400005],[102.5157886150001,22.745176087000075],[102.49434289600018,22.760394796000114],[102.46778121000008,22.768585510000136],[102.44271814000015,22.76517486600001],[102.4256132410002,22.745305278],[102.4256132410002,22.745176087000075],[102.41522627800006,22.709829407000154],[102.40726810700014,22.693447978],[102.3949691170001,22.68052887],[102.38463383000006,22.677738343000144],[102.37316166200006,22.67835845900011],[102.36272302300019,22.677428283000054],[102.35585005700014,22.669935201000115],[102.35626346800008,22.658721415000073],[102.36334314000005,22.651435038],[102.37269657400012,22.645750631000155],[102.37858768800001,22.639084371000035],[102.38246342000016,22.630816142000086],[102.38432377100017,22.628852437000077],[102.37688236500017,22.615571595000134],[102.2525488690001,22.49547556600011],[102.24252364200007,22.47718210900014],[102.23663252800006,22.443437398000086],[102.23130985600018,22.42633250000013],[102.21802901200013,22.410674540000073],[102.20355961100009,22.41248321500008],[102.18655806500006,22.421061503000104],[102.1645439050001,22.425505676000014],[102.14702559400021,22.421061503000104],[102.12883549000017,22.410881246000045],[102.1186552330001,22.39754872600012],[102.10734543400011,22.39754872600012],[102.1006201580001,22.40576528000004],[102.09994836500013,22.414860331000014],[102.09534916200006,22.42312856100007],[102.08553064000009,22.429123027000102],[102.0759188230002,22.432430319],[102.01457889800021,22.446072896000103],[101.99499353000013,22.447416484000158],[101.97421960500017,22.44514272000005],[101.95287723800007,22.436874491000093],[101.90936568200007,22.435892639000045],[101.8916406660002,22.42969146700015],[101.88151208500008,22.412173157],[101.87727461800014,22.391864319000074],[101.86792118300016,22.37884185800011],[101.8425997310002,22.383337708000155],[101.81779504400006,22.406333720000088],[101.78487715700012,22.472221171000015],[101.75505985600009,22.49552724300004],[101.75061568200013,22.49604400700018],[101.7417790120002,22.49604400700018],[101.71315026800013,22.49154815700014],[101.68912072800016,22.478887431000103],[101.668656861,22.462299297000115],[101.6545491950001,22.446124573000116],[101.64509240800012,22.424213765000058],[101.64416223200007,22.404008280000156],[101.6457125250001,22.38452626600018],[101.64369714400007,22.364682516000087],[101.64111332200015,22.36328725200009],[101.62369836500014,22.346647441000087],[101.62250980600018,22.342358297000104],[101.6198743090001,22.326441955000103],[101.60612837700013,22.284842427000097],[101.60121911700011,22.27698761000006],[101.5879899500002,22.27135487900013],[101.57574263500007,22.27311187800011],[101.5637020270001,22.27678090500011],[101.5509896240001,22.27667755200015],[101.54065433700006,22.271458232000057],[101.53171431500013,22.263396708000144],[101.5157462980001,22.24536163400016],[101.51822676600008,22.22820505800011],[101.54902592000022,22.19353017200008],[101.5615316170001,22.17611521400015],[101.5669576420001,22.149346822000084],[101.56184167500012,22.130071513000033],[101.55502038600017,22.112398173000045],[101.55543379800017,22.090332337000135],[101.56494226100007,22.069506734000086],[101.59217574100015,22.02811391300004],[101.6003922940001,22.007495016000135],[101.60680017100006,21.967600810000093],[101.61630863500012,21.9536481730001],[101.63811608900014,21.940884094000054],[101.67366947500008,21.93137563100005],[101.6805941160001,21.922642314000157],[101.68245446800007,21.914839173000146],[101.68307458600006,21.907139384000075],[101.68586511300012,21.898612773000067],[101.7087060960001,21.86957061800014],[101.7212634690002,21.844352519000108],[101.72617272900007,21.837272848000097],[101.75108077000013,21.816137187000052],[101.75154585800007,21.806370341],[101.73165043200007,21.7505081180001],[101.72798140500007,21.732679749000066],[101.72854984500012,21.717538554000058],[101.73278731300016,21.71144073500001],[101.7491170650002,21.698056539000063],[101.75480147300007,21.68978831000011],[101.75562829600008,21.680021464000063],[101.75232100500008,21.659144186000088],[101.75593835500015,21.648653870000047],[101.7708211670001,21.638835348000057],[101.78952803600006,21.634029440000162],[101.80384240700008,21.625916239000063],[101.80616784700013,21.60596913700014],[101.79355879700009,21.588244121000017],[101.77268151900009,21.58250803600008],[101.75092574100009,21.57966583299999],[101.73619795800019,21.570880839000026],[101.7347510170001,21.554396057000034],[101.74823856600008,21.51450185200018],[101.74425948100006,21.49558827700004],[101.7296867270002,21.47424591100004],[101.72555261300008,21.375388896000075],[101.71557906100011,21.33818186500018],[101.71511397300017,21.32112864200006],[101.72250370300017,21.304230448000155],[101.73650801600016,21.292293193000106],[101.78854618400013,21.27420644199999],[101.80115523300006,21.267075094000162],[101.81226566600006,21.25813507100004],[101.82022383600021,21.24728302000007],[101.82373783400007,21.23446726500019],[101.82280765800013,21.224131979],[101.82149033400012,21.22107113800014],[101.81929366100016,21.21596710200008],[101.81329919500016,21.209559225000035],[101.80523767100007,21.20449493400015],[101.79603926600005,21.202944641000116],[101.77356001800015,21.20738881500013],[101.76007246900005,21.195968323000145],[101.76358646600012,21.184651184000145],[101.77020105000005,21.170440166],[101.76845334900011,21.160449577000108],[101.7667387290002,21.15064809200011],[101.75599003200008,21.14325836200011],[101.73748986800015,21.13757395400007],[101.71790450000012,21.134473369000133],[101.70426192200009,21.135093485000098],[101.68829390500017,21.145842183000028],[101.67015547700007,21.17705474900002],[101.65511763500015,21.18919871100009],[101.63594567900005,21.18945709200007],[101.596516561,21.173385722000106],[101.58178877800006,21.17565948500011],[101.5772412520001,21.185167948000114],[101.5809619550001,21.194728089000094],[101.58664636300014,21.204236552000097],[101.58819665600018,21.213331604000143],[101.58395918800014,21.224390360000154],[101.57967004400015,21.227594299000128],[101.57290043100014,21.228162740000084],[101.53910404500002,21.238859761000086],[101.51760664900009,21.242632141000016],[101.49512740100008,21.242838847000154],[101.38149092600011,21.22247833200005],[101.36226729400018,21.215812073000123],[101.31389815300021,21.184754537000103],[101.2927108160001,21.17607289700014],[101.27529585800008,21.174109192000103],[101.25974125100005,21.179483541000153],[101.24434167500006,21.1928677370001],[101.23478153500017,21.206251933000132],[101.22036381100006,21.233692118000093],[101.20899499500015,21.245526021],[101.21907189900017,21.282474671000145],[101.22036381100006,21.296272278000103],[101.21840010600008,21.299941305000075],[101.20951176000008,21.30867462200014],[101.20744470200012,21.31482411700013],[101.2228442790001,21.335081278000033],[101.23478153500017,21.363658345000104],[101.23312788900009,21.371719869000103],[101.2308024490001,21.371771546],[101.2264616300001,21.370893046000063],[101.20796146700016,21.383502096000186],[101.17912601800005,21.398178202000068],[101.17142622900022,21.40339752200019],[101.16827396700009,21.424533183000122],[101.1877559810001,21.50587188700014],[101.18656742400006,21.53532745400004],[101.17452681500018,21.551657206000087],[101.15902388500015,21.55269073500007],[101.15421797700017,21.568038635000118],[101.15773197500013,21.586228740000152],[101.16765384900012,21.600181376000148],[101.1738550210001,21.611911926000133],[101.16672367300006,21.623280742000034],[101.16884240800012,21.637853496],[101.16145267800012,21.65836903899999],[101.14925704000021,21.676765849000063],[101.1363379310001,21.68472401900014],[101.12765629100014,21.695162659000076],[101.12486576400006,21.74415191700008],[101.11887129800007,21.759809876000034],[101.08280114800007,21.76673451800012],[101.06869348200021,21.76203196200005],[101.0553092860001,21.754538880000023],[101.0429069420002,21.74539215200012],[100.9927808030001,21.71144073500001],[100.97428064000003,21.70415435800011],[100.87749068200017,21.677334290000132],[100.83490930200011,21.657542217000138],[100.7970304770001,21.626122946000024],[100.75661950700012,21.569847310000043],[100.7039612230002,21.516413879000094],[100.6615348710001,21.49553660100004],[100.6615348710001,21.49548492400011],[100.66132816600005,21.495329896000086],[100.66132816600005,21.495278219000067],[100.64577356000021,21.479878642000173],[100.6217440180001,21.469078268000047],[100.5718245850002,21.455073955000145],[100.54598636900019,21.45300689700018],[100.497100464,21.461791890000153],[100.47425948100013,21.456830953000022],[100.45668949400013,21.455022278000044],[100.44346032800016,21.46349721300011],[100.43426192300015,21.478380026000153],[100.4293009850002,21.495381572],[100.39912194900009,21.518894348000075],[100.38367069500012,21.527834371000107],[100.36325850400007,21.531761780000082],[100.34196781400007,21.530366517000104],[100.32651656100009,21.524268698000057],[100.31463098200007,21.512951559000058],[100.30248702000014,21.49553660100004],[100.30248702000014,21.49548492400011],[100.30228031400006,21.495329896000086],[100.30228031400006,21.495278219000067],[100.2895162350002,21.483134258000163],[100.27520186400014,21.47517608700009],[100.2440926510001,21.46453074200009],[100.2302433680002,21.456830953000022],[100.1978939210002,21.4332148240001],[100.1871452230001,21.42789215100005],[100.1624955650001,21.436367086000146],[100.12833744300022,21.482359110000132],[100.10777022300013,21.49553660100004],[100.0972799080001,21.50830068],[100.0899935300001,21.52891957700011],[100.08606612200006,21.55093373699999],[100.08560103400012,21.567573548000027],[100.08864994300015,21.581836243000065],[100.09485111500013,21.598837789000086],[100.10394616700009,21.61563262900016],[100.11572839400012,21.629481914000124],[100.12611535700009,21.634856262000184],[100.13619226100016,21.636819967000022],[100.14373702000009,21.64002390600008],[100.14632084200011,21.649222310000184],[100.14280684400013,21.654906718000134],[100.13515873200018,21.66234812400016],[100.1205343020001,21.673665263000128],[100.082345419,21.684465638000162],[99.99671757100006,21.686119283000107],[99.96069909700006,21.70477447500018],[99.95026045800014,21.721155904000128],[99.93920170100014,21.77701812800002],[99.92209680200008,21.812261455000097],[99.91796268700008,21.829159648000157],[99.92018477400009,21.85200063100008],[99.95527307100011,21.924554342000093],[99.96566003400014,21.96300160800014],[99.95046716400012,21.99535105400004],[99.93982181800018,22.005893046],[99.93434411600012,22.018863831000132],[99.93491255700016,22.03250640900005],[99.9424056400002,22.045528869000165],[99.86685469600016,22.057879537000034],[99.84783776900011,22.05503733300004],[99.84230839000011,22.047027486000086],[99.84173995000006,22.027080384000055],[99.83367842700008,22.019483948000083],[99.8210177010002,22.017778626000123],[99.81342126500007,22.022997946000046],[99.80747847600004,22.030956116000095],[99.79988204000009,22.037467347000174],[99.73916223200008,22.06676788400013],[99.72365930200007,22.070591940000085],[99.70381555200018,22.061238505000134],[99.69379032400016,22.046924133000132],[99.68386844900007,22.039017639000104],[99.66381799300021,22.04873280900013],[99.65927046800007,22.05457224500013],[99.65007206200006,22.071935527000146],[99.64221724500013,22.0799453740001],[99.63353560400017,22.084751282000024],[99.53896773300019,22.106713766],[99.50506799400009,22.10335479800007],[99.49039188700006,22.10433665000015],[99.43861210200012,22.124232076000155],[99.42496952300021,22.122423401000063],[99.3649215090002,22.098858948000057],[99.32998824100011,22.09555165600007],[99.25288700400009,22.102786357000028],[99.21226932800012,22.112449849000043],[99.16638065600014,22.132086894000096],[99.14446984900009,22.15353261300011],[99.1750622970002,22.168673808000122],[99.15935266100014,22.184693502000087],[99.16638065600014,22.204640605000108],[99.19935022000013,22.245258281000034],[99.20617150900009,22.261329651000025],[99.21836714700007,22.310008851000035],[99.22570520000008,22.321222637000076],[99.24368859900007,22.34122141600001],[99.24833947800012,22.353675435000085],[99.2463757730001,22.36592275000011],[99.24058801300012,22.372950745000036],[99.23738407400006,22.380133769000096],[99.24306848200008,22.393156230000116],[99.28275598100016,22.411914775000024],[99.34507775900008,22.47284128800008],[99.35344934100007,22.484106751000027],[99.35779016200016,22.49547556600011],[99.35634322100006,22.506172587000133],[99.34662805200006,22.523070781000015],[99.34414758300012,22.53325103800007],[99.34704146400006,22.55335317000005],[99.35737675000016,22.587097881000105],[99.35499963400011,22.608543600000058],[99.3078707280001,22.719596252000102],[99.3079740800001,22.745176087000075],[99.31696578000017,22.754116109],[99.32719771300006,22.760498149000128],[99.33846317600009,22.76491648400004],[99.35065881400013,22.768146261000094],[99.35903039600012,22.774890035000126],[99.37887414600019,22.81323394800016],[99.40357548100009,22.84106170700012],[99.41442753200013,22.856900533000115],[99.41690800000012,22.874341330000064],[99.41122359200008,22.91924814900007],[99.41339400300015,22.930746155000076],[99.42993046000007,22.936740622000016],[99.48450077400015,22.910256450000034],[99.51529992700013,22.90880951000004],[99.53803755700014,22.926431173000122],[99.5346269120001,22.949323832000132],[99.49876346900007,22.995160828000095],[99.49039188700006,23.012007345000153],[99.49163212100021,23.02820790600016],[99.49504276500014,23.043478292000103],[99.49307906100009,23.05737925200019],[99.47819624900009,23.065750834000156],[99.4032654210001,23.06833465600006],[99.38104455600009,23.081641338000097],[99.35096887200021,23.11926178000003],[99.33381229700015,23.12962290400013],[99.31407189900007,23.12647064200017],[99.30218632100016,23.112595520000085],[99.29402144400015,23.09678253200009],[99.28482303900014,23.088152568000154],[99.2667362880002,23.083863424000086],[99.2574345290001,23.079212545000033],[99.23614384000021,23.06231435200014],[99.22487837700007,23.05688832700015],[99.2166101490001,23.05737925200019],[99.20958215400017,23.061539206000035],[99.20214074800016,23.06727528900008],[99.19966027900008,23.073838196000068],[99.19935022000013,23.09226084400008],[99.19418257700008,23.09577484200004],[99.18488081900009,23.094844666000157],[99.18271040800019,23.095206401000084],[99.17867964700011,23.096420797000107],[99.1640035400002,23.097686870000146],[99.13868208900013,23.105205790000085],[99.13000044800017,23.106239319000068],[99.09217329900011,23.101510926000074],[99.07491337100012,23.101665955000115],[99.05506962100011,23.109598287],[99.03925663300012,23.127142436000057],[99.03315881300014,23.14641774500008],[99.0264408780001,23.16044789699999],[99.0093876550001,23.162153218000142],[98.9903707280001,23.160034485],[98.97073368400018,23.162204895000073],[98.93342330000014,23.17215260800016],[98.85900923700015,23.17938730900015],[98.86014611800013,23.21227935800009],[98.91068566900017,23.29759714800015],[98.89652632700015,23.32328033500015],[98.86045617700015,23.322375997],[98.85342818200009,23.324882304000155],[98.85322147600007,23.33498504700013],[98.86210982300005,23.34059194000004],[98.87378869600016,23.34457102500012],[98.88185022000002,23.349686992000116],[98.89011844900008,23.367902934000156],[98.8922888600001,23.38689402300004],[98.88960168400016,23.406789449000044],[98.87554569500006,23.446425273],[98.86397017400004,23.46660491900009],[98.84888065700008,23.480402527000038],[98.83007043500017,23.480014954000023],[98.80981327300017,23.47409800200002],[98.79999475100007,23.48073842400011],[98.7808744710002,23.532854106000073],[98.78438846900016,23.547039287000032],[98.79627404800007,23.557917175000096],[98.84329960100014,23.584013774000184],[98.85022424400013,23.59062835700008],[98.85735559100007,23.604348450000103],[98.85601200400012,23.61000702000014],[98.84960412600017,23.614735413000133],[98.80795292200017,23.67579111800002],[98.80030481000009,23.692715149000108],[98.79906457500006,23.743228862000034],[98.79317346200004,23.75847340900019],[98.77787723800012,23.769299621000027],[98.73839644400007,23.775552470000132],[98.70832076000008,23.784699198000013],[98.68496301300014,23.784802551000137],[98.67566125500011,23.78738637300013],[98.66367232300014,23.796946513000037],[98.66356897000006,23.803070171000012],[98.66832320200008,23.80870290200012],[98.67142378700007,23.816738587000103],[98.6641890870001,23.890377502000135],[98.66480920400008,23.903374125000155],[98.67297408100009,23.928308004000044],[98.67452437400013,23.936886292000068],[98.66573938000013,23.953216045000104],[98.65881473800002,23.961122539000044],[98.66325891200015,23.969545797000038],[98.67989872200005,23.976263733000067],[98.69922570900022,23.98156056800009],[98.7167956950001,23.988407695000074],[98.76557824800014,24.027061666000165],[98.85621871000008,24.08380238799999],[98.87347863800008,24.114498190000017],[98.86696740800019,24.143256124000132],[98.86572717300005,24.145684917],[98.8552885340001,24.13896698000015],[98.81808150200013,24.12896759100006],[98.71617557800012,24.121345317000177],[98.6817590740001,24.10687591600005],[98.64041792900011,24.1007522580001],[98.61251265500007,24.087548930000093],[98.59711307800009,24.083078919000073],[98.58522749900007,24.075715027000072],[98.57024133400009,24.08209706600003],[98.54305953000019,24.09395680700014],[98.50326867700008,24.121267802000077],[98.47453658000009,24.127830709000037],[98.43495243300012,24.13025950100011],[98.3955749920001,24.128063253],[98.37872847500014,24.122404684000074],[98.34730920500007,24.104938049000122],[98.33066939300008,24.09948618600005],[98.29325565600013,24.10013214100003],[98.21915165200006,24.117366231000105],[98.18153120900016,24.118658142000143],[98.1050500900001,24.101527405000084],[97.88997277800016,24.022617493000055],[97.8766402590002,24.01440094000013],[97.83633264200009,23.97176788300014],[97.81783247900015,23.958151144000126],[97.80408654800013,23.95450795500015],[97.78951379400016,23.953138530000086],[97.76780969300015,23.94647227000017],[97.74817264900011,23.934069926000106],[97.69680627400007,23.88712188700005],[97.67696252500016,23.878698629000056],[97.65567183400016,23.872549133000074],[97.64734483100007,23.868524415000067],[97.637068319,23.863557435000033],[97.62466597500006,23.846710918000056],[97.61970503700009,23.86598622600009],[97.61546757000015,23.875132955000183],[97.60988651500006,23.883142802000165],[97.57267948400013,23.907559916000096],[97.53299198400006,23.923708802000178],[97.51645552600016,23.94282908100008],[97.70765832500008,24.12529856400006],[97.72006066900005,24.147441915000073],[97.72305790200019,24.171264751000038],[97.71871708200008,24.18154836100014],[97.70455774000006,24.199247538000137],[97.70156050600016,24.21092641200012],[97.70466109300011,24.221726786000048],[97.71117232300017,24.228470561000094],[97.71851037600007,24.233974101000072],[97.72409143100016,24.241518860000138],[97.71840702300014,24.277666524000054],[97.64450972500006,24.302393698000074],[97.63820520100013,24.328102722000054],[97.6536047770002,24.338722229000055],[97.67427535100013,24.34084096300002],[97.6895715740001,24.346473694000153],[97.68833134000008,24.36771270800004],[97.68099328600007,24.37776377400014],[97.66259647700015,24.390062765],[97.65732548000013,24.40200002000013],[97.65546512900013,24.412076925000076],[97.65226119000008,24.422722270000165],[97.64730025200012,24.432334086000182],[97.63985884600018,24.439284567000172],[97.62435591600014,24.44228179900007],[97.60068811000022,24.441920064],[97.51955611200012,24.43078379400005],[97.51325158700008,24.438586935000085],[97.51387170400007,24.461686299000135],[97.53857303900004,24.5972594200001],[97.53278527800008,24.723324077000044],[97.53609257000019,24.74502817800014],[97.53619592300012,24.745079854000053],[97.60399540200015,24.786446839000106],[97.64254602100011,24.81678090400014],[97.66394006400006,24.82977752700016],[97.6859542240002,24.833524068000187],[97.72657190000015,24.82628936800002],[97.74848270700008,24.826470235000055],[97.76522587100007,24.8346609500001],[97.77297733600008,24.854685568000136],[97.7609884030002,24.870291850000072],[97.72409143100016,24.897215272],[97.70827844300018,24.92729095500006],[97.70331750500011,24.960415548000142],[97.70517785700022,25.02883514400007],[97.69959680200012,25.065008647000084],[97.70362756400013,25.07392283100002],[97.72161096200009,25.079271342000155],[97.73752730300012,25.090510967000014],[97.75406376200013,25.113558655000176],[97.77700809800014,25.158620504000012],[97.80098596300016,25.237633769000084],[97.82362023900012,25.261611633000097],[97.86031050700008,25.244093323000055],[97.87178267400012,25.22766021700006],[97.87881066900009,25.213552551000035],[97.88893925000016,25.205646057000095],[97.90991988100004,25.207558085000116],[97.93079716000013,25.218513489000188],[97.97627242100005,25.27225697900009],[97.99239546700007,25.282488912000176],[98.03352990700013,25.30129913400016],[98.04489872300022,25.31194447900016],[98.06257206300015,25.354319153000077],[98.07569787600019,25.376074932],[98.08996057100009,25.38594512900009],[98.10835738100016,25.38889068600018],[98.11207808500008,25.39622873899999],[98.1102177330001,25.410439759000138],[98.11197473100006,25.44847361300016],[98.1088741460002,25.458240459000038],[98.10474003100009,25.466973775],[98.09946903500006,25.493328756000054],[98.09977909300002,25.500046692000083],[98.10463667800016,25.506764628000113],[98.12303348900015,25.52221588200011],[98.1341955980001,25.53461822500016],[98.1393632410001,25.55022450800011],[98.13843306500016,25.59895538400015],[98.14008671100012,25.611461080000154],[98.15021529100014,25.61306305],[98.2323808190001,25.58655304000008],[98.24716027900008,25.579163310000084],[98.27661584500018,25.552446594000017],[98.28943160000009,25.550379538000143],[98.3120658770001,25.55745920800008],[98.33263309700013,25.56696767200016],[98.34710249800005,25.57781972300002],[98.35723107900012,25.592754212000088],[98.36984012900021,25.636782532000137],[98.37521447800006,25.649288229000135],[98.41324833200022,25.692076314000143],[98.41634891800005,25.70018951400006],[98.41665897600015,25.712591859000142],[98.41872603400012,25.724219056],[98.42472050000006,25.730833639000096],[98.43226525900009,25.736104635000018],[98.43929325400009,25.743597717000156],[98.45262577300011,25.77796254499999],[98.46130741400006,25.794654033000043],[98.47453658000009,25.805764465000053],[98.49810103400009,25.830724183000044],[98.50946984900004,25.838062236000113],[98.52683313100007,25.83878570600002],[98.53954553200006,25.83372141500014],[98.56238651600015,25.81635813500013],[98.59091190600012,25.806384583000025],[98.60031701600016,25.801733704000142],[98.61003218700009,25.800596822000145],[98.62605188000006,25.806487936000153],[98.67783166500013,25.843281555000047],[98.68485966,25.853100078000026],[98.69023400900006,25.8655540970001],[98.69240441900016,25.878989971000134],[98.68982059800007,25.891599020000072],[98.68465295400009,25.897593486000105],[98.67235396300012,25.90183095400006],[98.66728967300006,25.905758362000128],[98.65809126800016,25.925033671000065],[98.62532841000015,25.969992168000157],[98.61623335800007,25.979397278000032],[98.60424442600012,25.98249786400008],[98.5924621990001,25.980740865000186],[98.58243697200007,25.982291159000013],[98.57540897700008,25.995106913000097],[98.57716597500016,26.017327780000027],[98.57261845000012,26.0355695600001],[98.55380822800012,26.07107126900003],[98.54729699800005,26.08827952100002],[98.54553999900004,26.105642803000038],[98.55019087800021,26.120783997000146],[98.56300663300013,26.131222636000174],[98.60217736800016,26.13995595300007],[98.61933394400009,26.145743714000115],[98.62574182200015,26.144348450000148],[98.62429488100017,26.108485006000095],[98.63080611200022,26.096909485000154],[98.64444869000013,26.097891337000036],[98.68082889800021,26.124969788000087],[98.68672001200011,26.133238017000124],[98.68651330600008,26.154115296],[98.69240441900016,26.159954732000088],[98.70025923700008,26.165329082000042],[98.70553023300012,26.17494089800006],[98.70149947100005,26.19116729800008],[98.67700484200006,26.239329733000048],[98.66821984900011,26.248218079000154],[98.64816939300007,26.244807434000123],[98.64217492700013,26.254522604000087],[98.64455204300006,26.271575827000035],[98.6495129800002,26.29059275300007],[98.65778120900004,26.3116250610001],[98.69767541500019,26.354051412000118],[98.70739058400014,26.37105295900012],[98.71348840300017,26.389449768000034],[98.71720910600013,26.408725077000085],[98.72113651600009,26.538898011000143],[98.72795780400006,26.572591045000095],[98.7485250240002,26.605974019000158],[98.75555301900013,26.62504262300014],[98.7506954350001,26.646126607],[98.7470780840001,26.655738424],[98.74676802600007,26.66442006400014],[98.74738814300011,26.672688293000093],[98.74645796800016,26.681059876000077],[98.731988567,26.713512675000104],[98.73436568300016,26.734286601000136],[98.74924849500022,26.771441956000118],[98.75038537600014,26.79200917600012],[98.74242720500015,26.810405986000106],[98.71813928200007,26.842497050000034],[98.71452193200015,26.86203074100014],[98.71865604700011,26.87267608700013],[98.73312544800015,26.887920634000082],[98.73632938600011,26.898255921],[98.73570927000006,26.907299296000062],[98.71266158100016,26.995149231000095],[98.72061975100021,27.013959452000122],[98.73167850700005,27.031064352000083],[98.7377763260001,27.048686015000058],[98.73136844900014,27.068788147000035],[98.71648563700009,27.082482402000053],[98.70273970500008,27.086823222000035],[98.69137089100009,27.09240427600004],[98.68268925000021,27.11007761700013],[98.67256066900009,27.17560333200005],[98.67359419800007,27.20790110300011],[98.68020878100005,27.23704661100014],[98.70418664600007,27.304174296000085],[98.70770064400013,27.33724721300017],[98.69736535700011,27.368924866000086],[98.6910608320002,27.373162334000128],[98.68372277900018,27.37362742200007],[98.67731490100007,27.376107890000025],[98.67442102100009,27.386598206000155],[98.66832320200008,27.475249126000065],[98.6711137290001,27.516151022000155],[98.6817590740001,27.55648447700004],[98.67927860500012,27.577335918000085],[98.67421431500011,27.58612091100018],[98.66573938000013,27.59707631500008],[98.65592085800003,27.60676564500001],[98.64723921700006,27.611726583000134],[98.6350435790001,27.611054789000075],[98.62584517500008,27.605551249000154],[98.61654341700014,27.598419902000117],[98.60455448400009,27.59273549400008],[98.57840620900018,27.59172780400011],[98.56435022000008,27.603535869000112],[98.54336958800015,27.642525737000096],[98.52218225200014,27.656297506000055],[98.49231327300012,27.64343007400005],[98.47453658000009,27.657176005000096],[98.42224003100007,27.680895487000143],[98.41025109900006,27.684254456000144],[98.40001916500015,27.67572784400012],[98.39743534300013,27.65681427],[98.39815881400014,27.619813945000047],[98.39288781700004,27.587154440000162],[98.3832760010001,27.555786845000128],[98.36394901500014,27.53217071600012],[98.3286023360001,27.522868957000114],[98.29470259600012,27.536614889000035],[98.27568566900007,27.57010121700013],[98.25439497900007,27.648132629000045],[98.23806522600007,27.680223694000162],[98.20437219300007,27.727300924000147],[98.20178837100016,27.736551005000152],[98.21150354000011,27.760322164000012],[98.20840295400014,27.76616160100009],[98.20209842900007,27.771251729000184],[98.19786096200019,27.780631002000135],[98.19848107900005,27.80044891400003],[98.20065148900008,27.813600565000097],[98.19662072800006,27.82318654400011],[98.16241092900005,27.842849427000044],[98.14577111900016,27.860729472000102],[98.14008671100012,27.878557841000045],[98.15672652200013,27.889203187000035],[98.17667362500006,27.89811737100014],[98.1772937420001,27.912922669000082],[98.16582157400009,27.92969167100013],[98.14897505700011,27.944548645000065],[98.11352502500009,27.961705221000145],[98.10711714700014,27.97307403600003],[98.11848596200011,27.994726461000095],[98.12251672400012,28.01544871000014],[98.12799442600011,28.105469056000103],[98.12696089700015,28.124279277000095],[98.11869266800008,28.140789897],[98.11500227600018,28.143888357000137],[98.04861942600016,28.19962351500008],[98.03135949800006,28.20833099400015],[97.99105188000013,28.214015401],[97.98485070800021,28.22422149700016],[97.99384240800005,28.252540182000146],[97.99291223200012,28.26892161100001],[97.97875288900016,28.28060048400009],[97.94474979700013,28.298842265000033],[97.89751753800007,28.355324605000174],[97.85907027200003,28.37012990300012],[97.79726525900004,28.343929952000092],[97.76532922400004,28.35243072500019],[97.74000777200008,28.382609762000087],[97.69959680200012,28.488029683000047],[97.67045129400012,28.511284079000163],[97.64109908100014,28.49836497000014],[97.61360721800006,28.48198354100019],[97.5899394130001,28.494695943000135],[97.56751184100014,28.52549509700013],[97.54622115100014,28.538465881000047],[97.5277209880002,28.529525859000117],[97.51397505800017,28.494695943000135],[97.50301965300011,28.47772023600014],[97.48813684100017,28.44193430600002],[97.47459761600007,28.42619883200014],[97.47149703000011,28.414959209000088],[97.46570927000008,28.406690979000057],[97.450102987,28.391911520000022],[97.44534875500013,28.382971497000096],[97.44679569500013,28.37400563600006],[97.45020634000016,28.364858907000084],[97.45237674900014,28.35547963500012],[97.45237674900014,28.317678324000056],[97.44782922400012,28.29760203100001],[97.43666711400007,28.286414083000167],[97.41672001200007,28.286052348000066],[97.39821984900013,28.28889455200014],[97.38437056500007,28.28483795200013],[97.37785933500017,28.263598939000147],[97.36959110600004,28.253470357000094],[97.33383101400014,28.235254415000053],[97.3234957280001,28.21747772300013],[97.28525516800012,28.235667827000086],[97.22965132700013,28.274606018000057],[97.2207629800001,28.283391012000134],[97.2105310470001,28.308092346000148],[97.2027795820002,28.311554667000095],[97.19327111900006,28.31139963800014],[97.18272912600017,28.314991150000125],[97.11554976400012,28.366564230000122],[97.07844608600007,28.375142517000157],[97.03297082600007,28.357029928000042],[96.99741744000013,28.337082825000138],[96.96579146400015,28.330468242000123],[96.93395878200008,28.336617737000026],[96.89788863200008,28.354704489000127],[96.88491343033624,28.428040080179656],[96.83961284347234,28.478374065583935],[96.7691452639061,28.518641253907575],[96.6986776843402,28.589108833473585],[96.61310990915283,28.609242427635323],[96.557742525208,28.584075434933236],[96.52754213396545,28.533741449528762],[96.5174753368844,28.488440862664945],[96.51238244700002,28.428808492000044],[96.49522587100009,28.421470439000146],[96.46210795293987,28.488440862664945],[96.42687416315678,28.518641253907575],[96.46714135148025,28.563941840771506],[96.43517785700007,28.61122629800012],[96.50237514126334,28.644476217418415],[96.59800971353147,28.709910398444077],[96.59258426900011,28.75788401300015],[96.57666792800008,28.808526917000123],[96.52375126100006,28.864414979000017],[96.51083215400008,28.885524801000045],[96.50039351400007,28.929243062000026],[96.49222863800017,28.94800160700011],[96.47465865100011,28.96205759700014],[96.46008589700014,28.96334950700019],[96.45212772700009,28.970377502000087],[96.4511975510002,28.981384583000093],[96.45760542900015,28.994587911000067],[96.36656829155609,29.036536563468886],[96.35137318505022,29.097482086057326],[96.28090560548415,29.07734849189559],[96.19533783029684,29.02701450649131],[96.17462528500008,29.10884450300004],[96.18351363100007,29.123778992000084],[96.19364221300005,29.13693064400015],[96.21007531700009,29.14576731400014],[96.31642541500011,29.17186391200015],[96.32748417200011,29.18044220000017],[96.34236698400017,29.210647075000097],[96.3668616130001,29.244210917000103],[96.36624149600001,29.25723337900014],[96.34991174300008,29.274234924000055],[96.3370959890001,29.27971262700005],[96.32324670400007,29.275010071000068],[96.30412642400003,29.261212464000113],[96.2678495690001,29.241730449000116],[96.23529341600008,29.2412136840001],[96.20542443800011,29.256949158000065],[96.17627893100021,29.28645640100008],[96.16604699800016,29.303173726000026],[96.15095747900014,29.354075012000138],[96.1419657800001,29.368466899000065],[96.07453626532636,29.369285607240908],[96.01413548284104,29.364252208700364],[95.95373470035591,29.359218810160016],[95.86313352662816,29.32398502037689],[95.7959403890001,29.35288645500013],[95.77640669800003,29.345548401000045],[95.74478072100007,29.34043243500004],[95.74736536019812,29.273651034972616],[95.71716496895559,29.21828365102779],[95.64669738938946,29.228350448108714],[95.59233524600003,29.249688619],[95.58168990100009,29.247466533000175],[95.57290490800008,29.247259827000118],[95.5644299730001,29.245606181000188],[95.5537846280001,29.239043275000096],[95.55068404100015,29.2302841190001],[95.5520276280001,29.220129700000157],[95.55016727700009,29.212481588000074],[95.51533736200022,29.20943267900004],[95.5119267170002,29.197547099000037],[95.52267541500012,29.161192729000145],[95.5214351810001,29.13786082000011],[95.51130660000015,29.13178883900015],[95.47492639200007,29.136775614000115],[95.46634810400022,29.1227196250001],[95.44808916838699,29.147965367181214],[95.44514590991845,29.186227727272453],[95.42454310063849,29.177397951866777],[95.40982680829565,29.130305816369756],[95.37156444820451,29.139135591775457],[95.3068127618961,29.136192333307022],[95.274436918742,29.1126462655585],[95.28155318200011,29.052672221000154],[95.2249158120002,29.05936431900007],[95.2163375250001,29.06499705000003],[95.21406376100018,29.073084412000114],[95.21282352700015,29.08186940500009],[95.20786259000008,29.089595032000187],[95.19969771300006,29.09424591100007],[95.19153283800007,29.09682973300006],[95.11691206900016,29.1080951950001],[95.09903202400014,29.113779603000168],[95.04766564900014,29.140806377],[94.98906457600005,29.15398386700018],[94.97201135200012,29.16010752400014],[94.9546480710001,29.16907338500009],[94.96467329900011,29.15010813400012],[94.9818298750001,29.1330807500001],[94.9882377530001,29.124295757000123],[94.96591353300008,29.130186870000117],[94.89129276600008,29.16049509700015],[94.85408573500015,29.170003560000126],[94.81543176300008,29.168866679000033],[94.79879195200006,29.166437887000157],[94.77657108500009,29.166696269000123],[94.76148156800011,29.17470611600011],[94.7676827390001,29.213851013000134],[94.75641727800021,29.230516663000074],[94.70422408000016,29.284699402000015],[94.66846399000022,29.306610209000056],[94.63043013500013,29.31945180300015],[94.5999410400001,29.316635437000073],[94.58268111200013,29.30291534500004],[94.52862756400006,29.231240133000153],[94.51477828000006,29.221059876000098],[94.49824182200008,29.21522043900002],[94.47498742700006,29.21080210400011],[94.4223808190001,29.210492045000034],[94.39643925000021,29.207081400000035],[94.3728747970001,29.196306865000096],[94.3625395100001,29.185325623000026],[94.34631311100011,29.159073995000156],[94.33577111900016,29.149617208000013],[94.3237821860001,29.146025696000105],[94.287505331,29.147937724000048],[94.27078578096351,29.0979299732157],[94.30904814105472,29.059667613124372],[94.34731050114604,29.02434851150174],[94.29138859024337,28.97725637600483],[94.25018297168353,28.933107498976412],[94.17365825150105,28.930164240507807],[94.13539589140973,28.897788397353747],[94.07947398050712,28.88307210501098],[94.02684940600008,28.864182435000043],[94.01144982900021,28.853020325000113],[93.99201949100014,28.844648743000118],[93.97506962100012,28.835036927000132],[93.95977339700006,28.83687144000011],[93.93848270700019,28.836664734000166],[93.91853560400008,28.833228252000037],[93.90716678900016,28.82527008100008],[93.90675337700004,28.817518616000157],[93.90995731700015,28.811782532],[93.91212772700013,28.80609812500016],[93.90861372900005,28.798243307000053],[93.89982873500011,28.79527191200013],[93.88763309700008,28.79511688300009],[93.87729781100009,28.792429708000054],[93.87368046100019,28.78196523100011],[93.86582564300008,28.775298971],[93.80712121600018,28.759124247],[93.79141158000002,28.751011048000105],[93.72247522000012,28.69664744100011],[93.7055253500001,28.691893209000124],[93.68919559800017,28.699127910000087],[93.67472619700001,28.70300364200015],[93.65974003100014,28.69354685500018],[93.64341027900011,28.68024017400016],[93.62553023300008,28.672359518000018],[93.60713342300008,28.672204488000162],[93.55173628800011,28.67894826200002],[93.44621301300006,28.67189443000011],[93.35543239724174,28.624065359777674],[93.3171700371504,28.60346255049789],[93.2641913847165,28.562256931937966],[93.22004250768806,28.5416541226581],[93.18766666453385,28.518108054909575],[93.1553780520002,28.494850973],[93.14969364400005,28.461467997000128],[93.13636112500015,28.424467672000063],[93.116724081,28.390593770000162],[93.09315962700012,28.366641744000063],[93.0007621670002,28.308712464000124],[92.97492395000009,28.282305807000128],[92.96035119600006,28.270213521000144],[92.92200728300011,28.258638001000023],[92.90381717900007,28.249697978000185],[92.88955448400012,28.235822856000127],[92.86536991400011,28.205204570000017],[92.8502803960001,28.191949565000087],[92.83477746600013,28.183526306000104],[92.81989465400007,28.179263001000052],[92.80532190000011,28.178022767000115],[92.7902323810001,28.178901266000064],[92.78537479700017,28.183293762000133],[92.78289432800008,28.19094187400013],[92.77917362500008,28.195902812000085],[92.77007857200013,28.192182108000154],[92.70786014900014,28.155414328000163],[92.6786112880001,28.13306427000019],[92.65484012900012,28.105830790000095],[92.63727014200006,28.071982728000094],[92.63892378800018,28.05748748800006],[92.65422001100015,28.052087301000185],[92.68925663200017,28.048314921000085],[92.70134891800015,28.03782460600003],[92.70134891800015,28.025241394000187],[92.69091027900012,27.99498484300007],[92.69091027900012,27.994933166000166],[92.69111698400016,27.994933166000166],[92.69111698400016,27.99488149000014],[92.68780969200004,27.9678547160001],[92.66238488800016,27.939122620000102],[92.62848514800007,27.915764873000157],[92.60068322800012,27.9048869840001],[92.57649865800012,27.901011251000128],[92.56440637200015,27.895223490000074],[92.53805139200009,27.869178569],[92.52347863800006,27.860006002000105],[92.4751094980002,27.84659596800016],[92.4390393480002,27.823289897000123],[92.42756717900008,27.82117116400015],[92.41733524600008,27.828948466000057],[92.40441613800007,27.853830669000114],[92.39284061800006,27.856026917000023],[92.38105839100015,27.842461853000046],[92.37558068800016,27.821119487000047],[92.36793257700018,27.803833720000128],[92.3500525310001,27.802541809],[92.33982059800022,27.815564270000138],[92.334652954,27.83127390600002],[92.3291752530001,27.83292755200013],[92.31728967300008,27.803678691000087],[92.30385380100003,27.78616038000014],[92.28876428200007,27.793085022000025],[92.27522505700009,27.81168853700008],[92.25827518700007,27.84819793700011],[92.2491801350001,27.862641500000123],[92.23956831900009,27.865276998000056],[92.22933638500008,27.849205628000064],[92.22912968000006,27.839387105000114],[92.2330570880001,27.830343730000052],[92.23491744000015,27.82117116400015],[92.22902632700013,27.810655010000104],[92.22137821400023,27.807399394000115],[92.21000940000008,27.806262512],[92.12629357900019,27.812722066000063],[92.10655318200004,27.81086171500006],[92.06965621000019,27.79404103700007],[92.0121920170001,27.74133107500016],[91.97508833800012,27.72657745400015],[91.9522473550002,27.72482045500008],[91.90873579900018,27.7319001260001],[91.8649141850001,27.72998809799999],[91.84941125500009,27.735259095000018],[91.81478804500009,27.75453440400004],[91.773756958,27.763810323000158],[91.63288700400003,27.75944366500009],[91.62730594900015,27.829826966000027],[91.62833947800013,27.85269378700012],[91.63712447100008,27.877240093000083],[91.6489066980001,27.897213033000114],[91.65283410700006,27.916746725000124],[91.63795129500012,27.93974273700017],[91.62172489400021,27.950723979000045],[91.60064091000018,27.95927642900007],[91.5786267500001,27.964702454000147],[91.5374923100002,27.969353333000115],[91.49749475100006,27.984081116000127],[91.46090783700011,27.984365336000096],[91.44643843600008,27.98635487900013],[91.43648287100015,27.989375107000097],[91.41884322100012,27.994726461000095],[91.34143192600007,28.030564067000128],[91.30959924300012,28.056402283000168],[91.2901689050001,28.091413066000158],[91.26970503800007,28.072861227000047],[91.24614058500018,28.071465963000048],[91.22061242700013,28.074876607000178],[91.19467085800008,28.070587464000127],[91.17586063600017,28.05748748800006],[91.13379602000006,28.01410512300008],[91.11963667900008,27.99488149000014],[91.11942997200006,27.99477813800003],[91.11942997200006,27.994726461000095],[91.09255822800006,27.971678772000143],[91.0519405520001,27.962790426000037],[91.0088424080001,27.966769512000113],[90.97514937400015,27.98209157300009],[90.96057662000007,27.994726461000095],[90.9095203040001,28.03265696300012],[90.85091923100018,28.044025777000016],[90.7887008060001,28.047488098000045],[90.75527753600014,28.05517321500015],[90.72689579300018,28.061699118000107],[90.68390100100012,28.0870722450001],[90.66746789600015,28.090327860000073],[90.65103479000018,28.086994731000075],[90.62188928300006,28.072964579000157],[90.59739465400011,28.070587464000127],[90.57527714000017,28.065833232000113],[90.51006148300003,28.07410146100007],[90.4925948490002,28.07441151900015],[90.47523156700012,28.07234446300002],[90.4856693515018,28.12465735277827],[90.51529856561538,28.15428656689211],[90.54821991463055,28.157578701793582],[90.56797272403983,28.19050005080875],[90.59760193815342,28.200376455513393],[90.58772553344883,28.23329780452856],[90.54821991463055,28.246466344134504],[90.5054221609108,28.249758479036085],[90.45604013738804,28.282679828051343],[90.4165345185698,28.282679828051343],[90.38690530445606,28.299140502558956],[90.3539839554409,28.299140502558956],[90.3295040280001,28.25579579700006],[90.29147017500006,28.261351014000137],[90.26180417819833,28.299140502558956],[90.26180417819833,28.335353986475592],[90.22559069428156,28.358398930786294],[90.19925361506958,28.348522526081652],[90.17620867075877,28.325477581771153],[90.1531637264483,28.322185446869568],[90.12353451233453,28.335353986475592],[90.07086035391026,28.345230391180262],[89.99045495700008,28.320623881000145],[89.97159305900007,28.318040060000058],[89.95252445500009,28.308247376000093],[89.91613001353883,28.315601177066483],[89.88131433100014,28.297524516000077],[89.87361454300006,28.30059926300011],[89.86291752100013,28.295793356000033],[89.85402917500014,28.287266744000092],[89.83862959800015,28.26791392100013],[89.8297412510001,28.25915476500016],[89.79604821800015,28.24018951500001],[89.78085534700014,28.228769023],[89.77362064600018,28.212775167000142],[89.75584395400014,28.18437896700014],[89.71781010000021,28.16908274399999],[89.59781742400011,28.149807434000035],[89.5794206140001,28.144639791000046],[89.56148889100021,28.134640401000024],[89.51503177900011,28.081904602000108],[89.49534305900006,28.06800364200002],[89.47534428000014,28.061337382000104],[89.45880782100014,28.047798157000113],[89.44454512600007,28.031184184000107],[89.4211873780001,27.994726461000095],[89.42098067200007,27.994726461000095],[89.4173636780001,27.988654027000038],[89.37013106300006,27.909356995],[89.3360246180001,27.86907521600007],[89.29948938000015,27.84424469000011],[89.25871667500004,27.82755320299999],[89.2249202880001,27.80781280600003],[89.21659020133725,27.771141523687916],[89.19820315021522,27.73058185209511],[89.15602109175879,27.665686377546862],[89.12735892383331,27.627289888439023],[89.12465494572709,27.6148515891506],[89.11948401016271,27.61820054938569],[89.10956515172725,27.622258264200255],[89.10586459484793,27.62295211861506],[89.10235143650154,27.623610835805025],[89.09153086366277,27.62586512181302],[89.06402857436447,27.615946263377694],[89.05095371551775,27.608281690950303],[89.03968228547741,27.594305117700245],[89.03337028465486,27.578975972845555],[89.01623771099369,27.575819972434218],[89.00271199494526,27.56049082757933],[89.00496628095331,27.549670254740604],[88.99279313650985,27.537497110297224],[88.9783657060582,27.530283395071436],[88.97295541963885,27.517659393426342],[88.97520970564696,27.506838820587618],[88.98004625332291,27.49798038056919],[88.98296649296324,27.492631778751118],[88.96620182870484,27.47803029697776],[88.9575490987651,27.456939267749604],[88.9510595513103,27.433144260415233],[88.96401118394223,27.39292364232726],[88.98117510746786,27.354634889847105],[88.99701872918372,27.330869457273153],[88.97193299480031,27.31238523193799],[88.95080816584576,27.328228853653926],[88.91516001698491,27.330869457273153],[88.8923307700002,27.315543111000164],[88.8646322020002,27.33238962800014],[88.85202315300008,27.342363180000163],[88.83083581600013,27.367322896000033],[88.81982873500013,27.37362742200007],[88.80820153800008,27.378381653000062],[88.79538578300017,27.385926412000103],[88.77357832900006,27.408509013000028],[88.7597807220001,27.43507069900015],[88.7543546960002,27.464216207000064],[88.7571968990002,27.494963684000126],[88.7575586340001,27.511448466],[88.74164229300017,27.53167978900011],[88.74102217700013,27.545709941000112],[88.74815352400005,27.560127666000128],[88.7673771560001,27.58619842500012],[88.78308679200015,27.62203603100015],[88.80566939300014,27.655108948000034],[88.8538835040001,27.84367624900007],[88.8550720630001,27.85917917900018],[88.85155806500015,27.877162577000078],[88.84277307100015,27.892407125000105],[88.81889856000006,27.915196432000084],[88.81068200700022,27.92785715800012],[88.8097518320001,27.944496969000156],[88.81967370600007,27.977337342000094],[88.81771000200015,27.994726461000095],[88.81771000200015,27.99488149000014],[88.81750329600018,27.99488149000014],[88.8029305420001,28.01100453700003],[88.78014123500006,28.02834198000015],[88.73564782700007,28.05526540200007],[88.71011967000013,28.061983337000086],[88.6520353600001,28.069398906000103],[88.6316748460001,28.0833515420001],[88.61048750800015,28.105830790000095],[88.59400272600007,28.106605937000108],[88.55281660900008,28.078054708000067],[88.53080245000008,28.059011943000158],[88.51715987200006,28.039581604000187],[88.50207035300016,28.02888458299999],[88.47540531400014,28.036248474],[88.4557682700001,28.03152008100001],[88.3999060470002,27.99488149000014],[88.3999060470002,27.994726461000095],[88.3998543710002,27.994726461000095],[88.3997510180001,27.994726461000095],[88.37877038600018,27.982634176000133],[88.1978511970001,27.958294576000114],[88.17485518400005,27.94976796499999],[88.16296960500003,27.946899923000117],[88.15118737800006,27.9472099820001],[88.12669274900011,27.950439759000076],[88.1157373460002,27.947261658000016],[88.09992435700022,27.928322246000064],[88.09749556500006,27.90400848400016],[88.10488529500017,27.879720561000155],[88.11821781400008,27.860884501000143],[88.09573856600016,27.865328675000157],[88.05279545100021,27.886516011000094],[88.0299544680001,27.893337301000155],[88.01812056500009,27.892148743000135],[87.99181726100002,27.882640280000043],[87.97843306500013,27.880521545000175],[87.96639245600014,27.88274363200018],[87.94520511900006,27.892303772000087],[87.93455977400018,27.89530100600008],[87.85611495000009,27.89860829700008],[87.83668461200008,27.90832346700013],[87.82588423700015,27.90656646700016],[87.81415368700007,27.89096018500011],[87.79865075700016,27.863468323000134],[87.77984053500015,27.839438782000013],[87.75637943500007,27.820370179000136],[87.72682051600006,27.807761129000095],[87.70046553600017,27.805642395000135],[87.6785288250002,27.813351022000134],[87.65995121300008,27.819879252000092],[87.63607670100005,27.823651632000022],[87.62109053600014,27.819543356],[87.58998132300015,27.80460886700014],[87.57334151200016,27.805022278000152],[87.56507328300019,27.81086171500006],[87.55980228700015,27.819078268000098],[87.55597823100013,27.827088115000052],[87.55132735200007,27.831894023000142],[87.53158695500011,27.836803284],[87.51453373200016,27.835201314000145],[87.47556970200017,27.826700542000154],[87.38678959100017,27.804402161],[87.36911625200017,27.803937073000082],[87.36911625200017,27.819078268000098],[87.38069177200012,27.835821432000117],[87.38534265100006,27.849412334000036],[87.36384525500013,27.85525177000001],[87.33583662900011,27.846363424000103],[87.31392582200007,27.828586731000158],[87.29051639800011,27.816081035000153],[87.23289717600002,27.82972361300007],[87.1819958900002,27.824504293000146],[87.15579593900011,27.8257962040001],[87.1165218510001,27.844580587],[87.06200321500009,27.90842681900015],[87.03053226700015,27.938089091000123],[87.00567590400013,27.95149912600006],[86.98872603400011,27.952480978000136],[86.98209267100006,27.950674405000044],[86.97022587100017,27.947442525000056],[86.94035689300009,27.943101705000075],[86.91472538200016,27.94511708600014],[86.8930729580002,27.954186300000103],[86.8768982340001,27.970645243000074],[86.86816491700014,27.994726461000095],[86.86816491700014,27.99488149000014],[86.8404663490002,28.014776917000162],[86.76997969600009,28.012089743000118],[86.73980065900017,28.02149485299999],[86.73220422400018,28.034956563000136],[86.73597660400006,28.064851380000064],[86.73173913600007,28.076917826000127],[86.71768314700014,28.08826080400003],[86.69964807100015,28.098751119000084],[86.6800627030001,28.105727437000084],[86.66197595200012,28.106838481000167],[86.64947025600011,28.10117991100013],[86.62714603700007,28.083480733000115],[86.61231490100012,28.080276794000056],[86.59686364700022,28.086503805000135],[86.58311771700019,28.09802764900017],[86.5695268150001,28.106605937000108],[86.55355879700006,28.10415130600013],[86.5441536870002,28.09301503600001],[86.5412598060001,28.078209738000098],[86.54074304200017,28.062164206000134],[86.53836592600013,28.04717804000016],[86.53092452000013,28.033690491000083],[86.52229455600016,28.02371694],[86.51619673700012,28.01224477100008],[86.51645511900009,27.994726461000095],[86.51676433500009,27.971432200000077],[86.51676517800014,27.971368714000064],[86.51046065300014,27.952429301000034],[86.49692142700005,27.93788238500015],[86.47547570800006,27.927598775000078],[86.43883711700019,27.910855611000116],[86.42529789200009,27.909925435000062],[86.4057125240001,27.91700510700009],[86.37196781400021,27.941964824000152],[86.36297611500018,27.94609893800019],[86.35367435800005,27.94480702800014],[86.34561283400014,27.940931295],[86.33755131000007,27.938037415],[86.32773278800019,27.939691061000147],[86.31822432400011,27.945788880000023],[86.29465987200008,27.97237640400014],[86.2780717360001,27.983693543000115],[86.25900313300022,27.98764679],[86.23853926600006,27.989558818000106],[86.2183854570001,27.994726461000095],[86.21792037000009,27.994933166000166],[86.21776534000006,27.99498484300007],[86.20303755700009,28.00258127900004],[86.19600956200011,28.014570211000105],[86.18913659700016,28.043612366],[86.18185022000009,28.054877828000045],[86.17446049000014,28.062448425000113],[86.17223840400007,28.071827698000064],[86.18076501500015,28.08875172900015],[86.1871728930001,28.108698832000172],[86.18603601100018,28.133529358000132],[86.17601078300017,28.153011373000123],[86.15596032800013,28.156525371000086],[86.06873050900005,28.076762797000086],[86.07017745000022,28.06671173100007],[86.08154626500013,28.051699727000184],[86.08469852700009,28.043870748000145],[86.08392338100005,28.03854807600011],[86.07953088400009,28.02164988200003],[86.07953088400009,28.01332997700017],[86.07761885600016,28.00694793700005],[86.07916914900008,28.001134339000043],[86.0892977290001,27.99488149000014],[86.0892977290001,27.994933166000166],[86.08940108300007,27.99488149000014],[86.08940108300007,27.994726461000095],[86.0981343990002,27.985631409000135],[86.09803104700009,27.977518209000138],[86.09508549000012,27.968888245000088],[86.0956022550001,27.957855326000086],[86.10056319200007,27.950233053000105],[86.10717777500004,27.944238587000186],[86.11224206500006,27.937262269000186],[86.11286218300019,27.92679779100014],[86.10717777500004,27.922844544000082],[86.07565515100012,27.894784241000153],[86.06170251500012,27.889048157],[86.05459969400013,27.888013072000078],[86.05141890500013,27.88754954000008],[86.02645918800013,27.889926656000124],[85.98026045800012,27.88517242400006],[85.96269047000013,27.891373596000122],[85.9512183030001,27.91622996100007],[85.9518384190001,27.93679718100016],[85.95628259300005,27.95687347400003],[85.95659265100008,27.976226298000185],[85.94398360200013,27.994726461000095],[85.90894698100013,28.022425029000132],[85.89830163600013,28.036015930000033],[85.89044681900006,28.059192810000027],[85.8898267010002,28.071259257000108],[85.89106693500017,28.08089691200003],[85.889103231,28.090276184000075],[85.87173995000009,28.11092091900018],[85.8670373950001,28.132935080000053],[85.86336836800015,28.143347880000093],[85.84827885000001,28.15892832500013],[85.8268848070002,28.170478007000053],[85.78275313300006,28.188099671000046],[85.75660485900013,28.20324086600006],[85.73448734500018,28.22153432300003],[85.71557377100005,28.243367615000167],[85.69976078300007,28.26910247800005],[85.69800378400012,28.313440857],[85.69293949400006,28.335222473000112],[85.67914188700016,28.332897034],[85.6759896250002,28.324732158000174],[85.67619633000018,28.315120341000164],[85.67505944900009,28.306387024000102],[85.6681348060001,28.3005475880001],[85.64694747000013,28.293700460000036],[85.63909265200017,28.287886862000065],[85.61180749500008,28.25114491800018],[85.59894006300006,28.250834860000097],[85.58550419100001,28.263185526000044],[85.56529870600016,28.275381164000162],[85.54369795800008,28.280393779000022],[85.52065026900013,28.28292592400011],[85.49755090300002,28.28261586500004],[85.47569177300008,28.27910186800007],[85.44664961700019,28.292150167000116],[85.43156010000021,28.29705942800014],[85.41523034700018,28.296439311000185],[85.40138106300012,28.288791199000016],[85.37781661000011,28.26597605400012],[85.36257206200015,28.259671529000098],[85.34536381000007,28.26124766000011],[85.33482181800011,28.26868906700004],[85.32572676600014,28.277396546000105],[85.31260095200017,28.28277089500007],[85.30102543200022,28.28106557200003],[85.27312015800005,28.26982594900015],[85.25958093300008,28.266932068000173],[85.24340620900007,28.26791392100013],[85.22392419500008,28.271686300000155],[85.20573409100015,28.278275045000058],[85.17359134900019,28.304319966000133],[85.15457442200014,28.300857646000097],[85.13416223200008,28.291969300000073],[85.10940922100005,28.292253520000045],[85.08739506100018,28.30411326100007],[85.08021203600006,28.31878936800014],[85.08186710200013,28.331702005000167],[85.08568973800001,28.361525777000068],[85.08568973800001,28.381007792000062],[85.0775765380001,28.435681457000115],[85.08367435700009,28.445525818000092],[85.1094608970001,28.459297587000137],[85.11555871600015,28.472733460000185],[85.11566206800009,28.491492005000097],[85.11721236200017,28.497331441000153],[85.12315515100012,28.504591980000143],[85.14036340400015,28.51092234300016],[85.14764978100007,28.5158316040001],[85.1537476000001,28.524900818000063],[85.15695153800019,28.5331432090001],[85.1680102940002,28.5831918330001],[85.16098230000009,28.594999899000115],[85.11188968900014,28.608823344000157],[85.07504439300013,28.63166432800007],[85.0549422610001,28.638692322000068],[85.03210127800017,28.634067281000043],[85.02527998900021,28.62840871200008],[85.01876875900015,28.619856262000056],[85.00915694200013,28.602544657000134],[85.00249068200004,28.59443145800004],[84.99406742400006,28.590814107000156],[84.98476566600019,28.588592021000167],[84.9549483640001,28.574303487000076],[84.9489538980001,28.568283183000133],[84.9364482020001,28.544770406000154],[84.9284900310001,28.538465881000047],[84.91872318600016,28.535675354000187],[84.90787113500019,28.537018942000046],[84.89143802900006,28.54177317300004],[84.87929406700007,28.543633524000043],[84.8239486090001,28.540532939000016],[84.81195967600014,28.54197987900001],[84.79914392100008,28.546630758000063],[84.78178064000016,28.558903910000097],[84.75563236500014,28.58541392100001],[84.73661543800009,28.594173075000086],[84.69083011900014,28.596136780000037],[84.6777559810001,28.60440500900016],[84.6829753010002,28.650758769000063],[84.67114139800017,28.658949483000086],[84.6522795010001,28.662385966000116],[84.63264245600013,28.668793844000064],[84.62582116700015,28.676080221000134],[84.6162093510001,28.69365020700012],[84.60721765100013,28.698197734000143],[84.55182051600016,28.70638844900016],[84.5319767660001,28.712692973000074],[84.51564701300006,28.72140045200014],[84.49859379100022,28.727860006000114],[84.47575280800012,28.727291565000044],[84.4508447680001,28.733880310000057],[84.4378223070001,28.753336487000027],[84.4227327880001,28.79917348300007],[84.41430953000011,28.808268534000046],[84.39307051600021,28.824339905000112],[84.37658573500008,28.848834534000087],[84.36630212500009,28.856741028000116],[84.35400313300013,28.861288554000154],[84.28599694900007,28.873742574000133],[84.23514733900006,28.900020040000086],[84.22529051000016,28.914115306000053],[84.20672530100009,28.94066355400012],[84.23142663600012,29.02598134300011],[84.2205745850001,29.038900452000018],[84.19819869000011,29.045308329000147],[84.1754610600001,29.057400614000144],[84.16972497600014,29.088923239],[84.16621097900011,29.098457540000098],[84.16011316000007,29.105485535000117],[84.13799564600006,29.12465749200011],[84.13225956200009,29.14380360900013],[84.14171634900005,29.160262554],[84.15520389800011,29.175946351000146],[84.16166345300005,29.192534485000166],[84.15546228100018,29.20664215099999],[84.14197473200014,29.20826995900013],[84.12600671400017,29.206254578000184],[84.11236413600008,29.209096782000145],[84.10533614100004,29.21992299400001],[84.09913496900016,29.24700144500015],[84.0897298580002,29.256613261000087],[84.0720565190002,29.256974996000068],[84.05303959200015,29.250360413000163],[84.03521122200019,29.24762156200005],[84.0215169680001,29.259765523000123],[84.01252526900007,29.27020416300014],[84.0008980710002,29.27252960200009],[83.98823734600015,29.26953236900009],[83.97583500200008,29.26374460900011],[83.97325118100017,29.277025452000103],[83.96725671400006,29.284699402000015],[83.95795495600012,29.289040222],[83.94555261300016,29.29183075000005],[83.9331502680001,29.29177907300011],[83.91439172400007,29.289401957000095],[83.88343754100016,29.282012228000088],[83.87739139900012,29.276767070000133],[83.86886478700009,29.263434550000124],[83.86163008600012,29.260204773000154],[83.8378589270001,29.25400360100015],[83.79321049000006,29.234754131000113],[83.77062788900011,29.23224782400014],[83.74535811400008,29.23446991000007],[83.71972660300017,29.23359141100012],[83.69549035700018,29.2261758420001],[83.67507816600008,29.208760885000075],[83.66774011200008,29.192327780000102],[83.66339929300008,29.17480946900004],[83.6560095620001,29.160779318000138],[83.6549923890001,29.160413575000163],[83.6392663980001,29.154759013],[83.6244352620001,29.155456645000086],[83.58381758700008,29.162148743],[83.57203536000006,29.16840159200011],[83.56139001500017,29.176230570000133],[83.53596521000006,29.17922780400015],[83.52371789500013,29.18359446200013],[83.5170516360001,29.191707662000127],[83.51457116700007,29.201810405000074],[83.5125041090001,29.223488668000172],[83.5029956470001,29.261031596000162],[83.49338383000011,29.27614695200016],[83.47581384300011,29.286921489000107],[83.44821862800019,29.296765849000096],[83.43721154800012,29.305240783999988],[83.42816817300016,29.333456116000047],[83.41778120900003,29.340897523000148],[83.40501713000018,29.346478577000184],[83.39313155100015,29.35624542300006],[83.38827396600001,29.37022389700006],[83.38941084800015,29.382445374000053],[83.38724043800008,29.393504130000068],[83.35700972500015,29.415363261000106],[83.35520105000015,29.427972310000133],[83.35778487100006,29.442751771000143],[83.35520105000015,29.46073516800014],[83.32796757000003,29.485023092000134],[83.26394047000022,29.47300832100016],[83.24719730600012,29.494738261000162],[83.24874760000014,29.50657216400019],[83.25401859500006,29.51329010100001],[83.25990970900014,29.518767802000113],[83.26332035400017,29.527087708000163],[83.26083988500008,29.54204803500012],[83.25257165600007,29.555199687000094],[83.22931726100015,29.575947774000138],[83.2218758540001,29.579823507000082],[83.20492598500013,29.584913636000167],[83.1971745200001,29.589099427000022],[83.1944873460001,29.593646953000146],[83.1908699960002,29.606901957000144],[83.1872526450002,29.612095439000154],[83.17355839100017,29.621268005000147],[83.16208622200016,29.625169576000115],[83.1500456140001,29.62563466400003],[83.12668786600014,29.623412577000053],[83.10028120900009,29.617676493000157],[83.09335656700009,29.615144349000087],[83.08844730700015,29.604421488000167],[83.08555342600019,29.590391338000146],[83.07955896000007,29.579642640000042],[83.0649345300001,29.5787899780001],[83.05449589000014,29.586050517000086],[83.04090498800022,29.61028676400015],[83.03289514200017,29.620467021000035],[82.97589603700007,29.664030253000146],[82.96432051600007,29.66589060500017],[82.94209965000017,29.662945049000157],[82.93191939300002,29.664185283],[82.92370284000012,29.669662984000112],[82.90913008600015,29.684623312000056],[82.8997249760001,29.688421529],[82.88008793200007,29.681109314000096],[82.85745365400012,29.666200664000154],[82.83657637600001,29.659792786000125],[82.82236535700015,29.67795705200014],[82.8155440680001,29.69012685100016],[82.80515710500018,29.69596628900014],[82.79306482000013,29.69950612400011],[82.78107588700007,29.705113017000134],[82.77012048400016,29.714156393000096],[82.751516968,29.739322815000136],[82.69095218900006,29.780741476000074],[82.68175378500004,29.797717183000188],[82.68464766500003,29.809706116000044],[82.6891951910001,29.81957631400003],[82.68898848500012,29.827741191000044],[82.67730961100008,29.834407451000157],[82.66697432500015,29.83502756700012],[82.64640710500007,29.829343161000097],[82.63586511200018,29.82903310100001],[82.61850183100007,29.839833476000035],[82.54181400500013,29.923239238000107],[82.52424401900007,29.932385966000183],[82.47582320100011,29.945511780000132],[82.45706465700013,29.954090068000184],[82.43892622900009,29.965768942000135],[82.42285485900011,29.979669902000026],[82.40978072100008,29.99460439100009],[82.3944328210001,30.003131002000103],[82.37913659700016,30.003234355000032],[82.36373702000006,30.001167298000084],[82.3473039140001,30.003441061],[82.33908736200007,30.009228821000153],[82.32715010600012,30.025713603000142],[82.31888187700015,30.031811422000185],[82.29650598200007,30.036824036000056],[82.27599043800008,30.036927388],[82.25573327600009,30.03966624000013],[82.2106714280001,30.064419251000157],[82.19217126400021,30.061473694000156],[82.17423954300008,30.05547922800004],[82.15382735200009,30.05816640200005],[82.1445255940001,30.069431865000027],[82.13522383600016,30.089740702000046],[82.12871260600011,30.11077301000016],[82.12757572500017,30.12436391200005],[82.15098514800015,30.16224273700014],[82.1556877030001,30.181363017000038],[82.14039148000009,30.194023743000074],[82.11424320500007,30.20218861900018],[82.09589807100011,30.213454082000155],[82.08499434500013,30.230817363000153],[82.08210046400013,30.257327373000162],[82.09321089700002,30.314739889000165],[82.08876672400007,30.33008778900013],[82.0732121180001,30.33721913700016],[82.04985437000006,30.339234518000026],[82.00763472500009,30.33680572600015],[81.99817793800011,30.33406687500003],[81.98846276900011,30.329777731000046],[81.97885095300009,30.326832174000156],[81.96903243000011,30.328279114000154],[81.96210778900009,30.333653463000118],[81.95011885600016,30.348381246000102],[81.94123050900005,30.353962301000035],[81.9214901120001,30.357372946000154],[81.88717696200015,30.354995830000025],[81.84438887500006,30.37117055300011],[81.82278812700005,30.36817332],[81.80149743700011,30.361300354000107],[81.77901818800008,30.358044739000132],[81.75736576400018,30.36290232400016],[81.63571944200007,30.410961406000023],[81.61401534000007,30.416904195000125],[81.59158776800004,30.414268697000026],[81.58507653800008,30.408119202000037],[81.58197595200014,30.399437561000088],[81.57670495600021,30.39096262600016],[81.56326908400015,30.385588277000025],[81.5442521570001,30.382642721000124],[81.5368107510001,30.378560283000112],[81.53195316600008,30.37034373000007],[81.5206877040001,30.331948140000137],[81.50937056500013,30.328382467000083],[81.48306726100006,30.331896464000053],[81.4628101000001,30.341353251],[81.42611983200018,30.372514140000145],[81.4074129640002,30.379180400000095],[81.38751753800008,30.37390940300004],[81.38488204000012,30.360938619000123],[81.38725915500007,30.345125631000126],[81.38214318800007,30.331276347000152],[81.37154952000017,30.31691029900016],[81.36803552300007,30.30104563400015],[81.36901737500008,30.266060689000042],[81.37051599100019,30.257275696000153],[81.37692386900014,30.241204325000087],[81.37785404500019,30.232626038000074],[81.37439172400016,30.223117574000167],[81.36183435100023,30.204772441],[81.3572868250001,30.173559876000112],[81.35005212400014,30.15723012300016],[81.33826989700005,30.143535868000143],[81.32240523300013,30.13376902300011],[81.30953780200011,30.13206370100012],[81.29325972600012,30.13283884700014],[81.2777051190001,30.131856995000177],[81.26695642100006,30.125087382000128],[81.26633630400008,30.117749329000144],[81.2745011800001,30.102194723000125],[81.2759481210002,30.095373433000145],[81.27202071100012,30.079922180000082],[81.26790264600018,30.072053005],[81.26680139200018,30.069948629000166],[81.25708622300007,30.063540752000122],[81.23951623600007,30.058786520000027],[81.22571862800007,30.050466614000168],[81.22726892100016,30.022457987000152],[81.21683028200002,30.008195292],[81.19450606300008,30.00447458900008],[81.14810062700016,30.023233134000165],[81.12458785000015,30.022768047000124],[81.09776778200009,30.016928609000058],[81.08484867400009,30.026178690000062],[81.08445364600018,30.027875774000062],[81.07420332800008,30.071912334],[81.06660689300011,30.087156881000126],[81.0436625580002,30.120229797000107],[81.03089847800013,30.15273427400014],[81.01942631000011,30.172267965000156],[81.00650720200011,30.18890777600008],[80.99601688700014,30.19696930000008],[81.0033032640001,30.21273061100005],[80.99627526900011,30.226889954000015],[80.97601810700009,30.2552086380001],[80.94377201300014,30.270143128000072],[80.86698083500008,30.288488261000126],[80.7816630450001,30.320992737000083],[80.76719364400017,30.331431376000108],[80.75499800600008,30.345797425000015],[80.7353609620002,30.37819854700002],[80.72306197200007,30.39204783200007],[80.69474328600008,30.411736552000136],[80.59635136000006,30.45979563499999],[80.5752673750002,30.466255188000144],[80.55997115100014,30.465118306000036],[80.54508833800011,30.46103586900004],[80.52514123600011,30.45860707600015],[80.50829471900013,30.462327779000177],[80.47542850700009,30.480466207000106],[80.42499230900009,30.497829488000107],[80.32587691200015,30.546508687000042],[80.25280643800008,30.56500885100017],[80.21621952300009,30.566817526000147],[80.17983931500007,30.55947947200015],[80.18841760200021,30.57699778300004],[80.19782271300008,30.591363831000034],[80.20330041600008,30.606349996000105],[80.1998897710001,30.625883687],[80.19058801300011,30.63797597299999],[80.1772554930001,30.649861552000047],[80.16692020700006,30.6619021610001],[80.1666101480001,30.674407858],[80.17291467300018,30.679162089],[80.18200972500009,30.680040589000114],[80.19172489400009,30.679678853000112],[80.1998897710001,30.680712382000095],[80.20702111900007,30.686138407000087],[80.2314123940001,30.72494740800012],[80.22459110500013,30.734094137000014],[80.19606571500017,30.74809845000011],[80.16929732200012,30.785253804000103],[80.1571016840002,30.79316029900015],[80.14066858000015,30.793211975000172],[80.10924930900009,30.77812245800008],[80.09219608500004,30.77450510699999],[80.0625338140002,30.784788717000183],[80.04444706200009,30.806699524000134],[80.02863407400011,30.83078074200007],[80.00558638600015,30.84726552400015],[79.93489302600014,30.87253529900012],[79.91936951600016,30.881181945000133],[79.91463535600005,30.883818887000178],[79.90316369700011,30.890208639000132],[79.88042606600013,30.912842916000088],[79.86285607900007,30.94152333600009],[79.85035038300006,30.95449412],[79.83350386600007,30.961522115000104],[79.76064009600006,30.977231751000158],[79.73903934800009,30.97924713100012],[79.6884997970001,30.96741322900003],[79.648192179,30.96575958300015],[79.63031213400009,30.96250396700016],[79.5894877530001,30.940231425000103],[79.57780887900012,30.9383710740001],[79.56592329900016,30.942453512000114],[79.54421919800009,30.947414449000078],[79.52964644400012,30.95356394500014],[79.51269657400022,30.966172994000157],[79.49760705600013,30.98121083600016],[79.48820194600015,30.994491679000145],[79.48685835800008,31.000227763000126],[79.48427453600019,31.00544708300005],[79.4807605390001,31.010046285],[79.47641971900006,31.014025371000074],[79.46164025900006,31.021105042],[79.44634403500018,31.023792216000047],[79.43073775300016,31.023172099000146],[79.41440800000012,31.020381571000097],[79.40159224500022,31.023637187000173],[79.39497766100013,31.036711324000134],[79.38836307800014,31.069474182000036],[79.38259259500015,31.07833466600006],[79.37234338400017,31.09407216500004],[79.34826216600001,31.105389302],[79.32108036300022,31.11231394500008],[79.29565555900015,31.12414784700009],[79.2822196860001,31.13820383700003],[79.27508833900006,31.15422353100017],[79.27229781100019,31.171896871000076],[79.27188439900007,31.19101715100005],[79.2660966390001,31.212307842000044],[79.2521440030001,31.219749248000156],[79.23498742700016,31.22341827400008],[79.21969120300011,31.233701884000155],[79.21555708800005,31.243727112000084],[79.21700402900015,31.25251210600008],[79.21958785000018,31.260832011000115],[79.21907108500014,31.26946197500017],[79.21338667900008,31.276903381000107],[79.19798710200008,31.287342021000043],[79.19416304600006,31.295351868000107],[79.19488651500015,31.306152242000152],[79.1975736900001,31.315609030000118],[79.19840051300011,31.324910787000036],[79.19374963400017,31.335349426000093],[79.18672164000006,31.33953521700012],[79.16780806500012,31.341447245000136],[79.15995324700006,31.344496155000158],[79.14951460800015,31.35927561400008],[79.1453804930002,31.37477854399999],[79.13917932100006,31.388627828000054],[79.1055896400002,31.406197815000112],[79.07778772000015,31.42717844700003],[79.06331831900009,31.433638001000176],[79.01463912000011,31.425473125000064],[78.995622193,31.38681915300016],[78.98880090300017,31.343255921000136],[78.97619185400006,31.320001526000013],[78.95955204299999,31.32511749300001],[78.93474735600009,31.34733835900012],[78.91810754400014,31.354418030000076],[78.90126102700017,31.32367055200011],[78.89030562400009,31.30956288700015],[78.87887626600016,31.299550770000067],[78.8773865150001,31.298245748000102],[78.86198693800011,31.29147613500005],[78.8486544190001,31.290907695],[78.82198938000013,31.29369822200006],[78.79604781100008,31.288117167000152],[78.78447229000002,31.288272197000182],[78.75315637200006,31.301966451000013],[78.74509484900014,31.30811594700016],[78.7408573820002,31.317727763000093],[78.73848026600014,31.33498769099999],[78.74550826100007,31.373538310000143],[78.76008101400012,31.412037252000015],[78.7625614830001,31.4451101690001],[78.73300256300016,31.467744446000054],[78.69538212100021,31.488104961000158],[78.69951623500017,31.510015768000027],[78.79697798700013,31.578848775000136],[78.81403120900009,31.59502349900013],[78.81888879400012,31.6073741660001],[78.7953243410001,31.633780823000063],[78.75811731000006,31.666595358000095],[78.73982385300022,31.666026917000025],[78.73134891800012,31.668042298000085],[78.72401086500022,31.673313293000103],[78.7184298100001,31.680599671],[78.71047164000007,31.69816965800005],[78.69806929500007,31.71103709000006],[78.69321171100015,31.718530172],[78.6925915940001,31.72840037000016],[78.69517541500008,31.73796051100008],[78.69558882600019,31.74669382700013],[78.6708874920001,31.77051666300012],[78.67409143000006,31.786949768000067],[78.70034305800017,31.82167633100012],[78.70664758300019,31.8407966110001],[78.71419234300005,31.88301625600017],[78.72018680900007,31.902911682000177],[78.74199426300012,31.94533803300011],[78.7445780850002,31.964199931000124],[78.73382938700009,31.984663798],[78.72215051300012,31.994585673000092],[78.6783288980001,32.01675486300003],[78.6492867430002,32.036443583000064],[78.55182499200012,32.15039011700012],[78.53497847500014,32.181344299000145],[78.5130676680001,32.20757008900007],[78.47648075400016,32.22441660600005],[78.4690173920001,32.22653261500007],[78.4685407690001,32.22666774700015],[78.45798059100011,32.22966176400017],[78.45632694500009,32.24211578400015],[78.46139123600008,32.26015085900015],[78.46273482300015,32.281803284000134],[78.43886031100013,32.3732964070001],[78.43596643100014,32.37797312500008],[78.43451949100009,32.38376088500005],[78.4363798420001,32.396163229000095],[78.44144413200016,32.40494822200018],[78.44816206900006,32.410658468000136],[78.45219283000009,32.41678212500001],[78.44878218600016,32.42678151500003],[78.40919803900007,32.47662343400016],[78.38098270700013,32.52804148400004],[78.38480676200007,32.547549337000035],[78.40816451000009,32.55837555000009],[78.4475419520002,32.566256205000045],[78.58985884700004,32.56992523200002],[78.63016646300011,32.57801259400013],[78.6477364510001,32.585970765000084],[78.66489302600016,32.59901906300003],[78.69445194500011,32.62966318800015],[78.71326216700018,32.63751800600009],[78.73682661900008,32.629844056000096],[78.75098596200016,32.61279083300015],[78.74912561100014,32.59586680100007],[78.74065067600006,32.57868438700011],[78.73496626800008,32.56064931300001],[78.73692997300012,32.54579233800017],[78.75470666500016,32.49380584700005],[78.7714498290002,32.46166310600002],[78.8556824140002,32.40045237300008],[78.8815206300002,32.3762678020001],[78.91128625500019,32.35474456800016],[78.94342899600021,32.34637298600008],[78.97619185400006,32.36161753300003],[78.98983443200015,32.364098003],[79.01474247300021,32.37399403900017],[79.02817834500016,32.37709462600013],[79.03965051300005,32.37598358100003],[79.06631555200013,32.370066631000114],[79.07530725100017,32.37079010000012],[79.09174035700013,32.390556335],[79.10290246600007,32.44985504200009],[79.11292769400009,32.47238596700011],[79.13287479700008,32.485460104000154],[79.16140018800016,32.49646718400005],[79.19116581200015,32.50427032500009],[79.21524703000009,32.50791351300008],[79.23560754400015,32.50429616300009],[79.25617476400012,32.49587290500001],[79.27601851500012,32.49018849700015],[79.2943119710001,32.49458099400014],[79.33678999900022,32.53566375800001],[79.43476851400013,32.60242970800006],[79.47641971900006,32.64542450000012],[79.49574670400007,32.67821319600013],[79.50504846300012,32.714179993000116],[79.49998417100008,32.746839498],[79.47641971900006,32.76980967200005],[79.44872115100011,32.79562205000006],[79.43879927600014,32.824612529000106],[79.43197798700007,32.85538584400008],[79.41275435400016,32.886546733000145],[79.35425663200007,32.93057505300011],[79.3342061770002,32.95682668100015],[79.33358605900011,32.99429209500012],[79.33978723100014,33.01325734500007],[79.34423140500022,33.065941468000105],[79.35136275200009,33.08485504200003],[79.37317020700019,33.11214019800006],[79.38185184700014,33.12733306900016],[79.37864790900018,33.16428171800011],[79.34485152200008,33.17931956000011],[79.26444299300007,33.18198089600013],[79.2296130780002,33.192161153000185],[79.15364872200016,33.226913554000035],[79.1222294520002,33.22890309700007],[79.08739953600016,33.215596416000054],[79.07892460100005,33.22117747100016],[79.07716760300016,33.244716085000064],[79.07282678200008,33.26362965900002],[79.06021773300009,33.27680714899999],[79.04326786400006,33.285876363000156],[79.02611128700019,33.29264597600009],[78.98911096200007,33.30197357200002],[78.97329797400008,33.30957000799999],[78.91769413200014,33.386257833000045],[78.91594777500003,33.38765598100015],[78.82426314300008,33.46105946900015],[78.80090539600022,33.49423573800006],[78.78137170400012,33.55278513600017],[78.79408410700013,33.74391042100011],[78.7872628170002,33.80842844700013],[78.77031294800011,33.872352193],[78.72111698400013,33.99438608900006],[78.73010868400016,34.07926462900012],[78.8060730390001,34.1229828900001],[78.90322473100011,34.15812286400013],[78.97619185400006,34.217163188000185],[78.98549361200017,34.23990081800015],[78.98849084500009,34.26312937400017],[78.98539025900007,34.2863579310001],[78.97619185400006,34.30917307599999],[78.95693951600006,34.33996090500001],[78.95118046100005,34.349170634000146],[78.92213830600016,34.37229583700004],[78.88586145000008,34.385757548000086],[78.83924930800006,34.39689382000002],[78.80173221800013,34.41500640900013],[78.75067590400008,34.471282044000034],[78.66458296800008,34.526420797000114],[78.60732548000013,34.546471253000064],[78.37943241400009,34.57866567000012],[78.33530074000012,34.594375306000174],[78.29602665200011,34.62465769500001],[78.27318566900011,34.6588674930001],[78.21138065600022,34.84826161700006],[78.20249230900012,34.86572825100011],[78.16218469300006,34.90882639600003],[78.14812870300014,34.94313954700014],[78.13924035700015,35.01894887300013],[78.13004195100021,35.05543243400014],[78.0364042570001,35.194235331000144],[78.00116092900012,35.26890777600015],[78.00984257100018,35.34745595300011],[78.03805790200013,35.39809885700004],[78.05562789000012,35.45287587500003],[78.04425907400011,35.49163319900008],[77.98586470600017,35.49416534400013],[77.95785607900014,35.48207305900017],[77.91269087700019,35.44099029500002],[77.88313195800006,35.4310684200001],[77.85708703600008,35.436597799000126],[77.83424605300016,35.45215240500015],[77.8153324790002,35.47333974200011],[77.80034631400017,35.49540557900009],[77.77357792200009,35.49897125300008],[77.76034875500008,35.49809275300011],[77.74742964700008,35.494320374],[77.71673384600015,35.47540680000016],[77.68965539600016,35.46269439700011],[77.6606132410001,35.458095195000155],[77.51960817800013,35.477439204000106],[77.51219852700015,35.478455709000094],[77.47643843600021,35.47716379800012],[77.41277307100015,35.469412333000136],[77.38373091600008,35.47199615500013],[77.35200158700009,35.48605214500004],[77.30538944500009,35.51783315100008],[77.28110152200004,35.52801340800015],[77.25081913300002,35.53070058200008],[77.17754195100022,35.52315582300004],[77.14126509600007,35.525377910000046],[77.10529829900011,35.53798695900015],[77.09227583900017,35.54780548200013],[77.0710885010001,35.57100819900013],[77.0581693930001,35.58010325200011],[77.03904911300012,35.58501251200015],[77.01755171800008,35.58459910100014],[76.97641727700007,35.57865631200012],[76.93579960200006,35.57963816400017],[76.91502567600011,35.58315216100014],[76.89642216000007,35.589611715],[76.8805058190002,35.600670472],[76.8569413650001,35.62857574499999],[76.84298872900015,35.64128814800013],[76.82459191900014,35.6477993780001],[76.7828373620001,35.645732320000135],[76.77735074100005,35.646111714000185],[76.7634070230001,35.647075907],[76.7454236250002,35.65503407800015],[76.73291792900014,35.6666095990001],[76.70904341700006,35.69404978500016],[76.67669397000006,35.71379018200004],[76.60424361200013,35.73570098900008],[76.57075728400017,35.751255595000096],[76.55112024000013,35.784018453000115],[76.56527958200016,35.86546051100014],[76.55546105900012,35.89786163400005],[76.53716760300014,35.902512513000104],[76.50016727800019,35.87150665299999],[76.47649947100015,35.86525380500008],[76.45396854700002,35.86478871700014],[76.44290979000013,35.86329010100014],[76.4320577390001,35.86049957300018],[76.42244592300008,35.854298401],[76.41035363800009,35.83683176700008],[76.40311893700013,35.830992330000164],[76.38410201000013,35.82820180300003],[76.36642867100014,35.83088897700004],[76.34885868300009,35.830992330000164],[76.31196171000013,35.809649963000155],[76.29656213400007,35.80949493500013],[76.2805424400001,35.81424916700003],[76.26038863200013,35.81781484],[76.2371342360001,35.81548940100008],[76.18979862500007,35.8049990840001],[76.16602746600019,35.80623931900005],[76.13812219200011,35.82665151000002],[76.12778690600013,35.86210154200005],[76.12375614400011,35.90349436500015],[76.11466109200013,35.94178660100009],[76.08995975700012,35.978115133000145],[76.06143436700009,35.99160268200002],[75.98433313000012,35.99563344400011],[75.95301721200022,36.00726064100017],[75.92232141100007,36.03165191700002],[75.89999719300013,36.06348459900015],[75.89431278500015,36.09738433900007],[75.90144413300013,36.11361073800008],[75.91456994700016,36.12389434800015],[75.96417932100015,36.14983591800011],[75.97151737500016,36.155003561000015],[75.97658166500011,36.16275502600003],[75.97740848800007,36.17376210500011],[75.96914025900011,36.19169382800008],[75.97007043500017,36.20233917200006],[75.98340295400007,36.21541331000013],[76.00159305800011,36.22213124600013],[76.01440881400012,36.230399475000084],[76.01192834500014,36.24812449100001],[76.00169641100015,36.26145701100013],[75.97658166500011,36.28698516900006],[75.9688302000002,36.301971334000044],[75.96862349500006,36.34181386400017],[75.98743371600008,36.421188863000125],[75.98108273200015,36.445443571000126],[75.97681139900013,36.46175599500016],[75.97658166500011,36.46263336200009],[75.87477909400016,36.619471334000096],[75.84976770000017,36.64474111000008],[75.79054650900017,36.687839254],[75.72874149600008,36.723185934000085],[75.64977990700001,36.75403676400007],[75.57050826100007,36.766749166000025],[75.5079797770002,36.74762888700003],[75.50188195800015,36.737965393000096],[75.49888472500001,36.727630107],[75.4925802000001,36.72070546500011],[75.43191206900022,36.72292755100003],[75.41051802600012,36.74731882700014],[75.40338667800009,36.784784241000025],[75.40142297300022,36.82586700400019],[75.39449833200015,36.864262594000124],[75.37796187400008,36.894286601000154],[75.35129683500023,36.91578399700002],[75.31346968600016,36.92875478100014],[75.19513065600019,36.9488827520001],[75.16123091600011,36.964204814000155],[75.13280887900007,36.98469451900014],[75.11854618400011,36.99123158800001],[75.10014937300011,36.994125468],[75.01446984800012,36.984487813],[74.97684940600018,36.98428110800013],[74.94232955000021,36.97699473100015],[74.92496626800019,36.9708710740001],[74.91049686700013,36.96255116800005],[74.9007816980002,36.949916280000096],[74.89199670400015,36.920977478000125],[74.88579553300016,36.91144317600005],[74.87235966000011,36.90710235600007],[74.86677860500018,36.91655914300013],[74.86088749200009,36.946893209000066],[74.85323938000006,36.95898549400006],[74.82450728400008,36.994125468],[74.8243005780001,36.994125468],[74.7925712480002,37.01515777600012],[74.71919071500005,37.016449687000076],[74.69221561700007,37.035880026000044],[74.67795292100018,37.05169301400006],[74.66244999200013,37.054483541000096],[74.62606978300008,37.042752991000114],[74.56178430200012,37.02967885400007],[74.54235396300012,37.02166900600018],[74.51920292200006,37.03024729400012],[74.50576705000017,37.04704213500018],[74.49408817600013,37.06647247300016],[74.47662154100007,37.08313812300018],[74.41440311700009,37.10783945700011],[74.38257043400019,37.126572164],[74.36613732900017,37.147759501000145],[74.36830774000006,37.167060649000106],[74.38226037600006,37.17204742500014],[74.42029423100004,37.16806833900007],[74.44158492000015,37.17054880800005],[74.45667443900007,37.17731842000008],[74.4676298420002,37.18992747000003],[74.47662154100007,37.21005544100007],[74.48726688600007,37.2259459430001],[74.50008264200002,37.231630351000135],[74.53222538200006,37.23219879200009],[74.57594364500008,37.242146505],[74.58999963400018,37.24336090100003],[74.59651086500011,37.24075124100001],[74.60901656100006,37.23018341100014],[74.61501102700018,37.22837473600005],[74.62327925600013,37.23080352800012],[74.6272066650001,37.234317525000066],[74.62999719300015,37.23829661100013],[74.64301965300008,37.248373515000175],[74.64632694500008,37.25483306900004],[74.65097782400002,37.25963897700014],[74.67092492700007,37.2613442990001],[74.6762992760001,37.26372141500015],[74.6989335530001,37.280309550000155],[74.70937219200013,37.290825704000106],[74.72146447700018,37.2977761850001],[74.7373808190001,37.29612253800015],[74.74399540200014,37.28839691200007],[74.7832694910002,37.21966725700018],[74.79401818900011,37.21393117300011],[74.8131384680001,37.21542978900014],[74.89230676300022,37.231113587],[74.91266727700022,37.238994243000135],[74.92372603400017,37.255194805000045],[74.93292443900006,37.272506409000144],[74.95152795400011,37.281291403000026],[74.97540246600008,37.28428863500015],[75.06842004400008,37.3121422330001],[75.0771016840001,37.32420867899999],[75.07958215300019,37.36123484300005],[75.0917777920001,37.37844309500004],[75.11523889200006,37.38779652900016],[75.16412479700008,37.40063812300015],[75.13249882000015,37.41849233],[75.10397343000012,37.44060984300002],[75.0534338790001,37.49383656800008],[75.03586389200021,37.5063939410001],[74.9452234300002,37.548561910000146],[74.9150443930001,37.57073110000009],[74.8918933520001,37.59920481400012],[74.88217818200005,37.63442230300008],[74.88610559100002,37.65346506800016],[74.8970609950002,37.66757273400018],[74.91091027900009,37.680233460000025],[74.92362268100013,37.695322978000135],[74.9269299730001,37.70359120700009],[74.92879032400005,37.71242787700008],[74.93189091000008,37.72157460600006],[74.93860884700008,37.730824687000066],[74.95442183500009,37.747722880000154],[74.9617598880001,37.75808400500007],[74.96517053300012,37.767463278000136],[74.96144982900009,37.7854725150001],[74.94925419100011,37.79531687399999],[74.8984045820001,37.81758941600005],[74.89116988100008,37.82304128000011],[74.88610559100002,37.83056020200017],[74.88321171100003,37.84386688300019],[74.88734582500015,37.848931173000054],[74.89458052600011,37.852109274000114],[74.91163374800007,37.87376169900001],[74.91370080600021,37.88084137000014],[74.90522587100023,37.88693918900019],[74.89396040800008,37.89226186200012],[74.89075647000018,37.897713725000116],[74.89116988100008,37.904250794000106],[74.88879276500009,37.93091583300004],[74.89282352800015,37.99401275700008],[74.88042118300008,38.021659648000096],[74.80993453000022,38.05320811000017],[74.7907108970002,38.08144928000005],[74.77128055900002,38.19627431200006],[74.7710738530001,38.291539816000025],[74.7747945560001,38.30962656700014],[74.78430302000018,38.32567209900019],[74.8266776940001,38.363215027000095],[74.8382532140001,38.3794155880001],[74.84414432800021,38.397760722000086],[74.8443510330001,38.41724273700008],[74.83711633300013,38.44574229000004],[74.83577274600006,38.455173238000086],[74.83287886600007,38.46364817300018],[74.8261609290001,38.4696426390001],[74.80848759000011,38.47765248600008],[74.80125289000009,38.48282013],[74.79226119000006,38.493775534000164],[74.79226119000006,38.493853048000105],[74.79215783700008,38.494008078000135],[74.79215783700008,38.494033915000145],[74.77634484900007,38.510673727000054],[74.76032515500006,38.51997548500019],[74.7420316970001,38.52307607000013],[74.71908736100008,38.52152577700012],[74.6964530850001,38.52398040800007],[74.67960656800014,38.53490997400014],[74.66431034400009,38.54901763900007],[74.64612023900023,38.56110992500008],[74.47662154100007,38.61206288700011],[74.33420129400005,38.66699493400013],[74.3134273680001,38.66921702100014],[74.24376753700018,38.65020009400017],[74.22144331900014,38.64970916800006],[74.20201298100008,38.65231882700014],[74.1404146730001,38.66921702100014],[74.12336145000009,38.669475403000106],[74.10909875500013,38.662292379000164],[74.09504276600009,38.64575592000007],[74.09266565000016,38.63769439800008],[74.0928723550002,38.628754375000035],[74.09142541500009,38.62043446900019],[74.0843974200001,38.61402659100004],[74.04491662600017,38.60345876100017],[74.0372685140002,38.59847198600012],[74.0380953370002,38.57922251399999],[74.05080773900008,38.562660217000186],[74.05876591000006,38.54702809700014],[74.04553674300016,38.530414124000046],[74.02889693200021,38.52723602400006],[73.93288212100006,38.52966481500012],[73.9172758390001,38.537080384000134],[73.88709680100007,38.559042867000116],[73.86973352100007,38.5667943320001],[73.83356001800016,38.57795644200014],[73.8164034430001,38.586586406],[73.79738651500011,38.6028386440001],[73.7886015220001,38.61857411800018],[73.77909305800002,38.66019948299999],[73.77227176900007,38.6746172080001],[73.73640832600003,38.7216686],[73.73268762200016,38.73717153000011],[73.73899214700006,38.781096497000036],[73.7358915610001,38.80042348300019],[73.72493615700014,38.81455698700013],[73.69579065000013,38.84011098300009],[73.68369836500013,38.854942119],[73.6808044840002,38.872977193],[73.68896936000007,38.89108978300011],[73.70292199700006,38.90703196200015],[73.717184693,38.91858164500009],[73.73992232200013,38.92692738900014],[73.78787805200014,38.927082419],[73.80958215300015,38.93266347300011],[73.82394820200014,38.94493662600014],[73.82911584500002,38.96015533500018],[73.82611861200022,38.97689849900006],[73.81599003200009,38.99377085400012],[73.80162398300016,39.001444804000116],[73.76865441900011,39.02991851900005],[73.70932987500007,39.065471904],[73.69816776600007,39.07841685000012],[73.69186324100016,39.094462382000174],[73.68297489400001,39.12874969600009],[73.67377649000011,39.14262481700017],[73.63140181500009,39.17510345400008],[73.6078373620002,39.20732371000004],[73.6022563070002,39.23577158700009],[73.61011112500015,39.26545969700013],[73.6413236900001,39.335274557000034],[73.6438041590001,39.35129425100017],[73.64256392500008,39.371758118000045],[73.63191857900007,39.42880889900012],[73.63264204900017,39.44834259000014],[73.82074426200009,39.468186341000134],[73.83831425000002,39.47567942400015],[73.84802941900007,39.489735413000076],[73.85919152800008,39.524255270000154],[73.87045699100005,39.54678619400009],[73.8830660400001,39.56120391900002],[73.8992924400002,39.571539206000104],[73.92161665900008,39.58213287400018],[73.92678430200007,39.59288157200011],[73.90425337800016,39.64647003200015],[73.89960249900011,39.68946482300005],[73.89350468000006,39.71039377900003],[73.87934533700009,39.727912089000185],[73.8599149990001,39.737162170000104],[73.84306848200006,39.74036611000018],[73.82952925700006,39.74698069200017],[73.8198140870002,39.76672109000005],[73.81857385300006,39.786048076],[73.82301802600009,39.805685120000035],[73.832009725,39.823720195000035],[73.84410201000011,39.838086243000035],[73.87293746000014,39.85684478800012],[73.88068892400017,39.86500966400014],[73.88544315600015,39.87653350800017],[73.89319462100016,39.91813303600016],[73.90756066900016,39.93787343400014],[73.92730106600013,39.953324687000034],[73.94404423100016,39.970067851000074],[73.94972863700009,39.99368398100002],[73.95210575300004,40.00825673400006],[73.95789351400005,40.021434225000135],[73.9663684490001,40.03326812800016],[73.97670373600013,40.043603414000174],[74.00398889100003,40.060811666000134],[74.06951460800016,40.06778798500012],[74.10124393700008,40.078846741000135],[74.13286991400017,40.09533152300013],[74.1675964760001,40.10639027900014],[74.20314986200017,40.10985260000017],[74.23787642400012,40.10390981100015],[74.27229292800016,40.09383290600012],[74.30288537600009,40.090060527],[74.33378788300016,40.0937295530001],[74.36985803300014,40.10582183900008],[74.47662154100007,40.17243276000006],[74.56540165200008,40.24695017600011],[74.59868127500013,40.26617380800006],[74.63764530500012,40.28198679700013],[74.65438846900005,40.291546936000046],[74.70575484200006,40.33128611300013],[74.72466841600007,40.337538961000135],[74.74668257600015,40.33650543200015],[74.83091516100015,40.319917298000135],[74.86212772600012,40.32617014600005],[74.85385949700017,40.35882965100002],[74.84166385900008,40.3720588180001],[74.79463830600017,40.40554514600002],[74.7874036050001,40.42073801700003],[74.79463830600017,40.44073679600017],[74.80704064900007,40.461769104],[74.81510217300016,40.48011423800007],[74.8160323490001,40.48367991100004],[74.82006311000006,40.493963521000055],[74.83231214200006,40.508116118000046],[74.83535933500016,40.51163686100013],[74.85644331900008,40.51318715400005],[74.87918094900007,40.50507395400014],[74.96610070800008,40.45928863500002],[75.00237756300012,40.44729970300015],[75.0390678310001,40.441098531000144],[75.06438928300005,40.443837382000126],[75.1131718340001,40.46078725200012],[75.1380798750001,40.46388783800016],[75.15658003700011,40.4581517540001],[75.17528690600008,40.44812652600008],[75.19389042200007,40.44125356100001],[75.21249393800011,40.44471588200015],[75.22014204900009,40.452984111000106],[75.22396610500002,40.46244089800017],[75.22923710200004,40.47034739200002],[75.24153609300012,40.47406809500005],[75.2533183190001,40.475980124000145],[75.26324019400008,40.480165915],[75.48183150200012,40.61411122700018],[75.52379276600018,40.633179830000145],[75.5598629150002,40.63286977200009],[75.58766483600007,40.6119408170001],[75.60564823400014,40.56941111300012],[75.61081587700002,40.51287709600017],[75.61794722500005,40.493963521000055],[75.62900598200011,40.48130279500002],[75.65722131300006,40.46109731000011],[75.6669364830001,40.450245260000074],[75.66931359800006,40.432365214000086],[75.65959842900011,40.419084371000096],[75.64636926200009,40.40533844000005],[75.63830774000022,40.38611480800013],[75.64016809100022,40.36730458600012],[75.6562911380001,40.32306956000009],[75.66486942600014,40.30570627900009],[75.68181929600021,40.291701966000076],[75.70445357300017,40.29314890600007],[75.7505489500002,40.30834177700011],[75.77204634600017,40.31015045200009],[75.79375044800021,40.30891021800014],[75.85855269300006,40.29635284500013],[75.8804635010001,40.295267639000045],[75.90185754400014,40.29888499000013],[75.92149458900016,40.30911692400012],[75.93803104600013,40.32622182200005],[75.94929650900009,40.343068339000055],[75.96242232300008,40.3573310340001],[76.0516158450001,40.39019724500003],[76.07611047400005,40.391954244000104],[76.09523075400008,40.38735504200015],[76.13254113800011,40.371542053000084],[76.15135135900019,40.36813140900013],[76.18504439300008,40.38420277900012],[76.2154301350001,40.416552226000086],[76.2441622310001,40.44120188400011],[76.27341109200009,40.43412221300018],[76.28333296800017,40.417275696],[76.2993526610002,40.35567738900006],[76.31351200400016,40.34332672100011],[76.33015181500011,40.34808095300009],[76.36198449700007,40.37190378800007],[76.44911096200022,40.41551869700011],[76.47649947100015,40.436137594000044],[76.49892704300007,40.46461130800016],[76.53117313600008,40.53499460900018],[76.55639123500006,40.565690410000045],[76.60941125500008,40.597109680000145],[76.62078007100015,40.61132069900013],[76.6241907140001,40.62754709900004],[76.63080529800017,40.728884583000145],[76.64785852100012,40.76485138000014],[76.67421350100008,40.795443828000046],[76.70728641800017,40.81761301700008],[76.74687056500014,40.834459534000146],[76.76247684700016,40.84701690700017],[76.77084843000014,40.867119039000116],[76.76836796100017,40.88701446500012],[76.76092655500022,40.90659983300004],[76.7574125570001,40.925771790000155],[76.76681766800002,40.94468536400011],[76.78397424300007,40.95713938400009],[76.82087121600014,40.977809957000105],[76.83492720500013,40.993519592000084],[76.86097212800021,41.013208313000014],[76.90014286300006,41.02576568600013],[77.0077331950001,41.04421417300013],[77.0350183510001,41.040338440000184],[77.08855513500006,41.01956451500014],[77.11883752500009,41.01165802100009],[77.24317102100017,41.00566355400015],[77.30115197800009,41.01930613200007],[77.33298466000015,41.02064971900013],[77.38879520600014,41.01165802100009],[77.44522587100008,40.993674622000114],[77.47488814300013,40.98204742500015],[77.50351688700017,40.98106557199999],[77.58072147700008,40.99770538300011],[77.63177779200007,40.99579335500009],[77.65027795400007,40.99713694300006],[77.66557417800001,41.001271058000086],[77.79755578600012,41.05470448800018],[77.8310421140001,41.06297271800004],[77.86669885300009,41.064057922000025],[77.99764693200004,41.04979522700016],[78.0365076100002,41.036100973000046],[78.05717818200004,41.03434397400015],[78.07495487500009,41.039511617000144],[78.17603397600013,41.105502422000185],[78.19050337700017,41.11774973600002],[78.20445601400016,41.133717753000056],[78.23133511000006,41.17285589600005],[78.2503446860002,41.20053538000012],[78.2753560800002,41.22885406500002],[78.29158247900014,41.240791321000145],[78.33147668500007,41.258723043000124],[78.34946008300008,41.270401917000086],[78.35969201700001,41.28745513900013],[78.35690148900008,41.305541891000146],[78.33933150300018,41.34404083200012],[78.34346561700013,41.36202423100009],[78.3598987230001,41.377527161],[78.37767541600013,41.38662221300008],[78.41756962100007,41.40047149700014],[78.51038049400009,41.454421692],[78.58396773300015,41.46599721300005],[78.61921106000013,41.478089499000035],[78.62913293500006,41.48795969600012],[78.63740116400018,41.51286773700018],[78.64504927600015,41.52371978800012],[78.65827844200007,41.532453105000094],[78.67212772700012,41.53844757100004],[78.80731327300006,41.57844513000002],[78.89743697200007,41.626271668000086],[78.91583378100015,41.633170472000145],[78.97619185400006,41.641800435],[79.08874312300011,41.702546082000126],[79.12791385900007,41.71430247000002],[79.17452600100015,41.72262237500017],[79.19592004400013,41.729521179000145],[79.21752079300019,41.74122589200012],[79.26485640400008,41.774505513000165],[79.2823230390002,41.7834972130001],[79.30413049300014,41.787553813000116],[79.36738244600022,41.77238678],[79.39084354700012,41.77269683800007],[79.41099735600008,41.77858795200008],[79.48985559100012,41.81925730500002],[79.55465783700012,41.837602437000115],[79.6109851480002,41.867626445000084],[79.65573693800016,41.87584299800001],[79.70296919800008,41.874938660000154],[79.74751428300013,41.87974456800008],[79.78327437300001,41.90509185800015],[79.79257613100006,41.92281687400008],[79.8038415930001,41.959998068000075],[79.81283329300005,41.97761973100016],[79.82678592900007,41.99224416100013],[79.8429089770001,42.00183013900012],[79.87949589000007,42.013198955000014],[79.93086226400013,42.02327585900015],[80.1819063720002,42.02097625800003],[80.23120568900006,42.033688660000095],[80.25756066900007,42.065262960000084],[80.25652714100013,42.08435740100005],[80.24743208800007,42.09841339100008],[80.23513309800009,42.11094492600007],[80.22459110500013,42.125569357000145],[80.21983687300022,42.14187327100008],[80.21652958200016,42.17440358500012],[80.21032841000006,42.18951894100003],[80.24908573500008,42.204892680000015],[80.26045454900006,42.21649403900007],[80.26841272000016,42.2379655970001],[80.2494991460002,42.309950867000154],[80.23554650900022,42.32457529700004],[80.2255212810002,42.33901886100015],[80.21869999200013,42.35493520100009],[80.1961690680001,42.4345944220001],[80.19472212700012,42.44629913400008],[80.20629764800017,42.46596201600015],[80.21208540900014,42.47875193300003],[80.21053511600022,42.49084421900001],[80.20009647600008,42.508388367000165],[80.17374149600012,42.536913758000125],[80.1623726810002,42.55239084900002],[80.15348433400013,42.59153574700015],[80.14542281100015,42.607116191],[80.14004846200007,42.6229550180001],[80.14376916500007,42.644762472000124],[80.15245080500014,42.66036875500008],[80.18893436700014,42.70158070900005],[80.20536747200012,42.73108795200007],[80.227484986,42.79098093700004],[80.24825891100008,42.816199036000015],[80.26489872300007,42.823666280000126],[80.28174524000016,42.82273610500009],[80.31678186100007,42.81560475700006],[80.33393843600007,42.81707753600013],[80.38168746000022,42.83141774600013],[80.40049768100012,42.84301910400007],[80.4761519780001,42.86389638300007],[80.52669152900009,42.86839223300008],[80.54860233600007,42.878469136000106],[80.55449344900009,42.898933004000085],[80.54291792800021,42.916658021],[80.52193729700011,42.925443014000095],[80.4761519780001,42.930274760000096],[80.4077323810001,42.95469187400012],[80.37383264200015,42.9751815800001],[80.35512577400019,43.00058054600002],[80.36814823400007,43.028459982000165],[80.41021285000008,43.04866546700008],[80.49785607900017,43.076183166000035],[80.57588749200006,43.11941050200009],[80.61846887200007,43.13426747700011],[80.66001672300015,43.132820536000125],[80.71076298000011,43.104786072000124],[80.73153690600006,43.10109120700009],[80.75344771400013,43.104036764000014],[80.77339481600015,43.11292511000012],[80.78786421700008,43.12804046700013],[80.79344527200007,43.149460348000055],[80.78817427600009,43.168244731000144],[80.76522994000001,43.19994822300008],[80.75995894400009,43.2187842820001],[80.75913212100008,43.23824045900007],[80.75582482900009,43.25761912000006],[80.74848677600019,43.27516326900012],[80.73546431500014,43.288883362000135],[80.6959835210001,43.30327524900004],[80.6584664310002,43.31063914000005],[80.6428601480001,43.32621958500009],[80.69422652200015,43.394716696],[80.71014286300007,43.42585174600005],[80.71272668500015,43.45887298600003],[80.59443933150018,43.684556885000134],[80.4761519780001,43.91024078400007],[80.43987512200013,43.94899810800008],[80.42313195800008,43.97214914900009],[80.41269331900011,43.99323313400011],[80.41269331900011,43.993336487000036],[80.41238326000004,44.01359364900004],[80.41000614400009,44.031938782000125],[80.40380497300012,44.048940328000135],[80.39233280400012,44.06547678700003],[80.35977665200006,44.08929962200001],[80.34510054500018,44.10309722900014],[80.33889937400008,44.121494039000154],[80.34603072100006,44.158907776000135],[80.37321252500013,44.2309964000001],[80.37300581900016,44.27021881200007],[80.33290490700008,44.41739329100006],[80.3304244390001,44.45305002900015],[80.33786584500008,44.494029440000176],[80.36453088400005,44.56968373700012],[80.37993046100016,44.59133616200002],[80.38375451700009,44.60280833000003],[80.37724328600021,44.615314026000036],[80.35915653500008,44.63257395400002],[80.35450565600014,44.64177236000002],[80.35584924300011,44.65288279300013],[80.37631311000004,44.67127960300005],[80.41114302600012,44.682803447000154],[80.4761519780001,44.69365549800004],[80.4919649660001,44.70171702100011],[80.49744266800003,44.7149461870001],[80.49227502400018,44.72796864800013],[80.4761519780001,44.73541005400006],[80.31450809800018,44.780316874000064],[80.26324507600006,44.80935902900016],[80.24474491400011,44.815973613000054],[80.21828658100006,44.81809234600002],[80.03938277200021,44.79049713200014],[79.99173710100015,44.79364939400009],[79.86864384000015,44.849356588000134],[79.84301232900005,44.87348948200018],[79.85820520000019,44.903720195000105],[79.87815230300012,44.91472727500008],[79.92466109300003,44.931677144],[80.02377649000007,44.99322377600011],[80.02377649000007,44.993275452000134],[80.06170699100008,45.01895863900001],[80.1033581950002,45.032187805000106],[80.14759322100022,45.03446156900012],[80.21901005100018,45.02603831000012],[80.29053023300017,45.04624379500002],[80.3650476490001,45.04319488599999],[80.3900590410001,45.04577870700008],[80.40638879400014,45.056630758000054],[80.42509566300012,45.0921324670001],[80.44535282400014,45.104224752000064],[80.46757369000008,45.10629181000002],[80.53682010900016,45.10107249000011],[80.69712040200014,45.14365387],[80.7456962480002,45.14427398800013],[80.82755171700013,45.125773824000035],[80.8538550220002,45.126497295000135],[80.97601810700009,45.16106882800004],[81.02190677900009,45.161637268000064],[81.0625244550001,45.172230937000144],[81.14417321800008,45.204683736000064],[81.5420300700001,45.29330881800014],[81.62259362800009,45.33433990500002],[81.66522668500008,45.3479824830001],[81.70475915500012,45.339869283],[81.73927901200008,45.338060608000106],[81.76516890500014,45.30772654300007],[81.78144698100007,45.266643779],[81.78733809400015,45.23233062800007],[81.78847497600006,45.20912791000007],[81.79364261900017,45.195640361000116],[81.80728519700008,45.18871571900003],[81.87534305800013,45.18106760700005],[81.89100101800008,45.173729554000076],[81.91012129800012,45.15801991799999],[81.95011885600016,45.144480693000034],[82.00045170100006,45.15352406900017],[82.1917578530001,45.222202047000124],[82.24529463800016,45.23181386300014],[82.29459395300009,45.22819651300016],[82.34182621300008,45.204890442000035],[82.42745406100008,45.137245993000064],[82.47582320100011,45.115696920000104],[82.53974694900009,45.12365509100006],[82.58522220800015,45.17683014],[82.61457442300011,45.2485570270001],[82.63384973100003,45.33935251900006],[82.63638187700022,45.37888499000008],[82.63198938000002,45.415833639000034],[82.61571130400014,45.435419007000164],[82.51303023300012,45.4657530730001],[82.36265181500008,45.48120432600011],[82.3277702230001,45.493296611000076],[82.32761519400005,45.493348288],[82.32746016500019,45.493348288],[82.29149336800006,45.53319081700012],[82.2971374260002,45.55454491100012],[82.3046191820001,45.582851868000105],[82.3360384530001,45.63514841700014],[82.37221195500015,45.73416046200013],[82.44750451700011,45.82542104100004],[82.47582320100011,45.8731700650001],[82.48894901500009,45.90169545500005],[82.51587243700007,45.993111064000104],[82.51587243700007,45.99316274000002],[82.54186568200006,46.13150054900007],[82.56827233900005,46.19650950100005],[82.60785648600007,46.2552139290001],[82.67436405500015,46.331126607000115],[82.6892985440002,46.36254587800006],[82.70128747600009,46.416857809000035],[82.70785038300008,46.434169414000124],[82.74743452900012,46.493338928000114],[82.83895349200006,46.73244578100015],[82.9855078530002,46.942510478000045],[82.9918123780001,46.95873687800015],[82.99336267100014,46.97560923300013],[82.98835005700008,46.99299835200016],[82.9855078530002,47.01253204300018],[82.99015873200008,47.03216908800003],[83.00545495600014,47.06978953100004],[83.00628177900015,47.08061574300008],[82.99946049000019,47.100046082000134],[82.99822025600022,47.11025217700002],[83.00132084200018,47.12136261000013],[83.01217289300014,47.14265330000005],[83.01517012600007,47.154383851000105],[83.0135164800001,47.19458811500014],[83.02147465000004,47.20590525400003],[83.04689945500016,47.21466440800002],[83.07160079000019,47.218514303000134],[83.09909265200015,47.21970286100015],[83.12637780800017,47.21758412700008],[83.15035567200019,47.211537985000135],[83.20192875200009,47.18035125800016],[83.22197920800012,47.171902161000084],[83.31416996300018,47.157949524000074],[83.35339237500013,47.14497874000007],[83.52449304200016,47.06710235700011],[83.90534834800022,46.97395558699999],[83.999192749,46.974317322],[84.06962772600016,46.96442128500011],[84.09396732600007,46.9674185190001],[84.15783939700012,46.99299835200016],[84.1581494550002,46.993101705000086],[84.15871789600007,46.99315338200002],[84.15907963100008,46.993256735000145],[84.26584314000016,47.000129700000016],[84.38862634300014,46.99299835200016],[84.38934981300022,46.99315338200002],[84.40588627100013,46.99423858700003],[84.42180261300015,46.993101705000086],[84.47575280800012,46.975247498000144],[84.52102136300019,46.96979563400007],[84.61600264500012,46.98628041700014],[84.66354496300012,46.98385162400008],[84.69920170100013,46.97023488399999],[84.73165450100012,46.94775563600008],[84.75160160300007,46.917990011000185],[84.7495862230002,46.88246246400003],[84.73857914200013,46.866158549000104],[84.72441980000004,46.85026804699999],[84.71553145400004,46.835178528000185],[84.7197689210001,46.82130340600012],[84.73961267100012,46.814766337000044],[84.7671045330001,46.81807362900004],[84.8401750090002,46.83913177500006],[84.91603601100022,46.85055226600015],[84.93680993700016,46.8610167450001],[84.95939253800012,46.89088572300012],[84.97577396700015,46.901996155000134],[84.99039839700006,46.907680563],[85.03535689300006,46.91496694000007],[85.04822432500006,46.92070302400013],[85.0771631270002,46.94331146300006],[85.1459961350001,46.978089702000105],[85.16739017800015,46.99299835200016],[85.19152307100008,47.0232807410001],[85.20511397300017,47.03371938100004],[85.22583622300013,47.04157419900015],[85.24614506000015,47.04441640200004],[85.30371260600006,47.039403789000076],[85.43212854000015,47.0531238810001],[85.49863610900009,47.05183197100014],[85.50576745700008,47.06389841700003],[85.50809289600008,47.0825277710001],[85.51687788900007,47.100304464000125],[85.5297453200001,47.114282939000034],[85.53863366700008,47.12792551700012],[85.54426639800013,47.14322174100009],[85.54710860200011,47.162031963000096],[85.55682377100007,47.178749288000134],[85.57749434400014,47.18916208900007],[85.60162723800013,47.194433085000085],[85.64730920400021,47.19789540700005],[85.65965987200016,47.20652537000008],[85.66441410300015,47.22130483100001],[85.66839318900004,47.241872051000186],[85.678986857,47.27489329000015],[85.678986857,47.29070627900016],[85.67020186400006,47.309051412000045],[85.66720463000009,47.326052959000044],[85.6740259200001,47.344294740000024],[85.67888350400018,47.36382843100004],[85.6703568930001,47.384343974],[85.60023197500001,47.463202210000034],[85.58457401500019,47.49294199700002],[85.58457401500019,47.49309702600005],[85.57997481300006,47.52376698900018],[85.59578780100006,47.590894674000126],[85.59542606600021,47.62407094400014],[85.51537927200016,47.920280253000115],[85.51780806500012,47.944645692000115],[85.5287117930001,47.966608175000104],[85.54710860200011,47.99298899400016],[85.56178470900008,48.03066111300002],[85.58638269000008,48.14124867700015],[85.7186743570002,48.358832296000074],[85.74740645400013,48.390096538000144],[85.78368330900017,48.40758901000011],[86.00599532100007,48.42955149400008],[86.19203047700013,48.41823435500011],[86.24670414200008,48.43735463500012],[86.28628829000016,48.469704082000085],[86.30737227400007,48.483088277000135],[86.33383060700007,48.49040049300011],[86.43062056500017,48.4858788050001],[86.54642745000008,48.51722056100003],[86.56508264200008,48.52732330300016],[86.57515954600015,48.53982900100006],[86.59355635600011,48.57414215100009],[86.6055452890001,48.59011016900003],[86.62109989400018,48.60315846800016],[86.66900394700022,48.634241842],[86.74450321400016,48.70353993700002],[86.75199629700009,48.715425517000156],[86.75189294500015,48.72917144900002],[86.74052413000005,48.77170115200006],[86.73918054200007,48.78353505500017],[86.74610518400019,48.79283681200009],[86.76465702300013,48.80761627300002],[86.78946171100007,48.83913889600007],[86.77370039900009,48.85851755800006],[86.74186771700013,48.87872304400004],[86.71804488100021,48.9125194300001],[86.7115853280001,48.93706573499998],[86.70941491700009,48.95422231100004],[86.71385909,48.9699319460001],[86.72750166900013,48.99034413700014],[86.74352136300014,49.007707419000084],[86.76005782100016,49.02010976200013],[86.798918498,49.04222727500014],[86.81617842600022,49.05845367500016],[86.83819258600008,49.093852030000086],[86.85948327600008,49.105324199],[86.88733687400004,49.106822816000104],[86.94655806500006,49.09447214800015],[86.9754451900001,49.0924050900001],[87.11631514500006,49.12976715100013],[87.16199711100009,49.122790832000064],[87.20065108200018,49.108734843000136],[87.32379602100009,49.085273743000144],[87.3622949630001,49.07509348500018],[87.40043217000006,49.071011048000074],[87.43836267100008,49.07468007400017],[87.47556970200017,49.08759918300008],[87.48177087400009,49.09162994399999],[87.48714522300011,49.09695261700013],[87.49158939600014,49.10320546500013],[87.50006433100012,49.11917348200016],[87.50605879700007,49.120878805000025],[87.51401696800022,49.11963857000008],[87.52528243000009,49.119793600000136],[87.71638187700009,49.15886098200006],[87.81632409700015,49.16583730100014],[87.81808109500011,49.154003398000114],[87.83244714400016,49.12387603800015],[87.83554773000017,49.10072499700006],[87.82965661700008,49.085997213000056],[87.82107832900007,49.071837870000095],[87.81596236200008,49.05059885700002],[87.8219051510001,49.0287397260001],[87.83782149300012,49.02041982000004],[87.85694177200011,49.01561391300011],[87.87223799700016,49.004090068],[87.87259973200017,48.96801991799999],[87.83585778800008,48.94590240500018],[87.75689619900012,48.920374247000055],[87.7436153570002,48.90518137700003],[87.73570886300014,48.88673289000012],[87.73787927300006,48.869369609],[87.75472579000021,48.85727732300002],[87.77673995000012,48.851179505000125],[87.7874886480001,48.8465803020001],[87.79606693600007,48.83975901300015],[87.80051110900015,48.830302226000164],[87.80216475400012,48.80957997700012],[87.805885458,48.80058827800009],[87.82107832900007,48.78828928700006],[87.84169722500016,48.77934926400003],[87.90758467600008,48.758833720000055],[87.95243982000012,48.76110748300009],[87.97548750900009,48.75599151600009],[88.03377852400016,48.72911977200009],[88.0594100340002,48.70808746400017],[88.06385420800021,48.68261098200004],[88.0550175380001,48.67341257800013],[88.0101623940002,48.65341379900012],[88.00339278200006,48.645998230000096],[87.99781172700008,48.63517201800006],[87.98964685000007,48.62416493700006],[87.97548750900009,48.61651682600008],[87.94282800400006,48.59948944100016],[87.95181970200005,48.575201518000156],[87.98303226800007,48.55233469700014],[88.0166219490001,48.539803162000126],[88.02830082200015,48.5396222940001],[88.0519686280002,48.543187968000055],[88.06251062000015,48.54287791000008],[88.07181237900008,48.538795472000075],[88.08824548300007,48.52608306900011],[88.1157373460002,48.51649709100012],[88.14829349800007,48.49936635300015],[88.16596683800017,48.493733622000136],[88.183485149,48.492751770000055],[88.21784997600017,48.49499969500006],[88.23562666800008,48.49319102],[88.30487308800011,48.46900645],[88.33210656800011,48.45399444600004],[88.38342126500007,48.40867421500012],[88.41670088800018,48.39410146100006],[88.4396452240002,48.39371388800004],[88.4591272380002,48.39813222300013],[88.47912601700014,48.400147604],[88.50269047100008,48.392551168000054],[88.56511560100009,48.34299347000017],[88.57297041800015,48.32532013000015],[88.55875940000006,48.28808726100006],[88.56123986800017,48.26826934900008],[88.56883630400014,48.249200745000095],[88.57348718300008,48.229718730000094],[88.58077356000015,48.21199371400017],[88.59622481300008,48.197679342000086],[88.63580896000022,48.17584604900007],[88.65544600500007,48.17116933199999],[88.68066410300011,48.173029683],[88.70918949400007,48.16636342400007],[88.77533532700014,48.12055226700012],[88.80541101100019,48.10595367500015],[88.83145593300017,48.10515269000014],[88.88928186100011,48.110914612000116],[88.91682539900009,48.10595367500015],[88.93232832800018,48.09696197500004],[89.04555139200014,47.99298899400016],[89.04580977400022,47.99298899400016],[89.04591312600014,47.99288564100014],[89.07469690000008,47.9842556760001],[89.1671460370001,47.98399729500012],[89.2187191170001,47.97696930000002],[89.24398889200009,47.98022491500011],[89.26858687400014,47.99314402300002],[89.2856917720002,48.00559804300009],[89.33426761900009,48.03236643500015],[89.354266399,48.038774313000104],[89.36920088700018,48.03815419500013],[89.40919844600015,48.023116354000145],[89.4254248450001,48.02164357600007],[89.47534428000014,48.02296132500011],[89.50366296400014,48.02998931900011],[89.54180017100006,48.03102284800009],[89.57187585500006,48.02045501700003],[89.57621667500021,47.99288564100014],[89.57564823400017,47.97603912400017],[89.58324467000014,47.96203481100015],[89.59657718900004,47.952578024],[89.61342370600008,47.94958079100017],[89.62737634300007,47.94394806000004],[89.6361613370001,47.92958201100005],[89.64391280100014,47.91276133300006],[89.6552816170001,47.899816386000154],[89.67202478100009,47.89408030200009],[89.70726810700013,47.88904185100013],[89.72339115400021,47.878163961000084],[89.73114261900011,47.86475392700014],[89.74023767100019,47.83615102100005],[89.7512964270002,47.82431711900013],[89.78354252100003,47.81850352000007],[89.88906579600014,47.82431711900013],[89.9213635660001,47.83209442100015],[89.93443770300004,47.844264222000064],[89.93764164300015,47.85754506400015],[89.9390369070002,47.870851746000184],[89.94668501800017,47.88317657500012],[89.96316980000009,47.88865427700004],[90.00249556500015,47.88038604800009],[90.0446118580002,47.87976593100002],[90.05985640500015,47.86881052700012],[90.06435225400017,47.85062042200009],[90.05598067200017,47.82891632100008],[90.05215661700007,47.81070037900004],[90.05877119900005,47.78951304100009],[90.07065677900019,47.769850159000136],[90.08285241700011,47.7561042280001],[90.11995609500016,47.730136821000045],[90.16341597500015,47.71000885000008],[90.20971805800016,47.69574615600011],[90.30211552000017,47.678512065000014],[90.32350956200015,47.67016632100014],[90.34480025200016,47.65864247700013],[90.34955448400014,47.64779042600016],[90.33746219900016,47.636990051000126],[90.32743697200006,47.623037415000155],[90.33849572800014,47.60278025400005],[90.35203495300001,47.58831085200002],[90.38159387300007,47.53839141900006],[90.39461633300019,47.52467132600013],[90.42727583800016,47.506558736],[90.44122847500009,47.493045350000116],[90.44360559100019,47.46278879800012],[90.44174523900018,47.43054270500015],[90.44815311700013,47.40403269500014],[90.47523156700012,47.39108774900004],[90.48722050000006,47.37819447900013],[90.49001102800011,47.36183888800018],[90.4855668540001,47.344914856000074],[90.47523156700012,47.330290426000104],[90.46851363200008,47.32352081300017],[90.46634322100007,47.316337789000116],[90.46872033700006,47.308922221],[90.71211633400017,47.01470245400016],[90.7423987230001,46.991861471000064],[90.78187951700014,46.98633209200015],[90.80554732300007,46.986848857],[90.82818160000008,46.98230133100015],[90.84947229100007,46.97320627900008],[90.86983280400014,46.9603388470001],[90.88512902800008,46.94473256400006],[90.8937073160001,46.928170268000045],[90.90032190000008,46.9106777950001],[90.91014042200018,46.89238433800013],[90.91768518100011,46.88540802000013],[90.92585005700002,46.880653789000135],[90.93277469900013,46.87478851400006],[90.93649540200013,46.86442738900003],[90.93442834500016,46.856830953000085],[90.92274947100012,46.84158640600013],[90.91995894400004,46.83362823500006],[90.92533329300008,46.8131385300001],[90.93938928200012,46.79884999700012],[90.97514937400015,46.7741486610001],[91.0048116450001,46.740429790000135],[91.0155603430002,46.70319692000011],[91.01429189300015,46.689843915],[91.01173628700009,46.662940979],[90.99809371000018,46.62025624699999],[90.99592329900005,46.59462473600003],[91.01132287600015,46.58532297800009],[91.03251021300011,46.57992279100013],[91.04749637900007,46.56640940400014],[91.04532596900012,46.5510873410001],[91.03561079900007,46.529073181],[91.0141134030001,46.49318390000015],[91.00140100200016,46.47504547100014],[90.98610477700011,46.43525461900013],[90.97514937400015,46.416547750000134],[90.93577193200022,46.34386484800008],[90.90600630700007,46.31730316200016],[90.89618778500008,46.30203277600013],[90.89918501800011,46.2816722620001],[90.9487943930001,46.168294170000095],[90.97514937400015,46.140543925000046],[90.99592329900005,46.11372385700015],[91.00543176300008,46.06809356700016],[91.00243452900006,46.021843160000095],[90.98620813000011,45.993111064000104],[90.97514937400015,45.98732330400013],[90.91923547300016,45.950064596000104],[90.71077274600012,45.752195537000134],[90.69661340400013,45.7300263470001],[90.65113814300011,45.493141581000046],[90.67232548100004,45.4756749480001],[90.7379545490002,45.44172353099999],[90.75325077400007,45.420949606000036],[90.76255253200006,45.391597392000065],[90.7780554600001,45.36529408800011],[90.79045780500014,45.33769887300012],[90.7909745690001,45.30431589800004],[90.79655562400009,45.29284373000003],[90.83717329900006,45.280027975000124],[90.85443322800015,45.27062286400008],[90.86662886600007,45.25356964200015],[90.86590539600016,45.24256256100007],[90.8603243410001,45.23165883500009],[90.8576371660001,45.215070699000094],[90.87324344900006,45.186183574000054],[90.90548954300019,45.18597686800008],[90.97514937400015,45.21486399400014],[91.01132287600015,45.21894643200015],[91.05679813700013,45.21755116800007],[91.10134322100012,45.210678203],[91.13503625500019,45.197862447000105],[91.14774865700022,45.18721710300003],[91.16976281700013,45.163549296],[91.18433557100016,45.15383412700005],[91.2491378180001,45.129701233],[91.3467029220001,45.11373321600014],[91.36654667100017,45.11424998000011],[91.38359989500012,45.12422353100011],[91.39972294100019,45.13688425700015],[91.41687951700007,45.14566925100003],[91.4384802650002,45.146134339000135],[91.45605025300019,45.13745269800001],[91.52178267400004,45.0774563610001],[91.53397831200007,45.07110015900015],[91.54328007000018,45.071823629000065],[91.55227176900016,45.075337626000035],[91.56395064300014,45.07714630100013],[91.66296268700009,45.059524638000035],[91.68363326000022,45.06117828400009],[91.72466434700019,45.07073842400008],[91.74698856600006,45.07244374600005],[91.91907108600012,45.065570781000176],[91.97508833800012,45.07337392200019],[92.00940149000014,45.07621612600014],[92.04299117000008,45.07482086200018],[92.07565067500016,45.06887807300008],[92.10841353400016,45.05818105100014],[92.19367964700021,45.014514465],[92.21889774600018,45.0101219690001],[92.26788700400019,45.01952708000006],[92.28535363800019,45.01952708000006],[92.3310356040001,45.00784820600008],[92.34736535700009,45.00764150000013],[92.39645796800019,45.01311920200011],[92.41382124900022,45.01125885000012],[92.45898645000008,44.99792633100019],[92.4751094980002,44.99746124300016],[92.57205448400012,45.0130158490001],[92.63851037600008,45.01559967100009],[92.7527152920002,45.03797556600007],[92.79891402200016,45.03316965700016],[92.8142102460001,45.03389312800006],[92.84759322200009,45.03911244800018],[92.86102909400013,45.037872213000135],[92.91621952400013,45.0145661420001],[92.94505497300017,45.00583282500004],[92.97492395000009,45.00469594300013],[92.9944576410002,45.00836497000013],[93.01388798100018,45.00929514600006],[93.0331116140002,45.00764150000013],[93.05243859900006,45.00345570899999],[93.07594097800009,45.005192476],[93.1391516520001,45.00986358700014],[93.16571333800013,45.00764150000013],[93.24415816300015,44.981544902000124],[93.26896285000007,44.98009796200013],[93.3172286380001,44.985885722000106],[93.34099979700008,44.98485219400013],[93.36136031100008,44.97839264],[93.39991093000006,44.96056427100014],[93.42058150300008,44.95508656800014],[93.52527795500012,44.95126251300011],[93.68826542200011,44.89105946900015],[93.71400028500008,44.87457468700008],[93.87450728300021,44.7142227180001],[93.92742395000019,44.672933248],[93.97506962100012,44.65996246400006],[94.05857873600021,44.65128082300011],[94.10374393700008,44.651642558],[94.14901249200008,44.66719716400003],[94.16534224500006,44.66585357700016],[94.18187870300014,44.66084096300001],[94.19500451700011,44.654329733000125],[94.27748010200011,44.589579163000124],[94.29546350100011,44.57138905800009],[94.32192183400016,44.52803253200004],[94.33845829300017,44.51211619100009],[94.36636356600016,44.50431305000008],[94.43013228400017,44.50446807900012],[94.4603113200001,44.493305969000076],[94.5880554610001,44.43610015900005],[94.65719852700006,44.38881622399999],[94.67259810400004,44.37377838200011],[94.68396692000007,44.356621806000064],[94.69822961400021,44.343495992000086],[94.72086389200008,44.33579620400009],[94.9057621670001,44.29424835200011],[94.99381880800016,44.259418437000036],[95.03681359900011,44.254974264000126],[95.37942834500019,44.28711700500015],[95.39772180200006,44.280502422000055],[95.38924686800007,44.260762024000094],[95.35968794800007,44.23182322200013],[95.34749231000015,44.214925029000035],[95.34056766800015,44.18753652000011],[95.3271317950001,44.168312887000084],[95.32268762200007,44.158235982000136],[95.32144738800017,44.148417460000175],[95.32826867700012,44.09823964500005],[95.3187602130001,44.040723776000036],[95.31896691900008,44.017107646],[95.32754520700021,44.006669007000156],[95.42273319500006,43.988633932000155],[95.47492639200007,43.986618551000035],[95.51027307200016,43.97912546800008],[95.53528446500015,43.95767974800004],[95.58923466000013,43.869493918],[95.69248417200018,43.63054209400015],[95.8328373620001,43.408901876000144],[95.84141564900014,43.372521668000054],[95.84544641200014,43.32647796600004],[95.8549548750001,43.28454254200015],[95.87438521400011,43.24710296600007],[95.90849165900008,43.21454681400003],[96.29430790200009,42.933271994],[96.31869917800012,42.91006927500011],[96.33068811000007,42.88970876100008],[96.33719934100006,42.86648020500014],[96.3506352140001,42.740906474000056],[96.35776656100015,42.72449920700008],[96.3663399010002,42.7229226190001],[96.37926395700018,42.72054596000011],[96.47465865100011,42.73214731900008],[96.83266919250016,42.75960440550013],[97.19067973400016,42.787061492000035],[97.19327111900006,42.787260234000044],[97.52163164700008,42.75515240000005],[97.84999217500015,42.72304456600006],[98.25611301750016,42.68333315300016],[98.66223386000016,42.64362174000014],[99.06835470250016,42.60391032700015],[99.47447554500016,42.564198914000045],[99.62190342900007,42.59744260600002],[99.97155114800015,42.67628509500018],[100.01697473100015,42.67651763900015],[100.41755320866687,42.62762312166673],[100.81813168633349,42.57872860433342],[101.2187101640001,42.529834087],[101.41073978700015,42.54487192900008],[101.52494470200011,42.53745636000015],[101.63759932500008,42.515442200000095],[101.73537113500007,42.461156108000054],[101.8864730230001,42.27801483200007],[101.97421960500017,42.207889914000035],[102.03416426600015,42.184609681],[102.38060306833349,42.124578892],[102.7270418706668,42.064548103000064],[103.07348067300015,42.00451731400007],[103.10438317900011,41.9936394250001],[103.10443485600015,41.9936394250001],[103.10479659100022,41.993587748],[103.39811202050005,41.87641143800006],[103.69142745000013,41.759235128000014],[103.72098636900009,41.75556610100004],[104.11088505050023,41.813081970000056],[104.50078373200013,41.870597839000155],[104.49799320500009,41.66577830000013],[104.50491784700009,41.65655405700012],[104.60124271700013,41.645443624],[104.89233606000013,41.644771830000124],[104.91367842700006,41.63833811500016],[104.93543420400013,41.622421774000046],[104.97382979400018,41.5861449180001],[105.01480920400009,41.59614430800009],[105.20089603700009,41.74347381600013],[105.21825931800016,41.74843475400008],[105.27448327700009,41.7554627490001],[105.32595300400007,41.776701762000144],[105.34455651900011,41.781120097000056],[105.35819909700008,41.78584849100007],[105.40274418100007,41.81153167800012],[105.4738509520001,41.84034128900005],[105.8686072190001,41.99348439500007],[106.31821801850012,42.14005167650005],[106.76782881800014,42.28661895800011],[107.19511260100013,42.33745250700004],[107.62239638400008,42.38828605600007],[108.0496801670001,42.43911960500015],[108.1773551840001,42.45430898100006],[108.2347677000001,42.450071513000026],[108.31977543100018,42.432553202000165],[108.53645471300015,42.43511118600016],[108.79685225400011,42.39836924300009],[108.8285299080002,42.40004872700002],[108.8626880300001,42.40885955900002],[108.9612866620001,42.447539368000136],[108.9944629320001,42.44952891100017],[109.25341353400009,42.42593862000017],[109.28028527900008,42.42831573500003],[109.32855106700018,42.44048553500012],[109.48513065600011,42.44929636700011],[109.49009159400006,42.45128590900005],[109.49381229700006,42.45521331800001],[109.50001346900015,42.46332651800012],[109.50487105400006,42.46492848800007],[109.51034875500008,42.4647476200001],[109.51830692600007,42.467331442000116],[109.66734175700006,42.548980204000095],[109.91270145700011,42.628820293],[109.9873222250001,42.636468404000155],[110.04271936100005,42.63595164000013],[110.06018599400008,42.63835459500008],[110.07486210100015,42.643522238000074],[110.08426721200013,42.65005930600016],[110.09315555900011,42.657862447000085],[110.1056612550001,42.66667327900008],[110.13987105300012,42.68261545800003],[110.40672815000012,42.76860504100007],[110.42481490100013,42.785244853],[110.449412883,42.83733469600004],[110.47339074700014,42.85490468400003],[110.5667183840001,42.91056020200013],[110.60816288300005,42.94466664700012],[110.64102909400017,42.98779062900003],[110.6657304280001,43.037400005],[110.6800964760001,43.05765716600011],[110.79698856600007,43.14891774500002],[110.9337244060001,43.287772319000126],[110.9734119070001,43.315600078],[111.0960917560002,43.366656393000156],[111.33855757600011,43.438176575000014],[111.40139611900011,43.475512797000036],[111.42868127500012,43.48393605600013],[111.53503137200019,43.49073150600016],[111.56769087700016,43.502539572],[111.5972497970001,43.52339101200006],[111.75382938700012,43.66320160000005],[111.77263960800016,43.6692994190001],[111.84581343600021,43.66692230300004],[111.89325240100011,43.682606100000115],[111.9104089770001,43.68498321600005],[111.93335331300014,43.69663625100013],[111.945135539,43.72386973100011],[111.94792606700017,43.75696848600002],[111.94430871600011,43.786372376000095],[111.93056278500015,43.820142924],[111.83878544100006,43.938792013000025],[111.81139693300011,43.96429433200014],[111.78070113100014,43.986205139],[111.66814986200009,44.041343892],[111.63445682800008,44.06594187500015],[111.54381636600007,44.15673736600003],[111.51942508900007,44.18857004800019],[111.50371545400016,44.225725403000084],[111.49813440000017,44.2644310510001],[111.49058964100011,44.28262115500006],[111.47322635900011,44.29884755400015],[111.41059452300007,44.326081035000136],[111.39643518100016,44.34659657800002],[111.3970552980002,44.38736928300001],[111.40635705600013,44.41646311500001],[111.42413374800017,44.448037415],[111.44687137900016,44.47589101200005],[111.47084924300006,44.493305969000076],[111.47322635900011,44.49532135000014],[111.48376835200006,44.506431783000046],[111.5089864510002,44.546584371000066],[111.53017378700005,44.5706139120001],[111.53823531100008,44.58342966800008],[111.54381636600007,44.60125803600011],[111.54443648300006,44.618104553000094],[111.54009566300007,44.65221099800006],[111.54102583800014,44.66823069300001],[111.55136112500006,44.69319041000009],[111.73853316300018,44.966300354],[111.7606506760001,44.98929636700014],[111.78648889200022,45.00857167600019],[111.84333296700007,45.03952585899999],[111.86317671800005,45.046295471000136],[111.90627486200017,45.05415028900007],[111.9267387290001,45.06091990200009],[111.93852095600013,45.068981426],[111.94792606700017,45.07771474200017],[111.95826135200011,45.08453603100013],[111.97335087100006,45.087016500000104],[111.9846372120002,45.087154138000024],[112.01148807900003,45.087481588000045],[112.10760624200017,45.067379456000154],[112.37963098200018,45.07073842400008],[112.41280725100003,45.06603586900009],[112.44133264200003,45.0523932900001],[112.52391158100018,44.993275452000134],[112.56452925600003,44.94392445900003],[112.58602665200024,44.92382232700005],[112.61424198400013,44.90883616100008],[112.74849735600012,44.86527293000013],[112.97318648300015,44.82124460900009],[113.01690474400012,44.82108958000005],[113.104858032,44.79437286400018],[113.4732076420001,44.77070505800005],[113.48891727800016,44.766260885000136],[113.51713260900024,44.74951772100009],[113.53242883300018,44.74528025300005],[113.60477583900015,44.73969919900004],[113.63505822800019,44.7462621050001],[113.67247196500014,44.76817291300007],[113.73562056500012,44.81592193600012],[113.8376298420002,44.86790842700016],[113.88930627500017,44.90826772100003],[113.91380090300012,44.915450745],[113.97312544800005,44.919326477000034],[114.01705041600009,44.92728464800011],[114.05529097500008,44.9405654910001],[114.08929406800021,44.96175282800006],[114.12040327900016,44.99322377600011],[114.13921350100017,45.01916534400005],[114.1493420820001,45.030069072000046],[114.16360477700017,45.04014597600015],[114.21176721200018,45.062160136000145],[114.41888635300009,45.201479797],[114.47304325400009,45.259202373000086],[114.5022921140002,45.303230693000145],[114.51169722500018,45.325503235],[114.51944869000019,45.37092682000004],[114.52378951000017,45.38028025400008],[114.53371138500009,45.385499573000104],[114.66931034400002,45.42280995800003],[114.70331343600006,45.42715077700002],[114.7373165290001,45.42503204400005],[114.90526493300004,45.377748108],[114.93885461400022,45.37376902300012],[115.12633671100015,45.39443959600011],[115.33727990800013,45.39469797800011],[115.47298221900014,45.41278472900002],[115.63783003800002,45.44435903],[115.6673889570001,45.454280904000186],[115.6924003500001,45.468957011000086],[115.76733117700022,45.5301419070001],[115.98282190000013,45.659643046],[116.00214888500012,45.675559388000025],[116.01196740700014,45.67855662000012],[116.06333378100024,45.67333730100002],[116.07873335800016,45.67338897800012],[116.09485640500023,45.67654124000007],[116.14394901600016,45.6946279910001],[116.16989058400011,45.70909739200011],[116.23035201000008,45.769765523],[116.25164270100005,45.803251852000116],[116.24213423700016,45.826919658000136],[116.2209469000002,45.849760641000145],[116.20709761600013,45.88086985299999],[116.2131954350002,45.908155009000104],[116.35716597500019,46.10555898100013],[116.52511438000012,46.226791891000076],[116.53958378100016,46.241209616],[116.54826542200013,46.25929636700012],[116.56831587800016,46.290870666],[116.58195926300007,46.298012438],[116.60355920500015,46.309319153],[116.64521040900016,46.31846588100008],[116.70732548100014,46.324227804000074],[116.72200158700005,46.32869781500006],[116.7848401290001,46.365904847000174],[116.80458052600024,46.382906393],[116.8146057540001,46.38673044800005],[116.83165897700022,46.386368714000135],[116.95785282500012,46.36642161100003],[117.30170780500023,46.3501435350001],[117.33746789500006,46.357274882000056],[117.3530741780002,46.37949574800008],[117.3575183510002,46.44840627100011],[117.36919722500018,46.475691427000115],[117.40547408100022,46.51080556300015],[117.41250207600017,46.52462900900009],[117.4101249600001,46.53979604100011],[117.39379520700005,46.5713703410001],[117.47286014900024,46.58467702200012],[117.49177372200009,46.579095968],[117.5017989510002,46.57726145500011],[117.51006718000016,46.57847585100013],[117.55626591000014,46.60160105500001],[117.56815149000012,46.60353892000013],[117.58200077300003,46.59198923800001],[117.60752893100015,46.550544739000046],[117.62520227100006,46.535661927000106],[117.67336470600006,46.51602488300007],[117.69620568900021,46.51225250300014],[117.79759484900009,46.520262350000124],[117.81702518700014,46.52747121200018],[117.83273482300004,46.54279327400006],[117.85929650900007,46.58028452600003],[117.87831343600011,46.596381735000094],[117.90063765500017,46.607595521000135],[117.92378869700016,46.61519195600012],[117.97277795400018,46.62340850900013],[118.00554081200006,46.626974182000126],[118.08388228300016,46.668263652000135],[118.10196903500018,46.673069560000144],[118.15550581900013,46.674568176000044],[118.16904504400011,46.67849558500002],[118.20604537000017,46.7009231570001],[118.23829146400014,46.71539255800003],[118.26898726400017,46.7229373170001],[118.30081994600019,46.72484934500001],[118.33554650900024,46.72216217099999],[118.37120324800004,46.71397145700014],[118.43517867100005,46.69115631100006],[118.47279911300015,46.68567861000015],[118.55196740800012,46.68575612400009],[118.56772871900013,46.68973521000008],[118.59516890500016,46.7030418910001],[118.60937992400012,46.70578074200013],[118.64741377800019,46.697719218000046],[118.68462080900011,46.683456523000146],[118.72007084200011,46.676738587000145],[118.75381555200019,46.69115631100006],[118.79221114100012,46.737768453000015],[118.81624068200003,46.75818064400006],[118.84652307200005,46.765492859000126],[118.86745202700014,46.758335673000104],[118.87520349100018,46.743969625000105],[118.87964766500018,46.727329814000186],[118.89055139200005,46.71353220600003],[118.90708785000007,46.709398092000114],[118.92207401600004,46.715495911000076],[118.9470337330001,46.737148337000136],[118.96723921700018,46.740455628000134],[118.9849125580001,46.72453928700013],[119.01405806500011,46.683301494000105],[119.03695072400004,46.66872874000016],[119.0623755290002,46.66095143700015],[119.3169336350002,46.61167795800016],[119.3632873940002,46.61304738400004],[119.45294600400017,46.62749094700014],[119.50126346900016,46.62800771100011],[119.57588423700017,46.61917104100009],[119.60218754100012,46.61968780600013],[119.62347823100018,46.616328837000125],[119.65877323500008,46.59617502900015],[119.68011560100008,46.59162750300011],[119.6977889400001,46.594883118],[119.71964807200011,46.60271209800011],[119.74026696800004,46.6132540900001],[119.75442631000024,46.62439036100001],[119.77003259300002,46.64356231700013],[119.7822282310001,46.65562876400009],[119.79628422100014,46.65883270300016],[119.81726485200014,46.65162384100002],[119.83442142800017,46.65095204700013],[119.85442020700023,46.659659526],[119.87266198700009,46.673224589000185],[119.89033532699997,46.69477366100013],[119.89798343900016,46.701646627],[119.90418461200024,46.70893300400008],[119.90702681500012,46.718312276000134],[119.90335778900014,46.726399639000036],[119.88718306500013,46.744279683000094],[119.8831006270001,46.75301300100007],[119.88589115400018,46.770066223000086],[119.89865523300013,46.802053935000075],[119.89798343900016,46.82437815400006],[119.89891361500021,46.831251119000015],[119.9021175540001,46.83734893800009],[119.90289270100018,46.842413228000154],[119.89679488200014,46.84646982800014],[119.89162723900014,46.848485210000106],[119.88682133000023,46.85145660400012],[119.8831006270001,46.85543569],[119.8812402760001,46.86055165700015],[119.8814469810001,46.87285064700002],[119.88496097900021,46.880912171000105],[119.89043868000012,46.888250224],[119.89643314600006,46.8985855100001],[119.89291914900012,46.90551015200001],[119.87922489400009,46.908145651000105],[119.86294681800015,46.90902415000015],[119.85230147400013,46.91072947200002],[119.84351648000008,46.91817087800005],[119.83969242400023,46.92566396100007],[119.83685022000017,46.93357045500012],[119.83168257700005,46.942148743000146],[119.81741988100018,46.95491282200011],[119.78429528800011,46.978322246000076],[119.77013594600011,46.99299835200016],[119.76729374300022,46.99811431900015],[119.76496830300012,47.003824565000016],[119.76171268800024,47.01547760000007],[119.7605241290001,47.074595439000134],[119.75396122200002,47.09443918900003],[119.72889815300012,47.128648987000034],[119.69995935100016,47.15952565500011],[119.62942102100007,47.21608551100009],[119.58735640500016,47.23835805300003],[119.52508630400014,47.250812074000024],[119.51299401900015,47.26267181500005],[119.50389896700018,47.27918243500012],[119.49066980000013,47.29716583200012],[119.47599369300009,47.309206442000075],[119.32065433800018,47.40702992800006],[119.28189701300008,47.414858907000095],[119.28882165500025,47.42914744100006],[119.31259281500003,47.45224680700015],[119.31776045700022,47.46211700400012],[119.31011234600024,47.47609548000004],[119.29104374300007,47.48438954699999],[119.2510461830001,47.49294199700002],[119.1575635170001,47.51766917000013],[119.13389571200017,47.52753936800009],[119.12211348500009,47.53895985900003],[119.11653243000015,47.55603892000014],[119.10423343900017,47.62773997000012],[119.09694706300006,47.64660186800016],[119.08345951400017,47.661562195000116],[119.05958500200009,47.673473613000155],[118.97261356700012,47.69512603800013],[118.76740645400017,47.75615590400012],[118.71330122900011,47.79362131800009],[118.60524580900014,47.91467336099999],[118.54225223900019,47.96624644000009],[118.47279911300015,47.98944915800011],[118.28004602100017,47.99813079900015],[118.25431115800008,48.002859192000145],[118.20625207600021,48.02329722100002],[118.18248091600006,48.028206482000044],[118.12253625600023,48.02750885100015],[118.06403853400016,48.0195765180001],[117.99716923100019,47.999991150000156],[117.97277795400018,47.997898255],[117.81516483600015,48.00482289600008],[117.76689904900003,47.99314402300002],[117.74168095000019,47.977589417],[117.52722375500005,47.78648997000006],[117.47286014900024,47.75724111000004],[117.43647994000015,47.73049855600005],[117.3998930260001,47.68566925100008],[117.36082564300003,47.65086517400012],[117.31710738200005,47.65406911200007],[117.06968062300011,47.810157776],[117.0473564050002,47.819459534000124],[116.97283899000008,47.837649638000144],[116.85325972500019,47.87211781800012],[116.82204716000003,47.87630360900006],[116.75166386000011,47.874133199000156],[116.499689576,47.83635772800001],[116.42889286300019,47.835143331],[116.24389123600022,47.86289357500011],[116.1815694580001,47.8495868940001],[116.08431441300016,47.80692799900011],[115.9729000250002,47.709052837000044],[115.9145056560002,47.6839122520001],[115.85270064300012,47.70556467800016],[115.59989953600014,47.887414042999985],[115.5757149660001,47.909738261000044],[115.56186568200022,47.93319936200011],[115.54584598900024,47.99298899400016],[115.51453007100017,48.122102560000044],[115.51422001100015,48.13163686200015],[115.53644087800004,48.14915517200011],[115.77084517400019,48.22408599900017],[115.79999068200011,48.24232777900012],[115.80929244000006,48.2739537560001],[115.78655481000024,48.47301137400011],[115.78655481000024,48.49301015300013],[115.79120568900012,48.513835754000084],[115.80040409400014,48.53037221300018],[116.02819380800024,48.76746368500001],[116.04803755700011,48.79976145500008],[116.0476241460001,48.81769317600005],[116.03356815600009,48.852368063000156],[116.03780562400013,48.87014475500011],[116.24776696850013,49.18146942150004],[116.45772831300022,49.492794088],[116.47292118300005,49.5164618940001],[116.68427779200019,49.823264873000156],[116.72231164600011,49.80166412400011],[117.05758833800022,49.67288645400011],[117.2529252520001,49.6224502560001],[117.47286014900024,49.6142853810001],[117.75883752500025,49.512741191000096],[117.76886275200015,49.51098419200012],[117.77744104000011,49.51284454400003],[117.79501102700017,49.51914906800015],[117.80358931500022,49.51889068600015],[117.81578495300012,49.51196604500008],[117.82260624200008,49.510260722000126],[117.831908,49.509795634000014],[117.83686893800015,49.50902048799999],[117.84089969900006,49.50964060500014],[117.87376591000017,49.51320627900012],[117.89381636600002,49.54664093100011],[117.90466841700018,49.55273874900017],[117.93071333800005,49.56731150300011],[118.01711633300013,49.595785217000135],[118.05494348100002,49.614026998000114],[118.07127323400002,49.625137432000045],[118.08915328000002,49.640123597000105],[118.10641320800018,49.651802471000096],[118.1686316330001,49.671491191000044],[118.18847538300011,49.681258037000084],[118.20821578000009,49.69541737900012],[118.22340865100009,49.71210886700008],[118.22940311700019,49.729213766000115],[118.24170210800004,49.72916208900001],[118.30516076700012,49.767092591],[118.3287252200001,49.77303538000002],[118.35363326000007,49.77644602500005],[118.37296024600019,49.78631622400003],[118.38091841700016,49.81148264600007],[118.39373417100015,49.820009258000184],[118.45584924400022,49.82863922100013],[118.47703658100018,49.83597727500002],[118.48106734300008,49.84243682900008],[118.48644169100024,49.860678610000136],[118.49078251200004,49.869515280000044],[118.49801721200018,49.876749980000014],[118.521271607,49.8940615850001],[118.55455122900004,49.909771221000156],[118.5706226000001,49.920726624000146],[118.5999748130001,49.930958557000125],[118.64436486800004,49.95457468700015],[118.67056482000018,49.96206777],[118.7129394940001,49.949458721000056],[118.74146488400007,49.953076071000126],[118.79164270000015,49.966356914000144],[118.89137821500016,49.979327698000176],[118.90248864800017,49.982118226000026],[118.91292728800015,49.98769928000014],[118.92377933800017,49.991626689000114],[118.93576827000012,49.98961130800016],[118.9478088790001,49.98521881100008],[118.96253666200019,49.9820148730001],[118.99044193600015,49.979327698000176],[119.09167606600018,49.986562398000146],[119.1895512290001,50.007284648000066],[119.2085164800002,50.015139466],[119.22329594000014,50.025009664],[119.2510461830001,50.04826405800009],[119.30132735300006,50.079786683000165],[119.31621016500011,50.09265411400015],[119.32861250800023,50.10805369100014],[119.33775923700014,50.1241250610001],[119.34396040800002,50.142418519],[119.34830122900021,50.18458648800005],[119.34726770000022,50.1950768030001],[119.34359867400023,50.202208151000136],[119.33414188600008,50.211148174000144],[119.33155806500017,50.21734934500013],[119.33378015200017,50.276260478000054],[119.33853438300017,50.29403717000018],[119.35041996300018,50.30147857700011],[119.36246057200017,50.30416575200003],[119.36550948099998,50.31083201100013],[119.3639591890001,50.319461975000095],[119.35662113400005,50.34075266600017],[119.35290043100017,50.345506897000156],[119.33357344600022,50.34989939400007],[119.31434981300018,50.35170806900005],[119.25078780200013,50.34250966500015],[119.2464469810002,50.34416331000001],[119.2330111090001,50.35274159800004],[119.22370935100015,50.35610056600014],[119.21358077,50.35656565400008],[119.18794926000024,50.354705303000074],[119.1753402100002,50.35610056600014],[119.18050785300014,50.369794820000074],[119.17187789000009,50.37568593400006],[119.14123376500007,50.376616110000114],[119.13348230000021,50.381473694000036],[119.13756473800005,50.392532451000065],[119.14671146600013,50.40426300100013],[119.15487634300015,50.41139434800008],[119.1676920990002,50.414081523],[119.19843957600021,50.413099671000126],[119.20675948100003,50.415115051000086],[119.21616459200011,50.42493357300005],[119.2436564540001,50.445500793000136],[119.26122644000017,50.47924550400001],[119.26458540900009,50.48275950200015],[119.26401696800022,50.48958079000012],[119.26236332200008,50.49195790600005],[119.25915938400018,50.493249817000034],[119.25450850500012,50.497022197000135],[119.25089115500023,50.50451527899998],[119.25440515200003,50.50952789300014],[119.26060632400016,50.51407542000008],[119.26458540900009,50.52001820900009],[119.28654789200002,50.57774078400017],[119.2852559820001,50.588902894000014],[119.29357588700023,50.59923817900001],[119.30308435100012,50.60275217700017],[119.31388472600017,50.60461252900016],[119.32613204000008,50.60998687700014],[119.3353304450001,50.61923696000004],[119.34116988100018,50.628073629000035],[119.34897302300008,50.63468821300013],[119.36437260000015,50.63727203400005],[119.37372603400003,50.64274973600014],[119.38307946800009,50.66662424700002],[119.3916577560001,50.67205027300009],[119.4039050700002,50.67323883100012],[119.41775435400008,50.67628774100014],[119.4428174240002,50.68507273400002],[119.45728682500011,50.69628652000007],[119.49666426700004,50.73705922500015],[119.50493249500009,50.75059845000014],[119.5148543710001,50.79193959600015],[119.5140792240001,50.813385315000104],[119.49749108900008,50.83591624000012],[119.5157845460002,50.848111878000125],[119.52798018500013,50.86676707000002],[119.52999556500016,50.887075908000114],[119.51795495600012,50.904800924000035],[119.57319706300021,50.945832011000086],[119.59402266400016,50.96955149400012],[119.60425459800014,50.978181458000066],[119.6832161870001,51.01606028300016],[119.71019128500014,51.038539531000154],[119.71039799000019,51.06246571900009],[119.7284330650002,51.06453277600003],[119.7408354090001,51.071534932000034],[119.7482768150002,51.08339467400007],[119.75070560700023,51.09998280900008],[119.75463301700019,51.11429718000015],[119.76171268800024,51.128172302000124],[119.76522668500009,51.14243499800001],[119.75814701300018,51.158015442000035],[119.76708703600009,51.15972076399999],[119.77282312100026,51.162692159000116],[119.78543217000016,51.17165802100014],[119.75814701300018,51.19902069199999],[119.76217777600006,51.215040385000016],[119.77230635600021,51.21847686800005],[119.80243371600001,51.21328338600016],[119.81499109000012,51.21589304600015],[119.81478438300016,51.22274017400012],[119.80941003500018,51.23261037200011],[119.80594771400015,51.244005026000096],[119.81623132400013,51.26899058100018],[119.8196419680002,51.274726665000124],[119.82884037300018,51.27971344100011],[119.85064782700013,51.28433848100014],[119.86062137900004,51.28901519800002],[119.8833073320001,51.318005677000095],[119.89188562000012,51.32255320300014],[119.91565677900005,51.33074391700016],[119.91271122300016,51.34963165300009],[119.90015384900008,51.37025055000002],[119.89529626500014,51.38397064200002],[119.94304528900003,51.39081777000008],[119.95286381100019,51.39766489700004],[119.95684289600017,51.4045120250001],[119.9599951580001,51.412289327000124],[119.96728153500005,51.421823629000116],[119.9827327890001,51.44215830500003],[119.98056237800019,51.452726135000106],[119.97415450100006,51.46417246500012],[119.97720341099998,51.48701344900003],[119.99218957500008,51.503265686000034],[120.04216068600026,51.53853485100002],[120.05290938400016,51.55220326800004],[120.05352950000021,51.57703379400009],[120.0567334390001,51.596386617000135],[120.06489831600013,51.61488678000016],[120.08587894700023,51.644368185000175],[120.10045170100008,51.65994862900011],[120.1082031660001,51.665193787000035],[120.12236250900006,51.66715749100017],[120.15378178000016,51.66397939000011],[120.1656156820001,51.668552755000135],[120.18148034700019,51.68297047900016],[120.31930139200013,51.77603973400015],[120.37444014600013,51.802317200000104],[120.40833988500006,51.826088359000046],[120.42756351800008,51.83365895600012],[120.45402185100023,51.83644948400017],[120.46482222500016,51.84019602500008],[120.4714884850001,51.84900685700008],[120.4759326580001,51.859135437000035],[120.48089359600026,51.86686106400013],[120.49314091000005,51.87572357200004],[120.50208093300003,51.877248027000135],[120.51189945500009,51.87618866000015],[120.52662723800009,51.877428894],[120.5411483160001,51.882984111000106],[120.54936486800015,51.89047719400004],[120.5561344810001,51.898383688000095],[120.56631473800016,51.90533416800018],[120.57861372900017,51.90768544600003],[120.6249674890001,51.90533416800018],[120.64760176600024,51.91101857500003],[120.66207116700015,51.925048727000146],[120.68351688600002,51.959310202000054],[120.70578942900025,51.97995493600014],[120.71090539600006,51.988326518000136],[120.71157718900021,52.00158152300004],[120.70754642800013,52.012407735000075],[120.70108687400008,52.02287221300013],[120.69638431900003,52.03447357200015],[120.69731449400015,52.04871042900014],[120.70563440000002,52.0610352580001],[120.7180367440001,52.06653879800008],[120.73198938100009,52.07018198700017],[120.74506351800014,52.07666737900006],[120.7530733650001,52.08633087200015],[120.76666426600009,52.10844838500016],[120.77916996300009,52.11759511400005],[120.77431237800023,52.12426137400017],[120.77126346900003,52.13247792600011],[120.77126346900003,52.140978699000115],[120.7755526120002,52.14836842900002],[120.78407922400011,52.158006083000046],[120.78320072500016,52.16198516900011],[120.7774129640002,52.164956564000036],[120.77178023300009,52.171622824000124],[120.76666426600009,52.1795551550001],[120.7537451580001,52.19446380700005],[120.75126468900012,52.20296457900015],[120.75234989400009,52.21185292600016],[120.75705245000007,52.22787262000013],[120.75808597900007,52.237406922000034],[120.73896569900009,52.25660471600012],[120.65493982000024,52.29910858200016],[120.63576786300021,52.326187032000135],[120.63344242399997,52.33546295200016],[120.62910160400011,52.340888977000034],[120.626156047,52.346805929000034],[120.62837813300021,52.35789052400004],[120.63344242399997,52.36174041800008],[120.64315759300015,52.36633962000006],[120.65220096800019,52.37246327800001],[120.65623173100019,52.38142913900005],[120.66041752200013,52.39879242000016],[120.68139815300005,52.422976990000116],[120.69038985300008,52.439125875000016],[120.69038985300008,52.470157573000144],[120.69256026200017,52.47460174600014],[120.70196537300004,52.488761088],[120.7041357830001,52.49783030200017],[120.70480757700001,52.50917328000007],[120.70811486900017,52.51813914000009],[120.7239795330001,52.54216868100012],[120.70739139800011,52.550333557000144],[120.65447473200011,52.56699920700008],[120.60874108900018,52.57400136300008],[120.53959802300018,52.603663636000036],[120.49184899900006,52.61725453700002],[120.46415043200001,52.63603892000013],[120.45402185100023,52.639036154000124],[120.42994063400006,52.636090597000035],[120.38942631100012,52.622163798000045],[120.36761885600018,52.61725453700002],[120.26111372900013,52.61105336500013],[120.24209680200023,52.607229309],[120.19812015800014,52.589116720000064],[120.17595096800018,52.5837423710001],[120.11285404500013,52.58451751700012],[120.07936771700018,52.58996938100002],[120.05642338100022,52.60051137400016],[120.04267745000018,52.61350799600011],[120.03378910300007,52.62536773700013],[120.03012007700023,52.63937205000003],[120.03260054600005,52.65887990300003],[120.03657963100014,52.668129985000135],[120.05290938400016,52.693012187000086],[120.0515657960001,52.70458770800015],[120.04402103800022,52.723527120000185],[120.04608809400011,52.733991598000145],[120.03296228000012,52.760656637000075],[120.06582849200018,52.783213399000104],[120.15595218900013,52.80907745400005],[120.17739790900018,52.81791412400003],[120.21961755400017,52.84491506000007],[120.25248376500011,52.85269236300009],[120.26721154800006,52.85814422700015],[120.28018233200011,52.86592153],[120.2857117110001,52.87488739000012],[120.29072432500018,52.88535186800006],[120.30235152200025,52.891242982000065],[120.32669112200003,52.899046123000076],[120.33723311400003,52.90770192500004],[120.34240075700019,52.91542755200014],[120.34658654800013,52.92346323700012],[120.35407963100018,52.93323008200015],[120.36203780100006,52.93937957800012],[120.3919067790001,52.95676869700016],[120.45030114700015,53.00834177700006],[120.52760909100006,53.05580658000018],[120.614787231,53.09707021100009],[120.65220096800019,53.122830913000186],[120.71405765800003,53.18504933700008],[120.75126468900012,53.20690846800012],[120.82387007700005,53.23522715300011],[120.83043298400004,53.244838970000146],[120.82598881100002,53.26186635400016],[120.84572920700016,53.27344187500002],[120.87425459800014,53.28015981100013],[121.05486372900012,53.29000417100012],[121.15180871600015,53.27450124100001],[121.20348514900012,53.276749166000016],[121.25355961200007,53.28692942300007],[121.29996504700001,53.302535706000114],[121.3283354090001,53.319976502000046],[121.34099613500014,53.323645529000046],[121.35763594600016,53.32405894000006],[121.40579838100015,53.31682424000009],[121.41327478500013,53.31733482400015],[121.45876672400007,53.32044159000016],[121.51214847800023,53.329820862000034],[121.64102950100006,53.38490793900008],[121.88897302300015,53.430589905000105],[122.02505194200008,53.429823366],[122.08162276200008,53.4295047],[122.10808109500024,53.43808298800006],[122.14776859600023,53.46113067600011],[122.16869755100008,53.46914052300017],[122.22569665600022,53.47394643200009],[122.29370284000012,53.49265330000015],[122.31675052900007,53.496012269000076],[122.33783451400008,53.49130971300009],[122.35809167500011,53.47957916300011],[122.37969242400007,53.46164744100004],[122.40160323100022,53.45095041900014],[122.42516768400006,53.45244903600014],[122.47121138500016,53.464748027],[122.85966312700016,53.47394643200009],[123.00254846300017,53.50732940700006],[123.15359867400004,53.51311716700003],[123.16424401900021,53.51637278300002],[123.18005700700022,53.530480449000045],[123.20325972500014,53.53828359000006],[123.23473067300009,53.56034942700016],[123.25255904200004,53.567790833000075],[123.27731205300009,53.56944447900003],[123.30955814700022,53.5674807750001],[123.34025394700015,53.56143463200005],[123.36774580900013,53.545828349000104],[123.38025150600012,53.542831116000016],[123.41993900600019,53.53854197300013],[123.4316695560001,53.535803122000104],[123.47140873300012,53.51900828100004]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":9,"sovereignt":"Cyprus No Mans Area","sov_a3":"CNM","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Cyprus No Mans Area","adm0_a3":"CNM","geou_dif":0,"geounit":"Cyprus No Mans Area","gu_a3":"CNM","su_dif":0,"subunit":"Cyprus No Mans Area","su_a3":"CNM","brk_diff":1,"name":"Cyprus U.N. Buffer Zone","name_long":"Cyprus U.N. Buffer Zone","brk_a3":"B43","brk_name":"Cyprus U.N. Buffer Zone","brk_group":null,"abbrev":null,"postal":null,"formal_en":"Cyprus No Mans Land","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cyprus No Mans Area","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":1,"mapcolor13":-99,"pop_est":10000,"gdp_md_est":280,"pop_year":2012,"lastcensus":-99,"gdp_year":2012,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":0,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"woe_id_eh":-99,"woe_note":"No WOE equivalent.","adm0_a3_is":"CYP","adm0_a3_us":"CYP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":23,"long_len":23,"abbrev_len":0,"tiny":-99,"homepart":1,"filename":"cyprusunbufferzone.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[33.92540165200015,35.06277048700004],[33.9411112870001,35.05972157800004],[33.9629187420002,35.06829986700013],[34.00891076700012,35.05972157800004],[34.012288940202865,35.06379525822625],[34.01229902400004,35.06378815300015],[34.02196073004231,35.05700872106023],[34.01748905400004,35.051866761000085],[34.01190800000015,35.04881785000005],[34.00198612400007,35.04721588200012],[33.989480428000064,35.051866761000085],[33.980075317000086,35.05739613900009],[33.96209191900019,35.05739613900009],[33.94493534300014,35.051091613000075],[33.93077600100017,35.051091613000075],[33.921474244000166,35.0534170530001],[33.910518839000105,35.05739613900009],[33.8981164960002,35.061271872000034],[33.90650571144633,35.06910465955728],[33.90659143100001,35.06904917400005],[33.91289595500021,35.0659227500001],[33.92540165200015,35.06277048700004]]],[[[32.653489624000116,35.17433990600016],[32.64646162900013,35.16111073800006],[32.63395593200002,35.15408274300016],[32.62222538200015,35.151808980000126],[32.60749759900014,35.15408274300016],[32.59261478700009,35.16111073800006],[32.584808790000096,35.172512111000074],[32.60189863400014,35.17861562700007],[32.60191535005785,35.178621613766],[32.60274336700016,35.17433990600016],[32.61519738800021,35.163436178],[32.626204468000225,35.165089824000134],[32.63478275600008,35.17284128900015],[32.6394336340002,35.183745017000106],[32.640694327985244,35.187076833145326],[32.6407169930001,35.187079169000114],[32.65040123800022,35.18805573100009],[32.65981271402657,35.18708213025526],[32.653489624000116,35.17433990600016]]],[[[33.42770593300011,35.16813873300007],[33.44000492400002,35.14865671800008],[33.450960326000114,35.13222361300002],[33.469770548000014,35.10416331],[33.47679854300023,35.094809876000156],[33.47679854300023,35.07682647700007],[33.47679854300023,35.05739613900009],[33.47132084200004,35.03853424100005],[33.46584314000009,35.014401347],[33.46656661000017,35.00509958900007],[33.47679854300023,35.00272247300005],[33.47679854300023,35.008975322000126],[33.478348837000084,35.01910390300016],[33.48144942200011,35.03160959899999],[33.48620365400009,35.03853424100005],[33.493851767000166,35.05662099300015],[33.50015629000009,35.061271872000034],[33.50718428500007,35.061271872000034],[33.51643436600008,35.05972157800004],[33.52899174,35.055794169000066],[33.53519291200021,35.05662099300015],[33.536794882000066,35.0667495730001],[33.540670614000106,35.07305409800013],[33.54687178500009,35.07305409800013],[33.55545007300012,35.0667495730001],[33.561754597000146,35.058171285000086],[33.566405476000085,35.043340149000144],[33.57896285000018,35.03548533200005],[33.59152022400011,35.0339350390001],[33.6022689210001,35.04168650300004],[33.61405114700013,35.04644073400002],[33.637512248000085,35.03083445300017],[33.652188354000174,35.03083445300017],[33.656115763000145,35.0323847450001],[33.67099857600013,35.03083445300017],[33.67944383600016,35.03389111000003],[33.685002890000106,35.029284160000046],[33.702211141000106,35.022256165000144],[33.70531172700012,35.01522817000013],[33.69663008600016,35.008975322000126],[33.69973067200013,35.00272247300005],[33.71544030800006,34.99729644800006],[33.71146122200011,34.985565899000065],[33.70293461100019,34.987943014],[33.70055749400015,34.98866648400012],[33.685002890000106,34.99729644800006],[33.67409916200003,34.99879506400008],[33.66159346500015,35.000345357000086],[33.639786011000204,35.00975046800012],[33.630329224000064,35.01362620100009],[33.61952885000014,35.01683014000015],[33.61167403200008,35.01362620100009],[33.602992391000015,35.01207590800008],[33.59152022400011,35.018380432000086],[33.580564819000216,35.019930725],[33.57188317900008,35.014401347],[33.56413171400007,35.0011721800001],[33.54604496200014,34.99497100900011],[33.533642619000176,34.99957021100006],[33.527441447000086,35.01285105400008],[33.527441447000086,35.037035624000154],[33.51958663000008,35.04411529500008],[33.51028487100015,35.037035624000154],[33.502810574000165,35.03087005700009],[33.497004028000134,35.02608022100016],[33.493128296000094,34.99729644800006],[33.48620365400009,34.981638489000105],[33.469770548000014,34.97776275700014],[33.45881514500016,34.97776275700014],[33.44941003400018,34.987943014],[33.446309448000164,35.0011721800001],[33.45251062000014,35.01910390300016],[33.45881514500016,35.04168650300004],[33.45881514500016,35.061271872000034],[33.46036543700009,35.07760162400016],[33.45881514500016,35.094809876000156],[33.45726485200012,35.10106272400004],[33.44320886300014,35.11356842100004],[33.43235681200005,35.123645325],[33.42450199400011,35.129898174000076],[33.42140140800009,35.14472930900011],[33.42140140800009,35.15723500600002],[33.4159237060002,35.160335592000145],[33.39866377800021,35.15801015300012],[33.37303226700006,35.155684713000184],[33.3565991610001,35.15723500600002],[33.34802087500023,35.15490956600017],[33.32771203600012,35.1369261680001],[33.315258016000115,35.12912302700006],[33.31365604600009,35.12131988600005],[33.30905684400008,35.115893860000156],[33.301202027000016,35.11356842100004],[33.278567749000075,35.11821930000012],[33.26213464300011,35.12607411800006],[33.252109416000195,35.1369261680001],[33.238673544000136,35.14943186400008],[33.228544962000086,35.15335927400015],[33.21614261900001,35.15408274300016],[33.20281009900012,35.15801015300012],[33.18947758000016,35.16266103200009],[33.17387129700015,35.16266103200009],[33.14968672700015,35.14865671800008],[33.14348555500018,35.140078430000145],[33.13712935400022,35.13609934500006],[33.123073364000135,35.130673320000184],[33.098217,35.130673320000184],[33.07165531400008,35.13532419900015],[33.04674727400018,35.13775299100003],[33.03734216300015,35.13609934500006],[33.026386759000076,35.12762441100007],[33.00313236500003,35.115893860000156],[32.98514896600014,35.10881418900006],[32.96711389200007,35.094809876000156],[32.94840702400009,35.079151917],[32.93522953300007,35.072278951000115],[32.921948689000175,35.072278951000115],[32.90639408400014,35.080702210000126],[32.90019291200005,35.08778188100014],[32.89078780100013,35.091657613000095],[32.88293298300019,35.08778188100014],[32.8767318110001,35.07682647700007],[32.87347619600021,35.072278951000115],[32.86102217700014,35.06509592700017],[32.83456384200022,35.0589464320001],[32.82598555500013,35.0589464320001],[32.81585697400007,35.06277048700004],[32.810275920000066,35.07072865800011],[32.810275920000066,35.07992706400001],[32.806503540000136,35.094809876000156],[32.795599813000166,35.10261301700017],[32.775239298000116,35.11046783400009],[32.7548787850001,35.119769592000026],[32.728317098000076,35.12679758700013],[32.71271081600011,35.133773906000144],[32.7041325270001,35.1439024860001],[32.69803470800016,35.15723500600002],[32.691548895643365,35.18370515985826],[32.69157962300019,35.18370189000011],[32.71138841501036,35.18163170909803],[32.710592081000044,35.17532175800012],[32.71271081600011,35.163436178],[32.720565633000064,35.15335927400015],[32.73152103700013,35.14317901600019],[32.74397505700014,35.13775299100003],[32.759633016000095,35.133773906000144],[32.79477299000021,35.12679758700013],[32.81430668200002,35.11661733000007],[32.829912963000055,35.10023590100003],[32.839214721000104,35.07992706400001],[32.85492435800009,35.079151917],[32.86102217700014,35.08778188100014],[32.87042728600008,35.09796213800011],[32.8767318110001,35.10023590100003],[32.88841068500008,35.10261301700017],[32.91176843300022,35.10023590100003],[32.92272383600019,35.09873728400011],[32.93435103400023,35.10023590100003],[32.946908407000166,35.10261301700017],[32.96954268300013,35.112793274000055],[32.98907637600021,35.131448466],[33.01398441600011,35.14162872300007],[33.03114099100017,35.14943186400008],[33.05610070800011,35.155684713000184],[33.07868330900007,35.165089824000134],[33.095839884000014,35.169740703000016],[33.109120728000136,35.158785299000115],[33.1201278070001,35.160335592000145],[33.14193526300008,35.18064443000015],[33.157489868000056,35.18529530800013],[33.19025272600018,35.18994618700019],[33.223997436000076,35.17914581300006],[33.24022383600007,35.17129099600014],[33.27081628400017,35.168965556],[33.299600057000106,35.16266103200009],[33.315258016000115,35.161885885000075],[33.32621341900014,35.16664011700006],[33.34481693500018,35.16664011700006],[33.374530884000166,35.17433990600016],[33.38078373200008,35.17826731400011],[33.38853519700015,35.188395895000085],[33.400317423000075,35.197749329000104],[33.41354659000015,35.199402974000165],[33.42140140800009,35.19387359600016],[33.42450199400011,35.18219472300008],[33.42770593300011,35.16813873300007]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Northern Cyprus","sov_a3":"CYN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Northern Cyprus","adm0_a3":"CYN","geou_dif":0,"geounit":"Northern Cyprus","gu_a3":"CYN","su_dif":0,"subunit":"Northern Cyprus","su_a3":"CYN","brk_diff":1,"name":"N. Cyprus","name_long":"Northern Cyprus","brk_a3":"B20","brk_name":"N. Cyprus","brk_group":null,"abbrev":"N. Cy.","postal":"CN","formal_en":"Turkish Republic of Northern Cyprus","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Cyprus","name_sort":"Cyprus, Northern","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":265100,"gdp_md_est":3600,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-90,"woe_id_eh":23424995,"woe_note":"WOE lists as subunit of united Cyprus","adm0_a3_is":"CYP","adm0_a3_us":"CYP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":9,"long_len":15,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"CYN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[32.626204468000225,35.165089824000134],[32.61519738800021,35.163436178],[32.60274336700016,35.17433990600016],[32.60191535005785,35.178621613766],[32.61939537900011,35.18488190300003],[32.640694327985244,35.187076833145326],[32.6394336340002,35.183745017000106],[32.63478275600008,35.17284128900015],[32.626204468000225,35.165089824000134]]],[[[34.13770592500006,35.41510651200003],[34.10906009200008,35.39427317900008],[34.085459832000225,35.369859117000104],[34.0682072270001,35.33771393400014],[34.05892988400015,35.32412344],[34.04379316500015,35.315252997000144],[34.01978600400011,35.314357815000065],[33.99488366000017,35.31928131700012],[33.971364780000016,35.32127513200005],[33.95167076900012,35.31150950700011],[33.923594597000175,35.27855052300004],[33.91211998800022,35.25999583500014],[33.90739993600002,35.24290599200019],[33.899912957000055,35.16445547100015],[33.91374759200008,35.15623607000005],[33.95362389400023,35.12262604400003],[33.96192467500012,35.11261627800015],[33.966807488000114,35.10008372600005],[33.978688998000024,35.087469794000164],[34.012288940202865,35.06379525822625],[34.00891076700012,35.05972157800004],[33.9629187420002,35.06829986700013],[33.9411112870001,35.05972157800004],[33.92540165200015,35.06277048700004],[33.91289595500021,35.0659227500001],[33.90659143100001,35.06904917400005],[33.90650571144633,35.06910465955728],[33.906523830000225,35.069121576],[33.90824507700008,35.07072865800011],[33.914446249000065,35.07305409800013],[33.921474244000166,35.080702210000126],[33.91361942500012,35.090882466],[33.90586796100009,35.090882466],[33.90586796100009,35.09636016900008],[33.90359419800021,35.09951243100012],[33.898839966000104,35.10881418900006],[33.89181197100018,35.11046783400009],[33.889434855000076,35.118994446000116],[33.87620568900016,35.118994446000116],[33.871554810000106,35.10023590100003],[33.871554810000106,35.08545644200011],[33.87692915900006,35.07682647700007],[33.871554810000106,35.07305409800013],[33.86690393000006,35.0667495730001],[33.85357141100022,35.058171285000086],[33.842719360000075,35.05662099300015],[33.83486454200013,35.06359731100015],[33.824012492000094,35.0667495730001],[33.79827762800019,35.05264190700008],[33.79435022000021,35.040187887],[33.7864954020001,35.03853424100005],[33.77553999900013,35.040187887],[33.76613488800015,35.03160959899999],[33.73967655400017,35.04721588200012],[33.71848921700021,35.0323847450001],[33.707585489000024,35.029284160000046],[33.71146122200011,35.040963033000125],[33.71936771600022,35.06277048700004],[33.7147168380001,35.0667495730001],[33.70531172700012,35.0667495730001],[33.694459675000104,35.058171285000086],[33.678853394000065,35.055794169000066],[33.67409916200003,35.04644073400002],[33.67564945500007,35.037035624000154],[33.67943459900019,35.03389876400003],[33.67944383600016,35.03389111000003],[33.67099857600013,35.03083445300017],[33.656115763000145,35.0323847450001],[33.652188354000174,35.03083445300017],[33.637512248000085,35.03083445300017],[33.61405114700013,35.04644073400002],[33.6022689210001,35.04168650300004],[33.59152022400011,35.0339350390001],[33.57896285000018,35.03548533200005],[33.566405476000085,35.043340149000144],[33.561754597000146,35.058171285000086],[33.55545007300012,35.0667495730001],[33.54687178500009,35.07305409800013],[33.540670614000106,35.07305409800013],[33.536794882000066,35.0667495730001],[33.53519291200021,35.05662099300015],[33.52899174,35.055794169000066],[33.51643436600008,35.05972157800004],[33.50718428500007,35.061271872000034],[33.50015629000009,35.061271872000034],[33.493851767000166,35.05662099300015],[33.48620365400009,35.03853424100005],[33.48144942200011,35.03160959899999],[33.478348837000084,35.01910390300016],[33.47679854300023,35.008975322000126],[33.47679854300023,35.00272247300005],[33.46656661000017,35.00509958900007],[33.46584314000009,35.014401347],[33.47132084200004,35.03853424100005],[33.47679854300023,35.05739613900009],[33.47679854300023,35.07682647700007],[33.47679854300023,35.094809876000156],[33.469770548000014,35.10416331],[33.450960326000114,35.13222361300002],[33.44000492400002,35.14865671800008],[33.42770593300011,35.16813873300007],[33.42450199400011,35.18219472300008],[33.42140140800009,35.19387359600016],[33.41354659000015,35.199402974000165],[33.400317423000075,35.197749329000104],[33.38853519700015,35.188395895000085],[33.38078373200008,35.17826731400011],[33.374530884000166,35.17433990600016],[33.34481693500018,35.16664011700006],[33.32621341900014,35.16664011700006],[33.315258016000115,35.161885885000075],[33.299600057000106,35.16266103200009],[33.27081628400017,35.168965556],[33.24022383600007,35.17129099600014],[33.223997436000076,35.17914581300006],[33.19025272600018,35.18994618700019],[33.157489868000056,35.18529530800013],[33.14193526300008,35.18064443000015],[33.1201278070001,35.160335592000145],[33.109120728000136,35.158785299000115],[33.095839884000014,35.169740703000016],[33.07868330900007,35.165089824000134],[33.05610070800011,35.155684713000184],[33.03114099100017,35.14943186400008],[33.01398441600011,35.14162872300007],[32.98907637600021,35.131448466],[32.96954268300013,35.112793274000055],[32.946908407000166,35.10261301700017],[32.93435103400023,35.10023590100003],[32.92272383600019,35.09873728400011],[32.91176843300022,35.10023590100003],[32.88841068500008,35.10261301700017],[32.8767318110001,35.10023590100003],[32.87042728600008,35.09796213800011],[32.86102217700014,35.08778188100014],[32.85492435800009,35.079151917],[32.839214721000104,35.07992706400001],[32.829912963000055,35.10023590100003],[32.81430668200002,35.11661733000007],[32.79477299000021,35.12679758700013],[32.759633016000095,35.133773906000144],[32.74397505700014,35.13775299100003],[32.73152103700013,35.14317901600019],[32.720565633000064,35.15335927400015],[32.71271081600011,35.163436178],[32.710592081000044,35.17532175800012],[32.71138841501036,35.18163170909803],[32.71143639400011,35.18162669499999],[32.745371941000165,35.17804596600011],[32.77637780000006,35.17084381700006],[32.80144290500019,35.15713125200013],[32.82837975400017,35.14858633000004],[32.865244988000114,35.15696849200016],[32.892588738000114,35.175034898000106],[32.91472415500007,35.200832424000126],[32.92937259200008,35.23297760600009],[32.93474368600002,35.270575262000094],[32.93604576900023,35.33661530200011],[32.93213951900023,35.36627838700004],[32.92042076900023,35.39777252800015],[32.94434655000011,35.394517320000105],[32.98536217500012,35.37457916900003],[33.00611412900011,35.369859117000104],[33.069795878000065,35.358724094000095],[33.14008008900012,35.36215942200012],[33.26246178500017,35.34935130400005],[33.2806095710001,35.34247467700005],[33.427500847000175,35.32892487200009],[33.660329623000194,35.35932038000006],[33.74284915500012,35.39777252800015],[33.78350763800003,35.416717511000016],[33.83464603000007,35.40997955900003],[33.88793845500007,35.42390629],[34.03562217700019,35.47138308500003],[34.07628968100008,35.49432291700013],[34.13119012300015,35.51134735400008],[34.18165123800006,35.554185289000074],[34.21038520500022,35.55914553500004],[34.267789608000186,35.57225618299999],[34.3196720710001,35.586167710000055],[34.36147982100013,35.60830945000011],[34.54420006600017,35.67837148600002],[34.57846113400015,35.689764716000084],[34.59253991000017,35.691961981000176],[34.58708743600002,35.688706773000135],[34.583669467000014,35.6849632830001],[34.58130944100017,35.68121979400014],[34.57886803500011,35.67837148600002],[34.57545006600011,35.65013255400005],[34.57276451900022,35.64354075700008],[34.56544030000006,35.641180731000034],[34.5423283210001,35.637274481000034],[34.53728274800008,35.633978583],[34.44141686300023,35.583644924000126],[34.35230553500017,35.52069733300003],[34.13770592500006,35.41510651200003]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"China","sov_a3":"CH1","adm0_dif":1,"level":2,"type":"Country","admin":"Hong Kong S.A.R.","adm0_a3":"HKG","geou_dif":0,"geounit":"Hong Kong S.A.R.","gu_a3":"HKG","su_dif":0,"subunit":"Hong Kong S.A.R.","su_a3":"HKG","brk_diff":0,"name":"Hong Kong","name_long":"Hong Kong","brk_a3":"HKG","brk_name":"Hong Kong","brk_group":null,"abbrev":"H.K.","postal":"HK","formal_en":"Hong Kong Special Administrative Region, PRC","formal_fr":null,"note_adm0":"China","note_brk":null,"name_sort":"Hong Kong SAR, China","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":3,"pop_est":7061200,"gdp_md_est":351119,"pop_year":2010,"lastcensus":2006,"gdp_year":2011,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":0,"fips_10_":"HK","iso_a2":"HK","iso_a3":"HKG","iso_n3":"344","un_a3":"344","wb_a2":"HK","wb_a3":"HKG","woe_id":24865698,"woe_id_eh":24865698,"woe_note":"Exact WOE match as country","adm0_a3_is":"HKG","adm0_a3_us":"HKG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"HKG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.11744225400005,22.221869208000086],[114.1257430350001,22.21344635600003],[114.13282311300017,22.21613190300009],[114.13282311300017,22.209947007000135],[114.1257430350001,22.205226955000043],[114.13819420700011,22.20604075700014],[114.14966881600016,22.20604075700014],[114.15463300900004,22.20359935100002],[114.14307701900006,22.196112372000027],[114.13908938900013,22.191107489],[114.14535566500014,22.178697007000054],[114.13738040500019,22.178778387000033],[114.11085045700023,22.177069403000033],[114.11410566499997,22.18573639500012],[114.11410566499997,22.21613190300009],[114.10425866000016,22.215969143000123],[114.10637454500025,22.222398179000052],[114.106700066,22.23578522300015],[114.11329186300004,22.23334381700012],[114.11744225400005,22.221869208000086]]],[[[114.215586785,22.285630601000108],[114.22177168100009,22.279364325000145],[114.22811933700021,22.280910549000012],[114.2358504570001,22.277818101000108],[114.24366295700011,22.264593817000087],[114.25147545700011,22.259059963000155],[114.25147545700011,22.248887437000022],[114.24529056100002,22.241888739000146],[114.24903405000018,22.23253001500011],[114.25375410200016,22.22398509300008],[114.24903405000018,22.222398179000052],[114.25611412900004,22.20359935100002],[114.24366295700011,22.201280015000137],[114.24048912900004,22.205226955000043],[114.23275800900004,22.211493231000176],[114.23267662900005,22.22199127800006],[114.22950280000005,22.233587958000058],[114.22266686300006,22.238836981000063],[114.21680748800023,22.23432038],[114.22266686300006,22.23253001500011],[114.22266686300006,22.224758205000015],[114.21867923300006,22.22398509300008],[114.21176191499998,22.21613190300009],[114.21867923300006,22.206000067000147],[114.215586785,22.19896067900008],[114.21949303499999,22.191880601000108],[114.20769290500002,22.189561265000133],[114.20606530000012,22.205226955000043],[114.20932050900015,22.207546291000185],[114.20655358200011,22.21238841400016],[114.19605553500006,22.207546291000185],[114.19141686300011,22.209947007000135],[114.19605553500006,22.21531810099999],[114.18905683700004,22.21922435099999],[114.1936955090001,22.22553131700012],[114.19141686300011,22.230983791000156],[114.1827091810002,22.23253001500011],[114.18384850400005,22.241034247000027],[114.17115319100017,22.233303127000127],[114.16724694100016,22.227850653000086],[114.16488691500015,22.227850653000086],[114.16260826900017,22.233303127000127],[114.16098066500015,22.2403832050001],[114.15219160200016,22.245021877000013],[114.13599694100006,22.245754299000126],[114.12907962300014,22.248887437000022],[114.12501061300006,22.256740627000013],[114.12354576900012,22.261379299000126],[114.11882571700019,22.269191799000037],[114.11255944100006,22.271511135000182],[114.11337324300004,22.277818101000108],[114.11565188900013,22.279364325000145],[114.12045332100003,22.281683661000116],[114.12907962300014,22.285630601000108],[114.13908938900013,22.288723049000012],[114.14991295700011,22.285630601000108],[114.15707441500015,22.281683661000116],[114.16570071700008,22.279364325000145],[114.17888431100017,22.279364325000145],[114.18816165500007,22.28717682500014],[114.19678795700017,22.29185618700008],[114.20639082100003,22.288234768],[114.215586785,22.285630601000108]]],[[[114.05176842500012,22.328517971000093],[114.05022220099997,22.319932359000074],[114.046153191,22.323146877000127],[114.03834069100004,22.32457103100002],[114.03142337300012,22.32457103100002],[114.02963300900015,22.308986721],[114.01270592500023,22.311346747000144],[114.01270592500023,22.298081773000135],[114.02214603000006,22.30190664300015],[114.01758873800023,22.289048570000134],[114.01889082100004,22.264593817000087],[114.00416100400005,22.264593817000087],[113.99537194100016,22.26776764500015],[114.00725345100003,22.252101955000068],[113.99244225400004,22.241197007],[114.01498457100004,22.227077541000156],[114.00017337300008,22.21613190300009],[113.98194420700005,22.208238023000135],[113.98064212300008,22.21531810099999],[113.98064212300008,22.237250067000033],[113.96908613400015,22.237250067000033],[113.95956464900003,22.237250067000033],[113.9456486340001,22.237250067000033],[113.92839603000006,22.22398509300008],[113.9214787120001,22.22398509300008],[113.91830488400004,22.21922435099999],[113.92839603000006,22.21690501500002],[113.92839603000006,22.210760809000035],[113.91911868600013,22.205023505000085],[113.90626061300011,22.204006252000013],[113.8940535820001,22.21531810099999],[113.89250735800024,22.222398179000052],[113.88396243600008,22.219997463000098],[113.87370853000002,22.213080145],[113.85914147200018,22.20140208500011],[113.84644616000006,22.197088934000092],[113.83920332100004,22.204901434000092],[113.83790123800011,22.217962958000086],[113.83733157600014,22.228623765000023],[113.83920332100004,22.234198309000117],[113.84921308700008,22.234198309000117],[113.84921308700008,22.244126695000105],[113.85678144600016,22.245998440000093],[113.85678144600016,22.252264716000052],[113.85059655000006,22.256740627000013],[113.85059655000006,22.256781317],[113.85108483200017,22.257106838000126],[113.85987389400023,22.263454494000044],[113.86695397200018,22.268988348000065],[113.86760501400013,22.270738023000078],[113.87680097700004,22.272284247000115],[113.88396243600008,22.279364325000145],[113.89250735800024,22.292710679],[113.91130618600002,22.292710679],[113.9214787120001,22.29185618700008],[113.92839603000006,22.284857489],[113.93864993600017,22.288723049000012],[113.96192467500012,22.30117422100004],[113.97673587300008,22.298081773000135],[113.98373457100014,22.309027411],[113.99244225400004,22.31057363500004],[113.99952233200011,22.32225169500005],[114.01734459700018,22.33551666900017],[114.02051842500022,22.328517971000093],[114.04379316500015,22.34577057500009],[114.04932701900006,22.342230536000113],[114.0548608730002,22.336330471000096],[114.05176842500012,22.328517971000093]]],[[[114.17321740100017,22.563946032000057],[114.18303511600018,22.556195374000126],[114.19988163300016,22.556195374000126],[114.2207137380001,22.55512116100006],[114.22982832100004,22.555812893000095],[114.23471113399998,22.55617910400009],[114.22722415500013,22.547064520000035],[114.22217858200005,22.541449286000116],[114.21485436300006,22.534491278000033],[114.20997155000012,22.534491278000033],[114.20932050900015,22.52370840100012],[114.21794681100008,22.526027736000074],[114.21867923300006,22.52985260600009],[114.23039798300019,22.532945054],[114.23430423300024,22.53693268400015],[114.2420353520001,22.550197658000098],[114.24594160200009,22.55097077],[114.24903405000018,22.547837632000135],[114.25456790500019,22.55097077],[114.25766035200016,22.547837632000135],[114.25326582099997,22.539455471000068],[114.25920657600003,22.540798244000158],[114.26563561300023,22.535264390000137],[114.26514733200023,22.528469143000034],[114.27003014400012,22.52558014500009],[114.27800540500006,22.52985260600009],[114.27979576900023,22.526027736000074],[114.27979576900023,22.51972077000015],[114.27767988400015,22.511664130000028],[114.28516686300011,22.51117584800012],[114.28923587300008,22.50519440300009],[114.29851321700019,22.50100332200016],[114.32658938900013,22.508775132000082],[114.33277428500017,22.51194896000014],[114.335134311,22.50641510600003],[114.31633548300007,22.492377020000063],[114.30543053499999,22.483018296000054],[114.29363040500007,22.478257554000137],[114.28044681100017,22.47288646],[114.26872806100019,22.46503327],[114.26408938900018,22.458075262000094],[114.25375410200016,22.451768296000168],[114.24594160200009,22.451768296000168],[114.23121178500017,22.469794012000094],[114.21713300900015,22.467352606000148],[114.21176191499998,22.470567124000027],[114.20932050900015,22.46580638200011],[114.21094811300006,22.457302151000093],[114.215586785,22.454982815000122],[114.21713300900015,22.447943427000055],[114.20997155000012,22.449489651000093],[114.20932050900015,22.45408763200014],[114.20224043100009,22.458075262000094],[114.19060306100019,22.45652903900016],[114.18669681100017,22.451768296000168],[114.16749108200023,22.44806549700003],[114.17652428500006,22.44322337400014],[114.1875106130001,22.436143296000083],[114.20020592500018,22.428168036000116],[114.21176191499998,22.420599677],[114.20997155000012,22.412746486000103],[114.21485436300006,22.408880927],[114.20932050900015,22.39866771000005],[114.215586785,22.40033600500008],[114.22339928500011,22.41502513200008],[114.23422285199999,22.42475006700012],[114.23821048300024,22.435370184000146],[114.24382571700008,22.43553294500013],[114.25147545700011,22.430731512000037],[114.26718183700008,22.430731512000037],[114.26937910200016,22.425523179000052],[114.26718183700008,22.415961005000057],[114.2725529310002,22.409654039000102],[114.2764591810002,22.419826565000065],[114.28899173300013,22.42601146000011],[114.2764591810002,22.44399648600007],[114.28899173300013,22.45331452],[114.30160566499997,22.45652903900016],[114.30079186300011,22.46503327],[114.32374108200005,22.48004791900003],[114.3250431650001,22.47520579600014],[114.33073978000006,22.4741071640001],[114.3250431650001,22.464260158000073],[114.335703972,22.46173737200014],[114.33806399800008,22.446356512000122],[114.33277428500017,22.44000885600009],[114.33741295700011,22.431586005000142],[114.34278405000018,22.43768952000012],[114.34758548300024,22.422919012000037],[114.35230553500016,22.42369212400017],[114.35157311300023,22.440985419000143],[114.3598738940001,22.46116771],[114.36784915500007,22.454982815000122],[114.36736087300008,22.44627513200014],[114.3702091810002,22.44000885600009],[114.38575280000012,22.439235744000158],[114.39975019599999,22.436143296000083],[114.39739017000014,22.428412177000084],[114.40129642000014,22.412746486000103],[114.38933353000017,22.41791413],[114.38176517000024,22.419053453000128],[114.3702091810002,22.39797597900012],[114.3750106130001,22.400539455000043],[114.3849389980002,22.387355861000074],[114.3897404310002,22.36595286700013],[114.38656660200003,22.365220445000187],[114.38575280000012,22.370184637000065],[114.37639407600003,22.370632229000037],[114.3794865240001,22.362087307000124],[114.3755802740001,22.35346100500011],[114.3702091810002,22.348822333],[114.36085045700011,22.34577057500009],[114.35759524800002,22.332424221000096],[114.35230553500016,22.339463609000163],[114.35230553500016,22.351914781000076],[114.34197024800008,22.34577057500009],[114.33904056100002,22.352687893],[114.33277428500017,22.359767971000068],[114.33432050900004,22.37531159100014],[114.32040449300004,22.380764065],[114.31861412900017,22.3893903670001],[114.31006920700023,22.383775132000025],[114.30005944100006,22.381577867000104],[114.28598066500004,22.390977281000133],[114.27800540500006,22.390977281000133],[114.26872806100019,22.378444729000034],[114.27336673300013,22.36363353100016],[114.27979576900023,22.35500722900015],[114.2764591810002,22.348049221000068],[114.26718183700008,22.355780341000084],[114.26636803500004,22.36595286700013],[114.2583927740001,22.362087307000124],[114.25554446700006,22.35590241100006],[114.2657983730002,22.346340236000074],[114.2725529310002,22.32070547100001],[114.27719160200014,22.319199937000132],[114.29127037900011,22.316555080000153],[114.29208418100019,22.30516185099999],[114.2959904310002,22.30516185099999],[114.30388431100008,22.30670807500003],[114.31161543100009,22.297308661000113],[114.30567467500023,22.290757554000137],[114.29769941500003,22.285630601000108],[114.29053795700017,22.28794993700008],[114.28899173300013,22.28717682500014],[114.28972415500007,22.281683661000116],[114.28956139400006,22.273911851000136],[114.30005944100006,22.277044989],[114.30315188900012,22.269191799000037],[114.30315188900012,22.26215241100006],[114.29672285200004,22.25828685100005],[114.28899173300013,22.264593817000087],[114.27833092500006,22.27045319200012],[114.27979576900023,22.279364325000145],[114.27336673300013,22.29576243700008],[114.26482181100019,22.301947333000143],[114.26563561300023,22.309800523000103],[114.26636803500004,22.315985419000086],[114.25554446700006,22.32233307500003],[114.25147545700011,22.30516185099999],[114.25302168100002,22.29576243700008],[114.23894290500019,22.281683661000116],[114.22811933700021,22.29185618700008],[114.21176191499998,22.31057363500004],[114.21485436300006,22.30117422100004],[114.21249433700021,22.30117422100004],[114.19548587300008,22.31826406500006],[114.18653405000023,22.30874258000007],[114.19141686300011,22.301947333000143],[114.19141686300011,22.298895575000145],[114.18368574300008,22.301947333000143],[114.18165123800017,22.29441966400016],[114.17652428500006,22.291083075000145],[114.17188561300011,22.288723049000012],[114.16724694100016,22.29417552300005],[114.16822350400017,22.30548737200003],[114.16570071700008,22.31057363500004],[114.16488691500015,22.315212307000152],[114.15951582100008,22.315212307000152],[114.15951582100008,22.32225169500005],[114.15219160200016,22.328517971000093],[114.13819420700011,22.336004950000145],[114.12435957100004,22.342230536000113],[114.12354576900012,22.33714427299999],[114.11337324300004,22.352687893],[114.11101321700018,22.36595286700013],[114.10482832100004,22.369859117000132],[114.09750410200004,22.363023179000106],[114.07911217500006,22.36595286700013],[114.07829837300007,22.362860419000143],[114.07040449300021,22.362860419000143],[114.06723066500014,22.35899485900013],[114.05795332099999,22.361314195000105],[114.05022220099997,22.35899485900013],[114.03988691500015,22.35500722900015],[114.02051842500022,22.35036855700004],[114.01498457100004,22.35346100500011],[114.01498457100004,22.35899485900013],[113.9986271490002,22.35899485900013],[113.99187259200006,22.364081122000144],[113.982676629,22.366766669000057],[113.97673587300008,22.37921784100014],[113.97291100400017,22.379990953000075],[113.97063235800006,22.387071031000133],[113.96436608200023,22.38068268400012],[113.97461998800006,22.37205638200011],[113.95492597700004,22.369859117000132],[113.94483483200005,22.362087307000124],[113.93067467500023,22.369086005],[113.92595462300002,22.369086005],[113.91439863400004,22.376125393000066],[113.91830488400004,22.387844143000066],[113.91057376400008,22.39866771000005],[113.89698326900023,22.408758856000034],[113.90943444100004,22.418605861000128],[113.93067467500023,22.419826565000065],[113.94100996200004,22.426784572000045],[113.95411217500012,22.449489651000093],[113.97754967500012,22.458848374000024],[113.9986271490002,22.48855215100015],[114.00489342500018,22.48855215100015],[114.01270592500023,22.48611074400013],[114.01172936300004,22.48004791900003],[114.01115970100003,22.47288646],[114.01498457100004,22.47520579600014],[114.02678470100003,22.478257554000137],[114.0298771490001,22.478257554000137],[114.03142337300012,22.482245184000117],[114.03060957100004,22.487656968000163],[114.03060957100004,22.49551015800013],[114.04224694099999,22.50100332200016],[114.05795332099999,22.504868882],[114.06177819100012,22.508775132000082],[114.06576582100008,22.51585521000014],[114.07349694100017,22.518174546000107],[114.07829837300007,22.51972077000015],[114.08529707100016,22.522935289000102],[114.08236738400014,22.529364325000117],[114.09146447800016,22.534387919],[114.10841434700004,22.534387919],[114.11399540200001,22.52880686400009],[114.11709598800016,22.527566630000038],[114.12887821400007,22.5381086230001],[114.13817997200017,22.53934885700015],[114.14872196500008,22.5381086230001],[114.15388960900022,22.551854554000144],[114.16195113200015,22.560536194000107],[114.17321740100017,22.563946032000057]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Cyprus","sov_a3":"CYP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cyprus","adm0_a3":"CYP","geou_dif":0,"geounit":"Cyprus","gu_a3":"CYP","su_dif":0,"subunit":"Cyprus","su_a3":"CYP","brk_diff":0,"name":"Cyprus","name_long":"Cyprus","brk_a3":"CYP","brk_name":"Cyprus","brk_group":null,"abbrev":"Cyp.","postal":"CY","formal_en":"Republic of Cyprus","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cyprus","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":3,"mapcolor13":7,"pop_est":531640,"gdp_md_est":22700,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"CY","iso_a2":"CY","iso_a3":"CYP","iso_n3":"196","un_a3":"196","wb_a2":"CY","wb_a3":"CYP","woe_id":-90,"woe_id_eh":23424994,"woe_note":"WOE lists as subunit of united Cyprus","adm0_a3_is":"CYP","adm0_a3_us":"CYP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CYP.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[33.773989705000105,34.98866648400012],[33.777917115000065,34.98468739900012],[33.78256799400012,34.98468739900012],[33.7864954020001,34.98468739900012],[33.79114628100015,34.98241363600003],[33.79435022000021,34.97776275700014],[33.792799926000185,34.97776275700014],[33.788045694000196,34.97698761000013],[33.78494511000005,34.97621246400003],[33.78189568979698,34.97621246377106],[33.7818302740001,34.97622304900001],[33.78098613101045,34.97633815907473],[33.78019087800007,34.97931305000016],[33.77553999900013,34.98008819600007],[33.770889120000135,34.98008819600007],[33.76933882600022,34.98396392900004],[33.76541141800007,34.985565899000065],[33.759210246000094,34.98866648400012],[33.7614840090001,34.990268454000145],[33.76613488800015,34.990268454000145],[33.773989705000105,34.98866648400012]]],[[[33.74668855500019,35.00271084500003],[33.742792014000116,35.001232847000054],[33.73970165300008,35.00257648200012],[33.73876110800009,35.00526375200015],[33.74023910700018,35.010100838000156],[33.7413140150002,35.01372865300014],[33.746151101000095,35.01520665100013],[33.75206309600017,35.01440047000004],[33.75206309600017,35.004323207000034],[33.74668855500019,35.00271084500003]]],[[[33.921474244000166,35.0534170530001],[33.93077600100017,35.051091613000075],[33.94493534300014,35.051091613000075],[33.96209191900019,35.05739613900009],[33.980075317000086,35.05739613900009],[33.989480428000064,35.051866761000085],[34.00198612400007,35.04721588200012],[34.01190800000015,35.04881785000005],[34.01748905400004,35.051866761000085],[34.02196073004231,35.05700872106023],[34.02198326900012,35.05699290600002],[34.03589928500011,35.047186591000084],[34.05103600400011,35.03302643400015],[34.06218509200019,35.00568268400009],[34.07341556100013,34.98810455900015],[34.087087436000076,34.971909898000106],[34.099131707000055,34.96515534100017],[34.08521569100017,34.96434153900016],[34.05941816500015,34.966620184000035],[34.0345158210001,34.97247955900018],[34.02344811300006,34.98257070500013],[34.0115666020001,34.98761627800017],[33.95728600400011,34.98191966400019],[33.910166863000114,34.970160223000036],[33.899912957000055,34.96515534100017],[33.891856316000116,34.958156643000095],[33.891840639577055,34.9581390666995],[33.864423462000076,34.96298329700012],[33.845819946000084,34.95972768200015],[33.83806848100019,34.96370676700003],[33.85047082500009,34.97300852500014],[33.85904911300011,34.974662171000105],[33.85904911300011,34.99181874500006],[33.84034224400014,34.993369039000086],[33.82938684100023,35.0011721800001],[33.82938700000014,35.0011763850001],[33.83021366400007,35.02303131100014],[33.82235884700023,35.030059306000155],[33.79900109900009,35.03853424100005],[33.80437544700007,35.04954132100015],[33.813780558000104,35.055794169000066],[33.8271130790001,35.061271872000034],[33.83486454200013,35.05662099300015],[33.84116906700015,35.051091613000075],[33.85512170400014,35.0534170530001],[33.86762740100002,35.06049672400003],[33.874655396000065,35.06752471900013],[33.88013309800013,35.07305409800013],[33.8981164960002,35.061271872000034],[33.910518839000105,35.05739613900009],[33.921474244000166,35.0534170530001]]],[[[32.69803470800016,35.15723500600002],[32.7041325270001,35.1439024860001],[32.71271081600011,35.133773906000144],[32.728317098000076,35.12679758700013],[32.7548787850001,35.119769592000026],[32.775239298000116,35.11046783400009],[32.795599813000166,35.10261301700017],[32.806503540000136,35.094809876000156],[32.810275920000066,35.07992706400001],[32.810275920000066,35.07072865800011],[32.81585697400007,35.06277048700004],[32.82598555500013,35.0589464320001],[32.83456384200022,35.0589464320001],[32.86102217700014,35.06509592700017],[32.87347619600021,35.072278951000115],[32.8767318110001,35.07682647700007],[32.88293298300019,35.08778188100014],[32.89078780100013,35.091657613000095],[32.90019291200005,35.08778188100014],[32.90639408400014,35.080702210000126],[32.921948689000175,35.072278951000115],[32.93522953300007,35.072278951000115],[32.94840702400009,35.079151917],[32.96711389200007,35.094809876000156],[32.98514896600014,35.10881418900006],[33.00313236500003,35.115893860000156],[33.026386759000076,35.12762441100007],[33.03734216300015,35.13609934500006],[33.04674727400018,35.13775299100003],[33.07165531400008,35.13532419900015],[33.098217,35.130673320000184],[33.123073364000135,35.130673320000184],[33.13712935400022,35.13609934500006],[33.14348555500018,35.140078430000145],[33.14968672700015,35.14865671800008],[33.17387129700015,35.16266103200009],[33.18947758000016,35.16266103200009],[33.20281009900012,35.15801015300012],[33.21614261900001,35.15408274300016],[33.228544962000086,35.15335927400015],[33.238673544000136,35.14943186400008],[33.252109416000195,35.1369261680001],[33.26213464300011,35.12607411800006],[33.278567749000075,35.11821930000012],[33.301202027000016,35.11356842100004],[33.30905684400008,35.115893860000156],[33.31365604600009,35.12131988600005],[33.315258016000115,35.12912302700006],[33.32771203600012,35.1369261680001],[33.34802087500023,35.15490956600017],[33.3565991610001,35.15723500600002],[33.37303226700006,35.155684713000184],[33.39866377800021,35.15801015300012],[33.4159237060002,35.160335592000145],[33.42140140800009,35.15723500600002],[33.42140140800009,35.14472930900011],[33.42450199400011,35.129898174000076],[33.43235681200005,35.123645325],[33.44320886300014,35.11356842100004],[33.45726485200012,35.10106272400004],[33.45881514500016,35.094809876000156],[33.46036543700009,35.07760162400016],[33.45881514500016,35.061271872000034],[33.45881514500016,35.04168650300004],[33.45251062000014,35.01910390300016],[33.446309448000164,35.0011721800001],[33.44941003400018,34.987943014],[33.45881514500016,34.97776275700014],[33.469770548000014,34.97776275700014],[33.48620365400009,34.981638489000105],[33.493128296000094,34.99729644800006],[33.497004028000134,35.02608022100016],[33.502810574000165,35.03087005700009],[33.51028487100015,35.037035624000154],[33.51958663000008,35.04411529500008],[33.527441447000086,35.037035624000154],[33.527441447000086,35.01285105400008],[33.533642619000176,34.99957021100006],[33.54604496200014,34.99497100900011],[33.56413171400007,35.0011721800001],[33.57188317900008,35.014401347],[33.580564819000216,35.019930725],[33.59152022400011,35.018380432000086],[33.602992391000015,35.01207590800008],[33.61167403200008,35.01362620100009],[33.61952885000014,35.01683014000015],[33.630329224000064,35.01362620100009],[33.639786011000204,35.00975046800012],[33.66159346500015,35.000345357000086],[33.67409916200003,34.99879506400008],[33.685002890000106,34.99729644800006],[33.70055749400015,34.98866648400012],[33.70293461100019,34.987943014],[33.70151953599278,34.97289002502383],[33.701508009000094,34.97288646],[33.68034915500019,34.9662946640001],[33.654063347000175,34.9447289080001],[33.64665774800008,34.93195221600014],[33.639821811000076,34.91567617400012],[33.63477623800023,34.897650458],[33.632985873000024,34.87982819200012],[33.63502037900017,34.86074453300013],[33.63257897200012,34.85248444200015],[33.62305748800023,34.84906647300012],[33.61695397200012,34.845282294000114],[33.610036655000066,34.82746002800003],[33.60564212300008,34.821763414000074],[33.59017988400014,34.81806061400012],[33.55697675900015,34.81777578300007],[33.54420006600017,34.81500885600012],[33.535492384000094,34.80752187700015],[33.525157097000175,34.79596588700004],[33.513194207000055,34.78546784100014],[33.499522332000225,34.78082916900002],[33.46762129000009,34.77431875200013],[33.43864993600013,34.76276276200012],[33.41521243600002,34.75844961100002],[33.40015709700012,34.77338288000006],[33.39918053500017,34.74530670800005],[33.37086022200012,34.730861721000096],[33.29656009200019,34.71816640800013],[33.28158613400015,34.71234772300009],[33.272552931000035,34.707342841000056],[33.26010175900015,34.70050690300011],[33.24561608200011,34.69822825700005],[33.173594597000175,34.705145575000145],[33.10189863400015,34.69822825700005],[33.08643639400023,34.694810289000046],[33.072276238000114,34.686753648000106],[33.02588951900023,34.651312567],[33.015635613000114,34.63442617400001],[33.01563463618166,34.63442454106642],[32.990730021000076,34.63442454100006],[32.96954268300013,34.632047425],[32.96251468900018,34.62501943000011],[32.95559004700013,34.628895162000056],[32.95403975500019,34.64295115200018],[32.965615276000136,34.65158111600011],[32.970266154000086,34.646103415000034],[32.989799845000135,34.646103415000034],[32.98752608200019,34.67338857100005],[32.95471154800006,34.677315979000106],[32.94225752800011,34.66713572200014],[32.93605635600014,34.65773061099999],[32.92975183100012,34.66248484300009],[32.91724613500011,34.66713572200014],[32.91366655000016,34.66027990800008],[32.88450356500019,34.666606879000184],[32.86561305500018,34.67873549600016],[32.86043006800017,34.68762061500017],[32.85968964200017,34.70057808100013],[32.85376622900017,34.69946744100018],[32.845991750000024,34.69946744100018],[32.840808764000116,34.69946744100018],[32.83562577700016,34.69983765400018],[32.8322938580001,34.70094829400013],[32.82748108500002,34.69650573400018],[32.8226683120001,34.691322748000125],[32.81933639200011,34.68762061500017],[32.806008714000114,34.68576954900011],[32.79860444800008,34.670961017000096],[32.778612929000104,34.67318229700014],[32.76676610400008,34.67614400300012],[32.76010226500019,34.66910995000016],[32.760671420000136,34.65322500200015],[32.749196811000076,34.64984772300015],[32.70736738400015,34.64541250200007],[32.66578209700017,34.65216705900009],[32.626231316000116,34.66648997599999],[32.575043165000096,34.692816473],[32.55665123800022,34.69936758000007],[32.53581790500007,34.70355866100011],[32.49333743600019,34.707261460000055],[32.475840691000116,34.713202216000084],[32.45899498800023,34.72186920800008],[32.419118686000076,34.74799225500011],[32.413340691000116,34.75348541900014],[32.407074415000146,34.78241608300006],[32.40300540500019,34.78705475499999],[32.40235436300022,34.79645416900011],[32.37916100400011,34.84906647300012],[32.36793053500011,34.857001044000114],[32.34669030000012,34.86859772300012],[32.33765709700012,34.876410223],[32.3294376960001,34.886419989],[32.32341556100019,34.898423570000105],[32.32276451900023,34.911363023000106],[32.331390821000156,34.92422109600015],[32.31218509200019,34.95026276200012],[32.31031334700011,34.960760809000085],[32.31031334700011,34.98257070500013],[32.30591881600017,35.00141022300009],[32.28419030000006,35.03237539300004],[32.27613366000017,35.047756252000156],[32.27173912900017,35.07282135600015],[32.275157097000175,35.091050523000135],[32.286631707000225,35.09715403900013],[32.30689537900011,35.08559804900001],[32.33668053500011,35.058742580000015],[32.35336347700016,35.04791901200012],[32.37232506600017,35.04148997600011],[32.413828972000175,35.043036200000145],[32.44996178500011,35.05882396],[32.479665561000076,35.08295319200003],[32.501963738000114,35.109198309000035],[32.516856316000116,35.14020416900014],[32.52759850400017,35.157049872000144],[32.54346764400006,35.16648997599999],[32.54542076900022,35.17121002800009],[32.5481876960001,35.17597077000009],[32.55396569100017,35.17804596600011],[32.55892988400009,35.176906643000066],[32.56649824300004,35.172715562000135],[32.56820722700016,35.17177969000014],[32.57471764400023,35.17059967700011],[32.584808790000096,35.172512111000074],[32.59261478700009,35.16111073800006],[32.60749759900014,35.15408274300016],[32.62222538200015,35.151808980000126],[32.63395593200002,35.15408274300016],[32.64646162900013,35.16111073800006],[32.653489624000116,35.17433990600016],[32.65981271402657,35.18708213025526],[32.65984134200008,35.187079169000114],[32.691548895643365,35.18370515985826],[32.69803470800016,35.15723500600002]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Dhekelia Sovereign Base Area","adm0_a3":"ESB","geou_dif":0,"geounit":"Dhekelia Sovereign Base Area","gu_a3":"ESB","su_dif":0,"subunit":"Dhekelia Sovereign Base Area","su_a3":"ESB","brk_diff":0,"name":"Dhekelia","name_long":"Dhekelia","brk_a3":"ESB","brk_name":"Dhekelia","brk_group":null,"abbrev":"Dhek.","postal":"DH","formal_en":null,"formal_fr":null,"note_adm0":"U.K. Base","note_brk":null,"name_sort":"Dhekelia Soverign Base Area","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":7850,"gdp_md_est":314,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"woe_id_eh":-99,"woe_note":"No WOE equivalent.","adm0_a3_is":"GBR","adm0_a3_us":"ESB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":5,"tiny":3,"homepart":-99,"filename":"dhekelia.geojson"},"geometry":{"type":"Polygon","coordinates":[[[33.905867961000126,35.09088246600004],[33.913619425000036,35.09088246600004],[33.92147424400014,35.080702210000055],[33.91444624900003,35.073054098000085],[33.90824507700006,35.070728658000064],[33.90652383000014,35.06912157600004],[33.90650571144636,35.069104659557205],[33.898116496000114,35.06127187200008],[33.880133098000044,35.073054098000085],[33.87465539600004,35.06752471900009],[33.86762740100005,35.060496724000075],[33.85512170400011,35.053417053000146],[33.84116906700012,35.05109161300001],[33.83486454200005,35.05662099300011],[33.82711307900013,35.06127187200008],[33.813780558000076,35.05579416900008],[33.80437544700004,35.049541321000106],[33.799001099000066,35.038534241],[33.8223588470002,35.03005930600011],[33.83021366400004,35.023031311000096],[33.829387,35.001176385000036],[33.829386841000144,35.00117218000005],[33.84034224400011,34.99336903900013],[33.859049113000076,34.99181874500002],[33.859049113000076,34.97466217100006],[33.85047082500006,34.97300852500009],[33.83806848100011,34.963706767000076],[33.84581994600012,34.95972768200008],[33.86442346200005,34.96298329700007],[33.89184063957702,34.95813906669946],[33.88379967500009,34.94912344000002],[33.87452233200014,34.94122955900005],[33.86231530000009,34.937892971000025],[33.84742272200009,34.94245026200008],[33.81967207100013,34.96474844000002],[33.80420983200008,34.9726016300001],[33.781895689796954,34.97621246377101],[33.78494511000008,34.976212464000064],[33.78804569400012,34.976987610000094],[33.7927999260001,34.97776275700008],[33.794350220000126,34.97776275700008],[33.79114628100006,34.98241363600005],[33.78649540200007,34.98468739900008],[33.78256799400009,34.98468739900008],[33.77791711500004,34.98468739900008],[33.773989705000076,34.98866648400004],[33.76613488800007,34.990268454000095],[33.76148400900007,34.990268454000095],[33.75921024600006,34.98866648400004],[33.76541141800004,34.98556589900011],[33.76933882600013,34.98396392900008],[33.77088912000005,34.980088196000025],[33.7755399990001,34.980088196000025],[33.7801908780001,34.979313050000115],[33.780986131010366,34.976338159074686],[33.78093509200011,34.976345119000115],[33.760427280000044,34.97968170800007],[33.717295769000145,34.977769273],[33.70151953599276,34.97289002502379],[33.70293461100016,34.98794301400005],[33.711461222000075,34.98556589900011],[33.7154403080001,34.9972964480001],[33.6997306720001,35.00272247300006],[33.696630086000084,35.00897532200008],[33.70531172700004,35.01522817000008],[33.70221114100007,35.02225616500007],[33.68500289000008,35.02928416000009],[33.679443836000125,35.03389111000007],[33.67943459900016,35.033898764000064],[33.675649455000034,35.03703562400008],[33.67409916200006,35.04644073400004],[33.67885339400004,35.05579416900008],[33.694459675000076,35.058171285000036],[33.70531172700004,35.06674957300007],[33.71471683800007,35.06674957300007],[33.719367716000136,35.06277048700008],[33.711461222000075,35.040963033000054],[33.70758548900005,35.02928416000009],[33.71848921700018,35.03238474500003],[33.73967655400014,35.047215882000074],[33.76613488800007,35.031609599000035],[33.7755399990001,35.04018788700006],[33.78649540200007,35.038534241],[33.794350220000126,35.04018788700006],[33.79827762800016,35.05264190700004],[33.824012492000065,35.06674957300007],[33.83486454200005,35.0635973110001],[33.842719360000046,35.05662099300011],[33.85357141100013,35.058171285000036],[33.86690393000003,35.06674957300007],[33.87155481000008,35.073054098000085],[33.87692915900004,35.07682647700011],[33.87155481000008,35.08545644200006],[33.87155481000008,35.100235901000076],[33.876205689000074,35.11899444600007],[33.88943485500005,35.11899444600007],[33.891811971000095,35.11046783400005],[33.89883996600008,35.1088141890001],[33.90359419800018,35.09951243100008],[33.905867961000126,35.096360169000036],[33.905867961000126,35.09088246600004]],[[33.74279201400009,35.001232847],[33.74668855500016,35.00271084500008],[33.752063096000136,35.004323207000084],[33.752063096000136,35.014400470000055],[33.74615110100012,35.01520665100006],[33.74131401500011,35.01372865300007],[33.74023910700014,35.01010083800011],[33.73876110800006,35.0052637520001],[33.739701653000104,35.00257648200007],[33.74279201400009,35.001232847]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Georgia","sov_a3":"GEO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Georgia","adm0_a3":"GEO","geou_dif":0,"geounit":"Georgia","gu_a3":"GEO","su_dif":0,"subunit":"Georgia","su_a3":"GEO","brk_diff":0,"name":"Georgia","name_long":"Georgia","brk_a3":"GEO","brk_name":"Georgia","brk_group":null,"abbrev":"Geo.","postal":"GE","formal_en":"Georgia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Georgia","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":3,"mapcolor13":2,"pop_est":4615807,"gdp_md_est":21510,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"GG","iso_a2":"GE","iso_a3":"GEO","iso_n3":"268","un_a3":"268","wb_a2":"GE","wb_a3":"GEO","woe_id":23424823,"woe_id_eh":23424823,"woe_note":"Exact WOE match as country","adm0_a3_is":"GEO","adm0_a3_us":"GEO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GEO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[40.47983361800013,43.50874074299999],[40.519624471000014,43.50517506900009],[40.550837036000104,43.511247051000154],[40.61553592900006,43.535845032000125],[40.651916138000075,43.538971456000084],[40.681061645000085,43.528067729000114],[40.68996557600016,43.523129317000084],[40.740179484000144,43.4952790330001],[40.842705525000184,43.46938913999998],[40.87495161900008,43.455643209000144],[41.01179081300003,43.37541554800005],[41.042486613000186,43.36983449400013],[41.14666630000007,43.37985972100016],[41.180772746000144,43.37469207800014],[41.21312219300014,43.36278066],[41.24392134600012,43.34420298200017],[41.27875126100017,43.33319590300009],[41.35027144300014,43.34335032200012],[41.38065718500016,43.334772034000096],[41.38975223800011,43.324875997000035],[41.403808228000145,43.30151825000017],[41.41310998500009,43.291286317000086],[41.42757938600013,43.2831989540001],[41.479772583000084,43.27123586100005],[41.506127564000074,43.25978953100004],[41.55056929500014,43.226277365000115],[41.57754439300007,43.215296123000044],[41.61413130700012,43.213022360000124],[41.68740848800021,43.22020538300007],[41.723788696000184,43.21723398900015],[41.7889010010002,43.20356557300006],[41.82032027200014,43.20124013300004],[41.88998010300017,43.20702789300019],[41.91933231600015,43.205942689],[41.94827111800012,43.2000774130001],[41.979690389000126,43.18865692100009],[42.011316365000226,43.18186147100006],[42.043355754000146,43.18056956000011],[42.075291789000204,43.18527211500015],[42.15433396100016,43.217497744000056],[42.15983443200017,43.219740296000154],[42.18536259000021,43.2254763800001],[42.354551229000066,43.23601837200005],[42.36256010000008,43.23519446400003],[42.42286747300014,43.22899037700016],[42.4797115480001,43.20090423600011],[42.50606652900015,43.18155141199999],[42.53490197800019,43.165066630000084],[42.59588016700016,43.140029399000085],[42.615207153000114,43.136980490000056],[42.629366496000074,43.14126963400003],[42.65623824000007,43.159795634000076],[42.673601522000155,43.16589345300012],[42.70491744000017,43.166436056000165],[42.75152958100014,43.176952210000124],[42.79132043400014,43.176177063000026],[42.82976770000019,43.16876149500008],[42.85767297300018,43.155454814000095],[42.88578495300012,43.135843608000144],[42.914827108000196,43.12194264800017],[43.000093221000185,43.09866241500005],[43.000196574000114,43.08535573300004],[42.992548462000144,43.06881927600013],[42.989757935000085,43.05267039000016],[42.99885298600023,43.0422059130001],[43.04825565600018,43.01696197500014],[43.15558760600001,42.94239288400008],[43.175228461000216,42.93447107200002],[43.194344930000085,42.92676076300013],[43.386178313000045,42.88688235600007],[43.47959883700017,42.86746205700002],[43.51742598500007,42.86045990000004],[43.586258992000154,42.83562937400008],[43.60300215700007,42.82480316200003],[43.64434330200001,42.78857798299999],[43.66284346600017,42.77984466600013],[43.75596439600017,42.76312734],[43.782525649000064,42.75321298300018],[43.80061283400019,42.746461690000054],[43.81177494300013,42.71726450700011],[43.788727254000065,42.69307993600013],[43.75379398600009,42.67465728800015],[43.72568200700002,42.654400127000045],[43.722581421000115,42.6248670450001],[43.75110681200013,42.598744609000114],[43.79616866000018,42.589830424000084],[43.84500288900002,42.58703989700013],[43.885362183000126,42.579210918],[43.908160536000224,42.566282989000065],[43.92081221600003,42.55910878600007],[43.93972578900011,42.55220998200018],[43.95843265800008,42.55440623000008],[43.973212118000184,42.56399220800007],[43.998016805000105,42.58936533600017],[44.011504354000095,42.60032074000004],[44.055067586000206,42.61530690500002],[44.15082401600014,42.618665874000115],[44.18580345900014,42.626508101000084],[44.197384481000114,42.629104512000154],[44.211350730000134,42.63963427099999],[44.230147339000176,42.65380584800009],[44.248647501000136,42.68199534200012],[44.27200524900016,42.70238169400007],[44.360682007000065,42.70375111900013],[44.401403035000016,42.713517965],[44.479227743000166,42.744291280000155],[44.50811486800009,42.75028574600019],[44.558292684000065,42.75310211300014],[44.600977417000166,42.74912302700007],[44.638758823000074,42.74014876600016],[44.642421916000124,42.73927866700011],[44.67942224200007,42.72367238400007],[44.69502852400009,42.71421559700009],[44.72448409,42.6910387170001],[44.736369670000066,42.677551168000136],[44.76107100400023,42.619234315000185],[44.77347334800001,42.60964833700008],[44.78231001700013,42.61665049300008],[44.798484741,42.67173756900014],[44.82742354300009,42.71796213800012],[44.83367639200017,42.7340851850001],[44.859359579000085,42.7595099900001],[44.902974487000186,42.75307627400015],[45.01211511300008,42.69530202300014],[45.029788452000076,42.68876495400017],[45.04808190900022,42.6858969120001],[45.06699548300017,42.688454895000106],[45.07601819100008,42.69141191700005],[45.10389245600018,42.70054718000007],[45.12296106000011,42.70227834100013],[45.15536218200006,42.693260804000104],[45.184197632000206,42.67483815600009],[45.2826929120001,42.586393941000054],[45.29364831500007,42.572906393],[45.30157131900014,42.55984209600016],[45.31256189000007,42.54171966500003],[45.32269047000014,42.53011830700008],[45.355970093000195,42.51996388800002],[45.39855147300008,42.5243822230001],[45.47927006000012,42.542339783],[45.53683760600015,42.54135793100012],[45.620656779000086,42.53037668900005],[45.698688192000105,42.507587382000146],[45.73961592600014,42.471465556000126],[45.7395062850002,42.470646785000056],[45.73641198700008,42.447539368000136],[45.62138024900011,42.22447804800014],[45.631405477000015,42.2011719770001],[45.66158451300012,42.186702576000144],[45.701788778000065,42.172749939000155],[45.811601196000105,42.115492452000026],[45.881364380000065,42.10203074200013],[45.895161987000186,42.0918763230001],[45.92348067200007,42.039631450000016],[45.934126017000175,42.02849517900007],[45.94756188900013,42.02291412400017],[45.96637211100003,42.02206146300013],[45.97350345900006,42.024154358000104],[45.98673262600008,42.031905823],[45.99515588400006,42.03345611600004],[46.00161543800013,42.03097564800005],[46.01835860200018,42.02004608200018],[46.026730184000115,42.016790467000085],[46.04481693500023,42.01772064200004],[46.058459513000145,42.020330302000055],[46.06827803500002,42.015317688],[46.07499597200015,41.99348439500007],[46.09918054200014,41.985061137000066],[46.12987634300006,41.98449269700002],[46.18858077000012,41.993536072],[46.1888908280001,41.9936394250001],[46.189200887000105,41.99376861600014],[46.19767582200009,41.9954997760001],[46.20615075700019,41.99609405500017],[46.21457401500018,41.9954997760001],[46.22434086100023,41.99348439500007],[46.25048913600003,41.97772308400009],[46.29415572100018,41.938629863000145],[46.32262943500015,41.929018047000156],[46.382057333000176,41.92524566700002],[46.40655196100013,41.91503957100015],[46.43089156100004,41.89044159000015],[46.39275435400012,41.8316854860001],[46.37130863500008,41.80569224100004],[46.32831384300019,41.766418152000156],[46.313741089000104,41.75665130600011],[46.297773071000194,41.75081187000005],[46.276947470000124,41.749313253000125],[46.230128622000194,41.75732310000011],[46.20832116700009,41.755514425000015],[46.18899418200013,41.74014068600003],[46.17953739400016,41.70587921200003],[46.180002482000106,41.655158793000126],[46.19276656100007,41.610174459000014],[46.219689982000176,41.59330210400013],[46.22847497500007,41.598728129],[46.23343591300008,41.60795237300011],[46.24005049700011,41.61549713200016],[46.25389978000007,41.61591054300008],[46.25617354300019,41.610329489000044],[46.27839440900012,41.57839345300009],[46.27987105800017,41.57117159000001],[46.287851196000105,41.532143046000115],[46.29673954200021,41.510387268],[46.313947794000086,41.493747457],[46.36624434500018,41.46656565400009],[46.37792321800006,41.46248321600008],[46.39828373200007,41.45871083600015],[46.44510258000011,41.42594797800017],[46.54246097800014,41.39499379500013],[46.591553589000085,41.372927959000044],[46.607366578000125,41.345022685000075],[46.62286950700022,41.349621887000026],[46.62984053200009,41.34613637500002],[46.631034383000014,41.345539449000015],[46.637752320000146,41.33696116200018],[46.65707930500011,41.32063140900014],[46.688498576000114,41.284354553000085],[46.694803101000076,41.26978179900011],[46.69170251400013,41.268541565000085],[46.68343428600004,41.269471741000146],[46.67464929200016,41.261668600000014],[46.672685588000064,41.25396881100012],[46.67160038200003,41.23645050100008],[46.66948164900006,41.229887594],[46.66359053500016,41.22353139300016],[46.65036136900019,41.21417795800012],[46.64447025500007,41.20797678600003],[46.63475508600007,41.181053365000125],[46.62948409000009,41.146740214000104],[46.62111250800015,41.11459747300016],[46.615538650000104,41.108665934],[46.601785523000075,41.09403025300015],[46.58214847900015,41.09165313700014],[46.563131551000104,41.09558054600011],[46.543546183000075,41.097027487],[46.52241052200011,41.08700225800008],[46.51114506000007,41.07098256500002],[46.50556400500014,41.05527292900014],[46.496779012000076,41.04483429000011],[46.47491988100009,41.044110820000114],[46.456988159000076,41.05243072500018],[46.42903120900016,41.08095611600011],[46.41264978000018,41.09185984300008],[46.353118531000206,41.10653595000018],[46.3323446040001,41.11588938400003],[46.27343347200005,41.15630035400001],[46.244391317000094,41.18374054000004],[46.22857832800017,41.195419413000124],[46.2105949300001,41.20017364500002],[46.13540572100007,41.19991526300005],[46.11313317900013,41.196039531000096],[46.08760799100017,41.18365905100016],[46.061353394000065,41.17092478500016],[46.04161299600016,41.165447083000075],[46.017428426000116,41.16379343700014],[45.9691626380002,41.16828928600016],[45.82074792500006,41.208803610000146],[45.77033685200021,41.23210190300007],[45.75108809400015,41.24099802700003],[45.70974694800011,41.26771474300006],[45.68587243600021,41.296240133000126],[45.70809330300008,41.31711741200009],[45.73103763900011,41.32326690700016],[45.74530033400018,41.32915802000015],[45.74406010000021,41.335359192000155],[45.720702352000075,41.34238718700006],[45.65559004700012,41.35236073900016],[45.51182621300015,41.39458038300013],[45.47927006000012,41.417679749000015],[45.464800659000076,41.43018544500002],[45.450021200000066,41.43220082700015],[45.41694828300015,41.424604391000095],[45.396794475000064,41.42326080400012],[45.381239868000165,41.42558624300007],[45.33309559700015,41.44435245600009],[45.314422241000074,41.45163116500014],[45.2817110600001,41.4529230750001],[45.24961999600012,41.4444998170001],[45.097833500000064,41.34991880900019],[45.00239994400013,41.29045237300014],[44.98999759900008,41.28445790700012],[44.967363322000125,41.26900665300012],[44.95516768400009,41.262702128000015],[44.91723718300008,41.26177195200016],[44.820705607000065,41.273347474],[44.80127526900017,41.25851633700007],[44.80954349800001,41.244408672000034],[44.84706058800012,41.23076609400011],[44.85382048600015,41.22351397000013],[44.85770593300012,41.21934560200013],[44.8477840570001,41.20890696200008],[44.82153243000019,41.206219788000155],[44.67492639100007,41.208493551000075],[44.63312015800008,41.221050924000096],[44.61286299600019,41.223117981000044],[44.59136560100015,41.215779928000146],[44.57844649300014,41.20280914400002],[44.56625085500022,41.18694447900013],[44.55152307100022,41.17702260400013],[44.53100752800012,41.18146677700004],[44.52552982600016,41.18906321200011],[44.521912476000146,41.19929514600007],[44.516641480000054,41.20683990500014],[44.50589278200013,41.20658152300014],[44.49938155100003,41.20280914400002],[44.479227743000166,41.18580759700002],[44.45493982000008,41.18048492400008],[44.432460571000064,41.1816734830001],[44.41060144100001,41.18771962500013],[44.35727136300014,41.212162578000076],[44.344920695000184,41.21324778200007],[44.33308679200016,41.21035390200008],[44.324921916000136,41.204824524000074],[44.31773889100012,41.198571676000185],[44.30848881000006,41.193817444],[44.284976034000096,41.190871887000085],[44.26647587100015,41.19619456000014],[44.218106731,41.221567688000114],[44.19097660400004,41.23004262300013],[44.180331258000166,41.22993927],[44.16844567900014,41.22358306900015],[44.16586185700012,41.21614166300007],[44.16519006400003,41.20766672800015],[44.16007409700015,41.1978998820001],[44.144364461000094,41.18606597899999],[44.12472741700017,41.178056132],[44.1036434320001,41.17516225200002],[44.061268758000125,41.184153951000056],[44.04132165500018,41.18255198200004],[44.00111739100006,41.16885772700003],[43.97818639000016,41.16461706200006],[43.97775529000009,41.16453733800013],[43.95584883700005,41.16048614500012],[43.863244670000114,41.158987528000026],[43.82035323100015,41.14549998000017],[43.7737410890002,41.11449412100013],[43.754155721000046,41.10824127200014],[43.729712769000145,41.10669097900002],[43.566621948,41.12405426100004],[43.52414392100016,41.122814026000086],[43.4701420490002,41.10617421500008],[43.4603235270001,41.104520569000115],[43.450453328000066,41.10467559900017],[43.44042810000022,41.10658762600009],[43.451796916,41.13258087200013],[43.43758589700016,41.156197001000166],[43.41055912200008,41.17516225200002],[43.38327396700018,41.187202861000095],[43.35175134300002,41.193610738000025],[43.32260583500013,41.1920604460001],[43.230621785,41.17263010700013],[43.21620406100013,41.180536601000185],[43.192226196000064,41.224978333000145],[43.172020712000204,41.24234161400007],[43.15233199100007,41.24415028900016],[43.13031783000005,41.242289938000155],[43.10313602700008,41.24880116800013],[43.1572412510001,41.269730123000116],[43.17186568200023,41.27934194000012],[43.18535323100022,41.29381134100005],[43.18400964400004,41.29897898400016],[43.15476078300011,41.30187286400014],[43.12390995300021,41.31293162100014],[43.075644165000114,41.344867656000034],[43.002056925,41.3826948050001],[42.98758752400019,41.394683736000054],[42.957718546000166,41.43700673400015],[42.949967082000086,41.44367299400006],[42.94107873600015,41.4463084930001],[42.93622115100001,41.450235901000056],[42.932190389000226,41.45478342700001],[42.92609257000018,41.45907257100008],[42.896637004000155,41.46656565400009],[42.888988891000196,41.46997629800001],[42.88072066200007,41.48124176099999],[42.875139608,41.493695781000085],[42.868008260000096,41.50020701100014],[42.85457238800015,41.4937991340001],[42.82997440600016,41.4725084440001],[42.81116418500008,41.47715932300018],[42.792147257000096,41.492868958000045],[42.766515747000106,41.50434112500007],[42.77488732900011,41.514263001000145],[42.79462772600007,41.52682037400016],[42.80268925000016,41.53410675100007],[42.80682336400017,41.542995097000144],[42.808890422000125,41.552916972000055],[42.812197714000064,41.56299387700001],[42.819949178000144,41.572347311000144],[42.80093225100009,41.579220276],[42.66099247200023,41.58826365200015],[42.61055627400012,41.58505971300009],[42.590913541000106,41.58016907299999],[42.58664757525943,41.57910693488007],[42.58523482200005,41.57875518800007],[42.565184367000114,41.56712799100002],[42.55495243300007,41.55033315100014],[42.54554732300007,41.50961212200009],[42.535522095000054,41.493489075000106],[42.51381799300023,41.47622914700012],[42.48384566200011,41.44217437700017],[42.46307173700009,41.43183909200014],[42.45103257600013,41.431370354000094],[42.43785363800012,41.43085723900002],[42.262463827000175,41.48232696600017],[42.2132678630002,41.48020823200001],[42.18928999800019,41.481706849000105],[42.17265018700007,41.493489075000106],[42.15838749100006,41.499896953000146],[42.14319462100016,41.500258688000045],[42.1117753500001,41.493489075000106],[42.09751265500003,41.49834665900012],[42.08345666500023,41.500103658000015],[42.06940067600013,41.49860504200011],[42.05493127500009,41.493489075000106],[42.01958459400018,41.485065817000034],[41.9479610600001,41.50558136000011],[41.907756796000086,41.493489075000106],[41.89401086400008,41.48553090500015],[41.86269494600006,41.45178619400018],[41.82259403500004,41.42599965400007],[41.812982218000144,41.42181386300014],[41.80078658100009,41.425689596],[41.7609957280001,41.45354319300016],[41.747766561000134,41.456850485000146],[41.71851770100008,41.459589335000096],[41.7068388270001,41.46315500900006],[41.70260135900011,41.46945953400008],[41.70280806500008,41.47762441100009],[41.70394494700011,41.48511749300003],[41.70260135900011,41.489044902],[41.694953247000086,41.489096578000115],[41.66983850100016,41.48046661400017],[41.63996952400012,41.478709615000085],[41.62725712100009,41.48051829000009],[41.520762566000116,41.5142276065002],[41.58627363400015,41.602728583000086],[41.61573326900023,41.63263580900015],[41.67603600400016,41.66217682500003],[41.69288170700011,41.692287502000156],[41.739756707000225,41.74990469000012],[41.742360873000024,41.76166413],[41.74244225400011,41.77069733300003],[41.743907097000175,41.778631903000175],[41.75001061300006,41.78750234600004],[41.76628665500018,41.804185289000074],[41.771820509000094,41.81256745000003],[41.77393639400023,41.82160065300003],[41.77393639450017,41.90260981100012],[41.77393639400023,41.90261465100018],[41.77393639400023,41.90692780199999],[41.76197350400011,41.969875393],[41.76026451900012,41.99258047100006],[41.75570722700015,42.00641510600015],[41.715261264000134,42.059352932000095],[41.684906446000156,42.09894440300006],[41.67432701900006,42.10553620000003],[41.66407311300023,42.113959052000084],[41.65919030000006,42.13300202000006],[41.65723717500006,42.16705963700018],[41.64918053500011,42.212225653000026],[41.596202019000174,42.34943268400017],[41.592295769000174,42.35541413],[41.58521569100011,42.36286041900017],[41.558360222,42.38279857000005],[41.554860873000024,42.389837958000115],[41.55119876400008,42.406439520000085],[41.55119486287569,42.40645742097304],[41.500173373000194,42.64057038],[41.482758009000094,42.68024323100012],[41.457367384000094,42.713690497000165],[41.42432701900022,42.73989492400001],[41.38347415500019,42.757269598],[41.307302280000016,42.76764557500008],[41.291026238000114,42.77435944200012],[41.274912957000105,42.785305080000015],[41.25074303500011,42.79523346600011],[41.22535241000017,42.80231354400017],[41.2053328790001,42.804429429],[41.193695509000094,42.801906643000066],[41.173594597000175,42.79279205900015],[41.16089928500011,42.790838934000035],[41.15023847700016,42.7956403670001],[41.104746941000116,42.84658437700004],[41.081797722,42.908148505000085],[41.040293816000116,42.96133047100007],[41.02312259200019,42.98997630400014],[40.998383009000094,42.98944733300006],[40.95899498800023,42.97638580900018],[40.93376712300008,42.98273346600003],[40.90398196700008,43.01634349200005],[40.8865666020001,43.02415599200013],[40.886241082000055,43.02928294500005],[40.86280358200011,43.05898672100007],[40.85596764400006,43.063055731000034],[40.78305097700016,43.08417389500012],[40.68287194100011,43.09430573100009],[40.636241082000225,43.092474677000105],[40.60401451900006,43.08649323100009],[40.591807488000114,43.085638739],[40.57992597700016,43.08881256700006],[40.560720248000194,43.10297272300009],[40.55054772200006,43.10610586100016],[40.54607181100019,43.10883209800012],[40.528981967000014,43.122259833000115],[40.52019290500019,43.12726471600016],[40.51026451900006,43.12995026200004],[40.478526238000114,43.134019273000106],[40.3982853520001,43.162339585000055],[40.36117597700015,43.16547272300012],[40.33513431100018,43.14085521000011],[40.32504316500015,43.14883047100007],[40.31031334700006,43.17572663000006],[40.30103600400011,43.18866608300006],[40.27833092500006,43.20551178600005],[40.26840254000015,43.21637604400014],[40.2727970710001,43.24799225500011],[40.257172071000156,43.27741120000003],[40.23519941500015,43.30442942900008],[40.21908613400014,43.319037177],[40.18824303500011,43.329575914000046],[40.13347415500007,43.34162018400015],[40.101328972,43.36517975500003],[40.08692467500006,43.370306708000115],[40.040782097,43.375799872000144],[40.009776238000114,43.38515859600009],[39.98601321700019,43.388983466000084],[39.985976355423105,43.38898960966709],[39.99128462700017,43.40631805500014],[40.05918746000012,43.535199077000144],[40.07283003800015,43.55106374200006],[40.09670454900012,43.56263926200002],[40.16429732300016,43.57584259000011],[40.23313033100007,43.575765076],[40.47983361800013,43.50874074299999]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Indonesia","sov_a3":"IDN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Indonesia","adm0_a3":"IDN","geou_dif":0,"geounit":"Indonesia","gu_a3":"IDN","su_dif":0,"subunit":"Indonesia","su_a3":"IDN","brk_diff":0,"name":"Indonesia","name_long":"Indonesia","brk_a3":"IDN","brk_name":"Indonesia","brk_group":null,"abbrev":"Indo.","postal":"INDO","formal_en":"Republic of Indonesia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Indonesia","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":11,"pop_est":240271522,"gdp_md_est":914600,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"ID","iso_a2":"ID","iso_a3":"IDN","iso_n3":"360","un_a3":"360","wb_a2":"ID","wb_a3":"IDN","woe_id":23424846,"woe_id_eh":23424846,"woe_note":"Exact WOE match as country","adm0_a3_is":"IDN","adm0_a3_us":"IDN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"IDN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.59742272200016,-10.60116952899989],[121.61410566500003,-10.602471612999892],[121.62159264400006,-10.60133228999986],[121.63331139400006,-10.604180596999894],[121.63111412900015,-10.61532968499992],[121.61500084699999,-10.626641533999901],[121.59522545700005,-10.634535414999874],[121.57455488400015,-10.639825127999854],[121.5527449880001,-10.640394789999917],[121.53142337300002,-10.638441664999872],[121.52719160200006,-10.629571221999825],[121.54102623800023,-10.61484140399993],[121.56495201900005,-10.603692315999822],[121.59742272200016,-10.60116952899989]]],[[[123.3715926440001,-10.571709893999824],[123.36133873800016,-10.58033619599982],[123.35596764400013,-10.581231377999913],[123.3593856130001,-10.590752862999821],[123.3676863940001,-10.591973565999837],[123.37875410200004,-10.590427341999884],[123.39014733200011,-10.591485283999845],[123.41309655000008,-10.604587497999901],[123.42042076900012,-10.619073174999855],[123.41732832100004,-10.663506768999866],[123.40919030000005,-10.679131768999852],[123.38941491000016,-10.680108330999827],[123.36654707100014,-10.675469658999901],[123.34864342500013,-10.674086195999832],[123.33155358200018,-10.682305596999825],[123.2768660820001,-10.725030205999843],[123.267425977,-10.729424737999821],[123.25473066500003,-10.733086846999868],[123.24341881600004,-10.737725518999895],[123.23878014400022,-10.745375257999825],[123.23780358200021,-10.768812757999811],[123.2358504570001,-10.778985283999845],[123.23194420700011,-10.789483330999829],[123.20915774800007,-10.813083591999854],[123.17701256599999,-10.820407809999864],[123.13982181100002,-10.822686455999843],[122.98804772200005,-10.865004164999931],[122.96753991000013,-10.875909112999821],[122.95769290500019,-10.888116143999895],[122.97169030000022,-10.899346612999892],[122.97169030000022,-10.906182549999912],[122.88021894600004,-10.922621351999808],[122.84180748800011,-10.92107512799987],[122.82097415500013,-10.893243096999896],[122.81470787900015,-10.803806247999901],[122.81006920700023,-10.784844658999887],[122.81251061300004,-10.778415622999873],[122.83334394600014,-10.773207289999887],[122.85499108200023,-10.755303643999838],[122.917653842,-10.737481377999856],[122.94141686300021,-10.734958591999842],[122.96265709700005,-10.736016533999887],[122.97364342500005,-10.735121351999808],[122.981700066,-10.731540622999916],[122.99415123800023,-10.723565362999878],[123.00505618600013,-10.722100518999824],[123.01531009200002,-10.722914320999834],[123.02637780000006,-10.72185637799987],[123.04916425900002,-10.7113583309999],[123.09839928499999,-10.663506768999866],[123.11947675900015,-10.650648695999847],[123.16163170700005,-10.63339609199984],[123.17725670700005,-10.618829033999901],[123.18116295700015,-10.609063408999873],[123.18433678500004,-10.588962497999916],[123.19092858200011,-10.577813408999901],[123.20036868600012,-10.573500257999811],[123.20915774800007,-10.575941664999931],[123.21558678500013,-10.574965101999865],[123.21810957100004,-10.560479424999826],[123.2251082690001,-10.543633721999825],[123.24195397200018,-10.528903903999918],[123.28028405000012,-10.508965752999842],[123.33545983200023,-10.49032968499985],[123.35230553500004,-10.478204033999859],[123.37403405000013,-10.44353606599988],[123.38648522200008,-10.433038018999909],[123.39625084700018,-10.44752369599986],[123.39714603000017,-10.46347421699987],[123.39226321700018,-10.475681247999844],[123.37582441500003,-10.495863539999874],[123.39389082100003,-10.50920989399988],[123.38803144599997,-10.529717705999843],[123.37525475400004,-10.548435153999902],[123.372813347,-10.556817315999865],[123.37818444100016,-10.561618747999859],[123.3715926440001,-10.571709893999824]]],[[[121.94019616000004,-10.430108330999886],[121.95980879000004,-10.440118096999868],[121.97950280000022,-10.437920830999872],[121.99594160200014,-10.441338799999881],[122.00538170700005,-10.467950127999828],[121.99789472699997,-10.508965752999842],[121.99089603000013,-10.521579684999907],[121.95281009200002,-10.553399346999853],[121.93002363400002,-10.566664320999877],[121.91968834700018,-10.574395440999893],[121.91504967500018,-10.577080987999878],[121.90992272200005,-10.578057549999853],[121.8989363940001,-10.577813408999901],[121.89185631600004,-10.580743096999825],[121.88746178500006,-10.587497653999861],[121.88453209700005,-10.594414971999866],[121.88184655000023,-10.598321221999853],[121.85971113400011,-10.604099216999913],[121.79688561300011,-10.598321221999853],[121.75318444100006,-10.601006768999838],[121.73210696700018,-10.597344658999887],[121.71045983200011,-10.584649346999825],[121.69906660200016,-10.575778903999876],[121.69434655000023,-10.571058851999865],[121.69011478000002,-10.564222914999945],[121.70622806100019,-10.552422783999873],[121.82642662900017,-10.493829033999845],[121.8613387380001,-10.440606377999856],[121.87964928500017,-10.42888762799987],[121.90162194100017,-10.420993747999887],[121.923106316,-10.420342705999843],[121.94019616000004,-10.430108330999886]]],[[[123.45923912899998,-10.21461353999986],[123.45167076900023,-10.224379164999888],[123.44662519600004,-10.239678643999852],[123.43506920700011,-10.242771091999842],[123.42156009200002,-10.235935153999918],[123.41065514400022,-10.220961195999891],[123.39625084700018,-10.227797132999811],[123.41863040500019,-10.273044528999932],[123.42448978000006,-10.299004815999837],[123.41065514400022,-10.3103166649999],[123.41675866000007,-10.324639580999886],[123.41342207100003,-10.332614841999856],[123.40357506600017,-10.334405205999843],[123.39014733200011,-10.330824476999865],[123.387380405,-10.324639580999886],[123.37745201900023,-10.310804945999806],[123.36703535200017,-10.301202080999829],[123.36215254000008,-10.306898695999806],[123.35474694100017,-10.322442315999893],[123.33838951900006,-10.337497653999918],[123.3217879570001,-10.338962497999873],[123.31430097700016,-10.313409112999892],[123.31519616000006,-10.283949476999823],[123.31999759200002,-10.267754815999865],[123.33228600400015,-10.254571221999909],[123.35596764400013,-10.234633070999832],[123.36980228000019,-10.21689218499992],[123.38941491000016,-10.175225518999866],[123.40381920700024,-10.157647393999838],[123.41724694100006,-10.14967213299988],[123.43824303500017,-10.141289971999825],[123.4575301440001,-10.139336846999882],[123.46583092500005,-10.149834893999852],[123.47380618600002,-10.162855726999837],[123.5046492850001,-10.171319268999879],[123.50611412900017,-10.186781507999811],[123.49496504000014,-10.198174737999864],[123.45923912899998,-10.21461353999986]]],[[[120.01172936300021,-9.357598565999893],[120.07097415500003,-9.44101327899989],[120.09424889400022,-9.46119557099982],[120.11085045700013,-9.47063567499984],[120.12940514400012,-9.478122653999888],[120.14828535200004,-9.47966887799984],[120.16529381599999,-9.47087981599988],[120.18311608200005,-9.466892184999892],[120.20679772200012,-9.476169528999847],[120.22925866,-9.49228280999992],[120.243907097,-9.50904713299984],[120.243907097,-9.54998137799987],[120.251149936,-9.575372002999885],[120.2534285820001,-9.613864841999884],[120.25896243600002,-9.630791924999867],[120.27116946700019,-9.642510674999853],[120.33033287899998,-9.669366143999838],[120.34693444100017,-9.67050546699987],[120.35377037900018,-9.655857028999861],[120.36475670700023,-9.645277601999823],[120.39014733200004,-9.637953382999811],[120.43628991000017,-9.631280205999857],[120.45850670700021,-9.632500908999873],[120.47828209700019,-9.641045830999886],[120.4923608730002,-9.657647393999852],[120.49773196700009,-9.683200778999845],[120.50855553500018,-9.696954033999859],[120.58033287900004,-9.734958591999856],[120.60678144600004,-9.769463799999869],[120.64576256599999,-9.852308851999808],[120.66968834700018,-9.885186455999886],[120.69760175900004,-9.904473565999837],[120.76441491000004,-9.938897393999866],[120.79249108200015,-9.960870049999883],[120.81226647200019,-9.983575127999828],[120.8315535820001,-10.01441822699988],[120.83985436300011,-10.051364841999842],[120.82667076900023,-10.091241143999907],[120.81739342500005,-10.101820570999863],[120.78516686300021,-10.124769789999945],[120.74187259200006,-10.170993747999859],[120.72461998800017,-10.196872653999861],[120.71119225400017,-10.206719658999887],[120.65056399800018,-10.223565362999878],[120.64161217500006,-10.231215101999823],[120.63054446700002,-10.235935153999918],[120.56609134200008,-10.227797132999811],[120.54737389400005,-10.233330987999835],[120.50074303500017,-10.256768487999892],[120.491465691,-10.265883070999806],[120.48975670700011,-10.285251559999907],[120.48316491000006,-10.30095794099988],[120.47046959700018,-10.3103166649999],[120.44996178500006,-10.3103166649999],[120.43230228000013,-10.300062757999882],[120.409353061,-10.26962655999992],[120.39161217500012,-10.263116143999838],[120.24187259200008,-10.241631768999895],[120.23023522200019,-10.245212497999873],[120.22046959700006,-10.239434502999913],[120.15560957100014,-10.220961195999891],[120.150157097,-10.21445077899989],[120.13990319100017,-10.19394296699984],[120.13461347699997,-10.186781507999811],[120.09310957100003,-10.168389580999857],[120.08692467500022,-10.162855726999837],[120.05941816500003,-10.11858489399988],[120.04835045700005,-10.113213799999826],[120.03980553500006,-10.11467864399988],[120.03419030000023,-10.11207447699988],[120.02719160200014,-10.067640882999868],[120.014903191,-10.043226820999818],[119.97632897200005,-9.992445570999877],[119.96729576900012,-9.983575127999828],[119.95728600400004,-9.976983330999857],[119.94654381600006,-9.974541924999826],[119.93148847700004,-9.97356536299985],[119.92066491,-9.96949635199988],[119.913259311,-9.961358330999872],[119.90870201900005,-9.947198174999839],[119.89625084700019,-9.955336195999863],[119.89047285199999,-9.951267184999892],[119.88689212300001,-9.94158294099985],[119.88070722700014,-9.933526299999896],[119.86036217500005,-9.922539971999853],[119.85084069100017,-9.920098565999822],[119.81137129000003,-9.917168877999883],[119.79395592500022,-9.910577080999829],[119.75782311300011,-9.885186455999886],[119.69711347700017,-9.852634372999916],[119.68897545700021,-9.841078382999811],[119.68506920700021,-9.812758070999863],[119.67408287900017,-9.800225518999852],[119.63445071700008,-9.789646091999899],[119.63363691500015,-9.786228122999887],[119.63502037900005,-9.77263762799984],[119.63445071700008,-9.769138278999847],[119.62810306100003,-9.768649997999859],[119.62208092500012,-9.771172783999873],[119.61687259200014,-9.77418385199988],[119.61312910199997,-9.775323174999826],[119.5888778000001,-9.77027760199988],[119.54004967500012,-9.765883070999806],[119.49903405000006,-9.75212981599988],[119.47730553500001,-9.748630466999899],[119.46029707100016,-9.750095309999864],[119.43978925900002,-9.754652601999808],[119.42253665500017,-9.762139580999872],[119.41529381600017,-9.772230726999837],[119.40609785199997,-9.790134372999887],[119.38559004000015,-9.782891533999873],[119.34693444100016,-9.755466403999904],[119.33838951900006,-9.755059502999899],[119.32789147200013,-9.76181405999985],[119.31910241000006,-9.761651299999883],[119.31080162900005,-9.75807057099982],[119.28484134200008,-9.741143487999835],[119.26148522200018,-9.745782158999859],[119.2197371750001,-9.746189059999864],[119.17709394599999,-9.74138762799987],[119.13672936300023,-9.72405364399988],[119.09685306100008,-9.717543226999894],[119.08253014400007,-9.710544528999904],[119.03736412900004,-9.67587655999992],[119.02475019600016,-9.659274997999873],[119.00717207100004,-9.628106377999885],[118.99781334700018,-9.616794528999904],[118.9838973320001,-9.604668877999913],[118.95573978000002,-9.585056247999859],[118.9415796230002,-9.570489190999822],[118.93539472700006,-9.553399346999882],[118.94190514400013,-9.525567315999822],[118.95801842500012,-9.499607028999916],[118.97917728000019,-9.47625090899983],[119.02466881600016,-9.437676690999865],[119.05079186300023,-9.424004815999822],[119.07894941500003,-9.415622653999861],[119.11011803500013,-9.412774346999825],[119.12354576900005,-9.409356377999913],[119.1533309250001,-9.392266533999873],[119.16871178500006,-9.385511976999837],[119.20687910199999,-9.379001559999935],[119.24024498800006,-9.37810637799984],[119.24634850400015,-9.37590911299985],[119.25977623800016,-9.36646900799984],[119.26783287899998,-9.364434502999899],[119.30543053500011,-9.364434502999899],[119.38453209700018,-9.37810637799984],[119.39429772200005,-9.37590911299985],[119.40756269600014,-9.36646900799984],[119.45679772200016,-9.357598565999893],[119.47608483200011,-9.361097914999874],[119.51734459700006,-9.374932549999883],[119.52857506600004,-9.374932549999883],[119.54753665500006,-9.362888278999861],[119.57081139400006,-9.354099216999899],[119.62924238400014,-9.34189218499992],[119.64747155000022,-9.342217705999857],[119.66236412900011,-9.347914320999834],[119.66846764400006,-9.361016533999901],[119.68043053499999,-9.370782158999845],[119.79948978000006,-9.38372161299985],[119.8212996750001,-9.37859465899983],[119.94597415500006,-9.288262627999842],[119.95875084700012,-9.290459893999838],[119.9638778000001,-9.313164971999868],[119.97071373800021,-9.323011976999808],[120.01172936300021,-9.357598565999893]]],[[[124.93302494300022,-9.074483743999863],[124.94785608000014,-9.078514505999848],[124.96589115400016,-9.077274271999912],[124.9789136150001,-9.072003274999886],[125.00444177300014,-9.0555701699999],[125.05182906100012,-9.035002949999836],[125.06531661000017,-9.023220723999827],[125.06857222500015,-9.01588266999984],[125.07301639900007,-8.996452331999862],[125.07647871900011,-8.990767923999911],[125.0868140060002,-8.986220397999872],[125.09151656100019,-8.98859751399982],[125.09528894100012,-8.994798684999807],[125.10252364200008,-9.001309915999867],[125.12133386200017,-9.011851907999839],[125.1394206140001,-9.024771015999846],[125.15399336800023,-9.040790709999897],[125.16236495000024,-9.060634460999891],[125.16200321400007,-9.08233856199989],[125.14500166900021,-9.14517710399987],[125.14696537300009,-9.154478861999806],[125.15120284100013,-9.165020852999858],[125.15265373200016,-9.1708244189999],[125.15389001500014,-9.175769550999872],[125.15063440000013,-9.185381367999879],[125.14252120000006,-9.189102070999809],[125.11792321800023,-9.187551777999872],[125.10696781400011,-9.188481953999839],[125.09146488400008,-9.196750182999878],[125.08257653800014,-9.20553517699986],[125.07394657400013,-9.211322936999835],[125.05968387900022,-9.210496113999824],[125.05337935400021,-9.206672057999866],[125.04144209800009,-9.193236185999822],[125.03451745600002,-9.188171895999844],[125.02769616800006,-9.18631154399985],[125.00723230100019,-9.186104837999878],[124.97446944200017,-9.191892598999857],[124.95793298400011,-9.211943053999903],[124.95410892800022,-9.241501973999931],[124.96015507000017,-9.27602182999982],[124.96599450700008,-9.29338511199984],[124.9728157960002,-9.30465057299989],[124.99669030800013,-9.325837910999851],[125.01787764500008,-9.338963724999829],[125.0234070240002,-9.345578307999816],[125.02480228700009,-9.35198618499986],[125.02278690600022,-9.367695820999828],[125.02376875800009,-9.374723815999843],[125.04629968300013,-9.409863788999886],[125.05093075400012,-9.424696842999893],[125.06162548343504,-9.485765301020919],[125.06161543100009,-9.485772393999838],[125.06128991000006,-9.486016533999873],[125.03077233200011,-9.507500908999901],[125.00196373800006,-9.536309502999842],[124.98658287900005,-9.577325127999842],[124.97974694100004,-9.649021091999856],[124.97071373800011,-9.662367445999863],[124.87476647199999,-9.72470468499992],[124.84693444100017,-9.748223565999893],[124.75847415500003,-9.850762627999854],[124.74781334700012,-9.886163018999866],[124.73454837300008,-9.899509372999873],[124.67847741000004,-9.9301083309999],[124.64128665500007,-9.956638278999861],[124.60808353,-9.986748955999886],[124.56031334700016,-10.01523202899989],[124.54078209699999,-10.036553643999866],[124.52466881600004,-10.083428643999824],[124.51002037900005,-10.096286716999842],[124.49935957099999,-10.111993096999896],[124.45199629000014,-10.14641692499984],[124.41846764400012,-10.1638322899999],[124.38086998800013,-10.17050546699987],[124.27198326900012,-10.166192315999865],[124.19678795700023,-10.173760674999912],[124.16480553500006,-10.180596612999835],[124.15365644599999,-10.178806247999844],[124.13412519600004,-10.172133070999891],[124.12240644600003,-10.172539971999896],[124.10767662900007,-10.184340101999865],[124.08741295700021,-10.225681247999887],[124.07813561300004,-10.234633070999832],[124.05738366000016,-10.238946221999825],[124.04851321700002,-10.249607028999861],[124.04346764400012,-10.263116143999838],[124.03386478000002,-10.276136976999823],[124.01978600400015,-10.281019789999888],[123.93279056100013,-10.294854424999881],[123.82634524800007,-10.363946221999896],[123.79932701900012,-10.374688408999901],[123.78736412900015,-10.368340752999885],[123.77816816499998,-10.358330987999892],[123.75709069100016,-10.360446872999901],[123.71908613400008,-10.371758721999882],[123.698985222,-10.367364190999908],[123.6787215500001,-10.356622002999883],[123.65886478000017,-10.349297783999887],[123.63965905000025,-10.355075778999847],[123.61744225400011,-10.366306247999859],[123.60206139400022,-10.361423434999878],[123.57447350400005,-10.337660414999874],[123.55941816500004,-10.333754164999887],[123.53646894600004,-10.331963799999897],[123.515391472,-10.335544528999874],[123.50220787900017,-10.353204033999887],[123.49293053499999,-10.360772393999838],[123.481618686,-10.366143487999892],[123.47201582100014,-10.364922783999873],[123.46859785200004,-10.35621510199988],[123.47242272200006,-10.345147393999852],[123.48568769599999,-10.323907158999859],[123.4934188160001,-10.301934502999856],[123.49496504000014,-10.282159112999835],[123.49252363400004,-10.245212497999873],[123.4995223320001,-10.230726820999834],[123.515391472,-10.213067315999822],[123.54712975400017,-10.186781507999811],[123.597911004,-10.166680596999852],[123.61231530000005,-10.156426690999822],[123.620371941,-10.153008721999825],[123.65699303500006,-10.14641692499984],[123.665700717,-10.143161716999884],[123.74854576900022,-10.097751559999892],[123.7646590500001,-10.07496510199988],[123.74577884200018,-10.050388278999861],[123.72608483200023,-10.03923919099985],[123.70582116000004,-10.030694268999824],[123.68433678499999,-10.024997653999847],[123.66041100400005,-10.02304452899989],[123.63835696700008,-10.02996184699988],[123.60564212300012,-10.05429452899986],[123.58814537900017,-10.050388278999861],[123.57740319100017,-10.03435637799987],[123.57618248800023,-10.013929945999806],[123.58375084700018,-9.944024346999882],[123.59229576900012,-9.928806247999901],[123.6290796230002,-9.906345309999892],[123.65015709699999,-9.889418226999823],[123.66041100400005,-9.871270440999822],[123.66374759200008,-9.85084400799984],[123.66382897200006,-9.827243747999901],[123.66041100400005,-9.816582940999865],[123.64576256600006,-9.796807549999855],[123.64332116000001,-9.782810153999888],[123.64649498800004,-9.77499765399989],[123.65259850400017,-9.77027760199988],[123.65919030000023,-9.76653411299985],[123.66382897200006,-9.761651299999883],[123.66993248800021,-9.740492445999877],[123.67156009200009,-9.650160414999888],[123.67660566500004,-9.629652601999837],[123.68881269600008,-9.61142343499985],[123.71168053500017,-9.591566664999931],[123.74691816500004,-9.573988539999903],[123.75635826900023,-9.567071221999825],[123.78394616000016,-9.525811455999857],[123.793793165,-9.517022393999893],[123.801117384,-9.514418226999808],[123.80933678500016,-9.51327890399986],[123.82154381600019,-9.50904713299984],[123.82699628999998,-9.504652601999865],[123.83668053500017,-9.492608330999843],[123.842051629,-9.48796965899983],[123.84669030000023,-9.487237237999892],[123.85865319100016,-9.48902760199988],[123.86304772200005,-9.48796965899983],[123.89576256600017,-9.440524997999901],[123.90723717500023,-9.433282158999873],[123.91260826900005,-9.425957940999865],[123.95866946700002,-9.385511976999837],[123.97950280000012,-9.358493747999887],[123.99146569100007,-9.348077080999886],[124.01010175900002,-9.34392669099985],[124.03003991000011,-9.341973565499856],[124.06269047000015,-9.397874856999834],[124.09028568500005,-9.421542662999855],[124.12108483900012,-9.426917012999823],[124.13374556500015,-9.419268899999835],[124.15379602100019,-9.391880391999806],[124.16723189300014,-9.380614928999833],[124.1836133230001,-9.373896992999901],[124.19746260600006,-9.37317352299982],[124.21069177300014,-9.378857930999857],[124.22578129100017,-9.391570332999905],[124.23715010600013,-9.405212910999822],[124.24686527500009,-9.421542662999855],[124.25399662300005,-9.438699238999916],[124.2575106210002,-9.455442402999864],[124.25689050300004,-9.462883808999889],[124.25337650600008,-9.480557148999893],[124.25337650600008,-9.486448261999882],[124.25658044500015,-9.499367370999892],[124.2575106210002,-9.501227721999896],[124.26159305900009,-9.497920429999809],[124.27384037300013,-9.49492319699989],[124.29306400600015,-9.493062844999884],[124.31006555200018,-9.488722025999905],[124.32355310100004,-9.48035044399984],[124.3323380950002,-9.466604511999888],[124.3333716230002,-9.457199401999844],[124.32882409700008,-9.439836119999825],[124.32861739100011,-9.43301483199987],[124.33207971200014,-9.425470071999825],[124.34174320500007,-9.411827493999821],[124.34541223200009,-9.404179381999839],[124.34789270000024,-9.374620462999815],[124.35455896000016,-9.364181823999871],[124.35807295800012,-9.362218118999834],[124.36262048400025,-9.362011413999879],[124.37187056500008,-9.357050475999841],[124.40168786600023,-9.331832376999884],[124.42091149900008,-9.306924336999913],[124.42478723200023,-9.303513691999797],[124.42793949400017,-9.299482929999883],[124.43181522700014,-9.290801289999832],[124.43662113400013,-9.255868021999845],[124.45150394800018,-9.20057423899982],[124.4505314460001,-9.180189710999855],[124.46583092500022,-9.179375908999845],[124.51783287900004,-9.177829684999892],[124.563243035,-9.170830987999821],[124.60434004000004,-9.156345309999864],[124.66797936300006,-9.113051039999888],[124.67115319100004,-9.107517184999864],[124.67318769600016,-9.099297783999873],[124.68360436300017,-9.074802341999842],[124.68799889400023,-9.069512627999856],[124.6915796230002,-9.067803643999852],[124.75806725400005,-9.047946872999859],[124.76734459700016,-9.042901299999826],[124.78882897199999,-9.018975518999852],[124.82496178500004,-9.008070570999877],[124.84034264400006,-9.001071872999901],[124.86988366000004,-8.994398695999847],[124.89714603000006,-8.97454192499984],[124.91928144600004,-8.962090752999826],[124.91950720677637,-8.962015499916774],[124.92248295100015,-8.986323750999901],[124.90915043100013,-9.02032684299985],[124.9079101970001,-9.037483418999898],[124.91297448700018,-9.052779641999862],[124.92129439300007,-9.065492044999814],[124.93302494300022,-9.074483743999863]]],[[[115.57309004000014,-8.671970309999864],[115.58915338800008,-8.69566550599994],[115.59774535300006,-8.71872608999982],[115.61573089800007,-8.739627448999912],[115.62420393700009,-8.76890868999989],[115.6069442070001,-8.786553643999852],[115.5888778000001,-8.80730559699984],[115.5608016290001,-8.799004815999865],[115.5053817070001,-8.76091887799987],[115.48878014400022,-8.740655205999872],[115.47461998800021,-8.736586195999818],[115.46827233200011,-8.731866143999895],[115.47136478000019,-8.72380950299987],[115.50700931100002,-8.67896900799984],[115.5175887380001,-8.670179945999877],[115.53505544700025,-8.673678329999873],[115.55014082100014,-8.666192315999893],[115.57309004000014,-8.671970309999864]]],[[[119.67530358200011,-8.658786716999913],[119.69548587300001,-8.667087497999887],[119.71062259200002,-8.65976327899989],[119.71989993600008,-8.642510674999883],[119.72299238400015,-8.621189059999907],[119.73780358200023,-8.617120049999853],[119.76758873800021,-8.617120049999853],[119.79151451900012,-8.624200127999828],[119.78858483200005,-8.641534112999906],[119.75806725400005,-8.661065362999878],[119.74732506600006,-8.672133070999834],[119.75049889400012,-8.685967705999829],[119.73560631600004,-8.689222914999872],[119.72095787900005,-8.689711195999863],[119.70915774800008,-8.693536065999865],[119.70264733200005,-8.706475518999879],[119.7050887380001,-8.724053643999909],[119.72339928500017,-8.741794528999904],[119.72299238400015,-8.761814059999864],[119.71876061300023,-8.770440362999878],[119.70264733200005,-8.79241301899988],[119.69825280000005,-8.80152760199988],[119.68864993600017,-8.7992489559999],[119.67920983200011,-8.79265715899983],[119.66895592500018,-8.781996351999808],[119.66293379000014,-8.772556247999887],[119.65552819100019,-8.766859632999811],[119.6445418630001,-8.771661065999893],[119.63477623800006,-8.778415622999916],[119.62484785200016,-8.78053150799984],[119.61524498800011,-8.777520440999837],[119.60629316500014,-8.768649997999887],[119.6142684250001,-8.739841403999861],[119.62061608200017,-8.730075778999904],[119.63445071700008,-8.726983330999829],[119.62924238400014,-8.717543226999823],[119.62680097700004,-8.713962497999844],[119.64210045700005,-8.706149997999859],[119.65699303500004,-8.695489190999822],[119.66041100400005,-8.685479424999839],[119.64128665500007,-8.679131768999895],[119.64673912900001,-8.657159112999892],[119.62720787900005,-8.61834075299987],[119.63445071700008,-8.596612237999892],[119.65512129000015,-8.611586195999832],[119.66098066500003,-8.617771091999899],[119.66480553500006,-8.627373955999886],[119.66895592500018,-8.649672132999825],[119.67530358200011,-8.658786716999913]]],[[[122.40919030000012,-8.486748955999829],[122.37680097700004,-8.50172291499986],[122.35222415500019,-8.480157158999859],[122.3439233730002,-8.448418877999899],[122.36085045700011,-8.432875257999896],[122.38705488400015,-8.43564218499985],[122.41016686300011,-8.443942966999842],[122.42074629000014,-8.460137627999885],[122.40919030000012,-8.486748955999829]]],[[[113.37191816500015,-8.494724216999884],[113.29249108200023,-8.494805596999868],[113.28199303500017,-8.488213799999883],[113.27800540500017,-8.47332122199984],[113.28199303500017,-8.457207940999865],[113.29590905000023,-8.447035414999917],[113.29175866,-8.43971119599982],[113.28907311300021,-8.432793877999913],[113.33985436300006,-8.444024346999823],[113.39519290500007,-8.447035414999917],[113.40609785200004,-8.453220309999878],[113.41211998800023,-8.46689218499992],[113.41309655000012,-8.480564059999864],[113.40919030000012,-8.486748955999829],[113.39665774800014,-8.48837655999985],[113.37191816500015,-8.494724216999884]]],[[[119.46876061300011,-8.479180596999882],[119.48031660200004,-8.486748955999829],[119.52881920700013,-8.479261976999865],[119.54566491,-8.481133721999825],[119.55453535200016,-8.484551690999837],[119.560231967,-8.487969658999845],[119.5698348320001,-8.497979424999826],[119.57471764400005,-8.507012627999842],[119.57048587300007,-8.512139580999857],[119.56299889400006,-8.515313408999916],[119.55925540500007,-8.518161716999856],[119.56177819100017,-8.532159112999821],[119.56836998800023,-8.54029713299984],[119.57740319100007,-8.548435153999847],[119.58716881600012,-8.562432549999912],[119.57260175900016,-8.56560637799987],[119.57056725400005,-8.575372002999828],[119.57243899800018,-8.585625908999845],[119.5698348320001,-8.590427341999842],[119.53785241000001,-8.593682549999883],[119.52515709700005,-8.590427341999842],[119.51587975400011,-8.572686455999843],[119.50668379000004,-8.565850518999824],[119.49398847700016,-8.573011976999865],[119.4799910820001,-8.59172942499984],[119.47095787900011,-8.596774997999859],[119.45679772200016,-8.596612237999892],[119.46273847699997,-8.609307549999869],[119.47071373800023,-8.61541106599985],[119.47828209700018,-8.614027601999865],[119.48357181100006,-8.60409921699987],[119.49097741000006,-8.610935153999888],[119.48023522200005,-8.635430596999823],[119.47315514400005,-8.64723072699988],[119.46648196700002,-8.648532809999878],[119.45533287899998,-8.64430103999986],[119.44825280000025,-8.653578382999825],[119.44255618600006,-8.679131768999895],[119.443614129,-8.690606377999856],[119.44849694100016,-8.70916106599985],[119.45736738400004,-8.728122653999861],[119.46989993600002,-8.740655205999872],[119.44662519600004,-8.746351820999847],[119.399099155,-8.72649504999984],[119.38111412900017,-8.740655205999872],[119.37370853000019,-8.734470309999892],[119.38111412900017,-8.734470309999892],[119.37720787900015,-8.722426039999887],[119.38119550900014,-8.708916924999912],[119.40015709700019,-8.67498137799987],[119.40211022199999,-8.667575778999874],[119.40154056100009,-8.641534112999906],[119.39844811300006,-8.63437265399986],[119.39136803499999,-8.632094007999882],[119.38428795700024,-8.63111744599982],[119.38111412900017,-8.62802499799993],[119.38111412900017,-8.600355726999837],[119.37818444100006,-8.57398853999993],[119.379649285,-8.565850518999824],[119.3879500660001,-8.55632903399983],[119.39356530000012,-8.554945570999848],[119.40943444100006,-8.55738697699988],[119.41529381600017,-8.55632903399983],[119.41504967500012,-8.553155205999857],[119.42156009200012,-8.535739841999884],[119.4221297540001,-8.535251559999892],[119.42237389400023,-8.526462497999844],[119.41846764400023,-8.494805596999868],[119.42701256600004,-8.488051039999917],[119.42481530000018,-8.472588799999897],[119.41529381600017,-8.443291924999883],[119.42156009200012,-8.441501559999892],[119.45679772200016,-8.425957940999893],[119.46078535200004,-8.441094658999887],[119.46338951900023,-8.461195570999848],[119.46876061300011,-8.479180596999882]]],[[[123.16976972699999,-8.431329033999859],[123.17994225400005,-8.444431247999916],[123.177500847,-8.460219007999866],[123.16358483200023,-8.473728122999844],[123.12175540500019,-8.48626067499984],[123.03785241000004,-8.491875908999845],[123.00660241000017,-8.50790780999992],[122.95525149800001,-8.585625908999845],[122.93083743600019,-8.60409921699987],[122.91391035200004,-8.608330987999892],[122.90259850400005,-8.604587497999859],[122.88298587300008,-8.582940362999864],[122.91041100400005,-8.514743747999844],[122.99984785200004,-8.448663018999838],[123.00904381600017,-8.44817473799985],[123.01832116000004,-8.451267184999935],[123.02979576900012,-8.453220309999878],[123.04249108200023,-8.451429945999806],[123.07422936300011,-8.439629815999837],[123.08578535200004,-8.438571872999873],[123.10474694100006,-8.440687757999882],[123.11589603000006,-8.439629815999837],[123.12435957100006,-8.436293226999808],[123.14039147200018,-8.427666924999897],[123.14625084700006,-8.425957940999893],[123.16976972699999,-8.431329033999859]]],[[[121.73145592500022,-8.350762627999899],[121.70899498800023,-8.354750257999868],[121.69385826900022,-8.344333591999884],[121.67611738400015,-8.309258721999896],[121.68531334700006,-8.303806247999859],[121.69166100400015,-8.297784112999864],[121.69874108200021,-8.29225025799984],[121.71029707100014,-8.288750908999845],[121.73406009200006,-8.293145440999837],[121.74529056100009,-8.311700127999842],[121.74439537900017,-8.334405205999886],[121.73145592500022,-8.350762627999899]]],[[[123.28785241000016,-8.246351820999863],[123.31430097700016,-8.261407158999873],[123.32154381600016,-8.255629164999903],[123.33082116000007,-8.254652601999837],[123.34058678500017,-8.258884372999859],[123.34864342500013,-8.268812757999866],[123.35027103000002,-8.280043226999865],[123.34538821700008,-8.287774346999868],[123.33871503999997,-8.293715101999808],[123.33545983200023,-8.299248955999829],[123.32748457099997,-8.3676083309999],[123.32113691500015,-8.38494231599988],[123.28931725400004,-8.404473565999865],[123.24488365999999,-8.4047177059999],[123.16358483200023,-8.391778252999899],[123.08155358200011,-8.4086239559999],[123.0410262380001,-8.410821221999896],[123.01954186300017,-8.391778252999899],[123.02084394600014,-8.35833098799985],[123.03646894600014,-8.332289320999877],[123.12582441500014,-8.258721612999892],[123.1416121750001,-8.24993254999984],[123.15650475400017,-8.243584893999895],[123.18824303500006,-8.234958591999899],[123.20443769600014,-8.233493747999844],[123.23731530000018,-8.234063408999901],[123.26368248800016,-8.237888278999916],[123.28785241000016,-8.246351820999863]]],[[[116.74317467500018,-8.391778252999899],[116.73511803500004,-8.408868096999852],[116.70215905000023,-8.4574520809999],[116.69166100400017,-8.467461846999882],[116.68523196700008,-8.480564059999864],[116.68100019600016,-8.55632903399983],[116.66879316500008,-8.573825778999876],[116.62777754000015,-8.614841403999876],[116.61898847699999,-8.63486093499985],[116.59952836700002,-8.666385866999832],[116.58161992600006,-8.697813045999808],[116.55530487600014,-8.744972475999859],[116.51940387400018,-8.778563501999898],[116.50043781400015,-8.802687801999866],[116.5083113940001,-8.832940362999821],[116.50611412900004,-8.847588799999826],[116.50912519600003,-8.858005466999899],[116.52003014400012,-8.859470309999864],[116.52915414500008,-8.842353687999918],[116.54079663800005,-8.836037974999869],[116.54718187800007,-8.8454331799999],[116.55990644600011,-8.848809502999842],[116.57178795700021,-8.858819268999824],[116.58887780000006,-8.863213799999896],[116.56536852100012,-8.895582838999827],[116.52404660199997,-8.902006540999835],[116.509176611,-8.896829057999824],[116.47559655000006,-8.920017184999864],[116.44661086600014,-8.920080377999852],[116.43278890000012,-8.910705027999867],[116.45290485600017,-8.886558814999859],[116.46026020200011,-8.864555973999842],[116.47187992400005,-8.839399234999902],[116.45557701900012,-8.833672783999845],[116.42311581200012,-8.836406400999891],[116.39769974600019,-8.855322488999875],[116.39772762900012,-8.8825445639999],[116.40200819700009,-8.916042998999927],[116.40308678500018,-8.954196872999844],[116.38917076900006,-8.949151299999826],[116.38819420700011,-8.937595309999892],[116.3886824880001,-8.923516533999845],[116.37956790500017,-8.91187916499993],[116.37012780000012,-8.911065362999835],[116.3606063160001,-8.924493096999825],[116.35141035200004,-8.926202080999829],[116.34742272200006,-8.921319268999852],[116.34310957100016,-8.912041924999897],[116.33716881599999,-8.903008721999894],[116.32789147200016,-8.898858330999857],[116.3100692070001,-8.90243905999992],[116.27230879000004,-8.917250257999811],[116.25521894599997,-8.920017184999864],[116.24935957100016,-8.917413018999866],[116.24268639400007,-8.907891533999859],[116.236094597,-8.905694268999866],[116.22486412900001,-8.907972914999931],[116.2119246750001,-8.917738539999888],[116.20476321700008,-8.920017184999864],[116.19646243600017,-8.914320570999877],[116.17847741000004,-8.887790622999916],[116.16724694100004,-8.878513278999861],[116.15235436300011,-8.875664971999825],[116.10572350400017,-8.874688408999845],[116.10132897200012,-8.888929945999848],[116.09066816500015,-8.895928643999838],[116.07715905000012,-8.89462655999992],[116.06421959700019,-8.883965752999899],[116.07553144600014,-8.879489841999842],[116.08253014400023,-8.872735283999901],[116.08375084700018,-8.865004164999888],[116.077810092,-8.858005466999899],[116.06861412900017,-8.855726820999834],[116.05925540500002,-8.858493747999887],[116.0498153000001,-8.862725518999824],[116.04029381600004,-8.864678643999866],[116.03614342500006,-8.870538018999909],[116.03687584699999,-8.883070570999818],[116.04029381600004,-8.902276299999869],[116.02995853000012,-8.908135674999896],[116.01929772200016,-8.908135674999896],[116.00953209700006,-8.90447356599985],[116.00212649800007,-8.898858330999857],[115.9964298840001,-8.889743747999859],[115.98853600399998,-8.867282809999864],[115.98161868600019,-8.858005466999899],[115.96924889400017,-8.849379164999903],[115.96436608200011,-8.850274346999896],[115.95875084700016,-8.85507577899989],[115.94434655000023,-8.858005466999899],[115.92823326900022,-8.854913018999824],[115.86744225400004,-8.821221612999821],[115.83926184100018,-8.816856514999884],[115.8286378070002,-8.791785517999841],[115.83069647400008,-8.769811756999914],[115.83382133900002,-8.74887354299986],[115.84859164500007,-8.724792571999942],[115.86890709700018,-8.73064544099988],[115.87940514400023,-8.724786065999837],[115.88445071700018,-8.732842705999872],[115.8874617850001,-8.745782158999873],[115.89226321700019,-8.754815362999892],[115.91846409200011,-8.753740461999854],[115.94175943600013,-8.754876932999835],[115.95444947000007,-8.753719628999903],[115.968202922,-8.747449558999904],[115.9830258960001,-8.737059159999873],[115.99301191500014,-8.742364190999865],[116.00261478000006,-8.74277109199987],[116.01384524800002,-8.74667734199987],[116.02320397200018,-8.74814218499992],[116.0278426440001,-8.744724216999913],[116.03370201900024,-8.738864841999884],[116.0411889980002,-8.734144789999872],[116.05054772200006,-8.734470309999892],[116.05323326900023,-8.73951588299984],[116.05746504000014,-8.749932549999826],[116.0656699870001,-8.759974082999861],[116.07728005000016,-8.74319823199987],[116.08757571700018,-8.737237237999864],[116.09148196700008,-8.726983330999829],[116.06027107900015,-8.713907240999887],[116.06334853100023,-8.67305882199986],[116.07067293000009,-8.638494197999904],[116.07264452500011,-8.57778369099988],[116.062994082,-8.521300971999892],[116.03859148100005,-8.500403088999818],[116.02793675600017,-8.445007651999916],[116.05004674600015,-8.414638435999805],[116.06908823800015,-8.40623698899985],[116.09791100400011,-8.408461195999848],[116.10572350400017,-8.405450127999842],[116.11060631600004,-8.399183851999894],[116.11719811300021,-8.38201262799987],[116.12281334700005,-8.374444268999824],[116.13843834699999,-8.362969658999873],[116.16797936300006,-8.34693775799988],[116.18091881600017,-8.33717213299984],[116.26970462300002,-8.247735283999845],[116.28638756600017,-8.236260674999897],[116.37623131600016,-8.201836846999868],[116.39380944099999,-8.201104424999839],[116.4246525400001,-8.217705987999892],[116.49740644600004,-8.237399997999928],[116.53907311300011,-8.243829033999845],[116.55445397200005,-8.25123463299984],[116.57300866000004,-8.264092705999857],[116.59099368600017,-8.26970794099985],[116.63331139400005,-8.275079033999901],[116.668223504,-8.289239190999837],[116.70622806100012,-8.317071221999894],[116.73511803500004,-8.35295989399988],[116.74317467500018,-8.391778252999899]]],[[[128.221934441,-8.208916924999826],[128.22641035200016,-8.239678643999895],[128.23121178500017,-8.25123463299984],[128.23764082100016,-8.264092705999857],[128.23145592500012,-8.272881768999824],[128.21900475400017,-8.278578382999811],[128.2072860040001,-8.28191497199984],[128.18197675900015,-8.285088799999897],[128.15162194100017,-8.284600518999909],[128.12330162900005,-8.280938408999859],[128.10368899800008,-8.275079033999901],[128.09685306100008,-8.270928643999866],[128.08822675900015,-8.263848565999822],[128.0832625660001,-8.254571221999853],[128.08716881600017,-8.244317315999837],[128.0945744150001,-8.232354424999897],[128.09799238399998,-8.220961195999834],[128.10377037900005,-8.21184661299985],[128.11793053500017,-8.206801039999903],[128.13917076900023,-8.216485283999873],[128.16602623800023,-8.210544528999847],[128.19271894600016,-8.200941664999874],[128.21355228000007,-8.199395440999837],[128.221934441,-8.208916924999826]]],[[[123.94117272200016,-8.243747653999861],[123.93751061300023,-8.26523202899989],[123.93238365999999,-8.271416924999855],[123.92058353000006,-8.276136976999865],[123.87647545700021,-8.28622812299993],[123.81128991000006,-8.288750908999845],[123.78988691499997,-8.293633721999825],[123.77540123800023,-8.305840752999885],[123.76587975400005,-8.321709893999824],[123.75098717500006,-8.356377862999892],[123.72885175900004,-8.393324476999851],[123.68751061300004,-8.436211846999825],[123.67676842500018,-8.438164971999868],[123.66879316500003,-8.427422783999859],[123.66277103000019,-8.413344007999825],[123.65699303500006,-8.405450127999842],[123.64307701900017,-8.411228122999901],[123.62468509200014,-8.427666924999897],[123.60865319100004,-8.445896091999884],[123.60181725399998,-8.456963799999826],[123.59620201900012,-8.461846612999892],[123.58383222700016,-8.465997002999826],[123.5721134770001,-8.471612237999835],[123.567637566,-8.481133721999825],[123.5737410820001,-8.491875908999845],[123.60922285199999,-8.535251559999892],[123.597911004,-8.555352471999852],[123.58301842500023,-8.565524997999887],[123.56470787900001,-8.568942966999899],[123.54346764400013,-8.569268487999835],[123.53386478,-8.563083591999856],[123.511485222,-8.53281015399986],[123.50001061300004,-8.521579684999864],[123.45508873800004,-8.569268487999835],[123.44532311300023,-8.572523695999877],[123.43051191500015,-8.587090752999899],[123.42074629000003,-8.590427341999842],[123.40674889400023,-8.58945077899986],[123.39942467500023,-8.58603280999985],[123.38331139400006,-8.569268487999835],[123.34685306100012,-8.543226820999863],[123.3243921230002,-8.534600518999852],[123.31080162900015,-8.549248955999857],[123.30201256600016,-8.55282968499992],[123.29175866000017,-8.555352471999852],[123.28337649800018,-8.55632903399983],[123.2791447270001,-8.554945570999848],[123.26685631600006,-8.54827239399988],[123.26319420700005,-8.545505466999927],[123.25611412900001,-8.541924737999864],[123.25074303500017,-8.544691664999917],[123.2454533210001,-8.548760674999867],[123.23878014400022,-8.548923434999935],[123.22730553500016,-8.52605559699984],[123.25269616,-8.49700286299985],[123.31430097700016,-8.453220309999878],[123.35759524800002,-8.411309502999885],[123.372813347,-8.405450127999842],[123.38705488400005,-8.40178801899988],[123.46810957100016,-8.36598072699988],[123.48015384200006,-8.358086846999896],[123.48568769599999,-8.350762627999899],[123.48365319100006,-8.330173434999864],[123.47331790500007,-8.320977471999882],[123.43783613400015,-8.316664320999891],[123.36963951900022,-8.316664320999891],[123.36638431100019,-8.3044572899999],[123.380056186,-8.288262627999856],[123.39966881600017,-8.273858330999886],[123.41423587300012,-8.267185153999847],[123.42758222700003,-8.270277601999823],[123.4428817070001,-8.276950778999876],[123.45679772200016,-8.279066664999888],[123.46583092500005,-8.268812757999866],[123.48015384200006,-8.267510674999867],[123.50220787900017,-8.24627044099988],[123.51612389400022,-8.240899346999825],[123.54273522200016,-8.242771091999884],[123.567637566,-8.247735283999845],[123.56234785200016,-8.255059502999842],[123.56348717500006,-8.271905205999843],[123.56080162899998,-8.28191497199984],[123.552989129,-8.291761976999851],[123.526621941,-8.316664320999891],[123.51710045700011,-8.337497653999861],[123.51791425900004,-8.35295989399988],[123.52849368600019,-8.364027601999837],[123.54712975400017,-8.37127044099985],[123.56836998800024,-8.374932549999897],[123.58912194100006,-8.373630466999899],[123.60466556100006,-8.364190362999892],[123.60922285199999,-8.343357028999904],[123.60059655000012,-8.32927825299987],[123.58676191499997,-8.31715260199988],[123.58228600400004,-8.306084893999838],[123.60181725399998,-8.295586846999866],[123.61402428500017,-8.309258721999896],[123.62794030000018,-8.307305596999852],[123.63917076900017,-8.294122002999899],[123.64332116000001,-8.275079033999901],[123.63892662900005,-8.261407158999873],[123.63086998800011,-8.252699476999894],[123.62533613400015,-8.244886976999808],[123.6290796230002,-8.233493747999844],[123.63428795700013,-8.228122653999874],[123.64161217500012,-8.223077080999843],[123.64966881600006,-8.219984632999868],[123.65699303500006,-8.220472914999945],[123.665700717,-8.226983330999843],[123.66749108200011,-8.234551690999893],[123.66724694100017,-8.241957289999874],[123.67066491000017,-8.247735283999845],[123.68409264400007,-8.25156015399986],[123.70134524800007,-8.25123463299984],[123.71168053500017,-8.245538018999852],[123.70484459700016,-8.233493747999844],[123.70484459700016,-8.227308851999865],[123.73072350400015,-8.223321221999882],[123.75049889400012,-8.20875416499986],[123.76710045700018,-8.193047783999887],[123.78394616000016,-8.185723565999893],[123.78882897200006,-8.184665622999844],[123.79818769600016,-8.179945570999834],[123.804453972,-8.17888762799987],[123.81031334700006,-8.181247653999916],[123.81316165500019,-8.185967705999843],[123.81495201900006,-8.191013278999861],[123.81812584700005,-8.193129164999872],[123.82309004000004,-8.195733330999872],[123.83985436300023,-8.208428643999838],[123.84880618600008,-8.213636976999837],[123.86402428500004,-8.218682549999869],[123.88404381600012,-8.222914320999877],[123.92798912900005,-8.227308851999865],[123.93881269600004,-8.232191664999931],[123.94117272200016,-8.243747653999861]]],[[[124.23218834700005,-8.381280205999843],[124.21876061300023,-8.401543877999842],[124.20883222700004,-8.42302825299987],[124.20134524800007,-8.465590101999823],[124.191661004,-8.489353122999916],[124.17872155000013,-8.511325778999845],[124.16480553500006,-8.528252862999821],[124.14958743600008,-8.539320570999863],[124.1298934250001,-8.54827239399988],[124.10759524800008,-8.554131768999838],[124.08497155000012,-8.55632903399983],[124.05933678500006,-8.551527601999837],[124.0512801440001,-8.539157809999892],[124.05494225400005,-8.501071872999901],[124.05062910200017,-8.482110283999901],[124.03126061300023,-8.456475518999838],[124.02702884200019,-8.443291924999883],[124.018809441,-8.429945570999877],[123.99952233200004,-8.430271091999899],[123.97689863400004,-8.437920830999829],[123.9389754570001,-8.457777601999837],[123.93116295700011,-8.460056247999901],[123.92115319099999,-8.460625908999873],[123.90723717500023,-8.454847914999903],[123.91285241000007,-8.442152601999851],[123.92530358200024,-8.430271091999899],[123.93140709700006,-8.425957940999893],[123.96697024800018,-8.36077239399988],[123.985118035,-8.338311455999872],[124.02328535200016,-8.31340911299985],[124.04420006600006,-8.304864190999822],[124.05836022200006,-8.306084893999838],[124.06910241000016,-8.315606377999842],[124.07374108200011,-8.320977471999882],[124.08301842500023,-8.349867445999806],[124.08253014400016,-8.352471612999892],[124.08326256600017,-8.3558895809999],[124.09717858200005,-8.377211195999877],[124.10206139400023,-8.381442966999899],[124.10938561300023,-8.38494231599988],[124.11036217500012,-8.3637020809999],[124.12208092500012,-8.349786065999822],[124.1505639980002,-8.329766533999859],[124.18441816499997,-8.271172783999916],[124.20411217500013,-8.251722914999917],[124.23178144600004,-8.209079684999878],[124.24708092500006,-8.196221612999864],[124.251231316,-8.189141533999901],[124.25814863400002,-8.182061455999843],[124.270274285,-8.17888762799987],[124.28467858200005,-8.183282158999859],[124.29493248800013,-8.193942966999884],[124.30811608200017,-8.220472914999945],[124.29379316500014,-8.257989190999865],[124.2910262380001,-8.280531507999852],[124.29761803500017,-8.299248955999829],[124.29997806100002,-8.319268487999878],[124.28345787900015,-8.338555596999825],[124.24675540500007,-8.364515882999825],[124.23218834700005,-8.381280205999843]]],[[[129.03614342500006,-8.22031015399989],[129.03500410200004,-8.23609791499993],[129.02767988400015,-8.250909112999906],[129.01596113400015,-8.261407158999873],[129.00619550900004,-8.263604424999869],[128.99341881600017,-8.261488539999858],[128.97901451900012,-8.255059502999842],[128.96461022200006,-8.244317315999837],[128.94922936300011,-8.236016533999859],[128.93913821700002,-8.240655205999872],[128.92969811300011,-8.249688408999887],[128.91635175900004,-8.254652601999837],[128.88770592500023,-8.244886976999808],[128.85230553500006,-8.222914320999877],[128.83448326900023,-8.199802341999842],[128.85840905000012,-8.185723565999893],[128.88949629000004,-8.177829684999907],[128.9853621750002,-8.185723565999893],[128.98951256600017,-8.188897393999852],[129.02963300899998,-8.206801039999903],[129.03614342500006,-8.22031015399989]]],[[[138.9044702480002,-8.351739190999865],[138.91089928500006,-8.374769789999931],[138.90984134200008,-8.396091403999902],[138.8940535820002,-8.405450127999842],[138.69996178500006,-8.39462655999985],[138.65406334700003,-8.376153252999828],[138.62989342500023,-8.37127044099985],[138.58236738400015,-8.372979424999855],[138.558360222,-8.366631768999824],[138.5480249360002,-8.347100518999852],[138.55225670700023,-8.322686455999886],[138.56421959700006,-8.307305596999852],[138.639984571,-8.257012627999885],[138.65723717500012,-8.241143487999864],[138.6647241550002,-8.223890882999854],[138.667165561,-8.203057549999883],[138.67505944100012,-8.189141533999901],[138.68881269600004,-8.181329033999901],[138.72852623800023,-8.176690362999878],[138.78532962300005,-8.15894947699988],[138.81690514400006,-8.161879164999903],[138.83139082100004,-8.185642184999907],[138.83529707100004,-8.219008070999891],[138.83529707100004,-8.25123463299984],[138.84197024800008,-8.276950778999876],[138.85816491000006,-8.297458591999842],[138.89730879000015,-8.33717213299984],[138.9044702480002,-8.351739190999865]]],[[[127.68913821700018,-8.237888278999916],[127.669200066,-8.240899346999825],[127.64812259200018,-8.235772393999909],[127.620778842,-8.21266041499986],[127.6040145190001,-8.206801039999903],[127.68295332100004,-8.15520598799985],[127.70264733200005,-8.151462497999916],[127.72291100400011,-8.153008721999868],[127.74187259200019,-8.15894947699988],[127.76059004000015,-8.17392343499992],[127.77198326900023,-8.194431247999873],[127.76880944100017,-8.212579033999873],[127.74488365999999,-8.220472914999945],[127.72437584700006,-8.223728122999887],[127.68913821700018,-8.237888278999916]]],[[[117.55372155000006,-8.379001559999864],[117.53394616000017,-8.38494231599988],[117.52613366000017,-8.381768487999821],[117.49252363400014,-8.36101653399983],[117.4848738940001,-8.350192966999927],[117.48560631600006,-8.343031507999882],[117.49594160200014,-8.329766533999859],[117.51124108200011,-8.295505466999884],[117.51075280000012,-8.28101978999993],[117.49976647200018,-8.26523202899989],[117.4897567070001,-8.25741952899989],[117.48462975400015,-8.255059502999842],[117.48267662900004,-8.250664971999866],[117.48047936300021,-8.209161065999865],[117.48161868600008,-8.195000908999845],[117.48682701900016,-8.182875257999854],[117.49390709699999,-8.176202080999886],[117.54835045700021,-8.149021091999884],[117.5634871750001,-8.145196221999868],[117.66431725400011,-8.148125908999887],[117.67310631600006,-8.154066664999917],[117.68336022200018,-8.158623955999857],[117.69174238400015,-8.164727471999853],[117.6953231130001,-8.175876559999864],[117.69255618600006,-8.183526299999897],[117.68539472700003,-8.189222914999874],[117.66732832099997,-8.199395440999837],[117.64031009200002,-8.224053643999824],[117.62061608200013,-8.253594658999887],[117.56657962300021,-8.363946221999852],[117.55372155000006,-8.379001559999864]]],[[[119.10035241000004,-8.25156015399986],[119.07878665500007,-8.2621395809999],[119.05152428500006,-8.261407158999873],[119.022797071,-8.234307549999853],[119.02027428500018,-8.189711195999863],[119.04200280000023,-8.148532809999892],[119.08643639400006,-8.13152434699984],[119.11304772200002,-8.146661065999837],[119.13152103000006,-8.166273695999806],[119.13746178500016,-8.190606377999856],[119.12720787900004,-8.220472914999945],[119.11654707100003,-8.235609632999852],[119.10035241000004,-8.25156015399986]]],[[[124.56869550900015,-8.13103606599985],[124.58570397199999,-8.14576588299984],[124.58920332100003,-8.190606377999856],[124.6030379570001,-8.206801039999903],[124.64340254000014,-8.180433851999823],[124.66504967500023,-8.1696916649999],[124.68799889400023,-8.165215752999842],[124.77361087300001,-8.15894947699988],[124.89828535200016,-8.168145440999865],[124.93816165500006,-8.15894947699988],[124.94532311300011,-8.154554945999806],[124.94776451900023,-8.151136976999808],[124.95232181100008,-8.149834893999895],[124.96607506600016,-8.151543877999899],[124.97087649800007,-8.154229424999883],[124.97624759200002,-8.158868096999894],[124.98422285199997,-8.163262627999885],[124.99675540500017,-8.165215752999842],[125.04656009200008,-8.157810153999847],[125.08082116000006,-8.159437757999868],[125.0869246750001,-8.158786716999913],[125.09253991000004,-8.16155364399988],[125.10320071700008,-8.172621351999823],[125.12452233200023,-8.205824476999837],[125.134043816,-8.217054945999848],[125.13917076900023,-8.233575127999828],[125.13746178500006,-8.321384372999887],[125.13428795700015,-8.339043877999899],[125.123301629,-8.352308851999837],[125.09978274800002,-8.357598565999822],[125.07886803500017,-8.359307549999825],[125.02125084699999,-8.37127044099985],[124.93238366000017,-8.377373955999843],[124.76612389400016,-8.408461195999848],[124.7253524100001,-8.409763278999845],[124.67009524800018,-8.40309010199988],[124.66163170700023,-8.403415622999901],[124.6501570970001,-8.405450127999842],[124.63917076900024,-8.41025155999992],[124.61670983200023,-8.423109632999854],[124.59644616000004,-8.428155205999886],[124.57601972700016,-8.437432549999839],[124.55909264400006,-8.440687757999882],[124.54957116000016,-8.445896091999884],[124.54460696700002,-8.447035414999917],[124.53842207100016,-8.445000908999887],[124.52654056100019,-8.43564218499985],[124.52035566500015,-8.432793877999913],[124.50196373800011,-8.429782809999907],[124.49545332099997,-8.43035247199988],[124.48633873800011,-8.432793877999913],[124.46070397200005,-8.445082289999874],[124.45541425900015,-8.447035414999917],[124.44955488400004,-8.450290622999859],[124.44418379000015,-8.457207940999865],[124.4375106130001,-8.464288018999824],[124.42790774800001,-8.467461846999882],[124.41822350400017,-8.464613539999945],[124.40691165500019,-8.451104424999869],[124.39682050900004,-8.447035414999917],[124.39096113399998,-8.448907158999887],[124.3732202480002,-8.458265882999825],[124.37029056100008,-8.460625908999873],[124.35710696700012,-8.456312757999868],[124.35075931100017,-8.448825778999904],[124.34620201900022,-8.439222914999915],[124.33855228000013,-8.429375908999901],[124.33350670700004,-8.413018487999892],[124.345388217,-8.39641692499984],[124.37647545700021,-8.37127044099985],[124.38607832100003,-8.35833098799985],[124.40674889400022,-8.320570570999877],[124.41049238400015,-8.306084893999838],[124.47266686300004,-8.268812757999866],[124.50440514400022,-8.264092705999857],[124.51417076900007,-8.261407158999873],[124.51929772200016,-8.257500908999873],[124.532969597,-8.243829033999845],[124.54297936300013,-8.237888278999916],[124.54761803500004,-8.230726820999877],[124.54761803500004,-8.223728122999887],[124.53777103000019,-8.220472914999945],[124.51563561300021,-8.225681247999844],[124.49317467500023,-8.233493747999844],[124.42123457100011,-8.267510674999867],[124.39242597700016,-8.26523202899989],[124.39682050900004,-8.220472914999945],[124.40552819099999,-8.211114190999822],[124.41968834700005,-8.202243747999873],[124.43279056100019,-8.191094658999845],[124.43848717500006,-8.175876559999864],[124.44190514400012,-8.162041924999869],[124.45069420700015,-8.149021091999884],[124.46265709700016,-8.138604424999897],[124.47527103000007,-8.132582289999888],[124.49634850400011,-8.138604424999897],[124.54542076900023,-8.130140882999854],[124.56869550900015,-8.13103606599985]]],[[[127.8325301440001,-8.098565362999864],[127.86793053500004,-8.106215101999894],[127.94027753999997,-8.13103606599985],[128.01783287900005,-8.143161716999842],[128.05738366000017,-8.142022393999895],[128.090586785,-8.13103606599985],[128.12354576900006,-8.150323174999883],[128.12745201900006,-8.161309502999842],[128.11793053500017,-8.17888762799987],[128.0664168630001,-8.220472914999945],[128.05396569100014,-8.226820570999877],[128.0415145190002,-8.255059502999842],[128.02564537900005,-8.261407158999873],[128.00863691500015,-8.258721612999892],[127.99415123800011,-8.251885674999883],[127.95199629000011,-8.223890882999854],[127.93930097700004,-8.21819426899988],[127.92530358200021,-8.215101820999806],[127.86378014400012,-8.210707289999903],[127.84359785200014,-8.205743096999853],[127.82699629000004,-8.196384372999916],[127.80209394600016,-8.176202080999886],[127.79322350400004,-8.162367445999804],[127.78956139400017,-8.141371351999851],[127.78516686300006,-8.131605726999823],[127.7755639980002,-8.124607028999932],[127.76156660200014,-8.117445570999804],[127.76563561300011,-8.108086846999853],[127.77418053500006,-8.10344817499984],[127.78516686300006,-8.102308851999808],[127.7963973320001,-8.103773695999863],[127.8325301440001,-8.098565362999864]]],[[[117.97120201900006,-8.100355726999851],[117.97754967500013,-8.109144789999903],[117.98609459699999,-8.10719166499986],[117.99610436300011,-8.100681247999873],[118.005056186,-8.100192966999884],[118.024180535,-8.103773695999863],[118.07154381600006,-8.105401299999883],[118.11524498800023,-8.113864841999913],[118.14966881600017,-8.134454033999859],[118.16822350400015,-8.172621351999823],[118.17269941500003,-8.213148695999848],[118.17725670700004,-8.232679945999834],[118.18506920700005,-8.240899346999825],[118.189138217,-8.248223565999837],[118.222911004,-8.288750908999845],[118.24390709700005,-8.328708591999899],[118.25359134200014,-8.340264580999829],[118.25953209700005,-8.342868747999916],[118.26417076900005,-8.340997002999856],[118.26807701900017,-8.338067315999837],[118.27068118600008,-8.33717213299984],[118.30396569100006,-8.368259372999844],[118.31226647200006,-8.37127044099985],[118.32781009200002,-8.3676083309999],[118.34701582099999,-8.357354424999867],[118.36524498800006,-8.344659112999821],[118.39161217500008,-8.318454684999878],[118.39828535200004,-8.309014580999857],[118.40113366000017,-8.299248955999829],[118.40642337300002,-8.295586846999866],[118.41814212300002,-8.290134372999916],[118.42986087300014,-8.282484632999811],[118.44361412900004,-8.257907809999878],[118.46338951900016,-8.249444268999852],[118.48609459699999,-8.246189059999892],[118.50342858200011,-8.247735283999845],[118.51319420700023,-8.253187757999882],[118.52955162900004,-8.266289971999853],[118.5410262380001,-8.268812757999866],[118.58228600400005,-8.268812757999866],[118.59017988400002,-8.270684502999828],[118.59644616000016,-8.274672132999811],[118.60173587300001,-8.279066664999888],[118.60645592500023,-8.28191497199984],[118.63941491000004,-8.286309502999913],[118.64747155000016,-8.288750908999845],[118.66374759200018,-8.305759372999901],[118.69581139400006,-8.37127044099985],[118.68913821700014,-8.387872002999899],[118.68474368600002,-8.41269296699987],[118.68148847699997,-8.456963799999826],[118.65650475400017,-8.526462497999844],[118.65430748800006,-8.542087497999916],[118.66732832100014,-8.547295830999914],[118.68311608200011,-8.533461195999818],[118.69646243600002,-8.514580987999878],[118.70199629000015,-8.504489841999913],[118.70427493600015,-8.49700286299985],[118.71517988399997,-8.471449476999865],[118.72689863399998,-8.451836846999894],[118.72584069100006,-8.441989841999884],[118.72095787900017,-8.432061455999886],[118.71631920700024,-8.41912200299987],[118.71697024800008,-8.37957122199984],[118.73145592500012,-8.349297783999845],[118.75391686300023,-8.326429945999834],[118.77784264400012,-8.309258721999896],[118.81267337300002,-8.295586846999866],[118.85922285200016,-8.288832289999917],[118.90805097700014,-8.288832289999917],[118.94971764400012,-8.295586846999866],[118.97250410200003,-8.30201588299988],[118.98829186300011,-8.309014580999857],[118.99830162900015,-8.321221612999835],[119.00440514400016,-8.343357028999904],[119.00733483200004,-8.372002862999878],[119.02165774800008,-8.419528903999874],[119.05111738400015,-8.470472914999888],[119.04558353000002,-8.508965752999885],[119.03052819099999,-8.547784112999892],[119.03842207099997,-8.582940362999864],[119.038340691,-8.607679945999848],[119.04151451900006,-8.629815362999821],[119.05225670700011,-8.64568450299984],[119.07569420700005,-8.65195077899989],[119.090505405,-8.649102471999853],[119.11085045700023,-8.642266533999845],[119.13013756600016,-8.633396091999884],[119.14087975400015,-8.624607028999918],[119.14039147200018,-8.615329684999864],[119.13542728,-8.60621510199988],[119.13396243600006,-8.59937916499986],[119.154551629,-8.59441497199991],[119.15967858200023,-8.58806731599988],[119.16138756600006,-8.578383070999818],[119.16138756600006,-8.565850518999824],[119.16732832100016,-8.559747002999842],[119.180918816,-8.573011976999865],[119.19507897200008,-8.594008070999806],[119.20362389400022,-8.610935153999888],[119.19922936300006,-8.612399997999844],[119.19312584700016,-8.615980726999823],[119.18930097700016,-8.617771091999899],[119.1943465500001,-8.626071872999887],[119.18946373800023,-8.631280205999872],[119.180918816,-8.636488539999874],[119.17497806100019,-8.64511484199987],[119.1740828790001,-8.659926039999945],[119.17701256599999,-8.674493096999882],[119.18246504000014,-8.688164971999825],[119.18930097700016,-8.700290622999901],[119.18100019599997,-8.703383070999804],[119.17774498800023,-8.706801039999903],[119.17823326900022,-8.71209075299987],[119.18181399800018,-8.720798434999864],[119.16456139400013,-8.731540622999873],[119.15162194100017,-8.742364190999865],[119.13843834700006,-8.745782158999873],[119.12037194100002,-8.734470309999892],[119.11670983200005,-8.747816664999903],[119.11003665500013,-8.753594658999873],[119.10059655000012,-8.752129815999822],[119.08969160200004,-8.744317315999822],[119.07789147200006,-8.739353122999873],[119.06544030000023,-8.74114348799985],[119.052989129,-8.745538018999838],[118.99154707100004,-8.755059502999842],[118.97185306100019,-8.751153252999842],[118.94597415500017,-8.73064544099988],[118.92359459700005,-8.698500257999825],[118.91553795700021,-8.692152601999894],[118.89844811300004,-8.688409112999864],[118.89193769599997,-8.693454684999892],[118.8885197270001,-8.703301690999822],[118.88086998800024,-8.713962497999844],[118.85710696700008,-8.721774997999844],[118.81332441499997,-8.710219007999811],[118.79135175900015,-8.720798434999864],[118.76514733200023,-8.710870049999855],[118.74642988400015,-8.717868747999844],[118.72779381600017,-8.733168226999808],[118.70199629000015,-8.74814218499992],[118.71192467500023,-8.754815362999892],[118.72657311300017,-8.769789320999834],[118.73617597700004,-8.774672132999894],[118.74659264400012,-8.776299737999821],[118.8256942070001,-8.776543877999856],[118.90723717500022,-8.789727471999909],[118.92693118600019,-8.79656340899983],[118.93539472700006,-8.806084893999824],[118.93775475400015,-8.812269789999887],[118.94752037900005,-8.825372002999854],[118.94971764400012,-8.833672783999845],[118.94459069099999,-8.84148528399983],[118.93246504000004,-8.84644947699988],[118.90805097700014,-8.85051848799985],[118.89682050900015,-8.849786065999822],[118.87696373800021,-8.84539153399983],[118.86719811300011,-8.84433359199987],[118.8517358730002,-8.838148695999804],[118.84595787900005,-8.836846612999906],[118.84669030000022,-8.839125257999882],[118.84229576900006,-8.843926690999865],[118.83562259200014,-8.848402601999837],[118.82927493600019,-8.85051848799985],[118.81763756600017,-8.84351978999986],[118.77735436300013,-8.811618747999844],[118.75733483200021,-8.802015882999868],[118.71404056100006,-8.799981377999842],[118.66895592500006,-8.806898695999834],[118.4650171230002,-8.865004164999888],[118.41423587300001,-8.85361093499992],[118.38738040500006,-8.795830987999892],[118.39112389400006,-8.770196221999838],[118.40503991000017,-8.7504208309999],[118.42212975399998,-8.731052341999884],[118.43523196700008,-8.706475518999879],[118.43873131600017,-8.690036716999884],[118.43970787900004,-8.674574476999865],[118.43832441500014,-8.65976327899989],[118.43523196700008,-8.64511484199987],[118.42855879000004,-8.629815362999821],[118.42042076900013,-8.615655205999886],[118.41456139400017,-8.600518487999892],[118.41472415500002,-8.582940362999864],[118.40040123800021,-8.596123955999914],[118.39698326900023,-8.617933851999865],[118.40113366000017,-8.662367445999877],[118.3935653000001,-8.674574476999865],[118.37623131600006,-8.680759372999916],[118.3556421230002,-8.684991143999852],[118.339040561,-8.692152601999894],[118.31226647200006,-8.726983330999829],[118.29932701900023,-8.757907809999878],[118.29493248800021,-8.765232028999876],[118.28663170700005,-8.770440362999878],[118.27491295700005,-8.772149346999882],[118.1577254570001,-8.86785247199984],[118.14031009200002,-8.872247002999913],[118.11947675900015,-8.862969658999859],[118.09799238400002,-8.850274346999896],[118.07886803500006,-8.84433359199987],[118.07016035200016,-8.846286716999913],[118.03728274800008,-8.858005466999899],[118.03858483200005,-8.856052341999856],[118.03516686300006,-8.853122653999847],[118.02955162900017,-8.850844007999868],[118.024180535,-8.85051848799985],[118.01677493600002,-8.862562757999854],[118.00847415500006,-8.867771091999856],[117.99838300899998,-8.880954684999892],[117.89047285200014,-8.936781507999882],[117.88013756600006,-8.928317966999842],[117.87289472700003,-8.92782968499985],[117.86622155000018,-8.93092213299984],[117.85670006600017,-8.933038018999852],[117.85303795700011,-8.929131768999852],[117.84498131600016,-8.910902601999865],[117.83936608200005,-8.905694268999866],[117.82545006600012,-8.905450127999826],[117.817637566,-8.911228122999887],[117.81202233200011,-8.919203382999854],[117.80518639400006,-8.926202080999829],[117.79558353000014,-8.930759372999873],[117.78793378999998,-8.932793877999899],[117.77442467500012,-8.933038018999852],[117.76758873800011,-8.931247653999861],[117.757172071,-8.926527601999851],[117.74781334700018,-8.92099374799993],[117.73780358200005,-8.909763278999918],[117.72510826900012,-8.912041924999897],[117.71290123800021,-8.917413018999866],[117.70899498800023,-8.920017184999864],[117.66765384200014,-8.937107028999902],[117.55811608200005,-9.001885674999912],[117.51807701900022,-9.017836195999818],[117.47388756600006,-9.029961846999823],[117.38886774800002,-9.053738711999898],[117.33413203800002,-9.059354224999836],[117.30050792500018,-9.047070401999903],[117.27385838899997,-9.040239581999856],[117.22614543300003,-9.023780684999805],[117.19240561200004,-9.023726812999868],[117.17144575300009,-9.032049267999867],[117.1534646800001,-9.061166275999838],[117.14096893700005,-9.076417890999934],[117.1268009770001,-9.091241143999838],[117.07129967500012,-9.101739190999893],[117.00973561500008,-9.107292888999863],[116.99142139600004,-9.085126613999918],[116.97039034600019,-9.071334698999891],[116.94922936300004,-9.060153903999916],[116.92823326900023,-9.063897393999866],[116.9064233730001,-9.063409112999878],[116.85027103000017,-9.045342705999857],[116.82829837300008,-9.042901299999826],[116.8061629570001,-9.036309502999842],[116.77393639400022,-9.012790622999887],[116.76303144600016,-9.015557549999855],[116.758555535,-9.00457122199988],[116.74537194100006,-8.983086846999866],[116.72845166200001,-8.963095719999927],[116.73119975700006,-8.946521530999831],[116.74790651800018,-8.922928004999918],[116.74086780600024,-8.905055321999853],[116.73661259900004,-8.883020736999867],[116.73517982600019,-8.873397366999882],[116.75883945400008,-8.849859070999813],[116.77690855500012,-8.826346783999867],[116.81714928500004,-8.818129164999931],[116.82447350400004,-8.799004815999865],[116.82129967500006,-8.78728606599988],[116.81446373800006,-8.780043226999851],[116.80762780000022,-8.775485934999907],[116.80453535200016,-8.771661065999893],[116.80250084700005,-8.764580987999835],[116.7973738940001,-8.754571221999853],[116.79070071700008,-8.745375257999868],[116.77107815800017,-8.747815281999877],[116.76407471300014,-8.738189313999854],[116.77234298600003,-8.705071437999877],[116.77226736300005,-8.68025719799985],[116.7485167230001,-8.666544377999898],[116.7900914930001,-8.583704495999852],[116.83204186300011,-8.574802341999856],[116.83936608200011,-8.554864190999865],[116.83814537900017,-8.50790780999992],[116.85726972700017,-8.524021091999899],[116.86589603000007,-8.527601820999877],[116.87964928500016,-8.528252862999821],[116.89039147200016,-8.526299737999878],[116.98454837300021,-8.495782158999845],[117.03199303500006,-8.468357028999876],[117.09017988400015,-8.425225518999866],[117.12614993600002,-8.405450127999842],[117.11768639400012,-8.383477471999825],[117.14047285200004,-8.372002862999878],[117.17351321700006,-8.365166924999869],[117.19507897200018,-8.357598565999822],[117.21558678500007,-8.38494231599988],[117.22901451900022,-8.388116143999852],[117.261973504,-8.390313408999845],[117.27377363400008,-8.395196221999825],[117.28736412900005,-8.404961846999853],[117.31609134200008,-8.419691664999931],[117.35320071700018,-8.446709893999893],[117.43392988400004,-8.481133721999825],[117.42774498800023,-8.4652645809999],[117.43116295700021,-8.453301690999865],[117.43775475400004,-8.442315362999821],[117.44141686300004,-8.429375908999901],[117.44271894600014,-8.410739841999913],[117.4472762380001,-8.4086239559999],[117.45573978000006,-8.414239190999908],[117.46876061300021,-8.41912200299987],[117.51970462300007,-8.418715101999865],[117.54411868600019,-8.414239190999908],[117.55811608200005,-8.405450127999842],[117.56788170700011,-8.422295830999843],[117.57691491,-8.487074476999851],[117.59229576900023,-8.514743747999844],[117.59815514400012,-8.493910414999874],[117.599945509,-8.446058851999851],[117.61280358200011,-8.432793877999913],[117.62330162900017,-8.438409112999821],[117.62907962300004,-8.4574520809999],[117.63550866000006,-8.524997653999876],[117.6396590500001,-8.540622653999861],[117.64909915500012,-8.551853122999859],[117.69874108200024,-8.576755466999899],[117.7111108730001,-8.573907158999859],[117.7208764980002,-8.568536065999893],[117.73072350400004,-8.565362237999835],[117.74382571700019,-8.569268487999835],[117.73943118600017,-8.576267184999907],[117.7363387380001,-8.582940362999864],[117.74756920700023,-8.585707289999915],[117.75619550900004,-8.589532158999845],[117.76368248800011,-8.595310153999904],[117.77165774800001,-8.60409921699987],[117.76889082099997,-8.607110283999873],[117.76465905000018,-8.614190362999835],[117.76465905000018,-8.621270440999893],[117.77442467500012,-8.624607028999918],[117.78207441500003,-8.625258070999877],[117.78630618600008,-8.627699476999808],[117.78874759200018,-8.631931247999916],[117.79151451900022,-8.638116143999893],[117.78077233200021,-8.637627862999821],[117.77149498800006,-8.638604424999881],[117.76368248800011,-8.641045830999829],[117.75733483200004,-8.64511484199987],[117.76531009200015,-8.659926039999945],[117.77833092500012,-8.695977471999896],[117.78785240999999,-8.710219007999811],[117.80518639400006,-8.719984632999852],[117.82349694100006,-8.719333591999899],[117.88656660200014,-8.699476820999806],[117.89389082100014,-8.700290622999901],[117.900075717,-8.70671965899983],[117.9023543630001,-8.715590101999865],[117.90308678500006,-8.723565362999821],[117.9044702480002,-8.726983330999829],[117.91684004000014,-8.727308851999851],[117.93425540500002,-8.729750257999882],[117.952891472,-8.736016533999845],[117.96900475400017,-8.74814218499992],[117.98861738400014,-8.732354424999883],[118.0302840500001,-8.688246351999808],[118.04786217500012,-8.679131768999895],[118.04859459700006,-8.675957940999837],[118.0548608730002,-8.669203382999811],[118.06185957099997,-8.663344007999854],[118.06527753999997,-8.662367445999877],[118.06812584700005,-8.655938408999873],[118.07496178500006,-8.65374114399988],[118.083750847,-8.653252862999892],[118.12281334700018,-8.645765882999825],[118.1577254570001,-8.64511484199987],[118.16578209700006,-8.64723072699988],[118.18376712300007,-8.656508070999848],[118.19190514400012,-8.658786716999913],[118.24610436300023,-8.657159112999892],[118.26563561300023,-8.652032158999873],[118.28174889400012,-8.641534112999906],[118.29127037899998,-8.624607028999918],[118.29086347699999,-8.605889580999857],[118.28288821700002,-8.587985934999892],[118.26954186300021,-8.574476820999834],[118.25359134200014,-8.569268487999835],[118.25025475400011,-8.56454843499992],[118.24187259200002,-8.5551083309999],[118.23316491000007,-8.54851653399983],[118.22917728000007,-8.5525041649999],[118.22706139400022,-8.55836353999986],[118.22234134200008,-8.564873955999843],[118.20923912900015,-8.576755466999899],[118.19288170700004,-8.549493096999896],[118.14893639400023,-8.512139580999857],[118.1335555350001,-8.486748955999829],[118.12671959700018,-8.486748955999829],[118.11719811300006,-8.496514580999872],[118.1032820970001,-8.48837655999985],[118.07545006600004,-8.456963799999826],[118.05746504000004,-8.45061614399988],[118.03638756600016,-8.457289320999848],[118.00318444100017,-8.473728122999844],[117.98845462300008,-8.469984632999811],[117.9702254570001,-8.4613583309999],[117.95492597700003,-8.451267184999935],[117.9399520190001,-8.432793877999913],[117.88152103000002,-8.398614190999822],[117.82252037900017,-8.354180596999896],[117.81006920700015,-8.34002044099988],[117.78663170700004,-8.30559661299985],[117.77165774800001,-8.288750908999845],[117.74382571700019,-8.268812757999866],[117.73080488400004,-8.252699476999894],[117.7221785820001,-8.244561455999872],[117.71225019599997,-8.240899346999825],[117.70630944100017,-8.229668877999828],[117.7111108730001,-8.203871351999894],[117.72071373800023,-8.176202080999886],[117.72950280000013,-8.15894947699988],[117.74097741000006,-8.147881768999852],[117.749685092,-8.144952080999829],[117.75684655000006,-8.145603122999873],[117.76351972700004,-8.144789320999863],[117.78980553500006,-8.127373955999886],[117.79493248800017,-8.124932549999855],[117.81251061300011,-8.12184010199988],[117.89527428500004,-8.090020440999837],[117.91781660200006,-8.085870049999897],[117.95875084700006,-8.083265882999811],[117.96558678500017,-8.088962497999887],[117.97120201900006,-8.100355726999851]]],[[[131.07715905000023,-8.142022393999895],[131.07943769600004,-8.148858330999829],[131.0888778000001,-8.151543877999899],[131.09400475400005,-8.14837004999984],[131.10401451900012,-8.134372653999876],[131.10938561300006,-8.13103606599985],[131.124847852,-8.127699476999823],[131.14161217500012,-8.121677341999913],[131.16016686300023,-8.11874765399989],[131.18165123800023,-8.124932549999855],[131.16081790500016,-8.15227629999984],[131.13168379000004,-8.167657158999873],[131.10092207100004,-8.179620049999897],[131.06120853,-8.205824476999837],[130.99105879000012,-8.234795830999843],[130.9796655610002,-8.23609791499993],[130.95167076900006,-8.233493747999844],[130.90211022200006,-8.249688408999887],[130.8937280610002,-8.25123463299984],[130.89625084700012,-8.28435637799987],[130.892425977,-8.296075127999856],[130.87940514400012,-8.309258721999896],[130.83472741000006,-8.335625908999901],[130.82129967500023,-8.347100518999852],[130.81088300900012,-8.35133228999986],[130.76335696700008,-8.350762627999899],[130.77442467500012,-8.334161065999837],[130.81527754000015,-8.285332940999837],[130.83578535199996,-8.268649997999901],[130.84424889400023,-8.254327080999914],[130.85499108200023,-8.240004164999917],[130.86939537900005,-8.233493747999844],[130.87907962300008,-8.231215101999865],[130.90552819100006,-8.219414971999896],[130.91342207100004,-8.213636976999837],[130.92221113399998,-8.198418877999856],[130.92107181100008,-8.18775807099982],[130.91602623800023,-8.17644622199984],[130.91342207100004,-8.15894947699988],[130.9174910820001,-8.141289971999868],[130.92644290500013,-8.132500908999901],[130.93848717500023,-8.132582289999888],[130.95167076900006,-8.141371351999851],[130.97380618600005,-8.145277601999851],[131.01441491000017,-8.095391533999887],[131.03760826900012,-8.083265882999811],[131.0509546230002,-8.091241143999852],[131.0854598320001,-8.124932549999855],[131.079844597,-8.133233330999843],[131.07715905000023,-8.142022393999895]]],[[[122.98292076900023,-8.160332940999865],[122.97787519600003,-8.196384372999916],[123.00660241000017,-8.261407158999873],[123.02149498800011,-8.278985283999901],[123.02637780000006,-8.288750908999845],[123.02800540500019,-8.297051690999837],[123.02637780000006,-8.320082289999888],[123.01872806100008,-8.334079684999864],[123.00074303499999,-8.340997002999856],[122.94288170700011,-8.34392669099988],[122.92115319100006,-8.34970468499985],[122.90414472700016,-8.363376559999878],[122.89730879000014,-8.388360283999887],[122.90381920700021,-8.42693450299987],[122.90455162900017,-8.447035414999917],[122.89730879000014,-8.460625908999873],[122.87842858200021,-8.462090752999842],[122.85287519600003,-8.454278252999842],[122.8305770190001,-8.44345468499985],[122.82097415500013,-8.436211846999825],[122.81771894600017,-8.426446221999882],[122.81080162900015,-8.428643487999878],[122.80355879000015,-8.437920830999829],[122.80054772200005,-8.450127862999892],[122.80111738400002,-8.469496351999823],[122.80307050900014,-8.477634372999844],[122.80738366000016,-8.486748955999829],[122.84937584700006,-8.552015882999825],[122.84839928500016,-8.583591403999904],[122.80738366000016,-8.610935153999888],[122.79712975400004,-8.613539320999877],[122.74732506600017,-8.620049737999878],[122.74097741000006,-8.623630466999856],[122.72852623800011,-8.63486093499985],[122.72103925900015,-8.63665129999984],[122.68751061300011,-8.631442966999842],[122.67920983200023,-8.632907809999892],[122.6564233730002,-8.64511484199987],[122.64966881600017,-8.65195077899989],[122.6381942070001,-8.65195077899989],[122.56544030000023,-8.669122002999828],[122.55494225400017,-8.676527601999808],[122.52540123800011,-8.706312757999825],[122.51514733200011,-8.71209075299987],[122.4494735040001,-8.73430754999984],[122.40788821700019,-8.74146900799988],[122.30388431100019,-8.739027601999851],[122.28711998800016,-8.740655205999872],[122.26531009200019,-8.74814218499992],[122.25277754000003,-8.749688408999873],[122.22706139400017,-8.737237237999864],[122.16293378999998,-8.726983330999829],[122.114512566,-8.732354424999883],[122.07781009200019,-8.753838799999825],[122.04420006600017,-8.780694268999895],[122.00538170700005,-8.802015882999868],[121.87614993600008,-8.837660414999917],[121.83472741000006,-8.858005466999899],[121.79371178500004,-8.883965752999899],[121.78044681100013,-8.88795338299988],[121.76978600400017,-8.88762786299985],[121.7597762380001,-8.885349216999884],[121.74870853000006,-8.883965752999899],[121.73406009200006,-8.879978122999916],[121.71583092500006,-8.870538018999909],[121.6992293630001,-8.859470309999864],[121.69011478000002,-8.85051848799985],[121.67432701900007,-8.862725518999824],[121.659353061,-8.898207289999903],[121.64600670700023,-8.905694268999866],[121.64063561300006,-8.896661065999865],[121.63086998800021,-8.852634372999859],[121.62175540500006,-8.836846612999906],[121.58106530000022,-8.817640882999854],[121.54086347700014,-8.814873955999886],[121.50001061300011,-8.816501559999907],[121.45671634200002,-8.810153903999876],[121.42017662900011,-8.798028252999885],[121.39600670700011,-8.794122002999885],[121.37818444100002,-8.799004815999865],[121.36703535199999,-8.819919528999918],[121.37012780000005,-8.842380466999913],[121.37623131600017,-8.864353122999844],[121.3747664720001,-8.883965752999899],[121.34058678499999,-8.918064059999907],[121.29851321700006,-8.918389580999843],[121.21094811300011,-8.892022393999838],[121.16529381600016,-8.895114841999913],[121.12867272200006,-8.908623955999886],[121.06690514400022,-8.940524997999901],[121.0481063160001,-8.94410572699988],[120.99488366,-8.940524997999901],[120.96387780000005,-8.92962004999984],[120.95850670700023,-8.92595794099988],[120.93213951900023,-8.926934502999856],[120.92286217500005,-8.926202080999829],[120.90650475400015,-8.913832289999887],[120.86329186300004,-8.869317315999893],[120.8545028000001,-8.854180596999896],[120.848399285,-8.829766533999845],[120.83318118600003,-8.816989841999899],[120.81299889400012,-8.815036716999856],[120.79249108200015,-8.823174737999864],[120.780528191,-8.836683851999851],[120.77312259200002,-8.852471612999892],[120.76417076900013,-8.865492445999877],[120.74781334700016,-8.871026299999897],[120.72584069100017,-8.867445570999834],[120.71159915500006,-8.85955169099985],[120.6993921230002,-8.850681247999901],[120.68336022199999,-8.84433359199987],[120.67310631600019,-8.843845309999878],[120.65162194100004,-8.845635674999869],[120.64161217500006,-8.84433359199987],[120.62427819100016,-8.82626718499985],[120.61784915500007,-8.823174737999864],[120.60108483200021,-8.802015882999868],[120.59392337300021,-8.795830987999892],[120.586192254,-8.792250257999825],[120.57789147199999,-8.790215752999899],[120.55640709700018,-8.788995049999883],[120.53386478000019,-8.79159921699987],[120.49268639400023,-8.801364841999913],[120.47046959700018,-8.802015882999868],[120.43783613400002,-8.79656340899983],[120.42579186300011,-8.795830987999892],[120.41431725400017,-8.79762135199988],[120.40430748800011,-8.800713799999869],[120.393728061,-8.801202080999857],[120.38160241000006,-8.795830987999892],[120.32300865999999,-8.830661716999842],[120.27906334700018,-8.82935963299984],[120.243907097,-8.823174737999864],[120.22364342500012,-8.811455987999878],[120.18262780000006,-8.776055596999868],[120.16529381599999,-8.768649997999887],[120.14478600400004,-8.76873137799987],[120.13103274800001,-8.770765882999811],[120.09424889400022,-8.788995049999883],[120.05884850400004,-8.799899997999859],[119.97575931100008,-8.813897393999824],[119.94711347699997,-8.832696221999868],[119.94336998800016,-8.832289320999863],[119.93930097699999,-8.832696221999868],[119.93588300899998,-8.836846612999906],[119.93637129,-8.84254322699988],[119.943695509,-8.853122653999847],[119.94271894600004,-8.858005466999899],[119.93376712300007,-8.864434502999828],[119.91993248800006,-8.870782158999859],[119.90739993600019,-8.871677341999842],[119.90186608200005,-8.861260674999855],[119.89185631600017,-8.806735934999878],[119.88363691499998,-8.802992445999848],[119.87256920700023,-8.803399346999852],[119.86036217500005,-8.802015882999868],[119.83969160200014,-8.792901299999869],[119.82398522200018,-8.780368747999873],[119.8127547540001,-8.763278903999918],[119.8056746750001,-8.740655205999872],[119.80372155000006,-8.596774997999859],[119.80779056100002,-8.570000908999859],[119.82064863400016,-8.546563408999887],[119.87110436300004,-8.494073174999839],[119.87370853000017,-8.472263278999876],[119.86768639400005,-8.447849216999927],[119.8671981130001,-8.412855726999837],[119.89795983200004,-8.444756768999852],[119.9194442070001,-8.461195570999848],[119.92920983200023,-8.456963799999826],[119.93425540500007,-8.45582447699988],[119.9638778000001,-8.439629815999837],[119.97046959700018,-8.437595309999892],[119.977305535,-8.436293226999808],[119.98414147199999,-8.438653252999856],[119.99057050900015,-8.447035414999917],[120.00269616000006,-8.43873463299984],[120.00977623800011,-8.424737237999878],[120.01514733200023,-8.405450127999842],[120.01783287900004,-8.402520440999822],[120.02222741,-8.38884856599988],[120.02475019600004,-8.38494231599988],[120.033457879,-8.383477471999825],[120.0417586600001,-8.38600025799984],[120.04916425899998,-8.389825127999856],[120.05600019599997,-8.391778252999899],[120.05909264400006,-8.39072030999985],[120.06332441499997,-8.388360283999887],[120.06918379000015,-8.38600025799984],[120.07650800900015,-8.38494231599988],[120.08432050900014,-8.387383721999825],[120.08814537900017,-8.397556247999873],[120.09424889400022,-8.398614190999822],[120.10889733200015,-8.39185963299988],[120.11402428500016,-8.380954684999907],[120.11597740999999,-8.366875908999873],[120.12094160200016,-8.350762627999899],[120.12614993600006,-8.354668877999885],[120.13697350400015,-8.36467864399988],[120.14210045700004,-8.37127044099985],[120.14893639400006,-8.37127044099985],[120.16089928499999,-8.349867445999806],[120.19605553500016,-8.315687757999825],[120.2034611340001,-8.299248955999829],[120.21290123800006,-8.292738539999915],[120.27702884200002,-8.269219658999873],[120.37794030000005,-8.275079033999901],[120.39193769600016,-8.267836195999891],[120.41098066500014,-8.23552825299987],[120.42204837300008,-8.227308851999865],[120.43726647200005,-8.232354424999897],[120.44467207100014,-8.247002862999821],[120.44971764400005,-8.26376718499992],[120.45736738400002,-8.275079033999901],[120.48340905000005,-8.278741143999866],[120.521739129,-8.255466403999847],[120.54273522200005,-8.26523202899989],[120.5529077480002,-8.272881768999824],[120.56771894600016,-8.280531507999852],[120.58301842500022,-8.284600518999909],[120.59392337300021,-8.28191497199984],[120.60108483200021,-8.269789320999834],[120.60141035200016,-8.257012627999885],[120.59392337300021,-8.233493747999844],[120.6357528000001,-8.249607028999902],[120.65455162900015,-8.261651299999826],[120.6622827480002,-8.278497002999828],[120.67310631600019,-8.29225025799984],[120.72584069100017,-8.322686455999886],[120.74463951900023,-8.329766533999859],[120.8125106130001,-8.320977471999882],[120.83008873800021,-8.326592705999886],[120.84644616000017,-8.334161065999837],[120.87037194100006,-8.339288018999852],[120.90919030000023,-8.343357028999904],[120.95435631600012,-8.337497653999861],[120.97608483200004,-8.337497653999861],[120.99488366,-8.347100518999852],[121.017832879,-8.378513278999876],[121.03093509200006,-8.392673434999892],[121.0532332690001,-8.405450127999842],[121.10629316500004,-8.423923434999864],[121.12501061300011,-8.425957940999893],[121.14730879000015,-8.426039320999877],[121.15707441499997,-8.428887627999828],[121.16618899800008,-8.436211846999825],[121.17530358200005,-8.440362237999864],[121.19996178500004,-8.43873463299984],[121.21094811300011,-8.439629815999837],[121.21843509200006,-8.444594007999882],[121.22339928500006,-8.451755466999913],[121.22982832100014,-8.457940362999892],[121.24154707100003,-8.460625908999873],[121.25123131600016,-8.461114190999865],[121.27051842500012,-8.464532158999873],[121.27914472700006,-8.467461846999882],[121.29053795700013,-8.477471612999878],[121.31641686300011,-8.514743747999844],[121.337168816,-8.525323174999897],[121.38054446700006,-8.572198174999853],[121.40886478000013,-8.582940362999864],[121.42465254000014,-8.579278252999913],[121.43702233200011,-8.571954033999901],[121.45085696700019,-8.566664320999832],[121.47095787900004,-8.569268487999835],[121.48943118600008,-8.576104424999855],[121.49577884200019,-8.582452080999872],[121.498301629,-8.593519789999917],[121.501719597,-8.601820570999804],[121.509532097,-8.602146091999913],[121.5224715500001,-8.596612237999892],[121.52808678499999,-8.591241143999852],[121.56568444099999,-8.568942966999899],[121.57455488400015,-8.565850518999824],[121.573496941,-8.547295830999914],[121.57447350400015,-8.537855726999808],[121.58375084700006,-8.53639088299984],[121.60816491000016,-8.542087497999916],[121.60271243600008,-8.521091403999874],[121.60271243600008,-8.496351820999806],[121.60962975400005,-8.476006768999824],[121.62549889400005,-8.467461846999882],[121.63868248800023,-8.472751559999864],[121.68043053500017,-8.511325778999845],[121.69629967500006,-8.510674737999892],[121.75131269600014,-8.490817966999884],[121.772715691,-8.486748955999829],[121.78443444100012,-8.489434502999899],[121.79029381600004,-8.492608330999872],[121.79590905000023,-8.494724216999884],[121.8068139980002,-8.494805596999868],[121.81397545700015,-8.491794528999861],[121.83472741000006,-8.473728122999844],[121.85157311300016,-8.484551690999837],[121.87159264400012,-8.491957289999917],[121.89275149800001,-8.492852471999825],[121.93197675900014,-8.474216403999916],[121.94011478000009,-8.46795012799987],[121.94320722700016,-8.456963799999826],[121.94825280000006,-8.452569268999838],[121.9848738940001,-8.447035414999917],[121.99333743600009,-8.441501559999892],[122.0004988940001,-8.433851820999863],[122.00814863400004,-8.42750416499993],[122.01905358200011,-8.425957940999893],[122.02865644600008,-8.430922132999854],[122.03728274800008,-8.440199476999808],[122.04118899800007,-8.449151299999825],[122.02654056100008,-8.461114190999865],[122.02214603000019,-8.479261976999865],[122.02564537900015,-8.499769789999903],[122.03956139400023,-8.514743747999844],[122.04908287900004,-8.516534112999835],[122.07105553500017,-8.5140927059999],[122.08106530000022,-8.514743747999844],[122.09205162899998,-8.519707940999893],[122.11247806100008,-8.532647393999895],[122.12549889400017,-8.535251559999892],[122.14112389400023,-8.541680596999825],[122.22974694100007,-8.616875908999901],[122.25806725400015,-8.631280205999872],[122.28842207100016,-8.633884372999873],[122.45101972700004,-8.60409921699987],[122.47738691500004,-8.59498463299988],[122.50074303500004,-8.576267184999907],[122.5146590500001,-8.552666924999869],[122.512461785,-8.528252862999821],[122.50619550900015,-8.522556247999844],[122.490489129,-8.518324476999823],[122.48511803500006,-8.514743747999844],[122.48121178500004,-8.506117445999848],[122.48170006600006,-8.500583591999913],[122.48389733200021,-8.494398695999863],[122.48511803500006,-8.483982028999861],[122.49415123800023,-8.475030205999843],[122.54656009200014,-8.453220309999878],[122.56153405000022,-8.44133879999984],[122.59815514400006,-8.395196221999825],[122.614024285,-8.386407158999845],[122.65284264400023,-8.384209893999852],[122.67017662899998,-8.377536716999899],[122.68824303500004,-8.38469817499984],[122.70411217500022,-8.37908294099985],[122.719411655,-8.369561455999843],[122.73560631600017,-8.364515882999825],[122.75814863400014,-8.36101653399983],[122.77222741000011,-8.351983330999914],[122.79371178500006,-8.323500257999811],[122.82016035199999,-8.30543385199988],[122.88086998800021,-8.285739841999842],[122.94410241000006,-8.215427341999913],[122.95069420700013,-8.203057549999883],[122.94044030000016,-8.193129164999872],[122.91700280000012,-8.187676690999837],[122.87614993600006,-8.185723565999893],[122.85303795700011,-8.19150155999985],[122.83041425900005,-8.201592705999829],[122.80933678499999,-8.21493905999992],[122.790293816,-8.230401299999855],[122.78549238400002,-8.229424737999878],[122.74887129000003,-8.233493747999844],[122.74138431100003,-8.230238539999888],[122.74040774800008,-8.222426039999888],[122.74512780000018,-8.206801039999903],[122.775157097,-8.162774346999896],[122.78003991000017,-8.148125908999887],[122.78419030000022,-8.123955987999878],[122.79566491000017,-8.110039971999896],[122.83464603000007,-8.089532158999859],[122.85320071700006,-8.074314059999878],[122.86255944100017,-8.069756768999838],[122.87614993600006,-8.069594007999868],[122.88559004000015,-8.074965101999823],[122.89429772200006,-8.09303150799984],[122.90040123800021,-8.09693775799984],[122.91749108200005,-8.101332289999915],[122.93653405000006,-8.111504815999865],[122.96436608200021,-8.13103606599985],[122.97966556100017,-8.146905205999872],[122.98292076900023,-8.160332940999865]]],[[[115.50245201900012,-8.172621351999823],[115.5353296230002,-8.19459400799984],[115.56511478000017,-8.221612237999878],[115.6191512380001,-8.288750908999845],[115.65251712300007,-8.318454684999878],[115.69109134200002,-8.344414971999868],[115.71420332099999,-8.37517669099985],[115.70093834700006,-8.41912200299987],[115.69068444100004,-8.429457289999887],[115.65845787900011,-8.455498955999857],[115.63990319100017,-8.466241143999866],[115.61548912900005,-8.49244557099982],[115.60482832099999,-8.501071872999901],[115.53370201900017,-8.506524346999853],[115.52295983200021,-8.511325778999845],[115.51596113400015,-8.534356377999899],[115.49878991000006,-8.548435153999847],[115.36402428500004,-8.596937757999825],[115.32260175900004,-8.623793226999823],[115.29078209700016,-8.658786716999913],[115.26880944100017,-8.699151299999869],[115.25391686300013,-8.714613539999888],[115.23170006600006,-8.720798434999864],[115.2124129570001,-8.728448174999881],[115.20313561300017,-8.747002862999892],[115.20533287900017,-8.769463799999897],[115.22055097700003,-8.788995049999883],[115.2280379570001,-8.782159112999864],[115.22348066500014,-8.778008721999825],[115.21436608200005,-8.761814059999864],[115.23243248800007,-8.754001559999878],[115.23796634200019,-8.772230726999865],[115.23552493600009,-8.819756768999866],[115.22901451900006,-8.830254815999837],[115.21322675900002,-8.839939059999892],[115.19507897200006,-8.847100518999838],[115.180918816,-8.85051848799985],[115.15739993600008,-8.851820570999848],[115.13453209700006,-8.850762627999885],[115.11345462300018,-8.84539153399983],[115.09498131600016,-8.833672783999845],[115.09424889400017,-8.818454684999864],[115.11491946700008,-8.803399346999852],[115.15919030000023,-8.782159112999864],[115.17066491000017,-8.76873137799987],[115.18189537900015,-8.746351820999847],[115.18628991000017,-8.722344658999901],[115.17693118600002,-8.703383070999804],[115.17237389400006,-8.696547132999868],[115.15609785200016,-8.662041924999853],[115.14869225400017,-8.658135674999869],[115.13982181100013,-8.655368747999901],[115.13184655000022,-8.65195077899989],[115.10336347700016,-8.629652601999851],[115.09009850400005,-8.614841403999876],[115.08472741000017,-8.600355726999837],[115.07667076900024,-8.585137627999856],[115.05811608200021,-8.570733330999886],[115.022634311,-8.548923434999935],[114.95313561300011,-8.485121351999808],[114.92701256600017,-8.467461846999882],[114.79664147200005,-8.405450127999842],[114.75586998800006,-8.39771900799984],[114.63900800900004,-8.398614190999822],[114.60450280000012,-8.386488539999917],[114.57422936300011,-8.362481377999885],[114.54908287900005,-8.33424244599982],[114.46843509200019,-8.218519789999903],[114.44792728000002,-8.12184010199988],[114.4524031910001,-8.095147393999852],[114.48145592500006,-8.089532158999859],[114.50473066499998,-8.090427341999842],[114.51783287900017,-8.099704684999892],[114.52735436300023,-8.113539320999806],[114.53972415500019,-8.128024997999844],[114.55534915500019,-8.133884372999887],[114.57097415500007,-8.129489841999899],[114.59742272200006,-8.110609632999868],[114.61255944100004,-8.12184010199988],[114.63404381600019,-8.127211195999832],[114.67310631600004,-8.13103606599985],[114.69141686300011,-8.135023695999834],[114.85759524800002,-8.193129164999872],[114.89291425900015,-8.180271091999856],[114.98438561300011,-8.180433851999823],[115.022634311,-8.172621351999823],[115.06324303500006,-8.143243096999825],[115.13591556100012,-8.072849216999913],[115.17286217500018,-8.055352471999868],[115.19312584700018,-8.055108330999829],[115.21550540500017,-8.059502862999892],[115.23617597700003,-8.067966403999847],[115.25196373800016,-8.079522393999866],[115.26880944100017,-8.089450778999876],[115.33790123800006,-8.103773695999863],[115.50245201900012,-8.172621351999823]]],[[[127.22494550900002,-8.108575127999842],[127.2021590500001,-8.111260674999825],[127.15211022200016,-8.09693775799984],[127.15211022200016,-8.089532158999859],[127.15756269600004,-8.079359632999811],[127.15560957100008,-8.04843515399986],[127.15894616,-8.034926039999887],[127.1707462900001,-8.023858330999857],[127.18588300900008,-8.018731377999842],[127.20191491000016,-8.019789320999806],[127.21631920700021,-8.026950778999932],[127.22641035199997,-8.039239190999893],[127.23210696700006,-8.054294528999904],[127.23422285200009,-8.070407809999878],[127.23462975400011,-8.086521091999856],[127.22494550900002,-8.108575127999842]]],[[[129.76612389400023,-7.813083591999926],[129.77523847700004,-7.817071221999896],[129.81055748800017,-7.816501559999935],[129.81934655000012,-7.819268487999891],[129.82984459700018,-7.823907158999829],[129.83920332100004,-7.829847914999944],[129.84457441499998,-7.836195570999877],[129.84424889400017,-7.846856377999913],[129.83838951900012,-7.87273528399983],[129.8411564460001,-7.877862237999834],[129.85450280000006,-7.884047132999811],[129.8610132170002,-7.898858330999872],[129.86207116000006,-7.916924737999892],[129.85906009200002,-7.932549737999877],[129.847911004,-7.946547132999839],[129.81153405000023,-7.983005466999898],[129.78223717500012,-8.046075127999899],[129.77637780000018,-8.055352471999868],[129.75879967500023,-8.054457289999874],[129.69385826900017,-8.038262627999828],[129.68848717500012,-8.028415622999887],[129.59424889400012,-7.924004815999865],[129.585215691,-7.902032158999844],[129.58757571700008,-7.835625908999901],[129.6012475920002,-7.807305596999868],[129.63249759200008,-7.795993747999887],[129.7248641290001,-7.795993747999887],[129.73292076900023,-7.798028252999912],[129.75879967500023,-7.80868905999985],[129.76612389400023,-7.813083591999926]]],[[[130.0666610040001,-7.762627862999905],[130.07748457099999,-7.765883070999847],[130.08375084700006,-7.772556247999901],[130.08033287900005,-7.787367445999876],[130.06592858200017,-7.787855726999864],[130.05250084700018,-7.777113539999859],[130.04517662900017,-7.77507903399983],[130.03248131600012,-7.774997653999847],[130.02564537900017,-7.772556247999901],[130.02906334700018,-7.767836195999805],[130.03093509200008,-7.762627862999905],[130.03711998800023,-7.76165129999984],[130.04688561300006,-7.763360283999845],[130.05591881600017,-7.761488539999874],[130.0666610040001,-7.762627862999905]]],[[[130.01539147200006,-7.744073174999897],[130.00847415500007,-7.750420830999828],[129.99724368600005,-7.748223565999836],[129.99415123800003,-7.744398695999833],[129.9926863940001,-7.738539320999877],[129.98316491,-7.732354424999912],[129.979746941,-7.722100518999881],[129.97885175900004,-7.712660414999873],[129.98259524800002,-7.704847914999874],[129.99195397200018,-7.702080987999821],[130.00098717500006,-7.706719658999845],[130.00586998800017,-7.714043877999856],[130.00782311300011,-7.724867445999848],[130.01539147200006,-7.744073174999897]]],[[[108.95777428500017,-7.720147393999837],[109.01099694100017,-7.750258070999863],[109.01929772200005,-7.758070570999863],[109.02369225400005,-7.762383721999868],[109.04273522200006,-7.761488539999874],[109.046641472,-7.767998955999857],[109.04314212300002,-7.778903903999846],[109.03581790500002,-7.7803687479999],[109.02621504000015,-7.777520440999866],[108.99927819100016,-7.772881768999839],[108.94483483200011,-7.754327080999829],[108.8860783210001,-7.743910414999931],[108.87281334700005,-7.737237237999878],[108.8574324880001,-7.732028903999889],[108.81527754000014,-7.737725518999867],[108.80014082100014,-7.733819268999866],[108.79411868600008,-7.719414971999895],[108.7970483730002,-7.701592705999829],[108.806895379,-7.686211846999881],[108.821543816,-7.67864348799985],[108.8738712900001,-7.70322030999985],[108.92505944100017,-7.710381768999895],[108.95777428500017,-7.720147393999837]]],[[[131.132578972,-7.623304945999848],[131.11939537900017,-7.663262627999898],[131.10922285200004,-7.681817315999908],[131.09229576900023,-7.692315362999878],[131.04981530000015,-7.683770440999851],[131.03589928500017,-7.687595309999863],[131.04379316500015,-7.713474216999884],[130.98682701900023,-7.711846612999864],[130.97120201900023,-7.701348565999878],[130.98243248800017,-7.671807549999826],[130.989512566,-7.663832289999873],[130.9995223320001,-7.657484632999839],[131.01189212300002,-7.653497002999855],[131.04029381600017,-7.65016041499993],[131.05494225400017,-7.645603122999886],[131.06853274800002,-7.638848565999851],[131.07789147200018,-7.630791924999826],[131.07837975400017,-7.633396091999912],[131.08253014400012,-7.635023695999834],[131.09034264400003,-7.635918877999828],[131.0937606130001,-7.635023695999834],[131.1049910820001,-7.6290015599999],[131.11898847700016,-7.619317315999865],[131.12647545700023,-7.617771091999927],[131.132578972,-7.623304945999848]]],[[[126.7216903000001,-7.668064059999892],[126.73755944100006,-7.671807549999826],[126.79883873800021,-7.66423919099988],[126.81324303499999,-7.668633721999853],[126.82162519600016,-7.680271091999869],[126.82911217500022,-7.695489190999851],[126.83432050900004,-7.711846612999864],[126.83676191500015,-7.726332289999903],[126.8400171230002,-7.73943450299987],[126.83920332099997,-7.748223565999836],[126.83334394600014,-7.758070570999863],[126.82349694100006,-7.762383721999868],[126.81348717500025,-7.758070570999863],[126.80298912900018,-7.751153252999856],[126.79232832100014,-7.747491143999908],[126.74903405000018,-7.754001559999891],[126.72787519600016,-7.75465260199985],[126.7133895190001,-7.747491143999908],[126.63135826900013,-7.77548593499992],[126.62045332100004,-7.781345309999878],[126.59734134200008,-7.802178643999852],[126.58936608200021,-7.806247653999904],[126.56836998800004,-7.814141533999887],[126.55933678500016,-7.819919528999847],[126.50440514400005,-7.888116143999865],[126.50220787900011,-7.89478932099982],[126.50416100400005,-7.903090101999807],[126.50424238400004,-7.912367445999847],[126.49732506599999,-7.922539971999895],[126.48812910200016,-7.932712497999844],[126.47527103,-7.95533619599982],[126.46615644600003,-7.966566664999902],[126.45476321700008,-7.958184502999855],[126.43327884200002,-7.936700127999827],[126.42188561300004,-7.932549737999877],[126.37378990999999,-7.932549737999877],[126.35027103000006,-7.929294528999932],[126.30054772200006,-7.915215752999885],[126.27442467500013,-7.911879164999861],[126.18978925899998,-7.923516533999872],[126.1689559250001,-7.915704033999873],[126.155528191,-7.901625257999839],[126.13689212300002,-7.888604424999855],[126.114512566,-7.88298919099985],[126.09009850400015,-7.891534112999878],[126.07496178500017,-7.883884372999844],[126.05396569100006,-7.884698174999854],[125.99878991000011,-7.89373137799987],[125.98031660200014,-7.903497002999899],[125.96941165500019,-7.905857028999861],[125.9461369150001,-7.906019789999917],[125.93506920700021,-7.907891533999887],[125.92505944100007,-7.911879164999861],[125.9240014980002,-7.9151343729999],[125.92139733200011,-7.927504164999945],[125.91814212300007,-7.932549737999877],[125.91285241000017,-7.934991143999823],[125.90202884200018,-7.937269789999887],[125.89771569100016,-7.939222914999931],[125.8120223320001,-8.007582289999917],[125.78931725400017,-8.016045830999857],[125.77418053500016,-8.007582289999917],[125.77588951900005,-7.991794528999875],[125.78630618600006,-7.971123955999857],[125.79818769600003,-7.953220309999892],[125.80518639400012,-7.945489190999879],[125.80844160200014,-7.934258721999881],[125.80836022200018,-7.864190362999891],[125.814219597,-7.850274346999824],[125.82504316500003,-7.837009372999886],[125.83887780000012,-7.827080987999892],[125.85328209700018,-7.823337497999859],[125.86980228000006,-7.814711195999848],[125.87623131600004,-7.794691664999888],[125.87891686300023,-7.771905205999857],[125.88404381600006,-7.754327080999829],[125.88803144600006,-7.751885674999883],[125.90259850400015,-7.74724700299987],[125.90821373800021,-7.744073174999897],[125.91439863400002,-7.736586195999834],[125.92115319100017,-7.7211239559999],[125.94792728000007,-7.678317966999912],[125.9572046230002,-7.667901299999826],[125.9689233730002,-7.66008879999984],[125.98064212300018,-7.658623955999871],[125.99268639400012,-7.661553643999894],[126.02271569100004,-7.676039320999847],[126.03126061300004,-7.682305596999896],[126.03492272200005,-7.689141533999901],[126.04615319100006,-7.693454684999907],[126.20313561300011,-7.713474216999884],[126.2148543630001,-7.709405205999829],[126.24537194100004,-7.691176039999931],[126.26148522200012,-7.686130466999899],[126.28003991,-7.688083591999856],[126.30437259200006,-7.693454684999907],[126.32837975400005,-7.695733330999886],[126.34644616000006,-7.689141533999901],[126.39795983200011,-7.64381275799981],[126.45240319099999,-7.619561455999914],[126.48454837300007,-7.597263278999875],[126.50375410200003,-7.590427341999855],[126.60352623800023,-7.569431247999916],[126.61744225400005,-7.562107028999903],[126.62696373800011,-7.559991143999894],[126.63135826900013,-7.565362237999864],[126.63021894600014,-7.58717213299981],[126.63086998800011,-7.598565362999878],[126.63453209700016,-7.606866143999851],[126.64698326900005,-7.616957289999916],[126.69271894599997,-7.637627862999835],[126.70313561300011,-7.647719007999811],[126.71159915500002,-7.658868096999824],[126.7216903000001,-7.668064059999892]]],[[[129.68067467500012,-7.554131768999852],[129.69068444100012,-7.559991143999894],[129.70004316500004,-7.558363539999874],[129.70679772200015,-7.554782809999907],[129.71387780000023,-7.558200778999904],[129.71216881600003,-7.569512627999899],[129.69459069100012,-7.577569268999838],[129.68197675900004,-7.5772437479999],[129.67514082099999,-7.571547132999826],[129.65528405000012,-7.560479424999883],[129.65357506600014,-7.547051690999893],[129.65853925900015,-7.535088799999868],[129.66374759200002,-7.536553643999824],[129.68067467500012,-7.554131768999852]]],[[[127.38949629000015,-7.649672132999853],[127.37330162899998,-7.656182549999841],[127.35767662899998,-7.655694268999852],[127.35075931100012,-7.640801690999893],[127.34766686300023,-7.622979424999826],[127.34839928500016,-7.615329684999892],[127.35450280000023,-7.606866143999851],[127.36198978000013,-7.602797132999895],[127.36988366000017,-7.600274346999882],[127.37614993600002,-7.595879815999894],[127.37867272200006,-7.585870049999912],[127.37574303500004,-7.569919528999904],[127.36443118600009,-7.536797783999874],[127.36443118600009,-7.521579684999892],[127.372731967,-7.506117445999862],[127.3849389980002,-7.502862237999821],[127.41846764400022,-7.507907809999849],[127.440684441,-7.520603122999915],[127.45411217500013,-7.525648695999848],[127.47022545700007,-7.527764580999857],[127.4843856130001,-7.532403252999885],[127.48926842500023,-7.544528903999876],[127.4878035820001,-7.579278252999842],[127.481700066,-7.590101820999834],[127.46729576900023,-7.599053643999866],[127.4311629570001,-7.613051039999917],[127.41863040500019,-7.614678643999853],[127.41285241000006,-7.617771091999927],[127.40837649800008,-7.623304945999848],[127.39861087300002,-7.64381275799981],[127.38949629000015,-7.649672132999853]]],[[[130.8647567070001,-7.489190362999878],[130.8937280610002,-7.514092705999828],[130.90674889400006,-7.507500908999844],[130.92042076900012,-7.510918877999856],[130.93360436300017,-7.517836195999862],[130.94483483200017,-7.521579684999892],[130.97754967500006,-7.515313408999845],[130.98462975400005,-7.518161716999884],[130.96859785200016,-7.534600518999881],[130.97657311300011,-7.536390882999867],[130.98422285200016,-7.539971612999834],[130.98829186300011,-7.545179945999834],[130.98585045700005,-7.551934502999869],[130.97917728000013,-7.555271091999884],[130.97339928500006,-7.551202080999843],[130.96705162900003,-7.545179945999834],[130.9585067070001,-7.542087497999844],[130.95386803500017,-7.544203382999854],[130.9416610040001,-7.553480726999807],[130.9376733730002,-7.555759372999872],[130.89771569100017,-7.554457289999873],[130.85661868600008,-7.546970309999907],[130.8452254570001,-7.542087497999844],[130.8409936860002,-7.528741143999837],[130.84449303500017,-7.513848565999879],[130.858653191,-7.486911716999912],[130.8647567070001,-7.489190362999878]]],[[[131.18287194100017,-7.415948174999841],[131.16586347700002,-7.424493096999853],[131.12696373800011,-7.466403903999861],[131.11646569100006,-7.471856377999898],[131.10515384200008,-7.476006768999838],[131.09595787900014,-7.481377862999891],[131.0888778000001,-7.497735283999901],[131.080332879,-7.5036760399999],[131.06918378999998,-7.507500908999844],[131.05738366,-7.507907809999849],[131.05738366,-7.500420830999885],[131.0631616550002,-7.497002862999878],[131.06666100400017,-7.492852471999839],[131.07178795700005,-7.47942473799985],[131.04721113400015,-7.480401299999826],[131.0245874360002,-7.485284112999892],[131.00489342500023,-7.485772393999881],[130.98926842500006,-7.47323984199987],[130.98519941500004,-7.455987237999864],[130.99105879000012,-7.438897393999823],[131.00326582100004,-7.424493096999853],[131.01823978000007,-7.415215752999898],[131.027110222,-7.413018487999821],[131.035004102,-7.413506768999894],[131.05128014400023,-7.417168877999855],[131.06739342500012,-7.417738539999917],[131.124766472,-7.41041432099982],[131.14144941500015,-7.405368747999888],[131.15365644600004,-7.404229424999855],[131.16016686300023,-7.402927341999856],[131.16342207100016,-7.400485934999907],[131.16724694100014,-7.399997653999918],[131.17481530000023,-7.404229424999855],[131.177500847,-7.406670830999886],[131.18140709699998,-7.411309502999899],[131.18287194100017,-7.415948174999841]]],[[[138.89258873800017,-8.04127369599982],[138.9041447270001,-8.075860283999916],[138.85767662900005,-8.075290622999844],[138.8366805350001,-8.080010674999855],[138.81820722700016,-8.093194268999895],[138.78834069100017,-8.13005950299987],[138.77182050900004,-8.143161716999842],[138.74659264400023,-8.151543877999899],[138.700938347,-8.153985283999845],[138.67969811300023,-8.157484632999825],[138.66089928500017,-8.169040622999859],[138.6461694670002,-8.188734632999894],[138.62126712300008,-8.233819268999866],[138.60254967500006,-8.254652601999837],[138.53581790500002,-8.302178643999838],[138.51758873800023,-8.309258721999896],[138.50782311300011,-8.315687757999825],[138.47217858200023,-8.357598565999822],[138.44418379000004,-8.37908294099985],[138.41211998800023,-8.396254164999872],[138.37598717500012,-8.40960051899988],[138.33570397200006,-8.41912200299987],[138.29346764400012,-8.418715101999865],[138.22339928500006,-8.39185963299988],[138.17798912900005,-8.38494231599988],[138.0341903000001,-8.381931247999887],[137.84913170700023,-8.377536716999899],[137.80160566500015,-8.382989190999837],[137.75953209700018,-8.393975518999895],[137.67709394600016,-8.425957940999893],[137.63819420700017,-8.425876559999907],[137.63697350400005,-8.389418226999851],[137.72624759200008,-8.144789320999863],[137.74976647200006,-8.101169528999861],[137.75277754000015,-8.086521091999856],[137.75904381600017,-8.073418877999885],[137.78939863400015,-8.052341403999861],[137.80054772200018,-8.041680596999825],[137.80974368600008,-7.98357512799987],[137.818207227,-7.973402601999837],[137.82439212300008,-7.964288018999839],[137.89486738400015,-7.816176039999903],[137.91797936300011,-7.781670830999899],[137.9658309250002,-7.73943450299987],[137.97266686300023,-7.723321221999895],[137.97624759200014,-7.702894789999917],[137.98519941500015,-7.67929452899989],[138.0066837900001,-7.637627862999835],[138.02808678500006,-7.610039971999826],[138.08863366,-7.55982838299984],[138.24415123800023,-7.456475518999853],[138.39503014400012,-7.404880466999899],[138.52906334700018,-7.386488539999859],[138.55648847700002,-7.377048434999935],[138.62086022200006,-7.364678643999896],[138.71705162900017,-7.359551690999879],[138.80453535200002,-7.374200127999899],[138.84278405000003,-7.421644789999917],[138.84815514400023,-7.435235283999873],[138.89600670700003,-7.505059502999912],[138.90870201900023,-7.519789320999805],[138.92286217500023,-7.531914971999896],[138.93897545700023,-7.542087497999844],[138.9741317070001,-7.553399346999826],[139.04639733200005,-7.561944268999851],[139.075531446,-7.576267184999921],[139.05738366000006,-7.594659112999877],[139.0444442070001,-7.611423434999892],[139.03516686300017,-7.629571221999895],[139.020274285,-7.671970309999878],[138.99366295700005,-7.720147393999837],[138.98878014400012,-7.737969658999901],[138.982676629,-7.829847914999944],[138.97722415500007,-7.840915622999887],[138.9663192070001,-7.850518487999864],[138.91065514400006,-7.878513278999889],[138.89112389400012,-7.898044528999861],[138.88379967500012,-7.932549737999877],[138.88648522200018,-8.007012627999856],[138.89258873800017,-8.04127369599982]]],[[[121.810313347,-7.404229424999855],[121.77588951900005,-7.41692473799982],[121.75904381600017,-7.415785414999873],[121.75180097700016,-7.394301039999931],[121.75407962300014,-7.379082940999865],[121.75993899800008,-7.363539320999863],[121.76889082099999,-7.350762627999827],[121.77979576900006,-7.343438408999917],[121.81820722700009,-7.33359140399989],[121.83708743600019,-7.356540622999887],[121.83480879000004,-7.388278903999847],[121.810313347,-7.404229424999855]]],[[[131.28223717500006,-7.323500257999839],[131.28394616000017,-7.329766533999873],[131.29273522200006,-7.318047783999887],[131.29761803499997,-7.319105726999851],[131.29916425900015,-7.327406507999824],[131.29761803499997,-7.336602471999895],[131.29346764400006,-7.340590101999879],[131.27100670700005,-7.357110283999859],[131.27711022200018,-7.370782158999886],[131.22754967500023,-7.362481377999899],[131.21583092500023,-7.357110283999859],[131.2234806650001,-7.351250908999901],[131.23096764400023,-7.344170830999842],[131.24301191500015,-7.329766533999873],[131.25757897200018,-7.303969007999853],[131.26498457100016,-7.297133070999834],[131.26954186300011,-7.302911065999894],[131.28223717500006,-7.323500257999839]]],[[[120.87110436300016,-7.273532809999892],[120.96045983200004,-7.281996351999836],[121.01986738400002,-7.280368747999902],[121.04997806100008,-7.285821221999853],[121.06690514400022,-7.302504164999887],[121.05689537900017,-7.321058851999808],[121.025645379,-7.331638278999846],[120.9926863940001,-7.33359140399989],[120.97738691500015,-7.326348565999865],[120.96387780000005,-7.313897393999851],[120.90040123800006,-7.303887627999869],[120.88135826900005,-7.295017184999921],[120.86410566499997,-7.301934502999828],[120.84017988400004,-7.304457289999931],[120.81625410200014,-7.302422783999901],[120.79932701900005,-7.295017184999921],[120.7939559250001,-7.287692966999913],[120.79232832099999,-7.279473565999822],[120.79428144600004,-7.271172783999844],[120.79965253999998,-7.263848565999836],[120.81568444100016,-7.257500908999901],[120.83464603000017,-7.260511976999807],[120.87110436300016,-7.273532809999892]]],[[[114.62452233200004,-7.147881768999866],[114.6230574880001,-7.163262627999913],[114.61882571700018,-7.167250257999881],[114.53272545700011,-7.158461195999834],[114.51124108200011,-7.159274997999844],[114.50017337300002,-7.158298434999864],[114.49537194100006,-7.154717705999886],[114.49634850400004,-7.143812757999825],[114.49919681100008,-7.137872002999885],[114.504649285,-7.13437265399989],[114.54102623800011,-7.118584893999852],[114.55005944100012,-7.116875908999845],[114.55909264400012,-7.119073174999841],[114.58130944100017,-7.128350518999895],[114.59376061300011,-7.130547783999887],[114.60474694100006,-7.13062916499986],[114.61459394600016,-7.132094007999825],[114.62183678500016,-7.137302341999913],[114.62452233200004,-7.147881768999866]]],[[[131.65357506600006,-7.166192315999837],[131.65463300899998,-7.172133070999863],[131.66822350400005,-7.166680596999825],[131.67652428500006,-7.160577080999842],[131.69190514400006,-7.141208591999913],[131.7041121750002,-7.131524346999853],[131.70997155000006,-7.137465101999879],[131.71371504000004,-7.150485934999864],[131.73951256600006,-7.195977471999838],[131.74333743600005,-7.196058851999823],[131.73829186300023,-7.206638278999876],[131.72608483200017,-7.216566664999873],[131.711192254,-7.223890882999881],[131.69857832100004,-7.226739190999822],[131.68360436300011,-7.225030205999829],[131.67457116000017,-7.222588799999883],[131.66651451900023,-7.223890882999881],[131.65463300899998,-7.233575127999842],[131.64551842500012,-7.244805596999839],[131.64275149800002,-7.254815362999835],[131.64722741,-7.281996351999836],[131.64649498800006,-7.302178643999865],[131.64722741,-7.309258721999824],[131.64869225400017,-7.310316664999874],[131.66944420700005,-7.344008070999877],[131.67505944100017,-7.358168226999808],[131.67335045700005,-7.37184010199985],[131.66089928500006,-7.38388437299986],[131.6684676440001,-7.394219658999858],[131.6779077480002,-7.400811455999842],[131.68726647200006,-7.405857028999875],[131.69499759200008,-7.411797783999887],[131.69922936300006,-7.413995049999883],[131.70313561300006,-7.412774346999868],[131.70630944100003,-7.412692966999884],[131.70923912900017,-7.417901299999883],[131.70875084700018,-7.424574476999837],[131.70362389400023,-7.425388278999847],[131.69776451900012,-7.425062757999826],[131.69499759200008,-7.428806247999859],[131.68344160200004,-7.451592705999886],[131.67986087300008,-7.473077080999914],[131.67554772200006,-7.480157158999873],[131.66911868600008,-7.484551690999866],[131.66089928500006,-7.486911716999912],[131.66871178500006,-7.509209893999852],[131.66293379000007,-7.531833591999912],[131.65259850400017,-7.554945570999863],[131.64332116,-7.599053643999866],[131.63306725400017,-7.620049737999892],[131.61890709700018,-7.636976820999877],[131.60279381600017,-7.64381275799981],[131.59864342500023,-7.648532809999907],[131.579356316,-7.688897393999866],[131.57422936300011,-7.694919528999876],[131.55836022200018,-7.706638278999861],[131.53858483200023,-7.712579033999887],[131.5133569670002,-7.716973565999865],[131.49691816499998,-7.726332289999903],[131.50318444100006,-7.747491143999908],[131.4974064460001,-7.756117445999819],[131.49000084700018,-7.763278903999861],[131.48072350400005,-7.76620859199987],[131.46900475400017,-7.761814059999892],[131.47494550899998,-7.782972914999888],[131.46412194100017,-7.794366143999867],[131.4489038420002,-7.800225518999895],[131.44117272200018,-7.805840752999899],[131.43433678500017,-7.814060153999904],[131.38990319100014,-7.847100518999852],[131.38257897200006,-7.859551690999878],[131.38021894599999,-7.873223565999822],[131.37964928500003,-7.891534112999878],[131.36866295700005,-7.903985283999887],[131.35808353000002,-7.912286065999865],[131.34815514400012,-7.922133070999806],[131.33863366000006,-7.939222914999931],[131.34864342500012,-7.939060153999876],[131.35726972700004,-7.941582940999893],[131.3608504570001,-7.947360934999849],[131.35572350400017,-7.956312757999881],[131.34978274800002,-7.964125257999869],[131.34848066500015,-7.969903252999841],[131.34839928500017,-7.976657809999878],[131.34546959700006,-7.987074476999865],[131.335215691,-8.000909112999864],[131.31674238399998,-8.0179989559999],[131.29932701900012,-8.025648695999832],[131.29151451900023,-8.011325778999847],[131.30600019600007,-7.973402601999837],[131.31080162900017,-7.954034112999821],[131.30144290500002,-7.945489190999879],[131.29395592500018,-7.942478122999887],[131.28931725400005,-7.937188408999901],[131.2834578790001,-7.936130466999856],[131.27100670700005,-7.945489190999879],[131.26587975400017,-7.95435963299984],[131.2618921230002,-7.9769833309999],[131.25733483200023,-7.987074476999865],[131.22966556100008,-8.00351327899986],[131.19076582100013,-8.006605726999851],[131.11622155000012,-8.000746351999808],[131.1066186860001,-7.991306247999888],[131.11158287900017,-7.969496351999836],[131.12696373800011,-7.929131768999867],[131.12387129000004,-7.913669528999846],[131.11597741000006,-7.89869557099982],[131.10474694100006,-7.889580987999834],[131.09229576900023,-7.891534112999878],[131.08570397200006,-7.871758721999853],[131.09017988400004,-7.848809502999856],[131.10254967500023,-7.828545830999857],[131.11963951900012,-7.816501559999935],[131.1329858730002,-7.816582940999822],[131.143809441,-7.821221612999849],[131.15284264400012,-7.821872653999889],[131.16114342500012,-7.809665622999916],[131.16114342500012,-7.79957447699985],[131.15528405000023,-7.791599216999898],[131.14714603000007,-7.785577080999886],[131.13998457099999,-7.781670830999899],[131.13998457099999,-7.77548593499992],[131.15699303500017,-7.774346612999891],[131.15674889400012,-7.766045830999914],[131.15137780000023,-7.753838799999841],[131.15365644600004,-7.740655205999886],[131.14405358200017,-7.744398695999833],[131.1373804050002,-7.743422132999853],[131.13355553500017,-7.737481377999828],[131.13314863399998,-7.726332289999903],[131.12696373800011,-7.726332289999903],[131.12696373800011,-7.733819268999866],[131.11963951900012,-7.733819268999866],[131.11475670700023,-7.706963799999883],[131.12256920700023,-7.691013278999876],[131.13917076900006,-7.686130466999899],[131.16114342500012,-7.692315362999878],[131.203868035,-7.713311455999829],[131.22331790500013,-7.714450778999861],[131.24984785200016,-7.706638278999861],[131.23210696700008,-7.702569268999896],[131.21168053499997,-7.694919528999876],[131.1948348320001,-7.683770440999851],[131.18132571700002,-7.64959075299987],[131.18140709699998,-7.641208591999899],[131.19157962300008,-7.637627862999835],[131.1897078790001,-7.632419528999846],[131.19516035200004,-7.596774997999888],[131.20248457100004,-7.579522393999881],[131.22478274800008,-7.546319268999867],[131.22950280000003,-7.531182549999869],[131.23267662900005,-7.507094007999839],[131.24154707099999,-7.487725518999824],[131.25473066500015,-7.472263278999903],[131.31519616000006,-7.422946872999916],[131.32813561300023,-7.417901299999883],[131.3357039720001,-7.42253997199991],[131.34115644600016,-7.431573174999826],[131.34701582099999,-7.438246351999878],[131.35572350400017,-7.43531666499986],[131.36060631600006,-7.427666924999826],[131.372813347,-7.398044528999876],[131.37964928500003,-7.389336846999896],[131.38428795700017,-7.386000257999868],[131.38835696700014,-7.381931247999902],[131.39332116000017,-7.370782158999886],[131.39136803500006,-7.368340752999856],[131.3898218110002,-7.358656507999896],[131.39079837300008,-7.348321221999881],[131.39698326900012,-7.343438408999917],[131.45313561300023,-7.3344052059999],[131.45411217500012,-7.328301690999822],[131.44971764400012,-7.319594007999839],[131.44849694100012,-7.309258721999824],[131.45508873800006,-7.291192315999909],[131.462657097,-7.27874114399988],[131.4826766290001,-7.254652601999865],[131.48682701900023,-7.245375257999812],[131.48902428500006,-7.236504815999865],[131.49398847700016,-7.229587497999858],[131.50684655000012,-7.226739190999822],[131.52670332099996,-7.225518487999906],[131.53581790500016,-7.223402601999808],[131.54476972700004,-7.219903252999899],[131.53207441500015,-7.190362237999849],[131.5288192070001,-7.170098565999837],[131.53695722700004,-7.154229424999897],[131.568614129,-7.130954684999891],[131.5898543630001,-7.120212497999873],[131.61719811300017,-7.112237237999821],[131.63754316500015,-7.109063408999859],[131.65430748800003,-7.112888278999876],[131.66098066500004,-7.128594658999845],[131.65357506600006,-7.166192315999837]]],[[[115.8960067070001,-7.124932549999882],[115.89429772199999,-7.164483330999828],[115.875743035,-7.185723565999822],[115.83773847699997,-7.197198174999854],[115.79590905000005,-7.190036716999913],[115.75733483200011,-7.169691664999917],[115.74301191500003,-7.150323174999897],[115.75294030000012,-7.14031340899983],[115.76221764400005,-7.1390927059999],[115.76596113400004,-7.14397551899988],[115.76986738400002,-7.14218515399989],[115.77816816499998,-7.115492445999863],[115.7859806650001,-7.115980726999851],[115.79127037900017,-7.125664971999825],[115.79476972700014,-7.137872002999885],[115.80103600400011,-7.146416924999911],[115.80795332099999,-7.149834893999824],[115.82276451900017,-7.149509372999886],[115.84278405000023,-7.157647393999823],[115.87012780000012,-7.159844658999901],[115.88021894600016,-7.158461195999834],[115.88379967500023,-7.153252862999834],[115.8813582690001,-7.152927341999899],[115.87517337300002,-7.153578382999854],[115.86939537900015,-7.147149346999839],[115.86670983200011,-7.137302341999913],[115.8696395190001,-7.128676039999917],[115.87745201900012,-7.123467705999829],[115.88355553500011,-7.123955987999821],[115.88599694100006,-7.12957122199991],[115.88697350399998,-7.126560153999904],[115.88900800900014,-7.113702080999886],[115.89087975399998,-7.107110283999901],[115.89429772199999,-7.111586195999877],[115.8960067070001,-7.124932549999882]]],[[[131.91846764400023,-7.103610934999907],[131.93384850400017,-7.111586195999877],[131.94418378999995,-7.126641533999887],[131.94809003999998,-7.141208591999913],[131.95346113400015,-7.154066664999931],[131.97706139400006,-7.17408619599982],[131.98218834700018,-7.18889739399988],[131.9860132170002,-7.225274346999867],[131.981700066,-7.245700778999931],[131.96558678500006,-7.254652601999865],[131.9559025400001,-7.249200127999827],[131.92164147200012,-7.223890882999881],[131.91407311300023,-7.216485283999887],[131.9039819670002,-7.180352471999854],[131.87794030000012,-7.164483330999828],[131.84278405000023,-7.161797783999859],[131.77222741000014,-7.164971612999821],[131.74268639400012,-7.158379815999851],[131.73218834700006,-7.141208591999913],[131.7570093110002,-7.110039971999839],[131.8784285820001,-7.106052341999856],[131.90040123800011,-7.110039971999839],[131.91846764400023,-7.103610934999907]]],[[[128.676524285,-7.178887627999898],[128.63868248800017,-7.219903252999899],[128.62232506600006,-7.21013762799987],[128.58399498800011,-7.178887627999898],[128.54664147200006,-7.162692966999841],[128.53272545700005,-7.151055596999838],[128.5288192070001,-7.130547783999887],[128.53939863400015,-7.112237237999821],[128.563243035,-7.091241143999881],[128.59245853000007,-7.073011976999808],[128.61963951900017,-7.063164971999882],[128.6285913420002,-7.068536065999837],[128.64340254000015,-7.082777601999837],[128.65235436300011,-7.089532158999873],[128.66081790500002,-7.092461846999896],[128.67896569100006,-7.093845309999878],[128.68637129000004,-7.096368096999896],[128.69971764400023,-7.109551690999851],[128.70134524800005,-7.122816664999874],[128.691254102,-7.133233330999857],[128.66968834700018,-7.137383721999896],[128.65853925900015,-7.143812757999825],[128.66822350400005,-7.158135674999897],[128.6805119150001,-7.172458591999884],[128.676524285,-7.178887627999898]]],[[[114.39685522900018,-7.131462291999881],[114.39465789400012,-7.157564834999917],[114.39185631599999,-7.178887627999898],[114.37826582100014,-7.178155205999872],[114.35726972700004,-7.167413018999851],[114.331797722,-7.159356377999828],[114.32520592500023,-7.147637627999828],[114.3065582190001,-7.148779183999877],[114.29282201900006,-7.143151295999886],[114.28476081600014,-7.126164773999875],[114.27324774500008,-7.101247319999828],[114.2697620480002,-7.080834943999861],[114.29482566800017,-7.05466592399992],[114.32225455000011,-7.050030942999854],[114.34294681100002,-7.055759372999887],[114.3577514890001,-7.06920244699991],[114.36925548200004,-7.089582670999873],[114.38306849500017,-7.113356878999824],[114.39685522900018,-7.131462291999881]]],[[[120.74496504000014,-7.074151299999841],[120.75782311300006,-7.075941664999917],[120.77263431100008,-7.058851820999877],[120.78126061300023,-7.055922132999853],[120.78516686300021,-7.072442315999837],[120.78305097700006,-7.088636976999879],[120.77377363399998,-7.115817966999884],[120.77149498800011,-7.130547783999887],[120.74226145100009,-7.134935144999901],[120.70558207900015,-7.13338046399987],[120.68336022199999,-7.124281507999839],[120.68189537900004,-7.139418226999837],[120.67034946900017,-7.150959797999818],[120.63348911200016,-7.131528227999823],[120.62040736900009,-7.108675148999879],[120.62417124100001,-7.093960320999884],[120.59842208200008,-7.098033898999873],[120.58092290500022,-7.091815049999852],[120.56290620300004,-7.09453775199988],[120.55625306400023,-7.072889484999891],[120.56586410600009,-7.06705420999988],[120.59111302900011,-7.079589061999812],[120.61369512200011,-7.069816589999917],[120.61989363100022,-7.044242793999927],[120.6157291760001,-7.022561127999921],[120.6212556620002,-6.998245237999825],[120.63550866000016,-7.007012627999869],[120.65361520400003,-7.010104614999904],[120.67767356200007,-7.043671315999901],[120.73023522200005,-7.067152601999851],[120.74496504000014,-7.074151299999841]]],[[[129.14258873800023,-6.99749114399988],[129.1354272800002,-6.998142184999921],[129.12501061300011,-6.993259372999858],[129.11622155000023,-6.983330987999849],[129.11744225400017,-6.972751559999891],[129.12501061300011,-6.965752862999821],[129.13428795700005,-6.961114190999893],[129.14478600400003,-6.962090752999869],[129.15284264400006,-6.976169528999904],[129.15040123800023,-6.991469007999868],[129.14258873800023,-6.99749114399988]]],[[[113.98991946700002,-6.877862237999864],[114.00961347700016,-6.886976820999848],[114.02800540500013,-6.899021091999869],[114.04566491000006,-6.914646091999856],[114.06568444100012,-6.922621351999808],[114.0935361000002,-6.932656869999889],[114.10979032100019,-6.946898122999869],[114.12480136100018,-6.981610298999854],[114.09668590600019,-6.982878634999821],[114.05110424100022,-7.01143096399987],[113.98113040500007,-7.020684502999899],[113.95556836000017,-7.044948626999883],[113.93558346700004,-7.049914273999875],[113.90997853900014,-7.048063177999921],[113.89187473100006,-7.059225490999879],[113.87065451200013,-7.095177104999848],[113.88625582000012,-7.099515480999898],[113.894999265,-7.109432092999895],[113.89535566500003,-7.120538018999894],[113.87281334700006,-7.128838799999883],[113.83253315700003,-7.132019753999899],[113.77671570200002,-7.125256053999819],[113.70624848300011,-7.113613321999906],[113.68666778000006,-7.112641921999824],[113.66521243600006,-7.110039971999839],[113.64532689200009,-7.131133891999879],[113.61005227600012,-7.129187025999911],[113.59337868000014,-7.138901022999945],[113.58276663400014,-7.153486441999888],[113.57728379800008,-7.168367782999894],[113.57044638000004,-7.181896028999859],[113.56588242900013,-7.193622593999861],[113.5594892610001,-7.212117351999892],[113.54898420600014,-7.23377815399985],[113.5339412790001,-7.240101743999929],[113.5134253430002,-7.247781563999879],[113.50705780900003,-7.240109507999861],[113.495213409,-7.230636771999811],[113.47247064700016,-7.222049961999886],[113.42269941499998,-7.226739190999822],[113.26905358200017,-7.217461846999867],[113.25123131600016,-7.209649346999882],[113.23438561300006,-7.207614841999855],[113.18653405000023,-7.223321221999825],[113.16553795700011,-7.219903252999899],[113.15870201900012,-7.18523528399983],[113.1531681650001,-7.177422783999845],[113.14633222700016,-7.171563408999887],[113.14576256600017,-7.165785414999916],[113.15870201900012,-7.158461195999834],[113.15870201900012,-7.151055596999838],[113.14600670700023,-7.14959075299987],[113.122325066,-7.139418226999837],[113.11426842500006,-7.141208591999913],[113.10962975400004,-7.151462497999844],[113.10971113400004,-7.171482028999904],[113.10336347699999,-7.178887627999898],[113.11638431100019,-7.190687757999867],[113.13526451900012,-7.202732028999875],[113.14869225399998,-7.214776299999883],[113.14503014400022,-7.226739190999822],[113.12794030000012,-7.231052341999913],[112.818125847,-7.161390882999854],[112.77808678500017,-7.158461195999834],[112.74252363400004,-7.161390882999854],[112.72641035200004,-7.158786716999855],[112.71989993600008,-7.147881768999866],[112.717051629,-7.117608330999872],[112.71876061300011,-7.103285414999887],[112.72730553500004,-7.089532158999873],[112.71989993600008,-7.082777601999837],[112.70997155000023,-7.097344658999873],[112.70134524800002,-7.092054945999806],[112.69499759200019,-7.076104424999883],[112.69263756600006,-7.058526299999855],[112.69450931100012,-7.038995049999869],[112.70093834700006,-7.033298434999892],[112.71363366000011,-7.032403252999899],[112.73414147200006,-7.028090101999808],[112.76351972700014,-7.011000257999853],[112.79265384200019,-6.984063408999887],[112.84400475400005,-6.925062757999839],[112.8419702480002,-6.908868096999882],[112.87322024800007,-6.897719007999867],[112.91529381600006,-6.891696872999859],[112.94402103000017,-6.890964450999917],[112.98170006600006,-6.891289971999853],[113.06739342500012,-6.881036065999837],[113.14601986800008,-6.894371211999895],[113.27335673500014,-6.892996303999908],[113.44558230000021,-6.882377938999838],[113.52622788700013,-6.896293042999915],[113.67205189100005,-6.879398963999918],[113.79311278800004,-6.882479059999852],[113.92367597700016,-6.864841403999876],[113.96802819100012,-6.870538018999852],[113.98991946700002,-6.877862237999864]]],[[[115.37924238400002,-6.834730726999851],[115.46078535200004,-6.842543226999837],[115.48357181100009,-6.851657809999921],[115.55347741000016,-6.889418226999879],[115.57064863400004,-6.904554945999876],[115.57227623800021,-6.930596612999864],[115.55713951900023,-6.94003671699987],[115.5127059250001,-6.938734632999868],[115.50318444100004,-6.936618747999859],[115.48316491000016,-6.927341403999904],[115.46705162900017,-6.923923434999892],[115.45484459699999,-6.917575778999876],[115.45118248800017,-6.914646091999856],[115.44410241000011,-6.910088799999897],[115.4389754570001,-6.911797783999901],[115.4340926440001,-6.91822682099982],[115.42579186300023,-6.920098565999879],[115.41911868600019,-6.925062757999839],[115.41309655000006,-6.925062757999839],[115.40512129000004,-6.921644789999916],[115.40040123800011,-6.91692473799982],[115.39429772199999,-6.912692966999899],[115.38233483200011,-6.910821221999839],[115.3504337900001,-6.927504164999874],[115.34473717500012,-6.928155205999829],[115.3481551440001,-6.940606377999841],[115.35661868600008,-6.945407809999921],[115.36784915500007,-6.9476864559999],[115.37891686300006,-6.952406507999811],[115.39096113399998,-6.961195570999876],[115.39600670700021,-6.966078382999853],[115.40064537900017,-6.972914320999862],[115.37826582100004,-6.987399997999901],[115.35531660200014,-6.982028903999861],[115.31739342500012,-6.952406507999811],[115.3032332690001,-6.966078382999853],[115.301036004,-6.972263278999904],[115.300547722,-6.977959893999895],[115.30152428500011,-6.981215101999851],[115.3032332690001,-6.980401299999841],[115.30355879000004,-6.985935153999847],[115.31137129000003,-6.995538018999838],[115.3105574880001,-7.000746351999823],[115.30600019600014,-7.004164320999834],[115.29948978000006,-7.007012627999869],[115.29330488399997,-7.007582289999931],[115.29078209700016,-7.004001559999864],[115.28711998800021,-7.003024997999886],[115.2656356130001,-6.983493747999916],[115.26531009200006,-6.976006768999851],[115.27588951900022,-6.938734632999868],[115.23804772200018,-6.94231536299985],[115.22144616000004,-6.939711195999847],[115.21436608200005,-6.928155205999829],[115.2185164720001,-6.904392184999921],[115.22877037900007,-6.891534112999892],[115.24203535200016,-6.88095468499985],[115.25538170700007,-6.863051039999888],[115.24431399800002,-6.846449476999837],[115.25505618600008,-6.838148695999848],[115.27572675900014,-6.835381768999895],[115.2949324880001,-6.835625908999845],[115.37924238400002,-6.834730726999851]]],[[[129.52906334700012,-6.723077080999886],[129.5307723320001,-6.731215101999808],[129.52906334700012,-6.73919036299985],[129.51807701900023,-6.763116143999823],[129.51156660200016,-6.769707940999893],[129.50131269600004,-6.770603122999887],[129.49317467500012,-6.765720309999907],[129.48812910200016,-6.760837497999844],[129.48617597700004,-6.754571221999896],[129.4845483730002,-6.755303643999824],[129.48096764400023,-6.760023695999833],[129.47787519600016,-6.756036065999851],[129.47877037900003,-6.744073174999826],[129.48633873800011,-6.729099216999884],[129.49708092500012,-6.722588799999897],[129.50977623800006,-6.723402601999808],[129.52019290500007,-6.721123955999843],[129.52906334700012,-6.723077080999886]]],[[[138.74659264400023,-6.863051039999888],[138.72828209700018,-6.867771091999899],[138.71631920700023,-6.864678643999823],[138.7065535820001,-6.859144789999888],[138.69507897200018,-6.856215101999865],[138.68197675900004,-6.8477515599999],[138.67286217500012,-6.810153903999918],[138.66089928500017,-6.801527601999837],[138.65015709700018,-6.7972958309999],[138.63892662900017,-6.787367445999806],[138.62305748800023,-6.767347914999931],[138.61695397200006,-6.748142184999877],[138.61850019599996,-6.729099216999884],[138.62696373800023,-6.720147393999866],[138.64128665500013,-6.730645440999837],[138.6655379570001,-6.750258070999805],[138.67920983200023,-6.758070570999876],[138.69507897200018,-6.761325778999918],[138.731211785,-6.763116143999823],[138.74683678500017,-6.768161716999856],[138.75342858200005,-6.778252862999821],[138.75904381600017,-6.791680596999896],[138.78305097700004,-6.814222914999888],[138.78744550899998,-6.829522393999851],[138.78150475400017,-6.838962497999859],[138.768728061,-6.84937916499986],[138.74659264400023,-6.863051039999888]]],[[[131.62452233200005,-6.709730726999865],[131.60621178499997,-6.727146091999842],[131.58399498800023,-6.719496351999823],[131.56869550899998,-6.732598565999878],[131.56617272200018,-6.751641533999872],[131.59131920700023,-6.767673434999864],[131.58204186300011,-6.781670830999829],[131.56478925899998,-6.795586846999896],[131.55103600400017,-6.801527601999837],[131.52735436300023,-6.780857028999904],[131.53736412900005,-6.738051039999917],[131.56568444100017,-6.696465752999842],[131.59742272200006,-6.679131768999852],[131.61931399800008,-6.682549737999864],[131.62867272200012,-6.693942966999912],[131.62452233200005,-6.709730726999865]]],[[[134.67603600400017,-6.757500908999916],[134.6694442070001,-6.772881768999851],[134.65365644600013,-6.768812757999811],[134.62142988400004,-6.747002862999849],[134.6300561860002,-6.735772393999852],[134.63160241000006,-6.727227471999825],[134.62826582100004,-6.709405205999842],[134.63257897200006,-6.700372002999842],[134.66578209700006,-6.650485934999878],[134.67660566500015,-6.610528252999828],[134.68148847700004,-6.599867445999806],[134.68767337300008,-6.591973565999822],[134.69605553500006,-6.58798593499985],[134.70736738400004,-6.589043877999898],[134.7200626960001,-6.595310153999847],[134.73015384200008,-6.604750257999867],[134.73633873800011,-6.616875908999859],[134.73755944100006,-6.630954684999892],[134.72950280000012,-6.664808851999865],[134.7221785820001,-6.682793877999899],[134.71363366000017,-6.6957333309999],[134.70329837300008,-6.707777601999823],[134.68043053500003,-6.7432593729999],[134.67603600400017,-6.757500908999916]]],[[[105.26417076900006,-6.527927341999841],[105.26563561300006,-6.55331796699987],[105.26384524800008,-6.592380466999927],[105.25603274800008,-6.628187757999839],[105.23991946700019,-6.643975518999881],[105.22242272200006,-6.64934661299985],[105.20386803500006,-6.673272393999909],[105.19214928500004,-6.678806247999916],[105.18295332100014,-6.671563408999901],[105.18506920700011,-6.655043226999837],[105.19353274800014,-6.636651299999883],[105.20215905000012,-6.623467705999843],[105.18995201900006,-6.617852471999839],[105.18295332100014,-6.607679945999891],[105.17546634200019,-6.583103122999873],[105.13209069100006,-6.626885674999841],[105.12012780000012,-6.630954684999892],[105.11768639400005,-6.612399997999887],[105.13795006600017,-6.587334893999895],[105.18848717500012,-6.547621351999879],[105.19581139400012,-6.555108330999857],[105.20411217500005,-6.545179945999848],[105.21558678500006,-6.538832289999917],[105.2255965500001,-6.536390882999881],[105.2299910820001,-6.538181247999873],[105.23357181100008,-6.531833591999842],[105.2420353520001,-6.528415622999929],[105.253184441,-6.527276299999897],[105.26417076900006,-6.527927341999841]]],[[[134.72982832100004,-6.546156507999825],[134.71534264400006,-6.552992445999848],[134.70248457100016,-6.550957940999822],[134.69385826900023,-6.553480726999837],[134.68848717500006,-6.558526299999869],[134.67481530000023,-6.563083591999899],[134.65626061300023,-6.559014580999857],[134.64812259200002,-6.541924737999906],[134.644297722,-6.520765882999811],[134.63591556100008,-6.506280205999857],[134.62614993600013,-6.497165622999859],[134.62378991000017,-6.486097914999917],[134.63135826900012,-6.475844007999811],[134.644786004,-6.464450778999931],[134.663259311,-6.45484791499986],[134.68433678500006,-6.457777601999879],[134.70484459700012,-6.470472914999931],[134.71949303499997,-6.486260674999883],[134.72779381600017,-6.504571221999853],[134.73096764400023,-6.514336846999882],[134.73438561300006,-6.525811455999843],[134.72982832100004,-6.546156507999825]]],[[[130.0216577480002,-6.324965101999823],[130.01368248800023,-6.328383070999834],[130.006114129,-6.324883721999839],[129.99870853000013,-6.317152601999823],[129.997813347,-6.309747002999841],[130.00375410200013,-6.306247653999847],[130.020762566,-6.312432549999826],[130.0260522800002,-6.318454684999921],[130.0216577480002,-6.324965101999823]]],[[[134.6077580090001,-6.421482028999876],[134.60222415500007,-6.441582940999837],[134.588145379,-6.455254815999865],[134.55372155000006,-6.473239841999899],[134.565684441,-6.491387627999899],[134.56055748800011,-6.516045830999885],[134.54175866000006,-6.529473565999879],[134.51156660200004,-6.513604424999855],[134.50228925899998,-6.500176690999865],[134.49586022200015,-6.485284112999821],[134.49236087300005,-6.471612237999878],[134.49122155000023,-6.462334893999824],[134.486582879,-6.454359632999868],[134.46387780000018,-6.424899997999887],[134.45142662900005,-6.424899997999887],[134.43799889400023,-6.427504164999888],[134.42725670700023,-6.426364841999855],[134.42286217500023,-6.414646091999855],[134.41773522200006,-6.406426690999864],[134.35840905000006,-6.379489841999899],[134.35035241000006,-6.371758721999882],[134.34717858200005,-6.359633070999806],[134.34986412900017,-6.350681247999859],[134.3564559250002,-6.341566664999874],[134.36451256600017,-6.333591403999918],[134.37208092500012,-6.327813408999859],[134.3867293630002,-6.319594007999854],[134.39136803500006,-6.316094658999873],[134.40642337300005,-6.299574476999893],[134.41342207100016,-6.294528903999861],[134.42115319100006,-6.290134372999873],[134.42937259200008,-6.286716403999861],[134.437754754,-6.285088799999841],[134.4461369150001,-6.285414320999862],[134.45215905000006,-6.288018487999864],[134.46355228000007,-6.296970309999891],[134.4949650400001,-6.313897393999881],[134.50473066500004,-6.321221612999878],[134.5286564460001,-6.350274346999853],[134.54420006600017,-6.363864841999913],[134.5631616550002,-6.369561455999885],[134.57471764400012,-6.374769789999888],[134.58961022200018,-6.387790622999873],[134.60230553500006,-6.404554945999806],[134.6077580090001,-6.421482028999876]]],[[[134.83765709700018,-6.460056247999859],[134.8263452480002,-6.473239841999899],[134.81177819100006,-6.464288018999866],[134.79835045700005,-6.452243747999859],[134.79395592500006,-6.440524997999872],[134.80640709700012,-6.431735934999907],[134.80640709700012,-6.424899997999887],[134.79411868600008,-6.40195077899989],[134.7990014980002,-6.370538018999866],[134.81421959700018,-6.345798434999892],[134.83375084700018,-6.342380466999884],[134.8336694670002,-6.31145598799985],[134.83562259200002,-6.296563408999887],[134.84058678500017,-6.287692966999842],[134.85613040500016,-6.283786716999842],[134.87183678500017,-6.288506768999851],[134.88379967500006,-6.29949309699991],[134.88819420700005,-6.314060153999847],[134.8859155610002,-6.336358330999871],[134.87891686300011,-6.355889580999857],[134.86109459700006,-6.390069268999851],[134.83765709700018,-6.460056247999859]]],[[[134.43653405000012,-6.445245049999883],[134.44263756600017,-6.446384372999916],[134.4460555350001,-6.443454684999891],[134.44996178500014,-6.441338799999883],[134.45704186300023,-6.445245049999883],[134.4612736340001,-6.450860283999873],[134.4620874360002,-6.45566171699987],[134.4620874360002,-6.460381768999881],[134.46387780000018,-6.465752862999834],[134.48170006600006,-6.49773528399983],[134.48536217500012,-6.5069312479999],[134.48780358200023,-6.508558851999837],[134.490000847,-6.51132577899989],[134.49122155000023,-6.517266533999901],[134.48902428500006,-6.520684502999828],[134.48438561300023,-6.522637627999869],[134.47974694100012,-6.525485934999907],[134.47754967500012,-6.53134530999985],[134.48438561300023,-6.575616143999909],[134.51050866000014,-6.580661716999842],[134.52149498800023,-6.586846612999821],[134.51539147200006,-6.599541924999869],[134.50831139400006,-6.609063408999873],[134.50416100400005,-6.627536716999884],[134.49927819100017,-6.637790622999916],[134.47217858200023,-6.661797783999859],[134.4503686860002,-6.660577080999843],[134.42872155000012,-6.652764580999857],[134.40170332100016,-6.657484632999868],[134.40170332100016,-6.664971612999835],[134.42042076900023,-6.664157809999907],[134.43376712300002,-6.677015882999839],[134.43653405000012,-6.682061455999872],[134.4321395190001,-6.691582940999865],[134.42156009200008,-6.704196872999859],[134.40894616000017,-6.715020440999851],[134.39828535200016,-6.719659112999878],[134.34717858200005,-6.801527601999837],[134.3642684250001,-6.80779387799987],[134.35889733200005,-6.820733330999886],[134.3107202480002,-6.859470309999906],[134.24480228000007,-6.883477471999868],[134.20736738400004,-6.911309502999828],[134.1850692070001,-6.918633721999825],[134.15845787900005,-6.873630466999842],[134.1461694670002,-6.858982028999918],[134.14047285200004,-6.854913018999866],[134.12745201900023,-6.84937916499986],[134.08985436300023,-6.838311455999914],[134.07341556100002,-6.826755466999884],[134.06446373800011,-6.795586846999896],[134.05502363399998,-6.775160414999917],[134.05298912900017,-6.764336846999839],[134.054453972,-6.751641533999872],[134.0665796230002,-6.719659112999878],[134.08594811300023,-6.642022393999838],[134.103770379,-6.474867445999834],[134.11060631600006,-6.459161065999865],[134.11752363400004,-6.452080987999892],[134.1206160820001,-6.462334893999824],[134.13111412900017,-6.479750257999896],[134.18580162900005,-6.48919036299982],[134.20997155000023,-6.50741952899989],[134.20826256600006,-6.489841403999861],[134.19117272200018,-6.462823174999912],[134.18946373800006,-6.445245049999883],[134.13697350400005,-6.450372002999885],[134.12037194100017,-6.419854424999855],[134.12745201900023,-6.325290622999844],[134.12159264400006,-6.291924737999864],[134.09913170700005,-6.225681247999886],[134.09750410200016,-6.192071221999868],[134.10271243600008,-6.180108330999842],[134.11198978000016,-6.172946872999887],[134.12378991000017,-6.171563408999916],[134.13599694100003,-6.17693450299987],[134.1460067070002,-6.188734632999839],[134.15406334700018,-6.203057549999826],[134.163828972,-6.215020440999864],[134.19874108200023,-6.224297783999901],[134.2140405610002,-6.234795830999886],[134.2472436860002,-6.268324476999823],[134.27711022200018,-6.290215752999856],[134.28882897200018,-6.294528903999861],[134.29460696700002,-6.297784112999906],[134.29883873800017,-6.305840752999842],[134.29981530000023,-6.315850518999824],[134.2959090500002,-6.325290622999844],[134.28809655000023,-6.33603280999985],[134.28777103000002,-6.341892184999891],[134.31275475400005,-6.374200127999828],[134.3297632170002,-6.389336846999825],[134.34937584700018,-6.39983489399988],[134.392425977,-6.40829843499992],[134.40723717500006,-6.419122002999828],[134.42042076900023,-6.432793877999855],[134.43653405000012,-6.445245049999883]]],[[[134.15528405000003,-6.00652434699991],[134.15528405000003,-6.048028252999898],[134.16065514400023,-6.043552341999841],[134.20679772200018,-6.025323174999855],[134.21778405000012,-6.023614190999851],[134.22584069100006,-6.028741143999865],[134.23585045700023,-6.062676690999822],[134.24048912900017,-6.073500257999811],[134.24480228000007,-6.075941664999931],[134.25098717500023,-6.070977471999896],[134.27149498800011,-6.061700127999841],[134.2657983730002,-6.07740650799981],[134.24634850399997,-6.096449476999808],[134.23731530000012,-6.110121351999837],[134.23414147200006,-6.130059502999827],[134.24252363399998,-6.144219658999845],[134.25700931100008,-6.158379815999865],[134.27149498800011,-6.178399346999839],[134.28630618600008,-6.174981377999827],[134.29981530000023,-6.18450286299982],[134.33326256600012,-6.234551690999837],[134.34278405000012,-6.239353122999916],[134.36150149800008,-6.239353122999916],[134.3532007170002,-6.250420830999872],[134.35596764400023,-6.254571221999896],[134.37794030000023,-6.254082940999822],[134.3859155610002,-6.25750090899983],[134.39568118600008,-6.264906507999825],[134.40788821700002,-6.271905205999886],[134.42286217500023,-6.274021091999899],[134.42286217500023,-6.280857028999918],[134.39747155000023,-6.284926039999874],[134.38086998800006,-6.298760674999883],[134.366465691,-6.315687757999868],[134.34717858200005,-6.329278252999828],[134.33765709700018,-6.331963799999897],[134.33480879000015,-6.328871351999823],[134.33318118600013,-6.320570570999834],[134.32667076900012,-6.30820077899989],[134.30396569100017,-6.287530205999872],[134.29078209700003,-6.280043226999823],[134.28500410200016,-6.28427499799993],[134.27759850400017,-6.275079033999859],[134.2338973320001,-6.239353122999916],[134.2179468110002,-6.20761484199987],[134.2028100920002,-6.194268487999864],[134.18262780000023,-6.205743096999896],[134.16228274800008,-6.196547132999839],[134.16602623800011,-6.183038018999866],[134.1798608730002,-6.167087497999859],[134.18946373800006,-6.150485934999891],[134.18604576900017,-6.133965752999828],[134.17164147200012,-6.136488539999931],[134.14112389400017,-6.157891533999873],[134.12037194100017,-6.122165622999844],[134.11491946700002,-6.076836846999839],[134.12598717500018,-6.034274997999886],[134.15528405000003,-6.00652434699991]]],[[[106.15919030000006,-6.009535414999903],[106.17603600400005,-6.013929945999806],[106.20948326900012,-5.99830494599982],[106.23145592500012,-5.966973565999865],[106.25652103000002,-5.941582940999837],[106.29883873800006,-5.945000908999845],[106.36101321700002,-5.993422132999839],[106.3849389980002,-6.000258070999863],[106.40935306100008,-6.004327080999829],[106.47006269600008,-6.03435637799987],[106.49537194100006,-6.034844658999859],[106.5120548840001,-6.024834893999866],[106.5276798840001,-6.012465101999837],[106.54932701900006,-6.00652434699991],[106.66293379000015,-6.007989190999865],[106.68539472700016,-6.012465101999837],[106.70582116000004,-6.020196221999853],[106.72087649800008,-6.030938408999859],[106.72901451900006,-6.047539971999824],[106.73104902400021,-6.058851820999806],[106.73243248800011,-6.066582940999822],[106.73780358200005,-6.083916924999897],[106.75196373800006,-6.095879815999837],[106.79322350400005,-6.104099216999927],[106.8377384770001,-6.102715752999856],[106.98829186300004,-6.079359632999854],[106.99350019600016,-6.078545830999842],[107.00513756600017,-6.072360934999877],[107.00855553500017,-6.053155205999829],[107.01392662900005,-6.040459893999851],[107.0149845710001,-6.028985283999901],[107.00513756600017,-6.013929945999806],[106.99903405000006,-6.003513278999904],[107.00456790500019,-5.988213799999854],[107.02564537900005,-5.958672783999887],[107.02125084700006,-5.92408619599989],[107.04444420700005,-5.914320570999847],[107.08033287900015,-5.921563408999873],[107.11443118600019,-5.938164971999839],[107.12574303500016,-5.948907158999845],[107.13648522200016,-5.961602471999896],[107.15007571700002,-5.973077080999857],[107.16968834700018,-5.979750257999811],[107.187754754,-5.980157158999901],[107.20533287900005,-5.977308851999865],[107.28093509200008,-5.954766533999887],[107.32064731700015,-5.962415976999893],[107.35413648700009,-5.975994692999933],[107.37963099700019,-6.008516380999879],[107.4130776150001,-6.06317397199993],[107.44565470100011,-6.104322740999847],[107.47026793800008,-6.145432463999924],[107.51077896500013,-6.164443739999868],[107.56317927900008,-6.184246526999843],[107.62113228600006,-6.187473681999876],[107.655221834,-6.225378002999847],[107.67822384900015,-6.238022903999905],[107.69966144000009,-6.226997790999846],[107.715526068,-6.235689939999872],[107.73219448300019,-6.232548475999835],[107.74490028600022,-6.223092012999884],[107.76807701900012,-6.213311455999857],[107.773692254,-6.207940362999892],[107.78296959700018,-6.205743096999896],[107.79297936300004,-6.207940362999892],[107.80290774800008,-6.211521091999869],[107.81031334700006,-6.211195570999848],[107.81324303500017,-6.202325127999899],[107.81083632800008,-6.189346824999873],[107.82626293400008,-6.185130075999851],[107.84768385100008,-6.191952341999894],[107.849402905,-6.205527749999845],[107.86396034600014,-6.206397675999881],[107.87766123600008,-6.191151889999915],[107.8853592950002,-6.186922216999903],[107.89563098100021,-6.209830572999877],[107.89562430100008,-6.231024718999876],[107.94727623800004,-6.263116143999838],[107.99047130700009,-6.281091899999893],[108.0493425010001,-6.309907120999853],[108.07406950600009,-6.318379011999866],[108.09368265800018,-6.326846921999916],[108.11328863600014,-6.326847264999856],[108.12947950200012,-6.326001111999829],[108.14226053200017,-6.322614955999882],[108.158449836,-6.311609683999862],[108.18360436300006,-6.296970309999891],[108.18702233200005,-6.294528903999861],[108.19507653400015,-6.28706108599988],[108.20359445600016,-6.276057684999927],[108.2069985840001,-6.262513256999867],[108.20529439700013,-6.249816209999849],[108.19848087200009,-6.240504778999905],[108.1865571640002,-6.231192666999917],[108.1984810750001,-6.227807820999899],[108.2163638260001,-6.237965338999842],[108.24872349800009,-6.247274812999891],[108.31088199700011,-6.248956414999853],[108.33217267500018,-6.261646979999867],[108.33898106000007,-6.250641592999926],[108.36026907700008,-6.246400944999877],[108.36453480500003,-6.272639433999885],[108.37222736900017,-6.340352902999896],[108.45541425900014,-6.442071221999824],[108.47461998800011,-6.452080987999892],[108.48780358200005,-6.456801039999903],[108.53956139400006,-6.486911716999842],[108.5745548840001,-6.669610283999859],[108.60547936300011,-6.761651299999855],[108.66309655000006,-6.767347914999931],[108.705332879,-6.795993747999901],[108.74878991000006,-6.812188408999859],[108.79224694100012,-6.811130466999899],[108.8349715500001,-6.787855726999894],[108.84327233200011,-6.797946872999859],[108.85865319100006,-6.80242278399983],[108.87614993600019,-6.804864190999851],[108.88965905000006,-6.809014580999885],[108.89519290500007,-6.814222914999888],[108.90357506600006,-6.822198174999841],[108.91187584699999,-6.834893487999906],[108.92302493600002,-6.84465911299985],[108.94483483200011,-6.84937916499986],[108.9689233730002,-6.848321221999896],[108.98340905000006,-6.841729424999826],[108.99073326900006,-6.827894789999917],[108.99268639400012,-6.805352471999839],[109.00131269600008,-6.789157809999892],[109.0208439460001,-6.788669528999904],[109.04151451900012,-6.795586846999896],[109.05347741000006,-6.801527601999837],[109.092051629,-6.831475518999895],[109.11548912900011,-6.838555596999853],[109.14283287900015,-6.856215101999865],[109.15040123800011,-6.857028903999876],[109.17693118600008,-6.856215101999865],[109.3518986340001,-6.875664971999868],[109.4382430350001,-6.860121351999865],[109.49293053500006,-6.801527601999837],[109.53199303499999,-6.835137627999856],[109.7255965500001,-6.863051039999888],[109.8963322270001,-6.91822682099982],[109.940684441,-6.923435153999904],[109.98389733200011,-6.922621351999808],[110.11426842500005,-6.903903903999931],[110.13884524800008,-6.897149346999896],[110.14958743600006,-6.887302341999869],[110.15284264400012,-6.881768487999864],[110.1697697270001,-6.860935153999876],[110.17750084699999,-6.856215101999865],[110.18832441500008,-6.860284112999834],[110.19206790500007,-6.869805596999824],[110.1935327480002,-6.88111744599982],[110.19800866000017,-6.890883070999848],[110.21257571700019,-6.899997653999847],[110.25879967500012,-6.920993747999873],[110.29297936300011,-6.931247653999904],[110.33464603000006,-6.961358330999843],[110.35572350400017,-6.972914320999862],[110.3810327480002,-6.975681247999916],[110.399099155,-6.967868747999929],[110.41504967500006,-6.957452080999842],[110.4345809250001,-6.952406507999811],[110.45606530000005,-6.950941664999945],[110.47242272200016,-6.9463843729999],[110.4861759770001,-6.937920830999857],[110.52702884200002,-6.895196221999853],[110.57154381600006,-6.836195570999806],[110.6447046230002,-6.688164971999868],[110.65739993600008,-6.643975518999881],[110.66325931100017,-6.606052341999869],[110.66480553500006,-6.565362237999878],[110.669688347,-6.54631926899988],[110.67847741000017,-6.534600518999894],[110.68189537900015,-6.521905205999843],[110.67107181100017,-6.499932549999826],[110.69166100400005,-6.496026299999826],[110.70199629000015,-6.488702080999829],[110.71876061300004,-6.465752862999834],[110.73047936300006,-6.456963799999869],[110.7810978520001,-6.436455987999821],[110.80811608200005,-6.431735934999907],[110.81812584700006,-6.428155205999843],[110.83375084700006,-6.420668226999865],[110.84229576900006,-6.418064059999864],[110.9031681650001,-6.410821221999853],[110.92481530000006,-6.403741143999881],[110.93409264400012,-6.411065362999892],[110.9617619150001,-6.427911065999893],[110.9725041020001,-6.431735934999907],[110.99219811300004,-6.432305596999868],[111.00245201900012,-6.431247653999917],[111.00684655000006,-6.428317966999899],[111.01075280000006,-6.420993747999887],[111.01929772200012,-6.426364841999855],[111.0267033210001,-6.435316664999874],[111.02784264400012,-6.438409112999864],[111.0408634770001,-6.447360934999892],[111.05176842500006,-6.45671965899983],[111.05925540500007,-6.46990325299987],[111.06544030000012,-6.509372653999847],[111.0823673840001,-6.543877862999849],[111.11931399800007,-6.649672132999867],[111.13705488400015,-6.685479424999882],[111.14437910200016,-6.691827080999914],[111.15056399800014,-6.692966403999847],[111.15691165500006,-6.692071221999853],[111.34253991000011,-6.712823174999855],[111.36638431100019,-6.712009372999844],[111.40805097700016,-6.701755466999913],[111.42872155000006,-6.699151299999826],[111.44410241000011,-6.689060153999861],[111.47779381600012,-6.640313408999845],[111.49341881600017,-6.623467705999843],[111.51986738400015,-6.639906507999839],[111.57699629000015,-6.650974216999869],[111.61011803500017,-6.664971612999835],[111.62142988400015,-6.674574476999808],[111.6546330090001,-6.716241143999865],[111.6726994150001,-6.733656507999839],[111.694997592,-6.755140882999868],[111.71680748800006,-6.770684502999869],[111.74040774800014,-6.781670830999829],[111.80730228000006,-6.799493096999896],[111.8494572270001,-6.803887627999884],[111.86622155000012,-6.80779387799987],[111.88233483200005,-6.808689059999864],[111.90430748800011,-6.801527601999837],[111.93653405000012,-6.784926039999874],[111.95850670700005,-6.77939218499985],[111.976247592,-6.784844658999886],[112.00993899800002,-6.818617445999877],[112.06788170700023,-6.893649997999901],[112.08399498800011,-6.906019789999931],[112.1069442070001,-6.910821221999839],[112.15064537900017,-6.910088799999897],[112.1928817070001,-6.904554945999876],[112.22657311300011,-6.89267343499992],[112.23707116000017,-6.890883070999848],[112.27816816500015,-6.890883070999848],[112.29867597700004,-6.887465101999837],[112.33969160200004,-6.873142184999849],[112.363536004,-6.870538018999852],[112.40007571700006,-6.876722914999917],[112.41504967500012,-6.882500908999887],[112.42237389400012,-6.878838799999841],[112.42920983200011,-6.873223565999837],[112.43523196700014,-6.870538018999852],[112.45484459700018,-6.875420830999829],[112.47120201900012,-6.887139580999914],[112.48601321700006,-6.900567315999907],[112.50074303500017,-6.910821221999839],[112.52271569100017,-6.917657158999859],[112.54281660200004,-6.917575778999876],[112.55713951900012,-6.907891533999901],[112.56283613399998,-6.887302341999869],[112.56218509200002,-6.874200127999899],[112.56251061300006,-6.866794528999918],[112.56812584700016,-6.865411065999851],[112.58277428500016,-6.870538018999852],[112.58985436300023,-6.876071872999873],[112.59620201900006,-6.885186455999872],[112.60108483200023,-6.895603122999859],[112.60377037900005,-6.904554945999876],[112.60254967500012,-6.925957940999837],[112.58668053500017,-6.965590101999865],[112.58277428500016,-6.98992278399983],[112.58716881600017,-6.99960702899989],[112.60954837300008,-7.033379815999865],[112.61801191500004,-7.041192315999865],[112.62867272200005,-7.0453427059999],[112.64332116000017,-7.039483330999857],[112.65739993600019,-7.037855726999837],[112.66578209700018,-7.054864190999893],[112.63379967500018,-7.063734632999854],[112.61768639400012,-7.070570570999863],[112.61060631600006,-7.079359632999839],[112.61410566500003,-7.091241143999881],[112.62256920700005,-7.108493747999887],[112.63282311300011,-7.123793226999851],[112.64161217500023,-7.130547783999887],[112.65837649800007,-7.13762786299985],[112.67465254000004,-7.154473565999851],[112.68384850400015,-7.174899997999916],[112.678965691,-7.192640882999824],[112.664317254,-7.198825778999876],[112.60377037900005,-7.192640882999824],[112.62012780000023,-7.214939059999849],[112.64551842500023,-7.23015715899983],[112.70069420700011,-7.254652601999865],[112.71631920700005,-7.23919036299985],[112.72950280000012,-7.220472914999874],[112.7451278000001,-7.205173434999907],[112.76823978000007,-7.199395440999851],[112.78443444099999,-7.205498955999843],[112.79786217500012,-7.218926690999836],[112.80860436300011,-7.234551690999822],[112.82325280000012,-7.262627862999821],[112.82667076900023,-7.27792734199987],[112.8263452480002,-7.293226820999833],[112.818125847,-7.329522393999838],[112.81617272200016,-7.346937757999812],[112.81609134200019,-7.387139580999899],[112.8074650400001,-7.407321872999929],[112.77003014400022,-7.432712497999858],[112.761485222,-7.448907158999901],[112.761485222,-7.531182549999869],[112.84489993600013,-7.592868747999887],[112.97201582099999,-7.647637627999828],[112.99048912900004,-7.651950778999917],[113.01628665500007,-7.652276299999841],[113.03711998800023,-7.655043226999807],[113.05600019600016,-7.663018487999863],[113.07618248800011,-7.67864348799985],[113.11150149800018,-7.713148695999863],[113.13266035200004,-7.727797132999867],[113.16537519600016,-7.735935153999875],[113.18726647200018,-7.745049737999878],[113.19955488400015,-7.747491143999908],[113.20826256600004,-7.746270440999893],[113.22974694100006,-7.740817966999856],[113.2412215500001,-7.740655205999886],[113.260996941,-7.750176690999879],[113.2853296230002,-7.781670830999899],[113.29932701900022,-7.788506768999823],[113.32309004000014,-7.785577080999886],[113.34253991000004,-7.7777645809999],[113.37777753999997,-7.754327080999829],[113.41374759200008,-7.736260674999897],[113.43580162900015,-7.729180596999853],[113.45687910199999,-7.726332289999903],[113.4728296230002,-7.722100518999881],[113.50456790500007,-7.703789971999824],[113.5285750660001,-7.700372002999913],[113.65894616000004,-7.720147393999837],[113.67107181100013,-7.717950127999842],[113.69092858200023,-7.709079684999891],[113.69996178500006,-7.706638278999861],[113.72299238400002,-7.708265882999881],[113.76303144600004,-7.722832940999822],[113.78589928500006,-7.726332289999903],[113.80388431100019,-7.721774997999859],[113.81657962300001,-7.710625908999844],[113.83716881600017,-7.686130466999899],[113.854746941,-7.677015882999824],[113.86963951900017,-7.677992445999805],[113.88607832100016,-7.683038018999824],[113.90943444100004,-7.686130466999899],[113.9305119150001,-7.683851820999834],[113.945078972,-7.677992445999805],[114.01612389400017,-7.618096612999849],[114.04558353000007,-7.611993096999867],[114.07732181100019,-7.630791924999826],[114.11695397200005,-7.680596612999892],[114.140391472,-7.700860283999901],[114.17221113400015,-7.713474216999884],[114.19597415500007,-7.714125257999839],[114.23682701900012,-7.703301690999836],[114.25855553500016,-7.700372002999913],[114.27361087300008,-7.705498955999828],[114.31006920700023,-7.740655205999886],[114.32520592500023,-7.750258070999863],[114.3344832690001,-7.753187757999881],[114.34750410200016,-7.754327080999829],[114.36963951900022,-7.753187757999881],[114.38111412899998,-7.754164320999862],[114.3889266290001,-7.758070570999863],[114.40674889400016,-7.77320728999986],[114.44597415500019,-7.794691664999888],[114.46021569100017,-7.809665622999916],[114.46729576900023,-7.830987237999877],[114.466481967,-7.852715752999856],[114.46021569100017,-7.894952080999885],[114.45736738400015,-7.902520440999837],[114.44459069099999,-7.920668226999837],[114.44044030000018,-7.932549737999877],[114.44027754000004,-7.943780205999886],[114.44255618600017,-7.952406507999881],[114.4454858730002,-7.95964934699991],[114.44727623800011,-7.966566664999902],[114.44678795700011,-8.01425546699987],[114.40479576900012,-8.158379815999822],[114.36597740999999,-8.357191664999903],[114.36353600400017,-8.386163018999895],[114.3586531910001,-8.409112237999892],[114.35792076900017,-8.41912200299987],[114.36011803500017,-8.430596612999821],[114.37159264400012,-8.453220309999878],[114.37338300899998,-8.498467705999914],[114.37671959699999,-8.519463799999855],[114.3889266290001,-8.528252862999821],[114.40113366000017,-8.517185153999876],[114.40512129000015,-8.491794528999861],[114.40560957100004,-8.447035414999917],[114.42318769600016,-8.46502044099985],[114.42741946700018,-8.496840101999894],[114.42611738399998,-8.562432549999912],[114.432871941,-8.582614841999842],[114.44532311300023,-8.602797132999868],[114.46119225400017,-8.61834075299987],[114.47803795700005,-8.624607028999918],[114.49805748800023,-8.625258070999877],[114.51075280000012,-8.628350518999852],[114.53598066500015,-8.64511484199987],[114.58912194100017,-8.66423919099985],[114.59742272200006,-8.675713799999897],[114.60336347700016,-8.688164971999825],[114.61557050900015,-8.70012786299985],[114.62566165500019,-8.716078382999854],[114.62476647199999,-8.740655205999872],[114.59717858200011,-8.77556731599988],[114.55534915500019,-8.777927341999842],[114.4676212900001,-8.74814218499992],[114.44532311300023,-8.744073174999869],[114.3889266290001,-8.74814218499992],[114.36695397200018,-8.74146900799988],[114.36980228000013,-8.726332289999874],[114.39193769599999,-8.700290622999901],[114.38526451900022,-8.66472747199984],[114.3496199880001,-8.632500908999887],[114.30258222700014,-8.611911716999856],[114.26172936300023,-8.610935153999888],[114.22087649800008,-8.636488539999874],[114.19703209700012,-8.645603122999859],[114.18653405000023,-8.63486093499985],[114.17481530000023,-8.61980559699984],[114.14820397200012,-8.622328382999854],[114.10401451900022,-8.638116143999893],[114.09489993600002,-8.637872002999856],[114.05933678500017,-8.631442966999842],[114.05079186300021,-8.627129815999837],[114.04151451900012,-8.608330987999892],[114.0319930350001,-8.60409921699987],[114.01238040500002,-8.60947030999992],[113.99488366000017,-8.61834075299987],[113.97999108200021,-8.620212497999844],[113.96802819100012,-8.60409921699987],[113.96924889400012,-8.593519789999917],[113.97315514400012,-8.579685153999918],[113.97388756600006,-8.567559502999826],[113.96436608200023,-8.562432549999912],[113.95427493600019,-8.564711195999875],[113.93376712300014,-8.574476820999834],[113.92286217500023,-8.576755466999899],[113.90560957100016,-8.573907158999859],[113.87964928500006,-8.566176039999931],[113.85377037900004,-8.5551083309999],[113.83716881600017,-8.542087497999916],[113.83204186300004,-8.546807549999826],[113.82846113399998,-8.548923434999935],[113.82593834700016,-8.551039320999848],[113.82349694100004,-8.55632903399983],[113.81885826900012,-8.541761976999808],[113.81381269599999,-8.507745049999869],[113.80616295700017,-8.501071872999901],[113.790782097,-8.503024997999859],[113.77369225400017,-8.508070570999806],[113.76010175900004,-8.515801690999893],[113.75456790500019,-8.524997653999876],[113.75074303500017,-8.528090101999865],[113.74170983200005,-8.528985283999859],[113.72388756600012,-8.528252862999821],[113.71973717500022,-8.524672132999854],[113.72185306100008,-8.507419528999847],[113.72046959700018,-8.501071872999901],[113.70728600400005,-8.492364190999837],[113.69874108200011,-8.493584893999852],[113.68897545700005,-8.496840101999894],[113.67261803500017,-8.494805596999868],[113.65845787900004,-8.484958591999842],[113.64047285199999,-8.458591403999847],[113.62794030000012,-8.453220309999878],[113.59693444100017,-8.447035414999917],[113.59058678500004,-8.442071221999866],[113.57911217500012,-8.428806247999844],[113.57300866,-8.425957940999893],[113.54086347700014,-8.430596612999821],[113.52719160200004,-8.429294528999916],[113.49048912899998,-8.408379815999865],[113.48389733200021,-8.40203215899983],[113.47885175900004,-8.394707940999837],[113.47242272200018,-8.382094007999852],[113.46656334700005,-8.377536716999899],[113.44605553500011,-8.375583591999856],[113.42945397200006,-8.384047132999896],[113.41358483200011,-8.390232028999861],[113.39519290500007,-8.381280205999843],[113.34595787900017,-8.324151299999853],[113.32309004000014,-8.309258721999896],[113.28199303500017,-8.292087497999873],[113.24073326900012,-8.280938408999859],[113.19792728000013,-8.277276299999896],[113.07007897200012,-8.292413018999895],[113.02670332100014,-8.302992445999848],[112.98731530000023,-8.323500257999811],[112.93677819100006,-8.381280205999843],[112.90267988400014,-8.403985283999873],[112.87061608200005,-8.391778252999899],[112.85743248800011,-8.392673434999892],[112.83383222700016,-8.375746351999823],[112.82976321700014,-8.381280205999843],[112.8263452480002,-8.390069268999895],[112.81788170700005,-8.396579684999892],[112.80787194100017,-8.398858330999872],[112.79908287900005,-8.395196221999825],[112.78980553500017,-8.387872002999899],[112.78419030000016,-8.38681405999985],[112.76921634200002,-8.395196221999825],[112.75513756600016,-8.407972914999858],[112.74781334700016,-8.412855726999837],[112.73316491000017,-8.417657158999916],[112.71680748800017,-8.41912200299987],[112.70191491,-8.422295830999843],[112.69044030000023,-8.429864190999893],[112.67269941500014,-8.447035414999917],[112.65626061300006,-8.436455987999864],[112.6121525400001,-8.4164364559999],[112.57341556100008,-8.410088799999869],[112.52068118600008,-8.391778252999899],[112.44239342500018,-8.391778252999899],[112.42652428500006,-8.387627862999864],[112.41358483200023,-8.37908294099985],[112.39869225400017,-8.37175872199984],[112.37663821700019,-8.37127044099985],[112.38135826900012,-8.36142343499992],[112.38404381600017,-8.357598565999822],[112.36622155000012,-8.341973565999837],[112.3415633470001,-8.332696221999882],[112.31592858200023,-8.329034112999835],[112.29525800900002,-8.329766533999859],[112.28451582099997,-8.332696221999882],[112.25782311300004,-8.343357028999904],[112.24439537900017,-8.341973565999837],[112.23755944100017,-8.338474216999842],[112.23308353000019,-8.333916924999897],[112.22706139400012,-8.329766533999859],[112.20899498800006,-8.323663018999866],[112.02475019600003,-8.304945570999806],[112.00269616000006,-8.297784112999864],[111.9707137380001,-8.277764580999886],[111.96119225400005,-8.278252862999878],[111.93620853000017,-8.29485442499984],[111.93165123800006,-8.299574476999851],[111.92725670700005,-8.30250416499986],[111.91863040500017,-8.302992445999848],[111.89869225400011,-8.29648202899986],[111.87476647200005,-8.273858330999886],[111.85987389400006,-8.268812757999866],[111.833750847,-8.270684502999828],[111.82243899800002,-8.268812757999866],[111.81128991,-8.26441822699988],[111.80152428500017,-8.258884372999859],[111.79200280000006,-8.256524346999896],[111.78142337300001,-8.261407158999873],[111.77100670700005,-8.281508070999834],[111.77222741000017,-8.30169036299985],[111.77035566500008,-8.317315362999835],[111.75066165500007,-8.323500257999811],[111.74659264400012,-8.318047783999873],[111.74187259200018,-8.306084893999838],[111.73536217500006,-8.294040622999916],[111.72608483200004,-8.288750908999845],[111.71729576900006,-8.292738539999915],[111.71192467500012,-8.302178643999838],[111.70573978000007,-8.323500257999811],[111.7024845710001,-8.327406507999811],[111.6967879570001,-8.336846612999821],[111.69483483200005,-8.346368096999825],[111.70923912900005,-8.354099216999913],[111.71127363400015,-8.36101653399983],[111.7075301440001,-8.368096612999878],[111.69581139400005,-8.37127044099985],[111.67335045700005,-8.36785247199984],[111.65406334700012,-8.358086846999896],[111.63917076900006,-8.343031507999882],[111.63054446700006,-8.323500257999811],[111.62370853000002,-8.323500257999811],[111.61255944099999,-8.337009372999873],[111.59587649800008,-8.334405205999886],[111.56169681100019,-8.316664320999891],[111.54802493600008,-8.315606377999842],[111.53288821700008,-8.326592705999886],[111.51783287900005,-8.329766533999859],[111.4487410820001,-8.312920830999857],[111.44166100400017,-8.296807549999883],[111.44353274800014,-8.284844658999859],[111.44206790500007,-8.276055596999882],[111.4250594410001,-8.268812757999866],[111.41749108200004,-8.26913827899989],[111.39991295700011,-8.274346612999878],[111.390391472,-8.275079033999901],[111.38412519600014,-8.272881768999824],[111.3724064460001,-8.26441822699988],[111.36304772200005,-8.261407158999873],[111.31153405000005,-8.261407158999873],[111.3006291020001,-8.262953382999825],[111.2949324880001,-8.260430596999894],[111.28419030000012,-8.25123463299984],[111.27613366000017,-8.24830494599982],[111.26579837300008,-8.249281507999882],[111.25700931100019,-8.253024997999916],[111.25318444100017,-8.257989190999865],[111.17123457100016,-8.282647393999866],[111.1619572270001,-8.28191497199984],[111.15821373800006,-8.272067966999899],[111.15544681100019,-8.261000257999868],[111.14828535200016,-8.253513278999904],[111.13843834700006,-8.249200127999899],[111.12720787900005,-8.247735283999845],[111.1147567070001,-8.241957289999874],[111.11117597700014,-8.229180596999838],[111.10971113400008,-8.215427341999913],[111.10303795700011,-8.206801039999903],[111.09555097700014,-8.208184502999885],[111.09083092500006,-8.215508721999894],[111.08716881600012,-8.22527434699984],[111.0823673840001,-8.233493747999844],[111.07276451900012,-8.247002862999821],[111.06666100400004,-8.252536716999927],[111.05827884200018,-8.254652601999837],[111.01734459700006,-8.254652601999837],[110.99822024800007,-8.25017669099988],[110.93100019600014,-8.220472914999945],[110.84791100400017,-8.201104424999839],[110.71534264400006,-8.193129164999872],[110.70557701900012,-8.190036716999884],[110.6912541020001,-8.175876559999864],[110.6814884770001,-8.172621351999823],[110.66065514400012,-8.169854424999869],[110.63941491,-8.162774346999896],[110.60271243600017,-8.144789320999863],[110.60271243600017,-8.151543877999899],[110.54908287900005,-8.12761809699984],[110.52116946700019,-8.120212497999859],[110.49626712300002,-8.117445570999804],[110.47673587300007,-8.11191171699987],[110.410899285,-8.075860283999916],[110.40056399800018,-8.0746395809999],[110.38941491000017,-8.07488372199984],[110.38038170700005,-8.073174737999835],[110.376719597,-8.06617603999986],[110.35230553500017,-8.041680596999825],[110.34742272200018,-8.038832289999888],[110.328379754,-8.021172783999873],[110.31910241000006,-8.018731377999842],[110.28736412900011,-8.01506926899988],[110.03419030000006,-7.884698174999854],[109.93189537900017,-7.854913018999851],[109.90601647200006,-7.837660414999931],[109.88306725400017,-7.844821872999888],[109.84742272200012,-7.836683851999865],[109.81177819100004,-7.823418877999841],[109.75245201900005,-7.811944268999895],[109.65674889400012,-7.781670830999899],[109.486094597,-7.761814059999892],[109.4467879570001,-7.772067966999913],[109.42628014400006,-7.774183851999837],[109.41724694100006,-7.764906507999881],[109.41472415500007,-7.757907809999892],[109.40853925900008,-7.754978122999873],[109.40170332100016,-7.752618096999825],[109.39665774800014,-7.747491143999908],[109.39722741000017,-7.741875908999901],[109.40455162900011,-7.731052341999913],[109.40349368600002,-7.726332289999903],[109.39763431100019,-7.722832940999822],[109.36882571700008,-7.713474216999884],[109.19723358700017,-7.696216842999917],[109.09814586600012,-7.686861173999873],[109.04655524300018,-7.701853287999896],[109.03296959700018,-7.720147393999837],[109.02125084700012,-7.732028903999889],[109.01441491000017,-7.732598565999851],[108.98389733200005,-7.707207940999837],[108.97364342500012,-7.702243747999872],[108.96159915500019,-7.700372002999913],[108.93897545700005,-7.699476820999819],[108.9183048840001,-7.696384372999844],[108.90154056100019,-7.689629815999893],[108.88965905000006,-7.67864348799985],[108.88160240999999,-7.632500908999829],[108.87322024800008,-7.610609632999882],[108.85865319100006,-7.614027601999808],[108.85206139400006,-7.618829033999886],[108.82748457100016,-7.630791924999826],[108.82048587300008,-7.63787200299987],[108.8069767590001,-7.658135674999882],[108.79900149800002,-7.664727471999867],[108.78825931100013,-7.67351653399983],[108.76105384500013,-7.692764579999917],[108.73536217500006,-7.67864348799985],[108.72901451900012,-7.675957940999865],[108.72193444100017,-7.670342705999857],[108.71387780000012,-7.665704033999844],[108.70394941500014,-7.66562265399986],[108.69174238400015,-7.6722958309999],[108.68171394000015,-7.682244261999884],[108.67314890500015,-7.690752519999889],[108.6795353520001,-7.710219007999839],[108.6777449880001,-7.718926690999822],[108.67261803500016,-7.720635674999826],[108.65174052100011,-7.716271036999913],[108.64649498800011,-7.692966403999918],[108.63892662900017,-7.687920830999886],[108.62549889400006,-7.686130466999899],[108.5594181650001,-7.687432549999897],[108.53956139400006,-7.692315362999878],[108.5078231130001,-7.719496351999878],[108.50383388100006,-7.764224063999905],[108.49526643100009,-7.792922989999823],[108.45371146800014,-7.818501408999837],[108.32682945600001,-7.817471294999876],[108.13791037300021,-7.786661276999894],[107.9535305520001,-7.739873403999866],[107.90528615500014,-7.738783636999841],[107.86453418900012,-7.745130128999861],[107.8302284260001,-7.729167343999904],[107.828145496,-7.700493919999872],[107.80673901800017,-7.686675730999894],[107.7787964840002,-7.680248537999859],[107.71439665500012,-7.6716591979999],[107.68654876600006,-7.662075041999869],[107.678013241,-7.639753394999929],[107.66083976400009,-7.614208032999898],[107.62546860400019,-7.598219571999863],[107.59096020900007,-7.570433912999832],[107.55544769800022,-7.561823282999881],[107.5285142760001,-7.548963287999867],[107.48115147000007,-7.53819352299989],[107.47050903500003,-7.516909873999865],[107.45207948700013,-7.512536997999887],[107.431895379,-7.506524346999867],[107.42603600400017,-7.507907809999849],[107.42017662900005,-7.505629164999875],[107.41138756600017,-7.495863539999931],[107.3615306190002,-7.503713305999894],[107.29778959400008,-7.496136852999896],[107.24632553600011,-7.489654141999893],[107.21200781200015,-7.485328705999848],[107.17985941700013,-7.475696022999884],[107.14558584200009,-7.467119921999867],[107.10704903400008,-7.456406114999893],[106.87141725100005,-7.437711292999921],[106.79102156000008,-7.435331375999823],[106.60792076900012,-7.417901299999883],[106.52266213700014,-7.410957330999806],[106.48082591500004,-7.375669131999842],[106.45933116000018,-7.365995098999846],[106.43392988400015,-7.361993096999826],[106.40747974700011,-7.375316991999838],[106.397760497,-7.378465401999931],[106.39889456100016,-7.360363496999824],[106.39905776800018,-7.334824459999865],[106.37536532100015,-7.310194341999888],[106.3831486340001,-7.26767343499985],[106.3807072270001,-7.247247002999869],[106.38607832100016,-7.230645440999822],[106.39844811300004,-7.207777601999823],[106.4148869150001,-7.187676690999865],[106.43262780000006,-7.178887627999898],[106.45004316500015,-7.179131768999837],[106.46729576900006,-7.176446221999868],[106.47299238400015,-7.166599216999842],[106.45655358200004,-7.144789320999891],[106.474375847,-7.128106377999856],[106.51396716500003,-7.079596706999908],[106.54050382500012,-7.054612118999913],[106.54200280000006,-7.016778252999912],[106.5371492570001,-6.982961612999843],[106.51080421300017,-6.963798794999888],[106.48145592500006,-6.96705494599982],[106.45170181000006,-6.955059068999915],[106.42386967900009,-6.963220839999849],[106.40463300900015,-6.9913062479999],[106.40162194100006,-6.993096612999892],[106.37891686300011,-6.999769789999945],[106.35450280000006,-7.002699476999865],[106.33301842500012,-7.000746351999823],[106.3196720710001,-6.996189059999877],[106.3110457690001,-6.991469007999868],[106.30241946700018,-6.987969658999873],[106.28858483200011,-6.986504815999822],[106.2833764980002,-6.983330987999849],[106.27320397200016,-6.969333591999884],[106.267832879,-6.966078382999853],[106.25424238400015,-6.964288018999865],[106.25033613400015,-6.959567966999856],[106.2493595710001,-6.952813408999915],[106.24415123800011,-6.945570570999806],[106.237559441,-6.940606377999841],[106.20116190500019,-6.913679238999876],[106.16837141600014,-6.915809251999818],[106.12470716300018,-6.896279079999913],[106.05298499400013,-6.836805569999839],[106.00831139400006,-6.821954033999901],[105.97870617700013,-6.817711560999882],[105.95957332400005,-6.817628373999838],[105.93962649800008,-6.820977471999825],[105.91895592500006,-6.823988539999917],[105.90162194100006,-6.829522393999851],[105.89819202700002,-6.843176040999879],[105.88437996900015,-6.847672883999805],[105.87373494300019,-6.834708033999917],[105.85450280000005,-6.838148695999848],[105.8231327010001,-6.839039911999875],[105.79241752600015,-6.845743527999872],[105.77474377900009,-6.850226666999901],[105.7556036610001,-6.844816069999865],[105.72331790500002,-6.838555596999853],[105.70289147200006,-6.835707289999917],[105.59653182000008,-6.84907327299986],[105.55518770700004,-6.85568044699987],[105.53512074200009,-6.872326969999904],[105.4984603020001,-6.860727447999835],[105.48613478600006,-6.867515500999886],[105.47095787900005,-6.853448174999911],[105.46045983200005,-6.84531015399989],[105.44223066500015,-6.842543226999837],[105.43881269600014,-6.845961195999848],[105.42969811300006,-6.852715752999885],[105.4200952480002,-6.856866143999824],[105.41553795700005,-6.852797132999867],[105.41358483200011,-6.845798434999878],[105.40894616000017,-6.838148695999848],[105.40308678500006,-6.83212655999985],[105.39795983200011,-6.829522393999851],[105.35612567800014,-6.812872490999879],[105.31078445900017,-6.810354247999896],[105.30111738400015,-6.814141533999901],[105.29639733200011,-6.833265882999882],[105.29118899800014,-6.840997002999885],[105.28370201900006,-6.846937757999825],[105.27466881600006,-6.84937916499986],[105.25611412900005,-6.842380466999869],[105.24708092500012,-6.825453382999882],[105.23617597700016,-6.787855726999894],[105.22217858200011,-6.778497002999856],[105.21680748800006,-6.772067966999842],[105.21973717500006,-6.764336846999839],[105.22706139400006,-6.762627862999835],[105.26075280000006,-6.767347914999931],[105.27466881600006,-6.761651299999855],[105.2918400400001,-6.748223565999865],[105.3193465500001,-6.719659112999878],[105.328868035,-6.70273202899989],[105.33627363400008,-6.684828382999839],[105.34636478000007,-6.670668226999823],[105.36378014400012,-6.664971612999835],[105.37623131600006,-6.670017184999863],[105.38982181100019,-6.681410414999917],[105.40137780000012,-6.695000908999873],[105.40821373800006,-6.705987237999835],[105.41081790500007,-6.718438408999859],[105.41041100400005,-6.728773695999863],[105.41163170700005,-6.73894622199991],[105.43539472700016,-6.778252862999821],[105.44068444100004,-6.794122002999841],[105.45362389400006,-6.808770440999851],[105.47120201900006,-6.815850518999824],[105.4900822270001,-6.809014580999885],[105.50261478000017,-6.791110934999935],[105.51726321700019,-6.744235934999878],[105.52857506600017,-6.723321221999824],[105.60743248800006,-6.651462497999859],[105.62224368600019,-6.631605726999851],[105.6279403000001,-6.615980726999865],[105.61897438500013,-6.532504875999877],[105.64385850000009,-6.48233328799992],[105.65624206700014,-6.473264317999877],[105.67778979500021,-6.474924131999899],[105.68223819200014,-6.511534528999931],[105.69911100100009,-6.520773518999903],[105.71136412400001,-6.534563343999835],[105.73908515500014,-6.530148685999876],[105.7822342800001,-6.512107304999887],[105.80853431500006,-6.477215533999868],[105.82409120800011,-6.434645719999877],[105.82129967500006,-6.401136976999879],[105.83236738400008,-6.228692315999893],[105.83961022199999,-6.192071221999868],[105.86719811300011,-6.110121351999837],[105.88786868600002,-6.07057057099989],[105.95704186300006,-5.998711846999825],[105.96680748800006,-5.992852471999868],[105.97730553500006,-5.983493747999844],[105.99724368600002,-5.91773853999986],[106.02003014400006,-5.893243096999825],[106.05274498800006,-5.881036065999851],[106.08521569100017,-5.885511976999823],[106.10710696700019,-5.910902601999837],[106.11158287900017,-5.975192966999855],[106.11793053500011,-5.986016533999859],[106.128672722,-5.990329684999864],[106.15919030000006,-6.009535414999903]]],[[[124.07113691499998,-6.01132577899989],[124.05933678500006,-6.027439059999863],[124.04127037899998,-6.020765882999824],[124.03744550899998,-6.011651299999826],[124.03589928500004,-5.987399997999844],[124.03044681100012,-5.976006768999866],[124.01856530000016,-5.967950127999842],[123.99293053500011,-5.961195570999806],[123.9825952480002,-5.955254815999878],[123.96892337300007,-5.935316664999888],[123.96607506599999,-5.91545989399988],[123.97071373800023,-5.893975518999851],[123.97917728000017,-5.869886976999837],[123.98609459700018,-5.879815362999834],[124.03744550899998,-5.914320570999847],[124.04639733200023,-5.925713799999912],[124.0576278000001,-5.951104424999841],[124.06519616000017,-5.96249765399989],[124.07398522200006,-5.985284112999835],[124.07113691499998,-6.01132577899989]]],[[[110.44988040500019,-5.874444268999881],[110.43799889400012,-5.881036065999851],[110.43034915500017,-5.873711846999853],[110.42660566500015,-5.861504815999865],[110.421641472,-5.851332289999917],[110.42066491000006,-5.843682549999897],[110.43132571700008,-5.837334893999865],[110.459239129,-5.831638278999876],[110.46558678500006,-5.839532158999859],[110.46363366000011,-5.857110283999887],[110.44988040500019,-5.874444268999881]]],[[[120.49048912900005,-6.471449476999823],[120.48129316500008,-6.477308851999865],[120.47510826900012,-6.434502862999864],[120.46566816499998,-6.4027645809999],[120.46363366000016,-6.383884372999873],[120.47087649800007,-6.275160414999931],[120.46810957100003,-6.264336846999853],[120.46045983200013,-6.259698174999826],[120.4482528000001,-6.256524346999853],[120.44483483200011,-6.248467705999828],[120.44507897200006,-6.237725518999895],[120.44369550900008,-6.226169528999876],[120.43083743600006,-6.194512627999898],[120.42945397200016,-6.18580494599982],[120.43336022200016,-6.174004815999851],[120.44695071700014,-6.154473565999865],[120.44996178500006,-6.140801690999837],[120.45215905000012,-6.080824476999823],[120.44141686300011,-5.977634372999886],[120.4482528000001,-5.843926690999837],[120.45736738400002,-5.801039320999862],[120.47046959700018,-5.766859632999868],[120.48047936300016,-5.764092705999914],[120.48861738399998,-5.767266533999873],[120.49439537900004,-5.7745093729999],[120.49708092500012,-5.783298434999864],[120.49561608200017,-5.806410414999917],[120.50342858200021,-5.822686455999857],[120.51335696700006,-5.836602471999839],[120.51807701900016,-5.852634372999915],[120.52149498800006,-5.87468840899983],[120.54615319100017,-5.938164971999839],[120.55518639400006,-5.979424737999878],[120.559336785,-6.0225562479999],[120.55860436300004,-6.066338799999869],[120.55298912900015,-6.110121351999837],[120.52979576900022,-6.173109632999854],[120.52621504000008,-6.195489190999879],[120.53207441500004,-6.248304945999863],[120.5301212900001,-6.287286065999837],[120.52247155000022,-6.336521091999841],[120.51498457100008,-6.352471612999849],[120.50261478,-6.373467705999886],[120.50098717500012,-6.392510674999882],[120.50513756600004,-6.431735934999907],[120.50001061300023,-6.4515927059999],[120.49048912900005,-6.471449476999823]]],[[[134.20687910200016,-5.827325127999885],[134.19459069100017,-5.830173434999921],[134.18051191500015,-5.827325127999885],[134.16968834700006,-5.811130466999927],[134.16749108200017,-5.788995049999855],[134.16968834700006,-5.768324476999837],[134.17774498800011,-5.754489841999842],[134.19206790500007,-5.753024997999872],[134.20020592500006,-5.755303643999852],[134.204844597,-5.756117445999862],[134.212738477,-5.758721612999864],[134.22559655000012,-5.771172783999873],[134.22828209700018,-5.773370049999869],[134.227793816,-5.789320570999876],[134.22038821700014,-5.815606377999885],[134.20687910200016,-5.827325127999885]]],[[[104.84644616000006,-5.81121184699991],[104.83838951900012,-5.820407809999878],[104.82016035200009,-5.81226978999986],[104.7900496750001,-5.787692966999856],[104.7767033210001,-5.771579684999878],[104.77165774800007,-5.761651299999882],[104.77035566500014,-5.752048434999892],[104.77654056100002,-5.741143487999835],[104.78679446700006,-5.742120049999897],[104.80787194100017,-5.754327080999872],[104.82699629000015,-5.757907809999849],[104.832774285,-5.760023695999863],[104.84636478000007,-5.772556247999859],[104.84978274800008,-5.783298434999864],[104.84644616000006,-5.81121184699991]]],[[[112.71469160200016,-5.736097914999888],[112.72706139400006,-5.747328382999896],[112.73617597700014,-5.763116143999838],[112.7404077480002,-5.787367445999834],[112.73853600400005,-5.809991143999895],[112.73145592500016,-5.828383070999834],[112.71876061300011,-5.841566664999888],[112.70069420700011,-5.848809502999899],[112.69109134200018,-5.849541924999841],[112.66391035199997,-5.848321221999825],[112.65837649800007,-5.845391533999901],[112.65479576900012,-5.837172132999811],[112.64625084700016,-5.839288018999823],[112.63054446700014,-5.848809502999899],[112.60425866,-5.847426039999917],[112.59620201900006,-5.836032809999863],[112.59343509200019,-5.817315362999892],[112.58277428500016,-5.794203382999854],[112.59009850400015,-5.785577080999842],[112.61801191500004,-5.763441664999859],[112.6211043630001,-5.757907809999849],[112.64535566499998,-5.732110283999916],[112.65707441499998,-5.736748955999843],[112.67017662900005,-5.733493747999887],[112.6845809250001,-5.727959893999881],[112.70069420700011,-5.726006768999837],[112.71469160200016,-5.736097914999888]]],[[[132.70289147200012,-5.616794528999904],[132.69947350400008,-5.631524346999896],[132.69239342500023,-5.642022393999866],[132.69060306100008,-5.650079033999901],[132.70289147200012,-5.657647393999851],[132.7111108730002,-5.658623955999829],[132.72632897200018,-5.654961846999868],[132.7335718110002,-5.655043226999851],[132.740489129,-5.660088799999882],[132.74366295700005,-5.668389580999857],[132.74537194100017,-5.686455987999878],[132.75717207100016,-5.722914320999847],[132.75757897200006,-5.732110283999916],[132.762380405,-5.72242603999986],[132.76368248800023,-5.718438408999873],[132.77125084700018,-5.718438408999873],[132.77637780000012,-5.738457940999851],[132.7793074880001,-5.761000257999839],[132.7858992850001,-5.7797177059999],[132.80201256600014,-5.787367445999834],[132.81104576900006,-5.797051690999879],[132.81226647200018,-5.819594007999868],[132.80543053500017,-5.862481377999842],[132.7971297540001,-5.885837497999844],[132.78736412900017,-5.905857028999904],[132.7755639980002,-5.923923434999921],[132.76059004000015,-5.941582940999837],[132.74154707100016,-5.950372002999899],[132.73072350400017,-5.934177341999856],[132.72364342500012,-5.910332940999865],[132.71599368600008,-5.896661065999837],[132.71648196700008,-5.906996351999851],[132.71420332099999,-5.9183895809999],[132.70866946700008,-5.927504164999888],[132.69922936300023,-5.931329033999901],[132.69190514400023,-5.928806247999887],[132.6860457690001,-5.922051690999864],[132.67505944100006,-5.904066664999917],[132.67505944100006,-5.910902601999837],[132.66968834700018,-5.899997653999861],[132.66781660200004,-5.888116143999824],[132.66822350400003,-5.862481377999842],[132.66700280000012,-5.857517184999891],[132.664805535,-5.855157158999845],[132.66236412900017,-5.852146091999841],[132.661387566,-5.845391533999901],[132.66342207100004,-5.838555596999882],[132.66797936300006,-5.836521091999856],[132.67269941499998,-5.836358330999886],[132.67505944100006,-5.835707289999931],[132.67164147200006,-5.783379815999851],[132.67448978000016,-5.760023695999863],[132.68873131600017,-5.760023695999863],[132.683360222,-5.749118747999873],[132.67505944100006,-5.712172132999839],[132.67017662900014,-5.711521091999884],[132.661387566,-5.711114190999879],[132.65503991000017,-5.708754164999917],[132.65796959700012,-5.701755466999842],[132.66041100400005,-5.697198174999897],[132.66195722700016,-5.691013278999918],[132.66236412900017,-5.684340101999865],[132.661387566,-5.678806247999859],[132.657481316,-5.677422783999873],[132.6504012380002,-5.67750416499986],[132.64380944100017,-5.67546965899983],[132.64087975400017,-5.667901299999869],[132.64193769600004,-5.648532809999864],[132.64087975400017,-5.643324476999865],[132.63412519600004,-5.633396091999856],[132.62761478000002,-5.625583591999869],[132.62232506600006,-5.616631768999838],[132.61980228000002,-5.602959893999895],[132.65691165500004,-5.620375257999868],[132.661387566,-5.623467705999857],[132.6753035820001,-5.612888278999904],[132.68783613399998,-5.600030205999886],[132.69752037900005,-5.597426039999888],[132.70289147200012,-5.616794528999904]]],[[[132.78939863399998,-5.552911065999879],[132.784922722,-5.561455987999821],[132.78980553500017,-5.557305596999868],[132.79737389400023,-5.553969007999839],[132.80518639400023,-5.552992445999862],[132.81104576900006,-5.555596612999864],[132.81185957099999,-5.565524997999873],[132.79737389400023,-5.609063408999887],[132.796722852,-5.625664971999853],[132.79932701900006,-5.641534112999878],[132.8045353520001,-5.656670830999872],[132.81275475400017,-5.671319268999881],[132.80746504000004,-5.679864190999908],[132.80543053500017,-5.684991143999824],[132.79786217500012,-5.680433851999879],[132.79200280000006,-5.674493096999853],[132.78785241000006,-5.666680596999853],[132.784922722,-5.657647393999851],[132.784922722,-5.672539971999896],[132.78052819100006,-5.680352471999896],[132.772797071,-5.682224216999855],[132.76368248800023,-5.678806247999859],[132.75847415500004,-5.670668226999837],[132.74317467500003,-5.630303643999881],[132.74317467500003,-5.604424737999864],[132.75082441500004,-5.573500257999825],[132.76531009200008,-5.545342705999843],[132.784922722,-5.527276299999826],[132.78980553500017,-5.535821221999839],[132.79127037900005,-5.544366143999865],[132.78939863399998,-5.552911065999879]]],[[[132.34620201900023,-5.535902601999823],[132.3611759770001,-5.540297132999811],[132.38070722700016,-5.534112237999835],[132.3776147800002,-5.544203382999811],[132.37142988400004,-5.554131768999894],[132.36329186300011,-5.562920830999872],[132.35352623800023,-5.568942966999869],[132.34001712300008,-5.573663018999881],[132.33432050900004,-5.572930596999853],[132.33155358200023,-5.568291924999826],[132.31739342500012,-5.55103932099982],[132.3088485040001,-5.535739841999855],[132.30713951900012,-5.52117278399983],[132.31861412900003,-5.513604424999882],[132.34620201900023,-5.535902601999823]]],[[[127.55518639400012,-5.506605726999808],[127.5613712900001,-5.517266533999845],[127.55128014400012,-5.512383721999868],[127.55518639400012,-5.506605726999808]]],[[[127.55486087300008,-5.490492445999834],[127.55697675899998,-5.499769789999888],[127.54590905000023,-5.495293877999828],[127.55486087300008,-5.490492445999834]]],[[[123.80925540500019,-5.571954033999873],[123.81470787900004,-5.595635674999897],[123.79330488399998,-5.589125257999811],[123.77816816499998,-5.5726864559999],[123.75318444100017,-5.534112237999835],[123.73462975400017,-5.518324476999894],[123.71664472700004,-5.506524346999824],[123.7016707690001,-5.493096612999835],[123.69117272200005,-5.472751559999935],[123.70484459700016,-5.472751559999935],[123.73324628999997,-5.475274346999853],[123.74976647200016,-5.489841403999876],[123.76197350400005,-5.50595468499985],[123.77711022200005,-5.513604424999882],[123.80144290500013,-5.522719007999867],[123.808360222,-5.545017184999907],[123.80925540500019,-5.571954033999873]]],[[[134.5812280610002,-5.424248955999857],[134.62826582100004,-5.444756768999823],[134.63591556100008,-5.455254815999879],[134.648203972,-5.493096612999835],[134.65894616000006,-5.504652601999851],[134.68848717500006,-5.5238583309999],[134.69654381600006,-5.534112237999835],[134.68897545700003,-5.536879164999888],[134.6686304050002,-5.547784112999878],[134.67530358200023,-5.552178643999852],[134.67896569100017,-5.557875257999839],[134.68238366,-5.57512786299985],[134.67603600400017,-5.57512786299985],[134.67603600400017,-5.568942966999869],[134.65170332099999,-5.574639580999857],[134.6414494150001,-5.579196872999901],[134.63510175900015,-5.588799737999878],[134.644297722,-5.586195570999876],[134.67237389400012,-5.588799737999878],[134.68034915500007,-5.590915622999887],[134.69117272200018,-5.596368096999839],[134.71021569100017,-5.609144789999874],[134.73682701900012,-5.63795338299981],[134.75806725400017,-5.671319268999881],[134.73975670700023,-5.685153903999876],[134.72641035200004,-5.711195570999862],[134.71876061300006,-5.737562757999853],[134.71705162900017,-5.752618096999868],[134.72624759200008,-5.754327080999872],[134.73316491000006,-5.756605726999851],[134.73755944100006,-5.760023695999863],[134.73861738399998,-5.765557549999869],[134.73878014400023,-5.773532809999921],[134.73755944100006,-5.787367445999834],[134.731211785,-5.802911065999837],[134.71111087300008,-5.823663018999838],[134.70289147200006,-5.835707289999931],[134.7239689460001,-5.837823174999855],[134.7433374360002,-5.846937757999839],[134.75440514400023,-5.860772393999837],[134.75123131600014,-5.876722914999945],[134.75586998800011,-5.879327080999843],[134.76002037900005,-5.885674737999878],[134.764903191,-5.890394789999888],[134.7542423840001,-5.898370049999841],[134.73438561300006,-5.909844658999887],[134.72388756600012,-5.91773853999986],[134.72022545700023,-5.900567315999837],[134.70964603000016,-5.896172783999845],[134.69947350400005,-5.902601820999862],[134.69654381600006,-5.91773853999986],[134.70289147200006,-5.925957940999851],[134.72779381600017,-5.936944268999824],[134.73755944100006,-5.945000908999845],[134.72706139400015,-5.944756768999895],[134.72388756600012,-5.945000908999845],[134.73609459700018,-5.969496351999879],[134.72095787900017,-5.971612237999892],[134.69532311300011,-5.962172132999867],[134.67603600400017,-5.951836846999868],[134.66846764400012,-5.944756768999895],[134.66277103000007,-5.938164971999839],[134.65430748800011,-5.933282158999859],[134.63884524800008,-5.931329033999901],[134.62598717500023,-5.933038018999824],[134.614512566,-5.937432549999897],[134.60572350400005,-5.943942966999884],[134.6010848320001,-5.951836846999868],[134.6425887380001,-5.947523695999862],[134.65699303500017,-5.953871351999808],[134.66236412900003,-5.976006768999866],[134.67066491,-5.986748955999886],[134.71143639400006,-6.020277601999837],[134.727305535,-6.027601820999834],[134.76514733200023,-6.076836846999839],[134.77222741,-6.089613539999873],[134.76823978000002,-6.112969658999873],[134.75464928500017,-6.135511976999865],[134.7360132170002,-6.153985283999886],[134.71705162900017,-6.164727471999896],[134.71314537900017,-6.16171640399989],[134.71021569100017,-6.160088799999869],[134.70289147200006,-6.157891533999873],[134.7014266290001,-6.170586846999838],[134.69727623800023,-6.18084075299987],[134.6910913420002,-6.188083591999884],[134.74073326900012,-6.171156507999811],[134.75806725400017,-6.157891533999873],[134.75814863400015,-6.167901299999868],[134.75660241000006,-6.175957940999893],[134.753184441,-6.182793877999828],[134.74781334700006,-6.189060153999861],[134.74366295700023,-6.198825778999904],[134.75131269600016,-6.2191708309999],[134.74781334700006,-6.229913018999824],[134.73959394600013,-6.241957289999917],[134.7208764980002,-6.281833591999899],[134.71705162900017,-6.297946872999873],[134.7018335300002,-6.321872653999918],[134.63021894600016,-6.35125090899983],[134.6077580090001,-6.369561455999885],[134.58366946700008,-6.352308851999879],[134.57056725400017,-6.348809502999899],[134.55933678500017,-6.355889580999857],[134.55372155000006,-6.355889580999857],[134.54037519600016,-6.338067315999879],[134.53581790500002,-6.335381768999895],[134.53484134200008,-6.331231377999869],[134.51628665500007,-6.313897393999881],[134.51156660200004,-6.311618747999901],[134.50196373800023,-6.299248955999872],[134.45923912900005,-6.278415622999887],[134.449473504,-6.263767184999877],[134.437754754,-6.2640927059999],[134.37794030000023,-6.239353122999916],[134.37159264400023,-6.237562757999839],[134.36890709700006,-6.233168226999865],[134.3673608730002,-6.227959893999866],[134.36451256600017,-6.223077080999886],[134.358653191,-6.219821872999844],[134.35401451900012,-6.221368096999882],[134.34937584700018,-6.224541924999855],[134.34376061300006,-6.226169528999876],[134.3335067070002,-6.221449476999865],[134.32667076900012,-6.210625908999873],[134.32146243600002,-6.198174737999864],[134.31609134200008,-6.189060153999861],[134.29135175899998,-6.156345309999935],[134.27662194099997,-6.119317315999908],[134.27588951900006,-6.083591403999876],[134.29249108200023,-6.054864190999822],[134.3120223320001,-6.04713307099982],[134.33057701900012,-6.050388278999861],[134.34888756600017,-6.050876559999849],[134.36768639400023,-6.03435637799987],[134.36931399800008,-6.0238583309999],[134.33326256600012,-6.026055596999882],[134.31299889400006,-6.027601820999834],[134.30176842500006,-6.016289971999853],[134.30567467500006,-6.001234632999839],[134.3151147800002,-5.983982028999918],[134.31910241000017,-5.966078382999868],[134.31226647200006,-5.954359632999882],[134.28809655000023,-5.923923434999921],[134.28882897200018,-5.91773853999986],[134.29916425899998,-5.913018487999849],[134.31251061300011,-5.901950778999904],[134.32252037900017,-5.889418226999823],[134.32349694100003,-5.868259372999901],[134.36036217500012,-5.849541924999841],[134.35401451900012,-5.835707289999931],[134.35401451900012,-5.828301690999851],[134.37647545700008,-5.805596612999821],[134.3782658210001,-5.793715101999865],[134.36150149800008,-5.780531507999811],[134.35238691500015,-5.793389580999843],[134.3409936860002,-5.804294528999904],[134.33090254000015,-5.803969007999881],[134.32667076900012,-5.783949476999823],[134.3182072270001,-5.772556247999859],[134.29916425899998,-5.768243096999853],[134.26514733200017,-5.766859632999868],[134.24789472700016,-5.760430596999868],[134.23267662900017,-5.750909112999864],[134.2065535820002,-5.729099216999913],[134.2019962900001,-5.712497653999861],[134.21550540500007,-5.695896091999899],[134.23731530000012,-5.683282158999916],[134.25782311300023,-5.678806247999859],[134.27719160200016,-5.685723565999851],[134.30974368600002,-5.712579033999845],[134.33008873800023,-5.718438408999873],[134.351817254,-5.714450778999904],[134.35873457099999,-5.703545830999829],[134.36068769600016,-5.688409112999835],[134.36768639400023,-5.671319268999881],[134.37818444100012,-5.661797783999887],[134.39185631600006,-5.652113539999917],[134.404063347,-5.640883070999834],[134.40919030000012,-5.626885674999869],[134.4124455090001,-5.613946221999868],[134.45704186300023,-5.534112237999835],[134.46265709700003,-5.552829684999907],[134.47250410200016,-5.557875257999839],[134.48316491,-5.552829684999907],[134.49122155000023,-5.540948174999855],[134.49480228000013,-5.543226820999833],[134.50473066500004,-5.547784112999878],[134.50586998800023,-5.528252862999892],[134.50505618600002,-5.517754815999822],[134.50196373800023,-5.510349216999842],[134.49463951900023,-5.500746351999865],[134.49203535200016,-5.495782158999901],[134.49122155000023,-5.448174737999835],[134.49252363400015,-5.441827080999886],[134.49659264400012,-5.436130466999913],[134.5021264980002,-5.431735934999921],[134.50831139400006,-5.429375908999873],[134.51547285200004,-5.42945728999986],[134.51929772200006,-5.432305596999896],[134.52247155000012,-5.436293226999879],[134.52711022200006,-5.440036716999899],[134.53972415500013,-5.440606377999869],[134.5678817070001,-5.427829684999921],[134.5812280610002,-5.424248955999857]]],[[[127.80339603000006,-5.407647393999894],[127.79004967500023,-5.409600518999851],[127.79851321700019,-5.400160414999931],[127.80339603000006,-5.407647393999894]]],[[[127.77906334700016,-5.342868747999887],[127.78516686300006,-5.352959893999865],[127.7768660820001,-5.348809502999828],[127.77906334700016,-5.342868747999887]]],[[[131.97510826900023,-5.387465101999879],[131.96558678500006,-5.388767184999878],[131.9594832690002,-5.372979424999826],[131.96241295700005,-5.343519789999931],[131.97738691500004,-5.323337497999915],[131.9865014980002,-5.317640882999839],[131.9972436860002,-5.312432549999841],[132.00863691500015,-5.312758070999863],[132.01628665500016,-5.330824476999879],[132.00033613399998,-5.373223565999865],[131.99203535200004,-5.3773739559999],[131.98519941499998,-5.377862237999892],[131.98072350400005,-5.379652601999879],[131.97510826900023,-5.387465101999879]]],[[[133.04704837300008,-5.648614190999837],[133.03353925899998,-5.654392184999891],[133.02711022200018,-5.662692966999884],[133.0171004570001,-5.678806247999859],[132.9972436860002,-5.699965101999851],[132.97543379000004,-5.728692315999907],[132.95753014400006,-5.761407158999845],[132.94939212300008,-5.794203382999854],[132.95093834700012,-5.81308359199987],[132.95850670700023,-5.844333591999842],[132.95679772200006,-5.862481377999842],[132.94947350400005,-5.874281507999824],[132.85678144599999,-5.98943450299987],[132.84229576900023,-5.996840101999851],[132.84050540500007,-5.984958591999899],[132.90007571700005,-5.81389739399988],[132.92351321700008,-5.786716403999876],[132.9288843110002,-5.777113539999903],[132.93116295700005,-5.714939059999892],[132.9288843110002,-5.698011976999808],[132.96412194100006,-5.640720309999864],[132.980316602,-5.644626559999863],[132.99659264400023,-5.651543877999856],[133.0040796230002,-5.647149346999882],[133.01490319100012,-5.607110283999845],[133.01856530000023,-5.566176039999917],[133.02295983200023,-5.548516533999901],[133.03874759200008,-5.513604424999882],[133.0758569670002,-5.398044528999918],[133.09669030000018,-5.366306247999873],[133.10434003999998,-5.350681247999887],[133.11011803500017,-5.310967705999872],[133.12134850400017,-5.294610283999859],[133.13786868600002,-5.287286065999865],[133.15609785200004,-5.288344007999824],[133.1726180350001,-5.296482028999918],[133.18433678500014,-5.310316664999917],[133.1881616550002,-5.32480234199987],[133.18873131600017,-5.344496351999823],[133.18433678500014,-5.361993096999868],[133.172129754,-5.369724216999884],[133.16537519600013,-5.380140882999868],[133.1389266290001,-5.52117278399983],[133.11329186300023,-5.595635674999897],[133.1059676440001,-5.605645440999879],[133.07960045700023,-5.631768487999834],[133.06910241000006,-5.637139580999886],[133.06080162900017,-5.639336846999882],[133.04704837300008,-5.648614190999837]]],[[[102.38249759200008,-5.466241143999851],[102.3901473320001,-5.476983330999857],[102.3787541020001,-5.48219166499986],[102.33236738400015,-5.472263278999847],[102.32447350400011,-5.468926690999822],[102.32129967500012,-5.472914320999806],[102.31364993600017,-5.472914320999806],[102.30469811300006,-5.471856377999842],[102.29786217500006,-5.472751559999935],[102.29420006600012,-5.47747161299985],[102.28353925900015,-5.499281507999811],[102.2703556650001,-5.488702080999843],[102.25733483200004,-5.457207940999837],[102.24610436300006,-5.441582940999851],[102.12769616000006,-5.349541924999855],[102.09864342500005,-5.33489348799985],[102.14722741,-5.289646091999913],[102.17204837300007,-5.280368747999859],[102.20101972700016,-5.287204684999878],[102.22828209700006,-5.301853122999886],[102.24170983200005,-5.306084893999909],[102.25977623800006,-5.307549737999864],[102.2739363940001,-5.312269789999874],[102.286387566,-5.323011976999894],[102.30404707100008,-5.342380466999898],[102.36589603000019,-5.361260674999841],[102.3943791020001,-5.37590911299985],[102.4065047540001,-5.403741143999909],[102.40023847700016,-5.418389580999829],[102.38648522200006,-5.43027109199987],[102.36622155000012,-5.441582940999851],[102.36963951900006,-5.453301690999837],[102.38249759200008,-5.466241143999851]]],[[[123.6337996750001,-5.366875908999845],[123.61915123800011,-5.37656015399989],[123.590586785,-5.374118747999859],[123.5721134770001,-5.366143487999821],[123.55925540500007,-5.351332289999931],[123.52295983200017,-5.277439059999935],[123.51986738400011,-5.251722914999888],[123.53972415500019,-5.245538018999824],[123.56348717500006,-5.252618096999882],[123.59555097700014,-5.256768487999821],[123.62378991000006,-5.266534112999864],[123.63591556100012,-5.290785414999945],[123.63835696700008,-5.343519789999931],[123.6337996750001,-5.366875908999845]]],[[[121.91944420700023,-5.095472914999945],[121.93702233200005,-5.095879815999851],[121.94418379000004,-5.091892184999878],[121.95948326900005,-5.071221612999864],[121.96957441500015,-5.066989841999842],[121.97730553500016,-5.070489190999837],[121.982676629,-5.079034112999849],[121.99659264400012,-5.137872002999841],[122.00977623800021,-5.153741143999866],[122.03337649800008,-5.149997653999918],[122.04509524800007,-5.165134372999915],[122.0561629570001,-5.175713799999882],[122.06421959700006,-5.1898739559999],[122.06739342500012,-5.215020440999879],[122.06421959700006,-5.223565362999906],[122.05713951900006,-5.226657809999892],[122.05014082099997,-5.2308895809999],[122.04688561300017,-5.242364190999851],[122.05176842500012,-5.26978932099982],[122.05298912900004,-5.432305596999896],[122.04688561300017,-5.451592705999843],[122.031993035,-5.465264580999872],[122.01441491000017,-5.465264580999872],[121.99675540500006,-5.462823174999841],[121.98145592500012,-5.468926690999822],[121.96827233200023,-5.467950127999856],[121.93921959700018,-5.420993747999916],[121.92351321700018,-5.403741143999909],[121.90992272200005,-5.399509372999887],[121.90056399800012,-5.399102471999882],[121.89210045700004,-5.397719007999811],[121.88184655000023,-5.390232028999932],[121.87696373800006,-5.381931247999858],[121.86841881600006,-5.359958591999842],[121.82715905000012,-5.300713799999855],[121.8068139980002,-5.259860934999907],[121.81373131599999,-5.249688408999859],[121.81218509200008,-5.22096119599982],[121.81723066500003,-5.208265882999854],[121.82618248800023,-5.197686455999886],[121.83375084700018,-5.18531666499986],[121.83887780000012,-5.172539971999825],[121.84083092500023,-5.160088799999897],[121.84636478000007,-5.152764580999886],[121.87256920700013,-5.148532809999863],[121.88184655000023,-5.143731377999885],[121.88152103000002,-5.133884372999859],[121.87305748800006,-5.122247002999856],[121.85385175900002,-5.102146091999899],[121.86491946700006,-5.086521091999913],[121.88038170700011,-5.072198174999841],[121.89795983200023,-5.060967705999843],[121.91602623800023,-5.054375908999859],[121.91016686300011,-5.07057057099982],[121.91089928500006,-5.085707289999903],[121.91944420700023,-5.095472914999945]]],[[[115.80681399800008,-4.821872653999861],[115.78638756600017,-4.827813408999972],[115.77344811300006,-4.815118096999839],[115.79525800900002,-4.786309502999899],[115.85181725400004,-4.739027601999837],[115.85181725400004,-4.745538018999837],[115.84701582100016,-4.757745049999897],[115.84587649800018,-4.764092705999843],[115.84669030000023,-4.768649997999887],[115.84913170700004,-4.774672132999882],[115.85303795700017,-4.779473565999879],[115.85808353000017,-4.779961846999868],[115.80681399800008,-4.821872653999861]]],[[[131.74870853000002,-4.759047132999896],[131.73650149800008,-4.766289971999839],[131.72901451900006,-4.754652601999823],[131.72510826900006,-4.731703382999839],[131.72608483200017,-4.707777601999865],[131.73308353000007,-4.693047783999873],[131.7501733730002,-4.710544528999918],[131.7544051440001,-4.736504815999822],[131.74870853000002,-4.759047132999896]]],[[[122.77857506600006,-4.949476820999834],[122.77312259200018,-4.958184502999827],[122.76539147200018,-4.957940362999878],[122.75391686300021,-4.953871351999823],[122.74350019600014,-4.952813408999859],[122.73902428500017,-4.961846612999878],[122.73487389400023,-4.974704684999892],[122.72494550900015,-4.989678643999838],[122.66138756600004,-5.055352471999839],[122.64340254000004,-5.07878997199991],[122.60425866000018,-5.159926039999931],[122.60124759200008,-5.180922132999868],[122.606618686,-5.190524997999858],[122.61866295700023,-5.191176039999903],[122.63062584700016,-5.190199476999837],[122.63599694100004,-5.194268487999878],[122.63453209700019,-5.206963799999855],[122.62989342500023,-5.216729424999883],[122.62240644600014,-5.222832940999878],[122.59815514400006,-5.228448174999869],[122.60645592500023,-5.235772393999881],[122.62916100399998,-5.245538018999824],[122.647715691,-5.256117445999877],[122.65235436300021,-5.261814059999849],[122.6564233730002,-5.273370049999883],[122.65853925900002,-5.296482028999918],[122.65544681100003,-5.322523695999806],[122.64747155000016,-5.344903252999828],[122.63599694100004,-5.355401299999897],[122.62452233200005,-5.342461846999882],[122.61597741000016,-5.356052341999841],[122.61060631600013,-5.38046640399989],[122.60865319100006,-5.400485934999864],[122.6054793630001,-5.413018487999864],[122.59839928500004,-5.420098565999822],[122.59148196700002,-5.420668226999893],[122.58814537899998,-5.413995049999841],[122.58448326900022,-5.409112237999864],[122.57618248800006,-5.414320570999863],[122.56373131600007,-5.427666924999869],[122.54346764400024,-5.428806247999901],[122.54086347700003,-5.387953382999868],[122.54281660199999,-5.338799737999834],[122.53663170700023,-5.315036716999842],[122.52881920700021,-5.306410414999931],[122.52084394600014,-5.291680596999838],[122.51148522200005,-5.28671640399989],[122.49878991000016,-5.307549737999864],[122.49691816500004,-5.318291924999883],[122.49919681100019,-5.339288018999824],[122.49878991000016,-5.349216403999918],[122.48511803500006,-5.383233330999857],[122.46859785200016,-5.396416924999897],[122.45020592500012,-5.399346612999835],[122.43197675900015,-5.392673434999864],[122.41627037900017,-5.37656015399989],[122.40723717500018,-5.353204033999901],[122.41488691499998,-5.339288018999824],[122.45101972700004,-5.321221612999906],[122.45101972700004,-5.315036716999842],[122.43360436300016,-5.315036716999842],[122.42156009200006,-5.311944268999852],[122.41016686300011,-5.311944268999852],[122.39519290500007,-5.321221612999906],[122.38721764400012,-5.330661716999913],[122.38363691500003,-5.341566664999888],[122.38266035200016,-5.373142184999892],[122.37720787899998,-5.384942315999865],[122.36394290500017,-5.389825127999828],[122.31332441499998,-5.389580987999878],[122.30054772200006,-5.386976820999891],[122.29021243600008,-5.380791924999826],[122.27963300899998,-5.369724216999884],[122.28711998800016,-5.362888278999861],[122.27621503999997,-5.345961195999877],[122.27515709700006,-5.327569268999838],[122.28150475400017,-5.307793877999913],[122.30713951900022,-5.263929945999863],[122.31568444100007,-5.2426083309999],[122.32007897200005,-5.219496351999851],[122.32601972700014,-5.144707940999851],[122.33253014400022,-5.123793226999808],[122.3418074880001,-5.108982028999918],[122.35084069099999,-5.105075778999918],[122.37720787899998,-5.098239841999899],[122.38266035200016,-5.092461846999853],[122.38510175899997,-5.087172132999868],[122.40259850400004,-5.061781507999854],[122.39600670700005,-5.048435153999932],[122.39177493600008,-5.030450127999899],[122.38591556100017,-4.978773695999862],[122.37224368600008,-4.955010674999855],[122.36524498800007,-4.915459893999909],[122.35499108200015,-4.884860934999892],[122.34156334700016,-4.857679945999962],[122.32748457100004,-4.842054945999806],[122.32748457100004,-4.835219007999882],[122.34498131600016,-4.814629815999851],[122.36670983200021,-4.765801690999851],[122.38266035200016,-4.74586353999986],[122.40495853000017,-4.737888278999904],[122.47095787900005,-4.731377862999906],[122.49878991000016,-4.725355726999894],[122.52947024800008,-4.71005624799993],[122.60124759200008,-4.656426690999851],[122.65699303500017,-4.624281507999896],[122.69068444100017,-4.611748955999886],[122.71111087300002,-4.615492445999834],[122.72722415500012,-4.628106377999898],[122.73552493600017,-4.643731377999885],[122.75269615999999,-4.773207289999917],[122.75277753999997,-4.84433359199987],[122.75570722700004,-4.855726820999919],[122.77027428500004,-4.874281507999925],[122.77312259200018,-4.87957122199991],[122.77409915500007,-4.887790622999901],[122.77857506600006,-4.905043226999908],[122.78003991000017,-4.916599216999841],[122.78060957100016,-4.939060153999847],[122.77857506600006,-4.949476820999834]]],[[[129.77833092500012,-4.524509372999886],[129.77027428500017,-4.539320570999862],[129.75782311300017,-4.522556247999929],[129.76270592500023,-4.518812757999811],[129.77833092500012,-4.524509372999886]]],[[[129.94849694100006,-4.514336846999925],[129.94564863399998,-4.556084893999881],[129.93336022200006,-4.562920830999886],[129.91602623800023,-4.563897393999952],[129.89926191500004,-4.568291924999855],[129.89332116,-4.560235283999916],[129.88379967500012,-4.555596612999892],[129.87183678500017,-4.553887627999885],[129.85906009200002,-4.554782809999878],[129.87403405000018,-4.545830987999935],[129.91814212300008,-4.53720468499985],[129.92725670700023,-4.530450127999899],[129.9318139980002,-4.515069268999952],[129.94109134200008,-4.508884372999901],[129.94849694100006,-4.514336846999925]]],[[[131.68043053500006,-4.524021091999899],[131.66089928500006,-4.534274998],[131.65503991,-4.52564869599982],[131.61646569100006,-4.441582940999879],[131.60621178499997,-4.430433851999851],[131.613536004,-4.425225518999866],[131.61980228000007,-4.424493096999839],[131.6261499360002,-4.426853122999887],[131.6334741550002,-4.430433851999851],[131.64942467500012,-4.452406507999953],[131.67074629000015,-4.490166924999841],[131.68043053500006,-4.524021091999899]]],[[[123.21127363399998,-4.677504164999959],[123.21705162900017,-4.711195570999962],[123.21973717500022,-4.816664320999877],[123.21127363399998,-4.842054945999806],[123.19703209700016,-4.836846612999892],[123.188731316,-4.816582940999893],[123.18409264400005,-4.776543877999941],[123.18189537900011,-4.771905205999828],[123.17115319100017,-4.756036065999893],[123.16700280000023,-4.752618096999896],[123.15772545700011,-4.748467705999857],[123.15463300900002,-4.738539320999848],[123.15349368600006,-4.726983330999914],[123.1499129570001,-4.717950127999913],[123.12387129000004,-4.710219007999896],[123.10531660200004,-4.767266533999901],[123.08155358200011,-4.739027601999837],[123.07797285200003,-4.74342213299991],[123.07105553500006,-4.748304945999891],[123.06739342500006,-4.752618096999896],[123.05209394600004,-4.740329684999935],[123.04639733200021,-4.752862237999834],[123.04688561300024,-4.797051690999908],[123.04265384200018,-4.803317966999855],[123.02377363399998,-4.815118096999839],[123.01954186300017,-4.824639580999914],[123.01295006600016,-4.857110283999901],[123.01221764400023,-4.869317315999879],[123.01742597700016,-4.909844658999986],[123.01514733200005,-4.929375908999887],[122.98991946700012,-4.94508228999986],[122.97738691500004,-4.96217213299981],[122.96794681100017,-4.980889580999872],[122.96436608200021,-4.992852471999896],[122.96607506600006,-5.003838799999855],[122.96989993600008,-5.012139580999843],[122.974375847,-5.019219658999887],[122.97787519600003,-5.026462497999916],[122.98462975400004,-5.052504164999888],[122.98536217500006,-5.064873955999828],[122.98357181100017,-5.087823174999826],[122.97852623800023,-5.103285414999931],[122.95525149800001,-5.149997653999918],[122.94792728,-5.172133070999819],[122.9498804050002,-5.190199476999837],[122.96802819100016,-5.197686455999886],[122.98845462300008,-5.186700127999842],[123.0034285820001,-5.163262627999856],[123.0203556650001,-5.142185153999847],[123.04688561300024,-5.137465101999837],[123.05933678500004,-5.14413827899989],[123.06267337300007,-5.152764580999886],[123.0629988940001,-5.162041924999841],[123.06739342500006,-5.170505466999884],[123.10206139400017,-5.180922132999868],[123.10670006600017,-5.197686455999886],[123.11793053500011,-5.209161065999837],[123.1499129570001,-5.225030205999872],[123.188812696,-5.247816664999888],[123.20932050900014,-5.265394789999917],[123.21810957100004,-5.28378671699987],[123.21314537900017,-5.301690362999835],[123.20142662900017,-5.317071221999868],[123.17725670700005,-5.342380466999898],[123.15805097700003,-5.373793226999837],[123.1450301440001,-5.385430596999853],[123.10303795700023,-5.395277601999865],[123.06560306100017,-5.418389580999829],[123.04688561300024,-5.424248955999857],[123.030528191,-5.419528903999861],[123.01026451900012,-5.395684502999869],[122.99537194100004,-5.390232028999932],[122.97754967500006,-5.394219658999901],[122.89291425900015,-5.444268487999835],[122.87623131600006,-5.458428643999852],[122.86280358200021,-5.495863539999888],[122.86101321700008,-5.508070570999862],[122.86597741,-5.513604424999882],[122.87631269600006,-5.510918877999899],[122.90170332100003,-5.499932549999855],[122.91041100400005,-5.499281507999811],[122.91822350399998,-5.527439059999878],[122.89682050900015,-5.57122161299985],[122.84888756600004,-5.637139580999886],[122.82764733200005,-5.676202080999857],[122.81348717500023,-5.687920830999843],[122.790293816,-5.692478122999887],[122.78793379000015,-5.687269789999888],[122.78630618600002,-5.662692966999884],[122.783457879,-5.654229424999841],[122.77100670700005,-5.642022393999866],[122.767832879,-5.641371351999823],[122.76628665500006,-5.648125908999859],[122.75359134200018,-5.66578541499986],[122.75049889400023,-5.675388278999847],[122.74659264400022,-5.67937590899983],[122.73902428500017,-5.671319268999881],[122.73682701900012,-5.661065362999864],[122.73959394600016,-5.636895440999851],[122.73560631600017,-5.626885674999869],[122.72234134200002,-5.627699476999879],[122.69092858200011,-5.66578541499986],[122.67701256600004,-5.678806247999859],[122.65430748800011,-5.678480726999837],[122.63835696700008,-5.662204684999892],[122.56714928500017,-5.506931247999916],[122.6442977220001,-5.439385674999855],[122.65455162900005,-5.42473723799985],[122.65211022200018,-5.411390882999839],[122.62916100399998,-5.403741143999909],[122.63559004000005,-5.391045830999842],[122.66325931100012,-5.355401299999897],[122.67261803500007,-5.324151299999826],[122.67839603000013,-5.322442315999822],[122.68506920700005,-5.32293059699991],[122.69068444100017,-5.321221612999906],[122.70411217500022,-5.302911065999851],[122.72103925900015,-5.266208591999841],[122.73218834700016,-5.253024997999887],[122.75269615999999,-5.245863539999931],[122.77947024800015,-5.241143487999835],[122.80323326900012,-5.231866143999881],[122.81470787900015,-5.211358330999828],[122.81413821700018,-5.193129164999945],[122.80860436300006,-5.189385674999826],[122.76343834700006,-5.207940362999821],[122.75757897200016,-5.206719658999901],[122.76628665500006,-5.190850518999881],[122.75456790500019,-5.177666924999826],[122.75660241,-5.164727471999825],[122.77312259200018,-5.143731377999885],[122.77849368600006,-5.129571221999853],[122.77808678500006,-5.104587497999844],[122.78003991000017,-5.089043877999842],[122.79761803500006,-5.060642184999907],[122.80445397200008,-5.043633721999853],[122.80054772200005,-5.026462497999916],[122.79118899800018,-5.021254164999917],[122.77979576900023,-5.024997653999861],[122.76661217500013,-5.031182549999826],[122.75269615999999,-5.033868096999896],[122.76189212300018,-5.015394789999874],[122.81788170700021,-4.968682549999883],[122.82740319100004,-4.95232512799987],[122.83350670700011,-4.929131768999852],[122.83594811300021,-4.904392184999864],[122.83464603000007,-4.883070570999806],[122.83073978000007,-4.873223565999965],[122.82496178500011,-4.862888278999876],[122.82048587300002,-4.852227471999838],[122.82097415500013,-4.842054945999806],[122.82886803500016,-4.835870049999826],[122.8401798840001,-4.83464934699991],[122.85059655000022,-4.831149997999916],[122.85499108200023,-4.817803643999909],[122.84799238400016,-4.648858330999985],[122.85499108200023,-4.609551690999893],[122.869395379,-4.568291924999855],[122.89942467500023,-4.510023695999834],[122.90357506600012,-4.489190362999864],[122.90894616000016,-4.474541924999855],[122.9226180350001,-4.461602471999839],[123.01954186300017,-4.390232028999861],[123.04135175900004,-4.384372653999904],[123.0691024100001,-4.383233330999872],[123.08570397200006,-4.389092705999829],[123.06153405000023,-4.421319268999866],[123.06853274800012,-4.439629815999837],[123.08423912900011,-4.4561499979999],[123.1477970710001,-4.508477471999896],[123.16358483200023,-4.526788018999852],[123.19044030000012,-4.566827080999971],[123.20045006600012,-4.589043877999856],[123.20443769600014,-4.611748955999886],[123.20240319100004,-4.621514580999843],[123.1930444670002,-4.641371351999837],[123.19092858200011,-4.653008721999853],[123.19336998800023,-4.66285572699995],[123.19922936300006,-4.667413018999909],[123.20606530000012,-4.670830987999821],[123.21127363399998,-4.677504164999959]]],[[[133.55836022200006,-4.232028903999876],[133.60857181100016,-4.291761976999851],[133.62769616000017,-4.300225518999881],[133.60417728000002,-4.300713799999869],[133.57911217500012,-4.278497002999913],[133.55518639400017,-4.251722914999903],[133.53516686300011,-4.238702080999914],[133.52271569100017,-4.23992278399993],[133.49952233200023,-4.245049737999864],[133.487559441,-4.246189059999892],[133.4703882170002,-4.246026299999841],[133.46045983200008,-4.244073174999883],[133.45118248800023,-4.237888278999904],[133.4358830090001,-4.225192966999856],[133.42335045700003,-4.217380466999855],[133.39942467500012,-4.209893487999892],[133.3881942070001,-4.20468515399989],[133.37671959700015,-4.193536065999879],[133.36939537900017,-4.182386976999865],[133.36019941499998,-4.173923434999907],[133.34376061300011,-4.170505466999899],[133.33139082100016,-4.165215752999842],[133.32374108200023,-4.15292734199987],[133.32007897200018,-4.137627862999906],[133.31934655000023,-4.124200127999913],[133.32422936300011,-4.108330987999977],[133.33448326900023,-4.109063408999916],[133.40756269600004,-4.160332940999865],[133.41260826900023,-4.162286065999907],[133.41863040500007,-4.16301848799985],[133.42139733200023,-4.165948174999869],[133.42676842500006,-4.179864190999851],[133.42904707100016,-4.184177341999841],[133.44597415500002,-4.196954033999887],[133.45606530000012,-4.202406507999825],[133.46664472700013,-4.20468515399989],[133.49431399800008,-4.206638278999932],[133.51970462300008,-4.212172132999868],[133.54127037900014,-4.220879815999936],[133.55836022200006,-4.232028903999876]]],[[[131.391856316,-4.153497002999842],[131.3854272800002,-4.156182549999912],[131.35271243600008,-4.133396091999899],[131.30502363400004,-4.115329684999878],[131.29656009200008,-4.109063408999916],[131.28923587300008,-4.100030205999914],[131.28370201900023,-4.089776299999883],[131.28052819100017,-4.079522393999865],[131.2804468110002,-4.074802341999941],[131.28150475400005,-4.070000908999872],[131.28419030000012,-4.066094658999873],[131.28834069100017,-4.063409112999892],[131.2946069670002,-4.063164971999853],[131.2985132170002,-4.065850518999838],[131.30437259200008,-4.074883721999925],[131.31763756600017,-4.088067315999879],[131.36597741000008,-4.122165622999887],[131.38550866000017,-4.140232028999904],[131.391856316,-4.153497002999842]]],[[[131.2475692070001,-4.042657158999887],[131.23959394600016,-4.047051690999879],[131.22608483200005,-4.038344007999896],[131.2164819670002,-4.018649997999858],[131.21078535200004,-3.995782158999929],[131.2091577480002,-3.978936455999928],[131.2350366550002,-3.987562757999854],[131.24048912900003,-3.991794528999861],[131.245371941,-3.996840101999808],[131.24870853,-4.002862237999906],[131.24984785200016,-4.009698174999912],[131.25049889400012,-4.032321872999887],[131.2475692070001,-4.042657158999887]]],[[[123.08179772200006,-4.001234632999882],[123.10230553499999,-4.012465101999965],[123.11890709700018,-4.009698174999912],[123.13502037900005,-4.000176690999837],[123.158457879,-3.993096612999949],[123.18360436300011,-3.990329684999907],[123.20443769600014,-3.992933851999894],[123.23414147200012,-4.01531340899983],[123.25123131600006,-4.050876559999892],[123.25342858200021,-4.089776299999883],[123.23878014400022,-4.122165622999887],[123.19629967500023,-4.187676690999922],[123.16928144600004,-4.221123955999886],[123.13624108200015,-4.238702080999914],[123.08659915500007,-4.234470309999907],[123.04476972700004,-4.209649346999853],[123.00912519600016,-4.171970309999864],[122.97787519600003,-4.128838799999855],[122.96876061300013,-4.108493747999944],[122.95972741,-4.065118096999896],[122.95069420700013,-4.047051690999879],[122.96119225400015,-4.034844658999901],[122.9865828790001,-4.017754815999864],[122.99838300900015,-4.006605726999837],[123.01563561300006,-3.981133721999839],[123.02816816500014,-3.973809502999827],[123.04688561300024,-3.978692315999978],[123.06185957100014,-3.986504815999893],[123.08179772200006,-4.001234632999882]]],[[[131.4532983730002,-4.055759372999859],[131.44239342500012,-4.065118096999896],[131.42188561300017,-4.062920830999985],[131.40064537900017,-4.047051690999879],[131.39128665500004,-4.031508070999876],[131.37012780000023,-3.985284112999878],[131.36597741000008,-3.968438408999873],[131.36963951900023,-3.96217213299991],[131.37769616000017,-3.957126559999892],[131.39437910200004,-3.951592705999872],[131.41602623800011,-3.958591403999847],[131.42701256600017,-3.983330987999835],[131.43433678500017,-4.013604424999826],[131.44483483200023,-4.036716403999876],[131.4532983730002,-4.055759372999859]]],[[[127.24136752900009,-3.91081651099995],[127.22697055400018,-3.917062727999934],[127.20952868300006,-3.914779310999918],[127.19072684300014,-3.911730995999861],[127.17255262400023,-3.910109891999837],[127.16049974600006,-3.899030720999832],[127.14508612100022,-3.88498341799992],[127.13604776400004,-3.869858900999859],[127.13793300500018,-3.846851729999869],[127.16521243600008,-3.814141533999873],[127.1818953790001,-3.808526299999883],[127.19898522200005,-3.81031666499986],[127.23462975400011,-3.82105885199988],[127.24611869600008,-3.836224612999885],[127.25320002800005,-3.849206734999868],[127.25602091500004,-3.874534031999886],[127.24952506000001,-3.890279744999916],[127.24263984400002,-3.900407626999893],[127.24136752900009,-3.91081651099995]]],[[[128.7971297540001,-3.693780205999843],[128.77930748800011,-3.702243747999958],[128.76172936300006,-3.699639580999871],[128.74854576900023,-3.683851820999919],[128.74634850400005,-3.659763278999904],[128.75798587300008,-3.643649997999929],[128.77686608200005,-3.637302341999983],[128.79623457099999,-3.642836195999834],[128.7971297540001,-3.652520440999964],[128.79965254000004,-3.661390882999839],[128.80420983200023,-3.669366143999965],[128.81055748800006,-3.676446221999853],[128.7971297540001,-3.693780205999843]]],[[[123.17709394599999,-3.601006768999895],[123.15992272200018,-3.603773695999948],[123.13941491000004,-3.602715752999898],[123.12940514400023,-3.618340752999885],[123.11988366000004,-3.629164320999891],[123.09880618600012,-3.619235934999878],[123.07837975400005,-3.602634372999916],[123.06666100400017,-3.589613540000016],[123.06169681100019,-3.580254815999908],[123.06104576900022,-3.570896091999956],[123.07081139400012,-3.566582940999865],[123.08277428500007,-3.564222914999916],[123.14063561300023,-3.539157809999906],[123.1572371750001,-3.544854424999897],[123.16976972699999,-3.558282158999972],[123.17725670700005,-3.57398853999986],[123.17709394599999,-3.601006768999895]]],[[[128.43165123800006,-3.627048434999878],[128.39291425900015,-3.642836195999834],[128.38754316500007,-3.626885674999912],[128.39291425900015,-3.606622002999984],[128.40137780000006,-3.586358330999885],[128.40601647200012,-3.570245049999911],[128.4069116550002,-3.556817315999837],[128.41016686300023,-3.543226820999877],[128.41651451900006,-3.531345309999921],[128.42709394600004,-3.52271900799991],[128.46143639400006,-3.512139580999872],[128.477305535,-3.519789320999891],[128.51270592500012,-3.526055596999853],[128.5288192070001,-3.532972914999945],[128.54281660200016,-3.547458591999899],[128.55884850400005,-3.57048919099995],[128.56381269599999,-3.59189218499999],[128.54590905000023,-3.601332289999917],[128.52898196700008,-3.604424737999821],[128.49057050900015,-3.618584893999923],[128.44906660200004,-3.623142184999963],[128.43165123800006,-3.627048434999878]]],[[[122.30567467500018,-3.5707333309999],[122.29330488400004,-3.580824476999879],[122.28467858200023,-3.562920830999914],[122.29037519600003,-3.54119231599985],[122.30486087300008,-3.522067966999956],[122.32129967500023,-3.511895440999837],[122.33301842500023,-3.516696872999916],[122.344004754,-3.528985283999873],[122.35222415500019,-3.543877862999835],[122.35547936300021,-3.556573174999969],[122.34652754000004,-3.557305596999825],[122.32667076900012,-3.562269789999874],[122.30567467500018,-3.5707333309999]]],[[[128.32341556100013,-3.570245049999911],[128.32886803500017,-3.591729424999855],[128.33716881600006,-3.611586195999863],[128.33497155000023,-3.627211195999848],[128.3097436860002,-3.635430596999925],[128.303070509,-3.63396575299987],[128.28305097700013,-3.621758721999982],[128.26921634200008,-3.61581796699987],[128.26303144599999,-3.61500416499986],[128.25196373800023,-3.614922783999887],[128.2465926440001,-3.62037525799991],[128.25123131600006,-3.632582289999888],[128.27588951900012,-3.666192315999908],[128.27816816499998,-3.674411716999912],[128.27491295700023,-3.681084893999866],[128.25489342500006,-3.709567966999884],[128.23650149800002,-3.722263278999847],[128.21265709700006,-3.729261976999822],[128.1831160820001,-3.73162200299987],[128.16146894599999,-3.739027601999865],[128.146739129,-3.755059502999856],[128.12867272200018,-3.769626559999963],[128.097422722,-3.773207289999945],[128.10401451900012,-3.763767184999935],[128.12712649800002,-3.749444268999937],[128.13209069100012,-3.742282809999907],[128.1520288420002,-3.703057549999969],[128.20435631600017,-3.66814544099995],[128.22095787900005,-3.649102471999868],[128.202891472,-3.639336846999839],[128.183767123,-3.646905205999886],[128.14519290500007,-3.676446221999853],[128.10670006600017,-3.692071221999839],[128.0807397800002,-3.708184502999899],[128.05551191500004,-3.713311455999915],[128.04273522200018,-3.71803150799991],[128.02173912900005,-3.736423434999949],[128.00570722700016,-3.756768487999864],[127.98601321700019,-3.771579685],[127.95411217500005,-3.773207289999945],[127.93344160200014,-3.763441664999903],[127.9267684250001,-3.746840101999851],[127.9233504570001,-3.726006768999881],[127.91236412900005,-3.703057549999969],[127.91635175900004,-3.693942966999899],[127.9609481130001,-3.640313408999987],[127.98414147200005,-3.620538018999966],[128.0345158210001,-3.589043877999955],[128.04769941500004,-3.584730726999865],[128.06251061300011,-3.583591403999932],[128.1473087900001,-3.588474216999984],[128.15870201900023,-3.584649346999882],[128.24170983200023,-3.522149346999939],[128.28711998800011,-3.50457122199991],[128.33082116,-3.511895440999837],[128.349375847,-3.529473565999865],[128.34457441500004,-3.542087497999844],[128.33106530000023,-3.554131768999937],[128.32341556100013,-3.570245049999911]]],[[[128.66065514400006,-3.533379815999851],[128.67286217500023,-3.53980885199995],[128.68246504000004,-3.517022393999838],[128.69320722700004,-3.502048434999907],[128.70573978000007,-3.502536716999884],[128.72055097700004,-3.525567315999865],[128.72641035200016,-3.545993747999929],[128.72803795700005,-3.614922783999887],[128.70655358200023,-3.602959893999937],[128.68702233200005,-3.582207940999851],[128.66879316499995,-3.569268487999935],[128.65235436300011,-3.580824476999879],[128.65162194100017,-3.591485283999986],[128.6554468110002,-3.602146091999927],[128.65601647200006,-3.612399997999872],[128.64551842500006,-3.621758721999982],[128.63624108200023,-3.622816664999859],[128.62745201900023,-3.617608330999857],[128.61898847700004,-3.607517184999978],[128.61060631600006,-3.593926690999851],[128.61817467500012,-3.593926690999851],[128.60352623800011,-3.583428643999866],[128.59376061300023,-3.568617445999891],[128.585703972,-3.552992445999905],[128.56788170700023,-3.528008721999896],[128.55909264400003,-3.509372653999989],[128.56104576900023,-3.493747654],[128.58399498800011,-3.491469007999939],[128.5978296230002,-3.491794528999961],[128.60629316500015,-3.496677341999856],[128.62159264400012,-3.515720309999935],[128.6316837900001,-3.522556247999944],[128.66065514400006,-3.533379815999851]]],[[[132.68116295700023,-3.42343515399989],[132.70281009200014,-3.453301690999879],[132.71045983200023,-3.469496351999837],[132.71469160200016,-3.486993096999882],[132.71290123800011,-3.504164320999905],[132.70289147200012,-3.519301039999903],[132.68995201900012,-3.509535414999874],[132.67888431100008,-3.4958635399999],[132.67115319100006,-3.47942473799985],[132.66635175900015,-3.453383070999862],[132.66114342500018,-3.450616143999909],[132.64429772200018,-3.451104424999897],[132.63746178500006,-3.447523695999919],[132.6202905610001,-3.423760674999911],[132.62680097700004,-3.418389580999872],[132.64356530000023,-3.408623955999914],[132.65162194100017,-3.406019789999917],[132.66651451900012,-3.410251559999935],[132.68116295700023,-3.42343515399989]]],[[[122.44922936300023,-3.479750257999868],[122.43360436300016,-3.485284112999878],[122.42579186300007,-3.477308851999837],[122.41553795700023,-3.459649346999825],[122.40259850400004,-3.43059661299985],[122.40211022200006,-3.42050546699987],[122.403493686,-3.407972914999959],[122.40650475400005,-3.396172783999987],[122.41228274800018,-3.387790622999844],[122.4153751960001,-3.385430596999896],[122.41781660200004,-3.384535414999903],[122.4204207690001,-3.385186455999857],[122.42359459700016,-3.387465101999823],[122.42847741000006,-3.394301040000016],[122.43490644600014,-3.411390882999967],[122.43962649800007,-3.419040622999916],[122.46127363400015,-3.436130466999856],[122.46469160200016,-3.440850518999952],[122.46338951900006,-3.45224374799993],[122.45866946700006,-3.466973565999822],[122.44922936300023,-3.479750257999868]]],[[[116.39307701900006,-3.632419528999932],[116.385996941,-3.639580987999878],[116.37012780000012,-3.621351820999806],[116.33220462300008,-3.561700127999898],[116.32536868600006,-3.547621351999865],[116.32471764400013,-3.532972914999945],[116.33106530000022,-3.511895440999837],[116.35564212300002,-3.459730726999808],[116.35889733200011,-3.440850518999952],[116.36524498800021,-3.42913176899988],[116.39307701900006,-3.405857028999861],[116.39926191500015,-3.392754815999979],[116.40447024800001,-3.37460702899989],[116.41586347700003,-3.38176848799985],[116.43441816500005,-3.409763278999947],[116.43140709699999,-3.447523695999919],[116.41146894600004,-3.520928643999923],[116.40455162900004,-3.576836846999896],[116.39527428500017,-3.613457940999822],[116.39307701900006,-3.632419528999932]]],[[[127.53223717500012,-3.254489841999899],[127.53443444099999,-3.255791924999897],[127.56397545700005,-3.255791924999897],[127.58301842500016,-3.267998955999872],[127.61548912900007,-3.307386976999851],[127.62867272200012,-3.321872653999904],[127.6416121750001,-3.340264580999843],[127.64356530000025,-3.356052341999884],[127.62452233200018,-3.361748955999957],[127.60303795700023,-3.356866143999895],[127.56544030000023,-3.338474216999856],[127.51970462300018,-3.330254815999865],[127.50359134200009,-3.320082289999917],[127.49057050900014,-3.306817315999879],[127.4804793630001,-3.293389580999886],[127.48511803500006,-3.292087497999887],[127.50961347700014,-3.276543877999885],[127.51270592500022,-3.273614190999865],[127.52182050900004,-3.261814059999892],[127.52475019600016,-3.256117445999919],[127.52637780000006,-3.254327080999843],[127.52963300900002,-3.253350518999866],[127.53223717500012,-3.254489841999899]]],[[[116.12468509200019,-4.030368747999844],[116.11557050900004,-4.036716403999876],[116.09978274800008,-4.060642184999921],[116.09148196700008,-4.0668270809999],[116.09034264400022,-4.050551039999874],[116.08285566500008,-4.037774346999825],[116.07105553499999,-4.032891533999859],[116.05738366000017,-4.040704033999845],[116.05014082100014,-4.020196221999896],[116.05347741000017,-3.997816664999874],[116.06031334700016,-3.975355726999865],[116.06421959700019,-3.954522393999894],[116.06836998800021,-3.951104424999883],[116.077810092,-3.948337498],[116.08716881600016,-3.943536065999921],[116.09148196700008,-3.934340101999866],[116.08871504000004,-3.924737237999878],[116.07601972700016,-3.90984465899983],[116.07154381600019,-3.90300872199991],[116.06885826900012,-3.885511976999865],[116.077810092,-3.824476820999891],[116.07447350399998,-3.800876559999935],[116.06609134200008,-3.787041924999854],[116.04371178500006,-3.76580169099995],[116.025645379,-3.740166924999897],[116.01905358200021,-3.724867445999848],[116.01303144600003,-3.650485934999849],[116.01636803500017,-3.629164320999891],[116.04053795700004,-3.566338799999826],[116.0463973320001,-3.497491143999866],[116.05250084700012,-3.478692315999908],[116.09669030000006,-3.399672132999896],[116.11793053500017,-3.336114190999908],[116.11939537900007,-3.324151299999869],[116.12623131600004,-3.318617445999948],[116.15919030000012,-3.303643487999821],[116.17066491000006,-3.296807549999983],[116.22917728000013,-3.245538018999951],[116.24594160200004,-3.238213799999869],[116.25473066499998,-3.232598565999865],[116.26140384200006,-3.222588799999883],[116.26783287900017,-3.21884530999985],[116.27637780000005,-3.232028903999975],[116.27857506600017,-3.244724216999941],[116.27613366000006,-3.256280205999886],[116.27214603000006,-3.267754815999837],[116.25896243600013,-3.366631768999852],[116.26303144600008,-3.405531507999839],[116.2893986340001,-3.444268487999878],[116.30469811300021,-3.460137627999984],[116.31885826900022,-3.480401299999912],[116.32105553500004,-3.497735283999901],[116.27637780000005,-3.513604424999841],[116.27409915500013,-3.532891533999873],[116.28199303500016,-3.553643487999949],[116.2893986340001,-3.566582940999865],[116.29704837300018,-3.584730726999865],[116.2988387380001,-3.602146091999927],[116.29688561300023,-3.646091403999875],[116.30258222700004,-3.669854424999954],[116.30372155000023,-3.680108330999901],[116.30372155000023,-3.71803150799991],[116.30974368600006,-3.724541924999912],[116.32496178500004,-3.732028903999876],[116.33106530000022,-3.739027601999865],[116.33326256600004,-3.749769789999959],[116.32105553500004,-3.756931247999915],[116.31153405000022,-3.785739841999856],[116.29932701900005,-3.799086195999948],[116.2892358730002,-3.815606377999927],[116.2893986340001,-3.840915622999887],[116.29493248800011,-3.854587497999916],[116.30795332100008,-3.878594658999859],[116.31055748800006,-3.893324476999851],[116.30648847700004,-3.904473565999879],[116.29688561300023,-3.90797291499986],[116.28549238399997,-3.908298434999892],[116.27637780000005,-3.90984465899983],[116.26758873800023,-3.917901299999869],[116.26270592500023,-3.927015882999854],[116.25709069100004,-3.934665622999887],[116.24594160200004,-3.937758070999877],[116.23121178500006,-3.938083591999899],[116.22185306100017,-3.939629815999837],[116.21509850400015,-3.943780205999872],[116.20818118600006,-3.951348565999837],[116.20655358200021,-3.956719658999887],[116.20753014400012,-3.969496351999837],[116.20476321700008,-3.975274346999882],[116.19898522200012,-3.97926197699995],[116.183848504,-3.987074476999865],[116.18091881600017,-3.98935312299993],[116.17774498800011,-3.995293877999941],[116.17025800900015,-4.004001559999935],[116.153575066,-4.019707940999908],[116.14454186300011,-4.024102471999882],[116.12468509200019,-4.030368747999844]]],[[[127.778493686,-3.244235934999864],[127.76644941500004,-3.246270440999979],[127.74187259200019,-3.245700778999918],[127.6792098320001,-3.251641533999859],[127.658539259,-3.245700778999918],[127.64332115999999,-3.22437916499986],[127.65967858200023,-3.201429945999877],[127.68734785200004,-3.178317966999913],[127.70630944100006,-3.156345309999906],[127.74187259200019,-3.156345309999906],[127.75342858200021,-3.150567315999851],[127.75814863400016,-3.149509372999972],[127.76140384200019,-3.151543877999828],[127.76335696700002,-3.155938408999901],[127.76628665500007,-3.160414320999862],[127.77222741000017,-3.162530205999871],[127.78443444100004,-3.168715101999851],[127.78825931100008,-3.183282158999958],[127.78980553499999,-3.199639580999971],[127.7963973320001,-3.211521091999927],[127.78565514400005,-3.234307549999869],[127.778493686,-3.244235934999864]]],[[[100.5363875660001,-3.176853122999859],[100.52881920700004,-3.183526299999826],[100.5066837900001,-3.178399346999896],[100.49366295700011,-3.160251559999907],[100.49301191500014,-3.138278903999889],[100.50847415500007,-3.122165622999916],[100.50831139400012,-3.140801690999908],[100.51547285200016,-3.153903903999876],[100.5363875660001,-3.176853122999859]]],[[[126.87525475400015,-3.109470309999864],[126.89340254000015,-3.125583591999927],[126.91871178499999,-3.114678643999937],[126.93409264400022,-3.130547783999873],[126.95573978,-3.137790622999901],[126.9791772800002,-3.142266533999873],[127.00066165500002,-3.149509372999972],[127.03500410199997,-3.173516533999845],[127.05494225400017,-3.179457289999945],[127.08423912900011,-3.194268487999921],[127.09351647200005,-3.200778904],[127.10230553499999,-3.210381768999895],[127.10694420700023,-3.21884530999985],[127.10914147200005,-3.229424737999977],[127.11231530000012,-3.264418226999808],[127.11182701900012,-3.272067966999927],[127.10645592500023,-3.273044528999904],[127.09351647200005,-3.27239348799985],[127.08301842500006,-3.268161716999927],[127.06983483200021,-3.260918877999899],[127.05591881600004,-3.259535414999917],[127.042246941,-3.27239348799985],[127.04078209700006,-3.286716403999932],[127.046153191,-3.305352471999825],[127.05453535200016,-3.323011976999837],[127.06275475400015,-3.3344052059999],[127.06950931100017,-3.336683851999879],[127.08008873800023,-3.34880950299987],[127.09473717500018,-3.362074476999808],[127.113942905,-3.368584893999895],[127.124766472,-3.363213799999841],[127.13786868600019,-3.339776299999855],[127.14828535200016,-3.3344052059999],[127.15894616,-3.337172132999868],[127.19312584700018,-3.355564059999907],[127.23853600400015,-3.363213799999841],[127.25977623800006,-3.371189059999892],[127.26880944100019,-3.385918877999885],[127.26465905000022,-3.404717705999829],[127.24634850400017,-3.449965101999865],[127.24089603000006,-3.470961195999891],[127.24341881600006,-3.606052341999842],[127.2272241550002,-3.642836195999834],[127.20573978000019,-3.659600518999852],[127.18580162900011,-3.659926039999874],[127.16521243600008,-3.653415622999958],[127.14144941500015,-3.649102471999868],[127.12159264400022,-3.653252862999821],[127.00196373800021,-3.713799737999892],[126.99073326900023,-3.71803150799991],[126.98072350400005,-3.724541924999912],[126.95679772200018,-3.755629164999916],[126.94605553500017,-3.76580169099995],[126.90699955900003,-3.787341139999825],[126.82692928800006,-3.8100932899999],[126.77708639000015,-3.832694756999941],[126.74218531500016,-3.859378355999822],[126.71889610399998,-3.85485432199988],[126.69657344000008,-3.863792105999977],[126.67427504300022,-3.842502851999853],[126.65629280300006,-3.834851643999883],[126.58932542100004,-3.816639322999862],[126.55852750400017,-3.793291256999822],[126.52505747300019,-3.789916427999841],[126.43887944399998,-3.750449915999923],[126.38062584700006,-3.703057549999969],[126.36443118600008,-3.69719817499984],[126.32466369400008,-3.687644316999837],[126.27489558199997,-3.663260553999904],[126.25879663700002,-3.642255465999924],[126.24391844899999,-3.631398868999938],[126.20302084400012,-3.630993787999913],[126.17356062000025,-3.60252721299993],[126.16529381600019,-3.567966403999847],[126.14855361099998,-3.525500660999938],[126.08812775800018,-3.483623285999869],[126.06850725100016,-3.467379435999831],[126.05262796000002,-3.446320133999904],[126.04175866000006,-3.420098565999865],[126.04118899800008,-3.412855726999851],[126.0072264520002,-3.361011827999902],[125.99174240300023,-3.248191339999849],[126.01726321700012,-3.171156507999882],[126.03656216900005,-3.153592708999966],[126.0646085380001,-3.132931362999926],[126.09092117500019,-3.112098279999955],[126.11086722700021,-3.121706119999914],[126.12161522799995,-3.147897929999957],[126.13631850200002,-3.160623631999869],[126.1613439070002,-3.172316784999865],[126.18508540000018,-3.180893844999886],[126.20200119800019,-3.181841811999888],[126.22774030100011,-3.174758609999841],[126.22657311300006,-3.149509372999972],[126.25831139400023,-3.122002862999864],[126.29712975400005,-3.105889580999886],[126.42139733200011,-3.070489190999879],[126.72022545700021,-3.060153903999875],[126.8400171230002,-3.073663018999852],[126.85889733200023,-3.085870049999826],[126.87525475400015,-3.109470309999864]]],[[[127.98357181100006,-2.948825778999932],[127.96908613400002,-2.972263278999989],[127.9640405610002,-2.977634372999873],[127.9609481130001,-2.983493747999901],[127.950938347,-3.01091887799987],[127.94727623800006,-3.018487237999821],[127.93425540500019,-3.025567315999879],[127.91846764400023,-3.029229424999826],[127.83838951900016,-3.033298434999878],[127.82699629000004,-3.028985283999887],[127.82545006600017,-3.016534112999949],[127.83716881600006,-3.00188567499994],[127.85401451900022,-2.989434502999842],[127.86801191500004,-2.984307549999911],[127.87525475400004,-2.983005466999913],[127.879649285,-2.97942473799985],[127.88892662900017,-2.967217705999872],[127.89649498800011,-2.961846612999821],[127.90235436300016,-2.962497653999876],[127.90739993600019,-2.964532158999901],[127.91236412900005,-2.963799737999863],[127.92530358200021,-2.955173434999949],[127.9328719410001,-2.945977471999896],[127.93376712300021,-2.934014580999857],[127.92603600400017,-2.916680596999867],[127.95411217500005,-2.916680596999867],[127.96998131599999,-2.920179945999948],[127.98536217500023,-2.929457289999917],[127.99439537900015,-2.939060153999975],[127.99154707100004,-2.943454684999878],[127.98357181100006,-2.948825778999932]]],[[[106.86589603000019,-3.026543877999856],[106.8611759770001,-3.028985283999887],[106.8157658210001,-3.018487237999821],[106.79859459700018,-3.011000257999854],[106.75806725400017,-2.978204033999845],[106.72266686300004,-2.966078382999839],[106.72559655000006,-2.956231377999828],[106.73406009200019,-2.946547132999868],[106.73829186300006,-2.943454684999878],[106.74561608200005,-2.926934502999899],[106.74952233200005,-2.923109632999967],[106.77222741000017,-2.907321872999844],[106.7923283210001,-2.896416924999869],[106.81251061300006,-2.892185153999847],[106.82642662900005,-2.903008721999925],[106.84351647200018,-2.911879164999888],[106.88990319100006,-2.919854424999926],[106.90894616000006,-2.929782809999935],[106.91570071700008,-2.950941664999931],[106.89079837300002,-2.994886976999879],[106.895274285,-3.018487237999821],[106.86589603000019,-3.026543877999856]]],[[[107.09075137900007,-2.9029998339999],[107.08375084700018,-2.909844658999859],[107.06999759200008,-2.907484632999811],[107.05958092500006,-2.901462497999887],[107.04437189200014,-2.896928103999883],[107.03369812700012,-2.8885747839999],[107.0170756830001,-2.880205997999894],[107.03260859400021,-2.858870155999895],[107.0457462900001,-2.84075286299985],[107.0594181650001,-2.831963799999883],[107.06104576900006,-2.827243747999873],[107.06462649800018,-2.822523695999948],[107.07349694100006,-2.820489190999922],[107.07789147200006,-2.823337497999958],[107.08621031600009,-2.840005214999806],[107.09923179600005,-2.859058011999906],[107.09676088100016,-2.885194687999928],[107.09075137900007,-2.9029998339999]]],[[[107.49488366000006,-2.876397393999894],[107.48096764400006,-2.898695570999934],[107.46290123800006,-2.915948174999841],[107.42798912900005,-2.925713799999883],[107.4101473080001,-2.947565211999901],[107.39845358700009,-2.938427947999898],[107.36924703000008,-2.905168980999874],[107.34129222600008,-2.88685845099991],[107.34848817300022,-2.875167492999921],[107.36605373000006,-2.882383951999969],[107.38105223200009,-2.875274658999984],[107.39503014400006,-2.868910414999917],[107.40023847700014,-2.850762627999828],[107.42579186300011,-2.835219007999825],[107.458181186,-2.82447682099999],[107.48438561300004,-2.820489190999922],[107.49519204700007,-2.823489319999908],[107.49383832500003,-2.83782159599987],[107.49773196700008,-2.845147393999838],[107.50473066500015,-2.854668877999913],[107.49488366000006,-2.876397393999894]]],[[[129.54102623800023,-2.780043226999893],[129.543711785,-2.789727471999939],[129.54525800900012,-2.79355234199987],[129.54957116000014,-2.796644789999945],[129.554942254,-2.799004815999908],[129.61182701900023,-2.806817315999979],[129.753754102,-2.866469007999896],[129.76612389400023,-2.868910414999917],[129.77808678500017,-2.875420830999829],[129.79802493600008,-2.906426690999851],[129.81055748800017,-2.916680596999867],[129.825450066,-2.917657158999845],[129.83814537900017,-2.912692966999899],[129.84986412900017,-2.906182549999983],[129.86207116000006,-2.903008721999925],[129.8683374360002,-2.906996351999823],[129.86988366000006,-2.916273695999863],[129.87330162900005,-2.927504164999874],[129.88559003999998,-2.936618747999944],[129.89503014400012,-2.925388278999861],[129.91163170700005,-2.933200778999847],[129.92758222700016,-2.946954033999873],[129.94385826900012,-2.964532158999901],[129.96485436300023,-2.973565362999906],[130.046641472,-2.992120049999912],[130.21265709700012,-2.990411065999908],[130.30152428500003,-2.977227471999868],[130.34498131600017,-2.977634372999873],[130.38933353000013,-2.993829033999916],[130.48894290500007,-3.087497653999847],[130.50294030000012,-3.094496351999823],[130.57846113400015,-3.122816664999874],[130.58790123800017,-3.129489841999913],[130.59197024800014,-3.138848565999865],[130.59937584699998,-3.173028252999856],[130.60222415500007,-3.1801083309999],[130.62224368600013,-3.212579033999887],[130.63103274800008,-3.252699476999823],[130.63282311300006,-3.337823174999912],[130.63721764400023,-3.353610934999864],[130.65593509200014,-3.380954685],[130.6603296230002,-3.392754815999979],[130.66667728,-3.403578382999896],[130.68262780000023,-3.406426690999922],[130.72234134200008,-3.403252862999863],[130.76148522200018,-3.405857028999861],[130.79297936300011,-3.416436455999914],[130.81657962300002,-3.434258721999896],[130.83155358200003,-3.457940362999821],[130.81088300900012,-3.464939059999892],[130.81080162900017,-3.484551690999851],[130.81934655000012,-3.505140882999882],[130.83139082100004,-3.526462497999859],[130.86280358200023,-3.557305596999825],[130.87322024800002,-3.57398853999986],[130.87574303500006,-3.585625908999859],[130.87623131600003,-3.595310153999918],[130.87322024800002,-3.614922783999887],[130.86866295700008,-3.625746351999879],[130.85482832099999,-3.646416924999897],[130.85206139400023,-3.65292734199997],[130.84888756600017,-3.662692966999927],[130.83472741000006,-3.682305596999882],[130.83155358200003,-3.694105726999865],[130.82471764400023,-3.824476820999891],[130.83106530000006,-3.837497653999875],[130.84148196700008,-3.852797132999839],[130.84156334700006,-3.865004164999987],[130.81788170700023,-3.86882903399983],[130.79957116000017,-3.861748955999857],[130.76734459700003,-3.834079684999949],[130.75277754000004,-3.827894789999888],[130.7312117850001,-3.825941664999946],[130.63160241000006,-3.788669528999876],[130.61646569100006,-3.786309502999827],[130.60694420700017,-3.778497002999828],[130.56470787900005,-3.73162200299987],[130.55128014400023,-3.720961195999848],[130.53516686300006,-3.71184661299985],[130.51579837300008,-3.705498955999829],[130.49268639400012,-3.703057549999969],[130.47779381600006,-3.697360934999907],[130.46558678500017,-3.683851820999919],[130.44800866000006,-3.656508070999863],[130.43531334700018,-3.645440362999821],[130.41879316499998,-3.636895440999979],[130.39893639400012,-3.6312802059999],[130.37598717500012,-3.629164320999891],[130.35645592500012,-3.62468840899983],[130.3108016290001,-3.593926690999851],[130.1264754570002,-3.532972914999945],[130.10661868600008,-3.514825127999856],[130.10189863400015,-3.511895440999837],[130.08806399800002,-3.509698174999841],[130.03711998800023,-3.491469007999939],[130.001719597,-3.4730770809999],[129.98316491,-3.459730726999808],[129.97510826900006,-3.447686455999886],[129.97291100400017,-3.441501559999907],[129.96363366000006,-3.42831796699987],[129.96127363399998,-3.420098565999865],[129.96225019600016,-3.390801690999936],[129.96127363399998,-3.382256768999838],[129.93384850400005,-3.348321221999882],[129.89047285200016,-3.333103122999901],[129.54493248800023,-3.297784112999878],[129.50961347699996,-3.302504164999888],[129.50196373800006,-3.3344052059999],[129.55144290500002,-3.403252862999863],[129.5632430350001,-3.439629815999936],[129.53003991000017,-3.464776299999841],[129.48560631600017,-3.463474216999927],[129.40154056100013,-3.422946872999901],[129.35808353000007,-3.410088799999969],[129.2361759770001,-3.401625257999854],[129.19361412900005,-3.389743747999887],[129.11353600400017,-3.34880950299987],[129.08432050900004,-3.341241143999909],[129.05844160200004,-3.340752862999921],[128.984222852,-3.347426039999888],[128.96078535200004,-3.355564059999907],[128.9396264980002,-3.332614841999913],[128.93767337300008,-3.320407809999935],[128.94703209700012,-3.300225518999909],[128.98194420700023,-3.251885674999897],[128.96892337300002,-3.23300546699987],[128.95289147200006,-3.220391533999887],[128.93336022200018,-3.213555596999953],[128.9095158210001,-3.211521091999927],[128.88965905000006,-3.204359632999896],[128.87745201900012,-3.202569268999909],[128.87208092500023,-3.207777601999808],[128.86915123800023,-3.213636976999936],[128.85092207100016,-3.238213799999869],[128.79216556100002,-3.26043059699991],[128.78272545700023,-3.269219658999887],[128.77686608200005,-3.27939218499992],[128.6925561860002,-3.348728122999887],[128.68637129000004,-3.358575127999899],[128.6843367850001,-3.363864841999884],[128.679535352,-3.368747653999861],[128.67497806100008,-3.3754208309999],[128.67286217500023,-3.385918877999885],[128.676036004,-3.394789321],[128.68327884200002,-3.401055596999882],[128.69044030000006,-3.405694268999895],[128.69385826900012,-3.410088799999969],[128.67758222700013,-3.432305596999853],[128.6359155610002,-3.436618747999844],[128.58692467500023,-3.434340101999879],[128.54932701900023,-3.437432549999855],[128.50831139400023,-3.456963799999925],[128.484141472,-3.462497653999861],[128.46420332100004,-3.454522393999895],[128.44971764400012,-3.443291924999983],[128.41618899800008,-3.425957940999822],[128.39918053500017,-3.410088799999969],[128.28207441499998,-3.220879815999879],[128.2721460300002,-3.211521091999927],[128.23096764400012,-3.208754164999874],[128.21143639400023,-3.204278252999913],[128.18287194100006,-3.193780205999843],[128.17872155000012,-3.194268487999921],[128.17855879000015,-3.19101327899989],[128.18018639400017,-3.166761976999808],[128.18588300900015,-3.140720309999921],[128.20004316500015,-3.111423434999907],[128.19678795700023,-3.090915622999859],[128.18433678499997,-3.074395440999879],[128.16578209700012,-3.06698984199997],[128.13575280000023,-3.075372002999856],[128.11060631600017,-3.100030205999929],[128.09066816499998,-3.132012627999927],[128.07691491000017,-3.162530205999871],[128.06657962300008,-3.196954033999901],[128.056895379,-3.296807549999983],[128.05307050899998,-3.310642184999892],[128.04420006600006,-3.32577890399989],[128.03150475400017,-3.357679945999905],[128.02222741000006,-3.368584893999895],[128.01417076900006,-3.371351820999948],[127.99390709700018,-3.373711846999896],[127.98755944100006,-3.376071872999944],[127.98145592500023,-3.385023695999891],[127.9755965500001,-3.405043226999851],[127.962168816,-3.425713799999954],[127.95289147200018,-3.443942966999856],[127.94027753999997,-3.478448174999869],[127.93588300900004,-3.497002862999878],[127.93718509200018,-3.505547783999887],[127.94385826900023,-3.515720309999935],[127.94263756600006,-3.52166106599995],[127.92920983200024,-3.542738539999888],[127.92603600400017,-3.553480726999894],[127.89861087300002,-3.523858330999943],[127.90308678500013,-3.476657809999963],[127.93344160200014,-3.389743747999887],[127.93384850400015,-3.345310153999961],[127.93018639400012,-3.323337497999859],[127.92302493600019,-3.313897393999852],[127.91570071700006,-3.307224216999884],[127.8857528000001,-3.266208591999884],[127.87525475400004,-3.208754164999874],[127.86801191500004,-3.193780205999843],[127.84229576900019,-3.173272393999895],[127.84392337300018,-3.166110934999935],[127.86475670700005,-3.156345309999906],[127.87403405000013,-3.154392184999864],[127.89649498800011,-3.152113539999888],[127.90560957100004,-3.149509372999972],[127.91627037900004,-3.139906507999825],[127.93873131600006,-3.11337655999985],[127.95069420700005,-3.107842705999843],[127.96729576900023,-3.103692315999893],[127.99293053499999,-3.082614841999956],[128.008067254,-3.073663018999852],[128.02564537900005,-3.06861744599999],[128.04615319100017,-3.065850518999937],[128.06666100400003,-3.06698984199997],[128.08375084700018,-3.073663018999852],[128.10368899800008,-3.06698984199997],[128.0918074880001,-3.034600518999966],[128.090586785,-3.022149346999868],[128.09498131600017,-3.01091887799987],[128.11410566500015,-2.993584893999881],[128.11793053500017,-2.984307549999911],[128.10629316500015,-2.975518487999864],[128.08497155000012,-2.973890882999839],[128.06999759200008,-2.970635674999969],[128.07691491000017,-2.957696221999882],[128.0854598320001,-2.954847915000016],[128.11215254000004,-2.949965101999865],[128.12110436300023,-2.944512627999842],[128.138926629,-2.909844658999859],[128.13648522200018,-2.911879164999888],[128.13624108200023,-2.907647393999866],[128.13746178500006,-2.901299737999921],[128.138926629,-2.896172783999916],[128.14323978000013,-2.894626559999878],[128.14991295700005,-2.8949520809999],[128.15609785200004,-2.893243096999896],[128.1588647800002,-2.885674737999935],[128.16089928500006,-2.874118748],[128.1666772800002,-2.863946221999882],[128.17546634200008,-2.857028903999961],[128.18677819100006,-2.854668877999913],[128.2124129570001,-2.86052825299987],[128.3810327480002,-2.859958591999899],[128.41732832099999,-2.850518487999878],[128.45972741000017,-2.84628671699987],[128.49854576900012,-2.836521091999913],[128.51587975400017,-2.834161065999865],[128.5378524100001,-2.837172132999868],[128.57545006600014,-2.851332289999888],[128.60075931100002,-2.854668877999913],[128.80054772200012,-2.85621510199995],[128.84229576900023,-2.862237237999878],[128.86524498800023,-2.862074476999823],[128.90821373800006,-2.8554013],[128.94727623800023,-2.844414971999896],[129.01596113400015,-2.814222914999888],[129.05290774800017,-2.804457289999931],[129.06885826900012,-2.821221612999949],[129.070567254,-2.854913018999952],[129.06446373800023,-2.896172783999916],[129.07943769600016,-2.905368747999972],[129.10523522200018,-2.947930596999839],[129.12183678500006,-2.957696221999882],[129.133148634,-2.956475518999866],[129.15259850400005,-2.951348565999936],[129.16285241000003,-2.950290622999887],[129.16911868600016,-2.951348565999936],[129.172129754,-2.95387135199995],[129.17416425900015,-2.956475518999866],[129.17709394600016,-2.957696221999882],[129.18539472700004,-2.955173434999949],[129.18433678500017,-2.949151299999855],[129.18051191500015,-2.942152601999879],[129.18051191500015,-2.936618747999944],[129.179942254,-2.934258721999896],[129.17823326900012,-2.930433851999894],[129.179453972,-2.92644622199991],[129.1873478520001,-2.922946873],[129.19190514400023,-2.923028252999984],[129.19532311300023,-2.928399346999868],[129.20045006600006,-2.929782809999935],[129.21159915500007,-2.940850518999881],[129.21851647200018,-2.941176039999903],[129.2214461600001,-2.926364841999927],[129.22779381600006,-2.915215752999913],[129.24317467500018,-2.906833591999856],[129.27613366000006,-2.896172783999916],[129.32837975400005,-2.866794528999918],[129.35840905000012,-2.85621510199995],[129.3641056650001,-2.842054946000019],[129.36646569100006,-2.82398854],[129.37289472700016,-2.806817315999979],[129.40023847700004,-2.791599217],[129.4435327480002,-2.78492603999986],[129.52320397200006,-2.786309502999842],[129.53484134200008,-2.780043226999893],[129.54102623800023,-2.780043226999893]]],[[[100.46753991000006,-3.06698984199997],[100.47331790500017,-3.087172132999825],[100.4729110040001,-3.11394622199991],[100.46452884200002,-3.132500908999916],[100.44703209700018,-3.128350518999881],[100.43718509200008,-3.134372653999975],[100.42652428500004,-3.13640715899983],[100.4158634770001,-3.134372653999975],[100.40601647200016,-3.128350518999881],[100.38640384200019,-3.143812757999811],[100.38070722700009,-3.152520440999893],[100.38868248800006,-3.156345309999906],[100.40211022200018,-3.158868096999825],[100.40316816500015,-3.16545989399998],[100.39942467500012,-3.174248955999872],[100.3986108730002,-3.183526299999826],[100.41163170700005,-3.21347421699997],[100.42652428500004,-3.238213799999869],[100.46697024800008,-3.287286065999908],[100.47828209700006,-3.315199476999851],[100.46070397199999,-3.3344052059999],[100.44825280000012,-3.325372002999885],[100.42937259200008,-3.303155205999843],[100.41895592500006,-3.293389580999886],[100.40788821700002,-3.286879164999903],[100.3860783210001,-3.27752044099995],[100.37867272200012,-3.27239348799985],[100.37761478000007,-3.268161716999927],[100.37867272200012,-3.248711846999839],[100.37623131600017,-3.241143487999878],[100.370371941,-3.239515882999868],[100.3636173840001,-3.239841403999889],[100.3582462900001,-3.238213799999869],[100.33692467500005,-3.222588799999883],[100.33041425900015,-3.212985934999892],[100.33033287900017,-3.197360934999907],[100.337168816,-3.197360934999907],[100.33920332100016,-3.203220309999864],[100.34245853000019,-3.207696221999825],[100.34734134200006,-3.210544528999861],[100.35450280000012,-3.211521091999927],[100.36019941500008,-3.207452080999886],[100.3558048840001,-3.198337497999972],[100.3440047540001,-3.183526299999826],[100.33765709700016,-3.161553643999895],[100.337168816,-3.152927341999899],[100.34351647200006,-3.13640715899983],[100.34522545700005,-3.126560153999904],[100.2923283210001,-3.077080987999849],[100.27735436300006,-3.07293059699991],[100.25928795700005,-3.073174737999864],[100.24822024800018,-3.069431248],[100.254649285,-3.053317966999856],[100.24415123800006,-3.044040622999901],[100.21322675900008,-3.006931247999887],[100.20679772200018,-2.994886976999879],[100.2036238940001,-2.983819268999923],[100.18946373800011,-2.966566664999917],[100.18628991000006,-2.95387135199995],[100.1884871750001,-2.941664320999891],[100.19776451900006,-2.929294528999861],[100.19996178500017,-2.919854424999926],[100.19752037900011,-2.896254164999903],[100.17945397200012,-2.827325127999856],[100.178965691,-2.802911065999893],[100.18913821700008,-2.791192315999822],[100.22730553500006,-2.772637627999899],[100.24024498800004,-2.778252862999906],[100.24903405000012,-2.784356377999898],[100.25538170700004,-2.791436455999943],[100.27507571700008,-2.820489190999922],[100.28150475400017,-2.826104424999841],[100.28638756600006,-2.828708591999927],[100.2908634770001,-2.830661716999884],[100.2961531910001,-2.834161065999865],[100.35434004000015,-2.894463799999912],[100.3851017590001,-2.914646091999842],[100.4158634770001,-2.965915622999872],[100.46753991000006,-3.015313408999845],[100.47144616000006,-3.037855726999837],[100.4720158210001,-3.051690362999835],[100.46753991000006,-3.06698984199997]]],[[[131.59815514400017,-2.653903903999889],[131.57886803500006,-2.656019789999888],[131.572520379,-2.651055596999853],[131.579356316,-2.644626559999921],[131.59937584700018,-2.634860934999892],[131.62598717500012,-2.619561455999843],[131.639903191,-2.613702080999971],[131.65463300899998,-2.613213799999983],[131.64405358200023,-2.62867604],[131.62256920700008,-2.643649997999944],[131.59815514400017,-2.653903903999889]]],[[[107.84815514400006,-2.549899997999859],[107.88347415500019,-2.564222915000016],[107.91968834700006,-2.568617445999919],[107.93620853000019,-2.563571872999972],[107.98845462300018,-2.574151299999841],[108.00513756600006,-2.580254815999837],[108.01400800900008,-2.591078382999825],[108.03239993600008,-2.642347914999945],[108.03980553500004,-2.642347914999945],[108.04623457100016,-2.614922783999986],[108.05307050900014,-2.602797132999825],[108.06657962300002,-2.594496351999922],[108.09791100400015,-2.608168226999865],[108.10417728000002,-2.612399997999972],[108.11451256600006,-2.630629164999874],[108.11841881600004,-2.634942315999879],[108.13559004000015,-2.63925546699987],[108.14958743600002,-2.650323174999912],[108.15894616000017,-2.665785414999931],[108.16277103000006,-2.683282158999887],[108.18279056100002,-2.673516533999845],[108.19776451900006,-2.678155205999957],[108.26726321700019,-2.757419528999918],[108.27613366000006,-2.793877862999892],[108.2908634770001,-2.828708591999927],[108.29371178500017,-2.848402601999879],[108.28874759200014,-2.866631768999852],[108.27914472700016,-2.880140882999839],[108.27003014400006,-2.890801690999865],[108.26579837300001,-2.899590752999828],[108.25668379000015,-2.926202080999872],[108.21558678500006,-2.978692315999822],[108.20435631600004,-3.005466404],[108.2049259770001,-3.014580987999906],[108.21021569100017,-3.030450127999842],[108.21062259200019,-3.039646091999913],[108.20777428500017,-3.049411716999941],[108.1993921230002,-3.06861744599999],[108.19752037900005,-3.077080987999849],[108.19532311300004,-3.081475518999923],[108.19068444099999,-3.087497653999847],[108.18604576900006,-3.095472914999888],[108.18384850400011,-3.104750257999853],[108.1876733730002,-3.112074476999851],[108.2049259770001,-3.12590911299985],[108.21062259200019,-3.135837497999858],[108.1876733730002,-3.136895440999908],[108.1521916020001,-3.15243906],[108.13209069100017,-3.156345309999906],[108.1087345710001,-3.157159112999821],[108.0908309250001,-3.161390882999839],[108.07911217500012,-3.171807549999841],[108.073985222,-3.190362237999835],[108.073985222,-3.226006768999881],[108.06413821700018,-3.231052342],[108.03614342500005,-3.232028903999975],[108.01197350400017,-3.236504815999865],[107.99398847700009,-3.242445570999877],[107.98096764400006,-3.239841403999889],[107.97095787900015,-3.217705987999906],[107.96973717500006,-3.172133070999948],[107.96607506600017,-3.150974216999856],[107.94141686300011,-3.134454033999958],[107.88843834700006,-3.087497653999847],[107.89047285200009,-3.086114190999865],[107.89136803500017,-3.079278252999842],[107.88917076900012,-3.069594007999967],[107.8821720710001,-3.060153903999875],[107.8704533210001,-3.051690362999835],[107.86500084700016,-3.052666924999983],[107.85906009200008,-3.057305596999839],[107.84473717500006,-3.060153903999875],[107.82545006600006,-3.066176039999959],[107.82545006600006,-3.080661716999912],[107.8411564460001,-3.107842705999843],[107.84180748800006,-3.145440362999921],[107.81519616,-3.167250257999967],[107.75314994000014,-3.19845519199994],[107.686271377,-3.198206957999929],[107.65883946100021,-3.232633893999861],[107.63139902600007,-3.240863766],[107.60279400700009,-3.228857672999865],[107.59449787800006,-3.206238452999912],[107.6052663130001,-3.176545423999897],[107.64079837300008,-3.132582289999987],[107.64258873800006,-3.128350518999881],[107.64039147200018,-3.121677341999927],[107.6355900400001,-3.117608330999957],[107.63111412899998,-3.114515882999882],[107.62468509200019,-3.105401299999897],[107.5979110040001,-3.083916924999954],[107.5935978520001,-3.074965101999851],[107.59343509200002,-3.063164971999867],[107.59449303500017,-3.050469658999901],[107.59424889400006,-3.039646091999913],[107.59034264400006,-3.029229424999826],[107.58521569100006,-3.020277601999808],[107.58106530000012,-3.010674737999821],[107.58057701900012,-2.997979424999855],[107.58594811300006,-2.98560963299991],[107.60434004000008,-2.964043877999913],[107.60840905000005,-2.95387135199995],[107.61101321700008,-2.917901299999883],[107.6053166020001,-2.913750908999859],[107.58741295700011,-2.916680596999867],[107.56267337300008,-2.927666924999841],[107.55298912900011,-2.927992445999948],[107.54712975400005,-2.916680596999867],[107.54908287900011,-2.904961846999967],[107.55795332100016,-2.893975518999838],[107.57056725400005,-2.885837497999901],[107.5839949880001,-2.882500908999887],[107.6033634770001,-2.871026299999926],[107.60962975400017,-2.843682549999869],[107.60572350400017,-2.811781507999853],[107.59424889400006,-2.786309502999842],[107.60710696700008,-2.780938408999887],[107.62305748800006,-2.770603122999873],[107.63672936300011,-2.75855885199995],[107.64258873800006,-2.7484677059999],[107.63868248800004,-2.684991143999894],[107.65455162900015,-2.584893487999864],[107.67025800900015,-2.561455987999963],[107.71143639400012,-2.552911065999865],[107.72779381600006,-2.5531552059999],[107.75660241000017,-2.560642184999864],[107.77295983200011,-2.560316664999931],[107.78907311300006,-2.553806247999859],[107.81836998800004,-2.531914971999825],[107.83432050900008,-2.525079033999901],[107.84815514400006,-2.549899997999859]]],[[[100.2041121750001,-2.759942315999851],[100.17237389400005,-2.765557549999855],[100.15894616000006,-2.772637627999899],[100.15137780000012,-2.784844658999887],[100.14519290500002,-2.811130466999899],[100.13851972700016,-2.820489190999922],[100.11524498800006,-2.827894789999917],[100.08985436300006,-2.824395440999837],[100.06666100400011,-2.815524997999887],[100.04965254000015,-2.806817315999979],[100.04476972700016,-2.820896091999927],[100.03834069100017,-2.83375416499986],[100.02930748800006,-2.840101820999976],[100.01563561300011,-2.834161065999865],[100.00782311300011,-2.819512627999856],[100.00700931100019,-2.781914971999868],[100.0013126960001,-2.765313408999901],[99.98682701900006,-2.767185153999875],[99.9884546230002,-2.744886976999837],[100.0013126960001,-2.686700127999899],[100.00049889400012,-2.658868096999925],[99.9962671230002,-2.638767184999892],[99.98601321700008,-2.624688408999845],[99.96713300900015,-2.615004164999888],[99.97575931100008,-2.603448174999869],[99.97559655000006,-2.594903252999927],[99.96713300900015,-2.580254815999837],[99.96143639400006,-2.559014580999843],[99.96094811300006,-2.552911065999865],[99.96729576900012,-2.514906507999939],[99.97461998800011,-2.493910414999903],[99.98414147200012,-2.484633070999863],[100.00294030000005,-2.49089934699991],[100.01368248800006,-2.504815362999892],[100.02173912900011,-2.51873137799987],[100.03239993600002,-2.525079033999901],[100.08708743600019,-2.57626718499985],[100.10759524800002,-2.600274346999896],[100.11744225400015,-2.608168226999865],[100.15211022200006,-2.618584893999866],[100.16667728000007,-2.627862237999821],[100.17261803500017,-2.645765882999953],[100.17798912900011,-2.655938408999916],[100.20142662900011,-2.678155205999957],[100.20679772200018,-2.693536065999822],[100.2097274100001,-2.707696221999925],[100.21517988400015,-2.723565362999949],[100.21859785200016,-2.739353122999901],[100.21517988400015,-2.752862237999878],[100.2041121750001,-2.759942315999851]]],[[[133.53907311300011,-2.440118096999868],[133.55388431100008,-2.449883721999981],[133.55396569100003,-2.442966403999904],[133.5602319670002,-2.443047783999887],[133.57081139400023,-2.45094166499986],[133.58375084700006,-2.458672783999873],[133.59180748800011,-2.461521091999898],[133.60547936300023,-2.468031507999811],[133.60580488400015,-2.488946221999868],[133.585215691,-2.512627862999963],[133.56299889400023,-2.512872002999913],[133.56169681100008,-2.508721612999878],[133.55738366000006,-2.5043270809999],[133.52328535200016,-2.487969658999887],[133.51351972699996,-2.476006768999852],[133.50709069100017,-2.460219007999811],[133.49789472700004,-2.446384372999901],[133.49000084700006,-2.431247653999904],[133.50586998800006,-2.424493096999882],[133.53907311300011,-2.440118096999868]]],[[[134.56690514400023,-2.450453382999953],[134.54965254000004,-2.451348565999865],[134.53728274800008,-2.445733330999857],[134.53443444100006,-2.435642184999978],[134.54639733200005,-2.422621351999823],[134.52149498800023,-2.4066708309999],[134.52426191499998,-2.392266533999845],[134.55372155000006,-2.367364190999979],[134.56023196700008,-2.351495049999954],[134.56421959700003,-2.329847914999874],[134.56690514400023,-2.292901299999841],[134.57683353000002,-2.29851653399983],[134.58130944100017,-2.307875257999868],[134.58228600400017,-2.319756768999824],[134.5812280610002,-2.33269622199991],[134.5812280610002,-2.416436455999929],[134.58366946700008,-2.438409112999864],[134.58025149800002,-2.445082289999903],[134.56690514400023,-2.450453382999953]]],[[[99.7072046230002,-2.127699476999865],[99.72136478000013,-2.159112237999892],[99.77540123800011,-2.237562757999925],[99.7758895190001,-2.242445570999905],[99.7742619150001,-2.254327080999943],[99.77540123800011,-2.25872161299985],[99.77881920700011,-2.261651299999869],[99.78581790500019,-2.263441664999945],[99.81462649800001,-2.284356377999899],[99.82325280000005,-2.292901299999841],[99.84961998800006,-2.333916924999926],[99.8587345710001,-2.356866143999838],[99.85792076900012,-2.374769789999888],[99.85792076900012,-2.367364190999979],[99.85336347700016,-2.377618096999825],[99.84620201900012,-2.380059502999856],[99.8396916020001,-2.375258070999877],[99.8333439460001,-2.352308851999965],[99.82455488400014,-2.347588799999869],[99.79957116,-2.347426039999903],[99.78809655000006,-2.34441497199991],[99.77995853000006,-2.337009373],[99.77214603000007,-2.328220309999864],[99.76172936300006,-2.320896091999856],[99.74976647200006,-2.318047783999901],[99.72510826900006,-2.317071221999925],[99.71338951900006,-2.313409112999878],[99.69922936300006,-2.300876559999878],[99.68702233200005,-2.284926039999959],[99.6717228520001,-2.271254165000016],[99.64844811300011,-2.265557549999855],[99.61085045700011,-2.267185153999876],[99.60352623800011,-2.265557549999855],[99.60254967500012,-2.253024997999944],[99.61158287900011,-2.242771091999927],[99.61646569100016,-2.233575127999856],[99.60352623800011,-2.224053643999866],[99.59766686300004,-2.229099216999899],[99.5939233730002,-2.227797132999896],[99.59148196700008,-2.221368096999967],[99.58985436300004,-2.211032809999878],[99.58301842500012,-2.211032809999878],[99.57618248800011,-2.224053643999866],[99.56771894600016,-2.215101820999934],[99.55567467500006,-2.183038018999852],[99.53126061300011,-2.155938408999916],[99.52767988400015,-2.145440362999864],[99.53101647200018,-2.134209893999852],[99.53842207100016,-2.131768487999821],[99.55225670700005,-2.135349216999884],[99.56446373800011,-2.131117445999876],[99.56226647200006,-2.121677341999941],[99.54883873800006,-2.101169528999904],[99.54835045700005,-2.061455987999892],[99.56495201900012,-2.030857028999876],[99.59400475400011,-2.014825127999885],[99.63135826900006,-2.018487237999835],[99.64332116000017,-2.028415622999844],[99.6518660820001,-2.042087497999958],[99.66285241000017,-2.054294528999847],[99.68262780000006,-2.05950286299985],[99.69434655000006,-2.067803643999824],[99.70053144600016,-2.087497653999861],[99.7072046230002,-2.127699476999865]]],[[[123.88786868600019,-2.050876559999935],[123.88965905000012,-2.063246351999879],[123.88697350400005,-2.073907158999901],[123.88054446700019,-2.069431247999844],[123.86931399800018,-2.05331796699987],[123.86426842500005,-2.055108330999857],[123.84986412899998,-2.054864190999908],[123.83936608200021,-2.049086195999948],[123.84538821700002,-2.035577080999886],[123.85987389400012,-2.010511976999965],[123.86744225400005,-2.00554778399983],[123.87671959700016,-2.018487237999835],[123.87891686300004,-2.03232187299993],[123.88786868600019,-2.050876559999935]]],[[[134.37745201900006,-2.149834893999838],[134.35987389400023,-2.153252862999935],[134.34034264400023,-2.135349216999884],[134.33236738400004,-2.111097914999903],[134.33326256600012,-2.083265882999854],[134.34034264400023,-2.055840752999885],[134.35059655000006,-2.032647393999866],[134.35670006600017,-2.022881768999909],[134.36451256600017,-2.013767185],[134.37378991,-2.006931247999901],[134.38502037900005,-2.003594658999887],[134.39747155000023,-2.005791924999869],[134.41065514400006,-2.012465101999837],[134.42156009200008,-2.022230726999865],[134.426524285,-2.033298434999907],[134.42628014400003,-2.03972747199991],[134.42432701900012,-2.045993747999873],[134.39747155000023,-2.091973565999837],[134.39014733200023,-2.131442966999899],[134.37745201900006,-2.149834893999838]]],[[[126.07585696700008,-2.462985934999864],[126.04615319100006,-2.474216403999875],[126.01343834700012,-2.459567966999856],[125.9845483730002,-2.431329033999887],[125.96599368600017,-2.40211353999986],[125.95777428500017,-2.369235934999949],[125.95476321700019,-2.302178643999966],[125.9461369150001,-2.271742446],[125.93726647200006,-2.260837497999859],[125.91187584699999,-2.239678643999852],[125.90455162899998,-2.231377862999863],[125.90040123800017,-2.217705987999921],[125.89771569100016,-2.169366143999909],[125.88770592500012,-2.142347914999874],[125.87338300900002,-2.115492445999891],[125.862559441,-2.086602471999868],[125.86353600400011,-2.05331796699987],[125.86996504000004,-2.035577080999886],[125.87940514400012,-2.018487237999835],[125.90259850400015,-1.987888278999918],[125.91635175900008,-1.973890882999854],[125.92457116000017,-1.968194268999881],[125.93336022200005,-1.96453215899983],[125.94459069100006,-1.965427341999913],[125.95525149800008,-1.9711239559999],[125.98536217500012,-1.993747653999947],[125.99341881600006,-2.003594658999887],[125.99878991000011,-2.01523202899989],[126.00098717500005,-2.028252862999878],[125.99732506600004,-2.055352471999896],[125.97877037900005,-2.108168226999965],[125.9728296230002,-2.135349216999884],[125.97722415500017,-2.180352471999882],[126.06511478000007,-2.363946221999882],[126.06910241000007,-2.38445403399993],[126.07447350400015,-2.406508070999934],[126.08423912900005,-2.423923434999907],[126.08806399800001,-2.441094658999845],[126.07585696700008,-2.462985934999864]]],[[[124.37208092500023,-1.992608330999914],[124.37029056100008,-2.038995049999883],[124.35840905000012,-2.033298434999907],[124.3347274100001,-2.004978122999859],[124.32545006600007,-2.001153252999856],[124.31421959700005,-1.999444268999852],[124.30469811300023,-1.99602629999984],[124.30062910199997,-1.987481377999913],[124.3056746750001,-1.973402601999865],[124.31812584700008,-1.963962497999858],[124.33383222699999,-1.959242445999933],[124.348887566,-1.959567966999956],[124.36622155000013,-1.971286716999856],[124.37208092500023,-1.992608330999914]]],[[[123.66382897200006,-1.963311455999985],[123.65699303500006,-1.963311455999985],[123.65162194100017,-1.949395440999837],[123.64958743600006,-1.934177341999856],[123.64958743600006,-1.901788018999852],[123.65699303500006,-1.901788018999852],[123.65699303500006,-1.909356377999884],[123.66439863400004,-1.948907158999844],[123.66382897200006,-1.963311455999985]]],[[[123.74048912900005,-1.940524997999873],[123.71168053500017,-1.957126559999935],[123.7055770190001,-1.933770440999851],[123.71290123800013,-1.911716403999932],[123.72608483200023,-1.899997653999861],[123.73804772200018,-1.90789153399983],[123.73951256600004,-1.915948174999869],[123.74634850400015,-1.929131768999824],[123.74577884200018,-1.935967705999843],[123.74048912900005,-1.940524997999873]]],[[[123.86443118600002,-1.989434502999856],[123.86931399800018,-1.99814218499985],[123.85621178500006,-1.992445570999948],[123.84782962300007,-1.995538018999852],[123.84058678500006,-2.001641533999845],[123.83179772200018,-2.004978122999859],[123.80909264400024,-1.999688408999887],[123.79420006600017,-1.992120049999926],[123.78736412900015,-1.980645440999893],[123.77328535200004,-1.922621351999823],[123.77173912900015,-1.895603122999958],[123.78736412900015,-1.873955987999878],[123.84473717500013,-1.928643487999835],[123.85238691500003,-1.938734632999896],[123.85743248800021,-1.950372002999899],[123.86443118600002,-1.989434502999856]]],[[[125.42212975400005,-1.794122002999856],[125.430837436,-1.79827239399998],[125.44019616000016,-1.798028252999941],[125.45948326900012,-1.792657158999901],[125.47413170700011,-1.7811825499999],[125.48324629000004,-1.776950778999932],[125.48747806100002,-1.782403252999956],[125.48780358200023,-1.79021575299987],[125.48910566500014,-1.797784112999821],[125.49195397200018,-1.80339934699991],[125.49708092500012,-1.805759372999873],[125.558848504,-1.798028252999941],[125.58985436300021,-1.79908619599999],[125.61036217500005,-1.813164971999939],[125.62533613400002,-1.809828382999825],[125.70289147200016,-1.81926848799985],[125.71273847699997,-1.81780364399988],[125.72396894599999,-1.814060153999932],[125.73487389400005,-1.808689059999892],[125.75562584700018,-1.794528903999861],[125.76563561300021,-1.793715101999851],[125.78785241,-1.799493096999825],[125.828868035,-1.801527601999851],[125.9461369150001,-1.785821221999882],[125.99341881600006,-1.785821221999882],[126.1167098320001,-1.805759372999873],[126.28882897200018,-1.813164971999939],[126.32911217500022,-1.81926848799985],[126.34148196700019,-1.820000908999873],[126.34522545700021,-1.817640882999825],[126.34449303500017,-1.818780205999857],[126.34327233200004,-1.829847914999973],[126.33594811300006,-1.837985934999906],[126.27214603000003,-1.86728281],[126.25806725400011,-1.869073174999911],[126.223480665,-1.867771091999913],[126.20150800899997,-1.870538018999881],[126.19044030000023,-1.873793226999822],[126.18572024800001,-1.877618096999924],[126.17994225400017,-1.884454033999859],[126.16700280000018,-1.885023695999919],[126.144786004,-1.881442966999856],[126.05909264400023,-1.888278903999875],[126.04997806100006,-1.890313408999901],[126.02426191499998,-1.901788018999852],[125.99073326900024,-1.900567315999837],[125.98023522200018,-1.901788018999852],[125.94849694100006,-1.922946872999844],[125.92758222700016,-1.931410414999888],[125.90821373800021,-1.925713799999897],[125.88770592500012,-1.909274997999901],[125.87175540500017,-1.902520440999879],[125.85596764400022,-1.903415622999873],[125.78744550900002,-1.918715101999837],[125.6202905610002,-1.915622653999847],[125.59986412900001,-1.918633721999853],[125.55274498800011,-1.93279387799987],[125.53109785200004,-1.935967705999843],[125.48340905000018,-1.935967705999843],[125.468516472,-1.937758070999919],[125.43213951900023,-1.949639580999872],[125.43799889400006,-1.932549737999835],[125.43970787900017,-1.91326262799997],[125.43775475400005,-1.895114841999969],[125.43213951900023,-1.881442966999856],[125.42335045700005,-1.875095309999921],[125.38062584700006,-1.854099216999884],[125.37183678500017,-1.858330987999892],[125.36638431100006,-1.877129815999936],[125.35645592500022,-1.881442966999856],[125.34880618600013,-1.877862237999963],[125.34205162900015,-1.869317315999865],[125.33716881599999,-1.859144789999903],[125.33529707100014,-1.850681247999873],[125.33814537900017,-1.828057549999897],[125.34693444100006,-1.810967705999857],[125.36207116000004,-1.802422783999844],[125.37794030000005,-1.799248955999957],[125.37891686300023,-1.789971612999821],[125.38404381600017,-1.7811825499999],[125.39063561300024,-1.775974216999856],[125.40211022200018,-1.774672132999868],[125.40967858200021,-1.779229424999897],[125.42212975400005,-1.794122002999856]]],[[[123.0966903000001,-1.895277601999936],[123.08472741000017,-1.901788018999852],[123.07276451900023,-1.901625257999882],[123.06739342500006,-1.891696872999873],[123.07007897200019,-1.840752862999864],[123.07447350400005,-1.818942966999913],[123.09017988400002,-1.779961846999925],[123.09343509200008,-1.768243096999853],[123.09457441499998,-1.755059502999899],[123.10206139400017,-1.748467705999914],[123.117442254,-1.752862237999906],[123.13103274800008,-1.760918877999842],[123.13282311300023,-1.765313408999916],[123.14323978000002,-1.775485934999878],[123.15154056100013,-1.798760674999968],[123.15284264400012,-1.82382577899989],[123.14242597700003,-1.839776299999897],[123.13013756600016,-1.846774997999958],[123.11703535199997,-1.857842705999914],[123.10645592500023,-1.871189059999921],[123.10206139400017,-1.884860934999864],[123.0966903000001,-1.895277601999936]]],[[[134.19166100400017,-1.92148202899989],[134.17514082099999,-1.943454684999892],[134.1616317070001,-1.895114841999969],[134.1616317070001,-1.877536716999941],[134.16895592500012,-1.829847914999973],[134.22681725400005,-1.744235934999907],[134.23585045700023,-1.738539320999919],[134.24822024800008,-1.743910414999874],[134.25001061300017,-1.761488539999902],[134.24480228000007,-1.796075127999899],[134.23633873800023,-1.799411716999842],[134.219981316,-1.812595309999878],[134.20801842500006,-1.826836846999882],[134.223887566,-1.849053643999852],[134.21241295700005,-1.884209893999909],[134.19166100400017,-1.92148202899989]]],[[[108.75879967500006,-1.717461846999981],[108.72461998800004,-1.719414971999853],[108.6772567070001,-1.713799737999935],[108.69141686300004,-1.699151299999926],[108.72315514400006,-1.693617445999919],[108.75709069100006,-1.695407809999907],[108.77808678500017,-1.702732028999989],[108.75879967500006,-1.717461846999981]]],[[[130.35718834700006,-1.694919528999918],[130.351817254,-1.74138762799987],[130.40626061300011,-1.778985283999859],[130.41797936300011,-1.793552341999884],[130.4313257170002,-1.814629815999822],[130.43995201900012,-1.835707289999931],[130.437754754,-1.850681247999873],[130.42807050900015,-1.855726820999905],[130.42042076900012,-1.855645440999822],[130.4157007170002,-1.858086846999853],[130.41179446700014,-1.881768487999878],[130.4057723320001,-1.885023695999919],[130.39698326900023,-1.885430596999839],[130.38648522200018,-1.888278903999875],[130.35499108200005,-1.912204684999921],[130.34424889400023,-1.92848072699995],[130.434336785,-1.963311455999985],[130.43685957100004,-1.976332289999973],[130.42986087300002,-1.980238539999888],[130.41797936300011,-1.980726820999877],[130.40626061300011,-1.983819268999866],[130.39844811300011,-1.989678643999895],[130.39389082100016,-1.994805596999825],[130.38990319100017,-2.000664971999868],[130.38306725400017,-2.008396091999956],[130.37354576900006,-2.012790622999859],[130.36548912900005,-2.008558851999922],[130.35759524800008,-2.001641533999845],[130.34839928500017,-1.99814218499985],[130.34001712300002,-1.993422132999925],[130.33952884200002,-1.983330987999878],[130.34245853000007,-1.973565362999921],[130.34498131600017,-1.970147393999824],[130.34302819100006,-1.96493906],[130.34107506600017,-1.955336195999948],[130.33814537900017,-1.949639580999872],[130.32699629000015,-1.960544528999932],[130.30884850400003,-1.991469007999882],[130.30054772200018,-1.99814218499985],[130.28711998800006,-2.004571221999853],[130.27523847700004,-2.01913827899989],[130.26498457099999,-2.035251559999864],[130.25611412900005,-2.045830987999906],[130.223399285,-2.057793877999927],[130.15430748800011,-2.058770440999822],[130.1264754570002,-2.066989841999913],[130.11947675900015,-2.059014580999943],[130.11304772200006,-2.053155205999914],[130.10645592500006,-2.048760674999841],[130.09848066500004,-2.045830987999906],[130.1085718110002,-2.040459893999937],[130.1128035820001,-2.038995049999883],[130.0869246750001,-2.02613697699995],[130.06592858200017,-2.02263762799987],[130.01286868600002,-2.025485934999907],[129.9689233730002,-2.004978122999859],[129.92554772200006,-2.003838799999826],[129.91700280000012,-2.001560153999861],[129.904063347,-1.993259372999958],[129.87338300900004,-1.982028903999875],[129.8562117850001,-1.969496351999879],[129.8408309250002,-1.964043877999842],[129.83432050900015,-1.960137627999927],[129.81641686300011,-1.940850518999895],[129.81055748800017,-1.935967705999843],[129.76807701900012,-1.918145440999865],[129.74382571700016,-1.912204684999921],[129.73292076900023,-1.903741143999895],[129.71485436300011,-1.881442966999856],[129.74529056100008,-1.863457940999823],[129.8725692070001,-1.81926848799985],[129.87623131600014,-1.815850518999838],[129.87720787900005,-1.811944268999923],[129.87761478000007,-1.808282158999887],[129.87940514400023,-1.805759372999873],[129.89527428500006,-1.796807549999926],[129.9050399100001,-1.793715101999851],[129.93873131600012,-1.789239190999893],[129.95875084700018,-1.780694268999952],[130.01197350400005,-1.750176690999837],[130.0307723320001,-1.743829033999901],[130.05176842500023,-1.739434502999913],[130.09603925899998,-1.735446872999844],[130.13705488400004,-1.725274346999896],[130.1604923840001,-1.724297783999916],[130.22046959700018,-1.736016533999987],[130.23170006600012,-1.734307549999983],[130.24822024800008,-1.718845309999963],[130.26775149800008,-1.704522393999895],[130.2890731130001,-1.692152601999865],[130.321543816,-1.679131768999866],[130.33228600400005,-1.676690362999835],[130.34294681100008,-1.676690362999835],[130.35336347700004,-1.680108330999843],[130.35718834700006,-1.694919528999918]]],[[[123.31771894600016,-1.774509372999901],[123.30128014400017,-1.788344007999896],[123.28028405000012,-1.785821221999882],[123.27100670700005,-1.769301039999903],[123.27979576900023,-1.748223565999965],[123.33025149800007,-1.694919528999918],[123.35613040500007,-1.675876559999921],[123.36109459699999,-1.673760674999912],[123.36573326900023,-1.673109632999868],[123.376149936,-1.678806247999844],[123.38200931100019,-1.689629815999851],[123.38282311300011,-1.702243748],[123.37818444100016,-1.712823174999869],[123.36980228000019,-1.719903252999842],[123.35027103000002,-1.730889580999886],[123.34180748800006,-1.737969658999859],[123.31771894600016,-1.774509372999901]]],[[[124.529551629,-1.635674737999835],[124.52784264400012,-1.655450127999856],[124.55632571700018,-1.641208591999856],[124.59278405000008,-1.633233330999886],[124.63282311300011,-1.631117445999877],[124.6876733730002,-1.638360283999986],[124.72901451900023,-1.650567315999965],[124.74293053500007,-1.658868096999868],[124.75700931100008,-1.665134372999901],[124.81519616,-1.66969166499986],[124.87159264400023,-1.693047783999859],[124.93816165500006,-1.703871351999851],[124.94361412900017,-1.702894789999874],[124.95069420700023,-1.697686455999872],[124.95557701900013,-1.696465752999856],[124.96070397200006,-1.698337497999916],[124.96810957100003,-1.707289320999948],[124.97291100399998,-1.710137627999899],[125.0001733730002,-1.716729424999954],[125.01042728000002,-1.717461846999981],[125.02295983200023,-1.7230770809999],[125.03467858200011,-1.752129815999879],[125.04802493600002,-1.765313408999916],[125.0498153000001,-1.760511976999837],[125.05355879000014,-1.756524346999867],[125.055430535,-1.751641533999972],[125.06763756600016,-1.760430596999853],[125.08155358200004,-1.764743747999944],[125.09603925900004,-1.7640927059999],[125.11003665500006,-1.75847747199991],[125.10035241,-1.753106377999856],[125.09644615999999,-1.751641533999972],[125.1030379570001,-1.736993096999882],[125.114919467,-1.692152601999865],[125.12029056100017,-1.682793877999913],[125.13070722699997,-1.684991143999824],[125.13746178500006,-1.689629815999851],[125.14226321700018,-1.694268487999864],[125.15015709700018,-1.697686455999872],[125.18523196700009,-1.703871351999851],[125.19532311300021,-1.721937757999868],[125.19646243600008,-1.744235934999907],[125.19141686300023,-1.782403252999956],[125.19678795700011,-1.788750908999901],[125.20834394600004,-1.791110934999864],[125.22022545700005,-1.788995049999855],[125.22543379000014,-1.782403252999956],[125.22730553500006,-1.773044528999932],[125.23161868600002,-1.76140715899983],[125.23975670700023,-1.744805596999868],[125.25342858200011,-1.732842705999929],[125.26872806100009,-1.728204033999916],[125.28402754000003,-1.731052341999941],[125.29810631600004,-1.74138762799987],[125.3000594410001,-1.750909112999864],[125.2936304050002,-1.760918877999842],[125.28492272200012,-1.771416924999912],[125.28077233200018,-1.782403252999956],[125.28484134200014,-1.785902601999865],[125.30583743600006,-1.777927341999899],[125.314789259,-1.778985283999859],[125.31983483200023,-1.793389580999829],[125.32162519600003,-1.864353122999986],[125.31836998800017,-1.882582289999888],[125.30884850400017,-1.884942315999851],[125.27393639400022,-1.873955987999878],[125.25123131600012,-1.8734677059999],[125.18824303500017,-1.881442966999856],[125.17953535199999,-1.880303643999824],[125.15845787900015,-1.875095309999921],[125.14763431100006,-1.873955987999878],[125.13754316500003,-1.876885674999897],[125.12094160200016,-1.890720309999907],[125.11003665500006,-1.895114841999969],[125.09115644600014,-1.893649997999915],[125.07081139400022,-1.888848565999836],[125.05046634200006,-1.887953382999853],[125.03101647200006,-1.898532809999978],[125.02263431100019,-1.916273695999891],[125.02116946700002,-1.933363539999931],[125.01351972700004,-1.944268487999821],[124.98658287900005,-1.943454684999892],[124.95923912900017,-1.922458591999856],[124.94629967500016,-1.919610283999916],[124.91456139400012,-1.922458591999856],[124.89112389400023,-1.917250257999868],[124.85328209700016,-1.896905205999957],[124.8282983730001,-1.895114841999969],[124.78598066500014,-1.907972914999903],[124.7115991550002,-1.952406507999839],[124.67115319100004,-1.970147393999824],[124.58171634200004,-1.994235934999935],[124.56519616000017,-2.001641533999845],[124.55445397200006,-2.004978122999859],[124.54322350400004,-2.006524346999896],[124.51417076900007,-2.004978122999859],[124.45281009200006,-2.012465101999837],[124.43091881600006,-2.011651299999826],[124.4060164720001,-2.004082940999865],[124.39722741000006,-1.991387627999899],[124.3925887380001,-1.974297783999859],[124.3359481130001,-1.888116143999909],[124.32911217500012,-1.870782158999916],[124.33139082100017,-1.826918226999865],[124.33822675899997,-1.807793877999899],[124.35254967500006,-1.789239190999893],[124.36890709700018,-1.750746351999808],[124.37305748800023,-1.705010674999883],[124.38493899800007,-1.667901299999954],[124.42481530000022,-1.655450127999856],[124.44239342500005,-1.654392184999977],[124.48861738399998,-1.645684502999913],[124.50326582099999,-1.638360283999986],[124.51807701900016,-1.626234632999825],[124.52654056100019,-1.625664971999853],[124.529551629,-1.635674737999835]]],[[[135.47730553500006,-1.58993906],[135.58301842500003,-1.61386484199987],[135.78646894599999,-1.628106377999885],[135.85596764400012,-1.643975518999909],[135.89673912900017,-1.648044528999861],[135.95728600400017,-1.631524346999882],[136.03248131600006,-1.651950778999947],[136.060313347,-1.641778252999913],[136.09888756600017,-1.654717705999829],[136.19125410200004,-1.653903903999989],[136.23218834700006,-1.662286065999865],[136.23698978000002,-1.6664364559999],[136.24561608200023,-1.678399346999839],[136.2526961600001,-1.682793877999913],[136.263519727,-1.683689059999907],[136.28785241000017,-1.682061455999886],[136.29704837300002,-1.686455987999878],[136.31177819099997,-1.697849216999927],[136.3326929050002,-1.70964934699991],[136.36817467500018,-1.724297783999916],[136.39031009200008,-1.725762627999885],[136.45394941500004,-1.717461846999981],[136.61890709700006,-1.737969658999859],[136.7046004570001,-1.730564059999864],[136.72315514400012,-1.734307549999983],[136.76075280000012,-1.748467705999914],[136.7768660820001,-1.751641533999972],[136.81446373800011,-1.754164320999905],[136.83082116,-1.758396091999927],[136.84848066500004,-1.765313408999916],[136.89926191500015,-1.794610283999844],[136.89942467500012,-1.799493096999825],[136.8883569670002,-1.802504164999917],[136.88135826900012,-1.81617603999986],[136.87232506600012,-1.81926848799985],[136.79420006600017,-1.8207333309999],[136.75977623800023,-1.826104424999855],[136.72982832100016,-1.826104424999855],[136.7255965500002,-1.829847914999973],[136.72250410200016,-1.839532158999859],[136.7150171230002,-1.847263278999947],[136.70484459700006,-1.85222747199991],[136.68287194100006,-1.85637786299985],[136.67432701900012,-1.861911716999955],[136.66635175900015,-1.868422132999868],[136.65674889400006,-1.873955987999878],[136.64486738400015,-1.876397393999909],[136.552989129,-1.867120049999869],[136.53256269600004,-1.867771091999913],[136.53256269600004,-1.873955987999878],[136.54004967500012,-1.879571221999967],[136.54615319100017,-1.889092705999886],[136.54639733200023,-1.897881768999852],[136.53630618600008,-1.901788018999852],[136.5249129570001,-1.899997653999861],[136.50660241000006,-1.890801690999879],[136.49854576900012,-1.888278903999875],[136.48633873800023,-1.888441664999931],[136.46583092500018,-1.893731377999899],[136.45394941500004,-1.895114841999969],[136.44385826900023,-1.892836195999905],[136.41309655000003,-1.881442966999856],[136.39714603000007,-1.878187757999896],[136.35743248800023,-1.864027601999964],[136.33765709700006,-1.86093515399989],[136.33204186300023,-1.862969658999916],[136.32300866000006,-1.871840101999879],[136.31714928500017,-1.873955987999878],[136.3170679050002,-1.874688408999916],[136.308441602,-1.876071872999887],[136.30030358200005,-1.876234632999854],[136.30046634200002,-1.873955987999878],[136.29029381600014,-1.880466403999961],[136.28386478000016,-1.886976820999877],[136.27865644599999,-1.895765882999924],[136.27320397200006,-1.909356377999884],[136.26636803500006,-1.909356377999884],[136.2609155610002,-1.896905205999957],[136.2526961600001,-1.892347914999917],[136.24268639400012,-1.894463799999926],[136.23218834700006,-1.901788018999852],[136.21607506600017,-1.873304945999934],[136.18482506600012,-1.855889580999871],[136.10865319100006,-1.839776299999897],[136.098317905,-1.839450778999876],[136.07715905000012,-1.84091562299993],[136.06714928500003,-1.839776299999897],[136.05811608200023,-1.835219007999854],[136.04322350400017,-1.822035414999902],[136.03638756600006,-1.81926848799985],[136.01417076900012,-1.81804778399983],[135.99756920700023,-1.814385674999954],[135.98414147200006,-1.808200778999904],[135.95736738400015,-1.792250257999896],[135.91236412900017,-1.771661065999865],[135.902598504,-1.768731377999842],[135.89486738400004,-1.757500908999845],[135.87623131599997,-1.753676039999917],[135.83432050900004,-1.751641533999972],[135.81568444100006,-1.744724216999884],[135.7838647800002,-1.727715752999827],[135.74878991,-1.723565362999892],[135.74154707099999,-1.720472914999902],[135.72852623800011,-1.706963799999841],[135.71802819100006,-1.703301690999879],[135.70582116000006,-1.704766533999844],[135.6909285820001,-1.710137627999899],[135.67994225400003,-1.705336195999905],[135.66830488400015,-1.694105726999808],[135.65609785200016,-1.690199476999823],[135.64616946700008,-1.693129164999931],[135.63160241000006,-1.699883721999953],[135.61622155000006,-1.704196872999873],[135.60474694100006,-1.700127862999821],[135.58082116000017,-1.684258721999967],[135.55453535200016,-1.683282158999901],[135.52662194100006,-1.686211846999839],[135.49789472700016,-1.682793877999913],[135.4838973320001,-1.674981377999842],[135.48023522200003,-1.66619231599995],[135.4786889980002,-1.655450127999856],[135.47120201900023,-1.641778252999913],[135.46599368600008,-1.640313408999859],[135.44922936300023,-1.642673434999906],[135.44320722700002,-1.641778252999913],[135.440684441,-1.635674737999835],[135.43962649800008,-1.626560153999932],[135.43620853000004,-1.618096612999977],[135.42652428500017,-1.614434502999842],[135.42221113399998,-1.610772393999895],[135.4339298840001,-1.603122653999947],[135.4497176440001,-1.596856377999913],[135.45753014400012,-1.597426039999874],[135.46355228000002,-1.589532158999987],[135.47730553500006,-1.58993906]]],[[[108.9642033210001,-1.573418877999842],[108.96753991000006,-1.587985934999949],[108.96436608200005,-1.604180596999825],[108.95728600399998,-1.619561455999943],[108.94825280000012,-1.631524346999882],[108.93327884200008,-1.640801690999851],[108.86980228000007,-1.662286065999865],[108.85816491000006,-1.663995049999869],[108.83122806100006,-1.662286065999865],[108.82837975400005,-1.656996351999894],[108.82520592500006,-1.645114841999842],[108.82341556100017,-1.632419528999876],[108.82439212300008,-1.624688408999873],[108.82984459700018,-1.615899346999896],[108.83228600400005,-1.605401299999841],[108.83155358200011,-1.595147393999909],[108.82748457100016,-1.586602471999967],[108.82105553500006,-1.583265882999854],[108.80420983200005,-1.584893487999963],[108.79330488400015,-1.580336195999934],[108.80713951900006,-1.56503671699987],[108.83106530000012,-1.556084893999852],[108.87598717500012,-1.546156507999853],[108.88689212300018,-1.539727471999839],[108.89283287900004,-1.534274997999887],[108.90056399800002,-1.532891533999916],[108.91684004000015,-1.538750908999944],[108.92855879000015,-1.544854424999855],[108.95573978000007,-1.563571872999916],[108.9642033210001,-1.573418877999842]]],[[[105.87574303500004,-1.489190362999835],[105.89429772200006,-1.490817966999856],[105.8943791020001,-1.490817966999856],[105.91374759200008,-1.494235934999864],[105.9217228520001,-1.50448984199997],[105.92750084700018,-1.518975518999923],[105.93946373800011,-1.535332940999936],[105.9476017590001,-1.538995049999982],[105.9588322270001,-1.539808851999823],[105.98047936300011,-1.538750908999944],[105.98707116000016,-1.542087497999887],[106.03394616000006,-1.575860283999873],[106.04151451900005,-1.583591403999876],[106.04558353000007,-1.594008070999877],[106.04444420700011,-1.604099216999842],[106.034434441,-1.61305103999986],[106.03191165500019,-1.624688408999873],[106.03191165500019,-1.665948174999912],[106.0354923840001,-1.678317966999856],[106.04371178500017,-1.686130466999856],[106.05290774800002,-1.691501559999907],[106.05933678500017,-1.696465752999856],[106.06373131600006,-1.705254815999837],[106.06934655000006,-1.723402601999837],[106.07300866000011,-1.730564059999864],[106.0789494150001,-1.736097914999888],[106.08570397200006,-1.740329684999907],[106.091075066,-1.745700778999861],[106.09343509200008,-1.755059502999899],[106.09449303500006,-1.767185153999975],[106.098399285,-1.776950778999932],[106.10580488400008,-1.783461196],[106.11793053500011,-1.785821221999882],[106.12696373800011,-1.790134372999887],[106.12647545700011,-1.799981377999984],[106.12273196700018,-1.811211846999896],[106.121348504,-1.81926848799985],[106.17457116000017,-1.879082940999979],[106.17945397200005,-1.888278903999875],[106.1748153000001,-1.898207289999874],[106.162364129,-1.963311455999985],[106.16260826900006,-2.007012627999885],[106.20069420700004,-2.178155205999886],[106.26417076900006,-2.351332289999988],[106.28907311300011,-2.39348723799985],[106.3188582690001,-2.431329033999887],[106.35401451900006,-2.462985934999864],[106.37086022200018,-2.472344658999901],[106.39616946700018,-2.48211028399993],[106.41911868600017,-2.484958591999884],[106.42920983200005,-2.47380950299987],[106.44109134200019,-2.471368096999839],[106.55339603000002,-2.510430596999882],[106.68295332100016,-2.532484632999967],[106.74838300900008,-2.5570614559999],[106.7690535820001,-2.560316664999931],[106.81544030000006,-2.560967705999886],[106.83326256600006,-2.566582940999893],[106.83326256600006,-2.580254815999837],[106.82642662900005,-2.586032809999892],[106.8186955090001,-2.586195570999948],[106.80974368600019,-2.585219007999882],[106.79908287900015,-2.587090752999856],[106.76596113400015,-2.605645440999851],[106.75538170700004,-2.608168226999865],[106.73804772200018,-2.614434502999828],[106.721934441,-2.629327080999957],[106.67481530000012,-2.69980234199987],[106.61198978000007,-2.870375257999882],[106.60377037900017,-2.910251559999864],[106.613047722,-2.942559502999884],[106.64893639400012,-2.963799737999863],[106.65992272200018,-2.965915622999872],[106.67432701900005,-2.96689218499985],[106.68295332100016,-2.970635674999969],[106.69255618600013,-2.979261976999894],[106.69825280000012,-2.988213799999826],[106.70582116000004,-2.995212497999901],[106.72087649800008,-2.997979424999855],[106.7384546230002,-3.004571221999839],[106.74577884200018,-3.020114841999842],[106.7449650400001,-3.038344007999825],[106.73829186300006,-3.053317966999856],[106.74756920700011,-3.06861744599999],[106.75196373800006,-3.073663018999852],[106.7444767590001,-3.080498955999857],[106.73568769600016,-3.076755466999927],[106.72828209700006,-3.082126559999878],[106.71957441500014,-3.090101820999934],[106.70728600399998,-3.0941708309999],[106.70036868600019,-3.092217705999857],[106.69369550900015,-3.088555596999896],[106.68702233200011,-3.086846612999892],[106.67066491000017,-3.096123955999843],[106.66529381600004,-3.092217705999857],[106.66130618600008,-3.085219007999953],[106.65577233200005,-3.080498955999857],[106.60124759200006,-3.071058851999851],[106.57374108200011,-3.076755466999927],[106.56641686300011,-3.101657809999949],[106.55648847700009,-3.09685637799987],[106.55274498800004,-3.0941708309999],[106.53223717500012,-3.105645440999851],[106.51710045700011,-3.094821872999844],[106.50757897199999,-3.072442315999837],[106.50440514400006,-3.04989999799993],[106.49968509200008,-3.038995049999869],[106.489024285,-3.030043226999837],[106.467051629,-3.015313408999845],[106.45899498800004,-3.004327080999971],[106.44703209700006,-2.981133721999853],[106.43604576900006,-2.970635674999969],[106.41651451900012,-2.965508721999868],[106.36866295700005,-2.966973565999922],[106.35035240999999,-2.960707289999888],[106.3020125660001,-2.91326262799987],[106.09400475400005,-2.840590101999965],[106.07390384200019,-2.836195570999891],[106.0024520190001,-2.830743096999868],[105.98650149800018,-2.821221612999949],[105.92253665500013,-2.715997002999913],[105.9075626960001,-2.674574476999894],[105.90162194100006,-2.62867604],[105.91236412900017,-2.585625908999887],[105.93262780000006,-2.541924737999892],[105.94434655000006,-2.498793226999965],[105.92888431100008,-2.456719658999916],[105.89747155000012,-2.436130466999884],[105.85938561300004,-2.420098565999893],[105.82878665500013,-2.39511484199987],[105.81902103000006,-2.347426039999903],[105.82553144600016,-2.318536065999979],[105.82593834700018,-2.307224216999913],[105.82341556100008,-2.297539971999853],[105.81470787900015,-2.282321872999873],[105.81055748800006,-2.265883070999877],[105.80079186300011,-2.245538018999895],[105.7985945970001,-2.234551690999922],[105.79908287900017,-2.20086028399983],[105.79574629000014,-2.1718075499999],[105.790293816,-2.159763278999847],[105.78044681100019,-2.150811455999914],[105.76441491,-2.142185153999989],[105.74756920700011,-2.136000257999839],[105.68873131600004,-2.127699476999865],[105.68384850400017,-2.125420830999971],[105.6736759770001,-2.116875908999873],[105.66944420700011,-2.114841403999932],[105.66309655000006,-2.115411065999908],[105.6521916020001,-2.120538018999909],[105.6482853520001,-2.121514580999886],[105.61622155000012,-2.1176083309999],[105.60743248800006,-2.114841403999932],[105.59376061300011,-2.103610934999935],[105.57764733200005,-2.077080987999878],[105.5657658210001,-2.066989841999913],[105.54224694100006,-2.081801039999888],[105.4912215500001,-2.098402601999851],[105.47022545700011,-2.108005467],[105.45036868600019,-2.122653903999918],[105.441091342,-2.12379322699995],[105.42188561300006,-2.121514580999886],[105.3569442070001,-2.121514580999886],[105.30640709700012,-2.135023695999863],[105.29835045700005,-2.131524346999882],[105.29314212300007,-2.126234632999811],[105.27149498800006,-2.094903252999856],[105.26791425900008,-2.087497653999861],[105.22982832100008,-2.070082289999888],[105.21290123800006,-2.066989841999913],[105.17896569100012,-2.069919528999932],[105.16114342500012,-2.073907158999901],[105.14747155000006,-2.080010674999897],[105.12794030000012,-2.044610283999972],[105.12549889400005,-2.004082940999865],[105.13591556100006,-1.965508721999896],[105.1543074880001,-1.935967705999843],[105.18360436300011,-1.916924737999849],[105.29835045700005,-1.873955987999878],[105.37566165500019,-1.821872653999932],[105.4023543630001,-1.783298434999949],[105.39454186300011,-1.737969658999859],[105.35523522200012,-1.71502044099995],[105.33545983200004,-1.69793059699991],[105.34302819100006,-1.690199476999823],[105.35108483200005,-1.686781507999811],[105.351328972,-1.678480726999822],[105.34603925900015,-1.658868096999868],[105.34986412900005,-1.648695570999905],[105.35914147200012,-1.643812757999854],[105.37029056100013,-1.640557549999897],[105.3802189460001,-1.634942315999979],[105.38379967500012,-1.629082940999851],[105.38933353000013,-1.61386484199987],[105.39454186300011,-1.607598565999837],[105.400157097,-1.606215101999851],[105.41285241000017,-1.60751718499985],[105.418711785,-1.604180596999825],[105.45964603000006,-1.562920830999871],[105.47169030000006,-1.558363539999917],[105.51807701900012,-1.559828382999882],[105.53679446700019,-1.555271091999842],[105.54639733200005,-1.549004815999879],[105.55372155000006,-1.54111093499999],[105.5657658210001,-1.531914971999839],[105.59408613400015,-1.525567315999908],[105.61101321700019,-1.540215752999828],[105.61890709700018,-1.565199476999837],[105.62110436300006,-1.590264580999843],[105.6287541020001,-1.614027601999837],[105.64844811300006,-1.633233330999886],[105.67497806100017,-1.647230726999851],[105.70289147200006,-1.655450127999856],[105.69141686300011,-1.671319268999881],[105.6517033210001,-1.706963799999841],[105.64975019600016,-1.721856377999885],[105.66309655000006,-1.739678643999866],[105.68181399800014,-1.755791924999841],[105.69556725400005,-1.765313408999916],[105.71509850400005,-1.773532809999921],[105.72820071700018,-1.772556247999859],[105.74122155000006,-1.767998955999985],[105.76099694100012,-1.765313408999916],[105.76563561300011,-1.768975518999881],[105.77263431100019,-1.786797783999859],[105.77808678500006,-1.792657158999901],[105.78541100400005,-1.794040622999873],[105.81275475400005,-1.792657158999901],[105.8046981130001,-1.772637627999842],[105.79167728000019,-1.753676039999917],[105.76099694100012,-1.720879815999908],[105.75098717500012,-1.703057549999841],[105.75082441500015,-1.6835263],[105.75757897200018,-1.645196221999825],[105.75464928500017,-1.642673434999906],[105.73707116000006,-1.614434502999842],[105.73389733200005,-1.605238539999874],[105.73170006600017,-1.589043877999828],[105.72974694100006,-1.580336195999934],[105.72396894600016,-1.56609465899983],[105.71664472700016,-1.552422783999887],[105.70728600400005,-1.540622654],[105.69556725400005,-1.531914971999839],[105.71998131600017,-1.524183851999837],[105.80909264400005,-1.525648695999891],[105.83432050900015,-1.517836195999891],[105.87574303500004,-1.489190362999835]]],[[[123.56885826900023,-1.600844007999882],[123.58130944100007,-1.602634372999958],[123.59034264400016,-1.598728122999873],[123.60059655000012,-1.603285415],[123.61036217500022,-1.611586195999905],[123.61646569099999,-1.62460702899989],[123.61597741000004,-1.640313408999859],[123.61410566500015,-1.652439059999935],[123.60873457100004,-1.6742489559999],[123.60865319100004,-1.688734632999854],[123.601328972,-1.702813408999972],[123.58643639400006,-1.712985934999935],[123.57927493600002,-1.71607838299991],[123.57488040500007,-1.719984632999825],[123.56421959699999,-1.721937757999868],[123.55396569100016,-1.720635674999869],[123.54542076900016,-1.721856377999885],[123.53435306100002,-1.716566664999988],[123.52214603000007,-1.705824476999893],[123.51514733200005,-1.703383070999863],[123.51172936300016,-1.709405205999871],[123.50367272199999,-1.712823174999869],[123.4935001960001,-1.70964934699991],[123.4873153000001,-1.699965101999936],[123.48487389400006,-1.693536065999837],[123.477793816,-1.668633721999981],[123.4755965500001,-1.64910247199991],[123.47852623800021,-1.634535414999974],[123.47836347700009,-1.619561455999943],[123.48080488400004,-1.615004164999902],[123.48275800900015,-1.610446872999873],[123.48804772200005,-1.603285415],[123.49268639400017,-1.594984632999854],[123.49146569100004,-1.584730726999908],[123.48503665500002,-1.57968515399989],[123.47950280000012,-1.577080987999892],[123.47689863400004,-1.570245049999954],[123.4767358730001,-1.562758070999905],[123.477793816,-1.557712497999873],[123.48194420700023,-1.544691664999888],[123.49089603000019,-1.524509372999859],[123.500743035,-1.509372653999861],[123.51140384200002,-1.505629165],[123.52068118600017,-1.504815362999821],[123.52523847700004,-1.498223565999837],[123.52328535200009,-1.482679945999933],[123.52906334700005,-1.480238539999903],[123.53736412900004,-1.485039971999882],[123.54468834700005,-1.497002862999821],[123.56006920700005,-1.545993747999887],[123.55925540500007,-1.555759373],[123.55591881600007,-1.56340911299985],[123.55738366000011,-1.581149997999844],[123.56885826900023,-1.600844007999882]]],[[[135.128672722,-1.476739190999908],[135.15088951900006,-1.483005466999856],[135.2047632170002,-1.477715752999885],[135.22754967500023,-1.487562757999896],[135.23926842500012,-1.489678643999824],[135.28565514400012,-1.476739190999908],[135.29664147200006,-1.480401299999869],[135.30502363400004,-1.48528411299992],[135.31568444100003,-1.487888278999918],[135.33399498800011,-1.484144789999888],[135.31185957100004,-1.510186455999872],[135.27540123800017,-1.522230726999965],[135.18685957100016,-1.525648695999891],[135.10434004000015,-1.518243096999896],[135.09685306100016,-1.508558851999851],[135.09839928500006,-1.48902760199995],[135.10906009200008,-1.47380950299997],[135.128672722,-1.476739190999908]]],[[[127.33708743600017,-1.353773695999862],[127.34571373800006,-1.365655205999914],[127.35417728000002,-1.365329684999892],[127.36255944100017,-1.362562757999839],[127.37110436300011,-1.367445570999905],[127.38135826900023,-1.397067966999856],[127.37875410200004,-1.405450127999899],[127.36117597699999,-1.408379815999837],[127.34782962300018,-1.41277434699991],[127.3266707690001,-1.431817315999907],[127.31666100399998,-1.436293226999865],[127.28419030000012,-1.425388278999975],[127.28581790500009,-1.400323174999897],[127.30453535200003,-1.377699476999837],[127.32349694100004,-1.37428150799991],[127.32545006600016,-1.368829033999887],[127.32740319099999,-1.365411065999879],[127.32886803500016,-1.361260674999841],[127.33025149800007,-1.353773695999862],[127.33708743600017,-1.353773695999862]]],[[[127.83082115999999,-1.431573174999869],[127.85173587300007,-1.436293226999865],[127.85840905000023,-1.4340145809999],[127.87549889400007,-1.424004815999822],[127.8857528000001,-1.42205169099995],[127.89893639400023,-1.426690362999892],[127.91911868600017,-1.445733330999886],[127.92986087300018,-1.449965101999808],[128.008067254,-1.504571221999953],[128.026621941,-1.529473565999908],[128.03532962300017,-1.538750908999944],[128.04672285200016,-1.546319268999909],[128.07064863400004,-1.556735934999978],[128.08033287900017,-1.562920830999871],[128.08961022200003,-1.567315362999935],[128.0983992850001,-1.565687757999825],[128.10670006600017,-1.561944268999895],[128.11451256600014,-1.559828382999882],[128.12631269600004,-1.563653252999899],[128.13461347700004,-1.57284921699987],[128.14519290500007,-1.594008070999877],[128.15902754000015,-1.636976821],[128.15113366000017,-1.66969166499986],[128.1264754570001,-1.693617445999919],[128.090586785,-1.710137627999899],[128.05152428500006,-1.714532158999873],[127.93344160200014,-1.682793877999913],[127.91309655000006,-1.682386976999908],[127.87696373800021,-1.693454684999864],[127.85474694100017,-1.696465752999856],[127.70329837300001,-1.690199476999823],[127.68458092500022,-1.695570570999863],[127.66968834699999,-1.707289320999948],[127.65805097699997,-1.719008071000019],[127.64869225400015,-1.724297783999916],[127.56885826900023,-1.732191664999974],[127.5327254570001,-1.731377862999963],[127.49415123800023,-1.717461846999981],[127.43262780000018,-1.686455987999878],[127.37867272200006,-1.632256768999909],[127.38306725400004,-1.610609632999839],[127.39861087300002,-1.573500257999825],[127.39828535200004,-1.554294528999947],[127.39649498800021,-1.540297132999811],[127.39926191499997,-1.527601820999933],[127.41285241000006,-1.511407158999887],[127.40357506600017,-1.491631768999866],[127.40943444100004,-1.473402601999965],[127.4200952480001,-1.456312757999925],[127.42579186300024,-1.43938567499994],[127.42839603000006,-1.415134372999873],[127.43531334700006,-1.41220468499985],[127.45997155000023,-1.428887627999885],[127.481700066,-1.448174737999821],[127.4878035820001,-1.449965101999808],[127.49390709700018,-1.444756768999909],[127.51099694100004,-1.421319268999923],[127.51465905000005,-1.41220468499985],[127.5214949880001,-1.401055596999825],[127.62452233200018,-1.329522393999881],[127.6342879570001,-1.32870859199987],[127.71355228000007,-1.344984632999811],[127.74105878999998,-1.354750257999839],[127.76539147200008,-1.368422132999882],[127.77588951900023,-1.384454033999873],[127.78484134200008,-1.402439059999907],[127.80567467500025,-1.419203382999825],[127.83082115999999,-1.431573174999869]]],[[[109.17693118600008,-1.27849700299997],[109.144216342,-1.311455987999864],[109.13851972700016,-1.314141533999845],[109.13599694100004,-1.309177341999969],[109.13379967500006,-1.297133070999877],[109.12842858200011,-1.296563408999987],[109.12159264400006,-1.29989999799993],[109.11491946700014,-1.298516533999859],[109.11573326900006,-1.303887627999913],[109.10824629000015,-1.304457289999874],[109.10075931100019,-1.300551039999888],[109.10132897200018,-1.292413018999951],[109.10792076900006,-1.284600518999881],[109.11475670700005,-1.280205987999892],[109.12281334700018,-1.27849700299997],[109.13257897200006,-1.278008721999981],[109.14372806100008,-1.273532809999935],[109.16130618600019,-1.256605726999851],[109.17017662900005,-1.257582289999917],[109.18189537900005,-1.266208591999927],[109.17693118600008,-1.27849700299997]]],[[[127.69760175900014,-1.231133721999853],[127.69288170700021,-1.249444268999909],[127.68067467500018,-1.264255466999884],[127.66602623800023,-1.271905205999914],[127.64584394600003,-1.270603122999916],[127.59034264400006,-1.243910414999974],[127.55258222700003,-1.236911716999913],[127.53150475400017,-1.23788827899989],[127.52214603000007,-1.247735283999987],[127.51490319100004,-1.262139580999957],[127.49830162900015,-1.259209893999937],[127.47885175900008,-1.249607028999875],[127.46338951900023,-1.243910414999974],[127.46070397200016,-1.235772393999881],[127.47388756599999,-1.217705987999864],[127.50163821700018,-1.189385674999912],[127.51644941500015,-1.179294528999932],[127.53150475400017,-1.172621351999894],[127.54721113400014,-1.171075127999856],[127.6101994150001,-1.193129164999931],[127.62745201900007,-1.207614841999884],[127.67448978000017,-1.209730726999894],[127.6899520190001,-1.213799737999864],[127.69760175900014,-1.231133721999853]]],[[[109.23414147200006,-1.224541924999869],[109.22339928499999,-1.227146091999956],[109.21851647200006,-1.220391533999845],[109.21851647200006,-1.206638278999918],[109.219981316,-1.198011976999823],[109.223887566,-1.191338799999855],[109.242442254,-1.17441171699987],[109.24870853000006,-1.170830987999906],[109.25464928500016,-1.169366143999852],[109.264903191,-1.174981377999842],[109.26514733200005,-1.187920830999857],[109.2597762380001,-1.20224374799993],[109.25294030000006,-1.212497653999947],[109.24577884200002,-1.217868747999915],[109.23414147200006,-1.224541924999869]]],[[[123.20101972700014,-1.155205987999821],[123.24610436300021,-1.223402601999837],[123.23707116000006,-1.232679945999891],[123.23047936300021,-1.241794528999876],[123.22217858200005,-1.248711846999882],[123.20785566499997,-1.251397393999866],[123.20183353000019,-1.256524346999867],[123.19874108200013,-1.268731377999856],[123.19760175900014,-1.295505466999856],[123.20167076900012,-1.30730559699991],[123.21045983200005,-1.316827080999914],[123.21998131600016,-1.324965101999922],[123.22575931100002,-1.332696221999853],[123.22803795700011,-1.348402601999823],[123.22779381600017,-1.379652601999879],[123.23194420700011,-1.394707940999893],[123.2553817070001,-1.377129815999865],[123.27214603000019,-1.354750257999839],[123.30079186300006,-1.305922132999839],[123.30469811300006,-1.302829684999864],[123.31657962300012,-1.296482029],[123.32113691500015,-1.292413018999951],[123.33545983200023,-1.271905205999914],[123.34441165500019,-1.242608330999886],[123.35222415500007,-1.229180596999981],[123.36597741000017,-1.223402601999837],[123.38363691500004,-1.22429778399983],[123.39283287900015,-1.223565362999892],[123.40007571700019,-1.220391533999845],[123.40691165500013,-1.219496351999851],[123.409922722,-1.228204033999916],[123.41179446700018,-1.239841403999932],[123.41407311300017,-1.247735283999987],[123.42847741000004,-1.257745049999883],[123.43523196700006,-1.250664971999839],[123.44166100400018,-1.237725518999824],[123.45508873800004,-1.230889580999985],[123.46501712300008,-1.236260674999869],[123.48682701900012,-1.259209893999937],[123.50310306100006,-1.264418226999851],[123.52173912900004,-1.26628997199991],[123.53907311300021,-1.272719007999825],[123.55095462300008,-1.284763278999932],[123.55372155000022,-1.303399346999825],[123.5517684250001,-1.324314059999878],[123.5384220710001,-1.360609632999967],[123.53345787900005,-1.381117445999933],[123.53484134200019,-1.412286065999837],[123.53345787900005,-1.42205169099995],[123.52857506600016,-1.433038018999824],[123.50310306100006,-1.460056247999873],[123.46216881600006,-1.494317315999851],[123.45386803500004,-1.498793226999808],[123.43572024800008,-1.503106377999899],[123.42758222700003,-1.507989190999879],[123.40837649800008,-1.516534112999892],[123.38119550900014,-1.498304945999919],[123.36215254000008,-1.511407158999887],[123.357188347,-1.472914320999976],[123.35010826900017,-1.45671965899993],[123.33179772200012,-1.449965101999808],[123.32764733200015,-1.444594007999854],[123.32813561300023,-1.432875257999868],[123.32683353000007,-1.421156507999868],[123.31771894600016,-1.415785414999917],[123.30551191499998,-1.416110934999935],[123.2963973320001,-1.417657158999887],[123.28858483200011,-1.421563408999873],[123.28028405000012,-1.428887627999885],[123.2587996750001,-1.465997002999899],[123.24984785200016,-1.510674737999864],[123.25228925900002,-1.600844007999882],[123.2504988940001,-1.62273528399983],[123.24333743600008,-1.632419528999876],[123.23552493600019,-1.627048434999921],[123.23194420700011,-1.604180596999825],[123.22681725400011,-1.593357028999918],[123.21517988399997,-1.595472914999931],[123.17839603000017,-1.622491143999881],[123.16993248800017,-1.619398695999976],[123.16439863400015,-1.609633070999948],[123.15674889400012,-1.600844007999882],[123.12387129000004,-1.591485283999859],[123.11589603000006,-1.586602471999967],[123.11068769600016,-1.576918226999837],[123.10914147200005,-1.565687757999825],[123.11182701900012,-1.556329033999972],[123.11890709700018,-1.552422783999887],[123.1308699880001,-1.547621351999808],[123.17725670700005,-1.518243096999896],[123.184825066,-1.485609632999853],[123.16358483200023,-1.353773695999862],[123.16488691500004,-1.322035414999902],[123.16358483200023,-1.312188408999972],[123.15943444100016,-1.306247653999861],[123.15235436300023,-1.300551039999888],[123.14551842500012,-1.299981377999913],[123.13697350400017,-1.324476820999934],[123.1235457690001,-1.332777601999837],[123.10792076900013,-1.338555596999882],[123.09457441499998,-1.346368096999882],[123.07195071700002,-1.393975518999866],[123.06397545700005,-1.401625257999896],[123.05339603,-1.40846119599999],[123.04517662900004,-1.424493096999981],[123.03321373800011,-1.456231377999941],[123.01392662900017,-1.485609632999853],[122.99317467500018,-1.509209893999895],[122.9199324880001,-1.574476820999891],[122.89584394599997,-1.589532158999987],[122.87403405000023,-1.584567966999941],[122.81202233200011,-1.443617445999877],[122.80738366000016,-1.401625257999896],[122.81088300900015,-1.358086846999953],[122.82081139400023,-1.313734632999839],[122.8361108730002,-1.274021091999913],[122.89869225400004,-1.184340101999879],[122.91382897200006,-1.176364841999913],[122.93580162900005,-1.179864190999822],[122.97152754000008,-1.19443124799993],[122.98536217500006,-1.19605885199995],[122.997325066,-1.190362237999878],[123.01710045700023,-1.172621351999894],[123.02979576900012,-1.168877862999864],[123.07422936300011,-1.162692966999969],[123.11207116000006,-1.162692966999969],[123.11833743600019,-1.165785414999874],[123.12517337300018,-1.17278411299985],[123.13379967500012,-1.179864190999822],[123.14625084700006,-1.183200778999847],[123.15935306100019,-1.179294528999932],[123.16309655000023,-1.169854424999841],[123.16431725400015,-1.158379815999879],[123.17042076900023,-1.148370049999983],[123.18287194100017,-1.142266533999916],[123.18946373800021,-1.145277601999908],[123.19418379000015,-1.151625257999854],[123.20101972700014,-1.155205987999821]]],[[[129.960703972,-1.176364841999913],[129.95329837300014,-1.189629815999851],[129.92725670700023,-1.210381768999937],[129.9253035820001,-1.205173434999864],[129.92269941500004,-1.200860283999859],[129.92074629000015,-1.195977471999967],[129.92042076900023,-1.189385674999912],[129.882090691,-1.219659112999906],[129.859222852,-1.233168226999879],[129.83090254000015,-1.237074476999879],[129.8725692070001,-1.210219007999882],[129.87940514400023,-1.202894789999888],[129.874196811,-1.196954033999944],[129.86182701900012,-1.200453382999854],[129.84961998800011,-1.206963799999841],[129.84457441499998,-1.210381768999937],[129.833262566,-1.211846612999821],[129.76270592500023,-1.210381768999937],[129.74390709700018,-1.199883721999882],[129.74878991000006,-1.185804945999934],[129.76742597700004,-1.172051690999822],[129.85865319100003,-1.142022393999866],[129.87940514400023,-1.141534112999878],[129.89633222700004,-1.154229424999855],[129.91700280000012,-1.156426690999837],[129.93767337300002,-1.156508070999919],[129.95443769600016,-1.162692966999969],[129.960703972,-1.176364841999913]]],[[[109.60629316500008,-0.974704684999892],[109.63965905000006,-0.996270440999893],[109.65674889400012,-1.003676039999888],[109.67457116,-1.003594658999987],[109.68620853000013,-0.996840101999865],[109.69507897200005,-0.988539320999891],[109.70460045700005,-0.983819268999966],[109.7234806650001,-0.987074476999837],[109.73926842500012,-0.998711846999924],[109.75131269600016,-1.014906507999882],[109.75977623800011,-1.0316708309999],[109.75977623800011,-1.103936455999886],[109.76295006600006,-1.109551690999879],[109.77003014400012,-1.11492278399993],[109.77711022200018,-1.121758721999868],[109.78028405000005,-1.131605726999965],[109.77686608200005,-1.140801690999851],[109.76807701900006,-1.146905205999929],[109.74610436300006,-1.155205987999821],[109.69825280000012,-1.190524997999844],[109.68775475400017,-1.19605885199995],[109.67448978000002,-1.199395440999893],[109.60132897200006,-1.230075778999975],[109.56950931100013,-1.247735283999987],[109.5359806650001,-1.259047132999882],[109.50245201900006,-1.292168877999913],[109.47868899800002,-1.298516533999859],[109.46558678500017,-1.293389580999929],[109.444997592,-1.28134531],[109.42554772200006,-1.266859632999882],[109.41724694100006,-1.254489841999842],[109.42066491000017,-1.231622002999842],[109.44450931100008,-1.168877862999864],[109.45232181100002,-1.00400156],[109.45923912900005,-0.985446872999987],[109.4754337900001,-0.976983330999872],[109.49122155000006,-0.979180596999853],[109.52515709700018,-0.988457940999908],[109.54420006600017,-0.9906552059999],[109.55616295700011,-0.987481377999842],[109.57715905000006,-0.97332122199991],[109.58790123800006,-0.970310153999989],[109.60629316500008,-0.974704684999892]]],[[[128.39275149800005,-1.035414321000019],[128.37289472700016,-1.037692966999913],[128.36508222700016,-1.036390882999825],[128.36890709700018,-1.03411223799985],[128.36166425900015,-1.033623955999943],[128.34376061300011,-1.029961846999896],[128.33033287900005,-1.020196221999868],[128.32683353000002,-1.006605726999822],[128.3296004570001,-0.991631768999881],[128.3296004570001,-0.978692315999865],[128.30543053500017,-0.962172132999896],[128.30046634200002,-0.955498955999843],[128.30152428500017,-0.95110442499994],[128.3061629570001,-0.943291924999869],[128.31421959700006,-0.939385674999869],[128.32349694100012,-0.941338799999912],[128.33090253999998,-0.949151299999897],[128.33545983200023,-0.960870049999897],[128.34083092500006,-0.969984632999967],[128.3580835300002,-0.979668877999842],[128.36736087300005,-0.98837656],[128.4034936860002,-0.995293877999828],[128.41146894600016,-1.009535414999931],[128.40674889400023,-1.025974216999927],[128.39275149800005,-1.035414321000019]]],[[[134.92798912900014,-1.072035414999874],[134.94361412900005,-1.079522393999923],[134.96192467500012,-1.070570570999905],[134.97852623800006,-1.027601820999948],[134.9982202480002,-1.018649998],[134.99301191500004,-1.033298434999921],[134.99122155000023,-1.049248955999929],[134.9913843110002,-1.08294036299985],[134.9567163420002,-1.12851327899989],[134.9425561860002,-1.133965752999842],[134.92579186300006,-1.135511976999879],[134.89210045700005,-1.134698174999869],[134.87842858200023,-1.130791924999954],[134.86353600400017,-1.121026299999841],[134.85157311300023,-1.108656507999896],[134.83513431100008,-1.071465752999899],[134.812836134,-1.049899997999972],[134.80005944100017,-1.027764580999914],[134.81641686300006,-1.000664971999967],[134.81853274800017,-0.995782158999916],[134.82007897200006,-0.976983330999872],[134.82593834700018,-0.965752862999949],[134.82984459700015,-0.960625908999859],[134.83375084700018,-0.956638278999875],[134.8491317070001,-0.944431247999901],[134.86280358200023,-0.937595309999963],[134.87777753999998,-0.936130467],[134.92359459700018,-0.949965101999908],[134.93751061300017,-0.957614841999856],[134.94361412900005,-0.966892184999892],[134.9455672540001,-0.975192966999884],[134.9546004570001,-0.9906552059999],[134.9567163420002,-1.000664971999967],[134.95573978000007,-1.008884372999887],[134.95142662900005,-1.024346612999906],[134.95045006600017,-1.035332940999865],[134.93213951900012,-1.057712497999887],[134.92798912900014,-1.072035414999874]]],[[[98.91797936300006,-0.940118096999896],[98.93751061300011,-0.960056247999887],[98.9458113940001,-0.984633070999976],[98.9393009770001,-1.003676039999888],[98.93238366,-0.996840101999865],[98.92481530000006,-0.992445570999891],[98.91602623800011,-0.990492445999934],[98.90528405000006,-0.9906552059999],[98.9129337900001,-1.006117445999919],[98.92188561300004,-1.017510674999969],[98.92945397200018,-1.029961846999896],[98.93246504000008,-1.049004815999979],[98.9383244150001,-1.065118096999953],[98.95240319100017,-1.075453382999882],[98.96810957100016,-1.083672783999958],[98.9803166020001,-1.093682549999855],[98.98926842500006,-1.111097914999917],[99.00171959700005,-1.144707940999936],[99.010996941,-1.158868096999868],[99.02662194100012,-1.174248955999914],[99.0325626960001,-1.182549737999892],[99.03492272200018,-1.192803643999909],[99.03638756600006,-1.205498955999886],[99.0403751960001,-1.210137627999899],[99.04704837300008,-1.213799737999864],[99.06430097700016,-1.234551690999865],[99.067637566,-1.24138762799987],[99.06959069100006,-1.251397393999866],[99.06519616000017,-1.251885674999855],[99.05738366000017,-1.26148854],[99.0530705090001,-1.272637627999842],[99.05909264400006,-1.278008721999981],[99.07764733200011,-1.283379815999865],[99.08741295700005,-1.296807549999855],[99.09644616000006,-1.332696221999853],[99.11670983200004,-1.366631768999895],[99.14405358200011,-1.389092705999886],[99.16472415500002,-1.414239190999879],[99.165293816,-1.456231377999941],[99.1557723320001,-1.451267184999907],[99.13054446700008,-1.428887627999885],[99.1242781910001,-1.428887627999885],[99.13062584700005,-1.448174737999821],[99.1458439460001,-1.469414971999896],[99.17888431100008,-1.504571221999953],[99.18824303500011,-1.510349216999927],[99.19703209700006,-1.512872002999856],[99.20362389400006,-1.51726653399983],[99.206309441,-1.528903903999932],[99.206309441,-1.556084893999852],[99.20972741000006,-1.572930596999853],[99.21941165500019,-1.579766533999873],[99.23365319100017,-1.580824476999823],[99.251231316,-1.580336195999934],[99.2620548840001,-1.58668385199995],[99.2724715500001,-1.601820570999948],[99.278086785,-1.620049737999849],[99.27442467500006,-1.634942315999979],[99.28687584700018,-1.653741143999852],[99.29428144600016,-1.686211846999839],[99.29200280000006,-1.718926690999865],[99.27442467500006,-1.737969658999859],[99.26148522200006,-1.66969166499986],[99.25416100400011,-1.654473565999879],[99.2267358730002,-1.614434502999842],[99.21404056100002,-1.623630466999913],[99.20875084700006,-1.625746351999837],[99.20004316500015,-1.628106377999885],[99.21078535200016,-1.638929945999877],[99.24537194100017,-1.715508721999939],[99.255056186,-1.756036065999879],[99.25489342500006,-1.77206796699987],[99.24415123800006,-1.778985283999859],[99.23080488400015,-1.777032158999915],[99.20818118600019,-1.770603122999901],[99.18213951900012,-1.773695570999891],[99.16456139400006,-1.778415622999887],[99.14820397200006,-1.785821221999882],[99.13428795700004,-1.796075127999899],[99.11850019600016,-1.802341403999861],[99.10059655000006,-1.799411716999842],[98.98568769600016,-1.740004164999888],[98.96013431100019,-1.713067315999908],[98.8986922540001,-1.687758070999877],[98.8847762380001,-1.679375908999916],[98.84302819100017,-1.621270440999865],[98.8381453790001,-1.617852471999939],[98.82642662900011,-1.612481377999899],[98.8226017590001,-1.607598565999837],[98.8303328790001,-1.570245049999954],[98.81169681100002,-1.528985283999916],[98.65137780000005,-1.298516533999859],[98.63550866,-1.289646091999899],[98.63086998800004,-1.284844658999916],[98.63005618600008,-1.280205987999892],[98.63160241,-1.269219658999845],[98.63086998800004,-1.264418226999851],[98.61378014400006,-1.229180596999981],[98.60694420700011,-1.220391533999845],[98.59376061300006,-1.198418877999828],[98.59791100400011,-1.176934502999884],[98.62403405000006,-1.134698174999869],[98.6428328790001,-1.093926690999893],[98.64893639400012,-1.072035414999874],[98.65137780000005,-1.049004815999979],[98.6497501960001,-1.004327080999843],[98.65162194100017,-0.98202890399989],[98.65821373800006,-0.963474216999884],[98.66846764400006,-0.954359632999811],[98.68482506600012,-0.948011976999865],[98.70411217500012,-0.944105726999879],[98.72364342500012,-0.942966403999932],[98.73796634200019,-0.9457333309999],[98.76905358200011,-0.956475518999909],[98.78858483200005,-0.956638278999875],[98.80323326900012,-0.949802341999941],[98.8274845710001,-0.927178643999895],[98.84001712300008,-0.922458591999884],[98.88282311300006,-0.91318124799993],[98.898203972,-0.915704033999845],[98.89161217500005,-0.935479424999954],[98.91797936300006,-0.940118096999896]]],[[[130.93490644600016,-0.925876559999892],[130.93970787900005,-0.932305596999896],[130.94483483200017,-0.932305596999896],[130.96078535200013,-0.922946872999873],[130.98031660200016,-0.917657158999887],[131.02662194100006,-0.91399504999984],[131.03077233200005,-0.913018487999864],[131.03484134200002,-0.914808851999851],[131.04379316500015,-0.922458591999884],[131.05274498800011,-0.932305596999896],[131.07488040500007,-0.966892184999892],[131.07618248800017,-0.974297783999887],[131.06153405000023,-0.989922783999873],[131.05738366,-1.000664971999967],[131.05933678500017,-1.004978122999887],[131.068614129,-1.021254164999917],[131.07178795700005,-1.0316708309999],[131.07252037899997,-1.07756926899988],[131.03736412900005,-1.226332289999945],[131.01465905000012,-1.268975518999895],[131.00977623800023,-1.288669528999932],[131.00660241000017,-1.31080494599999],[130.99756920700017,-1.3324520809999],[130.98259524800014,-1.348565362999878],[130.96192467500012,-1.353773695999862],[130.948496941,-1.348402601999823],[130.93238366000006,-1.326592705999943],[130.92090905000012,-1.319594007999882],[130.90821373800023,-1.321465752999842],[130.89470462300008,-1.32870859199987],[130.87940514400012,-1.340101820999919],[130.86304772200018,-1.337172132999811],[130.85328209700006,-1.330661716999913],[130.8289494150001,-1.291436455999886],[130.82048587300002,-1.281670830999857],[130.79737389400006,-1.264418226999851],[130.7697046230002,-1.248223565999893],[130.75806725400017,-1.238213799999911],[130.74968509200014,-1.223402601999837],[130.74878991000006,-1.216973565999837],[130.7502547540001,-1.202732028999918],[130.74968509200014,-1.19605885199995],[130.7462671230002,-1.190036716999856],[130.74187259200002,-1.186293226999837],[130.73780358200005,-1.184340101999879],[130.73601321700016,-1.183200778999847],[130.73226972700016,-1.167901299999883],[130.7312117850001,-1.158379815999879],[130.72925866000006,-1.150811455999843],[130.72234134200008,-1.141534112999878],[130.71176191499998,-1.132500908999958],[130.70346113400004,-1.127373955999857],[130.69597415500007,-1.120700778999904],[130.68824303500006,-1.107354424999897],[130.71013431100008,-1.092868747999844],[130.7119246750002,-1.069919528999861],[130.7018335300002,-1.045098565999893],[130.68824303500006,-1.024834893999895],[130.64942467500012,-0.98837656],[130.64975019600016,-0.973809502999899],[130.68067467500012,-0.956638278999875],[130.79004967500006,-0.929294528999904],[130.83057701900012,-0.907484632999854],[130.86850019600004,-0.893812757999825],[130.891856316,-0.889906507999825],[130.91293379000015,-0.894219658999916],[130.92904707100004,-0.911553643999909],[130.93490644600016,-0.925876559999892]]],[[[130.83912194100006,-0.76751067499984],[130.85206139400023,-0.769219658999845],[130.85718834700006,-0.768731377999856],[130.87354576900023,-0.764580987999821],[130.87940514400012,-0.764743747999887],[130.88941491000017,-0.768161716999884],[130.90601647200006,-0.776625257999839],[130.91724694100006,-0.778415622999916],[130.92457116000006,-0.780694268999895],[130.91675866000017,-0.785739841999913],[130.90479576900023,-0.790297132999953],[130.89991295700014,-0.791436455999985],[130.89112389400012,-0.794854424999912],[130.8824975920002,-0.795993747999859],[130.87574303500006,-0.7992489559999],[130.87322024800002,-0.808851820999877],[130.876719597,-0.817559502999856],[130.88428795700005,-0.819512627999899],[130.89161217500006,-0.820407809999892],[130.8937280610002,-0.82626718499985],[130.88965905000023,-0.832777601999837],[130.8816024100001,-0.839532158999958],[130.87183678500006,-0.844659112999892],[130.8475041020001,-0.851006768999909],[130.81934655000012,-0.870293877999941],[130.80079186300011,-0.874607028999861],[130.7622176440001,-0.876641533999887],[130.617930535,-0.908461195999919],[130.54346764400023,-0.913832289999874],[130.51002037900017,-0.922458591999884],[130.51002037900017,-0.914971612999906],[130.519867384,-0.91130950299987],[130.52369225400005,-0.908786716999856],[130.50359134200008,-0.90740325299987],[130.48731530000023,-0.903903903999961],[130.47543378999998,-0.905938408999987],[130.46851647200018,-0.922458591999884],[130.46168053500017,-0.922458591999884],[130.45264733200005,-0.910577080999843],[130.43677819100006,-0.913262627999913],[130.400157097,-0.929294528999904],[130.40943444100017,-0.912041924999898],[130.4277449880002,-0.902927341999984],[130.44068444100003,-0.89316171699987],[130.434336785,-0.874607028999861],[130.44752037900005,-0.860935153999918],[130.44841556100008,-0.818617445999905],[130.46168053500017,-0.805108330999929],[130.46127363400015,-0.816013278999918],[130.46168053500017,-0.819431247999916],[130.46851647200018,-0.819431247999916],[130.47071373800006,-0.806735934999949],[130.47852623800006,-0.799899997999844],[130.490000847,-0.7992489559999],[130.50318444100017,-0.805108330999929],[130.49463951900023,-0.827894789999874],[130.51905358200008,-0.83961353999986],[130.5509546230002,-0.834161065999908],[130.56470787900005,-0.805108330999929],[130.57398522200018,-0.809828382999853],[130.58041425899998,-0.815606377999913],[130.58464603000013,-0.823174737999864],[130.58643639400012,-0.833103122999859],[130.6158960300002,-0.811781507999896],[130.63119550900015,-0.806247653999961],[130.64665774800008,-0.812595309999906],[130.64503014400023,-0.814222914999931],[130.64380944100006,-0.814873955999886],[130.64258873800011,-0.816013278999918],[130.64112389400023,-0.819431247999916],[130.65430748800011,-0.823988539999874],[130.66391035200016,-0.82089609199997],[130.67188561300023,-0.815199476999808],[130.68067467500012,-0.812595309999906],[130.69459069100017,-0.815199476999808],[130.71851647200006,-0.824314059999978],[130.73275800900015,-0.82626718499985],[130.7579858730002,-0.818942966999927],[130.78028405000023,-0.805922132999939],[130.80014082100016,-0.801446221999882],[130.81788170700023,-0.819431247999916],[130.81918379000015,-0.809665622999887],[130.81755618600013,-0.805922132999939],[130.81104576900012,-0.798923434999878],[130.81657962300002,-0.788262627999927],[130.80062910200004,-0.769952080999872],[130.8042098320001,-0.757256768999824],[130.81185957100004,-0.764743747999887],[130.81999759200008,-0.767347914999874],[130.83912194100006,-0.76751067499984]]],[[[135.42335045700023,-0.654880466999899],[135.429453972,-0.65545012799987],[135.44092858200014,-0.652439059999878],[135.4467879570001,-0.652113539999945],[135.4524845710001,-0.654229424999855],[135.463145379,-0.661390882999811],[135.46900475400017,-0.664239190999851],[135.49878991000017,-0.672458591999927],[135.5512801440001,-0.677178643999852],[135.56267337300008,-0.676364841999842],[135.58334394599999,-0.666680596999882],[135.5924585300002,-0.67546965899993],[135.60157311300006,-0.695896091999913],[135.66651451900023,-0.682793877999856],[135.67725670700005,-0.685642184999892],[135.67945397200006,-0.691338799999954],[135.688731316,-0.708672783999944],[135.6909285820001,-0.719821872999873],[135.69507897200006,-0.729587497999916],[135.70492597700016,-0.726739190999879],[135.71631920700023,-0.719496351999851],[135.72510826900012,-0.716403903999876],[135.75709069100017,-0.739353122999944],[135.77751712300008,-0.748711846999896],[135.78646894599999,-0.740329684999921],[135.79281660200002,-0.72918059699991],[135.80860436300006,-0.714125257999896],[135.8283797540001,-0.700860283999873],[135.84742272200015,-0.695896091999913],[135.8693139980002,-0.703789971999882],[135.89356530000012,-0.721123955999872],[135.96631920700005,-0.796075127999842],[136.04558353000002,-0.853204033999901],[136.06576582100013,-0.871677341999842],[136.0776473320001,-0.899997653999876],[136.0846460300002,-0.910251559999906],[136.09253991000017,-0.918877862999821],[136.10499108200005,-0.927829684999935],[136.10906009200002,-0.940118096999896],[136.11182701900012,-0.953789971999839],[136.1147567070001,-0.963474216999884],[136.12973066500015,-0.978448174999826],[136.1481225920002,-0.991387627999842],[136.16358483200008,-1.004978122999887],[136.17335045700017,-1.031345309999878],[136.18734785200002,-1.04957447699995],[136.19629967500023,-1.066582940999837],[136.20875084700018,-1.064060153999904],[136.22055097700004,-1.056735934999907],[136.22461998800011,-1.05282968499999],[136.24594160200016,-1.04876067499994],[136.27344811300011,-1.047295830999886],[136.297129754,-1.054375908999859],[136.30730228000007,-1.076348565999865],[136.3167423840001,-1.08562590899983],[136.37566165500002,-1.093682549999855],[136.3849389980002,-1.107517184999864],[136.38111412900014,-1.123223565999822],[136.368418816,-1.136163018999838],[136.35132897200018,-1.141534112999878],[136.34066816500004,-1.147393487999835],[136.29363040500002,-1.183200778999847],[136.2306421230002,-1.192966403999876],[136.214691602,-1.199476820999877],[136.2011824880001,-1.207940362999906],[136.18165123800023,-1.215427341999884],[136.16065514400012,-1.220879815999822],[136.14283287900005,-1.223402601999837],[136.09945722700016,-1.215997002999856],[136.03638756600006,-1.176446221999896],[135.99138431100008,-1.168877862999864],[135.96851647200006,-1.172621351999894],[135.92994225400017,-1.186293226999837],[135.906016472,-1.189385674999912],[135.88502037900014,-1.183038018999881],[135.86402428500006,-1.167575778999861],[135.84620201900017,-1.147637627999956],[135.83432050900004,-1.12851327899989],[135.8282983730002,-1.107842705999886],[135.83432050900004,-1.049004815999979],[135.83106530000018,-1.03964609199987],[135.81641686300017,-1.020277601999851],[135.8132430350001,-1.014906507999882],[135.81177819100003,-1.003513279],[135.7994897800002,-0.970310153999989],[135.78101647200006,-0.872653903999989],[135.76539147200018,-0.839288018999838],[135.74097741,-0.81902434699991],[135.71908613399998,-0.824802341999884],[135.699961785,-0.844903252999842],[135.68409264400006,-0.867120049999883],[135.66081790500007,-0.887139580999943],[135.64063561300023,-0.881605726999837],[135.48487389400006,-0.757256768999824],[135.47901451900023,-0.768731377999856],[135.47974694100017,-0.780205987999906],[135.4917098320001,-0.805108330999929],[135.45866946700008,-0.792738539999902],[135.4226180350001,-0.762383721999839],[135.3937280610002,-0.723402601999936],[135.36988366000008,-0.653497002999828],[135.37037194100017,-0.635918877999899],[135.3893335300002,-0.627618096999825],[135.39893639400006,-0.631036065999837],[135.41456139400023,-0.648695570999934],[135.42335045700023,-0.654880466999899]]],[[[127.31804446700019,-0.780043226999851],[127.31983483200004,-0.793633721999896],[127.27881920700004,-0.805596612999835],[127.26880944100019,-0.805108330999929],[127.26490319100016,-0.802015882999853],[127.25310306100013,-0.788995049999954],[127.24830162900005,-0.785251559999935],[127.21656334700016,-0.782403252999899],[127.18018639400012,-0.783868096999853],[127.15552819100012,-0.772393487999821],[127.15894616,-0.730645440999879],[127.16895592500006,-0.710219007999811],[127.18018639400012,-0.69312916499986],[127.18930097700009,-0.674981377999941],[127.19459069100006,-0.635186455999872],[127.20085696700019,-0.622816664999917],[127.21404056100006,-0.615411065999851],[127.24415123800011,-0.613946221999882],[127.25082441500014,-0.614922783999859],[127.25660241,-0.616957289999888],[127.26124108200024,-0.62021249799993],[127.24878990999999,-0.637627862999892],[127.25513756600006,-0.650485934999921],[127.26807701900022,-0.661228122999844],[127.275075717,-0.67253997199991],[127.27800540500007,-0.675713799999969],[127.29175866000018,-0.694512627999842],[127.29615319100006,-0.702732028999932],[127.29721113400002,-0.712579033999859],[127.29517662900015,-0.733656507999882],[127.29615319100006,-0.743747653999847],[127.31804446700019,-0.780043226999851]]],[[[130.68799889400012,-0.463148695999962],[130.68344160200016,-0.47722747199991],[130.65455162900005,-0.516696872999887],[130.64112389400023,-0.527520440999965],[130.5963647800002,-0.538506768999838],[130.58106530000023,-0.539239190999865],[130.57154381600006,-0.531996351999851],[130.58366946700002,-0.523858330999829],[130.5976668630001,-0.49081796699987],[130.59685306100016,-0.464532158999944],[130.56470787900005,-0.476739190999922],[130.56226647200015,-0.481052341999842],[130.55827884200014,-0.495049737999977],[130.55445397200012,-0.50090911299985],[130.54761803500017,-0.505303643999824],[130.53370201900012,-0.509860934999864],[130.52711022200006,-0.514336846999839],[130.51710045700023,-0.517754815999851],[130.46168053500017,-0.525160414999917],[130.47046959700006,-0.514336846999839],[130.48243248800006,-0.509209893999909],[130.49252363400015,-0.503350518999881],[130.49634850400003,-0.490411065999865],[130.48113040500007,-0.495782158999916],[130.46949303500017,-0.490329684999892],[130.46094811300023,-0.478122653999904],[130.45484459700006,-0.463799737999835],[130.46355228000007,-0.465508721999839],[130.46859785200016,-0.467217705999843],[130.47217858200023,-0.470310153999918],[130.47584069100012,-0.476739190999922],[130.48218834700006,-0.464532158999944],[130.49382571700002,-0.450127862999892],[130.50505618600002,-0.441338799999826],[130.51002037900017,-0.4457333309999],[130.51343834700018,-0.461846612999963],[130.52247155000012,-0.468926690999851],[130.53516686300006,-0.468926690999851],[130.550466342,-0.463799737999835],[130.55933678500017,-0.455987237999835],[130.56959069100012,-0.444105726999879],[130.58228600400017,-0.433200778999989],[130.60613040500007,-0.426690362999906],[130.61011803500006,-0.422621351999865],[130.61312910200004,-0.417575779],[130.61744225400005,-0.412530205999886],[130.62501061300006,-0.409600518999866],[130.63209069100006,-0.41130950299987],[130.64584394600016,-0.419366143999909],[130.67025800900004,-0.43027109199997],[130.67758222700004,-0.435804945999905],[130.6863712900001,-0.449151299999826],[130.68799889400012,-0.463148695999962]]],[[[129.8881942070001,-0.494724216999955],[129.87794030000018,-0.5023739559999],[129.8644311860002,-0.49863046699987],[129.851410352,-0.481622002999984],[129.84408613400004,-0.462334893999952],[129.84424889400017,-0.444268487999935],[129.84888756600017,-0.432386976999808],[129.85450280000006,-0.426527601999851],[129.859629754,-0.422946872999887],[129.87378991000006,-0.414971612999835],[129.89234459700006,-0.409356377999828],[129.90235436300011,-0.408461195999934],[129.91000410200016,-0.413506768999952],[129.9161889980002,-0.427422783999845],[129.91382897200006,-0.442559502999842],[129.90853925899998,-0.449395440999865],[129.90284264400012,-0.459161065999893],[129.89714603,-0.479180596999953],[129.8881942070001,-0.494724216999955]]],[[[121.85385175900002,-0.401055596999853],[121.89551842500005,-0.42839934699991],[121.90170332100017,-0.437188408999887],[121.91065514400006,-0.460381768999909],[121.91602623800023,-0.469903252999913],[121.9135848320001,-0.486423434999892],[121.90642337300008,-0.499281507999825],[121.89478600400015,-0.507907809999921],[121.87842858200023,-0.510918877999913],[121.87452233200023,-0.505954684999878],[121.847911004,-0.483330987999906],[121.83472741000006,-0.476739190999922],[121.84644616000006,-0.500258070999891],[121.84473717500023,-0.507989190999893],[121.83090254000015,-0.510918877999913],[121.8165796230001,-0.507745049999855],[121.80128014400012,-0.493584893999923],[121.7900496750001,-0.490411065999865],[121.746348504,-0.483656507999839],[121.73536217500023,-0.47991301899998],[121.7255965500001,-0.483086846999868],[121.70093834699999,-0.53508879999984],[121.68897545700011,-0.54314544099995],[121.67172285200009,-0.55038827899989],[121.65455162900005,-0.552422783999916],[121.64226321700019,-0.545586846999981],[121.64177493600017,-0.531019789999874],[121.65015709700018,-0.512627862999835],[121.6798608730002,-0.468926690999851],[121.689707879,-0.458184502999828],[121.70191491000013,-0.449639580999985],[121.73422285200004,-0.434991143999895],[121.74089603000007,-0.429131768999937],[121.75212649800007,-0.401055596999853],[121.77857506600006,-0.424574476999808],[121.79948978000014,-0.420505466999856],[121.82211347700016,-0.406670830999857],[121.85385175900002,-0.401055596999853]]],[[[132.4371850920002,-0.347100518999923],[132.6792098320001,-0.368910414999888],[132.70915774800008,-0.360039971999839],[132.90528405000018,-0.453220309999878],[132.9254663420002,-0.456312757999868],[132.93677819100017,-0.454034112999892],[132.95980879000012,-0.44198984199987],[132.97510826900012,-0.444756768999923],[132.97868899800005,-0.451836846999896],[132.97868899800005,-0.460870049999897],[132.98340905000006,-0.469903252999913],[132.99968509200014,-0.480889580999957],[133.03353925899998,-0.497328382999953],[133.04835045700017,-0.507907809999921],[133.0573022800002,-0.511163018999952],[133.06959069100006,-0.511895440999979],[133.08985436300023,-0.510918877999913],[133.0952254570001,-0.513767184999949],[133.10670006600006,-0.527520440999965],[133.11329186300023,-0.531996351999851],[133.12322024800002,-0.533379815999837],[133.14470462300008,-0.531182549999841],[133.15479576900012,-0.531996351999851],[133.2889103520001,-0.628513278999989],[133.31495201900023,-0.653985283999916],[133.32601972699996,-0.678806247999873],[133.33562259200005,-0.690362237999977],[133.3790796230002,-0.717705987999864],[133.39161217500012,-0.72323984199997],[133.55836022200006,-0.743747653999847],[133.56267337300002,-0.745212497999901],[133.5672306650001,-0.748304945999891],[133.57276451900012,-0.750909112999878],[133.57935631600017,-0.750583591999856],[133.58619225400017,-0.736911716999913],[133.59245853,-0.732110283999845],[133.59750410200016,-0.726739190999879],[133.60474694100017,-0.725681248],[133.61695397200018,-0.733656507999882],[133.63306725400005,-0.741875908999958],[133.65609785200004,-0.747002862999892],[133.74537194100006,-0.750746351999823],[133.75912519600016,-0.745212497999901],[133.75123131600017,-0.730645440999879],[133.75993899800008,-0.720879815999922],[133.7740991550002,-0.717217705999886],[133.790375196,-0.718519789999874],[133.80591881600006,-0.72323984199997],[133.81226647200015,-0.727634372999873],[133.82984459700012,-0.743747653999847],[133.83838951900012,-0.743096612999892],[133.85084069100006,-0.739190362999977],[133.90723717500003,-0.731133721999868],[133.94841556100008,-0.731540622999873],[133.96387780000006,-0.729587497999916],[133.9772241550002,-0.72323984199997],[133.99488366,-0.73333098799985],[134.05640709700018,-0.795179945999934],[134.0667423840001,-0.802422783999859],[134.08936608200023,-0.807549737999878],[134.1007593110002,-0.812595309999906],[134.10914147200018,-0.820082289999959],[134.12533613400004,-0.83879973799985],[134.1349389980002,-0.846774997999901],[134.163828972,-0.858086846999882],[134.17212975400017,-0.863864841999842],[134.17123457099999,-0.875909112999864],[134.15154056100008,-0.882989190999908],[134.08871503999998,-0.890069268999881],[134.07447350400017,-0.894952080999857],[134.06812584700003,-0.90740325299987],[134.0665796230002,-0.932305596999896],[134.05892988399998,-0.948174737999921],[134.04468834700018,-0.951348565999979],[134.03614342500023,-0.957777601999822],[134.07797285200016,-1.045586846999882],[134.0905054050002,-1.062676690999922],[134.09506269600004,-1.071954033999887],[134.09799238400015,-1.093438408999916],[134.103770379,-1.103936455999886],[134.11215254000015,-1.115411065999837],[134.12745201900023,-1.148370049999983],[134.14144941499998,-1.165785414999874],[134.159922722,-1.18368906],[134.17847741,-1.197442315999851],[134.1928817070001,-1.202894789999888],[134.20378665500007,-1.21257903399993],[134.26742597700004,-1.330254815999908],[134.28199303500017,-1.350192966999899],[134.23910566499998,-1.416273695999905],[134.23047936300006,-1.436293226999865],[134.23047936300006,-1.476739190999908],[134.22144616000017,-1.54404062299993],[134.21583092500006,-1.560316664999874],[134.20720462300008,-1.573500257999825],[134.15430748800011,-1.628350518999824],[134.13900800900015,-1.638116143999866],[134.12598717500018,-1.652276299999968],[134.11719811300011,-1.655450127999856],[134.10531660200016,-1.657484632999882],[134.09644616,-1.663181247999859],[134.09034264400012,-1.671807549999869],[134.08708743600005,-1.682793877999913],[134.0892033210001,-1.697035414999917],[134.10352623800017,-1.737725518999909],[134.14486738399998,-1.939141533999901],[134.1495874360002,-2.015313408999873],[134.14861087300002,-2.025485934999907],[134.14975019600016,-2.028985283999986],[134.15284264400023,-2.033786716999899],[134.15552819100006,-2.039483330999872],[134.15528405000003,-2.045830987999906],[134.15137780000006,-2.047295830999872],[134.14429772200006,-2.045830987999906],[134.13786868600013,-2.045342705999829],[134.1349389980002,-2.049574476999851],[134.11963951900023,-2.11386484199987],[134.1206160820001,-2.135349216999884],[134.12614993600002,-2.144952080999872],[134.14234459700018,-2.1547177059999],[134.14861087300002,-2.1625302059999],[134.152110222,-2.175469658999986],[134.15162194100003,-2.184991143999895],[134.14966881600017,-2.194594007999882],[134.14861087300002,-2.207207940999865],[134.15170332100004,-2.227634372999929],[134.16570071700005,-2.259698174999912],[134.16895592500012,-2.279229424999897],[134.16277103000007,-2.301690362999977],[134.1616317070001,-2.310235283999916],[134.16480553500017,-2.320489190999851],[134.17945397200018,-2.33562590899993],[134.18262780000023,-2.34441497199991],[134.18572024800002,-2.361911716999856],[134.19336998800006,-2.379082940999879],[134.20435631600006,-2.39511484199987],[134.21680748800023,-2.408949476999879],[134.25912519600016,-2.440524997999873],[134.27084394600016,-2.465020440999979],[134.28435306100013,-2.479261976999894],[134.30014082100016,-2.49195728999986],[134.31299889400006,-2.498304945999976],[134.31934655000012,-2.50530364399988],[134.3302514980002,-2.522230726999865],[134.3375757170002,-2.541924737999892],[134.34546959700018,-2.576592705999871],[134.36361738400007,-2.617852471999839],[134.36150149800008,-2.634942315999879],[134.38135826900017,-2.653985283999873],[134.39063561300011,-2.681084893999895],[134.40170332100016,-2.744805596999853],[134.40902754000015,-2.755140882999854],[134.42074629000015,-2.766045830999843],[134.43165123800023,-2.77939218499985],[134.44027754000004,-2.808282158999944],[134.46387780000018,-2.854668877999913],[134.46387780000018,-2.862074476999823],[134.48861738400015,-2.861260674999897],[134.50554446700002,-2.853773695999919],[134.53272545700023,-2.834161065999865],[134.52662194100006,-2.821954033999887],[134.5190535820001,-2.778903903999861],[134.51465905000012,-2.769626559999907],[134.50318444100014,-2.750909112999835],[134.49927819100017,-2.738539320999891],[134.49838300899998,-2.724867445999947],[134.50025475400003,-2.69695403399983],[134.49927819100017,-2.683282158999887],[134.49463951900023,-2.670098565999837],[134.48145592500012,-2.64544036299985],[134.47754967500012,-2.634942315999879],[134.473968946,-2.606540622999844],[134.47437584700006,-2.580743096999825],[134.4780379570001,-2.558038018999866],[134.48438561300023,-2.539320570999905],[134.49634850400017,-2.517836195999877],[134.50928795700014,-2.507745049999912],[134.55372155000006,-2.491469007999882],[134.54118899800008,-2.486748955999872],[134.534515821,-2.478773695999905],[134.53565514400023,-2.469984632999854],[134.54639733200005,-2.462985934999864],[134.55632571700008,-2.4647763],[134.57699628999998,-2.480726820999948],[134.584239129,-2.484633070999863],[134.60425866000017,-2.488457940999879],[134.62305748800023,-2.498142184999921],[134.63843834700018,-2.511163018999909],[134.648203972,-2.525079033999901],[134.65805097700004,-2.562758070999962],[134.66684003999998,-2.825616143999852],[134.670013868,-2.837660414999945],[134.7013452480002,-2.958672783999859],[134.72706139400015,-2.985772393999966],[134.77222741,-2.977634372999873],[134.82781009200008,-2.913750908999859],[134.85132897200012,-2.899834893999866],[134.86109459700006,-2.94003671699987],[134.8518172540001,-3.003676040000016],[134.84685306100002,-3.018487237999821],[134.84245853000007,-3.023044528999861],[134.83692467500023,-3.025811455999914],[134.83106530000012,-3.030205987999892],[134.8263452480002,-3.039646091999913],[134.82422936300006,-3.050388278999918],[134.8263452480002,-3.083916924999954],[134.81666100400005,-3.121840101999894],[134.81853274800017,-3.136325778999847],[134.85368899800008,-3.147881768999952],[134.86117597700002,-3.162692966999927],[134.86793053500017,-3.204034112999878],[134.86963951900017,-3.209161065999879],[134.87305748800006,-3.213148695999948],[134.87476647200018,-3.217705987999906],[134.87452233200023,-3.217950127999856],[134.87598717500012,-3.231866143999838],[134.87476647200018,-3.232028903999975],[134.880625847,-3.242933851999865],[134.8859155610002,-3.249769789999888],[134.89893639400006,-3.262790622999958],[134.91439863400004,-3.268812757999882],[134.93181399800008,-3.261651299999926],[134.96412194100012,-3.238213799999869],[134.96257571700008,-3.249444268999866],[134.95679772200018,-3.26946379999984],[134.9567163420002,-3.279880467],[134.96029707099999,-3.285332940999865],[134.97461998800006,-3.300876559999864],[134.98471113400015,-3.329685153999975],[135.0021264980002,-3.336114190999908],[135.04607181100002,-3.3344052059999],[135.06910240999997,-3.338555596999839],[135.0971785820001,-3.35751718499985],[135.1115014980002,-3.361748955999957],[135.275645379,-3.368584893999895],[135.2960718110002,-3.372002862999892],[135.32203209700018,-3.386488539999945],[135.34083092500012,-3.389743747999887],[135.36231530000023,-3.386163018999824],[135.40308678499997,-3.371840101999836],[135.470469597,-3.363051039999874],[135.48894290500007,-3.356703382999839],[135.50538170700023,-3.348077080999843],[135.52173912900017,-3.335544528999932],[135.56364993600008,-3.289727471999839],[135.5691024100001,-3.281670830999985],[135.57325280000023,-3.270114841999884],[135.57439212300008,-3.258070570999863],[135.57048587300005,-3.248711846999839],[135.5737410820002,-3.241306247999844],[135.60157311300006,-3.204034112999878],[135.63892662900005,-3.178155205999857],[135.71900475399997,-3.148614190999978],[135.75171959700006,-3.128350518999881],[135.76710045700003,-3.108819268999909],[135.76319420700005,-3.09954192499994],[135.75196373800006,-3.091729424999869],[135.7456160820002,-3.077080987999849],[135.74740644600004,-3.070000908999972],[135.75180097700004,-3.062107028999918],[135.75733483200023,-3.05584075299987],[135.76490319100017,-3.052178643999824],[135.76685631600006,-3.04989999799993],[135.76978600400005,-3.047539971999882],[135.7756453790001,-3.046482028999932],[135.7994897800002,-3.053317966999856],[135.8169051440002,-3.042901299999869],[135.8431095710001,-3.011976820999919],[135.88851972700016,-3.000095309999864],[135.909922722,-2.985772393999966],[135.92652428500017,-2.965915622999872],[135.936778191,-2.943454684999878],[135.93588300900004,-2.927178643999852],[135.92497806100002,-2.89039478999986],[135.92676842500012,-2.878838799999841],[135.95191491,-2.852146091999899],[135.96045983200023,-2.837660414999945],[135.96461022200018,-2.820489190999922],[135.96461022200018,-2.775811455999957],[135.969574415,-2.770114841999884],[135.99236087300002,-2.752048434999878],[135.99878991000006,-2.744805596999853],[136.01295006600017,-2.74700286299985],[136.0232039720001,-2.707696221999925],[136.03638756600006,-2.69695403399983],[136.04542076900017,-2.696221612999892],[136.05567467500006,-2.69345468499992],[136.06373131600006,-2.688164971999853],[136.06714928500003,-2.679864190999879],[136.0722762380002,-2.672621351999851],[136.08448326900012,-2.668064059999907],[136.10865319100006,-2.662774346999839],[136.19743899800008,-2.624444268999895],[136.23682701900017,-2.596123955999943],[136.26636803500006,-2.560316664999931],[136.2760522800002,-2.540134372999916],[136.28239993600013,-2.519707940999851],[136.28874759200008,-2.45012786299985],[136.29395592500023,-2.433526299999969],[136.3024194670002,-2.420830987999835],[136.33448326900017,-2.384535415],[136.34408613400012,-2.368259372999972],[136.34815514400012,-2.351250908999916],[136.34717858200023,-2.340264580999872],[136.34253991,-2.31910572699995],[136.34009850400017,-2.289239190999879],[136.34197024800002,-2.283379815999922],[136.34815514400012,-2.271742446],[136.36207116000017,-2.25212981599995],[136.3808699880002,-2.234063408999845],[136.4038192070002,-2.219659112999963],[136.43018639400012,-2.211032809999878],[136.48145592500023,-2.211032809999878],[136.4929305350001,-2.207126559999963],[136.52214603000002,-2.191338799999841],[136.53256269600004,-2.189873955999957],[136.53679446700008,-2.19898853999986],[136.53370201900017,-2.213067315999908],[136.53296959700006,-2.225844007999853],[136.5434676440001,-2.231377862999863],[136.56820722700016,-2.233005466999884],[136.59473717500023,-2.237562757999925],[136.60206139400023,-2.249769789999903],[136.605235222,-2.252048434999878],[136.61304772200012,-2.250909112999935],[136.6264754570001,-2.246270440999822],[136.63282311300023,-2.245049737999906],[136.64649498800017,-2.246351820999905],[136.68392988399998,-2.25872161299985],[136.7046004570001,-2.237562757999925],[136.71697024800008,-2.239190362999864],[136.7371525400001,-2.249444268999881],[136.74927819100017,-2.252048434999878],[136.75863691500004,-2.248711846999853],[136.76547285200004,-2.241631768999895],[136.7708439460001,-2.234633070999905],[136.7768660820001,-2.231377862999863],[136.80591881600017,-2.226739190999851],[136.81446373800011,-2.224053643999866],[136.86719811300006,-2.188164971999953],[136.92701256600006,-2.176202080999843],[136.93848717500006,-2.172539971999967],[136.943125847,-2.163506768999881],[136.94581139400012,-2.152276299999869],[136.9515080090001,-2.142185153999989],[136.98145592500023,-2.126560154],[137.02409915500007,-2.118422132999811],[137.15430748800023,-2.111504815999908],[137.17847741000006,-2.106133721999939],[137.194590691,-2.097344658999887],[137.22632897200018,-2.074395440999979],[137.23365319100017,-2.060967705999985],[137.22527103000013,-2.038995049999883],[137.20264733200023,-2.018812757999868],[137.191172722,-2.004571221999853],[137.194590691,-1.99814218499985],[137.20533287900005,-1.992608330999914],[137.21013431100013,-1.979261976999823],[137.20964603000002,-1.96347421699987],[137.20484459700006,-1.949639580999872],[137.19385826900006,-1.94394296699997],[137.1674910820001,-1.934340101999823],[137.156993035,-1.929131768999824],[137.10173587300017,-1.888278903999875],[137.11182701900006,-1.874769789999888],[137.11557050900004,-1.854424737999906],[137.11540774800002,-1.809340101999837],[137.12354576900023,-1.79745859199997],[137.1428328790001,-1.787041924999897],[137.34880618600002,-1.710137627999899],[137.46485436300006,-1.641778252999913],[137.4858504570001,-1.632500908999859],[137.49219811300023,-1.628106377999885],[137.49854576900003,-1.620782158999958],[137.51026451900017,-1.604099216999842],[137.51636803500006,-1.600844007999882],[137.532481316,-1.597751559999907],[137.7944442070001,-1.484144789999888],[137.83912194100006,-1.4711239559999],[137.88314863400015,-1.470472914999945],[137.92481530000012,-1.484144789999888],[137.93246504000015,-1.491306247999844],[137.9555770190001,-1.518243096999896],[137.96501712300014,-1.52263762799997],[137.98316491000006,-1.541924737999835],[137.98926842500012,-1.546156507999853],[138.00220787899997,-1.547784112999864],[138.0114038420002,-1.552015882999882],[138.05762780000006,-1.599053643999895],[138.0748804050002,-1.610284112999906],[138.118907097,-1.616875908999873],[138.2291772800002,-1.64910247199991],[138.35670006600017,-1.710137627999899],[138.52751712300002,-1.75847747199991],[138.59750410200016,-1.769789320999891],[138.61963951900023,-1.778090101999865],[138.6652124360002,-1.789157809999906],[138.73519941499998,-1.843926690999922],[138.8032332690002,-1.920830987999835],[138.84278405000003,-1.949639580999872],[138.86215254000004,-1.955743096999853],[138.92807050900015,-1.957126559999935],[138.94955488400007,-1.959893487999977],[139.106700066,-2.012790622999859],[139.28321373800017,-2.121840101999908],[139.38404381600006,-2.155694268999966],[139.44011478000004,-2.185723565999922],[139.45533287900005,-2.189873955999957],[139.46876061300011,-2.195082289999874],[139.51498457100004,-2.231377862999863],[139.67823326900023,-2.292901299999841],[139.7807723320001,-2.354668877999842],[139.82211347700016,-2.367364190999979],[139.86475670700005,-2.372002862999835],[140.05933678500006,-2.354261976999837],[140.08619225400005,-2.343682549999883],[140.0971785820001,-2.323663018999909],[140.10474694100003,-2.320082290000016],[140.1212671230002,-2.326836846999882],[140.14503014400012,-2.341241143999852],[140.15113365999997,-2.337334893999852],[140.15259850400017,-2.322442315999893],[140.157969597,-2.320896091999856],[140.16570071700002,-2.325372002999913],[140.16797936300011,-2.331719658999845],[140.16879316500004,-2.339288018999895],[140.17221113400004,-2.347426039999903],[140.21021569100006,-2.40211353999986],[140.22543379000004,-2.405368747999901],[140.28834069100006,-2.431084893999937],[140.31128991000006,-2.446954033999873],[140.33228600400017,-2.455743096999853],[140.35043378999998,-2.443047783999887],[140.36101321700002,-2.449802342],[140.37126712300008,-2.448663018999966],[140.379649285,-2.441094658999845],[140.38453209700018,-2.429457289999917],[140.37989342500018,-2.419528904],[140.36890709699998,-2.412041924999855],[140.36394290500007,-2.404880466999913],[140.37712649800017,-2.395277601999837],[140.38851972700016,-2.397067966999913],[140.48316491000017,-2.43222421699997],[140.50066165500013,-2.435723565999879],[140.60759524800005,-2.439385674999841],[140.73080488400015,-2.491469007999882],[140.74463951900023,-2.499118747999987],[140.74675540500007,-2.516696872999844],[140.74089603000002,-2.549574476999837],[140.73609459700006,-2.563653252999956],[140.69857832100004,-2.608168226999865],[140.70435631600014,-2.6169572899999],[140.71322675900004,-2.626722914999959],[140.72380618600005,-2.633965752999899],[140.73462975400017,-2.634942315999879],[140.740000847,-2.627699476999936],[140.74073326900023,-2.616306247999887],[140.74268639400012,-2.605564059999878],[140.751719597,-2.600762627999885],[140.75709069100017,-2.603936455999857],[140.77564537900017,-2.618096612999878],[140.78549238399998,-2.621270440999837],[140.79558353000007,-2.619398695999877],[140.81804446700008,-2.611016533999901],[140.8296004570001,-2.608168226999865],[140.92212975400017,-2.608168226999865],[140.96501712300008,-2.600762627999885],[140.97413170700023,-2.60051848799985],[140.97445722700016,-2.60051848799985],[140.97446391400152,-2.600518107070869],[140.97447473200012,-2.631207783999869],[140.9739062910001,-2.807321064999826],[140.9732861740001,-3.002451272999849],[140.97235599800004,-3.250601500999863],[140.97318282100005,-3.58174407999985],[140.97354455600023,-3.800025329999854],[140.97421635000003,-4.002286884999904],[140.9747331140001,-4.173645934999868],[140.97576664300007,-4.595945739999905],[140.97623173000008,-4.773712666999899],[140.97687079100004,-4.98848605899984],[140.97690352400016,-4.99948699999986],[140.97690352400016,-5.002277526999819],[140.97690352400016,-5.197407734999928],[140.97690352400016,-5.322878112999916],[140.97690352400016,-5.363805846999838],[140.97690352400016,-5.62115447899987],[140.97690352400016,-5.806466165999908],[140.97690352400016,-6.002113137999871],[140.97690352400016,-6.229386087999912],[140.97690352400016,-6.335116067999849],[140.97287276200015,-6.336563008999846],[140.96372603400008,-6.348035175999868],[140.9586617440001,-6.368085631999818],[140.95385583500007,-6.37015268999987],[140.95282230600012,-6.373770039999854],[140.95499271700012,-6.379661152999859],[140.96465621000013,-6.388032734999839],[140.96708500200018,-6.393923847999829],[140.96315759300003,-6.404259134999933],[140.95561283400016,-6.411287129999849],[140.95018680900003,-6.418935241999832],[140.95282230600012,-6.431750996999909],[140.94155684400008,-6.430924173999883],[140.93101485200017,-6.431440937999824],[140.92129968300006,-6.4339214069999],[140.91251469000017,-6.438572285999868],[140.92316003500017,-6.439812519999805],[140.92998132400012,-6.444980163999901],[140.93318526200008,-6.453765156999793],[140.93282352700018,-6.465960794999901],[140.94858483900018,-6.46554738399989],[140.95313236600012,-6.480533548999858],[140.95018680900003,-6.498723652999899],[140.94346887200018,-6.507508645999806],[140.92822432500023,-6.509679055999882],[140.92098962400016,-6.516396992999901],[140.91876753800008,-6.527869160999913],[140.91783736200003,-6.55308725999987],[140.91509851100008,-6.558461608999835],[140.90987919100016,-6.561355488999822],[140.9016109630002,-6.56207895899982],[140.89298099800024,-6.565386249999918],[140.89649499600003,-6.573034362999806],[140.90331628400017,-6.582129413999866],[140.90496993100012,-6.589467467999867],[140.8905522060002,-6.599802754999871],[140.87391239500008,-6.603420104999856],[140.85928796400012,-6.608381041999806],[140.85039961800018,-6.623573913999834],[140.86492069500005,-6.630601908999836],[140.86579919400018,-6.649205423999888],[140.85716923100014,-6.682174986999854],[140.85174320500005,-6.693957213999852],[140.84921106000016,-6.702845559999871],[140.85039961800018,-6.712974140999918],[140.85784102400012,-6.723619486999908],[140.87871830300017,-6.742223001999861],[140.88450606300015,-6.753901875999844],[140.88269738800008,-6.76061981199986],[140.8732406010001,-6.773642272999894],[140.87086348600016,-6.778396503999886],[140.87417077700005,-6.7894552609999],[140.8824390060001,-6.798240254999882],[140.9016109630002,-6.812192890999881],[140.9067269290001,-6.828212584999918],[140.90832889800012,-6.849296569999865],[140.91602868700002,-6.86273244199981],[140.93969649300007,-6.856324564999866],[140.94331384400013,-6.888053893999881],[140.96217574100015,-6.897975768999885],[140.97716190600013,-6.89663218199982],[140.9770068770001,-7.004739277999889],[140.9770068770001,-7.157081399999882],[140.97690352400016,-7.282758482999838],[140.97690352400016,-7.323686217999849],[140.97690352400016,-7.587546080999842],[140.97690352400016,-7.772857767999895],[140.97690352400016,-7.962096862999913],[140.97690352400016,-8.001991068999857],[140.9770068770001,-8.170146178999843],[140.97731693600016,-8.434936217999791],[140.97762699400008,-8.611152851999861],[140.97752364100018,-8.79822153699989],[140.97716190600013,-8.991077981999894],[140.97700716985187,-9.106149628253178],[140.9769800140002,-9.10613372199988],[140.97681725400005,-9.106052341999899],[140.93262780000023,-9.080173434999892],[140.92107181100002,-9.079278252999899],[140.85694420700005,-9.049086195999891],[140.62159264400023,-8.806735934999878],[140.507497592,-8.638116143999893],[140.45289147200018,-8.586683851999808],[140.44629967500012,-8.577569268999909],[140.37810306100008,-8.522230726999823],[140.36768639400006,-8.508396091999913],[140.36345462300008,-8.490817966999884],[140.35401451900023,-8.488539320999818],[140.30144290500002,-8.467461846999882],[140.26661217500006,-8.43084075299987],[140.25163821700002,-8.408949476999837],[140.0319116550002,-8.246351820999863],[139.98812910200004,-8.192478122999916],[139.97364342500006,-8.165215752999842],[139.97071373800017,-8.142185153999861],[139.97974694100017,-8.121514580999857],[139.9977319670002,-8.103773695999863],[140.02149498800011,-8.089532158999859],[140.03492272200012,-8.086846612999878],[140.04810631600006,-8.08660247199984],[140.05836022200018,-8.081963799999897],[140.06234785200013,-8.06617603999986],[140.06568444100017,-8.02947356599985],[140.05681399800002,-7.99618905999985],[140.05404707100016,-7.97161223799985],[140.06055748800006,-7.948337497999915],[140.08301842500018,-7.932549737999877],[140.11158287900014,-7.946547132999839],[140.1286727220001,-7.936130466999856],[140.15170332100016,-7.884698174999854],[140.13510175900004,-7.892673434999907],[140.11898847700004,-7.914808851999879],[140.10035241000006,-7.91952890399989],[140.07496178500006,-7.920017184999878],[140.06104576900023,-7.92441171699987],[140.05396569100017,-7.936211846999838],[140.04566491,-7.980157158999858],[140.04184003999998,-8.045505466999842],[140.03402754000004,-8.058770440999865],[140.015391472,-8.073663018999824],[139.97364342500006,-8.09693775799984],[139.93238366000006,-8.108575127999842],[139.76880944100017,-8.110446872999901],[139.63054446700008,-8.124932549999855],[139.59937584700018,-8.13543059699984],[139.54664147200018,-8.166192315999822],[139.51498457100004,-8.17888762799987],[139.43531334700006,-8.196954033999887],[139.39519290500007,-8.200941664999874],[139.35670006600006,-8.199395440999837],[139.31950931100008,-8.190199476999851],[139.28337649800014,-8.17253997199984],[139.25464928500017,-8.146091403999861],[139.24000084700006,-8.110609632999868],[139.24024498800011,-8.10182057099982],[139.2425236340001,-8.090508721999825],[139.2461043630002,-8.079522393999866],[139.25025475400017,-8.072686455999857],[139.25171959700003,-8.067478122999859],[139.24789472700004,-8.048760674999883],[139.24512780000006,-8.01506926899988],[139.24008222700002,-8.002862237999821],[139.21892337300002,-7.979668877999869],[139.23487389400023,-7.975355726999879],[139.25171959700003,-7.982191664999887],[139.26937910200016,-7.986260674999854],[139.28785241000017,-7.973402601999837],[139.24293053500017,-7.956963799999841],[139.21713300900015,-7.951348565999836],[139.20590254000015,-7.963148695999806],[139.20679772200006,-7.97429778399983],[139.21119225400005,-7.994073174999841],[139.21216881600012,-8.00416432099982],[139.21412194100006,-8.00709400799984],[139.22486412900017,-8.00872161299985],[139.22950280000006,-8.011325778999847],[139.23218834700018,-8.017836195999848],[139.23023522199998,-8.02288176899988],[139.22706139400023,-8.028090101999865],[139.22445722700016,-8.07439544099985],[139.20118248800023,-8.09563567499984],[139.1227319670002,-8.117445570999804],[139.0895288420002,-8.133558851999865],[138.9733179050002,-8.229913018999866],[138.96338951900006,-8.245538018999852],[138.95948326900006,-8.26523202899989],[138.9572046230002,-8.270765882999811],[138.95118248800011,-8.281345309999864],[138.94336998800011,-8.29119231599988],[138.9352319670002,-8.295586846999866],[138.92107181100008,-8.29485442499984],[138.91439863400004,-8.292087497999873],[138.87647545700008,-8.218682549999869],[138.8530379570001,-8.183851820999834],[138.84278405000003,-8.161309502999842],[138.83855228000007,-8.138360283999859],[138.84278405000003,-8.117445570999804],[138.858653191,-8.101332289999915],[138.9007267590001,-8.092380466999884],[138.92123457100004,-8.079522393999866],[138.9253035820001,-8.070489190999865],[138.92432701900012,-8.060642184999935],[138.92017662900017,-8.052422783999845],[138.9057723320001,-8.043633721999868],[138.90552819100017,-8.030694268999866],[138.91098066500004,-8.007582289999917],[138.91098066500004,-7.922539971999895],[138.91537519599999,-7.903252862999864],[138.9274194670002,-7.894138278999876],[138.9663192070001,-7.884698174999854],[138.993988477,-7.865492445999806],[139.0022892590001,-7.835707289999887],[139.00717207100016,-7.754327080999829],[139.03451582100004,-7.690362237999835],[139.04509524800008,-7.675225518999837],[139.04818769600016,-7.668064059999892],[139.05494225400017,-7.634209893999824],[139.05941816500015,-7.622735283999873],[139.0693465500002,-7.613946221999824],[139.0808211600001,-7.606052341999842],[139.08920332100016,-7.596774997999888],[139.09302819100017,-7.559991143999894],[139.07105553500017,-7.532647393999838],[139.0358992850001,-7.515232028999861],[139.00049889400006,-7.507907809999849],[138.95801842500012,-7.507256768999895],[138.94434655000003,-7.497002862999878],[138.93490644600016,-7.448825778999917],[138.92554772200006,-7.427341403999889],[138.88607832100016,-7.36093515399986],[138.86548912900005,-7.3360328099999],[138.8405867850001,-7.314548434999891],[138.76661217500012,-7.265394789999874],[138.75098717500023,-7.257745049999855],[138.74561608200005,-7.250664971999881],[138.73878014400023,-7.243584893999824],[138.72925866000017,-7.240411065999864],[138.70850670700017,-7.23919036299985],[138.69996178500006,-7.237074476999836],[138.69125410200016,-7.233575127999842],[138.67701256600003,-7.223402601999808],[138.66635175900004,-7.209893487999821],[138.66749108200023,-7.197849216999899],[138.68824303500006,-7.192640882999824],[138.9045516290001,-7.199395440999851],[138.94516035199996,-7.20623137799987],[138.96168053500017,-7.214532158999844],[138.99097741000017,-7.236016533999872],[139.00391686300011,-7.240411065999864],[139.15707441500015,-7.243096612999835],[139.17457116,-7.236993096999853],[139.18824303500006,-7.215020440999837],[139.19947350400005,-7.188734632999826],[139.21461022200006,-7.166924737999863],[139.24000084700006,-7.158461195999834],[139.24000084700006,-7.151055596999838],[139.22185306100008,-7.14397551899988],[139.20606530000012,-7.150485934999864],[139.181407097,-7.175469658999888],[139.1673283210001,-7.19548919099985],[139.159434441,-7.203220309999863],[139.14722741000006,-7.20623137799987],[139.10352623800023,-7.20623137799987],[139.06055748800011,-7.212497653999917],[139.03760826900012,-7.211846612999863],[139.01937910200004,-7.1944312479999],[138.9663192070001,-7.164727471999868],[138.94613691500015,-7.157159112999835],[138.9253035820001,-7.153008721999882],[138.85808353000004,-7.14959075299987],[138.84253991000006,-7.145603122999901],[138.81478925900015,-7.130547783999887],[138.76197350400017,-7.113864841999841],[138.75342858200005,-7.106622002999828],[138.74781334700015,-7.098239841999856],[138.6461694670002,-6.999688408999872],[138.57203209700006,-6.942478122999901],[138.56153405000006,-6.918633721999825],[138.5813908210001,-6.890883070999848],[138.59742272200018,-6.881442966999842],[138.61255944100017,-6.87721119599982],[138.65406334700003,-6.876641533999845],[138.67457116,-6.88111744599982],[138.71583092500018,-6.897719007999867],[138.73975670700023,-6.897149346999896],[138.75635826900006,-6.887953382999824],[138.783457879,-6.861748955999886],[138.79810631600006,-6.856215101999865],[138.88379967500012,-6.84937916499986],[138.91724694100006,-6.8422177059999],[138.93148847700016,-6.842543226999837],[138.94044030000006,-6.845472914999859],[138.95980879000004,-6.854424737999878],[138.96973717500012,-6.856215101999865],[138.98943118600008,-6.865899346999839],[139.0177514980002,-6.908623955999843],[139.03793379000004,-6.91822682099982],[139.06869550900004,-6.942152601999879],[139.07276451900017,-6.948825778999847],[139.08253014400012,-6.953301690999893],[139.10352623800023,-6.959161065999851],[139.117930535,-6.968194268999852],[139.12647545700023,-6.971612237999863],[139.140391472,-6.972914320999862],[139.18189537899997,-6.971449476999808],[139.19223066500004,-6.972914320999862],[139.18043053500003,-6.959161065999851],[139.15674889400023,-6.954034112999835],[139.13331139400023,-6.952406507999811],[139.1227319670002,-6.948988539999903],[139.11548912900017,-6.941013278999847],[139.06869550900004,-6.91822682099982],[138.99976647200006,-6.852715752999885],[138.9663192070001,-6.835707289999917],[138.92367597700013,-6.825778903999904],[138.85670006600014,-6.820000908999858],[138.83790123800011,-6.814548434999906],[138.8224389980002,-6.806084893999865],[138.76840253999998,-6.756605726999823],[138.745778842,-6.740166924999826],[138.70045006600006,-6.728204033999887],[138.68344160200016,-6.714532158999859],[138.67286217500012,-6.69491952899989],[138.67090905000023,-6.671807549999855],[138.68246503999998,-6.645114841999913],[138.70289147200006,-6.645440362999849],[138.74317467500023,-6.664971612999835],[138.7631942070001,-6.670179945999833],[138.82911217500023,-6.705987237999835],[138.70899498800023,-6.629652601999808],[138.67758222700004,-6.60295989399988],[138.63160241000017,-6.544122002999898],[138.61939537900017,-6.534763278999861],[138.603770379,-6.527927341999841],[138.46607506600017,-6.40211353999986],[138.42115319100014,-6.318536065999893],[138.4135848320001,-6.291436455999872],[138.39535566500004,-6.253187757999825],[138.39039147200018,-6.233656507999853],[138.3921004570001,-6.186211846999825],[138.39039147200018,-6.171563408999916],[138.37208092500012,-6.124281507999854],[138.36980228000007,-6.106377862999892],[138.36548912900005,-6.091729424999883],[138.34669030000012,-6.071221612999834],[138.34253991000006,-6.05828215899983],[138.33912194100006,-6.042575778999861],[138.27637780000018,-5.946221612999864],[138.26246178500017,-5.914727471999853],[138.27084394600016,-5.886976820999877],[138.30420983200023,-5.868259372999901],[138.37671959700006,-5.855645440999837],[138.40398196700002,-5.835707289999931],[138.38550866,-5.837334893999865],[138.34253991000006,-5.848809502999899],[138.32203209700012,-5.851006768999895],[138.208750847,-5.825290622999859],[138.18213951900003,-5.809665622999872],[138.17798912900005,-5.804457289999874],[138.17554772200012,-5.795668226999808],[138.16960696700008,-5.786553643999824],[138.15756269600016,-5.773695570999806],[138.25196373800011,-5.718926690999865],[138.30665123800017,-5.695733330999843],[138.36296634200002,-5.678806247999859],[138.34310957100004,-5.670179945999848],[138.32032311300011,-5.671156507999824],[138.27735436300023,-5.678806247999859],[138.25269616000006,-5.679864190999908],[138.23267662900017,-5.683851820999877],[138.2138778000002,-5.691989841999899],[138.17188561300023,-5.716973565999822],[138.15202884200002,-5.7230770809999],[138.10596764400012,-5.726006768999837],[138.08578535200016,-5.739922783999901],[138.08326256600006,-5.738213799999897],[138.08155358200023,-5.734307549999897],[138.07105553500017,-5.728610934999921],[138.06910241000006,-5.719659112999892],[138.06918379000004,-5.708428643999895],[138.06812584700006,-5.698011976999808],[138.05738366000006,-5.657810153999904],[138.05339603000004,-5.612969658999886],[138.054860873,-5.589613539999888],[138.05982506600017,-5.575290622999901],[138.06861412900005,-5.565036716999884],[138.08179772200018,-5.554620049999883],[138.09180748800006,-5.550062757999854],[138.10124759200016,-5.548516533999901],[138.10792076900023,-5.544854424999855],[138.10971113400015,-5.534112237999835],[138.10531660200016,-5.530938408999873],[138.08497155000023,-5.522230726999879],[138.07813561300023,-5.520440362999892],[138.06421959700015,-5.511163018999851],[138.06421959700015,-5.48943450299987],[138.0743921230002,-5.444756768999823],[138.0748804050002,-5.419610283999845],[138.07105553500017,-5.409926039999874],[138.06137129000004,-5.403741143999909],[138.05811608200005,-5.420342705999872],[138.05128014400023,-5.431817315999822],[138.04078209700018,-5.436130466999913],[138.0265405610002,-5.43108489399988],[138.03484134200008,-5.454766533999901],[138.03598066499998,-5.474786065999865],[138.0256453790001,-5.484958591999913],[137.99927819100017,-5.4789364559999],[137.98658287900005,-5.469984632999882],[137.95899498800011,-5.43108489399988],[137.91456139400012,-5.386895440999908],[137.908457879,-5.363051039999917],[137.92481530000012,-5.32870859199987],[137.90414472700004,-5.323500257999882],[137.85336347700016,-5.361586195999862],[137.82178795700005,-5.362888278999861],[137.81397545700005,-5.358168226999851],[137.80860436300011,-5.352959893999865],[137.78296959700006,-5.317966403999861],[137.78012129000004,-5.315036716999842],[137.78288821700008,-5.297539971999882],[137.80152428500017,-5.270440362999864],[137.80811608200023,-5.253024997999887],[137.77100670700023,-5.272393487999906],[137.7516382170002,-5.277764580999857],[137.7324324880002,-5.273370049999883],[137.71558678500006,-5.256524346999882],[137.70630944100017,-5.221937757999882],[137.690684441,-5.211358330999828],[137.68213951900006,-5.212660414999917],[137.67261803500017,-5.217543226999808],[137.66285241000006,-5.220310153999861],[137.6469832690001,-5.211846612999821],[137.6163843110002,-5.205173434999863],[137.59839928500014,-5.196384372999887],[137.57984459700006,-5.181898695999847],[137.57422936300014,-5.167087497999872],[137.59506269600004,-5.156833591999856],[137.59506269600004,-5.149997653999918],[137.58082116000003,-5.142998955999857],[137.57276451900012,-5.120782158999887],[137.56104576900012,-5.115817966999842],[137.55616295700023,-5.121026299999841],[137.540293816,-5.144219658999873],[137.53305097699996,-5.149997653999918],[137.51929772200018,-5.148532809999863],[137.5092879570001,-5.142022393999881],[137.49219811300023,-5.123223565999837],[137.4819442070001,-5.117364190999879],[137.4738061860002,-5.115004164999917],[137.46810957100004,-5.110039971999882],[137.46485436300006,-5.095879815999851],[137.43262780000023,-5.103448174999897],[137.40357506600006,-5.097588799999855],[137.37777754000004,-5.082452080999857],[137.35564212300002,-5.061781507999854],[137.36329186300006,-5.054620049999897],[137.36801191499998,-5.046319268999824],[137.36996504000004,-5.036879164999903],[137.36915123800011,-5.026462497999916],[137.36304772200006,-5.026462497999916],[137.34961998800023,-5.040459893999881],[137.3346460300002,-5.030938408999887],[137.30787194100012,-4.999118747999844],[137.30933678500017,-5.021661065999837],[137.30160566500015,-5.026625257999882],[137.27654056100005,-5.020196221999868],[137.26807701900012,-5.013848565999837],[137.26710045700023,-4.999444268999866],[137.28256269600016,-4.939711195999806],[137.27881920700023,-4.936618747999901],[137.23243248800017,-4.969414971999825],[137.224375847,-4.982110283999886],[137.232106967,-4.999118747999844],[137.21900475400017,-5.013360283999859],[137.16944420700023,-4.991143487999892],[137.15211022200006,-4.974379164999874],[137.149668816,-4.94508228999986],[137.11540774800002,-4.979180596999868],[137.090098504,-4.96013762799987],[137.08773847700016,-4.94304778399983],[137.09595787900005,-4.921644789999959],[137.10173587300017,-4.889255466999956],[137.09498131600014,-4.889255466999956],[137.07300866000006,-4.923923434999935],[137.04184004000015,-4.94304778399983],[137.00652103000007,-4.9457333309999],[136.95386803500006,-4.922784112999821],[136.946543816,-4.917657158999901],[136.94410241000017,-4.910332940999893],[136.94996178500006,-4.899021091999913],[136.96192467500023,-4.891045830999943],[136.9736434250002,-4.885023695999848],[136.97885175900015,-4.87957122199991],[136.96924889400017,-4.869561455999829],[136.94727623800023,-4.875583591999842],[136.8745223320001,-4.919854424999883],[136.8537703790001,-4.928155205999872],[136.83179772200018,-4.931410414999917],[136.82211347700004,-4.928317966999927],[136.81185957099999,-4.920342705999872],[136.803965691,-4.91025156],[136.800629102,-4.900485934999878],[136.80298912900005,-4.882907809999935],[136.79916425900004,-4.880059502999899],[136.78638756600014,-4.876153252999984],[136.76343834700015,-4.874118747999958],[136.7531030610002,-4.880059502999899],[136.74317467500006,-4.881524346999868],[136.69581139400023,-4.846856377999885],[136.6264754570001,-4.822849216999927],[136.53785241,-4.773614190999922],[136.46371504000015,-4.736016533999845],[136.44019616,-4.715264580999843],[136.43344160200016,-4.712334893999823],[136.41309655000003,-4.71168385199995],[136.40284264400023,-4.707696221999882],[136.37566165500002,-4.683770440999837],[136.35547936300011,-4.677422783999887],[136.26734459700012,-4.676202080999872],[136.177012566,-4.649590752999842],[136.146657748,-4.626397393999895],[136.1460067070001,-4.622328382999854],[136.12191816500015,-4.619317315999851],[136.10670006600017,-4.612074476999908],[136.09473717500023,-4.60312265399989],[136.0807397800002,-4.594984632999868],[136.06299889400012,-4.590590101999894],[136.04965253999995,-4.590020440999822],[136.03581790500016,-4.586032809999849],[136.015879754,-4.571465752999913],[135.97046959699998,-4.51962656],[135.95045006600006,-4.5062802059999],[135.91228274800008,-4.498142184999878],[135.82894941500015,-4.498630466999956],[135.79273522200006,-4.485772393999851],[135.77621504000015,-4.494561455999914],[135.75033613400015,-4.497247002999885],[135.72461998800011,-4.495293877999841],[135.7080184250002,-4.489190362999864],[135.69955488400004,-4.487237237999906],[135.65609785200016,-4.485772393999851],[135.61426842500023,-4.474704684999907],[135.60474694100006,-4.468438408999944],[135.58741295700014,-4.460381768999824],[135.466563347,-4.446058851999837],[135.44361412900005,-4.440687757999882],[135.429535352,-4.430433851999851],[135.41334069100006,-4.436293226999808],[135.35914147200018,-4.443617445999806],[135.33057701900012,-4.439873955999872],[135.27198326900023,-4.458428643999881],[135.22779381600017,-4.461195570999834],[135.18555748800023,-4.448907158999873],[134.95915774800008,-4.318617445999919],[134.94312584700006,-4.305922132999953],[134.93620853000007,-4.290215752999984],[134.92741946700016,-4.275648695999877],[134.90658613400004,-4.264092705999857],[134.88184655000023,-4.256117445999806],[134.86109459700006,-4.252373955999857],[134.82349694100006,-4.259372653999847],[134.82007897200006,-4.259209893999881],[134.809825066,-4.25408294099995],[134.79224694100017,-4.238702080999914],[134.73975670700023,-4.204034112999935],[134.73340905000012,-4.197523695999863],[134.730723504,-4.18759530999985],[134.72584069100006,-4.150079033999845],[134.72388756600012,-4.142510674999969],[134.70639082100016,-4.137302341999884],[134.6811629570001,-4.136814059999907],[134.65805097700004,-4.133396091999899],[134.648203972,-4.11874765399989],[134.65528405000006,-4.099786065999879],[134.68775475400017,-4.073174737999921],[134.69654381600006,-4.053155205999872],[134.69410241000017,-4.04517994599982],[134.68067467500012,-4.032891533999859],[134.67603600400017,-4.026462497999929],[134.67457116,-4.016289971999896],[134.67920983200023,-3.960707289999945],[134.68848717500006,-3.947442315999836],[134.70337975400005,-3.940362237999863],[134.72388756600012,-3.937758070999877],[134.74089603000007,-3.939548434999864],[134.78223717500012,-3.949151299999841],[134.86443118600008,-3.953220309999892],[134.88209069100017,-3.95761484199987],[134.90707441500004,-3.975518487999921],[134.91627037900017,-3.978692315999978],[134.92774498800011,-3.976657809999864],[134.93572024800008,-3.971937757999868],[134.94141686300023,-3.967217705999857],[134.94703209700006,-3.965020440999865],[134.96745853000002,-3.951836846999911],[134.97095787900005,-3.947930596999825],[134.96778405000023,-3.936781507999896],[134.96029707099999,-3.939385674999897],[134.95142662900005,-3.947198174999969],[134.94361412900005,-3.951348565999837],[134.93091881600017,-3.948337498],[134.92383873800023,-3.943129164999917],[134.92123457100004,-3.93865325299987],[134.922618035,-3.937758070999877],[134.92066491000014,-3.93474700299987],[134.9209090500001,-3.930922132999938],[134.92042076900012,-3.926853122999888],[134.91627037900017,-3.92343515399989],[134.90845787900017,-3.922539971999896],[134.9018660820001,-3.925225518999866],[134.895762566,-3.928969007999896],[134.88892662899997,-3.930922132999938],[134.84457441500015,-3.930108330999929],[134.77003014400012,-3.918226820999891],[134.69223066500004,-3.914808851999964],[134.68604576900023,-3.913506768999966],[134.67579186300023,-3.908379815999865],[134.66968834700006,-3.914239190999822],[134.66602623800011,-3.92400481599985],[134.66236412900003,-3.930922132999938],[134.63355553499997,-3.945082289999959],[134.62029056100008,-3.954685153999861],[134.61459394599996,-3.968438408999873],[134.6115014980002,-3.988213799999897],[134.60222415500007,-4.00066497199991],[134.58716881600006,-4.00807057099989],[134.53256269600016,-4.022067966999856],[134.52523847700016,-4.026462497999929],[134.50912519599999,-4.015883070999891],[134.48438561300023,-3.990492445999863],[134.46387780000018,-3.978692315999978],[134.47836347700004,-3.961602471999939],[134.46697024800005,-3.943291924999883],[134.44703209700018,-3.926446221999881],[134.43653405000012,-3.913506768999966],[134.430430535,-3.907810153999904],[134.41675866000017,-3.904554945999863],[134.39210045700005,-3.90300872199991],[134.37525475400017,-3.899102471999825],[134.3335067070002,-3.86882903399983],[134.351410352,-3.899102471999825],[134.36036217500012,-3.925957940999894],[134.34896894600016,-3.943454684999849],[134.30616295700005,-3.944512627999899],[134.30616295700005,-3.951348565999837],[134.31861412900017,-3.958184502999842],[134.32960045700023,-3.968438408999873],[134.33741295700023,-3.981215101999823],[134.34034264400023,-3.996026299999969],[134.32667076900012,-4.019707940999908],[134.31527754000015,-4.020277601999879],[134.30933678500006,-4.015557549999869],[134.30600019600004,-4.009535414999945],[134.30274498800017,-4.006605726999837],[134.29273522200018,-4.000176690999837],[134.28386478000002,-3.985935153999919],[134.27222741000006,-3.971449476999879],[134.25440514400023,-3.965020440999865],[134.23487389400017,-3.962660414999988],[134.21119225400005,-3.955336195999806],[134.19117272200018,-3.943536065999921],[134.18262780000023,-3.927178643999909],[134.18148847700004,-3.917575778999847],[134.17628014400023,-3.90032317499984],[134.17514082099999,-3.893324476999851],[134.17042076900006,-3.888116143999866],[134.15967858200005,-3.89275481599988],[134.14812259200002,-3.900079033999972],[134.14112389400017,-3.90300872199991],[134.1339624360001,-3.890069268999909],[134.14421634200008,-3.874769789999945],[134.18580162900005,-3.842543226999808],[134.19263756600006,-3.835544529],[134.19092858200023,-3.826267184999878],[134.17310631600017,-3.787855726999866],[134.1616317070001,-3.771661065999908],[134.14698326900012,-3.757582289999874],[134.12745201900023,-3.745293877999913],[134.12224368600002,-3.753676039999874],[134.12330162900014,-3.760918877999898],[134.12647545700023,-3.768731377999969],[134.12745201900023,-3.779473565999894],[134.12647545700023,-3.799248955999914],[134.12240644599999,-3.805352471999911],[134.11036217500006,-3.81755950299997],[134.09180748800006,-3.823988539999902],[134.07447350400017,-3.812920830999857],[134.05738366000006,-3.798109632999882],[134.03931725400005,-3.793145440999837],[134.02320397200006,-3.805108330999872],[133.99935957100016,-3.846286716999927],[133.9876408210001,-3.855157158999887],[133.97103925900004,-3.850274346999825],[133.9589949880001,-3.837579033999859],[133.91334069100017,-3.729424737999878],[133.8960067070001,-3.702406507999925],[133.8527124360002,-3.653903903999946],[133.84359785200002,-3.638360283999944],[133.84009850400005,-3.618340752999885],[133.84099368600013,-3.597751559999864],[133.83814537900017,-3.590427341999856],[133.82984459700012,-3.587579033999901],[133.8225203790001,-3.589939059999949],[133.81324303500006,-3.595391533999901],[133.80445397200018,-3.602308851999893],[133.79908287900005,-3.608819268999895],[133.79542076900017,-3.631524346999839],[133.80339603000002,-3.654066665],[133.81413821700002,-3.67538827899989],[133.82325280000012,-3.704522393999852],[133.82911217500018,-3.714450778999847],[133.82927493600002,-3.721856377999842],[133.81576582100016,-3.724786065999865],[133.80982506600006,-3.720310153999975],[133.79908287900005,-3.690687757999854],[133.79021243600008,-3.680352471999839],[133.77759850400008,-3.669122002999927],[133.76295006600017,-3.660251559999892],[133.74756920700023,-3.656508070999863],[133.7325952480002,-3.662855726999893],[133.716563347,-3.672784112999892],[133.7031356130002,-3.672621351999836],[133.69605553500017,-3.649102471999868],[133.70728600400017,-3.630303643999824],[133.70972741000008,-3.621758721999982],[133.70801842500012,-3.610121351999894],[133.6984155610001,-3.590264580999971],[133.68978925900004,-3.564548434999935],[133.64820397200006,-3.505059502999899],[133.64144941499998,-3.483656507999868],[133.641856316,-3.461602471999868],[133.65316816499998,-3.444431247999844],[133.678965691,-3.437432549999855],[133.6967879570001,-3.427422783999958],[133.70215905000023,-3.404392184999907],[133.70020592500012,-3.379001559999963],[133.68336022200012,-3.304945570999919],[133.68311608200017,-3.232517184999963],[133.69092858200023,-3.216078382999967],[133.70972741000008,-3.232028903999975],[133.71387780000023,-3.224704684999892],[133.71583092500006,-3.215915623],[133.716563347,-3.193780205999843],[133.72242272200006,-3.183038018999838],[133.73568769599999,-3.18336353999986],[133.758067254,-3.190362237999835],[133.77116946700005,-3.175469658999887],[133.78394616000006,-3.131442966999956],[133.80250084700006,-3.122165622999916],[133.8226017590001,-3.115655205999914],[133.84644616000017,-3.087090752999842],[133.86394290500016,-3.080498955999857],[133.88282311300023,-3.091566664999903],[133.89909915500007,-3.112969658999845],[133.91407311300011,-3.126560153999904],[133.92945397200006,-3.114678643999937],[133.92359459700012,-3.111016533999901],[133.91944420700003,-3.106377862999878],[133.91675866000017,-3.099867445999962],[133.915782097,-3.090915622999859],[133.91228274800014,-3.083428643999966],[133.904063347,-3.079359632999825],[133.89478600400017,-3.07683684699991],[133.88770592500012,-3.073663018999852],[133.87891686300023,-3.065524997999916],[133.870371941,-3.055108330999843],[133.86394290500016,-3.042087497999859],[133.8605249360002,-3.025974216999884],[133.863047722,-3.008233330999886],[133.87769616000006,-2.979261976999894],[133.88160241000006,-2.963799737999863],[133.87964928500017,-2.95224374799993],[133.87435957099999,-2.940606377999842],[133.8673608730002,-2.93035247199991],[133.8605249360002,-2.922946873],[133.84376061300006,-2.927829684999892],[133.82569420700014,-2.928887627999856],[133.81755618600008,-2.934747002999885],[133.82984459700012,-2.95387135199995],[133.82789147200006,-2.959649346999839],[133.81519616000017,-2.983575127999885],[133.80909264400012,-3.010186455999843],[133.80160566500004,-3.01816171699997],[133.73414147200003,-3.052666924999983],[133.71998131600006,-3.063571872999873],[133.69092858200023,-3.092868747999901],[133.668223504,-3.122165622999916],[133.65552819100003,-3.188897393999881],[133.66334069100006,-3.361504815999836],[133.62769616000017,-3.416273695999948],[133.61361738400015,-3.421970309999935],[133.558848504,-3.433282158999916],[133.55103600400005,-3.431573174999912],[133.5455835300002,-3.4242489559999],[133.52849368600002,-3.386651299999912],[133.52466881600006,-3.382256768999838],[133.51400800899998,-3.378350518999838],[133.51319420700005,-3.384372653999932],[133.51856530000023,-3.403252862999863],[133.51937910200016,-3.430840752999885],[133.51197350400017,-3.43865325299987],[133.49057050900004,-3.437432549999855],[133.49057050900004,-3.444268487999878],[133.51124108200023,-3.45517343499985],[133.55062910200004,-3.468682549999826],[133.56910241000006,-3.481866143999881],[133.5822860040001,-3.500176690999837],[133.59017988400012,-3.522230726999922],[133.59180748800011,-3.545342705999886],[133.58619225400017,-3.566582940999865],[133.57593834700006,-3.580498955999857],[133.55925540500002,-3.596449476999866],[133.539886915,-3.609551690999836],[133.5216577480001,-3.614922783999887],[133.50562584700006,-3.622328382999953],[133.40886478000002,-3.722426039999902],[133.39665774800008,-3.75595468499985],[133.40870201900017,-3.80055104],[133.44019616000017,-3.827569268999866],[133.4555770190001,-3.846937757999882],[133.45337975400005,-3.865411065999822],[133.44312584700018,-3.872816664999903],[133.4207462900001,-3.880547783999901],[133.41179446700005,-3.886163018999909],[133.40308678500017,-3.896416924999925],[133.3881942070001,-3.92343515399989],[133.269379102,-4.052015882999839],[133.25098717500023,-4.0668270809999],[133.21094811300023,-4.078383070999833],[133.16391035200004,-4.076267184999907],[133.07911217500023,-4.060642184999921],[133.05152428500006,-4.061211846999981],[133.03516686300011,-4.070082289999945],[133.0074975920002,-4.104668877999842],[132.98991946700008,-4.113946221999896],[132.96941165500002,-4.111993096999853],[132.9181421230002,-4.091078382999882],[132.91228274800002,-4.090264580999872],[132.9077254570001,-4.088148695999863],[132.901621941,-4.081149997999887],[132.89625084700006,-4.068942966999913],[132.89698326900006,-4.048272393999895],[132.89136803500017,-4.036716403999876],[132.88111412900017,-4.027764580999929],[132.85938561300011,-4.01653411299985],[132.84994550900007,-4.009698174999912],[132.84115644600004,-3.998142184999978],[132.83155358200023,-3.975355726999865],[132.82585696700008,-3.965020440999865],[132.81690514400012,-3.95761484199987],[132.80567467500012,-3.949965101999851],[132.79590905000006,-3.940606377999913],[132.79175866000006,-3.927178643999909],[132.79639733200005,-3.918145440999908],[132.80681399800005,-3.922133070999891],[132.82585696700008,-3.937758070999877],[132.82634524800002,-3.926446221999881],[132.82455488400015,-3.916436455999985],[132.80209394600016,-3.858168226999894],[132.78793379000004,-3.844008070999863],[132.784922722,-3.837823174999897],[132.7858992850001,-3.803969007999839],[132.784922722,-3.793145440999837],[132.73096764400012,-3.682305596999882],[132.7296655610002,-3.649102471999868],[132.75611412900017,-3.62753671699987],[132.7971297540001,-3.634047132999854],[132.84229576900023,-3.646579684999864],[132.88111412900017,-3.642836195999834],[132.89014733200005,-3.634535414999931],[132.8907983730002,-3.626885674999912],[132.8883569670002,-3.618584893999923],[132.88795006600017,-3.608819268999895],[132.89161217500023,-3.594903252999913],[132.89625084700006,-3.586358330999885],[132.91187584700006,-3.570245049999911],[132.927500847,-3.561130466999927],[132.93181399800014,-3.554131768999937],[132.9254663420002,-3.543226820999877],[132.91529381600006,-3.534844658999916],[132.90756269600004,-3.529961846999853],[132.90113366000006,-3.524021092],[132.8947860040001,-3.511895440999837],[132.8808699880001,-3.475355726999965],[132.87159264400017,-3.471368096999896],[132.84994550900007,-3.470961195999891],[132.83187910200016,-3.461032809999978],[132.82113691500015,-3.437432549999855],[132.81275475400017,-3.389743747999887],[132.81185957099999,-3.366631768999852],[132.81902103000002,-3.303643487999821],[132.81169681100002,-3.281670830999985],[132.7944442070001,-3.271661065999822],[132.77409915500002,-3.269789320999948],[132.74073326900023,-3.276543877999885],[132.7338973320002,-3.279961846999981],[132.7296655610002,-3.286065362999892],[132.72934003999998,-3.298435154],[132.73755944100017,-3.321058851999893],[132.7332462900001,-3.330987237999892],[132.714121941,-3.340020440999893],[132.69214928500017,-3.338148695999934],[132.67115319100006,-3.328545830999943],[132.6544702480002,-3.313897393999852],[132.64893639400012,-3.304864190999837],[132.63404381600006,-3.27239348799985],[132.62614993600008,-3.262627862999821],[132.6030379570001,-3.241875908999916],[132.6022241550002,-3.231866143999838],[132.61638431100002,-3.224867445999948],[132.62989342500012,-3.21510182099999],[132.62720787900005,-3.197360934999907],[132.62061608200023,-3.192315362999878],[132.59644616000006,-3.179375908999873],[132.58936608200005,-3.176853122999859],[132.58179772200006,-3.170342705999872],[132.57260175900012,-3.14218515399989],[132.56861412900017,-3.135837497999858],[132.56324303500006,-3.13046640399989],[132.55933678500003,-3.118747653999989],[132.5530705090001,-3.107028903999918],[132.54118899800014,-3.101657809999949],[132.53394616,-3.097344658999859],[132.51465905000018,-3.078057549999826],[132.507090691,-3.073663018999852],[132.495860222,-3.070570570999863],[132.48845462300002,-3.063083591999884],[132.48243248800023,-3.053887627999828],[132.47584069100003,-3.046482028999932],[132.36573326900023,-2.985284112999977],[132.33985436300011,-2.977634372999873],[132.34229576900023,-2.95818450299987],[132.3256942070001,-2.946547132999868],[132.27767988400004,-2.936618747999944],[132.266856316,-2.935479424999912],[132.23316491,-2.936618747999944],[132.2198999360002,-2.934258721999896],[132.20948326900012,-2.928969007999839],[132.19971764400023,-2.922539971999825],[132.18832441499998,-2.916680596999867],[132.1845809250002,-2.936211846999939],[132.16879316500004,-2.946465752999885],[132.15105228000013,-2.946709893999824],[132.14063561300023,-2.936618747999944],[132.13135826900006,-2.941338799999869],[132.12330162900005,-2.94231536299985],[132.11524498800011,-2.940524997999859],[132.10645592500023,-2.936618747999944],[132.11109459700006,-2.954278252999956],[132.10124759200002,-2.959893487999878],[132.075450066,-2.957696221999882],[132.07349694100014,-2.951429945999919],[132.05795332100016,-2.916680596999867],[132.0387475920002,-2.92644622199991],[131.99691816499998,-2.914808851999808],[131.98218834700018,-2.929782809999935],[131.9760848320001,-2.929782809999935],[131.97787519599999,-2.914646091999842],[131.98454837300002,-2.907647393999866],[131.99366295700023,-2.903090101999907],[132.00342858200005,-2.896172783999916],[132.0128686860002,-2.885918877999885],[132.01775149800008,-2.878594658999887],[132.02393639400023,-2.854668877999913],[132.00570722700016,-2.85271575299987],[131.9897567070002,-2.848402601999879],[131.9897567070002,-2.84099700299997],[132.00440514400023,-2.837090752999885],[132.02247155000018,-2.829034112999864],[132.03785241,-2.817559502999913],[132.0444442070001,-2.803399346999882],[132.03500410200016,-2.79355234199987],[132.0128686860002,-2.790948174999954],[131.96558678500006,-2.793145440999865],[131.95801842500006,-2.788181247999901],[131.97266686300011,-2.776950778999989],[132.01026451900012,-2.759047132999939],[132.02719160200016,-2.759047132999939],[132.0444442070001,-2.761163018999866],[132.0582788420002,-2.75855885199995],[132.06544030000012,-2.744805596999853],[132.07422936300011,-2.755791924999897],[132.0815535820001,-2.757907809999907],[132.08423912900017,-2.751722914999945],[132.07846113400004,-2.738539320999891],[132.0880639980002,-2.735609632999882],[132.1303817070001,-2.738539320999891],[132.15577233200023,-2.733493747999873],[132.18148847700016,-2.724867445999947],[132.16016686300011,-2.715590101999823],[132.1108504570001,-2.719414971999825],[132.11329186300023,-2.704359632999811],[132.12134850400017,-2.697930596999896],[132.16163170700005,-2.683282158999887],[132.18148847700016,-2.683282158999887],[132.19483483200005,-2.678317966999841],[132.20191491000006,-2.676446221999953],[132.311778191,-2.676446221999953],[132.3256942070001,-2.679864190999879],[132.36719811300011,-2.69695403399983],[132.38200931100008,-2.699314059999878],[132.4155379570001,-2.69695403399983],[132.40805097700004,-2.69695403399983],[132.41309655000018,-2.696465752999842],[132.42847741,-2.69695403399983],[132.42432701900006,-2.710381768999824],[132.43002363400015,-2.721449476999851],[132.43336022200018,-2.732191664999874],[132.421153191,-2.744805596999853],[132.43783613400015,-2.745049737999892],[132.45997155000012,-2.732679945999948],[132.47584069100003,-2.73113372199991],[132.47584069100003,-2.724867445999947],[132.46892337300008,-2.707614841999941],[132.48462975399997,-2.699476820999934],[132.50635826900006,-2.698011976999879],[132.51734459700006,-2.700778903999932],[132.52540123800003,-2.710544528999961],[132.54428144600004,-2.713799737999835],[132.56674238400004,-2.714532158999858],[132.585703972,-2.717461846999882],[132.62061608200023,-2.740899346999939],[132.67904707100004,-2.801690362999878],[132.71599368600008,-2.814222914999888],[132.72828209700006,-2.813164971999839],[132.736582879,-2.809991143999866],[132.75505618600002,-2.796563408999873],[132.76368248800023,-2.786309502999842],[132.77686608200008,-2.779229424999883],[132.83529707100016,-2.736016533999887],[132.85303795700017,-2.717461846999882],[132.9030054050002,-2.645928643999838],[132.92774498800006,-2.627699476999936],[132.94939212300008,-2.580254815999837],[133.00831139400012,-2.51441822699995],[133.0171004570001,-2.494886976999879],[133.03353925899998,-2.479424737999949],[133.11215253999998,-2.442803643999838],[133.13770592500003,-2.435723565999879],[133.14389082100016,-2.434991143999852],[133.15154056100008,-2.432875257999925],[133.1588647800002,-2.429864190999922],[133.16472415500002,-2.426039320999919],[133.17286217500023,-2.422051690999851],[133.18018639400023,-2.423760674999854],[133.18751061300023,-2.427666924999841],[133.19629967500012,-2.429457289999917],[133.21314537900005,-2.426364841999842],[133.23959394599999,-2.41676197699995],[133.258474155,-2.416436455999929],[133.31234785200016,-2.443047783999887],[133.31763756600006,-2.456719658999916],[133.32056725400017,-2.491875908999887],[133.32601972699996,-2.505140882999825],[133.33838951900023,-2.496189059999878],[133.35377037900014,-2.49627044099995],[133.36898847700016,-2.502536716999913],[133.38070722700004,-2.511976820999919],[133.39031009200014,-2.526625257999839],[133.3921004570001,-2.538669528999861],[133.3881942070001,-2.566582940999893],[133.38835696700008,-2.652276299999869],[133.38070722700004,-2.676446221999953],[133.4030054050002,-2.675225518999937],[133.40805097700004,-2.659600518999952],[133.4018660820002,-2.615004164999888],[133.40455162900005,-2.591403903999847],[133.41098066500004,-2.56650156],[133.43799889400006,-2.503024997999901],[133.44556725400005,-2.494724216999912],[133.4565535820001,-2.498304945999976],[133.4586694670002,-2.506931247999901],[133.4565535820001,-2.54615650799991],[133.461192254,-2.595310153999932],[133.45899498800023,-2.618096612999878],[133.4503686860001,-2.642347914999945],[133.465098504,-2.636163018999895],[133.4731551440002,-2.615980726999865],[133.47689863399998,-2.570407809999907],[133.47478274800005,-2.558363539999888],[133.47087649800008,-2.54509856599995],[133.46908613399998,-2.532159112999864],[133.47348066500015,-2.521661065999893],[133.4850366550002,-2.516534112999878],[133.49252363400015,-2.523532809999864],[133.49740644600004,-2.533949476999851],[133.50945071700008,-2.550062757999825],[133.51221764400012,-2.572198174999897],[133.5187280610002,-2.589613539999859],[133.53834069100017,-2.587090752999856],[133.53956139400006,-2.583265882999839],[133.53972415500007,-2.568780205999886],[133.54175866000017,-2.563571872999972],[133.54737389400006,-2.560804945999919],[133.55958092500023,-2.56161874799993],[133.56568444100006,-2.560316664999931],[133.58562259200014,-2.552422783999873],[133.5952254570001,-2.545668226999922],[133.60670006600006,-2.532484632999967],[133.61524498800017,-2.541110934999892],[133.62232506600006,-2.541761976999837],[133.6284285820001,-2.539646091999927],[133.63396243600002,-2.539320570999905],[133.64063561300011,-2.542901299999869],[133.66724694100006,-2.563409112999835],[133.6733504570001,-2.574802341999884],[133.67546634200002,-2.588067315999822],[133.67628014400023,-2.649021091999913],[133.67188561300023,-2.659437757999896],[133.66846764400023,-2.670830987999863],[133.68238366000006,-2.717461846999882],[133.69174238400015,-2.704278252999828],[133.69239342500012,-2.691501559999878],[133.68978925900004,-2.676202080999914],[133.68921959700006,-2.656019789999888],[133.69336998800006,-2.637302341999927],[133.70679772200018,-2.597832940999865],[133.70972741000008,-2.577243747999916],[133.70972741000008,-2.521172783999901],[133.713145379,-2.511976820999919],[133.73503665500004,-2.516778252999828],[133.7474064460001,-2.529229424999926],[133.76433353000007,-2.566582940999893],[133.78541100400017,-2.597751559999963],[133.79908287900005,-2.642347914999945],[133.81104576900023,-2.653985283999873],[133.81690514400012,-2.649021091999913],[133.81918379000015,-2.632989190999837],[133.81959069100014,-2.611586195999962],[133.82789147200006,-2.549899997999859],[133.82300866000017,-2.539320570999905],[133.82178795700005,-2.535577080999872],[133.80884850400017,-2.520196221999839],[133.80591881600006,-2.518243096999882],[133.80396569100017,-2.506768487999835],[133.80486087300008,-2.497002862999977],[133.80958092500006,-2.487481377999899],[133.81959069100014,-2.477227471999867],[133.80176842500012,-2.470310153999876],[133.7672632170002,-2.471937757999896],[133.75123131600017,-2.462985934999864],[133.74097741000014,-2.445896091999913],[133.74724368600013,-2.437920830999872],[133.76319420700023,-2.435723565999879],[133.7817488940002,-2.435723565999879],[133.82618248800023,-2.426202080999886],[133.8501082690001,-2.424248955999843],[133.8605249360002,-2.432549737999821],[133.86622155000006,-2.442966403999904],[133.89332116,-2.465997002999956],[133.90211022200018,-2.477227471999867],[133.90837649800014,-2.477227471999867],[133.89649498800006,-2.457940362999835],[133.8764754570001,-2.432875257999925],[133.86646569100006,-2.411390882999811],[133.88461347700004,-2.40211353999986],[133.95460045700023,-2.409112237999835],[133.98658287900005,-2.406182549999912],[134.00513756600006,-2.388441664999917],[133.94890384200008,-2.390394789999874],[133.92090905000012,-2.387627862999906],[133.89869225400017,-2.377618096999825],[133.89454186300023,-2.363376559999921],[133.94507897200006,-2.343926690999822],[133.96355228000007,-2.326429945999877],[133.93783613400004,-2.32732512799987],[133.89283287900003,-2.340264580999872],[133.8673608730002,-2.341241143999852],[133.8673608730002,-2.333916924999926],[133.91358483200023,-2.319512627999956],[133.93441816499998,-2.308689059999878],[133.94996178499997,-2.292901299999841],[133.95704186300017,-2.272637627999828],[133.95972741000006,-2.246677341999927],[133.95736738399998,-2.22144947699995],[133.94996178499997,-2.2035458309999],[133.93970787900017,-2.25505950299997],[133.92896569100017,-2.274183851999865],[133.90837649800014,-2.25872161299985],[133.90211022200018,-2.25872161299985],[133.87419681100002,-2.281670830999829],[133.85474694100006,-2.294122002999856],[133.84009850400005,-2.299737237999935],[133.82349694100017,-2.294854424999883],[133.8073022800001,-2.271172783999944],[133.79566491,-2.265557549999855],[133.79200280000023,-2.2601864559999],[133.79916425900004,-2.24863046699987],[133.81316165500007,-2.23691171699997],[133.84750410200004,-2.227715752999913],[133.863047722,-2.21795012799987],[133.87476647200012,-2.204685153999932],[133.88160241000006,-2.189873955999957],[133.90137780000023,-2.198418877999899],[133.91700280000023,-2.190850518999852],[133.93197675900015,-2.17750416499993],[133.94996178499997,-2.169366143999909],[133.94312584700018,-2.1625302059999],[133.93116295700023,-2.168633721999882],[133.91293379000015,-2.175225518999866],[133.8979598320002,-2.175469658999986],[133.89527428500017,-2.1625302059999],[133.90040123800006,-2.159274997999859],[133.92188561300011,-2.152764580999857],[133.92945397200006,-2.148858330999872],[133.93279056100008,-2.142266533999972],[133.93531334700018,-2.125664971999839],[133.93970787900017,-2.118259372999844],[133.94044030000012,-2.107598565999822],[133.92221113400004,-2.104424737999935],[133.89909915500007,-2.106377862999977],[133.88461347700004,-2.111423435],[133.87916100400017,-2.11077239399988],[133.86850019600016,-2.108168226999965],[133.85816491000006,-2.107354424999954],[133.85368899800008,-2.111423435],[133.8385522800002,-2.136000257999839],[133.833262566,-2.142185153999989],[133.82447350400005,-2.145440362999864],[133.80762780000023,-2.146579684999892],[133.79908287900005,-2.148858330999872],[133.77320397199998,-2.165297132999868],[133.76433353000007,-2.169366143999909],[133.7260848320001,-2.170505466999941],[133.70997155000023,-2.175551039999888],[133.70346113400015,-2.193617445999905],[133.69581139400012,-2.197849216999927],[133.678965691,-2.204278252999927],[133.66211998800011,-2.213962497999901],[133.65447024800017,-2.227715752999913],[133.6518660820001,-2.234144789999917],[133.64576256600012,-2.236016533999887],[133.63819420700023,-2.233656507999839],[133.63086998800023,-2.227715752999913],[133.62330162899997,-2.225274346999882],[133.61304772200018,-2.228285414999888],[133.59359785200016,-2.237562757999925],[133.59685306100013,-2.195082289999874],[133.59359785200016,-2.183038018999852],[133.57715905000006,-2.220472914999973],[133.56462649800008,-2.237888278999947],[133.54859459700018,-2.245049737999906],[133.5330509770001,-2.238457940999837],[133.521250847,-2.209649346999896],[133.50416100400017,-2.2035458309999],[133.50416100400017,-2.211032809999878],[133.51465905000023,-2.226006768999909],[133.49976647200018,-2.230726820999919],[133.47608483200005,-2.23154062299993],[133.44556725400005,-2.237888278999947],[133.4072371750001,-2.222263278999961],[133.3881942070001,-2.217217705999843],[133.3416447270001,-2.222751559999949],[133.31657962300008,-2.222588799999982],[133.30551191500015,-2.214043877999885],[133.296153191,-2.204196872999944],[133.2742619150001,-2.206312757999953],[133.23121178500006,-2.217217705999843],[133.19214928500017,-2.214288018999824],[133.16944420700023,-2.216892184999921],[133.135020379,-2.238457940999837],[133.11231530000023,-2.242933851999894],[133.06609134200008,-2.245049737999906],[133.02019290500007,-2.255791924999826],[132.9812117850001,-2.272149346999839],[132.9436141290001,-2.283379815999922],[132.901621941,-2.279229424999897],[132.8395288420002,-2.249118747999859],[132.81592858200023,-2.245049737999906],[132.79330488399998,-2.249444268999881],[132.7707625660001,-2.260023695999934],[132.69874108200005,-2.305352471999853],[132.68873131600017,-2.307224216999913],[132.6806746750002,-2.303155205999943],[132.67562910200004,-2.295993747999915],[132.6692814460001,-2.289157809999978],[132.65796959700012,-2.286065362999821],[132.63672936300011,-2.277276299999854],[132.62671959700006,-2.25644296699987],[132.62094160200013,-2.23154062299993],[132.61353600400017,-2.211032809999878],[132.60279381600017,-2.201755466999912],[132.58301842500023,-2.190850518999852],[132.5603947270001,-2.18564218499985],[132.54118899800014,-2.193617445999905],[132.52369225400014,-2.204196872999944],[132.4553328790001,-2.217217705999843],[132.3849389980002,-2.256524346999853],[132.34791100400017,-2.270114841999984],[132.30567467500023,-2.265557549999855],[132.28052819100006,-2.249769789999903],[132.26465905000012,-2.228285414999888],[132.25196373800017,-2.204766533999916],[132.23617597700004,-2.183038018999852],[132.21452884200014,-2.165785414999945],[132.0734155610002,-2.105157158999873],[132.04835045700005,-2.08318450299987],[132.0444442070001,-2.05950286299985],[132.052582227,-2.052829684999892],[132.08008873800023,-2.037692966999884],[132.08594811300006,-2.028903904],[132.090586785,-2.015557549999912],[132.101817254,-2.006931247999901],[132.12696373800011,-1.99814218499985],[132.09961998800011,-2.001234632999839],[132.05323326900023,-2.015394789999945],[132.0273543630002,-2.018487237999835],[132.00342858200005,-1.983819268999866],[131.98324629000012,-1.972588799999855],[131.97291100400005,-1.964613539999903],[131.96859785200004,-1.953383070999905],[131.9710392590001,-1.943129164999959],[131.97543379000015,-1.932224216999898],[131.97730553500003,-1.921644789999945],[131.97234134200008,-1.912367445999976],[131.96469160200004,-1.908868096999896],[131.95687910200016,-1.907647393999881],[131.9492293630001,-1.904473565999822],[131.9419051440001,-1.895114841999969],[131.93832441500015,-1.883721612999835],[131.9419051440001,-1.850681247999873],[131.9410913420002,-1.837497653999918],[131.93824303500017,-1.828301690999936],[131.92774498800011,-1.805759372999873],[131.9492293630001,-1.794691664999917],[131.96338951900023,-1.77849700299987],[131.97535241000017,-1.760430596999853],[131.9897567070002,-1.744805596999868],[132.00709069100006,-1.732191664999974],[132.01832116000006,-1.721286716999913],[132.02247155000018,-1.706312757999882],[132.01832116000006,-1.682793877999913],[132.018809441,-1.684014580999928],[132.0201929050002,-1.685642184999949],[132.02198326900006,-1.683851820999962],[132.02393639400023,-1.675957940999908],[132.00098717500023,-1.677911065999851],[131.96753991000017,-1.697198174999883],[131.9272567070001,-1.706231377999899],[131.91749108200005,-1.707289320999948],[131.90967858200005,-1.703301690999879],[131.90040123800011,-1.690199476999823],[131.90113366000003,-1.684177341999984],[131.90577233200005,-1.677422783999873],[131.90870201900012,-1.672051690999908],[131.90137780000012,-1.667657158999916],[131.895274285,-1.662855726999837],[131.88941491000017,-1.657159112999864],[131.88672936300006,-1.65203215899993],[131.89356530000012,-1.611016533999845],[131.89673912900017,-1.601495049999926],[131.91089928500017,-1.590264580999843],[131.91407311300023,-1.583428643999909],[131.92058353000007,-1.579196872999901],[131.94906660200016,-1.573337497999859],[131.95557701900023,-1.569756768999966],[131.97632897200006,-1.548597914999874],[131.98218834700018,-1.538750908999944],[131.9640405610002,-1.538750908999944],[131.90577233200005,-1.567071221999896],[131.87989342500015,-1.573500257999825],[131.8888452480002,-1.556573174999841],[131.88347415500002,-1.55087655999985],[131.87126712300008,-1.553155205999914],[131.85938561300011,-1.559828382999882],[131.8214624360002,-1.598239841999884],[131.80486087300002,-1.607598565999837],[131.797618035,-1.580824476999823],[131.80640709700018,-1.549981377999856],[131.81104576900012,-1.520440362999977],[131.7911889980002,-1.497735283999859],[131.78972415500002,-1.525648695999891],[131.78402754000015,-1.547458591999842],[131.7716577480002,-1.563246351999894],[131.7501733730002,-1.573500257999825],[131.72315514400023,-1.571954033999958],[131.7077742850001,-1.555840752999984],[131.70671634200002,-1.534763278999876],[131.7229110040001,-1.518243096999896],[131.70378665500002,-1.511000257999882],[131.68506920700023,-1.514906507999882],[131.66635175899998,-1.52239348799985],[131.64722741,-1.525648695999891],[131.6287541020001,-1.520928643999966],[131.613536004,-1.511163018999852],[131.58871504000015,-1.487562757999896],[131.57309004000012,-1.480157158999916],[131.55250084700006,-1.476983330999857],[131.52019290500016,-1.476739190999908],[131.51392662900017,-1.47519296699987],[131.50782311300003,-1.47193775799991],[131.50049889400017,-1.469659112999935],[131.489512566,-1.470472914999945],[131.47754967500003,-1.474053643999838],[131.46908613400012,-1.47909921699987],[131.46566816500004,-1.486586195999919],[131.46900475400017,-1.497735283999859],[131.45687910200013,-1.502862237999949],[131.44613691500015,-1.503838799999926],[131.43653405000018,-1.501722914999917],[131.42750084700006,-1.497735283999859],[131.4049585300002,-1.469903252999884],[131.40064537900017,-1.467054945999948],[131.39665774800017,-1.46103280999985],[131.3898218110002,-1.45680104],[131.38721764400006,-1.450778903999918],[131.39698326900012,-1.43938567499994],[131.4018660820001,-1.427341403999847],[131.39535566499998,-1.413750908999887],[131.38363691500004,-1.401950778999918],[131.372813347,-1.394707940999893],[131.34213300900004,-1.403578382999839],[131.32227623800011,-1.401055596999825],[131.27711022200018,-1.37428150799991],[131.27491295700005,-1.391859632999939],[131.29200280000012,-1.410088799999841],[131.33497155000006,-1.43938567499994],[131.3369246750001,-1.453057549999883],[131.32374108200005,-1.469170830999857],[131.30518639400015,-1.483086846999839],[131.29151451900023,-1.490980726999823],[131.25733483200023,-1.497735283999859],[131.22543379000004,-1.515557549999826],[131.2057397800002,-1.523614190999865],[131.19849694100006,-1.521254164999988],[131.19288170700017,-1.494805596999839],[131.18653405000012,-1.485039971999882],[131.177500847,-1.477308851999879],[131.16724694100014,-1.470472914999945],[131.12631269600016,-1.453301690999922],[131.0864363940001,-1.451267184999907],[131.00359134200008,-1.456231377999941],[130.97730553500006,-1.452894789999917],[130.9602970710001,-1.446221612999878],[130.95093834700006,-1.433689059999878],[130.94825280000015,-1.41220468499985],[130.95313561300023,-1.405043226999894],[130.98585045700005,-1.391289971999967],[130.9995223320001,-1.379082940999908],[131.00440514400006,-1.372328382999868],[131.03012129000004,-1.298516533999859],[131.027598504,-1.284112237999892],[131.03003991000006,-1.27556731599995],[131.04078209700003,-1.271905205999914],[131.04216556100002,-1.267836195999948],[131.05738366,-1.247735283999987],[131.07447350400017,-1.237562757999868],[131.15528405000023,-1.224541924999869],[131.18165123800023,-1.217217705999872],[131.18864993600002,-1.207207940999879],[131.20215905000012,-1.162692966999969],[131.2316186860002,-1.126071872999859],[131.23617597700004,-1.117282809999978],[131.23951256600017,-1.105645440999893],[131.25416100400017,-1.08025481599995],[131.25733483200023,-1.062676690999922],[131.25367272200018,-1.027601820999948],[131.2570906910001,-1.01433684699991],[131.27100670700005,-1.003676039999888],[131.26636803500006,-0.987888278999847],[131.27149498800017,-0.949395440999936],[131.26351972700004,-0.929294528999904],[131.27019290500004,-0.926853122999873],[131.29151451900023,-0.914971612999906],[131.25025475400017,-0.872653903999989],[131.23536217500012,-0.846449476999879],[131.24301191500015,-0.819431247999916],[131.3322046230002,-0.792738539999902],[131.37354576900023,-0.787855726999922],[131.38754316500004,-0.782647393999838],[131.39877363400004,-0.766289971999825],[131.42676842500023,-0.759454033999987],[131.4379988940002,-0.754001559999864],[131.45036868600008,-0.750095309999878],[131.48829186300011,-0.746840101999837],[131.49634850400005,-0.740329684999921],[131.50294030000012,-0.73333098799985],[131.51791425900015,-0.731703382999839],[131.53419030000018,-0.733493747999916],[131.54476972700004,-0.736911716999913],[131.52344811300023,-0.761976820999919],[131.5166121750002,-0.774346612999864],[131.5167749360002,-0.785251559999935],[131.53288821700008,-0.782647393999838],[131.55347741,-0.776788018999895],[131.57129967500006,-0.769219658999845],[131.57886803500006,-0.761000257999854],[131.59017988400004,-0.756524346999967],[131.77955162900014,-0.719170830999829],[131.86345462300008,-0.691989842],[131.87647545700017,-0.68962981599995],[131.88428795700023,-0.681898695999948],[131.90845787900017,-0.633884372999873],[131.9519149100001,-0.588799737999892],[131.97885175900015,-0.566664320999919],[132.00342858200005,-0.551853122999859],[132.05600019600004,-0.534274997999915],[132.06885826900023,-0.531996351999851],[132.07488040500004,-0.523370049999841],[132.09205162900017,-0.483005466999884],[132.09961998800011,-0.469903252999913],[132.15088951900023,-0.435723565999837],[132.1662703790001,-0.432224216999842],[132.19988040500013,-0.414646091999984],[132.23715253999998,-0.401543877999842],[132.27003014400006,-0.384535414999874],[132.28793379000004,-0.381117445999948],[132.3127547540001,-0.379327080999872],[132.39665774800005,-0.353448174999869],[132.4371850920002,-0.347100518999923]]],[[[104.54851321700018,-0.398044528999932],[104.59294681100012,-0.44841887799997],[104.59937584700006,-0.463799737999835],[104.5916447270001,-0.483575127999856],[104.57300866000006,-0.500420830999857],[104.53419030000012,-0.528578382999925],[104.52662194100016,-0.547621351999837],[104.52198326900006,-0.596612237999892],[104.5112410820001,-0.613946221999882],[104.4767358730002,-0.614027601999865],[104.44711347700016,-0.588067315999865],[104.42042076900006,-0.574965101999894],[104.3938908210001,-0.613946221999882],[104.38363691500015,-0.653497002999828],[104.37582441500014,-0.660088799999983],[104.3562931650001,-0.661716404],[104.34603925900015,-0.579196873],[104.3357853520001,-0.542657158999873],[104.3263452480002,-0.529880466999842],[104.31202233200005,-0.531996351999851],[104.2558699880001,-0.475518487999906],[104.25367272200005,-0.460056247999887],[104.26319420700005,-0.446221612999977],[104.27702884200002,-0.413018487999963],[104.2840275400001,-0.401055596999853],[104.31185957100016,-0.378350518999895],[104.32471764400012,-0.364841403999918],[104.33253014400006,-0.346449476999879],[104.3393660820001,-0.346449476999879],[104.34555097700014,-0.363702080999886],[104.33480879000015,-0.40488046699987],[104.3393660820001,-0.42839934699991],[104.34603925900015,-0.42839934699991],[104.34831790500002,-0.407403252999885],[104.35287519600014,-0.38738372199991],[104.3597111340001,-0.38738372199991],[104.3826603520001,-0.401462497999859],[104.415782097,-0.381931247999958],[104.46957441500015,-0.332126559999892],[104.48926842500012,-0.349379164999988],[104.49675540500019,-0.353936455999857],[104.51823978000019,-0.362562757999854],[104.52491295700005,-0.366875908999944],[104.53093509200006,-0.373467705999843],[104.54135175900015,-0.389336846999868],[104.54851321700018,-0.398044528999932]]],[[[122.04371178500011,-0.334649346999825],[122.05144290500019,-0.342054945999905],[122.05404707099999,-0.355157158999873],[122.05307050900004,-0.373711846999882],[122.042735222,-0.393487237999892],[122.02662194100006,-0.406914971999896],[122.00660241000018,-0.410739841999899],[121.9848738940001,-0.401055596999853],[121.964121941,-0.413344007999896],[121.93181399800018,-0.414646091999984],[121.89869225400005,-0.407484632999868],[121.87501061300023,-0.394789320999891],[121.86085045700011,-0.377862237999906],[121.86011803500018,-0.367445571],[121.86500084700006,-0.357842705999857],[121.86817467500012,-0.343031507999882],[121.87232506600004,-0.33261484199997],[121.88233483200023,-0.330010674999883],[121.9023543630001,-0.332126559999892],[121.90333092500006,-0.333916924999969],[121.9083764980002,-0.337334893999895],[121.91553795700015,-0.340020440999879],[121.92351321700018,-0.339613539999874],[121.92481530000012,-0.334567966999842],[121.92269941499997,-0.3163388],[121.926524285,-0.312269789999888],[121.96656334700006,-0.314711195999919],[121.97803795700011,-0.318536065999851],[122.00440514400005,-0.330254815999922],[122.0135197270001,-0.331963799999926],[122.02955162900018,-0.332126559999892],[122.04371178500011,-0.334649346999825]]],[[[127.632009311,-0.415297132999939],[127.63591556100002,-0.416192315999851],[127.64779707100014,-0.414320570999962],[127.65170332100016,-0.415297132999939],[127.658539259,-0.42839934699991],[127.66627037899998,-0.435723565999837],[127.68311608200011,-0.460056247999887],[127.68799889400007,-0.480645440999837],[127.67652428500006,-0.503513278999932],[127.61768639400022,-0.573174737999906],[127.60767662900017,-0.593845309999921],[127.6040145190001,-0.617120049999855],[127.60645592500023,-0.629082940999879],[127.61304772199999,-0.636407158999887],[127.62289472700003,-0.64023202899989],[127.63502037900005,-0.641289971999939],[127.64747155000023,-0.64430103999986],[127.65113366,-0.652439059999878],[127.65137780000023,-0.685804945999948],[127.64966881600006,-0.696709893999838],[127.65267988400014,-0.707207940999979],[127.66602623800023,-0.716403903999876],[127.67823326900022,-0.717705987999864],[127.69019616000017,-0.713636976999823],[127.70118248800011,-0.706801039999974],[127.71013431100006,-0.699314059999921],[127.72510826900005,-0.694024346999853],[127.78956139400017,-0.68962981599995],[127.80469811300016,-0.694105726999837],[127.84864342500012,-0.712985934999864],[127.85792076900023,-0.719821872999873],[127.86109459699999,-0.725762627999984],[127.87517337300008,-0.744317315999908],[127.87826582100003,-0.754001559999864],[127.87842858200011,-0.760186455999843],[127.87956790500002,-0.763360283999901],[127.88266035200004,-0.764580987999821],[127.88892662900017,-0.764743747999887],[127.898203972,-0.767347914999874],[127.898203972,-0.773532809999935],[127.89193769600014,-0.785251559999935],[127.88819420700023,-0.802178643999909],[127.876231316,-0.817803643999895],[127.83082115999999,-0.859144789999931],[127.82227623800011,-0.86435312299993],[127.81267337300018,-0.866631768999895],[127.79948978000007,-0.867120049999883],[127.78663170700023,-0.870375257999925],[127.76531009200008,-0.884535414999945],[127.75489342500006,-0.88762786299985],[127.74878991000001,-0.885349216999956],[127.7275496750001,-0.867120049999883],[127.71778405000005,-0.862237237999821],[127.69402103000017,-0.854668877999956],[127.68311608200011,-0.853610934999907],[127.68018639400006,-0.850274346999882],[127.67847741000017,-0.84335702899989],[127.67383873800024,-0.836195570999934],[127.662364129,-0.833103122999859],[127.65349368600006,-0.827406507999882],[127.65349368600006,-0.814629815999837],[127.658539259,-0.791436455999985],[127.65552819100016,-0.780938408999844],[127.65064537899998,-0.771172783999887],[127.64478600400015,-0.762953382999896],[127.63819420700011,-0.757256768999824],[127.62574303500018,-0.752373955999843],[127.62045332099999,-0.755547783999901],[127.61638431100008,-0.761488539999931],[127.6074324880001,-0.764743747999887],[127.58969160200004,-0.768731377999856],[127.53565514400022,-0.798923434999878],[127.46989993600008,-0.81845468499985],[127.45769290500009,-0.815606377999913],[127.45248457100016,-0.802015882999853],[127.45053144600004,-0.792901299999869],[127.4415796230002,-0.77288176899998],[127.43726647200018,-0.729099216999927],[127.4394637380001,-0.716403903999876],[127.47071373800023,-0.652520440999851],[127.47022545700007,-0.641289971999939],[127.467051629,-0.639825127999885],[127.43604576900005,-0.630629164999917],[127.42693118600019,-0.62558359199997],[127.40886478000006,-0.624200127999899],[127.39861087300002,-0.62021249799993],[127.39730879000014,-0.616875908999901],[127.39535566499998,-0.604668877999828],[127.39234459700018,-0.599704684999878],[127.38746178500004,-0.597426039999903],[127.37452233200011,-0.594008070999976],[127.37110436300011,-0.592868747999944],[127.35328209700006,-0.562920830999971],[127.35075931100012,-0.555271091999856],[127.34441165500017,-0.544610283999916],[127.31397545700023,-0.522230726999808],[127.30298912900017,-0.510918877999913],[127.29525800900015,-0.49431731599995],[127.29118899800018,-0.476820570999905],[127.29184004000014,-0.46013762799987],[127.29957116000017,-0.4457333309999],[127.31177819100006,-0.432224216999842],[127.32243899800008,-0.416924737999878],[127.32935631600017,-0.398044528999932],[127.33025149800007,-0.373711846999882],[127.32813561300023,-0.36516692499994],[127.31666100399998,-0.339613539999874],[127.33041425900004,-0.339450778999904],[127.35075931100012,-0.328708591999884],[127.36117597699999,-0.325860283999859],[127.372813347,-0.329034112999906],[127.38282311300013,-0.336358330999829],[127.39861087300002,-0.353936455999857],[127.40503991000006,-0.358656507999868],[127.41146894600016,-0.362399997999887],[127.4165145190001,-0.367771091999856],[127.42058353000007,-0.388929945999948],[127.42652428500017,-0.401462497999859],[127.43531334700006,-0.411228122999887],[127.44629967500012,-0.415297132999939],[127.46094811300011,-0.406833591999913],[127.46892337300008,-0.386407158999845],[127.47413170700005,-0.363213799999897],[127.4804793630001,-0.346449476999879],[127.48666425900014,-0.34246184699991],[127.49586022200006,-0.339125257999882],[127.50416100399998,-0.335137627999984],[127.50782311300006,-0.329034112999906],[127.50879967500022,-0.320733330999843],[127.51156660199999,-0.310642184999878],[127.51685631600019,-0.30193450299997],[127.52418053500017,-0.298028252999885],[127.52816816500014,-0.298760674999912],[127.52979576900006,-0.300713799999954],[127.53077233200017,-0.303155205999985],[127.53223717500012,-0.304945570999891],[127.56617272200016,-0.316501559999907],[127.57862389400005,-0.324965101999865],[127.58350670700023,-0.343031507999882],[127.58887780000012,-0.351983330999985],[127.61231530000006,-0.366306247999972],[127.61768639400022,-0.377536716999884],[127.61915123800011,-0.388604424999841],[127.62256920700011,-0.39959075299997],[127.62720787900004,-0.408949476999823],[127.632009311,-0.415297132999939]]],[[[104.49252363400015,-0.308770440999908],[104.48650149800008,-0.310723565999851],[104.4788517590001,-0.309991143999824],[104.46957441500015,-0.312269789999888],[104.45622806100008,-0.318617446],[104.4461369150001,-0.320082289999888],[104.41822350400017,-0.318536065999851],[104.40650475400017,-0.311781507999811],[104.40088951900006,-0.297295830999857],[104.40495853000002,-0.283379815999965],[104.42123457100014,-0.278090101999808],[104.47999108200004,-0.271254164999888],[104.48780358200005,-0.274102471999839],[104.4936629570001,-0.281182549999883],[104.49708092500012,-0.289971612999864],[104.49708092500012,-0.298597914999945],[104.49252363400015,-0.308770440999908]]],[[[122.14454186300017,-0.373955987999821],[122.13941491000006,-0.384209893999852],[122.12387129000015,-0.392673434999892],[122.11500084700016,-0.388929945999948],[122.10718834700013,-0.38225676899998],[122.09473717500006,-0.381117445999948],[122.0898543630001,-0.389255466999884],[122.08887780000023,-0.401543877999842],[122.08464603000002,-0.40781015399989],[122.07056725400015,-0.398044528999932],[122.05990644600014,-0.353936455999857],[122.06031334700008,-0.329278252999856],[122.06560306100002,-0.296075127999842],[122.07667076900019,-0.269138278999961],[122.09473717500006,-0.263848565999893],[122.10157311300011,-0.315362237999963],[122.10580488400004,-0.321384372999887],[122.13168379000004,-0.33798593499985],[122.13795006600016,-0.34726327899989],[122.14323978000006,-0.360446872999844],[122.14454186300017,-0.373955987999821]]],[[[127.21363366000004,-0.25017669099995],[127.22038821700019,-0.257582289999945],[127.22820071700008,-0.251722914999988],[127.23487389400023,-0.251722914999988],[127.24138431100002,-0.256442966999913],[127.24830162900005,-0.263848565999893],[127.25456790500017,-0.275648695999877],[127.263926629,-0.279473565999879],[127.29249108200011,-0.278090101999808],[127.29712975400004,-0.28191497199991],[127.29607181100008,-0.290297132999882],[127.29224694100004,-0.299574476999922],[127.28874759200008,-0.305433851999879],[127.28288821700012,-0.307305596999853],[127.26490319100016,-0.30624765399989],[127.25782311300023,-0.308851820999891],[127.25131269600003,-0.32333749799993],[127.25473066500017,-0.338799737999864],[127.26335696700002,-0.353122653999847],[127.27198326900022,-0.363457940999936],[127.27702884200006,-0.373467705999843],[127.2807723320001,-0.388604424999841],[127.28003991000017,-0.402520440999908],[127.26156660200014,-0.414646091999984],[127.26197350400017,-0.428806247999915],[127.26880944100019,-0.456312757999868],[127.26596113400015,-0.464532158999944],[127.25660241,-0.477634372999916],[127.25196373800004,-0.497165622999987],[127.24626712300018,-0.496351820999976],[127.23959394600016,-0.491794528999847],[127.23462975400011,-0.490411065999865],[127.21094811300004,-0.513278903999961],[127.1987410820001,-0.520603122999887],[127.17945397200005,-0.525160414999917],[127.11736087300001,-0.525160414999917],[127.11996504000004,-0.517998955999886],[127.12159264400022,-0.514906507999811],[127.124766472,-0.510918877999913],[127.10857181100008,-0.501071872999901],[127.11255944100006,-0.49187590899983],[127.12435957100003,-0.485284112999864],[127.13103274800008,-0.483005466999884],[127.13062584700006,-0.470147393999866],[127.12614993600019,-0.456719658999873],[127.11988366000006,-0.446221612999977],[127.113942905,-0.44198984199987],[127.10230553499999,-0.437758070999948],[127.10230553499999,-0.427422783999845],[127.11052493600017,-0.4047177059999],[127.11052493600017,-0.377536716999884],[127.11255944100006,-0.369398695999877],[127.11695397199999,-0.365655205999929],[127.12183678500011,-0.363457940999936],[127.124766472,-0.360039971999839],[127.12256920700023,-0.337334893999895],[127.11426842500023,-0.310235283999873],[127.11036217500023,-0.287692966999884],[127.12110436300016,-0.278090101999808],[127.12818444100006,-0.276136976999865],[127.1538192070001,-0.265720309999864],[127.16211998800006,-0.260837497999901],[127.17481530000022,-0.25554778399983],[127.20346113400004,-0.257256768999838],[127.21363366000004,-0.25017669099995]]],[[[98.48682701900012,-0.510918877999913],[98.4964298840001,-0.520928643999909],[98.50269616000004,-0.535414320999948],[98.50440514400005,-0.5512020809999],[98.50049889400006,-0.56560637799987],[98.49366295700004,-0.56560637799987],[98.492930535,-0.557875257999854],[98.49138431100008,-0.553887627999885],[98.4891056650001,-0.550713799999912],[98.48682701900012,-0.545586846999981],[98.47925866000017,-0.553155205999857],[98.4734806650001,-0.556735934999921],[98.46745853000019,-0.556084893999866],[98.45899498800006,-0.551853122999859],[98.4677840500001,-0.53883228999986],[98.46208743600002,-0.529473565999837],[98.44792728000002,-0.526299737999949],[98.43165123800006,-0.531996351999851],[98.4255477220001,-0.5433895809999],[98.42188561300006,-0.561781507999939],[98.42042076900006,-0.579034112999864],[98.4220483730002,-0.58660247199991],[98.39031009200008,-0.577080987999821],[98.3167423840001,-0.53508879999984],[98.27515709700012,-0.525160414999917],[98.28419030000012,-0.521742445999919],[98.2950952480002,-0.513360283999944],[98.30201256600017,-0.510918877999913],[98.3118595710001,-0.511976820999962],[98.32927493600008,-0.518731377999913],[98.3361108730002,-0.517754815999851],[98.3421330090001,-0.5062802059999],[98.36402428500006,-0.44198984199987],[98.36597741000016,-0.422051690999893],[98.36264082100016,-0.380140882999882],[98.36402428500006,-0.360039971999839],[98.368907097,-0.349216403999932],[98.38941491000017,-0.320896091999899],[98.39812259200002,-0.312269789999888],[98.40544681100008,-0.308851820999891],[98.4134220710001,-0.306735934999878],[98.42066491000006,-0.303806247999859],[98.42546634200014,-0.298597914999945],[98.42611738400015,-0.288181247999873],[98.41863040500019,-0.257582289999945],[98.42920983200005,-0.243829033999845],[98.4406844410001,-0.246514580999914],[98.45118248800004,-0.25839609199987],[98.49341881600017,-0.329196872999873],[98.50733483200005,-0.364922783999901],[98.50049889400006,-0.38738372199991],[98.5102645190001,-0.403741143999838],[98.51238040500019,-0.422946872999887],[98.50879967500012,-0.442559502999842],[98.50196373800011,-0.460544528999875],[98.50456790500013,-0.473565362999864],[98.50163821700019,-0.486097914999874],[98.49512780000012,-0.49863046699987],[98.48682701900012,-0.510918877999913]]],[[[103.75652103000019,-0.346449476999879],[103.74935957100016,-0.348809502999927],[103.71241295700011,-0.346449476999879],[103.69825280000005,-0.349541924999954],[103.67066491000006,-0.363702080999886],[103.65748131599999,-0.366875908999944],[103.64966881599999,-0.370049737999835],[103.62623131600006,-0.384209893999852],[103.61255944100012,-0.38738372199991],[103.60401451900006,-0.383477471999825],[103.5926212900001,-0.376153252999913],[103.58033287900017,-0.372002862999878],[103.56812584700018,-0.377536716999884],[103.54664147200006,-0.382989190999837],[103.49000084700018,-0.361586195999877],[103.461680535,-0.366875908999944],[103.46062259200006,-0.333916924999969],[103.4851180350001,-0.286797783999972],[103.52214603,-0.243829033999845],[103.55787194100006,-0.223402601999865],[103.57455488400008,-0.224704684999864],[103.62867272200018,-0.234307549999926],[103.64039147200006,-0.240655205999872],[103.64958743600002,-0.254815362999892],[103.67066491000006,-0.262627862999878],[103.7127384770001,-0.269707940999851],[103.73462975400017,-0.281182549999883],[103.75611412900017,-0.301202080999943],[103.76685631600017,-0.324639580999843],[103.75652103000019,-0.346449476999879]]],[[[122.18970787899998,-0.205254815999865],[122.1772567070001,-0.230401299999841],[122.18962649800014,-0.230157158999901],[122.2026473320001,-0.232191664999917],[122.21322675900015,-0.237562757999967],[122.21762129000015,-0.247165622999859],[122.22095787900017,-0.25017669099995],[122.2351994150001,-0.2582333309999],[122.23878014400023,-0.263848565999893],[122.2365014980001,-0.273370049999897],[122.23015384200002,-0.274346612999878],[122.22291100400005,-0.270196221999839],[122.21762129000015,-0.263848565999893],[122.21143639400005,-0.263848565999893],[122.19996178500006,-0.267754815999979],[122.16439863400016,-0.249444268999923],[122.14625084700008,-0.244073174999883],[122.14437910199997,-0.233005466999927],[122.15837649800008,-0.211358330999857],[122.17709394600004,-0.196384372999916],[122.18970787899998,-0.205254815999865]]],[[[122.32781009200008,-0.230564059999907],[122.34538821700009,-0.238702080999829],[122.35938561300021,-0.249281507999868],[122.36915123800006,-0.263848565999893],[122.36491946700008,-0.282159112999949],[122.36793053500016,-0.304457289999902],[122.3751733730002,-0.325616143999909],[122.38266035200016,-0.339613539999874],[122.37598717500012,-0.346449476999879],[122.35425866000004,-0.321709893999909],[122.32154381600012,-0.257907809999878],[122.29330488400004,-0.237237237999864],[122.28858483200023,-0.237969658999972],[122.27328535200016,-0.243747653999861],[122.26612389400012,-0.244073174999883],[122.26050866,-0.240980726999894],[122.24561608200005,-0.223402601999865],[122.22885175900015,-0.207940362999849],[122.22584069100004,-0.199395440999908],[122.23194420700023,-0.188734632999967],[122.24073326900012,-0.195407809999935],[122.26734459700006,-0.205010674999826],[122.2727970710001,-0.206149997999859],[122.27711022200016,-0.213962497999844],[122.28728274800014,-0.218845309999907],[122.32781009200008,-0.230564059999907]]],[[[121.62452233200013,-0.198418877999842],[121.60027103000013,-0.203220309999921],[121.57455488400015,-0.182549737999906],[121.56910241000007,-0.144789320999948],[121.59742272200016,-0.124688408999987],[121.63314863400004,-0.124688408999987],[121.64966881600017,-0.14739348799985],[121.64258873800013,-0.17685312299993],[121.62452233200013,-0.198418877999842]]],[[[130.82471764400023,-0.003838799999869],[130.96192467500012,-0.044732354999908],[130.96656334700006,-0.048109632999839],[130.96998131600006,-0.053521416999871],[130.97364342500012,-0.057183527],[130.97901451900023,-0.055352471999939],[130.98682701900023,-0.048150322999916],[130.9905705090001,-0.046156507999882],[131.019786004,-0.038628838999912],[131.026703321,-0.037896416999885],[131.04460696700008,-0.038262627999899],[131.05640709700006,-0.041029554999952],[131.05779056100013,-0.049086195999905],[131.04379316500015,-0.065240166999871],[131.05982506600006,-0.066420179999895],[131.08619225400005,-0.071547132999896],[131.11353600400005,-0.073663018999824],[131.12671959700018,-0.076429945999877],[131.15365644600004,-0.085707289999917],[131.16187584700006,-0.092380466999884],[131.17042076900023,-0.101657809999935],[131.18002363400004,-0.110039971999896],[131.19157962300008,-0.113702080999857],[131.19662519599999,-0.119235934999864],[131.20191491000017,-0.13005950299987],[131.21159915500002,-0.137872002999941],[131.22950280000003,-0.134209893999895],[131.23389733200005,-0.13811614399998],[131.2385360040001,-0.139825127999984],[131.25367272200018,-0.140313408999972],[131.26368248800006,-0.14267343499985],[131.26929772200018,-0.147556247999915],[131.27393639400012,-0.152439059999878],[131.29737389400006,-0.159274997999901],[131.30591881600012,-0.171075127999956],[131.31820722700016,-0.203057549999954],[131.30486087300002,-0.217543226999908],[131.2988387380002,-0.226657809999907],[131.29761803499997,-0.237237237999864],[131.30665123800023,-0.251397393999966],[131.33855228000007,-0.277601820999919],[131.34546959700006,-0.288181247999873],[131.34009850400017,-0.296075127999842],[131.316661004,-0.299574476999922],[131.31137129000004,-0.308851820999891],[131.30665123800023,-0.321221612999835],[131.29672285200004,-0.328545830999829],[131.2872827480002,-0.337172132999839],[131.28394616000017,-0.353936455999857],[131.2794702480002,-0.351739190999865],[131.26807701900023,-0.348565362999977],[131.26351972700004,-0.346449476999879],[131.26221764400012,-0.368340752999828],[131.25294030000023,-0.384372653999989],[131.23796634200014,-0.389255466999884],[131.21924889400023,-0.377536716999884],[131.18091881600006,-0.346449476999879],[131.1577254570001,-0.332940362999821],[131.14747155000018,-0.335870049999841],[131.14307701900006,-0.332126559999892],[131.1128035820001,-0.332126559999892],[131.10434004000015,-0.328220309999907],[131.10222415500002,-0.324395440999893],[131.09848066500004,-0.322930596999839],[131.0854598320001,-0.325860283999859],[131.06983483200023,-0.332940362999821],[131.023285352,-0.366875908999944],[131.02182050900015,-0.352959893999881],[131.01563561300006,-0.349867445999976],[130.99610436300011,-0.353936455999857],[130.99586022200006,-0.354913018999838],[130.99105879000012,-0.357028903999932],[130.98438561300011,-0.359144789999945],[130.97901451900023,-0.360039971999839],[130.97046959700006,-0.358005466999913],[130.95826256600006,-0.348565362999977],[130.95167076900006,-0.346449476999879],[130.93091881600017,-0.315362237999963],[130.90528405000012,-0.29843515399989],[130.89991295700014,-0.291192315999879],[130.90723717500023,-0.28492604],[130.89307701900023,-0.264336846999882],[130.87940514400012,-0.254082940999865],[130.8632918630002,-0.250583591999956],[130.83423912900017,-0.249281507999868],[130.81690514400017,-0.244886976999894],[130.80762780000012,-0.244073174999883],[130.79672285200004,-0.239190362999906],[130.79444420700005,-0.228204033999859],[130.79737389400006,-0.209242445999934],[130.79224694100017,-0.189873955999829],[130.7848413420002,-0.179375908999859],[130.730235222,-0.130466403999876],[130.719493035,-0.114108981999863],[130.71550540500002,-0.093194268999895],[130.70704186300011,-0.096286716999884],[130.7011824880002,-0.096449476999851],[130.68824303500006,-0.093194268999895],[130.692718946,-0.086358330999872],[130.69556725400005,-0.079522393999866],[130.67701256600006,-0.077894789999931],[130.65007571700008,-0.079766533999901],[130.62525475400005,-0.08497486799989],[130.61304772200006,-0.093194268999895],[130.6374617850001,-0.098728122999915],[130.64722741000006,-0.103855075999917],[130.65406334700006,-0.113702080999857],[130.63607832100004,-0.113457940999908],[130.62623131600017,-0.125746351999865],[130.62924238399998,-0.140720309999978],[130.66537519600004,-0.154392184999921],[130.68238366000008,-0.16985442499994],[130.71778405000012,-0.216973565999936],[130.73878014400023,-0.255791924999869],[130.74268639400023,-0.274672132999896],[130.75098717500012,-0.287530205999829],[130.79273522200003,-0.30722421699987],[130.81104576900012,-0.318536065999851],[130.8154403000001,-0.302178643999838],[130.82032311300006,-0.294122002999899],[130.82813561300006,-0.291436455999914],[130.871918165,-0.293226820999905],[130.88705488400004,-0.296482028999847],[130.8937280610002,-0.302015882999953],[130.8966577480002,-0.312107028999932],[130.90381920700023,-0.317559502999956],[130.91285241000017,-0.321058851999865],[130.92090905000012,-0.325860283999859],[130.929535352,-0.336114190999879],[130.94011478000007,-0.3558895809999],[130.94825280000015,-0.366875908999944],[130.94027754000004,-0.370863539999931],[130.93140709700018,-0.37900155999985],[130.92400149800008,-0.388604424999841],[130.92090905000012,-0.398044528999932],[130.91675866000017,-0.406019789999903],[130.90650475400003,-0.413018487999963],[130.86548912900005,-0.429294528999904],[130.77930748800006,-0.445082289999945],[130.75603274800008,-0.445977471999939],[130.73308353000007,-0.441501559999892],[130.71550540500002,-0.42839934699991],[130.70606530000012,-0.410251559999921],[130.68067467500012,-0.339613539999874],[130.693614129,-0.331312757999882],[130.69597415500007,-0.318129165000016],[130.69255618600008,-0.303480726999837],[130.68824303500006,-0.291192315999879],[130.60914147200006,-0.314060153999876],[130.57911217500012,-0.333916924999969],[130.56470787900005,-0.373711846999882],[130.57154381600006,-0.373711846999882],[130.58228600400017,-0.366143487999835],[130.57862389400012,-0.383884373],[130.56153405000018,-0.427015882999839],[130.55445397200012,-0.433526299999841],[130.54737389400023,-0.436130466999927],[130.54420006600017,-0.432061455999957],[130.54574629000004,-0.420179945999919],[130.5584416020001,-0.38738372199991],[130.54118899800008,-0.38250090899993],[130.54053795700023,-0.367933851999823],[130.54542076900012,-0.347751559999878],[130.54420006600017,-0.325860283999859],[130.53793379,-0.316501559999907],[130.52222741000017,-0.30193450299997],[130.51612389400006,-0.291192315999879],[130.51710045700023,-0.282647393999937],[130.52247155000012,-0.274834893999866],[130.52654056100008,-0.266778252999913],[130.52369225400005,-0.257582289999945],[130.50660241000014,-0.250258070999934],[130.48568769600004,-0.255303643999881],[130.45484459700006,-0.271254164999888],[130.45118248800011,-0.274183851999823],[130.44450931100008,-0.283135674999926],[130.441172722,-0.28492604],[130.4355574880001,-0.282891533999887],[130.43238366000006,-0.273695570999919],[130.42750084700018,-0.271254164999888],[130.4084578790001,-0.269707940999851],[130.39975019600004,-0.267673434999907],[130.39275149800014,-0.263848565999893],[130.38217207100016,-0.275648695999877],[130.3756616550002,-0.274590752999913],[130.37086022200018,-0.267998955999929],[130.36597741000006,-0.263848565999893],[130.33887780000012,-0.262872002999828],[130.33814537900017,-0.263848565999893],[130.31625410200004,-0.259942315999908],[130.3108016290001,-0.257582289999945],[130.30738366000017,-0.251885674999954],[130.30469811300011,-0.242771091999884],[130.30054772200018,-0.234144789999959],[130.29371178500006,-0.230401299999841],[130.26539147200012,-0.224786065999851],[130.23243248800023,-0.212823174999912],[130.21705162900017,-0.200860283999873],[130.241953972,-0.195570570999905],[130.25017337300014,-0.197442315999865],[130.26758873800011,-0.206149997999859],[130.27662194100012,-0.209242445999934],[130.27995853000002,-0.208672783999873],[130.30323326900023,-0.208672783999873],[130.30396569100017,-0.209242445999934],[130.33855228000004,-0.203220309999921],[130.35670006600017,-0.201836846999939],[130.36915123800011,-0.206149997999859],[130.38355553500006,-0.214450778999932],[130.39861087300008,-0.214450778999932],[130.41285241000017,-0.208428643999838],[130.42408287900017,-0.199314059999935],[130.42986087300002,-0.186293226999936],[130.41667728000016,-0.184177341999927],[130.39771569100014,-0.183363539999917],[130.38648522200018,-0.175062757999854],[130.40267988400004,-0.16985442499994],[130.41211998800023,-0.157321872999859],[130.41374759200008,-0.141534112999906],[130.40626061300011,-0.127373955999886],[130.39771569100014,-0.145928643999895],[130.38461347700004,-0.157484632999825],[130.37403405000023,-0.155857028999975],[130.37224368600008,-0.134209893999895],[130.36597741000006,-0.134209893999895],[130.36133873800011,-0.14324309699991],[130.35482832099999,-0.146661065999822],[130.34693444100006,-0.145440362999906],[130.33814537900017,-0.140313408999972],[130.34131920700023,-0.154473565999822],[130.347504102,-0.168389580999886],[130.35075931100008,-0.180352471999825],[130.34498131600017,-0.188734632999967],[130.33301842500023,-0.188246351999808],[130.31706790500007,-0.181817315999879],[130.30307050899998,-0.172946872999844],[130.29712975400017,-0.165215752999828],[130.29395592500006,-0.152032158999873],[130.27979576900017,-0.131442966999842],[130.27662194100012,-0.117120049999855],[130.2806095710001,-0.104994398999949],[130.29078209699998,-0.099216403999904],[130.30404707100016,-0.099867445999948],[130.317637566,-0.106784763999855],[130.32349694100006,-0.102634372999901],[130.32911217500023,-0.096612237999906],[130.33423912900017,-0.088962497999958],[130.33814537900017,-0.079522393999866],[130.343109571,-0.093519789999917],[130.34498131600017,-0.10906340899983],[130.34839928500017,-0.12184010199995],[130.35865319099997,-0.127373955999886],[130.3686629570001,-0.12184010199995],[130.36915123800011,-0.108330987999892],[130.36426842500012,-0.092380466999884],[130.35865319099997,-0.079522393999866],[130.38086998800006,-0.073663018999824],[130.39429772200018,-0.082818291999899],[130.40699303500006,-0.097263278999861],[130.42750084700018,-0.106784763999855],[130.42335045700023,-0.086195570999905],[130.42066491000017,-0.079522393999866],[130.42750084700018,-0.079522393999866],[130.42986087300002,-0.08660247199991],[130.434336785,-0.093194268999895],[130.47779381600006,-0.075494072999973],[130.49854576900023,-0.062676690999865],[130.51002037900017,-0.044732354999908],[130.51954186300006,-0.049655856999877],[130.52808678499997,-0.056410414999988],[130.54420006600017,-0.072686455999929],[130.54542076900012,-0.068617445999877],[130.550466342,-0.058444919999843],[130.55274498800011,-0.06308359199987],[130.5561629570001,-0.067925713999941],[130.5584416020001,-0.072686455999929],[130.56080162900005,-0.065606377999885],[130.57154381600006,-0.044732354999908],[130.57496178500017,-0.048597914999917],[130.58643639400012,-0.058444919999843],[130.59522545700005,-0.047214450999931],[130.6227319670002,-0.051771742999875],[130.64112389400023,-0.044732354999908],[130.66098066500015,-0.044732354999908],[130.6910913420002,-0.035739841999884],[130.71631920700023,-0.033257744999872],[130.72234134200008,-0.052178643999881],[130.73609459700018,-0.046888929999824],[130.76547285200016,-0.049981377999899],[130.78386478000013,-0.044732354999908],[130.77686608200023,-0.037286065999922],[130.7688908210001,-0.03252532299993],[130.7597762380001,-0.030531507999896],[130.74968509200014,-0.031101169999872],[130.76148522200018,-0.018365166999914],[130.779063347,-0.00896575299997],[130.80062910200004,-0.003838799999869],[130.82471764400023,-0.003838799999869]]],[[[98.55982506599999,-0.278252862999864],[98.55518639400012,-0.318536065999851],[98.55518639400012,-0.312269789999888],[98.55176842500006,-0.322198174999897],[98.54322350400015,-0.334079684999935],[98.54151451900006,-0.343031507999882],[98.54265384200019,-0.354180596999896],[98.54786217500006,-0.36923593499999],[98.54900149800001,-0.381117445999948],[98.54151451900006,-0.381117445999948],[98.51246178500017,-0.319024346999839],[98.40552819100006,-0.168226820999919],[98.3899845710001,-0.140394789999874],[98.36329186300011,-0.074395440999851],[98.34351647200016,-0.044732354999908],[98.33187910200014,-0.036797783999845],[98.31592858200005,-0.028334242999904],[98.30176842500005,-0.018731377999828],[98.29566491000006,-0.007256768999966],[98.30445397199999,-0.00172291499986],[98.32496178500017,0.003973700000117],[98.36402428500006,0.010484117000118],[98.4060978520001,-0.007378838999941],[98.44336998800004,-0.052015882999825],[98.469981316,-0.107517184999963],[98.4799910820001,-0.158379815999908],[98.49732506600017,-0.199802341999913],[98.53223717500012,-0.239353122999873],[98.55982506599999,-0.278252862999864]]],[[[104.58790123800006,0.008286851000037],[104.62037194100016,-0.004245700999874],[104.67554772200012,-0.053806247999901],[104.68132571700008,-0.065240166999871],[104.64722741000006,-0.072686455999929],[104.64722741000006,-0.080743096999882],[104.65251712300002,-0.08953215899993],[104.65943444100006,-0.096530856999919],[104.66456139400006,-0.09937916499986],[104.67546634200014,-0.095798434999892],[104.68311608200005,-0.08961354],[104.69190514400012,-0.087497653999904],[104.70582116000011,-0.096286716999884],[104.73658287900015,-0.127373955999886],[104.75391686300006,-0.170586846999967],[104.76628665500019,-0.188246351999808],[104.78777103,-0.195570570999905],[104.81413821700002,-0.192803643999852],[104.8203231130001,-0.184340101999894],[104.81983483200011,-0.169610283999901],[104.82593834700018,-0.147719007999882],[104.84888756600017,-0.139580987999864],[104.8772892590001,-0.166599216999899],[104.92896569100006,-0.237237237999864],[105.01148522200006,-0.281508070999905],[105.00269616000017,-0.294854424999826],[104.98178144600008,-0.290704033999887],[104.95655358200005,-0.281182549999883],[104.93523196700019,-0.278090101999808],[104.91716556100019,-0.287530205999829],[104.92017662900017,-0.29900481599995],[104.93067467500005,-0.313409112999921],[104.93523196700019,-0.332126559999892],[104.8816837900001,-0.308363539999903],[104.86353600400011,-0.305433851999879],[104.851328972,-0.301202080999943],[104.8328556650001,-0.282403252999899],[104.77808678500017,-0.257582289999945],[104.76343834700006,-0.242933851999851],[104.7507430350001,-0.227146091999899],[104.73552493600013,-0.214450778999932],[104.712657097,-0.209242445999934],[104.67090905000006,-0.211602471999896],[104.65495853000006,-0.215915622999887],[104.64039147200006,-0.223402601999865],[104.61695397200006,-0.24032968499985],[104.60621178500006,-0.244073174999883],[104.60035241,-0.243584893999895],[104.58513431100002,-0.237237237999864],[104.57992597700009,-0.24032968499985],[104.57105553500017,-0.248467705999857],[104.56299889400006,-0.253513278999975],[104.55054772200006,-0.267998955999929],[104.54135175900015,-0.271254164999888],[104.5286564460001,-0.269952080999971],[104.52393639400006,-0.265883070999919],[104.5218205090001,-0.259372653999932],[104.5174259770001,-0.25017669099995],[104.50733483200005,-0.236097915],[104.4978947270001,-0.228122653999876],[104.48389733200005,-0.224379164999931],[104.45932050900015,-0.223402601999865],[104.44711347700016,-0.220961196],[104.43995201900012,-0.214288018999866],[104.43637129000014,-0.204359632999953],[104.43555748800006,-0.192152601999894],[104.43726647200006,-0.181084893999852],[104.44190514400005,-0.175551039999931],[104.45590254000015,-0.168226820999919],[104.4944767590001,-0.135674737999949],[104.51075280000005,-0.113702080999857],[104.5174259770001,-0.089450778999947],[104.52507571700014,-0.007745049999954],[104.53736412900017,0.021307684000107],[104.558360222,0.003078518000123],[104.55982506600017,0.010158596000096],[104.56381269600016,0.022609768000024],[104.56462649800008,0.030340887000122],[104.57162519600016,0.017645575000145],[104.58790123800006,0.008286851000037]]],[[[129.54997806100008,-0.214125257999811],[129.540293816,-0.216729424999897],[129.52613366000017,-0.214613539999888],[129.51677493600008,-0.208754164999945],[129.50196373800006,-0.188734632999967],[129.45826256600017,-0.113702080999857],[129.37289472700016,-0.079522393999866],[129.37037194100006,-0.066338799999912],[129.3722436860002,-0.050347588999912],[129.37159264400023,-0.036797783999845],[129.36166425900015,-0.031101169999872],[129.3375757170001,0.00678131699999],[129.33277428500006,0.011379299000112],[129.3100692070001,0.024847723],[129.29908287900005,0.033433335000097],[129.29346764400023,0.036322333000129],[129.29029381600017,0.040594794000057],[129.29346764400023,0.047674872000101],[129.3004663420002,0.050604559000121],[129.30925540500007,0.048041083000115],[129.45980879,-0.080173434999907],[129.51270592500006,-0.114353122999901],[129.53687584700018,-0.134209893999895],[129.55762780000012,-0.158786716999913],[129.5673934250002,-0.175551039999931],[129.57154381600017,-0.192152601999894],[129.56820722700016,-0.200127862999935],[129.5602319670002,-0.208103122999901],[129.54997806100008,-0.214125257999811]]],[[[127.40886478000006,0.147040106000105],[127.43881269600003,0.139715887000023],[127.45248457100016,0.1402041690001],[127.44825280000022,0.134263414000159],[127.44019615999999,0.120266018000024],[127.45997155000023,-0.003838799999869],[127.46168053500004,-0.025160415000016],[127.46029707100014,-0.038872979999951],[127.45289147200018,-0.041029554999952],[127.43604576900005,-0.02768320099986],[127.43262780000018,-0.020806572999945],[127.43189537900005,-0.011569919999886],[127.43262780000018,0.00678131699999],[127.4299422540001,0.008286851000037],[127.41285241000006,0.023504950000017],[127.41187584700018,0.016099351000108],[127.40967858200004,0.010565497000101],[127.40552819100006,0.006496486000131],[127.39861087300002,0.003078518000123],[127.391368035,0.026027736000032],[127.391368035,0.053045966000155],[127.39861087300002,0.106105861],[127.40886478000006,0.147040106000105]]],[[[98.62541622300014,0.17515444500016],[98.67314881800004,0.169812204000095],[98.71735171300011,0.175119907000152],[98.74386804200017,0.166265774000038],[98.766855252,0.166260799000071],[98.80574359100015,0.160915958000061],[98.83579891300022,0.141468860000103],[98.85168541500015,0.109621341000164],[98.84458901000019,0.084859408000113],[98.80215138800011,0.086636337000144],[98.76325605100013,0.086647611000103],[98.72612544600005,0.074284580000096],[98.68900355200006,0.07077530300009],[98.65012344900018,0.079621516000159],[98.62008145400014,0.086702748000135],[98.57588254200019,0.08675018600016],[98.5387398820001,0.090335129000039],[98.52813318600008,0.111575879000057],[98.52460056700008,0.145197070000123],[98.54759660600004,0.159326621000091],[98.59004914400012,0.171655865000062],[98.62541622300014,0.17515444500016]]],[[[104.43962649800018,0.146185614000103],[104.4900822270001,0.082586981000119],[104.49708092500012,0.071275132000139],[104.4858504570001,0.065822658000101],[104.47950280000006,0.063950914000131],[104.46957441500015,0.063788153000175],[104.47999108200004,0.045111395000106],[104.48308353000007,0.035711981000162],[104.48340905000006,0.023504950000017],[104.47657311300006,0.023504950000017],[104.45915774800008,0.047308661000088],[104.41138756600006,0.091701565000122],[104.40137780000006,0.119086005],[104.40756269600008,0.119086005],[104.41187584699999,0.114569403000118],[104.41602623800006,0.111721096000082],[104.42872155000012,0.106105861],[104.423594597,0.11220937700007],[104.40870201900006,0.150946356000105],[104.40674889400012,0.161200262000136],[104.40788821700002,0.17059967700007],[104.41391035200014,0.175848700000145],[104.42115319100017,0.17275625200007],[104.42839603000019,0.163763739000132],[104.43962649800018,0.146185614000103]]],[[[104.51197350400017,0.232896226000136],[104.5310978520001,0.215969143000152],[104.53052819100017,0.219061591000056],[104.532399936,0.222886460000069],[104.5354923840001,0.226385809000149],[104.53882897200006,0.228257554000109],[104.54322350400011,0.227443752000099],[104.54810631600017,0.224310614000132],[104.68873131600004,0.071275132000139],[104.7078556650001,0.043646552000141],[104.70289147200018,0.032782294000143],[104.68392988400015,0.036281643000137],[104.66089928500016,0.051418361000131],[104.63990319100006,0.070054429000123],[104.633555535,0.078111070000162],[104.626149936,0.102240302],[104.61980228000019,0.10578034100007],[104.60621178500006,0.091782945000105],[104.59522545700011,0.101629950000117],[104.57886803500017,0.124904690000136],[104.56836998800011,0.136786200000174],[104.5657658210001,0.142726955000114],[104.56421959700018,0.158148505000142],[104.56153405000006,0.161281643000109],[104.55339603000006,0.161525783000158],[104.54672285200009,0.162502346000124],[104.54070071700019,0.165228583000101],[104.53419030000012,0.17059967700007],[104.52979576900012,0.1773135440001],[104.52735436300011,0.189886786000102],[104.52491295700005,0.1954613300001],[104.49854576900006,0.223293361000074],[104.4936629570001,0.231146552000141],[104.49024498800004,0.242621161000088],[104.5022078790001,0.238267320000105],[104.51197350400017,0.232896226000136]]],[[[102.8753361340001,0.284084377000013],[102.84701582100014,0.278062242000175],[102.83912194100017,0.290961005000099],[102.85450280000012,0.303168036000088],[102.88453209700018,0.315252997000172],[102.9139103520001,0.320257880000128],[102.92725670700011,0.310858466000099],[102.90772545700011,0.298529364000146],[102.8753361340001,0.284084377000013]]],[[[104.41138756600006,0.294419664000102],[104.4051212900001,0.292141018000123],[104.39958743600008,0.294989325000159],[104.3955184250001,0.300930080000015],[104.39185631600006,0.31659577],[104.38689212300018,0.319281317000062],[104.38021894600016,0.320379950000103],[104.37354576900012,0.324530341000127],[104.34693444100004,0.359930731000134],[104.3393660820001,0.365464584999984],[104.34148196700019,0.366359768000066],[104.34831790500002,0.370510158000101],[104.35181725400011,0.371242580000128],[104.35816491000006,0.368882554000081],[104.37623131600017,0.354315497000144],[104.40552819100017,0.338812567000133],[104.41618899800014,0.328802802000141],[104.42139733200011,0.317938544000071],[104.42017662900011,0.306301174000154],[104.41138756600006,0.294419664000102]]],[[[127.41716556100008,0.312933661000116],[127.39625084700018,0.281073309000092],[127.35816491,0.283514716000042],[127.34750410200014,0.296128648000106],[127.34107506600006,0.31464264500012],[127.3379012380001,0.333970445000062],[127.33708743600017,0.348781643000038],[127.34327233200021,0.361395575000103],[127.35873457100014,0.37128327000012],[127.3789168630001,0.377671617000132],[127.39869225400004,0.379584052000013],[127.41871178500016,0.353989976000122],[127.41716556100008,0.312933661000116]]],[[[103.08139082100008,0.579291083000086],[103.07699629000014,0.574774481000119],[103.07146243600002,0.57721588700015],[103.06446373800006,0.585191148000106],[103.05787194100017,0.596380927000126],[103.04566491000011,0.627834377000056],[103.04330488400015,0.640448309000121],[103.04086347700009,0.646714585000083],[103.03728274800002,0.652655341000099],[103.03663170700011,0.657538153000161],[103.04330488400015,0.660956122000087],[103.05543053500006,0.658677476000193],[103.06576582100016,0.649237372000087],[103.07398522200005,0.636460679000052],[103.07960045700005,0.62441640800013],[103.08432050900015,0.608547268000024],[103.08545983200011,0.600083726000165],[103.08497155000012,0.592027085000126],[103.08139082100008,0.579291083000086]]],[[[103.49789472700016,0.627020575000046],[103.48902428500016,0.619940497000158],[103.4720158210001,0.622992254999986],[103.46924889400006,0.637396552000126],[103.47388756600016,0.653469143000109],[103.4790145190001,0.660956122000087],[103.48585045700011,0.667385158000087],[103.49952233200005,0.695502020000092],[103.50635826900006,0.701890367000104],[103.5174259770001,0.6984317080001],[103.5218205090001,0.689846096000011],[103.5213322270001,0.67865631700009],[103.5179142590001,0.667629299000126],[103.50611412900011,0.640773830000143],[103.49789472700016,0.627020575000046]]],[[[103.18336022200006,0.514837958000101],[103.17066491000017,0.51373932500006],[103.1531681650001,0.52383047100011],[103.14047285200016,0.539374091000113],[103.13599694100017,0.556219794000114],[103.13672936300011,0.573879299000126],[103.15894616000017,0.664780992000189],[103.17920983200011,0.695502020000092],[103.21176191500015,0.708156643000066],[103.23023522200018,0.704169012000165],[103.2469181650001,0.694037177000126],[103.26148522200005,0.680324611000103],[103.27320397200006,0.665676174000083],[103.28516686300004,0.64638906500015],[103.29363040500019,0.625433661000017],[103.29786217500012,0.604722398000177],[103.29997806100002,0.575425523000163],[103.2957462900001,0.549383856000105],[103.28077233200011,0.538031317000119],[103.19556725400011,0.52045319200009],[103.18336022200006,0.514837958000101]]],[[[104.28760826900005,0.650783596000124],[104.27735436300004,0.626166083000044],[104.2664494150001,0.633002020000148],[104.26026451900012,0.643377997000059],[104.2498478520001,0.667181708000129],[104.22201582100016,0.696030992000161],[104.21583092500006,0.708156643000066],[104.24146569100006,0.695379950000117],[104.27051842500012,0.675034898000035],[104.28760826900005,0.650783596000124]]],[[[104.74903405000012,0.722601630000028],[104.73926842500006,0.716253973000079],[104.73145592500006,0.722479559000135],[104.72071373800006,0.737860419000171],[104.72486412900017,0.74966054900014],[104.74097741000017,0.748928127000113],[104.75416100400011,0.737250067000119],[104.74903405000012,0.722601630000028]]],[[[127.43140709700005,0.750921942000062],[127.43604576900005,0.747219143000109],[127.4394637380001,0.742865302000126],[127.44483483200021,0.727443752000099],[127.44825280000022,0.706610419000029],[127.44906660200014,0.685003973000107],[127.44629967500012,0.667181708000129],[127.43392988400015,0.652167059000107],[127.41089928500011,0.632269598000121],[127.38868248800023,0.618841864000117],[127.37867272200006,0.623032945000148],[127.37330162899998,0.633490302000126],[127.36361738400014,0.648260809000121],[127.35865319100017,0.665838934000149],[127.37574303500004,0.698797919000114],[127.3849389980002,0.757147528000033],[127.39454186300006,0.752590236000074],[127.40381920700021,0.750392971000082],[127.41211998800011,0.751654364000089],[127.41846764400022,0.757147528000033],[127.42562910199999,0.754217841000013],[127.43140709700005,0.750921942000062]]],[[[134.33863366000006,0.737534898000149],[134.32252037900017,0.730536200000173],[134.30486087300005,0.732896226000122],[134.3004663420002,0.74347565300009],[134.310313347,0.75649648600016],[134.3268335300002,0.766180731000119],[134.34294681100008,0.765204169000143],[134.34693444100006,0.752020575000103],[134.33863366000006,0.737534898000149]]],[[[103.10450280000006,0.735419012000136],[103.09229576900012,0.72235748899999],[103.08627363400008,0.724676825000046],[103.08082116000017,0.734279690000108],[103.07715905000012,0.745510158000116],[103.07585696700019,0.752834377000113],[103.07715905000012,0.760891018000152],[103.0802514980002,0.76862213700015],[103.08472741000006,0.775702216000127],[103.0945744150001,0.786037502000127],[103.10035241000006,0.790187893000081],[103.10661868600019,0.792954820000134],[103.11280358200004,0.792954820000134],[103.12094160200016,0.779974677000126],[103.11622155000006,0.757757880000085],[103.10450280000006,0.735419012000136]]],[[[104.62045332100016,0.777044989000117],[104.61353600400017,0.765855210000097],[104.60189863400015,0.764349677000055],[104.57203209700006,0.770819403000147],[104.55396569100006,0.770697333],[104.54102623800006,0.766587632000125],[104.5112410820001,0.750311591000099],[104.51189212300008,0.773749091000084],[104.52344811300011,0.788397528000175],[104.5423283210001,0.795884507000054],[104.56462649800008,0.798163153000118],[104.60564212300008,0.793890692000119],[104.62159264400005,0.787420966000028],[104.62045332100016,0.777044989000117]]],[[[104.27735436300004,0.787909247000016],[104.27759850400011,0.76430898600016],[104.27979576900006,0.747056382000054],[104.28589928500016,0.730373440000108],[104.29769941500015,0.708156643000066],[104.2840275400001,0.708156643000066],[104.27442467500012,0.703436591000141],[104.26482181100008,0.702215887000122],[104.25538170700005,0.704901434000107],[104.23609459700012,0.718451239000075],[104.21452884200018,0.721177476000136],[104.20557701900006,0.726060289000117],[104.19166100400017,0.745998440000093],[104.18824303500017,0.764471747000115],[104.19581139400012,0.779974677000126],[104.21583092500006,0.791327216000113],[104.23389733200011,0.786444403000132],[104.24488366000017,0.786525783000116],[104.2498478520001,0.794745184000121],[104.2541610040001,0.797837632000096],[104.2636824880001,0.799139716000099],[104.27295983200005,0.796535549000097],[104.27735436300004,0.787909247000016]]],[[[103.72486412900011,0.766506252000141],[103.71338951900005,0.762437242000189],[103.70093834700006,0.765692450000131],[103.69507897200012,0.773911851000051],[103.68881269600016,0.791652736000046],[103.66651451900012,0.823635158000044],[103.66773522200006,0.839667059000035],[103.70264733200004,0.814154364000117],[103.71810957100016,0.798081773000135],[103.72730553500006,0.779852606000162],[103.72486412900011,0.766506252000141]]],[[[104.64283287900015,0.806830145000035],[104.63038170700005,0.806545315000093],[104.62549889400006,0.810695705000128],[104.63021894600008,0.816351630000113],[104.63542728000019,0.828558661000088],[104.63917076900012,0.847967841000099],[104.64861087300002,0.857896226000108],[104.65943444100006,0.845892645000077],[104.66277103000007,0.834214585000083],[104.66325931100008,0.829087632000068],[104.66138756600017,0.820135809000135],[104.6565861340001,0.813869533000087],[104.65154056100008,0.809963283000101],[104.64283287900015,0.806830145000035]]],[[[127.34693444100012,0.757391669000071],[127.33130944100002,0.756415106000176],[127.31283613399998,0.757147528000033],[127.3033960300002,0.764878648000121],[127.29330488400004,0.782660223000107],[127.28565514400006,0.802150783000101],[127.28248131599999,0.814886786000059],[127.28882897200006,0.836900131999982],[127.30486087300002,0.855169989000046],[127.32488040500017,0.862860419000142],[127.36345462300008,0.840969143000123],[127.37435957100014,0.826239325000131],[127.37696373800021,0.807766018000109],[127.37110436300011,0.78449127800009],[127.36003665500007,0.765082098000079],[127.34693444100012,0.757391669000071]]],[[[103.5244246750001,0.79848867400014],[103.52344811300011,0.777818101000136],[103.49048912900017,0.821275132],[103.47592207100008,0.832220770000134],[103.44027754000015,0.844224351000165],[103.4257918630001,0.854396877000028],[103.4212345710001,0.873236395000063],[103.43083743600008,0.867661851000136],[103.48853600400011,0.845445054000081],[103.49732506600017,0.840236721000096],[103.50554446700008,0.833970445000133],[103.51270592500012,0.826808986000103],[103.51872806100013,0.818426825000131],[103.52320397200018,0.807928778000075],[103.5244246750001,0.79848867400014]]],[[[103.94141686300011,0.775702216000127],[103.93287194100017,0.770331122000158],[103.92139733200005,0.772772528000019],[103.91138756600006,0.780747789000145],[103.89503014400012,0.810248114000132],[103.88746178500017,0.818019924000126],[103.85173587300008,0.835353908000116],[103.84595787900017,0.84247467700007],[103.84229576900005,0.850653387000165],[103.81861412900011,0.880072333000072],[103.81861412900011,0.88621653900006],[103.86329186300006,0.876898505000099],[103.89820397200018,0.853338934000149],[103.9241642590001,0.822455145000021],[103.94214928500004,0.791327216000113],[103.94141686300011,0.775702216000127]]],[[[103.45948326900012,0.658107815000051],[103.43433678500006,0.647284247000144],[103.41570071700008,0.657375393000024],[103.40308678500017,0.678208726000094],[103.39372806100008,0.698797919000114],[103.38379967500006,0.708156643000066],[103.3455509770001,0.763373114000075],[103.34050540500007,0.784002997000101],[103.3387150400001,0.804917709999984],[103.3411564460001,0.817368882000082],[103.35035241000017,0.839178778000047],[103.35743248800006,0.872463283000044],[103.36988366000016,0.886053778000175],[103.38550866000006,0.888861395000049],[103.40088951900006,0.880072333000072],[103.41000410200016,0.864569403000147],[103.41749108200005,0.84650299700013],[103.4275822270001,0.831610419000086],[103.45972741000017,0.820379950000174],[103.47046959700018,0.807928778000075],[103.48902428500016,0.777044989000117],[103.50196373800011,0.763373114000075],[103.50684655000006,0.755438544000029],[103.51002037900011,0.742865302000126],[103.4803166020001,0.68524811400006],[103.45948326900012,0.658107815000051]]],[[[103.837657097,0.769517320000148],[103.83228600400017,0.765366929000109],[103.82667076900006,0.765692450000131],[103.82105553500006,0.768947658000087],[103.80128014400012,0.784247137000136],[103.76392662900017,0.804917709999984],[103.74634850400011,0.822739976000051],[103.73047936300011,0.847560940000093],[103.72624759200019,0.873236395000063],[103.74341881599999,0.893744208000101],[103.75025475400011,0.888861395000049],[103.7677514980002,0.884344794000171],[103.77759850400011,0.880072333000072],[103.80176842500012,0.852728583000015],[103.81706790500006,0.84170156500015],[103.8310653000001,0.816351630000113],[103.83952884200008,0.788397528000175],[103.837657097,0.769517320000148]]],[[[103.47934004000015,0.878851630000057],[103.46900475400011,0.869614976000179],[103.458262566,0.869696356000162],[103.44467207100016,0.873602606000077],[103.43295332100016,0.880682684000121],[103.4280705090001,0.890041408000073],[103.42156009200019,0.896714585000112],[103.41041100400015,0.904730536000073],[103.40707441500015,0.911444403000104],[103.4534611340001,0.920558986000017],[103.462168816,0.918931382],[103.47266686300004,0.908840236000117],[103.47950280000012,0.893622137000136],[103.47934004000015,0.878851630000057]]],[[[104.17212975400011,0.883490302],[104.18482506600016,0.880072333000072],[104.22608483200011,0.880072333000072],[104.24146569100006,0.877020575000173],[104.25782311300006,0.868597723000121],[104.26628665500012,0.855861721000082],[104.25749759200006,0.839667059000035],[104.25025475400011,0.830023505000057],[104.23951256599999,0.822455145000021],[104.18751061300006,0.799261786000073],[104.17644290500017,0.79848867400014],[104.16749108200005,0.804917709999984],[104.16114342500005,0.818793036000145],[104.15601647200006,0.846380927000069],[104.14763431100008,0.858954169000157],[104.13412519600008,0.867254950000131],[104.10718834700006,0.872992255000113],[104.09229576900006,0.880072333000072],[104.09937584700005,0.894761460000069],[104.09400475400017,0.933091539000188],[104.09913170700011,0.948919989000132],[104.11255944100017,0.952582098],[104.12769616000017,0.942531643000109],[104.15748131600017,0.910793361000159],[104.16293379000014,0.901922919000029],[104.16635175900015,0.891791083000058],[104.17212975400011,0.883490302]]],[[[103.9090275400001,1.005926825000145],[103.94214928500004,0.996079820000119],[103.95199629000015,0.987941799000112],[103.96143639400006,0.974798895000148],[103.9672957690001,0.960109768000137],[103.96664472700016,0.947211005000128],[103.95883222700016,0.939764716000155],[103.94629967500005,0.935614325000031],[103.93279056100019,0.934027411],[103.92164147200016,0.934637762000136],[103.91138756600006,0.937933661000088],[103.85661868600013,0.96841054900004],[103.84644616000017,0.977484442000119],[103.83969160200016,0.989935614000146],[103.83887780000012,1.002997137000037],[103.84473717500005,1.012681382000082],[103.85661868600013,1.014390367000175],[103.87378991000004,1.003607489000089],[103.87370853000007,1.011908270000063],[103.88005618600017,1.031480210000126],[103.89283287900011,1.014349677000012],[103.9090275400001,1.005926825000145]]],[[[104.8396916020001,0.958807684000149],[104.832774285,0.955145575000103],[104.82829837300008,0.964992580000114],[104.8263452480002,0.976629950000117],[104.82593834700018,0.99298737200013],[104.82178795700005,0.998724677000027],[104.79118899800002,1.024074611000145],[104.798594597,1.031480210000126],[104.81104576900006,1.025620835000083],[104.83008873800006,1.023382880000099],[104.84351647200005,1.018215236000017],[104.83904056100008,1.003607489000089],[104.84555097700016,0.997788804000123],[104.84994550900015,0.991197007000053],[104.85230553500011,0.983710028000175],[104.85279381600017,0.975490627000084],[104.84961998800011,0.968898830000029],[104.84538821700019,0.963324286000102],[104.8396916020001,0.958807684000149]]],[[[131.24415123800011,1.02973053600013],[131.23633873800011,1.01935455900005],[131.23707116000006,1.024969794000128],[131.24488366000006,1.035345770000049],[131.24415123800011,1.02973053600013]]],[[[107.60157311300006,1.009833075000131],[107.57545006600017,0.980169989000103],[107.55958092500006,0.970160223000036],[107.54712975400005,0.976263739000103],[107.54761803500006,0.982123114000146],[107.55339603000019,0.987453518000123],[107.55909264400006,0.993963934000107],[107.5594181650001,1.003607489000089],[107.55404707100016,1.006903387000122],[107.5452580090001,1.006252346000068],[107.53598066500008,1.007879950000088],[107.52955162899998,1.018052476000051],[107.5312606130001,1.027899481000148],[107.53907311300011,1.034328518000081],[107.55014082100016,1.037502346000139],[107.56202233200011,1.037176825000117],[107.58594811300006,1.026068427000084],[107.59888756600017,1.017157294000057],[107.60157311300006,1.009833075000131]]],[[[131.26539147200018,1.052720445000119],[131.25489342500012,1.044256903000161],[131.2535913420002,1.052639065000136],[131.25562584700006,1.068793036000102],[131.26351972700004,1.075913804000052],[131.27116946700002,1.072007554000052],[131.27019290500004,1.060980536000102],[131.26539147200018,1.052720445000119]]],[[[120.68336022199999,1.044582424000097],[120.66716556100009,1.043117580000128],[120.63209069100017,1.068508205000072],[120.60759524800002,1.072455145000148],[120.61752363400014,1.076808986000131],[120.62826582100016,1.078843492000161],[120.63917076900023,1.077582098000065],[120.649180535,1.072455145000148],[120.65992272200005,1.067613023000078],[120.66871178499999,1.061021226000179],[120.68336022199999,1.044582424000097]]],[[[120.38624108200005,1.025946356000105],[120.37794030000005,1.024074611000145],[120.36866295700023,1.031724351000165],[120.36768639400017,1.049221096000039],[120.37159264400016,1.068019924000083],[120.37761478000006,1.079901434000121],[120.39242597700004,1.0860863300001],[120.40235436300023,1.077215887000136],[120.40650475400015,1.060980536000102],[120.40398196700008,1.044867255000128],[120.39966881600019,1.037502346000139],[120.393728061,1.030747789000188],[120.38624108200005,1.025946356000105]]],[[[103.443125847,1.01276276200015],[103.44483483200011,1.006170966000084],[103.44483483200011,1.000311591000056],[103.4422306650001,0.995266018000109],[103.43702233200011,0.991400458000101],[103.42359459700005,0.990179755000085],[103.40756269600016,0.994940497000087],[103.38038170700005,1.009833075000131],[103.35767662900017,1.004461981000091],[103.34083092500006,1.019517320000105],[103.3147892590001,1.06159088700015],[103.31560306100002,1.073187567000076],[103.32349694100012,1.092759507000054],[103.3338322270001,1.111395575000131],[103.3421330090001,1.119696356000119],[103.34791100400017,1.121771552000126],[103.36646569100006,1.13117096600007],[103.37671959700018,1.133286851000079],[103.38982181100008,1.130275783000158],[103.39136803500017,1.122463283000073],[103.38819420700011,1.111721096000153],[103.38721764400006,1.099798895000035],[103.3930770190001,1.076076565000108],[103.39779707100008,1.06415436399999],[103.40398196700008,1.054836330000128],[103.40967858200005,1.051174221000082],[103.42269941500015,1.049709377000028],[103.42839603,1.047186591000013],[103.431407097,1.042710679000123],[103.43165123800006,1.038153387000093],[103.43116295700005,1.033392645],[103.4318953790001,1.028387762000136],[103.43425540500007,1.024237372000101],[103.44060306100019,1.017157294000057],[103.443125847,1.01276276200015]]],[[[102.64527428500006,0.997219143000152],[102.66374759200008,0.996079820000119],[102.67807050900015,0.999416408000144],[102.70533287900017,1.013902085000097],[102.71876061300006,1.017279364000032],[102.74301191500014,1.015936591000042],[102.7638452480002,1.011175848000121],[102.78256269600008,1.001776434000021],[102.83253014400012,0.963771877000099],[102.90902754000008,0.927720445000133],[103.0217391290001,0.845282294000114],[103.0364689460001,0.828192450000174],[103.0403751960001,0.821275132],[103.0486759770001,0.797023830000086],[103.05176842500006,0.784654039000145],[103.05445397200006,0.777736721000153],[103.05762780000012,0.777044989000117],[103.04908287900011,0.757798570000077],[103.04371178500004,0.720689195000148],[103.03370201900006,0.705023505],[103.02784264400012,0.701239325000145],[103.01734459700006,0.696112372000144],[103.00733483200005,0.693833726000079],[103.00294030000006,0.698472398000192],[102.99976647199999,0.700751044000157],[102.98243248800011,0.72235748899999],[102.92994225400017,0.770005601000136],[102.89470462300001,0.789984442000033],[102.85222415500007,0.798163153000118],[102.766856316,0.791327216000113],[102.74512780000006,0.793768622000144],[102.70215905000006,0.803900458000015],[102.68148847700016,0.804917709999984],[102.59766686300006,0.78506094000015],[102.55787194100017,0.780259507000068],[102.51636803500017,0.791327216000113],[102.46729576900006,0.826971747000158],[102.45801842500005,0.832220770000134],[102.4065047540001,0.873236395000063],[102.40943444100006,0.894720770000077],[102.42457116000006,0.914496161000102],[102.44507897200018,0.929022528000132],[102.48943118600012,0.939764716000155],[102.50066165500002,0.953273830000043],[102.50171959700016,0.972886460000097],[102.46989993600002,1.067368882000039],[102.46762129000015,1.106431382000082],[102.489024285,1.133286851000079],[102.5275171230002,1.139837958000058],[102.55640709699999,1.125677802000126],[102.60792076900012,1.068915106000077],[102.6157332690001,1.057684637000165],[102.61736087300018,1.044256903000161],[102.60889733200005,1.027777411000088],[102.60547936300006,1.011175848000121],[102.62175540500019,1.001613674000055],[102.64527428500006,0.997219143000152]]],[[[103.03711998800004,1.044582424000097],[103.07764733200011,1.003404039000131],[103.12647545700011,0.9278832050001],[103.16325931100019,0.899603583000143],[103.17457116000017,0.88214752800009],[103.1674910820001,0.858954169000157],[103.12712649800002,0.83441803600013],[103.08627363400008,0.841009833000115],[102.9515080090001,0.924627997000158],[102.95118248800004,0.9278832050001],[102.90674889400006,0.968817450000046],[102.89332116000006,0.975327867000118],[102.85889733200011,0.987697658000073],[102.84229576900005,0.989935614000146],[102.8243921230002,0.995428778000161],[102.81153405000006,1.008042710000055],[102.80103600400011,1.021958726000136],[102.79070071700019,1.031480210000126],[102.77361087300008,1.035467841000113],[102.7119246750001,1.031480210000126],[102.69263756600017,1.02582428600013],[102.67058353000019,1.014553127000141],[102.64763431100017,1.006293036000059],[102.62623131600017,1.009833075000131],[102.6247664720001,1.021958726000136],[102.63721764400012,1.041001695000119],[102.67058353000019,1.075588283000116],[102.68523196700019,1.095404364000132],[102.70191491000004,1.137762762000136],[102.71558678500017,1.154445705000072],[102.75538170700005,1.167914130000056],[102.80176842500006,1.163275458000044],[102.8862410820001,1.133286851000079],[102.96713300900015,1.091538804000123],[103.03711998800004,1.044582424000097]]],[[[104.15235436300006,1.140041408000101],[104.15170332100008,1.11945221600017],[104.13111412900011,1.048773505000042],[104.12322024800014,1.049627997000044],[104.10596764400012,1.065008856000162],[104.10417728,1.057766018000137],[104.10417728,1.05166250200007],[104.10670006600004,1.045477606000091],[104.11280358200004,1.037746486000088],[104.10450280000006,1.033270575000031],[104.10059655000005,1.027044989000061],[104.0978296230002,1.0191104190001],[104.09229576900006,1.009833075000131],[104.09156334700005,1.005560614000132],[104.09327233200005,0.993638414000173],[104.09229576900006,0.989935614000146],[104.08790123800011,0.988959052000069],[104.07642662900017,0.990464585000126],[104.07178795700011,0.989935614000146],[104.04916425900014,0.984198309000163],[104.03174889400012,0.989447333000058],[103.99610436300006,1.009833075000131],[103.98796634200012,1.010484117000175],[103.96664472700016,1.008124091000127],[103.95582116000017,1.009833075000131],[103.9505314460001,1.014105536000145],[103.91822350400017,1.051336981000048],[103.9067488940001,1.07168203300013],[103.90259850400017,1.09052155200007],[103.9140731130001,1.099798895000035],[103.92383873800006,1.096136785999988],[103.93816165500007,1.079575914000188],[103.94898522200006,1.078599351000122],[103.95622806100006,1.084865627000084],[103.95533287900017,1.093573309000149],[103.95134524800018,1.103583075000145],[103.946543816,1.124701239000061],[103.9432072270001,1.130926825000031],[103.94450931100019,1.135239976000122],[103.95582116000017,1.140773830000128],[103.96705162900015,1.141669012000122],[103.9876408210001,1.134222723000064],[103.99610436300006,1.133286851000079],[104.01107832100014,1.14472077000012],[104.01921634200019,1.178859768000038],[104.03093509200008,1.187892971000124],[104.04135175900014,1.181382554000052],[104.07081139400006,1.145941473000136],[104.08545983200005,1.133286851000079],[104.0916447270001,1.145493882000139],[104.09156334700005,1.158433335000055],[104.08659915500019,1.17096588700015],[104.07862389400006,1.181708075000074],[104.09058678500017,1.187811591000141],[104.10320071700006,1.189520575000145],[104.11573326900005,1.187241929000081],[104.12769616000017,1.181301174000069],[104.13819420700004,1.1720238300001],[104.1427514980002,1.166489976000094],[104.14633222700016,1.16046784100017],[104.15235436300006,1.140041408000101]]],[[[104.59253991,1.198797919000114],[104.58692467500012,1.162054755000028],[104.5882267590001,1.144598700000145],[104.59937584700006,1.126450914000145],[104.64714603000006,1.104966539000117],[104.65455162900017,1.096380927000027],[104.65642337300012,1.080389716000028],[104.66749108200005,1.030585028000132],[104.65162194100006,1.00901927300012],[104.64714603000006,0.99689362200013],[104.65398196700019,0.976874091000155],[104.65479576900012,0.947699286000116],[104.65772545700011,0.941473700000159],[104.66163170700011,0.937241929000052],[104.65870201900012,0.9278832050001],[104.64991295700005,0.918443101000179],[104.63697350400011,0.914211330000072],[104.62354576900006,0.912176825000131],[104.61638431100019,0.906195380000128],[104.61353600400017,0.896429755000085],[104.61304772200016,0.883124091000155],[104.59986412900011,0.835028387000094],[104.56706790500019,0.829535223000065],[104.48340905000006,0.858954169000157],[104.48926842500012,0.875148830000114],[104.4837345710001,0.893296617000104],[104.46949303500017,0.908107815000079],[104.44922936300006,0.914211330000072],[104.44922936300006,0.921616929000066],[104.47339928500016,0.920599677000098],[104.48462975400017,0.922186591000127],[104.49024498800004,0.9278832050001],[104.48658287900011,0.937079169000086],[104.47486412900011,0.940090236000088],[104.44922936300006,0.941473700000159],[104.42896569100017,0.948919989000132],[104.42107181100019,0.956610419000157],[104.42123457100014,0.968817450000046],[104.4275822270001,0.974798895000148],[104.46273847700016,0.983099677000041],[104.45801842500006,0.993719794000157],[104.4573673840001,1.001939195000077],[104.46273847700016,1.017279364000032],[104.46827233200005,1.018052476000051],[104.47966556100002,1.025336005000057],[104.48519941500015,1.033677476000037],[104.47299238400008,1.037746486000088],[104.46778405000006,1.040920315000136],[104.45777428500011,1.054999091000084],[104.4524845710001,1.058172919000143],[104.438731316,1.056870835000055],[104.42994225400011,1.053615627000113],[104.38624108200004,1.029852606000105],[104.3714298840001,1.025620835000083],[104.34945722700016,1.024074611000145],[104.34058678499999,1.020900783000087],[104.3271590500001,1.006781317000147],[104.31544030000005,1.003607489000089],[104.28150475400011,1.002142645000035],[104.2710067070001,1.003607489000089],[104.2456160820001,1.017279364000032],[104.24138431100008,1.035549221000096],[104.24244225400011,1.055894273000177],[104.23275800900008,1.075588283000116],[104.23194420700004,1.093329169000114],[104.25635826900012,1.108872789000117],[104.30518639400012,1.126450914000145],[104.31657962300008,1.132879950000074],[104.32227623800006,1.138657945000119],[104.33253014400006,1.154445705000072],[104.3367619150001,1.165025132000039],[104.3372501960001,1.173732815000107],[104.34131920700005,1.179592190000065],[104.3562931650001,1.181708075000074],[104.37842858200004,1.176499742000161],[104.38933353000002,1.17865631699999],[104.3938908210001,1.191595770000077],[104.39966881600006,1.202622789000116],[104.41260826900006,1.200628973000093],[104.43555748800006,1.187892971000124],[104.47608483200005,1.178290106000148],[104.50814863400015,1.179510809000163],[104.53809655000012,1.190252997000087],[104.57203209700006,1.209051825000131],[104.56804446700008,1.220160223000064],[104.57569420700011,1.225409247000144],[104.58692467500012,1.219916083000115],[104.59253991,1.198797919000114]]],[[[126.38542728000013,1.286281643000066],[126.38086998800004,1.283392645000134],[126.35906009200014,1.316107489000061],[126.35084069099999,1.3185082050001],[126.34717858200004,1.323309637000094],[126.35238691500015,1.335882880000085],[126.36166425900004,1.344712632000054],[126.36963951900006,1.348822333000086],[126.37769615999999,1.347479559000107],[126.38493899800002,1.342189846000039],[126.39486738400002,1.339341539000173],[126.40162194100017,1.332017320000176],[126.39039147200018,1.310248114000032],[126.39079837300008,1.304022528000147],[126.38542728000013,1.286281643000066]]],[[[102.46485436300011,0.963446356000162],[102.45687910200016,0.962347723000121],[102.44703209700006,0.962958075000088],[102.43751061300004,0.958889065000122],[102.40748131600017,0.932847398000149],[102.39966881600017,0.9278832050001],[102.36931399800018,0.935207424000026],[102.33375084700006,0.963690497000115],[102.26710045700005,1.036851304000095],[102.2513126960001,1.066799221000068],[102.23926842500012,1.082098700000031],[102.23292076900006,1.099514065000093],[102.2342228520001,1.124212958000072],[102.24268639400012,1.167425848000079],[102.24512780000005,1.203924872000115],[102.24187259200019,1.221869208000072],[102.22291100400011,1.238023179000123],[102.21257571700018,1.258002020000106],[102.20411217500006,1.280829169000128],[102.20101972700016,1.297756252000113],[102.2034611340001,1.30654531499999],[102.21265709700018,1.325425523000192],[102.214610222,1.335638739000132],[102.20850670700005,1.377183335000041],[102.21062259200002,1.398260809000149],[102.21745853000006,1.409165757000039],[102.23121178500017,1.413234768000081],[102.25294030000005,1.413804429000052],[102.29086347700016,1.404527085000097],[102.32211347700016,1.381496486000131],[102.37574303500006,1.322251695000134],[102.45142662900011,1.26727936400006],[102.46705162900011,1.251206773000177],[102.47339928500006,1.242010809000107],[102.4795028000001,1.219142971000096],[102.47608483200011,1.194525458000015],[102.44743899800002,1.10049062700007],[102.44556725400017,1.076157945000176],[102.44743899800002,1.051336981000048],[102.46517988400015,0.994818427000112],[102.46802819100017,0.972560940000065],[102.46485436300011,0.963446356000162]]],[[[97.37452233200005,1.51854075700011],[97.39161217500006,1.508937893000137],[97.407481316,1.514064846000139],[97.41675866000004,1.519232489000146],[97.42432701900012,1.514878648000149],[97.43799889400006,1.495266018000095],[97.43897545700011,1.484605210000069],[97.44166100400011,1.479681708000101],[97.4472762380001,1.476874091000155],[97.45997155000006,1.477972723000107],[97.47038821700002,1.475653387000051],[97.48170006600006,1.477443752000127],[97.48633873800006,1.476548570000134],[97.4878035820001,1.473089911000045],[97.49146569100017,1.459784247000115],[97.49317467500006,1.456040757],[97.51685631600017,1.431789455000086],[97.52418053500011,1.428127346000139],[97.52808678500011,1.422919012000136],[97.53353925900015,1.399847723000079],[97.53988691500015,1.390570380000042],[97.5921330090001,1.339911200000145],[97.60474694100006,1.322333075000117],[97.61654707100008,1.280910549000112],[97.69361412900017,1.186021226000165],[97.71265709700018,1.172674872000144],[97.75733483200004,1.163885809000178],[97.77654056100019,1.155096747000115],[97.79224694100006,1.143988348000093],[97.80225670700005,1.133286851000079],[97.81902103000007,1.109930731000162],[97.82642662900017,1.096258856000134],[97.82943769600016,1.082098700000031],[97.8362736340001,1.069973049000126],[97.85279381600006,1.065008856000162],[97.872813347,1.062486070000148],[97.89039147200005,1.058172919000143],[97.90447024800018,1.044012762000122],[97.9222111340001,1.004339911000116],[97.92847741000006,0.996079820000119],[97.93921959700006,0.986070054000052],[97.93441816500015,0.963609117000132],[97.917735222,0.9278832050001],[97.917735222,0.934637762000136],[97.90137780000012,0.905951239000089],[97.8982853520001,0.87531159100017],[97.90406334700018,0.814886786000059],[97.90186608200011,0.800726630000128],[97.89258873800006,0.777044989000117],[97.88453209700012,0.718207098000121],[97.88298587300008,0.642971096000053],[97.87427819100017,0.62201569200009],[97.82715905000006,0.562689520000035],[97.81934655000006,0.55853913],[97.80925540500002,0.560288804],[97.80030358200011,0.565497137000079],[97.7742619150001,0.585191148000106],[97.76417076900006,0.567572333000086],[97.7522892590001,0.568345445000105],[97.7264103520001,0.585191148000106],[97.72527103000007,0.58075592700014],[97.71534264400006,0.574448960000097],[97.70411217500006,0.572739976000179],[97.6961369150001,0.58637116100013],[97.6904403000001,0.591620184000121],[97.6838485040001,0.596136786000088],[97.67872155000012,0.598863023000149],[97.69092858200011,0.624212958],[97.6838485040001,0.643052476000037],[97.66895592500005,0.658758856000176],[97.65821373800006,0.67462799700003],[97.65748131600004,0.687241929000095],[97.65919030000005,0.715399481000176],[97.65455162900011,0.726060289000117],[97.647715691,0.736314195000134],[97.6330672540001,0.769476629999986],[97.63038170700011,0.780747789000145],[97.61378014400006,0.823553778000061],[97.57439212300008,0.8609072940001],[97.48633873800006,0.914211330000072],[97.49187259200008,0.933010158000116],[97.4793400400001,0.943426825000103],[97.45736738400015,0.947984117000146],[97.43506920700011,0.948919989000132],[97.3953556650001,0.944891669000157],[97.3888452480002,0.952093817000019],[97.38998457100014,0.976263739000103],[97.38770592500006,1.018784898000078],[97.3715926440001,1.059759833000086],[97.32178795700004,1.140773830000128],[97.31226647200006,1.16693756700009],[97.30827884200008,1.174872137000136],[97.29883873800006,1.183254299000112],[97.28785241000016,1.190822658000144],[97.27857506600006,1.199693101000108],[97.2713322270001,1.222235419000086],[97.25684655000006,1.235012111000131],[97.25359134200014,1.246893622000087],[97.25171959700006,1.259222723000121],[97.24724368600019,1.267035223000121],[97.24057050900014,1.272406317000076],[97.23308353000007,1.277289130000057],[97.2229110040001,1.281887111000088],[97.21265709700018,1.284328518000109],[97.2021590500001,1.288316148000177],[97.19157962300008,1.297756252000113],[97.18580162900011,1.307766018],[97.17595462300007,1.331854559000121],[97.16822350400017,1.342840887000165],[97.12842858200005,1.382635809000163],[97.1072697270001,1.397772528000161],[97.08228600400017,1.407619533],[97.08228600400017,1.405340887000108],[97.0686141290001,1.394598700000103],[97.06364993600008,1.415228583000115],[97.0804142590001,1.429144598000107],[97.10694420700004,1.436021226000108],[97.13062584700018,1.435532945000119],[97.1394962900001,1.432196356000091],[97.15072675900008,1.425930080000057],[97.16065514400012,1.418280341000113],[97.16480553500017,1.410711981000077],[97.16968834700006,1.415961005000057],[97.181407097,1.41644928600013],[97.20582116000017,1.413804429000052],[97.23585045700011,1.416693427000084],[97.25782311300006,1.423651434000163],[97.27735436300011,1.436224676999984],[97.321055535,1.474066473000022],[97.33073978000007,1.486558335000112],[97.3348087900001,1.500148830000072],[97.331797722,1.527818101000165],[97.33545983200005,1.537665106000176],[97.34978274800008,1.545396226000193],[97.37452233200005,1.51854075700011]]],[[[125.21599368600008,1.392726955000043],[125.18531334700005,1.390692450000017],[125.17156009200002,1.404486395000106],[125.17465254000004,1.415472723000065],[125.18295332099999,1.421332098000107],[125.20492597700004,1.428127346000139],[125.25001061300006,1.448635158000087],[125.29509524800002,1.551662502000141],[125.3012801440001,1.551662502000141],[125.3012801440001,1.531195380000085],[125.29639733200023,1.502752997000158],[125.29509524800002,1.47284577],[125.29175866,1.46527741100013],[125.277110222,1.453070379999986],[125.27393639400022,1.445217190000079],[125.26710045700021,1.413804429000052],[125.24838300900014,1.402980861000145],[125.21599368600008,1.392726955000043]]],[[[102.2376408210001,1.570257880000057],[102.29786217500006,1.558498440000065],[102.3282983730002,1.559271552000084],[102.33814537900011,1.558498440000065],[102.3489689460001,1.554632880000071],[102.36915123800004,1.542303778000118],[102.37916100400011,1.537990627000028],[102.462657097,1.515448309000121],[102.49048912900017,1.489691473],[102.49586022200006,1.441799221000082],[102.49586022200006,1.36359284100017],[102.511485222,1.295314846000082],[102.50953209700016,1.277289130000057],[102.47877037900015,1.270738023000149],[102.43474368600008,1.299139716000084],[102.372325066,1.359849351000051],[102.33025149800008,1.413275458000072],[102.31462649800008,1.421332098000107],[102.30469811300006,1.423529364000018],[102.28516686300011,1.433335679000123],[102.13453209700006,1.455715236000145],[102.09555097700014,1.475246486000046],[102.0569767590001,1.510687567000133],[102.02654056100008,1.547674872000158],[102.00440514400006,1.585679429],[102.00782311300006,1.6153832050001],[102.05372155000006,1.627346096000124],[102.07243899800014,1.623236395000092],[102.12012780000006,1.600734768],[102.13624108200004,1.589544989000089],[102.1523543630001,1.581122137000122],[102.17505944100016,1.575751044000171],[102.2376408210001,1.570257880000057]]],[[[98.50416100400011,1.664943752000127],[98.52100670700011,1.655585028000104],[98.53109785200016,1.661444403000132],[98.5405379570001,1.673407294000171],[98.55518639400012,1.682033596],[98.57097415500007,1.673081773000149],[98.5906681650001,1.651922919000057],[98.59913170700005,1.631984768000152],[98.58106530000012,1.626776434000163],[98.5599064460001,1.623602606000105],[98.52881920700011,1.623236395000092],[98.49756920700005,1.627264716000141],[98.4648543630001,1.644191799000126],[98.45183353000013,1.646226304000066],[98.43995201900006,1.649847723000121],[98.43165123800006,1.661525783000116],[98.43018639400012,1.676459052000069],[98.43482506600006,1.691961981000176],[98.44564863400015,1.704331773000121],[98.462657097,1.709295966000155],[98.47706139400006,1.703599351000094],[98.4881291020001,1.690497137000122],[98.50416100400011,1.664943752000127]]],[[[125.06169681100006,1.674546617000104],[125.08171634200002,1.674383856000148],[125.14763431100006,1.682033596],[125.17530358200005,1.678168036000073],[125.17994225400011,1.66742584800015],[125.16529381600017,1.627346096000124],[125.16781660199999,1.584784247000172],[125.18783613400014,1.56053294500019],[125.21517988400015,1.543931382000139],[125.23975670700023,1.523667710000041],[125.24919681100006,1.484686591000141],[125.22022545700005,1.459051825000088],[125.17701256600017,1.440171617000061],[125.14429772200005,1.421332098000107],[125.11540774800002,1.385199286000073],[125.09620201900007,1.349514065000122],[125.03370201900023,1.175441799000112],[124.98658287900005,1.092962958000101],[124.95427493600013,1.05353424700013],[124.92115319100016,1.020656643000137],[124.91627037900001,1.013006903000104],[124.90593509200018,0.988104559000078],[124.90398196700008,0.979681708000115],[124.89869225400017,0.973049221000153],[124.86304772200006,0.955145575000103],[124.83082116000017,0.946437893000109],[124.822032097,0.941473700000159],[124.81446373800006,0.931708075000117],[124.79900149800007,0.905747789000131],[124.79102623800013,0.90058014500012],[124.76644941499997,0.895005601000108],[124.74634850400004,0.881252346000096],[124.71216881600004,0.845282294000114],[124.67872155000008,0.820379950000174],[124.66382897200005,0.805609442000019],[124.65430748800023,0.778021552000084],[124.63982181100017,0.758449611000032],[124.63648522200018,0.746649481000148],[124.63672936300011,0.73175690300009],[124.63607832100014,0.725083726000051],[124.62403405000023,0.708156643000066],[124.58790123800011,0.676988023000078],[124.57935631600017,0.658189195000034],[124.57325280000012,0.649115302000112],[124.5693465500001,0.638861395000092],[124.57211347700014,0.629584052000141],[124.57935631600017,0.621039130000113],[124.58220462300012,0.613755601000108],[124.58253014400023,0.595445054000052],[124.577891472,0.591620184000121],[124.55632571700018,0.592962958000029],[124.54835045700015,0.592027085000126],[124.544118686,0.587713934000121],[124.50342858200017,0.534002997000158],[124.49976647200012,0.518540757000139],[124.51417076900007,0.510077216000013],[124.51417076900007,0.503322658000158],[124.49480228000007,0.49628327],[124.48292076900012,0.482896226000093],[124.46583092500022,0.448675848000022],[124.43897545700004,0.456447658000101],[124.4145613940001,0.448146877000042],[124.3925887380001,0.435003973000079],[124.37330162900018,0.428168036000144],[124.349294467,0.42279694200009],[124.32178795700011,0.398871161000045],[124.19971764400022,0.374090887000165],[124.1505639980002,0.369859117000146],[124.10938561300023,0.387193101000136],[124.097341342,0.379624742000175],[124.0685327480002,0.351874091000113],[124.04135175899998,0.359198309000107],[124.03386478000002,0.359320380000085],[124.02393639400012,0.354437567000119],[124.00611412900005,0.341457424000112],[123.99626712300012,0.338812567000133],[123.93140709700006,0.336249091000127],[123.91089928500016,0.33201732000019],[123.86931399800018,0.318304755000085],[123.8588973320001,0.31704336100016],[123.82496178500016,0.318304755000085],[123.80730228000007,0.310858466000099],[123.79053795700021,0.301255601000037],[123.78199303499999,0.298570054000137],[123.77051842500016,0.302069403000047],[123.75806725400005,0.30752187700007],[123.74577884200018,0.310858466000099],[123.7246199880001,0.308823960000069],[123.68970787900018,0.294501044000086],[123.65650475400017,0.288275458000129],[123.64698326900024,0.281642971000153],[123.63249759200019,0.266506252000156],[123.62598717500012,0.266587632000139],[123.61646569099999,0.272040106000091],[123.58423912900015,0.297593492000161],[123.57105553500006,0.303615627000084],[123.46631920700004,0.312323309000149],[123.44467207100008,0.310858466000099],[123.40723717500022,0.300441799000026],[123.39014733200011,0.29783763200011],[123.29200280000012,0.308335679000081],[123.25912519600004,0.320868231000091],[123.24610436300021,0.322088934000107],[123.23878014400022,0.324530341000127],[123.23503665500017,0.328924872000115],[123.22706139400022,0.342678127000127],[123.22193444100007,0.345648505000142],[123.21558678500013,0.352769273000106],[123.19092858200011,0.390326239000103],[123.18669681100017,0.39386627800009],[123.16773522200016,0.393052476000165],[123.16358483200023,0.396795966000028],[123.16179446700002,0.401353257000068],[123.13257897200012,0.44757721600007],[123.0893660820001,0.494289455000143],[123.07422936300011,0.516302802000055],[123.06739342500006,0.516302802000055],[123.0540470710001,0.50096263200011],[123.03248131600016,0.491359768000123],[122.97787519600003,0.48281484600011],[122.83073978000007,0.4923363300001],[122.73829186300024,0.481675523000078],[122.69410241000017,0.48281484600011],[122.68230228000017,0.488592841000155],[122.66293378999998,0.515692450000103],[122.64966881600017,0.52383047100011],[122.65552819099999,0.492865302],[122.65316816500017,0.480414130000071],[122.63941491000006,0.475327867000132],[122.62224368600019,0.476548570000148],[122.60808353000019,0.480861721000068],[122.59685306100019,0.489447333000072],[122.58301842500008,0.494330145000134],[122.56592858200023,0.496527411000045],[122.32439212300002,0.497056382000025],[122.3125106130001,0.494859117000033],[122.29314212300007,0.485052802000084],[122.283457879,0.48281484600011],[122.20720462300007,0.483832098000079],[122.19711347699999,0.48281484600011],[122.18832441500004,0.479681708000044],[122.17286217500012,0.470933335000055],[122.16635175900004,0.469183661000059],[122.14454186300017,0.471258856000176],[122.10425866000016,0.480698960000012],[122.03777103000006,0.482123114000075],[122.01970462300001,0.477118231000119],[122.00416100400005,0.454901434000163],[121.98511803500004,0.448431708000072],[121.89291425899997,0.435451565000065],[121.84083092500023,0.434393622000115],[121.80046634200019,0.426459052000141],[121.78630618600006,0.428168036000144],[121.77947024800002,0.4331729190001],[121.7325952480002,0.499945380000142],[121.71550540500007,0.51508209800005],[121.69011478000002,0.52383047100011],[121.67644290500019,0.523260809000135],[121.64503014400023,0.517157294000157],[121.63599694100006,0.516302802000055],[121.62378991000016,0.522528387000108],[121.61736087300008,0.531317450000088],[121.61166425899998,0.541408596000139],[121.60189863400015,0.551743882000054],[121.59669030000023,0.539007880000099],[121.58773847700004,0.532863674000126],[121.57447350400015,0.530747789000117],[121.5566512380001,0.530585028000061],[121.54460696700018,0.533677476000136],[121.535899285,0.538397528000132],[121.52833092500016,0.537420966000155],[121.51872806100019,0.52383047100011],[121.51490319100016,0.510402736000117],[121.51270592500006,0.497056382000025],[121.50782311300011,0.486802476000179],[121.49512780000022,0.48281484600011],[121.47852623800011,0.482082424000083],[121.46534264400024,0.479641018000052],[121.45411217500022,0.475327867000132],[121.44361412900015,0.469183661000059],[121.42676842500016,0.482367255000113],[121.41334069100016,0.483099677000141],[121.39698326900017,0.478461005000028],[121.36133873800011,0.473211981000119],[121.34205162900015,0.463853257000011],[121.33033287900017,0.461737372000172],[121.31967207100014,0.464748440000093],[121.29639733200023,0.478583075000174],[121.28589928500017,0.48281484600011],[121.26059004000003,0.482489325000088],[121.22046959699999,0.465969143000109],[121.20020592500012,0.461737372000172],[121.17969811300021,0.461004950000145],[121.16382897199999,0.457464911000073],[121.14991295700023,0.449286200000074],[121.13510175900015,0.434393622000115],[121.12501061300011,0.417629299000097],[121.11915123800016,0.411444403000118],[121.10792076900023,0.407131252000113],[121.0991317070001,0.407375393000066],[121.06316165500013,0.413967190000051],[121.04737389400005,0.418931382000096],[121.01978600400007,0.442043361000131],[121.00489342500013,0.448675848000022],[120.98698978000007,0.44700755400001],[120.95533287900017,0.431870835000012],[120.89242597700004,0.423325914000159],[120.8764754570001,0.424505927000098],[120.86068769600014,0.434393622000115],[120.85670006600012,0.440863348000107],[120.85181725400005,0.45575592700007],[120.84717858200011,0.461737372000172],[120.83961022200006,0.46409739800005],[120.80933678500006,0.469183661000059],[120.80543053500017,0.472357489000117],[120.80258222700004,0.479396877000013],[120.7978621750001,0.486476955000157],[120.78882897200012,0.489650783000116],[120.77719160199997,0.488104559000178],[120.76002037900015,0.482611395000063],[120.75082441499998,0.48281484600011],[120.73015384200008,0.493475653000132],[120.69857832099997,0.524155992000132],[120.67953535199999,0.530585028000061],[120.50269616,0.528876044000057],[120.48609459700008,0.524237372000115],[120.40886478000002,0.48574453300013],[120.39161217500012,0.48281484600011],[120.375254754,0.477687893],[120.36182701900012,0.465643622000087],[120.3507593110002,0.451971747000144],[120.34009850400005,0.441880601000165],[120.31470787900005,0.423163153000104],[120.27295983200013,0.378119208000129],[120.21452884200019,0.291937567000076],[120.15821373800021,0.227769273000121],[120.1333113940001,0.191229559000092],[120.12842858200024,0.181097723000121],[120.12134850400015,0.145168361000145],[120.11752363400015,0.136786200000174],[120.10385175900002,0.117254950000103],[120.09848066500014,0.09699127800009],[120.09424889400022,0.051418361000131],[120.08423912900017,0.006252346000011],[120.0754500660001,-0.016412041999871],[120.06283613400002,-0.034519138999869],[120.02849368600008,-0.061822197999859],[120.02295983200021,-0.070977471999925],[120.02230879,-0.081719658999859],[120.02475019600004,-0.106784763999855],[120.01889082099999,-0.15252044099995],[120.01197350400017,-0.175225518999909],[120.0014754570001,-0.192152601999894],[119.99561608200005,-0.209242445999934],[119.99659264400023,-0.234307549999926],[120.01856530000023,-0.363457940999936],[120.02491295700013,-0.384047132999967],[120.05298912900011,-0.419366143999909],[120.05941816500003,-0.44198984199987],[120.05746504000014,-0.452406507999868],[120.04810631599999,-0.472751559999864],[120.04574629000015,-0.483005466999884],[120.04786217500005,-0.49374765399989],[120.05730228000019,-0.517185153999876],[120.07309004000014,-0.613946221999882],[120.08920332100004,-0.65732187299993],[120.243907097,-0.88762786299985],[120.2556258470001,-0.89934661299992],[120.3027449880001,-0.932305596999896],[120.32553144600003,-0.938653252999842],[120.34791100400004,-0.927504164999917],[120.36890709700016,-0.911065362999821],[120.38786868600017,-0.901299737999963],[120.41244550900002,-0.904961846999839],[120.42579186300011,-0.920017184999935],[120.43490644600004,-0.94036223799985],[120.44678795700015,-0.960056247999887],[120.45508873800024,-0.965997002999899],[120.46517988400004,-0.96900807099999],[120.48780358200005,-0.970310153999989],[120.50033613400014,-0.975274346999868],[120.50814863400015,-0.987074476999837],[120.51807701900016,-1.011163018999852],[120.58236738399997,-1.105238539999888],[120.58676191500015,-1.116631768999852],[120.58790123800011,-1.128594658999873],[120.58375084700005,-1.138116143999881],[120.57699629000003,-1.146742445999962],[120.57545006600017,-1.154392184999907],[120.57536868600017,-1.163344007999925],[120.57349694100006,-1.176364841999913],[120.56690514400017,-1.201429945999919],[120.5654403000001,-1.215508721999868],[120.57243899800007,-1.227715752999927],[120.61939537899998,-1.280450127999842],[120.63086998800017,-1.300469658999901],[120.63917076900023,-1.341241143999952],[120.64893639400006,-1.364353122999915],[120.66187584700016,-1.384860934999878],[120.67595462300014,-1.394707940999893],[120.7373153000001,-1.367445570999905],[120.7373153000001,-1.360609632999967],[120.80388431100013,-1.342868747999972],[120.83008873800021,-1.340101820999919],[120.83277428500006,-1.344821872999844],[120.82667076900023,-1.377699476999837],[120.83204186300011,-1.384454033999873],[120.84441165500002,-1.389580987999963],[120.86768639400023,-1.394707940999893],[120.889903191,-1.395277601999865],[120.957774285,-1.386895440999893],[120.97657311300024,-1.382094007999825],[120.98780358200018,-1.381117445999933],[120.99830162900005,-1.385918877999828],[121.02247155000025,-1.408379815999837],[121.03272545700017,-1.415785414999917],[121.07325280000006,-1.421319268999923],[121.10547936300011,-1.405857028999904],[121.13054446700014,-1.37981536299985],[121.16700280000005,-1.322930596999896],[121.17400149800007,-1.305433851999851],[121.17847741000006,-1.268161716999884],[121.18970787900005,-1.22136809699991],[121.19711347700004,-1.202894789999888],[121.20655358200023,-1.191338799999855],[121.22282962300008,-1.175388278999847],[121.24097741000017,-1.161228122999916],[121.25562584700018,-1.155205987999821],[121.2667749360002,-1.148614190999851],[121.27686608200015,-1.132907809999963],[121.29216556100012,-1.100518487999878],[121.31836998800023,-1.067152601999808],[121.37452233200015,-1.020684502999856],[121.42994225400004,-0.93377044099995],[121.45248457100004,-0.905694268999866],[121.50066165500006,-0.859307549999897],[121.51596113400002,-0.850274346999882],[121.53614342500023,-0.846774997999901],[121.57781009200019,-0.846774997999901],[121.58521569100012,-0.842705987999849],[121.58594811300021,-0.832940362999892],[121.58513431100012,-0.82170989399998],[121.58765709700006,-0.812595309999906],[121.59489993600006,-0.808282158999987],[121.62012780000012,-0.800388278999932],[121.62916100400004,-0.798923434999878],[121.64063561300006,-0.800957940999893],[121.648692254,-0.805596612999835],[121.65479576900012,-0.810316664999931],[121.65967858200004,-0.812595309999906],[121.66065514400023,-0.873223565999879],[121.66285241000006,-0.88762786299985],[121.69011478000002,-0.908786716999856],[121.69996178500006,-0.923435153999861],[121.70720462300008,-0.931735934999935],[121.71420332100017,-0.935479424999954],[121.79997806100017,-0.935479424999954],[121.84538821700019,-0.94101327899989],[121.88697350400017,-0.951348565999979],[121.92603600400004,-0.955336195999877],[121.96371504000003,-0.942966403999932],[121.9995223320001,-0.922051690999879],[122.0185653000001,-0.916761976999894],[122.043223504,-0.914971612999906],[122.06641686300021,-0.919528903999946],[122.08570397200018,-0.926446221999868],[122.10531660200003,-0.926202080999914],[122.12891686300004,-0.908786716999856],[122.14136803500011,-0.886814059999921],[122.15284264400023,-0.853204033999901],[122.15943444099999,-0.820000908999887],[122.15626061300021,-0.798923434999878],[122.19361412899998,-0.768975518999895],[122.20769290500007,-0.764743747999887],[122.41016686300011,-0.757500908999944],[122.45101972700004,-0.750583591999856],[122.48747806100017,-0.749688408999873],[122.55713951900006,-0.768161716999884],[122.59498131599999,-0.764743747999887],[122.6005965500001,-0.761407158999859],[122.60572350400004,-0.756524346999967],[122.61247806100006,-0.752211195999877],[122.62232506600016,-0.750583591999856],[122.63575280000006,-0.753838799999897],[122.6564233730002,-0.767754815999879],[122.68336022200018,-0.775567315999879],[122.69890384200008,-0.784926039999902],[122.71648196700019,-0.792413018999881],[122.73902428500017,-0.791436455999985],[122.78744550900008,-0.77369557099999],[122.91244550900015,-0.762872002999913],[122.92904707100004,-0.758884372999844],[122.944509311,-0.750583591999856],[122.95972741,-0.737074476999879],[122.96021569100017,-0.730564059999892],[122.89730879000014,-0.716403903999876],[122.89405358200011,-0.712579033999859],[122.8862410820001,-0.699395440999908],[122.88298587300008,-0.695896091999913],[122.86784915500006,-0.692803643999838],[122.78012129000014,-0.686618747999859],[122.76644941500004,-0.683038018999895],[122.75269615999999,-0.67603932099999],[122.74170983200017,-0.668064059999864],[122.73324629000003,-0.657972914999974],[122.73462975400001,-0.648370049999912],[122.75269615999999,-0.641289971999939],[122.76563561300023,-0.64983489399988],[122.77930748800016,-0.646254164999902],[122.80738366000016,-0.627618096999825],[122.81275475400004,-0.622247002999856],[122.81739342500023,-0.615492445999919],[122.82300866000006,-0.612237237999878],[122.83887780000006,-0.620538018999852],[122.84644616000004,-0.619235934999864],[122.85254967500013,-0.615329684999864],[122.85499108200023,-0.610528252999956],[122.94304446700006,-0.605075778999932],[122.96436608200021,-0.599704684999878],[122.97608483200023,-0.607191664999931],[122.99431399800018,-0.608005466999941],[123.01295006600016,-0.604424737999878],[123.02637780000006,-0.599704684999878],[123.03825931100002,-0.589613539999903],[123.05005944100012,-0.566989841999856],[123.06055748800004,-0.558689059999864],[123.07585696700002,-0.556410414999888],[123.23951256600006,-0.570489190999837],[123.27369225400004,-0.583265882999882],[123.34180748800006,-0.62021249799993],[123.40349368600017,-0.642673434999921],[123.41732832100004,-0.654880466999899],[123.40593509200002,-0.668389580999886],[123.40381920700024,-0.67253997199991],[123.40593509200002,-0.677911065999879],[123.41529381600017,-0.686944268999881],[123.41732832100004,-0.692803643999838],[123.41944420700011,-0.702732028999932],[123.42530358200017,-0.708428643999824],[123.43409264400023,-0.710625908999987],[123.44467207100008,-0.709567966999856],[123.43848717500012,-0.730401299999841],[123.45435631600006,-0.758233330999971],[123.44044030000023,-0.792901299999869],[123.44483483200021,-0.833103122999859],[123.43783613400015,-0.853610934999907],[123.409922722,-0.880303643999838],[123.40015709700016,-0.894789320999891],[123.3896590500001,-0.98365650799991],[123.38331139400006,-1.003676039999888],[123.35238691500004,-1.039727471999853],[123.31120853000007,-1.051446221999839],[123.26978600400005,-1.044610283999915],[123.23878014400022,-1.024834893999895],[123.21094811300004,-0.983330987999977],[123.20101972700014,-0.976983330999872],[123.19629967500023,-0.970391533999972],[123.1499129570001,-0.935479424999954],[123.1477970710001,-0.922946872999873],[123.15552819100017,-0.898125908999916],[123.15674889400012,-0.88762786299985],[123.15088951900016,-0.872979424999841],[123.14087975400017,-0.862237237999821],[123.11890709700018,-0.842950127999885],[123.09620201900012,-0.835056247999901],[123.060801629,-0.880547783999887],[123.0400496750001,-0.880791924999826],[123.00945071700019,-0.893731377999842],[122.91700280000012,-0.89959075299987],[122.87614993600006,-0.908786716999856],[122.83871504000003,-0.899183851999865],[122.81169681100008,-0.924086195999905],[122.76970462300007,-1.019789320999863],[122.76075280000022,-1.03435637799997],[122.73560631600017,-1.062676690999922],[122.73047936300017,-1.070000908999845],[122.72706139400022,-1.078545830999857],[122.72527103000006,-1.087660414999945],[122.72478274800008,-1.097100518999952],[122.72095787900017,-1.109063408999901],[122.71208743600013,-1.114353122999958],[122.70069420700021,-1.116875908999972],[122.69068444100017,-1.121026299999841],[122.66163170700011,-1.142836195999877],[122.64828535200009,-1.159437757999839],[122.63843834700005,-1.20614999799993],[122.62647545700023,-1.218438408999887],[122.58814537899998,-1.237074476999879],[122.57211347700004,-1.253187757999853],[122.52955162900017,-1.316013278999904],[122.51197350400005,-1.326592705999943],[122.50269616000018,-1.333754164999903],[122.49878991000016,-1.343194268999824],[122.49610436300011,-1.352959893999852],[122.48292076900022,-1.375095309999921],[122.478282097,-1.381117445999933],[122.40601647200005,-1.446221612999878],[122.38209069100017,-1.478692315999865],[122.36882571700008,-1.492771091999899],[122.30632571700012,-1.524346612999892],[122.23316491000004,-1.57431406],[122.20053144599999,-1.604180596999825],[122.18392988400015,-1.614190362999892],[122.17188561300021,-1.609795830999914],[122.15984134200012,-1.600192966999927],[122.14323978000006,-1.594008070999877],[122.1240340500001,-1.597588799999841],[122.08350670700005,-1.61679452899989],[122.06373131600004,-1.621270440999865],[122.05404707099999,-1.619805596999981],[122.03646894600016,-1.613946221999853],[122.0258895190001,-1.614434502999842],[122.0185653000001,-1.618096612999977],[122.01392662900017,-1.623630466999913],[122.01026451900023,-1.629652601999823],[122.00538170700005,-1.634942315999979],[121.9736434250001,-1.655368747999873],[121.95476321700008,-1.663832289999903],[121.94320722700016,-1.662286065999865],[121.91928144599997,-1.673028252999885],[121.90137780000023,-1.675469658999916],[121.8613387380001,-1.66969166499986],[121.85613040500019,-1.688083591999899],[121.84766686300016,-1.690199476999823],[121.83122806100008,-1.701918226999808],[121.82016035200004,-1.707614841999884],[121.81039472699997,-1.710137627999899],[121.798594597,-1.71795012799997],[121.7900496750001,-1.73642343499999],[121.78003991,-1.772149346999853],[121.75513756600017,-1.833754164999888],[121.739024285,-1.8617489559999],[121.71802819100017,-1.888278903999875],[121.69214928500004,-1.908135674999869],[121.66114342500012,-1.920668226999879],[121.62769616000016,-1.927341403999918],[121.56251061300023,-1.930596612999878],[121.55298912900017,-1.929131768999824],[121.54004967500022,-1.923435153999932],[121.53451582100004,-1.916599216999913],[121.53052819100006,-1.908379815999908],[121.51156660200004,-1.883558851999865],[121.50473066500004,-1.876722914999931],[121.49512780000022,-1.873955987999878],[121.49146569100012,-1.871677341999913],[121.45671634200002,-1.86093515399989],[121.44507897200006,-1.841566664999874],[121.44516035200004,-1.825616143999866],[121.44092858200011,-1.813571872999944],[121.416270379,-1.805759372999873],[121.3713485040001,-1.805759372999873],[121.36459394600016,-1.802341403999861],[121.35450280000005,-1.785577080999843],[121.34742272200005,-1.778985283999859],[121.31185957100016,-1.782891533999944],[121.29607181100015,-1.816664321000019],[121.30420983200021,-1.846937757999925],[121.34058678499999,-1.839776299999897],[121.34571373800023,-1.855726820999905],[121.34009850400004,-1.875664971999882],[121.33139082100004,-1.897556248],[121.32699629000017,-1.919040622999858],[121.32911217500018,-1.927911065999979],[121.33838951900012,-1.937595309999864],[121.34058678499999,-1.946547132999968],[121.34058678499999,-1.991306247999916],[121.35132897199999,-1.984144789999888],[121.36085045700023,-1.975844007999896],[121.36866295700011,-1.966566664999945],[121.3747664720001,-1.957126559999935],[121.37956790500019,-1.942966403999904],[121.38249759200018,-1.928887627999956],[121.38843834700005,-1.917168877999884],[121.40202884200018,-1.909356377999884],[121.41456139400012,-1.927341403999918],[121.43628991000016,-1.980157158999987],[121.46664472700006,-2.000909112999906],[121.47787519600004,-2.020277601999823],[121.49146569100012,-2.035332940999837],[121.51189212300008,-2.03232187299993],[121.53532962300002,-2.058770440999822],[121.55502363399997,-2.133965752999913],[121.57455488400015,-2.1625302059999],[121.61768639400006,-2.177992445999919],[121.65992272199999,-2.176690362999835],[121.70085696700002,-2.180352471999882],[121.739024285,-2.211032809999878],[121.76693769600016,-2.241631768999895],[121.82292728000017,-2.287286065999837],[121.84766686300016,-2.320896091999856],[121.86475670700011,-2.358493747999859],[121.8720809250001,-2.380303643999895],[121.87501061300023,-2.398695570999933],[121.88257897200018,-2.413344007999854],[121.92969811300007,-2.462985934999864],[121.96550540500019,-2.518243096999882],[121.97787519600004,-2.553969007999825],[122.00928795700017,-2.593519789999945],[122.01905358200011,-2.615004164999888],[122.01921634200008,-2.635430596999868],[122.01335696700012,-2.680922132999839],[122.01563561300011,-2.693536065999822],[122.05990644600014,-2.744805596999853],[122.08383222699997,-2.763929945999919],[122.09896894599999,-2.770277601999851],[122.13705488399997,-2.775485934999935],[122.14576256600017,-2.778741143999895],[122.1494246750001,-2.782647393999895],[122.1526798840001,-2.794122002999842],[122.16049238400014,-2.798760674999869],[122.16968834700006,-2.801364841999856],[122.1772567070001,-2.806817315999979],[122.18165123800006,-2.822930596999953],[122.185313347,-2.845798434999878],[122.19263756600006,-2.86630624799993],[122.20769290500007,-2.875176690999879],[122.24537194099999,-2.875258070999863],[122.26612389400012,-2.879164320999948],[122.28711998800016,-2.888767184999921],[122.3125106130001,-2.926853122999915],[122.29444420700005,-2.964532158999901],[122.27084394600004,-3.002129815999978],[122.27963300899998,-3.039646091999913],[122.28687584700002,-3.044691664999945],[122.313731316,-3.060153903999875],[122.38591556100017,-3.132012627999927],[122.39437910200003,-3.133477471999981],[122.40699303500006,-3.127618096999853],[122.4200952480002,-3.119561455999829],[122.43043053500011,-3.114678643999937],[122.433848504,-3.12859465899983],[122.43873131600017,-3.140069268999881],[122.44613691500014,-3.149346612999835],[122.45728600400017,-3.156345309999906],[122.46753991,-3.148207289999974],[122.47291100400017,-3.151136976999823],[122.47217858200024,-3.161797783999845],[122.46469160200016,-3.176853122999859],[122.45915774800008,-3.1801083309999],[122.44263756600017,-3.18523528399983],[122.43669681100008,-3.190362237999835],[122.43539472700016,-3.19638437299993],[122.437185092,-3.211195570999905],[122.43669681100008,-3.217705987999906],[122.43360436300016,-3.234551690999908],[122.43295332100004,-3.243096612999921],[122.42920983200004,-3.245863539999973],[122.41627037900017,-3.245700778999918],[122.41879316499997,-3.243747653999876],[122.41342207100004,-3.238946221999896],[122.40259850400004,-3.232028903999975],[122.39535566500004,-3.230238539999988],[122.38982181100019,-3.231703382999953],[122.38575280000022,-3.234958591999913],[122.38266035200016,-3.238213799999869],[122.35792076900005,-3.217543226999851],[122.33936608200005,-3.237562757999825],[122.32129967500023,-3.257094007999896],[122.29566491000016,-3.312920830999956],[122.30355879000015,-3.341241143999909],[122.31690514400006,-3.344821872999972],[122.35938561300021,-3.363457940999879],[122.37256920700011,-3.372247002999842],[122.380625847,-3.391534112999963],[122.38363691500003,-3.41863372199991],[122.37842858200023,-3.438734632999854],[122.36158287900004,-3.437432549999855],[122.36890709700006,-3.425713799999954],[122.36198978000002,-3.413344007999839],[122.34620201900012,-3.404473565999879],[122.32748457100004,-3.403252862999863],[122.33204186300006,-3.393487237999835],[122.33497155000008,-3.389743747999887],[122.32520592500022,-3.375258070999934],[122.31104576900022,-3.368584893999895],[122.29509524800018,-3.364027601999851],[122.27963300899998,-3.355564059999907],[122.27686608200021,-3.366306247999915],[122.27247155000023,-3.37623463299991],[122.26482181100002,-3.381117445999891],[122.25171959700006,-3.376071872999944],[122.25440514400023,-3.395114841999856],[122.26124108200021,-3.40992604],[122.27125084700006,-3.422295830999857],[122.283457879,-3.434014580999857],[122.29216556100019,-3.450860283999859],[122.29053795700005,-3.471368096999896],[122.28272545700004,-3.492771091999856],[122.2666121750001,-3.522881768999966],[122.26246178500017,-3.528985283999873],[122.25660241000006,-3.533461195999834],[122.24561608200005,-3.53980885199995],[122.23438561300004,-3.544203382999853],[122.21070397200006,-3.550551039999874],[122.20053144599999,-3.556573174999969],[122.19792728000019,-3.571709893999965],[122.20541425900008,-3.593845309999864],[122.22510826900012,-3.629164320999891],[122.23560631600017,-3.643161716999856],[122.25049889400022,-3.656182549999841],[122.26880944100012,-3.665785414999902],[122.29029381600006,-3.669610283999915],[122.30543053500006,-3.674981377999885],[122.31519616000017,-3.688164971999839],[122.32357832100004,-3.704278252999984],[122.33497155000008,-3.71803150799991],[122.35523522200013,-3.727797132999868],[122.37647545700011,-3.729180596999839],[122.41968834700018,-3.724786065999865],[122.44141686300021,-3.731052341999898],[122.45337975400017,-3.74627044099988],[122.47095787900005,-3.786309502999827],[122.52955162900017,-3.865411065999822],[122.54867597700004,-3.8786760399999],[122.56869550900002,-3.882907809999949],[122.6368921230002,-3.883477471999839],[122.64730879000003,-3.884942315999893],[122.6564233730002,-3.889336846999882],[122.66334069100012,-3.897149346999953],[122.66895592500012,-3.908623955999914],[122.66724694100017,-3.918877862999849],[122.64616946700008,-3.925469658999916],[122.6381942070001,-3.930352471999967],[122.63184655000006,-3.936211846999839],[122.62435957100003,-3.952406507999882],[122.61329186300007,-3.956475518999838],[122.58814537899998,-3.95761484199987],[122.5657658210001,-3.963962497999987],[122.55128014400023,-3.970798434999921],[122.55250084700005,-3.976332289999931],[122.60075931100019,-3.980157158999944],[122.62281334700018,-3.985039971999839],[122.64210045700013,-3.993747653999904],[122.6564233730002,-4.006605726999837],[122.66382897200018,-4.023125908999915],[122.66553795700011,-4.042168877999898],[122.66325931100012,-4.084567966999899],[122.66651451900017,-4.10247161299985],[122.67505944100017,-4.122735283999859],[122.68816165500007,-4.138360283999845],[122.70427493600002,-4.142510674999969],[122.70777428499999,-4.139092705999872],[122.71021569100006,-4.132094007999896],[122.71143639400017,-4.123467705999886],[122.71111087300002,-4.115329684999878],[122.73902428500017,-4.129327080999843],[122.77816816500003,-4.136976820999863],[122.81641686300004,-4.137302341999884],[122.84205162900007,-4.128838799999855],[122.78931725400005,-4.073988539999931],[122.775157097,-4.048272393999895],[122.80738366000016,-4.040704033999845],[122.84498131600016,-4.057712497999901],[122.872813347,-4.09319426899998],[122.89185631600002,-4.136488539999874],[122.90707441499998,-4.19597747199991],[122.90894616000016,-4.216729424999911],[122.90723717500022,-4.235528252999855],[122.8924259770001,-4.2660458309999],[122.89389082100017,-4.286065362999949],[122.90357506600012,-4.328220309999907],[122.90528405000012,-4.370212497999972],[122.90015709700018,-4.388767184999978],[122.88640384200008,-4.396416924999826],[122.86687259200019,-4.400323174999912],[122.85914147200016,-4.410332940999907],[122.85401451900005,-4.423923434999864],[122.84205162900007,-4.438083591999884],[122.82740319100004,-4.419610283999944],[122.75879967500012,-4.36907317499994],[122.722911004,-4.332452080999828],[122.69971764400006,-4.318291924999897],[122.67017662899998,-4.314548434999878],[122.68083743600008,-4.334161065999922],[122.7216903000001,-4.372491143999865],[122.72779381600017,-4.381117445999863],[122.73812910199999,-4.40056731599995],[122.74512780000018,-4.410088799999868],[122.74935957099997,-4.410902601999879],[122.76221764400012,-4.409112237999892],[122.76628665500006,-4.410088799999868],[122.77027428500004,-4.416761976999908],[122.76872806100019,-4.420586846999839],[122.76587975400017,-4.424086195999834],[122.76628665500006,-4.430433851999851],[122.77100670700005,-4.442559502999856],[122.77295983200021,-4.450127862999977],[122.77312259200018,-4.468438408999944],[122.76880944100019,-4.478448174999841],[122.75814863400014,-4.484795830999957],[122.74577884200014,-4.486504815999879],[122.73560631600017,-4.482354424999926],[122.71111087300002,-4.451755467],[122.69996178500004,-4.451836846999981],[122.69727623800023,-4.457940362999892],[122.69988040500006,-4.466078382999896],[122.70427493600002,-4.472100518999909],[122.69117272200006,-4.48381926899998],[122.68230228000017,-4.480401299999883],[122.67017662899998,-4.458428643999881],[122.67009524800002,-4.432224216999927],[122.64047285199997,-4.408461195999848],[122.59913170700015,-4.396742445999848],[122.56373131600007,-4.406914971999896],[122.53142337300015,-4.427911065999837],[122.49756920700015,-4.43523528399993],[122.46363366,-4.430840752999856],[122.43043053500011,-4.416924737999963],[122.39193769600003,-4.438083591999884],[122.35035241000004,-4.45289478999986],[122.30600019599999,-4.461683851999823],[122.24040774800008,-4.465915622999929],[122.23324629000004,-4.468031507999939],[122.22510826900012,-4.472100518999909],[122.20899498800023,-4.484551690999837],[122.19939212300008,-4.490166924999841],[122.17652428500007,-4.49578215899983],[122.15894616000006,-4.509942315999851],[122.15284264400023,-4.513116143999909],[122.11622155000012,-4.517510674999982],[122.10775800900011,-4.519952080999843],[122.08716881600006,-4.543226820999848],[122.065684441,-4.58228932099982],[122.04835045700011,-4.625909112999906],[122.03956139400023,-4.663344007999939],[122.04297936300017,-4.707777601999865],[122.05933678500016,-4.742445570999934],[122.08277428500006,-4.770196221999825],[122.10775800900011,-4.793633721999981],[122.11158287900015,-4.795830987999892],[122.12891686300004,-4.800469658999915],[122.12891686300004,-4.807875257999896],[122.110606316,-4.813246351999865],[122.09099368600006,-4.836683851999837],[122.07740319100012,-4.842054945999806],[122.05518639400023,-4.84433359199987],[122.0112410820001,-4.853692315999893],[121.99170983200021,-4.855726820999919],[121.88746178500006,-4.846368096999896],[121.86963951900006,-4.840915622999944],[121.84083092500023,-4.821547132999839],[121.82325280000012,-4.813083591999899],[121.80876712300008,-4.814060153999876],[121.79224694100016,-4.818780205999886],[121.76954186300023,-4.821547132999839],[121.75082441500011,-4.816013278999918],[121.74244225400001,-4.816094658999901],[121.739024285,-4.824639580999914],[121.73487389400017,-4.828220309999978],[121.72535241000017,-4.832289320999862],[121.7138778000001,-4.835219007999882],[121.70435631600004,-4.835219007999882],[121.68555748800006,-4.822442315999922],[121.65723717500023,-4.787204684999892],[121.63917076900012,-4.779961846999868],[121.62549889400005,-4.77678801899998],[121.56657962300018,-4.752618096999896],[121.55420983200004,-4.743747653999932],[121.50342858200023,-4.674899997999873],[121.498301629,-4.663344007999939],[121.49439537900001,-4.660902601999908],[121.49122155000023,-4.661309502999912],[121.48804772200018,-4.661065362999963],[121.48462975400015,-4.656426690999851],[121.47771243600006,-4.622979424999897],[121.48047936300023,-4.580824476999936],[121.498301629,-4.500095309999921],[121.52051842500005,-4.439629815999837],[121.52930748800021,-4.397556247999859],[121.53296959700016,-4.356215101999837],[121.52930748800021,-4.277520440999851],[121.53353925900014,-4.247735283999845],[121.53321373800023,-4.238051039999959],[121.53630618600013,-4.230564059999907],[121.54672285199997,-4.225192966999856],[121.55958092500022,-4.225192966999856],[121.56316165500017,-4.232517184999864],[121.56023196700008,-4.243096612999906],[121.55298912900017,-4.252373955999857],[121.58497155000022,-4.236748955999872],[121.61719811300013,-4.166924737999835],[121.62769616000016,-4.087090752999913],[121.59449303500007,-4.040704033999845],[121.55518639400023,-4.021416924999912],[121.43002363400002,-3.999200127999856],[121.35425866000006,-3.968438408999873],[121.35108483200004,-3.958265882999825],[121.33692467500022,-3.943536065999921],[121.33375084700019,-3.934340101999866],[121.33139082100004,-3.923028252999885],[121.32569420700017,-3.9125302059999],[121.31267337300008,-3.897393487999821],[121.2961531910001,-3.886814059999864],[121.284434441,-3.889906507999853],[121.27263431100002,-3.89820729],[121.25562584700018,-3.90300872199991],[121.24610436300006,-3.894219658999845],[121.25131269600016,-3.874118747999901],[121.26099694100006,-3.851250908999972],[121.26490319100004,-3.834649346999839],[121.25513756600019,-3.81568775799991],[121.24024498800021,-3.807875257999839],[121.20020592500012,-3.807305596999868],[121.17611738400011,-3.804457289999917],[121.16032962300002,-3.796156507999839],[121.10515384200019,-3.730238539999888],[120.89380944099999,-3.539157809999906],[120.87452233200004,-3.498955987999821],[120.86768639400023,-3.469496351999837],[120.86768639400023,-3.457940362999821],[120.87029056100006,-3.445733330999843],[120.87940514400022,-3.423516533999873],[120.88135826900005,-3.413262627999856],[120.88941491000006,-3.388767184999921],[120.90853925899998,-3.367608330999914],[120.93140709699999,-3.347914320999877],[120.95020592500023,-3.327569268999966],[120.96802819100006,-3.28573984199987],[120.97901451900006,-3.267022393999895],[120.99488366,-3.259372653999861],[121.00554446700006,-3.257256768999852],[121.01531009200019,-3.251641533999859],[121.02247155000025,-3.243829033999859],[121.02523847699997,-3.235039971999896],[121.02979576900024,-3.226820570999891],[121.04037519599999,-3.220961195999947],[121.05193118600013,-3.216403903999989],[121.059336785,-3.211521091999927],[121.06674238399998,-3.193780205999843],[121.07341556100002,-3.139418226999837],[121.07300866000007,-3.114678643999937],[121.06836998800011,-3.09042734199987],[121.06332441500008,-3.07870859199987],[121.05632571700019,-3.073663018999852],[121.0481063160001,-3.066176039999959],[121.0529077480002,-3.049493096999925],[121.06690514400022,-3.022149346999868],[121.06853274800007,-3.007989190999851],[121.07683353000007,-2.989434502999842],[121.08041425900002,-2.977634372999873],[121.07943769600016,-2.936700127999927],[121.08383222700004,-2.926364841999927],[121.08725019600004,-2.904554945999962],[121.08171634200012,-2.872328382999925],[121.07081139400022,-2.851006768999866],[121.059336785,-2.862074476999823],[121.0532332690001,-2.862074476999823],[121.0481063160001,-2.851250908999916],[121.04102623800023,-2.824395440999837],[121.03272545700017,-2.814222914999888],[121.02442467500005,-2.822686455999914],[121.01677493600006,-2.842868747999858],[121.01172936300011,-2.848402601999879],[121.00171959700006,-2.848077080999857],[120.99301191500014,-2.841729424999826],[120.98682701900005,-2.832614841999927],[120.98438561300023,-2.82390715899993],[120.99073326900007,-2.811618747999887],[121.00489342500013,-2.808363540000016],[121.01889082100016,-2.801853122999844],[121.02523847699997,-2.778903903999861],[121.04167728000017,-2.78386809699991],[121.05250084700018,-2.777601820999863],[121.06690514400022,-2.752211195999934],[121.07064863399998,-2.755303643999909],[121.07374108200005,-2.756605726999907],[121.07683353000007,-2.757419528999918],[121.08041425900002,-2.759047132999939],[121.0481876960001,-2.698988539999945],[121.03589928500006,-2.690118096999896],[121.03646894599999,-2.68645598799985],[121.02930748800023,-2.678399346999825],[121.01539147200016,-2.665948174999897],[121.00586998800006,-2.660821221999967],[120.88502037900004,-2.642347914999945],[120.87240644600016,-2.644138278999932],[120.86255944100006,-2.646661065999865],[120.85377037900017,-2.646172783999958],[120.8437606130001,-2.638604424999826],[120.83277428500006,-2.627862237999821],[120.82349694100017,-2.621514580999886],[120.81324303500006,-2.617933851999823],[120.79932701900005,-2.615004164999888],[120.77605228000006,-2.614922783999986],[120.76099694100006,-2.622002862999864],[120.74870853000017,-2.630629164999874],[120.7338973320001,-2.634942315999879],[120.71257571700008,-2.636895440999822],[120.6962996750001,-2.64218515399989],[120.64210045700017,-2.670342705999886],[120.62671959700002,-2.674737237999949],[120.60450280000023,-2.676446221999953],[120.58448326900012,-2.682061455999872],[120.57471764400022,-2.695977471999853],[120.56869550900015,-2.713799737999835],[120.55982506600012,-2.73113372199991],[120.54297936300011,-2.747247002999885],[120.292246941,-2.903008721999925],[120.25294030000012,-2.936455987999977],[120.23161868600008,-2.95037200299987],[120.2034611340001,-2.957696221999882],[120.20899498800011,-2.97039153399993],[120.22641035200016,-2.98805103999986],[120.23023522200019,-3.001722914999974],[120.23121178500006,-3.014336846999868],[120.23438561300011,-3.026543877999856],[120.240000847,-3.035902601999965],[120.24781334699999,-3.039646091999913],[120.26140384200006,-3.050388278999918],[120.27540123800011,-3.102715752999828],[120.28541100399998,-3.122165622999916],[120.27865644600014,-3.125258070999905],[120.27426191499998,-3.129489841999913],[120.26433353000019,-3.142022393999823],[120.28532962300012,-3.162530205999871],[120.30681399800008,-3.173516533999845],[120.35377037900018,-3.190362237999835],[120.383067254,-3.209079684999907],[120.38786868600017,-3.21461354],[120.38941491000007,-3.22332122199991],[120.39389082099999,-3.237237237999892],[120.40040123800011,-3.250909112999835],[120.40821373800006,-3.259372653999861],[120.42579186300011,-3.256117445999919],[120.42156009200019,-3.267510674999883],[120.40919030000023,-3.28411223799985],[120.4021102220001,-3.296807549999983],[120.40398196700008,-3.307224216999884],[120.40699303500018,-3.318454684999892],[120.40853925900004,-3.32903411299985],[120.40284264400022,-3.345635674999983],[120.39527428500017,-3.382256768999838],[120.39771569099999,-3.392185153999918],[120.40626061300021,-3.412367445999863],[120.40821373800006,-3.423760674999911],[120.40772545700011,-3.433363539999903],[120.40316816500015,-3.449639580999843],[120.39893639400022,-3.500909112999864],[120.40015709700005,-3.517836195999848],[120.41781660200014,-3.563571872999873],[120.42188561300011,-3.5824520809999],[120.42204837300008,-3.666436455999857],[120.42505944100019,-3.673028252999841],[120.44369550900008,-3.690687757999854],[120.446543816,-3.728692315999851],[120.43002363400014,-3.766778252999927],[120.38786868600017,-3.827894789999888],[120.37142988399998,-3.860446872999859],[120.35971113400004,-3.894219658999845],[120.35352623800023,-3.930840752999956],[120.35189863400002,-4.100274346999868],[120.35564212300008,-4.116469007999825],[120.37720787900017,-4.152764580999914],[120.3813582690001,-4.167250257999868],[120.38160241000006,-4.207696221999981],[120.38054446700018,-4.217950127999828],[120.375254754,-4.237725518999937],[120.37419681100006,-4.249281507999882],[120.37582441499998,-4.263278903999932],[120.38786868600017,-4.294040622999916],[120.38624108200005,-4.32927825299987],[120.3623153000001,-4.38697682099982],[120.36736087300004,-4.424411716999856],[120.39177493600017,-4.45289478999986],[120.40259850400017,-4.472100518999909],[120.3986922540001,-4.489190362999864],[120.39275149800008,-4.5062802059999],[120.39307701900006,-4.531670830999914],[120.39714603000006,-4.557224216999913],[120.4021102220001,-4.57447682099982],[120.4142358730002,-4.592868747999859],[120.44410241000016,-4.626641533999845],[120.44996178500006,-4.646579684999921],[120.44662519599997,-4.6566708309999],[120.43848717500005,-4.665134372999844],[120.41920006600004,-4.680759373],[120.41586347700004,-4.688897393999837],[120.39616946700008,-4.787204684999892],[120.39527428500017,-4.810967705999971],[120.38656660199999,-4.829278252999856],[120.36638431100008,-4.835625908999886],[120.34343509200008,-4.837497653999847],[120.32642662899998,-4.842054945999806],[120.30941816500017,-4.871270440999921],[120.3066512380001,-4.992852471999896],[120.28402754000004,-5.11158619599982],[120.27564537900017,-5.133884372999859],[120.26433353000019,-5.149997653999918],[120.3066512380001,-5.211358330999828],[120.31495201900006,-5.228936455999857],[120.3282983730001,-5.268731377999856],[120.33692467500005,-5.28378671699987],[120.38111412900015,-5.337334893999881],[120.38786868600017,-5.352227471999839],[120.38892662900004,-5.371677341999927],[120.43295332100016,-5.527601820999848],[120.43628991000017,-5.565199476999851],[120.44060306100019,-5.573988539999903],[120.45932050900014,-5.601983330999829],[120.46363366000016,-5.620212497999901],[120.45834394599999,-5.626071872999859],[120.43051191500003,-5.613946221999868],[120.41635175900002,-5.616794528999904],[120.37964928500011,-5.576348565999865],[120.37419681100006,-5.565199476999851],[120.37126712300002,-5.553887627999855],[120.3549910820001,-5.52239348799985],[120.34750410200004,-5.513604424999882],[120.32325280000023,-5.509535414999917],[120.2978621750001,-5.518975518999838],[120.27344811300006,-5.532403252999841],[120.25196373800023,-5.540948174999855],[120.20671634200012,-5.547784112999878],[120.19922936300023,-5.550551039999931],[120.17554772200006,-5.568942966999869],[120.15691165500007,-5.576836846999853],[120.11866295700011,-5.587985934999863],[120.10043379000003,-5.595635674999897],[120.09400475399998,-5.590752862999835],[120.08790123800011,-5.589288018999865],[120.07309004000014,-5.588799737999878],[120.01026451900005,-5.57781340899983],[119.9980574880001,-5.571954033999873],[119.98658287900017,-5.564222914999874],[119.96070397200005,-5.56259530999985],[119.93262780000023,-5.564711195999862],[119.91488691500014,-5.568942966999869],[119.89918053500017,-5.579359632999868],[119.85718834700002,-5.620212497999901],[119.85124759200006,-5.63054778399983],[119.84815514400013,-5.652032158999845],[119.84351647200018,-5.661065362999864],[119.823496941,-5.67937590899983],[119.8056746750001,-5.692478122999887],[119.77222741000017,-5.701267184999849],[119.72364342500012,-5.703789971999868],[119.67693118600002,-5.697035414999931],[119.64795983200021,-5.678806247999859],[119.64405358200021,-5.660088799999882],[119.64242597699999,-5.636976820999834],[119.63404381600004,-5.617445570999848],[119.609711134,-5.609144789999874],[119.59034264400017,-5.620538018999838],[119.57984459700018,-5.642266533999901],[119.56999759200008,-5.655938408999845],[119.55241946700002,-5.643324476999865],[119.54712975400017,-5.631768487999834],[119.54761803500006,-5.608168226999808],[119.54566491,-5.595635674999897],[119.5383406910001,-5.585219007999811],[119.52898196700008,-5.57968515399989],[119.52116946700006,-5.572523695999848],[119.5175887380001,-5.558038018999895],[119.50277754000003,-5.555840752999899],[119.47413170700017,-5.560804945999863],[119.45533287899998,-5.573825778999847],[119.46989993600002,-5.595635674999897],[119.44825280000025,-5.594984632999854],[119.43327884200018,-5.587823174999897],[119.42481530000018,-5.573337497999859],[119.4221297540001,-5.551202080999886],[119.42595462300018,-5.541761976999865],[119.43327884200018,-5.532159112999892],[119.43751061300023,-5.521742445999806],[119.43238365999999,-5.510349216999842],[119.42481530000018,-5.501234632999854],[119.41472415500019,-5.482354424999826],[119.38013756599999,-5.4340145809999],[119.36036217500005,-5.396416924999897],[119.35279381600006,-5.355645440999837],[119.36060631600004,-5.307549737999864],[119.36963951900024,-5.276788018999881],[119.37525475400004,-5.211521091999884],[119.37989342500018,-5.19166432099989],[119.39470462300002,-5.156833591999856],[119.40365644600016,-5.124118747999916],[119.40845787900005,-5.115817966999842],[119.41700280000006,-5.109470309999907],[119.43734785200016,-5.09880950299987],[119.44597415500006,-5.092461846999853],[119.45997155000022,-5.073500257999839],[119.46566816500004,-5.055596612999878],[119.46989993600002,-5.020196221999868],[119.48324629000015,-4.986260674999826],[119.51978600400011,-4.916680596999825],[119.52515709700005,-4.883070570999806],[119.49122155000013,-4.754082940999851],[119.49708092500023,-4.717950127999913],[119.50212649800008,-4.713555596999839],[119.51905358200017,-4.703545830999857],[119.52515709700005,-4.698011976999837],[119.53882897200018,-4.666680596999882],[119.54184003999997,-4.65292734199987],[119.58497155000012,-4.579196872999915],[119.59107506600016,-4.564141533999901],[119.60621178500017,-4.420342705999971],[119.62330162900004,-4.352227471999939],[119.62680097700004,-4.314548434999878],[119.62582441500015,-4.304457289999988],[119.62159264400023,-4.286879164999959],[119.62061608200017,-4.276625257999854],[119.61752363400008,-4.265069268999824],[119.60336347700016,-4.25164153399983],[119.60010826900013,-4.242445570999863],[119.60450280000006,-4.222914320999962],[119.62330162900004,-4.183770440999837],[119.62680097700004,-4.16301848799985],[119.61841881600017,-4.121026299999855],[119.61353600400012,-4.11296965899983],[119.608653191,-4.107679945999933],[119.60629316500014,-4.104668877999842],[119.60816491000006,-4.09319426899998],[119.61719811300023,-4.076755466999984],[119.62061608200017,-4.0668270809999],[119.62110436300021,-4.057061455999857],[119.61841881600017,-4.038506768999852],[119.62061608200017,-4.026462497999929],[119.64307701900022,-3.992771091999927],[119.64698326900023,-3.977959893999952],[119.63062584700008,-3.971856377999885],[119.60710696700006,-3.975844007999854],[119.60043379000004,-3.986993096999882],[119.59961998800011,-4.004164320999806],[119.59343509200002,-4.026462497999929],[119.58773847700014,-4.008884372999901],[119.58521569100006,-3.970310153999932],[119.56609134200009,-3.939873955999886],[119.5198673840001,-3.826348565999851],[119.49740644600014,-3.793877862999863],[119.48568769600011,-3.754082940999879],[119.45671634200019,-3.71453215899983],[119.45427493600006,-3.700127862999949],[119.46989993600002,-3.669610283999915],[119.48365319100006,-3.614922783999887],[119.49398847700016,-3.597588799999897],[119.50896243600019,-3.577732028999889],[119.51400800900004,-3.563083591999884],[119.51197350399998,-3.547621351999865],[119.49756920700021,-3.49529387799987],[119.49398847700016,-3.488376559999864],[119.48585045700024,-3.483493747999901],[119.46566816500004,-3.477227471999853],[119.45679772200016,-3.470961195999891],[119.43238365999999,-3.475030205999943],[119.40300540500013,-3.461521091999884],[119.37289472700009,-3.442559502999956],[119.34693444100016,-3.43059661299985],[119.31177819100006,-3.426364842],[119.297618035,-3.427911065999865],[119.29167728000017,-3.434014580999857],[119.28394616000016,-3.445896091999899],[119.2453719410001,-3.476169528999975],[119.229665561,-3.485284112999878],[119.2089949880001,-3.489841403999918],[119.192149285,-3.486911716999898],[119.17595462300007,-3.481377862999892],[119.157969597,-3.478448174999869],[119.14087975400015,-3.482110283999916],[119.11768639400022,-3.499688408999859],[119.09937584700018,-3.505059502999899],[119.02702884200002,-3.509698174999841],[118.99870853000019,-3.524997653999975],[119.00440514400016,-3.559747002999856],[118.99236087300001,-3.556735934999935],[118.97917728000019,-3.542168877999828],[118.97022545700005,-3.53980885199995],[118.96192467500006,-3.546075127999913],[118.94947350400017,-3.569024346999896],[118.93881269600003,-3.57398853999986],[118.92676842500012,-3.566094658999887],[118.91684004000003,-3.546807549999855],[118.880137566,-3.443129165000016],[118.85889733200021,-3.411309502999984],[118.84896894600004,-3.390557549999897],[118.84229576900006,-3.368340752999856],[118.83985436300023,-3.348077080999843],[118.84376061300023,-3.32903411299985],[118.85043378999998,-3.312432549999969],[118.85254967500012,-3.295586846999967],[118.83448326900007,-3.259942315999922],[118.82341556100008,-3.193291924999855],[118.8171492850001,-3.171807549999841],[118.81185957100003,-3.162530205999871],[118.80347741000016,-3.156508070999876],[118.79200280000012,-3.151543877999828],[118.78199303500006,-3.144301039999888],[118.77784264400012,-3.132012627999927],[118.775645379,-3.122165622999916],[118.76636803500004,-3.102634372999844],[118.76417076900023,-3.090915622999859],[118.76775149800004,-3.084161065999822],[118.78492272200006,-3.06454843499985],[118.79135175900015,-3.060153903999875],[118.79916425900014,-3.061781507999896],[118.82252037900005,-3.071465752999856],[118.8361108730002,-3.073663018999852],[118.84839928500016,-3.06780364399998],[118.85328209700006,-3.053399346999839],[118.8569442070001,-2.972832940999879],[118.86402428500006,-2.94296640399989],[118.88249759200008,-2.923760674999841],[118.8857528000001,-2.9099260399999],[118.88770592500018,-2.882500908999887],[118.88550866000017,-2.869561455999871],[118.88062584699999,-2.861016533999858],[118.87240644600003,-2.854668877999913],[118.8603621750001,-2.848402601999879],[118.83432050900004,-2.84099700299997],[118.81299889400022,-2.844170830999857],[118.77165774800012,-2.862074476999823],[118.77100670700005,-2.839288018999966],[118.76010175899997,-2.796807549999912],[118.75733483200021,-2.775811455999957],[118.76042728,-2.765394789999888],[118.77458743600006,-2.745293877999842],[118.77784264400012,-2.734795830999872],[118.77784264400012,-2.690118096999896],[118.78248131599999,-2.672946872999872],[118.79232832100003,-2.64999765399989],[118.80616295700023,-2.629815362999864],[118.82276451900012,-2.621270440999837],[118.84148196700008,-2.627699476999936],[118.85547936300024,-2.641534112999935],[118.87110436300011,-2.653903903999889],[118.89454186300004,-2.656019789999888],[118.91439863399998,-2.648370049999869],[118.95850670700005,-2.618747653999918],[118.981700066,-2.59742603999986],[119.00440514400016,-2.585137627999899],[119.01490319100006,-2.577243747999916],[119.02100670700011,-2.567478122999887],[119.03158613400008,-2.532484632999967],[119.04737389400012,-2.512872002999913],[119.06478925899997,-2.503024997999901],[119.08350670700017,-2.495049737999935],[119.13575280000018,-2.454278252999885],[119.14144941500014,-2.441989841999927],[119.13754316500015,-2.379571221999868],[119.1303817070001,-2.354750257999825],[119.12720787900004,-2.255303643999838],[119.13119550900002,-2.244398695999948],[119.13843834700006,-2.231052341999842],[119.14185631600007,-2.216729424999855],[119.13404381600006,-2.2035458309999],[119.17123457100016,-2.149509372999915],[119.18555748800021,-2.120863539999931],[119.21607506600016,-2.009942315999822],[119.23462975400017,-1.982191664999931],[119.26441491000016,-1.963311455999985],[119.28736412900015,-1.958428643999923],[119.30404707100003,-1.961521092],[119.31902103000006,-1.967054945999934],[119.33643639400012,-1.970147393999824],[119.34701582100014,-1.9594052059999],[119.35401451900023,-1.934747002999913],[119.36744225400005,-1.847263278999947],[119.36703535200003,-1.832940362999878],[119.36524498800023,-1.827732028999876],[119.36011803500006,-1.824476820999933],[119.35010826900022,-1.81617603999986],[119.33570397200016,-1.798109632999925],[119.32878665500019,-1.7811825499999],[119.30844160199999,-1.694919528999918],[119.30543053500011,-1.65203215899993],[119.30982506600017,-1.630140882999811],[119.32886803500018,-1.593194268999866],[119.33326256600006,-1.573500257999825],[119.30909264400022,-1.504571221999953],[119.30241946700019,-1.493747653999876],[119.29688561300006,-1.411390882999839],[119.29476972700016,-1.405368747999916],[119.29444420700021,-1.399183851999865],[119.29859459700019,-1.38787200299987],[119.3055119150001,-1.380547783999873],[119.32846113400015,-1.360609632999967],[119.33326256600006,-1.350192966999899],[119.33073978000002,-1.330254815999908],[119.31283613399997,-1.284844658999916],[119.31364993600017,-1.245782158999944],[119.32837975400017,-1.214450778999989],[119.35043378999997,-1.189141533999873],[119.37370853000019,-1.168877862999864],[119.38135826900012,-1.158623955999829],[119.38941491000017,-1.145196221999924],[119.399180535,-1.133477471999853],[119.41187584700006,-1.12851327899989],[119.42920983200023,-1.124281507999882],[119.443614129,-1.113051039999959],[119.45313561300011,-1.096449476999908],[119.45997155000022,-1.057712497999887],[119.47413170700017,-1.020928643999895],[119.48243248800023,-0.963474216999884],[119.48975670700023,-0.945977471999839],[119.5008244150001,-0.932305596999896],[119.50855553500017,-0.918715101999936],[119.51807701900005,-0.876722914999874],[119.52515709700005,-0.86044687299993],[119.53736412900004,-0.850030205999843],[119.56625410200004,-0.83367278399983],[119.57357832100004,-0.829522393999895],[119.58716881600012,-0.819431247999916],[119.59913170700023,-0.79550546699987],[119.60328209700016,-0.791436455999985],[119.63445071700008,-0.778415622999916],[119.6821395190001,-0.736911716999913],[119.65821373800023,-0.71209075299987],[119.65479576900022,-0.70614999799993],[119.65943444100017,-0.696221612999849],[119.67017662900017,-0.689222914999945],[119.69263756600016,-0.678806247999873],[119.70386803500016,-0.666761976999865],[119.72461998800004,-0.639255466999913],[119.73365319100012,-0.633884372999873],[119.73519941500003,-0.6410458309999],[119.75049889400012,-0.678806247999873],[119.755625847,-0.703789971999882],[119.79200280000006,-0.778415622999916],[119.80982506600017,-0.833916924999869],[119.82488040500019,-0.858656507999854],[119.8465275400001,-0.874607028999861],[119.8623153000001,-0.834161065999908],[119.86589603000019,-0.813571872999887],[119.8671981130001,-0.78834400799991],[119.8650008470001,-0.782891533999887],[119.85613040500006,-0.769138278999861],[119.85401451900023,-0.761000257999854],[119.85523522200005,-0.727146091999884],[119.85401451900023,-0.716403903999876],[119.84693444100017,-0.701267184999878],[119.82406660200014,-0.675062757999925],[119.81934655000018,-0.665459893999866],[119.81576582099999,-0.653415622999844],[119.79200280000006,-0.607110283999859],[119.7824813160001,-0.569105726999865],[119.77833092500022,-0.53508879999984],[119.77540123800023,-0.522637627999913],[119.76156660200003,-0.490655205999914],[119.75782311300011,-0.469903252999913],[119.78109785200003,-0.239353122999873],[119.79053795700021,-0.208754164999945],[119.80225670700013,-0.195570570999905],[119.80836022199999,-0.182793877999856],[119.80640709700006,-0.153985283999916],[119.79997806100008,-0.123793226999823],[119.79200280000006,-0.106784763999855],[119.76254316500004,-0.119480075999903],[119.73047936300023,-0.121351820999962],[119.69996178500011,-0.114108981999863],[119.67530358200011,-0.09937916499986],[119.65756269599999,-0.080132744999915],[119.63868248800004,-0.050876559999892],[119.62769616,-0.018365166999914],[119.63445071700008,0.010484117000118],[119.650645379,0.001613674000069],[119.65943444100017,-0.001519463999912],[119.66846764400006,-0.003838799999869],[119.66797936300011,0.00702545800003],[119.66895592500018,0.016262111000074],[119.6713973320001,0.023993231000176],[119.67530358200011,0.030340887000122],[119.69809004000004,0.016913153000118],[119.7158309250001,0.001532294000086],[119.74415123800004,-0.031101169999872],[119.76587975400004,-0.063246351999837],[119.77833092500022,-0.076348565999893],[119.79883873800011,-0.085707289999917],[119.81641686300023,-0.090020440999837],[119.82593834700006,-0.089939059999935],[119.83269290500007,-0.084405205999829],[119.84717858200023,-0.06157805799991],[119.85678144599999,-0.041029554999952],[119.8779403000001,0.045477606000119],[119.88819420700023,0.071275132000139],[119.86980228000019,0.10565827],[119.79395592500022,0.196600653000132],[119.78785241000004,0.208400783000116],[119.78565514400017,0.221096096000082],[119.78516686300004,0.239488023000121],[119.79444420700024,0.250189520000134],[119.85401451900023,0.269924221000082],[119.86947675900015,0.287176825000088],[119.86768639400005,0.302069403000047],[119.85914147200005,0.318915106000048],[119.85401451900023,0.34223053600013],[119.85873457100016,0.364243882000139],[119.88355553499999,0.400051174000069],[119.89503014400023,0.420721747000172],[119.89730879000003,0.431138414000074],[119.89844811300016,0.45160553600013],[119.90186608200005,0.461737372000172],[119.91179446700006,0.473700262000108],[119.92383873800006,0.480861721000068],[119.93620853,0.486395575000174],[119.94654381600006,0.493353582999987],[119.96461022200008,0.501125393000066],[120.01246178500018,0.504787502000113],[120.03223717500012,0.516302802000055],[120.045176629,0.549994208000058],[120.04037519600004,0.588120835000126],[120.02963300899998,0.628119208000086],[120.02475019600004,0.667181708000129],[120.02751712300018,0.688910223000107],[120.03419030000023,0.713812567000147],[120.04574629000015,0.734361070000176],[120.06283613400002,0.742865302000126],[120.07227623800021,0.74404531500015],[120.097422722,0.750311591000099],[120.11052493600006,0.751410223000135],[120.12086022200016,0.754339910999988],[120.18653405000006,0.784002997000101],[120.20728600400015,0.797593492000146],[120.22706139400012,0.814886786000059],[120.23552493600008,0.831529039000102],[120.24708092500006,0.933294989000146],[120.25652103000019,0.968898830000029],[120.27849368600019,0.994208075000145],[120.31959069100012,0.996079820000119],[120.341644727,0.982855536],[120.34669030000013,0.963080145000063],[120.34009850400005,0.917914130000028],[120.3403426440001,0.872381903000061],[120.34644616000018,0.855617580000043],[120.36182701900012,0.866400458000129],[120.36736087300004,0.866400458000129],[120.375254754,0.848700262000122],[120.38705488399998,0.833929755000142],[120.40284264400022,0.82172272299999],[120.42204837300008,0.811753648000177],[120.45337975400004,0.805080471000039],[120.46957441499997,0.796820380000128],[120.47681725400001,0.800970770000077],[120.48267662900005,0.80805084800005],[120.48780358200005,0.811753648000177],[120.51148522200018,0.810614325000145],[120.52759850400015,0.806057033000016],[120.54102623800023,0.796576239000089],[120.55640709700018,0.780747789000145],[120.56812584700018,0.782131252000127],[120.58472741000006,0.79755280200007],[120.61443118600008,0.832220770000134],[120.60222415500017,0.855698960000026],[120.61784915500007,0.898586330000086],[120.6622827480002,0.968817450000046],[120.68336022199999,0.991929429000081],[120.69019616000004,0.996079820000119],[120.69955488400015,0.992377020000077],[120.71094811300023,0.983465887000136],[120.7226668630001,0.976752020000092],[120.7338973320001,0.979681708000115],[120.74000084700012,0.989162502000127],[120.74756920700021,1.010565497000158],[120.75424238400004,1.020656643000137],[120.76303144600014,1.026027736000088],[120.78370201900005,1.031968492000033],[120.79249108200015,1.037746486000088],[120.80176842500012,1.052639065000136],[120.80323326900006,1.068426825000088],[120.79867597700003,1.130845445000048],[120.79948978000002,1.142075914000131],[120.80250084700006,1.146958726000193],[120.80250084700006,1.152044989000132],[120.80909264400012,1.162787177000055],[120.8169051440001,1.172674872000144],[120.81983483200023,1.174872137000136],[120.82593834699999,1.196682033000016],[120.82764733200011,1.214016018000095],[120.82667076900023,1.253729559000092],[120.81967207100014,1.290920315],[120.8208113940001,1.31000397299999],[120.83350670700005,1.32566966400006],[120.84302819100004,1.328314520000049],[120.86459394600014,1.32514069199999],[120.87452233200004,1.32566966400006],[120.88445071700006,1.330633856000105],[120.90919030000023,1.353664455000072],[120.90609785200016,1.324286200000159],[120.90853925899998,1.311428127000056],[120.91920006600004,1.315171617000175],[120.93848717500018,1.337225653000161],[120.94947350400004,1.34381745000006],[120.9672957690001,1.346177476000108],[121.06120853000006,1.327093817000033],[121.08041425900002,1.331935940000093],[121.13379967500016,1.314601955000114],[121.15870201900012,1.302801825000131],[121.182790561,1.271429755000099],[121.26490319100004,1.229559637000179],[121.31763756599999,1.253851630000071],[121.337168816,1.256822007000082],[121.38168378999998,1.256659247000115],[121.39909915500006,1.262396552000098],[121.42253665500007,1.277289130000057],[121.44166100400004,1.294582424000055],[121.45142662900017,1.297552802000055],[121.46412194100002,1.291571356000134],[121.46949303500017,1.282863674000154],[121.47201582099999,1.269924221000139],[121.47152754000003,1.256577867000132],[121.46753991000006,1.246893622000087],[121.4594832690001,1.24266185100015],[121.43506920700021,1.235296942000062],[121.43002363400002,1.232977606000105],[121.43140709700016,1.226019598000107],[121.43962649800018,1.212103583000044],[121.44361412900015,1.202215887000122],[121.44507897200006,1.193345445000162],[121.44459069100006,1.186835028000175],[121.44556725399998,1.17918528900006],[121.45045006600017,1.167425848000079],[121.46843509200004,1.146307684000149],[121.47095787900004,1.137030341000099],[121.48072350400017,1.120917059000135],[121.528575066,1.083238023000064],[121.54672285199997,1.072455145000148],[121.58676191500014,1.061753648000121],[121.63086998800021,1.061957098000079],[121.92611738400002,1.098700262000165],[121.94320722700016,1.091131903000118],[121.95582116000004,1.045558986000074],[121.9702254570001,1.029486395000092],[121.99024498800006,1.021918036000145],[122.01221764400006,1.024074611000145],[122.02719160200004,1.034002997000059],[122.0488387380001,1.059759833000086],[122.06373131600004,1.065008856000162],[122.08773847699999,1.06159088700015],[122.1494246750001,1.037746486000088],[122.17790774800002,1.035630601000079],[122.19092858200023,1.031480210000126],[122.19735761800021,1.027655341000113],[122.22282962300002,1.012355861000145],[122.23536217500023,1.009833075000131],[122.24537194099999,1.010931708000086],[122.26465905000022,1.016058661000017],[122.27621503999997,1.017279364000032],[122.28142337300008,1.016058661000017],[122.29070071700002,1.010931708000086],[122.29672285200006,1.009833075000131],[122.29981530000012,1.011786200000088],[122.30827884200008,1.021185614000117],[122.313731316,1.024074611000145],[122.32829837300001,1.024359442000076],[122.37598717500012,1.009833075000131],[122.39551842500006,1.010972398000163],[122.44174238399998,1.021673895000106],[122.4541121750001,1.020656643000137],[122.48560631600006,0.995998440000136],[122.524180535,0.979966539000145],[122.56519616000001,0.97138092700014],[122.62378991000004,0.966376044000015],[122.64527428500016,0.959173895000063],[122.66285240999999,0.947414455000086],[122.67017662899998,0.931301174000111],[122.67937259200019,0.918850002000013],[122.70045006599999,0.908189195000162],[122.73902428500017,0.893744208000101],[122.74691816500015,0.886664130000057],[122.75114993600008,0.880072333000072],[122.75684655000023,0.875148830000114],[122.76970462300007,0.873236395000063],[122.77881920700004,0.870062567],[122.78101647200018,0.855902411000073],[122.8060001960001,0.84784577000012],[122.83073978000007,0.824937242000132],[122.84888756600004,0.818019924000126],[122.88990319100017,0.848211981000134],[122.906993035,0.852728583000015],[122.91846764400022,0.85956452000012],[122.93824303500018,0.907416083000143],[122.94304446700006,0.912502346000068],[122.95386803500016,0.9214541690001],[122.95818118600008,0.9278832050001],[122.95818118600008,0.945746161000073],[122.96078535200016,0.957261460000112],[122.96802819100016,0.962591864000075],[122.99089603000017,0.961859442000133],[123.00505618600013,0.959458726000193],[123.07129967500006,0.93475983300003],[123.09571373800023,0.928900458000072],[123.09725996200008,0.929144598000107],[123.11207116000006,0.931301174000111],[123.13445071700008,0.938910223000065],[123.17562910200004,0.922552802000141],[123.19092858200011,0.9278832050001],[123.18669681100017,0.938177802000126],[123.18238366000016,0.960109768000137],[123.18669681100017,0.973618882000124],[123.20785566499997,0.958889065000122],[123.22575931100002,0.949530341000013],[123.25489342500012,0.960679429000109],[123.2734481130001,0.948919989000132],[123.27833092500005,0.93878815300009],[123.27906334700012,0.929836330000143],[123.28207441500004,0.921779690000122],[123.29395592500023,0.914211330000072],[123.30396569100004,0.912298895000106],[123.331309441,0.912827867000175],[123.34180748800006,0.914211330000072],[123.3520613940001,0.918158270000148],[123.35962975400017,0.923407294000143],[123.36866295700005,0.927435614000103],[123.38331139400006,0.9278832050001],[123.39112389400005,0.923814195000148],[123.39714603000017,0.917873440000037],[123.40495853000006,0.915350653000104],[123.41732832100004,0.921616929000066],[123.44507897200016,0.90298086100016],[123.51978600400011,0.886623440000065],[123.55054772200018,0.869818427000055],[123.56299889400012,0.866929429000109],[123.59669030000013,0.881822007000068],[123.61231530000005,0.88621653900006],[123.63200931100002,0.881659247000101],[123.67212975400007,0.859930731000134],[123.69117272200005,0.852728583000015],[123.83179772200018,0.832220770000134],[123.9004012380001,0.839667059000035],[123.909922722,0.837876695000048],[123.92920983200023,0.831529039000102],[123.93751061300023,0.832220770000134],[123.94792728000012,0.838934637000179],[123.95142662899998,0.846136786000116],[123.94809004000008,0.853013414000046],[123.93751061300023,0.858954169000157],[123.95240319100017,0.867987372000158],[123.99170983200005,0.880682684000121],[124.0080672540001,0.898179429000081],[124.120290561,0.939113674000112],[124.15300540500006,0.945949611000117],[124.16667728000017,0.956935940000079],[124.19076582100004,0.983099677000041],[124.22364342500012,0.998724677000027],[124.29037519600016,1.017320054000024],[124.31495201900006,1.037746486000088],[124.32976321700009,1.070542710000097],[124.34652754000015,1.139634507000096],[124.36280358200011,1.167425848000079],[124.37403405000012,1.177069403000132],[124.38941491000004,1.186102606000148],[124.40772545700011,1.192775783000101],[124.42790774800001,1.195379950000017],[124.4943139980001,1.19220612200013],[124.51417076900007,1.195379950000017],[124.52344811300023,1.201239325000145],[124.529551629,1.208685614000117],[124.53663170700005,1.21466705900005],[124.54835045700015,1.215806382000082],[124.55600019599997,1.210598049],[124.5607202480002,1.201076565000079],[124.56690514400017,1.192043361000074],[124.57911217500023,1.187892971000124],[124.59376061300023,1.195868231000176],[124.60678144600004,1.214789130000113],[124.61500084700006,1.237534898000135],[124.61597740999999,1.256822007000082],[124.60645592500012,1.27334219000015],[124.59083092500023,1.278794664000102],[124.55144290500007,1.277289130000057],[124.53443444100017,1.288641669000114],[124.532969597,1.314520575000131],[124.53980553500006,1.34243398600016],[124.54835045700015,1.359849351000051],[124.60181725400015,1.400132554000109],[124.60971113400014,1.410711981000077],[124.62037194100017,1.417141018000081],[124.6917423840001,1.401434637000108],[124.71729576900017,1.405829169000015],[124.73243248800016,1.415676174000112],[124.75660241000016,1.445217190000079],[124.77418053500011,1.455226955000157],[124.81576582100016,1.460598049000126],[124.83570397200005,1.469142971000139],[124.85043379000014,1.489691473],[124.84392337300007,1.508530992000132],[124.82984459699999,1.527533270000134],[124.822032097,1.548529364000075],[124.825938347,1.572902736000046],[124.83692467500005,1.588853257000054],[124.93653405000012,1.665594794000171],[124.94556725400005,1.678290106000133],[124.94988040500002,1.682603257000139],[124.96859785199997,1.673814195000176],[124.97291100399998,1.678290106000133],[124.97095787900015,1.713202216000155],[124.97291100399998,1.722967841000099],[124.98389733200005,1.731594143000024],[125.00473066500015,1.741034247000115],[125.025157097,1.744126695000105],[125.03443444100017,1.733465887000165],[125.03492272200006,1.69204336100016],[125.04273522200005,1.680568752000113],[125.06169681100006,1.674546617000104]]],[[[125.14942467500022,1.742173570000147],[125.14470462300008,1.741848049000126],[125.13721764400005,1.747951565000036],[125.13209069100017,1.758368231000105],[125.12973066500004,1.772406317000062],[125.12387129000014,1.789048570000105],[125.12232506600006,1.807033596000138],[125.12598717500005,1.815415757000025],[125.1294051440001,1.828436591000013],[125.13526451900024,1.830959377000028],[125.14454186300011,1.822333075000103],[125.15398196700018,1.810736395000092],[125.16570071700019,1.802232164000159],[125.17221113399998,1.799221096000067],[125.17660566500015,1.792792059000135],[125.17701256600017,1.778753973000093],[125.15406334700018,1.756496486000145],[125.15202884200008,1.747707424],[125.14942467500022,1.742173570000147]]],[[[97.14291425900015,2.092271226000051],[97.14844811300006,2.074164130000042],[97.15113366000004,2.05809153900006],[97.1447860040001,2.051947333000072],[97.12305748800011,2.039292710000097],[97.12012780000012,2.034857489000117],[97.12427819100006,2.021673895000077],[97.11500084700018,2.014715887000094],[97.10230553500006,2.016058661000073],[97.06902103000002,2.087144273000121],[97.07545006600004,2.086004950000088],[97.0872501960001,2.096869208000072],[97.09253991000017,2.105536200000159],[97.10035241000016,2.111273505000142],[97.12012780000012,2.113348700000159],[97.13379967500006,2.10716380400001],[97.14291425900015,2.092271226000051]]],[[[101.72120201900012,2.05809153900006],[101.7579858730002,2.011297919000086],[101.77027428500004,1.985052802000055],[101.77556399800014,1.947984117000132],[101.76775149800002,1.925604559000107],[101.73585045700011,1.887681382000082],[101.72877037900017,1.863226630000057],[101.7324324880001,1.817938544000129],[101.72917728000007,1.799058335000012],[101.71509850400011,1.778225002000113],[101.66627037900011,1.744940497000115],[101.65984134200019,1.733465887000165],[101.64942467500012,1.722235419000171],[101.62525475400011,1.714422919000171],[101.5975041020001,1.710028387000093],[101.57732181100019,1.709295966000155],[101.5306095710001,1.71816640800003],[101.49073326900005,1.736761786000116],[101.46013431100002,1.765529690000065],[101.44068444100006,1.804877020000148],[101.43034915500013,1.85028717700014],[101.4222111340001,1.872992255000085],[101.39714603000017,1.909369207999987],[101.39380944100017,1.930609442000062],[101.4057723320001,2.013861395000092],[101.41814212300002,2.044419664000116],[101.44092858200005,2.064927476000165],[101.47828209699999,2.072414455000128],[101.49577884200008,2.06883372600015],[101.531016472,2.056463934000121],[101.55054772200012,2.05809153900006],[101.56641686300011,2.067938544000157],[101.61508222700016,2.117092190000093],[101.64926191500015,2.128485419000157],[101.68165123800006,2.108954169000086],[101.70720462300002,2.078802802000055],[101.72120201900012,2.05809153900006]]],[[[96.64356530000006,2.074448959999984],[96.62289472700016,2.070624091000141],[96.60962975400011,2.080145575000145],[96.60987389400006,2.106512762000136],[96.61329186300011,2.119126695000119],[96.61833743600002,2.126857815000136],[96.62769616000017,2.129461981000134],[96.64405358200005,2.127020575000103],[96.65796959700005,2.121812242000189],[96.66822350400017,2.113430080000143],[96.67172285200016,2.101996161000088],[96.66537519600016,2.087876695000148],[96.64356530000006,2.074448959999984]]],[[[125.40845787899998,2.122259833000015],[125.40626061300011,2.107326565000065],[125.40316816500004,2.102769273000106],[125.3977970710001,2.104193427],[125.39332116,2.104396877000127],[125.39087975400015,2.101752020000134],[125.37549889400023,2.092108466000084],[125.37012780000006,2.091701565000079],[125.36215254000004,2.086371161000101],[125.356130405,2.077215887000037],[125.34913170700021,2.071234442000105],[125.34050540500002,2.073309637000122],[125.33423912900017,2.081854559000149],[125.33521569100019,2.092433986000017],[125.34058678499999,2.100775458000072],[125.34457441499997,2.102240302000126],[125.35035241000017,2.109035549000069],[125.35718834700018,2.109849351000079],[125.35718834700018,2.113918361000131],[125.35377037900017,2.116685289000173],[125.35124759200008,2.122259833000015],[125.35425866000006,2.129868882000139],[125.35987389400022,2.127630927000055],[125.36451256600017,2.123602606000176],[125.36793053500018,2.125637111000032],[125.37208092500022,2.124416408000016],[125.37794030000005,2.120591539000173],[125.38624108200023,2.118312893000109],[125.39340254,2.118231512000122],[125.40495853000002,2.130275783000144],[125.40845787899998,2.122259833000015]]],[[[128.05665123800023,2.192450262000065],[128.0568139980002,2.169907945000162],[128.05014082100016,2.14752838700015],[128.02906334700003,2.109686591000112],[128.0161238940002,2.093003648000078],[128.00464928500017,2.086004950000088],[127.99952233200005,2.081691799000083],[127.99447675900015,2.072088934000107],[127.98764082100004,2.062445380000142],[127.96461022200005,2.053615627000084],[127.95850670700005,2.04242584799999],[127.95411217500005,2.017157294000114],[127.94336998800006,1.980780341000141],[127.93458092500012,1.963202216000113],[127.92302493600019,1.955715236000131],[127.90495853000006,1.953436591000155],[127.88900800900015,1.947333075000088],[127.87566165500007,1.938788153000147],[127.86475670700005,1.929022528000033],[127.85661868600006,1.912502346000054],[127.84929446700002,1.883530992000146],[127.84644615999999,1.851467190000065],[127.85173587300007,1.8253848330001],[127.87566165500007,1.807928778000132],[127.94068444100017,1.800034898000078],[127.95411217500005,1.788153387000122],[127.96355228000019,1.773586330000086],[128.0053817070002,1.739406643000095],[128.01490319099997,1.719224351000079],[128.0058699880001,1.645493882000125],[128.00228925900015,1.633734442000147],[127.99561608200005,1.627346096000124],[128.00147545700023,1.613836981000148],[128.00855553500017,1.60639069200009],[128.0157983730002,1.600775458],[128.02222741000006,1.592596747000172],[128.02719160200016,1.58055247600015],[128.03532962300017,1.537990627000028],[128.03223717500012,1.516994533000073],[128.0159611340001,1.464178778000089],[128.01490319099997,1.435532945000119],[128.01636803500017,1.404038804000109],[128.01490319099997,1.394598700000103],[128.01059004000004,1.389349677000027],[128.004161004,1.385402736000117],[127.99822024800007,1.380072333000058],[127.99561608200005,1.370754299000112],[127.99984785199999,1.352280992000175],[128.01539147200012,1.317287502000084],[128.01490319099997,1.305243231000162],[128.00611412900005,1.299872137000122],[127.98292076900013,1.3003604190001],[127.973887566,1.297756252000113],[127.96949303500004,1.290432033000101],[127.95850670700005,1.26459381700009],[127.95069420700005,1.253729559000092],[127.93140709700006,1.233791408000116],[127.91911868600017,1.21605052300012],[127.89942467500023,1.174872137000136],[127.895274285,1.162990627000013],[127.89429772200006,1.156642971000068],[127.89063561300006,1.152411200000145],[127.87826582100003,1.146958726000193],[127.86744225400005,1.145697333000015],[127.84359785200014,1.147772528000033],[127.83399498800004,1.143866278000118],[127.75489342500006,1.078599351000122],[127.67107181100017,1.031805731000148],[127.63754316500015,1.000718492000061],[127.62452233200018,0.955145575000103],[127.62761478000007,0.937404690000108],[127.63550866,0.918931382],[127.64535566500014,0.902411200000017],[127.65512129000008,0.890041408000073],[127.6700952480002,0.878973700000117],[127.70541425900015,0.863714911000059],[127.72071373800011,0.852728583000015],[127.72543379000004,0.845404364000089],[127.73511803500017,0.825913804000109],[127.74187259200019,0.818019924000126],[127.75033613400015,0.814764716000084],[127.75912519600004,0.815659898000163],[127.7685653000001,0.815375067000133],[127.79566491000004,0.799058335000112],[127.815603061,0.799058335000112],[127.83545983200023,0.804632880000042],[127.85173587300007,0.811753648000177],[127.87240644599997,0.823960679000066],[127.906586134,0.852484442000147],[127.92302493600019,0.869818427000055],[127.92758222700003,0.885158596000011],[127.9329533210001,0.973211981000119],[127.93230228000002,0.989935614000146],[127.93637128999997,1.007310289000117],[127.99390709700018,1.082993882000025],[128.01490319099997,1.099798895000035],[128.03549238400015,1.112127997000158],[128.05494225400005,1.120428778000146],[128.07569420700023,1.125067450000159],[128.14478600400014,1.124660549000069],[128.16065514400006,1.132147528000047],[128.17945397200006,1.154445705000072],[128.19239342500023,1.177435614000146],[128.1960555350001,1.196437893000066],[128.19060306100008,1.214056708000086],[128.17628014400006,1.232977606000105],[128.15650475400005,1.241766669000157],[128.1136173840001,1.231838283000073],[128.097422722,1.236314195000119],[128.09205162900017,1.257269598000079],[128.10710696700008,1.276434637000136],[128.14210045700005,1.301459052000055],[128.154551629,1.319281317000119],[128.17448978000016,1.356634833],[128.18677819100006,1.374172268000038],[128.2046004570001,1.389960028000161],[128.24708092500006,1.416489976000122],[128.26531009200008,1.431830145000077],[128.2823999360002,1.442613023000092],[128.32618248800006,1.456610419000057],[128.34449303500006,1.469142971000139],[128.3502710300002,1.477932033000116],[128.3576766290001,1.495062567000147],[128.3649194670002,1.503241278000147],[128.3727319670002,1.507473049000083],[128.39356530000006,1.515041408000116],[128.41716556100002,1.530585028000118],[128.43726647200018,1.539292710000026],[128.45972741000017,1.544989325000088],[128.4816186860002,1.545396226000193],[128.48894290500013,1.542181708000143],[128.4933374360002,1.536932684000149],[128.49854576900012,1.532294012000122],[128.50904381600017,1.531195380000085],[128.51929772200018,1.535589910999988],[128.52735436300023,1.544256903000161],[128.53931725400017,1.561916408000073],[128.55372155000012,1.568426825000159],[128.60466556100002,1.576890367000104],[128.64722741000017,1.579006252000113],[128.71949303500014,1.57062409100007],[128.72478274800002,1.565985419000128],[128.72730553500003,1.558579820000148],[128.72803795700005,1.548529364000075],[128.72478274800002,1.541978257000096],[128.7006942070001,1.523667710000041],[128.68751061300017,1.503241278000147],[128.68392988399998,1.483343817000062],[128.68637129000004,1.445217190000079],[128.6891382170002,1.436753648000135],[128.6954858730002,1.429754950000159],[128.71461022200015,1.414618231000162],[128.72681725400014,1.408758856000034],[128.74097741000017,1.404852606000119],[128.74333743600002,1.398382880000113],[128.7417098320001,1.387152411000116],[128.74577884200008,1.369452216000113],[128.7483016290001,1.344061591000099],[128.74659264400003,1.321275132000068],[128.73829186300011,1.311468817000048],[128.72120201900017,1.304185289000116],[128.71583092500012,1.286525783000101],[128.7143660820002,1.243150132000139],[128.702403191,1.193752346],[128.7006942070001,1.171128648000106],[128.7085067070001,1.103461005000071],[128.70687910200016,1.085516669000128],[128.70362389400023,1.075018622000144],[128.70118248800011,1.070868231000119],[128.68637129000004,1.065008856000162],[128.67628014400023,1.063706773000163],[128.66260826900012,1.063788153000147],[128.6506453790001,1.061957098000079],[128.64551842500006,1.054754950000145],[128.56332441499998,1.0073916690001],[128.54883873800023,0.996039130000128],[128.54249108200023,0.986517645000049],[128.53321373800006,0.979437567000076],[128.4747827480002,0.962591864000075],[128.45289147200006,0.941229559000121],[128.43978925899998,0.9317894550001],[128.42335045700008,0.9278832050001],[128.40398196700008,0.925482489000061],[128.31544030000018,0.901556708000015],[128.30046634200002,0.893744208000101],[128.29200280000006,0.87986888200011],[128.289317254,0.855861721000082],[128.29639733200005,0.835760809000121],[128.29835045700023,0.823431708000086],[128.29297936300017,0.818019924000126],[128.28060957100004,0.820461330000157],[128.2594507170001,0.830633856000105],[128.24878991000014,0.832220770000134],[128.23178144600004,0.826076565000065],[128.22095787900005,0.812689520000063],[128.21509850400017,0.794623114000146],[128.21355228000007,0.773911851000051],[128.21949303500017,0.758368231000048],[128.23422285200016,0.742621161000088],[128.26872806100008,0.715562242000132],[128.29517662900017,0.684637762000094],[128.31348717500012,0.668158270000106],[128.3434350920002,0.657782294000029],[128.36459394599999,0.643622137000179],[128.37517337300002,0.640448309000121],[128.40886478000007,0.64154694199999],[128.4362899100001,0.638861395000092],[128.44288170700005,0.636419989000061],[128.45053144599999,0.629584052000141],[128.46664472700016,0.611517645000035],[128.47657311300006,0.602728583000058],[128.48503665500013,0.598863023000149],[128.5201929050002,0.594427802000084],[128.53931725400017,0.589097398000106],[128.57056725400005,0.570257880000071],[128.58545983200005,0.568508205000072],[128.60035241000006,0.570868231000119],[128.61817467500012,0.571600653000147],[128.62956790500007,0.567450262000122],[128.64144941500004,0.560980536000031],[128.65406334700012,0.558050848000093],[128.6666772800002,0.564764716000141],[128.6808374360002,0.554510809000107],[128.6843367850001,0.541693427],[128.68018639400023,0.510077216000013],[128.67774498800011,0.504828192000105],[128.67359459700018,0.499579169000128],[128.67172285200004,0.493719794000171],[128.68165123800011,0.47931549700003],[128.68458092500023,0.470689195000105],[128.68604576900012,0.461371160999988],[128.68539472700016,0.382025458000044],[128.69011478000007,0.346991278000132],[128.70386803500017,0.33201732000019],[128.76221764400006,0.321437893000152],[128.77051842500023,0.315904039000046],[128.82422936300011,0.310858466000099],[128.85043379000015,0.289862372000158],[128.8797306650001,0.255845445000134],[128.90015709700006,0.221991278000075],[128.8995874360002,0.207790432000152],[128.86117597700016,0.243557033000073],[128.84791100400005,0.250067450000159],[128.8341577480001,0.251532294000043],[128.7003686860002,0.290961005000099],[128.68018639400023,0.283514716000042],[128.65674889400006,0.2970238300001],[128.62867272200015,0.30805084800015],[128.5979110040001,0.315619208000015],[128.56666100400005,0.318304755000085],[128.5376082690002,0.326849677000098],[128.51343834700006,0.346828518],[128.4747827480002,0.387193101000136],[128.46111087300008,0.394842841000155],[128.449554884,0.396795966000028],[128.41960696700008,0.393459377000084],[128.40284264400023,0.393500067000076],[128.37671959700018,0.398871161000045],[128.3615014980002,0.400213934000035],[128.2946069670002,0.388983466000113],[128.26221764400006,0.391343492000161],[128.23462975400017,0.413967190000051],[128.210215691,0.406805731000091],[128.1879988940002,0.420843817000147],[128.16846764400006,0.441880601000165],[128.1520288420002,0.455511786000116],[128.07032311300011,0.463364976000193],[128.05591881600006,0.461737372000172],[128.03158613400015,0.47134023600016],[127.9786889980002,0.472560940000079],[127.96021569100017,0.48281484600011],[127.94109134200019,0.465806382000054],[127.9233504570001,0.453436591000099],[127.91049238399998,0.437689520000148],[127.89649498800011,0.355658270000134],[127.88282311300007,0.335923570000105],[127.87826582100003,0.324530341000127],[127.88086998800023,0.301743882000025],[127.90609785199997,0.275376695000105],[127.91236412900005,0.253485419000086],[127.92123457099999,0.14557526200015],[127.91920006600017,0.131333726000136],[127.91146894600014,0.118882554000123],[127.89576256600017,0.102362372000144],[127.88786868600012,0.087469794000015],[127.88461347700014,0.067043361000117],[127.8857528000001,0.023504950000017],[127.89242597700016,-0.01718515399989],[127.90381920700024,-0.04949309699991],[127.93344160200014,-0.106784763999855],[127.95460045700005,-0.163506768999824],[127.97315514400005,-0.196872653999904],[127.9765731130001,-0.243340752999856],[127.98072350400004,-0.263848565999893],[127.99170983200011,-0.281426690999922],[128.01734459700006,-0.312595309999921],[128.02222741000006,-0.329034112999906],[128.02418053500017,-0.349786065999822],[128.03549238400015,-0.395928643999923],[128.04273522200018,-0.415297132999939],[128.0844832690001,-0.480889580999957],[128.09636478000007,-0.517266533999859],[128.12574303500017,-0.543633721999939],[128.138926629,-0.558689059999864],[128.22779381600006,-0.709567966999856],[128.281993035,-0.766208591999842],[128.337657097,-0.812595309999906],[128.34742272200018,-0.823418877999984],[128.36890709700018,-0.852715752999913],[128.38542728000007,-0.867120049999883],[128.42042076900006,-0.883070570999891],[128.435394727,-0.893324476999837],[128.44068444100017,-0.908786716999856],[128.4332788420002,-0.908786716999856],[128.40601647200012,-0.892266533999873],[128.37086022200006,-0.884860934999878],[128.28402754000004,-0.878187757999839],[128.26636803500006,-0.873711846999868],[128.25098717500006,-0.866794528999861],[128.23804772200018,-0.857028904],[128.22885175900004,-0.839939059999963],[128.23511803500006,-0.829034112999906],[128.2487085300002,-0.826104424999883],[128.26189212300008,-0.833103122999859],[128.26872806100008,-0.833103122999859],[128.24952233200023,-0.796482028999932],[128.20394941500015,-0.769463799999883],[128.04883873800017,-0.712823174999897],[128.03223717500012,-0.699314059999921],[128.0206811860002,-0.682061455999914],[127.96851647200005,-0.559502862999963],[127.91236412900005,-0.476739190999922],[127.88559004000015,-0.406019789999903],[127.86882571700014,-0.389336846999868],[127.85132897200018,-0.365492445999962],[127.84083092500012,-0.360039971999839],[127.8322046230002,-0.357517184999921],[127.77759850400007,-0.328057549999841],[127.74146569100012,-0.303399346999853],[127.72413170700011,-0.298597914999945],[127.70834394600014,-0.287041924999841],[127.6888126960001,-0.260186455999857],[127.67237389400006,-0.230157158999901],[127.66602623800023,-0.209242445999934],[127.66724694100017,-0.185804945999948],[127.6826278000001,-0.144952080999914],[127.68653405000012,-0.123874606999976],[127.68539472700014,-0.008314710999926],[127.68653405000012,0.003078518000123],[127.68946373800021,0.014837958000101],[127.6982528000001,0.037787177000013],[127.70020592500022,0.047674872000101],[127.69752037900017,0.07078685100015],[127.68458092500022,0.099351304000052],[127.67969811300011,0.119086005],[127.68067467500018,0.162258205000086],[127.71371504000003,0.277329820000148],[127.71680748800013,0.296454169000128],[127.71558678500017,0.312567450000103],[127.70915774800007,0.327215887000108],[127.69678795700021,0.34223053600013],[127.68588300900015,0.346625067000119],[127.66423587300007,0.339789130000099],[127.65512129000008,0.34223053600013],[127.61085045700021,0.379787502000141],[127.60865319100006,0.382879950000046],[127.60580488399998,0.390448309000178],[127.6040145190001,0.393459377000084],[127.58350670700023,0.407131252000113],[127.57650800900008,0.415513414000088],[127.57227623800023,0.422349351000193],[127.5703231130001,0.431138414000074],[127.568614129,0.462836005000042],[127.56104576900022,0.50942617400014],[127.55616295700007,0.52383047100011],[127.55054772200016,0.529364325000046],[127.54249108200023,0.534654039000102],[127.53443444099999,0.541652736000088],[127.52833092500012,0.551743882000054],[127.52686608200017,0.560614325000017],[127.52947024800008,0.605902411000116],[127.54249108200023,0.667181708000129],[127.54737389400013,0.715399481000176],[127.55543053500006,0.739894924000026],[127.5880639980002,0.761175848000093],[127.60466556100008,0.786037502000127],[127.61833743600019,0.813462632000082],[127.62452233200018,0.832220770000134],[127.61158287900017,0.857733466000141],[127.57748457100014,0.869289455000157],[127.53760826900005,0.875718492000175],[127.50782311300006,0.88621653900006],[127.49463951900012,0.905015367000104],[127.4985457690001,0.92279694200009],[127.50879967500022,0.940375067000119],[127.51465905000005,0.958889065000122],[127.51254316500008,0.968898830000029],[127.50359134200009,0.987209377000084],[127.50163821700018,0.99298737200013],[127.49935957100003,0.996486721000124],[127.49000084700016,0.995998440000136],[127.4878035820001,0.999904690000051],[127.48853600400005,1.018255927000098],[127.4878035820001,1.024074611000145],[127.489024285,1.03457265800003],[127.49268639400005,1.044867255000128],[127.49195397200008,1.054917710000111],[127.4804793630001,1.065008856000162],[127.47144616000017,1.065578518000052],[127.46290123800017,1.060614325000088],[127.455332879,1.054388739000132],[127.44947350400017,1.051336981000048],[127.43213951900006,1.04682038],[127.41627037900015,1.040350653000175],[127.40414472700016,1.042792059000107],[127.39861087300002,1.065008856000162],[127.39975019600008,1.078762111000088],[127.4044702480002,1.087388414000188],[127.41098066500008,1.095160223000093],[127.41846764400022,1.105943101000193],[127.42546634200002,1.120428778000146],[127.42741946700008,1.128485419000171],[127.42579186300024,1.150702216000141],[127.42066491000006,1.163804429000024],[127.41000410199997,1.175523179000095],[127.40023847700016,1.189439195000162],[127.39861087300002,1.209051825000131],[127.40593509200008,1.22988515800003],[127.43482506600017,1.277411200000031],[127.46338951900023,1.314113674000126],[127.4878035820001,1.380316473000107],[127.52637780000006,1.438544012000122],[127.54078209700006,1.475653387000051],[127.53199303500017,1.506903387000023],[127.51937910199999,1.531927802000112],[127.52515709700006,1.556626695000105],[127.55616295700007,1.600043036000145],[127.54672285200016,1.615423895000092],[127.54371178500017,1.622992255000142],[127.54249108200023,1.630438544000114],[127.54639733200021,1.642889716000127],[127.55518639400012,1.648423570000148],[127.56430097699999,1.651027736000145],[127.56983483200011,1.65468984600011],[127.57309004000015,1.664007880000142],[127.57488040500006,1.675279039000131],[127.571543816,1.68480052300005],[127.55933678500004,1.688869533000101],[127.5556746750001,1.692531643000137],[127.55958092500005,1.70083242400004],[127.56983483200011,1.715521552000041],[127.58090254000015,1.75177643400005],[127.62973066500014,1.835394598000093],[127.65463300899997,1.865668036000088],[127.67741946700012,1.907456773000107],[127.6899520190001,1.925279039000173],[127.7465926440001,1.973130601000108],[127.76970462300007,2.008693752],[127.86109459699999,2.104437567000119],[127.89258873800021,2.129055080000128],[127.89942467500023,2.137884833],[127.90430748800013,2.153998114000145],[127.917246941,2.172105209999984],[127.93482506600007,2.187648830000157],[127.95411217500005,2.195868231000162],[127.97315514400005,2.193101304000109],[127.98812910200003,2.184312242000132],[128.00391686300017,2.18060944200009],[128.04737389400012,2.203843492000033],[128.05665123800023,2.192450262000065]]],[[[97.19157962300008,2.208929755000142],[97.20801842500006,2.207586981000063],[97.22071373800011,2.214300848000093],[97.23292076900012,2.223822333000101],[97.24675540500019,2.230658270000105],[97.26465905000006,2.232245184000135],[97.28126061300011,2.229071356000176],[97.28923587300008,2.221177476000193],[97.28150475400017,2.208929755000142],[97.30583743600002,2.185370184000092],[97.31983483200011,2.178656317000147],[97.32374108200005,2.16958242400014],[97.32862389400006,2.14752838700015],[97.3362736340001,2.126654364000089],[97.34107506600016,2.105698960000126],[97.343028191,2.083319403000104],[97.34229576900005,2.05809153900006],[97.33952884200002,2.049465236000145],[97.33521569100006,2.042181708000044],[97.32935631600017,2.036322333000086],[97.32178795700004,2.03143952000012],[97.32032311300006,2.049994208000115],[97.32178795700004,2.05809153900006],[97.30616295700005,2.057196356000147],[97.29615319100017,2.069525458000101],[97.28785241000016,2.087469794000143],[97.27808678500006,2.103094794000128],[97.23389733200005,2.147162177000126],[97.22681725400011,2.158026434000035],[97.2073673840001,2.17552317900008],[97.102793816,2.212713934000163],[97.10938561300011,2.220160223000135],[97.12517337300002,2.225490627000113],[97.16700280000006,2.233099677000141],[97.17172285200016,2.233099677000141],[97.17847741,2.230658270000105],[97.18279056100019,2.226060289000173],[97.19157962300008,2.208929755000142]]],[[[127.75993899800014,2.269924221000039],[127.78589928499999,2.264227606000134],[127.80144290500013,2.265041408000144],[127.81055748800011,2.26386139500012],[127.81511478000007,2.25527578300003],[127.81617272199999,2.233791408000087],[127.80518639400023,2.21234772300015],[127.78126061300011,2.208929755000142],[127.75766035200014,2.22138092700007],[127.74822024800004,2.247381903000132],[127.751719597,2.265855210000069],[127.75993899800014,2.269924221000039]]],[[[118.58985436300013,2.305568752000084],[118.62256920700023,2.286118882],[118.63379967500012,2.271673895000035],[118.63266035199999,2.260687567000062],[118.617442254,2.268540757000139],[118.5859481130001,2.291489976000136],[118.57488040500006,2.294175523000106],[118.57488040500006,2.292425848000121],[118.58033287899998,2.286851304000024],[118.5859481130001,2.277818101000193],[118.59961998800023,2.244330145000148],[118.62387129000004,2.213080145000077],[118.63949629000004,2.198635158000116],[118.65430748800006,2.189683335000012],[118.65430748800006,2.182277736000103],[118.632090691,2.187241928999981],[118.610118035,2.202297268],[118.59115644599999,2.221014716000056],[118.57846113400002,2.236883856000162],[118.56836998800007,2.255601304000052],[118.55689537900005,2.28595612200003],[118.55640709700006,2.312201239000131],[118.57846113400002,2.318793036000031],[118.58985436300013,2.305568752000084]]],[[[125.4526473320001,2.333075262000108],[125.42310631599999,2.317124742000189],[125.39234459700005,2.325669664000117],[125.37094160199999,2.348130601000122],[125.36947675900004,2.374090887000122],[125.38062584700006,2.385728257000039],[125.39682050900005,2.391424872000101],[125.41504967500006,2.391831773000106],[125.43213951900023,2.387681382000082],[125.45069420700021,2.377915757000125],[125.45622806100006,2.367743231000176],[125.4526473320001,2.333075262000108]]],[[[128.16993248800023,2.297430731000148],[128.15463300899998,2.286363023000035],[128.14112389400012,2.296372789000102],[128.13070722700004,2.316473700000145],[128.12525475400017,2.335638739000032],[128.12525475400017,2.347479559000163],[128.12867272200018,2.35830312700007],[128.13477623800006,2.368312893000066],[128.14210045700005,2.377834377000141],[128.14975019600004,2.39061107000019],[128.154144727,2.400580145],[128.16016686300011,2.404852606000105],[128.17318769599999,2.40070221600007],[128.19361412900017,2.367254950000017],[128.1922306650001,2.354641018000123],[128.16993248800023,2.297430731000148]]],[[[109.05347741000006,2.537909247000101],[109.09685306100017,2.537176825000174],[109.10865319100017,2.531683661000059],[109.11394290500007,2.523179429000109],[109.11085045700005,2.516058661000073],[109.09506269600008,2.504380601000164],[109.07846113400014,2.496039130000014],[109.0522567070001,2.487616278000147],[109.02670332100016,2.485825914000159],[109.01246178500006,2.49754466400006],[109.01482181100019,2.511053778000118],[109.02247155000012,2.52000560100015],[109.0232853520001,2.527818101000136],[109.00562584699999,2.537909247000101],[109.0008244150001,2.537420966000113],[108.99073326900006,2.529730536000017],[108.98560631600006,2.527736721000153],[108.9798283210001,2.529120184000135],[108.97437584700006,2.532904364000075],[108.97006269600016,2.53815338700015],[108.9681095710001,2.543646552],[108.971934441,2.555121161000116],[108.9827580090001,2.560614325000145],[108.99642988400015,2.561753648000177],[109.00831139400012,2.560126044000157],[109.01978600400005,2.555121161000116],[109.04200280000012,2.541978257000068],[109.05347741000006,2.537909247000101]]],[[[128.59603925900004,2.608587958000143],[128.62012780000023,2.560451565],[128.63038170700005,2.544623114000146],[128.64210045700005,2.537909247000101],[128.68637129000004,2.4839541690001],[128.69450931100002,2.438869533000129],[128.68165123800011,2.399074611000131],[128.66081790500002,2.362290757000053],[128.64551842500006,2.326239325000088],[128.64210045700005,2.26117584800015],[128.58521569100006,2.154852606000148],[128.57300866000017,2.120591539000173],[128.56666100400005,2.109930731000063],[128.50953209700006,2.062445380000142],[128.49024498800011,2.054266669000128],[128.34498131600003,2.039943752000141],[128.33082116,2.034857489000117],[128.3170679050002,2.01972077000012],[128.2895613940002,2.001410223000065],[128.2690535820001,1.995347398000078],[128.2755639980002,2.017157294000114],[128.28858483200005,2.039618231000119],[128.28370201900012,2.057603256999982],[128.25196373800023,2.089422919000015],[128.24610436300011,2.106146552000041],[128.24878991000014,2.175441799000097],[128.24146569100014,2.222479559000021],[128.23210696700008,2.246812242000161],[128.21713300900004,2.257391669000128],[128.19711347700016,2.266180731000091],[128.20777428500017,2.286525783],[128.24878991000014,2.326239325000088],[128.27662194100006,2.368719794000071],[128.32113691500015,2.45864492400014],[128.3580835300002,2.49754466400006],[128.40072675900004,2.51837799700013],[128.4194442070001,2.532619533000044],[128.43002363400015,2.567572333000143],[128.43767337300008,2.575669664000159],[128.45736738400004,2.590073960000126],[128.46656334700015,2.594305731000148],[128.4747827480002,2.590765692000076],[128.48845462300014,2.57953522299999],[128.51514733200023,2.573391018000094],[128.52515709700003,2.58242422100011],[128.53142337300008,2.601141669000171],[128.54590905000023,2.623846747000115],[128.56641686300003,2.633612372000158],[128.58326256600017,2.625189520000105],[128.59603925900004,2.608587958000143]]],[[[125.42107181100019,2.633937893000081],[125.41114342500006,2.627264716000042],[125.39258873800004,2.628892320000062],[125.3825789720001,2.641831773000149],[125.37826582099999,2.66034577],[125.37761478000006,2.678778387000023],[125.374278191,2.69310130400001],[125.35971113399998,2.723089911000145],[125.35645592500022,2.740545966000028],[125.36011803500011,2.753322658000144],[125.37891686300023,2.790961005000057],[125.38721764400023,2.802394924000097],[125.40162194100016,2.810207424000097],[125.41700280000022,2.810248114000089],[125.43148847700009,2.804103908000101],[125.44361412900017,2.793036200000074],[125.45101972700016,2.778387762000065],[125.45045006600017,2.764837958000086],[125.44304446700019,2.752590236000117],[125.41602623800016,2.73078034100017],[125.40967858200021,2.724514065000037],[125.40495853000002,2.716701565000122],[125.40186608200023,2.699937242000104],[125.40658613400015,2.686346747000144],[125.41846764400012,2.66889069200009],[125.42188561300011,2.657212632000096],[125.42367597699999,2.64472077],[125.42107181100019,2.633937893000081]]],[[[106.2415470710001,2.738023179000094],[106.23780358200005,2.732855536000088],[106.2324324880001,2.741766669000043],[106.21949303500011,2.758368231000176],[106.21265709700016,2.78148021000014],[106.20435631600012,2.796128648000149],[106.19898522200006,2.809515692000062],[106.20329837300002,2.819077867000132],[106.21631920700004,2.822455145000148],[106.22624759200002,2.817043361000102],[106.23316491000006,2.806301174000012],[106.23780358200005,2.793768622000101],[106.2431746750001,2.760484117000104],[106.24341881600006,2.745428778000089],[106.2415470710001,2.738023179000094]]],[[[95.911875847,2.906236070000077],[95.91041100400017,2.873683986000017],[95.8907983730002,2.889105536000045],[95.8829858730002,2.883937893000123],[95.88306725400011,2.846380927000112],[95.91724694100017,2.860663153000118],[95.92774498800006,2.844549872000144],[95.96452884200002,2.827948309000092],[95.98170006600016,2.790350653000175],[96.00326582100016,2.777004299000083],[96.02833092500006,2.768459377000141],[96.09050540500019,2.757798570000034],[96.1067814460001,2.749660549000097],[96.1263126960001,2.73371002800009],[96.13086998800006,2.715277411000059],[96.10181725400017,2.675441799],[96.10279381600006,2.654608466000099],[96.11866295700005,2.666001695000161],[96.1297306650001,2.664780992000146],[96.13843834700018,2.65839264500012],[96.14714603000007,2.654608466000099],[96.15626061300006,2.648423570000134],[96.16187584700018,2.64777252800009],[96.16423587300014,2.654608466000099],[96.16089928500011,2.661200262000165],[96.14698326900012,2.670721747000158],[96.14372806100008,2.678778387000023],[96.15796959700018,2.680405992000132],[96.24610436300006,2.600002346000139],[96.25782311300006,2.591864325000117],[96.29070071700008,2.575181382000082],[96.30420983200005,2.572088934000092],[96.32129967500006,2.566148179000081],[96.33594811300006,2.552150783000115],[96.359141472,2.521429755000113],[96.36394290500019,2.508490302000112],[96.36784915500017,2.489691473000065],[96.37525475400017,2.473863023000121],[96.39014733200005,2.469671942000105],[96.39527428500006,2.477362372000115],[96.39698326900006,2.493109442000076],[96.39649498800006,2.524847723000121],[96.41065514400012,2.508937893000109],[96.41724694100016,2.506333726000108],[96.42432701900012,2.510565497000129],[96.44410241000006,2.4903832050001],[96.4650171230002,2.43781159100017],[96.47950280000005,2.414984442000147],[96.47510826900006,2.397853908000116],[96.48121178500017,2.378851630000113],[96.48121178500017,2.363999742000146],[96.45850670700011,2.359808661000116],[96.46583092500012,2.359808661000116],[96.43067467500006,2.348781643],[96.42090905000012,2.343003648000106],[96.411387566,2.343817450000117],[96.36963951900006,2.367254950000017],[96.35108483200005,2.355047919000128],[96.33497155000012,2.355454820000134],[96.32081139400006,2.363470770000077],[96.30762780000006,2.374090887000122],[96.31283613400015,2.378648179000066],[96.3226017590001,2.389797268000081],[96.32813561300011,2.394517320000176],[96.30616295700005,2.405096747000144],[96.28516686300006,2.436428127000099],[96.23991946700019,2.44867584800015],[96.06568444100004,2.579413153000019],[96.04265384200008,2.592027085000083],[96.02027428500006,2.600002346000139],[96.01099694100017,2.600897528000132],[95.98609459700006,2.600002346000139],[95.9806421230002,2.602687893000109],[95.971934441,2.612209377000028],[95.9650985040001,2.614243882000054],[95.96127363400008,2.607123114000089],[95.95801842500005,2.602240302000112],[95.95508873800011,2.600002346000139],[95.94752037900017,2.598049221000096],[95.93995201900012,2.59516022300015],[95.93140709700012,2.595607815000065],[95.9114689460001,2.610296942000147],[95.89210045700011,2.615627346000124],[95.88306725400011,2.620428778000103],[95.878184441,2.628566799000041],[95.87777754000008,2.637111721000139],[95.87476647199999,2.645819403000047],[95.86255944100006,2.654608466000099],[95.79053795700011,2.654608466000099],[95.7853296230002,2.660589911000031],[95.7874455090001,2.674058335000097],[95.79428144600016,2.696234442000076],[95.7889103520001,2.70400625200007],[95.75896243600019,2.724107164000031],[95.76156660200009,2.739935614000145],[95.74878991000016,2.749904690000136],[95.7351994150001,2.757879950000017],[95.7356876960001,2.767889716000084],[95.7400822270001,2.778062242000132],[95.7278751960001,2.779242255000057],[95.71021569100017,2.777492580000071],[95.69800866,2.778753973000079],[95.69263756600006,2.792059637000179],[95.69263756600006,2.812811591000084],[95.69955488400015,2.831773179000095],[95.71485436300011,2.84015534100007],[95.76872806100008,2.840806382000025],[95.78003991000006,2.846380927000112],[95.78150475400011,2.855047919000029],[95.776621941,2.86098867400014],[95.7698673840001,2.864894924000126],[95.76636803500011,2.867499091000127],[95.76677493600019,2.878119208000072],[95.77182050900015,2.895453192000061],[95.77320397199999,2.905015367000061],[95.78467858200005,2.924953518000137],[95.78687584700006,2.932684637000136],[95.79151451900006,2.942531643000066],[95.80152428500017,2.937567450000031],[95.81104576900005,2.92743561400006],[95.81413821700002,2.922105210000012],[95.88404381600017,2.919012762000108],[95.911875847,2.906236070000077]]],[[[108.8458764980002,2.850653387000122],[108.84245853000019,2.846380927000112],[108.82960045700005,2.847601630000128],[108.818125847,2.855902411000031],[108.80014082100014,2.873683986000017],[108.78296959700006,2.882269598000107],[108.77588951900006,2.888006903000175],[108.77515709700006,2.895086981000148],[108.77588951900006,2.89594147300015],[108.79688561300011,2.90766022300005],[108.81430097700009,2.921454169000057],[108.82927493600002,2.936265367000033],[108.8362736340001,2.947577216000099],[108.84083092500006,2.960109768000095],[108.84245853000019,2.973618882000082],[108.855723504,3.003363348],[108.88135826900005,3.002997137000165],[108.89861087300008,2.98285553600013],[108.88624108200004,2.953111070000034],[108.88412519600016,2.941636460000083],[108.89226321700006,2.903876044000029],[108.88965905000006,2.888006903000175],[108.88355553500017,2.883978583000115],[108.86280358200005,2.877142645000106],[108.85547936300006,2.873683986000017],[108.85173587300002,2.867661851000179],[108.8458764980002,2.850653387000122]]],[[[107.76823978000019,2.979071356000105],[107.75611412900015,2.978461005000057],[107.74512780000012,2.983547268],[107.751231316,3.012030341000084],[107.77295983200011,3.025295315000108],[107.7962345710001,3.025539455000157],[107.80713951900006,3.014878648000121],[107.81324303500017,2.994940497000129],[107.81120853000002,2.986802476000036],[107.76823978000019,2.979071356000105]]],[[[105.7781681650001,2.97760651200015],[105.78492272200016,2.977362372000101],[105.790293816,2.981594143000123],[105.79224694100016,2.98826732000009],[105.79460696700014,2.994533596000124],[105.802012566,2.997259833000101],[105.81348717500006,2.996039130000085],[105.8440047540001,2.988470770000049],[105.85328209700005,2.983547268],[105.84693444099999,2.969916083000044],[105.83961022199999,2.969916083000044],[105.83961022199999,2.977362372000101],[105.83334394600016,2.977362372000101],[105.8118595710001,2.90448639499999],[105.802012566,2.898179429000123],[105.78891035200016,2.907171942000062],[105.78142337300007,2.90497467700007],[105.77556399800002,2.898504950000145],[105.72974694100006,2.881170966000155],[105.73406009200002,2.873277085000012],[105.73894290500019,2.869289455000114],[105.74537194099999,2.867743231000162],[105.75416100400015,2.867499091000127],[105.76221764400012,2.86420319200009],[105.76514733200005,2.856919664000088],[105.76441491,2.849676825000145],[105.76099694100012,2.846380927000112],[105.74887129000008,2.844549872000144],[105.73658287900004,2.841253973000022],[105.72445722700016,2.839667059000163],[105.71265709700018,2.843166408000073],[105.70484459700018,2.850978908000144],[105.69947350400005,2.861639716000084],[105.696462436,2.873480536000059],[105.69556725400005,2.884588934000163],[105.6976017590001,2.896470445000119],[105.7068791020001,2.920803127000013],[105.711680535,2.943670966000099],[105.72217858200011,2.969224351000179],[105.72348066500008,2.977362372000101],[105.71534264400005,2.988999742000118],[105.69117272200005,3.002346096000039],[105.68189537899998,3.011460679000109],[105.69190514400012,3.020493882000039],[105.69556725400005,3.034165756999982],[105.69410241000017,3.048570054000123],[105.68873131600004,3.059963283000087],[105.70289147200006,3.066107488999989],[105.71029707100016,3.04848867400014],[105.71290123800006,3.045640367000104],[105.7151798840001,3.043890692000105],[105.73218834700018,3.03538646],[105.73707116000006,3.031968492000161],[105.73943118600019,3.015122789000159],[105.7368270190001,2.999579169000157],[105.738536004,2.988104559000035],[105.75416100400015,2.983547268],[105.76238040500019,2.98232656500015],[105.7781681650001,2.97760651200015]]],[[[106.23853600400017,3.226507880000141],[106.2591251960001,3.214748440000079],[106.27735436300011,3.196234442000147],[106.28516686300011,3.179103908000116],[106.28516686300011,3.08722565300009],[106.279063347,3.08722565300009],[106.2578231130001,3.113918361000103],[106.24187259200018,3.107855536000102],[106.23389733200004,3.11522044500019],[106.22608483200004,3.125555731000105],[106.21070397200006,3.128159898000106],[106.215098504,3.134833075000074],[106.21607506600017,3.140814520000077],[106.21599368600019,3.147162177000027],[106.21697024800007,3.154933986000117],[106.20582116000017,3.205715236000159],[106.207774285,3.225327867000118],[106.22380618600017,3.223781643000081],[106.23853600400017,3.226507880000141]]],[[[117.53028405000012,3.305650132000125],[117.52751712300004,3.290838934000149],[117.52149498800023,3.288072007000096],[117.51335696700002,3.290838934000149],[117.50359134200018,3.292669989000131],[117.47217858200017,3.293605861000117],[117.4619246750001,3.292669989000131],[117.453379754,3.28925202000012],[117.44027754000004,3.280015367000075],[117.43392988400004,3.278998114000018],[117.4170028000001,3.28872304900014],[117.41391035200004,3.304836330000114],[117.42090905000013,3.322414455000143],[117.43336022200006,3.336411851000108],[117.44988040500013,3.34393952],[117.46843509200012,3.345282294000071],[117.48707116,3.34145742400014],[117.50359134200018,3.333644924000154],[117.52084394599997,3.324530341000155],[117.52784264400006,3.317368882000125],[117.53028405000012,3.305650132000125]]],[[[106.29200280000012,3.316555080000114],[106.29395592500006,3.281073309000035],[106.29200280000012,3.271551825000117],[106.28565514400006,3.263861395000021],[106.2815861340001,3.267523505000056],[106.2796330090001,3.277655341000027],[106.279063347,3.288967190000093],[106.27670332100014,3.292385158000101],[106.27173912899998,3.293524481000134],[106.26685631600006,3.292385158000101],[106.26465905000005,3.288967190000093],[106.26547285200016,3.281805731000063],[106.275157097,3.254217841000127],[106.28028405000012,3.247503973],[106.28288821700014,3.240871486000117],[106.279063347,3.230617580000015],[106.23047936300006,3.257961330000072],[106.2353621750001,3.262640692],[106.23682701900005,3.268540757000124],[106.23682701900005,3.285223700000159],[106.24675540500017,3.306341864000075],[106.24976647200018,3.326646226000164],[106.25489342500012,3.345160223],[106.2708439460001,3.36098867400004],[106.29200280000012,3.368150132000068],[106.29737389400005,3.358303127000141],[106.29200280000012,3.316555080000114]]],[[[117.659922722,3.255275783000087],[117.64844811300017,3.246039130000042],[117.63795006600017,3.248724677000112],[117.63331139400016,3.268215236000103],[117.62484785200003,3.283270575000117],[117.5717879570001,3.313137111000017],[117.55640709700005,3.331854559000078],[117.54363040500002,3.354803778000147],[117.5346785820001,3.379380601000079],[117.53126061300004,3.403143622000158],[117.5415145190001,3.428452867000118],[117.56666100400011,3.438421942000105],[117.62525475400005,3.437689520000077],[117.64047285199999,3.436509507000054],[117.65699303500017,3.433539130000128],[117.67156009200018,3.426988023000064],[117.68165123800006,3.415513414000102],[117.68392988400015,3.399603583000086],[117.68197675900004,3.37750885600002],[117.6772567070001,3.356431382000082],[117.66537519600014,3.329291083000072],[117.66732832099997,3.271551825000117],[117.659922722,3.255275783000087]]],[[[117.89600670700005,3.468410549000069],[117.89128665500006,3.455633856000119],[117.87745201900017,3.459947007000039],[117.82618248800023,3.494086005000128],[117.8188582690001,3.511623440000065],[117.78549238400015,3.538478908000144],[117.77759850400015,3.55841705900005],[117.78492272200018,3.581976630000085],[117.80372155000012,3.591050523000092],[117.82699629000015,3.58808014499999],[117.847911004,3.575425523000106],[117.86304772200012,3.559027411000102],[117.87663821700006,3.539780992000061],[117.88721764400012,3.518947658000073],[117.89389082100014,3.497503973000136],[117.89551842500008,3.486273505000127],[117.89600670700005,3.468410549000069]]],[[[117.50619550899998,3.502142645000063],[117.5139266290001,3.495306708000143],[117.51710045700015,3.486273505000127],[117.51726321700015,3.477036851000079],[117.49675540500006,3.455552476000136],[117.45582116000006,3.464260158000129],[117.37305748800011,3.497503973000136],[117.28760826900006,3.497503973000136],[117.27076256600017,3.500189520000106],[117.25489342500023,3.507066148000035],[117.24089603000017,3.516180731000105],[117.22974694100004,3.525376695000091],[117.22201582100016,3.535549221000124],[117.21778405000012,3.547837632000082],[117.21802819100017,3.560288804000109],[117.22413170700017,3.570990302000041],[117.2329207690001,3.578680731000148],[117.24447675900014,3.586493231000134],[117.25709069100006,3.592027085000069],[117.26840254000004,3.592922268000152],[117.27857506600006,3.58852773600016],[117.29712975400015,3.575873114000103],[117.30795332100016,3.573187567000033],[117.39372806100019,3.566392320000176],[117.40821373800016,3.55609772299999],[117.43531334700018,3.524603583000072],[117.45167076900012,3.517971096000096],[117.46176191500015,3.515936591000155],[117.48210696700006,3.506984768000052],[117.50619550899998,3.502142645000063]]],[[[125.62728925900014,3.518215236000131],[125.63892662900015,3.514349677000126],[125.64437910200003,3.514878648000106],[125.64698326900012,3.492010809000021],[125.65251712300004,3.469631252000084],[125.65552819100006,3.461737372000115],[125.66342207100004,3.446112372000129],[125.66578209700005,3.438788153000118],[125.66456139400023,3.430894273000149],[125.65951582100004,3.424790756999982],[125.62435957100016,3.397650458000143],[125.6171981130001,3.395086981000048],[125.60271243600009,3.39809804900014],[125.5991317070001,3.40550364800012],[125.59839928500007,3.415472723000121],[125.5930281910001,3.42609284100007],[125.57203209700006,3.438137111000074],[125.52418053500004,3.450588283000087],[125.50733483200023,3.463324286000145],[125.50505618600008,3.480780341000099],[125.51392662899998,3.529120184000121],[125.51758873800021,3.539048570000034],[125.52076256599999,3.544012762000079],[125.52100670700005,3.576971747000144],[125.51734459699999,3.582342841000098],[125.4936629570001,3.594387111000117],[125.44214928499999,3.637762762000164],[125.43051191500003,3.651353257000125],[125.42115319100019,3.668036200000159],[125.41651451900023,3.68756745000006],[125.41846764400012,3.709784247000101],[125.44206790500003,3.736558335000026],[125.47779381600016,3.730780341000141],[125.51295006600006,3.707912502000141],[125.53451582100003,3.683050848000093],[125.569997592,3.628119208000101],[125.57545006600017,3.610785223000121],[125.5745548840001,3.604396877000013],[125.57300866000006,3.598456122000158],[125.57260175900004,3.59125397300005],[125.57545006600017,3.580633856000091],[125.57976321700008,3.575873114000103],[125.59652753999997,3.560980536000145],[125.60352623800006,3.552720445000148],[125.61378014400013,3.525376695000091],[125.61654707100016,3.523016669000043],[125.62728925900014,3.518215236000131]]],[[[126.83791507200007,3.743390532000177],[126.81153026000005,3.731861627000086],[126.76538184400006,3.772892250000084],[126.73901235499996,3.823800694000084],[126.74399309000009,3.853385379000116],[126.7802656060002,3.843554032000142],[126.81158808600004,3.823865680000139],[126.8330052150001,3.795958589000093],[126.84288583400004,3.779539954000156],[126.85605696000007,3.758195233000051],[126.83791507200007,3.743390532000177]]],[[[117.76677493600006,3.87400950700011],[117.78760826900023,3.866685289000188],[117.80738366000017,3.856146552000141],[117.82911217500022,3.841253973000093],[117.84424889400023,3.827541408000158],[117.85287519600014,3.81240469000015],[117.84620201900012,3.799139716000127],[117.83155358200011,3.798081773000163],[117.81226647200006,3.804673570000148],[117.78402753999998,3.819647528000174],[117.76954186300023,3.831244208000101],[117.74463951900012,3.857896226000136],[117.72950280000013,3.868068752000084],[117.73617597700016,3.867987372000102],[117.75521894600016,3.873358466000155],[117.76295006600016,3.874497789000187],[117.76677493600006,3.87400950700011]]],[[[126.69608857300003,3.812256189000124],[126.6779236450001,3.812235590000114],[126.6696860340002,3.854956748000105],[126.66143107800012,3.8976769020001],[126.6663914840001,3.930547457000131],[126.64821454700008,3.951896161000121],[126.62672243600005,3.965031270000153],[126.620095856,3.991323517000168],[126.61346434300006,4.025835761000138],[126.61510771900024,4.043914712000131],[126.64322211600019,4.027484228000105],[126.65654675900012,3.981478084000103],[126.70107204300005,3.933851241000099],[126.71262861800002,3.920714118000177],[126.7142758470001,3.901001649000122],[126.70105399100017,3.879630668000146],[126.68785141700006,3.853330733000121],[126.69608857300003,3.812256189000124]]],[[[117.70557701900022,3.987494208000143],[117.66529381600017,3.98305898600016],[117.62029056100006,4.015326239000103],[117.59449303500006,4.063869533000158],[117.61280358200011,4.108221747000101],[117.64633222700016,4.140814520000148],[117.66114342500012,4.149237372000115],[117.67359459700006,4.14061107000019],[117.69874108200024,4.111314195000176],[117.74122155000006,4.08828359600011],[117.75001061300017,4.080308335000069],[117.753184441,4.05182526200015],[117.74105879000003,4.025620835000112],[117.70557701900022,3.987494208000143]]],[[[117.70360790399396,4.163414541993006],[117.73807146200012,4.157241908000088],[117.78357224700007,4.157241908000088],[117.8525573090002,4.157241908000088],[117.90703902788991,4.15668301495252],[117.91211998800023,4.14492422100011],[117.91822350400004,4.100043036000102],[117.93482506600016,4.059881903000175],[117.90137780000012,4.036688544000157],[117.88705488400016,4.031927802000069],[117.87256920700011,4.031561591000141],[117.83855228000007,4.040187893000136],[117.81910241000017,4.068670966000155],[117.76270592500012,4.100734768000137],[117.73943118600017,4.132310289000131],[117.70360790399396,4.163414541993006]]],[[[108.30681399800002,4.086493231000134],[108.36540774800008,4.015448309000163],[108.39136803500016,3.997015692000133],[108.39616946700006,3.99091217700014],[108.39820397200018,3.976467190000093],[108.3977156910001,3.949367580000157],[108.40357506600006,3.936346747000172],[108.39283287900005,3.924383856000148],[108.3782658210001,3.915757554000137],[108.36597741000006,3.905462958000129],[108.36207116000006,3.888576565000136],[108.37208092500012,3.893540757000082],[108.38013756600017,3.891180731000134],[108.39616946700006,3.874823309000121],[108.40650475400015,3.884588934000149],[108.40626061300011,3.874335028000132],[108.38933353000007,3.822170315000108],[108.38257897200012,3.809881903000146],[108.341075066,3.756293036000144],[108.333262566,3.74042389500012],[108.32789147200006,3.724066473000107],[108.32398522200018,3.692694403000161],[108.31763756600006,3.68378327000012],[108.30005944100012,3.676255601000164],[108.28516686300006,3.674465236000088],[108.25359134200008,3.676988023000192],[108.23853600400005,3.676255601000164],[108.22364342500005,3.670396226000036],[108.19499759200019,3.652289130000028],[108.18384850400011,3.648342190000121],[108.17448978000007,3.651922919000015],[108.14226321700014,3.676255601000164],[108.1048283210001,3.690578518000151],[108.09449303500017,3.696193752000141],[108.11817467500012,3.7257754580001],[108.12183678500006,3.734605209999984],[108.12501061300011,3.747870184000092],[108.13233483200011,3.752183335000012],[108.1404728520001,3.751776434000178],[108.14600670700005,3.750718492000046],[108.1648869150001,3.757269598000121],[108.17139733200005,3.771470445000134],[108.17554772199999,3.785834052000112],[108.18702233200005,3.792303778000118],[108.2024845710001,3.792466539000173],[108.21363366,3.791164455000072],[108.224375847,3.785345770000035],[108.23853600400005,3.772406317000119],[108.26685631600017,3.738755601000108],[108.28003991000004,3.731512762000165],[108.277598504,3.745062567000133],[108.26238040500002,3.792303778000118],[108.2573348320001,3.795355536000102],[108.24887129000015,3.809312242000175],[108.24537194100006,3.81346263200011],[108.23682701900006,3.815008856000147],[108.20753014400012,3.81346263200011],[108.18034915500017,3.81683991100013],[108.1033634770001,3.845892645000106],[108.07154381600017,3.852240302000141],[108.06234785200009,3.855943101000178],[108.05298912900017,3.864650783000158],[108.04476972700009,3.877020575000103],[108.03003991000017,3.908880927000126],[108.02808678500006,3.917222398000191],[108.02613366000011,3.93292877800016],[108.02344811300011,3.941717841000127],[108.01685631600006,3.946763414000159],[108.00993899800001,3.951076565000079],[108.00513756600006,3.957464911000087],[108.00391686300006,3.964341539000187],[108.00513756600006,3.987494208000143],[108.00212649800008,3.9976260440001],[107.9954533210001,4.002264716000127],[107.98853600400011,4.005601304000052],[107.984629754,4.012030341000155],[107.98780358200004,4.020697333000058],[107.99724368600019,4.034247137000122],[108.02247155000006,4.063544012000136],[108.03223717500006,4.069973049000154],[108.04151451900006,4.070949611000131],[108.05054772200006,4.070786851000165],[108.06031334700016,4.074123440000093],[108.066661004,4.080145575000103],[108.08033287900004,4.097235419000143],[108.08423912900005,4.100775458000129],[108.09449303500017,4.10537344000015],[108.17025800900015,4.179429429000123],[108.18197675900014,4.204535223000107],[108.19556725400017,4.22036367400014],[108.21159915500007,4.235419012000165],[108.224864129,4.244818427000097],[108.24244225400005,4.230698960000069],[108.25025475400005,4.211249091000155],[108.25220787900015,4.15916575700011],[108.2573348320001,4.130560614000132],[108.27076256600017,4.112982489000103],[108.30681399800002,4.086493231000134]]],[[[116.57689416600013,4.332010600000089],[116.59022668500013,4.331132101000136],[116.61554813699998,4.344077047000155],[116.64179976500023,4.333870952000098],[116.66112675000018,4.334387716000123],[116.68004032400015,4.339917094000128],[116.71166630000013,4.366788838000132],[116.72944299300016,4.364463399000101],[116.76613326100012,4.338573507000163],[116.80447717300014,4.330072733000151],[116.88302535100009,4.344903870000095],[116.92426314300009,4.344955547000097],[116.98059045400008,4.329555970000115],[117.16466190600008,4.333147481000182],[117.17437707500001,4.338418477000118],[117.1903967690001,4.353017069000188],[117.20269576100023,4.356065979000121],[117.21716516200014,4.353430481000188],[117.22481327300014,4.346583354000146],[117.23060103400022,4.337178243000096],[117.23866255800013,4.326868795000095],[117.27555953000015,4.300978903000143],[117.35658817600003,4.259508566000179],[117.41291548700016,4.20008066800014],[117.43647994000015,4.185611267000112],[117.46417850800017,4.177911479000116],[117.49838830600018,4.172614644000163],[117.51461470500018,4.171942851000097],[117.54220992000009,4.173829040000101],[117.55833296800009,4.167653707000127],[117.56714928500018,4.159654039000188],[117.56706790500019,4.159613348000107],[117.55551191500017,4.151841539000102],[117.52833092500023,4.127508856000134],[117.5185653000001,4.122259833000143],[117.5078231130001,4.123480536000073],[117.37305748800011,4.169745184000163],[117.37387129000004,4.165269273000192],[117.3771264980001,4.154364325000116],[117.37924238400015,4.149237372000115],[117.3868921230002,4.142482815000079],[117.39616946700002,4.139634507000125],[117.403981967,4.135484117000189],[117.40739993600006,4.124986070000119],[117.40308678500007,4.120347398000192],[117.39633222699997,4.109686591000155],[117.39584394600003,4.098944403000147],[117.41041100400007,4.093939520000106],[117.43132571700019,4.092596747000115],[117.45069420700024,4.088120835000055],[117.46648196700006,4.079901434000149],[117.47559655000018,4.067328192000076],[117.46827233200017,4.052923895000106],[117.46827233200017,4.043524481000161],[117.47901451900005,4.039374091000127],[117.48894290500007,4.04295482000019],[117.49968509200018,4.049790757000125],[117.51042728000019,4.053941148000163],[117.52027428500004,4.049302476000136],[117.61378014400006,3.957098700000174],[117.62794030000012,3.947088934000177],[117.66146894600014,3.940171617000189],[117.67847741,3.932440497000172],[117.68930097699997,3.921454169000128],[117.68848717500012,3.909002997000101],[117.67269941500014,3.897772528000104],[117.65088951900012,3.895209052000098],[117.62810306100008,3.90037669500019],[117.59066816500003,3.926092841000141],[117.57007897200012,3.933172919000114],[117.5234481130001,3.936346747000172],[117.5234481130001,3.929510809000149],[117.55209394600016,3.927150783000101],[117.57943769600004,3.914536851000121],[117.603770379,3.89671458500014],[117.62330162900017,3.878607489000132],[117.63672936300006,3.872870184000163],[117.65235436300017,3.875148830000142],[117.66822350400017,3.880031643000108],[117.68165123800006,3.882269598000093],[117.689707879,3.878810940000093],[117.71908613400002,3.860581773000106],[117.72510826900012,3.850897528000147],[117.77719160200016,3.799139716000127],[117.78199303500006,3.787339585000069],[117.78288821700008,3.779038804000081],[117.77670332100008,3.774115302000112],[117.76050866000006,3.772406317000119],[117.70215905000022,3.778713283000144],[117.7148543630001,3.763576565000151],[117.73422285200004,3.752142645000021],[117.77719160200016,3.73773834800005],[117.81788170700023,3.730047919000114],[117.82927493600012,3.721584377000084],[117.82618248800023,3.70359935100005],[117.81723066499997,3.694810289000159],[117.78793378999998,3.678656317000104],[117.77719160200016,3.668850002],[117.76107832099999,3.643744208000086],[117.7485457690001,3.636948959999983],[117.65064537900005,3.627875067000062],[117.62867272200006,3.632066148000177],[117.58765709700006,3.650864976000136],[117.5683699880001,3.655096747000073],[117.546641472,3.664007880000099],[117.53370201900012,3.684759833000015],[117.52426191499998,3.708889065000108],[117.50855553500006,3.735907294000071],[117.50538170700005,3.74677155200014],[117.50359134200018,3.768744208000072],[117.49919681100019,3.775580145000077],[117.48894290500007,3.782171942000147],[117.46876061300021,3.792303778000118],[117.47999108200023,3.771185614000103],[117.48243248800006,3.764960028000132],[117.49195397200016,3.707098700000131],[117.49976647200018,3.692694403000161],[117.51335696700002,3.674872137000093],[117.5234481130001,3.650213934000092],[117.52426191499998,3.62543366100013],[117.50977623800021,3.607367255000113],[117.494395379,3.60834381700009],[117.45101972700014,3.629299221000124],[117.43091881599999,3.634670315],[117.30225670700004,3.633246161000117],[117.21949303500006,3.647365627000141],[117.09050540500019,3.645819403000104],[117.05567467500022,3.631903387000122],[117.03052819100017,3.594387111000117],[117.05396569100006,3.608303127000099],[117.08318118600009,3.616644598000064],[117.11426842500006,3.620591539000059],[117.16928144600014,3.621039130000056],[117.1992293630001,3.616278387000136],[117.21656334699999,3.603013414000031],[117.205332879,3.576971747000144],[117.19996178500006,3.554999091000042],[117.21029707100014,3.528876044000171],[117.22754967500018,3.505194403000147],[117.242849155,3.490668036000031],[117.25310306100008,3.486070054000081],[117.29070071700008,3.477036851000079],[117.30453535200014,3.469387111000131],[117.3120223320001,3.461127020000063],[117.32545006599999,3.43602122600015],[117.34498131600017,3.446519273000135],[117.37435957099997,3.448635158000144],[117.40495853000013,3.444484768000109],[117.42774498800023,3.43602122600015],[117.43572024800018,3.434312242000146],[117.44214928500001,3.435695705000128],[117.44654381600017,3.434759833000058],[117.44825280000006,3.42609284100007],[117.44825280000006,3.398504950000145],[117.44654381600017,3.385199286000116],[117.44190514400017,3.373032945000134],[117.43441816499998,3.364325262000065],[117.42432701900023,3.36098867400004],[117.41439863400002,3.356187242000132],[117.40552819100017,3.345607815000093],[117.39372806100019,3.326239325000159],[117.3868921230002,3.319891669000128],[117.37777753999998,3.313137111000017],[117.36963951900006,3.305243231000119],[117.366384311,3.295803127000027],[117.36312910199999,3.254868882000082],[117.35954837300012,3.244289455000128],[117.34473717500023,3.230454820000048],[117.33366946700019,3.232123114000061],[117.31177819100019,3.251695054000123],[117.28158613400014,3.263251044000057],[117.27377363400008,3.264797268000095],[117.26465905000005,3.261786200000174],[117.26441491000006,3.254339911000102],[117.26783287900005,3.244533596],[117.27003014400022,3.234320380000142],[117.28150475400015,3.22308991100013],[117.35271243600019,3.182806708000072],[117.37029056100002,3.177191473000065],[117.38990319100012,3.175197658000116],[117.43091881599999,3.175360419000085],[117.45394941500008,3.171210028000147],[117.45777428500016,3.160345770000063],[117.45411217500022,3.145168361000074],[117.45508873800011,3.128159898000106],[117.48170006600007,3.101263739000046],[117.52003014400005,3.098456122000172],[117.56373131600017,3.101874091000099],[117.60580488400004,3.09341054900014],[117.61719811300011,3.085882880000099],[117.62086022200008,3.079494533000073],[117.62322024800018,3.072455145000106],[117.6301375660001,3.062974351000179],[117.63428795700021,3.052394924000055],[117.62940514400006,3.042385158000158],[117.61963951900022,3.03489817900001],[117.60922285200006,3.031968492000161],[117.60084069100016,3.024969794000086],[117.57504316500015,2.992865302000112],[117.56495201900005,2.983547268],[117.58033287900005,2.978989976000122],[117.60157311300011,2.980658270000134],[117.62240644599997,2.986476955000015],[117.63672936300006,2.994126695000119],[117.65560957099999,2.997381903000161],[117.6754663420002,2.985785223000149],[117.6879988940001,2.97064850500007],[117.68506920700011,2.963080145000105],[117.66732832099997,2.959540106000134],[117.63054446700018,2.942328192000119],[117.61280358200011,2.936428127],[117.54379316499997,2.928941148000106],[117.54379316499997,2.922105210000012],[117.56739342500012,2.922552802000098],[117.64014733200004,2.908514716000141],[117.7363387380001,2.901597398000135],[117.72510826900012,2.886542059000121],[117.70427493600002,2.878973700000174],[117.68132571700008,2.873277085000012],[117.66431725400011,2.864081122000115],[117.6271264980002,2.836981512000094],[117.61963951900022,2.825506903000061],[117.63331139400016,2.812241929000123],[117.67351321700006,2.799261786000116],[117.71436608200011,2.794094143000123],[117.75220787900005,2.784613348000107],[117.78402753999998,2.758246161000031],[117.79200280000023,2.742336330000015],[117.79623457100017,2.723211981000119],[117.8007918630001,2.657171942000105],[117.80738366000017,2.638006903000132],[117.81625410200004,2.621527411000059],[117.82618248800023,2.607407945000119],[117.86703535200016,2.572699286000059],[117.88168378999997,2.551418361000088],[117.97901451900017,2.466538804000038],[117.98780358200021,2.456366278000174],[117.99968509200008,2.434271552000098],[118.00684655000012,2.425523179000109],[118.02409915500002,2.382025458],[118.03711998800011,2.363959051999984],[118.04468834700006,2.381537177000013],[118.06348717500012,2.366929429],[118.08220462300007,2.3374697940001],[118.0958764980002,2.304144598000022],[118.099375847,2.277818101000193],[118.09148196700002,2.262030341000141],[118.05779056100002,2.219956773000177],[118.04468834700006,2.208929755000142],[117.97559655000022,2.192084052000141],[117.95541425900005,2.182277736000103],[117.94125410199999,2.163153387000136],[117.93921959700018,2.143377997000115],[117.93523196700018,2.124172268000066],[117.91504967500016,2.106512762000136],[117.91472415500003,2.093491929000066],[117.8828231130001,2.095445054000109],[117.82618248800023,2.106512762000136],[117.84424889400023,2.08820221600017],[117.88209069100017,2.068060614000132],[117.90040123800021,2.049994208000115],[117.85987389400023,2.038275458000129],[117.82545006600012,2.036281643000095],[117.79151451900022,2.038275458000129],[117.75464928500018,2.046332098000079],[117.74073326900012,2.044989325000088],[117.75001061300017,2.03143952000012],[117.76465905000018,2.024969794000029],[117.8029077480002,2.021307684000149],[117.8188582690001,2.017157294000114],[117.83179772200006,2.005682684000163],[117.844004754,1.991441148000163],[117.85564212300018,1.983384507000139],[117.86719811300023,1.990464585000097],[117.87338300900004,1.990464585000097],[117.87476647200018,1.947495835000055],[117.87224368600008,1.924709377000113],[117.86353600400015,1.914740302000127],[117.85670006600017,1.909369207999987],[117.85726972700006,1.897650458000086],[117.862559441,1.885931708000086],[117.87037194099999,1.880601304000038],[117.88103274800002,1.882066148000092],[117.88396243600006,1.884100653000118],[117.88599694100017,1.88255442900008],[117.89389082100014,1.873765367000104],[117.90333092500006,1.857407945000176],[117.9118758470001,1.836859442000147],[117.92408287900018,1.819159247000144],[117.94483483200004,1.811712957999987],[117.9653426440001,1.808417059000121],[117.9809676440001,1.800767320000105],[117.99488366000017,1.791693427000098],[118.01059004000015,1.784369208000101],[118.03484134200002,1.784898179000081],[118.046153191,1.783107815000093],[118.0509546230002,1.774481512000179],[118.04932701900006,1.762030341000155],[118.04712975400001,1.752264716000127],[118.04786217500012,1.74355703300013],[118.05469811300023,1.733465887000165],[118.12671959700018,1.65468984600011],[118.185313347,1.631781317000105],[118.27125084700006,1.562730210000083],[118.31128991000018,1.541978257000096],[118.35279381600004,1.533596096000124],[118.36980228000002,1.522772528000047],[118.39421634200008,1.49701569200009],[118.41684004000004,1.491848049000097],[118.42505944100004,1.485744533000101],[118.41846764400016,1.47284577],[118.40365644599999,1.461737372000158],[118.399668816,1.454413153000147],[118.40479576900012,1.445217190000079],[118.41472415500002,1.440863348],[118.43824303500016,1.440578518000066],[118.44890384200015,1.435532945000119],[118.45101972700003,1.428452867000161],[118.45394941500015,1.403225002000099],[118.456309441,1.394598700000103],[118.46314537900007,1.394598700000103],[118.47624759200018,1.402044989000075],[118.49219811300011,1.395697333000143],[118.52393639400023,1.374172268000038],[118.53598066500015,1.370672919000128],[118.58228600400005,1.3673363300001],[118.61329186300006,1.351223049000126],[118.67514082100016,1.280422268000123],[118.7129012380001,1.26430898600006],[118.72925866000007,1.253851630000071],[118.75416100400018,1.229559637000179],[118.77637780000022,1.201971747000172],[118.78467858200013,1.181708075000074],[118.78052819100016,1.177313544000171],[118.77361087300008,1.175726630000142],[118.76710045700005,1.172674872000144],[118.76417076900023,1.164007880000071],[118.79786217500023,1.149969794000114],[118.80892988399998,1.139715887000179],[118.82618248800011,1.119696356000119],[118.8569442070001,1.058172919000143],[118.87086022200018,1.056301174000083],[118.87818444100017,1.055975653000161],[118.88770592500018,1.058172919000143],[118.89437910200004,1.06281159100017],[118.906504754,1.075384833000072],[118.91553795700021,1.078599351000122],[118.93392988400008,1.076076565000108],[118.98519941500004,1.05756256700009],[119.00098717500023,1.047919012000122],[119.00554446700019,1.037583726000122],[119.00318444100006,1.026312567000119],[118.99903405000012,1.014634507000125],[118.99756920700023,1.003607489000089],[119.00066165500002,0.999090887000122],[119.00635826900012,0.994859117000104],[119.01124108200007,0.988226630000142],[119.01172936300006,0.976263739000103],[119.00294030000012,0.9624697940001],[118.97055097699997,0.935736395],[118.95655358200023,0.912665106000119],[118.93995201900006,0.902085679],[118.86500084700002,0.86884186399999],[118.85132897200018,0.856919664000131],[118.84099368600006,0.829901434000177],[118.82837975399998,0.818101304000109],[118.81275475399998,0.809149481000091],[118.79818769599999,0.804917709999984],[118.78630618600002,0.804592190000051],[118.77426191500003,0.805731512000165],[118.76319420700007,0.809027411000116],[118.74170983200015,0.822170315000079],[118.71753991000006,0.828273830000157],[118.70582116000017,0.835923570000176],[118.68604576900024,0.846136786000116],[118.66277103000002,0.846380927000069],[118.63941491000004,0.840521552000126],[118.58318118600002,0.813666083000129],[118.57545006600004,0.808335679000081],[118.56527753999997,0.804022528000161],[118.55469811300023,0.807928778000075],[118.54395592500012,0.814520575000131],[118.53419030000005,0.818019924000126],[118.51417076900012,0.822007554000024],[118.47348066500004,0.838283596000053],[118.42839603000006,0.839992580000057],[118.418711785,0.837225653000175],[118.41098066499998,0.821844794000057],[118.40235436300011,0.813950914000159],[118.39193769599997,0.807603257000054],[118.38396243600009,0.804917709999984],[118.36719811300023,0.810370184000107],[118.35645592500012,0.823228257000039],[118.34685306100002,0.83901601800008],[118.33277428500011,0.852728583000015],[118.31690514400016,0.858832098000093],[118.18783613400004,0.875230210000097],[118.12907962300002,0.893011786000073],[118.09669030000012,0.908636786000059],[118.06918378999997,0.928778387000094],[118.04468834700006,0.955145575000103],[118.02849368600017,0.984523830000015],[118.00554446700014,1.051011460000026],[117.98951256600004,1.078599351000122],[117.97584069100012,1.088120835000126],[117.93677819100006,1.108140367000175],[117.9287215500001,1.116603908000044],[117.9240014980002,1.124986070000176],[117.91334069100004,1.124945380000099],[117.90162194100017,1.119859117000175],[117.89389082100014,1.113470770000148],[117.89096113400015,1.104193427000098],[117.892832879,1.094875393000151],[117.90137780000012,1.078599351000122],[117.93360436300006,1.038763739000146],[117.93799889400022,1.031480210000126],[117.97527103000003,0.983099677000041],[117.97974694100017,0.96621328300013],[117.98462975400018,0.926214911000088],[117.99293053500006,0.910793361000159],[117.99586022200005,0.906724351000108],[118.00318444100017,0.893744208000101],[118.00562584700012,0.891913153000132],[118.01417076900012,0.888128973000022],[118.01685631600002,0.88621653900006],[118.02475019600008,0.872788804000066],[118.03044681100006,0.858954169000157],[118.03402754000005,0.843329169000171],[118.03630618600019,0.820705471000025],[118.03296959700018,0.800238348000136],[118.02051842500025,0.791327216000113],[118.005218946,0.788763739000018],[117.993907097,0.788478908000158],[117.98267662899998,0.791327216000113],[117.97331790500019,0.79848867400014],[117.96241295700011,0.817084052000141],[117.95541425900005,0.825425523000121],[117.94743899800008,0.831122137000094],[117.93816165500012,0.835638739000146],[117.92725670700021,0.838690497000059],[117.91407311300011,0.839667059000035],[117.90251712300008,0.837469794000043],[117.89478600400005,0.832586981000148],[117.88933353000013,0.827704169000086],[117.88428795700004,0.825425523000121],[117.85035241000004,0.824286200000088],[117.82935631600012,0.820257880000028],[117.81128991000016,0.811753648000177],[117.78834069100016,0.79230377800009],[117.74317467500022,0.74054596600007],[117.72950280000013,0.715562242000132],[117.72486412900017,0.652655341000099],[117.71908613400002,0.636786200000159],[117.69581139400012,0.617092190000122],[117.68848717500012,0.606350002000113],[117.68441816500004,0.596380927000126],[117.67904707100008,0.574693101000136],[117.67481530000023,0.564764716000141],[117.62037194100006,0.502020575000159],[117.61280358200011,0.479071356000162],[117.6154891290001,0.469183661000059],[117.626231316,0.444037177],[117.6271264980002,0.434393622000115],[117.61931399800018,0.423895575000131],[117.60767662899998,0.417181708000101],[117.59538821700002,0.41229889500012],[117.58545983200023,0.407131252000113],[117.569509311,0.389064846000096],[117.55372155000006,0.349514065000065],[117.51726321700015,0.290961005000099],[117.51441491000017,0.28034088700015],[117.51596113400002,0.275295315000122],[117.51954186300011,0.271063544000114],[117.5234481130001,0.263088283000144],[117.52654056100008,0.24217357000019],[117.52312259200006,0.225775458000086],[117.5139266290001,0.211859442000105],[117.49097741,0.189886786000102],[117.4836531910001,0.178859768000137],[117.48015384200019,0.166489976000108],[117.48243248800006,0.15379466400006],[117.48829186300023,0.151109117000161],[117.49822024800001,0.15082428600013],[117.509125196,0.148586330000143],[117.51726321700015,0.1402041690001],[117.50684655000023,0.133042710000055],[117.4836531910001,0.124823309000064],[117.47559655000018,0.119086005],[117.46998131600016,0.108791408000073],[117.47055097700004,0.102199611000088],[117.47364342500012,0.095526434000135],[117.47559655000018,0.085598049000126],[117.47486412900005,0.074774481000048],[117.47364342500012,0.069240627000113],[117.47339928500017,0.064886786000116],[117.47559655000018,0.057603257000025],[117.48243248800006,0.054592190000022],[117.4921981130001,0.054632880000014],[117.49708092500005,0.051011460000126],[117.48910566500003,0.037176825000131],[117.50001061300011,0.033026434000092],[117.509043816,0.026027736000032],[117.51685631599999,0.015936591000141],[117.5234481130001,0.003078518000123],[117.52906334700016,-0.019463799999855],[117.53028405000012,-0.032321872999887],[117.52686608200011,-0.037896416999885],[117.52523847700016,-0.042046808],[117.512868686,-0.059136651999879],[117.50733483200011,-0.069634697999945],[117.49488365999999,-0.080336195999877],[117.48910566500003,-0.085707289999917],[117.4848738940001,-0.092217705999829],[117.46949303500017,-0.128838799999855],[117.46534264400023,-0.144463799999841],[117.4619246750001,-0.185723565999965],[117.45639082100003,-0.205498955999985],[117.43506920700023,-0.239678643999895],[117.43392988400004,-0.263848565999893],[117.44206790500002,-0.28191497199991],[117.45777428500016,-0.308200778999932],[117.47461998800011,-0.330254815999922],[117.48585045700011,-0.335870049999841],[117.49537194100016,-0.333754165],[117.49708092500005,-0.350274346999981],[117.49398847699999,-0.372653903999918],[117.48910566500003,-0.38738372199991],[117.46753991000006,-0.411553643999909],[117.45753014400022,-0.427015882999839],[117.45850670700013,-0.438897393999895],[117.46648196700006,-0.457289320999934],[117.46241295700011,-0.47991301899998],[117.45215905000006,-0.501722914999945],[117.44141686300004,-0.517754815999851],[117.44141686300004,-0.525160414999917],[117.47494550900002,-0.509047132999853],[117.595957879,-0.422621351999865],[117.6155705090001,-0.415215752999956],[117.6301375660001,-0.418715101999865],[117.63884524800008,-0.436455987999864],[117.63160241000017,-0.447523695999976],[117.61931399800018,-0.456231377999885],[117.61280358200011,-0.46689218499999],[117.60547936300011,-0.476169528999861],[117.5704858730002,-0.48503997199991],[117.55811608200005,-0.490411065999865],[117.55453535199999,-0.502699476999837],[117.5895288420002,-0.511000257999896],[117.59896894600004,-0.521416924999897],[117.59750410200014,-0.559502862999963],[117.59351647200016,-0.574639580999872],[117.58073978,-0.592950127999927],[117.57846113400016,-0.596937757999825],[117.57390384200019,-0.599053643999838],[117.54297936300004,-0.600681247999859],[117.53614342500022,-0.602959893999824],[117.53028405000012,-0.607110283999859],[117.53028405000012,-0.613946221999882],[117.54712975399998,-0.619724216999842],[117.56519616000004,-0.622816664999917],[117.57593834700005,-0.629978122999873],[117.5717879570001,-0.648125908999873],[117.55990644600014,-0.658298434999906],[117.54615319100006,-0.665622653999918],[117.53988691499998,-0.674493096999953],[117.55128014400023,-0.68962981599995],[117.539317254,-0.694512627999842],[117.52751712300004,-0.69394296699987],[117.49976647200018,-0.68962981599995],[117.48585045700011,-0.692803643999838],[117.48292076900007,-0.699639580999857],[117.48853600400018,-0.706475518999952],[117.49976647200018,-0.709567966999856],[117.52068118600002,-0.712823174999897],[117.57504316500015,-0.727308851999851],[117.60238691500004,-0.730645440999879],[117.61361738400004,-0.734063408999887],[117.62208092500018,-0.743096612999892],[117.62680097700017,-0.755954684999907],[117.6271264980002,-0.770928643999937],[117.62273196700019,-0.781508070999905],[117.61500084700012,-0.786065362999935],[117.58570397200018,-0.792413018999881],[117.57154381600006,-0.79078541499986],[117.56495201900005,-0.791436455999985],[117.55795332099999,-0.795668226999837],[117.54460696700018,-0.808851820999877],[117.53760826900012,-0.812595309999906],[117.48910566500003,-0.798923434999878],[117.49350019600004,-0.827813408999887],[117.45818118600019,-0.820489190999965],[117.44825280000006,-0.842950127999885],[117.45191491000006,-0.866469007999839],[117.44654381600017,-0.877048434999892],[117.42774498800023,-0.880791924999826],[117.41285241000017,-0.874932549999883],[117.39087975400017,-0.848565362999878],[117.37924238400015,-0.839288018999838],[117.37468509200014,-0.855889580999971],[117.36378014400023,-0.878513278999861],[117.35035241000006,-0.8969052059999],[117.33904056100008,-0.901299737999963],[117.33277428499999,-0.891778252999885],[117.33082116000016,-0.877699476999851],[117.33220462300001,-0.850192966999899],[117.32789147200005,-0.84148528399983],[117.30111738400014,-0.816013278999918],[117.28150475400015,-0.809177341999899],[117.26742597700004,-0.828301690999879],[117.25928795700021,-0.858330987999835],[117.25652103000007,-0.884209893999923],[117.25033613399998,-0.90927499799993],[117.23511803499999,-0.92449309699991],[117.19507897200018,-0.949151299999897],[117.16391035199997,-0.981703382999868],[117.06519616000004,-1.121840101999851],[117.03923587300002,-1.137790622999859],[117.03288821700012,-1.159356377999856],[117.0296330090001,-1.184177341999913],[117.02369225400005,-1.202894789999888],[117.00782311300011,-1.216403903999861],[116.98340905000016,-1.22966887799997],[116.95769290500003,-1.239922783999916],[116.85181725400005,-1.264418226999851],[116.82984459700002,-1.265801690999837],[116.81983483200021,-1.26140715899993],[116.81739342500008,-1.247491143999866],[116.81763756600006,-1.220391533999845],[116.82935631599999,-1.204034112999821],[116.83073978000017,-1.195000908999901],[116.81763756600006,-1.189385674999912],[116.81137128999998,-1.192640882999853],[116.80518639400012,-1.201348565999851],[116.79712975400015,-1.217217705999872],[116.79322350400017,-1.203301690999893],[116.79249108200024,-1.171156507999839],[116.78744550900002,-1.158868096999868],[116.74634850400005,-1.110528252999856],[116.743337436,-1.085381768999881],[116.75684655000012,-1.023695570999948],[116.74317467500018,-1.024834893999895],[116.72885175899998,-1.044040622999844],[116.720388217,-1.07097747199991],[116.7153426440001,-1.12476978999986],[116.71949303500007,-1.13632577899989],[116.74935957100004,-1.168877862999864],[116.75709069100006,-1.18222421699987],[116.75757897200006,-1.188409112999835],[116.75391686300006,-1.193454684999864],[116.74935957100004,-1.202894789999888],[116.73796634200006,-1.215020440999879],[116.73609459700013,-1.220961195999905],[116.77735436300023,-1.23398202899989],[116.77906334700006,-1.236423434999921],[116.7832137380001,-1.237562757999868],[116.78777103000006,-1.239434502999828],[116.79086347700003,-1.243910414999974],[116.79086347700003,-1.249118747999887],[116.7889103520001,-1.254489841999842],[116.77906334700006,-1.273858330999857],[116.76661217500022,-1.287692966999856],[116.76303144600016,-1.298516533999859],[116.76742597700014,-1.344333591999856],[116.762380405,-1.365329684999892],[116.73975670700017,-1.37428150799991],[116.71900475400017,-1.377211196000019],[116.60971113400015,-1.420586846999896],[116.56763756600019,-1.446547132999896],[116.53923587300008,-1.481215101999879],[116.53711998800024,-1.525648695999891],[116.54460696700014,-1.540459893999866],[116.55355879000014,-1.551364841999927],[116.56120853000007,-1.563734632999882],[116.56446373800011,-1.583428643999909],[116.55746504000015,-1.606215101999851],[116.54021243600003,-1.62273528399983],[116.517832879,-1.634372653999918],[116.42994225400004,-1.659356377999856],[116.3907983730002,-1.684502862999835],[116.34571373800021,-1.695977471999867],[116.32488040500007,-1.703871351999851],[116.27198326900012,-1.749281507999925],[116.26335696700018,-1.761895440999908],[116.23194420700005,-1.777113539999888],[116.22242272200016,-1.789646091999899],[116.24293053500006,-1.805759372999873],[116.26099694100006,-1.808526299999826],[116.28589928500017,-1.807061455999872],[116.30787194100012,-1.800876559999977],[116.31739342500013,-1.789239190999893],[116.32105553500004,-1.782810153999961],[116.33008873800016,-1.778090101999865],[116.35141035200004,-1.772149346999853],[116.35743248800023,-1.772230726999837],[116.3667098320001,-1.778090101999865],[116.37256920700024,-1.778985283999859],[116.37281334700019,-1.776950778999932],[116.379161004,-1.76734791499986],[116.37956790500017,-1.765313408999916],[116.40259850400017,-1.763929945999934],[116.42481530000023,-1.766371351999965],[116.44166100400005,-1.776055596999839],[116.44825280000012,-1.796075127999899],[116.43287194100016,-1.821872653999932],[116.41358483200021,-1.847263278999947],[116.45183353000017,-1.883965752999871],[116.46656334700018,-1.907484632999825],[116.450450066,-1.957452080999857],[116.46314537900015,-2.0199520809999],[116.45785566499998,-2.04241301899998],[116.43848717500005,-2.066989841999913],[116.42693118600006,-2.07634856599985],[116.35889733200011,-2.093682549999841],[116.33668053500004,-2.108168226999965],[116.31218509200019,-2.129001559999864],[116.29200280000005,-2.15097421699987],[116.2832137380001,-2.169366143999909],[116.2893986340001,-2.169366143999909],[116.33716881599999,-2.146091403999904],[116.37086022199999,-2.137872002999899],[116.38624108200005,-2.152276299999869],[116.39283287900007,-2.191094658999972],[116.41065514400012,-2.203789971999939],[116.4370223320001,-2.198337497999916],[116.5006616550002,-2.169691664999931],[116.517832879,-2.1664364559999],[116.53093509200006,-2.169366143999909],[116.53158613400004,-2.177829684999864],[116.53541100400004,-2.195245049999841],[116.54273522200008,-2.209242445999891],[116.55445397200005,-2.207207940999865],[116.56625410199997,-2.197686455999872],[116.58326256600016,-2.187676690999965],[116.59864342500012,-2.183851820999863],[116.60547936300023,-2.193617445999905],[116.60328209700008,-2.224216404],[116.57292728000007,-2.36280689899985],[116.54004967500005,-2.512872002999913],[116.51791425899997,-2.553887627999842],[116.48243248800011,-2.560316664999931],[116.47315514400023,-2.547458592],[116.46810957100003,-2.526462497999872],[116.46094811300006,-2.507012627999885],[116.44459069100017,-2.498304945999976],[116.4189559250001,-2.4965145809999],[116.4067488940001,-2.498304945999976],[116.401621941,-2.500746351999837],[116.39185631600016,-2.509209893999866],[116.38624108200005,-2.511976820999919],[116.37973066500015,-2.511895440999936],[116.37427819100004,-2.509372653999932],[116.36963951900012,-2.506442966999913],[116.3657332690001,-2.505140882999825],[116.33326256600004,-2.511163018999909],[116.32105553500004,-2.511976820999919],[116.3100692070001,-2.516289971999839],[116.30420983200023,-2.525648695999863],[116.30307050900004,-2.535088799999883],[116.30713951900006,-2.539320570999905],[116.32374108200021,-2.547539971999981],[116.3208113940001,-2.566989841999899],[116.29688561300023,-2.608168226999865],[116.31055748800006,-2.615004164999888],[116.3415633470001,-2.566582940999893],[116.36622155000012,-2.556735934999878],[116.38200931100008,-2.557712497999844],[116.39307701900006,-2.573988539999874],[116.39039147200012,-2.589043877999899],[116.37061608200004,-2.63290780999985],[116.3657332690001,-2.652601820999891],[116.36996504000003,-2.82390715899993],[116.36475670700023,-2.861423434999864],[116.35141035200004,-2.896172783999916],[116.334239129,-2.925551039999917],[116.28760826900012,-2.987074476999965],[116.26335696700018,-3.005466404],[116.24382571700014,-3.009047132999896],[116.228770379,-3.001641533999901],[116.21900475400015,-2.985039971999939],[116.21461022200018,-2.93865325299997],[116.21241295700011,-2.93035247199991],[116.20818118600006,-2.922946873],[116.19996178500017,-2.915215752999913],[116.18360436300016,-2.90935637799987],[116.17408287900015,-2.903008721999925],[116.16570071700019,-2.889092705999943],[116.15919030000012,-2.867445570999862],[116.15503991000018,-2.843926690999908],[116.153575066,-2.82390715899993],[116.15064537900017,-2.816338799999897],[116.14454186300011,-2.816827080999886],[116.13770592500006,-2.823418877999941],[116.13306725400015,-2.834161065999865],[116.13396243600008,-2.840020440999822],[116.13965905000023,-2.857842705999971],[116.13982181100017,-2.868910414999917],[116.130625847,-2.889906507999953],[116.11744225400015,-2.909763278999876],[116.11133873800006,-2.930271091999927],[116.12281334700005,-2.95387135199995],[116.12671959699999,-2.966078382999839],[116.11963951900016,-2.97649504999984],[116.10987389400012,-2.986586195999976],[116.10572350400017,-2.997979424999855],[116.11019941500015,-3.006280205999843],[116.11833743600006,-3.005303643999866],[116.13306725400015,-2.997979424999855],[116.16138756600013,-3.003513278999961],[116.16749108200013,-3.014825127999856],[116.16732832100004,-3.030694268999881],[116.17750084700018,-3.04989999799993],[116.1920679050002,-3.063571872999873],[116.25489342500022,-3.108656507999854],[116.26726321700019,-3.124200127999856],[116.26490319100006,-3.136895440999908],[116.2192488940001,-3.146661065999936],[116.18018639400024,-3.161309502999856],[116.16724694100004,-3.156345309999906],[116.16334069100006,-3.172946872999873],[116.18327884200002,-3.208265882999896],[116.1876733730002,-3.232028903999975],[116.18132571700019,-3.255954684999864],[116.16846764400017,-3.265801690999879],[116.14966881599999,-3.270684502999856],[116.12623131600004,-3.279880467],[116.12769616000011,-3.264825127999984],[116.13428795700005,-3.254327080999843],[116.14356530000012,-3.251560153999876],[116.153575066,-3.259372653999861],[116.16065514400006,-3.253024997999929],[116.16724694100004,-3.245700778999918],[116.172129754,-3.226169528999847],[116.15601647200006,-3.225681247999858],[116.12281334700005,-3.238213799999869],[116.11052493600008,-3.246189059999906],[116.10027103000006,-3.264906507999967],[116.08521569100004,-3.307061455999829],[116.02344811300023,-3.411797783999972],[116.00953209700006,-3.451104424999897],[115.99976647200012,-3.540134372999972],[115.98951256600017,-3.582696221999839],[115.96794681100008,-3.608819268999895],[115.94890384200008,-3.614190362999849],[115.882578972,-3.614922783999887],[115.85816491000016,-3.620212497999943],[115.83619225400017,-3.633233330999843],[115.796641472,-3.669610283999915],[115.75879967500018,-3.696954033999901],[115.58334394600016,-3.780531507999854],[115.3136499360002,-3.883070570999834],[115.060313347,-3.985772393999866],[114.87598717500006,-4.070977471999839],[114.7129012380001,-4.170830987999921],[114.66431725400015,-4.184177341999841],[114.62476647199999,-4.170505466999899],[114.60661868600017,-4.132256768999866],[114.61060631600016,-4.088799737999906],[114.63160241000006,-4.01287200299997],[114.61133873800013,-3.926364841999899],[114.60425866000017,-3.855157158999887],[114.61109459700019,-3.683851820999919],[114.59644616000016,-3.637872002999956],[114.53687584700006,-3.563409112999906],[114.52230879000004,-3.519301039999903],[114.52393639400023,-3.475844007999953],[114.55030358200023,-3.348077080999843],[114.52906334700006,-3.357354424999883],[114.51172936300006,-3.367608330999914],[114.50001061300006,-3.382745049999912],[114.48829186300011,-3.488376559999864],[114.47681725400005,-3.500664971999825],[114.45150800900004,-3.498711846999881],[114.41244550900015,-3.485284112999878],[114.36793053500006,-3.458591403999947],[114.28882897200006,-3.424493096999939],[114.2722274100001,-3.413262627999856],[114.26351972700004,-3.397556247999887],[114.26514733200023,-3.378350518999838],[114.27540123800017,-3.362399998],[114.29297936300011,-3.355564059999907],[114.301931186,-3.345798434999949],[114.32374108200005,-3.279880467],[114.350840691,-3.248955987999878],[114.35962975400015,-3.23447031],[114.3647567070001,-3.211521091999927],[114.32406660199999,-3.247979424999982],[114.28956139400006,-3.306410414999874],[114.24805748800011,-3.360284112999821],[114.18653405000023,-3.382256768999838],[114.15316816500014,-3.378350518999838],[114.1258244150001,-3.367852471999868],[114.10824629000015,-3.347344658999986],[114.10401451900022,-3.313897393999852],[114.12256920700023,-3.216078382999967],[114.11768639400017,-3.190362237999835],[114.11231530000012,-3.198907158999944],[114.1088973320001,-3.208428643999852],[114.09929446700014,-3.253350518999866],[114.09717858200011,-3.276055596999896],[114.09400475400004,-3.281182549999826],[114.08033287899998,-3.291273695999877],[114.04200280000006,-3.355564059999907],[113.98064212300008,-3.385023695999891],[113.94800866000006,-3.394789321],[113.88550866000011,-3.43059661299985],[113.81470787900017,-3.455254815999922],[113.71314537900017,-3.472588799999912],[113.63249759200006,-3.456801039999959],[113.62476647200006,-3.382256768999838],[113.6375431650001,-3.341729424999897],[113.64380944100004,-3.298435154],[113.64210045700023,-3.255954684999864],[113.62037194100006,-3.185316664999903],[113.6115014980002,-3.174248955999872],[113.59351647200018,-3.170017184999849],[113.50806725400005,-3.170017184999849],[113.48617597700004,-3.17473723799985],[113.4663192070001,-3.184258721999853],[113.45215905000006,-3.199395440999851],[113.44662519600016,-3.221123955999914],[113.43970787900017,-3.238457940999908],[113.42302493600002,-3.247247002999956],[113.36573326900006,-3.252862237999878],[113.35279381600017,-3.249281507999811],[113.34587649800008,-3.237888278999932],[113.34359785199999,-3.21461354],[113.33961022200006,-3.200290622999844],[113.32935631600012,-3.18279387799997],[113.31592858200011,-3.168064059999978],[113.30274498800016,-3.162530205999871],[113.34522545700023,-3.246514580999929],[113.35108483200004,-3.27239348799985],[113.29932701900022,-3.21461354],[113.28500410200014,-3.20419687299993],[113.25464928500017,-3.186944268999838],[113.2412215500001,-3.176853122999859],[113.23047936300006,-3.164320570999947],[113.22169030000012,-3.149997653999961],[113.21558678500004,-3.134209893999838],[113.20997155000023,-3.103773695999877],[113.20167076900023,-3.093031507999868],[113.18262780000023,-3.077080987999849],[113.15919030000005,-3.064629815999922],[113.12826582100003,-3.054945570999877],[113.10132897200018,-3.042575778999932],[113.03516686300004,-2.922946873],[113.03711998800023,-2.993096612999892],[113.03150475400005,-3.00888437299993],[113.0252384770001,-3.017347914999959],[113.01734459699999,-3.036797783999958],[113.00782311300011,-3.046482028999932],[113.00342858200023,-3.047458591999898],[112.99195397200018,-3.045668226999822],[112.98731530000023,-3.046482028999932],[112.98316491,-3.049737237999963],[112.97632897200012,-3.057549737999878],[112.96338951900012,-3.069024346999825],[112.94906660200004,-3.086032809999963],[112.94109134200008,-3.106377862999878],[112.949473504,-3.125176690999822],[112.96192467500023,-3.138360283999873],[112.968435092,-3.143975518999866],[112.97982832099999,-3.149509372999972],[112.99048912900004,-3.151788018999866],[113.01140384200019,-3.153252862999835],[113.02149498800023,-3.156345309999906],[113.02149498800023,-3.162530205999871],[112.66976972700016,-3.388604424999855],[112.63803144599999,-3.416761976999851],[112.61801191500004,-3.423760674999911],[112.58155358200015,-3.41594817499984],[112.57593834700005,-3.420098565999865],[112.57309004000004,-3.430352471999896],[112.56576582100004,-3.437920830999843],[112.55591881600017,-3.442640882999939],[112.5450952480002,-3.444268487999878],[112.52466881600004,-3.437758070999877],[112.39047285200009,-3.339939059999921],[112.34896894599999,-3.32284921699987],[112.30274498800006,-3.313897393999852],[112.20289147200018,-3.329522393999838],[112.11687259200019,-3.382256768999838],[111.97315514400006,-3.525567315999865],[111.9310001960001,-3.559014580999829],[111.90528405000006,-3.572035414999987],[111.88721764400006,-3.570245049999911],[111.86947675900015,-3.560153903999861],[111.82203209700006,-3.545098565999851],[111.8087671230002,-3.532972914999945],[111.80836022200016,-3.51181405999985],[111.82976321700002,-3.468194268999838],[111.83529707100016,-3.447686455999886],[111.84294681100017,-3.384454033999916],[111.84278405000012,-3.361748955999957],[111.81495201900005,-3.190362237999835],[111.81755618600006,-3.144463799999855],[111.83253014400012,-3.061618747999929],[111.82243899800002,-3.018487237999821],[111.76026451900012,-2.907647393999866],[111.75407962300008,-2.868910414999917],[111.75407962300008,-2.82390715899993],[111.75098717500006,-2.82040780999985],[111.74382571700002,-2.81747812299993],[111.73682701900005,-2.812676690999851],[111.73357181100019,-2.803399346999882],[111.73747806100019,-2.783379815999822],[111.75277754000015,-2.756280205999886],[111.75407962300008,-2.738539320999891],[111.73943118600006,-2.74618906],[111.72348066500014,-2.759047132999939],[111.71078535200014,-2.774590752999941],[111.70573978000007,-2.789727471999939],[111.71265709700005,-2.835056247999859],[111.71314537900005,-2.848402601999879],[111.70801842500012,-2.859633070999877],[111.69874108200005,-2.868096612999906],[111.68978925900015,-2.874200127999984],[111.68580162900017,-2.878838799999841],[111.68311608200004,-2.882989190999865],[111.67750084700018,-2.88795338299991],[111.67253665500002,-2.894626559999878],[111.67156009200008,-2.903008721999925],[111.67546634200008,-2.911065362999878],[111.68091881600017,-2.914483330999886],[111.68677819100006,-2.916924737999906],[111.695567254,-2.926202080999872],[111.70004316500015,-2.928155205999914],[111.70394941500015,-2.931817315999865],[111.70573978000007,-2.94003671699987],[111.7034611340001,-2.943617445999934],[111.69418379000008,-2.943047783999873],[111.69206790500019,-2.946872653999889],[111.6489363940001,-2.962009372999887],[111.58432050900015,-3.00888437299993],[111.56983483200011,-3.01572030999985],[111.55176842500005,-3.018487237999821],[111.53435306100017,-3.012139580999886],[111.5257267590001,-2.996840101999823],[111.52084394600014,-2.978936455999872],[111.51441491000006,-2.963799737999863],[111.48568769600014,-2.94150156],[111.447520379,-2.929782809999935],[111.36304772200005,-2.922946873],[111.32422936300006,-2.925957940999837],[111.29615319100006,-2.936455987999977],[111.06080162899998,-3.061130466999842],[110.98617597700016,-3.087497653999847],[110.94239342500012,-3.091485283999916],[110.906504754,-3.08326588299991],[110.82374108200005,-3.037204684999963],[110.80665123800011,-3.032972914999945],[110.77027428500006,-3.032159112999935],[110.75424238400015,-3.026055596999868],[110.75554446700002,-3.011814059999864],[110.76498457100016,-2.995782158999873],[110.77409915500007,-2.984307549999911],[110.804372592,-2.959079684999864],[110.83790123800004,-2.945000908999916],[110.87208092500006,-2.935235283999873],[110.95606530000006,-2.900079033999916],[110.96583092500006,-2.899590752999828],[110.95606530000006,-2.879001559999892],[110.93409264400012,-2.883884372999859],[110.89698326900012,-2.909844658999859],[110.87940514400006,-2.918145440999922],[110.83008873800011,-2.933770440999908],[110.81153405000006,-2.936618747999944],[110.79395592500006,-2.943536065999865],[110.77686608200011,-2.959730726999823],[110.69792728000019,-3.062676690999879],[110.6624455090001,-3.080743096999896],[110.63062584700006,-3.053317966999856],[110.62818444099999,-3.042657158999916],[110.63314863400015,-3.039483330999857],[110.64014733200004,-3.037204684999963],[110.64356530000006,-3.028985283999887],[110.64258873800006,-3.018731377999941],[110.63672936300006,-2.994886976999879],[110.63502037900005,-2.974216403999861],[110.63038170700011,-2.951348565999936],[110.616953972,-2.909844658999859],[110.58855228000019,-2.876560153999861],[110.54948978000002,-2.867608330999829],[110.508067254,-2.874607028999989],[110.40406334700016,-2.92050546699997],[110.30103600400005,-2.997979424999855],[110.26319420700011,-3.002862237999835],[110.24024498800011,-2.973077080999829],[110.22364342500006,-2.93035247199991],[110.20484459700018,-2.896172783999916],[110.22169030000006,-2.876071872999873],[110.237559441,-2.846937757999825],[110.2470809250001,-2.815118096999882],[110.24586022200018,-2.786309502999842],[110.22754967500012,-2.741957289999988],[110.22315514400005,-2.701918226999879],[110.21387780000012,-2.669040622999887],[110.211680535,-2.652601820999891],[110.20378665500002,-2.640069268999881],[110.16749108200005,-2.632419528999861],[110.15699303500017,-2.621270440999837],[110.16041100400015,-2.612399997999972],[110.17969811300011,-2.590020440999865],[110.18433678500006,-2.577243747999916],[110.19922936300011,-2.552341403999889],[110.23194420700011,-2.556735934999878],[110.26490319100017,-2.556573174999912],[110.28052819100017,-2.518243096999882],[110.24683678500016,-2.539808851999894],[110.22103925900015,-2.532810153999989],[110.20118248800006,-2.5082333309999],[110.15992272200018,-2.436455987999906],[110.15699303500017,-2.419528904],[110.15479576900005,-2.376234632999854],[110.14087975400011,-2.289727471999868],[110.13209069100006,-2.268161716999941],[110.11947675900015,-2.25872161299985],[110.10466556100008,-2.252048434999878],[110.0971785820001,-2.235772393999937],[110.094981316,-2.215508721999839],[110.0955509770001,-2.197360934999935],[110.1053166020001,-2.154392184999878],[110.11988366000006,-2.112074476999879],[110.12916100399998,-2.069512627999827],[110.12354576900012,-2.025485934999907],[110.09546959700012,-1.960137627999927],[110.09253991000016,-1.949639580999872],[110.0750431650001,-1.922458591999856],[110.06576582100014,-1.91757577899989],[110.03419030000006,-1.909356377999884],[109.98755944100017,-1.884698174999897],[109.96859785200016,-1.881442966999856],[109.9536238940001,-1.874281507999811],[109.90381920700004,-1.826104424999855],[109.90894616000017,-1.823337497999902],[109.91895592500006,-1.815850518999838],[109.92432701900012,-1.813164971999939],[109.91627037900017,-1.807793877999899],[109.910817905,-1.799899998],[109.90870201900012,-1.790134372999887],[109.91065514400006,-1.778985283999859],[109.92164147200006,-1.76962656],[109.96802819100017,-1.743422132999896],[109.982676629,-1.737969658999859],[109.99390709700012,-1.730238539999931],[110.004649285,-1.712172132999825],[110.03394616000006,-1.646172783999901],[110.03858483200005,-1.627618096999896],[110.04175866000004,-1.559828382999882],[110.06853274800002,-1.432549737999835],[110.07105553500006,-1.389906507999896],[110.0613712900001,-1.346368096999882],[110.04411868600019,-1.304782809999907],[110.02955162900017,-1.285902601999879],[110.01002037900017,-1.278008721999981],[109.98829186300011,-1.27499765399989],[109.9642033210001,-1.26572030999985],[109.948496941,-1.250746351999823],[109.9515080090001,-1.230889580999985],[109.92986087300014,-1.22323984199987],[109.92204837300002,-1.201592705999886],[109.92367597700016,-1.174004815999865],[109.9368595710001,-1.127618096999896],[109.93458092500012,-1.112562757999882],[109.92269941500008,-1.103610934999864],[109.90015709700012,-1.100518487999878],[109.89405358200011,-1.098565362999835],[109.86963951900006,-1.086195570999891],[109.85906009200019,-1.085056247999859],[109.83545983200004,-1.086195570999891],[109.82300866000006,-1.075290622999916],[109.8099064460001,-1.045179945999877],[109.78565514400012,-1.032972914999988],[109.77515709700006,-1.018731377999984],[109.75977623800011,-0.9906552059999],[109.74048912900004,-0.967543226999936],[109.734141472,-0.954034112999878],[109.73178144600016,-0.932305596999896],[109.73487389400006,-0.917657158999887],[109.74219811300004,-0.908135674999897],[109.75131269600016,-0.89959075299987],[109.75977623800011,-0.88762786299985],[109.76514733200005,-0.874281507999839],[109.76351972700009,-0.87086354],[109.73487389400006,-0.879001559999935],[109.72437584700018,-0.888767184999963],[109.71949303499999,-0.904066665000016],[109.7181095710001,-0.925876559999892],[109.71412194100006,-0.947360934999921],[109.70386803500006,-0.960625908999859],[109.6772567070001,-0.983819268999966],[109.64795983200004,-0.967461846999953],[109.62989342500006,-0.95191822699995],[109.62322024800018,-0.951592705999928],[109.61622155000012,-0.954685154],[109.60523522200006,-0.956638278999875],[109.59864342500006,-0.947849216999899],[109.58171634200019,-0.894463799999869],[109.55982506600017,-0.877373955999914],[109.52564537900017,-0.862399997999887],[109.48878014400012,-0.851657809999864],[109.4382430350001,-0.845635674999869],[109.42798912900017,-0.846612237999835],[109.42066491000017,-0.850192966999899],[109.41382897200006,-0.860121351999823],[109.41586347700016,-0.866957289999917],[109.42107181100006,-0.873793226999851],[109.42408287900015,-0.884209893999923],[109.41895592500006,-0.903578382999939],[109.40650475400004,-0.911390882999854],[109.39079837300007,-0.911879164999931],[109.37623131600004,-0.908786716999856],[109.33521569100006,-0.889092705999985],[109.32837975400005,-0.884209893999923],[109.32048587300008,-0.883396091999913],[109.28386478000002,-0.863213799999897],[109.27320397200018,-0.853610934999907],[109.24529056100008,-0.695896091999913],[109.25098717500012,-0.677666924999841],[109.26254316500015,-0.667413018999909],[109.27857506600006,-0.66904062299993],[109.29737389400012,-0.685642184999892],[109.3138126960001,-0.69500090899983],[109.38306725400017,-0.695896091999913],[109.39820397200018,-0.703057549999855],[109.4292098320001,-0.725762627999984],[109.45582116000006,-0.732110283999845],[109.46192467500012,-0.734795830999914],[109.46859785200014,-0.737074476999879],[109.47868899800002,-0.736911716999913],[109.50171959699999,-0.731052341999884],[109.5096134770001,-0.725030205999957],[109.50652103000017,-0.716403903999876],[109.49732506600006,-0.713636976999823],[109.4715275400001,-0.716566664999931],[109.46159915500019,-0.712985934999864],[109.44361412900017,-0.687432549999869],[109.43458092500006,-0.678806247999873],[109.41293379000015,-0.663995049999897],[109.38990319100017,-0.654880466999899],[109.37916100400017,-0.652927341999856],[109.36255944099999,-0.65195077899989],[109.35515384200002,-0.648125908999873],[109.35515384200002,-0.641289971999939],[109.3596297540001,-0.639743747999901],[109.36882571700008,-0.633884372999873],[109.36475670700011,-0.630140882999839],[109.3596297540001,-0.623630466999927],[109.35515384200002,-0.62021249799993],[109.35515384200002,-0.613946221999882],[109.37322024800002,-0.614190362999835],[109.40626061300011,-0.62021249799993],[109.42408287900015,-0.62021249799993],[109.42408287900015,-0.613946221999882],[109.400645379,-0.59734465899983],[109.37452233200005,-0.587334893999838],[109.344004754,-0.583754164999874],[109.27759850400017,-0.586195570999905],[109.26238040500019,-0.592461846999939],[109.25660241000006,-0.58847421699987],[109.2503361340001,-0.582289320999905],[109.23536217500006,-0.576348565999965],[109.23113040500002,-0.570000908999859],[109.22803795700004,-0.563083591999856],[109.2247827480002,-0.558689059999864],[109.21509850400005,-0.553399346999896],[109.2117619150001,-0.552178643999881],[109.20777428500006,-0.552422783999916],[109.19752037899998,-0.551853122999859],[109.18734785200014,-0.552992445999891],[109.17969811300006,-0.556084893999866],[109.17139733200005,-0.556329033999916],[109.15992272199999,-0.548760674999869],[109.13941491000006,-0.528578382999925],[109.13013756600012,-0.51572031],[109.12330162900017,-0.49968840899983],[109.10279381600004,-0.409926039999888],[109.10059655000006,-0.369724216999899],[109.10254967500006,-0.361097914999888],[109.11247806100019,-0.3597958309999],[109.13599694100004,-0.360039971999839],[109.103200717,-0.314141533999859],[109.09083092500012,-0.287204684999978],[109.10132897200018,-0.263848565999893],[109.10132897200018,-0.257582289999945],[109.08936608200005,-0.253024997999987],[109.07642662900005,-0.250583591999956],[109.0673934250001,-0.255140882999825],[109.06706790500019,-0.271254164999888],[109.05030358200005,-0.261895440999851],[109.0462345710001,-0.24586353999986],[109.05095462300014,-0.229099216999842],[109.06031334700005,-0.216729424999897],[109.07032311300006,-0.211846612999835],[109.0861108730002,-0.207452080999857],[109.11866295700005,-0.203057549999954],[109.14665774800008,-0.205254815999865],[109.17603600400015,-0.212009372999901],[109.20167076900006,-0.22275156],[109.21851647200006,-0.237237237999864],[109.2247827480002,-0.237237237999864],[109.21876061300011,-0.221612237999878],[109.19857832100016,-0.200860283999873],[109.19060306100017,-0.188734632999967],[109.18848717500012,-0.177341403999918],[109.19060306100017,-0.13730234199997],[109.18685957100016,-0.082207940999837],[109.17969811300006,-0.055474541999914],[109.16041100400011,-0.023695570999962],[109.15739993600017,-0.009291273999821],[109.156504754,0.020086981000091],[109.16098066500015,0.033921617000175],[109.17212975400017,0.034165757000125],[109.19752037899998,0.023504950000017],[109.30046634200019,0.010484117000118],[109.28052819100012,0.027492580000086],[109.23666425900015,0.057277736],[109.17693118600008,0.107611395000049],[109.16675866000006,0.112290757000054],[109.10230553500006,0.243109442000076],[109.046641472,0.287054755000113],[109.03321373800004,0.293361721000139],[109.01612389400006,0.296820380000142],[108.95313561300006,0.301743882000025],[108.92872155000012,0.315090236000117],[108.9209090500001,0.340277411000088],[108.93116295700005,0.379787502000141],[108.94239342500005,0.408270575000145],[108.94434655000012,0.42251211100016],[108.94483483200011,0.445298570000176],[108.93848717500006,0.465155341000099],[108.9130965500001,0.504339911000116],[108.91000410200016,0.530585028000061],[108.91431725400005,0.541408596000139],[108.9282332690001,0.563666083000101],[108.93116295700005,0.575018622000158],[108.93116295700005,0.616197007000139],[108.92725670700005,0.640773830000143],[108.91724694100017,0.661078192000062],[108.87598717500012,0.714667059000149],[108.87745201900006,0.723822333000044],[108.88502037900004,0.733221747000144],[108.88965905000006,0.753729559000107],[108.88257897200016,0.777533270000106],[108.85596764400006,0.811590887000122],[108.85547936300006,0.832220770000134],[108.8626408210001,0.841742255000142],[108.87696373800011,0.85553620000006],[108.89332116,0.867905992000175],[108.90658613400015,0.873236395000063],[108.92603600400005,0.875962632000125],[108.94141686300006,0.884019273000149],[108.9539494150001,0.896877346000082],[108.96534264400006,0.914211330000072],[108.98080488400015,0.956040757000096],[108.98031660200016,0.995550848000135],[108.92701256599999,1.140448309000107],[108.92432701900012,1.164007880000071],[108.93262780000012,1.178045966000028],[108.95232181100008,1.184068101000122],[108.99268639400012,1.187892971000124],[109.03272545700005,1.199042059000064],[109.10816491000017,1.228705145],[109.14283287900015,1.250637111000117],[109.15845787900004,1.264634507000082],[109.2156681650001,1.335435289000173],[109.22803795700004,1.358628648000035],[109.24341881600017,1.37986888200011],[109.26636803500017,1.394598700000103],[109.26636803500017,1.401434637000108],[109.24048912900017,1.40420156499999],[109.227305535,1.38886139500012],[109.21729576900012,1.369452216000113],[109.20118248800006,1.359849351000051],[109.18824303500006,1.3491885440001],[109.16504967500012,1.302232164000159],[109.15308678500016,1.291571356000134],[109.1492619150001,1.286200262000179],[109.14470462300002,1.274155992000161],[109.13738040500002,1.262274481000034],[109.125743035,1.256822007000082],[109.11402428500006,1.254461981000119],[109.10450280000012,1.24884674700013],[109.0882267590001,1.236314195000119],[109.0661727220001,1.229559637000179],[109.01221764400012,1.224310614000103],[108.98585045700011,1.215806382000082],[108.99040774800002,1.247463283000059],[109.00603274800014,1.274155992000161],[109.04037519600014,1.318915106000105],[109.05437259200002,1.352240302000098],[109.06080162900005,1.383856512000179],[109.06080162900005,1.499009507000125],[109.07300866000006,1.533921617000146],[109.095957879,1.560614325000173],[109.25269616000006,1.668361721000053],[109.27222741,1.693793036000059],[109.30339603000019,1.752630927000141],[109.321055535,1.778225002000113],[109.33912194100006,1.797756252000014],[109.34205162900017,1.801825262000065],[109.34310957100008,1.804388739000061],[109.34546959700018,1.806463934000178],[109.34782962300014,1.809556382000068],[109.34888756600017,1.815415757000025],[109.34669030000006,1.81879303600013],[109.34180748800011,1.819973049000154],[109.33692467500006,1.81879303600013],[109.33464603000006,1.815415757000025],[109.28679446700006,1.778225002000113],[109.28923587300008,1.795965887000108],[109.29997806100019,1.806952216000155],[109.31446373800004,1.817206122000101],[109.32837975400005,1.832831122000087],[109.33513431100008,1.850165106000077],[109.33643639400006,1.867905992000161],[109.33464603000006,1.901109117000175],[109.34099368600019,1.935532945000105],[109.35889733200005,1.948309637000065],[109.42408287900015,1.955715236000131],[109.56120853000007,1.990464585000097],[109.57886803500004,1.997626044000143],[109.59278405000012,2.007513739000145],[109.60466556100019,2.020941473000136],[109.63502037900017,2.074042059000149],[109.64527428500017,2.083238023000121],[109.62662072800016,2.029696350000122],[109.60026574700011,1.983135885000166],[109.58507287600017,1.96091501900014],[109.57442753100011,1.948590190000089],[109.53794397000016,1.917713522000099],[109.52936568200006,1.905156149],[109.52843550600019,1.889989116000066],[109.5347400320002,1.853893127000148],[109.53432662000009,1.846451721000051],[109.5347400320002,1.838984477000025],[109.53980432200008,1.826556295000046],[109.5466256100001,1.814334818000106],[109.55561731000009,1.802165019000199],[109.56698612500006,1.792553203000182],[109.58011193900015,1.78797983800014],[109.62403690700009,1.787773132000012],[109.64181359900007,1.781003520000155],[109.64718794800014,1.761883240000159],[109.64057336400006,1.683025004000129],[109.64171024600009,1.63716217100017],[109.64698124200018,1.617628479000075],[109.65803999900012,1.597190450000198],[109.67726363200019,1.572850850000094],[109.76635380100007,1.496473084000058],[109.77317509000008,1.485853577000071],[109.77555220500012,1.457948303000165],[109.78154667200008,1.456294658000132],[109.80056359900013,1.46675913500016],[109.8077982990001,1.45996368400013],[109.82547164000019,1.417563171000111],[109.84283492000012,1.403274638000127],[109.86288537700008,1.401465963000135],[109.88272912600016,1.403843079000168],[109.90205611200011,1.403791402000152],[109.92024621600014,1.394773865000118],[109.9325452070001,1.378521627000097],[109.9517688390001,1.3196621700001],[109.9637577720001,1.298578186000086],[109.97626346900009,1.287726136000131],[110.01212691200013,1.270517883000153],[110.03073042800006,1.253568014000138],[110.05181441200008,1.215482483000187],[110.07455204300018,1.198635966000126],[110.09346561700013,1.19160797100011],[110.15217004500008,1.1838565070002],[110.1703601490001,1.174451396000151],[110.18513960800013,1.154194234000059],[110.2067403570002,1.1117162070002],[110.25655643700011,1.039059144000163],[110.2617240800001,1.014719544000144],[110.26348107900012,0.99430735300011],[110.27278283800015,0.991051737000035],[110.2863220630002,0.995340881000175],[110.30079146400007,0.997717997000123],[110.35164107300008,0.986504211000181],[110.36414676900009,0.98138824500009],[110.38068322800014,0.966608785000176],[110.42264449100006,0.909454651000061],[110.4602649330001,0.879740703],[110.50636031100012,0.857313131000168],[110.55390262900013,0.851370341000077],[110.59607059800007,0.871110738000127],[110.60599247300016,0.883306376000135],[110.60960982300006,0.890851136000094],[110.61343387900008,0.89395172100005],[110.62480269400007,0.89312489800011],[110.63214074800007,0.888629049000187],[110.63885868300011,0.880774231000146],[110.64774703000008,0.873901266000175],[110.66128625500019,0.872144267000109],[110.67441206900016,0.877001851000045],[110.6930155850001,0.894675192000136],[110.70417769400015,0.901393127000148],[110.70944869000019,0.901393127000148],[110.72071415200006,0.897362366000067],[110.72484826700006,0.897259013000138],[110.7447953700001,0.905062154000149],[110.74572554600016,0.908007711000067],[110.75833459500008,0.91451894100004],[110.76112512300018,0.912865296000163],[110.7712537030001,0.904390361000082],[110.77673140500016,0.903253479000156],[110.78396610600012,0.908162740000193],[110.78623986800001,0.91627594000002],[110.78706669100009,0.93415598600015],[110.79698856600007,0.949658915000072],[110.8526957610002,0.997201233000098],[110.88039432900021,1.010533753000118],[110.91057336500015,1.015701396000111],[110.9734119070001,1.017716776000157],[111.19758427000012,1.075232646000188],[111.21753137200014,1.07326894200007],[111.35178674300019,1.013892721000119],[111.37411096200017,1.007536519000098],[111.3955050050001,1.006296285000161],[111.41503869700009,1.010223694000132],[111.45451949100011,1.022626038000098],[111.47208947800019,1.022212627000087],[111.48242476400011,1.012859192000136],[111.48800581900011,0.997924703000095],[111.49203658100012,0.980871480000147],[111.50319869000006,0.958443909000152],[111.51539432800014,0.964490051000098],[111.53885542900011,0.997717997000123],[111.62267460100011,1.030274150000167],[111.63735070800007,1.032237854000115],[111.65523075400009,1.030790914000121],[111.68210249800003,1.023452861000038],[111.7341923430001,1.001438700000136],[111.76282108600016,0.993015442000143],[111.82307580600016,1.008466695000152],[111.9100989180001,1.114041646000132],[111.97335087100006,1.134040426000169],[112.05406945800021,1.133627014000069],[112.07949426300003,1.137244365000143],[112.0929301350001,1.143135478000133],[112.10006148300012,1.154917705000144],[112.15266809100002,1.306277975000157],[112.18398400900004,1.369039001000118],[112.18739465300015,1.37965850800019],[112.18801477100011,1.3914148960001],[112.18181359900021,1.400019022000052],[112.15907596900016,1.40079416900015],[112.1541150310002,1.409527486000115],[112.16155643700013,1.434538880000034],[112.18005660000009,1.449034119000146],[112.29519169200015,1.503811137000142],[112.319066203,1.511743469000095],[112.38097456900007,1.517712097000114],[112.39854455600013,1.523344828000148],[112.41590783700022,1.536651510000155],[112.42975712100011,1.550681662000073],[112.44588016800017,1.562076315000169],[112.47047815000016,1.567657369000173],[112.76885787000006,1.552231954000192],[112.79479943900017,1.544377136000151],[112.80151737500003,1.5437828580001],[112.81350630800009,1.549338073000115],[112.82053430200008,1.557632141000155],[112.82663212100013,1.56719228100016],[112.83645064300012,1.576054789000167],[112.85495080600005,1.582721049],[112.8713839120002,1.580653991000034],[112.88812707600007,1.574866232000147],[112.90766076700007,1.570525411000077],[112.95602990799998,1.572334086000069],[112.97318648300015,1.569853618000181],[112.9971643480001,1.560164287000063],[113.01411421700018,1.550785014000098],[113.02341597500012,1.53701324400015],[113.02434615100005,1.514378968000116],[113.01845503800016,1.492390645000128],[113.00729292800021,1.473270365000133],[112.9916866450001,1.456966452000117],[112.9611975510002,1.434383850000174],[112.95530643700017,1.423557638000048],[112.9582003180001,1.415651143],[112.97318648300015,1.415082703000124],[113.01142704300005,1.42797597300013],[113.05059777800001,1.434797262000174],[113.08904504400013,1.431334940000141],[113.1257353120001,1.41363576300013],[113.15860152200005,1.388159281000114],[113.17276086500019,1.383740946000032],[113.21771936100018,1.380898742000056],[113.27601037600012,1.368883973000081],[113.32365604700017,1.351391500000119],[113.39755334500015,1.293927307000118],[113.44292525299996,1.292377015000099],[113.48230269400008,1.308706767000132],[113.50338667900022,1.314494527000107],[113.52447066200014,1.313564351000139],[113.54617476400014,1.301575419000187],[113.59650760900004,1.241630758000099],[113.62482629500019,1.227574768000181],[113.64952762900012,1.233259176000132],[113.80817427600013,1.339712626000064],[113.86822229000015,1.415496114000135],[113.89116662600017,1.434952291000045],[113.90966678900011,1.442471212000072],[114.05394738800013,1.465053813000025],[114.09425500500006,1.465673930000165],[114.13094527200022,1.454175924000154],[114.14107385300005,1.445261739000045],[114.15027225800017,1.43428049700006],[114.16040083900022,1.424797872000169],[114.17342329900018,1.420508728000101],[114.18324182200004,1.423454285000105],[114.20484257100011,1.438362935000157],[114.20740588700019,1.439443127000175],[114.35573775300011,1.501950786000137],[114.37485803299998,1.506937562000175],[114.39821578000024,1.503552754000168],[114.42136682200024,1.492183940000089],[114.50063846900015,1.43603749600004],[114.52223921800024,1.429422913000124],[114.5455969650001,1.434952291000045],[114.56161665800002,1.450015971000127],[114.56802453700017,1.469394633000178],[114.56771447700011,1.49091786700005],[114.56316695200016,1.512260233000049],[114.56316695200016,1.5363931280001],[114.57453576700006,1.553420512000116],[114.60967574100019,1.581635844000175],[114.62445520100015,1.598792420000137],[114.65029341700014,1.64145131500014],[114.66900028500012,1.694006246000114],[114.68005904200014,1.763278504000141],[114.67892216000023,1.794361878000174],[114.67582157400008,1.806738383000138],[114.6726176350002,1.814076436000135],[114.67137740100017,1.820975240000109],[114.6741679290002,1.831904806000182],[114.67954227699997,1.840741476000175],[114.68863733000015,1.850224101000066],[114.69917932100013,1.85805308000009],[114.7089978440001,1.86198049000015],[114.76305139200016,1.86869842500009],[114.81906864500009,1.890299174000063],[114.8319877530001,1.902520650000071],[114.83364139800008,1.921356710000097],[114.82940393100002,1.942647400000084],[114.82940393100002,1.959778138000132],[114.8338481040001,1.976676331000036],[114.84252974400025,1.997166036000095],[114.84511356700007,2.009749248000105],[114.84532027200012,2.024967957000143],[114.84108280500018,2.038222962000134],[114.83136763500012,2.044760030000035],[114.80821659400024,2.041969502000072],[114.79219690000009,2.034812317000032],[114.78062137900021,2.036052552000143],[114.77028609200013,2.058221741000167],[114.76925256400013,2.066644999000076],[114.77028609200013,2.100053813000144],[114.76801233000012,2.110208232000019],[114.75674686700009,2.1260470590002],[114.75302616400015,2.134806213],[114.7520959880001,2.15351308200016],[114.76346480400017,2.208083395000102],[114.77876102700023,2.247202454000117],[114.80904341700007,2.264669088000161],[114.88645471200019,2.275159404000036],[114.91332645700018,2.284047750000127],[114.9196309810002,2.295674947000094],[114.91673710200021,2.311229554000036],[114.91529016200005,2.332055155000177],[114.92221480300012,2.353914287000123],[114.93451379500009,2.360683899000151],[114.97296106000012,2.357479960000177],[114.9920813390002,2.369882304000157],[115.0347660730001,2.406417541000081],[115.05202600100009,2.414013977000138],[115.06742557800018,2.423109029000116],[115.1050460210001,2.465690409000089],[115.12654341700014,2.479229634000077],[115.17181197100003,2.483312073000164],[115.1926892500002,2.490546773000133],[115.20612512200015,2.509873759000101],[115.20374800700019,2.527547099000103],[115.19237919200012,2.551059876000181],[115.17697961500014,2.57415924100016],[115.16189009600023,2.590385641000168],[115.15196822100013,2.597051900000082],[115.13977258300022,2.602839661000147],[115.1268534750002,2.606767070000117],[115.1149678960002,2.607903951000125],[115.10411584500005,2.604751689000082],[115.0825150960001,2.594364726000151],[115.07145634000007,2.594623108000036],[115.0564701750001,2.60862742200004],[115.05864058500016,2.628832906000113],[115.06742557800018,2.651208801000095],[115.07186975200007,2.671827698000186],[115.06876916500013,2.681542868000051],[115.05791711500011,2.701489970000068],[115.05698693900003,2.711256816000116],[115.0631881100002,2.723659159000178],[115.07217981000016,2.727431539000023],[115.082721802,2.729550273000172],[115.09357385300008,2.737043356000115],[115.1046326100001,2.761486308000158],[115.09812137900023,2.781071676000166],[115.07186975200007,2.814764710000048],[115.06690881300014,2.828200582000093],[115.06907922400003,2.832644755000089],[115.07755415900014,2.836520488000147],[115.09119673700005,2.8481476850001],[115.09905155500014,2.859671529000138],[115.10277225800009,2.869955139000126],[115.10525272600015,2.88029042500014],[115.10959354700005,2.89202097600004],[115.12282271400012,2.912949931000028],[115.13904911300014,2.928452860000121],[115.19640995300018,2.967623596000166],[115.20798547400008,2.980697734000117],[115.22503869700019,3.01588938400009],[115.24209192000002,3.041624247000172],[115.25583785000016,3.037490133000063],[115.28136600800009,2.999559631000139],[115.30999475100018,2.985917053000051],[115.34151737500021,2.991136373000145],[115.40683638500009,3.019506734000075],[115.44797082500017,3.024054261000018],[115.46409387300004,3.030823873000131],[115.47215539600013,3.050512594000097],[115.47597945200019,3.093042297000139],[115.48218062400015,3.110974020000114],[115.51701053900005,3.157276103000186],[115.51442671800012,3.164769186000129],[115.49933719900004,3.169781800000095],[115.48352421100006,3.189005432000116],[115.48280074100015,3.206472066000075],[115.5176306560002,3.357160543000105],[115.53582076000023,3.403617656000122],[115.55721480300018,3.425450948000162],[115.56713667800015,3.423848979000041],[115.57602502500006,3.419404805000112],[115.58501672400021,3.416820984000111],[115.59545536300007,3.42085174600011],[115.60124312400004,3.430231019000161],[115.60062300600023,3.441212260000057],[115.59266483600018,3.46196034800009],[115.5761283780001,3.491674296000156],[115.57271773300023,3.504154155000136],[115.57240767500015,3.51425689700001],[115.57447473100015,3.534565735000114],[115.57333785000006,3.545004374000058],[115.54853316300003,3.605284933000121],[115.54439904800009,3.629159445000198],[115.54460575400006,3.668976136000125],[115.55049686700013,3.708224385000093],[115.5893575450002,3.824522197000192],[115.58863407400011,3.857595113000173],[115.57457808400025,3.872090353000203],[115.55411421700003,3.88356252000014],[115.53830122900006,3.897825216000115],[115.53881799400007,3.920614522000107],[115.54584598900024,3.927720032000138],[115.58098596200001,3.94691782700015],[115.59028772000012,3.95800242100016],[115.60951135200015,3.996914774000131],[115.62212040200009,4.040219625000191],[115.63328251200012,4.128560486000197],[115.63913433100007,4.145949698000138],[115.64692508900012,4.169100647000121],[115.65591678900009,4.178634949000113],[115.67596724500012,4.184164327000119],[115.68278853400008,4.190649720000166],[115.68981652900017,4.199977315000112],[115.73260461500003,4.239380595000114],[115.74025272700017,4.236202495000143],[115.74717736900007,4.227624207000119],[115.75689253800013,4.222172343000139],[115.77074182100009,4.225608825000164],[115.77539270100013,4.236099142000128],[115.7794234620002,4.248940735000119],[115.81745731700008,4.281316020000105],[115.82190149000004,4.311236674000142],[115.82117802000006,4.344335429000125],[115.83099654200025,4.376116435000156],[115.84412235500011,4.38921641000013],[115.85611128800015,4.390766703000139],[115.86489628100006,4.382575989000117],[115.86944380700018,4.366685486000108],[115.87884891800005,4.35213857000015],[115.89879602100004,4.347125956000184],[115.94096398900004,4.344361267000139],[115.96483850100012,4.335472921000118],[115.97724084500018,4.32862579400016],[115.98344201700014,4.321391093000102],[115.98736942600013,4.304777120000082],[115.99357059800006,4.288912455000172],[116.00400923700023,4.276690980000154],[116.02064904800007,4.270851542000159],[116.03315474500009,4.27772450700013],[116.08121382700013,4.325473531000114],[116.09940393100024,4.336506449000112],[116.10994592300014,4.345110575000135],[116.11749068300017,4.357228699000132],[116.125758912,4.37890696200013],[116.13650760900022,4.373041687000125],[116.14684289600015,4.371207173000129],[116.17009729000007,4.369915263000081],[116.21505578700017,4.3578488160001],[116.22880171700004,4.356117656000137],[116.25722375600006,4.364153341000119],[116.28512902900003,4.378390198000176],[116.31065718600004,4.383376974000143],[116.3375289310001,4.357228699000132],[116.34424686700018,4.356918640000146],[116.3512748620001,4.357900492000113],[116.35819950400017,4.355445862000153],[116.36181685400007,4.350381572000174],[116.36543420400008,4.337695008000125],[116.39106571500011,4.294674377000134],[116.4008842370001,4.289997661000157],[116.41132287600011,4.288654074000192],[116.42176151600003,4.291832174000163],[116.44635949700015,4.317256979000163],[116.45710819500007,4.316766052000133],[116.46837365800006,4.312321879000137],[116.4859436440001,4.316921082000178],[116.49410852100013,4.324853414000131],[116.49193811000012,4.331287130000177],[116.4869771730001,4.338573507000163],[116.48646040900022,4.348831278000148],[116.49431522600015,4.363223165000164],[116.51539921100019,4.384152120000152],[116.52222050000015,4.396787008000089],[116.53327925700016,4.395365906000094],[116.57689416600013,4.332010600000089]]],[[[126.87501061300011,4.494330145000148],[126.87728925899998,4.478013414000117],[126.87720787899998,4.478176174000083],[126.88477623800021,4.45685455900012],[126.87907962300007,4.43585846600017],[126.86890709700006,4.41437409100014],[126.86353600400017,4.391913153000147],[126.85912907900006,4.367569102000118],[126.87070871900008,4.33139332800009],[126.90042581300023,4.306702378000138],[126.92212975399998,4.282049872000171],[126.86353600400017,4.210638739000103],[126.80987476200002,4.157243649000151],[126.80830740000013,4.086611311000127],[126.8099787150002,4.037348902000161],[126.79843750500007,4.017644473000161],[126.75889699200016,3.993006460000145],[126.71452884200006,4.01162344000015],[126.67641998500001,4.004482550000134],[126.66476202300012,4.034055368000153],[126.67628605300015,4.060346120000133],[126.69118589000017,4.078410261000144],[126.72092916300018,4.096468192000159],[126.75869722000007,4.185200129000108],[126.80320654700004,4.22296811100007],[126.79163159300005,4.241055919000175],[126.77677227500007,4.245998363000112],[126.75860813200008,4.250943112000144],[126.71070033200006,4.264137215000076],[126.7073564120001,4.28716412700011],[126.71565150200003,4.3084947090001],[126.70720462300007,4.333563544000143],[126.70337975400005,4.343247789000117],[126.69996178500006,4.355454820000176],[126.69922936300011,4.367905992000189],[126.69720714800022,4.397426780000089],[126.70540705599998,4.42374730000013],[126.73951256600017,4.473089911000073],[126.74073326900012,4.480169989000117],[126.74122155000006,4.491888739000117],[126.74008222700004,4.501695054000137],[126.73487389400024,4.523871161000115],[126.73373457100003,4.535874742000132],[126.74439537900005,4.545599677000084],[126.76872806100019,4.550279039000188],[126.79639733200011,4.550482489000146],[126.81625410200004,4.546454169000171],[126.82984459700018,4.537054755000071],[126.83334394600014,4.52773672100011],[126.83513431100008,4.517523505000085],[126.843028191,4.50486888200011],[126.85572350400017,4.498277085000126],[126.86695397200016,4.497992255000098],[126.87501061300011,4.494330145000148]]],[[[107.99341881600017,4.69131094000015],[107.98121178500016,4.683661200000131],[107.95899498800006,4.684393622000158],[107.946462436,4.686712958000129],[107.93734785200016,4.691392320000133],[107.93555748800006,4.694525458000115],[107.93531334699999,4.698391018000123],[107.93677819100017,4.703070380000142],[107.94060306100019,4.70864492400014],[107.95191491000017,4.717678127000156],[107.96664472700016,4.7261416690001],[107.97917728000007,4.735988674000126],[107.984629754,4.748765367000161],[107.98633873800011,4.755804755000128],[107.99122155000006,4.763983466000141],[107.99781334700006,4.770453192000147],[108.00513756600006,4.772365627000099],[108.01270592500012,4.768133856000176],[108.01197350400017,4.760931708000143],[108.00782311300006,4.75263092700007],[108.00513756600006,4.745062567000119],[108.00049889400012,4.709133205000128],[107.99341881600017,4.69131094000015]]],[[[127.14576256600004,4.752183335000083],[127.135996941,4.7403832050001],[127.12305748800011,4.752508856000105],[127.12142988399998,4.768500067000105],[127.12403405000005,4.772040106000176],[127.13038170700011,4.774400132000124],[127.13917076900006,4.766587632000139],[127.14576256600004,4.752183335000083]]],[[[126.59937584700012,5.553615627000099],[126.59546959699999,5.548407294000114],[126.59115644600004,5.557114976000179],[126.59864342500005,5.56537506700009],[126.60287519599999,5.5640322940001],[126.59937584700012,5.553615627000099]]],[[[95.50269616,5.605129299000083],[95.51124108200005,5.603013414000159],[95.521250847,5.609198309000135],[95.53370201900006,5.622137762000136],[95.57618248800011,5.631252346000139],[95.61158287900011,5.626654364000103],[95.76221764400006,5.576849677000126],[95.83961022200006,5.528550523000192],[95.85547936300006,5.522162177000084],[95.87256920700011,5.519720770000148],[95.88754316500015,5.512152411000102],[95.89437910200014,5.49380117400014],[95.90357506600004,5.450751044000114],[95.93043053500006,5.414496161000101],[96.05494225400011,5.313625393000136],[96.08806399800002,5.295477606000134],[96.126231316,5.281805731000105],[96.2905379570001,5.258978583000086],[96.30396569100017,5.254299221000082],[96.34441165500002,5.23232656500015],[96.3621525400001,5.225490627000141],[96.40658613400015,5.217230536000145],[96.42945397200006,5.2183291690001],[96.44849694100006,5.228583075000117],[96.46631920700011,5.235541083000115],[96.48633873800006,5.229396877000127],[96.50709069100017,5.218573309000135],[96.52735436300004,5.211167710000054],[96.56763756600017,5.208441473000093],[96.65056399800008,5.216253973000078],[96.6849064460001,5.225490627000141],[96.78513172900014,5.259857206000135],[96.8283797540001,5.280178127000084],[96.84864342500012,5.276597398000106],[96.89437910200016,5.262111721000153],[96.90723717500005,5.262681382000125],[96.92286217500006,5.269476630000071],[96.97339928500017,5.273423570000148],[97.03019801000008,5.251295019000111],[97.07433856600018,5.238154799000185],[97.10964054600007,5.214092463000114],[97.1493447770001,5.198772387000133],[97.16602623800006,5.173732815000121],[97.17595462300007,5.161281643000095],[97.19516035200014,5.156642971000082],[97.22655294300009,5.146221342000118],[97.26836827800011,5.155068075000158],[97.49683678500006,5.251898505000128],[97.5262150400001,5.242254950000159],[97.66439863400015,5.073431708000129],[97.83008873800011,4.938788153000175],[97.87387129000015,4.918850002000099],[97.89380944100006,4.905829169000114],[97.90919030000012,4.889593817000076],[97.95606530000006,4.808010158000144],[97.96322675900008,4.78949616100013],[97.97535241000017,4.706244208000101],[97.98373457100016,4.678412177000141],[98.00700931100008,4.63385651200015],[98.00879967500006,4.623683986000116],[98.00709069100006,4.597723700000117],[97.996836785,4.570217190000093],[97.9925236340001,4.553778387000179],[97.996836785,4.546454169000171],[98.0262150400001,4.55316803600013],[98.03882897200018,4.551947333000115],[98.04802493600008,4.539007880000113],[98.05396569100017,4.55316803600013],[98.06128991000011,4.554836330000143],[98.075938347,4.546454169000171],[98.07886803500006,4.540513414000159],[98.0828556650001,4.53607819200009],[98.08961022200006,4.532782294000143],[98.0940047540001,4.533189195000147],[98.10572350400011,4.537827867000174],[98.11353600400011,4.539007880000113],[98.1381942070001,4.534409898000163],[98.15967858200004,4.522284247000172],[98.1761173840001,4.504828192000119],[98.18580162900017,4.484442450000131],[98.192149285,4.484442450000131],[98.1951603520001,4.489203192000133],[98.20191491000006,4.494086005000099],[98.20573978000006,4.498032945000175],[98.21900475400011,4.484767971000153],[98.2405705090001,4.456732489000146],[98.25416100400017,4.443426825000131],[98.26832116000017,4.432318427000098],[98.2755639980002,4.425360419000114],[98.278575066,4.415472723000092],[98.282481316,4.364935614000089],[98.2677514980002,4.292629299000126],[98.26758873800006,4.287909247000115],[98.26636803500006,4.211574611000088],[98.263438347,4.202866929000095],[98.2404891290001,4.190171617000132],[98.19613691500008,4.175116278000118],[98.18580162900017,4.169745184000163],[98.1800236340001,4.158189195000134],[98.1780705090001,4.141831773000121],[98.17896569100016,4.108221747000101],[98.20183353000007,4.132147528000161],[98.21705162900017,4.1441104190001],[98.23707116,4.149237372000115],[98.2395939460001,4.153713283000073],[98.25684655000006,4.171779690000093],[98.26091556100019,4.173163153000161],[98.2630314460001,4.177313544000114],[98.29948978000006,4.089016018000137],[98.30567467500006,4.080308335000069],[98.36296634200006,4.087551174000083],[98.38445071700019,4.086493231000134],[98.40577233200005,4.078924872000171],[98.44166100400015,4.057521877000127],[98.462657097,4.05304596600017],[98.47722415500002,4.046210028000147],[98.49756920700005,4.014553127000084],[98.50798587300014,4.004584052000084],[98.52637780000006,4.003241278000104],[98.54420006600006,4.005194403000147],[98.55779056100019,4.000799872000157],[98.56788170700005,3.966457424000112],[98.57960045700005,3.953843492000133],[98.59489993600019,3.94367096600017],[98.61036217500012,3.936346747000172],[98.6766198010001,3.914546933000153],[98.70026879800011,3.875304345000131],[98.69971764400006,3.833929755000085],[98.71062259200002,3.80377838700015],[98.79658192100007,3.725442643000107],[98.8965828650001,3.681402408000125],[98.95753014400006,3.671332098000021],[98.97790659800009,3.657914212000122],[99.00925159800013,3.63541709500015],[99.02688536000002,3.629545113000133],[99.05235717900021,3.621714495999981],[99.0739100480001,3.608994286],[99.10134006900013,3.582579167000119],[99.17976094400008,3.546337688000065],[99.2700380590002,3.484585772000102],[99.36817467500006,3.407945053999981],[99.38396243600019,3.398871161000059],[99.42090905000006,3.391546942000147],[99.43327884200018,3.382879950000159],[99.45386803500006,3.36098867400004],[99.47877037900017,3.346014716000099],[99.4897567070001,3.336249091000141],[99.4975692070001,3.309515692000133],[99.50603274800008,3.295965887000165],[99.52767988400015,3.271551825000117],[99.5581160820001,3.244574285999988],[99.58936608200005,3.227972723000107],[99.68531334700006,3.204738674000083],[99.71949303500006,3.19159577000012],[99.73755944100017,3.189032294000114],[99.750743035,3.180487372000016],[99.7815861340001,3.120754299000126],[99.83399498800006,3.072414455000114],[99.8528751960001,3.047267971000124],[99.85792076900012,3.011460679000109],[99.8899845710001,3.018255927000055],[99.91130618600008,3.000067450000145],[99.9305119150001,2.975409247000158],[99.95728600400011,2.963080145000105],[99.97950280000006,2.948472398000177],[99.99024498800011,2.914496161000059],[99.9978947270001,2.799139716000141],[99.99586022200018,2.785589911000087],[99.98861738400015,2.772040106000119],[99.97901451900012,2.759466864000046],[99.9707137380001,2.745428778000089],[99.96713300900015,2.727240302000098],[99.96461022199999,2.719387111000103],[99.9543563160001,2.703843492000104],[99.9534611340001,2.696234442000076],[99.95923912900017,2.687892971000096],[99.9676212900001,2.684312242000118],[99.9767358730002,2.682440497000158],[99.98414147200012,2.678778387000023],[99.99268639400012,2.668768622000115],[99.99170983200005,2.664211330000085],[99.9876408210001,2.660874742000061],[99.9876408210001,2.654608466000099],[100.0087996750001,2.620428778000103],[100.00586998800006,2.609198309000107],[100.00798587300018,2.602606512000136],[100.01392662900011,2.601629950000159],[100.02247155000012,2.607407945000119],[100.0281681650001,2.617580471000068],[100.025157097,2.624579169000143],[100.01889082100016,2.630804755000113],[100.01563561300011,2.638128973000107],[100.0144962900001,2.671535549000083],[100.01221764400012,2.678778387000023],[99.980235222,2.697333075000117],[99.97396894600016,2.703070380000085],[99.98568769600016,2.718451239000117],[100.01856530000006,2.731675523000163],[100.05494225400011,2.72728099200009],[100.0769962900001,2.689398505000142],[100.077810092,2.675848700000174],[100.07601972700016,2.648260809000078],[100.0769962900001,2.634711005000099],[100.08838951900006,2.601507880000085],[100.09009850400017,2.590073960000126],[100.0959578790001,2.570461330000072],[100.10971113400015,2.545640367000033],[100.1258244150001,2.53009674700003],[100.13851972700016,2.537909247000101],[100.13746178500006,2.551947333000058],[100.12142988400015,2.588202216000155],[100.11744225400015,2.603705145000077],[100.11744225400015,2.645168361],[100.12110436300011,2.663560289000131],[100.1311141290001,2.681870835000097],[100.14380944100006,2.695054429000052],[100.15943444100006,2.703762111000116],[100.17920983200005,2.708441473000136],[100.20337975400015,2.709865627000027],[100.21062259200019,2.706244208000143],[100.21257571700002,2.69769928600013],[100.21338951900006,2.687445380000099],[100.21745853000019,2.678778387000023],[100.2248641290001,2.673773504999985],[100.24244225400011,2.666327216000084],[100.24838300900015,2.662054755000085],[100.25131269600016,2.65477122600015],[100.254649285,2.627264716000042],[100.2580672540001,2.619086005000113],[100.26693769600016,2.602606512000136],[100.26880944100006,2.596869208000072],[100.27369225400011,2.590155341000113],[100.29957116,2.572088934000092],[100.30836022200018,2.569484768000095],[100.31218509200019,2.562892971000039],[100.31364993600008,2.554551499000155],[100.31373131600006,2.554266669000114],[100.3816837900001,2.355047919000128],[100.40528405000005,2.31268952000012],[100.434336785,2.273342190000136],[100.5073348320001,2.199164130000099],[100.56104576900012,2.15680573100002],[100.61784915500006,2.129055080000128],[100.66618899800007,2.134466864000075],[100.78907311300011,2.048529364000061],[100.81275475400011,2.039740302000013],[100.8322860040001,2.016302802000112],[100.84083092500006,2.010972398000064],[100.85572350400011,1.999212958000072],[100.87240644600016,1.971991278000161],[100.88624108200005,1.940985419000143],[100.89210045700005,1.918158270000134],[100.89551842500006,1.886216539000117],[100.90593509200008,1.856919664000102],[100.923106316,1.834947007000096],[100.94727623800011,1.8253848330001],[100.94190514400006,1.841864325000088],[100.94605553500011,1.861314195000176],[100.94825280000006,1.882757880000128],[100.93702233200011,1.904527085000083],[100.92408287900017,1.92275625200007],[100.91578209700012,1.944728908],[100.90577233200011,1.990464585000097],[100.88550866,2.036322333000086],[100.82349694100006,2.115952867000146],[100.80323326900006,2.161810614000146],[100.79997806100017,2.208929755000142],[100.81275475400011,2.249823309000163],[100.84115644600016,2.2808291690001],[100.88591556100017,2.298285223000065],[100.907888217,2.299505927],[101.05030358200004,2.291489976000136],[101.05860436300006,2.280422268000094],[101.05648847700016,2.24115631700009],[101.06739342500012,2.219794012000122],[101.18181399800002,2.145005601000136],[101.29997806100019,2.046616929000109],[101.317149285,2.024603583000015],[101.32585696700019,2.002183335000083],[101.32699629000015,1.981268622000129],[101.32341556100008,1.938950914000117],[101.32667076900012,1.91644928600013],[101.35132897200012,1.860093492000161],[101.37761478000002,1.773260809000163],[101.39730879000015,1.736395575000103],[101.42701256600017,1.709295966000155],[101.4944767590001,1.678697007000054],[101.52963300900015,1.670803127000084],[101.56739342500012,1.655910549000126],[101.591563347,1.65468984600011],[101.67351321700002,1.669501044000086],[101.711680535,1.671128648000106],[101.74919681100002,1.661525783000116],[101.77857506600006,1.644273179000109],[102.02149498800011,1.437892971],[102.11817467500006,1.386542059000149],[102.14332116,1.357733466000042],[102.15333092500012,1.311468817000048],[102.14698326900006,1.273138739000103],[102.14722741,1.247788804000081],[102.15674889400012,1.236314195000119],[102.17310631600004,1.230902411000088],[102.18726647200006,1.217271226000136],[102.19727623800006,1.199611721000124],[102.20101972700016,1.181708075000074],[102.19312584700016,1.104234117000189],[102.19418379000015,1.065904039000074],[102.20850670700005,1.024074611000145],[102.2400822270001,0.982082424000154],[102.32105553500017,0.917181708],[102.42505944099999,0.804266669000029],[102.4638778000001,0.774115302000098],[102.50953209700016,0.750311591000099],[102.5322371750001,0.742377020000049],[102.55193118600008,0.738104559000121],[102.59498131600017,0.736029364000103],[102.616384311,0.738267320000176],[102.64795983200005,0.748114325000102],[102.66716556100019,0.750311591000099],[102.78126061300006,0.730902411000088],[102.8771264980002,0.72638580900005],[102.9181421230002,0.70766836100016],[102.95378665500006,0.675848700000046],[103.05632571700002,0.558294989000132],[103.08375084700018,0.515570380000128],[103.09229576900012,0.469183661000059],[103.07471764400006,0.442328192000076],[103.03728274800002,0.420640367000189],[102.96143639400005,0.387193101000136],[102.9212345710001,0.357367255000128],[102.89909915500013,0.344183661000088],[102.8615014980002,0.33576080900005],[102.74626712300008,0.277655341000084],[102.73243248800006,0.266506252000156],[102.71566816500015,0.257635809000121],[102.6460067070001,0.242621161000088],[102.62769616000006,0.234320380000028],[102.61988366000006,0.229478257000125],[102.61198978000007,0.222154039000131],[102.59180748800011,0.186265367000047],[102.5818791020001,0.181097723000121],[102.55494225400015,0.186428127000013],[102.53663170700011,0.199774481000105],[102.50269616000006,0.236395575000046],[102.48585045700005,0.242743231000162],[102.45997155000006,0.247503973000065],[102.43726647200018,0.249172268],[102.43043053500017,0.246323960000126],[102.43962649800002,0.239243882000082],[102.4493921230002,0.236476955000029],[102.47201582100016,0.236395575000046],[102.48072350400011,0.234279690000037],[102.48658287900015,0.228908596000068],[102.49586022200006,0.215969143000152],[102.51783287900017,0.192572333000072],[102.5457462900001,0.169134833000015],[102.57789147200005,0.158514716000155],[102.61198978000007,0.173651434000064],[102.61898847700016,0.181626695000105],[102.62794030000006,0.195624091000155],[102.63306725400015,0.201646226000165],[102.64437910200016,0.209540106000148],[102.66773522200006,0.219183661000031],[102.67774498800004,0.225572007000139],[102.69548587300002,0.232082424000126],[102.74154707100016,0.226629950000088],[102.763438347,0.228949286000059],[102.81820722700009,0.253729559000035],[102.88591556100006,0.261419989000132],[102.9026798840001,0.26776764499999],[102.97291100400011,0.313137111000074],[102.99244225400011,0.318304755000085],[103.007578972,0.324652411000102],[103.05762780000012,0.372951565000122],[103.07593834700018,0.383002020000021],[103.09888756600017,0.391791083000072],[103.12256920700011,0.39793528900006],[103.14356530000005,0.400213934000035],[103.16627037900017,0.407904364000132],[103.18132571700019,0.426418361000145],[103.20150800900015,0.469183661000059],[103.2236434250001,0.4884300800001],[103.28012129000015,0.498602606000063],[103.30811608200004,0.513169664000088],[103.33578535200014,0.531683661000102],[103.36215254000015,0.536281643000123],[103.38990319100006,0.53001536700009],[103.4212345710001,0.516302802000055],[103.48096764400006,0.482326565000122],[103.54102623800004,0.434637762000065],[103.58765709700016,0.3765322940001],[103.60629316500014,0.310858466000099],[103.61752363400015,0.330267645000106],[103.62501061300011,0.33982982000019],[103.63428795700004,0.345648505000142],[103.64527428500006,0.345282294000128],[103.6557723320001,0.340399481000162],[103.6648869150001,0.33470286700009],[103.69019616000006,0.325995184000092],[103.71119225400015,0.311468817000062],[103.73047936300011,0.293443101000122],[103.74341881599999,0.277329820000148],[103.76002037900017,0.239488023000121],[103.80046634200019,0.03457265800013],[103.80836022200018,0.023504950000017],[103.81397545700011,0.018866278000161],[103.81128991,0.008530992000075],[103.80176842500012,-0.007256768999966],[103.79151451900005,-0.012546481999863],[103.77833092500006,-0.013116143999838],[103.75652103000019,-0.010674737999892],[103.67115319100004,-0.017429294999928],[103.66374759200008,-0.021742445999919],[103.66423587300001,-0.040541273999963],[103.65748131599999,-0.044732354999908],[103.64470462300008,-0.045993747999916],[103.63624108200011,-0.048028252999856],[103.62916100400017,-0.04839446399987],[103.61988366,-0.044732354999908],[103.61182701900005,-0.036879164999917],[103.600759311,-0.016900322999945],[103.59205162900017,-0.010674737999892],[103.5861922540001,-0.011081638999897],[103.57699629000015,-0.013970635999925],[103.56869550900015,-0.018568617999861],[103.56470787900015,-0.024265231999934],[103.56690514400006,-0.035210869999915],[103.57341556100008,-0.037163994999858],[103.58082116000006,-0.03777434699991],[103.5857853520001,-0.044732354999908],[103.58423912900017,-0.053155205999857],[103.58033287900017,-0.063531182999867],[103.57813561300006,-0.07402923],[103.58716881600017,-0.094984632999882],[103.57585696700019,-0.104424737999977],[103.55827884200008,-0.110772393999838],[103.544200066,-0.113702080999857],[103.5079858730002,-0.114434502999885],[103.49439537900017,-0.118422132999854],[103.48902428500016,-0.130791924999897],[103.48308353000006,-0.159437757999868],[103.46680748800006,-0.183038018999895],[103.44304446700002,-0.202080987999977],[103.41456139400012,-0.216729424999897],[103.30144290500019,-0.237562757999967],[103.27051842500005,-0.257582289999945],[103.28711998800011,-0.257745049999912],[103.31666100400015,-0.262872002999828],[103.33253014400012,-0.263848565999893],[103.34986412900011,-0.260186455999857],[103.38062584700018,-0.247002862999892],[103.39714603000007,-0.244073174999883],[103.42481530000005,-0.23495859199997],[103.45932050900014,-0.218438408999901],[103.4892684250001,-0.211521091999913],[103.50269616000006,-0.230401299999841],[103.49463951900012,-0.253594658999958],[103.45671634200008,-0.288995049999883],[103.44800866000017,-0.315362237999963],[103.43677819100017,-0.33798593499985],[103.4095158210001,-0.349704684999921],[103.3455509770001,-0.360039971999839],[103.3455509770001,-0.366875908999944],[103.37940514400006,-0.380303643999937],[103.40056399800008,-0.384535414999874],[103.41797936300006,-0.377536716999884],[103.42953535200016,-0.374932549999897],[103.48218834700018,-0.373711846999882],[103.49301191500015,-0.375420830999886],[103.50269616000006,-0.378513278999861],[103.51148522200018,-0.383558851999808],[103.52003014400012,-0.391208591999927],[103.53052819100017,-0.397149346999939],[103.55250084700012,-0.399997653999975],[103.59050540500019,-0.424574476999808],[103.59839928500017,-0.436781507999882],[103.59205162900017,-0.456312757999868],[103.57325280000012,-0.475355726999851],[103.54704837300008,-0.489841403999904],[103.51579837300018,-0.499607028999847],[103.41797936300006,-0.517754815999851],[103.40162194099999,-0.509535414999931],[103.39014733200005,-0.490411065999865],[103.37289472700016,-0.449395440999865],[103.38038170700005,-0.514336846999839],[103.38477623800011,-0.522881768999852],[103.40650475400017,-0.540785414999903],[103.41456139400012,-0.551853122999859],[103.41627037900011,-0.575372002999899],[103.4085392590001,-0.604913018999866],[103.39356530000006,-0.632012627999899],[103.37289472700016,-0.648125908999873],[103.37289472700016,-0.654880466999899],[103.38892662900017,-0.665948174999855],[103.38575280000006,-0.680922132999882],[103.36939537900017,-0.693291924999826],[103.3455509770001,-0.695896091999913],[103.35645592500005,-0.711358330999843],[103.37598717500006,-0.726820570999863],[103.39991295700011,-0.738864841999956],[103.43604576900006,-0.745293877999885],[103.43873131600006,-0.746189059999878],[103.45069420700005,-0.750095309999878],[103.46314537900015,-0.757745049999983],[103.46851647200006,-0.767836195999863],[103.46485436300004,-0.78297291499986],[103.44752037900011,-0.799411716999856],[103.44117272200016,-0.812595309999906],[103.48536217500005,-0.804945570999962],[103.50733483200005,-0.804945570999962],[103.52711022200016,-0.816013278999918],[103.53760826900006,-0.830336195999905],[103.55250084700012,-0.861097914999888],[103.56470787900015,-0.874607028999861],[103.56910241000017,-0.87566497199991],[103.58106530000006,-0.873793226999851],[103.5857853520001,-0.874607028999861],[103.5874129570001,-0.877048434999892],[103.59050540500019,-0.8851864559999],[103.59205162900017,-0.88762786299985],[103.59831790500019,-0.894463799999869],[103.604746941,-0.903578382999939],[103.61264082100008,-0.911553643999909],[103.63445071700002,-0.91936614399998],[103.6406356130001,-0.928887627999899],[103.64478600400011,-0.938571872999859],[103.65040123800006,-0.942966403999932],[103.68873131600016,-0.949151299999897],[103.70289147200018,-0.960056247999887],[103.72510826900006,-0.985609632999953],[103.73975670700005,-0.9906552059999],[103.76205488400008,-0.992771091999913],[103.78003991000004,-0.998793226999908],[103.79411868600017,-1.009454033999859],[103.80494225400015,-1.024834893999895],[103.8208113940001,-1.063083591999927],[103.82886803500006,-1.073418877999856],[103.83912194100017,-1.032810153999932],[103.8562931650001,-1.01376718499985],[103.87859134200002,-0.999281507999896],[103.90040123800011,-0.9906552059999],[103.94239342500006,-0.98202890399989],[103.95582116000017,-0.976983330999872],[104.0223087900001,-1.008233330999843],[104.04078209700012,-1.021742445999905],[104.05689537900017,-1.027520440999865],[104.10792076900005,-1.02898528399983],[104.12696373800006,-1.0316708309999],[104.18946373800011,-1.068129164999874],[104.21241295700005,-1.073337497999873],[104.25367272200005,-1.055840752999913],[104.26270592500005,-1.050551040000016],[104.31959069100017,-1.033623955999943],[104.37720787900011,-1.0316708309999],[104.38184655000006,-1.040785414999903],[104.41049238400015,-1.128350518999923],[104.39747155000006,-1.191338799999855],[104.40137780000006,-1.230889580999985],[104.41065514400012,-1.262465101999808],[104.41504967500006,-1.271905205999914],[104.44499759200006,-1.304620049999841],[104.44922936300006,-1.316013278999904],[104.4560653000001,-1.379082940999908],[104.45435631600017,-1.531019789999945],[104.46273847700016,-1.573500257999825],[104.47925866000006,-1.615817966999913],[104.517344597,-1.688409112999835],[104.5315861340001,-1.734063408999944],[104.53353925900015,-1.740492445999877],[104.53760826900012,-1.760674737999892],[104.53736412900017,-1.772149346999853],[104.53345787900017,-1.783461196],[104.5174259770001,-1.809340101999837],[104.51238040500007,-1.821465752999842],[104.48902428500017,-1.860039971999896],[104.48340905000006,-1.881442966999856],[104.48406009200019,-1.897067966999842],[104.48682701900006,-1.91033294099995],[104.49708092500012,-1.935967705999843],[104.5135197270001,-1.918633721999853],[104.52735436300011,-1.867445570999891],[104.53736412900017,-1.854099216999884],[104.5644637380001,-1.857679945999948],[104.58668053500017,-1.877211195999919],[104.60572350400017,-1.899021091999884],[104.62354576900006,-1.909356377999884],[104.63697350400011,-1.921563408999873],[104.62964928500006,-1.949151299999883],[104.61426842500005,-1.978204033999944],[104.60279381600004,-1.994724216999842],[104.59473717500012,-2.003024997999915],[104.5874129570001,-2.012790622999859],[104.58887780000005,-2.019463799999912],[104.60621178500006,-2.018487237999835],[104.62061608200011,-2.010430596999981],[104.64258873800011,-1.981703382999854],[104.65455162900017,-1.970147393999824],[104.65984134200002,-1.990166924999883],[104.66041100400011,-2.012872002999842],[104.663828972,-2.031345309999864],[104.67790774800007,-2.038995049999883],[104.68083743600008,-2.040134372999916],[104.682871941,-2.04241301899998],[104.68580162900011,-2.044691664999874],[104.69190514400012,-2.045830987999906],[104.69467207100014,-2.043715101999808],[104.69678795700011,-2.038995049999883],[104.69996178500006,-2.03435637799987],[104.70582116000011,-2.03232187299993],[104.71045983200011,-2.029473565999893],[104.72917728000019,-2.011651299999826],[104.772634311,-1.997735283999844],[104.81462649800018,-2.008396091999956],[104.85027103000007,-2.037855726999851],[104.874278191,-2.080010674999897],[104.88282311300006,-2.125664971999839],[104.87614993600008,-2.164727471999896],[104.8597111340001,-2.199395440999865],[104.82829837300008,-2.246677341999927],[104.75700931100008,-2.330498955999829],[104.74341881600017,-2.341241143999852],[104.7268986340001,-2.344496351999894],[104.68474368600008,-2.345798434999892],[104.67139733200005,-2.351250908999916],[104.65723717500005,-2.364515882999854],[104.6233830090001,-2.387465101999851],[104.60621178500006,-2.40211353999986],[104.67603600400017,-2.371758721999882],[104.70964603000019,-2.370863539999888],[104.72917728000019,-2.408949476999879],[104.73015384200008,-2.452732028999847],[104.72681725400011,-2.478122653999861],[104.71314537900011,-2.511488539999931],[104.71314537900011,-2.557793877999828],[104.70923912900011,-2.573988539999874],[104.69874108200005,-2.582207940999879],[104.68091881600006,-2.590997002999842],[104.66098066500015,-2.597832940999865],[104.64380944100006,-2.600762627999885],[104.6328231130001,-2.605157158999873],[104.60279381600004,-2.626641533999887],[104.56950931100002,-2.656426690999893],[104.54867597700016,-2.684828382999839],[104.5359806650001,-2.719333591999842],[104.53736412900017,-2.759047132999939],[104.5354110040001,-2.757256768999952],[104.53321373800004,-2.762627862999835],[104.5310978520001,-2.772637627999899],[104.5472111340001,-2.759535415000016],[104.56275475400011,-2.738376559999935],[104.5743921230002,-2.714532158999858],[104.57886803500017,-2.693536065999822],[104.58513431100002,-2.677666924999969],[104.59986412900011,-2.663750908999987],[104.633555535,-2.642347914999945],[104.70281009200018,-2.609470309999864],[104.73145592500006,-2.590752862999892],[104.7502547540001,-2.560316664999931],[104.76856530000005,-2.494724216999912],[104.77076256600017,-2.47380950299987],[104.76823978000007,-2.430108330999871],[104.77182050900008,-2.414239190999936],[104.78435306100013,-2.395277601999837],[104.81641686300011,-2.364922783999859],[104.83220462300002,-2.345310153999904],[104.84595787900017,-2.302178643999966],[104.8626408210001,-2.288750908999972],[104.88331139400012,-2.284926039999959],[104.90105228000013,-2.292901299999841],[104.90870201900006,-2.312676690999851],[104.90870201900006,-2.337334893999852],[104.91163170700005,-2.360284112999835],[104.92896569100006,-2.374769789999888],[104.93091881600012,-2.351169528999932],[104.94141686300006,-2.33619557099999],[104.95826256600017,-2.328545830999886],[104.98023522200018,-2.326429945999877],[105.00196373800006,-2.331963799999883],[105.0164494150001,-2.344659112999849],[105.02906334700018,-2.358493747999859],[105.04509524800007,-2.367364190999979],[105.05396569100006,-2.3671200499999],[105.07520592500012,-2.361504815999851],[105.08668053500006,-2.361260674999912],[105.09701582100014,-2.365411065999936],[105.11133873800006,-2.377699476999808],[105.11670983200011,-2.380466403999861],[105.13843834700018,-2.376234632999854],[105.20215905000012,-2.347426039999903],[105.22364342500006,-2.343438408999844],[105.24691816500015,-2.342868747999873],[105.26929772200018,-2.34734465899983],[105.30738366000017,-2.368829033999944],[105.33106530000012,-2.373142184999864],[105.3802189460001,-2.374769789999888],[105.46680748800004,-2.388441664999917],[105.5112410820001,-2.390801690999879],[105.5350041020001,-2.394789320999948],[105.55209394600016,-2.40211353999986],[105.55209394600016,-2.408949476999879],[105.54883873800011,-2.409356377999885],[105.54175866000004,-2.408786716999913],[105.5384220710001,-2.408949476999879],[105.54900149800008,-2.421156507999854],[105.56381269600016,-2.414971612999963],[105.57886803500006,-2.402276299999826],[105.59001712300008,-2.395277601999837],[105.60857181100008,-2.39617278399983],[105.62378991000006,-2.401788018999838],[105.63331139400006,-2.416192315999978],[105.63477623800011,-2.443047783999887],[105.6292423840001,-2.464613539999974],[105.61117597700014,-2.505954684999921],[105.60743248800006,-2.528741143999937],[105.60840905000012,-2.552341403999889],[105.61207116000017,-2.574151299999841],[105.61841881600012,-2.594903252999927],[105.6279403000001,-2.615004164999888],[105.63851972700016,-2.630791924999841],[105.65447024800008,-2.648614190999908],[105.67310631600006,-2.663018487999878],[105.70199629000014,-2.671319268999852],[105.7225041020001,-2.681084893999895],[105.73340905000006,-2.683282158999887],[105.757090691,-2.682875257999882],[105.76807701900006,-2.684747002999856],[105.77808678500006,-2.690118096999896],[105.79493248800006,-2.724053643999937],[105.79175866000017,-2.862074476999823],[105.80958092500006,-2.899021091999856],[105.8401798840001,-2.930108330999872],[105.87924238400015,-2.951104424999897],[105.9226180350001,-2.957696221999882],[105.93327884200002,-2.955987237999878],[105.95183353,-2.950941664999931],[105.96314537900005,-2.950290622999887],[105.97510826900006,-2.952813408999901],[105.99097741000017,-2.961846612999821],[106.0008244150001,-2.963799737999863],[106.01563561300006,-2.969496351999936],[106.02849368600019,-2.982842705999857],[106.04558353000007,-3.012302341999842],[106.0540470710001,-3.046970309999921],[106.05347741,-3.12859465899983],[106.05933678500017,-3.170017184999849],[106.06373131600006,-3.17986419099995],[106.0765080090001,-3.200860283999986],[106.07976321700002,-3.211521091999927],[106.07935631600006,-3.223728122999916],[106.07422936300011,-3.244724216999941],[106.07300866000011,-3.255547783999858],[106.06316165500007,-3.266696872999873],[105.99724368600002,-3.300225518999909],[105.9627384770001,-3.328789971999981],[105.9290470710001,-3.365411065999837],[105.90023847700016,-3.407159112999949],[105.881114129,-3.451104424999897],[105.81959069100006,-3.672539971999853],[105.82569420700005,-3.711521091999927],[105.85108483200005,-3.74334075299987],[105.9334416020001,-3.802341403999989],[105.9524845710001,-3.833754165000016],[105.95289147200018,-3.869073174999869],[105.93580162900005,-3.90984465899983],[105.87012780000006,-4.004164320999806],[105.86060631600004,-4.036716403999876],[105.85523522200018,-4.070896091999855],[105.83130944100006,-4.140232028999904],[105.8279728520001,-4.157972914999988],[105.81275475400005,-4.238702080999914],[105.81421959700018,-4.273125908999944],[105.81902103000006,-4.300225518999881],[105.82960045700011,-4.324476820999876],[105.8460392590001,-4.353204033999916],[105.85743248800006,-4.381280205999829],[105.85328209700005,-4.403903903999975],[105.8681746750001,-4.412041924999912],[105.87916100400017,-4.42489999799993],[105.89478600400005,-4.458428643999881],[105.89698326900012,-4.455498955999857],[105.89747155000012,-4.454522393999881],[105.90162194100006,-4.451755467],[105.90626061300006,-4.469333591999856],[105.89869225400005,-4.511976820999877],[105.90943444100006,-4.546644789999945],[105.9026798840001,-4.565687757999939],[105.89291425900008,-4.585137627999855],[105.887950066,-4.601820570999891],[105.89063561300011,-4.619398695999833],[105.90503991000017,-4.670098565999893],[105.89047285200016,-4.677829684999892],[105.88184655000012,-4.69622161299985],[105.86866295700011,-4.780938408999845],[105.86744225400017,-4.824639580999914],[105.8724064460001,-4.848565362999892],[105.90845787900015,-4.910332940999893],[105.90967858200011,-4.943129164999903],[105.89682050900014,-4.975192966999884],[105.87956790500007,-5.007582289999888],[105.86744225400017,-5.041273695999806],[105.86182701900005,-5.126560153999861],[105.86744225400017,-5.211358330999828],[105.86451256600006,-5.255547783999901],[105.83952884200002,-5.337172132999825],[105.83334394600016,-5.383233330999857],[105.83961022199999,-5.468926690999822],[105.836192254,-5.491794528999918],[105.8240666020001,-5.530450127999884],[105.83277428500016,-5.592543226999823],[105.83334394600016,-5.633721612999878],[105.82960045700011,-5.654717705999829],[105.81128991000017,-5.696872653999876],[105.805430535,-5.718438408999873],[105.79363040500006,-5.795586846999825],[105.7825626960001,-5.8285458309999],[105.76441491,-5.856215101999808],[105.73357181100008,-5.890313408999901],[105.72974694100006,-5.896661065999837],[105.71989993600019,-5.887139580999843],[105.719493035,-5.848728122999916],[105.71290123800006,-5.832126559999864],[105.6810001960001,-5.819024346999896],[105.60206139400006,-5.809828382999839],[105.58619225400017,-5.790785414999931],[105.5808211600001,-5.713148695999806],[105.56861412900005,-5.680352471999896],[105.54525800900015,-5.657647393999851],[105.53988691500014,-5.662692966999884],[105.53028405000012,-5.675551039999903],[105.52540123800011,-5.678806247999859],[105.51498457100014,-5.677829684999877],[105.50733483200011,-5.67278411299985],[105.50074303500006,-5.667087497999859],[105.493907097,-5.664483330999872],[105.48357181100019,-5.658949476999851],[105.44971764400006,-5.623467705999857],[105.39820397200006,-5.581312757999824],[105.37598717500012,-5.557712497999873],[105.31072024800018,-5.465997002999899],[105.2796330090001,-5.444268487999835],[105.25049889400006,-5.459079684999892],[105.246348504,-5.478773695999848],[105.25700931100002,-5.517266533999845],[105.24708092500012,-5.537530205999842],[105.24789472700016,-5.541273695999876],[105.23878014400006,-5.568942966999869],[105.23617597700016,-5.571954033999873],[105.2308048840001,-5.576348565999865],[105.21900475400005,-5.574802341999913],[105.20215905000012,-5.568942966999869],[105.18002363400015,-5.5804989559999],[105.18018639400012,-5.596937757999811],[105.1897892590001,-5.617282809999892],[105.19581139400012,-5.640313408999859],[105.19581139400012,-5.667901299999869],[105.19922936300011,-5.678887627999841],[105.20671634200006,-5.686944268999866],[105.21371504000015,-5.692966403999876],[105.21631920700004,-5.698011976999808],[105.20191491000017,-5.706801039999874],[105.17546634200019,-5.715590101999837],[105.15479576900012,-5.726820570999848],[105.15805097700014,-5.742933851999823],[105.17798912900005,-5.750420830999871],[105.20215905000012,-5.753594658999845],[105.21534264400006,-5.759047132999882],[105.20215905000012,-5.773695570999806],[105.18360436300011,-5.782159112999835],[105.16325931100002,-5.786065362999835],[105.13062584700018,-5.787367445999834],[105.118418816,-5.782159112999835],[105.07300866,-5.74635182099982],[104.90105228000013,-5.671319268999881],[104.83863366000017,-5.623467705999857],[104.79078209700006,-5.609470309999891],[104.76929772200012,-5.591973565999851],[104.70972741000017,-5.525811455999857],[104.69841556100019,-5.515557549999841],[104.68132571700008,-5.506931247999916],[104.64226321700018,-5.497816664999931],[104.62281334700012,-5.490655205999886],[104.61304772200016,-5.4789364559999],[104.60621178500006,-5.4789364559999],[104.60816491000011,-5.483330987999892],[104.61304772200016,-5.499281507999811],[104.58708743600008,-5.499281507999811],[104.56763756600017,-5.501234632999854],[104.55144290500002,-5.508477471999868],[104.53419030000012,-5.5238583309999],[104.52849368600002,-5.540459893999866],[104.53321373800004,-5.559828382999882],[104.68873131600004,-5.807875257999882],[104.69776451900005,-5.845391533999901],[104.70240319100017,-5.886976820999877],[104.71387780000012,-5.910088799999826],[104.716075066,-5.921075127999885],[104.71094811300011,-5.927829684999921],[104.69906660200016,-5.930433851999823],[104.56128991000006,-5.928317966999898],[104.55339603000006,-5.919122002999842],[104.558360222,-5.883558851999865],[104.55372155000012,-5.86003997199991],[104.54175866000016,-5.841892184999907],[104.4887801440001,-5.796970309999907],[104.47877037900011,-5.790215752999869],[104.46314537900015,-5.782810153999876],[104.45671634200002,-5.772067966999869],[104.44922936300006,-5.752618096999868],[104.38404381600017,-5.692478122999887],[104.36768639400006,-5.685723565999851],[104.29769941500015,-5.643324476999865],[104.29078209700006,-5.6254208309999],[104.31446373800006,-5.605075778999904],[104.30152428500017,-5.585625908999916],[104.25798587300002,-5.539808851999823],[104.2361759770001,-5.527276299999826],[104.22478274800018,-5.524021091999869],[104.2156681650001,-5.522719007999867],[104.20671634200018,-5.520440362999892],[104.19532311300006,-5.513604424999882],[104.18978925900008,-5.505303643999895],[104.18490644600016,-5.493747653999876],[104.17750084700005,-5.483330987999892],[104.1448673840001,-5.473890882999868],[104.12663821700002,-5.461683851999808],[104.11085045700011,-5.446221612999878],[104.03882897200006,-5.356622002999913],[103.99317467500012,-5.312676690999879],[103.9881291020001,-5.296319268999865],[103.99976647200018,-5.276950778999847],[104.00245201900006,-5.262872002999899],[103.99138431100002,-5.246351820999834],[103.9751082690001,-5.232354424999869],[103.96257571700019,-5.225030205999872],[103.94109134200006,-5.222832940999878],[103.91879316500015,-5.223077080999829],[103.90137780000006,-5.218519789999874],[103.89429772200012,-5.201429945999834],[103.8973087900001,-5.19166432099989],[103.91098066500015,-5.172295830999872],[103.9140731130001,-5.160088799999897],[103.91342207100016,-5.139255466999913],[103.91187584700005,-5.130791924999869],[103.90845787900011,-5.123223565999837],[103.89112389400006,-5.104180596999839],[103.83228600400017,-5.068047783999887],[103.80762780000006,-5.04192473799985],[103.79216556100002,-5.030938408999887],[103.7737736340001,-5.026462497999916],[103.7482202480002,-5.026543877999899],[103.73682701900006,-5.023695570999862],[103.72608483200005,-5.016778252999856],[103.72584069100017,-5.007012627999828],[103.73552493600008,-4.977959893999852],[103.73292076900006,-4.971774997999873],[103.72681725400015,-4.968682549999883],[103.71745853000002,-4.961846612999878],[103.7054142590001,-4.955010674999855],[103.69206790500019,-4.951918226999865],[103.68165123800011,-4.954685153999918],[103.6717228520001,-4.961521091999856],[103.65406334700018,-4.979180596999868],[103.630625847,-4.93499114399988],[103.61695397200018,-4.919854424999883],[103.59205162900017,-4.910332940999893],[103.58464603000007,-4.909600518999866],[103.56128991000017,-4.910332940999893],[103.55355879000015,-4.908868096999839],[103.55005944100017,-4.905368747999929],[103.54786217500006,-4.901055596999839],[103.544200066,-4.897230726999837],[103.53370201900006,-4.890232028999932],[103.51832115999999,-4.875664971999825],[103.51002037900011,-4.869317315999879],[103.50001061300006,-4.863946221999839],[103.48780358200004,-4.859144790000015],[103.4747827480002,-4.856052341999941],[103.461680535,-4.855726820999919],[103.44988040500006,-4.859795830999971],[103.43702233200011,-4.866306247999887],[103.42481530000005,-4.870863539999917],[103.41456139400012,-4.869317315999879],[103.40984134200018,-4.860039971999839],[103.3934025400001,-4.814141533999859],[103.38599694100006,-4.804945570999877],[103.37818444100006,-4.798923434999878],[103.3592228520001,-4.787367445999848],[103.34449303500004,-4.800469658999915],[103.32886803500006,-4.79412200299997],[103.3165796230002,-4.776543877999941],[103.3035587900001,-4.734144789999874],[103.2845158210001,-4.715020440999893],[103.17286217500006,-4.617933851999865],[103.04997806100017,-4.543064059999892],[102.92042076900006,-4.492608330999872],[102.9043074880001,-4.477797132999896],[102.88990319100006,-4.440362237999864],[102.87631269600008,-4.420586846999839],[102.70118248800011,-4.270440362999963],[102.5275171230002,-4.151136976999894],[102.36622155000012,-4.026462497999929],[102.33936608200005,-4.011325778999932],[102.31251061300006,-3.991469007999839],[102.29175866000016,-3.96542734199987],[102.28353925900015,-3.930922132999938],[102.28785241000017,-3.915297132999953],[102.30665123800011,-3.884698174999855],[102.31088300900015,-3.865411065999822],[102.30453535200009,-3.845147393999895],[102.27409915500007,-3.810479424999826],[102.26319420700005,-3.793145440999837],[102.26107832100016,-3.781914971999925],[102.26172936300011,-3.772556247999901],[102.26319420700005,-3.764825127999885],[102.26319420700005,-3.758396091999884],[102.25766035200016,-3.746840101999851],[102.25082441500015,-3.737725518999866],[102.24512780000005,-3.727959893999823],[102.24268639400012,-3.714613539999903],[102.24048912900011,-3.678480726999879],[102.23438561300006,-3.659356377999898],[102.22217858200004,-3.642836195999834],[102.06568444100017,-3.550469658999901],[101.87696373800006,-3.421319268999881],[101.63746178500017,-3.250664971999882],[101.61133873800006,-3.224541924999826],[101.58448326900005,-3.176853122999859],[101.56495201900006,-3.162286065999922],[101.41895592500006,-2.927341403999904],[101.40796959700018,-2.885511976999879],[101.32699629000015,-2.739190362999935],[101.29932701900006,-2.707614841999941],[101.26254316500014,-2.683282158999887],[101.17839603,-2.641289971999896],[101.13982181100008,-2.616875908999859],[101.10482832100016,-2.587090752999856],[101.01783287900017,-2.467950127999828],[100.923106316,-2.333428643999937],[100.83952884200008,-2.167250257999811],[100.8339949880001,-2.159112237999892],[100.83155358200011,-2.141289971999825],[100.84571373800011,-2.119398695999877],[100.8782658210001,-2.080010674999897],[100.8872176440001,-2.037204684999907],[100.88135826900006,-1.994886976999808],[100.87061608200004,-1.953301690999822],[100.86459394600016,-1.912367445999976],[100.85759524800008,-1.891859632999839],[100.84107506600017,-1.870375257999825],[100.78394616,-1.815524997999987],[100.77605228,-1.805759372999873],[100.7713322270001,-1.79558684699991],[100.76465905000005,-1.77206796699987],[100.71843509200008,-1.698174737999949],[100.6683048840001,-1.639743747999887],[100.65447024800008,-1.6176083309999],[100.64551842500005,-1.594008070999877],[100.63656660200009,-1.551364841999927],[100.63257897200006,-1.507989190999879],[100.62435957100016,-1.497491143999909],[100.58464603000002,-1.460381768999895],[100.57056725400011,-1.442559502999828],[100.57642662900011,-1.437758070999919],[100.5799259770001,-1.431898695999891],[100.5842391290001,-1.415785414999917],[100.58171634200019,-1.41668059699991],[100.57325280000006,-1.40764739399998],[100.57056725400011,-1.408379815999837],[100.57276451900006,-1.404473565999922],[100.57740319099999,-1.398125908999901],[100.58187910200014,-1.393649997999844],[100.5842391290001,-1.394707940999893],[100.57683353000007,-1.355645440999922],[100.5691837900001,-1.330824476999879],[100.55990644600016,-1.319594007999882],[100.539805535,-1.314222914999917],[100.49870853000002,-1.290297132999854],[100.47917728000007,-1.282972914999945],[100.47348066500015,-1.27849700299997],[100.46412194100006,-1.268161716999884],[100.45826256600017,-1.263848565999879],[100.45557701900012,-1.26572030999985],[100.4534611340001,-1.269707940999822],[100.45045006600017,-1.271905205999914],[100.42579186300011,-1.276055596999939],[100.41553795700005,-1.274509372999901],[100.40601647200016,-1.264418226999851],[100.40967858200011,-1.258558851999894],[100.42652428500004,-1.243910414999974],[100.4318139980002,-1.234551690999865],[100.43360436300011,-1.228692315999822],[100.43327884200006,-1.206719658999901],[100.42741946700014,-1.19255950299987],[100.38493899800008,-1.155205987999821],[100.37012780000006,-1.160902601999894],[100.3660587900001,-1.15048593499999],[100.36801191500015,-1.133721612999892],[100.3712671230002,-1.121026299999841],[100.37419681100002,-1.117608330999829],[100.3787541020001,-1.115166924999969],[100.38306725400015,-1.11142343499985],[100.38493899800008,-1.103936455999886],[100.3833113940001,-1.09677499799993],[100.3712671230002,-1.073337497999873],[100.38103274800008,-1.068617445999863],[100.3919376960001,-1.067071221999825],[100.40284264400012,-1.068617445999863],[100.41285241000017,-1.073337497999873],[100.4163517590001,-1.064629815999965],[100.41773522200006,-1.056247653999918],[100.4163517590001,-1.047784112999963],[100.41285241000017,-1.039157809999878],[100.39096113400015,-1.041599216999913],[100.37989342500012,-1.030450127999884],[100.35303795700005,-0.977146091999927],[100.3440047540001,-0.908786716999856],[100.32789147200005,-0.858819268999909],[100.30144290500006,-0.816338799999841],[100.15967858200005,-0.667901299999897],[100.13404381599999,-0.634698174999883],[100.09058678500017,-0.557224216999899],[100.03492272200006,-0.487969658999845],[100.0013126960001,-0.456312757999868],[99.93043053500004,-0.409437757999811],[99.91944420700005,-0.398044528999932],[99.9103296230002,-0.375176690999837],[99.88884524800008,-0.357598565999908],[99.8435978520001,-0.332126559999892],[99.82398522200016,-0.313409112999921],[99.81381269600008,-0.294610283999887],[99.81006920700011,-0.273370049999897],[99.80958092500012,-0.247165622999859],[99.80591881600006,-0.227797132999854],[99.79721113400015,-0.215915622999887],[99.78598066500015,-0.206638278999847],[99.77540123800011,-0.195570570999905],[99.76587975400011,-0.181247653999918],[99.75945071700019,-0.168389580999886],[99.7560327480002,-0.154717705999943],[99.75489342500005,-0.13730234199997],[99.75798587300002,-0.115817966999856],[99.7638452480002,-0.095879815999879],[99.76677493600019,-0.075372002999828],[99.76172936300006,-0.052178643999881],[99.74724368600002,-0.029839776999864],[99.68946373800011,0.020086981000091],[99.63282311300011,0.08100006700009],[99.61085045700011,0.098578192000119],[99.53402754000015,0.140326239000075],[99.49048912900017,0.155422268000081],[99.45020592500006,0.161281643000109],[99.42693118600008,0.161363023000192],[99.40821373800011,0.163885809000107],[99.39258873800011,0.171698309000021],[99.37818444100006,0.187974351000051],[99.35661868600002,0.225653387000122],[99.34107506600006,0.238755601000094],[99.31617272200018,0.242621161000088],[99.29656009200002,0.237697658000044],[99.26059004000014,0.219875393000066],[99.24415123800006,0.215969143000152],[99.23340905000005,0.217027085000112],[99.22193444100012,0.220363674000055],[99.21127363400015,0.225653387000122],[99.20313561300006,0.23273346600017],[99.19369550900015,0.243150132000068],[99.18881269600016,0.245591539000102],[99.18230228000007,0.244086005000057],[99.168711785,0.242621161000088],[99.16211998800004,0.245266018000081],[99.14234459699999,0.258246161000073],[99.13795006600006,0.263088283000144],[99.13933353000013,0.273749091000084],[99.15308678500004,0.287176825000088],[99.15845787900017,0.29783763200011],[99.15845787900017,0.320013739000089],[99.14844811300011,0.333156643000052],[99.13152103000002,0.340562242000118],[99.11060631600017,0.345648505000142],[99.12875410200016,0.391791083000072],[99.13233483200005,0.412054755],[99.12720787900011,0.484361070000148],[99.1225692070001,0.509019273000135],[99.11060631600017,0.52383047100011],[99.09839928500017,0.514227606000048],[99.09734134200002,0.530747789000117],[99.1038517590001,0.578436591000084],[99.10027103000007,0.601752020000077],[99.08985436300006,0.62201569200009],[99.07276451900012,0.630804755000057],[99.04859459699999,0.619940497000158],[99.04004967500006,0.650458075000103],[99.04737389400012,0.73973216400006],[99.04175866000011,0.777044989000117],[99.00611412900011,0.818752346000153],[98.99732506600017,0.825425523000121],[98.981211785,0.83173248900006],[98.97673587300001,0.847357489000132],[98.9803166020001,0.88621653900006],[98.97584069100006,0.920843817000048],[98.9173283210001,1.117173570000105],[98.85059655000012,1.277289130000057],[98.83904056100019,1.301255601000193],[98.8369246750001,1.311468817000048],[98.83887780000006,1.321356512000136],[98.84294681100019,1.33344147300015],[98.8445744150001,1.345892645000077],[98.84001712300008,1.356756903000147],[98.79908287900017,1.398749091000127],[98.78858483200005,1.413804429000052],[98.77540123800006,1.45156484600011],[98.770274285,1.474595445000091],[98.76807701900012,1.493597723000093],[98.76465905000012,1.498846747000158],[98.75652103000019,1.504461981000162],[98.74626712300008,1.508937893000137],[98.73698978000002,1.510687567000133],[98.73023522200018,1.514390367000161],[98.725840691,1.523627020000049],[98.7202254570001,1.545396226000193],[98.70964603000007,1.564113674000069],[98.7112736340001,1.569566148000192],[98.72706139400012,1.572170315000108],[98.73365319100012,1.569891669000043],[98.74040774800002,1.563910223000107],[98.74537194100017,1.556138414000116],[98.7474064460001,1.548529364000075],[98.7534285820001,1.53563060100015],[98.7664494150001,1.549017645000063],[98.78858483200005,1.586411851000193],[98.79818769600016,1.599066473000079],[98.81885826900006,1.61969635600002],[98.8226017590001,1.630438544000114],[98.8235783210001,1.666693427000041],[98.81910241,1.682318427000027],[98.80591881600017,1.688869533000101],[98.78809655000012,1.691351630000113],[98.7837020190001,1.699042059000135],[98.7845158210001,1.711859442000076],[98.78296959700018,1.729722398000135],[98.77393639400006,1.748602606000162],[98.7601017590001,1.764146226000164],[98.72706139400012,1.791896877000141],[98.7150171230002,1.784979559000064],[98.7111108730002,1.779120184000106],[98.71273847700009,1.763902085000126],[98.71509850400011,1.763983466000027],[98.72494550900008,1.756822007000068],[98.72706139400012,1.756496486000145],[98.7267358730002,1.749416408],[98.7215275400001,1.739081122000172],[98.7202254570001,1.733465887000165],[98.7111108730002,1.725775458000058],[98.69068444100006,1.736273505000127],[98.65821373800006,1.763902085000126],[98.57618248800006,1.888088283000087],[98.53516686300006,1.93646881700009],[98.44402103000002,1.991156317000133],[98.42611738400015,1.997626044000143],[98.40699303500011,2.001939195000134],[98.38786868600013,2.003485419000085],[98.36597741000016,2.002875067000119],[98.35450280000006,2.003810940000108],[98.34961998800004,2.007228908000116],[98.349375847,2.021429755000127],[98.34717858200004,2.028998114000089],[98.3411564460001,2.033392645000063],[98.32984459700006,2.038275458000129],[98.31177819100006,2.039618231000119],[98.28882897200006,2.037339585000054],[98.26921634200006,2.038072007000082],[98.26091556100019,2.048529364000061],[98.25611412900011,2.073309637000122],[98.24366295700011,2.087551174000126],[98.2094832690001,2.109930731000063],[98.15259850400017,2.156927802000084],[98.08961022200006,2.195868231000162],[97.98357181100019,2.24437083500014],[97.95590254000008,2.271714585000026],[97.93336022200012,2.269761459999984],[97.8811141290001,2.250311591000155],[97.86687259200019,2.247463283000116],[97.85075931100013,2.251206773000149],[97.82943769600016,2.264227606000134],[97.81771894600014,2.258937893000066],[97.80990644600016,2.263657945000162],[97.80339603000019,2.272040106000048],[97.79476972700016,2.277818101000193],[97.78614342500006,2.278021552000055],[97.76856530000006,2.273016669000114],[97.75733483200004,2.271673895000035],[97.7443953790001,2.281073309000135],[97.70606530000012,2.346136786000087],[97.67644290500007,2.37592194200009],[97.66358483200004,2.392075914000145],[97.65821373800006,2.411566473000135],[97.66114342500012,2.527329820000148],[97.64405358200005,2.66889069200009],[97.60889733200011,2.848618882000096],[97.60271243600002,2.866197007000125],[97.59278405000012,2.873683986000017],[97.57740319100017,2.87592194200009],[97.53532962300018,2.888251044000043],[97.48462975400017,2.91303131700009],[97.46387780000005,2.919623113999989],[97.44166100400011,2.922105210000012],[97.42212975400011,2.928371486000145],[97.40503991000017,2.943345445000176],[97.33204186300004,3.0313988300001],[97.31348717500006,3.061672268000095],[97.30079186300011,3.09341054900014],[97.2851668630001,3.178452867000161],[97.27076256600006,3.214422919000057],[97.24048912900017,3.238023179000081],[97.20671634200008,3.240790106000133],[97.18262780000006,3.245998440000051],[97.17164147200016,3.25482819200009],[97.1663517590001,3.267971096000153],[97.01856530000012,3.522691148000192],[96.99976647200005,3.545884507000139],[96.9217228520001,3.605698960000012],[96.903493686,3.634670315],[96.89210045700005,3.666489976000121],[96.88355553500006,3.682440497000129],[96.87305748800006,3.689276434000063],[96.8660587900001,3.692124742000189],[96.84205162900015,3.706732489000117],[96.83814537900017,3.712632554000052],[96.828868035,3.716620184000121],[96.817637566,3.719916083000072],[96.80787194100017,3.724066473000107],[96.77800540500017,3.742987372000115],[96.76050866000006,3.748683986000103],[96.55982506600017,3.746568101000179],[96.5198673840001,3.75482819200009],[96.47950280000005,3.778713283000144],[96.430349155,3.825262762000179],[96.27930748800011,4.025783596000082],[96.21143639400012,4.093939520000106],[96.20753014400012,4.100490627000099],[96.20191491,4.115179755000099],[96.19776451900006,4.121283270000077],[96.19092858200005,4.125962632000096],[96.17530358200004,4.132717190000136],[96.16765384200002,4.138373114000117],[96.15967858200005,4.14130280200014],[96.14714603000007,4.142482815000079],[96.13526451900012,4.14166901200015],[96.13013756599999,4.138373114000117],[96.12517337300008,4.136419989000074],[96.1137801440001,4.147162177000098],[96.06519616000004,4.205023505000099],[96.04965254000015,4.21430084800015],[96.03077233200011,4.217474677000112],[96.01002037900011,4.225653387000122],[95.90349368600008,4.344712632000082],[95.81413821700002,4.432847398000163],[95.80713951900006,4.446112372000101],[95.75896243600019,4.484442450000131],[95.72584069100017,4.531683661000102],[95.6565047540001,4.579982815000122],[95.61654707100016,4.628404039000117],[95.59896894600016,4.635199286000144],[95.57618248800011,4.634670315000079],[95.56544030000012,4.637518622000115],[95.56088300900015,4.645738023000192],[95.56324303499999,4.651556708000072],[95.57292728000007,4.660711981000134],[95.57520592500006,4.666571356000176],[95.57252037900017,4.673814195000105],[95.56666100400011,4.675197658000087],[95.55958092500006,4.674627997000115],[95.55404707100008,4.676214911000145],[95.52686608200011,4.697251695000176],[95.51514733200005,4.713527736000116],[95.48910566500014,4.762437242000188],[95.46843509200002,4.78949616100013],[95.45997155000012,4.797186591000155],[95.4412541020001,4.810614325000145],[95.43433678500006,4.817124742000146],[95.42628014400012,4.827337958000086],[95.42457116000011,4.832342841000127],[95.42505944100016,4.837347723000065],[95.42383873800004,4.847479559000121],[95.41846764400012,4.862494208000143],[95.40577233200004,4.887681382000109],[95.40015709700005,4.910549221000124],[95.38599694099999,4.935126044000128],[95.37989342500006,4.960435289000173],[95.348887566,5.037502346000139],[95.33887780000012,5.05353424700013],[95.32447350400017,5.070298570000148],[95.31283613400015,5.087144273000149],[95.30591881600006,5.103583075000145],[95.29688561300006,5.116400458000086],[95.27979576900012,5.122503973000079],[95.2991642590001,5.150336005000128],[95.30160566500014,5.172430731000119],[95.29127037900011,5.191636460000083],[95.27295983200005,5.211167710000054],[95.2560327480002,5.223374742000132],[95.24870853000019,5.231024481000148],[95.24561608200011,5.241644598000107],[95.2439884770001,5.256048895000077],[95.239512566,5.270819403000147],[95.23194420700005,5.282294012000179],[95.22144615999999,5.286932684000121],[95.19898522200012,5.292873440000136],[95.20533287900011,5.307562567000147],[95.22217858200005,5.326402085000083],[95.23194420700005,5.344631252000155],[95.23389733200011,5.359320380000071],[95.24529056100019,5.379136460000083],[95.2517195970001,5.395575262000165],[95.25359134200008,5.411566473000079],[95.24968509200006,5.424953518000081],[95.23194420700005,5.450751044000114],[95.24545332100016,5.460516669000143],[95.23682701900005,5.474025783000116],[95.22388756600006,5.489569403000118],[95.22510826900006,5.505438544000143],[95.20362389400012,5.533677476000122],[95.1972762380001,5.546372789000173],[95.2127384770001,5.573146877000084],[95.22388756600006,5.580267645000133],[95.23878014400012,5.5743675800001],[95.25049889400006,5.579046942000119],[95.26042728000019,5.577541408000158],[95.26970462300002,5.574408270000092],[95.27979576900012,5.5743675800001],[95.288340691,5.578762111000088],[95.30494225400017,5.591986395000119],[95.31576582100008,5.597967841000141],[95.33529707100016,5.612127997000157],[95.34522545700004,5.615301825000131],[95.3588973320001,5.616888739000061],[95.3691512380001,5.621283270000134],[95.41285241,5.649562893000095],[95.43189537900011,5.65468984600011],[95.44971764400006,5.649562893000095],[95.47706139400005,5.623602606000105],[95.49431399800008,5.612290757000125],[95.50269616,5.605129299000083]]],[[[95.17741946700019,5.628363348000107],[95.19109134200002,5.608465887000108],[95.1805119150001,5.609198309000135],[95.17139733200011,5.607245184000178],[95.16325931100006,5.602443752000099],[95.15626061300011,5.594794012000165],[95.14527428500006,5.604234117000175],[95.13379967500006,5.606187242000132],[95.12232506600006,5.606756903000104],[95.11158287900011,5.611883856000119],[95.10914147200018,5.622015692000076],[95.11817467500012,5.631659247000144],[95.12989342500006,5.640041408000101],[95.13575280000006,5.646307684000149],[95.14177493600002,5.66412995000013],[95.15503991000017,5.656683661000145],[95.17741946700019,5.628363348000107]]],[[[95.0809025400001,5.740952867000146],[95.10230553500017,5.720200914000145],[95.12208092500012,5.704657294000143],[95.11524498800004,5.711493231000161],[95.12696373800006,5.702053127000141],[95.13331139400012,5.691310940000135],[95.13233483200005,5.68012116100013],[95.12208092500012,5.669256903000132],[95.09473717500012,5.683579820000119],[95.0607202480002,5.656236070000148],[95.05689537900017,5.669094143000081],[95.05713951900012,5.674750067000076],[95.0607202480002,5.683579820000119],[95.0503035820001,5.686224677000111],[95.04786217500006,5.68964264500012],[95.05103600400011,5.694403387000122],[95.05730228000019,5.700913804000109],[95.05713951900012,5.707342841000127],[95.05103600400011,5.712958075000131],[95.0486759770001,5.718451239000146],[95.0607202480002,5.724554755000142],[95.0607202480002,5.732001044000114],[95.04883873800006,5.736476955000085],[95.0403751960001,5.736029364000088],[95.03272545700005,5.733547268000152],[95.02312259200019,5.732001044000114],[95.0127059250001,5.73582591400013],[95.01465905000006,5.744614976000193],[95.02369225400017,5.754055080000114],[95.0339461600001,5.759914455000157],[95.05827884200008,5.757310289000159],[95.0809025400001,5.740952867000146]]],[[[95.27247155000012,5.870306708000115],[95.28386478000007,5.85740794500019],[95.2971297540001,5.858587958000129],[95.30730228000002,5.872381903000132],[95.31495201900005,5.887762762000165],[95.32496178500006,5.8980166690001],[95.34180748800006,5.89642975500007],[95.35132897200006,5.887030341000141],[95.38282311300006,5.841864325000103],[95.38282311300006,5.807074286000144],[95.37598717500005,5.807074286000144],[95.37256920700005,5.813625393000123],[95.36866295700005,5.818304755000142],[95.35547936300004,5.827582098000107],[95.3553166020001,5.795152085000112],[95.35043379000015,5.783636786000073],[95.33838951900006,5.779201565000093],[95.32032311300011,5.78074778900013],[95.30274498800011,5.785711981000176],[95.28663170700011,5.794419664000173],[95.27295983200005,5.807074286000144],[95.26587975400011,5.821112372000101],[95.25977623800006,5.839260158000101],[95.25269616000016,5.854966539000159],[95.23145592500006,5.869289455000143],[95.2205509770001,5.885931708000101],[95.21355228000002,5.902533270000148],[95.21461022200018,5.910101630000099],[95.2361759770001,5.909125067000133],[95.24781334700012,5.905218817000133],[95.25928795700004,5.89642975500007],[95.27247155000012,5.870306708000115]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"India","sov_a3":"IND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"India","adm0_a3":"IND","geou_dif":0,"geounit":"India","gu_a3":"IND","su_dif":0,"subunit":"India","su_a3":"IND","brk_diff":0,"name":"India","name_long":"India","brk_a3":"IND","brk_name":"India","brk_group":null,"abbrev":"India","postal":"IND","formal_en":"Republic of India","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"India","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":2,"mapcolor13":2,"pop_est":1166079217,"gdp_md_est":3297000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"IN","iso_a2":"IN","iso_a3":"IND","iso_n3":"356","un_a3":"356","wb_a2":"IN","wb_a3":"IND","woe_id":23424848,"woe_id_eh":23424848,"woe_note":"Exact WOE match as country","adm0_a3_is":"IND","adm0_a3_us":"IND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"IND.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[93.85531660200016,7.214178778000103],[93.86500084699999,7.20066966400013],[93.87037194100017,7.180568752000084],[93.876719597,7.163560289000118],[93.88062584700012,7.144273179000095],[93.88314863400008,7.104722398000135],[93.8870548840001,7.089300848000107],[93.903086785,7.060858466000099],[93.9129337900001,7.035101630000142],[93.92025800900015,7.02431875200014],[93.92872155000006,7.012355861000116],[93.9298608730002,6.959051825000144],[93.92107181100002,6.933823960000097],[93.89356530000012,6.876776434000177],[93.88941491000017,6.841782945000175],[93.89283287900017,6.834051825000173],[93.8992619150001,6.827134507000081],[93.90414472700016,6.819240627000113],[93.903086785,6.808294989000132],[93.89844811300006,6.804185289000188],[93.88990319100006,6.800970770000134],[93.88005618600002,6.800441799000154],[93.87175540500007,6.804510809000121],[93.85938561300011,6.804266669000171],[93.84791100400015,6.785305080000157],[93.8342391290001,6.745550848000149],[93.81267337300002,6.753973700000117],[93.809336785,6.769029039000131],[93.81324303500011,6.788031317000133],[93.81373131600017,6.808294989000132],[93.805430535,6.816717841000098],[93.79216556100008,6.825873114000075],[93.78443444100017,6.836411851000136],[93.79322350400011,6.849188544000171],[93.78370201900005,6.857977606000134],[93.7757267590001,6.867377020000077],[93.77312259200008,6.877997137000108],[93.77955162900011,6.890204169000171],[93.77076256600006,6.893866278000132],[93.76612389400012,6.901109117000161],[93.76449629000008,6.911525783000144],[93.76531009200019,6.924302476000179],[93.74805748800004,6.923570054000066],[93.737478061,6.943264065000108],[93.72877037900011,6.970526434000091],[93.71753991000006,6.992621161000087],[93.70362389400006,7.006293036000116],[93.68433678500006,7.02090078300013],[93.66456139400012,7.026516018000136],[93.64918053500017,7.013088283000144],[93.64966881600006,7.119614976000179],[93.65357506600004,7.131496486000145],[93.67644290500007,7.181870835000082],[93.6853947270001,7.184515692000075],[93.70753014400006,7.184393622000101],[93.71729576900012,7.187689520000134],[93.72461998800011,7.194973049000154],[93.73015384200002,7.202215887000164],[93.73462975400011,7.205511786000115],[93.73991946700008,7.207098700000144],[93.76531009200019,7.219142971000152],[93.77214603000019,7.211737372000171],[93.797618035,7.234605210000082],[93.81397545700023,7.241848049000112],[93.83082116000006,7.235907294000171],[93.85531660200016,7.214178778000103]]],[[[93.64421634200019,7.257513739000088],[93.628184441,7.253322658000143],[93.61793053500011,7.25995514500012],[93.61638431100008,7.267279364000117],[93.61744225400011,7.276068427000084],[93.61508222700016,7.287420966000155],[93.61085045700023,7.294501044000114],[93.59400475400011,7.314764716000126],[93.60694420700023,7.32640208500014],[93.61036217500006,7.347316799000097],[93.61670983200004,7.367254950000174],[93.63868248800011,7.376166083000115],[93.66724694100017,7.382757880000099],[93.67798912900011,7.399400132000138],[93.68376712300008,7.421698309000177],[93.69695071700019,7.445054429000081],[93.69695071700019,7.417792059000178],[93.69947350400011,7.398749091000099],[93.70948326900012,7.388739325000116],[93.72169030000006,7.381170966000155],[93.73121178500017,7.369370835000097],[93.73438561300006,7.350816148000177],[93.72852623800011,7.337103583000071],[93.71550540500013,7.325832424000069],[93.69695071700019,7.314764716000126],[93.67920983200011,7.298325914000132],[93.64421634200019,7.257513739000088]]],[[[93.43311608200005,7.954291083000128],[93.4598087900001,7.910793361000104],[93.46045983200021,7.899847723000121],[93.45736738400015,7.880194403000175],[93.4544376960001,7.869289455000099],[93.44792728000002,7.871405341000113],[93.4368595710001,7.883286851000065],[93.4212345710001,7.891791083000101],[93.41504967500006,7.892238674000096],[93.40211022200006,7.890082098000092],[93.38917076900005,7.885809637000165],[93.37842858200023,7.880764065000136],[93.36784915500007,7.878607489000146],[93.35425866,7.883286851000065],[93.34498131600017,7.891343492000189],[93.34034264400006,7.901271877000099],[93.34107506600017,7.912583726000079],[93.34815514400012,7.924872137000135],[93.34066816500015,7.931708075000145],[93.33269290500019,7.924953518000124],[93.32300866000006,7.924383856000147],[93.31364993600013,7.929185289000132],[93.30665123800006,7.938544012000165],[93.3050236340001,7.949937242000132],[93.3133244150001,7.98973216400013],[93.32260175900014,8.002101955000157],[93.34441165500019,8.012111721000139],[93.37029056100019,8.017320054000137],[93.39136803500006,8.015570380000142],[93.39478600400011,8.006740627000099],[93.39616946700014,7.997219143000094],[93.39600670700015,7.97638580900012],[93.40121504000015,7.967962958000071],[93.42416425900015,7.959865627000141],[93.42945397199999,7.955267645000106],[93.43311608200005,7.954291083000128]]],[[[93.56592858200023,7.999335028000103],[93.57032311300011,7.988999742000188],[93.57422936300011,7.96881745000016],[93.57398522200018,7.924872137000135],[93.51832116000006,7.965806382000067],[93.51075280000012,7.980169989000132],[93.51148522200006,7.995510158000087],[93.52076256600017,8.004380601000136],[93.53931725400011,7.999335028000103],[93.54029381600017,8.016180731000103],[93.54835045700011,8.020086981000105],[93.55860436300011,8.0136172550001],[93.56592858200023,7.999335028000103]]],[[[93.52515709700018,8.095038153000147],[93.53760826900006,8.057318427000082],[93.53736412900011,8.047796942000089],[93.53191165500019,8.034735419000114],[93.52800540500017,8.032416083000143],[93.51490319100006,8.027655341000141],[93.51197350400011,8.02415599200016],[93.50977623800011,8.018540757000068],[93.49496504000015,7.996283270000105],[93.48438561300011,7.991888739000132],[93.47925866000017,8.002915757000082],[93.47730553500006,8.03099192900008],[93.48080488400015,8.040513414000172],[93.48853600400011,8.044378973000079],[93.49561608200011,8.049383856000118],[93.49781334700018,8.061997789000186],[93.5052189460001,8.061997789000186],[93.51482181100008,8.056219794000143],[93.51693769600016,8.063299872000101],[93.51148522200006,8.074855861000131],[93.49781334700018,8.082505601000065],[93.49219811300011,8.063625393000123],[93.47974694100017,8.063218492000118],[93.46631920700005,8.074408270000134],[93.45736738400015,8.089992580000128],[93.44662519600014,8.154364325000131],[93.44654381600006,8.164496161000088],[93.45484459700006,8.170111395000092],[93.46509850400017,8.183294989000132],[93.47364342500006,8.19818756700009],[93.47730553500006,8.209133205000143],[93.48585045700005,8.220119533000116],[93.504649285,8.226996161000116],[93.52344811300006,8.225816148000177],[93.53166751400008,8.213202216000113],[93.53101647199999,8.19375234600011],[93.5214949880001,8.179103908000101],[93.51050866000006,8.166571356000105],[93.5052189460001,8.14704010600012],[93.508555535,8.128810940000136],[93.52515709700018,8.095038153000147]]],[[[73.05665123800006,8.259995835000081],[73.04468834700006,8.252427476000136],[73.0327254570001,8.249497789000117],[73.02409915500017,8.255438544000128],[73.02247155000006,8.274359442000147],[73.02930748800011,8.274359442000147],[73.02930748800011,8.274318752000156],[73.02930748800011,8.274115302000112],[73.02898196700008,8.263413804000095],[73.02930748800011,8.259995835000081],[73.04835045700011,8.267564195000134],[73.06316165500007,8.279486395000076],[73.07300866000016,8.295396226000094],[73.07715905000012,8.315252997000101],[73.08179772200006,8.315822658000158],[73.08301842500006,8.314357815000108],[73.08301842500006,8.311672268000123],[73.08399498800006,8.30849844000015],[73.08399498800006,8.308457749000155],[73.06609134200008,8.270453192000062],[73.05665123800006,8.259995835000081]]],[[[93.17628014400012,8.212876695000176],[93.16732832100016,8.204535223000121],[93.15349368600008,8.205511786000088],[93.12468509200002,8.212876695000176],[93.10254967500006,8.221502997000087],[93.08155358200023,8.242377020000148],[93.06576582100008,8.268133856000105],[93.05958092500012,8.291408596000108],[93.06128991,8.320746161000116],[93.0643009770001,8.336127020000061],[93.06983483200023,8.346625067000133],[93.083750847,8.355902411000088],[93.0950626960001,8.355169989000144],[93.10141035200009,8.345770575000131],[93.10075931100019,8.299261786000102],[93.1040145190001,8.275580145000077],[93.1141056650001,8.256415106000105],[93.13453209700016,8.24017975500007],[93.16081790500019,8.228745835000112],[93.17302493600008,8.221258856000148],[93.17628014400012,8.212876695000176]]],[[[93.60971113400008,8.43842194200009],[93.6014103520001,8.43817780200014],[93.60035241000017,8.450344143000123],[93.60710696700019,8.490790106000162],[93.60767662900017,8.507066148000192],[93.59555097700016,8.541734117000173],[93.594981316,8.558010158000116],[93.60767662900017,8.56915924700013],[93.60767662900017,8.548041083000115],[93.62175540500013,8.520086981000174],[93.62680097700016,8.505845445000176],[93.628184441,8.48655833500014],[93.62517337300014,8.473618882000139],[93.61833743600019,8.453924872000101],[93.60971113400008,8.43842194200009]]],[[[92.831981323,9.145025417000113],[92.79956466200005,9.110154001000083],[92.731211785,9.130845445000148],[92.72022545700023,9.147121486000088],[92.71168053500004,9.175116278000104],[92.70850670700017,9.201605536000073],[92.71387780000012,9.213446356000134],[92.72925866000004,9.217840887000108],[92.74512780000006,9.22907135600012],[92.75440514400006,9.244452216000155],[92.75098717500012,9.261216539000173],[92.76303144600016,9.264146226000094],[92.77271569100012,9.259222723000136],[92.79527168600006,9.240818092000112],[92.81137327200022,9.23116996200011],[92.83384929400002,9.202359329000089],[92.831981323,9.145025417000113]]],[[[73.63705488400015,10.062567450000117],[73.63257897200018,10.057277736000145],[73.6316837900001,10.067775783000116],[73.6316837900001,10.067816473000107],[73.63331139400012,10.07786692900008],[73.63746178500016,10.087062893000152],[73.64389082100016,10.094549872000115],[73.64397220100014,10.094468492000132],[73.64519290500007,10.092189846000068],[73.6463322270001,10.084702867000187],[73.64405358200023,10.076971747000087],[73.64096113400014,10.069322007000068],[73.63705488400015,10.062567450000117]]],[[[73.657481316,10.145086981000118],[73.65967858200011,10.144354559000092],[73.66228274800018,10.144598700000131],[73.66220136800021,10.144517320000148],[73.66032962300008,10.142523505000113],[73.65935306100017,10.139960028000116],[73.65788821700002,10.139064846000123],[73.6546330090001,10.141506252000156],[73.65560957100016,10.144761460000097],[73.657481316,10.145086981000118]]],[[[72.6275333990001,10.554795640000108],[72.62745201900012,10.554754950000117],[72.632090691,10.560003973000107],[72.6486108730002,10.57396067900008],[72.64869225400017,10.573919989000089],[72.65056399800002,10.572577216000097],[72.65040123800006,10.571193752000113],[72.64958743600008,10.569322007000139],[72.6497501960001,10.566880601000108],[72.6497501960001,10.566839911000116],[72.6385197270001,10.559393622000144],[72.63306725400011,10.556545315000108],[72.6275333990001,10.554795640000108]]],[[[72.54875735800007,10.77932363500014],[72.54118899800007,10.772894598000136],[72.5408634770001,10.776516018000095],[72.54249108200017,10.777899481000176],[72.54542076900006,10.778306382000082],[72.54883873800006,10.779445705000114],[72.54875735800007,10.77932363500014]]],[[[73.6844181650001,10.827541408000087],[73.67628014400006,10.824367580000128],[73.67286217500006,10.82469310100005],[73.67188561300004,10.82709381700009],[73.67139733200011,10.8296572940001],[73.67139733200011,10.829738674000083],[73.68124433700021,10.82807038000007],[73.6844181650001,10.827541408000087]]],[[[72.18816165500007,10.836127020000104],[72.17269941500015,10.809230861000131],[72.17261803500017,10.829982815000122],[72.17904707100016,10.848700262000179],[72.18515058700004,10.85830312700007],[72.1893009770001,10.864935614000132],[72.1956486340001,10.87270742400014],[72.2000431650001,10.878119208000086],[72.2000431650001,10.878078518000095],[72.2000431650001,10.864447333000143],[72.18816165500007,10.836127020000104]]],[[[92.58211625500005,10.790261387000086],[92.58509171100016,10.771268527000146],[92.58698631700022,10.736294028000117],[92.5980587440001,10.709302238000134],[92.59590764100014,10.678363602000076],[92.57449158100005,10.655484179000098],[92.5612401650001,10.642554828000128],[92.55105552400013,10.63460282100013],[92.53983511800007,10.620669338000125],[92.54175975000007,10.591720078000094],[92.55596403200016,10.58867520400014],[92.5742130730001,10.580623724000176],[92.54667534900008,10.547781204000074],[92.53542331400016,10.524860951000079],[92.5130270760001,10.507968928000153],[92.47955770100006,10.516073275000139],[92.46337193000012,10.53110313900008],[92.44413915300017,10.545142522000148],[92.4217879340001,10.546203260000155],[92.40646613500016,10.529265955000126],[92.38411072300008,10.529328010000114],[92.37805710600006,10.541328843000173],[92.40255653800014,10.575206237000103],[92.41385518600012,10.606117140000094],[92.41700341400004,10.629058572000146],[92.40891697100008,10.647054595000114],[92.3906742520002,10.663085336000094],[92.37948613800009,10.672121597000086],[92.37858586200011,10.718070586000165],[92.3786706430001,10.750037311000114],[92.375680467,10.775030574000112],[92.3767214430002,10.784019970000145],[92.38587826200015,10.781981174000123],[92.40726464100013,10.789890639000134],[92.41541966300022,10.798862791000161],[92.42259792800016,10.822836242000077],[92.42896569100006,10.850816148000192],[92.4827963060001,10.885621584000177],[92.52759174000018,10.895465574000127],[92.5488797710001,10.87437339000013],[92.56505953100012,10.849308437000147],[92.56798145700012,10.815300556000153],[92.58211625500005,10.790261387000086]]],[[[72.7449650400001,11.109523830000128],[72.73951256600006,11.108832098000093],[72.73951256600006,11.113959052000112],[72.74203535200016,11.115952867000146],[72.74577884200018,11.11688873900013],[72.75001061300006,11.119086005000113],[72.74756920700011,11.115423895000077],[72.74675540500019,11.11196523600016],[72.7449650400001,11.109523830000128]]],[[[72.7754826180002,11.186753648000149],[72.77540123800006,11.186590887000094],[72.77116946700002,11.201117255000128],[72.7703556650001,11.203640041000142],[72.7703556650001,11.203680731000132],[72.77418053500011,11.222886460000096],[72.78907311300011,11.261664130000128],[72.78923587300007,11.261664130000128],[72.79590905000012,11.261664130000128],[72.79558353000019,11.257228908000144],[72.79395592500005,11.254299221000123],[72.79151451900012,11.25165436400013],[72.78907311300011,11.248032945000176],[72.78793379000015,11.232245184000135],[72.78492272200005,11.2163760440001],[72.7754826180002,11.186753648000149]]],[[[73.00879967500006,11.484686591000111],[73.00562584700018,11.47964101800008],[73.00440514400006,11.488836981000148],[73.00440514400006,11.496486721000082],[73.00709069100006,11.501288153000159],[73.01319420700023,11.502183335000069],[73.01091556100008,11.49013906500015],[73.00879967500006,11.484686591000111]]],[[[92.64600670700023,11.359076239000089],[92.63502037900017,11.357896226000065],[92.61963951900012,11.360744533000101],[92.61085045700017,11.366156317000133],[92.6037703790001,11.372503973000077],[92.59351647200018,11.378363348000121],[92.5989689460001,11.401312567000105],[92.60084069100017,11.406317450000143],[92.60816491000017,11.411322333000086],[92.62387129000014,11.41250234600011],[92.63119550900015,11.41624583500014],[92.63721764400005,11.430161851000122],[92.63526451900012,11.447007554000123],[92.62761478000019,11.477362372000101],[92.63559004000015,11.508042710000112],[92.65414472700016,11.508124091000083],[92.6750594410001,11.49042389500009],[92.68970787900011,11.467759507000125],[92.69629967500006,11.454413153000118],[92.68970787900011,11.442531643000066],[92.67969811300011,11.429388739000103],[92.67652428500017,11.412543036000102],[92.68506920700004,11.399359442000147],[92.69678795700005,11.391791083000115],[92.69988040500007,11.38442617400011],[92.68279056100017,11.371527411000102],[92.6731876960001,11.367336330000157],[92.64600670700023,11.359076239000089]]],[[[92.27320397200018,11.531073309000163],[92.25212649800008,11.5292422550001],[92.23454837300002,11.540350653000132],[92.23023522200006,11.577337958000072],[92.21729576900005,11.59125397300015],[92.21729576900005,11.598089911000073],[92.2286889980002,11.597723700000143],[92.25489342500012,11.593817450000145],[92.26677493600019,11.589544989000144],[92.27808678500017,11.583807684000163],[92.28687584700005,11.56317780200014],[92.28500410200014,11.544012762000179],[92.27320397200018,11.531073309000163]]],[[[72.70110110800007,11.686428127000127],[72.70093834700018,11.686428127000127],[72.70508873800011,11.692328192000147],[72.70923912900017,11.69415924700013],[72.71615644600016,11.69415924700013],[72.71607506600017,11.694077867000146],[72.70866946700019,11.689154364000089],[72.7052514980002,11.68732330900012],[72.70110110800007,11.686428127000127]]],[[[93.06641686300011,11.899115302000096],[93.04932701900006,11.896144924000097],[93.03541100400011,11.911932684000135],[93.02654056100008,11.931626695000176],[93.02491295700023,11.940130927000112],[93.01539147200006,11.945990302000054],[93.0013126960001,11.949204820000105],[92.9905705090001,11.954413153000102],[92.98023522200016,11.963690497000158],[92.9744572270001,11.972235419000171],[92.96753991,11.978583075000117],[92.95313561300006,11.981105861000131],[92.94703209700006,11.989691473000136],[92.9572046230002,12.00869375200014],[92.97217858200021,12.027736721000139],[92.98072350400017,12.036322333000143],[93.01465905000012,12.037176825000143],[93.0254012380001,12.031561591000141],[93.01856530000012,12.015814520000092],[93.04037519600016,11.969061591000111],[93.04249108200005,11.96116771000014],[93.0486759770001,11.952785549000083],[93.06641686300011,11.899115302000096]]],[[[93.10328209700018,12.102036851000136],[93.09424889400006,12.090969143000109],[93.08545983200023,12.09585195500007],[93.07422936300011,12.110337632000125],[93.0643009770001,12.127142645000134],[93.05958092500012,12.138739325000143],[93.05933678500017,12.15355052300012],[93.06153405000006,12.172308661000088],[93.06625410200016,12.189846096000123],[93.07325280000006,12.200832424000083],[93.08204186300011,12.204779364000075],[93.091075066,12.204250393000095],[93.09848066500008,12.199408270000104],[93.10328209700018,12.190497137000165],[93.10377037900015,12.187933661000073],[93.10385175900015,12.18528880400008],[93.10328209700018,12.180080471000082],[93.09620201900006,12.15875885600012],[93.094981316,12.15176015800013],[93.10230553500006,12.119533596000096],[93.10328209700018,12.102036851000136]]],[[[93.872813347,12.26886627800013],[93.85377037900011,12.260565497000144],[93.85189863400015,12.271551825000117],[93.86060631600006,12.281195380000085],[93.872813347,12.26886627800013]]],[[[92.69467207100016,12.803778387000136],[92.68279056100017,12.79730866100013],[92.6702580090001,12.867661851000065],[92.67286217500012,12.878607489000117],[92.67774498800004,12.890366929000109],[92.6849064460001,12.945054429000137],[92.68279056100017,12.961737372000172],[92.69507897200018,12.973456122000172],[92.70240319100017,12.983058986000145],[92.7083439460001,12.988674221000151],[92.7169702480002,12.988470770000104],[92.7225041020001,12.985785223000121],[92.72706139400006,12.9820010440001],[92.7307235040001,12.977484442000133],[92.73308353000007,12.972479559000107],[92.73747806100008,12.961737372000172],[92.73218834700016,12.945705471000094],[92.72999108200011,12.895209052000084],[92.72437584700016,12.87238190300016],[92.71762129000014,12.862209377000113],[92.7015080090001,12.844427802000125],[92.6971134770001,12.83820221600017],[92.69507897200018,12.825100002000113],[92.69654381600004,12.81329987200013],[92.69467207100016,12.803778387000136]]],[[[94.29078209700018,13.42291901200015],[94.27491295700005,13.420314846000153],[94.26189212300008,13.429266669000084],[94.28093509200008,13.443548895000092],[94.29078209700018,13.42291901200015]]],[[[93.01628665500002,13.567368882000125],[93.02279707100008,13.566107489000117],[93.0315861340001,13.56907786700013],[93.04249108200005,13.571234442000133],[93.04997806100002,13.566392320000148],[93.06641686300011,13.537095445000134],[93.05502363400015,13.503078518000109],[93.05372155000006,13.471421617000132],[93.05958092500012,13.406805731000176],[93.06413821700008,13.408636786000073],[93.07545006600006,13.411118882000096],[93.08008873800004,13.413031317000147],[93.07837975400015,13.39712148600013],[93.057871941,13.382879950000117],[93.05274498800011,13.368882554000066],[93.04688561300006,13.35740794500012],[93.03345787900017,13.348578192000062],[93.01734459700018,13.340480861000131],[93.0042423840001,13.331040757000125],[93.00367272200006,13.348618882000054],[92.99512780000012,13.357367255000126],[92.98438561300011,13.356431382000137],[92.97706139400012,13.34536367400011],[92.9793400400001,13.329779364000117],[92.99048912900011,13.317816473000079],[93.00456790500006,13.31183502800016],[93.02556399800008,13.316148179000066],[93.03565514400006,13.306952216000099],[93.05274498800011,13.283880927000125],[93.07569420700005,13.269110419000143],[93.0794376960001,13.259833075000103],[93.0568953790001,13.224798895000104],[93.0525822270001,13.196966864000146],[93.05274498800011,13.13304271000014],[93.04810631600017,13.103705145000134],[93.03679446700019,13.062160549000138],[93.01954186300006,13.033636786000145],[92.99805748800006,13.043687242000118],[92.9905705090001,13.043687242000118],[92.98682701900006,13.033677476000136],[92.9793400400001,13.029527085000097],[92.97087649800002,13.030747789000117],[92.96404056100013,13.036851304000109],[92.96143639400012,13.048163153000175],[92.96656334700006,13.072170315000122],[92.96404056100013,13.08466217700014],[92.95655358200023,13.08466217700014],[92.95655358200023,13.064154364000089],[92.93702233200005,13.067084052000112],[92.92888431100008,13.050197658000116],[92.92839603000006,13.027492580000157],[92.93262780000006,13.013006903000116],[92.95069420700011,12.993638414000188],[92.95622806100002,12.981675523000163],[92.95264733200017,12.970770575000103],[92.94288170700011,12.954291083000115],[92.93604576900012,12.954291083000115],[92.93474368600019,12.973049221000068],[92.92741946700019,12.98102448100012],[92.91651451900012,12.98265208500014],[92.90528405000012,12.982245184000135],[92.9025985040001,12.974025783000144],[92.8807072270001,12.930405992000132],[92.87907962300008,12.921942450000103],[92.8763126960001,12.916652736000117],[92.8768009770001,12.911525783000101],[92.884532097,12.90346914300008],[92.89633222700009,12.89972565300013],[92.90552819100017,12.906073309000163],[92.91553795700023,12.91958242400014],[92.92448978000007,12.91437409100014],[92.92823326900012,12.905340887000136],[92.92986087300002,12.896673895000133],[92.93262780000006,12.892889716000111],[92.94068444100006,12.889308986000145],[92.96404056100013,12.864935614000089],[92.96070397200018,12.847154039000188],[92.96583092500012,12.825628973000091],[92.96802819100012,12.803168036000088],[92.95655358200023,12.783026434000135],[92.97315514400012,12.76434967700007],[92.98438561300011,12.745103257000125],[92.99048912900011,12.724310614000132],[92.9905705090001,12.7011172550001],[92.97681725400017,12.654933986000088],[92.97291100400017,12.6281192080001],[92.98902428500006,12.592108466000127],[92.99154707100016,12.567084052000112],[92.9905705090001,12.519232489000089],[92.98170006600006,12.506048895000134],[92.96485436300006,12.491034247000115],[92.9559025400001,12.477443752000156],[92.97022545700011,12.468329169000171],[92.96241295700011,12.45441315300009],[92.94971764400006,12.446966864000116],[92.93864993600017,12.438137111000158],[92.93604576900012,12.419907945000176],[92.92920983200005,12.419907945000176],[92.92383873800011,12.430975653000118],[92.91586347700016,12.44086334800012],[92.90601647200006,12.448960679000066],[92.89503014400012,12.454657294000128],[92.89714603000019,12.449937242000132],[92.90186608200011,12.433539130000128],[92.87330162900011,12.431382554000123],[92.84669030000006,12.433539130000128],[92.84669030000006,12.42739492400014],[92.8535262380001,12.416815497000101],[92.86361738400015,12.385484117000145],[92.8711043630001,12.37889232000016],[92.88184655000006,12.375921942000147],[92.89405358200011,12.368109442000076],[92.90251712300008,12.357123114000103],[92.90186608200011,12.34479401200015],[92.91504967500006,12.338364976000049],[92.91277103000019,12.33364492400014],[92.9031681650001,12.329087632000096],[92.89503014400012,12.32367584800015],[92.88640384200019,12.315741278000175],[92.88111412900011,12.314601955000143],[92.87924238400015,12.312974351000122],[92.8807072270001,12.303859768000137],[92.88575280000006,12.295558986000145],[92.89340254000015,12.290350653000159],[92.90015709700012,12.28318919500012],[92.90186608200011,12.269029039000188],[92.896250847,12.261704820000176],[92.88640384200019,12.253363348000121],[92.87989342500012,12.243597723000079],[92.884532097,12.231838283000101],[92.88868248800006,12.225002346000082],[92.89258873800004,12.214544989000103],[92.89421634200008,12.205023505000113],[92.89161217500006,12.200832424000083],[92.87256920700011,12.201483466000127],[92.87452233200023,12.183742580000128],[92.86402428500017,12.171535549000152],[92.84294681100008,12.156195380000113],[92.82740319100006,12.14012278900013],[92.83366946700019,12.125677802000068],[92.83366946700019,12.118231512000179],[92.82593834700018,12.115668036000088],[92.80640709700012,12.10455963700015],[92.8089298840001,12.095770575000088],[92.79932701900005,12.089544989000132],[92.7839461600001,12.085882880000083],[92.7688094410001,12.084702867000146],[92.75749759200014,12.07746002800013],[92.76726321700008,12.061224677000084],[92.79265384200019,12.036322333000143],[92.78101647200018,12.037787177000112],[92.77125084700006,12.036078192000103],[92.76368248800011,12.030951239000089],[92.75855553500017,12.022040106000148],[92.76539147200018,12.022040106000148],[92.74561608200005,11.996649481000134],[92.74057050900015,11.983628648000135],[92.73747806100008,11.96116771000014],[92.73747806100008,11.878648179000137],[92.74488366000006,11.878648179000137],[92.74903405000006,11.912258205000157],[92.7537541020001,11.931586005000085],[92.76197350400015,11.940130927000112],[92.77637780000005,11.939276434000107],[92.7879337900001,11.934515692000103],[92.79590905000012,11.922186591000155],[92.79948978000019,11.899115302000096],[92.79688561300011,11.865139065000065],[92.76002037900011,11.708685614000075],[92.75473066500015,11.701117255000128],[92.73454837300002,11.699286200000143],[92.7229110040001,11.693793036000116],[92.68995201900006,11.660060940000122],[92.68392988400015,11.649888414000173],[92.68262780000006,11.636948960000083],[92.68279056100017,11.615179755000113],[92.68702233200023,11.61155833500014],[92.69678795700005,11.611232815000122],[92.70639082100016,11.614488023000163],[92.71070397200006,11.621730861000103],[92.71070397200006,11.65957265800013],[92.71534264400006,11.657619533000087],[92.72673587300002,11.654689846000068],[92.731211785,11.652736721000124],[92.73023522200006,11.671454169000084],[92.73601321700018,11.682440497000144],[92.74610436300004,11.683742580000143],[92.75855553500017,11.673244533000073],[92.76148522200018,11.6636416690001],[92.76563561300006,11.629584052000082],[92.76539147200018,11.618597723000121],[92.76050866000006,11.610337632000125],[92.74756920700011,11.59784577000012],[92.74488366000006,11.587591864000103],[92.74488366000006,11.55711497600005],[92.73511803500011,11.523871161000145],[92.72673587300002,11.506170966000141],[92.7169702480002,11.49445221600014],[92.71314537900017,11.507310289000173],[92.70704186300011,11.511053778000104],[92.69898522200006,11.511786200000131],[92.68970787900011,11.51557038000007],[92.65894616000006,11.546291408000144],[92.65479576900005,11.555894273000135],[92.65560957100008,11.5659854190001],[92.6546330090001,11.573797919000086],[92.64527428500017,11.576971747000144],[92.633555535,11.582586981000148],[92.62566165500002,11.595404364000089],[92.62159264400006,11.609361070000148],[92.62134850400011,11.618597723000121],[92.62794030000012,11.6251488300001],[92.63738040500013,11.627142645000134],[92.64568118600019,11.629828192000117],[92.64869225400011,11.63849518400012],[92.64283287900017,11.645249742000146],[92.63111412900017,11.647447007000139],[92.61963951900012,11.651312567000145],[92.61451256599999,11.662990627000141],[92.61345462300008,11.674221096000139],[92.60816491000017,11.693264065000136],[92.60710696700014,11.704535223000136],[92.6037703790001,11.718898830000114],[92.59595787900011,11.720160223000121],[92.58676191500015,11.716009833000086],[92.57984459700006,11.714178778000104],[92.56324303500017,11.725572007000068],[92.56031334700005,11.741359768000109],[92.56666100400017,11.786200262000136],[92.56666100400017,11.827134507000068],[92.56324303500017,11.833929755000085],[92.55494225400011,11.837836005000083],[92.54566491000006,11.840806382000096],[92.53435306100008,11.8468692080001],[92.53093509200008,11.84589264500012],[92.528086785,11.84589264500012],[92.52515709700018,11.851304429000066],[92.52491295700023,11.857489325000131],[92.52735436300006,11.862005927000098],[92.53052819100006,11.864650783000087],[92.531993035,11.864976304000109],[92.53972415500012,11.894435940000093],[92.56299889400012,11.930161851000122],[92.57056725400017,11.932603257000054],[92.57715905000006,11.927394924000154],[92.59213300900008,11.905747789000158],[92.59473717500006,11.898749091000084],[92.60027103000019,11.895493882000139],[92.61451256599999,11.899115302000096],[92.60767662900011,11.882798570000176],[92.61085045700017,11.870510158000116],[92.61768639400006,11.866400458000072],[92.62134850400011,11.8749453800001],[92.62452233200011,11.930161851000122],[92.62940514400006,11.94375234600008],[92.62728925900015,11.95892975500007],[92.62305748800006,11.974269924000112],[92.62134850400011,11.98794179900014],[92.62501061300006,12.003119208000129],[92.63738040500013,12.025295315000108],[92.64185631600017,12.036322333000143],[92.64014733200005,12.136135158000144],[92.64527428500017,12.156073309000133],[92.66822350400015,12.200995184000133],[92.68181399800002,12.219631252000127],[92.68970787900011,12.207668361000103],[92.6971134770001,12.207668361000103],[92.70386803500006,12.225165106000148],[92.7130639980002,12.232570705000128],[92.72095787900017,12.22654857000012],[92.72437584700016,12.204250393000095],[92.7190861340001,12.184515692000147],[92.719493035,12.176255601000065],[92.72779381600017,12.172837632000068],[92.7337345710001,12.174017645000092],[92.73633873800011,12.176581122000087],[92.73780358200005,12.179144598000093],[92.7410587900001,12.180324611000117],[92.760996941,12.17987702000012],[92.76539147200018,12.180324611000117],[92.7840275400001,12.189357815000136],[92.78882897200018,12.195542710000097],[92.79265384200019,12.207668361000103],[92.78239993600008,12.24860260600012],[92.77556399800001,12.250637111000145],[92.76775149800002,12.255438544000143],[92.76124108200023,12.261175848000105],[92.75855553500017,12.265936591000113],[92.75879967500012,12.276556708000143],[92.76042728000007,12.276841539000172],[92.76449629000008,12.27431875200007],[92.78101647200018,12.279242255000128],[92.78939863400015,12.279486395000076],[92.79420006600006,12.28318919500012],[92.79265384200019,12.29637278900016],[92.7869572270001,12.306301174000069],[92.77849368600008,12.310126044000171],[92.75473066500015,12.310044664000186],[92.73365319100006,12.318060614000146],[92.72234134200008,12.33779531500008],[92.71778405000012,12.362494208000072],[92.72169030000012,12.599432684000135],[92.72681725400011,12.612982489000103],[92.74480228000007,12.63349030200014],[92.7501733730002,12.644273179000066],[92.75473066500015,12.649562893000123],[92.76002037900011,12.65110911700016],[92.7752384770001,12.651760158000116],[92.77898196700008,12.652655341000113],[92.78321373800006,12.664984442000062],[92.7773543630001,12.669338283000144],[92.76628665500017,12.67153554900014],[92.75473066500015,12.677191473000136],[92.74773196700008,12.692694403000147],[92.74488366000006,12.762518622000087],[92.73747806100008,12.807196356000148],[92.74089603000007,12.819647528000159],[92.7488712900001,12.828111070000105],[92.75814863400014,12.835679429000066],[92.76539147200018,12.845119533000071],[92.78565514400012,12.840033270000147],[92.8003035820001,12.857814846000139],[92.80933678500006,12.884507554000066],[92.813243035,12.906480210000083],[92.813243035,12.958075262000136],[92.82813561300006,12.985174872000158],[92.83472741000006,13.00202057500016],[92.83025149800007,13.009507554000123],[92.80795332100016,13.020086981000176],[92.80925540500007,13.044745184000162],[92.82960045700023,13.103461005000085],[92.84839928500016,13.13670482000019],[92.85303795700011,13.142726955000098],[92.85417728000007,13.146063544000128],[92.85108483200017,13.152044989000146],[92.83765709700018,13.167059637000165],[92.83366946700019,13.174017645000148],[92.84473717500012,13.186997789000145],[92.84205162900017,13.207749742000145],[92.84278405000006,13.226996161000102],[92.86402428500017,13.235500393000123],[92.86394290500019,13.244696356000103],[92.84986412900011,13.28900788000014],[92.85417728000007,13.304388739000089],[92.85417728000007,13.310614325000143],[92.84115644600016,13.32489655200014],[92.84742272199999,13.344916083000115],[92.88689212300008,13.393459377000084],[92.89136803500004,13.400946356000132],[92.89503014400012,13.413031317000147],[92.89568118600002,13.422837632000082],[92.89454186300011,13.44725169500012],[92.89503014400012,13.45457591400013],[92.90186608200011,13.46824778900016],[92.90333092500005,13.467759507000082],[92.91553795700023,13.475734768000137],[92.93799889400006,13.501369533000101],[92.94288170700011,13.509222723000093],[92.9454858730002,13.519720770000148],[92.9454858730002,13.536932684000163],[92.94971764400006,13.544623114000089],[92.95850670700011,13.550238348000093],[92.97722415500007,13.553778387000165],[92.98438561300011,13.557603257000096],[92.99170983200011,13.550034898000135],[92.997325066,13.546698309000107],[93.00318444100017,13.54706452000012],[93.01172936300004,13.55076732000016],[93.00611412900017,13.55662669500012],[93.00456790500006,13.562201239000116],[93.00652103000019,13.568793036000102],[93.01172936300004,13.578111070000134],[93.01628665500002,13.567368882000125]]],[[[93.0428166020001,13.662054755000112],[93.05274498800011,13.640204169000171],[93.01954186300006,13.649400132000137],[93.00049889400006,13.657700914000117],[92.9905705090001,13.66746653900016],[93.01954186300006,13.68012116100013],[93.0332137380001,13.680243231000105],[93.03907311300006,13.66746653900016],[93.0428166020001,13.662054755000112]]],[[[80.97169030000005,15.750474351000108],[80.94263756600017,15.741034247000087],[80.94255618600019,15.74107493700008],[80.91797936300006,15.755113023000133],[80.8685001960001,15.811957098000091],[80.87916100400017,15.840073960000081],[80.88835696700014,15.846747137000035],[80.93726647200012,15.818915106000148],[80.96827233200023,15.795233466000141],[80.98316491000017,15.7807477890001],[80.98853600400011,15.770738023000108],[80.98487389400006,15.761786200000088],[80.97169030000005,15.750474351000108]]],[[[88.90796959700018,21.53070709800012],[88.895762566,21.528469143000123],[88.8797306650001,21.529974677],[88.86247806100012,21.52358633000007],[88.83871504000008,21.53192780200014],[88.83082116000006,21.577378648000106],[88.84131920700011,21.613999742000047],[88.8728947270001,21.595526434000035],[88.8885197270001,21.589544989],[88.90202884200008,21.580267645000063],[88.91130618600013,21.56688060100005],[88.9139103520001,21.54840729400003],[88.90796959700018,21.53070709800012]]],[[[88.13941491000006,21.630316473000065],[88.13005618600013,21.625921942],[88.1185001960001,21.62767161700016],[88.09156334700006,21.636542059000035],[88.06348717500012,21.63666413],[88.05176842500006,21.641587632000054],[88.04314212300002,21.657619533000158],[88.04224694100004,21.668158270000035],[88.04395592500006,21.680853583000086],[88.050547722,21.705389716000084],[88.0900171230002,21.80866120000009],[88.1193139980002,21.85952383000013],[88.14673912900017,21.869859117000047],[88.16700280000006,21.76544830900009],[88.1634220710001,21.705471096000068],[88.13257897200006,21.684963283000044],[88.1443791020001,21.65778229400003],[88.14600670700023,21.643744208000058],[88.13941491000006,21.630316473000065]]],[[[88.64918053500016,21.84235260600009],[88.64633222700016,21.787909247000083],[88.63624108200005,21.792669989],[88.59961998800006,21.803656317000062],[88.59180748800006,21.804388739],[88.59050540500007,21.812892971000036],[88.58497155000005,21.826605536000145],[88.5843205090001,21.835760809000032],[88.58627363400015,21.84300364800005],[88.59864342500006,21.869859117000047],[88.61646569100004,21.897935289000046],[88.63624108200005,21.921372789000102],[88.65015709700006,21.927435614000032],[88.66325931100002,21.92129140800013],[88.67058353000002,21.90741608300014],[88.66700280000006,21.890326239],[88.65528405000006,21.8666039080001],[88.64918053500016,21.84235260600009]]],[[[88.10499108200021,21.86115143400015],[88.0809025400001,21.84935130399999],[88.0722762380001,21.856756903000147],[88.07105553500017,21.873602606000148],[88.07390384200018,21.892157294000167],[88.07732181100002,21.904608466000084],[88.08472741,21.921576239000057],[88.09424889400012,21.937892971000096],[88.10572350400017,21.94757721600014],[88.11890709700012,21.945013739000146],[88.13257897200006,21.92047760600003],[88.12501061300011,21.888657945000162],[88.10499108200021,21.86115143400015]]],[[[77.85708703600008,35.436597799000126],[77.88313195800006,35.4310684200001],[77.91269087700019,35.44099029500002],[77.95785607900014,35.48207305900017],[77.98586470600017,35.49416534400013],[78.04425907400011,35.49163319900008],[78.05562789000012,35.45287587500003],[78.03805790200013,35.39809885700004],[78.00984257100018,35.34745595300011],[78.00116092900012,35.26890777600015],[78.0364042570001,35.194235331000144],[78.13004195100021,35.05543243400014],[78.13924035700015,35.01894887300013],[78.14812870300014,34.94313954700014],[78.16218469300006,34.90882639600003],[78.20249230900012,34.86572825100011],[78.21138065600022,34.84826161700006],[78.27318566900011,34.6588674930001],[78.29602665200011,34.62465769500001],[78.33530074000012,34.594375306000174],[78.37943241400009,34.57866567000012],[78.60732548000013,34.546471253000064],[78.66458296800008,34.526420797000114],[78.75067590400008,34.471282044000034],[78.80173221800013,34.41500640900013],[78.83924930800006,34.39689382000002],[78.88586145000008,34.385757548000086],[78.92213830600016,34.37229583700004],[78.95118046100005,34.349170634000146],[78.95693951600006,34.33996090500001],[78.97619185400006,34.30917307599999],[78.98539025900007,34.2863579310001],[78.98849084500009,34.26312937400017],[78.98549361200017,34.23990081800015],[78.97619185400006,34.217163188000185],[78.90322473100011,34.15812286400013],[78.8060730390001,34.1229828900001],[78.73010868400016,34.07926462900012],[78.72111698400013,33.99438608900006],[78.77031294800011,33.872352193],[78.7872628170002,33.80842844700013],[78.79408410700013,33.74391042100011],[78.78137170400012,33.55278513600017],[78.80090539600022,33.49423573800006],[78.82426314300008,33.46105946900015],[78.91594777500003,33.38765598100015],[78.91769413200014,33.386257833000045],[78.97329797400008,33.30957000799999],[78.98911096200007,33.30197357200002],[79.02611128700019,33.29264597600009],[79.04326786400006,33.285876363000156],[79.06021773300009,33.27680714899999],[79.07282678200008,33.26362965900002],[79.07716760300016,33.244716085000064],[79.07892460100005,33.22117747100016],[79.08739953600016,33.215596416000054],[79.1222294520002,33.22890309700007],[79.15364872200016,33.226913554000035],[79.2296130780002,33.192161153000185],[79.26444299300007,33.18198089600013],[79.34485152200008,33.17931956000011],[79.37864790900018,33.16428171800011],[79.38185184700014,33.12733306900016],[79.37317020700019,33.11214019800006],[79.35136275200009,33.08485504200003],[79.34423140500022,33.065941468000105],[79.33978723100014,33.01325734500007],[79.33358605900011,32.99429209500012],[79.3342061770002,32.95682668100015],[79.35425663200007,32.93057505300011],[79.41275435400016,32.886546733000145],[79.43197798700007,32.85538584400008],[79.43879927600014,32.824612529000106],[79.44872115100011,32.79562205000006],[79.47641971900006,32.76980967200005],[79.49998417100008,32.746839498],[79.50504846300012,32.714179993000116],[79.49574670400007,32.67821319600013],[79.47641971900006,32.64542450000012],[79.43476851400013,32.60242970800006],[79.33678999900022,32.53566375800001],[79.2943119710001,32.49458099400014],[79.27601851500012,32.49018849700015],[79.25617476400012,32.49587290500001],[79.23560754400015,32.50429616300009],[79.21524703000009,32.50791351300008],[79.19116581200015,32.50427032500009],[79.16140018800016,32.49646718400005],[79.13287479700008,32.485460104000154],[79.11292769400009,32.47238596700011],[79.10290246600007,32.44985504200009],[79.09174035700013,32.390556335],[79.07530725100017,32.37079010000012],[79.06631555200013,32.370066631000114],[79.03965051300005,32.37598358100003],[79.02817834500016,32.37709462600013],[79.01474247300021,32.37399403900017],[78.98983443200015,32.364098003],[78.97619185400006,32.36161753300003],[78.94342899600021,32.34637298600008],[78.91128625500019,32.35474456800016],[78.8815206300002,32.3762678020001],[78.8556824140002,32.40045237300008],[78.7714498290002,32.46166310600002],[78.75470666500016,32.49380584700005],[78.73692997300012,32.54579233800017],[78.73496626800008,32.56064931300001],[78.74065067600006,32.57868438700011],[78.74912561100014,32.59586680100007],[78.75098596200016,32.61279083300015],[78.73682661900008,32.629844056000096],[78.71326216700018,32.63751800600009],[78.69445194500011,32.62966318800015],[78.66489302600016,32.59901906300003],[78.6477364510001,32.585970765000084],[78.63016646300011,32.57801259400013],[78.58985884700004,32.56992523200002],[78.4475419520002,32.566256205000045],[78.40816451000009,32.55837555000009],[78.38480676200007,32.547549337000035],[78.38098270700013,32.52804148400004],[78.40919803900007,32.47662343400016],[78.44878218600016,32.42678151500003],[78.45219283000009,32.41678212500001],[78.44816206900006,32.410658468000136],[78.44144413200016,32.40494822200018],[78.4363798420001,32.396163229000095],[78.43451949100009,32.38376088500005],[78.43596643100014,32.37797312500008],[78.43886031100013,32.3732964070001],[78.46273482300015,32.281803284000134],[78.46139123600008,32.26015085900015],[78.45632694500009,32.24211578400015],[78.45798059100011,32.22966176400017],[78.4685407690001,32.22666774700015],[78.4690173920001,32.22653261500007],[78.47648075400016,32.22441660600005],[78.5130676680001,32.20757008900007],[78.53497847500014,32.181344299000145],[78.55182499200012,32.15039011700012],[78.6492867430002,32.036443583000064],[78.6783288980001,32.01675486300003],[78.72215051300012,31.994585673000092],[78.73382938700009,31.984663798],[78.7445780850002,31.964199931000124],[78.74199426300012,31.94533803300011],[78.72018680900007,31.902911682000177],[78.71419234300005,31.88301625600017],[78.70664758300019,31.8407966110001],[78.70034305800017,31.82167633100012],[78.67409143000006,31.786949768000067],[78.6708874920001,31.77051666300012],[78.69558882600019,31.74669382700013],[78.69517541500008,31.73796051100008],[78.6925915940001,31.72840037000016],[78.69321171100015,31.718530172],[78.69806929500007,31.71103709000006],[78.71047164000007,31.69816965800005],[78.7184298100001,31.680599671],[78.72401086500022,31.673313293000103],[78.73134891800012,31.668042298000085],[78.73982385300022,31.666026917000025],[78.75811731000006,31.666595358000095],[78.7953243410001,31.633780823000063],[78.81888879400012,31.6073741660001],[78.81403120900009,31.59502349900013],[78.79697798700013,31.578848775000136],[78.69951623500017,31.510015768000027],[78.69538212100021,31.488104961000158],[78.73300256300016,31.467744446000054],[78.7625614830001,31.4451101690001],[78.76008101400012,31.412037252000015],[78.74550826100007,31.373538310000143],[78.73848026600014,31.33498769099999],[78.7408573820002,31.317727763000093],[78.74509484900014,31.30811594700016],[78.75315637200006,31.301966451000013],[78.78447229000002,31.288272197000182],[78.79604781100008,31.288117167000152],[78.82198938000013,31.29369822200006],[78.8486544190001,31.290907695],[78.86198693800011,31.29147613500005],[78.8773865150001,31.298245748000102],[78.87887626600016,31.299550770000067],[78.89030562400009,31.30956288700015],[78.90126102700017,31.32367055200011],[78.91810754400014,31.354418030000076],[78.93474735600009,31.34733835900012],[78.95955204299999,31.32511749300001],[78.97619185400006,31.320001526000013],[78.98880090300017,31.343255921000136],[78.995622193,31.38681915300016],[79.01463912000011,31.425473125000064],[79.06331831900009,31.433638001000176],[79.07778772000015,31.42717844700003],[79.1055896400002,31.406197815000112],[79.13917932100006,31.388627828000054],[79.1453804930002,31.37477854399999],[79.14951460800015,31.35927561400008],[79.15995324700006,31.344496155000158],[79.16780806500012,31.341447245000136],[79.18672164000006,31.33953521700012],[79.19374963400017,31.335349426000093],[79.19840051300011,31.324910787000036],[79.1975736900001,31.315609030000118],[79.19488651500015,31.306152242000152],[79.19416304600006,31.295351868000107],[79.19798710200008,31.287342021000043],[79.21338667900008,31.276903381000107],[79.21907108500014,31.26946197500017],[79.21958785000018,31.260832011000115],[79.21700402900015,31.25251210600008],[79.21555708800005,31.243727112000084],[79.21969120300011,31.233701884000155],[79.23498742700016,31.22341827400008],[79.2521440030001,31.219749248000156],[79.2660966390001,31.212307842000044],[79.27188439900007,31.19101715100005],[79.27229781100019,31.171896871000076],[79.27508833900006,31.15422353100017],[79.2822196860001,31.13820383700003],[79.29565555900015,31.12414784700009],[79.32108036300022,31.11231394500008],[79.34826216600001,31.105389302],[79.37234338400017,31.09407216500004],[79.38259259500015,31.07833466600006],[79.38836307800014,31.069474182000036],[79.39497766100013,31.036711324000134],[79.40159224500022,31.023637187000173],[79.41440800000012,31.020381571000097],[79.43073775300016,31.023172099000146],[79.44634403500018,31.023792216000047],[79.46164025900006,31.021105042],[79.47641971900006,31.014025371000074],[79.4807605390001,31.010046285],[79.48427453600019,31.00544708300005],[79.48685835800008,31.000227763000126],[79.48820194600015,30.994491679000145],[79.49760705600013,30.98121083600016],[79.51269657400022,30.966172994000157],[79.52964644400012,30.95356394500014],[79.54421919800009,30.947414449000078],[79.56592329900016,30.942453512000114],[79.57780887900012,30.9383710740001],[79.5894877530001,30.940231425000103],[79.63031213400009,30.96250396700016],[79.648192179,30.96575958300015],[79.6884997970001,30.96741322900003],[79.73903934800009,30.97924713100012],[79.76064009600006,30.977231751000158],[79.83350386600007,30.961522115000104],[79.85035038300006,30.95449412],[79.86285607900007,30.94152333600009],[79.88042606600013,30.912842916000088],[79.90316369700011,30.890208639000132],[79.91463535600005,30.883818887000178],[79.91936951600016,30.881181945000133],[79.93489302600014,30.87253529900012],[80.00558638600015,30.84726552400015],[80.02863407400011,30.83078074200007],[80.04444706200009,30.806699524000134],[80.0625338140002,30.784788717000183],[80.09219608500004,30.77450510699999],[80.10924930900009,30.77812245800008],[80.14066858000015,30.793211975000172],[80.1571016840002,30.79316029900015],[80.16929732200012,30.785253804000103],[80.19606571500017,30.74809845000011],[80.22459110500013,30.734094137000014],[80.2314123940001,30.72494740800012],[80.20702111900007,30.686138407000087],[80.1998897710001,30.680712382000095],[80.19172489400009,30.679678853000112],[80.18200972500009,30.680040589000114],[80.17291467300018,30.679162089],[80.1666101480001,30.674407858],[80.16692020700006,30.6619021610001],[80.1772554930001,30.649861552000047],[80.19058801300011,30.63797597299999],[80.1998897710001,30.625883687],[80.20330041600008,30.606349996000105],[80.19782271300008,30.591363831000034],[80.18841760200021,30.57699778300004],[80.17983931500007,30.55947947200015],[80.21621952300009,30.566817526000147],[80.25280643800008,30.56500885100017],[80.32587691200015,30.546508687000042],[80.42499230900009,30.497829488000107],[80.47542850700009,30.480466207000106],[80.50829471900013,30.462327779000177],[80.52514123600011,30.45860707600015],[80.54508833800011,30.46103586900004],[80.55997115100014,30.465118306000036],[80.5752673750002,30.466255188000144],[80.59635136000006,30.45979563499999],[80.69474328600008,30.411736552000136],[80.72306197200007,30.39204783200007],[80.7353609620002,30.37819854700002],[80.75499800600008,30.345797425000015],[80.76719364400017,30.331431376000108],[80.7816630450001,30.320992737000083],[80.86698083500008,30.288488261000126],[80.94377201300014,30.270143128000072],[80.97601810700009,30.2552086380001],[80.99627526900011,30.226889954000015],[81.0033032640001,30.21273061100005],[80.99601688700014,30.19696930000008],[80.98816206800021,30.196555888000074],[80.92082767700012,30.17666046200007],[80.90330936700016,30.180432841000183],[80.89364587500019,30.19810618100008],[80.88387902800017,30.210405172000105],[80.86791101100012,30.200173238000144],[80.85039270000007,30.18193145800008],[80.83644006400019,30.170045879000057],[80.84966923100009,30.14338084000012],[80.8298254800001,30.11712921200008],[80.76967411300015,30.07728668200015],[80.75572147700015,30.06457428],[80.72574914600008,30.022768047000124],[80.7158272710001,30.013311259000158],[80.680170532,29.992072245000102],[80.65412561000002,29.97057484900016],[80.6414132080001,29.96344350200003],[80.62229292800012,29.95817250599999],[80.58622277800012,29.954141745000086],[80.57133996600007,29.946855367000026],[80.56286503100014,29.92969879200014],[80.54953251200013,29.89368031900007],[80.5273116450002,29.862416077000073],[80.4761519780001,29.80614044200009],[80.45486128700011,29.79058583600006],[80.3952266850001,29.77658152300013],[80.36897505700009,29.75792633000016],[80.35429895100016,29.730279440000075],[80.35440230300011,29.704880473000074],[80.36391076700006,29.679714050000126],[80.37755334500011,29.65294565900014],[80.38675175000012,29.626823222000052],[80.38520145600009,29.604834900000082],[80.37331587800006,29.584190165000066],[80.3507849530001,29.562072652000083],[80.34510054500018,29.558351949000055],[80.33269820200022,29.552460836000147],[80.3272205000002,29.548585103],[80.32360314900015,29.541660462000106],[80.32505009000013,29.53551096600013],[80.32763391200015,29.52992991100005],[80.3272205000002,29.52483978300013],[80.32008915200018,29.515822245000024],[80.31151086400016,29.508122457000113],[80.29146040900011,29.494738261000162],[80.2911503500002,29.494609070000035],[80.28205529800007,29.484299622000137],[80.2730635980001,29.478666891],[80.26624231000008,29.472129822000127],[80.2634517820002,29.459236552000117],[80.25745731700006,29.45006398600013],[80.22831180800003,29.44171824200008],[80.21766646400008,29.434638570000132],[80.21373905400017,29.416887716000115],[80.22097375500006,29.400118714000154],[80.2421610920002,29.367407532000172],[80.2494991460002,29.326996562000186],[80.25497684700011,29.316635437000073],[80.263555136,29.31531768800012],[80.27275354000014,29.315705261000048],[80.2800915930002,29.31015004500001],[80.28277876900013,29.291313985],[80.27874800600014,29.268085429000095],[80.25818078600017,29.202456360000056],[80.24867232300008,29.20439422600016],[80.23606327400013,29.21307586700014],[80.21880334400005,29.211086324000103],[80.21373905400017,29.19656524600005],[80.2304822180001,29.1547331740001],[80.23306604000007,29.139307760000108],[80.22066369600006,29.126078593],[80.20144006400002,29.12116933200015],[80.18056278500009,29.121324361000017],[80.16350956300002,29.12336558100016],[80.13260705600007,29.110213928000107],[80.11307336500013,29.07220591300016],[80.10470178300008,29.02760915100005],[80.10790572100021,28.994768779000122],[80.10790572100021,28.994587911000067],[80.09943078600023,28.977276306000174],[80.08516809100014,28.967483623000117],[80.06842492700011,28.95993886400008],[80.05292199700008,28.94911265000003],[80.040519654,28.932808737000087],[80.0339050700002,28.915936381],[80.03111454300009,28.897797953000076],[80.03028772000006,28.8776699830001],[80.03638553900012,28.837026469000147],[80.05478234800009,28.824184876000075],[80.07305357600009,28.820924647000155],[80.08186079900017,28.819353129000078],[80.11421024600023,28.802584127000028],[80.14759322100022,28.763310038000142],[80.16206262200015,28.753284811000118],[80.18118290200007,28.747290345000078],[80.21642622900012,28.741941834000116],[80.2332727460001,28.73271759100011],[80.23895715300014,28.72625803700008],[80.2493957930001,28.710212505000115],[80.25704390500006,28.702745260000185],[80.2652087810001,28.699282938000135],[80.28339888500014,28.695355530000157],[80.29104699700011,28.68967112300014],[80.31833215400009,28.640113424000063],[80.32970096800008,28.627478537000126],[80.34975142400005,28.620217998000058],[80.36907841000017,28.62264678900011],[80.38830204300021,28.62724599300016],[80.40835249900007,28.626341655000132],[80.42654260300012,28.616807353000027],[80.46881392500008,28.57184885700012],[80.488450969,28.562443746000056],[80.49341190600009,28.575647074000145],[80.48493697100017,28.639286601000133],[80.48762414500018,28.6564690150001],[80.4975460210002,28.670137431000043],[80.51759647600012,28.680033468000104],[80.53444380100021,28.67955536800015],[80.55583703600021,28.67894826200002],[80.5590409750001,28.673031312000102],[80.55738732900008,28.664349671000068],[80.5568705650002,28.6550220750001],[80.5635885010001,28.64703806600015],[80.58136519400009,28.638950704000063],[80.59852176900014,28.633783061000045],[80.63562544800013,28.62786610900004],[80.64833785000005,28.619752910000116],[80.66818160000017,28.586344097000147],[80.67862024000006,28.574716898000087],[80.69577681500006,28.56750803600012],[80.72709273300008,28.55967905700011],[80.74352583900004,28.54996388700006],[80.7816630450001,28.514746399],[80.79840620900015,28.505703024000137],[80.81700972600018,28.50255076100008],[80.85798913600016,28.50244740900014],[80.87225183100011,28.49686635300004],[80.88036503100014,28.48188018900008],[80.881863648,28.46684234700008],[80.8866695560001,28.45278635700008],[80.90527307200009,28.440849101000122],[80.92134444200016,28.436198222000158],[80.94118819200011,28.432684225000017],[80.96051517800016,28.432270814],[80.97601810700009,28.436921692000155],[80.98780033400011,28.43097890200015],[80.99131433200014,28.42025604300012],[80.99317468300015,28.407827861000058],[81.00040938300006,28.397001649000018],[81.04706637000018,28.38908780400008],[81.1463436280001,28.372248638000183],[81.16970137600005,28.361319072000114],[81.19037194900014,28.338116353000103],[81.21073246300008,28.278636780000156],[81.22432336400007,28.25078318300008],[81.28235599800021,28.191587830000103],[81.29594690000013,28.16745493600014],[81.28075402800019,28.16197723400013],[81.27677494300022,28.153786520000107],[81.28307946800012,28.14608673100004],[81.29940922000017,28.142521058000067],[81.29620528100011,28.128310038],[81.30705733200014,28.123814189000186],[81.32369714400008,28.12624298100006],[81.33811486900018,28.13272837300009],[81.34726159700008,28.14443308600009],[81.35144738800008,28.15680959100014],[81.35790694200008,28.165982157000045],[81.37320316600014,28.167842509000035],[81.39604414900012,28.160633647000097],[81.41733483900012,28.147016907000175],[81.43526656100019,28.129782816],[81.44823734600013,28.11141184500012],[81.45293990100016,28.09704579700012],[81.4540251060001,28.086607157000074],[81.4582108970002,28.07727956200013],[81.47345544400017,28.066401672],[81.5619254970002,28.025990703],[81.58218265800011,28.013278300000067],[81.59510176600011,27.99488149000014],[81.59536014800008,27.99477813800003],[81.59536014800008,27.994726461000095],[81.61504886900009,27.981238913000038],[81.66543339000012,27.97080027300011],[81.68894616700011,27.963203837000048],[81.71039188600011,27.947520040000185],[81.75013106300011,27.90966705400011],[81.80015384900011,27.88408722000004],[81.82785241700006,27.86563873300004],[81.85565433700012,27.85093678800014],[81.8831978760002,27.84905059900002],[81.90609053500012,27.86310658800015],[81.94639815300016,27.905352072000127],[81.97590539600017,27.91695343],[82.02722009300012,27.912405904000035],[82.05021249900014,27.905586122000116],[82.05161136900003,27.90517120300008],[82.07166182500012,27.890030009000057],[82.0903686930001,27.872330831000156],[82.1074219160001,27.863571675000074],[82.15103682400016,27.848275452000035],[82.2704093830001,27.760477193000057],[82.34792403200007,27.726009013000105],[82.40192590400014,27.677174784000115],[82.44068322800015,27.666426086000016],[82.52615604700011,27.675211080000093],[82.65214318800022,27.70414988300014],[82.67389143300014,27.696458430000135],[82.67968672700007,27.69440887500012],[82.6970500080001,27.669397481000104],[82.70924564600014,27.630924377000056],[82.71885746300015,27.556122742000056],[82.72970951300007,27.518166402000034],[82.7521370850001,27.494963684000126],[82.8762638760002,27.4875481160001],[82.90127526900018,27.480365092000156],[82.94716394100007,27.457317403],[83.01046757100008,27.443390604000015],[83.13278568600012,27.444217428000126],[83.1696309820002,27.43119496700008],[83.21924035700006,27.39378123000013],[83.23159102400004,27.38122385600012],[83.2431148690001,27.36215525300004],[83.24941939300017,27.348099263000037],[83.25949629800007,27.33812571300011],[83.2824406340001,27.33094268800015],[83.30486820500008,27.331924541000102],[83.32435022000007,27.34169138600008],[83.34114506000006,27.356935933000116],[83.36274580900007,27.385616354000106],[83.36956709800015,27.39817372600011],[83.37096236200014,27.41021433499999],[83.35582116800012,27.428662822000106],[83.35385746300008,27.44029001900016],[83.35592452000006,27.452485657000082],[83.36098881100011,27.46220082600003],[83.3870337320001,27.47046905600017],[83.4809814860001,27.469745585000066],[83.59043217000006,27.456619771000092],[83.66339929300008,27.43228017200009],[83.80199548400005,27.36592763300014],[83.84798750900015,27.351044820000123],[83.8533401120001,27.346194023000024],[83.85460209200014,27.345050354000175],[83.86173343900005,27.35450714200006],[83.86752120000001,27.35838287300011],[83.87739139900012,27.36174184200003],[83.87764978000008,27.369906719000042],[83.87367069500013,27.38008697500011],[83.87119022600015,27.389440410000148],[83.84271651200011,27.418069153000133],[83.83408654800014,27.434037170000163],[83.85351688700015,27.44096181300013],[83.89987064700013,27.443855692000124],[83.92204311000015,27.449695761000083],[83.92302168800019,27.449953511],[83.93594079600021,27.446077780000124],[83.97583500200008,27.439721578000032],[84.0076676840001,27.440806783000095],[84.0289066980001,27.453725891000104],[84.07960127800006,27.50953643800007],[84.09954838000007,27.516874491000166],[84.11717004400005,27.51328297900001],[84.12156254100009,27.494963684000126],[84.13096765100012,27.486411235],[84.14171634900005,27.480752666000157],[84.16574589100017,27.472174378000133],[84.1750993250001,27.462975973000127],[84.18584802300015,27.438636374000012],[84.19525313400018,27.436052551000117],[84.22553552300022,27.440393372000084],[84.2390230710001,27.43114329100008],[84.24889327000008,27.412436422],[84.2677034920001,27.38856191000012],[84.28940759300005,27.376107890000025],[84.57703861500013,27.32903066000013],[84.60654585800015,27.3104788210001],[84.63191898600022,27.27704416900012],[84.64819706300008,27.24071563700012],[84.65765384900013,27.203405253000096],[84.65982426000014,27.16511301700011],[84.65439823400007,27.125373841000012],[84.64452803500015,27.103721415000038],[84.63036869400011,27.080828756000088],[84.62148034700007,27.05798777299999],[84.62726810700005,27.036490377000135],[84.64023889200008,27.028377177000053],[84.76069665600014,26.999024963000167],[84.77196211800018,26.999179993000112],[84.78550134300016,27.008481751000048],[84.80193444900013,27.01375274700017],[84.81748905400016,27.010600484000022],[84.82813440000015,26.99494252600006],[84.82828942900018,26.994839172000027],[84.85175052900016,26.98212677],[84.9015666100001,26.967192281000035],[84.92404585800008,26.955668437],[84.93856693500007,26.936599834],[84.9442513430001,26.915722554000027],[84.95272627800009,26.89763580300003],[84.97577396700015,26.886887105000095],[84.98817631000006,26.883786520000157],[85.00083703600009,26.882236227000035],[85.01804528800008,26.874433086000025],[85.0168567310002,26.85924021400008],[85.01856205200008,26.845804342000136],[85.04398685800018,26.843737284000085],[85.10021081500004,26.86352935800015],[85.12284509300011,26.86569976800014],[85.16201582800008,26.85102366200006],[85.1655298260001,26.820792949000133],[85.16568485500008,26.78627309200006],[85.19493371600012,26.758884583000036],[85.2872795000002,26.73697377600017],[85.30236901900011,26.73733551000008],[85.33704390500012,26.74679229800013],[85.35321862800012,26.757592672000058],[85.35535245800011,26.759912352000143],[85.36923832200009,26.775007629000083],[85.38587813300009,26.788443502000135],[85.40318973800018,26.787616679000124],[85.42153487200008,26.782655742000156],[85.43962162300008,26.787720032000053],[85.47569177300008,26.805238343000113],[85.51946171000012,26.82642568000007],[85.59857832800017,26.85438263000016],[85.60937870300019,26.85102366200006],[85.68777185000013,26.8118529260001],[85.70182784000022,26.79660837800016],[85.70963098200016,26.762450256000093],[85.70224125100006,26.688449606000077],[85.71288659700022,26.653206279000116],[85.72704593900019,26.637599996000162],[85.78099613500015,26.59920440700013],[85.78998783400019,26.597033997000054],[85.80006473800015,26.60070302300012],[85.80972823100015,26.603028463000086],[85.8176347250002,26.596723938000153],[85.81954675300014,26.58830068000016],[85.81975345900017,26.579515687000182],[85.82161381000017,26.571712545000153],[85.82853845200006,26.566131490000046],[85.84476485200015,26.56850860600009],[85.86636560100007,26.57992909799999],[85.9346818440001,26.632897441000082],[85.95214847900016,26.642044169000158],[85.97571293100006,26.644369609000094],[86.01136967000016,26.65444651300005],[86.04170373500008,26.6454548140001],[86.11069177300013,26.606749166],[86.11585941500002,26.602563375000145],[86.12206058800021,26.60028961200011],[86.14479821800008,26.601529847000066],[86.14635461800017,26.601355776000148],[86.15265303600015,26.60065134700012],[86.16779423000011,26.59662058500014],[86.17446049000014,26.593313293000122],[86.17926639900004,26.588610738000156],[86.1853642180001,26.584424947000016],[86.19585453300007,26.58266794900014],[86.20288252800017,26.58457997700007],[86.22515507100009,26.597395732000123],[86.26308557100006,26.609074606000103],[86.2844279380001,26.61202016200012],[86.30137780800013,26.60902293000002],[86.3086125080001,26.602149963000116],[86.30902592000021,26.587990622000078],[86.3160022380001,26.580962627000172],[86.32318526200007,26.580084127000035],[86.34483768800007,26.58261627200012],[86.35367435800005,26.58261627200012],[86.38364668800008,26.572849427000065],[86.44483158400011,26.543083802000083],[86.47547570800006,26.531973368000152],[86.49490604600012,26.527839254000142],[86.51061568200006,26.52013946600006],[86.52430993700008,26.50908070900014],[86.53774580900009,26.494869690000183],[86.537952515,26.494869690000183],[86.55789961800022,26.48401763900013],[86.62533736100008,26.45631907100001],[86.69520389800007,26.418233541000163],[86.71360070900006,26.414564515000066],[86.72409102400009,26.421954244000077],[86.73070560700009,26.43378814800009],[86.73819869000013,26.443710022000076],[86.75189294500015,26.445518697000082],[86.78723962400014,26.433064677000104],[86.79643802900014,26.431514384000153],[86.82186283400009,26.438128967000168],[86.84635746300007,26.45265004500011],[86.86568444800017,26.472442119],[86.87596805800015,26.49492136700009],[86.90712894700013,26.511509501000102],[86.9351534730001,26.52028933600012],[86.97244795800006,26.531973368000152],[86.98521203600015,26.540655009000133],[87.01544274900007,26.56897369400012],[87.02991215000011,26.579774068000134],[87.0413326410002,26.58018748000016],[87.04443322800014,26.56117055300011],[87.0450016680002,26.544272359],[87.05647383700008,26.49492136700009],[87.05647383700008,26.494869690000183],[87.05668054200007,26.494869690000183],[87.06670577000008,26.465620829000144],[87.08329390500009,26.432082825000023],[87.10628991700011,26.404745993000105],[87.13502201400016,26.394204000000126],[87.18845544500007,26.399578349000095],[87.21909956900018,26.408104960000017],[87.22943485500011,26.39875152600017],[87.23630782100017,26.38330027300016],[87.24529952000009,26.370226136000113],[87.25842533400007,26.362939758000138],[87.30048995000017,26.34598988800003],[87.31402917500006,26.34376780200013],[87.3262248130001,26.353327942000035],[87.34493168200018,26.38934641600012],[87.35640384900009,26.403712464000122],[87.38420577000014,26.418646953000074],[87.4164518640001,26.42696685800003],[87.44962813400011,26.42862050399999],[87.48032393400015,26.42340118500006],[87.55205082300007,26.386710917000087],[87.58698409000007,26.378029277000124],[87.62398441600013,26.39291208900009],[87.6487449520001,26.409993271000033],[87.65964115400018,26.41751007100008],[87.68119022600015,26.42422800700008],[87.69757165500017,26.41626983700003],[87.71090417500014,26.40567616800014],[87.72754398600014,26.403764140000035],[87.7422200930001,26.410482076000065],[87.74945479300017,26.425726624],[87.75617273000009,26.446913961000135],[87.76898848500011,26.45146148700009],[87.78593835400008,26.44598378500011],[87.80443851800013,26.437353821000055],[87.82159509300018,26.43750885100009],[87.85208418800008,26.46065989200009],[87.86980920500011,26.464638978000078],[87.87068770400006,26.46071156900011],[87.89476892100016,26.44293487600008],[87.89730106600004,26.443451640000106],[87.90200362200002,26.435286763000093],[87.9085148520002,26.417820130000152],[87.91476770100022,26.408259990000047],[87.92897871900007,26.396426086000034],[87.96122481300014,26.378959453],[87.97548750900009,26.366557108000123],[88.00664839700006,26.36986440000011],[88.04432051600011,26.40567616800014],[88.07418949400014,26.45394195500016],[88.08225101700012,26.494869690000183],[88.08225101700012,26.49492136700009],[88.07915043200009,26.50737538700018],[88.07982222500007,26.51755564400004],[88.0871362410002,26.53910000400016],[88.10168135600011,26.581944479000143],[88.1466398520001,26.66121612600007],[88.16338301600014,26.705141093000023],[88.1675171310001,26.725036519000028],[88.16906742400008,26.744001770000082],[88.16782718900018,26.76291534400012],[88.15904219600006,26.802551169000182],[88.15532149300006,26.84559763599999],[88.15139408400009,26.86280588800015],[88.14281579600016,26.87841217],[88.1204399010002,26.90884958900007],[88.11180993700006,26.92430084200008],[88.09682377100007,26.959337464],[88.07687666900009,26.991790263],[88.05594771400015,27.018041891000124],[88.04282190000012,27.028945618000094],[88.02737064700008,27.035353495000134],[88.00949060100007,27.04563710500004],[87.99130049700008,27.081500550000086],[87.97548750900009,27.095143128000085],[87.97073327700011,27.102739563000156],[87.96918298300008,27.11080108700004],[87.97083663000015,27.11922434500003],[87.98546105900012,27.148369853000144],[87.98933679200016,27.21839141900007],[88.00466275900007,27.24916308800009],[88.02902429200006,27.298076477000123],[88.0351221110001,27.32257110600007],[88.03253829000019,27.333888245000153],[88.02013594600012,27.353370260000148],[88.01579512500004,27.364222311],[88.0147615970001,27.37807159400016],[88.01724206500015,27.389233704],[88.02582035300006,27.41207468599999],[88.02959273300021,27.418740947000018],[88.03481205300014,27.42380523700008],[88.03930790200016,27.429489644000128],[88.04163334200008,27.43806793300014],[88.0397729900001,27.442357077000125],[88.03078129100001,27.450728659],[88.02809411600012,27.45512115500018],[88.0233398840002,27.47465484700011],[88.02209965000006,27.4842408250001],[88.0233398840002,27.4949120080001],[88.04876468900014,27.5453482060001],[88.11087976100012,27.639502666000098],[88.13485762600013,27.72316680900003],[88.14932702700011,27.74877248200009],[88.15966231300015,27.774119772000162],[88.1545980220001,27.815150859000127],[88.16658695500021,27.833599346000128],[88.16462325100011,27.84535573400002],[88.15640669800004,27.85127268500004],[88.14302250200015,27.85571685800012],[88.11821781400008,27.860884501000143],[88.10488529500017,27.879720561000155],[88.09749556500006,27.90400848400016],[88.09992435700022,27.928322246000064],[88.1157373460002,27.947261658000016],[88.12669274900011,27.950439759000076],[88.15118737800006,27.9472099820001],[88.16296960500003,27.946899923000117],[88.17485518400005,27.94976796499999],[88.1978511970001,27.958294576000114],[88.37877038600018,27.982634176000133],[88.3997510180001,27.994726461000095],[88.3998543710002,27.994726461000095],[88.3999060470002,27.994726461000095],[88.3999060470002,27.99488149000014],[88.4557682700001,28.03152008100001],[88.47540531400014,28.036248474],[88.50207035300016,28.02888458299999],[88.51715987200006,28.039581604000187],[88.53080245000008,28.059011943000158],[88.55281660900008,28.078054708000067],[88.59400272600007,28.106605937000108],[88.61048750800015,28.105830790000095],[88.6316748460001,28.0833515420001],[88.6520353600001,28.069398906000103],[88.71011967000013,28.061983337000086],[88.73564782700007,28.05526540200007],[88.78014123500006,28.02834198000015],[88.8029305420001,28.01100453700003],[88.81750329600018,27.99488149000014],[88.81771000200015,27.99488149000014],[88.81771000200015,27.994726461000095],[88.81967370600007,27.977337342000094],[88.8097518320001,27.944496969000156],[88.81068200700022,27.92785715800012],[88.81889856000006,27.915196432000084],[88.84277307100015,27.892407125000105],[88.85155806500015,27.877162577000078],[88.8550720630001,27.85917917900018],[88.8538835040001,27.84367624900007],[88.80566939300014,27.655108948000034],[88.78308679200015,27.62203603100015],[88.7673771560001,27.58619842500012],[88.74815352400005,27.560127666000128],[88.74102217700013,27.545709941000112],[88.74164229300017,27.53167978900011],[88.7575586340001,27.511448466],[88.7571968990002,27.494963684000126],[88.7543546960002,27.464216207000064],[88.7597807220001,27.43507069900015],[88.77357832900006,27.408509013000028],[88.79538578300017,27.385926412000103],[88.80820153800008,27.378381653000062],[88.81982873500013,27.37362742200007],[88.83083581600013,27.367322896000033],[88.85202315300008,27.342363180000163],[88.8646322020002,27.33238962800014],[88.8923307700002,27.315543111000164],[88.88463098200012,27.286345927000053],[88.87611560500008,27.28048567900011],[88.86142826300014,27.270377910000022],[88.80117354300015,27.256425273],[88.77585209100008,27.24087066700018],[88.7543546960002,27.212603658000106],[88.73843835400012,27.17978912299999],[88.73006677200013,27.15095367400015],[88.73308231500008,27.14897238700017],[88.74257246900001,27.142737122000124],[88.80525598100014,27.113023173000144],[88.82763187700007,27.097881979000036],[88.8408093670001,27.07524770100018],[88.84561527500013,27.04956451400001],[88.84561527500013,26.99494252600006],[88.84561527500013,26.994839172000027],[88.85171309400019,26.945436504000025],[88.86711267100006,26.964246725000024],[88.88643965700012,26.97897450800012],[88.9066451410001,26.981093242],[88.92447351100006,26.961662903000118],[88.92695398000015,26.949415588000093],[88.92540368600012,26.93902862600008],[88.92530033400007,26.929365133000047],[88.93232832800018,26.919236552000182],[88.94276696800014,26.91370717400018],[88.95454919500011,26.912621969],[88.9658146570001,26.91546417300016],[88.97532312000007,26.921717021000163],[88.99661381100005,26.922750549000128],[89.02157352700013,26.912673645000027],[89.0448795990001,26.897119039000174],[89.06069258700009,26.881461080000022],[89.07433516500006,26.85639801000012],[89.08244836400016,26.836037496000085],[89.09650435400007,26.821413066],[89.12807865500005,26.813454895000135],[89.18461267100022,26.810561015000143],[89.21282800300011,26.813041484000124],[89.24083662900007,26.819759420000153],[89.25261885600011,26.82678741500017],[89.2629541420001,26.83634755500016],[89.27359948700021,26.84389231400003],[89.28636356600006,26.84497751900001],[89.30016117300013,26.84440907800014],[89.34165734900009,26.854330953000055],[89.36889455700005,26.837358593000047],[89.40733809400015,26.81340321900005],[89.44289148000021,26.797021789],[89.50541996200009,26.803688049000087],[89.54650272600006,26.797538554000127],[89.58608687400013,26.78405100500005],[89.6113566490001,26.765964254000053],[89.61347538300005,26.74854929600012],[89.59750736500021,26.720954081000013],[89.60980635600005,26.71222076500014],[89.62830651800019,26.712530823000023],[89.6632397870001,26.72550160700014],[89.68515059500012,26.724571431000086],[89.73873905400009,26.703280742000018],[89.75466966300016,26.70098856800008],[89.76028812700022,26.70018015600006],[89.80007898000017,26.700490214000137],[89.80405806500002,26.69976674400006],[89.81366988200013,26.69614939400016],[89.81728723200015,26.696201070000185],[89.82209314000013,26.7010069790001],[89.8252454020002,26.707673239000098],[89.82679569500013,26.713512675000104],[89.82674401900013,26.71568308500018],[89.82726078300007,26.717905172000187],[89.82767419500006,26.72245269800011],[89.8297412510001,26.72762034100013],[89.83496057100015,26.731547750000104],[89.83904301000015,26.731237691],[89.84700118000009,26.72482981400016],[89.85077355900015,26.723176168000023],[89.85870063400009,26.72205652400011],[89.8599202880001,26.72188425700007],[89.88028080200016,26.716251526000136],[89.8904093840001,26.71485626200014],[89.9121134850001,26.716716614000163],[89.97526208500008,26.731857809000175],[90.08915694200019,26.741728008000067],[90.12719079600005,26.751391500000082],[90.15220218900006,26.771752014000025],[90.17742028900008,26.832058410000016],[90.21090661700006,26.851488750000083],[90.22914839700016,26.852884013000065],[90.26599369300006,26.8515921030001],[90.28444218000006,26.857069804],[90.30087528500022,26.868283590000047],[90.31420780500017,26.88037587500004],[90.32857385300017,26.890659485000025],[90.34883101400007,26.896653951000147],[90.38262740100005,26.89179636700014],[90.47523156700012,26.8324201460001],[90.5877828380001,26.780071920000083],[90.71707727100014,26.767049459000035],[90.9444925800001,26.778869550000152],[91.00739546800011,26.782138977000145],[91.0127808070001,26.784348086000037],[91.06206913300016,26.80456654900003],[91.09193811100008,26.804773255],[91.12707808500012,26.800897522000025],[91.19818485600015,26.802344462000022],[91.23249800600014,26.79516143799999],[91.26195357300017,26.77903839200009],[91.2760095620001,26.774077454000135],[91.29657678200007,26.774594218000072],[91.31321659300008,26.778676657000105],[91.33006311000017,26.785497945000046],[91.34556604000008,26.794696350000052],[91.35838179600015,26.80616851900008],[91.37006066900014,26.824668681],[91.37812219300021,26.842807108000116],[91.38845747900021,26.858465068000086],[91.40633752400018,26.86952382400007],[91.42018680900004,26.871539205000133],[91.46059777800022,26.869368795000053],[91.47506717900015,26.8655447390001],[91.48447229000013,26.852728984000024],[91.50741662600015,26.808028870000086],[91.52064579300006,26.79759023000004],[91.53935266200013,26.79883046500008],[91.57562951700018,26.810147603000146],[91.59371626800012,26.81076772100012],[91.63795129500012,26.79898549400012],[91.65376428300013,26.797951965000134],[91.70213342300016,26.803481344000044],[91.73158898900007,26.81619374600008],[91.79525435400014,26.853504131000037],[91.82512333200006,26.858465068000086],[91.8439335530002,26.849370015000105],[91.84951460800019,26.834745586000125],[91.85240848800017,26.818519185000028],[91.86305383300007,26.804773255],[91.87866011600013,26.803016256000106],[91.88692834500009,26.814436747000016],[91.8858948160001,26.830869853000177],[91.87400923700008,26.84430572500004],[91.8955066330001,26.853504131000037],[91.8955066330001,26.868283590000047],[91.89312951700006,26.881357727000093],[91.90821903500014,26.885181784000125],[91.92568566900009,26.87867055300016],[91.95741499800013,26.854279277000145],[91.97508833800012,26.846631165000147],[92.03585982200009,26.854847718000187],[92.07275679500017,26.88776560500004],[92.08037091600008,26.92157089100006],[92.0839189050001,26.9373233030001],[92.0669690350002,26.994839172000027],[92.0669690350002,26.99494252600006],[92.04970910700008,27.026826885000116],[91.99989302600008,27.071526998000152],[91.98769738800014,27.10403147400011],[91.98790409400013,27.122273255000053],[91.99079797400012,27.14077341799999],[91.99586226400018,27.15803334600015],[92.0029936120002,27.172606100000124],[92.00578806200022,27.17611234300007],[92.0084713140001,27.17947906500011],[92.02149377500021,27.191829733000148],[92.02707482900016,27.19983958000013],[92.02996871000002,27.20846954400018],[92.03317264800009,27.227434794000132],[92.0367899980001,27.236478170000098],[92.05063928300015,27.251412659000053],[92.08185184800001,27.275132141000185],[92.08877648900014,27.292340394000163],[92.08484908100016,27.304225973000186],[91.99730920500016,27.44866160100004],[91.97508833800012,27.472432760000103],[91.96330611200014,27.468918763000048],[91.93374719300019,27.449126689000153],[91.92093143700012,27.4451476040001],[91.88434452300007,27.447162984000116],[91.85736942500013,27.443080546000132],[91.77964807200013,27.418844300000146],[91.75008915200007,27.41615712500011],[91.74481815600004,27.42375356000015],[91.74368127400007,27.43915313800015],[91.72709172100011,27.45994159900006],[91.72704146300012,27.460004577000017],[91.70492395000022,27.468763733000102],[91.68022261600012,27.472846171000114],[91.65738163300009,27.479150696000133],[91.64167199800013,27.494963684000126],[91.63288700400003,27.511655172000147],[91.6044649660001,27.53214487700002],[91.59505985500006,27.546381734000093],[91.57325240100013,27.619710592000118],[91.57986698400006,27.65797699000002],[91.62668583200016,27.716423035],[91.63288700400003,27.75944366500009],[91.773756958,27.763810323000158],[91.81478804500009,27.75453440400004],[91.84941125500009,27.735259095000018],[91.8649141850001,27.72998809799999],[91.90873579900018,27.7319001260001],[91.9522473550002,27.72482045500008],[91.97508833800012,27.72657745400015],[92.0121920170001,27.74133107500016],[92.06965621000019,27.79404103700007],[92.10655318200004,27.81086171500006],[92.12629357900019,27.812722066000063],[92.21000940000008,27.806262512],[92.22137821400023,27.807399394000115],[92.22902632700013,27.810655010000104],[92.23491744000015,27.82117116400015],[92.2330570880001,27.830343730000052],[92.22912968000006,27.839387105000114],[92.22933638500008,27.849205628000064],[92.23956831900009,27.865276998000056],[92.2491801350001,27.862641500000123],[92.25827518700007,27.84819793700011],[92.27522505700009,27.81168853700008],[92.28876428200007,27.793085022000025],[92.30385380100003,27.78616038000014],[92.31728967300008,27.803678691000087],[92.3291752530001,27.83292755200013],[92.334652954,27.83127390600002],[92.33982059800022,27.815564270000138],[92.3500525310001,27.802541809],[92.36793257700018,27.803833720000128],[92.37558068800016,27.821119487000047],[92.38105839100015,27.842461853000046],[92.39284061800006,27.856026917000023],[92.40441613800007,27.853830669000114],[92.41733524600008,27.828948466000057],[92.42756717900008,27.82117116400015],[92.4390393480002,27.823289897000123],[92.4751094980002,27.84659596800016],[92.52347863800006,27.860006002000105],[92.53805139200009,27.869178569],[92.56440637200015,27.895223490000074],[92.57649865800012,27.901011251000128],[92.60068322800012,27.9048869840001],[92.62848514800007,27.915764873000157],[92.66238488800016,27.939122620000102],[92.68780969200004,27.9678547160001],[92.69111698400016,27.99488149000014],[92.69111698400016,27.994933166000166],[92.69091027900012,27.994933166000166],[92.69091027900012,27.99498484300007],[92.70134891800015,28.025241394000187],[92.70134891800015,28.03782460600003],[92.68925663200017,28.048314921000085],[92.65422001100015,28.052087301000185],[92.63892378800018,28.05748748800006],[92.63727014200006,28.071982728000094],[92.65484012900012,28.105830790000095],[92.6786112880001,28.13306427000019],[92.70786014900014,28.155414328000163],[92.77007857200013,28.192182108000154],[92.77917362500008,28.195902812000085],[92.78289432800008,28.19094187400013],[92.78537479700017,28.183293762000133],[92.7902323810001,28.178901266000064],[92.80532190000011,28.178022767000115],[92.81989465400007,28.179263001000052],[92.83477746600013,28.183526306000104],[92.8502803960001,28.191949565000087],[92.86536991400011,28.205204570000017],[92.88955448400012,28.235822856000127],[92.90381717900007,28.249697978000185],[92.92200728300011,28.258638001000023],[92.96035119600006,28.270213521000144],[92.97492395000009,28.282305807000128],[93.0007621670002,28.308712464000124],[93.09315962700012,28.366641744000063],[93.116724081,28.390593770000162],[93.13636112500015,28.424467672000063],[93.14969364400005,28.461467997000128],[93.1553780520002,28.494850973],[93.18766666453385,28.518108054909575],[93.22004250768806,28.5416541226581],[93.2641913847165,28.562256931937966],[93.3171700371504,28.60346255049789],[93.35543239724174,28.624065359777674],[93.44621301300006,28.67189443000011],[93.55173628800011,28.67894826200002],[93.60713342300008,28.672204488000162],[93.62553023300008,28.672359518000018],[93.64341027900011,28.68024017400016],[93.65974003100014,28.69354685500018],[93.67472619700001,28.70300364200015],[93.68919559800017,28.699127910000087],[93.7055253500001,28.691893209000124],[93.72247522000012,28.69664744100011],[93.79141158000002,28.751011048000105],[93.80712121600018,28.759124247],[93.86582564300008,28.775298971],[93.87368046100019,28.78196523100011],[93.87729781100009,28.792429708000054],[93.88763309700008,28.79511688300009],[93.89982873500011,28.79527191200013],[93.90861372900005,28.798243307000053],[93.91212772700013,28.80609812500016],[93.90995731700015,28.811782532],[93.90675337700004,28.817518616000157],[93.90716678900016,28.82527008100008],[93.91853560400008,28.833228252000037],[93.93848270700019,28.836664734000166],[93.95977339700006,28.83687144000011],[93.97506962100012,28.835036927000132],[93.99201949100014,28.844648743000118],[94.01144982900021,28.853020325000113],[94.02684940600008,28.864182435000043],[94.07947398050712,28.88307210501098],[94.13539589140973,28.897788397353747],[94.17365825150105,28.930164240507807],[94.25018297168353,28.933107498976412],[94.29138859024337,28.97725637600483],[94.34731050114604,29.02434851150174],[94.30904814105472,29.059667613124372],[94.27078578096351,29.0979299732157],[94.287505331,29.147937724000048],[94.3237821860001,29.146025696000105],[94.33577111900016,29.149617208000013],[94.34631311100011,29.159073995000156],[94.3625395100001,29.185325623000026],[94.3728747970001,29.196306865000096],[94.39643925000021,29.207081400000035],[94.4223808190001,29.210492045000034],[94.47498742700006,29.21080210400011],[94.49824182200008,29.21522043900002],[94.51477828000006,29.221059876000098],[94.52862756400006,29.231240133000153],[94.58268111200013,29.30291534500004],[94.5999410400001,29.316635437000073],[94.63043013500013,29.31945180300015],[94.66846399000022,29.306610209000056],[94.70422408000016,29.284699402000015],[94.75641727800021,29.230516663000074],[94.7676827390001,29.213851013000134],[94.76148156800011,29.17470611600011],[94.77657108500009,29.166696269000123],[94.79879195200006,29.166437887000157],[94.81543176300008,29.168866679000033],[94.85408573500015,29.170003560000126],[94.89129276600008,29.16049509700015],[94.96591353300008,29.130186870000117],[94.9882377530001,29.124295757000123],[94.9818298750001,29.1330807500001],[94.96467329900011,29.15010813400012],[94.9546480710001,29.16907338500009],[94.97201135200012,29.16010752400014],[94.98906457600005,29.15398386700018],[95.04766564900014,29.140806377],[95.09903202400014,29.113779603000168],[95.11691206900016,29.1080951950001],[95.19153283800007,29.09682973300006],[95.19969771300006,29.09424591100007],[95.20786259000008,29.089595032000187],[95.21282352700015,29.08186940500009],[95.21406376100018,29.073084412000114],[95.2163375250001,29.06499705000003],[95.2249158120002,29.05936431900007],[95.28155318200011,29.052672221000154],[95.274436918742,29.1126462655585],[95.3068127618961,29.136192333307022],[95.37156444820451,29.139135591775457],[95.40982680829565,29.130305816369756],[95.42454310063849,29.177397951866777],[95.44514590991845,29.186227727272453],[95.44808916838699,29.147965367181214],[95.46634810400022,29.1227196250001],[95.47492639200007,29.136775614000115],[95.51130660000015,29.13178883900015],[95.5214351810001,29.13786082000011],[95.52267541500012,29.161192729000145],[95.5119267170002,29.197547099000037],[95.51533736200022,29.20943267900004],[95.55016727700009,29.212481588000074],[95.5520276280001,29.220129700000157],[95.55068404100015,29.2302841190001],[95.5537846280001,29.239043275000096],[95.5644299730001,29.245606181000188],[95.57290490800008,29.247259827000118],[95.58168990100009,29.247466533000175],[95.59233524600003,29.249688619],[95.64669738938946,29.228350448108714],[95.71716496895559,29.21828365102779],[95.74736536019812,29.273651034972616],[95.74478072100007,29.34043243500004],[95.77640669800003,29.345548401000045],[95.7959403890001,29.35288645500013],[95.86313352662816,29.32398502037689],[95.95373470035591,29.359218810160016],[96.01413548284104,29.364252208700364],[96.07453626532636,29.369285607240908],[96.1419657800001,29.368466899000065],[96.15095747900014,29.354075012000138],[96.16604699800016,29.303173726000026],[96.17627893100021,29.28645640100008],[96.20542443800011,29.256949158000065],[96.23529341600008,29.2412136840001],[96.2678495690001,29.241730449000116],[96.30412642400003,29.261212464000113],[96.32324670400007,29.275010071000068],[96.3370959890001,29.27971262700005],[96.34991174300008,29.274234924000055],[96.36624149600001,29.25723337900014],[96.3668616130001,29.244210917000103],[96.34236698400017,29.210647075000097],[96.32748417200011,29.18044220000017],[96.31642541500011,29.17186391200015],[96.21007531700009,29.14576731400014],[96.19364221300005,29.13693064400015],[96.18351363100007,29.123778992000084],[96.17462528500008,29.10884450300004],[96.19533783029684,29.02701450649131],[96.28090560548415,29.07734849189559],[96.35137318505022,29.097482086057326],[96.36656829155609,29.036536563468886],[96.45760542900015,28.994587911000067],[96.4511975510002,28.981384583000093],[96.45212772700009,28.970377502000087],[96.46008589700014,28.96334950700019],[96.47465865100011,28.96205759700014],[96.49222863800017,28.94800160700011],[96.50039351400007,28.929243062000026],[96.51083215400008,28.885524801000045],[96.52375126100006,28.864414979000017],[96.57666792800008,28.808526917000123],[96.59258426900011,28.75788401300015],[96.59800971353147,28.709910398444077],[96.50237514126334,28.644476217418415],[96.43517785700007,28.61122629800012],[96.46714135148025,28.563941840771506],[96.42687416315678,28.518641253907575],[96.46210795293987,28.488440862664945],[96.49522587100009,28.421470439000146],[96.51238244700002,28.428808492000044],[96.5174753368844,28.488440862664945],[96.52754213396545,28.533741449528762],[96.557742525208,28.584075434933236],[96.61310990915283,28.609242427635323],[96.6986776843402,28.589108833473585],[96.7691452639061,28.518641253907575],[96.83961284347234,28.478374065583935],[96.88491343033624,28.428040080179656],[96.89788863200008,28.354704489000127],[96.93395878200008,28.336617737000026],[96.96579146400015,28.330468242000123],[96.99741744000013,28.337082825000138],[97.03297082600007,28.357029928000042],[97.07844608600007,28.375142517000157],[97.11554976400012,28.366564230000122],[97.18272912600017,28.314991150000125],[97.19327111900006,28.31139963800014],[97.2027795820002,28.311554667000095],[97.2105310470001,28.308092346000148],[97.2207629800001,28.283391012000134],[97.22965132700013,28.274606018000057],[97.28525516800012,28.235667827000086],[97.3234957280001,28.21747772300013],[97.32866337100015,28.190011699000152],[97.29889774600021,28.129240214000063],[97.2929032800001,28.095082092000084],[97.30654585800012,28.06965728800016],[97.35512170500013,28.023045146000115],[97.36225305200006,27.99488149000014],[97.35677535000015,27.980567118000167],[97.340032186,27.95180918400014],[97.33569136600013,27.935608622000146],[97.33631148300012,27.91318105100005],[97.33817183500011,27.901553853000095],[97.33352095600006,27.894164124],[97.31491744000019,27.88460398300019],[97.2929032800001,27.877550151000076],[97.28866581300016,27.88434560200004],[97.28804569500019,27.897755636000156],[97.27636682200013,27.91033884700009],[97.26065718600015,27.91204417000013],[97.24122684700009,27.907858379000018],[97.22293339000012,27.89971934099999],[97.21094445800006,27.889513245000114],[97.19802535100021,27.87326100700001],[97.18210900900013,27.85726715100016],[97.13177616400004,27.81685618100009],[97.1231978760002,27.812153625000107],[97.1124491790001,27.809208069000093],[97.10604130000016,27.805539043000106],[97.0981864830002,27.79101796500005],[97.09219201700009,27.785488587000074],[97.0723482670002,27.77918406200014],[97.0653202720001,27.773990581000035],[97.0620129810001,27.763345235000045],[97.06035933400014,27.75045196500004],[97.05674198400007,27.74678293900014],[97.05054081200015,27.74678293900014],[97.03617476400002,27.74292006800009],[97.00403202400011,27.73427724200006],[96.99090621000008,27.72662913000006],[96.95700647000015,27.688078512000104],[96.93953983600008,27.674022522000154],[96.89974898300008,27.649476217000096],[96.88352258400018,27.63632456500012],[96.87019006400007,27.619090475000135],[96.86212854000004,27.59929840100007],[96.86202518800022,27.578369446000078],[96.86615930200017,27.56844757099999],[96.8773214120001,27.55307383200001],[96.88031864400007,27.543849589],[96.8810421150001,27.534392802000024],[96.88465946500011,27.515840963000088],[96.8884835210001,27.507185160000134],[96.89024051900012,27.492483215000146],[96.87701135200021,27.46307932500015],[96.88135217300005,27.444114075000115],[96.90512333200016,27.4084056600001],[97.06790409400016,27.217099508000118],[97.09549930900008,27.191261292000107],[97.10128706900016,27.183303121000122],[97.10170048100017,27.16526804600012],[97.10438765500007,27.156017965000114],[97.11172570800008,27.148834941000175],[97.12082076100013,27.143925680000123],[97.12929569600007,27.137879537000103],[97.13477339700013,27.127337545000117],[97.13301639900007,27.119586080000133],[97.12288781700013,27.093696188000095],[97.11916711400008,27.087288310000147],[97.10604130000016,27.08258575400008],[97.09797977800017,27.08589304600015],[97.08991825400008,27.092197571],[97.07720585100012,27.09648671500007],[97.06697391800006,27.095246480000114],[97.05882660700016,27.09207563500003],[97.04785363800012,27.087805074000087],[97.03803511600009,27.087029928000092],[97.0267696540001,27.091474101000088],[97.01891483600016,27.098708802000044],[97.01188684100005,27.10702870700011],[97.00299849500006,27.11452179000007],[96.86533247900016,27.171624248000068],[96.8426982020001,27.18852244100007],[96.84176802600014,27.20438710600017],[96.85127649,27.22118194600013],[96.85964807200011,27.24071563700012],[96.8537569580001,27.248725485000122],[96.82171757000017,27.273065084000123],[96.80993534400008,27.28577748700017],[96.78916141700014,27.317971904000117],[96.77634566300017,27.330632630000153],[96.75887902800011,27.34174306300018],[96.72415246600009,27.356264140000132],[96.70523889200015,27.360759989000073],[96.68725549300015,27.36174184200003],[96.67588667900006,27.357659404000017],[96.65924686700006,27.34143300400011],[96.64901493300007,27.33621368500009],[96.63640588400014,27.335541891],[96.6292745360001,27.338694153000162],[96.62317671800022,27.343655091000116],[96.6141850180002,27.348409323000013],[96.58689986200008,27.353576966],[96.57604781100022,27.34541208899999],[96.56746952400013,27.328307191000036],[96.54731571500022,27.306448059],[96.5318127850002,27.29854156500015],[96.51093550700013,27.292495422000016],[96.49005822700005,27.29073842400014],[96.47465865100011,27.29538930299999],[96.4077893470002,27.29817983000005],[96.14258589700009,27.2575104780001],[96.07416630100008,27.229863586000093],[96.01318811100012,27.19079620400008],[95.97484419800017,27.14289215100014],[95.9383606370001,27.079898580000062],[95.91644983,27.0513731890001],[95.8888546150001,27.02703359000016],[95.86146610500006,27.014217835000082],[95.80493208800013,27.00476104800013],[95.77795699100008,26.995149231000095],[95.73496219900018,26.94729685500003],[95.709227336,26.907454326000092],[95.69930546100014,26.896188863000035],[95.68607629400005,26.891279603],[95.6399809160001,26.886422018000175],[95.62427128100015,26.88073761000011],[95.61331587700008,26.867921855000063],[95.60339400200016,26.8442540490001],[95.59130171700005,26.823738505000122],[95.57476525900009,26.81614207000008],[95.55440474400014,26.81660715700009],[95.53135705600019,26.82027618500011],[95.48980920400018,26.810716044000014],[95.46273075300016,26.77717804000009],[95.43999312400015,26.735371806000117],[95.41064091000007,26.701627096000053],[95.39265751100012,26.691756898000094],[95.31596968600016,26.669070943000023],[95.2789693610001,26.652947897000118],[95.26057255100014,26.647625224000095],[95.2469331180001,26.648903921000013],[95.23907515500017,26.64964060500013],[95.22326216700017,26.670362854000143],[95.2048653570001,26.667572327000116],[95.19556359900017,26.660751038000157],[95.18161096200006,26.641682435000078],[95.17323938000017,26.633827617000136],[95.16342085800014,26.62974517800005],[95.14140669800021,26.62499094600004],[95.13262170500016,26.6208051550001],[95.12280318300006,26.61160675100011],[95.11908247900007,26.604217021000082],[95.11587854000018,26.575639954000124],[95.11618859900008,26.569335429000102],[95.11494836400007,26.56256581600017],[95.1095740160001,26.551300354000105],[95.09923872900018,26.536107484000084],[95.06988651600007,26.506238506000084],[95.05438358600011,26.49492136700009],[95.05438358600011,26.494869690000183],[95.04063765500015,26.475594381000136],[95.04260135900009,26.459678040000124],[95.06172163900007,26.42660512300013],[95.06606245900016,26.407433167000036],[95.06420210800016,26.392602031000095],[95.05045617700013,26.359064026000098],[95.04363488800007,26.327696432000053],[95.04177453600008,26.287595520000153],[95.0463220620002,26.247959697000013],[95.0587244060001,26.217677307000155],[95.06637251800007,26.211011047000156],[95.07453739500008,26.20832387300011],[95.0828056230001,26.206618551000144],[95.09076379400007,26.202691142],[95.0944844970002,26.19504303000012],[95.0897302650001,26.187601624000095],[95.0823922120002,26.179798483000084],[95.07836145100012,26.17132354800016],[95.08817997300017,26.10409250900001],[95.10171919800014,26.093395488000013],[95.13747928900008,26.08295684800008],[95.15008833800019,26.0709679160001],[95.1512252200001,26.049935608000094],[95.13954634600006,26.029936829000164],[95.10823042800021,25.995106913000097],[95.06585575400011,25.95381744399999],[95.04942264900015,25.943740540000036],[95.01200891200008,25.931441549000013],[95.00064009600007,25.922036438000035],[94.99402551300008,25.900435690000066],[94.99319869000006,25.880953674000082],[95.01345585200008,25.777704163000024],[95.01531620300008,25.7551215620001],[95.00880497300008,25.73713816300001],[94.99991662700009,25.73155710900009],[94.97862593600021,25.729076640000116],[94.96901412000008,25.725614319000087],[94.96146936100016,25.71796620700009],[94.8716557210001,25.59802520800009],[94.86803837100014,25.594717916000107],[94.8574963790002,25.589343567000142],[94.85346561700013,25.58603627500004],[94.85294885300007,25.580765280000108],[94.86101037600017,25.57141184600009],[94.86028690600008,25.56717437800002],[94.85077844300017,25.562781881000134],[94.83103804600009,25.562471823000134],[94.82235640500008,25.559112854000134],[94.80799035600015,25.542628072000138],[94.7823588460001,25.504594219000026],[94.7643754480001,25.491675110000116],[94.74577193200011,25.486610820000053],[94.71114872200022,25.482786764000096],[94.69202844200007,25.476327210000036],[94.6594722900002,25.455501608000176],[94.65036003700013,25.446649705000155],[94.63053348800021,25.427389629000132],[94.60800256400009,25.39462677000013],[94.55012496000008,25.245281881000054],[94.55332889800015,25.20414744],[94.57689335200016,25.173606670000183],[94.61296350100017,25.161359355000158],[94.6532711180001,25.154124654],[94.68913456300007,25.13851837200015],[94.70680790300017,25.109941305000074],[94.71383589700015,25.06826426200017],[94.70856490100012,25.02588958700015],[94.68975467900012,24.99509043400009],[94.67352828000011,24.97480743400017],[94.65482141100014,24.889153748000112],[94.63911177600008,24.862798767000054],[94.59901086400006,24.813473612000124],[94.59322310400009,24.78378550200007],[94.59322310400009,24.765931295000126],[94.58950240100009,24.74725026400013],[94.58154423100021,24.730119528],[94.5694519460002,24.71639943400005],[94.5557060140001,24.708854676000115],[94.54340702300006,24.707330220000088],[94.53100468000011,24.707485250000143],[94.5163285730001,24.704953105000143],[94.5079569910001,24.68901092500012],[94.48707971200015,24.620462138],[94.47498742700006,24.597388611000113],[94.4302356360001,24.570904439000127],[94.41845341000013,24.56031077100006],[94.4108052980001,24.545944723000147],[94.39705936700008,24.495069275000116],[94.38186649600007,24.486310120000052],[94.37039432800006,24.47773183300002],[94.36367639200013,24.465820415000067],[94.36119592300021,24.425409444000096],[94.3522042230002,24.413937277000073],[94.3400085860001,24.40600494400003],[94.32874312400004,24.394481100000107],[94.328329712,24.38848663400007],[94.33174035600015,24.37109751400014],[94.33070682800016,24.362855123000102],[94.32367883300006,24.354664408000176],[94.30280155400007,24.34102183100016],[94.29536014800006,24.332598572000094],[94.2899858000001,24.31675974600007],[94.28688521300015,24.283066712000117],[94.28275109900014,24.266426901],[94.23396854600017,24.160335185000076],[94.22218632100007,24.12263722800004],[94.21846561700006,24.086670431000144],[94.21412479700008,24.069177959000015],[94.20368615700006,24.057757467],[94.19913863200011,24.048093974],[94.19386763500009,24.00967254700005],[94.19025028500019,23.995280660000116],[94.14487837800007,23.938875834],[94.1350598550001,23.91900624600011],[94.13361291500021,23.899162496000102],[94.1350598550001,23.87730336500009],[94.13185591700014,23.856968689000052],[94.12885926700008,23.853904873000133],[94.11686975100017,23.841646627],[94.09971317600011,23.842628479000055],[94.08534712700012,23.857511292000098],[94.0710844320001,23.87611480800014],[94.05506473800008,23.88794871000006],[93.99791060400011,23.91696502700013],[93.97506962100012,23.92091827400013],[93.94054976400017,23.928876445000085],[93.91233443200011,23.93900502500004],[93.88318892500016,23.94530955000006],[93.80371057200009,23.936059469000142],[93.78283329300021,23.945464579000188],[93.74304244000008,23.995280660000116],[93.71110640500008,24.005460917],[93.66046350100007,24.011222839000155],[93.61240441900011,24.009052430000068],[93.58801314300015,23.995228984000036],[93.58563602700022,23.987296651000165],[93.58181197200011,23.979596863000083],[93.57695438700009,23.973008118000067],[93.57106327400007,23.968021343000128],[93.56134810400013,23.965695903],[93.55525028500008,23.97099273700003],[93.5499792890001,23.978020732000132],[93.54346805900016,23.980888774000118],[93.52682824700011,23.975385233000125],[93.49571903500006,23.959132996],[93.47484175700012,23.957505189000145],[93.45665165200009,23.959959819000133],[93.4490035400001,23.96892568000008],[93.44559289600008,23.981612244000118],[93.43918501800013,23.995228984000036],[93.40652551300016,24.025847270000142],[93.39650028500014,24.037526144000093],[93.36828495300009,24.078479716000132],[93.34854455600012,24.08889251700016],[93.32218957500007,24.080055847000054],[93.30968387900006,24.06398447700009],[93.3029659420001,24.041143494],[93.30255946900016,24.03577465500014],[93.3011055910001,24.016571350000035],[93.3029659420001,23.995280660000116],[93.30813358600014,23.977503968000107],[93.31609175600008,23.96109670000014],[93.33758915200022,23.928411357000144],[93.3459607340001,23.918696188000027],[93.3518518480001,23.913916117000113],[93.35598596200012,23.90699147500014],[93.35918990100018,23.890945943000176],[93.35825972500007,23.85526336700009],[93.37479618400002,23.739017232000023],[93.40631880700018,23.719121806000185],[93.41231327300012,23.70870900500007],[93.4259558510001,23.690803121],[93.4302966720002,23.680338643000155],[93.43236372900016,23.647317404000162],[93.40022098800014,23.454021709000145],[93.39980757700013,23.426090597000083],[93.40590539600007,23.367670390000015],[93.40776574700007,23.356379089000043],[93.40724898300007,23.347258199000137],[93.4037349860001,23.33875742600004],[93.38420129400018,23.31312591600009],[93.3778967690001,23.296822001000137],[93.37644982900011,23.279484559000036],[93.38079065000008,23.23726491300006],[93.37272912600005,23.16982716900004],[93.37303918400008,23.154220887000022],[93.37520959500014,23.142154439000038],[93.37489953600007,23.12972625700014],[93.33335168500017,23.052289123000104],[93.31826216700009,23.033659770000053],[93.29883182800019,23.01795013400009],[93.2727869060002,23.00590952600011],[93.24653527900008,23.004488424000115],[93.22555464700011,23.020378927000035],[93.2121187750001,23.03988678000006],[93.1965124920001,23.053839417000134],[93.17708215400009,23.058438619000086],[93.15238081900011,23.049937846000162],[93.14008182800015,23.03190277100016],[93.13822147700014,23.00526357000005],[93.14318241400011,22.977513326000107],[93.15114058400016,22.956222636000017],[93.1710876870001,22.920436707000093],[93.17739221200011,22.9002053840001],[93.17553186100011,22.881705220000143],[93.16106246000005,22.860982972000116],[93.12530236800015,22.821553854000015],[93.1158972580001,22.79840281200005],[93.11238326000014,22.799953105000057],[93.0795170490002,22.772719626000068],[93.07083540900007,22.692879537000138],[93.0739359940001,22.67189890500005],[93.08189416500014,22.652830302000083],[93.10442509000008,22.615933329000043],[93.11052290900014,22.596347962000134],[93.10907596900013,22.57469553600005],[93.09822391800017,22.535266419000138],[93.09915409300007,22.511960347000112],[93.10959273300008,22.479042460000144],[93.1178609620001,22.462867737000167],[93.1535177000002,22.42752105700005],[93.16592004400009,22.386593323000127],[93.17429162700014,22.269391174000088],[93.17367150900012,22.25941762300009],[93.1690206300001,22.246911927],[93.1612691650001,22.242519430000087],[93.15145064300006,22.24096913700008],[93.12974654200015,22.231615702000127],[93.12478560400021,22.232287496000097],[93.12354537000007,22.23068552700009],[93.12313195800007,22.21838653600004],[93.14173547400011,22.18727732399999],[93.11951460800017,22.180972799000173],[93.10432173700022,22.18717397000016],[93.0905758060002,22.19714752200015],[93.0724890540001,22.202470195000032],[93.04582401500014,22.206862691000097],[93.03641890500009,22.206242575000044],[93.02453332500008,22.201901754000158],[93.02236291600016,22.196217346000097],[93.0239132080001,22.188827617000115],[93.02256962100014,22.12097646100007],[93.02546350100012,22.112914937000156],[93.00748010300006,22.105938619000185],[92.99518111200008,22.103251445000136],[92.98546594300015,22.09596506800007],[92.96717248600007,22.062685446000117],[92.96531213400007,22.049559632000168],[92.9684127200002,22.03617543500003],[92.97492395000009,22.02330800400013],[92.97792118400011,22.01648671500008],[92.97957482900003,22.00935536700014],[92.97988488800014,22.002275696000126],[92.9789547120001,21.99535105400004],[92.9770943610001,21.993025615000093],[92.97492395000009,21.99090688100013],[92.96810266200012,21.987237854000128],[92.96169478300007,21.986876119000115],[92.95559696500005,21.98961497000009],[92.95032596900009,21.99535105400004],[92.9374068600001,22.013024394000055],[92.92097375600022,22.021809387000033],[92.9061942950001,22.01731353800001],[92.89864953600008,21.995402731000137],[92.8892444250001,21.96672231100014],[92.87746219900012,21.957007142000023],[92.86702356000008,21.966515605],[92.86206262300013,21.995402731000137],[92.85389774600011,22.024134827000136],[92.83612105300008,22.04651072200012],[92.77162886600016,22.10418162100011],[92.70806685400007,22.147951558],[92.68377893100009,22.154307760000123],[92.6739604090002,22.14707305900005],[92.67106652800013,22.133895569000074],[92.67468387900013,22.105576884000087],[92.6739604090002,22.095241598000154],[92.66951623600019,22.09265777700007],[92.66455529800005,22.093846334000187],[92.66207482900009,22.09477651000004],[92.65618371600007,22.075294495000048],[92.65608036300014,22.06056671100005],[92.65835412600009,22.046562398000148],[92.65835412600009,22.03281646800012],[92.65091272000015,22.01917389],[92.63985396300015,22.01338612900004],[92.62755497200011,22.012352600000057],[92.61525598200015,22.008786926000184],[92.60388716700018,21.995402731000137],[92.59799605400005,21.989304912000094],[92.59127811700013,21.98424062200003],[92.58383671100015,21.980313212000155],[92.57587854000016,21.977574362000027],[92.57515507000008,21.986566061000143],[92.5730880130001,21.995402731000137],[92.55996219900011,22.06134185900008],[92.53732792100018,22.12862457300004],[92.54931685400007,22.13849477200013],[92.56419966700011,22.138339742000184],[92.57556848200008,22.143300680000138],[92.57701542200007,22.168673808000122],[92.5189311120001,22.49537221300001],[92.51738081900007,22.51258046500008],[92.5045650640001,22.543793030000145],[92.50084436000006,22.560536194000107],[92.50291141800014,22.618620504000162],[92.49588342300015,22.695618388000113],[92.49154260200007,22.711069641],[92.4806905520002,22.72615915900009],[92.45371545400005,22.74796661400002],[92.44203658000018,22.762926941],[92.43500858600007,22.79328684600013],[92.42632694500006,22.87105987600007],[92.41185754400007,22.88793223100005],[92.3786812750001,22.900437928000045],[92.35987105300008,22.926612040000165],[92.35222294100016,22.960330913000018],[92.35304976500012,23.029913228000126],[92.32762495900013,23.17142913800008],[92.32855513500006,23.21119415300008],[92.33268925000019,23.22625783300016],[92.35067264900007,23.260984395000108],[92.3574939370002,23.278941956],[92.35687382000006,23.289122213000056],[92.35222294100016,23.298837382],[92.34705529800007,23.315425517],[92.34674523900011,23.325295715],[92.34953576700016,23.344958598000133],[92.3486055910001,23.354105326000123],[92.34488488800011,23.359117940000157],[92.3316557210002,23.368652243000085],[92.32669478400007,23.375266825000082],[92.32535119700017,23.38216562900014],[92.32690149000021,23.396014913],[92.32535119700017,23.403507995000137],[92.31977014200018,23.412163798],[92.306747681,23.423868510000162],[92.3014766850001,23.43180084200013],[92.29682580600016,23.446580302000044],[92.29103804500008,23.49528534000008],[92.25279748500006,23.609309388000057],[92.2500069580001,23.642614848],[92.26168583200008,23.685118713000136],[92.2597366050002,23.702640572000135],[92.25930871600016,23.706486918000067],[92.23874149600007,23.716848043000155],[92.22210168500013,23.70777882900002],[92.20938928200009,23.661605937000058],[92.19429976400008,23.648144226000014],[92.1807605390002,23.66537831700019],[92.17063195800009,23.703644714000077],[92.15078820800008,23.731653341000097],[92.10841353400016,23.71824330700015],[92.09218713400006,23.70134511400006],[92.0596309810002,23.659487203000097],[92.0423710530001,23.645560405000097],[92.01901330600005,23.64005686500012],[92.00351037700013,23.64742075700012],[91.96165246600016,23.6911390180001],[91.94914677000006,23.709768372000056],[91.93664107300017,23.7235401410001],[91.92268843600019,23.72297170000006],[91.9164872640001,23.70987172500018],[91.91442020700006,23.688322653000125],[91.91597050000004,23.65015960700005],[91.94232548000011,23.53443023700011],[91.94077518800012,23.49518198600005],[91.91814091000006,23.459938660000162],[91.90511844900011,23.446631979000145],[91.88909875500015,23.435934958000146],[91.83380497300007,23.413894959000157],[91.81768192600005,23.40092417400014],[91.79163700400007,23.368342183],[91.76259484900018,23.321549174000083],[91.74368127400007,23.272327373],[91.74915897700006,23.23240732900014],[91.76393843600007,23.200626323000037],[91.77902795400016,23.131767476],[91.79194706200016,23.1011491900001],[91.79556441200006,23.08949615500002],[91.79132694500018,23.080375265000143],[91.77623742700008,23.06525990900003],[91.773756958,23.064898173000028],[91.76424849400021,23.065647481000138],[91.76094120300014,23.065492453],[91.75598026500009,23.061539206000035],[91.75556685400008,23.056836650000047],[91.75629032400016,23.052159933000084],[91.75505009000013,23.048232524000113],[91.73830692600009,23.024668071000022],[91.73127893100016,23.017330018],[91.71443241400019,23.003118998000062],[91.70699100800019,22.99536753400004],[91.69469201700022,22.98813283300008],[91.66761356600009,22.982629293000073],[91.65407434100021,22.978055929000146],[91.64694299300007,22.976583150000135],[91.63991499800008,22.978004253000123],[91.63278365100021,22.980303853000137],[91.6257556560001,22.98154408800009],[91.61666060400015,22.978055929000146],[91.61200972500009,22.96983937600011],[91.60828902200015,22.960330913000018],[91.60239790900008,22.95296702100002],[91.5860681560001,22.944466248000126],[91.58296757000019,22.947902731000156],[91.58307092300012,22.95779876700014],[91.57676639900009,22.968805848000112],[91.56312382000006,22.974981181000103],[91.54979130000018,22.977229106000106],[91.53656213400009,22.98185414600009],[91.52364302600007,22.995212504],[91.5194055580001,23.005625305000038],[91.51816532400008,23.035080872000137],[91.51558150200017,23.03880157500005],[91.5060730390002,23.0411786910001],[91.50328251200013,23.044408468000157],[91.49811486900015,23.069962464000028],[91.47506717900015,23.143084615000173],[91.47041630100007,23.15329071100014],[91.46359501200007,23.184115702000113],[91.46121789600008,23.184425761000014],[91.44643843600008,23.197887471000072],[91.44540490800007,23.203029277000084],[91.44674849500008,23.20879119900003],[91.44643843600008,23.21553497300006],[91.43992720500009,23.223518983000034],[91.43961714700006,23.222640482000102],[91.43620650200009,23.21571584100012],[91.4365165610001,23.21486318000008],[91.42814498000021,23.229513449000148],[91.41357222500008,23.24863372800014],[91.39434859200004,23.262663879000073],[91.37212772600012,23.261888733000077],[91.36096561700018,23.24752268500005],[91.35569462100014,23.224139099000112],[91.35590132700011,23.17964569100012],[91.37460819500009,23.09572316500011],[91.37088749200004,23.062779440000057],[91.33740116400006,23.071073507000037],[91.31352665200009,23.10104583800016],[91.30050419200015,23.142309469000068],[91.27724979600012,23.30325571700011],[91.27290897700007,23.313487651000074],[91.26753462700017,23.321549174000083],[91.2657776290001,23.329352315],[91.27290897700007,23.338499044000073],[91.28293420400004,23.347645773000167],[91.28727502500013,23.35555226700002],[91.28396773300003,23.361443380000097],[91.2709452720002,23.364595643000158],[91.25812951700013,23.37363901800002],[91.24789758300001,23.3937669890001],[91.23446171100008,23.436270854000142],[91.2297074790001,23.461178894000014],[91.22733036300016,23.468775330000156],[91.2208191330001,23.477896220000062],[91.20335249900013,23.48792144800008],[91.19508426900009,23.49518198600005],[91.18588586500019,23.511563416000016],[91.17751428300014,23.544274597000182],[91.16986617000006,23.5619737760001],[91.14082401500016,23.612099915000115],[91.1362764890001,23.629514872000144],[91.13968713400007,23.65357025100009],[91.15229618400016,23.655094707],[91.16645552600019,23.654087016000016],[91.17524052000007,23.670313416000127],[91.16893599500011,23.68537709600004],[91.1523995370001,23.691009827000144],[91.13658654800011,23.69889048300008],[91.13234908000007,23.720646261000113],[91.1417541910001,23.73989573200005],[91.1575671790001,23.74498586100013],[91.17658410700008,23.74653615400014],[91.19498091600016,23.755166118000187],[91.20521285000015,23.77157338500014],[91.22526330600007,23.82614369800008],[91.22815718600006,23.84497975700019],[91.22402307100006,23.857485453],[91.21275760900019,23.88073984800012],[91.21193078600018,23.894459941000136],[91.21627160700015,23.908386739000104],[91.25037805200012,23.96404225700006],[91.26092004400019,23.977271424000133],[91.2741492110001,23.98822682700002],[91.29161584500011,23.994815573000025],[91.30494836400007,23.993859558000125],[91.30843257700022,23.99250103500019],[91.3162138270002,23.989467062000145],[91.32706587800007,23.987865092000035],[91.33905481000014,23.995228984000036],[91.34928674300008,24.036053366000104],[91.35083703600012,24.07424224900008],[91.36303267500014,24.099847921000148],[91.4045805260001,24.103129374000115],[91.4804415290001,24.088014018000038],[91.51754520700008,24.085197652000076],[91.5586796470001,24.08966766300007],[91.5818306890001,24.09610138000012],[91.59650679500007,24.10498972600014],[91.60601525900015,24.11886484800003],[91.61376672300017,24.14010386200009],[91.6245154210001,24.203459168],[91.62906294800021,24.215318909000118],[91.63950158700007,24.211701559000133],[91.65717492700006,24.17136810400008],[91.66616662600009,24.155916850000082],[91.68415002500008,24.14547821100014],[91.70368371600007,24.14294606500006],[91.72115035100013,24.148992208],[91.73262251800006,24.164314270000048],[91.73200240000008,24.181677551000078],[91.7258012290001,24.202063904000013],[91.72301070200015,24.220977478000137],[91.73293257600014,24.234284159000154],[91.79659794100021,24.22159759500012],[91.80703658100018,24.221132507],[91.80972375500019,24.214543763],[91.81137740100016,24.192038676],[91.81375451700009,24.18312449200006],[91.84424361200016,24.155322571000013],[91.86450077300017,24.150594177000027],[91.87710982300021,24.158035584000128],[91.88434452300007,24.17555389500002],[91.90594527200014,24.260639140000038],[91.90687544800019,24.280353699],[91.89643680900016,24.320118714],[91.89984745300008,24.33805043500014],[91.92186161300017,24.34450999000002],[91.93095666500014,24.33696523100015],[91.95307417800015,24.32298675500006],[91.97219445900006,24.31606211400019],[91.9713676350001,24.329678853000086],[91.9488367110001,24.363526917000073],[91.94997359200006,24.375386658000096],[92.03337935400006,24.36884959000004],[92.06273156800015,24.37102000000011],[92.08825972500009,24.381639507],[92.10758671100021,24.405979106000032],[92.1112040610001,24.43429779100002],[92.10593306500019,24.495250143000177],[92.11089400300014,24.514292908000144],[92.12319299300006,24.525377503000144],[92.13859257000016,24.533723246000037],[92.14997986200015,24.542182954],[92.15316532400011,24.544549459000063],[92.16360396300016,24.559199728000138],[92.16887496000017,24.574315084000048],[92.17342248600019,24.608395692000116],[92.18293094900011,24.647256368000072],[92.23378055900011,24.777532654000154],[92.23646773300005,24.793035584000094],[92.23688114400008,24.808590190000114],[92.23502079300007,24.824764914000113],[92.2349278610001,24.824990710000137],[92.22179162600017,24.856907654000125],[92.22175905800012,24.857046883000024],[92.21765751100006,24.87458099400014],[92.22303186100007,24.8913758340001],[92.25217736800019,24.902977194000144],[92.29024450000006,24.891351286000102],[92.29041792900009,24.89129832000016],[92.35814605200008,24.85374889899999],[92.35832076000023,24.853652039000153],[92.35932057700009,24.846428366000012],[92.35935428900021,24.846184794000024],[92.3635074090001,24.84112001400011],[92.36359175600009,24.84101715100003],[92.37092980900016,24.83791656500007],[92.38074833200002,24.83670216900005],[92.44203658000018,24.85540903700003],[92.47769331900011,24.863909810000123],[92.49154260200007,24.883727722000046],[92.49453983600007,24.894863993000158],[92.49133589700008,24.91227895100009],[92.4912671480001,24.912424218000027],[92.48379113800014,24.92822113000001],[92.47438602700018,24.936670228000096],[92.47427233300019,24.93671537100012],[92.44978804600012,24.946437073000155],[92.44981386800012,24.946458457000162],[92.4500284860002,24.946636187000124],[92.45805627500008,24.95328420100013],[92.4578281280001,24.953557685000092],[92.45402551300006,24.958115947000135],[92.45376877000015,24.958231063000156],[92.4445170490001,24.962379252000105],[92.44444627300018,24.962427197000167],[92.41247766200016,24.984083354000106],[92.41246032100017,24.98436081700005],[92.41227095600011,24.987390646],[92.41213950000015,24.987434336000074],[92.41186000600013,24.987527227000115],[92.39470096900007,24.993230082000178],[92.38694950400004,24.99509043400009],[92.38692635100008,24.995201830000056],[92.38687592400018,24.995444456000158],[92.38493703500015,25.00477323600002],[92.38105839100015,25.023434957000077],[92.35625370300008,25.037000021000082],[92.32814172400006,25.048007101000067],[92.3121220300001,25.06860015900015],[92.30354374200007,25.074284566000088],[92.25155725100015,25.08079579700008],[92.23367720600018,25.084955750000102],[92.22013798000009,25.090381775000154],[92.20804569500008,25.09810740100006],[92.19409305900015,25.109166159],[92.17921024600017,25.126684469000125],[92.17269901600011,25.13195546500016],[92.16474084500007,25.13355743400011],[92.15099491400022,25.12973337900017],[92.14551721200021,25.131697082000088],[92.13859257000016,25.13639963800007],[92.12412316900011,25.13696807900014],[92.11616499900006,25.139448548000118],[92.1103772380001,25.14487457299999],[92.10045536300017,25.159085592000125],[92.09291060400014,25.164718323000088],[92.06603886000002,25.17453684500005],[92.0339994710001,25.18166819300008],[92.00175337700009,25.18296010400003],[91.97508833800012,25.17536366800006],[91.9562781170001,25.16978261300015],[91.90057092300017,25.177585754000077],[91.79370406100006,25.165338440000042],[91.74533492100008,25.16936920200014],[91.73014204900008,25.16745717400012],[91.72373417200006,25.161927796000114],[91.71773970600012,25.14983551100012],[91.71071171100019,25.144667868000123],[91.70182336400009,25.147148336],[91.68890425700008,25.152987773000078],[91.67743208800007,25.152626038000093],[91.67226444500014,25.13650299100003],[91.66203251100015,25.127201233000093],[91.638674764,25.124048971000107],[91.61314660700006,25.12513417600003],[91.59619673700008,25.128906555000142],[91.58017704300012,25.14089548800011],[91.5734591070001,25.152264302],[91.5661210530001,25.159964091000074],[91.54875777200019,25.161100973000188],[91.54017948400016,25.15763865200013],[91.52343632100009,25.145184632000067],[91.51165409400018,25.142497457000115],[91.50090539600009,25.141153870000082],[91.48075158700013,25.135262757000145],[91.47103641800018,25.133919170000112],[91.43186568300021,25.137949931000023],[91.28396773300003,25.17898101800013],[91.23570194500022,25.20192535400018],[91.22495324700012,25.201615296000014],[91.20314579300006,25.19133168600011],[91.19084680200015,25.18947133400009],[91.13534631400013,25.191228333000154],[90.97514937400015,25.16781890900002],[90.94342004500012,25.157431946000187],[90.9348213860001,25.15635985800013],[90.82198042800022,25.14229075200008],[90.79397180200013,25.145391337000106],[90.77939904800014,25.15195424400009],[90.76689335100016,25.16053253200012],[90.75397424300016,25.167560527000045],[90.7379545490002,25.169420879000043],[90.73268355400015,25.166888733000164],[90.72203820800004,25.156605123000148],[90.7163538000001,25.153556214000144],[90.70767216000016,25.152987773000078],[90.67056848100017,25.158775533000053],[90.6489677330002,25.16781890900002],[90.63759891800012,25.171074524000105],[90.62343957500016,25.171436259000085],[90.58333866400007,25.162031149000043],[90.50137984200009,25.168800761000067],[90.39978397700011,25.149008687],[90.36464400300017,25.14999054000016],[90.28692264800006,25.18006622300005],[90.1300846770001,25.211588847000098],[89.90813440000012,25.296906637000077],[89.87020389800009,25.295563050000126],[89.83459883600014,25.28243723600015],[89.81904423000012,25.284969381000153],[89.80736535600012,25.30450307300005],[89.79852868700007,25.340056458000035],[89.7950146900001,25.374162903000084],[89.79923403500007,25.40289280899999],[89.80069909700015,25.412868551000102],[89.80856794000007,25.43950711200007],[89.82323002100006,25.489142965000113],[89.82509037300017,25.564487203000095],[89.83439213000011,25.634767151000073],[89.82421187300022,25.674092916000077],[89.80152592000016,25.724684144000108],[89.78312911000015,25.81444610700011],[89.78695316600007,25.839147441000122],[89.83005131100012,25.907980449000107],[89.83439213000011,25.931751608000084],[89.82643396,25.937487691000126],[89.81072432500017,25.9387796030001],[89.79201745600008,25.949114889],[89.81155114700019,25.955212708000047],[89.8256071370001,25.965703024],[89.82865604700012,25.979397278000032],[89.81527185000019,25.995106913000097],[89.8141349690001,25.996140442000083],[89.8126880290001,25.99634714800014],[89.81103438300013,25.99603708900004],[89.80932906100006,25.99521026600003],[89.80917403100014,25.995106913000097],[89.80886397300006,25.995106913000097],[89.8020426840001,25.988647360000055],[89.79553145400021,25.985960185000025],[89.78943363500017,25.987975565000156],[89.78395593200017,25.995106913000097],[89.77641117400006,26.008232727000163],[89.75584395400014,26.032417297000123],[89.7502112230002,26.041564026000017],[89.74871260600011,26.059030660000147],[89.75114139900009,26.07153635700014],[89.74984948700009,26.083887024000102],[89.73672367300006,26.10057851100005],[89.72876550300006,26.11416941300014],[89.72432133000008,26.130654195000133],[89.71848189300007,26.145537008000144],[89.70654463700006,26.15416697200011],[89.69765629100002,26.15478708900018],[89.67770918800012,26.15313344300013],[89.67037113400013,26.154115296],[89.65817549700009,26.159231262],[89.65579838100003,26.161298320000142],[89.65724532100015,26.165380758000154],[89.65782860800019,26.187174483000103],[89.65838220200007,26.207858785],[89.65300785400021,26.222689921000136],[89.6349211020001,26.225842183000097],[89.61332035300019,26.219382629000123],[89.60639571100015,26.211011047000156],[89.60846276900011,26.18067698200012],[89.61528405800007,26.169101461000153],[89.61440555800013,26.16419220000013],[89.59399336800007,26.169721578000136],[89.58675866700011,26.16920481400011],[89.57993737800015,26.166104228000066],[89.5734261480001,26.1607298790001],[89.5627808030001,26.14259145200016],[89.56939538600008,26.13008575400006],[89.58577681500006,26.122902731000025],[89.60422530100007,26.12073232000013],[89.59254642800008,26.113962708000187],[89.57787032100005,26.107244771000165],[89.5669149170001,26.09897654300012],[89.56701827000015,26.08709096299999],[89.57694014500012,26.08264679000008],[89.59078942900007,26.085023906000043],[89.60386356700015,26.084662171000115],[89.6113566490001,26.07220815000015],[89.60288171400006,26.055258280000047],[89.55916345200009,26.022237040000064],[89.55068851700011,25.99505523700016],[89.55182539900007,25.981516012],[89.54908654800008,25.968855286000164],[89.54169681900007,25.959708558000084],[89.52841597500006,25.95712473499999],[89.51818404200017,25.962085674000107],[89.50945072500011,25.972627665000072],[89.49534305900006,25.99505523700016],[89.4906405030001,25.997329],[89.48562789000013,25.99872426300008],[89.48061527500008,25.999241028000128],[89.42640669700015,25.99505523700016],[89.42640669700015,25.995003560000058],[89.4263550210002,25.99495188400006],[89.4263550210002,25.994900208000143],[89.4211873780001,25.99319488499999],[89.4161230870002,25.992626444000123],[89.41126550300012,25.99319488499999],[89.40661462500006,25.99505523700016],[89.39142175300006,26.015467428000036],[89.37974287900008,26.01531239899999],[89.36775394700007,26.00544220000002],[89.35147587100008,25.99686391200008],[89.33530114700007,25.99856923500012],[89.31514733900009,26.006785787000165],[89.29690555800008,26.018154603000156],[89.27297937100016,26.043476054000124],[89.23763269000014,26.05810048400012],[89.22926110800009,26.067195537000156],[89.22305993600017,26.08657419800015],[89.21262129800007,26.09897654300012],[89.19784183700014,26.10770985900008],[89.13159265100015,26.133754781000064],[89.11919030800007,26.14662221300007],[89.1116972250002,26.16450225900003],[89.10337732000008,26.225170390000116],[89.0958842370002,26.24103505500001],[89.07588545700011,26.271059062000074],[89.06942590300011,26.287388815000114],[89.06885746200007,26.314260559000033],[89.08032963100018,26.31560414600007],[89.09479903200022,26.309506327000022],[89.10353234900012,26.31369211800016],[89.10291223200014,26.327334696000076],[89.09572920800011,26.33451772100001],[89.0718546960002,26.340615540000087],[89.05521488500008,26.347023417000017],[89.05407800300006,26.353948059000103],[89.05728194200006,26.36262970000014],[89.05263106300018,26.37461863200012],[89.04374271700007,26.381078186000153],[89.0217802330001,26.386245829000174],[89.01087650500014,26.39017323900005],[89.00178145400017,26.397149557000134],[88.98653690600011,26.412704163000157],[88.97532312000007,26.41787180600006],[88.95930342700008,26.42856882800008],[88.95015669700015,26.436940410000044],[88.94100996900013,26.43942087800012],[88.92457686400009,26.432134501000135],[88.91196781400006,26.42123077399999],[88.89946211800006,26.404487610000118],[88.89124556500022,26.38578074100006],[88.89186568200009,26.36877919600012],[88.91243290200006,26.348935445000123],[88.9412166750001,26.34009877500013],[88.96602136200013,26.328471578000077],[88.97532312000007,26.299946188000106],[88.98173099800013,26.29183298700012],[88.98968916900017,26.289404195000074],[88.9986291920002,26.291522929000124],[89.00798262600014,26.297155660000055],[89.00436527500008,26.275709941000127],[89.01159997600021,26.26919871100007],[89.02353723100006,26.268836975000067],[89.0343376060001,26.265788066000038],[89.03971195500017,26.24718455],[89.01945479300016,26.234472148000048],[88.97532312000007,26.224343567000076],[88.94684940600021,26.2329218550001],[88.90271773300006,26.27291941400007],[88.87579431100012,26.27736358599999],[88.85564050400015,26.265116272000157],[88.84065433800016,26.232043355000158],[88.82484134900008,26.226565654000083],[88.8079948320001,26.23343861900007],[88.79848636900013,26.247649638000112],[88.79202681500007,26.264599508000014],[88.78401696800009,26.279947409],[88.74794681800009,26.29250478200002],[88.66340417500012,26.264444479000172],[88.64583418800007,26.276019999000127],[88.65327559400006,26.283099671000127],[88.69012089100008,26.299842835],[88.7029883220001,26.309661357000053],[88.7122384030001,26.328264872000105],[88.70970625900011,26.340615540000087],[88.69627038600007,26.350279032000103],[88.67337772700014,26.360717672000035],[88.6674349370002,26.368159078000147],[88.66852014200012,26.38572906500003],[88.66107873600018,26.38888132800018],[88.65224206600007,26.391516826],[88.64986495000002,26.398389791000067],[88.65193200700011,26.407071432000023],[88.6562728270001,26.415132955000118],[88.63301843300016,26.42009389300007],[88.62237308800016,26.42453806600015],[88.61152103700013,26.430842591],[88.60356286700008,26.44019602500013],[88.59787845900021,26.45146148700009],[88.59116052200007,26.461228333000136],[88.57917159000013,26.46603424100006],[88.55798425300006,26.465724182000155],[88.54976770000022,26.466654358000127],[88.5268233640002,26.475387676000096],[88.50682458500009,26.48763498900003],[88.49865970900007,26.494869690000183],[88.48791101100014,26.505773418000146],[88.47540531400014,26.514971823000153],[88.46238285300008,26.528821106000024],[88.44646651200017,26.53553904300004],[88.41101648000014,26.54509918200013],[88.39789066600005,26.55869008400013],[88.39499678600006,26.57837880500007],[88.39592696100013,26.59956614200003],[88.39437666800019,26.61801462800004],[88.38528161700006,26.623544007000064],[88.37251753700016,26.61160675100011],[88.36027022300007,26.593106588000083],[88.35282881700002,26.578688864000142],[88.33236495000008,26.51466176400005],[88.31934248900014,26.49492136700009],[88.31934248900014,26.494869690000183],[88.31386478700003,26.481537170000152],[88.31510502100016,26.46505238900009],[88.3225464270001,26.45177154600016],[88.33562056500013,26.448205872000113],[88.3402197670001,26.454148662000122],[88.34301029400015,26.47719635100016],[88.34652429200011,26.48401763900013],[88.3535522870002,26.48458608],[88.37691003500018,26.475335999],[88.43458093200016,26.465155741000032],[88.46114261900007,26.453890280000152],[88.47540531400014,26.43203114800012],[88.49545577000018,26.37808095300015],[88.49762618100007,26.352707825000053],[88.47540531400014,26.355808411000012],[88.46791223200009,26.354051412000118],[88.45799035600012,26.353017883000135],[88.44863692200008,26.35343129500013],[88.44202233900009,26.356118470000084],[88.43168705300016,26.36221628900013],[88.42600264500012,26.357927145000176],[88.4211967370002,26.348728740000084],[88.4138070070002,26.340202129000076],[88.366781454,26.31343373599999],[88.35169193600021,26.30097971700009],[88.33660241700014,26.28180776],[88.33293339100013,26.267235006000032],[88.33453536000016,26.230803121000136],[88.3262671310001,26.215920309000083],[88.30869714400013,26.206101787000037],[88.2503027760001,26.188015035000106],[88.2297872320001,26.184035950000023],[88.21888350500015,26.18016021699999],[88.21195886300004,26.173752340000036],[88.20565433800007,26.166414287000133],[88.19692102100007,26.159644674],[88.1637964280001,26.140472717000094],[88.15563155100008,26.12848378500003],[88.1444694420002,26.09587595700016],[88.14136885600007,26.09050160700012],[88.13992191600019,26.0853339640001],[88.1411621500001,26.075463766000112],[88.14477950000011,26.07050282800016],[88.15098067200009,26.066988830000025],[88.15640669800004,26.061407776000024],[88.15790531400009,26.05045237300014],[88.15103234900019,26.03133209300013],[88.12586592600005,26.01340037100006],[88.1065389400002,25.979965719000077],[88.0880387780002,25.92322499600006],[88.08266442900006,25.915938619000187],[88.07739343300008,25.91278635700003],[88.07439620000017,25.908135478000144],[88.08204431200008,25.863848776000125],[88.08896895400002,25.848655904],[88.08757369000008,25.83997426400005],[88.08757369000008,25.83098256400011],[88.10333500200014,25.814807841000018],[88.10803755700013,25.806281230000092],[88.11491052200009,25.78726430300013],[88.1277262780001,25.774913635000146],[88.14643314600008,25.775740458000186],[88.16622522000014,25.78364695300006],[88.1827100020001,25.792431946000033],[88.22746179300006,25.804265849000146],[88.25991459200011,25.789021301],[88.32027266500009,25.72525258400016],[88.39298140400014,25.680759176],[88.41943973800012,25.653784078000157],[88.42378055900011,25.592237447000127],[88.43778487200021,25.579835104000054],[88.47540531400014,25.562575176000067],[88.48558557100009,25.542628072000138],[88.51276737500008,25.523714498000018],[88.52046716400015,25.509296774000106],[88.53028568600016,25.500201721000124],[88.55095625800006,25.49648101800001],[88.59358931500006,25.49508575500012],[88.61317468300015,25.486404114],[88.64542077600005,25.467335510000012],[88.66634973200021,25.46289133800009],[88.67808028100008,25.46588857000002],[88.68707198100006,25.473898417000083],[88.69565026900008,25.483613586000118],[88.70619226100014,25.491675110000116],[88.71415043100009,25.492811992000114],[88.72314213100006,25.491416728000146],[88.73265059500012,25.491003317000136],[88.74257246900001,25.495189108000158],[88.74195235200008,25.512759094000145],[88.7723380950001,25.50195872000002],[88.78096805800006,25.495189108000158],[88.79311202000017,25.481959941000166],[88.80582442200009,25.471676331000154],[88.8149194750001,25.458602193000118],[88.81631473800003,25.437208151],[88.79931319200014,25.40170644200016],[88.79962325000022,25.39560862300003],[88.81037194800015,25.388425598000154],[88.81326582800013,25.38005401600016],[88.81404097600014,25.370390524000143],[88.81833011900018,25.359641826000043],[88.84199792500013,25.332821757000048],[88.84902592000006,25.327189026000113],[88.8592578540001,25.324708557000132],[88.88018680800022,25.32346832300003],[88.88612959800011,25.319075826000113],[88.90287276200009,25.30341786700016],[88.92648889200021,25.300472310000075],[88.97532312000007,25.302642721000055],[88.98271285000007,25.294477844000042],[88.98493493700019,25.284969381000153],[88.98235111500017,25.274892477000108],[88.97532312000007,25.265228984000156],[88.93775435400008,25.240165914000087],[88.92907271300012,25.229417216000158],[88.92798750900013,25.215929667000083],[88.93077803600008,25.202648825],[88.92788415600009,25.192726949000086],[88.9096423750001,25.189161275000018],[88.92416345200016,25.16787058500013],[88.89863529500022,25.169317526000114],[88.83021569900015,25.19133168600011],[88.82360111500006,25.194845683000054],[88.81708988500006,25.196809387000187],[88.80913171400013,25.195259094000065],[88.8025171310002,25.188127747000053],[88.79233687400003,25.166578675],[88.78422367300007,25.160945944000147],[88.72453739400012,25.166475322000153],[88.66459273300015,25.186887512000013],[88.63425866700018,25.192261862000137],[88.59911869300007,25.19314036100009],[88.59012699400009,25.19014312700007],[88.57772465000002,25.177482401000034],[88.57069665500015,25.173244935000085],[88.55937951600006,25.170764466000108],[88.55467696100018,25.171126201000035],[88.55002608200013,25.173141582000156],[88.52315433800013,25.17980784100017],[88.49183842000011,25.191124980000055],[88.47540531400014,25.19510406500002],[88.44129886900006,25.18972971600006],[88.43148034700017,25.173038229000138],[88.43416752100015,25.116659241000107],[88.42579593900003,25.051056010000096],[88.41411706500017,25.02152292900017],[88.3910177010001,24.99509043400009],[88.38786543800003,24.968761292000025],[88.37566980000022,24.945610251000133],[88.34089156100016,24.904139913000066],[88.32275313400007,24.87468434700015],[88.31360640500006,24.868302307000036],[88.29681156400014,24.869697571000117],[88.25485030100012,24.879955343000105],[88.24275801600001,24.88060129900016],[88.24187951700017,24.898765564000097],[88.23283614100015,24.918273417000123],[88.21878015100012,24.935145772000013],[88.20245039900007,24.945300191000154],[88.18302006100012,24.946979675000122],[88.16451989700008,24.941114400000018],[88.11491052200009,24.916413066000118],[88.11491052200009,24.912020569000035],[88.12033654800004,24.906775411000083],[88.12493575100021,24.898145447000147],[88.13806156400007,24.863496399000113],[88.14095544500017,24.844582825000188],[88.13124027500012,24.831767070000108],[88.11739099100006,24.819261373000117],[88.10777917500016,24.80109710700016],[88.09480839000011,24.80311248800002],[88.08824548300007,24.796136170000025],[88.08535160400007,24.784018046000043],[88.08400801600007,24.770452983000055],[88.07698002200017,24.76117706300012],[88.06426761900009,24.759161682000084],[88.0532088620001,24.754975891000143],[88.04845463100011,24.71120595300006],[88.03543216900019,24.69381683400003],[88.02716394100017,24.6757300820001],[88.02178959200009,24.645602722000135],[88.04090987200019,24.640435079000113],[88.05723962400012,24.634104716000095],[88.06726485200014,24.61366668700005],[88.0818376060001,24.59986908000009],[88.08498986800006,24.59387461400017],[88.08498986800006,24.54173309300002],[88.08602339700022,24.53672048000014],[88.090002483,24.53299977700011],[88.09878747600013,24.522483623000152],[88.10793420400009,24.507962545000126],[88.10994958500007,24.500986227000123],[88.13878503400005,24.495250143000177],[88.40130131100007,24.369418030000087],[88.47540531400014,24.31546783500012],[88.49834965000015,24.31097198500011],[88.56310021900016,24.30820729600005],[88.61245121300007,24.292885234],[88.63451705000008,24.294125468000047],[88.64950321500007,24.315364482000106],[88.66014856000007,24.338257141000113],[88.68180098500014,24.333890483000133],[88.7145638430002,24.31541615800002],[88.73750817900005,24.28709747300003],[88.74303755700006,24.247539165000077],[88.74494958500006,24.24337921200005],[88.74748173000015,24.226971945000074],[88.7498071700002,24.22325124200007],[88.74639652500015,24.214078675000067],[88.73482100400022,24.198420715000125],[88.73161706600015,24.189842428000087],[88.73145573500014,24.189771315000158],[88.7159074300001,24.182917786000118],[88.69378991700009,24.17532135100005],[88.68376468900007,24.166536356000066],[88.67808028100008,24.154289043000134],[88.67828698800017,24.144651388000014],[88.68298954300022,24.124290873000074],[88.68180098500014,24.112663676000025],[88.67539310700008,24.091838074000165],[88.67410119700006,24.082639669000073],[88.67901045700015,24.071219178000074],[88.69782067900005,24.056258850000106],[88.70092126500012,24.04364980100017],[88.72500248200006,24.03837880500005],[88.72546757000006,24.028896179000142],[88.71384037300012,24.014685161],[88.7015930580001,23.995280660000116],[88.70836267100006,23.983550110000138],[88.71435713700006,23.96440399200004],[88.71714766500011,23.943139140000156],[88.71415043100009,23.925155742000168],[88.70443526200009,23.913709412000074],[88.66650476100008,23.879499614000068],[88.65312056500014,23.869784445000118],[88.6339486090002,23.866141256000148],[88.61317468300015,23.867846578000112],[88.59358931500006,23.866916402000143],[88.5776212970002,23.85516001400005],[88.57436568200015,23.84562571200017],[88.57545088700013,23.836556499000025],[88.5776212970002,23.82761647600007],[88.5775179450001,23.818521424000025],[88.57235030200016,23.806894226000125],[88.5576741940001,23.785681051],[88.55271325700002,23.774984029000066],[88.5525065510001,23.76542389000018],[88.55974125200007,23.750282695000166],[88.56118819200006,23.74100677500006],[88.54010420800007,23.649952901000105],[88.5415511480002,23.638764954000163],[88.55095625800006,23.634424134000184],[88.56123986800017,23.63248626800005],[88.56635583500022,23.62873972600012],[88.56439213100012,23.616208191000126],[88.56108483900013,23.608611756000172],[88.56170495600011,23.60202301],[88.57142012600009,23.59233367900005],[88.58154870600016,23.588328756000134],[88.60128910400013,23.590344137],[88.60924727400018,23.58879384400008],[88.6242334400001,23.57385935500004],[88.64764286400006,23.53507619300008],[88.66448938000022,23.518307190000044],[88.69378991700009,23.49980702800009],[88.704641968,23.49518198600005],[88.71942142800006,23.4681035360001],[88.73192712400012,23.472625224000023],[88.74370935100015,23.489316711000143],[88.75683516500013,23.498799337000136],[88.77016768400014,23.48882578600002],[88.76789392100008,23.46727671300006],[88.7192663980002,23.34829172800012],[88.6950301510001,23.31260915200015],[88.68593510000002,23.293308004],[88.68660689300012,23.271603902000024],[88.69658044500012,23.252354432000075],[88.71001631700008,23.241218160000145],[88.77569706300014,23.221632792000108],[88.78618737800016,23.221529439],[88.79419722500003,23.224965922000038],[88.80096683800011,23.230753683],[88.80954512500013,23.236050517000038],[88.82267093900012,23.237962545000144],[88.83962080900018,23.234810283000016],[88.9096423750001,23.212434388000034],[88.91806563300011,23.20858449300009],[88.92695398000015,23.206517436000027],[88.95423913600014,23.20742177300015],[88.95997522000019,23.202693380000156],[88.95982019100003,23.19445098900003],[88.95470422400015,23.183805644000145],[88.94586755400005,23.17434885700008],[88.9190991620001,23.15385915200001],[88.86478723200011,23.100270691000148],[88.85129968300006,23.075130107000017],[88.84871586100004,23.023841248000092],[88.83941410300022,22.99536753400004],[88.83879398700017,22.975808004000115],[88.84277307100015,22.96456838000007],[88.8617383220002,22.94239919000016],[88.87217696100005,22.92676707000011],[88.89346765200011,22.8796381640001],[88.90514652600021,22.86643483500002],[88.9331034750002,22.858114929000138],[88.9445239660001,22.848012187],[88.94679773000021,22.834524638000133],[88.94514408400008,22.81509430000007],[88.9412166750001,22.795663961000074],[88.93687585500012,22.782331441000064],[88.92623051000012,22.767035218],[88.91496504800008,22.75440033000008],[88.9081437580002,22.74078359],[88.91057255100006,22.72259348600012],[88.92250980600012,22.693706360000178],[88.92592045100017,22.680838928000085],[88.93000288900006,22.658618063000134],[88.94235355700019,22.637482402],[88.95201704900015,22.61190256800016],[88.95640954600006,22.584979146000038],[88.95031172700007,22.5619831340001],[88.92798750900013,22.548133850000127],[88.95904504400008,22.53681671100007],[88.97098230000009,22.52792836500005],[88.979974,22.490928039],[88.99837080900014,22.451240539000096],[89.00250492300003,22.427986145000162],[89.00074792500017,22.420131328000068],[88.99216963700016,22.40695383700007],[88.98948246300019,22.396670227000172],[88.98958581600007,22.38690338200003],[89.0015230710001,22.333676656000147],[89.00694909700016,22.321429342000116],[89.02353723100006,22.29481597900009],[89.00911950700007,22.285617575000018],[89.01862797100014,22.264688619000125],[89.06229455500007,22.21156524700008],[89.07071781400005,22.194822083000034],[89.07619551700006,22.17503000900014],[89.07815922000012,22.15084543900018],[89.06069258700009,22.130484925000147],[89.06040430813172,22.129810510583198],[89.0603947270001,22.129868882000054],[89.06031334700006,22.130601304],[89.04371178500017,22.137396552000112],[89.04859459700006,22.122951565000065],[89.04566491000006,22.112046617000185],[89.03988691500014,22.100897528000147],[89.03687584700005,22.085598049000012],[89.04004967500012,22.069525458000115],[89.05404707100008,22.043646552000112],[89.05738366,22.03123607000019],[89.06560306100019,21.967108466000028],[89.0608830090001,21.938462632000054],[89.03687584700005,21.925116278000147],[89.02312259200002,21.931097723000065],[89.0130314460001,21.929429429000052],[89.00806725400011,21.920558986000017],[89.00953209700018,21.904608466000084],[88.9930119150001,21.912665106000034],[88.96045983200021,21.934312242000104],[88.9446720710001,21.93878815300009],[88.9378361340001,21.948716539000188],[88.93458092500012,21.969305731000034],[88.92872155000006,21.98655833500011],[88.9139103520001,21.98655833500011],[88.90503991000016,21.969427802],[88.91081790500002,21.946478583],[88.92408287900017,21.926336981000148],[88.9378361340001,21.91766998900006],[88.95191491000006,21.913885809000064],[88.96827233200023,21.90473053600006],[88.99586022200006,21.884182033000016],[89.01587975400011,21.85333893400015],[89.03093509200002,21.770453192000147],[89.04371178500017,21.73334381700012],[89.04786217500012,21.728013414000156],[89.06788170700011,21.709133205000125],[89.08277428500006,21.67820872599999],[89.08521569100017,21.674709377000013],[89.0882267590001,21.633734442000087],[89.08269290500007,21.61733633000007],[89.06421959700006,21.60919830900015],[89.05323326900005,21.609808661000116],[89.04468834700006,21.613511460000055],[89.038828972,21.619452216000084],[89.03687584700005,21.626898505000057],[89.03394616000004,21.633246161],[89.0275985040001,21.624579169000082],[89.02165774800008,21.61180247600005],[89.01978600400011,21.606105861000074],[89.00025475400011,21.603420315],[88.97575931100019,21.615912177000027],[88.9338485040001,21.643947658000016],[88.89698326900006,21.650132554],[88.89161217500005,21.653509833],[88.88607832100016,21.66181061400009],[88.88160241000011,21.67202383000001],[88.87208092500012,21.749009507000025],[88.8660587900001,21.76683177299999],[88.858653191,21.76683177299999],[88.85572350400017,21.74884674700006],[88.84156334700006,21.716253973000093],[88.83822675900015,21.701971747000087],[88.84294681100002,21.68414948100012],[88.85987389400012,21.652573960000108],[88.858653191,21.636542059000035],[88.84424889400006,21.622219143000148],[88.82398522200006,21.61725495000009],[88.80583743600002,21.622870184000092],[88.79786217500005,21.640204169000086],[88.81478925900014,21.65387604400003],[88.81836998800011,21.657619533000158],[88.8185327480002,21.66583893400015],[88.81666100400011,21.675034898000106],[88.81088300900015,21.69171784100014],[88.8049422540001,21.67186107000005],[88.80046634200006,21.66185130400008],[88.794200066,21.657619533000158],[88.7840275400001,21.655951239000146],[88.779063347,21.65119049700006],[88.77711022200018,21.64354075700011],[88.77686608200023,21.63344961100013],[88.78174889400012,21.614243882],[88.79102623800006,21.59886302300005],[88.79664147200005,21.584418036],[88.79053795700005,21.568264065000122],[88.76246178500017,21.555853583],[88.72787519600016,21.559881903000175],[88.70753014400006,21.57831452],[88.72217858200011,21.60919830900015],[88.68799889400012,21.678127346],[88.6849064460001,21.697211005],[88.70362389400006,21.810614325000145],[88.69800866000017,21.82550690300009],[88.69450931100019,21.839829820000162],[88.7146916020001,21.897853908000158],[88.71697024800018,21.95197174700003],[88.72217858200011,21.966131903000147],[88.73316491000006,21.977199611000103],[88.74683678500017,21.987127997000087],[88.7583113940001,21.999457098000146],[88.76303144600016,22.017279364000117],[88.75464928500017,22.037583726000108],[88.71705162900017,22.058050848000093],[88.70850670700023,22.072211005000028],[88.71485436300006,22.086981512000094],[88.73015384200002,22.103583075000145],[88.76303144600016,22.130560614],[88.74390709700006,22.129339911],[88.72657311300004,22.121161200000174],[88.712168816,22.109035549000094],[88.70167076900006,22.09585195500013],[88.6948348320001,22.081529039000046],[88.69288170700005,22.065863348000065],[88.69947350400011,22.053208726000108],[88.71851647200006,22.048041083],[88.73072350400011,22.037176825000117],[88.723317905,22.0130882830001],[88.70167076900006,21.976019598000065],[88.69841556100019,21.96259186400009],[88.68995201900006,21.945990302000112],[88.67872155000005,21.936672268000066],[88.66700280000006,21.945013739000146],[88.65626061300006,21.941066799000154],[88.64258873800011,21.940904039000188],[88.63086998800011,21.94546133000013],[88.62598717500006,21.955511786000116],[88.62745201900012,21.97040436400006],[88.63168379000015,21.979803778000086],[88.64633222700016,22.000230210000055],[88.65349368600017,22.01801178600006],[88.65259850400011,22.031805731000148],[88.64877363400008,22.046047268000066],[88.64503014400006,22.07514069200012],[88.6394962900001,22.09723541900003],[88.6394962900001,22.10952383000007],[88.65699303500016,22.15106842700005],[88.67400149800002,22.162054755000113],[88.68311608200023,22.184963283000016],[88.67994225400017,22.204413153000115],[88.66016686300006,22.205023505000085],[88.66114342500012,22.19896067900008],[88.6560164720001,22.183254299000012],[88.64966881600017,22.169094143000095],[88.64633222700016,22.16779205900009],[88.644297722,22.162298895000063],[88.63493899800008,22.14496491100006],[88.63086998800011,22.125799872000112],[88.62208092500006,22.116034247000144],[88.61915123800006,22.10952383000007],[88.61833743600013,22.102972723000093],[88.61996504000014,22.07831452],[88.62549889400005,22.059271552],[88.62598717500006,22.048041083],[88.62037194100006,22.029974677],[88.60254967500006,22.006415106000034],[88.59864342500006,21.990301825000145],[88.60027103000017,21.94721100500014],[88.59839928500006,21.929348049000065],[88.56706790500019,21.85081614800005],[88.56462649800008,21.832342841000028],[88.56544030000006,21.77118561400006],[88.56462649800008,21.76683177299999],[88.58130944100017,21.769435940000065],[88.60417728000019,21.77875397300012],[88.62403405000012,21.778021552],[88.63282311300004,21.750067450000145],[88.63021894600014,21.731756903000086],[88.62338300900015,21.710272528000147],[88.61264082100016,21.697495835000108],[88.59864342500006,21.705389716000084],[88.59180748800006,21.705389716000084],[88.59961998800006,21.637274481000148],[88.5950626960001,21.612127997000087],[88.57813561300011,21.623439846000068],[88.57813561300011,21.57168203300013],[88.57227623800004,21.557928778000033],[88.55892988400014,21.55556875200007],[88.54476972700016,21.56199778900016],[88.53646894600014,21.575100002000156],[88.53028405000012,21.56439850500011],[88.52963300900015,21.553371486000074],[88.53443444100006,21.54291413],[88.54395592500012,21.534084377000127],[88.512950066,21.524644273000135],[88.49390709699999,21.53481679900007],[88.48796634200019,21.55654531500015],[88.49561608200023,21.58185455900009],[88.5021264980002,21.589341539000046],[88.50879967500006,21.594387111000074],[88.51400800900015,21.60081614800002],[88.51612389400006,21.612616278000147],[88.51661217500006,21.626410223000065],[88.51880944100006,21.639146226000136],[88.52295983200011,21.649888414000046],[88.52963300900015,21.657619533000158],[88.50953209700012,21.7123070330001],[88.50489342500006,21.741522528000033],[88.51270592500006,21.76341380400008],[88.53288821700019,21.795314846000096],[88.53101647200006,21.824123440000122],[88.51587975400011,21.85081614800005],[88.49561608200023,21.876695054000052],[88.51465905000012,21.916205145],[88.51498457100016,21.93720123900006],[88.49561608200023,21.951808986000074],[88.49984785200016,21.933661200000174],[88.49236087300008,21.92202383000007],[88.48121178500006,21.90989817900008],[88.47445722700009,21.890326239],[88.47706139400012,21.87181224200016],[88.49203535200016,21.837144273000106],[88.49561608200023,21.818670966000084],[88.4935001960001,21.805161851000108],[88.48829186300011,21.803656317000062],[88.48145592500012,21.805161851000108],[88.47445722700009,21.80097077000009],[88.46827233200023,21.77724844000006],[88.45769290500019,21.758856512000037],[88.45337975400011,21.741766669000086],[88.45215905000006,21.72280508000007],[88.45476321700008,21.705389716000084],[88.46859785200016,21.67715078300013],[88.47217858200023,21.663275458000143],[88.46827233200023,21.643947658000016],[88.456309441,21.624009507000135],[88.44190514400006,21.616156317000147],[88.42611738400008,21.611029364000117],[88.40967858200011,21.599269924000154],[88.39307701900006,21.60024648600013],[88.38355553500004,21.63141510600012],[88.38282311300011,21.671332098000093],[88.39258873800004,21.698553778000175],[88.38062584700006,21.696193752000127],[88.36451256600017,21.686957098000065],[88.35572350400011,21.684963283000044],[88.34620201900012,21.688625393000066],[88.3406681650001,21.697495835000108],[88.33643639400006,21.708726304000106],[88.33122806100008,21.719061591000028],[88.3263452480002,21.71108633000007],[88.32471764400006,21.70136139500012],[88.32740319100006,21.691107489],[88.3457137380001,21.670599677000055],[88.34945722700016,21.660956122000087],[88.34880618600019,21.65029531500015],[88.34546959700018,21.636542059000035],[88.3354598320001,21.615790106000034],[88.32178795700023,21.60565827000009],[88.30974368600002,21.610174872000027],[88.30445397200006,21.63344961100013],[88.30201256600006,21.74518463700009],[88.2981876960001,21.76410553600003],[88.28980553500004,21.78021881700009],[88.27312259200019,21.79791901200018],[88.2615666020001,21.79865143400012],[88.26417076900006,21.77529531500012],[88.29542076900006,21.676581122000144],[88.29704837300007,21.65387604400003],[88.29444420700005,21.642808335],[88.28419030000006,21.621242580000068],[88.28337649800002,21.60919830900015],[88.28760826900006,21.600287177000112],[88.30062910200016,21.589341539000046],[88.30445397200006,21.58185455900009],[88.305837436,21.57168203300013],[88.30372155000012,21.56879303600003],[88.29786217500006,21.56655508000013],[88.28711998800006,21.558294989000142],[88.27898196700006,21.55516185100008],[88.26612389400012,21.553859768000066],[88.25440514400006,21.554673570000162],[88.24927819100006,21.558294989000142],[88.2459416020001,21.579901434000035],[88.23747806100008,21.6017113300001],[88.22437584700016,21.61302317900008],[88.208262566,21.602972723],[88.18946373800006,21.641791083000115],[88.18189537900011,21.665228583],[88.18091881600006,21.684963283000044],[88.19044030000005,21.704087632],[88.20346113400015,21.72435130400011],[88.21045983200011,21.74725983300003],[88.20142662900011,21.774318752000124],[88.20972741000017,21.788560289000046],[88.20378665500007,21.805405992000043],[88.15406334700018,21.888088283000016],[88.1564233730002,21.897853908000158],[88.159434441,21.906154690000122],[88.14673912900017,21.959214585000055],[88.14991295700023,21.976385809000178],[88.15626061300006,21.990871486000128],[88.1643172540001,22.003119208],[88.20679772200005,22.053371486000074],[88.22242272200006,22.077948309000178],[88.2127384770001,22.10004303600006],[88.20337975400017,22.1517601580001],[88.19800866000011,22.16779205900009],[88.16529381600017,22.185003973],[88.118418816,22.200181382],[88.0813094410001,22.21735260600012],[88.07732181100002,22.24042389500009],[88.05974368600019,22.22947825700011],[88.04346764400005,22.224758205000015],[88.02702884200008,22.227850653000086],[88.00904381600004,22.24042389500009],[87.98511803500017,22.26593659100017],[87.97266686300006,22.283189195000162],[87.96745853000006,22.298488674000126],[87.9642033210001,22.31928131700012],[87.95069420700021,22.35618724200019],[87.94752037900017,22.373846747000083],[87.9461369150001,22.39492422100012],[87.94044030000012,22.41303131700012],[87.92798912900017,22.424221096000124],[87.90658613400015,22.42475006700012],[87.90658613400015,22.418605861000128],[87.92286217500006,22.397772528000147],[87.93580162900017,22.355169989000117],[87.94752037900017,22.27765534100014],[87.95281009200002,22.26243724200016],[87.96534264400006,22.244818427000055],[87.99195397200018,22.215887762000147],[88.00847415500007,22.204901434000092],[88.02540123800004,22.20091380400011],[88.05738366000006,22.198879299000094],[88.095469597,22.19122955900015],[88.13257897200006,22.179144598000065],[88.16098066500015,22.156561591000084],[88.17351321700008,22.11688873900006],[88.1643172540001,22.089789130000142],[88.14063561300006,22.060126044000114],[88.1111759770001,22.034857489000057],[88.08472741,22.02069733300011],[88.04859459700018,22.020738023000106],[88.04314212300002,22.017279364000117],[88.04517662900017,22.006537177000027],[88.04900149800007,21.995428778000175],[88.05079186300004,21.985012111000074],[88.04688561300006,21.976019598000065],[88.03239993600013,21.957180080000125],[87.98365319100012,21.854193427000055],[87.97046959700006,21.836493231000148],[87.95777428500017,21.828924872000115],[87.94800866000006,21.825384833000115],[87.90902754000015,21.798814195000162],[87.90219160200016,21.796820380000142],[87.89918053500006,21.794826565],[87.89568118600008,21.78937409100014],[87.89478600400015,21.77875397300012],[87.8929142590001,21.774318752000124],[87.86719811300006,21.750799872000087],[87.83399498800006,21.729315497000144],[87.75570722700016,21.69171784100014],[87.70378665500007,21.65550364800005],[87.68384850400017,21.650132554],[87.64210045700023,21.652085679000137],[87.62134850400015,21.650620835000083],[87.47738691500015,21.61359284100014],[87.46876061300004,21.61139557500014],[87.40495853000002,21.58665599200016],[87.34180748800006,21.562404690000093],[87.29346764400012,21.553656317000033],[87.25611412900017,21.56199778900016],[87.2459416020001,21.556586005000142],[87.2351994150001,21.55451080900012],[87.21143639400012,21.55459219],[87.20093834700006,21.55198802300002],[87.11304772200016,21.507961330000096],[87.06373131600017,21.475002346],[86.91765384200019,21.32737864799999],[86.86695397200006,21.25604889500009],[86.8372501960001,21.174709377000013],[86.84400475400011,21.082220770000035],[86.95215905000012,20.849107164000156],[86.9656681650001,20.80597565300006],[86.953868035,20.780585028000033],[86.93628991000017,20.78750234600004],[86.91651451900006,20.788072007],[86.8787541020001,20.780585028000033],[86.88933353000006,20.764471747000144],[86.9106551440001,20.75641510600012],[86.95720462300002,20.753241278000147],[86.97999108200004,20.755560614000032],[86.98658287900017,20.751857815000065],[86.99488366000006,20.738959052000055],[87.00001061300006,20.728216864000146],[87.0018009770001,20.718980210000083],[86.99870853000007,20.71112702],[86.98861738400008,20.704250393000095],[86.97575931100008,20.710679429],[86.96119225400011,20.712836005],[86.94825280000012,20.70905182500017],[86.94019616000017,20.697984117000047],[86.95191491000017,20.69700755400005],[86.96119225400011,20.695054429000106],[86.96851647200006,20.69114817900011],[86.97429446700019,20.684393622000083],[86.98170006600017,20.68537018400015],[86.98650149800008,20.684393622000083],[86.99024498800011,20.679999091000084],[86.99488366000006,20.670721747000144],[87.01937910200016,20.680365302000112],[87.0333764980002,20.690171617000047],[87.0432235040001,20.697984117000047],[87.02751712300008,20.679673570000162],[87.00359134200019,20.657049872000115],[86.97624759200002,20.637884833000143],[86.9231876960001,20.621730861000074],[86.774180535,20.51194896],[86.75147545700017,20.48916250200007],[86.73389733200023,20.46222565300009],[86.72461998800004,20.431952216000113],[86.72046959700006,20.36847565300009],[86.74195397200006,20.37954336100013],[86.7563582690001,20.393744208000143],[86.7697860040001,20.400702216000028],[86.78874759200002,20.39012278900016],[86.78825931100006,20.40281810100005],[86.78980553500017,20.4146996110001],[86.796153191,20.43732330900015],[86.80982506600006,20.41510651200009],[86.79420006600016,20.37815989800005],[86.76832116000017,20.343451239000085],[86.75147545700017,20.328070380000142],[86.73926842500006,20.324204820000045],[86.71973717500012,20.31509023600013],[86.70167076900006,20.30377838700015],[86.69369550900014,20.293931382000054],[86.70167076900006,20.284654039000188],[86.71973717500012,20.291734117000047],[86.75464928500006,20.314439195000187],[86.71745853000002,20.28693268400015],[86.62818444100017,20.235256252000042],[86.58383222700016,20.218207098000065],[86.53419030000006,20.20612213700015],[86.51148522200018,20.19745514500006],[86.49512780000006,20.18406810100008],[86.49040774800008,20.174058335],[86.47885175900015,20.129339911000116],[86.46851647200006,20.10927969000006],[86.46713300900015,20.094671942000062],[86.41504967500012,20.036322333000058],[86.39144941500008,20.020209052],[86.39673912900017,20.009955145000063],[86.40414472700016,20.002630927000055],[86.41407311300006,19.99884674700003],[86.42628014400012,19.999172268000066],[86.39722741000006,19.982855536000116],[86.34839928500006,20.00885651200012],[86.27540123800006,20.067368882000082],[86.23129316500015,20.06488678600006],[86.20915774800008,20.066636460000055],[86.19971764400006,20.077948309000035],[86.19597415500013,20.08030833499999],[86.17302493600002,20.102199611000014],[86.16846764400006,20.113185940000065],[86.16309655000012,20.134833075000145],[86.15870201900006,20.143133856000034],[86.15251712300008,20.143133856000034],[86.14503014400012,20.122015692000115],[86.15430748800006,20.08999258000013],[86.15870201900006,20.08104075700011],[86.16773522200006,20.072943427],[86.1877547540001,20.063666083000115],[86.2137150400001,20.04242584800015],[86.23023522200018,20.0353050800001],[86.26856530000012,20.026434637000065],[86.27344811300006,20.026190497000115],[86.28467858200011,20.027492580000015],[86.28907311300004,20.026434637000065],[86.29322350400011,20.021429755000028],[86.29411868600019,20.015692450000028],[86.29420006600017,20.01040273600016],[86.29590905000006,20.006577867000047],[86.30290774800008,19.99909088700018],[86.30811608200017,19.99209219],[86.31495201900006,19.98688385600009],[86.32667076900006,19.98484935100008],[86.341563347,19.979885158000016],[86.35645592500006,19.970404364000117],[86.3724064460001,19.96499258000007],[86.26856530000012,19.910345770000035],[86.11158287900011,19.855698960000055],[86.08904056100008,19.844224351000108],[86.07837975400011,19.843573309000146],[86.0667423840001,19.851996161000116],[86.05665123800006,19.856878973000093],[86.04656009200018,19.852525132],[86.0379337900001,19.84528229400017],[86.03207441500015,19.841498114000146],[86.01351972700016,19.839056708000115],[85.8888452480002,19.802964585000055],[85.84636478000002,19.795843817000033],[85.80860436300006,19.773382880000113],[85.78882897200006,19.765692450000085],[85.77808678500006,19.76463450700014],[85.74439537900011,19.765692450000085],[85.73438561300006,19.76361725500008],[85.71485436300004,19.75421784100014],[85.68458092500005,19.747748114000146],[85.624278191,19.718573309000092],[85.62598717500012,19.72288646],[85.635996941,19.72662995000003],[85.63795006600006,19.731634833000086],[85.61426842500012,19.72793203300013],[85.5491642590001,19.690619208000058],[85.4804793630001,19.666327216000084],[85.45679772200018,19.66331614799999],[85.44988040500019,19.666693427],[85.44752037900011,19.674627997000144],[85.44678795700011,19.690619208000058],[85.44312584700006,19.692450262000037],[85.4368595710001,19.69135163],[85.43043053500017,19.691717841000113],[85.42628014400005,19.69745514500009],[85.42701256600017,19.704087632000054],[85.43165123800011,19.70490143400015],[85.4368595710001,19.70465729400003],[85.4393009770001,19.707993882000054],[85.45085696700008,19.71629466400013],[85.47754967500006,19.723863023000078],[85.52198326900012,19.739081122000144],[85.52556399800007,19.734035549000012],[85.52344811300006,19.72870514500015],[85.5188908210001,19.721584377000013],[85.5149845710001,19.71112702000012],[85.55884850400015,19.738104559000178],[85.5765080090001,19.745835679],[85.56763756600006,19.75079987200003],[85.56324303500006,19.756903387000037],[85.56413821700002,19.76439036700019],[85.57032311300011,19.77317942900005],[85.56714928500006,19.791652736000074],[85.57032311300011,19.87563711100013],[85.55713951900006,19.88178131700012],[85.5149845710001,19.889308986000074],[85.47681725400011,19.901027736000074],[85.46355228000013,19.902899481000034],[85.44011478000002,19.896226304],[85.41627037900017,19.879787502000095],[85.37452233200011,19.837795315],[85.31959069100006,19.793646552000112],[85.30420983200011,19.792669989000146],[85.290293816,19.78994375200007],[85.27808678500004,19.785589911],[85.26807701900006,19.78001536700016],[85.24683678500017,19.762640692],[85.22095787900017,19.736029364000057],[85.20337975400011,19.70726146000011],[85.20655358200011,19.68378327000015],[85.18995201900012,19.67096588700012],[85.17514082100014,19.63690827],[85.16553795700004,19.625799872000144],[85.15015709700006,19.61347077000012],[85.14014733200017,19.596584377000127],[85.13933353000007,19.579779364000117],[85.15137780000006,19.5677757830001],[85.15137780000006,19.56028880400011],[85.13917076900006,19.55707428600006],[85.12289472700016,19.54901764500012],[85.10889733200011,19.538967190000065],[85.1028751960001,19.529608466000024],[85.10450280000012,19.514878648000135],[85.1087345710001,19.506781317],[85.11548912900017,19.507473049000154],[85.12403405000006,19.519354559000092],[85.12875410200009,19.509507554],[85.13021894600016,19.498724677000084],[85.128672722,19.487982489000057],[85.12403405000006,19.478338934000092],[85.13575280000006,19.48159414300012],[85.14177493600019,19.48712799700014],[85.14576256600006,19.49347565300009],[85.15137780000006,19.498846747000144],[85.1624455090001,19.503485419000167],[85.17115319100017,19.504461981000063],[85.17855879000015,19.504299221000096],[85.18555748800004,19.505682684000146],[85.20289147200006,19.517157294000114],[85.20191491000016,19.52708567900011],[85.19629967500006,19.538478908000073],[85.19922936300006,19.554103908000158],[85.20630944100006,19.548000393000066],[85.21452884200002,19.547267971000124],[85.22364342500012,19.549953518000038],[85.2332462900001,19.554103908000158],[85.20378665500002,19.570502020000063],[85.19304446700019,19.57391998900006],[85.19304446700019,19.58079661700016],[85.21290123800011,19.58112213700009],[85.22364342500012,19.59023672100001],[85.23259524800008,19.601548570000162],[85.2475692070001,19.608710028000033],[85.2475692070001,19.61493561400009],[85.24187259200018,19.617010809000092],[85.23731530000006,19.620550848000093],[85.23438561300006,19.625677802],[85.2332462900001,19.632554429000024],[85.23633873800011,19.635321356000148],[85.24781334700005,19.65314362200003],[85.2475692070001,19.656480210000055],[85.26075280000006,19.65607330900015],[85.30909264400006,19.64223867400007],[85.35059655000005,19.677639065000065],[85.36378014400012,19.678045966000166],[85.37435957100016,19.674709377000127],[85.3830672540001,19.676092841000028],[85.39144941500008,19.690619208000058],[85.399180535,19.679144598000118],[85.4031681650001,19.67129140800013],[85.40495853000007,19.661932684000092],[85.40528405000012,19.645941473],[85.4021916020001,19.643988348000065],[85.38868248800006,19.638251044000086],[85.3846134770001,19.635972398000106],[85.38217207100016,19.63108958500014],[85.38038170700015,19.61961497599999],[85.37794030000012,19.61493561400009],[85.36841881600006,19.608099677000055],[85.35230553500017,19.59943268400015],[85.33676191500015,19.596096096000124],[85.33008873800011,19.604966539000188],[85.32642662900017,19.618801174000097],[85.3183699880001,19.61953359600001],[85.3110457690001,19.610500393],[85.30909264400006,19.59503815300009],[85.30347741000017,19.597479559000117],[85.2937931650001,19.599554755000142],[85.28842207100016,19.601263739000146],[85.30250084700018,19.586655992000132],[85.30583743600019,19.58014557500003],[85.3029077480002,19.57391998900006],[85.33057701900006,19.576402085],[85.5765080090001,19.690619208000058],[85.54029381600006,19.669582424000126],[85.46338951900006,19.63104889500015],[85.3802189460001,19.593817450000145],[85.33668053500017,19.575181382],[85.28541100400011,19.536281643000095],[85.2405705090001,19.518052476000022],[85.18043053500006,19.475002346000068],[85.06950931100017,19.37213776200015],[84.99586022200006,19.32330963700015],[84.87208092500012,19.219875393],[84.79102623800004,19.12059153900016],[84.77776126400013,19.116197007],[84.775157097,19.115301825000117],[84.76441491,19.123439846000124],[84.75066165500019,19.13837311400006],[84.73878014400006,19.147650458000115],[84.73365319100006,19.13914622599999],[84.73121178500011,19.128810940000093],[84.72095787900015,19.114243882000054],[84.71998131600017,19.101629950000174],[84.72282962300002,19.09601471600017],[84.73536217500012,19.083197333000143],[84.74048912900017,19.07367584800012],[84.75684655000006,19.097642320000187],[84.76099694100012,19.101629950000174],[84.7678328790001,19.10179271000014],[84.7752384770001,19.100490627000127],[84.78003991000011,19.097072658000044],[84.77833092500005,19.09100983300011],[84.75114993600019,19.053900458000115],[84.74105879000008,19.028143622000172],[84.6994735040001,18.977484442],[84.67953535200016,18.945705471000153],[84.66504967500012,18.93012116100006],[84.63086998800011,18.915716864],[84.54786217500012,18.796087958000086],[84.5418400400001,18.775783596000068],[84.44825280000006,18.680650132],[84.43718509200002,18.662787177000112],[84.43262780000012,18.645697333],[84.42367597700014,18.63646067900011],[84.3704533210001,18.60130442900005],[84.34945722700016,18.569810289000046],[84.3328556650001,18.553697007000082],[84.31226647200006,18.546698309000092],[84.30632571700014,18.54368724200019],[84.28858483200023,18.529771226000108],[84.28174889400012,18.52558014500009],[84.27271569100012,18.52431875200007],[84.25001061300006,18.524237372000087],[84.24691816500015,18.52558014500009],[84.23764082100008,18.510931708000086],[84.2493595710001,18.501654364000117],[84.27100670700011,18.500189520000063],[84.2976994150001,18.516302802000112],[84.3261824880001,18.53742096600014],[84.34994550900014,18.552923895000063],[84.33122806100008,18.538641669000143],[84.28793379000008,18.505764065000065],[84.24008222700016,18.460760809000178],[84.23047936300006,18.446234442000147],[84.18832441500015,18.418036200000174],[84.17448978000002,18.399847723000093],[84.15284264400006,18.38361237200003],[84.14389082100008,18.37482330900015],[84.13892662900015,18.364162502000127],[84.13648522200006,18.35358307500009],[84.13282311300004,18.343410549000122],[84.1240340500001,18.333807684000146],[84.1131291020001,18.298285223000093],[84.07740319100012,18.271551825000174],[83.77515709700006,18.139593817],[83.61394290500007,18.045152085000055],[83.58228600400017,18.019110419000082],[83.57618248800011,18.00975169500005],[83.5628361340001,17.983099677000112],[83.55836022199999,17.97752513200011],[83.55665123800011,17.973456122000144],[83.53891035200009,17.95628489800013],[83.53443444100004,17.95331452000012],[83.52613366000017,17.942531643],[83.48658287900011,17.916896877000127],[83.47291100400011,17.90249258000007],[83.46558678500016,17.90249258000007],[83.46290123800011,17.908514716000084],[83.45191491000006,17.92291901200015],[83.44898522200006,17.90688711100016],[83.45240319100006,17.886216539000046],[83.45297285200009,17.868475653000147],[83.43116295700017,17.854234117000047],[83.4253035820001,17.83860911700016],[83.41773522200016,17.806219794000143],[83.4023543630001,17.78449127800009],[83.34131920700021,17.717433986000017],[83.31910241000017,17.70319245000009],[83.31324303500006,17.701157945000162],[83.30437259200019,17.692206122000144],[83.29859459700006,17.690130927000112],[83.29273522200018,17.691148179],[83.28956139400012,17.693264065],[83.2874455090001,17.695379950000117],[83.28467858200015,17.69635651200018],[83.28223717500012,17.699286200000117],[83.28028405000006,17.705959377000156],[83.27637780000006,17.713080145000035],[83.26823978000007,17.717474677],[83.2469181650001,17.716253973000093],[83.2420353520001,17.70652903900013],[83.24927819100006,17.695379950000117],[83.27198326900012,17.68813711100007],[83.29249108200023,17.67747630400005],[83.29859459700006,17.67279694200012],[83.29908287900011,17.664292710000026],[83.2892358730002,17.657619533000126],[83.26823978000007,17.64858633000013],[83.25513756600017,17.638128973000065],[83.2469181650001,17.634222723000065],[83.21290123800006,17.634914455000015],[83.23389733200011,17.607733466000084],[83.23894290500007,17.592962958000115],[83.22291100400017,17.58649323100012],[83.20923912900011,17.58368561400006],[83.19613691500015,17.57680898600013],[83.17139733200005,17.559800523000163],[83.08822675900008,17.53070709800012],[83.0532332690001,17.506496486000017],[83.01986738400015,17.490912177000112],[82.99642988400015,17.473456122000172],[82.97584069100006,17.453680731000063],[82.9695744150001,17.45010000200007],[82.95281009200008,17.44594961100013],[82.94548587300008,17.443101304],[82.8968205090001,17.409328518],[82.8886824880001,17.410142320000105],[82.88331139400006,17.422064520000063],[82.86915123800011,17.414007880000113],[82.85425866000017,17.402818101000108],[82.837657097,17.39276764500015],[82.79639733200017,17.38304271],[82.7581486340001,17.35919830900012],[82.71851647200018,17.348618882000054],[82.47486412900017,17.20595937700007],[82.45191491000017,17.182440497000115],[82.43506920700005,17.153794664000046],[82.42286217500012,17.139960028000147],[82.38770592500006,17.126939195000077],[82.37037194100006,17.110093492000075],[82.34205162900011,17.073187567],[82.31169681100002,17.04661692900005],[82.29932701900012,17.030340887000122],[82.29167728000007,16.99843984600001],[82.25269616000017,16.92918528900013],[82.25074303500011,16.907863674000154],[82.255137566,16.885321356000173],[82.26791425900015,16.867499091000113],[82.29835045700011,16.858465887000094],[82.30355879000008,16.854193427000084],[82.30811608200017,16.849554755000057],[82.31421959700006,16.84662506700012],[82.31959069100012,16.847235419000082],[82.32715905000006,16.849432684000178],[82.3333439460001,16.852118231000148],[82.33464603000012,16.85407135600012],[82.35206139400006,16.845404364000117],[82.36247806100008,16.859076239000146],[82.36117597700016,16.89134349200016],[82.35743248800006,16.924872137000122],[82.348887566,16.956488348],[82.36117597700016,16.93602122600005],[82.36654707100016,16.908636786000088],[82.36744225400011,16.860296942000062],[82.36557050900014,16.811590887000037],[82.35206139400006,16.76129791900017],[82.34595787900011,16.706122137000065],[82.3381453790001,16.678412177000055],[82.31421959700006,16.62815989800019],[82.31234785200016,16.619859117000104],[82.31381269600016,16.612982489],[82.31283613400015,16.608140367000132],[82.303965691,16.60643138200011],[82.29932701900012,16.61009349200016],[82.29379316500015,16.625637111000074],[82.28687584700018,16.62815989800019],[82.28093509200008,16.62083567899999],[82.2854923840001,16.60651276200009],[82.29607181100008,16.591009833],[82.30738366000011,16.579779364000085],[82.259043816,16.565497137000094],[82.2034611340001,16.51268138200011],[82.18824303500011,16.504055080000015],[82.17302493600013,16.50092194200012],[82.1228947270001,16.477362372000087],[82.0906681650001,16.454779364000117],[82.06861412900017,16.444281317000147],[82.03736412900011,16.447658596000064],[82.022715691,16.43573639500012],[82.00782311300006,16.419582424000154],[81.99268639400006,16.40843333500014],[81.98170006600012,16.407863674000065],[81.96794681100019,16.408921617000132],[81.95622806100017,16.40717194200012],[81.9480900400001,16.391546942000147],[81.94076582100016,16.38837311400009],[81.89991295700023,16.38580963700018],[81.88054446700018,16.381659247000027],[81.8616642590001,16.375392971000096],[81.78321373800006,16.338568427000112],[81.762950066,16.32257721600011],[81.7176212900001,16.31220123900003],[81.71159915500019,16.31220123900003],[81.69605553500011,16.31492747599999],[81.676931186,16.32737864800019],[81.6562606130001,16.337347723000093],[81.63640384200019,16.332709052000055],[81.6209416020001,16.339504299000097],[81.58497155000012,16.342108466000084],[81.568125847,16.346380927],[81.57390384200008,16.35834381700012],[81.56918379000015,16.367580471000096],[81.55697675900008,16.373032945000134],[81.54021243600008,16.373683986000074],[81.54908287900011,16.352362372000115],[81.53598066500015,16.350043036000056],[81.49586022200006,16.36066315300009],[81.47535241000017,16.358628648000163],[81.41667728000007,16.34015534100014],[81.421153191,16.350978908000126],[81.4261173840001,16.358710028000147],[81.42823326900006,16.365668036000145],[81.42408287900011,16.373683986000074],[81.41138756600017,16.382513739000146],[81.39893639400006,16.38263580900012],[81.38697350400011,16.37677643400015],[81.37574303500011,16.36749909100011],[81.35962975400015,16.374335028000033],[81.34522545700011,16.37360260600009],[81.33155358200017,16.369777736000074],[81.31739342500012,16.36749909100011],[81.2596134770001,16.332709052000055],[81.24854576900006,16.320135809000178],[81.24984785200016,16.31102122599999],[81.25603274800002,16.301825262000122],[81.2596134770001,16.288641669000143],[81.25416100400017,16.271307684000178],[81.2303166020001,16.243597723000093],[81.218516472,16.199448960000026],[81.19027754000015,16.13886139500012],[81.1800236340001,16.086737372000083],[81.1619572270001,16.057074286000056],[81.15601647200018,16.03851959800015],[81.15544681100019,15.985500393000038],[81.14975019600008,15.969631252000099],[81.1351017590001,15.96649811400012],[81.08822675900015,15.921210028000088],[81.04330488400015,15.894110419000171],[81.02686608200005,15.880845445000132],[80.99887129000014,15.846747137000035],[80.99838300900015,15.834702867000102],[81.00294030000012,15.825262762000092],[81.00879967500006,15.817816473000121],[81.0125431650001,15.811957098000091],[81.01921634200002,15.792385158000014],[81.01905358200005,15.78416575700011],[81.0125431650001,15.77781810099999],[81.0047306650001,15.778509833000113],[80.99586022200005,15.784328518000066],[80.98829186300011,15.791205145000092],[80.97901451900006,15.803412177000055],[80.94947350400017,15.827866929],[80.940684441,15.832993882000109],[80.921641472,15.838609117000104],[80.9100041020001,15.85268789300015],[80.90430748800006,15.871283270000147],[80.9026798840001,15.890814520000118],[80.91016686300006,15.96588776200015],[80.90894616000017,15.983465887000179],[80.90601647200006,15.99982330900009],[80.89649498800006,16.03107330900015],[80.89226321700012,16.020941473000036],[80.89649498800006,16.010565497000115],[80.8890080090001,16.003729559000092],[80.88575280000012,16.008693752000156],[80.88282311300011,16.01146067900011],[80.87533613400015,16.017401434000035],[80.89128665500007,15.978257554],[80.89576256599999,15.936021226000078],[80.89014733200011,15.895249742000106],[80.85572350400017,15.822699286],[80.83025149800007,15.747626044000171],[80.82007897199999,15.72687409100017],[80.80713951900012,15.716376044000086],[80.80836022200005,15.803941148000135],[80.80274498800006,15.842433986000044],[80.77613366000011,15.884263414000046],[80.7601017590001,15.892971096000124],[80.73633873800011,15.89760976800015],[80.69044030000012,15.90070221600014],[80.68246504000014,15.903265692000149],[80.67628014400012,15.907171942000145],[80.6701766290001,15.90770091400013],[80.66309655000005,15.90070221600014],[80.66041100400017,15.893947658000016],[80.66285241000011,15.889349677000082],[80.61841881600016,15.887681382000054],[80.60010826900012,15.882228908000018],[80.5843205090001,15.872544664000072],[80.57113691500014,15.868719794000143],[80.56072024800001,15.880845445000132],[80.55388431100002,15.880845445000132],[80.54167728000007,15.8680687520001],[80.52588951900012,15.85691966400016],[80.49187259200008,15.839260158000158],[80.4826766290001,15.836411851000108],[80.47559655000005,15.835923570000132],[80.46908613400015,15.834662177000114],[80.4614363940001,15.829657294000086],[80.44548587300018,15.814398505000113],[80.43628991000011,15.808294989000117],[80.39332116000017,15.797023830000128],[80.35962975400017,15.775824286000145],[80.2796330090001,15.70066966400013],[80.26319420700011,15.674546617000159],[80.2194930350001,15.567450262000149],[80.21745853000017,15.548163153000033],[80.2013452480002,15.518296617000045],[80.19760175900008,15.503078518000066],[80.21119225400011,15.496649481000146],[80.200450066,15.482163804000024],[80.18384850400017,15.452297268],[80.17286217500012,15.438299872000144],[80.14031009200002,15.406398830000127],[80.12680097700016,15.38812897300015],[80.12126712300002,15.370021877000141],[80.0905867850001,15.304877020000118],[80.09253991000011,15.296576239000144],[80.08236738400014,15.204087632000052],[80.05298912900017,15.092596747000142],[80.0545353520001,15.014146226000106],[80.06153405000006,14.974676825000145],[80.07341556100013,14.9420433610001],[80.0730086600001,14.92055898600016],[80.10515384200008,14.763861395000134],[80.10816491000017,14.71434153900019],[80.1106876960001,14.704779364000103],[80.11695397200006,14.698146877000141],[80.12818444100006,14.68846263200008],[80.15186608200005,14.672796942000105],[80.15984134200014,14.662665106000146],[80.1663517590001,14.628159898000133],[80.17359459700006,14.616522528000134],[80.17847741000011,14.605780341000113],[80.1759546230002,14.592962958000086],[80.16968834700006,14.58584219000012],[80.16089928500017,14.579820054000121],[80.14185631600017,14.571234442000103],[80.14918053500017,14.56500885600015],[80.15935306100002,14.565741278000173],[80.18327884200019,14.57111237200013],[80.19019616000011,14.571234442000103],[80.19695071700002,14.56500885600015],[80.19605553500011,14.559027411000129],[80.19239342500006,14.55320872600008],[80.19019616000011,14.547593492000175],[80.18824303500011,14.52570221600014],[80.1759546230002,14.468736070000134],[80.17872155000006,14.389390367000187],[80.17497806100013,14.344549872000158],[80.159434441,14.324774481000146],[80.13705488400008,14.269924221000139],[80.12818444100006,14.25653717700014],[80.09791100400017,14.254299221000153],[80.08716881600006,14.25031159100017],[80.07178795700011,14.23224518400015],[80.07007897200018,14.22919342700007],[80.0550236340001,14.221584377000127],[80.046641472,14.2066104190001],[80.0506291020001,14.196112372000115],[80.07349694100012,14.201849677000098],[80.09099368600006,14.216742255000142],[80.10661868600002,14.234035549000138],[80.12110436300004,14.242010809000105],[80.13559004000014,14.22919342700007],[80.12338300900015,14.193508205000128],[80.1258244150001,14.148504950000131],[80.14966881600017,14.027736721000094],[80.16391035200014,13.987982489000089],[80.2371525400001,13.839667059000107],[80.249278191,13.800279039000129],[80.2454533210001,13.755601304000066],[80.2273869150001,13.720526434000176],[80.22095787900017,13.69696686400013],[80.22771243600017,13.67706940300013],[80.238047722,13.660223700000131],[80.25904381600016,13.591742255000085],[80.28809655000006,13.527085679000052],[80.30958092500006,13.479315497000101],[80.31373131599999,13.440904039000188],[80.30689537900015,13.440904039000188],[80.27776126400013,13.512518622000115],[80.2454533210001,13.591742255000085],[80.19727623800006,13.643622137000179],[80.18360436300011,13.679185289000145],[80.1525171230002,13.718939520000147],[80.14185631600017,13.72894928600013],[80.14177493600019,13.649115302000112],[80.13559004000014,13.619086005000069],[80.12126712300002,13.627264716000155],[80.11768639400006,13.638861395000092],[80.12126712300002,13.663763739000116],[80.11784915500002,13.674505927000126],[80.10987389400006,13.680731512000179],[80.10084069100017,13.686265367000118],[80.09400475400015,13.694769598000136],[80.09359785200016,13.671332098000077],[80.09131920700005,13.659125067000089],[80.0755314460001,13.648382880000085],[80.05298912900017,13.619086005000069],[80.05648847700016,13.595160223000093],[80.069509311,13.574408270000104],[80.10132897200006,13.537095445000134],[80.11207116000016,13.51154205900015],[80.11939537900015,13.500677802000068],[80.13184655000012,13.496161200000103],[80.15308678500017,13.49420807500016],[80.1759546230002,13.489325262000179],[80.21973717500006,13.487779039000145],[80.22771243600017,13.485581773000149],[80.23511803500011,13.478094794000086],[80.24341881600017,13.472154039000158],[80.25342858200017,13.46865469000008],[80.26018313900008,13.468451239000117],[80.26587975400017,13.46824778900016],[80.26238040500019,13.451239325000103],[80.2747501960001,13.440008856000105],[80.29314212300008,13.429144598000121],[80.30689537900015,13.413031317000147],[80.31226647200005,13.423163153000104],[80.31373131599999,13.427232164000158],[80.32699629000015,13.430365302000125],[80.33399498800011,13.413031317000147],[80.34400475400011,13.375433661000145],[80.3478296230002,13.34906647300015],[80.34555097700016,13.321234442000089],[80.3362736340001,13.270941473000121],[80.33415774800007,13.242905992000116],[80.32374108200011,13.246893622000101],[80.31983483200011,13.249172268000066],[80.31804446700019,13.230902411000102],[80.31373131599999,13.215033270000076],[80.31820722700014,13.21698639500012],[80.33415774800007,13.221177476000136],[80.33277428500011,13.198146877000084],[80.32422936300006,13.180365302000098],[80.3138126960001,13.164292710000112],[80.30689537900015,13.146063544000128],[80.3071395190001,13.13564687700014],[80.31373131599999,13.10578034100014],[80.30795332100014,13.096014716000111],[80.28972415500007,13.076727606000162],[80.28581790500006,13.0675723330001],[80.28272545700005,13.029364325000131],[80.26905358200023,12.957261460000124],[80.26319420700011,12.83535390800013],[80.25171959700005,12.762518622000087],[80.23365319100004,12.711004950000117],[80.2286889980002,12.674994208000143],[80.22217858200011,12.65997955900012],[80.20386803500011,12.63214752800016],[80.19646243600008,12.61371491100013],[80.18506920700005,12.567124742000102],[80.18336022200018,12.546820380000113],[80.17969811300011,12.532619533000101],[80.15601647200012,12.474514065000136],[80.12126712300002,12.416815497000101],[80.11703535200009,12.400946356000162],[80.09595787900011,12.362250067000117],[80.08716881600006,12.351019598000121],[80.06373131600017,12.337469794000157],[80.05982506600017,12.334214585000112],[80.0574650400001,12.3312442080001],[80.02572675900015,12.276516018000152],[80.005137566,12.256048895000104],[79.95215905000006,12.229925848000136],[79.94385826900012,12.217840887000136],[79.95313561300006,12.213568427000125],[79.97380618600008,12.222398179000095],[80.005137566,12.2417666690001],[79.94760175900015,12.153631903000104],[79.93360436300004,12.138739325000143],[79.92750084700016,12.129868882000096],[79.89698326900006,12.068752346000139],[79.87012780000006,12.037420966000097],[79.86182701900006,12.022040106000148],[79.86052493600017,12.011542059000178],[79.86182701900006,11.97797272300015],[79.85962975400011,11.97272370000016],[79.85035241000011,11.959133205000114],[79.84953860800013,11.955064195000148],[79.84498131600017,11.933254299000097],[79.82032311300011,11.878648179000137],[79.80323326900006,11.796087958000143],[79.79273522200018,11.788072007000096],[79.78589928500017,11.769191799000067],[79.76710045700011,11.673651434000178],[79.76343834700006,11.634263414000186],[79.75416100400011,11.596991278000118],[79.75196373800011,11.576971747000144],[79.75733483200005,11.536078192000119],[79.78077233200023,11.46507396000014],[79.78598066500015,11.426174221000153],[79.79297936300011,11.426174221000153],[79.79737389400012,11.43488190300013],[79.7991642590001,11.442206122000144],[79.79761803500011,11.448309637000122],[79.79297936300011,11.453517971000124],[79.80933678500011,11.45136139500012],[79.81666100400011,11.443060614000144],[79.82195071700019,11.391058661000088],[79.81934655000012,11.381496486000088],[79.810313347,11.37889232000019],[79.78272545700011,11.37889232000019],[79.77605228,11.380357164000145],[79.7692977220001,11.380926825000117],[79.75879967500012,11.378363348000121],[79.7498478520001,11.373683986000103],[79.7404077480002,11.366441148000163],[79.68433678500016,11.312201239000132],[79.67628014400012,11.296454169000171],[79.68311608200023,11.296454169000171],[79.69629967500012,11.303412177000068],[79.7420353520001,11.335598049000112],[79.75196373800011,11.340521552000084],[79.75928795700011,11.358343817000145],[79.77637780000006,11.362982489000075],[79.79688561300011,11.359035549000097],[79.82374108200011,11.346665757000054],[79.82992597700016,11.346096096000082],[79.83301842500006,11.341986395000133],[79.83497155000012,11.263861395000118],[79.8553166020001,11.159857489000089],[79.85222415500019,11.006984768000152],[79.84669030000006,10.979844468000138],[79.8406681650001,10.950140692000119],[79.84734134200002,10.809637762000136],[79.84986412900017,10.755194403000132],[79.85027103000007,10.59210846600017],[79.85962975400011,10.551459052000084],[79.86378014400006,10.37872955900015],[79.85670006600017,10.293280341000127],[79.851328972,10.282212632000096],[79.83432050900014,10.278753973000093],[79.8146264980002,10.272406317000062],[79.79509524800002,10.269232489000103],[79.77857506600006,10.275376695000162],[79.78003991000011,10.296616929000066],[79.75709069100006,10.30906810100008],[79.63314863400008,10.328599351000065],[79.62126712300008,10.324164130000085],[79.6141056650001,10.309556382000068],[79.63038170700023,10.310492255000142],[79.6464949880001,10.309637762000136],[79.66179446700008,10.30707428600013],[79.67628014400012,10.302720445000148],[79.6845809250001,10.29873281500008],[79.69467207100016,10.291652736000103],[79.70362389400012,10.289048570000105],[79.7308048840001,10.289048570000105],[79.75896243600019,10.282212632000096],[79.77369225400017,10.273667710000069],[79.77247155000006,10.261704820000132],[79.75977623800011,10.25824616100013],[79.58008873800011,10.295884507000125],[79.56348717500012,10.297105210000138],[79.55665123800011,10.298651434000178],[79.5527449880001,10.302720445000148],[79.55176842500005,10.313299872000101],[79.55689537900017,10.316066799000154],[79.56519616000011,10.315741278000132],[79.57390384200014,10.316961981000148],[79.60401451900006,10.329087632000139],[79.60710696700002,10.336004950000143],[79.58692467500012,10.34369538000007],[79.56771894600016,10.33588288000007],[79.528575066,10.338324286000102],[79.53223717500006,10.330023505000128],[79.53223717500006,10.323187567000103],[79.51148522200018,10.316595770000133],[79.45972741000011,10.308294989000146],[79.43726647200006,10.309556382000068],[79.4119572270001,10.32099030200011],[79.39812259200019,10.324652411000073],[79.38550866000011,10.32013580900012],[79.36378014400006,10.301906643000136],[79.30494225400017,10.268133856000146],[79.28614342500012,10.252834377000097],[79.27222741000011,10.234442450000143],[79.27027428500017,10.223334052000112],[79.27068118600017,10.209540106000105],[79.26921634200002,10.19782135600012],[79.26197350400011,10.192857164000158],[79.24830162900017,10.189195054000123],[79.24000084700018,10.179754950000103],[79.23633873800006,10.166571356000146],[79.23747806100008,10.151922919000143],[79.2443139980002,10.084947007000139],[79.25416100400011,10.054266669000143],[79.27906334700006,10.035834052000112],[79.24073326900012,10.010565497000158],[79.20036868600008,9.970282294000171],[79.14185631599999,9.891180731000176],[79.12134850400017,9.85024648600016],[79.10352623800004,9.830145575000115],[79.10084069100012,9.82607656500015],[79.09408613400015,9.802313544000143],[79.07781009200002,9.782171942000117],[79.03882897200006,9.747219143000109],[78.9808048840001,9.667181708000129],[78.9798283210001,9.658636786000102],[78.980235222,9.649115302000112],[78.97730553500017,9.637925523000192],[78.97282962300014,9.63129303600013],[78.96208743600017,9.622707424000112],[78.95679772200006,9.617499091000127],[78.94752037900015,9.602850653000118],[78.9383244150001,9.583685614000144],[78.9314884770001,9.561672268000137],[78.92530358200023,9.51361725500007],[78.91325931100019,9.474269924000069],[78.91529381600006,9.453029690000093],[78.93344160200016,9.416449286000145],[78.95972741000017,9.384955145000134],[79.0398869150001,9.314683335000097],[79.07471764400006,9.299872137000122],[79.1155705090001,9.291245835000126],[79.25171959700016,9.28851959800015],[79.27377363400008,9.296698309000163],[79.29712975400017,9.312648830000072],[79.32007897200005,9.323309637000108],[79.34107506600012,9.315863348000121],[79.34571373800011,9.306545315000093],[79.34253991000016,9.29901764500012],[79.33668053500011,9.290472723000107],[79.33366946700019,9.278265692000133],[79.33570397200006,9.267645575000174],[79.34058678500011,9.260931708000143],[79.34522545700023,9.255926825000103],[79.34734134200008,9.250311591000099],[79.35352623800011,9.240912177000082],[79.36793053500016,9.22760651200015],[79.43824303500011,9.176336981000118],[79.45362389400006,9.15900299700013],[79.44027754000015,9.151353257000096],[79.4240014980002,9.159084377000113],[79.36101321700019,9.213446356000134],[79.29273522200018,9.250311591000099],[79.23243248800006,9.257879950000145],[79.21697024800014,9.267401434000135],[79.2010197270001,9.266506252000141],[79.18409264400012,9.271795966000127],[79.16537519600016,9.274237372000158],[79.12940514400006,9.256333726000108],[79.09864342500012,9.257228908000101],[79.08716881600016,9.253810940000093],[79.06080162900017,9.264593817000089],[79.02572675900008,9.27374909100017],[78.98894290500019,9.278265692000133],[78.95679772200006,9.274847723000121],[78.94898522200006,9.270493882000125],[78.92896569100017,9.253810940000093],[78.91846764400012,9.251613674000097],[78.91130618600008,9.252142645000077],[78.90447024800002,9.253566799000138],[78.89551842500012,9.253810940000093],[78.86101321700018,9.248968817000105],[78.84376061300011,9.243963934000163],[78.81519616000011,9.228420315000065],[78.777110222,9.219387111000145],[78.7615666020001,9.209702867000189],[78.75196373800006,9.200588283000101],[78.74073326900006,9.192816473000107],[78.72779381600004,9.187445380000142],[78.67628014400006,9.184149481000105],[78.66130618600013,9.177191473000121],[78.65512129000014,9.161566473000136],[78.64893639400006,9.151434637000179],[78.63477623800006,9.14459870000016],[78.61882571700008,9.140529690000108],[78.48585045700023,9.124823309000135],[78.44988040500007,9.116603908000144],[78.41211998800006,9.099839585000126],[78.37745201900012,9.077460028000104],[78.23975670700005,8.965562242000189],[78.2176212900001,8.938950914000145],[78.18279056100006,8.877101955000157],[78.1779077480002,8.86107005400008],[78.17448978000019,8.794419664000186],[78.17042076900012,8.771877346000124],[78.16236412900017,8.753485419000171],[78.17579186300006,8.763902085000069],[78.18873131600017,8.765448309000107],[78.20045006600017,8.769680080000128],[78.21021569099999,8.788275458000129],[78.21517988400015,8.765448309000107],[78.20460045700011,8.753322658000116],[78.18653405000006,8.744940497000144],[78.16920006600012,8.733628648000163],[78.16480553500011,8.726507880000113],[78.15495853000019,8.698879299000112],[78.14047285200016,8.680609442000133],[78.13672936300011,8.669867255000128],[78.14258873800006,8.657904364000103],[78.11459394600016,8.657904364000103],[78.13550866000011,8.62579987200013],[78.142344597,8.593085028000104],[78.12826582100016,8.488023179000109],[78.12330162900011,8.477525132000137],[78.11459394600016,8.466131903000175],[78.08716881600016,8.440497137000108],[78.07984459700016,8.431952216000083],[78.06275475400011,8.373195705000086],[78.05591881599999,8.363714911000088],[78.03882897200018,8.360907294000128],[77.999766472,8.344916083000129],[77.8061629570001,8.228664455000128],[77.79346764400006,8.215318101000122],[77.76832116000016,8.181545315000136],[77.75245201900006,8.17381419500012],[77.64380944100017,8.155707098000121],[77.59522545700023,8.138983466000083],[77.56104576900006,8.114569403000132],[77.56527754000015,8.082505601000065],[77.51091556100008,8.075995184000163],[77.4497176440001,8.087469794000114],[77.31560306100008,8.127752997000172],[77.30860436300006,8.130926825000145],[77.29468834700018,8.14704010600012],[77.28679446700019,8.153509833000129],[77.26295006600006,8.168402411000088],[77.23894290500019,8.175116278000118],[77.22527103000007,8.184393622000172],[77.1287541020001,8.271795966000141],[77.11036217500006,8.285183010000154],[76.99586022200006,8.368109442000062],[76.96257571700002,8.404689846000096],[76.880137566,8.520697333000143],[76.82650800900015,8.569810289000172],[76.81373131600017,8.601263739000103],[76.74170983200015,8.684515692000133],[76.73129316500015,8.707953192000119],[76.6956486340001,8.739813544000143],[76.6603296230002,8.799750067000076],[76.64454186300006,8.818996486000117],[76.55860436300006,8.890692450000117],[76.54395592500012,8.912502346000082],[76.54810631600017,8.924221096000153],[76.55909264400012,8.925238348000121],[76.57325280000006,8.904445705000143],[76.59115644600008,8.908148505000085],[76.60987389400006,8.91795482000012],[76.62061608200004,8.925441799000083],[76.60726972700016,8.92576732000019],[76.59376061300011,8.921047268000095],[76.58155358200023,8.919907945000162],[76.57227623800006,8.931626695000148],[76.57398522200016,8.942572333000115],[76.58228600400017,8.956366278000116],[76.59327233200011,8.968207098000093],[76.60328209700018,8.973211981000118],[76.6575626960001,8.966376044000114],[76.66081790500019,8.969875393000095],[76.65211022200018,8.977280992000175],[76.64039147200012,8.98444245000013],[76.6342879570001,8.986883856000162],[76.64193769600016,8.991359768000123],[76.65650475400017,8.995062567000074],[76.66846764400012,8.999823309000163],[76.66846764400012,9.007391669000114],[76.65788821700008,9.010687567000147],[76.64405358200017,9.007879950000103],[76.63209069100004,9.002346096000082],[76.62671959700018,8.997463283000116],[76.62061608200004,8.987127997000101],[76.60645592500006,8.98940664300008],[76.58277428500011,9.000555731000105],[76.57683353000013,8.994126695000176],[76.56592858200021,8.963283596000124],[76.55860436300006,8.952093817000119],[76.55111738400015,8.966376044000114],[76.55811608200021,8.973049221000153],[76.56153405000006,8.978989976000094],[76.56544030000006,8.994330145000134],[76.5496525400001,8.98444245000013],[76.538828972,8.97260163000007],[76.53443444100006,8.957831122000172],[76.53809655000006,8.93911367400011],[76.52808678500011,8.946966864000103],[76.52149498800011,8.961330471000082],[76.51791425900015,8.977443752000141],[76.51685631600017,8.990627346000096],[76.5138452480002,9.002142645000134],[76.50017337300008,9.022284247000158],[76.48926842500005,9.055568752000156],[76.46045983200023,9.114935614000132],[76.46241295700011,9.138332424000112],[76.46452884200019,9.13251373900006],[76.4666447270001,9.128973700000172],[76.46827233200023,9.1245791690001],[76.46908613400015,9.116603908000144],[76.47657311300011,9.116603908000144],[76.47624759200019,9.131252346000153],[76.4827580090001,9.17182038000007],[76.47331790500007,9.16425202000012],[76.4709578790001,9.160142320000162],[76.46908613400015,9.151353257000096],[76.46241295700011,9.151353257000096],[76.44336998800011,9.212144273000135],[76.42823326900012,9.245347398000149],[76.41456139400006,9.24697500200007],[76.41602623800011,9.236314195000132],[76.44678795700011,9.159613348000093],[76.44874108200017,9.145168361000131],[76.44255618600019,9.145168361000131],[76.36296634200019,9.325181382000082],[76.31177819100006,9.49298737200013],[76.29102623800006,9.633205471000094],[76.29712975400011,9.65843333500014],[76.27735436300011,9.80927155200014],[76.253184441,9.883734442000103],[76.24675540500019,9.8937442080001],[76.24024498800011,9.939398505000128],[76.23633873800011,9.952704169000143],[76.25147545700011,9.96312083500014],[76.26954186300011,9.950995184000135],[76.28467858200023,9.928534247000144],[76.29102623800006,9.908596096000153],[76.28565514400012,9.904364325000131],[76.26221764400012,9.911566473000079],[76.25684655000006,9.908596096000153],[76.25766035200016,9.895819403000118],[76.2605900400001,9.884711005000085],[76.26685631600006,9.876044012000179],[76.27735436300011,9.870754299000112],[76.27857506600006,9.8768985050001],[76.28419030000005,9.891180731000176],[76.28907311300011,9.877142645000133],[76.28825931100019,9.861232815000122],[76.28443444100017,9.848211981000134],[76.28077233200023,9.842840887000165],[76.28980553500011,9.843817450000145],[76.29997806100019,9.847805080000128],[76.30469811300011,9.856268622000158],[76.29712975400011,9.870754299000112],[76.30860436300011,9.87962474200016],[76.3138126960001,9.86131419500019],[76.33887780000006,9.699408270000076],[76.34620201900006,9.699408270000076],[76.34734134200014,9.726874091000113],[76.33757571700018,9.789252020000076],[76.34620201900006,9.81610748900006],[76.32398522200006,9.846177476000108],[76.32007897200006,9.861639716000127],[76.33269290500013,9.870754299000112],[76.33741295700023,9.856187242000175],[76.35303795700011,9.829820054000095],[76.35922285200016,9.81610748900006],[76.36109459700006,9.803859768000095],[76.358653191,9.781805731000105],[76.35922285200016,9.768296617000118],[76.36801191500015,9.71556224200013],[76.37712649800001,9.695502020000077],[76.3940535820001,9.678941148000192],[76.3924259770001,9.662827867000132],[76.38656660200016,9.649847723000136],[76.37916100400017,9.637762762000136],[76.3728947270001,9.624335028000132],[76.35328209700006,9.535345770000134],[76.35743248800011,9.520697333000129],[76.376719597,9.514471747000158],[76.42579186300004,9.505275783000101],[76.43506920700023,9.50763580900015],[76.45899498800006,9.497300523000135],[76.47706139400012,9.50372955900015],[76.50326582100016,9.53497955900012],[76.48438561300011,9.543768622000172],[76.46656334700006,9.556382554000066],[76.44849694099999,9.563421942000133],[76.42823326900012,9.555405992000189],[76.41724694100006,9.561428127000099],[76.40699303500011,9.56907786700013],[76.41968834700018,9.594183661000116],[76.41960696700019,9.61448802300012],[76.41504967500006,9.636175848000107],[76.41456139400006,9.682684637000136],[76.4100041020001,9.700262762000165],[76.4025985040001,9.710598049000083],[76.3940535820001,9.706244208000086],[76.39210045700005,9.716945705000114],[76.39478600400011,9.735174872000087],[76.3940535820001,9.747219143000109],[76.39079837300007,9.756984768000137],[76.38209069100017,9.774725653000132],[76.38038170700005,9.785101630000128],[76.38404381600004,9.80263906500008],[76.39128665500007,9.812201239000075],[76.39649498800006,9.822658596000137],[76.3940535820001,9.842840887000165],[76.38559004000015,9.861517645000148],[76.3637801440001,9.899237372000115],[76.35922285200016,9.915432033000073],[76.32081139400006,9.953314520000106],[76.31153405000012,9.966945705000143],[76.2942814460001,9.951320705000157],[76.27816816500015,9.977932033000116],[76.26929772200018,10.016262111000131],[76.27393639400012,10.035834052000112],[76.25505618600019,10.047674872000158],[76.24512780000006,10.102199611000145],[76.23633873800011,10.10346100500007],[76.22771243600019,10.109564520000148],[76.2229110040001,10.117621161000088],[76.21534264400006,10.138251044000114],[76.20753014400006,10.1171328800001],[76.21355228000019,10.098822333000129],[76.2234806650001,10.082098700000103],[76.22901451900012,10.065904039000145],[76.23096764400005,10.02582428600013],[76.23503665500013,10.005072333000129],[76.24268639400006,9.987453518000109],[76.22820071700019,9.999945380000113],[76.21461022200005,10.024481512000136],[76.18238366000011,10.105658270000148],[76.18116295700005,10.121161200000158],[76.1849064460001,10.135809637000165],[76.18458092500006,10.144924221000153],[76.17774498800004,10.15534088700015],[76.17750084700006,10.170640367000118],[76.22413170700021,10.196926174000126],[76.23633873800011,10.210272528000132],[76.23731530000006,10.21698639500009],[76.24170983200005,10.223944403000175],[76.24268639400006,10.231024481000134],[76.24024498800011,10.238959052000098],[76.23438561300006,10.23794179900014],[76.22779381600017,10.234279690000093],[76.22282962300001,10.234442450000143],[76.21338951900012,10.253241278000102],[76.20630944100017,10.262884833000072],[76.19483483200011,10.268622137000136],[76.2078556650001,10.23456452000012],[76.2094832690001,10.216009833000115],[76.20167076900006,10.199693101000094],[76.1840926440001,10.18935781500008],[76.17058353000002,10.193752346000151],[76.16049238400015,10.206244208000072],[76.15316816500015,10.22016022300015],[76.13819420700021,10.261053778000173],[76.1206160820001,10.343573309000178],[76.10613040500007,10.38467031500008],[76.07007897200016,10.432806708000143],[76.06511478000002,10.449855861000103],[76.06332441500014,10.470160223000091],[76.05241946700008,10.513983466000155],[76.04460696700019,10.52928294500012],[76.01872806100006,10.553412177000126],[76.00806725400011,10.56708405200007],[75.99968509200008,10.605536200000158],[75.93913821700019,10.726060289000173],[75.93474368600019,10.744330145000148],[75.93213951900012,10.75096263200011],[75.92693118600013,10.75771719000015],[75.92204837300002,10.765570380000128],[75.92107181100008,10.775702216000083],[75.92408287900017,10.780707098000121],[75.93653405000012,10.790716864000116],[75.94157962300012,10.796210028000132],[75.91114342500006,10.809230861000131],[75.89454186300011,10.849758205000143],[75.88013756600006,10.93268463700015],[75.83277428500011,11.097845770000134],[75.74293053500011,11.310126044000114],[75.73780358200005,11.319484768000137],[75.73365319100004,11.325181382000125],[75.7308048840001,11.331732489000103],[75.72925866000017,11.34365469000015],[75.73951256600017,11.350734768000109],[75.74244225400011,11.35871002800016],[75.73552493600019,11.371527411000102],[75.72217858200011,11.367499091000127],[75.71119225400011,11.381781317000117],[75.69516035200016,11.419989325000174],[75.6770939460001,11.450100002000113],[75.66480553500016,11.462632554000109],[75.65015709700018,11.467759507000125],[75.63013756600012,11.46873607000019],[75.61654707100016,11.473618882000082],[75.60889733200011,11.484930731000146],[75.6062931650001,11.505316473000136],[75.60084069100017,11.523382880000055],[75.58187910200016,11.549790757000139],[75.5852970710001,11.563381252000099],[75.5307723320001,11.693670966000141],[75.50611412900011,11.727240302000084],[75.37973066500015,11.864976304000109],[75.37256920700011,11.86473216400016],[75.35580488400008,11.857652085000097],[75.35254967500006,11.861558335000097],[75.34937584700018,11.871975002000084],[75.3245548840001,11.899115302000096],[75.30762780000006,11.932196356000148],[75.32650800900014,11.935858466000097],[75.4002384770001,11.920233466000113],[75.4002384770001,11.926459052000084],[75.38656660200016,11.935126044000157],[75.38282311300004,11.945502020000077],[75.38599694100012,11.958319403000104],[75.3934025400001,11.974839585000083],[75.38021894600016,11.9686953800001],[75.3613387380001,11.951239325000131],[75.34913170700023,11.947577216000083],[75.33171634200008,11.949530341000127],[75.31609134200008,11.95563385600012],[75.30225670700005,11.966050523000106],[75.29037519600008,11.981105861000131],[75.27881920700011,12.003241278000104],[75.28109785200016,12.010646877000097],[75.31470787900011,12.00836823100012],[75.32976321700019,12.012640692000131],[75.32496178500011,12.022650458000115],[75.30559329500008,12.04177480700018],[75.30420983200023,12.043158270000076],[75.26433353000006,12.013332424000069],[75.26050866000011,11.997788804000066],[75.2767033210001,11.967433986000088],[75.24561608200011,12.002915757000082],[75.23926842500006,12.00836823100012],[75.23324629000014,12.010484117000132],[75.22820071700014,12.015082098000063],[75.22445722700009,12.019354559000162],[75.2221785820001,12.022040106000148],[75.21648196700002,12.021063544000171],[75.21062259200019,12.016994533000116],[75.2070418630001,12.01203034100017],[75.20850670700005,12.00836823100012],[75.19369550900008,12.022284247000101],[75.18628991000011,12.041571356000134],[75.18051191500015,12.077297268000066],[75.14380944100004,12.161322333000115],[75.13086998800006,12.207831122000158],[75.13965905000012,12.2417666690001],[75.13965905000012,12.24860260600012],[75.12671959700012,12.245835679000066],[75.11963951900006,12.238999742000145],[75.11394290500007,12.230169989000089],[75.10547936300011,12.221258856000148],[75.10613040500007,12.233710028000159],[75.10474694100017,12.24607982000019],[75.09864342500012,12.269029039000188],[75.08285566500015,12.305894273000163],[75.01840254000015,12.414740302000084],[75.01099694100017,12.435777085000112],[75.00993899800002,12.443793036000145],[75.00660241000011,12.449448960000138],[74.9993595710001,12.454901434000178],[74.99203535200016,12.461737372000101],[74.98878014400012,12.47138092700007],[74.98536217500012,12.491359768000137],[74.9767358730002,12.507025458000115],[74.95525149800008,12.537258205000114],[74.87964928500017,12.725490627000156],[74.87012780000006,12.742865302000139],[74.85572350400011,12.75942617400011],[74.85425866000017,12.76528554900014],[74.85474694100006,12.787014065000122],[74.85230553500011,12.79730866100013],[74.84400475400011,12.808010158000158],[74.83497155000012,12.815822658000144],[74.82764733200011,12.824652411000116],[74.82496178500011,12.83820221600017],[74.8514103520001,12.825506903000118],[74.85914147199999,12.824611721000124],[74.86695397199999,12.830023505000069],[74.88111412900011,12.848049221000096],[74.88982181100002,12.851874091000113],[74.90113366000011,12.85342031500015],[74.91749108200023,12.858140367000159],[74.93287194100017,12.866441148000135],[74.9409285820001,12.878607489000117],[74.89478600400017,12.871161200000143],[74.85059655000012,12.857163804000095],[74.81755618600008,12.861761786000116],[74.7702742850001,13.052435614000103],[74.78337649800008,13.08466217700014],[74.77409915500019,13.093410549000112],[74.76921634200002,13.099554755000097],[74.76295006600017,13.118801174000138],[74.76189212300002,13.143133856000103],[74.75977623800011,13.155218817000105],[74.75294030000012,13.16038646000011],[74.74878991000016,13.17084381700009],[74.73780358200011,13.221380927000098],[74.73340905000012,13.262762762000122],[74.71509850400017,13.331040757000125],[74.7072046230002,13.348374742000104],[74.69613691500015,13.36595286700013],[74.68946373800011,13.381577867000118],[74.69459069099999,13.393133856000148],[74.68751061300006,13.410345770000077],[74.683360222,13.44281647300015],[74.68091881600017,13.46824778900016],[74.6907658210001,13.439113674000112],[74.6936955090001,13.41526927300012],[74.70826256600006,13.413031317000147],[74.7019149100001,13.420355536000145],[74.70240319100012,13.442613023000192],[74.70142662900011,13.46137116100006],[74.67709394600016,13.52676015800013],[74.67798912900017,13.549139716000141],[74.67139733200005,13.603949286000073],[74.67351321700019,13.619086005000069],[74.66993248800011,13.62201569200009],[74.66797936300006,13.625148830000157],[74.66716556100006,13.628607489000144],[74.66667728000007,13.6327578800001],[74.67286217500006,13.628892320000174],[74.67709394600016,13.63031647300015],[74.67969811300006,13.636460679000137],[74.68091881600017,13.646958726000108],[74.68718509200014,13.646958726000108],[74.69678795700011,13.64044830900012],[74.70997155000005,13.640570380000083],[74.72380618600008,13.645575262000122],[74.735606316,13.653794664000129],[74.7205509770001,13.652289130000083],[74.71290123800006,13.65619538000007],[74.70142662900011,13.673732815000108],[74.68832441500015,13.685939846000096],[74.68897545700011,13.69086334800015],[74.70142662900011,13.694769598000136],[74.68775475400011,13.711818752000097],[74.67603600400011,13.701076565000093],[74.6604923840001,13.66006094000008],[74.64698326900012,13.692084052000068],[74.62305748800006,13.77415599200016],[74.61459394600008,13.835516669000171],[74.59595787900011,13.871486721000139],[74.58399498800011,13.903876044000143],[74.55079186300006,13.945502020000118],[74.536387566,13.96987539300008],[74.50473066500015,14.010239976000136],[74.495371941,14.030585028000132],[74.49480228000006,14.040716864000089],[74.4962671230002,14.061509507000082],[74.495371941,14.071519273000149],[74.49138431100002,14.080633856000148],[74.47917728000007,14.09564850500007],[74.47486412900017,14.105698960000138],[74.47315514400006,14.161688544000084],[74.46745853000007,14.181382554000123],[74.438731316,14.220119533000158],[74.42904707100016,14.240423895000076],[74.43336022200006,14.263373114000146],[74.44703209700012,14.253973700000131],[74.47103925900014,14.248683986000145],[74.4949650400001,14.24746328300013],[74.50896243600008,14.25031159100017],[74.50001061300006,14.257961330000112],[74.43637129000015,14.279689846000082],[74.42774498800006,14.283840236000117],[74.4153751960001,14.301092841000125],[74.41260826900006,14.344794012000106],[74.40357506600006,14.362982489000101],[74.39698326900006,14.372748114000144],[74.39437910200009,14.384914455000127],[74.39421634200014,14.410793361000131],[74.39185631600016,14.419012762000136],[74.38672936300006,14.424221096000124],[74.38160241000011,14.431219794000114],[74.37427819100004,14.46727122600008],[74.35385175900015,14.505072333000115],[74.3518986340001,14.530218817000105],[74.3670353520001,14.51235586100013],[74.37745201900012,14.484605210000069],[74.38884524800007,14.462713934000119],[74.4072371750001,14.461981512000177],[74.397634311,14.475409247000172],[74.40113366000011,14.479722398000176],[74.42774498800006,14.476263739000089],[74.38542728000007,14.524115302000112],[74.37240644600016,14.530218817000105],[74.37468509200002,14.533758856000176],[74.37712649800008,14.54100169500019],[74.3792423840001,14.544582424000085],[74.36833743600017,14.549709377000099],[74.3641056650001,14.549139716000127],[74.35873457100008,14.544582424000085],[74.35547936300004,14.557074286000088],[74.3558048840001,14.562404690000148],[74.35873457100008,14.571234442000103],[74.34294681100017,14.563666083000072],[74.34099368600002,14.551174221000151],[74.34294681100017,14.536851304000065],[74.33904056100019,14.523993231000134],[74.32488040500007,14.517238674000112],[74.30982506600006,14.519435940000092],[74.30054772200012,14.527411200000145],[74.3035587900001,14.537665106000176],[74.29590905000006,14.56500885600015],[74.29517662900011,14.587307033000085],[74.30738366000011,14.601874091000113],[74.33904056100019,14.605943101000078],[74.33904056100019,14.612779039000188],[74.32390384200019,14.61859772300015],[74.31226647200018,14.615464585000083],[74.30111738400015,14.6093203800001],[74.28711998800011,14.605943101000078],[74.27588951900012,14.6101748720001],[74.2680770190001,14.61994049700013],[74.2668563160001,14.631293036000116],[74.2762150400001,14.640082098000079],[74.26921634200008,14.658921617000118],[74.26319420700023,14.70160553600013],[74.2529403000001,14.718939520000118],[74.23406009200018,14.734076239000116],[74.22046959700006,14.738104559000178],[74.20875084700006,14.731838283000144],[74.19434655000006,14.715806382000054],[74.18067467500006,14.742173570000146],[74.17383873800011,14.749945380000142],[74.16944420700023,14.750881252000127],[74.15772545700023,14.748968817000074],[74.15333092500006,14.749945380000142],[74.14649498800006,14.7618675800001],[74.1458439460001,14.763617255000083],[74.11133873800006,14.78034088700012],[74.09644616000011,14.793361721000108],[74.09131920700011,14.811428127000125],[74.10914147200018,14.80263906500015],[74.11402428500017,14.80841705900012],[74.11426842500012,14.820949611000117],[74.11866295700011,14.831854559000092],[74.12875410200016,14.837469794000098],[74.14047285200016,14.838771877000097],[74.15154056100019,14.835109768000137],[74.15951582100016,14.82566966400013],[74.16968834700018,14.844468492000177],[74.17896569100006,14.856268622000144],[74.190684441,14.863104559000163],[74.20801842500012,14.866644598000134],[74.2181095710001,14.865383205000127],[74.22689863400015,14.862738348000148],[74.23308353000013,14.864569403000118],[74.2351994150001,14.876532294000155],[74.23072350400017,14.880113023000122],[74.22087649800002,14.882066148000163],[74.21119225400017,14.887355861000145],[74.20801842500012,14.90082428600013],[74.19752037900011,14.890855210000138],[74.1661889980002,14.876532294000155],[74.15951582100016,14.869777736000117],[74.15406334700012,14.862127997000087],[74.14087975400017,14.852687893000079],[74.12501061300011,14.845851955000157],[74.11182701900006,14.84617747600008],[74.10303795700011,14.856919664000186],[74.09115644600016,14.887600002000099],[74.08106530000006,14.893988348000121],[74.07715905000012,14.8983828800001],[74.0359806650001,14.921291408000101],[74.03028405000006,14.935207424000081],[74.03101647200018,14.949774481000105],[74.0359806650001,14.979641018000093],[74.03126061300011,14.995306708000072],[74.02019290500019,15.001776434000163],[74.00684655000006,15.004868882000068],[73.99577884200002,15.010687567000105],[73.9729923840001,15.056870835000128],[73.96436608200011,15.06464264500012],[73.91309655000006,15.078924872000115],[73.92253665500017,15.107855536000114],[73.92896569100017,15.120591539000173],[73.93702233200023,15.130438544000098],[73.958262566,15.143133856000148],[73.962168816,15.152044989000101],[73.95411217500006,15.168280341000141],[73.94727623800006,15.16083405200007],[73.89128665500013,15.34320709800015],[73.882578972,15.35529205900015],[73.86947675900015,15.35956452000008],[73.84839928500011,15.360093492000146],[73.82740319100012,15.365179755000069],[73.8103947270001,15.377590236000103],[73.78288821700019,15.407904364000087],[73.83936608200023,15.404038804000079],[73.84839928500011,15.40448639500008],[73.86011803500011,15.407863674000097],[73.8719181650001,15.401841539000175],[73.88493899800008,15.398016669000171],[73.89958743600019,15.407904364000087],[73.93336022200018,15.395412502000084],[73.94532311300011,15.38568756700012],[73.95411217500006,15.36627838700012],[73.95850670700017,15.367173570000103],[73.96168053500011,15.368231512000165],[73.96420332100016,15.370184637000108],[73.96778405000012,15.373765367000175],[73.95997155000012,15.380682684000176],[73.93702233200023,15.411322333000099],[73.9275822270001,15.417385158000085],[73.88591556100008,15.43520742400007],[73.8791610040001,15.435777085000138],[73.86508222700016,15.43431224200016],[73.85857181100019,15.43520742400007],[73.85417728000017,15.438299872000144],[73.84685306100017,15.44708893400012],[73.841563347,15.448879299000012],[73.80616295700011,15.452215887000037],[73.79639733200005,15.448879299000012],[73.79517662900017,15.46076080900015],[73.800466342,15.475002346000151],[73.80884850400011,15.488023179000052],[73.81755618600008,15.496649481000146],[73.82813561300011,15.50141022300015],[73.87224368600013,15.510931708000141],[73.8631291020001,15.516343492000187],[73.85954837300008,15.521144924000069],[73.86052493600002,15.52586497599999],[73.86597741000017,15.531398830000015],[73.86597741000017,15.537583726000078],[73.79639733200005,15.500392971000094],[73.78638756600017,15.492173570000164],[73.76628665500002,15.497259833000028],[73.751231316,15.51312897300012],[73.75611412900011,15.537583726000078],[73.74122155000006,15.559963283000101],[73.73682701900006,15.571722723000065],[73.73511803500017,15.586004950000174],[73.73707116000011,15.598537502000072],[73.74170983200023,15.604193427000055],[73.7465926440001,15.608384507],[73.74870853000019,15.616766669000143],[73.76042728000019,15.632025458000115],[73.78736412900017,15.641791083000058],[73.83814537900011,15.65428294500016],[73.83814537900011,15.66111888199999],[73.80103600400011,15.661851304000109],[73.78386478000007,15.659125067000145],[73.77662194100006,15.650864976000049],[73.76823978000017,15.646918036000088],[73.7332462900001,15.62506745000003],[73.72828209700006,15.619574286],[73.71827233200021,15.627142645000148],[73.70704186300006,15.643703518000038],[73.69792728000007,15.662827867000189],[73.69076582100008,15.693793036000114],[73.68588300900015,15.704291083],[73.68677819100006,15.713120835000055],[73.70085696700008,15.723211981000118],[73.68987063900012,15.724473374000025],[73.67237389400006,15.726507880000057],[73.65601647200006,15.730292059000178],[73.646250847,15.73688385600015],[73.64356530000006,15.749090887000037],[73.646250847,15.792141018000065],[73.63884524800002,15.817206122000142],[73.60466556100002,15.880845445000132],[73.58757571700019,15.902899481000032],[73.52898196700008,15.949164130000113],[73.5101017590001,15.967596747000144],[73.49097741000017,15.993475653000175],[73.48731530000012,16.014227606000148],[73.5159611340001,16.017401434000035],[73.5159611340001,16.024847723],[73.49927819100006,16.024318752000127],[73.48389733200011,16.028225002000127],[73.4725041020001,16.03636302300005],[73.46810957100016,16.048488674000126],[73.46485436300011,16.051662502000013],[73.45753014400012,16.05418528900013],[73.45036868600008,16.058905341000028],[73.44703209699999,16.06891510600012],[73.45297285200016,16.07416413],[73.45753014400012,16.07953522300015],[73.46070397200005,16.086330471000096],[73.46070397200005,16.14468008000007],[73.46338951900006,16.15957265800013],[73.47022545700017,16.16889069200009],[73.47925866000017,16.177232164000046],[73.48796634200008,16.189357815000122],[73.46501712300007,16.182277736000074],[73.45281009200019,16.16657135600012],[73.44800866000011,16.14329661700019],[73.44703209699999,16.11359284100017],[73.44019616000011,16.162014065000065],[73.44019616000011,16.202337958000143],[73.43523196700008,16.217840887000065],[73.43083743600008,16.21873607000005],[73.4259546230002,16.21515534100017],[73.41968834700006,16.216701565],[73.41358483200004,16.223944403000033],[73.41041100400011,16.230454820000134],[73.4060978520001,16.25079987200003],[73.37867272200006,16.332709052000055],[73.37777754000014,16.33795807500014],[73.37867272200006,16.35691966400016],[73.37566165500002,16.3602562520001],[73.35824629000015,16.36749909100011],[73.3593856130001,16.380601304],[73.36443118600002,16.38930898600016],[73.37305748800006,16.395656643],[73.3849389980002,16.401597398000106],[73.36744225400011,16.408636786],[73.35206139400012,16.4181175800001],[73.3413192070001,16.43207428600006],[73.33399498800006,16.468166408000016],[73.3191837900001,16.50975169500019],[73.31381269600016,16.518296617000104],[73.30583743600019,16.52265045800003],[73.30298912900017,16.533026434000092],[73.30372155000006,16.5555687520001],[73.30730228000007,16.563177802000112],[73.31495201900006,16.55760325700011],[73.32195071700008,16.548488674000126],[73.323496941,16.544989325000028],[73.34400475400017,16.5235863300001],[73.35572350400017,16.51943594000015],[73.37867272200006,16.518296617000104],[73.3694767590001,16.521470445000162],[73.36231530000012,16.525458075000145],[73.35621178500011,16.53074778900013],[73.35084069100017,16.53815338700012],[73.3543400400001,16.543158270000063],[73.365000847,16.55438873900006],[73.37126712300007,16.55927155200014],[73.35401451900006,16.559637762000065],[73.33643639400012,16.565619208000058],[73.32276451900005,16.57615794500013],[73.31723066500014,16.59027741100006],[73.31609134200002,16.598293361000103],[73.31462649800008,16.599432684000035],[73.31609134200002,16.600043036],[73.323496941,16.60643138200011],[73.3269962900001,16.60712311400006],[73.35824629000015,16.62067291900003],[73.35840905000012,16.603949286],[73.36304772200006,16.59682851800012],[73.36866295700017,16.599025783000126],[73.37126712300007,16.610174872000144],[73.36646569100017,16.628078518],[73.35425866000011,16.634670315000093],[73.33887780000006,16.631659247000172],[73.323496941,16.62067291900003],[73.31218509200002,16.644720770000063],[73.31055748800011,16.65143463700009],[73.31251061300004,16.658392645],[73.32146243600019,16.670843817000033],[73.323496941,16.6791039080001],[73.32162519600016,16.692450262000122],[73.3165796230002,16.699896552],[73.30030358200005,16.713202216000113],[73.28956139400006,16.740220445000045],[73.29525800900015,16.768052476000104],[73.304453972,16.79352448100012],[73.30372155000006,16.813137111000074],[73.29688561300006,16.80565013200011],[73.28663170700023,16.82086823100009],[73.27466881599999,16.848822333000115],[73.2693791020001,16.875637111000017],[73.27955162900017,16.887640692000147],[73.27906334700018,16.891913153000147],[73.2693791020001,16.92918528900013],[73.27051842500006,16.94501373900006],[73.27491295700017,16.958644924000012],[73.2893986340001,16.983832098000093],[73.26238040500007,16.996975002000127],[73.25456790500006,17.00674062700007],[73.26270592500006,17.018540757000054],[73.25123131600006,17.032171942],[73.25147545700005,17.042425848000118],[73.25896243600008,17.044094143000123],[73.2693791020001,17.03164297100001],[73.27735436300011,17.054673570000162],[73.27572675900015,17.07859935100005],[73.2674259770001,17.101385809000178],[73.25513756600006,17.120998440000122],[73.26197350400017,17.134955145],[73.26059004000015,17.1505394550001],[73.25513756600006,17.165187893],[73.2361759770001,17.199204820000134],[73.23601321700008,17.220607815000093],[73.218028191,17.253241278000033],[73.21485436300006,17.268744208000143],[73.2111922540001,17.27509186400009],[73.19312584700018,17.294012762000094],[73.1870223320001,17.305975653000033],[73.2034611340001,17.298732815],[73.21713300900008,17.286851304000052],[73.23121178500017,17.279282945000105],[73.24903405000006,17.284857489000117],[73.23471113400015,17.30231354400017],[73.2073673840001,17.353745835000083],[73.19597415500002,17.369370835000055],[73.17058353000019,17.389715887000065],[73.16651451900006,17.40216705900015],[73.165293816,17.413031317000147],[73.1770939460001,17.4266625020001],[73.18539472700016,17.44188060100008],[73.17335045700017,17.457424221000068],[73.18067467500006,17.47768789300009],[73.16553795700004,17.503404039000046],[73.1316837900001,17.53937409100011],[73.12598717500012,17.556545315000122],[73.12794030000005,17.564683335000055],[73.13640384200019,17.567206122000172],[73.1494246750001,17.567287502000156],[73.16342207100016,17.56948476800015],[73.20069420700023,17.58649323100012],[73.18588300900015,17.592515367000104],[73.154063347,17.595607815],[73.13917076900006,17.600775458],[73.128184441,17.61155833500011],[73.12134850400011,17.626410223000065],[73.12029056100002,17.64203522300015],[73.12614993600019,17.655422268000148],[73.11890709700006,17.6634789080001],[73.11052493600019,17.675726630000057],[73.10547936300006,17.688910223],[73.10816491000011,17.69977448100009],[73.1173608730002,17.711249091000056],[73.12322024800007,17.72333405200014],[73.12330162900011,17.735785223000065],[73.11500084700006,17.7481957050001],[73.10987389400006,17.75828685100005],[73.10661868600019,17.785549221000124],[73.101328972,17.79633209800015],[73.08545983200011,17.813666083000143],[73.0794376960001,17.824611721],[73.07374108200011,17.85712311400009],[73.06519616000017,17.878363348000065],[73.01856530000006,17.951727606000176],[73.01710045700011,17.972113348000065],[73.03541100400017,17.991848049000012],[73.0188908210001,17.99249909100014],[73.0086369150001,18.000230210000055],[73.00521894600016,18.01235586100016],[73.00879967500006,18.02594635600012],[73.01954186300006,18.035874742000104],[73.03248131600006,18.041083075000117],[73.04224694100012,18.04897695500007],[73.04346764400012,18.06696198100012],[73.03199303500017,18.06391022300012],[73.022715691,18.05768463700015],[73.01514733200005,18.04913971600014],[73.00879967500006,18.03900788],[73.00114993600019,18.052069403000147],[72.9873153000001,18.066555080000015],[72.98096764400005,18.08055247600008],[72.98316491000017,18.081732489],[72.98666425900015,18.087713934000117],[72.9881291020001,18.096014716000084],[72.98462975400011,18.104193427],[72.9783634770001,18.11188385600012],[72.97608483200011,18.118638414000074],[72.96729576900006,18.195990302000055],[72.954844597,18.21751536700016],[72.92693118600019,18.22394440300009],[72.93523196700008,18.24477773600016],[72.93995201900006,18.251288153000147],[72.93482506600006,18.257879950000028],[72.93327884200014,18.266587632000107],[72.93506920700011,18.27631256700006],[72.93995201900006,18.28603750200001],[72.95313561300011,18.281317450000117],[72.95753014400012,18.274603583000058],[72.95923912900011,18.26585521],[72.96452884200019,18.254950262000122],[72.97266686300011,18.244696356000176],[72.97673587300008,18.242580471000068],[72.9822697270001,18.24420807500009],[72.9951278000001,18.245062567],[73.01246178500011,18.243150132000135],[73.03239993600008,18.23786041900017],[73.05095462300008,18.227484442000062],[73.06348717500006,18.21035390800013],[73.04761803500017,18.201157945000077],[73.04761803500017,18.188788153000033],[73.0574650400001,18.18561432500014],[73.071543816,18.20408763199999],[73.07398522200006,18.22418854400003],[73.06527754000015,18.25755442900011],[73.071543816,18.27301666900003],[73.0569767590001,18.280951239],[73.04297936300006,18.282375393000066],[73.01246178500011,18.279201565],[72.99488366000017,18.283596096000096],[72.9773869150001,18.29507070500013],[72.96802819100017,18.31061432500003],[72.9747827480002,18.327582098],[72.958750847,18.328111070000162],[72.95085696700008,18.332953192000062],[72.93360436300006,18.354925848000065],[72.92790774800008,18.35757070500007],[72.92253665500019,18.356634833000086],[72.9173283210001,18.35639069200012],[72.91260826900012,18.361151434000035],[72.90984134200002,18.368068752000127],[72.91016686300004,18.372503973],[72.91163170700023,18.377346096000096],[72.91260826900012,18.38564687700007],[72.91016686300004,18.39923737200003],[72.90430748800011,18.40851471600017],[72.89722741000017,18.417303778000033],[72.8914494150001,18.429388739000146],[72.88965905000012,18.44131094000009],[72.8914494150001,18.480902411000116],[72.89576256600012,18.502997137000094],[72.90723717500006,18.52358633000013],[72.9246525400001,18.53563060100005],[72.94678795700011,18.532416083],[72.96111087300008,18.517726955000015],[72.99024498800006,18.46995677300005],[73.00879967500006,18.450506903000147],[73.01498457100008,18.46995677300005],[73.00440514400006,18.48004791900003],[72.98878014400005,18.489935614000117],[72.98096764400005,18.50885651200015],[72.9778751960001,18.524115302000112],[72.97038821700002,18.541001695000105],[72.96029707100014,18.55467357000005],[72.95020592500012,18.560370184000035],[72.921153191,18.55487702],[72.91016686300004,18.558986721000153],[72.90577233200005,18.577134507000054],[72.88217207100016,18.635484117000047],[72.86451256600006,18.64891185100005],[72.85531660200016,18.68113841400016],[72.8517358730002,18.719671942000062],[72.85238691500015,18.769924221000124],[72.85694420700004,18.78620026200015],[72.8655705090001,18.79938385600012],[72.87916100400011,18.80735911700016],[72.8870548840001,18.807033596000153],[72.90202884200008,18.799505927],[72.91260826900012,18.799994208000083],[72.92693118600019,18.826646226000108],[72.9389754570001,18.816961981000148],[72.9747827480002,18.77948639500012],[72.96631920700005,18.761419989],[72.9695744150001,18.746975002000127],[72.98064212300008,18.73676178600003],[72.9951278000001,18.731024481000034],[72.98804772200006,18.753851630000057],[72.99170983200011,18.779364325000145],[73.0024520190001,18.80145905200014],[73.01628665500019,18.813625393000123],[72.98796634200008,18.824937242000104],[72.9812931650001,18.832709052000027],[72.9747827480002,18.848334052],[72.97608483200011,18.8543968770001],[72.97974694100016,18.863348700000113],[72.981700066,18.871486721000124],[72.977793816,18.874986070000105],[72.97217858200011,18.87425364799999],[72.96697024800014,18.87213776200018],[72.9631453790001,18.86896393400012],[72.96168053500011,18.865139065],[72.94613691500015,18.85830312700007],[72.91627037900017,18.870510158000158],[72.89682050900014,18.894476630000113],[72.91260826900012,18.923488674000012],[72.9280705090001,18.911363023000106],[72.93458092500012,18.920803127000013],[72.936778191,18.947414455000157],[72.9492293630001,18.951483466000028],[72.96338951900005,18.947984117000132],[72.97722415500007,18.948431708000115],[72.98829186300006,18.96442291900003],[72.95362389400012,18.96442291900003],[72.95362389400012,18.971258856000034],[72.96827233200011,18.972601630000113],[72.99203535200009,18.98248932500006],[73.04216556100013,18.99575429900007],[73.04664147200018,18.99518463700009],[73.05681399800002,19.015326239000146],[73.03980553500017,19.01752350500014],[73.01189212300014,19.009426174000012],[72.98829186300006,18.99860260600012],[72.98357181100008,19.010443427000084],[72.98780358200011,19.036932684000035],[72.98096764400005,19.046372789000074],[72.99187259200008,19.06720612200003],[72.9856876960001,19.07428620000009],[72.97380618600002,19.078558661000027],[72.96729576900006,19.09100983300011],[72.9747827480002,19.163072007000054],[72.96729576900006,19.163072007000054],[72.95004316500014,19.12791575699999],[72.93555748800011,19.11505768400015],[72.93392988400015,19.080308335000026],[72.92693118600019,19.066839911000116],[72.94336998800006,19.055121161000116],[72.93425540500019,19.034084377000013],[72.8914494150001,18.991766669000086],[72.8914494150001,19.001369533000073],[72.88526451900012,19.025864976000108],[72.86931399800014,19.011419989000142],[72.85108483200023,18.987127997000172],[72.83627363400015,18.959133205000125],[72.82764733200005,18.918361721000096],[72.82129967500012,18.903306382000082],[72.81251061300006,18.897447007000107],[72.80274498800011,18.909816799000065],[72.80201256600012,18.92047760600009],[72.805349155,18.930975653000147],[72.80738366000016,18.94281647300012],[72.80274498800011,18.95758698100009],[72.79590905000012,18.95758698100009],[72.79232832100016,18.95123932500017],[72.78825931100008,18.946519273000078],[72.77540123800006,18.936509507],[72.7703556650001,18.94818756700009],[72.77605228000017,18.959702867000104],[72.79590905000012,18.984930731000176],[72.80241946700019,18.999660549000065],[72.80494225400011,19.011053778000033],[72.80274498800011,19.040187893000095],[72.81299889400006,19.035549221000068],[72.81706790500013,19.03270091400013],[72.82178795700011,19.041978257000082],[72.82422936300006,19.053534247000087],[72.82129967500012,19.063177802000084],[72.80958092500006,19.066839911000116],[72.82195071700006,19.097113348000033],[72.8230900400001,19.10846588700009],[72.82105553500017,19.11920807500009],[72.81177819100006,19.137355861000017],[72.80958092500006,19.146307684000035],[72.81218509200002,19.153713283000016],[72.82243899800008,19.163763739],[72.8230900400001,19.169256903000033],[72.81804446700019,19.175360419000114],[72.81120853000007,19.17552317900008],[72.80518639400006,19.171820380000113],[72.79957116000017,19.156887111000074],[72.79216556100008,19.150458075000174],[72.78492272200005,19.15037669500019],[72.78158613400008,19.159654039000046],[72.7833764980002,19.168646552000055],[72.80250084700016,19.211615302000112],[72.81983483200005,19.24062734600001],[72.83008873800011,19.25242747600008],[72.81511478000007,19.253648179],[72.80209394600008,19.237860419000143],[72.78939863400008,19.21735260600009],[72.77540123800006,19.20465729400003],[72.77222741000017,19.265122789000046],[72.7756453790001,19.299017645],[72.78541100400011,19.31391022300015],[72.83936608200023,19.319077867000047],[72.86703535200016,19.316799221000068],[72.88550866000017,19.296047268000066],[72.90056399800018,19.290757554000024],[72.93034915500017,19.286566473000065],[72.94654381600006,19.289862372000115],[72.95972741000011,19.294826565000065],[72.97266686300011,19.293687242000132],[72.98829186300006,19.279120184000092],[73.01050866000011,19.22431061400009],[73.02662194099999,19.205511786000116],[73.0496525400001,19.217718817],[73.03003991000011,19.227728583],[73.02800540500019,19.244086005],[73.0291447270001,19.25934479400017],[73.01929772199999,19.266058661000116],[73.01246178500011,19.27244700700014],[73.00180097700016,19.286566473000065],[72.98780358200011,19.30068594],[72.97095787900011,19.30703359600012],[72.91675866000011,19.303371486000074],[72.89893639400006,19.30703359600012],[72.88355553500011,19.316392320000162],[72.85531660200016,19.339504299000037],[72.83692467500012,19.348049221000124],[72.81853274800008,19.330267645000063],[72.80209394600008,19.331935940000065],[72.78760826900012,19.345200914000102],[72.76343834699999,19.38019440300009],[72.75977623800006,19.38898346600017],[72.74822024800002,19.44424062700007],[72.74683678500017,19.467962958],[72.7544051440001,19.48175690300009],[72.76921634200019,19.490464585],[72.87916100400011,19.532375393000095],[72.85670006600006,19.541327216000028],[72.83594811300006,19.536688544000086],[72.81592858200005,19.528509833000086],[72.79590905000012,19.526800848000065],[72.78785241000017,19.53025950700008],[72.78126061300011,19.536566473000036],[72.77702884200008,19.54555898600013],[72.77540123800006,19.557196356000034],[72.77068118600008,19.56614817900008],[72.76002037900011,19.573065497000172],[72.74195397200016,19.58079661700016],[72.7345483730002,19.58079661700016],[72.73829186300006,19.570257880000113],[72.74073326900005,19.56073639500012],[72.73975670700011,19.552679755],[72.7345483730002,19.546616929],[72.74927819100012,19.534247137000147],[72.75489342500012,19.527044989000117],[72.75562584700006,19.519354559000092],[72.74919681100013,19.51260000200007],[72.74154707100008,19.516017971000068],[72.7225041020001,19.536281643000095],[72.7107853520001,19.587591864],[72.71802819100006,19.60667552299999],[72.70964603000007,19.64996979400017],[72.68669681100019,19.724798895000063],[72.69410241000017,19.720200914000102],[72.6999617850001,19.714178778000118],[72.70460045700023,19.70652903900016],[72.70777428500011,19.69745514500009],[72.72641035200009,19.705796617000047],[72.72641035200009,19.715236721000064],[72.7185978520001,19.72793203300013],[72.71404056100008,19.745835679],[72.71729576900012,19.751532294000167],[72.72437584700005,19.7526716170001],[72.73129316500015,19.754584052000055],[72.7345483730002,19.762640692],[72.73406009200014,19.77191803600006],[72.7327580090001,19.779730536000145],[72.72828209700006,19.793646552000112],[72.69011478000017,19.748968817000062],[72.6779077480002,19.746568101000108],[72.6757918630001,19.76414622600005],[72.67986087300008,19.800482489000146],[72.67286217500006,19.812811591000084],[72.65007571700008,19.84198639500012],[72.64918053500017,19.851996161000116],[72.65919030000006,19.86644114799999],[72.66423587300008,19.88157786700016],[72.66618899800002,19.916571356000176],[72.66277103000002,19.941799221000124],[72.66521243600008,19.95294830900015],[72.67644290500007,19.957505601000022],[72.68433678500011,19.964016018],[72.69450931100008,19.979315497000144],[72.70337975400011,19.99762604400003],[72.70777428500011,20.012762762000122],[72.70777428500011,20.071112372000115],[72.7102970710001,20.08291250200007],[72.72828209700006,20.12946198100009],[72.7345483730002,20.173529364],[72.7376408210001,20.184271552000112],[72.7522892590001,20.203762111000017],[72.75562584700006,20.21515534100017],[72.75359134200018,20.218207098000065],[72.74903405000006,20.218329169000057],[72.74439537900011,20.219387111000103],[72.74195397200016,20.225043036],[72.74195397200016,20.24555084800012],[72.74301191500015,20.247748114000117],[72.74822024800002,20.28034088700009],[72.75660241000011,20.29596588700015],[72.76783287900011,20.311957098000065],[72.77751712300008,20.330064195000162],[72.78158613400008,20.352280992000047],[72.78679446700014,20.352240302000055],[72.7981876960001,20.359320380000113],[72.81031334700018,20.368841864],[72.81706790500013,20.375921942000062],[72.82081139400006,20.386135158000016],[72.8230900400001,20.416815497000115],[72.82943769600016,20.437933661000116],[72.8400171230002,20.45872630400011],[72.87916100400011,20.51243724200016],[72.88648522200006,20.53156159100014],[72.89039147200006,20.552679755000057],[72.8914494150001,20.57514069200006],[72.89063561300006,20.587062893],[72.88624108200011,20.60846588700015],[72.88526451900012,20.61920807500014],[72.88843834700018,20.62848541900003],[72.90259850400011,20.641913153000118],[72.90577233200005,20.653306382000082],[72.90943444100006,20.69867584800006],[72.90796959700018,20.71832916900003],[72.89893639400006,20.73216380400011],[72.9402775400001,20.759426174],[72.94678795700011,20.759466864],[72.94499759200019,20.77000560100008],[72.93637129000008,20.776271877000013],[72.92644290500019,20.78099192900011],[72.91944420700011,20.787420966000052],[72.91911868600019,20.795599677000055],[72.92286217500012,20.802679755000025],[72.92497806100002,20.810614325000174],[72.91944420700011,20.82151927300005],[72.90023847700016,20.799139716000028],[72.88575280000012,20.80711497599999],[72.880137566,20.829901434000092],[72.88843834700018,20.85195547100001],[72.90040123800011,20.86810944200006],[72.89380944100004,20.87006256700003],[72.8811955090001,20.865668036000116],[72.87533613400008,20.862494208000058],[72.83692467500012,20.835842190000122],[72.84587649800002,20.85179271000014],[72.8542586600001,20.88715241100006],[72.86491946700002,20.897284247000115],[72.83668053500017,20.929917710000055],[72.85645592500012,20.94798411700016],[72.88648522200006,20.96210358300011],[72.88843834700018,20.982611395000063],[72.87598717500006,20.981350002000152],[72.85377037900011,20.97492096600014],[72.83269290500019,20.972357489000142],[72.8230900400001,20.982611395000063],[72.82129967500012,20.991603908000073],[72.81609134200002,20.999009507000082],[72.808360222,21.00397370000003],[72.79932701900012,21.00584544500019],[72.78760826900012,21.006903387000033],[72.78199303500011,21.010158596000096],[72.77198326900006,21.023871161000116],[72.76685631600006,21.038560289000102],[72.78394616000017,21.04043203300007],[72.8230900400001,21.033840236000017],[72.84498131600006,21.03831614799999],[72.84986412900011,21.048000393000123],[72.81592858200005,21.121486721000124],[72.80958092500006,21.13003164300015],[72.79957116000017,21.128810940000122],[72.75562584700006,21.10956452000009],[72.7527775400001,21.113714911000116],[72.74634850400017,21.118353583000058],[72.74195397200016,21.12323639500012],[72.7376408210001,21.117377020000088],[72.73560631600017,21.110744533000013],[72.7345483730002,21.09247467700014],[72.73015384200002,21.087836005000113],[72.70036868600013,21.074774481000034],[72.70582116000017,21.106350002000127],[72.72055097700016,21.12970612200003],[72.72868899800008,21.14809804900007],[72.71404056100008,21.164129950000145],[72.70655358200011,21.157700914000046],[72.68669681100019,21.15814850500014],[72.67644290500007,21.15363190300009],[72.6726994150001,21.145738023000106],[72.67188561300011,21.134426174000126],[72.67302493600008,21.112616278000175],[72.67123457100016,21.09979889500015],[72.6663517590001,21.097398179000024],[72.65870201900006,21.097601630000057],[72.63786868600019,21.085394598000093],[72.62964928500017,21.08795807500009],[72.61500084700018,21.105861721000124],[72.61548912900017,21.119818427000112],[72.63038170700011,21.13597239799999],[72.6935327480002,21.178452867000047],[72.7117619150001,21.19403717700014],[72.72103925900015,21.19879791900003],[72.7345483730002,21.198919989],[72.72364342500012,21.20913320500013],[72.68767337300008,21.22044505400011],[72.67986087300008,21.22898997600005],[72.67318769600008,21.239081122000115],[72.65935306100019,21.24469635600012],[72.64698326900005,21.25360748900006],[72.64576256600004,21.27338288000008],[72.62517337300014,21.25934479400003],[72.61841881600017,21.25291575700011],[72.60613040500002,21.26658763200005],[72.60206139400006,21.277655341000084],[72.59791100400011,21.307562567000062],[72.58863366000017,21.331976630000113],[72.5867619150001,21.341213283000073],[72.59050540500007,21.348537502000067],[72.60320071700019,21.352728583000115],[72.6385197270001,21.357163804],[72.64576256600004,21.362779039000188],[72.63868248800011,21.371242580000125],[72.62338300900014,21.37026601800015],[72.5940861340001,21.362779039000188],[72.57886803500011,21.367010809000092],[72.56763756600006,21.37641022300012],[72.56462649800002,21.38580963700015],[72.57374108200023,21.390082098000065],[72.6351017590001,21.40745677300005],[72.67286217500006,21.428127346000064],[72.67644290500007,21.43162669500005],[72.72828209700006,21.465806382000054],[72.7470809250001,21.452866929000137],[72.75261478000002,21.463568427000055],[72.74854576900006,21.479641018000123],[72.73829186300006,21.482855536],[72.68327884200008,21.465806382000054],[72.66504967500006,21.457220770000117],[72.61247806100008,21.421861070000105],[72.58366946700002,21.41742584800012],[72.5898543630001,21.432766018000095],[72.61963951900012,21.48737213700015],[72.6351017590001,21.49933502800009],[72.65105228,21.507025458],[72.69011478000017,21.540676174000012],[72.7039494150001,21.54840729400003],[72.72681725400011,21.553168036000113],[72.75114993600006,21.56513092700005],[72.77320397200006,21.580511786],[72.78907311300011,21.595526434000035],[72.81039472700016,21.63507721600017],[72.8230900400001,21.643947658000016],[72.83399498800011,21.64447663],[72.85873457100016,21.637600002000095],[72.87159264400012,21.636542059000035],[72.88965905000012,21.64052969],[72.93555748800011,21.65835195500007],[72.96534264400012,21.67877838700015],[73.02247155000006,21.698553778000175],[73.08497155000012,21.729681708000083],[73.10816491000011,21.73334381700012],[73.116953972,21.73725006700012],[73.12696373800011,21.746771552000112],[73.132009311,21.75779857000016],[73.12614993600019,21.76683177299999],[73.11882571700008,21.764715887000147],[73.08399498800006,21.746405341000113],[73.04664147200018,21.73334381700012],[73.04102623800006,21.73016998900006],[73.02247155000006,21.716009833000143],[73.01246178500011,21.712836005000085],[72.99146569100006,21.708441473],[72.95020592500012,21.68915436400006],[72.92693118600019,21.684963283000044],[72.88282311300011,21.69301992400007],[72.85816491000011,21.694973049000012],[72.84034264400012,21.688381252000127],[72.8191837900001,21.675034898000106],[72.79810631600012,21.673529364000057],[72.75562584700006,21.684963283000044],[72.7332462900001,21.68748607000005],[72.67644290500007,21.678127346],[72.65300540500019,21.680568752000127],[72.63493899800007,21.684637762000094],[72.6160587900001,21.685451565],[72.57048587300008,21.670477606000176],[72.55030358200023,21.666693427000055],[72.53467858200005,21.672919012000122],[72.52849368600019,21.69513580900015],[72.53207441500015,21.713853257000135],[72.5501408210001,21.751939195000134],[72.55632571700006,21.774318752000124],[72.56275475400017,21.839422919000086],[72.56690514400012,21.84935130399999],[72.58545983200011,21.85887278900016],[72.59880618600002,21.881008205000157],[72.61841881600017,21.925116278000147],[72.63404381600017,21.937486070000162],[72.65211022200018,21.941066799000154],[72.69011478000017,21.93878815300009],[72.70232181100008,21.94757721600014],[72.70679772200006,21.966131903000147],[72.71404056100008,21.982977606000144],[72.7345483730002,21.98655833500011],[72.7345483730002,21.994045315],[72.72641035200009,21.995754299000012],[72.71989993600019,21.996323960000083],[72.7137150400001,21.995794989],[72.70777428500011,21.994045315],[72.70093834700018,21.988918361000074],[72.69752037900017,21.98212311400006],[72.69564863400008,21.97589752800009],[72.6935327480002,21.972316799000122],[72.62305748800011,21.966620184000035],[72.61158287900017,21.955511786000116],[72.60271243600012,21.943589585000083],[72.58179772200006,21.928168036000145],[72.55860436300011,21.915269273000135],[72.54273522200012,21.910834052000055],[72.53337649800008,21.920314846000068],[72.50709069100006,21.962307033000126],[72.50171959700018,21.976019598000065],[72.50456790500002,21.99420807500014],[72.51775149800008,22.03213125200007],[72.52222741000011,22.054266669000143],[72.5214949880001,22.06614817900011],[72.51954186300006,22.07754140800007],[72.51954186300006,22.088446356000148],[72.53003991000011,22.10748932500006],[72.53337649800008,22.118557033000073],[72.53589928500017,22.14052969],[72.542165561,22.156724351000047],[72.55738366000011,22.176662502000124],[72.57545006600006,22.194525458],[72.59050540500007,22.205023505000085],[72.6141056650001,22.21173737200003],[72.63445071700008,22.21039459800012],[72.65235436300006,22.202337958],[72.66960696700002,22.188910223],[72.68189537900011,22.181586005],[72.69166100400011,22.18195221600011],[72.69971764400006,22.184963283000016],[72.70777428500011,22.18577708500011],[72.71941165500013,22.182196356000148],[72.72925866000011,22.17743561400006],[72.74822024800002,22.16404857000005],[72.790212436,22.217230536000145],[72.812266472,22.234116929000137],[72.84742272200018,22.24042389500009],[72.8650822270001,22.233465887000094],[72.88111412900011,22.220404364000032],[72.89722741000017,22.21303945500001],[72.91602623800011,22.223089911],[72.92212975400011,22.23651764500009],[72.92269941500015,22.254584052],[72.91749108200004,22.271429755],[72.90577233200005,22.2813988300001],[72.89966881600012,22.269191799000037],[72.88607832100016,22.262396552],[72.8694767590001,22.262396552],[72.8542586600001,22.27081940300006],[72.83863366000011,22.276556708000115],[72.81820722700016,22.27342357000005],[72.79867597700016,22.265570380000057],[72.78541100400011,22.25690338700015],[72.75660241000011,22.24371979400003],[72.72657311300006,22.248928127000013],[72.65943444100017,22.273911851000136],[72.64649498800006,22.273911851000136],[72.63526451900006,22.271633205000153],[72.62501061300006,22.271389065],[72.60661868600013,22.283840236000128],[72.59636478000017,22.28693268400012],[72.57374108200023,22.288234768],[72.5530705090001,22.28245677300005],[72.52116946700019,22.253119208000143],[72.50171959700018,22.24042389500009],[72.47901451900006,22.233384507000107],[72.4661564460001,22.2325707050001],[72.45704186300004,22.23672109600012],[72.45484459700006,22.245306708000058],[72.46697024800002,22.255845445000105],[72.46387780000006,22.263983466000028],[72.44874108200023,22.266831773000078],[72.43230228000007,22.255845445000105],[72.41374759200008,22.24632396000011],[72.391856316,22.25348541900014],[72.38624108200011,22.266506252000127],[72.38103274800014,22.289943752000013],[72.38038170700005,22.312404690000122],[72.38819420700005,22.32233307500003],[72.40495853000019,22.33295319200006],[72.40805097700016,22.35346100500011],[72.39722741000016,22.366766669000057],[72.37134850400017,22.35590241100006],[72.36101321700008,22.343451239000117],[72.34961998800011,22.324367580000157],[72.34050540500019,22.30320872600005],[72.33659915500019,22.284816799000012],[72.32829837300014,22.26072825699999],[72.30909264400006,22.257228908000098],[72.28834069100017,22.261297919000143],[72.27515709699999,22.260321356000176],[72.2631942070001,22.276353257000054],[72.26596113400015,22.28733958500011],[72.26465905000006,22.295233466000084],[72.24040774800008,22.30190664300015],[72.22339928500011,22.30316803600006],[72.20850670700023,22.300441799000097],[72.20093834700012,22.29144928600006],[72.20630944100006,22.273911851000136],[72.16179446700008,22.280951239],[72.1487736340001,22.277899481000087],[72.16602623800004,22.260321356000176],[72.19068444100017,22.251288153000147],[72.20923912900017,22.25942617400007],[72.24040774800008,22.288234768],[72.24610436300006,22.27558014500015],[72.24317467500012,22.26593659100017],[72.23731530000006,22.256293036],[72.234141472,22.243557033000158],[72.23910566500015,22.238918361000046],[72.26832116000011,22.22675202000015],[72.30648847700016,22.229559637000094],[72.3172306650001,22.18488190300003],[72.30762780000012,22.079006252000127],[72.29802493600002,22.06167226800015],[72.29566491000017,22.051174221000068],[72.29175866000017,22.053412177000055],[72.28345787900011,22.043605861000046],[72.27613366000011,22.03164297100001],[72.27515709699999,22.02753327000015],[72.25766035200016,22.012152411],[72.2493595710001,22.008286851000022],[72.23731530000006,22.007025458],[72.22095787900017,22.01097239799999],[72.21648196700019,22.007798570000105],[72.21436608200011,21.994045315],[72.20630944100006,21.994045315],[72.19988040500007,22.006984768],[72.1951603520001,22.003648179000077],[72.19117272200006,21.993638414000188],[72.18637129000015,21.98655833500011],[72.1824650400001,21.982733466000028],[72.17310631600006,21.97565338700015],[72.1634220710001,21.97321198100012],[72.15919030000006,21.9831403670001],[72.15170332100008,21.993882554000137],[72.13428795700023,22.004584052000055],[72.11378014400006,22.01056549700017],[72.09701582100016,22.007025458],[72.1193139980002,21.993638414000188],[72.12810306100008,21.98354726800012],[72.1248478520001,21.972316799000122],[72.11491946700019,21.969387111000017],[72.0765080090001,21.979722398000106],[72.08253014400012,21.97337474200016],[72.10450280000012,21.959214585000055],[72.10482832100014,21.95148346600014],[72.10206139400006,21.945054429000137],[72.09620201900006,21.943019924000012],[72.08741295700004,21.948431708000058],[72.07325280000006,21.95449453300013],[72.05518639400012,21.953517971000068],[72.0384220710001,21.94757721600014],[72.02865644600016,21.93878815300009],[72.08757571700002,21.91966380400011],[72.10450280000012,21.91766998900006],[72.14210045700011,21.924994208000086],[72.15650475400017,21.92584870000017],[72.14535566500014,21.91766998900006],[72.14535566500014,21.910834052000055],[72.15919030000006,21.904608466000084],[72.15235436300006,21.897853908000158],[72.1697697270001,21.89044830900015],[72.1673283210001,21.87913646],[72.16000410200016,21.865912177000055],[72.16260826900006,21.852850653000175],[72.1694442070001,21.84137604400003],[72.16187584700006,21.839178778000033],[72.13086998800011,21.84625885600009],[72.12330162900017,21.853745835000055],[72.11133873800006,21.869859117000047],[72.09848066500008,21.88051992400007],[72.07764733200023,21.89443594000015],[72.05795332100008,21.89874909100014],[72.04932701900006,21.880438544000086],[72.05290774800008,21.876532294000086],[72.06153405000006,21.87311432500009],[72.07178795700011,21.870794989000117],[72.08033287900011,21.869859117000047],[72.0864363940001,21.86562734600001],[72.10450280000012,21.835760809000032],[72.0867619150001,21.830267645],[72.06283613400015,21.834377346000153],[72.00416100400011,21.85773346600014],[71.997325066,21.854925848],[71.99463951900006,21.839504299000065],[71.99415123800006,21.81220123900009],[71.99610436300011,21.799505927000112],[72.00147545700017,21.787909247000083],[72.00538170700017,21.792954820000134],[72.00961347700016,21.795599677000112],[72.02182050900015,21.80097077000009],[72.02149498800011,21.794419664000184],[72.02230879000015,21.78091054900004],[72.02182050900015,21.774318752000124],[72.05494225400017,21.785589911000145],[72.07390384200019,21.788723049000012],[72.08741295700004,21.78449127800009],[72.10320071700014,21.775213934000035],[72.11744225400011,21.776597398000106],[72.16602623800004,21.79393138200011],[72.17107181100019,21.790961005],[72.17269941500015,21.777736721000153],[72.17701256600006,21.76666901200012],[72.19581139400006,21.75779857000016],[72.2000431650001,21.750067450000145],[72.20240319100006,21.748114325000113],[72.21436608200011,21.712836005000085],[72.2190047540001,21.706000067000062],[72.22380618600019,21.700588283000016],[72.230235222,21.69599030200008],[72.24040774800008,21.69171784100014],[72.2518009770001,21.690904039000046],[72.26303144600008,21.69232819200012],[72.27173912900011,21.690904039000046],[72.27833092500006,21.67194245000003],[72.28541100400017,21.66502513200014],[72.29249108200011,21.659491278000033],[72.29566491000017,21.65387604400003],[72.29664147200005,21.64215729400003],[72.29851321700014,21.633978583000115],[72.29883873800006,21.62628815300009],[72.29566491000017,21.616034247000172],[72.29200280000012,21.61176178600006],[72.2791447270001,21.600531317000062],[72.27515709699999,21.595526434000035],[72.24219811300006,21.480780341000084],[72.21989993600019,21.444728908000016],[72.16684004000008,21.3920759140001],[72.15919030000006,21.373277085000055],[72.151621941,21.360174872000083],[72.11605879000015,21.322739976000047],[72.10450280000012,21.315008856000034],[72.11003665500002,21.304836330000096],[72.1115014980002,21.296087958000115],[72.10775800900015,21.28998444200012],[72.09701582100016,21.287665106000148],[72.10254967500006,21.27440013200014],[72.09937584700012,21.264960028000033],[72.09359785200016,21.258205471000096],[72.09083092500006,21.25291575700011],[72.09351647200006,21.24355703300007],[72.10450280000012,21.22215403900013],[72.10474694100006,21.205064195000162],[72.09083092500006,21.19147370000003],[72.0848087900001,21.188706773000078],[72.07545006600006,21.18569570500007],[72.06666100400017,21.18134186400009],[72.06283613400015,21.174709377000013],[72.05502363400015,21.168361721000068],[71.99073326900006,21.13637929900007],[71.97242272200016,21.13226959800012],[71.92628014400006,21.13003164300015],[71.80616295700015,21.06207916900017],[71.78858483200023,21.04751211100013],[71.76295006600006,21.03229401200015],[71.74366295700023,21.027573960000055],[71.73023522200006,21.030707098000118],[71.71762129000015,21.03204987200003],[71.68336022200018,21.011460679],[71.6399845710001,20.99681224200016],[71.58350670700011,20.958238023000106],[71.54957116000011,20.95123932500003],[71.55730228000007,20.966009833000026],[71.5623478520001,20.972967841000084],[71.56934655000006,20.97919342700005],[71.5511173840001,20.973578192000062],[71.53679446700019,20.964300848],[71.49341881600006,20.92914459800012],[71.48438561300023,20.917141018000038],[71.48072350400017,20.900376695000187],[71.46225019600016,20.885321356000176],[71.378103061,20.859442450000174],[71.31861412900011,20.849310614000117],[71.14063561300006,20.765692450000145],[71.11695397200005,20.76691315300009],[71.11011803500011,20.759466864],[71.09546959700006,20.76373932500003],[71.08326256600006,20.75653717699999],[71.0726017590001,20.745672919000082],[71.0623478520001,20.738959052000055],[71.04444420700023,20.740545966000084],[71.02418053500011,20.744533596000068],[71.00766035200016,20.74160390800013],[71.00595136800004,20.73655833500011],[71.00082441500015,20.722154039000046],[70.98243248800011,20.710150458000115],[70.9729923840001,20.70962148600013],[70.8401798840001,20.701890367000132],[70.81967207100016,20.70294830900009],[70.80160566500015,20.70905182500017],[70.78516686300021,20.722154039000046],[70.77458743600019,20.72736237200003],[70.76319420700023,20.724554755],[70.75163821700019,20.719631252000127],[70.74024498800023,20.718491929],[70.7308048840001,20.723211981000087],[70.6985783210001,20.746405341000024],[70.54151451900012,20.807847398000106],[70.484141472,20.843939520000063],[70.46306399800007,20.848863023000106],[70.45142662900017,20.855902411],[70.41700280000006,20.890448309000092],[70.39877363400014,20.903509833000086],[70.33668053500011,20.927069403000033],[70.29997806100002,20.95856354400003],[70.26351972700016,20.98041413000008],[70.15219160200009,21.078517971000068],[70.05762780000012,21.149237372000115],[69.97120201900012,21.25413646000011],[69.9661564460001,21.26341380399999],[69.958262566,21.273342190000093],[69.91163170700011,21.315008856000034],[69.844981316,21.38959381700009],[69.81470787900011,21.433661200000085],[69.80860436300023,21.465806382000054],[69.788747592,21.46930573100003],[69.77149498800023,21.478420315000122],[69.75635826900012,21.49042389500015],[69.62973066500015,21.616034247000172],[69.56820722700016,21.650132554],[69.55274498800023,21.665187893],[69.51978600400017,21.704779364000146],[69.4993595710001,21.72020091400016],[69.47852623800023,21.752630927000055],[69.44629967500006,21.766302802],[69.42741946700008,21.78123607000005],[69.39771569100006,21.815252997000172],[69.39177493600019,21.832180080000157],[69.39519290500013,21.861314195000105],[69.39087975400011,21.876695054000052],[69.36784915500007,21.856105861000017],[69.35547936300011,21.853176174000012],[69.33619225400017,21.86245351800015],[69.243907097,21.945949611000046],[69.21225019600016,21.967474677000055],[69.19841556100008,21.979722398000106],[69.15064537900011,22.041205145000088],[69.11931399800007,22.062079169000143],[69.10303795700023,22.07636139500015],[69.09205162900017,22.099595445000162],[69.0481876960001,22.15790436400009],[69.01254316500015,22.185614325000145],[68.99415123800023,22.20392487200003],[68.9804793630001,22.23554108300003],[68.95329837300008,22.27602773600013],[68.94459069100017,22.295070705000125],[68.94402103000002,22.31826406500006],[68.95142662900011,22.334865627000042],[68.96062259200019,22.349514065000122],[68.96501712300008,22.366766669000057],[68.96762129000015,22.387193101000108],[68.9743758470001,22.40473053600006],[68.98324629000015,22.419378973000065],[68.99293053500011,22.431586005000142],[69.00749759200002,22.44318268400015],[69.04753665500007,22.464016018000123],[69.07357832100016,22.481878973],[69.08139082100016,22.480536200000117],[69.08521569100006,22.47288646],[69.08228600400011,22.459540106000148],[69.07447350400011,22.449448960000026],[69.0560001960001,22.44183991100006],[69.0481876960001,22.431586005000142],[69.06226647200006,22.40770091400016],[69.07178795700017,22.39948151200015],[69.08855228000019,22.396877346000064],[69.097422722,22.39887116100003],[69.11378014400005,22.407863674000126],[69.12273196700008,22.41107819200009],[69.13200931100013,22.410467841000028],[69.13982181100019,22.407131252000013],[69.14698326900006,22.404852606000034],[69.15463300900008,22.40770091400016],[69.1687931650001,22.42064036700016],[69.17855879000015,22.427639065000147],[69.18824303500011,22.42641836100013],[69.20215905000006,22.414862372000115],[69.20573978000007,22.39866771000005],[69.18213951900012,22.366441148000106],[69.18531334700018,22.34967682500009],[69.16968834700012,22.327948309000035],[69.17383873800023,22.30829498900006],[69.19044030000012,22.292303778000175],[69.21208743600019,22.2813988300001],[69.21208743600019,22.273911851000136],[69.28646894600016,22.28461334800015],[69.33570397200018,22.30613841400016],[69.34644616000011,22.324896552000112],[69.35987389400006,22.329169012000037],[69.4353947270001,22.33038971600014],[69.46892337300008,22.337836005000142],[69.47966556100008,22.342230536000113],[69.48536217500006,22.347560940000093],[69.50001061300023,22.366766669000057],[69.50269616000011,22.372259833000058],[69.50855553500017,22.374253648000103],[69.51514733200023,22.37518952],[69.51986738400015,22.377630927000112],[69.52564537900011,22.39207591400016],[69.5227970710001,22.403876044000143],[69.51693769600016,22.41608307500003],[69.51368248800011,22.431586005000142],[69.51596113400015,22.448146877000013],[69.52198326900006,22.448919989000117],[69.53077233200023,22.446112372000172],[69.54102623800016,22.452093817],[69.54786217500006,22.452093817],[69.559825066,22.411525783000073],[69.56169681100017,22.391587632],[69.55469811300011,22.377630927000112],[69.56902103000019,22.370550848000065],[69.60108483200005,22.36383698100012],[69.6160587900001,22.35590241100006],[69.61744225400017,22.365057684000035],[69.61988366000011,22.371039130000057],[69.62973066500015,22.383775132000025],[69.64039147200018,22.37596263200011],[69.64722741000017,22.38043854400017],[69.65235436300011,22.38987864799999],[69.65772545700017,22.396877346000064],[69.66130618600002,22.400213934000092],[69.66521243600002,22.404974677],[69.66944420700023,22.409247137000094],[69.67465254000015,22.41107819200009],[69.68083743600019,22.40961334800012],[69.69450931100008,22.403957424000126],[69.6993921230002,22.40428294500005],[69.70899498800011,22.41889069200009],[69.72535241000011,22.46454498900003],[69.73340905000006,22.48004791900003],[69.74219811300011,22.47296784100014],[69.788747592,22.42316315300009],[69.79493248800011,22.418605861000128],[69.8069767590001,22.42096588700009],[69.81299889400012,22.42951080900012],[69.81690514400012,22.440985419000143],[69.82227623800004,22.452093817],[69.83326256600006,22.46381256700009],[69.84180748800023,22.466376044000086],[69.8510848320001,22.465236721000153],[69.86378014400006,22.465765692000115],[69.88477623800011,22.47357819200012],[69.90528405000006,22.486395575000145],[69.96208743600002,22.53534577000012],[69.9729923840001,22.541449286000116],[69.97388756600017,22.539984442000062],[69.9962671230002,22.541449286000116],[70.00269616000011,22.54315827000012],[70.0208439460001,22.55512116100006],[70.05909264400006,22.558417059000092],[70.14470462300008,22.547796942000147],[70.17847741000011,22.561957098000065],[70.18970787900011,22.577785549000012],[70.20728600400017,22.61497630399999],[70.23487389400012,22.64887116100006],[70.26726321700019,22.705959377000127],[70.31910241000011,22.778265692],[70.32325280000006,22.787665106000034],[70.32154381600006,22.811712958000054],[70.32252037900011,22.82265859600012],[70.32545006600006,22.8263207050001],[70.34294681100019,22.843166408000098],[70.37525475400011,22.902655341000028],[70.38770592500012,22.912014065000065],[70.4046330090001,22.91950104400003],[70.43685957100014,22.954901434000035],[70.45337975400011,22.96662018400012],[70.46273847700016,22.966538804000137],[70.47429446700019,22.964056708000115],[70.48633873800011,22.963690497000087],[70.49756920700011,22.970038153000033],[70.50473066500015,22.979559637000037],[70.51238040500007,22.995347398000078],[70.5179142590001,23.00389232000019],[70.52719160200016,23.02358633000013],[70.52849368600002,23.04706452],[70.52369225400017,23.070379950000117],[70.51490319100017,23.08954498900006],[70.50294030000006,23.104396877000127],[70.4842228520001,23.122137762000033],[70.46713300900014,23.129706122000172],[70.45964603000007,23.113999742000104],[70.45093834700018,23.10565827000015],[70.4106551440001,23.08600495000009],[70.39877363400014,23.069037177000112],[70.39893639400012,23.059068101000108],[70.40105228000002,23.04539622599999],[70.40447024800002,23.03335195500007],[70.41098066500015,23.023179429000137],[70.40186608200023,22.999253648000078],[70.40202884200018,22.99022044500005],[70.40381920700011,22.981878973000093],[70.40349368600008,22.967840887000033],[70.401621941,22.95384349200016],[70.39877363400014,22.94550202],[70.3924259770001,22.940863348000093],[70.38453209700006,22.93886953300013],[70.3635360040001,22.93870677299999],[70.35767662900017,22.936712958000143],[70.3523869150001,22.933050848000093],[70.34669030000012,22.931301174000097],[70.33952884200008,22.93528880400008],[70.33448326900006,22.94013092700005],[70.3304142590001,22.943304755000113],[70.32569420700004,22.945013739000117],[70.31910241000011,22.94550202],[70.31462649800002,22.94350820500007],[70.3087671230002,22.939764716000028],[70.30347741000011,22.938137111000017],[70.300059441,22.944281317],[70.29363040500019,22.95140208500014],[70.29175866000011,22.953029690000065],[70.269297722,22.958563544000086],[70.25831139400006,22.971869208],[70.24968509200008,22.987453518],[70.23308353000019,23.000148830000157],[70.23194420700005,22.97492096600008],[70.22201582100016,22.95917389500015],[70.20411217500012,22.95221588700015],[70.17847741000011,22.953029690000065],[70.1717228520001,22.951971747000115],[70.16773522200006,22.94912344000006],[70.16309655000012,22.948960679000106],[70.15430748800023,22.95604075700008],[70.15072675900014,22.96100495000003],[70.149668816,22.964300848000065],[70.14747155000012,22.966050523000046],[70.14063561300011,22.96662018400012],[70.12907962300007,22.96930573100009],[70.12501061300011,22.975978908000155],[70.12623131600006,22.98480866100003],[70.130625847,22.993963934000092],[70.1095483730002,22.95917389500015],[70.12045332100014,22.95258209800006],[70.13233483200023,22.941066799000122],[70.13542728000019,22.92999909100008],[70.12012780000006,22.92503489800005],[70.06177819100006,22.91819896000011],[69.99691816500015,22.89378489799999],[69.94068444100017,22.886135158000126],[69.88428795700023,22.867824611000074],[69.8528751960001,22.86359284100014],[69.83318118600008,22.858465887000065],[69.80681399800008,22.845282294000086],[69.78012129000015,22.827460028000033],[69.76010175900015,22.808335679000052],[69.7288517590001,22.75482819200012],[69.71583092500012,22.746893622000172],[69.69434655000006,22.749701239000117],[69.65381920700017,22.760484117000132],[69.585703972,22.761175848000065],[69.57569420700023,22.764349677000112],[69.5569767590001,22.778509833000058],[69.54444420700005,22.781683661000116],[69.51075280000006,22.78050364799999],[69.50001061300023,22.781683661000116],[69.48943118600019,22.784735419000114],[69.4825952480002,22.78847890800013],[69.47730553500011,22.792059637000122],[69.47217858200011,22.79466380400011],[69.4246525400001,22.804266669000086],[69.40593509200002,22.813666083000115],[69.37256920700021,22.818996486000074],[69.33814537900011,22.833075262000037],[69.2387801440001,22.84194570500007],[69.2019149100001,22.85224030199999],[69.1355900400001,22.888373114000114],[69.03988691500015,22.950506903000147],[68.86622155000012,23.019964911000084],[68.6912541020001,23.130519924000097],[68.66065514400012,23.154242255],[68.65406334700006,23.157782294000082],[68.65064537900011,23.162054755],[68.65113366000011,23.17145416900003],[68.64966881600006,23.180853583000143],[68.62256920700011,23.19155508000007],[68.609141472,23.206773179000052],[68.59994550900015,23.225043036000116],[68.59571373800021,23.24038320500007],[68.59831790500002,23.23696523600016],[68.60938561300006,23.22671133000013],[68.62012780000005,23.24542877800009],[68.62322024800007,23.256170966000113],[68.62305748800011,23.267645575000145],[68.6053166020001,23.25958893400012],[68.57781009200008,23.255275783000013],[68.55225670700011,23.259711005],[68.54102623800011,23.278225002000013],[68.56104576900006,23.316107489000142],[68.56853274800012,23.31842682500009],[68.59913170700023,23.322251695000105],[68.60694420700023,23.32558828300013],[68.60303795700021,23.332831122000172],[68.59205162900017,23.34007396],[68.57837975400011,23.34341054900004],[68.57105553500011,23.34638092700014],[68.56666100400017,23.352972723],[68.56373131600006,23.359930731000087],[68.56104576900006,23.363918361000074],[68.55518639400012,23.363959052000055],[68.54851321700008,23.36151764500012],[68.5431421230002,23.35858795800003],[68.54102623800011,23.357001044000167],[68.52947024800007,23.36310455900015],[68.52068118600019,23.36920807500014],[68.51514733200005,23.37702057500006],[68.51319420700023,23.388088283000073],[68.51514733200005,23.399318752000067],[68.52076256600017,23.407538153000175],[68.52955162900011,23.41193268400015],[68.54102623800011,23.41168854400003],[68.53638756600017,23.42133209800009],[68.5301212900001,23.425685940000093],[68.52214603000007,23.424750067],[68.51319420700023,23.418524481000034],[68.50147545700023,23.42328522300012],[68.4964298840001,23.417873440000093],[68.49048912900017,23.409328518000066],[68.47535241000017,23.404852606000087],[68.46257571700002,23.409125067000033],[68.4588322270001,23.41982656500012],[68.46111087300007,23.433172919000143],[68.46550540500007,23.445786851000136],[68.45191491000011,23.43773021],[68.44044030000005,23.434271552],[68.43091881600017,23.43659088700015],[68.42367597700016,23.445786851000136],[68.4329533210001,23.46588776200018],[68.44743899800002,23.487453518000095],[68.46558678500011,23.505275783000158],[68.48585045700017,23.514105536000113],[68.4812931650001,23.52513255400008],[68.47559655000012,23.524115302],[68.46802819100017,23.519842841000084],[68.45866946700008,23.5214704450001],[68.45411217500012,23.526271877000013],[68.44402103000002,23.54120514500015],[68.4373478520001,23.548814195000162],[68.44141686300021,23.532049872000144],[68.44743899800002,23.5163434920001],[68.44695071700008,23.50299713700009],[68.4311629570001,23.49359772300006],[68.41163170700023,23.49469635600012],[68.4060978520001,23.508734442000062],[68.41081790500002,23.548814195000162],[68.40495853000017,23.59760163],[68.40886478000007,23.621323960000026],[68.42750084700006,23.631415106000148],[68.47152754000015,23.61863841400013],[68.49146569100006,23.61884186400009],[68.49268639400006,23.637600002000127],[68.4861759770001,23.641424872000144],[68.47689863400015,23.63934967700014],[68.46876061300011,23.64081452],[68.46550540500007,23.65525950700005],[68.46941165500007,23.659247137000037],[68.48894290500007,23.664780992000047],[68.5047306650001,23.674221096000068],[68.52393639400005,23.67593008000007],[68.5335392590001,23.679185289000102],[68.53882897200018,23.684027411],[68.55469811300023,23.706488348],[68.58350670700017,23.73529694200012],[68.60173587300001,23.748683986000128],[68.63786868600008,23.76154205900015],[68.65455162900011,23.799058335000083],[68.67074629000015,23.815741278000118],[68.68018639400006,23.81777578300013],[68.71558678500017,23.815741278000118],[68.72559655000006,23.818915106000176],[68.74512780000006,23.833075262000094],[68.75652103000013,23.83624909100017],[68.76880944100017,23.841131903000033],[68.82162519600016,23.878404039000102],[68.80567467500006,23.884426174000012],[68.78003991000017,23.874090887000094],[68.7669376960001,23.878404039000102],[68.74024498800006,23.853461005],[68.71778405000006,23.841009833000058],[68.69190514400006,23.83665599200016],[68.65406334700006,23.83624909100017],[68.63347415500019,23.833075262000094],[68.62305748800011,23.82440827],[68.60938561300006,23.79523346600014],[68.59888756600012,23.78188711100013],[68.58773847700016,23.775702216000084],[68.55469811300023,23.76854075700014],[68.538340691,23.761297919000114],[68.52475019600016,23.75202057500014],[68.51002037900017,23.744086005],[68.47282962300008,23.737494208000115],[68.44971764400012,23.723334052],[68.42774498800011,23.71430084800009],[68.41081790500002,23.700506903000175],[68.34197024800008,23.623968817],[68.35157311300023,23.617824611000014],[68.35303795700011,23.610663153000175],[68.34888756600006,23.60342031500015],[68.34197024800008,23.59662506700012],[68.32732181100008,23.58690013200008],[68.31763756600017,23.58612702000015],[68.30811608200011,23.589056708000086],[68.29411868600002,23.590399481000148],[68.23080488400008,23.588080145],[68.181407097,23.594061591000028],[68.15739993600008,23.60081614800005],[68.1434025400001,23.612697658000013],[68.15007571700008,23.631415106000148],[68.1541447270001,23.63231028900016],[68.17432701900006,23.631415106000148],[68.17823326900006,23.634344794000086],[68.1818953790001,23.647853908000073],[68.18425540500007,23.65192291900003],[68.19809004000015,23.65908437700007],[68.20932050900014,23.662746486000014],[68.22006269600016,23.659247137000037],[68.23267662900017,23.645005601000108],[68.24512780000006,23.659125067000062],[68.2618921230002,23.661444403000033],[68.27588951900005,23.665838934000092],[68.28044681100019,23.685980536000145],[68.25896243600008,23.674709377000156],[68.24097741000011,23.674017645],[68.22486412900017,23.681870835],[68.20875084700016,23.696234442000062],[68.19752037900017,23.714544989000117],[68.19581139400006,23.73346588700015],[68.19792728000019,23.753404039000046],[68.19776451900012,23.774807033000073],[68.17823326900006,23.754299221000124],[68.16814212300008,23.747463283000013],[68.16374759200019,23.75771719000012],[68.16602623800006,23.773179429000052],[68.17562910200016,23.798244533000158],[68.17969811300011,23.827460028000086],[68.18246504000015,23.835760809000178],[68.18303470100014,23.842108466000113],[68.18303772781033,23.84215840611101],[68.18351729300011,23.843300273000054],[68.20728845300007,23.87701914500009],[68.21503991700015,23.88174753900007],[68.2329199630001,23.88911143000008],[68.2399479580001,23.89311635300008],[68.24304854300007,23.893426412000153],[68.25286706500006,23.89169525200016],[68.25679447500008,23.891927796000132],[68.26036014800016,23.895545146000032],[68.25793135600011,23.899472555],[68.25374556500017,23.90277984700019],[68.25193689000017,23.90482106600014],[68.25307377200008,23.911228943000097],[68.25266036000008,23.920091452000104],[68.25493412300008,23.929108989000056],[68.26392582200006,23.935930277000107],[68.27400272600008,23.937687277000077],[68.27767175300008,23.93350148600014],[68.28004886900013,23.925724183000124],[68.2861983650001,23.91637074800009],[68.30040938300006,23.9105054730001],[68.31405196100016,23.915905661000163],[68.3259892180001,23.927791239],[68.33503259300008,23.94099456800008],[68.33368900500008,23.948048401],[68.32986494900015,23.958151144000126],[68.3304333900002,23.96657440200012],[68.342629028,23.968563945000152],[68.34888187700014,23.964610698000097],[68.35239587400005,23.956549174000102],[68.35384281400016,23.947169902000056],[68.35363610900012,23.939289246000115],[68.38546879000015,23.960424907000156],[68.4315641690001,23.96714284300016],[68.54783614100008,23.96631602000015],[68.64643477400007,23.965695903],[68.72446618700005,23.965179139000053],[68.72508630400014,24.10405955],[68.72555139200009,24.20891103200007],[68.72591312700015,24.289216207],[68.7473071690001,24.3311774700001],[68.79919030800008,24.329084574000134],[68.81381473800015,24.30843984000002],[68.81965417500012,24.25030385300012],[68.8387744550001,24.23645457000005],[68.84890303600017,24.244025167000114],[68.88011560100009,24.29735524500002],[68.8832678630001,24.305365092000088],[68.8850765380001,24.31355580700001],[68.89029585800014,24.31947275900002],[68.90419681900019,24.320583802000115],[68.91318851700007,24.317250671000025],[68.92197351100006,24.310506897],[68.92941491800016,24.30236785900017],[68.9486902260002,24.27027679500004],[68.96264286300017,24.257228495],[68.98078129100011,24.255393982],[69.00780806500003,24.264566549],[69.04847741700021,24.285237121000122],[69.06770105000012,24.288441061000086],[69.09188562000011,24.281903992000096],[69.14821293100013,24.256660055000154],[69.16671309400012,24.253171896000097],[69.20624556500016,24.25857208300006],[69.28081465700015,24.28373850600009],[69.56307133000021,24.276762187000102],[69.5923201900001,24.26461822600011],[69.67055830900014,24.188705546000094],[69.71458663000007,24.168577576000118],[69.7690535890001,24.162557272000086],[69.97203861500006,24.165218608000103],[70.01596358300017,24.174055278000097],[70.05213708500011,24.202063904000013],[70.06298913600008,24.220305685000152],[70.08717370700006,24.282549947000078],[70.09787072800006,24.298828023000013],[70.10970463000015,24.30490000400006],[70.14458622300006,24.307897237000144],[70.2022054440001,24.325570578000068],[70.22277266400008,24.32670745900016],[70.24256473800001,24.33060902900006],[70.27909997600008,24.355077820000087],[70.29853031400015,24.36342356400014],[70.35320397900009,24.366265768000048],[70.37077396700008,24.372363587000095],[70.41635258000004,24.40194834400002],[70.52094567900009,24.424918519000144],[70.56290694200018,24.424091695000058],[70.5752059320001,24.40003631600011],[70.5692114660001,24.389881898000123],[70.55195153800011,24.379365744],[70.5464738370001,24.37313873300009],[70.54564701400007,24.362183330000118],[70.55536218300014,24.327017518000062],[70.56021976700006,24.287252503000058],[70.56766117400016,24.272808940000132],[70.58471439600012,24.25790028900009],[70.62150801600009,24.241157125000043],[70.75545332900012,24.231441956000094],[70.7760205490001,24.23668711400002],[70.8135893150002,24.25446380700005],[70.83410485800006,24.26128509500002],[70.8514681390001,24.264876607000176],[70.85756595900014,24.271672058000135],[70.84454349800008,24.28828603100014],[70.84092614800012,24.305830180000026],[70.85653243000016,24.3238135780001],[70.91771732600009,24.361718242],[70.93632084200007,24.367195943000084],[70.95533776900012,24.36590403300012],[70.97714522300006,24.35724823],[70.99667891500016,24.356602275000014],[71.00711755400019,24.363966167000015],[71.01435225500003,24.375205790000066],[71.02510095200009,24.386290385000066],[71.07305668100011,24.402103374000077],[71.08277185000023,24.41150848400012],[71.07502038600015,24.43641652500018],[71.04008711800006,24.446777649000108],[71.00008955900009,24.45290130600007],[70.97714522300006,24.46494191500012],[70.97435469500007,24.472202453000122],[70.97311446100016,24.479643860000053],[70.9732178140001,24.487240295],[70.97476810700019,24.494965922000105],[70.97714522300006,24.515068054000054],[70.98050419100016,24.521889344000115],[70.98189945500022,24.5285297650001],[70.98086592600006,24.534730937000102],[70.97714522300006,24.540389506000125],[70.95776656100006,24.556021627000074],[70.95482100400008,24.58452118000004],[70.96277917500007,24.615785421000123],[70.97714522300006,24.639685771000032],[71.04334273300006,24.669063823],[71.0638582770001,24.682577209000083],[71.05663232900017,24.692819747000144],[71.03693485500017,24.720740255000138],[71.00319014500022,24.80820261700002],[70.94303877700006,24.894063009000135],[70.91523685700022,24.946617941000014],[70.89332605000007,25.001885885000135],[70.85989139800009,25.139448548000118],[70.84857425900012,25.16332306],[70.83141768400006,25.18332183900013],[70.76837243700012,25.233086243000127],[70.7348861090002,25.267347717000163],[70.723103882,25.287294820000067],[70.71855635600016,25.310807597000164],[70.71049483300007,25.335870667000062],[70.6703939210001,25.375558167000165],[70.65447758000008,25.39659047500008],[70.64662276300012,25.43136871300011],[70.65282393400011,25.545883687000057],[70.6574748130001,25.633630270000182],[70.6538574630001,25.674454651000175],[70.63230839000008,25.7013780730001],[70.59225915600003,25.70881947900001],[70.55443200700009,25.69879425099999],[70.51665653500001,25.683859762000125],[70.47722741700007,25.67631500300008],[70.36012862200018,25.673472799000095],[70.30369795700007,25.684583232000037],[70.26457889800022,25.69729563400007],[70.24923099800017,25.707682597000098],[70.23445153800006,25.73098866800005],[70.21398767100018,25.78633412700016],[70.1955908620001,25.806953024000066],[70.15424971500006,25.839405823],[70.11497562700018,25.881728821000095],[70.08324629700004,25.929942933000078],[70.0646427820001,25.980327454000175],[70.0642810470001,25.9955203250001],[70.07291101100006,26.04745513900012],[70.07389286300022,26.08311187800011],[70.07828536000014,26.0996483360001],[70.13202885000013,26.18047027600006],[70.14691166200006,26.217418925000104],[70.15161421800022,26.25405751600006],[70.14401778200008,26.294313457],[70.14246748900015,26.31369211800016],[70.14794519100022,26.33322581000006],[70.15714359600022,26.353999736],[70.16050256400015,26.3713113400001],[70.15698856600008,26.410947164000092],[70.16293135500021,26.493319397000064],[70.15807377100012,26.530113017000147],[70.12960005700003,26.562514140000143],[70.09368493700012,26.580394186000106],[70.05606449400008,26.58907582600007],[69.81556237800012,26.580290833],[69.77225752700016,26.595070292000017],[69.7002205810002,26.65299957300006],[69.6593962000002,26.677700908000148],[69.504160197,26.735165101000078],[69.4728442790001,26.766584371000118],[69.4650928140002,26.807770487000095],[69.48597009300008,26.926832988000154],[69.50757084200015,27.05008127900014],[69.53444258600015,27.12558054600005],[69.5755770260001,27.188419088000117],[69.66611413500013,27.27001617400019],[69.73060632300016,27.310323792000148],[69.84801517700006,27.410369365000136],[69.90806319200007,27.497289124000147],[69.99353601100007,27.57108306900001],[70.01689375800007,27.600590312000023],[70.09068770400009,27.79355011000014],[70.10195316600007,27.811740214000096],[70.18902784200012,27.89179049600007],[70.19900150500021,27.90095957500013],[70.26773116000018,27.94527211600017],[70.32385176600022,28.000436707000162],[70.34193851700016,28.011469625000146],[70.35950850500008,28.016327210000085],[70.39826582900017,28.02164988200003],[70.43691980000008,28.035344137000052],[70.45624678600021,28.039788310000134],[70.47722741700007,28.03725616500016],[70.50678633700014,28.028962097000104],[70.5348983160001,28.015965474000083],[70.55980635600021,27.998447164000126],[70.59287927300012,27.964495748],[70.62119795800001,27.944135234000058],[70.63318688900009,27.931629537000063],[70.64161014800018,27.911269022000127],[70.6376310630001,27.87421702100006],[70.64073164900006,27.854786682000093],[70.67173750800006,27.79109548000018],[70.71039147900015,27.741150207000103],[70.7617578530002,27.709782613000087],[70.8315727130001,27.701462707000033],[70.91378991700005,27.717818299000086],[71.02758142100006,27.768047790000125],[71.15067468300018,27.822411398],[71.22632897900016,27.84535573400002],[71.31144006300005,27.86171132400007],[71.39779138200007,27.868377584000157],[71.4771147060001,27.862434794000148],[71.56072717300012,27.868532614000014],[71.701390422,27.9067731730001],[71.86086389200014,27.950207215000106],[71.87440311700001,27.95968984000008],[71.87998417200006,27.97490855000002],[71.89155969300012,28.09709747400002],[71.89693404100015,28.115545959000045],[71.90830285600006,28.13557057700008],[71.98819462100008,28.228097230000017],[72.11097782400012,28.31762664800014],[72.1499418540001,28.35377431300016],[72.17764042200022,28.397053325000044],[72.19779423100007,28.44487986300011],[72.25649865700015,28.645591125000138],[72.28026981600013,28.687164816000134],[72.3545805260002,28.767185771000083],[72.38217574000012,28.784006450000064],[72.52562951600007,28.84991973900016],[72.6585413010001,28.911001282000157],[72.77253951000009,28.96334950700019],[72.9015238850001,29.022622376000086],[72.91816369600022,29.032854310000076],[72.93035933400014,29.047685445000113],[72.96291548700017,29.11682851199999],[72.98865035000009,29.15462982200016],[73.05086877500017,29.228217061000137],[73.12890018800007,29.360302023000045],[73.17799279800013,29.443449402000127],[73.23287316900021,29.536596171000138],[73.28475630700015,29.68374481300013],[73.32744104000014,29.805210266000028],[73.3703324790001,29.927321676000116],[73.38521529100015,29.942307841000076],[73.55781457500021,30.012536113000163],[73.73971561700014,30.048451233000108],[73.77826623500013,30.067313131000148],[73.94435428900007,30.18828765900012],[73.94683102300009,30.204076838],[73.94890181500008,30.21727813799999],[73.93463912000013,30.261048076000083],[73.91190148900014,30.303784485],[73.89164432800013,30.329777731000046],[73.8423450110001,30.352980448000054],[73.84523889200014,30.356959534000122],[73.85175012200008,30.37266916900002],[73.86766646300012,30.387448629000044],[73.8876135660001,30.396543681000093],[73.90611372900017,30.394838359000136],[73.90425337800016,30.401452942000116],[73.90208296700004,30.415612284000172],[73.89991255700008,30.422123515000134],[73.91665572100013,30.417162578],[73.92926477000006,30.41907460600011],[73.93908329300021,30.42605092400011],[73.98982955000011,30.487804261000107],[73.9960307210001,30.50098175100008],[74.00440230300009,30.508939922000035],[74.04408980400015,30.518655091000156],[74.0575256760001,30.53136749300013],[74.06145308400008,30.55560374000011],[74.05824914500008,30.57446563700013],[74.0571122640001,30.59157053700009],[74.06744755100007,30.610535787000128],[74.08222701000008,30.625883687],[74.09586958900009,30.637149150000155],[74.11147587100007,30.646244202000148],[74.1326632080002,30.655494283000152],[74.15571089700009,30.65957672100016],[74.16366906800013,30.6648993940001],[74.1667696530001,30.679110413000085],[74.17007694500009,30.68717193600015],[74.18464969900005,30.696835430000093],[74.19116093000011,30.71704091400009],[74.19880904200008,30.724999084000146],[74.21513879500006,30.73745310500011],[74.23570601500009,30.764118144000165],[74.24407759700009,30.771249491],[74.25916711400005,30.78101633700005],[74.26671187300022,30.788354391000055],[74.2657816980001,30.795434062000183],[74.25668664600013,30.81527781200016],[74.26020064300003,30.819411926],[74.27994104000001,30.824682923000026],[74.30019820200002,30.838170471000083],[74.31136031100007,30.85594716400011],[74.30402225700018,30.874033915000137],[74.31074019400009,30.884472555000073],[74.31921512900011,30.893412578000024],[74.32975712100009,30.899613750000086],[74.34246952300012,30.901939189000117],[74.35363163200006,30.901112366000103],[74.37967655500015,30.89449778300009],[74.40127730300011,30.89310251900012],[74.40913212100023,30.90100901300015],[74.41336958800011,30.915065003000095],[74.42432499200007,30.932324931000082],[74.44158492000015,30.94617421500014],[74.45853479000007,30.95340891600001],[74.47724165900016,30.95609609000003],[74.49946252400017,30.95650950100004],[74.51930627500005,30.962452291000076],[74.53480920500007,30.976249899000106],[74.54876184100007,30.99216624000003],[74.56405806500001,31.00436187800015],[74.5642647710001,31.02503245000015],[74.57945764200011,31.042705791000156],[74.60095503700003,31.056606751000132],[74.65883264100009,31.083788554000034],[74.65025435400017,31.093141989000078],[74.63196089700008,31.10750803700007],[74.6169747320001,31.115259501000182],[74.59692427600007,31.115776266000022],[74.55310266100017,31.108954977000067],[74.53677290800013,31.11515614900004],[74.5235437420001,31.1293154910001],[74.51486210100008,31.141821187000104],[74.5095911060001,31.156083883000164],[74.50638716600017,31.17541086900003],[74.50907434100012,31.195668030000135],[74.52509403500002,31.235407206000122],[74.5253007410001,31.2802106730001],[74.53222538200006,31.30320668500006],[74.57160282400017,31.389247945000122],[74.58369510900016,31.406559550000125],[74.6000248620002,31.424129537000013],[74.6119104420002,31.44020090800016],[74.61718143700008,31.458907776000146],[74.61459761600017,31.477821351],[74.58452193200017,31.517508851000073],[74.55558313000014,31.612231751000092],[74.49946252400017,31.69987498000002],[74.48943729700008,31.711192118],[74.49264123600014,31.714551087000114],[74.5032865800001,31.730570781000054],[74.50545699000011,31.732017721000044],[74.51331180900016,31.735118307],[74.5162056880001,31.73739207],[74.51827274600005,31.74183624300012],[74.52116662600005,31.75377349900016],[74.5230269780001,31.75847605400004],[74.53077844200018,31.767829488000093],[74.53511926300004,31.771136780000077],[74.53697961400005,31.77573598200003],[74.5373930260001,31.78891347300011],[74.54080367100019,31.810875956000174],[74.5504154870001,31.82699900400014],[74.56560835800016,31.840538229000135],[74.64105594900016,31.89056101500013],[74.65717899600023,31.895676982000126],[74.66999475100013,31.904151916000117],[74.69841678900009,31.950247295000153],[74.76301232900019,31.93898183200018],[74.7836829020001,31.94285756500012],[74.80249312400011,31.96885081],[74.81127811700011,32.00373240099999],[74.8286413980002,32.02543650299999],[74.87318648300013,32.01169057200006],[74.88910282400016,32.02889882500004],[74.90884322100013,32.03189605700014],[74.93137414600014,32.02982900100006],[74.95566206900011,32.03220611600004],[74.96785770700015,32.03789052300006],[74.97405887900001,32.04497019500009],[74.97850305200015,32.05339345300017],[74.98615116400012,32.06321197500013],[74.99555627500015,32.06739776600007],[75.02015425600015,32.06584747300015],[75.03017948400006,32.06641591400002],[75.02263472500013,32.094682923],[75.04082482900017,32.097990215],[75.10211307800014,32.078094788],[75.11027795400011,32.07762970000006],[75.1189595950001,32.08104034500009],[75.12981164600015,32.09023874899999],[75.13838993300007,32.09349436400008],[75.1613342690001,32.08796498600016],[75.1741500250001,32.086828105000066],[75.17311649600012,32.109720765000176],[75.19575077300006,32.12863433900013],[75.2264465740001,32.14207021100016],[75.24990767500017,32.14889150000012],[75.26334354700012,32.150906881000154],[75.29465946500014,32.14889150000012],[75.29807011000017,32.15979522700009],[75.30840539500016,32.19390167300007],[75.31657027200018,32.21074818900003],[75.34860966000011,32.242012432000124],[75.35904829900014,32.26167531400007],[75.35295048000009,32.28438710600012],[75.3269055590001,32.31247324600015],[75.29840293600009,32.332426605000144],[75.23016727700022,32.38019521100007],[75.19616418500017,32.39730011000002],[75.12598759000011,32.411743673000146],[75.09219120300021,32.42933949800012],[75.05488081900009,32.45553945000013],[75.02366825400011,32.46626230900015],[74.99069869000007,32.46336842900017],[74.94842736900009,32.44876983600001],[74.90698286900007,32.44517832400011],[74.83814986200011,32.474866435000095],[74.79939253800008,32.4726701870001],[74.76352909300013,32.46267079700009],[74.72497847500003,32.460810445000064],[74.68932173700009,32.471352438000125],[74.66255334500008,32.49837921200016],[74.63258101400007,32.56816823300015],[74.62958378100015,32.58808949800006],[74.63692183400022,32.606253764000186],[74.64798059100022,32.623617046],[74.65604211400014,32.640670268000136],[74.65728234900004,32.66059153300016],[74.65015100100013,32.70123504700011],[74.64973759000011,32.72314585400015],[74.65697229000008,32.74534088200009],[74.68229374200016,32.78732798300008],[74.68911503100011,32.80882537800012],[74.68529097500007,32.83122711200012],[74.67175175000008,32.84058054600014],[74.65356164600016,32.83742828400001],[74.63588830500007,32.82208038400013],[74.6262764890001,32.802650045000135],[74.62203902200011,32.78541595400016],[74.61408085100012,32.770403951],[74.5934102780001,32.7578724160001],[74.57377323400007,32.752549744000035],[74.52095992000014,32.74528920500016],[74.50090946500009,32.74601267500016],[74.48447635900013,32.753531596000116],[74.45533085200006,32.77859466600002],[74.43869104000007,32.78598439500002],[74.4189506430001,32.78461497100015],[74.38639449100006,32.767768454000176],[74.36768762200009,32.763530986000134],[74.34619022600006,32.766889954000035],[74.32934370900014,32.77642425600011],[74.3163212480001,32.79107452400011],[74.30650272600016,32.809910584000036],[74.31593865300007,32.82175000200006],[74.31698854100026,32.82306731400017],[74.32293583200013,32.83052948000012],[74.33378788300016,32.84926218700012],[74.33668176300014,32.87013946600008],[74.3244861250001,32.921402486000105],[74.32200565600007,32.972045390000076],[74.31125695800014,32.99429209500012],[74.28397180200014,33.008813171000085],[74.19085087100021,33.02209401500009],[74.15385054600007,33.040180766],[74.09845341000013,33.10482798300016],[74.06579390500015,33.13260406500011],[74.02941369700008,33.15415313700005],[74.00233524600011,33.17769175200006],[73.98848596200011,33.208620097000065],[73.99179325300022,33.252570903],[74.00171512900013,33.27016672800009],[74.0178381760002,33.279494324000105],[74.05535526500009,33.292025859000105],[74.07199507700014,33.302283631000094],[74.08512089100012,33.314324240000175],[74.09597294100016,33.32848358200011],[74.1054814050001,33.34520090700006],[74.13628055800008,33.418013],[74.15777795400007,33.49423573800006],[74.14155155500012,33.54937449100005],[74.08811812300021,33.585289613],[74.02424605300004,33.61425425200015],[73.97670373600013,33.64838653600005],[73.96833215400007,33.66208079000016],[73.96306115700023,33.676756897000146],[73.9607873950001,33.692285665000085],[73.96306115700023,33.721560364000126],[73.96616174300017,33.734531148000045],[73.97070927000013,33.74706268300015],[73.97670373600013,33.75892242499999],[74.01132694600003,33.81046966600009],[74.03458134000006,33.828608093000106],[74.1422750240001,33.84424021500014],[74.17751835100009,33.85754689600015],[74.21255497200009,33.878424174000045],[74.23953007000013,33.90100677600019],[74.26247440600011,33.92994557800013],[74.27229292800016,33.962139995000186],[74.25968387800006,33.99438608900006],[74.22836796100009,34.0128862510001],[74.19209110500017,34.011852722000114],[74.1542639570001,34.004101258],[74.11840051300005,34.00252512700017],[74.06527714000012,34.01833811500016],[74.0450199790001,34.01942332000006],[73.97670373600013,34.00459218300013],[73.94580122900007,34.00978566500013],[73.91624231,34.02794993100018],[73.8937113850001,34.054304911000045],[73.88440962700017,34.08419972800006],[73.89329797400009,34.114740499000064],[73.9168624270001,34.13525604200014],[73.97670373600013,34.16155934699999],[73.99541060400023,34.17644215900013],[73.99830448400022,34.19680267400015],[73.99055301900009,34.21850677500005],[73.97670373600013,34.23754954000013],[73.95437951700009,34.28718475300012],[73.93773970500015,34.30421213800004],[73.90745731600012,34.306795960000144],[73.87903527900019,34.30428965300014],[73.8533004150001,34.3074160770001],[73.82911584500002,34.31534840900015],[73.80420780500017,34.32749237100016],[73.78271040900015,34.346819357000115],[73.77485559100009,34.370952250000165],[73.77981652900016,34.3960669960001],[73.79624963400013,34.4185462440001],[73.80679162600009,34.4251608280001],[73.8315963130001,34.43640045200006],[73.84038130700011,34.44441029900004],[73.84554895000011,34.45647674600012],[73.8469958900001,34.494174703000155],[73.8469958900001,34.49432973300018],[73.8631189380001,34.51706736300015],[73.91097131300009,34.54497263600013],[73.92595747900005,34.5649714150001],[73.92544071400012,34.59339345400012],[73.91748254400014,34.619283346000046],[73.91934289500014,34.64253774100016],[73.94859175600018,34.66274322500006],[73.9622343350002,34.66816925100012],[74.12088098100011,34.6908552040001],[74.14682255100016,34.701862285000075],[74.22175337700011,34.74775095600013],[74.28583215300014,34.76888661700009],[74.34887740000008,34.77343414300013],[74.41212935400003,34.764494121],[74.66493046100007,34.688323060000116],[75.0177771400001,34.629721985000074],[75.11100142400002,34.633649394000045],[75.17632043500006,34.645379944000055],[75.212907349,34.644966532000026],[75.22454384500023,34.63862163200007],[75.22456402800006,34.63861062700012],[75.23688521300002,34.63189239500015],[75.25135461500005,34.613082174000155],[75.26747766100007,34.59830271400013],[75.3069584560001,34.57401479100003],[75.34809289600017,34.55721995099999],[75.61164270100008,34.498360494000096],[75.65556766800009,34.49696523100003],[75.71365197700018,34.50851491300015],[75.73483931500002,34.50861826700016],[75.77711063700022,34.503812358000076],[75.7958175050002,34.50792063500007],[75.81617801900015,34.52166656500013],[75.87395227000016,34.57137929300005],[75.93927128100007,34.612048646000076],[75.96624637900013,34.6190766400001],[75.97337772700016,34.622332256000064],[75.98671024600017,34.63602651000009],[76.00748417200012,34.665120341000105],[76.02340051300015,34.67716095000016],[76.05833378100013,34.683413798000075],[76.12179244000018,34.66088287400005],[76.1549687090002,34.661658021000065],[76.26204227700006,34.6846540320001],[76.39991499800007,34.75074819000015],[76.43815555800015,34.762892151000145],[76.47649947100015,34.75777618400018],[76.51990767400017,34.73111114500013],[76.53582401500009,34.726201885000094],[76.55318729700011,34.72584014900009],[76.63959029100008,34.741136374000135],[76.65261275200012,34.74697581000013],[76.7438733320001,34.81927113800016],[76.75327844200015,34.83833974300016],[76.74955773900014,34.89208323200016],[76.75761926300007,34.91513092000004],[76.78201053900007,34.93089223300002],[76.8170471600001,34.940762431000095],[76.8526005460002,34.94334625300009],[76.8795756430001,34.937093404],[76.9059306230001,34.92314076800001],[76.92112349500016,34.920711975000145],[76.93383589700014,34.92887685200016],[76.95295617700012,34.946550191000156],[77.01310754400006,34.98639272100009],[77.02861047400009,35.003394267000104],[77.03522505700008,35.03450347900015],[77.02706018000006,35.06209869400005],[77.02313277200008,35.086334941000146],[77.0424261470001,35.10701374400013],[77.04897098800019,35.11044199700011],[77.4246586510001,35.30292378800017],[77.80034631400017,35.49540557900009],[77.8153324790002,35.47333974200011],[77.83424605300016,35.45215240500015],[77.85708703600008,35.436597799000126]]]]}},{"type":"Feature","properties":{"scalerank":5,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Indian Ocean Territories","adm0_a3":"IOA","geou_dif":0,"geounit":"Indian Ocean Territories","gu_a3":"IOA","su_dif":0,"subunit":"Indian Ocean Territories","su_a3":"IOA","brk_diff":0,"name":"Indian Ocean Ter.","name_long":"Indian Ocean Territories","brk_a3":"IOA","brk_name":"Indian Ocean Ter.","brk_group":null,"abbrev":"Ind. Oc. Ter.","postal":"IOT","formal_en":null,"formal_fr":null,"note_adm0":"Auz.","note_brk":null,"name_sort":"Indian Ocean Territories","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":2069,"gdp_md_est":31.04,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-90,"woe_id_eh":23424869,"woe_note":"Grouping of Christmas Island (23424869) and Cocos or Keeling Islands (23424784)","adm0_a3_is":"AUS","adm0_a3_us":"AUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Seven seas (open ocean)","subregion":"Seven seas (open ocean)","region_wb":"East Asia & Pacific","name_len":17,"long_len":24,"abbrev_len":13,"tiny":-99,"homepart":-99,"filename":"indianoceanter.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[96.9139103520001,-12.194512627999854],[96.90219160200016,-12.199965101999808],[96.892344597,-12.195896091999842],[96.88965905000005,-12.192803643999852],[96.8885197270001,-12.187432549999896],[96.90007571700002,-12.186781507999854],[96.90902754000014,-12.182061455999843],[96.91456139400005,-12.17351653399983],[96.9161889980002,-12.16179778399983],[96.92107181100008,-12.17351653399983],[96.92017662900017,-12.184991143999866],[96.9139103520001,-12.194512627999854]]],[[[96.83619225400011,-12.182061455999843],[96.84766686300006,-12.187188408999859],[96.8631291020001,-12.181735934999905],[96.86939537900011,-12.187920830999886],[96.84522545700011,-12.197686455999829],[96.83057701900012,-12.179945570999834],[96.82341556100008,-12.150974216999842],[96.821543816,-12.126560153999888],[96.8283797540001,-12.126560153999888],[96.8283797540001,-12.136325778999916],[96.82984459700016,-12.144463799999839],[96.83521569100006,-12.160577080999914],[96.83130944100006,-12.171482028999888],[96.83619225400011,-12.182061455999843]]],[[[105.71143639400006,-10.469903252999869],[105.70630944100004,-10.49423593499985],[105.70630944100004,-10.514255466999913],[105.69792728000019,-10.528985283999901],[105.69988040500006,-10.553399346999853],[105.69459069100017,-10.5648739559999],[105.67872155000006,-10.566013278999932],[105.67351321700008,-10.549086195999847],[105.66724694100012,-10.533298434999907],[105.66407311300006,-10.518487237999835],[105.64926191500015,-10.51311614399988],[105.62818444100006,-10.508965752999842],[105.6049910820001,-10.510023695999806],[105.58497155000006,-10.516371351999823],[105.58179772200018,-10.504815362999892],[105.59229576900006,-10.498467705999872],[105.59961998800006,-10.480564059999907],[105.59424889400012,-10.466729424999912],[105.59424889400012,-10.45403411299985],[105.60718834700018,-10.458428643999838],[105.62712649800007,-10.468926690999893],[105.65455162900005,-10.469903252999869],[105.6692814460001,-10.456231377999842],[105.68523196700002,-10.440362237999821],[105.70411217500006,-10.430840752999828],[105.7146916020001,-10.437188408999845],[105.71265709700018,-10.45094166499986],[105.71143639400006,-10.469903252999869]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Iran","sov_a3":"IRN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iran","adm0_a3":"IRN","geou_dif":0,"geounit":"Iran","gu_a3":"IRN","su_dif":0,"subunit":"Iran","su_a3":"IRN","brk_diff":0,"name":"Iran","name_long":"Iran","brk_a3":"IRN","brk_name":"Iran","brk_group":null,"abbrev":"Iran","postal":"IRN","formal_en":"Islamic Republic of Iran","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iran, Islamic Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":3,"mapcolor9":4,"mapcolor13":13,"pop_est":66429284,"gdp_md_est":841700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"IR","iso_a2":"IR","iso_a3":"IRN","iso_n3":"364","un_a3":"364","wb_a2":"IR","wb_a3":"IRN","woe_id":23424851,"woe_id_eh":23424851,"woe_note":"Exact WOE match as country","adm0_a3_is":"IRN","adm0_a3_us":"IRN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"IRN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[55.0543725920003,25.864610092999968],[55.04647871200004,25.858384507],[55.038259311000076,25.85773346600014],[55.03264407600014,25.854641018000066],[55.023041212000095,25.862860418999972],[55.01840254000015,25.85960521000011],[55.01897220100014,25.865749416000014],[55.015635613000114,25.87185293199998],[55.01205488400021,25.881618557000124],[55.02645918100015,25.888739324999975],[55.043711785000276,25.892889716000198],[55.04867597700021,25.885768947000074],[55.04989668100015,25.87608470300019],[55.0543725920003,25.864610092999968]]],[[[54.55323326900012,25.899847723],[54.54322350400011,25.89305247600008],[54.52963300900014,25.895982164000184],[54.51368248800022,25.902655341000138],[54.50977623800022,25.91376373900009],[54.522797071000156,25.920111395],[54.54656009200002,25.92649974200013],[54.551605665000096,25.91771067900008],[54.55323326900012,25.899847723]]],[[[54.52637780000012,26.251939195000105],[54.52100670700016,26.250962632000054],[54.509287957000055,26.254217841000084],[54.497569207000055,26.259711005000113],[54.49219811300023,26.265570380000057],[54.490896030000016,26.278713283000016],[54.48853600400017,26.288723049000012],[54.48812910200015,26.298041083000058],[54.48812910200015,26.298081773000046],[54.49219811300023,26.30963776200015],[54.498383009000094,26.317368882000082],[54.50684655000012,26.321234442000087],[54.516449415000096,26.31940338700009],[54.52637780000012,26.30963776200015],[54.53321373800023,26.306789455000043],[54.538910352000094,26.302720445000162],[54.54371178500011,26.297349351000108],[54.54737389400006,26.290432033000016],[54.52637780000012,26.251939195000105]]],[[[54.04802493600013,26.493841864000114],[54.036875847000175,26.488430080000096],[53.96306399800008,26.492173570000105],[53.95541425900015,26.492580471000124],[53.923106316000116,26.506537177],[53.90284264400012,26.536200262000037],[53.91285241000011,26.5501976580001],[53.927582227000094,26.560126044000082],[53.945485873000024,26.565090236000128],[53.96485436300017,26.56411367400007],[53.98170006600017,26.55890534100008],[54.018809441000165,26.555568752000156],[54.0330509770001,26.550482489000117],[54.0330509770001,26.550441799000126],[54.03492272200006,26.546128648000135],[54.035817905000066,26.544012762000037],[54.035817905000066,26.543890692000062],[54.03541100400011,26.534857489000146],[54.03541100400011,26.534816799000154],[54.03557376400008,26.5337181660001],[54.03646894600009,26.526760158000016],[54.036631707000225,26.526678778000033],[54.04371178500011,26.523179429000052],[54.04794355600015,26.519761460000137],[54.05046634200008,26.517767645],[54.05136152400016,26.512030341000028],[54.05241946700019,26.505804755000053],[54.0501408210001,26.49982330900015],[54.04802493600013,26.493841864000114]]],[[[55.88965905000011,26.623765367000157],[55.86931399800014,26.613023179000052],[55.85320071700007,26.62103913],[55.85547936300023,26.644110419000143],[55.86833743600007,26.666449286],[55.88453209700011,26.677679755],[55.89429772200006,26.679429429],[55.90202884200008,26.668850002000127],[55.90398196700019,26.645249742000185],[55.88965905000011,26.623765367000157]]],[[[53.65919030000012,26.668850002000127],[53.646250847000175,26.657171942000115],[53.628672722000175,26.659328518000123],[53.611175977000094,26.667303778000086],[53.60124759200019,26.67959219000015],[53.60922285200016,26.690497137000037],[53.62916100400017,26.69110748900009],[53.63941491000017,26.688788153000033],[53.65121504000015,26.683823960000083],[53.65919030000012,26.668850002000127]]],[[[53.382009311000076,26.803127346000068],[53.367523634000094,26.799627997000172],[53.32911217500006,26.802557684000092],[53.31714928500017,26.799994208],[53.29908287900011,26.790716864000117],[53.27979576900012,26.790676174000126],[53.222829623000194,26.799546617000185],[53.20525149800008,26.80621979400014],[53.20313561300023,26.807440497000144],[53.18978925900015,26.81517161700016],[53.15845787900017,26.83856842700005],[53.14942467500006,26.84788646],[53.15333092500006,26.852199611000017],[53.16049238400009,26.853705145000063],[53.16846764400006,26.856350002000127],[53.17807050900014,26.85687897300012],[53.26246178500011,26.833644924000012],[53.337412957000055,26.828680731000063],[53.36068769600009,26.820502020000117],[53.37378991000017,26.809800523000106],[53.382009311000076,26.803127346000068]]],[[[56.37916100400011,26.838690497000027],[56.340993686000076,26.827622789000188],[56.32227623800011,26.834418036000116],[56.32683353000007,26.861070054000052],[56.3411564460001,26.879339911000116],[56.366547071000156,26.889797268],[56.40414472700015,26.893052476000047],[56.40919030000006,26.862250067000087],[56.37916100400011,26.838690497000027]]],[[[56.171397332000105,26.906805731000148],[56.14869225400017,26.86200592700014],[56.13721764400012,26.844671942000147],[56.095876498000194,26.806870835],[56.08936608200011,26.793524481000176],[56.08082116000017,26.785345770000063],[56.04281660200016,26.768133856000148],[56.03419030000006,26.759019273000078],[56.02564537900016,26.75409577],[55.97641035200015,26.71157461100013],[55.94703209700006,26.696275132],[55.92400149800008,26.705023505000057],[55.9021916020001,26.72483958500008],[55.87663821700002,26.74290599200019],[55.80982506600017,26.712062893000123],[55.79127037900017,26.697902736000017],[55.77271569100017,26.688381252000013],[55.751312696000156,26.68854401200018],[55.70582116000016,26.694525458],[55.68555748800022,26.690497137000037],[55.664235873000194,26.681545315],[55.61036217500006,26.64691803600003],[55.554453972000175,26.62563711100013],[55.52051842500006,26.60325755400011],[55.50294030000012,26.59487539300015],[55.441172722,26.588609117000104],[55.39730879000015,26.577826239],[55.37875410200016,26.567287502000127],[55.36955813900008,26.56411367400007],[55.369476759000094,26.56411367400007],[55.36654707100009,26.564601955000157],[55.36109459700006,26.565619208000115],[55.349782748000074,26.56899648600013],[55.339610222,26.56899648600013],[55.3352970710001,26.560451565000122],[55.33073978000007,26.553615627000013],[55.319834832000105,26.54828522300012],[55.30762780000012,26.544907945000105],[55.29843183700015,26.54364655200011],[55.29835045700017,26.54364655200011],[55.29411868600002,26.5462914080001],[55.290537957000055,26.548488674000094],[55.28541100400016,26.559963283000126],[55.280609571000156,26.58466217700011],[55.28736412900011,26.602280992000047],[55.28923587300008,26.613592841000028],[55.28402754000009,26.618801174],[55.27377363400014,26.649807033000126],[55.284678582000225,26.66022370000003],[55.3318791020001,26.645331122000172],[55.34278405000006,26.649807033000126],[55.348968946000156,26.6482201190001],[55.35189863400015,26.647447007],[55.35198001400013,26.64748769700016],[55.40479576900011,26.67401764500012],[55.5384220710001,26.71295807500003],[55.55787194100011,26.714992580000157],[55.57048587300008,26.71938711100013],[55.57406660200015,26.720648505000057],[55.57422936300011,26.72068919500005],[55.6204533210001,26.746079820000073],[55.64039147200012,26.760565497000115],[55.70582116000016,26.783270575000145],[55.716075066000165,26.7839216170001],[55.73682701900006,26.782416083000058],[55.74683678500017,26.783270575000145],[55.75416100400017,26.786078192],[55.764496290000096,26.793890692],[55.774180535000106,26.796942450000085],[55.771169467000014,26.80365631700012],[55.766774936000076,26.81053294500005],[55.782074415000096,26.826157945000134],[55.78565514400006,26.84495677299999],[55.78101647200006,26.88963450700014],[55.773203972000175,26.90672435099999],[55.75611412900011,26.921332098],[55.73943118600019,26.932928778000033],[55.73259524800008,26.94090403900016],[55.757985873000194,26.95404694200012],[55.89771569100017,26.906805731000148],[55.935557488000114,26.914780992000104],[56.041026238000114,26.975653387000033],[56.1731876960001,27.002346096000153],[56.212412957000225,27.002997137000094],[56.23210696700008,26.99876536700016],[56.25766035200016,26.988714911000027],[56.273610873000074,26.977769273000046],[56.279470248000194,26.973822333000058],[56.28744550900014,26.955145575000174],[56.271332227000094,26.946966864000057],[56.2552189460001,26.938788153000147],[56.19353274800019,26.924546617000075],[56.171397332000105,26.906805731000148]]],[[[56.4817814460001,27.046332098000065],[56.46615644600009,27.04393138200014],[56.43458092500012,27.054836330000015],[56.4368595710001,27.080023505000085],[56.455414259000094,27.102769273000106],[56.472992384000094,27.106024481000148],[56.483571811000076,27.099758205000015],[56.49512780000012,27.09577057500003],[56.50464928500011,27.088934637000122],[56.50513756600017,27.086981512000147],[56.50847415500018,27.074367580000096],[56.504730665000096,27.061672268000123],[56.495290561000076,27.052313544000086],[56.4881291020001,27.049139716000028],[56.4817814460001,27.046332098000065]]],[[[50.32642662900017,29.208929755],[50.3165306540001,29.207572124000038],[50.30662970700004,29.215445750000118],[50.29674842700015,29.237473380000054],[50.290466264000116,29.25713773700012],[50.28326707800014,29.268939366000136],[50.29500071200002,29.27521840800007],[50.305817485000176,29.271275468000066],[50.32384140200023,29.264176868000092],[50.33465062100012,29.258660858000113],[50.33011126700015,29.241368485000105],[50.33301842500006,29.224025783000013],[50.32642662900017,29.208929755]]],[[[44.982504517000194,39.42017893500017],[44.98772383600013,39.419352112000134],[44.9985758870001,39.41961049500013],[45.00637902800011,39.41795684800017],[45.00994470200006,39.41402944000011],[45.01211511300008,39.40948191300007],[45.015629109000116,39.40596791600002],[45.05169925900012,39.38684763600013],[45.05717696100012,39.381731670000036],[45.06048425300011,39.374600322],[45.068649129000136,39.364213359000175],[45.07872603300004,39.35475657200003],[45.08797611500009,39.3507258100001],[45.09603763800007,39.34111399400011],[45.11434974800008,39.309349676000025],[45.12037723800009,39.29889434800013],[45.12890384900018,39.289282532000115],[45.13582849100018,39.27848215800016],[45.1462671310002,39.22866607700014],[45.15272668500009,39.21352488300012],[45.17892663600017,39.21982940700006],[45.28310632300011,39.19306101500017],[45.2856901440002,39.19492136700008],[45.292614787000076,39.19861623100017],[45.301709839000154,39.20138092100005],[45.31111495000019,39.20052826000001],[45.31390547700008,39.19424957299999],[45.31132165600016,39.18484446200013],[45.31111495000019,39.17629201300012],[45.32093347200017,39.17259714800012],[45.33488610800006,39.17042673800001],[45.348218628000176,39.16391550700014],[45.35390303500023,39.15319264700004],[45.34527307100009,39.13843902600003],[45.35193933100018,39.128310445000075],[45.36062097200007,39.12322031600008],[45.36992272900008,39.118957011000035],[45.37932784000023,39.111153870000024],[45.38346195500017,39.10324737600017],[45.39131677200007,39.08174998000011],[45.39638106300018,39.07332672200015],[45.405837850000154,39.06787485800005],[45.429712361000014,39.05947743700007],[45.434518270000154,39.05278534000014],[45.43229618400014,39.042475892000155],[45.428213745000136,39.03410431000016],[45.42526818900009,39.02562937500009],[45.42707686400021,39.014880677000164],[45.43860070800022,39.004235331000146],[45.45983972200011,38.99312489800015],[45.482577352000106,38.98439158200007],[45.49452900800005,38.98191651900011],[45.51027592000011,38.978655497000105],[45.53084314000009,38.96927622500006],[45.53556486900006,38.968452898000166],[45.543142131000224,38.96713165300018],[45.57084069800007,38.96638234500007],[45.627788127000116,38.95550445600013],[45.71687829600015,38.95478098600013],[45.76807409200009,38.93912990300011],[45.79108565300012,38.932095032000156],[46.00182214300017,38.897471822000156],[46.06796797700022,38.87411407500012],[46.126052286000146,38.86266774500011],[46.13587080900018,38.86370127400009],[46.20248173000018,38.870548401000136],[46.21994836500002,38.87716298400012],[46.27193485500007,38.90656687400003],[46.29131351700002,38.913930766000036],[46.3045426840001,38.91625620500015],[46.34335168500016,38.91747060199999],[46.36758793200008,38.92362009700015],[46.37823327700008,38.92470530300015],[46.391875855000166,38.92235402400003],[46.496055542000164,38.88607716900016],[46.51403894000006,38.882175599],[46.532074016000166,38.88300242100003],[46.553726440000126,38.88982371000016],[46.5698494870002,38.89773020400012],[46.58535241700022,38.907703756000146],[46.59920170100011,38.9196926880001],[46.61067386900018,38.9340070600001],[46.63883752400014,38.979482320000145],[46.65217004400009,38.99294403100002],[46.67041182500022,39.004907125000145],[46.72839278200009,39.02795481400001],[46.74482588800006,39.040253804000045],[46.76162072800011,39.07058787099999],[46.773764690000085,39.08536733000001],[46.781516154000116,39.09037994400008],[46.798052613000124,39.097382101000065],[46.806010783000175,39.10239471500013],[46.81169519000011,39.108518372],[46.83737837800018,39.14324493400012],[46.85096927900011,39.15549224900015],[46.86616215,39.16536244800015],[46.866391477000064,39.1654447530001],[46.8830086670001,39.1714085900001],[46.89871830200016,39.171744487000076],[46.92662357600014,39.16205515600013],[46.94160974100012,39.15890289400009],[46.95375370300022,39.16065989200017],[47.01362785800015,39.186956287000086],[47.02046797700015,39.18996042900012],[47.03090661600018,39.19959808400013],[47.03607425900006,39.20701365200016],[47.05292077600009,39.24494415300016],[47.08909427900019,39.28985097200016],[47.092504924000224,39.29982452400016],[47.10222009300016,39.30840281200001],[47.15007246900004,39.33114044200009],[47.24970463000014,39.36126780300015],[47.26131955200012,39.366383556000144],[47.291355835000076,39.37961293500013],[47.32441724900016,39.40587667600011],[47.324532104000156,39.40596791600002],[47.374244833000176,39.45557729100001],[47.40690433800014,39.47681630400017],[47.44876224700013,39.494696350000126],[47.518732137000114,39.51319651400014],[47.54115970900014,39.51516021700008],[47.554078817000146,39.521981507000035],[47.60699548400012,39.56358103500004],[47.62498028300009,39.57141074000005],[47.745281616000085,39.62378407800009],[47.78821212300008,39.65765063500011],[47.80377933800016,39.669931132000144],[47.82310632300002,39.680318095000146],[47.84687748200011,39.6852790320001],[47.92294519100008,39.6841421510001],[47.935244182000105,39.68651926700015],[47.945682820000144,39.69396067400008],[47.957258341000085,39.70734486900001],[47.957708154000066,39.70725622000005],[47.9714176840001,39.704554342000144],[47.99074467000017,39.694270732000135],[48.05203291900014,39.65008738300004],[48.2200846760002,39.494024557000145],[48.28860762600012,39.44503529900014],[48.316719604000156,39.41516632100003],[48.338940471000086,39.37894114200016],[48.32840548400006,39.376329778000105],[48.302456909000085,39.36989776600002],[48.24985030100018,39.34235422800013],[48.18721846500008,39.33258738200008],[48.15352543200012,39.31904815700001],[48.12458662900021,39.29760243800017],[48.10618982000002,39.26918040000005],[48.104329468000145,39.23484141100012],[48.11776534000009,39.20804718000014],[48.14215661600022,39.181201274000145],[48.1991040450001,39.13823232100016],[48.25625817900013,39.11978383400016],[48.2712960210001,39.10831166600006],[48.301475057000204,39.05803049700007],[48.30679773000023,39.04539561000014],[48.30628096500013,39.03146881100015],[48.301590395000034,39.01794599900001],[48.3014233800001,39.01746449800005],[48.29367191600008,39.00459706700014],[48.28462854000023,38.99400339800009],[48.28447351000008,38.99400339800009],[48.28447351000008,38.99395172100016],[48.284370158000144,38.99379669200012],[48.284370158000144,38.99377085400012],[48.24318404200008,38.97387542800011],[48.058544149000085,38.9483731080001],[48.055133504000054,38.94191355400012],[48.05534021000014,38.93436879500008],[48.052446330000144,38.92790924100002],[48.000046428000104,38.90258778900015],[47.99074467000017,38.891218974000154],[47.993121786000216,38.850084534000175],[48.012965535,38.82155914300013],[48.077974487000084,38.780941467],[48.21036950700014,38.72975596100018],[48.222978556000186,38.72146189400003],[48.22563499700007,38.713193254000046],[48.230316609000084,38.698620911000134],[48.22618249500007,38.679087219000124],[48.22804284700007,38.662189026000036],[48.2765153400002,38.63177744600007],[48.2922249760002,38.61356150300013],[48.310311727000084,38.60015147000017],[48.341059204000054,38.59958302900013],[48.391753784000144,38.61810903000007],[48.41526656100021,38.61810903000007],[48.42673872900011,38.59645660400015],[48.43371504700022,38.56997243300016],[48.446634155000226,38.55640737],[48.46265384900019,38.54493520100009],[48.47908695500004,38.524755555000084],[48.49593347200002,38.51031199100008],[48.51081628400018,38.493775534000164],[48.535641255000115,38.4691540460001],[48.54864343200009,38.45625844400017],[48.575928589000085,38.420369161000124],[48.60786462400003,38.39597788500002],[48.612962151,38.395646443000125],[48.6591276450001,38.392644755],[48.6832088620001,38.39801910400014],[48.710287313000066,38.407114156000134],[48.73560876500008,38.41956817600011],[48.7553491620001,38.435226136000054],[48.77772505700008,38.44481211400007],[48.809712769000186,38.44463124600012],[48.874278368142505,38.43406279107354],[48.87720787900017,38.3461774760001],[48.86589603000018,38.31688060100011],[48.87289472700016,38.29555898600013],[48.8748478520001,38.24274323100015],[48.89372806100002,38.205796617000104],[48.90772545700011,38.0834821640001],[48.949066602000094,37.96686432500012],[48.94117272200006,37.947739976000136],[48.94019616000016,37.924994208],[48.94450931100018,37.903387762000094],[48.95215905000012,37.88800690300015],[48.987478061000076,37.842474677],[48.987803582000055,37.83209870000009],[48.984711134000094,37.82318756700006],[48.98316491000011,37.81598541900003],[48.99366295700011,37.776760158000094],[49.014496290000096,37.73916250200001],[49.06519616000017,37.678859768000144],[49.13249759200019,37.62335846600011],[49.20557701900006,37.581691799000126],[49.36687259200002,37.51496002800009],[49.441742384000094,37.49485911700005],[49.82618248800022,37.453558661],[49.86744225400011,37.45856354400006],[49.90154056100019,37.46971263200005],[49.93376712300008,37.47443268400015],[49.96949303500017,37.45970286700016],[49.95997155000006,37.458482164000074],[49.94890384200008,37.46092357],[49.943125847000175,37.46161530200013],[49.935313347000175,37.453558661],[50.01872806100019,37.42772044499999],[50.148773634000094,37.403876044000086],[50.19564863400015,37.389349677000055],[50.227305535000106,37.365423895],[50.22331790500007,37.32933177300005],[50.23210696700019,37.31541575700008],[50.24512780000012,37.27928294500013],[50.254242384000094,37.264837958000086],[50.26872806100002,37.24689362200003],[50.29224694100017,37.19281647300012],[50.32227623800023,37.153265692],[50.35718834700006,37.12653229400017],[50.42945397200006,37.082953192000055],[50.47885175900009,37.03497955900015],[50.4939884770001,37.027736721000124],[50.51343834700012,37.02326080900018],[50.62403405000012,36.96328359600015],[50.6447860040001,36.95941803600006],[50.65870201900006,36.954331773000135],[50.68824303500011,36.92869700700005],[50.70313561300011,36.918443101000136],[50.86085045700011,36.849554755000085],[51.004730665000096,36.76764557500003],[51.08863366000017,36.737005927000105],[51.367849155000066,36.69257233300003],[51.54607181100002,36.650946356000034],[51.73096764400005,36.624253648000106],[51.90902754000009,36.58270905200014],[52.094086134000094,36.602525132000046],[52.258555535000106,36.650946356000034],[52.43051191500015,36.68512604400003],[52.608653191000116,36.71238841400013],[52.77930748800023,36.74038320500013],[52.95053144600009,36.781317450000174],[53.11573326900006,36.82225169500002],[53.44760175900014,36.88190338700009],[53.492360873000194,36.88788483300003],[53.88591556100002,36.90582916900014],[53.95777428500011,36.91962311400005],[54.006521030000016,36.95262278900013],[54.00424238400015,36.91461823100012],[53.94760175900014,36.898749091000084],[53.87647545700011,36.89166901200004],[53.83073978000019,36.88027578300007],[53.8182072270001,36.87523021000013],[53.80388431100013,36.87702057500003],[53.777110222,36.88373444200006],[53.762054884000094,36.88182200700011],[53.734385613000114,36.873236395],[53.71900475400017,36.870672919000086],[53.66041100400011,36.87689850500006],[53.609141472000175,36.87689850500006],[53.616953972000175,36.86566803600014],[53.63103274800019,36.86196523600002],[53.66382897200006,36.86322663000011],[53.64389082100015,36.85781484600007],[53.63599694100017,36.85700104400014],[53.66016686300006,36.83120351800012],[53.7010197270001,36.81659577],[53.85645592500006,36.80548737200017],[53.87208092500012,36.798407294000114],[53.88917076900006,36.793605861000046],[54.01433353000013,36.821112372000144],[54.02621504000015,36.82908763200011],[54.0330509770001,36.845770575000145],[54.03353925900014,36.94912344000012],[54.02808678500011,36.966213283000066],[54.013356967000014,36.973089911],[53.99439537900011,36.979152736000074],[53.997243686000076,36.993719794000114],[54.02003014400012,37.027736721000124],[53.996267123000194,37.057318427],[53.9803166020001,37.09406159100008],[53.95801842500006,37.178534247000144],[53.92774498800022,37.243801174000126],[53.9231876960001,37.25800202000015],[53.91374825029047,37.34275359690887],[54.186593873000135,37.32374359100008],[54.20643762200021,37.32459625299999],[54.22452437300014,37.33074574800015],[54.24302453600015,37.34495676700011],[54.26152469900009,37.3548269650001],[54.28333215400013,37.355653789000044],[54.3063798420001,37.353224996000066],[54.32849735500011,37.353276673],[54.3641540940001,37.362681784000145],[54.53334273300007,37.44081654900016],[54.55597701000008,37.44360707700004],[54.616851847000106,37.43301340700005],[54.638969361000164,37.43327179000012],[54.65395552600009,37.438904521000055],[54.67855350800019,37.459988505000084],[54.698293905000156,37.46629303000019],[54.71079960100005,37.47569814100013],[54.75834191900017,37.500554505000096],[54.78366337100007,37.5174526980001],[54.78831425000012,37.52463572200004],[54.79141483600009,37.539931946000095],[54.80505741300007,37.565046692000024],[54.808158000000134,37.579283550000085],[54.809398234000156,37.60333892900003],[54.808158000000134,37.61034108500003],[54.80361047300019,37.61692983100012],[54.79182824800008,37.625353089000114],[54.78831425000012,37.630804952000105],[54.78728072100014,37.651863098000106],[54.80371382600012,37.682920634000155],[54.808158000000134,37.70281606100015],[54.81363570200019,37.71862904900014],[54.82665816200003,37.735268860000176],[54.8566304930001,37.76113291500012],[55.00680220600011,37.843091736000176],[55.053517701000175,37.88440704300011],[55.06137251800013,37.894845683000035],[55.06664351400016,37.90843658500013],[55.07873579900016,37.913707581000054],[55.092791789000074,37.91554209400006],[55.103540487000174,37.918797709000145],[55.110775187000144,37.92647165900003],[55.121730591000215,37.94471344],[55.13030887800008,37.95230987600014],[55.1496358640002,37.957477519000136],[55.2074101150001,37.96615916000012],[55.21970910600012,37.96998321500014],[55.228804159000134,37.98579620400015],[55.2505082600002,37.99540802000014],[55.29608687400011,38.00755198200007],[55.30745568800009,38.00879221600009],[55.32812626100011,38.02212473600012],[55.348796834000126,38.03049631800009],[55.42310754400009,38.075894063000035],[55.44739546700012,38.083671367000036],[55.510957479000155,38.08584177600012],[55.7086715090002,38.118656311000144],[55.73843713400018,38.118604635000125],[55.80034550000019,38.10780426000009],[55.839412882,38.08992421500012],[55.85408898900019,38.08599680600015],[55.90504195200006,38.08558339500014],[55.921888469000095,38.08144928000005],[55.949070272000114,38.070080465000146],[55.963022909000095,38.06651479100016],[55.978422486000085,38.065894674000035],[56.12146285000002,38.086461894000095],[56.161873820000125,38.08237945600008],[56.16674062500013,38.08079215000011],[56.19784061700008,38.0706489060001],[56.21406701700019,38.068840231000124],[56.299746541000076,38.080234884],[56.31545617700007,38.08945912700001],[56.3254814040001,38.105220439],[56.32899540200006,38.123772278000146],[56.32424117000008,38.14113555900014],[56.29705936700006,38.165785217000135],[56.30336389200008,38.179427796000155],[56.36640913900012,38.22552317400009],[56.40010217300007,38.24412668900014],[56.43648238100016,38.25508209200002],[56.528156372000154,38.25740753200012],[56.5452095950001,38.25410024000014],[56.559162231000094,38.247382304000105],[56.57177128100008,38.239501648000086],[56.585207154000074,38.234566549000036],[56.60133020000015,38.236866150000154],[56.68153202300013,38.2646163940001],[56.729384399000224,38.27105011000004],[56.73899621600006,38.26960317000005],[56.77816695200008,38.244488424000124],[56.812376750000084,38.22895965600013],[56.827879679000176,38.22495473300013],[56.978361450000044,38.20273386600009],[57.018048950000065,38.18981475900007],[57.03840946500011,38.18728261299999],[57.05649621600011,38.19524078400015],[57.07044885200011,38.205059306000024],[57.10279829900017,38.22200917600013],[57.11468387900012,38.232111918000086],[57.13483768800009,38.259732971000076],[57.13791423900008,38.262364232000024],[57.14661991300008,38.26980987600002],[57.1639831950001,38.276476136000106],[57.17493859900017,38.27756134000013],[57.18589400200008,38.276476136000106],[57.207288046000166,38.270740052000164],[57.218346802000184,38.26508148200004],[57.221137329000065,38.258596090000154],[57.221550741000065,38.251154684000035],[57.22578820800018,38.24236969100015],[57.24883589700007,38.21151886100007],[57.266922648000076,38.176895651000066],[57.27860152200006,38.16294301400008],[57.31136438000007,38.13501190200019],[57.322939901000176,38.10511708600016],[57.344333943000116,38.08106170700013],[57.34929488100007,38.06356923400007],[57.3468144120001,38.046929424000055],[57.327074015000136,37.99411611],[57.35239546700021,37.967528585000174],[57.496262654000105,37.9223117070001],[57.51207564300009,37.92406870500018],[57.5276819250001,37.92784108500011],[57.54463179500012,37.92998565700019],[57.56137495900006,37.92822865900011],[57.61232792200021,37.91660146100004],[57.66111047400009,37.91742828400008],[57.67609663900006,37.92047719300011],[57.69118615700003,37.92027048800004],[57.704622030000074,37.913707581000054],[57.7171277270002,37.90507761600013],[57.729943481000106,37.898643900000145],[57.73482715000015,37.898271669000096],[57.73841841600009,37.897997945],[57.75474816900012,37.901021016000115],[57.76301639900006,37.89939320900008],[57.77004439300018,37.89388966900016],[57.77913944500008,37.878774312000175],[57.785030559000155,37.87257314100019],[57.80001672300014,37.86763804200013],[57.816449829000106,37.86864573200002],[57.83329634600008,37.87174631800015],[57.849522746000076,37.87272817000003],[57.88414595500009,37.86533844000003],[58.0409322510001,37.805703838000014],[58.10687137900018,37.79343068500016],[58.14056441300008,37.79113108300005],[58.15668745900021,37.78818552700015],[58.17353397600013,37.78162262000008],[58.18118208800009,37.77485300700012],[58.181285441000135,37.76792836600005],[58.179115031,37.760771179000116],[58.17994185400008,37.753045553],[58.19575484200007,37.72963612900004],[58.19926883900021,37.72219472300013],[58.2018526620001,37.70395294200007],[58.20195601400022,37.69010365800001],[58.20681359900007,37.67873484300013],[58.22386682200008,37.66746938100006],[58.2409200440002,37.66232757600007],[58.318848104000175,37.65305165600013],[58.331457153000116,37.64829742500014],[58.35781213400017,37.633311260000156],[58.371764770000176,37.630365703000066],[58.46230188000018,37.637497051000125],[58.47966516100009,37.64411163400011],[58.49310103400015,37.66067393100012],[58.50229943900015,37.67739125600014],[58.514288371000106,37.691473084000094],[58.52979130000019,37.700387268],[58.54932499200012,37.70157582700013],[58.56565474400022,37.69485789000002],[58.61588423700019,37.659511211],[58.65908573400022,37.64540354500015],[58.68172001100018,37.64271637000003],[58.70425093600013,37.64462839700015],[58.71293257600009,37.64881418900007],[58.7192371020001,37.65478281700011],[58.726368449000084,37.65938201900015],[58.73773726400012,37.659407858000165],[58.75902795500011,37.65615224300008],[58.76925988800004,37.65679819800006],[58.779801880000065,37.659640402000136],[58.79313440000007,37.672843730000025],[58.795614868000115,37.68772654200016],[58.801092570000016,37.69465118400013],[58.8610372310002,37.66808949800013],[58.938655233000105,37.65393015600007],[58.97813602700015,37.63951243100014],[58.99219201700006,37.631450908000076],[59.00552453600008,37.62801442500013],[59.03456669100015,37.624526265],[59.04562544700016,37.61961700500014],[59.078284953000065,37.592745259000154],[59.211713501000105,37.51631581700009],[59.2331075440002,37.514713847000145],[59.28922814900013,37.5351777150001],[59.31227583800009,37.53034596700009],[59.33232629400006,37.51512725900007],[59.351653280000185,37.49383656800008],[59.35630415900019,37.48063324000019],[59.353203572000126,37.45843821300014],[59.35919803900017,37.4475086470001],[59.36198856700011,37.439214580000126],[59.357854451000115,37.43027455700012],[59.351653280000185,37.420430197000044],[59.34834598800009,37.409293925000114],[59.35072310400008,37.38836497000012],[59.3703601490001,37.3194286090001],[59.3820390220001,37.30568267900016],[59.44467085800008,37.264186503000175],[59.463481079000104,37.24744333900004],[59.46937219300011,37.240699565000014],[59.46813195800004,37.23584198100018],[59.46451460800009,37.23245717400006],[59.463067667000104,37.229718323000114],[59.461827433000074,37.223000387000084],[59.45883020000022,37.21475799600016],[59.46172408000021,37.207600810000095],[59.47815718600006,37.20413848900007],[59.48466841600006,37.19876414000011],[59.49272994000014,37.19359649600001],[59.50120487500007,37.190211690000076],[59.50947310400008,37.18982411700007],[59.54120243300022,37.19984934500009],[59.55598189300022,37.19778228800014],[59.5727250570001,37.183390402000114],[59.57985640400013,37.16780995800009],[59.584610636000114,37.14889638300015],[59.59153527800018,37.13233408600014],[59.60497115100022,37.12388499000015],[59.614479614000196,37.1254869590001],[59.621507609000126,37.13150726400012],[59.63318648300011,37.14626088500013],[59.64259159300016,37.15023997000013],[59.65323693800016,37.14967152900006],[59.797207479000086,37.112206116],[59.862836548000104,37.06781606100013],[59.89952681500009,37.050556132000125],[59.98158898900007,37.03882558300013],[60.0192094320001,37.02580312100012],[60.04887170400016,36.99402211500008],[60.08638879400015,36.93002085400009],[60.132587525000105,36.87340932200003],[60.23852421100017,36.76974639900014],[60.2596081950002,36.74240956700011],[60.2886503500001,36.681069641000065],[60.30921757000007,36.65197581000014],[60.3422904870001,36.63714467400011],[60.50124719200008,36.639470113000144],[60.64108361800007,36.64148549499999],[60.854403930000124,36.644637757000154],[60.97294966700022,36.64634307900012],[61.075475708000084,36.64779001900011],[61.12518843600011,36.6407620240001],[61.165806112,36.6363178510001],[61.173970988000036,36.602314759000066],[61.1822392170001,36.586915181000066],[61.18595992000021,36.57766510000015],[61.18761356700016,36.565107727000125],[61.186166626000066,36.55280873600019],[61.1822392170001,36.54164662700008],[61.17686486900007,36.532034811000145],[61.170663697000144,36.524438375],[61.16632287600007,36.513844707000096],[61.167976522000146,36.501804098000136],[61.173970988000036,36.48681793300007],[61.15247359200012,36.4063060510001],[61.146685832000145,36.35726511700007],[61.1609485280002,36.328636373000094],[61.157744588000156,36.32465728800009],[61.156194296000216,36.32186676100007],[61.1535071210001,36.31494211800016],[61.16311893700012,36.31158315100005],[61.17107710800004,36.30641550800006],[61.17727828000014,36.300369365],[61.181412394000084,36.29447825100003],[61.185443156000154,36.283987936000145],[61.187200154000074,36.27354929600004],[61.18761356700016,36.25034657900004],[61.19092085800017,36.24063140900007],[61.2054936110002,36.22109771700015],[61.22047977700017,36.15893096900008],[61.22306359900019,36.12880361],[61.22471724400006,36.123687643000025],[61.22275354000012,36.11753814800012],[61.21221154800011,36.10637603800011],[61.207250611000084,36.099503072000125],[61.20415002400014,36.090563049000096],[61.20239302600006,36.080744527000135],[61.20197961500016,36.07159779900014],[61.19815555800014,36.060797424000114],[61.18968062300021,36.05578481100015],[61.18027551300016,36.05278757700013],[61.173970988000036,36.048033345000064],[61.17107710800004,36.035941060000155],[61.17459110500013,36.015838928],[61.173970988000036,36.00648549400016],[61.16177535000023,35.995943502],[61.14141483500012,35.98235260000011],[61.12983931500016,35.97051869700009],[61.14358524600018,35.96550608300011],[61.168079874000135,35.96235382100014],[61.18833703600015,35.95356882800017],[61.2058036710001,35.940494690000136],[61.22182336400007,35.9245266730001],[61.232158651000155,35.91067738900013],[61.2410469970001,35.89388254800015],[61.247351522000166,35.87620920800008],[61.25189904800001,35.84039744100012],[61.255516398000196,35.82535959900004],[61.256136515000065,35.80913320000003],[61.24972863800022,35.78670562800015],[61.256136515000065,35.77936757400014],[61.2563432210002,35.76949737500017],[61.24972863800022,35.745777893000124],[61.24900516800003,35.74019683900009],[61.24972863800022,35.722471822],[61.24673140500013,35.715495504],[61.23308882600011,35.70459177700003],[61.22916141800013,35.69859731100011],[61.231745239000155,35.67188059500013],[61.24538781800006,35.64929799500011],[61.26967574100015,35.61849884000004],[61.27701379400017,35.60919708200011],[61.287555787000116,35.568269349],[61.290036255000096,35.548063863000024],[61.28383508300013,35.527289938000145],[61.27050256300018,35.50842804000003],[61.247041463000095,35.48507029299999],[61.235982707000204,35.46584666000016],[61.22730106700012,35.43447906500013],[61.22182336400007,35.424247132000154],[61.20084273300002,35.40114776600008],[61.195054973000055,35.39008901000006],[61.190404094000115,35.36957346600009],[61.195054973000055,35.318103740000126],[61.18709680200012,35.300378723],[61.1678731690001,35.291387024000144],[61.143998657000076,35.288079732000156],[61.12270796700014,35.287666321000145],[61.1083419190002,35.277951152000114],[61.10245080600012,35.25666046200003],[61.10162398300011,35.235318095000125],[61.10234745300007,35.22560292600018],[61.10792850800013,35.221262105],[61.1127860930002,35.21165028900019],[61.11237268100009,35.20203847200018],[61.10234745300007,35.197697653000105],[61.096352987000074,35.19320180200016],[61.10152063000007,35.18322825200006],[61.137074016000014,35.14390248700009],[61.13986454300018,35.13966501900013],[61.13790083800003,35.12829620400005],[61.135213664000126,35.11940785700013],[61.13676395600007,35.111191305000105],[61.147305949000184,35.10209625200004],[61.12312137900014,35.07419097900005],[61.11588667800018,35.05987660800015],[61.109892212000055,35.01853546200011],[61.09531945800009,34.98101837200012],[61.0920121660001,34.96148468000002],[61.088911581000026,34.95192454100011],[61.07475223800012,34.933114319000126],[61.071548299000106,34.920556946000104],[61.07258182800009,34.91032501300013],[61.07702600100012,34.89172149600007],[61.077749472000185,34.88303985600011],[61.07340865100011,34.84769317700001],[61.06545048000007,34.81472361300014],[61.034754680000134,34.806248678000046],[61.0290702720001,34.78971222000014],[61.009639933000095,34.76098012300004],[60.978013957000115,34.74061960900012],[60.95992720600011,34.723204651000074],[60.958686971000155,34.699588521000166],[60.96199426300004,34.673750306000144],[60.95796350100008,34.64941070600004],[60.9475248620001,34.63799021400003],[60.93584598800007,34.63566477500011],[60.922823527000126,34.63654327400003],[60.90887089000015,34.63468292200004],[60.895435018000086,34.62832672200001],[60.8889237880002,34.621660462000094],[60.883859497000145,34.61370229100014],[60.838487590000085,34.57091420500011],[60.818953898000096,34.559907125],[60.79404585800014,34.55411936500003],[60.73926884000011,34.548021546000186],[60.714360799000154,34.5374278770001],[60.69968469200008,34.516395569000096],[60.71033003800008,34.515129497000046],[60.718908325000115,34.511150411000145],[60.72531620300006,34.5042774460001],[60.7338944900001,34.48042877200011],[60.7427828370002,34.47345245400011],[60.76727746600013,34.464150696],[60.77936975100013,34.45508148200004],[60.78908492000007,34.44348012300016],[60.80489790800007,34.417486878000105],[60.87910526600016,34.33764679000002],[60.890474080000125,34.31891408300014],[60.815956665000186,34.31527089500004],[60.714360799000154,34.31012908900014],[60.64366744000009,34.306640930000086],[60.650592082000145,34.28535024100002],[60.63498579900008,34.271216736000085],[60.58744348200016,34.25026194300007],[60.55240686100015,34.22005706800017],[60.5208842370001,34.18613149000005],[60.492772257000034,34.13902842200015],[60.48677779100015,34.0942766320001],[60.48846068000009,34.080927320000015],[60.49938684100007,33.99425689800002],[60.52801558500002,33.84144968700009],[60.52584517400006,33.802149760000034],[60.49494266800016,33.74411712600006],[60.48688114500007,33.71138010700015],[60.51178918500014,33.63838714600002],[60.574834432000074,33.587795919000186],[60.655553019000116,33.55989064500001],[60.7338944900001,33.554852194000134],[60.80737837700021,33.55815948600004],[60.846032348000136,33.55578237000019],[60.87962203000009,33.548702698000156],[60.895124959000064,33.541132101000116],[60.91197147600004,33.528445536000056],[60.9208598220001,33.51410532600006],[60.91978829300015,33.51257051900008],[60.91207482900008,33.50152211600014],[60.89729537000007,33.497026265000116],[60.84985640500011,33.49436493000008],[60.832183065000066,33.48449473100011],[60.82928918400008,33.470128682],[60.83280318200016,33.45346303399999],[60.83466353400015,33.43625478100002],[60.829082479000164,33.41628184100007],[60.818643840000185,33.404887187],[60.78588098100007,33.38778228800014],[60.75704553300008,33.366336568000015],[60.71901167800016,33.32303171900004],[60.6703324790001,33.26771209800002],[60.615968873000064,33.206191305000104],[60.56759973100012,33.151285096],[60.56150191200006,33.13730662100009],[60.56294885300022,33.05826751800011],[60.57752160700007,32.99434377000013],[60.60615035000009,32.91235911000017],[60.64005009000018,32.81551747700014],[60.67488000500006,32.71560109500011],[60.71167362500014,32.61031036399999],[60.7522913010001,32.49458099400014],[60.79631962100015,32.35590728800015],[60.83032271300008,32.248885397],[60.82825565600009,32.16744333900006],[60.81481978300005,32.087861633000145],[60.80882531700015,32.07117014600003],[60.782677043000064,32.04254140200011],[60.77492557800022,32.02719350200006],[60.778336222000156,32.02104400600008],[60.786707804000145,32.01690989200016],[60.7925989180002,32.01127716100005],[60.78402063000007,31.98926300000015],[60.78608768800004,31.978979390000166],[60.791048625000116,31.96916086800009],[60.79497603400008,31.95846384700018],[60.79673303200016,31.936759746000078],[60.78929162600011,31.87495473299999],[60.79146203600013,31.82653391600003],[60.80531132000007,31.733981426000085],[60.7925989180002,31.660084127000015],[60.79497603400008,31.63667470400004],[60.80996219900006,31.58835723900002],[60.82174442500016,31.494667868000153],[60.855024048000104,31.482730611000118],[60.95599979700014,31.470069885000083],[61.12353479000014,31.44908925400007],[61.12514864900018,31.44888715600014],[61.29479048700008,31.427643535000144],[61.490850871000156,31.403097229000178],[61.606258630000205,31.388741288000016],[61.66117639100011,31.381909892000024],[61.68691125500012,31.373176575000162],[61.706548299000154,31.359844055000124],[61.74230839100008,31.320880025000136],[61.749233032000156,31.302379863000038],[61.74230839100008,31.259436748000056],[61.74272180200009,31.239541321000146],[61.7524369710002,31.219129130000013],[61.779205363000095,31.18109527600016],[61.7876802980002,31.158616029000157],[61.78933394400016,31.1293154910001],[61.79181441300013,31.118928528000154],[61.80928104600016,31.087147522000137],[61.82147668400008,31.054488017000082],[61.82633426900011,31.034592591000077],[61.82643762200021,31.014955546000024],[61.81930627500017,30.993923238000107],[61.80018599500007,30.961418762000093],[61.804526815000166,30.94973988800011],[61.808350870000105,30.881423646000048],[61.80235640400011,30.878529765000152],[61.79987593600012,30.871501770000137],[61.798428996000126,30.853466695000137],[61.799772583000184,30.852381491000145],[61.802253052000175,30.847058818],[61.785199829000106,30.831400859000052],[61.70262089100017,30.74551462800012],[61.57622033700014,30.613894755000057],[61.46170536300022,30.49457387300013],[61.46170536300022,30.49452219600012],[61.380366658000206,30.41028961200014],[61.272156210000134,30.29830678300003],[61.21562219300009,30.239705709000177],[61.13304325300012,30.154284566000072],[60.97842736800012,29.994397685000035],[60.97811731000016,29.99413930300007],[60.90215295400011,29.916883036000073],[60.8443787030001,29.85817861000011],[60.92509729000014,29.774979554000126],[60.978013957000115,29.720615947000127],[61.04333296700017,29.65242889500003],[61.11867720500002,29.57398407],[61.19691532400006,29.492283630000102],[61.279184205000064,29.40662994400013],[61.29871789600022,29.392651469000143],[61.319801880000085,29.385390930000156],[61.337371867000144,29.37438385000017],[61.34657027200014,29.3490623980001],[61.344709920000156,29.32952870700008],[61.33282434100014,29.29449208600006],[61.33282434100014,29.27490671800014],[61.34233280500009,29.254520366000108],[61.37416548600007,29.223850403000153],[61.386981242000125,29.20664215099999],[61.3900818280001,29.195428365000154],[61.39276900300009,29.17046864800007],[61.3979366460002,29.159073995000156],[61.408581991000084,29.148557841000112],[61.41767704200017,29.145663961000125],[61.426875448000175,29.144630433000046],[61.43772749800021,29.139617818000158],[61.447959432000204,29.125406800000025],[61.45323042800012,29.108379416],[61.46087854000021,29.093884176000145],[61.47803511500015,29.087476298000027],[61.4877502850002,29.080655009000072],[61.490644165000184,29.072025045000107],[61.48723352100015,29.06292999300014],[61.47803511500015,29.054325867000028],[61.47080041500012,29.047866313000053],[61.46800988800007,29.041742656000093],[61.47028365100007,29.035903219000105],[61.47803511500015,29.030658061000068],[61.490954224000085,29.02549041800007],[61.50211633300009,29.017713115000063],[61.51090132700019,29.00737782800015],[61.55317264800008,28.922137553000184],[61.55896040900004,28.902733053000123],[61.561337525000084,28.885938212000053],[61.56650516800019,28.870977886],[61.595340617000055,28.842685039000017],[61.623969361,28.787649638000136],[61.65301151600013,28.756333720000143],[61.75615767400015,28.673961487000057],[61.797705526000215,28.62657419900007],[61.86116418400015,28.57476857500002],[61.89279016100008,28.542599997000153],[61.91129032400008,28.533737488000057],[61.97113163200006,28.518983866000053],[62.01882897900012,28.494695943000135],[62.049111369000144,28.48632436100017],[62.11556726100011,28.481363424000122],[62.14750329600017,28.475265605000075],[62.23070235200006,28.442451071000065],[62.362787313000155,28.418886617000155],[62.3905375570001,28.40612253900018],[62.40216475400004,28.394107768000126],[62.41074304200017,28.38069773400018],[62.42097497600017,28.368553772000084],[62.43720137500005,28.360440572000172],[62.45384118600011,28.355686341000176],[62.464279826000016,28.349821066000104],[62.47120446800013,28.339692485000125],[62.47771569800008,28.32230336500011],[62.49228845200017,28.300702616000038],[62.55543705200008,28.24031870600014],[62.57564253800009,28.229027405000167],[62.73930179900017,28.258327942000122],[62.761522664000175,28.246442362000025],[62.766380249000086,28.211483257],[62.751704142000136,28.108724671000076],[62.735684448000164,27.99498484300007],[62.754184611000106,27.925841777000084],[62.78028120900009,27.82972361300007],[62.786379029000074,27.770269878000118],[62.794698934000195,27.68947377600007],[62.79971154800009,27.639270122000127],[62.80932336500009,27.54705352800006],[62.81469771300008,27.494963684000126],[62.808599894000196,27.45336415600012],[62.75604496300011,27.348099263000037],[62.77568200700014,27.32691192700015],[62.78064294400011,27.31605987600001],[62.7787825930001,27.299833476000103],[62.77413171400021,27.285519104000013],[62.76808557100017,27.274356995000076],[62.75821537300013,27.267690735000155],[62.74235070800009,27.266812236000032],[62.78560388200005,27.232499085000097],[62.800641723000105,27.2251610310001],[62.808548218000084,27.22536773700007],[62.822294149000214,27.232499085000097],[62.829322144000145,27.233635966000023],[62.83738366700013,27.231258850000174],[62.86084476800008,27.21963165300012],[62.89241906700008,27.21348215700014],[62.91960087100002,27.214877421000107],[62.977840210000096,27.2251610310001],[63.00378177900021,27.228778382000186],[63.05618168200007,27.243196106000095],[63.08274336800016,27.24438466400012],[63.09943485500011,27.24283437200002],[63.11230228700012,27.243196106000095],[63.166975953000154,27.258699036000124],[63.177104533,27.25844065400015],[63.189558553000126,27.25446156900007],[63.215448446000124,27.23322255500001],[63.2268172610002,27.226969706000105],[63.251518596000125,27.218959860000112],[63.2606136470001,27.21379221700012],[63.27125899300021,27.203405253000096],[63.2855733640001,27.184646708000017],[63.319628133000066,27.1173123170001],[63.30241988100007,27.123358460000148],[63.28056075100013,27.123203430000032],[63.260923707000096,27.115606995000135],[63.24996830200021,27.09953562400007],[63.2462475990001,27.089458720000138],[63.23560225500009,27.07586781900015],[63.23136478700016,27.065842590000113],[63.229917847000166,27.054060364000023],[63.23498213700005,26.941147359000137],[63.24397383600009,26.922440491000074],[63.25647953300009,26.906162415000136],[63.264851115000084,26.890039368000043],[63.26164717600008,26.871745911000076],[63.2466610110001,26.85955027300015],[63.20604333500009,26.853710836000072],[63.189558553000126,26.84601104799999],[63.18227217600022,26.83024973500001],[63.17431400600006,26.685038961000046],[63.16377201300011,26.645093078000016],[63.141344441000086,26.625404359000143],[63.13126753800006,26.625817770000154],[63.12346439700016,26.629435120000053],[63.11622969600008,26.634034322],[63.107599732,26.637599996000162],[63.09803959100006,26.638375143000175],[63.068894083,26.6325357060001],[63.029413290000065,26.633517558000065],[62.990449259000094,26.63889190700003],[62.90001550300022,26.640907287000157],[62.821674031000065,26.642612610000025],[62.75356449400012,26.64416290300015],[62.742712443000094,26.641320699000076],[62.73506433100013,26.632225647000027],[62.72472904500009,26.615120749000152],[62.718011108000184,26.610521545000108],[62.71056970200007,26.606904195000123],[62.70193973800011,26.60401031500014],[62.67103723200009,26.597705791000024],[62.66251062000018,26.598274232000094],[62.65134851100007,26.6031834920001],[62.64059981300014,26.605147197000136],[62.63202152500011,26.600392965000154],[62.62411503100006,26.592951559000042],[62.6157951260001,26.587112122000136],[62.595331259000055,26.580704244000017],[62.4280029710001,26.56478790300018],[62.41849450700008,26.562307435000108],[62.41063968900008,26.55682973200011],[62.40247481300011,26.54380727100009],[62.39668705300008,26.53905303900008],[62.38635176600004,26.536624248000024],[62.36526778200001,26.537502747000147],[62.35586267100009,26.536624248000024],[62.347594442000144,26.533316956000032],[62.334675333000206,26.52484202100011],[62.32651045800011,26.52065623],[62.30697676600019,26.513679912],[62.29829512500012,26.50877065000016],[62.2919906010002,26.50122589100003],[62.290130249000214,26.492440898000112],[62.29312748200001,26.485877991000123],[62.29695153800017,26.480245260000018],[62.297881714000106,26.474044088000127],[62.2875464270002,26.456629131000096],[62.25612715600018,26.428930563000065],[62.24899580900015,26.416528219],[62.2544735110001,26.393583883000144],[62.2642403560001,26.375187073000163],[62.265118856000214,26.360976054],[62.24341475500014,26.350640767000083],[62.2058976650002,26.35534332300007],[62.16145593300004,26.369502665000123],[62.123835490000054,26.373998515000054],[62.106885620000206,26.34971059100006],[62.10326827000004,26.325112610000144],[62.09417321800018,26.31482900000016],[62.0527803950001,26.308576151000167],[62.03226485200017,26.302891745000025],[62.013661336000176,26.294623515000083],[61.97774621600016,26.273177795000052],[61.85713342300007,26.242378642000077],[61.83294885300021,26.22537709500007],[61.818376099000055,26.198453675000152],[61.80990116400002,26.167447815000017],[61.80070275900001,26.10662465500009],[61.79274458800009,26.05282948900016],[61.783236125000165,25.990611064000078],[61.77062707500007,25.907412008000065],[61.760085083000114,25.837597148],[61.75450402900017,25.819975485000114],[61.73931115700007,25.803283997000065],[61.721947876000144,25.799666646],[61.70262089100017,25.800080058],[61.68143355300006,25.79548085500006],[61.66034956900008,25.7691775520001],[61.66531050600023,25.73238393200002],[61.67636926300017,25.692799785000048],[61.67347538300007,25.658279928000084],[61.667170858000155,25.650476786000137],[61.652494751000084,25.637299297000155],[61.646603638000066,25.627687480000148],[61.643192993000156,25.61332143200015],[61.63905887900008,25.55492706299999],[61.633064412000095,25.46929921500013],[61.62603641800009,25.369770406],[61.620041951000154,25.285486145000093],[61.5882814080002,25.202130453000095],[61.58822675900014,25.20209381700009],[61.5818791020001,25.216701565],[61.57976321700019,25.233465887000122],[61.562347852000094,25.244818427],[61.559255405000016,25.250962632000082],[61.55445397200007,25.25409577000015],[61.544688347,25.248277085],[61.54184004000015,25.24258047100001],[61.5403751960001,25.226507880000113],[61.53728274800013,25.220363674000154],[61.54281660200015,25.215643622000055],[61.55274498800023,25.205064195000187],[61.55836022200006,25.20050690300006],[61.536957227000094,25.20270416900003],[61.52076256600006,25.20864492400007],[61.50424238400015,25.208807684000035],[61.48259524800008,25.193670966000028],[61.50619550900009,25.186835028000118],[61.51596113400015,25.181870835000055],[61.52418053500016,25.17316315300017],[61.518809441000116,25.163519598],[61.50318444099999,25.145249742000132],[61.49854576900006,25.13467031500009],[61.49854576900006,25.129380601000104],[61.49740644600015,25.125433661000116],[61.48951256600017,25.118597723],[61.47510826900012,25.11163971600011],[61.42058353000002,25.096869208000115],[61.435069207000055,25.087713934000064],[61.411716503000115,25.05940816500005],[61.243530015000175,25.11188581200004],[61.18506823800013,25.123249171000012],[61.185475634000085,25.139607500000025],[61.170268609000146,25.164440118000144],[61.03060957100009,25.209784247000087],[60.866709832000105,25.234605210000055],[60.727712436000076,25.264390367000075],[60.63347415500019,25.27496979400011],[60.616953972,25.283189195000105],[60.632334832000225,25.296087958000115],[60.60816491000011,25.32758209800012],[60.604991082000055,25.341050523000106],[60.60474694100011,25.39716217700014],[60.60157311300005,25.405951239],[60.56519616000016,25.438625393000123],[60.54965254000009,25.446926174],[60.53207441500015,25.44891998900006],[60.514170769000124,25.447333075000028],[60.44564863400015,25.42816803600006],[60.42847741000011,25.419623114000117],[60.41895592500011,25.405991929],[60.40333092500006,25.388861395000063],[60.39527428500011,25.377875067],[60.39503014400006,25.371323960000108],[60.39812259200008,25.36497630399999],[60.40202884200007,25.34467194200009],[60.40691165500013,25.341945705000015],[60.413747592000014,25.34129466400016],[60.424815300000056,25.336371161],[60.43344160200016,25.336493231000173],[60.43767337300019,25.333929755000053],[60.44166100400017,25.32758209800012],[60.45220669400007,25.31738461100015],[60.44125410200016,25.318793036000056],[60.44109134200019,25.31659577000009],[60.47006285100022,25.30308665600002],[60.467245869000095,25.29027590600019],[60.455645076000074,25.292790076000088],[60.423523484,25.30496479200015],[60.38282311300011,25.320257880000113],[60.362559441000165,25.33055247600005],[60.3192233450002,25.329851431000137],[60.29029381600011,25.351304429000052],[60.29965254000016,25.367254950000145],[60.303965691000116,25.371161200000145],[60.289398634000094,25.377183335000055],[60.271250847,25.379584052],[60.23503665500018,25.37799713700015],[60.20736738400009,25.37311432500009],[60.20150800900014,25.371161200000145],[60.19255618600002,25.362005927000084],[60.19255618600002,25.356146552000112],[60.19507897200006,25.35122304900007],[60.21597377000015,25.33828024100013],[60.20920955000011,25.3196885550001],[60.1819767590001,25.31989166900003],[60.161875847,25.331976630000113],[60.15088951900006,25.335272528000143],[60.116709832000055,25.339829820000105],[60.10889733200012,25.34511953300007],[60.0979110040001,25.35814036700016],[60.08203819300016,25.36594981700007],[60.045325343000094,25.363858323000116],[59.9944234160001,25.356849768000032],[59.94082283800001,25.35491135200006],[59.90380595600013,25.32986334900015],[59.86169624400006,25.343056803000124],[59.81986549300015,25.379201443000152],[59.77487302600016,25.38986858300008],[59.659134493000145,25.38336122900007],[59.613997043000175,25.38377666000015],[59.53798983300013,25.39974998900003],[59.490443371000225,25.443466614000116],[59.4539017560002,25.461607493000187],[59.397288103000015,25.451845653000092],[59.279144727000094,25.434719143000123],[59.251068556000206,25.43073151200015],[59.19532311300012,25.42291901200015],[59.13835696700019,25.39850495000003],[59.11719811300011,25.39419179900004],[59.108734571000156,25.395697333000086],[59.10132897200006,25.402248440000065],[59.09408613400015,25.406398830000096],[59.085459832000225,25.40460846600011],[59.07618248800005,25.400702216000028],[59.06690514400011,25.39850495000003],[59.04395592500006,25.399603583000058],[59.02418053500011,25.403225002000124],[59.00733483200011,25.40973541900003],[58.99431399800013,25.419623114000117],[58.948090040000096,25.486517645000063],[58.92351321700019,25.513373114000146],[58.88445071700008,25.529486395],[58.849619988000114,25.52879466400016],[58.84034264400005,25.532904364000117],[58.834157748000194,25.542385158000044],[58.83057701900012,25.552313544000025],[58.825205925000056,25.56037018400015],[58.813731316000116,25.563625393],[58.728037957000225,25.563625393],[58.54639733200011,25.593654690000065],[58.48414147200018,25.58466217700014],[58.4305119150001,25.587958075000174],[58.411794467000014,25.596014716000028],[58.41895592500006,25.612005927000112],[58.389659050000056,25.610296942],[58.357595248000074,25.604559637000033],[58.344086134000094,25.598130601000108],[58.321055535000106,25.580796617000047],[58.30591881600011,25.57729726800015],[58.299001498000024,25.579820054000052],[58.29558353,25.58388906500012],[58.29070071700008,25.583726304000052],[58.27898196700007,25.573879299000126],[58.27100670700011,25.56867096600014],[58.260752800000056,25.56574127800003],[58.25196373800022,25.566839911000056],[58.24830162900017,25.573879299000126],[58.2424422540001,25.571437893],[58.20728600400017,25.549302476000108],[58.170420769000124,25.54409414300012],[58.137868686000026,25.54979075700011],[58.10621178500017,25.558905341000113],[58.073090040000096,25.563625393],[58.046234571000156,25.57493724200019],[58.02418053500011,25.60187409100014],[57.99431399800008,25.659165757],[57.96322675900015,25.693182684000035],[57.92530358200022,25.701320705000125],[57.88404381600017,25.69163646],[57.84351647200006,25.67283763200014],[57.809418165000146,25.647772528000033],[57.787445509000094,25.635443427],[57.77173912900017,25.635565497000144],[57.77588951900011,25.67967357000005],[57.77979576900012,25.691148179],[57.78248131600017,25.696112372000144],[57.78305097700016,25.69977448100009],[57.78150475400012,25.70758698100009],[57.77125084700017,25.7304548200001],[57.75562584700017,25.742743231000148],[57.73471113400015,25.747707424000012],[57.70972741000011,25.748521226000108],[57.68718509200002,25.74640534100011],[57.63184655000011,25.734930731000148],[57.61963951900006,25.73700592699999],[57.59880618600019,25.74640534100011],[57.58716881600017,25.748521226000108],[57.57569420700022,25.74750397300006],[57.55583743600001,25.74282461100013],[57.54558353000019,25.741766669000086],[57.520681186000076,25.743557033000073],[57.45248457100015,25.762884833],[57.45997155000011,25.76902903900016],[57.326182488000065,25.777004299000126],[57.311534050000056,25.78412506700009],[57.304372592000135,25.799750067000062],[57.29867597700015,25.848700262000033],[57.27442467500006,25.899400132000025],[57.26197350400011,25.939886786000116],[57.25359134200008,25.958970445000105],[57.243662957000055,25.967027085000055],[57.24203535200015,25.970892645000063],[57.21973717500011,25.99502187700007],[57.21534264400012,25.99583567899999],[57.20264733200016,25.993882554000137],[57.1985783210001,25.99502187700007],[57.19678795700011,25.999172268],[57.194102410000106,26.01097239799999],[57.180511915000096,26.046861070000162],[57.17652428500011,26.063544012000122],[57.16675866000017,26.08299388200011],[57.16456139400006,26.094916083000058],[57.17090905000012,26.115627346000064],[57.201996290000096,26.146226304],[57.212901238000114,26.166245835000055],[57.19922936300023,26.198187567000062],[57.13306725400016,26.26373932500009],[57.138438347,26.290432033000016],[57.131032748000024,26.296616929],[57.12525475400017,26.341864325000117],[57.11817467500012,26.36432526200009],[57.10710696700008,26.382269598000065],[57.08790123800011,26.39899323100009],[57.08318118600019,26.406480210000055],[57.08033287900017,26.41535065300009],[57.07667076900011,26.438218492000104],[57.076345248000194,26.447455145000063],[57.093435092000014,26.572211005],[57.09001712300014,26.618801174],[57.02491295700011,26.850978908000073],[57.01124108200017,26.868882554000052],[56.97730553500011,26.89533112200003],[56.965179884000094,26.911118882000082],[56.96648196700019,26.927232164000046],[56.935720248000024,26.94554271],[56.925547722000175,26.955145575000174],[56.94011478000012,26.954291083000086],[56.951019727000094,26.958156643000095],[56.96111087300008,26.963853257000054],[56.973317905000016,26.968817450000117],[56.964854363000114,26.975653387000033],[56.96355228000019,26.985052802000055],[56.96705162900017,26.994818427],[56.973317905000016,27.002997137000094],[56.942556186000076,26.991115627000156],[56.93238366000011,26.98932526200015],[56.92310631600017,26.991400458],[56.917246941000116,26.996079820000105],[56.91309655000006,27.000799872000115],[56.90821373800011,27.002997137000094],[56.90308678500017,27.006415106000116],[56.89779707100009,27.01300690300009],[56.89087975400011,27.017035223000065],[56.8713485040001,27.00844961100013],[56.86548912900017,27.011867580000157],[56.86296634200008,27.020086981000148],[56.86345462300008,27.030259507],[56.85059655000012,27.027655341000084],[56.843760613000114,27.03290436400009],[56.84408613400015,27.040228583],[56.85352623800022,27.04393138200014],[56.85840905000012,27.047430731000034],[56.87598717500006,27.064398505],[56.88461347700016,27.070624091000138],[56.88461347700016,27.078070380000142],[56.85531660200016,27.081691799000097],[56.8313908210001,27.09613678600006],[56.81519616000011,27.11701080900012],[56.80884850400011,27.139553127000013],[56.797211134000094,27.12933991100006],[56.784434441000116,27.125311591000113],[56.757334832000105,27.12523021000011],[56.74236087300008,27.12958405200011],[56.733083530000016,27.139227606000173],[56.72559655000006,27.14883047100015],[56.71607506600017,27.153143622000144],[56.612315300000056,27.154242255000028],[56.5896916020001,27.160630601000136],[56.582855665000096,27.153143622000144],[56.558604363000114,27.165187893000066],[56.528575066000165,27.170721747000087],[56.46615644600009,27.173651434000117],[56.436534050000056,27.178859768],[56.3841251960001,27.197495835],[56.353037957000055,27.201605536000145],[56.29118899800019,27.198472398000074],[56.2596134770001,27.191229559000064],[56.23658287900011,27.177069403000033],[56.215179884000094,27.16787344000015],[56.15015709700006,27.16535065300003],[56.123708530000066,27.160630601000136],[56.11557050900015,27.155747789000074],[56.098887566000116,27.141017971000068],[56.09555097700015,27.1361351580001],[56.09351647200006,27.12555573100006],[56.08814537900017,27.122219143000038],[56.080414259000094,27.120754299000154],[56.071787957000055,27.115627346000124],[56.05453535200016,27.10260651200015],[55.98731530000012,27.066351630000142],[55.96314537900011,27.048041083000083],[55.962738477000094,27.04393138200014],[55.95753014400012,27.04075755400008],[55.9393009770001,27.026678778000033],[55.92839603000007,27.023423570000162],[55.88379967500006,27.018744208000058],[55.84245853000007,27.00975169500005],[55.831797722,27.00873444200009],[55.798350457000225,27.00975169500005],[55.78728274800019,27.00771719],[55.77247155000006,26.99827708499999],[55.76368248800006,26.99616120000009],[55.726328972,26.99616120000009],[55.69483483200011,27.002752997000144],[55.684825066000116,27.002997137000094],[55.6658634770001,26.995428778000147],[55.63233483200005,26.967515367000104],[55.61963951900012,26.96137116100014],[55.608571811000076,26.95368073100012],[55.554453972000175,26.89988841400016],[55.56885826900006,26.90412018400009],[55.57504316500009,26.907171942000087],[55.58236738400015,26.9135602890001],[55.58643639400012,26.889064846000068],[55.580414259000094,26.859116929000024],[55.568532748000024,26.830796617000043],[55.554453972000175,26.81053294500005],[55.52173912900017,26.784572658000155],[55.48406009200019,26.767523505],[55.442230665000146,26.759914455000157],[55.39730879000015,26.762152411000145],[55.31674238400009,26.78709544500016],[55.2708439460001,26.792547919000114],[55.23292076900012,26.776434637000033],[55.22103925900015,26.757391669000143],[55.21558678500011,26.73948802299999],[55.20590254000015,26.72638580900012],[55.18165123800006,26.721177476000108],[55.162119988000114,26.71914297100001],[55.11817467500006,26.707586981000148],[55.10328209700012,26.701320705000015],[55.037933790000096,26.64891185100005],[55.02686608200011,26.64264557500009],[54.93067467500006,26.57265859600001],[54.822032097000175,26.515773830000157],[54.81519616000017,26.510443427],[54.808929884000094,26.50385163000011],[54.80152428500011,26.49823639500012],[54.79102623800005,26.49583567900008],[54.778493686000076,26.49787018400009],[54.761566602000094,26.50682200700014],[54.749685092000014,26.508937893000123],[54.66382897200012,26.50202057500006],[54.61996504000015,26.508246161],[54.6028751960001,26.530991929000134],[54.59058678500017,26.559963283000126],[54.56128991000011,26.58466217700011],[54.516612175000056,26.592515367000104],[54.4256291020001,26.589341539000046],[54.38941491000011,26.60512929900007],[54.37142988400009,26.63084544500013],[54.35661868600019,26.662827867000132],[54.33773847700015,26.693426825000145],[54.308116082000225,26.714992580000157],[54.28687584700006,26.71865469],[54.266856316000165,26.71576569200009],[54.24756920700022,26.710842190000037],[54.171397332000055,26.70612213700009],[54.15040123800022,26.70819733300011],[54.081716342000135,26.72614166900017],[54.06446373800011,26.728583075000113],[54.05372155000012,26.731634833],[54.034515821000156,26.745306708000143],[54.02621504000015,26.74909088700015],[54.015798373000074,26.749457098000093],[53.995127800000056,26.74559153900016],[53.92937259200008,26.71800364800005],[53.88347415500019,26.71234772300006],[53.84278405000012,26.702093817000144],[53.82081139400012,26.701320705000015],[53.77613366000011,26.714260158000044],[53.751719597000175,26.716050523000106],[53.728282097,26.704738674000122],[53.716075066000116,26.708563544000143],[53.66382897200006,26.74909088700015],[53.588633660000106,26.788763739000085],[53.4915470710001,26.854315497000115],[53.47722415500013,26.870103257000054],[53.47144616000017,26.88963450700014],[53.46908613400009,26.937201239000117],[53.461110873000024,26.957098700000028],[53.44410241000016,26.975653387000033],[53.41211998800006,26.9935570330001],[53.072032097000175,27.096869208000086],[53.050140821000156,27.09857819200009],[53.0286564460001,27.10407135600012],[53.01531009200019,27.117336330000125],[53.004730665000146,27.13324616100006],[52.99219811300017,27.14695872599999],[52.93262780000006,27.16034577],[52.92335045700011,27.170233466000113],[52.91472415500019,27.191961981000176],[52.894297722,27.203070380000025],[52.84831790500007,27.215277411000088],[52.76775149800019,27.279730536000056],[52.732188347000054,27.301336981000144],[52.67880293100009,27.32237376500011],[52.601328972,27.35293203300004],[52.58073978000019,27.372259833000058],[52.579112175000056,27.392767645],[52.58855228000007,27.405503648000046],[52.605235222,27.412054755000142],[52.626149936000076,27.41388580900012],[52.64486738400015,27.41331614800005],[52.66651451900012,27.415350653000175],[52.678965691000116,27.42527903900016],[52.670095248000194,27.448635158000073],[52.6541447270001,27.460882880000142],[52.61353600400011,27.474676825000145],[52.59839928500011,27.48582591400016],[52.590505405,27.497748114000032],[52.57447350400011,27.530585028000118],[52.567637566000116,27.54071686400006],[52.492523634000094,27.609442450000145],[52.45964603000019,27.632635809000092],[52.423106316000165,27.646633205000157],[52.24488366000011,27.681382554000106],[52.20720462300013,27.69822825700011],[52.0892033210001,27.795396226000136],[52.0525822270001,27.81736888200014],[52.011241082000055,27.83270905199999],[51.963715040000096,27.838446356000148],[51.894297722000054,27.830877997000115],[51.87842858200011,27.835353908000073],[51.85962975400016,27.84589264500015],[51.823864455000056,27.843596727000076],[51.78529543700008,27.835453504000057],[51.72279946300008,27.825116598000093],[51.68344287800008,27.830580873000045],[51.59693444100017,27.84666575700005],[51.58513431100019,27.849310614000146],[51.58008873800022,27.85578034100014],[51.578868035000106,27.865301825000145],[51.5755314460001,27.87278880400011],[51.570323113000114,27.87763092699999],[51.5391351540002,27.881627359],[51.496423785000076,27.89304083900005],[51.47509621100002,27.91347959300016],[51.452077252000066,27.947514573000078],[51.4281560110002,27.961147005000143],[51.42040520700007,27.93320094800005],[51.39987550200007,27.931713147000053],[51.380271138000154,27.99141838100003],[51.36061041900021,28.01637836300013],[51.34522163500011,28.052668550000035],[51.307529834000064,28.107132148000048],[51.29036926500006,28.121519294],[51.26975927800018,28.140453578000162],[51.26482181100013,28.160549221000124],[51.286875847,28.214300848000093],[51.28532962300008,28.240912177000112],[51.26482181100013,28.27045319200009],[51.229991082000055,28.298407294000025],[51.21762129000015,28.311428127000013],[51.18238366000011,28.35976797100004],[51.14942467500012,28.39052969],[51.14185631600017,28.400783596000124],[51.08073978000013,28.533921617000104],[51.0725203790001,28.565252997000144],[51.07154381600011,28.692694403000175],[51.05884850400017,28.735907294000167],[51.03638756600017,28.77252838700009],[51.010915561000076,28.799139716000052],[50.97868899800002,28.81663646],[50.936534050000056,28.825344143000066],[50.896006707000055,28.827337958000115],[50.876149936000076,28.832017320000134],[50.86768639400012,28.842678127000156],[50.86003665500019,28.862453518000095],[50.81299889400006,28.914699611000103],[50.80486087300008,28.933579820000137],[50.79883873800023,28.96112702000015],[50.8025822270001,28.985825914000127],[50.82325280000012,28.99664948100003],[50.842784050000056,28.990668036000116],[50.86247806100002,28.976141669000175],[50.878916863000114,28.957993882000086],[50.88868248800017,28.941392320000105],[50.899261915000096,28.949448960000055],[50.897959832000105,28.95673248900006],[50.89340254000015,28.965033270000152],[50.89486738400015,28.976141669000175],[50.90202884200008,28.983384507],[50.922211134000094,28.99921295800014],[50.928965691000116,29.009670315000037],[50.93238366000011,29.031480210000087],[50.92994225400011,29.054632880000113],[50.92017662900017,29.06903717700008],[50.90170332100015,29.064886786000148],[50.89332116000017,29.09389883000004],[50.88656660200015,29.104071356000144],[50.8743595710001,29.113267320000045],[50.868337436000076,29.11204661700013],[50.85914147200011,29.10781484600001],[50.850840691000116,29.105454820000045],[50.847178582000055,29.10993073100012],[50.84595787900016,29.126857815],[50.84400475400011,29.135199286000063],[50.84034264400006,29.14061107000011],[50.81641686300006,29.144191799000097],[50.73829186300006,29.14008209800012],[50.720225457000225,29.137193101000104],[50.693695509000094,29.123439846000096],[50.6658634770001,29.126410223],[50.64380944100011,29.143459377000152],[50.63493899800008,29.171332098],[50.63306725400011,29.19550202],[50.63575280000012,29.20770905199999],[50.6447860040001,29.219794012000175],[50.651866082000055,29.233343817000144],[50.658376498000074,29.249945380000113],[50.66749108200022,29.257269598000036],[50.68262780000006,29.243068752000013],[50.687022332000225,29.283880927000055],[50.68946373800005,29.29083893400006],[50.679860873000194,29.29364655199999],[50.67359459700006,29.299627997000115],[50.661468946000156,29.318793036000088],[50.66863040500019,29.343329169000086],[50.66822350400017,29.382269598000093],[50.663096550000056,29.421942450000113],[50.65528405000006,29.44912344000004],[50.64210045700022,29.469794012000033],[50.622731967000185,29.493068752000124],[50.60743248800023,29.49949778900007],[50.60694420700005,29.46963125200007],[50.60108483200011,29.48065827000012],[50.57276451900006,29.51801178600009],[50.52003014400005,29.55597565300009],[50.51140384200007,29.56891510600009],[50.50456790500007,29.586086330000015],[50.48878014400012,29.60537344000015],[50.45606530000006,29.634100653000118],[50.39698326900006,29.654730536000116],[50.387868686000076,29.665106512000037],[50.38160241000011,29.685003973000118],[50.3670353520001,29.704087632000107],[50.340017123000024,29.730292059000064],[50.313324415000096,29.763983466000138],[50.267914259000094,29.836371161],[50.24382571700019,29.866848049000126],[50.22510826900011,29.881170966000028],[50.18384850400017,29.903143622000144],[50.144867384000094,29.938055731000144],[50.141368035000106,29.94257233300011],[50.138438347000175,29.95465729400003],[50.137543165000096,29.97296784100008],[50.13396243600002,29.983547268000123],[50.14966881600017,29.985174872000144],[50.15333092500006,29.991034247000115],[50.14747155000012,29.99823639500012],[50.13396243600002,30.004055080000096],[50.14478600400011,30.037909247000144],[50.12183678500011,30.09454987200014],[50.12769616000017,30.12067291900011],[50.11361738400015,30.13031647300006],[50.09791100400017,30.148504950000145],[50.08472741000011,30.168890692000144],[50.079356316000165,30.18524811400006],[50.07341556100001,30.195746161000113],[50.0588485040001,30.204575914000188],[50.0506291020001,30.207342841000138],[50.02409915500007,30.216253973000093],[49.98829186300023,30.219916083000143],[49.95101972700016,30.21503327000006],[49.91456139400012,30.20392487200003],[49.60075931100013,30.03009674700014],[49.564463738000114,30.016831773000135],[49.53223717500006,30.02293528900013],[49.50407962300019,30.058661200000145],[49.50163821700007,30.074896552],[49.501231316000116,30.120062567000147],[49.493418816000165,30.13743724200013],[49.4861759770001,30.146389065000147],[49.483653191000116,30.15180084800001],[49.4798283210001,30.156073309000117],[49.469086134000094,30.161688544000114],[49.45932050900015,30.165187893],[49.449880405000016,30.16718170800014],[49.42823326900023,30.16852448100003],[49.41765384200019,30.16746653900016],[49.39600670700011,30.16278717700005],[49.38396243600019,30.161688544000114],[49.372813347000175,30.163763739000117],[49.35840905000012,30.173163153000143],[49.34994550900014,30.17527903900016],[49.32927493600007,30.172267971000068],[49.29184004000009,30.15851471600014],[49.271250847000175,30.15485260600009],[49.24512780000012,30.15648021000011],[49.2356876960001,30.16510651200012],[49.23707116000017,30.206366278000175],[49.23406009200008,30.20941803600006],[49.220225457000055,30.217922268],[49.215993686000076,30.223781643000123],[49.21550540500007,30.229193427],[49.215993686000076,30.244208075000117],[49.217539910000106,30.251776434000146],[49.221690300000056,30.258205471000068],[49.22120201900022,30.264553127000013],[49.209157748000024,30.271470445000105],[49.20337975400016,30.25446198100003],[49.19288170700011,30.237738348],[49.17847741000011,30.225897528000147],[49.161387566000116,30.223781643000123],[49.14332116000017,30.233547268000095],[49.13477623800017,30.24632396000011],[49.12403405000006,30.25641510600009],[49.10670006600017,30.257798570000073],[49.083506707000225,30.26483795800014],[49.01734459700006,30.298285223],[49.00367272200012,30.30939362200003],[48.99708092500012,30.341620184000146],[48.97950280000006,30.36176178600003],[48.95329837300008,30.37352122599999],[48.921153191000116,30.380764065],[48.931813998000024,30.39716217700011],[48.948578321000156,30.401068427000112],[48.98943118600019,30.395005601000104],[49.01075280000006,30.395941473],[49.04371178500011,30.405666408000126],[49.06202233200011,30.408107815000093],[49.082367384000094,30.403794664000156],[49.12338300900009,30.38507721600011],[49.13746178500011,30.380764065],[49.15967858200011,30.378851630000057],[49.17644290500013,30.37274811400006],[49.18995201900005,30.362209377000013],[49.202891472000175,30.346625067000033],[49.20875084700006,30.360093492000185],[49.227712436000076,30.389227606000148],[49.2571720710001,30.421861070000105],[49.26286868600013,30.432562567000115],[49.263845248000194,30.44965241100006],[49.243174675000056,30.446030992000104],[49.228282097,30.454413153000147],[49.21900475400017,30.46979401200009],[49.21119225400017,30.506333726000047],[49.199392123000194,30.501613674000122],[49.18384850400011,30.487046617000107],[49.16822350400011,30.476996161000145],[49.169688347000175,30.489732164000188],[49.171153191000116,30.49310944200003],[49.175059441000116,30.497463283000016],[49.16675866000016,30.508775132],[49.15821373800023,30.506984768],[49.14795983200011,30.50039297100012],[49.13404381600011,30.497463283000016],[49.12810306100019,30.501125393000148],[49.116953972000175,30.514878648000074],[49.11011803500017,30.517971096000153],[49.10377037900011,30.516831773000106],[49.09441165500019,30.51219310099999],[49.089366082000055,30.51113515800013],[49.06934655000012,30.513820705000015],[49.05128014400006,30.51837799700014],[49.03435306100018,30.51927317900005],[49.01734459700006,30.51113515800013],[48.98145592500006,30.515611070000105],[48.952972852000094,30.500189520000063],[48.945648634000094,30.479722398000103],[48.97266686300006,30.469468492000157],[49.00440514400023,30.464016018000155],[49.029470248000024,30.450262762000037],[49.03728274800014,30.432521877000127],[49.01734459700006,30.414943752000013],[49.00049889400023,30.41518789300015],[48.94646243600002,30.42157623900006],[48.934825066000116,30.41864655200014],[48.88013756600017,30.374579169000143],[48.87614993600018,30.370103257000082],[48.867360873000024,30.358099677000055],[48.86231530000012,30.34560781500015],[48.873708530000066,30.3366559920001],[48.86963951900011,30.329494533000073],[48.86304772200006,30.321519273000103],[48.85962975400011,30.316229559000064],[48.8670353520001,30.29474518400012],[48.884532097000175,30.279364325000174],[48.90479576900006,30.266017971000068],[48.921153191000116,30.250433661000088],[48.92953535200016,30.232652085],[48.93604576900023,30.210109768],[48.94166100400017,30.16510651200012],[48.93970787900011,30.15253327000012],[48.930837436000076,30.131984768000095],[48.92798912900011,30.12067291900011],[48.92855879000009,30.110052802000055],[48.934255405000066,30.091009833000054],[48.934825066000116,30.07973867400007],[48.92855879000009,30.060003973000146],[48.915293816000116,30.042181708000058],[48.897227410000106,30.029445705000015],[48.876719597000175,30.02448151200015],[48.80884850400017,30.03143952000015],[48.79135175900015,30.02448151200015],[48.77198326900012,30.032375393000123],[48.70199629000009,30.031927802000137],[48.659515821000156,30.052232164000046],[48.64332116000011,30.055405992000104],[48.640635613000114,30.038072007000114],[48.64551842500006,30.026109117000185],[48.65894616000017,30.00726959800015],[48.66163170700016,29.99347565300003],[48.65870201900023,29.983628648000103],[48.65137780000012,29.97500234600001],[48.642344597,29.967962958000143],[48.63379967500012,29.963039455000068],[48.61085045700011,29.95701732],[48.53744550900009,29.963039455000068],[48.53744550900009,29.969875393],[48.53207441500015,29.963812567],[48.531025298659216,29.96135117938381],[48.52399377500014,29.964115295000013],[48.49303959100004,29.971763408000083],[48.478156779000216,29.979618225000124],[48.46430749600003,29.989126689],[48.4577962650001,29.994862772000076],[48.453145386000216,30.001425679000036],[48.44425704000011,30.020907695000133],[48.442189982000144,30.033930156000068],[48.423948202000105,30.083642884000184],[48.42120935100016,30.08534820600015],[48.41552494300018,30.095631816000136],[48.39557784100006,30.11521718400014],[48.38307214300008,30.138419901000148],[48.38110844000002,30.14534454400014],[48.3832788490001,30.156454977000166],[48.39113366700005,30.164774882000028],[48.40074548400016,30.172267965000156],[48.40803186000008,30.180897929000096],[48.41061568200004,30.191543275000086],[48.40870365400022,30.202343649000127],[48.40358768800016,30.2125239060001],[48.39702478100017,30.22099884100002],[48.35816410300012,30.251797995000075],[48.326021362000084,30.283475647000085],[48.305712525000075,30.312827861000144],[48.296359090000095,30.319752502000043],[48.2842668050001,30.323318177000107],[48.27165775600011,30.323834941000044],[48.235070841000066,30.318512268000106],[48.222978556000186,30.3180988570001],[48.21119633000009,30.3196491500001],[48.20008589700015,30.323938293000154],[48.192076050000054,30.331276347000152],[48.187683553000085,30.34083648700006],[48.179467,30.38486480700011],[48.170475301000096,30.40667226100005],[48.157659546000126,30.42630930600008],[48.140916382000086,30.44191558900003],[48.13058109600016,30.447496643000033],[48.11941898600011,30.450803935000135],[48.01358565300009,30.463878072000096],[48.012035359000066,30.49452219600012],[48.012035359000066,30.49457387300013],[48.0154460040001,30.976249899000106],[48.012242066000134,30.98906565300008],[48.00154504400021,30.99464670800002],[47.672934611000215,30.99469838500012],[47.676443174000184,31.236517019000114],[47.67892907700016,31.407851461000078],[47.83132287600008,31.761835022000145],[47.83726566600009,31.784469300000108],[47.8344751380001,31.805708313000178],[47.82078088400007,31.82358835900014],[47.781351766000085,31.84885813400011],[47.765280395000126,31.864102682000137],[47.761714722000164,31.871647441],[47.75654707900011,31.889165751000135],[47.750966024,31.8982091270001],[47.74331791200004,31.904255269000046],[47.725231161000146,31.91433217399999],[47.71840987200008,31.922342021000148],[47.68264978000016,31.97691233400009],[47.67794722500011,31.994533997000172],[47.67794722500011,31.994689026000046],[47.66807702600008,32.01241404300005],[47.63314375800021,32.02693512000009],[47.617795858000164,32.04186960900013],[47.59500655200023,32.08543284200009],[47.580232356000096,32.10349519600011],[47.578056682000145,32.106155090000115],[47.55872969600008,32.11297638000015],[47.543640177000185,32.11457834900001],[47.53475183100008,32.12315663700004],[47.5266903080001,32.13338857000012],[47.51382287600009,32.140313212000095],[47.498164917000025,32.14413726800005],[47.49134362800007,32.14863311800015],[47.490413452000126,32.15653961200009],[47.49248051000009,32.170492249000105],[47.496407918000074,32.181344299000145],[47.50235070800008,32.19012929400013],[47.507673380000114,32.19984446300016],[47.50922367300015,32.213797099000075],[47.5040043540001,32.226742046000155],[47.48452233900011,32.23935109500009],[47.47914799000009,32.252063498000055],[47.46943282000015,32.256120097000164],[47.463024943000185,32.26183034300011],[47.44535160300009,32.28263010700006],[47.441579224000094,32.288185323000064],[47.43687666800011,32.29368886300007],[47.40705936700007,32.317770081],[47.402460165000065,32.323506165000154],[47.39579390500015,32.33701955200006],[47.395948934000074,32.34198048899999],[47.39997969600009,32.34577870800002],[47.408764689000144,32.36433054600015],[47.41434574400009,32.36985992500014],[47.41796309400016,32.376422831000134],[47.41641280100012,32.38797251400008],[47.41083174700012,32.39528473000017],[47.384115031000164,32.41257049600007],[47.367320191000054,32.43076060000011],[47.35610640500013,32.446186015000094],[47.343342326000055,32.45869171200009],[47.32194828300006,32.46822601300009],[47.265310913000086,32.48468495700014],[47.251254924000165,32.485460104000154],[47.20546960500021,32.46404022200015],[47.18779626500011,32.45838165300002],[47.15255293800013,32.45517771400013],[47.12103031500006,32.461042989000035],[47.09059289600011,32.47455637600011],[47.05865686000001,32.494400127000105],[47.05860518400013,32.49447764100002],[47.058398479000026,32.49447764100002],[46.75733158400006,32.71619537400006],[46.715887085000105,32.75601206500009],[46.65036136900019,32.789369202000145],[46.604421021000206,32.820685120000135],[46.60061305900015,32.82254147600018],[46.50732100500013,32.86802073200012],[46.47931237800012,32.89179189000008],[46.37962854000014,32.931763611000136],[46.27343347200005,32.95948801700017],[46.15555952900016,32.94835174600014],[46.097010132000065,32.95432037400015],[46.075719442000064,32.99434377000013],[46.075719442000064,32.99449880000015],[46.08801843300009,33.00672027600011],[46.10465824400009,33.01806325299999],[46.11948938000015,33.031008199],[46.126155639000075,33.047983908000035],[46.1204195560002,33.061678162000035],[46.10600183100009,33.072504375000065],[46.087191610000076,33.079222310000105],[46.04326664300007,33.08345977800015],[46.029314005000025,33.09351084399999],[46.0302958570002,33.10568064400009],[46.05039799000005,33.11511159300015],[46.072412150000076,33.11676523900008],[46.089155314000124,33.11568003400011],[46.10538171400011,33.11839304700014],[46.126465699000015,33.13177724200007],[46.15344079600007,33.15425649100008],[46.16718672600021,33.16833831800001],[46.174318074000126,33.181179911000115],[46.17369795700009,33.19022328700005],[46.16212243600014,33.19637278300002],[46.15767826400022,33.205674541000164],[46.158350057000206,33.21386525500019],[46.16439619900015,33.23306304900011],[46.16418949400011,33.243346659000096],[46.15530114800018,33.260219015000175],[46.14134851100019,33.27210459400011],[46.10951582900023,33.29370534300007],[46.06972497600012,33.3408600880001],[46.036238648000136,33.36793853800005],[46.0310710050002,33.382511291000114],[46.03050256400015,33.399202780000124],[46.02745365400002,33.41951161700014],[46.01939213100016,33.438399353000094],[46.00802331500008,33.45565928100008],[45.974433635000224,33.49079925500003],[45.971384725000206,33.492762960000064],[45.96823246200003,33.49423573800006],[45.96448744700015,33.495991214000085],[45.963271525000124,33.496561177],[45.95815555900012,33.49738800100012],[45.95314294400006,33.4965870160001],[45.9481820070001,33.49426157700016],[45.92968184500009,33.47950795500016],[45.899399454000125,33.47630401700009],[45.86973718300007,33.482117615000064],[45.85258060800001,33.49436493000008],[45.86818689000009,33.51157318200008],[45.915625855000165,33.535809428000064],[45.92792484500009,33.55087310800015],[45.920896850000105,33.57299062100016],[45.89970951400013,33.58516042100017],[45.882036174000206,33.600198263000046],[45.88596358200019,33.63091990200009],[45.86436283300023,33.626424053000086],[45.81578698700011,33.62580393500012],[45.79754520600007,33.61931854200004],[45.76845137600017,33.5959091190001],[45.75201827000009,33.58676239],[45.73455163600008,33.583119202000105],[45.72773034700012,33.5900955200001],[45.72798872900009,33.625648905000055],[45.72462962300003,33.63303641300017],[45.72111576400019,33.640764262000076],[45.67398685700019,33.66903127100015],[45.65879398600018,33.681691997000186],[45.64515140800009,33.697918396000105],[45.63512618000007,33.714170634000126],[45.62820153900023,33.73184397400003],[45.6239123940002,33.752075297000104],[45.616729370000115,33.76868927000013],[45.60360355600008,33.780729879000106],[45.5882039790001,33.791504415000034],[45.57476810700015,33.8039325970001],[45.48578129000006,33.93865305600012],[45.48392093900023,33.94004832000009],[45.48175052900015,33.94087514300013],[45.47927006000012,33.94118520100001],[45.449711141000165,33.93738698400007],[45.423717895000124,33.938782247000134],[45.40103194200012,33.94945343000013],[45.38036136900021,33.97356048600001],[45.40175541200014,33.981622008999985],[45.41147058100008,33.987151388000186],[45.41973881100009,33.99425689800002],[45.41994551600007,33.99425689800002],[45.41994551600007,33.994360250000156],[45.43519006400012,34.0221363320001],[45.44361332200012,34.047664490000116],[45.45487878400016,34.06985951800006],[45.47927006000012,34.08763621100009],[45.493946167000075,34.10068450900003],[45.53435713700017,34.12820221000011],[45.544537395000106,34.13949351000018],[45.544537395000106,34.15062978100012],[45.53880131000008,34.159233907000136],[45.53146325700018,34.16791554800001],[45.52665734900009,34.17931020200011],[45.528672730000125,34.188560283000115],[45.54272871900011,34.20747385700015],[45.54768965700006,34.216491395],[45.56102217600019,34.26460215300007],[45.56303755700017,34.289277649000084],[45.55755985500016,34.31196360300005],[45.54221195500011,34.33160064700017],[45.521541382000095,34.34250437400014],[45.499217164000214,34.34240102200012],[45.47927006000012,34.3291460170001],[45.46076989800005,34.34046315500008],[45.4479541420001,34.36208974300017],[45.41705163500009,34.44435862300013],[45.426766805000135,34.457510275000104],[45.47927006000012,34.467251282000134],[45.48650476100008,34.47272898400003],[45.49301599100013,34.479007670000115],[45.49870039900006,34.486242370000085],[45.50345463100004,34.494174703000155],[45.50484989500014,34.523785299],[45.49652998800016,34.56424794499999],[45.5006641030001,34.59168813100014],[45.539628133000086,34.58223134399999],[45.57394128500013,34.56729685500012],[45.60484379100009,34.561147360000135],[45.673573446000056,34.55665151000012],[45.695587605000156,34.55024363200009],[45.701530396000095,34.55127716100016],[45.70561283400011,34.55773671500013],[45.708300008,34.568382060000104],[45.70855839100019,34.57907908100013],[45.70561283400011,34.58559031200009],[45.694450724000056,34.598561097000115],[45.6912467860001,34.615510966000116],[45.690781698000166,34.63432118800012],[45.687629435000105,34.65323476200017],[45.68349532000016,34.66021108000017],[45.6783793540001,34.665120341000105],[45.67347009300008,34.67116648400004],[45.67036950600013,34.68181182900004],[45.66685551000015,34.68997670500014],[45.65951745600008,34.69721140600002],[45.65052575700022,34.702999166],[45.642257528000094,34.70687489900014],[45.62737471500023,34.720827535000055],[45.6350228270002,34.736950583000024],[45.66282474800008,34.76325388600016],[45.665925334000086,34.774726054000084],[45.6635998940001,34.794931539000075],[45.666752156000115,34.80692047200013],[45.67657067900021,34.81828928700012],[45.68923140500012,34.82263010700011],[45.71770511900016,34.825110576000085],[45.745403687000106,34.84097524],[45.75046797700005,34.86536651700011],[45.74850427200013,34.890739645],[45.75511885600022,34.90996327700013],[45.77826989800022,34.91089345300015],[45.79621445900008,34.903042708000115],[45.8080355230002,34.897870992000136],[45.83501062000008,34.89017120400014],[45.85020349200008,34.90681101500017],[45.85785160300022,34.931305644000034],[45.86632653800004,34.94954742500009],[45.868962036000056,34.968357646000086],[45.859711955000165,34.99424753800012],[45.859711955000165,34.99440256800007],[45.856818074000074,35.00804514600016],[45.857024780000216,35.021274312000074],[45.86188236500007,35.0327981570001],[45.87247603400013,35.04142812100003],[45.87903894100011,35.043236796000045],[45.89309493000022,35.04437367800013],[45.899089396000164,35.04690582300013],[45.90115645400013,35.0516083780001],[45.89836592700007,35.06390736900015],[45.899399454000125,35.06860992500013],[45.91319706200007,35.08731679300011],[45.92017338100018,35.089642233000134],[45.93495284000019,35.08545644200011],[45.956036824000215,35.07424265600015],[45.96637211100003,35.07072865800011],[45.97923954300015,35.07155548200005],[46.00921187300017,35.06091013600003],[46.025076538000086,35.06426910400013],[46.039752645000156,35.075534566000115],[46.06657271400016,35.088815410000116],[46.076649617000186,35.08969390900016],[46.094529663000145,35.0858181760001],[46.11995446800009,35.09274281800019],[46.13235681200015,35.094758199000054],[46.143105510000076,35.09951243100012],[46.151063680000135,35.111604716000116],[46.13039310700012,35.131396790000096],[46.14382897900006,35.159612122000155],[46.165481405000065,35.18994618700019],[46.169253784000176,35.216249492000046],[46.154164266000095,35.22663645500016],[46.115406942000014,35.22632639600009],[46.10145430500003,35.234284566000134],[46.09876713100012,35.250045879000126],[46.107655477000115,35.262758281000075],[46.1200578200002,35.274902243000085],[46.125285441000095,35.284989341000156],[46.1273958740002,35.28906158400003],[46.120161173000014,35.31851715100014],[46.09628666200015,35.34115142899999],[46.04099287900012,35.381562398000156],[45.97701745600014,35.465329895000124],[45.96399499500009,35.49416534400013],[45.963581584000075,35.503415426000075],[45.96606205300023,35.511476949000055],[45.971333048000105,35.518039856000044],[45.97923954300015,35.52300079399999],[45.98321862800012,35.526979879000166],[45.98456221500007,35.53106231700018],[45.98311527500018,35.53529978400003],[45.97923954300015,35.53948557500017],[45.968025757000106,35.55850250300013],[45.95934411600015,35.57870798800003],[45.96389164200016,35.57974151600011],[45.96869755000009,35.57974151600011],[45.99923832200008,35.572145081000045],[46.00202885000013,35.585942688],[45.992313680000194,35.62438995400014],[45.992365356000185,35.640874736000015],[45.99587935400004,35.65839304600017],[46.003785848000085,35.674257711000095],[46.01649825100017,35.68572987900011],[46.03706547100015,35.691569316000184],[46.10703536000008,35.68981231700012],[46.127602580000115,35.69368805000006],[46.17772871900016,35.71539215100016],[46.21700280800022,35.71358347600007],[46.237880086000104,35.715547181000105],[46.253486369000164,35.72774281900003],[46.26712894700009,35.74412424800006],[46.29751469000021,35.75988555900015],[46.313379354000205,35.77151275700011],[46.325058228000074,35.78784250900004],[46.32707360800006,35.8035004690001],[46.31963220200012,35.81688466400014],[46.30299239100012,35.826548157000055],[46.281391642000095,35.82830515600013],[46.263511596000086,35.82112213200018],[46.24640669800013,35.81140696300015],[46.227441447000075,35.80572255500003],[46.18496341900001,35.79817779600016],[46.16351770000019,35.79750600199999],[46.143363891000064,35.80453399600018],[46.1351990150001,35.81001169900016],[46.129101196000164,35.81554107699999],[46.12481205200018,35.82246571900005],[46.119851115000216,35.84287790900011],[46.115045207000115,35.846443584000085],[46.107758830000165,35.84742543600013],[46.07695967600009,35.85698557500014],[46.06042321800006,35.85724395800009],[46.04430017100012,35.852283020000144],[46.02497318600015,35.84329132100011],[46.00492273000012,35.83796864900007],[45.94125736500021,35.84034576500004],[45.90911462400018,35.83130238900016],[45.89877933800008,35.832180888],[45.888495728000095,35.834868063000116],[45.87831547000022,35.83522979800013],[45.85407922300013,35.81833160400013],[45.83475223800011,35.810528463000125],[45.814185018000074,35.8093399050001],[45.79790694200008,35.81838328100007],[45.78674483200021,35.820243633000146],[45.749021037000176,35.81099355100004],[45.73103763900011,35.81512766600015],[45.71873864800014,35.82830515600013],[45.69321049000021,35.87987823500005],[45.64685673000022,35.93320831300006],[45.61703942900013,35.95542918000008],[45.58985762600011,35.959614971000015],[45.57693851700023,35.96622955300002],[45.539989868000106,35.993979798000154],[45.50142367600009,36.005434777000076],[45.47927006000012,36.012014872000165],[45.45312178500009,36.01165313700007],[45.41994551600007,35.99826894200011],[45.40216882300015,35.99423818000004],[45.40196211800017,35.994083151],[45.40185876500007,35.99403147400006],[45.40160038200011,35.99403147400006],[45.4015487070001,35.993979798000154],[45.38180830900009,35.98297271800008],[45.359587443000095,35.976874899],[45.338090047000065,35.979303691000084],[45.32052006000006,35.993979798000154],[45.320313354000206,35.99403147400006],[45.320210002000096,35.994083151],[45.320210002000096,35.994134827000025],[45.320210002000096,35.99428985600004],[45.313698771000105,36.01041290300013],[45.31958988500011,36.03103180000012],[45.331888876000136,36.051599020000126],[45.344187866000105,36.06746368500002],[45.34832198000012,36.08751414000007],[45.33560957900008,36.10771962500014],[45.30460371900014,36.14037913000014],[45.29953942900008,36.16141143800014],[45.302019898000104,36.20755849200019],[45.29736901800007,36.2267304490001],[45.28279626500009,36.23840932200007],[45.26419274900016,36.25019154900018],[45.25850834200011,36.262232158000145],[45.2826929120001,36.274892884000096],[45.26393436700019,36.29427154600013],[45.25700972500007,36.31168650300016],[45.25447758000021,36.35478464800009],[45.24961999600012,36.377935690000086],[45.23887129800008,36.402998759000084],[45.22130131000019,36.420930482000145],[45.19597985800012,36.422429097000176],[45.13996260600018,36.40439402300016],[45.11081709800006,36.40253367100017],[45.08373864800009,36.41281728100016],[45.072266479000206,36.42341095000013],[45.06854577600009,36.43250600200009],[45.06689213100012,36.4423762010001],[45.06208622300002,36.45534698500002],[45.054076375000164,36.46495880100004],[45.04549808700014,36.471625061000125],[45.03909021000018,36.479841614000165],[45.03816003400007,36.4940009560001],[45.025344279000166,36.50521474200015],[45.009524666000026,36.516195910000036],[45.00591394000017,36.518702291000025],[44.99139286300013,36.5337401330001],[44.99340824400011,36.54965647400006],[44.997852417000075,36.552085266000105],[45.010254761000084,36.55601267600015],[45.013251994000164,36.55792470300018],[45.014182169,36.57900868700001],[45.02487919100022,36.613166809000106],[45.0443095300001,36.64934031200012],[45.04591149900014,36.66804718100012],[45.03526615400008,36.68959625300006],[45.01097823100016,36.72556305000013],[44.996198771000216,36.74168609600012],[44.97945560700006,36.749024150000096],[44.96643314600007,36.749334209],[44.95475427200009,36.75233144200011],[44.944418986000045,36.75827423100013],[44.935220581000095,36.76711090100012],[44.92271488400016,36.77589589500012],[44.90824548300022,36.77785959900014],[44.87723962400011,36.77646433600016],[44.85119470200007,36.781218567000145],[44.831247600000125,36.791915589000055],[44.823392782000184,36.8093305470001],[44.83414148000011,36.83403188100003],[44.86964318900007,36.86896514900008],[44.8834407960002,36.88684519500005],[44.888815145000166,36.91092641200002],[44.88406091300006,36.93335398400011],[44.87486250800018,36.949657898000126],[44.869178101000124,36.96735707600014],[44.87475915600007,36.99402211500008],[44.88571455900009,37.00508087200008],[44.88736820500017,37.015932923000136],[44.88075362200007,37.02492462200017],[44.85894616700014,37.03412302700018],[44.84757735200017,37.04404490100016],[44.84060103400017,37.04719716500013],[44.830937540000065,37.046835429000126],[44.81119714400009,37.04192616800018],[44.80189538600015,37.04352813800013],[44.7972961830001,37.04848907500018],[44.792231893000086,37.06373362200013],[44.788356161000166,37.07024485300009],[44.781121460000094,37.07448232000006],[44.773628377000165,37.07634267200014],[44.76654870600006,37.07895233200007],[44.76065759300016,37.08564442900017],[44.75269942200006,37.10331777000008],[44.752544393000136,37.11313629200004],[44.76613529500011,37.14192006500015],[44.7723364670002,37.1612470510001],[44.76613529500011,37.178145244000106],[44.75673018400008,37.195198466000036],[44.753526245000074,37.21532643600001],[44.76050256300019,37.233232321000074],[44.77295658300008,37.241681417000066],[44.78675419100014,37.24811513300001],[44.798484741,37.260310771000135],[44.80158532700008,37.292686056000136],[44.77895105000019,37.313795878000164],[44.721383504000045,37.34327728300017],[44.713011923000096,37.35679067000014],[44.70712080900009,37.37095001300018],[44.698025757000124,37.38004506500006],[44.661645549000156,37.37565256800015],[44.65224043800018,37.384024150000144],[44.63818444800009,37.4126012170001],[44.622784872000096,37.42190297500004],[44.58557784000007,37.42466766400018],[44.57214196800012,37.43079132100014],[44.56594079600015,37.44717275],[44.579273316000155,37.47696421400009],[44.575242554000084,37.49383656800008],[44.575242554000084,37.4939915980001],[44.569919881,37.51440378800008],[44.57183190900011,37.53920847600001],[44.5783431400001,37.56390981100013],[44.587438191000075,37.58401194300008],[44.58351078300021,37.601091004000025],[44.56097985800008,37.61465606800003],[44.54087772600022,37.63271698000001],[44.54527022300013,37.66302520800015],[44.55353845200008,37.67181020100004],[44.58816166200008,37.693979391000155],[44.59839359500003,37.7070276890001],[44.59611983300013,37.71638112400014],[44.55937788900016,37.75201202500013],[44.534418172000045,37.7691944380001],[44.50646122300006,37.77934885700016],[44.479227743000166,37.77686838800018],[44.466515340000136,37.77113230400012],[44.45049564600018,37.76663645400011],[44.43643965600003,37.76779917400002],[44.42910160300008,37.779142152000084],[44.42977339700022,37.78513661800003],[44.43375248200013,37.80110463500007],[44.433029012000105,37.806117249000025],[44.42548425300018,37.810768128000106],[44.41897302300012,37.80968292200002],[44.41210005700023,37.80771921800006],[44.40440026900014,37.809734599000116],[44.393238159000106,37.821077576],[44.38755375200017,37.83340240500014],[44.383833049000174,37.844977926000084],[44.37794193600004,37.85412465400016],[44.36714156100001,37.860222473000036],[44.331226441000155,37.87396840500015],[44.3192375080001,37.87686228500014],[44.2544352620001,37.87084198000012],[44.21960534600012,37.875311992000135],[44.20208703600005,37.89717112200016],[44.20500618600013,37.90476794700008],[44.20637618000015,37.90833323200009],[44.21671146700007,37.91859100400008],[44.225496460000016,37.929313863000104],[44.22466963700012,37.94200042800004],[44.219657023000224,37.95608225500017],[44.22146569800023,37.968820496000134],[44.22756351700011,37.980990296000144],[44.2360384520002,37.99383188900013],[44.2360384520002,37.993883566000065],[44.23614180500012,37.993986918000175],[44.23614180500012,37.99401275700008],[44.24539188600013,38.00837880500008],[44.269524781000115,38.03000539100016],[44.27830977400018,38.04532745400003],[44.28657800300002,38.066308085000045],[44.295879761000066,38.07902048800018],[44.309005574000224,38.08723704000003],[44.328280884000065,38.09462677100011],[44.33381026200007,38.10087961800012],[44.32569706200015,38.119689840000134],[44.32709232500022,38.128397319],[44.3353605550001,38.134055888000134],[44.353137248000195,38.139998678000055],[44.36057865400002,38.147853496],[44.367089885000176,38.162477926000136],[44.37323938000006,38.18211497],[44.37670170100008,38.20154530900008],[44.37241255700016,38.249501038000105],[44.40057621200012,38.274667460000146],[44.436749715000104,38.29694000300019],[44.45917728700013,38.3224164840001],[44.458763876,38.33833282500014],[44.45111576300021,38.354042461000105],[44.43881677200008,38.36755584700008],[44.42465743000017,38.37703847200005],[44.4090511470001,38.38179270400006],[44.396338745000065,38.37967397100006],[44.363369182000184,38.364610291000176],[44.313398072000126,38.371819154000136],[44.298670288000125,38.37719350200008],[44.2895235600001,38.382257792000175],[44.28657800300002,38.39099111000014],[44.28988529500012,38.407372539],[44.290505412000094,38.4165967810001],[44.287404826000085,38.441944072000084],[44.287508179000184,38.45372629800009],[44.30016890500022,38.494033915000145],[44.30135746200002,38.51119049100011],[44.29215905800007,38.56204010100011],[44.29680993600019,38.60162424800008],[44.29701664300015,38.622320659000096],[44.28988529500012,38.638882955],[44.28254724200021,38.64539418500006],[44.27489912900015,38.64937327100013],[44.25681237800014,38.65392079700008],[44.244306682000136,38.65895924900015],[44.247407267000106,38.66508290600002],[44.256088908000066,38.67195587100018],[44.26048140500015,38.679242249000154],[44.255468791000084,38.69727732300007],[44.250507853000016,38.70921458000011],[44.248647501000136,38.72182362900004],[44.25267826400014,38.74182240800015],[44.2798083910001,38.814221090000146],[44.27500248200019,38.8435733030001],[44.22198246200017,38.86344289200012],[44.20575606300005,38.87566436800013],[44.19211348500008,38.89075388600004],[44.18250166900006,38.91312978100002],[44.17816084800009,38.92070037900008],[44.17485355600016,38.928374329000135],[44.1753703210002,38.93669423500002],[44.174646851,38.94576344799999],[44.16710209200008,38.95199045800016],[44.15800703900018,38.957468161000165],[44.15196089700006,38.964625346],[44.147775106000125,38.980050761000186],[44.144674520000045,38.98682037400012],[44.1391968180001,38.99377085400012],[44.1391968180001,38.99395172100016],[44.153356160000016,39.01255523700002],[44.169530884000125,39.02304555300016],[44.17914270000003,39.03493113200001],[44.16989261900014,39.07436025000011],[44.17495690900009,39.090224915000036],[44.194800659000094,39.12053314200007],[44.186635783000185,39.14513112500005],[44.14808516400009,39.166447652000144],[44.1035400800001,39.184637757000175],[44.07770186400009,39.200063172000064],[44.07656498200018,39.20869313600012],[44.083489624000066,39.226831564000136],[44.082662801000225,39.23566823400013],[44.07057051600023,39.255486145000035],[44.06715987200019,39.264012757000145],[44.066746460000076,39.27295278000018],[44.069226929000166,39.27956736200018],[44.06943363500013,39.28700876900011],[44.057651408000226,39.30680084200016],[44.05176029500014,39.328039857000064],[44.04739541400008,39.33751363],[44.047212768000094,39.337910055000016],[44.02096114100007,39.36199127200017],[44.01486332200008,39.37408355700016],[44.026025432000125,39.38617584200013],[44.04638594600007,39.39604604100013],[44.061372111000225,39.40028350800015],[44.076978394000065,39.40059356700006],[44.09919925900012,39.39847483300017],[44.122246949000186,39.40043853800002],[44.176507203000114,39.41154897100013],[44.20043339000019,39.40948191300007],[44.269524781000115,39.38286855100013],[44.29494958500018,39.38121490499999],[44.316963745000095,39.385297343],[44.36874353000016,39.403590800000174],[44.38796716300018,39.414494528000134],[44.40481368000016,39.43438995400014],[44.40522709100017,39.45247670500005],[44.40171309400009,39.47133860300009],[44.406674031000165,39.493662821000136],[44.406674031000165,39.49371449800016],[44.406829061000195,39.49371449800016],[44.41680261200011,39.50554840100007],[44.417422729000094,39.51748565700002],[44.41401208500017,39.530353089000116],[44.41204838100011,39.54446075500014],[44.41401208500017,39.56089386000012],[44.41855961100006,39.57432973300017],[44.45168420400009,39.625851136000065],[44.45762699400021,39.63871856700014],[44.45825019400016,39.64252008900008],[44.460210816000114,39.654479879000135],[44.455043173000114,39.687139384000105],[44.45948734500021,39.698456523000104],[44.56573409000006,39.76589426700012],[44.590435425000095,39.77152699800014],[44.60583500200007,39.763155416000174],[44.63281009900018,39.73163279200009],[44.6465043540002,39.719540507000104],[44.70629398600007,39.698043111000075],[44.725724325000066,39.68533070900013],[44.8069928290001,39.63990171200008],[44.80964685100017,39.63696156900009],[44.82395307300007,39.63054002600016],[44.827836955000095,39.62879669200008],[44.849230997000205,39.62559275299999],[44.87227868700009,39.62507598900005],[44.86928145300007,39.62052846300013],[44.86535404500009,39.61758290600004],[44.886438029,39.60595570900015],[44.89842696100018,39.58435496],[44.92839929200014,39.488236796000145],[44.940698283000046,39.468082988],[44.96162723800014,39.453768616],[44.95330733300008,39.44162465500001],[44.95702803600008,39.43449330700015],[44.982504517000194,39.42017893500017]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Iraq","sov_a3":"IRQ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iraq","adm0_a3":"IRQ","geou_dif":0,"geounit":"Iraq","gu_a3":"IRQ","su_dif":0,"subunit":"Iraq","su_a3":"IRQ","brk_diff":0,"name":"Iraq","name_long":"Iraq","brk_a3":"IRQ","brk_name":"Iraq","brk_group":null,"abbrev":"Iraq","postal":"IRQ","formal_en":"Republic of Iraq","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iraq","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":3,"mapcolor13":1,"pop_est":31129225,"gdp_md_est":103900,"pop_year":-99,"lastcensus":1997,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"IZ","iso_a2":"IQ","iso_a3":"IRQ","iso_n3":"368","un_a3":"368","wb_a2":"IQ","wb_a3":"IRQ","woe_id":23424855,"woe_id_eh":23424855,"woe_note":"Exact WOE match as country","adm0_a3_is":"IRQ","adm0_a3_us":"IRQ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"IRQ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[42.896740357000084,37.32490631100008],[42.937047973000034,37.320152080000085],[42.97962935400013,37.33183095400007],[43.00515751200007,37.34725636800006],[43.04350142400008,37.360252991],[43.083705689000084,37.36883127900001],[43.114814901000074,37.37113088000014],[43.13197147600013,37.36725514699999],[43.26338464300014,37.31069529300011],[43.270309285000195,37.30867991100017],[43.27862919100008,37.30774973600002],[43.28751753800006,37.30914499900011],[43.29687097200022,37.316741435000054],[43.30565596500011,37.319971212000134],[43.32415612800011,37.32221913700015],[43.33614506100011,37.32022959400011],[43.362505215000134,37.30390815200015],[43.376039266000106,37.2955282600001],[43.4167602950001,37.27917266800016],[43.46326908400013,37.24868357400008],[43.47959883700017,37.24336090100003],[43.49241459100003,37.244756165000105],[43.51711592600017,37.25230092400015],[43.52951827000001,37.25390289300019],[43.54243737800007,37.25230092400015],[43.550602255000086,37.24873525],[43.56889571200023,37.23770233200018],[43.59421716300019,37.229459941000144],[43.618298381000066,37.22697947200008],[43.72082442300021,37.2326122030001],[43.74692102100019,37.23064849900008],[43.77064050300007,37.22584259000017],[43.780562378000155,37.22036488900007],[43.802059774000064,37.20357004800012],[43.80939782700008,37.19969431500006],[43.82200687700012,37.202381491],[43.839990276000066,37.217109273000105],[43.89363041200007,37.22491241400011],[43.92417118300008,37.25307607000015],[43.95378177900008,37.28746673600001],[43.99036869300008,37.312503968000115],[44.03558557100021,37.31824005200014],[44.069024736000216,37.31372658800011],[44.08803715000019,37.311160380000146],[44.18446537300011,37.27917266800016],[44.20689294500008,37.26751963300007],[44.22317102100013,37.25405792300013],[44.23500492300021,37.23677215600004],[44.24353153500012,37.213827820000105],[44.24854414800009,37.191917013000065],[44.24962935400018,37.17943715500014],[44.248337443000224,37.1696703090001],[44.24012089000021,37.157965597000114],[44.230199016000114,37.15432240800014],[44.218778524000214,37.15261708600015],[44.20596276900013,37.14662262000006],[44.1892196040001,37.12920766200001],[44.18064131700006,37.108924662],[44.18002120000008,37.087608134],[44.187462606000196,37.06693756100019],[44.227770223000135,36.994125468],[44.23428145400012,36.98366099100015],[44.24327315300016,36.97776987800016],[44.284821004000065,36.96916575200011],[44.29722334800013,36.96994089800013],[44.30662845900005,36.97722727500012],[44.315878540000114,36.993970439000165],[44.31598189300021,36.993970439000165],[44.316136922000084,36.99402211500008],[44.316136922000084,36.994125468],[44.33163985200005,37.01546783500011],[44.335153849000136,37.03115163200006],[44.34311202000018,37.04244293300003],[44.428068074000095,37.06476715100011],[44.45442305500015,37.07634267200014],[44.479227743000166,37.09200063100009],[44.503412313000155,37.11662445100008],[44.53937911000011,37.14367706300014],[44.57823978700017,37.166414694000125],[44.6102791750001,37.17835194900006],[44.62893436700003,37.179023743000144],[44.73378584800011,37.16724151700005],[44.7538363030001,37.15915415500014],[44.76613529500011,37.14192006500015],[44.752544393000136,37.11313629200004],[44.75269942200006,37.10331777000008],[44.76065759300016,37.08564442900017],[44.76654870600006,37.07895233200007],[44.773628377000165,37.07634267200014],[44.781121460000094,37.07448232000006],[44.788356161000166,37.07024485300009],[44.792231893000086,37.06373362200013],[44.7972961830001,37.04848907500018],[44.80189538600015,37.04352813800013],[44.81119714400009,37.04192616800018],[44.830937540000065,37.046835429000126],[44.84060103400017,37.04719716500013],[44.84757735200017,37.04404490100016],[44.85894616700014,37.03412302700018],[44.88075362200007,37.02492462200017],[44.88736820500017,37.015932923000136],[44.88571455900009,37.00508087200008],[44.87475915600007,36.99402211500008],[44.869178101000124,36.96735707600014],[44.87486250800018,36.949657898000126],[44.88406091300006,36.93335398400011],[44.888815145000166,36.91092641200002],[44.8834407960002,36.88684519500005],[44.86964318900007,36.86896514900008],[44.83414148000011,36.83403188100003],[44.823392782000184,36.8093305470001],[44.831247600000125,36.791915589000055],[44.85119470200007,36.781218567000145],[44.87723962400011,36.77646433600016],[44.90824548300022,36.77785959900014],[44.92271488400016,36.77589589500012],[44.935220581000095,36.76711090100012],[44.944418986000045,36.75827423100013],[44.95475427200009,36.75233144200011],[44.96643314600007,36.749334209],[44.97945560700006,36.749024150000096],[44.996198771000216,36.74168609600012],[45.01097823100016,36.72556305000013],[45.03526615400008,36.68959625300006],[45.04591149900014,36.66804718100012],[45.0443095300001,36.64934031200012],[45.02487919100022,36.613166809000106],[45.014182169,36.57900868700001],[45.013251994000164,36.55792470300018],[45.010254761000084,36.55601267600015],[44.997852417000075,36.552085266000105],[44.99340824400011,36.54965647400006],[44.99139286300013,36.5337401330001],[45.00591394000017,36.518702291000025],[45.009524666000026,36.516195910000036],[45.025344279000166,36.50521474200015],[45.03816003400007,36.4940009560001],[45.03909021000018,36.479841614000165],[45.04549808700014,36.471625061000125],[45.054076375000164,36.46495880100004],[45.06208622300002,36.45534698500002],[45.06689213100012,36.4423762010001],[45.06854577600009,36.43250600200009],[45.072266479000206,36.42341095000013],[45.08373864800009,36.41281728100016],[45.11081709800006,36.40253367100017],[45.13996260600018,36.40439402300016],[45.19597985800012,36.422429097000176],[45.22130131000019,36.420930482000145],[45.23887129800008,36.402998759000084],[45.24961999600012,36.377935690000086],[45.25447758000021,36.35478464800009],[45.25700972500007,36.31168650300016],[45.26393436700019,36.29427154600013],[45.2826929120001,36.274892884000096],[45.25850834200011,36.262232158000145],[45.26419274900016,36.25019154900018],[45.28279626500009,36.23840932200007],[45.29736901800007,36.2267304490001],[45.302019898000104,36.20755849200019],[45.29953942900008,36.16141143800014],[45.30460371900014,36.14037913000014],[45.33560957900008,36.10771962500014],[45.34832198000012,36.08751414000007],[45.344187866000105,36.06746368500002],[45.331888876000136,36.051599020000126],[45.31958988500011,36.03103180000012],[45.313698771000105,36.01041290300013],[45.320210002000096,35.99428985600004],[45.320210002000096,35.994134827000025],[45.320210002000096,35.994083151],[45.320313354000206,35.99403147400006],[45.32052006000006,35.993979798000154],[45.338090047000065,35.979303691000084],[45.359587443000095,35.976874899],[45.38180830900009,35.98297271800008],[45.4015487070001,35.993979798000154],[45.40160038200011,35.99403147400006],[45.40185876500007,35.99403147400006],[45.40196211800017,35.994083151],[45.40216882300015,35.99423818000004],[45.41994551600007,35.99826894200011],[45.45312178500009,36.01165313700007],[45.47927006000012,36.012014872000165],[45.50142367600009,36.005434777000076],[45.539989868000106,35.993979798000154],[45.57693851700023,35.96622955300002],[45.58985762600011,35.959614971000015],[45.61703942900013,35.95542918000008],[45.64685673000022,35.93320831300006],[45.69321049000021,35.87987823500005],[45.71873864800014,35.82830515600013],[45.73103763900011,35.81512766600015],[45.749021037000176,35.81099355100004],[45.78674483200021,35.820243633000146],[45.79790694200008,35.81838328100007],[45.814185018000074,35.8093399050001],[45.83475223800011,35.810528463000125],[45.85407922300013,35.81833160400013],[45.87831547000022,35.83522979800013],[45.888495728000095,35.834868063000116],[45.89877933800008,35.832180888],[45.90911462400018,35.83130238900016],[45.94125736500021,35.84034576500004],[46.00492273000012,35.83796864900007],[46.02497318600015,35.84329132100011],[46.04430017100012,35.852283020000144],[46.06042321800006,35.85724395800009],[46.07695967600009,35.85698557500014],[46.107758830000165,35.84742543600013],[46.115045207000115,35.846443584000085],[46.119851115000216,35.84287790900011],[46.12481205200018,35.82246571900005],[46.129101196000164,35.81554107699999],[46.1351990150001,35.81001169900016],[46.143363891000064,35.80453399600018],[46.16351770000019,35.79750600199999],[46.18496341900001,35.79817779600016],[46.227441447000075,35.80572255500003],[46.24640669800013,35.81140696300015],[46.263511596000086,35.82112213200018],[46.281391642000095,35.82830515600013],[46.30299239100012,35.826548157000055],[46.31963220200012,35.81688466400014],[46.32707360800006,35.8035004690001],[46.325058228000074,35.78784250900004],[46.313379354000205,35.77151275700011],[46.29751469000021,35.75988555900015],[46.26712894700009,35.74412424800006],[46.253486369000164,35.72774281900003],[46.237880086000104,35.715547181000105],[46.21700280800022,35.71358347600007],[46.17772871900016,35.71539215100016],[46.127602580000115,35.69368805000006],[46.10703536000008,35.68981231700012],[46.03706547100015,35.691569316000184],[46.01649825100017,35.68572987900011],[46.003785848000085,35.674257711000095],[45.99587935400004,35.65839304600017],[45.992365356000185,35.640874736000015],[45.992313680000194,35.62438995400014],[46.00202885000013,35.585942688],[45.99923832200008,35.572145081000045],[45.96869755000009,35.57974151600011],[45.96389164200016,35.57974151600011],[45.95934411600015,35.57870798800003],[45.968025757000106,35.55850250300013],[45.97923954300015,35.53948557500017],[45.98311527500018,35.53529978400003],[45.98456221500007,35.53106231700018],[45.98321862800012,35.526979879000166],[45.97923954300015,35.52300079399999],[45.971333048000105,35.518039856000044],[45.96606205300023,35.511476949000055],[45.963581584000075,35.503415426000075],[45.96399499500009,35.49416534400013],[45.97701745600014,35.465329895000124],[46.04099287900012,35.381562398000156],[46.09628666200015,35.34115142899999],[46.120161173000014,35.31851715100014],[46.1273958740002,35.28906158400003],[46.125285441000095,35.284989341000156],[46.1200578200002,35.274902243000085],[46.107655477000115,35.262758281000075],[46.09876713100012,35.250045879000126],[46.10145430500003,35.234284566000134],[46.115406942000014,35.22632639600009],[46.154164266000095,35.22663645500016],[46.169253784000176,35.216249492000046],[46.165481405000065,35.18994618700019],[46.14382897900006,35.159612122000155],[46.13039310700012,35.131396790000096],[46.151063680000135,35.111604716000116],[46.143105510000076,35.09951243100012],[46.13235681200015,35.094758199000054],[46.11995446800009,35.09274281800019],[46.094529663000145,35.0858181760001],[46.076649617000186,35.08969390900016],[46.06657271400016,35.088815410000116],[46.039752645000156,35.075534566000115],[46.025076538000086,35.06426910400013],[46.00921187300017,35.06091013600003],[45.97923954300015,35.07155548200005],[45.96637211100003,35.07072865800011],[45.956036824000215,35.07424265600015],[45.93495284000019,35.08545644200011],[45.92017338100018,35.089642233000134],[45.91319706200007,35.08731679300011],[45.899399454000125,35.06860992500013],[45.89836592700007,35.06390736900015],[45.90115645400013,35.0516083780001],[45.899089396000164,35.04690582300013],[45.89309493000022,35.04437367800013],[45.87903894100011,35.043236796000045],[45.87247603400013,35.04142812100003],[45.86188236500007,35.0327981570001],[45.857024780000216,35.021274312000074],[45.856818074000074,35.00804514600016],[45.859711955000165,34.99440256800007],[45.859711955000165,34.99424753800012],[45.868962036000056,34.968357646000086],[45.86632653800004,34.94954742500009],[45.85785160300022,34.931305644000034],[45.85020349200008,34.90681101500017],[45.83501062000008,34.89017120400014],[45.8080355230002,34.897870992000136],[45.79621445900008,34.903042708000115],[45.77826989800022,34.91089345300015],[45.75511885600022,34.90996327700013],[45.74850427200013,34.890739645],[45.75046797700005,34.86536651700011],[45.745403687000106,34.84097524],[45.71770511900016,34.825110576000085],[45.68923140500012,34.82263010700011],[45.67657067900021,34.81828928700012],[45.666752156000115,34.80692047200013],[45.6635998940001,34.794931539000075],[45.665925334000086,34.774726054000084],[45.66282474800008,34.76325388600016],[45.6350228270002,34.736950583000024],[45.62737471500023,34.720827535000055],[45.642257528000094,34.70687489900014],[45.65052575700022,34.702999166],[45.65951745600008,34.69721140600002],[45.66685551000015,34.68997670500014],[45.67036950600013,34.68181182900004],[45.67347009300008,34.67116648400004],[45.6783793540001,34.665120341000105],[45.68349532000016,34.66021108000017],[45.687629435000105,34.65323476200017],[45.690781698000166,34.63432118800012],[45.6912467860001,34.615510966000116],[45.694450724000056,34.598561097000115],[45.70561283400011,34.58559031200009],[45.70855839100019,34.57907908100013],[45.708300008,34.568382060000104],[45.70561283400011,34.55773671500013],[45.701530396000095,34.55127716100016],[45.695587605000156,34.55024363200009],[45.673573446000056,34.55665151000012],[45.60484379100009,34.561147360000135],[45.57394128500013,34.56729685500012],[45.539628133000086,34.58223134399999],[45.5006641030001,34.59168813100014],[45.49652998800016,34.56424794499999],[45.50484989500014,34.523785299],[45.50345463100004,34.494174703000155],[45.49870039900006,34.486242370000085],[45.49301599100013,34.479007670000115],[45.48650476100008,34.47272898400003],[45.47927006000012,34.467251282000134],[45.426766805000135,34.457510275000104],[45.41705163500009,34.44435862300013],[45.4479541420001,34.36208974300017],[45.46076989800005,34.34046315500008],[45.47927006000012,34.3291460170001],[45.499217164000214,34.34240102200012],[45.521541382000095,34.34250437400014],[45.54221195500011,34.33160064700017],[45.55755985500016,34.31196360300005],[45.56303755700017,34.289277649000084],[45.56102217600019,34.26460215300007],[45.54768965700006,34.216491395],[45.54272871900011,34.20747385700015],[45.528672730000125,34.188560283000115],[45.52665734900009,34.17931020200011],[45.53146325700018,34.16791554800001],[45.53880131000008,34.159233907000136],[45.544537395000106,34.15062978100012],[45.544537395000106,34.13949351000018],[45.53435713700017,34.12820221000011],[45.493946167000075,34.10068450900003],[45.47927006000012,34.08763621100009],[45.45487878400016,34.06985951800006],[45.44361332200012,34.047664490000116],[45.43519006400012,34.0221363320001],[45.41994551600007,33.994360250000156],[45.41994551600007,33.99425689800002],[45.41973881100009,33.99425689800002],[45.41147058100008,33.987151388000186],[45.40175541200014,33.981622008999985],[45.38036136900021,33.97356048600001],[45.40103194200012,33.94945343000013],[45.423717895000124,33.938782247000134],[45.449711141000165,33.93738698400007],[45.47927006000012,33.94118520100001],[45.48175052900015,33.94087514300013],[45.48392093900023,33.94004832000009],[45.48578129000006,33.93865305600012],[45.57476810700015,33.8039325970001],[45.5882039790001,33.791504415000034],[45.60360355600008,33.780729879000106],[45.616729370000115,33.76868927000013],[45.6239123940002,33.752075297000104],[45.62820153900023,33.73184397400003],[45.63512618000007,33.714170634000126],[45.64515140800009,33.697918396000105],[45.65879398600018,33.681691997000186],[45.67398685700019,33.66903127100015],[45.72111576400019,33.640764262000076],[45.72462962300003,33.63303641300017],[45.72798872900009,33.625648905000055],[45.72773034700012,33.5900955200001],[45.73455163600008,33.583119202000105],[45.75201827000009,33.58676239],[45.76845137600017,33.5959091190001],[45.79754520600007,33.61931854200004],[45.81578698700011,33.62580393500012],[45.86436283300023,33.626424053000086],[45.88596358200019,33.63091990200009],[45.882036174000206,33.600198263000046],[45.89970951400013,33.58516042100017],[45.920896850000105,33.57299062100016],[45.92792484500009,33.55087310800015],[45.915625855000165,33.535809428000064],[45.86818689000009,33.51157318200008],[45.85258060800001,33.49436493000008],[45.86973718300007,33.482117615000064],[45.899399454000125,33.47630401700009],[45.92968184500009,33.47950795500016],[45.9481820070001,33.49426157700016],[45.95314294400006,33.4965870160001],[45.95815555900012,33.49738800100012],[45.963271525000124,33.496561177],[45.96448744700015,33.495991214000085],[45.96823246200003,33.49423573800006],[45.971384725000206,33.492762960000064],[45.974433635000224,33.49079925500003],[46.00802331500008,33.45565928100008],[46.01939213100016,33.438399353000094],[46.02745365400002,33.41951161700014],[46.03050256400015,33.399202780000124],[46.0310710050002,33.382511291000114],[46.036238648000136,33.36793853800005],[46.06972497600012,33.3408600880001],[46.10951582900023,33.29370534300007],[46.14134851100019,33.27210459400011],[46.15530114800018,33.260219015000175],[46.16418949400011,33.243346659000096],[46.16439619900015,33.23306304900011],[46.158350057000206,33.21386525500019],[46.15767826400022,33.205674541000164],[46.16212243600014,33.19637278300002],[46.17369795700009,33.19022328700005],[46.174318074000126,33.181179911000115],[46.16718672600021,33.16833831800001],[46.15344079600007,33.15425649100008],[46.126465699000015,33.13177724200007],[46.10538171400011,33.11839304700014],[46.089155314000124,33.11568003400011],[46.072412150000076,33.11676523900008],[46.05039799000005,33.11511159300015],[46.0302958570002,33.10568064400009],[46.029314005000025,33.09351084399999],[46.04326664300007,33.08345977800015],[46.087191610000076,33.079222310000105],[46.10600183100009,33.072504375000065],[46.1204195560002,33.061678162000035],[46.126155639000075,33.047983908000035],[46.11948938000015,33.031008199],[46.10465824400009,33.01806325299999],[46.08801843300009,33.00672027600011],[46.075719442000064,32.99449880000015],[46.075719442000064,32.99434377000013],[46.097010132000065,32.95432037400015],[46.15555952900016,32.94835174600014],[46.27343347200005,32.95948801700017],[46.37962854000014,32.931763611000136],[46.47931237800012,32.89179189000008],[46.50732100500013,32.86802073200012],[46.60061305900015,32.82254147600018],[46.604421021000206,32.820685120000135],[46.65036136900019,32.789369202000145],[46.715887085000105,32.75601206500009],[46.75733158400006,32.71619537400006],[47.058398479000026,32.49447764100002],[47.05860518400013,32.49447764100002],[47.05865686000001,32.494400127000105],[47.09059289600011,32.47455637600011],[47.12103031500006,32.461042989000035],[47.15255293800013,32.45517771400013],[47.18779626500011,32.45838165300002],[47.20546960500021,32.46404022200015],[47.251254924000165,32.485460104000154],[47.265310913000086,32.48468495700014],[47.32194828300006,32.46822601300009],[47.343342326000055,32.45869171200009],[47.35610640500013,32.446186015000094],[47.367320191000054,32.43076060000011],[47.384115031000164,32.41257049600007],[47.41083174700012,32.39528473000017],[47.41641280100012,32.38797251400008],[47.41796309400016,32.376422831000134],[47.41434574400009,32.36985992500014],[47.408764689000144,32.36433054600015],[47.39997969600009,32.34577870800002],[47.395948934000074,32.34198048899999],[47.39579390500015,32.33701955200006],[47.402460165000065,32.323506165000154],[47.40705936700007,32.317770081],[47.43687666800011,32.29368886300007],[47.441579224000094,32.288185323000064],[47.44535160300009,32.28263010700006],[47.463024943000185,32.26183034300011],[47.46943282000015,32.256120097000164],[47.47914799000009,32.252063498000055],[47.48452233900011,32.23935109500009],[47.5040043540001,32.226742046000155],[47.50922367300015,32.213797099000075],[47.507673380000114,32.19984446300016],[47.50235070800008,32.19012929400013],[47.496407918000074,32.181344299000145],[47.49248051000009,32.170492249000105],[47.490413452000126,32.15653961200009],[47.49134362800007,32.14863311800015],[47.498164917000025,32.14413726800005],[47.51382287600009,32.140313212000095],[47.5266903080001,32.13338857000012],[47.53475183100008,32.12315663700004],[47.543640177000185,32.11457834900001],[47.55872969600008,32.11297638000015],[47.578056682000145,32.106155090000115],[47.580232356000096,32.10349519600011],[47.59500655200023,32.08543284200009],[47.617795858000164,32.04186960900013],[47.63314375800021,32.02693512000009],[47.66807702600008,32.01241404300005],[47.67794722500011,31.994689026000046],[47.67794722500011,31.994533997000172],[47.68264978000016,31.97691233400009],[47.71840987200008,31.922342021000148],[47.725231161000146,31.91433217399999],[47.74331791200004,31.904255269000046],[47.750966024,31.8982091270001],[47.75654707900011,31.889165751000135],[47.761714722000164,31.871647441],[47.765280395000126,31.864102682000137],[47.781351766000085,31.84885813400011],[47.82078088400007,31.82358835900014],[47.8344751380001,31.805708313000178],[47.83726566600009,31.784469300000108],[47.83132287600008,31.761835022000145],[47.67892907700016,31.407851461000078],[47.676443174000184,31.236517019000114],[47.672934611000215,30.99469838500012],[48.00154504400021,30.99464670800002],[48.012242066000134,30.98906565300008],[48.0154460040001,30.976249899000106],[48.012035359000066,30.49457387300013],[48.012035359000066,30.49452219600012],[48.01358565300009,30.463878072000096],[48.11941898600011,30.450803935000135],[48.13058109600016,30.447496643000033],[48.140916382000086,30.44191558900003],[48.157659546000126,30.42630930600008],[48.170475301000096,30.40667226100005],[48.179467,30.38486480700011],[48.187683553000085,30.34083648700006],[48.192076050000054,30.331276347000152],[48.20008589700015,30.323938293000154],[48.21119633000009,30.3196491500001],[48.222978556000186,30.3180988570001],[48.235070841000066,30.318512268000106],[48.27165775600011,30.323834941000044],[48.2842668050001,30.323318177000107],[48.296359090000095,30.319752502000043],[48.305712525000075,30.312827861000144],[48.326021362000084,30.283475647000085],[48.35816410300012,30.251797995000075],[48.39702478100017,30.22099884100002],[48.40358768800016,30.2125239060001],[48.40870365400022,30.202343649000127],[48.41061568200004,30.191543275000086],[48.40803186000008,30.180897929000096],[48.40074548400016,30.172267965000156],[48.39113366700005,30.164774882000028],[48.3832788490001,30.156454977000166],[48.38110844000002,30.14534454400014],[48.38307214300008,30.138419901000148],[48.39557784100006,30.11521718400014],[48.41552494300018,30.095631816000136],[48.42120935100016,30.08534820600015],[48.423948202000105,30.083642884000184],[48.442189982000144,30.033930156000068],[48.44425704000011,30.020907695000133],[48.453145386000216,30.001425679000036],[48.4577962650001,29.994862772000076],[48.46430749600003,29.989126689],[48.478156779000216,29.979618225000124],[48.49303959100004,29.971763408000083],[48.52399377500014,29.964115295000013],[48.531025298659216,29.96135117938381],[48.531016472000175,29.961330471000064],[48.530772332000225,29.96076080900012],[48.530772332000225,29.956203518000063],[48.55494225400011,29.956488348],[48.55925540500007,29.946600653000086],[48.54688561300011,29.93471914300012],[48.52051842500011,29.928900458000086],[48.41187584700006,29.938421942000087],[48.335459832000225,29.96141185100005],[48.29957116000011,29.98452383000001],[48.26465905000012,29.993963934000032],[48.20923912900017,30.02448151200015],[48.165782097,30.037543036000145],[48.119151238000114,30.044989325000117],[48.076345248000194,30.045640367000157],[48.03825931100013,30.036851304000024],[47.96900475400011,30.004055080000096],[47.96192467500006,30.03034088700009],[47.958506707000055,30.060614325000085],[47.95167076900023,30.088324286],[47.93482506600017,30.107082424000154],[47.9471134770001,30.07453034100008],[47.94849694100017,30.062323309000092],[47.94605553500017,30.049383856000087],[47.94174238400015,30.037258205000015],[47.940928582000225,30.02651601800009],[47.94849694100017,30.01764557500014],[47.94800866000011,29.994045315],[47.73143233300013,30.088552145000033],[47.67417484500007,30.098215637000138],[47.41579268400008,30.098215637000138],[47.35822513800022,30.092117818000176],[47.19709802300022,30.034240214000146],[47.144698120000186,30.003337707000142],[47.110488322000116,29.96091135700014],[47.025428914000116,29.77213735000005],[46.988842,29.712657776000082],[46.98367435700007,29.69829172800017],[46.9798503010002,29.668061015000077],[46.97736983200011,29.657984111000033],[46.957836141000115,29.620441183000125],[46.883112020000134,29.51251495400002],[46.85344974800009,29.44456044600004],[46.8385669350001,29.424975078000116],[46.77448815900012,29.363531799000114],[46.71185632300009,29.271392720000094],[46.561468148000095,29.124166509000176],[46.532435750000126,29.09574452700015],[46.4886141360001,29.087579652000144],[46.44489587400008,29.07941477500013],[46.42732232000017,29.076143103000145],[46.4011776130001,29.071275737000022],[46.357459350000084,29.063136699000026],[46.25214278200011,29.071456604000062],[46.17592004400009,29.07747690899999],[46.09969730700007,29.083574728000073],[46.0236295980001,29.089595032000187],[45.94735518400009,29.095641174000136],[45.84493249500022,29.103754374000133],[45.742406453000086,29.111867575000062],[45.63988041200011,29.120032450000068],[45.53740604700007,29.12811981200015],[45.43493168100022,29.136207174000063],[45.33240564000019,29.144372050000175],[45.22998295100015,29.152459412000088],[45.12745690900007,29.160624288000076],[45.04782352700008,29.1669029750001],[44.968293498000065,29.17325917600012],[44.888711792000116,29.179512024000033],[44.808923381000135,29.185894064000152],[44.717456095000074,29.19310292600004],[44.71089318800014,29.195273336000113],[44.704640341000214,29.1974954220001],[44.69823246200011,29.199717510000095],[44.69182458500015,29.2018362430001],[44.61487837800021,29.256070659000116],[44.51974206500008,29.32332753500019],[44.424295695000154,29.390532736000136],[44.32895267700021,29.457789613000113],[44.23366133600004,29.524994812],[44.119146362000066,29.605816752000138],[44.00463138800009,29.6866128540001],[43.89006473800012,29.767383118000158],[43.82401296300006,29.813979859000185],[43.77549808800009,29.84820505800012],[43.66098311400006,29.929026998000083],[43.546364787000094,30.009797262000017],[43.431746460000085,30.090567526000157],[43.317231486000225,30.17133778900002],[43.22907149300008,30.233504537],[43.14096317500016,30.295671285000182],[43.052906535000055,30.357786357000162],[42.964746541000096,30.420004782000078],[42.85901656000007,30.49452219600012],[42.85891320800013,30.49457387300013],[42.85880985500009,30.494625549000045],[42.85870650200015,30.494677226000153],[42.7834125790001,30.551045032000143],[42.76393192600019,30.565628967000134],[42.66915734900007,30.63668406200004],[42.574486125000156,30.70763580300003],[42.4797115480001,30.77863922200011],[42.39516890500013,30.841581116000114],[42.31072961400017,30.904523010000116],[42.22629032400002,30.967464905000117],[42.14164432800012,31.030406800000108],[42.07539514200002,31.079861145000066],[41.98620162000011,31.125284729],[41.89855839000009,31.169984843000133],[41.810708455000196,31.214684958000092],[41.7230652260001,31.259385071000125],[41.635421997000066,31.304033508000156],[41.54757206200023,31.348733623000115],[41.45982548000009,31.393433736000148],[41.37218225100017,31.438133850000025],[41.284539022000075,31.482833964000132],[41.19668908700007,31.527585755000118],[41.10904585800009,31.572285868000147],[41.02129927500002,31.61693430600009],[40.9335526940001,31.661634420000137],[40.84590946500006,31.706334534000074],[40.75816288200022,31.751086324000042],[40.67031294700004,31.795683086000153],[40.582669719000165,31.840434876000113],[40.47983361800013,31.892834778000132],[40.42412642400009,31.92053334500018],[40.37027958200022,31.93846506800004],[40.02931848200021,31.99437896700014],[40.02911177600006,31.994430644000044],[40.029008423000136,31.99448232000016],[40.02880171700005,31.99448232000016],[39.94859989400018,32.00610951700013],[39.75098921700007,32.03489329100013],[39.55327518700008,32.06372874000009],[39.35556115700015,32.09256418900013],[39.15774377400007,32.12134796200006],[39.15495324700012,32.12057281500013],[39.152162719000074,32.119745992],[39.149268840000076,32.11891916899999],[39.14637496000009,32.11814402300017],[39.14616825300007,32.12584381100005],[39.266470988000066,32.21286692300011],[39.291999145000176,32.2445187380001],[39.271121867000176,32.31195648200013],[39.256342407000176,32.34267812100008],[39.2357751870002,32.352858378000136],[39.0463293870001,32.3084941610001],[39.03620080600015,32.313351745000105],[39.02875939900016,32.32833791100008],[38.979976848000064,32.472101746000035],[38.97863326,32.47372955400008],[38.97821984900011,32.474969788000024],[38.97863326,32.475693258000106],[38.979976848000064,32.47605499300012],[39.05718143800007,32.49659637400002],[38.99000207500009,32.70557586700009],[38.942769816000094,32.85233693400014],[38.897191203000176,32.99434377000013],[38.86256799300011,33.100719706000135],[38.82102014200021,33.22903228800003],[38.774511352000076,33.37168507900015],[38.88509891800012,33.42710805300011],[38.99568648300007,33.48247935000016],[39.10627404800019,33.53792816100004],[39.21686161300008,33.59332529699999],[39.327449178000194,33.64872243200013],[39.43803674300014,33.70409373000008],[39.5486243080002,33.75949086500013],[39.659211874000135,33.81481048600007],[39.76969608500005,33.870233460000016],[39.88038700300015,33.92560475700016],[39.990871216000045,33.98097605400001],[40.101458781000105,34.036373189000145],[40.17311082500012,34.07228291700012],[40.212046346000164,34.091796163000126],[40.32263391100011,34.14716746000006],[40.43322147600023,34.20253875700011],[40.54380904100017,34.25798757000008],[40.69046675600006,34.331497294000044],[40.936033163000076,34.38606760700016],[40.96528202300013,34.401854757000145],[40.98801965300018,34.42851979600012],[41.02398645100007,34.494174703000155],[41.02398645100007,34.49432973300018],[41.19565555800008,34.768473206000074],[41.20423384600022,34.79312286400007],[41.20650760900017,34.81932281500009],[41.198032674000075,34.994040833000085],[41.19232585700009,35.15890443700012],[41.19152144400019,35.18214304600018],[41.20133996600006,35.24301788400011],[41.24309452300011,35.36652455700009],[41.25187951700016,35.464089661000074],[41.26107792100018,35.49416534400013],[41.2611812740001,35.49416534400013],[41.26128462700015,35.49416534400013],[41.26128462700015,35.494320374],[41.308457834000166,35.55224762500013],[41.342209921000205,35.5936941530001],[41.3580229090002,35.62392486600011],[41.363500610000216,35.65524078400004],[41.35926314300016,35.792751771],[41.35450891100006,35.8255663040001],[41.343656861000134,35.857657370000126],[41.266348918000205,35.99423818000004],[41.266348918000205,35.99434153200015],[41.266245565000105,35.99428985600004],[41.24061405400013,36.043020732000066],[41.23668664500016,36.06033233699999],[41.23658329300022,36.07702382400011],[41.26882938700007,36.32796458000011],[41.2769942620001,36.35478464800009],[41.36525760900011,36.49389760300009],[41.36525760900011,36.4940009560001],[41.36536096200021,36.49405263300004],[41.36536096200021,36.494155986000166],[41.385411417000086,36.51637685100009],[41.414866984000156,36.52738393200009],[41.479772583000084,36.53611724900016],[41.78993453000018,36.589292297000114],[41.817323039000115,36.59973093700013],[41.84378137300021,36.61786936400007],[41.9785535070001,36.733624573000114],[42.17843794800015,36.90531952],[42.281584107000036,36.993970439000165],[42.28189416500007,36.993970439000165],[42.28189416500007,36.99402211500008],[42.28189416500007,36.994125468],[42.34586958800023,37.042908020000155],[42.376805724000036,37.06200061900007],[42.37718550600002,37.06223500600011],[42.37687544800016,37.07675608300015],[42.37119104000013,37.087944031000106],[42.363646281000136,37.09815012700007],[42.35723840300014,37.10998402900019],[42.40188684100022,37.1141439820001],[42.45914432800012,37.12931101500014],[42.54523726400012,37.140886536],[42.56125695800003,37.14662262000006],[42.564667602000064,37.15204864500011],[42.5769665940002,37.179230449],[42.702333619000086,37.325345561000105],[42.70615767400014,37.33322621700013],[42.70739790900003,37.34015085900002],[42.709464965000194,37.34717885400011],[42.715666138000095,37.35529205300004],[42.72217736800005,37.35890940400013],[42.77158003700018,37.37490326000007],[42.780468384000216,37.37549753800012],[42.79245731600005,37.37433481900011],[42.80113895600002,37.36908966100019],[42.805479777000095,37.35185557000001],[42.81405806500007,37.346817119000136],[42.896740357000084,37.32490631100008]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Israel","sov_a3":"IS1","adm0_dif":1,"level":2,"type":"Country","admin":"Israel","adm0_a3":"ISR","geou_dif":0,"geounit":"Israel","gu_a3":"ISR","su_dif":0,"subunit":"Israel","su_a3":"ISR","brk_diff":0,"name":"Israel","name_long":"Israel","brk_a3":"ISR","brk_name":"Israel","brk_group":null,"abbrev":"Isr.","postal":"IS","formal_en":"State of Israel","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Israel","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":9,"pop_est":7233701,"gdp_md_est":201400,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"-99","iso_a2":"IL","iso_a3":"ISR","iso_n3":"376","un_a3":"376","wb_a2":"IL","wb_a3":"ISR","woe_id":23424852,"woe_id_eh":23424852,"woe_note":"Exact WOE match as country","adm0_a3_is":"ISR","adm0_a3_us":"ISR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ISR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[35.80363326000017,33.24846262600009],[35.80766402200006,33.201721294],[35.830194946000084,33.18999074300011],[35.83339888500015,33.161129456000154],[35.82244348100008,33.141569926000145],[35.81148807800011,33.12676462900011],[35.81148807800011,33.11190765400009],[35.84890181500006,33.098678487000186],[35.845801229000216,33.08542348200008],[35.85903039500013,32.99020965600012],[35.864611450000126,32.977729797000116],[35.8880725500002,32.94494110100011],[35.874016561000104,32.92233266200016],[35.866885213000074,32.92078236900015],[35.84972863800019,32.89582265300008],[35.8380497640002,32.86603118900017],[35.841873820000075,32.853577169000104],[35.83422570800005,32.82794565800013],[35.78420292100005,32.77794871000005],[35.75759034900014,32.744346858000185],[35.75743453000021,32.74428151400009],[35.740174601,32.74053497300018],[35.68519087700005,32.7112344370001],[35.65201460800009,32.68617136600001],[35.63599491300013,32.6791433720001],[35.61233385000011,32.681535197000116],[35.612223755000024,32.681546326000145],[35.593826945000075,32.67035837800002],[35.57873742700016,32.6534343470001],[35.56984908000007,32.64676808700001],[35.562717733000085,32.644210104000095],[35.56054732300012,32.6409028120001],[35.56003055800008,32.63268626000017],[35.56406132000009,32.62547739700001],[35.572536255000074,32.62123993000016],[35.572536255000074,32.615012920000154],[35.56561161300007,32.615012920000154],[35.56561161300007,32.60754567500014],[35.57129602100022,32.59855397500009],[35.57439660600008,32.572767436],[35.579977661000186,32.56039093000013],[35.57584354600007,32.55496490500015],[35.57439660600008,32.55439646400011],[35.57387984200014,32.55674774200004],[35.572536255000074,32.56039093000013],[35.57015913900014,32.55682525700014],[35.56561161300007,32.54610239700004],[35.5594104410001,32.55294952400011],[35.56282108600013,32.53202056900012],[35.56561161300007,32.525586853000064],[35.5519690350001,32.525586853000064],[35.5519690350001,32.51881724100003],[35.55724003100013,32.519334005000175],[35.561374145000144,32.519178976000134],[35.568505493000174,32.51026479100001],[35.57057255000021,32.50602732400016],[35.579977661000186,32.49773325600001],[35.579977661000186,32.4914804080001],[35.57098596200015,32.48920664500018],[35.564991495000214,32.483909811000146],[35.5612707920001,32.47708852200019],[35.5594104410001,32.47039642300008],[35.5631311440002,32.468174337000065],[35.5654049070001,32.46631398500007],[35.56809208200016,32.464970398],[35.572536255000074,32.464195252000096],[35.572536255000074,32.45672800700008],[35.56623173000017,32.45311065700018],[35.5594104410001,32.450526835000076],[35.56561161300007,32.44370554600012],[35.5519690350001,32.43621246400009],[35.554139445000175,32.43445546500011],[35.55620650200015,32.43479136200001],[35.55786014900016,32.43411956800013],[35.5594104410001,32.42944285100005],[35.5519690350001,32.42944285100005],[35.5519690350001,32.42324167900007],[35.558170207000074,32.41799652200014],[35.55910038300013,32.413965759000135],[35.554862915000086,32.411175232000076],[35.54514774600014,32.40957326300007],[35.5495919190001,32.39854034500014],[35.5519690350001,32.39528473000017],[35.55682662000018,32.39091807100009],[35.56096073400013,32.384716899000104],[35.48013879400017,32.40241607700001],[35.45667769400009,32.40760955900011],[35.432803182000185,32.40825551400009],[35.406861613000075,32.414792582000175],[35.40138391100006,32.44001068100012],[35.40179732200008,32.47096486400012],[35.392908976000086,32.49447764100002],[35.36314335100005,32.51010976200017],[35.333377726000066,32.51308115700009],[35.27043583200006,32.510471497000154],[35.25224572700003,32.51594919800005],[35.223720337000174,32.535896302000154],[35.21035935400013,32.54186756300014],[35.20863081900009,32.54264007600001],[35.19075077300013,32.54170990000016],[35.176798137000134,32.532692363000095],[35.15168339100009,32.50791351300008],[35.1206775310001,32.49132537900006],[35.09070520000014,32.479233094000094],[35.06435021900009,32.46313588500003],[35.044713175000226,32.43411956800013],[35.03273030100016,32.38220026100005],[35.02879683500012,32.36515736900019],[35.02156213400004,32.3445901490001],[35.017841431000164,32.342213033000135],[35.004508911000094,32.33805308100004],[35.00068485500017,32.33572764100008],[34.99655074100005,32.32304107700004],[34.993036743000204,32.29157013000018],[34.98993615800018,32.27847015400012],[35.00244185400007,32.27513702400004],[35.00936649600007,32.26764394200008],[35.011123494000145,32.257101949000045],[35.007609497000175,32.244389547000154],[35.0002714440001,32.232013041000116],[34.96141076700022,32.201575623000124],[34.9480782470001,32.18687367800014],[34.94611454200017,32.17726186100013],[34.9623409430001,32.14635935500003],[34.96730188,32.12946116100015],[34.979910929000226,32.03520334900004],[34.9804276940001,32.01654815700006],[34.97867069500009,31.99437896700014],[34.97867069500009,31.993707174000164],[34.978980753000116,31.99308705700018],[34.97960087100014,31.992570292000057],[34.98032434100017,31.992156881000042],[34.98115116300019,31.988849589000136],[34.98146122300008,31.985232239000155],[34.98115116300019,31.981614889000166],[34.98032434100017,31.978204244000054],[34.97608687300013,31.9482319130001],[34.99582727000009,31.909164531],[35.007712850000104,31.875678202000085],[34.98032434100017,31.862604065000042],[34.953245890000204,31.85443918900002],[34.947326194000226,31.84092514600009],[34.94539107300008,31.836507467000146],[34.95479618300013,31.819764303000095],[34.98776574700017,31.81480336600005],[35.00337203,31.814648336000015],[35.01050337800004,31.815888570000038],[35.02042525200013,31.821159567000066],[35.03809859200007,31.837385966000095],[35.045539999000056,31.841416728000084],[35.05969934000021,31.83940134700013],[35.11189253800009,31.818058981000135],[35.181449015000084,31.804106344000143],[35.198398885000216,31.795166321000025],[35.20625370300016,31.78276397700013],[35.208010701,31.766124166000125],[35.206563761000126,31.744626771000085],[35.20284305800013,31.738942363000135],[35.19829553200006,31.737702129000112],[35.19312788900018,31.739872539000185],[35.187443481000145,31.744471741000137],[35.12574182100016,31.73310292500007],[35.10672489400011,31.72493805000012],[35.08884484900013,31.71258738200008],[35.054014934000094,31.68220164000003],[34.97360640500014,31.63037017800003],[34.95531294800016,31.61187001600011],[34.95317554300007,31.608319958],[34.937329549000054,31.582001038],[34.93288537600009,31.554922588000142],[34.932471965000076,31.526965637000142],[34.9267875570001,31.4944094850001],[34.881725708000175,31.429865621000072],[34.867152954000204,31.396430970000083],[34.878831827000084,31.36284128900014],[34.900949341000086,31.34847524000004],[34.92740767400008,31.34490956700007],[34.95489953600023,31.348630270000104],[34.98032434100017,31.35617502900014],[35.040165649000215,31.36320302400004],[35.16491255700012,31.362272848000185],[35.22330692500006,31.381031393000097],[35.33234419800013,31.458804423000018],[35.3901184490002,31.487071432],[35.458124634000086,31.491929016000128],[35.4585380450001,31.491618958000128],[35.45712755600019,31.433524394000084],[35.456884400000064,31.42350942000003],[35.45285363700023,31.400823466000148],[35.435076945000134,31.360619202000137],[35.41647342900015,31.331835429000122],[35.42391483500008,31.324600728000163],[35.42226119000023,31.30299998],[35.40820520000014,31.282019349000095],[35.395699504000135,31.25767974900016],[35.4011772060002,31.230291239000124],[35.41068566900017,31.20460805300014],[35.42133101400006,31.184505921],[35.436213827000216,31.159546204000108],[35.44324182100016,31.132209371000084],[35.438487590000165,31.10373565700014],[35.39156538900008,31.023947246000077],[35.385157511000074,30.99464670800002],[35.38526086400006,30.963279114000088],[35.37409875500006,30.94514068600016],[35.347110284000074,30.922709635000142],[35.33492802000009,30.912584534000118],[35.32221561700006,30.889950256000148],[35.31952844200012,30.86731597900011],[35.320045206000174,30.84494008400013],[35.31663456200013,30.82282257100003],[35.31084680200016,30.81331410700012],[35.29389693200008,30.800188293000176],[35.28614546700007,30.79233347600014],[35.27953088400014,30.780241191000144],[35.276120239000214,30.768975728],[35.2715727130001,30.74370595300003],[35.263881904000215,30.71996698600016],[35.263821249000074,30.719779765000123],[35.205323527000104,30.61709869400012],[35.162122029000074,30.494677226000153],[35.15736779700015,30.470854391],[35.14000451700022,30.430185038000143],[35.14000451700022,30.40615549700011],[35.14496545400018,30.395871887],[35.15933150200007,30.375614726000105],[35.162122029000074,30.36140370700015],[35.15995162000016,30.347502747000174],[35.15447391800009,30.33675404900005],[35.147755981000074,30.32647043900006],[35.14176151500013,30.313964743000057],[35.13235640500008,30.261874898000105],[35.12522505700022,30.244666647000127],[35.12481164500011,30.216089579000155],[35.1452755120001,30.15490468400004],[35.1452755120001,30.12338206000008],[35.129049113000086,30.089740702000046],[35.08626102700006,30.034033509000025],[35.07468550600018,29.99460439100009],[35.07406538900014,29.982563782000014],[35.07034468600014,29.973727112000017],[35.065383748000066,29.96597564700001],[35.061456340000206,29.957345683000153],[35.054118286000204,29.92339426700015],[35.053188110000036,29.86262278200003],[35.0489506420001,29.84231394500001],[35.00254520700011,29.733095805000133],[34.99510380100017,29.70816192700006],[34.989832804000145,29.651963807000087],[34.98032434100017,29.62700409000011],[34.96699182200021,29.608116354000074],[34.95986047400018,29.586205547000034],[34.955580276846405,29.55898709275],[34.955577019000174,29.558986721000096],[34.951345248000024,29.545640367000157],[34.94499759200019,29.536851304000113],[34.927744988000114,29.51801178600009],[34.91976972700016,29.507391669000025],[34.915782097000175,29.50023021],[34.91407311300006,29.49380117400007],[34.910817905000016,29.489935614000057],[34.903005405000016,29.489691473000125],[34.893728061000076,29.490545966000028],[34.886729362500226,29.490057684000032],[34.878108358000105,29.504298401000156],[34.85526737500018,29.545717062000122],[34.84823938000008,29.569643250000023],[34.850099732000075,29.638760478],[34.82436486800006,29.741699931000156],[34.78519413300014,29.835699361000124],[34.74137251800002,29.94024078400012],[34.735067993000115,29.99455271400008],[34.735584758000044,30.000702210000142],[34.734964640000186,30.00669667600009],[34.73320764200011,30.012587789000076],[34.73041711400006,30.018168844000098],[34.6916597900001,30.11454539000009],[34.63264530400008,30.26202992800013],[34.599469035000055,30.344505513000158],[34.5884102790001,30.358819886000145],[34.53383996600016,30.400212708000094],[34.52691532400016,30.409617818000143],[34.52474491400008,30.421141662000178],[34.52650191200016,30.438711650000144],[34.536010376000064,30.468580628000083],[34.5362170810001,30.48217153000014],[34.52629520700012,30.49452219600012],[34.52629520700012,30.49457387300013],[34.51037886600008,30.513332418000136],[34.50438440000002,30.53033396500014],[34.50221398900007,30.57167511000007],[34.480406535000014,30.65120513900008],[34.418808228000074,30.79129994700015],[34.367855266000134,30.907416891000093],[34.329511353000015,30.994491679000145],[34.29798872900008,31.07877594000017],[34.25861128700014,31.184144186000097],[34.24835085700013,31.211448958000133],[34.26439904800023,31.224193420000073],[34.3158687750001,31.256904602000148],[34.350905396000115,31.28925404900015],[34.3537992760001,31.306358948000096],[34.34553104600016,31.340723776000132],[34.34584110500006,31.35772532200015],[34.367338501000205,31.39281361899999],[34.480406535000014,31.485624492000014],[34.49549605400014,31.4944094850001],[34.49570275900007,31.4944094850001],[34.52825891100022,31.520144348000187],[34.53042932100013,31.541383362000072],[34.51141239400007,31.561588847000156],[34.48120412500103,31.58314132299959],[34.48121178500011,31.583156643000148],[34.489512566000116,31.60040924700014],[34.51392662900017,31.627142645000063],[34.60271243600002,31.757757880000145],[34.60962975400011,31.76552969000015],[34.665944858000074,31.87388743700016],[34.6932072270001,31.926459052],[34.71192467500006,31.95160553600009],[34.74333743600019,32.039862372000144],[34.7439884770001,32.04462311400006],[34.74268639400023,32.05560944200003],[34.74333743600019,32.06037018400012],[34.75700931100013,32.06659577000006],[34.83765709700012,32.28070709800012],[34.87322024800014,32.4303246110001],[34.90414472700015,32.56061432500006],[34.90984134200008,32.57025788000011],[34.91586347700016,32.61489492400007],[34.92090905000006,32.62824127800008],[34.91911868600019,32.642971096000096],[34.94206790500019,32.724514065],[34.94752037900011,32.81415436400006],[34.955577019000174,32.834377346000096],[34.97046959700012,32.84137604400017],[34.98316491000017,32.83877187700007],[35.00342858200011,32.82754140800007],[35.01872806100007,32.825018622000144],[35.027679884000094,32.82660553600009],[35.06275475400017,32.85834381700015],[35.06706790500007,32.86684804900007],[35.0755314460001,32.8930931660001],[35.07960045700017,32.90582916900014],[35.07781009200008,32.917873440000065],[35.065440300000056,32.92308177300005],[35.07154381600011,32.937933661000116],[35.078461134000094,32.99884674700003],[35.091970248000194,33.03119538000014],[35.09620201900012,33.050360419000114],[35.09213300900015,33.06769440300009],[35.09644616000017,33.07135651200003],[35.10181725400011,33.07762278900019],[35.10645592500006,33.080755927000084],[35.09961998800023,33.08759186400009],[35.10425866000016,33.088527736000074],[35.10523522200012,33.08901601800015],[35.18527307200023,33.08397654200008],[35.18961389100011,33.085526836000106],[35.20067264800011,33.09273569800017],[35.2071838790001,33.09480275500012],[35.213178345000216,33.09444102000013],[35.22733768700007,33.09136627200009],[35.23446903500022,33.09092702300008],[35.27146936000016,33.10118479400016],[35.28366499800009,33.10118479400016],[35.28882469800013,33.09920123000008],[35.29462040200016,33.09697316500002],[35.305782511000096,33.089376730000154],[35.31570438700007,33.079222310000105],[35.32262902800008,33.06736256900008],[35.331930786000186,33.05715647400011],[35.34515995300009,33.055580342000084],[35.401590617000096,33.06793101000012],[35.44944299300013,33.08521677700013],[35.48013879400017,33.08738718700011],[35.48509973100013,33.102605896000156],[35.503703247000175,33.13061452300015],[35.51228153500019,33.14740936300002],[35.51765588400016,33.172885844000135],[35.520033,33.22218516100004],[35.52778446500011,33.24425099700012],[35.536879516000084,33.25786773700003],[35.54277063000009,33.271536153000156],[35.54948856600012,33.281018779000036],[35.561167440000105,33.28212982200013],[35.56695520000008,33.27618703200004],[35.58504195100008,33.25220916800011],[35.5977543540001,33.24435435000008],[35.597857707000145,33.24438018800008],[35.59806441300012,33.24425099700012],[35.603852173000085,33.24009104400001],[35.603892448000096,33.2403226230001],[35.604575643000175,33.24425099700012],[35.604575643000175,33.244302674000046],[35.604575643000175,33.24435435000008],[35.6014750570001,33.262725322000065],[35.61036340300015,33.270270081000106],[35.62471610897026,33.2729243490444],[35.64054244000013,33.27585113600013],[35.66048954300007,33.289261169000085],[35.698523397000116,33.32266998300004],[35.716196737000274,33.32672658300005],[35.72942590300008,33.32781178800006],[35.74368859900008,33.33117075700015],[35.7575378820002,33.336312561000156],[35.76942346200005,33.342642924000174],[35.785753215000085,33.357887472000115],[35.8057003170002,33.39134796200001],[35.82109989400013,33.40672170000009],[35.82244348100008,33.40137319000003],[35.816965779000185,33.39519785600005],[35.81541548700008,33.37886810400011],[35.812314901,33.37336456300012],[35.80993778500007,33.36003204400002],[35.79350467900011,33.34992930200015],[35.785753215000085,33.34287546800014],[35.763842407000226,33.334400533000135],[35.80208296700002,33.31248972600018],[35.76859663900015,33.27269887300015],[35.77562463400014,33.26489573200014],[35.80363326000017,33.24846262600009]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Jordan","sov_a3":"JOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Jordan","adm0_a3":"JOR","geou_dif":0,"geounit":"Jordan","gu_a3":"JOR","su_dif":0,"subunit":"Jordan","su_a3":"JOR","brk_diff":0,"name":"Jordan","name_long":"Jordan","brk_a3":"JOR","brk_name":"Jordan","brk_group":null,"abbrev":"Jord.","postal":"J","formal_en":"Hashemite Kingdom of Jordan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Jordan","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":6342948,"gdp_md_est":31610,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"JO","iso_a2":"JO","iso_a3":"JOR","iso_n3":"400","un_a3":"400","wb_a2":"JO","wb_a3":"JOR","woe_id":23424860,"woe_id_eh":23424860,"woe_note":"Exact WOE match as country","adm0_a3_is":"JOR","adm0_a3_us":"JOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"JOR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[39.04632938700013,32.30849416100003],[39.23577518700011,32.35285837800009],[39.25634240700009,32.34267812100012],[39.27112186700008,32.311956482000085],[39.29199914500015,32.24451873800007],[39.26647098800003,32.212866923000064],[39.14616825300004,32.12584381100001],[39.14637496000011,32.1181440230001],[39.13624637800007,32.11535349600007],[39.11681604000006,32.10289947500007],[38.99806359900009,32.006936341000085],[38.96344038900008,31.994482320000117],[38.96344038900008,31.994327291000076],[38.96333703600004,31.99437896700007],[38.84975223800012,31.966318664000053],[38.624856405000116,31.91086985300009],[38.40016727700004,31.855369365000115],[38.175374796000085,31.79992055200006],[37.98652246000005,31.753358384000137],[37.95047896300008,31.744471741000098],[37.76141217300011,31.69612049300011],[37.70274214700004,31.68111643500006],[37.455005331000045,31.617709452000042],[37.207268514000134,31.554354147000108],[36.99791151900007,31.500813955000066],[36.95953169800003,31.490998840000117],[37.08965295400009,31.37007598900007],[37.21977421100013,31.249101461000095],[37.221722009000075,31.24729212900013],[37.34989546700007,31.128230286000047],[37.48001672400005,31.007255758000067],[37.48311730900008,31.004103495000038],[37.48632124900007,31.000899557000054],[37.48942183400009,30.99769561800008],[37.49262577300004,30.994491679000106],[37.60228316200004,30.883232321000094],[37.71204390500009,30.772024638000058],[37.82190800000012,30.660868632000074],[37.93156538900013,30.549660950000142],[37.98107141100007,30.499483134000116],[37.98138146900004,30.498811340000117],[37.980968058000144,30.498397929000106],[37.98003788200009,30.49808787100005],[37.97331994700005,30.494522196000077],[37.900146118000066,30.45907216400013],[37.77932662000006,30.40041941400008],[37.67070275900005,30.34760610000006],[37.647551718000045,30.330862936000102],[37.63452925600012,30.31277618400009],[37.60517704200004,30.250712789000115],[37.56921024600007,30.17495513900013],[37.5361373290001,30.105295309000013],[37.4916955970001,30.01119252600006],[37.47019820100007,29.99455271400012],[37.35237593600004,29.973313701000055],[37.21853397600012,29.949129130000074],[37.075803670000084,29.923290915000052],[36.93193648300013,29.89724599200008],[36.84294966600004,29.881226299000044],[36.756236613000056,29.865516663000047],[36.728744751000136,29.853527731000096],[36.704870239000115,29.831151836000117],[36.64957645700008,29.749399720000014],[36.603584432000105,29.681471049000063],[36.54126265500008,29.589409485000143],[36.47708052600012,29.49460907000008],[36.3999792890001,29.438901876000042],[36.28370731600012,29.354850159000105],[36.17797733600008,29.278369039000037],[36.06945682800006,29.200027568000053],[36.04382531800013,29.190880840000148],[36.016436808000094,29.189950664],[35.912463827000124,29.205686137000068],[35.797225382000136,29.223075257000087],[35.740250622000076,29.23173071400004],[35.622042277000105,29.24968861900004],[35.47362756400008,29.272064515000125],[35.33461796000012,29.293148499000036],[35.179071899000064,29.31666127500003],[35.06031945800009,29.33469635000003],[34.949385116681015,29.351685826547335],[34.94939212300011,29.351711330000114],[34.96241295700008,29.35976797100005],[34.96900475400014,29.45083242400006],[34.97608483200008,29.477036851],[34.99781334700009,29.517971096000025],[34.996836785000085,29.533880927000038],[34.97608483200008,29.552150783000116],[34.96241295700008,29.552150783000116],[34.961599155000044,29.55540599200006],[34.961599155000044,29.55809153900014],[34.96021569100009,29.55951569200002],[34.95558027684632,29.558987092750044],[34.959860474000095,29.586205547000073],[34.966991822000125,29.608116354000114],[34.98032434100014,29.62700409000007],[34.98983280400006,29.65196380700013],[34.995103801000084,29.708161927000106],[35.00254520700008,29.733095805000087],[35.04895064200008,29.842313945000058],[35.053188110000065,29.86262278200007],[35.05411828600012,29.923394267000077],[35.06145634000018,29.957345683000113],[35.065383748000045,29.965975647000047],[35.07034468600011,29.973727112000063],[35.07406538900011,29.98256378200006],[35.074685506000094,29.994604391000056],[35.086261027000035,30.034033509000036],[35.129049113000065,30.089740702000082],[35.14527551200007,30.12338206000004],[35.14527551200007,30.154904684000087],[35.124811645000136,30.21608957900011],[35.12522505700013,30.24466664700009],[35.13235640500005,30.26187489800014],[35.14176151500004,30.31396474300001],[35.147755981000046,30.326470439000104],[35.154473918000065,30.336754049],[35.159951620000065,30.347502747000107],[35.162122029000045,30.361403707000107],[35.1593315020001,30.375614726000062],[35.1449654540001,30.395871887000055],[35.140004517000136,30.406155497000068],[35.140004517000136,30.430185038000072],[35.157367797000056,30.470854391000042],[35.162122029000045,30.494677226000107],[35.205323527000076,30.617098694000074],[35.2638212490001,30.719779765000084],[35.26388190400013,30.719966986000113],[35.27157271300007,30.74370595300007],[35.276120239000136,30.76897572800004],[35.27953088400005,30.780241191000098],[35.28614546700004,30.792333476000096],[35.29389693200005,30.800188293000105],[35.31084680200007,30.813314107000085],[35.31663456200005,30.822822571000074],[35.320045206000145,30.844940084000083],[35.319528442000035,30.867315979000068],[35.32221561700004,30.889950256000102],[35.33492802000012,30.912584534000047],[35.34711028400005,30.92270963500007],[35.374098755000034,30.945140686000087],[35.38526086400009,30.963279114000045],[35.385157511000045,30.994646708000058],[35.3915653890001,31.023947246000034],[35.438487590000136,31.1037356570001],[35.44324182100013,31.13220937100004],[35.43621382700013,31.159546204000065],[35.42133101400009,31.18450592100004],[35.41068566900009,31.2046080530001],[35.40117720600011,31.23029123900008],[35.395699504000106,31.257679749000115],[35.408205200000104,31.282019349000052],[35.422261190000135,31.30299998000004],[35.42391483500006,31.324600728000092],[35.416473429000064,31.33183542900008],[35.435076945000105,31.360619202000095],[35.452853637000146,31.400823466000105],[35.456884400000035,31.423509420000073],[35.457127556000096,31.433524394000045],[35.45853804500007,31.49161895800009],[35.45812463400006,31.491929016000054],[35.45874475100004,31.491567281000073],[35.45915816300004,31.49187734000014],[35.45905481000011,31.49280751600011],[35.45874475100004,31.49440948500003],[35.46422245300004,31.568565165000077],[35.48013879400013,31.64111887600009],[35.50247856700008,31.685360389000035],[35.527577758000064,31.73506663000003],[35.55941044100007,31.76534901900007],[35.53832645600005,31.819299215000115],[35.53832645600005,31.826740621000052],[35.54907515400009,31.83919464100012],[35.524683879000065,31.91924143500006],[35.527474406000124,31.927354635000082],[35.53367557700011,31.930300192000086],[35.5406002200001,31.932005514000135],[35.54514774600011,31.936604716000087],[35.545871216000194,31.944562887000043],[35.53998010300012,31.955621643000057],[35.53832645600005,31.96394154900011],[35.53770634000011,31.97758412700003],[35.535535929000105,31.98822947300002],[35.524683879000065,32.01169057200008],[35.52282352700007,32.05783762700011],[35.528301229000135,32.07509755500013],[35.54514774600011,32.0868281050001],[35.53460575300005,32.09923044900009],[35.53522587100014,32.110805969000126],[35.55196903500007,32.13519724500014],[35.546698038000045,32.14160512300009],[35.546698038000045,32.14703114900007],[35.55124556500016,32.15152699800009],[35.55941044100007,32.15509267200005],[35.55941044100007,32.16253407900007],[35.55517297300014,32.17439382],[35.55956241700005,32.190370872000074],[35.572536255000045,32.237594096000066],[35.55941044100007,32.237594096000066],[35.561064087000034,32.24314931200007],[35.56375126100005,32.24681833900007],[35.56757531800014,32.2495055140001],[35.572536255000045,32.25190846800007],[35.56457808400012,32.26358734200005],[35.56085738100006,32.2826301070001],[35.56116744000008,32.30169871100008],[35.5656116130001,32.31335174500006],[35.556516560000034,32.32820872000008],[35.557343384000035,32.358206889000144],[35.55196903500007,32.36794789600009],[35.55196903500007,32.374820862000064],[35.55941044100007,32.374820862000064],[35.55941044100007,32.36794789600009],[35.5656116130001,32.36794789600009],[35.563957967000135,32.377042949000064],[35.560960734000105,32.38471689900004],[35.55682662000009,32.390918071000044],[35.55196903500007,32.3952847300001],[35.549591919000136,32.3985403450001],[35.54514774600011,32.409573263000084],[35.55486291500006,32.41117523200003],[35.5591003830001,32.41396575900009],[35.558170207000046,32.417996522000095],[35.55196903500007,32.423241679000114],[35.55196903500007,32.42944285100009],[35.55941044100007,32.42944285100009],[35.55786014900008,32.43411956800006],[35.55620650200012,32.43479136200005],[35.554139445000146,32.43445546500007],[35.55196903500007,32.43621246400005],[35.5656116130001,32.443705546000075],[35.55941044100007,32.45052683500012],[35.56623173000014,32.45311065700011],[35.572536255000045,32.456728007],[35.572536255000045,32.46419525200014],[35.56809208200013,32.46497039800005],[35.56540490700013,32.46631398500011],[35.563131144000124,32.46817433700002],[35.55941044100007,32.470396423000125],[35.561270792000066,32.47708852200014],[35.56499149500013,32.4839098110001],[35.57098596200012,32.48920664500014],[35.5799776610001,32.49148040800014],[35.5799776610001,32.49773325600006],[35.57057255000012,32.506027324000115],[35.568505493000146,32.510264791000054],[35.561374145000116,32.51917897600009],[35.557240031000106,32.519334005000104],[35.55196903500007,32.51881724100008],[35.55196903500007,32.52558685300002],[35.5656116130001,32.52558685300002],[35.562821086000035,32.53202056900008],[35.55941044100007,32.55294952400007],[35.5656116130001,32.546102397000084],[35.57015913900011,32.55682525700009],[35.572536255000045,32.56039093000007],[35.57387984200011,32.556747742000084],[35.57439660600005,32.55439646400006],[35.575843546000044,32.554964905000105],[35.5799776610001,32.56039093000007],[35.57439660600005,32.57276743600005],[35.57129602100014,32.598553975000044],[35.5656116130001,32.60754567500009],[35.5656116130001,32.61501292000011],[35.572536255000045,32.61501292000011],[35.572536255000045,32.621239930000115],[35.56406132000006,32.625477397000054],[35.560030558000044,32.63268626000013],[35.560547323000094,32.640902812000064],[35.56271773300011,32.64421010400005],[35.56984908000004,32.646768087000055],[35.57873742700013,32.65343434700006],[35.593826945000046,32.67035837800006],[35.61222375500006,32.6815463260001],[35.612333850000084,32.68153519700007],[35.635994913000104,32.679143372000055],[35.65201460800005,32.68617136600005],[35.685190877000075,32.71123443700006],[35.74017460100003,32.74053497300011],[35.757434530000126,32.744281514000136],[35.75759034900011,32.744346858000114],[35.76384240700014,32.746968690000074],[35.76973352000004,32.748053894000066],[35.77490116400014,32.74727874800007],[35.77913863100008,32.74451405800011],[35.77913863100008,32.7444623830001],[35.779035278000144,32.744359030000055],[35.779035278000144,32.744281514000136],[35.78823368400009,32.734411317000045],[35.89572066300008,32.71327565600012],[35.90522912600005,32.70857310000014],[35.92248905400004,32.69376780200011],[35.927449992000106,32.69237253900013],[35.94036910000011,32.69250172900007],[35.94419315600004,32.69077056900011],[35.94574344900008,32.684104310000095],[35.944399862000125,32.67761891700013],[35.941195922000134,32.67353647900012],[35.93747521900013,32.67400156700006],[35.94657027200009,32.66444142700004],[35.955355265000094,32.657439271000044],[35.96579390500011,32.65436452300011],[35.98026330600004,32.65661244800012],[36.003621053000074,32.65508799200009],[36.00827193200007,32.64371917800011],[36.00527469900004,32.62669179300008],[36.00599816900012,32.60790741000008],[36.0154032800001,32.591164246000034],[36.060465128000146,32.533260803000104],[36.06604618300013,32.52160776800013],[36.06625288900011,32.51731862400007],[36.06987023900007,32.51659515400007],[36.081905549000055,32.5162647730001],[36.096225220000065,32.515871684000075],[36.13322554600012,32.52010915100004],[36.139530070000035,32.519540710000086],[36.149865356000134,32.51613006700006],[36.15585982200014,32.515199891000094],[36.16082076000009,32.517215271000055],[36.17218957500012,32.52592275000011],[36.17735721800011,32.52731801400009],[36.18820926900014,32.52227956100012],[36.22076542100007,32.4945809940001],[36.2852576090001,32.45693471300007],[36.373107544000156,32.38642222100012],[36.387887004000106,32.379316712000076],[36.40762740000008,32.37422658300008],[36.463954712000145,32.36939483700007],[36.480181111000086,32.36079071100005],[36.51668392700009,32.35701418200003],[36.65350386500006,32.34285898800007],[36.68957401500006,32.31965627100007],[36.706937296000085,32.32833791100012],[36.72864139800009,32.32779530900007],[36.79251346800004,32.31353261400011],[36.80656945800007,32.313041687000066],[36.819385213000146,32.316788229000075],[36.980098918000124,32.41003835100011],[37.133164510000086,32.49447764100006],[37.133164510000086,32.494529318000076],[37.13337121600006,32.494529318000076],[37.13337121600006,32.4945809940001],[37.244062134000046,32.55439646400006],[37.41521447800005,32.64712982200004],[37.494605674000184,32.690055623],[37.58667688000014,32.73983734200004],[37.75803592900007,32.83251902300012],[37.92939497900005,32.925329896000044],[38.056725708000045,32.99429209500008],[38.056725708000045,32.994343770000086],[38.23087528500014,33.086301982000066],[38.31574206300013,33.131180063000095],[38.52956506300012,33.24425099700007],[38.77451135200005,33.371685079000116],[38.821020142000116,33.22903228800004],[38.862567993000084,33.10071970600009],[38.89719120300009,32.994343770000086],[38.942769816000066,32.85233693400011],[38.99000207500012,32.70557586700002],[39.057181438000036,32.496596374000035],[38.97997684800009,32.476054993000076],[38.97863326000004,32.475693258000064],[38.978219849000084,32.47496978800007],[38.97863326000004,32.473729554000045],[38.97997684800009,32.47210174600008],[39.02875939900014,32.32833791100012],[39.03620080600007,32.31335174500006],[39.04632938700013,32.30849416100003]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Japan","sov_a3":"JPN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Japan","adm0_a3":"JPN","geou_dif":0,"geounit":"Japan","gu_a3":"JPN","su_dif":0,"subunit":"Japan","su_a3":"JPN","brk_diff":0,"name":"Japan","name_long":"Japan","brk_a3":"JPN","brk_name":"Japan","brk_group":null,"abbrev":"Japan","postal":"J","formal_en":"Japan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Japan","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":5,"mapcolor13":4,"pop_est":127078679,"gdp_md_est":4329000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"JA","iso_a2":"JP","iso_a3":"JPN","iso_n3":"392","un_a3":"392","wb_a2":"JP","wb_a3":"JPN","woe_id":23424856,"woe_id_eh":23424856,"woe_note":"Exact WOE match as country","adm0_a3_is":"JPN","adm0_a3_us":"JPN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"JPN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[141.46794681100005,24.21377187700001],[141.46314537900014,24.212103583],[141.4557397800002,24.215887762000094],[141.45297285200004,24.222398179000024],[141.46021569100006,24.227362372000144],[141.46998131600017,24.226263739],[141.47071373800011,24.219183661000145],[141.46794681100005,24.21377187700001]]],[[[153.98365319100006,24.28294505399999],[153.97828209700018,24.282416083000115],[153.97201582100004,24.284816799000154],[153.97299238399998,24.289699611000046],[153.9812117850001,24.295355536000116],[153.98560631600017,24.291083075000117],[153.98365319100006,24.28294505399999]]],[[[153.96623782600008,24.30866120000003],[153.95346113400004,24.29250722900018],[153.94068444100017,24.311468817],[153.95370527400004,24.315822658000073],[153.96623782600008,24.30866120000003]]],[[[123.79127037900015,24.409613348000065],[123.81470787900004,24.391750393],[123.83472741,24.395493882000054],[123.87208092500016,24.390122789000188],[123.91049238400008,24.379543361000128],[123.93441816500014,24.367499091000028],[123.93604576900016,24.341457424000154],[123.91553795700011,24.306830145000063],[123.87305748800021,24.258246161],[123.8512475920002,24.256984768],[123.74577884200018,24.281236070000162],[123.68344160200004,24.28530508000013],[123.66822350400004,24.29661692900011],[123.68376712300001,24.323472398000106],[123.68767337300002,24.32050202],[123.6909285820001,24.31883372599999],[123.69800866000006,24.315985419000143],[123.70704186300017,24.328680731000087],[123.71753991000006,24.32367584800006],[123.72925866000001,24.31574127800009],[123.74236087300021,24.319728908000073],[123.74805748800004,24.329575914000102],[123.75318444100017,24.36444733300011],[123.76531009200008,24.401109117000047],[123.766856316,24.409409898000106],[123.76986738400004,24.418361721000153],[123.7768660820001,24.419745184000035],[123.78492272200006,24.416083075000174],[123.79127037900015,24.409613348000065]]],[[[123.00261478000019,24.474310614],[123.01636803500011,24.469794012000065],[123.01823978000009,24.45929596600008],[123.01107832100004,24.44769928600006],[122.99838300900015,24.439520575000145],[122.9878035820001,24.443304755000085],[122.94752037900005,24.439520575000145],[122.93864993600017,24.44424062700007],[122.93816165500019,24.45482005400011],[122.944590691,24.466253973000065],[122.95557701900017,24.47313060099999],[122.96794681100017,24.471177476000136],[123.00261478000019,24.474310614]]],[[[124.26050866000016,24.445257880000113],[124.25391686300011,24.401800848000093],[124.24187259200018,24.363714911],[124.21192467500012,24.337103583000058],[124.17701256600012,24.33299388200011],[124.14031009200018,24.341986395000117],[124.12224368600008,24.360581773000103],[124.14307701900024,24.3849144550001],[124.13257897200018,24.391994533000158],[124.12875410200016,24.40355052299999],[124.12273196700006,24.41429271],[124.1057235040001,24.41909414300009],[124.08863366000006,24.42194245000003],[124.07789147200006,24.428452867000104],[124.07837975400004,24.435492255],[124.09522545700023,24.439520575000145],[124.10173587300021,24.446600653000118],[124.11231530000018,24.463364976000136],[124.11622155000016,24.467474677],[124.12916100400017,24.469387111000128],[124.13298587300018,24.46401601800009],[124.13445071700008,24.456773179000052],[124.13990319100017,24.453192450000085],[124.14795983200024,24.446356512000147],[124.15650475400005,24.441636460000055],[124.16781660200004,24.439520575000145],[124.19125410199999,24.440008856000034],[124.20215905000006,24.44220612200003],[124.21192467500012,24.446966864000117],[124.22242272200018,24.46100495000009],[124.23031660200016,24.479152736000074],[124.24024498800017,24.494859117000047],[124.25660241000017,24.501613674000097],[124.26840254000014,24.510443427000137],[124.30062910199997,24.569891669000086],[124.31446373800011,24.587307033000158],[124.3212996750001,24.59027741100006],[124.32911217500012,24.583563544000025],[124.33228600400017,24.571030992000104],[124.32691490999999,24.5611839860001],[124.31902103,24.55304596600008],[124.30909264400023,24.534857489],[124.27393639400016,24.487941799000154],[124.26050866000016,24.445257880000113]]],[[[141.30258222700004,24.734361070000105],[141.28956139400023,24.726955471000124],[141.28980553500017,24.760239976000136],[141.29265384200002,24.773871161000088],[141.29948978000007,24.785874742000104],[141.31169681100002,24.79181549700003],[141.330251498,24.794094143],[141.347992384,24.793117580000043],[141.35775800900015,24.789618231000034],[141.36548912900017,24.777736721000096],[141.35726972700016,24.773423570000162],[141.34262129000012,24.772121486000074],[141.33057701900023,24.769110419000086],[141.32032311300023,24.758612372000115],[141.30258222700004,24.734361070000105]]],[[[125.20525149800002,24.80499909100017],[125.16814212300014,24.80097077],[125.15064537900017,24.804348049000126],[125.14014733200011,24.81639232000005],[125.14112389400006,24.828599351000108],[125.14966881600012,24.831935940000122],[125.15756269600014,24.833807684000092],[125.1596785820001,24.844427802000055],[125.16358483200004,24.854641018000095],[125.17701256600017,24.856390692000087],[125.19450931100002,24.850287177],[125.20289147200016,24.846258856000034],[125.21078535200014,24.83698151200015],[125.21705162899998,24.81659577],[125.20525149800002,24.80499909100017]]],[[[125.35824629000004,24.782619533000158],[125.36557050900014,24.779933986000074],[125.38721764400023,24.782171942000062],[125.40463300899998,24.778387762000037],[125.42628014400005,24.768866278000033],[125.44483483200011,24.756740627000127],[125.4526473320001,24.744940497000172],[125.44402103000019,24.73720937700007],[125.423513217,24.73224518400012],[125.3837996750001,24.726955471000124],[125.29965253999998,24.725653387000033],[125.25879967500023,24.733384507000054],[125.25684655000012,24.751695054000106],[125.261485222,24.763861395],[125.27393639400022,24.820013739],[125.27475019600014,24.856431382000082],[125.27100670700023,24.86782461100013],[125.2602645190001,24.885199286000116],[125.2624617850001,24.884344794000114],[125.27442467500025,24.882228908000016],[125.28516686300021,24.877346096000124],[125.29021243600006,24.873928127000042],[125.29444420700011,24.869574286000116],[125.30225670700011,24.857570705000015],[125.31421959700002,24.82990143400012],[125.32162519600003,24.816880601000108],[125.32667076900023,24.810736395000145],[125.35824629000004,24.782619533000158]]],[[[141.29566491000006,25.424505927000027],[141.287445509,25.417710679],[141.27466881600017,25.427069403000115],[141.27051842500023,25.440375067000115],[141.27475019600013,25.451117255000057],[141.28825931100008,25.452541408000016],[141.2975366550002,25.44529857000019],[141.29948978000007,25.434800523000106],[141.29566491000006,25.424505927000027]]],[[[123.60629316500027,25.738999742000132],[123.60466556100012,25.738755601000165],[123.60043379000004,25.73936595300013],[123.60279381600017,25.745469468000024],[123.60629316500027,25.738999742000132]]],[[[123.5289005870001,25.761786200000145],[123.51148522200029,25.758083401000093],[123.51392662900015,25.76911041900014],[123.53142337300018,25.773342190000065],[123.5374455090001,25.77326080900009],[123.54533938900035,25.761786200000145],[123.5289005870001,25.761786200000145]]],[[[131.25245201900006,25.819037177],[131.241465691,25.818752346000068],[131.230723504,25.8216820330001],[131.2120874360002,25.82904694200009],[131.21273847700016,25.841457424000012],[131.22120201900012,25.85569896000011],[131.23609459700006,25.87205638200014],[131.24105879000004,25.875677802],[131.24708092500012,25.87685781500012],[131.25513756600006,25.87498607000005],[131.27711022200018,25.858384507],[131.27051842500006,25.8536644550001],[131.26417076900023,25.84634023600007],[131.2592879570001,25.83722565300009],[131.25733483200023,25.82709381700012],[131.25245201900006,25.819037177]]],[[[123.6730249360003,25.92869700699994],[123.67204837300012,25.92747630400011],[123.67172285200009,25.92975495],[123.6730249360003,25.92869700699994]]],[[[131.31657962300002,25.923081773000106],[131.30958092500023,25.922756252000013],[131.301524285,25.926743882000082],[131.2908634770001,25.938666083000115],[131.28972415500007,25.95136139500009],[131.3020939460001,25.953192450000145],[131.32129967500023,25.947699286000113],[131.327891472,25.937079169000086],[131.32227623800011,25.92706940300009],[131.31657962300002,25.923081773000106]]],[[[127.36109459699999,26.164007880000057],[127.35352623800006,26.15399811400009],[127.34538821700008,26.15827057500009],[127.34278405000023,26.170233466000028],[127.34229576900006,26.17999909100017],[127.34262128999997,26.18573639500012],[127.34620201900006,26.206366278000147],[127.35417728000002,26.218939520000063],[127.36410566500003,26.221340236000103],[127.36963951900022,26.214585679000052],[127.37077884200018,26.210028387000122],[127.37086022200018,26.20319245000009],[127.36793053500006,26.19061920800003],[127.36361738400014,26.177557684000035],[127.36109459699999,26.164007880000057]]],[[[126.79517662900011,26.305609442],[126.78891035200004,26.303452867000185],[126.78239993600006,26.30451080900015],[126.77540123800004,26.308539130000113],[126.77003014400012,26.31419505400011],[126.76783287900005,26.32054271000014],[126.75993899800002,26.334418036000116],[126.741465691,26.34170156500015],[126.71998131600017,26.346991278000033],[126.70362389400006,26.355292059000092],[126.69776451900023,26.369045315000037],[126.70679772200006,26.37913646],[126.72364342500022,26.38597239800002],[126.74170983200004,26.389715887000033],[126.7521264980001,26.390692450000113],[126.76986738400015,26.388006903000033],[126.78711998800023,26.380072333000058],[126.80144290500006,26.367661851000133],[126.81006920700023,26.351874091000084],[126.81031334700018,26.342515367000047],[126.80738366000016,26.332586981000144],[126.80209394599999,26.32355377800006],[126.79574629000014,26.317124742000132],[126.79371178500004,26.31289297100001],[126.79509524800018,26.308905341000028],[126.79517662900011,26.305609442]]],[[[127.24415123800011,26.586411851000108],[127.23682701900006,26.579169012000094],[127.22706139400022,26.579535223],[127.21485436300004,26.577460028000086],[127.20883222700016,26.581976630000142],[127.21485436300004,26.592922268],[127.22217858200007,26.598944403000115],[127.23275800900004,26.600775458],[127.24236087300018,26.596747137000122],[127.24415123800011,26.586411851000108]]],[[[142.1432397800002,26.70221588700012],[142.15349368600016,26.70066966400016],[142.16586347700016,26.701320705000015],[142.16586347700016,26.694525458],[142.1543074880001,26.686468817000062],[142.15560957100004,26.67914459800015],[142.16578209700018,26.674383856000148],[142.18018639400023,26.67401764500012],[142.18018639400023,26.666571356000148],[142.175547722,26.663234768000123],[142.17481530000006,26.66152578300013],[142.175059441,26.6590843770001],[142.17269941500015,26.653509833],[142.18181399800005,26.657171942000115],[142.18620853000002,26.65790436400006],[142.18913821700005,26.654527085000055],[142.19320722700004,26.646063544000114],[142.18140709700006,26.644232489000117],[142.175547722,26.638657945000105],[142.175059441,26.63007233300003],[142.18018639400023,26.618801174],[142.159922722,26.632025458000058],[142.13900800900015,26.66250234600001],[142.11133873800006,26.721177476000108],[142.11768639400012,26.721747137000094],[142.12240644599999,26.72044505399999],[142.13184655000012,26.714992580000157],[142.13575280000012,26.706691799000065],[142.1432397800002,26.70221588700012]]],[[[127.80982506600017,26.735419012000037],[127.81120853000007,26.706976630000113],[127.78565514400005,26.70258209800012],[127.75855553500006,26.71287669500005],[127.75464928500006,26.728583075000113],[127.76880944100017,26.734035549000154],[127.79574629000003,26.731512762000033],[127.80982506600017,26.735419012000037]]],[[[128.3097436860002,26.704738674000122],[128.30811608200014,26.700873114000117],[128.30420983200005,26.701320705000015],[128.29997806100008,26.70258209800012],[128.296641472,26.701320705000015],[128.26441491000017,26.65241120000003],[128.24333743600008,26.63328685100008],[128.21713300900004,26.62563711100013],[128.17221113400004,26.623480536000113],[128.1588647800002,26.618801174],[128.15162194100017,26.612453518000095],[128.142832879,26.601752020000063],[128.13526451900017,26.59007396000005],[128.13209069100012,26.58124420800003],[128.13502037900005,26.57794830900015],[128.14087975400017,26.576727606000144],[128.14576256600006,26.57343170800011],[128.14519290500007,26.56411367400007],[128.14177493600008,26.556586005000113],[128.13835696700008,26.554022528000115],[128.13306725400017,26.55320872599999],[128.10873457099999,26.54515208500005],[128.09034264400023,26.542669989000117],[128.07162519599999,26.544012762000037],[128.05591881600006,26.550482489000117],[128.03638756600003,26.527329820000162],[127.98414147200005,26.478461005],[127.97201582100014,26.471869208000115],[127.95997155000023,26.470851955000157],[127.950938347,26.466701565000033],[127.94727623800006,26.4511579450001],[127.94027753999997,26.447739976000108],[127.87061608200011,26.447414455000068],[127.85987389400012,26.44562409100008],[127.85173587300007,26.44122955900012],[127.83887780000023,26.425238348],[127.84302819100016,26.4174665390001],[127.85474694100017,26.412990627000127],[127.86475670700005,26.406480210000055],[127.86980228000019,26.39345937700007],[127.87338300900015,26.364813544000086],[127.87826582100003,26.351874091000084],[127.88884524800018,26.33909739800005],[127.91016686300023,26.323065497000144],[127.9199324880001,26.30963776200015],[127.90186608200004,26.304999091000056],[127.88209069100006,26.310736395],[127.8615014980002,26.31940338700009],[127.84083092500012,26.32391998900006],[127.82829837300018,26.316229559000035],[127.77751712300008,26.23334381700012],[127.77100670700017,26.216498114000117],[127.76840254000015,26.197658596000068],[127.77540123800021,26.185126044000086],[127.7915145190001,26.185492255],[127.80990644600014,26.189195054000137],[127.82357832099999,26.186753648000103],[127.81421959700006,26.165920315000122],[127.79688561300007,26.13971588700009],[127.77572675900015,26.12177155200014],[127.75489342500006,26.125311591000028],[127.74170983200023,26.115627346000064],[127.72535241000004,26.08958567899999],[127.71013431100006,26.08437734600001],[127.65170332100016,26.08437734600001],[127.65707441500005,26.12177155200014],[127.63591556100002,26.191351630000142],[127.63819420700011,26.21474844000012],[127.658457879,26.212347723000093],[127.67774498800023,26.230617580000157],[127.69263756600012,26.25625234600004],[127.70020592500022,26.276109117000132],[127.71827233200007,26.2740746110001],[127.73129316500014,26.28937409100014],[127.73910566500015,26.30923086100016],[127.74187259200019,26.32054271000014],[127.73861738400014,26.341457424000012],[127.72437584700006,26.38544342700011],[127.72071373800011,26.406480210000055],[127.7225041020001,26.429917710000108],[127.73129316500014,26.439886786000116],[127.74773196700006,26.44183991100006],[127.78109785200004,26.44122955900012],[127.793711785,26.442694403000175],[127.80518639400023,26.44757721600014],[127.81006920700023,26.45799388200014],[127.81373131600017,26.45799388200014],[127.82878665500019,26.48305898600013],[127.83057701900005,26.488430080000096],[127.86426842500005,26.505682684000092],[127.90267988399997,26.516424872000115],[127.93751061300021,26.532131252000067],[127.96021569100017,26.56411367400007],[127.96241295700004,26.581976630000142],[127.95590254000015,26.59479401200015],[127.94060306100017,26.602484442],[127.89429772200006,26.609279690000122],[127.88559004000015,26.620184637000094],[127.88477623800023,26.635687567],[127.8857528000001,26.653509833],[127.87794030000012,26.686590887000033],[127.87826582100003,26.694525458],[127.8854272800002,26.69611237200003],[127.9199324880001,26.694525458],[127.96461022200005,26.697170315000093],[127.9873153000001,26.69293854400014],[128.00123131600017,26.68024323100009],[127.99952233200005,26.671820380000057],[127.992523634,26.66327545800011],[127.98853600400005,26.652980861000017],[127.99561608200005,26.63922760600009],[128.00440514400023,26.634751695000134],[128.01490319099997,26.634833075000117],[128.05738366000017,26.64476146000011],[128.11109459700006,26.67401764500012],[128.10328209700018,26.69122955900015],[128.11133873800011,26.703436591000028],[128.15235436300011,26.731512762000033],[128.15699303500006,26.73712799700003],[128.1619572270001,26.757147528000086],[128.169200066,26.76117584800006],[128.176117384,26.762518622000144],[128.17945397200006,26.76585521],[128.1879988940002,26.78050364799999],[128.2259220710001,26.80097077000006],[128.23462975400017,26.813950914000046],[128.23853600400017,26.832424221000068],[128.25440514400012,26.864406643000066],[128.25505618600002,26.886297919000114],[128.33139082100016,26.81342194200009],[128.337657097,26.796942450000085],[128.333343946,26.79303620000009],[128.33025149800002,26.78725820500013],[128.32984459700006,26.780340887000037],[128.334239129,26.77301666900003],[128.337657097,26.76430898600013],[128.333343946,26.756659247000115],[128.32683353000002,26.75047435100005],[128.32341556100013,26.746039130000085],[128.3097436860002,26.721177476000108],[128.3088485040001,26.717759507000107],[128.3097436860002,26.704738674000122]]],[[[128.45484459700012,27.02875397300015],[128.44857832100016,27.02069733300003],[128.43140709700006,27.021673895000088],[128.41089928500014,27.03058502800003],[128.4060978520001,27.035101630000085],[128.40154056100002,27.036932684000146],[128.39625084700018,27.04075755400008],[128.39625084700018,27.04901764500006],[128.401621941,27.050726630000057],[128.40870201900006,27.05084870000003],[128.41570071700008,27.059759833000058],[128.42896569100017,27.066473700000113],[128.44434655000023,27.06256745000003],[128.45167076900023,27.05414459800006],[128.454356316,27.047512111000017],[128.45484459700012,27.02875397300015]]],[[[127.95215905000023,27.01829661700016],[127.92579186300023,27.00975169500005],[127.93572024800001,27.025091864],[127.98707116000016,27.078599351000108],[127.99537194100007,27.091742255000085],[128.00098717500023,27.091742255000085],[127.99317467500022,27.06671784100014],[127.97575931100008,27.039740302],[127.95215905000023,27.01829661700016]]],[[[142.24105879000015,27.084295966000084],[142.23462975400005,27.050034898000106],[142.21851647200006,27.040350653000147],[142.1985783210001,27.05109284100017],[142.18018639400023,27.078070380000142],[142.21436608200023,27.063788153000033],[142.21070397200018,27.072821356000144],[142.20557701900023,27.08095937700007],[142.19955488400015,27.087469794000143],[142.19320722700004,27.091742255000085],[142.20655358200023,27.097113348000118],[142.2208764980002,27.09833405200014],[142.23324629000015,27.094305731000173],[142.24105879000015,27.084295966000084]]],[[[142.1959741550002,27.15241120000003],[142.18921959700006,27.145493882000135],[142.1842554050002,27.158351955000157],[142.18531334700006,27.174139716000113],[142.19092858200023,27.185207424000126],[142.20045006600003,27.18329498900009],[142.20411217500012,27.173895575000145],[142.20183353000002,27.16274648600013],[142.1959741550002,27.15241120000003]]],[[[140.87818444100006,27.232611395000063],[140.86996504000015,27.218247789000188],[140.867930535,27.23395416900014],[140.87419681100008,27.238226630000085],[140.87818444100006,27.232611395000063]]],[[[128.66976972700016,27.421087958000058],[128.6557723320001,27.410142320000162],[128.64047285200016,27.384670315000093],[128.630707227,27.375677802000055],[128.61817467500012,27.379706122000027],[128.61312910200016,27.36432526200018],[128.604746941,27.361802476000076],[128.59546959700006,27.363918361000074],[128.58741295700023,27.362046617000104],[128.57447350400005,27.353338934000035],[128.55990644599996,27.350734768000123],[128.54542076900023,27.353745835000137],[128.53248131600003,27.362046617000104],[128.5268660820002,27.37189362200003],[128.52515709700003,27.384670315000093],[128.52613366,27.397162177],[128.5288192070001,27.40643952000015],[128.53386478000013,27.41526927300002],[128.53842207100013,27.417629299000154],[128.54656009200008,27.41787344],[128.56153405000012,27.420396226000108],[128.60027103000007,27.415350653000175],[128.61882571700008,27.41559479400003],[128.63526451900023,27.42377350500011],[128.65040123800023,27.434719143],[128.7006942070001,27.454820054000052],[128.70248457099999,27.451605536],[128.70281009200014,27.450751044000086],[128.70346113400015,27.450425523000074],[128.70687910200016,27.448635158000073],[128.697601759,27.435736395000063],[128.66976972700016,27.421087958000058]]],[[[142.1928817070001,27.616197007],[142.19532311300023,27.599107164000046],[142.17945397200012,27.612494208000054],[142.18311608200014,27.61945221600014],[142.1928817070001,27.616197007]]],[[[142.11166425899998,27.725856838000126],[142.107188347,27.71674225500011],[142.1051538420002,27.727036851000047],[142.10881595100014,27.729681708000143],[142.11166425899998,27.725856838000126]]],[[[142.08513431100002,27.72606028900016],[142.08057701900006,27.71694570500007],[142.0786238940002,27.727240302],[142.0822860040001,27.7298851580001],[142.08513431100002,27.72606028900016]]],[[[128.24341881600006,27.85724518400012],[128.24154707100016,27.84536367400007],[128.23226972700004,27.852850653000033],[128.2298283210001,27.868963934000092],[128.236582879,27.866522528000147],[128.23853600400017,27.86090729400017],[128.24341881600006,27.85724518400012]]],[[[128.96070397200006,27.685777085],[128.94703209700012,27.681382554000106],[128.92945397200018,27.686712958000086],[128.92188561300011,27.700913804],[128.91928144600004,27.715562242000104],[128.91635175900004,27.722357489000117],[128.89454186300023,27.72821686400009],[128.8908797540001,27.741888739000032],[128.89926191500015,27.769517320000105],[128.87891686300017,27.82477448100003],[128.88428795700023,27.83685944200012],[128.88851972700004,27.85317617400015],[128.89454186300023,27.891302802000137],[128.8999129570001,27.895900783000073],[128.91521243600008,27.900336005000142],[128.94703209700012,27.914129950000145],[128.965505405,27.894354559000035],[128.9773055350001,27.836615302],[128.98878014400023,27.81110260600009],[128.99952233200023,27.802801825000117],[129.0131942070001,27.79523346600017],[129.02466881600006,27.786078192000087],[129.02963300899998,27.77326080900015],[129.024261915,27.756577867000104],[129.00025475400014,27.727728583],[128.98951256600017,27.707464911000084],[128.976328972,27.695502020000145],[128.96070397200006,27.685777085]]],[[[129.2215275400001,28.17601146000014],[129.2325952480002,28.170721747000172],[129.269297722,28.174872137000094],[129.26392662900017,28.16738515800013],[129.2560327480002,28.159165757000135],[129.25049889400006,28.151027736000046],[129.25180097700016,28.143784898000103],[129.2641707690001,28.134711005],[129.28777103000007,28.12518952],[129.29664147200015,28.119574286],[129.325531446,28.123480536],[129.34734134200008,28.106919664000127],[129.35043379000015,28.086493231000144],[129.32398522200018,28.07859935099999],[129.30640709700006,28.094142971000096],[129.30347741,28.09601471600014],[129.30079186300023,28.100531317000033],[129.29517662900005,28.09906647300015],[129.2905379570001,28.09516022300015],[129.29037519600016,28.092922268000063],[129.29070071700008,28.08881256700012],[129.2854110040001,28.08148834800012],[129.27914472700004,28.077093817000115],[129.27613366000006,28.08201732000019],[129.27361087300014,28.08331940300009],[129.26392662900017,28.096340236000074],[129.26303144600016,28.099107164000046],[129.25180097700016,28.100002346000124],[129.23064212300008,28.09666575700011],[129.2214461600001,28.099107164000046],[129.21810957100016,28.106105861000014],[129.21599368600008,28.13084544500019],[129.21412194100017,28.140082098000065],[129.18702233200017,28.174994208000083],[129.1808374360002,28.190252997000144],[129.19581139400023,28.19546133000013],[129.22771243600005,28.19525788],[129.2215275400001,28.17601146000014]]],[[[129.99545332100016,28.29092031500015],[129.97820071700008,28.28375885600012],[129.95655358200005,28.284816799000065],[129.9135848320001,28.29710521000011],[129.97559655000018,28.343247789000046],[130.01832116000017,28.364650783000098],[130.03028405000012,28.373480536000145],[130.03101647200006,28.35651276200015],[130.02149498800023,28.331284898000106],[130.00766035200016,28.306545315000122],[129.99545332100016,28.29092031500015]]],[[[129.7210392590001,28.434881903000033],[129.71599368600008,28.42914459800006],[129.70850670700005,28.428778387000065],[129.700531446,28.42999909100017],[129.69385826900017,28.428697007000082],[129.6816512380001,28.42108795800011],[129.63941491000017,28.40534088700015],[129.62525475400005,28.402736721000068],[129.6193139980002,28.400783596000124],[129.6168725920002,28.396470445000134],[129.61524498800017,28.38959381700012],[129.611175977,28.38312409100011],[129.60189863400015,28.38031647300006],[129.58155358200017,28.370672919000086],[129.55396569100006,28.32843659100017],[129.53345787900017,28.31883372599999],[129.53003991000017,28.314764716000028],[129.49887128999995,28.287502346000124],[129.48731530000018,28.28253815300009],[129.461192254,28.291693427000084],[129.4474389980002,28.29092031500015],[129.45484459700018,28.277248440000037],[129.44776451900012,28.266302802000055],[129.4396264980002,28.25901927300013],[129.43043053500006,28.254095770000063],[129.420176629,28.249945380000142],[129.43165123800023,28.241034247000087],[129.45687910200004,28.22573476800012],[129.46794681100008,28.215765692000147],[129.41521243600008,28.185736395],[129.40650475400017,28.1844750020001],[129.40154056100013,28.16331614799999],[129.38868248800011,28.16282786700019],[129.37110436300017,28.16722239799999],[129.35181725400005,28.160549221000124],[129.3644311860002,28.154038804000134],[129.37452233200005,28.14004140800007],[129.37940514400023,28.12596263200011],[129.37598717500023,28.119574286],[129.36573326900012,28.12319570500007],[129.3375757170001,28.147528387000033],[129.2866317070001,28.177923895],[129.28028405000006,28.19049713700009],[129.2814233730002,28.20482005400008],[129.28077233200005,28.218573309000092],[129.269297722,28.22943756700009],[129.25635826900012,28.214667059000092],[129.24244225400005,28.214300848000093],[129.20785566500015,28.22943756700009],[129.17359459700018,28.236070054000052],[129.15894616000017,28.240627346000096],[129.145762566,28.249945380000142],[129.145762566,28.256170966000084],[129.15447024800017,28.260321356000034],[129.16285241000003,28.262640692],[129.17139733200003,28.26166413000011],[129.18051191500015,28.256170966000084],[129.20883222700004,28.264227606000034],[129.2413843110002,28.25633372600005],[129.27084394600016,28.25535716400016],[129.29037519600016,28.284084377000124],[129.25367272200006,28.284572658000016],[129.239512566,28.290350653000175],[129.22771243600005,28.304592190000093],[129.24146569100017,28.31256745000006],[129.25245201900012,28.321519273000078],[129.26392662900017,28.32884349200016],[129.28825931100002,28.333075262000094],[129.29566491,28.336371161000113],[129.31625410200016,28.350165106000034],[129.33057701900023,28.363714911],[129.33130944100017,28.36603424700017],[129.35726972700016,28.368353583000115],[129.38062584700003,28.366766669000082],[129.39958743600005,28.37173086100013],[129.41334069100017,28.393296617000075],[129.4323022800002,28.38690827000012],[129.45093834700018,28.39203522300015],[129.46615644600016,28.404852606000173],[129.47535241000006,28.421291408000073],[129.48243248800011,28.411037502000156],[129.49268639400012,28.404852606000173],[129.50440514400012,28.399888414000127],[129.51636803500006,28.393296617000075],[129.53345787900017,28.430487372000144],[129.56080162900017,28.451117255000085],[129.626231316,28.48273346600014],[129.61394290500007,28.447984117000104],[129.61646569100017,28.43854401200018],[129.63249759200008,28.434881903000033],[129.6440535820001,28.439764716000113],[129.65430748800011,28.452134507000135],[129.6733504570001,28.48273346600014],[129.67253665500016,28.487616278000033],[129.66879316500015,28.495062567],[129.66724694100006,28.502997137000147],[129.67310631600017,28.509833075000085],[129.68775475400017,28.508978583],[129.69800865999997,28.494859117000047],[129.70753014400012,28.462144273000135],[129.71143639400012,28.45563385600003],[129.71729576900023,28.45026276200018],[129.72169030000012,28.444037177000112],[129.7210392590001,28.434881903000033]]],[[[129.61231530000023,29.443345445000045],[129.59961998800006,29.443345445000045],[129.59156334700006,29.4501000020001],[129.5874129570001,29.45823802300011],[129.5913192070001,29.46796295800006],[129.5981551440001,29.472357489000146],[129.60108483200023,29.471340236000074],[129.60352623800006,29.469549872000083],[129.60808353000013,29.469224351000076],[129.61068769600004,29.465562242000104],[129.61540774800014,29.45522695500001],[129.61231530000023,29.443345445000045]]],[[[129.74382571700016,29.62230052300013],[129.7210392590001,29.606146552000084],[129.71290123800014,29.629299221000036],[129.71143639400012,29.642523505000057],[129.71485436300011,29.65452708500008],[129.74594160200004,29.66103750200007],[129.753754102,29.645412502000102],[129.74382571700016,29.62230052300013]]],[[[129.85098067800018,29.886729695000053],[129.87533613400015,29.8783226580001],[129.8795679050002,29.87913646],[129.88404381600003,29.878892320000045],[129.88868248800006,29.877508856000173],[129.89356530000023,29.874741929000113],[129.8974185120002,29.84691549500017],[129.92725670700023,29.825873114000117],[129.92212975400005,29.823146877000156],[129.92042076900023,29.819647528000147],[129.8634018920002,29.82460653000014],[129.85234765200013,29.83923431800012],[129.84018475400015,29.849729430000124],[129.83277226500005,29.87307765100017],[129.85098067800018,29.886729695000053]]],[[[129.551524285,29.893622137000065],[129.53988691499998,29.889878648000103],[129.5330509770001,29.89350006700009],[129.52767988400004,29.902329820000134],[129.52857506599997,29.9089216170001],[129.53541100400005,29.909857489],[129.543304884,29.908148505],[129.55014082100004,29.903876044000167],[129.55445397200006,29.897528387000033],[129.551524285,29.893622137000065]]],[[[129.94800866000006,29.95856354400003],[129.9409285820001,29.953192450000145],[129.9238117330001,29.95792003400008],[129.91333333100008,29.960901639000113],[129.90308678500006,29.97085195500007],[129.900645379,29.972560940000093],[129.89975019600004,29.975653387000154],[129.9011336600001,29.98069896],[129.90357506600006,29.98436107000005],[129.912364129,29.991888739],[129.90902754000015,29.99933502800017],[129.91342207100016,30.00031159100014],[129.92198954500006,30.004729881000163],[129.92713547100007,29.993404422000093],[129.93415344000002,29.982101624000062],[129.94369550900015,29.96527741100006],[129.94532311300006,29.96161530200011],[129.94800866000006,29.95945872600011],[129.94800866000006,29.95856354400003]]],[[[130.49895073600024,30.467962261000153],[130.52369225400005,30.44965241100006],[130.56782501700005,30.435941711],[130.59958849400013,30.412458198000152],[130.63867817600013,30.402660769000146],[130.67457116,30.374579169000143],[130.6694442070001,30.339667059000117],[130.64714603000004,30.290513414000184],[130.60375105099996,30.25246851800013],[130.57727971400016,30.23590585900011],[130.54682984500008,30.231416228000157],[130.517719671,30.227492394000127],[130.485977453,30.22577701000004],[130.43771320800013,30.23897015300015],[130.42713993800024,30.25553593700009],[130.4106338930002,30.29155631900015],[130.38626403800018,30.339605661000103],[130.37901254000022,30.365875685000145],[130.37624650800015,30.394435997000144],[130.38648522200018,30.398138739],[130.42336102800002,30.398968251000056],[130.441172722,30.422308661],[130.46118241000025,30.441141568000106],[130.46711892599998,30.45722526700005],[130.48834512500017,30.457026279],[130.49895073600024,30.467962261000153]]],[[[130.1650506890002,30.4898900780001],[130.19101626800003,30.476172261999988],[130.20230578800007,30.481901060000084],[130.22006269599999,30.4715843770001],[130.2428670000002,30.46361180399999],[130.26214412700006,30.447032385000096],[130.2621568440001,30.435023779000108],[130.24063399200017,30.434935680000095],[130.23184544100005,30.42354163300014],[130.21246764200023,30.420690741000083],[130.1930820990002,30.43956333699999],[130.19438650700025,30.452148094000066],[130.1903808230002,30.461299148000066],[130.17311500100007,30.454421868000065],[130.16310837600005,30.468716573000123],[130.15177683600004,30.477863163],[130.14176604600019,30.489301081000136],[130.1650506890002,30.4898900780001]]],[[[140.31861412900005,30.47553131700009],[140.30648847700016,30.473618882000107],[140.30160566499995,30.48069896],[140.30144290500002,30.486273505],[140.30762780000006,30.49115631700006],[140.31714928500017,30.49115631700006],[140.32593834700006,30.485174872000144],[140.31861412900005,30.47553131700009]]],[[[131.03556375600013,30.557209431],[131.01791169000003,30.551088098000047],[131.00340350800016,30.55116662200008],[130.9940341170002,30.53257178200012],[130.9826388590001,30.519305321000143],[130.98047401100018,30.497095505000132],[130.96696052800021,30.479399958000087],[130.96789930600016,30.464294822000014],[130.96475337600012,30.4563191050001],[130.97295382600024,30.449170034000034],[130.97803086800005,30.437596801],[130.97176863900003,30.42608701200008],[130.9696385780002,30.415438636000104],[130.9777970910002,30.40028023399999],[130.9632821280001,30.386143668000056],[130.96217717500022,30.372808183000142],[130.9436506090002,30.374681186000043],[130.92408287900014,30.36953359600001],[130.90651933000018,30.366014516000075],[130.8910196090001,30.355421322000055],[130.88581760500008,30.34385066400016],[130.87038107900005,30.34390429500014],[130.8673456280001,30.353699646000067],[130.85711789299998,30.366191546000078],[130.86027567600016,30.379525073000185],[130.86551539500024,30.397292703000076],[130.8625715100002,30.42394700300012],[130.85339754700013,30.440830762000147],[130.84938214600007,30.46126404200008],[130.85149508200018,30.47014374000018],[130.8617714440002,30.465662831000074],[130.87000225800014,30.463860979000103],[130.87627834200012,30.480704794000033],[130.90113980700008,30.50369197800013],[130.930221199,30.540859645000086],[130.94214928500017,30.56981028900016],[130.95093834700006,30.595038153000033],[130.95127378600003,30.61001820100004],[130.94837684900014,30.64110939300009],[130.9433085870002,30.6544601500001],[130.94543043900015,30.664215375000182],[130.93929969700005,30.672251498000108],[130.9527968900001,30.685495816000028],[130.96634534600005,30.70144146200009],[130.98513182699998,30.729775881000037],[130.98523937100006,30.741352311000167],[130.99970311700022,30.745686335000112],[131.00813866600015,30.767864858],[131.006257128,30.7892467570001],[131.02717589000022,30.81937162100006],[131.0392358730002,30.831447658000016],[131.04525800900004,30.836859442000062],[131.05201256600006,30.840236721000068],[131.06153821600006,30.840587948000106],[131.0624069840001,30.82452899499999],[131.07359469399998,30.799581581000055],[131.08793357200008,30.782606299000076],[131.07120798000008,30.76930179900016],[131.07096896599998,30.73732987800004],[131.078937331,30.699084278],[131.0537605950001,30.661867794],[131.05780289700022,30.642337950000137],[131.05761514300013,30.611269028000052],[131.05131930700006,30.597092024000162],[131.03784798300003,30.58917133600009],[131.03769896100002,30.57229418700014],[131.03556375600013,30.557209431]]],[[[129.43384850400005,30.84454987200017],[129.42945397200006,30.840887762000037],[129.4282332690002,30.846421617000047],[129.430918816,30.848211981000034],[129.43384850400005,30.84454987200017]]],[[[129.93946373800023,30.81342194200009],[129.92774498800023,30.81342194200009],[129.911957227,30.819769598000033],[129.91041100400005,30.821966864],[129.9098413420002,30.825873114],[129.90398196700002,30.834418036000116],[129.90821373800017,30.83844635600009],[129.915863477,30.84194570500007],[129.92554772200006,30.849595445000105],[129.9321395190001,30.851752020000035],[129.93995201900012,30.848944403000143],[129.94629967500023,30.84471263200014],[129.95826256600017,30.836981512000037],[129.95980879000004,30.828680731000144],[129.9503686860002,30.819322007000107],[129.93946373800023,30.81342194200009]]],[[[140.04566491,31.443304755000117],[140.04346764400012,31.44310130400005],[140.0444442070001,31.44505442900011],[140.04566491,31.443304755000117]]],[[[140.0431421230002,31.444566148000106],[140.04151451900006,31.44310130400005],[140.04127037900005,31.444159247000112],[140.04135175900004,31.446478583000086],[140.0431421230002,31.444566148000106]]],[[[129.71924889400012,31.637355861000014],[129.69597740599997,31.621447336000113],[129.67769407500023,31.629699673000076],[129.65937367500018,31.641934705000054],[129.6553814330001,31.659784838000046],[129.67629765500024,31.666966426000144],[129.69060286800018,31.7001980560001],[129.716644727,31.730373440000093],[129.731700066,31.737616278000086],[129.75359134200002,31.74380117400007],[129.76775149800008,31.759344794000167],[129.77670332099999,31.779527085000026],[129.78321373800011,31.799627997000144],[129.79086347700004,31.784409898000078],[129.79859459700006,31.76365794499999],[129.79957116,31.74542877800009],[129.78638756600006,31.737616278000086],[129.77613366000006,31.72947825699999],[129.7417098320001,31.67617422100012],[129.72934004000015,31.644232489000117],[129.71924889400012,31.637355861000014]]],[[[129.86451256600017,31.875555731000176],[129.9020288420002,31.848130601000136],[129.90992272200018,31.84568919499999],[129.9127710300002,31.85187409100014],[129.908457879,31.86180247600008],[129.91342207100016,31.867743231000087],[129.92855879000015,31.869696356000034],[129.93336022200006,31.867824611000074],[129.92847741000017,31.86391836100007],[129.92774498800023,31.8595238300001],[129.9296981130001,31.853420315],[129.92807050900015,31.84650299700012],[129.92847741000017,31.840399481000116],[129.93116295700023,31.836371161000148],[129.93148847700016,31.833482164000106],[129.9292098320001,31.826727606000173],[129.92221113400004,31.819810289000156],[129.9127710300002,31.819484768000148],[129.90333092500003,31.81806061400009],[129.88990319100012,31.81073639500009],[129.87598717500012,31.811265367000075],[129.8686629570001,31.818426825000085],[129.86329186300023,31.820868231000038],[129.85906009200002,31.823675848000093],[129.85743248800011,31.828558661000056],[129.85377037900017,31.835150458000115],[129.84742272200006,31.84341054900004],[129.84652754000004,31.85089752800009],[129.8535262380001,31.855169989],[129.85043379000004,31.85740794499999],[129.83952884200008,31.853664455000125],[129.83179772200006,31.84373607000005],[129.82422936300011,31.84227122599999],[129.82056725400005,31.845526434000035],[129.82032311300011,31.85187409100014],[129.82309004000015,31.863023179],[129.83179772200006,31.873521226000047],[129.84498131600017,31.880601304000113],[129.86451256600017,31.875555731000176]]],[[[130.16732832099999,32.11432526200012],[130.14926191500007,32.110500393],[130.13461347700016,32.11798737200017],[130.12777754000015,32.13231028900016],[130.13331139400017,32.149115302000084],[130.1232202480002,32.1589216170001],[130.1150822270001,32.17544179900007],[130.111094597,32.19330475500014],[130.11329186300011,32.207586981000034],[130.12110436300011,32.21263255400008],[130.13200931100008,32.21133047100006],[130.15308678500017,32.203762111000046],[130.17603600400017,32.20335521000011],[130.18726647200018,32.19635651200004],[130.1941024100001,32.17641836100016],[130.19076582100016,32.164618231000176],[130.17359459700006,32.12433502800012],[130.16732832099999,32.11432526200012]]],[[[130.22315514400006,32.25706614799999],[130.21509850400005,32.252671617000104],[130.21070397200003,32.25535716400019],[130.21094811300011,32.26577383000007],[130.21290123800023,32.27667877800015],[130.21705162900017,32.28693268400018],[130.22291100400003,32.292059637000094],[130.22852623800023,32.293036200000145],[130.231211785,32.29511139500009],[130.23226972700016,32.29865143400015],[130.24390709700018,32.30182526200004],[130.26026451900003,32.2950707050001],[130.26644941500015,32.28705475500006],[130.26303144600016,32.281317450000174],[130.25359134200002,32.271633205000015],[130.24284915500013,32.2630882830001],[130.23267662900017,32.258775132],[130.22315514400006,32.25706614799999]]],[[[139.75709069100012,32.470363674000126],[139.773773634,32.44098541900003],[139.75635826900017,32.452297268],[139.75709069100012,32.470363674000126]]],[[[130.38331139400012,32.50942617400009],[130.39177493600005,32.50873444200015],[130.41000410200004,32.51162344000009],[130.44019616000006,32.52399323100012],[130.45704186300023,32.52558014500015],[130.46851647200018,32.51162344000009],[130.43482506600017,32.49274323100014],[130.392832879,32.397162177000084],[130.36231530000018,32.374986070000105],[130.35873457099999,32.37995026200015],[130.35792076900006,32.39118073100015],[130.35865319099997,32.41290924700003],[130.35385175900004,32.42413971600003],[130.343109571,32.42182038000005],[130.32447350400003,32.409816799000126],[130.28443444100017,32.40753815300015],[130.26482181100002,32.403631903000175],[130.241953972,32.39549388200005],[130.22169030000012,32.42186107000005],[130.2130639980002,32.43650950700005],[130.21363366000017,32.45042552300005],[130.21859785200004,32.455959377000156],[130.22510826900012,32.45819733300014],[130.23910566499998,32.46027252800015],[130.24789472700016,32.46458567900008],[130.26783287900005,32.48419830900003],[130.29029381600006,32.49795156500015],[130.30518639400012,32.50405508000013],[130.34156334700018,32.514349677000055],[130.36304772200012,32.527085679000024],[130.37094160200016,32.52704498900003],[130.37720787900005,32.522894598000065],[130.37964928500014,32.51532623900012],[130.38331139400012,32.50942617400009]]],[[[130.18946373800006,32.52179596600002],[130.19898522200018,32.48016998900005],[130.20150800899998,32.39549388200005],[130.20411217500006,32.38764069200006],[130.20679772200006,32.38125234600015],[130.20834394599999,32.37327708499999],[130.20557701900023,32.34662506700006],[130.20337975400005,32.33885325700005],[130.19922936300011,32.33274974200016],[130.19068444100017,32.32355377800009],[130.18140709700006,32.31826406500012],[130.1577254570001,32.31024811400009],[130.15308678500017,32.303371486000074],[130.13331139400017,32.26512278900013],[130.12777754000015,32.26141998900009],[130.10531660200013,32.25214264500012],[130.09693444100017,32.24502187700007],[130.07496178500017,32.22077057500009],[130.06104576900012,32.21185944200015],[130.03687584700018,32.19977448100015],[130.01197350400005,32.19061920800006],[129.99545332100016,32.19065989800005],[129.994395379,32.19989655200011],[130.009125196,32.25214264500012],[129.99732506600006,32.244045315],[129.98633873800006,32.24437083500011],[129.975840691,32.24591705900015],[129.95834394600016,32.237534898000106],[129.95801842500023,32.24237702000009],[129.96127363399998,32.25214264500012],[129.96534264400023,32.258205471000124],[129.99626712300008,32.28217194200008],[130.01661217500006,32.29311758000013],[130.03012129000015,32.29523346600014],[130.04216556100008,32.29450104400003],[130.05323326900012,32.296535549000154],[130.06430097700004,32.30678945500007],[130.05420983200005,32.30695221600014],[130.04615319100003,32.308254299000126],[130.03028405000012,32.313625393],[130.00879967500006,32.30589427299999],[129.99146569100017,32.314439195000105],[129.979746941,32.33299388200011],[129.97527103000007,32.35541413000011],[129.97657311300023,32.36644114799999],[129.98047936300023,32.37563711100013],[129.98698978000002,32.38296133000016],[129.99545332100016,32.388657945000126],[129.98902428500017,32.40448639500006],[129.994395379,32.42413971600003],[130.0065210300002,32.44403717700011],[130.02003014400006,32.46067942900008],[130.03028405000012,32.48240794500005],[130.02540123800023,32.50214264500006],[130.0029403000002,32.53335195500016],[130.01547285200004,32.532782294000086],[130.02475019599999,32.52773672100015],[130.03296959700018,32.521918036],[130.043223504,32.51902903900016],[130.05648847700016,32.52118561400006],[130.07691491,32.530991929],[130.10279381600006,32.536525783000016],[130.1202905610002,32.54287344000015],[130.13982181100008,32.54767487200003],[130.1604923840001,32.54633209800015],[130.18946373800006,32.52179596600002]]],[[[130.452891472,32.6109886740001],[130.45004316500015,32.60325755400008],[130.44678795700023,32.596828518000066],[130.45264733200005,32.59064362200009],[130.45386803500017,32.58006419500005],[130.45093834700006,32.563421942],[130.4458113940002,32.55255768400009],[130.43189537900017,32.54987213700004],[130.42457116000017,32.54682038000014],[130.42758222700016,32.53729889500012],[130.4213973320001,32.54075755400014],[130.40919030000012,32.54926178600006],[130.40674889400003,32.56098053600006],[130.411387566,32.57387929900007],[130.40772545700017,32.58173248900006],[130.39966881600006,32.58641185100008],[130.398773634,32.593166408000016],[130.4135848320001,32.613592841000084],[130.41651451900023,32.613959052],[130.41684004000015,32.610052802],[130.4200952480002,32.611558335000055],[130.42847741000017,32.617661851000136],[130.43653405000012,32.62067291900014],[130.4464624360002,32.61660390800007],[130.452891472,32.6109886740001]]],[[[132.56324303500006,32.709947007],[132.54965254000015,32.704291083],[132.54322350400017,32.70844147300012],[132.54053795700005,32.721502997000115],[132.53988691500004,32.73379140800016],[132.54379316500004,32.74559153900013],[132.548594597,32.75079987200003],[132.55494225400005,32.74750397300009],[132.55795332100013,32.745306708],[132.5620223320001,32.74213288000014],[132.56861412900017,32.73436107000013],[132.57154381600012,32.7254906270001],[132.57081139400006,32.71727122599999],[132.56324303500006,32.709947007]]],[[[128.84229576900023,32.75946686400012],[128.8497827480002,32.74274323100009],[128.84206871299995,32.70386139100016],[128.85522575700017,32.68886442000009],[128.87842693200005,32.67392482500004],[128.89371185700023,32.65761750500009],[128.90113366000006,32.64691803600006],[128.90113366000006,32.64598216400019],[128.89926191500015,32.642523505],[128.88093113700018,32.64235931100008],[128.857899157,32.64340912400009],[128.81771562400004,32.634589588],[128.81548846500007,32.646810135000024],[128.7932235040001,32.65249258000007],[128.78809655000006,32.64850495000009],[128.77963300900015,32.646795966000084],[128.77588951900012,32.642523505],[128.77222741000006,32.63190338700004],[128.77515709700018,32.62714264500015],[128.78012129000004,32.62482330900018],[128.79495874300002,32.6100934200001],[128.79222837900005,32.597941535000146],[128.79020082699998,32.586384515000034],[128.77311026499999,32.571665843000076],[128.75538170700023,32.580511786000145],[128.73604181900012,32.60349384100009],[128.7124129570001,32.60431549700003],[128.66285241000017,32.60154857000008],[128.6526310410001,32.59107501300018],[128.61854433500005,32.609536275],[128.6004388930002,32.61417790899999],[128.60381873200006,32.63059803500015],[128.61060631600006,32.642523505],[128.61353600400017,32.65021393400009],[128.61817467500012,32.65965403900013],[128.62427819100017,32.66730377800015],[128.63184655000023,32.66986725500005],[128.63306725400017,32.665472723000065],[128.63624108200023,32.643744208],[128.63868248800017,32.635158596000096],[128.63965905000023,32.641262111000074],[128.65267988400004,32.66791413000011],[128.65430748800023,32.677964585],[128.65455162900017,32.68886953300016],[128.65349368600002,32.69961172100007],[128.6506453790001,32.70929596600003],[128.6479598320001,32.71385325700008],[128.64503014400012,32.717962958000115],[128.64258873800023,32.722398179000024],[128.64226321700002,32.7280134140001],[128.6440535820001,32.73330312700007],[128.65040123800023,32.74453359600007],[128.64176757200008,32.76138397300012],[128.65093959400008,32.77541308200013],[128.66081790500002,32.78278229400003],[128.67904707100004,32.782904364],[128.68573849700024,32.77091567000015],[128.699652891,32.743771302000155],[128.70536494800004,32.747461232000106],[128.72184869000003,32.75428343600005],[128.74317467500006,32.75828685099999],[128.779223828,32.776625290000155],[128.78412547900004,32.78818120000007],[128.8084903890001,32.79990841200005],[128.81202233200023,32.78241608300011],[128.81080162900003,32.774888414000046],[128.81055748800006,32.766058661],[128.8276880550002,32.761902974000165],[128.84229576900023,32.75946686400012]]],[[[128.90853925900004,32.801336981000034],[128.9072371750001,32.79401276200004],[128.8948673840001,32.78172435100008],[128.88233483200005,32.76528554900007],[128.87533613399998,32.76349518400009],[128.86646569100003,32.76496002800015],[128.84791100400005,32.774888414000046],[128.84009850400005,32.77757396000014],[128.83521569100017,32.78766510600009],[128.8359481130001,32.818996486000124],[128.8346460300002,32.82705312700007],[128.83725019600004,32.83380768400012],[128.8462020190002,32.83486562700007],[128.85694420700023,32.830023505],[128.86345462300002,32.81883372599999],[128.86622155000012,32.80735911700005],[128.86988366000006,32.801092841000084],[128.87387129000004,32.79873281500012],[128.87501061300006,32.80174388200014],[128.87419681100008,32.804348049000126],[128.87338300900015,32.807847398000135],[128.87077884200005,32.816066799000126],[128.86622155000012,32.82538483300006],[128.86296634200008,32.835272528000175],[128.86817467500023,32.837836005],[128.89226321700008,32.823716539000046],[128.89975019600016,32.81830475500003],[128.90284264400023,32.81415436400006],[128.90853925900004,32.801336981000034]]],[[[128.95541425900015,32.863104559000035],[128.95801842500023,32.841498114000146],[128.95443769599999,32.83071523600013],[128.94695071700014,32.82802969000014],[128.94459069100017,32.82339101800012],[128.94776451900023,32.819810289000074],[128.94939212300005,32.81338125200013],[128.94507897200003,32.804348049000126],[128.94044030000012,32.80442942900011],[128.93848717500006,32.812933661000145],[128.93197675899998,32.81712474200016],[128.92302493600008,32.81806061400005],[128.92058353000002,32.820746161000145],[128.924082879,32.82461172100015],[128.92400149800002,32.82965729400017],[128.920176629,32.83502838700004],[128.91570071700008,32.838853257000046],[128.90992272200018,32.84243398600002],[128.89576256600017,32.856431382],[128.88965905000006,32.85814036700019],[128.88314863399998,32.85594310099999],[128.88070722700016,32.86261627800015],[128.8908797540001,32.870917059000035],[128.90894616,32.86644114800008],[128.92432701900023,32.85150788000011],[128.92945397200018,32.84979889500011],[128.92676842500006,32.86220937700013],[128.92896569100017,32.864691473000065],[128.93767337300008,32.860785223000065],[128.94214928500006,32.86517975500006],[128.94336998800023,32.87628815300008],[128.94654381599997,32.880194403000175],[128.95118248800023,32.87645091400004],[128.95313561300011,32.87421295800006],[128.95541425900015,32.863104559000035]]],[[[129.02947024800014,32.891750393],[129.02995853000016,32.88861725500014],[129.02816816500004,32.85565827000006],[129.02409915500007,32.848049221000124],[129.01791425899998,32.848049221000124],[129.01742597700004,32.856675523000135],[129.01368248800006,32.85879140800013],[129.00660241,32.864691473000065],[128.99683678500017,32.86664459800012],[128.98267662900003,32.86225006700012],[128.97754967500023,32.86399974200013],[128.9738061860002,32.869045315000065],[128.969493035,32.87148672100001],[128.96802819100003,32.8736839860001],[128.96412194100006,32.88955312700001],[128.96461022200006,32.89826080900009],[128.97299238399998,32.898504950000145],[128.99170983200014,32.88983795800006],[128.99561608200017,32.89052969000009],[128.99447675900004,32.89533112200017],[128.98878014400023,32.90021393400015],[128.98373457100004,32.90664297100007],[128.98226972700016,32.91242096600003],[128.97966556100005,32.91648997599999],[128.97934004000004,32.92023346600003],[128.98267662900003,32.923244533000016],[128.98471113399998,32.92609284100014],[128.984629754,32.929185289000046],[128.9924422540001,32.929429429],[129.00961347700002,32.92450592700011],[129.02068118600008,32.91669342700014],[129.02458743600008,32.908636786],[129.02784264400012,32.89980703300013],[129.02947024800014,32.891750393]]],[[[139.8452254570001,33.04677969000012],[139.8357853520001,33.03978099200004],[139.8209741550001,33.040269273000135],[139.8029077480002,33.047430731000176],[139.78760826900023,33.058417059000035],[139.77637780000023,33.07998281500015],[139.74341881600006,33.118597723],[139.7397567070001,33.133246161000116],[139.75082441500015,33.14524974200005],[139.76775149800002,33.14988841400016],[139.79102623800023,33.135321356000034],[139.81316165500002,33.123765367000104],[139.83887780000018,33.116685289000046],[139.86231530000023,33.107001044000086],[139.87745201900023,33.08759186400009],[139.869395379,33.07550690300017],[139.8452254570001,33.04677969000012]]],[[[129.09927084900008,33.03568710900007],[129.09725354000014,33.01810575300014],[129.09799238400015,32.98826732000008],[129.10971113400015,32.9828962260001],[129.16962821600018,33.00581653600001],[129.18280727800018,32.98468553900001],[129.17595462300014,32.966986395],[129.1563250530002,32.958490107],[129.13721764400006,32.938177802000055],[129.1175434940001,32.93584108099999],[129.10035241,32.919012762000094],[129.09253686500003,32.906607937],[129.0905507800002,32.89147978700002],[129.09848066500015,32.87514883000015],[129.09799238400015,32.86847565300009],[129.09657225200024,32.85694237600008],[129.0861922540001,32.85724518400009],[129.06791971900006,32.8611828340001],[129.06149503700024,32.848384242000044],[129.06869550900015,32.839178778000175],[129.06853274800008,32.82591380400005],[129.06495201900012,32.81781647300012],[129.0457228280001,32.82209273200009],[129.04712975400005,32.841457424000154],[129.04041432000022,32.86272819599999],[129.0414753840001,32.89599958800015],[129.04781951700005,32.909964614],[129.033050977,32.933335679],[129.024261915,32.937892971000124],[128.98878014400023,32.94415924700017],[128.97942307000008,32.94760914500015],[128.9814603120002,32.960351967000136],[128.99807570200016,32.96653417900016],[129.0204204190001,32.980624687],[129.03503841200015,32.96740447400005],[129.05445397200006,32.979315497000144],[129.04258414900008,33.00015967200012],[129.04862219400016,33.03960279600015],[129.0652106050002,33.043953982000104],[129.06764512499998,33.019115829000135],[129.07773711800021,33.02039796300009],[129.0839949880001,33.023382880000135],[129.08432050900004,33.043198960000055],[129.08099664400018,33.056781847000096],[129.0858752780001,33.07620750500014],[129.10172462800003,33.082973006000095],[129.10661909900003,33.10118815400007],[129.09854704900013,33.114491157000046],[129.09626241000004,33.12537451900012],[129.10818029800024,33.16668808900009],[129.1176668650002,33.158859227000065],[129.11638737100012,33.140655876],[129.11212829800004,33.131534918000014],[129.10859376800022,33.122417884000086],[129.11590807200005,33.113975404000094],[129.1239111050002,33.10917292300003],[129.11831008100003,33.08853075900005],[129.11196658400016,33.07030878400003],[129.10271233400024,33.05449343500011],[129.09927084900008,33.03568710900007]]],[[[129.14958743600002,33.26902903900019],[129.13428795700005,33.258612372000115],[129.12728925899998,33.24750397300009],[129.11915123800006,33.246527411],[129.10320071700008,33.249172268000095],[129.09213300900004,33.25543854400014],[129.085785352,33.26007721600017],[129.0797632170002,33.261297919000086],[129.0750431650001,33.259914455000015],[129.07618248800011,33.26878489800005],[129.089121941,33.28327057500009],[129.10377037900005,33.28896719000009],[129.11312910200013,33.29140859600004],[129.12826582100016,33.301581122000144],[129.13550866000017,33.29987213700015],[129.14332116000017,33.284816799000126],[129.15015709700015,33.276516018000066],[129.14958743600002,33.26902903900019]]],[[[129.55568420000023,33.41080491100017],[129.5621633010002,33.366393867000156],[129.55587394100021,33.35314538100006],[129.54202815300008,33.335676701000025],[129.52752846200022,33.32347747300015],[129.53831700300023,33.31559461200011],[129.52634014200012,33.30338426900015],[129.51434189400018,33.29804494000014],[129.514386228,33.28801229300002],[129.50114810099998,33.28003244000014],[129.50247802800018,33.26525992000008],[129.4930951260001,33.245163286000135],[129.44660473600018,33.198519605000044],[129.41259095300003,33.17831786000009],[129.3760213100002,33.16971922700007],[129.35808353000007,33.17694733300003],[129.34250066400003,33.1796201800001],[129.3449601670002,33.19019663600007],[129.3498690240001,33.21346751500011],[129.36070093200013,33.19871806800002],[129.38478198600004,33.183493173],[129.40015709700006,33.18569570500007],[129.40650475400017,33.194037177000055],[129.40308678500014,33.19765859600001],[129.3960067070001,33.202582098000065],[129.38466500200005,33.20409987500007],[129.37765688400006,33.21463952800012],[129.38200542000018,33.22891994300012],[129.39396140600016,33.239525906000054],[129.41676916100008,33.2369296050001],[129.4084318000001,33.253823673000014],[129.40641102400005,33.27495079100005],[129.43726510800005,33.29667988000006],[129.44089618799998,33.32526007500003],[129.44266269100015,33.348066089000085],[129.49512950000022,33.35829457300004],[129.50830966200022,33.38209177600011],[129.51591417800012,33.37839513000016],[129.52291622400006,33.36837711800011],[129.53930970000013,33.37948754900013],[129.5234559190002,33.39056654500011],[129.52532080700004,33.40492725000002],[129.55568420000023,33.41080491100017]]],[[[129.55486087300002,33.49982330900018],[129.55591881600017,33.493963934000035],[129.57341556100002,33.49607982000005],[129.57642662900005,33.48834870000006],[129.5680444670002,33.478501695000105],[129.55445397200006,33.47345612200008],[129.53939863400004,33.47516510600009],[129.52686608200008,33.48045482000008],[129.5190535820002,33.4781761740001],[129.51644941500004,33.47353750200007],[129.51197350400017,33.47296784100011],[129.50318444100017,33.47370026200004],[129.50668378999998,33.483099677000055],[129.524668816,33.4975446640001],[129.54175866000017,33.507310289000046],[129.55176842500023,33.506903387000065],[129.55486087300002,33.49982330900018]]],[[[139.29908287900017,33.65070221600017],[139.29908287900017,33.65009186400003],[139.29615319100017,33.651068427],[139.29908287900017,33.65070221600017]]],[[[132.25245201900023,33.78534577],[132.27409915500002,33.77220286700005],[132.2729598320001,33.768540757],[132.2573348320001,33.76601797100009],[132.23633873800006,33.768540757],[132.20443769600016,33.782131252000156],[132.18832441499998,33.77968984600004],[132.19532311300006,33.79352448100012],[132.20875084700006,33.80011627800008],[132.22575931100002,33.799872137000065],[132.24366295700005,33.79328034100017],[132.25245201900023,33.78534577]]],[[[129.76220277400014,33.82313843700017],[129.7628717910001,33.81234364600006],[129.76678701100005,33.80209537200015],[129.781095119,33.79239255600008],[129.79688561300023,33.78644440300015],[129.79127037900005,33.784979559000085],[129.7819116550002,33.78115469000009],[129.77637780000018,33.77968984600004],[129.77637780000018,33.77342357000008],[129.79957116,33.76483795800006],[129.79965253999998,33.751044012000065],[129.78386478000002,33.73818594000012],[129.76037880300024,33.73730452000002],[129.7350640350002,33.73673856400008],[129.72276735300008,33.71674819700006],[129.7210392590001,33.69773997599999],[129.71045983200023,33.70083242400007],[129.69095668100024,33.71561246200004],[129.67729361500002,33.72909541000016],[129.6811607020002,33.74421752800011],[129.6707632470001,33.750139093000044],[129.65712690899997,33.74255478300002],[129.649304171,33.756039813000044],[129.646658083,33.77277290600016],[129.6769311860002,33.76072825700011],[129.68702233200023,33.75918203300016],[129.68702233200023,33.76601797100009],[129.66028335100012,33.78359193100012],[129.65826924799998,33.80357374700016],[129.65693388100007,33.81545368899999],[129.67840180699994,33.81493097400009],[129.67314449900002,33.83221792800002],[129.67895207600023,33.84898507700007],[129.6867199220001,33.859795866000084],[129.68864750300023,33.871145815000105],[129.7006942070001,33.86155833500008],[129.76726321700008,33.844549872000115],[129.76804010200024,33.83665025900011],[129.76220277400014,33.82313843700017]]],[[[139.62289472700016,33.856756903000175],[139.61019941499998,33.85285065300009],[139.59424889400003,33.85472239800005],[139.58130944100017,33.86253489800004],[139.57976321700002,33.88031647300012],[139.5924585300002,33.89581940300006],[139.60962975400005,33.896389065],[139.61898847700016,33.89012278900016],[139.62281334700018,33.885565497000115],[139.6295679050002,33.87173086100002],[139.62875410199996,33.86570872600011],[139.62289472700016,33.856756903000175]]],[[[132.29818769600016,33.93048737200003],[132.32618248800006,33.896307684000035],[132.34009850400017,33.89720286700013],[132.35320071700002,33.903387762000094],[132.37403405000012,33.91681549700009],[132.3802189460001,33.917547919000114],[132.3952742850001,33.915472723],[132.40121504000004,33.91681549700009],[132.40707441500015,33.92304108300014],[132.40967858200017,33.93390534100003],[132.4155379570001,33.937933661],[132.42758222700004,33.939886786000145],[132.45394941500004,33.937567450000174],[132.469493035,33.937933661],[132.45785566500004,33.927679755000085],[132.43653405000023,33.90355052300005],[132.42847741,33.90253327000009],[132.41895592500012,33.90566640800016],[132.39454186300017,33.89931875200013],[132.38477623800023,33.89419179900004],[132.38070722700016,33.88641998900012],[132.37940514400017,33.86188385600009],[132.37745201900012,33.85203685100008],[132.37403405000012,33.841701565000065],[132.36255944100017,33.845445054000024],[132.34058678500006,33.844956773000106],[132.33236738400015,33.84796784100002],[132.32837975400017,33.85651276200004],[132.3296004570001,33.86579010600009],[132.32862389400012,33.875067450000145],[132.31861412900003,33.88328685100005],[132.311778191,33.875881252000156],[132.29810631600017,33.88401927300008],[132.29184004000004,33.878729559000085],[132.28882897200006,33.86835358299999],[132.28451582100004,33.86155833500008],[132.2721460300002,33.86041901200004],[132.25464928500006,33.865668036000116],[132.24366295700005,33.86155833500008],[132.23617597700004,33.86904531500012],[132.23121178500017,33.863918361000046],[132.22641035200013,33.860663153000175],[132.2163192070001,33.85537344],[132.20826256600017,33.87518952000012],[132.19336998800011,33.897650458000115],[132.18628991000017,33.92121002800015],[132.20191491000006,33.944769598000036],[132.22608483200023,33.95270416900017],[132.2535913420002,33.95010000200007],[132.2794702480002,33.941229559000035],[132.29818769600016,33.93048737200003]]],[[[130.99292883500007,33.89766466700014],[131.00177079800008,33.88722868400005],[130.99982932100008,33.8738635400001],[130.98460705500023,33.87396048700013],[130.98808132899995,33.864284161000015],[130.9906843900001,33.85682718300005],[130.98433485600017,33.84869791800013],[130.97974694100014,33.84271881700012],[130.96357418600005,33.83323528200016],[130.96192467500012,33.82005442900008],[130.96168053500017,33.81622955900015],[130.96599368600008,33.81305573100009],[130.98551079600023,33.80866486500015],[131.00694470900024,33.813087590000166],[131.00359134200008,33.77968984600004],[131.0060327480002,33.77228424700002],[131.00977623800023,33.74616120000017],[131.019786004,33.726548570000105],[131.0507918630002,33.681870835000055],[131.06446373800006,33.65326569200009],[131.08130944100014,33.634955145000035],[131.10297618100017,33.62425323800014],[131.11997169700024,33.62633852100011],[131.1458746570001,33.62163367200013],[131.188699101,33.61602829300013],[131.21986918300004,33.60754487000004],[131.25646381200008,33.60495535200003],[131.28383445500018,33.58236918000013],[131.32309335200014,33.58122055200015],[131.36762048200015,33.574801779],[131.4177031080002,33.581681679],[131.42317582400008,33.58905352200004],[131.45931405600018,33.616143772],[131.4756370470001,33.631565882000174],[131.4840322870002,33.65303836400001],[131.49855721400007,33.66698519000015],[131.5210451170001,33.6763707920001],[131.55147501700017,33.68044424600005],[131.57380154600003,33.68089552700009],[131.59001712300008,33.6830101580001],[131.60718834700018,33.67719147300012],[131.62745201900006,33.667669989000146],[131.64722741,33.66982656500015],[131.6673662740001,33.667192003000125],[131.68955031300018,33.641342245000104],[131.71311515500022,33.60543866400003],[131.72953798100005,33.58023616300012],[131.73707116,33.56037018400018],[131.73991946700008,33.53969961100015],[131.729109,33.51254769600014],[131.73729484100008,33.48460779900013],[131.72734758300007,33.46353913000014],[131.7092823690002,33.432637870000164],[131.7062434980002,33.409582667],[131.69743643400014,33.406392597000135],[131.67457116000017,33.41616445500012],[131.65870201900023,33.422837632000025],[131.6403100920002,33.41657135600014],[131.63542728000007,33.40232982000005],[131.63843834700003,33.38666413000008],[131.63461347700004,33.37396881700003],[131.609629754,33.36880117400001],[131.6010848320001,33.364935614],[131.59623445500003,33.349400219000145],[131.57628894100017,33.346355202],[131.5561629570001,33.346380927],[131.54737389400012,33.35228099200013],[131.53298094200002,33.366113306000116],[131.50602854600018,33.36307383900008],[131.49838511400003,33.340666269000124],[131.51037964000014,33.273403693000134],[131.5284936860002,33.2612165390001],[131.54786217500012,33.25495026200015],[131.61221917500015,33.252936484000074],[131.65453516400004,33.27162523500006],[131.70004316499998,33.25409577000014],[131.7108623820001,33.27017583800013],[131.76209241900003,33.253543499],[131.8221740970001,33.24403243800016],[131.85085719000014,33.25221895900002],[131.8844485440002,33.268305656],[131.90262453300014,33.266041833000095],[131.88219531500005,33.23653248400011],[131.87155536400022,33.21541862600019],[131.87224368600002,33.200344143000095],[131.86466184000002,33.19306970900011],[131.84874354000013,33.187999178000084],[131.83097601300003,33.16971306700016],[131.82666062900014,33.152561727000105],[131.80957368900022,33.12764888700009],[131.84262128999995,33.11326732000004],[131.86883062000018,33.12876699900015],[131.90040123800011,33.12913646000008],[131.91145721600017,33.124815134000116],[131.88435011500022,33.109354560000135],[131.86893776100024,33.094340211000045],[131.86321733100024,33.08253329200014],[131.88051074700016,33.07504043000013],[131.89085922300004,33.07951064400005],[131.90579752700003,33.077295736000124],[131.9158313490002,33.06916163000007],[131.92921694500004,33.068270865],[131.93261830800006,33.079469604000124],[131.93446936200021,33.092017862000105],[131.94238354500007,33.092556686000094],[131.95093834699998,33.07615794500013],[131.95801842500006,33.067206122000115],[131.9671330090001,33.061672268000095],[131.9760848320001,33.06024811400012],[131.98519941499998,33.06317780200014],[131.99146569100006,33.068996486000096],[131.99611291500017,33.091711249000056],[132.01343834700006,33.06386953300007],[132.0094507170002,33.05117422100001],[131.98400888800006,33.04554450900015],[131.94535031300003,33.04749881500011],[131.92955026400008,33.0470896020001],[131.92282875300012,33.02865454100014],[131.90677350700005,33.01184695400009],[131.9031681650001,32.983058986000074],[131.91459563600014,32.97649247000005],[131.93470534100018,32.959506862000026],[131.94970144800018,32.9592749420001],[131.959239129,32.94452545799999],[131.969899936,32.94830963700012],[131.9791772800002,32.95038483300014],[131.98560631600012,32.947333075000145],[131.99097741000017,32.941717841000134],[131.99822024800008,32.938910223],[132.01026451900012,32.94415924700017],[132.0097762380001,32.93903229400017],[132.013879094,32.93439292900017],[132.02183065700015,32.93691682100008],[132.0347898,32.95129061700011],[132.06074383000012,32.946884996],[132.08118890900002,32.943229703],[132.08411475400007,32.933233985000115],[132.06444569699997,32.936215320000045],[132.04371447900007,32.92727560900015],[132.0254749860001,32.923595910000145],[131.99480228000007,32.90355052299999],[131.98218834700018,32.888902085000076],[131.98666425900015,32.882269598],[131.99586022200006,32.878363348],[132.00017337300002,32.87128327000015],[131.9897567070002,32.85480377800015],[131.98096764400003,32.848334052000055],[131.97234134200008,32.84446849200005],[131.96371504000015,32.839016018],[131.95557701900023,32.82754140800007],[131.96851647200006,32.826117255],[131.99781334700018,32.82965729400017],[132.00342858200005,32.824123440000065],[131.99659264400023,32.810532945000105],[131.98072350400005,32.799261786000116],[131.96241295700005,32.792669989000146],[131.94809003999998,32.79340241100006],[131.92920983200023,32.77826569200006],[131.88249759200008,32.78343333500008],[131.87305748800023,32.76235586100016],[131.87305748800023,32.73468659100014],[131.87232506599997,32.73163483300006],[131.87110436300011,32.72679271],[131.86687259200008,32.72272370000003],[131.86215254000015,32.72036367400007],[131.85938561300011,32.7176781270001],[131.85699406300003,32.70086428700016],[131.85592484900022,32.686084221],[131.84791100400017,32.68183014500009],[131.83395173900024,32.69866452900014],[131.82193770100017,32.70268559100013],[131.8165644120002,32.689146346000044],[131.80063958399998,32.68083304800011],[131.78842207100004,32.662990627000156],[131.7756453790001,32.6537132830001],[131.770762566,32.64874909100014],[131.767832879,32.64411041900003],[131.76823978000016,32.64240143400012],[131.76978600400005,32.63955312700007],[131.770762566,32.63174062700007],[131.76685631600006,32.62079498900012],[131.74903405000023,32.59406159100011],[131.74333743600005,32.58795807500012],[131.72950280000018,32.58405182500012],[131.70879259100016,32.585903477000116],[131.7047128720001,32.58157515700019],[131.69906660200004,32.56452057500003],[131.68213951900023,32.53506094000015],[131.68506920700023,32.52244700700008],[131.69564863400004,32.51146067900011],[131.71265709700018,32.51162344000009],[131.7189233730002,32.50873444200015],[131.73650149800008,32.49168528900019],[131.71729576900012,32.47296784100003],[131.69548587300002,32.4682477890001],[131.6789456940002,32.473907004000026],[131.65979027600022,32.476819574000146],[131.65662940000016,32.45735773000002],[131.67388918300006,32.44180489400016],[131.68913158600017,32.42173733500012],[131.66358483200023,32.40643952000012],[131.65308678500003,32.40127187700001],[131.64136803500017,32.39923737200009],[131.6334741550002,32.39549388200005],[131.62940514400023,32.386786200000174],[131.62183678500017,32.360296942],[131.61947675900004,32.33710358300005],[131.61646569100006,32.33234284100016],[131.6110132170002,32.32998281500004],[131.60279381600017,32.32355377800009],[131.59253991000017,32.303656317],[131.5804142590001,32.25397370000012],[131.5624169000001,32.2179163710001],[131.55032724200024,32.169466089000096],[131.53052845600016,32.10739128200008],[131.49648639400007,32.012744267000116],[131.4585703370001,31.905451862000017],[131.44727623800006,31.87689850500008],[131.44996178500017,31.858710028000175],[131.44762186299997,31.847434831000115],[131.45590347800018,31.821973977000038],[131.46804227599995,31.804899433000045],[131.49634850400005,31.79596588700009],[131.49301191499998,31.78693268400009],[131.47852623800023,31.770331122000027],[131.4752710300002,31.762152411000116],[131.45053144600004,31.65110911700013],[131.45533287900005,31.62091705900012],[131.42335045700023,31.598334052000137],[131.41146894600016,31.586127020000063],[131.40691165500002,31.569728908000158],[131.40406334700018,31.568060614000146],[131.39079837300008,31.548814195000016],[131.38648522200006,31.539007880000057],[131.38526451900023,31.52692291900014],[131.387950066,31.52049388200005],[131.39144941500004,31.516750393000038],[131.39332116000017,31.512274481000144],[131.39372806100008,31.49103424700017],[131.38892662900017,31.485581773000135],[131.37623131600006,31.47443268400012],[131.37354576900023,31.467352606000148],[131.36378014400012,31.419663804],[131.35865319100017,31.410467841000113],[131.34546959700006,31.394964911],[131.3418074880001,31.386053778000147],[131.34058678500017,31.37872955900015],[131.33822675900004,31.37262604400017],[131.331309441,31.367661851000108],[131.32764733200003,31.371323960000083],[131.32496178500017,31.37287018400012],[131.31820722700016,31.3751488300001],[131.32260175900015,31.38129303600006],[131.32374108200005,31.38393789300015],[131.32504316500012,31.388128973000093],[131.28484134200008,31.381984768],[131.26587975400017,31.381170966000084],[131.24984785200016,31.388128973000093],[131.24512780000018,31.395575262000154],[131.2457788420002,31.412176825000117],[131.24301191500015,31.422267971000093],[131.2386173840001,31.42841217700005],[131.21924889400023,31.446478583000086],[131.21265709700018,31.454738674000065],[131.20780235400005,31.456049140000133],[131.20034249199998,31.457373282],[131.1786330130001,31.452428893],[131.16155688500012,31.46399793100012],[131.15064537900005,31.471340236000046],[131.13038170700023,31.46942780200008],[131.10938561300006,31.464544989],[131.07178795700005,31.449611721000153],[131.05689537900005,31.439642645000063],[131.04525800900004,31.42747630400008],[131.02807477500005,31.401785761000113],[131.01361073600006,31.363069850000144],[131.02545128600013,31.35409522499999],[131.05958092500012,31.3448753930001],[131.08334394600004,31.338446356000176],[131.10401451900012,31.3288434920001],[131.10738759400024,31.317184411000156],[131.10438183500005,31.309449248000178],[131.08298623699994,31.297055970000162],[131.07421690500001,31.28210440500011],[131.09259076700013,31.27605066400015],[131.12474719500014,31.288345546000027],[131.1321139440001,31.27951310200002],[131.060249739,31.225314840000138],[131.03295089700012,31.22752444600009],[131.0081594020002,31.221082284000047],[131.00660241000017,31.199774481000176],[130.99708092500018,31.18659088700012],[130.97999108200023,31.15599192900011],[130.96859785200016,31.141750393],[130.95622806100002,31.131170966000138],[130.94068444099997,31.12132396000011],[130.92400149800008,31.11298248900006],[130.90723717500023,31.10691966400016],[130.87068066200004,31.09601851800012],[130.8452254570001,31.08991120000009],[130.81951105400006,31.08726047400016],[130.79235710500015,31.07784711500013],[130.77379645200008,31.065482772000014],[130.76758873800006,31.056463934000035],[130.72542805000003,31.047039567000084],[130.69488036,31.018824916000185],[130.67794304400005,31.005010434000056],[130.65772202600007,31.003191200000106],[130.6633394100002,31.069506364000134],[130.68897545700005,31.090155341000145],[130.72868899800008,31.11155833499999],[130.74268639400023,31.121283270000117],[130.76478445300003,31.18650933200003],[130.75394057400015,31.203882653000093],[130.78036911500024,31.242514662000033],[130.789670147,31.275148674000132],[130.79664629800018,31.325345784000074],[130.7952516060001,31.34442510700013],[130.78272545700005,31.372788804000134],[130.76954186300023,31.40241120000017],[130.74732506600017,31.435492255000113],[130.70341738600015,31.459304551000017],[130.69252519000017,31.48557201000004],[130.70533287900017,31.528753973000118],[130.69556725400005,31.5458031270001],[130.63689212300014,31.55524323100012],[130.61947675900015,31.56427643400012],[130.60938561300011,31.566310940000147],[130.59831790500007,31.573431708],[130.59088884600007,31.585987911000093],[130.61389305800017,31.6120664780001],[130.6378780590001,31.62259469100009],[130.66228274800008,31.617865302000112],[130.68783613400015,31.619452216000138],[130.711680535,31.614406643000038],[130.72234134200008,31.59731679900007],[130.71924889400017,31.570705471000124],[130.72266686300006,31.56342194200012],[130.73601321700016,31.559475002000127],[130.74903405000006,31.559719143000063],[130.75863691500015,31.563788153000033],[130.77637780000023,31.579901434000092],[130.7990014980002,31.61172109600012],[130.81031334700015,31.650946356000148],[130.80453535200004,31.68724192900005],[130.77637780000023,31.710272528000033],[130.73796468800018,31.708438590000085],[130.68604576900023,31.725531317],[130.644786004,31.71474844],[130.61304772200006,31.682359117000185],[130.61011803500006,31.672308661000116],[130.60621178500006,31.646633205000153],[130.60222415500007,31.638251044000086],[130.57496178500017,31.61127350500014],[130.56763756600003,31.60073476800009],[130.5584416020001,31.566310940000147],[130.54224694100003,31.541734117000132],[130.52914472700016,31.513251044000025],[130.51807701900012,31.47239817899999],[130.51612389400006,31.45331452],[130.52051842500023,31.432440497000027],[130.550466342,31.3751488300001],[130.5626733730002,31.33437734600012],[130.5734969410001,31.3146019550001],[130.58912194100017,31.306219794000054],[130.60287519599999,31.301988023000106],[130.62368198400011,31.275646770000137],[130.6603296230002,31.271429755],[130.66195722700004,31.258612372000147],[130.65007571700008,31.223700262000033],[130.64665774800008,31.20693594000004],[130.63982181100005,31.186468817000144],[130.62330162900017,31.178859768],[130.6036889980002,31.172349351000104],[130.58643639400012,31.155422268000123],[130.5735783210001,31.167425848000065],[130.56251061300023,31.16693756700006],[130.55079186300023,31.162420966000028],[130.5367944670002,31.16217682500017],[130.52173912900017,31.16868724200016],[130.516856316,31.175441799000012],[130.51612389400006,31.18952057500014],[130.50660241000014,31.21279531500006],[130.4948022800002,31.22724030200011],[130.45114447600005,31.24938807200014],[130.29737389400012,31.253729559000178],[130.27507571700008,31.252997137000147],[130.24878991000006,31.2441266950001],[130.22220471400013,31.246299862000157],[130.21205593,31.260865751000082],[130.20871522600007,31.27928251500013],[130.20309321400023,31.293824192],[130.1929524180001,31.31515659300008],[130.17938199500006,31.327781069000036],[130.19072152900006,31.326789327000043],[130.20659505900008,31.32481915000001],[130.20777428500006,31.336615302000023],[130.19654381600006,31.354193427000137],[130.17025800900004,31.377020575000145],[130.14063561300006,31.397650458000083],[130.11898847700007,31.408636786000148],[130.14503014400023,31.420070705000096],[130.15308678500017,31.422267971000093],[130.16236412900003,31.42194245000015],[130.1754663420002,31.41730377800003],[130.18409264400012,31.416083075000117],[130.19597415500007,31.412054755000142],[130.21517988400004,31.391058661],[130.22828209700015,31.38129303600006],[130.24488366000006,31.40485260600012],[130.29326812900004,31.44470403200016],[130.3047602330001,31.476634180000087],[130.31706790500007,31.4930687520001],[130.32846113400004,31.52903880400008],[130.33448326900012,31.562404690000154],[130.32447350400003,31.586737372000027],[130.33765709700018,31.607896226000108],[130.336192254,31.626166083],[130.3254500660001,31.642075914000102],[130.29737389400012,31.66998932500015],[130.2592879570001,31.720851955000068],[130.2462671230001,31.729641018000148],[130.19971764400012,31.753729559000178],[130.18409264400012,31.758693752000124],[130.18181399800002,31.768255927000112],[130.17143062700003,31.79013665700016],[130.181000196,31.826971747000034],[130.19031873800012,31.835088246000122],[130.22282962300008,31.82444896000011],[130.235118035,31.819525458000143],[130.20785566500004,31.843695380000053],[130.19700374200025,31.858485428000147],[130.2147297910001,31.885618474000115],[130.220437744,31.92959451500009],[130.21391755000005,31.95017443200005],[130.20512664400007,31.971670373000066],[130.1941024100001,31.980902411],[130.18995201900023,31.986029364000117],[130.17410608700018,31.998755987],[130.17299366000017,32.017449556000045],[130.186307185,32.026795814000096],[130.20404812200005,32.04828530800002],[130.20404738700003,32.07258078500003],[130.1798608730002,32.09345123900006],[130.20679772200006,32.12067291900014],[130.24830162900017,32.13373444200012],[130.27865644600004,32.10053131700011],[130.29851321700002,32.105861721000096],[130.31959069100003,32.11823151200012],[130.33187910200004,32.12860748900012],[130.33513431100008,32.135199286],[130.34465579500008,32.161769924000126],[130.34498131600017,32.16274648600002],[130.34848066500015,32.166571356000034],[130.35694420700008,32.16937897300009],[130.35865319099997,32.17267487200003],[130.35775800900004,32.18724192900005],[130.35865319099997,32.19065989800005],[130.43100019600016,32.257147528000175],[130.441172722,32.28261953300007],[130.44402103000007,32.28782786700015],[130.45704186300023,32.29486725500014],[130.46168053500017,32.299953518000066],[130.46371504000004,32.30939362200017],[130.46045983200017,32.318182684000064],[130.46168053500017,32.32721588700015],[130.46957441500012,32.34711334800015],[130.47706139400012,32.349025783000016],[130.50318444100017,32.32721588700015],[130.51246178500006,32.33820221600011],[130.51392662900014,32.350327867000104],[130.51002037900017,32.378485419000086],[130.51490319100006,32.38589101800006],[130.54053795700023,32.416001695000105],[130.5620223320002,32.42706940300015],[130.57129967500012,32.451890367000104],[130.56763756600003,32.47768789300012],[130.550466342,32.49168528900019],[130.55884850400017,32.50177643400015],[130.57007897200018,32.50560130400008],[130.59880618600002,32.50535716400013],[130.59058678500006,32.5184593770001],[130.56771894600004,32.53416575700005],[130.56470787900005,32.54633209800015],[130.57007897200018,32.55459219000012],[130.6412866550002,32.60748932500009],[130.6564233730002,32.62372467700014],[130.66830488400015,32.64874909100014],[130.64144941500012,32.64834219000012],[130.4780379570001,32.62201569200012],[130.46168053500017,32.615220445000105],[130.44800866000006,32.62140534100017],[130.4572046230002,32.63519928600009],[130.47527103000002,32.647040106000034],[130.54420006600017,32.67670319200009],[130.56544030000023,32.69342682500012],[130.57650800900004,32.69839101800015],[130.59197024800014,32.69721100500011],[130.60816491000017,32.70221588700015],[130.61646569100006,32.70376211100002],[130.62598717500023,32.704006252000156],[130.62598717500023,32.71141185100005],[130.61231530000012,32.71625397300012],[130.60141035200004,32.72614166900003],[130.59449303500006,32.737982489],[130.59197024800014,32.74872467700011],[130.59376061300011,32.75560130400011],[130.59815514400012,32.76308828300007],[130.60938561300011,32.77570221600017],[130.61304772200006,32.78123607],[130.61133873800023,32.785467841000106],[130.60767662900017,32.78986237200009],[130.60564212300008,32.79645416900014],[130.59302819100017,32.815863348000065],[130.51612389400006,32.86847565300009],[130.4702254570001,32.90973541900014],[130.441254102,32.923651434000035],[130.43311608200008,32.941717841000134],[130.42644290500002,33.00714752800009],[130.42847741000017,33.05052317900008],[130.42164147200006,33.069769598],[130.42221113400004,33.08258698100006],[130.42066491000017,33.08759186400009],[130.41504967500018,33.09162018400015],[130.4096785820001,33.09267812700001],[130.40447024800017,33.093003648000135],[130.400157097,33.09503815300015],[130.37940514400012,33.107855536],[130.37224368600008,33.11489492400007],[130.36752363400015,33.126369533000016],[130.36801191500012,33.13495514500012],[130.3647567070001,33.14032623900009],[130.33741295700023,33.14337799700017],[130.31478925900012,33.14850495000009],[130.30054772200018,33.149644273000135],[130.29044274400022,33.14958862900015],[130.25814863400007,33.17865631700003],[130.2413964770001,33.188234066000135],[130.21930161999998,33.159465952000076],[130.17823326900006,33.13491445500013],[130.15088951900012,33.11188385600015],[130.12756487200014,33.12093662000011],[130.13194608500007,33.10197172699999],[130.14512925400018,33.08483626000016],[130.1604923840001,33.05410390800013],[130.20390147900017,32.99178161500005],[130.22231019900008,32.975205048000035],[130.21914692699997,32.955059859000144],[130.20425778500024,32.95087110800013],[130.20378665500007,32.928900458000115],[130.1885362940001,32.915321158],[130.163596061,32.90929081300011],[130.14913025100012,32.896413044000084],[130.134639816,32.889044178000105],[130.1154077480002,32.88027578300015],[130.10531660200013,32.87592194200006],[130.12231510100014,32.8688161080001],[130.13252880200017,32.85593935700014],[130.15363495200003,32.842457332],[130.17828428900012,32.8424949530001],[130.19500237200023,32.84494011200009],[130.24358790200003,32.87528409700015],[130.30728451900004,32.8762989750001],[130.33941978699997,32.85657931100015],[130.35124759200002,32.833929755],[130.37224368600008,32.79340241100006],[130.37484785200016,32.78017812700013],[130.37578209400007,32.747884438000035],[130.3737062170002,32.73896888899999],[130.35499108200005,32.717230536],[130.3509363310002,32.70406338500008],[130.36082701600006,32.687963369000144],[130.34170370900003,32.667257674000055],[130.30557751,32.65143396800006],[130.26823067699996,32.65036133400004],[130.25904566300002,32.64386571100012],[130.25993899800008,32.63271719000015],[130.25391686300023,32.62482330900018],[130.2365080210001,32.622476706000086],[130.23154564,32.61001434800012],[130.22307901800016,32.60588090300014],[130.1984120440001,32.60297819100004],[130.18148028400006,32.59232724600004],[130.16598697300006,32.592955657000076],[130.1730538790001,32.60363378100011],[130.16956158300002,32.619092229999985],[130.15548756000024,32.625654336000096],[130.14704924400016,32.63399204700012],[130.12945734900012,32.64113420200006],[130.128792608,32.66131741900007],[130.12813256,32.68387054600008],[130.14222326700005,32.68206490400014],[130.15350770000012,32.686197489000115],[130.16692510400006,32.69803794700006],[130.1774802260002,32.70517956500005],[130.190131683,32.71410604900002],[130.20132314600008,32.724250206000036],[130.21031382400008,32.7332498410001],[130.20758542900015,32.75216234500006],[130.19583342700017,32.75739113400005],[130.18681992200018,32.76206462600011],[130.18287194100012,32.7690290390001],[130.18604576900017,32.77435944200008],[130.19023316200006,32.783481734000176],[130.17842736700007,32.79292178700008],[130.14809900800006,32.79535371600006],[130.13821426500013,32.78884735300012],[130.12622206300014,32.78887009200007],[130.09378935499998,32.79486030900007],[130.06416680700013,32.78481126800013],[130.05004571000003,32.77236437400002],[130.03241165700004,32.75934986500012],[130.00844579100013,32.75462632199999],[129.99080803500013,32.74691678000009],[129.97037983800007,32.74456321900014],[129.96267180600015,32.752894191000124],[129.96201159100022,32.76180925300004],[129.95850841299998,32.76478227299999],[129.94932582400023,32.7576612160001],[129.9548908950001,32.745171077000165],[129.9421362830001,32.72852185000006],[129.91676459900023,32.69827854900008],[129.90344364200007,32.681137185000054],[129.89492938400022,32.662689399],[129.87445290399998,32.64898869200006],[129.85544474200006,32.64008608000002],[129.84127669600016,32.63941524900003],[129.8377245930001,32.63166779],[129.8322856010001,32.61580479700014],[129.8085433220001,32.59755228000007],[129.78582955400006,32.58310535600005],[129.78290880300008,32.573503108000025],[129.77656135300018,32.57645720100011],[129.763146868,32.579976042000126],[129.74961151099998,32.57269832500005],[129.74035124000014,32.568442387000076],[129.73400490800012,32.580920387],[129.7495901690002,32.59171044200018],[129.76168735000024,32.59598029900006],[129.77519728400003,32.60085152000012],[129.78297457600004,32.60741488500015],[129.79416252400003,32.632314333000025],[129.8046153490001,32.647683737000094],[129.81449596100006,32.662551104],[129.8180835100001,32.67743817500006],[129.8138718150001,32.68337935000001],[129.80324928400015,32.67799558400016],[129.79688259100024,32.684506210000094],[129.79692255500007,32.692244529000064],[129.8089597970002,32.694068048000034],[129.8153195470001,32.701797723000126],[129.82595416600006,32.70480813600015],[129.834378031,32.69412163700004],[129.84569353600014,32.70127403300013],[129.85906009200002,32.724514065],[129.82379517000007,32.72198462400017],[129.82398522200006,32.73607005400014],[129.80372155000023,32.77228424700014],[129.79330488400012,32.78017812700013],[129.78467858200023,32.78489817900013],[129.77865644600013,32.791001695000126],[129.77637780000018,32.803290106000176],[129.7710067070001,32.8139509140001],[129.75450898700004,32.818482657000075],[129.7443432810002,32.80988554],[129.73271004500012,32.805570175000085],[129.7210349420001,32.82707413800013],[129.69809003999998,32.839544989],[129.68702233200023,32.85480377800015],[129.67839603000007,32.87042877800006],[129.67465254000004,32.88051992400001],[129.6733504570001,32.89240143400015],[129.66968834700006,32.904974677000055],[129.6613061860002,32.914740302],[129.6518660820001,32.92279694200012],[129.63843013700014,32.926546363000014],[129.63112936300004,32.95653358600005],[129.63240266500023,32.97910666700009],[129.6462691950002,32.98956329800011],[129.65351883600025,33.004253288000186],[129.64972081700014,33.017049060000105],[129.65186151400005,33.03355786700003],[129.66065830000005,33.03969659100009],[129.6634167340002,33.069023976000054],[129.68161222900008,33.094092267000136],[129.72019752700024,33.07896768700009],[129.73471113400004,33.06024811400012],[129.73536217500023,33.05784739800008],[129.73422285200004,33.049058335000026],[129.73471113400004,33.04661692900008],[129.73796634200008,33.04612864799999],[129.7443368410002,33.05152376200009],[129.75015446500018,33.057039056000164],[129.75526629500007,33.055216089000126],[129.75966533900007,33.0478894380001],[129.75312015100016,33.041761967000085],[129.73863191000024,33.01911825200007],[129.73578382200006,33.00384361900002],[129.74166376900007,32.991035481000054],[129.75183863700025,32.995939633000106],[129.76632809800017,33.017953982],[129.79695900000016,33.010061728],[129.81230757300003,32.99480358000007],[129.82327699500016,32.97953752800014],[129.81600930400023,32.97096745100008],[129.8138449190001,32.96179569800013],[129.81608896700007,32.937947697000126],[129.81466930400018,32.92265535000003],[129.80667695500009,32.91469654700002],[129.80082747500015,32.92386666000009],[129.79567396600024,32.94779418000009],[129.7869448060001,32.94780487100009],[129.78993525000024,32.91224538900015],[129.80379470800008,32.902460108000085],[129.8074772800002,32.88594190900001],[129.79439983400007,32.87492070200001],[129.81481435200013,32.86331302600014],[129.82283367199997,32.85843758800017],[129.83158612900004,32.85050825100011],[129.84178867900005,32.844410601000064],[129.84543955299998,32.838308484000024],[129.8505281490002,32.841370511000044],[129.85488454600014,32.847485752000026],[129.86870212600016,32.85301349600017],[129.8745141320002,32.86096322200014],[129.88320558400008,32.875692707000105],[129.93560964700006,32.860488941000156],[129.98787790900005,32.841714061000154],[130.0031475420002,32.84537871600004],[129.98569111600014,32.86308717000013],[129.93122442100017,32.92889427000013],[129.92972526500003,32.957641312000035],[129.93918371700013,32.97232342400018],[129.94760175900015,32.995062567],[129.94562264200025,33.01575771400012],[129.91208162100006,33.03650814800007],[129.8814436660001,33.062762999000185],[129.85301131300005,33.05416733900013],[129.8340697390001,33.04313491700019],[129.82385938500013,33.043118812],[129.82235552400002,33.06267999000006],[129.79751505900006,33.07730904400016],[129.78658933900024,33.07056414200004],[129.7749518400002,33.058313960000035],[129.76109609900007,33.05706266500006],[129.74647953500002,33.06559011900008],[129.74244225400005,33.07636139500009],[129.733225585,33.10163252100007],[129.73906641500005,33.101034589000065],[129.74919681100005,33.098130601000044],[129.74558543700002,33.1163347600001],[129.74628823800012,33.12489568800011],[129.7601448570001,33.12981531600012],[129.75867661200007,33.13894149100018],[129.74773003700003,33.13952432900008],[129.72852623800023,33.12230052300005],[129.7236446410001,33.13277525000014],[129.7214375570001,33.145572956000144],[129.72285634600004,33.15840396900016],[129.709764185,33.16257034400009],[129.71216881600003,33.141058661000116],[129.70801842500006,33.119208075000174],[129.70411217500012,33.11180247599999],[129.696862257,33.114265208000106],[129.68074700600008,33.11487864500005],[129.67348960600006,33.10386878300001],[129.66651451900012,33.10126373900012],[129.66233194300017,33.126511172],[129.6836043630002,33.13104889500012],[129.68702233200023,33.142238674000126],[129.68327884200016,33.1523298200001],[129.67432701900006,33.16022370000017],[129.66325931100008,33.16600169500005],[129.65284264400023,33.17015208500008],[129.65609785199996,33.17894114800005],[129.65609785199996,33.184881903000175],[129.65267988399998,33.19025299700003],[129.64551842500023,33.19745514500006],[129.63803144599999,33.19277578300013],[129.6281030610002,33.19179922100007],[129.61744225400005,33.19464752800012],[129.60010826900017,33.20831940300015],[129.59009850400017,33.21112702],[129.5641382170002,33.21112702],[129.55214434600018,33.22583873400011],[129.56334175499998,33.25549040800017],[129.56534239400017,33.27206736000012],[129.5738202470002,33.27683511400009],[129.58091237300002,33.2750844130001],[129.5914984900002,33.28341015900009],[129.58934295200018,33.28991462600014],[129.584325775,33.301145664],[129.57146659700018,33.320639601000025],[129.57628043000014,33.34789650300009],[129.5804127600001,33.37100726900003],[129.5924152790001,33.38111521000015],[129.6206160820001,33.35927969],[129.64437910200004,33.36237213700009],[129.6731846810001,33.39853911700011],[129.67960253200013,33.38967253400013],[129.6768734760001,33.36241888800005],[129.7010078850001,33.35300693100005],[129.7441637460001,33.36431425700012],[129.8074650400001,33.34813060099999],[129.8145451180002,33.331244208],[129.814707879,33.33087799700009],[129.8198348320001,33.30475495000003],[129.82715905000012,33.29389069200015],[129.83790123800023,33.28538646000011],[129.85157311300006,33.28001536700005],[129.84799238399998,33.29340241100006],[129.84132811800018,33.31597731400008],[129.846295401,33.34796460600005],[129.8590081340001,33.367514084],[129.87102535699998,33.378177884000124],[129.86186331800013,33.390046186000134],[129.8686629570001,33.39744700700008],[129.816392187,33.4261020310001],[129.79688561300023,33.44448476800009],[129.78725722300024,33.45451903900006],[129.79717159900005,33.46758179600015],[129.80424474499998,33.481823058000124],[129.81844004700005,33.48421177600015],[129.8354598320001,33.46637604400003],[129.84131920700023,33.45441315300009],[129.84888756600017,33.44245026200015],[129.86207116000006,33.43699778900013],[129.8713485040001,33.442938544000135],[129.866872592,33.45673248900006],[129.84395138900007,33.48121705400017],[129.83683473900007,33.51325412100006],[129.85457924400012,33.53285385400012],[129.85318715600013,33.55250171100006],[129.86878891900002,33.53939995000006],[129.88583138300007,33.53584022100013],[129.910059486,33.547204999000044],[129.942149285,33.53168366100011],[129.96127363399998,33.512762762000094],[129.9569968010001,33.502782411000155],[129.94554470200003,33.49085512700013],[129.94120890100012,33.47953658700011],[129.95333126000017,33.47365559600017],[129.96264789400018,33.48260727800009],[129.96690162200014,33.472528834000016],[129.966868876,33.46302701300014],[129.97538907600003,33.45414314300014],[129.98894602800024,33.44885137800016],[130.016856316,33.44578685099999],[130.02881920700023,33.45066966400016],[130.0402124360002,33.461249091000106],[130.0446256160002,33.48574090400011],[130.0552943830002,33.495225676000175],[130.08597211100007,33.50653186400014],[130.10384486200022,33.51190524500011],[130.11526180200022,33.50895078600017],[130.12598717500023,33.51618073100009],[130.12989342500023,33.51898834800015],[130.14275149800008,33.520493882000025],[130.15642337300017,33.52537669500008],[130.16797936300023,33.534084377000156],[130.17416425900004,33.546861070000105],[130.16187584700006,33.54661692900005],[130.12989342500023,33.54002513199999],[130.12037194100017,33.54315827000006],[130.11793053500006,33.556830145],[130.10914147200006,33.55988190300009],[130.09693444100017,33.56171295800006],[130.092051629,33.566473700000145],[130.09302819100017,33.57343170800005],[130.09848066500004,33.581691799000126],[130.10914147200006,33.589748440000065],[130.11939537900017,33.59125397300012],[130.12916100400005,33.59125397300012],[130.13941491000003,33.59467194200012],[130.156663622,33.60650551500011],[130.15383933900003,33.61894298100016],[130.15954752700023,33.62959605400008],[130.17074629000004,33.62885163000011],[130.18189537900005,33.62905508000007],[130.19068444100017,33.63031647300009],[130.1977645190002,33.63361237200003],[130.20476321700002,33.63971588700012],[130.20801124200003,33.66507643700014],[130.22055097700016,33.65973541900017],[130.23170006600012,33.65330638200008],[130.2365014980002,33.64423248900006],[130.2271562330001,33.6348435390001],[130.23138438300006,33.61884615200013],[130.24537194100006,33.61176178600009],[130.25147545700023,33.60797760600015],[130.27192137300017,33.61166814100015],[130.27544953700007,33.60336765000001],[130.26543167800006,33.58857951500009],[130.27324374700018,33.58264295600004],[130.28541100400017,33.57697174700003],[130.29029381600006,33.57420482000008],[130.29529753400007,33.57904258200013],[130.30152428500003,33.579657294000114],[130.30543053500006,33.584947007],[130.315307038,33.59736182000002],[130.33026873200018,33.59791994000001],[130.3580496240002,33.5972586000001],[130.37303995000016,33.603144833000144],[130.39086562400016,33.60487402200012],[130.3994783520001,33.61611050099999],[130.4024076850001,33.63092078800018],[130.40750100800008,33.650468484],[130.403260381,33.65818688100002],[130.39869225400005,33.669134833],[130.37924238400015,33.659247137000094],[130.36158287900005,33.64622630400011],[130.348971888,33.64113020500015],[130.33616833300016,33.647677552000104],[130.32478674000012,33.65303453300014],[130.31839397600018,33.65838070800008],[130.30698072000015,33.65544060500018],[130.29490003900005,33.66435087500004],[130.28926262000007,33.68154450200013],[130.29428057700014,33.6892394070001],[130.30496604600012,33.68744291200012],[130.31061090100005,33.67261755300014],[130.32412225900012,33.664887418000134],[130.34549789700012,33.66247159000007],[130.38648522200018,33.67723216400013],[130.40202884200008,33.68939850500011],[130.415293816,33.702826239],[130.42872155000012,33.71369049700009],[130.44459069100006,33.71820709800015],[130.4521130860002,33.72797385299999],[130.4676738440002,33.743563601000105],[130.46998655100003,33.762869178000145],[130.46675959500013,33.780352986000096],[130.45570365100016,33.78223217800014],[130.44800866000006,33.78994375200013],[130.44955488399998,33.8022321640001],[130.45435631600017,33.80768463700004],[130.4620874360002,33.811183986000124],[130.47217858200023,33.817531643000066],[130.47779381600006,33.825140692],[130.48894290500007,33.85537344],[130.49708092500006,33.84813060099999],[130.50757897200006,33.849066473000065],[130.53052819100006,33.86155833500008],[130.53907311300017,33.869452216000134],[130.54232832100004,33.87596263200014],[130.54818769600013,33.88076406500012],[130.56470787900005,33.88328685100005],[130.61207116000017,33.879787502000156],[130.633067254,33.882473049000126],[130.65406334700006,33.896307684000035],[130.68441816500004,33.93423086100016],[130.69239342500006,33.937323309000035],[130.7052514980002,33.938706773000106],[130.71705162900017,33.93789297100001],[130.73150483800012,33.93184873400004],[130.75604891900016,33.943681113000125],[130.79049451200004,33.94441130800014],[130.82822790400004,33.93958513800014],[130.8213388820001,33.9202871370001],[130.83586868700016,33.925729009000136],[130.8614234190001,33.92556771800012],[130.87119899500024,33.91351609900012],[130.88085281300005,33.89593952100013],[130.89698326900023,33.88930898600013],[130.9135848320001,33.89118073100012],[130.926036004,33.8990746110001],[130.94141686300023,33.91681549700009],[130.94947136400017,33.93819283900014],[130.9765672460001,33.95736693000005],[131.00714759400014,33.96605493200009],[131.01868565800012,33.95626209700013],[131.01531009200008,33.93512604400014],[131.00635826900012,33.92291901200014],[131.00359134200008,33.91681549700009],[131.00416100400005,33.91107819200003],[130.99292883500007,33.89766466700014]]],[[[132.6202905610001,33.95380280200011],[132.60043379000004,33.94989655200011],[132.58912194100006,33.956447658000016],[132.58692467500023,33.96967194200015],[132.59636478000004,33.98094310100005],[132.60645592500012,33.98920319200012],[132.61378014400023,33.994045315],[132.61793053500017,33.99567291900003],[132.62452233200023,33.99909088700003],[132.6364038420002,34.00828685100011],[132.64136803500006,34.01406484600007],[132.64389082100013,34.011419989],[132.64429772200018,34.00088125200012],[132.64275149800014,33.98993561400005],[132.64096113400015,33.98395416900014],[132.63697350400017,33.97923411700005],[132.635020379,33.974839585000055],[132.63445071700002,33.96482982000008],[132.6202905610001,33.95380280200011]]],[[[139.53451582099996,34.037543036000145],[139.50611412900017,34.03587474200013],[139.48707116000017,34.060777085000076],[139.49439537900017,34.09275950700008],[139.52344811300014,34.11237213700004],[139.55632571700008,34.11347077000006],[139.57504316500004,34.09003327],[139.56128991,34.05809153900019],[139.53451582099996,34.037543036000145]]],[[[132.5494897800002,34.12148672100004],[132.55152428500006,34.108587958],[132.5776473320001,34.11888255400011],[132.58057701900012,34.09983958500011],[132.5698348320001,34.07587311400009],[132.55518639400006,34.07135651200012],[132.53223717500012,34.08209870000003],[132.47803795700023,34.08047109600001],[132.4553328790001,34.08812083500014],[132.4739689460001,34.105210679],[132.49732506600017,34.11713288000011],[132.51002037900005,34.13182200700011],[132.49683678500017,34.15704987200009],[132.50660241000006,34.16779205900009],[132.51929772200018,34.174383856000176],[132.53248131600006,34.177313544000086],[132.54330488400015,34.17670319200015],[132.55152428500006,34.17064036700005],[132.5490014980002,34.16632721600014],[132.54786217500006,34.161688544000114],[132.54509524800014,34.15814850500014],[132.5378524100001,34.15704987200009],[132.54623457100016,34.14496491100009],[132.5490014980002,34.13336823100015],[132.5494897800002,34.12148672100004]]],[[[133.08301842500023,34.175034898000135],[133.09351647200012,34.17430247599999],[133.0991317070001,34.1751976580001],[133.1017358730002,34.17096588700014],[133.0944116550002,34.16038646000011],[133.0451766290001,34.118394273000135],[133.02784264400012,34.11155833500011],[133.0171004570001,34.11884186400012],[133.01685631600006,34.136297919000086],[133.0200301440001,34.1496442730001],[133.025645379,34.1544457050001],[133.03174889400012,34.15412018400015],[133.03679446700002,34.153265692000055],[133.03394616000017,34.16136302299999],[133.0262150400001,34.17617422100007],[133.033050977,34.189398505],[133.055430535,34.19354889500015],[133.07154381600017,34.18805573100011],[133.07667076900012,34.18065013200011],[133.08301842500023,34.175034898000135]]],[[[132.76140384200008,34.17715078300013],[132.75611412900017,34.16746653900016],[132.74740644599999,34.162543036000116],[132.740000847,34.15989817900014],[132.73755944100017,34.16160716400013],[132.73731530000023,34.16840241100006],[132.73161868600008,34.17133209800009],[132.72364342500012,34.17080312700001],[132.69792728000007,34.18134186400006],[132.68897545700023,34.189886786],[132.695160352,34.20014069200012],[132.70899498800011,34.203314520000085],[132.72885175899998,34.19879791900003],[132.73853600400017,34.196966864000146],[132.75505618600002,34.18911367400007],[132.76140384200008,34.17715078300013]]],[[[132.93230228000013,34.274847723000114],[132.9284774100001,34.25193919500013],[132.91911868600008,34.232896226000136],[132.91675866,34.221869208],[132.9057723320002,34.21308014500012],[132.883067254,34.208644924000154],[132.86312910200004,34.20848216400019],[132.84994550900007,34.21515534100014],[132.84302819100017,34.22842031500006],[132.84644616000017,34.24022044500005],[132.85401451900023,34.24502187700012],[132.85718834700018,34.24583567900014],[132.88599694100003,34.25702545800006],[132.89714603000007,34.25674062700001],[132.90821373800011,34.262884833],[132.92115319100017,34.27732982000005],[132.9284774100001,34.28400299700011],[132.93230228000013,34.274847723000114]]],[[[133.05176842500018,34.2223167990001],[133.0348413420002,34.207342841000134],[132.99947548700018,34.20837728800002],[132.96387780000012,34.191880601000136],[132.95484459700018,34.19818756700006],[132.96290123800023,34.21845123900009],[132.969493035,34.22304922100001],[132.98585045700023,34.22695547100001],[132.99089603000004,34.23212311400012],[132.99170983200005,34.24225495000017],[132.98731530000006,34.248846747000144],[132.97934004000004,34.25218333500008],[132.96973717500023,34.252630927000084],[132.98878014400023,34.27301666900014],[133.01002037900005,34.29124583500014],[133.0300399100001,34.295314846000096],[133.0449324880002,34.273098049000126],[133.0556746750002,34.24237702000014],[133.05176842500018,34.2223167990001]]],[[[132.29590905000006,34.24323151200003],[132.27930748800023,34.238348700000174],[132.26791425900015,34.24445221600014],[132.26726321700014,34.253607489000146],[132.28663170700023,34.279120184000035],[132.2988387380001,34.292222398000106],[132.31446373800011,34.30044179900001],[132.32862389400012,34.30621979400017],[132.33838951900023,34.304429429],[132.34424889400012,34.295640367000104],[132.345469597,34.286566473000036],[132.34498131600006,34.28196849200016],[132.32553144600004,34.26471588700014],[132.29590905000006,34.24323151200003]]],[[[129.22405260199997,34.29344308800002],[129.2306722920001,34.29336287400007],[129.23871754000007,34.299287051000036],[129.2482202480002,34.30044179900001],[129.26204317900013,34.30776139300018],[129.27528831000006,34.307596814000064],[129.27078723900007,34.31532030700005],[129.26892495000018,34.322464245000056],[129.2801969870001,34.32287172800003],[129.28938532900023,34.31782388700016],[129.30246202400022,34.30778735000008],[129.30143578800013,34.28809728200012],[129.31252838900016,34.279756376000094],[129.3167839,34.294468719000164],[129.34258315799997,34.293051839000086],[129.34710276200022,34.28697774700014],[129.34296047100023,34.278277529000135],[129.3256099060002,34.27138467800002],[129.31807550400006,34.258349633000094],[129.32105260400024,34.240796492000115],[129.3248032170001,34.2292526240001],[129.30938369900005,34.21905214800016],[129.2974639830002,34.21865848400007],[129.29802122700002,34.21317660300009],[129.30257932300003,34.20928496000006],[129.2997137360002,34.19782318000004],[129.29809006700023,34.18196436600006],[129.29721196100004,34.170476062000134],[129.29449413700016,34.16667814600014],[129.2878482850001,34.16512018200011],[129.28373507900008,34.15750473300007],[129.28351905200023,34.14600476600004],[129.2765874400002,34.129111206000104],[129.2645831670002,34.123786830000185],[129.26242352800014,34.114496337000034],[129.25109020100015,34.10757029000011],[129.24829683900023,34.09992685800016],[129.2358575110002,34.10076336000019],[129.23180011400015,34.094814056000146],[129.22042147100015,34.088877923000084],[129.21606240500014,34.09833929200006],[129.2107307100001,34.09996089100004],[129.19830716400023,34.11099165600002],[129.19030802600005,34.1148107420001],[129.1776290280002,34.10892999900007],[129.17163425900006,34.10680681200007],[129.17035364400024,34.1468156830001],[129.17880296200005,34.16976520200002],[129.175880289,34.19550913500014],[129.1804997080002,34.22721701300016],[129.18925958300005,34.234227385000125],[129.18882185600003,34.249552909000116],[129.195885,34.27299251300009],[129.1985345410002,34.31622808400011],[129.20736082700014,34.32927727400015],[129.2252449850001,34.32740336900015],[129.2284614390002,34.32078103500005],[129.22435607200006,34.31261085300004],[129.22405260199997,34.29344308800002]]],[[[134.1616317070001,34.36249420800014],[134.1616317070001,34.33490631700012],[134.16627037900003,34.32485586100016],[134.18262780000023,34.32094961100016],[134.19044030000023,34.325384833000115],[134.212168816,34.34723541900017],[134.21680748800023,34.35504791900017],[134.2378035820001,34.34080638200005],[134.26042728000007,34.334418036000145],[134.27125084700006,34.32306549700017],[134.25782311300023,34.29417552300005],[134.29688561300011,34.27529531500012],[134.30958092500006,34.273098049000126],[134.32178795700023,34.2689476580001],[134.343516472,34.25063711100013],[134.35767662900005,34.24640534100011],[134.38412519600004,34.250067450000145],[134.39665774800014,34.249457098],[134.40170332100016,34.24274323100015],[134.4057723320001,34.234442450000174],[134.41570071700014,34.22418854400014],[134.43976701100007,34.20834943300012],[134.46862330400003,34.20746014400008],[134.49524256800012,34.224235342000114],[134.56088300900004,34.22142161700019],[134.5817163420002,34.229641018000095],[134.5942488940001,34.23212311400012],[134.60714479300023,34.25084548800014],[134.6110936680001,34.23941424300013],[134.60048233600017,34.22819423200012],[134.59404424800002,34.21381249700015],[134.61034936899995,34.216027454000184],[134.6278955280002,34.23308190400003],[134.64687145600018,34.23925245900007],[134.64070070400012,34.225355862000086],[134.6271762800002,34.20967378800019],[134.62574786500008,34.20101414400009],[134.6254044140001,34.193466909],[134.62720787900017,34.187933661000145],[134.6077580090001,34.18431224200016],[134.6191512380002,34.182074286],[134.62826582100004,34.17792389500006],[134.64208874500005,34.179263295000126],[134.63430226299997,34.165932268000134],[134.62369552699997,34.15077192300005],[134.62046262100003,34.14025293000012],[134.6227319670002,34.13446686400012],[134.6051873790001,34.110776919000116],[134.60458482500005,34.084834391000086],[134.6077580090001,34.067613022999986],[134.60181725400003,34.06370677299999],[134.59522545700005,34.045965887000094],[134.5942488940001,34.03974030200014],[134.59457441500004,34.02977122600005],[134.5997827480002,34.00946686400014],[134.60496636400003,34.001024089000126],[134.61163713300007,33.997020270000135],[134.6242507530001,33.997581129000096],[134.62659146500008,34.008139616],[134.63701600000016,34.01066622400016],[134.65092896999997,33.98594078100002],[134.66291603100015,33.968868609000126],[134.6959625000001,33.95189325700012],[134.690231657,33.94239734900013],[134.70257054000015,33.93726674100016],[134.7022308100002,33.92096530500008],[134.70289147200006,33.90623607000013],[134.69071417600006,33.895733504000034],[134.68677819100017,33.88621653900015],[134.67351321700008,33.88165924700003],[134.66236412900003,33.875881252000156],[134.64625084700018,33.85309479400002],[134.6608179050002,33.846380927],[134.71705162900017,33.84796784100002],[134.71705162900017,33.841701565000065],[134.708262566,33.84056224200013],[134.69825280000023,33.83624909100003],[134.68978925899998,33.83490631700014],[134.68978925899998,33.82807038000011],[134.72203124899997,33.83407324800014],[134.74004555000013,33.840282578000156],[134.75123131600014,33.83490631700014],[134.73230385400015,33.825951916000164],[134.70204863100005,33.813676891000156],[134.66465403400016,33.79848707600003],[134.65186608200005,33.78644440300015],[134.61679986200002,33.7826019970001],[134.6077580090001,33.76601797100009],[134.5793773950002,33.76417006200013],[134.57066101500013,33.73644897800001],[134.54637791100006,33.732502102000026],[134.5384402570002,33.71685772500014],[134.4573003920002,33.67092600800008],[134.4040223980002,33.65447756000016],[134.37617453800024,33.63565700800011],[134.388621681,33.62363408100008],[134.36376953800007,33.60075538900007],[134.360524174,33.58870858700002],[134.35296691800008,33.581630858000054],[134.33945285300013,33.57706668000016],[134.3262604810001,33.58012784400013],[134.31234801500014,33.57250647400015],[134.315460495,33.55513788700013],[134.31370106699998,33.543079177],[134.29671179400012,33.53136344700008],[134.27320508500011,33.50800352400013],[134.24463360500025,33.46075022600005],[134.21452884200008,33.37661367400001],[134.20777428500006,33.33909739799999],[134.19849694100017,33.31028880400005],[134.19629967500012,33.296779690000065],[134.1911996260001,33.2712576250001],[134.1902551310001,33.24832929400016],[134.17652712200007,33.236127821000096],[134.15796959700018,33.26972077000012],[134.1417641420002,33.29179326500015],[134.12750724600005,33.289525482],[134.10622434500013,33.294332361],[134.10796042300015,33.31492348200002],[134.07997292100018,33.339048073000086],[134.04004967500023,33.38410065300015],[134.02553646100014,33.41540034500015],[133.99662190200004,33.42456538000006],[133.96876061300023,33.43569570500013],[133.94214849600021,33.458879104000125],[133.92520516600015,33.49369326100013],[133.85490166900016,33.50009453000014],[133.7630521980001,33.5197844070001],[133.73939679000003,33.53750687899999],[133.6721478200001,33.5289023370001],[133.60773318400018,33.51582468000014],[133.58930516600017,33.50193355100008],[133.54686167900016,33.48611134800002],[133.46590938600013,33.4543240980001],[133.4503686860001,33.43085358300014],[133.4550887380002,33.414699611000074],[133.43970787900014,33.40167877800009],[133.41480553500003,33.39305247599999],[133.39161217500012,33.38983795800014],[133.37549889400023,33.38939036700005],[133.36500084700018,33.38760000200015],[133.35661868600013,33.38328685100005],[133.3466903000001,33.375555731000055],[133.32813561300011,33.35346100500006],[133.32309004000007,33.351304429000045],[133.32601972699996,33.36880117400001],[133.3191024100001,33.37152741100009],[133.31234785200016,33.375555731000055],[133.292246941,33.364691473000065],[133.269379102,33.346869208000086],[133.25456790500002,33.326239325000145],[133.258474155,33.306708075000174],[133.25196373800023,33.29474518400006],[133.254649285,33.28652578300013],[133.2607528000001,33.27977122600011],[133.26465905000012,33.27252838700018],[133.265879754,33.26764557500012],[133.26970462300002,33.26422760600011],[133.27084394600016,33.259507554000024],[133.269379102,33.25234609600015],[133.2651473320001,33.24843984600007],[133.26050866000017,33.2457542990001],[133.258474155,33.24213288000011],[133.25326582100004,33.21906159100014],[133.24097741000017,33.20579661700013],[133.22689863400015,33.19440338700015],[133.2153396250002,33.18750351900009],[133.2179468110002,33.16583893400018],[133.2254337900001,33.15908437700013],[133.20976104100023,33.15104182500012],[133.20383583600008,33.16262210700002],[133.19014923300008,33.163316435000084],[133.16503341100022,33.137199555],[133.13238695400014,33.089029456],[133.10743612900004,33.06106870400005],[133.09711613400023,33.048111006000155],[133.09886699200015,33.032648240000086],[133.0977641770002,33.02346692000016],[133.08985436300023,33.019273179],[133.0746170880001,33.02873789200011],[133.05284768100003,33.03949864300013],[133.01825880900012,33.02402326700009],[133.00170220600003,32.98695675099999],[132.99441272100015,32.94899317700002],[133.0092879570001,32.903469143],[133.00245201900006,32.869330145],[132.9899053080001,32.86257609500011],[132.9610590350002,32.86410052600003],[132.9550992650002,32.85262854200012],[132.95789947100016,32.835425557000136],[132.95547713300002,32.81461873300013],[132.96973717500023,32.807074286],[132.97673587300002,32.795152085000055],[132.98487389400023,32.78709544500013],[133.0040796230002,32.77228424700014],[133.01734459700006,32.75787995000009],[133.02759850400017,32.739650783000016],[133.02800540500007,32.72064850500003],[133.00220787900003,32.71165599200019],[132.98438561300017,32.71963125200013],[132.97657311300006,32.724514065],[132.97136478000007,32.73167552300005],[132.96176191499995,32.75112539300015],[132.95679772200006,32.75861237200003],[132.93913821700002,32.77045319200009],[132.91504967500012,32.77798086100013],[132.89283287900005,32.77423737200011],[132.88111412900017,32.75238678600006],[132.87208092500023,32.768744208000086],[132.85840905000012,32.769598700000174],[132.8432723320001,32.760931708000086],[132.82960045700005,32.74872467700011],[132.8121850920002,32.740301825000145],[132.79151451900012,32.74066803600009],[132.7719832690001,32.746079820000105],[132.75757897200006,32.75238678600006],[132.72934003999998,32.77415599200013],[132.711400796,32.789525389000104],[132.6646431760001,32.77886830400011],[132.6276607680002,32.752093098],[132.61990336400007,32.772990306000125],[132.62337688200014,32.799495693000026],[132.64600159500014,32.825692004000175],[132.66300726000011,32.85680765600013],[132.69278518700006,32.88433009100005],[132.70516686400018,32.89716469000008],[132.70915774800008,32.9094098980001],[132.63990319100017,32.90892161700013],[132.62720787900005,32.90631745000003],[132.61841881600006,32.90688711100002],[132.57545006600012,32.93183014500012],[132.55892988400004,32.93675364799999],[132.57203209700015,32.92308177300005],[132.5529077480002,32.92487213700004],[132.53638756600003,32.93121979400017],[132.52418053500017,32.93024323100009],[132.51734459700006,32.9094098980001],[132.5234481130002,32.90688711100002],[132.53223717500012,32.89940013200014],[132.5378524100001,32.89581940300015],[132.52076256600006,32.889308986000074],[132.5041610040001,32.89166901200003],[132.49048912900017,32.90119049700003],[132.472272326,32.93367231200013],[132.49403946600003,32.94893138500014],[132.4829185580002,32.97050124400012],[132.49612784400003,32.98533214000004],[132.5014754570001,32.99323151200012],[132.48140843599998,33.023527538000124],[132.47149541200017,33.04068590400006],[132.4411372870001,33.043659348000126],[132.41970413100003,33.05192155800013],[132.39670036500016,33.016593804000095],[132.38240215600015,33.019779079000116],[132.4004464870002,33.04391394800017],[132.39688478500014,33.05800530900008],[132.40792239700025,33.0693293260001],[132.45183353000016,33.052883205000015],[132.47152754000015,33.05560944200009],[132.48316491000003,33.06769440300009],[132.46273847700007,33.06769440300009],[132.46876061300011,33.08234284100011],[132.46900475400005,33.09577057500009],[132.46273847700007,33.10545482000005],[132.44906660200013,33.10871002800009],[132.44906660200013,33.11489492400007],[132.47144616000017,33.113959052],[132.47584069100003,33.11489492400007],[132.48015384200005,33.118312893000066],[132.48755944100006,33.12547435100011],[132.49008222700016,33.13275788000014],[132.47950280000012,33.13597239799999],[132.45020592500006,33.136664130000106],[132.44068444100017,33.14227936400012],[132.43539472700004,33.15582916900008],[132.43804361300025,33.16821834500006],[132.45860651700016,33.173705878000035],[132.4492466170001,33.18507532299999],[132.4381082460001,33.19139788900018],[132.42366068900012,33.19917609400009],[132.41538655700012,33.18927756600006],[132.39864748200014,33.187183802],[132.39467584800005,33.203894821000155],[132.420123834,33.20982423900013],[132.445493724,33.204965422],[132.4596588650002,33.204012318000096],[132.46120103900012,33.19140330900008],[132.47782146500018,33.181408297000175],[132.48570176400005,33.169153220000126],[132.50507728100015,33.18123508500004],[132.5026698830001,33.19873474700015],[132.51376684500016,33.21334291800012],[132.5361722930002,33.21756625000016],[132.54836358700018,33.22690294400006],[132.53682887000005,33.24258428900008],[132.5244922420002,33.24998236300014],[132.54139370700003,33.26255771700015],[132.52421284500005,33.263023330000024],[132.50770168700015,33.25790311900012],[132.502579812,33.26660913300016],[132.49182335100014,33.2707164940001],[132.4845705700001,33.276525918000075],[132.48473546100016,33.29084085900003],[132.50478834200024,33.30381085099999],[132.5222804430001,33.30762090800012],[132.52560976800012,33.31466423100015],[132.486803525,33.316068149000145],[132.42012139200008,33.30435563900012],[132.40122137500012,33.30938686700012],[132.3902743800002,33.31618808100002],[132.37867272200006,33.31948476800012],[132.38412519600016,33.33087799700009],[132.3913680350001,33.334865627000156],[132.40788821700008,33.33624909100014],[132.4155379570001,33.34145742400012],[132.41732832099996,33.34739817900005],[132.421153191,33.375555731000055],[132.4023543630002,33.36261627800003],[132.39063561300006,33.37498607],[132.39112389400023,33.39789459800006],[132.40805097700004,33.41657135600014],[132.40805097700004,33.42340729400017],[132.394379102,33.42340729400017],[132.398203972,33.43134186400012],[132.40414472700004,33.43764883000007],[132.41187584700006,33.441961981000176],[132.421153191,33.44448476800009],[132.38111412900017,33.466050523000106],[132.36296634200008,33.46808502800003],[132.3445962300002,33.46715465400014],[132.3337515950001,33.46244430800006],[132.32223273500003,33.45755532700012],[132.3078038900001,33.46428988300009],[132.27858602400013,33.44730071900004],[132.25360695600014,33.44070882600012],[132.2144021830002,33.42294673200017],[132.17973878400008,33.40698609900004],[132.14998490600018,33.389167102000144],[132.13943055100017,33.37397803600008],[132.13066048300007,33.36356636600014],[132.11413651800015,33.36415118300012],[132.10156774800024,33.37013383500006],[132.11029556700012,33.38672764300018],[132.07350789600017,33.36763167000005],[132.0254873910002,33.34490369600017],[132.01053892000007,33.348988639000126],[132.02963653000003,33.36524659100017],[132.05155469999997,33.37604022700016],[132.09431999299997,33.40848712800015],[132.135487597,33.42002259800016],[132.15324827599997,33.41542941400017],[132.16657605400002,33.42020372400013],[132.15708555000006,33.42884152800012],[132.15528002600016,33.43704614700011],[132.17133126100023,33.4456344340001],[132.199766627,33.4550101440001],[132.2218807500001,33.4540257770001],[132.2406846260002,33.46457605500014],[132.2646316510001,33.46407350200003],[132.29374587800018,33.485380231000086],[132.41236412900005,33.53497955900015],[132.42847741,33.54759349200013],[132.43539472700004,33.563666083000115],[132.44166100400017,33.572943427000055],[132.47046959700018,33.60211823100011],[132.47950280000012,33.60834381700006],[132.5006123410001,33.62499820900014],[132.60173587300017,33.66038646000011],[132.61848949800006,33.67428922700016],[132.645474593,33.68958766600004],[132.67660566499998,33.71564362200006],[132.69711347700004,33.75674062700013],[132.695567254,33.78644440300015],[132.69008267200016,33.81390538000015],[132.69898165800006,33.850384146000025],[132.70628330500008,33.877051785],[132.71237037200004,33.90454878000004],[132.75493687700012,33.910320249],[132.75748129400003,33.93494834400009],[132.77247155000012,33.955877997000144],[132.76986156700016,33.996270044000156],[132.79873386700004,34.01310423299999],[132.84718604500017,34.03996357900003],[132.86235909600006,34.055893542000135],[132.9191104300002,34.06840607300016],[132.92252062900016,34.08483910800011],[132.930338028,34.09437597000006],[132.92615829000025,34.11166809600005],[132.90620625300008,34.11316541800012],[132.89536372300017,34.11321435000018],[132.89749994100012,34.12271401800014],[132.91551131900022,34.120258787000026],[132.92877482399996,34.119874497000026],[132.94238361200004,34.14126203700012],[132.95403348500022,34.12539330900013],[132.9613228950001,34.12113403200006],[132.9663192070002,34.11432526200018],[132.97657311300006,34.108587958],[133.03184883800012,34.052734410000035],[133.06031334700018,33.99135976800012],[133.06919679500007,33.97422315400003],[133.07729439200003,33.95973272000005],[133.0866003050002,33.949313315],[133.1077633450001,33.94117284200014],[133.12701088800023,33.93329063900016],[133.14670395600004,33.931541102],[133.17329223100003,33.94058406500001],[133.20886842399997,33.947403314000056],[133.2436802240001,33.95625729500007],[133.24887447000006,33.974108531000134],[133.27904556000013,33.98327675900005],[133.29982343000017,33.98102486000006],[133.322607543,33.99055281000015],[133.34096681500014,33.98993913600019],[133.3599476840002,33.98270960000009],[133.41480553500003,33.98574453300012],[133.43824303500006,33.98187897300012],[133.48633873800011,33.96674225500011],[133.51099694100014,33.96523672100007],[133.53207441500004,33.970933335000055],[133.54859459700018,33.98094310100005],[133.56169681100008,33.99339427300007],[133.57252037900005,34.00617096600011],[133.58725019600016,34.02033112200002],[133.62086022200018,34.0455589860001],[133.63396243600002,34.060777085000076],[133.64128665500002,34.07916901200012],[133.64812259200008,34.1246605490001],[133.64600670700023,34.167385158000094],[133.64112389400006,34.184637762000094],[133.63298587300008,34.19830963700004],[133.62037194100017,34.21165599200004],[133.60401451900017,34.22337474200005],[133.58765709700006,34.23191966400016],[133.57227623800011,34.242173569999984],[133.55836022200006,34.25946686400009],[133.57935631600017,34.249416408000016],[133.60922285200016,34.23895905200014],[133.63754316500004,34.233587958000086],[133.65447024800017,34.23895905200014],[133.67261803500017,34.22313060099999],[133.70142662900005,34.231268622000115],[133.73194420700017,34.25096263200005],[133.754649285,34.270005601000044],[133.78199303500017,34.288275458000115],[133.84359785200002,34.31224192900008],[133.87419681100002,34.32831452000015],[133.88282311300023,34.33844635600012],[133.8906356130002,34.352199611000046],[133.89966881600006,34.364162502000156],[133.91211998800017,34.36933014500006],[133.92090905000012,34.37042877800012],[133.9370223320001,34.37506745000003],[133.94654381600017,34.376166083000086],[133.95622806100008,34.37396881700009],[133.97087649800005,34.36465078300013],[133.98902428500014,34.360785223000114],[134.00123131600006,34.35224030200011],[134.01197350400005,34.34882233300003],[134.02125084700012,34.34918854400002],[134.03687584700018,34.35468170800006],[134.04615319100006,34.35504791900017],[134.081309441,34.347723700000145],[134.08838951900017,34.35480377800003],[134.1007593110002,34.376166083000086],[134.11687259200008,34.360500393],[134.12281334700012,34.3666039080001],[134.1245223320001,34.38084544500002],[134.12745201900023,34.38979726800012],[134.14356530000012,34.39179108300006],[134.15300540500013,34.38572825700008],[134.15821373800011,34.37494538000006],[134.1616317070001,34.36249420800014]]],[[[133.70630944100017,34.354641018000066],[133.7031356130002,34.35175202000012],[133.69581139400012,34.35480377800003],[133.68848717500012,34.366156317],[133.69190514400012,34.37840403900016],[133.705332879,34.39179108300006],[133.70826256600006,34.39728424700008],[133.71566816500004,34.39614492400015],[133.724457227,34.38446686400006],[133.72584069100017,34.371405341000084],[133.720469597,34.363836981000034],[133.71290123800017,34.359442450000145],[133.70630944100017,34.354641018000066]]],[[[139.283457879,34.33685944200009],[139.26783287900005,34.32269928600005],[139.25367272200018,34.34137604400003],[139.25464928500017,34.353461005000135],[139.26539147200018,34.388617255],[139.270355665,34.39598216400019],[139.279551629,34.402777411000116],[139.29151451900023,34.41453685100002],[139.30095462300008,34.41791413000011],[139.30250084700018,34.39972565300003],[139.2963973320001,34.367865302],[139.283457879,34.33685944200009]]],[[[135.25705428500012,34.43577806100008],[135.22441622000022,34.41630428000015],[135.21054196500003,34.421905936000186],[135.20517916100005,34.43049087500013],[135.24097098900015,34.45464659500011],[135.25705428500012,34.43577806100008]]],[[[134.10287519600004,34.480943101000136],[134.08399498800006,34.459824937000015],[134.07618248800011,34.460760809000085],[134.06788170700008,34.46670156500012],[134.0670679050002,34.467027085000055],[134.04900149800008,34.47435130400005],[134.0394800140002,34.478298244000044],[134.03663170700023,34.48078034100017],[134.03834069100006,34.4833031270001],[134.0459904310001,34.48765696800008],[134.05486087300014,34.48883698100009],[134.07203209700006,34.49848053600009],[134.08342532600003,34.50071849200005],[134.0874129570001,34.49782949400013],[134.09538821700008,34.49197011900016],[134.10181725400017,34.4914411480001],[134.10450280000023,34.490261135000154],[134.10287519600004,34.480943101000136]]],[[[136.89120225700006,34.47970794400008],[136.88320429000007,34.475366090000094],[136.87753635300024,34.48317624300016],[136.8725989460001,34.49113933299999],[136.89196844200004,34.49669208000015],[136.89899152000018,34.50405336600012],[136.9089525420002,34.50236246700011],[136.90690636200011,34.49414952200003],[136.90247110600004,34.48606033400012],[136.89120225700006,34.47970794400008]]],[[[136.87398509000005,34.51341308800015],[136.85621599600017,34.51013930400008],[136.84912737600004,34.51503705200004],[136.86591662000004,34.521326624000054],[136.89017871600018,34.531200943000115],[136.8964736150001,34.53841118900003],[136.91005235100025,34.54010947400012],[136.90248620500014,34.53197415700005],[136.90317474600025,34.52501529900017],[136.88906349200008,34.52255264700007],[136.87398509000005,34.51341308800015]]],[[[134.374278191,34.51333242400012],[134.36890709700006,34.48436107000005],[134.34693444100006,34.43081289300012],[134.34213300900015,34.43968333500008],[134.332774285,34.444769598],[134.32016035200004,34.44647858300003],[134.30591881600006,34.445013739000146],[134.30591881600006,34.45123932500012],[134.32496178499997,34.453680731000034],[134.32960045700023,34.46238841400013],[134.32064863400004,34.46893952],[134.299082879,34.46491120000006],[134.28492272200018,34.452297268000066],[134.27418053500017,34.435003973000065],[134.2623804050002,34.42088450700014],[134.24439537900017,34.41771067900008],[134.24870853000007,34.453192450000145],[134.24317467500023,34.46385325699999],[134.22339928500006,34.47235748900012],[134.204844597,34.4715843770001],[134.18588300900004,34.46605052299999],[134.17017662900005,34.46548086100002],[134.16138756600017,34.47919342700014],[134.1717228520001,34.485907294000086],[134.1725366550002,34.49664948100009],[134.17107181100002,34.50893789300015],[134.175059441,34.520086981000176],[134.20378665500007,34.51243724200005],[134.22828209700018,34.51837799700017],[134.27125084700006,34.54067617400001],[134.28321373800006,34.54364655200011],[134.3190210300002,34.54682038],[134.35368899800008,34.55438873900012],[134.3673608730002,34.55426666900014],[134.36329186300023,34.54535553600011],[134.36573326900006,34.53628164300012],[134.37061608200023,34.525864976000136],[134.374278191,34.51333242400012]]],[[[134.91627037900017,34.33828359600015],[134.91861316500004,34.320394420000056],[134.92618311400022,34.308495078000036],[134.95045006600017,34.28733958500014],[134.95825406100008,34.27035550100014],[134.93798406600015,34.26275510800012],[134.9094703660002,34.25718023200007],[134.88490593700024,34.244481070000134],[134.85611812200014,34.23600730500006],[134.83385849900012,34.22661011400014],[134.80004952200014,34.20075373700003],[134.75187547300018,34.191955442],[134.7286771410002,34.19093934900006],[134.72686973700004,34.20997004200008],[134.7053787430002,34.217968398],[134.70216251400004,34.22119879000003],[134.71359584400014,34.2399700530001],[134.72388756600012,34.252630927000084],[134.68811432000004,34.243579891000095],[134.66651451900006,34.26552969000009],[134.65716913300017,34.28820431600009],[134.66963515700007,34.302065221000035],[134.6832595860001,34.328226407000145],[134.7051556380001,34.323168076000044],[134.720814407,34.329788749],[134.79895562900006,34.446793791000076],[134.82422936300006,34.46084219000009],[134.84253991000003,34.470282294000086],[134.85043379000004,34.47573476800012],[134.85645592500012,34.4833031270001],[134.86500084700006,34.500677802000055],[134.87134850400017,34.50958893400009],[134.88383089300012,34.52948869500001],[134.92246118600008,34.546082086000105],[134.9381101050001,34.550905797000084],[134.96306260100013,34.580816112000136],[134.98133299800023,34.60240240600017],[135.00268188700014,34.608423048000034],[135.0281681650001,34.59100983300005],[135.03012129000004,34.57884349200016],[135.0184132590001,34.56604837500011],[135.00327729100005,34.55157478100009],[134.99539969300017,34.53023319400016],[134.98414147200018,34.50576406500009],[134.95630086700012,34.48487725400012],[134.93254200200008,34.453482284000145],[134.90297317900016,34.419005547],[134.89722741000017,34.38149648600013],[134.895762566,34.37274811400006],[134.89893639400006,34.36082591400013],[134.8996748380001,34.3490357590001],[134.91627037900017,34.33828359600015]]],[[[129.4645605850001,34.70080530600002],[129.47066369700022,34.69268493700004],[129.4807235040001,34.683986721000124],[129.48775113000025,34.67639689],[129.4832778460002,34.66269661200003],[129.4775793690001,34.657035871000076],[129.46911995900018,34.652558845],[129.47814236700003,34.65072063800007],[129.48780182800007,34.64600565000002],[129.48827771500012,34.63567767100001],[129.48091280400004,34.61990957500008],[129.472422722,34.616766669000086],[129.46192467500023,34.62189362200011],[129.4526473320001,34.61945221600017],[129.46290123800011,34.60911692900008],[129.47820071700005,34.59711334800015],[129.47537364000013,34.58845104699999],[129.47310177600016,34.57933246000012],[129.46424106500004,34.55427396300014],[129.44608318900006,34.51477564],[129.40232637399998,34.48164673200007],[129.37947278100015,34.45262297300009],[129.3842879570001,34.424017645],[129.3618308670002,34.40548574800012],[129.35946395400018,34.390621507],[129.37550622400013,34.394416032],[129.39318101000006,34.410800218000084],[129.39442173700016,34.40333191200006],[129.388597794,34.38965888300014],[129.3843115320001,34.383416319],[129.38814520100007,34.36675509200007],[129.39958743600005,34.35504791900017],[129.40796864500024,34.35157990099999],[129.400755935,34.33792425400016],[129.38605282200004,34.331258264],[129.3791610040001,34.324652411],[129.36824161399997,34.30743171200008],[129.34383322200003,34.300314315000136],[129.32451188300004,34.304593338000146],[129.30546399500005,34.32487545400009],[129.3209047600001,34.333849042000125],[129.34506369500016,34.32724397800003],[129.34700270800013,34.35585198900016],[129.3345957140001,34.36059135700016],[129.31620389800017,34.342496496000095],[129.3051037470001,34.34320609200002],[129.30405895900017,34.362122712000044],[129.30493826400019,34.372424179000106],[129.30932224300003,34.38440191000011],[129.29738425500003,34.37710499100014],[129.28744395200025,34.36576828200005],[129.29339848800007,34.34907806600013],[129.28635873699994,34.34400826400003],[129.27199211700022,34.356219282],[129.24829130400022,34.35192546000009],[129.2289130230001,34.355601426000035],[129.23538380000008,34.368132348000174],[129.25972666300012,34.369552777000095],[129.27234911399998,34.37569660700014],[129.27375144500004,34.41293237800012],[129.2685686250002,34.43305128800016],[129.27708909300023,34.441527051000136],[129.28686405500017,34.443112446000114],[129.2916898660002,34.44075623400012],[129.29738949600008,34.44754637200016],[129.31086745200005,34.46051106800003],[129.30889545800002,34.46684104200004],[129.2933275930001,34.45332664000016],[129.2807342990002,34.45064666500009],[129.27604412399998,34.4621884940001],[129.28902402900005,34.48723729400008],[129.30493076700012,34.52028727200003],[129.32611919000024,34.53543877000003],[129.32554584200014,34.542326534000054],[129.308456188,34.56038743000006],[129.2909447430001,34.55607171200002],[129.2891069140002,34.56986674800011],[129.30335920299999,34.58687697000014],[129.30784427,34.6034634950001],[129.32330009600005,34.64807215700013],[129.33656962500018,34.64841143800014],[129.36096825500013,34.64800679100013],[129.37833743400006,34.64485176400005],[129.39037028500005,34.65447130000017],[129.40966199400003,34.675172826000065],[129.42574516500017,34.677801186000025],[129.418228469,34.685392005000054],[129.423304881,34.695070890000025],[129.4386154240001,34.69371319700004],[129.45061995200004,34.70100212400014],[129.4645605850001,34.70080530600002]]],[[[139.4537866550002,34.678941148000106],[139.44271894600016,34.67670319200012],[139.421641472,34.677191473000036],[139.35935284600006,34.70229865300003],[139.35119548300017,34.720033634000075],[139.35201437000012,34.76733961600017],[139.35646512200017,34.79722949200014],[139.40064537900017,34.78864166900003],[139.418223504,34.78082916900002],[139.4377547540001,34.771918036],[139.45004316500015,34.756781317],[139.4567163420002,34.737127997000144],[139.4585067070001,34.71503327000006],[139.45785566500015,34.68988678600009],[139.4537866550002,34.678941148000106]]],[[[136.8150024280001,34.83991708900011],[136.80773059200024,34.83919645500008],[136.79805969000014,34.876400640000114],[136.81096899900004,34.876305527000156],[136.82350283300005,34.86203744100008],[136.82595147000004,34.84907610000012],[136.8147008650001,34.84630678400005],[136.8150024280001,34.83991708900011]]],[[[133.06666100400005,36.006537177000084],[133.07911217500023,35.993638414000074],[133.06495201900012,35.99506256700012],[133.02784264400012,35.993638414000074],[133.02133222700004,35.99575429900007],[133.01612389400012,36.000921942000055],[133.01295006600006,36.00779857],[133.01246178500017,36.014797268000066],[133.02418053500006,36.02558014500006],[133.0451766290001,36.02000560100005],[133.06666100400005,36.006537177000084]]],[[[133.09945722700002,36.03750234600001],[133.07911217500023,36.02094147300012],[133.07862389400023,36.04999420800011],[133.08130944100006,36.08014557500003],[133.09351647200012,36.102769273000106],[133.12134850400017,36.10976797100009],[133.13542728000016,36.08954498900006],[133.12322024800002,36.062933661000116],[133.09945722700002,36.03750234600001]]],[[[133.11361738400015,36.11351146000011],[133.09327233200017,36.10976797100009],[133.09058678500017,36.11786530200011],[133.09327233200017,36.123358466000056],[133.11361738400015,36.11351146000011]]],[[[133.03874759200008,36.13080475500011],[133.05665123800023,36.124945380000085],[133.07422936300006,36.127915757],[133.08757571700005,36.12702057500009],[133.08814537900003,36.11827220300002],[133.08716881600017,36.11078522300015],[133.07276451900012,36.107855536000116],[133.05836022200006,36.10317617400001],[133.05176842500018,36.08551666900008],[133.05396569100006,36.074896552000055],[133.05697675900015,36.06769440300012],[133.05583743600002,36.06175364799999],[133.0449324880002,36.05512116100011],[133.03598066500004,36.053900458000115],[133.0270288420002,36.056301174000154],[133.01978600400014,36.060614325000145],[133.0171004570001,36.065008856000034],[133.01677493600008,36.07477448100017],[133.01490319100012,36.07977936400012],[133.01002037900005,36.0815290390001],[133.00025475400017,36.08177317900005],[132.99040774800008,36.077053127000156],[132.99317467500012,36.066351630000106],[133.0040796230002,36.048285223],[132.99496504000004,36.03823476800012],[132.98145592500023,36.03986237200014],[132.96550540500002,36.04913971600011],[132.94939212300008,36.06195709800015],[132.969493035,36.0820173200001],[133.01449628999998,36.11098867400001],[133.03874759200008,36.13080475500011]]],[[[133.37924238399995,36.20823802299999],[133.37338300900015,36.197699286000116],[133.36019941499998,36.19163646000014],[133.35254967500023,36.203517971000096],[133.34351647200006,36.204331773000014],[133.3343205090001,36.198879299000154],[133.32601972699996,36.19163646000014],[133.33765709700012,36.184393622000115],[133.34131920700017,36.17503489799999],[133.33741295700017,36.16559479400014],[133.32601972699996,36.158148505],[133.31836998800006,36.15843333500011],[133.2783309250002,36.164984442],[133.25635826900012,36.164984442],[133.24976647200006,36.16828034100014],[133.20264733200023,36.202297268000066],[133.19263756600017,36.20595937700004],[133.1877547540001,36.21613190300015],[133.19629967500012,36.27798086100016],[133.20948326900017,36.29718659100011],[133.29200280000015,36.34247467700011],[133.2928166020001,36.33055247599999],[133.30079186300023,36.32587311400006],[133.31120853000002,36.32428620000003],[133.32016035200016,36.321844794000114],[133.32349694100014,36.318345445000105],[133.32650800899998,36.30939362200009],[133.32943769600004,36.30491771000011],[133.33570397200006,36.30093008000013],[133.34864342500023,36.297593492000104],[133.3540145190001,36.294663804],[133.35938561300006,36.2885602890001],[133.36361738399995,36.27928294500005],[133.367035352,36.27423737200002],[133.38184655000006,36.25771719000015],[133.37924238399995,36.20823802299999]]],[[[137.0452580090001,37.145086981000176],[137.04444420700005,37.13670482000013],[137.04590905000012,37.128119208000115],[137.0387475920002,37.12010325700008],[137.02222741,37.114447333000086],[137.00375410200007,37.11347077],[136.9858504570002,37.10830312700009],[136.97266686300006,37.10162995000006],[136.96322675900015,37.10154857000007],[136.94727623800023,37.09699127800012],[136.94369550899998,37.09735748900012],[136.93482506600006,37.10814036700013],[136.9155379570001,37.12775299700009],[136.90528405000018,37.14362213700012],[136.91146894600004,37.150946356000034],[136.91960696700005,37.14744700700014],[136.92351321700008,37.14008209800015],[136.92839603,37.13776276200018],[136.93433678500006,37.14179108300014],[136.94125410200016,37.14443594000012],[136.95020592500006,37.144761460000055],[136.95932050900015,37.147365627000156],[136.96664472700016,37.15180084800012],[136.9736434250002,37.153265692],[136.9812117850001,37.15131256700015],[136.98902428500017,37.14533112200003],[136.99903405000006,37.13947174700009],[137.00855553500017,37.140611070000105],[137.0162866550002,37.14484284100014],[137.02719160200016,37.15521881700015],[137.04175866000014,37.159735419000086],[137.048106316,37.152289130000106],[137.0452580090001,37.145086981000176]]],[[[138.43751061300003,38.063788153000175],[138.44320722700016,38.051947333000115],[138.45150800900015,38.052435614],[138.45923912900003,38.06989166900014],[138.4946395190002,38.066961981000034],[138.54078209700018,38.076727606000176],[138.57520592500012,38.074286200000145],[138.57520592500012,38.03510163000011],[138.56592858200017,38.01634349200005],[138.52442467500023,37.96344635600009],[138.51319420700014,37.944810289000095],[138.50049889400012,37.90668366100011],[138.48650149800002,37.891750393000095],[138.370371941,37.82876211100016],[138.26514733200005,37.7983259140001],[138.24317467500023,37.796128648000106],[138.2325952480002,37.79767487200014],[138.22266686300011,37.8022321640001],[138.21509850400005,37.80955638200011],[138.21216881600006,37.81940338700004],[138.21550540500004,37.83026764500012],[138.223887566,37.83417389500003],[138.27214603000007,37.842230536000145],[138.28321373800006,37.84833405200014],[138.28785241,37.861029364],[138.28785241,37.90599192899999],[138.29859459699998,37.92243073100009],[138.33082116000017,37.95189036700016],[138.34253991000006,37.96686432500012],[138.3147892590001,37.997463283000044],[138.24789472700016,37.978501695000105],[138.23267662900017,38.00775788000014],[138.2325952480002,38.03131745000009],[138.23560631600012,38.05215078300007],[138.24219811300006,38.071478583],[138.25310306100005,38.090318101000136],[138.29468834700003,38.13617584800012],[138.31006920700005,38.16811758000013],[138.32911217500023,38.18195221600003],[138.34815514400023,38.192816473000036],[138.35670006600017,38.20359935100011],[138.40186608200023,38.24119700700011],[138.42855879000015,38.256293036000116],[138.4694116550002,38.313177802000055],[138.4780379570001,38.31956614799999],[138.48951256600003,38.322455145000035],[138.51417076900023,38.32306549700017],[138.52003014400006,38.31850820500013],[138.51929772200006,38.30744049700009],[138.50709069100014,38.24144114800008],[138.48658287900005,38.18130117400007],[138.44385826900012,38.102240302000084],[138.43816165500002,38.0834821640001],[138.43751061300003,38.063788153000175]]],[[[139.34815514400023,41.524237372000144],[139.35572350400017,41.52216217700011],[139.372894727,41.52216217700011],[139.37826582100016,41.519232489],[139.38184655000023,41.513576565],[139.37427819100017,41.504339911000145],[139.34555097700004,41.493353583],[139.34083092500012,41.49750397300012],[139.33643639400023,41.51113515800007],[139.33643639400023,41.51850006700006],[139.34034264400023,41.523830471000124],[139.34815514400023,41.524237372000144]]],[[[141.27609568200003,41.35319552800003],[141.31791884200007,41.353046706000086],[141.34881101400018,41.360219794],[141.38216087800018,41.37259958300017],[141.4103530670001,41.39038834600002],[141.43133162600006,41.406088314],[141.44819724900003,41.4184042350001],[141.46057858100008,41.43022317800005],[141.46386574599998,41.42602266500002],[141.466920994,41.41932788600015],[141.46043107500012,41.41335629300015],[141.4634416060001,41.40381685400008],[141.46184933500004,41.40048371600007],[141.45381379800008,41.39635130100011],[141.455595128,41.39196423800003],[141.45988422000008,41.38796292700009],[141.45746549300023,41.37747296200014],[141.44528424100005,41.3661840970001],[141.43988362800002,41.35117566100016],[141.43191811600005,41.33002057500012],[141.42379443000007,41.31270692100012],[141.4089167330001,41.256677393000146],[141.40428358000005,41.23065244500005],[141.4037674580001,41.22063293800015],[141.39081676700002,41.16101119700015],[141.3946070220002,41.13820017500005],[141.3982853520001,41.128119208000115],[141.394465498,41.116467719000084],[141.39472983900023,41.10288506600007],[141.39635925500008,41.091730742000045],[141.38630694100019,41.03036180100018],[141.3880628530001,40.97723193900005],[141.39026167600005,40.9339325910001],[141.39304294500013,40.921750444000125],[141.40555340500023,40.816822863000155],[141.42315604000018,40.72577228600012],[141.43738666000016,40.67014093100006],[141.47039809100002,40.59341807100016],[141.482412474,40.574069069000146],[141.49163965200003,40.562326700000156],[141.51969600800007,40.53798637199999],[141.53250427099997,40.531397895000126],[141.548213624,40.53159522600011],[141.55939515900016,40.539399332000116],[141.57554958600014,40.54227905900008],[141.58210069000003,40.53279883700013],[141.589261371,40.522104635000076],[141.62370853000013,40.50136953300016],[141.68100019600016,40.45099518400012],[141.69092858200017,40.44228750200012],[141.71914098100015,40.41283517800004],[141.7260845130002,40.39379277500007],[141.74377693500017,40.38392223200016],[141.75357388800003,40.36949056000016],[141.758555535,40.35895416900003],[141.77279707100004,40.33392975500011],[141.77556399800008,40.32758209800009],[141.7784936860002,40.31549713700018],[141.78565514400023,40.30687083500008],[141.80347741,40.29002513200008],[141.83041425899998,40.25116608300006],[141.8419702480002,40.22577545800014],[141.8342391290001,40.21434153900018],[141.82447350400005,40.211004950000145],[141.81519616,40.20286692900014],[141.81023196700008,40.19277578300007],[141.81332441500004,40.1835798200001],[141.825938347,40.17568594000012],[141.85279381600012,40.16722239799999],[141.86500084700018,40.15973541900003],[141.87720787900005,40.13930898600013],[141.86589603000007,40.127264716000056],[141.84742272200006,40.11513906500015],[141.83757571700014,40.094549872000115],[141.8424585300002,40.07037995000009],[141.8549910820001,40.05499909100014],[141.919606967,40.00885651200004],[141.93034915500007,40.00409577000015],[141.94117272200006,40.00145091400004],[141.94955488400004,39.99656810099999],[141.95533287900017,39.974920966000084],[141.95964603000007,39.96430084800015],[141.96143639400023,39.95368073100011],[141.95679772200006,39.943752346],[141.94507897200006,39.9313011740001],[141.94223066499998,39.924505927000055],[141.95297285200002,39.90643952000015],[141.95923912900014,39.89838288000003],[141.96607506600017,39.891750393000116],[141.97185306100008,39.88300202000006],[141.97543379000004,39.852199611000096],[141.97868899800008,39.83930084800009],[142.00228925900004,39.777573960000055],[142.00489342500012,39.77269114799999],[142.00391686300023,39.76740143400012],[142.00684655000023,39.760443427000105],[142.00879967500012,39.752752997000115],[142.00489342500012,39.74506256700009],[141.99390709700006,39.73529694200015],[141.99122155000018,39.73045482000008],[141.98389733200017,39.70697663],[141.98096764400023,39.66254303600008],[141.97828209700006,39.647853908000066],[141.96485436300006,39.625718492000104],[141.96045983200005,39.61163971600016],[141.96631920700023,39.598456122000115],[142.01246178500006,39.63580963700015],[142.03614342500018,39.638983466000056],[142.03101647200003,39.629624742000104],[142.02898196700002,39.62299225500014],[142.0307723320001,39.61749909100011],[142.03614342500018,39.61163971600016],[142.02735436300011,39.594712632],[142.0307723320001,39.58417389500012],[142.05909264400023,39.56289297100015],[142.0641382170002,39.55988190300006],[142.06812584700018,39.55638255400005],[142.07032311300017,39.55019765800007],[142.06934655000006,39.54047272300012],[142.06470787900017,39.53644440300015],[142.059336785,39.53327057500009],[142.05665123800011,39.526027736000074],[142.0503035820001,39.52269114800005],[142.01514733200023,39.488714911000116],[141.99927819100012,39.481024481000084],[141.96631920700023,39.47134023600013],[141.95297285200002,39.46076080900018],[141.97087649800008,39.44326406500012],[141.9962671230002,39.445257880000085],[142.01889082100013,39.45937734600001],[142.02881920700005,39.477932033000016],[142.036387566,39.48379140800015],[142.05062910200004,39.476996161000116],[142.05844160199996,39.4662946640001],[142.04615319100006,39.46076080900018],[142.03988691499998,39.454575914000095],[142.03834069100003,39.44025299700003],[142.0380965500001,39.42401764500009],[142.031586134,39.41730377800003],[142.01059003999998,39.415716864],[142.00114993600008,39.413641669000086],[141.99170983200023,39.41437409100003],[141.98096764400023,39.41242096600017],[141.97169030000006,39.40696849200013],[141.95020592500023,39.391546942],[141.938731316,39.385077216000084],[141.96412194100006,39.37555573100009],[141.95337975400005,39.36200592700014],[141.926931186,39.34642161700005],[141.90528405000023,39.330471096000124],[141.92465254000015,39.32489655200011],[141.9467879570002,39.33038971600014],[141.96713300900015,39.340969143],[141.98096764400023,39.350978908000094],[141.983653191,39.3271345070001],[141.96371504000004,39.312567450000174],[141.91488691500004,39.294867255000085],[141.92286217500006,39.29047272300009],[141.9288843110002,39.28388092700011],[141.93262780000012,39.27521393400012],[141.92432701900023,39.27582428600009],[141.90723717500012,39.274562893000066],[141.8990991550002,39.27521393400012],[141.89820397200018,39.262111721000146],[141.8990991550002,39.24852122600002],[141.931488477,39.2477074240001],[141.94703209700015,39.24970123900012],[141.9467879570002,39.24852122600002],[141.94922936300006,39.228013414000046],[141.930023634,39.21222565300009],[141.90211022200018,39.204331773000135],[141.878672722,39.207586981000176],[141.88168379000004,39.19245026200018],[141.89372806100002,39.18675364799999],[141.92628014400012,39.18707916900003],[141.915782097,39.169989325000174],[141.8951929050002,39.15936920800011],[141.86947675900015,39.1539574240001],[141.84376061300011,39.15232982000008],[141.86109459700015,39.138413804],[141.90886478000002,39.109767971],[141.91334069100017,39.09772370000009],[141.8904728520001,39.089544989],[141.8354598320001,39.104315497000165],[141.81714928500006,39.09088776200018],[141.85971113399998,39.073309637000065],[141.8718367850001,39.062933661000145],[141.8605249360002,39.05923086100002],[141.84848066499998,39.05703359600001],[141.83611087300008,39.05621979400011],[141.8232528000002,39.05670807500009],[141.8232528000002,39.049261786000116],[141.83399498800023,39.04441966400013],[141.84815514400006,39.03510163],[141.85572350400003,39.026068427000084],[141.84742272200006,39.021958726000136],[141.80648847700002,39.02948639500009],[141.76636803499997,39.024847723000065],[141.7456160820001,39.026190497000144],[141.72771243600008,39.03628164300004],[141.72820071700002,39.021714585],[141.73365319100017,39.01019928600005],[141.74146569100017,38.99949778900013],[141.7482202480002,38.98786041900003],[141.7366642590001,38.98932526200018],[141.7270613940001,38.987616278000175],[141.71338951900017,38.974188544000086],[141.728282097,38.969916083000086],[141.7338973320001,38.96051666900014],[141.73023522200006,38.951157945000105],[141.71713300899998,38.946844794000114],[141.7041121750001,38.95058828300013],[141.69092858200017,38.95962148600016],[141.68002363399998,38.970770575000174],[141.67310631600017,38.98102448100009],[141.68620853000007,38.98590729400017],[141.69361412900003,38.995306708],[141.6510522800002,38.99681224200005],[141.63835696700002,38.98541901200018],[141.64055423300013,38.96519603100016],[141.64527428500006,38.92300039300012],[141.66879316499998,38.872626044000086],[141.67359459700015,38.85195547100007],[141.65211022200006,38.864325262000115],[141.64926191499998,38.86908600500011],[141.64568118600002,38.88263580900018],[141.64210045700017,38.88849518400012],[141.63672936300011,38.89109935100011],[141.6315210300002,38.88971588700004],[141.62525475400014,38.886908270000085],[141.61784915500007,38.88544342700011],[141.59864342500012,38.88519928600009],[141.58855228000007,38.882228908000066],[141.58448326900012,38.873114325000174],[141.58375084700006,38.854437567],[141.58619225399997,38.83510976800006],[141.58936608200005,38.82607656500006],[141.5870874360002,38.81924062700013],[141.57325280000006,38.806586005000085],[141.53052819100017,38.78082916900003],[141.52165774800002,38.768133856000176],[141.53199303500006,38.7633324240001],[141.53882897200006,38.756252346000124],[141.54908287900014,38.740790106000084],[141.56706790500002,38.72882721600017],[141.57260175900015,38.71865469000012],[141.56641686300006,38.703558661000116],[141.55974368600013,38.69953034100014],[141.55445397200006,38.70258209800015],[141.54908287900014,38.707017320000105],[141.54281660200004,38.707261460000055],[141.53785241000017,38.704087632],[141.52540123800003,38.68992747600007],[141.51587975400017,38.684271552000084],[141.49105879000004,38.67755768400003],[141.480723504,38.672552802],[141.4630639980002,38.661363022999986],[141.46314537900014,38.65546295800014],[141.47388756600014,38.64520905200011],[141.48519941500015,38.64085521000011],[141.53223717500006,38.638413804],[141.53516686300011,38.632025458000086],[141.52808678500006,38.61790599200005],[141.51775149800002,38.60382721600008],[141.5114038420002,38.597398179],[141.46705162900017,38.56952545800014],[141.48308353000007,38.557318427000055],[141.49903405000018,38.541652736000074],[141.51465905000023,38.53481679900007],[141.529144727,38.549017645000085],[141.54224694100017,38.533433335],[141.54761803500006,38.51862213700012],[141.54712975400003,38.50214264500012],[141.54281660200004,38.48139069200012],[141.53174889400012,38.48407623900003],[141.52418053500003,38.489691473],[141.5187280610002,38.497951565],[141.51482181100013,38.508042710000055],[141.5006616550002,38.47044505400008],[141.49496504000004,38.460882880000085],[141.50074303500017,38.45791250200007],[141.50326582099999,38.45465729400002],[141.50489342500012,38.45099518400014],[141.5079858730002,38.446600653000175],[141.48292076900012,38.44061920800005],[141.47144616000006,38.435736395],[141.47046959700018,38.429510809000035],[141.47722415500013,38.41844310100002],[141.476817254,38.409735419000114],[141.47754967500023,38.40155670800003],[141.487559441,38.392035223],[141.49903405000018,38.39960358300006],[141.51840253999998,38.402329820000126],[141.53760826900023,38.398179429],[141.54908287900014,38.38515859600001],[141.5341903000002,38.389837958000115],[141.52035566500004,38.390529690000065],[141.50904381600006,38.38515859600001],[141.50123131600006,38.37152741100006],[141.525238477,38.35993073100003],[141.52930748800017,38.33954498900005],[141.52979576900023,38.31793854400014],[141.54281660200004,38.302639065],[141.537364129,38.29507070500016],[141.52540123800003,38.267808335000055],[141.51856530000023,38.27045319200014],[141.49122155000006,38.292385158000066],[141.484629754,38.29559967700011],[141.46998131600017,38.296087958000115],[141.4633895190001,38.299221096000096],[141.45997155000012,38.306341864000146],[141.4633895190001,38.31240469000012],[141.46753991000006,38.31781647300009],[141.46705162900017,38.32306549700017],[141.457774285,38.330877997000144],[141.42554772200015,38.34357330900003],[141.43083743600008,38.350246486000074],[141.43970787899997,38.37152741100006],[141.42807050899998,38.380438544000086],[141.4194442070001,38.380682684000035],[141.41049238400015,38.37791575700008],[141.39812259200014,38.37767161700013],[141.38624108200003,38.380845445000105],[141.3761499360002,38.38544342700013],[141.35377037900017,38.40224844000015],[141.33318118600008,38.40900299700008],[141.30445397200012,38.407904364000146],[141.22950280000023,38.39411041900003],[141.202403191,38.38580963700015],[141.18091881600017,38.37116120000006],[141.17212975400003,38.347316799000154],[141.17497806100008,38.32436758000007],[141.16968834700018,38.322821356000034],[141.15211022200006,38.32306549700017],[141.14771569100017,38.32949453300007],[141.13184655000023,38.37152741100006],[141.12322024800002,38.36652252800012],[141.11459394600004,38.36465078300013],[141.10596764400023,38.366156317],[141.0978296230002,38.37152741100006],[141.07943769600016,38.360907294000114],[141.06470787900017,38.34662506700012],[141.0542098320001,38.32916901200015],[141.048675977,38.30947500200001],[141.05836022200006,38.313706773000135],[141.06959069100006,38.31488678600006],[141.0791121750002,38.31159088700004],[141.08350670700023,38.302639065],[141.08057701900012,38.29490794499999],[141.07252037900017,38.289536851000136],[141.06226647200006,38.28473541900014],[141.05274498800023,38.27871328300013],[141.01734459700006,38.24485911700016],[140.98796634200002,38.20701732000013],[140.96680748800023,38.17047760600017],[140.92579186300023,38.04938385600012],[140.9186304050002,38.00722890800016],[140.91976972700004,37.96515534100011],[140.93262780000023,37.891750393000095],[140.93336022200018,37.889227606000176],[140.95926646200022,37.84995876300009],[140.9932590870001,37.79983832100002],[141.00459510299999,37.76440553700017],[141.0081486340001,37.75018952000015],[141.01742597700004,37.73997630400011],[141.02222740999997,37.726955471000124],[141.02198326900003,37.706732489],[141.01905358200023,37.69863515800007],[141.0092879570001,37.68524811400009],[141.0078231130002,37.678859768000144],[141.01140384200014,37.672267971000096],[141.02515709700006,37.65794505399999],[141.02816816500004,37.64809804900006],[141.0418400400001,37.377142645000085],[141.03614342500006,37.344712632],[141.01441491,37.27147044500013],[141.01449628999998,37.23997630400011],[141.0078231130002,37.22675202000009],[141.0078231130002,37.13385651200018],[141.00513756600017,37.122870184000035],[140.98796634200002,37.089789130000085],[140.97437584700018,37.00177643400015],[140.96029707100016,36.966213283000066],[140.92579186300023,36.938910223],[140.917246941,36.93646881700006],[140.8917749360002,36.93211497600007],[140.85906009200008,36.91400788000006],[140.83521569100017,36.908433335000055],[140.8203231130002,36.89435455900012],[140.81226647200012,36.891180731000055],[140.80437259200002,36.88597239800005],[140.80193118600016,36.874579169000086],[140.8022567070001,36.85700104400014],[140.79729251400025,36.84650299700009],[140.79314212300002,36.837551174000154],[140.751719597,36.78506094],[140.7418725920002,36.76845937700012],[140.69385826900012,36.61798737200017],[140.638926629,36.539740302000084],[140.62354576900006,36.506089585000055],[140.61011803500017,36.43390534100016],[140.6105249360002,36.418158270000035],[140.62354576900006,36.37962474200013],[140.62476647200018,36.36359284100014],[140.61687259200014,36.337795315],[140.57938199800012,36.30475890300012],[140.56410737100023,36.28309580200015],[140.56643664500015,36.24583748900006],[140.57837975400005,36.16095612200003],[140.60990230500008,36.09505676000013],[140.64603410500004,36.01332044400009],[140.789317254,35.808661200000145],[140.83082116,35.761053778000175],[140.841644727,35.74241771],[140.85254967500003,35.737534898000135],[140.8594669930001,35.73537832200012],[140.86500084700012,35.733628648000135],[140.87427819100006,35.72923411700005],[140.87940514400017,35.72052643400015],[140.86876177700006,35.696753962000074],[140.8606646720002,35.68779101800011],[140.8468530610002,35.69525788000011],[140.84021114000004,35.7043790420001],[140.8283014570001,35.71396943700013],[140.80314419800018,35.7093713900001],[140.77089010900002,35.69705142200009],[140.7207889030001,35.68251721100002],[140.71626055100015,35.69879072800002],[140.66105645600015,35.68863497800014],[140.59616244700013,35.65207529800013],[140.48346749700025,35.565991055000055],[140.4232195130002,35.49064438000015],[140.38591856900004,35.38099857300013],[140.40503991000006,35.32892487200009],[140.41309655000006,35.301214911],[140.40408370800017,35.25950925500011],[140.39883763000014,35.22209519200011],[140.394195275,35.196591662000074],[140.37762965099998,35.17635690900006],[140.3489351930002,35.18051589700009],[140.3304796990001,35.15778336400008],[140.33353722800015,35.14234798800008],[140.3212136120002,35.130394078000094],[140.30334948500004,35.133402885000166],[140.29436841200018,35.146639121000035],[140.27891015000003,35.131988166000085],[140.25332548800023,35.134623945000115],[140.23738075200006,35.11242952500005],[140.20006695100017,35.11498426400014],[140.1555132030002,35.1180753570001],[140.13460281400015,35.12264536400012],[140.1059528110001,35.097603003000145],[140.10080523400003,35.075751345000114],[140.07548783400014,35.059269401000094],[140.05553662300022,35.058868491000126],[140.02115558500006,35.038428858000046],[139.99096763300017,35.02050211200013],[139.98057300900018,35.007514466000046],[139.9748695020002,34.99019749100013],[139.96406435800012,34.97595964400007],[139.96464803299997,34.95928462900015],[139.96213888100024,34.940850503000014],[139.9523882650001,34.92797425400009],[139.9430396800001,34.91864977200014],[139.92639584600013,34.90735665200019],[139.90079996000006,34.903012715000116],[139.8829389370001,34.901305321000066],[139.870643897,34.904726639],[139.85579146900002,34.90243585200009],[139.84309961700015,34.89998186000018],[139.83814537900005,34.90468984600007],[139.82198426200003,34.91210983000009],[139.82496460300015,34.921371227000165],[139.823182243,34.93492174400008],[139.810831009,34.943539553],[139.77881155300017,34.95413884000003],[139.75699355500015,34.95628367400012],[139.75243898200003,34.96473781400009],[139.75277736500018,34.97580871200002],[139.765303742,34.97649999100009],[139.7836218950001,34.974250629000075],[139.7944538040001,34.97344853800014],[139.80851286700025,34.97616585700008],[139.82044658100006,34.98136827700013],[139.82710492200013,34.99019351800017],[139.84030331500017,34.991003171],[139.85865319100014,34.98680247600008],[139.865489129,34.990545966000084],[139.8699650400001,34.99933502800015],[139.86768639400012,35.013332424000126],[139.85596764400012,35.02081940300009],[139.8357853520001,35.02724844],[139.83464603000007,35.037420966000134],[139.84620201900006,35.046820380000085],[139.84961998800006,35.05801015800007],[139.84742272200018,35.069322007000075],[139.83806399800005,35.08832428600005],[139.8357853520001,35.09926992400012],[139.83643639400023,35.135199286000116],[139.8189742960001,35.157662877000156],[139.82211347700016,35.17059967700011],[139.81943466800007,35.18504826700002],[139.8246088240002,35.19906390000007],[139.85195684100006,35.214667540000065],[139.86515060700015,35.22409896400008],[139.86632662800005,35.24620537700015],[139.8483179050002,35.27171458500011],[139.84933413400003,35.293553600000095],[139.8081376470001,35.305484891000084],[139.78215300800005,35.31417710000012],[139.78100337900005,35.318060656000014],[139.80218970600012,35.317350352000126],[139.824158042,35.328423989000115],[139.82466799700003,35.34700932700018],[139.83874471700008,35.359298994000156],[139.84477673600009,35.37620508400009],[139.8927430760001,35.364183689000114],[139.90786505500014,35.37871859200014],[139.90731450700005,35.39230448600007],[139.90012104400003,35.423104455000114],[139.91282345400023,35.43443618000005],[139.94075591000015,35.44251764400009],[139.9586721860002,35.45620969700012],[139.982336635,35.45866843100005],[140.00585928900003,35.47342712000012],[140.02011802500013,35.49121049500008],[140.041455089,35.51377297500015],[140.0718871290002,35.54285680200003],[140.0901564010002,35.540848832000066],[140.09782201000021,35.55532235600016],[140.1020486840001,35.56708749400009],[140.08611977899997,35.566805124],[140.08301842500018,35.5855980490001],[140.07960045700017,35.60358307500003],[140.06382667700018,35.615342164000154],[140.04761498000008,35.63077500900006],[140.03287822,35.64099547700006],[140.00894986300014,35.659759819],[139.99577884200008,35.656683661000145],[139.98361433200014,35.66864466800008],[139.9504139740001,35.67259201500012],[139.92053189700005,35.6620666730001],[139.93957929100023,35.63689149800014],[139.91207079900002,35.62408746100006],[139.8971678300002,35.61437375800015],[139.89112389400006,35.62311432500012],[139.87940514400006,35.625067450000145],[139.87086022200018,35.631293036000116],[139.864242857,35.63206757700006],[139.85027103000002,35.63751862200017],[139.84327233200023,35.62889232000008],[139.83727706700003,35.61454952400014],[139.8238875110002,35.62295089600018],[139.82035734500008,35.638049330000015],[139.80682518800012,35.638192534000055],[139.8003035820001,35.618638414000046],[139.78914674800012,35.603243412],[139.77485460200012,35.61763727099999],[139.77562521600012,35.64110350500012],[139.76527245200006,35.65351048500004],[139.75816223600012,35.631564242000174],[139.76880944100017,35.60097890800013],[139.784804085,35.58046609600011],[139.78500472800008,35.56816522000018],[139.7990563450002,35.540010128000134],[139.78687584700012,35.52716705900012],[139.78809655000012,35.51325104400003],[139.78663170700017,35.511542059000035],[139.778575066,35.501857815000065],[139.74455011300003,35.48430496600018],[139.71407684000022,35.4647307250001],[139.6882217330002,35.461106504000085],[139.66689706000003,35.467934278000044],[139.65162194100012,35.464585679],[139.64230183700025,35.454261182],[139.66221936600002,35.44648058700007],[139.68054456100006,35.43838609900011],[139.68739709599998,35.43217553000015],[139.6820433770001,35.418810922000134],[139.68685957100016,35.40070221600017],[139.67457116000017,35.400824286000145],[139.64999592500013,35.41055080800005],[139.63579190800013,35.40163242700014],[139.64214195600005,35.388480564000034],[139.6572384790002,35.377021954],[139.65463300900004,35.33942291900014],[139.64966881600006,35.3266462260001],[139.65023847700002,35.31037018400018],[139.64835814200015,35.297890507000105],[139.6575045670002,35.2866470500001],[139.66438993500006,35.29878081000005],[139.6768993050001,35.291537181000066],[139.69418379000015,35.268744208000115],[139.73422804800018,35.26520292300002],[139.74545332099999,35.248968817],[139.72592207100004,35.23330312700001],[139.72934004000004,35.22931549700006],[139.73096764400023,35.22589752800003],[139.73226972700004,35.22256094],[139.72802465700025,35.20708410000013],[139.68879598000015,35.20913368600007],[139.66645622900003,35.193893224000085],[139.660589416,35.17823249200008],[139.67058353000013,35.15997955900017],[139.68034915500007,35.149603583],[139.68506920700017,35.140448309000085],[139.67505944100017,35.13646067900014],[139.66431725400017,35.13483307500012],[139.6415139750001,35.139633865000135],[139.62533613399998,35.13178131700003],[139.6162849360002,35.134001708000156],[139.61145201200006,35.141972689],[139.61606961400003,35.15262239800002],[139.61430199800006,35.17404269600017],[139.60179274300006,35.20183531900015],[139.6239589520001,35.211617096],[139.61991832900017,35.21974007600012],[139.60432256100003,35.22423350700002],[139.5975951830002,35.23868757400011],[139.56949795300014,35.26885731700007],[139.56625410200013,35.27606842700011],[139.56068062000023,35.286927746000124],[139.54851321700008,35.28790924700017],[139.54417779700006,35.30789279800008],[139.5266033730002,35.302037009000074],[139.5066705300002,35.30417269500005],[139.4866642590001,35.30052317900005],[139.46691429100022,35.31331858400013],[139.4148557200002,35.318814659000154],[139.3300220760001,35.304475677000156],[139.28205042400006,35.2961975840001],[139.233366933,35.28532441900008],[139.18353782100021,35.26326671600005],[139.14595743700013,35.235226985000125],[139.14242597700004,35.184027411000116],[139.15805097700004,35.13646067900014],[139.12077055300006,35.1502574500001],[139.0884726750002,35.1100577700001],[139.07673175500022,35.07509400900007],[139.07587403600022,35.053177286000064],[139.10596764400006,35.049383856000176],[139.1017564470001,35.03054164000018],[139.09709101300004,35.01149501300016],[139.0865480910002,34.997305469000096],[139.10060254599998,34.974755422],[139.13070722700013,34.96515534100017],[139.1425887380001,34.94228750200007],[139.1482853520001,34.90509674700017],[139.140879754,34.870550848000065],[139.11929798500003,34.86738948800014],[139.09907294399997,34.85611941800006],[139.08838951900023,34.84227122600011],[139.08399498800017,34.82835521000014],[139.07481770100006,34.80896906900007],[139.05908593600012,34.79257003200017],[139.05171284900015,34.777787651],[139.04298346700014,34.76756908400016],[139.02632726900018,34.76424660000005],[139.01898917200018,34.75428978500018],[139.01097162300016,34.74662112600002],[138.99875872200008,34.73328434200009],[139.0026147800002,34.721828518000095],[138.99708092500006,34.71503327000006],[138.98878014400012,34.70140208500011],[138.98560631600003,34.683294989],[138.98755944100017,34.66478099200019],[138.99366295700005,34.64984772300015],[138.98243248800006,34.64447663],[138.9726668630002,34.645819403000175],[138.96485436300023,34.65253327000012],[138.94082598100013,34.66110718700004],[138.8959791120001,34.6290457760001],[138.86094893900005,34.613497981000094],[138.83529707100004,34.59589264500012],[138.81999759200008,34.60236237200002],[138.80600019599996,34.61367422100001],[138.79468834699998,34.62628815300009],[138.77139013100012,34.64731395300011],[138.77784264400012,34.663316148000135],[138.77393639400012,34.67096588700015],[138.76685631600006,34.676214911000145],[138.75904381600017,34.67845286700013],[138.75196373800011,34.68207428600009],[138.74659264400023,34.69147370000012],[138.745941602,34.709173895000035],[138.74400124200022,34.7288918950001],[138.75624228500007,34.7374702250001],[138.76182943900008,34.748281714000186],[138.77426191500015,34.75128815300015],[138.75876118800014,34.78270405300019],[138.74812686400014,34.81320925300015],[138.75789301600017,34.829702497000035],[138.76221764400023,34.84642161700005],[138.76026451900006,34.84906647300012],[138.76050866000003,34.86937083500013],[138.75383879299997,34.879467275000096],[138.76299558100018,34.893986880000014],[138.77678740000013,34.90482837700007],[138.78980553500006,34.90680573100017],[138.77849368600008,34.92202383000016],[138.77393639400012,34.93162669500013],[138.76369264600024,34.95605640500004],[138.76189355900024,34.97990260500008],[138.77680217000002,35.003160568000126],[138.7860899010001,35.02643876200007],[138.82659514700018,35.02362521900007],[138.85541578700023,35.019026928000116],[138.87512759900014,35.020094484000154],[138.89380944100017,35.02000560099999],[138.90756269599999,35.030666408000016],[138.85343549600023,35.07822164400012],[138.83853700300003,35.09952569800008],[138.80333168500013,35.121909308000156],[138.744220044,35.13484289300011],[138.69618557600003,35.13897567500011],[138.66363181200015,35.1271439850001],[138.63726956600007,35.11598535200001],[138.58678602100008,35.11436020000009],[138.5540821750001,35.096069379000184],[138.52765127300003,35.050808017000136],[138.4978829820001,35.0325695020001],[138.49488309400024,35.00073149500015],[138.50701000400008,34.9910722520001],[138.50702289100016,35.011893088000036],[138.5209822620001,35.019373472],[138.53161744200023,35.01692375099999],[138.51429303400002,34.98017780400012],[138.4683627440002,34.95906956700004],[138.42975505400003,34.944734465000025],[138.40050460699996,34.93249572800009],[138.36710789500015,34.91730943900008],[138.35335261200024,34.90411501600012],[138.34686565,34.888188730000145],[138.33643639400015,34.87409088700006],[138.32829837300008,34.85529205900009],[138.3300887380002,34.84540436400009],[138.34083092500023,34.82648346600017],[138.3258891190002,34.80790823100013],[138.31487266100024,34.798368680000166],[138.2932279830001,34.765774415000166],[138.24950579000003,34.73902319000008],[138.2159891910002,34.71228266100012],[138.20167076900023,34.660101630000085],[138.19361412900005,34.64150625200007],[138.200938347,34.62156810099999],[138.22505168600017,34.616301199000034],[138.24032772700005,34.602561079000125],[138.23328976100018,34.59458877000016],[138.19017637400015,34.60122771700013],[138.04723701,34.65463981500007],[137.96758503500016,34.6665403870001],[137.89279756800013,34.66769656700011],[137.79216556100002,34.63939036700016],[137.68350648400022,34.670754599000176],[137.59506269600004,34.677191473000036],[137.54699814000017,34.67728852500015],[137.42755727900015,34.66774579100017],[137.33970287999998,34.64744751300004],[137.1407268090002,34.589289111000156],[137.0958211670002,34.59323397800016],[137.04482177000014,34.580630235000044],[137.03150475400017,34.57941315300006],[137.01609532100014,34.57878471000002],[137.02359643000014,34.590778815000036],[137.02964210200005,34.59801495600014],[137.04248611100016,34.61757853200014],[137.05221990299998,34.64680316900002],[137.07283016600005,34.664599003000134],[137.10108483200014,34.63914622600011],[137.10450280000018,34.63202545800006],[137.1108504570001,34.625433661],[137.11869901800006,34.63370833900014],[137.12102007100006,34.63766082400004],[137.13703100100008,34.645578300000025],[137.15316816500004,34.651312567],[137.16765384200005,34.65668366100006],[137.19743544000002,34.673934111000065],[137.24111128400014,34.696677994000126],[137.25971580000012,34.7041445950001],[137.28225457700015,34.731178516000014],[137.298225934,34.72821530000006],[137.29967102300023,34.706846644],[137.29567769400003,34.6912040990001],[137.3034520120002,34.689428676000105],[137.30996040900007,34.70659849200008],[137.30925623700014,34.725664278000025],[137.33259033900012,34.720338258000154],[137.34081945300002,34.72654295100007],[137.31233949200006,34.73667473100012],[137.32081458400003,34.75525177400003],[137.32431631200018,34.76684465600006],[137.32154381600006,34.77338288000006],[137.29792810200016,34.797191095000144],[137.27995853000007,34.80809153900013],[137.2665052230001,34.80313888900004],[137.2458095720001,34.809640624000124],[137.22282679300022,34.816263291000084],[137.2077152950001,34.802580234000104],[137.19443232100016,34.80699872100003],[137.19084265200016,34.788680684000056],[137.1887391160001,34.77011170000013],[137.1708392290001,34.763864997],[137.17147080700013,34.784049803000144],[137.157473835,34.781164918],[137.1405333820001,34.78781337000005],[137.1215488890001,34.788343361000116],[137.10144007600016,34.784596454000095],[137.08744671100024,34.776028248],[137.07270864900008,34.78496379100001],[137.05016559100014,34.777606124999984],[137.02881708599998,34.78015714400011],[137.0182478530002,34.783289035000095],[137.00228925900004,34.802394924000126],[136.99561608200005,34.80809153900013],[136.97662599200012,34.82550679500018],[136.95823137300005,34.83235218500009],[136.96240352800018,34.85799564600016],[136.98259524800008,34.89826080900015],[136.97885175900015,34.92422109600015],[136.969493035,34.91160716400016],[136.95679772200006,34.884833075000145],[136.93848717500006,34.86098867400007],[136.93100019600004,34.84642161700005],[136.9257463930002,34.828270956],[136.9155640360001,34.77596001200014],[136.926605665,34.76361725500011],[136.93726647200018,34.746039130000085],[136.96264998500013,34.73496420500008],[136.971856878,34.713403750000154],[136.97149659400023,34.69641132499999],[136.9453916490002,34.698470690000036],[136.91320428500003,34.710874247000035],[136.8781098200001,34.72852009700016],[136.85596764400003,34.73981354400003],[136.8445937930002,34.752548136000044],[136.84288610100023,34.76907728900015],[136.85301440900017,34.78759522100013],[136.85697530900003,34.804757693000155],[136.86473401200013,34.82154509000013],[136.86426376300014,34.83652562000016],[136.85628619900015,34.856495216000084],[136.84341791300008,34.871163119000116],[136.82772581000003,34.87194149700012],[136.82293819700024,34.895623239000045],[136.82176567300021,34.91949379300014],[136.82224729599997,34.938299802000174],[136.82346477799996,34.954855423000154],[136.83329350600005,34.97209207400009],[136.84381381500017,34.98948058300014],[136.85690642700004,35.00803718100003],[136.86588050100013,35.02569016400003],[136.8798593170001,35.043836857000045],[136.88279637300016,35.07104784800005],[136.88572989700006,35.08919548600012],[136.87182146899997,35.09339527300007],[136.85706008100024,35.061786607],[136.84886474000007,35.039469415000084],[136.84412592100014,35.06076675100017],[136.84315173399997,35.07504335100004],[136.83011829400002,35.078831393000044],[136.8393272550002,35.03251957900015],[136.81302073200007,35.027385537000086],[136.808959273,35.04883054300013],[136.79946622900016,35.048559352000076],[136.79790005,35.024069190000134],[136.77846910600013,35.020401545000155],[136.751800977,35.02614980700015],[136.74480228000016,35.02342357],[136.7255965500002,35.02724844],[136.68116295700023,35.000921942],[136.65919030000012,34.98395416900003],[136.64991295700005,34.968898830000015],[136.64869225400005,34.96259186400006],[136.64356530000023,34.95319245000006],[136.642425977,34.94806549700003],[136.64478600400017,34.94236888200005],[136.66166683600014,34.94050457500008],[136.64555099199998,34.929787448000084],[136.64825961300008,34.911600243000024],[136.6393159400001,34.88904870099999],[136.6161145450001,34.85350057100011],[136.56501226500004,34.80011926500005],[136.5349399390001,34.76569509900018],[136.52735436300023,34.72125885600012],[136.52165774800008,34.701727606000034],[136.51954186300023,34.68085358300005],[136.52165774800008,34.67609284100016],[136.53223717500012,34.66014232000008],[136.53630618600008,34.65668366100006],[136.54639733200023,34.651597398000135],[136.5456649100001,34.63987864800005],[136.541188998,34.626206773000106],[136.54004967500012,34.61570872600005],[136.55103600400005,34.601996161000116],[136.56812584700018,34.59638092700011],[136.61207116000006,34.59589264500012],[136.6329858730002,34.591131903000026],[136.64877363400004,34.57973867400007],[136.66260826900023,34.56598541900014],[136.67709394600007,34.55426666900014],[136.7522892590001,34.51333242400012],[136.80355879000004,34.49526601800004],[136.81446373800011,34.48602936400005],[136.82496178500017,34.48944733300006],[136.83887780000023,34.48916250200013],[136.85230553500006,34.48554108300006],[136.86215254000015,34.47919342700014],[136.86890709700018,34.467352606000176],[136.87077884200008,34.45685455900009],[136.87354576900012,34.44708893400015],[136.88331139400023,34.437567450000174],[136.89633222700002,34.433417059000035],[136.90699303500017,34.434637762000065],[136.91602623800006,34.43398672100001],[136.92432701900015,34.423976955000015],[136.92579186300023,34.41290924700017],[136.91675865999997,34.376166083000086],[136.90463300900004,34.38117096600003],[136.89307701900012,34.38239166900006],[136.88314863399998,34.37885163000006],[136.87525475400005,34.36933014500006],[136.87989342500023,34.362738348000086],[136.88721764400023,34.35708242400009],[136.89722741000006,34.353949286000116],[136.90992272200018,34.35504791900017],[136.894379102,34.34271881700012],[136.88868248800011,34.33616771000014],[136.88331139400023,34.32831452000015],[136.89128665500016,34.31769440300012],[136.89779707099999,34.30097077000009],[136.90023847700004,34.28253815300015],[136.8956811860002,34.26691315300015],[136.88599694100006,34.260443427000055],[136.85084069100017,34.24925364800005],[136.83545983200023,34.24640534100011],[136.81853274800002,34.24762604400003],[136.79420006600017,34.25311920800005],[136.77515709700018,34.26186758000013],[136.77344811300006,34.273098049000126],[136.78793379000004,34.27741120000003],[136.8092554050002,34.27387116100006],[136.8296004570001,34.26654694200015],[136.841644727,34.25946686400009],[136.83961022200015,34.26605866100006],[136.83806399800014,34.27533600500011],[136.83545983200023,34.280503648000106],[136.84848066500004,34.273098049000126],[136.85621178500006,34.29417552300005],[136.84644616000017,34.30756256700006],[136.82740319100017,34.31240469000012],[136.80746504000004,34.30784739799999],[136.80982506600017,34.30109284100014],[136.8097436860002,34.29791901200018],[136.80836022200012,34.294623114000146],[136.80746504000004,34.28733958500014],[136.77344811300006,34.30784739799999],[136.75660241000017,34.296087958000115],[136.72584069100012,34.29100169499999],[136.70264733200005,34.29515208500011],[136.70826256600017,34.31098053600006],[136.72339928500017,34.33128489800007],[136.7067977220001,34.33429596600017],[136.67628014400015,34.326402085],[136.64991295700005,34.314113674000126],[136.66814212300008,34.309556382],[136.66700280000012,34.29791901200018],[136.65479576900023,34.28603750200013],[136.62289472700002,34.274603583000086],[136.60808353000007,34.264593817],[136.59253991000006,34.26264069200014],[136.57406660200004,34.280503648000106],[136.56820722700016,34.274318752000156],[136.56397545700017,34.271714585000055],[136.56153405000012,34.26837799700003],[136.56055748800023,34.25946686400009],[136.53288821700008,34.27167389500006],[136.52295983200023,34.273098049000126],[136.51775149800008,34.26121653900016],[136.51221764400023,34.25218333500008],[136.50586998800011,34.24640534100011],[136.51482181100002,34.22980377800015],[136.50294030000006,34.22907135600012],[136.47169030000012,34.23895905200014],[136.4272567070001,34.213771877000156],[136.41651451900006,34.204250393000066],[136.38428795700023,34.204250393000066],[136.33668053500017,34.18402741100014],[136.29900149800008,34.15428294500013],[136.29704837300002,34.125677802000055],[136.308360222,34.11782461100016],[136.31641686300023,34.11432526200018],[136.31902103000007,34.10883209800015],[136.31348717500012,34.09495677300005],[136.308441602,34.09003327],[136.30030358200005,34.08567942900011],[136.2911889980002,34.082505601000136],[136.28345787900017,34.0812848980001],[136.27312259200008,34.085842190000065],[136.26075280000023,34.10512929900001],[136.2526961600001,34.108587958],[136.24634850400017,34.103583075000145],[136.23023522200018,34.08209870000003],[136.21851647200012,34.07514069200015],[136.21851647200012,34.067613022999986],[136.23308353000002,34.06777578300013],[136.24382571700008,34.06415436400009],[136.25049889400012,34.056341864],[136.2526961600001,34.04344310099999],[136.270762566,34.02814362200003],[136.2797957690001,34.01732005400011],[136.27662194100006,34.012396552000055],[136.27458743600002,34.00674062700007],[136.27540123800023,33.97996653900016],[136.27320397200006,33.97142161700005],[136.25863691500004,33.96588776200004],[136.24732506600003,33.97150299700003],[136.23861738400015,33.98248932500009],[136.23218834700006,33.99315013200011],[136.2190047540001,33.981146552],[136.20484459700018,33.97142161700005],[136.20484459700018,33.96523672100007],[136.22754967500012,33.96173737200009],[136.23471113400015,33.94843170800006],[136.22852623800011,33.9383812520001],[136.2111108730002,33.944769598000036],[136.20630944100006,33.92694733300014],[136.19890384200002,33.92088450700014],[136.16480553500006,33.91616445500013],[136.16049238400004,33.913397528000175],[136.15267988400015,33.90623607000013],[136.14258873800006,33.89362213700015],[136.13697350400017,33.89057038000006],[136.12574303500017,33.8895531270001],[136.1047442250002,33.89141140000011],[136.0693171280001,33.84704388300004],[136.01707507400025,33.73389913600009],[135.9937443370002,33.68626536700005],[135.99057050900015,33.68252187700001],[135.98072350400005,33.652980861000124],[135.96159915500007,33.64252350500006],[135.95728600400017,33.62571849200004],[135.93706668399997,33.61747297900003],[135.9387364620002,33.60394802800006],[135.95987107500017,33.5930882250001],[135.94607134200012,33.577809933000125],[135.91253492700017,33.54768686700014],[135.89420900499996,33.54164240700014],[135.8847762380002,33.52899811400012],[135.82806328700008,33.51364825899999],[135.80918398599997,33.50503721300002],[135.79799322100004,33.49516148700009],[135.78296949000017,33.47289128700008],[135.79021590700003,33.45339146900003],[135.7892632630002,33.44106232400015],[135.77202431600008,33.44491902400013],[135.76002037899997,33.43333567900008],[135.753846014,33.45157716400011],[135.77075201000002,33.46822920000006],[135.76557060700023,33.481545488000066],[135.66822350400017,33.490464585000055],[135.63754316500015,33.49461497599999],[135.49076302200004,33.54122717300005],[135.44483483200023,33.550848700000174],[135.40919030000012,33.57420482000008],[135.39750451600017,33.58258693600011],[135.38732414300003,33.59406731700001],[135.38681334100013,33.60783872000012],[135.39234459700012,33.61888255400013],[135.380707227,33.63711172100001],[135.37501061300011,33.64313385600012],[135.369395379,33.644964911],[135.35866231200023,33.65420731400009],[135.34196725399997,33.657210936000105],[135.3276951260001,33.671192935000036],[135.3429445310002,33.6938983510001],[135.3792142130002,33.69811089400004],[135.40235436300006,33.701117255],[135.39161217500018,33.71356842700011],[135.34083092500012,33.745306708000086],[135.32138786300007,33.75292358100013],[135.31210223400004,33.76552878400009],[135.2940207730002,33.763715666],[135.26434503499996,33.78131573100007],[135.23258264800018,33.78199800700004],[135.22984796100005,33.798554135000145],[135.19646243600002,33.81476471600011],[135.17335045700005,33.838324286000145],[135.1527576010001,33.87585417900014],[135.11868351100023,33.89293870400009],[135.10012023200014,33.889840179000124],[135.0654538490002,33.885571819000106],[135.05885950400003,33.8800328870001],[135.06130745400006,33.88987988000004],[135.06649658500024,33.896407725000145],[135.05736156500004,33.901297796],[135.06423797000005,33.90602024800005],[135.07912676300023,33.90602541400001],[135.07799229000008,33.91855214600015],[135.069559977,33.93066660300012],[135.08471704599998,33.94221372400001],[135.10122240100011,33.954437547000154],[135.09497587900003,33.95869124200011],[135.07733462100012,33.95898546600013],[135.0757372510001,33.97748793800015],[135.09199839900023,33.99203611100013],[135.113277088,33.99338693300008],[135.1279350470002,33.998605234000095],[135.15316816500015,34.00975169499999],[135.1616317070001,34.02496979400014],[135.16277103000002,34.03974030200014],[135.15308678500017,34.048570054],[135.1333113940002,34.058294989000146],[135.11109459700018,34.06574127800012],[135.09449303500006,34.067613022999986],[135.11491946700016,34.10179271000008],[135.11736087300002,34.103420315],[135.12549889400023,34.106146552000084],[135.128672722,34.108587958],[135.1305444670002,34.11322663000011],[135.13062584700018,34.12238190300012],[135.12283938400012,34.13710111500002],[135.14877062399998,34.13807629800006],[135.1870223320001,34.13593170800008],[135.18995201900023,34.149603583000115],[135.17969811300011,34.16583893400014],[135.16585549400003,34.18672339300009],[135.14877363400015,34.185614325000174],[135.13542728000007,34.22768789300012],[135.11962891700003,34.24220217300014],[135.09266843600008,34.25988713800014],[135.06104364700016,34.26727491900006],[135.07129967500012,34.2857933610001],[135.10503071500003,34.31811688100008],[135.20898538000003,34.342277645000124],[135.25656401300014,34.376754752000025],[135.28129845600014,34.397428263],[135.31968984900018,34.42875819700011],[135.35347650300005,34.46748311400013],[135.37256231200004,34.484513116000116],[135.3742794250002,34.507756081000146],[135.3732082730002,34.51893221900009],[135.39099683600014,34.52364861700006],[135.3991382210002,34.53293199299999],[135.40832373099997,34.540974933000044],[135.4143791510002,34.55812547000012],[135.41523416000018,34.5799677080001],[135.41578152200012,34.60961152200004],[135.40731751300015,34.63420060100019],[135.40359067700015,34.658912182000066],[135.41293379,34.692084052000084],[135.3975743230001,34.6862137830001],[135.38121442800005,34.681262829],[135.363244418,34.68907092900015],[135.3412673680002,34.70850960500003],[135.31748518100017,34.70695845700011],[135.28686267099994,34.70544269800003],[135.28730090799996,34.679969876000044],[135.25360478100006,34.676997771000075],[135.25489028200005,34.70091002200017],[135.22006657000023,34.69077377000009],[135.24234854000005,34.650751996000096],[135.21090196999998,34.65518024800009],[135.20440327700007,34.67726067300008],[135.18603043700003,34.67490879400016],[135.18397604700013,34.6511558580001],[135.11131213300004,34.64038240500018],[135.07954647400007,34.62777575900016],[135.045768788,34.6249668870001],[135.01684557000007,34.642155986000105],[134.9792586600001,34.641017971000096],[134.96029707099999,34.64362213700017],[134.93702485700013,34.66736886900016],[134.9076249340001,34.677606433000065],[134.888356967,34.69147370000012],[134.83334394600016,34.721380927],[134.80046634200008,34.73090241100009],[134.7623804050002,34.75698476800015],[134.74439537900005,34.76654694200012],[134.69629967500006,34.776190497000115],[134.56690514400023,34.76654694200012],[134.55990644600016,34.76829661700013],[134.554453972,34.77163320500016],[134.54908287900005,34.77326080900018],[134.54265384200002,34.76996491100014],[134.53785241000006,34.76654694200012],[134.53150475400005,34.76312897300012],[134.52491295700023,34.76064687700001],[134.5190535820001,34.75971100500011],[134.50586998800023,34.760972398000135],[134.49586022200015,34.76455312700009],[134.490489129,34.772609768000116],[134.49122155000023,34.78705475499999],[134.48454837300017,34.7853050800001],[134.47820071700008,34.781927802000084],[134.47315514400012,34.776841539000046],[134.47136478000002,34.76996491100014],[134.47006269600004,34.76178620000003],[134.46705162900005,34.760972398000135],[134.46257571700008,34.762030341000084],[134.45704186300023,34.75971100500011],[134.43140709700018,34.73045482],[134.42286217500023,34.72557200700011],[134.40870201900023,34.72626373900006],[134.39820397200018,34.73151276200004],[134.38965905000023,34.73737213700018],[134.38135826900017,34.73981354400003],[134.36841881600017,34.73598867400001],[134.35775800900004,34.727362372000115],[134.3522241550002,34.716253973000065],[134.35401451900012,34.705145575000145],[134.32667076900012,34.704331773000135],[134.27637780000023,34.71523672100001],[134.24781334700015,34.71816640800013],[134.22071373800023,34.72846100500006],[134.20875084699998,34.728013414000046],[134.21680748800023,34.71190013199999],[134.22689863400004,34.70791250200001],[134.2788192070001,34.69822825700005],[134.2710067070001,34.696275132],[134.2516382170002,34.693752346000096],[134.24480228000007,34.69147370000012],[134.22445722700016,34.66766998900012],[134.22022545700017,34.66351959800009],[134.21225019599999,34.66136302299999],[134.19629967500012,34.652004299000126],[134.17823326900003,34.64883047100007],[134.17066491000006,34.645982164000046],[134.15528405000003,34.63686758000013],[134.16211998800011,34.632228908000016],[134.17025800900004,34.630764065000065],[134.17969811300023,34.6323102890001],[134.18946373800006,34.63686758000013],[134.1772567070001,34.61444733300014],[134.14795983200005,34.596991278000175],[134.11304772200006,34.585638739],[134.08366946700008,34.581529039000046],[134.06934655000003,34.58584219000014],[134.04737389400023,34.604641018],[134.02881920700023,34.60887278900013],[133.99439537900003,34.60871002800014],[133.97925866000006,34.605902411000116],[133.9538680350001,34.59300364800002],[133.93669681100008,34.58722565300003],[133.92514082100016,34.577866929000024],[133.92945397200006,34.561102606000176],[133.94255618600013,34.55512116100006],[133.95736738399998,34.564439195000105],[133.9840600920002,34.589056708000115],[134.00074303500006,34.59446849200007],[134.01929772200006,34.596828518],[134.03565514400006,34.59341054900001],[134.04615319100006,34.581529039000046],[134.04566491000006,34.56391022300012],[134.03345787900017,34.55247630400008],[134.01758873800023,34.54364655200011],[134.00513756600006,34.5338402360001],[134.00766035200016,34.53050364800008],[134.00863691500004,34.528550523000106],[134.01197350400005,34.520086981000176],[133.98316491,34.52863190300009],[133.96656334700003,34.50641510600003],[133.9538680350001,34.47382233300008],[133.93628991000017,34.45123932500012],[133.85906009200002,34.462876695000105],[133.82178795700005,34.46214427299999],[133.8264266290001,34.437567450000174],[133.79444420700008,34.44293854400002],[133.78052819099997,34.46336497600002],[133.76889082100004,34.488023179],[133.7438257170002,34.50584544500007],[133.73682701900023,34.50238678600005],[133.73047936300011,34.506984768],[133.7257593110002,34.51642487200003],[133.72339928500003,34.52757396000013],[133.716563347,34.520086981000176],[133.69996178500017,34.52594635600011],[133.6850692070001,34.520086981000176],[133.66944420700023,34.510809637000115],[133.64063561300011,34.50169505400014],[133.59620201900003,34.482326565],[133.58619225400017,34.47573476800012],[133.58334394600016,34.46869538000006],[133.5766707690001,34.46332428600003],[133.56885826900012,34.459906317],[133.55046634200008,34.45701732000008],[133.54330488400004,34.453070380000085],[133.53809655000012,34.44855377800003],[133.53207441500004,34.445013739000146],[133.47006269600016,34.423976955000015],[133.5092879570001,34.462103583],[133.52247155000023,34.48305898600013],[133.50114993600008,34.49217357000013],[133.49024498800011,34.48956940300003],[133.468516472,34.476996161000145],[133.4565535820001,34.47235748900012],[133.43034915500007,34.47296784100017],[133.41911868600005,34.46792226800015],[133.41480553500003,34.45123932500012],[133.42221113400015,34.445013739000146],[133.41244550899998,34.4244652360001],[133.341075066,34.348049221000096],[133.32553144600004,34.33681875200009],[133.29542076900006,34.32489655200014],[133.28174889400023,34.321519273000135],[133.269786004,34.322414455000015],[133.26465905000012,34.33173248900006],[133.26986738399998,34.33917877800003],[133.28223717500023,34.34271881700012],[133.29590905000018,34.345038153000175],[133.30551191500015,34.34882233300003],[133.31495201900023,34.36603424700003],[133.30469811300023,34.37759023600013],[133.28321373800011,34.38312409100017],[133.258474155,34.382310289000074],[133.258474155,34.38979726800012],[133.27662194100006,34.40176015800016],[133.26661217500023,34.420599677],[133.247325066,34.42649974200013],[133.2296655610002,34.376166083000086],[133.213226759,34.36310455900009],[133.1949975920001,34.35370514500009],[133.1821395190001,34.34137604400003],[133.20191491,34.32831452000015],[133.20866946700008,34.307806708],[133.20289147200018,34.28888580900018],[133.18555748800011,34.280503648000106],[133.17823326900012,34.282782294000086],[133.16578209700018,34.29230377800009],[133.16098066499998,34.29417552300005],[133.15560957100004,34.29181549700009],[133.1440535820001,34.28261953300013],[133.12517337300008,34.2762718770001],[133.10271243600008,34.25714752800003],[133.09327233200017,34.252630927000084],[133.07642662900017,34.25958893400014],[133.07064863399998,34.277248440000065],[133.07227623800011,34.31753164300015],[133.07691491000006,34.316717841000056],[133.0874129570001,34.32648346600017],[133.10328209700006,34.34511953300016],[133.11402428500017,34.35175202000012],[133.11793053500006,34.34227122600011],[133.11703535200013,34.326564846000146],[133.11329186300023,34.314113674000126],[133.13314863400004,34.31818268400009],[133.14747155000012,34.351385809000114],[133.16846764400023,34.35504791900017],[133.16846764400023,34.36249420800014],[133.15259850400005,34.37384674700011],[133.13428795700005,34.382310289000074],[133.12322024800002,34.384344794000086],[133.11329186300023,34.38397858300008],[133.1035262380001,34.384588934000035],[133.09327233200017,34.38979726800012],[133.07911217500023,34.382310289000074],[133.085785352,34.351019598],[133.05909264400003,34.33234284100003],[133.01832116,34.32330963700012],[132.91187584700006,34.314764716000084],[132.883067254,34.30459219000015],[132.85303795700017,34.28733958500014],[132.83619225400017,34.311102606000034],[132.81820722700004,34.303371486000046],[132.79908287900005,34.28400299700011],[132.778086785,34.273098049000126],[132.76221764400006,34.27033112200017],[132.76400800900015,34.26316966400013],[132.772797071,34.25340403900019],[132.778086785,34.24274323100015],[132.7714949880002,34.23529694200009],[132.75660241000017,34.232326565000065],[132.72657311300023,34.23212311400012],[132.7029728520001,34.225490627000156],[132.65626061300011,34.19928620000011],[132.62720787900005,34.197984117000104],[132.62224368600008,34.201890367000104],[132.61841881600006,34.20888906500009],[132.615570509,34.21548086100015],[132.61353600400017,34.21845123900009],[132.60425866000006,34.216620184000085],[132.59945722700004,34.2123070330001],[132.59652754000004,34.207424221000124],[132.59302819100006,34.204250393000066],[132.56617272200006,34.19196198100012],[132.55445397200003,34.19236888200011],[132.544688347,34.204250393000066],[132.559825066,34.2184105490001],[132.55062910200004,34.23086172100001],[132.533457879,34.244777736000074],[132.5210067070001,34.269761460000026],[132.50733483200017,34.283026434000035],[132.503672722,34.28733958500014],[132.50342858200005,34.30036041900003],[132.507090691,34.30841705900015],[132.50904381600017,34.31622955900015],[132.503672722,34.32831452000015],[132.51075280000018,34.32982005400011],[132.52312259200016,34.33429596600017],[132.53101647200018,34.335150458000086],[132.52613366,34.34560781500015],[132.51758873800011,34.353013414000046],[132.49683678500017,34.36249420800014],[132.48129316499998,34.35455963700018],[132.46168053500006,34.34955475500014],[132.44157962300008,34.35000234600012],[132.405528191,34.368068752000156],[132.38347415500002,34.36566803600003],[132.34603925899998,34.34882233300003],[132.3123478520001,34.326971747000144],[132.22250410200016,34.23895905200014],[132.23170006600006,34.22524648600002],[132.23829186300023,34.204250393000066],[132.24040774800002,34.18980540600002],[132.24366295700005,34.166937567],[132.23894290500007,34.14264557500003],[132.22754967500012,34.132025458000086],[132.21371504,34.12433502800015],[132.20191491000006,34.108587958],[132.199066602,34.06476471600014],[132.21094811300023,34.02521393400009],[132.21322675900004,33.98965078300013],[132.18148847700016,33.95783112200009],[132.15723717500006,33.94891998900006],[132.14258873800006,33.94643789300012],[132.13559003999998,33.93842194200009],[132.13379967500012,33.913397528000175],[132.13892662900005,33.894964911000145],[132.15992272200006,33.85732656500015],[132.16163170700005,33.841701565000065],[132.150075717,33.83014557500006],[132.10580488399998,33.809027411000116],[132.07593834700015,33.78705475500011],[132.05591881600003,33.77716705900009],[132.04135175900004,33.77627187700001],[132.0444442070001,33.79328034100017],[132.06544030000012,33.80695221600011],[132.06885826900023,33.81167226800004],[132.0763452480002,33.826727606000034],[132.07846113400004,33.83490631700014],[132.0871688160001,33.825100002],[132.09888756600017,33.82363515800013],[132.10889733200005,33.830267645000035],[132.11329186300023,33.84487539300012],[132.109222852,33.86261627800003],[132.09945722700013,33.87225983299999],[132.08708743600013,33.878566799000126],[132.075450066,33.88641998900012],[132.0577905610002,33.89524974200016],[131.99480228000007,33.91347890800016],[131.97234134200008,33.91681549700009],[131.966563347,33.9215355490001],[131.9419051440001,33.950913804],[131.93091881600006,33.95697663],[131.90333092500023,33.96670156500012],[131.89356530000012,33.97142161700005],[131.87086022200003,33.98851146],[131.85206139400012,33.99835846600011],[131.83366946700008,33.99469635600015],[131.812266472,33.97142161700005],[131.82650800900004,33.97142161700005],[131.82650800900004,33.96523672100007],[131.79135175900015,33.96405670800006],[131.77955162900014,33.96967194200015],[131.77751712300008,33.98574453300012],[131.80730228000007,34.005804755],[131.82390384200014,34.02016836100016],[131.82276451900006,34.02667877800015],[131.8136499360002,34.02875397300009],[131.79957116000006,34.0377464860001],[131.74146569100012,34.05621979400003],[131.703379754,34.044175523000106],[131.688731316,34.047186591000106],[131.67611738400004,34.04018789300012],[131.64486738400015,34.028876044000135],[131.6334741550002,34.02667877800015],[131.60621178499997,34.02667877800015],[131.60173587300002,34.03001536700019],[131.59815514400017,34.0360375020001],[131.5932723320001,34.037298895],[131.5851343110002,34.02667877800015],[131.59400475400005,34.01532623900009],[131.59742272200006,34.00263092700011],[131.59302819100006,33.991685289000074],[131.57886803500006,33.98574453300012],[131.57178795700005,33.985174872000144],[131.56763756600006,33.98627350500011],[131.56568444100017,33.98965078300013],[131.5651961600001,33.99628327],[131.56226647200018,34.00462474200016],[131.5561629570001,34.005194403000026],[131.55111738400015,34.00214264500012],[131.55103600400017,33.99941640800007],[131.519297722,34.008490302000084],[131.51050866000006,34.012396552000055],[131.49301191499998,34.02814362200003],[131.48292076900023,34.032049872000115],[131.46900475400017,34.02667877800015],[131.47380618600008,34.01862213700012],[131.47429446700002,34.013983466000084],[131.46900475400017,34.00617096600011],[131.46631920700005,34.00678131700006],[131.4567163420002,33.99933502800009],[131.45533287900005,33.99315013200011],[131.45199628999998,33.98956940300015],[131.45183353000002,33.98590729400008],[131.44955488400015,33.982245184000035],[131.44117272200018,33.97890859600001],[131.43433678500017,33.9802106790001],[131.42823326900012,33.98590729400008],[131.4235132170002,33.99310944200012],[131.42058353000007,33.99941640800007],[131.41553795700023,33.989406643000095],[131.4096785820001,33.98305898600016],[131.40251712300002,33.98139069200015],[131.39332116000017,33.98574453300012],[131.40219160200004,33.99933502800009],[131.40479576900012,34.01727936400012],[131.40064537900017,34.03294505400011],[131.38990319100014,34.03974030200014],[131.38314863400004,34.033026434000085],[131.35572350400017,33.989447333000086],[131.33253014400023,33.96210358299999],[131.3219507170002,33.95307038],[131.2722274100001,33.92682526200015],[131.2579858730002,33.92479075700014],[131.24984785200016,33.937933661],[131.24252363400015,33.93447500200009],[131.23357181100002,33.933050848000114],[131.22584069100006,33.935003973000065],[131.22266686300017,33.94135163000003],[131.22071373800011,33.950384833000115],[131.21583092500023,33.95075104400003],[131.20923912900017,33.94725169500004],[131.20215905000012,33.944769598000036],[131.200368686,33.94253164300012],[131.19467207100016,33.93764883000016],[131.1870223320001,33.932766018000095],[131.17823326900023,33.93048737200003],[131.173187696,33.93398672100001],[131.1706649100001,33.94188060099999],[131.16026595300016,33.95279605600014],[131.16153708300018,33.96437425400013],[131.16684003999998,33.97239817900011],[131.16602623800006,33.977118231000034],[131.15739993600008,33.97890859600001],[131.1239987910001,33.99993139600003],[131.10316468400006,34.03021689000015],[131.07242398400004,34.03699727700011],[131.035594808,34.047975095000155],[131.01396225400018,34.01476201500012],[130.96859785200016,33.97142161700005],[130.93208630100006,33.945365284],[130.92629066500004,33.92269067000011],[130.9157534550002,33.91398982200015],[130.89918053500003,33.92426178600006],[130.8937280610002,33.932318427],[130.87940514400012,33.937933661],[130.88022440100022,33.95043178000019],[130.89942467500018,33.94985586100013],[130.90965033600017,33.973651604000096],[130.90772545700023,33.98493073100012],[130.91342207100004,33.99941640800007],[130.91713452200005,34.01091306300016],[130.91281170100015,34.02192067800011],[130.90528405000012,34.029608466000084],[130.912577397,34.053341562000085],[130.90391367800024,34.06582577800019],[130.87842858200023,34.067857164000124],[130.87322024800002,34.07819245000003],[130.86931399800002,34.091742255],[130.86280358200023,34.10179271000008],[130.86158287900005,34.11273834800015],[130.87322024800002,34.12909577000006],[130.88648522200015,34.13898346600017],[130.89926191500004,34.14565664300012],[130.91114342500023,34.15448639500009],[130.92090905000012,34.17064036700005],[130.92335045700023,34.18378327],[130.92025800900015,34.19257233300006],[130.91578209700018,34.19969310100011],[130.91041100400005,34.224920966000084],[130.8967391290001,34.244818427000084],[130.8937280610002,34.25604889500009],[130.89161217500006,34.25983307500009],[130.87623131600003,34.270005601000044],[130.87159264400012,34.27924225500011],[130.87533613400015,34.286688544000086],[130.8820093110002,34.293402411000116],[130.88624108200023,34.30044179900001],[130.88965905000023,34.331203518000095],[130.89307701900023,34.34349192900014],[130.89991295700014,34.35504791900017],[130.91114342500023,34.35089752800003],[130.9274194670002,34.348944403000175],[130.9419051440002,34.350978908000016],[130.94825280000015,34.3587914080001],[130.95476321700008,34.361721096000124],[130.99610436300011,34.36933014500006],[131.01172936300003,34.37596263200011],[131.03360681,34.38178924000012],[131.01788186800005,34.39329681000014],[131.00359134200008,34.39288971600011],[130.96509850400017,34.39996979400017],[130.95508873800011,34.403469143000066],[130.94890384200014,34.39500560100011],[130.94629967500012,34.39240143400012],[130.93392988399995,34.39598216400019],[130.93921959700006,34.40770091400016],[130.94776451900006,34.418931382],[130.95875084700006,34.42743561400012],[130.97639607600001,34.43896729200016],[130.98973169800004,34.435038253000144],[131.00284535400024,34.425946289000144],[131.00114993600002,34.41486237200003],[131.00977623800023,34.41030508000007],[131.02263431100008,34.409369208],[131.03728274800008,34.411118882],[131.0509546230002,34.41518789300015],[131.06120853,34.42084381700014],[131.07471764400012,34.42475006700012],[131.09937584700018,34.413275458],[131.11571755700007,34.40979405500018],[131.13392298800002,34.411561804000044],[131.1407983730002,34.37848541900014],[131.15365644600004,34.36933014500006],[131.17269941500004,34.367743231000034],[131.178957564,34.378775997000034],[131.1917016570002,34.39364779300003],[131.173594597,34.41022370000009],[131.17058353000013,34.416815497000165],[131.17131454900013,34.42953460500014],[131.19271894599999,34.42475006700012],[131.20736738400004,34.42894114800008],[131.23487389400023,34.43349844],[131.25263176100012,34.43738699200016],[131.26453684000012,34.428087194000014],[131.28121391700003,34.40795780000012],[131.2662558520001,34.4094488410001],[131.2510269640002,34.41913055400012],[131.24101992700017,34.421183598000184],[131.22950280000003,34.41771067900008],[131.22201582100004,34.40839264500012],[131.21607506600017,34.39691803600009],[131.21176191499998,34.38377513200011],[131.20899498800023,34.36933014500006],[131.21607506600017,34.37230052300008],[131.22877037900005,34.38019440300015],[131.23617597700004,34.382310289000074],[131.28448215100005,34.384211288000145],[131.32309029500004,34.393011809000186],[131.33473090300006,34.416114291000056],[131.36505001200013,34.41565087500008],[131.414317254,34.423976955000015],[131.4133146280001,34.45387373300012],[131.42640717300017,34.46564545000014],[131.4562280610002,34.49038320500013],[131.46192467500012,34.49925364799999],[131.45476321700008,34.519110419000086],[131.46176191500004,34.523504950000174],[131.4826766290001,34.52757396000013],[131.52076256600017,34.551906643],[131.53646894600016,34.56561920800014],[131.55103600400017,34.581529039000046],[131.55543053500006,34.592189846000096],[131.55729919400002,34.614856999],[131.5647924990001,34.61949431700019],[131.58518438800016,34.61842166400008],[131.5958764980002,34.61684804900007],[131.59424889400006,34.62567780200014],[131.59410358500023,34.64205125400004],[131.5968715730002,34.65958937200004],[131.61524189000014,34.66488063600015],[131.62940514400023,34.65924713700015],[131.65641471600006,34.65358629000012],[131.6708585570002,34.66281777400008],[131.67335498800014,34.670931860000096],[131.68033219599997,34.67464904300006],[131.7115991550001,34.67157623900012],[131.74608180700014,34.675353457000185],[131.7903751960001,34.68610260600015],[131.8229558310002,34.698283032000134],[131.8407843850001,34.705328510000086],[131.85840905000023,34.71450429900007],[131.86312910200016,34.73749420800006],[131.86687259200008,34.746039130000085],[131.87375767000015,34.759222877000134],[131.89633222700016,34.76292552300007],[131.9013219030002,34.77045129700015],[131.92378849800005,34.78785980400009],[131.95700657400002,34.81303024300008],[131.99732506600014,34.837225653000175],[132.02116946700008,34.86587148600013],[132.0345512000001,34.876579005000124],[132.0538843110002,34.872259833000086],[132.06055748800023,34.88568756700006],[132.06330411800005,34.907489343000165],[132.11117597700004,34.94310130400008],[132.13184655000023,34.95864492400007],[132.15794037100002,34.97613237400015],[132.2163192070001,35.013576565000065],[132.23649497000022,35.034818088000165],[132.27084188700007,35.040329058000154],[132.29361034800016,35.04840696100017],[132.3168499870001,35.062346339000115],[132.32659426800015,35.09206984399999],[132.35704074200024,35.11120724300017],[132.37994884300022,35.12498077800008],[132.3892122780001,35.13482940100006],[132.38657425800014,35.14553759200011],[132.4023543630002,35.16046784100017],[132.408084915,35.17505067800006],[132.46767755800008,35.213148079000014],[132.4958267010002,35.232455210000026],[132.52971849900004,35.24491322199999],[132.53193742200008,35.25767159600012],[132.55026525600024,35.26243229300012],[132.57561724500025,35.27327009700004],[132.6211415370001,35.28444409600017],[132.63867918900004,35.294644673000114],[132.6513954430001,35.31292353300013],[132.66334675600004,35.32953554900017],[132.6714464620001,35.35512813600012],[132.67413653100007,35.372037254000034],[132.67402321100022,35.38542475600015],[132.67079114300012,35.3994745880001],[132.653742456,35.406869889000134],[132.6311420550002,35.41981396300018],[132.62380835800005,35.43106990400007],[132.63535916900014,35.44095469500008],[132.65587637100012,35.44299398600016],[132.68209873600017,35.449016416000106],[132.70144369900007,35.44921971800012],[132.7344381420002,35.44863223200012],[132.7485510070002,35.451549379000156],[132.75473933400022,35.4562450750001],[132.74447675899998,35.46356842700011],[132.72549563500016,35.47077964400002],[132.73627944100022,35.47274245600006],[132.75271983700006,35.477077635000015],[132.7754265140001,35.48100749600012],[132.80482662200018,35.49518180100013],[132.8376793790001,35.50612318400012],[132.86490913700007,35.5109826810001],[132.92223136400006,35.513175013000065],[132.94636538000012,35.51867749700013],[132.96973717500023,35.51699453300016],[132.97320551100003,35.54188385],[132.99148534400015,35.54455131400009],[133.01439948700025,35.54078011700007],[133.03348937900012,35.545992142],[133.04249238800006,35.56152796900009],[133.051772182,35.573730325000106],[133.06460060500007,35.580271302000156],[133.0814422240002,35.57532590200016],[133.09134539000016,35.587538772000165],[133.09126101299998,35.60148491100007],[133.10535285100016,35.59751658900008],[133.11973193300017,35.58490697300003],[133.14142764200008,35.57016529100012],[133.15646656900017,35.56262168500017],[133.18966112899997,35.57190753200002],[133.20706772900022,35.572828130000076],[133.22473074000018,35.58294498500014],[133.23016293200013,35.578197844],[133.22315514400012,35.56850820500013],[133.22803795700005,35.56468333500011],[133.2393363700002,35.56361480200009],[133.24625319200004,35.567319817000126],[133.26637679800004,35.57423650500009],[133.2867788330001,35.576192753000115],[133.3087723730001,35.577188578000076],[133.32601972699996,35.56850820500013],[133.31290421499997,35.561976121000114],[133.29887426200008,35.55863831700019],[133.28692853600015,35.55372692200014],[133.27013504800001,35.54961013700012],[133.25749759200008,35.53620026200012],[133.25473066499998,35.53384023600016],[133.25416100400005,35.52179596600014],[133.26050866000017,35.509955145],[133.26465905000012,35.49616120000009],[133.2945431630002,35.480416463000054],[133.32962562100013,35.46550438700008],[133.36085745400007,35.46041669200012],[133.38068988100022,35.45641486000012],[133.40015709700006,35.454291083000086],[133.41741190900004,35.456542965000054],[133.4412450890001,35.49103766500009],[133.4927550040002,35.51036183600017],[133.52559462700017,35.522426992000035],[133.58018171100017,35.53360274200004],[133.63256824800024,35.52132835600018],[133.7311446420001,35.50290661400008],[133.91154673700024,35.514594572000085],[134.0083833370002,35.537048923000086],[134.03478971200013,35.519355662000024],[134.1736617270001,35.53627136000013],[134.2377651610001,35.54665120600011],[134.2620657580001,35.5535877870001],[134.28158613400015,35.56488678600009],[134.29387121,35.585893956000135],[134.34262129000004,35.59381745000009],[134.35206139400023,35.594183661],[134.36150149800008,35.59577057500003],[134.37649117900017,35.611184255000026],[134.41382264900008,35.62113994],[134.4662148620001,35.63755465300012],[134.49809573600012,35.65387932700018],[134.53698730900024,35.67220309900009],[134.59020875200022,35.65942839100005],[134.647447132,35.664265416000134],[134.69147450199998,35.66344715900003],[134.76690713200017,35.666559192000115],[134.7982952040002,35.665642253],[134.81341933700006,35.66237377200012],[134.83413714400015,35.65714558500015],[134.84234804400015,35.64536533400015],[134.86324991300003,35.65827840100009],[134.8809682460002,35.657322495000145],[134.88504753500004,35.64591375200013],[134.89774949200003,35.64916184900012],[134.9157038330001,35.6443674340001],[134.92701256600017,35.641180731000034],[134.94727623800011,35.65485260600015],[134.95362389400023,35.65790436400005],[134.96371503999998,35.66103750200013],[134.959622177,35.6737532450001],[134.98794378000017,35.689777236000154],[135.010843852,35.69111295300017],[135.02903154200013,35.69286863100005],[135.04482240700023,35.701739221000096],[135.08578535200016,35.7259789080001],[135.08411983599999,35.739022447000096],[135.13430528700022,35.75190130600008],[135.18384850400003,35.76023997600008],[135.21013431100008,35.763373114000146],[135.22684561200006,35.772320652000175],[135.25066024000014,35.757815497000124],[135.26172936300023,35.739813544000086],[135.27670332100016,35.73139069200015],[135.29249108200008,35.711655992000104],[135.304047071,35.68891022300009],[135.30616295700023,35.67153554900001],[135.29932701900023,35.65790436400005],[135.279213719,35.66853270000014],[135.25882700300014,35.65682881300016],[135.24641517800003,35.635520248000105],[135.24239393500002,35.62264035600005],[135.23275540000012,35.614214043000075],[135.20490238300022,35.58735277400014],[135.18817537200002,35.56504457600009],[135.18832423199999,35.54525757600008],[135.19604082100014,35.53989476800008],[135.2066726620001,35.541467856000125],[135.20808418200002,35.559053898000016],[135.22169030000012,35.56793854400017],[135.235246464,35.5845484850001],[135.2482255020002,35.591694479000026],[135.25342858200023,35.571275132000025],[135.2654376800002,35.56707533200016],[135.27091067100005,35.56292289500011],[135.26204205600007,35.55754659600008],[135.2519570970001,35.55731581800008],[135.23981521900023,35.55796303400008],[135.23873893399997,35.54202559100018],[135.301521966,35.51324263100004],[135.3161775240001,35.51833756300009],[135.32443612400002,35.524446383000154],[135.33548989200006,35.50821008500013],[135.32956419600023,35.49475491900007],[135.3249617850001,35.48566315300012],[135.31527754000004,35.46678294499999],[135.31348717500023,35.45864492400007],[135.31902103000007,35.44696686400006],[135.33025149800008,35.45453522300012],[135.33975730700004,35.471122489000045],[135.35251785900007,35.48698418600016],[135.3705039350002,35.486126458000065],[135.394867384,35.47646719000015],[135.40235436300006,35.48216380400011],[135.40235436300006,35.507025458000086],[135.3737899100001,35.50169505400011],[135.35022402500024,35.510313448000076],[135.33779621900013,35.53747756400009],[135.36133873800006,35.554185289000074],[135.37370853000013,35.557684637000065],[135.40284264400003,35.55817291900003],[135.41602623800011,35.56167226800012],[135.42595462300014,35.569810289000046],[135.43555748800011,35.580023505000085],[135.439480998,35.59056974300013],[135.46322209200017,35.60332739600001],[135.45824425800004,35.58698726200011],[135.45238978900014,35.571781119000136],[135.47003048600013,35.56595953900002],[135.48293768600004,35.55919918800013],[135.47876070499998,35.5437247900001],[135.48047936300011,35.533880927000055],[135.4786889980002,35.527289130000085],[135.47901451900023,35.52252838700018],[135.48829186300011,35.52069733300003],[135.4956160820001,35.52391185100008],[135.50269616000014,35.53164297100007],[135.51221764400023,35.548041083000086],[135.512461785,35.52985260600009],[135.50863691499998,35.51190827000015],[135.51099694100006,35.498195705],[135.52955162900005,35.49274323100017],[135.5582788420002,35.491766669000114],[135.56739342500006,35.49274323100017],[135.5768335300002,35.49599844000012],[135.59644616000017,35.5051130230001],[135.6052485650001,35.51716843800007],[135.62479780900006,35.53234396900008],[135.6489451780002,35.54283352900016],[135.66976972699996,35.53436920800014],[135.66476622100018,35.52966431400013],[135.6419242860001,35.52171835000003],[135.63461347700004,35.4935570330001],[135.6220809250002,35.48655833500011],[135.64506572400015,35.48020001400009],[135.69668606000008,35.491842543000175],[135.72443120100004,35.49073208600011],[135.73803636400024,35.49873863800009],[135.74835148300005,35.51371915000014],[135.74819794300006,35.53352542000014],[135.7208013960001,35.522304815000055],[135.70860440900003,35.54055094000002],[135.6916358970001,35.545877196],[135.706093332,35.562094618000074],[135.73844643100003,35.57053137300003],[135.74804468900018,35.56420434400012],[135.75613707800008,35.54907241500014],[135.77725798100013,35.549856049000155],[135.79405025600025,35.53138182200014],[135.8104995360002,35.52686268400005],[135.83432050900004,35.53436920800014],[135.823496941,35.53839752800012],[135.816172722,35.54596588700015],[135.80150220300007,35.56800346200011],[135.80425490399998,35.57517476400009],[135.81543350100006,35.57759158100013],[135.82589045699999,35.569355551000065],[135.84012939600004,35.57341458900011],[135.85474694100014,35.579046942],[135.85157311300023,35.58641185100002],[135.84449303500017,35.59174225500006],[135.83757571700008,35.59918854400014],[135.83432050900004,35.61318594],[135.83025149800008,35.61713288],[135.81601831600003,35.63085602400009],[135.8116846050001,35.64340581100011],[135.82322255600016,35.64462096100003],[135.84086572400022,35.633654492000105],[135.8537571100001,35.624919698],[135.86784078100018,35.61775318300009],[135.90184741800024,35.62436015600015],[135.90976709600014,35.61496274900012],[135.91944111600006,35.60816038200012],[135.93958658900013,35.61843882000015],[135.95093848200023,35.62888168500008],[135.97105288200024,35.625981151000175],[135.9805736110001,35.630480591000136],[135.9816676190001,35.64363788800013],[135.9635403680002,35.65540930800002],[135.97315915800007,35.676211190000075],[135.97437115000017,35.69094901400011],[135.97008375400017,35.70299009100002],[135.9564480600001,35.700565187000116],[135.95600508100014,35.72832493600004],[135.9815435300002,35.73985437800009],[136.0197052660001,35.765347201000154],[136.03356317100022,35.74622550600013],[136.03132091400008,35.73807644700015],[136.0388901890001,35.72250611599999],[136.04684700500005,35.7037218980001],[136.04195814200003,35.691469317000085],[136.03195403100003,35.6916264260001],[136.02700644400014,35.68094741500009],[136.043295777,35.670166946],[136.04745939000006,35.658812258000026],[136.069114354,35.661879743],[136.0746212,35.67903153500011],[136.08138118700006,35.68419368000009],[136.08359542400004,35.69044927400016],[136.082647693,35.704394761000074],[136.09239818700004,35.71516472700007],[136.09263301800004,35.724638680000155],[136.09295815800013,35.743115180000174],[136.09986412900017,35.759833075000145],[136.09945722700016,35.775702216000084],[136.08821240900014,35.79529407300011],[136.07668286700005,35.811738073000086],[136.07049761300007,35.82474933100009],[136.04880787900018,35.83866838800007],[136.0122667100002,35.870980305000145],[135.9934540640002,35.885142117000115],[135.99535838000006,35.9131084000001],[135.99438018900017,35.9359127820001],[135.97070755600006,35.96006407300014],[135.95728600400017,35.97313060100011],[135.96321741100022,35.999923222000135],[135.9873431540001,36.01173328500012],[136.00013238900013,36.024186827000065],[136.01791425900004,36.05744049700009],[136.03109785200016,36.08071523600002],[136.04361081500016,36.11083253800013],[136.09282041200018,36.16136324400016],[136.10754939400007,36.18516511200009],[136.12015485700007,36.199754698],[136.13484480500009,36.2245523940001],[136.11942239700008,36.24644448900001],[136.12417327600022,36.253179332000016],[136.14491123500014,36.25427923600007],[136.1626271250001,36.25224221100011],[136.19673780600024,36.264362164000076],[136.278667388,36.322405775000064],[136.29841744100005,36.34727817000011],[136.34677884800007,36.36580091000003],[136.3822934450002,36.391071368000084],[136.43018639400012,36.43252187700009],[136.63996143100022,36.662600574000024],[136.6896847930001,36.730826931000095],[136.76055452600022,36.87059936100003],[136.7656337970002,36.88952789300007],[136.765448029,36.91339711100006],[136.75823829400005,36.91931265700005],[136.75038571000007,36.92572910200009],[136.75195861900025,36.935416431000036],[136.76093284200007,36.95239759500005],[136.76761331400022,36.98099874800006],[136.7599096760001,37.000087101000176],[136.7422883710001,37.01338806100016],[136.7315599890001,37.047648676000094],[136.72044825800006,37.05499833000006],[136.71841293800006,37.07626148900009],[136.7267358730002,37.126613674000154],[136.720960846,37.142047501000135],[136.70856414900007,37.14987732700014],[136.69842979700013,37.14759712700011],[136.69626613100004,37.13636152400015],[136.6764437830001,37.13740149600012],[136.67025890300025,37.149957088000164],[136.67447257100017,37.17547192100007],[136.68200941000006,37.19905012400015],[136.69042389300014,37.21500773200002],[136.70557701900006,37.22825755400014],[136.69783547500012,37.239542596000106],[136.71277116100006,37.25106551400015],[136.72614534199997,37.26963998000012],[136.73321719800018,37.285014846000095],[136.7244348510002,37.297491111000156],[136.72153094200021,37.325329539],[136.74909419400004,37.35791740000011],[136.78376714400002,37.37389233900008],[136.84217066699998,37.399532772],[136.88079850700015,37.407986994000154],[136.9034835250002,37.3983233680001],[136.93476613600015,37.399457018000035],[137.04487433600005,37.44791639099999],[137.07153452100013,37.45300312900003],[137.09133864200012,37.47263502],[137.11384056300002,37.487746918000184],[137.25549087500022,37.52459398900005],[137.295709888,37.53149016499999],[137.34096555900013,37.517094138000104],[137.35087377100015,37.50610344200014],[137.34369685500005,37.48666688600015],[137.34529929800013,37.475020106],[137.3589792720001,37.46663506600005],[137.35613040500002,37.453192450000174],[137.35120513000012,37.44567560400012],[137.32513608100007,37.439111553000046],[137.30783313499998,37.439808897000106],[137.28725280900008,37.44297530500007],[137.26812894400004,37.43649042400007],[137.25360123900006,37.42910590200013],[137.2459830050001,37.41355557100012],[137.2373636090001,37.37988162000012],[137.24887841499998,37.35726027800008],[137.26748553400003,37.35508577600002],[137.2653492120002,37.339807303000114],[137.26254497500017,37.32604948699999],[137.25582138300004,37.315260486],[137.23766775000016,37.30170764600014],[137.23023522200018,37.29214101800015],[137.20918093000003,37.293031904000046],[137.16560551600006,37.30083373900014],[137.10872138900007,37.28344965100008],[137.09287312299998,37.26136598400005],[137.07130008,37.238111731000046],[137.07066671599998,37.21864397800006],[137.05436953700007,37.210183746000105],[137.03289212600012,37.20466420300015],[137.02695161400018,37.19136096500013],[137.01417076900006,37.184881903000175],[136.980235222,37.196478583],[136.96022288300006,37.20733866900018],[136.94588300800015,37.21718561900009],[136.95634768100004,37.22806693100007],[136.95995418700002,37.234720022000076],[136.95106995500024,37.23448289400007],[136.94180612000017,37.224720176000105],[136.93043053500006,37.22162506700006],[136.92652428500006,37.21352773600013],[136.916567793,37.198207266000125],[136.89259776400016,37.17332110000011],[136.88021545300015,37.144152871000145],[136.89566763700023,37.138904078],[136.89323421900022,37.11753438400014],[136.88775294,37.11031842000012],[136.86867050100014,37.11091236500006],[136.86811660400022,37.08910758899999],[136.86092618400016,37.07677545000014],[136.87468509200008,37.069647528000054],[136.89332116000006,37.073065497000144],[136.91423587300017,37.082424221000096],[136.93360436300011,37.079820054],[136.96322675900015,37.051743882],[136.98012596200024,37.04685964],[137.00399162800002,37.055457543000145],[137.02429826600022,37.0954088860001],[137.0386867560002,37.10282104000002],[137.04712975400005,37.098822333],[137.05396569100017,37.079820054],[137.04884394200022,37.02292600100019],[137.054446199,36.966749864000164],[137.0274145230002,36.93884298800013],[137.02504011600004,36.913947227],[136.98774156099998,36.87102163700017],[137.00554446700005,36.83592357000013],[137.05291460800007,36.811043985000126],[137.08069630200012,36.79008655300008],[137.1280203570001,36.77683954300012],[137.156993035,36.76080963700012],[137.19728775100018,36.758124588000086],[137.24144195900024,36.7650677510001],[137.29867296700016,36.75700875800014],[137.33334435900022,36.762726067000145],[137.35053007200023,36.782309098000056],[137.38360579600024,36.800145455000134],[137.39490546800013,36.827222804000186],[137.40835627700008,36.845203748000145],[137.41297129300008,36.86201101800016],[137.41953143800012,36.877335457000136],[137.41376453899997,36.8968921080001],[137.4271076690001,36.92201115800013],[137.44760175900012,36.93353913000014],[137.49934696500011,36.95574161700007],[137.58673320500006,36.96989386400007],[137.68327884200014,36.987982489000146],[137.80754467900005,37.0308052380001],[137.89673912900005,37.057521877000156],[137.9993741320002,37.11105409800017],[138.05339603000004,37.13011302300004],[138.07683353000007,37.14972565300012],[138.09750180400025,37.171059352],[138.16443255600015,37.16169930800005],[138.20695325900024,37.16920530200018],[138.24489497900012,37.183789445000016],[138.32510269600007,37.23104347200017],[138.43751590900013,37.32203684800008],[138.550629102,37.377915757000025],[138.57797285200016,37.40289948100012],[138.5968302050001,37.43529360200007],[138.62253960700008,37.47754346900014],[138.65973457800018,37.524432604000125],[138.7182723320001,37.564846096000124],[138.74659264400023,37.596869208000115],[138.76563561300023,37.63467031500009],[138.80942573500013,37.760771879000075],[138.8270238700002,37.797286966000044],[138.85767662900005,37.82782623900009],[138.93039446900005,37.8749231770001],[139.05988081300004,37.945941670000096],[139.06819343600012,37.9550938520001],[139.09133915000018,37.95465830800013],[139.13246598800018,37.958828931000035],[139.215943141,37.98993395400011],[139.2390621950001,38.00315458200011],[139.30453535200004,38.04193756700012],[139.40805097700016,38.13190338700012],[139.42514082100004,38.15127187700013],[139.43238366000006,38.169134833],[139.46216881600006,38.37498607000005],[139.47282962300008,38.41250234600007],[139.49268639400006,38.45416901200004],[139.52995853000007,38.508002020000056],[139.5800887380002,38.60687897300009],[139.59921514900012,38.6482540870001],[139.62705899900016,38.68121429300008],[139.71615644600016,38.74567291900017],[139.74740644600004,38.77895742400007],[139.7738443330002,38.8171167740001],[139.81527369900007,38.94106263500007],[139.85756396100012,39.032283771],[139.86730564500013,39.06222210900016],[139.8740340500002,39.09845612200003],[139.880625847,39.11473216400016],[139.89193769599999,39.133205471000096],[139.89584394599999,39.152289130000085],[139.8979598320001,39.193304755000085],[139.9035814390002,39.22493941099999],[139.91684255200008,39.26249903000003],[139.93181044000002,39.28711183400009],[139.96357962400018,39.29882013200002],[139.9953101900002,39.32732856000008],[140.02024245400005,39.407581423000025],[140.04857715,39.504669646000124],[140.0593338790001,39.69806625600013],[140.05929588100005,39.72749224900017],[140.03911708700005,39.76928182100009],[140.0390897680002,39.79328263100014],[140.0275985040001,39.824530341000084],[140.00456790500002,39.85089752800009],[139.96648196700002,39.880072333000136],[139.92139733200005,39.898504950000174],[139.87745201900023,39.892808335],[139.86426842500006,39.88222890800013],[139.8548283210001,39.870835679],[139.8437606130002,39.86176178600009],[139.82553144600016,39.85805898600013],[139.76010175899998,39.85805898600013],[139.75180097700004,39.86627838700004],[139.7381291020001,39.89191315300009],[139.73015384200002,39.90273672100001],[139.7086694670002,39.924261786000116],[139.70417209300004,39.94515720100016],[139.71943758300014,39.95214135600009],[139.7009900410002,39.960661148],[139.6977306690001,39.98856648200017],[139.70063931300004,40.00563611200012],[139.74345199600023,39.98246393300017],[139.80046634200008,39.962591864000146],[139.82211347700016,39.9610863300001],[139.86692463200015,39.98429728600017],[139.90419316100005,40.01769512100013],[139.97803795700005,40.12547435100005],[139.99350019599999,40.16962311400012],[139.9886109490002,40.191113804000146],[140.00284171800004,40.22243970300009],[140.011152099,40.235458420000086],[140.0198987270002,40.333210383],[140.02426296100015,40.35501606700013],[140.0117337610001,40.367858908000144],[139.99857651000016,40.377159865000024],[139.96345548100004,40.40392272000015],[139.94605553500017,40.41885000200015],[139.94263756600003,40.434393622000144],[139.94564863400015,40.478094794000135],[139.94353274800002,40.52142975500011],[139.9427863330002,40.54458555800015],[139.93097830900004,40.554438087000094],[139.9285027550001,40.5709704450001],[139.9151545130002,40.58617340700006],[139.87639612100006,40.58343784600014],[139.85678144600004,40.59015534100011],[139.86036217500012,40.6087914080001],[139.88038466000015,40.62523255400011],[139.90029743700003,40.64247505800007],[139.92584199900003,40.646821001000134],[139.93862407599997,40.66984990800013],[139.9595404300001,40.677692515000146],[139.97013709000024,40.69364988299999],[139.98687739300013,40.71789968300014],[139.9981561650002,40.742104090000154],[140.045977276,40.767770087000045],[140.06931012100003,40.765582512000044],[140.095138097,40.749274192000094],[140.10761801300012,40.744073018000094],[140.12235871800013,40.74476553400008],[140.1401394100001,40.74957629000015],[140.15477446200006,40.76144824300012],[140.19803808700007,40.786452543000145],[140.21908790400002,40.778334680000015],[140.24057050900004,40.78351471600016],[140.25806725400017,40.795640367000075],[140.270762566,40.812404690000086],[140.29664147200006,40.87376536699999],[140.30925540500013,40.93622467700011],[140.316254102,40.95441315300012],[140.31511478000007,40.97850169500004],[140.31923817499998,40.99972153500012],[140.32192155800024,41.02744519700009],[140.32483389399997,41.027461359000185],[140.34099368600008,41.005072333],[140.34982602400024,40.99825666700015],[140.36228565300001,40.99287923600012],[140.36959444000004,40.986054691000064],[140.3823348320001,40.98826732],[140.37587989300008,41.012368050000035],[140.369628538,41.02166163200012],[140.37686074100023,41.02800865300016],[140.38558219700022,41.02942508400004],[140.396510861,41.02701276800009],[140.4077925830001,41.02569846100006],[140.4044618930001,41.034181320000116],[140.39898677500005,41.03937203000005],[140.37897206000002,41.03816656600016],[140.36805368100005,41.038384703000176],[140.35058592000004,41.03884449200002],[140.3443561710001,41.044021820000026],[140.34066533100005,41.05003493300008],[140.33378513300013,41.04561140300011],[140.32690482000007,41.04118680800012],[140.32395648300022,41.04528458400015],[140.32264494100005,41.07050782800008],[140.3218520830001,41.08292085900013],[140.3001619810001,41.11127729200017],[140.28179542800004,41.11920156000014],[140.264729823,41.12099656200008],[140.2480954490002,41.12336100200015],[140.24547704799997,41.1338738460001],[140.25618438200016,41.13889667800011],[140.28150475400003,41.140366929],[140.30397109100014,41.13668050100016],[140.32043302000002,41.14977976200005],[140.32936704900024,41.17211254600012],[140.33277428500017,41.19131094000009],[140.32837975400017,41.20132070500007],[140.33008873800011,41.21185944200012],[140.33277902700004,41.23715340900007],[140.34100620700022,41.24646276100019],[140.33822086800015,41.25889596300014],[140.3422830430001,41.265731298],[140.3591475530002,41.253949598000055],[140.37906395299999,41.24411441700011],[140.39148121400015,41.24044348400007],[140.40943444100006,41.224676825000174],[140.43580162900005,41.19814687700001],[140.4622480400001,41.18388740700014],[140.48367398100018,41.18346812600008],[140.5110675550001,41.19771902400005],[140.52475613,41.219976407],[140.5485975940002,41.22624299300015],[140.59390699100013,41.220177940000056],[140.63270238300018,41.194257795],[140.64266573200015,41.171379147],[140.6370113940001,41.144747396000135],[140.63461347700004,41.11546458500014],[140.63103274800002,41.105658270000035],[140.63152103000002,41.09308502800003],[140.63697350400017,41.07192617400003],[140.64128665500007,41.04148997600008],[140.65455162899997,41.008490302],[140.67302493600002,40.89557526200004],[140.70312167000017,40.85329202300012],[140.75240251100004,40.835186570000175],[140.79922346800006,40.83908125099999],[140.83074893500006,40.866838042000055],[140.85206829100005,40.88384872400012],[140.87072639900006,40.915135476000025],[140.86570872100006,40.922267954000134],[140.86293283500004,40.933564121000174],[140.86688513900006,40.940992390000176],[140.87083680400005,40.94485248400015],[140.8628076370001,40.94726942200013],[140.85360123300003,40.94491889100006],[140.84724564000018,40.94760752700002],[140.84051994900014,40.952971527000116],[140.84921628000004,40.956248688000116],[140.86148838799997,40.95713361300015],[140.85948816000004,40.96518480100017],[140.86105165500013,40.97204276600014],[140.87096258300008,40.97797815000017],[140.868534724,40.98426696100001],[140.8721016980002,40.98902447400012],[140.88233210700005,41.00782202200004],[140.88867495600013,41.010777795000095],[140.90288540600014,41.00899581],[140.91440585900014,40.99609776500013],[140.9388361250001,40.99434078100016],[140.94870251300014,40.990747735000134],[140.95777507200003,40.97791522800009],[140.96643156800022,40.969601573000126],[140.98140227400003,40.9597685990001],[140.98178952400022,40.95381221000004],[140.97981597600008,40.95173234200017],[140.97942141100012,40.95143509800009],[140.9766542670002,40.946086510000114],[140.97506573300004,40.937755320000015],[140.97979578,40.93566384899999],[140.99097741000006,40.934312242000075],[141.010996941,40.92951080900017],[141.0349361760002,40.9183376590001],[141.04715557500006,40.91474989699999],[141.05822181400006,40.916522572000034],[141.0680756420002,40.91084813100012],[141.07391920799998,40.90012069800015],[141.08370477399998,40.88641322000002],[141.09276681100005,40.88163138300014],[141.11134557100004,40.87263328600003],[141.126268683,40.87291908200014],[141.14714501400013,40.87883994300002],[141.16377570600017,40.89130807700012],[141.18524863300004,40.911214529000134],[141.226400074,40.98744292],[141.23640716500003,41.01572156100006],[141.24190264900008,41.082742],[141.247894727,41.09813060100005],[141.24636615799997,41.106862386999985],[141.25234706100017,41.11875852600009],[141.26346321400004,41.12617311400011],[141.27223835200007,41.13657760500017],[141.27788208300004,41.155329909],[141.27048025000008,41.18520388400016],[141.25610124900015,41.21123666100011],[141.23546690100014,41.237972765000094],[141.205911192,41.26471970400014],[141.18337455300016,41.27706277200009],[141.16123245800017,41.27846726200015],[141.152460837,41.26398044500009],[141.14597765300007,41.25550840300015],[141.13696343600012,41.246697177000115],[141.13763941099998,41.2427142610001],[141.14385385900013,41.24166270200011],[141.1496355740002,41.248748404000125],[141.15611297200022,41.25479616600002],[141.15911483900018,41.25669431400002],[141.15887118100002,41.25323173800017],[141.15700884200007,41.24821429700016],[141.14683011300005,41.2362885700001],[141.1133719950001,41.21436328300008],[141.0947367270002,41.210264513000155],[141.07237646000024,41.19661705300008],[141.05807571800003,41.183068125000105],[141.03413513500018,41.18586132500012],[141.00563260700008,41.19576286500002],[140.99205389900013,41.19335164900009],[140.97756186299998,41.19647781500011],[140.96306758300014,41.18990252900009],[140.9462651750001,41.173289477000154],[140.90778869700003,41.17364541400011],[140.89078478800016,41.16377995100008],[140.87535602200015,41.16654929600015],[140.86273009800007,41.16412311100005],[140.82850222700006,41.146106626000076],[140.8145250150001,41.12846180600003],[140.79815518300015,41.12857790100004],[140.76579604300002,41.14501873900004],[140.7653006770001,41.18462650800008],[140.76555366700003,41.1959558600001],[140.77816816499998,41.20685455900009],[140.78469859000003,41.23514784300012],[140.780395753,41.2519343790001],[140.79309271300022,41.27842175200003],[140.79928382000017,41.303004570000084],[140.803214225,41.32118674800007],[140.80314793400024,41.329543976000124],[140.81517287700015,41.33756239600008],[140.82363136600023,41.36470958900007],[140.82730899100014,41.38755930000018],[140.83695137100008,41.418221886000126],[140.85333808400006,41.43033945000015],[140.88382800500008,41.46740993900015],[140.89795983200005,41.47614166900017],[140.90105228000007,41.48102448100006],[140.90710228800006,41.500798515000135],[140.90571589300012,41.51308858200015],[140.89946179000017,41.524175208000045],[140.90362850500006,41.52815413900011],[140.90709272100017,41.53854826300001],[140.91357235900003,41.54685719300015],[140.92699769800006,41.53332493300012],[140.9508002450002,41.52191138800008],[140.96441713000016,41.50907653600011],[140.978057076,41.497659041000176],[140.99301574400013,41.49106766900006],[141.00333950800004,41.487084889000116],[141.02126455500004,41.484118126000126],[141.06530723900013,41.48111619600009],[141.107750407,41.46386893600008],[141.1429093300002,41.4332253140001],[141.1596639490001,41.41712322800008],[141.1799538060001,41.40562133200008],[141.1840210720001,41.397414737000176],[141.19499759200002,41.38715241100006],[141.235666109,41.36758547700008],[141.27609568200003,41.35319552800003]]],[[[139.49390709700012,42.07884349200001],[139.45533287900005,42.051581122000115],[139.44564863400015,42.05483633000016],[139.43539472700004,42.06293366100009],[139.429453972,42.073797919000135],[139.43238366000006,42.08510976800015],[139.42725670700023,42.09393952],[139.42505944100006,42.10268789300006],[139.42505944100006,42.122992255000085],[139.4226994150001,42.13149648600002],[139.41285241000017,42.14398834800012],[139.41081790500002,42.153998114],[139.41431725400005,42.17251211100002],[139.42383873800011,42.19159577],[139.43702233200005,42.20722077000009],[139.45215905000023,42.21531810100011],[139.46371503999998,42.216253973],[139.48552493600002,42.22113678600006],[139.497325066,42.222235419000114],[139.5091251960001,42.225775458],[139.538340691,42.240668036000145],[139.54851321700008,42.243353583000115],[139.56421959700006,42.23175690300012],[139.5539656910001,42.211574611000074],[139.5206811860002,42.174505927000055],[139.51368248800023,42.14817942900005],[139.51270592500023,42.12372467700011],[139.50896243600013,42.100816148000106],[139.49390709700012,42.07884349200001]]],[[[145.29737389400023,43.52265045800006],[145.28353925900012,43.51788971600017],[145.27320397200006,43.52236562700013],[145.2768660820001,43.53815338700018],[145.28785241000006,43.54751211100002],[145.31869550900004,43.55776601800012],[145.33204186300011,43.56541575700008],[145.202403191,43.61383698100015],[145.28695722700016,43.60101959800012],[145.31153405000018,43.593329169000114],[145.34441165500007,43.57591380400014],[145.36036217500015,43.56476471600002],[145.3628035820001,43.55487702],[145.35010826900023,43.54962799700002],[145.31202233200023,43.54218170800014],[145.30420983200017,43.53473541900017],[145.29737389400023,43.52265045800006]]],[[[144.45508873800006,43.94220612200017],[144.44898522200018,43.94204336100002],[144.44825280000023,43.94220612200017],[144.45508873800006,43.94220612200017]]],[[[143.97584069100017,44.14826080900018],[143.94044030000018,44.13914622599999],[143.89649498800023,44.14590078300013],[143.81373131600017,44.16840241100011],[143.81763756600014,44.17560455900015],[143.8362736340001,44.17593008000007],[143.85954837300017,44.17275625200001],[143.8815210300002,44.16669342700011],[143.89649498800023,44.158148505],[143.9117944670002,44.15228913000006],[143.9572046230002,44.15200429900001],[143.97584069100017,44.14826080900018]]],[[[141.26840254000015,45.101019598],[141.251231316,45.09918854400003],[141.23536217500006,45.102484442000055],[141.18181399800008,45.12661367400007],[141.150075717,45.14712148600002],[141.131114129,45.170152085],[141.14551842500006,45.18976471600014],[141.14087975400005,45.196030992000104],[141.13550866000008,45.20612213700015],[141.13184655000023,45.21027252800012],[141.16716556100008,45.23997630400014],[141.17969811300006,45.24437083500011],[141.20264733200017,45.24909088700004],[141.23519941500004,45.24127838700004],[141.26832116000014,45.22553131700009],[141.29297936300023,45.20652903900016],[141.3271590500002,45.17234935099999],[141.3356225920002,45.15778229400014],[141.32846113400015,45.147650458],[141.3164168630002,45.13792552300005],[141.3100692070001,45.12457916900005],[141.30445397200012,45.12018463700015],[141.26840254000015,45.101019598]]],[[[141.00660241000006,45.44041575700005],[141.02003014400012,45.43984609600006],[141.03532962300008,45.446234442],[141.05274498800023,45.450425523000135],[141.0690210300002,45.44269440300003],[141.07357832100004,45.42470937700006],[141.05909264400006,45.32196686400006],[141.04957116000017,45.29291413],[141.03565514400012,45.26487864800008],[141.02906334700006,45.278509833000115],[141.02995853000002,45.283921617000075],[141.03565514400012,45.29218170800005],[141.01050866000006,45.32778554900001],[140.99887129000004,45.35000234600006],[140.99415123800011,45.37103913],[141.00098717500012,45.419134833000086],[140.996348504,45.430243231000084],[140.96680748800023,45.46344635600012],[140.97413170700023,45.46771881700012],[140.980642123,45.46893952000014],[140.98609459700018,45.467433986000096],[140.99048912900017,45.463364976000136],[140.99317467500023,45.45880768400009],[141.00660241000006,45.44041575700005]]],[[[142.01775149800014,45.45571523600002],[142.05665123800011,45.40204498900012],[142.09652753999998,45.3723005230001],[142.18311608200014,45.325995184000035],[142.22120201900023,45.29962799700003],[142.53931725400003,45.01845937700001],[142.61426842500003,44.90387604400003],[142.63070722700016,44.88373444200009],[142.66570071700008,44.86664459800012],[142.7140405610002,44.80621979400002],[142.90748131599997,44.64740631700006],[142.93978925900012,44.63471100500002],[142.98145592500012,44.58649323100015],[143.042735222,44.55491771000008],[143.118418816,44.49689362200009],[143.20443769599999,44.44725169499999],[143.22486412900014,44.442450262000094],[143.2407332690001,44.436346747000115],[143.27857506600003,44.40615469],[143.29688561300011,44.39468008000016],[143.340098504,44.386542059000035],[143.35141035200007,44.381048895],[143.36850019600004,44.35138580900017],[143.36915123800006,44.34625885600015],[143.39649498800023,44.322943427000055],[143.4052840500001,44.31745026200004],[143.55241946700008,44.25250885600015],[143.77662194100014,44.18927643400009],[143.77662194100014,44.18235911699999],[143.69532311300011,44.18984609600007],[143.68043053500006,44.18235911699999],[143.68506920700005,44.17593008000007],[143.70899498800023,44.15786367400006],[143.71461022200006,44.15135325700008],[143.72828209700018,44.11347077000012],[143.73845462300017,44.11798737200009],[143.7424422540001,44.12091705900012],[143.75709069100012,44.11017487200008],[143.76970462300008,44.103745835],[143.78321373800023,44.100653387000094],[143.92969811300023,44.09894440300008],[143.9377547540001,44.09642161699999],[143.96607506600006,44.120062567],[143.98324629000015,44.12995026200012],[143.99919681100008,44.133978583],[144.11931399800008,44.12905508000013],[144.15308678500006,44.117254950000145],[144.17172285200004,44.10602448100015],[144.17156009200008,44.102728583000115],[144.15870201900023,44.100653387000094],[144.14039147200018,44.09300364800008],[144.12680097700004,44.080145575000145],[144.10547936300006,44.03156159100008],[144.13835696700005,44.020697333],[144.15284264400012,44.01984284100011],[144.1670028000002,44.025376695000105],[144.177582227,44.03522370000006],[144.188731316,44.050279039000074],[144.19760175900015,44.06720612200006],[144.20118248800023,44.08246491100003],[144.215098504,44.1114769550001],[144.24293053500017,44.11920807500012],[144.263438347,44.107814846000124],[144.25586998800006,44.07941315300012],[144.26832116000017,44.04938385600015],[144.27833092500006,44.0367699240001],[144.293711785,44.03156159100008],[144.30225670700023,44.02411530200011],[144.31861412900005,43.99119700700013],[144.32781009200014,43.98379140800013],[144.3365991550002,43.98029205900015],[144.37940514400006,43.956488348000065],[144.39535566499998,43.95087311400005],[144.43043053500017,43.942572333],[144.57032311300011,43.924790757],[144.740489129,43.91461823100015],[144.78809655000012,43.92177969],[144.83122806100013,43.94220612200017],[144.94760175899998,44.034084377],[145.03728274800002,44.11041901200004],[145.04851321700002,44.12213776200004],[145.11931399800002,44.15448639500015],[145.1666772800002,44.190497137000094],[145.18490644600016,44.19546133000016],[145.20167076900006,44.205796617000075],[145.25025475400005,44.271795966000084],[145.28972415500013,44.298895575000024],[145.30974368600005,44.31635163],[145.31836998800006,44.33633047100006],[145.32276451900017,44.34178294500002],[145.33204186300011,44.346136786],[145.341481967,44.345526434000035],[145.349457227,44.32599518400015],[145.36719811300006,44.302883205000015],[145.37305748800023,44.29222239800007],[145.371836785,44.24876536700013],[145.34986412900008,44.21161530200011],[145.29053795700023,44.15448639500015],[145.27914472700016,44.133937893],[145.26921634200008,44.085150458],[145.2604272800002,44.06940338700004],[145.1696069670002,43.985296942],[145.14429772200018,43.95294830900018],[145.12232506600006,43.917059637000094],[145.1061304050002,43.88076406500009],[145.11597741,43.86245351800012],[145.10987389400023,43.84194570500007],[145.09848066500015,43.82282135600009],[145.089203321,43.80072663000011],[145.07471764400006,43.786037502],[145.07146243600002,43.77460358300006],[145.07227623800023,43.76154205900018],[145.07471764400006,43.75372955900009],[145.11597741,43.68683502800015],[145.13013756600006,43.671576239],[145.19483483200005,43.620672919000086],[145.20753014400023,43.60687897300006],[145.21851647200018,43.58966705900015],[145.2262475920002,43.569769598000065],[145.22901451900017,43.548041083],[145.23226972699996,43.53994375200007],[145.24683678500006,43.53046295800006],[145.2521264980002,43.5143089860001],[145.26441491000017,43.489691473],[145.29078209700018,43.40534088700012],[145.31169681100002,43.36676666900005],[145.3457137380002,43.33270905200011],[145.39356530000003,43.305365302000055],[145.36166425900015,43.30145905200005],[145.29916425900004,43.34125397300015],[145.27003014400006,43.346380927000055],[145.26050866000017,43.338568427000055],[145.25831139400006,43.32709381700012],[145.26449629000015,43.31671784100002],[145.28028405000012,43.31220123900006],[145.29810631600017,43.309271552000055],[145.31511478000002,43.302923895000035],[145.3208113940001,43.29596588700004],[145.30420983200017,43.29169342700011],[145.32162519600004,43.27627187700007],[145.35108483200008,43.26544830900009],[145.3836369150001,43.259019272999986],[145.46843509200008,43.25299713700015],[145.49195397199998,43.24457428600011],[145.5171004570001,43.22898997600011],[145.52198326900017,43.241197007],[145.51335696700008,43.24884674700003],[145.50131269600013,43.25698476800015],[145.49659264400023,43.270575262000094],[145.50310306100002,43.27753327],[145.54086347699996,43.30166250200001],[145.582286004,43.33576080900012],[145.5948999360002,43.34284088700017],[145.62086022200018,43.347967841000084],[145.63379967500006,43.3531761740001],[145.64031009200008,43.35976797100007],[145.6437280610002,43.366888739000025],[145.64918053500006,43.373765367000104],[145.66163170700023,43.37982819200012],[145.67595462300002,43.38198476800004],[145.72315514400012,43.37982819200012],[145.73161868600008,43.38202545800002],[145.74439537900008,43.39179108300006],[145.75033613400004,43.394110419000114],[145.75709069100006,43.393133856000034],[145.76148522200003,43.39081452000006],[145.76449629000015,43.388373114000146],[145.76742597700013,43.38727448100009],[145.78003991000006,43.386053778000175],[145.81324303500017,43.378607489],[145.82496178500006,43.37360260600015],[145.81853274800002,43.364447333000086],[145.81031334700006,43.36078522300012],[145.78785241000006,43.36058177300008],[145.77767988399998,43.35626862200017],[145.76010175900015,43.33698151200004],[145.74691816500004,43.33270905200011],[145.7085067070001,43.326320705000015],[145.69898522200012,43.32208893400018],[145.68409264400023,43.31024811400012],[145.67310631600017,43.30792877800014],[145.64389082100016,43.31220123900006],[145.62916100400014,43.309759833000115],[145.62134850400017,43.303412177],[145.61548912900005,43.29450104400014],[145.60645592500012,43.28424713700003],[145.57984459700018,43.26504140800007],[145.57227623800023,43.25698476800015],[145.56617272200006,43.24607982000008],[145.55738366000017,43.22142161699999],[145.55176842500018,43.20978424700017],[145.5455835300002,43.20197174700017],[145.5171004570001,43.17499420800011],[145.53060957100016,43.16885000200013],[145.5188908210001,43.166449286],[145.49878991000006,43.16791413000006],[145.47828209700018,43.17210521],[145.45240319100014,43.18390534100014],[145.435394727,43.18207428600008],[145.40406334700006,43.17499420800011],[145.30250084700006,43.17348867400007],[145.28028405000012,43.16502513200011],[145.25831139400006,43.14948151200004],[145.23113040500004,43.14109935100008],[145.154063347,43.132269598],[145.138438347,43.12815989800005],[145.12549889400012,43.12006256700012],[145.11931399800002,43.10610586100016],[145.12273196700008,43.088202216000106],[145.13542728000002,43.084295966000106],[145.15219160200002,43.08462148600013],[145.16822350400005,43.07941315300003],[145.15902754000015,43.07050202],[145.14918053500006,43.066310940000065],[145.11101321700008,43.063625393],[145.10792076900006,43.05939362200017],[145.10645592500012,43.05292389500006],[145.09929446700008,43.044623114],[145.07569420700023,43.034002997000144],[145.05128014400012,43.033107815000065],[145.00310306100002,43.044623114],[145.02222741,43.020331122000115],[145.0275171230002,43.00934479400014],[145.02369225400017,42.99628327000009],[145.01433353000007,42.98948802300004],[145.00017337300014,42.986151434000035],[144.9337671230002,42.978257554000045],[144.89975019600016,42.97947825700008],[144.86882571700014,42.988470770000085],[144.842051629,43.00714752800015],[144.84050540500007,43.01691315300008],[144.84310957100016,43.02936432500003],[144.84017988400015,43.04010651200004],[144.82154381600006,43.044623114],[144.8100692070001,43.045355536000116],[144.80372155000006,43.046454169000164],[144.79867597700016,43.046698309000114],[144.79086347700016,43.044623114],[144.7838647800002,43.03994375200007],[144.77312259200008,43.0268415390001],[144.76628665500007,43.02415599200013],[144.75757897200006,43.01878489800008],[144.74740644600004,43.006170966000084],[144.73910566500004,42.99135976800004],[144.73560631600006,42.97947825700008],[144.74146569100017,42.96523672100007],[144.75538170700005,42.95441315300015],[144.77125084700012,42.94489166900017],[144.78345787900017,42.934759833000115],[144.74195397200018,42.92422109600015],[144.5991317070002,42.94912344],[144.52173912900005,42.944077867000075],[144.49586022200003,42.93325429900007],[144.46485436300011,42.93707916900008],[144.39063561300003,42.956447658000094],[144.38217207100004,42.961493231000034],[144.37305748800023,42.969549872000144],[144.36850019599999,42.97817617400007],[144.364919467,42.98956940300003],[144.35808353000013,42.99945709800015],[144.3452254570001,43.00372955900015],[144.32300866000006,43.002630927000105],[144.1831160820001,42.97638580900018],[144.04200280000018,42.926581122000115],[143.88640384200008,42.84418366100008],[143.790293816,42.757269598],[143.63884524800008,42.66107819200006],[143.57520592500006,42.60333893400012],[143.44809004000004,42.45502350500014],[143.34896894600016,42.31915924700009],[143.33171634200002,42.27724844000009],[143.32488040500002,42.22972239799999],[143.33643639400023,42.173000393],[143.33790123800011,42.15021393400018],[143.33594811300017,42.12970612200002],[143.33106530000006,42.1069196640001],[143.30347741000014,42.02578359600007],[143.29232832100016,42.00519440300003],[143.26547285200016,41.98672109600001],[143.25294030000006,41.94188060099999],[143.241547071,41.928045966000084],[143.2260848320001,41.93227773600001],[143.20313561300011,41.94586823100015],[143.18238366,41.96157461100013],[143.1733504570001,41.972113348],[143.163340691,41.99038320500007],[143.140472852,42.010484117000104],[143.11524498800023,42.027980861000074],[142.95972741000006,42.105373440000065],[142.757660352,42.158392645000085],[142.54639733200005,42.25055573100015],[142.45997155000006,42.27130768400015],[142.28101647200012,42.366522528000026],[142.2221785820001,42.411769924000154],[142.16775167700004,42.45985850800015],[142.06258038500008,42.47072827200004],[141.98096764400023,42.51023997600005],[141.92595462300008,42.55857982],[141.9093530610002,42.56549713700015],[141.8881942070001,42.569769598000086],[141.81714928500006,42.59959544499999],[141.72608483200023,42.6171735700001],[141.63648522200006,42.615790106000034],[141.54957116000017,42.60114166900003],[141.42774498800006,42.56439850500011],[141.262461785,42.46824778900016],[141.23462975400017,42.458685614],[141.21509850400014,42.44452545800006],[141.2032983730002,42.44135163],[141.191172722,42.44033437700013],[141.17969811300006,42.43744538000003],[141.16871178499997,42.43329498900006],[141.09156334700015,42.391791083000086],[141.07325280000012,42.37714264500006],[141.01677493600008,42.316107489],[141.00098717500012,42.3048363300001],[140.9897567070002,42.301418361000074],[140.977305535,42.29962799700009],[140.96469160200004,42.300482489],[140.95240319100014,42.3048363300001],[140.94581139400012,42.310248114000146],[140.93702233200023,42.319769598000114],[140.93165123800006,42.32876211100015],[140.93604576900023,42.332709052000055],[140.97543379000015,42.32656484600007],[140.984141472,42.329046942],[140.98682701900012,42.33982982000002],[140.97461998800023,42.34662506700012],[140.94695071700002,42.353216864],[140.92652428500017,42.36517975500011],[140.91797936300023,42.37254466400013],[140.91211998800011,42.38056061400006],[140.90137780000006,42.42084381700015],[140.7336531910001,42.56415436400009],[140.68628991000006,42.57916901200009],[140.66293379000015,42.57982005400005],[140.597422722,42.57172272300012],[140.52564537900005,42.58063385600015],[140.50066165500013,42.57916901200009],[140.45753014400012,42.56427643400015],[140.41700280000003,42.538153387000094],[140.38086998800023,42.50507233300006],[140.32545006600017,42.43280670800008],[140.30396569100006,42.39297109600001],[140.2885848320001,42.35016510600009],[140.28150475400003,42.3048363300001],[140.29175866000014,42.25958893400015],[140.32162519600016,42.233954169000086],[140.42408287900005,42.19228750200013],[140.45639082100016,42.17308177299999],[140.53028405000023,42.11176178600009],[140.54883873800003,42.10553620000003],[140.57195071700014,42.10785553600009],[140.61011803500017,42.117621161000116],[140.67408287900017,42.122056382],[140.69320722700016,42.12616608300014],[140.71355228000007,42.133490302000055],[140.77361087300002,42.1021996110001],[140.789317254,42.074530341000084],[140.83708743600008,42.023627020000056],[140.8536889980002,42.011216539000046],[140.8917749360002,41.99152252800009],[140.90845787900005,41.978949286000116],[140.9742944670002,41.913763739],[140.99219811300017,41.90216705900018],[141.0115666020001,41.893744208000115],[141.03370201900023,41.88873932500009],[141.05958092500018,41.88711172100007],[141.08326256600017,41.88263580900009],[141.1069442070001,41.87177155200011],[141.18279056100008,41.81830475499999],[141.19996178500017,41.79946523600013],[141.18995201900012,41.79092031500012],[141.14356530000023,41.78579336100002],[141.12159264400012,41.77936432500009],[141.10401451900006,41.77041250200007],[141.04330488400004,41.72386302300004],[141.00635826900006,41.71214427300005],[140.9599715500001,41.721991278000175],[140.87427819100006,41.758246161],[140.82398522200018,41.77069733300003],[140.7750757170002,41.77041250200007],[140.72999108200023,41.749986070000105],[140.70801842500012,41.74555084800012],[140.69857832100004,41.75983307500003],[140.70671634200002,41.77411530200011],[140.72242272200018,41.78335195500007],[140.73340905000023,41.793646552],[140.7272241550002,41.81134674700009],[140.70899498800011,41.82440827000009],[140.68482506600012,41.829901434000085],[140.66041100400005,41.82713450700005],[140.64161217500012,41.81509023600013],[140.63135826900006,41.79730866100006],[140.61573326900006,41.754706122000115],[140.60425866000006,41.736273505000085],[140.54476972699996,41.71259186400006],[140.5348413420002,41.70526764500014],[140.52344811300023,41.698675848000065],[140.47006269599999,41.68720123900012],[140.45289147200018,41.68105703300016],[140.4332788420002,41.644680080000064],[140.44320722700004,41.563706773000106],[140.43238366,41.53082916900003],[140.40064537900017,41.51300690300006],[140.274668816,41.48236725500014],[140.259532097,41.472723700000145],[140.24122155000023,41.45722077000014],[140.225840691,41.437933661000116],[140.21949303500017,41.41718170800011],[140.20899498800011,41.40110911700004],[140.1850692070002,41.4037946640001],[140.13746178500017,41.42096588700004],[140.12680097700004,41.42047760600015],[140.10971113399998,41.414862372000144],[140.10035241000006,41.413519598000065],[140.08838951900012,41.416815497000115],[140.06299889400012,41.431341864000146],[140.052093946,41.43463776200018],[140.03825931100002,41.44257233300014],[140.02816816500015,41.46141185099999],[140.01400800900012,41.50287506700009],[139.98365319100017,41.56049225500006],[139.97982832100016,41.581732489000146],[139.98422285200002,41.60317617400007],[140.0034285820001,41.63467031500009],[140.01954186300014,41.69696686400005],[140.07113691500004,41.760199286000145],[140.08301842500018,41.80076732000005],[140.08741295700023,41.805121161000145],[140.10938561300006,41.80341217700014],[140.11768639400023,41.80451080900018],[140.12671959700006,41.814032294000086],[140.12973066500015,41.82322825700005],[140.13135826900003,41.84552643400009],[140.13062584700006,41.85150788000003],[140.12435957099999,41.86005280200011],[140.12387129000004,41.865952867000075],[140.12777754000004,41.87079498900014],[140.13493899800008,41.87514883000013],[140.14503014400012,41.87958405200011],[140.14714603000002,41.89134349199999],[140.14795983200023,41.90753815300003],[140.15170332100016,41.913763739],[140.1451929050002,41.929632880000106],[140.13965905000023,41.9487165390001],[140.13843834700006,41.967515367000075],[140.14503014400012,41.982652085000055],[140.1118270190001,42.01113515800007],[140.06104576900023,42.08002350500011],[140.0275985040001,42.10553620000003],[139.92750084700006,42.138902085],[139.90935306100008,42.15656159100011],[139.90821373800011,42.16083405200011],[139.90308678499997,42.16559479400003],[139.88363691500004,42.19497304900004],[139.87435957100016,42.199896552],[139.8434350920002,42.208563544000164],[139.79835045700023,42.235907294000135],[139.7874455090001,42.24677155200014],[139.77759850400005,42.2711449240001],[139.76758873800006,42.31098053600009],[139.77230879000007,42.33047109600006],[139.78443444100017,42.35081614800005],[139.8261824880001,42.402044989],[139.83676191500015,42.42389557500006],[139.84961998800006,42.469305731000034],[139.84929446700008,42.51414622600005],[139.83277428500017,42.58881256700009],[139.8434350920002,42.62693919500005],[139.87696373800023,42.66339752800012],[139.91724694100003,42.6772321640001],[140.01400800900012,42.68158600500003],[140.03785241,42.68602122599999],[140.0538843110002,42.69415924700008],[140.09546959700018,42.73379140800004],[140.10515384200002,42.73908112200009],[140.11548912900005,42.74209219],[140.12761478000007,42.74298737200009],[140.13591556100002,42.74713776200004],[140.14429772200018,42.75698476800006],[140.169769727,42.79584381700006],[140.18336022200006,42.810207424000126],[140.2003686860002,42.81427643400009],[140.2229110040001,42.80133698100009],[140.2457788420002,42.77293528900016],[140.26075280000023,42.76097239800013],[140.28150475400003,42.757269598],[140.30323326900012,42.76972077],[140.30990644600016,42.79319896000008],[140.31177819100003,42.815985419000114],[140.31910241000006,42.82623932500003],[140.3374129570001,42.834133205000015],[140.35206139400012,42.85297272300015],[140.37712649800017,42.89378489800002],[140.39307701900012,42.908514716000084],[140.46119225400005,42.95888906500012],[140.50318444100006,42.98004791900002],[140.52116946700008,42.99628327000009],[140.52711022200018,43.015448309000035],[140.51685631600014,43.029974677],[140.50196373800011,43.04572174700003],[140.49439537900017,43.06854889500006],[140.48731530000012,43.082709052000084],[140.43921959700006,43.134019273000106],[140.406097852,43.16022370000003],[140.36793053500006,43.183091539000046],[140.338063998,43.210516669000086],[140.32935631600006,43.25071849200001],[140.36011803500003,43.32518138200005],[140.40951582100004,43.32469310099999],[140.43392988400012,43.32843659100011],[140.45289147200018,43.338853257],[140.45818118600008,43.347967841000084],[140.46119225400005,43.358587958000115],[140.46509850400005,43.36806875200013],[140.47331790500007,43.37360260600015],[140.48715254000012,43.37238190300003],[140.49968509200002,43.36517975500003],[140.51026451900012,43.357001044000086],[140.51807701900006,43.3531761740001],[140.53516686300023,43.34788646000011],[140.6209416020001,43.30121491100003],[140.63884524800002,43.28888580900015],[140.66879316500004,43.260321356000176],[140.68921959700018,43.24835846600014],[140.76140384200008,43.223456122000115],[140.77125084700018,43.21552155200014],[140.7863061860002,43.20062897300009],[140.79615319100006,43.195502020000056],[140.80990644600016,43.19245026200018],[140.91260826900006,43.20416901200015],[140.98829186300006,43.226996161],[141.01124108200017,43.22898997600011],[141.02230878999998,43.223781643000116],[141.01221764400023,43.210516669000086],[141.00440514400023,43.193060614000146],[141.02198326900003,43.17499420800011],[141.03256269600004,43.172308661000145],[141.0698348320001,43.16885000200013],[141.1108504570001,43.156195380000085],[141.13550866000008,43.152411200000145],[141.15650475400005,43.143011786000116],[141.16911868600013,43.14085521000011],[141.187266472,43.14150625200007],[141.20085696700008,43.14362213700018],[141.22754967500012,43.15448639500006],[141.303965691,43.19725169500008],[141.37086022200006,43.25071849200001],[141.39747155000006,43.27973053600009],[141.42335045700005,43.317857164000074],[141.4401147800002,43.36172109600001],[141.43970787899997,43.407782294000135],[141.42701256600006,43.43455638200005],[141.37086022200006,43.49713776200015],[141.35987389400006,43.52358633000013],[141.36247806100008,43.54336172100007],[141.37452233200005,43.56053294500002],[141.39136803500017,43.579087632000025],[141.3727319670002,43.61823151200003],[141.364024285,43.62750885600009],[141.36695397200006,43.646307684000064],[141.34392337300008,43.69017161700002],[141.33741295700005,43.71283600500005],[141.34359785200004,43.73151276200004],[141.35816491000017,43.75580475500003],[141.38502037900003,43.791327216000084],[141.40211022200012,43.80361562700012],[141.42481530000023,43.814601955000015],[141.44800866000017,43.82249583500008],[141.49057050900004,43.82733795800006],[141.51002037900005,43.832586981000034],[141.52816816500004,43.84121328300013],[141.58472741000006,43.875433661000116],[141.61573326900017,43.902777411],[141.64063561300011,43.93793366100006],[141.65894616000017,43.98379140800013],[141.66716556100008,44.025091864],[141.67017662900017,44.06663646000008],[141.65544681100008,44.276922919000114],[141.6657007170002,44.31273021000011],[141.74724368600002,44.42422109600004],[141.79175866000006,44.59699127800003],[141.79607181100002,44.641750393000066],[141.78345787900005,44.76536692900008],[141.75359134200005,44.885443427],[141.7218530610002,44.955145575000145],[141.58643639400023,45.16437409100002],[141.57488040500013,45.20685455900009],[141.58375084700006,45.25116608300014],[141.589691602,45.25820547100001],[141.60987389400012,45.275864976000136],[141.61784915500007,45.28534577000012],[141.62256920700005,45.29596588700018],[141.62468509200016,45.305487372000165],[141.6276961600001,45.31439850500011],[141.649180535,45.34100983300006],[141.65015709700018,45.35736725500006],[141.6390080090001,45.38898346600014],[141.63705488400004,45.40444570500007],[141.63941491000017,45.421128648000106],[141.6479598320001,45.437201239],[141.6657007170002,45.450425523000135],[141.67725670700023,45.44432200700005],[141.68360436300023,45.436183986000046],[141.68628991000003,45.425523179],[141.686778191,45.41229889500006],[141.69214928500017,45.402289130000085],[141.70443769600004,45.40208567900011],[141.72771243600008,45.408880927000055],[141.77409915500013,45.412909247000115],[141.8232528000002,45.42255280199999],[141.8575952480002,45.44033437700007],[141.86841881600014,45.443019924000126],[141.87533613399998,45.44818756700015],[141.87720787900005,45.46019114800008],[141.87720787900005,45.473863023000106],[141.878672722,45.484035549000154],[141.89389082099996,45.500555731000034],[141.91944420700005,45.51585521],[141.94499759200008,45.52041250200013],[141.96045983200005,45.51023997599999],[141.9775496750001,45.48078034100011],[141.987559441,45.46849192900005],[142.00180097700004,45.46344635600012],[142.01775149800014,45.45571523600002]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Kazakhstan","sov_a3":"KAZ","adm0_dif":1,"level":2,"type":"Lease","admin":"Baykonur Cosmodrome","adm0_a3":"KAB","geou_dif":0,"geounit":"Baykonur Cosmodrome","gu_a3":"KAB","su_dif":0,"subunit":"Baykonur Cosmodrome","su_a3":"KAB","brk_diff":1,"name":"Baikonur","name_long":"Baikonur Cosmodrome","brk_a3":"B40","brk_name":"Baykonur","brk_group":null,"abbrev":"Bayk.","postal":"BK","formal_en":null,"formal_fr":null,"note_adm0":"Leased by Russia","note_brk":"Leased to Russia by Kazakhstan","name_sort":"Baikonur Cosmodrome","name_alt":"Baykonur Cosmodrome","mapcolor7":6,"mapcolor8":1,"mapcolor9":6,"mapcolor13":1,"pop_est":70000,"gdp_md_est":1155,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":0,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-90,"woe_id_eh":20070177,"woe_note":"A subunit of Kazakhstan in WOE.","adm0_a3_is":"KAZ","adm0_a3_us":"KAB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":8,"long_len":19,"abbrev_len":5,"tiny":-99,"homepart":-99,"filename":"baikonur.geojson"},"geometry":{"type":"Polygon","coordinates":[[[63.3839136150001,45.56582448300014],[63.32427901200009,45.56796905500001],[63.26634973200004,45.57422190400012],[63.21048750800008,45.58437632300007],[63.15689904800012,45.598251445000045],[63.105946086000074,45.61561472600007],[63.05783532700007,45.636285299000086],[63.01292850700008,45.660004781000026],[62.971484009000044,45.68664398300007],[62.93386356600012,45.71594451900003],[62.900273885000104,45.74769968700005],[62.87102502500005,45.781702780000096],[62.84647871900006,45.8177729300001],[62.82689335100014,45.85570343000009],[62.81252730300014,45.89518422500004],[62.80363895700003,45.93616363500007],[62.800641723000126,45.97833160400011],[62.80363895700003,46.02049957300007],[62.81252730300014,46.06142730700009],[62.82689335100014,46.10098561600006],[62.84647871900006,46.138890280000055],[62.87102502500005,46.17496042900003],[62.900273885000104,46.20896352200009],[62.93386356600012,46.24071868900012],[62.971484009000044,46.270019227000056],[63.01292850700008,46.2966584270001],[63.05783532700007,46.32037790900006],[63.105946086000074,46.34104848300006],[63.15689904800012,46.358411764000095],[63.21048750800008,46.37226104700005],[63.26634973200004,46.382441305000015],[63.32427901200009,46.388694153000095],[63.3839136150001,46.390838725],[63.44354821800011,46.388694153000095],[63.501477499000025,46.382441305000015],[63.55739139800005,46.37226104700005],[63.610928182000066,46.358411764000095],[63.6618811450001,46.34104848300006],[63.70994022600007,46.32037790900006],[63.75489872300011,46.2966584270001],[63.79634322100014,46.270019227000056],[63.833963664000066,46.24071868900012],[63.86755334500003,46.20896352200009],[63.89669885200004,46.17496042900003],[63.92129683500013,46.138890280000055],[63.94093387900005,46.10098561600006],[63.955299927000056,46.06142730700009],[63.96408492000011,46.02049957300007],[63.96713383000008,45.97833160400011],[63.96408492000011,45.93616363500007],[63.955299927000056,45.89518422500004],[63.94093387900005,45.85570343000009],[63.92129683500013,45.8177729300001],[63.89669885200004,45.781702780000096],[63.86755334500003,45.74769968700005],[63.833963664000066,45.71594451900003],[63.79634322100014,45.68664398300007],[63.75489872300011,45.660004781000026],[63.70994022600007,45.636285299000086],[63.6618811450001,45.61561472600007],[63.610928182000066,45.598251445000045],[63.55739139800005,45.58437632300007],[63.501477498000035,45.57422190400012],[63.44354821800011,45.56796905500001],[63.3839136150001,45.56582448300014]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Kashmir","sov_a3":"KAS","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Siachen Glacier","adm0_a3":"KAS","geou_dif":0,"geounit":"Siachen Glacier","gu_a3":"KAS","su_dif":0,"subunit":"Siachen Glacier","su_a3":"KAS","brk_diff":1,"name":"Siachen Glacier","name_long":"Siachen Glacier","brk_a3":"B45","brk_name":"Siachen Glacier","brk_group":"Jammu and Kashmir","abbrev":"Siachen","postal":"SG","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Claimed by Pakistan and India","name_sort":"Kashmir","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":6,"mapcolor13":-99,"pop_est":6000,"gdp_md_est":15,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":23424928,"woe_id_eh":23424928,"woe_note":"Exact WOE match as country","adm0_a3_is":"-99","adm0_a3_us":"KAS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":15,"long_len":15,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"siachenglacier.geojson"},"geometry":{"type":"Polygon","coordinates":[[[76.97641727700011,35.57865631200005],[77.01755171800005,35.58459910100006],[77.03904911300009,35.58501251200008],[77.05816939300007,35.58010325200004],[77.07108850100006,35.57100819900009],[77.09227583900014,35.54780548200008],[77.10529829900008,35.53798695900011],[77.1412650960001,35.52537791000009],[77.17754195100014,35.523155823000074],[77.25081913300005,35.53070058200012],[77.28110152200009,35.528013408000106],[77.30538944500006,35.51783315100005],[77.35200158700013,35.48605214500009],[77.38373091600005,35.471996155000085],[77.41277307100012,35.469412333000065],[77.47643843600014,35.47716379800008],[77.51219852700007,35.47845570900003],[77.51960817800011,35.477439204000035],[77.66061324100008,35.45809519500011],[77.68965539600009,35.462694397000064],[77.71673384600012,35.475406800000115],[77.74742964700005,35.49432037400004],[77.7603487550001,35.498092753000066],[77.77357792200007,35.498971253],[77.80034631400012,35.495405579000135],[77.42465865100007,35.30292378800013],[77.04897098800012,35.11044199700004],[76.91316086450013,35.378276855500076],[76.77735074100008,35.646111714000114],[76.78283736200005,35.64573232000009],[76.82459191900011,35.64779937800006],[76.84298872900013,35.641288148000086],[76.85694136500013,35.628575745000035],[76.88050581900012,35.60067047200005],[76.89642216000004,35.589611715000046],[76.91502567600008,35.58315216100007],[76.93579960200003,35.57963816400013],[76.97641727700011,35.57865631200005]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Kazakhstan","sov_a3":"KAZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kazakhstan","adm0_a3":"KAZ","geou_dif":0,"geounit":"Kazakhstan","gu_a3":"KAZ","su_dif":0,"subunit":"Kazakhstan","su_a3":"KAZ","brk_diff":0,"name":"Kazakhstan","name_long":"Kazakhstan","brk_a3":"KAZ","brk_name":"Kazakhstan","brk_group":null,"abbrev":"Kaz.","postal":"KZ","formal_en":"Republic of Kazakhstan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kazakhstan","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":6,"mapcolor13":1,"pop_est":15399437,"gdp_md_est":175800,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"KZ","iso_a2":"KZ","iso_a3":"KAZ","iso_n3":"398","un_a3":"398","wb_a2":"KZ","wb_a3":"KAZ","woe_id":-90,"woe_id_eh":23424871,"woe_note":"Includes Baykonur Cosmodrome as an admin-1","adm0_a3_is":"KAZ","adm0_a3_us":"KAZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KAZ.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[50.6595158210001,44.9389509140001],[50.67798912900011,44.935614325000174],[50.692637566000116,44.940619208000115],[50.70199629000015,44.948187567000055],[50.70801842500006,44.95441315300003],[50.71371504000015,44.953802802000055],[50.716563347000175,44.946722723],[50.72071373800022,44.941636460000076],[50.728037957000225,44.940619208000115],[50.7346297540001,44.92991771],[50.73698978000007,44.907660223000114],[50.73682701900012,44.89590078300016],[50.743662957000225,44.886135158000016],[50.75782311300023,44.87055084800012],[50.76075280000006,44.86493561400012],[50.73951256600017,44.86835358300014],[50.726328972000054,44.865912177],[50.7127384770001,44.85993073100009],[50.69776451900006,44.85785553600006],[50.69361412900011,44.864203192],[50.70191491000016,44.8744977890001],[50.70191491000016,44.880560614000025],[50.69190514400011,44.88312409100003],[50.688731316000116,44.88914622600011],[50.6932072270001,44.899074611000046],[50.68653405000006,44.911688544000114],[50.64079837300002,44.933294989],[50.626231316000116,44.951076565],[50.62794030000012,44.967027085],[50.63575280000012,44.96743398600002],[50.64332116000011,44.95294830900015],[50.6595158210001,44.9389509140001]]],[[[50.02995853000019,44.93085358300008],[50.0428166020001,44.92446523600013],[50.05827884200002,44.92910390800007],[50.0584416020001,44.903998114],[50.062022332000055,44.87986888200008],[50.07341556100001,44.86176178600006],[50.09669030000006,44.854641018],[50.10759524800014,44.85175202000009],[50.11638431100018,44.845770575000145],[50.12647545700017,44.840643622000144],[50.141368035000106,44.840277411000116],[50.17400149800008,44.85838450700005],[50.18921959700006,44.86147695500013],[50.170258009000094,44.830145575000174],[50.14307701900012,44.81785716400013],[50.11150149800013,44.820379950000024],[50.079356316000165,44.8334821640001],[50.063975457000105,44.844142971000124],[50.05933678500011,44.85309479400017],[50.0579533210001,44.86432526200015],[50.05201256600017,44.881293036000145],[50.04184004000015,44.89492422100009],[50.00416100400017,44.92230866100006],[49.98609459700006,44.94676341400019],[49.9861759770001,44.96800364799999],[50.04184004000015,45.057521877000156],[50.05201256600017,45.065619208],[50.06763756600017,45.071478583000115],[50.11345462300008,45.07990143400018],[50.11215254000015,45.062486070000105],[50.05355879000009,45.038763739],[50.0384220710001,45.01471588700015],[50.03516686300005,45.00088125200006],[50.02100670700005,44.975775458000086],[50.01783287900011,44.960150458],[50.02116946700002,44.944037177000105],[50.02995853000019,44.93085358300008]]],[[[50.34839928500011,45.08490631700012],[50.35368899800008,45.073065497000144],[50.344411655000016,45.05231354400014],[50.33773847700016,45.04291413000014],[50.32976321700019,45.03896719000015],[50.326345248000194,45.033107815],[50.33318118600013,44.994574286000116],[50.324554884000094,44.97321198100015],[50.304453972000175,44.95941803600005],[50.28150475400016,44.95551178600006],[50.26441491000011,44.96381256700014],[50.25660241000011,44.98598867400001],[50.26026451900012,45.00991445500007],[50.26775149800008,45.033880927000105],[50.27173912900011,45.05634186400012],[50.277110222000175,45.071519273000106],[50.28891035200016,45.07835521000013],[50.30062910200015,45.08006419500004],[50.30591881600011,45.07990143400018],[50.310883009000094,45.080552476000136],[50.32976321700019,45.07990143400018],[50.33814537900017,45.08242422100001],[50.343923373000024,45.08600495000014],[50.34839928500011,45.08490631700012]]],[[[52.70248457100009,45.405218817],[52.6770939460001,45.39695872600011],[52.62794030000006,45.41022370000003],[52.58855228000007,45.43280670800003],[52.56128991000017,45.4565290390001],[52.552012566000116,45.47833893400014],[52.5662541020001,45.49355703300013],[52.58277428500011,45.502101955000064],[52.593516472,45.508978583000086],[52.59791100400011,45.51679108300008],[52.59498131600017,45.52350495000003],[52.59994550900015,45.5274925800001],[52.63550866000011,45.52562083500011],[52.65503991000017,45.521389065],[52.67302493600001,45.50385163000006],[52.687347852000094,45.475002346000124],[52.692881707000225,45.45970286699998],[52.6990666020001,45.44147370000009],[52.70264733200005,45.425482489],[52.70248457100009,45.405218817]]],[[[49.821543816000116,46.2175153670001],[49.80469811300011,46.21051666900003],[49.78191165500019,46.22418854400014],[49.766937696000156,46.24778880400002],[49.7209578790001,46.338120835],[49.71998131600011,46.35675690300008],[49.75001061300006,46.35748932500012],[49.79216556100002,46.339056708000086],[49.81169681100019,46.326483466000084],[49.822438998000194,46.31395091400019],[49.83838951900012,46.28587474199999],[49.841319207000225,46.26284414300004],[49.821543816000116,46.2175153670001]]],[[[69.16454268400011,55.34742380800012],[69.18614343200014,55.32577138300006],[69.2262443450002,55.33357452400015],[69.31027022300006,55.38147857700007],[69.33455814700002,55.38514760400007],[69.47728845200012,55.34943918900016],[69.67386560100013,55.334039612000176],[69.8022815350001,55.29207834900008],[69.83044519100005,55.27657541900008],[69.91168054200014,55.21161814400013],[69.94030928600014,55.200249329000044],[70.01999434400008,55.1953400680001],[70.0586483160001,55.18702016300013],[70.1970378010001,55.133483378],[70.2136776130001,55.13198476100008],[70.2313509520001,55.141493225000076],[70.26401045700018,55.17342926100006],[70.28462935400009,55.183196106000096],[70.37263431800008,55.20055938800011],[70.38245284100006,55.206243796000145],[70.38529504400006,55.21394358300016],[70.38576013200004,55.222418518000055],[70.38808557200011,55.230273336],[70.400022827,55.24593129500015],[70.44115726700008,55.28334503300012],[70.46007084200006,55.28742747100004],[70.46858559900008,55.28546209800014],[70.53887740100005,55.26923736600018],[70.56125329600016,55.26959910100008],[70.5844043380001,55.27316477500015],[70.60652185000006,55.28050282900012],[70.62543542500006,55.29249176100011],[70.66574304200005,55.30918324800005],[70.72124353000011,55.313110657000024],[70.7775708410002,55.30701283800015],[70.82035892800016,55.294145406000055],[70.80454594000011,55.28153635700012],[70.78893965700009,55.26546498700007],[70.78211836800003,55.24846344000004],[70.79317712400004,55.233167216000176],[70.861906779,55.18056060800008],[70.9600920010001,55.10557810500001],[70.97714522300006,55.077982890000115],[70.97786869300015,55.06573557600008],[70.97714522300006,55.05338490900011],[70.97745528200014,55.05157623300015],[70.97745528200014,55.04790720600015],[70.97714522300006,55.046098531000055],[70.97332116800013,55.01845164000004],[70.96923872900018,55.00506744400009],[70.9633992920001,54.992251689000035],[70.95699141500009,54.97349314400012],[70.97445804800012,54.946931458],[70.96644820100002,54.93494252600006],[70.95513106300004,54.923263652000074],[70.94748295100007,54.90605540000011],[70.94593265800009,54.88791697300017],[70.95327071100014,54.873499247000055],[70.98996097800013,54.848642884000114],[70.9971956790001,54.83484527600013],[70.99409509300001,54.80750844400002],[71.0059806730001,54.77422882100007],[71.04701176,54.74906239900003],[71.09724125100016,54.7330427050001],[71.13692875200016,54.72704823900007],[71.18033695500006,54.727358297000066],[71.20069746900016,54.72399932900014],[71.21878422000012,54.714180806000066],[71.25278731300014,54.68239980100013],[71.26467289200016,54.66172922800002],[71.26487959800014,54.639198304],[71.2523222250002,54.625349019000126],[71.23015303600019,54.617545878000115],[71.1790450440001,54.60870920900011],[71.14757409700016,54.59144928000002],[71.14121789500021,54.5637507120001],[71.14824589000014,54.492488913000116],[71.1459204510002,54.4861843870001],[71.1451969810001,54.480603333000104],[71.14685062600003,54.4761591600001],[71.16690108200012,54.462723287000145],[71.17103519800011,54.45099273700004],[71.16591923000013,54.41704132100013],[71.16865808200006,54.41094350200008],[71.17609948800012,54.40758453400015],[71.19346276900009,54.40401886000011],[71.19801029500016,54.399523011000085],[71.19811364800009,54.39166819300014],[71.19568485500022,54.37451161700007],[71.19583988500008,54.36081736200005],[71.19062056500016,54.31818430700015],[71.13444828300007,54.31156972300009],[71.11625817900014,54.3117247520001],[71.09687951700008,54.315652161000074],[71.0598275150002,54.32795115200012],[71.039467,54.33208526700006],[71.00339685000009,54.333118795000026],[70.98003910300022,54.32505727200014],[70.97084069800022,54.305006816000095],[70.97714522300006,54.270125224000125],[71.0387952070001,54.26759307900012],[71.05207605000012,54.26320058200003],[71.0572436930001,54.24712921200016],[71.05636519400016,54.223409729000124],[71.05155928500008,54.200310364000146],[71.04396285000009,54.18594431600006],[71.0823584390001,54.17426544200008],[71.09744795700011,54.165067037000156],[71.11300256400014,54.150235901000045],[71.14369836400007,54.11370066400012],[71.16126835100007,54.101970113000114],[71.1823006590001,54.10155670200011],[71.2180607510002,54.11628448600011],[71.24575931800021,54.13576650000003],[71.29629886900008,54.18899322500006],[71.32058679300016,54.201033834000135],[71.34973230000017,54.19767486600013],[71.38156498200013,54.18883819600005],[71.41298425300008,54.18444570000003],[71.44352502500007,54.18511749300002],[71.45313684100007,54.18134511300009],[71.4624385990002,54.17152659100013],[71.4683297120001,54.158400777000146],[71.4771147060001,54.10966990200002],[71.49912886600006,54.11158193000013],[71.54935835800019,54.12698150700011],[71.5735429280002,54.12920359300013],[71.58418827400007,54.12589630200013],[71.60465214100006,54.11370066400012],[71.61498742700016,54.10951487300018],[71.63235070900006,54.10713775700013],[71.64723352100012,54.10858469700012],[71.68061649600006,54.119075013000085],[71.70872847500013,54.13220082700003],[71.71730676300015,54.146463522000104],[71.71224247300009,54.19069854700005],[71.71544641200015,54.21074900300009],[71.72536828700007,54.22909413700015],[71.74138798000008,54.24242665700008],[71.762471965,54.247645976000015],[71.95801558500013,54.23596710200003],[71.98364709500012,54.23157460600014],[72.00245731700014,54.22563181600013],[72.01868371600014,54.21498647100013],[72.07697473100008,54.14832387300011],[72.0995056560001,54.131890768000154],[72.12885786900009,54.126051331000085],[72.1551094970001,54.128376771000106],[72.17764042200022,54.135973205000155],[72.19045617700013,54.1519929000001],[72.18735559100017,54.179433085000156],[72.16999230900015,54.196848043],[72.14229374200013,54.20330759700006],[72.11149458800017,54.20620147700004],[72.0851396080001,54.21312611900014],[72.06674279800008,54.222376201000046],[72.06539921100014,54.22800893200015],[72.0657092690001,54.24097971700009],[72.06756962100022,54.251108297000044],[72.07211714700023,54.2627354940001],[72.07800826000008,54.27389760300004],[72.09867883300008,54.30051096600006],[72.10301965400006,54.31156972300009],[72.09475142400012,54.32076812800007],[72.07129032400022,54.33322214800016],[72.0384241130001,54.34603790300004],[72.02705529800019,54.35533966100017],[72.02467818200009,54.3709459440001],[72.04317834500009,54.37802561500003],[72.15180220500011,54.36825876900018],[72.18477177000008,54.35683827800006],[72.22187544700014,54.33322214800016],[72.25277795400015,54.30345652300014],[72.26745406100021,54.27348419200002],[72.2787195240002,54.2627354940001],[72.3244014900001,54.25348541300009],[72.33711389200008,54.2365355430001],[72.33297977700013,54.22377146500013],[72.2985632730001,54.178399556999985],[72.38806685400019,54.157625631000045],[72.48294478400007,54.13561147100016],[72.48439172400018,54.13245920900003],[72.48201460800013,54.12832509400009],[72.47674361200009,54.123674215000115],[72.46671838400007,54.10992828399999],[72.45421268700008,54.10713775700013],[72.43974328600015,54.108894755],[72.42320682800008,54.10868805000014],[72.4192794190001,54.10532908200004],[72.4119413660001,54.09277170900013],[72.40791060400008,54.08956777000007],[72.3985054930001,54.08967112300009],[72.36822310400012,54.0963373820001],[72.35840458200002,54.092978414000086],[72.35685428800011,54.081764628000045],[72.35995487500017,54.068638815000085],[72.36357222500007,54.059543763000086],[72.3818656820001,54.04300730400011],[72.40512007600014,54.03065663700014],[72.41865930200012,54.01603220700017],[72.40780725100015,53.99251943000008],[72.40780725100015,53.992312724000115],[72.38310591600006,53.956449281000076],[72.37277063000013,53.936243795],[72.3729773360001,53.920069071000015],[72.39220096900013,53.90823516900018],[72.42341353400009,53.903480937],[72.45555627400014,53.9053412890001],[72.47674361200009,53.913402812000086],[72.51808475800013,53.943220114],[72.54392297400014,53.97076365200017],[72.55684208200014,53.977223206000026],[72.5721383060002,53.97644806000012],[72.67373417100012,53.950506490000166],[72.7001925050001,53.95763783800011],[72.69481815600014,53.99257110600011],[72.67559452300011,54.021664938000114],[72.65616418500022,54.042542216000165],[72.6317729080001,54.053911031000084],[72.59714969900018,54.05458282500014],[72.50940311700018,54.043575745000155],[72.50309859300015,54.05086212200014],[72.50878299900008,54.068742167],[72.51922163900022,54.088224183000094],[72.52738651600005,54.100058085000015],[72.57306848200008,54.12868682900007],[72.62422814900017,54.13499135400009],[72.75734664000007,54.12599965500006],[72.88550419100008,54.11731801400002],[72.94203820800013,54.121762187],[72.95681766800013,54.117524720000134],[72.96839318900018,54.104140524],[72.97356083200006,54.08651886000003],[72.97676477100005,54.04770985900007],[73.0236869710001,54.03396392900005],[73.03526249200016,54.020579732000115],[73.04435754400012,53.992312724000115],[73.06275435400013,53.97908355700004],[73.19070520000015,53.96161692300008],[73.36030725100008,53.938414205000086],[73.37394982900017,53.94094635100008],[73.37932417800013,53.948697815000074],[73.38128788300017,53.960221660000016],[73.3842851150001,53.970298564000146],[73.39276005100007,53.974019267000145],[73.42407596800008,53.97262400400008],[73.43348107900012,53.970660299000045],[73.44598677600007,53.96389068700002],[73.46903446500019,53.94730255200001],[73.48164351400013,53.945390523000086],[73.50593143700021,53.94973134400006],[73.51802372200021,53.95603586800017],[73.52153772000017,53.96874827100014],[73.5198840740002,53.992312724000115],[73.5198840740002,53.99241607700016],[73.5282556560002,54.01070953400013],[73.58685673000011,54.01944285100011],[73.60442671700011,54.03468739800014],[73.60091272000014,54.04693471300008],[73.5919210210001,54.05773508800011],[73.58851037600007,54.06615834600011],[73.60153283700012,54.07122263600017],[73.65434615000007,54.078509013000044],[73.67046919800006,54.075925192000156],[73.67170943200009,54.072359518000084],[73.67491337100014,54.05158559200013],[73.68493859900016,54.04843333000018],[73.74064579300008,54.05794179300007],[73.69713423700009,53.90084543900018],[73.6828715410002,53.874128724],[73.66168420500011,53.86084788],[73.63429569500006,53.85743723500018],[73.48526086400008,53.8748521930001],[73.45590865100021,53.8736636360001],[73.43182743300011,53.86544708300006],[73.41095015500011,53.85025421200014],[73.39120975700004,53.82824005200014],[73.4378219000001,53.808499654000094],[73.34738814300007,53.787622376000016],[73.33116174300002,53.77516835500013],[73.30656376200008,53.68566477500012],[73.2637756760001,53.68101389600007],[73.24475874900017,53.67481272400006],[73.22966923000016,53.662410381000186],[73.22036747300015,53.64308339500006],[73.22491499800017,53.629854228000156],[73.2588147380001,53.60628977500015],[73.2305994060001,53.57233835900003],[73.39120975700004,53.52024851500006],[73.34718143800009,53.459373678000034],[73.41095015500011,53.43002146500005],[73.42407596800008,53.43255360900004],[73.45069726800008,53.44855956200011],[73.52360477700014,53.4923949180001],[73.52370813000007,53.4923949180001],[73.52370813000007,53.492498271000116],[73.54654911300017,53.50691599500014],[73.55523075300013,53.51477081400016],[73.56349898300007,53.525467835000185],[73.57259403500015,53.54319285100011],[73.57600467900008,53.553166402000116],[73.58251591000013,53.558644105],[73.60039595600018,53.56288157200005],[73.60794071500007,53.56334666],[73.63191857900007,53.56086619100002],[73.64070357300014,53.56324330700015],[73.64318404100013,53.57021962500015],[73.64411421700018,53.57915964800016],[73.65103885900007,53.59476593000004],[73.6512455650002,53.60277577699999],[73.65289921100006,53.609183656000035],[73.65982385300006,53.61156077100016],[73.73651167900019,53.60975209600018],[73.75325484200013,53.60701324500006],[73.7877746990001,53.59507598900011],[73.803277629,53.598383281],[73.87273075400016,53.63212799100016],[73.904150025,53.63915598500007],[73.93670617700016,53.639517721000075],[73.97670373600013,53.635176901000094],[74.04357303900011,53.629957581000085],[74.05804244000015,53.62458323200012],[74.06300337700011,53.6087185680001],[74.06145308400008,53.589494935000076],[74.06279667200013,53.57321685800015],[74.07685266100006,53.56618886400007],[74.10765181500014,53.56510365900006],[74.11871057200014,53.56954783100014],[74.13721073400004,53.593939107],[74.14795943200008,53.598021545],[74.2138985600001,53.59703969400011],[74.22330367000015,53.59461090200007],[74.2352926020001,53.581898499000104],[74.24159712700012,53.567790833000075],[74.2504854740001,53.556783753],[74.27032922400022,53.553218079000125],[74.26309452300003,53.53022206600018],[74.26960575400014,53.51523590200009],[74.30598596200011,53.492601624000066],[74.30608931500015,53.4923949180001],[74.30619266800008,53.4923949180001],[74.35890262900008,53.46614329100008],[74.38835819500011,53.46221588200011],[74.40913212100023,53.477563782000075],[74.4568811440001,53.56975453700012],[74.45543420400011,53.57740265000011],[74.44458215400007,53.585825908000075],[74.42659875500007,53.596367900000146],[74.42081099500008,53.60308583700008],[74.42969934100019,53.65357371099999],[74.43848433500008,53.673417460000096],[74.45347050000007,53.68499298100012],[74.61645796700004,53.68070383800006],[74.62679325400009,53.68731842000007],[74.64446659400008,53.73460235600011],[74.6544918220001,53.74839996400006],[74.66296675600019,53.754962871000046],[74.67464563000007,53.757081604000014],[74.72528853400016,53.75914866200015],[74.73490035000006,53.765194804000124],[74.74337528500016,53.779457499],[74.75433068900023,53.808499654000094],[74.76218550600007,53.822555644000104],[74.77200402800023,53.83087554900008],[74.80621382700022,53.83769683900012],[74.88848270700007,53.83635325200005],[74.92393273900021,53.83097890300009],[75.00082727100019,53.80648427300004],[75.02790572200016,53.807931213000025],[75.15771691900014,53.86508534800008],[75.27750289000008,53.917691956000155],[75.4339791260002,53.98652496400014],[75.36070194600009,54.059543763000086],[75.4292248940001,54.09008453400009],[75.46436486900015,54.100574850000136],[75.49981490100016,54.10233184800001],[75.60316776600003,54.094528707],[75.64037479600009,54.09886952800018],[75.69123357400022,54.113138241000016],[75.75199589000007,54.13018544599999],[75.86527063000008,54.16206980500006],[76.04190067500005,54.211730855000056],[76.18380415900006,54.25157338500015],[76.17191857900009,54.27467275100007],[76.16974817000019,54.29136423800018],[76.17708622300019,54.30676381500017],[76.19393274000018,54.32562571300009],[76.21481001800007,54.342213847000025],[76.23424035700012,54.34743316700012],[76.43309126800008,54.31658233700013],[76.47649947100015,54.323145244000116],[76.54006148300013,54.3511021930001],[76.56186893800006,54.35626983700003],[76.57716516100012,54.35678660100017],[76.607757609,54.35456451500006],[76.62305383300006,54.35590810200004],[76.64093387800013,54.366501770000106],[76.64527469900011,54.383813375],[76.64568811,54.40370880200011],[76.65178592900006,54.42231231700008],[76.67276656100007,54.43647166],[76.70129195100006,54.44024403900011],[76.75720585200023,54.437091776999985],[76.78211389100008,54.439468893000125],[76.85239384000008,54.461172995000126],[76.87234094200019,54.46468699200006],[76.89590539600012,54.46386016900006],[76.91047815000016,54.45461008800013],[76.9035535080001,54.43259592700014],[76.88567346200014,54.42277740499999],[76.80474816900002,54.41011667900015],[76.78676477000008,54.402830302000076],[76.76464725800021,54.39053131200005],[76.75296838400018,54.37668202700017],[76.76609419800016,54.36458974200018],[76.81580692500013,54.35559804400004],[76.83420373600015,54.34567616800014],[76.84319543500007,54.32231842100002],[76.83771773200007,54.296893615999984],[76.82087121600014,54.27761830600015],[76.80009729000008,54.26066843700014],[76.78232059800015,54.24237498000017],[76.77022831300016,54.21312611900014],[76.76247684700016,54.20263580400008],[76.75121138500018,54.19400583900013],[76.72619999200012,54.180208232],[76.71627811700009,54.17085479800014],[76.66460168500006,54.13406117800003],[76.60383020100008,54.13535308900002],[76.47649947100015,54.164033508],[76.4126274010001,54.16568715500013],[76.39361047400021,54.16175974500008],[76.37666060400014,54.15426666300014],[76.37438684100019,54.14775543200007],[76.47649947100015,54.04202545200003],[76.4825972900002,54.03013987300001],[76.49520633900013,53.992312724000115],[76.52569543500013,53.96130686500011],[76.61096154800006,53.920637512000056],[76.73384810400009,53.862036439000136],[76.91926314300017,53.773618063000114],[77.10467818200001,53.68514801100015],[77.29009322200014,53.596729635000045],[77.47550826000011,53.50825958300011],[77.6127608640002,53.44278554400002],[77.7338904220002,53.36149851500012],[77.78465673900016,53.327440475000074],[77.86680220600012,53.272330832000094],[77.9763562420001,53.168512879],[78.04384566300021,53.09691518200004],[78.15195275900007,52.98216766400016],[78.26005985500015,52.867394308000186],[78.36827030500015,52.75264679000009],[78.47648075400016,52.63792511100002],[78.61797082500019,52.47661712700001],[78.75956425000018,52.31525746700008],[78.90126102700017,52.15392364500003],[79.04275109900011,51.9925898230001],[79.04275109900011,51.99251230900007],[79.04285445100007,51.99251230900007],[79.04295780400017,51.99251230900007],[79.14972131400006,51.86758453400013],[79.2563814700001,51.74255340600014],[79.30432255000014,51.686378260000126],[79.36304162600007,51.61757395500011],[79.46980513500013,51.49259450400013],[79.55920536300007,51.372498475000114],[79.64850223800013,51.25242828400009],[79.73800581900011,51.132435609000176],[79.82730269400011,51.01239125600007],[79.87360477700017,50.95017283200015],[79.92693485500016,50.87849762000008],[79.95525354000009,50.82599436400012],[79.96651900200011,50.810181376000045],[79.99008345600012,50.788115540000135],[80.0212960210001,50.766876526000075],[80.05498905500016,50.75287221300006],[80.08599491400017,50.75214874300015],[80.03111454300009,50.80878611300015],[80.01540490800019,50.839481913],[80.04930464700013,50.85234934500009],[80.06697798700012,50.84661326100003],[80.10160119600013,50.82155019200012],[80.11917118400018,50.81493560800011],[80.14273563600008,50.81710601800002],[80.15451786300011,50.82723460000015],[80.1681604410002,50.8598424280001],[80.18128625500017,50.8756554160001],[80.19544559700009,50.88232167600004],[80.23482303900013,50.89322540300018],[80.24371138500013,50.898651429000054],[80.25818078600017,50.91131215500009],[80.26727583900006,50.91565297500007],[80.2795748290001,50.91715159100009],[80.32039921100008,50.91410268200014],[80.36019006400008,50.91921864900014],[80.40287479700007,50.9337397260001],[80.43904829900012,50.95813100300002],[80.45940881400006,50.9926508590001],[80.46312951700023,51.00784373000012],[80.46498986900016,51.0257754520001],[80.46447310400012,51.04370717400017],[80.46106245900009,51.05895172200012],[80.4516573490001,51.07349863700007],[80.42406213400014,51.09210215200012],[80.41052290800016,51.10484039400008],[80.40711226500011,51.117216899000034],[80.40762902800006,51.13574290000018],[80.41341678900002,51.16842824300006],[80.42199507700016,51.18757436200015],[80.43439742000007,51.20062266000012],[80.45207076000023,51.207934876000095],[80.4761519780001,51.20964019800006],[80.56131473900021,51.20209543900001],[80.59924523900023,51.208554993000156],[80.61247440600012,51.233876445000064],[80.6141280520001,51.24966359500003],[80.62146610500015,51.26454640700008],[80.63242150900007,51.27795644100003],[80.64503055900016,51.289247742],[80.6645642500001,51.30015146900014],[80.68275435400014,51.302011820000146],[80.81659631300008,51.26100657200011],[80.84253788300006,51.25751841300017],[80.85452681500007,51.26462392200001],[80.86408695500009,51.275837708000054],[80.8824837650001,51.28485524500009],[80.9057381600002,51.283563335000146],[80.91421309500012,51.27017913800002],[80.91628015100017,51.23537506100014],[80.92423832200015,51.216073914],[80.93607222500006,51.20568695100009],[80.97601810700009,51.19108835900011],[81.0221134850001,51.17739410400009],[81.04485111500011,51.173518372000146],[81.07012089000008,51.17199391700005],[81.09833622300002,51.190907491000175],[81.11285730000006,51.19594594400006],[81.13275272600018,51.19447316500005],[81.15202803600013,51.186540833],[81.158642619,51.174267681000124],[81.15595544400011,51.157421164000155],[81.14717045100011,51.135949606000125],[81.0805078540001,51.030865580000075],[81.0540495200001,50.96986155200001],[81.05151737500009,50.95570221000015],[81.05828698700005,50.94707224500003],[81.0779240310001,50.94066436800007],[81.10438236500008,50.936685282],[81.15884932500009,50.938235576000025],[81.27744673600009,50.962678528000154],[81.40079838100021,50.95911285400008],[81.4012117930001,50.92299102800017],[81.4160946050001,50.88965972900003],[81.43950402900006,50.85968739800007],[81.46611739100015,50.833745830000126],[81.44472334900016,50.813385315000104],[81.42611983200018,50.78816721600004],[81.41878177900011,50.76248402900016],[81.43108077000014,50.74072825200015],[81.46022627700009,50.73034128900004],[81.67411503100018,50.73602569600017],[81.69721439600008,50.74501739600011],[81.72573978700021,50.77462799100006],[81.74413659700011,50.784911601000076],[81.76346358300006,50.78434316],[81.80087732000013,50.76785837900003],[81.82242639100016,50.76573964500015],[81.89503177900009,50.77421458000005],[81.94536462400018,50.76920196600018],[81.99032312000011,50.75964182500009],[82.01254398700021,50.750133363000096],[82.07310876500017,50.715665181000055],[82.0955363360001,50.708120423000096],[82.14731612100015,50.701609192000134],[82.1736711020002,50.70305613200012],[82.19878584800014,50.70879221600008],[82.21661421700016,50.71943756100016],[82.23630293800012,50.73447540300005],[82.25573327600009,50.745224101000176],[82.27314823400016,50.7430536910001],[82.2883927820001,50.73742096000014],[82.30115686000006,50.7409349570001],[82.31366255700007,50.74775624700005],[82.32839034000008,50.75209706600005],[82.34120609500022,50.75028839100007],[82.3513346760001,50.74553415900006],[82.36249678600021,50.74212351500013],[82.40828210500015,50.74837636300013],[82.43029626500007,50.741141663000164],[82.47582320100011,50.71401153599999],[82.60423913600019,50.76904693600015],[82.67276208500013,50.78976918600007],[82.69803186100009,50.81095652300003],[82.69999556500014,50.88097808900007],[82.72645389800019,50.90071848500013],[82.76453942900017,50.90666127600004],[82.84412113400016,50.891726787],[82.97589603700007,50.881908265000035],[83.02147465000004,50.8917784640001],[83.05785485800007,50.91715159100009],[83.08607019100012,50.95254994800011],[83.10756758700009,50.9926508590001],[83.11738610900014,50.99456288700013],[83.12741133600016,50.99523468000011],[83.13753991700011,50.99466623900006],[83.16327478100018,50.98846506800008],[83.17960453300006,50.98727651000014],[83.19593428600014,50.988775126000135],[83.21205733200004,50.9926508590001],[83.32378177900009,51.002417705000155],[83.43395593300012,50.9926508590001],[83.46201623500016,50.964332174],[83.47700240100002,50.95337677100004],[83.49834476800005,50.94541860000008],[83.60975915500009,50.93203440300012],[83.63265181500006,50.92479970300015],[83.69058109500017,50.891830139000106],[83.71280196200021,50.88221832300009],[83.73264571100012,50.879634502],[83.77817264800015,50.87942779600006],[83.80044519000009,50.8756554160001],[83.82049564600007,50.86800730400013],[83.8382723390001,50.85627675400015],[83.8696916100001,50.82139516200009],[83.88281742400007,50.81199005100002],[83.92198815900022,50.800724589000154],[83.95056522600012,50.78041575200014],[83.94973840400009,50.717887269000144],[83.97583500200008,50.68636464500018],[84.08859727500013,50.634612502],[84.10171879100008,50.628590394000085],[84.1330347090001,50.60078847300004],[84.1423364670002,50.58151316300008],[84.14502364100021,50.56606191000019],[84.15122481300014,50.55257436100013],[84.18595137600008,50.527976380000055],[84.19561486800008,50.51143992100005],[84.1979403080002,50.49314646400007],[84.17675297000008,50.43914459300011],[84.19184248900015,50.40772532199998],[84.21840417500019,50.377701314000106],[84.23938480600006,50.344628398000125],[84.24186527500015,50.32189076800013],[84.23948815900022,50.299308167000035],[84.23964318900008,50.27822418200018],[84.24997847600017,50.25993072500002],[84.26181237800009,50.2536262010001],[84.29157800400017,50.248045146],[84.30439375800015,50.243239238000065],[84.31214522400015,50.23636627200001],[84.32434086100008,50.21962310900007],[84.33136885600018,50.21347361300009],[84.36878259300013,50.211819967000125],[84.40526615400003,50.230836894],[84.4407678630001,50.244634501000164],[84.47575280800012,50.227064515000095],[84.50458825700011,50.204585267000155],[84.5356974690001,50.19094268800008],[84.56928715000012,50.185516663],[84.6059774170001,50.18742869100011],[84.64199589100005,50.18489654600005],[84.66669722500009,50.17001373300009],[84.68938317800016,50.151048482000036],[84.72028568500016,50.13663075800012],[84.73811405400008,50.135390524000066],[84.77320235200014,50.13833608099999],[84.79066898600014,50.13275502600005],[84.80152103700013,50.12376332700002],[84.82611901900012,50.08671132400015],[84.83867639200011,50.08082021100013],[84.8558846440001,50.084850973000144],[84.87376468900007,50.09244740900003],[84.88797570900013,50.096736553000156],[84.91024825100007,50.09508290600003],[84.97577396700015,50.075187480000025],[84.98672937000006,50.0669709270001],[85.0201123460001,50.03307118800008],[85.02832889800005,50.020513815000136],[85.02543501800008,50.004080709],[85.00936364800012,49.99782786100008],[84.96471521000015,49.99276357000003],[84.96461185800014,49.99276357000003],[84.96218306500006,49.991885071000084],[84.95479333600017,49.99048980800002],[84.95065922000006,49.93328399700006],[84.95458662900009,49.906929017000024],[84.97577396700015,49.894009908],[85.03261804200011,49.88496653300005],[85.05628584800016,49.87333933600017],[85.07075524900009,49.85023997000009],[85.07592289200007,49.81391143900014],[85.08171065300014,49.80001047800006],[85.09814375800013,49.78218210900012],[85.16325606300019,49.7339679980001],[85.18511519400013,49.705029196000126],[85.19503706900011,49.625654195],[85.22361413600012,49.59573354100014],[85.26309493000022,49.5815225220001],[85.30278243000012,49.59010081100003],[85.32035241700007,49.59945424500016],[85.34205651900018,49.608187562000026],[85.36422570900011,49.61413035100004],[85.38401778200009,49.615680644000165],[85.40727217600008,49.60963450200002],[85.4509904380001,49.58844716400007],[85.47569177300008,49.5830728160001],[85.51320886300019,49.58534657900013],[85.53129561400013,49.58911895800004],[85.54927901300019,49.595268453000024],[85.58080163600007,49.613355205000126],[85.59718306500011,49.61929799400015],[85.61485640400011,49.61712758400016],[85.62844730600008,49.60648223900007],[85.64229659100008,49.57749176099999],[85.65619755100013,49.56493438700009],[85.67330244900009,49.560438538000156],[85.69004561400007,49.56291900700013],[85.72575402800013,49.57304758700009],[85.74740645400013,49.57299591100015],[85.76471805900022,49.566846415],[85.77954919500016,49.55604604100007],[85.7944320070001,49.5418350230001],[85.8092114670002,49.53651235000014],[85.82750492300008,49.54100820000018],[85.86078454600012,49.55749298100007],[85.88073164900007,49.56328074200003],[85.89985192900022,49.56405588800014],[85.94057295700011,49.55961171500003],[85.94212325000015,49.5510851040001],[85.93189131700015,49.51005401700017],[85.93142622900021,49.49284576500009],[85.94625736500015,49.481373596000154],[85.9630005290002,49.47858306900012],[85.98005375200013,49.48287221300008],[85.99581506300008,49.492794088],[85.99597009300005,49.492794088],[86.02754439300006,49.51563507100009],[86.07048750800017,49.526280416000176],[86.11151859600014,49.52018259700012],[86.13668501800007,49.493000794000054],[86.17725101700009,49.463338522000164],[86.21425134300009,49.496153057000086],[86.24639408400012,49.550051575000126],[86.2721289470002,49.58364125600015],[86.32948978700009,49.6102546180001],[86.3918115640001,49.6249824020001],[86.45826745600007,49.66565175400014],[86.47547570800006,49.67081939700013],[86.48178023300008,49.67691721700011],[86.4829687910001,49.68627065100004],[86.47966149900016,49.697277730000124],[86.47273685700011,49.70833648800014],[86.51971073400009,49.72683665000006],[86.52441328900014,49.729523824000104],[86.53743575000007,49.739445699],[86.54560062700008,49.74264963800006],[86.55221521000007,49.74233958000017],[86.55820967600012,49.74146108100014],[86.56513431800008,49.74270131499999],[86.58492639200009,49.760064596000106],[86.595365031,49.78089019800014],[86.61019616700015,49.795514628000134],[86.64244226100013,49.79386098300007],[86.68492028800003,49.77820302400012],[86.70021651200008,49.777737936],[86.73080896000013,49.7825438440001],[86.74837894700006,49.782957255000106],[86.75892094000008,49.77861643500013],[86.75959273300006,49.76771270799999],[86.75256473800013,49.756033834],[86.74341801000006,49.744716696000026],[86.73763024900009,49.73500152600009],[86.74052413000005,49.722754212000055],[86.75147953300015,49.711695455000054],[86.77587080900017,49.69500396800011],[86.75561364800015,49.68151641900006],[86.73649336800017,49.671904603000044],[86.71613285300012,49.66678863500005],[86.66771203700009,49.664256491000074],[86.64709314000018,49.6536628220001],[86.61112634300011,49.62022817000008],[86.5959851480001,49.60188303600002],[86.59179935700016,49.587206930000136],[86.59934411600008,49.57351267500012],[86.61856774900009,49.557958069000094],[86.64254561400006,49.54746775400003],[86.66414636200007,49.54741607700011],[86.70951827000013,49.55449574900013],[86.73256595900008,49.55067169200011],[86.80243249500009,49.522249655000095],[86.82434330300012,49.50922719400013],[86.82289636300007,49.492794088],[86.8142663980001,49.47295033799999],[86.81400801600014,49.45000600200014],[86.82899418200012,49.43331451500002],[86.85441898600018,49.42127390600014],[86.90547530100017,49.40468577100013],[86.93307051600019,49.39011301699999],[86.93079675300007,49.380552877000085],[86.91565555800011,49.369959209000015],[86.90506189000004,49.351924134000015],[86.91302006100014,49.33869496700011],[86.93332889800016,49.324277242],[87.00014652500006,49.28908559200012],[87.01254886900009,49.28071401000015],[87.01688969000006,49.2727558400001],[87.01714807100021,49.25864817400016],[87.0245378010002,49.24893300400011],[87.03663008600019,49.24273183200013],[87.05037601700016,49.23890777600009],[87.07600752800013,49.236892395000055],[87.16044681800017,49.24200836200004],[87.19031579700018,49.237822571000024],[87.2179626870001,49.229812724000126],[87.2717578530002,49.205111389000116],[87.287674194,49.184337464000166],[87.3081897380001,49.113850810000095],[87.32379602100009,49.085273743000144],[87.20065108200018,49.108734843000136],[87.16199711100009,49.122790832000064],[87.11631514500006,49.12976715100013],[86.9754451900001,49.0924050900001],[86.94655806500006,49.09447214800015],[86.88733687400004,49.106822816000104],[86.85948327600008,49.105324199],[86.83819258600008,49.093852030000086],[86.81617842600022,49.05845367500016],[86.798918498,49.04222727500014],[86.76005782100016,49.02010976200013],[86.74352136300014,49.007707419000084],[86.72750166900013,48.99034413700014],[86.71385909,48.9699319460001],[86.70941491700009,48.95422231100004],[86.7115853280001,48.93706573499998],[86.71804488100021,48.9125194300001],[86.74186771700013,48.87872304400004],[86.77370039900009,48.85851755800006],[86.78946171100007,48.83913889600007],[86.76465702300013,48.80761627300002],[86.74610518400019,48.79283681200009],[86.73918054200007,48.78353505500017],[86.74052413000005,48.77170115200006],[86.75189294500015,48.72917144900002],[86.75199629700009,48.715425517000156],[86.74450321400016,48.70353993700002],[86.66900394700022,48.634241842],[86.62109989400018,48.60315846800016],[86.6055452890001,48.59011016900003],[86.59355635600011,48.57414215100009],[86.57515954600015,48.53982900100006],[86.56508264200008,48.52732330300016],[86.54642745000008,48.51722056100003],[86.43062056500017,48.4858788050001],[86.33383060700007,48.49040049300011],[86.30737227400007,48.483088277000135],[86.28628829000016,48.469704082000085],[86.24670414200008,48.43735463500012],[86.19203047700013,48.41823435500011],[86.00599532100007,48.42955149400008],[85.78368330900017,48.40758901000011],[85.74740645400013,48.390096538000144],[85.7186743570002,48.358832296000074],[85.58638269000008,48.14124867700015],[85.56178470900008,48.03066111300002],[85.54710860200011,47.99298899400016],[85.5287117930001,47.966608175000104],[85.51780806500012,47.944645692000115],[85.51537927200016,47.920280253000115],[85.59542606600021,47.62407094400014],[85.59578780100006,47.590894674000126],[85.57997481300006,47.52376698900018],[85.58457401500019,47.49309702600005],[85.58457401500019,47.49294199700002],[85.60023197500001,47.463202210000034],[85.6703568930001,47.384343974],[85.67888350400018,47.36382843100004],[85.6740259200001,47.344294740000024],[85.66720463000009,47.326052959000044],[85.67020186400006,47.309051412000045],[85.678986857,47.29070627900016],[85.678986857,47.27489329000015],[85.66839318900004,47.241872051000186],[85.66441410300015,47.22130483100001],[85.65965987200016,47.20652537000008],[85.64730920400021,47.19789540700005],[85.60162723800013,47.194433085000085],[85.57749434400014,47.18916208900007],[85.55682377100007,47.178749288000134],[85.54710860200011,47.162031963000096],[85.54426639800013,47.14322174100009],[85.53863366700008,47.12792551700012],[85.5297453200001,47.114282939000034],[85.51687788900007,47.100304464000125],[85.50809289600008,47.0825277710001],[85.50576745700008,47.06389841700003],[85.49863610900009,47.05183197100014],[85.43212854000015,47.0531238810001],[85.30371260600006,47.039403789000076],[85.24614506000015,47.04441640200004],[85.22583622300013,47.04157419900015],[85.20511397300017,47.03371938100004],[85.19152307100008,47.0232807410001],[85.16739017800015,46.99299835200016],[85.1459961350001,46.978089702000105],[85.0771631270002,46.94331146300006],[85.04822432500006,46.92070302400013],[85.03535689300006,46.91496694000007],[84.99039839700006,46.907680563],[84.97577396700015,46.901996155000134],[84.95939253800012,46.89088572300012],[84.93680993700016,46.8610167450001],[84.91603601100022,46.85055226600015],[84.8401750090002,46.83913177500006],[84.7671045330001,46.81807362900004],[84.73961267100012,46.814766337000044],[84.7197689210001,46.82130340600012],[84.71553145400004,46.835178528000185],[84.72441980000004,46.85026804699999],[84.73857914200013,46.866158549000104],[84.7495862230002,46.88246246400003],[84.75160160300007,46.917990011000185],[84.73165450100012,46.94775563600008],[84.69920170100013,46.97023488399999],[84.66354496300012,46.98385162400008],[84.61600264500012,46.98628041700014],[84.52102136300019,46.96979563400007],[84.47575280800012,46.975247498000144],[84.42180261300015,46.993101705000086],[84.40588627100013,46.99423858700003],[84.38934981300022,46.99315338200002],[84.38862634300014,46.99299835200016],[84.26584314000016,47.000129700000016],[84.15907963100008,46.993256735000145],[84.15871789600007,46.99315338200002],[84.1581494550002,46.993101705000086],[84.15783939700012,46.99299835200016],[84.09396732600007,46.9674185190001],[84.06962772600016,46.96442128500011],[83.999192749,46.974317322],[83.90534834800022,46.97395558699999],[83.52449304200016,47.06710235700011],[83.35339237500013,47.14497874000007],[83.31416996300018,47.157949524000074],[83.22197920800012,47.171902161000084],[83.20192875200009,47.18035125800016],[83.15035567200019,47.211537985000135],[83.12637780800017,47.21758412700008],[83.09909265200015,47.21970286100015],[83.07160079000019,47.218514303000134],[83.04689945500016,47.21466440800002],[83.02147465000004,47.20590525400003],[83.0135164800001,47.19458811500014],[83.01517012600007,47.154383851000105],[83.01217289300014,47.14265330000005],[83.00132084200018,47.12136261000013],[82.99822025600022,47.11025217700002],[82.99946049000019,47.100046082000134],[83.00628177900015,47.08061574300008],[83.00545495600014,47.06978953100004],[82.99015873200008,47.03216908800003],[82.9855078530002,47.01253204300018],[82.98835005700008,46.99299835200016],[82.99336267100014,46.97560923300013],[82.9918123780001,46.95873687800015],[82.9855078530002,46.942510478000045],[82.83895349200006,46.73244578100015],[82.74743452900012,46.493338928000114],[82.70785038300008,46.434169414000124],[82.70128747600009,46.416857809000035],[82.6892985440002,46.36254587800006],[82.67436405500015,46.331126607000115],[82.60785648600007,46.2552139290001],[82.56827233900005,46.19650950100005],[82.54186568200006,46.13150054900007],[82.51587243700007,45.99316274000002],[82.51587243700007,45.993111064000104],[82.48894901500009,45.90169545500005],[82.47582320100011,45.8731700650001],[82.44750451700011,45.82542104100004],[82.37221195500015,45.73416046200013],[82.3360384530001,45.63514841700014],[82.3046191820001,45.582851868000105],[82.2971374260002,45.55454491100012],[82.29149336800006,45.53319081700012],[82.32746016500019,45.493348288],[82.32761519400005,45.493348288],[82.3277702230001,45.493296611000076],[82.36265181500008,45.48120432600011],[82.51303023300012,45.4657530730001],[82.61571130400014,45.435419007000164],[82.63198938000002,45.415833639000034],[82.63638187700022,45.37888499000008],[82.63384973100003,45.33935251900006],[82.61457442300011,45.2485570270001],[82.58522220800015,45.17683014],[82.53974694900009,45.12365509100006],[82.47582320100011,45.115696920000104],[82.42745406100008,45.137245993000064],[82.34182621300008,45.204890442000035],[82.29459395300009,45.22819651300016],[82.24529463800016,45.23181386300014],[82.1917578530001,45.222202047000124],[82.00045170100006,45.15352406900017],[81.95011885600016,45.144480693000034],[81.91012129800012,45.15801991799999],[81.89100101800008,45.173729554000076],[81.87534305800013,45.18106760700005],[81.80728519700008,45.18871571900003],[81.79364261900017,45.195640361000116],[81.78847497600006,45.20912791000007],[81.78733809400015,45.23233062800007],[81.78144698100007,45.266643779],[81.76516890500014,45.30772654300007],[81.73927901200008,45.338060608000106],[81.70475915500012,45.339869283],[81.66522668500008,45.3479824830001],[81.62259362800009,45.33433990500002],[81.5420300700001,45.29330881800014],[81.14417321800008,45.204683736000064],[81.0625244550001,45.172230937000144],[81.02190677900009,45.161637268000064],[80.97601810700009,45.16106882800004],[80.8538550220002,45.126497295000135],[80.82755171700013,45.125773824000035],[80.7456962480002,45.14427398800013],[80.69712040200014,45.14365387],[80.53682010900016,45.10107249000011],[80.46757369000008,45.10629181000002],[80.44535282400014,45.104224752000064],[80.42509566300012,45.0921324670001],[80.40638879400014,45.056630758000054],[80.3900590410001,45.04577870700008],[80.3650476490001,45.04319488599999],[80.29053023300017,45.04624379500002],[80.21901005100018,45.02603831000012],[80.14759322100022,45.03446156900012],[80.1033581950002,45.032187805000106],[80.06170699100008,45.01895863900001],[80.02377649000007,44.993275452000134],[80.02377649000007,44.99322377600011],[79.92466109300003,44.931677144],[79.87815230300012,44.91472727500008],[79.85820520000019,44.903720195000105],[79.84301232900005,44.87348948200018],[79.86864384000015,44.849356588000134],[79.99173710100015,44.79364939400009],[80.03938277200021,44.79049713200014],[80.21828658100006,44.81809234600002],[80.24474491400011,44.815973613000054],[80.26324507600006,44.80935902900016],[80.31450809800018,44.780316874000064],[80.4761519780001,44.73541005400006],[80.49227502400018,44.72796864800013],[80.49744266800003,44.7149461870001],[80.4919649660001,44.70171702100011],[80.4761519780001,44.69365549800004],[80.41114302600012,44.682803447000154],[80.37631311000004,44.67127960300005],[80.35584924300011,44.65288279300013],[80.35450565600014,44.64177236000002],[80.35915653500008,44.63257395400002],[80.37724328600021,44.615314026000036],[80.38375451700009,44.60280833000003],[80.37993046100016,44.59133616200002],[80.36453088400005,44.56968373700012],[80.33786584500008,44.494029440000176],[80.3304244390001,44.45305002900015],[80.33290490700008,44.41739329100006],[80.37300581900016,44.27021881200007],[80.37321252500013,44.2309964000001],[80.34603072100006,44.158907776000135],[80.33889937400008,44.121494039000154],[80.34510054500018,44.10309722900014],[80.35977665200006,44.08929962200001],[80.39233280400012,44.06547678700003],[80.40380497300012,44.048940328000135],[80.41000614400009,44.031938782000125],[80.41238326000004,44.01359364900004],[80.41269331900011,43.993336487000036],[80.41269331900011,43.99323313400011],[80.42313195800008,43.97214914900009],[80.43987512200013,43.94899810800008],[80.4761519780001,43.91024078400007],[80.59443933150018,43.684556885000134],[80.71272668500015,43.45887298600003],[80.71014286300007,43.42585174600005],[80.69422652200015,43.394716696],[80.6428601480001,43.32621958500009],[80.6584664310002,43.31063914000005],[80.6959835210001,43.30327524900004],[80.73546431500014,43.288883362000135],[80.74848677600019,43.27516326900012],[80.75582482900009,43.25761912000006],[80.75913212100008,43.23824045900007],[80.75995894400009,43.2187842820001],[80.76522994000001,43.19994822300008],[80.78817427600009,43.168244731000144],[80.79344527200007,43.149460348000055],[80.78786421700008,43.12804046700013],[80.77339481600015,43.11292511000012],[80.75344771400013,43.104036764000014],[80.73153690600006,43.10109120700009],[80.71076298000011,43.104786072000124],[80.66001672300015,43.132820536000125],[80.61846887200007,43.13426747700011],[80.57588749200006,43.11941050200009],[80.49785607900017,43.076183166000035],[80.41021285000008,43.04866546700008],[80.36814823400007,43.028459982000165],[80.35512577400019,43.00058054600002],[80.37383264200015,42.9751815800001],[80.4077323810001,42.95469187400012],[80.4761519780001,42.930274760000096],[80.52193729700011,42.925443014000095],[80.54291792800021,42.916658021],[80.55449344900009,42.898933004000085],[80.54860233600007,42.878469136000106],[80.52669152900009,42.86839223300008],[80.4761519780001,42.86389638300007],[80.40049768100012,42.84301910400007],[80.38168746000022,42.83141774600013],[80.33393843600007,42.81707753600013],[80.31678186100007,42.81560475700006],[80.28174524000016,42.82273610500009],[80.26489872300007,42.823666280000126],[80.24825891100008,42.816199036000015],[80.227484986,42.79098093700004],[80.20536747200012,42.73108795200007],[80.18893436700014,42.70158070900005],[80.15245080500014,42.66036875500008],[80.14376916500007,42.644762472000124],[80.14004846200007,42.6229550180001],[80.14542281100015,42.607116191],[80.15348433400013,42.59153574700015],[80.1623726810002,42.55239084900002],[80.17374149600012,42.536913758000125],[80.20009647600008,42.508388367000165],[80.21053511600022,42.49084421900001],[80.21208540900014,42.47875193300003],[80.20629764800017,42.46596201600015],[80.19472212700012,42.44629913400008],[80.1961690680001,42.4345944220001],[80.21869999200013,42.35493520100009],[80.2255212810002,42.33901886100015],[80.23554650900022,42.32457529700004],[80.2494991460002,42.309950867000154],[80.26841272000016,42.2379655970001],[80.26045454900006,42.21649403900007],[80.24908573500008,42.204892680000015],[80.21032841000006,42.18951894100003],[80.1666101480001,42.208716736000056],[80.1365344640001,42.23886993500004],[80.1100761310001,42.273338115000016],[80.07700321500013,42.305765076],[80.01209761600009,42.3495091760001],[79.97396040800007,42.391470439],[79.96011112500017,42.40351104800008],[79.91794315600012,42.42444000300016],[79.69645796700016,42.459838359000074],[79.6525330000002,42.4610527550001],[79.57191776500011,42.44952891100017],[79.47641971900006,42.45397308399999],[79.42567346200016,42.46960520400013],[79.39838830600016,42.49694203800006],[79.35301639800011,42.57729889000008],[79.32128706900019,42.60218109200015],[79.24211877400009,42.62977630600015],[79.2063586840001,42.65646718300009],[79.19219934100012,42.67483815600009],[79.18186405500009,42.6935967000001],[79.17607629400007,42.71393137600002],[79.17514611800017,42.7370307420001],[79.18083052600011,42.77552968400006],[79.17338911900012,42.7856324260001],[79.14827437400018,42.79098093700004],[79.10879357900015,42.78534820600011],[79.03086551900017,42.756151022],[78.99293501800017,42.75713287400005],[78.95428104700008,42.76842417400003],[78.8881352130002,42.77121470100017],[78.8079333900001,42.79558014000009],[78.68711389200008,42.80459767700013],[78.66995731600011,42.81116058400011],[78.63543745900003,42.83247711200012],[78.59430301900008,42.85022796600005],[78.49611779800009,42.87560109500005],[78.42955855400011,42.88066538500011],[78.38553023300008,42.87823659300007],[78.36465295400009,42.87252634700011],[78.32837609900011,42.85529225700013],[78.31121952300006,42.85051218700012],[78.29013553900015,42.85144236300009],[78.24910445200007,42.86239776700016],[78.22977746600006,42.86500742700015],[78.1835787360001,42.86014984200012],[78.13789677000008,42.86198435500013],[78.03061649600014,42.85467214000006],[77.98617476400014,42.86020151800007],[77.92933068900018,42.885006206000085],[77.90700647000013,42.891284892],[77.88385542800015,42.893222758000135],[77.86122115100008,42.89081980400008],[77.85222945200016,42.887951763],[77.83558964000022,42.87983856200019],[77.80995813000007,42.87128611300007],[77.79817590300016,42.877513123000156],[77.7916646730001,42.88304250100008],[77.7875305580001,42.88970876100008],[77.78122603400007,42.895625713000086],[77.71383996600017,42.90758880700004],[77.6477974850002,42.90950083400007],[77.62692020700015,42.906555278000056],[77.57441695100007,42.88784841000007],[77.55777714100006,42.88813263000004],[77.5384501550001,42.89627166800007],[77.52098352100015,42.906917013000154],[77.5015531820001,42.9145392860001],[77.46176232900004,42.914384258],[77.4339604090002,42.921412252],[77.41856083200011,42.922239075000036],[77.40326460700007,42.91975860600006],[77.36088993300015,42.90453989700002],[77.32812707500014,42.89756357900002],[77.22963179500017,42.909810893000135],[77.21189028200016,42.90994368900003],[77.19511193900021,42.91006927500011],[77.17867883300002,42.913195699000156],[77.1636926680001,42.92198069300004],[77.1350639240001,42.95174631800013],[77.1240051680002,42.95890350399999],[77.089898723,42.968153585],[76.97641727700007,42.98220957500011],[76.95688358600009,42.988514099000106],[76.93734989400016,42.986033631000154],[76.8976623940001,42.974535625000115],[76.85342736900006,42.974122213000115],[76.83348026600007,42.97174509700007],[76.81415328000011,42.96148732500008],[76.79296594200011,42.943064677000066],[76.78521447800014,42.93965403300014],[76.7795300700001,42.93929229700014],[76.76133996600005,42.942056987],[76.75389856000001,42.94076507600015],[76.75162479700012,42.93709604900006],[76.75038456200016,42.93257436200012],[76.74625044800015,42.928879497000125],[76.70790653500015,42.91366078700018],[76.68878625500022,42.910327658000156],[76.64434452300006,42.911128642],[76.60589725700012,42.89849375400014],[76.58501997900007,42.89479888900014],[76.55876835100011,42.898209534],[76.5068852130001,42.91448761000011],[76.48053023300022,42.916968079000085],[76.46192671700007,42.910999451000166],[76.4320577390001,42.88957957000004],[76.41407434100019,42.88549713100004],[76.40446252400008,42.88924367300014],[76.39330041500014,42.9052633670001],[76.38296512800011,42.91006927500011],[76.3709761960001,42.90960418700008],[76.3511324470002,42.902886251000055],[76.3404871010001,42.90167185500003],[76.25449751800014,42.921153870000026],[76.16375370300008,42.921153870000026],[76.09057987500009,42.934279684],[76.0645349530001,42.93396962600009],[75.99911259000007,42.917639873000056],[75.97658166500011,42.91872507700007],[75.8980334880001,42.935700785000066],[75.85896610600017,42.93980906200009],[75.80705856000012,42.93677099500017],[75.79716109300008,42.93619171200011],[75.78207157400018,42.93332367000012],[75.77059940600006,42.92564971900005],[75.73824996000005,42.86157094400012],[75.72760461500015,42.848677674000115],[75.70383345500014,42.830487570000074],[75.67530806500017,42.81537221300009],[75.64616255700011,42.806096294000056],[75.62042769400014,42.805295309000044],[75.55593550600021,42.825216574000144],[75.53598840400011,42.827025249000044],[75.49661096200012,42.82392466300011],[75.27119836400007,42.84575795500005],[75.20463911900016,42.84518951500008],[75.17859419800018,42.849659526],[75.11813277200005,42.87653127100002],[75.09425826100019,42.89030304000012],[75.06614628100007,42.902602031000086],[75.00537479700013,42.91639963800013],[74.97684940600018,42.92647654300008],[74.94853072100008,42.94484751400016],[74.8628511970002,42.97582753500008],[74.74874963400012,42.99001271600004],[74.71391971800001,42.999882914000025],[74.61129032400007,43.05817393000014],[74.59702762900011,43.07034373000006],[74.57201623500006,43.10220225000002],[74.55816695200022,43.11504384400011],[74.53925337700011,43.122898661000036],[74.49822229000013,43.13111521500015],[74.46277225800011,43.148633525000136],[74.42060428900007,43.15183746399999],[74.40055383300009,43.15953725200008],[74.34877404800012,43.191034037000136],[74.32004195200014,43.20165354500013],[74.28696903500023,43.20720876100013],[74.25865035000007,43.21576121100015],[74.20769738800018,43.24979014100002],[74.17875858500022,43.26170155800004],[74.20604374200016,43.23410634400015],[74.21658573400012,43.21692393000008],[74.2138985600001,43.202635397],[74.1973621020002,43.19578826900014],[74.0398523360001,43.18186147100006],[74.0214555260001,43.18630564400014],[73.9853853760001,43.211678772000155],[73.96533492000006,43.21692393000008],[73.93505253100014,43.19971567900002],[73.90166955600014,43.13096018500012],[73.86425581900019,43.11610321000008],[73.82281132000011,43.11731760700003],[73.80555139200013,43.114733785],[73.63408899000015,43.062463074000036],[73.58665002400008,43.042283427000044],[73.57094038900019,43.031922303000115],[73.55967492700013,43.01729787200004],[73.52174442500021,42.936165873],[73.50117720500006,42.909345805000115],[73.4930123300002,42.894953919],[73.48949833200007,42.87782318100015],[73.49197880100022,42.86100250300008],[73.50427779100008,42.82759369000008],[73.50706831900007,42.809403585000055],[73.50355432100017,42.794081523],[73.47688928200014,42.75088002500014],[73.4238692630001,42.662771709000125],[73.41270715300018,42.62732167600008],[73.41001997900017,42.589649556000055],[73.4175647380001,42.55616322900015],[73.43296431500019,42.524847311000045],[73.50507740900017,42.4215571160001],[73.50551802600009,42.42092600500011],[73.50510461500019,42.402942607000014],[73.47688928200014,42.399066874000155],[73.41746138500011,42.417050273000044],[73.32620080600012,42.428677470000096],[73.3144185800002,42.441570740000095],[73.31338505100021,42.46317148800007],[73.31658898900017,42.493712260000095],[73.30139611900003,42.507070618000014],[73.2783484300002,42.51340098100003],[73.20682824700006,42.51717336100016],[73.18905155500013,42.52076487300003],[73.1727218020001,42.52784454400016],[73.15267134600006,42.539213359000044],[73.11505090300014,42.5508405560001],[73.07060917100014,42.551925761000106],[72.9423482670002,42.53603525900009],[72.90834517400006,42.53696543500003],[72.87454878800006,42.54399342900014],[72.84075240100012,42.55569814100012],[72.81522424400006,42.573035583000134],[72.78060103400017,42.62044871000002],[72.75693322700013,42.640214946000086],[72.72582401500009,42.65287567200012],[72.58381718000007,42.67827463800005],[72.51178023300011,42.677551168000136],[72.47674361200009,42.682563782],[72.35840458200002,42.7413974],[72.29236210100007,42.76106028300002],[72.16410119700006,42.765091044000094],[72.14880497300005,42.76199045900007],[72.11996952300015,42.75181020100011],[72.10488000500007,42.75033742300012],[72.0727372640001,42.757184550000076],[71.95698205600016,42.80459767700013],[71.8953837490002,42.816044007000144],[71.87884729000015,42.821340841],[71.86324100800019,42.82904063000008],[71.8477380780001,42.83405324300007],[71.83140832600006,42.831572774000094],[71.79668176300012,42.82229685500006],[71.726401815,42.819661357000044],[71.69353560400005,42.8118065390001],[71.58356815600021,42.759639181000054],[71.56630822800011,42.75723622700018],[71.55380253100012,42.76090525299999],[71.51432173700019,42.78570994100012],[71.50419315600007,42.78961151200018],[71.49365116400006,42.788913880000095],[71.4771147060001,42.78353953100013],[71.42884891800017,42.79558014000009],[71.40461267100008,42.794882508000015],[71.38693933200008,42.7830744430001],[71.37629398600009,42.768320822000085],[71.36306482000012,42.754109803000134],[71.3475618900001,42.742844339999984],[71.32978519700006,42.7370307420001],[71.30849450700006,42.74010548900013],[71.2847233480002,42.74839955700018],[71.26250248200009,42.75356720000009],[71.24544925900014,42.74713348400003],[71.22384851100017,42.71793630000008],[71.2114461670001,42.70522389800006],[71.1952197680001,42.69723988900007],[71.15754764800008,42.68793813100013],[71.14902103700015,42.67793874100012],[71.14643721500013,42.65685475700012],[71.1480908610001,42.61739980099998],[71.14276818900007,42.60254282600006],[71.12700687700007,42.5906055710001],[71.0406555590001,42.58052866600015],[71.00319014500022,42.56352712100015],[71.01269860800019,42.526035868000164],[71.02272383700013,42.51644989000006],[71.05755375100009,42.49360890700014],[71.05755375100009,42.49350555500003],[71.05765710400013,42.4934022020001],[71.05786381100009,42.4934022020001],[71.06628706900007,42.482136740000136],[71.06416833500006,42.47032867500003],[71.05471154800009,42.460380961000126],[71.04101729400011,42.45479990600002],[71.02473921800016,42.45596262600012],[70.97714522300006,42.47875193300003],[70.96195235200011,42.468106588000026],[70.94758630400011,42.45128590900005],[70.9361141360001,42.431623026000025],[70.92991296400012,42.41229604100006],[70.93177331500013,42.40149566700002],[70.93735437100023,42.39477773],[70.9398348390001,42.387827251000104],[70.93270349100005,42.37620005300006],[70.90035404500006,42.346744487000066],[70.88882503300007,42.33857531100012],[70.8648006600001,42.321552226],[70.852656698,42.306075135000086],[70.85813440000013,42.29106313100011],[70.89782189900009,42.2616075640001],[70.91864750200014,42.25336517300018],[70.9477930090001,42.24814585400016],[70.91389327000016,42.22755279600006],[70.87999353000006,42.20693389900008],[70.86118330900015,42.19969919900011],[70.84237308800013,42.19254201300005],[70.82345951300006,42.19050079300008],[70.80454594000011,42.18843373700004],[70.78139489700007,42.19321380600003],[70.75814050300002,42.19801971500014],[70.74625492300012,42.197657980000045],[70.73426599100006,42.19729624400004],[70.72713464300008,42.190139059],[70.71989994300006,42.182904359000034],[70.71586918100014,42.17365427600011],[70.71183842000008,42.16432668099999],[70.70641239500017,42.157634583000075],[70.70114139800015,42.15094248500004],[70.68724043800009,42.13846262700015],[70.67318444900016,42.125982768000156],[70.66145389800008,42.10967885300012],[70.6498267010002,42.093400777000014],[70.64073164900006,42.075133159000146],[70.63148156800011,42.05686554],[70.62083622300021,42.04216359499999],[70.61024255300006,42.02740997299999],[70.59453291800017,42.021854757000156],[70.57902998900008,42.01624786400005],[70.56709273300012,42.017513937],[70.55525883000021,42.018702494000124],[70.54482019000008,42.021854757000156],[70.53422652200018,42.024981181000115],[70.52663008600021,42.03082061800002],[70.51887862200013,42.03668589300009],[70.51536462400017,42.046039327000145],[70.5118506270002,42.055418599000106],[70.50823327700002,42.061981506000066],[70.5044608970002,42.06846689900014],[70.49650272700015,42.075133159000146],[70.48849287900006,42.08187693300009],[70.4793978270001,42.086708680000086],[70.4701994220002,42.09161794000012],[70.4627580160001,42.0926514690001],[70.45541996300008,42.093736674000105],[70.40674076400015,42.07800120100005],[70.35790653500007,42.06223988900014],[70.33635746200011,42.04841644300008],[70.31506677300015,42.03459299800012],[70.30266442900009,42.014129131000075],[70.29026208500008,41.99376861600014],[70.28674808800017,41.984983623000154],[70.28297570900023,41.9762503060001],[70.27667118300022,41.970875956000114],[70.27031498300019,41.96555328400008],[70.26215010600016,41.96232350700011],[70.25388187700011,41.95911956800005],[70.24489017700009,41.95671661400017],[70.23579512600011,41.954287822000126],[70.22711348500016,41.95064463300004],[70.21858687300002,41.94692393000012],[70.21140385000008,41.94139455200012],[70.20416914900014,41.9358134970001],[70.17037276200014,41.8919918830001],[70.13636966900012,41.84809275300016],[70.12365726700014,41.83705983500006],[70.11109989400015,41.82597524000006],[70.0694486900002,41.802927552000185],[70.02795251500007,41.77998321600016],[69.99999556500015,41.77233510399999],[69.97203861500006,41.76458363900015],[69.96428715000016,41.7599069220001],[69.95653568500015,41.755178528000116],[69.94971439700006,41.74745290200012],[69.94289310700005,41.73972727500002],[69.92764856000011,41.726317241000075],[69.91240401200011,41.71285553000003],[69.89173344000012,41.7062151090001],[69.87085616000016,41.699574687],[69.81514896700011,41.69805023200008],[69.75944177300019,41.69644826300005],[69.69200402800007,41.682392273000126],[69.6245662840001,41.66831044600012],[69.61598799700018,41.66327199300004],[69.60756473800019,41.6582852180001],[69.5931986890001,41.64583119800001],[69.57898767100008,41.63337717700004],[69.52818973800007,41.60319814100002],[69.47728845200012,41.57312245700014],[69.44881473800008,41.566352845000104],[69.42034102400007,41.55953155500005],[69.40711185800015,41.55224517900008],[69.39377933800014,41.54495880200001],[69.3873714600002,41.53188466400014],[69.3808085530002,41.518810526],[69.3827205810002,41.51348785400013],[69.38447758000021,41.508216858000125],[69.39274580900016,41.4967446910001],[69.40111739100021,41.485169169000145],[69.40173750800008,41.480001526000066],[69.40235762600017,41.474833883000045],[69.39646651200016,41.47235341400007],[69.39067875200007,41.46971791600005],[69.36080977400016,41.47380035500008],[69.3311475020001,41.47793446900009],[69.32355106600008,41.47638417600017],[69.31616133600002,41.474833883000045],[69.29683435100017,41.465480449000026],[69.27755904200015,41.456178690000066],[69.27027266400007,41.45535186800005],[69.26293461100008,41.45457672200014],[69.24815515200007,41.45855580600011],[69.23332401500014,41.46263824500012],[69.22531416900009,41.46139801],[69.21714929200002,41.46005442300013],[69.18986413600012,41.44708363900009],[69.1626823330001,41.43406117800008],[69.1503833420002,41.424966126000086],[69.1381877040001,41.41592275100014],[69.1331234130001,41.40553578700011],[69.12805912300021,41.395148824],[69.11880904100022,41.39793935200005],[69.10945560700006,41.400678202],[69.10005049700013,41.39850779300009],[69.09064538600015,41.39628570600011],[69.06754602100008,41.38775909499999],[69.04444665500009,41.37918080700013],[69.04031254000009,41.37664866200008],[69.03617842600008,41.37401316300004],[69.03390466300006,41.3704991660001],[69.03157922400013,41.36698516800014],[69.03297448700019,41.3628510540001],[69.03426639800014,41.35871694000009],[69.0388656000001,41.354324442000106],[69.04351648000008,41.349880270000185],[69.04599694800007,41.348536683000034],[69.04832238800006,41.347244772000074],[69.04971765100007,41.345436096000086],[69.05116459100006,41.34362742100011],[69.05250817900011,41.337787985000105],[69.0539551190001,41.3318968710001],[69.05436853000012,41.323628642000145],[69.05478194100013,41.31541209000012],[69.04692712400018,41.267869771],[69.0391756600001,41.22027577700008],[69.0351448970001,41.21448801800001],[69.03121748900011,41.208751933000045],[69.0225875240001,41.202395731000124],[69.01406091300007,41.196039531000096],[68.9970076910001,41.187099508000145],[68.97974776200013,41.17821116100005],[68.96171268700002,41.17159657800015],[68.94378096500006,41.16487864200003],[68.92223189300009,41.162759908000154],[68.9008378500001,41.16064117500018],[68.89050256400016,41.158109029000094],[68.88021895400018,41.155525208000185],[68.8736560470002,41.14906565400004],[68.86735152200018,41.14255442300008],[68.85489750200011,41.12637970000015],[68.8424434820001,41.11010162400005],[68.80818200700011,41.09868113200004],[68.77376550300008,41.08726064100013],[68.75986454200009,41.07553009100014],[68.7462736410001,41.06379954100008],[68.72787683100009,41.02380198200011],[68.70953169800012,40.98375274700011],[68.6995581460001,40.974399312000074],[68.68937788900021,40.9649425250001],[68.65863041200006,40.954710592000126],[68.64952445100019,40.951690602],[68.62793461100014,40.94453033500015],[68.61398197400014,40.93729563500009],[68.6001326900001,40.93006093400011],[68.59465498900008,40.918382060000155],[68.58917728700013,40.90659983300004],[68.58690352300017,40.90768503900013],[68.5847331140001,40.90882192000005],[68.57997888200012,40.910217184000125],[68.57532800300007,40.9116124480001],[68.57300256300013,40.91254262400015],[68.57088383000016,40.91352447500013],[68.57067712400007,40.90799509700003],[68.57057377100014,40.90251739500006],[68.5718140060001,40.89135528600012],[68.57315759300015,40.88014150000008],[68.57253747600005,40.87528391500013],[68.57186568200021,40.870478008000035],[68.56871341900015,40.8648452770001],[68.56540612800003,40.85916086900006],[68.56209883600016,40.85735219400008],[68.5589982500002,40.85549184200006],[68.55615604600015,40.85290802000016],[68.5534171960002,40.850427551000095],[68.55145349100003,40.84272776300009],[68.54969649300008,40.83502797400011],[68.5546574300001,40.79317006500004],[68.5597733970002,40.75131215500006],[68.5630290120001,40.74180369100016],[68.56633630300021,40.73250193300005],[68.57047041900015,40.728471171000145],[68.57460453300016,40.72449208600007],[68.57935876500002,40.7224250280001],[68.58421634900017,40.720357972000144],[68.5969287520002,40.71808420900014],[68.60943444800009,40.71581044500011],[68.60902103700019,40.70960927400013],[68.60850427200015,40.70335642500013],[68.61036462400008,40.69694854800018],[68.61212162300015,40.690540671000136],[68.61542891400015,40.684442851000185],[68.61883955900007,40.67824167900001],[68.6231287030001,40.672712301],[68.6274178470002,40.66713124699999],[68.62638431800022,40.66377227800017],[68.62545414200005,40.66041331000015],[68.61325850400007,40.64516876300003],[68.60111454300008,40.63002756800002],[68.61067468300016,40.626100159000046],[68.62038985200009,40.62222442700009],[68.61739261900019,40.6156615200001],[68.61424035700023,40.60909861300002],[68.60354333500013,40.604292704000116],[68.59300134300022,40.59948679600011],[68.5796688230001,40.6009337360001],[68.5662329510001,40.60248402900011],[68.54633752400017,40.61002878900017],[68.52633874500006,40.617573548000124],[68.52055098400015,40.61834869400003],[68.51481490100011,40.61912384000014],[68.51011234600011,40.616746724],[68.50546146700017,40.61431793300012],[68.50267094000012,40.609977112000145],[68.49988041200007,40.605636292000085],[68.49631473800017,40.60212229500003],[68.49243900600001,40.59860829700007],[68.48489424700008,40.59891835600014],[68.47734948800021,40.59922841400014],[68.47114831500002,40.59447418200013],[68.46505049600009,40.589719950000145],[68.46339685100023,40.58718780600016],[68.46174320500009,40.584655660000074],[68.34392093900007,40.63173289000015],[68.26649657800013,40.66270263500003],[68.22609867300015,40.67886179700015],[68.1924056400002,40.699015605000156],[68.15891931200011,40.719117737000104],[68.11323734600009,40.75353424100017],[68.06750370300009,40.788002421000115],[68.05225915500014,40.79451365200002],[68.03706628400019,40.80107655900018],[68.01732588700023,40.80428049700005],[67.99748213700016,40.80753611300003],[67.99422652200016,40.80934478800013],[67.99091923100016,40.81110178700003],[67.9925212000002,40.81502919500015],[67.99407149300012,40.81895660500014],[67.99861901900007,40.82205719000007],[68.00306319200016,40.82515777700003],[68.02063317900016,40.83115224300015],[68.03820316500011,40.83719838500009],[68.04652307200016,40.84226267500016],[68.05473962400012,40.847223612000114],[68.06212935400012,40.85352813800013],[68.06951908300013,40.859832662000045],[68.07515181500017,40.86639556900003],[68.080577841,40.87295847600002],[68.0882259520001,40.88592926100013],[68.09597741700011,40.898951722000064],[68.10331547000013,40.91533315100013],[68.11075687700023,40.931662903000145],[68.11571781500018,40.94850942000012],[68.1205753990001,40.9653042610001],[68.12078210500013,40.97951527900006],[68.12088545700007,40.99382965200006],[68.11675134300006,40.99966908800003],[68.11266890500022,41.00550852500011],[68.11034346500011,41.00788564100016],[68.10786299600012,41.01026275700012],[68.10378055800001,41.01191640300006],[68.09969812000011,41.01362172400003],[68.10403894100008,41.01522369400005],[68.10822473200014,41.01682566300009],[68.11985192900008,41.02323354100004],[68.1313240970002,41.029641419000185],[68.12998051000014,41.03062327100007],[68.12848189300021,41.03165680000005],[68.1236759850001,41.032845357000056],[68.11892175300014,41.03403391600007],[68.1201619870001,41.03868479500012],[68.12145389800011,41.0432839970001],[68.12129886900019,41.044369202],[68.12119551600009,41.04550608300009],[68.11933516500008,41.05609975200015],[68.11737146000021,41.06674509700015],[68.10662276200011,41.06591827400014],[68.09597741700011,41.065143128000116],[68.0890527760001,41.053929342000075],[68.08212813300023,41.04271555600003],[68.07685713700019,41.04798655200007],[68.071379435,41.0533092240001],[68.06517826400014,41.054084371000116],[68.05908044500009,41.054756165000114],[68.05277592000007,41.05253407800011],[68.04636804200001,41.05020863900007],[68.04032190000007,41.04643625900014],[68.03437911000017,41.04271555600003],[68.02766117400003,41.05093210900016],[68.0211499430001,41.059148662],[68.01711918200007,41.07852732300016],[68.0131917730001,41.09785430900003],[68.00812748200022,41.10674265600012],[68.00306319200016,41.11563100200014],[67.98094567900014,41.137490133000185],[67.95893151900005,41.15945261600014],[67.9554175220002,41.16498199500016],[67.95190352400007,41.17056305000007],[67.95076664200016,41.17123484300005],[67.9494747310001,41.171906637000134],[67.94353194200018,41.18611765500019],[67.93743412300014,41.20038035100008],[67.92467004400007,41.1941791790001],[67.9120093180002,41.18797800700009],[67.88307051600006,41.17345692900015],[67.85413171400009,41.158987528000026],[67.84451989800019,41.157902324000034],[67.83490808100007,41.15686879500005],[67.8239526780001,41.15976267600006],[67.81299727400018,41.16270823200012],[67.7920166420001,41.17097646100008],[67.77093265800008,41.179296367000134],[67.75956384300011,41.1816734830001],[67.7481433510001,41.18410227500006],[67.62024418200022,41.17836619100007],[67.49053633600008,41.17242340200009],[67.40930098500021,41.16870269800016],[67.28171187400008,41.1629666140001],[67.17479333500009,41.158109029000094],[67.0289624430001,41.151494446000086],[66.93139733900007,41.147153626000105],[66.815280396,41.14188263000007],[66.77409427900014,41.14994415300008],[66.75789044400014,41.153140136],[66.73295983900007,41.15805735300007],[66.710738974,41.17862457300008],[66.68820804900011,41.19919179300014],[66.64552331500013,41.34646962500006],[66.60263187700016,41.4937991340001],[66.57069584100006,41.61730580700005],[66.5388631590001,41.740760804],[66.52144820200007,41.86710968000012],[66.5041365970001,41.99348439500007],[66.501656128,41.99451792400005],[66.49917565900014,41.995603130000134],[66.49576501500022,41.996171571],[66.49240604700012,41.996791687000055],[66.48863366700019,41.9968950400001],[66.48480961100014,41.997024231000026],[66.48119226100007,41.99663665800004],[66.4773682050002,41.99622324700003],[66.3566003820001,41.99663665800004],[66.24735640500015,41.9969208780001],[66.13764733900021,41.997230937],[66.01724125100012,41.997618510000095],[66.012900432,42.00007314100007],[66.00866296400008,42.00265696200016],[66.00752608200017,42.00805714900004],[66.00649255300019,42.01343149899999],[66.01005822800008,42.208225810000116],[66.01315936400013,42.37286994600014],[66.01372725400003,42.403020121000125],[66.01672448700005,42.40994476300004],[66.01961836700016,42.4168435670001],[66.03140059400008,42.42025421200013],[66.04318282100016,42.423664856000144],[66.04814375800018,42.432268983000185],[66.05320804800007,42.44087310900012],[66.05568851700016,42.4672539270001],[66.0581689860002,42.49360890700014],[66.07971805900016,42.74194000300003],[66.10126713100013,42.9903227750001],[65.95693485500013,42.93301361100005],[65.81260258000012,42.87575612400009],[65.80402429200015,42.87647959400009],[65.79523929800008,42.87720306500007],[65.73105717000013,42.974225566000044],[65.65612634300007,43.08721608500004],[65.60186608900003,43.16901987700008],[65.51691003400006,43.297229106000096],[65.4971696370001,43.310019023000066],[65.47737756300009,43.322808940000144],[65.37448978700016,43.36991200800004],[65.27144698100008,43.417015076000055],[65.22173425300016,43.45528147400013],[65.17191817200009,43.49367706300008],[65.06422448700008,43.59555715000006],[64.9565308030001,43.69735972100004],[64.93958093300009,43.708289287000085],[64.92294112200008,43.719115499000125],[64.90702478100016,43.72097585000013],[64.89100508600008,43.72278452500002],[64.87307336400013,43.71782358800008],[64.85503829000001,43.71291432800014],[64.75762821400016,43.67361440000015],[64.65835778800007,43.633591003],[64.56213627200006,43.59480784200015],[64.4615739340002,43.55431935700015],[64.44421065300011,43.55067616800007],[64.42674401800016,43.547032979000065],[64.3716569420001,43.550598654000126],[64.23316410300006,43.55971954400003],[64.09467126500013,43.568917949000124],[63.95592004400012,43.578064678000096],[63.81737552900008,43.587237244],[63.66513676000014,43.597288310000025],[63.512691284000105,43.60726186100013],[63.36034916200012,43.617416281000104],[63.208007040000126,43.62746734700012],[63.1166431070001,43.61661529600018],[63.02538252800011,43.60584076000005],[62.934121949000115,43.595066223000046],[62.84286136900019,43.58429168800011],[62.7514974370001,43.573491313000076],[62.660236857000065,43.56271677600013],[62.56897627800018,43.55189056400008],[62.47771569800008,43.54111602900014],[62.42128503400008,43.53359710700011],[62.36485437000013,43.52600067100015],[62.30842370600006,43.51840423599999],[62.25188968900013,43.51085947700015],[62.21674971600006,43.50615692200007],[62.18140303500016,43.50142852900008],[62.14605635600017,43.4966742970001],[62.11091638200011,43.491920065],[62.02832051600009,43.48092238300008],[62.026115357000066,43.480628765000134],[62.005961548000215,43.486984965000076],[61.9857043860002,43.49334116600009],[61.91067020700021,43.55581797300006],[61.85454960200016,43.6026884970001],[61.798325643000084,43.649584860000125],[61.74210168400011,43.69653289900002],[61.68598107900007,43.74342926100003],[61.628516886000085,43.791359152000055],[61.571052694000144,43.83928904300008],[61.513485148000115,43.8872447720001],[61.45612430800011,43.935174663000126],[61.38605106600008,43.993439840000164],[61.33117069500016,44.03617624900009],[61.27639367700007,44.07886098199999],[61.16167199700012,44.16810618100011],[61.10286421700001,44.23606069],[61.093149048000065,44.259418437000036],[61.08663781800013,44.3111982220001],[61.080229940000066,44.33548614500002],[61.06214318900006,44.36199615500003],[61.03630497200006,44.38282175800008],[60.97398319500021,44.41243235300011],[60.88623661300007,44.45413523400005],[60.76686405500007,44.51082428000013],[60.62113651600006,44.58007070000015],[60.45401493300014,44.65944569900004],[60.27087365700017,44.74646881200006],[60.07667362400011,44.83865956600011],[59.87658247900006,44.93379587800017],[59.675767863000175,45.02913889600008],[59.47939742000014,45.122466532000125],[59.29243208800015,45.21124664300005],[59.12034956900006,45.29305043500007],[59.05513216600011,45.3240231750001],[58.96790409400015,45.36544911700007],[58.840470011000114,45.4260138960001],[58.74311161300008,45.47226430300016],[58.68078983600006,45.5018232230001],[58.65898238200012,45.51226186100014],[58.582191203000065,45.54869374600004],[58.55490604600001,45.557168681000135],[58.53144494700003,45.55871897400006],[58.45041630100015,45.54238922200012],[58.3902649340001,45.5301419070001],[58.330010214000104,45.51784291600016],[58.26975549300007,45.5055439260001],[58.20960412600013,45.493348288],[58.151623169000146,45.48120432600011],[58.09384891800007,45.46911204100003],[58.03607466600007,45.457071431000045],[57.97830041500018,45.44492747000005],[57.85324344900019,45.41790069600002],[57.7281864830002,45.39092559900017],[57.603232870000085,45.363898825000135],[57.4782792560002,45.33692372600011],[57.384538208000116,45.31563303700001],[57.29079716000015,45.29434234700012],[57.19705611200018,45.27299998000005],[57.103211710000124,45.25176096700007],[57.00947066300014,45.230418599000146],[56.915729614000064,45.20912791000007],[56.8220919190002,45.18788889600002],[56.72824751800013,45.16659820600002],[56.70760971000007,45.16191089800016],[56.634506470000154,45.145307515000056],[56.54086877400019,45.12401682600015],[56.44712772600022,45.10272613600007],[56.35338667900007,45.081435445000075],[56.25943892500006,45.06009307900008],[56.165801229000095,45.03880238900011],[56.072060181000126,45.017563375000016],[55.978422486000085,44.996221008000035],[55.978319132000166,44.996221008000035],[55.97821577900001,44.99616933200012],[55.978112427000184,44.99616933200012],[55.978009074000084,44.996117656000095],[55.978009074000084,44.99606598000018],[55.977905721000155,44.99606598000018],[55.97780236800011,44.99606598000018],[55.97769901500007,44.99601430300008],[55.97769901500007,44.995962627000054],[55.97759566300007,44.99591095000015],[55.977492310000144,44.99591095000015],[55.9773889570001,44.99591095000015],[55.9773889570001,44.99585927300005],[55.97728560400017,44.99585927300005],[55.97718225100007,44.995807597000024],[55.9770788980002,44.99575592000009],[55.9769755450001,44.995704244000095],[55.9769755450001,44.99565256800015],[55.97687219200017,44.995600892000155],[55.97676883900012,44.995600892000155],[55.97676883900012,44.995549215000054],[55.97676883900012,44.995497539000134],[55.97666548700013,44.99544586200003],[55.97656213400009,44.99539418600001],[55.97645878100016,44.99534250900008],[55.97645878100016,44.99529083200018],[55.976355428,44.99523915600015],[55.976355428,44.99518748000004],[55.97625207500019,44.99513580400004],[55.97614872300008,44.99508412700011],[55.97614872300008,44.99503245100003],[55.97614872300008,44.9949807740001],[55.97614872300008,44.99492909800007],[55.97614872300008,44.99482574500014],[55.97614872300008,44.99477406800004],[55.97604537000015,44.99477406800004],[55.97604537000015,44.994670716000094],[55.97604537000015,44.99461903899999],[55.97604537000015,44.99456736300009],[55.97604537000015,44.99451568600007],[55.9759420170001,44.99446401000016],[55.975838663000076,44.99441233300006],[55.975838663000076,44.99436065700003],[55.975838663000076,44.9943089800001],[55.975838663000076,44.99425730500009],[55.975838663000076,44.99420562800016],[55.975838663000076,44.994153952000076],[55.975838663000076,44.99405059800013],[55.975838663000076,44.993998922000046],[55.975838663000076,44.99389556900008],[55.975838663000076,44.993843892000186],[55.975838663000076,44.99374054000005],[55.975838663000076,44.99368886400005],[55.975838663000076,44.993585511000035],[55.975838663000076,44.993533834000104],[55.975838663000076,44.99348215700008],[55.975838663000076,44.993430481000175],[55.975838663000076,44.99337880400007],[55.975838663000076,44.993275452000134],[55.975838663000076,44.99322377600011],[55.97604537000015,44.76378041600016],[55.97614872300008,44.534285381000025],[55.976355428,44.304842021000084],[55.97645878100016,44.07529530900011],[55.97666548700013,43.84585195000007],[55.97676883900012,43.61638275200012],[55.9769755450001,43.38691355500008],[55.9770788980002,43.15747019400011],[55.97728560400017,42.92800099700018],[55.9773889570001,42.69853179900004],[55.97759566300007,42.46908844000008],[55.97769901500007,42.23961924300015],[55.977905721000155,42.010150045],[55.978009074000084,41.780680848000046],[55.97821577900001,41.5512633260001],[55.978422486000085,41.32171661400004],[55.910106242000126,41.32662587600008],[55.876619914000145,41.3245071410001],[55.787323039000086,41.29169260700009],[55.69440881400013,41.28156402600002],[55.6354976810002,41.26435577400015],[55.509303834000114,41.258878073000155],[55.478297974000185,41.266784567000016],[55.45028934800009,41.27887685200001],[55.42951542100016,41.290814107000145],[55.41266890400007,41.30791900700008],[55.38466027800004,41.35856191000014],[55.37256799300004,41.37556345700006],[55.35675500500005,41.38905100500012],[55.29412316900007,41.42150380500006],[55.259189901000155,41.44465484600015],[55.22839074800018,41.47281850200001],[55.16493208800014,41.5574644980001],[55.1000264890001,41.644151714000046],[55.05475793500014,41.690014547000104],[54.950681600000024,41.795563660000184],[54.94024296100011,41.813598735000184],[54.93497196400008,41.833726706000064],[54.93641890400008,41.85527577800012],[54.94055301900019,41.872716574000044],[54.940759725000156,41.88961476700014],[54.930837850000074,41.909225973000055],[54.9070666910001,41.932144471000086],[54.73829146300013,42.048209737000136],[54.6196423750001,42.10719838500016],[54.51897668400014,42.15727284700007],[54.35051151600007,42.240911153000084],[54.1952755130001,42.318064067000144],[54.12261844900016,42.337597758000136],[54.04717085800015,42.34540089900018],[53.807598917000035,42.31307729100011],[53.654429972000145,42.29248423300011],[53.4784200440001,42.268661398000134],[53.41227421000022,42.25817108200009],[53.19171919800013,42.19303293899999],[53.13508182800015,42.167840678000125],[52.97870894400015,42.12662872300014],[52.76466516100018,41.99376861600014],[52.76466516100018,41.993587748],[52.76435510300009,41.99348439500007],[52.63144331900017,41.89423980700009],[52.4788428140001,41.780344951000146],[52.43767061734431,41.74887574142436],[52.43580162900011,41.76854075700011],[52.44361412900011,41.79092031500012],[52.481944207000225,41.86395905200011],[52.49097741000017,41.90204498900003],[52.48454837300002,41.941636460000055],[52.474131707000225,41.962591864],[52.46119225400011,41.978949286000116],[52.45167076900006,41.986314195000105],[52.44166100400017,41.99237702],[52.43376712300019,42.000433661000145],[52.43051191500015,42.013739325000145],[52.437266472000175,42.04783763200008],[52.436778191000116,42.05780670800006],[52.430837436000076,42.067124742000104],[52.40202884200002,42.092515367000125],[52.41309655000006,42.10667552300005],[52.42221113400015,42.12531159100014],[52.428396030000016,42.14545319200009],[52.43051191500015,42.16388580900012],[52.43628991000011,42.17987702000003],[52.4505314460001,42.18781159100008],[52.46827233200011,42.19310130400005],[52.48454837300002,42.20172760600015],[52.533539259000094,42.271918036000116],[52.58757571700019,42.326849677],[52.594086134000094,42.33527252800015],[52.599131707000225,42.34471263200008],[52.60124759200002,42.35635000200007],[52.60010826900012,42.37767161700005],[52.601084832000055,42.38861725500003],[52.6048283210001,42.39667389500015],[52.63445071700008,42.418646552000055],[52.64283287900011,42.428290106000034],[52.646006707000055,42.4365095070001],[52.647471550000056,42.45359935100007],[52.64966881600011,42.46185944200006],[52.66627037900017,42.50177643400012],[52.67628014400005,42.538478908000044],[52.67652428500011,42.574530341000084],[52.66334069100017,42.61269765800013],[52.637950066000116,42.65550364800005],[52.618500196000156,42.67841217700014],[52.575694207000225,42.69863515800016],[52.56421959700012,42.720892645],[52.5638126960001,42.74225495000014],[52.57447350400011,42.74982330900012],[52.58155358200011,42.73924388200005],[52.589121941000116,42.71824778900013],[52.600433790000096,42.697658596000096],[52.61890709700006,42.68842194200012],[52.62810306100013,42.68585846600003],[52.66334069100017,42.667914130000085],[52.668304884000094,42.66063060100005],[52.66993248800023,42.65298086100004],[52.6717228520001,42.64765045800006],[52.67693118600013,42.64740631700011],[52.690928582000055,42.610988674000126],[52.700938347000175,42.59320709800006],[52.71045983200017,42.585394598000065],[52.72144616000011,42.59349192899999],[52.73259524800002,42.61383698100009],[52.74122155000006,42.637884833000115],[52.74463951900005,42.657375393],[52.73633873800006,42.70136139500012],[52.71290123800011,42.73078034100002],[52.67652428500011,42.74664948100015],[52.62916100400016,42.74982330900012],[52.62501061300023,42.77472565300015],[52.574229363000114,42.79852936400014],[52.470876498000194,42.82623932500003],[52.37183678500011,42.83242422100001],[52.35743248800017,42.83173248900006],[52.3450626960001,42.82941315300009],[52.333181186000076,42.82518138200008],[52.320648634000094,42.81875234600007],[52.31511478000007,42.812974351000015],[52.30420983200005,42.7956403670001],[52.29957116000011,42.790838934000035],[52.27295983200011,42.798773505],[52.206309441000116,42.86611562700001],[52.169200066000116,42.88703034100014],[52.14551842500012,42.888495184000035],[52.058360222000175,42.87848541900006],[51.99170983200011,42.85968659100008],[51.95508873800006,42.84064362200009],[51.93279056100002,42.83494700700011],[51.91244550900014,42.842352606000084],[51.853851759000094,42.89378489800002],[51.83985436300023,42.90936920799999],[51.81788170700022,42.94114817900014],[51.80258222700016,42.95868561400009],[51.79273522200006,42.974188544000086],[51.78239993600002,43.0113792990001],[51.77198326900006,43.03099192900005],[51.72445722700016,43.07050202],[51.71143639400006,43.09088776200018],[51.698496941000116,43.09430573100009],[51.684418165000096,43.09609609600006],[51.675791863000114,43.099920966000084],[51.670746290000096,43.11273834800012],[51.673838738000164,43.12116120000017],[51.679698113000114,43.12909577000015],[51.68311608200011,43.14085521000011],[51.67937259200008,43.159735419000135],[51.66773522200017,43.17975495000003],[51.651052280000016,43.19139232000013],[51.61231530000012,43.17706940300003],[51.56324303500017,43.17918528900004],[51.53980553500017,43.17499420800011],[51.53191165500019,43.16937897300012],[51.52564537900016,43.16258372599999],[51.51872806100007,43.156927802],[51.50855553500011,43.15448639500006],[51.49586022200006,43.156805731000034],[51.47282962300008,43.16657135600015],[51.4602970710001,43.16885000200013],[51.367849155000066,43.15448639500006],[51.275726759000094,43.15448639500006],[51.26270592500012,43.164618231000034],[51.26628665500007,43.18756745000012],[51.30241946700019,43.26898834800006],[51.31283613400009,43.31118398600002],[51.31959069100011,43.442531643],[51.31470787900017,43.462469794000086],[51.28321373800017,43.50836823100015],[51.278575066000116,43.51764557500003],[51.276703321000156,43.52716705900012],[51.27540123800005,43.549790757],[51.272959832000225,43.55857982000005],[51.25766035200016,43.57225169499999],[51.21810957100009,43.593329169000114],[51.210215691000116,43.61009349200013],[51.206879102000094,43.624457098],[51.19849694100017,43.62616608300002],[51.18734785200016,43.622503973000065],[51.17611738400015,43.620672919000086],[51.1634220710001,43.622707424],[51.156016472000175,43.62482330900012],[51.14185631600017,43.63373444200006],[51.115000847000175,43.66083405199999],[51.02312259200008,43.80097077000006],[51.014903191000116,43.81854889500009],[51.0115666020001,43.836004950000145],[51.008636915000096,43.84560781500012],[51.00196373800023,43.85419342700014],[50.99496504000015,43.86147695500016],[50.99105879000015,43.86709219000015],[50.99040774800014,43.87693919499999],[50.99284915500007,43.898586330000064],[50.99105879000015,43.908107815000065],[50.983246290000096,43.91901276200004],[50.953298373000194,43.93878815300015],[50.94678795700011,43.94721100500011],[50.93873131600017,43.96572500200013],[50.92359459700017,43.98305898600002],[50.91130618600001,44.002386786000145],[50.90170332100015,44.01105377800003],[50.89136803500011,44.01544830900012],[50.86882571700008,44.02033112200008],[50.86085045700011,44.025376695000105],[50.85279381600017,44.03876373900012],[50.85368899800008,44.047552802],[50.85816491000011,44.056219794000086],[50.86085045700011,44.06940338700004],[50.85718834700006,44.152777411000145],[50.85279381600017,44.173407294000135],[50.847178582000055,44.18927643400009],[50.8216251960001,44.21503327000012],[50.781260613000114,44.235907294000086],[50.69629967500006,44.264349677000105],[50.344574415000096,44.311265367000075],[50.29908287900011,44.32636139500006],[50.27767988400015,44.336493231000034],[50.255218946000156,44.35101959800006],[50.237478061000076,44.36933014500012],[50.23015384200008,44.39093659100003],[50.23682701900012,44.435980536],[50.23755944100011,44.457749742000075],[50.23015384200008,44.47662995000009],[50.23755944100011,44.48407623900006],[50.22754967500006,44.50218333500008],[50.222178582000105,44.534816799000126],[50.22461998800022,44.56769440300011],[50.23755944100011,44.58649323100015],[50.25407962300014,44.55752187700007],[50.26832116000011,44.570542710000055],[50.27849368600007,44.598374742000104],[50.28174889400012,44.61375560100005],[50.292735222000175,44.61896393400015],[50.29525800900009,44.63117096600003],[50.29542076900006,44.644964911000116],[50.29908287900011,44.65534088700004],[50.31120853000019,44.66233958500011],[50.3201603520001,44.659898179],[50.32886803500011,44.65326569200003],[50.340017123000024,44.647894598000065],[50.497813347,44.625799872000165],[50.54542076900012,44.62742747599999],[50.59229576900006,44.639715887000065],[50.61695397200006,44.639715887000065],[50.62745201900011,44.624009507],[50.64275149800008,44.62079498900012],[50.73047936300006,44.62055084800009],[50.745616082000055,44.60919830900012],[50.75684655000006,44.60504791900017],[50.76832116000011,44.61033763200005],[50.77540123800005,44.62055084800009],[50.77906334700006,44.62807851800012],[50.78419030000006,44.632717190000065],[50.79590905000011,44.6342634140001],[50.84791100400011,44.63279857000005],[50.8728947270001,44.62885163000006],[50.89486738400015,44.62055084800009],[50.930349155000016,44.59690989800005],[50.960459832000225,44.56972890800013],[50.97006269600009,44.56537506700006],[50.994476759000094,44.56826406500009],[51.004730665000096,44.565985419000114],[51.01124108200011,44.55801015800016],[51.008636915000096,44.551459052000084],[51.00074303500011,44.547023830000015],[50.99105879000015,44.54547760600015],[51.00733483200011,44.5287946640001],[51.03345787900017,44.51581452000012],[51.1145939460001,44.48847077000015],[51.14332116000011,44.48476797100001],[51.17261803500016,44.485581773000106],[51.20281009200008,44.490912177],[51.22527103000007,44.49974192900005],[51.278575066000116,44.53864166900005],[51.281016472000175,44.54120514500014],[51.28272545700005,44.544745184000035],[51.28565514400012,44.54857005400005],[51.29224694100017,44.552313544000164],[51.29916425900015,44.55365631700006],[51.32349694100011,44.552313544000164],[51.33863366000011,44.554022528000175],[51.36622155000006,44.560207424000154],[51.38152103000019,44.55975983300006],[51.373789910000106,44.52773672100007],[51.40251712300002,44.521429755000106],[51.47095787900011,44.53188711100002],[51.537933790000096,44.50934479400003],[51.560313347000054,44.511379299000154],[51.57390384200019,44.52391185100005],[51.568695509000094,44.537746486000124],[51.55437259200019,44.550482489],[51.53980553500017,44.55975983300006],[51.47950280000012,44.58315664300012],[51.43897545700011,44.61005280200011],[51.41553795700022,44.61212799700003],[51.367849155000066,44.60077545800006],[51.31934655000012,44.596380927000084],[51.29184004000015,44.614488022999986],[51.25798587300019,44.68891022300006],[51.23438561300017,44.719061591000084],[51.20093834700012,44.74091217700011],[51.12086022200006,44.77826569200009],[51.110606316000116,44.78546784100003],[51.10377037900017,44.792059637000094],[51.096039259000094,44.79686107],[51.06023196700008,44.800238348],[51.04957116000011,44.80345286700005],[51.04517662900011,44.80963776200004],[51.03419030000006,44.81785716400013],[50.97071373800006,44.84715403900004],[50.96241295700011,44.86367422100004],[50.95997155000006,44.88646067900005],[50.96550540500019,44.90668366100006],[50.98080488400015,44.91543203300013],[50.989756707000055,44.91893138200014],[50.99382571700002,44.92715078300013],[50.9939884770001,44.93646881700006],[50.99105879000015,44.94334544499999],[50.97966556100019,44.948716539000046],[50.965993686000076,44.94944896000008],[50.95435631600017,44.95221588700003],[50.94955488400009,44.96381256700014],[50.959320509000094,44.97882721600016],[50.982188347,44.989488023000106],[51.00855553500011,44.99583567900014],[51.02833092500006,44.99799225500014],[51.053558790000096,44.99542877800003],[51.065196160000106,44.99701569200006],[51.079356316000116,45.00482819200006],[51.08627363400015,45.01146067900011],[51.09782962300008,45.02529531500003],[51.107188347000175,45.03217194200012],[51.1502384770001,45.05361562700007],[51.17457116000011,45.06220123900009],[51.196543816000116,45.065619208],[51.21355228000019,45.05756256700014],[51.23161868600019,45.040676174000154],[51.251149936000076,45.02606842700014],[51.272959832000225,45.02464427300008],[51.28174889400011,45.03754303600009],[51.274912957000055,45.05683014500012],[51.26075280000006,45.076605536000145],[51.24781334700006,45.09048086100013],[51.24341881600017,45.10106028900016],[51.24773196700008,45.11298248900012],[51.25440514400012,45.12466054900004],[51.25798587300019,45.13450755400005],[51.256521030000016,45.141302802000084],[51.24830162900011,45.15668366100003],[51.24439537900011,45.16181061400012],[51.251231316000165,45.17548248900006],[51.26319420700011,45.192572333],[51.29363040500007,45.22549062700009],[51.29957116000017,45.240952867000104],[51.309255405000016,45.25731028900013],[51.39722741000017,45.33258698100009],[51.4060978520001,45.348578192],[51.4095158210001,45.37103913],[51.41570071700019,45.389960028000026],[51.42994225400011,45.38092682500012],[51.456716342000185,45.34739817900008],[51.49390709700012,45.334702867000104],[51.54371178500017,45.33490631700006],[51.592946811000076,45.344712632],[51.62794030000006,45.3610700540001],[51.65870201900006,45.38532135600009],[51.66773522200017,45.389553127],[51.69019616000016,45.38861725500014],[51.69996178500011,45.392075914000046],[51.71485436300006,45.40965403900016],[51.7264103520001,45.429388739],[51.73951256600017,45.44684479400014],[51.75831139400012,45.457261460000055],[51.770355665000096,45.44773997600005],[51.78142337300008,45.434230861000074],[51.78931725400011,45.41933828300004],[51.79249108200011,45.405462958000136],[51.87842858200011,45.39520905200011],[51.894297722000054,45.39085521000011],[51.921153191000116,45.37164948100015],[51.94011478,45.36733633000016],[51.95777428500011,45.37164948100015],[51.99008222700015,45.39085521000011],[52.00879967500006,45.39520905200011],[52.031423373000194,45.393011786000116],[52.072032097,45.38361237200009],[52.094086134000094,45.381537177000084],[52.40308678500011,45.409409898000106],[52.44581139400012,45.40058014500006],[52.51929772200012,45.408880927000055],[52.56666100400011,45.400702216000056],[52.735199415000146,45.34784577000006],[52.83513431100019,45.336655992000075],[52.88502037900017,45.31830475500003],[52.90967858200017,45.31268952],[53.00220787900011,45.32013580900018],[53.02849368600007,45.316473700000024],[53.08334394600015,45.301662502000156],[53.108246290000096,45.29962799700003],[53.12924238400015,45.304877020000035],[53.17090905000012,45.32249583500013],[53.19434655000006,45.32636139500015],[53.20045006600017,45.32843659100014],[53.21241295700011,45.33803945500013],[53.2181095710001,45.34056224200005],[53.24284915500007,45.33539459800015],[53.24545332100015,45.33380768400012],[53.25220787900017,45.33698151200018],[53.26124108200011,45.34284088700004],[53.26734459700017,45.35089752800015],[53.2658797540001,45.3610700540001],[53.24756920700017,45.36969635600012],[53.142914259000094,45.38397858300002],[53.134532097,45.389593817],[53.128672722000175,45.39638906500012],[53.12191816500015,45.40204498900012],[53.11207116000011,45.406154690000065],[53.081716342000014,45.408880927000055],[53.03565514400011,45.41876862200014],[52.90967858200017,45.46344635600012],[52.88510175900015,45.467474677],[52.87574303500011,45.471136786000145],[52.8572697270001,45.48871491100006],[52.85010826900006,45.49420807500009],[52.840668165000096,45.49725983299999],[52.804209832000055,45.50104401200012],[52.7552189460001,45.51679108300008],[52.73845462300008,45.52558014500012],[52.74341881600011,45.538316147999986],[52.738047722000175,45.54694245000009],[52.73194420700011,45.55414459800012],[52.73462975400017,45.56281159100003],[52.74268639400012,45.57343170800006],[52.74301191500009,45.580796617000075],[52.74024498800006,45.58783600500011],[52.73845462300008,45.59723541900014],[52.740000847,45.620835679],[52.74561608200022,45.63914622600005],[52.757090691000165,45.651068427],[52.77588951900012,45.65525950700011],[52.792246941000116,45.66290924700014],[52.80388431100002,45.68073151200004],[52.82032311300022,45.71735260600015],[52.858734571000156,45.76483795800006],[52.87549889400006,45.778794664000046],[52.88624108200005,45.7836774760001],[52.91089928500017,45.79051341400013],[52.91993248800006,45.796128648000135],[52.954356316000116,45.83030833500011],[52.96745853000018,45.84780508000007],[52.98658287900017,45.886135158000094],[53.00220787900011,45.90607330900018],[53.031260613000114,45.927394924000154],[53.04004967500006,45.93646881700015],[53.0447697270001,45.94505442900005],[53.05396569100017,45.967230536000116],[53.06039472700016,45.978013414000046],[53.081797722,46.00511302300008],[53.08659915500013,46.020493882000025],[53.081716342000014,46.03880442900007],[53.081716342000014,46.03266022300009],[53.076996290000146,46.047837632000075],[53.082367384000094,46.060736395],[53.10523522200012,46.083889065000115],[53.11378014400012,46.09784577],[53.118418816000116,46.114325262000094],[53.127614780000016,46.18329498900011],[53.15674889400006,46.27228424700003],[53.15674889400006,46.341701565000065],[53.128265821000156,46.39394765800007],[53.082855665000096,46.43496328300007],[53.0325626960001,46.47089264500006],[53.05323326900006,46.468695380000085],[53.08318118600019,46.45014069200006],[53.10206139400006,46.443548895],[53.10206139400006,46.45099518400017],[53.08415774800008,46.46015045800006],[53.07545006600017,46.47565338700014],[53.075043165000096,46.494208075000174],[53.081716342000014,46.51243724200005],[53.06324303500011,46.50584544499999],[53.040782097,46.49017975500003],[53.0178328790001,46.47866445500007],[52.99838300900014,46.48456452],[52.99659264400005,46.50478750200013],[53.0096134770001,46.531683661],[53.04004967500006,46.57391998900012],[53.04175866000016,46.55536530200011],[53.05420983200011,46.545599677],[53.071787957000225,46.54474518400018],[53.087901238000114,46.553412177000084],[53.095713738000114,46.568345445000105],[53.10010826900006,46.60512929900001],[53.108246290000096,46.62173086100016],[53.11768639400012,46.60150788000014],[53.12574303500017,46.60663483300006],[53.133636915000096,46.622707424000126],[53.1424259770001,46.63532135600012],[53.15202884200008,46.63768138200008],[53.174978061000076,46.634955145],[53.18409264400006,46.63532135600012],[53.19581139400006,46.639837958000086],[53.200531446000156,46.64329661699999],[53.20460045700011,46.65582916900017],[53.20777428500017,46.695013739],[53.18816165500019,46.71800364799999],[53.15691165500007,46.72890859600007],[53.12574303500017,46.73159414300012],[53.10580488400014,46.73725006700012],[53.09945722700016,46.75112539300004],[53.10206139400006,46.78310781500003],[53.08350670700022,46.85325755399999],[53.06478925900015,46.87946198100012],[53.06039472700016,46.89232005400005],[53.05193118600002,46.89842357000013],[53.009043816000165,46.89484284100014],[52.99219811300017,46.89545319200012],[52.974131707000225,46.90843333500011],[52.93555748800006,46.948919989000146],[52.91993248800006,46.95746491100006],[52.87501061300005,46.95677317900011],[52.782725457000225,46.94383372600011],[52.72738691500015,46.95001862200008],[52.61475670700011,46.95001862200008],[52.59034264400005,46.95441315300017],[52.571543816000116,46.96222565300015],[52.536957227000094,46.98883698100009],[52.5193791020001,46.994208075000145],[52.45590254000015,47.00116608300006],[52.436778191000116,46.99909088700004],[52.42725670700011,46.990179755],[52.42335045700011,46.97907135600015],[52.423106316000165,46.95380280200011],[52.419281446000156,46.943996486000074],[52.37403405000011,46.90363190300003],[52.357188347,46.89362213700004],[52.26221764400012,46.870103257],[52.23503665500019,46.86888255400008],[52.201833530000066,46.88544342700014],[52.18881269600009,46.88377513200011],[52.18067467500006,46.87555573100003],[52.18287194100017,46.86188385600009],[52.18946373800023,46.85871002800003],[52.21583092500011,46.851629950000145],[52.22437584700006,46.84829336100013],[52.230642123000194,46.841945705000015],[52.237315300000056,46.83234284100002],[52.24268639400012,46.82119375200001],[52.24488366000011,46.81004466400016],[52.23894290500019,46.80683014500012],[52.112559441000116,46.812730210000055],[52.08790123800023,46.82094961100016],[52.078135613000114,46.82575104400014],[52.071787957000055,46.83002350500006],[52.06836998800023,46.837388414000046],[52.06739342500006,46.85138580900012],[52.061859571000156,46.85004303600011],[52.04957116000011,46.85687897300015],[52.01726321700008,46.88068268400003],[52.007009311000076,46.88507721600003],[52.00001061300006,46.89057038000005],[51.99789472700016,46.90289948100009],[52.003591342000014,46.90961334800012],[52.014496290000096,46.91722239799999],[52.02247155000006,46.926214911],[52.0188908210001,46.9369977890001],[51.99903405000012,46.940985419000086],[51.98121178500011,46.92332591400016],[51.960703972000175,46.885809637000065],[51.94141686300023,46.879950262000094],[51.909678582000055,46.88108958500014],[51.876719597,46.88694896],[51.853851759000094,46.89545319200012],[51.88542728000018,46.92446523600002],[51.89551842500006,46.93081289300012],[51.87403405000011,46.93561432500003],[51.84961998800006,46.928208726000136],[51.806000196000156,46.90908437700007],[51.78492272200006,46.90912506700006],[51.76368248800006,46.91571686400012],[51.74390709700006,46.92682526200015],[51.72771243600019,46.94041575700011],[51.68921959700011,46.961493231000034],[51.675791863000114,46.97858307500017],[51.69605553500011,47.02118561400012],[51.69402103000019,47.041734117000075],[51.68018639400006,47.05703359600012],[51.655284050000056,47.05988190300015],[51.63575280000006,47.04877350500014],[51.62680097700015,47.02928294500005],[51.62110436300017,47.007391669000114],[51.611013217000185,46.98883698100009],[51.59229576900012,46.98725006700006],[51.572032097,47.004828192],[51.54607181100002,47.04002513200005],[51.5271916020001,47.052964585000055],[51.50261478000019,47.06134674700003],[51.437836134000094,47.06915924700002],[51.38184655000011,47.08368561400006],[51.25359134200019,47.102972723],[51.21257571700019,47.120917059000035],[51.18702233200011,47.11688873900006],[51.14185631600017,47.09467194200003],[51.10271243600002,47.08047109600001],[50.97071373800006,47.05988190300015],[50.95191491000011,47.05219147300014],[50.92286217500006,47.02496979400014],[50.90544681100019,47.01894765800013],[50.89079837300008,47.022284247000144],[50.868337436000076,47.03676992400001],[50.857432488000114,47.04002513200005],[50.846527540000096,47.03676992400001],[50.84058678500011,47.029486395],[50.83952884200002,47.022284247000144],[50.84376061300017,47.01894765800013],[50.83814537900017,47.00991445500013],[50.75782311300023,46.91551341400016],[50.74057050900014,46.90615469000012],[50.73047936300006,46.92332591400016],[50.733897332000055,46.93496328300007],[50.753184441000116,46.955064195000105],[50.75782311300023,46.968003648000135],[50.752126498000074,46.97467682500009],[50.73951256600017,46.96922435100005],[50.70378665500007,46.94269440300008],[50.67823326900005,46.93268463700009],[50.65137780000006,46.92829010600012],[50.63111412900017,46.93390534100003],[50.61605879000015,46.93561432500003],[50.61036217500006,46.915269273000135],[50.60694420700005,46.86810944200015],[50.59864342500006,46.85244375200007],[50.585459832000225,46.83722565300009],[50.569102410000106,46.82904694200009],[50.55160566500015,46.8346214860001],[50.569834832000225,46.85236237200009],[50.58082116000011,46.86762116100006],[50.57813561300023,46.878363348000065],[50.55543053500017,46.88239166900005],[50.52133222700016,46.874660549000126],[50.51441491000016,46.87181224199999],[50.502777540000146,46.863592841000084],[50.493662957000055,46.865790106000176],[50.4861759770001,46.87201569200015],[50.45337975400011,46.891750393000066],[50.443044467000185,46.89545319200012],[50.43474368600013,46.896877346000096],[50.43018639400005,46.89671458500011],[50.425140821000156,46.89272695500012],[50.41578209700012,46.88239166900005],[50.38363691500015,46.8177757830001],[50.367360873000194,46.80662669499999],[50.37208092500012,46.81932200700014],[50.37427819100011,46.854437567],[50.36085045700011,46.846502997000144],[50.353037957000225,46.83486562700013],[50.34734134200002,46.822821356000034],[50.340017123000024,46.813462632],[50.33301842500006,46.81102122600005],[50.314138217000014,46.80931224200005],[50.30591881600011,46.80662669499999],[50.2986759770001,46.80194733300005],[50.294200066000116,46.797919012000094],[50.251475457000225,46.74241771000013],[50.23096764400006,46.72601959800012],[50.21314537900011,46.72817617400012],[50.21314537900011,46.737738348000036],[50.21989993600002,46.75018952000011],[50.22315514400006,46.76105377800003],[50.21314537900011,46.765692450000145],[50.200368686000076,46.76308828300013],[50.168793165000146,46.74909088700009],[50.079356316000165,46.68378327],[50.05079186300006,46.649603583000115],[50.03402754000015,46.63515859600015],[50.01417076900006,46.629136460000055],[49.97657311300022,46.63222890800012],[49.962657097000175,46.629136460000055],[49.95281009200002,46.62368398600002],[49.93718509200008,46.60789622600008],[49.92855879000015,46.601263739],[49.893321160000106,46.59076569200011],[49.88233483200017,46.57587311400009],[49.868500196000156,46.57558828300013],[49.8396916020001,46.580755927000055],[49.825450066000116,46.571478583],[49.82325280000012,46.55329010600009],[49.81739342500006,46.54043203300007],[49.791840040000096,46.547267971],[49.77955162900011,46.561835028000026],[49.77133222700016,46.56708405200011],[49.76091556100007,46.56338125200007],[49.76091556100007,46.54173411699998],[49.75749759200002,46.531683661],[49.747325066000116,46.536322333000115],[49.72681725400011,46.55459219],[49.713633660000106,46.561428127],[49.702647332000225,46.560248114],[49.70085696700008,46.552476304],[49.704356316000116,46.527167059000064],[49.702647332000225,46.51927317900008],[49.63770592500006,46.577337958000136],[49.622569207000055,46.582831122000144],[49.61963951900006,46.563788153000175],[49.6268009770001,46.51927317900008],[49.608083530000016,46.5270042990001],[49.59766686300023,46.521144924000126],[49.59001712300019,46.509222723],[49.578949415000146,46.49884674700009],[49.570648634000094,46.52191803600006],[49.557871941000116,46.53436920800008],[49.49805748800006,46.55280182500012],[49.480804884000094,46.56061432500012],[49.469737175000056,46.57355377800011],[49.469086134000094,46.5943871110001],[49.46924889400022,46.56264883000013],[49.47234134200002,46.54661692900005],[49.4861759770001,46.5346540390001],[49.49659264400012,46.50901927300005],[49.50407962300019,46.49884674700009],[49.49284915500019,46.49957916900002],[49.47559655000006,46.50495026200009],[49.465668165000096,46.50629303600009],[49.45679772200006,46.50958893400012],[49.457530144000174,46.51727936400011],[49.461680535000106,46.52619049700017],[49.462250196000156,46.5329450540001],[49.458262566000116,46.536769924000126],[49.43848717500006,46.550360419000086],[49.42896569100017,46.55487702000012],[49.423675977000094,46.55052317900005],[49.421641472000175,46.54352448100015],[49.421397332000225,46.53974030200014],[49.389496290000096,46.544012762000065],[49.35385175900015,46.553534247000144],[49.32300866000011,46.56806061400009],[49.30534915500019,46.58759186400006],[49.31299889400012,46.562079169000164],[49.37859134200002,46.51019928600009],[49.394216342000135,46.478338934000064],[49.374522332000055,46.48407623900012],[49.33757571700002,46.48525625200012],[49.333262566000116,46.48456452],[49.319183790000096,46.49725983300006],[49.30958092500012,46.512274481000084],[49.29786217500012,46.523749091000056],[49.278086785000106,46.52545807500006],[49.278086785000106,46.51927317900008],[49.29468834700006,46.508002020000085],[49.29761803500017,46.48688385600014],[49.303558790000096,46.466457424],[49.3294376960001,46.45722077000012],[49.36687259200002,46.42987702000006],[49.370860222,46.42088450700005],[49.37273196700019,46.41038646000008],[49.37142988400009,46.39935944200012],[49.36687259200002,46.38898346600003],[49.325694207000055,46.41034577000009],[49.30632571700008,46.423895575000145],[49.29175866000011,46.43740469000012],[49.27784264400023,46.453802802000105],[49.266286655000016,46.46405670800005],[49.250336134000094,46.46938711100002],[49.22339928500011,46.47089264500006],[49.23462975400017,46.46474844],[49.243174675000056,46.45856354400003],[49.24878991000017,46.44920482],[49.25074303500011,46.43366120000009],[49.255381707000225,46.424139716000084],[49.29175866000011,46.396429755],[49.28785241000011,46.39472077],[49.278086785000106,46.38898346600003],[49.263845248000194,46.39614492400007],[49.184906446000156,46.413804429],[49.173594597000175,46.41351959800015],[49.16822350400011,46.40940989800002],[49.17042076900012,46.399115302],[49.17839603000007,46.39280833500014],[49.18897545700011,46.38971588700014],[49.19922936300023,46.38898346600003],[49.21583092500012,46.38031647300012],[49.22217858200022,46.36127350500014],[49.22388756600011,46.342271226000136],[49.22641035200016,46.33368561400012],[49.22706139400012,46.32794830900015],[49.22713051933729,46.327879184043084],[49.03316166200008,46.40489471500008],[48.9598844810001,46.445254009000124],[48.91797489400019,46.47432200200013],[48.89704593900009,46.48217681900017],[48.86872725400021,46.48235768600004],[48.84412927300016,46.478533630000086],[48.819634643000114,46.47925710100015],[48.7585531010001,46.51313100200018],[48.73292159000002,46.53403411900017],[48.70501631700003,46.55044138600011],[48.665225464000144,46.55718516100013],[48.57324141500007,46.55827036600006],[48.53939335100003,46.56795969700009],[48.56300948100008,46.59131744500003],[48.546886434000186,46.59927561500008],[48.541925497000214,46.6132540900001],[48.5392383220001,46.62795603400018],[48.53003991700021,46.63818796800017],[48.493453003000155,46.65348419300004],[48.474022665000085,46.659220276000084],[48.455109090000036,46.66079640700009],[48.47908695500004,46.683456523000146],[48.50575199400012,46.732600810000015],[48.55670495600006,46.761746318000135],[48.61819991000007,46.77042795800009],[48.67659427900011,46.75802561500002],[48.69726485200013,46.745080668000114],[48.71266442800001,46.72877675400018],[48.73953617400011,46.690562033],[48.764030802000065,46.68283640599999],[48.916889689000215,46.702576803000156],[48.94810225500012,46.71994008400016],[49.00628991700008,46.769110210000136],[48.69726485200013,47.10097625800002],[48.546162964000104,47.369435323000125],[48.535827678000175,47.39349070200008],[48.525078980000075,47.41023386600013],[48.51029952000013,47.41744272900008],[48.47319584200008,47.420414124],[48.43753910300009,47.42919911700009],[48.4110807700001,47.445761414000074],[48.36095463100017,47.49294199700002],[48.36059289600004,47.49309702600005],[48.17435103400006,47.712851054000154],[48.11249434400017,47.748507793000144],[48.04448815900017,47.76969512900011],[47.64973189300022,47.76558685400009],[47.43532637500007,47.83439402300009],[47.412175334000175,47.83586680100008],[47.394191935000066,47.826797587000115],[47.38881758700015,47.81191477500006],[47.38943770300008,47.751556702000165],[47.38292647300014,47.705357971000026],[47.374244833000176,47.68582428000012],[47.3596720780001,47.68334381100014],[47.17446374500011,47.77052195300002],[47.140564006000055,47.79266530400004],[47.12382084200013,47.80803904200003],[47.11948002100016,47.819769592000014],[47.125164429000186,47.83209442100015],[47.13829024300017,47.8495868940001],[47.14521488500022,47.855788066000095],[47.151726115000116,47.8590953570001],[47.15673872900018,47.86317779500011],[47.158650757000174,47.87154937800007],[47.15534346500007,47.87744049100017],[47.12165043100006,47.91544850700011],[47.05116377800019,47.974643860000086],[47.04423913600013,47.986219381000026],[47.058398479000026,47.99448761000018],[47.13705000800021,48.02725046799999],[47.17818444800011,48.05179677400007],[47.19203373200016,48.071795553000086],[47.17394698000006,48.08419789700015],[47.11948002100016,48.08828033500008],[47.10356368000012,48.10119944300008],[47.10408044400017,48.11923451800008],[47.111573527000104,48.1362360640001],[47.11648278800012,48.153857727000066],[47.10883467600016,48.17398569800007],[47.10263350400007,48.18029022200007],[47.08030928600012,48.19597401900002],[47.075244996,48.20512074800011],[47.081549520000145,48.21183868400014],[47.09198815900018,48.21731638700011],[47.09860274300009,48.22258738200007],[47.11214196800003,48.2415526330001],[47.11212053500017,48.24220453800013],[47.11183190900007,48.250983582000075],[47.09891280100007,48.26537546800007],[47.07829390500015,48.27534902000009],[46.97923018400016,48.293952536000134],[46.7292712810001,48.352088522000045],[46.47931237800012,48.41022450800013],[46.478588908000084,48.41022450800013],[46.47827884900002,48.41056040500003],[46.478588908000084,48.411154684000095],[46.47931237800012,48.41185231600017],[46.62019191000016,48.66959661800014],[46.75381758600011,48.914069723000054],[46.77800215700008,48.936032207000025],[46.81293542500006,48.953757223000125],[46.88807295700005,48.98052561499999],[46.91101729300012,48.99282460500005],[46.93003422000018,49.00403839100009],[46.97923018400016,49.04729156500004],[47.02088138800016,49.096849264000085],[47.04000166800003,49.15033437100011],[47.02863285300006,49.201494039000025],[46.97923018400016,49.244282125000055],[46.83071211800009,49.31833445299999],[46.7751082770001,49.33254547200012],[46.83750756900022,49.576432394],[46.899906861000055,49.82031931600007],[46.92259281400007,49.86135040300003],[46.95855961100014,49.88413970900002],[47.17735762500009,49.94718495800005],[47.24557051600013,49.992350159000026],[47.30871911600016,50.044801738000054],[47.328562867000045,50.07296539300002],[47.327632691000105,50.10929392600009],[47.273062378000105,50.15843821300014],[47.265104207,50.18634348600004],[47.276266317000164,50.199882711],[47.31264652500013,50.22241363600004],[47.322310018000074,50.237399801],[47.316987345000115,50.25290273000011],[47.30318973800016,50.26349639900009],[47.29476648000016,50.27543365500013],[47.30567020700002,50.29486399400009],[47.32287845900012,50.30447581000011],[47.39222823000014,50.323234355000025],[47.40628422000006,50.334241435000095],[47.43446043500009,50.37652808400012],[47.43889205000002,50.3831790170001],[47.46979455500011,50.411756084000054],[47.511497436000155,50.4369225060001],[47.55692102100008,50.452580465000054],[47.5992956950001,50.45268381800018],[47.62466882300012,50.44079823800014],[47.68998783300006,50.38633127900006],[47.7349463300001,50.370053203000126],[47.749105672,50.360234681000165],[47.76026778200017,50.34716054300013],[47.76693404200009,50.337186992],[47.77649418100006,50.329797262],[47.795976197000044,50.32478464800011],[47.80822351000008,50.31992706300012],[47.85452559400008,50.28504547200005],[47.874059286000175,50.266441956000094],[47.91343672700006,50.24385935500005],[47.953640991000185,50.20489532500006],[47.99322513900003,50.18179596],[48.00035648600007,50.169703674000104],[48.00505904100006,50.15600941999998],[48.012242066000134,50.1421084600001],[48.024747762000196,50.13125640900016],[48.07456384300016,50.10526316300008],[48.09637129700016,50.078546448000125],[48.105983113000065,50.05064117400015],[48.11249434400017,50.02196075500014],[48.12531009900013,49.992970277],[48.132234741000126,49.98372019400007],[48.14236332200008,49.96377309200015],[48.14928796400008,49.95493642200013],[48.16086348500019,49.946461487000036],[48.20044763200016,49.92501576800011],[48.219877971000216,49.90150299100013],[48.22711267100007,49.87948883100013],[48.23930830900011,49.86476104800015],[48.27403487200016,49.863055726000184],[48.30287032100008,49.866724752],[48.31217207800009,49.863572489000106],[48.359507691000054,49.83396189400015],[48.417592001000145,49.81168935100011],[48.42989099100012,49.809673971000066],[48.442810100000116,49.81499664300013],[48.46585778800008,49.83582224600018],[48.47908695500004,49.84316029899999],[48.683518921000115,49.89545684799999],[48.7845980220001,49.93338735],[48.86200931800008,49.99291860000007],[48.878184041000196,50.01002349900001],[48.88567712400007,50.019893697],[48.8858838300001,50.03043568900015],[48.874101603000064,50.06981313100006],[48.86552331500016,50.086194560000095],[48.851829061000124,50.0972533160001],[48.78284102400019,50.111464335000065],[48.7809806720002,50.13756093400015],[48.789042196000054,50.173010966],[48.77095544500017,50.21104482000014],[48.72889082900022,50.265408428000015],[48.701295614000145,50.33460317000011],[48.67442386900015,50.478470358],[48.67866133600008,50.54854360000003],[48.67339034000017,50.579549460000166],[48.6484823000001,50.60156361900014],[48.597425985000115,50.608023174],[48.57293135600017,50.6168598440001],[48.568280477000116,50.63654856400014],[48.58399011300017,50.649622702],[48.60879480000019,50.647917379000134],[48.739587850000156,50.597532858000065],[48.78625166900022,50.59060821600015],[48.830435018000145,50.59603424100014],[49.01269779400016,50.68341908800009],[49.10240808100011,50.75798818000014],[49.144059285000104,50.78170766200019],[49.283689006000166,50.80372182300006],[49.36942020700005,50.826769512000126],[49.40843591400008,50.84826690700008],[49.423732137000144,50.88206329300006],[49.40549035700005,50.91353424100011],[49.37153894100007,50.93942413400005],[49.34735437000009,50.964280497000104],[49.35913659700006,50.9926508590001],[49.38332116700016,51.01939341300005],[49.39272627700021,51.034198711],[49.40104618300009,51.06709076000011],[49.41060632300017,51.08553924600012],[49.42311202000005,51.10199819000012],[49.43654789200011,51.11233347600002],[49.46011234500011,51.11615753200005],[49.53974572800015,51.10078379400009],[49.77905928600009,51.10217905700016],[49.79590580300007,51.109568787000065],[49.84282800300011,51.15067738900014],[49.98685022000014,51.22981984500014],[50.028759806,51.24299733600013],[50.20745690900017,51.265941671000164],[50.32538252800012,51.30345876100015],[50.34228072100021,51.31273468100006],[50.348946980000136,51.322604879000046],[50.34744836500013,51.33523976700009],[50.3404203700002,51.35286143100008],[50.33757816600021,51.37203338700009],[50.34672489400011,51.38120595300008],[50.36186608900002,51.38738128700005],[50.37623213700013,51.39701894200009],[50.37292484500014,51.40104970300017],[50.36444991000022,51.406914978000074],[50.359592326000126,51.41332285600011],[50.36744714400007,51.41895558700004],[50.37964278200016,51.421151836000135],[50.439225708000066,51.42301218700014],[50.457467488000106,51.426887920000084],[50.471058390000195,51.436112162000185],[50.478964884000135,51.453733826000175],[50.502684366000175,51.456136780000136],[50.51834232600007,51.45975413000012],[50.52723067200017,51.470089417000125],[50.53136478700017,51.49269785600016],[50.522166382000165,51.55075632800004],[50.52537032100017,51.56558746399999],[50.54283695500007,51.57736969100007],[50.56185388200006,51.58065114400007],[50.57570316600001,51.588428447000084],[50.57761519400006,51.61336232500015],[50.58169763200007,51.635298971],[50.599836060000165,51.63473053000014],[50.63926517700011,51.61617869100003],[50.68577396700002,51.61563608800016],[50.69419722500001,51.61116607700016],[50.67502526900009,51.59439707500009],[50.65869551600005,51.57618113200006],[50.67089115400009,51.567525330000095],[50.69652266500006,51.56558746399999],[50.71998376500014,51.56742197700008],[50.76432214400009,51.57866160100003],[50.790677124000155,51.59729095500007],[50.79450118000008,51.62597137500007],[50.747372274000064,51.70904124000005],[50.74416833500018,51.7423725390001],[50.767009318000106,51.75939992300011],[50.82085616100002,51.75255279599998],[50.83925297000022,51.74552480100006],[50.857753133000045,51.73529286800009],[50.873669475000185,51.72188283300012],[50.88431481900008,51.705553081000104],[50.90074792500016,51.687130433],[50.92544926000008,51.67968902600008],[51.16977543100015,51.669482931000104],[51.19023929800019,51.67410797200015],[51.21256351800016,51.68175608300014],[51.233854207000064,51.68547678600005],[51.251837606000066,51.678526307000155],[51.276228881000094,51.651602885000145],[51.28842452000018,51.64286956800008],[51.308474975000216,51.637055970000105],[51.352503296000094,51.636229147000066],[51.37193363500009,51.62958872500015],[51.381958862000175,51.6097966520001],[51.38113203900016,51.58705902100011],[51.37317386900011,51.5716077680001],[51.358962850000154,51.561479187000074],[51.33917077700008,51.5550196330001],[51.241657348000075,51.54370249400013],[51.23654138200018,51.535899353],[51.24780684400011,51.521094055000084],[51.263826538000075,51.50489349400008],[51.273024943000074,51.49287872300012],[51.273024943000074,51.49259450400013],[51.30423750800016,51.47163971000005],[51.37947839400013,51.46709218400012],[51.461850626000086,51.475282899000135],[51.51497399900015,51.49269785600016],[51.532078898000094,51.50840749200013],[51.54473962400013,51.52411712700011],[51.55982914300014,51.53458160400005],[51.5843237710001,51.53491750100012],[51.60995528100014,51.52773447700018],[51.6204972740002,51.51869110200012],[51.622977743000064,51.504247538000115],[51.624424682000175,51.48101898200009],[51.647369018000205,51.451227519],[51.69330936700007,51.45409556100015],[51.744314006000224,51.47344838500014],[51.782296184000046,51.492852885000026],[51.78296797700014,51.529827372000156],[51.76777510600012,51.56297780400017],[51.764726196000105,51.59331187000011],[51.82017500900016,51.63297353200009],[51.8508708090001,51.661653951000076],[51.86916426600007,51.673074443000175],[51.89675948100009,51.679740703000085],[51.92476810700006,51.67826792400008],[51.952518351000116,51.67095570900001],[51.97861495000021,51.66036204000012],[52.00455651900003,51.65485850000012],[52.03525231900019,51.65240387000015],[52.065948120000115,51.65343739900013],[52.09178633600007,51.658708395000176],[52.11100996900009,51.670309753000126],[52.13333418800008,51.702039083000145],[52.148010294000215,51.71606923500015],[52.174106893000015,51.72524180100005],[52.230175822000064,51.72245127399999],[52.25818444800009,51.72420827300009],[52.279578492000184,51.735344544],[52.29223921800022,51.765626933000036],[52.30779382300014,51.77454111700014],[52.334872273000116,51.76371490500009],[52.35213220200009,51.730202739],[52.36458622300008,51.690282695000136],[52.37766036000002,51.66010365900014],[52.44452966300011,51.58018605600013],[52.47243493700009,51.51502207500012],[52.4788428140001,51.50486765600009],[52.49021162900012,51.49259450400013],[52.50581791200014,51.47887441000002],[52.524989869000166,51.467531433000126],[52.545815470000115,51.45952158600014],[52.55367028800006,51.45797129400013],[52.57506433100016,51.467143861000025],[52.66368941300007,51.46344899500012],[52.66854699700016,51.45512909000014],[52.679812459000146,51.45900482200001],[52.69231815600014,51.46843577100015],[52.700896443000055,51.47675567700004],[52.70947473200007,51.48207835000009],[52.72146366400014,51.48515309700012],[52.745544882000075,51.48701344900003],[52.75257287600018,51.49047576900007],[52.757327108000105,51.497943014],[52.76466516100018,51.50525522900007],[52.779754680000075,51.50812327100006],[52.78967655400018,51.50476430300012],[52.810967245000164,51.49073415200003],[52.82068241400012,51.48701344900003],[52.87628625500011,51.49008819600005],[52.89654341700012,51.485282288000136],[52.88279748500011,51.467143861000025],[52.90336470500008,51.46499928900015],[52.9292029220002,51.45536163400011],[52.94429244000011,51.452881165000136],[52.959795369000204,51.45585256000005],[52.97323124200014,51.463604025000066],[52.98584029200018,51.47269907700003],[52.99886275300011,51.48019215900016],[53.037103312000085,51.489726461000075],[53.1571993410001,51.48701344900003],[53.1486210530002,51.50476430300012],[53.15327193200008,51.5126707970001],[53.165777629000075,51.514556987],[53.181073853000015,51.514298605000036],[53.190478964000164,51.512489930000136],[53.195129842000114,51.50804575700015],[53.19864383900019,51.50243886300002],[53.204948365000206,51.49721954400009],[53.21414676900011,51.49476491300014],[53.22055464600007,51.496470235000096],[53.226032349000064,51.49949330700012],[53.23223352000011,51.500681865000146],[53.30737105300014,51.49383473799999],[53.32235721900011,51.49533335400018],[53.34633508300013,51.50303314200009],[53.36690230300022,51.49360219400002],[53.36948612500012,51.49388641400018],[53.407313273000085,51.48417124500007],[53.41919885200011,51.474895325000126],[53.439662720000086,51.45115000400007],[53.4534086510001,51.441899923000065],[53.55541792800014,51.41551910400001],[53.59748254400009,51.3971739710001],[53.61029830000015,51.38841481500013],[53.617946411000126,51.372136739000105],[53.6093681240001,51.36410105400013],[53.57443485500019,51.35322316500016],[53.59324507700009,51.33911549900013],[53.593141723000166,51.322604879000046],[53.58859419800015,51.30534495100006],[53.59407189900011,51.28942861000006],[53.62797163900003,51.26777618400014],[53.64254439300012,51.255425517],[53.64936568200008,51.23733876600009],[53.67386031100014,51.21987213200005],[53.85772505700018,51.18460296700006],[53.90898807800007,51.19044240300006],[53.93585982300013,51.18561065700014],[53.974720500000075,51.16649037700013],[53.99404748600014,51.15339040100018],[54.017611938000215,51.11907725100015],[54.03983280500009,51.110369772000084],[54.09192264800012,51.10522796600018],[54.11155969200016,51.09600372400008],[54.12013798000007,51.081172587000154],[54.12995650300016,51.04233774900011],[54.1383280850001,51.02864349400009],[54.14566613800011,51.01965179400004],[54.14907678200015,51.009652405000125],[54.14535607900021,50.9926508590001],[54.17656864400012,50.96789784800008],[54.194035279000076,50.95818267800006],[54.233516073000175,50.943093161000135],[54.247675415000145,50.931000876000056],[54.26028446500007,50.917409974000165],[54.275787395000094,50.90428416000002],[54.30007531800007,50.894724019000094],[54.381000611000076,50.88542226200015],[54.391645956000076,50.88051300100012],[54.40993941300022,50.86873077400004],[54.41965458200016,50.86449330699999],[54.46430301900008,50.85803375300012],[54.47856571500009,50.85348622700009],[54.48590376800004,50.845114644000105],[54.48786747200008,50.83555450500002],[54.485283651000174,50.82542592400007],[54.47856571500009,50.81571075400002],[54.421928345000055,50.768685201000054],[54.41438358600013,50.74847971600015],[54.41241988100009,50.70403798400017],[54.407148886000044,50.684814351000156],[54.38534143000007,50.639442444000125],[54.379760376,50.619443665000105],[54.38358443200016,50.599909973000095],[54.399500773000085,50.57867095900012],[54.435777628000125,50.54751007100004],[54.45572473200016,50.535521139000096],[54.47856571500009,50.525960999000105],[54.499442993000144,50.52327382400007],[54.54551683900016,50.53051930800014],[54.55070601400004,50.531335348000155],[54.59142704200022,50.542342428000055],[54.647547648000085,50.57324493400013],[54.67627974500007,50.60254547100011],[54.67359257000007,50.63432647700012],[54.639072713000154,50.7069835410001],[54.63865930100004,50.7280158490001],[54.650958293000116,50.76563629100012],[54.65023482300009,50.786306865000036],[54.64537723800018,50.79266306600006],[54.63018436700017,50.80367014600015],[54.62687707600017,50.81157664000001],[54.6298743080001,50.82030995700008],[54.64599735600003,50.837724915000095],[54.65178511500014,50.846251526000046],[54.63824589000015,50.88573232000005],[54.58367557800014,50.905679424000155],[54.52600467900007,50.916428121000095],[54.502956991000104,50.928262024],[54.51587609900011,50.93725372300007],[54.534686320000134,50.94360992499999],[54.54595178300005,50.95327341800011],[54.525281209000156,50.99110056600007],[54.53375614500006,51.00324452700009],[54.5526697180002,51.010169169000065],[54.63824589000015,51.027687480000125],[54.662223755000156,51.02789418499999],[54.68578820800005,51.023553366],[54.70687219200008,51.01629282700013],[54.74624963400018,50.992960917000076],[54.81167199700005,50.9723936970001],[54.8312056880001,50.959319560000054],[54.86128137200015,50.93389475500014],[54.89425093600019,50.91239735900011],[55.04772994000021,50.88423370400015],[55.06323287000012,50.86216786700005],[55.06137251800013,50.822687073000125],[55.08400679500008,50.7969005340001],[55.30538863100011,50.66497060200008],[55.329366496000056,50.65515208],[55.34776330600002,50.65137970000007],[55.3660567630001,50.65246490600008],[55.41597619600006,50.661404927000106],[55.44233117700011,50.661663310000066],[55.467755981000124,50.65696075500009],[55.49111372900009,50.64585032200007],[55.50568648300006,50.63024403900012],[55.51374800600009,50.614017640000114],[55.524289998000114,50.60068512000011],[55.570385376000125,50.588334453000144],[55.586198364000126,50.578412578000055],[55.616790813000215,50.549938864000026],[55.65999231000014,50.53004343700011],[55.69430546100008,50.53877675400018],[55.76489546800005,50.58683583600005],[55.93232710800006,50.64652211500005],[56.078881470000084,50.7247602340001],[56.100068807000206,50.74785959899999],[56.13737919100018,50.86878245100014],[56.14750777200001,50.89229522700013],[56.1583598230001,50.905524394000125],[56.17489628100017,50.908676656000075],[56.258198690000114,50.88449208600012],[56.28858443200007,50.88030629500018],[56.31545617700007,50.88382029300014],[56.33571333800015,50.895860901],[56.343878215000096,50.91141550800013],[56.35049279800008,50.94800242100017],[56.36496219900019,50.95787262000006],[56.41581180800014,50.962678528000154],[56.43203820800013,50.97621775400013],[56.43193485600008,50.98980865500012],[56.42035933400003,51.018644104000074],[56.42118615800009,51.03352691700012],[56.43069462100007,51.04543833400005],[56.44650760900018,51.056574606000154],[56.47834029100014,51.07303354900013],[56.508002564000066,51.0662639370001],[56.59657596800011,50.984020895000135],[56.61662642400009,50.9783364870001],[56.68835331200008,50.9691380820001],[56.707473592000184,50.97042999300008],[56.70964400200014,50.98159210200002],[56.70271936000009,50.99818023700002],[56.682462199000184,51.030529684],[56.68029178900011,51.049779155000024],[56.694554484000065,51.063499247000046],[56.71605188000009,51.07246510800008],[56.73558557200013,51.07758107600007],[56.76008020000009,51.0802424110001],[56.776306600000076,51.07597910600005],[56.81361698400022,51.05703969400009],[56.838628377000106,51.05140696200006],[56.86508671100009,51.05176869700007],[56.891234986000114,51.056574606000154],[56.91583296700017,51.06417104100013],[56.941051066000135,51.06833099400016],[57.025180298000095,51.062672425000024],[57.07241255700015,51.069726257000134],[57.13793827300006,51.09587453200005],[57.15447473200001,51.09995697100005],[57.16822066200004,51.09378163700008],[57.1812431230002,51.07349863700007],[57.18992476400015,51.034844666000154],[57.19746952400013,51.017352194000026],[57.21359257000009,51.010117493000145],[57.237157023000094,51.009497376000084],[57.25627730300019,51.00603505500014],[57.272917114000194,50.99745676700011],[57.288523397000034,50.981230367000094],[57.29761844900022,50.96495229100015],[57.310124146000106,50.92934722900009],[57.318909139000105,50.91322418300002],[57.33430871600009,50.89741119400013],[57.35270552600011,50.88599070300002],[57.41812788900008,50.86237457300011],[57.44303592900022,50.85777537000014],[57.46763391200014,50.85849884100007],[57.491405070000184,50.86687042300003],[57.50887170400019,50.88128814700006],[57.51993046100021,50.89658437100009],[57.53284956900015,50.90996856800014],[57.5558972580001,50.91875356100003],[57.596204875000154,50.9157046510001],[57.689222453000205,50.89673940100015],[57.72239872300023,50.90872833300001],[57.73728153500011,50.938235576000025],[57.73790165200015,50.97089508099999],[57.7281864830002,51.03709259099999],[57.73438765500013,51.07388621100007],[57.75288781700012,51.09747650200008],[57.76880415800022,51.11967153000001],[57.79619266800009,51.12326304200008],[57.841771281000064,51.105796407000135],[57.8576876220001,51.103393454000084],[57.91225793400023,51.103393454000084],[57.92507369000012,51.09964691200015],[57.93406538900016,51.09396250400012],[57.95008508300011,51.0792088830001],[57.96021366400006,51.07747772300014],[57.988428996000124,51.08742543600006],[58.0016581620001,51.089776713],[58.07731245900006,51.09794159000001],[58.084133749000124,51.096623840000134],[58.08878462800006,51.09192128500016],[58.08971480400013,51.085616761000054],[58.08961145000009,51.079622295000135],[58.09095503800009,51.076108297000175],[58.11369266700016,51.065178732],[58.14056441300008,51.056652120000095],[58.16764286300011,51.05517934200019],[58.19058719900013,51.065540466000115],[58.20236942600015,51.08344635000015],[58.21146447700013,51.10494374600002],[58.22376346900015,51.12313385100005],[58.24526086500011,51.13073028600003],[58.2681018470001,51.13455434200016],[58.30840946500004,51.150031434000155],[58.323395630000135,51.14194407100017],[58.35357466600013,51.121996969000136],[58.365977011000176,51.10892283200008],[58.36928430200013,51.09507354800003],[58.3708345950001,51.081921895000065],[58.37796594300008,51.0706564330001],[58.39801639800012,51.063705954000014],[58.52048954300008,51.06194895400013],[58.56348433400015,51.04926239000018],[58.59500695900012,51.02337249800014],[58.60265507000011,50.981230367000094],[58.596350546000195,50.96247182200001],[58.58529178800009,50.947795716000094],[58.57082238700016,50.9359618130001],[58.55438928200007,50.92541982100012],[58.546534464000075,50.91193227100017],[58.55015181500002,50.8932770790001],[58.559970337000124,50.87519032800018],[58.571442505000135,50.86351145500011],[58.590459432000074,50.86108266200016],[58.64099898300006,50.863408101000076],[58.65123091600011,50.85327952100012],[58.643892863000104,50.81467722600014],[58.64668339000016,50.80129303000011],[58.664356730000094,50.78992421500011],[58.689781535000094,50.7883739220001],[58.71954716000008,50.7934898890001],[58.747762492000135,50.795091858000134],[58.76843306500015,50.78268951500014],[58.7850728760001,50.74971995100019],[58.79396122300008,50.737679342000135],[58.81153120900015,50.72548370400001],[58.88677209500011,50.6889484660001],[58.925942830000025,50.67814809200014],[59.197450806000084,50.66274851600015],[59.21936161300007,50.65835601800008],[59.235691366000104,50.644610087000146],[59.24695682800009,50.629623922000164],[59.259049113000025,50.62037384000014],[59.273311808000095,50.61598134400007],[59.29077844300016,50.61546458000011],[59.38648319500007,50.630347392000076],[59.4376428630001,50.63112253800007],[59.47815718600006,50.614379374000016],[59.4981042890001,50.59970326700012],[59.5510209550001,50.58600901300012],[59.56342330000004,50.57985951800004],[59.56042606600013,50.553814596000066],[59.53531132000009,50.54657989500011],[59.47815718600006,50.552419333],[59.45169885300019,50.53727813799999],[59.45076867700007,50.522291972000104],[59.466271606000156,50.50735748300006],[59.5228056230002,50.47464630200015],[59.555051717000055,50.4843614710001],[59.58771122300006,50.506168926000115],[59.6222310790001,50.52410064700008],[59.67308068900016,50.52952667300015],[59.725480591000085,50.52766632200014],[59.77467655500007,50.53371246400011],[59.81570764200009,50.56290964800006],[59.85921919800015,50.622544251000036],[59.87203495300011,50.635980123000095],[59.90397098800011,50.660268047],[59.915133097000215,50.673807272000076],[59.91957727100012,50.69091217000012],[59.913892863000086,50.72600046800015],[59.91461633300016,50.74589589500006],[59.920197388000105,50.76305247000012],[59.96215865100006,50.82950836200017],[59.96908329300019,50.837363180000104],[59.97807499200021,50.84377105700007],[60.021276489000144,50.854054667000135],[60.083288208000084,50.85715525400009],[60.13620487500006,50.844494528000055],[60.15212121600021,50.80770090700007],[60.15480839000023,50.77090728800006],[60.1767191970001,50.74217519200014],[60.2094820550001,50.71974762000015],[60.24544885200006,50.70197092800011],[60.30043257700013,50.68465932300002],[60.718494914000104,50.65267161100003],[60.81833378100012,50.662903544000116],[61.09521610550009,50.722693176000135],[61.372098430000186,50.78248280800001],[61.40403446500007,50.80258494100015],[61.426875448000175,50.83307403600004],[61.441758260000114,50.87498362200012],[61.45674442600009,50.96500396800009],[61.46542606600022,50.9926508590001],[61.51317509000009,51.159514059000124],[61.53415572100013,51.206074524000186],[61.567331991000145,51.233876445000064],[61.61105025300011,51.24925018300003],[61.6636568600002,51.258396912000094],[61.6462585310002,51.263192932],[61.593170207000156,51.277827250000186],[61.56299117000005,51.295526429000105],[61.53870324700003,51.323173320000095],[61.49839563000009,51.40053293900002],[61.47803511500015,51.421151836000135],[61.47379764800021,51.42580271399999],[61.437624146000104,51.43223643000014],[61.393699179000144,51.44983225600011],[61.35618208800016,51.45965077800018],[61.342126099000126,51.45843638200016],[61.31835494000009,51.453449606],[61.304919068000146,51.452881165000136],[61.2914831950001,51.45502573700004],[61.25717004400016,51.467143861000025],[61.23298547400007,51.47055450500015],[61.16404911300006,51.467143861000025],[61.14151818800022,51.46918508000009],[61.10183068800003,51.478150940000106],[61.081470175000135,51.48019215900016],[61.04850061000016,51.47890024900012],[61.03806197100013,51.48019215900016],[61.029380330000066,51.482672628000145],[61.02328251100018,51.485514832000106],[61.01894169100015,51.488667094000064],[61.01522098800009,51.492077739000095],[61.01067346200008,51.49623769100013],[61.00395552600017,51.500681865000146],[60.97098596200007,51.51561635400018],[60.95899703000006,51.524866435000106],[60.94463098100002,51.5443742880001],[60.937396281000154,51.556879985000094],[60.93439904800007,51.56582000800013],[60.93346887200019,51.598427836],[60.937396281000154,51.61116607700016],[60.92106652900023,51.611476136000036],[60.51509647600013,51.617909850999986],[60.5057947180002,51.61977020300018],[60.49990360500012,51.62710825699998],[60.498456665000184,51.63715932300012],[60.49535608000004,51.646254374000094],[60.484710734000174,51.65103444500009],[60.375880167000076,51.66253245100002],[60.355106242000055,51.671420797000124],[60.356036418,51.69227223700009],[60.371539348000134,51.7051655070001],[60.41835819500014,51.71935068800015],[60.43737512200019,51.72839406400011],[60.44119917800006,51.73622304300012],[60.44016565000018,51.75394806000007],[60.445850057000115,51.76004587900011],[60.46579716000022,51.76919260699999],[60.47551232900017,51.77619476400009],[60.47974979700021,51.784256287000076],[60.4520512290002,51.80546946300013],[60.27449100700008,51.8328321340001],[60.171964966000104,51.880374451000094],[60.138065226000066,51.88887522400002],[60.12648970600011,51.87910837800014],[60.11780806400006,51.86355377200011],[60.092279907000055,51.854768779000054],[60.06075728400017,51.85867034900009],[60.040086711000036,51.871201884000115],[59.99461145000013,51.93628835100019],[59.985723104000186,51.95228220700012],[59.987273397000216,51.96884450400013],[60.00318973800014,51.99251230900007],[60.00318973800014,51.9925898230001],[60.029775857000146,51.99261047500012],[60.20276412000007,51.99274485300013],[60.347664836000064,52.08961232500014],[60.42579960100008,52.12958404600012],[60.50651818900011,52.151649882000115],[60.56243208800018,52.150332133000134],[60.6181392820001,52.142942403000134],[60.672192830000114,52.144337667000045],[60.72283573400009,52.16958160500017],[60.76293664500005,52.210199280000104],[60.78123010300013,52.22061208100014],[60.876728150000105,52.24590769500013],[60.8966752520001,52.25469268900009],[60.94742150800018,52.28972931000011],[60.96581831900019,52.2995736700001],[61.00850305200018,52.31499908500008],[61.03992232300001,52.33499786400013],[60.978013957000115,52.38760447200012],[60.96137414600017,52.40197052000003],[60.955896443000114,52.41982472800008],[60.95145227100008,52.46108835900018],[60.94463098100002,52.47907175700008],[60.9364661050001,52.48858022100016],[60.923960409000216,52.493747864000156],[60.831356242000176,52.51315236400013],[60.814923137000186,52.52191152000002],[60.80996219900006,52.538422140000094],[60.81440637200014,52.58586110500009],[60.81347619600009,52.60549814900013],[60.808411906000195,52.62118194599999],[60.80314091000011,52.627744853000145],[60.79311568200009,52.62880422000016],[60.7416459560001,52.62536773700013],[60.72448938000011,52.62622039800006],[60.71167362500014,52.63224070299999],[60.706092570000095,52.64056060800006],[60.704128866000104,52.64717519200014],[60.69968469200008,52.65275624600015],[60.686662231000156,52.658053081],[60.67684370900005,52.66358245900001],[60.672606242000114,52.67216074700003],[60.672192830000114,52.68262522400009],[60.67353641700017,52.69386484800013],[60.69617069500013,52.734921774],[60.73864872200008,52.750941468000136],[60.787431275000095,52.75791778600013],[60.829082479000164,52.771637879000146],[60.84303511600015,52.784040222000144],[60.86690962799999,52.812255554],[60.88489302600013,52.82525217700014],[61.05842248500007,52.92217132600017],[60.975430135000096,52.97046295200009],[60.97460331200008,52.971238098000086],[60.975430135000096,52.971548157000186],[61.052428020000114,52.97185821600006],[61.088601522000054,52.97805938800015],[61.12229455500019,52.99247711200017],[61.122397909000114,52.99247711200017],[61.122604615000085,52.992632142000026],[61.12270796700014,52.99265798000012],[61.1557808840001,53.009685364000134],[61.190300741000065,53.01314768499999],[61.22492395100019,53.00640391100013],[61.25872033700008,52.99265798000012],[61.287349080000155,52.985164897000075],[61.31845829300019,52.982503560000154],[61.349360799000095,52.984906515000105],[61.37664595500021,52.99265798000012],[61.424291626000155,53.01735931400013],[61.448269491000154,53.021415914000116],[61.47803511500015,53.01234670000015],[61.5146220300002,52.992554626000086],[61.5742566320001,52.9558385210001],[61.60557255,52.94831960100008],[61.63647505700012,52.96010182800008],[61.65590539600012,52.9708763630001],[61.67533573400007,52.97361521400013],[61.71781376100009,52.96994618700013],[61.81982303900022,52.9782402550001],[61.8565133050001,52.97015289400009],[61.92255578600006,52.938165182000105],[61.95924605400009,52.934935405000125],[62.034848674000074,52.95271209800016],[62.07267582200014,52.96958445300005],[62.09417321800018,52.99247711200017],[62.09417321800018,52.99265798000012],[62.11365523300017,53.041879780999984],[62.116032349000214,53.06459157300016],[62.10802250100002,53.08856943799999],[62.083217814000115,53.11329661100011],[62.05066166200007,53.12476877900012],[61.83511926300011,53.15112376000017],[61.76421919800011,53.16946889200015],[61.70510135900017,53.20349782300009],[61.66427697800006,53.23889617900012],[61.64308964000011,53.24334035300005],[61.54728153500016,53.21145599400016],[61.51431197200023,53.20866546700002],[61.47803511500015,53.21512502100016],[61.3798498940001,53.26186635400016],[61.344813273000085,53.270108745000115],[61.24952193200008,53.26969533300009],[61.20290979000013,53.276439107000115],[61.16270552600012,53.299150899],[61.142758423000174,53.323025411000074],[61.13366337100009,53.348140158000106],[61.13717736800007,53.37312571299999],[61.15598758900015,53.39669016500001],[61.20094608600019,53.43622263700006],[61.20983443200012,53.44981353800012],[61.21427860500009,53.46185414700001],[61.21820601400006,53.49265330000015],[61.23525923700012,53.503040264],[61.26109745300013,53.506657614000076],[61.28765913900022,53.50319529200014],[61.30708947800022,53.49265330000015],[61.32838016700012,53.47074249300012],[61.35349491400021,53.44981353800012],[61.38160689300016,53.4361192840001],[61.41230269400008,53.43575754900011],[61.43731408700009,53.44650624700013],[61.488473755000115,53.479320780000066],[61.51472538300006,53.492498271000116],[61.55534305900009,53.50572743800002],[61.52836796100015,53.57166656500014],[61.516792440000096,53.585722555000146],[61.50304650900008,53.58897817000006],[61.39028853400012,53.58851308200012],[61.3612463790001,53.58257029200011],[61.31608117700008,53.54520823200014],[61.28073449700017,53.542417704000094],[61.14038130700012,53.56272654300001],[61.12146773300017,53.56980621400014],[61.11454309100011,53.57621409100007],[61.103380982000054,53.592492167],[61.096352987000074,53.59921010400002],[61.04664025900015,53.60846018500005],[60.9073205970001,53.61362782800013],[60.880242147000125,53.632799785000046],[60.90473677600019,53.657087708000134],[61.00757287600006,53.63574534200013],[61.042712850000186,53.65424550400017],[61.04488326000009,53.66669952400015],[61.04395308400009,53.67920522100014],[61.04477990700016,53.69140085900007],[61.05222131300016,53.70328643800009],[61.06793094900015,53.708919169000026],[61.106894979000145,53.712433167000185],[61.11567997200021,53.72364695300003],[61.12746219900012,53.74715972900013],[61.15175012200021,53.765246481000034],[61.17872522000008,53.780852763000084],[61.19908573400008,53.797130839000104],[61.20197961500016,53.819610087000015],[61.177174927000095,53.83283925400009],[61.1424483640001,53.84188263000006],[61.11495650200013,53.85232126900008],[61.09521610500016,53.87014963800014],[61.08498417200005,53.87531728100005],[61.06524377400009,53.878469543],[60.999614706000074,53.87939971900015],[60.978013957000115,53.88260365900011],[60.971399373000196,53.89299062100004],[60.969435669000084,53.90425608300011],[60.97181278500014,53.915831604000125],[60.978013957000115,53.926683655000105],[60.99610070800023,53.9414114390001],[61.017391398000115,53.94895619800015],[61.063796834000215,53.955312398999986],[61.096352987000074,53.956242574000115],[61.14523889100022,53.95014475500006],[61.151853475000024,53.9454422000001],[61.15557417800007,53.938414205000086],[61.16301558400008,53.92849233],[61.176244751000155,53.91650339800013],[61.1928845620001,53.90709828700007],[61.21076460800006,53.90766672800014],[61.22730106700012,53.92590850900008],[61.2305050050002,53.94306508400014],[61.22513065600006,53.960221660000016],[61.204770142000115,53.99257110600011],[61.20125614400015,53.99835886700008],[61.19350468000007,54.01825429300008],[61.24983199000005,54.020734762000146],[61.274843384000036,54.02853790300016],[61.2933435460001,54.04605621400013],[61.31153365000014,54.05985382100009],[61.337681925000226,54.063161112999985],[61.41767704200017,54.05597808900005],[61.43317997200008,54.0474514780001],[61.46191206900019,54.01112294600013],[61.4785518800002,54.00290639300003],[61.55275923600008,53.99251943000008],[61.5561698810001,53.96094513000009],[61.56392134600011,53.95174672500011],[61.581801392000074,53.94766428600009],[61.600508260000225,53.950248108000025],[61.61105025300011,53.95954986600013],[61.6164246010001,53.974174297],[61.619938599000214,53.99257110600011],[61.71533329200022,53.99257110600011],[61.72856245900002,53.98528473000012],[61.74210168400011,53.981564026000015],[61.75502079300022,53.98326934800017],[61.77703495300008,53.99990916000008],[61.79129764800009,54.00078765900004],[61.80638716700016,53.99753204400007],[61.82054650900014,53.99257110600011],[61.828091268000065,53.97324412100015],[61.82995161900006,53.96037668900006],[61.83615279100015,53.95112660800013],[61.85640995300016,53.94270334900015],[61.891653280000156,53.936243795],[62.0036361090001,53.93200632800012],[62.0033260500002,53.992312724000115],[62.00239587400014,53.99830719000006],[62.002602580000115,54.017375794000046],[62.41270674600011,54.02662587500005],[62.433480672000066,54.02466217100012],[62.4461413980001,54.014533590000084],[62.444022664000016,53.992312724000115],[62.443815959000084,53.992312724000115],[62.39958093300007,53.97448435500009],[62.38661014800002,53.96130686500011],[62.38996911600006,53.941566467000044],[62.408159220000094,53.92471995000007],[62.45668339000005,53.909217021000146],[62.47771569800008,53.89516103200013],[62.48737919200018,53.885962626000136],[62.498903036000144,53.87779775000003],[62.51161543800018,53.87263010700012],[62.5252580160002,53.87185496100001],[62.54122603300007,53.87666086800003],[62.5451017660001,53.8836888630001],[62.53662683100018,53.914953105],[62.53176924700008,53.92249786400008],[62.53176924700008,53.930352681],[62.54365482600011,53.94301340700004],[62.58654626400008,53.969833476000034],[62.569389689000076,53.9878168740001],[62.56318851700021,53.99251943000008],[62.55057946700017,54.026832581000015],[62.58096521000007,54.05360097300009],[62.629127645,54.071170960000146],[62.67026208500008,54.077733867000134],[62.757181844000144,54.08109283500015],[62.812062215000225,54.09499379500012],[62.831337525000066,54.09272003200011],[62.87521081600019,54.07954254200003],[62.902392619000096,54.07845733700004],[62.98548832200006,54.09287506200014],[63.0846553960001,54.085640361000095],[63.11219893400019,54.09370188400008],[63.127443481000135,54.11044504800012],[63.12532474800016,54.124862773000146],[63.11602299,54.13969390900017],[63.11002852300007,54.15798736600014],[63.12377445500013,54.17411041300012],[63.15674401900018,54.18005320300012],[63.21627526900008,54.17870961500007],[63.3285919570001,54.16311007500015],[63.33161706500019,54.16268992100011],[63.36830733300004,54.16284495100016],[63.396781047000076,54.17059641500008],[63.4496977140001,54.19612457300012],[63.47755131000022,54.20397939100006],[63.54493737800008,54.20645986000004],[63.70864831600013,54.250436504000064],[63.743994995000065,54.24873118100002],[63.77350223800007,54.239687806000134],[63.856029500000055,54.20186065700007],[63.883624715000074,54.19741648400016],[63.89747399900014,54.19416086900016],[63.90801599100021,54.207493388],[63.94036543800009,54.21529653000012],[63.97664229300008,54.21886220300008],[64.0078548590002,54.22868072500016],[64.0254248460001,54.255242411000076],[63.99369551600009,54.28040883400011],[63.97896773300007,54.29648020500018],[63.98036299600008,54.30371490600014],[63.98821781500013,54.30784902000006],[63.99596927900021,54.31549713100004],[64.004495891,54.319734599000085],[64.02325443600014,54.30759063700001],[64.03514001500017,54.30397328700012],[64.04805912300017,54.302681377000155],[64.05953129100007,54.30371490600014],[64.06800622600011,54.30769399000003],[64.0843359780001,54.32019968700003],[64.09374108900008,54.3241787730001],[64.10810713700008,54.32474721400014],[64.15203210500013,54.317357483000066],[64.17663008600019,54.3205097460001],[64.22530928500012,54.33461741100013],[64.25585005700012,54.33864817400003],[64.27621057100006,54.344384258],[64.28230839000011,54.3480532840001],[64.29403894000009,54.353375956000136],[64.30856001800007,54.35182566400011],[64.3338297930002,54.344642640000146],[64.43253177900013,54.35151560500013],[64.44457238800007,54.35466786799999],[64.454287557,54.36169586200002],[64.46178063900018,54.36877553300012],[64.4670516360002,54.37197947200009],[64.47898889200016,54.370894267],[64.50007287600008,54.366191712000116],[64.51139001500016,54.36510650700002],[64.5365047600001,54.36862050399999],[64.5785177010001,54.38557037300007],[64.59148848500008,54.37854237900016],[64.65267338100014,54.34712310900012],[64.68429935700011,54.33611602800015],[64.72016280100016,54.333842265000115],[64.78455163600007,54.353220928],[64.84723514900011,54.38391672800013],[64.91064213100006,54.402726950000144],[64.97771813900007,54.386603902000054],[65.05709314000009,54.323868713000124],[65.0714591880002,54.31487701500008],[65.0854118250002,54.308572490000145],[65.10019128400015,54.305471904000015],[65.11745121300012,54.30640208000007],[65.12447920700006,54.308934224000055],[65.13646814000018,54.316375631000184],[65.14370284000003,54.317615866000104],[65.17377852400014,54.310174459],[65.18421716400005,54.31043284100014],[65.21294925900017,54.34304067000012],[65.18132328300007,54.449132385000055],[65.20225223800017,54.47254180900001],[65.1994617110001,54.487786357000154],[65.19806644700012,54.492282206000155],[65.19816980000016,54.51615671800006],[65.21429284700011,54.527887269000146],[65.34157190000022,54.56147694900006],[65.37035567200022,54.56245880200005],[65.42750980600007,54.5527953090001],[65.4490072020001,54.556619364000156],[65.45619022700006,54.57785837800013],[65.4448730880001,54.6141869100001],[65.44978234800013,54.62746775400011],[65.47737756300009,54.63268707300013],[65.57458093200015,54.625452372000055],[65.71297041800014,54.59718536400008],[65.74397627800008,54.600854391000084],[65.77033125900013,54.617390849000074],[65.7983398850001,54.648138327000126],[65.8269686280001,54.672684632000184],[65.8594214280001,54.685758769000145],[65.93280196100008,54.70255360900002],[65.95187056500006,54.69366526300008],[65.96065555800013,54.62798451800013],[65.9774503990001,54.61170644200003],[66.09777630500011,54.63715821400014],[66.44651737500013,54.710925191000065],[66.50992435700007,54.71671295200015],[66.63766849800018,54.71366404200005],[66.7003003340001,54.719245097000126],[66.72241784700012,54.72720326800011],[66.76045170100022,54.750922750000036],[66.78179406800021,54.758209127000114],[66.97733768700007,54.76368682900012],[67.00818851700014,54.76792429600006],[67.0669962970002,54.78750966400018],[67.09851892100019,54.79200551400011],[67.17396651200008,54.79138539700013],[67.21334395300019,54.7971731570001],[67.23954390500009,54.81293446900009],[67.26005944800008,54.836912334000104],[67.28393396000016,54.85329376300017],[67.31132247000019,54.85990834600006],[67.37793339000021,54.849056295000125],[67.44299401900017,54.85701446600008],[67.6227246500001,54.85386220300002],[67.69848230000011,54.86791819200015],[67.75791019700014,54.897838847000074],[67.79754602000011,54.93716461200016],[67.81733809400012,54.952150777000114],[67.84679366100008,54.963933004000026],[67.88224369300022,54.9704442350001],[67.91314620000011,54.96915232400015],[68.00967777500014,54.94300404900004],[68.16605065900015,54.956129863],[68.1836206460001,54.967136943000085],[68.1909070240001,54.992561748000114],[68.213076212,54.998452861000104],[68.22180953000012,55.007754618000135],[68.22599532100011,55.02088043200011],[68.23478031400012,55.03850209500008],[68.25374556500017,55.045891826000094],[68.28159916200016,55.04713206000004],[68.30423343900011,55.05260976200013],[68.30816084800009,55.072815247],[68.22811405400007,55.10159901900012],[68.19054528800021,55.125370179000086],[68.20697839300007,55.15415395100011],[68.18475752800012,55.16727976500008],[68.17710941600015,55.17053538000006],[68.24087813300017,55.191154277000166],[68.26237552900014,55.194048157000154],[68.2770516350001,55.190844218000095],[68.28986739100017,55.18526316300016],[68.3057837320001,55.18138743100012],[68.32573083500013,55.18195587200015],[68.37678715000018,55.19508168500012],[68.40117842600014,55.19471995100004],[68.47734948800021,55.182834372000016],[68.54411543800009,55.196890361000115],[68.5671631270002,55.197562154000096],[68.5936214600001,55.19358307000011],[68.60530033400019,55.19559845000007],[68.61584232600015,55.20546864800015],[68.61821944100019,55.21544220000005],[68.61284509300006,55.23471751000001],[68.61367191600007,55.24308909200009],[68.62989831500008,55.254871318000156],[68.6764071050002,55.27321645100007],[68.68369348100012,55.28861602800005],[68.68085127700012,55.309803365],[68.68234989400011,55.32716664700003],[68.6889128010001,55.3432896930001],[68.70059167500008,55.36049794600008],[68.72250248200012,55.352798157000095],[68.73423368500019,55.3517140660001],[68.82259973100022,55.34354807600006],[68.84600915500019,55.33677846300012],[68.86678308200013,55.3256680300001],[68.9031632900002,55.29083811500006],[68.92280033400007,55.276368714000014],[68.94564131700017,55.27037424700008],[68.97060103400023,55.27864247700013],[68.98088464400016,55.291458232000124],[68.9832617590001,55.308563131000156],[68.97726729300004,55.34670033800005],[68.9523592530002,55.355898743000026],[68.93230879700016,55.36080800400008],[68.91783939600012,55.3709365850001],[68.90657393400014,55.40504303000007],[68.90243981900014,55.412484436],[68.90243981900014,55.41951243100011],[68.91112146000009,55.42736724800015],[68.92729618300008,55.43372345000007],[68.94316084800019,55.43455027300008],[69.12258142100015,55.39786000600013],[69.14779952000018,55.378222962000095],[69.16454268400011,55.34742380800012]],[[62.81252730300016,46.061427307000045],[62.803638957000054,46.02049957300012],[62.800641723000105,45.978331604000076],[62.803638957000054,45.93616363500003],[62.81252730300016,45.89518422499999],[62.82689335100016,45.85570343000016],[62.84647871900008,45.81777293000006],[62.87102502500014,45.78170278000006],[62.900273885000196,45.74769968700012],[62.9338635660001,45.715944519000075],[62.97148400900008,45.68664398300002],[63.012928507000105,45.6600047810001],[63.0578353270001,45.636285299000136],[63.1059460860001,45.61561472600012],[63.15689904800009,45.598251445000116],[63.21048750800016,45.58437632300003],[63.266349732000066,45.57422190400008],[63.32427901200012,45.56796905500009],[63.38391361500012,45.56582448300009],[63.44354821800018,45.56796905500009],[63.50147749800007,45.57422190400008],[63.55739139800002,45.58437632300003],[63.610928182000094,45.598251445000116],[63.66188114500014,45.61561472600012],[63.7099402260001,45.636285299000136],[63.75489872300008,45.6600047810001],[63.79634322100017,45.68664398300002],[63.833963664000095,45.715944519000075],[63.867553345,45.74769968700012],[63.896698852000135,45.78170278000006],[63.921296835000106,45.81777293000006],[63.94093387900014,45.85570343000016],[63.95529992700008,45.89518422499999],[63.96408492000014,45.93616363500003],[63.96713383000006,45.978331604000076],[63.96408492000014,46.02049957300012],[63.95529992700008,46.061427307000045],[63.94093387900014,46.10098561600002],[63.921296835000106,46.13889028000001],[63.896698852000135,46.17496042900011],[63.867553345,46.20896352200004],[63.833963664000095,46.240718689000076],[63.79634322100017,46.270019227000134],[63.75489872300008,46.29665842700017],[63.7099402260001,46.320377909000015],[63.66188114500014,46.34104848300002],[63.610928182000094,46.358411764000046],[63.55739139800002,46.372261047],[63.50147749900005,46.382441305000086],[63.44354821800018,46.38869415300017],[63.38391361500012,46.39083872500005],[63.32427901200012,46.38869415300017],[63.266349732000066,46.382441305000086],[63.21048750800016,46.372261047],[63.15689904800009,46.358411764000046],[63.1059460860001,46.34104848300002],[63.0578353270001,46.320377909000015],[63.012928507000105,46.29665842700017],[62.97148400900008,46.270019227000134],[62.9338635660001,46.240718689000076],[62.900273885000196,46.20896352200004],[62.87102502500014,46.17496042900011],[62.84647871900008,46.13889028000001],[62.82689335100016,46.10098561600002],[62.81252730300016,46.061427307000045]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Kyrgyzstan","sov_a3":"KGZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kyrgyzstan","adm0_a3":"KGZ","geou_dif":0,"geounit":"Kyrgyzstan","gu_a3":"KGZ","su_dif":0,"subunit":"Kyrgyzstan","su_a3":"KGZ","brk_diff":0,"name":"Kyrgyzstan","name_long":"Kyrgyzstan","brk_a3":"KGZ","brk_name":"Kyrgyzstan","brk_group":null,"abbrev":"Kgz.","postal":"KG","formal_en":"Kyrgyz Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kyrgyz Republic","name_alt":null,"mapcolor7":5,"mapcolor8":7,"mapcolor9":7,"mapcolor13":6,"pop_est":5431747,"gdp_md_est":11610,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"KG","iso_a2":"KG","iso_a3":"KGZ","iso_n3":"417","un_a3":"417","wb_a2":"KG","wb_a3":"KGZ","woe_id":23424864,"woe_id_eh":23424864,"woe_note":"Exact WOE match as country","adm0_a3_is":"KGZ","adm0_a3_us":"KGZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KGZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[75.20463911900009,42.84518951500013],[75.27119836400004,42.84575795500007],[75.49661096200008,42.82392466300004],[75.53598840400008,42.82702524900009],[75.55593550600014,42.82521657400011],[75.62042769400006,42.80529530900009],[75.64616255700014,42.8060962940001],[75.67530806500014,42.81537221300002],[75.70383345500011,42.83048757000003],[75.72760461500008,42.84867767400007],[75.73824996000008,42.86157094400008],[75.77059940600003,42.92564971900009],[75.7820715740001,42.93332367000008],[75.79716109300006,42.93619171200007],[75.80705856000007,42.9367709950001],[75.85896610600012,42.93980906200005],[75.89803348800007,42.93570078500002],[75.97658166500014,42.918725077],[75.99911259000002,42.91763987300001],[76.06453495300013,42.93396962600005],[76.09057987500012,42.934279684000046],[76.16375370300005,42.92115387000007],[76.25449751800011,42.92115387000007],[76.34048710100012,42.901671855000075],[76.35113244700011,42.9028862510001],[76.37097619600007,42.90960418700013],[76.38296512800014,42.91006927500007],[76.39330041500006,42.90526336700014],[76.40446252400004,42.889243673000095],[76.41407434100012,42.88549713100007],[76.43205773900007,42.88957957000008],[76.4619267170001,42.910999451000094],[76.48053023300014,42.91696807900013],[76.50688521300009,42.914487610000066],[76.55876835100008,42.898209534000046],[76.58501997900004,42.8947988890001],[76.60589725700008,42.8984937540001],[76.64434452300009,42.91112864200005],[76.68878625500014,42.910327658000114],[76.70790653500012,42.91366078700011],[76.74625044800011,42.92887949700005],[76.75038456200008,42.93257436200008],[76.75162479700009,42.937096049000104],[76.75389856000002,42.940765076000105],[76.76133996600004,42.94205698700006],[76.77953007000008,42.93929229700009],[76.78521447800011,42.939654033000096],[76.79296594200012,42.94306467700002],[76.81415328000007,42.961487325000114],[76.83348026600004,42.97174509700011],[76.85342736900009,42.97412221300007],[76.89766239400006,42.97453562500007],[76.93734989400008,42.98603363100008],[76.95688358600006,42.98851409900007],[76.97641727700011,42.98220957500007],[77.08989872300002,42.96815358500004],[77.12400516800011,42.958903504000034],[77.13506392400006,42.95174631800008],[77.16369266800007,42.92198069300007],[77.17867883300005,42.91319569900011],[77.19511193900013,42.91006927500007],[77.21189028200013,42.909943689000045],[77.2296317950001,42.90981089300007],[77.32812707500005,42.897563579000064],[77.36088993300012,42.90453989700006],[77.40326460700004,42.91975860600007],[77.41856083200014,42.92223907500005],[77.43396040900012,42.92141225200004],[77.46176232900007,42.91438425800004],[77.50155318200007,42.914539286000064],[77.5209835210001,42.90691701300008],[77.53845015500008,42.89627166800011],[77.55777714100003,42.88813263000009],[77.57441695100005,42.88784841000012],[77.62692020700013,42.9065552780001],[77.64779748500013,42.90950083400008],[77.71383996600014,42.90758880700008],[77.78122603400004,42.89562571300013],[77.78753055800007,42.88970876100012],[77.79166467300007,42.883042501],[77.79817590300007,42.87751312300011],[77.80995813000003,42.87128611300011],[77.83558964000014,42.879838562000145],[77.85222945200013,42.887951763000046],[77.86122115100011,42.89081980400002],[77.88385542800012,42.893222758000064],[77.90700647000011,42.89128489200004],[77.9293306890001,42.88500620600004],[77.98617476400005,42.86020151800011],[78.0306164960001,42.854672140000105],[78.13789677000005,42.86198435500009],[78.18357873600007,42.860149842000084],[78.22977746600003,42.86500742700011],[78.2491044520001,42.86239776700009],[78.29013553900012,42.85144236300002],[78.31121952300003,42.85051218700007],[78.32837609900012,42.85529225700006],[78.36465295400006,42.87252634700005],[78.38553023300005,42.87823659300011],[78.4295585540001,42.88066538500007],[78.49611779800011,42.87560109500009],[78.59430301900004,42.850227966000084],[78.63543745900006,42.83247711200008],[78.66995731600014,42.81116058400008],[78.68711389200007,42.80459767700008],[78.80793339000013,42.79558014000014],[78.88813521300011,42.77121470100013],[78.95428104700011,42.768424174000074],[78.99293501800007,42.757132874],[79.03086551900009,42.75615102200004],[79.10879357900006,42.785348206000066],[79.1482743740001,42.790980937000086],[79.17338911900009,42.785632426000035],[79.18083052600014,42.775529684000105],[79.1751461180001,42.73703074200003],[79.17607629400004,42.71393137600006],[79.18186405500012,42.69359670000003],[79.1921993410001,42.674838156000135],[79.20635868400007,42.656467183000046],[79.24211877400006,42.62977630600008],[79.3212870690001,42.6021810920001],[79.35301639800014,42.57729889000003],[79.39838830600013,42.4969420380001],[79.42567346200012,42.46960520400009],[79.47641971900003,42.45397308400004],[79.57191776500008,42.44952891100012],[79.65253300000012,42.461052755000054],[79.69645796700013,42.459838359000116],[79.91794315600009,42.424440003000115],[79.96011112500008,42.40351104800001],[79.97396040800002,42.391470439000045],[80.0120976160001,42.34950917600014],[80.07700321500005,42.30576507600006],[80.11007613100014,42.27333811500006],[80.13653446400008,42.238869935000075],[80.16661014800007,42.20871673600009],[80.21032841000005,42.189518941000074],[80.21652958200012,42.17440358500008],[80.21983687300013,42.14187327100012],[80.22459110500012,42.1255693570001],[80.23513309800012,42.11094492600003],[80.24743208800002,42.09841339100012],[80.2565271410001,42.084357401],[80.2575606690001,42.06526296000001],[80.23120568900003,42.03368866000005],[80.18190637200013,42.020976258000076],[79.93086226400004,42.02327585900011],[79.87949589000003,42.013198955000064],[79.84290897700004,42.00183013900008],[79.82678592900004,41.99224416100009],[79.81283329300004,41.97761973100009],[79.80384159300012,41.95999806800012],[79.79257613100002,41.922816874],[79.78327437300003,41.905091858000105],[79.74751428300009,41.879744568],[79.70296919800012,41.87493866000011],[79.65573693800008,41.87584299800005],[79.61098514800011,41.86762644500001],[79.5546578370001,41.83760243700007],[79.4898555910001,41.819257305000065],[79.41099735600005,41.778587952000116],[79.39084354700007,41.772696838000115],[79.36738244600014,41.77238678000003],[79.30413049300012,41.78755381300007],[79.28232303900012,41.783497213000146],[79.26485640400006,41.77450551300012],[79.21752079300012,41.741225892000074],[79.19592004400005,41.7295211790001],[79.17452600100012,41.7226223750001],[79.12791385900005,41.71430247000006],[79.08874312300003,41.70254608200005],[78.97619185400004,41.64180043500005],[78.91583378100012,41.6331704720001],[78.89743697200004,41.62627166800013],[78.80731327300003,41.578445130000034],[78.67212772700003,41.53844757100006],[78.65827844200004,41.53245310500006],[78.64504927600007,41.52371978800007],[78.6374011640001,41.51286773700011],[78.62913293500003,41.48795969600004],[78.61921106000005,41.47808949900007],[78.58396773300007,41.465997213000094],[78.51038049400006,41.45442169200004],[78.41756962100004,41.4004714970001],[78.3776754160001,41.38662221300012],[78.35989872300007,41.377527161000046],[78.3434656170001,41.362024231000134],[78.3393315030001,41.34404083200005],[78.35690148900004,41.305541891000104],[78.35969201700003,41.28745513900009],[78.34946008300005,41.27040191700004],[78.33147668500004,41.25872304300006],[78.29158247900011,41.2407913210001],[78.27535608000011,41.22885406500006],[78.25034468600012,41.20053538000007],[78.23133511000003,41.172855896000016],[78.20445601400013,41.13371775300001],[78.19050337700014,41.11774973600006],[78.17603397600004,41.10550242200014],[78.07495487500006,41.0395116170001],[78.05717818200003,41.03434397400011],[78.03650761000011,41.03610097300009],[77.99764693200007,41.04979522700009],[77.86669885300006,41.064057922000075],[77.83104211400007,41.06297271800008],[77.79755578600009,41.05470448800014],[77.66557417800004,41.001271058000015],[77.6502779540001,40.9971369430001],[77.63177779200004,40.995793355000046],[77.58072147700005,40.99770538300007],[77.5035168870001,40.981065572000034],[77.4748881430001,40.982047425000104],[77.44522587100005,40.99367462200007],[77.38879520600011,41.011658021000045],[77.33298466000014,41.02064971900009],[77.30115197800012,41.019306132000025],[77.24317102100014,41.00566355400011],[77.11883752500005,41.011658021000045],[77.08855513500004,41.0195645150001],[77.03501835100008,41.04033844000014],[77.00773319500007,41.044214173000086],[76.90014286300004,41.025765686000085],[76.86097212800013,41.013208313000064],[76.83492720500004,40.99351959200001],[76.82087121600011,40.97780995700006],[76.7839742430001,40.95713938400012],[76.76681766800004,40.94468536400004],[76.75741255700007,40.92577179000011],[76.76092655500014,40.90659983300009],[76.76836796100014,40.88701446500007],[76.77084843000011,40.867119039000066],[76.76247684700013,40.847016907000096],[76.7468705650001,40.8344595340001],[76.70728641800014,40.81761301700001],[76.67421350100005,40.79544382800009],[76.6478585210001,40.764851380000096],[76.6308052980001,40.72888458300011],[76.62419071400006,40.627547099000076],[76.62078007100013,40.61132069900006],[76.60941125500005,40.5971096800001],[76.55639123500004,40.56569041000006],[76.53117313600012,40.53499460900014],[76.49892704300004,40.464611308000116],[76.47649947100012,40.43613759400006],[76.44911096200013,40.41551869700007],[76.36198449700004,40.37190378800011],[76.33015181500008,40.348080953000135],[76.31351200400007,40.34332672100006],[76.29935266100011,40.35567738900011],[76.28333296800014,40.41727569600005],[76.27341109200006,40.43412221300011],[76.24416223100013,40.44120188400004],[76.21543013500012,40.41655222600005],[76.18504439300006,40.38420277900005],[76.1513513590001,40.368131409000085],[76.13254113800008,40.37154205300001],[76.09523075400006,40.38735504200011],[76.07611047400007,40.39195424400006],[76.05161584500013,40.39019724500008],[75.96242232300006,40.357331034000055],[75.94929650900008,40.34306833900007],[75.93803104600005,40.326221822],[75.92149458900013,40.30911692400005],[75.90185754400011,40.29888499000009],[75.88046350100011,40.29526763900009],[75.85855269300004,40.29635284500009],[75.79375044800014,40.30891021800011],[75.77204634600014,40.31015045200013],[75.75054895000011,40.30834177700004],[75.70445357300007,40.29314890600011],[75.68181929600013,40.29170196600011],[75.66486942600011,40.30570627900004],[75.65629113800009,40.32306956000005],[75.64016809100013,40.367304586000074],[75.63830774000013,40.38611480800009],[75.64636926200012,40.40533844],[75.65959842900008,40.419084371000054],[75.66931359800003,40.43236521400004],[75.66693648300009,40.45024526000009],[75.65722131300004,40.46109731000004],[75.62900598200008,40.481302795000026],[75.61794722500008,40.49396352100006],[75.61081587700005,40.512877096000125],[75.60564823400011,40.569411113000086],[75.58766483600004,40.61194081700003],[75.5598629150001,40.632869772000014],[75.5237927660001,40.6331798300001],[75.48183150200009,40.61411122700011],[75.2632401940001,40.48016591500004],[75.25331831900006,40.4759801240001],[75.2415360930001,40.47406809500006],[75.22923710200007,40.470347392000065],[75.22396610500004,40.46244089800012],[75.22014204900006,40.452984111000056],[75.21249393800008,40.444715882000104],[75.19389042200004,40.44125356100005],[75.17528690600011,40.448126526000124],[75.15658003700013,40.45815175400014],[75.13807987500007,40.46388783800012],[75.11317183400013,40.460787252000074],[75.06438928300008,40.443837382000055],[75.03906783100007,40.44109853100011],[75.00237756300004,40.44729970300011],[74.96610070800006,40.459288635000064],[74.87918094900004,40.505073954000096],[74.85644331900004,40.513187154],[74.83535933500013,40.511636861000085],[74.83231214200009,40.50811611800009],[74.82006311000009,40.49396352100006],[74.81603234900007,40.48367991100008],[74.81510217300011,40.480114238000105],[74.80704064900004,40.46176910400004],[74.79463830600008,40.44073679600012],[74.78740360500012,40.420738017000076],[74.79463830600008,40.40554514600006],[74.84166385900004,40.372058818000056],[74.85385949700009,40.358829651000065],[74.8621277260001,40.326170146000095],[74.83091516100012,40.31991729800009],[74.74668257600011,40.33650543200011],[74.72466841600004,40.33753896100009],[74.70575484200003,40.33128611300008],[74.65438846900008,40.29154693600009],[74.63764530500004,40.28198679700009],[74.59868127500005,40.266173808000076],[74.5654016520001,40.24695017600007],[74.47662154100004,40.17243276000002],[74.36985803300007,40.105821839000015],[74.33378788300007,40.09372955300003],[74.30288537600006,40.09006052700005],[74.27229292800011,40.093832906000074],[74.23787642400009,40.1039098110001],[74.20314986200007,40.109852600000124],[74.16759647600009,40.10639027900007],[74.13286991400008,40.095331523000084],[74.10124393700005,40.07884674100009],[74.06951460800013,40.06778798500008],[74.00398889100006,40.06081166600009],[73.97670373600005,40.0436034140001],[73.96636844900013,40.03326812800012],[73.95789351400003,40.02143422500009],[73.95210575300007,40.008256734000014],[73.94972863700008,39.99368398100006],[73.94404423100008,39.97006785100004],[73.9273010660001,39.95332468700008],[73.90756066900013,39.937873434000096],[73.89319462100013,39.918133036000114],[73.88544315600011,39.87653350800011],[73.88068892400014,39.8650096640001],[73.87293746000005,39.856844788000075],[73.84410201000009,39.83808624300008],[73.83200972500003,39.82372019500008],[73.82301802600006,39.80568512000008],[73.81857385300009,39.78604807600004],[73.81981408700011,39.76672109000009],[73.82952925700005,39.74698069200011],[73.84306848200004,39.74036611000011],[73.85991499900013,39.73716217000006],[73.87934533700007,39.72791208900014],[73.89350468000004,39.71039377900007],[73.89960249900008,39.689464823000094],[73.90425337800013,39.64647003200011],[73.9267843020001,39.59288157200007],[73.92161665900005,39.58213287400013],[73.89929244000012,39.57153920600007],[73.88306604000007,39.56120391900003],[73.87045699100008,39.54678619400002],[73.85919152800011,39.52425527000011],[73.84802941900006,39.48973541300012],[73.83831425000005,39.475679424000106],[73.82074426200006,39.468186341000056],[73.63264204900014,39.44834259000006],[73.60432336400004,39.45960805300004],[73.51223596200003,39.46741119400004],[73.4768892820001,39.46477569600006],[73.36764530500005,39.443795065000046],[73.34315067500012,39.43066925100007],[73.33550256400012,39.41516632100007],[73.33333215300011,39.40111033100004],[73.32640751100013,39.39087839800006],[73.26935673000014,39.3825584920001],[73.16786421700004,39.35537668900011],[73.13603153500003,39.35346466100009],[73.10099491400013,39.361164450000096],[73.08342492700012,39.367830710000106],[73.07112593600009,39.370724589000076],[73.05841353300013,39.368812561000084],[73.00932092300008,39.34860707700008],[72.99433475800002,39.34783192900008],[72.97676477100003,39.35222442700007],[72.91433964100008,39.362714742],[72.89366906800007,39.36390330000003],[72.85046757000003,39.35672027600009],[72.83527469900008,39.35620351100005],[72.6504797770001,39.39377227800014],[72.63373661300005,39.394495748000054],[72.61637333200014,39.39041331000004],[72.60614139800003,39.38348866800007],[72.58702111800005,39.3648851530001],[72.57575565600007,39.35930409800008],[72.55942590300003,39.359562480000044],[72.53410445100008,39.372326559000044],[72.51901493300005,39.375685527000144],[72.50805953000008,39.371964824000116],[72.47674361200006,39.346126608000105],[72.46041385900013,39.34411122600005],[72.44356734200005,39.344783020000136],[72.41070113100005,39.35134592700012],[72.39323449800008,39.35082916300007],[72.35592411300007,39.33610137900007],[72.33411665900013,39.333827616000065],[72.31633996600009,39.328815003000095],[72.3042476810001,39.313570456000065],[72.28140669800011,39.25972361300003],[72.24027225800012,39.189908753000054],[72.22890344200005,39.18923695900008],[72.22866824500005,39.189502144000066],[72.21856815600012,39.200889994000136],[72.20916304500008,39.2172972620001],[72.20647587100007,39.22688324000009],[72.20637251800014,39.234608867000105],[72.20327193200006,39.24081003800009],[72.18239465400012,39.24933665000012],[72.16709842900013,39.25874176100007],[72.15862349500014,39.26261749300002],[72.11552535000003,39.26814687100011],[72.0947514240001,39.275071513000086],[72.08575972500006,39.290109355000084],[72.0841060790001,39.31124501600004],[72.07811161300009,39.33661814400002],[72.06694950400004,39.35847727500007],[72.0497929280001,39.36886423700008],[72.03149947200012,39.36669382800008],[71.99646285000011,39.351862692000054],[71.95915246600003,39.34586822600004],[71.94230594900006,39.339046936000074],[71.84350061100014,39.2850450650001],[71.80701704900014,39.2728494270001],[71.77043013500008,39.26954213500011],[71.75120650200006,39.274244690000074],[71.73291304500007,39.28509674100013],[71.71834029200011,39.30106475800005],[71.71089888500012,39.320960185000075],[71.71296594200004,39.34152740500005],[71.72319787600014,39.353981425000136],[71.73663374800009,39.36457509400011],[71.74810591700003,39.3795612590001],[71.75182662000003,39.39966339100005],[71.74924279800013,39.425501607000086],[71.74025109900009,39.44834259000006],[71.72443811100008,39.459401348000085],[71.70459436100009,39.45898793600008],[71.60279178900004,39.442348124000056],[71.55431929500014,39.44415679900004],[71.51287479700011,39.458832907000044],[71.49210087100005,39.4936628210001],[71.50057580600014,39.509217428000106],[71.52600061000004,39.538156230000084],[71.53137496000011,39.55309071900004],[71.52538049300011,39.569162090000106],[71.51091109200007,39.58414825500009],[71.50965448300008,39.584998100000064],[71.4930310470001,39.59624054000005],[71.45954471800012,39.61210520500006],[71.44125126100005,39.61065826400008],[71.40673140400014,39.598152568000074],[71.37830936700004,39.59417348200009],[71.36854252100011,39.59148630800007],[71.3616178800001,39.5875588990001],[71.34787194800009,39.576241761000034],[71.34058557200005,39.57169423400009],[71.30591068500007,39.55717315700005],[71.29195804900007,39.548956604000125],[71.26007369000013,39.52063792000012],[71.2492733150001,39.514385071000014],[71.23692264900012,39.514488424000064],[71.17997521900014,39.523015036000054],[71.13744551600007,39.52115468400007],[71.09589766400012,39.51236969000007],[71.06292810100013,39.49562652600011],[71.04230920400005,39.46787628200008],[71.02758142100004,39.43521677600012],[71.00928796400007,39.40762156200012],[70.97714522300004,39.394909160000054],[70.94980839100009,39.40074859600014],[70.9251587330001,39.412944234000065],[70.90335127800004,39.42085072900011],[70.88448938000005,39.41387441000012],[70.87224206600013,39.40297068300006],[70.86418054200004,39.4005935670001],[70.85529219600011,39.4017304490001],[70.8400993250001,39.40142039000003],[70.82805871600004,39.398578187000055],[70.79762129700003,39.38534902000006],[70.77012943500011,39.38209340400007],[70.73974369300004,39.3862275190001],[70.71328536000004,39.39842315700011],[70.6980924880001,39.418990377000114],[70.69860925300009,39.431392721000066],[70.70305342600005,39.44472524000008],[70.7054305420001,39.45852284800014],[70.69974613500005,39.47216542600006],[70.69013431800005,39.47919342000006],[70.66672489500007,39.486893209000044],[70.65597619700009,39.4936628210001],[70.65597619700009,39.49371449800012],[70.65592452000003,39.49386952800006],[70.65559843200009,39.494664473000114],[70.63597741700005,39.542497050000065],[70.6221281330001,39.56352935800007],[70.59784021000007,39.57779205300005],[70.58027022300011,39.57954905300002],[70.54357995600003,39.57427805600008],[70.52611332200007,39.57562164300006],[70.51350427200009,39.58151275600005],[70.49097334900006,39.596860657000036],[70.47722741700011,39.601201477000096],[70.45996748900012,39.59954783200007],[70.42761804200012,39.590091044000104],[70.41108158400004,39.587455547000076],[70.40146976700004,39.58476837100005],[70.39537194800005,39.57949737600011],[70.39041101100014,39.57401967400002],[70.38431319200004,39.57086741100007],[70.37428796400013,39.57102244100011],[70.35346236200007,39.57593170200005],[70.34317875200009,39.576861877000084],[70.33025964300009,39.57308949800009],[70.24106612100013,39.52239491800009],[70.22328942900009,39.519087627],[70.2060295000001,39.52410024000005],[70.20437585500008,39.538156230000084],[70.21502120000014,39.57407135000005],[70.21481449400011,39.59112457300009],[70.2102669680001,39.60972808900004],[70.20065515200014,39.619494934000066],[70.18520389800005,39.61034820600008],[70.15735030100006,39.56389109300008],[70.14897871900013,39.55427927700006],[70.13244226100011,39.55004181000001],[70.11626753700011,39.554641012000076],[70.08272953300013,39.56978220600007],[70.06226566600009,39.57345123400006],[70.0403548590001,39.57360626200011],[70.01968428600009,39.568593649000064],[70.00273441600007,39.556863098000065],[69.98712813400005,39.53960317000008],[69.97875655100006,39.534435527000085],[69.94862919100007,39.54508087200006],[69.90775313300007,39.5484915160001],[69.83044519100008,39.53624420200006],[69.79158451400014,39.54539093100004],[69.74982995600004,39.563839417000054],[69.71034916200006,39.57407135000005],[69.66942142700003,39.57779205300005],[69.58229496300004,39.573554586000085],[69.56493168200012,39.56812856100004],[69.53144535400014,39.545649313000126],[69.51439213100008,39.53758778900004],[69.49609867300012,39.53257517500006],[69.4772884520001,39.53040476500007],[69.45527429200013,39.53045644200008],[69.41217614800013,39.525030416000014],[69.39145389800007,39.53050811800011],[69.36721765200008,39.54993845700008],[69.36163659700009,39.552884014000085],[69.35202478000008,39.549628398000095],[69.34840743000012,39.543168843000046],[69.34592696100003,39.53536570300011],[69.33972579000005,39.52807932600004],[69.30034834800006,39.51562530500007],[69.2861890050001,39.539706523000085],[69.29114994400004,39.65887237600009],[69.28753259300002,39.677785950000015],[69.28009118600005,39.69427073200009],[69.26593184500007,39.707758280000064],[69.24836185700013,39.71938547800002],[69.23332401500011,39.732666321000124],[69.22629602000012,39.75101145500011],[69.22955163500012,39.790543925000065],[69.24071374600004,39.8289395140001],[69.28644738800006,39.9357547000001],[69.30567102100008,39.968620911000045],[69.31006351700006,39.97864613900006],[69.31032190000013,39.98479563500004],[69.31399092600003,39.986914368000015],[69.32784021000009,39.98474395800011],[69.35729577600011,39.95947418300005],[69.40535485800007,39.89611887600006],[69.50157637500013,39.922473857000114],[69.50043949400009,39.935703024000105],[69.4772884520001,39.968155823000096],[69.47811527600004,39.97502878800009],[69.4772884520001,39.98159169500007],[69.47511804200013,39.987741191000055],[69.47119063300005,39.99368398100006],[69.46312911000007,40.02541331000006],[69.46964034100012,40.05099314400013],[69.48571171000009,40.0737307740001],[69.50633060700011,40.09693349300011],[69.5092244870001,40.10344472300008],[69.51346195500014,40.12070465100007],[69.51800948100009,40.125097148000066],[69.52607100400007,40.12318511900014],[69.53661299600003,40.10788889600008],[69.54302087400009,40.10308298700008],[69.55883386200009,40.101739400000014],[69.57547367300009,40.10359975200004],[69.96955814600005,40.21160349500007],[70.00459476700006,40.20876129100009],[70.1471700440001,40.13698272700009],[70.16882246900013,40.131660055000054],[70.21853519700011,40.13414052400012],[70.24153120900007,40.132745260000036],[70.26349369300004,40.124270325000026],[70.2778080650001,40.1120746870001],[70.29026208500011,40.098173727000045],[70.30628177900006,40.0847895310001],[70.32426517700003,40.07750315400003],[70.35950850500012,40.07404083300008],[70.39764571100011,40.06122507800009],[70.47722741700011,40.052026673000114],[70.50213545800005,40.045980530000065],[70.52549320500003,40.033681539000014],[70.53562178600009,40.015956523000106],[70.52094567900008,39.99373565700006],[70.50502933800004,39.98510569300004],[70.48849287900009,39.97854278600005],[70.47319665600008,39.97011952800005],[70.46022587100009,39.956115214000135],[70.45087243600005,39.93740834600007],[70.44803023300005,39.91999338800014],[70.45562666800004,39.90681589800005],[70.47722741700011,39.90092478500014],[70.48596073400006,39.909606425000106],[70.49417728700013,39.93167226200009],[70.50089522300004,39.94056060800011],[70.5125740960001,39.945159810000064],[70.55505212400004,39.946245016000056],[70.57660119600011,39.952239482000095],[70.59659997600005,39.96195465100004],[70.61396325700012,39.975752259000075],[70.62739913000011,39.993890686000015],[70.63597741700005,40.02851389600002],[70.63473718300008,40.059313050000064],[70.63943973800008,40.084944560000054],[70.66594974800005,40.10416819300008],[70.72982181900005,40.12070465100007],[70.74346439600002,40.1271125290001],[70.78253177900007,40.15258901000004],[70.78873295100004,40.158996888000075],[70.79214359500008,40.16137400400001],[70.79772465000008,40.161942444000054],[70.80268558800003,40.160133769000076],[70.80604455600013,40.15765330100001],[70.80671634900011,40.156154684000086],[70.8249064530001,40.163544413000096],[70.83183109500004,40.168195292000064],[70.8451636150001,40.17181264200004],[70.89854537000008,40.16261423800006],[70.9292928470001,40.17062408500004],[70.96288252800014,40.189692688],[70.97952233900008,40.214083964000054],[70.95895511900011,40.23837188800013],[70.99512862200004,40.2665872200001],[71.05321293200012,40.274235331000085],[71.16938155100007,40.26141957700008],[71.20100752700006,40.26384836900007],[71.21511519400008,40.28074656200005],[71.22395186300008,40.30286407500006],[71.23955814600002,40.321105856000116],[71.2538208410001,40.324413147000115],[71.26394942300004,40.318211975000025],[71.27283776900009,40.307721660000084],[71.28322473200012,40.29841990200006],[71.29707401600007,40.293820699],[71.31355879800003,40.292683818000086],[71.34492639200005,40.29521596300009],[71.36513187600013,40.29413075800007],[71.39655114800007,40.27154815700004],[71.44135461400009,40.26090281200007],[71.4509664310001,40.2489138790001],[71.45892460200014,40.23413442000009],[71.47711470600007,40.220801901000065],[71.49840539600007,40.21051829100006],[71.52124637800006,40.20374867800012],[71.56827193200013,40.19656565300008],[71.59297326700005,40.19842600500007],[71.60165490700012,40.209949850000015],[71.60403202300006,40.227261455000104],[71.6101298420001,40.246381735000114],[71.62831994600009,40.25888743100012],[71.64599328600008,40.247105204],[71.66015262900008,40.224470927000056],[71.66718062300004,40.204162089000135],[71.66687056500012,40.163131002000085],[71.67307173600011,40.14788645500005],[71.69332889800012,40.141116842000116],[71.70717818200006,40.14426910400007],[71.75978479000008,40.168091939000135],[71.77590783700008,40.17992584300006],[71.78675988800012,40.19351674400005],[71.80546675600009,40.225297750000095],[71.83647261600004,40.24917226200006],[71.87295617700005,40.250774231],[71.91233361900004,40.24343617800011],[71.95181441300014,40.24090403300002],[71.96338993300009,40.243746236000106],[71.96917769400005,40.24441803000008],[71.97703251100012,40.2430744430001],[71.98902144300007,40.239302063000075],[72.00483443200005,40.23728668200004],[72.01889042200008,40.24002553300008],[72.02540165300013,40.250877584000136],[72.01982059800014,40.25873240100006],[72.01323892900012,40.262072352000104],[72.00597131300009,40.265760396000076],[71.97703251100012,40.27609568300008],[71.9582222900001,40.28653432200011],[71.95109094300005,40.30152048800007],[71.95109421200003,40.30152878200008],[71.9566719980001,40.31567983100004],[72.04317834500006,40.34932118800008],[72.06963667800005,40.36942332000003],[72.0841060790001,40.39738027000004],[72.09010054500004,40.4160354620001],[72.09929895000005,40.426370748000124],[72.16585819500011,40.454431051000135],[72.18270471200009,40.45779001900004],[72.2283278000001,40.459606084000114],[72.23593143700003,40.459908753000036],[72.25422489400012,40.4583067830001],[72.26341527500006,40.452651165000134],[72.2636300050001,40.452519023000036],[72.25959924400007,40.44239044200006],[72.24512984200004,40.43872141500006],[72.22807662000014,40.437532858000054],[72.21650109900008,40.43494903600006],[72.21176846300011,40.42583619500002],[72.21164351400006,40.42559560100011],[72.22435591700008,40.42244333900003],[72.2696244710001,40.424045309000086],[72.28430057800011,40.41985951800004],[72.34341841600008,40.393401184000055],[72.3704968670001,40.38564972000005],[72.3940613200001,40.389422099000086],[72.41442183400004,40.41071278900006],[72.4251705320001,40.43598256400011],[72.42620406100013,40.45934031200008],[72.42609577400009,40.45954520700007],[72.4200279160001,40.47102654600013],[72.41566206900006,40.4792874150001],[72.41558505200008,40.47932995800005],[72.37225386600011,40.50326527900012],[72.36346887200011,40.512308655000055],[72.36346700700005,40.51241031500004],[72.36326216700013,40.52357411800003],[72.36998010200006,40.53985219400005],[72.3700834550001,40.5577322390001],[72.36992827500006,40.55793085500011],[72.34848270600014,40.58537913100011],[72.34850925500012,40.58550825700004],[72.35189335100004,40.60196726500004],[72.38155562400004,40.6121475220001],[72.41483524600005,40.58987498000005],[72.44790816300014,40.56047109000005],[72.47674361200006,40.54956736300007],[72.51529423000005,40.54563995400011],[72.58578088400003,40.508742982000086],[72.6254683840001,40.51049998000008],[72.64086796100008,40.519853414000124],[72.6504797770001,40.53215240500006],[72.65513065600004,40.54636342400002],[72.6564742430001,40.56114288300003],[72.66422570800012,40.57778269500005],[72.68241581200004,40.577679342000124],[72.71920943200006,40.56486358600005],[72.74835494000007,40.57509552100004],[72.76003381400005,40.64175811800004],[72.78390832600013,40.669663391000114],[72.81894494700009,40.68108388300004],[72.89098189300012,40.695088196000114],[72.97676477100003,40.73606760700005],[73.07060917100004,40.76247426400004],[73.11804813700013,40.782938131000094],[73.14864058400013,40.81368560800004],[73.14336958900003,40.833839417000036],[73.1432919940001,40.833852782000065],[73.1350415550001,40.835273844000056],[73.11246708200014,40.83916209000009],[73.0535559490001,40.8363198860001],[73.03329878700009,40.84722361200008],[73.01944950400014,40.86189972000005],[73.00342981000011,40.8701679480001],[72.92942915800006,40.844174703000135],[72.88312707500012,40.81962839800008],[72.87031132000003,40.81818145800008],[72.87299849400006,40.83482126900009],[72.86865767400006,40.86412180600007],[72.83010705600009,40.87207997700011],[72.70122603400006,40.86324330700012],[72.6582312420001,40.86717071600009],[72.6194739180001,40.880089824000095],[72.58846805900004,40.90582468700009],[72.54557662000008,40.95651926700006],[72.52624963400012,40.96220367400011],[72.5014449460001,40.96349558600004],[72.48335819500011,40.970575256000075],[72.48356490100014,40.99351959200001],[72.4852185470001,40.99956573500006],[72.48470178200006,41.00468170200014],[72.48191125500011,41.008815817000084],[72.47674361200006,41.0118130490001],[72.42351688700012,41.01574045900014],[72.39519820100014,41.02204498300006],[72.37432092300014,41.03196685800006],[72.34569217900008,41.065969950000095],[72.33235966000007,41.07284291700006],[72.3140662030001,41.06168080700013],[72.30879520700006,41.05444610600006],[72.29732303900005,41.02814280200002],[72.28977828000005,41.02354360000007],[72.2529846600001,41.0196161910001],[72.1954864970001,41.006357791000084],[72.16513472500003,40.99935903000011],[72.17877730300012,41.023181865000076],[72.18559859200008,41.04106191100004],[72.18559859200008,41.06064727800006],[72.17640018800006,41.11289215100004],[72.17464318800012,41.141417542000084],[72.16988895700013,41.16865102200009],[72.15841678900011,41.187874654000034],[72.13288863200006,41.199295146000026],[72.1084973550001,41.19640126600004],[72.08524296100012,41.184877421000095],[72.06364221200003,41.170201314000025],[72.03377323400014,41.156610413000124],[72.01651330600004,41.1635350550001],[72.0012170810001,41.1800198360001],[71.97703251100012,41.195212708000014],[71.89765751200014,41.184929098000026],[71.8716125900001,41.19448923700011],[71.86634159400012,41.23660553000008],[71.8688220630001,41.27923858700004],[71.86303430200013,41.31220815000008],[71.84701460800011,41.34181874600006],[71.7531702070001,41.447290344000095],[71.74521203600011,41.45281972300012],[71.73684045400006,41.455403544],[71.7304325770001,41.45116607700006],[71.72970910600003,41.430082092000134],[71.72164758300009,41.42475942000007],[71.71224247300006,41.42801503600006],[71.7068681230001,41.444086405000036],[71.69611942500006,41.44744537400004],[71.6914685470001,41.441915996000056],[71.6873344320001,41.431012268000075],[71.68144331900008,41.42284739200008],[71.67193485500013,41.42548289000007],[71.67110803300011,41.43762685200008],[71.68950484200008,41.49379913400014],[71.68940148900009,41.5146247350001],[71.68413049400004,41.53405507500008],[71.67141809100006,41.5473875940001],[71.64950728400004,41.5499197390001],[71.6273897700001,41.54320180300007],[71.61529748500004,41.53214304600007],[71.59545373600014,41.49379913400014],[71.59545373600014,41.49374745700004],[71.59555708800008,41.493695781000014],[71.59555708800008,41.49348907500007],[71.6055823160001,41.47684926400003],[71.63369429600004,41.44961578400003],[71.63741499900004,41.431270651000055],[71.63307417800007,41.41132354700005],[71.61881148300004,41.37778554300013],[71.58553186100005,41.32352528900009],[71.55793664600002,41.30171783500006],[71.52383020100007,41.29665354500008],[71.48062870300002,41.31076121100011],[71.43246626800004,41.34481598000008],[71.41877201400013,41.34739980100008],[71.41257084200004,41.33468739800011],[71.42145918800014,41.1620881150001],[71.41608483900012,41.12736155200008],[71.39365726700008,41.11273712200011],[71.32523767100014,41.15733388300003],[71.30022627800014,41.13304596000011],[71.2894775800001,41.11387400400011],[71.27614506100008,41.11315053300012],[71.26338098200011,41.12348582000004],[71.2538208410001,41.13749013300011],[71.24152185100007,41.175162252000064],[71.2301530360001,41.18725453700005],[71.20638187700013,41.18875315400007],[71.18571130400011,41.18022654300006],[71.1830241290001,41.166377259000086],[71.18788171400007,41.148445537000015],[71.18994877100005,41.12746490500009],[71.18013024900011,41.10813791900006],[71.16442061400011,41.11619944300014],[71.13909916200004,41.148393860000084],[71.12307946800007,41.15821238200007],[71.08576908400003,41.162036439000104],[71.06757898000012,41.16973622600008],[71.04701176000003,41.18203521800004],[71.02468754100005,41.18978668200003],[70.97714522300004,41.1963495890001],[70.93415043100002,41.191440328000084],[70.91420332900003,41.193042297000034],[70.89596154800005,41.20611643500007],[70.88216394100004,41.22048248300007],[70.86573083500008,41.233194886000035],[70.84774743600008,41.24306508400011],[70.82852380300005,41.24911122700007],[70.80599288000013,41.247457581000106],[70.78656254100014,41.24042958600009],[70.77043949400006,41.23851755800006],[70.75803715000012,41.25216013600009],[70.75628015200003,41.26962677100005],[70.77105961100004,41.3310183720001],[70.76919925900012,41.352102356000046],[70.75969079600003,41.372514547000094],[70.70357019100008,41.44548166900012],[70.68672367400012,41.46248321600004],[70.66781009900006,41.47137156200006],[70.63380700700003,41.46749582900008],[70.51133386200006,41.414475810000084],[70.47722741700011,41.404657288000124],[70.47078170900005,41.40487907600007],[70.4531978760001,41.40548411100005],[70.43805668200014,41.416077779000034],[70.41361372900013,41.45070098900004],[70.39898929800006,41.464963685000015],[70.38224613400007,41.47643585200012],[70.34493575000005,41.49348907500007],[70.34472904500012,41.49364410400011],[70.34452233900004,41.493695781000014],[70.34441898600011,41.49379913400014],[70.20344567900013,41.50563303700005],[70.16654870600007,41.520205790000034],[70.1482552490001,41.55245188400008],[70.16928755700013,41.57834177700002],[70.33118981900002,41.64962941500008],[70.39082442200004,41.6850536100001],[70.42348392800011,41.696913351000035],[70.4536629640001,41.71208038400004],[70.47722741700011,41.738435365000015],[70.50647627700005,41.78559010800012],[70.55009118700008,41.824063212000084],[70.64894820200004,41.88739268000009],[70.67969567900013,41.90111277300011],[70.77932784100011,41.90966522300005],[70.81400272600011,41.919535421000035],[70.82511316000011,41.93633026200007],[70.82805871600004,41.99374277800007],[70.84547367400006,42.03035553000012],[70.88671146700005,42.03849456800003],[70.93590743100003,42.03686676100008],[70.97714522300004,42.044230652000095],[71.11842858900013,42.12290802000007],[71.20100752700006,42.14078806600014],[71.23821455900008,42.16024424300011],[71.25320072500006,42.19755462700007],[71.24986822800008,42.19838531500005],[71.21785404400003,42.20636545800004],[71.07760420700004,42.28116709400007],[71.04577152600007,42.29095977800003],[71.01404219500006,42.28770416300005],[70.96960046400011,42.26346791600008],[70.94779300900007,42.248145854000114],[70.91864750200006,42.253365173000105],[70.89782189900006,42.26160756400006],[70.8581344000001,42.29106313100007],[70.85265669800003,42.30607513500004],[70.86480066000011,42.32155222600005],[70.88882503300005,42.338575311000085],[70.90035404500007,42.34674448700008],[70.93270349100004,42.3762000530001],[70.93983483900007,42.387827251000054],[70.93735437100013,42.39477773000004],[70.9317733150001,42.40149566700006],[70.92991296400008,42.412296041000104],[70.93611413600007,42.43162302600007],[70.94758630400008,42.451285909],[70.96195235200008,42.46810658800006],[70.97714522300004,42.47875193300006],[71.0247392180001,42.45596262600006],[71.04101729400008,42.45479990600006],[71.05471154800011,42.460380961000084],[71.06416833500009,42.470328675000076],[71.06628706900005,42.48213674000007],[71.05786381100006,42.49340220200014],[71.05765710400009,42.49340220200014],[71.05755375100006,42.49350555500007],[71.05755375100006,42.493608907000095],[71.02272383700011,42.5164498900001],[71.0126986080001,42.52603586800009],[71.00319014500012,42.56352712100011],[71.04065555900007,42.580528666000106],[71.12700687700004,42.590605571000054],[71.14276818900004,42.602542826000104],[71.14809086100007,42.61739980100003],[71.14643721500005,42.65685475700005],[71.14902103700013,42.67793874100008],[71.15754764800005,42.687938131000095],[71.19521976800007,42.69723988900003],[71.21144616700008,42.7052238980001],[71.22384851100014,42.71793630000005],[71.24544925900004,42.747133484000074],[71.26250248200006,42.753567200000134],[71.28472334800011,42.74839955700011],[71.30849450700008,42.740105489000086],[71.32978519700004,42.73703074200003],[71.34756189000007,42.74284434000003],[71.36306482000009,42.75410980300009],[71.37629398600006,42.768320822000135],[71.38693933200005,42.78307444300014],[71.40461267100011,42.79488250800006],[71.42884891800014,42.79558014000014],[71.47711470600007,42.78353953100009],[71.49365116400008,42.78891388000005],[71.50419315600004,42.78961151200011],[71.5143217370001,42.78570994100008],[71.55380253100003,42.76090525300003],[71.56630822800014,42.757236227000135],[71.58356815600013,42.75963918100007],[71.69353560400009,42.811806539000145],[71.72640181500003,42.819661357000086],[71.7966817630001,42.822296855000104],[71.83140832600002,42.83157277400002],[71.84773807800008,42.834053243000085],[71.86324100800009,42.82904063000004],[71.87884729000012,42.82134084100005],[71.89538374900013,42.8160440070001],[71.95698205600007,42.80459767700008],[72.07273726400012,42.757184550000034],[72.10488000500003,42.75033742300005],[72.11996952300007,42.75181020100007],[72.1488049730001,42.76199045900012],[72.16410119700004,42.76509104400006],[72.2923621010001,42.76106028300006],[72.35840458200005,42.74139740000004],[72.47674361200006,42.68256378200004],[72.51178023300007,42.677551168000065],[72.5838171800001,42.67827463800006],[72.72582401500006,42.65287567200008],[72.7569332270001,42.64021494600013],[72.78060103400014,42.62044871000006],[72.81522424400004,42.57303558300009],[72.84075240100009,42.55569814100008],[72.87454878800008,42.543993429000096],[72.90834517400003,42.53696543500007],[72.94234826700011,42.53603525900013],[73.07060917100004,42.551925761000035],[73.11505090300011,42.55084055600014],[73.15267134600002,42.53921335900009],[73.17272180200005,42.52784454400009],[73.18905155500009,42.520764873000076],[73.20682824700003,42.51717336100009],[73.27834843000011,42.51340098100007],[73.30139611900006,42.50707061800005],[73.31658898900008,42.493712260000024],[73.31338505100013,42.46317148800002],[73.31441858000011,42.44157074000006],[73.32620080600009,42.42867747000005],[73.41746138500008,42.417050273000086],[73.4768892820001,42.39906687400011],[73.5051046150001,42.40294260700006],[73.50551802600012,42.42092600500004],[73.50507740900007,42.421557116000145],[73.4329643150001,42.52484731100009],[73.41756473800012,42.556163229000106],[73.41001997900013,42.5896495560001],[73.4127071530001,42.62732167600012],[73.42386926300014,42.662771709000054],[73.4768892820001,42.7508800250001],[73.50355432100007,42.79408152300004],[73.50706831900004,42.8094035850001],[73.50427779100005,42.82759369000004],[73.49197880100013,42.86100250300012],[73.48949833200004,42.87782318100008],[73.49301233000011,42.894953919000045],[73.50117720500003,42.90934580500007],[73.52174442500012,42.93616587300004],[73.55967492700012,43.017297872000086],[73.5709403890001,43.03192230300007],[73.58665002400005,43.042283427000086],[73.63408899000012,43.06246307400004],[73.80555139200004,43.114733785000055],[73.82281132000014,43.117317607000075],[73.8642558190001,43.116103210000034],[73.90166955600006,43.13096018500008],[73.93505253100011,43.199715679000064],[73.96533492000003,43.21692393000012],[73.98538537600007,43.211678772000106],[74.02145552600007,43.1863056440001],[74.03985233600008,43.181861471000104],[74.19736210200011,43.195788269000076],[74.21389856000008,43.20263539700005],[74.21658573400003,43.21692393000012],[74.20604374200013,43.234106344000075],[74.17875858500014,43.26170155800008],[74.2076973880001,43.24979014100006],[74.25865035000004,43.215761211000114],[74.28696903500014,43.20720876100009],[74.3200419520001,43.201653545000084],[74.34877404800011,43.191034037000094],[74.40055383300012,43.159537252000035],[74.42060428900004,43.15183746400004],[74.46277225800009,43.148633525000065],[74.49822229000011,43.13111521500011],[74.53925337700008,43.12289866100007],[74.55816695200014,43.11504384400004],[74.57201623500009,43.10220225000006],[74.59702762900008,43.070343730000104],[74.61129032400004,43.058173930000095],[74.71391971800006,42.99988291400007],[74.74874963400009,42.99001271600008],[74.86285119700011,42.97582753500012],[74.94853072100011,42.94484751400009],[74.97684940600008,42.926476543],[75.00537479700012,42.91639963800009],[75.06614628100004,42.90260203100013],[75.0942582610001,42.89030304000008],[75.11813277200008,42.87653127100003],[75.1785941980001,42.84965952600004],[75.20463911900009,42.84518951500013]],[[71.0085644940001,40.157756653000035],[70.97714522300004,40.14457916300006],[70.95988529400006,40.11341827400008],[70.95404585800014,40.09579661100008],[70.95296065300005,40.07920847600007],[70.95843835400007,40.0630854290001],[70.98313969000009,40.021382548000076],[70.99450850400007,40.00887685200007],[71.0076343180001,40.00350250300002],[71.03429935700007,39.99911000600011],[71.04582320100008,39.99203033500001],[71.05037072800013,39.962884827000096],[71.0076343180001,39.911156718000115],[71.00928796400007,39.885731913000114],[71.0218970140001,39.88082265200009],[71.03605635600013,39.88754058900011],[71.04980228700008,39.897979228000054],[71.06096439600003,39.904128723000014],[71.07998132300007,39.90340525400012],[71.08478723100006,39.89482696600009],[71.08721602400004,39.88381988600011],[71.09889489800014,39.87549998000014],[71.11367435700004,39.874466452000064],[71.16100996900008,39.884233297],[71.1945996500001,39.88480173800008],[71.2084489340001,39.88878082300004],[71.2190942790001,39.90092478500014],[71.22105798400008,39.93172393800012],[71.17702966300004,39.968155823000096],[71.17470422400008,39.99399403900014],[71.19098230000003,40.00624135400005],[71.23728438300003,40.03109771700011],[71.24400231900006,40.04675567700008],[71.23635420800007,40.05605743400011],[71.22374515800004,40.05786610900009],[71.19821700000011,40.05259511300005],[71.19294600500007,40.05026967400002],[71.18188724800007,40.043396708000074],[71.1769263100001,40.04200144500007],[71.16938155100007,40.04282826700009],[71.1654541420001,40.044636943000086],[71.16204349800005,40.04691070600012],[71.10597456900013,40.06494578100011],[71.07884444200005,40.07864003600014],[71.06173954200011,40.095176493000025],[71.0479419350001,40.122513326000046],[71.03119877200004,40.14690460300008],[71.0085644940001,40.157756653000035]],[[71.74180139100007,39.90076975500011],[71.7573043210001,39.903095194000024],[71.7671228430001,39.9154458620001],[71.78975712100004,39.97931793200004],[71.7855196540001,39.989704895000074],[71.7606116130001,39.98371042900004],[71.72412805200008,39.962678121000124],[71.7068681230001,39.956115214000135],[71.68175337800011,39.95508168600006],[71.66552697800006,39.940198873],[71.67534550000005,39.9257811490001],[71.69684289600008,39.913843892000074],[71.71616988100004,39.90676422100003],[71.74180139100007,39.90076975500011]],[[70.49872481300014,39.88190785800009],[70.4837386480001,39.88221791600006],[70.48260176600007,39.86676666300008],[70.49014652500011,39.85017852900006],[70.50347904500012,39.835502421000086],[70.53737878400005,39.81731231700013],[70.54730065900002,39.80764882500011],[70.5758777260001,39.770080058000104],[70.58161381100007,39.76656606000006],[70.63298018400013,39.79845041900009],[70.66160892800008,39.809819235000106],[70.69452681500012,39.81483184800007],[70.70481042500012,39.82206654900002],[70.70641239500009,39.83999827100009],[70.69891931200003,39.85844675700011],[70.68662032100006,39.86087555000005],[70.65499434500009,39.84976511600004],[70.61990604700009,39.8506952920001],[70.49872481300014,39.88190785800009]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cambodia","sov_a3":"KHM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cambodia","adm0_a3":"KHM","geou_dif":0,"geounit":"Cambodia","gu_a3":"KHM","su_dif":0,"subunit":"Cambodia","su_a3":"KHM","brk_diff":0,"name":"Cambodia","name_long":"Cambodia","brk_a3":"KHM","brk_name":"Cambodia","brk_group":null,"abbrev":"Camb.","postal":"KH","formal_en":"Kingdom of Cambodia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cambodia","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":5,"pop_est":14494293,"gdp_md_est":27940,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"CB","iso_a2":"KH","iso_a3":"KHM","iso_n3":"116","un_a3":"116","wb_a2":"KH","wb_a3":"KHM","woe_id":23424776,"woe_id_eh":23424776,"woe_note":"Exact WOE match as country","adm0_a3_is":"KHM","adm0_a3_us":"KHM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"KHM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.8048608730002,10.463202216000113],[103.79468834700006,10.45355866100013],[103.77833092500006,10.453802802000084],[103.76384524800018,10.456529039000145],[103.75196373800006,10.464585679000095],[103.74341881599999,10.480861721000124],[103.75171959700018,10.483140367000189],[103.75586998800004,10.485988674000126],[103.76392662900017,10.494533596000153],[103.7573348320001,10.506496486000088],[103.76042728000019,10.5138207050001],[103.770274285,10.516587632000054],[103.78443444100006,10.515041408000116],[103.79859459700006,10.505438544000128],[103.80591881600006,10.484320380000113],[103.8048608730002,10.463202216000113]]],[[[103.31755618600008,10.574408270000077],[103.3247176440001,10.573879299000096],[103.33155358200005,10.579535223000093],[103.33415774800002,10.58392975500007],[103.33594811300011,10.583441473000077],[103.33887780000005,10.579779364000132],[103.33887780000005,10.572414455000128],[103.33464603000012,10.564601955000143],[103.33008873800006,10.553534247000101],[103.32349694100012,10.545152085000138],[103.31275475400017,10.551662502000127],[103.29216556100008,10.583156643000137],[103.28516686300004,10.599066473000065],[103.28907311300006,10.612738348000107],[103.30250084700006,10.618109442000147],[103.31381269600016,10.619452216000141],[103.31950931100012,10.617336330000128],[103.32154381600006,10.610337632000068],[103.3118595710001,10.596625067000133],[103.31120853000007,10.592027085000096],[103.31080162900011,10.58698151200015],[103.31251061300006,10.579087632000096],[103.31755618600008,10.574408270000077]]],[[[103.27735436300006,10.74095286700013],[103.28296959700018,10.739406643000095],[103.2893986340001,10.739894924000083],[103.29493248800011,10.738430080000114],[103.29712975400011,10.731024481000118],[103.30144290500019,10.727199611000117],[103.31006920700011,10.725897528000116],[103.31755618600008,10.721096096000124],[103.3182072270001,10.706773179000137],[103.3050236340001,10.702215887000179],[103.29322350400011,10.69660065300009],[103.28370201900012,10.687648830000157],[103.27735436300006,10.67267487200013],[103.26872806100008,10.679632880000113],[103.26417076900012,10.691229559000135],[103.26172936300011,10.702053127000125],[103.26002037900017,10.706773179000137],[103.26075280000012,10.709173895000092],[103.2288517590001,10.721096096000124],[103.21363366000006,10.73334381700009],[103.20191491000006,10.747626044000171],[103.19849694100006,10.762355861000074],[103.20834394600016,10.775702216000083],[103.22852623800006,10.782660223000079],[103.24512780000012,10.77798086100016],[103.25879967500006,10.766791083000143],[103.27051842500005,10.754584052000084],[103.27271569100006,10.751288153000132],[103.27466881600012,10.744330145000148],[103.27735436300006,10.74095286700013]]],[[[102.99366295700005,11.41705963700015],[102.9954533210001,11.412543036000102],[103.0066837900001,11.422064520000104],[103.01636803500017,11.423081773000163],[103.02418053500017,11.417181708000129],[103.03663170700011,11.391994533000158],[103.03728274800002,11.381170966000154],[103.0361434250001,11.370835679000066],[103.03711998800004,11.357896226000065],[103.04175866000011,11.346665757000054],[103.04688561300011,11.338120835000126],[103.0486759770001,11.330877997000101],[103.04330488400015,11.32371653900016],[103.048594597,11.310126044000114],[103.04786217500006,11.29144928600013],[103.04330488400015,11.27342357000019],[103.03711998800004,11.261664130000128],[103.02344811300006,11.255194403000116],[103.007578972,11.255072333000143],[102.9980574880001,11.260199286000073],[103.00294030000006,11.2691104190001],[102.99195397199999,11.280015367000173],[102.98853600400011,11.300930080000128],[102.98926842500005,11.337388414000188],[102.9817000660001,11.380113023000106],[102.98145592500006,11.404689846000124],[102.98926842500005,11.426174221000153],[102.99089603000007,11.42182038000007],[102.99366295700005,11.41705963700015]]],[[[103.03492272200018,11.43170807500016],[103.03028405000006,11.426174221000153],[103.02035566500015,11.426947333000072],[103.01954186300004,11.43695709800015],[103.02344811300006,11.460353908000144],[103.01441491000006,11.47654857000019],[103.00131269600014,11.495266018000152],[102.995860222,11.513739325000174],[103.00912519600014,11.5292422550001],[103.02637780000006,11.519110419000143],[103.03028405000006,11.51557038000007],[103.03248131600006,11.51040273600016],[103.03239993600006,11.505560614000089],[103.03126061300011,11.502264716000141],[103.03028405000006,11.501898505000128],[103.03532962300018,11.492499091000099],[103.04656009200019,11.476060289000102],[103.05079186300011,11.467759507000125],[103.05079186300011,11.460353908000144],[103.04615319100016,11.453314520000077],[103.03492272200018,11.43170807500016]]],[[[107.5064400630001,14.556864522000138],[107.50525150600018,14.541025696000132],[107.50008386300007,14.52976023400008],[107.48571781500007,14.509528911000174],[107.48137699400009,14.495963847000096],[107.48044681800016,14.488858338000156],[107.4767261150001,14.475241597000162],[107.46473718300014,14.44904164600014],[107.45574548400012,14.433874613000128],[107.4431364340002,14.423668519000145],[107.42380944800007,14.418965963000176],[107.41734989500011,14.422066549000121],[107.41362919100018,14.428732809000124],[107.40778975400009,14.433047791000192],[107.3948706460001,14.42909454400012],[107.38691247600009,14.421911520000078],[107.38381189000009,14.413617452000125],[107.38226159700017,14.404574076000157],[107.37941939300016,14.395453186000095],[107.35900720300005,14.360287374000137],[107.35177250200016,14.341968079000154],[107.34991215000016,14.321555888000205],[107.35213423700006,14.31259002700017],[107.36091923100017,14.293288880000134],[107.36376143500014,14.283237814000188],[107.36360640500017,14.273832703000137],[107.35859379100012,14.238615215000081],[107.32474572800007,14.143866476000126],[107.31993981900021,14.119836934000189],[107.32417728700008,14.10808054600011],[107.33363407400005,14.098546245000122],[107.34474450700006,14.08131215400013],[107.34686324100002,14.061675110000095],[107.34350427300015,14.040927022000162],[107.34314253800014,14.020618185000146],[107.35456302900009,14.002402242000187],[107.37156457600005,13.996278585000127],[107.40902998900006,13.999921773000125],[107.4244812420002,13.994056498000118],[107.43073409000013,13.984470520000116],[107.4313542080001,13.974703674000166],[107.43011397400008,13.96516937300008],[107.4310441490002,13.955996806000172],[107.44515181500006,13.926644592000116],[107.44598789700015,13.92163556300008],[107.4480456950001,13.909307150000187],[107.4453068440001,13.897809143000174],[107.43982914300008,13.886466167000092],[107.43538496900007,13.86969716400013],[107.44623702000015,13.83938893600019],[107.44499678600019,13.830448913000168],[107.43853723200006,13.808951517000125],[107.43817549600007,13.798487040000097],[107.44323978700001,13.783475037000116],[107.46225671400012,13.761202495000148],[107.47176517800008,13.74608713800015],[107.47378055800013,13.741642965000139],[107.49672489400002,13.717044984000152],[107.51429488200014,13.692550354000105],[107.59692549700017,13.535066426000114],[107.6043152270001,13.498531190000094],[107.61051639900009,13.400371806000123],[107.6069507240002,13.369753520000188],[107.57490707500018,13.29363290500011],[107.56159684900015,13.262014078000163],[107.46039636300011,13.021609396000201],[107.46298018400009,13.007320862000128],[107.47858646700016,12.996081238000158],[107.48106693600019,12.988769023000174],[107.48137699400009,12.982257793000201],[107.47894820200005,12.976857605000149],[107.47378055800013,12.972878520000165],[107.46783776900011,12.963034160000177],[107.46608077000022,12.952182109000134],[107.46835453300017,12.941097514000134],[107.47961999600014,12.915879415000177],[107.48334069900014,12.885571188000142],[107.48737146000022,12.870559184000157],[107.4942961020001,12.858751119000146],[107.52235640500012,12.827486878000158],[107.53594730600005,12.79963328000018],[107.53863448100005,12.773433329000168],[107.53775598100012,12.746561585000165],[107.54008142100005,12.716692607000155],[107.56509281500021,12.606415100000092],[107.5669531660002,12.573910624000163],[107.56343916800009,12.543628235000126],[107.55796146700017,12.530864156000163],[107.55176029500008,12.520063782000136],[107.54964156100007,12.509211731000093],[107.55666955600005,12.49624094700016],[107.55666955600005,12.496189271000148],[107.55677290900009,12.496085917000116],[107.55666955600005,12.472676494000154],[107.52726566600009,12.391131083000104],[107.52225305200008,12.36658477800013],[107.51429488200014,12.343847148000151],[107.49956709800014,12.325812073000149],[107.47378055800013,12.315373434000122],[107.44964766500007,12.299043681000171],[107.41585127800008,12.254085185000164],[107.3930102950001,12.252844950000124],[107.37378666200007,12.269433086000133],[107.34381433100012,12.315115051000149],[107.32019820200011,12.329222718000082],[107.27616988100011,12.325398661000136],[107.22782438100009,12.310591880000175],[107.21188440000017,12.305709941000188],[107.15250817900014,12.277029521000188],[107.12294926000018,12.246230367000123],[107.11623132300011,12.232122702000183],[107.10424239100021,12.221218974000138],[107.07757735200006,12.202770487000123],[107.0460030520002,12.164374899000093],[106.97768680900006,12.097247213000143],[106.95339888600014,12.081072490000151],[106.91629520700016,12.066913147000106],[106.87929488100009,12.062727356000082],[106.80296879100015,12.06846344000013],[106.79056193400018,12.067408857000173],[106.77196293200015,12.065827942000112],[106.74922530100017,12.05234039300015],[106.73279219600008,12.028879293000074],[106.72111332300014,11.996374817000145],[106.70157963000011,11.97079498300019],[106.68049564600018,11.965058899000127],[106.63062788900007,11.976169332000154],[106.63858606000011,11.961131490000156],[106.5524414470001,11.972810364000138],[106.50453739500009,11.973378804000092],[106.47373824100012,11.952088115000109],[106.46050907400009,11.952914938000132],[106.45513472600007,11.959736226000174],[106.45105228700007,11.968469544000158],[106.44206058800007,11.974877421000187],[106.42914148000008,11.976841126000139],[106.41746260600021,11.975859274000157],[106.39400150500015,11.969813131000123],[106.39541619700006,11.965807400000159],[106.40350996900005,11.942889709000113],[106.43312056500017,11.888371073000187],[106.43875329700019,11.863721416000189],[106.43616947400018,11.86118927000011],[106.42139001500018,11.837573141000092],[106.4202531330001,11.830958557000185],[106.41963301700011,11.812044983000147],[106.41828942900004,11.803415019000113],[106.41136478700017,11.789152323000138],[106.4031482340001,11.775871481000124],[106.39777388500008,11.762125549000189],[106.39885909000006,11.746312561000195],[106.42609257100015,11.700475566000136],[106.4345874630002,11.67842812700016],[106.4350325930001,11.677272848000143],[106.4258341880001,11.6620799760002],[106.41281172700016,11.661769918000132],[106.40009932400018,11.66853953000016],[106.37808516400005,11.683835755000118],[106.36418420400005,11.688538310000098],[106.35431400500008,11.690140279000131],[106.34366866100018,11.689055075000141],[106.28734135000016,11.674585673000193],[106.27411218300008,11.676807760000202],[106.26512048400011,11.683990783000155],[106.25075443600022,11.706056620000155],[106.24320967600008,11.714583232000166],[106.22362430900013,11.724970195000196],[106.1546362720002,11.746312561000195],[106.11319177300007,11.747087707000103],[106.06120528100021,11.762900696000202],[106.0154199620001,11.770497131000168],[105.99211389200015,11.746312561000195],[105.9912870690001,11.73246327800014],[105.98875492400006,11.718975729000164],[105.98307051700007,11.706676738000125],[105.95526859600014,11.67799631800014],[105.94617354400006,11.65706736300015],[105.93408125800008,11.642856343000176],[105.90550419200022,11.644303284000086],[105.85791019700015,11.66156321200016],[105.84085697500015,11.658152568000148],[105.82098599000014,11.641473529000164],[105.81801599200006,11.638980612000138],[105.80489017800008,11.62492462200012],[105.79341800900008,11.607302958000133],[105.79042077700015,11.587407532000128],[105.79317921600014,11.582883693000099],[105.80333988500014,11.566220194000067],[105.81553552300008,11.559760640000206],[105.84214888500011,11.55495473200011],[105.85320764200011,11.546867371000104],[105.85780684500017,11.535627747000149],[105.8588403730001,11.522321066000131],[105.85666996300014,11.496276144000163],[105.87217289300006,11.443462830000113],[105.87382653800007,11.428244121000176],[105.87103601100014,11.413283793000119],[105.85997725500013,11.379306539000169],[105.84344079600007,11.304091492000138],[105.84442264800012,11.289880473000082],[105.85718672700008,11.279958598000178],[105.87351648,11.275901998000094],[105.88674564700013,11.267943828000128],[105.88943282100016,11.246394756000157],[105.88943282100016,11.246239726000125],[105.89987146100006,11.21859283500011],[105.92043868100009,11.203322449000154],[105.97397546400012,11.19037750300015],[105.98875492400006,11.17696746900019],[106.01314620000008,11.139269511000151],[106.02813236500006,11.122655538000146],[106.0630656330002,11.093329163000178],[106.07650150600008,11.077025249000144],[106.0866300860001,11.056328837000123],[106.09810225500014,11.077903748000095],[106.11350183200013,11.08692128500013],[106.13086511200007,11.084234111000113],[106.14874515800008,11.07072072400014],[106.16032067900007,11.05351247200015],[106.17665043100007,10.996203308000176],[106.18786421700004,10.97630788200017],[106.18083622300006,10.970261739000136],[106.17038952300007,10.97060202300014],[106.14910689300021,10.97129526800012],[106.13143355300011,10.96927988700017],[106.1281779380001,10.9657142140001],[106.12249353000017,10.955508118000123],[106.12466394100008,10.95318267800019],[106.12342370600012,10.927447815000107],[106.12182173700009,10.92522572900019],[106.12693770400008,10.908999329000094],[106.15158736200007,10.862981466000178],[106.17732222500015,10.766863302000075],[106.1550496830001,10.784846701000163],[106.12884973200019,10.791357931000135],[106.07221236200022,10.796861470000124],[106.04570235300011,10.805853170000162],[106.01790043100007,10.819805806000161],[105.99257897900006,10.837815043000148],[105.97397546400012,10.85882151300015],[105.96467370600007,10.869596049000094],[105.93134240700013,10.89636444100016],[105.92984379100014,10.880060526000136],[105.92049035700009,10.858149719000082],[105.90865645400018,10.838383484000104],[105.89935469600007,10.828384094000098],[105.87868412300006,10.828074036000203],[105.86101078300013,10.839313660000158],[105.84752323500005,10.855410868000133],[105.84003015200012,10.869699402000123],[105.82855798300008,10.90450347900017],[105.8214266360001,10.919670512000096],[105.78742354300013,10.965972595000082],[105.7696985270002,10.99646169100015],[105.75290368700016,11.015607808000153],[105.72613529500008,11.018372498000117],[105.69729984600022,11.010233460000109],[105.67404545100013,10.996410014000148],[105.67378706900016,10.996254984000188],[105.65492517100014,10.98429189000015],[105.63218754100014,10.973956605000138],[105.61723995200006,10.970836832000202],[105.52360324500015,10.951293531000204],[105.4738509520001,10.940909526000155],[105.46578942900007,10.941839702000122],[105.44336185700016,10.952975972000146],[105.41504317300016,10.960727438000147],[105.4104956470002,10.963001201000168],[105.39788659700011,10.95457794200017],[105.35726892200015,10.907965800000113],[105.32750329600016,10.848279520000105],[105.31789148000016,10.838848572000131],[105.3030086680002,10.844016215000138],[105.26869551600007,10.873652649000178],[105.2532959390002,10.883522848000084],[105.2091450070002,10.891647006000184],[105.11175419200006,10.909567769000148],[105.09754317200012,10.914347840000147],[105.0860710050001,10.929514873000159],[105.08374556500021,10.942614848000133],[105.07790612800014,10.946903992000102],[105.05578861600004,10.935457662000173],[105.04276615400008,10.926362610000112],[105.03854802900015,10.922582214000144],[105.0290719000001,10.914089457000088],[105.01785811400006,10.899594218000132],[105.01139856000006,10.88383290600015],[105.01480920400009,10.849209696000145],[105.03046716400016,10.811640931000142],[105.0662272540001,10.746425272000124],[105.06674401900014,10.713946635000184],[105.04245609600011,10.690821431000115],[104.94432255100017,10.641625469000147],[104.93135176600005,10.630695902000168],[104.91972456900007,10.618009338000133],[104.87853845300016,10.555971781000082],[104.85440555800012,10.531322123000166],[104.81880049700007,10.517188619000137],[104.77384200100013,10.515328268000133],[104.72442453000022,10.521337570000142],[104.7006340670001,10.524230557000138],[104.62553064000022,10.53336334200013],[104.58253584800016,10.531528829000136],[104.5668262130001,10.528066508000094],[104.55401045700009,10.518325500000145],[104.54429528800009,10.503778585000191],[104.53597538300019,10.487991435000197],[104.49427250200009,10.427736715000137],[104.48373051000013,10.4180473830001],[104.46957116700017,10.415773620000081],[104.4513452480002,10.41966380400008],[104.4513452480002,10.419826565000136],[104.44922936300006,10.425604559000107],[104.43238366000017,10.446275132000125],[104.42204837300008,10.452297268000123],[104.40756269600008,10.446112372000158],[104.37232506600016,10.482082424000138],[104.3631291020001,10.487738348000121],[104.33253014400006,10.487738348000121],[104.31560306100017,10.48110586100016],[104.3061629570001,10.478583075000145],[104.29769941500015,10.480861721000124],[104.28980553500017,10.497503973000079],[104.28630618600019,10.540472723000121],[104.27418053500017,10.549139716000111],[104.26856530000006,10.552069403000132],[104.25660241000006,10.565822658000158],[104.2498478520001,10.570257880000128],[104.24268639400006,10.56903717700011],[104.23658287900017,10.564642645000134],[104.23031660200016,10.563137111000088],[104.22266686300011,10.570257880000128],[104.20704186300011,10.549994208000115],[104.18116295700011,10.549546617000116],[104.130137566,10.562811591000155],[104.11312910200016,10.560939846000096],[104.08904056100002,10.554632880000142],[104.07178795700011,10.55597565300013],[103.97608483200004,10.582505601000094],[103.95923912900015,10.58392975500007],[103.9455672540001,10.588120835000097],[103.91797936300011,10.61123281500015],[103.91627037900011,10.618597723000136],[103.89429772200012,10.658392645000134],[103.89128665500019,10.659125067000076],[103.87696373800011,10.658392645000134],[103.87338300900015,10.66006094000015],[103.87370853000007,10.66404857000012],[103.87468509200002,10.66876862200013],[103.87378991000004,10.67267487200013],[103.870860222,10.678656317000147],[103.86915123800011,10.693548895000106],[103.86638431100008,10.699367580000143],[103.85889733200011,10.679592190000122],[103.8597111340001,10.658107815000108],[103.86638431100008,10.621161200000145],[103.86280358200011,10.603827216000155],[103.85425866000017,10.586493231000162],[103.83228600400017,10.55597565300013],[103.82056725400017,10.544012762000108],[103.80787194100012,10.537909247000115],[103.79102623800011,10.535793361000103],[103.76710045700005,10.53546784100017],[103.75416100400011,10.537746486000145],[103.7482202480002,10.543117580000114],[103.74390709700012,10.54987213700015],[103.73609459699999,10.55597565300013],[103.72608483200005,10.558661200000117],[103.7093205090001,10.559230861000088],[103.70191491000006,10.562811591000155],[103.70191491000006,10.55597565300013],[103.72315514400012,10.544663804000066],[103.74195397200006,10.526271877000113],[103.74708092500006,10.508978583000115],[103.72608483200005,10.501369533000073],[103.69320722700016,10.503404039000188],[103.6557723320001,10.495184637000108],[103.63738040500006,10.494533596000153],[103.6238712900001,10.500921942000076],[103.61719811300011,10.515041408000116],[103.61540774800002,10.52912018400015],[103.61622155000006,10.53546784100017],[103.61312910200016,10.538275458000129],[103.61060631600004,10.551459052000084],[103.60629316500014,10.55597565300013],[103.59839928500017,10.556626695000176],[103.5940047540001,10.553656317000076],[103.59066816500015,10.55011627800009],[103.5857853520001,10.549139716000111],[103.57943769600016,10.550848700000117],[103.57007897200005,10.555080471000137],[103.56153405000012,10.562323309000163],[103.55355879000015,10.5855166690001],[103.5437931650001,10.596177476000136],[103.52369225400017,10.61123281500015],[103.507090691,10.604234117000159],[103.50196373800011,10.617132880000085],[103.50684655000006,10.635443427000139],[103.52003014400012,10.644720770000104],[103.52808678500006,10.652167059000163],[103.53834069100017,10.669501044000157],[103.54712975400011,10.688950914000158],[103.55103600400011,10.7030703800001],[103.56739342500006,10.72650788000007],[103.60596764400012,10.73753489800012],[103.68417402400021,10.74079010600016],[103.68490644600014,10.740830796000154],[103.68873131600016,10.74095286700013],[103.68873131600016,10.740993557000124],[103.68873131600016,10.742987372000158],[103.68873131600016,10.747748114000146],[103.6756291020001,10.75177643400012],[103.6722111340001,10.757879950000117],[103.67807050900015,10.801214911000088],[103.68140709700016,10.809230861000131],[103.68970787900017,10.816148179000123],[103.70142662900011,10.822211005000128],[103.71338951900005,10.830552476000094],[103.72242272200018,10.844549872000144],[103.724375847,10.856024481000103],[103.72242272200018,10.894842841000113],[103.70736738400014,10.930121161000145],[103.67855879000008,10.980210679000066],[103.65951582100014,11.029771226000094],[103.67457116000006,11.063666083000143],[103.65544681100008,11.078436591000127],[103.64584394600008,11.08226146000014],[103.61622155000006,11.085435289000102],[103.60401451900006,11.090643622000101],[103.5952254570001,11.098293361000131],[103.58350670700011,11.134100653000147],[103.56185957100016,11.152248440000136],[103.532969597,11.162746486000117],[103.50269616000006,11.166083075000145],[103.50489342500012,11.162583726000065],[103.50521894600014,11.16176992400014],[103.50611412900011,11.161363023000135],[103.51002037900011,11.159247137000122],[103.4964298840001,11.138820705000143],[103.48902428500016,11.138820705000143],[103.48438561300006,11.14565664300008],[103.48121178500011,11.148382880000142],[103.46851647200006,11.15180084800015],[103.46851647200006,11.14565664300008],[103.47445722700016,11.133693752000141],[103.46827233200011,11.11896393400015],[103.44800866000017,11.090399481000146],[103.46827233200011,11.099310614000103],[103.47022545700005,11.089056708000072],[103.46273847700016,11.070868231000176],[103.43726647200018,11.025091864000075],[103.43083743600008,11.006496486000074],[103.4280705090001,10.984279690000122],[103.41700280000005,10.958075262000179],[103.41456139400012,10.946356512000179],[103.41529381600006,10.93675364800012],[103.42017662900011,10.920965887000165],[103.4212345710001,10.909125067000103],[103.41570071700008,10.894110419000171],[103.40211022200012,10.884344794000143],[103.38599694100006,10.880926825000131],[103.37289472700016,10.884955145000106],[103.36866295700004,10.880194403000104],[103.364024285,10.876939195000148],[103.35230553500004,10.87189362200013],[103.34408613400015,10.895453192000076],[103.3230900400001,10.909572658000101],[103.29810631600017,10.919989325000103],[103.27735436300006,10.93268463700015],[103.23633873800006,10.908148505000128],[103.21900475400017,10.89248281500015],[103.22266686300006,10.878119208000086],[103.20875084700006,10.878566799000081],[103.19678795700011,10.876532294000143],[103.18751061300006,10.871812242000146],[103.18116295700004,10.864447333000143],[103.16179446700014,10.874009507000139],[103.13868248800004,10.876410223000077],[103.12671959700006,10.881293036000145],[103.14014733200005,10.898586330000143],[103.10938561300006,10.92230866100006],[103.1018986340001,10.925930080000114],[103.09555097700016,10.933986721000153],[103.10027103000007,10.951157945000176],[103.10840905000005,10.967027085000112],[103.11280358200004,10.970892645000118],[103.11060631600017,11.001898505000142],[103.10084069100006,11.053127346000082],[103.09848066500015,11.080471096000153],[103.10181725400011,11.08991120000016],[103.1087345710001,11.100409247000144],[103.11597741000006,11.113836981000132],[103.1189884770001,11.131984768000137],[103.11768639400012,11.14911530200007],[103.11361738400015,11.161078192000105],[103.09848066500015,11.186590887000094],[103.09620201900012,11.194240627000127],[103.09506269600014,11.202622789000173],[103.09327233200005,11.210842190000093],[103.08863366000006,11.217678127000099],[103.08204186300006,11.219387111000103],[103.06226647200006,11.219712632000125],[103.05762780000012,11.220770575000174],[103.05958092500006,11.23183828300013],[103.071055535,11.238592841000155],[103.07927493600012,11.245184637000136],[103.07129967500006,11.25551992400014],[103.07129967500006,11.261664130000128],[103.078868035,11.273504950000174],[103.1056421230002,11.299058335000069],[103.13404381600006,11.316148179000109],[103.14698326900006,11.302679755000128],[103.1531681650001,11.302679755000128],[103.15211022200006,11.318101304000066],[103.1424259770001,11.343573309000163],[103.14014733200005,11.357896226000065],[103.12574303500017,11.352280992000146],[103.11915123800011,11.348863023000133],[103.11280358200004,11.34365469000015],[103.10027103000007,11.356024481000176],[103.0965275400001,11.36717357000019],[103.09595787900017,11.380357164000145],[103.09229576900012,11.398871161000073],[103.0857853520001,11.413804429000109],[103.07097415500002,11.434515692000119],[103.06446373800006,11.447251695000162],[103.07276451900012,11.44481028900013],[103.07569420700005,11.444322007000054],[103.0766707690001,11.44183991100013],[103.07878665500002,11.433010158000158],[103.08497155000012,11.433010158000158],[103.09131920700005,11.443996486000131],[103.10157311300006,11.452582098000136],[103.11451256600016,11.458238023000135],[103.1298934250001,11.460353908000144],[103.1433211600001,11.454820054000123],[103.15919030000012,11.431097723000107],[103.17432701900012,11.426174221000153],[103.14275149800012,11.485052802000126],[103.13331139400012,11.49445221600014],[103.13786868600008,11.505275783000144],[103.14014733200005,11.508734442000147],[103.13331139400012,11.508734442000147],[103.13103274800002,11.5050723330001],[103.12647545700011,11.49445221600014],[103.13062584700006,11.486517645000092],[103.12867272200018,11.477484442000076],[103.1220809250001,11.470160223000079],[103.11280358200004,11.467759507000125],[103.10287519600014,11.47264232000019],[103.09107506600017,11.490545966000155],[103.06446373800006,11.503607489000132],[103.05730228000019,11.525213934000135],[103.05632571700002,11.55027903900013],[103.05762780000012,11.570217190000122],[103.05079186300011,11.563381252000099],[103.05404707100016,11.583807684000163],[103.05762780000012,11.59125397300015],[103.04835045700005,11.591620184000163],[103.04330488400015,11.594305731000134],[103.03711998800004,11.604925848000093],[103.0374455090001,11.570257880000113],[103.03565514400012,11.554632880000128],[103.03028405000006,11.542873440000136],[103.02344811300006,11.542873440000136],[103.01270592500012,11.546372789000129],[102.99854576900012,11.543158270000077],[102.98462975400011,11.536322333000072],[102.9751082690001,11.5292422550001],[102.95460045700005,11.55711497600005],[102.9751082690001,11.570217190000122],[102.98023522200005,11.563788153000104],[102.9954533210001,11.549709377000156],[103.00294030000006,11.549709377000156],[102.9993595710001,11.559556382000082],[102.98845462300001,11.572699286000145],[102.98243248800011,11.583807684000163],[102.98243248800011,11.624823309000178],[102.99382571700019,11.635728257000068],[103.00782311300006,11.631170966000111],[103.02442467500012,11.623480536000088],[103.04330488400015,11.624823309000178],[103.04330488400015,11.63226959800015],[103.03101647200016,11.631170966000111],[103.02100670700011,11.633978583000072],[103.0135197270001,11.639390367000104],[103.00912519600014,11.645900783000101],[103.00912519600014,11.652736721000124],[103.01677493600019,11.652736721000124],[103.01677493600019,11.65957265800013],[103.00619550900014,11.655015367000189],[103.00294030000006,11.652736721000124],[102.9954533210001,11.652736721000124],[102.99431399800008,11.660101630000113],[102.98926842500005,11.673244533000073],[102.98243248800011,11.673244533000073],[102.98243248800011,11.652736721000124],[102.9751082690001,11.65957265800013],[102.9751082690001,11.63849518400012],[102.96876061300011,11.63849518400012],[102.97038821700019,11.666205145000106],[102.97584069100006,11.68732330900012],[102.98633873800011,11.702866929000123],[103.00294030000006,11.714178778000104],[103.01286868600019,11.718573309000178],[103.02165774800008,11.720526434000135],[103.03028405000006,11.718491929000109],[103.04029381600006,11.711086330000114],[103.0525822270001,11.705511786000102],[103.06666100400011,11.708197333000086],[103.07878665500002,11.716457424000083],[103.08497155000012,11.72785065300013],[103.07878665500002,11.72785065300013],[103.06983483200011,11.71515534100017],[103.05600019600008,11.716131903000145],[103.0413517590001,11.72467682500016],[103.03028405000006,11.734686591000155],[103.02344811300006,11.734686591000155],[102.98243248800011,11.714178778000104],[102.97681725400011,11.720363674000069],[102.96973717500006,11.732855536000088],[102.96387780000012,11.747137762000165],[102.96143639400005,11.758530992000132],[102.95606530000012,11.766913153000104],[102.93262780000006,11.779120184000163],[102.8992619150001,11.830267645000134],[102.89307701900012,11.830267645000134],[102.90788821700008,11.79755280200011],[102.95679772200006,11.746812242000146],[102.96876061300011,11.714178778000104],[102.9665633470001,11.697455145000077],[102.954844597,11.667873440000122],[102.95460045700005,11.652736721000124],[102.96501712300008,11.609930731000118],[102.96371504000015,11.592352606000091],[102.95460045700005,11.570217190000122],[102.95264733200011,11.582953192000076],[102.943125847,11.600978908000101],[102.94092858200004,11.615179755000113],[102.93726647200016,11.621730861000103],[102.91968834700005,11.638373114000146],[102.91359227323525,11.64589160539414],[102.92878666200014,11.668694560000105],[102.92511763500013,11.725797018000122],[102.91380049600016,11.765536194000118],[102.8851717530001,11.807704163000082],[102.8430037850002,11.866046855000135],[102.79711511200004,11.952966614000147],[102.78714156100014,12.002627666000137],[102.77107019100018,12.037354228000169],[102.76501241200006,12.044563616000175],[102.75122644000007,12.06097035800019],[102.69996342000015,12.138743388000123],[102.69221195500015,12.178482564000205],[102.71505293800007,12.3421935020001],[102.7200655520002,12.361210429000081],[102.73065922000009,12.380072327000093],[102.75649743700009,12.402241517000121],[102.76512740100006,12.416349182000147],[102.763750896,12.42526146900019],[102.7620784910001,12.43608957900011],[102.75060632400017,12.449008688000118],[102.71841190600017,12.465906880000205],[102.70482100500007,12.480324606000138],[102.70213383000007,12.48812774700015],[102.7004801840001,12.504870911000111],[102.6967594810001,12.513087464000135],[102.68973148600017,12.519702047000138],[102.6648234460001,12.534223124000079],[102.5885490310001,12.609825745000123],[102.55862837700013,12.631219788000138],[102.5017843020001,12.649771627000163],[102.49587711000012,12.654152464000092],[102.48638472500014,12.661192119000177],[102.4792533770001,12.677108460000099],[102.47666955600019,12.698450826000098],[102.47796146700013,12.719638164000159],[102.48271569900012,12.735218608000181],[102.49519613400017,12.746029849000138],[102.49527307200006,12.746096497000138],[102.5055566820001,12.777774150000155],[102.50664188700014,12.787515157000186],[102.50431644800018,12.799736633000123],[102.50049239100017,12.806506246000154],[102.4955314530001,12.812681580000131],[102.48974369400004,12.82309438100016],[102.48333581500017,12.843790792000092],[102.47920170100016,12.882108867000099],[102.47408573400016,12.90525990800009],[102.46788456300007,12.916344503000104],[102.46483565300016,12.927532451000145],[102.46628259300016,12.937919414000163],[102.47759973200013,12.949934184000126],[102.47889164300008,12.953629049000128],[102.47759973200013,12.957298075000123],[102.46907312000022,12.96523040800018],[102.4672127690002,12.969467876000138],[102.46881473900007,12.973395284000105],[102.47408573400016,12.976960958000163],[102.48137211200006,12.980552470000148],[102.4866431070001,12.984789937000187],[102.48974369400004,12.989957581000112],[102.4900967720001,12.995187554000111],[102.49015710500007,12.996081238000158],[102.47315555800006,13.006132304000104],[102.46318200800013,13.01928395600008],[102.44726566600009,13.050806580000142],[102.40189375900016,13.102999777000122],[102.38205000800016,13.136615295000155],[102.32918681200007,13.272628953000122],[102.32820316600007,13.275159811000094],[102.32706628500014,13.3454397590001],[102.33362919200013,13.406262919000113],[102.32939172400009,13.481865540000157],[102.3295283460001,13.484602854000157],[102.33011519400004,13.4963607790001],[102.32939172400009,13.504344788000168],[102.32551599100012,13.513439840000132],[102.31476729300019,13.530338033000135],[102.31342370600012,13.541009217000122],[102.33223392800014,13.564599508000143],[102.37130131000006,13.568914490000111],[102.45222660300013,13.562170716000168],[102.51320479400013,13.56715749100013],[102.53253177900015,13.573823751000148],[102.5795573330001,13.600488790000098],[102.59774743700008,13.605449728000139],[102.5625041100001,13.628032329000163],[102.54105839100006,13.648599549000153],[102.54235030100014,13.669709371000096],[102.57438969000012,13.69389394100017],[102.67495202700016,13.741901347000109],[102.6986198330001,13.761796774000118],[102.70265059400018,13.771201884000163],[102.70399418100007,13.791769104000153],[102.7064746500001,13.801949361000124],[102.71128055900013,13.810398458000122],[102.72910892800004,13.832154236000136],[102.73717045100008,13.849595032000167],[102.75437870400006,13.904113668000093],[102.77282718900003,13.93607554100008],[102.79742517100011,13.960001729000169],[102.85499271600005,14.004004212000126],[102.8697721770001,14.020618185000146],[102.87333785000006,14.033408102000122],[102.87287276200013,14.048368429000092],[102.8762317310002,14.071312765000116],[102.88325972500016,14.086944885000063],[102.90408532700022,14.115987040000148],[102.91126835200006,14.13211008800013],[102.91369714400011,14.151772970000167],[102.91392961400018,14.164946285000068],[102.91400720200006,14.169342956000149],[102.91860640500008,14.185491842000133],[102.93405765800006,14.200968934000144],[102.95090417500015,14.208642884000126],[102.98780114800016,14.219004008000141],[103.0048543710001,14.228770854000103],[103.0169296110001,14.238872481000143],[103.08500451700016,14.295821025000121],[103.11802575700014,14.31323598200015],[103.13823124200022,14.319747213000113],[103.19858931500013,14.32850636800019],[103.24327762700008,14.341931315000123],[103.27367517100005,14.351063131000132],[103.3413712980001,14.35090810100017],[103.36286869400007,14.353466085000079],[103.3802319750001,14.361062520000145],[103.40808557200015,14.380802918000198],[103.42250329600009,14.384833679000108],[103.42622399900009,14.382508240000163],[103.43149499600011,14.377521464000111],[103.43924646000013,14.372870585000143],[103.44968510000015,14.37157867400019],[103.45702315300016,14.374420878000166],[103.49485030100013,14.399949036000109],[103.5334009200001,14.419069316000103],[103.55024743700008,14.421859844000151],[103.56812748200011,14.415942892000144],[103.5816150320002,14.407416280000133],[103.59613610900007,14.40434153300019],[103.61680668100014,14.41454762800008],[103.62290450000009,14.422479960000132],[103.62445479400006,14.430567322000131],[103.62745202700015,14.437802023000188],[103.63706384300016,14.443279724000176],[103.64719242300012,14.443977356000161],[103.65716597500013,14.441160991000102],[103.66538252800015,14.435941671000178],[103.6714803470002,14.429559631000146],[103.67385746300008,14.419327698000174],[103.67168705300017,14.395608216000127],[103.67489099100007,14.386487325000147],[103.68222904400014,14.383800151000115],[103.71654219600005,14.381526387000106],[103.77524662300013,14.366979472000152],[103.79421187400007,14.36483490000016],[103.80728601100012,14.365997620000172],[103.81550256400007,14.367961324000118],[103.82402917500016,14.368038839000134],[103.8384469000001,14.363387960000168],[103.84924727400013,14.357083436000151],[103.85916914900011,14.34961619100014],[103.87033125800022,14.34325999000019],[103.88516239400009,14.340417786000131],[103.9027840580001,14.342433167000179],[103.90800337700009,14.348324280000085],[103.91053552300016,14.356256612000136],[103.9198372810001,14.364576518000192],[103.9739941810001,14.367289530000134],[104.00138269100015,14.345068665000099],[104.03595422400022,14.352587585000137],[104.04506401500005,14.356968011000106],[104.04572418600017,14.357285453000172],[104.07372969600011,14.370751852000167],[104.11021325700014,14.380441183000116],[104.11615604700015,14.377469788000097],[104.12127201400014,14.371475321000162],[104.12835168500006,14.366359355000084],[104.14090905800016,14.365997620000172],[104.1484538170001,14.369614970000157],[104.17325850500006,14.396021627000138],[104.17480879700004,14.401344299000186],[104.17703088400017,14.404212342000164],[104.18566084800014,14.403979798000194],[104.18256026200018,14.400362448000122],[104.18349043800006,14.391422425000187],[104.1891748460001,14.382301534000119],[104.20126713100014,14.377986552000136],[104.21914717700022,14.382869975000162],[104.2323763430002,14.39312774700015],[104.2474658610001,14.401085917000115],[104.27123702000009,14.399070536000167],[104.32539392100007,14.37762481700014],[104.43918542500009,14.361424255000145],[104.44600671400016,14.358685404000182],[104.45262129700004,14.35692840600012],[104.45850831800007,14.357042243000125],[104.46197473200017,14.357109273000162],[104.46750411000019,14.360080668000165],[104.47391198800014,14.365687561000184],[104.48197351100012,14.37121694000011],[104.492618856,14.374007467000155],[104.5108089610001,14.370545145000122],[104.5265185960002,14.363542989000123],[104.54284834800009,14.360390727000151],[104.56279545100018,14.368478089000147],[104.57385420800018,14.38054453600013],[104.58346602400009,14.395814921000179],[104.59462813300014,14.41000010200014],[104.61044112100015,14.418965963000176],[104.6265641690002,14.419276021000158],[104.65136885600005,14.408914897000145],[104.66837040200008,14.40963836700014],[104.6747266040002,14.414650981000193],[104.68464847900012,14.430567322000131],[104.69286503100014,14.433977966000157],[104.70102990800014,14.430076396000104],[104.70619755100009,14.412248027000144],[104.71286381000006,14.406847839000177],[104.72795332900009,14.409948426000128],[104.75792566000021,14.433047791000192],[104.77167159000007,14.43986908000015],[104.78825972500007,14.438215434000199],[104.80185062700015,14.430076396000104],[104.81507979400013,14.419844462000114],[104.83140954700016,14.411757101000203],[104.8384892180002,14.411447042000134],[104.85735111500006,14.414134217000154],[104.86654952,14.413772481000164],[104.87424930900013,14.41056854200019],[104.89021732600006,14.400233256000178],[104.89817549700008,14.396280009000106],[104.91562096700008,14.39321676200015],[104.9551229250001,14.386280619000102],[104.97382979400018,14.380647888000155],[104.9787390540001,14.368503927000164],[104.97899743700006,14.354964701000185],[104.97429488200012,14.309644470000165],[104.97594852700016,14.301117859000158],[105.00772953300006,14.243834534000184],[105.02535119700003,14.224378358000195],[105.04731368100013,14.214068909000103],[105.10141890500014,14.230527852000165],[105.13221805800012,14.28070566800011],[105.1550073650001,14.330470073000129],[105.18430790300008,14.345740458000181],[105.18425622600014,14.31416615800019],[105.18797692900014,14.291015117000198],[105.19743371600012,14.27029286700018],[105.2569132890001,14.182442932000114],[105.2753101000001,14.164821269000129],[105.28218306500017,14.161255595000156],[105.29660078900017,14.156837260000145],[105.30393884300005,14.15239308700015],[105.3294670010001,14.117563171000171],[105.33778690600016,14.109992574000131],[105.34786381100011,14.106065165000159],[105.36409021000011,14.1040497850002],[105.3924605710001,14.103739726000128],[105.42217452000008,14.10787384000015],[105.45007979400006,14.11714976000016],[105.4738509520001,14.132523499000142],[105.49049076400016,14.136915995000138],[105.50527022300017,14.145055033000148],[105.53317549600014,14.164330343000188],[105.54123702000007,14.15918853800018],[105.54893680800015,14.153116557000146],[105.55555139200013,14.14608856200013],[105.5613908290002,14.138156230000078],[105.57653202300006,14.144021505000168],[105.59456709800006,14.136347554000096],[105.60986332200011,14.120741272000146],[105.61725305200011,14.102990417000129],[105.63291101100005,14.114023336000116],[105.64314294500011,14.11345489500016],[105.65327152500018,14.107047017000125],[105.66934289600007,14.100406596000125],[105.68365726700013,14.098856303000105],[105.70515466300017,14.102008565000148],[105.71600671400014,14.101543477000133],[105.74401534000006,14.086944885000063],[105.7588981530001,14.062476095000122],[105.77016361500014,14.034700012000158],[105.78711348500016,14.010153707000184],[105.87305139200012,13.936850688000092],[105.89558060100015,13.924798655000146],[105.8996647540001,13.922613831000206],[105.9245727950001,13.917110291000112],[105.9491707760001,13.919590760000089],[105.97397546400012,13.929280091000123],[105.99743656500019,13.928298239000156],[106.04921634900009,13.915456645000162],[106.06916345200008,13.916541850000156],[106.08383955900015,13.934008484000117],[106.08197920800015,13.98095652300016],[106.09407149300014,13.996175232000098],[106.10848921700008,14.010360413000157],[106.12642093900016,14.022013449000127],[106.14207889800011,14.035010071000144],[106.14946862900008,14.053561911000187],[106.14455936700008,14.072397970000111],[106.13127852400007,14.086996562000166],[106.1152588300001,14.100303243000097],[106.10171960500006,14.115160218000128],[106.07619144700018,14.174510600000147],[106.06058516500016,14.191848043000164],[106.02627201300001,14.213035380000122],[106.01247440600017,14.225773621000172],[106.00405114800017,14.245927430000151],[106.00797855600014,14.27075795500019],[106.00451623600011,14.289981588000131],[105.99340580300012,14.30594960600017],[105.97397546400012,14.321297506000136],[105.96916955600014,14.332020365000146],[105.96782596800003,14.343363343000133],[105.9694279380001,14.354861348000156],[105.97397546400012,14.36584259000014],[105.99412927300008,14.362406107000195],[106.03815759300008,14.347652486000188],[106.05541752200006,14.348427633000197],[106.05810469600007,14.35310435000018],[106.06058516500016,14.368839824000148],[106.06353072100015,14.372922261000154],[106.06864668800014,14.373439026000199],[106.07944706200007,14.372715556000118],[106.0950016680001,14.373645732000156],[106.11903121000014,14.369511618000132],[106.15411950700016,14.367547913000108],[106.17323978700009,14.369666646000084],[106.18915612900017,14.378890890000093],[106.20393558800012,14.399897360000182],[106.21065352400015,14.421394756000142],[106.2207821050001,14.473484599000187],[106.23008386200009,14.490460307000191],[106.23597497600011,14.484362488000142],[106.29674646000008,14.44787892600013],[106.30646163000009,14.445475973000084],[106.32015588400004,14.444494120000115],[106.33343672700019,14.448111470000185],[106.33999907000012,14.448987947000147],[106.39379480000011,14.456172994000084],[106.41921960500011,14.466456604000172],[106.4295032150001,14.485964457000177],[106.43348230000018,14.486636251000164],[106.44082035300008,14.492630717000097],[106.44516117400022,14.499477845000143],[106.4335856530001,14.505704855000145],[106.43265547700004,14.512422790000157],[106.43430912300019,14.519605815000203],[106.43647953400009,14.523817444000157],[106.44578129100009,14.529088440000095],[106.45668501800017,14.527899882000085],[106.46944909700002,14.524695944000198],[106.48484867400012,14.523817444000157],[106.48484867400012,14.530018616000149],[106.47751062100022,14.532602438000154],[106.47316980000008,14.537485861000079],[106.47094771400006,14.544643046000116],[106.47058597900016,14.554254862000134],[106.4722396240002,14.56407338400011],[106.47714888600015,14.566889751000161],[106.48376346800015,14.567484029000125],[106.4910498460001,14.570998027000172],[106.51249556500012,14.590350851000137],[106.51843835500009,14.585002340000186],[106.53099572800008,14.565959575000122],[106.53497481300016,14.553247172000153],[106.54024580900008,14.52167287300017],[106.54375980700016,14.51211273200009],[106.5524414470001,14.506945089000167],[106.57538578300014,14.502009990000133],[106.58566939300013,14.495963847000096],[106.6053581140001,14.466637471000125],[106.62204929000009,14.457593943000147],[106.63440026900015,14.450901998000148],[106.70716068500022,14.429301250000092],[106.71150150600013,14.425838928000145],[106.7192529710002,14.41788075800018],[106.72390385000008,14.411602071000173],[106.73165531400011,14.396719259000136],[106.76669193500013,14.348324280000085],[106.79299524000005,14.322589417000188],[106.80689620000012,14.312925924000155],[106.82084883600012,14.307577414000107],[106.83583500200008,14.307060649000164],[106.87459232600011,14.32835133900015],[106.87929488100009,14.33269215900013],[106.88508264200017,14.335534363000193],[106.89567631000013,14.336309509000115],[106.9047713630001,14.333312277000106],[106.92347823100013,14.321917623000104],[106.93360681200008,14.320160624000124],[106.94611250800008,14.323519592000139],[106.94972985800015,14.328661398000134],[106.95014327000015,14.334862569000123],[106.96109867400004,14.360390727000151],[106.97365604700022,14.36302622500017],[106.97794519100009,14.36542917900013],[106.9973755290001,14.3951431280002],[107.0265727130002,14.43023142500013],[107.02724450800011,14.435269877000108],[107.030345093,14.436096701000123],[107.04295414300006,14.430722351000071],[107.05933557200008,14.418035787000122],[107.06786218300012,14.406124370000086],[107.07855920500006,14.400775859000133],[107.10078007000017,14.40762298600019],[107.13142419500011,14.42754425000011],[107.15870935100011,14.451522115000115],[107.16682255100014,14.46715423600017],[107.17245528200006,14.48425913600012],[107.18056848200015,14.496170553000153],[107.19550297100014,14.496118877000145],[107.19560632300012,14.496067200000125],[107.1958130290001,14.495963847000096],[107.19596805900002,14.495963847000096],[107.21121260600009,14.49345754000012],[107.21973921800011,14.497979228000148],[107.23028120900007,14.518262228000152],[107.23239994400015,14.538312683000099],[107.23389855900014,14.544927267000107],[107.23787764500005,14.549810690000127],[107.24945316600005,14.556631978000084],[107.25451745600006,14.560972799000155],[107.27219079600016,14.585364075000186],[107.28728031400007,14.598515727000162],[107.30567712400014,14.59722381600011],[107.33270389800012,14.578232727000142],[107.35156579700012,14.561618754000135],[107.36138431900011,14.557923889000138],[107.38014286400019,14.554048157000167],[107.40344893499999,14.54389373800012],[107.41492110200014,14.54342865000018],[107.42784021000014,14.553712260000097],[107.4309407960001,14.561386210000165],[107.4309407960001,14.569886983000176],[107.42975223800008,14.578336080000085],[107.43032067900012,14.586242574000124],[107.4332662360001,14.59432993600012],[107.44044926000016,14.603915914000126],[107.4438082280001,14.609548645000162],[107.45176639800016,14.632182923000116],[107.4582259520001,14.638797506000103],[107.47378055800013,14.646264750000126],[107.50690515100021,14.693445333000154],[107.52039270000009,14.704581605000087],[107.53243331000007,14.677942403000145],[107.52726566600009,14.652827657000117],[107.50401127200016,14.602107239000134],[107.50256433200015,14.586604309000123],[107.5064400630001,14.556864522000138]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kuwait","sov_a3":"KWT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kuwait","adm0_a3":"KWT","geou_dif":0,"geounit":"Kuwait","gu_a3":"KWT","su_dif":0,"subunit":"Kuwait","su_a3":"KWT","brk_diff":0,"name":"Kuwait","name_long":"Kuwait","brk_a3":"KWT","brk_name":"Kuwait","brk_group":null,"abbrev":"Kwt.","postal":"KW","formal_en":"State of Kuwait","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kuwait","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":2,"mapcolor13":2,"pop_est":2691158,"gdp_md_est":149100,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"KU","iso_a2":"KW","iso_a3":"KWT","iso_n3":"414","un_a3":"414","wb_a2":"KW","wb_a3":"KWT","woe_id":23424870,"woe_id_eh":23424870,"woe_note":"Exact WOE match as country","adm0_a3_is":"KWT","adm0_a3_us":"KWT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KWT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[48.38111412900017,29.43398672100004],[48.38900800900015,29.424872137000037],[48.39946355700007,29.397639129000154],[48.397356329000075,29.387497199000066],[48.3825411870001,29.392089315000153],[48.373014450000106,29.393918625000182],[48.363482306000066,29.399436459000114],[48.33592728300019,29.420592543000154],[48.316867266000116,29.427013122000076],[48.29040357900012,29.430649078],[48.26924214800007,29.429685286],[48.27003014400006,29.455877997000144],[48.27003014400006,29.455959377000127],[48.2810978520001,29.471096096000124],[48.29851321700019,29.47313060100005],[48.338226759000094,29.46279531500015],[48.35385175900009,29.457424221000096],[48.361664259000094,29.451605536000145],[48.373220248000194,29.443060614000114],[48.38111412900017,29.43398672100004]]],[[[48.18873131600011,29.983547268000123],[48.34449303500011,29.79059479400009],[48.35954837300008,29.754461981000144],[48.352712436000076,29.709784247000083],[48.3338322270001,29.67926666900014],[48.30307050900015,29.64520905200014],[48.26628665500007,29.615952867000104],[48.22901451900006,29.599920966000024],[48.222341342000135,29.600531317000087],[48.18580162900016,29.603949286000088],[48.161631707000055,29.62970612200003],[48.12671959700006,29.70233795800011],[48.085134311000076,29.76780833500005],[48.07927493600002,29.773911851000047],[48.07374108200011,29.77968984600001],[48.05372155000006,29.790025132000114],[48.04607181100019,29.800441799000012],[48.04607181100019,29.800482489],[48.06519616000017,29.812201239],[48.07683353000019,29.817572333000143],[48.09848066500009,29.830715236000017],[48.10954837300013,29.83331940300009],[48.11329186300023,29.839097398000074],[48.119151238000114,29.87360260600018],[48.103282097000175,29.87913646],[48.09489993600019,29.88031647300012],[48.0852970710001,29.879909572000127],[48.085134311000076,29.87986888200014],[48.095062696000156,29.89472077],[48.1092228520001,29.893622137000065],[48.13355553500017,29.87986888200014],[48.14486738400015,29.8783226580001],[48.15870201900023,29.87921784100008],[48.16651451900023,29.88593170800011],[48.16081790500007,29.901556708000115],[48.17888431100007,29.908514716000113],[48.19369550900015,29.916449286000056],[48.19743899800008,29.925360419000118],[48.181407097000175,29.93508535400015],[48.18132571700019,29.93512604400014],[48.16993248800023,29.936468817000115],[48.15674889400012,29.93113841400016],[48.14722741000011,29.93512604400014],[48.1428328790001,29.941717841000024],[48.140391472000175,29.952215887000182],[48.13941491000011,29.962795315000122],[48.13941491000011,29.96283600500011],[48.140391472000175,29.969794012000122],[48.140391472000175,29.969875393],[48.12273196700008,29.969671942000147],[48.12029056100002,29.971421617000047],[48.116709832000055,29.97406647300012],[48.12086022200012,29.98139069200012],[48.13355553500017,29.989691473000036],[48.14795983200022,29.994940497000083],[48.16211998800023,29.99567291900003],[48.175791863000114,29.991888739],[48.18873131600011,29.983547268000123]]],[[[48.03109785200016,29.971014716000052],[48.02369225400011,29.969875393],[48.01628665500019,29.973700262000122],[48.01075280000006,29.98045482000005],[48.009287957000225,29.986883856000148],[48.023122592000135,29.995184637000033],[48.04363040500007,30.01902903900013],[48.054698113000114,30.02448151200015],[48.09376061300005,30.029282945000045],[48.09384199300004,30.029282945000045],[48.1092228520001,30.027980861000156],[48.10613040500013,30.01764557500014],[48.07886803500011,30.004055080000096],[48.072438998000194,29.998724677000112],[48.06275475400017,29.987453518000123],[48.05836022200017,29.983547268000123],[48.03109785200016,29.971014716000052]]],[[[48.02173912900011,29.779730536],[48.05241946700002,29.742987372000115],[48.07886803500011,29.743963934000178],[48.09603925900015,29.699164130000057],[48.119151238000114,29.65452708500008],[48.16130618600001,29.60162995000003],[48.18091701600022,29.562217471000157],[48.176758117000105,29.541916476000083],[48.154517580000146,29.53908982200015],[48.11353600400011,29.55463288],[48.09253991000017,29.565822658000013],[48.08594811300006,29.57501862200017],[48.066349156000086,29.577555659000108],[48.04192309600014,29.582093152000123],[48.023859171000105,29.584808654000184],[47.9655306170001,29.57629785900015],[47.93597742200021,29.55402521000009],[47.910619962000084,29.531789182000136],[47.84925759500001,29.50197937300014],[47.80704277300018,29.46762180400016],[47.78495163400006,29.437049468000126],[47.763865174000074,29.412932628000178],[47.718386922000064,29.39419479300001],[47.714206023000166,29.37847111200013],[47.70471693300007,29.363632791000114],[47.7269990070001,29.361926360000055],[47.76414804400022,29.36769881900001],[47.79174359600008,29.372480608000057],[47.8139986620001,29.37999364800008],[47.8373043390001,29.387504962000023],[47.851151713000064,29.380198011000104],[47.82261235700011,29.36343072100003],[47.82269505000013,29.351433494000094],[47.81643437300008,29.33755639100012],[47.840926378000205,29.322930741000118],[47.85790286900007,29.323029101000188],[47.87695438000017,29.328671430000114],[47.899184937000115,29.33524906100017],[47.90538684500009,29.359262786000116],[47.92020215200014,29.364872086000087],[47.939325902000036,29.35943313700001],[47.95937407200009,29.372436838000098],[47.9698834120002,29.387238707],[47.98574004100007,29.393761228000113],[47.993011915000096,29.38792552299999],[48.008392774000214,29.369167385000125],[48.01050866000011,29.366522528000033],[48.025238477000094,29.35488515800004],[48.03541100400017,29.351792710000137],[48.063273722000105,29.343368175000037],[48.10026635900013,29.34995411300015],[48.09305302100003,29.305678752000073],[48.09207328700009,29.287232887000112],[48.09537629600018,29.257745843000077],[48.10613070200023,29.213524759000066],[48.11465851100015,29.19325583300015],[48.128446779000136,29.17390027900014],[48.13380381300007,29.153617354000133],[48.15845787900011,29.01727936400006],[48.17603600400011,28.983791408000016],[48.2259220710001,28.918280341000166],[48.24097741000011,28.905666408000073],[48.279470248000194,28.894435940000093],[48.28239993600013,28.879380601000083],[48.27816816500009,28.859686591000024],[48.27686608200011,28.83958567900008],[48.28516686300006,28.81989166900003],[48.31251061300022,28.785956122000083],[48.318369988000114,28.773830471000093],[48.32878665500019,28.759955145],[48.35230553500011,28.751206773000135],[48.39356530000006,28.743394273000135],[48.383799675000056,28.728013414000188],[48.379649285000106,28.710353908000073],[48.38070722700015,28.69208405200011],[48.38672936300006,28.67511627800003],[48.37159264400006,28.684393622000087],[48.36622155000012,28.68870677299999],[48.36500084700012,28.680812893000123],[48.36597741000017,28.67572663],[48.37045332100015,28.671942450000174],[48.37989342500006,28.66766998900006],[48.3724064460001,28.65916575700014],[48.36768639400006,28.65672435099999],[48.36378014400006,28.658148505000053],[48.35954837300008,28.66144440300009],[48.352712436000076,28.66144440300009],[48.35181725400017,28.64052969000015],[48.36101321700002,28.635565497000087],[48.37468509200008,28.64166901200018],[48.38672936300006,28.653998114000117],[48.389496290000146,28.643744208],[48.39356530000006,28.59564850500011],[48.39714603000007,28.583319403000175],[48.405284050000056,28.569891669000082],[48.42090905000006,28.551581122000027],[48.43246504000009,28.540716864000146],[48.43278122712192,28.54047972316242],[48.255224650000144,28.53887929300005],[48.07740604600022,28.537277324000044],[47.89958744300011,28.535623678000075],[47.721820516000115,28.533970032000024],[47.66812870300012,28.533504944000086],[47.65980879700006,28.560040792],[47.64110192900009,28.57724904399999],[47.61815759300006,28.59148590100015],[47.596815227000064,28.608823344000157],[47.58167403200011,28.631483459000105],[47.568031453000145,28.66099070200012],[47.55841963700013,28.691479798000117],[47.554595581000086,28.745378317000146],[47.5499447020002,28.770596416000114],[47.49449589100007,28.90402496300008],[47.44632323400012,28.976242739],[47.434086141000215,28.994587911000067],[47.43398278800012,28.99461375],[47.43346602400007,28.994717102000113],[47.43336267100014,28.994717102000113],[47.377552124000054,29.001202495000154],[47.278023316000116,29.012700501],[47.17839115400008,29.02422434500012],[47.0787589920001,29.035748190000064],[46.97923018400016,29.04722035800007],[46.867350708000146,29.059415996],[46.75578129100015,29.07153411899999],[46.644160197000105,29.08362640400016],[46.532435750000126,29.09574452700015],[46.561468148000095,29.124166509000176],[46.71185632300009,29.271392720000094],[46.77448815900012,29.363531799000114],[46.8385669350001,29.424975078000116],[46.85344974800009,29.44456044600004],[46.883112020000134,29.51251495400002],[46.957836141000115,29.620441183000125],[46.97736983200011,29.657984111000033],[46.9798503010002,29.668061015000077],[46.98367435700007,29.69829172800017],[46.988842,29.712657776000082],[47.025428914000116,29.77213735000005],[47.110488322000116,29.96091135700014],[47.144698120000186,30.003337707000142],[47.19709802300022,30.034240214000146],[47.35822513800022,30.092117818000176],[47.41579268400008,30.098215637000138],[47.67417484500007,30.098215637000138],[47.73143233300013,30.088552145000033],[47.94800866000011,29.994045315],[47.95508873800006,29.97728099200019],[47.96550540500007,29.962062893],[47.97527103000019,29.94257233300011],[47.979746941000165,29.921454169000114],[47.97950280000012,29.884344794000082],[47.98267662900017,29.860663153000175],[47.99561608200011,29.827704169000114],[48.02173912900011,29.779730536]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"South Korea","sov_a3":"KOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Korea","adm0_a3":"KOR","geou_dif":0,"geounit":"South Korea","gu_a3":"KOR","su_dif":0,"subunit":"South Korea","su_a3":"KOR","brk_diff":0,"name":"Korea","name_long":"Republic of Korea","brk_a3":"KOR","brk_name":"Republic of Korea","brk_group":null,"abbrev":"S.K.","postal":"KR","formal_en":"Republic of Korea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Korea, Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":1,"mapcolor13":5,"pop_est":48508972,"gdp_md_est":1335000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10_":"KS","iso_a2":"KR","iso_a3":"KOR","iso_n3":"410","un_a3":"410","wb_a2":"KR","wb_a3":"KOR","woe_id":23424868,"woe_id_eh":23424868,"woe_note":"Exact WOE match as country","adm0_a3_is":"KOR","adm0_a3_us":"KOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":17,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KOR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.82336637100015,33.559439826000116],[126.83521569100006,33.544582424000126],[126.84994550900002,33.53497955900015],[126.89820397200006,33.51898834800015],[126.91285241000016,33.50657786700013],[126.9226994150001,33.476629950000145],[126.93238366000006,33.464911200000145],[126.93702233200005,33.469468492000104],[126.9433699880001,33.473822333],[126.94605553500017,33.47801341400013],[126.95362389400012,33.46503327000012],[126.94898522200016,33.46059804900007],[126.93930097700003,33.458238023000106],[126.93238366000006,33.451320705000015],[126.93287194100004,33.44550202000006],[126.93921959700006,33.43626536700018],[126.93921959700006,33.43085358300014],[126.93580162900005,33.425482489],[126.92725670700021,33.416083075000145],[126.92554772199999,33.41315338700003],[126.90750666100004,33.39572509800017],[126.87353004000009,33.37304551400011],[126.86299236000005,33.35414120600002],[126.84795550900006,33.33206531500009],[126.84723913600007,33.323217852000184],[126.84058678500017,33.31020742400007],[126.81592858200011,33.307806708000115],[126.80640709700016,33.3036156270001],[126.78014100500006,33.30555029000011],[126.74179256500005,33.280208472000034],[126.64072332900005,33.26466618400015],[126.60691886200017,33.240610458],[126.56552749000015,33.23290783600014],[126.52120889500006,33.23661779000007],[126.47056220500005,33.228713895000126],[126.42845775900007,33.239309302],[126.33342729600022,33.238169044000145],[126.30379021400019,33.22655937400013],[126.2861434250001,33.200384833000086],[126.27003014400012,33.19757721600002],[126.25391686300023,33.20404694200011],[126.23115058600004,33.23492299600015],[126.20082394300006,33.243552024000124],[126.17139733200023,33.269354559000114],[126.16114342500012,33.30076732000005],[126.17896569100012,33.34145742400012],[126.19581139400013,33.36668528900018],[126.20622806100019,33.375555731000055],[126.24097741000006,33.392767645000056],[126.27066067500007,33.43587354099999],[126.29794924799997,33.441714895000146],[126.31056732700009,33.46447646100016],[126.35736028600014,33.47796084100004],[126.45938010300009,33.50238055700011],[126.48493458800024,33.52075755100016],[126.58243391300002,33.52928356800011],[126.648797658,33.55342627800009],[126.66469154300015,33.54967581],[126.74550521600023,33.560556374000114],[126.7923603300002,33.563796905000096],[126.82336637100015,33.559439826000116]]],[[[127.29566491000017,34.061468817],[127.29810631600013,34.05719635600009],[127.29468834700018,34.04791901200004],[127.29639733200011,34.037583726000136],[127.30909264400023,34.020086981000176],[127.3149520190001,34.01577383000007],[127.32211347700014,34.01410553600006],[127.32471764400023,34.01068756700006],[127.32349694100004,34.005764065],[127.30933678499999,34.011460679],[127.29566491000017,34.01410553600006],[127.29322350400004,34.01723867400012],[127.28980553500004,34.02407461100016],[127.28760826900022,34.032416083000115],[127.28386478000017,34.03461334800012],[127.2807723320001,34.037787177],[127.27833092500006,34.044623114],[127.27979576900023,34.04865143400018],[127.27930748800021,34.053290106000084],[127.28003991000017,34.05744049700006],[127.28321373800023,34.058294989000146],[127.2868758470001,34.057277736000074],[127.29151451900023,34.05849844],[127.294200066,34.06110260600009],[127.29566491000017,34.061468817]]],[[[125.13738040500007,34.05133698100015],[125.13428795700015,34.04686107],[125.12989342500005,34.04755280200011],[125.12769616000017,34.048570054],[125.12281334699999,34.051174221000096],[125.10328209700005,34.066066799000126],[125.09213300900004,34.07176341400013],[125.0896916020001,34.07953522300012],[125.09457441500014,34.09007396],[125.10222415500017,34.09593333500014],[125.11329186300011,34.092840887000065],[125.12208092500006,34.08380768400003],[125.13640384200006,34.059271552000105],[125.13738040500007,34.05133698100015]]],[[[126.56788170700011,34.16864655200003],[126.57374108200021,34.168036200000145],[126.58204186300011,34.170152085000055],[126.59327233200011,34.16998932500009],[126.59896894599999,34.16864655200003],[126.60767662900017,34.165594794000114],[126.61597741000017,34.156968492000104],[126.61353600400004,34.15253327000012],[126.6093856130001,34.155666408000016],[126.60580488400004,34.15615469],[126.60401451900022,34.15224844],[126.60027103000017,34.15346914300004],[126.59115644600004,34.15761953300016],[126.58179772200018,34.157416083],[126.576426629,34.153062242000104],[126.57300866,34.14769114800005],[126.56185957099997,34.141424872000115],[126.55193118600017,34.13397858300011],[126.53687584700018,34.12645091400016],[126.51775149800018,34.127142645],[126.50709069100017,34.138861395],[126.50635826900023,34.153998114],[126.5151473320001,34.168850002000156],[126.53288821700019,34.17910390800007],[126.54810631600017,34.17910390800007],[126.56788170700011,34.16864655200003]]],[[[126.66537519600004,34.119086005000085],[126.655528191,34.1168480490001],[126.6504012380001,34.11937083500011],[126.64861087300018,34.12400950700014],[126.64380944099999,34.127183335],[126.63868248800013,34.128119208000086],[126.63648522199999,34.14154694200009],[126.64283287900005,34.164618231000034],[126.64503014400022,34.17747630400005],[126.63843834700018,34.18256256700009],[126.63648522199999,34.18716054900004],[126.64478600400012,34.19375234600009],[126.64527428500016,34.197170315],[126.65381920700011,34.19708893400012],[126.67074628999997,34.189886786],[126.67310631600006,34.180121161000145],[126.66358483200023,34.17332591400013],[126.66187584700008,34.16571686400009],[126.6720483730002,34.153265692000055],[126.67603600400017,34.15143463700018],[126.67945397200019,34.14655182500012],[126.67628014400012,34.1435407570001],[126.67188561300021,34.142971096000146],[126.67042076900017,34.13703034100003],[126.67042076900017,34.12693919500004],[126.66537519600004,34.119086005000085]]],[[[126.91993248800011,34.166978257],[126.91358483200011,34.15766022300014],[126.90186608200011,34.152411200000145],[126.88697350400004,34.15135325700011],[126.87598717500005,34.15607330900012],[126.86695397200016,34.16282786700005],[126.86036217500012,34.16217682500009],[126.85694420700011,34.15717194200006],[126.85320071700008,34.15900299700003],[126.8491317070001,34.174383856000176],[126.85531660200014,34.184759833000086],[126.85694420700011,34.19428131700006],[126.8608504570001,34.20184967700011],[126.86793053500006,34.20746491100011],[126.88217207100016,34.21328359600007],[126.89926191500003,34.20966217700011],[126.90935306100006,34.19769928600009],[126.91895592500023,34.190497137000065],[126.92497806100006,34.18488190300015],[126.92237389400022,34.17234935100005],[126.91993248800011,34.166978257]]],[[[126.58887780000023,34.17910390800007],[126.58383222699997,34.17560455900009],[126.56861412900004,34.17902252800009],[126.56072024800007,34.185126044000086],[126.55876712300018,34.18915436400006],[126.5545353520001,34.19041575700008],[126.54981530000006,34.19122955900018],[126.5488387380001,34.194566148000106],[126.553965691,34.20652903900004],[126.55689537900005,34.21100495000009],[126.55730228000006,34.214056708],[126.55534915500017,34.216457424000126],[126.5561629570001,34.21865469000012],[126.55982506600004,34.22016022300009],[126.56218509200019,34.2223167990001],[126.56153405000022,34.225165106000034],[126.55640709700005,34.23212311400012],[126.55974368600006,34.23452383000016],[126.56763756600006,34.23240794500005],[126.57536868600006,34.228949286000145],[126.59620201900023,34.22601959800012],[126.60694420700023,34.22138092699999],[126.61215254000014,34.21816640800013],[126.61622155000012,34.21328359600007],[126.61703535200004,34.204535223],[126.61011803499999,34.19969310100011],[126.60661868600002,34.188299872000144],[126.59205162899998,34.187648830000015],[126.58399498800017,34.18626536700013],[126.58887780000023,34.17910390800007]]],[[[126.03321373800023,34.31488678600006],[126.06763756600017,34.30890534100014],[126.08204186300023,34.31073639500012],[126.08871503999997,34.307928778000175],[126.08773847700004,34.29682038000014],[126.08936608200023,34.28961823100012],[126.08464603000002,34.28388092700013],[126.07496178500017,34.28286367400007],[126.06934655000016,34.27899811400006],[126.06495201900005,34.280707098000065],[126.06080162900005,34.28607819200011],[126.05738366000006,34.285956122000144],[126.05567467500022,34.28099192900011],[126.0493270190001,34.28021881700009],[126.0286564460001,34.28733958500014],[126.02165774800018,34.295640367000104],[126.02100670700024,34.30109284100014],[126.02523847700014,34.30585358300006],[126.02572675900015,34.31077708500011],[126.03321373800023,34.31488678600006]]],[[[126.84351647200012,34.350043036000116],[126.85075931100002,34.34845612200009],[126.85499108200023,34.34870026200004],[126.85922285200016,34.349351304],[126.87037194100016,34.348374742000104],[126.88453209699999,34.34552643400014],[126.89332116000016,34.341253973000065],[126.89136803500004,34.33392975500005],[126.88559004000014,34.32831452000015],[126.88404381600006,34.32489655200014],[126.88306725400004,34.31793854400014],[126.876800977,34.31224192900008],[126.8681746750001,34.31362539300015],[126.85889733200023,34.31220123900009],[126.85385175900004,34.308539130000106],[126.84961998800011,34.304917710000076],[126.84058678500017,34.303371486000046],[126.835703972,34.30914948100009],[126.83366946700018,34.31683991100003],[126.82829837300014,34.32290273600002],[126.82056725399998,34.325628973000065],[126.81031334700018,34.32436758000007],[126.79835045700017,34.32086823100017],[126.78874759200008,34.32094961100016],[126.78492272200018,34.32257721600008],[126.78109785200016,34.324652411],[126.75896243600008,34.33274974200013],[126.75757897200018,34.33612702000014],[126.76783287900005,34.33722565300009],[126.77784264400012,34.339667059000035],[126.78223717500006,34.34178294500013],[126.78589928500006,34.34324778900019],[126.79379316500004,34.342230536000116],[126.8029077480002,34.338690497000144],[126.81397545700023,34.34251536700016],[126.82748457100004,34.351629950000145],[126.83765709700006,34.35374583500008],[126.84351647200012,34.350043036000116]]],[[[127.04590905000016,34.357652085000055],[127.05372155000023,34.35480377800003],[127.06739342500012,34.358384507],[127.07740319100016,34.359320380000085],[127.08204186300011,34.35594310100005],[127.08545983200011,34.351385809000114],[127.09156334700012,34.344916083000115],[127.09498131599999,34.342474677000084],[127.09693444100006,34.337795315000065],[127.09083092500019,34.336737372000115],[127.08236738400004,34.34027741100009],[127.07243899800012,34.34210846600014],[127.06527753999997,34.33978913],[127.06788170700005,34.33706289300012],[127.07398522200018,34.334173895],[127.06674238400015,34.328192450000174],[127.04908287900004,34.316717841000056],[127.0388289720001,34.312892971000124],[127.03785241000004,34.32172272300009],[127.04281660200009,34.327948309000035],[127.04916425900002,34.33144765800013],[127.04558353000007,34.3354352890001],[127.02369225399998,34.33917877800003],[127.02662194100006,34.343166408000016],[127.0242619150001,34.34821198100015],[127.01758873800011,34.35154857],[127.00082441499998,34.352850653000175],[126.99431399800018,34.35468170800006],[126.99146569100016,34.35626862200009],[126.99382571700012,34.35814036700005],[127.001231316,34.35936107000008],[127.00700931100008,34.36261627800011],[127.01628665500003,34.37189362200017],[127.02621504000003,34.37872955900018],[127.0254012380001,34.38133372599999],[127.02857506600017,34.380438544000086],[127.03565514400023,34.37474192900011],[127.04216556100002,34.36668528900016],[127.04590905000016,34.357652085000055]]],[[[126.74561608200015,34.3242048200001],[126.76392662900005,34.309230861000074],[126.76587975400017,34.30304596600011],[126.77149498800006,34.29189687700007],[126.76807701900017,34.289211330000015],[126.7631942070001,34.28978099200016],[126.7583113940001,34.290920315],[126.74935957099997,34.29413483300006],[126.74170983200004,34.298244533000016],[126.73747806100006,34.297552802000084],[126.73650149800008,34.29169342700011],[126.73170006600017,34.28937409100017],[126.722911004,34.292710679],[126.70777428499999,34.295640367000104],[126.68897545700005,34.30109284100014],[126.68881269600003,34.30756256700006],[126.69809004000014,34.313421942],[126.69564863400004,34.32078685099999],[126.68702233200023,34.32269928600005],[126.67660566500003,34.32046133000007],[126.66358483200023,34.323431708000086],[126.65186608200017,34.32977936400012],[126.64486738400008,34.337103583000115],[126.64193769600016,34.34796784100011],[126.640961134,34.36033763200014],[126.64177493600019,34.37295156500012],[126.64576256600017,34.385565497000115],[126.65365644600016,34.39520905200008],[126.66439863400015,34.39948151200018],[126.67017662900004,34.40058014500012],[126.68775475400005,34.402044989],[126.69922936300011,34.39891185100011],[126.70997155000013,34.39288971600011],[126.72185306100006,34.381293036],[126.73113040500012,34.362005927000055],[126.73389733200005,34.34617747600011],[126.73707116000006,34.33885325700011],[126.7425236340001,34.33274974200013],[126.74561608200015,34.3242048200001]]],[[[126.86019941500014,34.398871161000116],[126.86109459700005,34.39276764500012],[126.85377037900005,34.39175039300006],[126.83326256600017,34.39695872600008],[126.82471764400023,34.39520905200008],[126.81967207100006,34.389064846000096],[126.79330488400004,34.37889232000005],[126.78402754000014,34.36859772300012],[126.78109785200016,34.357855536000116],[126.77572675899998,34.35472239800004],[126.76921634200019,34.3609886740001],[126.76937910200014,34.37132396],[126.76726321700008,34.380031643000095],[126.76246178500017,34.382961330000015],[126.75757897200018,34.383246161000145],[126.753184441,34.38694896],[126.75684655000023,34.39288971600011],[126.76148522200016,34.39874909100014],[126.76840253999998,34.411363023000135],[126.78248131600004,34.42674388200008],[126.80225670700021,34.435777085],[126.82300866000006,34.43984609600012],[126.83545983200005,34.43805573100015],[126.8401798840001,34.43207428600014],[126.84099368600017,34.42548248900006],[126.83578535199999,34.421047268000095],[126.83659915500019,34.41864655200005],[126.84587649800008,34.41396719000012],[126.85352623800011,34.406887111000074],[126.86019941500014,34.398871161000116]]],[[[127.48682701900023,34.46385325699999],[127.48707116000017,34.461249091000084],[127.49170983200013,34.46222565300015],[127.50074303500001,34.46963125200015],[127.50993899800008,34.47003815300015],[127.53191165500017,34.45058828300016],[127.53638756600004,34.44065989800005],[127.53638756600004,34.434759833000115],[127.5288192070001,34.42804596600016],[127.51059004000003,34.41828034100003],[127.49463951900012,34.41425202000006],[127.488942905,34.41693756700014],[127.48853600400005,34.42548248900006],[127.48178144599997,34.43134186400003],[127.47169030000022,34.434027411],[127.467051629,34.439195054],[127.46973717500005,34.44318268400015],[127.458832227,34.448919989000146],[127.45215905000022,34.453029690000086],[127.45573978000002,34.46051666900014],[127.45508873800006,34.46613190300015],[127.45337975400017,34.47060781500012],[127.45826256600006,34.47288646],[127.46534264400012,34.47036367400006],[127.47282962300007,34.466782945000105],[127.48682701900023,34.46385325699999]]],[[[127.21021569100006,34.423976955000015],[127.16895592500006,34.41771067900008],[127.15300540500017,34.41958242400012],[127.1412866550002,34.424302476000136],[127.11736087300001,34.437567450000174],[127.11736087300001,34.445013739000146],[127.12281334700018,34.45058828300016],[127.12378991000004,34.455226955000064],[127.11988366000006,34.45970286700004],[127.11052493600017,34.46491120000006],[127.12435957100003,34.473334052],[127.14031009200015,34.47870514500015],[127.17302493600006,34.48371002800009],[127.20427493600012,34.48676178600009],[127.22055097700014,34.485744533],[127.23422285200009,34.48029205900017],[127.24512780000022,34.46405670800014],[127.24187259200019,34.44546133000013],[127.22868899800007,34.43024323100014],[127.21021569100006,34.423976955000015]]],[[[127.77930748800023,34.48847077000009],[127.77116946700014,34.48818594000015],[127.76905358200011,34.489935614000146],[127.76579837300007,34.49396393400012],[127.75652103000013,34.49823639500012],[127.74195397200018,34.50226471600008],[127.73218834700006,34.508490302000055],[127.72771243600017,34.5169945330001],[127.72282962300018,34.523179429000045],[127.71461022199999,34.5268415390001],[127.70753014400022,34.533880927000084],[127.7129012380001,34.542425848],[127.729746941,34.54905833500008],[127.74805748800004,34.551092841000084],[127.76107832100016,34.54311758000013],[127.77621504000014,34.51878489800008],[127.77442467500016,34.51178620000009],[127.77491295700017,34.50820547100012],[127.78296959700019,34.506984768],[127.78956139400017,34.50397370000009],[127.79395592500023,34.49823639500012],[127.79175866000017,34.49201080900015],[127.77930748800023,34.48847077000009]]],[[[126.31560306100008,34.53827545800006],[126.32227623800024,34.5338402360001],[126.32683353000017,34.53506094],[126.34945722700004,34.54682038],[126.35035241000006,34.538153387000094],[126.38005618600008,34.498439846000096],[126.38160241,34.48468659100017],[126.37891686300021,34.469305731000034],[126.37354576900017,34.454413153000175],[126.35385175900002,34.41958242400012],[126.34587649800008,34.40900299700017],[126.33594811300006,34.403469143000066],[126.33423912900015,34.40656159100014],[126.31714928499999,34.41990794500005],[126.30925540500006,34.423976955000015],[126.30925540500006,34.41771067900008],[126.30518639400006,34.40167877800017],[126.2099715500001,34.3587914080001],[126.19849694100017,34.35553620000014],[126.1564233730002,34.35260651200004],[126.144786004,34.35504791900017],[126.14258873800013,34.363755601000044],[126.148203972,34.37107982000005],[126.15560957099997,34.37718333500014],[126.15845787900004,34.382310289000074],[126.15308678500016,34.388495184000035],[126.12427819100004,34.403469143000066],[126.12427819100004,34.382310289000074],[126.103282097,34.402777411000116],[126.11573326900023,34.4361839860001],[126.14421634200002,34.463202216000056],[126.17212975400015,34.46491120000006],[126.1811629570001,34.48651764500015],[126.18702233200023,34.494208075000145],[126.19629967500006,34.50275299700009],[126.20704186300011,34.50763580900014],[126.21656334700018,34.50897858300014],[126.22380618600013,34.51341380400011],[126.22657311300006,34.52757396000013],[126.23829186300004,34.51569245000009],[126.25416100400011,34.514349677],[126.26832116,34.52204010600011],[126.27442467500013,34.5372582050001],[126.26677493600006,34.549750067],[126.24105879000003,34.56647370000003],[126.24773196700019,34.57477448100012],[126.26392662900007,34.57575104400008],[126.28044681100019,34.56830475500011],[126.29476972699997,34.558905341000084],[126.30543053500006,34.55426666900014],[126.30787194100016,34.551459052000105],[126.31080162900017,34.54515208500008],[126.31560306100008,34.53827545800006]]],[[[126.05762780000005,34.53253815300009],[126.04672285199997,34.53115469],[126.03516686300007,34.53392161700016],[126.03158613400002,34.53904857],[126.03736412900017,34.540716864],[126.04346764400023,34.54096100500014],[126.04851321700018,34.54515208500008],[126.05445397199999,34.54889557500012],[126.05347741000006,34.552313544000114],[126.03126061300004,34.55638255400008],[126.03663170700021,34.56167226800015],[126.050466342,34.56342194200015],[126.06495201900005,34.56378815300015],[126.07634524800002,34.570990302],[126.08130944100012,34.58075592700014],[126.07642662900005,34.59076569200012],[126.06641686300023,34.60398997600005],[126.0600692070001,34.62079498900006],[126.06763756600017,34.62547435099999],[126.07984459700005,34.61737702000006],[126.08708743600008,34.61115143400009],[126.09937584699999,34.605454820000105],[126.10010826900023,34.59674713700004],[126.10238691500004,34.594875393000066],[126.10425866000017,34.58978913000014],[126.10336347699997,34.57941315300006],[126.10027103000017,34.56830475500011],[126.09937584699999,34.558661200000145],[126.0937606130001,34.553656317],[126.08570397200018,34.54873281500015],[126.07732181100013,34.54218170800006],[126.05762780000005,34.53253815300009]]],[[[126.0380965500001,34.56948476800012],[126.0285750660001,34.56586334800009],[126.02051842500018,34.571437893000095],[126.01661217500018,34.606146552000055],[126.02019290500009,34.625433661],[126.0285750660001,34.63422272300006],[126.04135175900015,34.61115143400009],[126.05201256600017,34.598334052000055],[126.06039472700004,34.58429596600011],[126.05762780000005,34.57257721600003],[126.04859459700016,34.57005442900011],[126.0380965500001,34.56948476800012]]],[[[128.27125084700018,34.6323102890001],[128.27580813900013,34.631903387000094],[128.2946069670002,34.63955312700013],[128.297129754,34.63731517100014],[128.29566491000006,34.631984768000066],[128.28606204499997,34.62221914300012],[128.28174889400017,34.61985911700016],[128.27531985800024,34.61908600500006],[128.26587975400005,34.62083567900005],[128.25806725400005,34.61989980700015],[128.247406446,34.615545966000084],[128.24219811300011,34.611517645000035],[128.23625735800007,34.61045970300016],[128.23528079500002,34.614203192],[128.23878014400012,34.6205915390001],[128.23780358200023,34.625759182000124],[128.23340905000023,34.62938060099999],[128.22966556100013,34.63007233300011],[128.22527103000002,34.632839260000175],[128.22567793100015,34.63784414300012],[128.22836347700004,34.64240143400015],[128.22877037900003,34.647853908],[128.23275800900004,34.651027736000074],[128.23951256600006,34.652411200000145],[128.2711694670002,34.63849518400015],[128.27125084700018,34.6323102890001]]],[[[125.43392988400002,34.69554271000008],[125.43726647200005,34.68829987200014],[125.44581139400017,34.68846263200011],[125.457286004,34.690904039000046],[125.45923912900017,34.686835028000175],[125.45045006600017,34.67967357000005],[125.44581139400017,34.67511627800009],[125.44320722700014,34.6694196640001],[125.42741946700014,34.65424225500011],[125.42432701900022,34.64720286700005],[125.41773522200018,34.63812897300015],[125.41260826900023,34.6323102890001],[125.40853925899998,34.62860748900006],[125.39877363400015,34.631984768000066],[125.39234459700005,34.64630768400015],[125.39340254,34.65965403900016],[125.39893639400012,34.67182038000005],[125.40560957100014,34.68256256700006],[125.4128524100001,34.69196198100009],[125.42123457100014,34.69708893400012],[125.42945397200006,34.698431708],[125.43392988400002,34.69554271000008]]],[[[127.79786217500023,34.57973867400007],[127.78663170700023,34.57900625200013],[127.77540123800021,34.58397044499999],[127.74000084700008,34.61367422100001],[127.7358504570001,34.62523021000014],[127.74187259200019,34.64362213700017],[127.7462671230002,34.64842357000008],[127.76498457100014,34.660101630000085],[127.76832116000016,34.66608307500009],[127.77588951900023,34.69147370000012],[127.76075280000022,34.704738674000126],[127.76254316500004,34.71283600500006],[127.7734481130001,34.716986395],[127.78589928499999,34.71816640800013],[127.79664147200005,34.71417877800015],[127.79932701900012,34.70482005400011],[127.79420006600017,34.69379303600009],[127.78207441499998,34.68455638200011],[127.79249108200011,34.6823591170001],[127.80160566500008,34.67047760600015],[127.80876712300014,34.65582916900014],[127.81723066500014,34.630764065000065],[127.81812584700006,34.61615631700015],[127.81511478000007,34.601955471000124],[127.80787194100006,34.58820221600011],[127.79786217500023,34.57973867400007]]],[[[125.99903405000022,34.67743561400006],[125.98389733200023,34.66063060100005],[125.97689863400014,34.65639883000012],[125.96998131600016,34.655910549000126],[125.95972741000004,34.65668366100006],[125.95964603000006,34.659816799000126],[125.945160352,34.666815497000115],[125.92945397200005,34.672308661000145],[125.92505944100007,34.67096588700015],[125.91602623800023,34.6876488300001],[125.92286217500016,34.69537995000011],[125.95240319100004,34.705145575000145],[125.97055097700004,34.725653387000094],[125.97673587300018,34.72825755399999],[125.98047936300023,34.72622304900007],[125.98902428500004,34.71332428600006],[126.00098717500005,34.70441315300012],[126.00407962300007,34.70026276200018],[126.00538170700005,34.69261302300004],[126.00318444100017,34.68475983300006],[125.99903405000022,34.67743561400006]]],[[[126.11784915500006,34.76996491100014],[126.12720787900017,34.76654694200012],[126.13314863400004,34.76121653900016],[126.14193769600016,34.75755442900011],[126.15381920700011,34.75690338700014],[126.16358483200017,34.75495026200012],[126.17025800900004,34.749945380000085],[126.17383873800004,34.74445221600014],[126.17310631600007,34.73944733300003],[126.17408287900004,34.732814846000124],[126.17750084700005,34.72406647300006],[126.17790774800002,34.71336497600005],[126.17212975400015,34.703802802000055],[126.159434441,34.7027855490001],[126.14771569100007,34.71234772300009],[126.13843834700016,34.723456122000115],[126.12769616000016,34.72357819200009],[126.12232506599999,34.7196312520001],[126.11882571700019,34.7182477890001],[126.11133873800021,34.71771881700012],[126.10425866000017,34.72199127800015],[126.10254967500005,34.730536200000174],[126.09343509200019,34.7442894550001],[126.07374108200023,34.76137929900012],[126.069590691,34.769680080000015],[126.07927493600006,34.767564195000105],[126.08716881600007,34.76752350500011],[126.09457441500003,34.770656643000095],[126.10523522200005,34.771551825000174],[126.11784915500006,34.76996491100014]]],[[[126.00717207100014,34.780951239],[126.00757897200006,34.75971100500011],[126.00294030000023,34.76146067900011],[125.99154707100016,34.764105536],[125.98650149800004,34.76654694200012],[125.97787519600004,34.75714752800012],[125.96420332099997,34.757066148000135],[125.95167076900012,34.75926341400013],[125.9461369150001,34.75665924700003],[125.94410241000004,34.74323151200003],[125.93873131600016,34.73143138200005],[125.93002363400002,34.72260163000003],[125.91814212300007,34.71816640800013],[125.90642337300008,34.71930573100015],[125.89779707100016,34.72601959800003],[125.89258873800006,34.73663971600014],[125.89087975400017,34.74982330900009],[125.89389082100016,34.762274481000034],[125.90186608200023,34.771063544000086],[125.91285241000017,34.77692291900002],[125.92505944100007,34.78082916900002],[125.93864993600019,34.77651601800012],[125.95655358200007,34.77973053600009],[125.98926842500012,34.790025132000025],[125.99594160200014,34.79075755400013],[126.00074303500006,34.79010651200018],[126.0044051440001,34.787176825000145],[126.00717207100014,34.780951239]]],[[[126.1582137380001,34.764471747000115],[126.14625084700018,34.761867580000015],[126.13461347700016,34.76732005400005],[126.12159264400006,34.77651601800012],[126.10482832100014,34.781642971000124],[126.0925399100001,34.78758372600008],[126.10238691500004,34.794378973],[126.12728925900015,34.79775625200001],[126.14185631600016,34.802964585000105],[126.14942467500023,34.80809153900013],[126.15902754000003,34.80459219000012],[126.16627037900005,34.79645416900011],[126.16871178500016,34.792303778000175],[126.1655379570001,34.789699611000074],[126.16211998800011,34.78327057500014],[126.1642358730002,34.76976146],[126.1582137380001,34.764471747000115]]],[[[128.379012856,34.822870451000185],[128.38582970300016,34.820124841],[128.39536618600008,34.823348162000094],[128.41076357000023,34.82652182200003],[128.42822603300007,34.827448422000074],[128.43799723000004,34.81957166400018],[128.44063484600005,34.8067354090001],[128.43533376200006,34.79870949600011],[128.43897647600025,34.793902942000145],[128.43463561100006,34.78788231100016],[128.4245720470001,34.79122027400014],[128.42059744500014,34.78923582600008],[128.4208856920001,34.78672006900011],[128.42910068400025,34.785396720000115],[128.43733203100007,34.779808956000075],[128.43329431000015,34.77378415800005],[128.42308274400014,34.76325254900006],[128.40653355100008,34.76309813600015],[128.3992805490001,34.770715731000095],[128.39536287600006,34.77854018900008],[128.38698984800013,34.77880380000015],[128.38895679200007,34.78536282100008],[128.386205988,34.79191741400008],[128.37330464300024,34.79349119800018],[128.36870233100004,34.79653684500012],[128.3782716860001,34.80278985800014],[128.3800892300001,34.81040434100008],[128.37041622000018,34.816686261000186],[128.35239543000003,34.82180417700006],[128.34097425000007,34.81884407400009],[128.3341924860001,34.819132496000165],[128.33204884400018,34.825702467000106],[128.34009339999997,34.83297286200009],[128.3518308490002,34.83542157800012],[128.36724685800002,34.83027402200018],[128.379012856,34.822870451000185]]],[[[128.24146569100014,34.799994208],[128.23845462300008,34.79694245000009],[128.22901451900017,34.799139716000084],[128.22315514400012,34.80149974200005],[128.21216881600017,34.807806708],[128.20582116000003,34.815619208000086],[128.20704186300023,34.82103099200013],[128.21387780000018,34.8302269550001],[128.22730553500017,34.838568427000084],[128.23991946700002,34.83616771000011],[128.25489342500006,34.822414455],[128.26050866000017,34.814642645],[128.2565210300002,34.809271552000055],[128.2457788420002,34.809271552000055],[128.24073326900023,34.80707428600006],[128.24146569100014,34.799994208]]],[[[126.14226321700019,34.87913646000008],[126.14722741000004,34.876857815],[126.152028842,34.87116120000003],[126.15308678500016,34.86497630400005],[126.1396590500001,34.85789622599999],[126.14454186300016,34.84235260600009],[126.14210045700023,34.83291250200007],[126.13502037900015,34.829291083000115],[126.12517337300001,34.82965729400003],[126.11890709700016,34.82379791900008],[126.11915123800023,34.81264883000007],[126.11589603000019,34.80312734600006],[126.10523522200005,34.79816315300012],[126.09620201900023,34.798773505000085],[126.09400475400017,34.804673570000105],[126.09441165500007,34.80866120000008],[126.07943769600004,34.822658596000146],[126.07105553500017,34.83218008000013],[126.06413821700008,34.84259674700003],[126.06714928500016,34.850531317],[126.08179772200018,34.856594143],[126.0937606130001,34.85761139500006],[126.103282097,34.85317617400009],[126.11255944100017,34.85342031500012],[126.11524498800021,34.85944245000003],[126.1132918630001,34.87116120000003],[126.12281334700016,34.87881094000015],[126.13591556100006,34.878607489],[126.14226321700019,34.87913646000008]]],[[[128.01343834700006,34.86912669500001],[128.01872806100002,34.86615631700009],[128.02458743600008,34.877020575000174],[128.03630618600008,34.892279364000146],[128.04590905000023,34.89362213700004],[128.04883873800017,34.88662344000015],[128.05396569100014,34.88263580900015],[128.05892988400004,34.88035716400019],[128.0612085300002,34.868353583000086],[128.06690514400006,34.85175202000011],[128.07276451900023,34.84511953300016],[128.0768335300002,34.842474677000055],[128.08236738400004,34.835598049000154],[128.07178795700023,34.83340078300016],[128.026540561,34.843207098],[128.00180097700016,34.836655992000104],[127.9873153000001,34.83808014500009],[127.97242272200006,34.84552643400014],[127.96363366000017,34.85976797100007],[127.9704695970001,34.87518952],[127.98414147200005,34.88971588700004],[127.99284915500002,34.90338776200015],[128.00196373800011,34.91303131700012],[128.01783287900005,34.91657135600012],[128.02295983200023,34.90550364799999],[128.0159611340001,34.889349677000105],[128.01246178500017,34.87832265800007],[128.01343834700006,34.86912669500001]]],[[[126.35962975400017,34.85858795800014],[126.36166425900004,34.837388414000046],[126.34205162900017,34.822495835],[126.33130944100004,34.82583242400001],[126.33765709700018,34.831732489000146],[126.34083092500023,34.83746979400003],[126.33822675900015,34.84145742400001],[126.3103133470001,34.854071356000176],[126.30616295700017,34.85590241100006],[126.2766219410001,34.85195547100007],[126.26351972700004,34.846665757],[126.24870853000006,34.844712632000046],[126.2368270190001,34.84804922100007],[126.23072350400005,34.85455963700015],[126.23609459700018,34.85980866100006],[126.25196373800011,34.86066315300015],[126.27230878999998,34.86676666900014],[126.27588951900017,34.870510158000066],[126.27914472700004,34.87327708500014],[126.28012128999997,34.87750885600015],[126.29265384200018,34.88068268400012],[126.29712975400005,34.88690827000009],[126.29761803500004,34.89423248900009],[126.28980553500006,34.903021552000055],[126.28646894600004,34.912909247000144],[126.2973738940001,34.917547919000086],[126.31470787900017,34.914129950000174],[126.33253014400023,34.90672435099999],[126.34522545700021,34.89622630400011],[126.34392337300012,34.890326239],[126.33521569100007,34.889390367000104],[126.31999759200006,34.88108958500011],[126.31812584700018,34.8764509140001],[126.31869550900015,34.870550848000065],[126.32007897200006,34.86587148600013],[126.32650800900014,34.86420319200012],[126.3406681650001,34.864081122000144],[126.35962975400017,34.85858795800014]]],[[[126.08912194100017,34.911322333000115],[126.091481967,34.89691803600006],[126.08838951900022,34.8829613300001],[126.08073978,34.870998440000065],[126.06910241000007,34.862738348000065],[126.05469811300021,34.85919830900009],[126.04639733200005,34.86180247599999],[126.03988691499998,34.866441148000106],[126.03142337300002,34.868963934000035],[125.99878991000011,34.862941799000126],[125.98650149800004,34.862738348000065],[125.98650149800004,34.868963934000035],[125.99634850400017,34.87604401200009],[126.01433353000017,34.899644273000135],[126.02800540500002,34.90989817900005],[126.03443444100006,34.90957265800012],[126.04395592500025,34.90741608300014],[126.05225670700021,34.90753815300012],[126.05600019600016,34.91364166900008],[126.06031334700005,34.92690664300012],[126.07007897200018,34.92890045800005],[126.08122806100012,34.92259349200013],[126.08912194100017,34.911322333000115]]],[[[126.24642988399997,34.916245835],[126.23755944100006,34.91307200700011],[126.22535241000016,34.91339752800015],[126.2203882170002,34.92243073100015],[126.22242272200005,34.93195221600014],[126.23023522200006,34.93545156500015],[126.24732506600016,34.93545156500015],[126.25318444099999,34.93349844],[126.25342858200005,34.92918528900019],[126.25017337300018,34.9188500020001],[126.24642988399997,34.916245835]]],[[[127.94988040500006,34.824652411],[127.96192467500006,34.806952216000084],[127.98129316499997,34.80975983300014],[128.0058699880001,34.81769440300009],[128.02906334700003,34.821763414000074],[128.06275475400005,34.817124742000125],[128.06959069100017,34.81500885600012],[128.07471764400006,34.80365631700015],[128.07178795700023,34.793646552000055],[128.06625410200004,34.78302643400012],[128.06332441500004,34.76996491100014],[128.06609134200005,34.74933502800012],[128.06527754000015,34.73753489800005],[128.05958092500006,34.732407945000126],[128.05160566500004,34.728705145],[128.06006920700005,34.7084007830001],[128.05591881600006,34.69822825700005],[128.0405379570001,34.69586823100009],[128.02588951900006,34.703111070000105],[128.01010175900004,34.708807684000085],[127.99154707100004,34.701727606000034],[127.97527103000019,34.69993724200005],[127.96534264400006,34.71930573100015],[127.95411217500005,34.75971100500011],[127.9376733730002,34.767035223000114],[127.92457116000006,34.759588934000064],[127.91570071700006,34.74274323100006],[127.91236412900005,34.72186920800008],[127.90626061300016,34.713080145],[127.89210045700023,34.712713934000085],[127.8771264980002,34.716945705000015],[127.86801191500004,34.72186920800008],[127.86182701900023,34.730861721000096],[127.86036217500006,34.738267319999984],[127.86011803500006,34.74701569200006],[127.85792076900023,34.75971100500011],[127.83033287900005,34.83356354400003],[127.82667076900005,34.85138580900009],[127.82935631600004,34.868963934000035],[127.84083092500012,34.88694896000008],[127.84848066500004,34.891546942],[127.85629316500003,34.89272695500013],[127.86231530000022,34.89606354400014],[127.86703535200003,34.91815827000014],[127.87289472700009,34.9244652360001],[127.88892662900017,34.93475983300003],[127.90211022199999,34.94000885600009],[127.917246941,34.936183986000074],[127.93051191500015,34.92645905200011],[127.93824303500017,34.91396719000012],[127.9368595710001,34.90082428600006],[127.92807050900002,34.88825104400017],[127.90560957100004,34.868963934000035],[127.90967858200005,34.86204661700013],[127.91431725400011,34.84454987200009],[127.9199324880001,34.83543528900019],[127.92847741,34.8305524760001],[127.94988040500006,34.824652411]]],[[[128.72388756600006,34.95453522300012],[128.72999108200023,34.94513580900009],[128.73438561300011,34.93545156500015],[128.73414147200018,34.922308661],[128.7301538420002,34.910386460000055],[128.7143660820002,34.876410223],[128.73462975400017,34.88226959800015],[128.74431399800017,34.88776276200018],[128.74756920700017,34.88580963700004],[128.74854576900023,34.868963934000035],[128.74740644599996,34.85712311400009],[128.74293053500006,34.84454987200009],[128.73414147200018,34.83755117400001],[128.72055097700004,34.84227122600011],[128.72608483200023,34.828843492000104],[128.73902428500006,34.80621979400014],[128.7417098320001,34.790716864000146],[128.7340600920002,34.78823476800004],[128.71656334700006,34.79319896000008],[128.69776451900006,34.801336981000176],[128.68637129000004,34.80809153900013],[128.68327884200002,34.79413483300006],[128.68018639400023,34.786566473],[128.66285241000017,34.76996491100014],[128.65723717500018,34.75698476800015],[128.66911868600013,34.74949778900016],[128.68555748800011,34.743841864],[128.69385826900012,34.73615143400015],[128.67823326900012,34.724839585],[128.60580488400015,34.70636627800015],[128.58399498800011,34.705145575000145],[128.61817467500012,34.72557200700011],[128.60401451900006,34.73110586100013],[128.5986434250001,34.739976304],[128.59945722700002,34.75189850500011],[128.60450280000015,34.76654694200012],[128.57349694100006,34.75348541900014],[128.56430097700016,34.75873444200014],[128.559825066,34.77024974200016],[128.56039472700016,34.78180573100009],[128.56666100400005,34.78705475499999],[128.59156334700018,34.79120514500012],[128.5986434250001,34.80223216400016],[128.5991317070001,34.81781647300006],[128.60450280000015,34.83543528900019],[128.5908309250002,34.84227122600011],[128.5805770190001,34.83185455900012],[128.544688347,34.818793036000145],[128.5288192070001,34.80809153900013],[128.51742597700004,34.822658596000146],[128.503184441,34.83551666900017],[128.49154707100004,34.84992096600014],[128.48845462300014,34.868963934000035],[128.49488366000006,34.88043854400017],[128.50806725400017,34.891017971000124],[128.52328535200016,34.89915599200005],[128.53630618600008,34.9037132830001],[128.5737410820001,34.91006094000012],[128.58399498800011,34.90989817900005],[128.60043379000004,34.90420156500009],[128.61353600400017,34.89716217700011],[128.62696373800006,34.891750393000066],[128.64551842500006,34.89069245000012],[128.64551842500006,34.89691803600006],[128.62696373800006,34.906927802000055],[128.6163843110001,34.92186107],[128.611664259,34.93891022300015],[128.61060631600006,34.954901434000064],[128.62378991,34.95355866100006],[128.69385826900012,34.986273505],[128.68189537900017,35.00462474200005],[128.68751061300017,35.022853908000016],[128.70289147200012,35.032945054],[128.72055097700004,35.02724844],[128.72494550899998,35.018947658000044],[128.72527103000002,35.00926341400016],[128.71876061300023,34.97215403900004],[128.71924889400012,34.9662946640001],[128.72388756600006,34.95453522300012]]],[[[126.14380944100004,35.05768463700015],[126.15251712300018,35.05438873900012],[126.16529381600019,35.055243231000034],[126.17416425900004,35.053168036],[126.17839603000002,35.0484886740001],[126.18091881600006,35.04401276200012],[126.18189537900005,35.03888580900012],[126.18165123800006,35.02912018400015],[126.17741946700009,35.02594635600009],[126.1723738940001,35.02362702000015],[126.16700280000018,35.02529531500015],[126.15805097700004,35.03343333500008],[126.15398196700006,35.03571198100006],[126.14861087300014,35.03351471600014],[126.14380944100004,35.033921617000075],[126.14234459700018,35.03827545800006],[126.13851972700016,35.03986237200009],[126.133555535,35.03974030200011],[126.13217207100003,35.041937567],[126.13941491000006,35.046454169000135],[126.13656660200004,35.047756252000156],[126.13209069100006,35.04710521000011],[126.12777754000014,35.04816315300015],[126.12964928499999,35.052679755000106],[126.137380405,35.056870835000055],[126.14380944100004,35.05768463700015]]],[[[128.83179772200018,34.993801174000126],[128.82667076900023,34.992377020000056],[128.82422936300011,34.99673086100016],[128.81934655000023,35.01422760600012],[128.81177819100012,35.020738023000106],[128.80909264400012,35.02586497600011],[128.81031334700006,35.032945054],[128.80689537900005,35.041245835000055],[128.80160566500015,35.049139716000056],[128.8043725920002,35.05634186400006],[128.81495201900017,35.061265367000125],[128.826426629,35.0622419290001],[128.83643639400012,35.05980052300008],[128.8432723320001,35.047186591000084],[128.84278405000012,35.02187734600015],[128.83838951900023,35.001206773000135],[128.83179772200018,34.993801174000126]]],[[[126.189219597,35.102240302000055],[126.19857832100016,35.09711334800012],[126.20704186300011,35.09951406500009],[126.21664472700016,35.103664455000015],[126.22282962300002,35.101141669000114],[126.22494550900014,35.096747137000115],[126.22982832100004,35.09690989799999],[126.23601321700018,35.09837474200005],[126.23853600399998,35.091864325000145],[126.23161868600019,35.08612702000009],[126.22242272200005,35.085638739],[126.21851647200006,35.08193594000014],[126.21851647200006,35.07660553600009],[126.2295028000001,35.06732819200012],[126.23878014400024,35.06386953300013],[126.24919681100008,35.063299872000144],[126.25513756600017,35.05638255400005],[126.2581486340001,35.04751211100002],[126.2631942070001,35.04189687700001],[126.26498457099999,35.03424713700018],[126.26107832099999,35.02456289300012],[126.25717207099997,35.021958726000136],[126.25456790500019,35.025091864],[126.2429305350001,35.02728913],[126.238047722,35.03241608300003],[126.23406009200006,35.03831614800005],[126.23422285200004,35.04706452000012],[126.23609459700018,35.051947333],[126.22925866000016,35.053656317],[126.20362389400012,35.057196356000176],[126.19792728000019,35.061265367000125],[126.18913821700002,35.06195709800006],[126.18482506600004,35.06268952],[126.18051191500015,35.065904039000074],[126.17481530000023,35.068264065],[126.16944420700011,35.073675848000065],[126.15870201900006,35.09422435100011],[126.16480553500016,35.10228099200005],[126.17750084700005,35.10578034100003],[126.189219597,35.102240302000055]]],[[[126.11426842500016,35.05931224200016],[126.110606316,35.05117422100006],[126.10523522200005,35.05003489800013],[126.07862389400012,35.055853583000086],[126.06910241000007,35.054592190000065],[126.06544030000018,35.056830145000056],[126.06299889400022,35.059027411000145],[126.06039472700004,35.06073639500015],[126.05600019600016,35.061346747000115],[126.06381269600014,35.09308502800015],[126.06910241000007,35.10236237200003],[126.07601972700004,35.10561758000007],[126.08790123800006,35.1088727890001],[126.09888756600004,35.11326732000002],[126.103770379,35.11969635600012],[126.11133873800021,35.13328685100008],[126.12940514400017,35.14288971600014],[126.14991295700023,35.14687734600004],[126.16521243600019,35.143500067],[126.13477623800024,35.128973700000145],[126.12777754000014,35.120550848],[126.12696373800023,35.110541083000115],[126.1313582690001,35.10024648600002],[126.144786004,35.082464911000116],[126.13404381600017,35.078802802000084],[126.12281334700016,35.069810289000046],[126.11426842500016,35.05931224200016]]],[[[126.30730228000017,35.616644598],[126.30941816500004,35.61066315300009],[126.30567467500005,35.60321686400003],[126.28728274800002,35.590277411],[126.27491295700011,35.579046942],[126.2671004570001,35.57412344000015],[126.26384524800008,35.571682033],[126.25806725400011,35.57062409100014],[126.253672722,35.5743675800001],[126.25049889400022,35.580959377000156],[126.2524520190001,35.587307033000094],[126.26295006600016,35.59178294500005],[126.26148522200012,35.59341054900007],[126.25652103000007,35.59601471600017],[126.25896243600017,35.59837474200013],[126.26449629000004,35.60089752800014],[126.26823978,35.605210679000045],[126.27426191500014,35.60602448100014],[126.2778426440001,35.60736725500006],[126.27613365999999,35.61286041900017],[126.28044681100019,35.612697658000016],[126.29175866000011,35.611029364],[126.29932701900023,35.616034247000144],[126.30298912900011,35.619330145000085],[126.30730228000017,35.616644598]]],[[[126.40479576900023,36.479641018000095],[126.40369050900007,36.47334356800003],[126.40268670300017,36.46839167800012],[126.40541386500004,36.45883552800011],[126.41293379000015,36.44033437700007],[126.42644290500002,36.42357005400005],[126.43213951900012,36.40794505400008],[126.42261803499999,36.41152578300013],[126.37818444100016,36.40949127800012],[126.36378014400023,36.411363022999986],[126.36105280800003,36.42632098100013],[126.36587392800017,36.43164458400015],[126.37355578800012,36.43733670200011],[126.37761478000002,36.44619375200013],[126.35377037900005,36.434068101000136],[126.34262129000003,36.43838125200013],[126.3457137380001,36.453314520000085],[126.36378014400023,36.473456122000115],[126.35694420700011,36.479641018000095],[126.34327233200004,36.466620184000085],[126.33864029100008,36.47561102900006],[126.32814310100015,36.47108949500012],[126.3336061690002,36.495093329000085],[126.32976321700019,36.531724351000136],[126.32515322400005,36.55386421500013],[126.31481811200014,36.58178686300012],[126.32346290300008,36.59089051000011],[126.34118120200017,36.60413360200009],[126.36024360000023,36.60936012300009],[126.37354576900017,36.592230536000116],[126.37533613400015,36.58608633000016],[126.37099369800004,36.578754296],[126.36336739900015,36.573839777],[126.36426630900021,36.56697022900014],[126.38111412899998,36.536281643000066],[126.38379967500012,36.52651601800012],[126.3794051440001,36.51837799700002],[126.38456565000014,36.51119819800006],[126.395909574,36.50579218600016],[126.40479576900023,36.49331289300012],[126.38379967500012,36.49331289300012],[126.38379967500012,36.487127997000144],[126.39063561300013,36.486029364],[126.40479576900023,36.479641018000095]]],[[[131.86252188600005,37.243104377000016],[131.86170437700005,37.24160561000009],[131.8601477770002,37.24239861400018],[131.86104174400012,37.244006186000135],[131.86252188600005,37.243104377000016]]],[[[126.15919030000006,37.23191966400019],[126.15503991000006,37.22573476800012],[126.14234459700018,37.21539948100012],[126.13331139400016,37.21234772300012],[126.12159264400006,37.21092357000005],[126.11166425900011,37.21454498900003],[126.10515384200008,37.22357819200012],[126.10254967500005,37.22866445500013],[126.099864129,37.22801341400019],[126.09278405000023,37.22483958500011],[126.08863365999999,37.22597890800016],[126.08871503999997,37.22955963700004],[126.09180748800004,37.24591705900015],[126.09742272200016,37.25942617400012],[126.10474694100019,37.26752350500005],[126.11280358200011,37.26308828300007],[126.11980228000017,37.25360748900006],[126.12696373800023,37.248928127000156],[126.15162194100006,37.23859284100014],[126.15919030000006,37.23191966400019]]],[[[126.47820071700008,37.24160390800013],[126.46949303500017,37.23346588700004],[126.45818118600019,37.23126862200006],[126.45045006600016,37.23582591400019],[126.44223066500015,37.23517487200003],[126.43572024800008,37.23843008000007],[126.43344160199999,37.25104401200015],[126.43531334700018,37.26398346600017],[126.44353274800007,37.273098049000154],[126.46119225400017,37.28058502800003],[126.48406009200018,37.278998114],[126.494395379,37.273504950000145],[126.4983016290001,37.26141998900006],[126.49390709699999,37.25726959800012],[126.48316491000011,37.254339911],[126.47901451900023,37.24774811400012],[126.47820071700008,37.24160390800013]]],[[[126.57374108200021,37.278998114],[126.57789147200018,37.27114492400001],[126.58961022200016,37.26577383000016],[126.60865319100007,37.25942617400012],[126.61394290500002,37.25519440300009],[126.61638431100006,37.25055573100017],[126.61882571700019,37.24201080900015],[126.61353600400004,37.232814846000096],[126.56251061300023,37.200384833],[126.539317254,37.19806549700002],[126.53956139400023,37.20311107000005],[126.55046634200014,37.21491120000003],[126.55193118600017,37.22166575700005],[126.54737389400023,37.22748444200012],[126.56039472700003,37.23932526200018],[126.56080162900005,37.25128815300012],[126.55543053500017,37.266058661],[126.54802493600017,37.27631256700012],[126.54078209700018,37.282945054],[126.54297936300023,37.28497955900012],[126.55941816500015,37.278631903000175],[126.57349694100017,37.2884789080001],[126.57667076900023,37.28766510600009],[126.57374108200021,37.278998114]]],[[[126.57644010500003,37.50237048000018],[126.58057893500013,37.49562711800009],[126.58306593700006,37.49038382800013],[126.577625729,37.488584848000144],[126.56918378999997,37.48358795800014],[126.5657658210001,37.47996653900019],[126.54829135400021,37.47663722100013],[126.54055947100014,37.47765700500004],[126.52993258500024,37.47368314200004],[126.50657213500008,37.46556815100017],[126.4939843660002,37.45658508300012],[126.48701249900013,37.44679561400007],[126.44341265299995,37.42062538100011],[126.43359457200002,37.42240582100008],[126.42443423800003,37.42156943400006],[126.42046059600013,37.422355526],[126.4162780300002,37.434554709000125],[126.40836694700013,37.4385369430001],[126.4047269920002,37.435367928000105],[126.40142731800003,37.434469826000125],[126.40028854700003,37.43653028199999],[126.40199194300024,37.440053295000084],[126.39949220300016,37.444921322000155],[126.39341183300021,37.4455454200001],[126.38938611300003,37.441316253000124],[126.38320006100004,37.43745498900002],[126.37573144899996,37.44013673500014],[126.36497292700003,37.442291305000154],[126.3713270960001,37.447311164],[126.36911461900014,37.45273648400011],[126.35817777300022,37.46101202500013],[126.35551114100011,37.46622280000015],[126.3593422790001,37.47362976700008],[126.3652916560002,37.47506439700011],[126.37356753399999,37.47164295099999],[126.41888511500004,37.49686137800016],[126.45132674600013,37.49968200400003],[126.47337965000023,37.49925683900003],[126.49370873300015,37.50778105200011],[126.50066081700018,37.53018525900004],[126.51483014900023,37.53434720000014],[126.52637780000012,37.52509186400014],[126.5319930350001,37.52334219000015],[126.53777103000006,37.52073802300005],[126.54346764400022,37.518866278000175],[126.54908287900004,37.51862213700004],[126.55511086400011,37.517683956000134],[126.56330320700023,37.514443293000156],[126.56723032800019,37.51123128300013],[126.57114036500016,37.506348497000076],[126.57644010500003,37.50237048000018]]],[[[130.8967391290001,37.463120835],[130.8776961600001,37.455511786000145],[130.85222415500016,37.459458726000136],[130.82748457100004,37.47125885600009],[130.81104576900012,37.487005927000055],[130.805837436,37.50739166900005],[130.81430097700016,37.52260976800004],[130.832286004,37.53213125200001],[130.8678491550002,37.53693268400009],[130.89161217500006,37.543890692],[130.903575066,37.54584381700015],[130.92066491000006,37.535589911000116],[130.91944420700023,37.510199286],[130.9083764980002,37.48191966400013],[130.8967391290001,37.463120835]]],[[[125.69361412900004,37.65395742400004],[125.68783613400016,37.65176015800013],[125.68458092500012,37.657294012000065],[125.67920983200023,37.669663804],[125.68043053500017,37.67829010600009],[125.68824303500016,37.67926666900014],[125.6992293630001,37.678127346000124],[125.7062280610002,37.67230866100009],[125.7031356130001,37.66144440300009],[125.69361412900004,37.65395742400004]]],[[[126.37012780000023,37.658351955],[126.34986412900005,37.65737539300012],[126.28199303500007,37.699286200000024],[126.290782097,37.70563385600015],[126.29493248800017,37.71356842700011],[126.30062910200004,37.732367255000085],[126.30372155000012,37.73720937700015],[126.30860436300011,37.74233633000007],[126.31421959700018,37.746079820000105],[126.31999759200006,37.74721914300012],[126.3237410820001,37.74555084800012],[126.32618248800023,37.74249909100003],[126.3276473320001,37.738267320000105],[126.33073978000006,37.71995677300005],[126.33187910200003,37.716498114000146],[126.33668053500011,37.70990631700006],[126.34302819100006,37.704291083000086],[126.35670006600017,37.69513580900009],[126.36915123800007,37.68732330900009],[126.37875410200016,37.678697007],[126.38070722700004,37.66917552300002],[126.37012780000023,37.658351955]]],[[[126.27654056100013,37.81150950700005],[126.29525800899998,37.80247630400005],[126.31495201900022,37.80272044499999],[126.33326256600016,37.80044179900004],[126.34253991000007,37.792141018000116],[126.33594811300006,37.774400132000046],[126.31820722700017,37.76227448100015],[126.29623457100014,37.761135158000016],[126.25456790500019,37.768215236000074],[126.24537194100004,37.76536692900014],[126.23414147200006,37.76064687700012],[126.22445722700016,37.760443427000084],[126.22046959700016,37.77130768400014],[126.22266686300004,37.774725653000175],[126.23414147200006,37.802313544000086],[126.24642988399997,37.811753648000106],[126.26050866000006,37.814764716000106],[126.27654056100013,37.81150950700005]]],[[[126.52906334700016,37.62490469000015],[126.51783287900017,37.60382721600003],[126.5078231130001,37.596869208000115],[126.50017337300007,37.59617747599999],[126.49415123800024,37.59837474200016],[126.48365319100017,37.60740794499999],[126.47608483200023,37.611070054000045],[126.47071373800004,37.60956452],[126.46656334700006,37.60618724200016],[126.46273847700006,37.604315497000115],[126.41016686300011,37.602036851000136],[126.39063561300013,37.609279690000065],[126.37012780000023,37.63104889500012],[126.40088951900024,37.63743724200004],[126.40821373800024,37.641302802000055],[126.41667728000019,37.6518415390001],[126.41553795700023,37.656683661],[126.40992272200005,37.65973541900008],[126.40479576900023,37.66518789300012],[126.36915123800007,37.719061591000134],[126.36695397200016,37.727240302000055],[126.37061608200021,37.73798248900009],[126.36963951900006,37.785345770000035],[126.37378990999999,37.796128648000106],[126.38347415500007,37.79901764500015],[126.40707441500003,37.820705471000124],[126.4253035820001,37.824448960000055],[126.441254102,37.81533437700007],[126.45630944099999,37.801214911000145],[126.47144616,37.790228583000086],[126.50359134200008,37.777411200000145],[126.516368035,37.76723867400001],[126.52149498800021,37.751166083000115],[126.52035566499998,37.74310944200009],[126.5151473320001,37.72955963700012],[126.51400800900014,37.72353750200001],[126.516286655,37.71678294499999],[126.5255639980002,37.703273830000015],[126.52767988399998,37.69586823100012],[126.530935092,37.65989817900005],[126.52767988399998,37.651516018000095],[126.5332137380001,37.646144924000126],[126.538828972,37.63544342700003],[126.54200280000005,37.63104889500012],[126.52906334700016,37.62490469000015]]],[[[124.7142033210001,37.80955638200011],[124.70679772200016,37.80634186400006],[124.69898522200013,37.80687083500014],[124.69239342500012,37.80499909100017],[124.68726647199999,37.80076732000004],[124.68458092500023,37.799994208000115],[124.68458092500023,37.802639065],[124.68474368600017,37.803941148000106],[124.68148847700016,37.80882396000008],[124.67351321700019,37.817043361000074],[124.67652428500011,37.824896552000055],[124.69336998800011,37.835516669000114],[124.70411217500012,37.844387111000124],[124.70915774800002,37.84756094000004],[124.71648196700006,37.84690989800007],[124.72445722699999,37.84365469000012],[124.72584069100017,37.83738841400016],[124.72136478000002,37.82843659100014],[124.71827233200023,37.81818268400012],[124.7142033210001,37.80955638200011]]],[[[124.732676629,37.98045482000008],[124.74366295700017,37.96967194200006],[124.74203535200003,37.95502350500014],[124.72820071700002,37.947007554000024],[124.70875084700005,37.95628489800005],[124.683278842,37.954535223000065],[124.67798912900015,37.952541408000016],[124.67839603000007,37.94204336100013],[124.68816165500017,37.93817780200014],[124.69988040500019,37.93650950700014],[124.70533287900004,37.93268463700012],[124.68490644600016,37.919989325000145],[124.64405358200011,37.92450592700011],[124.61361738400015,37.94505442900005],[124.62403405000023,37.98045482000008],[124.64942467500018,37.97329336100002],[124.70492597700004,37.98867422100015],[124.732676629,37.98045482000008]]],[[[128.47445722700016,38.42609284100003],[128.56275475400003,38.288967190000065],[128.6316024100001,38.144964911],[128.642832879,38.12929922100001],[128.67872155000012,38.09430573100012],[128.6924748060002,38.06492747600011],[128.85914147200003,37.87677643400015],[128.92383873800006,37.802313544000086],[129.00131269600004,37.734361070000105],[129.0122990240001,37.727240302000055],[129.06421959700015,37.678859768000144],[129.06690514400023,37.658433335],[129.067149285,37.63385651200015],[129.0733341810001,37.613023179],[129.1087345710001,37.59739817900011],[129.118988477,37.58063385600009],[129.14820397200006,37.50511302300008],[129.1612248060002,37.48761627800012],[129.1768498060002,37.480169989000146],[129.18995201900006,37.46938711100013],[129.23544355600004,37.39826080900009],[129.2627873060002,37.370917059000114],[129.27222741000006,37.35586172100001],[129.27588951900012,37.33991120000009],[129.2828068370001,37.32444896000008],[129.33106530000012,37.28217194200006],[129.34644616000017,37.24750397300009],[129.360118035,37.17177969],[129.37891686300023,37.13011302300004],[129.43018639400006,37.073065497000144],[129.43409264400006,37.06110260600012],[129.4282332690002,37.04954661700019],[129.41895592500006,37.03851959800015],[129.41309655000023,37.027736721000124],[129.4126896490002,37.01805247599999],[129.41993248800017,36.986761786000116],[129.4287215500001,36.897406317],[129.43799889400006,36.85614655200005],[129.47120201900012,36.77187734600015],[129.47388756600017,36.730617580000015],[129.4634708990001,36.69245026200004],[129.44092858200008,36.65778229400014],[129.42261803500006,36.616644598000086],[129.42286217500006,36.61497630400008],[129.4279891290001,36.57566966400016],[129.44166100400005,36.534654039000046],[129.44711347700013,36.49331289300012],[129.44092858200008,36.40794505400008],[129.434825066,36.38959381700012],[129.40390058700007,36.35944245000009],[129.39185631600006,36.34247467700011],[129.3865666020001,36.322699286],[129.38233483200017,36.201849677000084],[129.38575280000018,36.185451565000065],[129.39185631600006,36.176336981000176],[129.3985294930002,36.17267487200003],[129.40390058700007,36.1676292990001],[129.40967858200023,36.133612372000144],[129.4170841810002,36.1075707050001],[129.42514082100016,36.103013414000046],[129.43051191500004,36.09739817900005],[129.42676842500006,36.08177317900005],[129.41871178500006,36.07298411700019],[129.40829511800004,36.068915106000034],[129.39844811300023,36.06631094000012],[129.38178266800006,36.05517462200011],[129.38085871700005,36.04148684400009],[129.40193704300023,36.02566008400011],[129.4170806210001,36.01191268600006],[129.4330514750001,35.996107732],[129.45333141,35.993287368000054],[129.47901451900006,36.00958893400015],[129.5425724620001,36.06590403900013],[129.554794958,36.0824779150001],[129.57129967500023,36.07184479400014],[129.57496178500014,36.05467357000013],[129.58204186300023,36.03681061400006],[129.58725019600004,36.016913153000175],[129.5716437530002,35.9971243640001],[129.53558955300016,35.939035632000106],[129.53283905500015,35.9130129110001],[129.5221343100002,35.844552213000085],[129.4962164990001,35.78507393500006],[129.4976505870001,35.747870184000035],[129.47112589500003,35.6832222980001],[129.45157570400022,35.651802283],[129.44305339200005,35.63609001100018],[129.451375761,35.61824332300013],[129.46058990800012,35.60929422300016],[129.4672751410001,35.59966756900015],[129.46348790100015,35.57788335900001],[129.46135128400013,35.5520613850001],[129.45460045700023,35.51325104400003],[129.4444279310001,35.49681224200013],[129.4279891290001,35.478745835000105],[129.4128524100001,35.47207265800015],[129.40626061300023,35.48969147300009],[129.40040123800006,35.51264069200006],[129.38746178500017,35.52985260600009],[129.37354576900012,35.532782294000114],[129.36524498800011,35.51325104400003],[129.37891686300023,35.51068756700012],[129.38705488400015,35.50226471600017],[129.39096113400015,35.48993561400012],[129.39185631600006,35.475734768],[129.38746178500017,35.462307033000016],[129.37720787900005,35.45917389500015],[129.36573326900012,35.45831940300006],[129.35775800900015,35.45180898600013],[129.35922285200004,35.44464752800011],[129.36050348,35.42605606700009],[129.36458132900012,35.40687005700006],[129.35526191399998,35.39457178],[129.34678727000002,35.38227253800004],[129.3551297490002,35.37266731900003],[129.36181399000012,35.36717183100008],[129.3604435560002,35.353583075000174],[129.339875029,35.348074232],[129.3205132100002,35.33854547200012],[129.29271986900008,35.31604908900012],[129.26920554700018,35.316766528000144],[129.26412629100017,35.302427614000166],[129.26240016100004,35.28398874500006],[129.25648417200014,35.274421522000104],[129.2497345740001,35.26622774600018],[129.25538170700023,35.25259023600016],[129.25570722700016,35.246975002000156],[129.24439034400018,35.228218040000016],[129.22847902700008,35.20053055300012],[129.2106926060002,35.18300137000013],[129.2010840940002,35.16662808600013],[129.19434655000018,35.155503648000106],[129.1788955530001,35.15575745200006],[129.16747984700024,35.156168307000044],[129.15341230600015,35.154282945000105],[129.14307701900023,35.15477122599999],[129.13220458099994,35.15076644400001],[129.1202571490002,35.14961672300002],[129.1192966350002,35.135567198],[129.12728050800015,35.12582503400013],[129.128601181,35.11414797000013],[129.1234700810002,35.100845473],[129.10107818500003,35.092276153000014],[129.08296636300005,35.10518478100015],[129.07199805400003,35.11261736900015],[129.06384042000016,35.12084709200012],[129.037627227,35.09783422800008],[129.02568968200015,35.07950224900013],[129.02186185400015,35.05998310700009],[129.0137536760001,35.055307289],[129.00895713300005,35.06513447800016],[128.99702610499997,35.075728095000144],[128.99801473400012,35.066281188000104],[129.00040153000023,35.045950018],[128.99276994400012,35.04596265900007],[128.9894054590001,35.05269402400013],[128.98511156000006,35.05428378000015],[128.97486412900014,35.04865143400015],[128.96512461700016,35.04364879600003],[128.9584473790002,35.05038704700003],[128.95036040000016,35.0729130130001],[128.95370360600012,35.09320167000014],[128.96134093800018,35.118954637000016],[128.96277764300012,35.13338599100011],[128.95800991400006,35.13689688300015],[128.948944017,35.125974671000094],[128.91841959300018,35.08188205300003],[128.9045929260001,35.08109865000013],[128.90363532100017,35.10139002500013],[128.9045859290002,35.12050992000009],[128.89792560800018,35.12130533],[128.8892521490001,35.105454820000105],[128.88218607000013,35.08148477700002],[128.85740242600002,35.08382307900014],[128.79155544200003,35.082953208000035],[128.7877732540001,35.10131859300019],[128.78107691500023,35.111062146000066],[128.77198831899997,35.083313239000134],[128.76197088500007,35.07939238800018],[128.73868948900022,35.087987622000114],[128.72779381600006,35.10472239800008],[128.71583092500012,35.10586172100001],[128.70045006600017,35.09613678600006],[128.70045006600017,35.13987864800013],[128.69629967500012,35.143500067],[128.687754754,35.14061107000008],[128.6805119150001,35.13141510600009],[128.679942254,35.11595286700016],[128.66407311300006,35.12612539300012],[128.65170332100016,35.14077383000013],[128.63803144600004,35.14984772300012],[128.61793053500017,35.143255927000055],[128.62232506600006,35.157375393000095],[128.61402428500017,35.177435614000146],[128.61793053500017,35.18488190300003],[128.60792076900006,35.21116771000014],[128.60206139400023,35.21393463700009],[128.59058678500017,35.20538971600017],[128.57813561300006,35.18935781500009],[128.57789147200006,35.17865631700006],[128.59058678500017,35.15696849200016],[128.59766686300023,35.13051992400001],[128.6018172540001,35.12124258000016],[128.61036217500012,35.109198309000035],[128.62704511800004,35.090765692],[128.62948652400007,35.08148834800014],[128.62476647200018,35.068182684000035],[128.63266035200016,35.06728750200013],[128.64503014400012,35.06289297100015],[128.65211022200006,35.061346747000115],[128.64332116000017,35.05654531500012],[128.634532097,35.05463288000006],[128.61426842500012,35.054592190000065],[128.6036076180001,35.056626695000105],[128.60059655000006,35.06191640800007],[128.60010826900006,35.06858958500014],[128.59677168100004,35.075018622000144],[128.58716881600017,35.08331940300003],[128.58033287900014,35.08787669500008],[128.52637780000023,35.10346100500005],[128.51124108200023,35.10423411700018],[128.4781193370002,35.09906647300009],[128.46908613400004,35.09540436400012],[128.46973717500023,35.08836497600005],[128.48129316499998,35.075018622000144],[128.46273847700016,35.07196686400005],[128.42847741,35.05780670800011],[128.38917076900012,35.04901764500006],[128.38404381600017,35.03636302299999],[128.38209069100006,35.022609768000066],[128.37142988400004,35.013576565000065],[128.37142988400004,35.00678131700014],[128.47120201900012,35.05023834800009],[128.488129102,35.05117422100006],[128.49154707100004,35.033596096000124],[128.4975692070001,35.020697333000115],[128.49960371200004,35.009222723000065],[128.49154707100004,34.99591705900015],[128.47877037900014,34.99005768400012],[128.45923912900017,34.98737213700003],[128.439707879,34.98810455900015],[128.42676842500012,34.99249909100014],[128.42001386800004,34.98273346600011],[128.42465253999998,34.97801341400019],[128.4336857430001,34.973700262000094],[128.44044030000023,34.96515534100017],[128.4414168630001,34.95994700700008],[128.44174238400012,34.95246002800012],[128.44044030000023,34.93162669500013],[128.43295332100016,34.89069245000012],[128.44214928500006,34.883490302000084],[128.450938347,34.88589101800004],[128.45785566500004,34.893866278000175],[128.46094811300011,34.9037132830001],[128.47445722700016,34.89069245000012],[128.4605412120001,34.87018463700015],[128.435313347,34.843166408000016],[128.412929531,34.83763508300002],[128.38288272000014,34.839289670000156],[128.3833965260001,34.85458744400016],[128.4026798840001,34.85480377800012],[128.41089928500014,34.856024481000034],[128.41586347700004,34.862738348000065],[128.3537703790001,34.86847565300015],[128.34083092500006,34.87270742400007],[128.32650800900004,34.889064846000096],[128.32447350400017,34.89728424700017],[128.33472741,34.902573960000055],[128.3577580090001,34.90989817900005],[128.3350529310002,34.94733307500009],[128.31869550900004,34.93406810100008],[128.3022567070001,34.90802643400009],[128.27906334700018,34.90680573100017],[128.2579044930001,34.93016185100008],[128.24683678500006,34.935980536000116],[128.2241317070001,34.93789297100009],[128.214121941,34.93292877800003],[128.2085880870001,34.92084381700012],[128.20655358200005,34.90550364799999],[128.20704186300023,34.89069245000012],[128.18588300900015,34.89362213700004],[128.13941491,34.89191315300003],[128.12110436300023,34.90029531500009],[128.11898847700004,34.90570709800012],[128.1187443370001,34.920355536000145],[128.11768639400023,34.92422109600015],[128.11304772200012,34.925197658000016],[128.10189863399998,34.923529364],[128.0874943370002,34.92625560100008],[128.06397545700017,34.92792389500009],[128.05567467500003,34.93162669500013],[128.05103600400017,34.93964264500009],[128.05152428500006,34.947495835000055],[128.05404707100016,34.95502350500011],[128.05567467500003,34.961737372000144],[128.05404707100016,35.03583405200011],[128.05567467500003,35.047756252000156],[128.05860436300011,35.053290106000176],[128.063731316,35.060614325000174],[128.06812584700012,35.070217190000065],[128.06934655000012,35.082464911000116],[128.05372155000023,35.06712474200016],[128.04086347700004,35.04922109600004],[128.0249943370001,35.035793361000046],[128.00098717500023,35.03408437700004],[128.01929772200012,34.99868398600002],[128.00684655000006,34.991766669000114],[127.97974694100006,34.99225495000009],[127.95386803500004,34.97882721600011],[127.94336998800006,35.002834377000156],[127.93702233200023,35.01264069200009],[127.92579186300023,35.01976146000014],[127.92286217500012,34.98753489799999],[127.91211998800011,34.962062893000095],[127.89120527400017,34.94668203300013],[127.86451256599999,34.9447289080001],[127.85385175899998,34.948187567],[127.8443302740001,34.95018138200014],[127.8364363940001,34.94944896000011],[127.83033287900005,34.9447289080001],[127.81544030000006,34.95482005400008],[127.80502363399998,34.95713939000002],[127.79843183700021,34.95864492400007],[127.75790449300008,34.95831940300015],[127.74439537900005,34.960191148000106],[127.73902428500016,34.965277411000145],[127.73658287900005,34.97288646],[127.73072350400015,34.98257070500013],[127.71924889400023,34.99005768400012],[127.71656334700005,34.982367255],[127.71827233200007,34.97040436400006],[127.72046959700005,34.96515534100017],[127.71322675900004,34.946722723000114],[127.70923912900018,34.940415757],[127.69996178499999,34.93162669500013],[127.66211998800017,34.90680573100017],[127.64112389400012,34.899115302000055],[127.6260685560002,34.90973541900008],[127.60718834700016,34.94131094000009],[127.59156334700016,34.946437893],[127.5806583990002,34.933661200000145],[127.57528730600004,34.91364166900008],[127.57642662900012,34.89691803600006],[127.58570397200006,34.879217841000134],[127.6011662120001,34.856350002000156],[127.61890709700005,34.83641185100008],[127.63477623800011,34.82802969],[127.64600670700011,34.81606679900007],[127.65650475400017,34.81191640800013],[127.66895592500006,34.81834544500005],[127.69996178499999,34.84227122600011],[127.72144616000004,34.84463125200007],[127.73975670700013,34.84170156500015],[127.75684655000022,34.84080638200005],[127.77564537900015,34.84906647300012],[127.77450605600004,34.8293317730001],[127.77125084700012,34.81533437700013],[127.7613224620002,34.78705475499999],[127.74984785200016,34.737127997000144],[127.7415470710001,34.72557200700011],[127.70639082100003,34.71588776200015],[127.67855879000015,34.727362372000115],[127.65626061300013,34.73126862200009],[127.63795006600004,34.69822825700005],[127.632090691,34.70140208500011],[127.63062584700005,34.701117255000085],[127.62924238400015,34.69928620000009],[127.624278191,34.69822825700005],[127.632090691,34.68504466400019],[127.63795006600004,34.67096588700015],[127.64527428500017,34.62628815300009],[127.64071699300021,34.617987372000115],[127.63038170700011,34.622707424000126],[127.61402428500017,34.63686758000013],[127.59009850400005,34.639308986000074],[127.57227623800023,34.647406317],[127.56080162899998,34.66217682500009],[127.55591881600004,34.68455638200011],[127.56202233200023,34.70571523600002],[127.57504316500004,34.72654857],[127.58448326900023,34.74624258000012],[127.5798445970001,34.76312897300012],[127.57178795700004,34.77252838700015],[127.55591881600004,34.80072663000011],[127.5517684250001,34.80292389500012],[127.54615319100013,34.803045966000084],[127.54029381600004,34.80377838700012],[127.53541100400017,34.80809153900013],[127.53492272200019,34.813218492000125],[127.53663170700011,34.81924062700013],[127.53956139400012,34.823065497000144],[127.52442467500012,34.84926992400009],[127.52182050900004,34.859035549000126],[127.522715691,34.86493561400006],[127.52711022200012,34.874701239],[127.52808678500017,34.87982819200012],[127.52588951900006,34.88544342700011],[127.52125084700006,34.889837958],[127.51661217500023,34.89109935100011],[127.51441491000006,34.88694896000008],[127.51099694100004,34.884711005],[127.49390709700018,34.84906647300012],[127.48731530000012,34.841498114],[127.48389733200011,34.839544989000146],[127.47877037900011,34.83905670800005],[127.44467207100008,34.82916901200003],[127.42481530000006,34.82713450700011],[127.38160241000017,34.82802969],[127.36532636800015,34.82404205900003],[127.37850996200011,34.815130927],[127.40430748800023,34.80585358300014],[127.42554772199999,34.80072663000011],[127.42554772199999,34.79441966400019],[127.38306725400004,34.78327057500014],[127.36158287899998,34.773342190000065],[127.35792076900022,34.75971100500011],[127.36646569100016,34.753973700000145],[127.38526451900023,34.760199286],[127.39527428499999,34.75665924700003],[127.40235436300004,34.74713776200004],[127.40023847700016,34.743638414000046],[127.39486738400004,34.74249909100011],[127.39210045700023,34.73981354400003],[127.40601647200008,34.70001862200003],[127.43490644600014,34.67869700700008],[127.46615644600004,34.66217682500009],[127.48755944100006,34.63686758000013],[127.47730553500004,34.638169664000046],[127.45972741000011,34.63825104400003],[127.4522404310002,34.63686758000013],[127.49520918100009,34.623236395],[127.50075946700021,34.612163867000035],[127.50358985,34.59132477300001],[127.49444022100023,34.58377660800012],[127.48414147200006,34.57656484600001],[127.46461022200016,34.577337958000115],[127.4522404310002,34.57477448100012],[127.40674889400023,34.59813060100011],[127.39210045700023,34.60203685100011],[127.37916100400004,34.60000234600007],[127.36304772200016,34.5938988300001],[127.34937584700006,34.58584219000014],[127.34359785200016,34.57819245000003],[127.34595787900005,34.575018622000144],[127.35792076900022,34.55426666900014],[127.37194040400018,34.55173335900015],[127.38040826900011,34.54710467500017],[127.41841862600009,34.5552803690001],[127.43921959700006,34.54067617400001],[127.39178801300012,34.50477960100007],[127.37494096800002,34.48503656900005],[127.35661839400022,34.49196473000008],[127.32780172800003,34.47392946100014],[127.33082116000004,34.456488348000086],[127.34359785200016,34.445013739000146],[127.31592550399996,34.44490102000004],[127.27508180100018,34.48945330000011],[127.26099694100017,34.51333242400012],[127.22348066500015,34.54682038],[127.21200605600019,34.544663804],[127.17237389400012,34.52757396000013],[127.17636152400011,34.51732005400011],[127.1792098320001,34.51333242400012],[127.16293378999998,34.51797109600007],[127.14722740999999,34.52049388200008],[127.13379967500012,34.52631256700012],[127.12452233200005,34.54067617400001],[127.12330162900015,34.555365302000105],[127.12964928500018,34.56391022300012],[127.15186608200023,34.57477448100012],[127.15902753999998,34.580023505],[127.1792098320001,34.60203685100011],[127.19166100400004,34.62360260600012],[127.1988224620001,34.631008205000015],[127.21338951900013,34.63686758000013],[127.21241295700021,34.620184637000094],[127.20753014400017,34.60398997600005],[127.19288170700023,34.57477448100012],[127.22217858200007,34.57636139500015],[127.2466740240001,34.58372630400005],[127.2613224620002,34.60040924700009],[127.26099694100017,34.629950262000065],[127.25513756600006,34.64150625200007],[127.24740644600004,34.64809804900015],[127.24146569099999,34.65582916900014],[127.24057050900002,34.67096588700015],[127.24594160200014,34.678900458000115],[127.27475019600004,34.705145575000145],[127.28516686300011,34.700628973000086],[127.29200280000013,34.694525458],[127.29371178499999,34.686712958000115],[127.28842207100014,34.677191473000036],[127.29444420700023,34.66412995000003],[127.30298912900017,34.65501536700005],[127.31446373800011,34.65192291900014],[127.32992597700003,34.65668366100006],[127.33643639400023,34.66364166900014],[127.35010826900017,34.68781159100014],[127.35792076900022,34.69822825700005],[127.34400475400017,34.715277411],[127.33863366000006,34.73309967700008],[127.33155358200015,34.741156317000026],[127.31259199300004,34.728989976000136],[127.29078209700018,34.721380927],[127.27271569100017,34.733791408],[127.24805748800006,34.76654694200012],[127.23389733200017,34.74823639500006],[127.21371504000003,34.70555247600005],[127.19971764400006,34.69147370000012],[127.1853133470001,34.68667226800012],[127.17310631600006,34.687201239],[127.14804121200022,34.69147370000012],[127.13624108200017,34.68805573100009],[127.12525475399998,34.67975495000003],[127.10718834700018,34.660101630000085],[127.09913170700024,34.654486395000056],[127.06251061300021,34.63686758000013],[127.04273522200013,34.62445709800012],[127.03003991000006,34.618353583000115],[127.01783287900017,34.61570872600005],[127.01026451900012,34.61249420799999],[127.008555535,34.60423411700019],[127.00904381600012,34.59320709800015],[127.00717207100003,34.581529039000046],[127.00058027400004,34.57330963700015],[126.9913029310002,34.56435781500012],[126.9866642590001,34.55369700699999],[126.99415123800023,34.54067617400001],[126.93897545700011,34.49591705900015],[126.94076582099997,34.45457591400013],[126.93140709700018,34.447699286000116],[126.9047957690001,34.45868561400009],[126.89600670700015,34.449937242000104],[126.89185631599999,34.440130927000084],[126.8923445970001,34.42938873900006],[126.89795983200011,34.41771067900008],[126.885020379,34.421087958000086],[126.8570255870001,34.437567450000174],[126.81861412900015,34.44684479400003],[126.80982506600012,34.45123932500012],[126.802012566,34.47040436400006],[126.80616295700021,34.52106354400014],[126.80233808700021,34.54067617400001],[126.80787194100004,34.553168036000116],[126.80665123800023,34.56854889500006],[126.80005944100016,34.58201732000005],[126.7886662120001,34.589056708000115],[126.77784264400012,34.58649323100009],[126.76693769600004,34.578029690000065],[126.75855553500017,34.56720612200017],[126.75521894600003,34.55768463700015],[126.7592879570001,34.54385000200006],[126.76563561300023,34.53180573100015],[126.76596113400016,34.52338288000011],[126.73511803500016,34.51487864799999],[126.73910566500014,34.5026716170001],[126.76148522200016,34.47919342700014],[126.72315514400023,34.46084219000009],[126.70875084700018,34.44989655200011],[126.72364342500022,34.445013739000146],[126.72706139400023,34.44277578300016],[126.72803795700023,34.437892971000096],[126.726898634,34.433010158000044],[126.72364342500022,34.43081289300012],[126.71753991000017,34.431830145],[126.708262566,34.43646881700012],[126.70337975400005,34.437567450000174],[126.69019616000016,34.43593984600015],[126.68751061300011,34.43134186400003],[126.68734785200016,34.42389557500003],[126.68222089900021,34.41400788000011],[126.6744083990002,34.40965403900013],[126.64478600400012,34.403469143000066],[126.6336369150001,34.39569733300006],[126.62964928500011,34.38922760600015],[126.60531660200003,34.3216820330001],[126.6032820970001,34.31199778900013],[126.6032820970001,34.30044179900001],[126.57886803500006,34.30475495000012],[126.53280683700021,34.292222398000106],[126.52125084700018,34.29417552300005],[126.51986738400004,34.30597565300003],[126.5293074880001,34.33002350500006],[126.52743574300004,34.34137604400003],[126.51832116000016,34.34784577000012],[126.50570722700009,34.34992096600014],[126.4795841810002,34.34882233300003],[126.4795841810002,34.35504791900017],[126.4848738940001,34.36082591400013],[126.48658287899998,34.364813544000114],[126.48853600400017,34.38056061400006],[126.49195397200019,34.38108958500014],[126.49642988400002,34.37986888200011],[126.50074303500004,34.382310289000074],[126.51490319100006,34.40355052300005],[126.51758873800023,34.41376373900009],[126.5137638680002,34.423976955000015],[126.50879967500016,34.42723216400016],[126.50147545700015,34.42934804900007],[126.48658287899998,34.43081289300012],[126.47584069100016,34.43325429900007],[126.47437584700008,34.438666083000115],[126.47730553500006,34.44358958500008],[126.4795841810002,34.445013739000146],[126.47999108200023,34.45783112200017],[126.48373457100014,34.47016022300012],[126.48194420700005,34.47675202],[126.46591230600008,34.47235748900012],[126.4703068370001,34.496486721000124],[126.49024498800017,34.50861237200003],[126.51685631600012,34.51284414300015],[126.54175866000004,34.51333242400012],[126.53720136800008,34.52106354400014],[126.53101647199999,34.52700429900007],[126.52320397200006,34.53115469],[126.5137638680002,34.5338402360001],[126.52955162900018,34.54295482],[126.539317254,34.55361562700001],[126.53964277400021,34.56297435100005],[126.52743574300004,34.56854889500006],[126.52295983200011,34.567084052],[126.51392662900017,34.55780670800014],[126.50757897200006,34.55426666900014],[126.49927819100017,34.554348049000126],[126.48633873800017,34.56093984600004],[126.4795841810002,34.561102606000176],[126.47348066500015,34.55654531500012],[126.46933027400009,34.54970937700001],[126.46591230600008,34.54067617400001],[126.45704186300023,34.53904857],[126.448496941,34.53929271000011],[126.43873131600019,34.54067617400001],[126.41732832100004,34.540350653000175],[126.40560957100016,34.53864166900017],[126.39087975400017,34.5338402360001],[126.38900800899997,34.54970937700001],[126.3804630870001,34.558905341000084],[126.35670006600017,34.56854889500006],[126.35702558700008,34.57172272300012],[126.35206139400022,34.57977936400006],[126.34603925900004,34.58462148600013],[126.34302819100006,34.57819245000003],[126.34009850399998,34.57436758],[126.33301842500022,34.570990302],[126.324961785,34.56964752800009],[126.31861412900015,34.57168203300012],[126.29786217500006,34.58803945500012],[126.29525800899998,34.589056708000115],[126.29184004000008,34.59910716400019],[126.2935490240001,34.601996161000116],[126.29761803500004,34.60333893400009],[126.30152428500006,34.60887278900013],[126.30551191500005,34.60419342700011],[126.31552168100009,34.604071356000034],[126.3227645190001,34.60887278900013],[126.31861412900015,34.61912669500005],[126.29184004000008,34.629950262000065],[126.27108808700008,34.64248281500015],[126.26937910200014,34.67129140800007],[126.27808678500017,34.70331452000006],[126.28858483200023,34.72557200700011],[126.2896427740001,34.73314036700016],[126.28882897200018,34.74241771000011],[126.29029381600004,34.75023021000011],[126.29843183700004,34.75348541900014],[126.305918816,34.752875067],[126.31373131600002,34.75104401200012],[126.31959069100006,34.74774811400009],[126.32618248800023,34.735825914000046],[126.35670006600017,34.69822825700005],[126.34717858200004,34.68789297100012],[126.34424889400023,34.67788320500016],[126.34595787900004,34.66766998900012],[126.3492130870001,34.65668366100006],[126.36988366,34.60887278900013],[126.38233483200021,34.60272858300014],[126.43189537900017,34.59589264500012],[126.45313561300023,34.583807684000035],[126.46461022200018,34.58466217700011],[126.4727482430002,34.60203685100011],[126.4615177740002,34.60065338700004],[126.45557701900006,34.60309479400014],[126.43499714700013,34.606785903],[126.42529931200008,34.61927176900015],[126.41256654200006,34.629766068],[126.41610761800021,34.65273672100007],[126.40290177500017,34.6507478300001],[126.39651901099998,34.636604222000116],[126.38613374100014,34.635835405000094],[126.37985478700001,34.65450554200005],[126.37677542400004,34.679470152000086],[126.38437937199997,34.69369878600018],[126.37861288900002,34.711182163],[126.4059694750001,34.71340801300015],[126.44788115700023,34.70587856300013],[126.45333635200002,34.69788382400016],[126.4506942070001,34.68488190300003],[126.45093834700005,34.68085358300005],[126.45053144600016,34.67698802300008],[126.45289147200012,34.67096588700015],[126.46330599400018,34.665421393000045],[126.469362486,34.65867434500011],[126.48239978400012,34.651669889000104],[126.50034546499997,34.64581857600011],[126.51119327000006,34.63715482700012],[126.52512592100018,34.62890229200012],[126.53571133000015,34.6231776250001],[126.54004967500025,34.6275902360001],[126.5191113450001,34.650369807000075],[126.53155606200019,34.65259658800012],[126.55003784200018,34.64383003300004],[126.57387257900008,34.63311135300005],[126.60270100300025,34.625532481],[126.6236271490001,34.629950262000065],[126.60254967500018,34.632879950000174],[126.58545983200023,34.64179108300003],[126.55543053500017,34.66351959800009],[126.56275475400017,34.67096588700015],[126.54110761800011,34.683986721000124],[126.50839277400003,34.71849192900005],[126.49024498800017,34.72557200700011],[126.4653426440001,34.72968170800006],[126.43576744100008,34.728105394000025],[126.41537519599997,34.738999742000104],[126.39017860200013,34.73339745500011],[126.36705994600005,34.73966441200004],[126.36401690800007,34.74916010800003],[126.37831687300005,34.763887706],[126.39232840700012,34.76860745200018],[126.42212790700013,34.764783571000166],[126.46014859900006,34.77875539200015],[126.50586998800021,34.75104401200012],[126.52125084700018,34.75348541900014],[126.52515709700018,34.75128815300015],[126.52759850399998,34.749253648000135],[126.53028405000012,34.74750397300015],[126.53492272199999,34.746039130000085],[126.53052819100006,34.765285549000126],[126.53248131600017,34.782863674000154],[126.54444420700011,34.79572174700009],[126.56893964900016,34.80072663000011],[126.61475670700021,34.789455471000124],[126.63819420700023,34.78803131700006],[126.63111412900015,34.80072663000011],[126.6465763680001,34.80711497600005],[126.65487714900003,34.808539130000106],[126.66529381600004,34.80809153900013],[126.6504012380001,34.822170315000065],[126.62769616000004,34.82558828300007],[126.57577558700008,34.821763414000074],[126.57968183700002,34.831447658000016],[126.57837975400017,34.83803945500009],[126.57577558700008,34.844875393],[126.57577558700008,34.85529205900009],[126.57943769600004,34.861883856000176],[126.58472741000011,34.86676666900014],[126.58912194100017,34.872870184000035],[126.58944746200021,34.88324616100011],[126.58139082100016,34.898016669000114],[126.56763756600006,34.90143463700012],[126.55274498800013,34.89569733300014],[126.54175866000004,34.88324616100011],[126.54053795700023,34.87494538000006],[126.54712975400011,34.858099677000055],[126.54859459700006,34.84906647300012],[126.54688561300021,34.847723700000145],[126.53492272199999,34.82802969],[126.52369225400004,34.793931382],[126.51327558700021,34.78229401200009],[126.49341881600004,34.78082916900002],[126.49341881600004,34.783148505],[126.4871525400001,34.78705475499999],[126.49122155000022,34.79238515800016],[126.4965926440001,34.802801825000145],[126.50074303500004,34.80809153900013],[126.4871525400001,34.81378815300008],[126.47803795700011,34.810451565000065],[126.46924889400013,34.80410390800013],[126.45606530000018,34.80072663000011],[126.42945397200005,34.805609442],[126.42099043100008,34.80231354400014],[126.41931790800018,34.791988179000086],[126.40560957100016,34.79218170799999],[126.38404381600006,34.78632233300006],[126.37354576900017,34.790716864000146],[126.37012780000023,34.801336981000176],[126.37728925900004,34.81126536700019],[126.39771569100017,34.82802969],[126.40512129000014,34.837225653000175],[126.4092716810002,34.844468492000104],[126.41098066500004,34.85126373900012],[126.41138756599999,34.859035549000126],[126.40870201900023,34.87396881700008],[126.41211998800023,34.88133372600008],[126.42505944100006,34.89069245000012],[126.41260826900022,34.89874909100014],[126.40170332100017,34.915472723000065],[126.39576256600007,34.935044664000046],[126.39771569100017,34.951483466000056],[126.41163170700021,34.96198151200009],[126.43051191499998,34.97260163000006],[126.43637129000004,34.98139069200012],[126.41138756599999,34.986273505],[126.39999433700004,34.98456452000009],[126.39332116000017,34.979803778000175],[126.38795006600006,34.97483958500014],[126.38038170700011,34.97260163000006],[126.37061608200021,34.968491929000024],[126.3720809250001,34.95872630400005],[126.37696373800006,34.947251695000105],[126.37728925900004,34.93789297100009],[126.36329186300021,34.927435614],[126.34522545700021,34.92641836100013],[126.32772871200008,34.93109772300015],[126.31519616000016,34.93789297100009],[126.32471764400016,34.94326406500012],[126.328868035,34.9447289080001],[126.32007897200006,34.94989655200003],[126.3125919930001,34.95612213700015],[126.30640709700012,34.96356842700014],[126.30152428500006,34.97260163000006],[126.31299889400005,34.97744375200013],[126.32422936300004,34.976955471000124],[126.3492130870001,34.97260163000006],[126.34620201900012,34.994086005000085],[126.37411543100015,35.016831773000106],[126.36670983200021,35.037787177000055],[126.33822675900015,35.07013580900018],[126.32064863400004,35.08331940300003],[126.30152428500006,35.08869049700009],[126.30941816500004,35.06622955900017],[126.30250084699999,35.05337148600016],[126.28834069100016,35.052964585000055],[126.27418053500018,35.068182684000035],[126.28353925899997,35.07884349200016],[126.25782311300021,35.10683828300007],[126.25424238400008,35.123439846000124],[126.26864668100004,35.13715241100006],[126.28907311300011,35.13939036700005],[126.30722089900021,35.13178131700003],[126.31519616000016,35.11595286700016],[126.32789147200005,35.12262604400003],[126.33497155000012,35.134100653000175],[126.34302819100006,35.15696849200016],[126.35010826900012,35.14557526200012],[126.35141035199997,35.13597239800005],[126.3487248060002,35.11749909100003],[126.34424889400023,35.10814036700016],[126.34302819100006,35.10236237200003],[126.34498131600017,35.09642161700019],[126.34896894600016,35.09642161700019],[126.35360761800011,35.09784577000006],[126.35670006600017,35.09613678600006],[126.36068769600016,35.08295319200003],[126.36166425900004,35.07729726800012],[126.36532636800008,35.07404205900018],[126.37728925900004,35.068182684000035],[126.38697350400017,35.06537506700009],[126.40381920700017,35.064886786],[126.41138756599999,35.061346747000115],[126.40560957100016,35.04995351800015],[126.40723717500019,35.038967190000086],[126.41439863400005,35.02875397300015],[126.42505944100006,35.01976146000014],[126.4502873060002,35.06659577],[126.45289147200012,35.082464911000116],[126.45240319099999,35.100287177],[126.44752037900004,35.106675523000106],[126.42872155000012,35.110541083000115],[126.42074629000014,35.11420319200009],[126.4141544930001,35.11969635600012],[126.40390058700014,35.142157294000114],[126.37110436300023,35.173529364000146],[126.36353600400015,35.18797435100011],[126.36573326900006,35.19285716400016],[126.37037194100012,35.19696686400012],[126.37509199300021,35.20237864800008],[126.37728925900004,35.21161530200014],[126.36670983200021,35.21771881700012],[126.36158287900004,35.22565338700018],[126.36353600400015,35.239488022999986],[126.35067793100004,35.23533763200005],[126.33741295700023,35.23358795800006],[126.30892988400002,35.23330312700001],[126.32007897200006,35.24457428600003],[126.3383895190001,35.2480329450001],[126.35914147200013,35.248968817],[126.37728925900004,35.25259023600016],[126.37134850400017,35.25446198100012],[126.36817467500012,35.2567406270001],[126.36451256600006,35.25873444200012],[126.35670006600017,35.25999583500014],[126.36158287900004,35.269029039000046],[126.36744225400017,35.27431875200013],[126.37387128999998,35.27838776200018],[126.38038170700011,35.28416575700005],[126.38379967500012,35.29173411700019],[126.38217207100014,35.29828522300009],[126.37899824300021,35.30459219000012],[126.37728925900004,35.31150950700011],[126.38070722700004,35.327093817000026],[126.38941491000013,35.34247467700005],[126.41138756599999,35.369859117000104],[126.41724694100004,35.36489492400007],[126.43189537900017,35.34935130400005],[126.4495548840001,35.34495677299999],[126.45850670700011,35.34544505400008],[126.45606530000018,35.35276927300008],[126.4231063160001,35.383368231000084],[126.41822350400005,35.39402903900013],[126.42554772200005,35.417669989000146],[126.44271894600014,35.44692617400007],[126.46981423500009,35.498526407000114],[126.49266327900015,35.52533300700007],[126.52528299100011,35.534857697000135],[126.56244996899997,35.5410874440001],[126.59423270099998,35.54248771200004],[126.608894295,35.552056091],[126.62297749100016,35.56861206000012],[126.64288939900021,35.572774993000124],[126.66073652400009,35.556463934000035],[126.67904707100016,35.538031317],[126.69247480600002,35.53436920800014],[126.67945397200019,35.571722723],[126.67017662900004,35.588690497000165],[126.65503991000006,35.59577057500003],[126.51315778100016,35.57689651800017],[126.46373599600021,35.60197285700012],[126.46674363400021,35.628874691000036],[126.46755899100019,35.63963844700005],[126.49097741000017,35.649115302],[126.51141569500024,35.66553251100008],[126.53033472200005,35.683164305],[126.56034574700006,35.697391795],[126.59716770100007,35.71389019400014],[126.62513225000012,35.745625835000155],[126.62938900800022,35.775480579000046],[126.64475472000018,35.782901804000076],[126.65611672100013,35.78873572100015],[126.66215366800012,35.79299834500016],[126.698022947,35.79593945900014],[126.73312722800014,35.792415051000106],[126.75538170700011,35.77846914300015],[126.77133222700004,35.77521393400009],[126.78199303500006,35.76023997600008],[126.78614342500005,35.76837799700009],[126.7895613940001,35.77968984600007],[126.79102623800023,35.791449286000145],[126.77766824800007,35.80009244600002],[126.76846474400006,35.805555327000135],[126.74934413200006,35.81325744000004],[126.72762228500018,35.825278498],[126.70997155000013,35.83600495000003],[126.70069420700017,35.83982982000005],[126.70337975400005,35.848456122000144],[126.71168053499999,35.85773346600011],[126.71998131600017,35.86326732000013],[126.7290958990001,35.86497630400014],[126.78492272200018,35.862046617000104],[126.79712975400004,35.86286041900002],[126.80616295700021,35.866685289000046],[126.81226647200006,35.875677802000055],[126.81454511800021,35.883042710000055],[126.81934655000012,35.888128973000065],[126.83309980600019,35.89004140800013],[126.83749433700008,35.89329661700016],[126.832286004,35.900620835],[126.82162519600016,35.90814850500014],[126.80982506600012,35.91168854400003],[126.80665123800023,35.90965403900019],[126.73316491000004,35.88556549700017],[126.70850670700023,35.884588934000085],[126.66009099600014,35.887157801000015],[126.61228893200004,35.89022422000006],[126.61183815100016,35.907439668],[126.60880930300017,35.931126764000126],[126.59957573500006,35.937653630000156],[126.56973974000019,35.945951984000104],[126.52573565800017,35.94035890900006],[126.52141673600013,35.970520003],[126.61204597100001,35.978430089000184],[126.66133514700006,35.98339864800015],[126.71119225400004,35.98578522300006],[126.72730553500011,35.993638414000074],[126.74447675900002,35.98956940300009],[126.76547285200014,35.998277085],[126.80233808700021,36.02094147300012],[126.8491317070001,36.03603750200013],[126.86890709700006,36.0475121110001],[126.8706974620002,36.06195709800015],[126.81210371200008,36.047308661000145],[126.79151451900022,36.042181708000115],[126.77133222700004,36.030910549000126],[126.75440514400023,36.01772695500007],[126.73568769600016,36.010443427000084],[126.7133895190001,36.00739166900017],[126.69247480600002,35.99990469],[126.67725670700004,36.00592682500012],[126.67212975400015,36.012884833],[126.67050214900016,36.022040106000176],[126.66529381600004,36.034613348000065],[126.65699303500017,36.04547760600015],[126.64014733200004,36.063421942],[126.63111412900015,36.0755882830001],[126.64503014400022,36.08470286700016],[126.63851972700014,36.09096914300012],[126.62484785200006,36.095607815000065],[126.61232836700006,36.09899244200007],[126.58944746200021,36.13080475500011],[126.57186865200012,36.13697874200007],[126.55857335600014,36.13076369800008],[126.55228153900012,36.13080877800009],[126.55176768800006,36.1418226470001],[126.52917225600001,36.153514132000154],[126.50964758000022,36.15102477900014],[126.50357948600018,36.13219012500015],[126.50025475400005,36.12571849200019],[126.49341881600004,36.13080475500011],[126.49740117200011,36.16001868200002],[126.53135681300013,36.17393972800015],[126.56134123800008,36.18158844],[126.6032820970001,36.17182038000011],[126.5884708990002,36.19159577000015],[126.58008873800006,36.19936758000013],[126.56893964900016,36.20595937700004],[126.56226647200018,36.20722077000011],[126.55429121200015,36.20343659100011],[126.54859459700006,36.20595937700004],[126.54110761800011,36.2125511740001],[126.53492272199999,36.219631252000156],[126.55591881600016,36.26626211100016],[126.5679630870001,36.28681061400003],[126.5826115240001,36.294663804],[126.57154381600006,36.30560944200006],[126.52906334700016,36.31610748900012],[126.5137638680002,36.32265859600001],[126.52881920700021,36.33388906500004],[126.57333418100022,36.34259674700009],[126.5826115240001,36.35301341400019],[126.57618248800006,36.36627838700012],[126.56039472700003,36.369614976000044],[126.52743574300004,36.36977773600002],[126.52059980600015,36.373602606000034],[126.50879967500016,36.385199286000145],[126.50074303500004,36.390936591000106],[126.50074303500004,36.39769114800005],[126.5137638680002,36.39769114800005],[126.49877937599997,36.420105859000145],[126.51689530000012,36.42818714700017],[126.537536592,36.4332209010001],[126.55677759000015,36.455829834],[126.59795991900003,36.465072646000046],[126.61744225400005,36.473456122000115],[126.55909264400022,36.473456122000115],[126.5450138680001,36.466986395000035],[126.52344811300006,36.441107489],[126.50757897200006,36.43866608300005],[126.49765058700002,36.44839101800004],[126.48853600400017,36.46686432500006],[126.48275800899998,36.485825914000046],[126.48340905000023,36.497015692000055],[126.50424238400004,36.516669012000115],[126.51392662900017,36.5287946640001],[126.51075280000012,36.534247137000065],[126.49157989400013,36.52866968700006],[126.48292076900022,36.53522370000003],[126.47507125300004,36.53941443800012],[126.47032852100018,36.5401987930001],[126.46568460600004,36.549387396000085],[126.47005864200004,36.55776620400003],[126.46921750700018,36.56693374500004],[126.46418202800011,36.58412088400014],[126.45809519600007,36.59140682000019],[126.45765695400016,36.59559566500012],[126.47145646900016,36.59629146000013],[126.49145308100012,36.60376195500008],[126.51231193700008,36.60320934800008],[126.51386797300022,36.61539162100014],[126.51986738400004,36.626166083000086],[126.51171037600001,36.63484833299999],[126.49985528800002,36.63683581500014],[126.48379869000021,36.649603414000055],[126.4939559960001,36.661316129000156],[126.50803023500005,36.67041328400005],[126.49851049800023,36.684273433],[126.47453515599999,36.68788509000014],[126.46968683200012,36.70458703700017],[126.47734917200003,36.716888123],[126.50074303500004,36.719875393000095],[126.48731530000023,36.73216380400005],[126.482676629,36.73834870000012],[126.4795841810002,36.74713776200018],[126.47120201900016,36.74140045800003],[126.45704186300023,36.72898997599999],[126.441172722,36.72353750200013],[126.43799889400022,36.71645742400007],[126.43856855600019,36.70941803600003],[126.4456361130001,36.70072162800007],[126.44688039700021,36.683761865000136],[126.43951348800024,36.664265281],[126.44390738399997,36.638081079000145],[126.43328998600006,36.61572651200005],[126.42423834400002,36.606581370000114],[126.40572781000017,36.618195758000084],[126.38639103700008,36.61888770600014],[126.36714982900004,36.62906549500018],[126.37196876700014,36.683077732000115],[126.37790876900013,36.70258175600016],[126.36642243100006,36.706971539],[126.36988366,36.732326565],[126.35914147200013,36.74266185100011],[126.34302819100006,36.74038320500013],[126.33399498800011,36.727362372000144],[126.33155358200011,36.71137116100006],[126.32431074300004,36.69965241100006],[126.30152428500006,36.69936758000013],[126.31088300900014,36.683986721000096],[126.32911217500022,36.66058991100003],[126.335703972,36.64411041900003],[126.32471764400016,36.63662344000015],[126.32618248800023,36.628363348000065],[126.34302819100006,36.61001211100002],[126.32772871200008,36.60757070500007],[126.31478925900015,36.601629950000145],[126.30396569100016,36.59308502800003],[126.29525800899998,36.58270905200014],[126.29542076900022,36.59003327000012],[126.29428144600003,36.59747955900012],[126.29200280000025,36.60423411700005],[126.28858483200023,36.61001211100002],[126.30233808700004,36.63442617400006],[126.27295983200023,36.67316315300009],[126.28174889400012,36.69257233300003],[126.27418053500018,36.719875393000095],[126.25570722700003,36.71157461100002],[126.22925866000016,36.68471914300012],[126.20972741000016,36.678900458000086],[126.19825280000023,36.67706940300009],[126.18799889400012,36.67381419500005],[126.17774498800004,36.67324453300007],[126.16561933700008,36.678900458000086],[126.16268964900006,36.68353913],[126.15853925900004,36.692857164000046],[126.15699303500017,36.70205312700001],[126.16187584700005,36.70620351800015],[126.20313561300011,36.70587799700003],[126.21363366000016,36.711615302],[126.21338951900024,36.726711330000015],[126.2026473320001,36.742417710000076],[126.18726647200018,36.74848053600006],[126.171153191,36.75226471600008],[126.1582137380001,36.76080963700012],[126.15308678500016,36.74884674700009],[126.15015709700018,36.72394440300015],[126.14454186300016,36.71238841400013],[126.13282311300004,36.70384349200018],[126.12891686300006,36.71190013200013],[126.1301375660001,36.73696523600013],[126.12818444100004,36.761297919000114],[126.13095136800021,36.768052476000136],[126.1565861340001,36.79417552299999],[126.1616317070001,36.803290106000176],[126.16561933700008,36.816066799000126],[126.16879316500015,36.80638255400008],[126.17310631600007,36.79767487200009],[126.17847741,36.789455471000096],[126.18539472700003,36.781317450000174],[126.19068444100019,36.78530508000013],[126.19727623800017,36.78489817900014],[126.20484459700002,36.78278229400002],[126.21338951900024,36.781317450000174],[126.20289147200005,36.79319896000011],[126.19223066500004,36.80857982000008],[126.22071373800023,36.80174388200013],[126.23243248800021,36.80418528900016],[126.24000084700016,36.816066799000126],[126.21444746200011,36.817531643000095],[126.19874108200021,36.82322825700008],[126.19686933700004,36.835679429],[126.21338951900024,36.85700104400014],[126.19076582100014,36.87201569200009],[126.19223066500004,36.88593170800006],[126.20948326900022,36.897162177000055],[126.23389733200011,36.90420156500012],[126.22754967500022,36.87978750200007],[126.22999108200011,36.87303294500005],[126.2437443370002,36.870672919000086],[126.26856530000022,36.87103913000003],[126.27523847700004,36.87474192900005],[126.28174889400012,36.88373444200006],[126.28353925899997,36.90623607000008],[126.28101647200016,36.93646881700006],[126.28565514400012,36.96112702000006],[126.30892988400002,36.96686432500003],[126.305918816,36.95307038000011],[126.30665123800023,36.93146393400012],[126.31104576900022,36.9095726580001],[126.32349694100006,36.88324616100009],[126.31739342500025,36.87396881700012],[126.30762780000012,36.86566803600014],[126.30152428500006,36.85700104400014],[126.30184980600002,36.84780508000007],[126.3081160820001,36.833075262000094],[126.30892988400002,36.82908763200011],[126.30347741000017,36.82436758],[126.28549238400014,36.81492747599999],[126.28174889400012,36.81232330900009],[126.2827254570001,36.803697007],[126.28598066500003,36.79458242400001],[126.291270379,36.78925202000011],[126.29843183700004,36.79189687700004],[126.31527754000015,36.804348049000126],[126.32789147200005,36.804632880000085],[126.35670006600017,36.788763739000146],[126.33602949300004,36.824652411000145],[126.32870527400014,36.846991278000175],[126.33936608200005,36.85700104400014],[126.35547936300023,36.840480861000074],[126.36532636800008,36.83535390800016],[126.36988366,36.84617747600005],[126.37411543100015,36.849554755000085],[126.384532097,36.8529320330001],[126.40455162900011,36.85700104400014],[126.40455162900011,36.86322663000011],[126.39657636800023,36.86420319200009],[126.37728925900004,36.870672919000086],[126.37728925900004,36.87689850500006],[126.4013778000001,36.88141510600009],[126.41553795700023,36.89984772300012],[126.4192000660001,36.922308661000145],[126.41138756599999,36.938910223],[126.40267988400004,36.94122955900014],[126.37647545700011,36.94159577000009],[126.36353600400015,36.94578685100011],[126.35385175900002,36.95522695500004],[126.35067793100004,36.96450429900007],[126.35547936300023,36.96775950700011],[126.36988366,36.95941803600006],[126.37647545700011,36.97492096600017],[126.36939537900005,36.98411692900014],[126.35401451900006,36.98786041900017],[126.335703972,36.986761786000116],[126.34310957100004,36.99445221600014],[126.3530379570001,36.99998607000008],[126.36378014400023,37.00145091400013],[126.37354576900017,36.99701569200015],[126.38306725400015,36.991156317],[126.39144941500004,36.98981354400003],[126.39527428500004,36.992905992000104],[126.39087975400017,37.00043366100006],[126.39087975400017,37.00787995000003],[126.42774498800023,37.00836823100003],[126.44540449300021,37.00340403900016],[126.45289147200012,36.99017975500014],[126.44784589900009,36.98200104400003],[126.43824303500011,36.97333405200014],[126.43238366000006,36.96198151200015],[126.43873131600019,36.94578685100011],[126.44752037900004,36.95282623900009],[126.45883222700003,36.95774974200005],[126.46859785200016,36.957586981000176],[126.4727482430002,36.949204820000105],[126.47388756600004,36.94220612200003],[126.47852623800006,36.93585846600011],[126.4795841810002,36.92902252800009],[126.47779381600004,36.9264183610001],[126.46876061300023,36.91779205900017],[126.46591230600008,36.9116071640001],[126.46591230600008,36.866929429000045],[126.46924889400013,36.85398997600005],[126.47657311300023,36.84491608300005],[126.48389733200023,36.841498114000146],[126.4871525400001,36.84617747600005],[126.49122155000022,36.87107982000002],[126.50953209700018,36.91885000200013],[126.5137638680002,36.942368882],[126.51913496200008,36.94790273600002],[126.53126061300007,36.94131094000015],[126.54859459700006,36.925930080000015],[126.55567467500012,36.915106512000094],[126.56080162900005,36.90509674700003],[126.56836998800004,36.898504950000145],[126.5826115240001,36.89801666900014],[126.5826115240001,36.90420156500012],[126.57545006600006,36.91181061400006],[126.56674238400015,36.93219635600014],[126.55909264400022,36.942368882],[126.497813347,36.99420807500008],[126.49341881600004,36.99701569200015],[126.49683678500006,37.00779857000005],[126.50538170700017,37.00657786700005],[126.51563561300006,36.99884674700003],[126.53158613399997,36.98289622600011],[126.54004967500025,36.976874091000106],[126.55030358200017,36.97313060099999],[126.56275475400017,36.973089911],[126.57211347700004,36.97748444200006],[126.57300866,36.98436107],[126.56617272200018,36.99079010600009],[126.55201256600016,36.99359772300015],[126.53296959700016,37.00092194200015],[126.51225445700018,37.01643034000007],[126.50292077300001,37.03952092100003],[126.50074303500004,37.05499909100003],[126.51905358200011,37.05540599200005],[126.53500410199999,37.04926178600006],[126.54932701900005,37.0392113300001],[126.56934144700008,37.02777751600014],[126.5884523690002,37.017221133000035],[126.59629238700002,37.01082778700005],[126.61146668700005,37.00256009700014],[126.62609486699998,36.99610446500015],[126.6360954100002,36.98245312400006],[126.63138267900011,36.96893085200004],[126.62167402400014,36.95978424700017],[126.6236271490001,36.95262278900013],[126.6335555350001,36.93740469000015],[126.6347762380001,36.92804596600011],[126.63111412900015,36.9116071640001],[126.6421004570001,36.91771067900011],[126.64649498800011,36.92511627800009],[126.64918053500016,36.93341705900015],[126.64537545700001,36.95795322],[126.6494489610001,36.966056461000065],[126.65579253700005,36.97459363300008],[126.6650431530002,36.98852457200006],[126.68154445400003,36.99470406900009],[126.69703209700012,36.994818427000055],[126.71434831600006,36.99304206300017],[126.73351239400019,36.98743087200016],[126.7577669460002,36.98221985900001],[126.775157097,36.973089911],[126.79623457100016,36.955755927],[126.79769941500003,36.934393622000144],[126.78199303500006,36.891180731000055],[126.79395592500006,36.89752838700017],[126.81275475400004,36.91693756700009],[126.82300866000006,36.918443101000136],[126.83017011800008,36.91022370000003],[126.83432050900004,36.89549388200005],[126.8365177740002,36.866929429000045],[126.83545983200005,36.86082591400016],[126.83082116000006,36.847235419000114],[126.82984459700018,36.839341539000046],[126.831797722,36.83112213700004],[126.84066816500014,36.819159247000115],[126.8491317070001,36.78803131700011],[126.84628339900006,36.77912018400018],[126.82984459700018,36.77509186400003],[126.83285566500015,36.76666901200014],[126.83676191500015,36.760931708],[126.84253991000006,36.757025458],[126.85084069099999,36.75397370000009],[126.85670006600007,36.776434637000094],[126.86654707100016,36.789780992000104],[126.87159264400012,36.80402252800012],[126.86329186300023,36.82908763200011],[126.88355553500006,36.82436758],[126.9047957690001,36.82225169500002],[126.87045332100016,36.852769273000135],[126.86019941500014,36.869574286000145],[126.880625847,36.87689850500006],[126.89901777400004,36.87933991100009],[126.9424748060002,36.89337799700003],[126.97445722699997,36.912909247000115],[126.989512566,36.9186058610001],[127.00033613400004,36.92837148600013],[127.00717207100003,36.95262278900013],[127.0052189460001,36.95693594000012],[126.99594160200003,36.96478913000011],[126.99415123800023,36.96686432500003],[126.99952233200011,36.970892645],[127.00489342500023,36.97142161700016],[127.01002037900017,36.97125885600012],[127.02393639400022,36.97744375200006],[127.0328068370001,36.97850169500013],[127.03939863400008,36.98200104400003],[127.04200280000016,36.99359772300015],[126.982188347,36.980169989000146],[126.97315514400012,36.969956773000106],[126.97632897200018,36.93903229400017],[126.96908613400014,36.932033596000096],[126.94581139400023,36.925930080000015],[126.9126896490001,36.92963288000014],[126.87338300899998,36.94798411700019],[126.8379012380001,36.97589752800003],[126.82440967100014,37.002616176000075],[126.88428795700004,37.00787995000003],[126.88428795700004,37.014105536],[126.88013756600006,37.01569245000003],[126.8706974620002,37.02147044499999],[126.8819279310002,37.022650458000115],[126.89258873800023,37.02216217700014],[126.9023543630001,37.01947663000005],[126.91098066499998,37.014105536],[126.90674889400006,37.033148505],[126.89307701900022,37.05011627800015],[126.88314863400004,37.06956614800008],[126.89047285200004,37.095933335000055],[126.87916100400015,37.10000234600004],[126.87045332100016,37.09076569200006],[126.86508222700004,37.07485586100013],[126.86329186300023,37.05878327000006],[126.8586531910001,37.041327216000084],[126.8491317070001,37.03729889500011],[126.83969160199999,37.044867255000085],[126.82056725399998,37.04169342700011],[126.80128014400006,37.03774648600004],[126.75521894600003,37.04881419500008],[126.75552653200013,37.06014106400015],[126.75119053500023,37.07009237300017],[126.75481395200022,37.083556184000045],[126.75285886400015,37.1006879670001],[126.76445101400006,37.117657804000046],[126.77826835000003,37.13280400600003],[126.79418169300018,37.1389203],[126.81120990000002,37.144120531000155],[126.8365177740002,37.14443594000012],[126.86353600400017,37.15029531500009],[126.86915123800006,37.156968492000125],[126.8706974620002,37.175482489000146],[126.86451256600006,37.179103908000016],[126.85059655000018,37.173041083000115],[126.82984459700018,37.158677476000136],[126.81690514400017,37.16079336100013],[126.80738366000016,37.165269273000106],[126.80225670700021,37.17316315300009],[126.80233808700021,37.18537018400014],[126.77857506600006,37.17568594],[126.7592879570001,37.16469961100013],[126.72364342500022,37.13385651200018],[126.7144474620001,37.12799713700004],[126.70289147200005,37.124701239],[126.69214928500004,37.12498607000013],[126.68563886800014,37.13011302300004],[126.68604576900022,37.13930898600002],[126.69214928500004,37.14826080900015],[126.70687910200003,37.164862372000115],[126.67774498800006,37.15949127800015],[126.6684676440001,37.16181061400012],[126.66529381600004,37.175482489000146],[126.67066490999999,37.18561432500012],[126.68287194100016,37.191351630000085],[126.69678795700017,37.19513580900009],[126.70687910200003,37.19965241100006],[126.71900475400005,37.21287669500001],[126.71583092500023,37.2162946640001],[126.68905683700005,37.213324286],[126.68018639400012,37.2176781270001],[126.67318769600003,37.228420315],[126.66651451900017,37.2418480490001],[126.65845787900005,37.25429922100001],[126.66293378999998,37.255316473000065],[126.66578209700006,37.256903387000094],[126.67212975400015,37.26170482000002],[126.67945397200019,37.25722890800013],[126.69052168100019,37.25771719000012],[126.70997155000013,37.26170482000002],[126.72584069100004,37.25820547100001],[126.73910566500014,37.25165436400012],[126.75220787900005,37.248277085000026],[126.76758873800006,37.25429922100001],[126.76636803500016,37.243150132],[126.76758873800006,37.232326565],[126.77247155000023,37.22394440300003],[126.78199303500006,37.220160223],[126.79249108200011,37.223456122000144],[126.79737389400005,37.23285553600009],[126.80233808700021,37.25429922100001],[126.81918379000004,37.27440013200005],[126.83301842500023,37.272853908000016],[126.84864342500012,37.26532623900006],[126.8706974620002,37.26788971600016],[126.86597741,37.276068427000084],[126.8598738940001,37.28213125200007],[126.85214277400021,37.28620026200004],[126.84278405000006,37.28839752800012],[126.82889134800004,37.2879840050001],[126.82254447400013,37.295606773000095],[126.80760269700023,37.29776593100014],[126.79555963000008,37.294724614000025],[126.78357307900015,37.29526756400009],[126.76464317200005,37.298266746000095],[126.73331008900007,37.306170435000084],[126.689792719,37.33248642000002],[126.68748790400011,37.34402775299999],[126.70686509900023,37.366468577000106],[126.72004509100023,37.37705338200006],[126.71716238899998,37.383838776000076],[126.66475029200004,37.389168229000134],[126.64034014200004,37.36438956600013],[126.61508749300006,37.379744927],[126.62538212000018,37.39791834500009],[126.63862853900015,37.4137905620001],[126.6303083940002,37.42501279800014],[126.61240549000004,37.432740637000144],[126.59598521600005,37.43965658900011],[126.59829071400011,37.457927537999986],[126.59501803700009,37.47227345500012],[126.60476098200014,37.48569654000009],[126.63344429000014,37.49257085200015],[126.64202197400017,37.496062212000126],[126.64416298100016,37.50438517100015],[126.63067522600025,37.507301053],[126.62702516200012,37.49859465700003],[126.60645123400005,37.49681174700014],[126.60110577300017,37.5068021040001],[126.59890451700018,37.52510653300011],[126.603792372,37.549296673000086],[126.59890670400003,37.558087735000136],[126.59110467000018,37.57287000800012],[126.582250045,37.584483457000104],[126.57193454900008,37.59849457000014],[126.56051462500002,37.60735331500011],[126.56028577100008,37.62084737200017],[126.5561629570001,37.64101797100001],[126.5454207690001,37.672512111000046],[126.53101647199999,37.754706122000115],[126.53492272199999,37.768215236000074],[126.54818769600016,37.770168361000046],[126.6032820970001,37.754543361000124],[126.62086022200006,37.75755442900005],[126.63550866000006,37.76300690300017],[126.64852949300021,37.765041408000016],[126.66187584700008,37.75796133000016],[126.66684003999998,37.746161200000174],[126.66879316500014,37.72772858300014],[126.6673283210001,37.708807684000035],[126.66187584700008,37.69586823100012],[126.66146894600004,37.67243073100006],[126.69214928500004,37.65204498900006],[126.73104902400021,37.63906484600007],[126.75521894600003,37.63788483300014],[126.7364201180001,37.65330638200008],[126.6788029310002,37.68626536700005],[126.69556725400004,37.72174713700004],[126.70053144599999,37.742987372000115],[126.69629967500006,37.75796133000016],[126.68685957100014,37.77362702000012],[126.68604576900022,37.78217194200015],[126.68604469676752,37.78218270497696],[126.68490644600003,37.7936058610001],[126.68946373800023,37.81366608300006],[126.69996178500006,37.82965729400014],[126.69247480600002,37.83710358300014],[126.68262780000022,37.83600495000009],[126.66749108200023,37.82782623900009],[126.66745892690015,37.827810161200105],[126.66051639800011,37.91381093400018],[126.66578739500015,37.93763376900016],[126.67782800300019,37.94458424900016],[126.69632816600013,37.94618621900018],[126.7221147060002,37.953937683],[126.76190555800022,37.97900075300011],[126.84732670200005,38.0820177210001],[126.8647933350002,38.096022034],[126.90334395400018,38.119586487],[126.91982873600014,38.134598491000176],[126.94013424700007,38.174172571],[126.95372847500009,38.20066681000013],[126.96606463600007,38.213038016],[126.97191857900012,38.21890859000008],[127.0267472740002,38.254461976000144],[127.0904643150002,38.28585540800016],[127.15748864800004,38.30722361300017],[127.22198083500014,38.312701315000155],[127.2538135180001,38.31003997800015],[127.37711348500002,38.31851491300016],[127.47193973800009,38.295906474],[127.50206709900024,38.29807688400011],[127.56082320200018,38.31208119700001],[127.75373132300004,38.32536204100002],[127.76194787700014,38.32096954300012],[127.77471195500013,38.30644846600008],[127.78701094600008,38.29668162000003],[127.80075687700011,38.29391693200007],[127.86685103400018,38.30484649700004],[127.97175419200008,38.30004058900012],[128.03986372900025,38.304278056000086],[128.1084900310001,38.3235016890001],[128.17236210200016,38.355954489000126],[128.22558882700005,38.399776103000036],[128.24873986800006,38.42576934800009],[128.26806685400018,38.45351959300005],[128.28108931500012,38.4843704230001],[128.28543013600017,38.51984629300015],[128.2769552010001,38.554056091000135],[128.27478479000004,38.57149688700018],[128.28108931500012,38.58441599600009],[128.30837447200022,38.601340027],[128.36492222296098,38.62433075897492],[128.39478358107735,38.57807413305001],[128.394786004,38.57807038000006],[128.4414168630001,38.50580475500008],[128.45069420700005,38.4741071640001],[128.47445722700016,38.42609284100003]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Lebanon","sov_a3":"LBN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lebanon","adm0_a3":"LBN","geou_dif":0,"geounit":"Lebanon","gu_a3":"LBN","su_dif":0,"subunit":"Lebanon","su_a3":"LBN","brk_diff":0,"name":"Lebanon","name_long":"Lebanon","brk_a3":"LBN","brk_name":"Lebanon","brk_group":null,"abbrev":"Leb.","postal":"LB","formal_en":"Lebanese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lebanon","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":12,"pop_est":4017095,"gdp_md_est":44060,"pop_year":-99,"lastcensus":1970,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"LE","iso_a2":"LB","iso_a3":"LBN","iso_n3":"422","un_a3":"422","wb_a2":"LB","wb_a3":"LBN","woe_id":23424873,"woe_id_eh":23424873,"woe_note":"Exact WOE match as country","adm0_a3_is":"LBN","adm0_a3_us":"LBN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":4,"homepart":1,"filename":"LBN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[36.391194296000094,34.62248728400007],[36.41599898300012,34.622900697000055],[36.44018355300011,34.62936025000005],[36.43625614400014,34.59783762600005],[36.42912479600011,34.59318674700009],[36.41847945100011,34.600318095000034],[36.4036999920001,34.60383209200009],[36.3889205320001,34.596235657000136],[36.38685347500012,34.58424672400008],[36.388093709000145,34.56951894200006],[36.383546183000135,34.55380930600009],[36.364012492000086,34.54109690400014],[36.33662398200005,34.52884959000002],[36.319880818000115,34.51412180600002],[36.32985124700013,34.49860331600007],[36.33269657400018,34.494174703000084],[36.33538374800013,34.493477071000115],[36.338174276000075,34.493296204000075],[36.34096480300013,34.493477071000115],[36.34365197700009,34.494174703000084],[36.36308231600014,34.49903228800011],[36.39233117700013,34.50014333100012],[36.419719686000064,34.498334656000026],[36.43346561700008,34.49432973300014],[36.43346561700008,34.494174703000084],[36.43987349400004,34.477457377000064],[36.44979536900013,34.46453826900006],[36.46323124200006,34.45523651200011],[36.480181111000086,34.449138693000066],[36.49465051200008,34.4342558800001],[36.501885213000094,34.43030263300005],[36.509223267000095,34.4324213670001],[36.525139608000075,34.42293874100005],[36.53061730900009,34.414179586000074],[36.52979048700007,34.403094991000046],[36.5262764900001,34.3866877240001],[36.52358931400005,34.379788920000124],[36.51997196400009,34.37506052700013],[36.51676802600019,34.369867045000035],[36.51594120300007,34.3616504930001],[36.5186283770002,34.35364064500001],[36.52358931400005,34.3458891810001],[36.54519006300012,34.32072275900006],[36.55583540800012,34.31108510400014],[36.56296675600015,34.308501282000066],[36.57030480900005,34.308966370000064],[36.57681604000004,34.307674459000026],[36.581983683000146,34.299897156000014],[36.579916626000056,34.28690053300008],[36.57030480900005,34.275867615000095],[36.56276005100011,34.26294850700006],[36.5675142820001,34.244138285000076],[36.57402551200005,34.22974639900005],[36.59821008300014,34.20985097200013],[36.60355389100004,34.200100866000035],[36.604101196000045,34.199102275000115],[36.5758858640001,34.1732640590001],[36.552734823000094,34.140992127000025],[36.50798303200014,34.109185283000095],[36.488449341000035,34.0886439010001],[36.48266158000007,34.07451039700007],[36.48069787600019,34.06275400800007],[36.47522017400013,34.053503927000065],[36.45889042200008,34.04670847600001],[36.445144490000075,34.046140036000054],[36.423647095000035,34.05280629500007],[36.41217492700008,34.05363311800011],[36.39109094300005,34.04471893300007],[36.3578113200001,34.009553121000124],[36.31802046700011,33.980510966000026],[36.302310832000046,33.964387919000046],[36.288564901000086,33.9465078740001],[36.2671708580001,33.91038604800008],[36.26892785600006,33.90676869800009],[36.27533573400012,33.897208557000084],[36.28164025900014,33.89111073800004],[36.31109582500005,33.87199045800014],[36.35036991400011,33.86640940400014],[36.3676298420001,33.857546896000116],[36.369593547000136,33.837005514000055],[36.35750126200014,33.82377634700006],[36.33827762900012,33.82119252600006],[36.30055383300015,33.828685608000086],[36.24918745900009,33.84974375400009],[36.23182417800007,33.85253428100006],[36.21663130700005,33.84775421200007],[36.20267867000007,33.8382974240001],[36.18655562300017,33.830210063000095],[36.16567834500012,33.829796652000084],[36.15761682100014,33.83405995700013],[36.144904419000056,33.847418315000084],[36.13828983600007,33.85062225300004],[36.10242639100005,33.832277121000054],[36.085063111000125,33.82605011000007],[36.066459594000094,33.82199351100007],[36.05043990100012,33.81643829400005],[36.040518026000086,33.805612081000106],[36.027082154000084,33.78429555300002],[35.99400923600007,33.760705262000016],[35.98026330600004,33.743548686000054],[35.97416548700011,33.73215403200007],[35.955872030000194,33.718123881000054],[35.94843062300009,33.7092096960001],[35.9469836830001,33.700838114000135],[35.949877564000076,33.68269968700011],[35.94719038900007,33.67308787100009],[35.942436157000145,33.66921213800006],[35.929413697000136,33.66507802400011],[35.92538293400014,33.66166737900011],[35.9215588780001,33.64029917400009],[35.93478804500006,33.63340037100002],[35.956905558000074,33.62993805000008],[35.98026330600004,33.61900848400012],[35.99452600100011,33.6157011920001],[36.012922811000124,33.60802724200002],[36.02966597500006,33.5976402790001],[36.03845096800006,33.586348979000036],[36.03524702900006,33.56779714000009],[36.019847453000125,33.552630106000066],[35.99928023300003,33.54126129200009],[35.98026330600004,33.5339490770001],[35.95680220500009,33.53420745800008],[35.933237752000075,33.52782542000003],[35.921868937000056,33.51457041400005],[35.93540816300003,33.49426157700012],[35.91949182100012,33.46235138000014],[35.88848596200012,33.440414734000086],[35.870089152000105,33.43124216700008],[35.84511608700006,33.41874246300006],[35.8210998940001,33.40672170000005],[35.80570031700011,33.391347962000054],[35.78575321500011,33.35788747200007],[35.76942346200008,33.3426429240001],[35.75753788200012,33.336312561000085],[35.74368859900005,33.3311707570001],[35.729425903000106,33.327811788000076],[35.71619673700019,33.326726583000095],[35.69852339700009,33.322669983000075],[35.66048954300004,33.289261169000014],[35.64054244000005,33.27585113600008],[35.624716108970226,33.27292434904436],[35.61036340300012,33.270270081000064],[35.60147505700013,33.26272532200011],[35.604575643000146,33.24435435],[35.604575643000146,33.244302674000096],[35.604575643000146,33.24425099700007],[35.603892448000124,33.240322623000026],[35.603852173000064,33.240091044000046],[35.59806441300009,33.24425099700007],[35.59785770700006,33.24438018800004],[35.59775435400013,33.24435435],[35.58504195100005,33.252209168000064],[35.56695520000005,33.27618703200005],[35.56116744000008,33.28212982200009],[35.54948856600009,33.28101877900008],[35.54277063000006,33.271536153000085],[35.536879516000056,33.25786773700008],[35.52778446500008,33.24425099700007],[35.520033,33.222185161000084],[35.517655884000135,33.17288584400009],[35.51228153500017,33.147409363000065],[35.503703247000146,33.130614523000105],[35.485099731000105,33.102605896000085],[35.48013879400013,33.087387187000076],[35.449442993000105,33.085216777000085],[35.40159061700012,33.06793101000008],[35.34515995300006,33.05558034200004],[35.3319307860001,33.05715647400007],[35.322629028000044,33.067362569000124],[35.315704387000096,33.07922231000006],[35.305782511000075,33.08937673000011],[35.294620402000135,33.096973165000065],[35.28882469800004,33.099201230000034],[35.283664998000056,33.10118479400012],[35.27146936000014,33.10118479400012],[35.234469035000124,33.09092702300012],[35.227337687000045,33.091366272000045],[35.213178345000124,33.09444102000009],[35.20718387900007,33.09480275500007],[35.200672648000136,33.092735698000126],[35.189613891000135,33.08552683600007],[35.185273072000136,33.08397654200013],[35.10523522200015,33.08901601800011],[35.10523522200015,33.09064362200013],[35.106455925000034,33.095038153000104],[35.101898634000115,33.094468492000146],[35.100433790000125,33.09568919500006],[35.100433790000125,33.09821198100008],[35.09961998800014,33.101263739000075],[35.10580488400006,33.11245351800008],[35.11475670700014,33.12372467700007],[35.125498894000145,33.132513739000046],[35.147634311000104,33.140326239000046],[35.154795769000145,33.15029531500002],[35.160980665000125,33.16168854400007],[35.16781660200013,33.17015208500003],[35.16179446700005,33.176947333000044],[35.16781660200013,33.17788320500003],[35.171071811000104,33.176581122000044],[35.17465254000007,33.17015208500003],[35.20476321700011,33.22479889500008],[35.20915774800005,33.25462474200009],[35.18832441500007,33.28001536700009],[35.20972741000014,33.293402411000095],[35.22478274800005,33.31199778900009],[35.24366295700008,33.3556989600001],[35.24610436300014,33.36888255400004],[35.2467554050001,33.395819403000104],[35.25049889400009,33.40973541900007],[35.268728061000104,33.432603257000096],[35.2750757170001,33.444973049000026],[35.27100670700008,33.45750560100004],[35.32300866000014,33.4909121770001],[35.349131707000076,33.51386139500008],[35.36036217500009,33.54344310100004],[35.362478061000104,33.556341864000046],[35.40064537900008,33.64313385600008],[35.39437910200013,33.64996979400007],[35.40992272200009,33.66128164300008],[35.42164147200008,33.70233795800007],[35.43848717500009,33.71137116100007],[35.437836134000065,33.72337474200009],[35.47730553500014,33.80390045800007],[35.48129316500007,33.82367584800008],[35.48300214900007,33.86517975500007],[35.48324629000007,33.87246328300009],[35.47999108200008,33.88426341400006],[35.47380618600004,33.89386627800005],[35.47046959700009,33.90208567900004],[35.47584069100014,33.90997955900011],[35.48658287900008,33.91299062700011],[35.49976647200009,33.911200262000136],[35.51124108200008,33.9070498720001],[35.51734459700015,33.90253327000005],[35.524180535000085,33.90253327000005],[35.533864780000044,33.9070498720001],[35.548106316000144,33.9061953800001],[35.55746504000007,33.90566640800011],[35.57203209700009,33.90997955900011],[35.57837975400014,33.91669342700007],[35.58790123800014,33.93659088700005],[35.59310957100013,33.94476959800005],[35.59343509200005,33.9489199890001],[35.59197024800011,33.950425523000064],[35.58570397200015,33.95091380400003],[35.594248894000145,33.9592959660001],[35.60629316500007,33.983221747000066],[35.613536004000075,33.99315013200007],[35.62012780000009,33.99510325700001],[35.63672936300014,33.99530670800007],[35.64087975400008,33.99941640800011],[35.64039147200009,34.00853099200009],[35.635752800000034,34.0132510440001],[35.63038170700008,34.016099351000065],[35.62720787900014,34.0198428410001],[35.626963738000086,34.04425690300013],[35.643321160000085,34.088080145000106],[35.64771569100009,34.119126695],[35.644541863000086,34.130845445],[35.63038170700008,34.152818101],[35.62720787900014,34.16693756700004],[35.62720787900014,34.20111725500004],[35.63038170700008,34.20844147300005],[35.644541863000086,34.21698639500008],[35.64771569100009,34.22215403900006],[35.64828535200007,34.253607489000075],[35.653005405000044,34.284857489000046],[35.66521243600005,34.31134674700013],[35.68873131600009,34.328314520000106],[35.70582116000014,34.31659577000002],[35.72217858200014,34.337469794000064],[35.737315300000034,34.369208075000124],[35.75074303500014,34.38979726800008],[35.80616295700008,34.41498444200004],[35.82357832100006,34.43451569200001],[35.805430535000085,34.458685614000046],[35.805430535000085,34.464911200000074],[35.82398522200008,34.46084219000002],[35.903330925000034,34.47797272300008],[35.95679772200014,34.520086981000105],[35.97291100400013,34.52977122600006],[35.983164910000134,34.53864166900012],[35.988780144000145,34.55272044500006],[35.98959394600007,34.5996768250001],[35.98682701900009,34.62079498900002],[35.98064212300005,34.63849518400011],[35.96989993600004,34.64984772300008],[35.96989965538296,34.649848955451034],[35.98264042200009,34.650237529],[35.991425415000094,34.64822214800005],[35.99876346800005,34.64537994400007],[36.01623010300011,34.63364939400009],[36.03793420400012,34.62843007500007],[36.06077518800004,34.627913310000054],[36.08723352100008,34.63101389600007],[36.112139913000135,34.62953226600007],[36.15585982200014,34.62693145800005],[36.16020064300005,34.628068339000066],[36.17218957500012,34.63406280600012],[36.17828739400005,34.63530304000005],[36.183351684000115,34.63349436500005],[36.19513391100014,34.62620798800006],[36.201231730000075,34.62445098900008],[36.26158980300016,34.627241516000055],[36.27151167800008,34.630962219000054],[36.28071008300009,34.639127096000095],[36.28443078600009,34.64832550100007],[36.2848441970001,34.667910868],[36.28815148900008,34.67555898100008],[36.30892541500015,34.68754791300003],[36.323808228000075,34.67948638900015],[36.34737268000009,34.64413971000005],[36.367526489000056,34.62920522100009],[36.391194296000094,34.62248728400007]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Laos","sov_a3":"LAO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Laos","adm0_a3":"LAO","geou_dif":0,"geounit":"Laos","gu_a3":"LAO","su_dif":0,"subunit":"Laos","su_a3":"LAO","brk_diff":0,"name":"Lao PDR","name_long":"Lao PDR","brk_a3":"LAO","brk_name":"Laos","brk_group":null,"abbrev":"Laos","postal":"LA","formal_en":"Lao People's Democratic Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lao PDR","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":9,"pop_est":6834942,"gdp_md_est":13980,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"LA","iso_a2":"LA","iso_a3":"LAO","iso_n3":"418","un_a3":"418","wb_a2":"LA","wb_a3":"LAO","woe_id":23424872,"woe_id_eh":23424872,"woe_note":"Exact WOE match as country","adm0_a3_is":"LAO","adm0_a3_us":"LAO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"LAO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[101.86792118300008,22.378841858000072],[101.87727461800011,22.391864319000035],[101.88151208500005,22.41217315700004],[101.89164066600011,22.429691467000083],[101.90936568200003,22.435892639000087],[101.95287723800004,22.43687449100014],[101.97421960500009,22.445142720000092],[101.9949935300001,22.44741648400011],[102.01457889800014,22.446072896000146],[102.07591882300011,22.432430319000048],[102.08553064000012,22.42912302700003],[102.09534916200005,22.423128561000112],[102.09994836500009,22.414860331000053],[102.10062015800008,22.405765280000082],[102.10734543400008,22.397548726000053],[102.11865523300008,22.397548726000053],[102.12542484500011,22.38364776600008],[102.13136763600005,22.373725891000078],[102.14139286300006,22.342151591000118],[102.14418339000014,22.338585917000046],[102.15286503100009,22.332488098000084],[102.15612064700008,22.328095602000076],[102.15612064700008,22.322669576000123],[102.15281335500009,22.310835673000096],[102.15436364700008,22.304686178000026],[102.16888472500005,22.28964833600014],[102.18619633000003,22.278382874000073],[102.20056237800009,22.265463766000067],[102.20697025600009,22.245413310000032],[102.22624556500011,22.228411764000015],[102.2864486090001,22.200041403000085],[102.35807214400006,22.134722392000043],[102.38943973800006,22.117100728000054],[102.39879317200013,22.108884176000032],[102.4054077560001,22.098290508000044],[102.41522627800009,22.073485820000116],[102.42215091900005,22.062220358000047],[102.44261478700014,22.047440898000048],[102.46762618000014,22.034005025000084],[102.48287072800014,22.02139597600006],[102.47408573400008,22.00889028000006],[102.4712435300001,22.005996399000082],[102.46907312000013,22.002844137000125],[102.46731612200011,21.999226786000037],[102.46638594600006,21.995351054000082],[102.47806482000004,21.957575583000022],[102.51589196800012,21.93917877200002],[102.56023034700007,21.925432841000088],[102.59102950100004,21.901351624000142],[102.62513594600011,21.82864288300007],[102.63459273300009,21.78776682600008],[102.62978682500005,21.72911407500004],[102.63190555900012,21.706273092000032],[102.6368148200001,21.68363881500008],[102.64332605000004,21.66803253200004],[102.65066410300005,21.65780059800008],[102.6534546310001,21.65630198200006],[102.65743371600007,21.658420716000137],[102.71029870600006,21.65929921500006],[102.72115075700007,21.661676331000105],[102.75215661600004,21.680899964000048],[102.77468754100003,21.707875061000063],[102.78667647300011,21.739914449000082],[102.78915694200009,21.820322978000032],[102.80672692900004,21.836084290000116],[102.82646732600011,21.821304830000088],[102.83494226100008,21.77562286400007],[102.83189335200007,21.735780335000044],[102.83514896700007,21.71645334900009],[102.84718957500012,21.704464417000054],[102.86450118000005,21.705652975000074],[102.93700321500006,21.735056865000047],[102.94263594600011,21.738984273000113],[102.9478035890001,21.73712392200011],[102.95602014200011,21.723946431000027],[102.9598958740001,21.713042705000078],[102.96175622600009,21.70151886000005],[102.96082605000002,21.632840881000078],[102.96413334200014,21.60860463500009],[102.97410689300011,21.586693827000147],[102.97493371600007,21.583903300000088],[102.97529545100014,21.5810094200001],[102.97493371600007,21.578167216000026],[102.97410689300011,21.57532501200006],[102.95410811400012,21.557289938000054],[102.91659102400013,21.513571676000083],[102.89499027600004,21.495278219000113],[102.8496700450001,21.425411682000032],[102.86475956200013,21.432181295000078],[102.88475834200005,21.4440668740001],[102.90418868000012,21.452696839000055],[102.91803796400012,21.450113017000035],[102.91679773000004,21.43864084900011],[102.88382816600011,21.388359680000065],[102.87964237500005,21.367895813000104],[102.87881555200005,21.32216217100006],[102.87519820200004,21.305315654000083],[102.86300256400006,21.293791810000073],[102.82915450100012,21.285885315000115],[102.81277307200007,21.27389638300005],[102.80130090300008,21.254827779000067],[102.80915572100014,21.250590312000043],[102.82817264900005,21.252450663000047],[102.85018680900009,21.25167551700011],[102.86512129800013,21.246197816000034],[102.87814375900007,21.237619527000106],[102.88785892800007,21.22692250600008],[102.89297489400008,21.215088603000083],[102.89178633700004,21.20599355100009],[102.8830013430001,21.186098124000093],[102.8830013430001,21.17643463200008],[102.88909916200004,21.166409403000042],[102.89592045100011,21.16454905200004],[102.90418868000012,21.16418731700014],[102.91442061400011,21.158399556000063],[102.92563440000009,21.14165639200013],[102.92588454400004,21.140639764000127],[102.93529789200011,21.10238230400006],[102.94217085800004,21.084863994000102],[102.94682173700009,21.07587229400005],[102.95157596900007,21.068999329000093],[102.95948246300009,21.065795390000115],[102.97410689300011,21.067655742000028],[102.99916996300004,21.057372132000125],[103.0145178630001,21.040525615000064],[103.03710046400003,20.99546376600011],[103.0682096760001,20.93128163600008],[103.08670983900004,20.901981100000114],[103.11528690600011,20.86839141900009],[103.13001469000011,20.854903870000015],[103.13637089000014,20.850459696000115],[103.14696456000007,20.846015524000105],[103.16505131100013,20.84369008400006],[103.17523156800007,20.841209615000082],[103.18365482600007,20.837075501000072],[103.19709069800011,20.827825420000067],[103.20690922000011,20.824569804000078],[103.21858809400004,20.82436309800002],[103.22582913700012,20.826412811000065],[103.23812178600014,20.829892476000026],[103.24711348500011,20.830719300000055],[103.2633915610001,20.826378479000056],[103.31982222500005,20.797853089000114],[103.34767582200003,20.789068095000033],[103.3583211670001,20.787724508000053],[103.3637988690001,20.78762115500004],[103.38911460100013,20.79428827500004],[103.39087732000007,20.79475250300007],[103.41123783400008,20.80560455300011],[103.41826582900012,20.811805725000113],[103.42131473900014,20.818110250000103],[103.42658573400006,20.820694072000034],[103.44043501800013,20.815733135000073],[103.45257898000011,20.80431264300006],[103.47087243700008,20.770877991000077],[103.48162113500011,20.757907206000056],[103.48937260000014,20.752481181000093],[103.49733077000008,20.748347067000054],[103.50596073500003,20.74596995100012],[103.5160893150001,20.745504863000093],[103.5160893150001,20.74555653900009],[103.51614099200009,20.745504863000093],[103.51614099200009,20.745349833000148],[103.57794600500011,20.732895813000056],[103.59737634300006,20.722353821000098],[103.63603031400008,20.68282135000007],[103.65794112100014,20.66473459900004],[103.66114506000008,20.660755514000073],[103.66538252800007,20.658275045000096],[103.67633793200014,20.656518046000116],[103.6854329840001,20.657654928000028],[103.69762862100009,20.661530661000086],[103.70848067200006,20.666749980000077],[103.71426843300003,20.67171091800014],[103.71375166900008,20.679824117000038],[103.70362308800003,20.69925445600012],[103.70238285300013,20.708711243000096],[103.70724043800004,20.721837057000073],[103.71344161000013,20.725764465000026],[103.72201989700005,20.72684967100011],[103.73437056500012,20.730932109000033],[103.75457605000007,20.742921041000074],[103.7586068120001,20.749742330000032],[103.75519616700005,20.759405823000066],[103.75302575700005,20.779869690000027],[103.7567464600001,20.79599273700009],[103.76516971900008,20.8162498990001],[103.77555668200011,20.83490509100008],[103.78532352700012,20.845963847000093],[103.79643396000004,20.84952952100005],[103.81669112200007,20.846894023000033],[103.82681970200014,20.847669169000138],[103.83575972500005,20.852268371],[103.85048750800013,20.864774069000106],[103.85860070800004,20.869579976000093],[103.93213627200002,20.891800843000052],[103.95218672700008,20.900275778000037],[103.96231530800003,20.90270457000011],[103.97399418100008,20.90234283400011],[104.01058109600012,20.908078919000072],[104.0566764730001,20.958825175000044],[104.09228153500004,20.96120229100009],[104.09915450000011,20.957688294000036],[104.11424401900013,20.94704294900006],[104.12261560100006,20.94316721600009],[104.13207238800004,20.9416686000001],[104.1547583410001,20.941255188000067],[104.1654036870001,20.93975657100006],[104.19387740100012,20.929886373000073],[104.20126713100007,20.925442200000077],[104.20710656700004,20.917639059000066],[104.21754520700006,20.897020162000047],[104.22105920500013,20.892007548000095],[104.22803552300013,20.89231760700008],[104.25056644700004,20.898260397000087],[104.26002323400013,20.898932191000085],[104.2690666100001,20.896193339000035],[104.27893680900007,20.891542460000068],[104.28787683200011,20.885754700000092],[104.2952665610001,20.879811910000086],[104.30720381700012,20.864619039000047],[104.32322351100008,20.8338715620001],[104.33634932500007,20.819040426000072],[104.34466923000014,20.813666077000107],[104.36032719000006,20.808085022000082],[104.36797530100006,20.803124085000036],[104.37334965100013,20.795734354000047],[104.38166955600008,20.77837107400012],[104.38905928600008,20.770981343000102],[104.4093164470001,20.765193584000144],[104.43215743000007,20.765762024000082],[104.45262129700005,20.76359161400009],[104.46616052300004,20.7496389770001],[104.47566898600013,20.71821970600007],[104.49230879700012,20.70209666000008],[104.54388187700005,20.678738912000142],[104.60072595200012,20.660548808000016],[104.61519535300009,20.646492819000088],[104.61407088800007,20.64261560500009],[104.60723718300004,20.61905263200012],[104.54264164200009,20.53569854800008],[104.52073083500005,20.519265442000115],[104.4958227950001,20.51192738900002],[104.46967452100012,20.516164857000064],[104.4449731850001,20.534613342000085],[104.42378584800014,20.495442607000143],[104.4236824950001,20.495442607000143],[104.36642500900012,20.458493958000105],[104.35981042500003,20.439735413000104],[104.39153975500005,20.42066680900012],[104.43236413600005,20.411054992000114],[104.57550785300002,20.414052226000138],[104.58935713800008,20.406817526000054],[104.61230147300012,20.376741842000087],[104.62842452000012,20.365812277000117],[104.66640669800012,20.351782125000113],[104.68092777600008,20.340981750000083],[104.68464847900007,20.333049419000105],[104.68769738800012,20.32170644200005],[104.68929935800008,20.31000172900005],[104.68862756400006,20.301035869000117],[104.68185795100004,20.287470805000055],[104.67410648600001,20.285300395000064],[104.66583825700008,20.285713806000075],[104.6573633220001,20.279615987000113],[104.65353926600004,20.266464336000126],[104.65198897400012,20.2461038210001],[104.65302250200011,20.22579498300007],[104.65705326400013,20.212695007000036],[104.69084965000008,20.196546122000115],[104.7335860600001,20.20476267500007],[104.77880293800007,20.219025370000054],[104.81916223200005,20.22098907500006],[104.90799401900006,20.175332947000072],[104.90897587100004,20.167814026000116],[104.90344649300005,20.157091166000015],[104.90489343200005,20.134637757000117],[104.91838098200009,20.115724182000065],[104.95687992400012,20.091797994000075],[104.96442468300012,20.07608835900001],[104.96116906800012,20.072109274000127],[104.94747481300008,20.06952545200002],[104.94396081600013,20.06709665900007],[104.94365075700006,20.060947164000083],[104.9464412850001,20.0521880090001],[104.94830163600011,20.03366200800008],[104.95145389900011,20.021518046000068],[104.95321089700008,20.009270732000058],[104.94949019400012,19.995498963000014],[104.94568809100014,19.992373264000033],[104.93569258700012,19.984155986000133],[104.9224634200001,19.98224395800011],[104.89290450100009,19.985499573000084],[104.8738358970001,19.982657369000037],[104.86902998900005,19.97774810800007],[104.86716963700007,19.96914398200005],[104.85791955600007,19.955217184000077],[104.83533695500012,19.938887431000126],[104.78066328900006,19.908088278000065],[104.76180139200005,19.88550567700011],[104.75554854400012,19.867005513000095],[104.76071618700007,19.86145029700009],[104.79027510600008,19.85966746000011],[104.80924035700014,19.85367299400008],[104.81663008600009,19.848091940000046],[104.8168884690001,19.83899688700009],[104.81507979400003,19.822408753000076],[104.80500288900008,19.790886129000114],[104.78521081600013,19.776933492000126],[104.76071618700007,19.766520691000096],[104.73673832200012,19.745669251000038],[104.71777307200011,19.74019154900014],[104.70418217000007,19.73869293200005],[104.69167647400012,19.735463155000048],[104.67596683800014,19.72468861900003],[104.66304773000013,19.71122690800007],[104.65477950100006,19.697971904000067],[104.62305017100005,19.618080139000057],[104.61426517700005,19.607434795000074],[104.60496342000005,19.606478780000117],[104.5878068440001,19.615961406000082],[104.57922855600002,19.618028463000144],[104.5702368570001,19.61528961200011],[104.55483728000011,19.605445252000038],[104.54615564000005,19.60193125400008],[104.52279789300013,19.599373271000072],[104.50584802300011,19.602809753000116],[104.4491073000001,19.63515920000009],[104.42378584800014,19.645778707000087],[104.41541426700013,19.65081715900007],[104.4012549240001,19.66443389900004],[104.39174646000009,19.67683624300011],[104.38006758600004,19.68528534000012],[104.36001713100012,19.68745575000011],[104.34187870300013,19.683011577000084],[104.2952665610001,19.654873759000054],[104.27702478100012,19.68389007600004],[104.24214318800004,19.695181376000107],[104.22896569900007,19.706007589000052],[104.20020338600006,19.69858607200007],[104.15816898600013,19.687739970000077],[104.13630985600001,19.68745575000011],[104.13124556500003,19.682443136000046],[104.12447595200007,19.67590606700008],[104.1171895760001,19.660997417000118],[104.10923140500005,19.654873759000054],[104.08871586200007,19.651902364000048],[104.06969893400009,19.658026022000115],[104.02174320500006,19.681435445000062],[104.01027103700005,19.68456186900002],[104.00096927900012,19.680737813000093],[103.99518151900008,19.664898987000072],[103.9976619880001,19.652522482000023],[104.0173507080001,19.60040680000006],[104.02892623000014,19.58604075200006],[104.06019047100011,19.5681607060001],[104.07155928500009,19.559143169000038],[104.07796716400007,19.542890930000027],[104.0792590740001,19.525708516000066],[104.0825146890001,19.509301250000107],[104.09398685700012,19.495632833000084],[104.09398685700012,19.49558115700009],[104.09414188700003,19.495529480000073],[104.09414188700003,19.495477804000046],[104.08995609600008,19.483669739000046],[104.08127445500008,19.47930308000005],[104.07052575800003,19.47702931700013],[104.06050052900012,19.471293234000083],[104.05404097500013,19.460570374000067],[104.04990686100012,19.437471008000074],[104.04654789300014,19.427497457000072],[104.03879642800013,19.413389791000043],[104.03827966400007,19.412924703000016],[104.03512740100012,19.416671244000042],[104.02039961800011,19.414991761000067],[103.99668013600007,19.406930237000097],[103.97399418100008,19.395664775000025],[103.95280684400012,19.390962219000045],[103.94102461800003,19.381350403000056],[103.92128422100006,19.35277333600007],[103.90588464400008,19.34179209400008],[103.87002120000005,19.326883443000042],[103.85674035700004,19.31719411200001],[103.84842045100008,19.299908346000105],[103.85854903200003,19.29533498100008],[103.87673913600008,19.295800069000077],[103.89265547700012,19.293888041000088],[103.90588464400008,19.270039368000084],[103.91094893400009,19.263011373000097],[103.91797692900008,19.25815378800007],[103.94314335100012,19.24559641500005],[103.97275394700006,19.22528757700013],[103.97399418100008,19.22528757700013],[103.99518151900008,19.23384002700007],[104.01616215000007,19.234873555000036],[104.03672937000005,19.230248515000085],[104.14773034700009,19.182887065000017],[104.18783125900012,19.15658376100006],[104.1981148690001,19.146946106000144],[104.20173221900006,19.12705068000014],[104.20183557200009,19.109170634000094],[104.21062056500011,19.1007473760001],[104.23955936700008,19.10888641400001],[104.25960326300009,19.10412980400008],[104.25991988100009,19.104054668000085],[104.27433760600013,19.093460999000115],[104.28725671400012,19.080490214000093],[104.30286299700009,19.068656312000087],[104.32198327700011,19.060465597000047],[104.33913985200012,19.05519460100004],[104.35515954700008,19.047882385000037],[104.37200606400005,19.03356801400014],[104.40073815900013,18.992278544000044],[104.41324385600007,18.983105977000037],[104.4310722250001,18.97933359800001],[104.46212976100001,18.982408346000057],[104.48093998200005,18.977705790000073],[104.49768314700009,18.967990621000126],[104.50987878500013,18.956363424000074],[104.54429528800004,18.906805725000112],[104.55607751500008,18.896470439000097],[104.58966719600011,18.879107157000078],[104.60398156700006,18.868694357000038],[104.63121504700007,18.842365215000086],[104.64620121300004,18.832546692000022],[104.65632979300011,18.82970448900005],[104.67565677900006,18.82820587200004],[104.68557865500003,18.824769389],[104.69084965000008,18.819317525000113],[104.70252852400006,18.802471008000055],[104.71027998900007,18.79608896900004],[104.72195886300011,18.792006531000112],[104.76288659700003,18.78645131400009],[104.8016439210001,18.775134176000023],[104.81538985200012,18.773661397000126],[104.87290572100004,18.777976380000098],[104.89936405400005,18.770612488000097],[104.90923425300014,18.745678610000112],[104.9197245690001,18.73557586700008],[104.93724287900011,18.731157532000083],[104.95687992400012,18.731674297000012],[104.9738297940001,18.736066793000106],[104.99015954600009,18.733017884000077],[105.04033736200012,18.705009258000075],[105.06457360900004,18.69663767500009],[105.0769759520001,18.697516175000118],[105.08865482600008,18.700565084000058],[105.10028202300002,18.70206370100007],[105.1126843670001,18.69834299800007],[105.14110640500013,18.653074443000065],[105.16286218300013,18.63899261500003],[105.16947676600012,18.630569356000052],[105.16947676600012,18.6183271670001],[105.16947676600012,18.614859721000073],[105.16208703600012,18.59819407200004],[105.15206180900007,18.596798808000074],[105.1403312590001,18.600467834000057],[105.12813562100006,18.598917542000034],[105.11361454300004,18.58083079000005],[105.10048872900006,18.551168519000072],[105.08524418200005,18.49577138300012],[105.07997318600013,18.454352722000067],[105.09077356000012,18.426524963000105],[105.11397627800004,18.40513092000009],[105.14544722500011,18.383168437000023],[105.16286218300013,18.36601186100006],[105.16224206600009,18.353893738000068],[105.15598921700007,18.340638733000077],[105.15666101100004,18.319838969000013],[105.16616947400013,18.306790670000083],[105.21474532100012,18.277851868000113],[105.2204814050001,18.270798035000098],[105.22926639800005,18.25532094400009],[105.23593265800008,18.2494556690001],[105.24647465100003,18.246380921000053],[105.25691977000007,18.247463736000043],[105.28311324100008,18.250179138000075],[105.28802250200005,18.25340891600007],[105.29251835100007,18.2527371220001],[105.29928796500006,18.24204010000008],[105.30083825700012,18.230929667000055],[105.29437870300006,18.206951803000038],[105.29505049700003,18.19560882600007],[105.3055924890001,18.181061911000114],[105.32187056500004,18.17008066900013],[105.34011234500008,18.162639262000113],[105.35592533400006,18.158737691000056],[105.36331506400012,18.155223694000085],[105.36553715000008,18.151037903000056],[105.36832767800013,18.14995269800005],[105.37747440600003,18.15568878200011],[105.38155684500002,18.16276845300004],[105.3861043710001,18.18493764200008],[105.39199548300007,18.194213562000073],[105.41003055900006,18.201887512000066],[105.43137292500006,18.20054392500009],[105.45142338100004,18.192714946000077],[105.4667196040001,18.18095855800007],[105.47281742300002,18.17199269700006],[105.48087894700012,18.144810893000056],[105.48118900500003,18.138713074000094],[105.47912194900005,18.13349375400008],[105.47684818600004,18.129643860000044],[105.4760213620001,18.127318421000012],[105.4806205650001,18.12364939400001],[105.49198938000006,18.121065572000106],[105.49607181900005,18.11814585400012],[105.51250492300011,18.08282501300002],[105.52066980000012,18.075900371000042],[105.53813643500007,18.06672780400004],[105.54650801700006,18.05895050100014],[105.55188236500004,18.047943420000138],[105.55555139200003,18.02515411400014],[105.55932377100004,18.01533559200007],[105.5661450610001,18.008255920000064],[105.58981286600005,17.995750224000062],[105.58981286600005,17.995595194000117],[105.60343050400013,17.969183917000123],[105.60603926600004,17.964124248000076],[105.59415368700012,17.888108215000017],[105.60521244300003,17.854260153000013],[105.64396976700003,17.82010203100012],[105.6698079840001,17.773076477000075],[105.69202884900011,17.744085999000077],[105.7012272550001,17.727601217000114],[105.71383630400004,17.689464009000034],[105.72308638500004,17.673495993000103],[105.73528202400007,17.66403920500005],[105.78742354300009,17.642076722000066],[105.81987634300002,17.621561178000093],[105.84602461800006,17.597996725000087],[105.91113692300013,17.516813050000025],[105.93216923100003,17.49572906500009],[105.93232426000009,17.49572906500009],[106.01929569500003,17.394494934000107],[106.1854354250001,17.25739736000014],[106.20729455600014,17.246286927000114],[106.22181563400005,17.244891663000146],[106.23339115400012,17.251971334000075],[106.24791223200003,17.266234029000145],[106.25235640500004,17.27455393500011],[106.2547851970001,17.283183899000047],[106.2599528400001,17.2892300420001],[106.27261356600013,17.289850159000054],[106.28455082300007,17.284785868000085],[106.2866695560001,17.276569316000064],[106.2856877040001,17.26597564700009],[106.28796146600013,17.25378001000007],[106.29312911000011,17.246907043000107],[106.3069783940001,17.232954407000108],[106.31054406800007,17.227114970000116],[106.30976892200005,17.217916565000024],[106.30165572100002,17.202000224000102],[106.30082889900012,17.191561585000073],[106.30635827700011,17.17652374300007],[106.33653731300011,17.128568014000052],[106.38464807100007,17.085366516000104],[106.39493168100012,17.068003235000077],[106.39436324100012,17.062215474000112],[106.38790368700005,17.05167348200004],[106.38712854000005,17.047177633000047],[106.40401984100002,17.014641771000072],[106.40883264200005,17.00537139900007],[106.41136478700008,16.995811259000078],[106.41136478700008,16.995707907000053],[106.42025313300007,16.988679912000038],[106.43720300300009,16.980463358000094],[106.4565299890001,16.973590393000052],[106.47373824100008,16.970696513000064],[106.4968376060001,16.963926901],[106.5245361740001,16.98924835300008],[106.5334245200001,16.972660217000083],[106.53355047300005,16.950638060000045],[106.53507816600006,16.68353057900012],[106.54065922100011,16.6591393030001],[106.54975427300013,16.637796936000086],[106.57244022700011,16.61356068900011],[106.59140547700008,16.602450256000083],[106.61155928600004,16.594595439000074],[106.62494348100012,16.593510234000064],[106.6401880300001,16.58663726800009],[106.64432214400006,16.57532012900012],[106.63967126500012,16.521783346000063],[106.6411698820001,16.51036285400008],[106.65517419500009,16.47083038400004],[106.67067712400012,16.444423726000053],[106.69289799000006,16.427887269000053],[106.72266361500004,16.432486471000118],[106.72256026200012,16.42163442000006],[106.72571252500006,16.417138571000038],[106.73248213700009,16.41755198200005],[106.74240401200012,16.421531067000043],[106.75151087800009,16.428268290000062],[106.75253259300013,16.42902415000006],[106.75439294400013,16.43656890900013],[106.7545996500001,16.444268698000116],[106.75914717600006,16.452485250000052],[106.78612227400008,16.469125061000057],[106.79733606000013,16.47946034700007],[106.80141849800002,16.496100159],[106.82286421800006,16.530981751000066],[106.84668705300004,16.53005157500013],[106.86405033400013,16.504058330000046],[106.86684086200012,16.463854065000135],[106.86260339400012,16.430574443000094],[106.86136315900012,16.427887269000053],[106.85821089700005,16.42463165300009],[106.8558854570001,16.420342509000108],[106.8558854570001,16.41465810200006],[106.85986454300013,16.4118158980001],[106.8665308020001,16.41403798400009],[106.87283532700012,16.417345276000102],[106.8762976490001,16.418017070000076],[106.88844161000009,16.390886943000112],[106.89774336800014,16.378536275000044],[106.91500329600012,16.364738668000115],[106.93949792500011,16.351716207000067],[106.94600915500013,16.346135153000148],[106.95066003400007,16.336316631000074],[106.9540706790001,16.313837383000077],[106.95655114800006,16.30706776900004],[106.9672998460001,16.29988474500007],[106.98021895400012,16.298334453000052],[107.01432539900009,16.299419657000072],[107.05339278200012,16.295233866000018],[107.06798023900012,16.290809443000057],[107.0706010340001,16.290014547000112],[107.08910119600012,16.281074524000076],[107.10827315300003,16.26748362300009],[107.11685144100005,16.254616190000093],[107.12749678600011,16.200976054000108],[107.13333622300013,16.18821197500006],[107.13599030600004,16.184783784000075],[107.14201786300009,16.176998189000102],[107.15436853100003,16.16604278600002],[107.16966475500008,16.15689605700004],[107.18320398000009,16.15322703000004],[107.19715661600009,16.151004944000135],[107.21281457600003,16.14666412300005],[107.23880782100008,16.129817606000074],[107.27591150000006,16.08403228800003],[107.29895918800003,16.064188538000053],[107.32686446200012,16.05607533800014],[107.35590661600008,16.059279276000012],[107.41151045700008,16.07307688400007],[107.43104414900012,16.07369700100011],[107.43564335200006,16.068839417000103],[107.43342126500005,16.057367248000077],[107.43329211500003,16.055460998000115],[107.4321293540001,16.03829864500011],[107.43672855600005,16.026878154000112],[107.44354984600011,16.01891998400015],[107.44473840300003,16.00997996100011],[107.43269779500014,15.99592397100008],[107.41802168800007,15.983573303000043],[107.39063317900012,15.935824280000075],[107.37554366000012,15.919081116000115],[107.36107425900008,15.912311504000085],[107.32293705300003,15.905851950000025],[107.30505700700007,15.899134013],[107.23565555900012,15.85551910400005],[107.22723230000003,15.853297018000147],[107.21808557100013,15.854795634000055],[107.20883549000011,15.859136454000035],[107.19860355700011,15.862082011000041],[107.1862528890001,15.85939483700011],[107.1752458090001,15.848542786000053],[107.1501827400001,15.794282532000095],[107.14878747600011,15.773456930000066],[107.16025964400012,15.758729146000062],[107.21529504400007,15.72751658100006],[107.2256820070001,15.716819560000062],[107.23002282800006,15.70240183600015],[107.23457035300004,15.660931498000082],[107.23911787900003,15.645118510000087],[107.24872969600005,15.631088358000056],[107.2654211840001,15.618660177000097],[107.30355839000009,15.599746603000055],[107.3164258220001,15.588739523000072],[107.36934248900012,15.496057841000066],[107.38164147900011,15.488538920000053],[107.3886694740001,15.492518005000106],[107.3949740000001,15.501483867000047],[107.40505090300013,15.508589376000087],[107.41223392800009,15.508796082000032],[107.4321293540001,15.503886821],[107.4379687910001,15.505592143000058],[107.44298140500011,15.50920949400006],[107.44789066600009,15.50812428800006],[107.45336836800008,15.49595448900004],[107.45336836800008,15.495902812000054],[107.45646895400012,15.488332214000083],[107.4608097740001,15.48437896700011],[107.46654585800013,15.484353129000084],[107.47378055800009,15.488254700000056],[107.48747481300012,15.481407572000109],[107.49016198700008,15.461512146000103],[107.48964522300002,15.437921855000068],[107.49393436700012,15.420041809000123],[107.51264123600008,15.409422302000037],[107.55558435100004,15.415752665000054],[107.57315433800011,15.41123097700013],[107.57635973700013,15.40305356800013],[107.57770186400006,15.39962961900008],[107.57987227400014,15.36123403000005],[107.58659021000005,15.343353984000087],[107.59847578900008,15.330615743000122],[107.6430725510001,15.297852885000125],[107.65759362800009,15.28242747000013],[107.66410485900012,15.26855234800007],[107.66436324000011,15.253152771000073],[107.65681848200005,15.205687969000081],[107.65397627800007,15.199564311000115],[107.64746504800013,15.197652283000096],[107.6426074630001,15.202458191000105],[107.63671635000009,15.20506785100011],[107.62725956300011,15.196515402000086],[107.62359053600011,15.187239482000066],[107.6213167730001,15.15452830000008],[107.61578739400011,15.135511373000114],[107.60540043200007,15.12060272200007],[107.59919926000009,15.114789124000081],[107.58498824100013,15.104298808000124],[107.5804923910001,15.096754049000085],[107.58080245000006,15.086935527000021],[107.59000085500008,15.06890045200002],[107.58907067900003,15.058177592000106],[107.57801192200003,15.047248027000121],[107.56261234600004,15.045801087000127],[107.53522383700009,15.050400289000095],[107.5189974360001,15.04884999600007],[107.50238603900003,15.044037437000044],[107.47378055800009,15.035750021000112],[107.45507369000012,15.034122213000074],[107.44556522700009,15.025388896000093],[107.44468672700003,15.011823833000106],[107.45140466300012,14.995933329000096],[107.44990604700013,14.981102193000154],[107.45393680900003,14.967873026000063],[107.46194665600012,14.956814270000065],[107.47378055800009,14.948235982000126],[107.4894901940001,14.940303650000077],[107.54964156100004,14.895267640000045],[107.55816817300013,14.886715190000118],[107.55532596900008,14.876199036000058],[107.54059818500008,14.856846212000093],[107.49884362900013,14.817649638000148],[107.4908854580001,14.804239604000102],[107.49429610200008,14.788762513000094],[107.5043213300001,14.773182068000068],[107.50928226700006,14.758635152000108],[107.49806848200012,14.745948589000065],[107.50442468300014,14.736285095000142],[107.51465661700011,14.728223572000061],[107.5222530520001,14.718689270000153],[107.52039270000012,14.70458160500003],[107.50690515100013,14.693445333000097],[107.47378055800009,14.646264750000086],[107.45822595200008,14.638797506000058],[107.45176639800013,14.632182923000059],[107.44380822800008,14.609548645000103],[107.4404492600001,14.603915914000083],[107.43326623600012,14.59432993600008],[107.43032067900008,14.58624257400008],[107.42975223800005,14.578336080000028],[107.43094079600006,14.569886983000131],[107.43094079600006,14.561386210000121],[107.42784021000011,14.55371226000004],[107.4149211020001,14.543428650000136],[107.40344893500003,14.543893738000063],[107.38014286400009,14.554048157000123],[107.36138431900008,14.55792388900008],[107.35156579700009,14.56161875400008],[107.33270389800009,14.578232727000097],[107.30567712400006,14.597223816000065],[107.28728031400004,14.598515727000105],[107.27219079600013,14.585364075000129],[107.25451745600002,14.56097279900011],[107.24945316600008,14.55663197800004],[107.23787764500003,14.54981069000007],[107.23389855900012,14.544927267000048],[107.23239994400012,14.538312683000058],[107.23028120900005,14.518262228000095],[107.21973921800009,14.49797922800009],[107.21121260600006,14.493457540000064],[107.19596805900005,14.495963847000056],[107.19581302900008,14.495963847000056],[107.19560632300005,14.496067200000068],[107.19550297100011,14.496118877000086],[107.18056848200013,14.496170553000097],[107.17245528200004,14.48425913600006],[107.16682255100011,14.46715423600011],[107.15870935100001,14.451522115000074],[107.13142419500006,14.427544250000054],[107.1007800700001,14.407622986000133],[107.07855920500002,14.400775859000076],[107.06786218300005,14.406124370000043],[107.05933557200012,14.418035787000079],[107.04295414300009,14.430722351000027],[107.03034509300005,14.436096701000082],[107.02724450800008,14.435269877000055],[107.02657271300012,14.430231425000086],[106.99737552900007,14.395143128000141],[106.9779451910001,14.365429179000072],[106.97365604700013,14.363026225000125],[106.96109867400003,14.360390727000107],[106.95014327000011,14.334862569000082],[106.94972985800011,14.328661398000094],[106.94611250800004,14.323519592000096],[106.93360681200005,14.320160624000081],[106.9234782310001,14.32191762300006],[106.90477136300012,14.333312277000061],[106.89567631000006,14.336309509000074],[106.8850826420001,14.335534363000148],[106.87929488100008,14.33269215900009],[106.87459232600001,14.328351339000106],[106.83583500200007,14.30706064900012],[106.82084883600008,14.307577414000065],[106.80689620000004,14.312925924000112],[106.79299524000004,14.322589417000131],[106.7666919350001,14.34832428000004],[106.73165531400008,14.396719259000077],[106.72390385000004,14.41160207100012],[106.7192529710001,14.417880758000123],[106.7115015060001,14.425838928000088],[106.70716068500013,14.429301250000037],[106.63440026900008,14.450901998000104],[106.62204929000005,14.457593943000106],[106.60535811400005,14.466637471000084],[106.5856693930001,14.495963847000056],[106.57538578300012,14.502009990000088],[106.55244144700009,14.506945089000126],[106.54375980700011,14.512112732000034],[106.54024580900006,14.521672873000126],[106.53497481300013,14.553247172000113],[106.53099572800005,14.565959575000065],[106.51843835500004,14.585002340000129],[106.51249556500011,14.590350851000096],[106.49104984600012,14.570998027000128],[106.48376346800012,14.567484029000084],[106.47714888600012,14.566889751000117],[106.47223962400011,14.564073384000054],[106.47058597900012,14.554254862000077],[106.47094771400003,14.544643046000076],[106.47316980000005,14.537485861000034],[106.47751062100012,14.532602438000096],[106.48484867400003,14.530018616000092],[106.48484867400003,14.523817444000116],[106.46944909700005,14.524695944000142],[106.45668501800009,14.527899882000028],[106.4457812910001,14.529088440000052],[106.43647953400006,14.523817444000116],[106.4343091230001,14.519605815000162],[106.43265547700003,14.512422790000116],[106.43358565300008,14.505704855000088],[106.44516117400012,14.499477845000099],[106.44082035300005,14.49263071700004],[106.4334823000001,14.486636251000105],[106.42950321500007,14.48596445700012],[106.41921960500007,14.466456604000129],[106.39379480000007,14.45617299400004],[106.33999907000009,14.44898794700009],[106.3334367270001,14.448111470000141],[106.32015588400009,14.444494120000059],[106.30646163000004,14.44547597300003],[106.29674646000012,14.447878926000087],[106.23597497600008,14.484362488000086],[106.23008386200013,14.490460307000147],[106.22078210500007,14.473484599000129],[106.21065352400012,14.421394756000083],[106.20393558800009,14.399897360000137],[106.18915612900008,14.378890890000037],[106.17323978700006,14.36966664600004],[106.15411950700012,14.36754791300005],[106.11903121000012,14.369511618000088],[106.09500166800012,14.373645732000112],[106.0794470620001,14.37271555600006],[106.06864668800011,14.373439026000142],[106.0635307210001,14.372922261000113],[106.06058516500013,14.368839824000103],[106.0581046960001,14.353104350000123],[106.05541752200003,14.348427633000156],[106.03815759300005,14.347652486000143],[105.99412927300011,14.362406107000155],[105.97397546400008,14.365842590000083],[105.96942793800008,14.3548613480001],[105.96782596800004,14.343363343000078],[105.96916955600011,14.332020365000105],[105.97397546400008,14.321297506000093],[105.99340580300009,14.30594960600011],[106.00451623600003,14.289981588000073],[106.00797855600013,14.27075795500015],[106.00405114800009,14.245927430000108],[106.01247440600008,14.22577362100013],[106.02627201300004,14.213035380000079],[106.06058516500013,14.191848043000107],[106.0761914470001,14.174510600000103],[106.10171960500003,14.115160218000085],[106.11525883000013,14.100303243000042],[106.13127852400004,14.086996562000124],[106.14455936700006,14.072397970000068],[106.14946862900013,14.053561911000129],[106.14207889800007,14.0350100710001],[106.12642093900013,14.022013449000069],[106.10848921700006,14.0103604130001],[106.09407149300006,13.996175232000056],[106.08197920800006,13.980956523000117],[106.08383955900005,13.93400848400006],[106.06916345200005,13.916541850000115],[106.04921634900006,13.91545664500012],[105.99743656500009,13.9282982390001],[105.97397546400008,13.92928009100008],[105.94917077600007,13.919590760000048],[105.92457279500007,13.917110291000071],[105.89966475400013,13.922613831000149],[105.89558060100006,13.924798655000089],[105.8730513920001,13.936850688000035],[105.78711348500013,14.010153707000143],[105.77016361500011,14.034700012000116],[105.75889815300006,14.062476095000065],[105.74401534000003,14.086944885000023],[105.71600671400012,14.101543477000078],[105.70515466300009,14.102008565000103],[105.68365726700011,14.098856303000046],[105.66934289600005,14.10040659600007],[105.6532715250001,14.10704701700007],[105.64314294500014,14.113454895000116],[105.63291101100003,14.114023336000072],[105.61725305200008,14.102990417000072],[105.60986332200008,14.120741272000089],[105.59456709800003,14.136347554000038],[105.57653202300003,14.144021505000111],[105.56139082900012,14.138156230000035],[105.55555139200003,14.146088562000086],[105.54893680800012,14.153116557000088],[105.54123702000003,14.159188538000137],[105.53317549600013,14.164330343000131],[105.50527022300014,14.145055033000105],[105.49049076400013,14.136915995000095],[105.47385095200012,14.132523499000099],[105.45007979400008,14.117149760000117],[105.42217452000011,14.107873840000096],[105.39246057100013,14.103739726000072],[105.36409021000009,14.104049785000157],[105.34786381100008,14.106065165000103],[105.33778690600013,14.109992574000074],[105.32946700100013,14.117563171000128],[105.30393884300008,14.15239308700009],[105.29660078900012,14.156837260000101],[105.28218306500007,14.161255595000098],[105.27531010000007,14.164821269000072],[105.25691328900007,14.182442932000058],[105.19743371600003,14.270292867000123],[105.18797692900006,14.291015117000157],[105.1842562260001,14.314166158000148],[105.18430790300005,14.345740458000122],[105.19820886300005,14.345223694000083],[105.25045373600011,14.357186788000133],[105.26859216300005,14.36436981200009],[105.27572351100008,14.372095439000091],[105.28771244300002,14.393282776000133],[105.29474043800013,14.399070536000108],[105.30466231300005,14.398192037000085],[105.32223230000011,14.386383972000075],[105.33509973200012,14.385712178000091],[105.34083581600008,14.39010467500009],[105.35964603700012,14.40826894200012],[105.3676558840001,14.414547628000035],[105.3792314050001,14.418242493000035],[105.40568973800009,14.42304840100013],[105.41597334800007,14.428164368000125],[105.42031416900011,14.43521820100004],[105.42889245600001,14.458162536000074],[105.43385339400004,14.467929383000124],[105.44036462500003,14.475344950000133],[105.46367069500013,14.495963847000056],[105.49545170100009,14.537124125000032],[105.50754398600009,14.564047547000143],[105.5101278080001,14.593580627000065],[105.49576175900006,14.659881490000087],[105.49736372900003,14.690422262000082],[105.5051151940001,14.73636261000007],[105.50154952000007,14.745948589000065],[105.49069746900011,14.76380279600012],[105.48914717600006,14.78633372000013],[105.49384973100007,14.808993836000097],[105.50154952000007,14.827338970000085],[105.50620039900012,14.830413717000111],[105.52004968300008,14.83346262600014],[105.52439050300006,14.83723500600007],[105.5240804450001,14.842531840000104],[105.51694909700012,14.856536153000024],[105.51586389200003,14.871677348000034],[105.51777592000013,14.877671814000067],[105.52191003400009,14.878705343000135],[105.53761967000008,14.878033549000065],[105.5430456950001,14.880100607000115],[105.55064213100007,14.902295634000055],[105.5341573490001,14.934024964000074],[105.54392419400006,14.953093567000051],[105.58356001800013,14.977588196000099],[105.59306848200004,14.990791525000091],[105.56645511900005,14.995933329000096],[105.56635176600008,14.995933329000096],[105.5661450610001,14.995933329000096],[105.5661450610001,14.995985006000097],[105.55353601100006,15.005338440000045],[105.52428715000013,15.045956116000085],[105.52284021000003,15.050038554000094],[105.5231502690001,15.061174825000109],[105.52087650600008,15.066135763000162],[105.51653568600011,15.067143453000126],[105.5035649010001,15.064895528000122],[105.49829390500007,15.066135763000162],[105.47385095200012,15.090630391000118],[105.4519401450001,15.094764506000045],[105.44362024000003,15.111352641000053],[105.44377526900013,15.133806050000146],[105.44770267800008,15.15530344600009],[105.45442061400013,15.175534770000084],[105.46310225400008,15.189435730000069],[105.50392663600006,15.231061096000074],[105.53157352800014,15.252894389000105],[105.56025394700009,15.270929464000105],[105.56397465000009,15.272531433000054],[105.56480147400003,15.299454854000146],[105.56149418200005,15.320900574000092],[105.55803186100007,15.325138041000045],[105.53854984600008,15.32152069100006],[105.51937789000009,15.321055603000032],[105.49901737500005,15.324672953000102],[105.48330774000009,15.334517314000081],[105.47746830200008,15.352810771000064],[105.48625329700008,15.374902446000062],[105.50620039900012,15.38758900900011],[105.55281254100008,15.402032573000042],[105.58836592600004,15.42378835000005],[105.59224347300005,15.42754629700012],[105.60428226700007,15.439213766000139],[105.61038008700012,15.457171326],[105.6120337320001,15.499468486000097],[105.61627119900004,15.521275940000036],[105.64086918200013,15.58331349700009],[105.65099776200007,15.634602356000128],[105.64092085800013,15.6819896450001],[105.6129122320001,15.721470439000115],[105.56852217700003,15.749375712000102],[105.52542403200005,15.763483378000046],[105.50340987200013,15.76617055200006],[105.46237878500011,15.762811585000065],[105.44796106000007,15.764878642000012],[105.43566206900003,15.77164825500006],[105.42300134300011,15.783895569000094],[105.41204593900011,15.799760234000104],[105.37256514500012,15.882132467000076],[105.36062788900006,15.919391175000099],[105.36248824000006,15.954789531000102],[105.38651778200011,15.98078277600007],[105.40739506000006,15.988895976000093],[105.4181437580001,15.994735412000066],[105.42393151900006,16.002125143000086],[105.42323184100007,16.00504046700007],[105.42207116700007,16.0098766080001],[105.41447473200009,16.015199280000044],[105.40491459200013,16.018816630000117],[105.28853926700009,16.047393698000093],[105.24740482700007,16.04915069600005],[105.23722456900003,16.050804341000116],[105.1069790080001,16.095853281000046],[105.0793013920001,16.105426331000047],[105.05811405500009,16.12118764300004],[105.04245609600012,16.14144480400003],[105.03258589700005,16.165267639000092],[105.0288651940001,16.19146759000003],[105.02974369300004,16.23601267500004],[105.02638472500011,16.257665100000107],[105.01548099800009,16.27673370400009],[105.00741947400006,16.283554992000063],[104.98802829000005,16.29396349600009],[104.97930749500006,16.29864451100005],[104.97150435400003,16.304328919000085],[104.95207401600004,16.324431051000147],[104.94406416900006,16.330838928000105],[104.91729577700009,16.345566712000107],[104.9080456960001,16.353369853000117],[104.90158614100004,16.36246490500008],[104.8970386150001,16.37274851500007],[104.8877368570001,16.403909404000046],[104.87946862800004,16.421841126000118],[104.86892663600008,16.438429260000134],[104.85549076300009,16.454087220000076],[104.83885095300008,16.46772979700009],[104.78273034700003,16.497082012000078],[104.7651603600001,16.511344706000045],[104.7545150150001,16.52891469300002],[104.74950240100002,16.549326884000067],[104.7484171960001,16.571909485000106],[104.75301639800004,16.614800924000065],[104.76371342000009,16.656762187000055],[104.77756270400005,16.69402089400006],[104.77900964400004,16.70487294500012],[104.77833785000011,16.715828349000105],[104.75678877800009,16.798458964000048],[104.7563236900001,16.809879455000043],[104.75791005200004,16.818894636000095],[104.75844242400012,16.821920065000114],[104.7652120360001,16.84465769500011],[104.76707238800009,16.856129862000017],[104.7664005950001,16.868170472000088],[104.76288659700003,16.87907419800007],[104.75301639800004,16.89984812500009],[104.74965743100006,16.910803528000084],[104.74634039700003,16.94353159400012],[104.74035567200012,17.002580872000095],[104.74531661000009,17.024801738000065],[104.8099121510001,17.17166615800005],[104.81445967600007,17.194042053000114],[104.8183354090001,17.240240784000093],[104.8164233810001,17.300082093000043],[104.81998905500006,17.34891632100002],[104.81931726100008,17.361060283000114],[104.8164233810001,17.372790833000096],[104.79270389800013,17.423485413000066],[104.78893151900013,17.428963115000073],[104.78164514200006,17.435267639000074],[104.76464359600004,17.444414368000054],[104.75678877800009,17.44994374600006],[104.74965743100006,17.4581602990001],[104.73425785400008,17.486892395000012],[104.71451745700011,17.515262756000112],[104.7026318770001,17.52730336500008],[104.65508955900009,17.556087138000095],[104.63638269100011,17.56244333900011],[104.48119836500011,17.640423075000115],[104.45200118000007,17.665951233000044],[104.42228723200009,17.699799296000066],[104.41784305900012,17.707602438000066],[104.41164188700003,17.727394511000057],[104.40890303600008,17.733699036000075],[104.40487227400006,17.73995188400005],[104.3902995200001,17.75716013700014],[104.36776859600008,17.80056834000004],[104.35262740100006,17.819326885000123],[104.2875667720001,17.856740621000085],[104.28198161000012,17.86148801000004],[104.27826501500009,17.864647116000043],[104.27030684400012,17.87400055000009],[104.26431237800011,17.884645895000062],[104.2551139740001,17.91497996000001],[104.21087894700008,18.008617656000066],[104.2033288720001,18.01864366600006],[104.1981148690001,18.02556752500007],[104.13568973800005,18.07967275000007],[104.1223572190001,18.095279032000093],[104.11093672700014,18.114554342000048],[104.06840702300013,18.21540090000005],[104.01864261900003,18.299116720000086],[104.00003910300006,18.31844370500005],[103.97544112200012,18.330665182000075],[103.95125655200013,18.332990622000093],[103.92929406800005,18.32759043400003],[103.91001875800002,18.31531728100009],[103.8936890060001,18.29725636800009],[103.88950321500005,18.29115855000012],[103.88593754100009,18.286998596000103],[103.8812866620001,18.284414775000098],[103.87394860800002,18.283226217000077],[103.85777388600013,18.28648183200005],[103.84898889200014,18.29635203100014],[103.84221927900012,18.309116110000105],[103.83209069900005,18.320665792000053],[103.81725956200012,18.33035512300009],[103.80139489700012,18.33826161700003],[103.78460005700003,18.34389434800005],[103.76718510000012,18.34668487500002],[103.70910079000002,18.34970794700004],[103.69556156500005,18.353221945000087],[103.63861413600006,18.3779491170001],[103.62993249500009,18.383220113000046],[103.62135420800007,18.39076487300008],[103.6071431890001,18.40040252700001],[103.54880049700006,18.415414530000078],[103.52316898700013,18.41768829300011],[103.49774418100009,18.423734436000046],[103.48911421800005,18.424432068000044],[103.47479984500005,18.42215830500004],[103.46994226100009,18.421977437000066],[103.45154545100013,18.42531056800007],[103.39676843300009,18.44140777700005],[103.38663985200003,18.44145945200006],[103.30685144100003,18.425672303000084],[103.28256351700003,18.415569560000023],[103.26075606300003,18.400195821000068],[103.24406457600008,18.380067851000092],[103.23398767100014,18.35577992800009],[103.23367761200006,18.349268698000113],[103.23533125900012,18.345263774000045],[103.23801843300004,18.341568909000017],[103.24018884300011,18.33598785400011],[103.24866377800004,18.33262888600009],[103.29041833600007,18.305137024000118],[103.29651615500012,18.29689463300008],[103.29537927300004,18.287773743000116],[103.28633589700007,18.280332336000072],[103.2735201420001,18.276069031000134],[103.23672652300006,18.269997050000086],[103.21491906700004,18.26229726200009],[103.1852051190001,18.25774973600005],[103.17673018400006,18.25485585600006],[103.16820357300008,18.249765727000064],[103.1572998460001,18.23702748700012],[103.15089196800004,18.221498719000095],[103.14510420800008,18.18801239000001],[103.13859297700003,18.16672170000001],[103.12665572100008,18.15186472600007],[103.11006758700005,18.141813660000054],[103.08908695500008,18.134785665000038],[103.08940378200009,18.13522266800004],[103.09008680900013,18.13616477500011],[103.09058557100006,18.136852723000086],[103.09275598200007,18.14119354200008],[103.09213261000008,18.14088185600005],[103.08770263200012,18.138666867000012],[103.07994022600006,18.134785665000038],[103.07131026200005,18.125561422000114],[103.06634932500009,18.11225474000011],[103.06479903100006,18.09403879800007],[103.0730672610001,18.035515239000063],[103.0682096760001,18.025774231000128],[103.0582878010001,18.019263001000038],[103.04939945500007,18.005000305000067],[103.03792728700006,17.990685934000084],[103.02046065300009,17.984226380000024],[103.0038208420001,17.988567200000116],[102.97291833500009,18.007739156000127],[102.95493493600003,18.01213165300001],[102.9386051840001,18.008927714000038],[102.85271895400012,17.9720307420001],[102.83804284700005,17.963762513000063],[102.83189335200007,17.953117167000073],[102.77406742300008,17.922731425000023],[102.73737715700003,17.890433655000038],[102.72218428500008,17.8818036910001],[102.68673425300004,17.873535462000063],[102.67298832300001,17.86537058500005],[102.66761397300013,17.850074362000072],[102.6733500570001,17.831780904000112],[102.68291019700013,17.817363180000086],[102.68291019700013,17.81007680200011],[102.6607926840001,17.812867330000074],[102.60942631100005,17.837000224000036],[102.59526696800009,17.840824280000078],[102.59557702600006,17.850074362000072],[102.61232019100004,17.91529001900011],[102.59960778900006,17.955184225000036],[102.56751672400009,17.970842183000087],[102.48204390500011,17.97115224300009],[102.44550866700013,17.977766826000078],[102.41222904500005,17.99419993100014],[102.38515059500008,18.016059062000064],[102.36639205000012,18.038796692000062],[102.33652307200009,18.03703969400007],[102.30670577000012,18.051457418000098],[102.25657963100008,18.09403879800007],[102.2331185310001,18.124166158000065],[102.22557377100001,18.12819692000005],[102.22180139200003,18.131607564000063],[102.19157067900011,18.152071432000042],[102.18211389200012,18.1692280070001],[102.17839318900012,18.185971171000062],[102.17193363500007,18.200285543000035],[102.15353682500005,18.21010406500011],[102.10738518700009,18.21237668400002],[102.07850264500007,18.21379893000011],[102.07126794400011,18.208502096000075],[102.05552696700005,18.192344575000075],[101.90430139200004,18.037117208000012],[101.88378584800006,18.030838522000096],[101.84518355300008,18.05212921100008],[101.80606449400005,18.062386983000064],[101.79665938400012,18.07357493100011],[101.7904065350001,18.07357493100011],[101.77392175300014,18.05856292700011],[101.76575687700011,18.04032114700007],[101.75692020700012,17.997817282000113],[101.73258060800009,17.932033183000044],[101.72906661000013,17.912189433000066],[101.63620406100011,17.894826152000036],[101.61987430900005,17.884645895000062],[101.61114099200012,17.86552561500008],[101.60039229400007,17.85436350600014],[101.5775513100001,17.868109436000083],[101.5775513100001,17.852916565000044],[101.57507084200012,17.839790752000084],[101.57052331500006,17.82888702400004],[101.56401208500012,17.8203087360001],[101.54550484500008,17.8136716570001],[101.53403975500004,17.809560038000086],[101.5562606200001,17.792145081000058],[101.53652022300014,17.779122620000095],[101.50272383700013,17.765376689000078],[101.48298344000011,17.74579132100004],[101.4790043540001,17.73798818000003],[101.4741984460001,17.730598450000116],[101.47042606700005,17.722588603000048],[101.46830733200011,17.72036651600004],[101.45910892800009,17.73948679600005],[101.45735192900003,17.74579132100004],[101.45606001800007,17.75018381800004],[101.45347619700004,17.75101064100008],[101.4498071700001,17.7492536420001],[101.44525964400003,17.74579132100004],[101.43203047700013,17.733595683000118],[101.41699263500004,17.732355449000096],[101.40185144000003,17.733750713000063],[101.38800215700007,17.729306539000078],[101.38190433800003,17.720728252000043],[101.38836389200007,17.717782695000036],[101.39875085500012,17.717162577000067],[101.40402185100004,17.715560609000136],[101.4030916750001,17.70946278900007],[101.40159305900005,17.706672262000012],[101.38376468900003,17.684916484000013],[101.37746016500012,17.682642721000093],[101.36986372900003,17.683159485000118],[101.35730635600004,17.679025371000108],[101.24702885000005,17.592157288000095],[101.2286320400001,17.568489482000075],[101.20852990800012,17.531282451000067],[101.2021737070001,17.523169250000052],[101.19028812700007,17.518725078000045],[101.17695560800013,17.516399638000024],[101.16672367300002,17.51061187800005],[101.16424320500009,17.495780742000107],[101.16424320500009,17.49572906500009],[101.14718998200003,17.47247467100007],[101.14181563400007,17.467151998000134],[101.13230717000009,17.46167429600004],[101.12889652500007,17.4611575320001],[101.12465905700003,17.46394805900007],[101.09603031500012,17.475265198000045],[101.06616133700003,17.492215067000046],[101.04931482000006,17.49572906500009],[101.03546553500007,17.512627259000084],[101.01903243000002,17.5266315720001],[101.00084232600011,17.53820709200005],[100.98151534100003,17.547612203000085],[100.93773837900011,17.55548637100014],[100.90193363500009,17.561926575000086],[100.8860172940001,17.57376047800011],[100.8856555590001,17.595877991000123],[100.89945316600011,17.61696197600014],[100.93293949400004,17.654530741000144],[100.95381677300009,17.699799296000066],[100.95587773300007,17.707531771000077],[100.9606897380001,17.72558583600005],[100.95872603300012,17.74579132100004],[100.9564005940001,17.7559199020001],[100.95857100500011,17.764136455000113],[100.9648755290001,17.770596009000087],[100.97428064000007,17.775505269000117],[100.97521081600013,17.777624004000103],[100.9755208740001,17.779794413000076],[100.97521081600013,17.781913148000058],[100.97428064000007,17.783980204000017],[100.96771773300009,17.791008199000117],[100.96518558800011,17.797622783000037],[100.9670459400001,17.803823955000013],[100.97428064000007,17.80924998000009],[100.99479618300012,17.8177249150001],[101.0002738860001,17.830488994000063],[100.99712162300004,17.864595439000112],[101.00084232600011,17.884800924000018],[101.00828373200011,17.895239563000047],[101.0398063560001,17.91203440300012],[101.06616133700003,17.93399688700009],[101.08197432500003,17.958336487000082],[101.09489343300004,17.984381408000072],[101.11230839100006,18.011304830000086],[101.12543420500002,18.021330058000018],[101.15752526900013,18.040450338000113],[101.16517338100005,18.053421123000135],[101.16207279400008,18.067451274000035],[101.14496789600001,18.104735820000087],[101.14160892800004,18.123959453000083],[101.14563969000011,18.141942851000096],[101.16052250200005,18.179511617000088],[101.16279626500011,18.195298768000068],[101.15928226700004,18.20405792200006],[101.1527710370001,18.20907053700003],[101.14553633700012,18.212997945000097],[101.13964522300012,18.218708192000037],[101.13173872900012,18.238861999000022],[101.12837976100013,18.245734965000082],[101.12796634900013,18.280952454000044],[101.13013676000003,18.29115855000012],[101.13540775500012,18.29839325000009],[101.15240930200014,18.31637664900009],[101.15540653500005,18.322887879000064],[101.14553633700012,18.33624623700007],[101.08228438300011,18.364203186000083],[101.0740887660001,18.37161310700006],[101.05102014200003,18.392470194000055],[101.0370158290001,18.410453593000057],[101.03029789200008,18.427791036000144],[101.03562056500004,18.447841492000094],[101.06471439700005,18.476418559000052],[101.07194909700013,18.495668030000104],[101.07380944800013,18.505770772000034],[101.07789188700013,18.510421651000087],[101.14207401500005,18.544295552000108],[101.15535485900006,18.556723734000087],[101.1591272390001,18.567704976000073],[101.15814538600011,18.589977519000115],[101.16088423700005,18.599796041000076],[101.16775720200012,18.60635894800006],[101.18532719000011,18.61253428200004],[101.19411218300007,18.616797587000093],[101.22191410300013,18.642041525000053],[101.23472985900003,18.658448791000122],[101.24010420700012,18.673641663000037],[101.23478153500014,18.68948048900006],[101.21126875800013,18.711908061000145],[101.20584273300011,18.730072327000073],[101.20920170100008,18.746324565000094],[101.2239811610001,18.778544820000064],[101.2286320400001,18.795623881000097],[101.22330936700013,18.855491028000074],[101.2249113370001,18.874766337000096],[101.23292118400012,18.89272389700008],[101.25726078300005,18.91949228900006],[101.26728601100007,18.93445261700012],[101.27700118000011,18.967060445000072],[101.2839258230001,18.981478170000088],[101.32640385000013,19.02054555300009],[101.31787723800011,19.050130311000146],[101.29116052300009,19.07899159700008],[101.24744226100006,19.11578521800007],[101.23571171100008,19.128110047000035],[101.22914880400008,19.143587138000044],[101.22677168800008,19.16715159100005],[101.2298722740001,19.22580434200009],[101.20951176000005,19.309416809000084],[101.2092533770001,19.31559214300006],[101.21090702300006,19.32063059500004],[101.21126875800013,19.326366679000103],[101.2077547610001,19.334686584000053],[101.20196700100013,19.33866567000004],[101.18501713100011,19.341998800000056],[101.17845422400012,19.34662384100011],[101.17235640500007,19.376389465000102],[101.17778243100008,19.41721384700008],[101.19287194800006,19.452793071000144],[101.21529952000003,19.466358135000032],[101.23824385600011,19.472300924000052],[101.25173140500004,19.494444275000063],[101.25695072400009,19.52278879800008],[101.25488366700012,19.547154236000097],[101.25105961100006,19.560305888000073],[101.24620202600005,19.570279439000075],[101.23824385600011,19.578185933000015],[101.22501469000007,19.585213928000115],[101.20796146700012,19.589554749000115],[101.19731612200007,19.58686757400008],[101.18832442200011,19.58074391700012],[101.17685225500009,19.574749451000084],[101.15266768400011,19.568367411000054],[101.12465905700003,19.56511179600008],[101.09582360900009,19.567282207000062],[101.06822839400007,19.57712656700005],[101.02430342600013,19.602861430000132],[101.00254764900012,19.610612895000116],[100.97428064000007,19.613480937000105],[100.8856555590001,19.612447408000037],[100.87981612100009,19.61358429000003],[100.8745968020001,19.612912496000064],[100.86503666200008,19.607150574000087],[100.86121260600004,19.60260304800005],[100.84901696800011,19.5825267540001],[100.80845096900008,19.53653472900001],[100.76261397300004,19.495477804000046],[100.75300215700003,19.48242950400001],[100.74550907500009,19.485013326000114],[100.7381710200001,19.495038554000132],[100.7292309980001,19.50465037100014],[100.71476159700005,19.512453512000064],[100.63326786300013,19.542167460000112],[100.6070162360001,19.54092722600009],[100.58598392800013,19.525966899000135],[100.57475787800007,19.50834740400006],[100.56665694200012,19.495632833000084],[100.5492936600001,19.494547628000106],[100.52061324100009,19.502609152000076],[100.4918294680001,19.5144688930001],[100.4742594810001,19.524985047000058],[100.46196049000014,19.537103170000048],[100.45896325700005,19.551830953000064],[100.45896325700005,19.568057353000057],[100.45555261300012,19.58467132600009],[100.44749108900004,19.59777130200004],[100.42707889800009,19.621800842000084],[100.41886234600008,19.634358215000077],[100.41291955600013,19.651566467000066],[100.4104907630001,19.684251811000134],[100.4072351480001,19.69993560800009],[100.40046553600013,19.711640320000072],[100.39004815800013,19.724387049000114],[100.38382572400013,19.73200083500012],[100.37917484500008,19.745669251000038],[100.38351566600004,19.763859355000076],[100.40765850600013,19.794257080000136],[100.42051599100012,19.810445659000038],[100.43141971900008,19.838273417000096],[100.43844771400006,19.847213440000104],[100.44625085500007,19.85212270100004],[100.46562951600009,19.859770813000125],[100.4742594810001,19.86535186800006],[100.48397465000005,19.880699768000113],[100.48795373600012,19.896977844000048],[100.4926562910001,19.931652730000053],[100.51854618300011,19.995421448000087],[100.51854618300011,19.995498963000014],[100.54335087100009,20.066579895000103],[100.55058557200005,20.106525777000083],[100.5486735440001,20.158021342000065],[100.54650313300004,20.167917379000045],[100.54195560700008,20.16672882100005],[100.53668461100006,20.153473816000115],[100.52924320500006,20.149727275000117],[100.51281010000007,20.155282491000037],[100.4963769940001,20.164868469000027],[100.48893558800012,20.173343404000036],[100.48562829600006,20.178769429000113],[100.46878178000003,20.185719910000103],[100.46103031400001,20.190706686000055],[100.45730961100008,20.196391093000102],[100.45214196800009,20.210240377000048],[100.44733606000011,20.218043518000087],[100.42160119700009,20.250186260000106],[100.36439538600013,20.368964539000075],[100.34434493000009,20.389971009000078],[100.30651778200013,20.39968617800011],[100.27024092600008,20.3918313610001],[100.24037194800013,20.372814433000116],[100.22068322800008,20.348991597000065],[100.2091593830001,20.31299896300007],[100.20719567900005,20.311138611000075],[100.20171797700003,20.310311788000035],[100.17949711200009,20.30248280900011],[100.17639652500009,20.300622457000117],[100.16709476700004,20.29261261000005],[100.16771488500012,20.253622742000033],[100.15252201300007,20.239153341000105],[100.13464196800004,20.239101665000106],[100.11660689300004,20.248015849000126],[100.10296431500012,20.26359629300015],[100.09727990800006,20.283233337000098],[100.09929528800012,20.31780487000009],[100.09764164300009,20.334935608000137],[100.0970732020001,20.348371481000072],[100.09981205300005,20.36222076400014],[100.11112919100002,20.374829814000062],[100.12094771400012,20.388782450000065],[100.12523685800004,20.406404114000054],[100.12740726700014,20.42784983400008],[100.13665734900007,20.459217427000112],[100.14926639800012,20.548100891000047],[100.16006677300004,20.582672424000037],[100.17293420500005,20.609079082000022],[100.17293420500005,20.62210154200005],[100.18016890500007,20.638172913000034],[100.20233809500013,20.667938538000016],[100.20719567900005,20.68075429300009],[100.21132979400005,20.697394104000125],[100.22161340400004,20.709589743000038],[100.24874353000013,20.731965638000105],[100.27453007000003,20.761989645000057],[100.29018802900008,20.775012106000105],[100.32966882300013,20.786019185000097],[100.34196781400004,20.79950673400006],[100.35111454300005,20.815319723000073],[100.36480879700014,20.828187154000148],[100.38367069500009,20.831701151000118],[100.47084883600007,20.81826527900006],[100.51337854000013,20.806999817000104],[100.53668461100006,20.80767161100007],[100.56903405800004,20.817800191000032],[100.59890303500009,20.833458151000087],[100.60777574500003,20.839880933000103],[100.6266016030001,20.853508606000048],[100.65212976100003,20.87660797100011],[100.65212976100003,20.88275746700009],[100.62308760600013,20.888545227000066],[100.53420414300007,20.873920797000068],[100.51570397900014,20.88647817000009],[100.51782271400003,20.906321920000096],[100.52707279500002,20.94693959600002],[100.52924320500006,20.96843699200005],[100.53327396700013,20.97344960500004],[100.5519808360001,20.985335185000054],[100.55725183100009,20.992001445000056],[100.55575321500004,20.99985626300008],[100.54345422400013,21.027399801000083],[100.56185103400009,21.035099589000083],[100.60675785300009,21.043936259000077],[100.62551639800012,21.05411651700004],[100.63755700700005,21.069671122000074],[100.68938846900005,21.15932973200003],[100.72106612200014,21.280665996000092],[100.72256473800007,21.292706604000074],[100.72199629800014,21.30366200800006],[100.72540694200012,21.311671855000014],[100.73837772700006,21.31477244100006],[100.7477311610001,21.314255676000126],[100.75667118400003,21.312447001000038],[100.76499108900008,21.309191386000034],[100.77258752500006,21.304230448000084],[100.79196618700013,21.29735748300004],[100.81460046400008,21.300199687000088],[100.85134240700006,21.31477244100006],[100.86245284000006,21.323299052000067],[100.89604252200012,21.355751851],[100.90994348200007,21.360092672000064],[101.00342614800007,21.40598134400005],[101.14315922100013,21.51341664700004],[101.15711185700012,21.51966949500013],[101.16114261900003,21.534707336000025],[101.15902388500007,21.552690735000112],[101.17452681500009,21.551657206000126],[101.18656742400003,21.53532745400008],[101.18775598100007,21.505871887000097],[101.16827396700005,21.42453318300008],[101.17142622900013,21.403397522000148],[101.17912601800003,21.39817820200002],[101.20796146700012,21.383502096000143],[101.22646163000007,21.37089304600002],[101.23080244900007,21.371771546000048],[101.2331278890001,21.37171986900003],[101.23478153500014,21.363658345000147],[101.22284427900013,21.335081278000075],[101.20744470200003,21.314824117000082],[101.20951176000005,21.308674622000098],[101.2184001060001,21.299941305000033],[101.22036381100001,21.296272278000032],[101.21907189900008,21.282474671000074],[101.20899499500013,21.245526021000043],[101.22036381100001,21.233692118000135],[101.23478153500014,21.20625193300009],[101.24434167500004,21.192867737000142],[101.25974125100004,21.17948354100011],[101.27529585800005,21.17410919200006],[101.29271081600007,21.17607289700007],[101.31389815300014,21.184754537000032],[101.3622672940001,21.21581207300008],[101.38149092600008,21.222478332000094],[101.4951274010001,21.242838847000115],[101.51760664900007,21.24263214100006],[101.53910404500004,21.238859761000043],[101.57290043100011,21.22816274000013],[101.57967004400012,21.22759429900009],[101.58395918800011,21.224390360000115],[101.58819665600008,21.213331604000103],[101.58664636300006,21.204236552000026],[101.58096195500008,21.19472808900005],[101.57724125200008,21.185167948000043],[101.58178877800002,21.175659485000068],[101.59651656100004,21.17338572200015],[101.63594567900003,21.18945709200011],[101.65511763500012,21.189198711000046],[101.67015547700004,21.177054749000035],[101.68829390500014,21.14584218300007],[101.70426192200011,21.13509348500014],[101.71790450000009,21.134473369000062],[101.73748986800011,21.137573954000118],[101.75599003200006,21.14325836200007],[101.76673872900011,21.15064809200007],[101.76845334900003,21.160449577000065],[101.77020105000003,21.17044016600005],[101.7635864660001,21.184651184000103],[101.76007246900008,21.195968323000073],[101.77356001800013,21.207388815000087],[101.79603926600004,21.20294464100007],[101.80523767100004,21.20449493400011],[101.81329919500013,21.209559225000074],[101.81929366100013,21.215967102000036],[101.82149033400009,21.2210711380001],[101.82280765800009,21.22413197900005],[101.8237378340001,21.23446726500015],[101.82022383600014,21.247283020000026],[101.81226566600003,21.258135071000083],[101.80115523300002,21.26707509400009],[101.7885461840001,21.274206442000033],[101.73650801600006,21.292293193000148],[101.72250370300009,21.304230448000084],[101.71511397300009,21.321128642000076],[101.71557906100008,21.33818186500011],[101.7255526130001,21.375388896000032],[101.72968672700011,21.474245911000082],[101.74425948100009,21.495588277000078],[101.74823856600004,21.514501852000137],[101.73475101700006,21.554396057000076],[101.7361979580001,21.570880839000036],[101.75092574100006,21.579665833000035],[101.77268151900012,21.582508036],[101.79355879700006,21.58824412100006],[101.8061678470001,21.605969137000073],[101.80384240700005,21.625916239000105],[101.78952803600008,21.63402944000009],[101.77082116700005,21.638835348000015],[101.75593835500011,21.64865387000009],[101.75232100500004,21.65914418600005],[101.75562829600005,21.680021464000106],[101.75480147300004,21.689788310000065],[101.74911706500012,21.698056539000103],[101.73278731300013,21.711440735000053],[101.72854984500009,21.717538554000097],[101.72798140500002,21.732679749000113],[101.73165043200002,21.750508118000056],[101.75154585800004,21.806370341000047],[101.7510807700001,21.81613718700009],[101.72617272900004,21.837272848000026],[101.72126346900012,21.84435251900007],[101.70870609600013,21.869570618000093],[101.68586511300009,21.89861277300008],[101.68307458600003,21.907139384000114],[101.68245446800006,21.914839173000104],[101.68059411600007,21.922642314000115],[101.67366947500011,21.931375631],[101.6381160890001,21.940884094000065],[101.61630863500011,21.953648173000147],[101.60680017100003,21.967600810000132],[101.60039229400007,22.007495016000092],[101.59217574100006,22.028113913000084],[101.56494226100006,22.06950673400013],[101.55543379800014,22.090332337000092],[101.55502038600014,22.112398173000084],[101.5618416750001,22.130071513000072],[101.56695764200009,22.149346822000037],[101.56153161700011,22.176115214000106],[101.54902592000013,22.19353017200012],[101.51822676600005,22.228205058000043],[101.51574629800007,22.24536163400012],[101.5317143150001,22.2633967080001],[101.54065433700003,22.271458232000096],[101.55098962400007,22.276677552000105],[101.56370202700009,22.276780905000038],[101.5757426350001,22.273111878000066],[101.58798995000012,22.271354879000086],[101.60121911700007,22.276987610000106],[101.60612837700012,22.28484242700003],[101.61987430900005,22.326441955000035],[101.6225098060001,22.342358297000057],[101.62369836500011,22.34664744100013],[101.64111332200014,22.36328725200005],[101.64369714400003,22.36468251600013],[101.64571252500006,22.384526266000105],[101.6441622320001,22.404008280000113],[101.64509240800004,22.424213765000104],[101.65454919500007,22.44612457300005],[101.66865686100004,22.462299297000044],[101.68912072800009,22.47888743100006],[101.71315026800009,22.491548157000096],[101.7417790120001,22.49604400700011],[101.7506156820001,22.49604400700011],[101.7550598560001,22.495527243000083],[101.7848771570001,22.472221171000058],[101.81779504400004,22.40633372000005],[101.8425997310001,22.383337708000084],[101.86792118300008,22.378841858000072]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sri Lanka","sov_a3":"LKA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sri Lanka","adm0_a3":"LKA","geou_dif":0,"geounit":"Sri Lanka","gu_a3":"LKA","su_dif":0,"subunit":"Sri Lanka","su_a3":"LKA","brk_diff":0,"name":"Sri Lanka","name_long":"Sri Lanka","brk_a3":"LKA","brk_name":"Sri Lanka","brk_group":null,"abbrev":"Sri L.","postal":"LK","formal_en":"Democratic Socialist Republic of Sri Lanka","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sri Lanka","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":4,"mapcolor13":9,"pop_est":21324791,"gdp_md_est":91870,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"CE","iso_a2":"LK","iso_a3":"LKA","iso_n3":"144","un_a3":"144","wb_a2":"LK","wb_a3":"LKA","woe_id":23424778,"woe_id_eh":23424778,"woe_note":"Exact WOE match as country","adm0_a3_is":"LKA","adm0_a3_us":"LKA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":9,"long_len":9,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"LKA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.82260175900008,7.491359768000152],[81.80779056100008,7.479193427000084],[81.79371178500011,7.490220445000118],[81.7893986340001,7.494737046000168],[81.78736412900015,7.496812242000189],[81.78671308700021,7.501776434000148],[81.7859806650001,7.506699937000107],[81.7859806650001,7.506740627000099],[81.78614342500006,7.508775132000125],[81.79029381600016,7.571722723000065],[81.78736412900015,7.593451239000131],[81.77637780000012,7.602728583000086],[81.77222741000016,7.611639716000127],[81.73878014400012,7.660467841000127],[81.73707116000011,7.670965887000094],[81.7331649100001,7.679103908000116],[81.7283634770001,7.689113674000096],[81.72510826900006,7.698919989000132],[81.72559655000006,7.709295966000126],[81.72868899800008,7.718491929000095],[81.72999108200023,7.728176174000154],[81.72999108200023,7.728216864000145],[81.72510826900006,7.739813544000157],[81.72510826900006,7.739935614000131],[81.73796634200019,7.727484442000119],[81.75025475400017,7.698635158000101],[81.75928795700005,7.685288804000081],[81.76148522200006,7.679510809000121],[81.770762566,7.654689846000153],[81.79509524800008,7.61627838700015],[81.80632571700019,7.598578192000147],[81.82325280000006,7.511379299000126],[81.82325280000006,7.511297919000142],[81.82260175900008,7.491359768000152]]],[[[79.88233483200023,9.053778387000179],[79.91651451900012,9.020982164000158],[79.91643313900012,9.021022854000151],[79.900075717,9.024400132000082],[79.8712671230002,9.038560289000188],[79.8543400400001,9.041489976000122],[79.88030032600008,9.012193101000108],[79.9007267590001,8.989081122000144],[79.9096785820001,8.973211981000118],[79.88575280000006,8.976223049000126],[79.87012780000006,8.98818594000015],[79.85938561300006,9.001206773000149],[79.851328972,9.007391669000114],[79.84099368600019,9.012600002000113],[79.79981530000005,9.0489769550001],[79.77938886800004,9.058010158000101],[79.75896243600019,9.067043361000117],[79.74398847700016,9.071071682000166],[79.73601321700019,9.073228257000082],[79.71412194100017,9.075628973000121],[79.70297285200016,9.079982815000122],[79.69800866000011,9.089585679000095],[79.70118248800006,9.099188544000171],[79.71412194100017,9.103583075000145],[79.75879967500012,9.103583075000145],[79.77857506600006,9.098537502000127],[79.79900149800012,9.093329169000128],[79.84164472700016,9.07721588700015],[79.88233483200023,9.053778387000179]]],[[[79.71469160200016,9.485052802000084],[79.68946373800006,9.483587958000115],[79.66602623800011,9.491278387000136],[79.65577233200005,9.50389232000012],[79.65577233200005,9.544867255000128],[79.65870201900012,9.555365302000096],[79.66529381600017,9.554022528000116],[79.67212975400017,9.545599677000068],[79.67628014400012,9.53497955900012],[79.69353274800002,9.529608466000155],[79.71412194100017,9.528062242000118],[79.71924889400006,9.524359442000074],[79.7308048840001,9.500189520000077],[79.7308048840001,9.500148830000086],[79.72282962300008,9.492621161000116],[79.71469160200016,9.485052802000084]]],[[[79.90284264400012,9.678941148000192],[79.9070744150001,9.677883205000143],[79.92644290500002,9.678941148000192],[79.92969811300006,9.67597077000009],[79.93116295700023,9.660956122000158],[79.93360436300004,9.654730536000102],[79.94499759200002,9.647609768000152],[79.96045983200017,9.641058661000073],[79.97339928500017,9.633775132000068],[79.9744572270001,9.631496486000088],[79.97787519600008,9.624335028000132],[79.97095787900011,9.617254950000174],[79.95777428500016,9.61717357000019],[79.94361412900017,9.621527411000088],[79.93360436300004,9.627752997000144],[79.92652428500011,9.629461981000148],[79.9085392590001,9.618963934000178],[79.89592532600008,9.617499091000127],[79.8958439460001,9.617499091000127],[79.88038170700011,9.628607489000144],[79.86491946700008,9.651516018000152],[79.8406681650001,9.699408270000076],[79.85173587300014,9.716538804000109],[79.85425866000011,9.73847077000012],[79.86052493600017,9.756252346000108],[79.88233483200023,9.760891018000137],[79.89389082100016,9.757432359000134],[79.89405358200021,9.757391669000143],[79.89503014400012,9.748968817000103],[79.89112389400012,9.737209377000113],[79.88843834700006,9.723618882000068],[79.88884524800002,9.709906317000133],[79.89031009200019,9.69896067900008],[79.89039147200018,9.698309637000122],[79.89128665500007,9.69611237200013],[79.89470462300008,9.68817780200007],[79.89926191500008,9.683010158000158],[79.90284264400012,9.678941148000192]]],[[[80.46827233200023,9.581366278000175],[80.74439537900011,9.359686591000084],[80.7454533210001,9.357896226000108],[80.75245201900006,9.34625885600009],[80.76368248800006,9.332424221000096],[80.78516686300011,9.312404690000122],[80.79883873800006,9.294867255000085],[80.78671308700004,9.288560289000145],[80.78663170700004,9.28851959800015],[80.77979576900006,9.291571356000148],[80.77898196700002,9.291937567000076],[80.77881920700005,9.291978257000068],[80.76832116000011,9.305405992000146],[80.76254316500015,9.30833567900008],[80.76246178500016,9.30841705900015],[80.74439537900011,9.311346747000172],[80.73650149800008,9.308986721000124],[80.74040774800008,9.301011460000069],[80.74170983200017,9.298488674000138],[80.79363040500007,9.250555731000134],[80.81389407600014,9.239528713000183],[80.81397545700023,9.239488023000192],[80.80591881600012,9.251898505000128],[80.80103600400011,9.263210354000108],[80.80103600400011,9.2632510440001],[80.80355879000015,9.271633205000157],[80.81739342500005,9.274847723000121],[80.823903842,9.270493882000125],[80.83448326900012,9.239488023000192],[80.84416751400013,9.220404364000117],[80.88217207100016,9.145209052000126],[80.88217207100016,9.145168361000131],[80.87452233200023,9.147975979000178],[80.8533634770001,9.155747789000172],[80.84009850400011,9.155991929000123],[80.83448326900012,9.141750393000123],[80.84229576900006,9.13812897300015],[80.85857181100013,9.13548411700016],[80.87305748800006,9.12645091400016],[80.87322024800014,9.125230210000138],[80.87533613400015,9.103583075000145],[80.87549889400012,9.103583075000145],[80.88217207100016,9.103583075000145],[80.88550866000017,9.109320380000128],[80.8885197270001,9.111802476000065],[80.8919376960001,9.113430080000086],[80.89649498800006,9.116603908000144],[80.89649498800006,9.11652252800016],[80.90162194100006,9.096665757000068],[80.9021916020001,9.09418366100013],[80.91635175900015,9.062160549000138],[80.93531334700006,9.033433335000097],[80.95460045700011,9.020982164000158],[80.95606530000006,9.019802151000135],[80.9583439460001,9.017889716000083],[80.95826256600006,9.010891018000109],[80.95362389400012,9.003851630000128],[80.94434655000006,9.000555731000105],[80.94166100400017,9.003485419000114],[80.93067467500012,9.020982164000158],[80.91871178500011,9.027248440000122],[80.89128665500007,9.034247137000108],[80.87533613400015,9.041489976000122],[80.88266035200014,9.031398830000157],[80.8867293630001,9.025783596000153],[80.92286217500006,8.992254950000117],[80.92318769600014,8.973211981000118],[80.93506920700011,8.964911200000145],[80.93498782600014,8.964829820000162],[80.92432701900012,8.955023505000128],[80.9148869150001,8.943915106000105],[80.91496829500007,8.943874416000114],[80.93067467500012,8.931626695000148],[80.9476017590001,8.932928778000145],[80.96143639400012,8.945746161000088],[80.97169030000005,8.96356842700007],[80.9783634770001,8.980047919000143],[80.97852623800006,8.97996653900016],[81.01465905000012,8.936712958000072],[81.04672285200016,8.882147528000104],[81.05982506600006,8.86863841400013],[81.07813561300011,8.863348700000145],[81.09278405000012,8.85162995000016],[81.11426842500006,8.799994208000115],[81.1197208990001,8.794338283000116],[81.12549889400006,8.788275458000129],[81.1255802740002,8.788234768000137],[81.15015709700005,8.77716705900009],[81.1624455090001,8.751166083000115],[81.1765242850001,8.698879299000112],[81.17904707100016,8.708482164000188],[81.18230228000019,8.712225653000118],[81.18775475400011,8.711004950000103],[81.1878361340001,8.71096426000011],[81.19752037900015,8.705715236000131],[81.19459069100006,8.696112372000144],[81.22242272199999,8.66600169500012],[81.23170006600017,8.651068427000084],[81.23161868600019,8.63304271000014],[81.22429446700008,8.62579987200013],[81.21387780000006,8.621039130000128],[81.20435631600017,8.610093492000159],[81.20451907600014,8.610174872000144],[81.2117619150001,8.612005927000112],[81.21924889400006,8.613918361000074],[81.22112063900013,8.614935614000132],[81.22486412900017,8.61692942900008],[81.22494550900015,8.616848049000097],[81.24659264400012,8.570135809000107],[81.24976647200018,8.545803127000141],[81.22494550900015,8.541815497000158],[81.22486412900017,8.541815497000158],[81.22999108200017,8.557928778000132],[81.22331790500019,8.570827541000142],[81.22331790500019,8.570868231000134],[81.21225019600016,8.572699286000116],[81.20435631600017,8.555487372000101],[81.20704186300004,8.542141018000095],[81.21412194100006,8.532660223000079],[81.21802819100006,8.522528387000122],[81.21062259200002,8.507106838000183],[81.21062259200002,8.507066148000192],[81.20476321700018,8.511542059000163],[81.19385826900012,8.519964911000116],[81.1765242850001,8.53058502800016],[81.1590275400001,8.53457265800013],[81.14234459700006,8.527573960000069],[81.12940514400006,8.510321356000148],[81.13396243600019,8.501288153000132],[81.14942467500012,8.503648179000095],[81.1702580090001,8.520697333000143],[81.18458092500006,8.505601304000137],[81.19752037900015,8.487494208000129],[81.21314537900017,8.472398179000123],[81.23511803500017,8.466131903000175],[81.2810978520001,8.467027085000069],[81.29664147200006,8.476792710000112],[81.286387566,8.500230210000083],[81.31267337300014,8.51215241100013],[81.3230900400001,8.515326239000089],[81.33415774800007,8.51455312700007],[81.33423912900011,8.514471747000087],[81.34636478000002,8.507554429000095],[81.35743248800006,8.495835679000109],[81.36573326900006,8.482163804000066],[81.372813347,8.44212474200013],[81.38843834700018,8.390611070000148],[81.38892662900017,8.377183335000069],[81.38941491000017,8.363714911000088],[81.3767195970001,8.37254466400013],[81.36345462300008,8.399074611000103],[81.35181725400017,8.404689846000096],[81.35141035200016,8.397447007000082],[81.35621178500017,8.364976304000095],[81.35661868600006,8.362494208000072],[81.36207116000011,8.350043036000145],[81.36874433700004,8.346909898000163],[81.37484785200016,8.344061591000127],[81.3750106130001,8.344061591000127],[81.38851972700016,8.344061591000127],[81.3992619150001,8.33926015800013],[81.4056095710001,8.301011460000097],[81.41325931100008,8.274481512000122],[81.41456139400005,8.270086981000148],[81.41667728000007,8.2538516300001],[81.41667728000007,8.253770249000127],[81.41976972700016,8.24339427300012],[81.44060306100013,8.173529364000089],[81.44849694100016,8.127997137000122],[81.43034915500019,8.103135484000092],[81.43034915500019,8.103013414000117],[81.42025800900015,8.144232489000075],[81.41879316500015,8.150051174000124],[81.40357506600017,8.191799221000153],[81.39625084700018,8.191799221000153],[81.39503014400006,8.1601016300001],[81.39625084700018,8.150132554000109],[81.39551842500006,8.150458075000131],[81.39478600400011,8.147609768000095],[81.39478600400011,8.147528387000108],[81.39478600400011,8.142564195000148],[81.39625084700018,8.13654205900015],[81.39958743600017,8.13263580900015],[81.40805097700016,8.130072333000143],[81.40813235800013,8.130031643000152],[81.40984134200002,8.126898505000085],[81.41797936300006,8.105943101000136],[81.43555748800011,8.093166408000087],[81.4356388680001,8.093166408000087],[81.45240319100017,8.094549872000158],[81.45826256600006,8.116034247000101],[81.46436608200023,8.116034247000101],[81.47071373800006,8.10455963700015],[81.47242272200006,8.10146719000008],[81.48064212300008,8.065375067000119],[81.48902428500011,8.051499742000132],[81.50017337300002,8.039374091000141],[81.50733483200005,8.027573960000069],[81.5197046230002,7.999335028000103],[81.52458743600019,8.00421784100017],[81.53101647200018,8.009019273000163],[81.53394616000011,8.0136172550001],[81.5383406910001,8.004299221000153],[81.53394616000011,7.999335028000103],[81.53614342500012,7.995754299000126],[81.53809655000006,7.993394273000177],[81.5384220710001,7.992783921000125],[81.53956139400012,7.990790106000175],[81.54021243600008,7.986314195000118],[81.54029381600006,7.986395575000102],[81.5452580090001,7.990464585000068],[81.5555119150001,7.995347398000121],[81.56072024800014,7.999335028000103],[81.56072024800014,7.999253648000121],[81.5630802740001,7.993638414000117],[81.56592858200011,7.986802476000107],[81.5638126960001,7.978705145000077],[81.560313347,7.970648505000141],[81.56047610800007,7.964422919000171],[81.56072024800014,7.958400783000087],[81.5677189460001,7.944973049000083],[81.58008873800006,7.935573635000154],[81.58814537900017,7.929429429000081],[81.59546959700016,7.91742584800015],[81.59083092500006,7.917141018000122],[81.5884708990001,7.915554104000179],[81.58545983200011,7.913519598000064],[81.58358808700021,7.91233958500014],[81.58171634200008,7.911200262000108],[81.57878665500007,7.900295315000121],[81.57585696700014,7.889390367000146],[81.58757571700019,7.855292059000135],[81.59392337300002,7.84804922100011],[81.6082462900001,7.831691799000097],[81.60840905000006,7.831691799000097],[81.62956790500017,7.835516669000114],[81.63640384200019,7.835516669000114],[81.64332116000011,7.814642645000148],[81.6512150400001,7.801743882000125],[81.6536564460001,7.797756252000156],[81.69678795700023,7.752997137000108],[81.71070397199999,7.731146552000069],[81.71314537900017,7.711818752000141],[81.6910099620001,7.705186265000164],[81.69092858200011,7.705145575000174],[81.68067467500006,7.712062893000096],[81.65609785200016,7.743109442000104],[81.64323978000002,7.75413646000014],[81.62663821700008,7.760199286000145],[81.62647545700011,7.760199286000145],[81.6247664720001,7.760036526000177],[81.61296634200002,7.759019273000121],[81.60254967500006,7.748439846000068],[81.59546959700016,7.726263739000104],[81.60743248800011,7.720851955000142],[81.61898847700016,7.719224351000122],[81.62891686300006,7.722886460000082],[81.63640384200019,7.733099677000112],[81.64820397200018,7.728705145000134],[81.65902754000015,7.723334052000084],[81.66277103000019,7.718939520000092],[81.66529381599999,7.715887762000108],[81.66529381599999,7.715847072000117],[81.66374759200008,7.705145575000174],[81.677012566,7.692816473000136],[81.69027754000015,7.680487372000101],[81.70069420700023,7.668605861000145],[81.71159915500019,7.650539455000128],[81.71151777400021,7.650498765000136],[81.70639082100008,7.644598700000103],[81.70508873800011,7.63886139500012],[81.706797722,7.631984768000124],[81.71159915500019,7.622544664000187],[81.71778405000006,7.630072333000071],[81.71404056100002,7.643662828000116],[81.71404056100002,7.643744208000101],[81.72584069099999,7.639593817000146],[81.74903405000006,7.622544664000187],[81.75456790500007,7.614569403000146],[81.77295983200011,7.568019924000126],[81.77295983200011,7.567979234000134],[81.77182050900015,7.5659854190001],[81.76612389400006,7.540676174000139],[81.7669376960001,7.537909247000087],[81.76710045700017,7.537502346000083],[81.77182050900015,7.527818101000122],[81.77295983200011,7.523911851000121],[81.76905358200011,7.517035223000121],[81.76189212300007,7.511542059000177],[81.75757897200016,7.5054385440001],[81.76270592500006,7.49656810100015],[81.76758873800006,7.490179755000128],[81.76929772200006,7.4851748720001],[81.76954186300011,7.484523830000142],[81.77247155000012,7.478827216000155],[81.77979576900012,7.47235748900006],[81.76905358200011,7.464667059000135],[81.76905358200011,7.464626369000142],[81.77003014400006,7.460842190000121],[81.77100670700015,7.456976630000113],[81.77906334700018,7.455308335000112],[81.78711998800011,7.465562242000132],[81.7933048840001,7.465562242000132],[81.79338626400006,7.465521552000141],[81.80103600400011,7.425197658000072],[81.80079186300006,7.410345770000105],[81.80095462300012,7.410345770000105],[81.80779056100008,7.410345770000105],[81.80779056100008,7.410711981000119],[81.80860436300006,7.424709377000084],[81.81104576900012,7.438544012000178],[81.81527754000008,7.450344143000152],[81.82146243600019,7.458726304000109],[81.82146243600019,7.465521552000141],[81.82146243600019,7.465562242000132],[81.82089277400021,7.46710846600017],[81.8186955090001,7.473374742000117],[81.8204858730002,7.476507880000098],[81.8260197270001,7.474188544000128],[81.83497155000005,7.465562242000132],[81.83806399800002,7.457668361000159],[81.84034264400012,7.436468817000076],[81.85572350400015,7.412176825000174],[81.88070722700016,7.327093817000075],[81.87598717500006,7.0919457050001],[81.87842858200011,7.076117255000071],[81.88868248800011,7.040757554000137],[81.89031009200008,7.019924221000152],[81.88461347700016,6.980169989000075],[81.83855228,6.821437893000095],[81.8359481130001,6.805080471000082],[81.83497155000005,6.783433335000097],[81.83155358200023,6.765366929000081],[81.81714928500017,6.737494208000128],[81.81397545700011,6.725043036000102],[81.80827884200002,6.707953192000062],[81.7889103520001,6.67780182500013],[81.77979576900012,6.663641669000113],[81.77979576900012,6.663600979000122],[81.78663170700023,6.639308986000144],[81.78663170700023,6.639268296000154],[81.77564537900017,6.610419012000136],[81.68148847700016,6.462144273000149],[81.65007571700002,6.430853583000085],[81.59205162900017,6.389878648000163],[81.57309004000015,6.384222723000079],[81.54769941500015,6.370672919000114],[81.36207116000011,6.22540924700013],[81.32496178500017,6.205389716000155],[81.20443769600016,6.162746486000131],[81.20435631600017,6.162746486000131],[81.2027287120001,6.177191473000093],[81.20264733200011,6.178045966000099],[81.19548587300002,6.183661200000102],[81.19532311300006,6.183620510000111],[81.19369550900014,6.183213609000105],[81.18767337300008,6.181586005000085],[81.1838485040001,6.173570054000123],[81.18189537900011,6.156724351000122],[81.17644290500007,6.15037669500019],[81.16765384200019,6.148016669000143],[81.15601647200018,6.142889716000127],[81.13428795700011,6.129828192000147],[81.11255944100006,6.120306708000058],[81.008474155,6.09804922100011],[80.95801842500012,6.080796617000188],[80.9026798840001,6.070786851000122],[80.87745201900006,6.061102606000148],[80.86231530000006,6.039862372000171],[80.835215691,6.04515208500014],[80.81853274800008,6.038763739000132],[80.80909264400006,6.035101630000085],[80.77059980600009,6.006740627000141],[80.73210696700019,5.978420315000093],[80.7143660820001,5.957912502000141],[80.67343183700004,5.960313218000081],[80.67335045700005,5.960353908000073],[80.65626061300006,5.957912502000141],[80.6429142590001,5.952866929000108],[80.62916100400011,5.945054429000109],[80.60482832100016,5.926906643000109],[80.59782962300008,5.925279039000188],[80.59083092500006,5.92373281500015],[80.57422936300011,5.930121161000073],[80.55665123800011,5.939154364000088],[80.54656009200014,5.942206122000172],[80.53956139400006,5.94428131700009],[80.48170006600004,5.937445380000085],[80.46517988400015,5.940659898000135],[80.45679772200018,5.948919989000117],[80.45142662900011,5.959784247000101],[80.44719485800013,5.966131903000132],[80.44402103000007,5.970892645000134],[80.44402103000007,5.970933335000126],[80.42709394600014,5.961086330000099],[80.41195722700014,5.959947007000067],[80.38502037900011,5.963812567000076],[80.37859134200019,5.96474844000015],[80.37378991000011,5.966864325000159],[80.3704533210001,5.971584377000084],[80.36622155000006,5.976263739000089],[80.35840905000006,5.978420315000093],[80.3537703790001,5.976792710000068],[80.35010826900006,5.973537502000127],[80.34620201900012,5.970770575000159],[80.34099368600019,5.970933335000126],[80.3392033210001,5.972398179000095],[80.33757571700019,5.973822333000058],[80.33122806100008,5.982814846000082],[80.32813561300006,5.984686591000141],[80.32732181100008,5.985174872000129],[80.32732181100008,5.985256252000113],[80.32024173300007,5.987738348000136],[80.2775171230002,6.002997137000108],[80.2600203790001,6.006577867000175],[80.24756920700011,6.009182033000073],[80.22584069100006,6.026556708000143],[80.22095787900017,6.028916734000106],[80.21135501400006,6.033555406000133],[80.21119225400011,6.033636786000115],[80.20386803500011,6.02619049700013],[80.18523196700002,6.041164455000071],[80.10377037900011,6.127142645000077],[80.09709720100014,6.132350979000164],[80.09701582100016,6.132391669000157],[80.09628339900021,6.133327541000142],[80.09400475400015,6.136053778000118],[80.09278405000006,6.140244859000134],[80.09278405000006,6.140285549000126],[80.09310957100016,6.14874909100017],[80.0905867850001,6.153143622000157],[80.08716881600006,6.157578843000123],[80.07813561300011,6.169338283000116],[80.03199303500011,6.266343492000161],[80.03003991000017,6.275620835000112],[80.03003991000017,6.275702216000098],[80.03028405000012,6.284002997000172],[80.03052819100006,6.292303778000147],[80.03052819100006,6.29238515800013],[80.02881920700023,6.297430731000161],[80.02051842500006,6.314642645000091],[80.0120548840001,6.361314195000176],[79.99366295700005,6.3941104190001],[79.98210696700008,6.441026109000133],[79.97787519600008,6.458197333000072],[79.97575931100012,6.459865627000084],[79.9714461600001,6.46246979400017],[79.96697024800008,6.466376044000157],[79.9642033210001,6.471869208000101],[79.9653426440001,6.477728583000142],[79.9702254570001,6.479152736000117],[79.97535241000011,6.478583075000145],[79.9754337900001,6.478583075000145],[79.97787519600008,6.47870514500012],[79.9702254570001,6.531154690000079],[79.96957441500015,6.535345770000106],[79.94874108200004,6.588568427000097],[79.8630477220001,6.807196356000091],[79.84945722700016,6.882717190000122],[79.84815514400006,6.890204169000171],[79.84815514400006,6.962144273000134],[79.84929446700019,6.964951890000094],[79.8592228520001,6.988674221000095],[79.86182701900006,7.000067450000159],[79.86158287900011,7.011664130000084],[79.86158287900011,7.011867580000128],[79.813731316,7.18073151200015],[79.82032311300011,7.205511786000115],[79.81999759200008,7.190252997000143],[79.82374108200011,7.180650132000068],[79.82911217500006,7.173244533000087],[79.83383222700016,7.164496161000102],[79.84343509200002,7.131008205000157],[79.84815514400006,7.122951565000122],[79.8543400400001,7.122951565000122],[79.8558048840001,7.132513739000102],[79.858653191,7.136542059000162],[79.86117597700016,7.137193101000122],[79.86125735800013,7.137193101000122],[79.86182701900006,7.13662344000015],[79.86182701900006,7.136664130000142],[79.86158287900011,7.167222398000162],[79.86158287900011,7.167425848000121],[79.85938561300006,7.180812893000124],[79.8543400400001,7.191839911000089],[79.84961998800011,7.195054429000137],[79.83643639400006,7.197902736000074],[79.83057701900012,7.201808986000159],[79.82992597700016,7.203192450000146],[79.8263452480002,7.210394598000093],[79.8279728520001,7.218329169000142],[79.83179772200006,7.225734768000138],[79.83383222700016,7.232814846000097],[79.78467858200023,7.589789130000084],[79.77857506600006,7.602728583000086],[79.78272545700011,7.607123114000074],[79.78581790500019,7.607570705000156],[79.79297936300011,7.602728583000086],[79.79460696700002,7.620021877000084],[79.7995711600001,7.640082098000135],[79.8007918630001,7.649684963000126],[79.80201256600006,7.659328518000094],[79.79639733200023,7.674383856000105],[79.78882897200018,7.688177802000112],[79.78736412900011,7.697333075000103],[79.78589928500017,7.706488348000079],[79.78598066500015,7.743353583000143],[79.76295006600016,7.85545482000019],[79.76026451900012,7.868394273000192],[79.74838300900014,7.893011786000115],[79.73829186300006,7.944728908000144],[79.72193444100017,7.985541083000101],[79.69678795700005,8.098293361000103],[79.69678795700005,8.130316473000093],[79.70085696700002,8.128485419000114],[79.70110110800007,8.128200588000169],[79.70142662900011,8.127915757000139],[79.70142662900011,8.126898505000085],[79.70362389400012,8.123480536000073],[79.70720462300008,8.142075914000158],[79.70191491000011,8.20115794500019],[79.69678795700005,8.219061591000155],[79.7132267590001,8.22980377800016],[79.72877037900017,8.249701239000075],[79.74000084700016,8.272365627000113],[79.74447675900015,8.291408596000108],[79.74903405000006,8.303859768000123],[79.77857506600006,8.350043036000145],[79.77824954500014,8.349269924000126],[79.76335696700008,8.3143985050001],[79.74447675900015,8.281154690000093],[79.74862714900009,8.273057359000148],[79.74968509200002,8.271063544000114],[79.75709069100006,8.263739325000117],[79.76677493600017,8.2599144550001],[79.77857506600006,8.259995835000081],[79.7688908210001,8.232814846000082],[79.75879967500012,8.212876695000176],[79.75440514400006,8.209418036000088],[79.749766472,8.2089297550001],[79.74610436300006,8.20612213700015],[79.74447675900015,8.195502020000106],[79.74537194100004,8.171861070000176],[79.74447675900015,8.164496161000088],[79.72754967500006,8.110907294000171],[79.72820071700019,8.100978908000087],[79.72950280000012,8.081122137000165],[79.74699954500008,8.060492255000142],[79.75196373800011,8.054632880000113],[79.73194420700023,8.013128973000107],[79.76384524800008,7.990139065000135],[79.81023196700002,7.986517645000077],[79.83383222700016,8.003078518000137],[79.82935631600012,8.020900783000116],[79.82178795700023,8.034857489000089],[79.81885826900012,8.040187893000152],[79.81527754000015,8.044582424000126],[79.806407097,8.055650132000082],[79.79639733200023,8.061997789000186],[79.7934676440001,8.072821356000103],[79.82715905000012,8.13654205900015],[79.82585696700019,8.148098049000083],[79.821543816,8.156642971000096],[79.81657962300008,8.163804429000137],[79.81348717500006,8.171291408000116],[79.81267337300008,8.183335679000123],[79.8138126960001,8.204087632000125],[79.81348717500006,8.212632554000137],[79.81348717500006,8.212876695000176],[79.81291751400008,8.214504299000112],[79.81023196700002,8.221625067000062],[79.80860436300011,8.223089911000116],[79.80665123800006,8.224920966000099],[79.80469811300011,8.228989976000065],[79.80665123800006,8.24017975500007],[79.81137129000015,8.249660549000083],[79.82447350400011,8.266669012000136],[79.82715905000012,8.277736721000082],[79.82927493600013,8.298651434000135],[79.83863366000016,8.34052155200014],[79.84815514400006,8.43817780200014],[79.85425866000011,8.449286200000174],[79.86085045700011,8.454779364000103],[79.86589603000007,8.46141185100008],[79.86801191500015,8.476019598000093],[79.86801191500015,8.517645575000145],[79.87378991000011,8.538072007000125],[79.88738040500007,8.551214911000088],[79.90349368600008,8.562079169000171],[79.91651451900012,8.57599518400015],[79.91814212300008,8.580918687000107],[79.92807050900014,8.611517645000134],[79.92945397200006,8.612819729000122],[79.93018639400006,8.613511460000069],[79.93238366000016,8.622463283000101],[79.94166100400011,8.642482815000065],[79.95053144600016,8.739813544000143],[79.92644290500002,8.80190664300008],[79.92839603000019,8.812689520000077],[79.93018639400006,8.883490302000098],[79.93018639400006,8.884426174000081],[79.93018639400006,8.884466864000075],[79.92774498800006,8.908107815000093],[79.92481530000012,8.919745184000107],[79.91960696700019,8.928534247000158],[79.91553795700017,8.93854401200015],[79.92481530000012,8.9435082050001],[79.93824303500011,8.945990302000126],[79.94711347700016,8.948675848000107],[80.005137566,9.000555731000105],[80.03541100400011,9.015326239000089],[80.04802493600017,9.026271877000141],[80.05469811300006,9.05060455900012],[80.06666100400017,9.075628973000121],[80.07349694100012,9.110419012000165],[80.10564212300008,9.192857164000188],[80.10678144600008,9.197414455000143],[80.10979251400008,9.209458726000065],[80.11597741000017,9.233832098000107],[80.11597741000017,9.291937567000076],[80.11817467500006,9.300441799000096],[80.11622155000012,9.306179104000165],[80.11622155000012,9.306219794000157],[80.10450280000012,9.30841705900015],[80.07691491000011,9.322658596000153],[80.06617272200018,9.332586981000146],[80.05941816500015,9.351385809000107],[80.05827884200014,9.354803778000118],[80.05347741000011,9.37824127800009],[80.05298912900017,9.391546942000119],[80.06495201900006,9.404038804000123],[80.08708743600008,9.41498444200009],[80.11166425900015,9.422756252000099],[80.13184655000012,9.4257266300001],[80.14087975400011,9.430324611000131],[80.16285241000011,9.459214585000055],[80.16537519600016,9.461086330000114],[80.16920006600006,9.464016018000137],[80.17652428500017,9.468329169000143],[80.18555748800006,9.471665757000082],[80.197032097,9.473456122000158],[80.18751061300011,9.490871486000131],[80.18181399800002,9.498521226000065],[80.17603600400017,9.506170966000084],[80.16130618600019,9.52057526200015],[80.14185631600017,9.53497955900012],[80.06788170700011,9.57802969000015],[80.05298912900017,9.596380927000112],[80.08521569100017,9.59536367400014],[80.11573326900012,9.583238023000149],[80.1759546230002,9.54857005400008],[80.23340905000012,9.534247137000179],[80.24854576900012,9.524644273000106],[80.27222741000011,9.504136460000069],[80.27808678500017,9.493312893000152],[80.27808678500017,9.49327220300016],[80.26587975400017,9.487127997000101],[80.26856530000006,9.480292059000163],[80.27214603,9.473456122000158],[80.26587975400017,9.466701565000122],[80.26596113400015,9.466660874000125],[80.286875847,9.452704169000157],[80.3362736340001,9.464667059000178],[80.4266056650001,9.500189520000077],[80.45093834700006,9.497870184000105],[80.5042423840001,9.483303127000084],[80.56714928500017,9.455226955000086],[80.6145939460001,9.446193752000156],[80.61475670700023,9.446193752000156],[80.5467228520001,9.492417710000069],[80.5232853520001,9.503159898000177],[80.50245201900012,9.50763580900015],[80.49935957100016,9.509059963000112],[80.49634850400011,9.510484117000173],[80.47828209699999,9.524074611000145],[80.47144616000011,9.528062242000118],[80.46461022200018,9.529120184000163],[80.4563908210001,9.528713283000158],[80.44402103000007,9.528062242000118],[80.43620853000007,9.525091864000103],[80.43506920700023,9.5233828800001],[80.43287194100006,9.519761460000138],[80.42896569100006,9.517767645000104],[80.41570071700019,9.527492580000143],[80.41041100400011,9.528387762000136],[80.37794030000006,9.527533270000133],[80.36866295700011,9.530218817000119],[80.29753665500007,9.591253973000093],[80.26701907600014,9.61082591400016],[80.26693769600016,9.61082591400016],[80.25603274800008,9.61558665600016],[80.20460045700017,9.6378848330001],[80.18604576900006,9.648504950000143],[80.17359459700006,9.648667710000112],[80.1759546230002,9.624335028000132],[80.18287194100016,9.61717357000019],[80.19361412900011,9.609076239000075],[80.19996178500011,9.599188544000157],[80.19361412900011,9.586411851000122],[80.18604576900006,9.584133205000143],[80.17872155000006,9.588039455000143],[80.17204837300018,9.59357330900015],[80.15284264400006,9.60346100500007],[80.11548912900017,9.63572825700011],[80.09400475400015,9.644842841000099],[80.09408613400015,9.64476146000011],[80.10499108200011,9.63287995000016],[80.12468509200008,9.616034247000158],[80.13559004000014,9.603827216000083],[80.11133873800006,9.608465887000108],[80.08741295700005,9.618353583000129],[80.03931725400011,9.644842841000099],[80.00098717500006,9.674709377000084],[79.97820071700008,9.682684637000136],[79.9759220710001,9.684068101000122],[79.96729576900006,9.689601955000128],[79.95923912900011,9.692816473000093],[79.9580184250001,9.685736395000134],[79.94703209700018,9.693182684000107],[79.94288170700023,9.702826239000075],[79.94092858200005,9.714341539000117],[79.93702233200011,9.727362372000101],[79.93043053500011,9.73847077000012],[79.92652428500011,9.743516343000152],[79.91627037900017,9.75678131700009],[79.9096785820001,9.768296617000118],[79.93132571700019,9.779038804000137],[79.97071373800011,9.815130927000082],[79.98845462300008,9.822943427000084],[79.98853600400017,9.822943427000084],[80.06666100400017,9.81610748900006],[80.10743248800006,9.820624091000113],[80.12232506600012,9.818915106000103],[80.12818444100006,9.805568752000099],[80.12720787900015,9.78461334800015],[80.13013756600017,9.777329820000132],[80.13868248800011,9.77456289300008],[80.14698326900012,9.773382880000142],[80.17090905000006,9.76727936400006],[80.1759546230002,9.76459381700009],[80.18043053500016,9.755804755000113],[80.19117272200018,9.756170966000127],[80.19963626400013,9.758734442000131],[80.20289147200006,9.759711005000113],[80.20777428500011,9.760402736000145],[80.21119225400011,9.760891018000137],[80.2112736340001,9.760850328000146],[80.21900475400011,9.75637441600017],[80.22234134200008,9.75446198100012],[80.2503361340001,9.724269924000112],[80.33855228000007,9.629217841000113],[80.36963951900006,9.609849351000094],[80.4417423840001,9.576890367000118],[80.44402103000007,9.575873114000146],[80.44402103000007,9.575913804000137],[80.44402103000007,9.583319403000132],[80.40772545700023,9.601507880000128],[80.31983483200011,9.672756252000127],[80.24781334700006,9.755072333000086],[80.21119225400011,9.774522203000089],[80.21119225400011,9.77456289300008],[80.15381920700011,9.787990627000156],[80.13868248800011,9.79873281500008],[80.13672936300006,9.813910223000079],[80.1577254570001,9.822943427000084],[80.16456139400012,9.824082749000112],[80.18539472700009,9.827541408000116],[80.22681725400011,9.829575914000145],[80.24675540500019,9.825873114000103],[80.2605900400001,9.816229559000135],[80.26978600400017,9.783514716000097],[80.27898196700008,9.769842841000155],[80.40992272200006,9.617499091000127],[80.42920983200005,9.60346100500007],[80.46827233200023,9.581366278000175]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"China","sov_a3":"CH1","adm0_dif":1,"level":2,"type":"Country","admin":"Macao S.A.R","adm0_a3":"MAC","geou_dif":0,"geounit":"Macao S.A.R","gu_a3":"MAC","su_dif":0,"subunit":"Macao S.A.R","su_a3":"MAC","brk_diff":0,"name":"Macao","name_long":"Macao","brk_a3":"MAC","brk_name":"Macao","brk_group":null,"abbrev":"Mac.","postal":"MO","formal_en":"Macao Special Administrative Region, PRC","formal_fr":null,"note_adm0":"China","note_brk":null,"name_sort":"Macao SAR, China","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":3,"pop_est":559846,"gdp_md_est":18140,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"MC","iso_a2":"MO","iso_a3":"MAC","iso_n3":"446","un_a3":"446","wb_a2":"MO","wb_a3":"MAC","woe_id":20070017,"woe_id_eh":20070017,"woe_note":"Exact WOE match as country","adm0_a3_is":"MAC","adm0_a3_us":"MAC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"MAC.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.55860436300023,22.163031317],[113.56942793100002,22.160752671000022],[113.57406660200016,22.160752671000022],[113.57406660200016,22.156113999000084],[113.57178795700011,22.152899481000034],[113.56788170700011,22.150580145000063],[113.56324303500017,22.150580145000063],[113.56023196700008,22.141546942000062],[113.56763756600004,22.139064846000124],[113.57252037900004,22.13731517100014],[113.57797285200016,22.139634507000025],[113.57797285200016,22.138088283000158],[113.57488040500019,22.13503652600015],[113.57976321700006,22.131903387000094],[113.58594811300011,22.131944078000075],[113.58668053500006,22.12954336100013],[113.58749433700002,22.127224026000178],[113.58749433700002,22.124863999000027],[113.58594811300011,22.124090887000094],[113.58358808700008,22.123317776000178],[113.57748457100008,22.126654364],[113.57797285200016,22.120917059000035],[113.57406660200016,22.119370835],[113.57097415500019,22.120143947000102],[113.56674238400015,22.12335846600017],[113.56666100400017,22.117377020000063],[113.56519616000004,22.112616278000143],[113.56633548300023,22.107692776000093],[113.56324303500017,22.10691966400016],[113.55738366000004,22.111151434000092],[113.5522567070001,22.107692776000093],[113.55152428500017,22.10614655200005],[113.54916425900004,22.105373440000122],[113.54680423300019,22.105373440000122],[113.5437117850001,22.107692776000093],[113.5411076180001,22.113267320000105],[113.54525800900014,22.114243882],[113.54232832100004,22.140733140000137],[113.54224694100004,22.14081452000012],[113.53410892000012,22.148789781000076],[113.53223717500022,22.152533270000117],[113.53223717500022,22.152614651000093],[113.53443444100006,22.161200262000122],[113.54143313900012,22.162339585000055],[113.54297936300017,22.16380442900011],[113.55290774800008,22.165838934000035],[113.55860436300023,22.163031317]]],[[[113.55380293100004,22.211493231000176],[113.55559329500014,22.207546291000185],[113.55681399800007,22.20355866100003],[113.55152428500017,22.204413153000115],[113.54843183700021,22.202053127000156],[113.54916425900004,22.1997337910001],[113.55071048300024,22.19896067900008],[113.55713951900006,22.202460028000143],[113.55380293100004,22.196641343000024],[113.55380293100004,22.19586823100009],[113.5522567070001,22.19741445500013],[113.55071048300024,22.19586823100009],[113.55152428500017,22.19419993700008],[113.55152428500017,22.191880601000108],[113.55152428500017,22.191107489],[113.55152428500017,22.189561265000133],[113.54843183700021,22.188055731000087],[113.54297936300017,22.184190171000083],[113.5398869150001,22.18264394700004],[113.53598066499998,22.18264394700004],[113.53288821700019,22.178697007000054],[113.52890058700021,22.178697007000054],[113.52483157600008,22.17381419500019],[113.5247501960001,22.173732815],[113.51986738400004,22.18370189000011],[113.51986738400004,22.183742580000096],[113.52019290500002,22.18488190300003],[113.52214603000019,22.190497137000037],[113.52483157600008,22.193060614000146],[113.52540123800023,22.193630276000093],[113.53036543100008,22.201524156000072],[113.53524824300004,22.207546291000185],[113.53370201900012,22.210760809000035],[113.53207441499997,22.210760809000035],[113.53288821700019,22.209173895],[113.52735436300006,22.207546291000185],[113.52434329500025,22.212551174000126],[113.52890058700021,22.21385325700011],[113.52890058700021,22.214626369000044],[113.53524824300004,22.214626369000044],[113.53646894600016,22.217067776000178],[113.53891035199999,22.22077057500003],[113.54452558700021,22.217678127000127],[113.54452558700021,22.21613190300009],[113.55071048300024,22.21385325700011],[113.55380293100004,22.211493231000176]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Myanmar","sov_a3":"MMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Myanmar","adm0_a3":"MMR","geou_dif":0,"geounit":"Myanmar","gu_a3":"MMR","su_dif":0,"subunit":"Myanmar","su_a3":"MMR","brk_diff":0,"name":"Myanmar","name_long":"Myanmar","brk_a3":"MMR","brk_name":"Myanmar","brk_group":null,"abbrev":"Myan.","postal":"MM","formal_en":"Republic of the Union of Myanmar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Myanmar","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":13,"pop_est":48137741,"gdp_md_est":55130,"pop_year":-99,"lastcensus":1983,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"BM","iso_a2":"MM","iso_a3":"MMR","iso_n3":"104","un_a3":"104","wb_a2":"MM","wb_a3":"MMR","woe_id":23424763,"woe_id_eh":23424763,"woe_note":"Exact WOE match as country","adm0_a3_is":"MMR","adm0_a3_us":"MMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"MMR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.0574650400001,9.79686107000012],[98.03760826900006,9.790716864000132],[98.01832116000006,9.794907945000162],[98.00806725400011,9.807440497000158],[98.015391472,9.826402085000081],[98.03028405000006,9.833400783000158],[98.04607181100013,9.82794830900012],[98.05689537900011,9.814357815000065],[98.0574650400001,9.79686107000012]]],[[[98.25440514400012,10.062689520000092],[98.27515709700012,10.055650132000123],[98.27963300900015,10.058661200000131],[98.282481316,10.059393622000158],[98.29566491000006,10.055650132000123],[98.29566491000006,10.048895575000174],[98.28003991000016,10.051011460000096],[98.27393639400005,10.048041083000086],[98.2736922540001,10.042181708000143],[98.27515709700012,10.035834052000112],[98.28101647200006,10.028387762000136],[98.2893986340001,10.024318752000084],[98.29411868600013,10.019110419000171],[98.28825931100008,10.007961330000157],[98.26921634200006,10.002590236000103],[98.25814863400014,9.985988674000138],[98.25123131600006,9.968329169000128],[98.24390709700006,9.960109768000137],[98.22779381600017,9.954006252000141],[98.1935327480002,9.931463934000163],[98.17896569100016,9.932806708000143],[98.17546634200006,9.921454169000171],[98.17090905000012,9.912258205000114],[98.16846764400012,9.90460846600017],[98.17156009200008,9.898098049000081],[98.14576256600006,9.85683828300013],[98.13347415500019,9.845607815000136],[98.1311955090001,9.864488023000163],[98.12061608200005,9.86131419500019],[98.11719811300006,9.8820254580001],[98.1181746750001,9.90851471600017],[98.120371941,9.922552802000126],[98.124278191,9.93138255400008],[98.12745201900006,9.960109768000137],[98.14063561300006,9.963283596000096],[98.14820397200018,9.970363674000154],[98.15186608200005,9.977443752000127],[98.15447024800001,9.980617580000086],[98.16016686300011,9.98411692900008],[98.16431725400017,9.992254950000103],[98.16781660200016,10.001410223000079],[98.17156009200008,10.007961330000157],[98.17896569100016,10.01410553600013],[98.20573978000006,10.028998114000089],[98.23462975400017,10.05418528900016],[98.25440514400012,10.062689520000092]]],[[[98.19532311300004,10.07050202000009],[98.18580162900017,10.042059637000165],[98.18580162900017,10.121161200000158],[98.18360436300011,10.127020575000103],[98.17383873800006,10.140122789000173],[98.17156009200008,10.148138739000116],[98.17530358200011,10.159409898000106],[98.18189537900017,10.168605861000088],[98.18523196700019,10.176825262000179],[98.17896569100016,10.185451565000093],[98.17896569100016,10.192857164000158],[98.196055535,10.193182684000092],[98.22217858200005,10.17792389500012],[98.2404891290001,10.172349351000122],[98.24089603000002,10.167792059000163],[98.23951256600004,10.16648997600008],[98.23682701900006,10.166408596000096],[98.23365319099999,10.165513414000188],[98.23072350400017,10.159572658000073],[98.22779381600017,10.155259507000082],[98.22771243600019,10.150824286000102],[98.23365319099999,10.14447663000007],[98.21843509200002,10.136175848000093],[98.2077742850001,10.128648179000123],[98.20142662900015,10.118068752000083],[98.19532311300004,10.07050202000009]]],[[[97.90870201900012,10.47345612200013],[97.91944420700011,10.473089911000116],[97.925059441,10.474066473000093],[97.93067467500012,10.468166408000158],[97.93531334700006,10.461167710000083],[97.94353274800002,10.443793036000102],[97.9384871750001,10.43781159100017],[97.93336022200012,10.433742580000128],[97.92676842500012,10.432033596000123],[97.917735222,10.433050848000093],[97.92693118600019,10.417181708000058],[97.9318953790001,10.41201406500015],[97.91016686300006,10.401922919000086],[97.89380944100006,10.405991929000137],[97.88941491000017,10.419989325000103],[97.90406334700018,10.439276434000135],[97.89779707100008,10.452093817000076],[97.89340254000014,10.470770575000145],[97.89625084700018,10.487534898000163],[97.91146894600014,10.494533596000153],[97.90259850400011,10.479315497000172],[97.90870201900012,10.47345612200013]]],[[[98.2073673840001,10.483465887000122],[98.1927189460001,10.482407945000162],[98.18531334700018,10.501166083000115],[98.18970787900017,10.515570380000085],[98.20199629000015,10.524318752000156],[98.21794681100002,10.528550523000177],[98.23365319099999,10.529364325000103],[98.23243248800011,10.526922919000157],[98.2298283210001,10.522406317000105],[98.22868899800007,10.519964911000073],[98.22185306100002,10.498114325000131],[98.2073673840001,10.483465887000122]]],[[[98.55323326900006,10.832831122000158],[98.54151451900006,10.796210028000132],[98.52711022200018,10.786932684000178],[98.50953209700006,10.78660716400016],[98.49838300900014,10.793605861000144],[98.50416100400011,10.80609772300015],[98.51295006600016,10.809556382000054],[98.52068118600019,10.809271552000112],[98.52637780000006,10.810858466000141],[98.52849368600008,10.820054429000123],[98.52556399800008,10.826849677000139],[98.51832116000006,10.82949453300013],[98.50912519600016,10.828314520000106],[98.50049889400006,10.823472398000135],[98.50049889400006,10.837144273000163],[98.49488366000006,10.851263739000103],[98.49146569100006,10.86668528900013],[98.49089603000007,10.880804755000069],[98.49366295700004,10.89109935100008],[98.518809441,10.879095770000147],[98.54224694100017,10.86005280200007],[98.55323326900006,10.832831122000158]]],[[[97.90919030000012,10.85724518400012],[97.88355553500006,10.844549872000144],[97.89063561300011,10.854722398000192],[97.89454186300006,10.864243882000096],[97.89454186300006,10.873968817000145],[97.89039147200005,10.884955145000106],[97.89633222700014,10.913275458000143],[97.91195722700016,10.924261786000102],[97.9319767590001,10.924058335000055],[97.95183353000002,10.919094143000109],[97.94125410200016,10.891546942000076],[97.92774498800011,10.871975002000111],[97.90919030000012,10.85724518400012]]],[[[98.2220158210001,10.92666250200014],[98.22559655000006,10.9074160830001],[98.22681725400011,10.888088283000087],[98.23178144600016,10.870266018000109],[98.24366295700011,10.859279690000136],[98.25733483200005,10.849920966000113],[98.2677514980002,10.837144273000163],[98.27068118600002,10.818670966000141],[98.270762566,10.798895575000117],[98.27637780000012,10.784491278000147],[98.29566491000006,10.781927802000139],[98.28687584700018,10.768947658000144],[98.28296959700018,10.756537177000126],[98.28532962300002,10.745062567000076],[98.29566491000006,10.73468659100017],[98.29053795700005,10.73525625200014],[98.28923587300002,10.733587958000129],[98.28931725400011,10.730617580000114],[98.28825931100008,10.727280992000187],[98.27662194100017,10.705145575000117],[98.26783287900011,10.696519273000105],[98.25074303500006,10.693101304000109],[98.23682701900006,10.697333075000117],[98.23218834700005,10.708319403000175],[98.23365319099999,10.74095286700013],[98.23780358200005,10.73818594000008],[98.2404891290001,10.73468659100017],[98.255544467,10.746405341000155],[98.25163821700002,10.756008205000143],[98.23365319099999,10.768255927000112],[98.23389733200005,10.782863674000126],[98.24195397200016,10.814398505000128],[98.2404891290001,10.830959377000099],[98.23658287900011,10.833644924000081],[98.2229110040001,10.837795315000122],[98.21998131600017,10.840887762000108],[98.21949303500017,10.849839585000124],[98.21851647199999,10.8556175800001],[98.21631920700011,10.859849351000108],[98.1987410820001,10.881659247000158],[98.17896569100016,10.898586330000143],[98.17676842500006,10.894029039000188],[98.17335045700005,10.889308986000103],[98.17156009200008,10.884955145000106],[98.16529381600006,10.919094143000109],[98.15577233200005,10.92397695500007],[98.14673912900011,10.92450592700014],[98.14014733200005,10.91990794500012],[98.13746178500017,10.909125067000103],[98.13103274800008,10.902899481000148],[98.10027103000007,10.882025458000086],[98.08961022200006,10.878119208000086],[98.07740319100016,10.888088283000087],[98.0861922540001,10.903957424000112],[98.11011803500011,10.929348049000126],[98.11296634200002,10.934027411000145],[98.12631269600016,10.942206122000144],[98.1311955090001,10.946356512000179],[98.1333113940001,10.952948309000163],[98.13672936300006,10.970648505000069],[98.14087975400017,10.977443752000099],[98.15349368600008,10.98114655200014],[98.17188561300011,10.978664455000114],[98.19117272200006,10.97117747600005],[98.20573978000006,10.960028387000122],[98.21558678500017,10.944525458000115],[98.2220158210001,10.92666250200014]]],[[[98.4402775400001,10.965562242000145],[98.4329533210001,10.965033270000077],[98.42953535200016,10.977728583000129],[98.432871941,10.99359772300015],[98.44255618600008,11.002997137000179],[98.45142662900011,11.001939195000134],[98.45289147200018,10.986273505000057],[98.44800866,10.974310614000117],[98.4402775400001,10.965562242000145]]],[[[98.54151451900006,10.98798248900006],[98.54314212300008,10.960109768000109],[98.54151451900006,10.953802802000068],[98.53394616,10.950832424000154],[98.53003991,10.957180080000084],[98.52849368600008,10.966945705000128],[98.52849368600008,10.974310614000117],[98.518809441,10.971096096000068],[98.5120548840001,10.965236721000124],[98.50847415500019,10.956854559000163],[98.50798587300014,10.946356512000179],[98.48585045700005,10.955877997000087],[98.47706139400006,10.973700262000165],[98.47836347700014,10.993353583000115],[98.48682701900012,11.008449611000117],[98.50318444100006,11.021144924000083],[98.50953209700006,11.027736721000151],[98.51417076900005,11.035793361000103],[98.51587975400011,11.045355536000088],[98.51343834700006,11.063055731000176],[98.51417076900005,11.0698916690001],[98.52466881600006,11.086655992000118],[98.53191165500017,11.083807684000178],[98.53711998800004,11.068915106000132],[98.54460696700002,11.03119538000007],[98.54517662900011,11.015936591000099],[98.54151451900006,10.98798248900006]]],[[[98.27515709700012,11.248032945000176],[98.28101647200006,11.245835679000095],[98.29004967500006,11.248114325000158],[98.29835045700005,11.248602606000146],[98.30201256600017,11.241197007000068],[98.2950952480002,11.231146552000084],[98.27955162900015,11.22321198100012],[98.24732506600004,11.214504299000138],[98.24732506600004,11.227525132000123],[98.24317467500012,11.242987372000144],[98.23218834700005,11.253810940000136],[98.22185306100002,11.261908270000077],[98.21998131600017,11.2691104190001],[98.23170006600006,11.273911851000094],[98.25245201900006,11.276068427000098],[98.28142337300008,11.27594635600012],[98.274668816,11.256293036000073],[98.27515709700012,11.248032945000176]]],[[[98.28353925900015,11.509426174000081],[98.27515709700012,11.480780341000113],[98.2677514980002,11.4882266300001],[98.26587975400017,11.483058986000088],[98.2635197270001,11.478827216000155],[98.26156660200016,11.474188544000143],[98.26091556100019,11.467759507000125],[98.251719597,11.476507880000097],[98.2376408210001,11.493801174000097],[98.23365319099999,11.501898505000128],[98.2267358730002,11.494289455000086],[98.22348066500015,11.488836981000148],[98.22364342500012,11.482977606000105],[98.22681725400011,11.473944403000104],[98.21013431100008,11.472723700000172],[98.20199629000015,11.466253973000079],[98.20460045700005,11.458482164000173],[98.21998131600017,11.453517971000124],[98.2102970710001,11.448919989000089],[98.19890384200008,11.446478583000143],[98.18702233200011,11.446437893000152],[98.17652428500006,11.449164130000128],[98.16529381600006,11.453517971000124],[98.1648869150001,11.458482164000173],[98.16529381600006,11.473944403000104],[98.17505944100017,11.470892645000106],[98.18409264400006,11.47264232000019],[98.1922306650001,11.4786644550001],[98.19947350400011,11.4882266300001],[98.19646243600013,11.497056382000139],[98.1926375660001,11.518011786000102],[98.18897545700005,11.525824286000088],[98.18751061300004,11.534979559000163],[98.19646243600013,11.542385158000158],[98.20753014400006,11.548407294000157],[98.21314537900017,11.553412177000112],[98.21094811300006,11.561468817000131],[98.20630944100006,11.56476471600017],[98.2016707690001,11.569077867000175],[98.19947350400011,11.580471096000137],[98.20264733200004,11.589178778000132],[98.2168074880001,11.59894440300016],[98.2229110040001,11.617580471000153],[98.229746941,11.620998440000065],[98.23658287900011,11.622259833000072],[98.2404891290001,11.624823309000178],[98.24089603000002,11.63617584800015],[98.23462975400017,11.65558502800016],[98.23365319099999,11.666408596000153],[98.2384546230002,11.687079169000171],[98.2677514980002,11.741441148000177],[98.2724715500001,11.786078192000062],[98.27833092500006,11.799790757000096],[98.29184004000015,11.798895575000103],[98.30665123800011,11.777411200000158],[98.31820722700016,11.749986070000118],[98.32300866000004,11.731268622000144],[98.320078972,11.721909898000105],[98.31348717500012,11.718695380000057],[98.30640709700018,11.717474677000139],[98.30201256600017,11.714178778000104],[98.30030358200005,11.704779364000075],[98.30201256600017,11.673244533000073],[98.29004967500006,11.631659247000101],[98.28785241000017,11.6109072940001],[98.29566491000006,11.59125397300015],[98.28256269600008,11.566351630000113],[98.28353925900015,11.509426174000081]]],[[[97.47689863400015,11.788234768000152],[97.47966556100019,11.777980861000131],[97.46452884200019,11.782456773000192],[97.45923912900011,11.786200262000136],[97.44434655000006,11.800238348000093],[97.46290123800006,11.799790757000096],[97.47689863400015,11.788234768000152]]],[[[98.54371178500006,11.798976955000086],[98.54900149800001,11.791571356000176],[98.55241946700002,11.781642971000096],[98.55518639400012,11.769435940000108],[98.556407097,11.75873444200009],[98.55551191500008,11.728094794000171],[98.54607181100019,11.699204820000162],[98.54900149800001,11.621730861000103],[98.5457462900001,11.609035549000124],[98.53158613400015,11.593329169000157],[98.52849368600008,11.580471096000137],[98.52955162900011,11.56679922100011],[98.53419030000006,11.542629299000096],[98.5353296230002,11.5292422550001],[98.52418053500017,11.537014065000108],[98.50855553500017,11.555894273000135],[98.50049889400006,11.563381252000099],[98.48975670700005,11.567206122000115],[98.47681725400011,11.570257880000113],[98.4651798840001,11.574896552000126],[98.45899498800006,11.583807684000163],[98.44190514400012,11.564113674000124],[98.43238366,11.566717841000127],[98.42920983200005,11.583156643000123],[98.43165123800006,11.604925848000093],[98.42383873800011,11.599066473000136],[98.41911868600019,11.599554755000128],[98.41570071700008,11.604437567000105],[98.4116317070001,11.611761786000102],[98.41863040500019,11.63226959800015],[98.4104110040001,11.646063544000157],[98.39771569100006,11.655462958000086],[98.39128665500002,11.662990627000141],[98.37940514400006,11.69110748900013],[98.38209069100006,11.704169012000122],[98.40552819100006,11.707953192000131],[98.3992619150001,11.716131903000145],[98.3813582690001,11.731350002000127],[98.37761478000017,11.73802317900008],[98.37989342500006,11.750921942000105],[98.38559004000015,11.755519924000124],[98.39242597700014,11.757310289000117],[98.39812259200002,11.761948960000138],[98.4025985040001,11.763902085000096],[98.4104110040001,11.768622137000108],[98.41309655000005,11.7733828800001],[98.4017033210001,11.775580145000092],[98.39087975400011,11.775376695000134],[98.38209069100006,11.776190497000144],[98.3753361340001,11.780096747000144],[98.37077884200008,11.78925202000012],[98.39372806100008,11.794012762000122],[98.43824303500017,11.787054755000128],[98.45281009200019,11.78925202000012],[98.44947350400015,11.793280341000099],[98.4476017590001,11.796087958000143],[98.44532311300011,11.803615627000099],[98.4583439460001,11.80337148600016],[98.48682701900012,11.796087958000143],[98.4988712900001,11.7980410830001],[98.52214603000006,11.804754950000131],[98.5353296230002,11.803615627000099],[98.54371178500006,11.798976955000086]]],[[[98.05241946700008,11.749416408000144],[98.05795332100016,11.729071356000148],[98.08228600400011,11.734686591000155],[98.08073978000019,11.722642320000134],[98.07471764400006,11.713364976000094],[98.06568444100017,11.706366278000102],[98.05543053500006,11.701117255000128],[98.06348717500006,11.69725169500012],[98.0677189460001,11.69106679900014],[98.06755618600008,11.68292877800013],[98.06169681100019,11.673244533000073],[98.07911217500005,11.653794664000173],[98.08529707100016,11.644924221000124],[98.08961022200006,11.63226959800015],[98.06511478000012,11.646389065000093],[98.05738366,11.65314362200013],[98.05543053500006,11.65957265800013],[98.04932701900006,11.664699611000145],[98.03435306100002,11.686835028000132],[98.01661217500006,11.697495835000067],[98.01172936300006,11.704738674000083],[98.0244246750001,11.707953192000131],[98.02833092500012,11.717189846000108],[98.02857506600017,11.737005927000112],[98.02247155000006,11.75580475500007],[98.00709069100006,11.761948960000138],[98.01189212300002,11.787258205000086],[97.99976647200006,11.841782945000162],[98.01392662900015,11.864976304000109],[98.01197350400011,11.827378648000192],[98.01392662900015,11.816595770000104],[98.019297722,11.810492255000113],[98.04493248800006,11.78925202000012],[98.0522567070001,11.776027736000088],[98.05241946700008,11.749416408000144]]],[[[97.66667728000002,11.863430080000157],[97.67188561300011,11.837713934000107],[97.66773522200016,11.838283596000082],[97.65088951900006,11.84454987200013],[97.64283287900011,11.86766185100008],[97.64356530000005,11.880357164000145],[97.66439863400015,11.905951239000116],[97.67448978000013,11.897447007000096],[97.67847741000017,11.8878848330001],[97.67628014400012,11.877834377000127],[97.66822350400017,11.868109442000074],[97.66667728000002,11.863430080000157]]],[[[98.28419030000012,11.865464585000096],[98.2736922540001,11.85333893400009],[98.26148522200018,11.853908596000153],[98.25416100400017,11.858140367000175],[98.25391686300011,11.883856512000136],[98.25652103000013,11.902533270000106],[98.26539147200006,11.908514716000127],[98.28484134200008,11.896063544000114],[98.28907311300004,11.882391669000171],[98.28419030000012,11.865464585000096]]],[[[98.26156660200016,11.926174221000139],[98.25375410200016,11.923081773000149],[98.24610436300011,11.92544179900011],[98.22706139400006,11.953924872000115],[98.23585045700011,11.968329169000171],[98.25220787900011,11.9747582050001],[98.26091556100019,11.97113678600013],[98.26270592500006,11.961655992000132],[98.26872806100017,11.942287502000111],[98.2677514980002,11.93390534100014],[98.26156660200016,11.926174221000139]]],[[[98.51986738400008,12.007025458000129],[98.54151451900006,11.995306708000143],[98.55958092500006,12.000799872000158],[98.57471764400006,11.992987372000172],[98.60352623800011,11.967433986000088],[98.642344597,11.957505601000094],[98.65919030000012,11.948675848000136],[98.65821373800006,11.93390534100014],[98.65821373800006,11.940130927000112],[98.63135826900006,11.932114976000063],[98.57260175900015,11.931626695000176],[98.55201256600006,11.923325914000188],[98.5356551440001,11.908880927000139],[98.51587975400011,11.895900783000144],[98.495778842,11.88849518400015],[98.47803795700005,11.890936591000097],[98.46338951900006,11.920803127000083],[98.45972741000016,11.933661200000103],[98.45899498800006,11.947577216000083],[98.46168053500006,11.955511786000145],[98.47120201900005,11.970282294000128],[98.47315514400006,11.97797272300015],[98.4709578790001,11.988104559000105],[98.46583092500006,11.992661851000065],[98.45915774800014,11.996161200000145],[98.44825280000006,12.00771719000008],[98.4436955090001,12.01068756700009],[98.4402775400001,12.015366929000095],[98.43913821700008,12.025783596000096],[98.43913821700008,12.056789455000114],[98.43116295700011,12.08763255400008],[98.43091881600006,12.10065338700015],[98.43913821700008,12.112005927000125],[98.44556725400017,12.101385809000178],[98.47315514400006,12.077297268000066],[98.49366295700004,12.049302476000136],[98.50953209700006,12.016791083000072],[98.51986738400008,12.007025458000129]]],[[[98.09815514400006,12.199286200000131],[98.09644616000017,12.18716054900014],[98.1058048840001,12.192206122000172],[98.11947675900015,12.197577216000127],[98.13184655000006,12.198553778000104],[98.13746178500017,12.190578518000152],[98.14014733200005,12.148382880000113],[98.13746178500017,12.138739325000143],[98.12964928500017,12.153713283000087],[98.11670983200004,12.16547272300015],[98.10035241000004,12.169012762000136],[98.08228600400011,12.159165757000125],[98.07667076900005,12.161932684000178],[98.07471764400006,12.163397528000132],[98.07309004000014,12.164943752000084],[98.05933678500006,12.187974351000065],[98.03939863400015,12.20734284100017],[98.03435306100002,12.221258856000148],[98.0371199880001,12.23940664300015],[98.0461531910001,12.262030341000111],[98.05909264400012,12.281398830000128],[98.07252037900011,12.28953685100005],[98.09180748800006,12.288641669000157],[98.1082462900001,12.284654039000173],[98.11947675900015,12.275580145000077],[98.12378991000006,12.259466864000103],[98.12330162900011,12.249660549000083],[98.11988366000006,12.230129299000096],[98.11695397199999,12.221258856000148],[98.11150149800008,12.213934637000136],[98.10425866000006,12.20734284100017],[98.09815514400006,12.199286200000131]]],[[[98.09644616000017,12.365301825000117],[98.08773847700016,12.360052802000125],[98.08155358200011,12.360581773000192],[98.07471764400006,12.363511460000126],[98.0652775400001,12.365301825000117],[98.06446373800006,12.359808661000088],[98.04802493600008,12.330511786000073],[98.0395613940001,12.322495835000126],[98.02947024800008,12.315985419000128],[98.01889082100008,12.311672268000123],[98.01050866000006,12.310044664000186],[98.00831139400005,12.304388739000117],[98.0002547540001,12.269029039000188],[97.99097741000017,12.286525783000144],[97.98658287900017,12.28953685100005],[97.98243248800006,12.306382554000052],[97.96949303500006,12.308050848000063],[97.95508873800004,12.305487372000158],[97.94556725400015,12.310044664000186],[97.94841556100013,12.323797919000114],[97.9609481130001,12.334377346000082],[97.9710392590001,12.344875393000137],[97.96607506600006,12.358465887000094],[97.95297285200016,12.348944403000102],[97.94898522200018,12.344305731000162],[97.94556725400015,12.337958075000145],[97.93816165500019,12.337958075000145],[97.93995201900005,12.366278387000179],[97.95460045700011,12.37775299700013],[97.97575931100019,12.383856512000122],[98.00700931100008,12.40159739800012],[98.01783287900017,12.40265534100017],[98.02344811300006,12.39874909100017],[98.01758873800011,12.389146226000094],[98.00782311300004,12.380113023000177],[98.00359134200006,12.373724677000068],[98.00538170700004,12.367336330000143],[98.01392662900015,12.358465887000094],[98.027110222,12.361029364000103],[98.03248131600017,12.360541083000115],[98.04175866,12.358465887000094],[98.0413517590001,12.369126695000132],[98.042246941,12.380275783000144],[98.04558353000002,12.38906484600011],[98.06364993600008,12.397772528000104],[98.06934655000012,12.409369208000115],[98.07252037900011,12.421210028000175],[98.075938347,12.42739492400014],[98.090586785,12.422308661000116],[98.10124759200008,12.404771226000078],[98.10450280000012,12.38304271000011],[98.09644616000017,12.365301825000117]]],[[[98.50855553500017,12.410305080000098],[98.49561608200005,12.405829169000128],[98.48210696700019,12.41058991100013],[98.47429446700014,12.4249942080001],[98.4885360040001,12.493312893000095],[98.4998478520001,12.513088283000116],[98.51417076900005,12.49559153900016],[98.51685631600017,12.479437567000105],[98.51417076900005,12.423651434000107],[98.50855553500017,12.410305080000098]]],[[[98.28288821700019,12.503851630000142],[98.26050866000011,12.495266018000137],[98.23682701900006,12.506089585000124],[98.23023522200012,12.516994533000116],[98.229746941,12.527411200000103],[98.23365319099999,12.553656317000117],[98.23682701900006,12.556870835000083],[98.24390709700006,12.557806708000072],[98.25082441500015,12.560207424000112],[98.25416100400017,12.567613023000192],[98.25684655000006,12.574204820000162],[98.26246178500004,12.568793036000116],[98.267344597,12.560248114000101],[98.2677514980002,12.55707428600013],[98.28988691500008,12.526312567000147],[98.28288821700019,12.503851630000142]]],[[[97.86182701900006,12.559800523000192],[97.8499455090001,12.537258205000114],[97.84961998800006,12.541815497000158],[97.8478296230002,12.54441966400016],[97.84522545700011,12.546779690000122],[97.84253991,12.550238348000121],[97.84083092500012,12.556870835000083],[97.83904056100002,12.558010158000116],[97.83545983200005,12.558050848000107],[97.82943769600016,12.55707428600013],[97.82943769600016,12.564520575000117],[97.83399498800011,12.570746161000073],[97.83106530000005,12.574204820000162],[97.82569420700011,12.578599351000065],[97.82276451900012,12.5874697940001],[97.8269962900001,12.590725002000141],[97.8362736340001,12.595404364000073],[97.84571373800006,12.59796784100017],[97.8499455090001,12.59463125200014],[97.85401451900006,12.578192450000143],[97.86052493600008,12.57001373900013],[97.86182701900006,12.559800523000192]]],[[[98.40121504000008,12.571682033000144],[98.42546634200014,12.529730536000073],[98.42920983200005,12.555487372000101],[98.43816165500017,12.587388414000117],[98.450938347,12.60398997600008],[98.46631920700005,12.583726304000066],[98.47071373800006,12.555975653000175],[98.47022545700005,12.517523505000085],[98.46534264400006,12.480658270000118],[98.4558211600001,12.457749742000118],[98.39128665500002,12.361517645000092],[98.3499455090001,12.325913804000123],[98.30201256600017,12.337958075000145],[98.31128991000006,12.359767971000094],[98.31560306100002,12.365301825000117],[98.31902103000007,12.386379299000138],[98.33301842500012,12.42739492400014],[98.3361108730002,12.450913804000109],[98.3342391290001,12.460028387000179],[98.32553144600016,12.474066473000134],[98.32113691500014,12.48704661700013],[98.3165796230002,12.490423895000147],[98.31560306100002,12.49559153900016],[98.31950931100002,12.501450914000102],[98.327403191,12.506740627000083],[98.3338322270001,12.512355861000088],[98.33301842500012,12.519232489000089],[98.31413821700008,12.553290106000105],[98.3027449880001,12.598578192000131],[98.30201256600017,12.646307684000178],[98.31560306100002,12.68744538000007],[98.33301842500012,12.671210028000118],[98.387461785,12.65766022300015],[98.40552819100006,12.63898346600017],[98.40552819100006,12.630031643000152],[98.39812259200002,12.5874697940001],[98.40121504000008,12.571682033000144]]],[[[97.86353600400017,12.766831773000177],[97.8525496750001,12.766262111000117],[97.83692467500012,12.772447007000096],[97.8352970710001,12.792792059000178],[97.84180748800011,12.80581289300008],[97.85279381600006,12.806545315000108],[97.86459394600008,12.790228583000086],[97.8680119150001,12.774807033000144],[97.86353600400017,12.766831773000177]]],[[[98.29566491000006,13.08466217700014],[98.30347741000006,13.082993882000125],[98.31039472700016,13.088039455000157],[98.31853274800008,13.091376044000171],[98.32984459700006,13.08466217700014],[98.33643639400012,13.073879299000124],[98.3342391290001,13.067124742000189],[98.32300866000004,13.05731842700007],[98.3165796230002,13.048814195000134],[98.31104576900012,13.04482656500015],[98.30632571700019,13.04010651200015],[98.30201256600017,13.029445705000112],[98.300547722,13.019964911000116],[98.30201256600017,12.988470770000104],[98.31332441500015,12.945949611000131],[98.31430097700016,12.925523179000066],[98.30201256600017,12.913316148000177],[98.30128014400006,12.933539130000113],[98.28785241000017,12.957342841000099],[98.28825931100008,12.974798895000063],[98.2810978520001,12.994126695000176],[98.2677514980002,13.05731842700007],[98.24512780000006,13.118719794000157],[98.2404891290001,13.139308986000088],[98.23902428500017,13.158758856000176],[98.24203535200016,13.20392487200013],[98.24732506600004,13.215033270000076],[98.26148522200018,13.214341539000129],[98.26880944100017,13.198919989000103],[98.2889103520001,13.098700262000179],[98.29566491000006,13.08466217700014]]],[[[97.925059441,13.783596096000096],[97.917735222,13.783596096000096],[97.91504967500006,13.800116278000159],[97.9143172540001,13.828436591000111],[97.91871178500011,13.853257554000066],[97.9318953790001,13.85927969000008],[97.93816165500019,13.851792710000112],[97.93238366000006,13.840399481000132],[97.92847741000006,13.821112372000101],[97.925059441,13.783596096000096]]],[[[93.39478600400011,14.076361395000134],[93.37484785200016,14.06468333500014],[93.38331139400012,14.138373114000087],[93.38599694100017,14.150864976000092],[93.39031009200008,14.15375397300012],[93.39600670700015,14.140448309000105],[93.40015709700016,14.09564850500007],[93.39478600400011,14.076361395000134]]],[[[93.7044376960001,14.870998440000134],[93.69044030000012,14.858099677000125],[93.67579186300011,14.859198309000162],[93.68669681100019,14.872056382000096],[93.69361412900015,14.888861395000104],[93.703868035,14.904445705000098],[93.72437584700005,14.913804429000121],[93.72437584700005,14.907619533000156],[93.71615644600016,14.890082098000121],[93.7044376960001,14.870998440000134]]],[[[97.66911868600006,15.517401434000064],[97.66439863400015,15.504095770000122],[97.65748131600004,15.523871161000145],[97.65088951900006,15.592230536000116],[97.65626061300004,15.586330471000096],[97.66016686300011,15.580389716000168],[97.66285241,15.573675848000121],[97.66439863400015,15.565578518],[97.67164147200018,15.549994208],[97.67237389400012,15.533351955000155],[97.66911868600006,15.517401434000064]]],[[[94.80372155000006,15.796576239000146],[94.77784264400006,15.79157135600009],[94.7478947270001,15.799465236000072],[94.7248641290001,15.811957098000091],[94.7248641290001,15.818793036],[94.74480228000013,15.832709052000084],[94.75928795700005,15.852240302000055],[94.78003991000006,15.893947658000016],[94.80681399800007,15.931097723],[94.82325280000006,15.945786851000108],[94.82797285200016,15.932155666000154],[94.82797285200016,15.932033596000094],[94.82984459700006,15.916449286],[94.83936608200005,15.890082098],[94.841563347,15.877427476000136],[94.83741295700005,15.864406643000123],[94.81910240999999,15.834702867000102],[94.80372155000006,15.796576239000146]]],[[[94.41016686300006,15.839260158000158],[94.4026798840001,15.839260158000158],[94.4026798840001,15.846747137000035],[94.417246941,15.87177155200014],[94.40919030000005,15.907456773000161],[94.38233483200011,15.969631252000099],[94.38965905000012,16.000921942000147],[94.417246941,16.0184593770001],[94.45297285200016,16.033880927000112],[94.48536217500006,16.05898672100001],[94.49594160200009,16.075588283000073],[94.510996941,16.107652085000055],[94.518809441,16.120428778000086],[94.54932701900006,16.148993231000176],[94.61158287900011,16.221747137000037],[94.64283287900011,16.24551015800013],[94.66211998800004,16.221869208000115],[94.66749108200011,16.171942450000174],[94.6546330090001,16.121975002000127],[94.62964928500017,16.075181382000054],[94.57960045700005,16.013251044000082],[94.56959069100004,16.005194403000147],[94.55347741000017,15.997503973000121],[94.49903405000006,15.980169989000146],[94.48414147200006,15.971258856000118],[94.47803795700005,15.966131903000088],[94.47803795700005,15.958156643000152],[94.47925866000017,15.949042059000147],[94.47836347700016,15.942328192],[94.4682723320001,15.930161851000108],[94.44646243600008,15.912909247000115],[94.4367781910001,15.90070221600014],[94.44092858200005,15.885402736000072],[94.43311608200005,15.869614976000134],[94.41016686300006,15.839260158000158]]],[[[97.5713641810001,16.222693119000084],[97.54746101900011,16.199927595000087],[97.51685669700011,16.209823449000066],[97.51050866000016,16.254217841000028],[97.49927819100006,16.26951732000019],[97.45926940600006,16.30136220800007],[97.46924889400012,16.332709052000055],[97.4827580090001,16.34202708500011],[97.48487389400012,16.36391836100013],[97.48015384200019,16.389105536000116],[97.4726668630001,16.40843333500014],[97.46045983200005,16.42597077000009],[97.45476321700008,16.43691640800013],[97.45215905000006,16.449408270000063],[97.45582116,16.456203518000095],[97.46265709700005,16.461004950000174],[97.4661564460001,16.467027085000083],[97.45964603000002,16.477362372000087],[97.46998131600006,16.490464585000055],[97.486013217,16.50096263200011],[97.50407962300002,16.50800202],[97.52051842500006,16.510891018000123],[97.5618595710001,16.492377020000035],[97.58521569100017,16.48602936400009],[97.60629316500008,16.483547268000148],[97.60978629900009,16.464152839000022],[97.6106063160001,16.446234442],[97.58936608200011,16.41526927300005],[97.58855228000019,16.39984772300012],[97.59131920700005,16.361151434000178],[97.58936608200011,16.34015534100014],[97.58383222700009,16.329046942000033],[97.57740319100017,16.320949611000074],[97.57178795700005,16.312079169000057],[97.56885826900006,16.29857005400008],[97.57016035200016,16.29002513200014],[97.56635441500012,16.25371965300012],[97.5713641810001,16.222693119000084]]],[[[93.6836043630001,18.86896393400012],[93.70753014400006,18.86823151200018],[93.74244225400017,18.87230052300005],[93.74952233200023,18.865179755],[93.75163821700008,18.840887762000122],[93.74586022200018,18.810980536000116],[93.745371941,18.799994208000083],[93.74805748800004,18.78790924700017],[93.75709069100016,18.76520416900003],[93.75904381600006,18.75556061400006],[93.75603274800002,18.731512762000037],[93.74683678500016,18.708807684000178],[93.73194420700011,18.689683335000026],[93.7112736340001,18.676459052000055],[93.69312584700018,18.673773505],[93.66773522200018,18.674872137000037],[93.64527428500017,18.679348049000012],[93.63550866000004,18.686672268],[93.6303817070001,18.699204820000105],[93.61850019600016,18.711493231000148],[93.59400475400011,18.731024481000034],[93.49781334700018,18.840887762000122],[93.49317467500006,18.84931061400006],[93.48414147200005,18.874986070000105],[93.57715905000012,18.88190338700012],[93.59986412900015,18.890448309000035],[93.61109459700018,18.90525950700011],[93.62175540500013,18.91034577000012],[93.64177493600008,18.889349677],[93.66334069100016,18.87319570500013],[93.67302493600008,18.870510158000158],[93.6836043630001,18.86896393400012]]],[[[93.80307050900015,19.487372137000094],[93.81999759200002,19.471502997000172],[93.83659915500019,19.479396877000127],[93.85808353000002,19.48248932500003],[93.8802189460001,19.479193427],[93.8992619150001,19.46775950700014],[93.917735222,19.454006252000042],[93.95622806100019,19.4325218770001],[93.97071373800006,19.416937567],[93.97364342500005,19.402736721000096],[93.97234134200008,19.38182200700011],[93.96583092500006,19.363023179],[93.95394941500015,19.354885158000158],[93.94019616,19.348618882000107],[93.91716556100008,19.318304755000113],[93.90088951900012,19.305405992000104],[93.89893639400006,19.303290106000087],[93.89551842500005,19.301174221000096],[93.88941491000017,19.299627997000144],[93.88355553500004,19.3014997420001],[93.8810327480002,19.306870835000083],[93.87916100400011,19.312201239000146],[93.87517337300008,19.31391022300015],[93.86280358200023,19.307766018000066],[93.86280358200023,19.29975006700012],[93.86638431100019,19.29108307500003],[93.86491946700002,19.282863674000126],[93.85694420700004,19.27887604400014],[93.84555097700009,19.278021552000055],[93.8235783210001,19.279120184000092],[93.8027449880001,19.276678778000147],[93.79688561300006,19.278509833000143],[93.78565514400006,19.286566473000065],[93.77377363400015,19.298773505000057],[93.74984785200016,19.333319403000147],[93.745371941,19.344916083000058],[93.74317467500012,19.355454820000134],[93.73340905000005,19.367865302000055],[93.73121178500017,19.37905508000007],[93.72999108200005,19.381740627000127],[93.72779381600017,19.38373444200009],[93.72535241000006,19.386867580000153],[93.72437584700005,19.392726955000015],[93.7267358730002,19.396673895],[93.73194420700011,19.396429755000057],[93.7366642590001,19.396958726000108],[93.7380477220001,19.40326569200006],[93.73047936300004,19.419256903000147],[93.71631920700021,19.427394924000065],[93.68336022200006,19.437445380000057],[93.66911868600008,19.446478583000058],[93.65894616,19.457505601000108],[93.64177493600008,19.492010809000035],[93.65219160200016,19.493312893000123],[93.65658613400014,19.49738190300009],[93.65552819100012,19.50409577000012],[93.64918053500017,19.51312897300012],[93.68816165500007,19.559475002000013],[93.69695071700019,19.56028880400011],[93.70492597700014,19.558294989],[93.72364342500012,19.556382554000137],[93.73121178500017,19.554103908000158],[93.7404891290001,19.54669830900015],[93.745371941,19.539211330000015],[93.74927819100012,19.53131745000003],[93.75538170700011,19.523016669000143],[93.80307050900015,19.487372137000094]]],[[[93.51832116000006,19.76194896000005],[93.51197350400011,19.745835679],[93.45679772200018,19.78876373900006],[93.440684441,19.81093984600004],[93.40674889400005,19.920477606000148],[93.40284264400006,19.953070380000113],[93.42204837300002,19.95136139500012],[93.44263756600017,19.938137111000074],[93.45337975400017,19.928452867000132],[93.46119225400017,19.919501044000086],[93.46412194100017,19.913478908000098],[93.4705509770001,19.905218817],[93.4847111340001,19.89716217700005],[93.49878991000016,19.887030341000113],[93.5052189460001,19.872219143000123],[93.50114993600002,19.825384833000086],[93.5052189460001,19.80731842700005],[93.51685631600017,19.777167059000035],[93.51832116000006,19.76194896000005]]],[[[93.02491295700023,19.82782623900003],[93.01856530000012,19.82782623900003],[93.01319420700023,19.846502997000087],[93.008555535,19.88987864800005],[93.001231316,19.906642971000068],[92.98747806100019,19.925197658000073],[92.92579186300004,20.033758856000148],[92.92237389400006,20.05060455900015],[92.91976972700016,20.05573151200015],[92.91431725400011,20.05963776200015],[92.90943444100004,20.065090236000017],[92.90870201900012,20.074855861000128],[92.91195722700016,20.08470286700016],[92.91684004000015,20.08893463700018],[92.9226994150001,20.087632554],[92.92920983200005,20.08104075700011],[92.94646243600019,20.07050202000015],[92.95289147200012,20.063055731000173],[92.95850670700011,20.054877020000063],[92.96257571700008,20.046087958],[92.96404056100013,20.03668854400017],[92.96753991,20.022202867000132],[93.01465905000012,19.905585028000115],[93.02198326900012,19.870184637000094],[93.02491295700023,19.82782623900003]]],[[[97.5899394130001,28.494695943000135],[97.61360721800006,28.48198354100019],[97.64109908100014,28.49836497000014],[97.67045129400012,28.511284079000163],[97.69959680200012,28.488029683000047],[97.74000777200008,28.382609762000087],[97.76532922400004,28.35243072500019],[97.79726525900004,28.343929952000092],[97.85907027200003,28.37012990300012],[97.89751753800007,28.355324605000174],[97.94474979700013,28.298842265000033],[97.97875288900016,28.28060048400009],[97.99291223200012,28.26892161100001],[97.99384240800005,28.252540182000146],[97.98485070800021,28.22422149700016],[97.99105188000013,28.214015401],[98.03135949800006,28.20833099400015],[98.04861942600016,28.19962351500008],[98.11500227600018,28.143888357000137],[98.11869266800008,28.140789897],[98.12696089700015,28.124279277000095],[98.12799442600011,28.105469056000103],[98.12251672400012,28.01544871000014],[98.11848596200011,27.994726461000095],[98.10711714700014,27.97307403600003],[98.11352502500009,27.961705221000145],[98.14897505700011,27.944548645000065],[98.16582157400009,27.92969167100013],[98.1772937420001,27.912922669000082],[98.17667362500006,27.89811737100014],[98.15672652200013,27.889203187000035],[98.14008671100012,27.878557841000045],[98.14577111900016,27.860729472000102],[98.16241092900005,27.842849427000044],[98.19662072800006,27.82318654400011],[98.20065148900008,27.813600565000097],[98.19848107900005,27.80044891400003],[98.19786096200019,27.780631002000135],[98.20209842900007,27.771251729000184],[98.20840295400014,27.76616160100009],[98.21150354000011,27.760322164000012],[98.20178837100016,27.736551005000152],[98.20437219300007,27.727300924000147],[98.23806522600007,27.680223694000162],[98.25439497900007,27.648132629000045],[98.27568566900007,27.57010121700013],[98.29470259600012,27.536614889000035],[98.3286023360001,27.522868957000114],[98.36394901500014,27.53217071600012],[98.3832760010001,27.555786845000128],[98.39288781700004,27.587154440000162],[98.39815881400014,27.619813945000047],[98.39743534300013,27.65681427],[98.40001916500015,27.67572784400012],[98.41025109900006,27.684254456000144],[98.42224003100007,27.680895487000143],[98.47453658000009,27.657176005000096],[98.49231327300012,27.64343007400005],[98.52218225200014,27.656297506000055],[98.54336958800015,27.642525737000096],[98.56435022000008,27.603535869000112],[98.57840620900018,27.59172780400011],[98.60455448400009,27.59273549400008],[98.61654341700014,27.598419902000117],[98.62584517500008,27.605551249000154],[98.6350435790001,27.611054789000075],[98.64723921700006,27.611726583000134],[98.65592085800003,27.60676564500001],[98.66573938000013,27.59707631500008],[98.67421431500011,27.58612091100018],[98.67927860500012,27.577335918000085],[98.6817590740001,27.55648447700004],[98.6711137290001,27.516151022000155],[98.66832320200008,27.475249126000065],[98.67442102100009,27.386598206000155],[98.67731490100007,27.376107890000025],[98.68372277900018,27.37362742200007],[98.6910608320002,27.373162334000128],[98.69736535700011,27.368924866000086],[98.70770064400013,27.33724721300017],[98.70418664600007,27.304174296000085],[98.68020878100005,27.23704661100014],[98.67359419800007,27.20790110300011],[98.67256066900009,27.17560333200005],[98.68268925000021,27.11007761700013],[98.69137089100009,27.09240427600004],[98.70273970500008,27.086823222000035],[98.71648563700009,27.082482402000053],[98.73136844900014,27.068788147000035],[98.7377763260001,27.048686015000058],[98.73167850700005,27.031064352000083],[98.72061975100021,27.013959452000122],[98.71266158100016,26.995149231000095],[98.73570927000006,26.907299296000062],[98.73632938600011,26.898255921],[98.73312544800015,26.887920634000082],[98.71865604700011,26.87267608700013],[98.71452193200015,26.86203074100014],[98.71813928200007,26.842497050000034],[98.74242720500015,26.810405986000106],[98.75038537600014,26.79200917600012],[98.74924849500022,26.771441956000118],[98.73436568300016,26.734286601000136],[98.731988567,26.713512675000104],[98.74645796800016,26.681059876000077],[98.74738814300011,26.672688293000093],[98.74676802600007,26.66442006400014],[98.7470780840001,26.655738424],[98.7506954350001,26.646126607],[98.75555301900013,26.62504262300014],[98.7485250240002,26.605974019000158],[98.72795780400006,26.572591045000095],[98.72113651600009,26.538898011000143],[98.71720910600013,26.408725077000085],[98.71348840300017,26.389449768000034],[98.70739058400014,26.37105295900012],[98.69767541500019,26.354051412000118],[98.65778120900004,26.3116250610001],[98.6495129800002,26.29059275300007],[98.64455204300006,26.271575827000035],[98.64217492700013,26.254522604000087],[98.64816939300007,26.244807434000123],[98.66821984900011,26.248218079000154],[98.67700484200006,26.239329733000048],[98.70149947100005,26.19116729800008],[98.70553023300012,26.17494089800006],[98.70025923700008,26.165329082000042],[98.69240441900016,26.159954732000088],[98.68651330600008,26.154115296],[98.68672001200011,26.133238017000124],[98.68082889800021,26.124969788000087],[98.64444869000013,26.097891337000036],[98.63080611200022,26.096909485000154],[98.62429488100017,26.108485006000095],[98.62574182200015,26.144348450000148],[98.61933394400009,26.145743714000115],[98.60217736800016,26.13995595300007],[98.56300663300013,26.131222636000174],[98.55019087800021,26.120783997000146],[98.54553999900004,26.105642803000038],[98.54729699800005,26.08827952100002],[98.55380822800012,26.07107126900003],[98.57261845000012,26.0355695600001],[98.57716597500016,26.017327780000027],[98.57540897700008,25.995106913000097],[98.58243697200007,25.982291159000013],[98.5924621990001,25.980740865000186],[98.60424442600012,25.98249786400008],[98.61623335800007,25.979397278000032],[98.62532841000015,25.969992168000157],[98.65809126800016,25.925033671000065],[98.66728967300006,25.905758362000128],[98.67235396300012,25.90183095400006],[98.68465295400009,25.897593486000105],[98.68982059800007,25.891599020000072],[98.69240441900016,25.878989971000134],[98.69023400900006,25.8655540970001],[98.68485966,25.853100078000026],[98.67783166500013,25.843281555000047],[98.62605188000006,25.806487936000153],[98.61003218700009,25.800596822000145],[98.60031701600016,25.801733704000142],[98.59091190600012,25.806384583000025],[98.56238651600015,25.81635813500013],[98.53954553200006,25.83372141500014],[98.52683313100007,25.83878570600002],[98.50946984900004,25.838062236000113],[98.49810103400009,25.830724183000044],[98.47453658000009,25.805764465000053],[98.46130741400006,25.794654033000043],[98.45262577300011,25.77796254499999],[98.43929325400009,25.743597717000156],[98.43226525900009,25.736104635000018],[98.42472050000006,25.730833639000096],[98.41872603400012,25.724219056],[98.41665897600015,25.712591859000142],[98.41634891800005,25.70018951400006],[98.41324833200022,25.692076314000143],[98.37521447800006,25.649288229000135],[98.36984012900021,25.636782532000137],[98.35723107900012,25.592754212000088],[98.34710249800005,25.57781972300002],[98.33263309700013,25.56696767200016],[98.3120658770001,25.55745920800008],[98.28943160000009,25.550379538000143],[98.27661584500018,25.552446594000017],[98.24716027900008,25.579163310000084],[98.2323808190001,25.58655304000008],[98.15021529100014,25.61306305],[98.14008671100012,25.611461080000154],[98.13843306500016,25.59895538400015],[98.1393632410001,25.55022450800011],[98.1341955980001,25.53461822500016],[98.12303348900015,25.52221588200011],[98.10463667800016,25.506764628000113],[98.09977909300002,25.500046692000083],[98.09946903500006,25.493328756000054],[98.10474003100009,25.466973775],[98.1088741460002,25.458240459000038],[98.11197473100006,25.44847361300016],[98.1102177330001,25.410439759000138],[98.11207808500008,25.39622873899999],[98.10835738100016,25.38889068600018],[98.08996057100009,25.38594512900009],[98.07569787600019,25.376074932],[98.06257206300015,25.354319153000077],[98.04489872300022,25.31194447900016],[98.03352990700013,25.30129913400016],[97.99239546700007,25.282488912000176],[97.97627242100005,25.27225697900009],[97.93079716000013,25.218513489000188],[97.90991988100004,25.207558085000116],[97.88893925000016,25.205646057000095],[97.87881066900009,25.213552551000035],[97.87178267400012,25.22766021700006],[97.86031050700008,25.244093323000055],[97.82362023900012,25.261611633000097],[97.80098596300016,25.237633769000084],[97.77700809800014,25.158620504000012],[97.75406376200013,25.113558655000176],[97.73752730300012,25.090510967000014],[97.72161096200009,25.079271342000155],[97.70362756400013,25.07392283100002],[97.69959680200012,25.065008647000084],[97.70517785700022,25.02883514400007],[97.70331750500011,24.960415548000142],[97.70827844300018,24.92729095500006],[97.72409143100016,24.897215272],[97.7609884030002,24.870291850000072],[97.77297733600008,24.854685568000136],[97.76522587100007,24.8346609500001],[97.74848270700008,24.826470235000055],[97.72657190000015,24.82628936800002],[97.6859542240002,24.833524068000187],[97.66394006400006,24.82977752700016],[97.64254602100011,24.81678090400014],[97.60399540200015,24.786446839000106],[97.53619592300012,24.745079854000053],[97.53609257000019,24.74502817800014],[97.53278527800008,24.723324077000044],[97.53857303900004,24.5972594200001],[97.51387170400007,24.461686299000135],[97.51325158700008,24.438586935000085],[97.51955611200012,24.43078379400005],[97.60068811000022,24.441920064],[97.62435591600014,24.44228179900007],[97.63985884600018,24.439284567000172],[97.64730025200012,24.432334086000182],[97.65226119000008,24.422722270000165],[97.65546512900013,24.412076925000076],[97.65732548000013,24.40200002000013],[97.66259647700015,24.390062765],[97.68099328600007,24.37776377400014],[97.68833134000008,24.36771270800004],[97.6895715740001,24.346473694000153],[97.67427535100013,24.34084096300002],[97.6536047770002,24.338722229000055],[97.63820520100013,24.328102722000054],[97.64450972500006,24.302393698000074],[97.71840702300014,24.277666524000054],[97.72409143100016,24.241518860000138],[97.71851037600007,24.233974101000072],[97.71117232300017,24.228470561000094],[97.70466109300011,24.221726786000048],[97.70156050600016,24.21092641200012],[97.70455774000006,24.199247538000137],[97.71871708200008,24.18154836100014],[97.72305790200019,24.171264751000038],[97.72006066900005,24.147441915000073],[97.70765832500008,24.12529856400006],[97.51645552600016,23.94282908100008],[97.53299198400006,23.923708802000178],[97.57267948400013,23.907559916000096],[97.60988651500006,23.883142802000165],[97.61546757000015,23.875132955000183],[97.61970503700009,23.86598622600009],[97.62466597500006,23.846710918000056],[97.637068319,23.863557435000033],[97.64734483100007,23.868524415000067],[97.65567183400016,23.872549133000074],[97.67696252500016,23.878698629000056],[97.69680627400007,23.88712188700005],[97.74817264900011,23.934069926000106],[97.76780969300015,23.94647227000017],[97.78951379400016,23.953138530000086],[97.80408654800013,23.95450795500015],[97.81783247900015,23.958151144000126],[97.83633264200009,23.97176788300014],[97.8766402590002,24.01440094000013],[97.88997277800016,24.022617493000055],[98.1050500900001,24.101527405000084],[98.18153120900016,24.118658142000143],[98.21915165200006,24.117366231000105],[98.29325565600013,24.10013214100003],[98.33066939300008,24.09948618600005],[98.34730920500007,24.104938049000122],[98.37872847500014,24.122404684000074],[98.3955749920001,24.128063253],[98.43495243300012,24.13025950100011],[98.47453658000009,24.127830709000037],[98.50326867700008,24.121267802000077],[98.54305953000019,24.09395680700014],[98.57024133400009,24.08209706600003],[98.58522749900007,24.075715027000072],[98.59711307800009,24.083078919000073],[98.61251265500007,24.087548930000093],[98.64041792900011,24.1007522580001],[98.6817590740001,24.10687591600005],[98.71617557800012,24.121345317000177],[98.81808150200013,24.12896759100006],[98.8552885340001,24.13896698000015],[98.86572717300005,24.145684917],[98.86696740800019,24.143256124000132],[98.87347863800008,24.114498190000017],[98.85621871000008,24.08380238799999],[98.76557824800014,24.027061666000165],[98.7167956950001,23.988407695000074],[98.69922570900022,23.98156056800009],[98.67989872200005,23.976263733000067],[98.66325891200015,23.969545797000038],[98.65881473800002,23.961122539000044],[98.66573938000013,23.953216045000104],[98.67452437400013,23.936886292000068],[98.67297408100009,23.928308004000044],[98.66480920400008,23.903374125000155],[98.6641890870001,23.890377502000135],[98.67142378700007,23.816738587000103],[98.66832320200008,23.80870290200012],[98.66356897000006,23.803070171000012],[98.66367232300014,23.796946513000037],[98.67566125500011,23.78738637300013],[98.68496301300014,23.784802551000137],[98.70832076000008,23.784699198000013],[98.73839644400007,23.775552470000132],[98.77787723800012,23.769299621000027],[98.79317346200004,23.75847340900019],[98.79906457500006,23.743228862000034],[98.80030481000009,23.692715149000108],[98.80795292200017,23.67579111800002],[98.84960412600017,23.614735413000133],[98.85601200400012,23.61000702000014],[98.85735559100007,23.604348450000103],[98.85022424400013,23.59062835700008],[98.84329960100014,23.584013774000184],[98.79627404800007,23.557917175000096],[98.78438846900016,23.547039287000032],[98.7808744710002,23.532854106000073],[98.79999475100007,23.48073842400011],[98.80981327300017,23.47409800200002],[98.83007043500017,23.480014954000023],[98.84888065700008,23.480402527000038],[98.86397017400004,23.46660491900009],[98.87554569500006,23.446425273],[98.88960168400016,23.406789449000044],[98.8922888600001,23.38689402300004],[98.89011844900008,23.367902934000156],[98.88185022000002,23.349686992000116],[98.87378869600016,23.34457102500012],[98.86210982300005,23.34059194000004],[98.85322147600007,23.33498504700013],[98.85342818200009,23.324882304000155],[98.86045617700015,23.322375997],[98.89652632700015,23.32328033500015],[98.91068566900017,23.29759714800015],[98.86014611800013,23.21227935800009],[98.85900923700015,23.17938730900015],[98.93342330000014,23.17215260800016],[98.97073368400018,23.162204895000073],[98.9903707280001,23.160034485],[99.0093876550001,23.162153218000142],[99.0264408780001,23.16044789699999],[99.03315881300014,23.14641774500008],[99.03925663300012,23.127142436000057],[99.05506962100011,23.109598287],[99.07491337100012,23.101665955000115],[99.09217329900011,23.101510926000074],[99.13000044800017,23.106239319000068],[99.13868208900013,23.105205790000085],[99.1640035400002,23.097686870000146],[99.17867964700011,23.096420797000107],[99.18271040800019,23.095206401000084],[99.18488081900009,23.094844666000157],[99.19418257700008,23.09577484200004],[99.19935022000013,23.09226084400008],[99.19966027900008,23.073838196000068],[99.20214074800016,23.06727528900008],[99.20958215400017,23.061539206000035],[99.2166101490001,23.05737925200019],[99.22487837700007,23.05688832700015],[99.23614384000021,23.06231435200014],[99.2574345290001,23.079212545000033],[99.2667362880002,23.083863424000086],[99.28482303900014,23.088152568000154],[99.29402144400015,23.09678253200009],[99.30218632100016,23.112595520000085],[99.31407189900007,23.12647064200017],[99.33381229700015,23.12962290400013],[99.35096887200021,23.11926178000003],[99.38104455600009,23.081641338000097],[99.4032654210001,23.06833465600006],[99.47819624900009,23.065750834000156],[99.49307906100009,23.05737925200019],[99.49504276500014,23.043478292000103],[99.49163212100021,23.02820790600016],[99.49039188700006,23.012007345000153],[99.49876346900007,22.995160828000095],[99.5346269120001,22.949323832000132],[99.53803755700014,22.926431173000122],[99.51529992700013,22.90880951000004],[99.48450077400015,22.910256450000034],[99.42993046000007,22.936740622000016],[99.41339400300015,22.930746155000076],[99.41122359200008,22.91924814900007],[99.41690800000012,22.874341330000064],[99.41442753200013,22.856900533000115],[99.40357548100009,22.84106170700012],[99.37887414600019,22.81323394800016],[99.35903039600012,22.774890035000126],[99.35065881400013,22.768146261000094],[99.33846317600009,22.76491648400004],[99.32719771300006,22.760498149000128],[99.31696578000017,22.754116109],[99.3079740800001,22.745176087000075],[99.3078707280001,22.719596252000102],[99.35499963400011,22.608543600000058],[99.35737675000016,22.587097881000105],[99.34704146400006,22.55335317000005],[99.34414758300012,22.53325103800007],[99.34662805200006,22.523070781000015],[99.35634322100006,22.506172587000133],[99.35779016200016,22.49547556600011],[99.35344934100007,22.484106751000027],[99.34507775900008,22.47284128800008],[99.28275598100016,22.411914775000024],[99.24306848200008,22.393156230000116],[99.23738407400006,22.380133769000096],[99.24058801300012,22.372950745000036],[99.2463757730001,22.36592275000011],[99.24833947800012,22.353675435000085],[99.24368859900007,22.34122141600001],[99.22570520000008,22.321222637000076],[99.21836714700007,22.310008851000035],[99.20617150900009,22.261329651000025],[99.19935022000013,22.245258281000034],[99.16638065600014,22.204640605000108],[99.15935266100014,22.184693502000087],[99.1750622970002,22.168673808000122],[99.14446984900009,22.15353261300011],[99.16638065600014,22.132086894000096],[99.21226932800012,22.112449849000043],[99.25288700400009,22.102786357000028],[99.32998824100011,22.09555165600007],[99.3649215090002,22.098858948000057],[99.42496952300021,22.122423401000063],[99.43861210200012,22.124232076000155],[99.49039188700006,22.10433665000015],[99.50506799400009,22.10335479800007],[99.53896773300019,22.106713766],[99.63353560400017,22.084751282000024],[99.64221724500013,22.0799453740001],[99.65007206200006,22.071935527000146],[99.65927046800007,22.05457224500013],[99.66381799300021,22.04873280900013],[99.68386844900007,22.039017639000104],[99.69379032400016,22.046924133000132],[99.70381555200018,22.061238505000134],[99.72365930200007,22.070591940000085],[99.73916223200008,22.06676788400013],[99.79988204000009,22.037467347000174],[99.80747847600004,22.030956116000095],[99.81342126500007,22.022997946000046],[99.8210177010002,22.017778626000123],[99.83367842700008,22.019483948000083],[99.84173995000006,22.027080384000055],[99.84230839000011,22.047027486000086],[99.84783776900011,22.05503733300004],[99.86685469600016,22.057879537000034],[99.9424056400002,22.045528869000165],[99.93491255700016,22.03250640900005],[99.93434411600012,22.018863831000132],[99.93982181800018,22.005893046],[99.95046716400012,21.99535105400004],[99.96566003400014,21.96300160800014],[99.95527307100011,21.924554342000093],[99.92018477400009,21.85200063100008],[99.91796268700008,21.829159648000157],[99.92209680200008,21.812261455000097],[99.93920170100014,21.77701812800002],[99.95026045800014,21.721155904000128],[99.96069909700006,21.70477447500018],[99.99671757100006,21.686119283000107],[100.082345419,21.684465638000162],[100.1205343020001,21.673665263000128],[100.13515873200018,21.66234812400016],[100.14280684400013,21.654906718000134],[100.14632084200011,21.649222310000184],[100.14373702000009,21.64002390600008],[100.13619226100016,21.636819967000022],[100.12611535700009,21.634856262000184],[100.11572839400012,21.629481914000124],[100.10394616700009,21.61563262900016],[100.09485111500013,21.598837789000086],[100.08864994300015,21.581836243000065],[100.08560103400012,21.567573548000027],[100.08606612200006,21.55093373699999],[100.0899935300001,21.52891957700011],[100.0972799080001,21.50830068],[100.10777022300013,21.49553660100004],[100.12833744300022,21.482359110000132],[100.1624955650001,21.436367086000146],[100.1871452230001,21.42789215100005],[100.1978939210002,21.4332148240001],[100.2302433680002,21.456830953000022],[100.2440926510001,21.46453074200009],[100.27520186400014,21.47517608700009],[100.2895162350002,21.483134258000163],[100.30228031400006,21.495278219000067],[100.30228031400006,21.495329896000086],[100.30248702000014,21.49548492400011],[100.30248702000014,21.49553660100004],[100.31463098200007,21.512951559000058],[100.32651656100009,21.524268698000057],[100.34196781400007,21.530366517000104],[100.36325850400007,21.531761780000082],[100.38367069500012,21.527834371000107],[100.39912194900009,21.518894348000075],[100.4293009850002,21.495381572],[100.43426192300015,21.478380026000153],[100.44346032800016,21.46349721300011],[100.45668949400013,21.455022278000044],[100.47425948100013,21.456830953000022],[100.497100464,21.461791890000153],[100.54598636900019,21.45300689700018],[100.5718245850002,21.455073955000145],[100.6217440180001,21.469078268000047],[100.64577356000021,21.479878642000173],[100.66132816600005,21.495278219000067],[100.66132816600005,21.495329896000086],[100.6615348710001,21.49548492400011],[100.6615348710001,21.49553660100004],[100.7039612230002,21.516413879000094],[100.75661950700012,21.569847310000043],[100.7970304770001,21.626122946000024],[100.83490930200011,21.657542217000138],[100.87749068200017,21.677334290000132],[100.97428064000003,21.70415435800011],[100.9927808030001,21.71144073500001],[101.0429069420002,21.74539215200012],[101.0553092860001,21.754538880000023],[101.06869348200021,21.76203196200005],[101.08280114800007,21.76673451800012],[101.11887129800007,21.759809876000034],[101.12486576400006,21.74415191700008],[101.12765629100014,21.695162659000076],[101.1363379310001,21.68472401900014],[101.14925704000021,21.676765849000063],[101.16145267800012,21.65836903899999],[101.16884240800012,21.637853496],[101.16672367300006,21.623280742000034],[101.1738550210001,21.611911926000133],[101.16765384900012,21.600181376000148],[101.15773197500013,21.586228740000152],[101.15421797700017,21.568038635000118],[101.15902388500015,21.55269073500007],[101.16114261900005,21.534707336000068],[101.15711185700016,21.519669495000088],[101.14315922100016,21.513416647],[101.0034261480001,21.40598134400001],[100.9099434820001,21.360092672000047],[100.8960425220001,21.35575185100005],[100.86245284000009,21.323299052000138],[100.85134240700009,21.314772441000017],[100.81460046400016,21.300199687000074],[100.79196618700021,21.297357483],[100.77258752500008,21.304230448000155],[100.76499108900012,21.30919138600011],[100.75667118400004,21.31244700100008],[100.74773116100013,21.314255676000172],[100.73837772700008,21.314772441000017],[100.72540694200015,21.311671855000085],[100.7219962980001,21.3036620080001],[100.7225647380001,21.292706604000116],[100.72106612200017,21.280665996000053],[100.68938846900006,21.159329732000074],[100.63755700700008,21.069671122000116],[100.6255163980002,21.054116517000082],[100.60675785300012,21.043936259000034],[100.56185103400011,21.03509958900004],[100.54345422400009,21.02739980100013],[100.55575321500007,20.99985626300007],[100.55725183100017,20.992001445000128],[100.55198083600011,20.98533518500001],[100.53327396700016,20.973449605000084],[100.52924320500003,20.96843699200012],[100.52707279500007,20.94693959600006],[100.51782271400006,20.90632192000014],[100.51570397900016,20.886478170000043],[100.5342041430001,20.87392079700014],[100.62308760600015,20.888545227000023],[100.65212976100005,20.882757467000047],[100.65212976100005,20.87660797100007],[100.62660160300017,20.853508606],[100.60777574500004,20.839880933000174],[100.59890303500018,20.83345815100013],[100.56903405800008,20.817800191000075],[100.53668461100008,20.807671611000117],[100.51337854000022,20.806999817000143],[100.4708488360001,20.818265279000016],[100.38367069500012,20.83170115100016],[100.36480879700017,20.828187154000105],[100.35111454300014,20.815319723000115],[100.34196781400007,20.799506734000104],[100.3296688230001,20.786019185000058],[100.29018802900012,20.775012106000148],[100.27453007000005,20.761989645000124],[100.24874353000021,20.731965638000148],[100.22161340400007,20.709589743],[100.21132979400006,20.697394104000168],[100.20719567900007,20.680754293000135],[100.20233809500021,20.667938538000058],[100.1801689050001,20.638172913000076],[100.17293420500002,20.62210154200001],[100.17293420500002,20.609079082000065],[100.16006677300007,20.58267242400011],[100.1492663980001,20.548100891],[100.13665734900009,20.459217427000155],[100.12740726700017,20.427849834000043],[100.12523685800008,20.40640411400001],[100.12094771400021,20.388782450000022],[100.11112919100006,20.374829814000023],[100.09981205300008,20.3622207640001],[100.09707320200013,20.348371481000058],[100.09764164300006,20.334935608000094],[100.09929528800015,20.317804870000046],[100.05547367400013,20.344185690000085],[100.04761885600007,20.3552444460001],[100.04265791800006,20.364778748],[100.03614668800017,20.37312449200006],[100.02291752200009,20.380772603000036],[100.00844812100016,20.383588969000115],[99.99671757100006,20.383511454000185],[99.9859171960002,20.38702545200014],[99.97434167500009,20.400823059000103],[99.96472985900007,20.408626201000015],[99.96111250900017,20.417824606000025],[99.95878706900007,20.42748809800004],[99.95237919200011,20.436273092000036],[99.94204390500008,20.444024557000134],[99.93713464400015,20.4450064090001],[99.9324837650001,20.44273264600018],[99.87791345300016,20.43513621000001],[99.85569258600006,20.42805653900008],[99.83770918800016,20.41684275300004],[99.82634037300008,20.401391500000145],[99.81300785400006,20.365269673000128],[99.8040161540001,20.348991597000023],[99.787169637,20.33408294700014],[99.76959965100016,20.328424377000104],[99.72908532700015,20.328527731000136],[99.708414755,20.325013733],[99.67125940000014,20.31013092000013],[99.65193241400019,20.306823629000135],[99.64221724500013,20.30883901],[99.62702437400011,20.31876088500009],[99.61803267400009,20.32237823500016],[99.60759403500006,20.323153382],[99.58930057800015,20.320776266000124],[99.57968876200006,20.321241354000065],[99.50289758300019,20.34521921800008],[99.45411503200015,20.377103577000142],[99.43995568900019,20.38216786700003],[99.42062870300006,20.37555328400013],[99.4296204020001,20.35868092900013],[99.46641402200007,20.32217153000012],[99.47499231000019,20.303723043],[99.48625777200007,20.24548370399999],[99.51891727700016,20.212178243000135],[99.5258419190002,20.196184387000088],[99.52057092300016,20.170966288000145],[99.51033898900019,20.153809713000083],[99.50873365500016,20.15280450400003],[99.49928023300012,20.146885071],[99.4874980060001,20.141252340000065],[99.47447554500016,20.12807485000009],[99.44140262900007,20.10161651599999],[99.32120324700011,20.066269837],[99.29567509000017,20.062497457000163],[99.27531457500007,20.072186788000106],[99.23645389800018,20.102727560000105],[99.21898726500015,20.11045318700009],[99.17774947100006,20.12179616300007],[99.1584224850001,20.123553162000135],[99.11749475100007,20.117791240000187],[99.07346643100018,20.101228943000095],[99.03646610500006,20.075158183000028],[99.01682906100021,20.041000061000133],[99.00587365800007,19.972347921000065],[99.00701053900016,19.96245188400009],[99.01279830000013,19.94423594200013],[99.01352176900009,19.934960022000112],[99.01093794800012,19.930205790000016],[99.0061837160001,19.924934795000084],[99.00142948400006,19.91788096100008],[98.99936242700008,19.907726542000105],[99.00266971900007,19.883593649000048],[99.0076306560002,19.864886780000077],[99.00876753700011,19.84592153000004],[99.0009127200001,19.82101348900015],[98.98768355400009,19.79936106400008],[98.97383426900014,19.788069764000014],[98.93507694500008,19.773471172000043],[98.89931685400009,19.748614808000085],[98.88371057200007,19.74546254500002],[98.86448693900009,19.77321278900017],[98.85187788900012,19.78403900100001],[98.83792525300012,19.793444112000156],[98.807849569,19.806544088000024],[98.74924849500022,19.763497620000024],[98.73012821500012,19.757296448000048],[98.6413481050001,19.744945781000084],[98.623778117,19.737504375000142],[98.61540653500006,19.729778748000072],[98.59835331300022,19.709082336000122],[98.59070520100013,19.704095561000187],[98.56827762900011,19.699987285000148],[98.54833052600011,19.692649231000175],[98.53799524000013,19.683890076000083],[98.53654830000012,19.67709462500015],[98.53262089000006,19.67585439000011],[98.51546431500017,19.683373312000143],[98.50512902900019,19.69151235000008],[98.49758426900021,19.700710754000067],[98.48879927600014,19.706705220000103],[98.47780068600017,19.705629272000166],[98.47453658000009,19.70530995700001],[98.43960331200017,19.687739970000123],[98.39443811100008,19.68634470600007],[98.3476192630001,19.690633851000126],[98.30731164500006,19.689987895000154],[98.26276656200011,19.66985992399999],[98.23754846200009,19.664692281000086],[98.21915165200006,19.676991272000024],[98.2166711830001,19.687455750000154],[98.21791141800006,19.707971293000057],[98.21326053900006,19.717763978],[98.20592248500006,19.721484681],[98.17202274600018,19.731561584000147],[98.13223189300005,19.76605560300011],[98.11135461500005,19.77714019800014],[98.08592981000017,19.773161112000068],[98.07290734900008,19.777295227000153],[98.0606083580001,19.793909200000186],[98.04562219200014,19.80762929300012],[98.02453820800011,19.80297841400015],[98.01792362400008,19.789387513000165],[98.00459110500017,19.72391347300008],[98.00562463400016,19.70564585400011],[98.01389286300011,19.669446513000153],[98.01358280500014,19.651747335000053],[98.0083118090001,19.63911244700013],[98.00014693200009,19.63629608200007],[97.99043176300015,19.636554464000042],[97.97947636000006,19.63332468600005],[97.97069136600007,19.62593495700004],[97.9561186120002,19.609372660000147],[97.948057089,19.602422181000165],[97.8858386640002,19.572811585000025],[97.86912302100015,19.570489968000132],[97.8486316330001,19.567643942000117],[97.839846639,19.555319113000067],[97.83891646300017,19.537103170000123],[97.84098352100014,19.517156067000187],[97.84429081300013,19.50452118000005],[97.84811486900017,19.499560242000097],[97.84873498500022,19.49397918699999],[97.84212040300022,19.479380595000023],[97.83354211500009,19.468709412000024],[97.80036584500006,19.440778300000044],[97.76708622200007,19.397525126000076],[97.7677063400001,19.390367941000036],[97.77514774600016,19.37106679300011],[97.77669803900007,19.361093242],[97.7831059170002,19.337089539000157],[97.7970585530002,19.318382671000094],[97.8061536060001,19.301096903000182],[97.7982987870001,19.281408183000124],[97.7886869710002,19.27773915600012],[97.77731815600012,19.278617655000076],[97.76801639800013,19.277119040000073],[97.76408899000015,19.266396179000154],[97.76967004500014,19.257275289000077],[97.79633508300012,19.236682231000184],[97.80522343000021,19.227354635000054],[97.8125614830001,19.20846689900013],[97.81514530400007,19.19056101500014],[97.81080448500015,19.11221954300008],[97.80408654800013,19.097956848000095],[97.78992720500017,19.08258310900011],[97.72781213400017,19.03708201100015],[97.71696008300015,19.018323466000155],[97.71044885300007,18.979902039000123],[97.70331750500011,18.964373271000014],[97.68905481000016,18.94974884100013],[97.66807417800005,18.93543446900004],[97.65784224500005,18.92571929899999],[97.66187300600009,18.91378204400014],[97.68440393100009,18.892491353000153],[97.70858850100015,18.87520558700008],[97.7191304940002,18.864637756000022],[97.7233679610001,18.851977030000153],[97.71944055200011,18.825880432000147],[97.72037072800006,18.817638041000023],[97.73266971900009,18.78050852500006],[97.73577030500014,18.762654318],[97.7362870690001,18.740588481000184],[97.74124800600012,18.703148906000123],[97.7526168210002,18.663435567000036],[97.75974816900006,18.6227920540001],[97.75178999900018,18.582484437000133],[97.74569218000013,18.57106394500012],[97.74279829900016,18.56925527000014],[97.73794071400013,18.57049550400008],[97.69029504400007,18.557886454000066],[97.63737837800008,18.559281718000037],[97.61794803900014,18.55315806100016],[97.5483915610001,18.509078064],[97.50953088400016,18.49127553300015],[97.4628153890001,18.492464091000087],[97.43811405500017,18.488123271000106],[97.42746871000006,18.489518535000073],[97.41661665900014,18.496029765000127],[97.41217248500013,18.50303192100013],[97.40938195800005,18.511351827],[97.38891809100019,18.542228496000106],[97.38013309800013,18.547757874000112],[97.3728988300002,18.548616618],[97.35140100100007,18.551168519000115],[97.35760217300017,18.53990305600017],[97.37909956900013,18.52078277600016],[97.39046838400012,18.501817525000106],[97.39460249900006,18.487089742000123],[97.41765018800012,18.441149394000135],[97.44307499200013,18.403348084000143],[97.44648563700011,18.381178894000058],[97.44679569500013,18.358312073000135],[97.4525834560001,18.33361073800002],[97.4665360920001,18.311441549000094],[97.48648319500009,18.292140401000054],[97.5080839440001,18.276559957000117],[97.52834110500007,18.265320333000073],[97.53764286300012,18.27258087200012],[97.54198368400009,18.2802289830001],[97.56058719900014,18.328262227000053],[97.56244755100008,18.33051015300016],[97.57381636600022,18.33309397400008],[97.62466597500006,18.313405253000113],[97.63758508300006,18.306325582000014],[97.64378625500015,18.29131357800013],[97.64326949100021,18.273020121000155],[97.63572473200006,18.257594707000166],[97.62073856600007,18.25108347600009],[97.61794803900014,18.24167836500014],[97.62900679600014,18.220852763000078],[97.6803731700002,18.152639872000137],[97.68430057800006,18.146102804000165],[97.68533410700016,18.14016001400016],[97.68533410700016,18.131607564000134],[97.68750451600013,18.119825338000123],[97.69680627400007,18.101583558000172],[97.69908003800016,18.090653992000014],[97.69804650900018,18.084659525000077],[97.6937056890001,18.07512522400016],[97.69277551300014,18.070112610000123],[97.69422245300015,18.061508484000072],[97.69773645000012,18.060733338000162],[97.70218062400014,18.06184438100017],[97.70641809100007,18.059286398000083],[97.72006066900005,18.05305938700009],[97.72212772600014,18.048925273000165],[97.72522831300007,18.036755473000156],[97.73980106600007,18.00293324800016],[97.74403853300007,17.997817282000156],[97.74724247300017,17.99249460900013],[97.75178999900018,17.980764058000048],[97.75406376200013,17.969033508000148],[97.75085982300007,17.96365916000009],[97.74755253100014,17.960920309000144],[97.72006066900005,17.943195293000045],[97.6918453370001,17.895601298000102],[97.68554081300007,17.880718486000077],[97.69908003800016,17.833331198000096],[97.67613570200015,17.83033396400016],[97.6839905200001,17.816536357000032],[97.69649621600016,17.806562806000116],[97.70652144400012,17.794728902000188],[97.71117232300017,17.781293030000043],[97.71685673100009,17.76976918600012],[97.74104130100008,17.750183818],[97.7496195880001,17.739848532000096],[97.75158329300015,17.72956492200008],[97.75178999900018,17.71809275300008],[97.75313358600008,17.70538035100013],[97.75933475800016,17.691479391000044],[97.76894657400007,17.67918039900009],[97.90799443000016,17.55486551400007],[97.93379439300006,17.53179921500005],[97.94857385300006,17.522394104000014],[97.9722416590001,17.5116970830001],[97.98278365100005,17.505444234],[97.99167199800016,17.49572906500005],[97.99611617000008,17.480794576],[98.0182336840002,17.447411601000127],[98.02856897000018,17.418782858000057],[98.03549361200007,17.405036927000126],[98.04872277900009,17.39154937800005],[98.06226200400008,17.38483144100003],[98.07683475700011,17.380025533000108],[98.08872033700007,17.37279083300014],[98.09471480300007,17.35863149],[98.0940946860002,17.346332500000145],[98.09047733600013,17.325248515000126],[98.0926477460001,17.312226054000103],[98.10060591700008,17.30261423800009],[98.1861820880001,17.224221090000082],[98.20178837100016,17.215694479000163],[98.22101200400019,17.20075999],[98.25625533100005,17.151615702000143],[98.27899296100006,17.136577860000088],[98.27082808400021,17.12779286699999],[98.26617720500016,17.116372376000083],[98.26834761600006,17.10774241100013],[98.2943925380001,17.10758738200009],[98.2953227140001,17.099835917000078],[98.29015507000017,17.090844218000043],[98.28622766100008,17.087433574000116],[98.29966353400008,17.06474762000006],[98.31330611100006,17.052035217000096],[98.33066939300008,17.04686757400019],[98.37976200400013,17.045782370000026],[98.39991581200009,17.040149638000074],[98.41789921100009,17.029039205000156],[98.43619266800007,17.01157257100003],[98.4467346600002,16.99632802300006],[98.46368453000011,16.96361684100016],[98.47453658000009,16.950439352],[98.48042769400016,16.937261862000028],[98.48073775200007,16.920570374000178],[98.48445845500007,16.905894267000104],[98.50006473800008,16.898917949000108],[98.50946984900004,16.8926651],[98.51598108000022,16.878970846000172],[98.52455936700008,16.850445455000127],[98.51195031700016,16.85928212500012],[98.50058150300005,16.862227681000135],[98.49251997900014,16.857421774000116],[98.49003951000006,16.843210755000158],[98.49438033100009,16.83117014600019],[98.50337203000012,16.826002503],[98.51319055200004,16.822178447000155],[98.52052860500007,16.814116923000157],[98.51753137200015,16.803006490000044],[98.50543908700016,16.79065582300008],[98.48921268700016,16.78073394800019],[98.47453658000009,16.77665150900016],[98.4625476480002,16.760115052000074],[98.45469283100007,16.740994772000093],[98.45665653500012,16.723218079000063],[98.48631880700006,16.70099721300012],[98.49138309700007,16.68973175000015],[98.49841109200004,16.662394918000032],[98.51226037600011,16.643274638000136],[98.5470902910001,16.620123596000056],[98.5615596920002,16.601726787000146],[98.56579716000006,16.591546529000183],[98.56776086400012,16.582503154000122],[98.5673474530001,16.573304749000116],[98.56404016100005,16.562711080000057],[98.56424686700015,16.551962382000127],[98.57044803900011,16.541575419000093],[98.63163293400007,16.463130595000095],[98.63979781100008,16.444992167000162],[98.63824751800014,16.434450176],[98.62822229100013,16.413572896000048],[98.62946252500015,16.402669170000152],[98.64238163200017,16.373627015000167],[98.65695438600014,16.301641744000037],[98.66325891200015,16.28665557900014],[98.68237919200006,16.27347808900008],[98.69839888600009,16.284950256000073],[98.72826786400012,16.328255107000146],[98.7886259360001,16.374557190000033],[98.80206180900004,16.39827667300007],[98.81043339100015,16.439617819000105],[98.8187016200001,16.455637512000134],[98.83957889800016,16.472432353000116],[98.84340295400007,16.43837758400015],[98.86210982300005,16.42065256800005],[98.88526086500016,16.40618316700012],[98.90252079300015,16.38163686200015],[98.90334761600009,16.36344675700012],[98.89342574100007,16.31988352500015],[98.88867150900009,16.274563294000146],[98.88371057200007,16.258750305000078],[98.85559859200012,16.226969299000032],[98.84309289600012,16.208727519000163],[98.83668501900016,16.189038799000016],[98.83472131400006,16.167748108000055],[98.83544478300021,16.144545390000033],[98.83079390500008,16.135605367000025],[98.80722945200009,16.110542298],[98.79844445800008,16.104444479000122],[98.7830448810001,16.102429098000087],[98.77601688600005,16.10687327],[98.77033247900013,16.113849589],[98.75844690000011,16.11917226200013],[98.69715865100008,16.126872051000035],[98.67958866400006,16.126148580000134],[98.6587113850002,16.116278381000043],[98.65033980300015,16.09963857000004],[98.64413863200015,16.079639791000186],[98.63018599400007,16.060002747000155],[98.61912723800006,16.05101104800012],[98.61158247900019,16.04692861000011],[98.60310754400021,16.04584340400011],[98.59008508300016,16.045791728],[98.5799565030002,16.048788961000113],[98.56765751100008,16.05395660500004],[98.5558752850001,16.055506897000143],[98.54698693800006,16.047497050000157],[98.55008752500012,16.034216207000057],[98.57695926900007,15.99690582300012],[98.58378055900006,15.976958720000097],[98.58067997200013,15.959130351000157],[98.56858768700013,15.920166321000165],[98.56931115800009,15.896136780000134],[98.5766492110001,15.854175517000144],[98.5743754480001,15.835985413000104],[98.54305953000019,15.735371399000073],[98.54026900300013,15.711961975000108],[98.54405541500007,15.675098034000044],[98.54574670400021,15.65863189700009],[98.54367964700006,15.601503601000092],[98.56714074700014,15.452546285000109],[98.56900109900002,15.402135926000197],[98.55990604700017,15.355317078000096],[98.53355106600011,15.325964865000115],[98.53024377400013,15.347720642000125],[98.51546431500017,15.363456116000108],[98.49500044800001,15.374799093000176],[98.47453658000009,15.383480734000145],[98.45541630000015,15.373636373000165],[98.43939660700013,15.367590230000117],[98.40342981000006,15.360097148000179],[98.39691858000018,15.355730489000107],[98.39619510900009,15.347617289000182],[98.40032922400009,15.330667420000095],[98.39908899000008,15.321779074000174],[98.39361128800007,15.316275533000178],[98.38482629400018,15.311366272000141],[98.3836894130001,15.310281067000146],[98.38120894400012,15.306637879000164],[98.37883182800007,15.301625265000098],[98.37748824100012,15.296457622000103],[98.3799687100001,15.293847962000184],[98.38606652900013,15.290385640000139],[98.39206099500004,15.285838115000116],[98.39474816900011,15.28007619300014],[98.39474816900011,15.264909160000128],[98.39226770000013,15.258242900000196],[98.38523970600008,15.256253357000162],[98.37025354100015,15.261911926000108],[98.33604374200016,15.282169088000117],[98.31785363800012,15.288990377000161],[98.29511600700013,15.29260772800015],[98.28302372200014,15.289972229000128],[98.24767704300021,15.240931295000108],[98.23289758300021,15.226797791000164],[98.21543094900007,15.21886545800011],[98.2076928600002,15.219215764000142],[98.1771903900001,15.22059661900009],[98.17790575900014,15.2089207570001],[98.17791385900009,15.208788554000165],[98.18468040900021,15.193154550000143],[98.19072961500015,15.179177958000123],[98.1857686770002,15.16078114900013],[98.16499475100008,15.125796204000125],[98.16044722500013,15.106365865000143],[98.16807190400012,15.082770575000081],[98.1680953370002,15.082698060000112],[98.19879962500013,15.051583013000124],[98.1989978440001,15.051382142000195],[98.20437219300007,15.029574687000178],[98.20116825300008,15.019291076000087],[98.19569055200012,15.010686951000153],[98.19134973100014,15.001152649000161],[98.19122365500019,14.993209838000125],[98.19114302600005,14.98813018800013],[98.19507043400014,14.977588196000157],[98.21491418500014,14.943171692000194],[98.22163212100006,14.921260885000152],[98.2203918860001,14.885268250000166],[98.22214888500011,14.864261780000163],[98.22514611800008,14.858964946000128],[98.23589481600001,14.850386658000103],[98.23909875500006,14.844004618000156],[98.2387886970001,14.839095358000122],[98.23537805200007,14.824548442000077],[98.24333622200007,14.805118103000098],[98.29749312300007,14.721247254000103],[98.41820926900007,14.607559103000112],[98.4313350830001,14.587844543000157],[98.44001672400012,14.566269633000104],[98.44549442600007,14.542033386000112],[98.45283247900007,14.528054911000112],[98.46513147000022,14.523352356000132],[98.47815393100014,14.516505229000172],[98.54771040900008,14.377676493000154],[98.5931856700001,14.321607564000118],[98.60145389800007,14.313649394000151],[98.61447635900018,14.305148621000143],[98.62150435400011,14.30240977000011],[98.63690393100009,14.298973287000164],[98.64424198400009,14.295665996000167],[98.65075321400016,14.289413147000175],[98.66356897000006,14.272876688000082],[98.67039025900007,14.26791575100013],[98.6855831300002,14.267398987000192],[98.69736535700011,14.271378073000164],[98.70697717300013,14.269982809000096],[98.73105839100018,14.223499858000167],[98.75369266800013,14.200116272000114],[98.87234175600017,14.112473043000191],[98.89373580000009,14.103248800000188],[98.91771366400009,14.096375834000128],[98.93528365100016,14.085394592000142],[98.94530887900007,14.069142355000123],[98.9475826410002,14.04640472400014],[98.95295699100004,14.028033752000153],[98.98478967300011,13.990594178000093],[98.99698531100015,13.971628926000136],[99.00711389200009,13.949640605000155],[99.01620894400004,13.937935893000171],[99.04762821400018,13.914991557000135],[99.0520723880002,13.90904876700013],[99.05713667800008,13.89408844000016],[99.06106408800022,13.888016459000198],[99.06633508300015,13.885329285000182],[99.08028772000014,13.881556905000153],[99.0848352460001,13.878533834000137],[99.09000289000019,13.87011057500014],[99.09217329900011,13.863573507000169],[99.09186324100018,13.8559253950001],[99.08948612500015,13.84391062400013],[99.08979618300006,13.826650696000142],[99.10116499900013,13.778824158000148],[99.10881311000011,13.762701111000155],[99.1412659100001,13.732108663000147],[99.14677934200013,13.723674124000112],[99.15253137200008,13.714874573000158],[99.1528414310001,13.688726298000162],[99.14953413900017,13.66598866800018],[99.15201460800014,13.581962790000148],[99.18787805200012,13.427140198000188],[99.18880822800006,13.407916565000164],[99.18364058400007,13.357971293000103],[99.18694787600005,13.338747660000166],[99.18694787600005,13.329135844000163],[99.18271040800019,13.318723043000134],[99.1769226490002,13.31032562200015],[99.17278853400009,13.300920512000102],[99.17340865100007,13.287432963000128],[99.18601770000006,13.24999338800015],[99.19015181500012,13.229503682000185],[99.18725793500013,13.212243754000097],[99.18647971700014,13.211558644000178],[99.17278853400009,13.199505514000137],[99.13320438600013,13.195164693000152],[99.11408410700014,13.188085022000138],[99.10209517500019,13.171341858000176],[99.10219852800012,13.151834005000183],[99.10529911300014,13.12961313900014],[99.10250858600007,13.1043950400001],[99.09382694500002,13.080675558000152],[99.08834924300005,13.058351339000183],[99.09320682800009,13.03832672200015],[99.11532434100016,13.02140268900014],[99.13248091700015,13.011041565000127],[99.1510844320002,12.994789327000206],[99.1648303640002,12.975514018000169],[99.16731083200008,12.956006165000176],[99.16307336400016,12.944663188000106],[99.15790572100016,12.935955709000126],[99.1541850180001,12.926602275000093],[99.15315149000017,12.913553975000141],[99.15532190000013,12.90448476200008],[99.16844771400011,12.874099019000127],[99.17185835800015,12.843325704000165],[99.17526900200006,12.833429667000175],[99.18322717300012,12.822577616000132],[99.20307092300013,12.803870748000136],[99.2107190350001,12.792269389000182],[99.2144397380001,12.771676331000094],[99.21319950400007,12.75260772700011],[99.21412968000013,12.73465016700014],[99.22446496600006,12.717467753000165],[99.23345666600007,12.713126933000183],[99.25629764800007,12.70945790600018],[99.2667362880002,12.702843323000181],[99.27118046100011,12.69379994700013],[99.27345422400006,12.673542786000127],[99.2768648690001,12.66558461500017],[99.28626997900014,12.660003560000149],[99.30973108000008,12.653492330000176],[99.31717248600015,12.645895894000205],[99.32358036300016,12.635405579000164],[99.3333988850002,12.625432027000159],[99.34445764200015,12.616750387000193],[99.39375695800001,12.589775289000073],[99.4032654210001,12.575926005000113],[99.40474711600015,12.56694085900017],[99.40729618400022,12.55148305200008],[99.40708947800007,12.530244039000195],[99.40419559700015,12.508126526000183],[99.40026818900012,12.497481181000182],[99.38951949100007,12.475983785000153],[99.3870390220002,12.465906880000205],[99.39127648900015,12.445339660000128],[99.41401411900014,12.405238749000134],[99.42062870300006,12.383379619000095],[99.42341923000018,12.327775777000085],[99.42672652200011,12.308655498000178],[99.43220422400006,12.296408183000153],[99.44760380100016,12.278218079000126],[99.4544250900001,12.267262675000138],[99.45711226400013,12.2564106250001],[99.4547351480002,12.238220521000144],[99.45556197200013,12.227575175000155],[99.45938602700006,12.217084860000114],[99.47013472500007,12.197396139000162],[99.47375207600007,12.187267558000201],[99.47199507600007,12.173624980000099],[99.46383020100009,12.164581604000148],[99.45411503200015,12.156881816000151],[99.44884403500012,12.147218323000132],[99.4522546800001,12.129389953000084],[99.46631067000007,12.12603098600016],[99.52263798000016,12.144221090000201],[99.53286991400014,12.144531148000098],[99.54165490700021,12.140655416000143],[99.54578902200015,12.131870422000148],[99.5435152590002,12.122465312000186],[99.53927779100016,12.112285055000127],[99.53762414600011,12.100864563000128],[99.52170780500008,12.053683980000116],[99.5184005130001,12.025933737000171],[99.53431685400014,12.01156768800017],[99.55333378100008,12.005521545000121],[99.56697635900011,11.993325908000202],[99.57400435400021,11.97632436100018],[99.57286747300012,11.95591217100015],[99.55736454300009,11.915604554000183],[99.5540572510001,11.895037334000108],[99.56139530500016,11.872919820000106],[99.57379764900006,11.85772695000017],[99.59178104700007,11.84227569600017],[99.61100468000004,11.830183411000178],[99.62795455000017,11.825377503000169],[99.6300216060001,11.815765686000162],[99.61534550000013,11.74941314700014],[99.60687056500015,11.725693665000094],[99.54258508300008,11.640479228000146],[99.53069950400007,11.630919088000141],[99.48915165300016,11.628438619000164],[99.46610396300011,11.623942770000141],[99.44977421100005,11.613762513000083],[99.44057580600006,11.59727773100019],[99.43923221800017,11.573919983000152],[99.44109257000011,11.533405661000145],[99.43737186700015,11.516688334000106],[99.4281734620001,11.49689626100013],[99.41587447100014,11.480230611000195],[99.3870390220002,11.451550192000113],[99.37763391100006,11.435504660000149],[99.37205285600012,11.410855001000144],[99.37050256400018,11.3933366910001],[99.3643013920001,11.376722718000167],[99.3263708910001,11.336234233000168],[99.31572554600021,11.320808817000085],[99.3005326740001,11.280630392000162],[99.2884403890001,11.258306173000108],[99.25619429500013,11.219988098000101],[99.24327518800007,11.197663880000121],[99.21299279800022,11.108263652000133],[99.20617150900009,11.100021260000105],[99.18488081900009,11.092967428000179],[99.1750622970002,11.087438050000173],[99.1676208910001,11.077981262000108],[99.15821578000012,11.05731068900019],[99.15170455000006,11.047673035000173],[99.14094611700014,11.039409961000104],[99.13310103300009,11.0333845010001],[99.09320682800009,11.01297231100014],[99.0768770760002,10.996513367000162],[99.07253625500006,10.987599182000153],[99.06364790900014,10.957420146000144],[99.05506962100011,10.945250346000137],[99.04525109800014,10.94550872800012],[99.03470910700017,10.9509605920001],[99.0233402910001,10.954371236000128],[99.01062788900006,10.956231588000122],[99.00556359900004,10.958815410000126],[99.00153283700016,10.957626851000114],[98.99233443300008,10.94796335900017],[98.9866500250001,10.93930755600013],[98.98261926300019,10.928946432000203],[98.98024214700008,10.918016867000148],[98.9796220300001,10.907655741000127],[98.98179244000019,10.895485942000121],[98.98975061000007,10.8751512660001],[98.9898539640001,10.86044932100019],[98.98613326000006,10.840321350000139],[98.981895793,10.832414856000184],[98.97445438700012,10.824198303000145],[98.9697001550002,10.82311309800015],[98.9340434160001,10.807713521000082],[98.92329471800011,10.808101095000083],[98.91471643100007,10.812286886000123],[98.90541467400007,10.814405619000183],[98.89208215300013,10.808514506000094],[98.88360721800021,10.79918691000016],[98.87919148800009,10.788202779000102],[98.87533899000007,10.77861969000017],[98.8682076420001,10.76988637300019],[98.86086958900013,10.767664287000102],[98.83957889800016,10.766398214000148],[98.83007043500017,10.763556010000173],[98.81095015500009,10.746631979000169],[98.76671512800006,10.688754375000144],[98.75679325400009,10.666068420000087],[98.74790490800014,10.623125305000114],[98.75152225800011,10.610361226000151],[98.77074589100008,10.593979798000191],[98.77725712100013,10.583231100000177],[98.79131311100011,10.52041839600011],[98.79038293500011,10.500264588000135],[98.7765336510001,10.46210154300016],[98.76640507000015,10.41120025700013],[98.7474064460001,10.35053131700009],[98.73991946700002,10.347357489000117],[98.73503665500007,10.343085028000102],[98.73121178500017,10.337347723000136],[98.7189233730002,10.312567450000158],[98.70281009200002,10.262762762000179],[98.69605553500011,10.223700262000136],[98.68702233200011,10.208400783000073],[98.66504967500006,10.185451565000093],[98.64421634200019,10.15501536700013],[98.58985436300006,10.042059637000165],[98.56055748800006,10.002142645000104],[98.54314212300008,9.987453518000109],[98.5353296230002,9.997381903000104],[98.53345787900011,10.006740627000141],[98.52442467500012,10.021063544000128],[98.52100670700011,10.028998114000089],[98.52003014400006,10.038885809000107],[98.52149498800011,10.059393622000158],[98.52100670700011,10.069322007000068],[98.51482181100002,10.101507880000113],[98.5139266290001,10.146918036000102],[98.49366295700004,10.17918528900013],[98.49048912900017,10.190619208000086],[98.4895939460001,10.197902736000103],[98.49073326900012,10.20433177300012],[98.507578972,10.244940497000115],[98.51221764400006,10.261419989000103],[98.51710045700011,10.307440497000144],[98.52849368600008,10.34324778900016],[98.52849368600008,10.364203192000119],[98.51221764400006,10.422796942000145],[98.49415123800011,10.45246002800009],[98.49341881600017,10.472723700000103],[98.50049889400006,10.515041408000116],[98.4954533210001,10.556870835000124],[98.46338951900006,10.630031643000095],[98.45899498800006,10.67267487200013],[98.45932050900008,10.715399481000134],[98.46355228000017,10.729437567000089],[98.47657311300011,10.73468659100017],[98.49830162900017,10.731594143000095],[98.510996941,10.722886460000112],[98.52849368600008,10.693101304000109],[98.53874759200019,10.704413153000175],[98.53834069100012,10.718695380000085],[98.53101647200018,10.732163804000066],[98.52100670700011,10.74095286700013],[98.5325626960001,10.746771552000084],[98.54371178500006,10.745062567000076],[98.55420983200011,10.737982489000117],[98.56324303500006,10.727280992000187],[98.56999759200008,10.743109442000133],[98.57740319100006,10.770412502000111],[98.58301842500005,10.781927802000139],[98.59986412900017,10.805487372000101],[98.60271243600019,10.81948476800015],[98.59669030000006,10.837144273000163],[98.60694420700011,10.836371161000145],[98.61597741000006,10.838446356000162],[98.62403405000006,10.843207098000063],[98.63086998800004,10.850816148000192],[98.62012780000006,10.854559637000136],[98.59546959700018,10.856838283000116],[98.58643639400006,10.861029364000132],[98.58179772200006,10.867254950000103],[98.578868035,10.875189520000063],[98.58155358200011,10.882025458000086],[98.61378014400006,10.890285549000067],[98.62501061300006,10.902004299000154],[98.63404381600006,10.91372304900014],[98.64795983200005,10.919094143000109],[98.65284264400012,10.917181708000143],[98.66382897200006,10.908270575000103],[98.673106316,10.905462958000058],[98.67505944100004,10.90851471600014],[98.68921959700018,10.913397528000118],[98.70362389400006,10.916164455000086],[98.70655358200004,10.912827867000146],[98.71241295700011,10.924383856000176],[98.71680748800011,10.942206122000144],[98.71762129000008,10.96067942900008],[98.71273847700009,10.974310614000117],[98.7202254570001,10.980536200000174],[98.71387780000006,10.989976304000095],[98.69654381600017,11.002590236000088],[98.69288170700005,11.008449611000117],[98.69532311300006,11.020086981000134],[98.70093834700018,11.0249697940001],[98.70834394600016,11.02765534100017],[98.71648196700008,11.032375393000095],[98.72242272200018,11.0448672550001],[98.71827233200005,11.058823960000069],[98.71062259200002,11.07607656500008],[98.70655358200004,11.097845770000134],[98.68881269600016,11.092474677000084],[98.67628014400005,11.10057200700011],[98.65821373800006,11.131984768000137],[98.70264733200005,11.143622137000136],[98.72413170700011,11.156195380000128],[98.73316491,11.176011460000138],[98.73316491,11.207098700000145],[98.74561608200005,11.236029364000146],[98.75098717500006,11.257066148000177],[98.75709069100017,11.26337311400013],[98.75928795700005,11.26894765800013],[98.74642988400014,11.285874742000118],[98.72657311300006,11.333441473000107],[98.72193444099999,11.350083726000065],[98.72136478000002,11.367254950000174],[98.72706139400012,11.38519928600013],[98.70264733200005,11.379055080000157],[98.69800866000006,11.388006903000173],[98.70655358200004,11.423081773000163],[98.71534264400006,11.44318268400012],[98.7356876960001,11.450140692000103],[98.77491295700004,11.453517971000124],[98.76563561300011,11.467433986000103],[98.76343834700012,11.506252346000124],[98.75440514400012,11.52240631700009],[98.74529056100019,11.524847723000121],[98.7288517590001,11.517645575000172],[98.7202254570001,11.52240631700009],[98.71794681100002,11.531887111000088],[98.72575931100002,11.548407294000157],[98.7202254570001,11.55711497600005],[98.73357181100012,11.573431708000072],[98.73633873800006,11.588771877000127],[98.73316491,11.624823309000178],[98.73560631600004,11.642035223000091],[98.74154707100014,11.665025132000082],[98.75220787900011,11.681708075000117],[98.76807701900012,11.680080471000096],[98.78028405000012,11.68650950700011],[98.78793379000015,11.683335679000137],[98.79517662900017,11.676825262000136],[98.80591881600017,11.673244533000073],[98.81714928500017,11.67739492400011],[98.81869550900008,11.687201239000146],[98.81812584700006,11.698675848000091],[98.8226017590001,11.707953192000131],[98.83545983200004,11.710109768000137],[98.85434004000015,11.707098700000131],[98.87289472700016,11.70091380400008],[98.8847762380001,11.693670966000141],[98.89161217500005,11.693670966000141],[98.87671959700018,11.722642320000134],[98.8049422540001,11.736517645000133],[98.78296959700018,11.755113023000119],[98.79029381600017,11.779689846000139],[98.81202233200005,11.802639065000122],[98.82569420700011,11.825873114000144],[98.8089298840001,11.851304429000066],[98.81609134200014,11.83380768400012],[98.81023196700008,11.822007554000137],[98.80054772199999,11.813788153000147],[98.79127037900015,11.802476304000066],[98.76807701900012,11.761948960000138],[98.76148522200006,11.760891018000095],[98.74415123800006,11.762518622000115],[98.74073326900006,11.758530992000132],[98.73796634200019,11.756496486000103],[98.725840691,11.74433014500012],[98.72364342500012,11.741441148000177],[98.71216881600017,11.736517645000133],[98.70899498800011,11.724514065000108],[98.70826256600017,11.709947007000082],[98.70313561300006,11.697455145000077],[98.69263756600016,11.686753648000149],[98.684336785,11.682806708000072],[98.67416425900015,11.685248114000103],[98.64763431100019,11.70050690300016],[98.61687259200014,11.723700262000092],[98.61036217500012,11.731268622000144],[98.60873457100008,11.7414004580001],[98.60328209700018,11.753607489000075],[98.60352623800011,11.761948960000138],[98.60596764400006,11.769191799000067],[98.61784915500019,11.78925202000012],[98.62330162900011,11.793280341000099],[98.62891686300006,11.791937567000105],[98.63209069100012,11.792873440000093],[98.63086998800004,11.803615627000099],[98.60352623800011,11.803615627000099],[98.61931399800008,11.825873114000144],[98.62403405000006,11.830267645000134],[98.63135826900006,11.832098700000117],[98.64087975400017,11.832261460000081],[98.64869225400017,11.83148834800015],[98.65137780000005,11.830267645000134],[98.66032962300008,11.845200914000173],[98.66797936300011,11.863592841000127],[98.68091881600012,11.877346096000139],[98.70655358200004,11.878648179000137],[98.69410241000006,11.892889716000141],[98.673106316,11.89207591400013],[98.63086998800004,11.878648179000137],[98.54900149800001,11.878648179000137],[98.5581160820001,11.899115302000096],[98.57813561300006,11.906683661000145],[98.62745201900006,11.905951239000116],[98.64503014400012,11.910223700000131],[98.66407311300011,11.920355536000088],[98.67920983200011,11.9328067080001],[98.69092858200005,11.95433177300012],[98.702891472,11.95905182500013],[98.71485436300006,11.96116771000014],[98.7202254570001,11.964300848000121],[98.72144616,11.997788804000066],[98.7202254570001,12.00836823100012],[98.71314537900011,12.02521393400012],[98.70533287900017,12.036851304000123],[98.70313561300006,12.048081773000119],[98.71273847700009,12.063625393000123],[98.66504967500006,12.060248114000117],[98.6584578790001,12.067124742000118],[98.64503014400012,12.078070380000085],[98.63379967500012,12.090318101000065],[98.6342879570001,12.101141669000143],[98.64096113400015,12.113674221000139],[98.63624108200005,12.122544664000188],[98.62964928500017,12.131984768000109],[98.63086998800004,12.146185614000117],[98.63786868600008,12.151068427000098],[98.6507267590001,12.155096747000158],[98.673106316,12.159165757000125],[98.673106316,12.166652736000088],[98.65821373800006,12.166652736000088],[98.66765384200008,12.177679755000128],[98.69581139400006,12.193101304000066],[98.70972741000006,12.204250393000095],[98.7137150400001,12.215765692000117],[98.710215691,12.228013414000173],[98.70329837300012,12.23777903900013],[98.69629967500006,12.2417666690001],[98.66293379000014,12.236802476000065],[98.64087975400017,12.224554755000085],[98.62142988400015,12.20897044500019],[98.59669030000006,12.19399648600016],[98.58855228000007,12.197699286000102],[98.57081139400006,12.203517971000153],[98.56324303500006,12.207668361000103],[98.54712975400017,12.223456122000144],[98.53907311300011,12.2417666690001],[98.54021243600008,12.260972398000147],[98.55201256600006,12.279608466000141],[98.56836998800006,12.290920315000122],[98.58765709700018,12.297064520000106],[98.67676842500006,12.315252997000101],[98.6977645190001,12.32794830900015],[98.70655358200004,12.347886460000138],[98.69996178500011,12.363959052000126],[98.68425540500002,12.373236395000077],[98.65137780000005,12.385728257000096],[98.62680097700009,12.409572658000158],[98.6208602220001,12.413723049000112],[98.60743248800011,12.418280341000155],[98.60515384200002,12.428941148000177],[98.61036217500012,12.450913804000109],[98.61133873800011,12.473049221000082],[98.61622155000006,12.485744533000144],[98.62842858200005,12.492132880000069],[98.65137780000005,12.49559153900016],[98.68921959700018,12.49559153900016],[98.70142662900017,12.49872467700014],[98.70875084700006,12.505560614000146],[98.70972741000006,12.512396552000084],[98.70313561300006,12.51552969000015],[98.69483483200005,12.517035223000107],[98.68148847700016,12.525580145000118],[98.673106316,12.529730536000073],[98.66195722700009,12.531317450000103],[98.6507267590001,12.530951239000089],[98.63998457100016,12.53188711100016],[98.63086998800004,12.537258205000114],[98.62305748800011,12.558172919000171],[98.63119550900008,12.579331773000177],[98.64437910200016,12.60065338700015],[98.65137780000005,12.622259833000143],[98.6546330090001,12.625718492000146],[98.661875847,12.625474351000108],[98.66944420700005,12.624457098000136],[98.673106316,12.625392971000124],[98.6722111340001,12.631740627000156],[98.66504967500006,12.646429755000057],[98.66765384200008,12.674790757000096],[98.673106316,12.68744538000007],[98.680349155,12.697007554000052],[98.68669681100006,12.702826239000103],[98.691172722,12.710435289000145],[98.69288170700005,12.725287177000112],[98.68930097700016,12.728094794000157],[98.66163170700005,12.721584377000156],[98.64844811300011,12.723334052000068],[98.64177493600008,12.728094794000157],[98.64087975400017,12.734686591000125],[98.6445418630001,12.742010809000133],[98.65235436300011,12.745428778000147],[98.66309655000012,12.745103257000125],[98.673024936,12.746812242000116],[98.67872155000012,12.75629303600013],[98.67017662900017,12.760931708000058],[98.62769616,12.756252346000139],[98.61784915500019,12.766262111000117],[98.61744225400011,12.777411200000145],[98.61898847700009,12.775091864000087],[98.62403405000006,12.77619049700013],[98.63453209700005,12.78119538000007],[98.64177493600008,12.782416083000086],[98.64698326900006,12.785793361000103],[98.65137780000005,12.79730866100013],[98.6342879570001,12.878607489000117],[98.62476647200018,12.884222723000121],[98.60124759200002,12.911037502000111],[98.58985436300006,12.91958242400014],[98.60010826900012,12.94163646000014],[98.60678144600016,12.95062897300015],[98.61402428500016,12.954291083000115],[98.61036217500012,12.959621486000074],[98.59669030000006,12.995917059000163],[98.58619225400011,13.016506252000113],[98.58383222700016,13.026597398000161],[98.58041425900015,13.065375067000105],[98.58204186300006,13.077053127000099],[98.58985436300006,13.08466217700014],[98.58334394600008,13.11395905200007],[98.5784611340001,13.186753648000105],[98.5659285820001,13.201361395000133],[98.55307050900008,13.208075262000165],[98.50049889400006,13.249172268000066],[98.49512780000012,13.285467841000154],[98.48991946700019,13.29783763200011],[98.4799910820001,13.283880927000125],[98.47527103000019,13.292914130000142],[98.47282962300008,13.302923895000118],[98.47242272200005,13.313625393000152],[98.47315514400006,13.32489655200014],[98.46045983200011,13.355780341000097],[98.46013431100019,13.369330145000147],[98.47315514400006,13.379461981000118],[98.47169030000012,13.386419989000103],[98.47120201900005,13.394191799000112],[98.47315514400006,13.413031317000147],[98.46420332100016,13.407700914000173],[98.45899498800006,13.399969794000157],[98.45281009200019,13.379461981000118],[98.45378665500006,13.396389065000093],[98.450938347,13.411363023000135],[98.44532311300011,13.424302476000136],[98.43913821700008,13.434759833000115],[98.43441816500015,13.438462632000068],[98.42823326900005,13.441799221000094],[98.42237389400006,13.446600653000175],[98.41863040500019,13.45457591400013],[98.41944420700011,13.462225653000159],[98.42920983200005,13.471177476000094],[98.43165123800006,13.47874583500014],[98.42644290500019,13.49005768400012],[98.40333092500005,13.522447007000125],[98.39405358200011,13.542792059000119],[98.38396243600002,13.551906643000109],[98.37061608200011,13.559515692000147],[98.357188347,13.56386953300013],[98.361094597,13.57615794500019],[98.35661868600008,13.584865627000084],[98.3361108730002,13.598578192000105],[98.33643639400012,13.619818427000098],[98.29883873800011,13.671047268000136],[98.28825931100008,13.694769598000136],[98.29566491000006,13.687974351000122],[98.30201256600017,13.700995184000105],[98.27670332100016,13.70718008000007],[98.25733483200005,13.70636627800016],[98.24480228,13.714056708000086],[98.2404891290001,13.746039130000085],[98.25196373800006,13.782538153000132],[98.25416100400017,13.797796942000105],[98.25196373800006,13.811672268000095],[98.2483830090001,13.824530341000113],[98.24781334700006,13.837591864000089],[98.25416100400017,13.851792710000112],[98.24805748800006,13.86277903900016],[98.23365319099999,13.917303778000147],[98.23365319099999,13.961655992000173],[98.23121178500017,13.972479559000163],[98.22779381600017,13.981268622000144],[98.22722415500019,13.98895905200007],[98.23365319099999,13.996486721000124],[98.23365319099999,14.002630927000098],[98.222422722,14.013088283000087],[98.20866946700019,14.029608466000154],[98.19703209700018,14.048163153000159],[98.192149285,14.06468333500014],[98.18580162900017,14.06468333500014],[98.18458092500006,14.052557684000135],[98.1800236340001,14.031642971000082],[98.17896569100016,14.019720770000134],[98.18213951900012,14.014308986000103],[98.19629967500006,13.997870184000107],[98.19947350400011,13.992743231000176],[98.19825280000012,13.96491120000013],[98.19336998800006,13.95180898600016],[98.18238366000017,13.937811591000099],[98.18018639400005,13.925034898000149],[98.1951603520001,13.886948960000069],[98.19947350400011,13.869208075000174],[98.19727623800011,13.850327867000145],[98.18799889400005,13.815130927000096],[98.17945397200006,13.732407945000132],[98.1935327480002,13.686265367000118],[98.196055535,13.668361721000153],[98.19336998800006,13.651556708000143],[98.18580162900017,13.6327578800001],[98.18238366000017,13.627101955000098],[98.17888431100019,13.622626044000143],[98.17530358200011,13.61660390800013],[98.17156009200008,13.606024481000176],[98.16895592500006,13.593980210000069],[98.16846764400012,13.584295966000113],[98.17156009200008,13.56386953300013],[98.1834416020001,13.551703192000147],[98.18685957100016,13.543850002000068],[98.17896569100016,13.537095445000134],[98.17107181100019,13.53782786700016],[98.16382897200016,13.543524481000148],[98.15105228000002,13.557603257000096],[98.14966881600006,13.550116278000118],[98.14584394600008,13.542914130000085],[98.14429772200018,13.537095445000134],[98.14210045700011,13.548081773000177],[98.14275149800002,13.561712958000129],[98.14136803500017,13.57322825700008],[98.13428795700011,13.578111070000134],[98.12973066500015,13.582342841000155],[98.13477623800011,13.591742255000085],[98.14372806100012,13.601263739000089],[98.15105228000002,13.606024481000176],[98.14698326900006,13.61115143400009],[98.14136803500017,13.621161200000174],[98.13746178500017,13.626532294000128],[98.15186608200005,13.630357164000143],[98.15845787900011,13.64232005400008],[98.1580509770001,13.658189195000105],[98.15105228000002,13.673732815000108],[98.16765384200008,13.673163153000147],[98.1687931650001,13.68081289300008],[98.16041100400017,13.690252997000087],[98.14763431100013,13.694769598000136],[98.12378991000006,13.693508205000127],[98.11638431100008,13.69505442900008],[98.10328209700018,13.700995184000105],[98.10670006600017,13.707017320000105],[98.11345462300012,13.722805080000157],[98.11695397199999,13.72894928600013],[98.09205162900017,13.73969147300015],[98.08277428500004,13.769964911000143],[98.08887780000012,13.79511139500012],[98.11011803500011,13.790350653000116],[98.10401451900012,13.83470286700016],[98.10328209700018,13.876369533000116],[98.109141472,13.892482815000093],[98.11085045700005,13.902167059000147],[98.10670006600017,13.906439520000148],[98.10124759200008,13.908026434000178],[98.09302819100004,13.912176825000131],[98.08545983200011,13.9179141300001],[98.08228600400011,13.924465236000088],[98.07927493600002,13.94806549700013],[98.06560306100019,13.989325262000165],[98.06169681100019,14.01007721600017],[98.06625410200016,14.03270091400013],[98.08838951900012,14.063462632000125],[98.09644616000017,14.078355210000083],[98.09742272200006,14.092189846000082],[98.10767662900015,14.110012111000145],[98.11011803500011,14.123032945000134],[98.10857181100008,14.132635809000107],[98.09644616000017,14.167792059000163],[98.11011803500011,14.167792059000163],[98.10645592500006,14.181219794000157],[98.10108483200011,14.191839911000116],[98.09522545700005,14.19379303600006],[98.08961022200006,14.181382554000123],[98.04175866,14.242865302000096],[98.01482181100008,14.299505927000096],[97.9935001960001,14.330511786000116],[97.98601321700014,14.352606512000108],[97.9812931650001,14.376450914000173],[97.97974694100017,14.397406317000133],[97.9825952480002,14.419256903000175],[97.9959416020001,14.449693101000134],[98.0002547540001,14.468736070000134],[97.99146569100004,14.460028387000134],[97.9842228520001,14.449652411000145],[97.97641035200016,14.44375234600011],[97.96607506600006,14.44830963700015],[97.96208743600008,14.457749742000159],[97.95183353000002,14.502915757000125],[97.92139733200005,14.557684637000136],[97.91358483200005,14.586737372000115],[97.925059441,14.612779039000188],[97.90007571700019,14.630316473000136],[97.88550866000017,14.655951239000101],[97.88550866000017,14.684068101000092],[97.90406334700018,14.708970445000132],[97.94312584700006,14.720200914000129],[97.96851647200018,14.69651927300012],[97.9924422540001,14.66372304900011],[98.02759850400011,14.647528387000149],[97.9924422540001,14.693101304000109],[97.98218834700012,14.715277411000072],[98.0002547540001,14.722072658000101],[97.98536217500005,14.728176174000097],[97.9710392590001,14.7359072940001],[97.96461022200018,14.747056382000125],[97.97291100400017,14.763617255000083],[97.96566816500008,14.769517320000118],[97.9588322270001,14.778509833000143],[97.95386803500006,14.787746486000103],[97.95183353000002,14.794338283000087],[97.94988040500017,14.798895575000117],[97.94532311300006,14.795314846000155],[97.93816165500019,14.784735419000098],[97.93995201900005,14.782416083000129],[97.94336998800006,14.776678778000159],[97.94605553500017,14.769680080000086],[97.94556725400015,14.763617255000083],[97.93116295700011,14.752183335000126],[97.91716556100006,14.758612372000142],[97.90674889400005,14.775946356000134],[97.90406334700018,14.797756252000086],[97.89722741000017,14.797756252000086],[97.89454186300006,14.779689846000066],[97.9021916020001,14.737697658000087],[97.89380944100006,14.729478257000096],[97.88835696700012,14.72695547100008],[97.88306725400011,14.721502997000128],[97.87549889400012,14.716742255000128],[97.86304772200018,14.715806382000054],[97.85621178500006,14.718491929000123],[97.85035241,14.72361888200014],[97.8459578790001,14.729925848000091],[97.84253991,14.73631419500019],[97.81511478000007,14.85081614800019],[97.79493248800006,14.88015371300011],[97.79476972700016,14.880316473000079],[97.80030358200011,14.890326239000075],[97.80250084700018,14.900946356000103],[97.80225670700005,14.924709377000113],[97.80445397200005,14.935980536000102],[97.81373131600017,14.95018138200011],[97.81592858200005,14.958807684000119],[97.8128361340001,14.983343817000133],[97.80437259200008,14.998683986000087],[97.7911889980002,15.00873444200006],[97.7742619150001,15.017482815000136],[97.77979576900006,15.02578359600011],[97.7874455090001,15.030707098000077],[97.79688561300006,15.032456773000161],[97.80836022200006,15.031154690000077],[97.80437259200008,15.038234768000137],[97.79908287900015,15.051459052000082],[97.79476972700016,15.058498440000136],[97.8068139980002,15.075262762000165],[97.81023196700019,15.095119533000158],[97.80713951900012,15.174953518000095],[97.81088300900015,15.191148179000137],[97.82276451900012,15.209295966000141],[97.79493248800006,15.208807684000147],[97.78028405000012,15.211493231000132],[97.76937910200016,15.223334052000096],[97.74317467500012,15.266831773000135],[97.74089603000007,15.275580145000104],[97.74024498800011,15.291815497000144],[97.7420353520001,15.3179385440001],[97.73829186300006,15.329006252000141],[97.7264103520001,15.339585679000095],[97.72950280000006,15.348944403000132],[97.734060092,15.35529205900015],[97.74089603000007,15.358954169000112],[97.75049889400012,15.360093492000146],[97.76075280000006,15.394232489000146],[97.7669376960001,15.389349677000082],[97.775157097,15.393133856000103],[97.79476972700016,15.407904364000087],[97.78687584700012,15.419419664000117],[97.76140384200019,15.49054596600014],[97.76189212300008,15.503892320000162],[97.7742619150001,15.531398830000015],[97.7674259770001,15.544012762000177],[97.74293053500017,15.604478257],[97.74366295700011,15.610256252000156],[97.74732506600006,15.617743231000034],[97.74732506600006,15.626166083000085],[97.74463951900006,15.634426174000069],[97.74024498800011,15.641262111000072],[97.7444767590001,15.650702216000083],[97.74366295700011,15.664862372000028],[97.7384546230002,15.679917710000138],[97.730235222,15.692124742000106],[97.72559655000006,15.70132070500007],[97.72738691500015,15.710028387000149],[97.73170006600017,15.718410549000126],[97.73389733200005,15.726304429000024],[97.7308048840001,15.733954169000029],[97.71680748800011,15.74945709800015],[97.7129012380001,15.757310289000129],[97.71412194100006,15.763373114000117],[97.72339928500011,15.77179596600017],[97.7264103520001,15.77781810099999],[97.72706139400005,15.84320709800015],[97.72136478000007,15.856187242000045],[97.70606530000012,15.86033763199999],[97.71225019600016,15.887681382000054],[97.69141686300011,15.912298895000065],[97.63721764400006,15.949164130000113],[97.6097111340001,15.983872789000186],[97.58228600400017,16.009100653000147],[97.57569420700005,16.017401434000035],[97.575938347,16.02216217700014],[97.56885826900006,16.062404690000122],[97.56934655000006,16.072577216000166],[97.57178795700005,16.080023505000142],[97.5769962900001,16.084702867000075],[97.58594811300011,16.086330471000096],[97.60084069100006,16.092474677000055],[97.61215254000015,16.107407945000105],[97.6196395190001,16.125433661000116],[97.63900800900008,16.23834870000009],[97.64820397200018,16.259222723000065],[97.65088951900006,16.271307684000178],[97.6499129570001,16.283840236000074],[97.64673912900011,16.293280341000084],[97.63721764400006,16.31220123900003],[97.62647545700011,16.35162995000009],[97.62305748800011,16.394476630000085],[97.62663821700019,16.43756745000009],[97.63721764400006,16.477362372000087],[97.65186608200005,16.507228908000073],[97.67383873800004,16.53343333500011],[97.70313561300006,16.55206940300009],[97.7400822270001,16.559230861000128],[97.74024498800011,16.55927155200014],[97.73552493600019,16.566799221000096],[97.72950280000006,16.572495835000083],[97.72185306100008,16.576849677000055],[97.7129012380001,16.579779364000085],[97.70354251400006,16.57355377800003],[97.65284264400012,16.539862372000027],[97.63038170700011,16.531968492000043],[97.61296634200008,16.530585028000175],[97.5483504570001,16.53815338700012],[97.52295983200005,16.536444403000118],[97.4998478520001,16.531968492000043],[97.4939884770001,16.528998114000146],[97.48943118600002,16.52448151200018],[97.48414147200006,16.520209052000084],[97.47632897200018,16.518296617000104],[97.47071373800006,16.519232489],[97.45875084700006,16.523382880000142],[97.45215905000006,16.524562893000066],[97.42310631600017,16.523423570000134],[97.40259850400011,16.516913153000033],[97.38648522200006,16.50389232000005],[97.37029056100017,16.483547268000148],[97.33741295700011,16.63157786700019],[97.33741295700011,16.655503648000078],[97.32982822700014,16.679846809000097],[97.31119371300011,16.652366398000098],[97.28583595300003,16.658921726000173],[97.25544480700009,16.697868885],[97.24027599700011,16.73190068700002],[97.23017297700014,16.769141733000183],[97.2302091170001,16.796646165000126],[97.24480228000007,16.81745026200018],[97.23568769600014,16.829535223000093],[97.23308353000007,16.839829820000105],[97.23340905000006,16.84894440300009],[97.24048912900017,16.874579169000143],[97.23308353000007,16.874579169000143],[97.22429446700019,16.853257554],[97.2208764980002,16.840643622000115],[97.219493035,16.826157945000162],[97.20899498800006,16.833197333000143],[97.20484459700012,16.84520091400016],[97.20460045700005,16.859808661000088],[97.20582116000017,16.874579169000143],[97.219493035,16.9012718770001],[97.21143639400006,16.907863674000154],[97.20240319100017,16.90680573100009],[97.19157962300008,16.9012718770001],[97.18327884200018,16.921535549000097],[97.18669681100019,16.947007554000024],[97.19898522200006,16.997463283000044],[97.19825280000012,17.01349518400012],[97.19507897200006,17.021877346000068],[97.17847741,17.03847890800013],[97.17212975400017,17.04657623900006],[97.16456139400012,17.059312242000104],[97.1585392590001,17.07371653900016],[97.15723717500012,17.08685944200012],[97.17448978,17.112494208],[97.20240319100017,17.10602448100009],[97.23365319100006,17.095160223000036],[97.260996941,17.107326565],[97.22234134200008,17.12543366100003],[97.20264733200011,17.131577867000185],[97.18189537900011,17.134019273000106],[97.1580509770001,17.12929922100001],[97.14795983200005,17.11688873900009],[97.14193769600014,17.099351304000052],[97.13062584700018,17.079413153000147],[97.11443118600002,17.100327867000104],[97.10027103000019,17.133775132000082],[97.09595787900011,17.16575755400008],[97.10962975400011,17.182440497000115],[97.10962975400011,17.189276434000035],[97.0887150400001,17.193508205000157],[97.08179772200018,17.209784247000087],[97.07862389400012,17.2313500020001],[97.0686141290001,17.251369533000155],[97.04867597700014,17.26080963700018],[97.02361087300002,17.26748281500012],[97.00717207100016,17.27806224200019],[97.01335696700019,17.299139716000113],[96.90455162900011,17.375311591000084],[96.89551842500006,17.384670315000033],[96.88990319100017,17.39472077000009],[96.88705488400015,17.41185130400011],[96.88835696700002,17.44428131700012],[96.88306725400017,17.457424221000068],[96.87159264400012,17.441717841000113],[96.8634546230002,17.40338776200018],[96.85572350400011,17.388495184000035],[96.85206139400006,17.394029039000046],[96.84449303500011,17.402655341000138],[96.84205162900015,17.409002997000087],[96.835703972,17.406195380000142],[96.82984459700016,17.402411200000117],[96.824880405,17.398382880000142],[96.821543816,17.39472077000009],[96.8283797540001,17.388495184000035],[96.85124759200002,17.35956452000012],[96.8846134770001,17.33885325700011],[96.91065514400006,17.317084052000055],[96.91089928500004,17.284857489000117],[96.89047285200016,17.260931708000058],[96.86548912900011,17.24030182500003],[96.84937584700006,17.212958075000145],[96.85572350400011,17.168768622000172],[96.89527428500006,17.101548570000134],[96.91016686300011,17.06683991100006],[96.91089928500004,17.0248070330001],[96.90495853000019,17.010402736000128],[96.88689212300008,16.979396877000013],[96.8790796230002,16.93471914300015],[96.86833743600008,16.928412177000027],[96.83521569100006,16.93602122600005],[96.83806399800008,16.926459052000055],[96.84253991000004,16.917669989],[96.84839928500017,16.909328518000123],[96.85572350400011,16.9012718770001],[96.84278405000006,16.902492580000015],[96.82081139400006,16.907538153000033],[96.80787194100017,16.90867747600008],[96.80787194100017,16.9012718770001],[96.821543816,16.894354559000178],[96.83432050900015,16.88523997599999],[96.84400475400011,16.873928127000013],[96.84888756600017,16.860296942000062],[96.84669030000005,16.844916083000115],[96.8318791020001,16.821926174000154],[96.82569420700004,16.799383856000148],[96.81128991000017,16.76471588700018],[96.79639733200011,16.762355861000128],[96.78939863400015,16.756089585],[96.7908634770001,16.747463283000073],[96.80103600400017,16.737372137000122],[96.78321373800004,16.712347723],[96.76612389400012,16.697088934000035],[96.72584069100006,16.66913483300003],[96.71631920700005,16.658351955000015],[96.69841556100019,16.62995026200018],[96.67947338500018,16.574867894000064],[96.64002680300004,16.545373148000078],[96.61594293000005,16.518004835000127],[96.5589795660002,16.49689671300014],[96.49762682200006,16.48418735200009],[96.43626064100013,16.477768374],[96.400157097,16.504055080000015],[96.37712649800008,16.50812409100017],[96.35710696700019,16.51850006700006],[96.28980553500017,16.566839911000088],[96.27312259200014,16.582098700000145],[96.2659611340001,16.59682851800012],[96.26498457100008,16.621771552000084],[96.2615666020001,16.64069245000009],[96.25562584700018,16.657294012000065],[96.235524936,16.697821356000148],[96.22925866000017,16.718736070000134],[96.2264103520001,16.73940664300015],[96.22575931100019,16.76129791900017],[96.23454837300002,16.77692291900014],[96.27491295700011,16.802679755],[96.28711998800004,16.813137111000074],[96.257578972,16.815904039000046],[96.20655358200005,16.77749258000013],[96.171153191,16.771551825000117],[96.17693118600019,16.762274481000148],[96.19410241,16.743150132000082],[96.19776451900006,16.734035549000097],[96.20460045700005,16.696478583000086],[96.2148543630001,16.679632880000085],[96.24089603000019,16.65013255400011],[96.24610436300006,16.63129303600006],[96.24382571700019,16.619452216000113],[96.23365319100006,16.59788646],[96.23194420700005,16.587225653000147],[96.23462975400011,16.57636139500009],[96.2463485040001,16.55487702000015],[96.29444420700011,16.491522528000118],[96.31006920700005,16.464585679000052],[96.32732181100008,16.453436591000028],[96.33643639400006,16.43943919500016],[96.32129967500006,16.41526927300005],[96.30469811300011,16.406398830000015],[96.28533551400002,16.365993422000045],[96.22181790800019,16.344787269000122],[96.16423587300014,16.332709052000055],[96.14405358200011,16.324896552000084],[96.1189884770001,16.321763414000188],[96.09766686300011,16.328558661000116],[96.08855228,16.349798895],[96.077403191,16.360825914000074],[96.00660241,16.387355861000017],[96.06657962300014,16.33563873900009],[96.06755618600019,16.310248114000057],[96.01880944100017,16.256740627000127],[95.97999108200005,16.223130601000108],[95.96192467500006,16.216701565],[95.94239342500006,16.21906159100017],[95.9417423840001,16.226548570000134],[95.94857832100008,16.23932526200018],[95.95142662900015,16.257635809000035],[95.93384850400011,16.243109442],[95.92212975400017,16.225409247000087],[95.90788821700002,16.211737372000144],[95.88306725400011,16.20917389500015],[95.88624108200005,16.2176781270001],[95.889903191,16.243963934000092],[95.818125847,16.176011460000108],[95.79769941500014,16.144924221000124],[95.776621941,16.14069245000009],[95.75554446700018,16.145249742000047],[95.74586022200006,16.158351955000015],[95.74480228000019,16.17462799700014],[95.74122155000012,16.19481028900016],[95.73462975400011,16.212836005000028],[95.7248641290001,16.22284577000009],[95.7322697270001,16.127264716000113],[95.72527103000017,16.10643138200014],[95.69703209700006,16.065985419000086],[95.690684441,16.048488674000126],[95.690684441,16.000677802000027],[95.6873478520001,15.98822663],[95.66472415500002,15.949204820000103],[95.52344811300011,15.803656317],[95.46159915500002,15.76072825700014],[95.43197675900008,15.733628648000105],[95.41578209700006,15.72296784100017],[95.39649498800011,15.716376044000086],[95.37419681100008,15.71503327],[95.31055748800006,15.723211981000118],[95.29444420700011,15.727850653000061],[95.28793379000008,15.740139065],[95.28256269600016,15.838324286000088],[95.29029381600017,15.846747137000035],[95.30225670700011,15.852484442],[95.31267337300018,15.866522528000148],[95.3177189460001,15.884182033000158],[95.31397545700011,15.90070221600014],[95.33855228000019,15.922023830000017],[95.35474694100006,15.95136139500012],[95.36426842500006,15.984564520000118],[95.3691512380001,16.017401434000035],[95.36850019600016,16.038804429],[95.36361738400008,16.054510809000064],[95.34864342500006,16.086330471000096],[95.3454695970001,16.10496653900016],[95.34961998800006,16.116929429000024],[95.35661868600002,16.129136460000083],[95.36158287900015,16.148382880000113],[95.35547936300004,16.148382880000113],[95.34791100400011,16.13882070500013],[95.3382267590001,16.12986888200011],[95.33025149800014,16.119940497000115],[95.32748457100016,16.107407945000105],[95.33179772200018,16.09105052300019],[95.3455509770001,16.06085846600017],[95.34864342500006,16.041571356000034],[95.34571373800006,15.996486721000066],[95.34180748800006,15.983872789000186],[95.3118595710001,15.947088934000094],[95.2971297540001,15.902980861000017],[95.27475019600016,15.876450914000044],[95.25163821700014,15.868231512000149],[95.23878014400012,15.893947658000016],[95.24610436300011,15.915228583000085],[95.26270592500006,15.940904039000044],[95.2758895190001,15.970648505000057],[95.27295983200005,16.003729559000092],[95.23902428500006,15.950344143000152],[95.2239689460001,15.918605861000103],[95.2176212900001,15.884263414000046],[95.224375847,15.810126044000112],[95.2127384770001,15.786566473000148],[95.17359459700018,15.77781810099999],[95.14454186300011,15.789129950000145],[95.12574303500006,15.817613023000161],[95.11622155000006,15.855292059000147],[95.11524498800004,15.893947658000016],[95.1375431650001,16.00665924700003],[95.1289168630001,16.03851959800015],[95.1077580090001,15.983872789000186],[95.09766686300006,16.025132554000052],[95.11019941500015,16.06745026200015],[95.13795006600006,16.100327867000047],[95.17359459700018,16.11359284100017],[95.2072046230002,16.11155833500014],[95.2176212900001,16.11359284100017],[95.22592207100014,16.119940497000115],[95.22250410200016,16.12417226800012],[95.21225019600008,16.12653229400017],[95.20069420700011,16.127264716000113],[95.1936955090001,16.129380601000108],[95.18881269600016,16.13882070500013],[95.18360436300006,16.140936591000138],[95.17847741000006,16.139960028000175],[95.16309655000012,16.134711005],[95.15552819100006,16.13401927300005],[95.14869225400011,16.13202545800003],[95.1424259770001,16.13483307500014],[95.13575280000006,16.148382880000113],[95.1289168630001,16.148382880000113],[95.1215926440001,16.131659247000083],[95.09400475400011,16.093654690000093],[95.07056725400011,16.07485586100013],[95.06788170700005,16.048325914000156],[95.07374108200011,15.997503973000121],[95.07292728000007,15.970648505000057],[95.05502363400008,15.84613678600006],[95.04688561300011,15.822088934000034],[95.0339461600001,15.805731512000122],[95.02377363400015,15.802191473000123],[95.00993899800008,15.799302476000106],[94.99756920700011,15.795314846000123],[94.99244225400011,15.788397528000031],[94.99048912900017,15.78123607000019],[94.98617597700016,15.773342190000037],[94.9807235040001,15.766831773000106],[94.97559655000012,15.764146226000049],[94.94996178500006,15.762640692],[94.93775475400017,15.764146226000049],[94.90357506600016,15.77781810099999],[94.85865319100017,15.782619533000073],[94.84685306100017,15.79059479400003],[94.85865319100017,15.808823960000026],[94.8693139980002,15.815497137000149],[94.88054446700019,15.820379950000031],[94.890391472,15.827053127000097],[94.89673912900017,15.839260158000158],[94.89633222700016,15.84739817900008],[94.89283287900017,15.856634833000143],[94.88770592500006,15.864203192000089],[94.88257897199999,15.86717357000019],[94.86394290500002,15.844142971000124],[94.85320071700002,15.840277411000116],[94.84839928500006,15.86375560099999],[94.85010826900006,15.895453192000062],[94.84839928500006,15.908148505000112],[94.83594811300011,15.936672268000038],[94.83472741,15.949164130000113],[94.83961022200018,15.962062893000123],[94.85035241000016,15.978094794000027],[94.8628035820001,15.99176666900017],[94.87256920700005,15.997503973000121],[94.8894962900001,15.999457098000093],[94.90723717500012,16.006048895000063],[94.92066491,16.018622137000147],[94.92408287900011,16.03851959800015],[94.88933353000007,16.017401434000035],[94.88453209700018,16.036037502000042],[94.88021894600016,16.07998281500015],[94.86353600400011,16.11237213700015],[94.86312910200009,16.127752997000087],[94.868418816,16.14203522300009],[94.8870548840001,16.170803127000127],[94.90007571700008,16.18378327000012],[94.9173283210001,16.19236888200014],[94.94092858200011,16.19554271000011],[94.95923912900015,16.20087311400009],[94.97510826900012,16.214341539000074],[94.98682701900012,16.23224518400012],[94.99244225400011,16.25079987200003],[94.988047722,16.24437083500011],[94.9747827480002,16.23151276200018],[94.97193444100004,16.226548570000134],[94.9669702480002,16.220404364000057],[94.94288170700004,16.216376044000082],[94.9246525400001,16.208807684000035],[94.9025171230002,16.20962148600013],[94.89307701900012,16.20575592700014],[94.868418816,16.173895575000117],[94.8657332690001,16.16889069200009],[94.85466556100017,16.160223700000174],[94.8494572270001,16.139797268],[94.84839928500006,16.09650299700003],[94.8505965500001,16.08576080900012],[94.85987389400006,16.06541575700011],[94.86207116000017,16.055609442],[94.864024285,16.049627997000172],[94.86768639400006,16.045314846000068],[94.86939537900017,16.040961005000085],[94.85645592500006,16.01850006700009],[94.85523522200006,16.013983466000028],[94.84620201900006,15.999986070000162],[94.78687584700018,15.962144273000106],[94.774180535,15.943345445000164],[94.74537194100017,15.880845445000132],[94.73519941500015,15.868394273000105],[94.72120201900006,15.856675523000135],[94.70386803500017,15.848456122000028],[94.68384850400011,15.846747137000035],[94.65870201900006,15.854478257000137],[94.64893639400012,15.868597723000065],[94.64454186300011,15.887111721000094],[94.63550866,15.908148505000112],[94.6328231130001,15.889715887000179],[94.62240644600016,15.89154694200006],[94.61019941500015,15.904974677000057],[94.60132897199999,15.921210028000088],[94.62867272200018,15.939154364000146],[94.66553795700005,15.957912502000013],[94.70313561300006,15.98236725500014],[94.7322697270001,16.017401434000035],[94.74170983200005,16.0672875020001],[94.74903405000012,16.075669664000042],[94.7580672540001,16.08344147300015],[94.76587975400011,16.0931664080001],[94.76978600400011,16.10228099200019],[94.7719832690001,16.11098867400007],[94.77271569100006,16.13100820500013],[94.77662194100006,16.13491445500013],[94.78516686300006,16.139634507000054],[94.79265384200002,16.14789459800012],[94.79371178500011,16.162014065000065],[94.77515709700018,16.151556708],[94.7659611340001,16.139471747000087],[94.75220787900011,16.107407945000105],[94.7254337900001,16.063910223000065],[94.718028191,16.04466380400011],[94.70533287900011,16.020656643000095],[94.68921959700018,16.00731028900016],[94.67139733200011,15.99656810100005],[94.6147567070001,15.943670966000083],[94.58985436300006,15.931586005],[94.56657962300007,15.935492255],[94.5623478520001,15.96185944200009],[94.58871504000015,15.996242580000128],[94.642344597,16.04466380400011],[94.66334069100016,16.07998281500015],[94.67888431100008,16.12128327],[94.68669681100008,16.165350653000086],[94.68384850400011,16.20917389500015],[94.668711785,16.240871486000017],[94.66521243600002,16.257635809000035],[94.67359459700016,16.274725653000175],[94.68531334700018,16.291978257],[94.70492597700014,16.353216864000114],[94.71070397200012,16.360337632000082],[94.7205509770001,16.362127997000144],[94.7322697270001,16.36066315300009],[94.7322697270001,16.36749909100011],[94.72169030000006,16.37848541900017],[94.70582116000006,16.473089911000088],[94.70622806100002,16.484442450000145],[94.71070397200012,16.497219143000095],[94.71729576900006,16.502915757000082],[94.7254337900001,16.505113023000163],[94.73161868600008,16.510199286],[94.7322697270001,16.524562893000066],[94.69727623800011,16.50836823100012],[94.6839298840001,16.510809637000065],[94.6770125660001,16.531968492000043],[94.67017662900017,16.509670315],[94.68384850400011,16.42206452000009],[94.68384850400011,16.364081122000115],[94.67847741000017,16.348537502000013],[94.65512129000015,16.322699286000088],[94.6497501960001,16.30882396],[94.64372806100019,16.28351471600014],[94.62794030000006,16.260199286000145],[94.60670006600017,16.243109442],[94.58399498800011,16.23651764500012],[94.58204186300006,16.243475653000118],[94.5926212900001,16.259222723000065],[94.61500084700006,16.285549221000068],[94.63550866,16.326483466000113],[94.62973066500015,16.34418366100003],[94.61817467500012,16.34202708500011],[94.60670006600017,16.32599518400012],[94.59888756600017,16.293646552000027],[94.59253991000006,16.28351471600014],[94.58366946700018,16.274847723000146],[94.57398522200006,16.271307684000178],[94.56202233200011,16.273749091000113],[94.55404707100016,16.279730536000113],[94.54761803500006,16.28656647300015],[94.53988691500014,16.291693427000055],[94.52116946700008,16.295477606000176],[94.51563561300006,16.28725820500007],[94.518809441,16.247381903000118],[94.51734459700006,16.223944403000033],[94.51319420700011,16.205145575000085],[94.50700931100002,16.18960195500007],[94.45557701900006,16.105617580000015],[94.4280705090001,16.07416413],[94.39649498800011,16.05898672100001],[94.375743035,16.0560570330001],[94.360606316,16.04926178600006],[94.35132897200018,16.03436920800003],[94.34799238400015,16.007147528000118],[94.3400171230002,15.996242580000128],[94.32146243600019,15.989935614],[94.30079186300006,15.989732164000044],[94.28663170700005,15.997503973000121],[94.2656356130001,15.975083726000136],[94.25147545700005,15.96845123900006],[94.23951256600006,15.976304429000052],[94.214610222,16.014797268000123],[94.20980879000008,16.028998114000146],[94.20923912900017,16.044501044000143],[94.21509850400011,16.157660223000065],[94.23780358200005,16.273138739000146],[94.23536217500012,16.348374742000047],[94.23812910200016,16.36066315300009],[94.24170983200004,16.366034247000144],[94.25407962300008,16.379461981000063],[94.2586369150001,16.387355861000017],[94.27312259200008,16.466498114],[94.26832116000016,16.527492580000096],[94.27312259200008,16.53815338700012],[94.30860436300006,16.527777411000113],[94.33106530000006,16.52863190300003],[94.34131920700011,16.548407294000143],[94.34896894600008,16.578111070000162],[94.34620201900006,16.59243398600016],[94.32764733200004,16.60024648600013],[94.32764733200004,16.60643138200011],[94.3520613940001,16.618597723],[94.36198978000019,16.63548411700019],[94.3623153000001,16.685858466000052],[94.36443118600002,16.701117255000025],[94.37338300900015,16.729315497000172],[94.37549889400006,16.740790106000034],[94.379649285,16.755357164000046],[94.39844811300006,16.775783596000124],[94.4026798840001,16.788275458000143],[94.40064537900017,16.830633856000034],[94.39649498800011,16.84662506700012],[94.38347415500002,16.872015692000062],[94.37891686300006,16.88694896],[94.38233483200011,16.9012718770001],[94.39063561300006,16.906642971000124],[94.40064537900017,16.904445705000157],[94.41187584700006,16.900702216000028],[94.42318769600016,16.9012718770001],[94.43531334700006,16.910142320000134],[94.4646916020001,16.949652411],[94.44434655000005,16.949652411],[94.45386803500006,16.965236721000096],[94.45777428500006,16.98289622599999],[94.45671634200008,17.050604559000035],[94.45785566500008,17.059556382000054],[94.46192467500006,17.069647528000118],[94.47836347700016,17.09308502800009],[94.48414147200006,17.105698960000083],[94.48878014400006,17.124212958],[94.48568769600008,17.14101797100001],[94.45777428500006,17.153753973000146],[94.45264733200011,17.166205145000063],[94.45435631600006,17.180080471000068],[94.4646916020001,17.189276434000035],[94.51091556100002,17.16901276200012],[94.518809441,17.172512111000014],[94.52247155000006,17.17780182500009],[94.53044681100013,17.181952216000028],[94.53785240999999,17.187404690000065],[94.53988691500014,17.196722723],[94.53500410200014,17.205145575000145],[94.526621941,17.209418036000088],[94.51783287900011,17.21255117400015],[94.51197350400011,17.217189846000068],[94.50863691500015,17.23012929900007],[94.51197350400011,17.275213934000064],[94.5188908210001,17.28815338700015],[94.53321373800006,17.29035065300006],[94.54542076900006,17.296087958000115],[94.54615319100017,17.319647528000147],[94.55933678500004,17.316310940000122],[94.57252037900017,17.311102606000034],[94.58448326900012,17.303290106000148],[94.59449303500011,17.292303778000086],[94.57683353000019,17.358343817],[94.5677189460001,17.462876695000105],[94.56657962300007,17.47662995000003],[94.57007897200006,17.49396393400012],[94.57032311300011,17.505194403000033],[94.56657962300007,17.518866278000147],[94.55933678500004,17.532904364000032],[94.55543053500006,17.538397528000033],[94.55388431100019,17.54360586100013],[94.55347741000017,17.55638255400008],[94.560313347,17.582098700000028],[94.57691491000016,17.57623932500017],[94.59701582100008,17.55776601800015],[94.61500084700006,17.545558986000074],[94.6092228520001,17.55955638200014],[94.5906681650001,17.593247789000046],[94.59107506600017,17.604193427000112],[94.59522545700005,17.615464585000026],[94.58952884200002,17.626410223000065],[94.57398522200006,17.641791083000115],[94.56299889400006,17.661688544000114],[94.55689537900011,17.682440497000115],[94.55347741000017,17.727362372000115],[94.54395592500006,17.74803294500013],[94.50171959700018,17.786607164000188],[94.49219811300004,17.81679922100001],[94.48951256600017,17.876206773000078],[94.48340905000012,17.902289130000113],[94.44743899800002,17.973334052],[94.44434655000005,17.98810455900015],[94.45085696700002,18.00242747600005],[94.4817814460001,18.015204169000086],[94.49219811300004,18.02594635600012],[94.49488366000006,18.048814195000105],[94.49057050900015,18.07249583500014],[94.48096764400006,18.094224351000108],[94.46192467500006,18.12177155200014],[94.46062259200008,18.132798570000162],[94.46062259200008,18.144191799000126],[94.45785566500008,18.155707098000093],[94.45232181100019,18.165106512000094],[94.44109134200019,18.176418361000074],[94.4367781910001,18.182359117000104],[94.43018639400012,18.222154039000102],[94.4228621750001,18.242499091000084],[94.40650475400011,18.251288153000147],[94.360606316,18.246079820000162],[94.34156334700006,18.24750397300012],[94.32764733200004,18.25873444200012],[94.32585696700006,18.267726955000157],[94.32618248800011,18.281642971000124],[94.32797285200016,18.29511139500012],[94.33106530000006,18.303127346000068],[94.3392033210001,18.305975653000086],[94.35027103000013,18.292914130000113],[94.36589603000017,18.29857005400011],[94.37859134200008,18.28709544500016],[94.38917076900012,18.28603750200001],[94.39698326900012,18.29144928600006],[94.4090275400001,18.30882396000014],[94.41700280000006,18.313950914000074],[94.40528405000006,18.330308335000083],[94.39958743600019,18.348211981000034],[94.38965905000012,18.362697658000073],[94.3654891290001,18.368597723],[94.35059655000006,18.375230210000083],[94.34400475400015,18.391262111000074],[94.3392033210001,18.41022370000017],[94.33106530000006,18.42597077000012],[94.27963300900015,18.480210679],[94.25896243600008,18.509019273000106],[94.24496504000008,18.53925202000012],[94.25896243600008,18.535711981000034],[94.26221764400012,18.545111395000063],[94.25294030000006,18.62799713700018],[94.24878991,18.638861395000063],[94.14893639400012,18.731024481000034],[94.14893639400012,18.738511460000026],[94.15642337300007,18.738511460000026],[94.17457116000016,18.725043036000116],[94.21159915500017,18.725531317],[94.27930748800006,18.738511460000026],[94.26368248800006,18.745510158000073],[94.25245201900006,18.75214264500015],[94.22803795700011,18.735541083],[94.2124129570001,18.741848049000126],[94.18295332100016,18.785630601000022],[94.15308678500006,18.821030992000104],[94.1473087900001,18.83982982000005],[94.14893639400012,18.86823151200018],[94.13819420700011,18.86009349200016],[94.13355553500017,18.846502997000115],[94.13331139400012,18.831854559000092],[94.1351017590001,18.82046133000013],[94.11963951900006,18.81663646000011],[94.098399285,18.821722723000146],[94.0784611340001,18.833075262000122],[94.06690514400012,18.848334052],[94.05713951900005,18.84373607000005],[94.05323326900006,18.840887762000122],[94.03809655000006,18.859116929],[94.03207441500015,18.888576565000065],[94.03663170700011,18.918036200000145],[94.05323326900006,18.936509507],[94.04037519600008,18.97117747600005],[94.03907311300006,18.984930731000176],[94.04118899800001,18.997626044000057],[94.05103600400017,19.014593817000033],[94.05323326900006,19.022162177000055],[94.06348717500006,19.040187893000095],[94.06609134200008,19.042873440000065],[94.06446373800004,19.049383856000148],[94.06169681100019,19.057074286000088],[94.06006920700005,19.06370677300005],[94.08692467500006,19.08051178600006],[94.09424889400006,19.087347723000065],[94.08008873800006,19.087347723000065],[94.05665123800006,19.080959377000156],[94.04656009200019,19.081122137000122],[94.030528191,19.08795807500003],[94.02906334700006,19.095404364000032],[94.03443444099999,19.105861721000093],[94.03907311300006,19.122056382000054],[94.03785241,19.132269598000093],[94.03191165500017,19.15399811400006],[94.0327254570001,19.169256903000033],[94.03736412900011,19.181870835],[94.05054772200016,19.208319403000175],[94.05323326900006,19.22138092700005],[94.04590905000006,19.304673570000162],[94.04997806100019,19.320705471000068],[94.0599064460001,19.329901434000035],[94.06967207100016,19.35089752800009],[94.07390384200008,19.37384674700017],[94.06690514400012,19.38898346600017],[94.0569767590001,19.36334870000009],[94.0306095710001,19.315904039000156],[94.02523847700009,19.286566473000065],[94.03321373800011,19.23509349200016],[94.03337649800008,19.204535223000065],[94.02222741000006,19.190985419000082],[94.01042728000007,19.179999091000028],[93.99439537900017,19.15908437700007],[93.9734806650001,19.146307684000035],[93.9471134770001,19.159654039000046],[93.94263756600006,19.169907945000162],[93.94117272200018,19.19497304900007],[93.93726647200018,19.20465729400003],[93.92546634200002,19.21027252800003],[93.91602623800011,19.203924872000087],[93.91041100400011,19.190985419000082],[93.909922722,19.176703192],[93.9148869150001,19.169582424000126],[93.9471134770001,19.13914622599999],[93.9554142590001,19.126898505000113],[93.95557701900006,19.118312893],[93.95240319100017,19.10984935100008],[93.95020592500012,19.098211981000148],[93.95248457100016,19.032049872000172],[93.95777428500006,19.01219310100008],[93.96452884200019,19.001044012000065],[93.98121178500006,18.98065827000006],[93.98438561300011,18.967840887000037],[93.98340905000012,18.956691799],[93.9786889980002,18.94159577],[93.97754967500006,18.933417059000092],[93.97388756599999,18.922796942000062],[93.95020592500012,18.895493882000082],[93.94792728000002,18.89423248900006],[93.93930097700009,18.89052969000012],[93.93726647200018,18.889349677],[93.93718509200019,18.883775132],[93.93913821700008,18.87620677300005],[93.9419051440001,18.869859117000104],[93.94410241,18.86823151200018],[93.93043053500017,18.858628648000103],[93.92025800900015,18.86737702000009],[93.90739993600019,18.881781317000147],[93.86573326900006,18.895493882000082],[93.81373131600017,18.94399648600013],[93.79395592500005,18.953924872000144],[93.75025475400017,18.970404364000146],[93.73462975400011,18.981187242000047],[93.7267358730002,18.991766669000086],[93.72120201900012,19.00128815300009],[93.71485436300006,19.010199286000116],[93.703868035,19.018459377000013],[93.6935327480002,19.020575262000033],[93.68604576900006,19.01821523600007],[93.67888431100019,19.01959870000014],[93.669688347,19.03270091400013],[93.66773522200018,19.04393138200011],[93.67090905000006,19.066880601000104],[93.66627037900011,19.07737864799999],[93.66041100400015,19.085760809000032],[93.65503991,19.097072658000044],[93.65088951900006,19.108791408000016],[93.64918053500017,19.118638414000042],[93.64234459700006,19.13422272300012],[93.60743248800011,19.162258205000125],[93.59400475400011,19.176703192],[93.56714928500004,19.231105861000017],[93.55640709700006,19.238185940000065],[93.49781334700018,19.31391022300015],[93.48707116000017,19.333726304000052],[93.48324629000015,19.350653387000037],[93.48414147200005,19.392726955000015],[93.49089603000019,19.407619533000158],[93.50782311300004,19.42259349200019],[93.5301212900001,19.432074286],[93.5529891290001,19.430568752000127],[93.5603947270001,19.423814195000105],[93.5638126960001,19.414740302000112],[93.568044467,19.406724351000076],[93.57715905000012,19.40326569200006],[93.61133873800011,19.40326569200006],[93.63111412900011,19.372300523000135],[93.63697350400011,19.349066473],[93.6213485040001,19.334377346],[93.66529381600006,19.305609442000062],[93.68751061300011,19.296698309000035],[93.71753991000006,19.293402411],[93.7229110040001,19.26845937700007],[93.75464928500004,19.247137762000094],[93.79688561300006,19.235174872000144],[93.8342391290001,19.238185940000065],[93.86548912900011,19.25409577000009],[93.92994225400011,19.29975006700012],[93.95020592500012,19.320705471000068],[93.95093834700006,19.325262762000122],[93.94906660200016,19.33759186400006],[93.95020592500012,19.34178294500019],[93.95313561300011,19.343451239],[93.96143639400012,19.346136786],[93.96387780000006,19.348049221000124],[93.98096764400006,19.372259833000143],[93.98731530000012,19.38670482000019],[93.98804772200006,19.404933986000074],[93.98438561300011,19.437445380000057],[93.99024498800006,19.449652411000116],[93.99105879000015,19.457180080000096],[93.98438561300011,19.464056708],[93.9783634770001,19.46377187700007],[93.9471134770001,19.45791250200001],[93.92383873800011,19.46238841400016],[93.91456139400006,19.47280508000007],[93.91920006600016,19.484279690000037],[93.93726647200018,19.492010809000035],[93.9267684250001,19.497015692000062],[93.91602623800011,19.498928127000127],[93.89242597700014,19.498846747000144],[93.88209069100017,19.501898505000142],[93.85523522200018,19.526800848000065],[93.81470787900017,19.553045966000113],[93.79444420700023,19.571234442],[93.78565514400006,19.591294664000042],[93.77719160200016,19.60309479400003],[93.73959394600016,19.617499091000084],[93.73121178500017,19.632554429000024],[93.73845462300018,19.651353257000054],[93.75611412900011,19.661078192],[93.7786564460001,19.662502346000068],[93.80005944100004,19.656480210000055],[93.79444420700023,19.67357005400011],[93.80250084700016,19.68886953300007],[93.816172722,19.70335521000011],[93.827403191,19.718573309000092],[93.81316165500012,19.73948802300005],[93.80681399800008,19.745835679],[93.79916425900015,19.717718817],[93.78386478000017,19.691107489000057],[93.76107832100016,19.674872137000094],[93.73121178500017,19.677639065000065],[93.72095787900017,19.68528880399999],[93.71314537900017,19.697658596000124],[93.70948326900012,19.713527736000156],[93.7112736340001,19.731634833000086],[93.71876061300006,19.743597723],[93.74187259200019,19.75405508000007],[93.75163821700008,19.765692450000085],[93.72193444100004,19.768988348000118],[93.70883222700016,19.753810940000122],[93.7024845710001,19.73436107000005],[93.6935327480002,19.724798895000063],[93.64844811300006,19.725165106000148],[93.63624108200017,19.735012111000103],[93.63550866000004,19.75950755400011],[93.62330162900017,19.733587958000115],[93.61557050900015,19.723863023000078],[93.6014103520001,19.718573309000092],[93.6014103520001,19.783433335],[93.60645592500006,19.79612864800005],[93.66065514400012,19.870835679000052],[93.67994225400011,19.883368231000148],[93.7039494150001,19.885199286000113],[93.7380477220001,19.88247304900007],[93.72877037900011,19.89378489800005],[93.72559655000005,19.905585028000115],[93.73047936300004,19.91429271],[93.745371941,19.916571356000176],[93.74000084700006,19.92511627800009],[93.733653191,19.93211497599999],[93.72624759200002,19.936590887000037],[93.71753991000006,19.93768952000009],[93.711680535,19.93382396],[93.71159915500002,19.919663804000052],[93.70753014400006,19.916571356000176],[93.65650475400017,19.916205145000063],[93.64551842500012,19.913478908000098],[93.63819420700011,19.91030508000004],[93.6291610040001,19.909491278000118],[93.61133873800011,19.910345770000035],[93.60840905000012,19.906642971000068],[93.60084069100006,19.88857656500015],[93.59400475400011,19.88247304900007],[93.58073978000019,19.881333726000136],[93.56674238400015,19.885931708000058],[93.55469811300006,19.893866278000033],[93.54672285200016,19.902899481000034],[93.55160566500015,19.90574778900016],[93.55958092500012,19.91290924700003],[93.56592858200023,19.916571356000176],[93.52906334700006,19.930080471000153],[93.51832116000006,19.93960195500013],[93.53191165500019,19.95136139500012],[93.51710045700023,19.958563544000143],[93.51197350400011,19.97044505400011],[93.51685631600017,19.981187242000104],[93.53191165500019,19.98484935100008],[93.52955162900017,19.992173570000162],[93.52564537900017,19.999172268000066],[93.51368248800011,19.99306875200007],[93.50342858200011,19.98627350500014],[93.49586022200006,19.977362372000115],[93.49219811300011,19.96499258000007],[93.48731530000012,19.970200914000156],[93.4754337900001,19.979559637000094],[93.470469597,19.98484935100008],[93.4632267590001,19.961818752000013],[93.45704186300004,19.954250393000148],[93.44654381600006,19.95136139500012],[93.43531334700006,19.955389716000084],[93.42318769600016,19.96531810099999],[93.41358483200011,19.977525132000082],[93.40967858200011,19.988592841000113],[93.40447024800018,20.01292552299999],[93.38396243600002,20.064398505000057],[93.3823348320001,20.088527736000074],[93.37484785200016,20.088527736000074],[93.37452233200021,20.05060455900015],[93.37208092500006,20.03082916900003],[93.36182701900006,20.026434637000065],[93.35596764400012,20.038397528000175],[93.34066816500015,20.102199611000014],[93.33383222700016,20.102199611000014],[93.32650800900015,20.08128489800005],[93.3127547540001,20.06537506700012],[93.29395592500006,20.05418528900013],[93.27247155000005,20.047512111000074],[93.24463951900005,20.049872137000037],[93.2151798840001,20.059312242000047],[93.19027754000015,20.06443919500005],[93.17628014400012,20.05369700700014],[93.16138756600006,20.060614325000028],[93.14747155000006,20.07001373900006],[93.1360783210001,20.081529039000102],[93.12842858200005,20.094671942000062],[93.12989342500006,20.0751000020001],[93.13672936300006,20.05923086100016],[93.15577233200023,20.026434637000065],[93.17628014400012,19.957505601000022],[93.23585045700011,19.847235419000025],[93.23829186300006,19.820990302],[93.21762129000015,19.837103583000054],[93.20142662900017,19.86277903900013],[93.17628014400012,19.916571356000176],[93.16065514400012,19.966253973000065],[93.14812259200014,19.99433014500009],[93.13152103000007,20.006577867000047],[93.10914147200005,19.993801174],[93.10206139400006,19.96409739799999],[93.10613040500002,19.93065013200011],[93.1243595710001,19.893866278000033],[93.12989342500006,19.862372137000122],[93.13453209700016,19.848293361000074],[93.1473087900001,19.833034572000102],[93.15113366000006,19.83014557500017],[93.15577233200023,19.82782623900003],[93.15894616,19.823675848000065],[93.16895592500012,19.809393622000172],[93.16879316500015,19.80731842700005],[93.14918053500017,19.828924872000144],[93.13941491000004,19.831691799000012],[93.13453209700016,19.834051825000174],[93.12501061300006,19.84666575700005],[93.1126408210001,19.874335028000147],[93.05941816500014,19.951117255000085],[93.05274498800011,19.968410549000065],[93.0486759770001,19.994818427000055],[93.0384220710001,20.01292552299999],[93.01172936300004,20.04010651200018],[92.99154707100016,20.06753164300012],[92.98072350400017,20.077948309000035],[92.97592207100014,20.087836005000142],[92.97413170700011,20.11725495000003],[92.97022545700011,20.12946198100009],[92.98829186300011,20.12498607000005],[93.04249108200005,20.12946198100009],[93.05445397200018,20.134751695000162],[93.0647078790001,20.147121486000014],[93.08008873800004,20.17047760600012],[93.08269290500006,20.165025132000082],[93.08497155000012,20.161118882],[93.08668053500006,20.156805731000176],[93.08692467500006,20.149969794000143],[93.09424889400006,20.149969794000143],[93.11548912900017,20.20262278900016],[93.1209416020001,20.21198151200009],[93.1209416020001,20.218207098000065],[93.08920332100016,20.210353908000073],[93.04737389400005,20.16795482000019],[93.01856530000012,20.149969794000143],[92.99048912900011,20.154933986000017],[92.98747806100019,20.186672268000066],[93.001231316,20.23932526200018],[93.01880944100006,20.256496486000017],[93.04127037900017,20.332017320000134],[93.05616295700011,20.349188544000143],[93.08082116000011,20.358547268000095],[93.09131920700005,20.381008205000096],[93.10043379000015,20.431097723],[93.08187910200016,20.416978257000082],[93.07252037900011,20.376613674],[93.05958092500012,20.36225006700012],[93.04322350400011,20.364935614000032],[93.03419030000006,20.38422272300015],[93.031016472,20.40965403900016],[93.03223717500005,20.431097723],[93.07056725400017,20.49616120000006],[93.08562259200018,20.532945054000137],[93.07325280000006,20.554632880000113],[93.0686955090001,20.53571198100009],[93.06031334700006,20.51337311400006],[93.04908287900011,20.491766669000143],[93.03565514400006,20.475165106000087],[93.02263431100008,20.452541408000126],[93.02003014400006,20.42401764500012],[93.02491295700023,20.36847565300009],[93.01628665500002,20.32485586100007],[92.99480228000019,20.286607164000046],[92.93604576900012,20.21198151200009],[92.89844811300011,20.135687567000062],[92.89503014400012,20.133246161000113],[92.88941491000017,20.127997137000037],[92.88054446700002,20.123195705000157],[92.86768639400012,20.122015692000115],[92.86036217500012,20.124945380000053],[92.85523522200012,20.130601304000052],[92.84669030000006,20.143133856000034],[92.782969597,20.189846096000124],[92.77214603000002,20.201483466000052],[92.7736108730002,20.216742255000025],[92.77816816500014,20.231634833000058],[92.78663170700005,20.24591705900015],[92.79948978000019,20.259182033000073],[92.86402428500017,20.300767320000077],[92.90121504000015,20.308050848000065],[92.94288170700011,20.32123444200012],[92.93392988400008,20.325913804000052],[92.92530358200011,20.327826239],[92.90528405000012,20.328070380000142],[92.89332116000017,20.329535223],[92.88965905000012,20.333644924000154],[92.88770592500006,20.340277411000116],[92.8807072270001,20.349188544000143],[92.85661868600019,20.367621161],[92.846934441,20.377346096000124],[92.84050540500019,20.39012278900016],[92.83155358200005,20.478949286000116],[92.82691491000006,20.495062567],[92.81527754000015,20.504706122000144],[92.79265384200019,20.506252346],[92.79656009200008,20.483832098],[92.78532962300008,20.46295807500003],[92.76929772200018,20.45506419500005],[92.75855553500017,20.472113348],[92.77344811300011,20.477280992000104],[92.77898196700008,20.478257554],[92.75098717500012,20.49852122599999],[92.74170983200005,20.529282945000162],[92.73658287900015,20.56313711100013],[92.72071373800004,20.59223053600003],[92.69955488400015,20.619533596000096],[92.66285241000006,20.679185289000188],[92.63502037900017,20.697984117000047],[92.659434441,20.65281810099999],[92.7044376960001,20.589056708000143],[92.70826256599999,20.578680731000063],[92.7169702480002,20.49998607000005],[92.73747806100008,20.444769598000118],[92.73845462300014,20.42837148600013],[92.731211785,20.38271719],[92.73926842500006,20.279689846000124],[92.731211785,20.259182033000073],[92.72388756600012,20.271429755000057],[92.70630944100017,20.292914130000085],[92.6971134770001,20.308254299000126],[92.65316816500015,20.41828034100017],[92.63257897200006,20.446600653000115],[92.5398869150001,20.52753327000009],[92.52914472700016,20.543402411000027],[92.52003014400006,20.589667059000092],[92.50700931100019,20.609279690000065],[92.4705509770001,20.643377997000172],[92.46322675900008,20.65387604400014],[92.45964603000007,20.662583726000136],[92.45362389400006,20.668524481000148],[92.43921959700018,20.670721747000144],[92.42896569100006,20.673895575000117],[92.40845787900011,20.68797435100005],[92.39820397200018,20.69114817900011],[92.3811141290001,20.70014069200012],[92.37086022200018,20.72134023600013],[92.36068769600014,20.76691315300009],[92.30543053500006,20.917710679],[92.28809655000005,20.943589585],[92.28101647200018,20.959418036000116],[92.27051842500012,21.049017645],[92.26514733200017,21.061102606000087],[92.22427209500015,21.09318389900001],[92.21838098200013,21.108635152000105],[92.21176639800015,21.123517965000143],[92.18830529800007,21.144085185000122],[92.1807605390002,21.1578827930001],[92.17497277900004,21.175607809000027],[92.17838342300016,21.191265767000157],[92.18396447700016,21.220876364],[92.18520471200011,21.24041005500011],[92.17807336400007,21.280149231],[92.17828007100009,21.299734599000132],[92.18365441900019,21.31720123300009],[92.21155969200018,21.354873352000098],[92.22509891700017,21.397454732000185],[92.23626102800007,21.41709177700004],[92.25290083800022,21.419520569000085],[92.28452681500019,21.419055481000058],[92.32266402200015,21.461895243000086],[92.3547034100001,21.45181834000006],[92.36793257700018,21.43543691000009],[92.37217004400011,21.419055481000058],[92.37423710100009,21.402312318],[92.38116174400008,21.38479400600015],[92.38963667800007,21.3765257780001],[92.40028202400006,21.370996400000095],[92.42312300700016,21.363658345000104],[92.46539432800014,21.35983429000005],[92.49867395000008,21.366603902000108],[92.52451216700008,21.361126201000033],[92.5439425050001,21.32092193699999],[92.55159061700007,21.280510966000023],[92.5587219650001,21.259840393],[92.57060754400001,21.24728302000007],[92.59086470600002,21.24888499000012],[92.6143258060001,21.26314768499999],[92.6337561440001,21.282216289000175],[92.64285119700017,21.29844268800018],[92.6410399060002,21.308585918000105],[92.63923384600017,21.318699850000186],[92.6032670490001,21.42008901000004],[92.59272505700002,21.47016347200004],[92.59024458800015,21.49553660100004],[92.57556848200008,21.733971660000023],[92.5930351160001,21.88693389900008],[92.59024458800015,21.917164612000093],[92.57587854000016,21.977574362000027],[92.58383671100015,21.980313212000155],[92.59127811700013,21.98424062200003],[92.59799605400005,21.989304912000094],[92.60388716700018,21.995402731000137],[92.61525598200015,22.008786926000184],[92.62755497200011,22.012352600000057],[92.63985396300015,22.01338612900004],[92.65091272000015,22.01917389],[92.65835412600009,22.03281646800012],[92.65835412600009,22.046562398000148],[92.65608036300014,22.06056671100005],[92.65618371600007,22.075294495000048],[92.66207482900009,22.09477651000004],[92.66455529800005,22.093846334000187],[92.66951623600019,22.09265777700007],[92.6739604090002,22.095241598000154],[92.67468387900013,22.105576884000087],[92.67106652800013,22.133895569000074],[92.6739604090002,22.14707305900005],[92.68377893100009,22.154307760000123],[92.70806685400007,22.147951558],[92.77162886600016,22.10418162100011],[92.83612105300008,22.04651072200012],[92.85389774600011,22.024134827000136],[92.86206262300013,21.995402731000137],[92.86702356000008,21.966515605],[92.87746219900012,21.957007142000023],[92.8892444250001,21.96672231100014],[92.89864953600008,21.995402731000137],[92.9061942950001,22.01731353800001],[92.92097375600022,22.021809387000033],[92.9374068600001,22.013024394000055],[92.95032596900009,21.99535105400004],[92.95559696500005,21.98961497000009],[92.96169478300007,21.986876119000115],[92.96810266200012,21.987237854000128],[92.97492395000009,21.99090688100013],[92.9770943610001,21.993025615000093],[92.9789547120001,21.99535105400004],[92.97988488800014,22.002275696000126],[92.97957482900003,22.00935536700014],[92.97792118400011,22.01648671500008],[92.97492395000009,22.02330800400013],[92.9684127200002,22.03617543500003],[92.96531213400007,22.049559632000168],[92.96717248600007,22.062685446000117],[92.98546594300015,22.09596506800007],[92.99518111200008,22.103251445000136],[93.00748010300006,22.105938619000185],[93.02546350100012,22.112914937000156],[93.02256962100014,22.12097646100007],[93.0239132080001,22.188827617000115],[93.02236291600016,22.196217346000097],[93.02453332500008,22.201901754000158],[93.03641890500009,22.206242575000044],[93.04582401500014,22.206862691000097],[93.0724890540001,22.202470195000032],[93.0905758060002,22.19714752200015],[93.10432173700022,22.18717397000016],[93.11951460800017,22.180972799000173],[93.14173547400011,22.18727732399999],[93.12313195800007,22.21838653600004],[93.12354537000007,22.23068552700009],[93.12478560400021,22.232287496000097],[93.12974654200015,22.231615702000127],[93.15145064300006,22.24096913700008],[93.1612691650001,22.242519430000087],[93.1690206300001,22.246911927],[93.17367150900012,22.25941762300009],[93.17429162700014,22.269391174000088],[93.16592004400009,22.386593323000127],[93.1535177000002,22.42752105700005],[93.1178609620001,22.462867737000167],[93.10959273300008,22.479042460000144],[93.09915409300007,22.511960347000112],[93.09822391800017,22.535266419000138],[93.10907596900013,22.57469553600005],[93.11052290900014,22.596347962000134],[93.10442509000008,22.615933329000043],[93.08189416500014,22.652830302000083],[93.0739359940001,22.67189890500005],[93.07083540900007,22.692879537000138],[93.0795170490002,22.772719626000068],[93.11238326000014,22.799953105000057],[93.1158972580001,22.79840281200005],[93.12530236800015,22.821553854000015],[93.16106246000005,22.860982972000116],[93.17553186100011,22.881705220000143],[93.17739221200011,22.9002053840001],[93.1710876870001,22.920436707000093],[93.15114058400016,22.956222636000017],[93.14318241400011,22.977513326000107],[93.13822147700014,23.00526357000005],[93.14008182800015,23.03190277100016],[93.15238081900011,23.049937846000162],[93.17708215400009,23.058438619000086],[93.1965124920001,23.053839417000134],[93.2121187750001,23.03988678000006],[93.22555464700011,23.020378927000035],[93.24653527900008,23.004488424000115],[93.2727869060002,23.00590952600011],[93.29883182800019,23.01795013400009],[93.31826216700009,23.033659770000053],[93.33335168500017,23.052289123000104],[93.37489953600007,23.12972625700014],[93.37520959500014,23.142154439000038],[93.37303918400008,23.154220887000022],[93.37272912600005,23.16982716900004],[93.38079065000008,23.23726491300006],[93.37644982900011,23.279484559000036],[93.3778967690001,23.296822001000137],[93.38420129400018,23.31312591600009],[93.4037349860001,23.33875742600004],[93.40724898300007,23.347258199000137],[93.40776574700007,23.356379089000043],[93.40590539600007,23.367670390000015],[93.39980757700013,23.426090597000083],[93.40022098800014,23.454021709000145],[93.43236372900016,23.647317404000162],[93.4302966720002,23.680338643000155],[93.4259558510001,23.690803121],[93.41231327300012,23.70870900500007],[93.40631880700018,23.719121806000185],[93.37479618400002,23.739017232000023],[93.35825972500007,23.85526336700009],[93.35918990100018,23.890945943000176],[93.35598596200012,23.90699147500014],[93.3518518480001,23.913916117000113],[93.3459607340001,23.918696188000027],[93.33758915200022,23.928411357000144],[93.31609175600008,23.96109670000014],[93.30813358600014,23.977503968000107],[93.3029659420001,23.995280660000116],[93.3011055910001,24.016571350000035],[93.30255946900016,24.03577465500014],[93.3029659420001,24.041143494],[93.30968387900006,24.06398447700009],[93.32218957500007,24.080055847000054],[93.34854455600012,24.08889251700016],[93.36828495300009,24.078479716000132],[93.39650028500014,24.037526144000093],[93.40652551300016,24.025847270000142],[93.43918501800013,23.995228984000036],[93.44559289600008,23.981612244000118],[93.4490035400001,23.96892568000008],[93.45665165200009,23.959959819000133],[93.47484175700012,23.957505189000145],[93.49571903500006,23.959132996],[93.52682824700011,23.975385233000125],[93.54346805900016,23.980888774000118],[93.5499792890001,23.978020732000132],[93.55525028500008,23.97099273700003],[93.56134810400013,23.965695903],[93.57106327400007,23.968021343000128],[93.57695438700009,23.973008118000067],[93.58181197200011,23.979596863000083],[93.58563602700022,23.987296651000165],[93.58801314300015,23.995228984000036],[93.61240441900011,24.009052430000068],[93.66046350100007,24.011222839000155],[93.71110640500008,24.005460917],[93.74304244000008,23.995280660000116],[93.78283329300021,23.945464579000188],[93.80371057200009,23.936059469000142],[93.88318892500016,23.94530955000006],[93.91233443200011,23.93900502500004],[93.94054976400017,23.928876445000085],[93.97506962100012,23.92091827400013],[93.99791060400011,23.91696502700013],[94.05506473800008,23.88794871000006],[94.0710844320001,23.87611480800014],[94.08534712700012,23.857511292000098],[94.09971317600011,23.842628479000055],[94.11686975100017,23.841646627],[94.12885926700008,23.853904873000133],[94.13185591700014,23.856968689000052],[94.1350598550001,23.87730336500009],[94.13361291500021,23.899162496000102],[94.1350598550001,23.91900624600011],[94.14487837800007,23.938875834],[94.19025028500019,23.995280660000116],[94.19386763500009,24.00967254700005],[94.19913863200011,24.048093974],[94.20368615700006,24.057757467],[94.21412479700008,24.069177959000015],[94.21846561700006,24.086670431000144],[94.22218632100007,24.12263722800004],[94.23396854600017,24.160335185000076],[94.28275109900014,24.266426901],[94.28688521300015,24.283066712000117],[94.2899858000001,24.31675974600007],[94.29536014800006,24.332598572000094],[94.30280155400007,24.34102183100016],[94.32367883300006,24.354664408000176],[94.33070682800016,24.362855123000102],[94.33174035600015,24.37109751400014],[94.328329712,24.38848663400007],[94.32874312400004,24.394481100000107],[94.3400085860001,24.40600494400003],[94.3522042230002,24.413937277000073],[94.36119592300021,24.425409444000096],[94.36367639200013,24.465820415000067],[94.37039432800006,24.47773183300002],[94.38186649600007,24.486310120000052],[94.39705936700008,24.495069275000116],[94.4108052980001,24.545944723000147],[94.41845341000013,24.56031077100006],[94.4302356360001,24.570904439000127],[94.47498742700006,24.597388611000113],[94.48707971200015,24.620462138],[94.5079569910001,24.68901092500012],[94.5163285730001,24.704953105000143],[94.53100468000011,24.707485250000143],[94.54340702300006,24.707330220000088],[94.5557060140001,24.708854676000115],[94.5694519460002,24.71639943400005],[94.58154423100021,24.730119528],[94.58950240100009,24.74725026400013],[94.59322310400009,24.765931295000126],[94.59322310400009,24.78378550200007],[94.59901086400006,24.813473612000124],[94.63911177600008,24.862798767000054],[94.65482141100014,24.889153748000112],[94.67352828000011,24.97480743400017],[94.68975467900012,24.99509043400009],[94.70856490100012,25.02588958700015],[94.71383589700015,25.06826426200017],[94.70680790300017,25.109941305000074],[94.68913456300007,25.13851837200015],[94.6532711180001,25.154124654],[94.61296350100017,25.161359355000158],[94.57689335200016,25.173606670000183],[94.55332889800015,25.20414744],[94.55012496000008,25.245281881000054],[94.60800256400009,25.39462677000013],[94.63053348800021,25.427389629000132],[94.65036003700013,25.446649705000155],[94.6594722900002,25.455501608000176],[94.69202844200007,25.476327210000036],[94.71114872200022,25.482786764000096],[94.74577193200011,25.486610820000053],[94.7643754480001,25.491675110000116],[94.7823588460001,25.504594219000026],[94.80799035600015,25.542628072000138],[94.82235640500008,25.559112854000134],[94.83103804600009,25.562471823000134],[94.85077844300017,25.562781881000134],[94.86028690600008,25.56717437800002],[94.86101037600017,25.57141184600009],[94.85294885300007,25.580765280000108],[94.85346561700013,25.58603627500004],[94.8574963790002,25.589343567000142],[94.86803837100014,25.594717916000107],[94.8716557210001,25.59802520800009],[94.96146936100016,25.71796620700009],[94.96901412000008,25.725614319000087],[94.97862593600021,25.729076640000116],[94.99991662700009,25.73155710900009],[95.00880497300008,25.73713816300001],[95.01531620300008,25.7551215620001],[95.01345585200008,25.777704163000024],[94.99319869000006,25.880953674000082],[94.99402551300008,25.900435690000066],[95.00064009600007,25.922036438000035],[95.01200891200008,25.931441549000013],[95.04942264900015,25.943740540000036],[95.06585575400011,25.95381744399999],[95.10823042800021,25.995106913000097],[95.13954634600006,26.029936829000164],[95.1512252200001,26.049935608000094],[95.15008833800019,26.0709679160001],[95.13747928900008,26.08295684800008],[95.10171919800014,26.093395488000013],[95.08817997300017,26.10409250900001],[95.07836145100012,26.17132354800016],[95.0823922120002,26.179798483000084],[95.0897302650001,26.187601624000095],[95.0944844970002,26.19504303000012],[95.09076379400007,26.202691142],[95.0828056230001,26.206618551000144],[95.07453739500008,26.20832387300011],[95.06637251800007,26.211011047000156],[95.0587244060001,26.217677307000155],[95.0463220620002,26.247959697000013],[95.04177453600008,26.287595520000153],[95.04363488800007,26.327696432000053],[95.05045617700013,26.359064026000098],[95.06420210800016,26.392602031000095],[95.06606245900016,26.407433167000036],[95.06172163900007,26.42660512300013],[95.04260135900009,26.459678040000124],[95.04063765500015,26.475594381000136],[95.05438358600011,26.494869690000183],[95.05438358600011,26.49492136700009],[95.06988651600007,26.506238506000084],[95.09923872900018,26.536107484000084],[95.1095740160001,26.551300354000105],[95.11494836400007,26.56256581600017],[95.11618859900008,26.569335429000102],[95.11587854000018,26.575639954000124],[95.11908247900007,26.604217021000082],[95.12280318300006,26.61160675100011],[95.13262170500016,26.6208051550001],[95.14140669800021,26.62499094600004],[95.16342085800014,26.62974517800005],[95.17323938000017,26.633827617000136],[95.18161096200006,26.641682435000078],[95.19556359900017,26.660751038000157],[95.2048653570001,26.667572327000116],[95.22326216700017,26.670362854000143],[95.23907515500017,26.64964060500013],[95.2469331180001,26.648903921000013],[95.26057255100014,26.647625224000095],[95.2789693610001,26.652947897000118],[95.31596968600016,26.669070943000023],[95.39265751100012,26.691756898000094],[95.41064091000007,26.701627096000053],[95.43999312400015,26.735371806000117],[95.46273075300016,26.77717804000009],[95.48980920400018,26.810716044000014],[95.53135705600019,26.82027618500011],[95.55440474400014,26.81660715700009],[95.57476525900009,26.81614207000008],[95.59130171700005,26.823738505000122],[95.60339400200016,26.8442540490001],[95.61331587700008,26.867921855000063],[95.62427128100015,26.88073761000011],[95.6399809160001,26.886422018000175],[95.68607629400005,26.891279603],[95.69930546100014,26.896188863000035],[95.709227336,26.907454326000092],[95.73496219900018,26.94729685500003],[95.77795699100008,26.995149231000095],[95.80493208800013,27.00476104800013],[95.86146610500006,27.014217835000082],[95.8888546150001,27.02703359000016],[95.91644983,27.0513731890001],[95.9383606370001,27.079898580000062],[95.97484419800017,27.14289215100014],[96.01318811100012,27.19079620400008],[96.07416630100008,27.229863586000093],[96.14258589700009,27.2575104780001],[96.4077893470002,27.29817983000005],[96.47465865100011,27.29538930299999],[96.49005822700005,27.29073842400014],[96.51093550700013,27.292495422000016],[96.5318127850002,27.29854156500015],[96.54731571500022,27.306448059],[96.56746952400013,27.328307191000036],[96.57604781100022,27.34541208899999],[96.58689986200008,27.353576966],[96.6141850180002,27.348409323000013],[96.62317671800022,27.343655091000116],[96.6292745360001,27.338694153000162],[96.63640588400014,27.335541891],[96.64901493300007,27.33621368500009],[96.65924686700006,27.34143300400011],[96.67588667900006,27.357659404000017],[96.68725549300015,27.36174184200003],[96.70523889200015,27.360759989000073],[96.72415246600009,27.356264140000132],[96.75887902800011,27.34174306300018],[96.77634566300017,27.330632630000153],[96.78916141700014,27.317971904000117],[96.80993534400008,27.28577748700017],[96.82171757000017,27.273065084000123],[96.8537569580001,27.248725485000122],[96.85964807200011,27.24071563700012],[96.85127649,27.22118194600013],[96.84176802600014,27.20438710600017],[96.8426982020001,27.18852244100007],[96.86533247900016,27.171624248000068],[97.00299849500006,27.11452179000007],[97.01188684100005,27.10702870700011],[97.01891483600016,27.098708802000044],[97.0267696540001,27.091474101000088],[97.03803511600009,27.087029928000092],[97.04785363800012,27.087805074000087],[97.05882660700016,27.09207563500003],[97.06697391800006,27.095246480000114],[97.07720585100012,27.09648671500007],[97.08991825400008,27.092197571],[97.09797977800017,27.08589304600015],[97.10604130000016,27.08258575400008],[97.11916711400008,27.087288310000147],[97.12288781700013,27.093696188000095],[97.13301639900007,27.119586080000133],[97.13477339700013,27.127337545000117],[97.12929569600007,27.137879537000103],[97.12082076100013,27.143925680000123],[97.11172570800008,27.148834941000175],[97.10438765500007,27.156017965000114],[97.10170048100017,27.16526804600012],[97.10128706900016,27.183303121000122],[97.09549930900008,27.191261292000107],[97.06790409400016,27.217099508000118],[96.90512333200016,27.4084056600001],[96.88135217300005,27.444114075000115],[96.87701135200021,27.46307932500015],[96.89024051900012,27.492483215000146],[96.8884835210001,27.507185160000134],[96.88465946500011,27.515840963000088],[96.8810421150001,27.534392802000024],[96.88031864400007,27.543849589],[96.8773214120001,27.55307383200001],[96.86615930200017,27.56844757099999],[96.86202518800022,27.578369446000078],[96.86212854000004,27.59929840100007],[96.87019006400007,27.619090475000135],[96.88352258400018,27.63632456500012],[96.89974898300008,27.649476217000096],[96.93953983600008,27.674022522000154],[96.95700647000015,27.688078512000104],[96.99090621000008,27.72662913000006],[97.00403202400011,27.73427724200006],[97.03617476400002,27.74292006800009],[97.05054081200015,27.74678293900014],[97.05674198400007,27.74678293900014],[97.06035933400014,27.75045196500004],[97.0620129810001,27.763345235000045],[97.0653202720001,27.773990581000035],[97.0723482670002,27.77918406200014],[97.09219201700009,27.785488587000074],[97.0981864830002,27.79101796500005],[97.10604130000016,27.805539043000106],[97.1124491790001,27.809208069000093],[97.1231978760002,27.812153625000107],[97.13177616400004,27.81685618100009],[97.18210900900013,27.85726715100016],[97.19802535100021,27.87326100700001],[97.21094445800006,27.889513245000114],[97.22293339000012,27.89971934099999],[97.24122684700009,27.907858379000018],[97.26065718600015,27.91204417000013],[97.27636682200013,27.91033884700009],[97.28804569500019,27.897755636000156],[97.28866581300016,27.88434560200004],[97.2929032800001,27.877550151000076],[97.31491744000019,27.88460398300019],[97.33352095600006,27.894164124],[97.33817183500011,27.901553853000095],[97.33631148300012,27.91318105100005],[97.33569136600013,27.935608622000146],[97.340032186,27.95180918400014],[97.35677535000015,27.980567118000167],[97.36225305200006,27.99488149000014],[97.35512170500013,28.023045146000115],[97.30654585800012,28.06965728800016],[97.2929032800001,28.095082092000084],[97.29889774600021,28.129240214000063],[97.32866337100015,28.190011699000152],[97.3234957280001,28.21747772300013],[97.33383101400014,28.235254415000053],[97.36959110600004,28.253470357000094],[97.37785933500017,28.263598939000147],[97.38437056500007,28.28483795200013],[97.39821984900013,28.28889455200014],[97.41672001200007,28.286052348000066],[97.43666711400007,28.286414083000167],[97.44782922400012,28.29760203100001],[97.45237674900014,28.317678324000056],[97.45237674900014,28.35547963500012],[97.45020634000016,28.364858907000084],[97.44679569500013,28.37400563600006],[97.44534875500013,28.382971497000096],[97.450102987,28.391911520000022],[97.46570927000008,28.406690979000057],[97.47149703000011,28.414959209000088],[97.47459761600007,28.42619883200014],[97.48813684100017,28.44193430600002],[97.50301965300011,28.47772023600014],[97.51397505800017,28.494695943000135],[97.5277209880002,28.529525859000117],[97.54622115100014,28.538465881000047],[97.56751184100014,28.52549509700013],[97.5899394130001,28.494695943000135]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mongolia","sov_a3":"MNG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mongolia","adm0_a3":"MNG","geou_dif":0,"geounit":"Mongolia","gu_a3":"MNG","su_dif":0,"subunit":"Mongolia","su_a3":"MNG","brk_diff":0,"name":"Mongolia","name_long":"Mongolia","brk_a3":"MNG","brk_name":"Mongolia","brk_group":null,"abbrev":"Mong.","postal":"MN","formal_en":"Mongolia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mongolia","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":5,"mapcolor13":6,"pop_est":3041142,"gdp_md_est":9476,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"MG","iso_a2":"MN","iso_a3":"MNG","iso_n3":"496","un_a3":"496","wb_a2":"MN","wb_a3":"MNG","woe_id":23424887,"woe_id_eh":23424887,"woe_note":"Exact WOE match as country","adm0_a3_is":"MNG","adm0_a3_us":"MNG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"MNG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[100.0059676520001,51.73172719300007],[100.09826175900012,51.738651836000145],[100.21029626500007,51.72622365400008],[100.51089807200009,51.72689544700006],[100.57110111500003,51.70480377200005],[100.63890059500005,51.69203969300008],[101.06946862800004,51.553443502000015],[101.11701094600004,51.52783783000007],[101.1587655030001,51.52122324600006],[101.20072676700009,51.520913188000094],[101.24155114700011,51.51517710400012],[101.27968835500013,51.492594504000095],[101.31544844600006,51.46360402500011],[101.35017500800012,51.45045237200014],[101.3877954510001,51.45055572500007],[101.48205326400011,51.47287994400003],[101.52639164300007,51.475825501000116],[101.56985152200008,51.47008941700008],[101.64369714400003,51.450090638000034],[101.69661381100013,51.452441915000065],[101.72369226100011,51.450581563000064],[101.74219242400011,51.44484548000011],[101.79531579600012,51.419394837000084],[101.82177413000011,51.4135812390001],[101.90187260000009,51.41706939800008],[101.92068282100013,51.41303863500008],[101.95561609000009,51.393789165000044],[101.97421960500009,51.38722625800005],[102.05121748900005,51.38360890800007],[102.07467858900003,51.374823914000075],[102.09126672400004,51.364643656000105],[102.1838708900001,51.32389679000004],[102.1933793540001,51.30720530300001],[102.17927168800009,51.28643137600008],[102.13529504400003,51.24028432300014],[102.1337964270001,51.23085337400008],[102.13968754100011,51.22093149900007],[102.1476457120001,51.2026380420001],[102.15002282800003,51.185403951000126],[102.14878259300006,51.168789978000085],[102.1421680090001,51.134838562000084],[102.14650883000007,51.09763153100007],[102.16537072800008,51.05755645800007],[102.19198409100011,51.02058197000014],[102.21937259900005,50.992650859000065],[102.22965620900004,50.979266663000026],[102.23105147300004,50.964900615],[102.22557377100001,50.95074127200007],[102.21523848500004,50.93818389900014],[102.23947473100003,50.9122940070001],[102.23187829600005,50.88475046900004],[102.21275801600007,50.856741842000105],[102.20304284700012,50.829353333000086],[102.21678877800014,50.79886423700009],[102.2456759040001,50.77876210500003],[102.30753259300013,50.74822133400005],[102.32939172400006,50.71881744500004],[102.32024499500005,50.696131490000084],[102.29683557200013,50.674944153000126],[102.27590661600009,50.6501911420001],[102.27156579700005,50.62094228100005],[102.28241784700009,50.5906082160001],[102.30293339000008,50.56389150000007],[102.3276347260001,50.54554636600008],[102.37269657400003,50.533660788000134],[102.47186364800007,50.52492747000008],[102.51310144100006,50.503688457000095],[102.58658532800013,50.41527008100007],[102.6177978930001,50.39930206300005],[102.6195294150001,50.39900915000003],[102.76259525600005,50.374807435000065],[102.8871354580001,50.314966126000115],[102.92739139800011,50.30297719300005],[102.97410689300011,50.29563914000008],[103.13001469000011,50.30912668900004],[103.20168990100007,50.29698272700003],[103.24018884300011,50.24437612000014],[103.2531079510001,50.21497223000005],[103.27677575700005,50.19755727200001],[103.30659305800009,50.19042592400007],[103.40710371900008,50.19729888900014],[103.43872969600005,50.19259633400006],[103.47397302300004,50.182002665000084],[103.53391768400013,50.15378733400013],[103.60140710400009,50.133530172000114],[103.66806970300007,50.13120473300009],[103.7852718510001,50.18613678000011],[103.84542321800006,50.18468984000003],[103.97399418100008,50.14872304300004],[104.0395198980001,50.14117828400009],[104.12168542500012,50.148257955000105],[104.1981148690001,50.17001373300013],[104.24746586100014,50.20660064800006],[104.26896325700005,50.22887319000011],[104.32136316000009,50.254297994000126],[104.34950155100012,50.27186822000004],[104.37722538200006,50.2891795860001],[104.40580245000011,50.3005484010001],[104.4741186930001,50.31326080300004],[104.57695479300003,50.30948842400002],[104.61044112100011,50.3141909790001],[104.63245528200014,50.32375111900009],[104.67188440000011,50.348297424000066],[104.69705082200005,50.3532066860001],[104.78955163600011,50.352638245000065],[104.81849043800008,50.3583226530001],[104.8790035400001,50.38390248600004],[104.90158614100004,50.38979360000005],[104.93424564700013,50.393255921000076],[105.0501042080001,50.38348907500002],[105.07821618700012,50.38514272100008],[105.10575972600003,50.39005198200002],[105.13133955900008,50.398061829000085],[105.2407385660001,50.45800649100008],[105.27846236200003,50.472579244000144],[105.32864017800006,50.47645497700009],[105.63937056500009,50.42193634100008],[105.77925866800012,50.428912659000076],[105.80654382300003,50.42436513300004],[105.85470625800014,50.4109292600001],[105.90421228000014,50.40379791300006],[105.95805912300011,50.40359120700009],[105.98487919200011,50.39976715100005],[106.03893273900007,50.37139679000006],[106.04327356000005,50.36478220600014],[106.04327356000005,50.35553212500014],[106.04446211800007,50.34602366100006],[106.04818282100007,50.33811716700009],[106.05593428600008,50.33356964200007],[106.13530928600005,50.32711008800001],[106.16094079600009,50.31961700500008],[106.20119673700003,50.29972157800006],[106.22228072100006,50.292383525000076],[106.24486332200013,50.29026479100011],[106.43978682500004,50.327936910000034],[106.54820398000004,50.33579172800006],[106.6565177820001,50.32700673500008],[106.7461763920001,50.30742136700007],[106.78829268400006,50.29150502600003],[106.93644901600004,50.20913279200005],[106.97365604700013,50.196368713000076],[106.9826994230001,50.18711863200007],[106.99799564600005,50.149808248000056],[107.00605717000013,50.14019643200004],[107.0262109790001,50.12572703100008],[107.03360070800011,50.11880238800012],[107.03923343900004,50.108260397000066],[107.04843184400004,50.08464426700004],[107.05711348500012,50.07410227500006],[107.07029097500009,50.06624745700012],[107.10072839300005,50.056790670000055],[107.11462935500003,50.050486146000054],[107.1644971110001,50.01886016900005],[107.19219567900012,50.00604441400009],[107.22490686100008,49.99705271500005],[107.25487919200003,49.99891306600006],[107.28040734900009,50.007594706000106],[107.30485030200003,50.010023499000056],[107.36407149300008,49.976123760000064],[107.72932051600009,49.971937969000095],[107.74460414500004,49.96735288000008],[107.75050785300009,49.96558176700008],[107.78693973800011,49.94821848600006],[107.8079203690001,49.94387766600008],[107.83918461100012,49.94656484000012],[107.85096683800009,49.94604807600007],[107.89819909700003,49.93550608400011],[107.94651656100007,49.933490703000075],[107.9564901120001,49.92336212200009],[107.95261438000011,49.897472229000066],[107.9443978270001,49.88041900600004],[107.93550948100005,49.86662139900008],[107.9300317790001,49.85142852800007],[107.9323572190001,49.83029286800013],[107.95003055800002,49.78249216800003],[107.95576664300006,49.745543518],[107.95483646700012,49.732779439000126],[107.94935876500011,49.72063547800013],[107.92682784100003,49.682860006000055],[107.92744795800006,49.67004425100009],[107.93948856700007,49.663222962000134],[107.9628979900001,49.66110422800005],[108.00279219600009,49.66317128500003],[108.01581465700008,49.65572987900009],[108.00754642800013,49.63361236600008],[108.00527266500012,49.6177993770001],[108.01571130400008,49.602244772000056],[108.03266117300006,49.58932566300007],[108.10619673700005,49.55434071900004],[108.12645389900007,49.547157694000106],[108.2099113360001,49.54023305300012],[108.23636967000009,49.53248158800011],[108.25052901200007,49.522404683000076],[108.2595207110001,49.5096406050001],[108.2672721760001,49.49584299700007],[108.2771423750001,49.482510478000016],[108.33486495000011,49.436363424000085],[108.47366784700012,49.35641998300007],[108.53805668100011,49.327429505000076],[108.5699726530001,49.32571888400014],[108.60843998300008,49.32365712600006],[108.7510669350001,49.34117543600012],[108.85896732600008,49.340555318000064],[108.93048750800011,49.34882354800001],[109.03296187300009,49.327894593000025],[109.05802494400007,49.329083151000134],[109.16060266100004,49.34665313700003],[109.28669315600013,49.3385399380001],[109.31191125500004,49.33254547200008],[109.33630253100006,49.32334706600008],[109.39097619600011,49.30929107700007],[109.41123335800012,49.30319325800011],[109.45071415200005,49.305932109000054],[109.46208296700013,49.300454407000075],[109.46570031700003,49.29445994100013],[109.46983443300006,49.27663157200009],[109.4743819580001,49.269138489000056],[109.49184859200005,49.26278228800004],[109.51623986800007,49.25590932300005],[109.72852665200008,49.26645131500004],[109.78495731600009,49.251361796000104],[109.8177201740001,49.22774566700011],[109.83218957500003,49.22686716800007],[109.9131148680001,49.213689677000076],[110.18141890500009,49.16196156900014],[110.22503381400008,49.16537221300006],[110.2683386640001,49.17705108600003],[110.30936975100008,49.19586130800005],[110.34543990100008,49.22061431900008],[110.36104618400007,49.234618632000064],[110.37117476400003,49.24174998000012],[110.38223352000006,49.24004465800004],[110.43328983600001,49.20263092100009],[110.45127323500002,49.194569398000084],[110.50822066300009,49.18433746400012],[110.60361535700014,49.145321757000026],[110.64495650200013,49.136743470000084],[110.68805464700006,49.13452138300008],[110.73135949700003,49.13767364600005],[110.84101688700014,49.162426657000054],[110.96555708800008,49.207385152000086],[111.13856978400008,49.29156606000006],[111.27354862500005,49.32283030200005],[111.29173872900009,49.33078847200011],[111.32098759000013,49.35533477800007],[111.33845422400007,49.364739889000134],[111.36274214800011,49.36763376900012],[111.38506636600003,49.36225942000007],[111.42961145100003,49.346394755000055],[111.4545194910001,49.343087464000064],[111.47911747300009,49.343345846000034],[111.50350874800012,49.34706654900003],[111.61647343000008,49.38644399000003],[111.66101851400003,49.396365865000114],[112.03019494700004,49.41186879500003],[112.12640515100014,49.439940410000105],[112.43223758900007,49.52917429700011],[112.47326867800012,49.53413523400004],[112.58426965400008,49.526332093000036],[112.67139611900012,49.49594635000008],[112.70147180200001,49.49129547200001],[112.73371789600009,49.49279408800004],[112.7771260990001,49.501372375000045],[112.86807662000007,49.53165476600009],[112.9261609300001,49.566536357000075],[112.9473482670001,49.57609649700006],[112.96977583800002,49.58302113900004],[112.9928235270001,49.58715525400006],[113.0436731370001,49.58860219400006],[113.06082971200016,49.595991923000064],[113.07157841000009,49.61774770100007],[113.07416223200009,49.65335276300004],[113.07715946500007,49.66901072200011],[113.087494751,49.687407532000094],[113.15674117000003,49.77737620100003],[113.18268274000008,49.80197418200004],[113.21244836500004,49.82202463800007],[113.41553674400012,49.92238027000004],[113.44230513500007,49.94604807600007],[113.45853153600001,49.957261862000024],[113.51041467300001,49.98103302000007],[113.52788130700007,49.992815247000095],[113.57966109200004,50.019945374000145],[113.75226037600015,50.07859812400008],[113.77313765500008,50.08164703400012],[113.81582238800002,50.07689280200003],[113.8368030190001,50.07694447900013],[113.84982548000005,50.08071685800007],[113.97312544800002,50.160505270000044],[113.99327925600011,50.16867014600007],[114.03513716700007,50.176938375000105],[114.05529097500005,50.18381134000009],[114.11823287000004,50.2243773400001],[114.2000883390001,50.25621002200006],[114.28628462800015,50.27688059500008],[114.33300012300003,50.27233306900012],[114.4249841720001,50.24184397400006],[114.47304325400006,50.234040833000016],[114.65969852800008,50.25140411400013],[114.75374963400014,50.2362112430001],[114.99735233600012,50.14433054700007],[115.01523238200008,50.13285837800003],[115.02804813700008,50.119887594],[115.04964888500008,50.090845439000105],[115.06339481700007,50.07751292000009],[115.21015588400012,49.97167958600005],[115.36869917900003,49.89540517200001],[115.38781945900011,49.89106435200003],[115.45014123500006,49.89142608700013],[115.47298221900012,49.88708526600007],[115.50853560400003,49.886775208000074],[115.57819543400007,49.893648173000145],[115.68340865100002,49.87768015600011],[115.71627486200013,49.87778350900004],[115.75089807200008,49.88496653300007],[116.05361861200002,49.998447978000115],[116.13537072800005,50.014415996000054],[116.21763960800007,50.0138475550001],[116.3005286060001,49.99297027700004],[116.5754472250001,49.92176015300006],[116.61720178200005,49.89731720000003],[116.6533752850001,49.86383087200005],[116.68427779200016,49.82326487300011],[116.47292118300004,49.516461894000145],[116.45772831300012,49.49279408800004],[116.24776696850012,49.181469421500076],[116.0378056240001,48.870144755000034],[116.03356815600007,48.852368063000114],[116.04762414600008,48.81769317600009],[116.04803755700009,48.79976145500012],[116.02819380800013,48.76746368500005],[115.80040409400009,48.530372213000135],[115.79120568900011,48.51383575400013],[115.78655481000017,48.493010153000085],[115.78655481000017,48.47301137400004],[115.80929244000004,48.273953756000054],[115.79999068200009,48.24232777900008],[115.77084517400016,48.224085999000096],[115.536440878,48.149155172000064],[115.51422001100006,48.13163686200008],[115.51453007100014,48.12210256000009],[115.54584598900016,47.992988994000115],[115.56186568200013,47.93319936200007],[115.57571496600009,47.909738261000086],[115.59989953600012,47.887414043000035],[115.8527006430001,47.705564678000115],[115.91450565600013,47.68391225200014],[115.9729000250001,47.70905283700006],[116.08431441300007,47.80692799900007],[116.18156945800007,47.849586894000055],[116.24389123600014,47.86289357500007],[116.42889286300016,47.83514333100004],[116.49968957600002,47.836357728000046],[116.75166386000005,47.87413319900011],[116.82204716,47.87630360900001],[116.8532597250001,47.87211781800008],[116.97283899000006,47.8376496380001],[117.04735640500013,47.81945953400005],[117.06968062300005,47.81015777600004],[117.31710738200002,47.65406911200003],[117.360825643,47.650865174000074],[117.39989302600007,47.685669251000036],[117.43647994000008,47.7304985560001],[117.47286014900016,47.75724111000005],[117.52722375500002,47.786489970000105],[117.7416809500001,47.97758941700005],[117.766899049,47.99314402300007],[117.81516483600005,48.004822896000036],[117.97277795400015,47.99789825500005],[117.99716923100009,47.99999115000011],[118.06403853400006,48.01957651800004],[118.12253625600016,48.02750885100011],[118.18248091600003,48.02820648200009],[118.2062520760001,48.02329722100006],[118.25431115800005,48.0028591920001],[118.28004602100013,47.99813079900011],[118.47279911300012,47.98944915800007],[118.5422522390001,47.96624644000005],[118.60524580900011,47.91467336100004],[118.71330122900008,47.79362131800005],[118.76740645400007,47.75615590400008],[118.97261356700011,47.6951260380001],[119.05958500200006,47.673473613000105],[119.08345951400014,47.661562195000066],[119.096947063,47.64660186800008],[119.1042334390001,47.62773997000008],[119.11653243000006,47.556038920000105],[119.12211348500006,47.538959859000045],[119.13389571200008,47.52753936800005],[119.15756351700007,47.51766917000006],[119.25104618300008,47.49294199700006],[119.29104374300005,47.484389547000035],[119.31011234600014,47.47609548000008],[119.31776045700013,47.46211700400008],[119.31259281500002,47.45224680700008],[119.28882165500015,47.42914744100011],[119.28189701300005,47.41485890700005],[119.32065433800011,47.407029928000014],[119.47599369300006,47.30920644200003],[119.49066980000008,47.29716583200005],[119.50389896700011,47.279182435000074],[119.51299401900012,47.26267181500009],[119.52508630400011,47.250812074000066],[119.5873564050001,47.23835805300007],[119.6294210210001,47.21608551100013],[119.69995935100013,47.15952565500007],[119.7288981530001,47.128648987000076],[119.75396122200003,47.09443918900006],[119.76052412900007,47.07459543900009],[119.76171268800016,47.015477600000025],[119.7649683030001,47.00382456500006],[119.76729374300015,46.99811431900011],[119.7701359460001,46.992998352000114],[119.78429528800005,46.97832224600011],[119.81741988100016,46.95491282200007],[119.83168257700002,46.942148743000104],[119.83685022000014,46.93357045500008],[119.83969242400012,46.92566396100011],[119.84351648000006,46.91817087800007],[119.85230147400006,46.91072947200007],[119.86294681800013,46.90902415000011],[119.87922489400006,46.90814565100007],[119.89291914900006,46.90551015200003],[119.89643314600004,46.89858551000006],[119.89043868000009,46.888250224000046],[119.88496097900014,46.880912171000055],[119.88144698100007,46.872850647000064],[119.88124027600007,46.860551657000116],[119.88310062700009,46.855435690000036],[119.88682133000015,46.85145660400005],[119.8916272390001,46.848485210000064],[119.89679488200011,46.846469828000096],[119.90289270100011,46.842413228000076],[119.90211755400007,46.83734893800002],[119.89891361500014,46.83125111900006],[119.89798343900014,46.8243781540001],[119.89865523300006,46.80205393500003],[119.88589115400015,46.77006622300004],[119.88310062700009,46.75301300100011],[119.8871830650001,46.74427968300003],[119.90335778900008,46.72639963900008],[119.90702681500011,46.71831227600009],[119.90418461200017,46.70893300400013],[119.89798343900014,46.70164662700006],[119.890335327,46.694773661000085],[119.87266198700007,46.673224589000114],[119.85442020700013,46.659659526000034],[119.83442142800008,46.65095204700008],[119.81726485200011,46.65162384100006],[119.79628422100012,46.658832703000115],[119.78222823100008,46.65562876400014],[119.770032593,46.64356231700006],[119.75442631000017,46.62439036100005],[119.74026696800003,46.61325409000002],[119.71964807200008,46.60271209800007],[119.69778894000007,46.59488311800004],[119.68011560100005,46.59162750300007],[119.65877323500006,46.59617502900008],[119.62347823100009,46.61632883700008],[119.60218754100009,46.61968780600009],[119.57588423700012,46.619171041000044],[119.5012634690001,46.62800771100004],[119.45294600400011,46.62749094700009],[119.36328739400011,46.61304738400008],[119.3169336350001,46.611677958000115],[119.06237552900011,46.66095143700008],[119.03695072400002,46.66872874000009],[119.0140580650001,46.68330149400006],[118.98491255800008,46.724539287000084],[118.96723921700008,46.74045562800009],[118.94703373300007,46.73714833700009],[118.92207401600001,46.71549591100012],[118.90708785000004,46.70939809200007],[118.89055139200002,46.71353220600008],[118.87964766500015,46.72732981400011],[118.87520349100014,46.743969625000055],[118.86745202700007,46.75833567300006],[118.84652307200007,46.76549285900009],[118.81624068200006,46.758180644000106],[118.7922111410001,46.73776845300005],[118.75381555200016,46.69115631100009],[118.72007084200008,46.676738587000074],[118.68462080900008,46.6834565230001],[118.64741377800016,46.69771921800009],[118.60937992400005,46.70578074200008],[118.5951689050001,46.70304189100003],[118.56772871900006,46.68973521],[118.55196740800005,46.685756124000136],[118.47279911300012,46.68567861000011],[118.43517867100002,46.69115631100009],[118.37120324800001,46.7139714570001],[118.33554650900015,46.722162171000036],[118.30081994600012,46.724849345000045],[118.26898726400015,46.72293731700003],[118.23829146400008,46.715392558000076],[118.20604537000014,46.70092315700006],[118.16904504400009,46.67849558500006],[118.1555058190001,46.67456817600009],[118.10196903500007,46.673069560000066],[118.08388228300015,46.66826365200009],[118.00554081200005,46.626974182000055],[117.97277795400015,46.623408509000086],[117.92378869700015,46.61519195600007],[117.90063765500014,46.60759552100009],[117.8783134360001,46.59638173500005],[117.85929650900005,46.58028452600007],[117.83273482300001,46.542793274000076],[117.81702518700007,46.52747121200011],[117.79759484900006,46.52026235000008],[117.69620568900011,46.5122525030001],[117.67336470600004,46.516024883000114],[117.62520227100002,46.535661927000056],[117.60752893100009,46.55054473900009],[117.582000773,46.59198923800005],[117.5681514900001,46.60353892000009],[117.55626591000008,46.60160105500006],[117.51006718000014,46.57847585100009],[117.50179895100013,46.57726145500006],[117.49177372200006,46.57909596800005],[117.47286014900016,46.58467702200008],[117.39379520700003,46.57137034100006],[117.41012496000008,46.53979604100007],[117.41250207600005,46.52462900900005],[117.40547408100014,46.510805563000105],[117.36919722500015,46.47569142700007],[117.35751835100012,46.44840627100003],[117.35307417800009,46.379495748000124],[117.33746789500003,46.35727488200007],[117.30170780500015,46.35014353500014],[116.95785282500009,46.36642161100008],[116.83165897700013,46.3863687140001],[116.81460575400007,46.386730448000094],[116.80458052600017,46.38290639300004],[116.78484012900007,46.36590484700011],[116.72200158700002,46.32869781500011],[116.70732548100004,46.32422780400009],[116.64521040900009,46.31846588100004],[116.60355920500005,46.30931915300004],[116.58195926300004,46.29801243800006],[116.56831587800009,46.29087066600004],[116.5482654220001,46.25929636700007],[116.53958378100009,46.24120961600004],[116.52511438000009,46.22679189100003],[116.3571659750001,46.10555898100009],[116.21319543500015,45.90815500900007],[116.2070976160001,45.88086985300003],[116.2209469000001,45.84976064100007],[116.24213423700013,45.826919658000094],[116.25164270100002,45.803251852000045],[116.23035201000003,45.769765523000046],[116.16989058400009,45.709097392000075],[116.14394901600014,45.69462799100003],[116.09485640500014,45.67654124000012],[116.07873335800008,45.67338897800007],[116.06333378100014,45.67333730100006],[116.01196740700009,45.67855662000008],[116.00214888500005,45.67555938800007],[115.98282190000008,45.65964304600004],[115.76733117700013,45.53014190700014],[115.69240035000007,45.468957011000015],[115.66738895700006,45.454280904000115],[115.63783003800005,45.444359030000044],[115.47298221900012,45.412784729000066],[115.33727990800007,45.39469797800004],[115.12633671100008,45.39443959600007],[114.93885461400015,45.37376902300005],[114.90526493300001,45.37774810800005],[114.73731652900004,45.42503204400009],[114.70331343600003,45.427150777000065],[114.669310344,45.42280995800007],[114.53371138500005,45.38549957300006],[114.52378951000009,45.38028025400013],[114.51944869000016,45.37092682000007],[114.51169722500009,45.32550323500004],[114.5022921140001,45.3032306930001],[114.47304325400006,45.25920237300002],[114.41888635300006,45.20147979700004],[114.2117672120001,45.0621601360001],[114.1636047770001,45.040145976000105],[114.14934208200009,45.03006907200006],[114.13921350100013,45.019165344000015],[114.12040327900006,44.993223776000065],[114.08929406800013,44.961752828000016],[114.05529097500005,44.940565491000136],[114.01705041600007,44.92728464800004],[113.97312544800002,44.919326477000084],[113.9138009030001,44.915450745000044],[113.88930627500014,44.90826772100007],[113.83762984200013,44.86790842700012],[113.73562056500009,44.81592193600008],[113.67247196500004,44.768172913000114],[113.6350582280001,44.746262105000056],[113.60477583900007,44.739699199000086],[113.5324288330001,44.74528025300009],[113.51713260900014,44.749517721000046],[113.48891727800009,44.766260885000094],[113.47320764200009,44.770705058],[113.10485803200004,44.79437286400013],[113.0169047440001,44.82108958000009],[112.9731864830001,44.82124460900013],[112.74849735600009,44.86527293000009],[112.6142419840001,44.90883616100012],[112.58602665200016,44.923822327],[112.56452925600001,44.943924459000065],[112.52391158100016,44.99327545200006],[112.44133264200002,45.05239329000005],[112.41280725099999,45.06603586900004],[112.37963098200014,45.07073842400012],[112.10760624200014,45.06737945600011],[112.01148807900005,45.08748158800006],[111.98463721200011,45.08715413800007],[111.97335087100008,45.08701650000006],[111.95826135200008,45.084536031000084],[111.94792606700007,45.077714742000126],[111.9385209560001,45.06898142600005],[111.92673872900012,45.06091990200005],[111.90627486200009,45.05415028900012],[111.86317671800003,45.04629547100009],[111.84333296700004,45.03952585900003],[111.78648889200014,45.008571676000116],[111.76065067600005,44.989296367000094],[111.73853316300011,44.966300354000055],[111.55136112500003,44.69319041000006],[111.54102583800011,44.668230693000055],[111.54009566300005,44.6522109980001],[111.54443648300003,44.61810455300014],[111.5438163660001,44.601258036000075],[111.53823531100004,44.583429668000115],[111.53017378700008,44.57061391200003],[111.5089864510001,44.54658437100011],[111.48376835200007,44.506431783000096],[111.47322635900008,44.49532135000007],[111.47084924300002,44.49330596900003],[111.44687137900013,44.475891012],[111.42413374800009,44.448037415000044],[111.4063570560001,44.416463115000056],[111.39705529800011,44.387369283000055],[111.39643518100013,44.34659657800006],[111.41059452300009,44.3260810350001],[111.47322635900008,44.298847554000105],[111.4905896410001,44.28262115500007],[111.49813440000008,44.264431051000145],[111.50371545400009,44.22572540300012],[111.51942508900004,44.18857004800011],[111.5438163660001,44.15673736600007],[111.63445682800011,44.06594187500011],[111.66814986200005,44.04134389200004],[111.78070113100011,43.98620513900005],[111.81139693300008,43.964294332000094],[111.83878544100001,43.93879201300006],[111.93056278500006,43.82014292400004],[111.94430871600008,43.786372376000145],[111.94792606700007,43.75696848600006],[111.94513553900003,43.72386973100006],[111.93335331300011,43.69663625100006],[111.91040897700009,43.684983216],[111.8932524010001,43.682606100000065],[111.84581343600013,43.66692230300009],[111.77263960800013,43.66929941900014],[111.75382938700005,43.663201600000086],[111.59724979700007,43.523391012000104],[111.56769087700008,43.502539572000046],[111.5350313720001,43.49073150600012],[111.42868127500009,43.48393605600009],[111.40139611900008,43.47551279700008],[111.33855757600008,43.43817657500006],[111.09609175600013,43.36665639300011],[110.97341190700007,43.315600078000045],[110.93372440600012,43.287772319000084],[110.79698856600004,43.14891774500006],[110.68009647600006,43.05765716600007],[110.66573042800007,43.03740000500005],[110.64102909400007,42.98779062900007],[110.60816288300003,42.94466664700005],[110.56671838400005,42.91056020200008],[110.4733907470001,42.854904684000076],[110.44941288300004,42.837334696000084],[110.42481490100003,42.78524485300005],[110.4067281500001,42.76860504100011],[110.13987105300009,42.68261545800004],[110.10566125500003,42.66667327900012],[110.09315555900014,42.65786244700013],[110.0842672120001,42.65005930600012],[110.07486210100006,42.64352223800003],[110.06018599400004,42.63835459500012],[110.04271936100001,42.63595164000009],[109.98732222500007,42.63646840400011],[109.91270145700008,42.62882029300005],[109.66734175700003,42.548980204000145],[109.51830692600004,42.467331442000074],[109.51034875500005,42.464747620000054],[109.50487105400009,42.46492848800011],[109.50001346900005,42.46332651800006],[109.49381229700009,42.45521331800006],[109.49009159400009,42.451285909],[109.48513065600014,42.44929636700007],[109.32855106700009,42.44048553500008],[109.28028527900005,42.42831573500007],[109.25341353400006,42.425938620000096],[108.99446293200009,42.44952891100012],[108.96128666200008,42.44753936800009],[108.86268803000007,42.408859559000064],[108.82852990800012,42.40004872700007],[108.7968522540001,42.39836924300002],[108.53645471300007,42.435111186000114],[108.31977543100008,42.432553202000086],[108.23476770000008,42.45007151300007],[108.17735518400008,42.454308981000025],[108.04968016700013,42.439119605000116],[107.62239638400007,42.38828605600008],[107.19511260100012,42.33745250700008],[106.76782881800011,42.28661895800005],[106.31821801850008,42.14005167650009],[105.86860721900007,41.99348439500011],[105.47385095200012,41.840341289],[105.40274418100012,41.81153167800008],[105.35819909700012,41.78584849100008],[105.3445565190001,41.78112009700001],[105.32595300400003,41.776701762000094],[105.27448327700006,41.75546274900003],[105.2182593180001,41.74843475400013],[105.20089603700005,41.74347381600009],[105.01480920400013,41.59614430800005],[104.9738297940001,41.58614491800003],[104.93543420400003,41.62242177400009],[104.91367842700002,41.638338115000124],[104.89233606000009,41.64477183000005],[104.60124271700005,41.64544362400005],[104.50491784700006,41.65655405700007],[104.49799320500006,41.665778300000085],[104.50078373200012,41.87059783900011],[104.11088505050013,41.81308197000009],[103.72098636900006,41.75556610100005],[103.6914274500001,41.75923512800006],[103.3981120205001,41.8764114380001],[103.10479659100012,41.99358774800003],[103.10443485600013,41.993639425000055],[103.10438317900012,41.993639425000055],[103.0734806730001,42.00451731400011],[102.72704187066677,42.06454810300002],[102.38060306833341,42.124578892000045],[102.0341642660001,42.18460968100004],[101.97421960500009,42.20788991400008],[101.88647302300011,42.278014832000025],[101.73537113500002,42.46115610800006],[101.63759932500011,42.515442200000024],[101.52494470200008,42.53745636000011],[101.41073978700013,42.544871929000124],[101.21871016400006,42.52983408700003],[100.81813168633344,42.57872860433337],[100.41755320866679,42.62762312166677],[100.01697473100006,42.67651763900008],[99.97155114800012,42.67628509500014],[99.62190342900004,42.59744260600007],[99.47447554500012,42.56419891400009],[99.06835470250013,42.60391032700008],[98.66223386000013,42.6436217400001],[98.25611301750011,42.68333315300012],[97.84999217500012,42.72304456600003],[97.52163164700005,42.7551524000001],[97.19327111900003,42.78726023400009],[97.19067973400013,42.78706149200007],[96.83266919250008,42.75960440550008],[96.47465865100008,42.732147319],[96.37926395700009,42.72054596000007],[96.36633990100012,42.72292261900006],[96.3577665610001,42.72449920700004],[96.35063521400008,42.7409064740001],[96.33719934100002,42.8664802050001],[96.3306881100001,42.88970876100012],[96.31869917800009,42.91006927500007],[96.29430790200007,42.93327199400005],[95.90849165900005,43.214546814000066],[95.87438521400009,43.24710296600003],[95.85495487500009,43.2845425420001],[95.84544641200011,43.326477966000084],[95.84141564900011,43.372521668000104],[95.83283736200008,43.4089018760001],[95.69248417200009,43.6305420940001],[95.5892346600001,43.869493918000046],[95.53528446500013,43.95767974800009],[95.51027307200013,43.97912546800012],[95.47492639200003,43.98661855100005],[95.42273319500009,43.98863393200011],[95.32754520700013,44.00666900700011],[95.3189669190001,44.017107646000056],[95.31876021300013,44.04072377600004],[95.3282686770001,44.09823964500009],[95.32144738800014,44.148417460000104],[95.3226876220001,44.158235982000086],[95.32713179500007,44.16831288700013],[95.34056766800012,44.187536520000066],[95.34749231000012,44.214925029000085],[95.35968794800004,44.23182322200009],[95.3892468680001,44.260762024000144],[95.39772180200009,44.28050242200001],[95.37942834500012,44.28711700500011],[95.03681359900003,44.25497426400008],[94.99381880800013,44.25941843700008],[94.90576216700009,44.29424835200004],[94.72086389200007,44.33579620400013],[94.69822961400013,44.343495992000044],[94.68396692000005,44.35662180600008],[94.67259810400003,44.37377838200007],[94.65719852700005,44.38881622400004],[94.58805546100007,44.43610015900009],[94.46031132000007,44.49330596900003],[94.43013228400008,44.50446807900008],[94.36636356600013,44.50431305000012],[94.33845829300009,44.51211619100013],[94.32192183400008,44.528032532000054],[94.29546350100009,44.571389058000136],[94.27748010200008,44.58957916300008],[94.19500451700007,44.65432973300008],[94.18187870300011,44.660840963000055],[94.16534224500003,44.66585357700012],[94.1490124920001,44.667197164000065],[94.1037439370001,44.65164255800005],[94.05857873600013,44.651280823000064],[93.97506962100005,44.65996246400002],[93.9274239500001,44.67293324800005],[93.87450728300011,44.71422271800014],[93.71400028500011,44.87457468700012],[93.68826542200007,44.89105946900011],[93.52527795500002,44.951262513000074],[93.42058150300005,44.9550865680001],[93.39991093000003,44.960564271000095],[93.36136031100006,44.97839264000004],[93.34099979700005,44.9848521940001],[93.31722863800007,44.98588572200006],[93.2689628500001,44.98009796200008],[93.24415816300011,44.98154490200008],[93.16571333800009,45.00764150000009],[93.13915165200012,45.00986358700007],[93.07594097800006,45.00519247600005],[93.05243859900003,45.003455709000036],[93.03311161400012,45.00764150000009],[93.0138879810001,45.00929514600003],[92.99445764100011,45.00836497000009],[92.97492395000006,45.00469594300009],[92.94505497300014,45.00583282500008],[92.91621952400004,45.014566142000064],[92.86102909400012,45.0378722130001],[92.84759322200011,45.039112448000104],[92.81421024600013,45.03389312800002],[92.79891402200012,45.03316965700011],[92.75271529200012,45.037975566000114],[92.63851037600006,45.01559967100013],[92.57205448400003,45.013015849000055],[92.47510949800011,44.99746124300012],[92.45898645000011,44.997926331000144],[92.41382124900012,45.01125885000007],[92.3964579680001,45.01311920200007],[92.34736535700006,45.00764150000009],[92.33103560400014,45.007848206000034],[92.28535363800012,45.0195270800001],[92.2678870040001,45.0195270800001],[92.21889774600008,45.01012196900007],[92.19367964700012,45.01451446500005],[92.10841353400012,45.058181051000105],[92.07565067500012,45.068878073000114],[92.04299117000005,45.07482086200014],[92.00940149000013,45.076216126000105],[91.97508833800003,45.073373922000144],[91.91907108600009,45.065570781000105],[91.74698856600003,45.07244374600009],[91.7246643470001,45.07073842400012],[91.68363326000014,45.06117828400002],[91.66296268700012,45.059524638000084],[91.56395064300011,45.07714630100005],[91.55227176900013,45.07533762600007],[91.5432800700001,45.07182362900002],[91.53397831200003,45.07110015900011],[91.52178267400006,45.077456361000145],[91.45605025300011,45.13745269800006],[91.43848026500012,45.1461343390001],[91.41687951700003,45.14566925100007],[91.3997229410001,45.136884257000105],[91.38359989500009,45.12422353100007],[91.3665466710001,45.11424998000003],[91.34670292200008,45.1137332160001],[91.24913781800007,45.12970123300005],[91.18433557100006,45.153834127000096],[91.1697628170001,45.16354929600004],[91.14774865700012,45.18721710300008],[91.1350362550001,45.19786244700006],[91.10134322100004,45.210678203000036],[91.0567981370001,45.21755116800011],[91.01132287600007,45.21894643200008],[90.97514937400013,45.21486399400006],[90.90548954300009,45.18597686800012],[90.87324344900003,45.1861835740001],[90.85763716600007,45.21507069900014],[90.86032434100014,45.23165883500005],[90.86590539600013,45.24256256100011],[90.86662886600004,45.25356964200009],[90.85443322800012,45.27062286400013],[90.83717329900001,45.28002797500008],[90.79655562400012,45.292843730000065],[90.79097456900006,45.304315898000084],[90.79045780500013,45.33769887300005],[90.77805546000008,45.36529408800007],[90.76255253200009,45.39159739200011],[90.75325077400004,45.42094960600008],[90.73795454900011,45.44172353100004],[90.67232548100003,45.47567494800006],[90.65113814300008,45.49314158100009],[90.69661340400006,45.73002634700006],[90.71077274600009,45.75219553700009],[90.91923547300011,45.95006459600003],[90.97514937400013,45.98732330400005],[90.98620813000014,45.99311106400003],[91.00243452900003,46.02184316000006],[91.00543176300005,46.06809356700012],[90.99592329900008,46.1137238570001],[90.97514937400013,46.14054392500009],[90.94879439300007,46.16829417000013],[90.89918501800008,46.28167226200014],[90.89618778500005,46.30203277600006],[90.90600630700004,46.317303162000115],[90.93577193200014,46.34386484800004],[90.97514937400013,46.41654775000009],[90.9861047770001,46.43525461900006],[91.00140100200014,46.47504547100007],[91.01411340300012,46.493183900000105],[91.03561079900004,46.52907318100006],[91.04532596900007,46.55108734100014],[91.04749637900011,46.5664094040001],[91.03251021300014,46.57992279100009],[91.01132287600007,46.58532297800013],[90.99592329900008,46.59462473600007],[90.99809371000009,46.62025624700004],[91.01173628700008,46.66294097900004],[91.0142918930001,46.68984391500004],[91.01556034300012,46.70319692000007],[91.00481164500007,46.740429790000086],[90.97514937400013,46.77414866100014],[90.93938928200009,46.798849997000076],[90.92533329300011,46.81313853000005],[90.91995894400003,46.833628235000106],[90.92274947100009,46.841586406000054],[90.93442834500007,46.856830953],[90.9364954020001,46.86442738900006],[90.9327746990001,46.874788514000095],[90.92585005700005,46.88065378900009],[90.91768518100014,46.88540802000008],[90.9101404220001,46.89238433800008],[90.90032190000011,46.91067779500014],[90.89370731600006,46.92817026800009],[90.88512902800005,46.944732564000105],[90.86983280400011,46.96033884700003],[90.8494722910001,46.97320627900004],[90.8281816000001,46.982301331000116],[90.80554732300004,46.98684885700004],[90.7818795170001,46.98633209200011],[90.74239872300006,46.99186147100011],[90.71211633400009,47.01470245400011],[90.46872033700004,47.308922221000046],[90.4663432210001,47.31633778900007],[90.46851363200005,47.3235208130001],[90.4752315670001,47.33029042600006],[90.48556685400013,47.344914856000024],[90.49001102800014,47.361838888000136],[90.48722050000003,47.378194479000086],[90.4752315670001,47.391087749000064],[90.44815311700012,47.4040326950001],[90.44174523900011,47.43054270500011],[90.44360559100011,47.46278879800004],[90.44122847500006,47.493045350000074],[90.42727583800007,47.50655873600004],[90.39461633300009,47.52467132600006],[90.38159387300004,47.53839141900011],[90.35203495300004,47.58831085200006],[90.33849572800004,47.602780254000095],[90.32743697200004,47.62303741500008],[90.33746219900006,47.63699005100008],[90.34955448400007,47.647790426000114],[90.34480025200008,47.65864247700008],[90.32350956200008,47.670166321000096],[90.30211552000009,47.678512065000064],[90.20971805800013,47.69574615600006],[90.16341597500008,47.71000885000012],[90.11995609500008,47.73013682100009],[90.08285241700008,47.756104228000055],[90.0706567790001,47.7698501590001],[90.05877119900003,47.78951304100013],[90.05215661700004,47.81070037900008],[90.05598067200008,47.82891632100004],[90.06435225400008,47.850620422000134],[90.05985640500012,47.86881052700008],[90.04461185800011,47.879765931000065],[90.00249556500005,47.88038604800002],[89.96316980000006,47.88865427700006],[89.9466850180001,47.88317657500008],[89.93903690700012,47.87085174600011],[89.9376416430001,47.85754506400011],[89.93443770300007,47.844264222000106],[89.92136356600008,47.83209442100011],[89.88906579600012,47.824317119000085],[89.78354252100007,47.81850352],[89.7512964270001,47.824317119000085],[89.7402376710001,47.836151021],[89.73114261900012,47.86475392700006],[89.72339115400013,47.87816396100001],[89.70726810700012,47.88904185100009],[89.67202478100006,47.89408030200013],[89.65528161700013,47.89981638600011],[89.64391280100011,47.91276133300001],[89.63616133700003,47.92958201100009],[89.62737634300004,47.94394806000008],[89.61342370600005,47.94958079100013],[89.59657718900006,47.95257802400005],[89.58324467000006,47.96203481100011],[89.57564823400008,47.976039124000096],[89.57621667500013,47.9928856410001],[89.57187585500003,48.020455017000074],[89.54180017100009,48.03102284800005],[89.50366296400011,48.029989319000066],[89.47534428000012,48.02296132500006],[89.42542484500005,48.02164357600009],[89.40919844600006,48.02311635400011],[89.36920088700008,48.03815419500009],[89.35426639900004,48.03877431300006],[89.3342676190001,48.032366435000114],[89.28569177200012,48.005598043000134],[89.26858687400005,47.99314402300007],[89.24398889200006,47.980224915000065],[89.21871911700009,47.976969300000064],[89.16714603700005,47.98399729500007],[89.07469690000005,47.98425567600006],[89.04591312600013,47.9928856410001],[89.04580977400013,47.992988994000115],[89.04555139200005,47.992988994000115],[88.9323283280001,48.096961975000056],[88.91682539900006,48.10595367500011],[88.88928186100009,48.11091461200007],[88.83145593300009,48.1051526900001],[88.8054110110001,48.10595367500011],[88.7753353270001,48.12055226700008],[88.70918949400004,48.16636342400002],[88.68066410300007,48.17302968300003],[88.65544600500004,48.17116933200003],[88.63580896000013,48.175846049000086],[88.59622481300005,48.19767934200013],[88.58077356000007,48.21199371400013],[88.57348718300011,48.22971873000003],[88.5688363040001,48.249200745000024],[88.56123986800009,48.268269349],[88.5587594000001,48.2880872610001],[88.57297041800012,48.32532013000011],[88.56511560100012,48.342993470000124],[88.50269047100004,48.39255116800006],[88.47912601700006,48.40014760400004],[88.45912723800012,48.39813222300008],[88.43964522400012,48.39371388800009],[88.4167008880001,48.394101461000105],[88.38342126500002,48.408674215000076],[88.33210656800009,48.45399444600008],[88.30487308800006,48.46900645000005],[88.23562666800007,48.49319102000004],[88.21784997600014,48.49499969500002],[88.18348514900003,48.49275177000001],[88.16596683800009,48.493733622000065],[88.14829349800004,48.49936635300011],[88.1157373460001,48.51649709100005],[88.08824548300002,48.526083069000066],[88.07181237900005,48.53879547200012],[88.06251062000013,48.54287791000013],[88.05196862800011,48.54318796800001],[88.02830082200006,48.53962229400013],[88.01662194900005,48.539803162000084],[87.98303226800004,48.552334697000106],[87.95181970200008,48.57520151800011],[87.94282800400003,48.59948944100012],[87.97548750900012,48.61651682600004],[87.98964685000003,48.62416493700002],[87.99781172700006,48.635172018000105],[88.0033927820001,48.64599823000006],[88.01016239400013,48.65341379900005],[88.05501753800013,48.6734125780001],[88.06385420800011,48.682610982000085],[88.05941003400011,48.708087464000094],[88.03377852400013,48.72911977200005],[87.97548750900012,48.75599151600002],[87.95243982000005,48.76110748300002],[87.90758467600004,48.7588337200001],[87.84169722500013,48.779349264000075],[87.82107832900003,48.78828928700011],[87.80588545800003,48.80058827800005],[87.8021647540001,48.809579977000084],[87.80051110900006,48.83030222600013],[87.79606693600005,48.83975901300008],[87.78748864800014,48.846580302000035],[87.77673995000009,48.85117950500009],[87.75472579000012,48.857277323000055],[87.73787927300002,48.869369609000046],[87.73570886300013,48.88673289000005],[87.74361535700012,48.905181377000076],[87.7568961990001,48.9203742470001],[87.83585778800006,48.94590240500011],[87.87259973200014,48.96801991800004],[87.87223799700013,49.00409006800004],[87.85694177200008,49.01561391300007],[87.83782149300009,49.02041982000008],[87.82190515100007,49.02873972600014],[87.81596236200005,49.05059885700007],[87.82107832900003,49.07183787000014],[87.82965661700007,49.0859972130001],[87.83554773000009,49.1007249970001],[87.83244714400013,49.12387603800008],[87.81808109500014,49.15400339800007],[87.81632409700006,49.165837301000096],[87.83699467000008,49.1599978640001],[87.85518477400012,49.158964335000114],[87.95678064000003,49.168886211000114],[87.97548750900012,49.1758108520001],[87.99295414200003,49.191727194000116],[88.02974776300005,49.2155500290001],[88.10850264500004,49.24743438800007],[88.14395267700007,49.27074045900008],[88.14839685100009,49.296578675],[88.12917321800006,49.32593088800007],[88.11553064000003,49.35657501200012],[88.13578780200002,49.38608225500013],[88.14560632400003,49.39719268800004],[88.1617293700001,49.43011057600009],[88.17475183100004,49.44385650600012],[88.19996993000012,49.454346822000076],[88.37877038600008,49.47579254200011],[88.40192142700003,49.475844218000105],[88.45111739100014,49.46514719700011],[88.47540531400011,49.46364858000001],[88.53876062100005,49.4665424610001],[88.55782922400005,49.47108998600004],[88.59973881000012,49.48891835600008],[88.61415653500012,49.49279408800004],[88.61575850500009,49.49294911700008],[88.63353519700007,49.49124379500009],[88.6486763910001,49.48359568300003],[88.67466963800007,49.459824524000055],[88.69565026900005,49.44695709300006],[88.71942142800002,49.44292633000006],[88.87062666800011,49.43600168900008],[88.8753292230001,49.44178945000007],[88.85486535600012,49.473880514000086],[88.85615726700007,49.511500957000095],[88.85874108900009,49.52736562200002],[88.86819787700006,49.538114319000044],[88.88892012500008,49.541679993000116],[88.90835046400008,49.53594390900014],[88.91909916200005,49.52317983100008],[88.92695398000012,49.507418518000094],[88.93759932500012,49.49284576500014],[88.94757287600004,49.48282053700012],[88.95470422400007,49.47186513300005],[88.96266239500011,49.46214996300009],[88.97532312000003,49.455845439000086],[89.01408044500009,49.46054799500007],[89.16073816000005,49.50271596300013],[89.19525801600014,49.52152618400003],[89.21561853000007,49.545452373000046],[89.2015625400001,49.57061879500006],[89.17820479300008,49.598472392000126],[89.18735152200009,49.62198516800004],[89.21644535400009,49.63449086600011],[89.25220544400008,49.62942657500014],[89.31070316600011,49.5931497200001],[89.33943526200011,49.58079905200003],[89.37193973800002,49.58167755200009],[89.39782963100009,49.59898915700009],[89.41860355600011,49.624207256000034],[89.44159956900006,49.64358591700008],[89.47534428000012,49.64343088800006],[89.52030277500012,49.66317128500003],[89.61631758600004,49.685443828000075],[89.68230839100003,49.7083364880001],[89.70241052300014,49.71996368500004],[89.71264245600008,49.73515655500009],[89.70153202400007,49.75313995400006],[89.68370365400011,49.761149801000045],[89.63895186400008,49.775464173000046],[89.6264461670001,49.78802154600003],[89.62737634300004,49.796806539000045],[89.64194909700005,49.80812367800009],[89.64355106700003,49.818872376000115],[89.63895186400008,49.824815165000125],[89.62107181800013,49.83504709900012],[89.61533573400004,49.841920065000096],[89.61528405800004,49.85452911400011],[89.62107181800013,49.89333811500006],[89.62386234600007,49.902691549000075],[89.63321098500006,49.90793913400006],[89.66768396000009,49.92728953100007],[89.72070398000011,49.93974355100008],[89.86643151900006,49.94274078400008],[89.92017500800011,49.95085398400008],[89.96942264900008,49.9670803840001],[89.99624271700007,49.99276357000008],[89.99709068900006,50.00366354600006],[89.99872318600012,50.02464792900013],[90.00492435800008,50.050744528000024],[90.02053064000005,50.07074330700007],[90.05122644100008,50.0841791790001],[90.18243290200013,50.10247263600007],[90.22294722500003,50.114409892000104],[90.34387007600009,50.17466461200009],[90.36392053300004,50.179780579000095],[90.40495162000008,50.182622783000056],[90.42500207600006,50.18691192700004],[90.4752315670001,50.214610494000055],[90.51894982900006,50.21838287400007],[90.60493941300012,50.20598053],[90.64845096900005,50.206652323000064],[90.66643436700014,50.2103730260001],[90.6839010010001,50.21621246400007],[90.69971398900009,50.225152487000116],[90.7126330970001,50.23796824100008],[90.71738732900008,50.252024231000114],[90.71759403500005,50.280756328000024],[90.72658573500007,50.29186676100005],[90.76244917800005,50.30571604400009],[90.83996382700008,50.32080556300011],[90.87706750500007,50.339357402000125],[90.94858768800002,50.39749338800004],[90.97514937400013,50.413926494000094],[91.01204634600003,50.425295309000084],[91.12976525900012,50.426173808000044],[91.16335494000009,50.432788392000134],[91.26009322100003,50.46658477800011],[91.2975069580001,50.46637807300007],[91.3821529540001,50.454957581000144],[91.41574263500011,50.4613654580001],[91.43248579900012,50.47805694600004],[91.44003055800005,50.4985724900001],[91.45036584500014,50.51908803300009],[91.47506717900006,50.53598622700008],[91.57573287000014,50.56197947200013],[91.60270796700013,50.579601135000104],[91.65314416500011,50.64006256100006],[91.6796024990001,50.65654734300003],[91.74977909300009,50.684090882000106],[91.82419315600004,50.701557516000065],[91.8999508060001,50.70724192300011],[92.06273156800012,50.68631296800001],[92.15884973100002,50.68910349500007],[92.24277225800006,50.720006002000076],[92.29444869000008,50.79126780300004],[92.2970325120001,50.80987131800009],[92.29744592300011,50.8275963340001],[92.30168339100004,50.84335764600007],[92.31522261600001,50.85586334200008],[92.33547977700003,50.86361480800008],[92.36090458200005,50.86836904000008],[92.3845723880001,50.86557851200013],[92.39986861200003,50.850592347000145],[92.41898889200013,50.811731670000086],[92.44327681500005,50.786306865000086],[92.47490279200014,50.770493876000074],[92.5164506430001,50.760623678000115],[92.55458785000008,50.743002015000116],[92.61184533700003,50.68765655500007],[92.64977583900003,50.6740656530001],[92.67189335100005,50.67561594700001],[92.69525109900007,50.681920472000115],[92.71736861200007,50.69215240500009],[92.73524865800005,50.705226543000066],[92.74661747300013,50.72145294200007],[92.75343876200007,50.754680888000074],[92.76026005000006,50.77075225900006],[92.79612349500007,50.78801218700005],[92.85772180200013,50.795505270000085],[92.92107710800013,50.792456360000045],[92.9616947830001,50.7778836060001],[92.97399377400012,50.742175192000104],[92.97337365700014,50.694374492000094],[92.99187382000008,50.654790345000066],[93.00293257600009,50.63484324100003],[93.01140751200012,50.6233193970001],[93.02287968000013,50.61629140300007],[93.0426200760001,50.60988352500004],[93.1049418540001,50.59882476800004],[93.13915165200012,50.5994448860001],[93.1883476160001,50.59980662000001],[93.4215116790001,50.6093667610001],[93.5363367110001,50.584717103000116],[93.88696130400001,50.57497609500007],[94.23758589700007,50.565235087000104],[94.25866988200009,50.55753529900002],[94.27334598800007,50.54477122000014],[94.27820357300008,50.52921661400012],[94.27975386500003,50.49268137600009],[94.3197514250001,50.429016012],[94.32750288900006,50.404366353000114],[94.33225712100005,50.30101348900012],[94.34434940600005,50.24918202700013],[94.3544779870001,50.22360219300009],[94.36853397600004,50.20272491500003],[94.39178837100013,50.18556834000006],[94.47498742700007,50.16226226800012],[94.49173059100013,50.15228871700003],[94.4985518800001,50.13952463800004],[94.50227258300009,50.125055237000105],[94.50909387300004,50.10986236600007],[94.52087609900013,50.0977700810001],[94.56397424300013,50.07100168900012],[94.5744128830001,50.05854766900003],[94.5922929290001,50.029815573000036],[94.60345503800005,50.01973866800009],[94.62453902200008,50.01519114200007],[94.65099735500007,50.01782664000007],[94.74639204900012,50.040357564],[94.92157515500008,50.045886943000106],[94.95371789500012,50.04061594700008],[94.98058964100005,50.02475128200007],[95.00405074100013,49.99276357000008],[95.02162072800007,49.96981923400002],[95.0283386640001,49.9634113570001],[95.07639774600005,49.94553131100014],[95.35472701000009,49.94770172100004],[95.39978885900013,49.938865051000015],[95.44516076700006,49.91442209900009],[95.46169722600006,49.90263987300008],[95.47720096200004,49.89408316500007],[95.48061079900009,49.89220123300004],[95.50066125500013,49.88672353200005],[95.52060835800006,49.889617412000035],[95.53714481600014,49.90072784500006],[95.56318973800012,49.92759958900007],[95.58396366400007,49.936694641000116],[95.68049523900008,49.94599639900005],[95.72142297400012,49.95850209600007],[95.7589400640001,49.993073629000065],[95.78767216000011,50.011728821000105],[95.82787642400012,50.0201520790001],[95.86704716000007,50.014984436000105],[95.89216190700012,49.99291860000011],[95.89216190700012,49.99276357000008],[95.90446089700004,49.964806621000065],[95.92265100100006,49.944601136000074],[95.94631880700013,49.93850331600004],[95.97484419800008,49.95245595300011],[95.98569624800012,49.9649616500001],[95.99830529800005,49.9759170530001],[96.01194787600014,49.98521881100004],[96.02662398300004,49.992815247000095],[96.04099003100004,49.99793121400006],[96.05597619600013,49.9988097130001],[96.07106571500003,49.996742656000066],[96.08594852700008,49.99291860000011],[96.08605188000007,49.99286692400008],[96.08625858600004,49.992815247000095],[96.08636193900008,49.99276357000008],[96.23560347500012,49.94920033800014],[96.2811820880001,49.92625600200009],[96.32335005700008,49.8978856410001],[96.34629439300011,49.88858388300005],[96.37285607900003,49.88605173700009],[96.39910770700003,49.89173614500004],[96.44882043500007,49.913957012000054],[96.47465865100008,49.92165679900006],[96.50328739400004,49.92212188700009],[96.52385461400013,49.91576568700006],[96.53925419100011,49.90186472600007],[96.55300012300006,49.8798505660001],[96.5680896400001,49.86176381400008],[96.58514286300009,49.857526347000025],[96.60436649600013,49.86290069600008],[96.62596724500008,49.87339101100014],[96.68022749900013,49.909719544],[96.70193160000014,49.91375030500009],[96.96920210800005,49.886671855000145],[97.00589237500003,49.865277812000045],[97.04227258300011,49.82321319600009],[97.05725874900008,49.812722880000045],[97.08526964300012,49.8058382750001],[97.1001501870001,49.802180888000095],[97.11989058500012,49.79365427700006],[97.1289856360001,49.77582590800003],[97.1529635010001,49.750246074000074],[97.20505334500012,49.73407135100007],[97.26231083200008,49.72611318000011],[97.30168827400007,49.725544739000064],[97.34333947800013,49.734174703000086],[97.3907784420001,49.74947092800008],[97.47459761600008,49.78869334000012],[97.5427071530001,49.82274810800006],[97.5736096600001,49.8475011190001],[97.58125777200013,49.87793853800008],[97.57174930800005,49.896748759000076],[97.56317102000003,49.908944397000084],[97.56658166500006,49.91679921500011],[97.64223596200003,49.93002838100003],[97.73359989500005,49.958347067000034],[97.7563375250001,49.96149932900008],[97.77752486200005,49.9561766560001],[97.81070113200008,49.93116526300014],[97.82992476500009,49.9233104460001],[97.84739139800007,49.930080058000044],[97.87457320200014,49.95395457000012],[97.90619917800012,49.97307485000002],[98.0479993080001,50.0230459600001],[98.10556685400013,50.0638703410001],[98.26245650200012,50.28380523700014],[98.26927779200008,50.29941152000009],[98.27227502400012,50.3189968880001],[98.27010461500002,50.335946758000034],[98.26183638600008,50.36746938100009],[98.26628055800006,50.4006973270001],[98.29821659400005,50.46012522400005],[98.30059371000009,50.49278472900004],[98.30069706200004,50.49283640600004],[98.30069706200004,50.49293975900008],[98.29346236200007,50.51862294600005],[98.27537561100013,50.537691549000044],[98.25129439300007,50.55055898100002],[98.22555953000011,50.55763865200006],[98.16334110500003,50.56466664600006],[98.1359525960001,50.57097117100008],[98.06009159300002,50.60890167300007],[98.03849084500007,50.6229576630001],[98.02329797400006,50.642026266000066],[97.97451542100009,50.72315826400012],[97.94402632700012,50.77447296200006],[97.94743697100006,50.795970358],[97.99022505800008,50.83560618100009],[97.98464400300008,50.846923320000144],[97.95301802600004,50.862839661000066],[97.93875533100008,50.874415182000114],[97.92966027800003,50.886610820000044],[97.91942834500003,50.897411194000085],[97.87198938000004,50.91709991500002],[97.83571252400009,50.940716045000045],[97.80853072100012,50.97048166900004],[97.8063603110001,51.00112579400004],[97.87012902900005,51.08680531800013],[97.88563195800002,51.12011077900007],[97.89472701000011,51.15385548900014],[97.90030806500005,51.16842824300011],[97.92904016200004,51.215040385000066],[97.93172733600011,51.23041412400005],[97.92810998600008,51.25147227000008],[97.91632775900005,51.28588877400011],[97.91570764200003,51.300616557000126],[97.92283899000005,51.318470765000086],[97.93379439300003,51.3317774460001],[97.96221643100006,51.35544525200004],[97.97451542100009,51.36859690300008],[98.02061080000004,51.43518198600009],[98.03973108000014,51.45729950000009],[98.05089318900012,51.46642039000008],[98.06670617700013,51.46926259400004],[98.1113546150001,51.48471384700014],[98.13781294800009,51.48587656700007],[98.22039188600013,51.47520538300005],[98.2299003500001,51.492878723000075],[98.23382775900006,51.516520691000096],[98.22431929600009,51.560006409000096],[98.22824670400013,51.58341583300006],[98.23868534400007,51.60147674600006],[98.26338667800007,51.635195618000125],[98.27351525900012,51.654832662000075],[98.33221968600009,51.71831716000011],[98.42503055800012,51.74622243300009],[98.61871382700014,51.78066477500005],[98.6513733320001,51.797485453000036],[98.68268925000012,51.81947377600011],[98.71111128700005,51.845105286000056],[98.77663700400012,51.93011301700005],[98.79172652200003,51.97750030600013],[98.80020145700013,51.99274485300008],[98.83854537000008,52.0252751670001],[98.84650354100012,52.03933115700005],[98.84888065700005,52.05630686500007],[98.84960412600009,52.09012909000003],[98.85559859200009,52.106691386000136],[98.88639774600006,52.12855051700009],[98.92763553900005,52.129584046000076],[98.93765156300003,52.12468748800012],[98.96246545500003,52.112556661000035],[98.9744543870001,52.0803880820001],[98.99471154800011,52.058296407000086],[99.02509729100007,52.04553232900011],[99.19873010300012,52.006594137000036],[99.23283654800007,51.9942434700001],[99.25598759000007,51.977913717000064],[99.27469445800004,51.95949106900013],[99.29536503100006,51.94354888900011],[99.32389042200003,51.93422129400008],[99.55684777900012,51.891459046000044],[99.67932092300009,51.888668519000106],[99.70965498900006,51.88058115600008],[99.78396569900012,51.83761220300005],[99.84866459100009,51.789346415000125],[99.91791101100011,51.74947804800007],[100.0059676520001,51.73172719300007]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Malaysia","sov_a3":"MYS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malaysia","adm0_a3":"MYS","geou_dif":0,"geounit":"Malaysia","gu_a3":"MYS","su_dif":0,"subunit":"Malaysia","su_a3":"MYS","brk_diff":0,"name":"Malaysia","name_long":"Malaysia","brk_a3":"MYS","brk_name":"Malaysia","brk_group":null,"abbrev":"Malay.","postal":"MY","formal_en":"Malaysia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malaysia","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":3,"mapcolor13":6,"pop_est":25715819,"gdp_md_est":384300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"MY","iso_a2":"MY","iso_a3":"MYS","iso_n3":"458","un_a3":"458","wb_a2":"MY","wb_a3":"MYS","woe_id":23424901,"woe_id_eh":23424901,"woe_note":"Exact WOE match as country","adm0_a3_is":"MYS","adm0_a3_us":"MYS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"MYS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.4124455090001,2.38735586100006],[111.413340691,2.378241278000147],[111.41049238400008,2.372219143000152],[111.4008895190001,2.377834377000141],[111.3909611340001,2.382147528000147],[111.38184655000012,2.377875067000133],[111.37435957100014,2.369086005000085],[111.36988366000017,2.359808661000116],[111.35914147200006,2.373114325000145],[111.34262129000008,2.413885809000107],[111.33204186300011,2.422430731000134],[111.3126733730002,2.43134186399999],[111.30811608200005,2.452134507000068],[111.315684441,2.496242580000143],[111.31763756600016,2.536769924000069],[111.29900149800007,2.702704169000157],[111.30095462300014,2.752630927000112],[111.31544030000006,2.784491278000132],[111.34994550900008,2.771307684000092],[111.37029056100008,2.739732164000188],[111.3810327480002,2.697902736000088],[111.38184655000012,2.523342190000079],[111.390391472,2.449164130000057],[111.41138756600016,2.391099351000179],[111.4124455090001,2.38735586100006]]],[[[104.19206790500019,2.709051825000017],[104.17212975400011,2.707749742000189],[104.15748131600017,2.713283596000124],[104.1384383470001,2.733628648000106],[104.130625847,2.745794989000103],[104.130137566,2.754543361000074],[104.1307072270001,2.760077216000099],[104.1258244150001,2.777044989000074],[104.12696373800006,2.785589911000087],[104.13160241000016,2.791083075000031],[104.14421634200008,2.797593492000104],[104.15064537900017,2.802394924000097],[104.16032962300001,2.817857164000117],[104.16032962300001,2.832668361000088],[104.15626061300006,2.847723700000103],[104.15381920700005,2.864081122000115],[104.15601647200006,2.8745791690001],[104.16187584700018,2.884833075000117],[104.17066491000006,2.891099351000079],[104.18140709700006,2.889797268000081],[104.18620853000007,2.885321356000105],[104.18775475400017,2.879706122000101],[104.18897545700011,2.86758047100011],[104.19166100400017,2.860296942000105],[104.20435631600006,2.840887762000179],[104.21062259200019,2.827866929000109],[104.22266686300011,2.785589911000087],[104.22510826900006,2.735907294000085],[104.22266686300011,2.724107164000031],[104.21078535200016,2.715073960000112],[104.19206790500019,2.709051825000017]]],[[[101.2596134770001,3.030218817000076],[101.24382571700019,3.026190497000101],[101.23698978000007,3.035060940000065],[101.24439537900017,3.04901764500012],[101.26286868600008,3.056341864000131],[101.27116946700006,3.046454169000114],[101.26734459700006,3.035305080000015],[101.2596134770001,3.030218817000076]]],[[[101.27564537900011,2.967718817000133],[101.26807701900005,2.965155341000127],[101.26636803500016,2.971502997000073],[101.26807701900005,2.982123114000103],[101.29232832100016,3.042914130000128],[101.30591881599999,3.063950914000159],[101.32349694100006,3.071112372000115],[101.3361922540001,3.065008856000119],[101.33765709700016,3.051825262000165],[101.33643639400005,3.044745184000106],[101.33790123800011,3.031927802],[101.3352970710001,3.009019273000177],[101.32146243600013,2.996161200000145],[101.30225670700005,2.988674221000096],[101.28728274800012,2.978216864000103],[101.28142337300007,2.97247955900005],[101.27564537900011,2.967718817000133]]],[[[117.90072675899997,4.171291408000101],[117.90703902788991,4.15668301495252],[117.8525573090002,4.157241908000088],[117.78357224700007,4.157241908000088],[117.73807146200012,4.157241908000088],[117.70360790399396,4.163414541993006],[117.69711347699999,4.169053453000117],[117.64405358200005,4.215236721000139],[117.64014733200004,4.227443752000113],[117.64763431100008,4.240627346000153],[117.66553795700011,4.253119208000072],[117.68604576900017,4.262844143000123],[117.70167076900023,4.267523505000128],[117.72022545700021,4.266424872000087],[117.75635826900007,4.254584052000125],[117.77442467500012,4.251654364000103],[117.78541100400017,4.246649481000161],[117.79493248800017,4.235256252000099],[117.80827884200008,4.214056708000115],[117.81771894599999,4.204738674000154],[117.82634524800018,4.199408270000106],[117.83619225399998,4.196966864000075],[117.84986412900005,4.196356512000108],[117.896250847,4.181341864000089],[117.90064537899998,4.171454169000157],[117.90072675899997,4.171291408000101]]],[[[118.68165123800023,4.4370791690001],[118.67481530000022,4.436590887000108],[118.66920006600006,4.439846096000153],[118.66920006600006,4.443060614000117],[118.66797936300011,4.463934637000179],[118.66325931100019,4.46922435100015],[118.65121503999997,4.479071356000176],[118.64747155000016,4.484442450000131],[118.64405358200018,4.495306708000115],[118.647634311,4.498032945000175],[118.65805097700003,4.498195705000143],[118.66065514400012,4.498195705000143],[118.67514082100016,4.498358466000113],[118.726247592,4.491888739000117],[118.74878990999999,4.485500393000095],[118.760020379,4.471380927000069],[118.75611412900005,4.457220770000134],[118.73308353000007,4.450873114000102],[118.69581139400006,4.450873114000102],[118.68165123800023,4.4370791690001]]],[[[118.49317467500005,4.661851304000081],[118.51026451900012,4.648871161000087],[118.52377363399998,4.665716864000088],[118.54948978000002,4.665187893000109],[118.57781009200018,4.655096747000143],[118.59961998800023,4.642645575000117],[118.59961998800023,4.635199286000144],[118.58480879000014,4.634019273000121],[118.57536868600008,4.627386786000145],[118.57105553500006,4.616034247000172],[118.57227623800006,4.601141669000128],[118.55298912900005,4.61880117400014],[118.54810631600006,4.621568101000193],[118.54297936300021,4.616929429000081],[118.53956139400022,4.607855536000073],[118.53516686300023,4.601304429000095],[118.52735436300016,4.604559637000136],[118.51197350400005,4.616359768000108],[118.49561608200011,4.623928127000156],[118.47999108200021,4.627875067000133],[118.46656334700005,4.629055080000157],[118.46265709700005,4.630804755000071],[118.45362389400012,4.639471747000158],[118.44890384200015,4.642645575000117],[118.41472415500002,4.648871161000087],[118.34644616000004,4.669907945000118],[118.34644616000004,4.676214911000145],[118.42530358200004,4.676214911000145],[118.43628991000004,4.679266669000143],[118.44320722700004,4.686102606000161],[118.4489852220001,4.69318268400012],[118.456309441,4.697251695000176],[118.47608483200023,4.693793036000088],[118.48511803500006,4.679429429000109],[118.49317467500005,4.661851304000081]]],[[[115.25928795700005,5.291205145000134],[115.24170983200023,5.272691148000121],[115.2319442070001,5.273138739000117],[115.21225019600016,5.284979559000163],[115.20411217500023,5.283596096000096],[115.18425540500002,5.267035223000121],[115.15919030000023,5.252183335000069],[115.16089928500004,5.26699453300013],[115.18913821700019,5.344794012000122],[115.19727623800011,5.354641018000152],[115.22608483200023,5.381048895000134],[115.24170983200023,5.38739655200007],[115.24854576900023,5.36546458500014],[115.25977623800023,5.315375067000133],[115.25928795700005,5.291205145000134]]],[[[100.30982506600006,5.450751044000114],[100.3185327480002,5.435288804000094],[100.33399498800004,5.426947333000115],[100.34343509200008,5.417629299000083],[100.32520592500006,5.383286851000122],[100.32081139400012,5.344549872000172],[100.31666100400017,5.326646226000122],[100.29224694100012,5.280462958000115],[100.28874759200018,5.262681382000125],[100.2347111340001,5.272691148000121],[100.19499759200018,5.272284247000115],[100.19361412900011,5.270086981000119],[100.19271894600016,5.267645575000174],[100.1897078790001,5.26650625200014],[100.18433678500017,5.268540757000082],[100.1800236340001,5.273342190000065],[100.178965691,5.277980861000088],[100.19271894600016,5.285956122000143],[100.19613691500015,5.299994208000101],[100.19117272200016,5.352525132000139],[100.19312584700006,5.399318752000113],[100.19092858200005,5.408433335000097],[100.18628991000006,5.416205145000106],[100.18165123800011,5.422349351000179],[100.17945397200012,5.426906643000122],[100.18165123800011,5.436590887000179],[100.18523196700006,5.444281317000105],[100.1858830090001,5.451117255000128],[100.17945397200012,5.458197333000086],[100.19206790500019,5.462958075000174],[100.1971134770001,5.457261460000097],[100.20118248800006,5.448472398000135],[100.21062259200019,5.443996486000159],[100.21859785200016,5.446722723000136],[100.2244572270001,5.452948309000107],[100.22934004000015,5.45990631700009],[100.2347111340001,5.464504299000126],[100.2537541020001,5.46906159100017],[100.27409915500019,5.468491929000108],[100.29330488400015,5.462591864000075],[100.30982506600006,5.450751044000114]]],[[[118.19548587300008,5.820257880000099],[118.189219597,5.819728908000116],[118.181895379,5.820257880000099],[118.17253665500007,5.822821356000105],[118.16553795700011,5.827541408000116],[118.16382897200018,5.834418036000116],[118.16993248800004,5.843695380000071],[118.18100019600004,5.851263739000117],[118.19312584699999,5.854681708000129],[118.219493035,5.85553620000013],[118.23308353000007,5.851141669000143],[118.23609459700016,5.841498114000089],[118.23080488399998,5.831935940000093],[118.219493035,5.827582098000107],[118.21314537900015,5.82660553600013],[118.19548587300008,5.820257880000099]]],[[[99.81695288700004,6.176527626000151],[99.80559648300002,6.171792982000085],[99.78952269900005,6.185875956000117],[99.78405904600007,6.201118998000112],[99.77471042300007,6.204017199000106],[99.76723441600019,6.223804251000117],[99.78629161100011,6.24182214800011],[99.80044244900009,6.272811332000089],[99.82392178600017,6.282135856000139],[99.83697849400019,6.294227056000125],[99.83978225000007,6.277297115000167],[99.832317974,6.268914560000084],[99.82485877300014,6.257720434000149],[99.82496178500006,6.245591539000159],[99.82325280000005,6.239081122000158],[99.82381200400002,6.22286747700015],[99.83023316600011,6.205753451000149],[99.82642783100013,6.190674611000147],[99.81695288700004,6.176527626000151]]],[[[99.86646569100006,6.429673570000162],[99.8782658210001,6.419745184000149],[99.89893639400012,6.410345770000134],[99.89759415000017,6.402046953000138],[99.90479576900006,6.397772528000147],[99.91334069100017,6.3902041690001],[99.90903044100017,6.378067794000103],[99.90061659800003,6.364303784000171],[99.91086526100017,6.348726301000127],[99.91447663800008,6.339711457000121],[99.9162703790001,6.331529039000173],[99.90610298600004,6.32606739100008],[99.89169428400007,6.321944661000117],[99.88316172000012,6.312731168000113],[99.8705080560002,6.304923615000092],[99.86569178000015,6.290526604000192],[99.84941794499998,6.300711598000106],[99.84458594200005,6.324685901000095],[99.82533255000007,6.324098670000168],[99.80730692400007,6.317532434000086],[99.79177021900009,6.298457169000173],[99.77803186100007,6.282972726000181],[99.76166422200012,6.282842796000096],[99.7489492930001,6.270182652000102],[99.73667266600015,6.264571008000132],[99.72873460300016,6.261475800000184],[99.71545779600015,6.310057516000143],[99.7221322270001,6.327483499000109],[99.7190436920001,6.35323067300014],[99.70280726000007,6.35862542400011],[99.67683825200007,6.363973760000135],[99.65870201900012,6.362616278000175],[99.65007571700019,6.376695054000123],[99.64600670700005,6.394191799000083],[99.64522806000011,6.435840878000178],[99.66944363000019,6.426886127000088],[99.688751213,6.435305316000097],[99.72137140400011,6.434151632000123],[99.73647816000002,6.423983516000177],[99.77092667200006,6.419841624000142],[99.7859962410001,6.422854432000108],[99.80224884300016,6.436050476000119],[99.814291611,6.454036660000071],[99.82395070300005,6.454645857000116],[99.83920332100016,6.454820054000137],[99.83448326900006,6.463283596000082],[99.83277428500006,6.470851955000128],[99.84202909600018,6.469639039000143],[99.85108483200011,6.46564362200013],[99.85889733200011,6.443793036000102],[99.86646569100006,6.429673570000162]]],[[[100.21236332200007,6.689179383000138],[100.22750451700009,6.688869324000151],[100.22750451700009,6.6908330280001],[100.2426457120001,6.700263977000148],[100.25174076400006,6.701090801000177],[100.26331628400007,6.700005595000093],[100.27396163000017,6.696259053000162],[100.28078291900013,6.688921000000164],[100.31788659700013,6.57670562800017],[100.3292037350001,6.557766215000128],[100.3487891030002,6.540609639000166],[100.37765899000007,6.526754413000148],[100.38739139900011,6.522083639000144],[100.40966394000006,6.515262349000182],[100.42651045700013,6.513892925000121],[100.45234867400002,6.516864319000206],[100.4672314860002,6.513221131000137],[100.49916752200008,6.490302633000113],[100.51740930200006,6.481905213000118],[100.57843916800013,6.464257711000129],[100.61264896700013,6.449168193000133],[100.63068404100014,6.444775696000136],[100.64840905700012,6.447152812000168],[100.71284956900016,6.493041484000145],[100.7299544680001,6.4931965130001],[100.73150476100008,6.487021179000108],[100.73119470200011,6.464722799000156],[100.73388187700006,6.456377055000175],[100.74230513500007,6.450124207000086],[100.75160689400016,6.448806457000131],[100.76189050400015,6.448961487000161],[100.77325931800007,6.447307841000125],[100.79630700700014,6.433949484000095],[100.80560876500013,6.414803365000182],[100.80845096900012,6.367261048000073],[100.81072473200001,6.355763041000145],[100.81516890500015,6.344833476000176],[100.8271061610001,6.324550477000158],[100.82901818900021,6.316256409000118],[100.82689945500013,6.307058004000112],[100.82373221800016,6.29860427300018],[100.82338545800005,6.297678731000161],[100.82152510600017,6.288764547000142],[100.82214522400014,6.259877422000102],[100.8245740150002,6.251480001000118],[100.83299727400018,6.236674703000091],[100.83733809400016,6.23719146700013],[100.84281579600022,6.243935242000163],[100.85511478700018,6.247914328000149],[100.86844730700012,6.246157328000081],[100.91009851100014,6.235796204000152],[100.92890873200022,6.24062795000016],[100.95516036000018,6.268636576000176],[100.97428064000003,6.272615662000149],[101.00647505700013,6.246364034000123],[101.02306319200014,6.240989685000158],[101.06895186400018,6.250859883000146],[101.08166426600016,6.246467387000152],[101.08827884900015,6.233522441000133],[101.09101770000008,6.213161926000111],[101.08915734900009,6.188848165000195],[101.0800106200002,6.180347392000087],[101.06688480700019,6.174327088000154],[101.05344893400009,6.157609761000117],[101.05251875900015,6.13456207300014],[101.06853845200007,6.119550069000169],[101.08714196800005,6.105597433000169],[101.0942733150001,6.085753683000178],[101.08900232000022,6.046608785000145],[101.08745202700013,5.989687195000086],[101.08042403200008,5.957027690000118],[101.07877038600006,5.938165792000176],[101.07112227400009,5.919846497000107],[101.05293217000022,5.913102722000176],[101.0318481850002,5.908916931000135],[101.01531172700012,5.898349101000164],[100.97428064000003,5.815305075000197],[100.96771773300011,5.804117126000164],[100.96528894000014,5.792412415000172],[100.96720096800006,5.781017762000174],[100.97242665500008,5.772852627000147],[100.98001672400014,5.760993144000138],[100.99174727400012,5.73748036700016],[100.99862023900019,5.729548035000107],[101.00838708500012,5.725672302000148],[101.02740401200012,5.726550802000176],[101.03732588700021,5.724587097000153],[101.0598051350001,5.709575094000172],[101.07877038600006,5.687767640000146],[101.09396325700018,5.662652893000129],[101.10543542600013,5.637641500000129],[101.12217858900007,5.62989003500013],[101.14998050900012,5.638649190000194],[101.19685103400016,5.666812846000155],[101.21230228700013,5.681514791000153],[101.22501469000011,5.699213969000155],[101.23359297700013,5.719419454000146],[101.23664188700016,5.7416661580001],[101.24899255400011,5.786986389000106],[101.27968835500015,5.803031921000169],[101.3189624440001,5.810085755000088],[101.3575647380002,5.828405050000157],[101.39265303600015,5.851091004000125],[101.50020142500009,5.892693601000118],[101.53465987100006,5.906023051000147],[101.55791426600014,5.911345724000099],[101.57930831000007,5.906333109000129],[101.59512129800007,5.885352478000129],[101.59977217600012,5.874061178000161],[101.60514652500008,5.866103007000106],[101.6128979900001,5.86134877500011],[101.62457686400013,5.859410909000175],[101.63408532700007,5.855586853000148],[101.63439538600014,5.847344462000193],[101.63129480000006,5.837370911000107],[101.63077803600007,5.828405050000157],[101.65036340400016,5.782645569000124],[101.6659180090002,5.765592346000105],[101.68669193600013,5.761199849000191],[101.69661381100009,5.766264140000175],[101.69756670000018,5.767138300000113],[101.71475223800014,5.782903951000108],[101.72679284700021,5.786469625000165],[101.74002201400006,5.782361349000155],[101.74787683100007,5.772387797000135],[101.75418135600009,5.760269674000142],[101.76286299700021,5.749546814000141],[101.78415368600021,5.738100484000128],[101.80048343900015,5.739909159000205],[101.81226566600006,5.752544047000143],[101.82022383600021,5.7737313840002],[101.82549483300014,5.779829203000162],[101.85474369300019,5.797657573000109],[101.86084151200006,5.806494242000113],[101.86425215700008,5.815408427000136],[101.86921309400012,5.823857524000132],[101.88032352800016,5.831040548000175],[101.9129313560002,5.859307556000161],[101.91928755700022,5.897573955000155],[101.91975264500016,5.940258687000153],[101.93473881000013,5.981729024000117],[101.95938846900006,6.011598002000142],[102.03344079600005,6.068390402000162],[102.06000248200004,6.09479705800014],[102.07126794400014,6.126655579000101],[102.06665583400016,6.204748336000122],[102.07311375502772,6.257496632543237],[102.09864342500005,6.239081122000158],[102.15211022200018,6.203192450000174],[102.16358483200005,6.197495835000097],[102.18702233200011,6.203436591000113],[102.1916610040001,6.215073960000126],[102.18311608200011,6.223049221000081],[102.1668400400001,6.217962958000057],[102.1780705090001,6.233628648000135],[102.1995548840001,6.232814846000124],[102.31568444100006,6.190375067000133],[102.33814537900011,6.176988023000135],[102.37989342500006,6.132961330000128],[102.4998478520001,5.897406317000133],[102.52076256600017,5.871730861000088],[102.54200280000006,5.854763088000112],[102.55046634200019,5.848049221000153],[102.60328209700016,5.815375067000119],[102.62631269600016,5.797186591000127],[102.6460067070001,5.772935289000145],[102.65902754000015,5.740545966000141],[102.669200066,5.725002346000139],[102.69646243600019,5.712876695000148],[102.87566165500002,5.571437893000081],[102.9181421230002,5.55044179900014],[102.95948326900006,5.542059637000165],[102.9755965500001,5.531317450000159],[103.02759850400017,5.485500393000066],[103.12029056100002,5.381333726000165],[103.22242272200018,5.221136786000144],[103.25733483200011,5.136175848000106],[103.35661868600002,4.970404364000074],[103.41529381600006,4.863348700000145],[103.4212345710001,4.844142971000096],[103.42505944100017,4.837144273000106],[103.44263756600006,4.816595770000077],[103.44800866000017,4.806545315000093],[103.44857832100016,4.795070705000143],[103.44117272200016,4.765570380000085],[103.44263756600006,4.742824611000131],[103.45248457100016,4.701076565000108],[103.46941165500002,4.550034898000149],[103.4681095710001,4.527085679000066],[103.458262566,4.508286851000122],[103.45142662900011,4.488470770000105],[103.46371504000015,4.443752346000153],[103.461680535,4.429144598000136],[103.4941512380001,4.336615302000141],[103.4964298840001,4.306219794000171],[103.49390709700006,4.29531484600011],[103.4803166020001,4.260239976000122],[103.47234134200008,4.248236395000106],[103.46583092500006,4.242092190000122],[103.45167076900006,4.225165106000134],[103.44800866000017,4.217474677000112],[103.44841556100019,4.20880768400012],[103.4548445970001,4.182766018000152],[103.44857832100016,4.172430731000134],[103.44280032600008,4.168972072000144],[103.4409285820001,4.167873440000093],[103.43279056100019,4.164862372000101],[103.4246525400001,4.15916575700011],[103.40398196700008,4.131822007000139],[103.39519290500019,4.116278387000136],[103.39405358200004,4.098618882000125],[103.40088951900006,4.067328192000076],[103.43799889400012,3.975043036000116],[103.43433678500006,3.950018622000115],[103.41163170700011,3.963934637000178],[103.39470462300018,3.935003973000093],[103.38404381600017,3.890326239000132],[103.38038170700005,3.857489325000131],[103.38135826900012,3.820502020000091],[103.37842858200011,3.802435614000075],[103.36101321700019,3.801988023000163],[103.35108483200011,3.789211330000128],[103.34278405000012,3.77191803600013],[103.3387150400001,3.758205471000096],[103.33961022200016,3.738348700000102],[103.34498131600004,3.721584377000084],[103.38355553500011,3.637274481000176],[103.38721764400006,3.624741929000095],[103.40455162900011,3.600043036000102],[103.43873131600006,3.567816473000064],[103.462168816,3.534125067000062],[103.44800866000017,3.504950262000108],[103.48218834700018,3.511786200000131],[103.43336022200016,3.408392645000148],[103.4280705090001,3.36717357000019],[103.44450931100019,3.243557033000101],[103.45142662900011,3.223781643000081],[103.4560653000001,3.203762111000117],[103.43458092500006,2.961818752000099],[103.44117272200016,2.922105210000012],[103.47364342500006,2.851019598000135],[103.52019290500019,2.789007880000014],[103.638438347,2.672105210000055],[103.64031009200006,2.67129140800013],[103.65211022200006,2.666001695000161],[103.66749108200011,2.662909247000087],[103.68506920700011,2.662054755000085],[103.69044030000005,2.659125067000147],[103.7054142590001,2.645453192000033],[103.7161564460001,2.641546942000119],[103.72584069100017,2.643052476000165],[103.74968509200008,2.654608466000099],[103.76514733200011,2.648911851000122],[103.76677493600019,2.641750393],[103.76417076900012,2.633246161000145],[103.76710045700005,2.623846747000115],[103.80176842500012,2.596869208000072],[103.81397545700011,2.581488348000036],[103.83969160200016,2.524847723000121],[103.8310653000001,2.501695054000094],[103.83033287900011,2.482367255000071],[103.837657097,2.463812567000147],[103.91138756600006,2.370672919000114],[103.92009524800001,2.362616278000161],[103.94206790500007,2.346502997000101],[103.94898522200006,2.339911200000131],[103.9533797540001,2.329413153000147],[103.95362389400005,2.30947500200007],[103.95582116000017,2.298285223000065],[103.96241295700005,2.287298895000021],[103.97999108200005,2.265570380000128],[103.983653191,2.25364817900001],[103.98145592500012,2.244330145000148],[103.97169030000006,2.224595445000119],[103.96941165500013,2.212713934000163],[103.9764103520001,2.192368882000082],[104.02328535200016,2.134466864000075],[104.04883873800006,2.071763414000173],[104.0672306650001,2.046820380000057],[104.07886803500017,2.021795966000141],[104.08545983200005,2.010972398000064],[104.10645592500012,1.986883856000119],[104.11280358200004,1.976141669000029],[104.12086022200018,1.954046942000119],[104.12232506600006,1.934637762000122],[104.11963951900006,1.891180731000162],[104.12427819100016,1.87055084800015],[104.13542728000019,1.848944403000061],[104.149180535,1.8374697940001],[104.16114342500005,1.847072658],[104.16749108200005,1.847072658],[104.19532311300006,1.798732815000079],[104.20427493600006,1.75287506700009],[104.22291100400015,1.726874091000099],[104.22803795700005,1.712103583000115],[104.22950280000012,1.678290106000133],[104.23536217500006,1.664374091000155],[104.24724368600013,1.650539455000157],[104.25521894600016,1.637762762000037],[104.2498478520001,1.627346096000124],[104.25652103000007,1.613836981000148],[104.2636824880001,1.572170315000108],[104.2840275400001,1.51748281500015],[104.29371178500016,1.471584377],[104.29468834700006,1.446519273000177],[104.28785241000006,1.435532945000119],[104.2795516290001,1.426459052000126],[104.28239993600019,1.382635809000163],[104.27735436300004,1.3673363300001],[104.2395939460001,1.3673363300001],[104.23462975400011,1.363999742000175],[104.22413170700004,1.349514065000122],[104.21924889400012,1.346177476000108],[104.17408287900017,1.348211981000134],[104.1544702480002,1.352280992000175],[104.11402428500004,1.368475653000132],[104.10621178500016,1.37518952],[104.10523522200018,1.385402736000117],[104.10596764400012,1.404486395000106],[104.10059655000005,1.418850002000084],[104.08863366000004,1.429429429000137],[104.07488040500017,1.438706773000177],[104.06495201900012,1.448635158000087],[104.0594181650001,1.485337632000096],[104.0862736340001,1.502875067000133],[104.12322024800014,1.517523505000142],[104.14763431100008,1.545396226000193],[104.12891686300011,1.549709377000099],[104.1111759770001,1.545070705000072],[104.09449303500017,1.535223700000145],[104.06080162900015,1.51007721600017],[104.05339603000019,1.506293036000059],[104.04981530000012,1.513088283000073],[104.04395592500006,1.531195380000085],[104.01221764400012,1.596869208000086],[103.9885360040001,1.632391669000157],[103.96599368600019,1.647853908000087],[103.96021569100006,1.635809637000165],[103.97038821700019,1.608628648000163],[104.00831139400012,1.548732815000122],[104.00863691500014,1.534857489000132],[104.00342858200005,1.506903387000023],[104.0057072270001,1.493841864000132],[104.01002037900011,1.479478257000054],[104.01246178500006,1.464260158000073],[104.00977623800006,1.448635158000087],[103.97445722700016,1.41982656500015],[103.92652428500006,1.431708075000102],[103.83969160200016,1.476548570000134],[103.8143009770001,1.474514065000108],[103.77409915500013,1.453680731000119],[103.75310306100008,1.448635158000087],[103.71265709700006,1.45209381700009],[103.6976017590001,1.450628973000121],[103.68140709700016,1.441799221000082],[103.63005618600006,1.377427476000079],[103.60010826900006,1.353461005000113],[103.56470787900015,1.359849351000051],[103.56275475400011,1.364406643000081],[103.5555119150001,1.37474192900001],[103.54786217500006,1.382066148000192],[103.544200066,1.377183335000041],[103.5452580090001,1.365952867000118],[103.55005944100017,1.351060289000159],[103.55103600400011,1.342840887000165],[103.54851321700014,1.331691799000154],[103.53052819100017,1.305243231000162],[103.51636803500017,1.270453192000119],[103.5040796230002,1.289943752000113],[103.46900475400011,1.319973049000069],[103.4548445970001,1.339422919000157],[103.44629967500006,1.359320380000071],[103.41391035200014,1.467840887000136],[103.39535566500015,1.506415106000034],[103.36736087300002,1.538397528000033],[103.32504316500014,1.565334377000084],[103.20606530000006,1.61041901200015],[103.03711998800004,1.715521552000041],[102.9963485040001,1.734930731000048],[102.97413170700005,1.74115631700009],[102.95118248800004,1.743394273000163],[102.93458092500012,1.747544664000031],[102.92318769600016,1.757879950000117],[102.90674889400006,1.784369208000101],[102.887461785,1.807114976000122],[102.8636173840001,1.82778554900014],[102.83562259200019,1.845648505000028],[102.80445397199999,1.860093492000161],[102.7884220710001,1.854193427000126],[102.73878014400012,1.846625067],[102.72185306100002,1.847072658],[102.69939212300002,1.859442450000117],[102.68620853000019,1.87905508],[102.66716556100019,1.921576239000131],[102.65064537900011,1.940904039000159],[102.56885826900005,2.006415106000105],[102.55762780000006,2.018744208000057],[102.55046634200019,2.03143952000012],[102.55909264400012,2.033189195000105],[102.560313347,2.036444403000147],[102.55827884200019,2.040594794000015],[102.55730228000013,2.045111395000063],[102.54468834700006,2.057684637000136],[102.52686608200005,2.070868231000091],[102.489024285,2.092922268000095],[102.34864342500012,2.149969794000085],[102.18799889400006,2.216376044000114],[102.15430748800006,2.235663153000147],[102.12696373800011,2.257310289000145],[102.0512801440001,2.340887762000108],[102.04029381600017,2.346136786000087],[102.01872806100008,2.350409247000016],[101.99903405000012,2.361639716000099],[101.98707116000017,2.377142645000105],[101.98878014400006,2.394517320000176],[101.97217858200011,2.398586330000143],[101.95622806100013,2.404771226000122],[101.92676842500012,2.422430731000134],[101.90919030000012,2.410793361000116],[101.87745201900006,2.408840236000074],[101.86524498800004,2.394517320000176],[101.85816491,2.419419664000131],[101.85621178500016,2.451361395000049],[101.85108483200005,2.478949286000145],[101.83423912900017,2.490708726000122],[101.82740319100006,2.494126695000134],[101.81771894600016,2.502183335000083],[101.8032332690001,2.518011786000116],[101.78305097700009,2.575873114000117],[101.77442467500005,2.586574611000145],[101.76099694100012,2.592108466000155],[101.71338951900012,2.596584377000041],[101.70093834700018,2.604152736000074],[101.69092858200011,2.614894924000097],[101.67351321700002,2.627264716000042],[101.61833743600019,2.636908270000092],[101.59791100400011,2.646307684000035],[101.56421959700006,2.652004299000097],[101.54232832100008,2.661281643000066],[101.50277754000014,2.689398505000142],[101.47966556100019,2.716986395000063],[101.43018639400005,2.792466539000102],[101.39918053500006,2.819077867000132],[101.35515384200014,2.829250393000081],[101.31055748800006,2.833563544000086],[101.28638756600006,2.849676825000145],[101.30347741000017,2.894842841000099],[101.28101647200018,2.897853908000101],[101.2830509770001,2.911200262000122],[101.33277428500011,2.972357489000075],[101.34717858200005,2.985500393000038],[101.3615828790001,2.991034247000144],[101.37281334700006,3.002346096000039],[101.37281334700006,3.02830638200011],[101.36500084700006,3.076361395000091],[101.35857181100002,3.089260158000116],[101.32984459700016,3.111761786000101],[101.32341556100008,3.124457098000065],[101.30347741000017,3.25482819200009],[101.29761803500006,3.274603583000115],[101.28321373800004,3.290838934000149],[101.2488712900001,3.319973049000112],[101.24488366000006,3.32758209800015],[101.24146569100004,3.33661530200007],[101.23568769600016,3.344142971000039],[101.215586785,3.349188544000156],[101.20573978000019,3.353827216000084],[101.1976017590001,3.359320380000028],[101.19418379000014,3.364081122000115],[101.18718509200018,3.38019440300009],[101.13965905000006,3.442857164000088],[101.10840905000012,3.473944403000175],[101.10222415500007,3.482896226000108],[101.09400475400017,3.505804755000028],[101.07422936300006,3.534409898000177],[101.06446373800011,3.579046942000062],[101.05713951900006,3.60053131700009],[101.04053795700005,3.621975002000041],[100.96794681100002,3.672064520000049],[100.94336998800011,3.682603257000096],[100.93360436300006,3.689276434000063],[100.92798912900017,3.696600653000146],[100.9124455090001,3.724066473000107],[100.88648522200018,3.756333726000136],[100.86963951900006,3.768011786000045],[100.82292728000019,3.77606842700007],[100.81226647200006,3.78656647300005],[100.81324303500006,3.80377838700015],[100.8237410820001,3.827093817000061],[100.84156334700016,3.843736070000105],[100.84538821700019,3.851263739000075],[100.8339949880001,3.854396877000141],[100.81177819100017,3.851223049000083],[100.80054772200018,3.847805080000157],[100.79590905000006,3.843817450000088],[100.78484134200018,3.839341539000131],[100.76010175900015,3.847154039000117],[100.73462975400011,3.859442450000173],[100.72071373800006,3.868068752000084],[100.70948326900006,3.883042710000112],[100.70337975400017,3.898871161000145],[100.70069420700005,3.917222398000191],[100.70118248800004,3.96723053600013],[100.70630944100017,3.983587958000143],[100.71876061300011,3.990871486000159],[100.78174889400012,3.988023179000123],[100.80152428500006,3.991115627000098],[100.81739342500006,4.010809637000136],[100.83464603000019,4.018540757000068],[100.85499108200005,4.022162177000112],[100.87142988400015,4.018866278000175],[100.86150149800008,4.040350653000104],[100.83814537900017,4.037990627000156],[100.8143009770001,4.026068427000112],[100.80323326900006,4.018866278000175],[100.77759850400017,4.021389065000093],[100.77295983200005,4.037014065000079],[100.7767033210001,4.060532945000133],[100.77605228,4.086493231000134],[100.76587975400011,4.09983958500014],[100.71387780000012,4.13495514500012],[100.69752037900011,4.150864976000136],[100.67774498800011,4.165187893000123],[100.65552819100006,4.169501044000114],[100.63257897200006,4.155462958000072],[100.62256920700004,4.175848700000145],[100.61304772200006,4.208400783000116],[100.60889733200011,4.238430080000157],[100.61524498800004,4.251654364000103],[100.60027103000013,4.256537177000083],[100.59571373800006,4.268744208000143],[100.59498131600006,4.284409898000121],[100.59099368600008,4.300034898000106],[100.57960045700011,4.311224677000125],[100.5696720710001,4.313381252000127],[100.56544030000006,4.319159247000172],[100.57056725400011,4.341009833000129],[100.57984459700006,4.366441148000135],[100.58301842500012,4.380072333000086],[100.5842391290001,4.399074611000088],[100.58855228,4.412258205000143],[100.60767662900011,4.426214911000116],[100.61207116000017,4.440008856000119],[100.61475670700004,4.467759507000096],[100.63257897200006,4.532904364000117],[100.64551842500005,4.560044664000131],[100.6302189460001,4.553941148000149],[100.61231530000012,4.558742580000143],[100.59734134200019,4.571926174000097],[100.59099368600008,4.590806382000125],[100.59441165500007,4.610907294000157],[100.60377037900011,4.629461981000161],[100.61695397200006,4.638251044000143],[100.63257897200006,4.629055080000157],[100.63949629000015,4.643133856000105],[100.64730879000014,4.65473053600013],[100.6560978520001,4.66372304900014],[100.66618899800007,4.669907945000118],[100.64234459700018,4.674302476000193],[100.62037194100017,4.666205145000077],[100.60417728000013,4.665838934000149],[100.59782962300007,4.693548895000134],[100.59449303500006,4.743068752000084],[100.6038517590001,4.756048895000077],[100.63257897200006,4.758124091000099],[100.63257897200006,4.765570380000085],[100.62680097700016,4.766587632000139],[100.61207116000017,4.772365627000099],[100.61980228000019,4.786444403000147],[100.61736087300008,4.792914130000142],[100.59782962300007,4.799709377000084],[100.58765709700006,4.800970770000092],[100.581228061,4.797919012000179],[100.57618248800011,4.799261786000088],[100.57056725400011,4.813381252000113],[100.56950931100002,4.827134507000125],[100.57740319099999,4.843980210000126],[100.57740319099999,4.85431549700013],[100.57154381600017,4.857733466000141],[100.56177819100006,4.858303127000113],[100.55307050900015,4.862046617000146],[100.55005944100006,4.875433661000145],[100.53988691500008,4.870021877000099],[100.52914472700016,4.867865302000098],[100.50538170700005,4.867987372000171],[100.49439537900011,4.872259833000086],[100.49927819100017,4.881048895000148],[100.50961347700009,4.888617255000099],[100.51531009200008,4.889064846000096],[100.51465905000012,4.902492580000085],[100.51099694100017,4.90692780200007],[100.50342858200004,4.910142320000119],[100.49170983200005,4.919826565000079],[100.48170006600006,4.924709377000141],[100.47071373800011,4.922308661000102],[100.46070397199999,4.916001695000161],[100.45386803500011,4.908921617000188],[100.44157962300002,4.922837632000081],[100.43580162900017,4.936102606000105],[100.43238366000017,4.949652411000073],[100.42652428500004,4.964178778000118],[100.40186608200005,4.9923363300001],[100.39568118600008,5.013373114000132],[100.38070722700009,5.047349351000165],[100.37232506600017,5.061428127000113],[100.36451256600017,5.084295966000113],[100.36589603000007,5.092515367000118],[100.36947675900015,5.093247789000145],[100.37419681100002,5.091945705000143],[100.37867272200012,5.094549872000143],[100.38884524800002,5.105658270000077],[100.40007571700008,5.114894924000126],[100.4090275400001,5.126654364000117],[100.41627037900011,5.159613348000093],[100.430918816,5.190619208000115],[100.43327884200006,5.211167710000054],[100.43067467500005,5.222357489000075],[100.42115319100016,5.242417710000126],[100.41895592500006,5.248480536000116],[100.42123457100016,5.260646877000099],[100.43116295700005,5.278957424000154],[100.43327884200006,5.29002513200011],[100.4300236340001,5.302883205000128],[100.40601647200016,5.348374742000188],[100.38526451900006,5.376939195000175],[100.38021894600016,5.390692450000103],[100.37867272200012,5.413275458000086],[100.38493899800008,5.499253648000177],[100.37842858200005,5.522772528000132],[100.35572350400011,5.562689520000106],[100.35084069100006,5.584214585000126],[100.3440047540001,5.669256903000132],[100.35320071700019,5.665350653000147],[100.36491946700018,5.662665106000162],[100.37631269600016,5.663316148000121],[100.38493899800008,5.669256903000132],[100.38640384200019,5.679103908000158],[100.3787541020001,5.68520742400014],[100.36915123800011,5.689601955000128],[100.36451256600017,5.694077867000189],[100.37574303500016,5.810939846000153],[100.34913170700004,6.012681382000068],[100.340586785,6.029933986000159],[100.32593834700012,6.04905833500014],[100.31397545700005,6.070624091000155],[100.2961531910001,6.115545966000155],[100.26002037900017,6.180894273000135],[100.24789472700014,6.220770575000103],[100.2325952480002,6.236232815000122],[100.19996178500017,6.258978583000072],[100.17457116000006,6.29096100500007],[100.15284264400006,6.333929755000113],[100.13746178500006,6.38051992400014],[100.1311141290001,6.423407294000114],[100.12728925900008,6.442287502000141],[100.13557214400007,6.457720643000144],[100.14435713700018,6.479579773000182],[100.14849125200007,6.504487814000157],[100.14807784100017,6.513221131000137],[100.14482222500013,6.530584412000152],[100.14570072500013,6.539524435000175],[100.15241866100004,6.549988912000117],[100.16120365400016,6.557456156000143],[100.16719812000011,6.56613779700011],[100.16518273900013,6.580322978000154],[100.15717289200002,6.603525696000162],[100.15608768800016,6.620578919000195],[100.16275394700008,6.66111908000012],[100.1640458580001,6.683727519000158],[100.16683638600009,6.695122172000154],[100.17329593900016,6.703416240000195],[100.18755863400011,6.707963766000148],[100.19665368700007,6.702486064000155],[100.19920020200013,6.699413639000142],[100.2037850350001,6.693881938000118],[100.21236332200007,6.689179383000138]]],[[[117.44304446700018,6.635728257000081],[117.412364129,6.634914455000157],[117.38168378999997,6.639349677000141],[117.35621178500011,6.64789459800015],[117.34693444100006,6.654974677000125],[117.34343509200008,6.663519598000136],[117.34595787900017,6.672308661000116],[117.35499108200005,6.679632880000113],[117.36557050900004,6.683050848000121],[117.41627037900011,6.685288804000108],[117.43213951900012,6.689357815000065],[117.4438582690001,6.698553778000132],[117.44825280000006,6.715155341000098],[117.43930097700017,6.723944403000161],[117.40357506600006,6.72581614800012],[117.39991295700005,6.739325262000108],[117.41163170700007,6.751369533000116],[117.45248457100004,6.75674062700007],[117.46876061300021,6.766669012000165],[117.49390709699999,6.735419012000108],[117.51075280000012,6.704291083000115],[117.50660241000018,6.67348867400014],[117.46876061300021,6.643133856000162],[117.44304446700018,6.635728257000081]]],[[[116.83814537900017,6.962144273000134],[116.85181725400005,6.890204169000171],[116.83326256599999,6.900824286000129],[116.82252037899998,6.904120184000163],[116.81763756600006,6.900091864000103],[116.81120853000003,6.868841864000132],[116.810801629,6.862860419000114],[116.82227623800017,6.852850653000132],[116.83814537900017,6.847398179000095],[116.85238691499998,6.838527736000145],[116.85865319100006,6.817857164000131],[116.85466556100008,6.778509833000129],[116.84392337300002,6.752264716000113],[116.810801629,6.704575914000145],[116.79273522200018,6.669745184000107],[116.77849368600017,6.6265322940001],[116.78394616000006,6.591620184000178],[116.82447350400004,6.581732489000074],[116.84546959700016,6.592027085000097],[116.86101321700018,6.610541083000101],[116.87305748800011,6.628363348000079],[116.88306725400011,6.636297919000143],[116.89673912900005,6.642075914000102],[116.94117272200006,6.684759833000129],[116.97380618600019,6.708075262000136],[116.9802352220001,6.720363674000097],[116.98414147200013,6.754950262000179],[116.98902428500017,6.759182033000101],[116.99561608200021,6.761135158000144],[117.00261478000002,6.766669012000165],[117.01628665500006,6.793931382000067],[117.05250084700016,6.830755927000141],[117.05787194100004,6.84552643400012],[117.05176842500023,6.866197007000139],[117.02930748800021,6.909979559000107],[117.03052819100017,6.931138414000116],[117.0385848320001,6.942613023000149],[117.04656009200006,6.943793036000088],[117.05583743600017,6.940375067000076],[117.06812584700006,6.937974351000122],[117.07667076900006,6.941310940000149],[117.08326256600004,6.948472398000192],[117.08594811300023,6.955755927000112],[117.08204186300023,6.959051825000144],[117.0744735040001,6.963771877000156],[117.07252037900004,6.974310614000117],[117.0744735040001,6.98566315300009],[117.0783797540001,6.992621161000087],[117.08887780000023,6.994696356000105],[117.10084069100016,6.991603908000116],[117.1121525400001,6.98729075700011],[117.11988366000017,6.985785223000064],[117.12867272200006,6.990668036000129],[117.14380944100004,7.003729559000106],[117.15023847700016,7.003119208000143],[117.15805097700016,6.99872467700007],[117.18344160200016,6.987860419000171],[117.19166100400015,6.985785223000064],[117.19499759200018,6.981838283000087],[117.246755405,6.950506903000132],[117.2524520190001,6.945786851000122],[117.25652103000007,6.937974351000122],[117.25733483200005,6.92084381700009],[117.25098717500025,6.872788804000109],[117.24659264400017,6.862860419000114],[117.23275800900015,6.855454820000118],[117.2283634770001,6.838080145000148],[117.23031660200003,6.817531643000109],[117.23601321700018,6.800767320000176],[117.27198326900005,6.753729559000162],[117.27759850400015,6.735663153000147],[117.28028405000019,6.673570054000122],[117.28443444099999,6.657416083000057],[117.29590905000023,6.636297919000143],[117.30892988400002,6.628810940000079],[117.34929446700019,6.630113023000163],[117.36475670700011,6.625148830000128],[117.378184441,6.61347077000012],[117.39991295700005,6.588568427000097],[117.42481530000012,6.565578518000108],[117.44223066499997,6.553045966000113],[117.45850670700013,6.547552802000084],[117.47486412900005,6.551459052000084],[117.48585045700011,6.562445380000128],[117.50977623800021,6.602199611000131],[117.52540123800021,6.620998440000093],[117.53370201900012,6.621039130000085],[117.53695722700014,6.605698960000126],[117.53760826900012,6.578314520000063],[117.54175866000006,6.577582098000136],[117.56495201900005,6.554388739000103],[117.56104576900006,6.555731512000179],[117.55844160199997,6.551214911000129],[117.55738366000006,6.544745184000135],[117.55811608200005,6.540106512000108],[117.56177819099999,6.538316148000121],[117.57455488400014,6.534979559000178],[117.57862389400012,6.533270575000174],[117.59359785200016,6.519598700000144],[117.603282097,6.514715887000178],[117.61622155000012,6.512844143000109],[117.6302189460001,6.519842841000099],[117.640879754,6.521714585000069],[117.65064537900005,6.516546942000147],[117.67465253999997,6.488959052000141],[117.68531334700006,6.473089911000115],[117.6953231130001,6.451361395000134],[117.70215905000022,6.451361395000134],[117.70582116000016,6.460028387000136],[117.71070397200006,6.46377187700007],[117.71631920700017,6.462958075000159],[117.72250410200003,6.458197333000072],[117.72706139400005,6.451157945000176],[117.72828209700018,6.443670966000126],[117.72820071700019,6.434759833000086],[117.72950280000013,6.423407294000114],[117.73275800900015,6.414129950000159],[117.74195397199999,6.396714585000097],[117.74382571700019,6.389878648000163],[117.74000084700016,6.380560614000132],[117.73308353000007,6.371568101000193],[117.72852623800021,6.362372137000136],[117.73878014400023,6.335679429000109],[117.72950280000013,6.269476630000128],[117.72299238400002,6.254624742000161],[117.70801842500006,6.252875067000076],[117.67481530000023,6.258978583000072],[117.65626061300021,6.252752997000101],[117.63819420700024,6.24062734600011],[117.60922285200006,6.214829820000176],[117.60035241000011,6.197821356000119],[117.60564212300007,6.18183014500012],[117.6271264980002,6.156480210000082],[117.64332116000006,6.117499091000112],[117.65788821700009,6.111273505000142],[117.66114342500012,6.105617580000157],[117.66260826900006,6.095770575000131],[117.66521243600019,6.088202216000084],[117.66553795700011,6.079901434000106],[117.66114342500012,6.067775783000116],[117.65284264400023,6.059312242000161],[117.64356530000005,6.056301174000069],[117.63607832100004,6.051947333000086],[117.63331139400016,6.039862372000171],[117.63990319100004,6.023423570000176],[117.65414472700004,6.019761460000126],[117.66830488400015,6.013413804000095],[117.67481530000023,5.988959052000055],[117.66895592500013,5.972642320000134],[117.65463300900004,5.958685614000061],[117.61963951900022,5.937445380000085],[117.49284915500007,5.894680080000071],[117.46876061300021,5.868557033000116],[117.48650149800002,5.871771552000084],[117.54379316499997,5.89642975500007],[117.56934655000016,5.902899481000161],[117.64014733200004,5.90326569200009],[117.70704186300011,5.911607164000145],[117.75660241000006,5.906154690000121],[117.77426191500014,5.908026434000178],[117.78028405000023,5.919419664000145],[117.77165774800001,5.94428131700009],[117.7822371750001,5.950628973000121],[117.79265384200018,5.950018622000157],[117.80445397200005,5.946478583000086],[117.8188582690001,5.94428131700009],[117.83659915500002,5.945502020000106],[117.88404381600006,5.9546572940001],[117.89389082100014,5.961330471000138],[117.900075717,5.973944403000132],[117.91391035200003,5.986476955000128],[117.941091342,6.005682684000178],[117.9736434250001,6.047756252000141],[117.99138431100019,6.056789455000157],[117.99545332100014,6.061712958000115],[118.00261478000019,6.064601955000143],[118.01685631600002,6.060980536000088],[118.0509546230002,6.02619049700013],[118.05323326900006,6.016302802000126],[118.05250084700005,6.005316473000078],[118.05372155000005,5.99632396000014],[118.07097415500017,5.987372137000122],[118.07357832100011,5.975287177000112],[118.07203209700005,5.954779364000075],[118.07715905000022,5.931586005000128],[118.11898847700014,5.875392971000139],[118.12452233200011,5.870347398000192],[118.12517337300004,5.863918361000088],[118.095957879,5.824164130000099],[118.08106530000023,5.815375067000119],[118.05884850400017,5.80898672100011],[118.035411004,5.807766018000095],[118.01685631600002,5.814520575000117],[118.00001061300011,5.80898672100011],[117.93799889400022,5.814520575000117],[117.92115319100006,5.809027411000101],[117.91041100400005,5.796861070000105],[117.9084578790001,5.784654039000131],[117.91773522200006,5.779201565000093],[117.92204837300002,5.771714585000126],[117.95199629000004,5.694077867000189],[117.96029707099997,5.687160549000097],[117.96485436300021,5.686224677000111],[117.97055097700003,5.688544012000165],[117.98267662899998,5.691066799000097],[117.99805748800023,5.69594961100016],[118.03785241000006,5.714300848000121],[118.05469811300023,5.718329169000171],[118.06275475400015,5.716620184000178],[118.06959069100012,5.707993882000082],[118.07886803500006,5.704657294000143],[118.08659915500007,5.706366278000147],[118.09620201900023,5.7105166690001],[118.10661868600002,5.712591864000117],[118.11646569100006,5.70807526200015],[118.12671959700018,5.693548895000119],[118.13404381600017,5.68964264500012],[118.14372806100002,5.694077867000189],[118.151540561,5.705145575000131],[118.151621941,5.714097398000163],[118.14714603000007,5.724554755000142],[118.1538192070001,5.742132880000085],[118.15821373800011,5.749009507000082],[118.16456139400012,5.756170966000126],[118.1672469410001,5.764390367000118],[118.15935306100002,5.782782294000157],[118.16081790500019,5.793402411000116],[118.17628014400012,5.805161851000179],[118.22095787900017,5.809556382000082],[118.26221764400012,5.827866929000137],[118.28370201900023,5.823228257000109],[118.33578535199999,5.795843817000147],[118.34066816500014,5.794256903000118],[118.34571373800011,5.798407294000143],[118.35670006600006,5.810777085000097],[118.36524498800006,5.81378815300009],[118.37533613400015,5.809881903000104],[118.38453209699999,5.803941148000163],[118.39079837300007,5.800930080000157],[118.41065514400005,5.796128648000177],[118.5130314460001,5.736761786000116],[118.54810631600006,5.70807526200015],[118.5618595710001,5.699774481000175],[118.57927493600008,5.691717841000141],[118.59400475400005,5.682074286000073],[118.59961998800023,5.669256903000132],[118.59595787900017,5.659369208000129],[118.58863366000017,5.653631903000147],[118.58171634200008,5.649969794000099],[118.57846113400002,5.646307684000149],[118.56869550899997,5.589544989000088],[118.56202233200023,5.568019924000069],[118.55884850400015,5.546861070000161],[118.56544030000023,5.525946356000105],[118.57227623800006,5.525946356000105],[118.58220462300007,5.551336981000134],[118.58838951900023,5.562689520000106],[118.59595787900017,5.571234442000119],[118.6005965500001,5.581284898000192],[118.59896894599997,5.607977606000119],[118.60303795700023,5.618719794000128],[118.62907962300012,5.636623440000093],[118.65105228000002,5.636419989000132],[118.67025800899998,5.623032945000134],[118.71729576900012,5.565822658000087],[118.73658287900007,5.547837632000139],[118.75391686300023,5.540187893000108],[118.78028405000012,5.535345770000133],[118.80005944100006,5.522121486000088],[118.81299889400022,5.502346096000067],[118.81934655000006,5.478094794000171],[118.82683353000009,5.483628648000192],[118.83106530000006,5.488592841000141],[118.83277428500018,5.495266018000108],[118.83236738400011,5.505438544000143],[118.87956790500006,5.469794012000108],[118.8979598320001,5.464504299000126],[118.9187931650001,5.454982815000122],[118.93572024800008,5.433986721000096],[118.9394637380001,5.412827867000175],[118.92172285199999,5.403021552000055],[118.93262780000006,5.394110419000114],[118.94825280000022,5.388576565000093],[118.96452884200019,5.388413804000137],[118.97641035200003,5.395575262000165],[118.97925866000017,5.409125067000133],[118.97339928500004,5.419582424000125],[118.97087649800014,5.428290106000105],[118.9838973320001,5.43650950700011],[119.00831139400023,5.435858466000155],[119.05567467500012,5.410956122000115],[119.08570397200005,5.409857489000074],[119.16382897200016,5.446966864000089],[119.18930097700016,5.450751044000114],[119.20484459700018,5.443345445000119],[119.21957441500015,5.427923895000092],[119.24333743600008,5.395575262000165],[119.26498457100014,5.374212958000115],[119.27426191500005,5.361151434000135],[119.27808678500006,5.344631252000155],[119.27588951900023,5.322943427000084],[119.26644941500004,5.289780992000161],[119.26441491000016,5.272691148000121],[119.26929772200006,5.226223049000069],[119.26710045700005,5.201076565000093],[119.24415123800006,5.181341864000146],[119.19556725400005,5.128648179000052],[119.15593509200019,5.106187242000146],[118.9731551440001,5.039943752000084],[118.78663170700015,4.986029364000146],[118.75074303500017,4.964056708000143],[118.72730553500016,4.953924872000172],[118.70248457100004,4.946600653000175],[118.68148847699997,4.944322007000109],[118.665863477,4.947984117000161],[118.63445071700008,4.961330471000082],[118.60580488400004,4.965765692000146],[118.58497155000012,4.971869208000129],[118.57227623800006,4.97162506700009],[118.56023196700006,4.96743398600016],[118.53077233200004,4.944322007000109],[118.50904381600012,4.931057033000087],[118.49935957100003,4.931463934000178],[118.48633873800021,4.940619208000072],[118.48072350400005,4.947984117000161],[118.46265709700005,4.97874583500014],[118.42839603000006,5.018784898000163],[118.39698326900023,5.034816799000154],[118.37623131600006,5.041083075000117],[118.36687259200019,5.035874742000118],[118.35718834700006,5.038804429000137],[118.33578535199999,5.025132554000109],[118.30486087300007,4.99892812700007],[118.29672285200004,5.00458405200007],[118.29167728000019,5.000921942000105],[118.28972415500007,4.990952867000118],[118.29127037899998,4.977850653000147],[118.25269616000006,4.987127997000101],[118.2169702480002,4.965806382000139],[118.16081790500019,4.902777411000116],[118.14389082099997,4.890285549000112],[118.13648522199999,4.882310289000159],[118.1335555350001,4.871730861000103],[118.13493899800008,4.859605210000112],[118.13900800900002,4.855373440000093],[118.14576256600017,4.853216864000089],[118.17139733200021,4.836574611000144],[118.177989129,4.830755927000097],[118.18384850400015,4.821844794000143],[118.19499759200006,4.792914130000142],[118.21900475400005,4.756293036000116],[118.24642988400008,4.723822333000129],[118.27759850400017,4.695135809000163],[118.31226647200006,4.669907945000118],[118.32520592500022,4.657863674000097],[118.33350670700021,4.651556708000072],[118.34262129000004,4.648871161000087],[118.35181725400017,4.648627020000134],[118.372813347,4.645819403000175],[118.38054446700004,4.642645575000117],[118.38526451900023,4.636664130000113],[118.39323978000019,4.618353583000143],[118.39771569100017,4.611314195000161],[118.40406334700016,4.605861721000139],[118.41114342500022,4.601507880000142],[118.42839603000006,4.594305731000105],[118.43083743600019,4.611273505000084],[118.444590691,4.614935614000132],[118.4624129570001,4.610012111000074],[118.47673587300007,4.601141669000128],[118.48747806100019,4.587591864000075],[118.48951256599999,4.575100002000156],[118.4843856130001,4.562730210000112],[118.47331790500006,4.549872137000179],[118.46941165500006,4.537176825000131],[118.478200717,4.526068427000098],[118.4904077480002,4.516506252000113],[118.49659264400005,4.508286851000122],[118.50489342500023,4.502386786000087],[118.52328535199999,4.511623440000136],[118.55193118600006,4.532782294000143],[118.56316165500007,4.527248440000122],[118.58741295700004,4.523830471000124],[118.59961998800023,4.519191799000097],[118.59400475400005,4.505519924000153],[118.60564212300002,4.486883856000162],[118.64527428500017,4.444037177000084],[118.64576256600007,4.436753648000163],[118.63721764400022,4.426011460000069],[118.62623131600017,4.419338283000101],[118.617523634,4.420721747000172],[118.6075952480002,4.425523179000081],[118.5921330090001,4.429144598000136],[118.59742272200006,4.412298895000134],[118.59278405000012,4.397365627000084],[118.58277428500004,4.384588934000135],[118.57227623800006,4.374579169000157],[118.55689537900005,4.363511460000126],[118.54281660200009,4.360012111000131],[118.50342858200011,4.361517645000092],[118.486582879,4.359523830000143],[118.45435631600004,4.350287177000084],[118.43523196700008,4.347235419000086],[118.39193769599997,4.346380927000084],[118.36890709700006,4.35057200700011],[118.35328209700006,4.361517645000092],[118.34017988399997,4.344061591000127],[118.33253014400022,4.339016018000095],[118.24203535199997,4.313666083000058],[118.16081790500019,4.306219794000171],[118.13705488399997,4.298651434000135],[118.00456790500007,4.231634833000143],[117.98267662899998,4.231146552000055],[117.92107181100008,4.249090887000108],[117.9044702480002,4.251654364000103],[117.89226321700002,4.25698476800008],[117.85368899800007,4.292629299000126],[117.839610222,4.300848700000116],[117.83122806100008,4.304673570000134],[117.82252037900017,4.306219794000171],[117.8188582690001,4.310532945000176],[117.81202233200011,4.329291083000143],[117.80827884200008,4.333563544000143],[117.79476972699999,4.334906317000133],[117.76351972700004,4.347235419000086],[117.73845462300002,4.351792710000126],[117.72950280000013,4.354681708000072],[117.70753014400005,4.36994049700013],[117.69613691500003,4.387762762000108],[117.68702233200023,4.407049872000143],[117.671153191,4.426011460000069],[117.65601647199999,4.424221096000082],[117.63412519600008,4.410101630000142],[117.61459394599999,4.393052476000179],[117.60580488400004,4.382025458000129],[117.60962975400004,4.373358466000141],[117.62875410200004,4.36176178600013],[117.63331139400016,4.350978908000116],[117.63331139400016,4.309637762000179],[117.63697350400001,4.299017645000148],[117.652110222,4.284857489000117],[117.65365644600016,4.27216217700007],[117.64909915500012,4.26072825700011],[117.64047285199999,4.251369533000073],[117.61963951900022,4.237372137000108],[117.61304772200006,4.230902411000115],[117.60808353000019,4.222235419000114],[117.6020613940001,4.21527741100013],[117.59896894600004,4.20693594000015],[117.60271243600008,4.201727606000161],[117.62029056100006,4.184719143000095],[117.6271264980002,4.176499742000188],[117.61703535200004,4.177435614000089],[117.6084090500001,4.176214911000073],[117.56714928500018,4.159654039000188],[117.55833296800009,4.167653707000127],[117.54220992000009,4.173829040000101],[117.51461470500018,4.171942851000097],[117.49838830600018,4.172614644000163],[117.46417850800017,4.177911479000116],[117.43647994000015,4.185611267000112],[117.41291548700016,4.20008066800014],[117.35658817600003,4.259508566000179],[117.27555953000015,4.300978903000143],[117.23866255800013,4.326868795000095],[117.23060103400022,4.337178243000096],[117.22481327300014,4.346583354000146],[117.21716516200014,4.353430481000188],[117.20269576100023,4.356065979000121],[117.1903967690001,4.353017069000188],[117.17437707500001,4.338418477000118],[117.16466190600008,4.333147481000182],[116.98059045400008,4.329555970000115],[116.92426314300009,4.344955547000097],[116.88302535100009,4.344903870000095],[116.80447717300014,4.330072733000151],[116.76613326100012,4.338573507000163],[116.72944299300016,4.364463399000101],[116.71166630000013,4.366788838000132],[116.68004032400015,4.339917094000128],[116.66112675000018,4.334387716000123],[116.64179976500023,4.333870952000098],[116.61554813699998,4.344077047000155],[116.59022668500013,4.331132101000136],[116.57689416600013,4.332010600000089],[116.53327925700016,4.395365906000094],[116.52222050000015,4.396787008000089],[116.51539921100019,4.384152120000152],[116.49431522600015,4.363223165000164],[116.48646040900022,4.348831278000148],[116.4869771730001,4.338573507000163],[116.49193811000012,4.331287130000177],[116.49410852100013,4.324853414000131],[116.4859436440001,4.316921082000178],[116.46837365800006,4.312321879000137],[116.45710819500007,4.316766052000133],[116.44635949700015,4.317256979000163],[116.42176151600003,4.291832174000163],[116.41132287600011,4.288654074000192],[116.4008842370001,4.289997661000157],[116.39106571500011,4.294674377000134],[116.36543420400008,4.337695008000125],[116.36181685400007,4.350381572000174],[116.35819950400017,4.355445862000153],[116.3512748620001,4.357900492000113],[116.34424686700018,4.356918640000146],[116.3375289310001,4.357228699000132],[116.31065718600004,4.383376974000143],[116.28512902900003,4.378390198000176],[116.25722375600006,4.364153341000119],[116.22880171700004,4.356117656000137],[116.21505578700017,4.3578488160001],[116.17009729000007,4.369915263000081],[116.14684289600015,4.371207173000129],[116.13650760900022,4.373041687000125],[116.125758912,4.37890696200013],[116.11749068300017,4.357228699000132],[116.10994592300014,4.345110575000135],[116.09940393100024,4.336506449000112],[116.08121382700013,4.325473531000114],[116.03315474500009,4.27772450700013],[116.02064904800007,4.270851542000159],[116.00400923700023,4.276690980000154],[115.99357059800006,4.288912455000172],[115.98736942600013,4.304777120000082],[115.98344201700014,4.321391093000102],[115.97724084500018,4.32862579400016],[115.96483850100012,4.335472921000118],[115.94096398900004,4.344361267000139],[115.89879602100004,4.347125956000184],[115.87884891800005,4.35213857000015],[115.86944380700018,4.366685486000108],[115.86489628100006,4.382575989000117],[115.85611128800015,4.390766703000139],[115.84412235500011,4.38921641000013],[115.83099654200025,4.376116435000156],[115.82117802000006,4.344335429000125],[115.82190149000004,4.311236674000142],[115.81745731700008,4.281316020000105],[115.7794234620002,4.248940735000119],[115.77539270100013,4.236099142000128],[115.77074182100009,4.225608825000164],[115.75689253800013,4.222172343000139],[115.74717736900007,4.227624207000119],[115.74025272700017,4.236202495000143],[115.73260461500003,4.239380595000114],[115.68981652900017,4.199977315000112],[115.68278853400008,4.190649720000166],[115.67596724500012,4.184164327000119],[115.65591678900009,4.178634949000113],[115.64692508900012,4.169100647000121],[115.63913433100007,4.145949698000138],[115.63328251200012,4.128560486000197],[115.62212040200009,4.040219625000191],[115.60951135200015,3.996914774000131],[115.59028772000012,3.95800242100016],[115.58098596200001,3.94691782700015],[115.54584598900024,3.927720032000138],[115.53881799400007,3.920614522000107],[115.53830122900006,3.897825216000115],[115.55411421700003,3.88356252000014],[115.57457808400025,3.872090353000203],[115.58863407400011,3.857595113000173],[115.5893575450002,3.824522197000192],[115.55049686700013,3.708224385000093],[115.54460575400006,3.668976136000125],[115.54439904800009,3.629159445000198],[115.54853316300003,3.605284933000121],[115.57333785000006,3.545004374000058],[115.57447473100015,3.534565735000114],[115.57240767500015,3.51425689700001],[115.57271773300023,3.504154155000136],[115.5761283780001,3.491674296000156],[115.59266483600018,3.46196034800009],[115.60062300600023,3.441212260000057],[115.60124312400004,3.430231019000161],[115.59545536300007,3.42085174600011],[115.58501672400021,3.416820984000111],[115.57602502500006,3.419404805000112],[115.56713667800015,3.423848979000041],[115.55721480300018,3.425450948000162],[115.53582076000023,3.403617656000122],[115.5176306560002,3.357160543000105],[115.48280074100015,3.206472066000075],[115.48352421100006,3.189005432000116],[115.49933719900004,3.169781800000095],[115.51442671800012,3.164769186000129],[115.51701053900005,3.157276103000186],[115.48218062400015,3.110974020000114],[115.47597945200019,3.093042297000139],[115.47215539600013,3.050512594000097],[115.46409387300004,3.030823873000131],[115.44797082500017,3.024054261000018],[115.40683638500009,3.019506734000075],[115.34151737500021,2.991136373000145],[115.30999475100018,2.985917053000051],[115.28136600800009,2.999559631000139],[115.25583785000016,3.037490133000063],[115.24209192000002,3.041624247000172],[115.22503869700019,3.01588938400009],[115.20798547400008,2.980697734000117],[115.19640995300018,2.967623596000166],[115.13904911300014,2.928452860000121],[115.12282271400012,2.912949931000028],[115.10959354700005,2.89202097600004],[115.10525272600015,2.88029042500014],[115.10277225800009,2.869955139000126],[115.09905155500014,2.859671529000138],[115.09119673700005,2.8481476850001],[115.07755415900014,2.836520488000147],[115.06907922400003,2.832644755000089],[115.06690881300014,2.828200582000093],[115.07186975200007,2.814764710000048],[115.09812137900023,2.781071676000166],[115.1046326100001,2.761486308000158],[115.09357385300008,2.737043356000115],[115.082721802,2.729550273000172],[115.07217981000016,2.727431539000023],[115.0631881100002,2.723659159000178],[115.05698693900003,2.711256816000116],[115.05791711500011,2.701489970000068],[115.06876916500013,2.681542868000051],[115.07186975200007,2.671827698000186],[115.06742557800018,2.651208801000095],[115.05864058500016,2.628832906000113],[115.0564701750001,2.60862742200004],[115.07145634000007,2.594623108000036],[115.0825150960001,2.594364726000151],[115.10411584500005,2.604751689000082],[115.1149678960002,2.607903951000125],[115.1268534750002,2.606767070000117],[115.13977258300022,2.602839661000147],[115.15196822100013,2.597051900000082],[115.16189009600023,2.590385641000168],[115.17697961500014,2.57415924100016],[115.19237919200012,2.551059876000181],[115.20374800700019,2.527547099000103],[115.20612512200015,2.509873759000101],[115.1926892500002,2.490546773000133],[115.17181197100003,2.483312073000164],[115.12654341700014,2.479229634000077],[115.1050460210001,2.465690409000089],[115.06742557800018,2.423109029000116],[115.05202600100009,2.414013977000138],[115.0347660730001,2.406417541000081],[114.9920813390002,2.369882304000157],[114.97296106000012,2.357479960000177],[114.93451379500009,2.360683899000151],[114.92221480300012,2.353914287000123],[114.91529016200005,2.332055155000177],[114.91673710200021,2.311229554000036],[114.9196309810002,2.295674947000094],[114.91332645700018,2.284047750000127],[114.88645471200019,2.275159404000036],[114.80904341700007,2.264669088000161],[114.77876102700023,2.247202454000117],[114.76346480400017,2.208083395000102],[114.7520959880001,2.15351308200016],[114.75302616400015,2.134806213],[114.75674686700009,2.1260470590002],[114.76801233000012,2.110208232000019],[114.77028609200013,2.100053813000144],[114.76925256400013,2.066644999000076],[114.77028609200013,2.058221741000167],[114.78062137900021,2.036052552000143],[114.79219690000009,2.034812317000032],[114.80821659400024,2.041969502000072],[114.83136763500012,2.044760030000035],[114.84108280500018,2.038222962000134],[114.84532027200012,2.024967957000143],[114.84511356700007,2.009749248000105],[114.84252974400025,1.997166036000095],[114.8338481040001,1.976676331000036],[114.82940393100002,1.959778138000132],[114.82940393100002,1.942647400000084],[114.83364139800008,1.921356710000097],[114.8319877530001,1.902520650000071],[114.81906864500009,1.890299174000063],[114.76305139200016,1.86869842500009],[114.7089978440001,1.86198049000015],[114.69917932100013,1.85805308000009],[114.68863733000015,1.850224101000066],[114.67954227699997,1.840741476000175],[114.6741679290002,1.831904806000182],[114.67137740100017,1.820975240000109],[114.6726176350002,1.814076436000135],[114.67582157400008,1.806738383000138],[114.67892216000023,1.794361878000174],[114.68005904200014,1.763278504000141],[114.66900028500012,1.694006246000114],[114.65029341700014,1.64145131500014],[114.62445520100015,1.598792420000137],[114.60967574100019,1.581635844000175],[114.57453576700006,1.553420512000116],[114.56316695200016,1.5363931280001],[114.56316695200016,1.512260233000049],[114.56771447700011,1.49091786700005],[114.56802453700017,1.469394633000178],[114.56161665800002,1.450015971000127],[114.5455969650001,1.434952291000045],[114.52223921800024,1.429422913000124],[114.50063846900015,1.43603749600004],[114.42136682200024,1.492183940000089],[114.39821578000024,1.503552754000168],[114.37485803299998,1.506937562000175],[114.35573775300011,1.501950786000137],[114.20740588700019,1.439443127000175],[114.20484257100011,1.438362935000157],[114.18324182200004,1.423454285000105],[114.17342329900018,1.420508728000101],[114.16040083900022,1.424797872000169],[114.15027225800017,1.43428049700006],[114.14107385300005,1.445261739000045],[114.13094527200022,1.454175924000154],[114.09425500500006,1.465673930000165],[114.05394738800013,1.465053813000025],[113.90966678900011,1.442471212000072],[113.89116662600017,1.434952291000045],[113.86822229000015,1.415496114000135],[113.80817427600013,1.339712626000064],[113.64952762900012,1.233259176000132],[113.62482629500019,1.227574768000181],[113.59650760900004,1.241630758000099],[113.54617476400014,1.301575419000187],[113.52447066200014,1.313564351000139],[113.50338667900022,1.314494527000107],[113.48230269400008,1.308706767000132],[113.44292525299996,1.292377015000099],[113.39755334500015,1.293927307000118],[113.32365604700017,1.351391500000119],[113.27601037600012,1.368883973000081],[113.21771936100018,1.380898742000056],[113.17276086500019,1.383740946000032],[113.15860152200005,1.388159281000114],[113.1257353120001,1.41363576300013],[113.08904504400013,1.431334940000141],[113.05059777800001,1.434797262000174],[113.01142704300005,1.42797597300013],[112.97318648300015,1.415082703000124],[112.9582003180001,1.415651143],[112.95530643700017,1.423557638000048],[112.9611975510002,1.434383850000174],[112.9916866450001,1.456966452000117],[113.00729292800021,1.473270365000133],[113.01845503800016,1.492390645000128],[113.02434615100005,1.514378968000116],[113.02341597500012,1.53701324400015],[113.01411421700018,1.550785014000098],[112.9971643480001,1.560164287000063],[112.97318648300015,1.569853618000181],[112.95602990799998,1.572334086000069],[112.90766076700007,1.570525411000077],[112.88812707600007,1.574866232000147],[112.8713839120002,1.580653991000034],[112.85495080600005,1.582721049],[112.83645064300012,1.576054789000167],[112.82663212100013,1.56719228100016],[112.82053430200008,1.557632141000155],[112.81350630800009,1.549338073000115],[112.80151737500003,1.5437828580001],[112.79479943900017,1.544377136000151],[112.76885787000006,1.552231954000192],[112.47047815000016,1.567657369000173],[112.44588016800017,1.562076315000169],[112.42975712100011,1.550681662000073],[112.41590783700022,1.536651510000155],[112.39854455600013,1.523344828000148],[112.38097456900007,1.517712097000114],[112.319066203,1.511743469000095],[112.29519169200015,1.503811137000142],[112.18005660000009,1.449034119000146],[112.16155643700013,1.434538880000034],[112.1541150310002,1.409527486000115],[112.15907596900016,1.40079416900015],[112.18181359900021,1.400019022000052],[112.18801477100011,1.3914148960001],[112.18739465300015,1.37965850800019],[112.18398400900004,1.369039001000118],[112.15266809100002,1.306277975000157],[112.10006148300012,1.154917705000144],[112.0929301350001,1.143135478000133],[112.07949426300003,1.137244365000143],[112.05406945800021,1.133627014000069],[111.97335087100006,1.134040426000169],[111.9100989180001,1.114041646000132],[111.82307580600016,1.008466695000152],[111.76282108600016,0.993015442000143],[111.7341923430001,1.001438700000136],[111.68210249800003,1.023452861000038],[111.65523075400009,1.030790914000121],[111.63735070800007,1.032237854000115],[111.62267460100011,1.030274150000167],[111.53885542900011,0.997717997000123],[111.51539432800014,0.964490051000098],[111.50319869000006,0.958443909000152],[111.49203658100012,0.980871480000147],[111.48800581900011,0.997924703000095],[111.48242476400011,1.012859192000136],[111.47208947800019,1.022212627000087],[111.45451949100011,1.022626038000098],[111.41503869700009,1.010223694000132],[111.3955050050001,1.006296285000161],[111.37411096200017,1.007536519000098],[111.35178674300019,1.013892721000119],[111.21753137200014,1.07326894200007],[111.19758427000012,1.075232646000188],[110.9734119070001,1.017716776000157],[110.91057336500015,1.015701396000111],[110.88039432900021,1.010533753000118],[110.8526957610002,0.997201233000098],[110.79698856600007,0.949658915000072],[110.78706669100009,0.93415598600015],[110.78623986800001,0.91627594000002],[110.78396610600012,0.908162740000193],[110.77673140500016,0.903253479000156],[110.7712537030001,0.904390361000082],[110.76112512300018,0.912865296000163],[110.75833459500008,0.91451894100004],[110.74572554600016,0.908007711000067],[110.7447953700001,0.905062154000149],[110.72484826700006,0.897259013000138],[110.72071415200006,0.897362366000067],[110.70944869000019,0.901393127000148],[110.70417769400015,0.901393127000148],[110.6930155850001,0.894675192000136],[110.67441206900016,0.877001851000045],[110.66128625500019,0.872144267000109],[110.64774703000008,0.873901266000175],[110.63885868300011,0.880774231000146],[110.63214074800007,0.888629049000187],[110.62480269400007,0.89312489800011],[110.61343387900008,0.89395172100005],[110.60960982300006,0.890851136000094],[110.60599247300016,0.883306376000135],[110.59607059800007,0.871110738000127],[110.55390262900013,0.851370341000077],[110.50636031100012,0.857313131000168],[110.4602649330001,0.879740703],[110.42264449100006,0.909454651000061],[110.38068322800014,0.966608785000176],[110.36414676900009,0.98138824500009],[110.35164107300008,0.986504211000181],[110.30079146400007,0.997717997000123],[110.2863220630002,0.995340881000175],[110.27278283800015,0.991051737000035],[110.26348107900012,0.99430735300011],[110.2617240800001,1.014719544000144],[110.25655643700011,1.039059144000163],[110.2067403570002,1.1117162070002],[110.18513960800013,1.154194234000059],[110.1703601490001,1.174451396000151],[110.15217004500008,1.1838565070002],[110.09346561700013,1.19160797100011],[110.07455204300018,1.198635966000126],[110.05181441200008,1.215482483000187],[110.03073042800006,1.253568014000138],[110.01212691200013,1.270517883000153],[109.97626346900009,1.287726136000131],[109.9637577720001,1.298578186000086],[109.9517688390001,1.3196621700001],[109.9325452070001,1.378521627000097],[109.92024621600014,1.394773865000118],[109.90205611200011,1.403791402000152],[109.88272912600016,1.403843079000168],[109.86288537700008,1.401465963000135],[109.84283492000012,1.403274638000127],[109.82547164000019,1.417563171000111],[109.8077982990001,1.45996368400013],[109.80056359900013,1.46675913500016],[109.78154667200008,1.456294658000132],[109.77555220500012,1.457948303000165],[109.77317509000008,1.485853577000071],[109.76635380100007,1.496473084000058],[109.67726363200019,1.572850850000094],[109.65803999900012,1.597190450000198],[109.64698124200018,1.617628479000075],[109.64171024600009,1.63716217100017],[109.64057336400006,1.683025004000129],[109.64718794800014,1.761883240000159],[109.64181359900007,1.781003520000155],[109.62403690700009,1.787773132000012],[109.58011193900015,1.78797983800014],[109.56698612500006,1.792553203000182],[109.55561731000009,1.802165019000199],[109.5466256100001,1.814334818000106],[109.53980432200008,1.826556295000046],[109.5347400320002,1.838984477000025],[109.53432662000009,1.846451721000051],[109.5347400320002,1.853893127000148],[109.52843550600019,1.889989116000066],[109.52936568200006,1.905156149],[109.53794397000016,1.917713522000099],[109.57442753100011,1.948590190000089],[109.58507287600017,1.96091501900014],[109.60026574700011,1.983135885000166],[109.62662072800016,2.029696350000122],[109.64527428500017,2.083238023000121],[109.64543704500014,2.082586981000176],[109.64991295700011,2.065578518000108],[109.65219160200009,2.043443101000051],[109.6621199880001,2.002752997000143],[109.66358483200004,1.983058986000117],[109.66000410200016,1.967027085000126],[109.65528405000006,1.953111070000134],[109.6546330090001,1.936997789000159],[109.66358483200004,1.914740302000127],[109.693044467,1.873114325000145],[109.71143639400006,1.854478257000068],[109.73178144600016,1.839585679000109],[109.79346764400012,1.813462631999982],[109.82894941500008,1.790106512000165],[109.86963951900006,1.77289459800015],[109.88672936300011,1.760199286000088],[109.8987736340001,1.743109442000133],[109.91553795700005,1.708400783000073],[109.9277449880001,1.692287502000099],[109.9417423840001,1.689195054000123],[109.9912215500001,1.690171617000189],[110.00318444100006,1.692287502000099],[110.01840254000015,1.700181382],[110.04004967500012,1.702785549000083],[110.16765384200018,1.701849677000098],[110.18091881600004,1.698716539000031],[110.20045006599999,1.685207424000055],[110.211680535,1.682033596],[110.21631920700005,1.684759833000058],[110.23170006600016,1.697699286000145],[110.23902428500016,1.701849677000098],[110.2483830090001,1.705226955000114],[110.25416100400015,1.706203518000081],[110.26002037900005,1.702622789000116],[110.28394616000017,1.676092841000141],[110.29078209700012,1.673976955000143],[110.29566491000017,1.691555080000072],[110.305349155,1.703314520000063],[110.30787194100004,1.709295966000155],[110.30713951900012,1.715521552000041],[110.30225670700005,1.725653387000179],[110.30103600400005,1.729722398000135],[110.29957116000017,1.761419989000103],[110.30103600400005,1.770738023000149],[110.3133244150001,1.792629299000083],[110.32935631600017,1.802557684000093],[110.343028191,1.797512111000145],[110.35075931100012,1.768500067000076],[110.35987389400012,1.756293036000088],[110.36304772200018,1.750230210000012],[110.36378014400012,1.743597723000121],[110.3621525400001,1.729437567000105],[110.36304772200018,1.722967841000099],[110.36646569100017,1.715887762000136],[110.37094160200016,1.710191148000149],[110.3763126960001,1.705715236000103],[110.38298587300007,1.701849677000098],[110.39014733200011,1.699042059000135],[110.39893639400006,1.697088934000092],[110.42115319100006,1.69570547100011],[110.43132571700008,1.699896552000055],[110.44361412900005,1.718695380000099],[110.47364342500005,1.728949286000116],[110.49187259200006,1.738959052000098],[110.50798587300002,1.740912177000055],[110.52076256600017,1.722967841000099],[110.50847415500002,1.707586981000162],[110.49968509200008,1.693589585000097],[110.49463951900012,1.678127346000082],[110.492849155,1.658107815000108],[110.4891056650001,1.650295315000037],[110.47136478000019,1.631984768000152],[110.46558678500006,1.620550848000022],[110.49244225400004,1.63165924700013],[110.50635826900012,1.63300202000012],[110.52076256600017,1.627346096000124],[110.53028405000006,1.616156317000119],[110.53296959700005,1.605373440000122],[110.53630618600019,1.596869208000086],[110.54753665500019,1.592596747000172],[110.55665123800006,1.59467194200009],[110.57740319100017,1.605210679000066],[110.58904056100008,1.606268622000115],[110.60254967500005,1.601507880000028],[110.64356530000006,1.579006252000113],[110.70118248800011,1.561712958000115],[110.72673587300018,1.547430731000119],[110.73926842500012,1.523667710000041],[110.73340905000006,1.498683986000103],[110.71558678500017,1.480617580000086],[110.6779077480002,1.456040757],[110.6779077480002,1.448635158000087],[110.70435631600017,1.449367580000114],[110.72510826900006,1.453111070000148],[110.7435001960001,1.462388414000102],[110.763438347,1.479681708000101],[110.7734481130001,1.498602606000119],[110.77222741000017,1.51801178600013],[110.76726321700002,1.536200262000122],[110.76661217500006,1.551662502000141],[110.79330488400008,1.572414455000057],[110.83961022200018,1.565985419000128],[110.92481530000006,1.531195380000085],[110.96794681100019,1.503241278000147],[111.04395592500012,1.426947333000115],[111.0823673840001,1.401434637000108],[111.1419376960001,1.37152741100013],[111.154551629,1.3673363300001],[111.17855879000015,1.370794989000103],[111.21176191500014,1.388088283000101],[111.23267662900005,1.394598700000103],[111.26514733200011,1.381781317000062],[111.30128014400005,1.351996161000059],[111.34058678500006,1.333319403000175],[111.383555535,1.353664455000072],[111.36695397200006,1.354396877000099],[111.33912194100017,1.364691473000121],[111.32553144600016,1.3673363300001],[111.32105553500017,1.373602606000148],[111.311778191,1.401353257000124],[111.30469811300006,1.407619533],[111.28882897200006,1.410060940000122],[111.26099694100017,1.419907945000134],[111.24634850400015,1.421332098000107],[111.23462975400017,1.417954820000176],[111.19849694100004,1.401434637000108],[111.17676842500006,1.400580145000106],[111.157969597,1.406154690000037],[111.14161217500012,1.416937567000119],[111.12720787900005,1.431830145000077],[111.1092228520001,1.445013739000132],[111.06495201900006,1.462713934000135],[111.04835045700005,1.476548570000134],[111.03028405000005,1.524318752000084],[111.01107832100008,1.542954820000162],[111.00684655000006,1.555080471000068],[111.00562584700018,1.58445872600015],[111.00684655000006,1.592596747000172],[111.02035566500015,1.627346096000124],[111.02857506600006,1.664007880000142],[111.03785240999999,1.676947333000058],[111.09546959700018,1.687974351000108],[111.1175236340001,1.688869533000101],[111.13705488400015,1.682033596],[111.15023847700009,1.664129950000117],[111.16334069100016,1.640855210000111],[111.17945397200006,1.627020575000103],[111.20232181100008,1.637274481000048],[111.21509850400011,1.639837958000143],[111.22901451900006,1.630031643000109],[111.24577884200018,1.621323960000041],[111.2674259770001,1.627346096000124],[111.24732506600006,1.633368231000134],[111.23780358200004,1.637762762000037],[111.21998131600017,1.65143463700015],[111.21119225400011,1.652492580000029],[111.20240319100006,1.651922919000057],[111.18262780000012,1.657294012000108],[111.1761173840001,1.656805731000119],[111.17286217500006,1.659369208000115],[111.17188561300011,1.671454169000128],[111.16041100400004,1.687811591000141],[111.15821373800006,1.692287502000099],[111.154551629,1.695990302000141],[111.13648522200018,1.699611721000025],[111.13021894600016,1.701849677000098],[111.12614993600008,1.706610419000086],[111.10303795700011,1.746079820000148],[111.0979923840001,1.759588934000121],[111.09603925900015,1.774481512000179],[111.10084069100006,1.780259507000139],[111.12322024800008,1.785793361000074],[111.13021894600016,1.791896877000141],[111.12859134200019,1.797593492000047],[111.1135360040001,1.807196356000105],[111.10987389400006,1.815415757000025],[111.1131291020001,1.835516669000157],[111.12159264400012,1.853908596000096],[111.14389082100014,1.888088283000087],[111.17530358200011,1.953192450000117],[111.20394941500015,2.045640367000132],[111.20590254000008,2.068996486000117],[111.2112736340001,2.073919989],[111.22339928500017,2.072088934000107],[111.24333743600006,2.065578518000108],[111.26783287900017,2.067531643000066],[111.24187259200019,2.089422919000015],[111.2400822270001,2.113348700000159],[111.25391686300011,2.126125393000109],[111.27173912900015,2.124701239000046],[111.29151451900012,2.117621161000073],[111.32797285200016,2.110419012000051],[111.33643639400012,2.112127997000144],[111.34994550900008,2.120794989000131],[111.35645592500006,2.128078518000151],[111.37501061300006,2.153998114000145],[111.37794030000012,2.161810614000146],[111.36866295700005,2.169989325000145],[111.3567814460001,2.16620514500012],[111.34685306100017,2.15574778900006],[111.33863366,2.130804755000113],[111.32911217500012,2.128729559000107],[111.31861412900005,2.132798570000148],[111.29127037900017,2.150376695000176],[111.27051842500006,2.153794664000188],[111.198903842,2.143255927000141],[111.18474368600013,2.145086981000119],[111.17945397200006,2.155910549000026],[111.1787215500001,2.178859768000094],[111.1848250660001,2.194769598000121],[111.2000431650001,2.210882880000085],[111.21998131600017,2.220404364],[111.2400822270001,2.216376044000114],[111.22950280000006,2.235256252000141],[111.210703972,2.242173570000148],[111.19288170700005,2.245591539000145],[111.1848250660001,2.25364817900001],[111.18653405000012,2.271714585000026],[111.19849694100004,2.318793036000031],[111.2085067070001,2.388861395000106],[111.22095787900004,2.416083075000017],[111.24634850400015,2.436102606000077],[111.2547306650001,2.419256903000075],[111.26783287900017,2.411200262000122],[111.30152428500017,2.40070221600007],[111.31299889400006,2.390814520000148],[111.33806399800002,2.360093492000146],[111.34636478000013,2.353583075000074],[111.35206139400012,2.350572006999982],[111.3584090500001,2.344794012000094],[111.36548912900015,2.340765692000133],[111.37387129000014,2.343003648000106],[111.40528405000005,2.364325262000165],[111.41456139400012,2.367254950000017],[111.44825280000012,2.372381903000118],[111.45557701900005,2.370672919000114],[111.47364342500005,2.357326565000093],[111.49341881600017,2.346136786000087],[111.485118035,2.364162502000113],[111.46509850400005,2.384833075000046],[111.4324650400001,2.414984442000147],[111.4241642590001,2.427232164000116],[111.41228274800008,2.469224351000108],[111.40455162900005,2.4839541690001],[111.43555748800006,2.482123114000032],[111.46338951900012,2.474920966000084],[111.4873153000001,2.473944403000103],[111.507090691,2.490708726000122],[111.51254316500015,2.48826732000019],[111.5140080090001,2.486965236000103],[111.51563561300006,2.487494208000072],[111.52125084700006,2.490708726000122],[111.49952233200005,2.498846747000059],[111.46168053500004,2.50800202000012],[111.44556725400017,2.518011786000116],[111.43295332100016,2.528753973000121],[111.42286217500012,2.539618231000105],[111.417246941,2.555121161000116],[111.41765384200018,2.57953522299999],[111.43531334700006,2.640936591000155],[111.4402775400001,2.680121161000102],[111.447032097,2.694647528000047],[111.4578556650001,2.705633856000091],[111.52979576900006,2.760687567000062],[111.638926629,2.828192450000131],[111.66960696700019,2.84308502800009],[111.86060631599999,2.880601304000095],[112.01351972700004,2.885931707999987],[112.29786217500012,2.961004950000088],[112.57471764400023,3.033921617000032],[112.72730553500004,3.066107488999989],[112.78882897200018,3.090277411000073],[112.80054772200016,3.090033270000134],[112.97437584700006,3.144232489000089],[113.00782311300011,3.161688544000143],[113.06120853000007,3.218654690000065],[113.08228600400017,3.256781317000133],[113.06934655000006,3.278998114000018],[113.07691491000006,3.28778717700007],[113.10336347699999,3.305650132000125],[113.15137780000005,3.347723700000103],[113.16211998800011,3.353461005000071],[113.16618899800008,3.362941799000083],[113.19955488400015,3.415513414000102],[113.27759850400017,3.484198309000106],[113.29590905000023,3.511786200000131],[113.299082879,3.519598700000117],[113.30111738400015,3.527736721000139],[113.30274498800016,3.549261786000059],[113.30811608200011,3.559312242000132],[113.33155358200011,3.577541408000115],[113.33676191499998,3.583807684000149],[113.34359785199999,3.594468492000189],[113.39144941500003,3.648342190000121],[113.41488691500004,3.688706773000092],[113.42302493600002,3.711249091000155],[113.42611738400004,3.734605209999984],[113.43425540500002,3.753159898000078],[113.45313561300023,3.768744208000072],[113.49447675899998,3.792303778000118],[113.73682701900012,4.001288153000147],[113.94678795700011,4.273830471000082],[113.96778405000022,4.322170315000093],[113.96062259200019,4.361517645000092],[113.98194420700005,4.394720770000106],[113.99219811300011,4.4370791690001],[113.99187259200006,4.484442450000131],[113.96941165500019,4.578517971000153],[113.97584069100017,4.594712632000109],[113.99878991000017,4.601141669000128],[114.06417932200006,4.570032247000157],[114.1189563400001,4.561634827000162],[114.14004032400007,4.550653585000177],[114.17269983000008,4.525228780000177],[114.19729781100014,4.515823670000131],[114.20908003800017,4.508149719000144],[114.21672814900013,4.48766001400017],[114.222929322,4.484636943000154],[114.2383288980001,4.484223532000143],[114.24556359900018,4.481433004000081],[114.24783736200017,4.474766744000163],[114.24876753800007,4.466886088000123],[114.25207483000023,4.460349020000152],[114.2626168210002,4.448721823000184],[114.26850793500003,4.437740581000114],[114.27625940000021,4.409731954000108],[114.27625940000021,4.381852519000119],[114.28990197800012,4.361311137000143],[114.29672326700009,4.316662700000108],[114.29341597500014,4.307050883000102],[114.27946333800017,4.294881084000096],[114.27625940000021,4.289015808000102],[114.27801639800018,4.274055481000133],[114.28266727700023,4.264908753000141],[114.31677372200014,4.262505799000095],[114.3604919850001,4.253875834000155],[114.40141971900013,4.261213887000139],[114.41991988200007,4.260128683000147],[114.43252893100018,4.246925354000155],[114.45330285700012,4.183699239000177],[114.46312137900017,4.164139709000082],[114.47738407500006,4.144967753000159],[114.54022261600014,4.086935120000192],[114.5614099530001,4.072026469000136],[114.56936812400025,4.064404195000164],[114.57422570800017,4.054146423000176],[114.5816671150001,4.029341736000148],[114.58662805200007,4.021435242000095],[114.62776249200013,4.016681010000113],[114.67489139800003,4.044069519000146],[114.7668754480002,4.131816101000183],[114.77452356000016,4.14646637000007],[114.7801046150001,4.187755839000175],[114.78713260900011,4.20721201600017],[114.80997359200003,4.241292623000135],[114.8172082930001,4.25966359500012],[114.81379764900024,4.277104391000165],[114.78258508400008,4.264417826000113],[114.78196496600012,4.284933370000189],[114.78785607900012,4.294157613000095],[114.79416325000008,4.300239528000162],[114.81824182100016,4.323458151000153],[114.8289905190001,4.340485535000184],[114.8364319250002,4.357228699000132],[114.8456303310002,4.395107524000124],[114.84790409400013,4.423736268000198],[114.84046268800003,4.428619691000137],[114.82568322700008,4.426190898000172],[114.80604618300005,4.433322246000117],[114.78816613800011,4.461201680000087],[114.78217167200008,4.497788595000131],[114.77731408700005,4.614654847000168],[114.77390344200002,4.636824036000106],[114.76811568300016,4.657494609000125],[114.74878869699998,4.694391581000147],[114.74134729000016,4.712943420000087],[114.74196740800004,4.729454040000164],[114.74319203400003,4.730585208000149],[114.75178593000011,4.738523255000132],[114.78847619700016,4.753896993000112],[114.80542606700017,4.764568177000115],[114.83767216000015,4.795315654000163],[114.85575891100004,4.806658630000143],[114.87818648300005,4.812808126000121],[114.8964799400002,4.811826274000154],[114.9148767500002,4.808725688000109],[114.93244673700009,4.80913909900012],[114.94836307800018,4.818931783000082],[114.95487430900018,4.834202169000136],[114.9557011310002,4.85091949500017],[114.95890507000011,4.866293234000152],[114.98170006600012,4.889064846000096],[114.99244225400004,4.894232489000103],[115.0019637380001,4.900051174000153],[115.00993899800007,4.907171942000105],[115.01579837300018,4.916408596000067],[115.022634311,4.895900783000116],[115.0236108730002,4.857082424000097],[115.02955162900005,4.820868231000175],[115.02977835200024,4.820641508000151],[115.02277714100015,4.741365458000104],[115.02680790200023,4.660026754000113],[115.0354895430002,4.62124359200007],[115.06814904800014,4.543367208000106],[115.07982792200002,4.503963928000189],[115.0918168540002,4.405416972000125],[115.09977502500024,4.391231791000166],[115.11300419200002,4.382369284000163],[115.16995162000002,4.361259460000127],[115.1908288980002,4.356763611000105],[115.22069787600012,4.359760844000121],[115.22906945800011,4.356763611000105],[115.24467574100008,4.343663635000141],[115.2551143810001,4.339245300000144],[115.27433801300018,4.340020447000157],[115.28312300700016,4.336764832000171],[115.30120975800011,4.32469838500019],[115.32436080000015,4.314595642000142],[115.34627160700015,4.313768820000121],[115.36074100800025,4.329555970000115],[115.35826053900009,4.350278219000145],[115.34379113800017,4.371672261000157],[115.308651164,4.404693502000129],[115.28560347500016,4.435363465000165],[115.27247766200017,4.474663391000135],[115.26689660600006,4.516857198000196],[115.2674133710001,4.556208802000185],[115.27547489399997,4.59574127200014],[115.27702518800011,4.613052877000143],[115.27268436700014,4.636772359000176],[115.20736535700011,4.825598043000184],[115.18225061100017,4.861228943000171],[115.16933150200023,4.86998809800015],[115.15599898300005,4.876292623000069],[115.14680057800014,4.885620219000187],[115.14616946700008,4.908514716000184],[115.16285241000018,4.908026434000106],[115.17823326900024,4.910060940000136],[115.18946373800023,4.917466539000117],[115.19890384200002,4.950751044000114],[115.21062259200002,4.959702867000146],[115.22437584700006,4.958319403000161],[115.23552493600009,4.944322007000109],[115.23861738400015,4.937323309000121],[115.24390709700006,4.93545156500015],[115.2656356130001,4.936916408000116],[115.27523847700016,4.935248114000102],[115.28532962300004,4.931219794000143],[115.29322350400001,4.925726630000113],[115.30396569100006,4.906154690000136],[115.32162519600014,4.900132554000137],[115.34229576900023,4.899807033000116],[115.35840905000022,4.902777411000116],[115.37029056100017,4.910874742000146],[115.40349368600019,4.944322007000109],[115.40788821700008,4.950344143000109],[115.44776451900022,4.985296942000119],[115.47974694100006,5.026027736000103],[115.49219811300004,5.032456773000106],[115.51246178500016,5.035874742000118],[115.5317488940001,5.044623114000103],[115.54761803500006,5.055812893000108],[115.5569767590001,5.067206122000158],[115.56299889400006,5.083156643000081],[115.56983483200011,5.123724677000097],[115.57129967500022,5.160060940000079],[115.57349694100004,5.169663804000066],[115.58423912900017,5.190130927000125],[115.59253991000004,5.198675848000136],[115.60132897199999,5.204575914000173],[115.60523522199999,5.212103583000129],[115.59864342500023,5.225490627000141],[115.5608016290001,5.207831122000129],[115.52377363400014,5.208807684000107],[115.48975670700023,5.222967841000127],[115.40064537900017,5.299994208000101],[115.39812259200002,5.309312242000132],[115.40040123800011,5.317857164000159],[115.39975019600016,5.32420482000019],[115.3891707690001,5.326646226000122],[115.38477623800021,5.324408270000148],[115.36524498800023,5.307440497000171],[115.35962975400005,5.319647528000147],[115.36264082100014,5.33388906500015],[115.36866295700017,5.349310614000089],[115.37525475400007,5.381984768000122],[115.38233483200011,5.395249742000146],[115.38941491000004,5.405666408000143],[115.3925887380001,5.413275458000086],[115.40430748800011,5.423895575000117],[115.45639082100016,5.454331773000177],[115.46827233200011,5.474676825000159],[115.47950280000012,5.489691473000093],[115.55014082100014,5.540187893000108],[115.58521569100004,5.616156317000133],[115.60482832099999,5.635809637000178],[115.61882571700006,5.6128604190001],[115.58432050900014,5.548488674000097],[115.60482832099999,5.519720770000148],[115.61003665500017,5.530096747000144],[115.61443118600017,5.557277736000144],[115.6191512380001,5.56806061400006],[115.65333092500005,5.538641669000157],[115.67408287900017,5.529364325000116],[115.76238040500007,5.523138739000146],[115.79127037900017,5.524888414000145],[115.81771894600004,5.5333519550001],[115.84864342500006,5.560003973000121],[115.87435957100004,5.599351304000123],[115.89421634200002,5.643255927000069],[115.90650475400017,5.683579820000119],[115.91407311300023,5.727443752000084],[115.91993248800006,5.746771552000098],[115.93067467500012,5.763006903000147],[115.94532311300011,5.774847723000107],[116.0351668630001,5.824937242000118],[116.0507918630001,5.842271226000192],[116.05738366000017,5.865139065000108],[116.06031334700016,5.911281643000122],[116.06641686300006,5.930650132000139],[116.12769616000011,6.029771226000193],[116.141856316,6.073065497000087],[116.12623131600004,6.102525132000082],[116.10377037900005,6.094712632000081],[116.09595787900004,6.107733466000155],[116.10596764400022,6.126450914000131],[116.1364038420002,6.136053778000118],[116.15406334700018,6.147284247000115],[116.20134524800008,6.217962958000057],[116.2226668630001,6.237209377000099],[116.23536217500005,6.243475653000147],[116.25220787900017,6.245917059000177],[116.26400800900014,6.241888739000117],[116.27898196700018,6.234930731000134],[116.29151451900006,6.232611395000077],[116.29688561300023,6.24249909100017],[116.2927352220001,6.275783596000082],[116.28052819100006,6.278550523000135],[116.26140384200006,6.269354559000163],[116.236094597,6.266343492000161],[116.236094597,6.272609768000108],[116.26335696700018,6.286851304000109],[116.27906334700018,6.303941148000149],[116.2832137380001,6.307359117000161],[116.2905379570001,6.308579820000176],[116.31055748800006,6.307359117000161],[116.31999759200018,6.313381252000084],[116.322032097,6.316717841000099],[116.321950717,6.322333075000103],[116.33057701900023,6.354234117000118],[116.33326256600004,6.360581773000149],[116.33838951900022,6.368841864000132],[116.3476668630001,6.379584052000055],[116.43637129000015,6.446844794000086],[116.45142662900015,6.46190013200011],[116.4694930350001,6.475775458000101],[116.48829186300021,6.484279690000122],[116.50318444100002,6.495184637000108],[116.50912519600003,6.516546942000147],[116.50977623800004,6.534613348000078],[116.5131942070001,6.553697007000068],[116.52068118600008,6.568752346000082],[116.53394616000017,6.57485586100016],[116.55152428499999,6.588364976000136],[116.61353600400015,6.671087958000101],[116.62859134200008,6.685370184000177],[116.6390080090001,6.699286200000159],[116.64503014400006,6.716945705000085],[116.64698326900012,6.742417710000082],[116.64535566499998,6.776312567000133],[116.64698326900012,6.786525783000087],[116.65113366000018,6.794419664000144],[116.66334069100004,6.811021226000193],[116.66749108200007,6.821275132000139],[116.66578209700018,6.859605210000069],[116.66920006600016,6.876410223000079],[116.69752037900004,6.889715887000094],[116.70582116,6.905340887000179],[116.7153426440001,6.94476959800015],[116.716563347,6.96674225500007],[116.7189233730001,6.975409247000157],[116.7260848320001,6.978949286000144],[116.73023522200005,6.982407945000148],[116.74097741000017,6.998439846000139],[116.74642988400002,7.01044342700007],[116.75505618600013,7.018744208000129],[116.765879754,7.025091864000075],[116.77735436300023,7.026760158000087],[116.780528191,7.022772528000103],[116.79086347700003,7.000067450000159],[116.83204186300011,6.973334052000141],[116.83814537900017,6.962144273000134]]],[[[117.02271569100017,7.318833726000178],[117.02035566500004,7.294582424000096],[117.01002037899998,7.279974677000083],[116.99154707099999,7.297186591000099],[116.9767358730002,7.290228583000114],[116.97144616000006,7.271389065000078],[116.98218834700006,7.253322658000143],[116.88648522200012,7.229396877000084],[116.89112389400012,7.219916083000086],[116.89975019600003,7.214585679000108],[116.90512128999997,7.208929755000128],[116.90015709700006,7.19806549700013],[116.89096113400014,7.193670966000155],[116.87680097700003,7.192531643000124],[116.86231530000006,7.194159247000144],[116.85181725400005,7.19806549700013],[116.90015709700006,7.287420966000155],[116.91439863400015,7.293931382000054],[116.94800866000017,7.301906643000109],[116.96168053500011,7.307928778000118],[117.00261478000002,7.355698960000069],[117.01685631600004,7.342596747000087],[117.02271569100017,7.318833726000178]]],[[[117.26238040500019,7.201971747000129],[117.24708092500022,7.18317291900017],[117.22974694100004,7.191839911000089],[117.21094811300011,7.184393622000101],[117.15284264400022,7.173081773000121],[117.14039147200005,7.167629299000083],[117.13477623800021,7.161932684000106],[117.10808353000012,7.149562893000151],[117.09888756600006,7.143459377000084],[117.09205162900004,7.131984768000123],[117.08790123800006,7.120754299000126],[117.08236738400016,7.110663153000161],[117.07154381600017,7.102484442000147],[117.06413821700018,7.126654364000075],[117.05640709700019,7.202866929000122],[117.06128991000006,7.219142971000152],[117.06519616000004,7.226385809000178],[117.06413821700018,7.27073802300012],[117.06771894600014,7.28001536700016],[117.07325280000006,7.284979559000121],[117.089040561,7.290350653000175],[117.09888756600006,7.295843817000104],[117.12289472699997,7.320013739000117],[117.14527428499999,7.335516669000128],[117.15772545700021,7.340725002000127],[117.171153191,7.34267812700007],[117.24626712300002,7.355780341000141],[117.27003014400022,7.348863023000134],[117.28191165500017,7.332342841000155],[117.28321373800004,7.308783270000119],[117.27344811300023,7.231919664000187],[117.26238040500019,7.201971747000129]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Nepal","sov_a3":"NPL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nepal","adm0_a3":"NPL","geou_dif":0,"geounit":"Nepal","gu_a3":"NPL","su_dif":0,"subunit":"Nepal","su_a3":"NPL","brk_diff":0,"name":"Nepal","name_long":"Nepal","brk_a3":"NPL","brk_name":"Nepal","brk_group":null,"abbrev":"Nepal","postal":"NP","formal_en":"Nepal","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nepal","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":12,"pop_est":28563377,"gdp_md_est":31080,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"NP","iso_a2":"NP","iso_a3":"NPL","iso_n3":"524","un_a3":"524","wb_a2":"NP","wb_a3":"NPL","woe_id":23424911,"woe_id_eh":23424911,"woe_note":"Exact WOE match as country","adm0_a3_is":"NPL","adm0_a3_us":"NPL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"NPL.geojson"},"geometry":{"type":"Polygon","coordinates":[[[81.77901818800007,30.358044739000093],[81.80149743700008,30.36130035400006],[81.82278812700008,30.368173320000043],[81.84438887500005,30.37117055300004],[81.88717696200007,30.35499583000006],[81.92149011200007,30.357372946000112],[81.94123050900004,30.35396230100008],[81.95011885600007,30.348381246000056],[81.96210778900013,30.33365346300005],[81.96903243000008,30.328279114000082],[81.97885095300006,30.32683217400009],[81.98846276900008,30.32977773100001],[81.99817793800014,30.334066875000076],[82.00763472500012,30.336805726000104],[82.04985437000005,30.339234518000065],[82.07321211800013,30.33721913700012],[82.08876672400004,30.33008778900009],[82.09321089700006,30.314739889000123],[82.08210046400012,30.257327373000127],[82.0849943450001,30.230817363000117],[82.09589807100006,30.213454082000084],[82.1142432050001,30.20218861900014],[82.14039148000005,30.194023743000113],[82.15568770300013,30.181363017000077],[82.15098514800013,30.162242737000067],[82.1275757250001,30.12436391200009],[82.12871260600008,30.110773010000088],[82.13522383600014,30.089740702000082],[82.14452559400006,30.06943186500007],[82.15382735200012,30.058166402000012],[82.17423954300004,30.055479228000085],[82.19217126400014,30.061473694000114],[82.21067142800007,30.064419251000086],[82.25573327600011,30.039666240000084],[82.27599043800012,30.036927388000038],[82.2965059820001,30.036824036],[82.31888187700014,30.03181142200015],[82.32715010600009,30.0257136030001],[82.33908736200003,30.009228821000107],[82.34730391400007,30.003441061000046],[82.36373702000003,30.001167298],[82.37913659700013,30.00323435500007],[82.39443282100007,30.003131002000146],[82.40978072100006,29.994604391000056],[82.4228548590001,29.979669902000065],[82.43892622900006,29.965768942000096],[82.4570646570001,29.954090068000113],[82.47582320100008,29.945511780000086],[82.52424401900008,29.932385966000115],[82.54181400500005,29.923239238000033],[82.61850183100006,29.839833476000077],[82.63586511200009,29.829033101000046],[82.64640710500002,29.829343161000025],[82.66697432500013,29.835027567000083],[82.67730961100004,29.834407451000118],[82.68898848500002,29.827741191000086],[82.68919519100007,29.819576314000074],[82.68464766500006,29.809706116000086],[82.68175378500007,29.79771718300014],[82.69095218900009,29.780741476000028],[82.75151696800003,29.73932281500006],[82.77012048400007,29.714156393000053],[82.78107588700004,29.705113017000087],[82.7930648200001,29.699506124000067],[82.80515710500009,29.695966289000097],[82.81554406800011,29.690126851000112],[82.82236535700014,29.677957052000096],[82.83657637600004,29.659792786000057],[82.85745365400008,29.66620066400011],[82.88008793200004,29.68110931400005],[82.89972497600007,29.68842152900004],[82.90913008600012,29.68462331200001],[82.92370284000009,29.669662984000045],[82.93191939300004,29.66418528300005],[82.9420996500001,29.66294504900011],[82.96432051600004,29.66589060500013],[82.9758960370001,29.664030253000103],[83.03289514200009,29.62046702100008],[83.04090498800014,29.610286764000104],[83.05449589000011,29.586050517000043],[83.06493453000007,29.578789978000145],[83.07955896000004,29.57964264000009],[83.0855534260001,29.5903913380001],[83.08844730700014,29.604421488000128],[83.0933565670001,29.615144349000044],[83.10028120900006,29.617676493000122],[83.12668786600004,29.623412577000067],[83.15004561400008,29.62563466400007],[83.16208622200014,29.625169576000044],[83.17355839100009,29.6212680050001],[83.18725264500011,29.612095439000115],[83.1908699960001,29.6069019570001],[83.19448734600006,29.5936469530001],[83.19717452000009,29.589099427000065],[83.2049259850001,29.584913636000124],[83.22187585400013,29.57982350700013],[83.2293172610001,29.57594777400007],[83.25257165600004,29.55519968700014],[83.26083988500011,29.542048035000075],[83.26332035400009,29.527087708000092],[83.25990970900006,29.518767802000042],[83.25401859500005,29.51329010100005],[83.24874760000012,29.506572164000115],[83.24719730600009,29.494738261000126],[83.26394047000014,29.473008321000123],[83.32796757000006,29.485023092000088],[83.35520105000012,29.46073516800007],[83.35778487100002,29.442751771000104],[83.35520105000012,29.427972310000087],[83.35700972500013,29.415363261000063],[83.38724043800005,29.393504130000114],[83.38941084800011,29.382445374000014],[83.38827396600004,29.37022389700007],[83.39313155100011,29.356245423000075],[83.40501713000008,29.34647857700014],[83.41778120900005,29.34089752300011],[83.42816817300007,29.333456116000093],[83.4372115480001,29.305240784000034],[83.44821862800012,29.296765849000025],[83.47581384300008,29.286921489000065],[83.49338383000007,29.276146952000115],[83.50299564700009,29.26103159600012],[83.51250410900006,29.2234886680001],[83.51457116700004,29.20181040500003],[83.51705163600013,29.19170766200008],[83.52371789500012,29.183594462000087],[83.53596521000007,29.179227804000078],[83.56139001500009,29.176230570000087],[83.57203536000009,29.168401592000063],[83.58381758700006,29.162148743000046],[83.62443526200008,29.15545664500013],[83.63926639800013,29.154759013000046],[83.65499238900003,29.160413575000092],[83.65600956200007,29.16077931800007],[83.66339929300004,29.17480946900008],[83.66774011200003,29.192327780000138],[83.67507816600005,29.208760885000117],[83.6954903570001,29.226175842000146],[83.71972660300007,29.233591411000074],[83.74535811400006,29.234469910000083],[83.77062788900012,29.232247824000098],[83.79321049000004,29.23475413100007],[83.83785892700006,29.254003601000107],[83.86163008600005,29.26020477300008],[83.86886478700012,29.263434550000085],[83.87739139900003,29.27676707000009],[83.88343754100009,29.28201222800001],[83.9143917240001,29.289401957000024],[83.93315026800008,29.291779073000075],[83.94555261300013,29.291830750000084],[83.9579549560001,29.289040222000036],[83.96725671400003,29.284699402000054],[83.97325118100008,29.277025452000057],[83.97583500200005,29.26374460900007],[83.9882373460001,29.269532369000046],[84.00089807100011,29.272529602000134],[84.01252526900004,29.270204163000102],[84.02151696800007,29.259765523000084],[84.0352112220001,29.247621562000063],[84.05303959200006,29.250360413000124],[84.0720565190001,29.25697499600011],[84.08972985800011,29.256613261],[84.09913496900009,29.247001445000105],[84.10533614100007,29.219922994000058],[84.11236413600004,29.2090967820001],[84.12600671400008,29.20625457800014],[84.14197473200011,29.20826995900009],[84.1554622810001,29.20664215100004],[84.16166345300007,29.192534485000095],[84.15520389800007,29.17594635100011],[84.14171634900003,29.16026255400004],[84.13225956200006,29.14380360900006],[84.13799564600004,29.124657492000065],[84.16011316000002,29.10548553500007],[84.16621097900008,29.09845754000014],[84.16972497600005,29.088923239000053],[84.17546106000009,29.057400614000098],[84.19819869000007,29.045308329000108],[84.22057458500007,29.038900452000064],[84.2314266360001,29.02598134300007],[84.20672530100012,28.940663554000082],[84.2252905100001,28.914115306000014],[84.23514733900004,28.90002004000013],[84.28599694900004,28.87374257400009],[84.35400313300009,28.86128855400011],[84.36630212500006,28.85674102800007],[84.37658573500005,28.848834534000016],[84.39307051600014,28.824339905000073],[84.41430953000007,28.808268534],[84.42273278800008,28.799173483000033],[84.43782230700009,28.753336487000066],[84.45084476800014,28.733880310000075],[84.4757528080001,28.72729156500009],[84.49859379100013,28.727860006000046],[84.51564701300003,28.721400452000097],[84.53197676600007,28.71269297300003],[84.55182051600006,28.706388449000112],[84.6072176510001,28.698197734000104],[84.61620935100007,28.693650207000047],[84.62582116700008,28.676080221000092],[84.63264245600004,28.668793844000103],[84.65227950100007,28.662385966000073],[84.67114139800009,28.65894948300013],[84.68297530100011,28.65075876900011],[84.67775598100008,28.604405009000118],[84.69083011900005,28.59613678000005],[84.73661543800004,28.59417307500013],[84.75563236500005,28.58541392100005],[84.78178064000014,28.55890391000014],[84.79914392100004,28.546630758000106],[84.81195967600013,28.541979879000053],[84.82394860900013,28.540532939000055],[84.87929406700003,28.543633524000086],[84.89143802900001,28.541773173000077],[84.90787113500011,28.53701894200009],[84.91872318600014,28.53567535400012],[84.92849003100014,28.538465881000093],[84.93644820200005,28.544770406000108],[84.94895389800007,28.568283183000087],[84.95494836400006,28.574303487000122],[84.9847656660001,28.588592021000096],[84.99406742400004,28.59081410700011],[85.00249068200003,28.594431458000088],[85.00915694200012,28.602544657000095],[85.01876875900012,28.61985626200001],[85.02527998900013,28.628408712000123],[85.03210127800014,28.634067281000057],[85.05494226100006,28.638692322000026],[85.07504439300004,28.631664328000113],[85.11188968900012,28.608823344000115],[85.16098230000006,28.594999899000044],[85.16801029400011,28.583191833000058],[85.1569515380001,28.53314320900006],[85.15374760000003,28.524900818000106],[85.14764978100004,28.51583160400014],[85.14036340400008,28.510922343000118],[85.1231551510001,28.5045919800001],[85.11721236200007,28.497331441000114],[85.11566206800005,28.491492005000023],[85.11555871600012,28.472733460000114],[85.10946089700008,28.459297587000094],[85.08367435700006,28.445525818000135],[85.07757653800013,28.435681457000072],[85.08568973800004,28.381007792000105],[85.08568973800004,28.36152577700011],[85.0818671020001,28.331702005000096],[85.08021203600003,28.318789368000093],[85.08739506100011,28.30411326100011],[85.10940922100008,28.292253520000088],[85.1341622320001,28.29196930000012],[85.15457442200005,28.300857646000026],[85.1735913490001,28.304319966000065],[85.20573409100012,28.2782750450001],[85.22392419500011,28.271686300000113],[85.24340620900006,28.267913921000087],[85.25958093300005,28.266932068000102],[85.27312015800004,28.269825949000108],[85.30102543200012,28.281065572000042],[85.31260095200008,28.282770895000112],[85.32572676600006,28.277396546000148],[85.33482181800014,28.26868906700008],[85.3453638100001,28.261247660000066],[85.36257206200014,28.25967152900006],[85.37781661000008,28.265976054000046],[85.40138106300009,28.288791199000055],[85.41523034700009,28.29643931100011],[85.43156010000011,28.297059428000097],[85.4466496170001,28.292150167000074],[85.47569177300011,28.279101868000026],[85.49755090300005,28.282615865000082],[85.5206502690001,28.282925924000068],[85.54369795800005,28.280393779000065],[85.56529870600014,28.275381164000095],[85.58550419100004,28.263185526000086],[85.5989400630001,28.250834860000055],[85.61180749500005,28.251144918000104],[85.6390926520001,28.287886862000107],[85.6469474700001,28.293700460000082],[85.66813480600007,28.30054758800014],[85.67505944900006,28.30638702400003],[85.6761963300001,28.315120341000096],[85.67598962500011,28.324732158000103],[85.67914188700007,28.33289703400004],[85.69293949400003,28.335222473000073],[85.6980037840001,28.313440857000046],[85.69976078300009,28.269102478],[85.7155737710001,28.243367615000096],[85.7344873450001,28.22153432300007],[85.7566048590001,28.203240866000012],[85.78275313300003,28.18809967100009],[85.82688480700011,28.170478007000014],[85.84827885000004,28.158928325000062],[85.86336836800011,28.143347880000135],[85.86703739500011,28.13293508000001],[85.87173995000012,28.110920919000108],[85.88910323100004,28.090276184000114],[85.89106693500014,28.080896912000068],[85.88982670100012,28.071259257000065],[85.89044681900008,28.05919281000007],[85.89830163600008,28.036015930000072],[85.90894698100008,28.02242502900009],[85.94398360200012,27.994726461000056],[85.95659265100005,27.976226298000114],[85.95628259300008,27.956873474000076],[85.95183841900007,27.936797181000113],[85.95121830300008,27.916229961000028],[85.9626904700001,27.89137359600008],[85.98026045800009,27.885172424000075],[86.02645918800005,27.889926656000085],[86.05141890500009,27.887549540000037],[86.05459969400005,27.88801307200003],[86.06170251500009,27.889048157000047],[86.07565515100009,27.89478424100011],[86.10717777500008,27.922844544000043],[86.11286218300012,27.926797791000098],[86.11224206500003,27.937262269000144],[86.10717777500008,27.94423858700014],[86.1005631920001,27.95023305300006],[86.09560225500013,27.95785532600013],[86.09508549000009,27.96888824500013],[86.09803104700006,27.977518209000067],[86.09813439900012,27.985631409000092],[86.08940108300004,27.994726461000056],[86.08940108300004,27.994881490000097],[86.08929772900012,27.994933166000095],[86.08929772900012,27.994881490000097],[86.07916914900005,28.00113433900009],[86.07761885600013,28.006947937000064],[86.07953088400006,28.013329977000094],[86.07953088400006,28.021649882000077],[86.08392338100003,28.03854807600007],[86.08469852700006,28.0438707480001],[86.0815462650001,28.05169972700014],[86.07017745000013,28.06671173100011],[86.06873050900003,28.076762797000043],[86.1559603280001,28.156525371000015],[86.1760107830001,28.153011373000055],[86.18603601100011,28.13352935800006],[86.18717289300008,28.10869883200013],[86.18076501500008,28.088751729000105],[86.17223840400004,28.071827698000106],[86.17446049000006,28.062448425000067],[86.18185022000006,28.054877828000087],[86.18913659700013,28.043612366000044],[86.19600956200009,28.014570211000063],[86.20303755700013,28.002581279000083],[86.21776534000003,27.994984843000026],[86.21792037000004,27.994933166000095],[86.21838545700007,27.994726461000056],[86.23853926600009,27.989558818000063],[86.25900313300014,27.987646790000042],[86.27807173600013,27.98369354300007],[86.29465987200012,27.972376404000073],[86.31822432400003,27.945788880000062],[86.32773278800009,27.939691061000104],[86.3375513100001,27.938037415000053],[86.34561283400006,27.94093129500004],[86.35367435800003,27.944807028000096],[86.3629761150001,27.946098938000148],[86.37196781400013,27.94196482400011],[86.40571252400008,27.917005107000136],[86.42529789200012,27.90992543500002],[86.4388371170001,27.910855611000073],[86.47547570800003,27.927598775000035],[86.49692142700007,27.93788238500011],[86.51046065300005,27.952429301000052],[86.51676517800007,27.971368714000107],[86.51676433500006,27.971432200000038],[86.51645511900006,27.994726461000056],[86.51619673700007,28.012244771000013],[86.52229455600013,28.02371694000004],[86.5309245200001,28.033690491000044],[86.53836592600004,28.04717804000009],[86.54074304200009,28.06216420600009],[86.54125980600003,28.078209738000055],[86.54415368700012,28.09301503600005],[86.55355879700005,28.10415130600009],[86.56952681500007,28.10660593700007],[86.5831177170001,28.09802764900013],[86.59686364700013,28.086503805000092],[86.6123149010001,28.0802767940001],[86.62714603700003,28.083480733000073],[86.64947025600001,28.101179911000088],[86.66197595200008,28.10683848100012],[86.68006270300003,28.105727437000013],[86.69964807100013,28.098751119000013],[86.71768314700006,28.088260804000072],[86.73173913600004,28.07691782600008],[86.73597660400003,28.064851380000107],[86.7322042240001,28.03495656300009],[86.73980065900014,28.021494853000036],[86.76997969600006,28.01208974300007],[86.84046634900011,28.01477691700009],[86.86816491700012,27.994881490000097],[86.86816491700012,27.994726461000056],[86.87689823400012,27.970645243],[86.89307295800012,27.954186300000032],[86.91472538200009,27.945117086000067],[86.94035689300004,27.943101705000032],[86.97022587100014,27.94744252500001],[86.98209267100003,27.950674405000086],[86.98872603400008,27.952480978000068],[87.0056759040001,27.951499126000012],[87.03053226700013,27.93808909100008],[87.06200321500012,27.908426819000113],[87.11652185100013,27.844580587000053],[87.15579593900009,27.825796204000056],[87.1819958900001,27.824504293000103],[87.23289717600005,27.829723613000024],[87.29051639800008,27.816081035000106],[87.31392582200003,27.828586731000115],[87.33583662900008,27.84636342400006],[87.36384525500011,27.85525177000005],[87.38534265100009,27.849412334000075],[87.38069177200008,27.835821432000074],[87.36911625200014,27.819078268000027],[87.36911625200014,27.803937073000014],[87.38678959100014,27.804402161000038],[87.47556970200009,27.82670054200011],[87.51453373200013,27.8352013140001],[87.53158695500008,27.83680328400004],[87.55132735200003,27.831894023000103],[87.55597823100008,27.827088115],[87.55980228700014,27.819078268000027],[87.56507328300012,27.810861715000097],[87.57334151200013,27.80502227800011],[87.58998132300013,27.804608867000095],[87.62109053600011,27.819543356000054],[87.63607670100009,27.823651632000065],[87.65995121300004,27.81987925200005],[87.67852882500011,27.81335102200009],[87.70046553600008,27.80564239500009],[87.72682051600002,27.807761129000056],[87.7563794350001,27.820370179000093],[87.77984053500012,27.83943878200006],[87.79865075700012,27.863468323000088],[87.81415368700003,27.89096018500007],[87.82588423700014,27.90656646700009],[87.83668461200011,27.908323467000088],[87.85611495000006,27.898608297000035],[87.93455977400008,27.89530100600004],[87.94520511900008,27.89230377200002],[87.96639245600011,27.882743632000114],[87.9784330650001,27.880521545000107],[87.99181726100004,27.88264028000009],[88.01812056500005,27.892148743000092],[88.02995446800008,27.893337301000116],[88.05279545100012,27.886516011000055],[88.09573856600008,27.865328675000086],[88.1182178140001,27.860884501000097],[88.14302250200012,27.85571685800008],[88.15640669800007,27.851272685000083],[88.16462325100008,27.845355734000066],[88.16658695500011,27.833599346000085],[88.15459802200007,27.815150859000056],[88.15966231300011,27.774119772000116],[88.14932702700014,27.74877248200002],[88.1348576260001,27.723166809000077],[88.11087976100009,27.639502666000052],[88.04876468900011,27.545348206000057],[88.02333988400011,27.494912008000142],[88.02209965000007,27.484240825000143],[88.02333988400011,27.47465484700004],[88.02809411600009,27.455121155000143],[88.03078129100004,27.45072865900005],[88.03977299000007,27.442357077000082],[88.04163334200007,27.438067933000095],[88.03930790200013,27.429489644000082],[88.03481205300011,27.423805237000124],[88.02959273300013,27.41874094700006],[88.02582035300009,27.41207468600004],[88.01724206500006,27.38923370400005],[88.01476159700007,27.378071594000087],[88.01579512500007,27.36422231100005],[88.02013594600004,27.353370260000105],[88.03253829000009,27.33388824500011],[88.03512211100006,27.322571106000023],[88.02902429200003,27.29807647700008],[88.0046627590001,27.249163088000046],[87.98933679200007,27.218391419000113],[87.9854610590001,27.148369853000105],[87.97083663000012,27.119224345000077],[87.96918298300011,27.110801087000084],[87.97073327700014,27.102739563000085],[87.97548750900012,27.09514312800013],[87.99130049700011,27.081500550000044],[88.00949060100004,27.04563710500008],[88.02737064700011,27.035353495000095],[88.04282190000009,27.028945618000137],[88.05594771400007,27.01804189100008],[88.07687666900006,26.991790263000038],[88.09682377100006,26.959337464000043],[88.11180993700003,26.924300842],[88.12043990100011,26.908849589000113],[88.1428157960001,26.878412170000047],[88.15139408400012,26.86280588800011],[88.15532149300009,26.845597636000036],[88.15904219600009,26.80255116900011],[88.16782718900009,26.76291534400005],[88.1690674240001,26.74400177000012],[88.16751713100007,26.72503651900007],[88.16338301600007,26.705141093000066],[88.14663985200008,26.661216126000028],[88.10168135600009,26.5819444790001],[88.08713624100011,26.539100004000115],[88.07982222500004,26.517555644000083],[88.07915043200005,26.507375387000106],[88.08225101700008,26.494921367000046],[88.08225101700008,26.494869690000115],[88.07418949400011,26.45394195500012],[88.04432051600008,26.4056761680001],[88.00664839700005,26.36986440000007],[87.97548750900012,26.36655710800008],[87.96122481300011,26.378959453000046],[87.92897871900004,26.396426086000076],[87.91476770100013,26.40825999000009],[87.90851485200011,26.41782013000008],[87.90200362200005,26.435286763000132],[87.89730106600007,26.443451640000063],[87.8947689210001,26.442934876000038],[87.87068770400003,26.460711569000036],[87.86980920500007,26.46463897800001],[87.85208418800005,26.460659892000137],[87.8215950930001,26.437508851000047],[87.80443851800004,26.4373538210001],[87.78593835400011,26.44598378500004],[87.76898848500008,26.45146148700013],[87.75617273000012,26.44691396100009],[87.7494547930001,26.42572662400005],[87.74222009300013,26.410482076000108],[87.72754398600011,26.403764140000078],[87.71090417500011,26.4056761680001],[87.6975716550001,26.416269837000073],[87.68119022600013,26.42422800700004],[87.6596411540001,26.417510071],[87.64874495200011,26.409993271000072],[87.62398441600008,26.39291208900002],[87.58698409000004,26.37802927700008],[87.55205082300006,26.386710917000045],[87.48032393400007,26.423401185000017],[87.44962813400012,26.428620504000033],[87.41645186400012,26.42696685800007],[87.38420577000005,26.41864695300012],[87.35640384900012,26.40371246400005],[87.3449316820001,26.389346416000052],[87.32622481300007,26.353327942000078],[87.31402917500009,26.343767802000087],[87.3004899500001,26.345989888000076],[87.25842533400008,26.362939758000095],[87.24529952000012,26.37022613600007],[87.23630782100014,26.383300273000117],[87.22943485500008,26.398751526000098],[87.21909956900008,26.40810496000006],[87.18845544500005,26.399578349000137],[87.13502201400013,26.394204],[87.10628991700014,26.404745993000034],[87.08329390500005,26.432082825000066],[87.06670577000006,26.465620829000073],[87.05668054200004,26.494869690000115],[87.05647383700011,26.494869690000115],[87.05647383700011,26.494921367000046],[87.04500166800011,26.544272359000047],[87.04443322800012,26.561170553000036],[87.04133264100011,26.58018748000012],[87.02991215000007,26.57977406800009],[87.01544274900004,26.56897369400008],[86.9852120360001,26.540655009000062],[86.97244795800009,26.53197336800011],[86.93515347300013,26.520289336000044],[86.9071289470001,26.511509501000063],[86.87596805800007,26.494921367000046],[86.86568444800014,26.47244211900005],[86.84635746300012,26.45265004500007],[86.82186283400006,26.438128967000097],[86.79643802900006,26.43151438400011],[86.78723962400004,26.433064677000033],[86.75189294500012,26.44551869700012],[86.7381986900001,26.443710022000033],[86.73070560700006,26.433788148000133],[86.72409102400007,26.42195424400012],[86.71360070900005,26.414564515000105],[86.69520389800005,26.41823354100009],[86.62533736100005,26.456319071000053],[86.55789961800014,26.484017639000086],[86.53795251500003,26.494869690000115],[86.53774580900006,26.494869690000115],[86.52430993700011,26.509080709000102],[86.5106156820001,26.520139466000103],[86.4949060460001,26.527839254000096],[86.47547570800003,26.53197336800011],[86.4448315840001,26.543083802000123],[86.38364668800011,26.572849427000023],[86.35367435800003,26.58261627200008],[86.34483768800004,26.58261627200008],[86.32318526200004,26.580084127000077],[86.31600223800012,26.580962627000105],[86.30902592000012,26.587990622000035],[86.30861250800012,26.602149963000073],[86.30137780800004,26.609022930000037],[86.28442793800014,26.61202016200005],[86.26308557100002,26.609074606000064],[86.22515507100013,26.59739573200008],[86.20288252800009,26.58457997700009],[86.19585453300004,26.582667949000093],[86.18536421800013,26.58442494700006],[86.17926639900008,26.588610738000085],[86.17446049000006,26.59331329300008],[86.16779423000014,26.596620585000068],[86.1526530360001,26.60065134700008],[86.14635461800007,26.6013557760001],[86.14479821800012,26.601529847000105],[86.12206058800011,26.60028961200007],[86.11585941500003,26.6025633750001],[86.11069177300004,26.60674916600004],[86.04170373500006,26.64545481400006],[86.01136967000014,26.654446513000096],[85.97571293100002,26.64436960900005],[85.95214847900013,26.642044169000116],[85.93468184400012,26.63289744100004],[85.86636560100004,26.579929098000036],[85.84476485200008,26.568508606000137],[85.82853845200009,26.56613149000009],[85.82161381000007,26.57171254500011],[85.81975345900008,26.57951568700011],[85.81954675300011,26.588300680000113],[85.81763472500012,26.59672393800011],[85.80972823100007,26.603028463000015],[85.80006473800012,26.60070302300008],[85.7899878340001,26.597033997000096],[85.78099613500012,26.599204407000087],[85.7270459390001,26.63759999600012],[85.71288659700014,26.653206279000045],[85.70224125100003,26.688449606000034],[85.70963098200014,26.762450256000136],[85.70182784000013,26.796608378000112],[85.6877718500001,26.811852926000057],[85.60937870300012,26.851023662000102],[85.59857832800009,26.854382630000117],[85.51946171000009,26.826425680000114],[85.47569177300011,26.80523834300007],[85.43962162300011,26.787720032],[85.42153487200005,26.782655742000117],[85.4031897380001,26.78761667900008],[85.38587813300006,26.788443502000092],[85.36923832200006,26.775007629000044],[85.35535245800008,26.7599123520001],[85.35321862800009,26.757592672000012],[85.33704390500003,26.746792298000088],[85.30236901900008,26.73733551],[85.28727950000012,26.7369737760001],[85.1949337160001,26.758884583000054],[85.16568485500005,26.786273092000016],[85.16552982600012,26.820792949000094],[85.16201582800005,26.851023662000102],[85.12284509300014,26.865699768000095],[85.10021081500008,26.863529358000108],[85.0439868580001,26.843737284000014],[85.0185620520001,26.84580434200009],[85.01685673100013,26.859240214000035],[85.01804528800005,26.874433086000067],[85.00083703600006,26.882236227000078],[84.98817631000003,26.883786520000086],[84.97577396700005,26.88688710500014],[84.95272627800011,26.897635803000068],[84.94425134300008,26.915722554000066],[84.93856693500004,26.93659983400005],[84.92404585800011,26.955668437000043],[84.90156661000009,26.967192281000052],[84.85175052900006,26.982126770000036],[84.82828942900011,26.994839172000066],[84.82813440000012,26.994942526000102],[84.81748905400013,27.010600484000065],[84.80193444900004,27.013752747000098],[84.78550134300013,27.008481751000087],[84.77196211800009,26.99917999300007],[84.7606966560001,26.999024963000096],[84.64023889200007,27.028377177000092],[84.62726810700008,27.036490377000092],[84.6214803470001,27.057987773000036],[84.63036869400008,27.080828756000045],[84.64452803500006,27.103721415000052],[84.65439823400004,27.125373841000055],[84.65982426000011,27.165113017000035],[84.65765384900004,27.203405253000142],[84.64819706300004,27.24071563700008],[84.63191898600013,27.27704416900005],[84.60654585800012,27.310478821000032],[84.5770386150001,27.329030660000083],[84.28940759300008,27.37610789000007],[84.26770349200007,27.38856191000005],[84.24889327000005,27.41243642200004],[84.23902307100008,27.431143291000126],[84.22553552300013,27.44039337200013],[84.1952531340001,27.436052551000074],[84.18584802300012,27.43863637400005],[84.17509932500013,27.46297597300008],[84.16574589100009,27.472174378000062],[84.14171634900003,27.480752666000114],[84.1309676510001,27.48641123500005],[84.12156254100006,27.494963684000055],[84.11717004400009,27.513282979000053],[84.0995483800001,27.51687449100012],[84.07960127800004,27.509536438000026],[84.02890669800007,27.45372589100006],[84.00766768400013,27.44080678300014],[83.97583500200005,27.439721578000047],[83.93594079600012,27.446077780000078],[83.92302168800012,27.449953511000043],[83.92204311000006,27.449695761000044],[83.89987064700011,27.443855692000085],[83.85351688700013,27.440961813000087],[83.83408654800013,27.434037170000096],[83.8427165120001,27.41806915300006],[83.87119022600011,27.389440410000105],[83.8736706950001,27.38008697500007],[83.87764978000007,27.369906719000085],[83.87739139900003,27.361741842000068],[83.86752120000006,27.358382873000064],[83.86173343900009,27.3545071420001],[83.8546020920001,27.345050354000136],[83.85334011200007,27.346194023000066],[83.84798750900012,27.351044820000055],[83.80199548400003,27.365927633000098],[83.66339929300004,27.43228017200005],[83.59043217000004,27.45661977100005],[83.48098148600013,27.469745585000112],[83.38703373200008,27.4704690560001],[83.36098881100008,27.462200826000068],[83.35592452000003,27.452485657000125],[83.35385746300005,27.440290019000113],[83.35582116800009,27.428662822000064],[83.37096236200011,27.410214335000035],[83.36956709800012,27.398173726000067],[83.3627458090001,27.385616354000064],[83.34114506000003,27.356935933000074],[83.32435022000004,27.341691386000036],[83.30486820500005,27.331924541000063],[83.28244063400005,27.330942688000107],[83.25949629800004,27.338125713000068],[83.2494193930001,27.34809926300005],[83.24311486900005,27.362155253000083],[83.23159102400007,27.381223856000076],[83.2192403570001,27.393781230000087],[83.16963098200011,27.43119496700004],[83.13278568600009,27.444217428000087],[83.01046757100004,27.443390604000058],[82.9471639410001,27.457317403000047],[82.90127526900011,27.48036509200008],[82.87626387600011,27.48754811600014],[82.75213708500007,27.494963684000055],[82.7297095130001,27.518166402000077],[82.71885746300012,27.55612274200007],[82.70924564600011,27.630924377000014],[82.69705000800013,27.669397481000058],[82.6796867270001,27.69440887500005],[82.67389143300011,27.696458430000092],[82.65214318800014,27.7041498830001],[82.52615604700009,27.675211080000054],[82.44068322800007,27.666426086000058],[82.40192590400011,27.677174784000073],[82.34792403200004,27.726009013000038],[82.27040938300007,27.760477193000014],[82.15103682400007,27.848275452000053],[82.10742191600013,27.863571675000117],[82.09036869300007,27.872330831000085],[82.07166182500009,27.890030009000014],[82.05161136900006,27.905171203000123],[82.05021249900011,27.90558612200007],[82.0272200930001,27.91240590400008],[81.97590539600009,27.916953430000035],[81.94639815300013,27.90535207200008],[81.90609053500008,27.86310658800008],[81.88319787600011,27.849050599000066],[81.85565433700009,27.850936788000094],[81.82785241700003,27.865638733000083],[81.80015384900014,27.884087220000083],[81.75013106300014,27.90966705400004],[81.71039188600014,27.947520040000114],[81.6889461670001,27.963203837000094],[81.66543339000003,27.970800273000066],[81.61504886900013,27.981238913000084],[81.59536014800005,27.994726461000056],[81.59536014800005,27.994778138000072],[81.59510176600008,27.994881490000097],[81.58218265800008,28.01327830000008],[81.56192549700012,28.025990703000048],[81.47345544400014,28.06640167200004],[81.45821089700013,28.077279562000083],[81.45402510600007,28.086607157000117],[81.4529399010001,28.097045797000046],[81.4482373460001,28.11141184500005],[81.4352665610001,28.129782816000045],[81.41733483900009,28.147016907000136],[81.39604414900003,28.160633647000026],[81.37320316600011,28.16784250900008],[81.35790694200006,28.165982157000084],[81.35144738800011,28.156809591000094],[81.34726159700006,28.144433086000046],[81.3381148690001,28.132728373000045],[81.32369714400005,28.126242981000075],[81.30705733200006,28.12381418900011],[81.29620528100008,28.128310038000052],[81.29940922000009,28.142521058000113],[81.28307946800004,28.14608673100008],[81.27677494300013,28.153786520000068],[81.2807540280001,28.16197723400009],[81.2959469000001,28.167454936000095],[81.28235599800013,28.19158783000006],[81.22432336400004,28.250783183000124],[81.21073246300004,28.27863678000008],[81.19037194900005,28.338116353000146],[81.16970137600003,28.36131907200007],[81.14634362800007,28.372248638000116],[81.04706637000008,28.38908780400004],[81.00040938300003,28.397001649000057],[80.99317468300006,28.4078278610001],[80.99131433200006,28.42025604300008],[80.9878003340001,28.430978902000078],[80.97601810700007,28.43692169200011],[80.9605151780001,28.43227081400005],[80.94118819200014,28.432684225000056],[80.92134444200012,28.436198222000115],[80.90527307200006,28.440849101000083],[80.88666955600013,28.452786357],[80.88186364800002,28.46684234700012],[80.88036503100011,28.481880189000037],[80.87225183100009,28.496866353000087],[80.85798913600013,28.502447409000098],[80.81700972600008,28.502550761000034],[80.7984062090001,28.5057030240001],[80.78166304500007,28.514746399000046],[80.74352583900003,28.54996388700002],[80.72709273300006,28.559679057000068],[80.69577681500004,28.567508036000078],[80.6786202400001,28.574716898000133],[80.66818160000014,28.586344097000108],[80.64833785000008,28.619752910000074],[80.6356254480001,28.62786610900008],[80.59852176900012,28.633783061000088],[80.58136519400006,28.63895070400008],[80.56358850100014,28.64703806600008],[80.55687056500011,28.65502207500006],[80.55738732900004,28.664349671000082],[80.55904097500012,28.673031312000063],[80.55583703600013,28.67894826200006],[80.53444380100012,28.679555368000106],[80.51759647600005,28.680033468000147],[80.4975460210001,28.670137431000054],[80.4876241450001,28.656469015000056],[80.48493697100008,28.639286601000094],[80.49341190600006,28.5756470740001],[80.48845096900004,28.562443746000014],[80.46881392500006,28.571848857000074],[80.42654260300009,28.61680735300007],[80.40835249900003,28.62634165500006],[80.38830204300011,28.627245993000116],[80.3690784100001,28.622646789000072],[80.34975142400003,28.6202179980001],[80.32970096800011,28.627478537000087],[80.31833215400007,28.640113424000106],[80.29104699700008,28.68967112300007],[80.2833988850001,28.695355530000114],[80.26520878100007,28.699282938000096],[80.25704390500005,28.702745260000114],[80.24939579300008,28.71021250500007],[80.23895715300011,28.726258037000036],[80.23327274600007,28.732717591000064],[80.21642622900009,28.74194183400007],[80.18118290200003,28.747290345000124],[80.16206262200012,28.75328481100007],[80.14759322100014,28.76331003800007],[80.11421024600014,28.80258412700005],[80.08186079900014,28.81935312900001],[80.07305357600012,28.82092464700011],[80.05478234800012,28.824184876000118],[80.03638553900008,28.837026469000104],[80.03028772000005,28.877669983000146],[80.03111454300004,28.89779795300012],[80.03390507000012,28.91593638100005],[80.04051965400004,28.93280873700013],[80.0529219970001,28.949112650000075],[80.06842492700008,28.959938864],[80.08516809100013,28.96748362300005],[80.09943078600014,28.977276306000107],[80.10790572100011,28.99458791100002],[80.10790572100011,28.99476877900008],[80.10470178300005,29.02760915100009],[80.11307336500005,29.07220591300012],[80.13260705600004,29.110213928000036],[80.16350956300005,29.123365581000115],[80.18056278500005,29.121324361000063],[80.20144006400005,29.121169332000107],[80.22066369600009,29.126078593000045],[80.23306604000004,29.139307760000037],[80.23048221800013,29.15473317400003],[80.21373905400009,29.196565246],[80.21880334400004,29.21108632400006],[80.23606327400006,29.2130758670001],[80.24867232300005,29.20439422600012],[80.25818078600014,29.202456360000095],[80.27874800600004,29.26808542900005],[80.28277876900012,29.29131398500004],[80.28009159300012,29.310150045000057],[80.2727535400001,29.315705261000062],[80.26355513600004,29.31531768800008],[80.25497684700008,29.31663543700003],[80.2494991460001,29.326996562000144],[80.24216109200012,29.36740753200013],[80.22097375500005,29.40011871400012],[80.21373905400009,29.41688771600008],[80.21766646400003,29.434638570000086],[80.22831180800006,29.441718242],[80.25745731700005,29.450063986000085],[80.26345178200012,29.45923655200008],[80.26624231000005,29.472129822000085],[80.27306359800008,29.478666891000042],[80.28205529800005,29.484299622000094],[80.29115035000012,29.49460907000008],[80.29146040900008,29.494738261000126],[80.31151086400013,29.508122457000066],[80.3200891520001,29.515822245000038],[80.32722050000012,29.52483978300009],[80.32763391200012,29.529929911000067],[80.3250500900001,29.535510966000093],[80.3236031490001,29.541660462000063],[80.32722050000012,29.54858510300005],[80.33269820200013,29.552460836000108],[80.3451005450001,29.558351949000095],[80.35078495300013,29.562072652000012],[80.37331587800003,29.58419016500002],[80.38520145600006,29.604834900000128],[80.38675175000009,29.626823222],[80.37755334500008,29.652945659000093],[80.3639107670001,29.679714050000086],[80.35440230300009,29.704880473000113],[80.35429895100009,29.730279440000114],[80.36897505700006,29.757926330000114],[80.39522668500007,29.77658152300009],[80.45486128700009,29.790585836000105],[80.47615197800008,29.806140442000125],[80.5273116450001,29.86241607700003],[80.5495325120001,29.89368031900011],[80.56286503100006,29.929698792000096],[80.57133996600004,29.94685536700007],[80.58622277800009,29.954141745000044],[80.62229292800009,29.95817250600004],[80.64141320800007,29.963443502000075],[80.65412561000005,29.970574849000116],[80.68017053200003,29.99207224500015],[80.71582727100008,30.013311259000115],[80.72574914600011,30.022768047000085],[80.75572147700012,30.06457428000004],[80.76967411300012,30.077286682000103],[80.82982548000007,30.11712921200012],[80.84966923100006,30.143380840000045],[80.8364400640001,30.1700458790001],[80.85039270000003,30.181931458000033],[80.8679110110001,30.200173238000072],[80.88387902800014,30.210405172000065],[80.89364587500012,30.198106181000128],[80.90330936700012,30.180432841000115],[80.92082767700009,30.176660462000086],[80.98816206800012,30.196555888],[80.9960168870001,30.196969300000035],[81.00650720200008,30.18890777600012],[81.01942631000009,30.172267965000117],[81.0308984780001,30.152734274000093],[81.04366255800011,30.12022979700006],[81.06660689300008,30.087156881000084],[81.07420332800007,30.07191233400005],[81.0844536460001,30.02787577400011],[81.08484867400006,30.02617869000011],[81.09776778200006,30.016928609000104],[81.12458785000007,30.022768047000085],[81.14810062700012,30.02323313400012],[81.19450606300006,30.00447458900001],[81.21683028200005,30.008195292000035],[81.22726892100007,30.022457987000106],[81.22571862800004,30.0504666140001],[81.2395162360001,30.05878652000007],[81.25708622300004,30.063540752000076],[81.2668013920001,30.0699486290001],[81.2679026460001,30.07205300500004],[81.27202071100004,30.07992218],[81.27594812100011,30.095373433000105],[81.27450118000007,30.10219472300008],[81.2663363040001,30.11774932900011],[81.26695642100002,30.12508738200009],[81.27770511900007,30.131856995000135],[81.29325972600009,30.1328388470001],[81.30953780200014,30.132063701000074],[81.3224052330001,30.133769023000042],[81.33826989700003,30.143535868000097],[81.35005212400011,30.157230123000115],[81.35728682500007,30.17355987600007],[81.36183435100013,30.204772441000042],[81.37439172400013,30.223117574000128],[81.37785404500009,30.232626038],[81.37692386900011,30.24120432500004],[81.3705159910001,30.257275696000107],[81.36901737500006,30.266060689000085],[81.36803552300012,30.301045634000104],[81.37154952000009,30.316910299000114],[81.38214318800004,30.331276347000117],[81.38725915500004,30.345125631000087],[81.3848820400001,30.36093861900008],[81.38751753800011,30.373909403000084],[81.4074129640001,30.379180400000024],[81.4261198320001,30.372514140000106],[81.46281010000007,30.341353251000044],[81.48306726100009,30.331896464000064],[81.5093705650001,30.32838246700004],[81.52068770400007,30.33194814000009],[81.53195316600005,30.370343730000027],[81.53681075100008,30.378560283000066],[81.54425215700007,30.38264272100008],[81.56326908400007,30.385588277000068],[81.57670495600013,30.390962626000118],[81.58197595200005,30.399437561000124],[81.58507653800007,30.408119202000076],[81.59158776800007,30.414268697000068],[81.61401534000004,30.416904195000086],[81.63571944200004,30.41096140600007],[81.7573657640001,30.36290232400009],[81.77901818800007,30.358044739000093]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Oman","sov_a3":"OMN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Oman","adm0_a3":"OMN","geou_dif":0,"geounit":"Oman","gu_a3":"OMN","su_dif":0,"subunit":"Oman","su_a3":"OMN","brk_diff":0,"name":"Oman","name_long":"Oman","brk_a3":"OMN","brk_name":"Oman","brk_group":null,"abbrev":"Oman","postal":"OM","formal_en":"Sultanate of Oman","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Oman","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":3418085,"gdp_md_est":66980,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"MU","iso_a2":"OM","iso_a3":"OMN","iso_n3":"512","un_a3":"512","wb_a2":"OM","wb_a3":"OMN","woe_id":23424898,"woe_id_eh":23424898,"woe_note":"Exact WOE match as country","adm0_a3_is":"OMN","adm0_a3_us":"OMN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"OMN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[55.89079837300008,17.504543361000074],[55.875824415000096,17.49591705900015],[55.845713738000114,17.496079820000134],[55.836273634000094,17.490952867000104],[55.83619225400011,17.490912177000112],[55.83244876400008,17.500392971000124],[55.831716342000014,17.502264716000113],[55.831716342000014,17.502346096000096],[55.83708743600019,17.510077216000084],[55.848806186000076,17.515285549000097],[55.86296634200019,17.518866278000147],[55.88306725400011,17.507147528000175],[55.89087975400011,17.504584052000055],[55.89079837300008,17.504543361000074]]],[[[56.04688561300023,17.493353583000054],[56.031097852000094,17.490912177000112],[55.98682701900011,17.49290599200016],[55.97282962300008,17.498358466000113],[55.964203321000156,17.51992422100001],[55.99057050900015,17.53538646000014],[56.02881920700011,17.547674872000087],[56.055349155000066,17.559800523000163],[56.055349155000066,17.559719143],[56.05819746200021,17.54584381700012],[56.05844160200016,17.544338283000155],[56.06788170700005,17.532212632000082],[56.08106530000012,17.523627020000063],[56.09555097700015,17.518866278000147],[56.06381269600009,17.49957916900003],[56.04688561300023,17.493353583000054]]],[[[58.65235436300018,20.17047760600012],[58.6521916020001,20.17047760600012],[58.64698326900011,20.179673570000162],[58.64258873800023,20.187241929000137],[58.637461785000106,20.218451239000032],[58.636485222000054,20.24970123900009],[58.63868248800022,20.26662832200016],[58.63868248800022,20.26666901200015],[58.638356967000185,20.267849026000178],[58.63591556100007,20.27700429900007],[58.64291425900015,20.35610586100016],[58.648203972,20.368841864],[58.65902754000009,20.38271719],[58.66456139400006,20.387844143],[58.68238366000011,20.400620835000055],[58.68995201900006,20.403225002000156],[58.69190514400011,20.40517812700001],[58.69385826900005,20.40717194200012],[58.69825280000007,20.42568594000015],[58.70069420700005,20.431097723],[58.71762129000015,20.436997789000046],[58.7342228520001,20.43764883000007],[58.75123131600017,20.440130927000112],[58.7688908210001,20.451605536000056],[58.777110222000175,20.462184963000098],[58.78077233200022,20.466986395],[58.7845158210001,20.479396877000042],[58.785166863000235,20.481634833],[58.78939863400014,20.519924221000124],[58.79558353000014,20.538397528000147],[58.80486087300009,20.55345286700016],[58.85287519600015,20.61334870000003],[58.87134850400016,20.649603583000115],[58.88257897200017,20.682521877000013],[58.891286655000066,20.694281317],[58.906260613000114,20.697984117000047],[58.918304884000094,20.68146393400015],[58.918304884000094,20.681341864],[58.91700280000012,20.664252020000145],[58.91016686300011,20.645941473000093],[58.906260613000114,20.62604401200018],[58.906260613000114,20.626003322000187],[58.908376498000194,20.604722398000106],[58.91431725400011,20.587836005000113],[58.945078972,20.53522370000009],[58.953949415000146,20.519924221000124],[58.953949415000146,20.519883531000133],[58.95004316500015,20.508937893000095],[58.941172722,20.500921942000144],[58.90284264400011,20.474107164000046],[58.86231530000006,20.45278554900007],[58.844086134000094,20.43732330900015],[58.8201603520001,20.403021552],[58.80827884200007,20.379584052000112],[58.796641472000175,20.331529039000046],[58.78760826900005,20.314520575000174],[58.78760826900005,20.314439195000187],[58.78760826900005,20.303290106000176],[58.787771030000016,20.302394924000097],[58.78931725400017,20.29319896000011],[58.78939863400014,20.286525783000158],[58.785166863000235,20.27952708500008],[58.751475457000225,20.24803294500016],[58.73340905000012,20.224554755],[58.724294467000185,20.21515534100017],[58.71534264400006,20.212103583000086],[58.702647332000225,20.21043528900016],[58.69125410200016,20.20774974200019],[58.686534050000056,20.201483466000052],[58.683116082000225,20.190904039000188],[58.67457116000011,20.179510809000035],[58.663584832000055,20.171372789000102],[58.65235436300018,20.17047760600012]]],[[[56.48682701900011,24.741848049000097],[56.493500196000156,24.70018138200014],[56.61117597700016,24.49632396000011],[56.63559004000009,24.471380927],[56.69214928500011,24.425238348000065],[56.80144290500019,24.302964585000055],[56.82309004000009,24.27114492400004],[56.83228600400017,24.252508856000034],[56.84107506600011,24.223822333000086],[56.93946373800006,24.115912177000055],[57.05827884200008,24.023098049000122],[57.15154056100019,23.953558661000116],[57.18425540500012,23.93427155199999],[57.32634524800002,23.884019273000103],[57.50961347700011,23.839097398000103],[57.58643639400006,23.80744049700003],[57.64519290500007,23.79043203300007],[57.686778191000116,23.783351955000015],[57.70972741000011,23.782212632000082],[57.777354363000164,23.785956122000115],[57.79574629000009,23.782212632000082],[57.82439212300008,23.74762604400017],[57.83497155000012,23.740057684000035],[57.859222852000094,23.734076239000032],[57.88770592500011,23.72085195500007],[57.91277103,23.71784088700015],[58.04314212300009,23.724554755000113],[58.08676191500015,23.722113348000093],[58.13160241000017,23.713324286000116],[58.193207227000094,23.689357815000065],[58.210297071000156,23.685980536000145],[58.227386915000096,23.67914459800012],[58.26417076900011,23.644842841000138],[58.28239993600019,23.631415106000148],[58.31723066500009,23.620917059000092],[58.36353600400011,23.61554596600014],[58.4119572270001,23.616197007],[58.4529728520001,23.623968817],[58.47486412900011,23.631537177000137],[58.48365319100011,23.638128973000036],[58.490896030000016,23.65656159100014],[58.49952233200022,23.656887111000074],[58.51856530000012,23.65192291900003],[58.561371290000096,23.6511091170001],[58.58415774800002,23.64695872600008],[58.60450280000006,23.637600002000127],[58.61329186300011,23.62506745000003],[58.63331139400005,23.585272528000147],[58.642100457000225,23.576808986000017],[58.64714603000007,23.574896552000055],[58.651540561000076,23.57054271000005],[58.65552819100011,23.565741278000147],[58.65902754000009,23.562486070000105],[58.66130618600019,23.563137111000074],[58.66684004000009,23.563910223],[58.674001498000074,23.56395091400016],[58.680349155000194,23.562486070000105],[58.694590691000165,23.551418361000074],[58.702403191000165,23.54295482000005],[58.70687910200016,23.53514232000005],[58.71436608200012,23.53514232000005],[58.7205509770001,23.548814195000162],[58.72291100400011,23.543402411000145],[58.72494550900015,23.540106512000094],[58.72681725400011,23.53607819200012],[58.728037957000225,23.528387762000122],[58.73487389400006,23.528387762000122],[58.73601321700019,23.532660223000118],[58.74097741000017,23.542059637000065],[58.7463485040001,23.537665106000144],[58.74952233200005,23.536444403000147],[58.7620548840001,23.542059637000065],[58.78614342500011,23.512111721000068],[58.79297936300011,23.495672919000082],[58.78939863400014,23.48061758000007],[58.79737389400012,23.466782945000162],[58.80762780000012,23.421128648000135],[58.82056725400011,23.401760158000016],[58.87916100400016,23.351263739],[58.91521243600001,23.336086330000015],[58.92945397200006,23.318101304],[58.94654381600017,23.275091864000117],[58.95622806100001,23.259426174000154],[58.98650149800002,23.23248932500009],[59.001719597,23.212388414000046],[59.0101017590001,23.15330638200011],[59.07374108200022,23.093247789000102],[59.077891472000175,23.085150458],[59.08366946700007,23.05536530199999],[59.087901238000065,23.048407294000086],[59.09253991000011,23.043646552],[59.12045332100015,23.022772528000033],[59.1736759770001,22.993963934000092],[59.20753014400005,22.970363674000154],[59.23226972700015,22.943019924000065],[59.25001061300023,22.912014065000065],[59.286143425000056,22.82648346600014],[59.28980553500011,22.812079169000086],[59.29753665500007,22.792710679000077],[59.31568444100017,22.77948639500012],[59.35181725400011,22.761175848000065],[59.39161217500006,22.702215887000094],[59.39722741000017,22.68610260600003],[59.41065514400006,22.67084381700006],[59.4524845710001,22.634100653000175],[59.48389733200022,22.618841864],[59.50684655000013,22.60008372600005],[59.52979576900011,22.587876695000162],[59.535492384000094,22.58307526200018],[59.536468946000156,22.572577216000113],[59.530446811000076,22.57005442899999],[59.521983269000124,22.572170315],[59.515635613000065,22.575588283000013],[59.51579837300002,22.561509507000082],[59.52312259200008,22.55512116100006],[59.53516686300017,22.553859768000123],[59.54981530000006,22.55512116100006],[59.62680097700015,22.579820054000137],[59.65349368600007,22.569728908000073],[59.69385826900005,22.541449286000116],[59.69996178500011,22.54092031500012],[59.715668165000096,22.542914130000085],[59.72120201900012,22.541449286000116],[59.723968946000156,22.536810614],[59.72584069100011,22.52610911700016],[59.728526238000114,22.520982164000042],[59.72836347700015,22.51813385600012],[59.72722415500012,22.513576565000065],[59.728037957000225,22.507635809000035],[59.73471113400009,22.50047435099999],[59.739756707000105,22.497788804000106],[59.74610436300023,22.495591539000127],[59.75277754000009,22.494208075000145],[59.75896243600008,22.493638414000156],[59.76254316500015,22.498602606000034],[59.75603274800002,22.509426174000126],[59.7415470710001,22.52472565300009],[59.74577884200013,22.538234768000066],[59.75635826900005,22.538478908000016],[59.77637780000006,22.541449286000116],[59.80323326900011,22.53473541900017],[59.82488040500013,22.508856512000147],[59.83936608200016,22.475287177000112],[59.844574415000146,22.44525788000008],[59.82488040500013,22.2813988300001],[59.81177819100011,22.237372137000175],[59.79175866000017,22.198065497000087],[59.73471113400009,22.12311432500003],[59.70492597700016,22.099554755000085],[59.688161655000066,22.082709052000084],[59.680674675000056,22.06509023600016],[59.6779891290001,22.041896877000042],[59.659678582000225,21.994045315],[59.655039910000106,21.945746161000088],[59.64527428500017,21.92584870000017],[59.605642123000074,21.91022370000009],[59.59343509200008,21.89276764500012],[59.576996290000096,21.856268622000083],[59.4978947270001,21.756333726000108],[59.467621290000096,21.66640859600004],[59.44857832100009,21.624904690000122],[59.35499108200017,21.485663153000147],[59.347504102000094,21.453558661000088],[59.34424889400005,21.444728908000016],[59.3361922540001,21.43773021000014],[59.19532311300012,21.37909577],[59.1662703790001,21.362779039000188],[59.054372592000014,21.27708567900011],[58.91920006600011,21.143703518000095],[58.87810306100013,21.083807684000064],[58.86793053500017,21.074774481000034],[58.85425866000011,21.065619208000058],[58.83855228000007,21.044501044000143],[58.80787194100017,20.990790106000176],[58.804453972000175,20.981594143],[58.801931186000076,20.94623444200009],[58.79883873800017,20.93602122600005],[58.79297936300011,20.927394924000126],[58.73487389400006,20.88300202000012],[58.739024285000106,20.86225006700012],[58.722178582000105,20.84804922100001],[58.680349155000194,20.828355210000055],[58.68148847700011,20.826483466000084],[58.67383873800012,20.80817291900003],[58.672699415000146,20.807847398000106],[58.66578209700006,20.801581122000144],[58.66130618600019,20.796332098000065],[58.65902754000009,20.790838934000064],[58.661468946000156,20.781642971000068],[58.66765384200013,20.77228424700006],[58.67644290500019,20.76439036700016],[58.686534050000056,20.759466864],[58.70134524800014,20.766017971000096],[58.71810957100015,20.780829169000143],[58.72934004000015,20.78681061400009],[58.728037957000225,20.76691315300009],[58.71810957100015,20.753648179000052],[58.69988040500007,20.740790106000034],[58.681813998000024,20.735907294000143],[58.672699415000146,20.746405341000024],[58.66651451900006,20.746405341000024],[58.66089928500017,20.732326565000093],[58.653330925000056,20.70526764500015],[58.645355665000096,20.69114817900011],[58.637461785000106,20.684393622000083],[58.61540774800019,20.672430731000144],[58.60450280000006,20.663275458000058],[58.591807488000065,20.64394765800013],[58.58082116000011,20.618475653000033],[58.57325280000006,20.59064362200017],[58.570485873000194,20.564276434000174],[58.54509524800019,20.516424872000144],[58.531260613000114,20.481390692000062],[58.532481316000116,20.465277411],[58.52686608200011,20.45770905200014],[58.52149498800023,20.424383856000148],[58.51856530000012,20.416815497000115],[58.51042728000019,20.415228583000086],[58.49708092500011,20.410793361000103],[58.48357181100002,20.404201565000122],[58.474131707000105,20.396389065000122],[58.46745853000007,20.369533596000153],[58.44581139400005,20.358628648000078],[58.417653842000085,20.359605210000055],[58.39161217500011,20.36847565300009],[58.37256920700012,20.377386786000116],[58.35914147200001,20.381577867000075],[58.3264266290001,20.38271719],[58.3138126960001,20.380804755000142],[58.29004967500011,20.371405341000028],[58.27556399800008,20.36847565300009],[58.278656446000156,20.377386786000116],[58.28451582100009,20.381984768000066],[58.279633009000094,20.384833075000117],[58.24415123800022,20.394232489000117],[58.224294467000014,20.396389065000122],[58.202891472000175,20.404730536],[58.20053144600009,20.424383856000148],[58.21338951900006,20.465277411],[58.21322675900009,20.452704169000082],[58.21729576900007,20.44155508000007],[58.224782748000194,20.43183014500012],[58.23462975400012,20.423651434000035],[58.238454623000074,20.443833726000047],[58.22828209700011,20.488836981000034],[58.23804772200006,20.509344794000086],[58.251312696000156,20.529201565],[58.261566602000094,20.5580915390001],[58.26417076900011,20.58763255400008],[58.25513756600017,20.609279690000065],[58.23487389400006,20.615668036],[58.205739780000016,20.61334870000003],[58.17628014400006,20.604722398000106],[58.144216342000085,20.58519114800005],[58.10352623800005,20.57514069200006],[58.09083092500012,20.566839911],[58.08448326900006,20.558050848000118],[58.067230665000096,20.51105377800009],[58.06657962300014,20.499823309000092],[58.073090040000096,20.48916250200007],[58.075856967000085,20.48004791900017],[58.06763756600017,20.472479559000035],[58.055349155000016,20.467230536000145],[58.03077233200011,20.461900132000082],[58.01246178500017,20.453436591000024],[57.9943953790001,20.442287502000013],[57.97071373800011,20.42121002800009],[57.96208743600018,20.41087474200016],[57.95582116000016,20.399562893],[57.95337975400011,20.386419989000142],[57.95655358200011,20.376939195000134],[57.97071373800011,20.36188385600012],[57.97388756600017,20.352280992000047],[57.966563347000175,20.33022695500013],[57.94874108200011,20.317572333000086],[57.90503991000011,20.300767320000077],[57.88843834700006,20.290716864],[57.8704533210001,20.277044989000057],[57.856130405000016,20.260646877000127],[57.85035241000017,20.242417710000055],[57.84489993600001,20.23118724200016],[57.833506707000055,20.218329169000057],[57.82374108200022,20.201076565000122],[57.823008660000106,20.176662502000067],[57.841970248000194,20.136053778000175],[57.847992384000094,20.111761786],[57.83171634200008,20.075344143000123],[57.81625410200016,20.020738023000078],[57.81568444100017,20.006577867000047],[57.813649936000076,19.976996161],[57.790375196000156,19.92401764500015],[57.77369225400011,19.867865302000055],[57.762054884000094,19.84296295800003],[57.698903842000185,19.754380601000108],[57.68921959700006,19.72817617400007],[57.693369988000114,19.69745514500009],[57.700450066000165,19.685980536000145],[57.70923912900011,19.676743882000082],[57.71680748800005,19.66681549700017],[57.719981316000116,19.653062242000047],[57.720550977000094,19.622626044000086],[57.71892337300008,19.60797760600009],[57.713877800000056,19.59503815300009],[57.706553582000225,19.56883372600005],[57.704437696000156,19.548732815],[57.71176191500015,19.529486395000063],[57.760264519000124,19.454087632000025],[57.76783287900016,19.437445380000057],[57.77393639400006,19.409654039000188],[57.773773634000094,19.382879950000085],[57.76905358200006,19.35761139500012],[57.75220787900017,19.31159088700018],[57.74830162900016,19.29100169500005],[57.750661655,19.26805247600005],[57.770843946000156,19.21694570500007],[57.780528191000116,19.201117255000053],[57.80567467500012,19.17300039300015],[57.81185957100016,19.156887111000074],[57.80298912900011,19.115139065000147],[57.80201256600017,19.09479401200015],[57.839854363000114,19.029974677000055],[57.8400985040001,19.015326239000146],[57.81568444100017,18.991766669000086],[57.80111738400015,18.98065827000006],[57.79712975400017,18.97923411700019],[57.75228925900015,18.973049221000124],[57.74732506600011,18.967840887000037],[57.74284915500007,18.96185944200012],[57.73194420700005,18.95380280199999],[57.719411655000066,18.94692617400007],[57.70972741000011,18.94399648600013],[57.50147545700011,18.95368073100012],[57.445323113000114,18.94533926000004],[57.20753014400012,18.909979559000035],[57.083750847000175,18.876369533000016],[56.91504967500012,18.810288804],[56.85035241000017,18.76581452000009],[56.80779056100002,18.74559153900016],[56.78467858200011,18.728583075000085],[56.7747501960001,18.707180080000157],[56.766449415000096,18.696844794000143],[56.65967858200011,18.595363674000126],[56.64112389400011,18.559271552],[56.636892123000194,18.51194896000014],[56.64340254000009,18.479193427000112],[56.644297722000175,18.467596747000087],[56.64112389400011,18.454901434000032],[56.62663821700008,18.43585846600014],[56.62126712300019,18.419582424000012],[56.612315300000056,18.399603583000143],[56.60962975400011,18.389064846000068],[56.60962975400011,18.347479559000092],[56.60059655000006,18.305405992000132],[56.54883873800005,18.189846096000068],[56.563731316000116,18.170233466000028],[56.56128991000016,18.149237372000172],[56.54721113400015,18.129706122000087],[56.52759850400017,18.114691473000065],[56.48414147200006,18.096502997000172],[56.46257571700002,18.084418036000084],[56.431976759000094,18.032171942000062],[56.4256291020001,18.027411200000174],[56.41130618600019,18.023179429000052],[56.40414472700015,18.019110419000082],[56.35767662900011,17.969794012000094],[56.354991082000225,17.96230703300013],[56.356293165000096,17.94000885600009],[56.344899936000076,17.937811591000113],[56.188487175000056,17.95709870000006],[56.16822350400017,17.95408763200014],[56.13835696700008,17.940578518000066],[56.116221550000056,17.93659088700018],[56.031097852000094,17.943426825000117],[56.01075280000012,17.940375067000033],[55.94605553500016,17.915472723000065],[55.909434441000116,17.90664297100004],[55.653493686000076,17.89533112200003],[55.55290774800008,17.870266018000123],[55.530528191000116,17.868312893000095],[55.52247155000011,17.866441148000106],[55.51734459700017,17.862250067],[55.51286868600013,17.85748932500009],[55.50660241000017,17.853989976000108],[55.48829186300011,17.853461005000113],[55.48682701900006,17.853989976000108],[55.45394941500015,17.845404364],[55.445160352000094,17.84100983300003],[55.431651238000114,17.824652411],[55.4173283210001,17.785223700000117],[55.407969597000175,17.76870351800012],[55.39307701900006,17.752142645000063],[55.38868248800023,17.744289455000096],[55.373383009000094,17.703314520000063],[55.369476759000094,17.69635651200018],[55.35572350400017,17.681586005],[55.26319420700011,17.607733466000084],[55.23503665500013,17.55882396000011],[55.22820071700019,17.53876373900006],[55.22543379000015,17.51544830900015],[55.22950280000012,17.48859284100017],[55.24008222700015,17.475165106000176],[55.27377363400014,17.457424221000068],[55.29322350400017,17.43768952000015],[55.30079186300011,17.416815497000172],[55.301117384000094,17.37116120000006],[55.294200066000116,17.352118231000148],[55.25342858200017,17.299139716000113],[55.25123131600017,17.28998444200012],[55.24952233200017,17.276109117000043],[55.25066165500019,17.263617255000113],[55.256846550000056,17.258205471000096],[55.26482181100013,17.25478750200007],[55.26514733200022,17.247056382000054],[55.26026451900006,17.234279690000122],[55.25473066500015,17.228705145],[55.228526238000114,17.216131903000118],[55.21924889400006,17.21039459800015],[55.21314537900017,17.202093817000062],[55.20932050900014,17.193548895000145],[55.20508873800023,17.17621491100006],[55.19548587300008,17.160834052000112],[55.19874108200011,17.155747789000188],[55.189219597,17.14476146000014],[55.15886478000007,17.135809637000094],[55.14356530000006,17.127834377000152],[55.138438347000175,17.11888255400011],[55.132985873000024,17.10504791900003],[55.12476647200006,17.09247467700014],[55.11255944100017,17.08685944200012],[55.071787957000105,17.042181708000083],[55.02686608200011,17.011135158000158],[55.02068118600013,17.011135158000158],[55.01091556100019,17.026271877000156],[54.99919681100019,17.01968008000007],[54.98698978000013,17.005357164000188],[54.97535241000011,16.997463283000044],[54.959646030000066,16.994859117000132],[54.945078972,16.989976304000052],[54.93132571700019,16.987127997000112],[54.91700280000012,16.990668036],[54.90137780000012,16.974920966000138],[54.88282311300023,16.969061591000084],[54.841807488000114,16.963934637000175],[54.80844160200015,16.951483466000166],[54.79184004000009,16.951402085],[54.780528191000116,16.963934637000175],[54.76905358200022,16.95791250200007],[54.75074303500017,16.96051666900017],[54.73943118600019,16.956488348],[54.70533287900011,16.977606512000122],[54.69792728000013,16.97016022300015],[54.689789259000094,16.989325262000094],[54.68531334700006,17.006903387000037],[54.67408287900011,17.019761460000055],[54.633148634000094,17.02692291900011],[54.604340040000146,17.036322333000115],[54.5920516290001,17.03847890800013],[54.58033287900011,17.03733958499999],[54.55974368600019,17.03270091400016],[54.547699415000096,17.03164297100001],[54.51238040500007,17.038397528000147],[54.49927819100017,17.03847890800013],[54.48853600400017,17.035589911],[54.467621290000096,17.026678778000147],[54.46168053500016,17.0248070330001],[54.41456139400012,17.03782786700016],[54.3899845710001,17.03945547100001],[54.369476759000094,17.0248070330001],[54.36011803500017,17.029608466000084],[54.35035241000016,17.031683661],[54.16407311300017,17.011135158000158],[54.084971550000056,17.011135158000158],[54.06755618600019,17.00674062700007],[54.023448113000114,16.98533763200014],[54.01270592500006,16.977606512000122],[54.008962436000076,16.968654690000093],[54.009287957000055,16.960923570000162],[54.01140384200019,16.953680731000148],[54.01270592500006,16.94599030200014],[54.009450717000014,16.937445380000113],[53.995371941000116,16.925360419000114],[53.99219811300022,16.919256903000033],[53.98113040500018,16.908758856000148],[53.95590254000015,16.903876044000086],[53.91016686300011,16.9012718770001],[53.85035241000016,16.88914622599999],[53.83073978000019,16.887640692000147],[53.81267337300008,16.881781317],[53.79200280000006,16.870306708000058],[53.77133222700016,16.862616278000033],[53.75318444100011,16.867743231000063],[53.73462975400011,16.856146552000112],[53.709320509000094,16.836004950000085],[53.68702233200016,16.813625393000066],[53.677500847000175,16.79511139500015],[53.66928144600015,16.784084377000013],[53.650563998000194,16.773179429000134],[53.615407748000024,16.757879950000174],[53.58269290500019,16.749945380000028],[53.423024936000076,16.746812242000132],[53.33863366000017,16.734808661000027],[53.17530358200011,16.684515692000147],[53.09035191701477,16.64240603028115],[53.027904908000124,16.777478333000104],[52.9652730720002,16.912922262],[52.9027445880001,17.048262838000156],[52.84031945800015,17.18370676700009],[52.801562134000186,17.267422587000127],[52.79102014100013,17.281220195000074],[52.77386356600018,17.287111308000178],[52.73624312400008,17.289178365000126],[52.72146366400014,17.298170065000175],[52.72301395700017,17.29868682900012],[52.7282849530001,17.299358622000014],[52.73014530500021,17.299875387000142],[52.69841597500007,17.3714472460001],[52.65562788900016,17.467978821000102],[52.612839803,17.56456207300006],[52.57020674700007,17.661093648000087],[52.527418660000215,17.75762522400011],[52.48452722200008,17.854156799000137],[52.4417391360001,17.950636699000157],[52.39900272600001,18.047271627000114],[52.356162964000106,18.14377736400003],[52.31332320200008,18.240283102000046],[52.27069014500009,18.336866353000104],[52.22779870600013,18.433423767000033],[52.1850106200001,18.529929504000066],[52.142325887000105,18.62651275700001],[52.09953780100008,18.72304433200013],[52.0567497150001,18.81962758400006],[52.01396162900019,18.916159160000106],[51.985688749000104,18.979731806000146],[51.97861495000021,18.99563751300009],[52.08992598400007,19.032637838000042],[52.26107832800008,19.08968862000013],[52.432127319000216,19.146739401000147],[52.60312463300008,19.20379018100006],[52.77438033000013,19.260789286000048],[52.945532674000134,19.317865906000137],[53.1165816650001,19.37491668700015],[53.28783736200015,19.43194163000014],[53.4588863530001,19.488992411000037],[53.63003869600013,19.54599151600003],[53.80108768700009,19.603068136000118],[53.97224003100009,19.660118917000048],[54.143495728000204,19.717143860000032],[54.31464807200021,19.774194641000047],[54.485593710000074,19.83119374600004],[54.656746053000084,19.888192851000028],[54.827898396000165,19.945269471000117],[54.978380168000086,19.99542144800013],[55.010522909000116,20.09200470000009],[55.0171374920001,20.111745097000053],[55.03574100800003,20.167555644000018],[55.064473104000086,20.254268697000086],[55.101886841000095,20.36684580500015],[55.14622521900017,20.49999013300014],[55.19552453600008,20.648559875],[55.24833785000013,20.807413228000158],[55.30290816200013,20.971485901000147],[55.34462359900013,21.096908734000106],[55.35747847500008,21.135558573000125],[55.410188436000084,21.29446360300001],[55.459591105000214,21.44303334600006],[55.503826131000125,21.576151836000136],[55.54123986800019,21.688651428000114],[55.57007531800011,21.775416158000084],[55.58857548000017,21.831226705000134],[55.59519006400015,21.85101877900003],[55.600171397000196,21.866059974000038],[55.63756473800018,21.97896962500009],[55.637047973000136,22.001913961000028],[55.626712687000094,22.023773092000155],[55.57358931500019,22.105938619000185],[55.49276737500023,22.2307888800001],[55.41204878800008,22.35569081700005],[55.33112349500013,22.480592754000085],[55.2504049070001,22.605494690000015],[55.186842895000126,22.703576559000066],[55.197591593000226,22.849459127],[55.1912870690002,22.99536753400004],[55.1912870690002,22.995470886000177],[55.194801066000046,23.025081482000033],[55.22591027900014,23.121251322000045],[55.32109826600018,23.275092061000137],[55.34321578000018,23.336276957000067],[55.364093058000066,23.43601247200017],[55.37525516700012,23.469343771000027],[55.39396203600009,23.49518198600005],[55.39416874200006,23.49528534000008],[55.431479126000085,23.532931620000014],[55.44532840900015,23.552258607000155],[55.478297974000185,23.676359559000087],[55.487393025000046,23.69325775200015],[55.53410852000016,23.756768087000026],[55.538345988000195,23.770048930000044],[55.53514204900014,23.84588409400014],[55.53059452300013,23.874667867000156],[55.51457482900017,23.896604512000025],[55.478297974000185,23.916577454000148],[55.461554810000074,23.93055592900005],[55.452769816000085,23.948565166000137],[55.45680057800004,23.963163758000107],[55.49979537000016,23.970605164000016],[55.54227339700017,23.985436299000142],[55.561703735000066,23.995228984000036],[55.59105594900015,24.01000844300013],[55.618341105000155,24.020137025000096],[55.646866496000115,24.025020447000102],[55.680042765000195,24.02427113900002],[55.71259891800016,24.019232687000123],[55.72799849500015,24.019594421000036],[55.74443160000013,24.02527882900007],[55.762414998000196,24.02814687100006],[55.78845992000018,24.009569194],[55.80706343600011,24.00747629900006],[55.92354211400018,24.05114288300011],[55.98679406800008,24.065379740000154],[55.99785282400014,24.081270244],[55.9607491460001,24.142429301],[55.948966919000064,24.184829814000025],[55.93315393100008,24.220719096],[55.90318160000007,24.232242940000035],[55.84716434800011,24.21141733800006],[55.830317831000144,24.21227],[55.76768599500022,24.22487904900011],[55.75569706200005,24.2303309120001],[55.75414677000006,24.24547210700011],[55.762104940000114,24.262964579000155],[55.80096561700006,24.326268209000077],[55.80737349500012,24.34078928700002],[55.81088749200015,24.389235941000077],[55.80861372900003,24.39763336200015],[55.80106896900011,24.406470032000144],[55.78101851400007,24.418872376000124],[55.7746106370001,24.425900371000026],[55.77140669800022,24.44109324200015],[55.77368046100017,24.495250143000177],[55.77368046100017,24.49530181900009],[55.76117476400005,24.537443949000032],[55.7598311770001,24.55852793400008],[55.76995975800011,24.57240305600014],[55.784015747000154,24.58632985500013],[55.79021691900007,24.619867859000053],[55.81822554600014,24.643380636000032],[55.81491825400016,24.662733460000183],[55.799981385000166,24.693258293],[55.79476444500008,24.70391957700015],[55.79269738800022,24.72229054800006],[55.79703820800009,24.75954925500018],[55.79703820800009,24.778359477],[55.78866662600015,24.855202332000157],[55.799105265000065,24.886104838000062],[55.82938765500009,24.921167298000015],[55.85782570100011,24.944850718000097],[55.8621505130001,24.94845245400002],[55.89698042800014,24.96860626199999],[55.9354276940002,24.977727152000067],[55.975872913000075,24.972112462000112],[55.978422486000085,24.97175852500005],[56.00560428900004,24.9561780800001],[56.01697310400007,24.92661916200008],[56.025252234000135,24.88256236500017],[56.029272095000096,24.861170959],[56.00529423000009,24.876983948000188],[55.992375122000084,24.883004252000134],[55.978422486000085,24.886104838000062],[55.96085249800009,24.881247254000144],[55.95764855900015,24.868664042000134],[55.964779907000064,24.853858744000107],[56.002090291000194,24.82300791400003],[56.031545858000214,24.754149068000018],[56.0621383060002,24.731773173000036],[56.07626952200016,24.729972135000153],[56.077951294000144,24.729757792],[56.09913863200009,24.730507100000082],[56.118258912000066,24.735416362000038],[56.12725061,24.745699972000025],[56.13334842900011,24.762830709000085],[56.15484582500014,24.78670522100016],[56.171175577000064,24.823989766000082],[56.17136626700013,24.824068785000136],[56.186265096000085,24.830242615000188],[56.22367883300009,24.83448008300014],[56.2416622320002,24.84243825300011],[56.27468280600013,24.871949287000078],[56.280316203000126,24.876983948000188],[56.30832482900021,24.89517405200003],[56.31359582600007,24.90507008900012],[56.314277597000086,24.91196217600016],[56.316053243000084,24.929912347000155],[56.319280233000114,24.96253428200005],[56.32445085900011,24.967938686000092],[56.32899540200006,24.972688701],[56.38331139400006,24.978216864],[56.405446811000076,24.89728424700003],[56.469574415000096,24.775336005000142],[56.480316602000094,24.765122789000102],[56.48682701900011,24.741848049000097]]],[[[56.34912290300016,25.2940245810001],[56.3443754190001,25.266527936],[56.31642574400009,25.253354775000034],[56.29314974300016,25.245846388000146],[56.28176314300012,25.236910299],[56.25220422400017,25.217634990000146],[56.23577111800009,25.2111754350001],[56.21995813000009,25.215257874000102],[56.20762458100015,25.220835160000078],[56.20612290300007,25.23059606300008],[56.208375419000184,25.25537374200009],[56.235126258000065,25.26747593300011],[56.24488716200014,25.277987676000137],[56.238880452000075,25.286246902000144],[56.2356677650001,25.296286519000105],[56.23362458100015,25.312526258000062],[56.26062458100009,25.331075419000072],[56.29068832500016,25.327543033],[56.3093687090001,25.301327936000163],[56.34912290300016,25.2940245810001]],[[56.259578304000144,25.275981892000104],[56.26302625800022,25.249222903000103],[56.282978993000164,25.255476134000116],[56.28832793600017,25.27192625800008],[56.27381171300007,25.281289265000012],[56.26507541900011,25.28117541900012],[56.259578304000144,25.275981892000104]]],[[[56.369965040000146,26.38597239800002],[56.383636915000096,26.358710028000118],[56.399099155000016,26.36790599200016],[56.40414472700015,26.372300523000078],[56.41163170700022,26.36493561400006],[56.40691165500013,26.357367255000113],[56.40650475400011,26.354803778000118],[56.40870201900012,26.352362372000172],[56.41163170700022,26.34503815300017],[56.42107181100002,26.352118231000034],[56.42693118600019,26.349595445000105],[56.43189537900011,26.342962958000058],[56.43897545700011,26.337591864],[56.462168816000116,26.331854559000035],[56.47437584700012,26.330796617000157],[56.48731530000012,26.33136627800003],[56.48519941500009,26.33588288],[56.4817814460001,26.347357489000117],[56.479828321000156,26.351874091000084],[56.500987175000056,26.358710028000118],[56.5110783210001,26.333482164000046],[56.50896243600019,26.323716539000102],[56.49496504000015,26.322739976000133],[56.469574415000096,26.32391998900006],[56.452810092000185,26.318345445000045],[56.42286217500012,26.294623114000146],[56.40626061300017,26.284898179],[56.40748131600017,26.284857489],[56.407237175000056,26.279120184000035],[56.398610873000024,26.268703518000123],[56.42090905000006,26.247626044000025],[56.432302280000016,26.239447333000026],[56.44581139400012,26.235174872000087],[56.454925977000094,26.239325262000037],[56.46534264400011,26.247259833],[56.47624759200008,26.249172268000066],[56.48731530000012,26.235174872000087],[56.468760613000114,26.20551178600006],[56.45964603000019,26.202093817000062],[56.453298373000074,26.221502997000144],[56.44304446700007,26.22044505400011],[56.431976759000094,26.221502997000144],[56.4358016290001,26.211615302000055],[56.4368595710001,26.20526764500012],[56.4353947270001,26.200140692],[56.431976759000094,26.194240627000067],[56.44459069100017,26.182359117000104],[56.45972741000017,26.174261786],[56.47291100400011,26.164007880000057],[56.479828321000156,26.14581940300017],[56.468109571000156,26.145982164000046],[56.45736738400015,26.148423570000162],[56.44776451900005,26.153143622000087],[56.43897545700011,26.160101630000085],[56.424571160000106,26.15379466400013],[56.41244550900015,26.158433335000055],[56.40495853000007,26.17059967700014],[56.40414472700015,26.186753648000103],[56.3982853520001,26.183417059000178],[56.383148634000094,26.176988023000078],[56.37745201900012,26.173732815000033],[56.37696373800023,26.184393622000144],[56.378916863000114,26.192531643000066],[56.383636915000096,26.198065497000087],[56.39112389400006,26.201076565000093],[56.368418816000116,26.204535223000093],[56.34359785200015,26.191392320000134],[56.32878665500018,26.17283763200011],[56.33594811300022,26.160101630000085],[56.330902540000096,26.149318752000067],[56.32976321700008,26.137111721000093],[56.33171634200019,26.124212958000083],[56.33594811300022,26.111639716000084],[56.34473717500012,26.131822007000107],[56.353037957000055,26.142645575000113],[56.36378014400012,26.14581940300017],[56.37012780000012,26.139471747000144],[56.371104363000114,26.127834377000127],[56.36833743600001,26.114894924000126],[56.36378014400012,26.10488515800013],[56.38331139400006,26.09747955900015],[56.472992384000094,26.098618882],[56.46436608200011,26.085353908000073],[56.449229363000114,26.07355377800009],[56.418304884000094,26.057074286000116],[56.38917076900012,26.047105210000108],[56.380137566000116,26.038234768000066],[56.383636915000096,26.02228424700014],[56.40886478000007,26.034369208000054],[56.42286217500012,26.023138739000057],[56.423350457000105,26.004624742000047],[56.400401238000114,25.99046458500011],[56.40503991000011,25.980454820000045],[56.418304884000094,25.96393463700015],[56.42212975400011,25.956610419000143],[56.43116295700011,25.95270416900017],[56.453298373000074,25.94717031500015],[56.44548587300019,25.942450262000033],[56.442637566000116,25.939276434000178],[56.43897545700011,25.926092841000028],[56.42416425900009,25.933172919000082],[56.40788821700019,25.93740469],[56.39332116000017,25.93585846600017],[56.383636915000096,25.926092841000028],[56.39942467500006,25.902329820000134],[56.39258873800023,25.880438544000086],[56.37614993600002,25.859279690000093],[56.36378014400012,25.83795807500003],[56.362640821000156,25.83063385600012],[56.36378014400012,25.80687083500011],[56.34400475400017,25.789536851000136],[56.32740319100011,25.762396552000112],[56.3162541020001,25.74957916900017],[56.30176842500006,25.741766669000086],[56.30176842500006,25.762884833],[56.28793379000015,25.741603908000016],[56.273773634000094,25.70913320500013],[56.26661217500006,25.672593492000185],[56.273773634000094,25.639308986000103],[56.27905523463928,25.627445697787252],[56.237528117000096,25.616577047000064],[56.22150842300002,25.61383819600009],[56.20579878700008,25.61776560400007],[56.19877079200015,25.625258687000027],[56.18884891800016,25.645412496000073],[56.17985721900013,25.65207875599999],[56.15639611800006,25.655902812000036],[56.15249605900012,25.65796117700007],[56.15081506400023,25.658848369000125],[56.14513065600008,25.670837301000077],[56.14037642400009,25.715537415000043],[56.14120324800009,25.73269399100009],[56.15195194500015,25.74313262900013],[56.164871053000155,25.752176005000095],[56.17200240100007,25.76525014300013],[56.167351522000125,25.777704163000024],[56.144097127000094,25.805919495000083],[56.13965295400007,25.822972717000127],[56.14451053900021,25.837907206000082],[56.16383752400017,25.862453512000158],[56.17055546100019,25.876819560000154],[56.17468957500009,25.96652984600003],[56.18130415900012,25.996243795],[56.1834745690002,26.014537252000153],[56.17841027800014,26.03500111900003],[56.16270064300007,26.073551737000017],[56.15133182800017,26.074791972000142],[56.100585571000096,26.062854716000018],[56.077396672527215,26.061048175440746],[56.07740319100017,26.061061916000185],[56.07748457100015,26.06134674700003],[56.082041863000114,26.070705471000064],[56.09148196700019,26.10651276200015],[56.15772545700005,26.201076565000093],[56.181813998000194,26.24599844],[56.19190514400005,26.255072333],[56.208262566000165,26.26308828300013],[56.20915774800008,26.25755442900011],[56.208262566000165,26.24404531500015],[56.21989993600018,26.227728583000115],[56.216807488000114,26.22211334800012],[56.212412957000225,26.207831122000027],[56.21989993600018,26.207831122000027],[56.22950280000006,26.21678294500005],[56.25554446700002,26.218085028000147],[56.26075280000006,26.22459544500005],[56.266856316000116,26.22748444200009],[56.27995853000019,26.223089911],[56.29184004000015,26.211859442],[56.29493248800023,26.194240627000067],[56.30193118600019,26.205308335000108],[56.30884850400011,26.204738674000126],[56.31739342500011,26.200628973],[56.32911217500012,26.201076565000093],[56.356293165000096,26.21914297100001],[56.36695397200006,26.221502997000144],[56.39747155000012,26.21385325700014],[56.40414472700015,26.21474844000012],[56.40691165500013,26.22313060099999],[56.40235436300006,26.232082424000012],[56.39454186300006,26.239162502000067],[56.387380405000016,26.24201080900012],[56.36784915500007,26.244086005000142],[56.35572350400017,26.24339427299999],[56.34685306100019,26.23859284100011],[56.3411564460001,26.232326565000065],[56.331309441000116,26.223456122000115],[56.31959069100011,26.217922268000095],[56.3084416020001,26.221502997000144],[56.30827884200002,26.232611395],[56.31592858200005,26.274644273000074],[56.31592858200005,26.290432033000016],[56.34522545700011,26.269232489000114],[56.35840905000006,26.26496002800009],[56.36378014400012,26.27952708500014],[56.35906009200019,26.28733958500011],[56.347829623000194,26.29743073100009],[56.333994988000114,26.30613841400016],[56.32227623800011,26.30963776200015],[56.326508009000094,26.31891510600012],[56.33204186300022,26.320746161],[56.33814537900011,26.320705471],[56.34400475400017,26.32391998900006],[56.356293165000096,26.337591864],[56.36182701900006,26.34951406500012],[56.36052493600007,26.37128327],[56.36378014400012,26.38597239800002],[56.369965040000146,26.38597239800002]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Pakistan","sov_a3":"PAK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Pakistan","adm0_a3":"PAK","geou_dif":0,"geounit":"Pakistan","gu_a3":"PAK","su_dif":0,"subunit":"Pakistan","su_a3":"PAK","brk_diff":0,"name":"Pakistan","name_long":"Pakistan","brk_a3":"PAK","brk_name":"Pakistan","brk_group":null,"abbrev":"Pak.","postal":"PK","formal_en":"Islamic Republic of Pakistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Pakistan","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":11,"pop_est":176242949,"gdp_md_est":427300,"pop_year":-99,"lastcensus":1998,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"PK","iso_a2":"PK","iso_a3":"PAK","iso_n3":"586","un_a3":"586","wb_a2":"PK","wb_a3":"PAK","woe_id":23424922,"woe_id_eh":23424922,"woe_note":"Exact WOE match as country","adm0_a3_is":"PAK","adm0_a3_us":"PAK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PAK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[67.47779381600006,24.051214911000116],[67.48536217500012,24.048529364000146],[67.48528079500014,24.048488674000154],[67.46517988400014,24.04059479400017],[67.4607853520001,24.02667877800009],[67.45394941500015,24.01341380400008],[67.42693118600012,24.007513739000117],[67.40943444100017,24.013495184000064],[67.3934025400001,24.02806224200016],[67.38542728000002,24.040187893000066],[67.38152103000002,24.046210028000175],[67.37549889400012,24.062730210000055],[67.39039147200018,24.04926178600006],[67.41325931100019,24.048773505],[67.45801842500012,24.062730210000055],[67.47779381600006,24.051214911000116]]],[[[74.7925712480002,37.01515777600012],[74.8243005780001,36.994125468],[74.82450728400008,36.994125468],[74.85323938000006,36.95898549400006],[74.86088749200009,36.946893209000066],[74.86677860500018,36.91655914300013],[74.87235966000011,36.90710235600007],[74.88579553300016,36.91144317600005],[74.89199670400015,36.920977478000125],[74.9007816980002,36.949916280000096],[74.91049686700013,36.96255116800005],[74.92496626800019,36.9708710740001],[74.94232955000021,36.97699473100015],[74.97684940600018,36.98428110800013],[75.01446984800012,36.984487813],[75.10014937300011,36.994125468],[75.11854618400011,36.99123158800001],[75.13280887900007,36.98469451900014],[75.16123091600011,36.964204814000155],[75.19513065600019,36.9488827520001],[75.31346968600016,36.92875478100014],[75.35129683500023,36.91578399700002],[75.37796187400008,36.894286601000154],[75.39449833200015,36.864262594000124],[75.40142297300022,36.82586700400019],[75.40338667800009,36.784784241000025],[75.41051802600012,36.74731882700014],[75.43191206900022,36.72292755100003],[75.4925802000001,36.72070546500011],[75.49888472500001,36.727630107],[75.50188195800015,36.737965393000096],[75.5079797770002,36.74762888700003],[75.57050826100007,36.766749166000025],[75.64977990700001,36.75403676400007],[75.72874149600008,36.723185934000085],[75.79054650900017,36.687839254],[75.84976770000017,36.64474111000008],[75.87477909400016,36.619471334000096],[75.97658166500011,36.46263336200009],[75.97681139900013,36.46175599500016],[75.98108273200015,36.445443571000126],[75.98743371600008,36.421188863000125],[75.96862349500006,36.34181386400017],[75.9688302000002,36.301971334000044],[75.97658166500011,36.28698516900006],[76.00169641100015,36.26145701100013],[76.01192834500014,36.24812449100001],[76.01440881400012,36.230399475000084],[76.00159305800011,36.22213124600013],[75.98340295400007,36.21541331000013],[75.97007043500017,36.20233917200006],[75.96914025900011,36.19169382800008],[75.97740848800007,36.17376210500011],[75.97658166500011,36.16275502600003],[75.97151737500016,36.155003561000015],[75.96417932100015,36.14983591800011],[75.91456994700016,36.12389434800015],[75.90144413300013,36.11361073800008],[75.89431278500015,36.09738433900007],[75.89999719300013,36.06348459900015],[75.92232141100007,36.03165191700002],[75.95301721200022,36.00726064100017],[75.98433313000012,35.99563344400011],[76.06143436700009,35.99160268200002],[76.08995975700012,35.978115133000145],[76.11466109200013,35.94178660100009],[76.12375614400011,35.90349436500015],[76.12778690600013,35.86210154200005],[76.13812219200011,35.82665151000002],[76.16602746600019,35.80623931900005],[76.18979862500007,35.8049990840001],[76.2371342360001,35.81548940100008],[76.26038863200013,35.81781484],[76.2805424400001,35.81424916700003],[76.29656213400007,35.80949493500013],[76.31196171000013,35.809649963000155],[76.34885868300009,35.830992330000164],[76.36642867100014,35.83088897700004],[76.38410201000013,35.82820180300003],[76.40311893700013,35.830992330000164],[76.41035363800009,35.83683176700008],[76.42244592300008,35.854298401],[76.4320577390001,35.86049957300018],[76.44290979000013,35.86329010100014],[76.45396854700002,35.86478871700014],[76.47649947100015,35.86525380500008],[76.50016727800019,35.87150665299999],[76.53716760300014,35.902512513000104],[76.55546105900012,35.89786163400005],[76.56527958200016,35.86546051100014],[76.55112024000013,35.784018453000115],[76.57075728400017,35.751255595000096],[76.60424361200013,35.73570098900008],[76.67669397000006,35.71379018200004],[76.70904341700006,35.69404978500016],[76.73291792900014,35.6666095990001],[76.7454236250002,35.65503407800015],[76.7634070230001,35.647075907],[76.77735074100005,35.646111714000185],[76.91316086450016,35.37827685550003],[77.04897098800019,35.11044199700011],[77.0424261470001,35.10701374400013],[77.02313277200008,35.086334941000146],[77.02706018000006,35.06209869400005],[77.03522505700008,35.03450347900015],[77.02861047400009,35.003394267000104],[77.01310754400006,34.98639272100009],[76.95295617700012,34.946550191000156],[76.93383589700014,34.92887685200016],[76.92112349500016,34.920711975000145],[76.9059306230001,34.92314076800001],[76.8795756430001,34.937093404],[76.8526005460002,34.94334625300009],[76.8170471600001,34.940762431000095],[76.78201053900007,34.93089223300002],[76.75761926300007,34.91513092000004],[76.74955773900014,34.89208323200016],[76.75327844200015,34.83833974300016],[76.7438733320001,34.81927113800016],[76.65261275200012,34.74697581000013],[76.63959029100008,34.741136374000135],[76.55318729700011,34.72584014900009],[76.53582401500009,34.726201885000094],[76.51990767400017,34.73111114500013],[76.47649947100015,34.75777618400018],[76.43815555800015,34.762892151000145],[76.39991499800007,34.75074819000015],[76.26204227700006,34.6846540320001],[76.1549687090002,34.661658021000065],[76.12179244000018,34.66088287400005],[76.05833378100013,34.683413798000075],[76.02340051300015,34.67716095000016],[76.00748417200012,34.665120341000105],[75.98671024600017,34.63602651000009],[75.97337772700016,34.622332256000064],[75.96624637900013,34.6190766400001],[75.93927128100007,34.612048646000076],[75.87395227000016,34.57137929300005],[75.81617801900015,34.52166656500013],[75.7958175050002,34.50792063500007],[75.77711063700022,34.503812358000076],[75.73483931500002,34.50861826700016],[75.71365197700018,34.50851491300015],[75.65556766800009,34.49696523100003],[75.61164270100008,34.498360494000096],[75.34809289600017,34.55721995099999],[75.3069584560001,34.57401479100003],[75.26747766100007,34.59830271400013],[75.25135461500005,34.613082174000155],[75.23688521300002,34.63189239500015],[75.22456402800006,34.63861062700012],[75.22454384500023,34.63862163200007],[75.212907349,34.644966532000026],[75.17632043500006,34.645379944000055],[75.11100142400002,34.633649394000045],[75.0177771400001,34.629721985000074],[74.66493046100007,34.688323060000116],[74.41212935400003,34.764494121],[74.34887740000008,34.77343414300013],[74.28583215300014,34.76888661700009],[74.22175337700011,34.74775095600013],[74.14682255100016,34.701862285000075],[74.12088098100011,34.6908552040001],[73.9622343350002,34.66816925100012],[73.94859175600018,34.66274322500006],[73.91934289500014,34.64253774100016],[73.91748254400014,34.619283346000046],[73.92544071400012,34.59339345400012],[73.92595747900005,34.5649714150001],[73.91097131300009,34.54497263600013],[73.8631189380001,34.51706736300015],[73.8469958900001,34.49432973300018],[73.8469958900001,34.494174703000155],[73.84554895000011,34.45647674600012],[73.84038130700011,34.44441029900004],[73.8315963130001,34.43640045200006],[73.80679162600009,34.4251608280001],[73.79624963400013,34.4185462440001],[73.77981652900016,34.3960669960001],[73.77485559100009,34.370952250000165],[73.78271040900015,34.346819357000115],[73.80420780500017,34.32749237100016],[73.82911584500002,34.31534840900015],[73.8533004150001,34.3074160770001],[73.87903527900019,34.30428965300014],[73.90745731600012,34.306795960000144],[73.93773970500015,34.30421213800004],[73.95437951700009,34.28718475300012],[73.97670373600013,34.23754954000013],[73.99055301900009,34.21850677500005],[73.99830448400022,34.19680267400015],[73.99541060400023,34.17644215900013],[73.97670373600013,34.16155934699999],[73.9168624270001,34.13525604200014],[73.89329797400009,34.114740499000064],[73.88440962700017,34.08419972800006],[73.8937113850001,34.054304911000045],[73.91624231,34.02794993100018],[73.94580122900007,34.00978566500013],[73.97670373600013,34.00459218300013],[74.0450199790001,34.01942332000006],[74.06527714000012,34.01833811500016],[74.11840051300005,34.00252512700017],[74.1542639570001,34.004101258],[74.19209110500017,34.011852722000114],[74.22836796100009,34.0128862510001],[74.25968387800006,33.99438608900006],[74.27229292800016,33.962139995000186],[74.26247440600011,33.92994557800013],[74.23953007000013,33.90100677600019],[74.21255497200009,33.878424174000045],[74.17751835100009,33.85754689600015],[74.1422750240001,33.84424021500014],[74.03458134000006,33.828608093000106],[74.01132694600003,33.81046966600009],[73.97670373600013,33.75892242499999],[73.97070927000013,33.74706268300015],[73.96616174300017,33.734531148000045],[73.96306115700023,33.721560364000126],[73.9607873950001,33.692285665000085],[73.96306115700023,33.676756897000146],[73.96833215400007,33.66208079000016],[73.97670373600013,33.64838653600005],[74.02424605300004,33.61425425200015],[74.08811812300021,33.585289613],[74.14155155500012,33.54937449100005],[74.15777795400007,33.49423573800006],[74.13628055800008,33.418013],[74.1054814050001,33.34520090700006],[74.09597294100016,33.32848358200011],[74.08512089100012,33.314324240000175],[74.07199507700014,33.302283631000094],[74.05535526500009,33.292025859000105],[74.0178381760002,33.279494324000105],[74.00171512900013,33.27016672800009],[73.99179325300022,33.252570903],[73.98848596200011,33.208620097000065],[74.00233524600011,33.17769175200006],[74.02941369700008,33.15415313700005],[74.06579390500015,33.13260406500011],[74.09845341000013,33.10482798300016],[74.15385054600007,33.040180766],[74.19085087100021,33.02209401500009],[74.28397180200014,33.008813171000085],[74.31125695800014,32.99429209500012],[74.32200565600007,32.972045390000076],[74.3244861250001,32.921402486000105],[74.33668176300014,32.87013946600008],[74.33378788300016,32.84926218700012],[74.32293583200013,32.83052948000012],[74.31698854100026,32.82306731400017],[74.31593865300007,32.82175000200006],[74.30650272600016,32.809910584000036],[74.3163212480001,32.79107452400011],[74.32934370900014,32.77642425600011],[74.34619022600006,32.766889954000035],[74.36768762200009,32.763530986000134],[74.38639449100006,32.767768454000176],[74.4189506430001,32.78461497100015],[74.43869104000007,32.78598439500002],[74.45533085200006,32.77859466600002],[74.48447635900013,32.753531596000116],[74.50090946500009,32.74601267500016],[74.52095992000014,32.74528920500016],[74.57377323400007,32.752549744000035],[74.5934102780001,32.7578724160001],[74.61408085100012,32.770403951],[74.62203902200011,32.78541595400016],[74.6262764890001,32.802650045000135],[74.63588830500007,32.82208038400013],[74.65356164600016,32.83742828400001],[74.67175175000008,32.84058054600014],[74.68529097500007,32.83122711200012],[74.68911503100011,32.80882537800012],[74.68229374200016,32.78732798300008],[74.65697229000008,32.74534088200009],[74.64973759000011,32.72314585400015],[74.65015100100013,32.70123504700011],[74.65728234900004,32.66059153300016],[74.65604211400014,32.640670268000136],[74.64798059100022,32.623617046],[74.63692183400022,32.606253764000186],[74.62958378100015,32.58808949800006],[74.63258101400007,32.56816823300015],[74.66255334500008,32.49837921200016],[74.68932173700009,32.471352438000125],[74.72497847500003,32.460810445000064],[74.76352909300013,32.46267079700009],[74.79939253800008,32.4726701870001],[74.83814986200011,32.474866435000095],[74.90698286900007,32.44517832400011],[74.94842736900009,32.44876983600001],[74.99069869000007,32.46336842900017],[75.02366825400011,32.46626230900015],[75.05488081900009,32.45553945000013],[75.09219120300021,32.42933949800012],[75.12598759000011,32.411743673000146],[75.19616418500017,32.39730011000002],[75.23016727700022,32.38019521100007],[75.29840293600009,32.332426605000144],[75.3269055590001,32.31247324600015],[75.35295048000009,32.28438710600012],[75.35904829900014,32.26167531400007],[75.34860966000011,32.242012432000124],[75.31657027200018,32.21074818900003],[75.30840539500016,32.19390167300007],[75.29807011000017,32.15979522700009],[75.29465946500014,32.14889150000012],[75.26334354700012,32.150906881000154],[75.24990767500017,32.14889150000012],[75.2264465740001,32.14207021100016],[75.19575077300006,32.12863433900013],[75.17311649600012,32.109720765000176],[75.1741500250001,32.086828105000066],[75.1613342690001,32.08796498600016],[75.13838993300007,32.09349436400008],[75.12981164600015,32.09023874899999],[75.1189595950001,32.08104034500009],[75.11027795400011,32.07762970000006],[75.10211307800014,32.078094788],[75.04082482900017,32.097990215],[75.02263472500013,32.094682923],[75.03017948400006,32.06641591400002],[75.02015425600015,32.06584747300015],[74.99555627500015,32.06739776600007],[74.98615116400012,32.06321197500013],[74.97850305200015,32.05339345300017],[74.97405887900001,32.04497019500009],[74.96785770700015,32.03789052300006],[74.95566206900011,32.03220611600004],[74.93137414600014,32.02982900100006],[74.90884322100013,32.03189605700014],[74.88910282400016,32.02889882500004],[74.87318648300013,32.01169057200006],[74.8286413980002,32.02543650299999],[74.81127811700011,32.00373240099999],[74.80249312400011,31.96885081],[74.7836829020001,31.94285756500012],[74.76301232900019,31.93898183200018],[74.69841678900009,31.950247295000153],[74.66999475100013,31.904151916000117],[74.65717899600023,31.895676982000126],[74.64105594900016,31.89056101500013],[74.56560835800016,31.840538229000135],[74.5504154870001,31.82699900400014],[74.54080367100019,31.810875956000174],[74.5373930260001,31.78891347300011],[74.53697961400005,31.77573598200003],[74.53511926300004,31.771136780000077],[74.53077844200018,31.767829488000093],[74.5230269780001,31.75847605400004],[74.52116662600005,31.75377349900016],[74.51827274600005,31.74183624300012],[74.5162056880001,31.73739207],[74.51331180900016,31.735118307],[74.50545699000011,31.732017721000044],[74.5032865800001,31.730570781000054],[74.49264123600014,31.714551087000114],[74.48943729700008,31.711192118],[74.49946252400017,31.69987498000002],[74.55558313000014,31.612231751000092],[74.58452193200017,31.517508851000073],[74.61459761600017,31.477821351],[74.61718143700008,31.458907776000146],[74.6119104420002,31.44020090800016],[74.6000248620002,31.424129537000013],[74.58369510900016,31.406559550000125],[74.57160282400017,31.389247945000122],[74.53222538200006,31.30320668500006],[74.5253007410001,31.2802106730001],[74.52509403500002,31.235407206000122],[74.50907434100012,31.195668030000135],[74.50638716600017,31.17541086900003],[74.5095911060001,31.156083883000164],[74.51486210100008,31.141821187000104],[74.5235437420001,31.1293154910001],[74.53677290800013,31.11515614900004],[74.55310266100017,31.108954977000067],[74.59692427600007,31.115776266000022],[74.6169747320001,31.115259501000182],[74.63196089700008,31.10750803700007],[74.65025435400017,31.093141989000078],[74.65883264100009,31.083788554000034],[74.60095503700003,31.056606751000132],[74.57945764200011,31.042705791000156],[74.5642647710001,31.02503245000015],[74.56405806500001,31.00436187800015],[74.54876184100007,30.99216624000003],[74.53480920500007,30.976249899000106],[74.51930627500005,30.962452291000076],[74.49946252400017,30.95650950100004],[74.47724165900016,30.95609609000003],[74.45853479000007,30.95340891600001],[74.44158492000015,30.94617421500014],[74.42432499200007,30.932324931000082],[74.41336958800011,30.915065003000095],[74.40913212100023,30.90100901300015],[74.40127730300011,30.89310251900012],[74.37967655500015,30.89449778300009],[74.35363163200006,30.901112366000103],[74.34246952300012,30.901939189000117],[74.32975712100009,30.899613750000086],[74.31921512900011,30.893412578000024],[74.31074019400009,30.884472555000073],[74.30402225700018,30.874033915000137],[74.31136031100007,30.85594716400011],[74.30019820200002,30.838170471000083],[74.27994104000001,30.824682923000026],[74.26020064300003,30.819411926],[74.25668664600013,30.81527781200016],[74.2657816980001,30.795434062000183],[74.26671187300022,30.788354391000055],[74.25916711400005,30.78101633700005],[74.24407759700009,30.771249491],[74.23570601500009,30.764118144000165],[74.21513879500006,30.73745310500011],[74.19880904200008,30.724999084000146],[74.19116093000011,30.71704091400009],[74.18464969900005,30.696835430000093],[74.17007694500009,30.68717193600015],[74.1667696530001,30.679110413000085],[74.16366906800013,30.6648993940001],[74.15571089700009,30.65957672100016],[74.1326632080002,30.655494283000152],[74.11147587100007,30.646244202000148],[74.09586958900009,30.637149150000155],[74.08222701000008,30.625883687],[74.06744755100007,30.610535787000128],[74.0571122640001,30.59157053700009],[74.05824914500008,30.57446563700013],[74.06145308400008,30.55560374000011],[74.0575256760001,30.53136749300013],[74.04408980400015,30.518655091000156],[74.00440230300009,30.508939922000035],[73.9960307210001,30.50098175100008],[73.98982955000011,30.487804261000107],[73.93908329300021,30.42605092400011],[73.92926477000006,30.41907460600011],[73.91665572100013,30.417162578],[73.89991255700008,30.422123515000134],[73.90208296700004,30.415612284000172],[73.90425337800016,30.401452942000116],[73.90611372900017,30.394838359000136],[73.8876135660001,30.396543681000093],[73.86766646300012,30.387448629000044],[73.85175012200008,30.37266916900002],[73.84523889200014,30.356959534000122],[73.8423450110001,30.352980448000054],[73.89164432800013,30.329777731000046],[73.91190148900014,30.303784485],[73.93463912000013,30.261048076000083],[73.94890181500008,30.21727813799999],[73.94683102300009,30.204076838],[73.94435428900007,30.18828765900012],[73.77826623500013,30.067313131000148],[73.73971561700014,30.048451233000108],[73.55781457500021,30.012536113000163],[73.38521529100015,29.942307841000076],[73.3703324790001,29.927321676000116],[73.32744104000014,29.805210266000028],[73.28475630700015,29.68374481300013],[73.23287316900021,29.536596171000138],[73.17799279800013,29.443449402000127],[73.12890018800007,29.360302023000045],[73.05086877500017,29.228217061000137],[72.98865035000009,29.15462982200016],[72.96291548700017,29.11682851199999],[72.93035933400014,29.047685445000113],[72.91816369600022,29.032854310000076],[72.9015238850001,29.022622376000086],[72.77253951000009,28.96334950700019],[72.6585413010001,28.911001282000157],[72.52562951600007,28.84991973900016],[72.38217574000012,28.784006450000064],[72.3545805260002,28.767185771000083],[72.28026981600013,28.687164816000134],[72.25649865700015,28.645591125000138],[72.19779423100007,28.44487986300011],[72.17764042200022,28.397053325000044],[72.1499418540001,28.35377431300016],[72.11097782400012,28.31762664800014],[71.98819462100008,28.228097230000017],[71.90830285600006,28.13557057700008],[71.89693404100015,28.115545959000045],[71.89155969300012,28.09709747400002],[71.87998417200006,27.97490855000002],[71.87440311700001,27.95968984000008],[71.86086389200014,27.950207215000106],[71.701390422,27.9067731730001],[71.56072717300012,27.868532614000014],[71.4771147060001,27.862434794000148],[71.39779138200007,27.868377584000157],[71.31144006300005,27.86171132400007],[71.22632897900016,27.84535573400002],[71.15067468300018,27.822411398],[71.02758142100006,27.768047790000125],[70.91378991700005,27.717818299000086],[70.8315727130001,27.701462707000033],[70.7617578530002,27.709782613000087],[70.71039147900015,27.741150207000103],[70.67173750800006,27.79109548000018],[70.64073164900006,27.854786682000093],[70.6376310630001,27.87421702100006],[70.64161014800018,27.911269022000127],[70.63318688900009,27.931629537000063],[70.62119795800001,27.944135234000058],[70.59287927300012,27.964495748],[70.55980635600021,27.998447164000126],[70.5348983160001,28.015965474000083],[70.50678633700014,28.028962097000104],[70.47722741700007,28.03725616500016],[70.45624678600021,28.039788310000134],[70.43691980000008,28.035344137000052],[70.39826582900017,28.02164988200003],[70.35950850500008,28.016327210000085],[70.34193851700016,28.011469625000146],[70.32385176600022,28.000436707000162],[70.26773116000018,27.94527211600017],[70.19900150500021,27.90095957500013],[70.18902784200012,27.89179049600007],[70.10195316600007,27.811740214000096],[70.09068770400009,27.79355011000014],[70.01689375800007,27.600590312000023],[69.99353601100007,27.57108306900001],[69.90806319200007,27.497289124000147],[69.84801517700006,27.410369365000136],[69.73060632300016,27.310323792000148],[69.66611413500013,27.27001617400019],[69.5755770260001,27.188419088000117],[69.53444258600015,27.12558054600005],[69.50757084200015,27.05008127900014],[69.48597009300008,26.926832988000154],[69.4650928140002,26.807770487000095],[69.4728442790001,26.766584371000118],[69.504160197,26.735165101000078],[69.6593962000002,26.677700908000148],[69.7002205810002,26.65299957300006],[69.77225752700016,26.595070292000017],[69.81556237800012,26.580290833],[70.05606449400008,26.58907582600007],[70.09368493700012,26.580394186000106],[70.12960005700003,26.562514140000143],[70.15807377100012,26.530113017000147],[70.16293135500021,26.493319397000064],[70.15698856600008,26.410947164000092],[70.16050256400015,26.3713113400001],[70.15714359600022,26.353999736],[70.14794519100022,26.33322581000006],[70.14246748900015,26.31369211800016],[70.14401778200008,26.294313457],[70.15161421800022,26.25405751600006],[70.14691166200006,26.217418925000104],[70.13202885000013,26.18047027600006],[70.07828536000014,26.0996483360001],[70.07389286300022,26.08311187800011],[70.07291101100006,26.04745513900012],[70.0642810470001,25.9955203250001],[70.0646427820001,25.980327454000175],[70.08324629700004,25.929942933000078],[70.11497562700018,25.881728821000095],[70.15424971500006,25.839405823],[70.1955908620001,25.806953024000066],[70.21398767100018,25.78633412700016],[70.23445153800006,25.73098866800005],[70.24923099800017,25.707682597000098],[70.26457889800022,25.69729563400007],[70.30369795700007,25.684583232000037],[70.36012862200018,25.673472799000095],[70.47722741700007,25.67631500300008],[70.51665653500001,25.683859762000125],[70.55443200700009,25.69879425099999],[70.59225915600003,25.70881947900001],[70.63230839000008,25.7013780730001],[70.6538574630001,25.674454651000175],[70.6574748130001,25.633630270000182],[70.65282393400011,25.545883687000057],[70.64662276300012,25.43136871300011],[70.65447758000008,25.39659047500008],[70.6703939210001,25.375558167000165],[70.71049483300007,25.335870667000062],[70.71855635600016,25.310807597000164],[70.723103882,25.287294820000067],[70.7348861090002,25.267347717000163],[70.76837243700012,25.233086243000127],[70.83141768400006,25.18332183900013],[70.84857425900012,25.16332306],[70.85989139800009,25.139448548000118],[70.89332605000007,25.001885885000135],[70.91523685700022,24.946617941000014],[70.94303877700006,24.894063009000135],[71.00319014500022,24.80820261700002],[71.03693485500017,24.720740255000138],[71.05663232900017,24.692819747000144],[71.0638582770001,24.682577209000083],[71.04334273300006,24.669063823],[70.97714522300006,24.639685771000032],[70.96277917500007,24.615785421000123],[70.95482100400008,24.58452118000004],[70.95776656100006,24.556021627000074],[70.97714522300006,24.540389506000125],[70.98086592600006,24.534730937000102],[70.98189945500022,24.5285297650001],[70.98050419100016,24.521889344000115],[70.97714522300006,24.515068054000054],[70.97476810700019,24.494965922000105],[70.9732178140001,24.487240295],[70.97311446100016,24.479643860000053],[70.97435469500007,24.472202453000122],[70.97714522300006,24.46494191500012],[71.00008955900009,24.45290130600007],[71.04008711800006,24.446777649000108],[71.07502038600015,24.43641652500018],[71.08277185000023,24.41150848400012],[71.07305668100011,24.402103374000077],[71.02510095200009,24.386290385000066],[71.01435225500003,24.375205790000066],[71.00711755400019,24.363966167000015],[70.99667891500016,24.356602275000014],[70.97714522300006,24.35724823],[70.95533776900012,24.36590403300012],[70.93632084200007,24.367195943000084],[70.91771732600009,24.361718242],[70.85653243000016,24.3238135780001],[70.84092614800012,24.305830180000026],[70.84454349800008,24.28828603100014],[70.85756595900014,24.271672058000135],[70.8514681390001,24.264876607000176],[70.83410485800006,24.26128509500002],[70.8135893150002,24.25446380700005],[70.7760205490001,24.23668711400002],[70.75545332900012,24.231441956000094],[70.62150801600009,24.241157125000043],[70.58471439600012,24.25790028900009],[70.56766117400016,24.272808940000132],[70.56021976700006,24.287252503000058],[70.55536218300014,24.327017518000062],[70.54564701400007,24.362183330000118],[70.5464738370001,24.37313873300009],[70.55195153800011,24.379365744],[70.5692114660001,24.389881898000123],[70.5752059320001,24.40003631600011],[70.56290694200018,24.424091695000058],[70.52094567900009,24.424918519000144],[70.41635258000004,24.40194834400002],[70.37077396700008,24.372363587000095],[70.35320397900009,24.366265768000048],[70.29853031400015,24.36342356400014],[70.27909997600008,24.355077820000087],[70.24256473800001,24.33060902900006],[70.22277266400008,24.32670745900016],[70.2022054440001,24.325570578000068],[70.14458622300006,24.307897237000144],[70.10970463000015,24.30490000400006],[70.09787072800006,24.298828023000013],[70.08717370700006,24.282549947000078],[70.06298913600008,24.220305685000152],[70.05213708500011,24.202063904000013],[70.01596358300017,24.174055278000097],[69.97203861500006,24.165218608000103],[69.7690535890001,24.162557272000086],[69.71458663000007,24.168577576000118],[69.67055830900014,24.188705546000094],[69.5923201900001,24.26461822600011],[69.56307133000021,24.276762187000102],[69.28081465700015,24.28373850600009],[69.20624556500016,24.25857208300006],[69.16671309400012,24.253171896000097],[69.14821293100013,24.256660055000154],[69.09188562000011,24.281903992000096],[69.06770105000012,24.288441061000086],[69.04847741700021,24.285237121000122],[69.00780806500003,24.264566549],[68.98078129100011,24.255393982],[68.96264286300017,24.257228495],[68.9486902260002,24.27027679500004],[68.92941491800016,24.30236785900017],[68.92197351100006,24.310506897],[68.91318851700007,24.317250671000025],[68.90419681900019,24.320583802000115],[68.89029585800014,24.31947275900002],[68.8850765380001,24.31355580700001],[68.8832678630001,24.305365092000088],[68.88011560100009,24.29735524500002],[68.84890303600017,24.244025167000114],[68.8387744550001,24.23645457000005],[68.81965417500012,24.25030385300012],[68.81381473800015,24.30843984000002],[68.79919030800008,24.329084574000134],[68.7473071690001,24.3311774700001],[68.72591312700015,24.289216207],[68.72555139200009,24.20891103200007],[68.72508630400014,24.10405955],[68.72446618700005,23.965179139000053],[68.64643477400007,23.965695903],[68.54783614100008,23.96631602000015],[68.4315641690001,23.96714284300016],[68.38546879000015,23.960424907000156],[68.35363610900012,23.939289246000115],[68.35384281400016,23.947169902000056],[68.35239587400005,23.956549174000102],[68.34888187700014,23.964610698000097],[68.342629028,23.968563945000152],[68.3304333900002,23.96657440200012],[68.32986494900015,23.958151144000126],[68.33368900500008,23.948048401],[68.33503259300008,23.94099456800008],[68.3259892180001,23.927791239],[68.31405196100016,23.915905661000163],[68.30040938300006,23.9105054730001],[68.2861983650001,23.91637074800009],[68.28004886900013,23.925724183000124],[68.27767175300008,23.93350148600014],[68.27400272600008,23.937687277000077],[68.26392582200006,23.935930277000107],[68.25493412300008,23.929108989000056],[68.25266036000008,23.920091452000104],[68.25307377200008,23.911228943000097],[68.25193689000017,23.90482106600014],[68.25374556500017,23.90277984700019],[68.25793135600011,23.899472555],[68.26036014800016,23.895545146000032],[68.25679447500008,23.891927796000132],[68.25286706500006,23.89169525200016],[68.24304854300007,23.893426412000153],[68.2399479580001,23.89311635300008],[68.2329199630001,23.88911143000008],[68.21503991700015,23.88174753900007],[68.20728845300007,23.87701914500009],[68.18351729300011,23.843300273000054],[68.18303772781033,23.84215840611101],[68.1831160820001,23.843451239],[68.15748131600006,23.90509674700003],[68.1564233730002,23.87400950700011],[68.15748131600006,23.864162502000013],[68.16016686300023,23.85785553600006],[68.16871178500017,23.844794012000094],[68.17058353000013,23.83991120000003],[68.1667586600001,23.820013739000117],[68.14869225400017,23.78091054900007],[68.14332116000011,23.76113515800013],[68.14421634200014,23.743150132000107],[68.15479576900006,23.71430084800009],[68.15748131600006,23.696234442000062],[68.14909915500019,23.694525458000058],[68.13038170700023,23.708197333],[68.10222415500002,23.733832098000065],[68.098887566,23.70929596600014],[68.08171634200019,23.708685614],[68.06275475400017,23.72313060100005],[68.05388431100002,23.743719794000082],[68.0569767590001,23.750962632000025],[68.07105553500017,23.760646877000067],[68.07439212300008,23.764837958],[68.07325280000006,23.783433335],[68.07439212300008,23.788397528000033],[68.08171634200019,23.805650132000054],[68.0882267590001,23.809515692000062],[68.10222415500002,23.809515692000062],[68.10222415500002,23.815741278000118],[68.08838951900006,23.82607656500012],[68.07252037900011,23.84186432500014],[68.05941816500015,23.861883856000034],[68.05388431100002,23.884670315000065],[68.06169681100013,23.911281643],[68.06373131600006,23.923163153000147],[68.04769941500015,23.92121002800009],[68.02418053500011,23.93524811400006],[68.01351972700016,23.939276434000035],[68.04151451900006,23.852240302000055],[68.05388431100002,23.829413153000147],[68.03565514400006,23.792425848],[68.02442467500006,23.774603583000115],[68.01351972700016,23.76854075700014],[68.00798587300002,23.774237372000027],[68.0034285820001,23.785305080000157],[68.0003361340001,23.797308661000088],[67.99927819100017,23.805812893],[67.99415123800023,23.811183986000074],[67.98316491000016,23.809637762000037],[67.97339928500017,23.805243231000034],[67.97193444100017,23.80206940300017],[67.96192467500012,23.804673570000162],[67.95085696700008,23.80890534100008],[67.94166100400011,23.815863348000093],[67.93775475400011,23.82632070500007],[67.93425540500017,23.832993882000107],[67.92603600400011,23.834051825000174],[67.91675866000017,23.83364492400007],[67.90992272200006,23.83624909100017],[67.90463300900015,23.846258856000148],[67.90593509200008,23.859279690000122],[67.89991295700017,23.86758047100001],[67.89193769600008,23.86957428600006],[67.88347415500007,23.864813544000143],[67.86890709700006,23.850490627000067],[67.86451256600004,23.865790106000034],[67.86329186300023,23.90281810100005],[67.85523522200018,23.91193268400015],[67.8491317070001,23.889471747000144],[67.83904056100008,23.823391018000123],[67.83171634200002,23.809515692000062],[67.8025822270001,23.812811591000084],[67.77320397200018,23.821112372000172],[67.7185978520001,23.843695380000142],[67.73072350400011,23.835598049000012],[67.7410587900001,23.82306549700003],[67.74366295700011,23.80878327000012],[67.73226972700016,23.79523346600014],[67.7156681650001,23.791693427000084],[67.69361412900011,23.79344310100008],[67.65658613400015,23.80206940300017],[67.64649498800011,23.8028832050001],[67.63770592500006,23.801743882000054],[67.63160241000017,23.803452867000047],[67.6292423840001,23.81264883000013],[67.63070722700016,23.824774481000034],[67.63428795700023,23.833075262000094],[67.63884524800008,23.840643622000144],[67.64291425900015,23.850490627000067],[67.65105228000007,23.907049872000083],[67.65658613400015,23.91937897300012],[67.65658613400015,23.92560455900009],[67.65202884200014,23.92527903900016],[67.65105228000007,23.926906643000095],[67.6512150400001,23.92975495000003],[67.65040123800011,23.933050848000065],[67.63803144600016,23.91592031500012],[67.63738040500013,23.874253648000078],[67.6292423840001,23.85667552300005],[67.614512566,23.85008372600008],[67.59961998800023,23.8542341170001],[67.58936608200023,23.866522528000147],[67.58838951900006,23.884670315000065],[67.57455488400015,23.871771552000055],[67.56609134200019,23.87645091400016],[67.55811608200017,23.88865794500005],[67.546641472,23.89826080900012],[67.53256269600016,23.8991559920001],[67.53012129000015,23.89126211100013],[67.53589928500011,23.880031643000123],[67.546641472,23.87099844000012],[67.4910587900001,23.883124091000028],[67.47852623800004,23.89150625200007],[67.48804772200018,23.893052476000108],[67.49529056100019,23.892279364],[67.50261478000019,23.892889716000138],[67.5125431650001,23.89826080900012],[67.52051842500006,23.907049872000083],[67.53223717500006,23.929144598000065],[67.54053795700023,23.939276434000035],[67.53052819100004,23.935492255],[67.5198673840001,23.928290106000148],[67.50904381599999,23.923244533000126],[67.49887129000015,23.92560455900009],[67.49691816500008,23.935614325000174],[67.49976647200006,23.95164622600005],[67.50635826900005,23.974025783000073],[67.46363366000011,23.98200104400003],[67.45118248800011,23.987697658000016],[67.4681095710001,24.02195872599999],[67.47820071700008,24.032416083000054],[67.4921981130001,24.028021552],[67.5198673840001,24.04507070500013],[67.52979576900012,24.054917710000055],[67.53305097700016,24.070257880000113],[67.50977623800021,24.052069403000033],[67.4891056650001,24.05410390800013],[67.46729576900006,24.064154364000117],[67.44068444100006,24.070257880000113],[67.38355553500017,24.066799221],[67.35401451900012,24.070868231000148],[67.34131920700023,24.086371161000088],[67.33708743600019,24.118963934000035],[67.32642662900017,24.14378489799999],[67.30030358200023,24.18626536700016],[67.29558353000013,24.199204820000162],[67.29330488400015,24.212225653000147],[67.29232832100016,24.26186758000007],[67.28842207100016,24.269964911],[67.2791447270001,24.281236070000162],[67.28386478000002,24.28790924700006],[67.28931725400017,24.29865143400015],[67.29281660200016,24.302964585000055],[67.28598066500015,24.329575914000102],[67.305918816,24.342840887000033],[67.33643639400006,24.346421617000104],[67.36247806100002,24.34393952000006],[67.34253991000011,24.353827216000084],[67.32536868600013,24.357611395],[67.28296959700006,24.357611395],[67.27165774800008,24.369086005000057],[67.2736108730002,24.395086981000034],[67.28663170700011,24.439520575000145],[67.28052819100012,24.432318427000112],[67.2736108730002,24.426947333000058],[67.25879967500012,24.41909414300009],[67.25684655000006,24.444973049000097],[67.24683678500011,24.467962958000086],[67.23072350400011,24.48883698100003],[67.21094811300011,24.508449611000017],[67.2308048840001,24.52509186400006],[67.22673587300002,24.532375393000063],[67.20411217500006,24.535101630000142],[67.19459069100017,24.54726797100004],[67.18864993600008,24.561346747000144],[67.18523196700006,24.576117255000142],[67.18360436300023,24.590318101000047],[67.19947350400017,24.584784247000027],[67.21810957100016,24.582424221000093],[67.23666425900015,24.583970445000134],[67.25261478000007,24.590318101000047],[67.223887566,24.607163804000052],[67.20899498800023,24.613755601000136],[67.19044030000006,24.617661851000136],[67.17269941500015,24.61587148600013],[67.15992272199999,24.61225006700009],[67.15211022199999,24.61570872599999],[67.14958743600017,24.635077216000084],[67.15699303500017,24.662909247000144],[67.17554772200018,24.68870677299999],[67.1999617850001,24.710638739000032],[67.22461998800023,24.726955471000124],[67.25294030000006,24.74038320500013],[67.25554446700008,24.747992255000053],[67.24512780000006,24.76166413],[67.23267662900017,24.770738023000106],[67.22380618600002,24.769720770000117],[67.21265709700012,24.76471588700009],[67.17603600400017,24.757717190000037],[67.1673283210001,24.76015859600015],[67.16163170700011,24.78139883000013],[67.156016472,24.791571356000176],[67.148203972,24.799790757],[67.13965905000012,24.803290106000148],[67.12183678500011,24.801214911000056],[67.111094597,24.797756252000156],[67.0999455090001,24.79706452],[67.08122806100013,24.803290106000148],[67.07374108200023,24.795803127000013],[67.0825301440001,24.774155992000104],[67.06373131600017,24.78168366100006],[67.02295983200011,24.810044664000102],[67.00505618600008,24.813544012000094],[66.98731530000006,24.822211005],[66.97299238400015,24.833156643000066],[66.96509850400011,24.843573309000064],[66.95769290500019,24.843573309000064],[66.95785566500015,24.82542552300005],[66.96021569100006,24.817816473],[66.96509850400011,24.810044664000102],[66.94117272200006,24.81256745000003],[66.92188561300011,24.824286200000117],[66.90333092500006,24.839178778000143],[66.882090691,24.85101959800012],[66.85377037900017,24.85224030200014],[66.82732181100019,24.84414297100001],[66.802500847,24.83954498900009],[66.7796330090001,24.85101959800012],[66.769297722,24.847235419000082],[66.71631920700005,24.841538804000106],[66.69141686300023,24.83258698100009],[66.67969811300021,24.83055247600005],[66.65414472700016,24.839178778000143],[66.65674889400006,24.85871002800006],[66.67701256600017,24.879543361000014],[66.7044376960001,24.89203522300012],[66.7044376960001,24.89887116100006],[66.68132571700008,24.910549221000153],[66.68132571700008,24.948879299000065],[66.69703209700006,25.025458075000145],[66.69955488400015,25.085272528000118],[66.7044376960001,25.104315497000115],[66.71355228000019,25.120754299000012],[66.73226972700016,25.143255927],[66.73796634200008,25.15949127800003],[66.73715254000015,25.181097723000118],[66.72144616000017,25.212591864000146],[66.71753991000016,25.231187242000043],[66.71021569100016,25.239243882],[66.67408287900011,25.269029039000188],[66.6595158210001,25.275580145000063],[66.6482853520001,25.283189195000105],[66.59522545700011,25.330226955000043],[66.56072024800008,25.34967682500003],[66.54786217500006,25.365627346000124],[66.55372155000012,25.385443427000055],[66.57927493600019,25.379380601000047],[66.59115644600016,25.399603583000058],[66.58708743600008,25.42621491100003],[66.56421959700018,25.439439195000045],[66.55054772200006,25.457098700000145],[66.54167728000019,25.49217357000005],[66.53101647200006,25.518133856000034],[66.51270592500006,25.50836823100009],[66.5105900400001,25.512925523000046],[66.50733483200021,25.517564195000162],[66.50586998800006,25.522040106000034],[66.49284915500019,25.518052476000047],[66.48658287900011,25.525620835000026],[66.48292076900006,25.538234768000095],[66.47787519600016,25.549302476000108],[66.44410241000017,25.582505601000047],[66.43702233200011,25.59772370000003],[66.41211998800006,25.59056224200016],[66.38770592500012,25.59243398600013],[66.37256920700023,25.603908596000096],[66.37549889400006,25.625677802000055],[66.35865319100004,25.61448802300005],[66.33855228000019,25.608099677000112],[66.30323326900006,25.604559637000033],[66.2912703790001,25.605943101000108],[66.27051842500006,25.61163971600008],[66.2581486340001,25.612005927000112],[66.25424238400008,25.609605210000083],[66.24838300900015,25.60468170800003],[66.23975670700017,25.599920966000113],[66.20394941500015,25.593207098000065],[66.1834416020001,25.581610419000143],[66.16716556100008,25.566066799000126],[66.1557723320001,25.549302476000108],[66.13738040500007,25.51382070500013],[66.13160241000017,25.50836823100009],[66.12086022200018,25.50458405200008],[66.10962975400017,25.495428778000086],[66.0999455090001,25.484361070000045],[66.09441165500019,25.474839585000055],[66.12110436300011,25.475165106000173],[66.20045006600006,25.487860419000143],[66.21306399800002,25.491359768000123],[66.22364342500006,25.499497789000046],[66.23845462300008,25.51581452000006],[66.24154707100016,25.518459377000067],[66.24512780000012,25.52041250200001],[66.24968509200008,25.52163320500013],[66.25513756600012,25.522040106000034],[66.25879967500005,25.524847723000093],[66.25831139400006,25.53139883000007],[66.25684655000012,25.53847890800013],[66.2581486340001,25.543117580000157],[66.27914472700016,25.549994208000058],[66.30933678500017,25.554022528000033],[66.33643639400006,25.55337148600007],[66.34831790500002,25.546210028000033],[66.35271243600013,25.53554922100001],[66.36353600400011,25.53034088700012],[66.37696373800011,25.527044989000085],[66.3885197270001,25.522040106000034],[66.39714603000002,25.512884833000058],[66.4119572270001,25.491115627000095],[66.4231876960001,25.48102448100003],[66.43726647200006,25.49127838700015],[66.45622806100006,25.496039130000057],[66.475840691,25.493312893000095],[66.49219811300023,25.48102448100003],[66.45753014400006,25.45376211100013],[66.4978947270001,25.43048737200003],[66.51156660200016,25.4142113300001],[66.4983830090001,25.39850495000003],[66.48389733200017,25.400539455000157],[66.46550540500013,25.411607164000188],[66.43702233200011,25.43325429900007],[66.35954837300002,25.465236721000068],[66.31185957100016,25.474920966000052],[66.27865644600016,25.46735260600009],[66.25180097700016,25.47288646000011],[66.21949303500011,25.46491120000014],[66.18702233200017,25.452948309000035],[66.15919030000012,25.446926174],[66.06902103000006,25.44623444200009],[66.00464928500017,25.429632880000113],[65.92448978000013,25.41860586100007],[65.88152103000006,25.419623114000117],[65.85840905000012,25.417547919000025],[65.82398522200018,25.402248440000065],[65.80030358200017,25.39581940300006],[65.76539147200006,25.37799713700015],[65.72437584700006,25.371161200000145],[65.67164147200006,25.347398179000052],[65.65211022200006,25.344468492000132],[65.62973066500015,25.346909898000078],[65.4881291020001,25.38312409100008],[65.4677840500001,25.385443427000055],[65.44605553500011,25.38100820500007],[65.42286217500012,25.372381903000147],[65.40072675900015,25.366685289000188],[65.38233483200011,25.371161200000145],[65.38697350400011,25.37641022300012],[65.39535566500015,25.392279364000057],[65.36280358200011,25.390570380000057],[65.33619225400017,25.385321356000176],[65.31324303500017,25.376857815000122],[65.2923283210001,25.36497630399999],[65.25977623800021,25.380438544000114],[65.2322697270001,25.370672919000143],[65.21111087300018,25.34784577000015],[65.18799889400005,25.311021226000076],[65.18018639400006,25.303656317000062],[65.17017662900017,25.29946523600013],[65.15528405000012,25.296087958000115],[65.1434025400001,25.295884507000082],[65.11801191500015,25.301947333000058],[65.08961022200006,25.305568752000127],[65.05884850400017,25.314520575000145],[65.04200280000006,25.31659577000009],[64.98064212300002,25.31659577000009],[64.92066491000011,25.327053127000156],[64.88965905000012,25.32835521000005],[64.861094597,25.31659577000009],[64.83912194100012,25.32534414300015],[64.80730228000007,25.328517971000036],[64.74439537900011,25.32404205900015],[64.718516472,25.314398505],[64.695974155,25.29759349200016],[64.67855879000014,25.276800848000093],[64.66863040500007,25.255113023000106],[64.66277103000019,25.229071356000034],[64.66334069100017,25.21702708500011],[64.66863040500007,25.206732489],[64.67986087300008,25.201483466000028],[64.69629967500006,25.197088934000035],[64.70915774800008,25.190659898000106],[64.71021569100006,25.179388739000117],[64.70232181100006,25.17877838700015],[64.65503991000011,25.165716864],[64.64063561300023,25.16657135600009],[64.61524498800011,25.17316315300017],[64.60035241000017,25.17316315300017],[64.62696373800011,25.21161530200008],[64.62769616000011,25.228461005000085],[64.61060631600017,25.25169505399999],[64.59302819100006,25.26129791900017],[64.56544030000012,25.270249742000104],[64.53711998800011,25.275864976000108],[64.5184025400001,25.275580145000063],[64.50660241000017,25.26691315300017],[64.4920353520001,25.245672919000086],[64.48023522200006,25.241441148000074],[64.46753991000016,25.240383205000015],[64.44800866000011,25.2357445330001],[64.4393009770001,25.234605210000055],[64.41749108200005,25.24091217699999],[64.38282311300011,25.271470445000105],[64.3606876960001,25.28302643400006],[64.31820722700016,25.292303778000086],[64.27507571700002,25.296087958000115],[64.26579837300008,25.298651434000035],[64.2527775400001,25.311590887000033],[64.24463951900006,25.31659577000009],[64.1839298840001,25.31867096600008],[64.09449303500011,25.335882880000113],[64.09473717500005,25.34992096600017],[64.1036889980002,25.36786530200011],[64.10694420700023,25.385443427000055],[64.10173587300002,25.39085521],[64.09229576900012,25.395982164000102],[64.08350670700005,25.403509833000054],[64.07960045700005,25.41620514500012],[64.083750847,25.426743882],[64.09376061300011,25.431789455000015],[64.10621178500011,25.43325429900007],[64.11744225400011,25.43325429900007],[64.14087975400015,25.428859768],[64.15088951900006,25.43211497600005],[64.15528405000006,25.446926174],[64.15072675900008,25.451402085],[64.14063561300023,25.45335521000011],[64.12728925900015,25.45376211100013],[64.08155358200011,25.443752346000153],[64.0564884770001,25.441717841000028],[64.04542076900006,25.450344143000123],[63.98959394600009,25.425441799000097],[63.97657311300011,25.412787177000112],[63.99138431100018,25.416652736000017],[63.99708092500006,25.419623114000117],[64.0042423840001,25.402044989],[64.01172936300006,25.397284247000115],[64.02149498800011,25.402736721000124],[64.03516686300023,25.41620514500012],[64.04883873800011,25.41648997600005],[64.06169681100017,25.39915599200016],[64.07960045700005,25.36497630399999],[64.06674238400015,25.34625885600012],[64.05974368600008,25.344549872000115],[64.04200280000006,25.344468492000132],[64.00489342500006,25.339016018000095],[63.98707116000016,25.33832428600006],[63.96973717500011,25.344468492000132],[63.94410241000011,25.334906317000147],[63.906586134000094,25.341213283000073],[63.80494225400011,25.374986070000162],[63.73780358200005,25.385321356000176],[63.66993248800005,25.383612372000172],[63.60466556100019,25.3744164080001],[63.57252037900012,25.36497630399999],[63.55437259200013,25.356187242000104],[63.53760826900012,25.344468492000132],[63.51050866000017,25.31659577000009],[63.49577884200007,25.29140859600001],[63.48519941500009,25.28432851800015],[63.46949303500017,25.28925202],[63.47413170700011,25.273138739000117],[63.48170006600006,25.260158596000124],[63.5119735040001,25.226711330000068],[63.516856316000116,25.223578192],[63.518728061000076,25.22085195500013],[63.51791425900015,25.214178778000175],[63.51539147200006,25.206854559000174],[63.51172936300011,25.200262762000094],[63.50660241000017,25.19550202],[63.50049889400005,25.193670966000028],[63.46876061300023,25.199042059000178],[63.41114342500007,25.22247955900015],[63.37696373800006,25.227769273000135],[63.30811608200012,25.220363674000154],[63.291351759000094,25.22280508000007],[63.244151238000114,25.241441148000074],[63.178477410000106,25.258042710000108],[63.144053582000055,25.260931708000058],[63.1131291020001,25.255113023000106],[63.05095462300013,25.224188544000143],[63.02784264400006,25.220363674000154],[62.94239342500006,25.227769273000135],[62.77051842500012,25.26190827000012],[62.604958965000066,25.26599690200011],[62.527479441000224,25.264187572000154],[62.47717893000017,25.25906357600003],[62.46501712300014,25.237250067000144],[62.4676212900001,25.223537502000013],[62.489431186000076,25.214178778000175],[62.46949303500017,25.206732489],[62.44434655000012,25.213934637000037],[62.413828972000175,25.206529039000046],[62.38526451900006,25.19245026200009],[62.365896030000066,25.179388739000117],[62.35474694100005,25.169419664000046],[62.34310957100015,25.155462958000054],[62.33619225400011,25.139837958],[62.33912194100005,25.124741929],[62.35199035100007,25.112829499000057],[62.37322237900017,25.10839416300014],[62.38724312900009,25.10157472000016],[62.38105164800001,25.087572198000046],[62.33971332200022,25.087399309000048],[62.28995377300006,25.090016208000023],[62.25605540600011,25.098627452000027],[62.280284050000056,25.116603908000155],[62.28394616000011,25.119940497000087],[62.287771030000066,25.122259833000058],[62.29078209700006,25.124741929],[62.29932701900006,25.128810940000122],[62.308278842000185,25.12815989799999],[62.315277540000096,25.130194403000118],[62.318125847,25.141831773000106],[62.30397727200008,25.166923435000097],[62.297479277000114,25.185132715000023],[62.275183839000164,25.199890460000017],[62.25422182100007,25.212032101000105],[62.22579194300013,25.21405400400006],[62.19180886300015,25.220080670000087],[62.145192905,25.218410549000012],[62.10271243600008,25.205145575000174],[62.08003090800011,25.197152448000153],[62.06804520900007,25.17814229000011],[62.058988641000184,25.161635844000116],[62.07309004000009,25.150580145],[62.07782756900005,25.12771309600008],[62.088901594000184,25.118421516000083],[62.097178582000225,25.10712311400006],[62.07555111200011,25.100748575000026],[62.03584065600008,25.103043518],[61.98910999500007,25.108073561000097],[61.92949774600007,25.109562888000042],[61.88111412900016,25.103013414000102],[61.86988366000017,25.083889065000122],[61.866384311000076,25.07542552299999],[61.85743248800023,25.066839911000088],[61.84734134200007,25.037909247000172],[61.83521569100018,25.038397528000147],[61.81485303300021,25.026179956000092],[61.790477665000104,25.017762785000073],[61.7548683300001,25.013467337000023],[61.72955120500015,25.02178265300016],[61.720064069000074,25.037436401000107],[61.72575931100018,25.058905341000028],[61.73585045700005,25.069525458000058],[61.728526238000164,25.083075262000122],[61.73243248800017,25.091620184000035],[61.749522332000105,25.104315497000115],[61.76002037900016,25.115383205000125],[61.76270592500006,25.121975002000013],[61.76384524800019,25.134995835000026],[61.76677493600018,25.145656643000123],[61.78012129000009,25.162543036000116],[61.78370201900012,25.17316315300017],[61.783050977000165,25.18797435100005],[61.77955162900016,25.191066799000126],[61.7736922540001,25.188421942000144],[61.76685631600018,25.186224677000055],[61.76392662900017,25.184271552],[61.755137566,25.175604559000092],[61.749522332000105,25.17316315300017],[61.74431399800019,25.174953518000066],[61.731130405000066,25.18406810100005],[61.725352410000106,25.186224677000055],[61.71363366000011,25.18805573100003],[61.70753014400012,25.192206122000144],[61.7024845710001,25.197007554000052],[61.694183790000096,25.20050690300006],[61.68279056100007,25.20164622599999],[61.65015709700011,25.20050690300006],[61.6341251960001,25.203924872000144],[61.624196811000196,25.20441315300003],[61.61247806100013,25.20050690300006],[61.58822675900014,25.20209381700009],[61.5882814080002,25.202130453000095],[61.620041951000154,25.285486145000093],[61.62603641800009,25.369770406],[61.633064412000095,25.46929921500013],[61.63905887900008,25.55492706299999],[61.643192993000156,25.61332143200015],[61.646603638000066,25.627687480000148],[61.652494751000084,25.637299297000155],[61.667170858000155,25.650476786000137],[61.67347538300007,25.658279928000084],[61.67636926300017,25.692799785000048],[61.66531050600023,25.73238393200002],[61.66034956900008,25.7691775520001],[61.68143355300006,25.79548085500006],[61.70262089100017,25.800080058],[61.721947876000144,25.799666646],[61.73931115700007,25.803283997000065],[61.75450402900017,25.819975485000114],[61.760085083000114,25.837597148],[61.77062707500007,25.907412008000065],[61.783236125000165,25.990611064000078],[61.79274458800009,26.05282948900016],[61.80070275900001,26.10662465500009],[61.80990116400002,26.167447815000017],[61.818376099000055,26.198453675000152],[61.83294885300021,26.22537709500007],[61.85713342300007,26.242378642000077],[61.97774621600016,26.273177795000052],[62.013661336000176,26.294623515000083],[62.03226485200017,26.302891745000025],[62.0527803950001,26.308576151000167],[62.09417321800018,26.31482900000016],[62.10326827000004,26.325112610000144],[62.106885620000206,26.34971059100006],[62.123835490000054,26.373998515000054],[62.16145593300004,26.369502665000123],[62.2058976650002,26.35534332300007],[62.24341475500014,26.350640767000083],[62.265118856000214,26.360976054],[62.2642403560001,26.375187073000163],[62.2544735110001,26.393583883000144],[62.24899580900015,26.416528219],[62.25612715600018,26.428930563000065],[62.2875464270002,26.456629131000096],[62.297881714000106,26.474044088000127],[62.29695153800017,26.480245260000018],[62.29312748200001,26.485877991000123],[62.290130249000214,26.492440898000112],[62.2919906010002,26.50122589100003],[62.29829512500012,26.50877065000016],[62.30697676600019,26.513679912],[62.32651045800011,26.52065623],[62.334675333000206,26.52484202100011],[62.347594442000144,26.533316956000032],[62.35586267100009,26.536624248000024],[62.36526778200001,26.537502747000147],[62.38635176600004,26.536624248000024],[62.39668705300008,26.53905303900008],[62.40247481300011,26.54380727100009],[62.41063968900008,26.55682973200011],[62.41849450700008,26.562307435000108],[62.4280029710001,26.56478790300018],[62.595331259000055,26.580704244000017],[62.6157951260001,26.587112122000136],[62.62411503100006,26.592951559000042],[62.63202152500011,26.600392965000154],[62.64059981300014,26.605147197000136],[62.65134851100007,26.6031834920001],[62.66251062000018,26.598274232000094],[62.67103723200009,26.597705791000024],[62.70193973800011,26.60401031500014],[62.71056970200007,26.606904195000123],[62.718011108000184,26.610521545000108],[62.72472904500009,26.615120749000152],[62.73506433100013,26.632225647000027],[62.742712443000094,26.641320699000076],[62.75356449400012,26.64416290300015],[62.821674031000065,26.642612610000025],[62.90001550300022,26.640907287000157],[62.990449259000094,26.63889190700003],[63.029413290000065,26.633517558000065],[63.068894083,26.6325357060001],[63.09803959100006,26.638375143000175],[63.107599732,26.637599996000162],[63.11622969600008,26.634034322],[63.12346439700016,26.629435120000053],[63.13126753800006,26.625817770000154],[63.141344441000086,26.625404359000143],[63.16377201300011,26.645093078000016],[63.17431400600006,26.685038961000046],[63.18227217600022,26.83024973500001],[63.189558553000126,26.84601104799999],[63.20604333500009,26.853710836000072],[63.2466610110001,26.85955027300015],[63.26164717600008,26.871745911000076],[63.264851115000084,26.890039368000043],[63.25647953300009,26.906162415000136],[63.24397383600009,26.922440491000074],[63.23498213700005,26.941147359000137],[63.229917847000166,27.054060364000023],[63.23136478700016,27.065842590000113],[63.23560225500009,27.07586781900015],[63.2462475990001,27.089458720000138],[63.24996830200021,27.09953562400007],[63.260923707000096,27.115606995000135],[63.28056075100013,27.123203430000032],[63.30241988100007,27.123358460000148],[63.319628133000066,27.1173123170001],[63.2855733640001,27.184646708000017],[63.27125899300021,27.203405253000096],[63.2606136470001,27.21379221700012],[63.251518596000125,27.218959860000112],[63.2268172610002,27.226969706000105],[63.215448446000124,27.23322255500001],[63.189558553000126,27.25446156900007],[63.177104533,27.25844065400015],[63.166975953000154,27.258699036000124],[63.11230228700012,27.243196106000095],[63.09943485500011,27.24283437200002],[63.08274336800016,27.24438466400012],[63.05618168200007,27.243196106000095],[63.00378177900021,27.228778382000186],[62.977840210000096,27.2251610310001],[62.91960087100002,27.214877421000107],[62.89241906700008,27.21348215700014],[62.86084476800008,27.21963165300012],[62.83738366700013,27.231258850000174],[62.829322144000145,27.233635966000023],[62.822294149000214,27.232499085000097],[62.808548218000084,27.22536773700007],[62.800641723000105,27.2251610310001],[62.78560388200005,27.232499085000097],[62.74235070800009,27.266812236000032],[62.75821537300013,27.267690735000155],[62.76808557100017,27.274356995000076],[62.77413171400021,27.285519104000013],[62.7787825930001,27.299833476000103],[62.78064294400011,27.31605987600001],[62.77568200700014,27.32691192700015],[62.75604496300011,27.348099263000037],[62.808599894000196,27.45336415600012],[62.81469771300008,27.494963684000126],[62.80932336500009,27.54705352800006],[62.79971154800009,27.639270122000127],[62.794698934000195,27.68947377600007],[62.786379029000074,27.770269878000118],[62.78028120900009,27.82972361300007],[62.754184611000106,27.925841777000084],[62.735684448000164,27.99498484300007],[62.751704142000136,28.108724671000076],[62.766380249000086,28.211483257],[62.761522664000175,28.246442362000025],[62.73930179900017,28.258327942000122],[62.57564253800009,28.229027405000167],[62.55543705200008,28.24031870600014],[62.49228845200017,28.300702616000038],[62.47771569800008,28.32230336500011],[62.47120446800013,28.339692485000125],[62.464279826000016,28.349821066000104],[62.45384118600011,28.355686341000176],[62.43720137500005,28.360440572000172],[62.42097497600017,28.368553772000084],[62.41074304200017,28.38069773400018],[62.40216475400004,28.394107768000126],[62.3905375570001,28.40612253900018],[62.362787313000155,28.418886617000155],[62.23070235200006,28.442451071000065],[62.14750329600017,28.475265605000075],[62.11556726100011,28.481363424000122],[62.049111369000144,28.48632436100017],[62.01882897900012,28.494695943000135],[61.97113163200006,28.518983866000053],[61.91129032400008,28.533737488000057],[61.89279016100008,28.542599997000153],[61.86116418400015,28.57476857500002],[61.797705526000215,28.62657419900007],[61.75615767400015,28.673961487000057],[61.65301151600013,28.756333720000143],[61.623969361,28.787649638000136],[61.595340617000055,28.842685039000017],[61.56650516800019,28.870977886],[61.561337525000084,28.885938212000053],[61.55896040900004,28.902733053000123],[61.55317264800008,28.922137553000184],[61.51090132700019,29.00737782800015],[61.50211633300009,29.017713115000063],[61.490954224000085,29.02549041800007],[61.47803511500015,29.030658061000068],[61.47028365100007,29.035903219000105],[61.46800988800007,29.041742656000093],[61.47080041500012,29.047866313000053],[61.47803511500015,29.054325867000028],[61.48723352100015,29.06292999300014],[61.490644165000184,29.072025045000107],[61.4877502850002,29.080655009000072],[61.47803511500015,29.087476298000027],[61.46087854000021,29.093884176000145],[61.45323042800012,29.108379416],[61.447959432000204,29.125406800000025],[61.43772749800021,29.139617818000158],[61.426875448000175,29.144630433000046],[61.41767704200017,29.145663961000125],[61.408581991000084,29.148557841000112],[61.3979366460002,29.159073995000156],[61.39276900300009,29.17046864800007],[61.3900818280001,29.195428365000154],[61.386981242000125,29.20664215099999],[61.37416548600007,29.223850403000153],[61.34233280500009,29.254520366000108],[61.33282434100014,29.27490671800014],[61.33282434100014,29.29449208600006],[61.344709920000156,29.32952870700008],[61.34657027200014,29.3490623980001],[61.337371867000144,29.37438385000017],[61.319801880000085,29.385390930000156],[61.29871789600022,29.392651469000143],[61.279184205000064,29.40662994400013],[61.19691532400006,29.492283630000102],[61.11867720500002,29.57398407],[61.04333296700017,29.65242889500003],[60.978013957000115,29.720615947000127],[60.92509729000014,29.774979554000126],[60.8443787030001,29.85817861000011],[60.87600467900008,29.845517884000074],[60.94742150800018,29.825519104000065],[61.03062056400021,29.802161357],[61.11402632700017,29.778726094000135],[61.19722538300007,29.755342509000073],[61.28042443900008,29.732010600000034],[61.3637268480002,29.708627015000086],[61.44692590400021,29.68532094400014],[61.53022831200016,29.661859843000073],[61.61342736800006,29.638502096000035],[61.69662642400007,29.615196025],[61.77992883300008,29.591786601000035],[61.86323124200012,29.568351339000074],[61.94653365100006,29.545045268000038],[62.02962935400015,29.521635844000073],[62.11298344000007,29.498226421000123],[62.19628584800014,29.4749203490001],[62.2794332280001,29.45148508700011],[62.37446618600015,29.4248717250001],[62.4775089930001,29.40781850200015],[62.6025811320002,29.418069628000026],[62.63134973200013,29.420427551000085],[62.68039066600008,29.424458313000073],[62.72937992400008,29.42848907500017],[62.77842085800009,29.432519837000157],[62.82746179200009,29.43660227500008],[62.87645105000009,29.440581360000134],[62.92554366000016,29.444637960000147],[62.97453291800016,29.448642883000144],[63.0236255290001,29.452673645000132],[63.0726147870001,29.45675608400013],[63.12160404500011,29.460786845000044],[63.17069665600015,29.464765931000112],[63.21968591300018,29.468796692000026],[63.268675171000176,29.472879130000035],[63.317767782000054,29.476909892000137],[63.36680871600007,29.48094065400012],[63.41595300300011,29.484971415000114],[63.56860518400017,29.497477112000027],[63.78791996300018,29.46058014],[63.97199141400019,29.429574280000068],[64.0860929770001,29.386605326000094],[64.11337813400021,29.396294658000116],[64.14975834200018,29.45846140600013],[64.1725993250001,29.484299622000137],[64.20773929900022,29.499983419],[64.4776969810001,29.57036672000011],[64.49947701700009,29.57020296000014],[64.683885946,29.5688164270001],[64.82031172700007,29.567886251000132],[64.98660648600017,29.541557109000095],[65.0363708900002,29.54016184500001],[65.1814266360001,29.577110494000134],[65.23951094500009,29.591838278000143],[65.29759525600016,29.606643576000078],[65.35578291900018,29.621423035000088],[65.41366052300012,29.636176656000103],[65.4717448320001,29.650956116000103],[65.52972578900003,29.66573557600013],[65.58781009900021,29.680566712000157],[65.64584273300008,29.695346171000082],[65.70403039500009,29.71015146900002],[65.76206302900007,29.72490509100011],[65.82014733900016,29.739736226000147],[65.87823164900013,29.754489848000144],[65.93610925300007,29.769295146000058],[65.99429691500009,29.784022930000063],[66.05238122600021,29.79885406500001],[66.11046553600013,29.81363352500001],[66.19562829600008,29.835337627000012],[66.27521000100009,29.88515370700004],[66.3017716880001,29.915694479000063],[66.32244226100012,29.946545309000115],[66.32843672700007,29.949542541000046],[66.33680830900013,29.952023010000016],[66.34052901300007,29.95657053600014],[66.33236413600011,29.966079000000136],[66.30156498200003,29.986749573000154],[66.26043054200008,30.023129781000037],[66.22523889100009,30.04442047100012],[66.21929610200019,30.05785634400017],[66.22172489400006,30.073721009000096],[66.23634932500013,30.111599834000078],[66.30089318800017,30.225598043000144],[66.30528568500009,30.24477000000014],[66.30301192200014,30.305283101],[66.32182214400002,30.43736806300008],[66.31939335100012,30.457831930000154],[66.31376062000007,30.478295797000115],[66.3061125080001,30.491111552000106],[66.28192793800022,30.518138326000138],[66.2649263910001,30.557825826000037],[66.26797530100012,30.601389059000052],[66.36626387600015,30.922868144000105],[66.37535892700012,30.93671742800016],[66.3923087970002,30.944623922000016],[66.52749434500006,30.968343405000052],[66.55002526800016,30.976973368000113],[66.6439730220001,31.0601724240001],[66.66309330300007,31.08311676000015],[66.69699304200017,31.195823059000144],[66.72128096500009,31.210292460000108],[66.75952152500011,31.21478831000003],[66.78530806500007,31.23178985600005],[66.80861413600022,31.254734192000072],[66.83848311300002,31.277006734000125],[66.90592085800009,31.30553212500017],[66.94328291800011,31.314730530000176],[67.0020906980001,31.315867411000095],[67.0168184820001,31.309149475000154],[67.02389815300009,31.295300191000095],[67.02596521000007,31.273027649000042],[67.02343306500009,31.264862773000047],[67.0179036860001,31.258713277000158],[67.01387292500007,31.252667135000127],[67.01526818900018,31.24465728800014],[67.0228646240001,31.23938629200011],[67.0352669680001,31.235923971000158],[67.05821130400014,31.23235829700009],[67.07846846500016,31.23204823800002],[67.1168640550001,31.24031646800016],[67.1367594810001,31.241091614000155],[67.1567065830001,31.235923971000158],[67.1931901450001,31.21850901300003],[67.21375736500006,31.21225616500014],[67.23029382300008,31.210602519000176],[67.28217696100009,31.212772929000078],[67.34620406100007,31.2077603150001],[67.36460087100008,31.210705872000016],[67.4338989660001,31.236079000000114],[67.49332686400007,31.24295196500016],[67.53022383600009,31.25664622],[67.58365726700012,31.265224508000028],[67.60215743000006,31.271115621000135],[67.66592614800005,31.306255595000078],[67.67894860800018,31.31659088200008],[67.69279789200007,31.325220846000136],[67.70902429200007,31.32930328400012],[67.74943526200016,31.328011373],[67.7647314860001,31.334057516000126],[67.7750667720002,31.35276438400011],[67.77036421700014,31.394673971000188],[67.73429406800014,31.404750875000115],[67.65114668800007,31.39529408800017],[67.6314062910001,31.400099996000066],[67.61145918800017,31.410797018000082],[67.59698978700011,31.425679830000103],[67.59109867400011,31.464798889000136],[67.57807621300017,31.482110494000054],[67.5634001060001,31.49725168900007],[67.55611372900015,31.512186178000135],[67.5689811600001,31.529859517000137],[67.6005037840001,31.530479635000102],[67.66546106000013,31.51812896700012],[67.6963118900002,31.520816142000072],[67.72669763200005,31.53140981100013],[67.74828016400014,31.544392093000127],[67.78116459100008,31.564172669000147],[67.84271122300017,31.623497213000164],[67.87066817200011,31.635176087000147],[67.88431075100019,31.63564117500006],[67.91469649300004,31.6313520310001],[67.95521081600006,31.633212382000107],[67.96606286700009,31.638224996000172],[67.97732832900007,31.65186757400009],[67.99407149300012,31.663443095000115],[68.0465747480001,31.688402812],[68.05225915500014,31.695430807000104],[68.05556644700013,31.71656646800015],[68.06047570800015,31.725558167000102],[68.09349694800014,31.75155141200015],[68.09834042600002,31.759123609000156],[68.10450402900014,31.768759664000054],[68.1257430420001,31.811496074000143],[68.1385587980001,31.824673564000033],[68.15912601800008,31.825913798000055],[68.18475752800012,31.818214010000176],[68.20682336500013,31.807878723000055],[68.23229984500003,31.790153707000158],[68.24263513200006,31.776924541000156],[68.25503747500014,31.766382548000095],[68.27694828300017,31.763592021000036],[68.31653243000014,31.76519399100006],[68.35606490100005,31.762506816000137],[68.46096805900018,31.730467428000125],[68.49802006100005,31.725248108000116],[68.51517663600012,31.72995066300008],[68.53682906100019,31.74100942000011],[68.54979984600013,31.753515117000102],[68.54060144100012,31.762506816000137],[68.52127445500017,31.76478057900006],[68.46143314600008,31.763592021000036],[68.43957401600008,31.766589254000152],[68.42221073400006,31.773152161000137],[68.41874841300009,31.783022360000118],[68.43817875200008,31.796044821000134],[68.48148360200017,31.815681865],[68.50509973100006,31.82265818300009],[68.52747562700003,31.82296824200007],[68.56106530800017,31.81180613200003],[68.61945967600016,31.78348744800006],[68.67578698700007,31.774702453000046],[68.68829268400006,31.768604634],[68.6949072670002,31.756357321000067],[68.69790450100007,31.71594635000018],[68.70544926000011,31.701270244000014],[68.73118412300019,31.6755353810001],[68.77727950000022,31.618587952000137],[68.80384118600014,31.60256825800018],[68.8435286860001,31.606495666000153],[68.90698734600008,31.634297588000106],[68.94099043800011,31.643651022000043],[68.97726729300004,31.641480611000148],[69.00403568500022,31.65109242800015],[69.04010583500022,31.673106588000152],[69.0716284580001,31.697859599000154],[69.08475427200007,31.715791321000054],[69.10005049700013,31.724007874000094],[69.1143131920002,31.73775380400012],[69.2237638760001,31.88193105099999],[69.25094567900013,31.907045797000123],[69.2988497310001,31.937689922000132],[69.3011572990001,31.941281701000133],[69.30479252100022,31.946940003000137],[69.30215702300015,31.95991078700017],[69.27063440000009,32.035978495000144],[69.25104903100006,32.130649720000164],[69.25187585500007,32.15225046900004],[69.25952396600015,32.194521790000024],[69.25998905400016,32.23681894900001],[69.2669653720001,32.27958119700004],[69.26810225400018,32.301336976000144],[69.26443322800017,32.32236928400006],[69.23854333500006,32.378283183000136],[69.2280013430001,32.42130381300014],[69.2328589270002,32.46267079700009],[69.25156579600011,32.500549621000076],[69.28195153800006,32.532795715000034],[69.30210534700021,32.543776957000105],[69.34354984600006,32.55605011000016],[69.3612231860001,32.568478293000126],[69.41393314600012,32.63547678700003],[69.42602543100011,32.65508799200016],[69.429126017,32.66736114600008],[69.4191007900001,32.7004599000001],[69.4172404380001,32.71800404900016],[69.41465661600009,32.72557464600011],[69.40773197400019,32.72994130500011],[69.39915368700011,32.73296437600011],[69.3904203690001,32.73789947600007],[69.38323734600007,32.74446238300014],[69.37806970300008,32.75231720000009],[69.37631270300008,32.771876729],[69.38716475400022,32.78533844000005],[69.42106449400015,32.80680999800008],[69.4455591230001,32.83567128500012],[69.47144901600021,32.852233582000125],[69.47728845200012,32.85683278500006],[69.48721032700021,32.885874939000146],[69.46850345900012,32.99429209500012],[69.47812524800005,33.01135007800009],[69.48772709200014,33.02837270100018],[69.51418542500002,33.05669138600008],[69.54751672400019,33.075010682000155],[69.58777266400014,33.07953237],[69.60833988500022,33.079067282000054],[69.64068933100012,33.08423492500016],[69.6501977940002,33.08185780900011],[69.65877608200005,33.078421326000075],[69.66776778200008,33.07700022400009],[69.68600956200012,33.08077260400002],[69.7329834390001,33.10929799400015],[69.77184411600015,33.11477569600005],[69.8387134200001,33.08666371700012],[69.88093306500011,33.08924753900011],[69.95581221600011,33.12769480500016],[69.9657340900002,33.129400126000135],[69.99472456800012,33.12733306900016],[70.0068685300001,33.1318030800001],[70.01451664200007,33.14076894200012],[70.04800297000011,33.19407318100009],[70.05978519700007,33.19805226699999],[70.08365970900016,33.19128265400015],[70.10536381100005,33.18980987600004],[70.12479414900017,33.199034119000046],[70.29444787600008,33.31894928000004],[70.30157922400011,33.35178965300015],[70.28571455900007,33.382873027000116],[70.23300459800006,33.43261159300012],[70.22783695500007,33.439949646],[70.22044722500007,33.456021017000076],[70.21336755400009,33.46134368900012],[70.18546228000011,33.46896596300008],[70.1776074630001,33.47341013600003],[70.16375817900015,33.48865468300015],[70.15497318500016,33.506612244000124],[70.15135583500009,33.52586171500014],[70.1530094810001,33.544749451000186],[70.1734733480001,33.607872213000135],[70.17409346600007,33.63210845900012],[70.1702177330001,33.63867136600011],[70.16251794400007,33.64324473100005],[70.14598148600012,33.64988515200015],[70.13688643400022,33.656293030000185],[70.13254561300006,33.661434835000094],[70.12655114700011,33.67696360300003],[70.11812788900014,33.71652191200015],[70.10815433800022,33.727296448000075],[70.06557295800016,33.72101776200016],[70.01182946800006,33.740318909000116],[69.99647814300008,33.742090995000105],[69.97265873300007,33.744840597000135],[69.95751753800019,33.752695415000076],[69.9472339280002,33.77197072400013],[69.94010258000017,33.791478577000035],[69.93131758600006,33.8064389040001],[69.90754642800013,33.835610250000016],[69.89876143400014,33.85150075300014],[69.88542891400013,33.88945709300005],[69.87648889100008,33.90255706800009],[69.84718835500021,33.92694834400014],[69.84109053600017,33.94180531900015],[69.85421634900014,33.95635223400002],[69.87199304200007,33.97151926700006],[69.87385339400007,33.986324565000146],[69.87044274900015,34.00133656800013],[69.8726131600001,34.01722707100008],[69.88925297100016,34.031205546000145],[69.9160213630001,34.03887949700005],[69.96909305800013,34.04572662300011],[70.00283776900018,34.043788758000076],[70.2188452560001,33.98069183400004],[70.27558597800012,33.976170146000115],[70.30989912900006,33.96167490700016],[70.32819258700013,33.957282410000076],[70.40896285000015,33.95441436800008],[70.4914901120001,33.939609070000174],[70.52197920700004,33.93870473200003],[70.65618290200021,33.954750265000186],[70.79131677300003,33.953561707000155],[70.86221683700009,33.964775492000015],[70.87999353000006,33.99425689800002],[70.88433435100009,34.007046815000095],[70.8943079030001,34.00937225400013],[70.92123132300011,34.0022409060001],[70.93973148600017,34.000923157000116],[70.95399418200006,34.004824727000184],[70.96572473200015,34.01381642700012],[70.97714522300006,34.02740732800014],[70.99771244300021,34.033324280000144],[71.04670170100022,34.04187672900015],[71.06261804200007,34.05425323500013],[71.06726892100012,34.073011780000016],[71.0638582770001,34.08892812100005],[71.06277307100012,34.10530955000009],[71.073883504,34.12525665300002],[71.1017887780001,34.151818339000116],[71.10809330200011,34.16522837300008],[71.10948856600012,34.1892062380001],[71.10654301000008,34.209385885000174],[71.09687951700008,34.244344991000055],[71.0970862230001,34.262457580999985],[71.1263867590001,34.332220764000155],[71.12204593900012,34.356818746000116],[71.05093916900009,34.389788310000185],[71.01982995600022,34.414437969000076],[70.99151127200011,34.44306671100016],[70.97084069800022,34.46887909000016],[70.96122888200009,34.48761179600017],[70.95564782700009,34.51001353000005],[70.95699141500009,34.53200185200005],[70.96867028900013,34.54972686800015],[70.98335594700019,34.55525610700012],[70.98582686400019,34.55618642200001],[71.00696252500015,34.55634145100005],[71.04752852400017,34.55112213200011],[71.06582198100014,34.558460185000015],[71.07657067900007,34.57851064100008],[71.07987797100006,34.60290191600011],[71.07626062000017,34.62362416600002],[71.06876753700011,34.645948385000096],[71.07016280100012,34.66124460900015],[71.08060144100014,34.672923483000105],[71.15093306500015,34.720310771000086],[71.18953536000006,34.737053935000134],[71.20307458500022,34.74816436800016],[71.25562951700013,34.81022776300013],[71.27082238800014,34.84428253200018],[71.28947758000012,34.87503000900013],[71.32492761200015,34.89756093400014],[71.44523879700009,34.937756748000176],[71.4599581300001,34.942674459000116],[71.46956994700022,34.94970245400013],[71.47670129500008,34.960296123000106],[71.48538293500022,34.9834988410001],[71.49334110500008,34.994040833000085],[71.49334110500008,34.994144185],[71.49344445800014,34.994144185],[71.49344445800014,34.9941958620001],[71.50429650900017,35.000603739000056],[71.5113245040001,35.00871693900013],[71.51297815000012,35.01812205000011],[71.50750044800006,35.02819895400013],[71.50894738800011,35.072020569000145],[71.53499231000009,35.098582256000086],[71.60413537600019,35.13816640200004],[71.629250122,35.170102438000114],[71.63793176300007,35.18968780600012],[71.63369429600002,35.20312367800007],[71.60320520000008,35.223380840000075],[71.54780806400017,35.27562571200018],[71.5298246670002,35.300895488000045],[71.53158166500006,35.32792226200009],[71.56227746600021,35.360581767000056],[71.61106001800007,35.395463359000026],[71.62087854000006,35.410139465000114],[71.62242883300004,35.429621481000126],[71.61395389800006,35.44321238200011],[71.60072473100016,35.45545969600015],[71.59342197900017,35.46419378800009],[71.58780562400008,35.47091095000003],[71.58170780500019,35.49313181600017],[71.58604862500006,35.51209706600004],[71.59286991400015,35.53018381700004],[71.59349003100013,35.54935577400015],[71.58418827400007,35.56418691099999],[71.56785852100015,35.57421213800011],[71.51277144300016,35.59627797500009],[71.4927209880001,35.60955881800011],[71.48331587700008,35.62656036400013],[71.49592492600019,35.64661082],[71.5140116780001,35.66557607100013],[71.51979943800009,35.68376617500017],[71.51535526600017,35.7014911910001],[71.50274621600008,35.71906117800016],[71.49613163300015,35.724590556000166],[71.48135217300015,35.73409902000004],[71.47556441300017,35.74102366100011],[71.47112024000015,35.752289124000086],[71.4710168870001,35.76133250000005],[71.4720504150001,35.769962463000084],[71.47091353400012,35.7799360150001],[71.46440230300001,35.794715474000114],[71.43101932800008,35.84370473300014],[71.41670495600007,35.85884592700013],[71.37133304900007,35.885149231000085],[71.36068770400007,35.9002904260001],[71.35639856000009,35.93305328400011],[71.34156742400015,35.94726430300007],[71.31252526900008,35.957392883000026],[71.28430993600008,35.96245717400011],[71.25743819200007,35.971552226000156],[71.23191003400004,35.993979798000154],[71.21785404400006,36.00271311400003],[71.1818872480001,36.01883616200011],[71.1709318440002,36.02700103700012],[71.169913422,36.03080174600011],[71.16591923000013,36.04570790600011],[71.17537601700009,36.06115915900001],[71.20762211100006,36.087617493000025],[71.212634726,36.096815898],[71.21769901600013,36.11805491200006],[71.22307336400016,36.12539296500016],[71.2622957760001,36.14611521500011],[71.29268151800008,36.157897441],[71.30208662900006,36.16332346700006],[71.30901127100012,36.172728577000115],[71.31397220900007,36.194019267000115],[71.31913985200006,36.20058217400018],[71.38244348100008,36.21856557299999],[71.40275232000008,36.231381327000165],[71.4790784100002,36.30052439400005],[71.49582157400008,36.30961944600004],[71.51463179500008,36.31520050100012],[71.53891971800006,36.31928293900013],[71.55835005700007,36.327861227000156],[71.55266565000014,36.34098704100013],[71.54222701000018,36.356386618000116],[71.54718794800013,36.37163116500006],[71.57230269400006,36.391681620000114],[71.58036421700015,36.402326965000114],[71.58873579900009,36.418450013],[71.60072473100016,36.449300843000074],[71.6104399000002,36.45793080600011],[71.62914676900019,36.45953277600016],[71.64930057800008,36.452763163000114],[71.70686812300019,36.421447245000095],[71.7363236900002,36.395919088000156],[71.7509997970001,36.39111317900016],[71.76691613800014,36.391836650000144],[71.78262577300009,36.39653920500014],[71.79440800000012,36.40759796200013],[71.79151412000013,36.421292216000055],[71.77456425000011,36.44842234300013],[71.77322066200023,36.48004832000014],[71.79378788200015,36.490745341000135],[71.85859012900002,36.494155986000166],[71.87471317600007,36.499065246],[71.8876322830001,36.50800526900012],[71.89972456900009,36.518340556000126],[71.91347050000016,36.52759063700013],[71.96090946500013,36.54960479700013],[71.97703251100019,36.56304067000018],[71.99780643800008,36.57244578000005],[72.0388375250001,36.580455627],[72.05496057100017,36.59285797200009],[72.05630415900006,36.60190134700004],[72.05217004400006,36.61037628200013],[72.05041304500017,36.618644512000074],[72.05909468600012,36.62711944600009],[72.0708769120001,36.632287089],[72.09609501100007,36.63890167200019],[72.15417932100016,36.645464579000176],[72.1716459560001,36.65362945600019],[72.16461796100006,36.670062562000155],[72.14963179600014,36.68933787000019],[72.15345585200006,36.70210194900007],[72.16968225100007,36.71135203100009],[72.21360721900007,36.72644154900017],[72.30197391800019,36.742719625000106],[72.34620894400021,36.744890035000175],[72.3873433840001,36.75579376200015],[72.43312870300022,36.753416646000105],[72.45410933400015,36.75796417300013],[72.51674117000007,36.80059722900002],[72.56521366400014,36.82059600800015],[72.62960249900013,36.83294667600002],[72.69585168500012,36.83671905500013],[72.77936079900022,36.82679718000004],[72.86772749800011,36.83041453100013],[72.89687300600022,36.8369774370001],[72.92105757600021,36.84736440000013],[72.94586226400017,36.85222198500004],[72.97676477100005,36.842093404000096],[72.9905107020002,36.841576641000145],[73.00229292800006,36.846124166],[73.02627079300012,36.85945668500001],[73.04249719200011,36.864262594000124],[73.19184208200006,36.877026673],[73.22346805800007,36.87433949800005],[73.2527169190001,36.868034973000064],[73.26749637900016,36.866536357000044],[73.28186242700016,36.86798329700004],[73.33178186100011,36.88209096300007],[73.37973759000013,36.879248759000106],[73.4458834230002,36.88648346000015],[73.47688928200014,36.882866109000176],[73.50934208200007,36.878680318000036],[73.6400834560001,36.89663787800011],[73.709482565,36.89422106100007],[73.7111283020001,36.89416374800014],[73.7113349040001,36.894156553000144],[73.71184199100028,36.89413889400011],[73.77289188700016,36.892012838000156],[73.83407678300009,36.882866109000176],[73.8650826420002,36.87258249900016],[73.94693811000016,36.830879618000054],[73.97670373600013,36.82483347600011],[74.00636600700007,36.81573842400003],[74.03530480900017,36.815583394],[74.09431929500006,36.831241354000056],[74.1039311120002,36.8413182580001],[74.10878869600006,36.875631409],[74.11529992700011,36.889532369000094],[74.12966597500011,36.8984207160001],[74.14599572800014,36.90170216900019],[74.21172815000008,36.895139262000114],[74.23570601500009,36.90216725700013],[74.28459191900018,36.93423248300003],[74.3681010330001,36.97676218700009],[74.39404260300014,36.99402211500008],[74.4355904540001,37.003220521000074],[74.45698449700015,37.00438324],[74.47662154100007,36.9993189500001],[74.48034224400007,36.996915995000066],[74.48364953600017,36.993970439000165],[74.50173628700011,36.97242136700011],[74.52137333100015,36.95849456800012],[74.5373930260001,36.962241109000146],[74.54421431500006,36.99402211500008],[74.5481417240002,37.00164439000007],[74.549278606,37.00893076600012],[74.54741825400012,37.01567454000015],[74.54235396300012,37.02166900600018],[74.56178430200012,37.02967885400007],[74.62606978300008,37.042752991000114],[74.66244999200013,37.054483541000096],[74.67795292100018,37.05169301400006],[74.69221561700007,37.035880026000044],[74.71919071500005,37.016449687000076],[74.7925712480002,37.01515777600012]]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Spratly Islands","sov_a3":"PGA","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Spratly Islands","adm0_a3":"PGA","geou_dif":0,"geounit":"Spratly Islands","gu_a3":"PGA","su_dif":0,"subunit":"Spratly Islands","su_a3":"PGA","brk_diff":1,"name":"Spratly Is.","name_long":"Spratly Islands","brk_a3":"B46","brk_name":"Spratly Is.","brk_group":null,"abbrev":"Spratly Is.","postal":"SP","formal_en":null,"formal_fr":null,"note_adm0":"Disputed","note_brk":"Claimed by China, Taiwan, Malaysia, the Philippines, and Brunei","name_sort":"Spratly Islands","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":6,"mapcolor13":-99,"pop_est":100,"gdp_md_est":0.4,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"PG","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":23424921,"woe_id_eh":23424921,"woe_note":"Exact WOE match as country","adm0_a3_is":"-99","adm0_a3_us":"PGA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":11,"long_len":15,"abbrev_len":11,"tiny":-99,"homepart":1,"filename":"spratlyis.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.37647545700004,9.68012116100013],[114.37338300899998,9.679510809000163],[114.37061608200023,9.681382554000137],[114.37086022200018,9.684149481000103],[114.37322024800012,9.687648830000086],[114.37468509200019,9.689764716000099],[114.37867272200018,9.692694403000118],[114.3810327480002,9.69220612200013],[114.38184655000023,9.690171617000187],[114.38184655000023,9.68964264500012],[114.38086998800023,9.686224677000112],[114.37647545700004,9.68012116100013]]],[[[114.36280358200023,9.769110419000128],[114.36133873800004,9.767116604000094],[114.3599552740001,9.770046291000112],[114.36280358200023,9.769110419000128]]],[[[114.03394616000006,10.012396552000126],[114.02963300900015,10.011867580000157],[114.02767988399997,10.015122789000188],[114.02930748800011,10.017401434000163],[114.03777103000007,10.021063544000128],[114.04004967500023,10.0194766300001],[114.03394616000006,10.012396552000126]]],[[[114.37126712300008,10.18048737200013],[114.36540774800001,10.175482489000089],[114.36036217500012,10.176255601000108],[114.3586531910001,10.179348049000096],[114.35889733200023,10.18341705900015],[114.36304772200018,10.187079169000114],[114.36597740999999,10.187201239000089],[114.36980228000013,10.183905341000141],[114.37126712300008,10.18048737200013]]],[[[115.36793053500007,10.239162502000156],[115.3671981130001,10.237494208000143],[115.36597741000016,10.239162502000156],[115.36793053500007,10.239162502000156]]],[[[114.46843509200019,10.367743231000105],[114.46420332100016,10.367377020000092],[114.46168053500006,10.372015692000105],[114.46461022200018,10.377997137000122],[114.46697024800001,10.378363348000136],[114.46973717500006,10.376654364000132],[114.470957879,10.372300523000135],[114.46843509200019,10.367743231000105]]],[[[114.36695397200018,10.368068752000127],[114.36378014400012,10.367865302000068],[114.35889733200023,10.372544664000172],[114.35816491,10.377427476000065],[114.36036217500012,10.378566799000097],[114.36638431100017,10.374009507000139],[114.36784915500007,10.37083567900008],[114.36695397200018,10.368068752000127]]],[[[114.45980878999998,10.392726955000114],[114.45484459700006,10.388332424000126],[114.45020592500012,10.389797268000095],[114.44996178500017,10.394435940000122],[114.45191491,10.396633205000114],[114.45492597700003,10.397202867000175],[114.45834394600004,10.395819403000104],[114.45980878999998,10.392726955000114]]],[[[115.82496178500017,10.72675202000012],[115.81836998800006,10.720851955000086],[115.81462649800007,10.723334052000112],[115.81283613400014,10.727687893000095],[115.81462649800007,10.734320380000069],[115.81788170700011,10.735093492000175],[115.82813561300023,10.735988674000083],[115.83057701900023,10.734605210000097],[115.83139082100016,10.734198309000178],[115.83399498800006,10.729437567000089],[115.83269290500007,10.727728583000086],[115.83041425899998,10.727443752000156],[115.82496178500017,10.72675202000012]]],[[[115.84693444100017,10.823391018000152],[115.84571373800023,10.822414455000086],[115.8403426440001,10.823187567000105],[115.83375084699999,10.824042059000107],[115.83025149800002,10.827704169000143],[115.8296004570001,10.831773179000109],[115.83122806100017,10.833441473000121],[115.84148196700002,10.832709052000098],[115.84473717500006,10.83128489800012],[115.84522545700005,10.831203518000137],[115.848806186,10.826402085000055],[115.84693444100017,10.823391018000152]]],[[[114.28305097699999,11.041001695000176],[114.27857506600006,11.040432033000116],[114.27165774800002,11.043524481000105],[114.2722274100001,11.045843817000074],[114.27857506600006,11.050034898000192],[114.28272545700004,11.05068594000015],[114.286875847,11.046616929000095],[114.28305097699999,11.041001695000176]]],[[[115.02076256600017,11.117987372000172],[115.02165774800008,11.11456940300016],[115.02035566500014,11.109279690000093],[115.01840254000003,11.107123114000089],[115.01384524800007,11.107652085000069],[115.00912519600016,11.113226630000085],[115.01010175900015,11.115912177000055],[115.0123804050002,11.115301825000103],[115.02076256600017,11.117987372000172]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Philippines","sov_a3":"PHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Philippines","adm0_a3":"PHL","geou_dif":0,"geounit":"Philippines","gu_a3":"PHL","su_dif":0,"subunit":"Philippines","su_a3":"PHL","brk_diff":0,"name":"Philippines","name_long":"Philippines","brk_a3":"PHL","brk_name":"Philippines","brk_group":null,"abbrev":"Phil.","postal":"PH","formal_en":"Republic of the Philippines","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Philippines","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":2,"mapcolor13":8,"pop_est":97976603,"gdp_md_est":317500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"RP","iso_a2":"PH","iso_a3":"PHL","iso_n3":"608","un_a3":"608","wb_a2":"PH","wb_a3":"PHL","woe_id":23424934,"woe_id_eh":23424934,"woe_note":"Exact WOE match as country","adm0_a3_is":"PHL","adm0_a3_us":"PHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"PHL.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.84978274800012,4.796861070000134],[119.83399498800007,4.796616929000095],[119.81934655000018,4.803859768000109],[119.81234785200012,4.816839911000115],[119.83090253999997,4.82094961100016],[119.853770379,4.808254299000097],[119.8576766290001,4.798570054000137],[119.84978274800012,4.796861070000134]]],[[[119.4670516290001,4.666449286000116],[119.45655358200021,4.655707098000107],[119.45655358200021,4.717759507000139],[119.46273847699997,4.77578359600011],[119.45687910200016,4.842718817000119],[119.44849694100016,4.874416408000087],[119.43539472700004,4.902777411000116],[119.44703209700002,4.905503648000177],[119.45850670700004,4.90180084800015],[119.46876061300011,4.893703518000123],[119.47592207100003,4.883775132000125],[119.47934004000017,4.875962632000124],[119.48145592500023,4.867743231000133],[119.48292076900012,4.859361070000161],[119.48324629000015,4.850897528000132],[119.48658287900017,4.832220770000148],[119.50098717500023,4.799139716000113],[119.50440514400023,4.78261953300013],[119.50359134200002,4.764227606000175],[119.5008244150001,4.748480536000129],[119.49659264400022,4.733587958000086],[119.4670516290001,4.666449286000116]]],[[[119.8369246750001,4.862860419000157],[119.82105553500016,4.862779039000173],[119.79859459700018,4.879787502000141],[119.79037519600016,4.905951239000089],[119.79314212300002,4.92186107000019],[119.804372592,4.927435614000117],[119.81568444099999,4.922430731000161],[119.82146243600008,4.914129950000103],[119.84262129000011,4.904852606000134],[119.85075931100017,4.887884833000072],[119.84986412899998,4.87327708500014],[119.842051629,4.865668036000116],[119.8369246750001,4.862860419000157]]],[[[119.80795332099997,5.058661200000145],[119.801036004,5.05516185100015],[119.79656009200002,5.057603257000095],[119.79224694100006,5.055894273000177],[119.79029381600017,5.053045966000141],[119.78614342500023,5.046332098000107],[119.77466881599999,5.041896877000126],[119.75212649800014,5.036078192000076],[119.7457788420002,5.044012762000136],[119.74870853000013,5.062689520000119],[119.76929772200006,5.097560940000136],[119.78296959700018,5.11098867400014],[119.79835045700023,5.121039130000113],[119.80600019600017,5.118475653000104],[119.80551191500015,5.105047919000114],[119.80713951900005,5.093410549000112],[119.8105574880001,5.08246491100013],[119.81251061300021,5.069891669000143],[119.80795332099997,5.058661200000145]]],[[[120.22022545700011,5.26959870000013],[120.22754967500012,5.268459377000098],[120.23568769600003,5.271958726000179],[120.243907097,5.273504950000131],[120.25196373800023,5.26650625200014],[120.25294030000012,5.251532294000114],[120.23764082100014,5.190130927000125],[120.23243248800006,5.150458075000103],[120.22681725400017,5.129380601000179],[120.21656334700006,5.114976304000109],[120.20199629000003,5.119940497000158],[120.19117272200002,5.126369533000087],[120.18458092500023,5.136460679000137],[120.18238366000004,5.15281810100015],[120.18873131600016,5.182359117000118],[120.18962649800008,5.196519273000135],[120.18238366000004,5.204413153000118],[120.17595462300001,5.202622789000131],[120.17310631600012,5.195624091000141],[120.17156009200008,5.1876488300001],[120.168711785,5.183294989000102],[120.1635848320001,5.182318427000126],[120.14551842500006,5.183294989000102],[120.13795006600006,5.187201239000103],[120.13054446700002,5.196600653000118],[120.12452233200021,5.208075262000165],[120.12094160200016,5.218003648000163],[120.11052493600006,5.203436591000141],[120.10816491000006,5.17084381700009],[120.10043379000003,5.156642971000082],[120.08594811300006,5.150702216000141],[120.07097415500003,5.153876044000114],[120.0569767590001,5.159898179000123],[120.04574629000015,5.163478908000087],[120.02540123800006,5.160549221000068],[120.01742597700004,5.152492580000128],[120.01351972700006,5.14126211100013],[120.00489342500012,5.128648179000052],[119.99773196700006,5.126898505000057],[119.98829186300006,5.127671617000175],[119.98047936300006,5.126450914000159],[119.97706139400016,5.118719794000143],[119.97022545700023,5.08771393400012],[119.95411217500006,5.075506903000147],[119.94336998800016,5.078070380000057],[119.93425540500007,5.085516669000128],[119.92237389400012,5.08771393400012],[119.91431725400015,5.082017320000134],[119.90015709700005,5.063706773000177],[119.89161217500023,5.059800523000177],[119.86036217500005,5.059800523000177],[119.84717858200023,5.054510809000106],[119.838145379,5.048976955000085],[119.82984459700005,5.048814195000119],[119.81934655000018,5.059800523000177],[119.81690514400022,5.072211005000113],[119.81910241,5.106634833000143],[119.81251061300021,5.122503973000079],[119.82178795700011,5.130560614000103],[119.82943769600003,5.134955145000092],[119.86475670700015,5.146470445000119],[119.89551842500022,5.161200262000122],[119.90186608200005,5.166896877000098],[119.90796959700006,5.169378973000121],[119.94271894600004,5.190130927000125],[119.95671634200006,5.21482982000019],[119.96485436300011,5.222601630000113],[119.99626712300012,5.227525132000067],[120.01986738400014,5.236517645000092],[120.02849368600008,5.238511460000126],[120.03614342500006,5.241603908000116],[120.05258222699999,5.258978583000086],[120.06299889400006,5.259751695000105],[120.07007897200006,5.25665924700013],[120.07683353000007,5.254828192000147],[120.08692467500022,5.258978583000086],[120.08871504000004,5.263739325000174],[120.09327233200005,5.282700914000188],[120.097422722,5.29002513200011],[120.12419681100013,5.305650132000095],[120.13379967500005,5.317572333000129],[120.14625084699999,5.323879299000069],[120.16879316499998,5.332261460000126],[120.18783613399997,5.345119533000144],[120.19857832099997,5.349595445000119],[120.20875084700005,5.347967841000099],[120.21436608200023,5.340236721000082],[120.21631920700011,5.329046942000076],[120.21631920700011,5.276841539000145],[120.22022545700011,5.26959870000013]]],[[[125.42335045700005,5.377915757000068],[125.41871178500006,5.368475653000147],[125.41163170700004,5.368109442000133],[125.39909915500019,5.371771552000084],[125.38062584700006,5.370347398000121],[125.36378014400022,5.367173570000147],[125.35157311300006,5.371730861000103],[125.34327233200011,5.380601304000137],[125.33423912900017,5.38768138200011],[125.33350670700017,5.392523505000085],[125.34205162900015,5.400295315000093],[125.35816491000006,5.422064520000148],[125.37680097700004,5.431219794000128],[125.40479576900022,5.430487372000101],[125.41871178500006,5.425482489000146],[125.42221113400005,5.42023346600017],[125.42457116000016,5.407375393000137],[125.42335045700005,5.377915757000068]]],[[[120.89779707099999,5.49852122600015],[120.8798934250001,5.495754299000097],[120.85084069100006,5.505438544000143],[120.84343509200006,5.51007721600017],[120.83301842500005,5.521063544000128],[120.82374108200021,5.53363678600013],[120.81983483200023,5.543280341000098],[120.8243921230001,5.553208726000193],[120.83529707100014,5.562933661000145],[120.848887566,5.5704613300001],[120.86068769600014,5.5743675800001],[120.87305748800013,5.572414455000143],[120.88998457099999,5.557928778000104],[120.90455162900004,5.538031317000105],[120.90919030000023,5.519720770000148],[120.89779707099999,5.49852122600015]]],[[[120.81999759200018,5.667181708000115],[120.80811608200021,5.664292710000097],[120.79932701900005,5.667629299000112],[120.79664147200018,5.678615627000084],[120.80738366,5.695705471000124],[120.83301842500005,5.706773179000066],[120.84864342500023,5.706976630000113],[120.86011803499999,5.703843492000132],[120.87924238399998,5.694077867000189],[120.88266035199999,5.685288804000123],[120.87370853000006,5.682928778000174],[120.86011803499999,5.675848700000116],[120.8388778000001,5.668646552000084],[120.81999759200018,5.667181708000115]]],[[[120.92432701900022,5.711737372000115],[120.90992272200016,5.700018622000115],[120.89087975400015,5.709784247000158],[120.89234459700005,5.741441148000135],[120.90430748800006,5.759100653000147],[120.91618899800001,5.753241278000104],[120.92937259200006,5.73322174700013],[120.92432701900022,5.711737372000115]]],[[[121.23113040500007,5.800930080000157],[121.22527103000017,5.799261786000145],[121.19703209700006,5.800930080000157],[121.1621199880001,5.78758372600015],[121.14649498800023,5.789536851000193],[121.13502037900015,5.807074286000144],[121.13502037900015,5.821519273000192],[121.14226321700019,5.833889065000136],[121.15267988399998,5.843085028000118],[121.16285241000006,5.848049221000153],[121.17994225400011,5.846747137000165],[121.19516035200016,5.840480861000116],[121.20785566500004,5.831203518000151],[121.21745853000019,5.820746161000087],[121.22982832100014,5.816148179000137],[121.23462975400005,5.810695705000114],[121.23113040500007,5.800930080000157]]],[[[121.84620201900012,6.042792059000092],[121.87094160200016,6.033107815000136],[121.9023543630001,6.033636786000115],[121.92904707100004,6.045355536000101],[121.94044030000005,6.046087958000129],[121.94320722700016,6.033636786000115],[121.937754754,6.029445705000085],[121.91277103000017,6.016017971000096],[121.86841881600006,5.999741929000066],[121.85767662900005,6.00226471600017],[121.80494225400004,6.037176825000102],[121.78467858200021,6.059556382000109],[121.776621941,6.077378648000177],[121.79371178500004,6.074611721000124],[121.84620201900012,6.042792059000092]]],[[[121.04224694100006,6.097113348000121],[121.077403191,6.095282294000143],[121.09636478000002,6.096136786000145],[121.11475670700005,6.095119533000087],[121.12582441500004,6.090643622000115],[121.14828535200003,6.077378648000177],[121.15935306100006,6.074611721000124],[121.179047071,6.063625393000081],[121.20232181100017,6.013169664000145],[121.21778405000023,5.99892812700014],[121.23601321700018,6.003566799000083],[121.25245201900012,6.017320054000095],[121.27125084700005,6.02619049700013],[121.31657962300007,6.006089585000097],[121.33887780000013,6.004339911000102],[121.38160240999999,6.005682684000178],[121.40349368600008,5.999457098000121],[121.42123457100014,5.987127997000172],[121.42872155000012,5.969794012000179],[121.41944420700005,5.947984117000132],[121.40992272200016,5.943019924000083],[121.39991295700005,5.942816473000136],[121.39177493600006,5.939886786000116],[121.38843834700005,5.926906643000109],[121.38949628999997,5.909857489000061],[121.38575280000023,5.911363023000106],[121.34766686300007,5.906195380000113],[121.34058678499999,5.90326569200009],[121.33082116000017,5.895331122000115],[121.30298912899998,5.865139065000108],[121.29249108200023,5.858832098000078],[121.2814233730002,5.859035549000125],[121.2710067070001,5.863918361000088],[121.26172936300017,5.871975002000127],[121.25342858200005,5.885321356000134],[121.25196373800011,5.89679596600017],[121.25318444100004,5.906927802000141],[121.25245201900012,5.916327216000155],[121.22779381599999,5.942124742000189],[121.18946373800006,5.940252997000129],[121.10792076900023,5.90326569200009],[121.08822675900004,5.891180731000175],[121.08106530000005,5.888169664000173],[121.07300866000007,5.889064846000082],[121.06714928500011,5.894232489000074],[121.05445397200005,5.912339585000083],[121.04981530000012,5.916327216000155],[121.0083113940001,5.923773505000142],[120.99952233200021,5.9200707050001],[120.96387780000005,5.89642975500007],[120.94361412900017,5.886867580000086],[120.93409264400006,5.885687567000147],[120.92286217500005,5.889064846000082],[120.91765384200019,5.893988348000136],[120.91675866000011,5.899969794000143],[120.91724694100016,5.905707098000121],[120.91537519600004,5.910101630000099],[120.90935306100017,5.913519598000106],[120.89682050900005,5.916571356000105],[120.89185631600006,5.9200707050001],[120.87631269600016,5.942572333000086],[120.87183678500013,5.961004950000117],[120.8764754570001,5.97870514500012],[120.88884524800008,5.99892812700014],[120.9055281910001,6.015041408000116],[120.94320722700014,6.031154690000093],[120.97095787900004,6.050116278000104],[120.99284915500017,6.052679755000113],[121.00171959700006,6.057562567000075],[121.02418053500004,6.088609117000189],[121.03272545700017,6.095119533000087],[121.04224694100006,6.097113348000121]]],[[[120.55982506600012,6.239081122000158],[120.54558353000017,6.238470770000106],[120.50611412900005,6.244086005000113],[120.49463951900007,6.249335028000104],[120.48861738399998,6.260158596000096],[120.49203535199999,6.267401434000121],[120.50196373800011,6.271389065000093],[120.51498457100008,6.272609768000108],[120.52214603,6.277248440000135],[120.53003991000011,6.288072007000125],[120.536468946,6.300685940000108],[120.53931725400004,6.310492255000142],[120.5424910820001,6.318019924000097],[120.55665123800021,6.340521552000097],[120.56267337300002,6.362005927000125],[120.56959069100004,6.37189362200013],[120.57862389400023,6.379095770000077],[120.58814537900005,6.380764065000079],[120.59538821700006,6.376044012000165],[120.60035241,6.367580471000124],[120.60352623800007,6.357814846000095],[120.60499108200021,6.349351304000052],[120.60434004,6.329657294000114],[120.58285566500017,6.261460679000095],[120.57732181100006,6.251532294000086],[120.56983483200005,6.243638414000116],[120.55982506600012,6.239081122000158]]],[[[121.62330162900017,6.567531643000152],[121.61638431100017,6.56142812700007],[121.61036217500006,6.569566148000177],[121.60792076900022,6.591620184000178],[121.60157311300011,6.605454820000175],[121.58961022200018,6.620103257000096],[121.58253014400012,6.631659247000115],[121.59083092500012,6.636297919000143],[121.59929446700002,6.64565664300008],[121.60726972699997,6.662990627000155],[121.61670983200011,6.672267971000124],[121.62891686300006,6.657416083000057],[121.62891686300006,6.588568427000097],[121.62330162900017,6.567531643000152]]],[[[122.05762780000005,6.413885809000121],[122.03874759200002,6.410223700000159],[121.99488366000011,6.410345770000134],[121.96225019600017,6.404852606000105],[121.95753014400022,6.407294012000136],[121.95639082099999,6.428127346000124],[121.95411217500012,6.436916408000087],[121.95004316500014,6.444525458000128],[121.88005618600008,6.503241278000132],[121.87956790500019,6.556138414000188],[121.87501061300023,6.57485586100016],[121.85564212300018,6.583400783000087],[121.83318118600012,6.585150458000086],[121.81446373800023,6.592922268000081],[121.8068139980002,6.619289455000086],[121.8108016290001,6.645168361000088],[121.82203209700018,6.66095612200013],[121.83920332100003,6.668931382000095],[121.94019616000004,6.677313544000143],[121.94825280000006,6.680568752000099],[121.95834394600014,6.695054429000137],[121.99789472699997,6.712062893000108],[122.01295006599999,6.729925848000079],[122.02312259200006,6.736639716000126],[122.04021243600019,6.739325262000108],[122.06666100400015,6.740708726000179],[122.07520592500012,6.739813544000086],[122.084239129,6.735663153000147],[122.09815514400012,6.721584377000112],[122.10596764400005,6.715562242000189],[122.11646569100006,6.711086330000128],[122.14128665500013,6.705389716000155],[122.15284264400023,6.704575914000145],[122.15626061300021,6.700344143000122],[122.16114342500012,6.690904039000102],[122.16871178500018,6.681586005000071],[122.18043053500006,6.677313544000143],[122.22510826900012,6.671087958000101],[122.23536217500023,6.66620514500012],[122.24154707100004,6.660386460000069],[122.246348504,6.654689846000096],[122.25171959700006,6.649969794000171],[122.26254316500015,6.645453192000119],[122.28809655000025,6.637884833000086],[122.29672285200006,6.633246161000145],[122.32927493600019,6.613836981000134],[122.33521569100006,6.603338934000163],[122.32129967500023,6.588568427000097],[122.30062910200004,6.582342841000127],[122.25416100400011,6.581284898000163],[122.23536217500023,6.571193752000113],[122.22486412900017,6.558254299000112],[122.21566816499997,6.544012762000108],[122.20866946700014,6.528753973000136],[122.20386803500004,6.512844143000109],[122.19825280000012,6.467596747000171],[122.18864993600008,6.451076565000108],[122.16635175900004,6.444525458000128],[122.14380944100007,6.4429385440001],[122.121755405,6.438544012000108],[122.05762780000005,6.413885809000121]]],[[[118.52458743600017,7.043646552000084],[118.53248131600016,7.035101630000142],[118.54444420700011,7.013088283000144],[118.53760826900005,7.006293036000116],[118.52051842500023,7.013373114000089],[118.520274285,7.003159898000135],[118.53077233200004,6.978949286000144],[118.51872806100008,6.970933335000097],[118.50310306100008,6.971421617000175],[118.47673587300007,6.978949286000144],[118.4451603520001,6.982326565000065],[118.43555748800011,6.989243882000068],[118.42839603000006,7.006293036000116],[118.42725670700023,7.01821523600016],[118.43140709700018,7.027085679000109],[118.44109134200002,7.034328518000123],[118.456309441,7.041001695000176],[118.47478274800001,7.037014065000108],[118.48698978000017,7.039780992000161],[118.497325066,7.044663804000137],[118.51026451900012,7.047186591000155],[118.52458743600017,7.043646552000084]]],[[[125.78394616,6.917425848000092],[125.77686608200023,6.894029039000188],[125.76775149800008,6.898871161000088],[125.753672722,6.917466539000173],[125.74537194100006,6.936957098000065],[125.73829186300004,6.979193427000098],[125.72535241000017,7.004787502000156],[125.72193444100016,7.015570380000071],[125.71762129000014,7.052232164000173],[125.71216881600006,7.05630117400014],[125.70378665500007,7.056708075000145],[125.68384850400017,7.065252997000171],[125.67790774800008,7.066392320000105],[125.67408287900005,7.070217190000122],[125.6717228520001,7.081976630000099],[125.67269941500015,7.09275950700011],[125.67693118600017,7.103908596000124],[125.68287194099999,7.112616278000118],[125.68913821700008,7.116115627000098],[125.69654381600006,7.12693919500019],[125.70215905000023,7.177150783000086],[125.70655358200023,7.191839911000089],[125.71583092500006,7.195949611000131],[125.72364342500018,7.193101304000094],[125.72934004000015,7.186102606000105],[125.73316491000016,7.177557684000178],[125.74952233200004,7.16205475500007],[125.76734459700005,7.149725653000118],[125.78191165500019,7.135199286000088],[125.78785241,7.112982489000132],[125.78126061300021,6.984849351000179],[125.78419030000023,6.963120835000112],[125.79127037900005,6.948187567000076],[125.79371178500006,6.939520575000159],[125.7897241550002,6.92877838700015],[125.78394616,6.917425848000092]]],[[[122.96176191500004,7.398911851000149],[122.97169030000022,7.3836123720001],[122.95167076900005,7.386419989000145],[122.944509311,7.389837958000058],[122.95053144600004,7.373480536000144],[122.95232181100012,7.36351146000014],[122.95069420700013,7.355698960000069],[122.94353274800008,7.349269924000139],[122.936778191,7.348578192000104],[122.93034915500017,7.349676825000146],[122.92457116000006,7.348863023000134],[122.89478600400005,7.326808986000144],[122.88298587300008,7.320949611000103],[122.87452233200023,7.318670966000127],[122.86158287900005,7.316961981000119],[122.85499108200023,7.314764716000126],[122.85075931100002,7.310288804000066],[122.84555097700004,7.297796942000147],[122.84205162900007,7.294256903000175],[122.82699629000004,7.291327216000155],[122.81666100399998,7.294907945000119],[122.80860436300006,7.30487702000012],[122.80054772200005,7.320949611000103],[122.79468834700012,7.346340236000118],[122.794200066,7.383937893000124],[122.8037215500001,7.417466539000159],[122.828379754,7.430812893000081],[122.84310957099999,7.422796942000133],[122.85499108200023,7.407863674000082],[122.86719811300011,7.395982164000131],[122.88298587300008,7.39728424700013],[122.88982181100019,7.407212632000138],[122.89128665500007,7.419989325000173],[122.89429772200006,7.431586005000098],[122.90503991000017,7.437730210000082],[122.92351321700019,7.430853583000072],[122.94410241000006,7.41624583500014],[122.96176191500004,7.398911851000149]]],[[[117.08025149800007,8.029486395000118],[117.08204186300023,8.02415599200016],[117.09156334700006,8.011542059000178],[117.08692467500013,8.00421784100017],[117.07715905000005,7.999172268000137],[117.07154381600017,7.993150132000138],[117.07276451900007,7.977525132000053],[117.08326256600004,7.941473700000102],[117.08578535200014,7.921128648000191],[117.08472740999999,7.915920315000108],[117.07943769600016,7.907171942000133],[117.0783797540001,7.903753973000121],[117.07764733200017,7.88446686400009],[117.0783797540001,7.883286851000065],[117.08497155000018,7.876288153000175],[117.08676191500014,7.872137762000136],[117.08204186300023,7.870266018000081],[117.08008873800011,7.868719794000128],[117.07300866000006,7.861517645000105],[117.07154381600017,7.859361070000189],[117.06714928500016,7.848700262000165],[117.05567467500022,7.835638739000089],[117.04029381599999,7.824937242000161],[117.02369225400005,7.821844794000171],[117.03419030000012,7.80463288000007],[117.02621504000015,7.7984072940001],[117.00993899800002,7.800279039000159],[116.99586022200016,7.80756256700009],[117.00163821700006,7.82367584800015],[116.99634850400017,7.839260158000143],[116.97592207099999,7.870266018000081],[116.95582116000006,7.921087958000114],[116.95492597700014,7.926011460000082],[116.96168053500011,8.061997789000186],[116.97266686300024,8.054836330000157],[116.97494550900002,8.04474518400009],[116.97592207099999,8.034572658000144],[116.98218834700006,8.027289130000128],[116.9967554050002,8.02732982000012],[117.00196373800006,8.039943752000113],[117.00513756600006,8.054836330000157],[117.01319420700004,8.061997789000186],[117.05844160199999,8.069810289000188],[117.07585696700009,8.069566148000149],[117.08497155000018,8.057847398000163],[117.08090254000004,8.0382754580001],[117.08025149800007,8.029486395000118]]],[[[117.039805535,8.077215887000179],[117.03052819100017,8.06826406500015],[117.02051842500005,8.077866929000123],[117.01539147200018,8.088120835000069],[117.00904381600006,8.097154039000158],[116.99586022200016,8.103013414000117],[117.02711022200006,8.12872955900015],[117.0454207690001,8.135809637000122],[117.05787194100004,8.123480536000073],[117.06836998800011,8.092759507000082],[117.06812584700006,8.086249091000099],[117.05941816500008,8.081244208000143],[117.04965254000004,8.07982005400008],[117.039805535,8.077215887000179]]],[[[117.20573978000013,8.155503648000163],[117.18482506600004,8.150132554000109],[117.16179446700019,8.15672435100008],[117.15235436300004,8.1700707050001],[117.15479576900012,8.180405992000187],[117.167735222,8.178127346000123],[117.18970787900004,8.176743882000139],[117.20484459699999,8.166815497000144],[117.20573978000013,8.155503648000163]]],[[[117.318125847,8.324530341000141],[117.31959069100017,8.323553778000159],[117.32227623800021,8.323635158000144],[117.32545006599999,8.322739976000065],[117.35531660199997,8.30272044500019],[117.35531660199997,8.274644273000177],[117.34888756600016,8.24469635600012],[117.35954837300012,8.219061591000155],[117.35132897200002,8.207220770000092],[117.34253991000004,8.197211005000113],[117.33187910200003,8.193182684000135],[117.31861412900011,8.199204820000148],[117.28972415500019,8.184312242000189],[117.27881920700011,8.207098700000117],[117.27564537900004,8.242987372000115],[117.27003014400022,8.267523505000142],[117.27654056100002,8.281398830000128],[117.27963300900004,8.311102606000148],[117.28443444099999,8.322739976000065],[117.29281660200014,8.317857164000188],[117.30152428500007,8.318019924000154],[117.31006920700005,8.322007554000123],[117.31861412900011,8.32892487200013],[117.318125847,8.324530341000141]]],[[[117.23601321700018,8.322739976000065],[117.242849155,8.315252997000101],[117.25342858200005,8.321966864000132],[117.26075280000006,8.32111237200013],[117.26449629000004,8.31378815300013],[117.26392662900004,8.301011460000097],[117.24333743600013,8.282904364000089],[117.21461022200006,8.265122789000186],[117.19011478000002,8.262030341000113],[117.18140709700005,8.287990627000099],[117.18946373800006,8.299546617000132],[117.242849155,8.343207098000121],[117.24089603000017,8.330511786000073],[117.23959394600008,8.327215887000122],[117.23601321700018,8.322739976000065]]],[[[119.95972741000017,8.880601304000066],[119.96062259200008,8.877101955000157],[119.95834394599999,8.877183335000138],[119.95972741000017,8.880601304000066]]],[[[119.97144616000017,8.880926825000172],[119.96924889400005,8.880926825000172],[119.96827233200011,8.884100653000147],[119.97193444100007,8.882391669000143],[119.97144616000017,8.880926825000172]]],[[[119.96517988400005,8.887925523000163],[119.96534264400006,8.887193101000136],[119.96566816499998,8.887396552000084],[119.96607506599999,8.88568756700009],[119.96485436300011,8.88499583500014],[119.96436608200013,8.885646877000099],[119.96420332100004,8.885565497000115],[119.96322675900014,8.88703034100017],[119.96517988400005,8.887925523000163]]],[[[119.96762129000015,8.892279364000146],[119.9677840500001,8.891546942000117],[119.96827233200011,8.891791083000072],[119.96851647200006,8.890041408000073],[119.96729576900012,8.889349677000125],[119.96680748800023,8.88996002800009],[119.96680748800023,8.889878648000106],[119.96566816499998,8.891424872000144],[119.96762129000015,8.892279364000146]]],[[[124.77947024800007,9.07949453300013],[124.770192905,9.07737864800012],[124.7629500660001,9.079006252000141],[124.75709069100004,9.092718817000076],[124.75001061300011,9.094305731000105],[124.74089603000019,9.094468492000159],[124.732676629,9.096136786000088],[124.672129754,9.125392971000108],[124.6467391290001,9.148871161000073],[124.63648522200018,9.182359117000118],[124.6467391290001,9.218898830000157],[124.67310631600016,9.242377020000134],[124.7085067070001,9.25018952000012],[124.74634850400004,9.239488023000192],[124.7630314460001,9.2144229190001],[124.7724715500001,9.204046942000105],[124.78419030000006,9.19977448100009],[124.79346764400023,9.19269440300013],[124.80323326900005,9.17609284100017],[124.80836022200016,9.156805731000134],[124.80095462300018,9.128729559000135],[124.80258222700006,9.1124942080001],[124.80128014400024,9.096258856000146],[124.78785241000006,9.083075262000108],[124.77947024800007,9.07949453300013]]],[[[123.70053144600014,9.219631252000099],[123.68995201900012,9.205959377000156],[123.68376712300001,9.199693101000108],[123.68344160200004,9.188299872000144],[123.68653405000012,9.180609442000133],[123.69800866000006,9.165025132000137],[123.70248457100003,9.16453685100005],[123.71452884200002,9.1574160830001],[123.7224227220001,9.14911530200011],[123.71534264400023,9.145168361000131],[123.70329837300014,9.128363348000121],[123.69800866000006,9.124009507000125],[123.68970787900018,9.122544664000158],[123.66041100400005,9.124009507000125],[123.65300540500006,9.12295156500008],[123.64763431100017,9.119696356000118],[123.64454186300021,9.114325262000165],[123.64332116000001,9.106919664000173],[123.6399845710001,9.098578192000119],[123.63233483200021,9.09833405200007],[123.61548912900005,9.103583075000145],[123.59636478000006,9.103989976000065],[123.57846113400004,9.107001044000157],[123.56120853000019,9.114243882000096],[123.47950280000012,9.17182038000007],[123.47120201900022,9.185451565000108],[123.47461998800023,9.19708893400012],[123.50001061300004,9.220282294000143],[123.51758873800011,9.209865627000156],[123.54086347700004,9.213446356000134],[123.56495201900023,9.2261416690001],[123.59473717500022,9.25128815300016],[123.60254967500023,9.255438544000114],[123.6074324880001,9.26215241100006],[123.60922285199999,9.278265692000133],[123.61443118600019,9.289252020000092],[123.6269637380001,9.29393138200011],[123.64210045700011,9.29364655200007],[123.65544681100019,9.289129950000117],[123.66480553500007,9.275458075000172],[123.67920983200011,9.245306708000058],[123.68751061300004,9.239488023000192],[123.70386803500011,9.233303127000127],[123.70053144600014,9.219631252000099]]],[[[123.78516686300006,9.552313544000114],[123.76514733200011,9.549953518000152],[123.74984785200016,9.554144598000093],[123.7376408210001,9.57908763200011],[123.72632897200018,9.586981512000179],[123.72722415500019,9.591213283000101],[123.7392684250001,9.594061591000141],[123.74789472699999,9.599107164000173],[123.75456790500007,9.605414130000113],[123.76587975400005,9.614081122000115],[123.781911655,9.623521226000122],[123.82064863400014,9.639593817000105],[123.84131920700011,9.64240143400015],[123.860524936,9.630072333000115],[123.86833743600002,9.62051015800013],[123.86231530000012,9.608547268000095],[123.84424889400012,9.588853257000054],[123.80453535199997,9.560288804000066],[123.78516686300006,9.552313544000114]]],[[[121.22364342500006,9.583319403000132],[121.21094811300011,9.575873114000146],[121.21355228000012,9.584377346000096],[121.22364342500006,9.605698960000055],[121.22803795700017,9.61005280200014],[121.23910566499997,9.61432526200015],[121.24488366000017,9.624416408000116],[121.25001061300006,9.635931708000058],[121.2586369150001,9.644842841000099],[121.25782311300004,9.638373114000089],[121.25660241000004,9.635565497000144],[121.25473066499998,9.633856512000136],[121.25245201900012,9.631170966000155],[121.25684655000008,9.627346096000139],[121.25717207100003,9.624457098000107],[121.23462975400005,9.594305731000176],[121.22364342500006,9.583319403000132]]],[[[125.96021569099999,9.755804755000113],[125.95972741000004,9.747219143000109],[125.96908613400015,9.751939195000105],[125.9728296230002,9.754624742000175],[125.97461998800011,9.738348700000145],[125.97291100400018,9.715277411000102],[125.97543379,9.69464752800016],[125.99024498800004,9.685736395000134],[126.00147545700005,9.67674388200011],[125.99756920700004,9.65607330900009],[125.98023522200018,9.617499091000127],[125.98511803500017,9.605658270000063],[125.98414147200018,9.589504299000097],[125.97852623800006,9.57518138200011],[125.96941165500019,9.56907786700013],[125.95394941500014,9.56565989800012],[125.9469507170002,9.566229559000178],[125.95289147199999,9.581976630000142],[125.94629967500023,9.587591864000146],[125.93523196700019,9.589911200000103],[125.92505944100007,9.589544989000089],[125.92505944100007,9.596380927000112],[125.93531334700019,9.596014716000099],[125.93873131600016,9.596380927000112],[125.93873131600016,9.603827216000083],[125.91814212300007,9.617499091000127],[125.91814212300007,9.61005280200014],[125.91553795700017,9.618963934000178],[125.91651451900022,9.629136460000126],[125.92505944100007,9.65102773600016],[125.92969811300004,9.657945054000066],[125.93360436300006,9.660386460000097],[125.93669681100009,9.663560289000158],[125.93873131600016,9.672756252000127],[125.93897545700023,9.681341864000146],[125.93751061300006,9.692531643000152],[125.93873131600016,9.699408270000076],[125.92888431100008,9.71507396000014],[125.92725670700023,9.738714911000073],[125.93482506600012,9.759914455000157],[125.95240319100004,9.768296617000118],[125.95801842500025,9.761379299000124],[125.96021569099999,9.755804755000113]]],[[[125.6435653000001,9.61127350500007],[125.67090905000008,9.600083726000065],[125.69288170700011,9.603827216000083],[125.69109134200019,9.600165106000134],[125.69011478000003,9.596909898000177],[125.68864993600009,9.59349192900008],[125.68531334700005,9.589544989000089],[125.69849694100017,9.589992580000086],[125.70590254000008,9.585150458000115],[125.71273847699997,9.575873114000146],[125.7226668630001,9.57550690300013],[125.74398847700016,9.577378648000192],[125.753672722,9.575873114000146],[125.77247155000018,9.554836330000128],[125.78101647200018,9.54857005400008],[125.79086347700003,9.545314846000124],[125.84896894600016,9.537176825000117],[125.86801191500014,9.526922919000171],[125.90113366000011,9.497056382000096],[125.91065514400012,9.494208075000145],[125.92318769599997,9.494289455000128],[125.93409264400016,9.492336330000086],[125.93873131600016,9.483710028000173],[125.94044030000013,9.475002346000096],[125.948985222,9.463080145000148],[125.95240319100004,9.453029690000093],[125.96338951900005,9.472479559000178],[125.96599368600017,9.480292059000163],[125.9728296230002,9.480292059000163],[125.97266686300023,9.464016018000137],[125.97120201900006,9.454087632000139],[125.96745853000007,9.447170315000136],[125.95972741000004,9.43935781500015],[125.94857832100004,9.434230861000131],[125.92025800900015,9.426906643000123],[125.91187584699999,9.418198960000138],[125.91098066500003,9.404933986000117],[125.91675866000016,9.395412502000111],[125.926931186,9.388902085000126],[125.93873131600016,9.3847110050001],[125.95582116000006,9.381781317000076],[125.96664472700006,9.384263414000188],[125.99390709699999,9.39777252800016],[125.99195397200016,9.357855536000116],[125.99659264400012,9.324652411000102],[126.0117293630001,9.293850002000127],[126.05795332099999,9.245998440000093],[126.06544030000018,9.241766669000171],[126.07585696700008,9.239488023000192],[126.08912194100017,9.240871486000088],[126.10987389400005,9.251206773000177],[126.14340254000004,9.261419989000132],[126.17937259200019,9.297186591000141],[126.19996178500006,9.30841705900015],[126.219899936,9.305650132000096],[126.22461998800023,9.2909610050001],[126.21941165500002,9.272202867000132],[126.20036868600006,9.240627346000139],[126.19336998800017,9.216376044000143],[126.18572024800001,9.17182038000007],[126.18572024800001,9.138332424000112],[126.17896569100012,9.093003648000192],[126.18360436300023,9.081488348000079],[126.19450931100019,9.077460028000104],[126.20704186300011,9.076117255000113],[126.21705162900015,9.07249583500014],[126.22299238400002,9.063910223000136],[126.23365319100006,9.039374091000113],[126.2402449880001,9.028469143000137],[126.31275475400005,8.956244208000143],[126.32227623800024,8.935370184000178],[126.32357832100006,8.922349351000094],[126.33594811300006,8.884466864000075],[126.33187910200003,8.870021877000113],[126.33236738399997,8.86107005400008],[126.34546959700016,8.853257554000095],[126.34310957100004,8.845119533000158],[126.33822675900015,8.837632554000109],[126.33594811300006,8.836086330000157],[126.328786655,8.812730210000067],[126.31690514400005,8.787990627000099],[126.30005944100017,8.768296617000145],[126.27816816500014,8.76032135600009],[126.2402449880001,8.73505280200014],[126.23414147200006,8.733628648000163],[126.23414147200006,8.719183661000116],[126.24187259200004,8.710598049000097],[126.26148522200012,8.698879299000112],[126.26148522200012,8.692694403000147],[126.25757897200012,8.69049713700015],[126.25700931100002,8.68968333500014],[126.25684655000006,8.688544012000108],[126.25456790500019,8.685207424000083],[126.24219811300017,8.690008856000162],[126.23161868600019,8.692206122000158],[126.2099715500001,8.692694403000147],[126.19776451900023,8.688299872000158],[126.17367597700004,8.669094143000109],[126.13843834700016,8.654038804000095],[126.11890709700016,8.630560614000117],[126.11052493600002,8.607123114000146],[126.13038170700023,8.58649323100012],[126.148203972,8.540676174000126],[126.15845787900004,8.527573960000069],[126.16724694099999,8.526597398000177],[126.19996178500006,8.527573960000069],[126.21957441499997,8.521714585000112],[126.22877037900017,8.521470445000162],[126.2402449880001,8.527573960000069],[126.22071373800023,8.540432033000087],[126.21420332100016,8.548244533000073],[126.22046959700016,8.555487372000101],[126.23178144600016,8.554836330000143],[126.24480228000006,8.549302476000122],[126.25749759200014,8.54686107000019],[126.26832116,8.555487372000101],[126.29151451900023,8.544623114000117],[126.35694420700011,8.534369208000086],[126.35621178500016,8.536281643000137],[126.35914147200013,8.539374091000127],[126.36443118600008,8.541815497000158],[126.37012780000023,8.541815497000158],[126.36980228,8.538885809000135],[126.37322024800001,8.5308291690001],[126.38062584700006,8.517645575000145],[126.40105228000019,8.502183335000126],[126.40528405000012,8.492621161000145],[126.39795983200011,8.47915273600016],[126.40202884200006,8.476304429000123],[126.40691165500006,8.470404364000089],[126.41163170700021,8.466131903000175],[126.38502037899998,8.46735260600009],[126.3743595710001,8.464544989000146],[126.37012780000023,8.455552476000122],[126.36687259200019,8.43207428600006],[126.37012780000023,8.427639065000093],[126.38379967500012,8.431952216000083],[126.38770592500006,8.41535065300013],[126.38005618600008,8.395575262000108],[126.35694420700011,8.363714911000088],[126.35230553500017,8.362372137000179],[126.34050540500012,8.355169989000144],[126.33253014400023,8.34707265800013],[126.339610222,8.343207098000121],[126.34327233200004,8.338120835000096],[126.35694420700011,8.311916408000158],[126.36500084700005,8.304999091000155],[126.37989342500012,8.302069403000145],[126.38843834699999,8.29291413000007],[126.37761478000002,8.267523505000142],[126.34587649800008,8.231390692000105],[126.33863366000004,8.214585679000095],[126.34644616000006,8.195502020000106],[126.36158287900004,8.18716054900014],[126.37761478000002,8.191595770000106],[126.39332116000017,8.200506903000145],[126.42335045700023,8.211004950000117],[126.45932050900004,8.24017975500007],[126.46306399800008,8.229925848000136],[126.45728600400017,8.144720770000148],[126.45394941500015,8.129339911000116],[126.45533287900005,8.11505768400012],[126.46615644600003,8.095526434000135],[126.44288170700021,8.081447658000101],[126.43148847700014,8.045599677000096],[126.43425540500013,8.005926825000174],[126.45313561300023,7.980129299000139],[126.43482506600016,7.961818752000084],[126.39551842500005,7.933335679000081],[126.38379967500012,7.911200262000108],[126.38347415500007,7.899562893000095],[126.38306725400015,7.885687567000105],[126.39136803500006,7.858303127000141],[126.40609785200004,7.833238023000134],[126.4253035820001,7.815008856000162],[126.45492597700004,7.797308661000059],[126.45932050900004,7.79169342700007],[126.46338951900005,7.781073309000121],[126.48747806100017,7.74673086100016],[126.51099694100006,7.732733466000098],[126.56226647200018,7.727525132000109],[126.58285566500004,7.719427802000083],[126.5756942070001,7.697088934000149],[126.5717879570001,7.674953518000081],[126.56918378999997,7.626369533000115],[126.57357832100016,7.603501695000104],[126.59278405000022,7.553900458000086],[126.60092207100014,7.506415106000175],[126.60726972700014,7.4851748720001],[126.60865319100007,7.465318101000178],[126.59734134200008,7.445054429000081],[126.58570397200018,7.437323309000163],[126.57471764400012,7.433010158000157],[126.56641686300021,7.426011460000084],[126.56299889400012,7.410345770000105],[126.56674238400015,7.406683661000059],[126.58969160200016,7.389837958000058],[126.58204186300011,7.367377020000148],[126.58073978000013,7.320013739000117],[126.56918378999997,7.301092841000099],[126.57740319100016,7.295314846000124],[126.61036217500023,7.277044989000061],[126.61768639400016,7.276841539000103],[126.61231530000012,7.257879950000103],[126.58838951900022,7.226792710000097],[126.58285566500004,7.208644924000097],[126.57976321700002,7.201076565000135],[126.57195071700008,7.198187567000105],[126.56299889400012,7.196356512000136],[126.55567467500012,7.191839911000089],[126.55030358200017,7.183050848000107],[126.52963300900014,7.129136460000097],[126.52320397200006,7.118841864000075],[126.49105879000014,7.088812567000119],[126.47641035200014,7.066229559000149],[126.46851647200016,7.038763739000103],[126.46615644600003,7.003119208000143],[126.45150800900002,6.983547268000081],[126.41749108200011,6.9800479190001],[126.37859134200018,6.987372137000093],[126.34945722700004,7.000067450000159],[126.32398522200005,6.978094794000143],[126.30958092500018,6.948919989000103],[126.30323326900023,6.918646552000098],[126.30176842500006,6.893255927000083],[126.30746504000015,6.881415106000119],[126.3344832690001,6.858587958000101],[126.34327233200004,6.849188544000171],[126.34750410199999,6.833889065000122],[126.34929446700008,6.812933661000073],[126.34701582100004,6.794501044000128],[126.339610222,6.786525783000087],[126.30884850400005,6.798041083000115],[126.291270379,6.825832424000083],[126.26832116,6.890204169000171],[126.24268639400023,6.919256903000161],[126.21290123800023,6.934027411000144],[126.1919051440001,6.925116278000104],[126.19255618600008,6.883368231000161],[126.18572024800001,6.883368231000161],[126.18311608200021,6.889471747000144],[126.17212975400015,6.903876044000114],[126.16797936300023,6.882554429000066],[126.17855878999997,6.861395575000145],[126.19288170700005,6.841701565000108],[126.20785566500004,6.805894273000192],[126.22575931100006,6.789740302000125],[126.24431399800008,6.776516018000095],[126.25456790500019,6.766669012000165],[126.25717207099997,6.744818427000125],[126.2441512380001,6.703924872000101],[126.22877037900017,6.616197007000096],[126.22689863400005,6.468939520000077],[126.21021569100017,6.3902041690001],[126.20606530000012,6.299302476000136],[126.20020592500006,6.283189195000162],[126.18572024800001,6.286851304000109],[126.18213951900016,6.300726630000098],[126.17774498800004,6.35146719000015],[126.17554772200018,6.362616278000175],[126.14128665500013,6.386175848000121],[126.13721764400023,6.39557526200015],[126.13697350399998,6.407416083000115],[126.13819420700021,6.419867255000128],[126.13786868600017,6.430853583000085],[126.11296634200006,6.47736237200013],[126.10010826900023,6.493719794000143],[126.09506269600004,6.514105536000116],[126.08269290500019,6.63971588700015],[126.08432050900004,6.663072007000139],[126.09636478000013,6.725043036000102],[126.09595787900001,6.74721914300008],[126.08529707100016,6.782619533000087],[126.08269290500019,6.804510809000121],[126.08269290500019,6.830877997000115],[126.0791121750001,6.842515367000118],[126.06714928500016,6.847886460000083],[126.04175866000006,6.855414130000128],[126.02214603000019,6.866766669000114],[125.98340905000025,6.920884507000082],[125.97681725400017,6.939601955000142],[125.98568769600003,6.986070054000095],[125.98650149800004,7.006293036000116],[125.97478274800008,7.027736721000153],[125.91504967500005,7.085028387000094],[125.90259850400015,7.101141669000157],[125.89795983200023,7.116034247000115],[125.89087975400017,7.157049872000129],[125.85059655000006,7.253892320000118],[125.84986412900017,7.294256903000175],[125.85320071700019,7.316229559000178],[125.85320071700019,7.336004950000117],[125.84538821700019,7.350246486000116],[125.83073978000017,7.354274807000181],[125.825450066,7.355698960000069],[125.806895379,7.351141669000114],[125.746836785,7.307928778000118],[125.68783613400016,7.274644273000121],[125.67676842500012,7.264634507000124],[125.67660566500014,7.264471747000159],[125.66830488400008,7.2570254580001],[125.65691165500014,7.237046617000117],[125.65398196700018,7.215073960000097],[125.65935306100006,7.149847723000093],[125.65805097700016,7.129136460000097],[125.65455162900015,7.119574286000102],[125.64616946700019,7.107855536000116],[125.64437910200003,7.09906647300015],[125.63900800900014,7.088771877000127],[125.60352623800006,7.054632880000127],[125.57545006600017,7.038723049000112],[125.54175866000016,7.030585028000104],[125.50993899800012,7.015570380000071],[125.48747806100002,6.978949286000144],[125.48462975400017,6.935126044000085],[125.48064212300018,6.913234768000151],[125.46973717500023,6.903876044000114],[125.42465254000015,6.849188544000171],[125.40357506600007,6.811835028000118],[125.38892662900004,6.768296617000188],[125.38038170700011,6.72150299700013],[125.37761478000006,6.674221096000067],[125.38062584700006,6.657212632000109],[125.39429772200016,6.618231512000122],[125.39747155000022,6.598456122000101],[125.40552819100017,6.588853257000124],[125.42188561300011,6.582342841000127],[125.43458092500018,6.58820221600017],[125.43213951900023,6.615790106000176],[125.46509850399998,6.594671942000076],[125.50806725400015,6.539496161000144],[125.53451582100003,6.512844143000109],[125.5532332690001,6.524847723000136],[125.57357832099997,6.516913153000161],[125.58985436300021,6.49917226800008],[125.59669030000023,6.481756903000103],[125.59766686300023,6.442694403000147],[125.60141035200014,6.427883205000086],[125.630137566,6.366197007000053],[125.64096113400002,6.352362372000144],[125.64478600400005,6.344142971000153],[125.64551842500022,6.332586981000133],[125.64437910200003,6.310492255000142],[125.64584394600016,6.299627997000157],[125.64926191499998,6.292425848000121],[125.65805097700016,6.280015367000189],[125.70655358200023,6.149725653000147],[125.71013431100019,6.132066148000135],[125.71062259200018,6.111029364000103],[125.70655358200023,6.089544989000075],[125.69605553500004,6.071193752000127],[125.69239342500013,6.060980536000088],[125.6992293630001,6.040472723000136],[125.69605553500004,6.029933986000159],[125.69214928500016,6.021877346000139],[125.68531334700005,5.992661851000193],[125.66732832099999,5.950140692000133],[125.59457441500014,5.862127997000101],[125.49903405000022,5.726141669000171],[125.43637129000015,5.617661851000178],[125.42164147200008,5.598211981000175],[125.40300540500006,5.5808779970001],[125.38754316500014,5.573797919000128],[125.3712671230002,5.572943427000125],[125.32276451900022,5.575506903000132],[125.30836022200016,5.579575914000188],[125.30241946700006,5.592189846000081],[125.3001408210001,5.67133209800015],[125.29509524800002,5.691066799000097],[125.288259311,5.706040757000125],[125.27865644600014,5.716498114000103],[125.26433353000007,5.722560940000108],[125.24317467500023,5.724554755000142],[125.23780358200011,5.72797272300015],[125.23194420700015,5.736273505000127],[125.22730553500006,5.74656810100015],[125.22543379000014,5.756170966000126],[125.22095787899998,5.766424872000144],[125.21045983200023,5.77212148600013],[125.19898522200018,5.775580145000134],[125.19141686300023,5.779201565000093],[125.18116295700011,5.798325914000159],[125.1850692070001,5.814520575000117],[125.19402103000003,5.829494533000158],[125.19874108200023,5.844916083000086],[125.20183353000002,5.860541083000072],[125.20899498800006,5.876857815000093],[125.22543379000014,5.90326569200009],[125.26400800900014,5.949937242000175],[125.27800540500019,5.979234117000189],[125.28077233200018,6.019354559000121],[125.27670332099999,6.036037502000156],[125.26319420700021,6.072211005000085],[125.2602645190001,6.084540106000133],[125.250743035,6.093085028000147],[125.24008222700017,6.094224351000179],[125.22925866000017,6.095404364000117],[125.19141686300023,6.095119533000087],[125.17945397199999,6.10675690300009],[125.16895592500022,6.111965236000088],[125.15788821700018,6.108791408000116],[125.15528405000012,6.100165106000119],[125.15772545700023,6.074286200000103],[125.1544702480002,6.064357815000108],[125.145274285,6.05003489800012],[125.11223392000025,5.953355210000097],[125.08871504000004,5.884711005000084],[125.06910241000006,5.861721096000095],[125.0498153000001,5.861395575000174],[125.00220787900005,5.871975002000127],[124.96363366000006,5.858587958000129],[124.93873131599999,5.863959052000084],[124.83741295700005,5.9122582050001],[124.81088300900002,5.91860586100013],[124.76791425900014,5.938055731000133],[124.75611412900017,5.938177802000112],[124.74366295700017,5.936957098000092],[124.732676629,5.937445380000085],[124.70801842500012,5.946600653000147],[124.64332116000017,5.985256252000113],[124.63648522200018,5.978420315000093],[124.60580488400014,5.992336330000072],[124.59620201900005,5.99892812700014],[124.59245853000007,6.005519924000125],[124.58969160199997,6.014634507000109],[124.58594811300016,6.022691148000149],[124.57911217500023,6.02619049700013],[124.56137129000015,6.030015367000146],[124.42188561300023,6.110296942000076],[124.37012780000012,6.132717190000093],[124.24577884200019,6.186509507000139],[124.22877037900005,6.197007554000109],[124.2016707690001,6.221747137000178],[124.1894637380001,6.240545966000126],[124.17660566499998,6.277818101000193],[124.16480553500006,6.294338283000087],[124.09791100399998,6.364650783000116],[124.07195071700019,6.401516018000081],[124.05494225400005,6.437689520000105],[124.04249108200021,6.488470770000148],[124.04127037899998,6.509711005000142],[124.03484134200018,6.530585028000104],[124.03296959700006,6.542425848000079],[124.03744550899998,6.547552802000084],[124.05176842500005,6.548895575000159],[124.05583743600002,6.552720445000176],[124.05494225400005,6.55902741100013],[124.05494225400005,6.646551825000159],[124.05225670700005,6.669378973000092],[124.03386478000002,6.731919664000117],[124.03720136800004,6.758408921000083],[124.03980553500004,6.779120184000178],[124.03663170700011,6.799709377000126],[124.01710045700011,6.808294989000132],[124.01433353000007,6.80609772300015],[124.00326582100004,6.790228583000115],[123.99732506600017,6.78607819200009],[123.99447675900015,6.787909247000158],[123.99268639400022,6.791815497000144],[123.98943118600019,6.793931382000067],[123.98218834700016,6.796820380000098],[123.97494550900015,6.803900458000057],[123.96892337300007,6.812730210000112],[123.96550540500006,6.821275132000139],[123.96517988400002,6.83234284100017],[123.97120201900022,6.850775458000115],[123.97291100400004,6.859116929000081],[123.97486412900015,6.965318101000193],[123.988536004,7.015611070000162],[124.02947024800001,7.115139065000122],[124.05111738400002,7.13662344000015],[124.06836998800023,7.14134349200016],[124.09131920700023,7.152777411000116],[124.12940514400012,7.177557684000178],[124.16675866000017,7.208400783000143],[124.18376712300002,7.226385809000178],[124.19459069100004,7.253648179000081],[124.21273847700004,7.27057526200015],[124.21924889400012,7.279974677000083],[124.22087649800001,7.289292710000125],[124.21924889400012,7.320949611000103],[124.22087649800001,7.346584377000156],[124.2258406910001,7.365790106000119],[124.24675540500007,7.404120184000149],[124.23226972700003,7.414740302000097],[124.21900475400017,7.415757554000066],[124.18775475399998,7.410345770000105],[124.17603600400005,7.415716864000074],[124.16732832100003,7.431911526000121],[124.16309655000012,7.439642645000134],[124.15357506599999,7.445054429000081],[124.14242597699999,7.461249091000126],[124.09522545700023,7.561183986000104],[124.06519616000017,7.602728583000086],[124.02076256600006,7.63349030200007],[124.01335696700008,7.63434479400017],[123.95923912900011,7.673895575000117],[123.91089928500016,7.698919989000132],[123.90349368600019,7.691473700000144],[123.88607832100004,7.69940827000012],[123.86296634200008,7.70343659100017],[123.8616642590001,7.703477281000161],[123.81812584700005,7.705145575000174],[123.79420006600017,7.710516669000143],[123.77784264400006,7.723944403000132],[123.72380618600017,7.795599677000055],[123.7039494150001,7.809393622000157],[123.68067467500022,7.815008856000162],[123.657969597,7.817206122000144],[123.61459394600014,7.833522854000164],[123.60922285199999,7.835516669000114],[123.58692467500023,7.83934153900013],[123.52295983200017,7.835516669000114],[123.50489342500022,7.831732489000088],[123.47999108200011,7.822658596000095],[123.45687910200016,7.811468817000089],[123.44467207100008,7.801336981000119],[123.44825280000022,7.7664248720001],[123.4755965500001,7.739325262000165],[123.49781334700018,7.708807684000135],[123.48568769599999,7.663560289000116],[123.47706139400005,7.653306382000082],[123.46656334700002,7.643866278000161],[123.45541425899998,7.635931708000101],[123.44467207100008,7.630072333000071],[123.40919030000005,7.623480536000087],[123.40007571700019,7.619452216000112],[123.39625084700018,7.611761786000101],[123.39527428500001,7.60040924700013],[123.39625084700018,7.578558661000087],[123.39234459700018,7.57562897300015],[123.3715926440001,7.588039455000085],[123.36215254000008,7.589056708000143],[123.35352623800004,7.572088934000178],[123.36687259200018,7.552191473000092],[123.38640384200008,7.532619533000116],[123.39625084700018,7.516791083000085],[123.40259850400001,7.492092190000093],[123.417653842,7.4786644550001],[123.43572024800008,7.468207098000121],[123.45167076900023,7.452541408000144],[123.458669467,7.431301174000154],[123.45777428500004,7.408636786000101],[123.451426629,7.387925523000192],[123.44125410200016,7.372748114000117],[123.43100019600014,7.368719794000143],[123.41944420700011,7.372259833000129],[123.38803144599997,7.395412502000156],[123.35596764400013,7.410345770000105],[123.34213300900002,7.420477606000162],[123.31316165500014,7.451320705000128],[123.30437259200008,7.467433986000103],[123.28980553499999,7.477606512000136],[123.286387566,7.482611395000092],[123.286387566,7.504584052000097],[123.28443444100017,7.513251044000099],[123.28028405000012,7.520209052000084],[123.26441491000011,7.526353257000067],[123.24382571700008,7.524074611000088],[123.22584069100002,7.515611070000148],[123.21810957100004,7.503404039000173],[123.21257571700019,7.489325262000136],[123.19947350400005,7.482001044000128],[123.18360436300011,7.480943101000165],[123.17042076900023,7.486029364000103],[123.14063561300023,7.513128973000121],[123.12745201900012,7.531480210000082],[123.12208092500023,7.550604559000149],[123.12761478000007,7.572577216000155],[123.14177493600008,7.579820054000095],[123.15967858200023,7.582098700000159],[123.17725670700005,7.589056708000143],[123.1875106130001,7.605861721000152],[123.18677819100017,7.626206773000149],[123.1753035820001,7.643296617000189],[123.15333092500012,7.650539455000128],[123.14039147200018,7.661363023000121],[123.13542728000006,7.686468817000104],[123.13347415500017,7.714178778000104],[123.12940514400023,7.733099677000112],[123.11793053500011,7.741359768000109],[123.10726972700016,7.731919664000188],[123.09644616000016,7.714300848000079],[123.08472741000017,7.695217190000093],[123.05713951900017,7.667303778000147],[123.05030358200021,7.655096747000158],[123.05152428500016,7.644964911000115],[123.05469811300023,7.634833075000159],[123.05372155000022,7.622544664000187],[123.04957116,7.617987372000157],[123.0361434250001,7.609320380000071],[123.03321373800011,7.605861721000152],[123.03451582099999,7.598618882000138],[123.03777103000007,7.594671942000146],[123.04021243600017,7.590155341000099],[123.0400496750001,7.581610419000171],[123.03451582099999,7.563869533000087],[123.01905358200005,7.54197825700014],[123.01221764400023,7.527655341000155],[123.01059004000003,7.512844143000094],[123.01221764400023,7.482611395000092],[123.00660241000017,7.47235748900006],[122.99561608200011,7.467271226000135],[122.99000084700012,7.470363674000126],[122.98462975400004,7.476060289000187],[122.974864129,7.479193427000084],[122.97364342500005,7.480373440000108],[122.95069420700013,7.486029364000103],[122.94239342500012,7.499701239000131],[122.92725670700023,7.538153387000136],[122.91724694100006,7.54751211100016],[122.90528405000012,7.543402411000115],[122.8923445970001,7.531439520000092],[122.88168379000014,7.517401434000135],[122.87614993600006,7.507147528000103],[122.87525475400015,7.492824611000118],[122.87794030000023,7.483710028000132],[122.87647545700005,7.475978908000116],[122.86255944100017,7.465562242000132],[122.85141035200014,7.461004950000174],[122.83725019600016,7.458441473000079],[122.82203209700019,7.459418036000145],[122.80738366000016,7.465562242000132],[122.81348717500023,7.477769273000192],[122.81031334700018,7.486070054000094],[122.80396569100006,7.490179755000128],[122.80054772200005,7.489732164000132],[122.79859459700016,7.487127997000144],[122.79444420700017,7.485256252000084],[122.78988691500004,7.484686591000112],[122.786875847,7.486029364000103],[122.7856551440001,7.491766669000157],[122.7880965500001,7.496812242000189],[122.79167728000019,7.499945380000084],[122.79371178500006,7.499701239000131],[122.79249108200011,7.522691148000106],[122.79712975400004,7.53558991100013],[122.80892988400004,7.537543036000073],[122.828379754,7.527655341000155],[122.83073978000007,7.549790757000139],[122.82276451900012,7.564439195000148],[122.81234785200004,7.576890367000161],[122.80738366000016,7.59247467700007],[122.79997806100006,7.654201565000078],[122.79371178500006,7.67104726800008],[122.801524285,7.684393622000087],[122.80836022200006,7.704250393000094],[122.81299889400017,7.725531317000075],[122.81470787900015,7.743353583000143],[122.80437259200008,7.758612372000115],[122.7804468110002,7.75983307500013],[122.73902428500017,7.75413646000014],[122.73047936300017,7.760728257000124],[122.71485436300004,7.780951239000145],[122.70427493600002,7.788316148000134],[122.65984134200019,7.788316148000134],[122.65105228000007,7.786078192000146],[122.63070722700016,7.776312567000118],[122.61866295700023,7.774074611000132],[122.59669030000012,7.761419989000076],[122.51148522200005,7.695705471000081],[122.48560631600006,7.666896877000141],[122.44385826900012,7.608587958000129],[122.433848504,7.590643622000173],[122.43360436300016,7.578558661000087],[122.45167076900006,7.574408270000134],[122.47185306100017,7.579901434000162],[122.48560631600006,7.578517971000096],[122.48511803500006,7.553697007000138],[122.478770379,7.539862372000129],[122.46753991,7.522853908000073],[122.45443769600014,7.507757880000071],[122.44361412900004,7.499701239000131],[122.45142662900005,7.534165757000069],[122.45101972700004,7.540676174000139],[122.43995201900013,7.541937567000147],[122.42847741000006,7.532904364000145],[122.41968834700018,7.520168361000102],[122.41627037900017,7.510239976000178],[122.40593509200009,7.499945380000084],[122.35987389400023,7.472845770000148],[122.3479923840001,7.452541408000144],[122.35425866000004,7.430405992000161],[122.36882571700008,7.41046784100017],[122.37907962300007,7.391587632000053],[122.37256920700011,7.372748114000117],[122.36378014400013,7.362209377000141],[122.34498131600016,7.331773179000095],[122.33350670700023,7.323879299000126],[122.32292728000017,7.323146877000098],[122.31226647200006,7.32396067900011],[122.30014082100016,7.320949611000103],[122.28044681100017,7.294501044000114],[122.26587975400017,7.249090887000121],[122.25171959700006,7.164496161000102],[122.24935957099999,7.118109442000133],[122.24350019600016,7.099269924000097],[122.20240319100016,7.042629299000112],[122.16732832099997,6.952704169000114],[122.15447024800008,6.92812734600011],[122.13428795700021,6.914211330000128],[122.12370853000019,6.899644273000192],[122.11866295700021,6.896429755000142],[122.09571373800016,6.897406317000119],[122.08676191500004,6.899644273000192],[122.03793379000004,6.917385158000101],[121.96119225400011,6.958197333000143],[121.93702233200005,6.978949286000144],[121.8989363940001,7.057196356000134],[121.89779707100014,7.140285549000112],[121.93344160200003,7.217922268000136],[122.00538170700005,7.279974677000083],[122.03891035199997,7.29559967700007],[122.04688561300017,7.301092841000099],[122.05103600400001,7.307806708000144],[122.05347741000006,7.316880601000136],[122.05176842500012,7.324896552000083],[122.043223504,7.328355210000082],[122.03256269600016,7.339829820000134],[122.03467858200004,7.365790106000119],[122.04688561300017,7.410345770000105],[122.04558353000007,7.442531643000151],[122.04688561300017,7.452541408000144],[122.05209394600016,7.463283596000153],[122.06495201900005,7.481105861000132],[122.06739342500012,7.489732164000132],[122.06999759200018,7.51365794500019],[122.07764733200024,7.528021552000083],[122.09017988400014,7.537543036000073],[122.10775800900011,7.54751211100016],[122.11963951900012,7.556545315000079],[122.13721764400023,7.57298411700016],[122.14600670700013,7.588812567000104],[122.11353600400004,7.603257554000066],[122.11158287900015,7.620672919000128],[122.12208092500022,7.657375393000136],[122.12273196700019,7.700384833000086],[122.11752363400002,7.723211981000104],[122.10474694100017,7.733099677000112],[122.09652754000014,7.744696356000133],[122.10499108200011,7.770819403000174],[122.12891686300004,7.815008856000162],[122.21452884200006,7.921128648000191],[122.23959394600016,7.965725002000084],[122.25171959700006,7.980129299000139],[122.26303144600004,7.989813544000114],[122.29224694100017,8.009914455000157],[122.32276451900012,8.018215236000131],[122.36003665500019,8.040472723000093],[122.43799889400022,8.066555080000143],[122.46257571700006,8.070990302000126],[122.478282097,8.061997789000186],[122.48243248800017,8.070542710000126],[122.48959394600004,8.07510000200007],[122.4978133470001,8.074652411000073],[122.505056186,8.06826406500015],[122.52271569100006,8.076361395000076],[122.59994550900016,8.092922268000137],[122.63843834700005,8.108547268000123],[122.64966881600017,8.116034247000101],[122.66773522200018,8.149969794000143],[122.67920983200023,8.164211330000143],[122.68441816500004,8.153957424000126],[122.69190514400007,8.131659247000172],[122.71094811300004,8.119777736000131],[122.73519941500014,8.115464585000126],[122.75879967500012,8.116034247000101],[122.85523522200018,8.132473049000097],[122.86850019600004,8.14183177300012],[122.87956790500007,8.143988348000121],[122.903086785,8.144680080000157],[122.91391035200004,8.146551825000131],[122.92457116000006,8.150132554000109],[122.94532311300023,8.161851304000095],[123.00261478000019,8.209133205000143],[123.01368248800011,8.232407945000162],[123.00074303499999,8.25039297100011],[122.96436608200021,8.274359442000147],[122.96208743600006,8.280829169000157],[122.95818118600008,8.302394924000069],[122.95818118600008,8.30849844000015],[122.96338951900023,8.313950914000188],[122.98161868600002,8.324693101000108],[122.98536217500006,8.325873114000132],[122.98747806100019,8.330633856000132],[122.99195397200005,8.33576080900015],[122.99642988400004,8.342718817000133],[122.99838300900015,8.35317617400011],[122.99724368600002,8.364650783000158],[122.99203535200003,8.38548411700013],[122.99219811300011,8.39720286700013],[122.99927819100007,8.414943752000127],[123.02173912900018,8.444403387000108],[123.02637780000006,8.462713934000163],[123.03101647200002,8.474554755000128],[123.04200280000016,8.490139065000122],[123.05543053500016,8.504950262000179],[123.06739342500006,8.51455312700007],[123.0820418630001,8.519232489000089],[123.16049238400015,8.530666408000144],[123.19507897200005,8.542222398000163],[123.21127363399998,8.541815497000158],[123.21550540500013,8.538316148000163],[123.22559655000006,8.52509186400013],[123.23194420700011,8.520697333000143],[123.24203535200014,8.519110419000114],[123.30095462300002,8.52423737200013],[123.31820722700014,8.53351471600017],[123.33106530000016,8.546616929000052],[123.34644615999999,8.569769598000093],[123.34961998800006,8.576605536000116],[123.36353600400017,8.623277085000112],[123.3715926440001,8.633449611000145],[123.38672936300011,8.637437242000132],[123.39234459700018,8.635728257000125],[123.39763431100006,8.6323916690001],[123.40333092500022,8.62982819200009],[123.41065514400022,8.630560614000117],[123.41553795700021,8.633693752000099],[123.42758222700003,8.64423248900006],[123.43637128999998,8.649481512000136],[123.43197675900004,8.661078192000062],[123.40007571700019,8.697658596000096],[123.3918563160001,8.709418036000073],[123.39014733200011,8.71938711100016],[123.39714603000017,8.723211981000176],[123.41114342500023,8.72638580900015],[123.42481530000005,8.72695547100011],[123.43100019600014,8.722805080000086],[123.436696811,8.721828518000109],[123.46192467500006,8.707261460000083],[123.477793816,8.695298570000132],[123.48845462300002,8.692124742000175],[123.50025475399998,8.693101304000052],[123.51295006600019,8.698879299000112],[123.5141707690001,8.647284247000144],[123.52182050900004,8.622544664000173],[123.53972415500019,8.623765367000189],[123.54590905000023,8.620062567000145],[123.54900149800002,8.618841864000132],[123.56137129000015,8.61383698100009],[123.567637566,8.610093492000159],[123.57178795700017,8.604681708000115],[123.58130944100007,8.582831122000158],[123.59099368600012,8.592759507000082],[123.59253991000016,8.60228099200016],[123.59213300900016,8.612372137000136],[123.59498131600016,8.623765367000189],[123.60035241000004,8.632554429000066],[123.61548912900005,8.651068427000084],[123.60328209700016,8.663072007000096],[123.61670983200005,8.67072174700013],[123.63306725400017,8.668443101000065],[123.6290796230002,8.651068427000084],[123.71029707100004,8.633246161000102],[123.7225041020001,8.628078518000095],[123.7309676440001,8.618882554000123],[123.73894290500019,8.60268789300008],[123.74577884200018,8.60268789300008],[123.75407962300008,8.610296942000117],[123.75879967500005,8.60748932500016],[123.766856316,8.589016018000137],[123.76490319100017,8.58909739800012],[123.77702884200008,8.55735911700016],[123.78052819100004,8.551743882000068],[123.7863875660001,8.53766510600012],[123.82837975400015,8.48655833500014],[123.84473717500013,8.452215887000094],[123.8575952480002,8.409409898000192],[123.86605879000015,8.364325262000136],[123.86931399800018,8.243312893000137],[123.88477623800023,8.185451565000136],[123.88298587300002,8.164496161000088],[123.87330162900015,8.15326569200009],[123.76775149800021,8.059027411000088],[123.74577884200018,8.048407294000143],[123.70240319100006,8.045803127000141],[123.68474368600013,8.036810614000132],[123.67766360800023,8.010728257000068],[123.67758222700014,8.010606187000093],[123.67750084700019,8.010199286000088],[123.67644290500009,8.000067450000131],[123.67172285200004,7.98065827000012],[123.67066491000017,7.969224351000079],[123.67074629000017,7.969183661000088],[123.67212975400007,7.96775950700011],[123.67644290500009,7.963364976000121],[123.67644290500009,7.963405666000114],[123.67668704500018,7.963487046000098],[123.68897545700021,7.968329169000171],[123.70085696700018,7.976467190000093],[123.70484459700016,7.980129299000139],[123.74097740999999,8.000433661000145],[123.87370853000019,8.105169989000117],[123.88640384200008,8.109198309000178],[123.90748131600017,8.113226630000142],[123.9220483730002,8.123236395000134],[123.94507897200018,8.150132554000109],[123.96892337300007,8.16779205900012],[124.00025475400001,8.181341864000089],[124.03630618600008,8.18984609600011],[124.15577233200013,8.190252997000115],[124.19849694100006,8.196478583000086],[124.23226972700003,8.212876695000176],[124.24244225400015,8.225327867000187],[124.25806725400005,8.255926825000117],[124.270274285,8.27094147300015],[124.27466881600012,8.281073309000107],[124.27076256600012,8.291449286000102],[124.26392662900017,8.301825262000108],[124.26042728000019,8.311916408000158],[124.26172936300011,8.324530341000141],[124.26539147200006,8.333970445000162],[124.27393639400016,8.350043036000145],[124.27458743600012,8.354559637000094],[124.27320397200005,8.364813544000128],[124.27393639400016,8.369289455000086],[124.27702884200008,8.373521226000108],[124.28394616000004,8.37860748900013],[124.28695722700016,8.383530992000189],[124.29623457100004,8.404730536000088],[124.29948978000006,8.415472723000107],[124.30201256600017,8.452460028000132],[124.30591881600017,8.473700262000122],[124.32178795700011,8.51455312700007],[124.34253991000017,8.548651434000178],[124.37110436300004,8.581366278000104],[124.40577233200015,8.60789622600008],[124.44459069100016,8.623765367000189],[124.4699813160001,8.62482330900015],[124.4760848320001,8.614569403000118],[124.47535241000004,8.598700262000094],[124.48015384200002,8.582831122000158],[124.48519941500008,8.582464911000145],[124.50855553500016,8.577337958000143],[124.51050865999999,8.57599518400015],[124.51742597700004,8.574652411000073],[124.52588951900023,8.571112372000172],[124.54078209699999,8.561712958000058],[124.57154381600016,8.52814362200013],[124.58253014400023,8.520697333000143],[124.59994550900004,8.516180731000091],[124.657481316,8.51455312700007],[124.64844811300011,8.496323960000096],[124.64096113400004,8.476019598000093],[124.63648522200018,8.454291083000115],[124.63648522200018,8.431952216000083],[124.64332116000017,8.431952216000083],[124.65064537900017,8.458197333000115],[124.66309655000012,8.475816148000135],[124.68295332100004,8.481838283000144],[124.71216881600004,8.472967841000099],[124.71648196700006,8.479803778000118],[124.732676629,8.493394273000163],[124.73633873800023,8.495021877000099],[124.74976647200005,8.498724677000126],[124.75318444100006,8.500230210000083],[124.75367272200005,8.506577867000118],[124.75098717500018,8.512518622000144],[124.74773196700012,8.517401434000107],[124.74634850400004,8.520697333000143],[124.75049889400006,8.551499742000118],[124.75318444100006,8.561712958000058],[124.75733483200011,8.569077867000146],[124.76978600399998,8.586330471000153],[124.77361087300001,8.596421617000118],[124.7714949880001,8.615871486000117],[124.75147545700021,8.650458075000117],[124.74634850400004,8.670965887000165],[124.75123131599999,8.69277578300013],[124.76319420700023,8.706000067000076],[124.777110222,8.717352606000134],[124.78785241000006,8.733628648000163],[124.78003991000004,8.752875067000119],[124.78077233200005,8.774603583000086],[124.78785241000006,8.818996486000117],[124.78785241000006,8.904282945000176],[124.78077233200005,8.949123440000108],[124.78174889400022,8.971136786000102],[124.79102623800013,8.990627346000096],[124.79908287900005,8.999986070000134],[124.80941816500015,9.00946686400013],[124.8208113940001,9.014553127000156],[124.8320418630001,9.010728257000139],[124.84359785200003,9.003729559000163],[124.85377037900017,9.003973700000103],[124.86402428499999,9.006740627000156],[124.87671959700018,9.007391669000114],[124.89519290500017,9.002752997000087],[124.91529381600006,8.994126695000176],[124.93140709699999,8.982733466000127],[124.93816165500006,8.969794012000122],[124.94727623800021,8.962469794000114],[125.02637780000025,8.918524481000176],[125.03443444100017,8.91176992400014],[125.05738366000017,8.882269598000079],[125.0727645190001,8.872788804000066],[125.093028191,8.8397891300001],[125.10596764400012,8.829779364000117],[125.11573326900022,8.830552476000136],[125.13746178500006,8.843491929000137],[125.15935306100008,8.851141669000171],[125.17644290500019,8.860581773000177],[125.1873478520001,8.875921942000133],[125.19532311300021,8.960882880000085],[125.19141686300023,8.980047919000143],[125.18775475400017,8.985907294000086],[125.18311608200017,8.991400458000115],[125.17920983200005,8.9979922550001],[125.1777449880001,9.007391669000114],[125.17994225400011,9.019476630000113],[125.18921959700005,9.039374091000113],[125.19141686300023,9.052069403000175],[125.19190514400022,9.064927476000108],[125.19410240999999,9.072414455000157],[125.19947350400015,9.078273830000114],[125.20875084700006,9.086493231000103],[125.21851647200018,9.088120835000126],[125.22722415500006,9.078843492000175],[125.23975670700023,9.055161851000065],[125.26929772199999,9.015570380000128],[125.2887475920002,9.00043366100013],[125.31177819100016,8.994330145000134],[125.37671959700005,8.991359768000123],[125.41993248800023,8.981594143000095],[125.44117272200006,8.98041413000007],[125.46216881600016,8.985174872000158],[125.51661217500006,9.015936591000141],[125.52654056100019,9.026190497000158],[125.53451582100003,9.0489769550001],[125.54070071700019,9.084051825000172],[125.5420028000001,9.189195054000137],[125.53931725400005,9.206691799000097],[125.53321373800021,9.217596747000158],[125.52605228000019,9.226955471000108],[125.52100670700005,9.239488023000192],[125.52027428500006,9.248236395000076],[125.52149498800023,9.266180731000118],[125.52100670700005,9.274847723000121],[125.517832879,9.284491278000175],[125.50904381600006,9.303697007000139],[125.50294030000022,9.32916901200015],[125.48373457099997,9.361273505000113],[125.47730553500017,9.390611070000134],[125.47291100400011,9.398342190000136],[125.46827233200005,9.404242255000085],[125.46631920700023,9.408351955000128],[125.46631920700023,9.43935781500015],[125.46526126400025,9.44468821800011],[125.46241295700023,9.459295966000127],[125.44068444100004,9.515936591000127],[125.438161655,9.52582428600013],[125.43555748800023,9.546047268000152],[125.39869225400017,9.681057033000116],[125.39747155000022,9.699408270000076],[125.40040123800006,9.717433986000103],[125.40707441500004,9.73371002800013],[125.45573978000007,9.812811591000127],[125.45948326900012,9.822943427000084],[125.47136478000007,9.808905341000127],[125.4884546230002,9.792914130000128],[125.50709069100017,9.779933986000131],[125.54037519600008,9.771063544000171],[125.56902103000007,9.756659247000115],[125.5892033210001,9.754624742000175],[125.58464603,9.730780341000113],[125.59262128999997,9.702337958000086],[125.60450280000022,9.673325914000186],[125.61036217500005,9.647894598000093],[125.62012780000012,9.629787502000084],[125.6435653000001,9.61127350500007]]],[[[126.14283287900017,9.850043036000102],[126.15349368600017,9.841986395000077],[126.16586347700003,9.829169012000136],[126.17408287900004,9.817206122000101],[126.18018639400012,9.801499742000132],[126.17823326900016,9.787827867000189],[126.15544681100002,9.779201565000108],[126.13884524800008,9.765611070000148],[126.13038170700023,9.760891018000137],[126.12012780000012,9.758937893000095],[126.09327233200021,9.760891018000137],[126.05445397199999,9.775091864000144],[126.04167728000006,9.775132554000137],[126.04859459700016,9.754624742000175],[126.03394616000017,9.766343492000175],[126.01921634200008,9.78168366100013],[125.99390709699999,9.81610748900006],[125.99341881600006,9.820298570000176],[125.99537194100017,9.824652411000088],[125.99659264400012,9.829779364000103],[125.99390709699999,9.83661530200011],[125.98796634200018,9.839992580000128],[125.98031660200014,9.839789130000085],[125.97266686300023,9.841498114000089],[125.96599368600017,9.85024648600016],[125.9798283210001,9.8491885440001],[125.99293053500006,9.85024648600016],[126.00473066500004,9.854885158000087],[126.01441491000017,9.864488023000163],[126.00326582100014,9.869289455000143],[125.98910566500004,9.877142645000133],[125.9798283210001,9.888006903000118],[125.98340905000025,9.901800848000121],[126.04468834700018,9.998724677000098],[126.04859459700016,10.007961330000157],[126.04851321700018,10.01748281500015],[126.04566491000004,10.026190497000144],[126.04525800900015,10.03514232000016],[126.05225670700021,10.045477606000176],[126.07146243600008,10.059068101000136],[126.08073978,10.055650132000123],[126.12671959700018,9.956040757000082],[126.13795006600017,9.9019229190001],[126.13786868600017,9.891180731000176],[126.13314863400004,9.88068268400012],[126.11784915500006,9.866888739000103],[126.110606316,9.857082424000083],[126.12989342500023,9.85455963700015],[126.14283287900017,9.850043036000102]]],[[[124.6069442070001,10.140326239000132],[124.59571373800011,10.123521226000122],[124.59538821700008,10.10854726800008],[124.59766686300021,10.094183661000102],[124.58887780000005,10.086249091000141],[124.57569420700023,10.090236721000124],[124.5610457690001,10.085842190000136],[124.55005944100017,10.069037177000126],[124.54037519600004,10.060858466000113],[124.529551629,10.068548895000133],[124.52540123800006,10.07880280200007],[124.52540123800006,10.087225653000118],[124.52279707100016,10.098456122000115],[124.52182050900002,10.11204661700016],[124.52759850400017,10.117336330000143],[124.53565514400013,10.11469147300015],[124.54224694100016,10.11595286700016],[124.54688561300011,10.122056382000068],[124.55176842500018,10.126776434000163],[124.55762780000012,10.126044012000136],[124.56723066499998,10.127671617000146],[124.5800887380001,10.136704820000162],[124.58627363399997,10.142238674000083],[124.59278405000008,10.145168361000103],[124.60621178500017,10.147609768000137],[124.6069442070001,10.140326239000132]]],[[[124.34961998800021,10.151027736000145],[124.35596764400006,10.110296942000074],[124.36695397200006,10.1192894550001],[124.38249759200002,10.14378489800012],[124.39682050900004,10.151922919000143],[124.40023847700004,10.138373114000087],[124.4082137380001,10.119696356000105],[124.41911868600006,10.106756903000102],[124.43083743600008,10.110174872000101],[124.47632897200005,10.070013739000101],[124.48975670700023,10.062567450000117],[124.52003014400012,10.064195054000137],[124.53028405000025,10.06053294500019],[124.54835045700015,10.048895575000174],[124.57764733200005,10.033921617000146],[124.58863366000006,10.023871161000088],[124.5839949880001,9.999009507000125],[124.58423912900017,9.980943101000108],[124.58090254000003,9.972154039000145],[124.56869550900015,9.987453518000109],[124.56617272200008,9.968329169000128],[124.56617272200008,9.952785549000124],[124.56446373800023,9.94399648600016],[124.55616295700023,9.925685940000108],[124.57146243600019,9.912298895000104],[124.58375084700019,9.893947658000144],[124.58464603000007,9.877671617000118],[124.56527754000015,9.870754299000112],[124.5498153000001,9.86155833500014],[124.57016035200003,9.840521552000112],[124.62403405000023,9.801825262000165],[124.59896894600016,9.749701239000132],[124.59620201900005,9.737290757000096],[124.58521569100004,9.732082424000112],[124.56055748800024,9.73261139500009],[124.53484134200018,9.736273505000128],[124.52035566500015,9.740383205000086],[124.51685631600006,9.748765367000145],[124.51742597700004,9.759100653000147],[124.51441490999999,9.767035223000121],[124.49984785200012,9.768296617000118],[124.49293053500016,9.762762762000108],[124.46241295700021,9.730780341000113],[124.45281009200006,9.725775458000072],[124.44027754000014,9.721584377000125],[124.42945397200018,9.715033270000148],[124.42481530000022,9.702826239000075],[124.42416425900004,9.689601955000128],[124.42204837300018,9.678697007000068],[124.41749108200021,9.668890692000131],[124.41049238400015,9.65843333500014],[124.3818465500001,9.636704820000176],[124.33871504000008,9.618597723000079],[124.29420006600016,9.606756903000104],[124.26042728000019,9.603827216000083],[124.22144615999999,9.605780341000127],[124.06519616000017,9.59540436400013],[123.93751061300023,9.617499091000127],[123.89234459700018,9.63214752800013],[123.87175540500007,9.645005601000065],[123.86304772200005,9.661851304000066],[123.86670983200011,9.683539130000142],[123.87273196700018,9.70380280200014],[123.87387129000014,9.72113678600013],[123.86304772200005,9.73419830900012],[123.84489993600008,9.737250067000103],[123.82447350400017,9.736151434000163],[123.80787194100006,9.73997630400008],[123.801036004,9.75775788000007],[123.8032332690001,9.781195380000142],[123.80909264400024,9.80267975500007],[123.82837975400015,9.842840887000165],[123.84131920700011,9.857367255000113],[123.87582441499997,9.886948960000069],[123.88298587300002,9.901800848000121],[123.88607832100004,9.914862372000101],[123.89340254000004,9.916937567000117],[123.90723717500023,9.911688544000143],[123.91667728000007,9.91510651200015],[123.92212975400017,9.923000393000123],[123.92603600400017,9.932074286000116],[123.93140709700006,9.939032294000114],[123.96387780000012,9.9507510440001],[124.00977623800011,9.961615302000082],[124.05079186300011,9.979315497000087],[124.0685327480002,10.0116641300001],[124.06999759200008,10.032212632000139],[124.07520592500022,10.048325914000117],[124.086599155,10.058783270000104],[124.11589603000007,10.065252997000101],[124.11597741000004,10.07208893400012],[124.11361738400016,10.080959377000154],[124.11622155000016,10.08982982000012],[124.12387128999997,10.096665757000125],[124.13697350400015,10.10488515800013],[124.14307701900024,10.110296942000074],[124.15870201900022,10.131170966000141],[124.16716556100008,10.137437242000189],[124.18458092500023,10.14447663000007],[124.22266686300021,10.151922919000143],[124.26343834700018,10.151922919000143],[124.33130944100017,10.161525783000116],[124.34961998800021,10.151027736000145]]],[[[125.29135175900002,9.922186591000113],[125.28516686300021,9.916937567000117],[125.27393639400022,9.919134833000115],[125.26742597700014,9.924505927000084],[125.26514733200005,9.930894273000192],[125.2638452480001,9.938218492000187],[125.2602645190001,9.946478583000086],[125.23633873800023,9.974351304000137],[125.19874108200023,10.035834052000112],[125.1648055350001,10.055975653000147],[125.14576256599999,10.070705471000137],[125.13746178500006,10.08673737200013],[125.12582441500004,10.129828192000145],[125.12452233200023,10.151800848000079],[125.13746178500006,10.165513414000188],[125.149099155,10.1659610050001],[125.15845787900015,10.16058991100013],[125.175466342,10.145493882000125],[125.21648196700002,10.129624742000187],[125.22925866000017,10.121161200000158],[125.23926842500016,10.103908596000151],[125.25342858200011,10.035834052000112],[125.26303144600014,10.023138739000144],[125.277110222,10.00885651200015],[125.28956139400023,9.991685289000129],[125.29509524800002,9.9706485050001],[125.3061629570001,9.937445380000085],[125.30494225400015,9.932806708000143],[125.29639733200023,9.929266669000171],[125.29135175900002,9.922186591000113]]],[[[125.68482506600006,10.39988841400016],[125.68384850400017,10.36440664300008],[125.66488691500015,10.295884507000125],[125.66138756600017,10.270575262000179],[125.65805097700016,10.261704820000132],[125.65463300900015,10.264227606000148],[125.64625084700018,10.265366929000095],[125.63868248800024,10.261379299000112],[125.63770592500023,10.248114325000174],[125.64584394600016,10.239691473000136],[125.66016686300017,10.22825755400008],[125.6681421230002,10.21466705900012],[125.65805097700016,10.199693101000094],[125.66488691500015,10.192857164000158],[125.65381920700023,10.186590887000122],[125.65650475399998,10.176336981000091],[125.66846764400022,10.169256903000132],[125.68531334700005,10.172349351000122],[125.67758222700004,10.14484284100017],[125.67676842500012,10.127671617000146],[125.68197675900002,10.113999742000118],[125.69849694100017,10.093939520000061],[125.70476321700002,10.08177317900008],[125.70655358200023,10.069322007000068],[125.7031356130001,10.056708075000174],[125.69646243600008,10.040920315000136],[125.68864993600009,10.027289130000085],[125.68197675900002,10.021551825000117],[125.6850692070001,10.01463450700011],[125.69288170700011,9.974351304000137],[125.68148847700004,9.958075262000108],[125.69060306100012,9.941839911000073],[125.70728600400017,9.926214911000088],[125.71957441500003,9.911688544000143],[125.72169030000012,9.89435455900015],[125.71452884200008,9.880845445000176],[125.69947350400018,9.874253648000192],[125.67855879000003,9.877590236000131],[125.66358483200004,9.889146226000065],[125.66081790500019,9.903998114000117],[125.66187584700019,9.920965887000179],[125.65805097700016,9.939032294000114],[125.64861087300001,9.946966864000075],[125.6206160820001,9.955226955000157],[125.61036217500005,9.966945705000143],[125.6202905610002,9.966538804000137],[125.6233016290001,9.966945705000143],[125.615000847,9.972479559000163],[125.61133873800017,9.97728099200016],[125.61231530000023,9.982001044000157],[125.6171981130001,9.987453518000109],[125.6171981130001,9.993597723000093],[125.5930281910001,9.99298737200013],[125.58318118600006,10.009711005000057],[125.58521569099999,10.03388092700007],[125.59669030000023,10.055650132000123],[125.60141035200014,10.04743073100012],[125.60840905000023,10.043605861000117],[125.61451256600006,10.046616929000109],[125.6171981130001,10.059068101000136],[125.61451256600006,10.064154364000146],[125.60132897200016,10.080267645000118],[125.59669030000023,10.08982982000012],[125.5892033210001,10.08982982000012],[125.58448326900006,10.077541408000158],[125.57789147200012,10.076646226000065],[125.56934655000006,10.080796617000189],[125.558848504,10.08364492400014],[125.55250084700016,10.07868073100009],[125.54525800900015,10.068752346000096],[125.53541100400004,10.060858466000113],[125.52100670700005,10.062567450000117],[125.51343834699999,10.072984117000118],[125.51319420700005,10.086615302000068],[125.51075280000023,10.098456122000115],[125.49708092500012,10.10346100500007],[125.49529056100013,10.108710028000147],[125.49594160200016,10.13458893400015],[125.4936629570001,10.14447663000007],[125.50896243600008,10.15131256700009],[125.51758873800021,10.169378973000107],[125.51937910200004,10.190619208000086],[125.51417076900023,10.207098700000174],[125.52198326900022,10.210394598000107],[125.52898196700014,10.209784247000144],[125.53549238400002,10.206000067000133],[125.5420028000001,10.199693101000094],[125.53882897200005,10.215155341000113],[125.53199303500006,10.228989976000108],[125.53028405000013,10.241888739000117],[125.5420028000001,10.254339911000145],[125.53695722700016,10.25714752800009],[125.53484134200006,10.260077216000113],[125.53288821700018,10.263657945000176],[125.52784264400005,10.268622137000136],[125.53223717500016,10.283921617000189],[125.52393639400006,10.301906643000136],[125.52214603000017,10.316961981000148],[125.54542076900012,10.323187567000103],[125.55779056100006,10.325100002000156],[125.56251061300016,10.330796617000146],[125.56251061300016,10.353949286000088],[125.56039472700014,10.361314195000176],[125.55689537900017,10.366034247000101],[125.55616295700021,10.370754299000096],[125.56251061300016,10.378485419000114],[125.56788170700013,10.380926825000143],[125.57471764400023,10.381170966000099],[125.58041425900002,10.379136460000067],[125.58643639400012,10.367417710000081],[125.59441165500019,10.3651797550001],[125.60336347699999,10.366766669000128],[125.61036217500005,10.370998440000136],[125.61475670700005,10.38104889500012],[125.6171981130001,10.41941966400013],[125.62419681100019,10.443670966000127],[125.62964928500004,10.454046942000119],[125.63770592500023,10.46039459800015],[125.64966881600016,10.461900132000109],[125.65739993600017,10.456447658000158],[125.6717228520001,10.433050848000093],[125.68482506600006,10.39988841400016]]],[[[119.99057050900015,10.55597565300013],[119.99057050900015,10.549139716000111],[119.99317467500023,10.539984442000133],[119.98414147199999,10.531317450000145],[119.96827233200011,10.528143622000172],[119.95020592500006,10.53546784100017],[119.94947350400005,10.52879466400013],[119.94727623800017,10.524155992000187],[119.94467207100016,10.520086981000134],[119.94271894600004,10.515041408000116],[119.91879316500015,10.548041083000072],[119.90870201900005,10.55597565300013],[119.91187584700006,10.536281643000095],[119.91765384200019,10.516180731000146],[119.92025800900002,10.497259833000129],[119.91488691500014,10.480861721000124],[119.90674889400022,10.47874583500011],[119.8952742850001,10.480658270000077],[119.8852645190001,10.47996653900013],[119.88070722700014,10.470363674000138],[119.8771264980002,10.464667059000163],[119.868418816,10.461737372000144],[119.85035241000018,10.46039459800015],[119.83562259200019,10.456040757000068],[119.82162519600004,10.448553778000104],[119.80648847700003,10.446112372000158],[119.78858483200005,10.456976630000142],[119.78093509200008,10.472235419000114],[119.778086785,10.493597723000079],[119.77833092500022,10.53546784100017],[119.76612389400005,10.530747789000172],[119.75709069100016,10.534002997000115],[119.75261478000017,10.539780992000175],[119.75416100400007,10.542954820000146],[119.79542076900012,10.573391018000109],[119.80543053500016,10.585150458000086],[119.82894941500014,10.626410223000136],[119.83790123800006,10.637518622000158],[119.84351647200018,10.642238674000081],[119.84986412899998,10.644761460000097],[119.85962975400005,10.643296617000132],[119.89087975399998,10.62518952000012],[119.92009524800002,10.612738348000107],[119.95020592500006,10.603745835000081],[119.97413170700023,10.595363674000124],[120.00001061300021,10.580471096000068],[120.01124108200015,10.565252997000087],[119.99057050900015,10.55597565300013]]],[[[124.37842858200013,10.628322658000101],[124.30062910199997,10.590073960000138],[124.28435306100008,10.603827216000155],[124.288828972,10.616929429000123],[124.30111738400008,10.631170966000127],[124.30811608200017,10.648423570000134],[124.30958092500012,10.662339585000126],[124.31373131600006,10.677801825000145],[124.31983483200024,10.692368882000082],[124.32764733200023,10.704006252000083],[124.34099368600008,10.71181875200007],[124.35547936300011,10.710638739000144],[124.36915123800021,10.7030703800001],[124.37973066499998,10.691310940000122],[124.3852645190001,10.679754950000088],[124.38835696700018,10.667141018000109],[124.38998457100003,10.641302802000098],[124.37842858200013,10.628322658000101]]],[[[124.5087996750001,10.641546942000133],[124.46241295700021,10.631048895000063],[124.40919030000016,10.648260809000178],[124.40845787900005,10.68382396000014],[124.43555748800017,10.713609117000146],[124.46583092500022,10.713609117000146],[124.50391686300023,10.693304755000057],[124.52068118600006,10.665757554000123],[124.5087996750001,10.641546942000133]]],[[[122.72152754000005,10.585191148000163],[122.68685957100014,10.5060082050001],[122.66431725400017,10.470851955000128],[122.63445071700019,10.444240627000097],[122.59498131599999,10.433050848000093],[122.60523522200006,10.460516669000128],[122.59449303500006,10.459702867000116],[122.57797285200014,10.447088934000135],[122.57081139400012,10.439276434000135],[122.56519616000001,10.43618398600016],[122.54761803500017,10.422512111000117],[122.53663170700023,10.41941966400013],[122.53052819100006,10.423244533000144],[122.52637780000012,10.432359117000146],[122.51929772200006,10.45355866100013],[122.51872806100008,10.458197333000072],[122.52027428499999,10.469875393000152],[122.51929772200006,10.474066473000093],[122.51433353000019,10.477036851000108],[122.50196373800021,10.4796817080001],[122.49878991000016,10.480861721000124],[122.49480228000017,10.483465887000122],[122.48585045700004,10.493068752000099],[122.48243248800017,10.503363348000105],[122.4951278000001,10.508205471000096],[122.50700931100008,10.508002020000133],[122.51685631600012,10.509100653000173],[122.52361087300002,10.51410553600013],[122.52613366000004,10.525580145000077],[122.5293074880001,10.533270575000088],[122.54590905000006,10.540716864000075],[122.55347741000006,10.549139716000111],[122.53500410199997,10.553290106000148],[122.52735436300004,10.57013580900015],[122.52857506600017,10.591213283000087],[122.53663170700023,10.607489325000117],[122.54786217500012,10.622015692000147],[122.56413821700006,10.652573960000083],[122.57455488400016,10.665838934000107],[122.59058678500006,10.673773505000085],[122.60857181100008,10.67739492400014],[122.62322024800007,10.684475002000099],[122.63379967500022,10.722601630000085],[122.64486738400008,10.736273505000113],[122.65845787900005,10.748032945000176],[122.67017662899998,10.76203034100014],[122.69971764400006,10.740383205000157],[122.71111087300002,10.73468659100017],[122.73796634200002,10.694159247000158],[122.73707116000006,10.640041408000087],[122.72152754000005,10.585191148000163]]],[[[125.76050866000007,10.74095286700013],[125.77621504000004,10.738918361000103],[125.80836022200018,10.740423895000148],[125.82203209700012,10.73468659100017],[125.83179772200005,10.720119533000144],[125.82691491000017,10.708929755000142],[125.81364993600002,10.701849677000084],[125.79835045700005,10.699367580000143],[125.77979576900007,10.6991641300001],[125.7693791020001,10.700384833000115],[125.761403842,10.705552476000122],[125.750254754,10.717352606000174],[125.74000084700018,10.72443268400015],[125.70289147200016,10.74095286700013],[125.68409264400012,10.752752997000101],[125.678965691,10.778876044000143],[125.68726647200019,10.80516185100008],[125.70915774800014,10.81769440300016],[125.73145592500022,10.808050848000107],[125.74415123800023,10.758368231000105],[125.76050866000007,10.74095286700013]]],[[[121.08716881600004,10.823472398000135],[121.06226647199999,10.8175723330001],[121.03467858200011,10.819810289000173],[121.01758873800016,10.834133205000157],[121.025157097,10.864447333000143],[121.03207441500003,10.870510158000144],[121.066661004,10.89109935100008],[121.0857853520001,10.908880927000068],[121.09327233200023,10.910386460000112],[121.09449303500017,10.895819403000175],[121.09449303500017,10.87348053600006],[121.08073978000006,10.8417422550001],[121.08716881600004,10.823472398000135]]],[[[123.26978600400005,10.977362372000115],[123.2768660820001,10.974310614000117],[123.29566491000017,10.975327867000173],[123.30079186300006,10.974310614000117],[123.31185957100003,10.96698639500012],[123.32960045700011,10.951402085000124],[123.34180748800006,10.946356512000179],[123.35377037899998,10.947577216000113],[123.37924238400004,10.958807684000107],[123.39014733200011,10.960028387000122],[123.40357506600017,10.953192450000117],[123.40137780000012,10.945298570000134],[123.39503014400017,10.93622467700014],[123.39625084700018,10.925930080000114],[123.40544681100008,10.919826565000136],[123.41293379000004,10.924058335000055],[123.42066491000006,10.93268463700015],[123.43100019600014,10.939601955000157],[123.44564863400014,10.942287502000127],[123.45687910200016,10.94049713700015],[123.467051629,10.936509507000082],[123.50261478000007,10.92772044500019],[123.52182050900004,10.91990794500012],[123.53500410200014,10.904852606000105],[123.54175866,10.865464585000112],[123.54664147200016,10.856105861000088],[123.56080162899998,10.837144273000163],[123.56364993600006,10.835353908000087],[123.56739342500006,10.835394598000079],[123.57105553500006,10.834784247000115],[123.57447350400005,10.830959377000099],[123.57553144599997,10.825588283000144],[123.57081139400006,10.779242255000069],[123.56153405000023,10.760077216000099],[123.53345787900005,10.721096096000124],[123.51685631600017,10.680975653000102],[123.48568769599999,10.549139716000111],[123.47364342500006,10.526760158000101],[123.3896590500001,10.437160549000124],[123.37940514400006,10.42153554900014],[123.36573326900023,10.39252350500007],[123.3447371750001,10.34796784100017],[123.34180748800006,10.326605536000116],[123.34034264400012,10.260687567000076],[123.33545983200023,10.240668036000102],[123.30469811300006,10.178534247000172],[123.30079186300006,10.15534088700015],[123.2998153000001,10.131415106000174],[123.29664147200005,10.1114769550001],[123.29037519599997,10.09357330900015],[123.24415123800006,10.02635325700011],[123.23552493600019,10.00189850500007],[123.2285262380001,9.994696356000134],[123.22136478000006,9.98908112200013],[123.21810957100004,9.984035549000097],[123.20443769600014,9.939032294000114],[123.17595462300008,9.90810781500008],[123.162364129,9.890204169000114],[123.15674889400012,9.86762116100013],[123.17042076900023,9.69599030200007],[123.1645613940001,9.672186591000155],[123.16358483200023,9.661851304000066],[123.16041100400017,9.647406317000103],[123.15308678500017,9.646633205000086],[123.14405358200023,9.649237372000172],[123.13624108200015,9.644842841000099],[123.13542728000006,9.618353583000129],[123.17741946700002,9.589911200000103],[123.17042076900023,9.562892971000151],[123.16114342500013,9.58380768400012],[123.143809441,9.573675848000065],[123.13550866000006,9.552679755000128],[123.15333092500012,9.541164455000086],[123.18091881599999,9.537420966000155],[123.18995201900023,9.526800848000107],[123.19166100400004,9.509833075000131],[123.19760175900014,9.487127997000101],[123.2116805350001,9.472723700000131],[123.23259524800008,9.45966217700014],[123.2514754570001,9.443996486000074],[123.267263217,9.398342190000136],[123.28484134200008,9.379706122000144],[123.30518639400023,9.362494208000129],[123.32113691500015,9.343166408000116],[123.32829837300018,9.302557684000107],[123.31763756600017,9.256903387000165],[123.29859459700016,9.215033270000061],[123.24341881600004,9.136460679000137],[123.23878014400022,9.120306708000086],[123.23015384200014,9.10761139500012],[123.16098066500004,9.065659898000135],[123.1477156910001,9.061835028000118],[123.11207116000006,9.061957098000093],[123.09994550900015,9.059963283000144],[123.07992597699999,9.050970770000134],[123.05787194100016,9.0468203800001],[123.04265384200018,9.037339585000081],[123.03321373800011,9.035305080000157],[122.99048912900017,9.048773505000142],[122.95769290500019,9.081244208000129],[122.93360436300023,9.12148672100011],[122.89258873800023,9.22101471600017],[122.88672936300011,9.287990627000084],[122.88054446700002,9.305853583000143],[122.869395379,9.322658596000153],[122.84489993600019,9.347072658000101],[122.827891472,9.358710028000118],[122.8110457690001,9.36359284100017],[122.74512780000018,9.366603908000087],[122.72478274800008,9.371079820000148],[122.68067467500005,9.394354559000163],[122.66675865999999,9.39777252800016],[122.65723717500012,9.401434637000122],[122.64926191500014,9.409898179000066],[122.64242597700003,9.419256903000102],[122.63599694100004,9.4257266300001],[122.6235457690001,9.428900458000072],[122.610118035,9.4296328800001],[122.5994572270001,9.432684637000179],[122.59709720100014,9.437648830000143],[122.59066816500003,9.45099518400015],[122.57016035200016,9.475246486000145],[122.55176842500012,9.490952867000102],[122.52979576900012,9.537909247000144],[122.51587975400005,9.54857005400008],[122.50521894599999,9.552394924000097],[122.49659264400006,9.561712958000129],[122.46680748800004,9.623846747000144],[122.45728600400017,9.637925523000192],[122.46436608200023,9.646958726000108],[122.4614363940001,9.655259507000082],[122.44361412900004,9.672756252000127],[122.43824303500016,9.668402411000145],[122.42823326900012,9.66278717700014],[122.42310631600017,9.65843333500014],[122.42481530000012,9.672796942000119],[122.43083743600019,9.698797919000114],[122.43043053500011,9.713690497000158],[122.42457116000007,9.710150458000086],[122.40870201900022,9.703070380000113],[122.40259850400004,9.699408270000076],[122.403575066,9.738959052000112],[122.40935306100006,9.775702216000113],[122.40984134200008,9.808539130000113],[122.39519290500007,9.83661530200011],[122.39519290500007,9.842840887000165],[122.40593509200009,9.853461005000113],[122.44410241000006,9.921535549000154],[122.46159915500019,9.96580638200011],[122.47461998800006,9.974351304000137],[122.49537194100019,9.97699616100013],[122.53777103000006,9.987046617000189],[122.56031334700006,9.987453518000109],[122.62598717500023,9.974676825000158],[122.64283287900005,9.966945705000143],[122.65699303500017,9.975816148000192],[122.70777428499999,9.986395575000145],[122.72852623800011,9.997381903000104],[122.78223717500005,10.05296458500014],[122.80738366000016,10.069322007000068],[122.82691491000006,10.058091539000158],[122.84489993600019,10.067287502000127],[122.872813347,10.100409247000158],[122.8789168630001,10.118068752000083],[122.87582441500004,10.143011786000102],[122.86255944100017,10.185451565000093],[122.85531660200016,10.228013414000129],[122.869395379,10.35053131700009],[122.85938561300023,10.394476630000113],[122.82178795700024,10.47247955900015],[122.81470787900015,10.515041408000116],[122.82390384200002,10.532863674000083],[122.84253991000006,10.54140859600011],[122.86101321700008,10.546210028000102],[122.869395379,10.55255768400012],[122.87484785200016,10.561835028000175],[122.91041100400005,10.597560940000108],[122.93384850400011,10.648830471000139],[122.9345809250001,10.658392645000134],[122.97169030000022,10.721096096000124],[122.97584069100017,10.742417710000097],[122.97169030000022,10.80609772300015],[122.96851647200018,10.81110260600009],[122.95394941500015,10.82200755400008],[122.95069420700013,10.827215887000165],[122.95215905000022,10.847723700000117],[122.95435631600004,10.855780341000155],[122.95818118600008,10.864447333000143],[122.96631920700004,10.876369533000087],[122.99382571700019,10.906724351000065],[123.00261478000019,10.912827867000146],[123.04802493600006,10.914862372000172],[123.06771894600004,10.918850002000156],[123.08773847700009,10.925930080000114],[123.17009524800012,10.977199611000145],[123.21355228000007,10.996405341000113],[123.25977623800006,10.994818427000084],[123.26221764400012,10.991156317000119],[123.26514733200023,10.984116929000066],[123.26978600400005,10.977362372000115]]],[[[119.64869225400017,11.029608466000127],[119.64795983200021,11.01528554900014],[119.64128665500007,11.01528554900014],[119.63575280000022,11.019517320000162],[119.6290796230002,11.018866278000116],[119.62142988400015,11.014634507000096],[119.61312910199997,11.008449611000117],[119.608571811,11.024562893000095],[119.59693444100006,11.034735419000143],[119.58521569100006,11.041205145000134],[119.57976321700018,11.045965887000136],[119.5766707690001,11.084051825000131],[119.57976321700018,11.097845770000134],[119.620371941,11.081244208000086],[119.63209069100012,11.0698916690001],[119.63982181100019,11.057766018000109],[119.64551842500006,11.04409414300008],[119.64869225400017,11.029608466000127]]],[[[119.63233483200024,11.181626695000148],[119.62769616,11.173041083000129],[119.60987389400023,11.156724351000108],[119.58952884200008,11.141791083000072],[119.58334394600008,11.138820705000143],[119.57007897200005,11.144354559000163],[119.56714928500006,11.15704987200013],[119.56959069100019,11.170721747000158],[119.57292728000019,11.179144598000121],[119.57553144599997,11.178371486000103],[119.59343509200002,11.186590887000094],[119.59766686300004,11.190822658000116],[119.60035241000004,11.19513580900012],[119.60434004000003,11.198635158000116],[119.61312910199997,11.200262762000136],[119.62842858200021,11.190171617000159],[119.63233483200024,11.181626695000148]]],[[[123.99952233200004,11.077337958000086],[124.00912519600014,11.073391018000095],[124.01254316500015,11.06622955900015],[124.01392662900005,11.059312242000146],[124.01710045700011,11.056219794000157],[124.03728274800002,11.057521877000156],[124.04615319100016,11.059759833000143],[124.05494225400005,11.063666083000143],[124.05193118600008,11.043158270000092],[124.06177819100017,10.984279690000122],[124.05974368600002,10.962307033000101],[124.05347741000016,10.930568752000141],[124.05494225400005,10.912827867000146],[124.06690514400006,10.889064846000153],[124.0685327480002,10.878119208000086],[124.06495201900023,10.867905992000146],[124.05062910200017,10.845038153000132],[124.04737389400012,10.834051825000174],[124.04379316500003,10.80947500200007],[124.02662194100012,10.769598700000103],[124.02076256600006,10.747748114000146],[124.02393639400012,10.70844147300015],[124.05079186300011,10.627386786000116],[124.05494225400005,10.590073960000138],[124.05176842500005,10.589504299000083],[124.04468834699999,10.586004950000174],[124.03736412899998,10.581122137000122],[124.03386478000002,10.576483466000099],[124.03443444100016,10.571437893000152],[124.04037519600006,10.56854889500012],[124.04127037899998,10.562811591000155],[124.04004967500012,10.484361070000105],[124.03589928500004,10.466782945000176],[124.00977623800011,10.404038804000095],[124.01010175900002,10.39492422100011],[124.018728061,10.380804755000085],[124.014903191,10.372463283000101],[123.99284915500012,10.3573672550001],[123.99048912900015,10.368841864000146],[123.98585045700024,10.375962632000096],[123.97966556100006,10.37718333500011],[123.97291100400004,10.370998440000136],[123.97087649800018,10.362209377000084],[123.97291100400004,10.326605536000116],[123.96111087300008,10.323309637000179],[123.90626061300023,10.294501044000143],[123.88965905000012,10.282212632000096],[123.86866295700015,10.248195705000157],[123.85710696700002,10.24213288000007],[123.83179772200018,10.240668036000102],[123.80811608200005,10.236639716000141],[123.793630405,10.226467190000093],[123.77369225400004,10.199693101000094],[123.71949303500016,10.156805731000118],[123.71168053500017,10.141343492000187],[123.70997155000006,10.120591539000188],[123.70484459700016,10.10545482000019],[123.69613691499998,10.093898830000072],[123.68376712300001,10.08364492400014],[123.67554772200005,10.079006252000113],[123.66342207100014,10.07465241100013],[123.65699303500006,10.069322007000068],[123.65259850400017,10.06362539300008],[123.64820397200016,10.055650132000123],[123.64478600400015,10.047023830000114],[123.64332116000001,10.038967190000093],[123.64332116000001,9.960109768000137],[123.63086998800011,9.907619533000087],[123.6290796230002,9.88751862200013],[123.62476647200012,9.87933991100013],[123.61548912900005,9.87445709800015],[123.60596764400023,9.871161200000117],[123.60181725399998,9.86762116100013],[123.50945071700019,9.653509833000086],[123.50342858200004,9.615301825000131],[123.48829186300006,9.566473700000131],[123.47950280000012,9.54857005400008],[123.47103925900008,9.538967190000093],[123.45329837300007,9.528062242000118],[123.44467207100008,9.521307684000178],[123.43588300900004,9.509955145000106],[123.42269941500017,9.487697658000158],[123.36963951900022,9.4257266300001],[123.35857181100017,9.415757554000109],[123.34245853,9.406805731000176],[123.32764733200015,9.40814850500007],[123.32113691500015,9.429144598000107],[123.31421959700016,9.485541083000072],[123.31430097700016,9.50763580900015],[123.36524498800016,9.785345770000077],[123.40495853000006,9.878404039000143],[123.40919030000005,9.897691148000177],[123.41065514400022,9.922552802000126],[123.40642337300001,9.927557684000163],[123.38754316499998,9.937079169000157],[123.38331139400006,9.94269440300016],[123.38705488400005,9.97378164300008],[123.39014733200011,9.980617580000086],[123.39844811300004,9.984808661000116],[123.40406334700019,9.98126862200013],[123.40772545700023,9.975816148000192],[123.41065514400022,9.974351304000137],[123.41521243600017,9.981350002000111],[123.41716556100006,9.989650783000101],[123.41732832100004,10.0116641300001],[123.42253665500017,10.037502346000123],[123.43539472700004,10.055080471000153],[123.47201582100014,10.08364492400014],[123.50798587300014,10.122219143000123],[123.52133222700004,10.145249742000175],[123.53345787900005,10.190375067000147],[123.58130944100007,10.254339911000145],[123.59685306100008,10.317775783000158],[123.60547936300017,10.333156643000109],[123.62273196700006,10.35053131700009],[123.706797722,10.461981512000179],[123.71168053500017,10.477443752000111],[123.71387780000005,10.48232656500008],[123.7185164720001,10.487290757000125],[123.72315514400022,10.49420807500013],[123.72535241000007,10.504787502000084],[123.71802819099999,10.537054755000113],[123.71908613400008,10.549139716000111],[123.72925866000001,10.569240627000156],[123.75440514400012,10.599432684000178],[123.76498457100014,10.640041408000087],[123.77784264400006,10.662583726000065],[123.79273522200005,10.683254299000083],[123.83155358200023,10.725083726000108],[123.849294467,10.752630927000126],[123.91578209700006,10.939764716000113],[123.93458092500012,10.970445054000123],[123.93002363400015,10.99359772300015],[123.91773522200012,11.028957424000083],[123.92408287900005,11.04633209800015],[123.93523196700006,11.05923086100016],[123.94434655000022,11.074164130000113],[123.94507897200018,11.097845770000134],[123.95191491000016,11.097845770000134],[123.95541425899998,11.090236721000096],[123.95964603000019,11.085516669000086],[123.97291100400004,11.077337958000086],[123.96070397200006,11.130764065000122],[123.95525149800018,11.142238674000154],[123.95191491000016,11.156724351000108],[123.95875084699999,11.175930080000157],[123.96973717500018,11.194525458000072],[124.01832116000006,11.258490302000068],[124.04566491000013,11.277167059000135],[124.07471764400005,11.2691104190001],[124.07276451900012,11.262030341000141],[124.06812584700016,11.233343817000076],[124.05567467500006,11.205023505000128],[124.0512801440001,11.185492255000142],[124.04737389400012,11.148749091000155],[124.04127037899998,11.130113023000163],[124.01075280000005,11.094549872000101],[123.99952233200004,11.077337958000086]]],[[[123.74968509200019,11.14134349200016],[123.74577884200018,11.138820705000143],[123.73365319100012,11.154282945000162],[123.70866946700019,11.217840887000165],[123.70484459700016,11.241197007000068],[123.70850670700021,11.252427476000065],[123.71583092500012,11.26414622600005],[123.73275800900002,11.283758856000103],[123.74577884200018,11.292466539000188],[123.75464928500006,11.28953685100008],[123.76091556100019,11.278876044000143],[123.78931725400004,11.198919989000146],[123.801036004,11.179144598000121],[123.81153405000006,11.165269273000135],[123.81804446700008,11.154730536000073],[123.81495201900006,11.148016669000128],[123.74968509200019,11.14134349200016]]],[[[119.52295983200017,11.339911200000117],[119.52955162900005,11.33055247600008],[119.53882897200018,11.32371653900016],[119.54151451900016,11.328070380000057],[119.54769941500005,11.332668361000088],[119.55241946700002,11.337388414000188],[119.56706790500006,11.301418361000117],[119.56902103000017,11.261664130000128],[119.56104576900023,11.2202822940001],[119.54566491,11.179144598000121],[119.52051842500012,11.138413804000137],[119.51636803500018,11.117499091000084],[119.52857506600004,11.094142971000096],[119.55339603000012,11.072211005000069],[119.56177819100017,11.059027411000116],[119.57243899800018,11.01532623900013],[119.57056725400005,11.007513739000132],[119.55925540500007,11.000962632000068],[119.5383406910001,11.012762762000122],[119.52418053500017,11.01732005400008],[119.5175887380001,11.011867580000128],[119.50660241000006,10.983587958000086],[119.50456790500013,10.970892645000118],[119.50570722700014,10.95864492400014],[119.51042728000009,10.937323309000178],[119.511403842,10.925930080000114],[119.51010175900002,10.916327216000141],[119.5050561860002,10.896470445000134],[119.50456790500013,10.884955145000106],[119.50733483200007,10.874945380000113],[119.51587975400011,10.859279690000136],[119.51929772200012,10.837713934000135],[119.52393639400023,10.82762278900016],[119.53158613400015,10.819810289000173],[119.54224694100017,10.81663646000011],[119.55494225400005,10.818670966000141],[119.56275475400004,10.823187567000105],[119.56804446700012,10.82807038000007],[119.57292728000019,10.830959377000099],[119.58521569100006,10.833441473000121],[119.58912194100004,10.834702867000132],[119.59343509200002,10.837144273000163],[119.60271243600017,10.824408270000118],[119.60157311300017,10.810858466000141],[119.59644616000004,10.797552802000126],[119.59343509200002,10.785589911000102],[119.60010826900013,10.754584052000084],[119.60010826900013,10.717352606000174],[119.59636478000009,10.697088934000178],[119.590505405,10.682440497000158],[119.59083092500022,10.672430731000174],[119.60629316500014,10.665838934000107],[119.62720787900005,10.668117580000086],[119.64136803500004,10.675848700000103],[119.65357506600004,10.67511627800016],[119.66846764400006,10.652167059000163],[119.6591903000001,10.655096747000101],[119.650645379,10.656195380000142],[119.64242597699999,10.655259507000068],[119.63445071700008,10.652167059000163],[119.63990319100017,10.643947658000087],[119.64258873800004,10.637884833000086],[119.64275149800002,10.63206614800012],[119.64128665500007,10.624904690000093],[119.65512129000015,10.61229075700011],[119.66277103000019,10.570990302000068],[119.67188561300011,10.55255768400012],[119.71412194099999,10.532660223000136],[119.72535241000001,10.518622137000179],[119.70997155000006,10.494533596000153],[119.70199629000004,10.490871486000103],[119.67847741000016,10.485663153000104],[119.66846764400006,10.480861721000124],[119.64795983200021,10.449855861000103],[119.63965905000023,10.444728908000087],[119.59343509200002,10.405178127000127],[119.57585696700019,10.380519924000138],[119.56324303500006,10.373480536000073],[119.54224694100017,10.370998440000136],[119.5008244150001,10.370998440000136],[119.48902428499999,10.372463283000101],[119.4726668630001,10.3781192080001],[119.4630639980002,10.378485419000114],[119.44922936300011,10.37303294500016],[119.41871178500017,10.35455963700015],[119.39812259200004,10.35053131700009],[119.37826582100006,10.344142971000153],[119.35596764400012,10.328843492000189],[119.28598066499998,10.261379299000112],[119.25733483200023,10.221991278000132],[119.23715253999998,10.179348049000096],[119.22071373800011,10.08417389500012],[119.19629967500022,10.056341864000075],[119.15943444100019,10.041245835000067],[119.113536004,10.028998114000089],[119.10254967500023,10.024400132000068],[119.08253014400007,10.012518622000101],[119.072032097,10.007961330000157],[119.06055748800004,10.006659247000158],[119.0361434250001,10.00901927300012],[119.02475019600016,10.007961330000157],[119.01498457100003,10.003729559000135],[118.99496504000014,9.99201080900015],[118.9838973320001,9.987453518000109],[118.97291100400005,9.984523830000086],[118.95142662900005,9.981024481000091],[118.903005405,9.978664455000143],[118.87476647200006,9.971869208000115],[118.84880618600008,9.959133205000157],[118.81934655000006,9.939032294000114],[118.79656009200008,9.94521719000008],[118.77418053500006,9.934149481000134],[118.75717207100008,9.91266510600012],[118.7504988940001,9.88751862200013],[118.75456790500017,9.855943101000136],[118.775645379,9.814032294000143],[118.78467858200013,9.788234768000109],[118.77784264400012,9.73419830900012],[118.76490319100016,9.728745835000083],[118.74903405000023,9.732814846000137],[118.73560631600016,9.743475653000159],[118.72999108200005,9.75775788000007],[118.73389733200004,9.775702216000113],[118.72966556100002,9.780422268000123],[118.7129012380001,9.781968492000159],[118.70093834700018,9.775539455000143],[118.70191491000016,9.760239976000094],[118.7055770190001,9.742173570000162],[118.70199629000015,9.727362372000101],[118.71314537900017,9.721625067000119],[118.71973717500022,9.713812567000131],[118.72095787900017,9.704046942000089],[118.71631920700024,9.692572333000143],[118.74293053500016,9.696844794000157],[118.75831139400012,9.683335679000095],[118.75635826900016,9.667669989000117],[118.72999108200005,9.665269273000163],[118.73161868600017,9.65037669500012],[118.72535241000004,9.63129303600013],[118.715505405,9.612779039000117],[118.70582116000017,9.600083726000065],[118.70053144599997,9.591498114000132],[118.69890384200008,9.583726304000137],[118.69532311300011,9.578070380000142],[118.67481530000022,9.5743675800001],[118.66920006600006,9.569973049000124],[118.5921330090001,9.446193752000156],[118.55730228000003,9.411688544000143],[118.55193118600006,9.401190497000172],[118.54737389400023,9.38300202000009],[118.53646894600014,9.364325262000108],[118.49789472700009,9.313666083000129],[118.49219811300011,9.308823960000067],[118.45508873800006,9.284369208000115],[118.4456486340001,9.28168366100013],[118.43083743600019,9.273179429000109],[118.38054446700004,9.220282294000143],[118.36500084700008,9.193060614000146],[118.35377037900004,9.183172919000128],[118.33578535199999,9.179266669000143],[118.29493248800021,9.179266669000143],[118.28435306100019,9.176418361000103],[118.26140384200019,9.162787177000054],[118.25017337300021,9.158148505000128],[118.189138217,9.155991929000123],[118.17123457100008,9.14826080900012],[118.16342207099997,9.142808335000083],[118.136973504,9.130845445000148],[118.13209069100006,9.126654364000117],[118.12671959700018,9.096136786000088],[118.11304772200005,9.069403387000165],[118.11207116000017,9.064927476000108],[118.11345462300002,9.053778387000179],[118.11304772200005,9.0489769550001],[118.10914147200006,9.047593492000118],[118.10222415500007,9.047796942000076],[118.09546959700002,9.045965887000179],[118.09253991000017,9.038397528000132],[118.08912194100017,9.019761460000055],[118.08041425899998,8.996283270000092],[118.0583602220001,8.952093817000119],[118.01368248800023,8.887600002000141],[118.00066165500007,8.877386786000102],[117.91041100400005,8.829738674000126],[117.84009850399998,8.774481512000122],[117.77369225400015,8.703070380000142],[117.75538170700011,8.69017161700013],[117.7329207690001,8.685207424000083],[117.71127363400004,8.682928778000104],[117.6980086600001,8.677435614000075],[117.685801629,8.670640367000146],[117.66732832099997,8.66474030200011],[117.64673912900015,8.663275458000143],[117.58887780000023,8.670965887000165],[117.56560306100002,8.661078192000062],[117.55738366000006,8.638413804000109],[117.55811608200005,8.596421617000118],[117.55014082100004,8.575628973000136],[117.52312259200006,8.539699611000145],[117.51726321700015,8.517645575000145],[117.512868686,8.506781317000076],[117.50318444100017,8.50071849200016],[117.49350019600004,8.49966054900011],[117.48910566500003,8.503648179000095],[117.48414147200018,8.513006903000132],[117.47217858200017,8.513820705000143],[117.37891686300021,8.48631419500019],[117.34498131600017,8.471258856000176],[117.31861412900011,8.451849677000082],[117.31519616000016,8.446112372000115],[117.30762780000022,8.429388739000089],[117.30437259200019,8.424505927000112],[117.27003014400022,8.414292710000083],[117.26384524800008,8.397609768000137],[117.24927819100004,8.383530992000189],[117.22234134200009,8.363714911000088],[117.19800866,8.334784247000172],[117.1907658210001,8.338324286000145],[117.18824303500016,8.366522528000132],[117.19044030000025,8.378159898000135],[117.19971764400012,8.398016669000143],[117.20476321700002,8.418646552000068],[117.2114363940001,8.427069403000116],[117.21843509200006,8.43341705900015],[117.22234134200009,8.43817780200014],[117.22339928500006,8.448065497000158],[117.22193444100016,8.469061591000099],[117.22250410200004,8.48432038000007],[117.22193444100016,8.49506256700009],[117.22234134200009,8.500230210000083],[117.22535241000017,8.505316473000107],[117.23414147200006,8.511297919000128],[117.23959394600008,8.535793361000145],[117.24854576900012,8.555080471000096],[117.27003014400022,8.589016018000137],[117.26775149800008,8.590318101000136],[117.26392662900004,8.610093492000159],[117.27995853000002,8.604966539000143],[117.28679446700008,8.620347398000177],[117.29151451900017,8.640814520000148],[117.30111738400014,8.651068427000084],[117.31218509200008,8.6561953800001],[117.32715905000012,8.668646552000112],[117.34205162900018,8.684271552000098],[117.35271243600019,8.698879299000112],[117.33904056100008,8.698879299000112],[117.35962975399998,8.731268622000115],[117.3759871750001,8.746812242000116],[117.41773522200006,8.759100653000175],[117.43555748800023,8.77313873900013],[117.45036868600017,8.791164455000157],[117.51978600400005,8.89972565300013],[117.54379316499997,8.925441799000083],[117.62273196700019,8.991848049000112],[117.64014733200004,9.020982164000158],[117.64771569100006,9.0429141300001],[117.655528191,9.057928778000116],[117.66863040500019,9.066636460000112],[117.6919051440001,9.069403387000165],[117.70443769599999,9.07949453300013],[117.71225019599997,9.081610419000143],[117.71566816500003,9.07249583500014],[117.71973717500018,9.065822658000101],[117.72950280000013,9.064154364000089],[117.74073326900012,9.065904039000172],[117.75001061300017,9.069403387000165],[117.7618921230002,9.077948309000178],[117.76807701900005,9.086411851000122],[117.78052819100012,9.120266018000095],[117.78239993600006,9.122544664000158],[117.78785240999999,9.127427476000136],[117.791270379,9.134833075000117],[117.78931725400015,9.142320054000095],[117.78402753999998,9.151353257000096],[117.79656009200019,9.163275458000143],[117.836680535,9.18821849200016],[117.84986412900005,9.192938544000171],[117.86646569099999,9.203599351000108],[117.88998457100016,9.250555731000134],[117.9044702480002,9.261216539000173],[117.94499759200002,9.256089585000069],[117.9663192070001,9.257269598000093],[117.98951256600004,9.267401434000135],[117.98804772200016,9.255926825000103],[117.98959394600004,9.246242580000143],[117.99447675899998,9.238592841000113],[118.00318444100017,9.233303127000127],[118.016368035,9.243231512000136],[118.0258895190001,9.253810940000093],[118.04468834700006,9.28168366100013],[118.05437259200012,9.291449286000088],[118.12696373800011,9.337836005000142],[118.1335555350001,9.343166408000116],[118.13526451900012,9.351874091000099],[118.13103274800008,9.373195705000157],[118.1335555350001,9.3847110050001],[118.148203972,9.39671458500011],[118.1715600920002,9.40786367400014],[118.19288170700004,9.421820380000113],[118.21631920700021,9.477972723000107],[118.27719160200016,9.519720770000148],[118.29769941500003,9.55487702000012],[118.32618248800011,9.579046942000117],[118.33277428500011,9.586411851000122],[118.33497155000006,9.591620184000107],[118.33961022199999,9.596584377000156],[118.34424889400023,9.603216864000132],[118.34644616000004,9.613755601000094],[118.34546959700005,9.636175848000107],[118.34913170700011,9.645738023000177],[118.36011803500017,9.65843333500014],[118.37175540500006,9.654364325000088],[118.38233483200024,9.6577822940001],[118.40113366000017,9.672756252000127],[118.40845787900017,9.676336981000105],[118.4152938160001,9.677720445000176],[118.42025800900014,9.680731512000179],[118.42432701900012,9.697902736000117],[118.42945397200002,9.700628973000093],[118.43620853000007,9.701890367000187],[118.44263756600016,9.706244208000086],[118.45085696700008,9.715765692000089],[118.53052819100004,9.774237372000144],[118.53760826900005,9.785101630000128],[118.5483504570001,9.812404690000122],[118.59571373800023,9.857367255000113],[118.60645592500023,9.874172268000123],[118.60824629000015,9.885321356000132],[118.61312910200003,9.90094635600012],[118.62061608200005,9.916896877000127],[118.6572371750001,9.965236721000139],[118.66797936300011,9.974351304000137],[118.65650475400017,9.996161200000088],[118.67359459699999,10.011786200000174],[118.72250410199997,10.035834052000112],[118.72885175900004,10.045803127000099],[118.76368248800006,10.120754299000152],[118.77165774800012,10.130804755000128],[118.77662194100016,10.099066473000077],[118.77662194100016,10.083075262000165],[118.76783287899998,10.076157945000176],[118.76295006600004,10.069240627000084],[118.7794702480002,10.056301174000081],[118.80111738400005,10.049017645000148],[118.81185957100003,10.059068101000136],[118.81478925900014,10.067287502000127],[118.82129967500022,10.073879299000112],[118.82829837300018,10.079250393000152],[118.83236738400011,10.08364492400014],[118.83765709700005,10.095689195000148],[118.83863366000006,10.09992096600017],[118.83643639400023,10.102728583000129],[118.81771894600016,10.136704820000162],[118.81234785199999,10.152085679000109],[118.81185957100003,10.172349351000122],[118.81576582100004,10.188910223000093],[118.82227623800011,10.194525458000086],[118.84294681100002,10.192857164000158],[118.85515384200018,10.196030992000132],[118.87533613400004,10.210150458000072],[118.89112389400005,10.21332428600013],[118.91846764400023,10.20831940300009],[118.93360436300023,10.209662177000082],[118.94971764400012,10.22016022300015],[118.95834394600003,10.235256252000156],[118.96013431100017,10.252508856000162],[118.95671634200018,10.26919179900011],[118.94971764400012,10.282212632000096],[118.95655358200023,10.284816799000097],[118.95948326900024,10.286810614000132],[118.96265709699999,10.286444403000116],[118.97022545700005,10.282212632000096],[118.97925866000017,10.292303778000147],[118.993418816,10.300279039000117],[119.00945071700019,10.306097723000065],[119.02475019600016,10.309556382000068],[119.02173912900004,10.325181382000139],[119.03003991000006,10.33856842700014],[119.03394616000004,10.349351304000066],[119.01791425900004,10.3573672550001],[119.00814863399997,10.353705145000148],[118.99594160200004,10.34609609600011],[118.98438561300011,10.34406159100017],[118.97641035200003,10.3573672550001],[118.97974694100017,10.368109442000117],[118.98975670700024,10.383286851000108],[119.00196373800023,10.397528387000108],[119.01172936300006,10.405178127000127],[119.0275171230002,10.407171942000076],[119.04395592500012,10.40420156500015],[119.05933678500004,10.398260809000135],[119.072032097,10.391506252000099],[119.07911217500006,10.404689846000139],[119.07911217500006,10.41547272300015],[119.08432050900015,10.422796942000145],[119.10670006600017,10.425604559000107],[119.09961998800021,10.438706773000163],[119.090586785,10.44562409100017],[119.08448326900023,10.452785549000112],[119.08570397200005,10.46662018400012],[119.09131920700021,10.473089911000116],[119.11109459700018,10.480658270000077],[119.12037194100002,10.487738348000121],[119.11850019600014,10.476792710000069],[119.11703535199997,10.47239817900008],[119.113536004,10.46662018400012],[119.11882571700008,10.454291083000072],[119.12720787900004,10.39492422100011],[119.13526451900006,10.388128973000079],[119.15284264400012,10.398504950000174],[119.18181399800018,10.425604559000107],[119.192067905,10.44798411700013],[119.19556725400005,10.45355866100013],[119.20264733200005,10.4571800800001],[119.21192467500022,10.459702867000116],[119.21998131600017,10.46336497600008],[119.22999108200017,10.485419012000165],[119.26392662899998,10.494126695000148],[119.27808678500006,10.508205471000096],[119.26840254000014,10.51951732000016],[119.25562584699999,10.53095123900013],[119.24724368600008,10.542954820000146],[119.25074303500007,10.55597565300013],[119.2695418630001,10.54852936400006],[119.29078209700018,10.557684637000136],[119.30909264400022,10.574530341000141],[119.31910241000006,10.590073960000138],[119.34498131600004,10.723578192000147],[119.34205162900005,10.736151434000135],[119.32960045700011,10.751166083000072],[119.32545006600017,10.757513739000101],[119.3217879570001,10.76561107000012],[119.31690514400023,10.772691148000177],[119.30909264400022,10.775702216000083],[119.30201256600016,10.772853908000144],[119.29167728000017,10.762111721000124],[119.28484134200008,10.76203034100014],[119.27393639400006,10.77167389500012],[119.27027428500006,10.784898179000066],[119.27125084699999,10.812933661000073],[119.2661238940001,10.826605536000102],[119.25359134200019,10.8374697940001],[119.23780358200024,10.845404364000144],[119.22339928500016,10.850816148000192],[119.25261478,10.88727448100016],[119.25757897200018,10.89109935100008],[119.24927819100017,10.902329820000176],[119.23633873800006,10.908433335000069],[119.22877037900004,10.916245835000069],[119.23707116,10.93268463700015],[119.22250410199999,10.941717841000155],[119.2319442070001,10.951157945000176],[119.24724368600008,10.949774481000105],[119.25074303500007,10.925930080000114],[119.25757897200018,10.925930080000114],[119.25896243600008,10.930080471000153],[119.26441491000016,10.939601955000157],[119.26832116000018,10.931789455000157],[119.27312259200006,10.927476304000066],[119.27857506599999,10.927557684000133],[119.28484134200008,10.93268463700015],[119.29167728000017,10.93268463700015],[119.28785241000017,10.92055898600016],[119.28516686300006,10.917466539000173],[119.27808678500006,10.912827867000146],[119.29167728000017,10.884955145000106],[119.27125084699999,10.884955145000106],[119.27808678500006,10.874945380000113],[119.28858483200011,10.871527411000116],[119.30079186300006,10.873114325000145],[119.31283613399997,10.878119208000086],[119.30583743600019,10.857123114000144],[119.30982506600017,10.847316799000112],[119.32032311300023,10.839260158000087],[119.33326256600006,10.823472398000135],[119.33952884200019,10.823472398000135],[119.33952884200019,10.830959377000099],[119.34693444100016,10.830959377000099],[119.35157311300011,10.810736395000077],[119.36817467500006,10.801336981000148],[119.38640384200008,10.793687242000118],[119.39470462300002,10.778794664000158],[119.39795983200004,10.768215236000117],[119.40495853000006,10.762355861000074],[119.41211998800011,10.761379299000097],[119.41871178500017,10.769924221000123],[119.42611738400016,10.762640692000103],[119.43327884200018,10.752346096000096],[119.43946373800004,10.740423895000148],[119.44109134200019,10.732733466000127],[119.44507897200018,10.727484442000145],[119.45679772200016,10.727280992000187],[119.46753991000016,10.73265208500014],[119.46949303500004,10.741034247000115],[119.46566816500004,10.750230210000081],[119.45997155000022,10.758286851000122],[119.44597415500006,10.789374091000127],[119.43970787900005,10.79604726800008],[119.44418378999998,10.810614325000103],[119.45240319100017,10.824937242000189],[119.45679772200016,10.830959377000099],[119.44988040500006,10.841294664000102],[119.43506920700011,10.852240302000082],[119.4182235040001,10.860907294000157],[119.40495853000006,10.864447333000143],[119.3879500660001,10.864691473000091],[119.3701278000001,10.867743231000176],[119.35523522200016,10.877752997000158],[119.34693444100016,10.898586330000143],[119.34864342500012,10.908026434000163],[119.35906009200019,10.927679755000113],[119.36060631600004,10.93268463700015],[119.35173587300007,10.934759833000086],[119.33773847700004,10.932928778000104],[119.32471764400022,10.93349844000008],[119.31910241000006,10.943019924000152],[119.31999759200002,11.000881252000084],[119.32593834700006,11.01528554900014],[119.32593834700006,11.022772528000104],[119.33326256600006,11.022772528000104],[119.335215691,11.011542059000107],[119.34058678500016,11.004055080000143],[119.34888756600006,11.000433661000088],[119.36060631600004,11.000962632000068],[119.35279381600006,11.023586330000114],[119.327403191,11.064439195000162],[119.32593834700006,11.090399481000146],[119.33497155000023,11.102932033000158],[119.34791100400015,11.089178778000132],[119.36264082100016,11.067572333000143],[119.37728925900014,11.056219794000157],[119.38754316499998,11.054022528000175],[119.39714603000007,11.050279039000143],[119.40609785199997,11.049546617000118],[119.41529381600017,11.056219794000157],[119.41879316500014,11.067857164000173],[119.41871178500017,11.09560781500015],[119.43213951900005,11.122219143000095],[119.42611738400016,11.13393789300008],[119.417165561,11.140326239000103],[119.41529381600017,11.138820705000143],[119.39877363399997,11.159247137000122],[119.39210045700023,11.171372789000117],[119.3879500660001,11.186590887000094],[119.40072675900016,11.185370184000178],[119.413340691,11.196682033000158],[119.42359459700005,11.213202216000141],[119.428965691,11.227525132000123],[119.42839603,11.249823309000163],[119.42058353000006,11.297552802000112],[119.4255477220001,11.313544012000122],[119.43018639400012,11.318426825000174],[119.43344160200016,11.322658596000108],[119.43506920700011,11.32737864800012],[119.43580162900004,11.333970445000176],[119.43873131600006,11.337958075000158],[119.44483483200023,11.3378360050001],[119.44988040500006,11.334906317000076],[119.44939212300007,11.330633856000162],[119.46550540500006,11.346828518000109],[119.47380618600002,11.357855536000073],[119.47730553500001,11.368475653000102],[119.4799910820001,11.396185614000089],[119.48438561300006,11.410549221000068],[119.49105879000004,11.420884507000082],[119.5019637380001,11.423325914000115],[119.50904381600016,11.413072007000082],[119.51295006600017,11.397772528000118],[119.51441491000004,11.385443427000084],[119.51449629000004,11.367661851000094],[119.515391472,11.36176178600006],[119.51856530000006,11.3507754580001],[119.52295983200017,11.339911200000117]]],[[[119.87614993600013,11.47964101800008],[119.86980228000019,11.440619208000115],[119.85352623800021,11.404730536000116],[119.83285566500003,11.378363348000121],[119.82203209700006,11.387396552000126],[119.82056725400017,11.3996035830001],[119.82545006600007,11.413153387000165],[119.83285566500003,11.426174221000153],[119.82064863400016,11.426418361000103],[119.80396569100002,11.431626695000174],[119.79542076900012,11.433010158000158],[119.78907311300004,11.420355536000102],[119.78207441499998,11.411322333000086],[119.77084394599999,11.406317450000143],[119.77003014400006,11.41063060100005],[119.76368248800021,11.419826565000122],[119.75513756599999,11.428900458000115],[119.74732506600006,11.433010158000158],[119.73609459700006,11.43740469000015],[119.73023522200016,11.456447658000144],[119.71615644600014,11.460353908000144],[119.72868899800002,11.478013414000143],[119.74138431100019,11.469061591000127],[119.75513756599999,11.450832424000138],[119.77084394599999,11.440415757000068],[119.78101647200006,11.447699286000073],[119.78419030000012,11.464789130000113],[119.78516686300004,11.49445221600014],[119.79273522199999,11.484808661000088],[119.80298912900005,11.468003648000163],[119.81251061300021,11.460353908000144],[119.8178817070001,11.470038153000102],[119.82357832099997,11.472560940000122],[119.82886803500017,11.468898830000157],[119.83285566500003,11.460353908000144],[119.84009850400017,11.475653387000108],[119.84449303500004,11.49066803600013],[119.84148196700002,11.50259023600016],[119.82601972700004,11.508734442000147],[119.83725019600004,11.515611070000148],[119.84839928500004,11.520656643000095],[119.85840905000012,11.521429755000113],[119.8671981130001,11.51557038000007],[119.87614993600013,11.47964101800008]]],[[[124.443125847,11.44692617400014],[124.48015384200002,11.38519928600013],[124.48365319100004,11.4276797550001],[124.48959394600014,11.446682033000101],[124.50326582099999,11.443833726000065],[124.53370201900022,11.421698309000178],[124.5452580090001,11.40900299700013],[124.56967207100004,11.346828518000109],[124.59424889400022,11.319525458000129],[124.62989342500005,11.304429429000123],[124.67798912900015,11.302679755000128],[124.71338951900017,11.311590887000165],[124.74439537900011,11.328558661000145],[124.79411868600019,11.371527411000102],[124.83277428500006,11.424505927000139],[124.84571373800021,11.433010158000158],[124.85466556100006,11.430975653000132],[124.87484785199999,11.422023830000114],[124.88689212300018,11.419989325000174],[124.89063561300021,11.422023830000114],[124.89014733200017,11.430975653000132],[124.893728061,11.433010158000158],[124.90015709700008,11.430975653000132],[124.9033309250001,11.426459052000082],[124.90430748800006,11.422023830000114],[124.90398196700008,11.419989325000174],[124.9296981130001,11.421291408000087],[124.93816165500006,11.419989325000174],[124.94800866000018,11.41396719000008],[124.96973717500023,11.395819403000175],[124.97632897199999,11.39203522300015],[124.984141472,11.381333726000122],[124.98218834700005,11.357896226000065],[124.97559655000006,11.334418036000088],[124.96631920700023,11.318304755000113],[124.96517988399998,11.30638255400008],[124.96631920700023,11.294419664000145],[124.96949303500011,11.2890078800001],[124.97217858200005,11.287095445000132],[124.97396894600016,11.277085679000066],[124.97632897199999,11.272609768000095],[124.98145592500022,11.267971096000153],[124.98454837300018,11.266180731000176],[124.98780358200015,11.264878648000177],[124.99333743600017,11.261664130000128],[125.00521894600004,11.25714752800016],[125.01392662899998,11.256659247000172],[125.01937910200014,11.252590236000117],[125.02344811300011,11.22793203300013],[125.02808678500004,11.22850169500019],[125.03256269599997,11.2362735050001],[125.03443444100017,11.248032945000176],[125.04175866000017,11.248032945000176],[125.04273522200005,11.217027085000055],[125.04175866000017,11.207098700000145],[125.03874759200006,11.19794342700007],[125.02947024800018,11.182074286000145],[125.02759850400005,11.176011460000138],[125.02963300899998,11.164455471000123],[125.03956139400006,11.144761460000081],[125.04175866000017,11.135402736000145],[125.03980553500006,11.103461005000128],[125.05445397200006,11.010646877000113],[125.05307050900015,10.968207098000136],[125.01286868600008,10.844671942000119],[125.00611412900005,10.79734935100008],[125.01384524800002,10.754584052000084],[125.02719160200016,10.742905992000175],[125.08725019600014,10.714789130000085],[125.11198978000002,10.707464911000088],[125.12029056100017,10.7030703800001],[125.12403405000022,10.695135809000135],[125.13054446700002,10.665838934000107],[125.16993248800011,10.619614976000108],[125.17457116000004,10.61123281500015],[125.19410240999999,10.60297272300015],[125.19581139400012,10.582586981000176],[125.18523196700009,10.532375393000095],[125.18726647200012,10.519680080000128],[125.19662519600003,10.497544664000158],[125.19874108200023,10.484279690000122],[125.19654381600004,10.4468447940001],[125.19874108200023,10.433050848000093],[125.20573978,10.418605861000131],[125.21892337300007,10.398382880000113],[125.2321883470001,10.386867580000072],[125.23975670700023,10.398342190000122],[125.24659264400006,10.398342190000122],[125.25912519600014,10.383205471000124],[125.26661217500023,10.368394273000149],[125.27100670700023,10.34983958500014],[125.27393639400022,10.323187567000103],[125.2758895190001,10.3003604190001],[125.27328535199997,10.27798086100016],[125.26002037900015,10.261053778000173],[125.22925866000017,10.254339911000145],[125.15935306100008,10.281805731000176],[125.14087975400004,10.278794664000173],[125.134043816,10.2579613300001],[125.1367293630001,10.228583075000103],[125.1440535820001,10.200995184000178],[125.15105228000019,10.185451565000093],[125.11703535200016,10.197495835000096],[125.08855228000007,10.228989976000108],[125.0688582690001,10.267238674000152],[125.06169681100006,10.299302476000136],[125.04664147200006,10.31932200700011],[125.04493248800023,10.323187567000103],[125.04151451900023,10.328599351000065],[125.04175866000017,10.364203192000119],[125.03003991000016,10.375392971000123],[125.01042728000002,10.383042710000069],[124.99097741000007,10.381333726000065],[124.97974694100004,10.364203192000119],[124.99301191500014,10.334906317000103],[125.0001733730002,10.199693101000094],[125.02426191500004,10.136053778000118],[125.03060957100014,10.093939520000061],[125.04224694100016,10.049017645000148],[125.04175866000017,10.028998114000089],[125.03174889400013,10.020249742000116],[125.0153100920002,10.02610911700016],[124.96216881600016,10.067328192000119],[124.95923912900017,10.07273997600008],[124.95411217500023,10.086127020000077],[124.94206790500009,10.09170156500008],[124.92823326900022,10.093898830000072],[124.91773522200019,10.097316799000083],[124.90211022200018,10.113023179000137],[124.89389082099999,10.126044012000136],[124.88282311300023,10.134955145000077],[124.85962975400005,10.138251044000114],[124.81519616,10.139390367000146],[124.79517662900005,10.143377997000115],[124.78044681100008,10.151922919000143],[124.76579837300002,10.18593984600008],[124.77198326900012,10.22516510600009],[124.78565514400023,10.26552969000015],[124.79411868600019,10.302720445000148],[124.792246941,10.32566966400013],[124.784841342,10.352728583000072],[124.77100670700021,10.375311591000141],[124.74976647200005,10.38467031500008],[124.73894290500007,10.39545319200009],[124.73560631600007,10.420314846000123],[124.73682701900022,10.447739976000094],[124.74398847700009,10.493719794000143],[124.74634850400004,10.501369533000073],[124.75147545700021,10.50995514500009],[124.76482181100008,10.525864976000108],[124.76734459700016,10.532375393000095],[124.76856530000012,10.5773379580001],[124.77230879000003,10.59735748900006],[124.79810631600017,10.659125067000076],[124.80095462300018,10.678290106000134],[124.80054772200018,10.724514065000136],[124.77881920700023,10.821437893000109],[124.77361087300001,10.830959377000099],[124.73812910200003,10.86151764500012],[124.732676629,10.868150132000096],[124.72836347699999,10.886419989000075],[124.71802819100016,10.90558502800013],[124.6917423840001,10.939601955000157],[124.6501570970001,10.970892645000118],[124.64332116000017,10.977443752000099],[124.6372176440001,10.994208075000117],[124.62232506600006,11.002020575000115],[124.60238691500014,11.003485419000171],[124.58253014400023,11.000962632000068],[124.56267337300002,10.99433014500009],[124.54957116000016,10.98330312700014],[124.54688561300011,10.968329169000114],[124.55827884200006,10.950140692000119],[124.56275475400005,10.931463934000135],[124.55355879000015,10.908596096000124],[124.53923587300008,10.888373114000117],[124.52784264400012,10.878119208000086],[124.51449628999997,10.873683986000117],[124.50733483200024,10.874416408000144],[124.47071373800021,10.90241120000016],[124.46924889400017,10.905462958000058],[124.45264733200011,10.900783596000139],[124.446950717,10.903143622000101],[124.44239342500005,10.9312197940001],[124.43685957100016,10.935207424000081],[124.42481530000022,10.93268463700015],[124.41260826900006,10.93231842700014],[124.4021102220001,10.929836330000114],[124.39600670700011,10.934068101000136],[124.39682050900004,10.953802802000068],[124.40162194099999,10.966538804000123],[124.41488691500017,10.984849351000094],[124.41797936300023,11.000962632000068],[124.41537519600003,11.01996491100006],[124.4082137380001,11.0288760440001],[124.3987736340001,11.036078192000133],[124.38998457100003,11.049465236000131],[124.38843834700018,11.065863348000136],[124.39380944100006,11.080511786000145],[124.40072675900002,11.092596747000144],[124.40650475400017,11.108303127000111],[124.41578209700005,11.121812242000173],[124.41797936300023,11.128566799000126],[124.41675866,11.136175848000063],[124.41163170700011,11.148016669000128],[124.40430748800011,11.210760809000105],[124.40430748800011,11.302679755000128],[124.38705488399998,11.300726630000085],[124.36915123800021,11.311224677000055],[124.35474694100016,11.328680731000118],[124.34913170700005,11.347357489000089],[124.35230553500006,11.355902411000116],[124.36695397200006,11.365871486000103],[124.37029056100008,11.374945380000113],[124.35425866000017,11.379828192000076],[124.34229576900022,11.384955145000092],[124.3347274100001,11.39203522300015],[124.34848066500003,11.399115302000112],[124.34498131600006,11.407375393000109],[124.33497155000022,11.417385158000087],[124.32911217500012,11.42959219000015],[124.32593834700006,11.444403387000136],[124.31137129000003,11.466782945000146],[124.29753665500017,11.526800848000065],[124.30062910199997,11.542873440000136],[124.30518639400024,11.544256903000118],[124.32601972700004,11.554388739000089],[124.32911217500012,11.55711497600005],[124.34009850400017,11.551011460000067],[124.36589603000019,11.51593659100017],[124.42481530000022,11.467759507000125],[124.443125847,11.44692617400014]]],[[[124.43091881600006,11.695054429000123],[124.46908613400004,11.692816473000136],[124.49586022199999,11.694769598000093],[124.5053817070001,11.693060614000089],[124.52320397200016,11.686265367000159],[124.54167728000019,11.675197658000116],[124.55600019599997,11.660223700000174],[124.567149285,11.625230210000083],[124.59164472700003,11.574123440000108],[124.5996199880001,11.563381252000099],[124.62142988400014,11.5539004580001],[124.6250106130001,11.532700914000186],[124.61597740999999,11.498195705000084],[124.60914147200016,11.486558335000083],[124.59245853000007,11.481634833000115],[124.53239993600008,11.4825707050001],[124.50709069099999,11.488836981000148],[124.48633873800011,11.4882266300001],[124.48357181100008,11.479681708000072],[124.47974694100006,11.47467682500013],[124.47266686300004,11.473944403000104],[124.46713300900015,11.477728583000115],[124.46371504000015,11.483872789000188],[124.46143639400006,11.490179755000142],[124.45883222700016,11.49445221600014],[124.42481530000022,11.5292422550001],[124.413259311,11.546454169000114],[124.386485222,11.614488023000163],[124.38062584700018,11.636704820000132],[124.37647545700021,11.645900783000101],[124.3549910820001,11.671210028000145],[124.34913170700005,11.680080471000096],[124.36866295700023,11.678941148000149],[124.41797936300023,11.693670966000141],[124.43091881600006,11.695054429000123]]],[[[124.856211785,11.604925848000093],[124.85222415500002,11.59442780200011],[124.85010826900023,11.583726304000095],[124.84937584700018,11.560248114000117],[124.84603925900015,11.548773505000085],[124.8388778000001,11.54002513200011],[124.83155358200021,11.536322333000072],[124.8078719410001,11.563381252000099],[124.80990644600006,11.566839911000102],[124.8087671230002,11.577337958000072],[124.80201256600004,11.582464911000088],[124.78785241000006,11.570217190000122],[124.77361087300001,11.604925848000093],[124.78077233200005,11.602240302000112],[124.78785241000006,11.598089911000073],[124.78541100399998,11.614325262000108],[124.77605228000006,11.629828192000117],[124.7629500660001,11.641343492000145],[124.74976647200005,11.645900783000101],[124.74057050900008,11.65062083500011],[124.73617597699997,11.661688544000143],[124.73340905000022,11.674302476000122],[124.7292586600001,11.683417059000119],[124.72242272200018,11.693264065000136],[124.72266686300011,11.701564846000124],[124.732676629,11.721625067000074],[124.73951256600002,11.721625067000074],[124.74089603000019,11.719712632000125],[124.75123131599999,11.708889065000122],[124.784841342,11.688706773000192],[124.7893986340001,11.684881903000175],[124.79297936300023,11.680365302000126],[124.79476972700004,11.674709377000127],[124.79623457099999,11.667792059000135],[124.79908287900005,11.66201406500008],[124.81373131600006,11.655340887000122],[124.81657962300018,11.646063544000157],[124.81519616,11.63226959800015],[124.82178795700005,11.621486721000153],[124.82862389400012,11.613430080000114],[124.8388778000001,11.607855536000102],[124.856211785,11.604925848000093]]],[[[121.52605228000019,11.846584377000156],[121.51742597699997,11.837713934000107],[121.49537194100017,11.827826239000101],[121.4729110040001,11.827378648000192],[121.45582116000006,11.831732489000103],[121.44548587300002,11.836127020000077],[121.43995201900012,11.83673737200013],[121.43506920700021,11.8390567080001],[121.430918816,11.843451239000089],[121.42628014400007,11.842433986000117],[121.41797936300011,11.837795315000093],[121.41260826900023,11.840277411000116],[121.41570071700002,11.84951406500008],[121.42562910200004,11.86123281500008],[121.44288170700023,11.867987372000101],[121.45297285199999,11.868312893000123],[121.4741317070001,11.866848049000069],[121.51050866000018,11.855943101000094],[121.52605228000019,11.846584377000156]]],[[[122.30014082100016,11.761948960000138],[122.32211347700016,11.742254950000103],[122.33611087300014,11.736639716000099],[122.37720787899998,11.733221747000101],[122.38795006600004,11.727443752000125],[122.42798912900017,11.668768622000115],[122.44076582100006,11.65745677300012],[122.4541121750001,11.652736721000124],[122.4653426440001,11.645249742000146],[122.512461785,11.598089911000073],[122.57227623800006,11.574937242000116],[122.58814537899998,11.563381252000099],[122.59221438900023,11.554266669000114],[122.59473717500005,11.548570054000123],[122.59750410200004,11.531805731000103],[122.60417728000019,11.517075914000117],[122.62232506600016,11.508734442000147],[122.62842858200005,11.51040273600016],[122.64128665500017,11.520086981000118],[122.65447024800008,11.526068427000125],[122.65430748800011,11.534409898000192],[122.65088951900006,11.543605861000074],[122.64966881600017,11.549709377000156],[122.65414472700004,11.5659854190001],[122.66041100400017,11.568752346000151],[122.67359459699999,11.560248114000117],[122.68604576900022,11.545843817000147],[122.692637566,11.54246653900013],[122.70427493600002,11.542873440000136],[122.69410241000017,11.55532461100016],[122.69564863400002,11.561346747000158],[122.70313561300011,11.565008856000118],[122.71111087300002,11.570217190000122],[122.73080488399998,11.592230536000116],[122.73340905000006,11.601304429000123],[122.73031660199999,11.604437567000105],[122.72803795700023,11.607855536000102],[122.72478274800008,11.611761786000102],[122.7553817070001,11.61383698100012],[122.79395592500016,11.612290757000082],[122.83033287900005,11.605292059000105],[122.85499108200023,11.59125397300015],[122.86345462300018,11.576157945000134],[122.86866295700007,11.56045156500008],[122.87484785200016,11.547919012000165],[122.88640384200008,11.542873440000136],[122.90015709700018,11.540676174000152],[122.944509311,11.52240631700009],[122.89429772200006,11.487209377000127],[122.87582441500004,11.465643622000115],[122.87614993600006,11.447251695000162],[122.90072675900015,11.43793366100013],[122.92774498800011,11.451117255000085],[122.95541425900004,11.470689195000148],[122.981700066,11.480780341000113],[123.00806725400005,11.487290757000109],[123.04420006600006,11.515855210000096],[123.08961022200005,11.529689846000096],[123.11784915500013,11.548163153000116],[123.14234459700006,11.572699286000145],[123.15674889400012,11.598089911000073],[123.16358483200023,11.598089911000073],[123.16439863400015,11.537990627000083],[123.15674889400012,11.52240631700009],[123.14909915500017,11.519354559000178],[123.13786868600019,11.518011786000102],[123.12728925900004,11.515448309000178],[123.12208092500023,11.508734442000147],[123.12322024800007,11.49872467700007],[123.1292423840001,11.493801174000097],[123.13884524800007,11.492743231000148],[123.1499129570001,11.49445221600014],[123.14039147200018,11.479315497000144],[123.14812259200018,11.476955471000096],[123.17042076900023,11.480780341000113],[123.17481530000022,11.467474677000098],[123.16928144600004,11.453599351000108],[123.16114342500013,11.438950914000188],[123.15674889400012,11.423081773000163],[123.16089928500006,11.39435455900012],[123.16041100400017,11.380438544000128],[123.14942467500012,11.361883856000132],[123.14926191500017,11.356350002000111],[123.1477156910001,11.352484442000105],[123.12916100400011,11.349351304000123],[123.12566165500019,11.344875393000066],[123.124766472,11.338324286000088],[123.12208092500023,11.330633856000162],[123.12387129000004,11.329291083000072],[123.12208092500023,11.302679755000128],[123.121348504,11.301581122000172],[123.11589603000006,11.282171942000074],[123.113536004,11.266669012000165],[123.11589603000006,11.230658270000104],[123.11890709700018,11.221502997000115],[123.12598717500023,11.216782945000105],[123.1330672540001,11.210435289000173],[123.13624108200015,11.196519273000192],[123.13135826900006,11.182684637000108],[123.1113387380001,11.168036200000088],[123.10824629000003,11.15180084800015],[123.08562259200006,11.162543036000073],[123.06088300899998,11.16941966400016],[123.04127037900004,11.163397528000159],[123.02833092500022,11.109849351000065],[123.01490319100004,11.091620184000163],[122.99537194100004,11.07880280200014],[122.97169030000022,11.0698916690001],[122.9770613940001,11.057033596000082],[122.97242272200018,11.049017645000133],[122.95069420700013,11.035793361000103],[122.95240319100012,11.046087958000115],[122.95167076900005,11.055731512000179],[122.94727623800011,11.06232330900015],[122.93824303500018,11.063666083000143],[122.933360222,11.05841705900015],[122.93034915500017,11.036851304000052],[122.92457116000006,11.028957424000083],[122.91407311300006,11.026271877000099],[122.90739993600012,11.029730536000102],[122.90040123800021,11.034491278000104],[122.88990319100017,11.035793361000103],[122.8850203790001,11.03318919500019],[122.86255944100017,11.01528554900014],[122.86255944100017,11.028957424000083],[122.839121941,11.018052476000108],[122.81202233200011,10.99848053600013],[122.78931725400005,10.976060289000117],[122.78003991000017,10.956935940000136],[122.78516686300011,10.92568594000008],[122.79428144599997,10.9005394550001],[122.798024936,10.875433661000102],[122.786875847,10.844549872000144],[122.76148522200016,10.810736395000077],[122.74480228000007,10.795640367000159],[122.72852623800011,10.789374091000127],[122.719004754,10.791489976000136],[122.70240319100004,10.80084870000016],[122.69410241000017,10.802964585000083],[122.68653405000023,10.80084870000016],[122.66675865999999,10.789374091000127],[122.65552819099999,10.78701406500008],[122.64275149800007,10.78123607000019],[122.63062584700016,10.774359442000103],[122.61475670700021,10.76146067900008],[122.61003665500002,10.756089585000126],[122.60124759200008,10.74095286700013],[122.60303795700023,10.738755601000136],[122.60596764400005,10.734035549000126],[122.60499108200011,10.727728583000086],[122.59498131599999,10.721096096000124],[122.5898543630001,10.698716539000186],[122.54468834700006,10.689846096000151],[122.45101972700004,10.686346747000158],[122.36540774800002,10.67267487200013],[122.35718834700006,10.670396226000065],[122.34359785199999,10.660630601000122],[122.33838951900012,10.658392645000134],[122.30404707100016,10.659735419000128],[122.29330488400004,10.658392645000134],[122.28239993600006,10.654038804000137],[122.26856530000022,10.642726955000157],[122.2592879570001,10.637884833000086],[122.24854576900006,10.637925523000163],[122.23755944100006,10.641424872000158],[122.22657311300006,10.642238674000081],[122.21452884200006,10.634466864000075],[122.17359459700005,10.600653387000094],[122.16195722700003,10.59373607000019],[122.152028842,10.59235260600012],[122.14161217500022,10.592433986000103],[122.12891686300004,10.590073960000138],[122.10181725400005,10.569322007000139],[122.03956139400023,10.46662018400012],[122.0332137380001,10.460923570000134],[122.01579837300007,10.445461330000114],[121.98210696700006,10.430243231000134],[121.94971764400023,10.433172919000157],[121.92969811300007,10.46662018400012],[121.93246504000003,10.508693752000084],[121.97217858200021,10.582098700000088],[121.9848738940001,10.624904690000093],[121.9848738940001,10.647284247000101],[121.97803795700011,10.710191148000149],[121.97185306100003,10.725002346000123],[121.94410241000004,10.75356679900011],[121.93702233200005,10.775702216000083],[121.93970787900015,10.793605861000144],[121.95411217500012,10.823228257000094],[121.95997155000006,10.853908596000096],[121.97803795700011,10.905462958000058],[122.04509524800007,11.01740143400015],[122.05307050900004,11.063666083000143],[122.05307050900004,11.233791408000073],[122.05062910199999,11.25470612200013],[122.04428144600014,11.277777411000102],[122.04175866000004,11.30044179900014],[122.050059441,11.320298570000146],[122.06137129000004,11.339056708000115],[122.06609134200018,11.36017487200013],[122.07357832100008,11.477362372000101],[122.07593834700005,11.4825707050001],[122.08082115999999,11.487616278000132],[122.08570397200018,11.494574286000116],[122.10718834700013,11.657945054000109],[122.10157311300011,11.693670966000141],[122.08448326900022,11.72467682500016],[122.06023196700008,11.733710028000175],[122.02906334700016,11.734686591000155],[121.99170983200021,11.741441148000177],[121.95785566500015,11.75535716400016],[121.941172722,11.76007721600017],[121.91968834700018,11.761948960000138],[121.88217207100008,11.760728257000125],[121.86475670700011,11.76264069200009],[121.85385175900002,11.769435940000108],[121.85442142000008,11.771836656000147],[121.85613040500019,11.779771226000122],[121.86622155000018,11.793443101000065],[121.87810306100015,11.805324611000103],[121.88526451900016,11.810370184000135],[121.88900800899997,11.819281317000076],[121.89144941500005,11.839260158000144],[121.89177493600008,11.859930731000162],[121.88868248800006,11.871242580000143],[121.89185631600004,11.885239976000108],[121.89682050899998,11.893784898000135],[121.90552819100017,11.898016669000157],[121.91968834700018,11.899115302000096],[121.926524285,11.903387762000108],[121.93970787900015,11.922186591000155],[121.94662519600016,11.926459052000084],[121.953379754,11.92780182500016],[121.95899498800011,11.933172919000114],[121.96371504000003,11.93390534100014],[121.97217858200021,11.93036530200007],[121.97730553500016,11.924017645000134],[121.9809676440001,11.917466539000143],[121.9848738940001,11.913397528000104],[122.02003014400005,11.903143622000158],[122.03028405000012,11.89630768400015],[122.05323326900006,11.866685289000102],[122.07260175900002,11.84931061400013],[122.09441165500007,11.834662177000112],[122.117930535,11.823553778000175],[122.22868899800008,11.799750067000103],[122.26539147200016,11.785549221000082],[122.30014082100016,11.761948960000138]]],[[[120.27833092500025,11.824042059000163],[120.26791425900014,11.816229559000178],[120.25554446700014,11.836249091000141],[120.23747806100019,11.88544342700007],[120.2032983730002,11.947577216000083],[120.21314537900005,11.949530341000127],[120.25879967500016,11.967596747000144],[120.26791425900014,11.968085028000132],[120.2763778000001,11.964911200000174],[120.28199303500011,11.957993882000082],[120.28451582100006,11.94904205900015],[120.28516686300017,11.930161851000122],[120.28321373800011,11.926988023000149],[120.27279707100004,11.925360419000128],[120.26783287900018,11.923325914000188],[120.26343834700018,11.916164455000157],[120.26547285200004,11.909735419000143],[120.26978600400005,11.904201565000122],[120.27149498800023,11.899115302000096],[120.26465905000012,11.872015692000076],[120.2641707690001,11.861558335000097],[120.26677493600013,11.851548570000103],[120.27719160199997,11.831773179000095],[120.27833092500025,11.824042059000163]]],[[[119.9638778000001,11.940130927000112],[119.9593205090001,11.929999091000155],[119.97706139400016,11.926174221000139],[120.02165774800002,11.926459052000084],[120.03142337300007,11.924465236000131],[120.03199303500004,11.919907945000176],[120.02588951900017,11.915472723000121],[120.003103061,11.91006094000008],[120.00806725400011,11.902736721000153],[120.0192163420002,11.895575262000122],[120.02475019600004,11.892971096000124],[120.05258222699999,11.871242580000143],[120.07325280000013,11.865301825000131],[120.08326256600017,11.86041901200015],[120.07650800900015,11.858140367000175],[120.05005944100017,11.854315497000158],[120.048594597,11.844427802000068],[120.05176842500006,11.831000067000076],[120.0390731130001,11.816595770000104],[120.0390731130001,11.810370184000135],[120.04297936300013,11.808986721000153],[120.05258222699999,11.803615627000099],[120.05258222699999,11.810370184000135],[120.06218509200009,11.806301174000083],[120.06999759200008,11.801092841000083],[120.07593834700018,11.795233466000141],[120.07992597700016,11.78925202000012],[120.06006920700017,11.767482815000065],[120.05258222699999,11.761948960000138],[120.067067905,11.741766669000114],[120.04704837300008,11.708929755000113],[120.01417076900005,11.682114976000122],[119.98438561300006,11.680080471000096],[119.96697024800018,11.664374091000125],[119.95460045700004,11.680121161000088],[119.95020592500006,11.70937734600011],[119.95639082100016,11.734686591000155],[119.96989993600002,11.725531317000076],[119.9739689460001,11.720770575000172],[119.97706139400016,11.714178778000104],[119.98438561300006,11.714178778000104],[119.98259524800008,11.72858307500016],[119.98096764400019,11.734198309000163],[119.97706139400016,11.741441148000177],[119.99048912900015,11.754787502000099],[120.0011499360002,11.768622137000108],[120.00489342500012,11.782538153000173],[119.9980574880001,11.796087958000143],[119.99024498800011,11.790269273000177],[119.98511803499999,11.789740302000112],[119.97706139400016,11.796087958000143],[119.97169030000012,11.774807033000158],[119.9592391290001,11.76585521000014],[119.943695509,11.767035223000077],[119.92920983200023,11.775580145000092],[119.92115319099999,11.788316148000133],[119.91187584700006,11.816392320000146],[119.90186608200005,11.824042059000163],[119.90748131600017,11.827948309000163],[119.91618899800008,11.835191148000192],[119.92237389400012,11.837713934000107],[119.91187584700006,11.853949286000145],[119.88607832100003,11.878648179000137],[119.8745223320001,11.892971096000124],[119.86801191499998,11.90656159100017],[119.85401451900023,11.954413153000102],[119.8623153000001,11.9527041690001],[119.8671981130001,11.949693101000094],[119.87240644599999,11.947333075000143],[119.88070722700014,11.947577216000083],[119.87916100400005,11.945868231000174],[119.88233483200011,11.943345445000162],[119.88746178499999,11.941107489000087],[119.89161217500023,11.940130927000112],[119.89478600400001,11.942328192000105],[119.89576256600017,11.947251695000162],[119.89478600400001,11.952134507000125],[119.89161217500023,11.954413153000102],[119.89283287900017,11.962591864000116],[119.90479576900006,11.976874091000113],[119.91968834700005,11.981512762000136],[119.92920983200023,11.96116771000014],[119.9638778000001,11.940130927000112]]],[[[124.17847741000018,12.039618231000176],[124.16431725400004,12.037746486000117],[124.15023847699997,12.043850002000111],[124.14625084699999,12.05304596600017],[124.15333092500005,12.065130927000084],[124.16537519599999,12.075425523000192],[124.18197675900015,12.080145575000103],[124.206228061,12.081244208000143],[124.2280379570001,12.073675848000107],[124.22925866,12.063625393000123],[124.20932050900002,12.060939846000153],[124.19857832100003,12.05263906500008],[124.17847741000018,12.039618231000176]]],[[[121.40186608200023,12.002834377000099],[121.38428795700011,12.000921942000131],[121.37183678500017,12.011135158000087],[121.36426842500023,12.027329820000134],[121.36085045700023,12.043158270000076],[121.36158287900005,12.050604559000135],[121.36768639400023,12.071030992000116],[121.36459394600016,12.081447658000101],[121.35865319100006,12.087836005000128],[121.35564212300001,12.09418366100006],[121.36085045700023,12.10455963700015],[121.35857181100008,12.112005927000125],[121.35865319100006,12.114691473000105],[121.36768639400023,12.110419012000108],[121.4064233730001,12.062445380000097],[121.41285241000017,12.047105210000055],[121.41667728000017,12.030218817000062],[121.41382897200005,12.014553127000084],[121.40186608200023,12.002834377000099]]],[[[121.12769616000016,12.15985748900006],[121.11890709699999,12.158107815000065],[121.10865319100016,12.162502346000139],[121.09937584700005,12.169419664000145],[121.09009850400017,12.17426178600013],[121.08366946700008,12.183498440000093],[121.0796004570001,12.197699286000102],[121.06959069100006,12.21137116100013],[121.05160566499997,12.220933335000126],[121.03956139400006,12.251532294000143],[121.05990644600016,12.278387762000122],[121.08814537900005,12.267075914000143],[121.09791100400018,12.24469635600012],[121.10523522200018,12.211167710000083],[121.11011803500004,12.203111070000148],[121.11410566500004,12.199164130000069],[121.1159774100001,12.196763414000117],[121.12826582100014,12.174994208000058],[121.13103274800018,12.164374091000113],[121.12769616000016,12.15985748900006]]],[[[119.93458092500012,12.285142320000162],[119.93588300899998,12.276516018000152],[119.95020592500006,12.271551825000117],[119.98902428500011,12.267157294000128],[120.00489342500012,12.262884833000115],[120.02149498800007,12.253119208000086],[120.04883873800023,12.23114655200007],[120.0727645190001,12.206040757000082],[120.07992597700016,12.200832424000083],[120.08814537900017,12.198228257000082],[120.1053166020001,12.19765859600011],[120.11410566500015,12.19399648600016],[120.10368899800008,12.191473700000145],[120.09685306100002,12.186021226000108],[120.093516472,12.177720445000118],[120.09424889400022,12.166652736000088],[120.11695397200018,12.16644928600013],[120.17017662900017,12.12543366100013],[120.19605553500016,12.112005927000125],[120.19841556100002,12.122788804000137],[120.20435631600017,12.12836334800015],[120.21314537900005,12.129095770000077],[120.22396894600003,12.125677802000068],[120.2241317070001,12.21918366100013],[120.22974694100017,12.21865469000015],[120.243907097,12.200832424000083],[120.25074303500006,12.185492255000128],[120.25277754000015,12.169623114000103],[120.25196373800023,12.14248281500008],[120.25831139400005,12.131781317000147],[120.2724715500001,12.134711005000085],[120.28638756600017,12.13544342700011],[120.292246941,12.118231512000179],[120.29590905000005,12.120184637000136],[120.29704837300018,12.120103257000068],[120.29753665500017,12.12099844000015],[120.29908287900005,12.125677802000068],[120.32911217500006,12.097479559000092],[120.34213300899998,12.080755927000068],[120.34750410200004,12.067328192000076],[120.34489993600002,12.05329010600012],[120.33790123800016,12.048488674000124],[120.32886803500007,12.04535553600006],[120.31959069100012,12.036322333000143],[120.31519616,12.023179429000095],[120.31959069100012,12.017889716000113],[120.32740319100017,12.020086981000105],[120.33383222699999,12.029486395000133],[120.33838951900022,12.029282945000176],[120.3393660820001,12.028143622000144],[120.33920332100014,12.025824286000088],[120.34009850400005,12.022040106000148],[120.34750410200004,12.029486395000133],[120.35287519599999,12.016180731000103],[120.34913170700017,12.007025458000129],[120.33952884200008,12.00055573100012],[120.32642662899998,11.995306708000143],[120.31275475400017,11.992010809000107],[120.30616295700011,11.99396393400015],[120.30128014400022,11.998480536000102],[120.292246941,12.002834377000099],[120.27491295700023,12.00340403900016],[120.262868686,11.997748114000075],[120.2518009770001,11.99087148600016],[120.23764082100014,11.98794179900014],[120.22437584700005,11.993068752000156],[120.21338951900006,12.002264716000125],[120.202403191,12.008002020000104],[120.18921959700018,12.002834377000099],[120.18702233200004,12.018255927000126],[120.17457116000006,12.022691148000192],[120.157481316,12.023911851000122],[120.14210045700004,12.029486395000133],[120.13461347699997,12.022040106000148],[120.14136803500007,12.009670315000122],[120.1406356130001,11.99925364800012],[120.13689212300007,11.98847077000012],[120.13461347699997,11.974839585000083],[120.1259871750001,11.979396877000127],[120.12134850400015,11.979396877000127],[120.11833743600008,11.975287177000084],[120.11410566500015,11.967433986000088],[120.10792076900006,11.967433986000088],[120.093516472,11.994370835000069],[120.08228600399998,12.0015322940001],[120.0390731130001,11.995306708000143],[120.02149498800007,11.99982330900009],[120.0011499360002,12.011175848000079],[119.98406009200002,12.025702216000111],[119.97055097700017,12.054754950000174],[119.94239342500005,12.087144273000177],[119.93588300899998,12.108303127000099],[119.93580162899998,12.123032945000176],[119.93409264400013,12.134833075000145],[119.9289656910001,12.145331122000115],[119.91863040500017,12.156073309000133],[119.91236412900004,12.166896877000125],[119.91041100400011,12.180568752000156],[119.90650475400011,12.194891669000143],[119.89503014400023,12.207668361000103],[119.88347415500002,12.198919989000116],[119.87305748800024,12.187404690000093],[119.8650008470001,12.173814195000134],[119.86036217500005,12.159165757000125],[119.84766686300011,12.16673411700016],[119.85035241000018,12.174465236000088],[119.85962975400005,12.183254299000138],[119.8671981130001,12.19399648600016],[119.8696395190001,12.206610419000143],[119.8693139980002,12.216701565000108],[119.8671981130001,12.231838283000101],[119.872325066,12.251695054000109],[119.88550866000006,12.259507554000095],[119.90349368600019,12.264593817000119],[119.92237389400012,12.276516018000152],[119.89763431100009,12.27704498900013],[119.88754316499997,12.275051174000096],[119.88070722700014,12.269029039000188],[119.8779403000001,12.308091539000145],[119.88502037900015,12.322699286000073],[119.90870201900005,12.32367584800015],[119.92693118600008,12.316473700000117],[119.93344160200016,12.30109284100017],[119.93458092500012,12.285142320000162]]],[[[124.18197675900015,12.406927802000082],[124.16863040500002,12.398138739000117],[124.14909915500006,12.414699611000088],[124.13746178500004,12.437567450000088],[124.1337996750001,12.45941803600013],[124.13355553500006,12.470770575000103],[124.14258873800017,12.468695380000083],[124.16049238400004,12.45604075700011],[124.17660566499998,12.432684637000122],[124.18197675900015,12.406927802000082]]],[[[122.62533613399998,12.280991929000123],[122.61182701900013,12.276516018000152],[122.60718834700018,12.279445705000086],[122.59156334699999,12.300116278000104],[122.58301842500008,12.305650132000125],[122.56251061300021,12.311102606000148],[122.55347741000006,12.31753164300008],[122.52881920700021,12.358465887000094],[122.51197350400005,12.37763092700007],[122.4882918630001,12.385728257000096],[122.46509850400015,12.388576565000122],[122.44605553500017,12.396673895000148],[122.43189537900017,12.409735419000128],[122.42310631600017,12.42739492400014],[122.42302493600017,12.462876695000134],[122.444590691,12.483710028000116],[122.48113040500007,12.493353583000086],[122.59424889400006,12.492621161000145],[122.63209069100006,12.484523830000128],[122.64372806100002,12.479478257000096],[122.64918053500017,12.473211981000134],[122.65544681100003,12.452460028000147],[122.66138756600004,12.43935781500008],[122.66920006600006,12.426214911000116],[122.68751061300011,12.402818101000136],[122.68677819100017,12.388983466000127],[122.67017662899998,12.31753164300008],[122.65919030000022,12.305405992000173],[122.64283287900005,12.29193756700009],[122.62533613399998,12.280991929000123]]],[[[124.9189559250001,12.562241929000137],[124.92823326900022,12.55707428600013],[124.94141686300011,12.56297435100008],[124.95850670700021,12.573228257000096],[124.9733992850001,12.576320705000086],[124.97974694100004,12.560777085000083],[124.98951256600017,12.561997789000188],[125.01042728000002,12.553412177000082],[125.02857506600006,12.5425479190001],[125.03101647200006,12.537258205000114],[125.03687584700012,12.53554922100011],[125.04224694100016,12.532131252000113],[125.04957116000016,12.529364325000145],[125.06169681100006,12.529730536000073],[125.06983483200005,12.533026434000107],[125.08139082099999,12.539699611000145],[125.09180748800011,12.547349351000094],[125.09644615999999,12.553656317000117],[125.09978274800002,12.574652411000073],[125.10914147200018,12.5792910830001],[125.13746178500006,12.570746161000073],[125.14722741000016,12.571966864000089],[125.15699303500001,12.57599518400015],[125.16627037900017,12.578111070000162],[125.17457116000004,12.574164130000085],[125.19874108200023,12.550238348000121],[125.24838300900014,12.519476630000128],[125.27214603000006,12.499009507000082],[125.27393639400022,12.482001044000114],[125.28484134200014,12.47044505400008],[125.3061629570001,12.458319403000173],[125.314789259,12.447211005000069],[125.3263452480002,12.42133209800015],[125.33366946700012,12.412665106000148],[125.34961998800023,12.399400132000123],[125.33090254000017,12.388902085000055],[125.31283613400015,12.366685289000186],[125.30787194100017,12.341864325000131],[125.32911217500006,12.32367584800015],[125.32227623800023,12.319322007000068],[125.31853274800014,12.313666083000072],[125.3160099620002,12.302069403000145],[125.314789259,12.29637278900016],[125.34555097700016,12.313706773000149],[125.35645592500022,12.31753164300008],[125.35466556100009,12.30792877800009],[125.35482832100004,12.30133698100012],[125.35417728000007,12.295884507000082],[125.34961998800023,12.28953685100005],[125.36068769600014,12.285142320000162],[125.37045332100004,12.28896719000008],[125.39063561300024,12.303859768000137],[125.38445071700006,12.284979559000107],[125.39421634200019,12.280503648000135],[125.43213951900023,12.28270091400013],[125.45069420700021,12.273627020000134],[125.48601321700008,12.247381903000102],[125.50049889400012,12.24860260600012],[125.50603274800001,12.237738348000136],[125.52784264400005,12.211004950000117],[125.53825931100006,12.183498440000093],[125.53760826900012,12.172430731000146],[125.52100670700005,12.180324611000117],[125.51295006600006,12.174465236000088],[125.48926842500012,12.170233466000155],[125.47934004000004,12.166652736000088],[125.4884546230002,12.163031317000119],[125.49545332100008,12.158840236000103],[125.50147545700011,12.15338776200015],[125.50733483200023,12.146185614000117],[125.47974694099999,12.1398379580001],[125.46713300900004,12.134914455000128],[125.45948326900012,12.125677802000068],[125.45736738399997,12.107082424000081],[125.46794681100006,12.101996161000145],[125.50049889400012,12.10455963700015],[125.49830162900005,12.101304429000109],[125.49561608200021,12.09422435100005],[125.4936629570001,12.090969143000109],[125.50269615999999,12.083685614000089],[125.5156356130001,12.070868231000146],[125.5251570970001,12.05695221600017],[125.52442467500005,12.04621002800016],[125.49048912900004,12.018947658000158],[125.48226972700003,12.008530992000175],[125.46998131600017,11.986761786000116],[125.45199629000003,11.964056708000072],[125.44581139400017,11.947333075000143],[125.44385826900012,11.927883205000143],[125.44516035200006,11.905951239000116],[125.44703209700018,11.900091864000075],[125.45948326900012,11.871242580000143],[125.457286004,11.84052155200007],[125.45948326900012,11.830267645000134],[125.46509850399998,11.823228257000068],[125.49048912900004,11.799790757000096],[125.4936629570001,11.7902285830001],[125.49048912900004,11.78107330900012],[125.48373457099997,11.776190497000144],[125.45720462300002,11.785711981000148],[125.44727623800021,11.767767645000106],[125.45020592500023,11.750433661000116],[125.46973717500023,11.758530992000132],[125.48161868600019,11.757310289000117],[125.49122155000023,11.737982489000089],[125.50049889400012,11.701117255000128],[125.49903405000022,11.67584870000016],[125.48926842500012,11.670803127000141],[125.4768172540001,11.668768622000115],[125.46631920700023,11.652736721000124],[125.47901451900006,11.647528387000122],[125.47632897200012,11.63800690300013],[125.46859785199999,11.625474351000122],[125.46631920700023,11.611761786000102],[125.47087649800008,11.602606512000122],[125.47657311300023,11.600165106000176],[125.48316491000004,11.599310614000089],[125.49048912900004,11.594671942000145],[125.4936629570001,11.58779531500015],[125.4936629570001,11.563381252000099],[125.49789472700003,11.548325914000173],[125.50196373800006,11.539129950000117],[125.52418053500004,11.507310289000173],[125.53093509200006,11.491603908000116],[125.53101647200006,11.475653387000108],[125.52100670700005,11.460353908000144],[125.52906334700013,11.459458726000049],[125.53451582100003,11.458156643000152],[125.54037519600008,11.457912502000111],[125.54883873800021,11.460353908000144],[125.55420983200005,11.436265367000118],[125.55860436300016,11.424790757000082],[125.56592858200005,11.419989325000174],[125.5761824880001,11.41669342700014],[125.5942488940001,11.402167059000105],[125.60694420700005,11.398871161000073],[125.60906009200018,11.393133856000105],[125.61988366000017,11.381089585000081],[125.6318465500001,11.370306708000086],[125.63770592500023,11.368475653000102],[125.6379500660001,11.342352606000148],[125.63502037900015,11.326483466000127],[125.62712649800018,11.313544012000122],[125.566172722,11.26813385600012],[125.55502363399998,11.248032945000176],[125.55502363399998,11.211859442000145],[125.57178795700011,11.192572333000115],[125.5991317070001,11.189113674000112],[125.63086998800023,11.200262762000136],[125.61605879000014,11.218939520000104],[125.61573326900023,11.233872789000145],[125.62891686300011,11.236314195000176],[125.67497806100002,11.203070380000085],[125.69361412900004,11.192572333000115],[125.70736738400015,11.177435614000117],[125.71273847699997,11.148749091000155],[125.72901451900022,11.117377020000118],[125.76026451900012,11.084621486000103],[125.77963300900004,11.052394924000154],[125.76050866000007,11.022772528000104],[125.75220787900017,11.030422268000137],[125.72877037900017,11.042792059000163],[125.71957441500003,11.049465236000131],[125.71070397200018,11.082831122000115],[125.70875084700002,11.085760809000135],[125.70720462300008,11.088568427000082],[125.70655358200023,11.094142971000096],[125.70704186300011,11.112005927000068],[125.70606530000022,11.116766669000157],[125.70004316500003,11.117865302000098],[125.68531334700005,11.125148830000114],[125.68100019600003,11.129868882000125],[125.66667728000006,11.141669012000179],[125.65154056100008,11.149400132000109],[125.64437910200003,11.142238674000154],[125.61036217500005,11.122015692000131],[125.60010826900023,11.118312893000095],[125.58806399800001,11.122259833000086],[125.58383222700003,11.131740627000097],[125.58155358200021,11.142767645000134],[125.57545006600017,11.15180084800015],[125.56381269600016,11.156805731000174],[125.55713951900012,11.154038804000123],[125.55014082100003,11.148627020000092],[125.53834069100006,11.14565664300008],[125.53598066499997,11.138128973000107],[125.53109785200004,11.102280992000102],[125.52784264400005,11.090399481000146],[125.50082441500005,11.11505768400015],[125.48243248800011,11.12763092700014],[125.46973717500023,11.128566799000126],[125.45093834700016,11.106675523000177],[125.44019616000016,11.097560940000108],[125.42465254000015,11.090399481000146],[125.42400149800018,11.106512762000122],[125.41651451900023,11.116603908000101],[125.40626061300011,11.117132880000069],[125.39747155000022,11.104681708000143],[125.37378991000006,11.125962632000125],[125.36329186300017,11.131984768000137],[125.32715905000012,11.137518622000144],[125.32162519600003,11.142238674000154],[125.31706790500006,11.149562893000066],[125.30600019600006,11.147447007000068],[125.27572675900002,11.135646877000084],[125.27051842500022,11.128078518000137],[125.26612389400023,11.118882554000066],[125.25456790500003,11.101996161000073],[125.25196373800023,11.094671942000076],[125.246836785,11.092189846000139],[125.24138431100008,11.094387111000131],[125.23292076900022,11.097845770000134],[125.22543379000014,11.105536200000145],[125.21892337300007,11.118068752000156],[125.21412194100016,11.13153717700014],[125.20866946700008,11.185044664000143],[125.19874108200023,11.227525132000123],[125.17237389400022,11.2652041690001],[125.13282311300011,11.282131252000084],[125.08708743600019,11.285345770000133],[125.04175866000017,11.282171942000074],[125.00098717500012,11.289780992000118],[124.99170983200017,11.318019924000081],[125.0001733730002,11.398871161000073],[124.99984785200016,11.407131252000156],[125.00074303500017,11.413723049000126],[125.00294030000022,11.419745184000135],[125.00700931100012,11.426174221000153],[124.99927819099999,11.430324611000088],[124.97974694100004,11.447251695000162],[124.972422722,11.450140692000103],[124.95834394600008,11.45136139500012],[124.95183353000019,11.453517971000124],[124.93799889400006,11.46279531500008],[124.92644290500007,11.473944403000104],[124.91732832100016,11.48704661700016],[124.91146894600003,11.501898505000128],[124.89649498800011,11.470119533000087],[124.88746178500016,11.46552155200014],[124.86988366000004,11.467759507000125],[124.856130405,11.47304922100011],[124.84506269599997,11.481756903000175],[124.83619225400005,11.49363841400013],[124.8282983730001,11.508734442000147],[124.84376061300011,11.515773830000114],[124.85238691499997,11.524969794000084],[124.85954837300001,11.53461334800015],[124.86988366000004,11.542873440000136],[124.886403842,11.547186591000141],[124.90007571700008,11.548773505000085],[124.90365644600004,11.554266669000114],[124.89031009200014,11.570217190000122],[124.94874108200011,11.570217190000122],[124.96143639400017,11.576971747000144],[124.97779381600016,11.592759507000096],[124.99244225400015,11.611029364000075],[125.0001733730002,11.624823309000178],[124.99952233200021,11.640285549000097],[124.99439537900004,11.655666408000144],[124.99122155000016,11.670314846000151],[124.99675540500017,11.683417059000119],[125.0184025400001,11.706366278000102],[125.03443444100017,11.72785065300013],[125.03939863400002,11.722967841000155],[125.055430535,11.714178778000104],[125.05420983200011,11.738226630000128],[125.04371178500004,11.757757880000113],[125.02637780000025,11.770900783000073],[125.00359134200019,11.775580145000092],[124.98666425900005,11.770249742000118],[124.94532311300011,11.746812242000146],[124.92823326900022,11.741441148000177],[124.89242597700004,11.761460679000066],[124.83350670700004,11.845363674000138],[124.79411868600019,11.858140367000175],[124.79411868600019,11.864976304000109],[124.80103600400017,11.864569403000102],[124.8078719410001,11.864976304000109],[124.79818769600014,11.869818427000084],[124.79411868600019,11.871242580000143],[124.8078719410001,11.899115302000096],[124.8126733730002,11.896144924000097],[124.81755618600008,11.893947658000101],[124.82276451900022,11.890936591000097],[124.8282983730001,11.88544342700007],[124.82398522200018,11.905829169000143],[124.80982506600006,11.915676174000067],[124.79493248800011,11.916449286000088],[124.77857506600016,11.899155992000187],[124.76107832100003,11.901312567000089],[124.75196373800023,11.910305080000114],[124.76734459700016,11.920233466000113],[124.76205488400004,11.929022528000173],[124.75570722700014,11.933294989000089],[124.7482202480002,11.932562567000062],[124.73951256600002,11.926459052000084],[124.73747806100019,11.953314520000148],[124.73422285200014,11.968207098000105],[124.7292586600001,11.97797272300015],[124.67986087300014,12.029730536000073],[124.64014733200011,12.04535553600006],[124.60043379000003,12.054632880000113],[124.5693465500001,12.050848700000174],[124.54037519600004,12.06574127800013],[124.49317467500023,12.097805080000114],[124.44646243600002,12.153062242000132],[124.42481530000022,12.172837632000068],[124.42750084700006,12.175034898000149],[124.42823326900022,12.17584870000016],[124.43091881600006,12.180324611000117],[124.4072371750001,12.193793036000102],[124.39079837300012,12.221869208000115],[124.34213300899998,12.385728257000096],[124.27621504000015,12.533270575000143],[124.27393639400016,12.546820380000113],[124.27662194100004,12.558539130000097],[124.28345787900015,12.570624091000099],[124.29346764400023,12.579982815000136],[124.30502363400008,12.582993882000139],[124.31275475400015,12.579494533000144],[124.35840905000012,12.544907945000148],[124.36304772200006,12.543605861000145],[124.37330162900018,12.543402411000102],[124.3986108730002,12.554917710000126],[124.40748131600017,12.55707428600013],[124.413259311,12.555243231000146],[124.43848717500006,12.543402411000102],[124.454274936,12.538397528000145],[124.51734459700005,12.537258205000114],[124.52149498800007,12.53579336100016],[124.53248131600006,12.528794664000173],[124.53467858200021,12.526312567000147],[124.536794467,12.522528387000122],[124.54151451900023,12.524155992000146],[124.54712975400005,12.527777411000116],[124.55144290500007,12.529730536000073],[124.574473504,12.527533270000076],[124.59620201900005,12.52293528900013],[124.67920983200005,12.515936591000155],[124.867930535,12.530340887000122],[124.87720787900017,12.53339264500012],[124.88689212300018,12.540350653000102],[124.89551842500012,12.554266669000171],[124.889903191,12.563625393000123],[124.88021894600016,12.572211005000128],[124.87671959700018,12.583726304000066],[124.87671959700018,12.591253973000121],[124.89478600400015,12.58543528900016],[124.90821373800004,12.573716539000173],[124.9189559250001,12.562241929000137]]],[[[123.35531660200016,12.547674872000115],[123.35596764400013,12.543402411000102],[123.33838951900006,12.546942450000174],[123.34034264400012,12.531683661000116],[123.35596764400013,12.49559153900016],[123.35043378999998,12.48777903900016],[123.33855228000002,12.479437567000105],[123.32667076900006,12.467922268000066],[123.32113691500015,12.450913804000109],[123.32642662900005,12.438055731000176],[123.33822675900002,12.445298570000189],[123.35596764400013,12.468329169000171],[123.35865319100017,12.469183661000073],[123.368907097,12.469794012000136],[123.372813347,12.47138092700007],[123.37476647200006,12.475775458000143],[123.37452233200011,12.485174872000172],[123.37582441500003,12.488755601000136],[123.37378991000016,12.48965078300013],[123.37916100400004,12.501206773000163],[123.38648522200008,12.512518622000144],[123.39014733200011,12.512396552000084],[123.39763431100006,12.51902903900013],[123.41472415500019,12.520941473000091],[123.43409264400023,12.518622137000136],[123.44809003999998,12.512396552000084],[123.47982832100016,12.481024481000134],[123.49561608200011,12.46857330900012],[123.51295006600019,12.4608828800001],[123.54712975400017,12.4608828800001],[123.55241946700002,12.456610419000171],[123.56421959699999,12.440375067000131],[123.57227623800023,12.43183014500012],[123.58139082100003,12.413072007000068],[123.59343509200008,12.394354559000178],[123.60922285199999,12.385728257000096],[123.60922285199999,12.37889232000016],[123.59750410200006,12.377875067000105],[123.59009850400005,12.372300523000192],[123.58716881600012,12.36310455900012],[123.58814537900017,12.351019598000121],[123.62191816500014,12.368353583000115],[123.63697350400017,12.370266018000066],[123.64332116000001,12.354722398000163],[123.64771569100017,12.348293361000145],[123.65756269600003,12.346421617000175],[123.66895592500006,12.34625885600012],[123.67750084700019,12.34479401200015],[123.688243035,12.33779531500008],[123.69678795700023,12.329901434000107],[123.70435631600017,12.32074616100013],[123.76734459700013,12.214056708000115],[123.793630405,12.18716054900014],[123.78842207100003,12.23126862200013],[123.7949324880001,12.246893622000115],[123.81812584700005,12.231838283000101],[123.84880618600008,12.200832424000083],[123.86264082100014,12.202866929000109],[123.87354576900023,12.210191148000106],[123.88233483200013,12.212795315000108],[123.88965905000012,12.200832424000083],[123.88965905000012,12.207668361000103],[123.89942467500022,12.187730210000112],[123.95191491000016,12.10455963700015],[123.958262566,12.100572007000082],[123.97315514400005,12.095648505000112],[123.97917728000017,12.090969143000109],[123.98324629000015,12.082342841000097],[123.99284915500012,12.049302476000136],[123.99830162900017,12.03974030200007],[124.04029381600006,11.988104559000105],[124.05030358200023,11.97113678600013],[124.05494225400005,11.954413153000102],[124.03842207100014,11.96454498900006],[124.01791425900004,11.995550848000093],[123.99952233200004,12.00836823100012],[124.00294030000006,11.997788804000066],[124.00717207099999,11.990708726000108],[124.02076256600006,11.974839585000083],[124.00953209700005,11.965765692000076],[124.01295006600017,11.954250393000137],[124.03386478000002,11.926459052000084],[124.05827884200006,11.875189520000134],[124.06177819100017,11.861558335000097],[124.06177819100017,11.837713934000107],[124.05567467500006,11.81053294500019],[124.05494225400005,11.799790757000096],[124.05909264400005,11.78392161700016],[124.06714928500006,11.764105536000145],[124.07252037900017,11.744086005000085],[124.0685327480002,11.72785065300013],[124.05486087300007,11.725572007000068],[124.04151451900023,11.74298737200013],[124.02076256600006,11.78310781500015],[124.0079858730002,11.796698309000105],[123.97437584700018,11.82493724200016],[123.94564863400015,11.83567942900008],[123.92408287900005,11.859564520000147],[123.89031009200006,11.870794989000144],[123.87517337300008,11.88450755400008],[123.85564212300008,11.913397528000104],[123.84253990999999,11.90615469000008],[123.82439212300018,11.91006094000008],[123.78736412900015,11.926459052000084],[123.76400800900008,11.915676174000067],[123.74293053500006,11.926947333000072],[123.72510826900005,11.944891669000114],[123.71168053500017,11.954413153000102],[123.71607506600016,11.966742255000142],[123.7224227220001,11.975816148000149],[123.7319442070001,11.980902411000073],[123.74577884200018,11.981105861000131],[123.73267662900005,12.00836823100012],[123.72689863400015,11.999335028000102],[123.72535241000007,11.995306708000143],[123.71908613400008,11.995306708000143],[123.71062259200002,12.007391669000143],[123.69849694100004,12.02081940300013],[123.68539472700016,12.031805731000091],[123.65943444100017,12.042954820000118],[123.65072675899997,12.05695221600017],[123.65300540500006,12.069281317000117],[123.67066491000017,12.071030992000116],[123.64893639400012,12.077582098000107],[123.6290796230002,12.075873114000101],[123.6147567070001,12.079331773000192],[123.60385175900014,12.118719794000171],[123.59099368600012,12.135484117000187],[123.56080162899998,12.166652736000088],[123.54639733200021,12.188055731000134],[123.53972415500019,12.19399648600016],[123.51075280000005,12.206000067000089],[123.50310306100006,12.211004950000117],[123.48536217500023,12.218085028000175],[123.46159915500007,12.215725002000127],[123.43864993600008,12.20840078300013],[123.42416425900002,12.200832424000083],[123.41236412900015,12.188177802000112],[123.38200931100019,12.145086981000176],[123.372731967,12.118638414000186],[123.36475670700007,12.106024481000118],[123.35474694100017,12.095404364000075],[123.34522545700011,12.090969143000109],[123.33375084700006,12.08950429900014],[123.32837975400011,12.085272528000118],[123.32113691500015,12.071030992000116],[123.26596113400015,12.007513739000116],[123.1814070970001,11.930853583000058],[123.15967858200023,11.917792059000178],[123.1499129570001,11.930161851000122],[123.15186608200021,11.950384833000129],[123.15699303500006,11.974310614000101],[123.16472415500007,11.994370835000069],[123.17383873800021,12.002834377000099],[123.18523196700014,12.005113023000163],[123.19011478000019,12.011664130000057],[123.19109134200006,12.021185614000146],[123.19092858200011,12.032904364000132],[123.19320722700016,12.046332098000136],[123.19898522200006,12.05658600500007],[123.2055770190001,12.066107489000146],[123.21127363399998,12.077297268000066],[123.21021569100006,12.114976304000137],[123.21599368600017,12.13349030200007],[123.23194420700011,12.125677802000068],[123.23731530000018,12.139227606000132],[123.24431399800001,12.149847723000077],[123.25464928500007,12.156805731000162],[123.27003014400013,12.159165757000125],[123.27719160200004,12.164292710000126],[123.2734481130001,12.17584870000016],[123.25977623800006,12.19399648600016],[123.27369225400004,12.202948309000178],[123.28663170700023,12.208482164000102],[123.29460696700018,12.217230536000088],[123.29395592500023,12.235541083000143],[123.25953209699999,12.236883856000134],[123.23698978000006,12.23517487200013],[123.21810957100004,12.228094794000157],[123.21876061300016,12.234849351000108],[123.21778405000005,12.26544830900012],[123.21876061300016,12.26801178600013],[123.2212020190001,12.269720770000134],[123.24878990999999,12.30711497600008],[123.25228925900002,12.320624091000155],[123.25562584700005,12.350287177000096],[123.27019290500007,12.400539455000157],[123.2734481130001,12.423651434000107],[123.27149498800021,12.439439195000148],[123.26563561300011,12.447333075000131],[123.25586998800006,12.45368073100016],[123.24244225400017,12.464585679000137],[123.23194420700011,12.580633856000176],[123.23471113400015,12.592759507000082],[123.24219811300023,12.595363674000083],[123.25212649800002,12.59202708500014],[123.26221764400012,12.586127020000106],[123.27711022200005,12.579535223000136],[123.30583743600019,12.574937242000187],[123.32113691500015,12.570746161000073],[123.33073978000007,12.56435781500015],[123.33814537900007,12.556626695000134],[123.34734134200019,12.550930080000157],[123.35645592500012,12.549261786000145],[123.35531660200016,12.547674872000115]]],[[[122.30982506599999,12.50112539300008],[122.27963300899998,12.474514065000136],[122.26368248800006,12.493231512000108],[122.25464928500018,12.51117584800015],[122.25114993600019,12.52968984600008],[122.25171959700006,12.550238348000121],[122.25074303500016,12.554185289000188],[122.24822024800007,12.559027411000088],[122.245860222,12.5646019550001],[122.24561608200005,12.570746161000073],[122.24822024800007,12.575873114000089],[122.25570722700004,12.578843492000189],[122.2592879570001,12.583726304000066],[122.26587975400017,12.604803778000173],[122.27100670700011,12.613104559000163],[122.27963300899998,12.619126695000162],[122.27963300899998,12.605454820000132],[122.2968856130001,12.573919989000132],[122.31128991000016,12.536688544000143],[122.30982506599999,12.50112539300008]]],[[[122.15626061300021,12.63214752800016],[122.15137780000006,12.6281192080001],[122.13591556100006,12.630275783000101],[122.12891686300004,12.625392971000124],[122.12867272200006,12.6164004580001],[122.13575280000006,12.560777085000083],[122.13038170700023,12.528387762000165],[122.10694420700015,12.459784247000144],[122.09888756599999,12.386379299000138],[122.08082115999999,12.315497137000136],[122.05103600400001,12.242987372000115],[122.043223504,12.231838283000101],[122.03646894600016,12.214056708000115],[122.04802493600017,12.200628973000121],[122.06120853000007,12.188055731000134],[122.05990644600014,12.172837632000068],[122.04688561300017,12.18716054900014],[122.04102623800011,12.17934804900014],[122.02279707100004,12.16282786700016],[122.01905358200011,12.156073309000133],[122.01905358200011,12.10455963700015],[122.01221764400006,12.10455963700015],[121.9910587900001,12.128485419000114],[121.98617597699999,12.14256419500016],[121.99170983200021,12.159165757000125],[121.9650171230002,12.16144440300009],[121.95899498800011,12.177801825000103],[121.96371504000003,12.228094794000157],[121.97331790500017,12.20449453300013],[121.98715253999997,12.20010000200014],[121.99976647200005,12.210638739000103],[122.00538170700005,12.231838283000101],[122.00212649800018,12.244370835000097],[121.99366295700004,12.249212958000086],[121.982676629,12.251410223000077],[121.97120201900006,12.256048895000104],[121.92969811300007,12.29637278900016],[121.92074629000014,12.302883205000157],[121.92408287900015,12.339341539000117],[121.93441816499998,12.3800723330001],[121.94662519600016,12.399400132000123],[121.97828209700006,12.411810614000144],[121.99317467500006,12.44179922100011],[121.997813347,12.478908596000124],[121.99789472699997,12.512396552000084],[121.99089603000013,12.571193752000154],[121.99586022200018,12.59271881700009],[122.01905358200011,12.611721096000096],[122.07634524800002,12.627346096000082],[122.10499108200011,12.641791083000129],[122.11524498800023,12.66632721600014],[122.14568118600019,12.657456773000192],[122.15601647200012,12.648342190000108],[122.15626061300021,12.63214752800016]]],[[[123.64673912899998,12.657131252000084],[123.69629967500022,12.628363348000136],[123.70484459700016,12.625392971000124],[123.70386803500011,12.618841864000132],[123.70093834700018,12.615423895000133],[123.69117272200005,12.611721096000096],[123.70492597700016,12.611721096000096],[123.71656334700005,12.608303127000083],[123.725840691,12.60146719000015],[123.73267662900005,12.591253973000121],[123.72787519600003,12.573635158000101],[123.73568769600004,12.55369700700011],[123.74732506600006,12.53449127800016],[123.75318444100017,12.519232489000089],[123.75635826900023,12.503485419000128],[123.77051842500016,12.471096096000123],[123.78158613400004,12.418687242000159],[123.78394616000016,12.413723049000112],[123.78939863400004,12.409125067000074],[123.79004967500023,12.39834219000008],[123.78736412900015,12.375555731000132],[123.79330488399998,12.35545482000019],[123.79476972700016,12.3433291690001],[123.79053795700021,12.337958075000145],[123.78248131600012,12.341131903000104],[123.77491295700021,12.349025783000087],[123.76921634200006,12.358954169000171],[123.766856316,12.368719794000128],[123.76254316500004,12.378078518000152],[123.73267662900005,12.406236070000134],[123.583181186,12.623928127000156],[123.5802514980002,12.63344961100016],[123.58130944100007,12.646429755000057],[123.58814537900017,12.646429755000057],[123.59734134200006,12.641343492000132],[123.60181725399998,12.654608466000154],[123.60474694100006,12.674017645000076],[123.60922285199999,12.68744538000007],[123.61833743600019,12.687323309000178],[123.62956790500017,12.677639065000136],[123.64673912899998,12.657131252000084]]],[[[121.70045006600006,12.950140692000074],[121.71412194100017,12.947333075000117],[121.71827233200011,12.947333075000117],[121.72575931100006,12.939886786000145],[121.7317000660001,12.928778387000106],[121.72917728000019,12.919134833000143],[121.72396894599999,12.913967190000136],[121.72046959700012,12.913234768000109],[121.71745853000019,12.911078192000105],[121.71924889400006,12.907294012000179],[121.7221785820001,12.903631903000132],[121.71778405000012,12.899603583000072],[121.71119225400005,12.900376695000176],[121.70671634200008,12.905096747000101],[121.70329837300008,12.90412018400012],[121.69906660200016,12.905340887000136],[121.69166100400015,12.914455471000124],[121.68474368600009,12.920152085000112],[121.68279056100012,12.924383856000134],[121.68181399800002,12.935532945000148],[121.68864993600008,12.94717031500015],[121.70045006600006,12.950140692000074]]],[[[123.20142662900017,12.906439520000092],[123.22657311300023,12.89834219000015],[123.24610436300021,12.906480210000083],[123.26197350400017,12.897853908000158],[123.26856530000023,12.888169664000115],[123.27263431100017,12.877386786000102],[123.28028405000012,12.864935614000089],[123.28663170700023,12.815008856000132],[123.36085045700004,12.736517645000106],[123.37582441500003,12.69358958500014],[123.34107506600006,12.718207098000136],[123.2734481130001,12.810939846000082],[123.25196373800004,12.832709052000139],[123.2384546230002,12.841498114000116],[123.20101972700014,12.848822333000115],[123.18531334700013,12.858465887000179],[123.10987389400023,12.923895575000145],[123.10206139400017,12.937567450000172],[123.09791100400005,12.938910223000077],[123.08033287900011,12.957220770000134],[123.07789147200008,12.961737372000172],[123.06967207100016,12.964789130000083],[123.06609134200019,12.971991278000118],[123.06381269600003,12.980861721000153],[123.06055748800004,12.988470770000104],[123.03549238400008,13.004380601000122],[122.97388756600007,13.018703518000109],[122.95069420700013,13.043687242000118],[122.94410241000006,13.099554755000097],[122.944509311,13.11131419500016],[122.95826256600006,13.120021877000156],[122.97543379000015,13.121893622000115],[122.98894290500006,13.128973700000172],[122.99219811300011,13.153550523000192],[123.00391686300004,13.150213934000163],[123.01710045700023,13.143622137000179],[123.03980553500016,13.128078518000095],[123.04981530000023,13.118475653000118],[123.05884850400015,13.107855536000073],[123.07422936300011,13.08466217700014],[123.09457441499998,13.043687242000118],[123.11833743600019,13.024603583000129],[123.12208092500023,13.019761460000069],[123.12517337300018,13.008042710000069],[123.13933353000007,12.983384507000082],[123.14242597700003,12.971380927000054],[123.1450301440001,12.968736070000162],[123.16016686300011,12.937567450000172],[123.17701256599999,12.922308661000116],[123.20142662900017,12.906439520000092]]],[[[124.20915774800008,13.178208726000094],[124.19678795700023,13.173325914000117],[124.16236412900015,13.180812893000095],[124.14861087300008,13.18577708500014],[124.13624108200023,13.188544012000092],[124.11378014400022,13.189032294000171],[124.09791100399998,13.192450262000179],[124.06902103000017,13.203762111000074],[124.06560306100019,13.21076080900015],[124.08472741000006,13.21698639500012],[124.11410566500015,13.227728583000129],[124.12378991,13.233140367000175],[124.13884524800004,13.234198309000135],[124.17872155000013,13.222967841000127],[124.19792728000009,13.213039455000128],[124.20964603000006,13.195786851000122],[124.20915774800008,13.178208726000094]]],[[[123.96257571700012,13.287339585000126],[123.98682701900012,13.276027736000145],[123.99537194100006,13.278794664000117],[124.00245201900012,13.281073309000178],[124.01579837300021,13.280422268000137],[124.01693769600016,13.28034088700015],[124.01807701900007,13.278998114000075],[124.02556399800002,13.270168361000103],[124.03256269600004,13.266750393000095],[124.03825931100019,13.269680080000114],[124.03858483200021,13.27399323100012],[124.03956139400013,13.278509833000086],[124.04769941500004,13.278957424000081],[124.056407097,13.27606842700014],[124.06918379000015,13.273016669000143],[124.08448326900012,13.26740143400015],[124.08562259200008,13.262925523000177],[124.08627363399997,13.26044342700007],[124.07309004000015,13.254055080000127],[124.06755618600003,13.25141022300015],[124.06226647200006,13.245428778000132],[124.056407097,13.235988674000112],[124.04615319100016,13.226385809000133],[124.03948001400013,13.224961656000161],[124.02540123800007,13.221991278000147],[124.01742597700004,13.223781643000137],[123.99789472700016,13.228216864000117],[123.97673587300004,13.235581773000106],[123.958343946,13.23704661700016],[123.93930097700004,13.244452216000155],[123.92188561300023,13.258693752000154],[123.91391035200009,13.271307684000133],[123.91480553500017,13.279608466000127],[123.91285241000007,13.285142320000134],[123.91244550900004,13.288641669000128],[123.91391035200009,13.289455471000139],[123.91472415500019,13.289943752000127],[123.96257571700012,13.287339585000126]]],[[[123.88428795700023,13.22992584800012],[123.87354576900023,13.229641018000095],[123.86361738400002,13.244777736000088],[123.85775800899997,13.250148830000143],[123.845957879,13.270249742000175],[123.84449303500006,13.282416083000072],[123.849375847,13.299139716000097],[123.85108483200021,13.317572333000129],[123.84717858200023,13.330877997000158],[123.83676191500015,13.344671942000074],[123.84009850400017,13.34853750200007],[123.84888756600006,13.35415273600016],[123.8588973320001,13.35382721600014],[123.90007571700019,13.340521552000125],[123.90609785199997,13.335598049000154],[123.91342207099997,13.332220770000148],[123.92212975400017,13.329982815000065],[123.92212975400017,13.320013739000075],[123.8952742850001,13.29287344000015],[123.89031009200006,13.274074611000103],[123.89665774800008,13.258490302000112],[123.90357506600016,13.246486721000096],[123.90186608200004,13.23834870000016],[123.88428795700023,13.22992584800012]]],[[[123.8204858730002,13.38027578300013],[123.82748457099997,13.373114325000174],[123.83301842500012,13.373236395000148],[123.84294681100019,13.371812242000175],[123.84555097699997,13.367824611000103],[123.83472741,13.355902411000073],[123.82309004000004,13.351955471000082],[123.80152428500011,13.366034247000115],[123.77515709700016,13.391587632000109],[123.7716577480002,13.403509833000143],[123.78736412900015,13.399074611000074],[123.80420983200005,13.391546942000119],[123.8204858730002,13.38027578300013]]],[[[120.97868899800008,13.52651601800008],[120.98438561300023,13.52289459800012],[120.97966556100003,13.514146226000136],[120.97388756600017,13.507757880000128],[120.96656334700018,13.503973700000103],[120.95704186300006,13.50299713700012],[120.96306399800008,13.494330145000133],[120.97315514400023,13.482733466000113],[120.98462975400011,13.472601630000069],[120.99488366,13.46824778900016],[121.00391686300021,13.459662177000055],[121.02686608200011,13.421576239000075],[121.04273522200008,13.413031317000147],[121.10865319100016,13.415961005000069],[121.12525475400005,13.404771226000065],[121.12159264400012,13.372015692000133],[121.12826582100014,13.372015692000133],[121.13013756600002,13.378363348000077],[121.1328231130001,13.393622137000136],[121.13510175900015,13.399359442000103],[121.13933353000017,13.405422268000109],[121.14112389400006,13.407416083000143],[121.14877363400004,13.413031317000147],[121.15886478000007,13.417547919000098],[121.171641472,13.4214541690001],[121.18336022200012,13.428127346000151],[121.19027753999998,13.440904039000188],[121.19711347700004,13.440904039000188],[121.21778405000023,13.404120184000107],[121.33375084700019,13.310614325000143],[121.37623131600017,13.245103257000109],[121.3921004570001,13.235500393000123],[121.41391035200004,13.23273346600017],[121.43051191499997,13.224269924000126],[121.44076582100004,13.209418036000073],[121.44361412900015,13.187689520000092],[121.44068444100004,13.177435614000075],[121.43555748800023,13.166693427000055],[121.43262780000012,13.156073309000107],[121.43628991000016,13.146063544000128],[121.44752037900015,13.138983466000154],[121.45899498800011,13.139715887000094],[121.47022545700011,13.143744208000072],[121.48121178500016,13.146063544000128],[121.50464928500004,13.145168361000131],[121.52702884200006,13.14077383000014],[121.54444420700023,13.130316473000077],[121.55298912900017,13.11131419500016],[121.54916425900015,13.090643622000144],[121.535899285,13.07684967700014],[121.501719597,13.054266669000171],[121.48951256600006,13.036769924000126],[121.48316490999999,13.014715887000122],[121.48194420700011,12.990871486000144],[121.49244225400017,12.929510809000135],[121.49203535200016,12.913316148000177],[121.48308353000002,12.872137762000122],[121.48462975400015,12.858710028000132],[121.47779381600006,12.858710028000132],[121.48340905000022,12.831122137000108],[121.48560631600007,12.768459377000113],[121.49512780000022,12.745428778000147],[121.5224715500001,12.711493231000105],[121.52613366000016,12.704494533000116],[121.5273543630001,12.692206122000158],[121.53093509200006,12.67601146000011],[121.53638756600012,12.660345770000133],[121.54639733200005,12.6441104190001],[121.54737389400022,12.636908270000147],[121.54566491000004,12.611232815000108],[121.54273522200006,12.609035549000112],[121.53825931100006,12.609198309000163],[121.532399936,12.605454820000132],[121.49341881600006,12.549261786000145],[121.4814559250001,12.539007880000113],[121.45671634200002,12.52293528900013],[121.448985222,12.520819403000118],[121.44239342500025,12.522406317000147],[121.43783613400004,12.521633205000127],[121.43628991000016,12.512396552000084],[121.43677819100004,12.495917059000178],[121.43897545700023,12.489243882000125],[121.44361412900015,12.482001044000114],[121.43628991000016,12.474514065000136],[121.43002363400002,12.482001044000114],[121.42628014400007,12.475083726000108],[121.42465254000014,12.470038153000173],[121.42562910200004,12.464097398000149],[121.43002363400002,12.454657294000128],[121.41187584699999,12.443182684000178],[121.41244550899997,12.414984442000119],[121.42530358200011,12.384222723000136],[121.44361412900015,12.365301825000117],[121.44361412900015,12.358465887000094],[121.40333092500006,12.36981842700007],[121.38428795700011,12.36859772300015],[121.38160240999999,12.351019598000121],[121.3872176440001,12.344712632000082],[121.38892662900005,12.336371161000116],[121.38697350400015,12.326890367000187],[121.38160240999999,12.31753164300008],[121.39039147200016,12.313055731000105],[121.39454186300023,12.30768463700015],[121.39584394600004,12.300238348000079],[121.39576256600004,12.28953685100005],[121.36573326900012,12.307766018000123],[121.35474694100004,12.324123440000136],[121.34017988400004,12.316636460000081],[121.31641686300011,12.29637278900016],[121.30339603000002,12.293402411000145],[121.29127037900005,12.286200262000122],[121.27295983200005,12.269029039000188],[121.24781334700019,12.219916083000072],[121.24496504000015,12.214422919000128],[121.23015384200008,12.214341539000145],[121.20777428500006,12.236029364000132],[121.19369550900004,12.2417666690001],[121.13168379000015,12.2417666690001],[121.11361738400014,12.251288153000104],[121.0991317070001,12.274644273000192],[121.09327233200023,12.303697007000082],[121.10108483200021,12.330511786000073],[121.10694420700007,12.314357815000108],[121.1159774100001,12.30524323100012],[121.12818444100017,12.30365631700009],[121.14258873800023,12.310044664000186],[121.1349389980002,12.31346263200011],[121.12818444100017,12.31293366100013],[121.12159264400012,12.310044664000186],[121.11540774800012,12.327541408000144],[121.11475670700005,12.330511786000073],[121.09441165500019,12.345404364000116],[121.08725019600004,12.343247789000117],[121.08725019600004,12.32367584800015],[121.07113691500015,12.332505601000108],[121.05062910200004,12.349432684000178],[121.03288821700014,12.368109442000076],[121.02051842500005,12.389797268000137],[120.99488366,12.413723049000112],[120.98682701900005,12.416205145000134],[120.98113040500017,12.42267487200013],[120.93897545700015,12.493963934000133],[120.92603600400005,12.501857815000108],[120.91635175899997,12.512396552000084],[120.91846764400012,12.536281643000137],[120.92904707100016,12.577582098000091],[120.92790774800021,12.597601630000057],[120.92212975400005,12.617092190000136],[120.91244550899997,12.63471100500007],[120.88591556100002,12.664984442000062],[120.86866295700021,12.69965241100013],[120.8545028000001,12.715318101000108],[120.83220462300008,12.724025783000101],[120.81226647200019,12.724269924000138],[120.7978621750001,12.729437567000147],[120.79249108200015,12.752590236000088],[120.79135175900002,12.763861395000076],[120.78630618600017,12.78261953300013],[120.78516686300021,12.793850002000141],[120.78199303500016,12.805568752000127],[120.765310092,12.83144765800013],[120.766449415,12.84052155200014],[120.77084394600016,12.847113348000105],[120.7758895190001,12.852728583000115],[120.77898196700008,12.858710028000132],[120.77963300900004,12.867905992000187],[120.77670332100003,12.916083075000143],[120.76742597700016,12.946844794000128],[120.75831139400017,13.002386786000088],[120.74097741000017,13.033270575000131],[120.69695071700006,13.092108466000113],[120.66488691499998,13.15591054900014],[120.64234459700012,13.183254299000126],[120.59457441500014,13.199204820000134],[120.5763452480001,13.221421617000175],[120.55982506600012,13.228664455000114],[120.52515709700002,13.225653387000108],[120.51482181100013,13.230536200000172],[120.52621504000008,13.249172268000066],[120.49976647200012,13.27334219000008],[120.47999108200004,13.301499742000146],[120.46778405000012,13.333482164000145],[120.45972741000016,13.403713283000101],[120.45248457100003,13.420233466000168],[120.43995201900023,13.427232164000158],[120.43262780000023,13.42670319200009],[120.41504967500012,13.423000393000137],[120.40821373800006,13.42047760600012],[120.40015709700005,13.415025132000082],[120.39576256600016,13.40949127800016],[120.39242597700004,13.404201565000093],[120.38786868600017,13.399359442000103],[120.36817467500023,13.383368231000105],[120.35596764400006,13.380519924000067],[120.34009850400005,13.386297919000128],[120.32764733200021,13.396877346000082],[120.31690514400012,13.411200262000165],[120.30933678500017,13.427639065000065],[120.3066512380001,13.44432200700011],[120.31055748800004,13.466986395000148],[120.32154381600007,13.487779039000145],[120.337657097,13.505316473000093],[120.35661868600002,13.518377997000158],[120.38013756600016,13.526353257000123],[120.40316816500015,13.527329820000189],[120.47169030000012,13.51154205900015],[120.53191165500007,13.509222723000093],[120.5446883470001,13.510931708000085],[120.55518639400006,13.513495184000092],[120.5654403000001,13.513128973000077],[120.58472741000006,13.501857815000093],[120.59538821700006,13.498928127000156],[120.61443118600008,13.496161200000103],[120.65333092500022,13.496568101000106],[120.67652428500011,13.492987372000144],[120.69019616000004,13.481878973000107],[120.70639082100008,13.490383205000143],[120.7192488940001,13.485174872000144],[120.7373153000001,13.46824778900016],[120.75456790500003,13.466742255000113],[120.77003014400023,13.470689195000189],[120.79932701900005,13.481878973000107],[120.88819420700011,13.501857815000093],[120.91537519600004,13.51666901200015],[120.92839603000019,13.504950262000165],[120.93677819100016,13.507513739000087],[120.94483483200011,13.512844143000137],[120.95020592500023,13.530340887000094],[120.96436608200005,13.526353257000123],[120.96900475399998,13.527167059000135],[120.97738691500015,13.530340887000094],[120.97868899800008,13.52651601800008]]],[[[121.88754316500003,13.554754950000145],[121.90919030000012,13.52289459800012],[121.91374759200008,13.52863190300009],[121.92505944100006,13.538641669000171],[121.92969811300007,13.544623114000089],[121.944997592,13.528998114000103],[121.968028191,13.523749091000125],[121.98902428500006,13.530462958000072],[121.99789472699997,13.55076732000016],[122.01099694100016,13.542141018000066],[122.020192905,13.53363678600013],[122.02344811300006,13.523179429000066],[122.01905358200011,13.509222723000093],[122.03394616000006,13.514634507000125],[122.04517662900005,13.509222723000093],[122.04867597700006,13.498765367000187],[122.03956139400023,13.489325262000179],[122.0437931650001,13.48533763200011],[122.05469811300024,13.478094794000086],[122.05990644600014,13.475734768000137],[122.07520592500012,13.485419012000179],[122.09669030000022,13.479681708000115],[122.11524498800023,13.464992580000114],[122.12208092500022,13.447739976000108],[122.11841881599999,13.443101304000095],[122.11133873800021,13.441392320000176],[122.10157311300011,13.440904039000188],[122.10084069100016,13.433905341000111],[122.10157311300011,13.416693427000098],[122.10547936300011,13.40843333500011],[122.12370853000019,13.39520905200007],[122.12891686300004,13.386297919000128],[122.12029056100006,13.3566348330001],[122.06202233200015,13.298570054000137],[122.03956139400023,13.269598700000131],[122.04908287900004,13.248358466000155],[122.04029381600016,13.23069896000014],[122.00879967500006,13.204779364000132],[121.99317467500006,13.201605536000073],[121.97673587300018,13.213080145000118],[121.96257571700006,13.22801341400016],[121.95386803500017,13.235500393000123],[121.94288170700023,13.240179755000142],[121.90919030000012,13.269598700000131],[121.90072675899998,13.271958726000094],[121.88347415500007,13.273179429000109],[121.87501061300023,13.27643463700015],[121.86491946700006,13.284369208000115],[121.84766686300016,13.310614325000143],[121.81723066500003,13.3419457050001],[121.81373131599999,13.35224030200011],[121.81788170700017,13.375799872000158],[121.81723066500003,13.382879950000117],[121.81413821700014,13.397528387000136],[121.8143009770001,13.450506903000159],[121.81723066500003,13.464829820000148],[121.82439212300002,13.474066473000121],[121.85075931100008,13.520941473000079],[121.85385175900002,13.530340887000094],[121.85564212300018,13.558417059000107],[121.858653191,13.56549713700015],[121.87305748800006,13.568508205000157],[121.88754316500003,13.554754950000145]]],[[[121.0857853520001,13.57062409100017],[121.09131920700011,13.562323309000092],[121.0942488940001,13.537054755000142],[121.08863365999999,13.530340887000094],[121.07211347700003,13.535834052000126],[121.04346764400005,13.56122467700014],[121.04346764400005,13.567572333000086],[121.05128014400017,13.56777578300013],[121.05811608200004,13.565090236000145],[121.06690514400022,13.567206122000158],[121.07748457099999,13.572251695000189],[121.0857853520001,13.57062409100017]]],[[[120.16407311300004,13.834906317000119],[120.168711785,13.824530341000113],[120.183360222,13.828802802000126],[120.20264733200017,13.824611721000094],[120.22217858200023,13.815415757000125],[120.23764082100014,13.804632880000113],[120.27173912900017,13.752508856000176],[120.26677493600013,13.741278387000179],[120.25733483200011,13.733099677000084],[120.25269616000017,13.724432684000178],[120.26091556100008,13.711574611000145],[120.26929772200005,13.707342841000127],[120.27719160199997,13.706040757000137],[120.28305097700016,13.70246002800016],[120.28541100399998,13.69139232000012],[120.26856530000012,13.678697007000068],[120.26433353000019,13.673732815000108],[120.25782311300011,13.68211497600008],[120.25082441500004,13.693793036000073],[120.24317467500006,13.704046942000103],[120.23389733200023,13.708441473000079],[120.21949303500017,13.711249091000127],[120.21363366,13.718247789000117],[120.21021569099999,13.727199611000131],[120.2034611340001,13.73578522300015],[120.1928817070001,13.742580471000082],[120.18279056100006,13.746730861000117],[120.17188561300006,13.74884674700013],[120.15886478000019,13.749416408000101],[120.15251712300007,13.752630927000055],[120.14112389400012,13.766750393000095],[120.10824629000004,13.776841539000143],[120.0922957690001,13.794501044000157],[120.08285566499998,13.817938544000143],[120.07992597700016,13.842230536000116],[120.08130944100006,13.852932033000144],[120.08570397199999,13.86078522300012],[120.09302819100006,13.865301825000174],[120.10368899800008,13.86627838700015],[120.11833743600008,13.860825914000117],[120.14283287900001,13.848700262000122],[120.16407311300004,13.834906317000119]]],[[[124.23585045700004,14.068060614000144],[124.25261478000017,14.046698309000107],[124.2656356130001,14.022691148000149],[124.27393639400016,13.996486721000124],[124.27735436300006,13.955511786000102],[124.28687584700016,13.952582098000077],[124.29542076900012,13.945502020000118],[124.30811608200017,13.92816803600013],[124.30062910199997,13.920721747000144],[124.30543053500016,13.91404857000019],[124.30689537900004,13.91120026200015],[124.30811608200017,13.906439520000148],[124.31495201900006,13.906439520000148],[124.32976321700009,13.933091539000186],[124.35775800900014,13.920599677000084],[124.41797936300023,13.872951565000108],[124.41797936300023,13.86546458500014],[124.40349368600019,13.85683828300013],[124.38998457100003,13.845648505000128],[124.40357506600017,13.838812567000103],[124.40984134200018,13.826402085000081],[124.41293378999997,13.811672268000095],[124.41797936300023,13.797796942000105],[124.3987736340001,13.790432033000101],[124.38998457100003,13.790350653000116],[124.39722741000006,13.779608466000113],[124.3987736340001,13.77118561400006],[124.39576256600017,13.742377020000118],[124.39112389400024,13.721869208000072],[124.38998457100003,13.711574611000145],[124.40748131600017,13.683742580000098],[124.40870201900005,13.667303778000102],[124.38656660199997,13.66006094000008],[124.36605879000014,13.660711981000118],[124.35531660200004,13.659613348000077],[124.35084069100017,13.651800848000093],[124.34913170700005,13.6327578800001],[124.33334394600004,13.572455145000147],[124.3347274100001,13.557603257000096],[124.31983483200024,13.56777578300013],[124.30640709700006,13.588527736000131],[124.29346764400023,13.604071356000132],[124.28077233200011,13.598578192000105],[124.2680770190001,13.60219961100016],[124.25163821700002,13.599188544000157],[124.23519941500005,13.591538804000137],[124.22266686300021,13.581854559000163],[124.21534264400022,13.567531643000095],[124.20801842500012,13.547796942000147],[124.19939212300018,13.53042226800008],[124.18775475399998,13.52289459800012],[124.17017662900017,13.529771226000122],[124.11622155000016,13.578111070000134],[124.08594811300006,13.600043036000073],[124.06869550900014,13.60610586100016],[124.04737389400012,13.606024481000176],[124.0512801440001,13.619533596000151],[124.04810631600004,13.633368231000148],[124.04004967500012,13.64630768400015],[124.03044681100012,13.656927802000096],[124.02605228,13.669623114000075],[124.03589928500004,13.68081289300008],[124.06177819100017,13.694769598000136],[124.08716881600017,13.716131903000104],[124.10743248800011,13.745103257000096],[124.12183678500017,13.779771226000078],[124.12940514400012,13.818304755000057],[124.12077884200018,13.875921942000119],[124.12598717500012,13.890326239000089],[124.13591556100019,13.90729401200015],[124.13453209700006,13.925034898000149],[124.120290561,13.963527736000145],[124.11622155000016,13.980698960000083],[124.11622155000016,13.98895905200007],[124.12110436300021,13.994126695000162],[124.12964928500016,14.001695054000109],[124.13591556100019,14.010646877000141],[124.13306725400017,14.019720770000134],[124.12452233200021,14.033840236000074],[124.12452233200021,14.049383856000176],[124.12964928500016,14.064846096000096],[124.13689212300007,14.078355210000083],[124.14966881600004,14.062241929000109],[124.16391035200004,14.065578518000123],[124.18458092500023,14.085191148000176],[124.19361412900017,14.090033270000077],[124.20093834700006,14.092230536000073],[124.20777428500017,14.091253973000093],[124.21566816500015,14.086493231000174],[124.23585045700004,14.068060614000144]]],[[[122.17701256600006,14.007066148000161],[122.15837649800008,14.006781317000131],[122.13607832100004,14.019232489000146],[122.09896894599999,14.050360419000143],[122.03337649800008,14.092027085000112],[121.99317467500006,14.12763092700007],[121.98145592500012,14.13300202000012],[121.96517988400015,14.142971096000124],[121.94581139400023,14.165757554000137],[121.92986087300002,14.19114817900008],[121.92351321700018,14.208685614000117],[121.92660566499997,14.221258856000105],[121.93433678499999,14.229437567000105],[121.945078972,14.232611395000077],[121.95777428500016,14.229966539000173],[121.96404056100002,14.226141669000171],[121.96810957099999,14.221380927000082],[121.97584069100012,14.210435289000102],[122.10474694100017,14.10260651200015],[122.14975019600017,14.072699286000088],[122.17269941500014,14.053534247000115],[122.18344160200014,14.030585028000132],[122.17701256600006,14.007066148000161]]],[[[122.37484785200017,14.681463934000105],[122.35401451900005,14.67951080900015],[122.31934655000012,14.683498440000122],[122.31641686300004,14.69891998900006],[122.34156334700016,14.712591864000103],[122.36426842500012,14.720607815000136],[122.380625847,14.72870514500008],[122.39698326900022,14.732245184000147],[122.41179446700019,14.725816148000135],[122.41846764400017,14.719956773000176],[122.41960696700018,14.705145575000117],[122.39779707100017,14.68585846600017],[122.37484785200017,14.681463934000105]]],[[[122.13843834700018,14.83893463700015],[122.14600670700013,14.833644924000083],[122.15707441500017,14.834295966000127],[122.16976972700004,14.838771877000097],[122.20386803500004,14.838771877000097],[122.19695071700002,14.832912502000141],[122.19263756600006,14.824774481000135],[122.19239342500006,14.814927476000106],[122.19711347699999,14.803941148000149],[122.20630944100017,14.79661692900005],[122.2169702480002,14.795152085000096],[122.23536217500023,14.797756252000086],[122.24822024800007,14.788153387000108],[122.257009311,14.767035223000095],[122.25660241000006,14.745917059000178],[122.24219811300016,14.73631419500019],[122.24154707100004,14.7411156270001],[122.16293378999998,14.797756252000086],[122.13550866000006,14.802557684000163],[122.12126712300002,14.806870835000081],[122.11524498800023,14.814846096000124],[122.11117597700009,14.826117255000128],[122.10499108200011,14.837836005000113],[122.10572350400005,14.843939520000104],[122.12208092500022,14.838771877000097],[122.12484785200003,14.842474677000139],[122.13575280000006,14.852362372000144],[122.13843834700018,14.83893463700015]]],[[[121.96941165500017,15.047186591000154],[121.9848738940001,15.037990627000097],[121.99382571700002,15.042914130000142],[122.005137566,15.038641669000143],[122.0112410820001,15.02716705900009],[122.00538170700005,15.010687567000105],[122.02906334700016,15.009182033000158],[122.04818769600017,14.999457098000107],[122.05787194099999,14.98330312700014],[122.05307050900004,14.962225653000118],[122.03150475399998,14.987738348000121],[122.02035566499998,14.993719794000127],[122.00538170700005,14.990179755000055],[121.99512780000022,14.980129299000081],[121.99268639400012,14.969183661000116],[121.99634850400005,14.963527736000117],[122.00538170700005,14.96906159100014],[122.01319420700017,14.944810289000145],[122.012868686,14.932928778000106],[122.00359134200008,14.925238348000091],[121.97169030000023,14.905585028000132],[121.96810957099999,14.902573960000124],[121.96957441500015,14.897772528000132],[121.97152753999997,14.862046617000102],[121.9736434250001,14.852118231000103],[121.97803795700011,14.838771877000097],[121.99659264400012,14.8413760440001],[122.00879967500006,14.824611721000082],[122.01587975400005,14.799465236000088],[122.0258895190001,14.73631419500019],[122.02369225400004,14.722601630000083],[122.00416100400005,14.673651434000108],[121.9848738940001,14.656927802000084],[121.96119225400011,14.644761460000097],[121.94019616000004,14.640082098000079],[121.91667728000019,14.6490746110001],[121.90870201900023,14.67096588700012],[121.91032962300008,14.69782135600012],[121.91602623800023,14.722072658000101],[121.93490644600016,14.725775458000143],[121.933848504,14.764960028000173],[121.91944420700023,14.810248114000101],[121.8989363940001,14.831854559000092],[121.88363691500004,14.836411851000136],[121.87916100400015,14.848334052000082],[121.88184655000023,14.883693752000097],[121.87745201900005,14.894435940000106],[121.85572350399998,14.926947333000085],[121.84766686300016,14.935532945000189],[121.83139082100004,14.940578518000136],[121.82178795700023,14.940334377000099],[121.81836998800021,14.946030992000162],[121.82642662900017,15.012152411000072],[121.83326256600012,15.035305080000112],[121.84424889400023,15.04539622600008],[121.87427819100002,15.027777411000145],[121.89372806100019,15.024562893000093],[121.9023543630001,15.041693427000125],[121.90992272200005,15.050197658000158],[121.92798912900017,15.05223216400019],[121.96941165500017,15.047186591000154]]],[[[120.00554446700008,16.232082424000154],[119.99293053500011,16.230169989],[119.98096764400019,16.239447333000143],[119.97632897200005,16.247259833000143],[119.95671634200006,16.262437242000132],[119.93677819100017,16.288153387000175],[119.92554772200018,16.29535553600003],[119.92237389400012,16.30377838700015],[119.92750084700006,16.3131371110001],[119.94304446700002,16.329291083000058],[119.95346113400004,16.331976630000142],[119.96119225400005,16.334784247000083],[119.96257571700012,16.33885325700014],[119.96501712300007,16.34438711100016],[119.97315514400006,16.35057200700014],[119.98406009200002,16.34870026200015],[119.99122155000008,16.34357330900015],[119.99488366000007,16.337551174000126],[119.99708092500023,16.330755927000112],[120.00562584700005,16.311753648000106],[120.00505618600019,16.26862213700009],[120.01075280000016,16.254624742000132],[120.01221764400024,16.241522528000147],[120.00554446700008,16.232082424000154]]],[[[120.90919030000023,18.567206122000144],[120.92693118600002,18.566229559000178],[120.94703209700018,18.572007554000137],[120.96387780000005,18.581366278000175],[120.97055097700016,18.590765692],[120.97877037900005,18.59829336100016],[121.01832116000013,18.61709219],[121.03272545700017,18.621812242000104],[121.04249108200013,18.62230052300019],[121.06332441500008,18.62067291900017],[121.07300866000007,18.621812242000104],[121.08334394600014,18.62799713700018],[121.09498131600006,18.637030341000084],[121.10678144600004,18.64272695500007],[121.11817467500006,18.638861395000063],[121.12614993600002,18.634100653000147],[121.13705488400004,18.63092682500009],[121.15935306100006,18.628648179000137],[121.17066491000004,18.62547435100008],[121.17741946700006,18.61782461100013],[121.18262780000018,18.608832098000036],[121.19027753999998,18.60130442900005],[121.23991946700018,18.57770416900003],[121.26628665500019,18.55487702],[121.36402428500018,18.50641510600012],[121.37818444100002,18.49485911700019],[121.39185631600006,18.486314195000162],[121.42408287900011,18.477240302000084],[121.498301629,18.429388739000146],[121.50611412899998,18.42666250200007],[121.51978600400005,18.425116278000033],[121.52613366000016,18.422552802000112],[121.53256269599999,18.415961005000057],[121.53882897200008,18.407049872000112],[121.54656009200002,18.39923737200003],[121.59205162899998,18.384711005],[121.6132918630001,18.359320380000057],[121.62964928499999,18.331691799000154],[121.64966881600017,18.313950914000074],[121.64966881600017,18.32021719],[121.63461347700016,18.33454010600009],[121.6349389980002,18.355129299000126],[121.64503014400023,18.369452216000028],[121.65967858200004,18.364813544000086],[121.67286217500012,18.35496653900016],[121.85279381600016,18.28799062700007],[121.89551842500005,18.279201565],[121.91732832100004,18.278631903000033],[121.97461998800006,18.28603750200001],[121.98682701900022,18.290432033000098],[122.03956139400023,18.32021719],[122.07862389400012,18.379461981000087],[122.09131920700005,18.389064846000068],[122.11158287900015,18.39276764500012],[122.11931399800018,18.403021552000055],[122.12208092500022,18.436835028000033],[122.14576256600017,18.507391669000086],[122.15284264400023,18.51878489800005],[122.19939212300008,18.522853908000016],[122.22022545700021,18.52240631700012],[122.23536217500023,18.515366929000052],[122.24317467500022,18.499823309000032],[122.2470809250001,18.459784247000115],[122.25171959700006,18.44306061400009],[122.26050866,18.43227773600007],[122.28809655000025,18.40924713700009],[122.29721113400004,18.403876044000143],[122.31714928500001,18.37742747600008],[122.324961785,18.336615302000112],[122.32016035200004,18.292547919000114],[122.30697675900014,18.251288153000147],[122.28858483200023,18.218207098000033],[122.26270592500012,18.186102606000063],[122.24675540500017,18.17194245000003],[122.21371504000014,18.149969794000114],[122.18002363400014,18.120754299000065],[122.17432701900016,18.11347077000015],[122.16976972700004,18.100490627000156],[122.16911868600008,18.08812083500011],[122.17188561300021,18.079413153000033],[122.17554772200016,18.071844794000086],[122.1772567070001,18.063177802],[122.1772567070001,18.029038804],[122.18311608200023,17.996486721000124],[122.18344160200014,17.984361070000134],[122.14014733200004,17.798285223],[122.13990319100004,17.787909247000087],[122.14323978000006,17.765285549000126],[122.14234459700018,17.757066148000135],[122.13607832100004,17.744289455000096],[122.13575280000006,17.73729075700011],[122.13982181100008,17.730047919000086],[122.15316816500014,17.715521552000055],[122.15626061300021,17.706935940000122],[122.1565861340001,17.619289455000015],[122.16293378999998,17.59332916900003],[122.19385826900023,17.519191799000097],[122.19711347699999,17.49461497600008],[122.2060653000001,17.47528717700014],[122.22445722700014,17.451890367000075],[122.23959394600016,17.42682526200015],[122.23878014400023,17.40216705900015],[122.2436629570001,17.391099351000136],[122.246348504,17.374904690000065],[122.25114993600019,17.360174872000087],[122.26270592500012,17.353745835000083],[122.26644941500015,17.35537344],[122.27149498800006,17.35862864800005],[122.27833092500012,17.361232815000122],[122.28711998800016,17.36058177300019],[122.30534915500006,17.344183661000088],[122.313731316,17.34007396000014],[122.32601972700014,17.340887762000065],[122.35287519600014,17.35114166900017],[122.36540774800002,17.353745835000083],[122.3816024100001,17.347398179000137],[122.39014733200023,17.316880601000108],[122.40259850400004,17.305975653000033],[122.39779707100017,17.329087632000082],[122.41456139400005,17.31907786700019],[122.43539472700016,17.292425848000065],[122.44361412900004,17.265611070000162],[122.42514082100004,17.279527085000055],[122.41431725400005,17.283636786],[122.40943444100006,17.275213934000064],[122.41163170700024,17.26044342700005],[122.42090905000012,17.232326565000065],[122.42310631600017,17.220607815000093],[122.42058353000019,17.205877997000087],[122.41041100400005,17.17552317900011],[122.40943444100006,17.161932684000146],[122.41684004000014,17.14581940300009],[122.44141686300021,17.127997137000122],[122.45101972700004,17.11416250200001],[122.45443769600014,17.118719794000143],[122.46094811300021,17.12348053600006],[122.46469160200016,17.127834377000152],[122.48047936300011,17.12348053600006],[122.49024498800024,17.13287995000009],[122.50098717500016,17.13979726800009],[122.51929772200006,17.127834377000152],[122.52914472700016,17.109605210000083],[122.52906334700016,17.090521552],[122.52149498800021,17.07200755400008],[122.50879967500023,17.055853583000115],[122.5039168630001,17.04653554900007],[122.50049889400005,17.034125067000147],[122.49610436300011,17.02326080900015],[122.4882918630001,17.018540757000054],[122.48357181100017,17.013657945000162],[122.47291100400017,16.98969147300012],[122.45972740999999,16.912014065],[122.46469160200016,16.89508698100012],[122.44898522200012,16.864976304],[122.42269941499997,16.79433828300013],[122.37338300900004,16.71352773600013],[122.36500084700005,16.685126044000114],[122.34546959700005,16.642523505000057],[122.33838951900012,16.63129303600006],[122.32520592500022,16.616156317000062],[122.30014082100016,16.565497137000094],[122.28638756600004,16.546820380000113],[122.253184441,16.519964911000116],[122.24463951900012,16.510565497000115],[122.23878014400023,16.504055080000015],[122.23422285199999,16.495103257],[122.23218834700018,16.486517645000063],[122.23194420700023,16.466498114],[122.22917728000006,16.46161530200014],[122.21143639400005,16.449408270000063],[122.20427493600002,16.434759833000143],[122.20533287900012,16.423895575000145],[122.21762129000015,16.394761460000026],[122.22413170700024,16.408514716000028],[122.22510826900012,16.41526927300005],[122.23194420700023,16.41526927300005],[122.22494550900015,16.38076406500015],[122.19190514400013,16.31736888200011],[122.19711347699999,16.291693427000055],[122.21452884200006,16.307074286],[122.23194420700023,16.319037177000112],[122.22868899800008,16.304632880000057],[122.20386803500004,16.263820705000015],[122.20337975400005,16.25747304900007],[122.20533287900012,16.24249909100014],[122.20386803500004,16.23651764500012],[122.19874108200011,16.233710028000175],[122.18246503999998,16.23200104400017],[122.1772567070001,16.23029205900015],[122.1494246750001,16.19554271000011],[122.11524498800023,16.16889069200009],[122.08399498800006,16.137355861000074],[122.08041425899997,16.135321356000063],[122.07699628999998,16.13271719000015],[122.07357832100008,16.127264716000113],[122.0717879570001,16.11933014500015],[122.07243899800002,16.11155833500014],[122.07357832100008,16.104925848000093],[122.07357832100008,16.099920966000052],[122.05925540500017,16.077785549000154],[122.01612389400006,16.051459052000055],[121.99789472699997,16.03107330900015],[121.99170983200021,16.03851959800015],[122.01156660200004,16.065741278000147],[122.02165774800018,16.083929755000142],[122.0258895190001,16.103705145000063],[122.03345787900017,16.117132880000057],[122.08106530000022,16.148382880000113],[122.087575717,16.16445547100001],[122.09278405000023,16.18732330900012],[122.10157311300011,16.20774974200016],[122.132578972,16.22549062700007],[122.140879754,16.244086005000085],[122.13526451900012,16.260728257000107],[122.10775800900011,16.263820705000015],[122.08741295700005,16.255316473000065],[122.07740319100012,16.241278387000122],[122.07398522200016,16.224025783000016],[122.07357832100008,16.20575592700014],[122.0669051440001,16.190130927000055],[122.05054772199999,16.18085358300003],[122.01221764400006,16.16889069200009],[121.95476321700008,16.13914622600005],[121.94019616000004,16.134711005],[121.903981967,16.12982819200012],[121.86817467500012,16.120428778000086],[121.85596764400022,16.11131419500019],[121.84408613399997,16.10000234600004],[121.82992597700014,16.090399481000034],[121.79997806100017,16.083238023000188],[121.78842207100016,16.077215887000094],[121.77767988400015,16.07318756700012],[121.76954186300023,16.07575104400003],[121.76107832099999,16.07998281500015],[121.75228925900005,16.07689036700016],[121.68441816500015,16.02114492400007],[121.67872155000023,16.010728257000082],[121.64226321700019,15.969631252000099],[121.59327233200021,15.944891669000112],[121.57781009200019,15.932074286000088],[121.5673934250001,15.91571686400006],[121.5600692070001,15.895209052000112],[121.55298912900017,15.852932033000101],[121.55486087300012,15.828924872000144],[121.5706486340001,15.793768622000085],[121.57455488400015,15.774359442000089],[121.58521569100012,15.765448309000035],[121.60865319100017,15.763088283000101],[121.63184655000012,15.757025458],[121.64226321700019,15.73688385600015],[121.63656660200004,15.722479559000176],[121.59449303500007,15.674750067000119],[121.611094597,15.671087958000085],[121.61980228000017,15.6674665390001],[121.62916100400004,15.66111888199999],[121.59099368600008,15.64044830900015],[121.57374108200017,15.62726471600003],[121.56657962300018,15.610256252000156],[121.56153405000005,15.591376044000027],[121.54900149800007,15.576402085],[121.49561608200021,15.532456773000076],[121.4875594410001,15.520412502000156],[121.47925866,15.456203518],[121.4729110040001,15.43768952],[121.46412194100002,15.421535549000126],[121.42628014400007,15.373765367000175],[121.40886478000013,15.377752997000156],[121.39771569100016,15.382717190000108],[121.38990319100012,15.377875067000131],[121.38160240999999,15.352687893000152],[121.37916100400017,15.308172919000157],[121.39112389400012,15.26626211100016],[121.41374759200008,15.231634833000086],[121.44361412900015,15.209295966000141],[121.46843509200004,15.1961123720001],[121.4814559250001,15.18252187700014],[121.4875594410001,15.163316148000177],[121.50814863400004,15.06281159100014],[121.51531009200009,15.051662502000127],[121.52784264400005,15.04075755400005],[121.5600692070001,14.989650783000085],[121.56657962300018,14.972805080000086],[121.5706486340001,14.945990302000084],[121.58179772200019,14.91966380400008],[121.59734134200019,14.894842841000113],[121.61500084699999,14.872870184000107],[121.60962975400005,14.86994049700017],[121.59961998800006,14.862005927000112],[121.59449303500007,14.859198309000162],[121.63575280000012,14.811590887000179],[121.64226321700019,14.80084870000016],[121.64991295700023,14.792181708000085],[121.712657097,14.74437083500014],[121.72494550900014,14.730780341000083],[121.7260848320001,14.720160223000136],[121.70736738400002,14.715806382000054],[121.67090905000016,14.71434153900019],[121.64918053500011,14.710516669000171],[121.62916100400004,14.702826239000148],[121.61394290500007,14.689886786000145],[121.60808353000019,14.674261786000072],[121.60816491000016,14.63019440300016],[121.61068769599997,14.612616278000132],[121.64722741000006,14.492254950000172],[121.65137780000006,14.45612213700015],[121.66244550900002,14.417385158000116],[121.67017662900005,14.401109117000173],[121.68238366,14.385443427000112],[121.72486412900017,14.345892645000148],[121.73471113400004,14.328680731000135],[121.73609459700018,14.31488678600013],[121.73161868600012,14.280422268000109],[121.73585045700023,14.273138739000101],[121.75464928500016,14.255764065000122],[121.75896243600017,14.246568101000136],[121.75717207099997,14.230617580000128],[121.75212649800007,14.215725002000084],[121.74366295700021,14.203436591000127],[121.73161868600012,14.195054429000066],[121.73161868600012,14.188218492000145],[121.74488366000006,14.177150783000116],[121.78003991,14.126166083000115],[121.84766686300016,14.078355210000083],[121.91724694100004,14.009507554000109],[121.93628991000006,13.995184637000122],[122.08790123800004,13.937811591000099],[122.23194420700023,13.906439520000148],[122.23316491000004,13.933050848000107],[122.22201582100004,13.952093817000089],[122.18344160200014,13.98895905200007],[122.20240319100016,13.994574286000073],[122.29330488400004,13.970119533000116],[122.29851321700004,13.97256094000015],[122.30014082100016,13.985581773000133],[122.29639733200011,14.002752997000158],[122.29981530000012,14.007554429000066],[122.313731316,14.01007721600017],[122.313731316,14.016302802000125],[122.290782097,14.023098049000154],[122.25196373800011,14.067694403000132],[122.23536217500023,14.078355210000083],[122.20866946700014,14.087632554000123],[122.18620853000012,14.110541083000129],[122.17017662900004,14.139634507000096],[122.16293378999998,14.167792059000163],[122.17318769600003,14.160223700000131],[122.17554772200016,14.155951239000117],[122.1772567070001,14.146673895000063],[122.18344160200014,14.146673895000063],[122.18409264400012,14.169867255000097],[122.19556725400004,14.183783270000076],[122.23194420700023,14.201849677000098],[122.24439537900005,14.196030992000132],[122.2475692070001,14.21279531500015],[122.24781334700005,14.23615143400015],[122.25171959700006,14.25031159100017],[122.26368248800006,14.247381903000147],[122.2666121750001,14.227606512000136],[122.26400800900002,14.203680731000162],[122.2592879570001,14.188218492000145],[122.26685631600004,14.178859768000109],[122.2688908210001,14.167303778000175],[122.26954186300023,14.154242255000113],[122.2727970710001,14.140448309000105],[122.27149498800006,14.136664130000083],[122.27320397200018,14.132513739000132],[122.27963300899998,14.126166083000115],[122.2843530610002,14.125881252000084],[122.28858483200023,14.130194403000175],[122.29175866000016,14.136053778000118],[122.29330488400004,14.140448309000105],[122.29851321700004,14.129339911000073],[122.30030358200011,14.117580471000094],[122.30014082100016,14.092027085000112],[122.31869550900015,14.100043036000145],[122.33497155000008,14.113226630000097],[122.34571373800011,14.131333726000108],[122.3479923840001,14.154120184000135],[122.34424889400023,14.160589911000145],[122.33008873800011,14.180568752000113],[122.32748457100004,14.188218492000145],[122.33130944100004,14.200262762000149],[122.33765709700016,14.207586981000162],[122.344004754,14.206935940000122],[122.3479923840001,14.195054429000066],[122.35547936300021,14.195054429000066],[122.35670006600017,14.204657294000143],[122.35572350400017,14.21222565300009],[122.35279381600017,14.21808502800013],[122.3479923840001,14.222357489000146],[122.36695397200016,14.222154039000188],[122.37680097700004,14.228501695000118],[122.37671959700006,14.239650783000144],[122.36540774800002,14.25340403900016],[122.36622155000023,14.261460679000095],[122.38135826900024,14.293280341000127],[122.388926629,14.30491771000014],[122.39454186300011,14.29148997600005],[122.40365644599999,14.295396226000136],[122.41244550900016,14.309027411000088],[122.41627037900017,14.324774481000146],[122.43116295700023,14.318060614000101],[122.444590691,14.324652411000073],[122.45753014400024,14.336615302000112],[122.47095787900005,14.345892645000148],[122.4831649100001,14.34666575700008],[122.49463951900022,14.341376044000098],[122.51929772200006,14.324774481000146],[122.51490319100004,14.329901434000147],[122.505056186,14.345892645000148],[122.52784264400023,14.348700262000106],[122.57536868600008,14.329291083000099],[122.60124759200008,14.324774481000146],[122.59888756599999,14.311224677000082],[122.60466556100008,14.301255601000094],[122.61378014400016,14.299709377000141],[122.62232506600016,14.311183986000088],[122.62566165500012,14.296535549000083],[122.63461347700014,14.286037502000111],[122.6442977220001,14.284735419000114],[122.64966881600017,14.297512111000145],[122.677989129,14.294663804000109],[122.69068444100017,14.291245835000112],[122.67432701900023,14.316107489000144],[122.67139733200021,14.339422919000157],[122.67986087300008,14.350531317000092],[122.69752037900018,14.338446356000178],[122.70427493600002,14.345892645000148],[122.711680535,14.329535223000134],[122.7216903000001,14.315741278000132],[122.73511803500017,14.313544012000134],[122.75269615999999,14.332220770000122],[122.75749759200019,14.325832424000097],[122.7627059250001,14.321356512000136],[122.76889082100014,14.31879303600013],[122.78443444100016,14.316961981000148],[122.78541100400005,14.314154364000103],[122.78443444100016,14.310044664000145],[122.786875847,14.30491771000014],[122.80258222700016,14.287176825000145],[122.8098250660001,14.284409898000177],[122.82471764400023,14.283840236000117],[122.85328209700006,14.278550523000133],[122.873301629,14.265204169000128],[122.90357506600012,14.22919342700007],[122.90455162900017,14.224025783000158],[122.90333092500023,14.217189846000137],[122.903086785,14.211249091000111],[122.906993035,14.208685614000117],[122.9199324880001,14.208156643000137],[122.92505944100004,14.206122137000108],[122.93083743600019,14.201849677000098],[122.95435631600004,14.167792059000163],[122.96550540500007,14.15924713700015],[123.00269616000017,14.118882554000095],[123.01221764400023,14.105698960000138],[123.02173912900018,14.11139557500013],[123.0327254570001,14.107814846000153],[123.042246941,14.09804922100011],[123.04688561300024,14.085191148000176],[123.04395592500012,14.06976959800015],[123.03638756600017,14.057440497000115],[123.030528191,14.043443101000065],[123.03321373800011,14.023138739000144],[123.05372155000022,14.002630927000098],[123.07813561300011,13.98810455900015],[123.08155358200011,13.98895905200007],[123.08423912900011,13.974269924000152],[123.08155358200011,13.92816803600013],[123.08838951900023,13.901434637000122],[123.08773847700009,13.893459377000156],[123.0820418630001,13.884426174000152],[123.07496178500006,13.881659247000101],[123.06763756600006,13.879584052000084],[123.06055748800004,13.872951565000108],[123.05591881600004,13.86131419500019],[123.04883873800004,13.821966864000103],[123.04688561300024,13.81085846600017],[123.04981530000023,13.775824286000088],[123.06666100400017,13.756089585000055],[123.08871504000014,13.741644598000093],[123.10824629000003,13.722113348000121],[123.11589603000006,13.722113348000121],[123.13672936300023,13.732814846000137],[123.16089928500006,13.734076239000146],[123.21469160199999,13.72894928600013],[123.22494550900004,13.731146552000126],[123.25562584700005,13.743312893000109],[123.26661217500005,13.749416408000101],[123.30176842500022,13.789455471000123],[123.30746504000004,13.801255601000108],[123.30958092500023,13.807928778000147],[123.31316165500014,13.814113674000126],[123.31495201900012,13.82054271000014],[123.30827884200002,13.833319403000173],[123.29664147200005,13.869818427000125],[123.28093509200008,13.891831773000135],[123.28028405000012,13.906439520000148],[123.31348717500023,13.930080471000096],[123.31771894600016,13.934393622000087],[123.32553144600014,13.940008856000174],[123.33139082099997,13.953355210000097],[123.33480879000003,13.96918366100013],[123.33545983200023,13.982163804000137],[123.32488040500017,13.971502997000101],[123.31251061300017,13.940822658000101],[123.30404707100004,13.934393622000087],[123.29004967500023,13.934556382000054],[123.28060957100016,13.936102606000091],[123.23462975400015,13.963812567000089],[123.22299238399998,13.975816148000192],[123.21810957100004,13.992743231000176],[123.22771243600017,14.000433661000102],[123.24529056100012,14.006781317000131],[123.25424238400014,14.013739325000131],[123.23878014400022,14.023138739000144],[123.25904381600004,14.031195380000085],[123.26172936300011,14.042303778000118],[123.25228925900002,14.068101304000137],[123.26148522200018,14.072902736000131],[123.28207441500004,14.066473700000117],[123.31430097700016,14.051092841000168],[123.31430097700016,14.057277736000145],[123.31031334700018,14.060248114000073],[123.30079186300006,14.071519273000149],[123.32960045700011,14.070298570000132],[123.33545983200023,14.071519273000149],[123.33529707099999,14.078762111000088],[123.32715905000008,14.096014716000084],[123.33179772200012,14.09951406500008],[123.34506269600004,14.093695380000128],[123.35328209700006,14.079413153000132],[123.36215254000008,14.043605861000117],[123.34538821700008,14.039536851000063],[123.34205162900005,14.027777411000088],[123.34644615999999,14.016302802000125],[123.35230553500004,14.013169664000158],[123.37012780000023,14.029852606000105],[123.37867272200006,14.035101630000083],[123.39014733200011,14.037339585000069],[123.38510175900014,14.030910549000152],[123.37582441500003,14.01007721600017],[123.38624108200013,14.014105536000145],[123.39014733200011,14.016302802000125],[123.39625084700018,14.01007721600017],[123.39234459700018,13.991848049000097],[123.41179446700018,13.964260158000087],[123.40381920700024,13.948675848000093],[123.41065514400022,13.93943919500012],[123.41521243600017,13.929388739000146],[123.41732832100004,13.91844310100008],[123.41732832100004,13.906439520000148],[123.42416425900002,13.906439520000148],[123.4294539720001,13.919378973000063],[123.43726647200018,13.929144598000105],[123.44369550900002,13.941351630000085],[123.44467207100008,13.961655992000173],[123.46469160200014,13.956447658000087],[123.477793816,13.95050690300016],[123.48633873800023,13.940008856000174],[123.49252363400004,13.920721747000144],[123.53882897200018,13.92495351800008],[123.61280358200007,13.897162177000112],[123.68140709700018,13.884670315000093],[123.71168053500017,13.934393622000087],[123.73406009200019,13.897121486000117],[123.76531009200008,13.864325262000106],[123.80404707100003,13.83763255400008],[123.87631269599999,13.807318427000098],[123.87891686300004,13.803900458000085],[123.88005618600013,13.800726630000128],[123.88298587300002,13.797796942000105],[123.8952742850001,13.794094143000152],[123.9194442070001,13.79376862200013],[123.93140709700006,13.790350653000116],[123.93775475400018,13.784002997000101],[123.95191491000016,13.755601304000066],[123.96876061300011,13.740057684000163],[123.9726668630001,13.729315497000144],[123.96550540500006,13.714667059000135],[123.94857832100014,13.72817617400011],[123.94271894600004,13.734564520000134],[123.93751061300023,13.742621161000073],[123.93140709700006,13.742621161000073],[123.92994225400017,13.738430080000143],[123.92457116,13.72894928600013],[123.909922722,13.735988674000112],[123.89258873800011,13.740057684000163],[123.85938561300011,13.742621161000073],[123.85027103000012,13.734076239000146],[123.83627363400014,13.715277411000102],[123.81836998800011,13.696478583000143],[123.79737389400023,13.687974351000122],[123.77930748800023,13.692124742000145],[123.74293053500006,13.710435289000115],[123.68816165500002,13.718695380000112],[123.66667728000019,13.7183291690001],[123.65699303500006,13.711574611000145],[123.64795983200021,13.703558661000116],[123.6269637380001,13.710842190000122],[123.60385175900014,13.722886460000138],[123.58814537900017,13.72894928600013],[123.57048587300008,13.722967841000113],[123.56006920700005,13.709621486000103],[123.52849368600019,13.626776434000178],[123.526621941,13.606024481000176],[123.53500410200014,13.603949286000073],[123.53891035200016,13.600978908000144],[123.53663170700011,13.595160223000093],[123.53402753999998,13.590643622000144],[123.53321373800011,13.585598049000112],[123.53345787900005,13.574693101000136],[123.53630618600008,13.563299872000158],[123.54297936300024,13.560248114000075],[123.5517684250001,13.563625393000095],[123.56080162899998,13.571234442000133],[123.59359785200003,13.5294457050001],[123.59831790500002,13.523586330000157],[123.60547936300017,13.51666901200015],[123.66724694100017,13.485581773000149],[123.68002363400004,13.469956773000163],[123.70484459700016,13.427232164000158],[123.70923912900004,13.423529364000117],[123.7225041020001,13.415187893000137],[123.72535241000007,13.40989817900008],[123.72527103000007,13.399074611000074],[123.72632897200018,13.390855210000083],[123.73145592500012,13.362534898000135],[123.74341881600007,13.34031810100008],[123.75928795700005,13.323879299000081],[123.77711022200005,13.317368882000082],[123.79460696700019,13.30841705900015],[123.80567467500023,13.287095445000176],[123.82154381600019,13.242905992000116],[123.82545006600004,13.260158596000123],[123.83619225400017,13.256089585000069],[123.8481551440001,13.241888739000146],[123.85564212300008,13.228664455000114],[123.78931725400004,13.232407945000148],[123.76758873800021,13.224310614000116],[123.75945071700002,13.197943427000126],[123.75684655000022,13.180975653000145],[123.75220787900001,13.16762929900014],[123.74952233200021,13.154730536000116],[123.75318444100017,13.139308986000088],[123.77019290500007,13.110785223000093],[123.76807701900023,13.098537502000127],[123.74577884200018,13.092108466000113],[123.74577884200018,13.08466217700014],[123.7500106130001,13.077622789000158],[123.74984785200016,13.07265859600011],[123.74577884200018,13.064154364000089],[123.76710045700018,13.053371486000088],[123.77540123800023,13.050767320000176],[123.78736412900015,13.051174221000096],[123.79769941500008,13.055161851000065],[123.81275475400011,13.068182684000147],[123.81812584700005,13.070990302000096],[123.85564212300008,13.118801174000138],[123.86109459700002,13.127875067000131],[123.8650008470001,13.136379299000069],[123.87094160200006,13.142889716000155],[123.88298587300002,13.146063544000128],[123.89454186300004,13.143500067000119],[123.90528405000005,13.129055080000157],[123.91431725400011,13.125637111000145],[123.92432701900006,13.125067450000174],[123.93165123800006,13.122707424000126],[123.93620853000002,13.117580471000124],[123.93751061300023,13.1085879580001],[123.943614129,13.107896226000065],[123.97917728000017,13.098334052000084],[123.99236087300001,13.091620184000119],[124.0081486340001,13.080023505000113],[124.02133222700004,13.066595770000118],[124.02702884200019,13.054266669000171],[124.07113691499998,13.016099351000108],[124.0815535820001,13.009507554000123],[124.09131920700023,13.0187442080001],[124.11231530000018,13.060492255000128],[124.11622155000016,13.074408270000106],[124.12671959700005,13.07868073100012],[124.14991295700004,13.07290273600016],[124.17318769600011,13.063544012000122],[124.18458092500023,13.05731842700007],[124.1882430350001,13.03953685100008],[124.18580162900018,13.020819403000118],[124.17750084700018,13.009995835000112],[124.16480553500006,13.016343492000145],[124.15300540500006,13.00128815300013],[124.14649498800017,12.98993561400006],[124.13689212300007,12.961737372000172],[124.11882571700006,12.925482489000075],[124.11622155000016,12.916449286000073],[124.11947675900004,12.900824286000088],[124.13363691500004,12.878485419000143],[124.14283287899998,12.814398505000085],[124.14307701900024,12.79730866100013],[124.12940514400012,12.677191473000136],[124.12305748800004,12.66229889500009],[124.09473717500023,12.643540757000125],[124.08838951900012,12.628810940000136],[124.09148196700019,12.611883856000146],[124.0962020190001,12.601629950000117],[124.09506269600014,12.59365469000008],[124.0815535820001,12.583726304000066],[124.086599155,12.577378648000135],[124.09522545700023,12.55707428600013],[124.08334394600017,12.553412177000082],[124.06674238400002,12.541449286000145],[124.05494225400005,12.537258205000114],[124.04224694100017,12.53583405200014],[124.01010175900002,12.537258205000114],[123.98316491000017,12.546779690000122],[123.95997155000012,12.56891510600009],[123.93140709700006,12.611721096000096],[123.93336022200018,12.622219143000152],[123.92994225400017,12.623683986000117],[123.92302493600006,12.62107982000012],[123.91431725400011,12.619126695000162],[123.8991805350001,12.635891018000095],[123.87859134200008,12.64520905200014],[123.87012780000013,12.660345770000133],[123.86296634200008,12.679429429000123],[123.84253990999999,12.716213283000101],[123.84302819100016,12.735785223000077],[123.84717858200023,12.755804755000142],[123.84880618600008,12.77619049700013],[123.842051629,12.80121491100013],[123.82984459700006,12.81199778900013],[123.81316165500019,12.818670966000099],[123.793630405,12.83144765800013],[123.81910241000006,12.831854559000133],[123.83871503999998,12.839300848000121],[123.853200717,12.853094794000128],[123.86304772200005,12.87238190300016],[123.87387129000014,12.866929429000123],[123.88998457100003,12.85073476800008],[123.89722741000006,12.845119533000071],[123.90674889400022,12.841620184000178],[123.9122827480001,12.842027085000097],[123.91797936300021,12.843939520000148],[123.92798912900005,12.845119533000071],[123.94044030000023,12.848293361000131],[123.94353274800002,12.856146552000125],[123.94385826900023,12.866115627000111],[123.94849694100016,12.87547435100005],[123.95883222699999,12.880031643000095],[123.96957441500004,12.878078518000137],[123.9790145190001,12.874009507000094],[123.98601321700019,12.87238190300016],[124.00245201900012,12.879706122000158],[124.01783287900004,12.893784898000105],[124.02930748800006,12.91176992400014],[124.03386478000002,12.930405992000132],[124.02515709700005,12.955308335000083],[124.00489342500022,12.961330471000082],[123.95866946700002,12.954291083000115],[123.94092858200021,12.957261460000124],[123.91016686300023,12.97150299700013],[123.89340254000004,12.974798895000063],[123.88160241000016,12.966498114000087],[123.87387129000014,12.947495835000081],[123.86850019599997,12.926825262000165],[123.86304772200005,12.913316148000177],[123.83936608200021,12.888169664000115],[123.82300866000004,12.877020575000088],[123.79932701900012,12.871242580000128],[123.79004967500023,12.866115627000111],[123.78394616000016,12.864935614000089],[123.77833092500023,12.867092190000093],[123.76921634200006,12.876450914000117],[123.76319420700005,12.878607489000117],[123.75831139400012,12.87490469000008],[123.74756920700005,12.857489325000117],[123.73894290500019,12.851874091000113],[123.7353621750001,12.85032786700016],[123.729746941,12.846258856000105],[123.72535241000007,12.845119533000071],[123.72006269600014,12.859076239000146],[123.71168053500017,12.87238190300016],[123.72266686300023,12.876369533000144],[123.73129316500017,12.883286851000136],[123.73267662900005,12.88987864800012],[123.72217858200015,12.892889716000111],[123.69629967500022,12.891546942000131],[123.69011478000017,12.888739325000174],[123.69483483200013,12.882798570000148],[123.69752037900017,12.874945380000069],[123.69800866000006,12.864935614000089],[123.67725670700024,12.88418203300013],[123.68653405000012,12.905422268000123],[123.70329837300014,12.927191473000077],[123.6982528000001,12.93089427300012],[123.6909285820001,12.927801825000131],[123.68067467500022,12.926988023000119],[123.66846764400006,12.924139716000084],[123.66342207100014,12.917141018000109],[123.66138756600006,12.908351955000143],[123.65699303500006,12.900295315000108],[123.64966881600006,12.890326239000117],[123.64893639400012,12.886297919000143],[123.6460067070001,12.88568756700009],[123.63249759200019,12.886053778000104],[123.6157332690001,12.889471747000115],[123.605153842,12.892889716000111],[123.59839928499999,12.89655182500016],[123.57113691500004,12.927964585000097],[123.5590926440001,12.93789297100011],[123.53972415500019,12.948065497000144],[123.52930748800011,12.951646226000122],[123.52100670700011,12.953436591000113],[123.51303144600014,12.956691799000154],[123.50310306100006,12.96482982000016],[123.48804772200005,12.985581773000163],[123.46810957100016,12.99599844000015],[123.4502059250001,13.029282945000148],[123.44125410200016,13.036851304000109],[123.41879316500014,13.039252020000148],[123.40202884200008,13.043280341000113],[123.38502037900017,13.044094143000123],[123.36215254000008,13.036851304000109],[123.33041425900004,13.01902903900013],[123.31006920700023,13.01235586100016],[123.30079186300006,13.019761460000069],[123.29615319100006,13.03607819200009],[123.28785241000016,13.054348049000154],[123.28443444100017,13.071519273000177],[123.29395592500023,13.08466217700014],[123.27898196700012,13.120184637000122],[123.30518639400023,13.198635158000158],[123.30079186300006,13.235500393000123],[123.28443444100017,13.253607489000132],[123.24732506600007,13.279201565000122],[123.23194420700011,13.297552802000068],[123.22779381600017,13.30630117400014],[123.222422722,13.322007554000109],[123.21810957100004,13.331040757000125],[123.19092858200011,13.35903554900014],[123.19703209700016,13.386542059000163],[123.18775475400004,13.42047760600012],[123.16879316500003,13.44920482000016],[123.14625084700006,13.46137116100006],[123.11793053500011,13.468898830000112],[123.0651961600001,13.501776434000107],[123.03663170700011,13.509222723000093],[123.01970462300014,13.511379299000083],[122.99708092500022,13.520697333000129],[122.981700066,13.52289459800012],[122.97201582100016,13.527533270000147],[122.94776451900006,13.549994208000143],[122.88550866000017,13.593329169000114],[122.872813347,13.598578192000105],[122.85914147200016,13.60610586100016],[122.82894941500015,13.641750393000109],[122.81470787900015,13.653794664000129],[122.86255944100017,13.694769598000136],[122.81373131600017,13.748439846000124],[122.78931725400005,13.768540757000082],[122.75879967500012,13.783596096000096],[122.75879967500012,13.777329820000132],[122.75269615999999,13.783596096000096],[122.75879967500012,13.790350653000116],[122.77149498800004,13.790961005000085],[122.76685631600004,13.799546617000189],[122.753103061,13.810492255000069],[122.73902428500017,13.818304755000057],[122.69996178500004,13.825832424000112],[122.69068444100017,13.831976630000097],[122.67872155000022,13.82078685100008],[122.66578209700006,13.81948476800008],[122.65316816500017,13.82607656500015],[122.64283287900005,13.838812567000103],[122.64486738400008,13.843003648000135],[122.65170332099999,13.848089911000073],[122.65658613400014,13.854315497000115],[122.65300540500017,13.86237213700015],[122.62273196700018,13.891994533000101],[122.61036217500023,13.899318752000113],[122.59693444100016,13.904486395000106],[122.58448326900022,13.906439520000148],[122.580332879,13.913275458000086],[122.57764733200023,13.926459052000125],[122.57211347700004,13.935044664000129],[122.56031334700006,13.92816803600013],[122.55591881600006,13.93789297100008],[122.54297936300023,13.952582098000077],[122.54029381600017,13.958563544000098],[122.53687584700018,13.961127020000106],[122.51587975400005,13.934393622000087],[122.45948326900005,13.93789297100008],[122.43490644600014,13.945990302000112],[122.41627037900017,13.961655992000173],[122.4130965500001,13.94806549700013],[122.42066491000017,13.932277736000088],[122.433848504,13.919338283000073],[122.44727623800013,13.913885809000133],[122.45085696700008,13.906195380000113],[122.49976647200006,13.837795315000136],[122.50961347700016,13.82001373900006],[122.50879967500023,13.807766018000095],[122.50269616000018,13.793158270000077],[122.5039168630001,13.771918036000088],[122.512461785,13.73578522300015],[122.49057050899997,13.740627346000124],[122.48552493600006,13.721625067000133],[122.49138431100019,13.67706940300013],[122.49756920700015,13.65204498900013],[122.51295006600012,13.630438544000128],[122.549978061,13.595160223000093],[122.62175540500002,13.552720445000118],[122.63599694100004,13.537095445000134],[122.63233483200004,13.520697333000129],[122.60954837300002,13.531968492000118],[122.56714928500017,13.56386953300013],[122.57292728,13.5480410830001],[122.59888756599999,13.508286851000108],[122.64283287900005,13.457586981000132],[122.65430748800011,13.44041575700011],[122.66325931100012,13.42047760600012],[122.67269941500003,13.379299221000153],[122.67701256600004,13.3419457050001],[122.67701256600004,13.300970770000077],[122.67888431100019,13.289862372000144],[122.68295332100014,13.282294012000108],[122.68767337300007,13.27610911700013],[122.69068444100017,13.269598700000131],[122.692556186,13.24876536700016],[122.69223066500003,13.236802476000122],[122.69068444100017,13.228664455000114],[122.685231967,13.225246486000103],[122.6757918630001,13.222113348000121],[122.66716556100019,13.21808502800016],[122.66325931100012,13.21161530200007],[122.65316816500017,13.20099518400012],[122.63013756600017,13.188055731000103],[122.60482832100003,13.177557684000135],[122.58814537899998,13.174017645000148],[122.57097415500007,13.184556382000125],[122.505056186,13.239203192000076],[122.50757897200005,13.259466864000087],[122.51807701900012,13.2948672550001],[122.51929772200006,13.310614325000143],[122.50114993600002,13.368068752000141],[122.40259850400004,13.496161200000103],[122.40023847700009,13.502875067000147],[122.3984481130001,13.515814520000147],[122.39519290500007,13.52289459800012],[122.37598717500012,13.540838934000162],[122.36947675900004,13.549790757000096],[122.34131920700021,13.561102606000176],[122.33497155000008,13.574693101000136],[122.31902103000017,13.592230536000073],[122.25855553500017,13.592027085000126],[122.2592879570001,13.606024481000176],[122.24154707100004,13.611965236000103],[122.20753014400005,13.61432526200015],[122.19402103000019,13.622788804000109],[122.18995201900022,13.63104889500009],[122.18637129000011,13.648016669000157],[122.18043053500006,13.656927802000096],[122.17221113400015,13.666693427000139],[122.11841881599999,13.752101955000084],[122.09310957100016,13.780585028000175],[122.05990644600014,13.804632880000113],[122.05372155000006,13.785142320000134],[122.03891035199997,13.789618231000091],[122.02198326900012,13.803127346000068],[122.00879967500006,13.81085846600017],[121.98943118600006,13.810044664000158],[121.98585045700005,13.812079169000098],[121.94988040500019,13.844549872000172],[121.93702233200005,13.851792710000112],[121.92481530000012,13.85537344000008],[121.9135848320001,13.857123114000075],[121.90300540500007,13.860541083000086],[121.88233483200023,13.877997137000136],[121.87086022200016,13.885728257000054],[121.85962975400011,13.89130280200007],[121.82715905000012,13.899725653000118],[121.81299889400005,13.914943752000097],[121.80176842500006,13.933091539000186],[121.78630618600006,13.948675848000093],[121.77800540500019,13.949042059000105],[121.7402449880001,13.961900132000125],[121.72486412900017,13.969142971000137],[121.71843509200006,13.95530833500014],[121.70101972699999,13.944769598000093],[121.69752037899998,13.93130117400011],[121.68995201900017,13.925970770000134],[121.64226321700019,13.913885809000133],[121.63689212300002,13.909613348000121],[121.62175540500006,13.893459377000156],[121.61312910200006,13.893052476000063],[121.59595787899998,13.897406317000147],[121.59107506600006,13.896795966000097],[121.57789147200016,13.888006903000118],[121.5493270190001,13.878159898000192],[121.53052819100006,13.864976304000066],[121.52328535200003,13.86188385600016],[121.51587975400007,13.860012111000103],[121.49903405000022,13.859076239000117],[121.49439537900001,13.858099677000139],[121.48462975400015,13.851792710000112],[121.45460045700023,13.819240627000141],[121.43344160200004,13.79637278900013],[121.44076582100004,13.72638580900012],[121.43628991000016,13.700995184000105],[121.44581139400016,13.700913804000123],[121.45232181100006,13.699448960000069],[121.46412194100002,13.694769598000136],[121.434336785,13.663560289000158],[121.43002363400002,13.656927802000096],[121.38884524800002,13.666734117000132],[121.3747664720001,13.66746653900016],[121.35564212300001,13.657131252000156],[121.29810631600006,13.614894924000124],[121.27881920700011,13.595038153000118],[121.26351972700016,13.600043036000073],[121.24919681100009,13.608628648000177],[121.24496504000015,13.612250067000131],[121.21778405000023,13.623236395000106],[121.20460045700004,13.625718492000116],[121.18669681100002,13.626532294000128],[121.17798912900004,13.629095770000133],[121.1694442070001,13.634588934000163],[121.15870201900012,13.639471747000144],[121.14258873800023,13.640204169000171],[121.11011803500004,13.632961330000143],[121.09449303500017,13.62689850500014],[121.08041425900002,13.619086005000069],[121.07048587300012,13.622503973000079],[121.04753665500002,13.627264716000155],[121.03891035200004,13.6327578800001],[121.03394616000017,13.641831773000192],[121.03736412900018,13.64712148600016],[121.04322350400005,13.652980861000117],[121.04639733200011,13.663763739000116],[121.04883873800021,13.688299872000144],[121.05274498800021,13.705877997000172],[121.05347741000004,13.722113348000121],[121.039805535,13.758693752000141],[121.03589928500006,13.762600002000141],[121.01628665500007,13.775295315000108],[121.00375410200014,13.780910549000112],[120.99097740999999,13.783636786000088],[120.98096764400022,13.780462958000115],[120.90308678500018,13.692938544000157],[120.89503014400012,13.687974351000122],[120.88746178500017,13.693508205000127],[120.88233483200005,13.705226955000128],[120.88070722700003,13.71686432500013],[120.88502037900004,13.722113348000121],[120.89323978000002,13.727280992000116],[120.89820397200018,13.738836981000146],[120.90186608200023,13.750392971000082],[120.90577233200023,13.755601304000066],[120.91871178500006,13.757025458000129],[120.92603600400005,13.76166413000007],[120.92896569100017,13.770249742000173],[120.92904707100016,13.783596096000096],[120.91260826900023,13.800034898000177],[120.90919030000023,13.804632880000113],[120.90870201900016,13.816107489000075],[120.91391035200014,13.83734772300015],[120.91537519600004,13.848700262000122],[120.91488691500003,13.864935614000075],[120.91236412900001,13.881781317000076],[120.90626061300021,13.896470445000162],[120.89503014400012,13.906439520000148],[120.87671959700005,13.912258205000114],[120.78687584700006,13.923325914000143],[120.74594160200004,13.933783270000133],[120.72364342500006,13.934393622000087],[120.70484459700005,13.927435614000103],[120.69743899800008,13.913885809000133],[120.70093834700006,13.896144924000138],[120.71436608200023,13.876369533000116],[120.72291100400017,13.855414130000069],[120.70337975400015,13.851711330000128],[120.6622827480002,13.85927969000008],[120.65259850400005,13.845526434000147],[120.65626061300006,13.827093817000117],[120.66488691499998,13.806626695000148],[120.66968834700018,13.78693268400012],[120.66342207100004,13.775376695000174],[120.64966881599999,13.784247137000136],[120.62810306100019,13.81085846600017],[120.62012780000023,13.846625067000105],[120.61841881600006,13.931626695000134],[120.60132897200016,13.969142971000137],[120.61687259200018,13.971665757000068],[120.62891686300011,13.981268622000144],[120.63477623800023,13.991603908000144],[120.63168379000015,13.996486721000124],[120.61988366,14.002915757000125],[120.61744225400015,14.017889716000154],[120.62183678500006,14.076564846000096],[120.61947675899998,14.104234117000175],[120.60775800900004,14.124904690000108],[120.58033287900004,14.13300202000012],[120.58033287900004,14.140448309000105],[120.5957137380001,14.147935289000158],[120.59742272200012,14.156927802000098],[120.58887780000005,14.16616445500014],[120.57349694100006,14.174546617000118],[120.58301842500022,14.174465236000131],[120.589610222,14.176011460000081],[120.60132897200016,14.181382554000123],[120.60132897200016,14.188218492000145],[120.58725019600014,14.200262762000149],[120.59595787900004,14.217962958000072],[120.61247806100015,14.237046617000146],[120.62126712300008,14.25340403900016],[120.62745201900023,14.269598700000115],[120.64332116000017,14.27708567900008],[120.68336022199999,14.283840236000117],[120.69760175900004,14.289496161000116],[120.713145379,14.298529364000117],[120.7253524100001,14.309556382000068],[120.73047936300011,14.321356512000136],[120.73560631599999,14.327215887000177],[120.76002037900015,14.337144273000176],[120.76832116000006,14.342189846000108],[120.78956139400023,14.375311591000141],[120.87794030000005,14.458889065000108],[120.88607832099997,14.462388414000188],[120.89747155000022,14.463120835000126],[120.91920006600004,14.461981512000177],[120.92611738400004,14.464667059000163],[120.94336998800023,14.483099677000114],[120.97038821700019,14.501898505000057],[120.98031660199997,14.51544830900012],[120.98438561300023,14.53400299700013],[120.98015384200002,14.557440497000101],[120.95883222700014,14.591782945000148],[120.95020592500023,14.612779039000188],[120.94312584700018,14.653509833000072],[120.93653405000012,14.66742584800015],[120.90691165500007,14.706732489000144],[120.90235436300021,14.718939520000118],[120.89429772200016,14.725083726000108],[120.84717858200011,14.743719794000098],[120.84392337300008,14.74909088700015],[120.84343509200006,14.755682684000119],[120.84058678500004,14.761216539000145],[120.83008873800021,14.763617255000083],[120.73161868600003,14.766669012000179],[120.66968834700018,14.777289130000126],[120.66382897200005,14.77895742400014],[120.65577233200011,14.781236070000103],[120.64210045700017,14.78701406500008],[120.63209069100017,14.795477606000118],[120.62810306100019,14.807684637000179],[120.62891686300011,14.842027085000142],[120.627207879,14.858710028000173],[120.62126712300008,14.872870184000107],[120.61988366,14.840480861000103],[120.62126712300008,14.831854559000092],[120.61833743600006,14.828314520000122],[120.60759524800002,14.818264065000136],[120.60385175900002,14.824937242000189],[120.60092207099999,14.825628973000134],[120.59392337300021,14.818264065000136],[120.60572350400017,14.88483307500013],[120.60132897200016,14.90082428600013],[120.585703972,14.902818101000078],[120.57732181100006,14.88349030200014],[120.57349694100006,14.838771877000097],[120.55274498800021,14.849920966000113],[120.54517662900012,14.836859442000131],[120.54542076900022,14.827093817000105],[120.54615319100017,14.787827867000175],[120.536468946,14.723211981000134],[120.53931725400004,14.702826239000148],[120.57837975399998,14.659409898000192],[120.58220462300014,14.648260809000178],[120.57691491000007,14.636948960000096],[120.5749617850001,14.621649481000135],[120.59392337300021,14.550726630000057],[120.59791100400015,14.505601304000095],[120.58838951900006,14.466986395000134],[120.56462649800018,14.44122955900009],[120.52621504000008,14.434637762000122],[120.51685631600006,14.437201239000132],[120.50977623800006,14.440822658000087],[120.50220787900005,14.443182684000135],[120.491465691,14.442084052000098],[120.48845462300018,14.437933661000057],[120.4868270190001,14.430731512000122],[120.48145592500022,14.423976955000084],[120.46705162900015,14.421047268000066],[120.46322675900015,14.424261786000116],[120.46045983200013,14.431545315000136],[120.45590254000015,14.438788153000159],[120.41016686300021,14.452053127000097],[120.4021102220001,14.455755927000125],[120.38200931100008,14.480292059000147],[120.37680097700014,14.508205471000094],[120.38160241000006,14.568101304000136],[120.37794030000005,14.60203685100008],[120.36736087300004,14.62075429900014],[120.32642662899998,14.647528387000149],[120.31519616,14.641302802000098],[120.30494225400015,14.640570380000069],[120.29688561300023,14.64484284100017],[120.292246941,14.653753973000107],[120.28541100399998,14.653753973000107],[120.25318444100016,14.69863515800013],[120.24236087300007,14.72964101800015],[120.26091556100008,14.743719794000098],[120.27263431100006,14.747056382000125],[120.26514733200011,14.754584052000085],[120.243907097,14.767035223000095],[120.247325066,14.778062242000148],[120.25538170700015,14.78705475500007],[120.26465905000012,14.795152085000096],[120.27173912900017,14.803941148000149],[120.27767988399998,14.802720445000132],[120.28337649800007,14.806708075000115],[120.28834069100006,14.81476471600014],[120.292246941,14.82566966400013],[120.27572675900015,14.827134507000096],[120.2677514980002,14.829535223000134],[120.26433353000019,14.835353908000085],[120.26335696700018,14.846584377000083],[120.25977623800021,14.85150788000014],[120.25261478000017,14.852606512000179],[120.24073326900022,14.852362372000144],[120.23031660200014,14.85980866100013],[120.22022545700011,14.873358466000097],[120.20932050900002,14.880031643000137],[120.19605553500016,14.866644598000134],[120.20142662900004,14.843085028000106],[120.19711347700003,14.808010158000114],[120.18726647199999,14.774969794000157],[120.17554772200006,14.757391669000128],[120.16179446700018,14.756415106000148],[120.14356530000022,14.76040273600013],[120.12777753999998,14.767035223000095],[120.12094160200016,14.773871161000114],[120.11573326900005,14.785467841000125],[120.090098504,14.794338283000087],[120.07992597700016,14.803941148000149],[120.08822675900015,14.807440497000144],[120.093435092,14.811835028000132],[120.096934441,14.817613023000176],[120.10043379000003,14.82566966400013],[120.09595787900005,14.823472398000133],[120.07992597700016,14.818264065000136],[120.05665123800021,14.893255927000082],[120.0498153000001,14.9312197940001],[120.0568139980002,15.022162177000055],[120.05298912900011,15.062445380000126],[120.01807701900006,15.206122137000177],[120.00831139400022,15.215480861000117],[120.00245201900006,15.219671942000147],[120.00196373800011,15.229437567000092],[120.00489342500012,15.246812242000159],[120.00513756600016,15.269435940000122],[120.00123131600016,15.277411200000172],[119.98064212300002,15.307806708000141],[119.9638778000001,15.34100983300007],[119.95337975400004,15.356390692000103],[119.89698326900012,15.410589911000073],[119.88819420700023,15.42902252800009],[119.89087975399998,15.437445380000058],[119.90544681100002,15.446763414000188],[119.90870201900005,15.452297268],[119.90821373800011,15.461615302000054],[119.90699303500016,15.46865469000012],[119.90186608200005,15.48297760600012],[119.92066491,15.471502997000174],[119.94092858200023,15.475775458000086],[119.95728600400004,15.49144114800005],[119.9638778000001,15.514349677000055],[119.96208743600002,15.521307684000037],[119.95728600400004,15.528876044000086],[119.95167076900024,15.535060940000063],[119.94654381600006,15.537583726000078],[119.94410241000011,15.54254791900003],[119.94174238400015,15.553615627000072],[119.93734785200016,15.565578518],[119.92920983200023,15.57298411700016],[119.92774498800006,15.568670966000084],[119.92237389400012,15.558742580000073],[119.90430748800011,15.597072658000014],[119.90186608200005,15.610256252000156],[119.90455162900005,15.62128327],[119.91765384200019,15.647447007000054],[119.92237389400012,15.66111888199999],[119.91968834700005,15.690334377000125],[119.9025171230002,15.704657294000112],[119.88135826900012,15.71771881700009],[119.8671981130001,15.74306875200004],[119.88941491000004,15.74803294500016],[119.89405358200004,15.763902085],[119.88819420700023,15.805731512000122],[119.89177493600017,15.822984117000132],[119.89625084700019,15.837469794000171],[119.89861087300014,15.853176174000126],[119.89503014400023,15.87400950700011],[119.87891686300006,15.914740302],[119.8671981130001,15.935003973],[119.85401451900023,15.949164130000113],[119.8282983730002,15.955715236000016],[119.81251061300021,15.941880601000106],[119.80014082100003,15.926662502000127],[119.78516686300004,15.928656317000062],[119.78207441499998,15.92479075700008],[119.77084394599999,15.914984442000119],[119.75586998800023,15.944566148000192],[119.75782311300011,16.05898672100001],[119.76026451900022,16.075588283000073],[119.77491295700021,16.117987372000144],[119.77833092500022,16.137844143000066],[119.77515709700016,16.146877346000068],[119.76099694100017,16.162014065000065],[119.75782311300011,16.172267971000096],[119.75570722699997,16.203436591000084],[119.75782311300011,16.216701565],[119.7760522800002,16.280747789000188],[119.78191165500002,16.322251695000162],[119.79078209700016,16.341864325000145],[119.80193118600019,16.357855536000145],[119.81251061300021,16.36749909100011],[119.81706790500017,16.368312893000123],[119.82837975400015,16.366603908000016],[119.83285566500003,16.36749909100011],[119.84961998800017,16.378892320000162],[119.85401451900023,16.38117096600014],[119.87029056100008,16.385402736000074],[119.89161217500023,16.387355861000017],[119.91635175900002,16.380845445000134],[119.92579186300023,16.364976304],[119.92579186300023,16.3451195330001],[119.90186608200005,16.25079987200003],[119.91480553500017,16.24249909100014],[119.96021569100016,16.231431382000025],[119.97022545700023,16.226548570000134],[119.97624759200009,16.218247789000046],[120.00513756600016,16.188421942000062],[120.01514733200023,16.181870835000083],[120.03736412899998,16.182359117000075],[120.05005944100017,16.18085358300003],[120.06153405000012,16.173000393000123],[120.07992597700016,16.154527085],[120.08773847700014,16.157212632000082],[120.09115644600014,16.15346914300015],[120.10043379000003,16.089748440000093],[120.1056421230002,16.06964752800006],[120.11915123800004,16.05573151200015],[120.13884524800012,16.046128648000163],[120.18531334700016,16.03339264500012],[120.2085067070001,16.032660223],[120.22982832100016,16.03729889500012],[120.24781334699999,16.048488674000126],[120.25766035200003,16.05219147300009],[120.292246941,16.055609442],[120.3066512380001,16.04466380400011],[120.29908287900005,16.017401434000035],[120.31137128999997,16.027085679],[120.32276451900017,16.04857005400011],[120.33383222699999,16.05898672100001],[120.34083092500005,16.054877020000063],[120.35254967500018,16.052720445000077],[120.36329186300006,16.05548737200003],[120.36736087300004,16.06582265800013],[120.36101321700019,16.07318756700012],[120.34815514400007,16.07029857000019],[120.33464603000013,16.065252997000144],[120.32642662899998,16.06582265800013],[120.32935631600006,16.079494533000155],[120.36524498800021,16.10871002800009],[120.37419681100006,16.123846747000087],[120.37859134200002,16.134100653000033],[120.39771569099999,16.15403880400011],[120.4021102220001,16.165472723000065],[120.4021102220001,16.20575592700014],[120.39747155000005,16.228989976000076],[120.38550866000004,16.25193919500005],[120.35377037900018,16.291693427000055],[120.35377037900018,16.271307684000178],[120.34864342500006,16.279527085000083],[120.34205162899998,16.28558991100006],[120.33627363400002,16.292181708000143],[120.31218509200019,16.456203518000095],[120.29908287900005,16.493801174000097],[120.3066512380001,16.544989325000028],[120.2978621750001,16.56891510600009],[120.28419030000006,16.592962958000143],[120.27613366000006,16.611883856000148],[120.28541100399998,16.62067291900003],[120.28541100399998,16.616848049000012],[120.28842207100004,16.614569403000033],[120.29525800900002,16.613714911000116],[120.3066512380001,16.613918361000074],[120.3066512380001,16.62067291900003],[120.30144290500019,16.633205471000124],[120.30250084700006,16.654974677],[120.307871941,16.677679755000113],[120.325938347,16.712591864000146],[120.32341556100019,16.73383209800012],[120.31617272200019,16.755804755000057],[120.31218509200019,16.777777411000056],[120.31364993600006,16.799627997000115],[120.31576582100011,16.809271552000084],[120.31959069100012,16.819322007000054],[120.32642662899998,16.830959377000156],[120.33350670700004,16.83698151200015],[120.341563347,16.841945705000015],[120.35059655000012,16.85032786700016],[120.42725670700005,16.96190013200005],[120.43409264400012,16.98212311400009],[120.43628991000017,17.00800202000009],[120.41635175900002,17.179348049000126],[120.4142358730002,17.18431224200016],[120.40430748800011,17.198309637000037],[120.4021102220001,17.206691799000012],[120.40308678500016,17.221625067000147],[120.41236412900007,17.264593817],[120.40821373800006,17.32269928600006],[120.41138756600006,17.328314520000063],[120.42945397200016,17.34756094],[120.43751061300013,17.358832098],[120.44174238400002,17.36798737200017],[120.44336998800023,17.37710195500007],[120.44369550900008,17.388495184000035],[120.43523196700002,17.422796942],[120.40170332099999,17.49701569200012],[120.4021102220001,17.518866278000147],[120.35792076900012,17.53025950700011],[120.34083092500005,17.53876373900006],[120.33383222699999,17.55638255400008],[120.35320071700012,17.67812734600001],[120.36353600400004,17.687160549000012],[120.38477623800011,17.690130927000112],[120.40235436300023,17.696966864000146],[120.41244550900002,17.71283600500008],[120.41667728,17.731024481000148],[120.41635175900002,17.744777736000074],[120.40821373800006,17.759995835000055],[120.39714603000006,17.770738023000163],[120.39128665500019,17.78143952],[120.3986922540001,17.79633209800015],[120.42261803500006,17.823553778000147],[120.42790774800002,17.838120835000083],[120.42945397200016,17.86082591400013],[120.42530358200023,17.90241120000009],[120.42790774800002,17.916652736000103],[120.45167076900023,17.948879299000126],[120.47266686300004,17.991603908000158],[120.47722415500013,18.004828192],[120.47828209700019,18.02179596600017],[120.47681725400001,18.043646552000112],[120.47299238399998,18.064276434000035],[120.46705162900015,18.077134507000054],[120.47006269600014,18.091009833000058],[120.52621504000008,18.20408763199999],[120.52344811300011,18.20254140800013],[120.52027428500006,18.20604075700014],[120.51791425899998,18.21210358300011],[120.51807701900016,18.21771881700012],[120.52084394600004,18.2196312520001],[120.52556399800001,18.22125885600012],[120.52995853000012,18.22353750200007],[120.53191165500007,18.227362372000083],[120.53614342500006,18.239813544000114],[120.56609134200008,18.29222239800016],[120.57911217500023,18.325140692000062],[120.586192254,18.364488023000074],[120.58497155000005,18.405462958000086],[120.57349694100006,18.44306061400009],[120.56177819100006,18.46967194200012],[120.56080162900017,18.48676178600006],[120.57016035199997,18.501776434000092],[120.59050540500019,18.522162177000084],[120.61109459700006,18.53856028900016],[120.62712649800014,18.541489976000022],[120.66968834700018,18.532416083],[120.69068444099999,18.53440989800005],[120.73536217500008,18.54930247599999],[120.75424238400004,18.552923895000063],[120.77084394600016,18.56146881700009],[120.77564537900005,18.581366278000175],[120.7758895190001,18.604315497000144],[120.77898196700008,18.621812242000104],[120.7927352220001,18.6361351580001],[120.81299889400012,18.64451732000005],[120.8342391290001,18.64594147300012],[120.85084069100006,18.638861395000063],[120.86589603000007,18.620306708000054],[120.89185631600006,18.57990143400012],[120.90919030000023,18.567206122000144]]],[[[121.45801842500022,18.88393789300015],[121.46697024800008,18.881781317000147],[121.47779381600006,18.88190338700012],[121.45362389400023,18.865952867000104],[121.43140709700016,18.856146552],[121.40674889400012,18.850816148000106],[121.31861412899998,18.843207098000065],[121.29493248800006,18.846828518000123],[121.27914472700006,18.862005927000112],[121.27523847700003,18.875881252000013],[121.28003991000006,18.880560614000117],[121.29957116000001,18.88190338700012],[121.35328209700018,18.89883047100001],[121.38843834700005,18.902980861000128],[121.41675866000017,18.908148505000053],[121.42986087300008,18.905585028000033],[121.44361412900015,18.895493882000082],[121.45053144600016,18.88841380400011],[121.45801842500022,18.88393789300015]]],[[[121.9607039720001,19.000962632000082],[121.96461022200012,18.991888739000057],[121.97120201900006,18.984930731000176],[121.98365319100017,18.97483958500011],[121.99089603000013,18.96112702000009],[121.98910566500003,18.949123440000065],[121.96257571700006,18.938666083],[121.94239342500023,18.909979559000035],[121.92969811300007,18.895493882000082],[121.89527428500006,18.867661851000108],[121.88103274800004,18.850165106000148],[121.87501061300023,18.83038971600014],[121.86573326900006,18.821926174],[121.84717858200004,18.824367580000125],[121.83415774800021,18.834295966000056],[121.84083092500023,18.848334052],[121.84107506600017,18.868150132000025],[121.86158287900004,18.884019273000135],[121.87484785200014,18.900824286000145],[121.85385175900002,18.923488674000012],[121.86410566500014,18.934637762000122],[121.87159264400012,18.950628973000036],[121.87468509200019,18.96503327000009],[121.87159264400012,18.971258856000034],[121.87916100400015,18.975409247000087],[121.89258873800006,18.996486721],[121.9023543630001,19.005357164000042],[121.90796959699999,19.004584052000112],[121.91504967500018,19.00063711100013],[121.92090905000012,18.99811432500003],[121.92351321700018,19.002020575000028],[121.92660566499997,19.00389232000019],[121.94166100399998,19.010728257000107],[121.94662519600016,19.01219310100008],[121.95582116000004,19.008856512000037],[121.9607039720001,19.000962632000082]]],[[[121.25896243600019,19.045721747000115],[121.24496504000015,19.018459377000013],[121.209239129,19.050238348000065],[121.19678795700011,19.065497137000037],[121.19027753999998,19.087347723000065],[121.1923934250001,19.111721096000124],[121.20818118600008,19.153794664000102],[121.21094811300011,19.176703192],[121.21973717500006,19.171779690000122],[121.22584069100016,19.16620514500012],[121.22982832100014,19.159247137000037],[121.23853600400004,19.11839427299999],[121.25220787900017,19.08128489799999],[121.25896243600019,19.045721747000115]]],[[[121.45240319100006,19.384344794000143],[121.47095787900004,19.382147528000147],[121.48894290500017,19.385931708000083],[121.50424238400015,19.392279364],[121.51661217500005,19.393540757000107],[121.52613366000016,19.38226959800012],[121.52613366000016,19.3348656270001],[121.5251570970001,19.33136627800009],[121.524668816,19.32786692900011],[121.52613366000016,19.320705471000068],[121.53785241000016,19.3067894550001],[121.539805535,19.303371486000074],[121.54086347700014,19.30011627800003],[121.543304884,19.29588450700011],[121.54558353000006,19.290269273000106],[121.54672285199997,19.282863674000126],[121.543304884,19.27887604400014],[121.53516686300004,19.278753973000093],[121.52588951900024,19.279730536000056],[121.51872806100019,19.279120184000092],[121.51270592500006,19.273993231000173],[121.51010175899998,19.26764557500014],[121.5066837900001,19.262152411000116],[121.498301629,19.259263414000188],[121.47095787900004,19.26923248900009],[121.464610222,19.274969794000143],[121.42628014400007,19.29653554900007],[121.42115319100017,19.297919012000037],[121.41391035200004,19.297593492000104],[121.40601647200016,19.298529364],[121.3989363940001,19.303371486000074],[121.39356530000022,19.31122467700005],[121.38160240999999,19.334377346],[121.34986412900017,19.370306708],[121.35084069100004,19.375921942],[121.36768639400023,19.37799713700012],[121.37891686300023,19.38373444200009],[121.39576256600004,19.40326569200006],[121.45240319100006,19.384344794000143]]],[[[121.99789472699997,19.56028880400011],[121.99203535200014,19.54816315300003],[121.98715253999997,19.51312897300012],[121.97803795700011,19.498846747000144],[121.96094811300023,19.491766669000086],[121.94711347700016,19.496771552000112],[121.92351321700018,19.519354559000092],[121.90552819100017,19.52993398600013],[121.89820397200018,19.53676992400007],[121.89551842500005,19.546616929],[121.89682050899998,19.556870835000108],[121.90023847699999,19.55923086100007],[121.90642337300008,19.55866120000009],[121.926524285,19.562567450000085],[121.94157962300002,19.559963283000016],[121.95004316500014,19.56028880400011],[121.95736738400008,19.564113674000126],[121.96949303500017,19.575344143000123],[121.97730553500016,19.577378648000078],[121.98292076900017,19.575344143000123],[121.99122155000022,19.570542710000055],[121.99773196700002,19.564927476000047],[121.99789472699997,19.56028880400011]]],[[[121.86182701900005,20.273749091000028],[121.85084069100004,20.27342357000019],[121.83920332100003,20.320786851000136],[121.83765709700018,20.333929755],[121.8383895190001,20.340765692],[121.84164472700016,20.346014716000084],[121.85938561300021,20.34735748900009],[121.8794051440001,20.333441473],[121.89323978000013,20.313666083000086],[121.89210045700004,20.29734935100005],[121.86931399800008,20.27619049700014],[121.86182701900005,20.273749091000028]]],[[[121.9580184250001,20.3549665390001],[121.93897545700023,20.34870026200015],[121.92212975400004,20.354152736000017],[121.91602623800023,20.375921942000062],[121.92237389400007,20.393296617000047],[121.96371504000003,20.451605536000056],[121.96599368600008,20.46063873900006],[121.98023522200018,20.472967841000113],[121.99789472699997,20.483872789000188],[122.00977623800021,20.48847077000012],[122.01929772200006,20.48647695500007],[122.02759850400004,20.481146552000112],[122.03272545700021,20.473456122000087],[122.03239993600017,20.464056708000086],[122.02654056100008,20.45579661700016],[121.99122155000022,20.432359117000104],[121.96876061300024,20.41339752800009],[121.96371504000003,20.406642971000068],[121.96615644600003,20.393540757],[121.97087649800002,20.386053778000033],[121.97388756600006,20.379299221000096],[121.97120201900006,20.36847565300009],[121.9580184250001,20.3549665390001]]],[[[121.82984459700019,20.69896067900011],[121.80339603000019,20.69114817900011],[121.78638756600006,20.703070380000057],[121.79118899800001,20.73004791900003],[121.80543053500006,20.75897858300011],[121.8237410820001,20.78681061400009],[121.83765709700018,20.82025788000014],[121.84587649800008,20.831366278000147],[121.85580488399998,20.83832428600006],[121.86597741000006,20.838202216000084],[121.87484785200014,20.827826239],[121.87924238400015,20.814032294000082],[121.88070722700004,20.799383856000148],[121.87989342500012,20.784491278000115],[121.87720787900004,20.770331122000087],[121.86768639400023,20.744289455000015],[121.85173587300014,20.71857330900015],[121.82984459700019,20.69896067900011]]],[[[121.93669681100008,21.065619208000058],[121.92969811300007,21.064520575000117],[121.93482506600016,21.073228257],[121.93669681100008,21.065619208000058]]],[[[121.95427493600019,21.11839427300005],[121.94906660199999,21.106878973],[121.94743899800008,21.11615631700006],[121.95069420700011,21.122381903000033],[121.95427493600019,21.11839427300005]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"North Korea","sov_a3":"PRK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"North Korea","adm0_a3":"PRK","geou_dif":0,"geounit":"North Korea","gu_a3":"PRK","su_dif":0,"subunit":"North Korea","su_a3":"PRK","brk_diff":0,"name":"Dem. Rep. Korea","name_long":"Dem. Rep. Korea","brk_a3":"PRK","brk_name":"Dem. Rep. Korea","brk_group":null,"abbrev":"N.K.","postal":"KP","formal_en":"Democratic People's Republic of Korea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Korea, Dem. Rep.","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":9,"pop_est":22665345,"gdp_md_est":40000,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"KN","iso_a2":"KP","iso_a3":"PRK","iso_n3":"408","un_a3":"408","wb_a2":"KP","wb_a3":"PRK","woe_id":23424865,"woe_id_eh":23424865,"woe_note":"Exact WOE match as country","adm0_a3_is":"PRK","adm0_a3_us":"PRK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":15,"long_len":15,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"PRK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.31275475400017,37.74140045800008],[125.29574628999998,37.72760651200018],[125.26937910199999,37.714097398000106],[125.26099694100006,37.70742422100015],[125.246836785,37.6998558610001],[125.22632897200006,37.696356512000094],[125.22055097699999,37.7037621110001],[125.25017337300002,37.73167552300013],[125.26433353000007,37.73720937700015],[125.27458743600019,37.73383209800012],[125.277110222,37.740464585],[125.27947024800007,37.74941640800012],[125.28484134200014,37.7494977890001],[125.28744550900002,37.75067780200014],[125.2887475920002,37.75364817900005],[125.29273522200016,37.75543854400003],[125.29932701900017,37.75617096600017],[125.32878665500007,37.76666901200004],[125.33773847700014,37.768703518000066],[125.31275475400017,37.74140045800008]]],[[[125.15626061300004,37.786688544000114],[125.14771569100006,37.78558991100006],[125.14283287900015,37.794134833000086],[125.14136803500006,37.79950592700013],[125.14649498800023,37.8022321640001],[125.16618899800008,37.81370677300005],[125.1838485040001,37.81883372600008],[125.18848717500012,37.819077867000104],[125.19141686300023,37.81549713700004],[125.19288170700011,37.81110260600015],[125.19027754000004,37.809027411000116],[125.1850692070001,37.80817291900003],[125.17172285199997,37.79718659100017],[125.15626061300004,37.786688544000114]]],[[[125.04460696700019,37.824611721000124],[125.04175866000017,37.81728750200004],[125.03956139400006,37.81761302300005],[125.036387566,37.81745026200018],[125.025645379,37.808294989],[125.01587975400017,37.80565013200011],[125.00505618600008,37.80556875200013],[124.99773196700009,37.80841705900018],[124.99781334700005,37.81305573100009],[125.00261478,37.81541575700005],[125.00684655000022,37.81928131700006],[125.01197350400015,37.82184479400017],[125.01905358200021,37.820298570000126],[125.02540123800016,37.81785716400019],[125.02849368600008,37.81883372600008],[125.02947024800018,37.822984117000104],[125.03012129000015,37.82510000200001],[125.0278426440001,37.83002350500008],[125.03044681100019,37.836167710000055],[125.04078209700012,37.83445872600005],[125.04460696700019,37.824611721000124]]],[[[124.8834741550002,38.528550523000106],[124.90040123800011,38.505316473],[124.90398196700008,38.49437083500011],[124.86109459700018,38.50385163000014],[124.84083092500008,38.51068756700015],[124.822032097,38.522365627000156],[124.79948978000007,38.508490302000055],[124.79029381600016,38.51740143400009],[124.7944442070001,38.53392161700016],[124.83220462300008,38.553045966000134],[124.84424889400005,38.555161851000044],[124.84937584700018,38.54588450700011],[124.8657332690001,38.54148997600011],[124.87720787900017,38.536322333000115],[124.8834741550002,38.528550523000106]]],[[[124.60661868600006,39.42804596600014],[124.60206139400023,39.42739492400001],[124.59603925900004,39.43024323100006],[124.59310957099999,39.439032294000114],[124.59286543100004,39.446804104000115],[124.6017358730002,39.44932689000002],[124.61255944100012,39.45713939000002],[124.61443118600008,39.44920482000005],[124.61508222700006,39.44749583500005],[124.61784915500019,39.444281317],[124.61906985800007,39.433010158000016],[124.60661868600006,39.42804596600014]]],[[[124.70484459700006,39.50873444200009],[124.69776451900005,39.5025902360001],[124.68458684400015,39.50324259200006],[124.68014891200009,39.50772570800011],[124.68376890000009,39.51609442100012],[124.68197362300022,39.52117962300004],[124.6876733730002,39.52716705900012],[124.69361973900006,39.53507889100014],[124.70470809100001,39.53707637000004],[124.70777906000004,39.53039912400003],[124.70774642500018,39.51931702800012],[124.70484459700006,39.50873444200009]]],[[[124.69125410199997,39.569647528000175],[124.69809004000004,39.56289297100015],[124.69564863400008,39.55377838700015],[124.68702233200004,39.544745184000064],[124.675547722,39.53851959800009],[124.66163170700023,39.53839752800012],[124.64478600400004,39.54767487200017],[124.60352623800011,39.53851959800009],[124.60035241000006,39.536200262000115],[124.59587649800007,39.53790924700002],[124.59742272200012,39.5445824240001],[124.604665561,39.549261786],[124.61426842500013,39.55341217700013],[124.63086998800016,39.56509023600013],[124.635020379,39.5639509140001],[124.64877363400002,39.56525299700009],[124.67383873800011,39.570624091000134],[124.69125410199997,39.569647528000175]]],[[[124.88318229400015,39.52747023900015],[124.86166425900015,39.507635809000035],[124.84265555800008,39.50516249800004],[124.81856313900008,39.495444054000174],[124.83692719500011,39.52093903000004],[124.84981631800022,39.51653379100004],[124.85697023600008,39.527898939000075],[124.84277262900017,39.538425779000065],[124.8450073160002,39.54317623500019],[124.85658815600019,39.544227939000066],[124.85704955600025,39.548302525000125],[124.85973830100014,39.55313868900008],[124.85440967000012,39.55657703300007],[124.85447530500008,39.573754186000045],[124.87052236500001,39.58093363400015],[124.86970632800004,39.59565681500014],[124.88176886300006,39.603869488000115],[124.88047098200003,39.61245477199999],[124.89919306000004,39.61412435300004],[124.92674098600006,39.60478642900012],[124.92222659900008,39.59828886200013],[124.9096736010001,39.593553532],[124.9202536520002,39.572278154000124],[124.93360925600003,39.550543045000055],[124.91209231600006,39.54080307800011],[124.88318229400015,39.52747023900015]]],[[[124.22739722100019,39.794640480000126],[124.22601537000016,39.791422867000094],[124.2231893720001,39.791556723000056],[124.22120143400004,39.79383960200011],[124.21609840900011,39.79471122200011],[124.21166218600014,39.795157408000094],[124.21153335300008,39.79557264600008],[124.21131598900003,39.79950501100011],[124.21258842700016,39.804049196000115],[124.21465084700017,39.807242025000065],[124.21927271100004,39.81092158300014],[124.21757453200016,39.81486426400012],[124.22027210100023,39.81526030100012],[124.2231159830001,39.81678833500017],[124.22099393599997,39.81897397199999],[124.22342567800004,39.819987174000154],[124.2270654150001,39.821298303],[124.2300174870002,39.821171938000035],[124.23189581799998,39.819198563],[124.2344328190002,39.817628324000125],[124.23586068300001,39.81348166800005],[124.23988654900008,39.81262262000011],[124.23958636300019,39.809830802000036],[124.23956104000015,39.80765715500003],[124.24278750000022,39.807321395000066],[124.24275057200005,39.8046328410001],[124.24162706000011,39.80185608100011],[124.23783526200006,39.80096738200005],[124.23525982000015,39.79838581100013],[124.23039032100021,39.79826061700008],[124.22739722100019,39.794640480000126]]],[[[129.99571333800012,42.96190073600009],[130.0082190350001,42.96055714900002],[130.04728641800003,42.96190073600009],[130.0943119720001,42.97693857800009],[130.12149377400024,42.981847840000015],[130.13358606000023,42.97272695000014],[130.130485474,42.95947194500003],[130.12252730300023,42.94332306000014],[130.1115719000001,42.929060364000165],[130.09875614500018,42.92151560500012],[130.14040734900018,42.90712371900009],[130.19384078000022,42.90820892300008],[130.23900598200012,42.90224029600007],[130.25647261600014,42.866893616000155],[130.24220992100007,42.78201507600003],[130.2430367430001,42.74336110500012],[130.26267378700013,42.708608704000156],[130.31714074800013,42.66739674899999],[130.3247888590001,42.65029185000013],[130.39300175000014,42.60623769200005],[130.4039571540002,42.604067281000155],[130.4127421470001,42.604635722000026],[130.42049361200012,42.60427398700004],[130.42772831200006,42.59936472700009],[130.4300020750001,42.59148407000005],[130.4263847250002,42.57210540800018],[130.43124231000004,42.561511739000096],[130.452533,42.54934194000002],[130.4679325770002,42.55489715600011],[130.47103316300004,42.56975413000005],[130.45511682200012,42.58515370700003],[130.4678292240001,42.600398254000154],[130.48415897600003,42.61001007099999],[130.50141890500018,42.6107852170001],[130.51650842300003,42.59936472700009],[130.51950565600012,42.58859019000006],[130.52519006400016,42.54923858700006],[130.5307711190001,42.53048004200014],[130.54265669800012,42.510532939000036],[130.54451704900012,42.506295472000104],[130.54606734300003,42.4952883910001],[130.54989139900024,42.49037913100007],[130.5547489830001,42.48761444100002],[130.55877974500018,42.482705181000185],[130.57562626200016,42.445730693000044],[130.58740848900007,42.43201060000003],[130.6059086510002,42.42061594700011],[130.62854292900013,42.41480234800004],[130.64580285700012,42.40087554900005],[130.6566549070001,42.38325388600008],[130.66058231600007,42.359198507000045],[130.66027225800013,42.333928732000075],[130.66275272600004,42.32057037400013],[130.6728813080001,42.31113942500018],[130.69996178500006,42.29511139500015],[130.69555680600016,42.28900141200016],[130.6671288350001,42.28309217300007],[130.63157671200017,42.274397068000056],[130.61662071100002,42.27231829],[130.60382311000004,42.26326024000017],[130.59754438100018,42.26278024500006],[130.598480665,42.28095123900012],[130.5976668630001,42.29193756700009],[130.59498131600006,42.298163153000026],[130.58204186300011,42.307928778000175],[130.56936639700018,42.31525907200013],[130.54050135200012,42.31837065700002],[130.5190525490001,42.327602855000166],[130.5101895030001,42.33577952100008],[130.48068389600007,42.339752116000156],[130.46565258500019,42.33475247000011],[130.46939604800005,42.322074715000085],[130.45645952900009,42.311768735],[130.4400980630002,42.30912830600012],[130.4318388400001,42.3181245760001],[130.41915868400022,42.324398259000034],[130.40744972100018,42.324577343000115],[130.40699303500006,42.315741278000175],[130.4058537120001,42.30711497600008],[130.39399883200022,42.2999523430001],[130.38415748600002,42.29119457900008],[130.3863224620002,42.27765534100008],[130.38624108200023,42.270656643],[130.39112389400012,42.264105536000116],[130.39926191500004,42.263169664000046],[130.4058537120001,42.26080963700017],[130.40601647200006,42.249579169000086],[130.40088951900023,42.24249909100003],[130.3933211600001,42.24408600500006],[130.37818188000008,42.25785471500002],[130.36799186900006,42.25568678900005],[130.36065517800003,42.24366393900014],[130.36983713100005,42.23201097700017],[130.35882866500017,42.22927234200016],[130.35150542300008,42.216082705000034],[130.3350573960001,42.21399916400004],[130.3306446630001,42.191508042000024],[130.31876991400011,42.184730392000134],[130.30702563300022,42.18315395899999],[130.3081599320001,42.197594767000155],[130.31563515800005,42.21888303900003],[130.30741757800016,42.23629503800008],[130.29418223200017,42.237044681],[130.25136340200018,42.20529093600011],[130.22898561200023,42.18245195499999],[130.2149357430001,42.17462799700003],[130.2022739170002,42.17355132400003],[130.20428617100018,42.15964419400008],[130.1993107430001,42.10130442899999],[130.19385826900023,42.10097890800007],[130.18531334700003,42.10390859600001],[130.1739201180001,42.098781643000095],[130.1602482430002,42.08510976800015],[130.16358483200017,42.08348216400013],[130.16659589900004,42.077093817],[130.15943198300008,42.07283755200011],[130.1501082010001,42.07410346500002],[130.13319825000022,42.084718682000116],[130.12006878000003,42.09008135200018],[130.0927716450001,42.089810624000066],[130.0730405090001,42.07845867200014],[130.06795501000013,42.05941382700008],[130.0670147070001,42.05189864700018],[130.05222157100016,42.050364513000076],[130.04971177100006,42.042287515000126],[130.04490766099997,42.03597565800014],[130.03646983500008,42.01162370600018],[130.03387925300004,41.99551398800004],[130.0268167190002,41.99269952200014],[130.01495011500006,42.01440370300007],[130.00288397100007,42.01091176300015],[130.00129707400006,41.99046615000018],[129.98218834700006,41.982652085000055],[129.98902428500017,41.9781761740001],[129.99415123800003,41.97304922100007],[130.0026961600001,41.96222565300009],[129.99293053500003,41.959784247000144],[129.98560631600006,41.955267645],[129.97486412900003,41.941636460000055],[129.97828209700006,41.94379303600005],[129.97567793100004,41.93398672100004],[129.97103925900004,41.92206452000009],[129.9685978520001,41.91746653900004],[129.964691602,41.89874909100017],[129.95443769600016,41.892035223000114],[129.94678708800004,41.89493518300016],[129.93739352300005,41.90389781000012],[129.91362039900005,41.91119524800003],[129.896740032,41.90426298000013],[129.89039147200018,41.88300202000011],[129.8833927740001,41.85740794500005],[129.88453209700006,41.82416413000014],[129.8696523050002,41.79145665300008],[129.85517127100016,41.781791880000135],[129.85246022300012,41.76492342800013],[129.84281272100006,41.75878307800009],[129.826545998,41.77844638800009],[129.81331498300003,41.77773323300006],[129.77475988900008,41.75941719500018],[129.76278730600018,41.73102448100009],[129.74976647200006,41.69627513200014],[129.74136054600015,41.68401763900006],[129.71501861100003,41.67533690000009],[129.69082256400006,41.649715773000175],[129.68318499900025,41.617720114000136],[129.669408878,41.57595944900014],[129.64879790700016,41.549402728000175],[129.66065514400023,41.52594635600015],[129.65772304300012,41.509238682],[129.65272983900013,41.49412400400014],[129.65940316200013,41.46464743500009],[129.68167775700024,41.44308426500013],[129.70166987900006,41.42866567100013],[129.71460278400016,41.41964601000008],[129.73605572900024,41.421286228],[129.74415079600007,41.406962770000135],[129.75818397200007,41.39259418000001],[129.76929772199998,41.386175848],[129.77564537900005,41.38548411700005],[129.79110761800004,41.38776276200004],[129.79664147200018,41.386175848],[129.80616295700005,41.37604401200004],[129.80518639400012,41.372788804],[129.7998966810002,41.368597723000065],[129.79664147200018,41.3554548200001],[129.79468834700006,41.35228099200005],[129.78687584700006,41.33006419499999],[129.78614342500012,41.32477448100009],[129.77035566500015,41.31513092700013],[129.75912519600016,41.29287344000009],[129.71957441500004,41.16693756700012],[129.71192467500006,41.122626044000086],[129.72828209700012,41.08515045800006],[129.72201582100016,41.07184479400006],[129.71981855600004,41.05621979400014],[129.7207951180002,41.02366771],[129.72828209700012,40.978705145],[129.7325138680002,40.96893952000015],[129.75082441499998,40.95172760600003],[129.76489138300022,40.94441440600015],[129.75557436799997,40.93896967200014],[129.7492294050002,40.91701046800007],[129.75299654700018,40.909939743000095],[129.7342720730002,40.89110180800019],[129.7373431130002,40.871455785000116],[129.72521883400023,40.84781770100007],[129.71655794700018,40.8345855810001],[129.70608701000018,40.835661468000026],[129.6983567100001,40.84560622300013],[129.68455962900023,40.84182943600011],[129.66285241000006,40.83877187700007],[129.64392208600023,40.841618462000056],[129.62616679600004,40.83831245500009],[129.60980304500012,40.84092948700008],[129.59796755400023,40.838541143000086],[129.57177252600016,40.83971629700015],[129.55394109300008,40.82893169],[129.5510509530002,40.8101174210001],[129.53199733800014,40.807277312000124],[129.51808142200017,40.79546708200011],[129.50624007600007,40.79207435600016],[129.47652919900014,40.793877798000054],[129.4269541460001,40.781295643000036],[129.38918690000017,40.76075956100006],[129.35168657900024,40.74534319300001],[129.33975647200006,40.734430214000085],[129.32782972800013,40.71812813200001],[129.3112103670002,40.68747198900017],[129.30323326900017,40.67365143400009],[129.296153191,40.67625560099999],[129.2866317070001,40.68357982],[129.27791677000008,40.6980372140001],[129.27013756500017,40.70798012800016],[129.25315679700006,40.709131856000155],[129.23348208400014,40.705713549],[129.21770310100013,40.69635326300012],[129.21239276700013,40.68595193600008],[129.2064264210002,40.675546457000124],[129.20638642700024,40.670088909000114],[129.20699478900022,40.66363163400017],[129.20170902700013,40.656207153000125],[129.20036229600007,40.65075309000004],[129.19776451900006,40.63800690300003],[129.19336998800011,40.63263580900018],[129.19052168100004,40.62250397300012],[129.1870497470002,40.61653527100019],[129.1791653390002,40.60959949800018],[129.17455523000015,40.60366016500008],[129.17367597700013,40.593451239000146],[129.1726180350001,40.568915106000034],[129.16123496800014,40.56554866300003],[129.15531158300007,40.55663459000003],[129.15089908300004,40.54589673600019],[129.11506552400024,40.511164886000174],[129.07756443800022,40.472565003000014],[129.03011562100002,40.47397022500011],[128.97581217399997,40.459933038000045],[128.89975513100003,40.398164928000185],[128.86053200500007,40.37184836700011],[128.83053350100008,40.36738732600013],[128.81356723100023,40.35497991900009],[128.7809742750001,40.34702548300008],[128.76404237400004,40.34653026500014],[128.75200487400016,40.335095472000106],[128.721644705,40.33894706100001],[128.68780752700005,40.331196581000185],[128.66966869500007,40.31077089700009],[128.65665543100025,40.31076253100012],[128.65534028200014,40.32017698400013],[128.6364886420001,40.31321656500002],[128.61894776000022,40.29733080700005],[128.6164465080001,40.27144281200019],[128.62879174100024,40.26600875600015],[128.6567218280001,40.25714038800011],[128.6606298520002,40.247721506000076],[128.66777968400018,40.24030859800011],[128.66259900900016,40.225413382],[128.66456139400006,40.20123932500012],[128.6509310810002,40.19714769700015],[128.6418473060002,40.19069285100012],[128.634713206,40.184238817],[128.62887528100023,40.180265716000164],[128.62173228900022,40.18075552900011],[128.60810291600015,40.185701989],[128.58861121900023,40.186672799000135],[128.57760718600005,40.1802114100001],[128.54319885000004,40.16676701200008],[128.53609346200003,40.15137544600013],[128.52768092400007,40.14342372000006],[128.51018915700016,40.13545597100001],[128.4797994200002,40.134748641000115],[128.46626632500013,40.124373526000014],[128.44856299200003,40.10950008800013],[128.43494602900003,40.10400188800004],[128.41138756600017,40.096380927],[128.39184390500023,40.09957747700015],[128.36476484100004,40.09689011500002],[128.33776517800015,40.06704791100018],[128.32775258900003,40.028216411000145],[128.30209394600016,40.03343333500005],[128.2801320520001,40.06547653600002],[128.26344363100011,40.077104998],[128.23632157100005,40.067904293000154],[128.227837237,40.056206037],[128.23438561300023,40.02936432500009],[128.22510826900003,40.02757396000011],[128.2032169930002,40.029608466000056],[128.1933699880001,40.02936432500009],[128.18238366000017,40.02610911700005],[128.16431725400005,40.017971096000124],[128.15512129000015,40.01630280200011],[128.14682050899998,40.01829661700005],[128.14356530000023,40.0228539080001],[128.13941491,40.02732982000007],[128.00684655000006,40.04515208500014],[128.00228925900015,40.040472723000114],[128.00098717500023,40.025946356000176],[127.99781334700018,40.02041250200007],[127.98975670700023,40.01483795800006],[127.97982832100003,40.010565497000144],[127.9705509770001,40.00885651200004],[127.96371504000014,40.00409577000015],[127.94727623800006,39.98163483300014],[127.94003339900016,39.97475820500013],[127.9302677740001,39.97190989799999],[127.90665933500011,39.98394236600011],[127.89103838900009,39.96122529000006],[127.89126291,39.94383111700013],[127.88404381600012,39.90208567900005],[127.87460371200011,39.892808335],[127.78183027400004,39.88540273600002],[127.7963973320001,39.87563711100007],[127.79403730600019,39.86566803600009],[127.76243847200023,39.85353432000012],[127.72738250700016,39.85718861400015],[127.69574959500018,39.84820085000008],[127.6796285170001,39.816438696000105],[127.66329100900023,39.80680065900005],[127.64869940600013,39.82089715600013],[127.62374852100018,39.83093531800007],[127.60718834700016,39.810248114],[127.59302819100006,39.80621979400002],[127.5760197270001,39.79629140800013],[127.56185957100014,39.78400299700017],[127.54940839900016,39.76105377800009],[127.52084394600014,39.74697500200013],[127.51441491000006,39.738592841000084],[127.51246178500011,39.73110586100002],[127.50375410200004,39.71552155200011],[127.50131269600014,39.70722077000015],[127.50171959700018,39.69847239800007],[127.50635826900012,39.68378327000006],[127.5085555350001,39.66006094000006],[127.51221764400023,39.64948151200009],[127.51856530000008,39.644842841000084],[127.52808678500017,39.64581940300015],[127.55274498800006,39.636786200000145],[127.5703231130001,39.61786530200011],[127.57455488400002,39.59503815300012],[127.53676992700017,39.55201246400004],[127.52043931200015,39.51046513300009],[127.53541100400017,39.44375234600004],[127.5629988940001,39.34373607000008],[127.56210371200021,39.316229559000035],[127.55445397200018,39.30597565300009],[127.5434676440001,39.30194733300014],[127.53183027400021,39.305121161],[127.52182050900004,39.316229559000035],[127.52059980600019,39.329413153000175],[127.52694746200014,39.34422435100005],[127.5422469410001,39.371486721000124],[127.50757897199999,39.409247137000094],[127.50399824300004,39.42283763200005],[127.4951278000001,39.43341705900012],[127.48292076900023,39.43699778900016],[127.46998131600004,39.429754950000145],[127.44044030000023,39.407863674000126],[127.4380802740002,39.40517812700013],[127.43100019600014,39.39728424700017],[127.42554772199999,39.392523505000085],[127.37842858200011,39.378851630000135],[127.37842858200011,39.371486721000124],[127.38990319100004,39.36701080900018],[127.41407311300017,39.36180247599999],[127.42554772199999,39.35712311400006],[127.43783613400015,39.36424388200011],[127.45386803500006,39.367987372000144],[127.46753991000017,39.36383698100012],[127.47339928500004,39.34756094000009],[127.46680748800016,39.340155341000084],[127.43539472700003,39.33478424700003],[127.42554772199999,39.330471096000124],[127.42025800900004,39.33637116100006],[127.41456139400022,39.34064362200017],[127.40829511800008,39.34324778900016],[127.40137780000012,39.34414297100007],[127.39193769599997,39.34186432500008],[127.39267011800021,39.33641185100005],[127.3969832690001,39.32965729400003],[127.39828535200004,39.323675848],[127.38672936300011,39.297186591000056],[127.37842858200011,39.268988348000065],[127.37202988300011,39.24042604300017],[127.38290449300008,39.22199127800003],[127.39340254000015,39.201727606000034],[127.40853925900015,39.193304755000085],[127.42017662900004,39.18919505400014],[127.44125410200016,39.17084381700009],[127.4522404310002,39.16596100500003],[127.47193444100016,39.16828034100017],[127.47608483200011,39.17706940300003],[127.47364342500005,39.18716054900001],[127.47339928500004,39.193304755000085],[127.49130293100009,39.194891669000114],[127.51172936300016,39.15643952],[127.53174889400023,39.1461449240001],[127.60694420700021,39.15204498900012],[127.63168379000004,39.1461449240001],[127.64307701900017,39.13857656500015],[127.65170332100016,39.12929922100009],[127.66138756600007,39.12148672100001],[127.67562910200004,39.11815013200008],[127.74415123800006,39.118597723000065],[127.75928795700004,39.117010809000035],[127.7696232430001,39.10919830900003],[127.7925724620001,39.07754140800007],[127.82374108200015,39.04303620000014],[127.83033287900005,39.03286367400001],[127.83651777400009,39.01850006700012],[127.85157311300011,39.00141022300009],[127.88550866000016,38.974188544000086],[127.88868248800023,38.96137116100006],[127.89291425900015,38.95746491100006],[127.90219160199999,38.96393463700015],[127.9087020190001,38.96718984600001],[127.91431725400011,38.96417877800009],[127.91822350400011,38.95774974200018],[127.92147871200017,38.94232819200006],[127.92628014400022,38.93447500200007],[127.93384850400015,38.92865631700012],[127.94361412900001,38.926418361000124],[127.96176191500003,38.91791413000011],[127.99545332100003,38.87531159100017],[128.01465905000006,38.85814036700005],[128.09115644600016,38.84373607],[128.210215691,38.727728583000115],[128.22510826900003,38.732326565000065],[128.27035566499998,38.75165436400009],[128.2828068370002,38.755072333],[128.31324303500017,38.71723053600006],[128.32105553500017,38.711411851000015],[128.338145379,38.703558661000116],[128.34766686300011,38.696722723],[128.35962975400005,38.67865631700009],[128.35995512006153,38.67536197700632],[128.35995527400001,38.67536041900014],[128.36133873800023,38.660711981000034],[128.36036217500018,38.642767645000085],[128.36459394599999,38.624741929000045],[128.3649194670002,38.62433502800015],[128.36492222296098,38.62433075897492],[128.30837447200022,38.601340027],[128.28108931500012,38.58441599600009],[128.27478479000004,38.57149688700018],[128.2769552010001,38.554056091000135],[128.28543013600017,38.51984629300015],[128.28108931500012,38.4843704230001],[128.26806685400018,38.45351959300005],[128.24873986800006,38.42576934800009],[128.22558882700005,38.399776103000036],[128.17236210200016,38.355954489000126],[128.1084900310001,38.3235016890001],[128.03986372900025,38.304278056000086],[127.97175419200008,38.30004058900012],[127.86685103400018,38.30484649700004],[127.80075687700011,38.29391693200007],[127.78701094600008,38.29668162000003],[127.77471195500013,38.30644846600008],[127.76194787700014,38.32096954300012],[127.75373132300004,38.32536204100002],[127.56082320200018,38.31208119700001],[127.50206709900024,38.29807688400011],[127.47193973800009,38.295906474],[127.37711348500002,38.31851491300016],[127.2538135180001,38.31003997800015],[127.22198083500014,38.312701315000155],[127.15748864800004,38.30722361300017],[127.0904643150002,38.28585540800016],[127.0267472740002,38.254461976000144],[126.97191857900012,38.21890859000008],[126.96606463600007,38.213038016],[126.95372847500009,38.20066681000013],[126.94013424700007,38.174172571],[126.91982873600014,38.134598491000176],[126.90334395400018,38.119586487],[126.8647933350002,38.096022034],[126.84732670200005,38.0820177210001],[126.76190555800022,37.97900075300011],[126.7221147060002,37.953937683],[126.69632816600013,37.94618621900018],[126.67782800300019,37.94458424900016],[126.66578739500015,37.93763376900016],[126.66051639800011,37.91381093400018],[126.66745892690015,37.827810161200105],[126.66700280000022,37.82758209800012],[126.65577233200023,37.814520575000145],[126.651621941,37.799261786],[126.6421004570001,37.798000393000095],[126.62079930408746,37.78771567581926],[126.62077884200008,37.78770579600017],[126.59327233200011,37.774400132000046],[126.57618248800006,37.77753327000012],[126.43661543100009,37.84837474200013],[126.42847741000006,37.854193427000084],[126.40430748800021,37.88715241100006],[126.39771569100017,37.891750393000095],[126.37867272200018,37.88959381700009],[126.35800214900004,37.88434479400011],[126.27955162900004,37.85126373900006],[126.25953209700006,37.84544505400011],[126.23690839900009,37.84332916900008],[126.19996178500006,37.84422435099999],[126.17847741,37.84052155200014],[126.1582137380001,37.82965729400014],[126.14918053500016,37.82217031500009],[126.14771569100007,37.819037177000105],[126.14975019600014,37.81525299700009],[126.15284264400024,37.7997093770001],[126.15967858200017,37.778876044000114],[126.16537519600014,37.768255927000084],[126.16431725400017,37.75462474200013],[126.1612248060002,37.74066803600006],[126.1582137380001,37.73346588700012],[126.11036217500006,37.740912177],[126.09693444100017,37.78139883000013],[126.08692467500012,37.80036041900006],[126.07211347700004,37.799261786],[126.06283613400008,37.8022321640001],[126.05860436300023,37.82469310100011],[126.0557560560002,37.87059153900018],[126.02613366000018,37.853664455000015],[126.01278730600004,37.854315497000144],[126.00733483200011,37.87433502800012],[126.00074303500006,37.88556549700003],[125.9859318370001,37.89838288000006],[125.9698185560002,37.90867747600008],[125.9594832690001,37.912176825000145],[125.94410241000004,37.90192291900003],[125.95053144600016,37.88934967700013],[125.9646102220001,37.87864817900011],[125.97250410200016,37.87433502800012],[125.97445722700004,37.86416250200007],[125.9836531910001,37.83710358300014],[125.98617597700004,37.822821356000034],[125.97787519600004,37.829331773000135],[125.96713300900004,37.83543528900013],[125.95590254000004,37.84031810099999],[125.94589277400021,37.84332916900008],[125.93336022200005,37.8446312520001],[125.927012566,37.84398021000014],[125.92164147200006,37.84487539300012],[125.91163170700004,37.850775458000086],[125.8955184250001,37.86481354400002],[125.84546959700016,37.92649974200005],[125.84107506600017,37.93634674700017],[125.8349715500001,37.943548895],[125.81128991000017,37.94757721600016],[125.80518639400012,37.95156484600015],[125.802500847,37.958929755000135],[125.80176842500006,37.97020091400013],[125.80396569100017,37.988959052],[125.79932701900022,37.99290599200015],[125.78419030000023,37.99408600500003],[125.77377363400016,37.99607982000005],[125.7563582690001,38.00507233300006],[125.74659264400023,38.00775788000014],[125.70517011800015,38.00934479400017],[125.68734785200014,38.01227448100009],[125.64730879000004,38.02728913000011],[125.62216230600004,38.031927802000055],[125.59693444100017,38.032212632],[125.57894941500017,38.02513255400011],[125.5782169930002,38.00901927300005],[125.59652753999997,37.99225495000003],[125.62142988400002,37.97898997600002],[125.64071699300003,37.97361888200013],[125.67538496200014,37.97760651200012],[125.68531334700005,37.972113348000086],[125.67831464900003,37.952541408000016],[125.68881269600004,37.95604075700011],[125.69898522200016,37.958197333000115],[125.70883222699997,37.95742422100009],[125.71933027400003,37.952541408000016],[125.70753014400012,37.93976471600017],[125.69882246200021,37.92523834800012],[125.71753991000016,37.92527903900013],[125.72518964900021,37.9274763040001],[125.73292076900012,37.93268463700012],[125.73975670700023,37.92523834800012],[125.72779381599999,37.915920315],[125.7153426440001,37.908270575000145],[125.70150800899998,37.902492580000015],[125.6850692070001,37.898586330000015],[125.6689559250001,37.89915599200015],[125.6570744150001,37.90582916900003],[125.64551842500022,37.915472723],[125.63062584700018,37.92523834800012],[125.62745201900022,37.90216705900018],[125.63681074300004,37.87864817900011],[125.64120527400016,37.85639069200006],[125.62305748800023,37.83710358300014],[125.63778730600013,37.82534414300015],[125.64413496200008,37.822821356000034],[125.6401473320001,37.81342194200012],[125.63355553499999,37.80955638200011],[125.61353600400005,37.80914948100009],[125.60922285200016,37.80630117400006],[125.611094597,37.79975006700008],[125.61695397200006,37.788723049000126],[125.62037194100016,37.77411530200011],[125.62012780000012,37.765326239000146],[125.61353600400005,37.761379299000154],[125.60279381600004,37.761786200000145],[125.5930281910001,37.76361725500014],[125.58399498800011,37.76752350500014],[125.57520592500012,37.774400132000046],[125.57935631600016,37.77667877800012],[125.58008873800011,37.777655341000084],[125.58041425900002,37.77879466400013],[125.58277428500017,37.78188711100002],[125.57056725400011,37.787095445000105],[125.55958092500022,37.78774648600016],[125.55160566499997,37.78270091400013],[125.54859459700018,37.77130768400014],[125.54184004000015,37.77045319200006],[125.52890058700014,37.77252838700018],[125.52051842500005,37.78017812700001],[125.52759850400005,37.796128648000106],[125.5035099620002,37.77879466400013],[125.49097741000001,37.75405508000016],[125.4746199880001,37.73118724200005],[125.43873131599999,37.71979401200018],[125.40365644600003,37.719061591000134],[125.38526451900005,37.71637604400017],[125.37728925900002,37.710150458000115],[125.3726505870001,37.69354889500006],[125.36158287900015,37.68008047100007],[125.34750410200004,37.67560455900012],[125.33505293100019,37.68626536700005],[125.34864342500023,37.73798248900009],[125.36378014400022,37.760891018000066],[125.39039147200016,37.754543361000124],[125.44491621200011,37.774400132000046],[125.42945397200006,37.781561591000084],[125.39511152400009,37.77643463700018],[125.37728925900002,37.78188711100002],[125.389903191,37.796128648000106],[125.41098066500003,37.809393622000144],[125.43490644599999,37.819037177000105],[125.45582116000006,37.822821356000034],[125.50513756600004,37.813177802000084],[125.52418053500004,37.817816473],[125.52759850400005,37.84332916900008],[125.51083418100019,37.83771393400009],[125.49732506600006,37.839667059000035],[125.48666425900004,37.84707265800013],[125.47909589900004,37.85761139500009],[125.50863691500004,37.88373444200015],[125.51010175899998,37.89427317900011],[125.48316491000004,37.898586330000015],[125.46387780000005,37.904120184000035],[125.4550887380001,37.91461823100009],[125.44564863400004,37.92039622600005],[125.42440839900021,37.912176825000145],[125.42750084700012,37.90835195500013],[125.43002363400004,37.90200429900001],[125.43189537900015,37.898586330000015],[125.40626061300011,37.89862702],[125.39454186300023,37.89667389500015],[125.38355553500016,37.891750393000095],[125.4028426440001,37.88556549700003],[125.42798912900011,37.87449778900016],[125.44629967500023,37.86001211100013],[125.44491621200011,37.84332916900008],[125.42628014400005,37.85602448100014],[125.39966881600004,37.86546458500008],[125.37183678500017,37.86912669500013],[125.34937584700016,37.86440664300004],[125.35401451900012,37.85700104400003],[125.36036217500023,37.8510602890001],[125.36801191500014,37.84662506700012],[125.37728925900002,37.84332916900008],[125.34595787900015,37.822577216000084],[125.32667076900023,37.81297435100011],[125.30836022200016,37.80914948100009],[125.30909264400012,37.81110260600015],[125.30811608200021,37.81549713700004],[125.30543053500004,37.82021719000015],[125.30103600400015,37.822821356000034],[125.239512566,37.822821356000034],[125.25171959700019,37.83783600500006],[125.29493248800006,37.85984935100008],[125.30836022200016,37.87807851800015],[125.30062910200016,37.89520905199999],[125.25709069100004,37.91461823100009],[125.26002037900015,37.93268463700012],[125.24008222700017,37.92959219000012],[125.22852623800023,37.91522858300006],[125.21957441500004,37.89671458500014],[125.20850670700013,37.881170966000056],[125.19312584700006,37.87177155200011],[125.17660566500015,37.86762116100009],[125.15821373800021,37.86758047100009],[125.10035241,37.875067450000145],[125.08936608200015,37.87807851800015],[125.06210371200008,37.89614492400006],[125.05152428499999,37.898586330000015],[125.02938886800021,37.90009186400006],[125.0131942070001,37.90599192899999],[125.00660240999999,37.9184431010001],[125.01351972700004,37.93952057500003],[124.98902428500016,37.92743561400012],[124.97950280000006,37.92523834800012],[124.98365319099999,37.94232819200009],[124.99219811300021,37.952948309000035],[125.00546308700008,37.95844147300015],[125.02418053500006,37.96002838700018],[125.03663170700017,37.963609117000075],[125.0620223320001,37.97858307500009],[125.07569420700021,37.98045482000008],[125.0896102220001,37.975816148000135],[125.11597741000011,37.96271393400015],[125.13379967500006,37.96002838700018],[125.14991295700023,37.96076080900012],[125.16382897199999,37.96377187700004],[125.17538496200005,37.96991608299999],[125.18490644600016,37.98045482000008],[125.17750084700006,37.987941799000126],[125.16651451900012,37.98126862200017],[125.15528405000012,37.97996653900016],[125.14429772200005,37.98346588700015],[125.123301629,37.99843984600001],[125.11850019600004,37.999457098000065],[125.11532636800004,38.00238678600009],[125.10971113400015,38.01528554900001],[125.10670006600004,38.034613348000114],[125.11622155000023,38.04193756700012],[125.15756269600014,38.042547919000086],[125.20167076900016,38.04938385600012],[125.21322675899998,38.04572174700014],[125.21729576900022,38.037176825000024],[125.21957441500004,38.02781810100002],[125.2251896490002,38.021429755000085],[125.24634850400005,38.02008698100009],[125.25318444100004,38.05394114800004],[125.273692254,38.06240469],[125.26490319100006,38.07794830900009],[125.24830162900017,38.083807684000035],[125.20850670700013,38.0834821640001],[125.19044030000018,38.08576080900009],[125.1558537120001,38.09552643400003],[125.1406356130001,38.097805080000015],[125.12452233200023,38.095119533000044],[125.07569420700021,38.07607656500012],[125.02735436300011,38.068996486000074],[125.01351972700004,38.06240469],[124.93783613400002,38.097805080000015],[124.90487714900004,38.12482330900015],[124.8852645190001,38.13165924700017],[124.87647545700023,38.113959052000055],[124.86548912900015,38.107082424000154],[124.84009850400005,38.101996161000116],[124.79379316500015,38.097805080000015],[124.67709394600014,38.11538320500013],[124.66724694100006,38.12571849200005],[124.67359459700018,38.13719310099999],[124.69776451900005,38.144964911],[124.74512780000012,38.1479352890001],[124.7651473320001,38.15607330900012],[124.77328535199999,38.175970770000035],[124.78003991000004,38.17861562700001],[124.82178795700005,38.185939846],[124.82911217500006,38.193793036],[124.84546959700012,38.2184105490001],[124.85596764400006,38.22695547100001],[124.879161004,38.23065827000006],[124.89527428500017,38.22150299700017],[124.92090905000022,38.18935781500004],[124.93100019600004,38.192938544000086],[124.99301191500014,38.22695547100001],[124.96762129000004,38.23533763200008],[124.91504967500012,38.229071356000034],[124.88656660199999,38.244574286000145],[124.87232506600017,38.25763580900012],[124.87012780000012,38.26544830900009],[124.86963951900013,38.28213125200012],[124.87973066500015,38.345200914000046],[124.88388105600019,38.35529205900012],[124.92798912899998,38.40908437700007],[124.93506920700004,38.420599677],[124.94727623800021,38.450506903000175],[124.95899498800023,38.460882880000085],[124.96656334700018,38.46336497600011],[124.97217858200005,38.46214427299999],[124.97486412900017,38.45514557500012],[124.97266686300017,38.44037506700012],[124.98519941500015,38.45136139500009],[125.00204511800003,38.47361888200014],[125.01636803500007,38.497951565],[125.02100670700004,38.51487864799999],[125.01474043100019,38.52496979400014],[124.99683678500017,38.53587474200013],[124.99301191500014,38.54588450700011],[124.99488366000006,38.55768463700018],[124.99708092500012,38.56614817900011],[124.99569746200021,38.57404205900009],[124.98086569900023,38.584157201],[124.98394855600021,38.591941676000076],[124.99774737499999,38.5925216210001],[125.01768591000021,38.58352329600014],[125.02920047300007,38.58949528500007],[125.037625067,38.59127144900013],[125.04296633600008,38.58168295600011],[125.05824114500015,38.56846792800012],[125.07974441700006,38.58398853000007],[125.10276941300017,38.59352342600012],[125.1280086400001,38.58028144200013],[125.1345320970001,38.591253973],[125.134043816,38.61001211100016],[125.13721764400005,38.624741929000045],[125.12606855600009,38.633246161],[125.11841881600006,38.64516836100013],[125.11654707100014,38.65721263200014],[125.12338300899997,38.66632721600003],[125.13755966000022,38.662332307000085],[125.14822853900014,38.64612822300013],[125.1565998990001,38.631726627000134],[125.17962270700005,38.63465513600014],[125.18349644999996,38.64243174400009],[125.17819758300007,38.656826179000134],[125.17979650700013,38.67000248100011],[125.1889903810002,38.66697903000015],[125.19354523400001,38.65737864900011],[125.20348540400019,38.65255338100009],[125.22038123100018,38.65609242400008],[125.23573354900016,38.65783722300013],[125.25961350900016,38.66973852100004],[125.26729528800014,38.67031000600015],[125.27798275600016,38.663077538000024],[125.30103600400015,38.656805731000034],[125.31132433100012,38.66501670200013],[125.31979146600005,38.66858445200002],[125.33060514700006,38.678747467000065],[125.34601622600022,38.687079095000044],[125.36910835300003,38.694760775000034],[125.39722741,38.69367096600011],[125.4067488940001,38.69285716400019],[125.4296981130001,38.68748607000013],[125.44190514400005,38.68622467700011],[125.44442793100009,38.689520575000145],[125.44613691499998,38.696722723],[125.45101972700016,38.70400625200001],[125.46265709700018,38.707261460000055],[125.50709069100017,38.68622467700011],[125.5118107430001,38.67670319200012],[125.51465905000023,38.6578636740001],[125.52076256599999,38.652655341000084],[125.53272545700023,38.65412018400015],[125.53793379000015,38.66364166900014],[125.54078209700016,38.674261786],[125.54517662900017,38.679388739000025],[125.55518639400023,38.67666250200013],[125.5649520190001,38.67011139500006],[125.5723576180001,38.66229889500006],[125.57520592500012,38.65574778900016],[125.58594811300023,38.641913153000175],[125.61036217500005,38.631089585],[125.6379500660001,38.626410223000065],[125.65780683700021,38.631008205000015],[125.64852949300004,38.63849518400018],[125.63681074300004,38.65399811400008],[125.63062584700018,38.658880927000055],[125.61988366000017,38.66144440300015],[125.59961998800006,38.66225820500007],[125.58895918100015,38.66632721600003],[125.543711785,38.71112702000006],[125.52759850400005,38.720933335],[125.5147404310002,38.72280508000016],[125.49097741000001,38.72288646000013],[125.47909589900004,38.727728583000115],[125.47291100400011,38.73432038],[125.44703209700018,38.77155182500017],[125.44800866000017,38.776190497000115],[125.4477645190001,38.777248440000065],[125.43873131599999,38.77558014500014],[125.43588300900014,38.77130768400003],[125.43213951900023,38.76308828300012],[125.42457116000016,38.75592682500009],[125.41089928500006,38.755072333],[125.4200138680002,38.75018952000012],[125.42782636800021,38.744126695000126],[125.43417402400003,38.73676178600011],[125.4193132830001,38.72926491900012],[125.3892440650001,38.71744908500001],[125.37312844300013,38.72054103700004],[125.363047722,38.73456452000015],[125.35621178499999,38.73456452000015],[125.35035241000017,38.72125885600012],[125.341075066,38.717474677],[125.31454511800015,38.720933335],[125.31275475400017,38.723863023000106],[125.31031334699999,38.72980377800006],[125.30640709700005,38.73460521000014],[125.30103600400015,38.73456452000015],[125.29590905000022,38.72846100500006],[125.29794355600009,38.72211334800012],[125.30347741,38.71674225500006],[125.30836022200016,38.71352773600002],[125.30836022200016,38.707261460000055],[125.29371178500016,38.70319245000009],[125.27767988400008,38.70331452000006],[125.2624617850001,38.70791250200001],[125.24976647200005,38.71723053600006],[125.24350019599999,38.72833893400018],[125.24691816499997,38.736721096000124],[125.26685631600017,38.755072333],[125.25977623800011,38.75828685100005],[125.25318444100004,38.76251862200017],[125.25782311300006,38.771918036],[125.25269616000016,38.783596096000096],[125.24097741000017,38.7931175800001],[125.2251896490002,38.796087958],[125.23047936300011,38.771918036],[125.2165567870002,38.73971680000001],[125.18811979800003,38.73860758200008],[125.17666381900008,38.75122800100017],[125.17211143100009,38.76322957000009],[125.15677039000015,38.769267292000066],[125.14527391700008,38.777087866],[125.13721764400005,38.80353424700017],[125.14332116000017,38.820379950000174],[125.14755293100009,38.8371442730001],[125.15072675900015,38.87457916900006],[125.15196621700012,38.89152897500004],[125.16362715400012,38.91546040500013],[125.17298086200016,38.938799521000035],[125.19002722000019,38.95851982600011],[125.20090124600007,38.97526244800003],[125.19864306900004,38.986056348000076],[125.21216881600004,39.00153229400014],[125.23336837900004,39.02988677000009],[125.25200202900007,39.04963867700003],[125.26002037900015,39.06635163000006],[125.2708025520001,39.08060612500016],[125.29110761800008,39.080471096000096],[125.3160099620002,39.079535223],[125.33505293100019,39.083441473],[125.28407024400009,39.08955641800007],[125.28669428200013,39.097046423],[125.29061152600018,39.104530787000115],[125.29033477800024,39.111281257000186],[125.28617909400022,39.11704888000018],[125.28815316700005,39.123542083000174],[125.28736412900004,39.13182200700011],[125.2891544930002,39.139064846000124],[125.29330488400014,39.143540757],[125.29444420700011,39.14736562700001],[125.28736412900004,39.15232982000008],[125.29672285200014,39.16152578300013],[125.30713951900023,39.16543203300013],[125.33204186300011,39.16596100500003],[125.34351647200006,39.16889069200012],[125.34009850400005,39.176011460000076],[125.33204186300011,39.184963283000016],[125.32886803500006,39.193304755000085],[125.34359785200004,39.21287669500005],[125.36508222700016,39.220892645],[125.38900800900004,39.22028229400002],[125.41089928500006,39.21381256700012],[125.40487714900021,39.228949286000116],[125.39600670700013,39.23655833500008],[125.39356530000023,39.24579498900012],[125.43189537900015,39.30072663000011],[125.44491621200011,39.31061432500003],[125.42920983200011,39.31224192900005],[125.416270379,39.32025788],[125.41114342500006,39.333482164000046],[125.41822350400005,39.350978908000094],[125.41342207100016,39.35443756700009],[125.40463300899998,39.364650783000044],[125.41480553500006,39.36200592700014],[125.41895592500005,39.360541083000086],[125.42440839900021,39.35712311400006],[125.44564863400004,39.366929429],[125.4541935560002,39.374335028000175],[125.45923912900017,39.385077216000084],[125.43848717500022,39.38499583500011],[125.3764754570001,39.392523505000085],[125.3570255870002,39.39874909100003],[125.35995527400021,39.413153387000094],[125.38355553500016,39.44033437700001],[125.3725692070001,39.44098541900014],[125.3618270190001,39.43992747600011],[125.35165449300003,39.43740469000009],[125.34253991000018,39.433539130000085],[125.34603925900015,39.45962148600013],[125.36036217500023,39.474676825000145],[125.37940514400022,39.486273505000085],[125.39722741,39.50177643400009],[125.40259850400015,39.51373932500003],[125.40658613400015,39.52749258000012],[125.4136662120002,39.53872304900012],[125.44198652400004,39.547552802],[125.45028730600019,39.55792877800009],[125.45175214900009,39.57127513200011],[125.44491621200011,39.58437734600007],[125.4296981130001,39.57538483300006],[125.32569420700004,39.5331891950001],[125.30355878999997,39.52728913],[125.29493248800006,39.52301666900017],[125.28598066500014,39.521185614],[125.277110222,39.526027736000074],[125.250743035,39.551214911000145],[125.24634850400005,39.5536156270001],[125.23707116000016,39.56289297100015],[125.21957441500004,39.56647370000012],[125.21029707100016,39.57306549700009],[125.2251896490002,39.5912132830001],[125.15756269600014,39.5912132830001],[125.16098066499997,39.58519114799999],[125.16781660199999,39.56976959800015],[125.17123457100003,39.563869533000016],[125.12680097699997,39.563869533000016],[125.11695397200016,39.565863348000065],[125.11426842500012,39.570949611000074],[125.11353600400015,39.57758209800015],[125.10971113400015,39.58437734600007],[125.10377037900005,39.592474677],[125.1016544930002,39.59870026200015],[125.09750410200016,39.602728583000115],[125.08554121200015,39.604193427],[125.070078972,39.60150788000011],[125.06031334700016,39.60114166900008],[125.04769941499998,39.604193427],[125.04004967500018,39.608547268000095],[125.01807701900023,39.62400950700002],[125.01351972700004,39.62872955900012],[125.01059003999997,39.635321356000176],[125.0032658210001,39.63686758000013],[124.99439537900004,39.63690827000012],[124.98633873800011,39.638983466000056],[124.95826256600012,39.662014065],[124.94727623800021,39.66299062700007],[124.93783613400002,39.64581940300015],[124.92652428500004,39.6529808610001],[124.91309655000023,39.65623607000005],[124.90162194099999,39.662054755],[124.89267011800008,39.691961981000176],[124.88160241000004,39.70416901200015],[124.86630293100008,39.71385325700011],[124.84913170700023,39.72150299700006],[124.83358808700004,39.725978908000016],[124.81128991,39.72833893400015],[124.80307050900004,39.73045482000008],[124.79916425900004,39.739813544000114],[124.77064966000007,39.74181142100012],[124.760390129,39.74800777800006],[124.7564396490001,39.770656643000066],[124.7461043630001,39.78294505400011],[124.74024498800023,39.77216217700011],[124.73951256600002,39.762111721000124],[124.74293053500007,39.75299713700015],[124.7495223320001,39.74506256700009],[124.75473066499998,39.73371002800012],[124.75025475400005,39.722357489000146],[124.75002107500008,39.70989247400003],[124.74418696600016,39.701307953000125],[124.7446240530002,39.69135615600014],[124.75711508900022,39.68790591300002],[124.75304515100017,39.6724587450001],[124.74053231199998,39.67179154800005],[124.72980457000001,39.665292524000115],[124.73424385799997,39.65499617400003],[124.74390709700012,39.644354559000085],[124.73513749100006,39.641587568000126],[124.71641220400025,39.64712767500013],[124.69501666400016,39.63753981400005],[124.67492862800023,39.62206913900006],[124.64906281400023,39.612120807000096],[124.64057472300013,39.594603830000054],[124.63745219100022,39.590483449000104],[124.62378991,39.59796784100003],[124.6241154310002,39.602199611000124],[124.62533613400014,39.60516998900006],[124.62940514400012,39.61163971600016],[124.62191816500003,39.613104559000035],[124.61866295700011,39.614732164000046],[124.61573326900017,39.61786530200011],[124.61080301399996,39.62865050000015],[124.62857395600004,39.6447475880001],[124.6321488340001,39.66294598000003],[124.64509531300004,39.66946608400012],[124.64991295700015,39.68366120000009],[124.64698326900023,39.69757721600017],[124.63990319100017,39.698065497000144],[124.63143964900021,39.693915106000034],[124.62378991,39.693548895],[124.61988366,39.697943427],[124.61337324300021,39.709784247000144],[124.60946699300023,39.714667059000114],[124.60035241000006,39.71930573100015],[124.59156334700005,39.7208519550001],[124.58480879000003,39.72357819200006],[124.58228600400001,39.73175690300015],[124.58326256600017,39.74054596600003],[124.58790123800011,39.756293036],[124.58912194100004,39.76585521000008],[124.58472741000006,39.770941473],[124.56600996200008,39.77887604400014],[124.5616154310001,39.78668854400014],[124.5654403000001,39.807114976000136],[124.56405683700021,39.81427643400015],[124.55494225400004,39.81708405200011],[124.51978600400017,39.818060614],[124.43441816500003,39.830755927000055],[124.43002363400015,39.82933177299999],[124.4263615240001,39.82648346600014],[124.42261803500016,39.82420482000008],[124.41773522200016,39.824530341000084],[124.41366621200021,39.82782623900012],[124.4097599620002,39.83592357000008],[124.4072371750001,39.83759186400009],[124.40357506600017,39.84149811400006],[124.39918053500017,39.859808661000116],[124.39657636800008,39.86554596600011],[124.38965905000006,39.867865302000084],[124.36255944100004,39.871730861000074],[124.348887566,39.892808335],[124.34180748800019,39.89996979400006],[124.3348087900001,39.90558502800003],[124.32797285200016,39.90973541900017],[124.32154381600004,39.912665106000084],[124.3321232430001,39.92511627800012],[124.34571373800023,39.930243231000034],[124.35938561300011,39.933539130000085],[124.36996504000014,39.940008856000176],[124.3760685560002,39.95408763200011],[124.383067254,40.00267161700016],[124.40577233200015,40.02777741100005],[124.43409264400012,40.024562893],[124.46583092500022,40.015285549000154],[124.49960371200017,40.02252838700018],[124.47925866000006,40.03074778900016],[124.43287194100017,40.032782294000114],[124.41024824300021,40.036200262000115],[124.39144941500014,40.048285223000036],[124.38436933700022,40.06488678600009],[124.38038170700023,40.08266836100016],[124.36996504000014,40.098293361000124],[124.38556482000008,40.11047271800014],[124.52819177300013,40.21413564100003],[124.53237756400007,40.21599599200003],[124.54302290900013,40.21764963800014],[124.54865564000018,40.22090525300014],[124.55020593300013,40.2247293090001],[124.5517562260002,40.23620147800001],[124.55485681100016,40.24142079700011],[124.57087650600013,40.252427877],[124.61118412300017,40.27216827500017],[124.62720381700004,40.28612091100017],[124.64260339400013,40.29428578699999],[124.69303959200013,40.302812398000086],[124.71246993000003,40.31030548100012],[124.72296024600016,40.32668691],[124.73128015200021,40.34973459900014],[124.74120202700013,40.37035349600013],[124.75680830900015,40.37919016600015],[124.77985599800004,40.38347931000011],[124.8008366290002,40.394072978000096],[124.84987756400014,40.43159006800009],[124.88382898000023,40.46554148400009],[124.89065026900018,40.47789215200008],[124.89550785400003,40.48362823500012],[124.90563643400017,40.476496888],[124.91514489800025,40.46585154200001],[124.91793542600013,40.46109731000011],[124.92589359600018,40.45789337200012],[124.93529870600005,40.45556793200011],[124.95958663000025,40.45365590400009],[124.98661340400011,40.457376607000086],[125.00661218300004,40.456136373000064],[125.02630090400018,40.457376607000086],[125.04128706900023,40.46109731000011],[125.04629968300013,40.471070862000104],[125.03885827700017,40.483473206],[125.02769616800006,40.49587555000015],[125.01529382300016,40.508277894000045],[125.01529382300016,40.521972148000046],[125.02511234500005,40.53437449200011],[125.05002038600011,40.54181589800014],[125.07358484000021,40.54801707000003],[125.08965620900008,40.55551015200014],[125.11461592700007,40.564140117000086],[125.1330644120001,40.57287343300008],[125.15306319300012,40.583983867000185],[125.18153690700014,40.593957418000016],[125.21641849800014,40.60263905900017],[125.24241174300018,40.61132069900013],[125.25610599800021,40.61504140200013],[125.26483931500009,40.62248280900015],[125.27098881000013,40.63245636000006],[125.27718998200025,40.643618470000014],[125.29331302900013,40.64857940700013],[125.30819584200017,40.64981964200008],[125.32318200800013,40.64485870400013],[125.33666955600019,40.641138001000044],[125.35604821800015,40.64604726200015],[125.36359297700018,40.64671905500013],[125.37248132300013,40.643928528000075],[125.38457360900011,40.63509185800008],[125.39087813400012,40.63245636000006],[125.41325402900011,40.63178456600018],[125.41712976200009,40.639277649000014],[125.41495935100023,40.65193837500005],[125.41515982600005,40.652684880000024],[125.4188867600002,40.66656280600013],[125.42632816600016,40.67116200800008],[125.44369144800018,40.66873321500013],[125.45299320500011,40.673384094000184],[125.45630049700011,40.67968862000002],[125.45692061400008,40.69369293300009],[125.4598144940001,40.701341044000074],[125.46906457500008,40.71291656600012],[125.47877974500003,40.71875600200012],[125.49164717600004,40.7209264130001],[125.53309167500016,40.72180491200013],[125.54647587100011,40.72593902600006],[125.55334883600007,40.73710113600002],[125.55536421800004,40.758753561000084],[125.5600667730001,40.7783389290001],[125.57174564700009,40.78490183600009],[125.5865251060001,40.781852926000155],[125.60032271400023,40.77270619800008],[125.60812585500015,40.76417958600014],[125.60993453000006,40.76128570600015],[125.66869063300012,40.762164205000104],[125.68264327000011,40.768882141000134],[125.67334151200016,40.784075012000145],[125.6448161210002,40.81058502300006],[125.68321171100017,40.84789540700011],[125.7040896920001,40.85919462500003],[125.70641442900015,40.860452779000106],[125.73700687700007,40.86520701100001],[125.74589522300018,40.8681525680001],[125.75075280800004,40.874767151000114],[125.75473189300018,40.881691794000076],[125.76093306500016,40.885670878000056],[125.77080326400008,40.886239319000126],[125.77917484600015,40.88463734900007],[125.82196293100006,40.869754537000134],[125.83167810100011,40.87083974300013],[125.87270918800007,40.89269887300016],[125.88521488500024,40.89750478200006],[125.90154463700017,40.899313457000076],[125.9122933350001,40.89414581300015],[125.92402388500003,40.88406890900005],[125.93616784700016,40.8774026490001],[125.94960371900007,40.88257029300003],[125.96427982600012,40.891303610000094],[125.99507898000009,40.89414581300015],[126.00784305900007,40.899313457000076],[126.01533614200011,40.90913197900012],[126.01001346900013,40.91388621100013],[125.99662927300018,40.9149197390001],[125.98055790200023,40.913627828000145],[125.99203007100006,40.928355612000146],[126.00954838100019,40.93269643100014],[126.02856530800003,40.935280253000045],[126.04551517800009,40.94468536400011],[126.06582401600022,40.96861155300009],[126.07197351100008,40.98060048500015],[126.06928633600015,40.989385478000045],[126.0756425380001,40.997085267000145],[126.08370406100006,41.00251129200002],[126.09336755400003,41.00623199500002],[126.10406457600018,41.00917755200011],[126.10132572500007,41.02209665900013],[126.11150598200011,41.032431946000045],[126.12644047100015,41.043232320000165],[126.13817102100009,41.05697825200012],[126.12375329700014,41.07553009100014],[126.1474211020001,41.09227325500011],[126.26069584200015,41.14312286400012],[126.27475183200019,41.152579651000096],[126.28436364800008,41.16410349500002],[126.30953007000014,41.20782175700002],[126.32100223900012,41.218880514000105],[126.34616866100016,41.237690735000015],[126.35733077000012,41.249421285],[126.3805851650002,41.290814107000145],[126.39148889200013,41.30342315700007],[126.44089156100021,41.34838165300009],[126.4725175380001,41.3665200810001],[126.50130131100005,41.366106669000104],[126.4982007250002,41.361765849000115],[126.49649540200012,41.358045146],[126.49375655100019,41.35478953000005],[126.48765873200014,41.35179229800012],[126.48765873200014,41.34440256800009],[126.5221269120001,41.35194732700016],[126.5221269120001,41.37763051400013],[126.5082776290002,41.40915313700019],[126.50130131100005,41.43437123600013],[126.50760583500006,41.44723866900012],[126.54222904500014,41.4889932250001],[126.55876550300016,41.53415842800017],[126.57726566600014,41.56180531800008],[126.58088301700016,41.57524119100013],[126.57726566600014,41.58831532900008],[126.56651696800022,41.60193206800007],[126.56703373200011,41.614153544000104],[126.60207035300012,41.64205881800008],[126.61788334200011,41.66593333000016],[126.63395471200019,41.668620504],[126.6693013920001,41.66712188700008],[126.68010176600002,41.671901957],[126.71224450800004,41.69417450000004],[126.7279541430001,41.701254171000144],[126.71415653500016,41.70990997400013],[126.69963545800013,41.716421204000184],[126.68712976100012,41.72401763900014],[126.67948164900021,41.73598073300009],[126.69658654800011,41.74122589200012],[126.71250288900004,41.74122589200012],[126.72728234900015,41.736910909000144],[126.74154504400023,41.72918528200016],[126.77136234600015,41.70448394800006],[126.78862227400012,41.695905661000104],[126.79627038600009,41.70494903600017],[126.80887943600013,41.72983123800013],[126.8647933350002,41.74727203400006],[126.87745406100024,41.773549500000016],[126.88711755400007,41.7849183150001],[126.90851159700017,41.79615793900014],[126.92980228700017,41.801041361999985],[126.93962080900022,41.79372914600019],[126.9406543380002,41.77176666300012],[126.94613204000022,41.766185608000015],[126.95858606000009,41.76680572600016],[126.98116866100023,41.76331756600002],[126.99963111400021,41.75204923000011],[127.03315515200015,41.73158823700011],[127.04266361600006,41.73264760400009],[127.04679773000024,41.71923756900004],[127.06834680200019,41.69358022100009],[127.07661503100016,41.68079030300011],[127.05961348500014,41.68223724400009],[127.04896814000016,41.67774139400007],[127.04545414300017,41.66800038700004],[127.04943322800007,41.65342763300008],[127.05899336800017,41.6432990520001],[127.07403121000009,41.63570261600016],[127.10467533400016,41.62616831500015],[127.10188480700012,41.62229258300003],[127.09723392800007,41.612448222000054],[127.11397709200011,41.61035532700008],[127.16606693600023,41.594955750000096],[127.17970951300018,41.58516306600002],[127.15785038300012,41.578600159000025],[127.13650801600014,41.5692467250001],[127.118007853,41.55575917600013],[127.10467533400016,41.53741404300014],[127.11196171100006,41.53663889600013],[127.12085005700017,41.53477854400013],[127.12823978800016,41.53157460500016],[127.13464766500012,41.52201446600015],[127.14239912900021,41.52392649400018],[127.15593835500012,41.53054107700008],[127.16513676000002,41.52852569600013],[127.17035607900013,41.52392649400018],[127.17433516500002,41.51927561400011],[127.17970951300018,41.516950174999984],[127.18725427300004,41.52149770200013],[127.20032841000008,41.54206492200002],[127.20709802300021,41.54594065300015],[127.22198083500014,41.540773010000166],[127.24451176000015,41.52800893199999],[127.25830936700014,41.52547678600011],[127.26745609600019,41.52733713800002],[127.2746907960001,41.530437725000134],[127.2814604090001,41.53105784100002],[127.28895349200015,41.52547678600011],[127.28978031500016,41.51855214500004],[127.28357914200008,41.512195944],[127.2751558840001,41.50733835900017],[127.26905806500021,41.50496124300004],[127.28636967000014,41.49901845300012],[127.30512821500021,41.49467763300014],[127.3442472740001,41.49131866500012],[127.35370406100006,41.492713928000015],[127.37111901900008,41.49808827800017],[127.37897383700013,41.49881174700006],[127.3884823000001,41.49602122],[127.39592370700021,41.49137034100012],[127.4013497320001,41.48682281500002],[127.40512211100013,41.48449737600008],[127.42734297800017,41.483102112],[127.44305261300022,41.48801137300001],[127.45710860200015,41.49472930900005],[127.47411014900015,41.49881174700006],[127.49100834100014,41.495401103000134],[127.50847497600002,41.48816640200006],[127.52583825700012,41.48434234600005],[127.54289147900025,41.49131866500012],[127.54475183100024,41.46889109300004],[127.55880782100016,41.45824574800004],[127.59751346900018,41.450339254000184],[127.63068973900019,41.43287262000014],[127.63833785000017,41.42987538700014],[127.64707116800004,41.43297597300007],[127.65812992400006,41.446566874000055],[127.66267745000019,41.446980286000084],[127.6902726650001,41.4389704390001],[127.7846338300002,41.43690338200004],[127.81036869300013,41.44356964100014],[127.82886885700024,41.43395782500012],[127.84886763600015,41.43132232700013],[127.86514571200011,41.43742014600018],[127.87186364800012,41.453749899000016],[127.88147546400013,41.460881246000056],[127.90359297800013,41.46625559500002],[127.94421065300017,41.47085479800016],[127.97423466100022,41.450339254000184],[127.98446659400021,41.454008281000185],[127.99273482300016,41.461139629000044],[128.00141646300014,41.47085479800016],[128.0123718670002,41.46010610000006],[128.01309533700012,41.4422777300001],[128.0115450450002,41.42434600900013],[128.0151623950001,41.41328725200013],[128.02384403500005,41.41147857700004],[128.0336625570001,41.413752340000045],[128.05061242700017,41.420728658000044],[128.04689172400015,41.39876617400007],[128.06415165200016,41.38843088800017],[128.0881295170001,41.388895976000086],[128.1039425050001,41.3995929980001],[128.11820520100017,41.39344350200003],[128.1039425050001,41.37912913000004],[128.14611047400015,41.37633860300018],[128.18569462100018,41.40445058200011],[128.2876005460001,41.54470041900014],[128.3030001220001,41.583406067000126],[128.28325972500016,41.605058492000026],[128.28139937300003,41.62299021500008],[128.26899703000007,41.64337656600004],[128.25091027900012,41.66011973100008],[128.22414188700023,41.66944732700004],[128.1860046790001,41.69290842700009],[128.1591329350001,41.711822001000044],[128.15489546700022,41.7337586470001],[128.14425012300015,41.75471344099999],[128.0970178630001,41.82261627200013],[128.09102339800006,41.84173655200014],[128.05764042200008,41.84984975200014],[128.04782190000006,41.863983256],[128.03996708200012,41.87958953900012],[128.02043339100018,41.96506235800014],[128.02146691900018,41.97981597900015],[128.03459273300015,41.993742778000055],[128.0546431890002,41.99831614200018],[128.10053186000007,41.99909128899999],[128.26196903500013,42.032861837000056],[128.3637716070002,42.026479797000135],[128.3871293540002,42.020692038000064],[128.4075932210001,42.008341370000025],[128.4539986580002,42.01033091200004],[128.48831180900012,41.99751515800007],[128.50236779900015,41.99609405500017],[128.54370894400006,42.00805714900004],[128.5533207610001,42.00663604800003],[128.5643795170001,42.000796611000155],[128.57368127500004,42.004310609000115],[128.58773726400014,42.01999440600015],[128.59755578700012,42.02712575300002],[128.60789107300005,42.03017466300004],[128.6825118410001,42.025730489000026],[128.70928023300016,42.03017466300004],[128.72095910700014,42.04758962100006],[128.81707727100013,42.04386891800005],[128.88317189700015,42.030408857000154],[128.9034802650001,42.02627309200007],[128.94006718000017,42.03536814400014],[128.95484663900018,42.07523651100008],[128.96383833800022,42.08851735500009],[128.9850256760001,42.09290985200008],[129.00890018800024,42.09508026200017],[129.02657352700018,42.1018757120001],[129.05334192000024,42.12285634400003],[129.06347050000002,42.136085511000104],[129.06471073400022,42.1537588500001],[129.08848189400018,42.14319102000006],[129.10553511600014,42.14210581500005],[129.11979781200003,42.14936635300002],[129.14801314300016,42.17370595300004],[129.17767541600014,42.19344635],[129.19638228400012,42.20918182400008],[129.2042371020002,42.21432362900007],[129.21116174300013,42.2199563600001],[129.21426232900015,42.22569244400016],[129.2093013920001,42.2346841440001],[129.1868738200002,42.23602773100008],[129.18077600100017,42.24310740200009],[129.18335982300007,42.254553732000105],[129.19214481700024,42.25985056600014],[129.20289351500017,42.26274444600012],[129.21116174300013,42.267007752],[129.2147790930002,42.27563771600004],[129.21415897700015,42.283699239000114],[129.2161226810001,42.29106313100011],[129.2280082600001,42.29772939100003],[129.22067020700004,42.30367218000005],[129.21240197700013,42.30775461800006],[129.2037203370002,42.3101575730001],[129.19390181500015,42.31077769000008],[129.19390181500015,42.31824493400002],[129.2261479090001,42.31814158100018],[129.23627648900006,42.32387766600014],[129.24227095600017,42.338734640000084],[129.2403072520002,42.34403147400012],[129.2342094330002,42.346563619],[129.22862837800008,42.35020680800009],[129.2280082600001,42.359198507000045],[129.23110884600024,42.36764760300004],[129.2360697840002,42.37436554000005],[129.24309777900012,42.37870636100003],[129.29663456200012,42.38723297100013],[129.30376591000018,42.389584249000094],[129.3070732020001,42.407619324000095],[129.31544478400016,42.42232126900008],[129.32650354000018,42.42676544199999],[129.33787235600008,42.414414775000054],[129.35213505000004,42.42061594700011],[129.34376346800016,42.42922007300014],[129.33859582500023,42.43836680100004],[129.3401461180001,42.445472311000074],[129.35213505000004,42.44795277900014],[129.36309045400012,42.44500722300013],[129.37208215400014,42.432553202000165],[129.3862414960001,42.428109029000055],[129.39543990100017,42.43020192500002],[129.40618859900022,42.435963847],[129.41879764900014,42.44105397599999],[129.4340938720002,42.44110565300009],[129.48246301300006,42.410719910000026],[129.48887089100018,42.402555034000116],[129.51708622300023,42.39095367400015],[129.52339074700012,42.38338307700009],[129.52680139200018,42.3730736290001],[129.53517297400006,42.36955963100014],[129.54530155500012,42.37131663000004],[129.55418990100023,42.37687184700003],[129.55946089700012,42.38700042700018],[129.5602877200001,42.39679311200014],[129.5631816000001,42.40410532700004],[129.5876762290002,42.411365866000104],[129.59449751800017,42.42221791700014],[129.59563440000002,42.4356021120001],[129.59170699100005,42.44795277900014],[129.6334615490001,42.44542063400014],[129.67118534400012,42.43792755200003],[129.70332808500015,42.442371724000125],[129.7288562420001,42.47585805300004],[129.7336104740002,42.511799011],[129.73144006400017,42.55091807100003],[129.73650435400017,42.58515370700003],[129.7630660400001,42.60623769200005],[129.7630660400001,42.61238718700003],[129.7462195230001,42.615513611000075],[129.74156864400007,42.629001160000044],[129.75107710800003,42.64292795800013],[129.77670861800019,42.647191264000085],[129.7722644460001,42.661660665],[129.77939579300013,42.67039398200008],[129.78756066900021,42.67685353600014],[129.78652714100016,42.68473419200008],[129.7745382090001,42.69333831800013],[129.76440962700022,42.696852315000065],[129.75758833900002,42.70364776600003],[129.75562463400016,42.72227712000007],[129.75727828000012,42.734705302000165],[129.7613090420002,42.74604827900005],[129.77350468000012,42.766951396000124],[129.78952437400008,42.79247955300015],[129.7950020760001,42.80648386600016],[129.79903283700006,42.83666290300006],[129.83417281100012,42.90748545400011],[129.84151086400018,42.9177949020001],[129.8466785080001,42.928233541000125],[129.8476086830002,42.95128123000002],[129.85174279800017,42.96190073600009],[129.8631116130001,42.968980408000036],[129.89329065000007,42.97153839100009],[129.9070365810002,42.976137593000075],[129.89773482300006,42.978747253000066],[129.89008671100015,42.98280385400007],[129.88409224500018,42.988514099000106],[129.87975142500002,42.996033020000155],[129.89070682800016,42.99941782700007],[129.9092069910001,43.008435364000135],[129.92067915900012,43.010269878000045],[129.93411503100006,43.00840952600013],[129.94155643700017,43.00362945600013],[129.9717354740001,42.9737346400001],[129.98134729000017,42.966732484000104],[129.99571333800012,42.96190073600009]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Israel","sov_a3":"IS1","adm0_dif":1,"level":2,"type":"Disputed","admin":"Palestine","adm0_a3":"PSX","geou_dif":0,"geounit":"Palestine","gu_a3":"PSX","su_dif":0,"subunit":"Palestine","su_a3":"PSX","brk_diff":0,"name":"Palestine","name_long":"Palestine","brk_a3":"PSX","brk_name":"Palestine","brk_group":null,"abbrev":"Pal.","postal":"PAL","formal_en":"West Bank and Gaza","formal_fr":null,"note_adm0":"Partial self-admin.","note_brk":"Partial self-admin.","name_sort":"Palestine (West Bank and Gaza)","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":8,"pop_est":4119083,"gdp_md_est":11950.77,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"-99","iso_a2":"PS","iso_a3":"PSE","iso_n3":"275","un_a3":"275","wb_a2":"GZ","wb_a3":"WBG","woe_id":28289408,"woe_id_eh":28289408,"woe_note":"Exact WOE match as country","adm0_a3_is":"PSE","adm0_a3_us":"PSX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"PSE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[34.26439904800023,31.224193420000073],[34.24835085700013,31.211448958000133],[34.230395956000194,31.259230041000095],[34.22460819500023,31.27571482400016],[34.2002694411415,31.314266689147598],[34.20028730600003,31.314276434000174],[34.22266686300006,31.326646226000104],[34.23666425900015,31.342352606000176],[34.28142337300008,31.376695054000134],[34.30160566500009,31.407700914000046],[34.34839928500017,31.43764883000004],[34.36817467500012,31.468166408000155],[34.443369988000114,31.5345726580001],[34.47877037900011,31.57827383000007],[34.48120412500103,31.58314132299959],[34.51141239400007,31.561588847000156],[34.53042932100013,31.541383362000072],[34.52825891100022,31.520144348000187],[34.49570275900007,31.4944094850001],[34.49549605400014,31.4944094850001],[34.480406535000014,31.485624492000014],[34.367338501000205,31.39281361899999],[34.34584110500006,31.35772532200015],[34.34553104600016,31.340723776000132],[34.3537992760001,31.306358948000096],[34.350905396000115,31.28925404900015],[34.3158687750001,31.256904602000148],[34.26439904800023,31.224193420000073]]],[[[35.25224572700003,32.51594919800005],[35.27043583200006,32.510471497000154],[35.333377726000066,32.51308115700009],[35.36314335100005,32.51010976200017],[35.392908976000086,32.49447764100002],[35.40179732200008,32.47096486400012],[35.40138391100006,32.44001068100012],[35.406861613000075,32.414792582000175],[35.432803182000185,32.40825551400009],[35.45667769400009,32.40760955900011],[35.48013879400017,32.40241607700001],[35.56096073400013,32.384716899000104],[35.56395796700022,32.37704294900011],[35.56561161300007,32.36794789600005],[35.5594104410001,32.36794789600005],[35.5594104410001,32.37482086200011],[35.5519690350001,32.37482086200011],[35.5519690350001,32.36794789600005],[35.55734338400006,32.358206889000186],[35.55651656000012,32.32820872000006],[35.56561161300007,32.313351745000105],[35.561167440000105,32.30169871100004],[35.56085738100008,32.28263010700006],[35.56457808400009,32.26358734200009],[35.572536255000074,32.251908468000025],[35.56757531800022,32.24950551400015],[35.56375126100008,32.24681833900003],[35.56106408700006,32.24314931200003],[35.5594104410001,32.237594096000024],[35.572536255000074,32.237594096000024],[35.55956241700008,32.19037087200003],[35.55517297300017,32.17439382000005],[35.5594104410001,32.162534079000025],[35.5594104410001,32.155092672000094],[35.55124556500018,32.151526998000136],[35.54669803800007,32.147031149000114],[35.54669803800007,32.14160512300005],[35.5519690350001,32.1351972450001],[35.53522587100022,32.11080596900017],[35.53460575300008,32.09923044900013],[35.54514774600014,32.086828105000066],[35.528301229000164,32.07509755500016],[35.522823527000156,32.057837627000175],[35.52468387900015,32.01169057200006],[35.53553592900019,31.988229473000057],[35.537706340000085,31.97758412700007],[35.53832645600008,31.963941549000154],[35.5399801030002,31.955621643000104],[35.54587121600022,31.94456288700012],[35.54514774600014,31.936604716000048],[35.54060022000007,31.932005514000096],[35.533675577000196,31.930300192000132],[35.527474406000096,31.927354635000125],[35.52468387900015,31.91924143500005],[35.549075154000064,31.839194641000073],[35.53832645600008,31.826740621000095],[35.53832645600008,31.81929921500007],[35.5594104410001,31.765349019000112],[35.52757775800015,31.735066630000077],[35.50247856700017,31.685360389],[35.48013879400017,31.64111887600016],[35.46422245300002,31.568565165000148],[35.45874475100007,31.4944094850001],[35.45905481000014,31.492807516000155],[35.45915816300007,31.4918773400001],[35.45874475100007,31.491567281000027],[35.458124634000086,31.491929016000128],[35.3901184490002,31.487071432],[35.33234419800013,31.458804423000018],[35.22330692500006,31.381031393000097],[35.16491255700012,31.362272848000185],[35.040165649000215,31.36320302400004],[34.98032434100017,31.35617502900014],[34.95489953600023,31.348630270000104],[34.92740767400008,31.34490956700007],[34.900949341000086,31.34847524000004],[34.878831827000084,31.36284128900014],[34.867152954000204,31.396430970000083],[34.881725708000175,31.429865621000072],[34.9267875570001,31.4944094850001],[34.932471965000076,31.526965637000142],[34.93288537600009,31.554922588000142],[34.937329549000054,31.582001038],[34.95317554300007,31.608319958],[34.95531294800016,31.61187001600011],[34.97360640500014,31.63037017800003],[35.054014934000094,31.68220164000003],[35.08884484900013,31.71258738200008],[35.10672489400011,31.72493805000012],[35.12574182100016,31.73310292500007],[35.187443481000145,31.744471741000137],[35.19312788900018,31.739872539000185],[35.19829553200006,31.737702129000112],[35.20284305800013,31.738942363000135],[35.206563761000126,31.744626771000085],[35.208010701,31.766124166000125],[35.20625370300016,31.78276397700013],[35.198398885000216,31.795166321000025],[35.181449015000084,31.804106344000143],[35.11189253800009,31.818058981000135],[35.05969934000021,31.83940134700013],[35.045539999000056,31.841416728000084],[35.03809859200007,31.837385966000095],[35.02042525200013,31.821159567000066],[35.01050337800004,31.815888570000038],[35.00337203,31.814648336000015],[34.98776574700017,31.81480336600005],[34.95479618300013,31.819764303000095],[34.94539107300008,31.836507467000146],[34.947326194000226,31.84092514600009],[34.953245890000204,31.85443918900002],[34.98032434100017,31.862604065000042],[35.007712850000104,31.875678202000085],[34.99582727000009,31.909164531],[34.97608687300013,31.9482319130001],[34.98032434100017,31.978204244000054],[34.98115116300019,31.981614889000166],[34.98146122300008,31.985232239000155],[34.98115116300019,31.988849589000136],[34.98032434100017,31.992156881000042],[34.97960087100014,31.992570292000057],[34.978980753000116,31.99308705700018],[34.97867069500009,31.993707174000164],[34.97867069500009,31.99437896700014],[34.9804276940001,32.01654815700006],[34.979910929000226,32.03520334900004],[34.96730188,32.12946116100015],[34.9623409430001,32.14635935500003],[34.94611454200017,32.17726186100013],[34.9480782470001,32.18687367800014],[34.96141076700022,32.201575623000124],[35.0002714440001,32.232013041000116],[35.007609497000175,32.244389547000154],[35.011123494000145,32.257101949000045],[35.00936649600007,32.26764394200008],[35.00244185400007,32.27513702400004],[34.98993615800018,32.27847015400012],[34.993036743000204,32.29157013000018],[34.99655074100005,32.32304107700004],[35.00068485500017,32.33572764100008],[35.004508911000094,32.33805308100004],[35.017841431000164,32.342213033000135],[35.02156213400004,32.3445901490001],[35.02879683500012,32.36515736900019],[35.03273030100016,32.38220026100005],[35.044713175000226,32.43411956800013],[35.06435021900009,32.46313588500003],[35.09070520000014,32.479233094000094],[35.1206775310001,32.49132537900006],[35.15168339100009,32.50791351300008],[35.176798137000134,32.532692363000095],[35.19075077300013,32.54170990000016],[35.20863081900009,32.54264007600001],[35.21035935400013,32.54186756300014],[35.223720337000174,32.535896302000154],[35.25224572700003,32.51594919800005]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Qatar","sov_a3":"QAT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Qatar","adm0_a3":"QAT","geou_dif":0,"geounit":"Qatar","gu_a3":"QAT","su_dif":0,"subunit":"Qatar","su_a3":"QAT","brk_diff":0,"name":"Qatar","name_long":"Qatar","brk_a3":"QAT","brk_name":"Qatar","brk_group":null,"abbrev":"Qatar","postal":"QA","formal_en":"State of Qatar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Qatar","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":4,"pop_est":833285,"gdp_md_est":91330,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"QA","iso_a2":"QA","iso_a3":"QAT","iso_n3":"634","un_a3":"634","wb_a2":"QA","wb_a3":"QAT","woe_id":23424930,"woe_id_eh":23424930,"woe_note":"Exact WOE match as country","adm0_a3_is":"QAT","adm0_a3_us":"QAT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"QAT.geojson"},"geometry":{"type":"Polygon","coordinates":[[[51.215258294748196,24.6258503608546],[51.14745121300006,24.576278789000042],[51.09546472200014,24.560181580000062],[51.03887902800005,24.559871521000076],[50.97888269100008,24.567726339000018],[50.928601522000115,24.587208354000012],[50.881007528000055,24.636404318000075],[50.807871941000144,24.746649481000105],[50.82667076900003,24.74868398600006],[50.85279381600009,24.770005601000037],[50.85962975400008,24.795599677000094],[50.85108483200008,24.89081452000005],[50.84278405000009,24.9160830750001],[50.799978061000104,24.988755601],[50.796641472000026,25.003607489000046],[50.807383660000085,25.031642971000082],[50.80974368600005,25.051214911000045],[50.808604363000086,25.06915924700007],[50.80241946700005,25.076971747000073],[50.77572675900012,25.091864325000127],[50.76840254000007,25.125799872000073],[50.76693769600012,25.162583726000065],[50.75782311300014,25.186224677000098],[50.76498457100007,25.204291083000015],[50.76343834700003,25.225287177000066],[50.759043816000144,25.247503973000022],[50.75782311300014,25.269354559000046],[50.76579837300011,25.3235537780001],[50.76514733200014,25.34446849200006],[50.75098717500003,25.419623114000075],[50.762461785000085,25.462713934000107],[50.76384524800005,25.482407945000148],[50.75098717500003,25.494696356000105],[50.778005405000044,25.527044989000018],[50.797092794147716,25.529896327302907],[50.80848396792362,25.51723946755189],[50.811648182861404,25.498887020912974],[50.820507984687026,25.49129290506241],[50.82048587300005,25.47182851800011],[50.84717858200008,25.467352606000134],[50.831309441000144,25.507798570000062],[50.82789147200003,25.525051174000083],[50.82667076900003,25.543117580000086],[50.82862389400003,25.55434804900011],[50.83220462300005,25.566148179000066],[50.83285566500007,25.57851797100011],[50.82667076900003,25.590887762000047],[50.81853274800011,25.595770575000103],[50.79656009200005,25.59959544500012],[50.78500410200007,25.60455963700008],[50.79639733200008,25.617254950000042],[50.80958092500009,25.620591539000056],[50.823496941000144,25.622137762000108],[50.836924675000034,25.62881094000008],[50.84017988400006,25.634507554000066],[50.84652754000012,25.649847723000107],[50.85059655000009,25.652980861000085],[50.857188347000026,25.650824286000073],[50.86353600400008,25.641424872000044],[50.870941602000066,25.63930898600003],[50.87614993600005,25.631781317000073],[50.87427819100009,25.614935614000075],[50.86768639400003,25.587836005000042],[50.86768639400003,25.567043361000056],[50.86866295700008,25.55955638200001],[50.87671959700003,25.54059479400007],[50.88152103000004,25.535142320000144],[50.888682488000136,25.52948639500005],[50.89869225400014,25.53221263200004],[50.900726759000065,25.534857489000018],[50.90007571700005,25.539740302000066],[50.90414472700007,25.56313711100006],[50.90479576900003,25.587062893000024],[50.90919030000003,25.597723700000074],[50.920583530000094,25.60834381700002],[50.92750084700009,25.605169989000046],[50.93572024800005,25.59833405200004],[50.949554884000065,25.597723700000074],[50.955902540000125,25.604681708000044],[50.96989993600005,25.633856512000104],[50.977549675000084,25.646144924000055],[50.9498804050001,25.63646067900001],[50.924327019000025,25.63231028900006],[50.903168165000125,25.640122789000056],[50.888682488000136,25.666652736000117],[50.887543165000125,25.680894273000032],[50.89486738400012,25.7280947940001],[50.89730879000007,25.732570705000057],[50.90699303500014,25.739935614000046],[50.90919030000003,25.745103257000068],[50.90796959700009,25.749253648],[50.90284264400008,25.755275783000087],[50.90170332100007,25.759466864000046],[50.90170332100007,25.789536851000065],[50.91553795700014,25.786444403000075],[50.920258009000065,25.79437897300005],[50.92359459700009,25.805161851000065],[50.93287194100014,25.810614325000103],[50.93970787900014,25.807196356000073],[50.945567254000075,25.79848867400011],[50.949229363000136,25.78701406500005],[50.949554884000065,25.77529531500008],[50.96371504000007,25.78388092700007],[50.97299238400006,25.79751211100003],[50.97592207100007,25.813788153000075],[50.970713738000086,25.830511786000102],[50.963877800000034,25.823675848000075],[50.94939212300011,25.83795807500007],[50.951182488000086,25.85927969000005],[50.97730553500014,25.916449286000017],[50.98145592500009,25.935858466000095],[50.98422285200007,25.981350002000084],[50.99252363400012,25.97573476800008],[50.99561608200008,25.97284577000005],[50.99854576900003,25.967027085000012],[51.00473066500012,25.967027085000012],[51.027354363000086,26.026922919000043],[51.04737389400003,26.0530459660001],[51.07593834700003,26.06391022300008],[51.09107506600009,26.066961981000077],[51.133148634000065,26.082098700000074],[51.14185631600008,26.08779531500005],[51.14722741000014,26.1030947940001],[51.170583530000044,26.12457916900004],[51.176117384000065,26.139593817000076],[51.194346550000034,26.13353099200006],[51.214854363000086,26.139349677000013],[51.251231316000144,26.160101630000014],[51.33073978000004,26.12116120000013],[51.34685306100005,26.104885158000087],[51.34848066500007,26.085638739000046],[51.346364780000044,26.06069570500003],[51.34717858200014,26.039007880000042],[51.35767662900014,26.02973053600007],[51.37663821700005,26.02289459800008],[51.38249759200005,26.006170966000038],[51.383474155000044,25.985581773],[51.38843834700003,25.967027085000012],[51.40398196700011,25.954087632000096],[51.416514519000025,25.952093817000044],[51.42432701900009,25.950873114000046],[51.467539910000085,25.954046942000105],[51.49195397200003,25.95189036700009],[51.51197350400008,25.946112372000044],[51.52947024800005,25.937323309000078],[51.54607181100005,25.92609284100007],[51.559418165000125,25.913763739000018],[51.570323113000086,25.89838288000007],[51.57748457100007,25.880845445000148],[51.594737175000034,25.771877346000053],[51.594493035000085,25.758246161000017],[51.59156334700009,25.746649481000105],[51.58350670700008,25.74176666900013],[51.57764733200008,25.745062567000073],[51.57203209700003,25.759507554000034],[51.563324415000125,25.762884833000044],[51.555430535000134,25.758693752000113],[51.54835045700008,25.7488467470001],[51.54460696700005,25.73737213700005],[51.54607181100005,25.7280947940001],[51.55502363400006,25.720648505000014],[51.56364993600004,25.721625067000073],[51.570323113000086,25.727484442000048],[51.57398522200009,25.7349307310001],[51.59009850400014,25.71190013200004],[51.5768335300001,25.68866608300001],[51.55681399800005,25.681626695000148],[51.55290774800005,25.70758698100005],[51.53931725400008,25.703924872000073],[51.50513756600008,25.687160549000055],[51.519704623000045,25.681708075000127],[51.53492272200003,25.673244533000084],[51.54712975400008,25.663153387000108],[51.55290774800005,25.652980861000085],[51.54948978000004,25.631170966000127],[51.535899285000085,25.622381903000043],[51.51880944100014,25.6187197940001],[51.50513756600008,25.61200592700007],[51.49830162900008,25.61591217700007],[51.4913843110001,25.618231512000108],[51.49366295700014,25.56582265800006],[51.49154707100013,25.55064524900007],[51.4913843110001,25.54930247600006],[51.485850457000076,25.54051341400009],[51.47754967500009,25.531073309000078],[51.47193444100009,25.521389065000022],[51.47429446700005,25.512111721000082],[51.510996941000144,25.454291083000072],[51.51693769600007,25.440171617000114],[51.51880944100014,25.426214911000045],[51.51571699300007,25.382839260000083],[51.51197350400008,25.330226955000054],[51.51319420700014,25.308254299000055],[51.51880944100014,25.29706452000005],[51.53126061300014,25.292181708000072],[51.59001712300005,25.2837588560001],[51.59913170700014,25.27488841400009],[51.60759524800011,25.255113023000064],[51.61109459700009,25.237534898000035],[51.61459394600007,25.219794012000108],[51.61654707100013,25.137193101000037],[51.60572350400014,25.03424713700008],[51.61101321700011,25.022365627000028],[51.60230553500008,25.013820705000082],[51.58692467500009,24.95343659100007],[51.57406660200013,24.93439362200007],[51.539398634000065,24.8988711610001],[51.528819207000076,24.87441640800006],[51.52084394600007,24.87059153900014],[51.511729363000086,24.86786530200007],[51.50513756600008,24.864081122000044],[51.50025475400014,24.855373440000047],[51.47421308700006,24.7644717470001],[51.472829623000045,24.75942617400005],[51.467539910000085,24.74868398600006],[51.455821160000085,24.740668036000017],[51.45036868600005,24.72166575700001],[51.44361412900014,24.679754950000103],[51.430430535000085,24.664496161000045],[51.38998457100007,24.642482815000022],[51.3815210300001,24.63507721600004],[51.37614993600005,24.611883856000105],[51.36353600400008,24.596340236000113],[51.34978274800005,24.583807684000107],[51.340586785000085,24.56989166900013],[51.32894941500007,24.584784247000073],[51.3326929050001,24.598863023000032],[51.34164472700012,24.61469147300005],[51.34685306100005,24.63507721600004],[51.33912194100009,24.646185614000075],[51.32113691500006,24.64817942900001],[51.285980665000125,24.645005601000037],[51.28443444100009,24.66250234600008],[51.27808678500014,24.662990627000084],[51.26791425900006,24.65619538000007],[51.254567905000094,24.651800848000075],[51.23698978000004,24.650051174000083],[51.22095787900008,24.644232489000018],[51.21257571700011,24.633693752000056],[51.214854363000086,24.62718333500007],[51.215258294748196,24.6258503608546]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Saudi Arabia","sov_a3":"SAU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saudi Arabia","adm0_a3":"SAU","geou_dif":0,"geounit":"Saudi Arabia","gu_a3":"SAU","su_dif":0,"subunit":"Saudi Arabia","su_a3":"SAU","brk_diff":0,"name":"Saudi Arabia","name_long":"Saudi Arabia","brk_a3":"SAU","brk_name":"Saudi Arabia","brk_group":null,"abbrev":"Saud.","postal":"SA","formal_en":"Kingdom of Saudi Arabia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Saudi Arabia","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":6,"mapcolor13":7,"pop_est":28686633,"gdp_md_est":576500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"SA","iso_a2":"SA","iso_a3":"SAU","iso_n3":"682","un_a3":"682","wb_a2":"SA","wb_a3":"SAU","woe_id":23424938,"woe_id_eh":23424938,"woe_note":"Exact WOE match as country","adm0_a3_is":"SAU","adm0_a3_us":"SAU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":12,"long_len":12,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SAU.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[41.89846671200016,16.751483694000015],[41.90514277300005,16.747581489000183],[41.94139070200006,16.75116873400016],[41.9533205810001,16.733098225000063],[41.97342729100009,16.731661360000103],[41.99359951300008,16.73793060000004],[42.01104810600023,16.739080266000045],[42.02302002200011,16.72742691600014],[42.022920538000136,16.71586723600008],[42.034990405000116,16.715772981],[42.06460613100015,16.728382342000046],[42.03648754900021,16.733744209000136],[42.02173912900017,16.755804755000057],[42.03386478000019,16.773830471000068],[42.04135175900014,16.802313544000082],[42.04786217500006,16.81207916900003],[42.062185092000135,16.814195054000137],[42.06853274800008,16.81175364800019],[42.076508009000094,16.808661200000117],[42.10407567300015,16.79228322900009],[42.1052667430001,16.775576501000117],[42.11849352300007,16.75491615200015],[42.116547071000156,16.74416738500004],[42.1411651110001,16.74059594600014],[42.147694339000026,16.721272629000126],[42.18643824300014,16.705528152000014],[42.18630702700008,16.691396420000146],[42.18346073400002,16.673433531000157],[42.176556340000076,16.65164449300015],[42.1790848640002,16.63491230200013],[42.18819908800006,16.605264236],[42.178233269000174,16.58510976800015],[42.178558790000096,16.58348216400013],[42.15583609500018,16.58497665700007],[42.12797546800019,16.617356664000095],[42.1052530320002,16.625256996000147],[42.08381525800021,16.626718213000075],[42.07317025800009,16.63580135900004],[42.101428298000116,16.647137877000134],[42.11763295000011,16.65985535500006],[42.111113958,16.68046984000013],[42.08575343600009,16.693524802000113],[42.06024241600008,16.689877665000054],[42.030721493000065,16.68754082600016],[42.01055982900007,16.682556774000073],[41.99169372300011,16.672419188000063],[41.975531756000095,16.663553304000132],[41.955457497000076,16.67011498100011],[41.932834471000064,16.690844841000157],[41.916863082000106,16.70509918500015],[41.89408681900014,16.71039431400014],[41.867395677000076,16.728568561000188],[41.84336807700012,16.746720162000045],[41.8314206700002,16.767353533000104],[41.824940756000075,16.79823732400014],[41.807561377000155,16.809920011000187],[41.79008887000006,16.810037359000106],[41.77816816500015,16.81268952000009],[41.780772332000225,16.819322007000054],[41.779560067,16.84095197400013],[41.76489904800022,16.85904389600013],[41.755613940000075,16.87838716600011],[41.75708464000016,16.896372302000042],[41.7718567790001,16.89241394200009],[41.777181518000106,16.88466571000002],[41.78921825800014,16.875586224000173],[41.828084353000094,16.858607997000135],[41.849424303000056,16.835329512000058],[41.860059575000065,16.821122307000067],[41.863916313000146,16.796687312000145],[41.86329186300022,16.785142320000077],[41.881137126000084,16.765737512000058],[41.89846671200016,16.751483694000015]]],[[[41.9451603520001,16.9422875020001],[41.945467515000104,16.923272154000173],[41.939919297000046,16.90147319200004],[41.94380161,16.883458605000143],[41.9759630290001,16.875504874000097],[41.98518076900021,16.85359628900015],[41.94410241000017,16.853013414000046],[41.93230228000019,16.838364976000047],[41.938161655000016,16.82135651200018],[41.96265709700006,16.813137111000074],[41.97657311300023,16.80499909100017],[41.995441670000076,16.79700153600014],[42.001958466000154,16.772556369000185],[42.00184477500008,16.76098747100015],[41.972469625000166,16.77790981600019],[41.936322686000125,16.788455778000028],[41.91889266000007,16.79115485000007],[41.904222599000065,16.80282074300014],[41.88959525900012,16.82091177700015],[41.8643131100001,16.85192683100003],[41.84302971300011,16.880346701000136],[41.83497155000012,16.891669012000094],[41.83497155000012,16.89175039300009],[41.84620201900012,16.9012718770001],[41.870371941000116,16.90265534100017],[41.887950066000116,16.90778229400017],[41.90088951900023,16.91836172100012],[41.910980665000096,16.93602122600005],[41.921234571000156,16.935207424000126],[41.92310631600011,16.93504466400016],[41.92310631600011,16.93508535400015],[41.92847741000017,16.954901434000178],[41.92090905000012,16.97894928600003],[41.907481316000116,16.98480866100006],[41.894053582000225,16.990668036],[41.8811141290001,16.99168528900016],[41.858571811000076,16.996405341000166],[41.84620201900012,16.997463283000044],[41.84376061300006,17.001857815],[41.84376061300006,17.001898505],[41.8514103520001,17.00991445500013],[41.860850457000105,17.013617255],[41.86329186300022,17.004950262000094],[41.89568118600007,17.001898505],[41.92115319100017,16.992010809000178],[41.938161655000016,16.97288646000011],[41.93905683700021,16.96881745000014],[41.9451603520001,16.9422875020001]]],[[[36.999278191000116,25.469427802000112],[37.008962436000076,25.44985586100013],[37.01539147200017,25.450588283000073],[37.01758873800017,25.457709052000112],[37.02173912900011,25.45278554900007],[37.02686608200011,25.419623114000117],[37.03736412900017,25.411810614000142],[37.042328321000156,25.407375393000066],[37.04004967500006,25.40643952000009],[37.03565514400006,25.408189195000162],[37.02808678500011,25.409328518000038],[37.02719160200016,25.405178127000067],[37.031260613000114,25.39874909100017],[37.02328535200016,25.399847723],[37.00359134200019,25.411525783000016],[36.99854576900006,25.42243073100009],[37.00025475400017,25.42918528900013],[36.990570509000094,25.430121161],[36.978282097000175,25.426947333000143],[36.97144616000011,25.43528880400011],[36.966563347000175,25.448960679000052],[36.957530144000174,25.448960679000052],[36.946543816000116,25.44188060099999],[36.94434655000012,25.448797919000086],[36.95183353000019,25.467515367000047],[36.96143639400023,25.47776927299999],[36.97364342500012,25.477850653000147],[36.98747806100002,25.476019598000093],[36.999278191000116,25.469427802000112]]],[[[36.823741082000225,25.459865627000042],[36.84205162900017,25.45075104400003],[36.87712649800008,25.43695709800012],[36.8938908210001,25.432928778000147],[36.906423373000194,25.43162669500005],[36.91570071700002,25.426703192],[36.920258009000094,25.419582424000122],[36.89942467500012,25.418850002000013],[36.8963322270001,25.405951239],[36.90430748800006,25.394110419000057],[36.91627037900011,25.396877346],[36.92847741000017,25.409125067000062],[36.94214928500011,25.418361721000124],[36.958343946000156,25.41901276200018],[36.96143639400023,25.414496161000116],[36.943125847000175,25.405503648000106],[36.935394727000094,25.399969794000086],[36.92481530000012,25.389105536],[36.91480553500017,25.37091705900009],[36.89975019600015,25.361029364],[36.87867272200012,25.37372467700005],[36.859711134000094,25.392889716000028],[36.841481967000135,25.405951239],[36.80128014400012,25.444891669000086],[36.7986759770001,25.447414455000015],[36.79509524800008,25.453273830000125],[36.79509524800008,25.45697663],[36.797048373000194,25.45661041900017],[36.79908287900011,25.458685614],[36.79721113400015,25.46450429900015],[36.78760826900006,25.47443268400015],[36.776133660000106,25.489162502000127],[36.77654056100007,25.49640534100017],[36.787119988000114,25.494086005],[36.79688561300023,25.48655833500005],[36.81519616000011,25.465887762000033],[36.823741082000225,25.459865627000042]]],[[[36.85547936300006,25.536688544000143],[36.849375847000175,25.533026434000092],[36.839854363000114,25.53583405200014],[36.82699629000015,25.547186591000024],[36.82894941500009,25.56134674700003],[36.84131920700017,25.570013739000114],[36.855642123000024,25.568304755000113],[36.8665470710001,25.557521877000042],[36.86605879000015,25.545884507000107],[36.85547936300006,25.536688544000143]]],[[[36.72559655000006,25.565171617000047],[36.77507571700019,25.535386460000055],[36.7806095710001,25.52773672100001],[36.78581790500019,25.516017971000124],[36.80103600400017,25.50763580900015],[36.81666100400017,25.502386786000088],[36.83904056100019,25.48993561400006],[36.874522332000055,25.463324286000116],[36.88331139400023,25.454331773000106],[36.88184655000006,25.45075104400003],[36.87794030000006,25.447699286000145],[36.87916100400011,25.44334544500005],[36.87378991000011,25.44594961100013],[36.85840905000012,25.456854559000117],[36.8450626960001,25.46442291900017],[36.83480879000015,25.46674225500011],[36.83073978000018,25.47308991100006],[36.825450066000116,25.48411692900011],[36.816172722000175,25.48826732000005],[36.809743686000076,25.48578522300012],[36.80062910200016,25.48847077],[36.79021243600019,25.497870184000035],[36.7806095710001,25.504380601000108],[36.77588951900012,25.50551992400015],[36.77133222700016,25.50706614800002],[36.765961134000094,25.514227606000034],[36.76539147200012,25.52423737200003],[36.75652103000019,25.527004299000097],[36.742523634000094,25.529201565000065],[36.73991946700013,25.53270091400016],[36.7439884770001,25.531439520000063],[36.74293053500011,25.535874742000132],[36.73438561300011,25.546616929000052],[36.71924889400011,25.555650132000054],[36.70134524800008,25.554673570000162],[36.6932072270001,25.550197658000013],[36.688812696000156,25.546372789000102],[36.681162957000225,25.544134833000115],[36.681407097000175,25.55345286700016],[36.691254102000094,25.567206122000087],[36.706797722000175,25.571234442000147],[36.72559655000006,25.565171617000047]]],[[[36.92839603000019,25.583807684000035],[36.925791863000114,25.576564846],[36.92115319100017,25.57623932500009],[36.91504967500012,25.58055247599999],[36.91391035200015,25.57880280199999],[36.91651451900022,25.571437893],[36.9158634770001,25.568019924000097],[36.913584832000225,25.56915924700003],[36.92042076900022,25.555121161000088],[36.9275822270001,25.528509833000143],[36.9231876960001,25.519435940000122],[36.9119572270001,25.534979559000035],[36.90544681100013,25.539129950000174],[36.900726759000094,25.549302476000108],[36.89942467500012,25.577785549000122],[36.89812259200019,25.58405182500009],[36.898203972000175,25.595445054000052],[36.904633009000094,25.603176174000154],[36.91439863400015,25.606634833000054],[36.923024936000076,25.602850653000033],[36.92774498800023,25.59308502800009],[36.92839603000019,25.583807684000035]]],[[[36.57032311300006,25.62445709800012],[36.59620201900006,25.60024648600013],[36.60938561300023,25.591538804000052],[36.622894727000094,25.590521552],[36.63111412900011,25.59243398600013],[36.63379967500006,25.589992580000015],[36.63453209700011,25.582912502000124],[36.637950066000116,25.574611721000064],[36.64714603000018,25.570949611000017],[36.65593509200008,25.571844794000114],[36.65739993600013,25.572577216000056],[36.65414472700016,25.57371653900016],[36.65479576900011,25.578070380000057],[36.659434441000116,25.582098700000028],[36.66773522200012,25.581000067],[36.683116082000055,25.57233307500009],[36.68197675900014,25.566351630000085],[36.6760360040001,25.55475495000014],[36.66765384200008,25.54975006700012],[36.660980665000096,25.552801825000117],[36.647797071000156,25.561468817],[36.567718946000156,25.598456122000144],[36.54607181100018,25.603216864000146],[36.53939863400015,25.58917877800009],[36.52947024800014,25.59381745000003],[36.51050866000011,25.61041901200018],[36.49773196700008,25.623968817000147],[36.49146569100011,25.645086981000148],[36.499685092000135,25.662543036000116],[36.52442467500012,25.685777085000137],[36.53532962300008,25.698146877000067],[36.543630405000066,25.70286692899999],[36.54525800900009,25.696478583000054],[36.53939863400015,25.68496328300013],[36.52263431100019,25.66217682500009],[36.52393639400012,25.652899481000144],[36.531016472000175,25.64459870000017],[36.53793379000015,25.639837958000086],[36.54395592500006,25.63963450700011],[36.54883873800023,25.637844143000123],[36.55396569100017,25.63133372600005],[36.56202233200011,25.627183335],[36.57032311300006,25.62445709800012]]],[[[36.58838951900012,25.71426015800013],[36.596039259000094,25.708889065],[36.607595248000024,25.71124909100014],[36.61109459700012,25.70945872600005],[36.605642123000194,25.701117255],[36.5955509770001,25.696600653000033],[36.58301842500012,25.69867584800006],[36.562998894000174,25.713283596000068],[36.55176842500006,25.71979401200015],[36.54428144600009,25.7313500020001],[36.542735222000175,25.739325262000065],[36.54004967500006,25.760484117000047],[36.54249108200011,25.801947333000058],[36.5584416020001,25.836371161],[36.58366946700019,25.857896226000108],[36.59083092500012,25.860541083],[36.5774845710001,25.84857819200006],[36.566579623000024,25.832993882000082],[36.55836022200012,25.815822658000126],[36.55543053500011,25.796332098000065],[36.56413821700019,25.778794664000102],[36.58326256600017,25.762274481000034],[36.59083092500012,25.75934479400003],[36.597829623000194,25.758368231000034],[36.597341342000135,25.751695054],[36.588715040000096,25.73851146000014],[36.585459832000055,25.725490627000156],[36.58668053500017,25.71979401200015],[36.58838951900012,25.71426015800013]]],[[[49.56544030000006,27.35175202],[49.58513431100001,27.344305731000116],[49.63843834700012,27.330633856000176],[49.688812696000156,27.31769440300017],[49.67042076900012,27.311428127000127],[49.65512129000015,27.3146019550001],[49.640391472000054,27.320990302000112],[49.62378991000017,27.32444896000011],[49.607269727000094,27.32245514500009],[49.591807488000114,27.316799221000096],[49.577647332000055,27.308294989000057],[49.56544030000006,27.29779694200009],[49.557465040000146,27.305487372000115],[49.556407097000175,27.304836330000157],[49.55176842500006,27.30402252800006],[49.543630405000016,27.30927155200011],[49.53825931100019,27.311428127000127],[49.53809655000012,27.311468817000115],[49.53809655000012,27.31769440300017],[49.551442905000016,27.32282135600009],[49.5540470710001,27.32827383000013],[49.5540470710001,27.32831452000012],[49.54981530000012,27.334458726000022],[49.5455021490001,27.338324286],[49.54151451900022,27.34186432500009],[49.53126061300011,27.34617747599999],[49.52027428500011,27.344631252000127],[49.5096134770001,27.340887762000122],[49.50025475400017,27.338771877000013],[49.487559441000116,27.33413320500007],[49.47494550900015,27.322333075000117],[49.46387780000012,27.30662669500005],[49.456228061000076,27.290350653000118],[49.45362389400006,27.316392320000162],[49.472178582000055,27.342027085000055],[49.501231316000116,27.360541083000058],[49.53126061300011,27.36546458500011],[49.54249108200011,27.363714911000116],[49.55103600400011,27.360052802000084],[49.56544030000006,27.35175202]]],[[[39.94859989400018,32.00610951700013],[40.02880171700005,31.99448232000016],[40.029008423000136,31.99448232000016],[40.02911177600006,31.994430644000044],[40.02931848200021,31.99437896700014],[40.37027958200022,31.93846506800004],[40.42412642400009,31.92053334500018],[40.47983361800013,31.892834778000132],[40.582669719000165,31.840434876000113],[40.67031294700004,31.795683086000153],[40.75816288200022,31.751086324000042],[40.84590946500006,31.706334534000074],[40.9335526940001,31.661634420000137],[41.02129927500002,31.61693430600009],[41.10904585800009,31.572285868000147],[41.19668908700007,31.527585755000118],[41.284539022000075,31.482833964000132],[41.37218225100017,31.438133850000025],[41.45982548000009,31.393433736000148],[41.54757206200023,31.348733623000115],[41.635421997000066,31.304033508000156],[41.7230652260001,31.259385071000125],[41.810708455000196,31.214684958000092],[41.89855839000009,31.169984843000133],[41.98620162000011,31.125284729],[42.07539514200002,31.079861145000066],[42.14164432800012,31.030406800000108],[42.22629032400002,30.967464905000117],[42.31072961400017,30.904523010000116],[42.39516890500013,30.841581116000114],[42.4797115480001,30.77863922200011],[42.574486125000156,30.70763580300003],[42.66915734900007,30.63668406200004],[42.76393192600019,30.565628967000134],[42.7834125790001,30.551045032000143],[42.85870650200015,30.494677226000153],[42.85880985500009,30.494625549000045],[42.85891320800013,30.49457387300013],[42.85901656000007,30.49452219600012],[42.964746541000096,30.420004782000078],[43.052906535000055,30.357786357000162],[43.14096317500016,30.295671285000182],[43.22907149300008,30.233504537],[43.317231486000225,30.17133778900002],[43.431746460000085,30.090567526000157],[43.546364787000094,30.009797262000017],[43.66098311400006,29.929026998000083],[43.77549808800009,29.84820505800012],[43.82401296300006,29.813979859000185],[43.89006473800012,29.767383118000158],[44.00463138800009,29.6866128540001],[44.119146362000066,29.605816752000138],[44.23366133600004,29.524994812],[44.32895267700021,29.457789613000113],[44.424295695000154,29.390532736000136],[44.51974206500008,29.32332753500019],[44.61487837800021,29.256070659000116],[44.69182458500015,29.2018362430001],[44.69823246200011,29.199717510000095],[44.704640341000214,29.1974954220001],[44.71089318800014,29.195273336000113],[44.717456095000074,29.19310292600004],[44.808923381000135,29.185894064000152],[44.888711792000116,29.179512024000033],[44.968293498000065,29.17325917600012],[45.04782352700008,29.1669029750001],[45.12745690900007,29.160624288000076],[45.22998295100015,29.152459412000088],[45.33240564000019,29.144372050000175],[45.43493168100022,29.136207174000063],[45.53740604700007,29.12811981200015],[45.63988041200011,29.120032450000068],[45.742406453000086,29.111867575000062],[45.84493249500022,29.103754374000133],[45.94735518400009,29.095641174000136],[46.0236295980001,29.089595032000187],[46.09969730700007,29.083574728000073],[46.17592004400009,29.07747690899999],[46.25214278200011,29.071456604000062],[46.357459350000084,29.063136699000026],[46.4011776130001,29.071275737000022],[46.42732232000017,29.076143103000145],[46.44489587400008,29.07941477500013],[46.4886141360001,29.087579652000144],[46.532435750000126,29.09574452700015],[46.644160197000105,29.08362640400016],[46.75578129100015,29.07153411899999],[46.867350708000146,29.059415996],[46.97923018400016,29.04722035800007],[47.0787589920001,29.035748190000064],[47.17839115400008,29.02422434500012],[47.278023316000116,29.012700501],[47.377552124000054,29.001202495000154],[47.43336267100014,28.994717102000113],[47.43346602400007,28.994717102000113],[47.43398278800012,28.99461375],[47.434086141000215,28.994587911000067],[47.44632323400012,28.976242739],[47.49449589100007,28.90402496300008],[47.5499447020002,28.770596416000114],[47.554595581000086,28.745378317000146],[47.55841963700013,28.691479798000117],[47.568031453000145,28.66099070200012],[47.58167403200011,28.631483459000105],[47.596815227000064,28.608823344000157],[47.61815759300006,28.59148590100015],[47.64110192900009,28.57724904399999],[47.65980879700006,28.560040792],[47.66812870300012,28.533504944000086],[47.721820516000115,28.533970032000024],[47.89958744300011,28.535623678000075],[48.07740604600022,28.537277324000044],[48.255224650000144,28.53887929300005],[48.43278122712192,28.54047972316242],[48.43279056100013,28.540472723],[48.456390821000156,28.5184593770001],[48.468760613000114,28.510646877000013],[48.49463951900012,28.50014883000013],[48.49854576900012,28.492905992000104],[48.5076603520001,28.449164130000113],[48.50782311300023,28.41571686400006],[48.499034050000056,28.393377997000055],[48.47608483200011,28.400783596000124],[48.47120201900012,28.39419179900015],[48.469981316000116,28.39130280200011],[48.468760613000114,28.387111721000096],[48.48829186300006,28.385891018000063],[48.50489342500012,28.38963450700011],[48.51734459700006,28.398993231000034],[48.52393639400012,28.414455471000064],[48.53549238400015,28.407619533000126],[48.534922722000175,28.39866771000011],[48.52393639400012,28.38031647300006],[48.51783287900011,28.354193427000112],[48.51710045700011,28.34243398600013],[48.52222741000011,28.31883372599999],[48.534922722000175,28.29881419500013],[48.61841881600017,28.21727122599999],[48.62354576900006,28.205267645000063],[48.60914147200012,28.18610260600012],[48.60173587300019,28.16738515800013],[48.600840691000116,28.14777252800017],[48.60645592500011,28.126450914000102],[48.61646569100011,28.110541083],[48.64812259200008,28.071966864000114],[48.65479576900023,28.061590887000122],[48.653330925000056,28.049872137000037],[48.652110222000054,28.046087958000115],[48.6678166020001,28.037665106000148],[48.70199629000009,28.023993231000034],[48.712901238000114,28.022894598000093],[48.747080925000056,28.023993231000034],[48.75586998800023,28.021714585000055],[48.77588951900011,28.01194896000011],[48.787933790000096,28.00971100500011],[48.79200280000006,28.007025458000058],[48.79151451900012,28.000799872000087],[48.788259311000076,27.993882554],[48.78451582100009,27.989243882000082],[48.77808678500011,27.98663971600017],[48.77133222700016,27.987005927],[48.76400800900014,27.989243882000082],[48.74683678500011,27.981634833000115],[48.742360873000074,27.975246486000017],[48.743662957000055,27.96133047100012],[48.753265821000156,27.947984117000104],[48.773285352000094,27.92975495000003],[48.7962345710001,27.91364166900014],[48.81470787900011,27.906683661000088],[48.81519616000011,27.90224844],[48.837657097,27.87230052300013],[48.87794030000012,27.836818752000124],[48.8826603520001,27.826727606000176],[48.87378991000017,27.80658600500014],[48.872569207000225,27.79389069200009],[48.87338300900015,27.7821312520001],[48.876719597000175,27.777004299000097],[48.874522332000105,27.769924221000124],[48.86548912900016,27.754055080000096],[48.852793816000116,27.737494208000115],[48.839203321000156,27.72858307500009],[48.84620201900023,27.74030182500017],[48.847666863000114,27.748724677000112],[48.845469597,27.77326080900015],[48.848480665000096,27.787298895],[48.85425866000016,27.79535553600014],[48.857595248000194,27.80353424700014],[48.85287519600009,27.817938544000114],[48.83806399800014,27.804022528000033],[48.82178795700011,27.766831773000135],[48.805023634000094,27.75649648600013],[48.82341556100013,27.799627997000144],[48.8255314460001,27.81110260600009],[48.82056725400017,27.83002350500011],[48.81251061300023,27.82859935100005],[48.8040470710001,27.81500885600009],[48.78516686300006,27.744696356000148],[48.78451582100009,27.72858307500009],[48.78223717500006,27.726141669000143],[48.778819207000225,27.719549872000172],[48.78003991000017,27.71409739800005],[48.79135175900015,27.714911200000145],[48.79688561300023,27.71971263200014],[48.803965691000116,27.736476955000157],[48.811289910000106,27.742824611000103],[48.811289910000106,27.69818756700012],[48.815277540000096,27.687567450000174],[48.82455488400014,27.68895091400016],[48.83399498800006,27.697455145],[48.839203321000156,27.708075262000037],[48.84620201900023,27.697088934000178],[48.84734134200007,27.683823960000055],[48.845469597,27.667141018],[48.85808353000019,27.6628278670001],[48.86768639400006,27.667792059000146],[48.87501061300006,27.67747630400011],[48.88013756600017,27.687567450000174],[48.88054446700019,27.670314846000064],[48.878428582000055,27.6642113300001],[48.87330162900017,27.659654039000042],[48.878184441000116,27.650580145000145],[48.87712649800008,27.644476630000057],[48.870616082000105,27.641180731000116],[48.85962975400011,27.640448309000174],[48.86980228000019,27.618557033000155],[48.87330162900017,27.612494208000054],[48.84896894600009,27.62335846600014],[48.83887780000006,27.62319570500007],[48.831797722000175,27.612494208000054],[48.852793816000116,27.604641018000066],[48.87077884200008,27.60561758000013],[48.88477623800011,27.61505768400015],[48.893809441000116,27.632961330000015],[48.90064537900011,27.632961330000015],[48.907481316000165,27.61871979400011],[48.89527428500017,27.60773346600014],[48.89112389400023,27.588120835],[48.89673912900011,27.57200755400011],[48.91431725400017,27.571519273000135],[48.921641472000175,27.578843492000047],[48.917246941000116,27.585842190000122],[48.9095158210001,27.592678127000127],[48.907481316000165,27.599432684000178],[48.915293816000116,27.608628648000046],[48.92603600400017,27.613836981000063],[48.949066602000094,27.61871979400011],[48.968516472000054,27.620347398000135],[48.98170006600017,27.614569403000175],[49.01734459700006,27.585191148000074],[49.054209832000105,27.56826406500009],[49.063975457000225,27.556341864000146],[49.044688347,27.544175523000078],[49.05892988400009,27.53815338700015],[49.07162519600015,27.539496161000145],[49.077647332000055,27.54653554900004],[49.07203209700017,27.557847398000103],[49.08887780000006,27.55109284100017],[49.10629316500015,27.54686107000005],[49.144297722000054,27.544175523000078],[49.152679884000094,27.54633209800006],[49.17042076900012,27.555731512000094],[49.17847741000011,27.557847398000103],[49.18897545700011,27.556708075000145],[49.20875084700006,27.551581122000144],[49.219574415000146,27.550441799000012],[49.239756707000055,27.54511139500015],[49.255137566000116,27.532375393],[49.278086785000106,27.50324127800003],[49.285329623000194,27.497626044000057],[49.29249108200017,27.49412669500005],[49.29908287900011,27.489894924000126],[49.30534915500019,27.482123114000117],[49.307871941000116,27.474514065000093],[49.309825066000116,27.456691799000012],[49.31275475400017,27.448635158000073],[49.3001408210001,27.448065497000115],[49.29265384200013,27.452948309000178],[49.28988691500015,27.462347723],[49.29175866000011,27.475327867000185],[49.284922722,27.475327867000185],[49.26392662900017,27.452866929],[49.2088322270001,27.458075262000094],[49.18921959700006,27.44114817900011],[49.18189537900016,27.44114817900011],[49.175059441000116,27.45831940300003],[49.15772545700022,27.458482164000188],[49.119802280000016,27.44114817900011],[49.12810306100019,27.4369164080001],[49.150075717000135,27.43134186400009],[49.161387566000116,27.426906643],[49.17025800900015,27.421047268000066],[49.176117384000094,27.415838934000146],[49.183116082000055,27.411118882000054],[49.195485873000194,27.40643952000015],[49.20199629000009,27.398667710000137],[49.20704186300023,27.39516836100013],[49.21257571700008,27.39679596600017],[49.22950280000006,27.411810614],[49.22966556100019,27.41388580900012],[49.23503665500007,27.41815827000012],[49.23731530000012,27.42397695500007],[49.24024498800022,27.42719147300012],[49.246918165000096,27.42377350500011],[49.254567905,27.417792059000117],[49.263845248000194,27.41388580900012],[49.25684655000012,27.40005117400004],[49.247325066000116,27.393133856000116],[49.23747806100019,27.38812897300009],[49.22966556100019,27.379706122000027],[49.22673587300008,27.368719794000167],[49.22608483200022,27.342759507000082],[49.22339928500011,27.33128489800013],[49.23406009200008,27.333889065000122],[49.24577884200008,27.339422919000143],[49.25733483200011,27.346909898000106],[49.26742597700016,27.355210679],[49.278819207000225,27.358791408000073],[49.29216556100002,27.355454820000045],[49.31275475400017,27.344956773000078],[49.304860873000194,27.325506903000175],[49.307871941000116,27.306301174000012],[49.315114780000016,27.286810614000117],[49.319021030000016,27.266424872000144],[49.31706790500007,27.223700262000033],[49.322601759000094,27.205715236000103],[49.33952884200007,27.207831122000115],[49.33838951900023,27.18960195500004],[49.34522545700016,27.182806708],[49.35596764400006,27.18500397300009],[49.36687259200002,27.19415924700017],[49.36182701900011,27.209133205000015],[49.370860222,27.218736070000162],[49.386403842000014,27.21963125200007],[49.40088951900006,27.207831122000115],[49.40707441500015,27.215277411000088],[49.41236412900011,27.204006252000095],[49.409434441000116,27.19391510600003],[49.40398196700008,27.18329498900009],[49.40088951900006,27.170233466000113],[49.397471550000056,27.16258372600008],[49.38884524800008,27.159328518000123],[49.37769616000011,27.159165757000082],[49.36687259200002,27.160630601000136],[49.3748478520001,27.149074611000103],[49.39909915500019,27.14472077],[49.40707441500015,27.132717190000093],[49.41716556100019,27.138128973000118],[49.423594597,27.1464704450001],[49.43506920700005,27.166815497000087],[49.43588300900009,27.16233958500014],[49.43677819100017,27.16176992400007],[49.43848717500006,27.162054755],[49.44190514400006,27.160630601000136],[49.43189537900011,27.142767645000063],[49.44019616000016,27.13979726800015],[49.465668165000096,27.14695872599999],[49.48129316500015,27.14443594000006],[49.50831139400012,27.133978583],[49.52442467500006,27.132717190000093],[49.49732506600017,27.159084377000095],[49.489105665000146,27.174750067000062],[49.50407962300019,27.18793366100003],[49.516449415000096,27.18838125200001],[49.52613366000016,27.182806708],[49.53492272200006,27.176174221000124],[49.54493248800023,27.173651434000117],[49.55274498800022,27.176743882],[49.57211347700016,27.19415924700017],[49.56861412900017,27.178290106000034],[49.559418165000096,27.15399811400006],[49.55860436300006,27.139553127000013],[49.56462649800008,27.116685289000188],[49.570078972,27.10407135600012],[49.575531446000156,27.09857819200009],[49.59424889400012,27.090725002000013],[49.61247806100019,27.071966864000146],[49.67017662900017,26.990912177],[49.69947350400016,26.958238023000078],[49.708262566000116,26.952134507000082],[49.73666425900015,26.94090403900016],[49.74586022200006,26.934271552000112],[49.76050866000011,26.92064036700016],[49.770843946000156,26.9135602890001],[49.83301842500006,26.888006903000118],[49.87183678500017,26.862494208000115],[49.894053582000225,26.860296942000115],[49.917246941000165,26.861476955000157],[49.94214928500011,26.85834381700009],[49.972992384000094,26.842352606000176],[50.00196373800006,26.816961981000148],[50.05201256600017,26.75592682500009],[50.069102410000106,26.728583075000113],[50.1419376960001,26.681341864000146],[50.15845787900017,26.664862372000144],[50.161875847000054,26.63922760600009],[50.11670983200011,26.675360419000025],[50.09253991000011,26.689113674000126],[50.03785241000017,26.695217190000122],[50.02369225400011,26.699530341000028],[50.014008009000094,26.710760809000035],[50.00635826900006,26.747626044000114],[49.99756920700011,26.74135976800015],[49.988454623000194,26.72443268400015],[49.9837345710001,26.70819733300011],[49.98292076900006,26.69570547100004],[49.983246290000096,26.6837425800001],[49.98650149800002,26.672756252000127],[49.99366295700011,26.66315338700015],[50.003672722000175,26.653631903000147],[50.00635826900006,26.64858633000004],[50.00220787900011,26.587388414000188],[50.003672722000175,26.570705471000153],[50.030609571000156,26.49461497600005],[50.04184004000015,26.478461005],[50.05827884200002,26.46393463700015],[50.076508009000094,26.453762111000017],[50.162282748000074,26.42706940300009],[50.191579623000194,26.403550523000135],[50.20923912900011,26.36953359600001],[50.216563347,26.32391998900006],[50.21599368600002,26.215073960000055],[50.2122501960001,26.191310940000147],[50.201996290000096,26.17137278900016],[50.18238366000011,26.160101630000085],[50.18189537900011,26.175482489000032],[50.1740828790001,26.180731512000094],[50.1634220710001,26.177232164000102],[50.15455162900017,26.166245835000055],[50.16098066500015,26.14109935100008],[50.158376498000074,26.102484442],[50.150401238000114,26.06321849200019],[50.141368035000106,26.035956122000087],[50.12582441500009,26.04645416900017],[50.121429884000094,26.060736395000063],[50.12183678500011,26.076483466000028],[50.12029056100019,26.091213283000013],[50.113291863000114,26.103257554000106],[50.10434004000009,26.111232815000093],[50.09489993600007,26.117621161],[50.08676191500015,26.125311591000028],[50.081309441000116,26.12909577000015],[50.07667076900006,26.12909577000015],[50.0735783210001,26.131537177],[50.071625196000156,26.159247137000147],[50.069590691000116,26.165961005000113],[50.065684441000116,26.173732815000033],[50.05787194100011,26.183579820000045],[50.04566491000017,26.194525458],[50.03239993600002,26.201076565000093],[50.02100670700005,26.197658596000068],[49.99488366000011,26.152167059000092],[49.98682701900006,26.14581940300017],[49.975840691000116,26.139593817000115],[49.98096764400012,26.126125393000123],[49.9915470710001,26.11310455900006],[49.997325066000116,26.108221747000172],[49.999522332000225,26.10089752800017],[50.008799675000056,26.086493231000087],[50.01042728000013,26.076890367000132],[50.007090691000165,26.07440827],[50.000173373000074,26.072170315000122],[49.99317467500012,26.068060614000057],[49.99000084700006,26.060451565000122],[49.992360873000194,26.04588450700002],[49.99610436300023,26.03172435099999],[49.99691816500015,26.017279364000117],[49.99000084700006,26.00177643400012],[50.00684655000006,25.996527411000116],[50.02100670700005,26.00446198100009],[50.028168165000096,26.019476630000113],[50.02409915500007,26.035956122000087],[50.03370201900012,26.033351955000015],[50.040537957000225,26.028265692000087],[50.05201256600017,26.015448309000064],[50.05738366000011,26.01316966400016],[50.061696811000076,26.014146226000047],[50.06462649800008,26.013373114000117],[50.065684441000116,26.005519924000122],[50.0657658210001,25.99945709800015],[50.06690514400005,25.99628327000009],[50.069834832000055,25.995103257000054],[50.07593834700006,25.99502187700007],[50.101328972000175,25.98948802300005],[50.11150149800013,25.976019598000065],[50.11670983200011,25.95823802299999],[50.12769616000017,25.94037506700012],[50.12769616000017,25.93353913],[50.107758009000094,25.91474030200005],[50.11833743600002,25.867865302],[50.1419376960001,25.81610748900009],[50.161875847000054,25.782700914000102],[50.22201582100015,25.717352606000034],[50.24724368600019,25.67942942900011],[50.25749759200002,25.631903387000094],[50.25123131600017,25.631903387000094],[50.2337345710001,25.679510809000092],[50.226735873000074,25.68716054900004],[50.21461022200006,25.689642645000145],[50.19996178500011,25.69586823100009],[50.18751061300023,25.703558661000116],[50.17497806100002,25.720445054000106],[50.15919030000006,25.73175690300009],[50.14470462300002,25.733343817000115],[50.141368035000106,25.71381256700006],[50.1486922540001,25.699855861000074],[50.17432701900006,25.68301015800007],[50.18238366000011,25.67283763200014],[50.187673373000194,25.68292877800009],[50.18921959700006,25.68716054900004],[50.19605553500017,25.68716054900004],[50.23406009200008,25.615179755000085],[50.347992384000094,25.482123114000057],[50.37427819100011,25.461167710000108],[50.37134850400016,25.474514065000122],[50.36475670700011,25.490057684000035],[50.36198978000007,25.502997137000037],[50.37077884200013,25.50836823100009],[50.38135826900006,25.512884833000058],[50.385915561000125,25.51064687700007],[50.389984571000156,25.488674221000153],[50.39503014400012,25.483303127000013],[50.399912957000055,25.480373440000065],[50.40211022200017,25.47797272300012],[50.410166863000114,25.464097398000046],[50.42872155000012,25.456203518000063],[50.46290123800011,25.446926174],[50.471527540000096,25.437201239000057],[50.490896030000016,25.392279364000057],[50.483409050000056,25.385443427000055],[50.495616082000225,25.370062567],[50.5091251960001,25.343573309000035],[50.520355665000096,25.31476471600011],[50.525075717000185,25.292669989000117],[50.52393639400006,25.280218817],[50.518728061000076,25.25800202000012],[50.51758873800023,25.24485911700016],[50.51978600400011,25.232123114000114],[50.52442467500006,25.223089911000116],[50.529063347000175,25.216294664000188],[50.53467858200011,25.199042059000178],[50.54908287900017,25.174790757],[50.55160566500015,25.15949127800003],[50.54542076900012,25.118597723],[50.55347741000011,25.07794830900009],[50.562185092000135,25.054836330000157],[50.57276451900006,25.04287344000012],[50.580414259000094,25.062160549000065],[50.606293165000096,25.042710679000052],[50.633474155000016,25.011419989],[50.6447860040001,24.995062567],[50.66163170700011,24.97996653900016],[50.68140709700006,24.913885809000174],[50.70655358200011,24.89887116100006],[50.7264103520001,24.88165924700003],[50.735036655000016,24.843410549000097],[50.73731530000006,24.782171942000062],[50.741465691000116,24.770575262000033],[50.75001061300022,24.753119208000086],[50.760590040000096,24.736395575000145],[50.7713322270001,24.726955471000124],[50.78614342500006,24.727240302000084],[50.80787194100017,24.746649481000176],[50.88100752800008,24.63640431800003],[50.92860152200009,24.58720835400005],[50.97888269100005,24.56772633900006],[51.038879028000075,24.55987152100012],[51.09546472200023,24.56018158000002],[51.147451213000096,24.57627878900008],[51.21525829474822,24.625850360854557],[51.21526126400008,24.625840562000135],[51.21762129000015,24.617661851000136],[51.268809441000165,24.624497789000046],[51.278168165000096,24.61888255400005],[51.286387566000116,24.608384507000082],[51.29517662900011,24.602606512000122],[51.306407097000175,24.610825914000102],[51.30746504000015,24.603094794000082],[51.30632571700019,24.594061591000084],[51.30241946700019,24.586615302000112],[51.29590905000012,24.583563544000025],[51.290293816000116,24.578517971000096],[51.29224694100017,24.567816473000065],[51.29688561300011,24.558091539000102],[51.29957116000017,24.556219794000143],[51.29656009200008,24.521918036],[51.30241946700019,24.517157294000086],[51.320078972,24.522691148000106],[51.33366946700008,24.53204987200006],[51.36109459700006,24.576117255000142],[51.37517337300008,24.589097398000046],[51.38795006600011,24.5970726580001],[51.3958439460001,24.608343817000087],[51.39527428500011,24.63133372600008],[51.4100041020001,24.62433502800009],[51.42839603000007,24.622870184000035],[51.44385826900005,24.619696356000144],[51.45045006600017,24.607407945000105],[51.45533287900011,24.59418366100006],[51.467539910000106,24.59235260600009],[51.48308353000019,24.592189846000124],[51.49830162900017,24.583563544000025],[51.49830162900017,24.576117255000142],[51.482106967000014,24.569240627000124],[51.46143639400011,24.563462632000082],[51.443695509000094,24.55475495000009],[51.436208530000066,24.538804429],[51.43230228000007,24.538763739],[51.4095158210001,24.51585521],[51.40479576900012,24.507757880000057],[51.3997501960001,24.494574286000116],[51.39527428500011,24.487941799000154],[51.33619225400011,24.447943427000027],[51.32691491000011,24.436102606000063],[51.32422936300006,24.431301174000154],[51.31137129000015,24.414862372000144],[51.306407097000175,24.40599192900011],[51.30437259200008,24.39618561400009],[51.302256707000225,24.374009507000107],[51.29957116000017,24.36444733300011],[51.29908287900016,24.358710028000147],[51.299978061000076,24.351996161000027],[51.29965254000015,24.346340236000017],[51.29590905000012,24.34393952000006],[51.285166863000114,24.344468492000047],[51.28044681100019,24.34357330900015],[51.278575066000116,24.340521552000055],[51.27784264400011,24.31899648600013],[51.278819207000055,24.30776601800015],[51.28223717500006,24.302964585000055],[51.34498131600017,24.297796942000062],[51.367849155000066,24.302964585000055],[51.380137566000116,24.30996328300013],[51.3885197270001,24.316555080000015],[51.39779707100015,24.321519273000078],[51.41285241000017,24.323472398000106],[51.47901451900006,24.310858466000028],[51.496918165000096,24.298285223000118],[51.52613366000011,24.268255927],[51.56934655000006,24.25617096600008],[51.575538778000094,24.21772186300016],[51.575228719000194,24.191935324000053],[51.57316166200016,24.127830709000037],[51.578536011000125,24.101837464000184],[51.59352217700009,24.07832468700009],[51.650469605000154,24.01060272300019],[51.70255944800007,23.948591003000143],[51.75475264500008,23.886553446000093],[51.806842489000104,23.824490051000126],[51.85903568500012,23.762530009],[51.91122888200019,23.700518290000147],[51.96342207800009,23.638558248000106],[52.01551192300022,23.57649485300014],[52.067705119000124,23.514483134],[52.11979496300008,23.452523092000046],[52.171988159000165,23.390485535000025],[52.22407800300019,23.328422140000143],[52.276271200000075,23.266410421],[52.32830936600013,23.20445037800006],[52.38050256400012,23.142412822],[52.43264408400009,23.080375265000143],[52.48483728100004,23.018337708],[52.538477417000216,22.95474985800011],[52.55847619600015,22.938575134000118],[52.58307417800003,22.931107890000092],[52.743787883000124,22.911341654000026],[52.88279748500011,22.89423675600007],[53.02180708900007,22.877131857000123],[53.160920044000164,22.86005279600009],[53.29992964700014,22.842973735000143],[53.43893925000012,22.825868835],[53.578052206000194,22.80876393700005],[53.71706180800007,22.791684876000105],[53.8560714110001,22.774579977000073],[53.995287720000164,22.7574492400001],[54.13429732200021,22.740318502000047],[54.27330692600017,22.723265279000103],[54.41241988100009,22.706160380000156],[54.55132613100014,22.689003805000098],[54.69033573400011,22.67195058200015],[54.82944869000019,22.654897360000135],[54.9685616460001,22.63774078400017],[55.10529748500008,22.62094594300011],[55.12038700400015,22.623426412000086],[55.186842895000126,22.703576559000066],[55.2504049070001,22.605494690000015],[55.33112349500013,22.480592754000085],[55.41204878800008,22.35569081700005],[55.49276737500023,22.2307888800001],[55.57358931500019,22.105938619000185],[55.626712687000094,22.023773092000155],[55.637047973000136,22.001913961000028],[55.63756473800018,21.97896962500009],[55.600171397000196,21.866059974000038],[55.59519006400015,21.85101877900003],[55.58857548000017,21.831226705000134],[55.57007531800011,21.775416158000084],[55.54123986800019,21.688651428000114],[55.503826131000125,21.576151836000136],[55.459591105000214,21.44303334600006],[55.410188436000084,21.29446360300001],[55.35747847500008,21.135558573000125],[55.34462359900013,21.096908734000106],[55.30290816200013,20.971485901000147],[55.24833785000013,20.807413228000158],[55.19552453600008,20.648559875],[55.14622521900017,20.49999013300014],[55.101886841000095,20.36684580500015],[55.064473104000086,20.254268697000086],[55.03574100800003,20.167555644000018],[55.0171374920001,20.111745097000053],[55.010522909000116,20.09200470000009],[54.978380168000086,19.99542144800013],[54.827898396000165,19.945269471000117],[54.656746053000084,19.888192851000028],[54.485593710000074,19.83119374600004],[54.31464807200021,19.774194641000047],[54.143495728000204,19.717143860000032],[53.97224003100009,19.660118917000048],[53.80108768700009,19.603068136000118],[53.63003869600013,19.54599151600003],[53.4588863530001,19.488992411000037],[53.28783736200015,19.43194163000014],[53.1165816650001,19.37491668700015],[52.945532674000134,19.317865906000137],[52.77438033000013,19.260789286000048],[52.60312463300008,19.20379018100006],[52.432127319000216,19.146739401000147],[52.26107832800008,19.08968862000013],[52.08992598400007,19.032637838000042],[51.97861495000021,18.99563751300009],[51.82069177300011,18.974372661000118],[51.66049483200018,18.952823588000157],[51.50029789200008,18.9312486780001],[51.3401009520002,18.90969960600013],[51.179904012000094,18.888150533],[51.0198104250002,18.866575622000127],[50.859716838000196,18.84502655100006],[50.69936486900022,18.82352915500003],[50.53932295700022,18.80190256700014],[50.379126018000214,18.780353495],[50.218929078000116,18.75885609900014],[50.05873213700007,18.737255351],[49.89853519700014,18.715706279000027],[49.73844161000014,18.69415720700009],[49.5782446690001,18.67260813400013],[49.4180477290001,18.65105906200007],[49.25785079000016,18.629509989000113],[49.128814738000095,18.61209503200008],[49.035848837000145,18.579719747000084],[48.99130375200011,18.557886454000066],[48.84753991700009,18.487709860000095],[48.675974162000074,18.404019877000152],[48.48435795100008,18.31040802000011],[48.3125854900002,18.22658884700003],[48.18442793700009,18.16393117300011],[48.161948690000116,18.148919169000052],[48.08438236500009,18.055901591000165],[47.99358687400015,17.947587789000025],[47.835508667000084,17.75819366400016],[47.68626713000006,17.579651591000143],[47.589012085,17.463276265000147],[47.57211389200015,17.432322083000127],[47.524829956000104,17.30757517500005],[47.45796065300013,17.130893453000127],[47.428568591,17.09310365900005],[47.42757491100016,17.091826070000124],[47.31357670100007,17.02790232400004],[47.19089685000003,16.95891428600002],[47.16133793100013,16.947442119000083],[47.12878177900009,16.9430496210001],[46.99702637400017,16.948514131000067],[46.98300256400009,16.949095764000116],[46.97034183800022,16.956847229000132],[46.88579919400016,17.069553528000156],[46.811798543000144,17.16846221900012],[46.74720300300012,17.254761861000176],[46.71009932500013,17.275380758],[46.48789066500015,17.245976868000085],[46.32262943500015,17.22406606000014],[46.07995690900012,17.24799224900015],[45.8908211670001,17.266647441000103],[45.6423092040001,17.29109039400005],[45.43038415500021,17.31201934800005],[45.38470219000006,17.326488749000177],[45.22212813300021,17.41738759400006],[45.165387411000125,17.42839467400016],[44.99733565200003,17.429531556000157],[44.97246636800016,17.42969619600011],[44.84902429200022,17.430513407000134],[44.64645267700021,17.43180531900019],[44.6246452230001,17.427206116000136],[44.561961711000066,17.404468486000056],[44.53379805500011,17.40286651700002],[44.46517175300008,17.416457418000117],[44.40414188700018,17.418731181000126],[44.30735192900008,17.408964336000096],[44.23056075000008,17.391859436000132],[44.211543824000074,17.390619202],[44.16937585500008,17.402349752000177],[44.14901534000015,17.404830220000164],[44.13428755700013,17.39470164],[44.11966312600006,17.369948629000177],[44.104470256000155,17.351965231000104],[44.08534997600023,17.343438619000082],[44.05935673000007,17.347055969000067],[44.02096114100007,17.366021220000032],[44.003907918000124,17.367829896],[43.982307170000155,17.35682281500011],[43.967114299000144,17.339562887000127],[43.95429854300008,17.32002919600002],[43.93869226000012,17.30519806000008],[43.91512780800011,17.30183909100016],[43.9032939050002,17.30431956000014],[43.89735111500008,17.307368470000156],[43.89404382300009,17.31217437800008],[43.89006473800012,17.320184225000062],[43.892648560000076,17.340079651000067],[43.892648560000076,17.35103505500014],[43.88670577000019,17.353670553000157],[43.863244670000114,17.34695261600005],[43.845778035000166,17.34617747000011],[43.806193888000195,17.349588115000145],[43.76878015100013,17.34550567600006],[43.75064172400019,17.34566070600009],[43.730642945000085,17.35243031900002],[43.68930179900022,17.38384958900015],[43.619538615000096,17.458832093000026],[43.57706058700015,17.482964986000084],[43.50336999500021,17.513454081000177],[43.48714359600009,17.51748484300016],[43.453140503000185,17.518776754000115],[43.434950399000144,17.522859192000126],[43.41288456200007,17.51996531200014],[43.39102543100009,17.511955465000156],[43.3030721430002,17.45903879800009],[43.2159456790001,17.387208557000164],[43.16788659700009,17.33051951100016],[43.1650443930001,17.325920308000107],[43.22219852700002,17.30783355700011],[43.241835571000166,17.293415833],[43.252170858000085,17.271970114000155],[43.24860518400013,17.25191965800012],[43.226177612000214,17.24127431200013],[43.20333663000011,17.23631337500016],[43.176878296000126,17.22551300100004],[43.1561560470001,17.209700013000045],[43.15005822800006,17.189959615000177],[43.150988404000174,17.166860251000102],[43.145303996000024,17.14655141200008],[43.12432336500015,17.106967265000133],[43.11843225100014,17.08624501600009],[43.1224630130001,17.070121969000027],[43.13031783000005,17.05348215700009],[43.1360022380002,17.031416321],[43.1358988850001,17.00960886700007],[43.13155806500012,16.990436910000156],[43.11543501800022,16.951834616000085],[43.108717082000084,16.926978252000122],[43.11264449100017,16.91002838200002],[43.1337284750002,16.871012675000102],[43.14582076000008,16.834477438000093],[43.1573446040002,16.825382385000026],[43.194448283000185,16.815460510000108],[43.20473189300017,16.807709046000028],[43.21150150500014,16.796856995000084],[43.21284509200009,16.783886210000148],[43.20860762500015,16.773395894000185],[43.201062867000104,16.768124899000057],[43.19186446100011,16.764249166000113],[43.18287276200013,16.757996317],[43.168506714000074,16.737222392000163],[43.17067712400015,16.723476461000033],[43.179772176000114,16.708231914000077],[43.185678910000064,16.684847057000027],[43.186076701000125,16.683272196000118],[43.17997888200014,16.664617004000135],[43.16292565900014,16.661516419000108],[43.122773071000125,16.67329864600019],[43.097761678000126,16.677794495000015],[43.08494592300022,16.67257517500009],[43.07998498600008,16.65882924400016],[43.0786413980002,16.637693584000132],[43.07461063600013,16.61878000900016],[43.04877242000012,16.553460999000137],[43.036266723000125,16.53630442400008],[43.014665975000156,16.52069814100004],[42.970947713000065,16.495790100000146],[42.95627160600006,16.490725810000082],[42.91741092900011,16.483801168000113],[42.906765584000226,16.479356995],[42.90294152800018,16.466282857000134],[42.90562870300013,16.451089986000042],[42.906765584000226,16.434915263000118],[42.89818729700019,16.418895569000156],[42.87245243400011,16.401635641],[42.837312459000174,16.38721791600007],[42.78948689012466,16.37094468406555],[42.789480014000134,16.370957749000112],[42.78809655000012,16.373683986000074],[42.78825931100019,16.409857489000032],[42.781260613000114,16.420233466000113],[42.79493248800023,16.45282623900006],[42.78825931100019,16.471869208000058],[42.73975670700011,16.524562893000066],[42.72868899800008,16.547186591000028],[42.72494550900015,16.56635163],[42.7259220710001,16.610174872000144],[42.7376408210001,16.65281810099999],[42.73731530000006,16.67112864800005],[42.719248894000174,16.67536041900017],[42.7259220710001,16.682806708000143],[42.71387780000012,16.693670966000028],[42.703868035000106,16.709051825000174],[42.70150800900015,16.723334052000055],[42.71241295700022,16.73061758000007],[42.706309441000165,16.740627346000064],[42.67823326900023,16.76471588700018],[42.67188561300023,16.771918036000116],[42.65919030000006,16.789984442000147],[42.635752800000056,16.815171617000104],[42.62891686300006,16.81989166900003],[42.59693444100017,16.836818752000013],[42.58692467500006,16.837958075000028],[42.57585696700008,16.832342841000056],[42.541758660000106,16.87799713700015],[42.55567467500012,16.922064520000063],[42.54851321700008,16.93813711100016],[42.54859459700006,16.98725006700009],[42.54420006600017,17.004339911000116],[42.5345158210001,17.010321356000148],[42.524912957000225,17.014960028000175],[42.520681186000125,17.028225002000013],[42.51270592500006,17.037014065000065],[42.49447675900009,17.038397528000147],[42.4739689460001,17.037258205000015],[42.45972741000011,17.03847890800013],[42.44752037900017,17.049017645],[42.43751061300017,17.065130927000055],[42.425059441000116,17.09308502800009],[42.42058353000018,17.107733466000113],[42.415537957000225,17.142035223000065],[42.41081790500007,17.155747789000188],[42.401703321000156,17.163519598],[42.35670006600017,17.182440497000115],[42.3592228520001,17.165187893],[42.366465691000116,17.14931875200007],[42.384043816000116,17.120998440000122],[42.36378014400023,17.108710028000175],[42.373871290000096,17.043280341000028],[42.36296634200019,17.0248070330001],[42.3572697270001,17.045599677],[42.35670006600017,17.11416250200001],[42.35254967500012,17.13467031500006],[42.339121941000116,17.17357005400008],[42.3216251960001,17.309271552000055],[42.31519616000016,17.333238023000106],[42.31072024800019,17.350978908000016],[42.31666100400011,17.400824286000088],[42.31519616000016,17.422064520000063],[42.30787194100017,17.44432200700011],[42.30152428500011,17.45359935100008],[42.29167728000013,17.457424221000068],[42.281423373000194,17.45791250200007],[42.273610873000194,17.45994700699999],[42.26856530000006,17.464829820000162],[42.266774936000076,17.473578192000147],[42.26059004000009,17.485052802],[42.15284264400023,17.573797919000143],[42.143809441000116,17.576605536],[42.14087975400011,17.571193752000156],[42.13404381600017,17.579820054000052],[42.12330162900017,17.600775458],[42.10352623800023,17.62750885600012],[42.09766686300011,17.64435455900012],[42.093516472000175,17.652085679000134],[42.08619225400017,17.655422268000148],[42.06348717500012,17.650864976000108],[42.05323326900012,17.65322500200007],[42.048838738000114,17.665676174000097],[42.043793165000096,17.67430247599999],[42.00049889400012,17.717474677],[41.99870853000013,17.71548086100016],[41.99244225400016,17.712713934000092],[41.98487389400012,17.71063873900009],[41.979340040000096,17.71063873900009],[41.96973717500012,17.71979401200015],[41.938975457000225,17.761867580000043],[41.92872155000012,17.767157294000086],[41.86947675900009,17.82050202000015],[41.84782962300002,17.81195709800012],[41.8103947270001,17.836900132000054],[41.78760826900017,17.83356354400003],[41.77833092500012,17.859808661000056],[41.76075280000006,17.876532294000086],[41.73926842500006,17.890692450000117],[41.71924889400006,17.909247137000122],[41.67725670700011,17.960598049000126],[41.67090905000006,17.97752513200011],[41.67237389400022,17.990139065],[41.67530358200017,18.001288153000118],[41.673675977000094,18.009263414000156],[41.66089928500016,18.01235586100016],[41.65357506600017,18.01532623900006],[41.652110222,18.022650458000086],[41.65259850400011,18.03143952000012],[41.65105228000007,18.03900788],[41.60889733200022,18.07518138200011],[41.593516472000175,18.09589264500012],[41.60254967500012,18.114691473000065],[41.58513431100002,18.135402736000074],[41.5779728520001,18.14638906500012],[41.57520592500011,18.159409898000106],[41.57081139400023,18.165187893000095],[41.562022332000055,18.16815827],[41.556407097000175,18.17430247600008],[41.56104576900012,18.189846096000068],[41.54070071700019,18.191880601000108],[41.5213322270001,18.1966820330001],[41.52418053500011,18.200995184000092],[41.525726759000094,18.204291083000143],[41.528086785000106,18.20718008000007],[41.53370201900023,18.21035390800013],[41.527517123000074,18.22231679900007],[41.51856530000012,18.22797272300015],[41.507172071000156,18.228257554],[41.493337436000076,18.22394440300009],[41.499766472000175,18.23334381700003],[41.50464928500017,18.242987372000172],[41.505625847,18.251776434000064],[41.500173373000194,18.25873444200012],[41.50635826900023,18.272202867000104],[41.50049889400011,18.278998114000146],[41.4876408210001,18.28082916900003],[41.472178582000055,18.279201565],[41.47535241000011,18.292873440000122],[41.4720158210001,18.31195709800012],[41.464610222,18.330959377000042],[41.45541425900014,18.344061591000084],[41.45085696700019,18.356024481000034],[41.4446720710001,18.393988348000118],[41.44190514400006,18.402085679000052],[41.43970787900017,18.410589911],[41.438161655000016,18.464178778000086],[41.43580162900017,18.46995677300005],[41.43295332100015,18.474269924000154],[41.42839603000018,18.47687409100014],[41.42107181100019,18.47776927300005],[41.415782097,18.48151276200018],[41.41391035200016,18.48997630400011],[41.41334069100017,18.499335028000147],[41.41146894600009,18.505764065000065],[41.37525475400011,18.52948639500009],[41.36980228000007,18.535834052000112],[41.36817467500012,18.5462914080001],[41.36329186300017,18.55866120000003],[41.35572350400011,18.569037177000112],[41.340179884000094,18.575628973],[41.33432050900015,18.58055247600005],[41.32984459700012,18.58543528900013],[41.32829837300008,18.58763255400011],[41.3221134770001,18.585638739000085],[41.31169681100019,18.575344143000066],[41.30779056100019,18.57343170800003],[41.29688561300023,18.577337958],[41.28581790500019,18.583807684000092],[41.275401238000114,18.592027085000023],[41.267344597000175,18.60130442900005],[41.24057050900015,18.657945054000052],[41.22925866000017,18.673325914000188],[41.216563347,18.686346747000172],[41.21021569100017,18.697943427],[41.20923912900011,18.711615302000112],[41.212168816000116,18.731024481000034],[41.236013217000135,18.796616929000052],[41.239512566000116,18.81704336100013],[41.242523634000094,18.824896552000112],[41.247813347000175,18.828436591000084],[41.24903405000012,18.834173895000063],[41.239512566000116,18.848334052],[41.23536217500006,18.849107164000102],[41.213226759000094,18.86041901200009],[41.212168816000116,18.862005927000112],[41.1712345710001,18.87164948100009],[41.16089928500011,18.902980861000128],[41.160329623000024,18.908880927000084],[41.140961134000094,18.933294989000117],[41.13648522200006,18.936509507],[41.13575280000012,18.94692617400007],[41.13721764400006,18.957709052000084],[41.14332116000016,18.977484442],[41.14820397200006,18.988470770000063],[41.15308678500011,18.996039130000028],[41.156748894000174,19.00385163],[41.158864780000066,19.022162177000055],[41.16374759200002,19.04295482000005],[41.17652428500017,19.067368882],[41.1678166020001,19.082220770000063],[41.14942467500006,19.09373607000019],[41.12964928500011,19.101629950000174],[41.08643639400022,19.113592841000113],[41.06861412900016,19.125392971000068],[41.05836022200006,19.15298086100007],[41.044200066000116,19.174139716000084],[41.04021243600001,19.183539130000113],[41.040700717000135,19.19464752800006],[41.0481876960001,19.217718817],[41.047536655000016,19.227443752000156],[41.04167728000019,19.245754299000012],[41.04021243600001,19.255845445000162],[41.036143425000056,19.26455312700007],[41.01783287900011,19.273993231000173],[41.0135197270001,19.282863674000126],[41.00912519600009,19.304022528000033],[40.99830162900011,19.314927476000104],[40.98292076900011,19.32269928600003],[40.95590254000015,19.34332916900003],[40.957692905000016,19.3464216170001],[40.95899498800023,19.358587958],[40.95671634200007,19.36863841400016],[40.94695071700019,19.384182033000073],[40.944672071000156,19.392726955000015],[40.94312584700012,19.403306382000054],[40.93767337300008,19.41937897300012],[40.938324415000096,19.430568752000127],[40.945078972000054,19.440659898000106],[40.954356316000116,19.448675848000065],[40.95923912900017,19.456000067000062],[40.95215905000012,19.464056708],[40.95460045700022,19.474798895],[40.952484571000156,19.4852562520001],[40.94695071700019,19.49371979400003],[40.944672071000156,19.505682684000146],[40.85914147200006,19.53449127800009],[40.83545983200011,19.546616929],[40.784678582000055,19.596340236000074],[40.76042728000019,19.608710028000033],[40.76042728000019,19.61493561400009],[40.771250847000175,19.61351146000011],[40.79444420700011,19.601263739000146],[40.80062910200016,19.64223867400007],[40.79802493600019,19.692328192000062],[40.79086347700016,19.714056708000143],[40.74488366000017,19.77700429900007],[40.72543379000009,19.789252020000117],[40.67400149800008,19.794989325000117],[40.654063347000175,19.794338283000158],[40.64503014400005,19.784735419000086],[40.656586134000094,19.75950755400011],[40.64161217500006,19.771226304000106],[40.628672722000175,19.792141018000066],[40.62037194100017,19.812079169000143],[40.619476759000094,19.820990302],[40.60515384200019,19.829535223000036],[40.56446373800023,19.885891018000066],[40.533539259000094,19.90399811400009],[40.52702884200019,19.910345770000035],[40.52800540500007,19.917547919000143],[40.540537957000055,19.943915106000063],[40.534515821000156,19.961818752000013],[40.52263431100019,19.972479559000035],[40.49219811300023,19.98484935100008],[40.45460045700017,20.006577867000047],[40.44556725400017,20.00971100500011],[40.436371290000096,20.023342190000065],[40.4275822270001,20.026434637000065],[40.41846764400011,20.031195380000057],[40.39356530000006,20.064276434000092],[40.38550866000011,20.06810130400011],[40.360850457000225,20.073919989000057],[40.35222415500007,20.074855861000128],[40.333750847,20.079535223000065],[40.31348717500011,20.09072500200007],[40.26783287900017,20.12531159100017],[40.23210696700008,20.163560289000102],[40.23878014400011,20.17804596600014],[40.22185306100013,20.18903229400003],[40.195648634000094,20.195990302000112],[40.16480553500011,20.200384833],[40.15894616000017,20.205389716000024],[40.149587436000076,20.218207098000065],[40.13396243600007,20.231512762000094],[40.12501061300023,20.24111562700007],[40.12598717500012,20.24555084800012],[40.115570509000094,20.251654364000114],[40.08383222700016,20.27924225500014],[40.067637566000116,20.286525783000158],[40.04517662900011,20.286118882000054],[40.02035566500015,20.282049872000087],[40.000336134000094,20.275132554],[39.991953972,20.26666901200015],[39.96802819100017,20.275091864],[39.925303582000225,20.299383856000176],[39.90308678500016,20.308254299000126],[39.904307488000114,20.295558986000074],[39.91016686300023,20.288478908000016],[39.91830488400015,20.28351471600014],[39.92660566500015,20.276841539000102],[39.931407097000054,20.27472565300009],[39.94109134200019,20.26854075700011],[39.9471134770001,20.262152411],[39.94068444100017,20.259182033000073],[39.92318769600015,20.263576565000065],[39.825368686000076,20.320054429],[39.81128991000011,20.331488348000146],[39.798187696000156,20.337388414000188],[39.778330925000056,20.342718817000062],[39.760101759000094,20.35081614799999],[39.74463951900023,20.38117096600014],[39.72738691500015,20.39691803600003],[39.67359459700012,20.436224677000112],[39.64649498800005,20.46157461100013],[39.58708743600013,20.552150783000073],[39.56739342500006,20.56769440300009],[39.56739342500006,20.57514069200006],[39.57740319100017,20.574530341000113],[39.58529707100015,20.575873114],[39.591075066000116,20.58026764500009],[39.594737175000056,20.588771877000013],[39.57935631600011,20.591376044000114],[39.56666100400017,20.598293361000014],[39.54346764400012,20.61920807500014],[39.5369572270001,20.630275783000016],[39.531016472000175,20.65949127800006],[39.526377800000056,20.670721747000144],[39.49293053500011,20.706244208000115],[39.48991946700019,20.722886460000083],[39.50603274800008,20.746405341000024],[39.47136478000019,20.757473049000065],[39.45753014400012,20.759466864],[39.45997155000006,20.751654364000117],[39.464610222000175,20.746039130000113],[39.47071373800023,20.742010809000064],[39.4778751960001,20.738959052000055],[39.458262566000116,20.74485911700019],[39.43628991000011,20.756659247000144],[39.423187696000156,20.771714585000083],[39.43018639400023,20.787420966000052],[39.42090905000006,20.791693427000055],[39.41675866000011,20.797756252000127],[39.41765384200002,20.805324611000103],[39.42335045700011,20.81411367400007],[39.427744988000114,20.806382554000052],[39.4353947270001,20.80076732000005],[39.44556725400017,20.796861070000045],[39.45753014400012,20.794256903000147],[39.452647332000225,20.8061384140001],[39.45118248800006,20.811590887000037],[39.45069420700011,20.817816473],[39.448741082000225,20.827297268],[39.444021030000016,20.827622789000046],[39.437266472000175,20.82575104400017],[39.43018639400023,20.828355210000055],[39.41675866000011,20.846502997000144],[39.41130618600018,20.846869208000086],[39.40967858200005,20.828355210000055],[39.38835696700019,20.841131903000118],[39.35971113400014,20.862616278000033],[39.339121941000116,20.88743724200019],[39.34083092500012,20.910305080000015],[39.344981316000116,20.9051781270001],[39.35254967500012,20.898911851000136],[39.35962975400017,20.896714585000055],[39.36182701900023,20.903509833000086],[39.35840905000006,20.915350653000033],[39.35279381600011,20.919867255],[39.345469597000054,20.92218659100014],[39.337412957000105,20.927394924000126],[39.327810092000135,20.93183014500012],[39.31739342500012,20.930121161000116],[39.30681399800008,20.92609284100014],[39.29712975400011,20.92397695500013],[39.29688561300006,20.92796458500011],[39.26872806100019,20.96857330900012],[39.26238040500007,20.98305898600016],[39.259532097,20.999823309000178],[39.258962436000076,21.023871161000116],[39.2557072270001,21.032945054000106],[39.24203535200016,21.041693427],[39.23902428500017,21.050930080000157],[39.237803582000225,21.062892971000096],[39.234060092000135,21.067206122000083],[39.22754967500012,21.069281317],[39.1853947270001,21.097235419000057],[39.17432701900022,21.108872789000046],[39.16797936300011,21.136297919000086],[39.15870201900023,21.15591054900007],[39.15650475400017,21.16754791900017],[39.15870201900023,21.1725934920001],[39.16822350400017,21.185288804000052],[39.17017662900011,21.19147370000003],[39.16325931100018,21.205877997000087],[39.12574303500017,21.260402736000074],[39.11198978000007,21.268215236000074],[39.08073978000018,21.315008856000034],[39.159922722000175,21.379828192000144],[39.17107181100019,21.40412018400012],[39.17237389400012,21.436021226000136],[39.16472415500007,21.464911200000145],[39.149668816000116,21.480129299000126],[39.149668816000116,21.485663153000147],[39.16041100400017,21.494452216000028],[39.15894616000011,21.507798570000134],[39.14275149800008,21.540920315000065],[39.13005618600019,21.51959870000009],[39.11980228000007,21.516913153000118],[39.11036217500006,21.52814362200003],[39.10124759200008,21.54840729400003],[39.108653191000116,21.55459219],[39.09229576900023,21.57656484600001],[39.08871504000015,21.60586172100012],[39.090179884000094,21.637030341000028],[39.08814537900017,21.664455471000068],[39.07740319100017,21.691555080000015],[39.07935631600011,21.706366278000175],[39.09815514400006,21.712836005000085],[39.10352623800023,21.71857330900006],[39.108571811000076,21.732123114000032],[39.10906009200007,21.747788804],[39.10124759200008,21.759995835000055],[39.0935978520001,21.73916250200007],[39.08838951900023,21.73045482000019],[39.08073978000018,21.725816148000078],[39.06674238400015,21.725246486000014],[39.06348717500012,21.730047919000086],[39.063731316000116,21.73794179900007],[39.06031334700006,21.746405341000113],[39.05388431100013,21.751857815000147],[39.049489780000016,21.754828192000062],[39.04542076900005,21.758734442000062],[39.040375196000156,21.76683177299999],[39.0373641290001,21.77606842700014],[39.03589928500017,21.792629299000012],[39.03296959700006,21.80097077000009],[39.031016472,21.801459052000055],[39.019297722,21.807806708],[39.01726321700019,21.811183986000017],[39.01449629000015,21.818752346000068],[39.01246178500011,21.822088934000092],[38.97855432500009,21.862073697000156],[38.949598479000116,21.921915764000104],[38.93125353400015,22.00607318599999],[38.93265475700011,22.02518631000011],[38.95914442300008,22.034443487000157],[38.98621367900009,22.002239025],[39.00569293300012,22.002005293000035],[39.01002037900017,22.02411530200014],[39.01002037900017,22.043605861000046],[39.01246178500011,22.054266669000143],[39.01661217500006,22.05809153900016],[39.030039910000106,22.067084052],[39.03296959700006,22.072211005000028],[39.035004102000094,22.091131903000033],[39.04444420700011,22.130804755000053],[39.04664147200017,22.15106842700005],[39.040375196000156,22.15106842700005],[39.026133660000106,22.11688873900006],[39.019297722,22.13157786700016],[39.022715691000116,22.14248281500015],[39.029307488000114,22.153225002000152],[39.03296959700006,22.16779205900009],[39.03296959700006,22.208807684000092],[39.040375196000156,22.23578522300015],[39.07325280000011,22.27114492400007],[39.08350670700017,22.31354401200015],[39.09058678500011,22.323391018000063],[39.09961998800023,22.331732489000146],[39.108653191000116,22.342230536000113],[39.122325066000165,22.370184637000065],[39.139496290000096,22.386379299000012],[39.14275149800008,22.390611070000105],[39.14275149800008,22.403225002000013],[39.13738040500019,22.41469961100013],[39.12761478000007,22.421210028000033],[39.11491946700019,22.418605861000128],[39.10816491000017,22.408921617000157],[39.10124759200008,22.38043854400017],[39.094800219000064,22.370183421000135],[39.07025641900012,22.365827894000077],[39.06922670900005,22.39448965900014],[39.08207109300022,22.43628499000009],[39.0742196690002,22.49097271900014],[39.081517394000144,22.546792489000083],[39.07398774200007,22.57417540199999],[39.06625410200016,22.587551174000126],[39.03858483200017,22.622707424000012],[39.01246178500011,22.678656317000062],[38.99301191500009,22.708563544000054],[38.9856876960001,22.724269924000012],[38.98829186300011,22.73639557500009],[39.01465905000012,22.758978583000086],[39.013031446000156,22.766791083000054],[38.96501712300008,22.81631094],[38.945485873000194,22.831203518000066],[38.936778191000116,22.82636139500009],[38.940440300000056,22.82078685100008],[38.95801842500012,22.803615627000127],[38.96469160200016,22.79466380400011],[38.96794681100019,22.784002997000087],[38.96900475400016,22.773830471000124],[38.97144616000011,22.76386139500015],[38.978282097,22.75372955900009],[38.97087649800014,22.746893622000172],[38.9577143810001,22.774960762000134],[38.929852287000095,22.81501777000012],[38.90259850400011,22.843166408000098],[38.8510005900001,22.929720756000066],[38.85117546400008,22.94327542200007],[38.88040650100018,22.928493952000068],[38.91285241000017,22.86196523600013],[38.93051191500015,22.85675690300006],[38.94141686300023,22.850531317000087],[38.9510197270001,22.851955471000153],[38.9588322270001,22.859116929],[38.96469160200016,22.870428778000175],[38.954274936000076,22.881903387000037],[38.9373478520001,22.91209544500005],[38.92693118600019,22.91819896000011],[38.91960696700019,22.921087958000058],[38.911468946000156,22.928452867000047],[38.90528405000012,22.93846263200014],[38.90259850400011,22.94928620000003],[38.893890821000156,22.96515534100014],[38.873871290000096,22.972805080000096],[38.851084832000225,22.977972723],[38.83432050900015,22.986517645000035],[38.814219597000175,22.982733466000084],[38.79957116000016,22.998683986000103],[38.779063347,23.041164455000068],[38.79021243600002,23.05133698100012],[38.79867597700016,23.06464264500012],[38.80437259200008,23.07925039300015],[38.806407097000175,23.093247789000102],[38.803928431000166,23.12185552900003],[38.799213479000024,23.137263382000086],[38.798350457000225,23.149603583000083],[38.78665978900008,23.1545578740001],[38.777619307000094,23.139292135000076],[38.765115265000155,23.161100557],[38.74768917300017,23.182957278000018],[38.72925866000011,23.216253973000146],[38.711436394000174,23.23574453300013],[38.703949415000096,23.257757880000142],[38.69171252700002,23.272959526000093],[38.6889179010001,23.286540050000113],[38.680253806000074,23.303794764000102],[38.68041692600016,23.318251166000135],[38.672868503000096,23.348151171000055],[38.65933113700006,23.371790302000093],[38.64653728900012,23.400725524000123],[38.64087028600014,23.440073997000027],[38.63711273700008,23.468168984],[38.63124424800017,23.49004742800004],[38.62891686300017,23.507879950000145],[38.61215254000015,23.524318752000156],[38.604746941000165,23.53538646],[38.601573113000114,23.551947333000058],[38.60017530600006,23.568248511000135],[38.577891472000175,23.556626695000162],[38.56804446700008,23.562486070000105],[38.559906446000156,23.562486070000105],[38.560883009000094,23.545721747000083],[38.57032311300023,23.536932684000035],[38.59546959700012,23.528387762000122],[38.59546959700012,23.5214704450001],[38.562022332000225,23.524359442000144],[38.5400644630001,23.543245398000025],[38.539222830000114,23.591868839000043],[38.4948493570001,23.64463486200019],[38.471364780000016,23.713324286000116],[38.464366082000225,23.736070054000052],[38.45997155000006,23.760809637000037],[38.45264733200017,23.784002997000144],[38.437022332000055,23.80206940300017],[38.427093946000156,23.80670807500009],[38.41627037900017,23.80890534100008],[38.3995712130002,23.81408620700013],[38.39012566900013,23.824131459000014],[38.38549339700009,23.83850427200015],[38.377481252000074,23.85601726500012],[38.36534836300021,23.87044790700004],[38.34888756600017,23.875189520000063],[38.33270716600006,23.879426379000147],[38.31913339800016,23.886385461000046],[38.30933678500011,23.893377997000144],[38.299562672000064,23.910221565000043],[38.283337685000134,23.927799915000023],[38.27540123800006,23.93382396],[38.25890596700012,23.944818549000033],[38.2384690480001,23.950582656000094],[38.222089757000134,23.952574468000037],[38.1982814990001,23.967097788],[38.18535633900015,23.97592867900015],[38.16564072500009,23.99292314300011],[38.146635972000155,24.014908512000105],[38.12617906500023,24.02942756600008],[38.109117148000074,24.043891753000096],[38.079135305000165,24.070388243000153],[38.07106917800015,24.074080047000066],[38.06288056700012,24.07600553600004],[38.05396808500004,24.07232347000003],[38.04572859800007,24.067389985000048],[38.02320397200012,24.081610419000082],[38.00757897200017,24.093085028000033],[37.96641641100004,24.1170936810001],[37.935320705000066,24.139007082000106],[37.941123676000046,24.150950578000117],[37.95842061500011,24.162075681000104],[37.98307204000017,24.165664268000015],[37.97325955900007,24.174709232000126],[37.958456648000066,24.17030871200008],[37.93953008300011,24.161441287000017],[37.93219972600011,24.17421058900008],[37.943772151000104,24.191356149000015],[37.94794950600013,24.20704683700002],[37.93729217000012,24.210850201000124],[37.930690020000185,24.203406003000126],[37.918366057000206,24.20123214800013],[37.91257654200009,24.19153811000014],[37.918298700000065,24.186266984000113],[37.92154161100015,24.177267515000054],[37.9231256100002,24.164534232000147],[37.92390540300008,24.155547158000118],[37.91813257900017,24.14959319100008],[37.89601011900018,24.1572083840001],[37.86563419300015,24.149887982000124],[37.8201603520001,24.18170807500003],[37.80640709700011,24.19326406500015],[37.76758871000018,24.221393093000174],[37.758661253000156,24.24161156600017],[37.74558528100013,24.249883806000085],[37.72840703700015,24.257421886000103],[37.71041333700006,24.266456658000077],[37.6957124620001,24.27921334100016],[37.676090858000094,24.291235741000136],[37.65232182500014,24.290565549000107],[37.640961134000094,24.29169342700005],[37.62598717500006,24.28143952000012],[37.622735013000096,24.268237433000152],[37.628394381000106,24.248039917000128],[37.58577544300013,24.246661567000118],[37.57517404100022,24.261636525000043],[37.54570634100011,24.27441105700008],[37.52272027400008,24.267731705000145],[37.50063561300013,24.288700038000012],[37.48675015,24.311147272000042],[37.46466137900009,24.33958771100008],[37.42940343700016,24.367306936000105],[37.41795838400011,24.400965959000118],[37.42785386000017,24.421132041000032],[37.43524612000013,24.41887446200012],[37.45495441700021,24.406870578000067],[37.463208124000204,24.422546292000064],[37.4566689590001,24.441248732000062],[37.31922951900012,24.62423884800002],[37.2576603520001,24.70233795800011],[37.22852623800023,24.73769765800013],[37.22706139400006,24.765366929000052],[37.23047936300011,24.77269114800005],[37.23129316500009,24.782619533000158],[37.230316602000094,24.792547919000143],[37.22706139400006,24.799546617000047],[37.21973717500006,24.80280182500009],[37.206797722000175,24.791001695000105],[37.19629967500012,24.789618231000034],[37.17872155000006,24.799383856000176],[37.165782097000175,24.815497137000033],[37.148610873000024,24.85101959800012],[37.17408287900017,24.85057200700011],[37.196543816000116,24.847235419000082],[37.21892337300008,24.846625067000147],[37.24415123800022,24.854437567000115],[37.25660241000017,24.87124258000013],[37.2580672540001,24.92177969000015],[37.27995853000007,24.96409739800005],[37.277028842000135,24.986639716000056],[37.25782311300006,25.02855052300005],[37.251475457000225,25.052557684000178],[37.25782311300006,25.111476955000125],[37.25603274800008,25.134100653000115],[37.25074303500011,25.155462958000054],[37.24219811300006,25.175279039000156],[37.23047936300011,25.193670966000028],[37.21168053500011,25.214260158000158],[37.20020592500012,25.224188544000143],[37.189463738000114,25.231187242000043],[37.180023634000094,25.239081122000027],[37.17066491000011,25.257798570000162],[37.16228274800008,25.265692450000145],[37.142344597000175,25.279771226000022],[37.122569207000055,25.299546617000132],[37.10531660200016,25.322170315000093],[37.093272332000225,25.344468492000132],[37.090993686000076,25.354396877000124],[37.08887780000006,25.37677643400015],[37.08643639400023,25.385443427000055],[37.079844597000175,25.39459870000003],[37.06462649800008,25.40973541900003],[37.05982506600017,25.419623114000117],[37.07740319100011,25.4310570330001],[37.062673373000024,25.453680731000144],[37.01823978000013,25.494696356000148],[37.010590040000096,25.507391669000025],[36.994476759000094,25.549953518000066],[36.98926842500012,25.55695221600014],[36.97559655000006,25.565130927000055],[36.97038821700019,25.57046133000013],[36.96900475400011,25.576157945000105],[36.96998131600017,25.58856842700014],[36.96697024800008,25.59430573100012],[36.958262566000165,25.60635000200004],[36.94410241000017,25.635199286000145],[36.93628991000017,25.646144924000012],[36.923513217000014,25.654771226000108],[36.894297722000175,25.665594794000114],[36.88160241000011,25.67283763200014],[36.84229576900023,25.729803778000147],[36.81739342500012,25.75796133000013],[36.79566491000011,25.759466864],[36.79371178500016,25.748277085000083],[36.80046634200019,25.736721096000153],[36.80396569100011,25.726792710000055],[36.792246941000116,25.72060781500009],[36.77955162900017,25.724066473000093],[36.74887129000015,25.743882554],[36.73389733200011,25.748521226000108],[36.724945509000094,25.753892320000162],[36.70232181100002,25.77997467700014],[36.69605553500017,25.789536851000136],[36.69483483200017,25.795599677000112],[36.69605553500017,25.817124742000043],[36.69385826900006,25.822902736000017],[36.681813998000074,25.825588283000073],[36.6756291020001,25.830511786000145],[36.6634220710001,25.85565827000012],[36.66211998800022,25.87909577],[36.67164147200012,25.901434637000037],[36.692637566000165,25.923285223000065],[36.70582116000011,25.943752346000124],[36.709483269000174,25.971136786],[36.70557701900006,25.999335028000175],[36.69605553500017,26.02228424700014],[36.67237389400022,26.04523346600014],[36.64063561300011,26.060207424000097],[36.605642123000194,26.068264065000122],[36.57252037900017,26.070705471000064],[36.536631707000055,26.082424221000153],[36.51270592500012,26.110988674000126],[36.449229363000114,26.246893622000087],[36.42628014400012,26.28180573100009],[36.38282311300017,26.334540106000087],[36.30892988400015,26.49823639500012],[36.229828321000156,26.625555731000144],[36.18213951900012,26.68024323100009],[36.12419681100013,26.72675202000012],[36.09766686300022,26.753973700000028],[36.0818791020001,26.79726797100001],[36.05176842500006,26.844671942000147],[36.03199303500017,26.906805731000148],[36.01392662900011,26.9023298200001],[36.00025475400011,26.913519598],[35.976735873000024,26.94773997599999],[35.91187584700011,26.999579169000086],[35.83171634200019,27.092718817000147],[35.80307050900015,27.14207591400013],[35.79981530000006,27.150091864000057],[35.798594597000175,27.159979559000178],[35.80079186300017,27.16815827000009],[35.81055748800011,27.182440497000172],[35.812836134000094,27.191066799000097],[35.8079533210001,27.203070380000025],[35.78402754000015,27.235500393],[35.69996178500011,27.324774481000034],[35.65259850400017,27.353827216000028],[35.640391472000175,27.363470770000088],[35.61670983200016,27.38963450700014],[35.58985436300006,27.42890045800014],[35.55958092500006,27.455633856000144],[35.521494988000114,27.518459377000013],[35.510508660000106,27.544175523000078],[35.50684655000006,27.564439195000162],[35.50619550900014,27.60053131700012],[35.5002547540001,27.619330145000063],[35.49195397200012,27.632391669000143],[35.45899498800017,27.663397528000175],[35.44076582100009,27.69025299700014],[35.41504967500012,27.751369533000016],[35.3943791020001,27.777004299000097],[35.384938998000194,27.78261953300007],[35.364756707000055,27.78969961100013],[35.356944207000055,27.79437897300006],[35.351328972000175,27.80141836100013],[35.34685306100019,27.81500885600009],[35.336761915000146,27.83368561400006],[35.33236738400015,27.862209377000067],[35.32276451900006,27.876288153000118],[35.271006707000055,27.92780182500009],[35.2552189460001,27.952785549000012],[35.245616082000225,27.962347723000093],[35.22999108200017,27.968736070000105],[35.181488477000094,28.002915757000025],[35.181488477000094,27.99603913],[35.17465254000015,27.99603913],[35.16358483200022,28.009344794000114],[35.17652428500011,28.019476630000085],[35.1990666020001,28.028225002000127],[35.216319207000225,28.037665106000148],[35.226898634000094,28.033148505000028],[35.22584069100011,28.038763739],[35.216319207000225,28.054388739],[35.2102970710001,28.05658600500008],[35.18262780000012,28.06191640800013],[35.17465254000015,28.065008856000034],[35.16781660200016,28.065008856000034],[35.16781660200016,28.058172919000114],[35.16179446700002,28.058172919000114],[35.157725457000055,28.06435781500009],[35.151866082000225,28.071030992000043],[35.14478600400017,28.076402085],[35.13721764400022,28.07859935099999],[35.11939537900017,28.077948309000032],[35.11036217500006,28.078924872000115],[35.09864342500006,28.08974844],[35.051931186000076,28.119574286],[35.04200280000006,28.11302317900011],[35.03028405000006,28.11347077000012],[35.01970462300014,28.11347077000012],[35.022471550000056,28.107855536000116],[35.026215040000096,28.10297272300015],[35.03077233200016,28.099107164000046],[35.02068118600019,28.103745835000083],[35.00953209700017,28.110541083],[34.99789472700015,28.114203192000147],[34.986013217000135,28.109320380000085],[34.97584069100017,28.10342031500015],[34.94548587300019,28.095363674000012],[34.93726647200012,28.09125397300006],[34.93132571700008,28.086004950000174],[34.927744988000114,28.07859935099999],[34.92090905000006,28.07859935099999],[34.92090905000006,28.0854352890001],[34.91407311300006,28.0854352890001],[34.90088951900012,28.08226146000014],[34.88062584700012,28.08563873900006],[34.86019941500015,28.085394598000036],[34.84644616000011,28.071193752000013],[34.84376061300023,28.076320705000015],[34.84294681100001,28.076402085],[34.838877800000056,28.07859935099999],[34.838877800000056,28.0854352890001],[34.84644616000011,28.0854352890001],[34.84644616000011,28.092922268000063],[34.842621290000096,28.09983958500008],[34.84766686300023,28.105536200000145],[34.85694420700011,28.109849351000047],[34.86622155000006,28.11277903900016],[34.856700066000116,28.116441148000135],[34.8470158210001,28.11762116100006],[34.83676191500015,28.11627838700015],[34.82536868600019,28.11277903900016],[34.82536868600019,28.10590241100006],[34.83277428500017,28.10590241100006],[34.83277428500017,28.099107164000046],[34.821625196000156,28.095770575000117],[34.81430097700015,28.088934637000094],[34.804860873000024,28.071193752000013],[34.80176842500006,28.075384833000115],[34.79867597700016,28.0768089860001],[34.79525800900015,28.077297268000095],[34.79175866000017,28.07859935099999],[34.79574629000015,28.084621486000103],[34.80160566500009,28.090399481000144],[34.809418165000096,28.095404364],[34.81910241000011,28.099107164000046],[34.81853274800008,28.102932033000158],[34.81836998800011,28.10712311400009],[34.81910241000011,28.11277903900016],[34.80494225400011,28.113348700000145],[34.79371178500011,28.111070054000077],[34.78646894600009,28.104722398000046],[34.78443444100017,28.092922268000063],[34.77898196700002,28.095770575000117],[34.777354363000114,28.096177476000108],[34.77588951900023,28.094956773000106],[34.770762566000116,28.092922268000063],[34.770355665000096,28.096136786000116],[34.7708439460001,28.102728583],[34.770762566000116,28.10590241100006],[34.764984571000156,28.10590241100006],[34.764984571000156,28.099107164000046],[34.75700931100013,28.099107164000046],[34.75196373800006,28.10761139500006],[34.74732506600017,28.112005927000055],[34.74244225400017,28.111558335000055],[34.73658287900011,28.10590241100006],[34.72738691500015,28.11212799700003],[34.72510826900012,28.115057684000146],[34.718923373000024,28.123032945000105],[34.71534264400023,28.12763092700014],[34.70923912900016,28.140082098000065],[34.706309441000116,28.137600002000127],[34.702484571000156,28.13499583500014],[34.69849694100017,28.13153717700014],[34.69499759200008,28.126450914000102],[34.681976759000094,28.13515859600001],[34.67839603000019,28.130764065000037],[34.677744988000164,28.120794989000117],[34.67457116000011,28.11277903900016],[34.66700280000006,28.108710028000115],[34.65357506600017,28.103583075000113],[34.64714603000007,28.099107164000046],[34.64714603000007,28.092922268000063],[34.66830488400015,28.07859935099999],[34.66830488400015,28.071193752000013],[34.66179446700008,28.07078685099999],[34.65894616000011,28.069159247000172],[34.657481316000116,28.066961981000173],[34.65528405000006,28.065008856000034],[34.64714603000007,28.071193752000013],[34.64234459700012,28.05459219000015],[34.64144941500015,28.041693427000112],[34.63502037900017,28.03327057500017],[34.61304772200012,28.03021881700009],[34.614756707000225,28.034979559000178],[34.61573326900012,28.03571198100012],[34.617360873000024,28.03546784100017],[34.6204533210001,28.037665106000148],[34.61304772200012,28.044501044000167],[34.608653191000116,28.058823960000055],[34.606700066000116,28.071844794000143],[34.60621178500011,28.09601471600014],[34.598887566000116,28.103257554],[34.57439212300008,28.094061591000113],[34.57886803500011,28.10590241100006],[34.57276451900022,28.11277903900016],[34.587412957000055,28.131822007000082],[34.596934441000165,28.138902085000137],[34.605642123000024,28.142564195000162],[34.60621178500011,28.147528387000033],[34.61247806100007,28.150336005],[34.6209416020001,28.157375393000148],[34.626719597000175,28.160549221000124],[34.6204533210001,28.16738515800013],[34.62338300900015,28.172674872000115],[34.62712649800008,28.176662502000095],[34.63249759200002,28.17938873900006],[34.640310092000135,28.181057033000073],[34.640310092000135,28.17641836100013],[34.638031446000156,28.17544179900007],[34.63526451900012,28.175726630000113],[34.63347415500019,28.174872137000094],[34.64340254000009,28.170233466000084],[34.6517033210001,28.16779205900006],[34.65772545700011,28.170558986000014],[34.66089928500017,28.181057033000073],[34.65528405000006,28.181057033000073],[34.65528405000006,28.187892971000093],[34.64812259200019,28.194240627000124],[34.649587436000076,28.200873114],[34.65723717500012,28.206284898000135],[34.66830488400015,28.2089704450001],[34.66830488400015,28.215765692000147],[34.66488691500015,28.224514065000122],[34.67457116000011,28.27045319200009],[34.67839603000019,28.268459377000156],[34.68531334700012,28.265936591000028],[34.688731316000116,28.263617255000085],[34.68824303500011,28.266791083000143],[34.688731316000116,28.277289130000028],[34.682953321000156,28.27383047100001],[34.68043053500011,28.271673895],[34.67457116000011,28.277248440000037],[34.694672071000156,28.294419664000046],[34.715017123000024,28.32746002800009],[34.73047936300023,28.363592841000024],[34.741058790000096,28.41058991100006],[34.760590040000096,28.436590887000037],[34.767914259000094,28.466457424000126],[34.77507571700002,28.483343817000115],[34.80377470400006,28.52713279800018],[34.79617273000005,28.572185020000134],[34.79343208500009,28.61943434500016],[34.77846952400009,28.664500080000053],[34.79688561300011,28.725816148000103],[34.80982506600017,28.757961330000068],[34.82536868600019,28.784369208000058],[34.82536868600019,28.79059479400011],[34.81910241000011,28.79059479400011],[34.836110873000194,28.816473700000028],[34.83855228000007,28.828558661000116],[34.83277428500017,28.83958567900008],[34.83277428500017,28.84585195500013],[34.84408613400015,28.87641022300015],[34.84197024800008,28.88963450699999],[34.82536868600019,28.894232489000117],[34.82536868600019,28.9003766950001],[34.84009850400017,28.92243073100009],[34.85629316500015,28.96381256700012],[34.86378014400012,29.00625234600001],[34.85254967500012,29.0313988300001],[34.85254967500012,29.045070705000043],[34.86402428500017,29.063666083000115],[34.87354576900023,29.08527252800012],[34.89356530000012,29.174750067000033],[34.89820397200011,29.187730210000115],[34.909353061000076,29.21015045800011],[34.90788821700019,29.21637604400017],[34.909353061000076,29.23065827000006],[34.91895592500006,29.239081122000027],[34.94206790500019,29.25047435099999],[34.93523196700008,29.267279364],[34.932627800000056,29.28925202000003],[34.936371290000096,29.303859768000123],[34.948090040000096,29.29828522300012],[34.94922936300023,29.301499742000157],[34.949392123000194,29.304266669000054],[34.95069420700011,29.305731512000094],[34.955577019000174,29.305121161000145],[34.94800866000011,29.319973049],[34.94532311300023,29.336900132],[34.949385116680986,29.35168582654738],[35.060319458000066,29.3346963500001],[35.179071899000036,29.3166612750001],[35.3346179600002,29.293148499],[35.47362756400011,29.272064515000164],[35.62204227700013,29.249688619],[35.740250622000104,29.23173071399999],[35.79722538200022,29.223075257000165],[35.912463827000096,29.20568613700014],[36.016436808000066,29.18995066400005],[36.0438253180001,29.190880840000105],[36.069456828000085,29.200027568],[36.17797733600017,29.278369039],[36.28370731600008,29.35485015900015],[36.399979289000186,29.438901876],[36.47708052600015,29.494609070000035],[36.541262655000054,29.58940948500019],[36.60358443200019,29.68147104900011],[36.64957645700011,29.749399720000053],[36.704870239000144,29.831151836000075],[36.72874475100011,29.853527731000057],[36.756236613000084,29.865516663000037],[36.84294966600007,29.88122629900009],[36.931936483000214,29.897245992000038],[37.07580367000011,29.923290915],[37.21853397600009,29.94912913000003],[37.35237593600007,29.973313701],[37.47019820100015,29.99455271400008],[37.49169559700013,30.011192526000105],[37.53613732900007,30.105295309000052],[37.5692102460001,30.17495513900009],[37.605177042000065,30.250712789000158],[37.63452925600021,30.312776184000043],[37.647551718000074,30.330862936000145],[37.67070275900008,30.347606100000107],[37.77932662000015,30.40041941400015],[37.90014611800009,30.459072164000087],[37.97331994700008,30.49452219600012],[37.98003788200012,30.49808787100009],[37.98096805800017,30.498397929000177],[37.98138146900007,30.498811340000184],[37.981071411000094,30.499483134000073],[37.93156538900021,30.5496609500001],[37.82190800000015,30.660868632000117],[37.71204390500006,30.77202463800002],[37.60228316200008,30.883232321000133],[37.492625773000064,30.994491679000145],[37.48942183400018,30.997695618000037],[37.48632124900004,31.000899557000093],[37.483117309000164,31.00410349500008],[37.48001672400002,31.00725575800014],[37.349895467000096,31.12823028600009],[37.2217220090001,31.247292129000087],[37.219774211000214,31.249101461000137],[37.08965295400017,31.37007598900011],[36.95953169800012,31.49099884000016],[36.9979115190001,31.50081395500003],[37.207268514000106,31.554354147000186],[37.455005331000024,31.617709452],[37.702742147000066,31.681116435000135],[37.761412173000195,31.696120493000148],[37.950478963000165,31.744471741000137],[37.98652246000009,31.753358384000094],[38.17537479600016,31.799920552000017],[38.400167277000065,31.855369365000072],[38.6248564050002,31.910869853000136],[38.84975223800021,31.96631866400013],[38.96333703600007,31.99437896700014],[38.96344038900011,31.994327291000115],[38.96344038900011,31.99448232000016],[38.99806359900012,32.00693634100007],[39.11681604000009,32.10289947500003],[39.13624637800015,32.11535349600011],[39.14637496000009,32.11814402300017],[39.149268840000076,32.11891916899999],[39.152162719000074,32.119745992],[39.15495324700012,32.12057281500013],[39.15774377400007,32.12134796200006],[39.35556115700015,32.09256418900013],[39.55327518700008,32.06372874000009],[39.75098921700007,32.03489329100013],[39.94859989400018,32.00610951700013]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Syria","sov_a3":"SYR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Syria","adm0_a3":"SYR","geou_dif":0,"geounit":"Syria","gu_a3":"SYR","su_dif":0,"subunit":"Syria","su_a3":"SYR","brk_diff":0,"name":"Syria","name_long":"Syria","brk_a3":"SYR","brk_name":"Syria","brk_group":null,"abbrev":"Syria","postal":"SYR","formal_en":"Syrian Arab Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Syrian Arab Republic","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":2,"mapcolor13":6,"pop_est":20178485,"gdp_md_est":98830,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"SY","iso_a2":"SY","iso_a3":"SYR","iso_n3":"760","un_a3":"760","wb_a2":"SY","wb_a3":"SYR","woe_id":23424956,"woe_id_eh":23424956,"woe_note":"Exact WOE match as country","adm0_a3_is":"SYR","adm0_a3_us":"SYR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SYR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[42.2368323160002,37.28630401600019],[42.26721805900015,37.274521790000094],[42.2729024650001,37.2767438770001],[42.2792069910001,37.282273255000106],[42.285821574000096,37.28656239900006],[42.292022746000185,37.28506378200014],[42.29636356600005,37.279689433],[42.30142785600012,37.269922587000124],[42.30576867700014,37.26454823900018],[42.33987512200011,37.24263743100012],[42.34669641200017,37.23976938900013],[42.353207642000115,37.22703114900018],[42.33532759600004,37.17116892500012],[42.34669641200017,37.15843068500005],[42.354551229000066,37.15241038100011],[42.35651493400022,37.13827687600018],[42.35723840300014,37.10998402900019],[42.363646281000136,37.09815012700007],[42.37119104000013,37.087944031000106],[42.37687544800016,37.07675608300015],[42.37718550600002,37.06223500600011],[42.376805724000036,37.06200061900007],[42.34586958800023,37.042908020000155],[42.28189416500007,36.994125468],[42.28189416500007,36.99402211500008],[42.28189416500007,36.993970439000165],[42.281584107000036,36.993970439000165],[42.17843794800015,36.90531952],[41.9785535070001,36.733624573000114],[41.84378137300021,36.61786936400007],[41.817323039000115,36.59973093700013],[41.78993453000018,36.589292297000114],[41.479772583000084,36.53611724900016],[41.414866984000156,36.52738393200009],[41.385411417000086,36.51637685100009],[41.36536096200021,36.494155986000166],[41.36536096200021,36.49405263300004],[41.36525760900011,36.4940009560001],[41.36525760900011,36.49389760300009],[41.2769942620001,36.35478464800009],[41.26882938700007,36.32796458000011],[41.23658329300022,36.07702382400011],[41.23668664500016,36.06033233699999],[41.24061405400013,36.043020732000066],[41.266245565000105,35.99428985600004],[41.266348918000205,35.99434153200015],[41.266348918000205,35.99423818000004],[41.343656861000134,35.857657370000126],[41.35450891100006,35.8255663040001],[41.35926314300016,35.792751771],[41.363500610000216,35.65524078400004],[41.3580229090002,35.62392486600011],[41.342209921000205,35.5936941530001],[41.308457834000166,35.55224762500013],[41.26128462700015,35.494320374],[41.26128462700015,35.49416534400013],[41.2611812740001,35.49416534400013],[41.26107792100018,35.49416534400013],[41.25187951700016,35.464089661000074],[41.24309452300011,35.36652455700009],[41.20133996600006,35.24301788400011],[41.19152144400019,35.18214304600018],[41.19232585700009,35.15890443700012],[41.198032674000075,34.994040833000085],[41.20650760900017,34.81932281500009],[41.20423384600022,34.79312286400007],[41.19565555800008,34.768473206000074],[41.02398645100007,34.49432973300018],[41.02398645100007,34.494174703000155],[40.98801965300018,34.42851979600012],[40.96528202300013,34.401854757000145],[40.936033163000076,34.38606760700016],[40.69046675600006,34.331497294000044],[40.54380904100017,34.25798757000008],[40.43322147600023,34.20253875700011],[40.32263391100011,34.14716746000006],[40.212046346000164,34.091796163000126],[40.17311082500012,34.07228291700012],[40.101458781000105,34.036373189000145],[39.990871216000045,33.98097605400001],[39.88038700300015,33.92560475700016],[39.76969608500005,33.870233460000016],[39.659211874000135,33.81481048600007],[39.5486243080002,33.75949086500013],[39.43803674300014,33.70409373000008],[39.327449178000194,33.64872243200013],[39.21686161300008,33.59332529699999],[39.10627404800019,33.53792816100004],[38.99568648300007,33.48247935000016],[38.88509891800012,33.42710805300011],[38.774511352000076,33.37168507900015],[38.529565063000206,33.24425099700012],[38.3157420630001,33.131180063000144],[38.23087528500017,33.08630198200002],[38.056725708000016,32.99434377000013],[38.056725708000016,32.99429209500012],[37.929394979000136,32.92532989600009],[37.7580359290001,32.83251902300016],[37.58667688000011,32.739837342],[37.49460567400021,32.69005562300005],[37.41521447800002,32.64712982200011],[37.24406213400002,32.55439646400011],[37.13337121600014,32.49458099400014],[37.13337121600014,32.49452931800012],[37.133164510000114,32.49452931800012],[37.133164510000114,32.49447764100002],[36.98009891800021,32.410038351000175],[36.81938521300011,32.316788229000124],[36.806569458000155,32.31304168700002],[36.79251346800007,32.31353261400015],[36.72864139800018,32.32779530900005],[36.70693729600006,32.32833791100008],[36.68957401500009,32.31965627100011],[36.65350386500008,32.34285898800012],[36.51668392700017,32.3570141820001],[36.480181111000064,32.360790711],[36.463954712000174,32.36939483700003],[36.407627400000166,32.37422658300015],[36.38788700400019,32.37931671200012],[36.37310754400019,32.38642222100016],[36.285257609000126,32.456934713000024],[36.220765421000095,32.49458099400014],[36.18820926900017,32.52227956100007],[36.17735721800008,32.52731801400013],[36.1721895750002,32.52592275000016],[36.160820760000114,32.51721527100001],[36.15585982200017,32.51519989100014],[36.14986535600022,32.516130067000105],[36.13953007000011,32.51954071000013],[36.133225546000205,32.520109151],[36.096225220000036,32.51587168400012],[36.08190554900008,32.51626477300006],[36.069870239000096,32.51659515400003],[36.06625288900008,32.51731862400011],[36.06604618300017,32.521607768000095],[36.06046512800012,32.53326080300014],[36.01540328000007,32.5911642460001],[36.00599816900015,32.607907410000124],[36.00527469900007,32.62669179300006],[36.00827193200004,32.643719178000154],[36.0036210530001,32.65508799200016],[35.98026330600007,32.65661244800016],[35.96579390500019,32.654364523000154],[35.955355265000065,32.657439271],[35.94657027200017,32.664441427],[35.937475219000106,32.674001567000104],[35.941195922000105,32.67353647900008],[35.94439986200021,32.677618917000174],[35.94574344900016,32.68410431000014],[35.94419315600007,32.69077056900015],[35.94036910000008,32.69250172900003],[35.92744999200008,32.69237253900009],[35.92248905400007,32.69376780200015],[35.90522912600008,32.708573100000095],[35.89572066300016,32.713275656000164],[35.788233684000176,32.734411317000124],[35.77903527800018,32.74428151400009],[35.77903527800018,32.74435903000001],[35.77913863100011,32.74446238300014],[35.77913863100011,32.744514058000064],[35.77490116400023,32.74727874800011],[35.769733520000074,32.74805389400002],[35.763842407000226,32.746968690000024],[35.75759034900014,32.744346858000185],[35.78420292100005,32.77794871000005],[35.83422570800005,32.82794565800013],[35.841873820000075,32.853577169000104],[35.8380497640002,32.86603118900017],[35.84972863800019,32.89582265300008],[35.866885213000074,32.92078236900015],[35.874016561000104,32.92233266200016],[35.8880725500002,32.94494110100011],[35.864611450000126,32.977729797000116],[35.85903039500013,32.99020965600012],[35.845801229000216,33.08542348200008],[35.84890181500006,33.098678487000186],[35.81148807800011,33.11190765400009],[35.81148807800011,33.12676462900011],[35.82244348100008,33.141569926000145],[35.83339888500015,33.161129456000154],[35.830194946000084,33.18999074300011],[35.80766402200006,33.201721294],[35.80363326000017,33.24846262600009],[35.77562463400014,33.26489573200014],[35.76859663900015,33.27269887300015],[35.80208296700002,33.31248972600018],[35.763842407000226,33.334400533000135],[35.785753215000085,33.34287546800014],[35.79350467900011,33.34992930200015],[35.80993778500007,33.36003204400002],[35.812314901,33.37336456300012],[35.81541548700008,33.37886810400011],[35.816965779000185,33.39519785600005],[35.82244348100008,33.40137319000003],[35.82109989400013,33.40672170000009],[35.84511608700009,33.418742463],[35.87008915200013,33.43124216700015],[35.88848596200009,33.44041473400013],[35.91949182100015,33.462351380000094],[35.93540816300006,33.49426157700016],[35.921868937000085,33.51457041400009],[35.93323775200005,33.5278254200001],[35.95680220500017,33.53420745800012],[35.98026330600007,33.53394907700006],[35.999280233,33.54126129200013],[36.0198474530001,33.55263010600014],[36.03524702900009,33.56779714000005],[36.03845096800015,33.58634897899999],[36.029665975000086,33.597640279000146],[36.01292281100021,33.60802724200009],[35.99452600100014,33.615701192000145],[35.98026330600007,33.61900848400016],[35.9569055580001,33.629938050000035],[35.93478804500009,33.633400371000064],[35.921558878000184,33.640299174000134],[35.92538293400011,33.66166737900015],[35.92941369700023,33.66507802400018],[35.942436157000174,33.669212138000105],[35.94719038900004,33.67308787100016],[35.9498775640001,33.682699687000145],[35.94698368300013,33.70083811400009],[35.94843062300018,33.70920969600017],[35.95587203000022,33.71812388100009],[35.97416548700019,33.73215403200011],[35.98026330600007,33.74354868600001],[35.994009236000096,33.76070526200006],[36.02708215400017,33.78429555300006],[36.040518026000115,33.80561208100006],[36.05043990100009,33.81643829400009],[36.066459594000065,33.821993511000116],[36.08506311100021,33.82605011000011],[36.10242639100014,33.83227712100002],[36.13828983600009,33.850622253],[36.14490441900008,33.84741831500013],[36.15761682100012,33.83405995700009],[36.1656783450002,33.82979665200004],[36.1865556230002,33.83021006300005],[36.2026786700001,33.838297424000146],[36.216631307000085,33.84775421200011],[36.231824178000096,33.8525342810001],[36.249187459000126,33.84974375400007],[36.30055383300018,33.82868560800013],[36.338277629000146,33.821192526000104],[36.35750126200011,33.823776347000106],[36.36959354700011,33.8370055140001],[36.367629842000184,33.85754689600015],[36.350369914000076,33.86640940400018],[36.311095825000024,33.8719904580001],[36.28164025900011,33.89111073800011],[36.275335734000095,33.897208557000155],[36.26892785600009,33.906768698000135],[36.26717085800013,33.910386048000035],[36.288564901000115,33.94650787400015],[36.302310832000074,33.964387919],[36.31802046700014,33.9805109660001],[36.35781132000014,34.00955312100008],[36.39109094300008,34.04471893300003],[36.41217492700011,34.05363311800015],[36.42364709500012,34.05280629500014],[36.44514449000005,34.04614003600004],[36.45889042200011,34.04670847600006],[36.4752201740001,34.05350392700002],[36.48069787600022,34.06275400800003],[36.482661580000155,34.07451039700011],[36.48844934100012,34.08864390100017],[36.507983032000226,34.109185283000144],[36.55273482300018,34.1409921270001],[36.575885864000185,34.17326405900015],[36.60410119600007,34.19910227500015],[36.603553891000075,34.20010086600011],[36.59821008300017,34.2098509720001],[36.57402551200008,34.22974639900009],[36.56751428200019,34.24413828500012],[36.5627600510002,34.26294850700013],[36.57030480900008,34.27586761500014],[36.579916626000085,34.28690053300012],[36.58198368300023,34.29989715600006],[36.57681604000007,34.30767445900007],[36.57030480900008,34.30896637000005],[36.56296675600018,34.30850128200011],[36.55583540800015,34.3110851040001],[36.54519006300015,34.320722759000134],[36.52358931400008,34.345889181000146],[36.518628377000226,34.35364064500008],[36.5159412030001,34.361650493000134],[36.51676802600022,34.369867044999985],[36.519971964000064,34.37506052700009],[36.52358931400008,34.379788920000166],[36.52627649000013,34.38668772400014],[36.529790487000156,34.403094991],[36.53061730900017,34.41417958600011],[36.525139608000096,34.42293874100001],[36.50922326700018,34.432421367000174],[36.50188521300018,34.43030263300001],[36.4946505120001,34.43425588000015],[36.480181111000064,34.44913869300002],[36.46323124200009,34.45523651200007],[36.44979536900021,34.4645382690001],[36.43987349400001,34.47745737700002],[36.43346561700017,34.494174703000155],[36.43346561700017,34.49432973300018],[36.41971968600015,34.4983346560001],[36.392331177000216,34.500143331000075],[36.363082316000174,34.49903228800015],[36.34365197700018,34.494174703000155],[36.340964803000155,34.49347707100016],[36.3381742760001,34.49329620400012],[36.33538374800011,34.49347707100016],[36.33269657400021,34.494174703000155],[36.32985124700022,34.49860331600011],[36.319880818000144,34.51412180600006],[36.33662398200008,34.528849590000064],[36.364012492000114,34.54109690400009],[36.3835461830001,34.553809306000154],[36.388093709000174,34.569518942000045],[36.38685347500021,34.584246724000124],[36.388920532000185,34.59623565700018],[36.403699992000185,34.603832092000125],[36.418479451000195,34.600318094999984],[36.429124796000075,34.59318674700016],[36.43625614400011,34.597837626000015],[36.440183553000075,34.62936025000009],[36.41599898300015,34.622900697000134],[36.39119429600012,34.62248728400011],[36.367526489000085,34.629205221000134],[36.34737268000018,34.64413971],[36.323808228000104,34.679486389000104],[36.30892541500023,34.6875479130001],[36.288151489000114,34.67555898100012],[36.284844197000126,34.66791086800005],[36.28443078600017,34.648325501000144],[36.280710083000166,34.63912709600013],[36.27151167800017,34.630962219000125],[36.26158980300019,34.6272415160001],[36.2012317300001,34.62445098900006],[36.19513391100023,34.62620798800013],[36.18335168400014,34.633494365],[36.17828739400014,34.63530304000001],[36.1721895750002,34.63406280600016],[36.160200643000024,34.62806833900014],[36.15585982200017,34.626931458000044],[36.11213991300022,34.62953226600011],[36.087233521000115,34.63101389600003],[36.06077518800012,34.627913310000096],[36.0379342040002,34.62843007500014],[36.01623010300014,34.633649394000045],[35.99876346800008,34.645379944000055],[35.991425415000066,34.648222148000016],[35.98264042200017,34.65023752900005],[35.96989965538299,34.64984895545099],[35.965668165000096,34.668443101000136],[35.94743899800014,34.699530341000134],[35.940928582000225,34.72622304900007],[35.93116295700011,34.740952867000075],[35.928965691000116,34.74982330900009],[35.928965691000116,34.790716864000146],[35.92603600400017,34.79694245000009],[35.90845787900011,34.821763414000074],[35.90455162900017,34.83177317900014],[35.89909915500019,34.85276927299999],[35.86687259200008,34.92422109600015],[35.87289472700016,34.92690664300012],[35.87354576900012,34.93162669500013],[35.879567905000016,34.93805573100006],[35.88135826900012,34.944973049000126],[35.879567905000016,34.95189036700005],[35.87354576900012,34.95831940300015],[35.87354576900012,34.96515534100017],[35.87859134200008,34.969549872000144],[35.87891686300005,34.970160223000036],[35.87663821700019,34.97166575700008],[35.87354576900012,34.97882721600011],[35.88160241000017,34.992865302000055],[35.887380405000016,35.00018952000006],[35.895355665000096,35.00678131700014],[35.90056399800008,35.021918036000145],[35.897308790000096,35.03656647300015],[35.891449415000096,35.04995351800015],[35.88786868600019,35.061346747000115],[35.88786868600019,35.109198309000035],[35.89421634200002,35.12107982],[35.94125410200016,35.18056875200004],[35.96241295700017,35.197943427],[35.95329837300008,35.22479889500009],[35.91529381600017,35.28790924700017],[35.928965691000116,35.321478583000115],[35.92408287900011,35.33852773600016],[35.91667728000007,35.40330638200008],[35.91895592500012,35.417669989000146],[35.90886478000007,35.42572663],[35.860606316000116,35.479071356000034],[35.84009850400017,35.48737213700012],[35.83008873800006,35.49347565300012],[35.82585696700008,35.50332265800013],[35.818369988000114,35.50893789300012],[35.802256707000225,35.506903387000094],[35.78679446700019,35.502183335],[35.78126061300006,35.49957916900008],[35.77051842500006,35.50421784100003],[35.77198326900023,35.51544830900012],[35.77711022200012,35.52912018400015],[35.77808678500011,35.541164455000064],[35.77198326900023,35.546332098000065],[35.737071160000106,35.56167226800012],[35.73878014400012,35.56659577000009],[35.740896030000016,35.576483466000084],[35.743337436000076,35.58209870000009],[35.737071160000106,35.58209870000009],[35.72339928500017,35.57591380400014],[35.72339928500017,35.58209870000009],[35.743418816000116,35.58795807500006],[35.763356967000135,35.59829336100013],[35.77849368600013,35.612738348],[35.78435306100007,35.63056061400009],[35.782074415000096,35.641750393000095],[35.77320397200012,35.655462958000115],[35.77116946700019,35.66779205900015],[35.77662194100017,35.675116278000175],[35.800059441000116,35.68146393400009],[35.838552280000016,35.74209219000006],[35.84034264400012,35.74746328300013],[35.84009850400017,35.77081940300003],[35.83594811300023,35.78998444200009],[35.825368686000076,35.81346263200005],[35.8118595710001,35.83539459800009],[35.798594597000175,35.849676825000174],[35.84685306100019,35.84723541900006],[35.87086022200012,35.85179271],[35.881032748000194,35.866685289000046],[35.88526451900011,35.88597239800008],[35.91130541888409,35.917750432794705],[35.920835409000205,35.91512156200004],[35.94057580600017,35.918377177000124],[35.96072961500013,35.92437164300004],[35.98026330600007,35.92685211200002],[35.992769002000074,35.91527659100008],[35.9930790600001,35.90235748300016],[35.99008182800011,35.88928334600011],[35.99235559100012,35.877346090000074],[36.003931111000185,35.86918121400005],[36.019434041000096,35.866183981000134],[36.050749959000115,35.86540883400012],[36.08030887900022,35.85419504800008],[36.13849654100014,35.819778545000034],[36.155307557000214,35.82223204400019],[36.15761682100012,35.82256907200018],[36.16877893100016,35.852076315000105],[36.17487674900022,35.92266632100008],[36.19689090900013,35.95170847600018],[36.22903365100015,35.961165263000126],[36.2531148680001,35.95563588500015],[36.26903120900013,35.95873647100008],[36.27740279100007,35.993979798000154],[36.27740279100007,35.99403147400006],[36.277506144000114,35.994186504000126],[36.277506144000114,35.99423818000004],[36.29734989400012,36.000749411000086],[36.33672733500012,35.988243713000095],[36.3580180260001,35.993979798000154],[36.35553755700019,36.022401835],[36.35863814300014,36.16699249300016],[36.36049849400015,36.18166860000015],[36.36628625500011,36.18921335800012],[36.37445113100014,36.1958796190001],[36.3757947190002,36.20450958300016],[36.361428670000095,36.21815216000006],[36.373004191000035,36.22760894800014],[36.38561324100007,36.21546498600004],[36.39811893700019,36.208230286000074],[36.41186486800021,36.20445790700013],[36.43925337700014,36.201408997000115],[36.44524784300009,36.19991038000002],[36.4507255450001,36.19991038000002],[36.45920048000008,36.20311432000009],[36.463954712000174,36.208798726000126],[36.465298299000125,36.215930074000156],[36.46891564900014,36.22238962800013],[36.480181111000064,36.22554189099999],[36.49857792200006,36.2278673310001],[36.57443892500007,36.21835886700002],[36.59345585100007,36.21810048500005],[36.664252563000076,36.22900421100012],[36.67004032400004,36.23732411700017],[36.669110148000215,36.2598550420001],[36.665492798000145,36.274014384000154],[36.6584648030001,36.29049916600003],[36.64876116200016,36.30571856100012],[36.648646281000225,36.305898743000014],[36.6370707610001,36.316802470000155],[36.62074100700008,36.32202179000007],[36.5877714440002,36.32481231700014],[36.57764286300008,36.33287384100013],[36.5821903890002,36.33308054700011],[36.5877714440002,36.342123922000056],[36.594282674000084,36.35711008700012],[36.59448938000011,36.36594675700003],[36.593352498000144,36.37349151600007],[36.590561971000085,36.38036448200013],[36.58570438600023,36.38703074200005],[36.58084680200014,36.389872945000135],[36.565033814000145,36.395609030000074],[36.558005819000215,36.400621643000065],[36.55273482300018,36.40816640300001],[36.533821248000066,36.46247833300005],[36.531237427000036,36.479014791000154],[36.53547489400009,36.4940009560001],[36.56534387200011,36.53249989900017],[36.56999475100011,36.575701396000014],[36.569271281000084,36.620143127000105],[36.58281050700006,36.66241444900008],[36.594696085000095,36.68582387300013],[36.59810673000001,36.705460918000156],[36.59893355300002,36.72478790300012],[36.60327437400022,36.74695709300015],[36.615676717000184,36.76659413700018],[36.63200646900023,36.78431915300011],[36.64327193200009,36.80364613900015],[36.63986128800016,36.828089091],[36.6491630460001,36.82855417900011],[36.65856815600014,36.82752065100014],[36.65956262500018,36.827243022000076],[36.84367313700014,36.77584421800019],[36.906821736000126,36.7725886030001],[36.9259420170001,36.76897125300003],[36.9458891200002,36.76266672800001],[36.96469934100023,36.75383005800001],[36.98009891800021,36.74225453700016],[37.01058801200011,36.71951690700008],[37.0184428310001,36.706649475000106],[37.019476359000095,36.68582387300013],[37.01079471800002,36.65373280900012],[37.01451542200007,36.64226064100011],[37.033325643000154,36.62872141500013],[37.05306604000023,36.61993642200004],[37.06236779800017,36.622106832000114],[37.07011926300018,36.63151194300018],[37.08562219300009,36.644172669000035],[37.10443241400017,36.65099395700015],[37.12096887200019,36.64990875299999],[37.13740197700022,36.64587799100018],[37.15610884600002,36.643914287000044],[37.21967085800011,36.65714345300013],[37.241891724000226,36.658590393000125],[37.404465780000095,36.634457500000096],[37.4461169840001,36.63419911700011],[37.59339481600014,36.71052520800005],[37.65406294800002,36.73212595700012],[37.81973758900003,36.76054799400005],[37.98003788200012,36.819665833],[38.007943156000096,36.82576365100006],[38.026005169000115,36.83500562500002],[38.12297489400012,36.88462310800007],[38.19005090300007,36.90552622500003],[38.22426070200006,36.90839426700002],[38.28988977000009,36.90170216900019],[38.47995568900015,36.85573598200001],[38.52935835800017,36.83372182200013],[38.635191663000086,36.74403945900014],[38.664130494000084,36.71951690700008],[38.72500533000013,36.69393707300004],[38.795388631000066,36.68665069600014],[38.957962687000105,36.69290354500008],[38.979976848000064,36.698174540000096],[39.03217004400008,36.701171774000024],[39.18585575300014,36.659520569000094],[39.239599243000015,36.66127756700017],[39.44170763300022,36.6923726940001],[39.76525191300007,36.742151184000036],[39.97981246000003,36.80695343100014],[40.079237915000164,36.85485748300006],[40.115204712000065,36.864727682000066],[40.15272180200023,36.87036041300017],[40.19013553900018,36.884416403],[40.26140900600015,36.92278468300019],[40.39374068200013,36.99402211500008],[40.41389449100009,37.0040215050001],[40.435185180000104,37.010610250000084],[40.45699263500009,37.01412424700014],[40.47983361800013,37.01515777600012],[40.52572229000006,37.02588063600005],[40.659460897000116,37.08525685700006],[40.708966919000176,37.100475566],[40.896449015000115,37.122696432000126],[41.13509078000007,37.0842491660001],[41.17973921700016,37.06962473600011],[41.20133996600006,37.064973857000055],[41.479772583000084,37.07556752600014],[41.896365067000175,37.15428342000011],[42.00924930900006,37.1756130990001],[42.05296757000021,37.19664540600003],[42.12831180900011,37.25328277600012],[42.17854130000015,37.306302795000036],[42.19301070100019,37.313227437000094],[42.21120080500006,37.32490631100008],[42.22256962100013,37.31395090800011],[42.223809855000155,37.302375387000055],[42.22215620900013,37.29240183500015],[42.22318973800011,37.28813853000018],[42.2368323160002,37.28630401600019]]]}},{"type":"Feature","properties":{"scalerank":6,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Scarborough Reef","sov_a3":"SCR","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Scarborough Reef","adm0_a3":"SCR","geou_dif":0,"geounit":"Scarborough Reef","gu_a3":"SCR","su_dif":0,"subunit":"Scarborough Reef","su_a3":"SCR","brk_diff":1,"name":"Scarborough Reef","name_long":"Scarborough Reef","brk_a3":"B70","brk_name":"Scarborough Reef","brk_group":null,"abbrev":"S.R.","postal":"SR","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":null,"name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":6,"mapcolor13":-99,"pop_est":-99,"gdp_md_est":-99,"pop_year":2012,"lastcensus":-99,"gdp_year":2012,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":0,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"woe_id_eh":-99,"woe_note":"No WOE equivalent.","adm0_a3_is":"-99","adm0_a3_us":"SCR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":16,"long_len":16,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"scarboroughreef.geojson"},"geometry":{"type":"Polygon","coordinates":[[[117.753887178,15.154369263000063],[117.75569233100013,15.151887178000052],[117.753887178,15.150082025000074],[117.75185638100008,15.151887178000052],[117.753887178,15.154369263000063]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Singapore","sov_a3":"SGP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Singapore","adm0_a3":"SGP","geou_dif":0,"geounit":"Singapore","gu_a3":"SGP","su_dif":0,"subunit":"Singapore","su_a3":"SGP","brk_diff":0,"name":"Singapore","name_long":"Singapore","brk_a3":"SGP","brk_name":"Singapore","brk_group":null,"abbrev":"Sing.","postal":"SG","formal_en":"Republic of Singapore","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Singapore","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":4657542,"gdp_md_est":237300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"SN","iso_a2":"SG","iso_a3":"SGP","iso_n3":"702","un_a3":"702","wb_a2":"SG","wb_a3":"SGP","woe_id":23424948,"woe_id_eh":23424948,"woe_note":"Exact WOE match as country","adm0_a3_is":"SGP","adm0_a3_us":"SGP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"SGP.geojson"},"geometry":{"type":"Polygon","coordinates":[[[103.96078535200013,1.39109935100015],[103.98568769600007,1.38544342700007],[103.99952233200003,1.38031647300005],[104.00342858200001,1.374172268000066],[103.9918725920001,1.354925848000036],[103.97486412900014,1.334458726000065],[103.95435631600009,1.318101304000052],[103.93189537900008,1.311468817000076],[103.90723717500009,1.308742580000114],[103.88770592500003,1.301255601000136],[103.85271243600005,1.277289130000085],[103.84693444100009,1.271918036000045],[103.84408613400012,1.268500067000033],[103.83887780000003,1.266262111000046],[103.82601972700007,1.264308986000088],[103.80160566500005,1.26479726800008],[103.78956139400003,1.26788971600007],[103.78443444100002,1.273871161000088],[103.77588951900009,1.287583726000108],[103.75513756600003,1.297105210000012],[103.7301538420001,1.302923895000063],[103.70875084700002,1.305243231000119],[103.66529381600009,1.304103908000087],[103.6476343110001,1.308417059000092],[103.64039147200002,1.322251695000091],[103.64470462300004,1.338039455000043],[103.67457116000003,1.38031647300005],[103.67888431100005,1.399237372000073],[103.68384850400008,1.40989817900001],[103.69507897200009,1.421332098000065],[103.70834394600013,1.429388739000089],[103.7179468110001,1.430975653000118],[103.73975670700008,1.428127346000082],[103.76221764400009,1.430975653000118],[103.79004967500003,1.444281317000048],[103.80494225400008,1.448635158000044],[103.83155358200003,1.447088934000092],[103.85718834700009,1.438706773000135],[103.93246504000007,1.401109117000132],[103.96078535200013,1.39109935100015]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Thailand","sov_a3":"THA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Thailand","adm0_a3":"THA","geou_dif":0,"geounit":"Thailand","gu_a3":"THA","su_dif":0,"subunit":"Thailand","su_a3":"THA","brk_diff":0,"name":"Thailand","name_long":"Thailand","brk_a3":"THA","brk_name":"Thailand","brk_group":null,"abbrev":"Thai.","postal":"TH","formal_en":"Kingdom of Thailand","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Thailand","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":8,"mapcolor13":1,"pop_est":65905410,"gdp_md_est":547400,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"TH","iso_a2":"TH","iso_a3":"THA","iso_n3":"764","un_a3":"764","wb_a2":"TH","wb_a3":"THA","woe_id":23424960,"woe_id_eh":23424960,"woe_note":"Exact WOE match as country","adm0_a3_is":"THA","adm0_a3_us":"THA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"THA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.247813347,6.57485586100016],[99.26026451900012,6.565822658000144],[99.25757897200006,6.560939846000081],[99.247325066,6.557033596000096],[99.21729576900006,6.536932684000135],[99.19483483200004,6.533107815000122],[99.1740014980002,6.53900788000007],[99.15845787900017,6.554388739000103],[99.176442905,6.550197658000158],[99.1860457690001,6.559393622000143],[99.19556725400011,6.571234442000105],[99.21371504000008,6.57485586100016],[99.206309441,6.57485586100016],[99.23926842500006,6.576808986000117],[99.247813347,6.57485586100016]]],[[[99.66627037900017,6.497015692000075],[99.65870201900012,6.492336330000157],[99.64682050900015,6.50967031500015],[99.63414807500013,6.552054746000167],[99.60027103000006,6.583441473000079],[99.60303795700011,6.596991278000132],[99.61394290500019,6.608832098000107],[99.62387129000008,6.622707424000097],[99.62598717500006,6.632798570000148],[99.62354576900006,6.651068427000126],[99.62387129000008,6.657416083000057],[99.62924238400015,6.663641669000113],[99.63640384200008,6.666896877000156],[99.6424259770001,6.671332098000136],[99.64503014400006,6.681057033000087],[99.64649498800006,6.699367580000143],[99.65064537900017,6.717759507000096],[99.656993035,6.723822333000085],[99.68051191500014,6.672919012000165],[99.6802898600001,6.62403914500014],[99.69604397700019,6.587452689000145],[99.70443769600016,6.558294989000102],[99.7032983730002,6.544378973000121],[99.69971764400012,6.533270575000174],[99.69263756600017,6.528143622000172],[99.68360436300004,6.526841539000173],[99.67579186300004,6.524562893000109],[99.67237389400006,6.516546942000147],[99.67212975400011,6.507310289000188],[99.67042076900012,6.501450914000144],[99.66627037900017,6.497015692000075]]],[[[99.44581139400005,7.250921942000105],[99.45386803500006,7.238999742000161],[99.44060306100017,7.240220445000175],[99.42823326900005,7.238999742000161],[99.41724694100012,7.23533763200011],[99.40886478000002,7.229396877000084],[99.394297722,7.205471096000124],[99.38331139400006,7.194077867000161],[99.37818444100006,7.201808986000159],[99.37777754000015,7.252346096000082],[99.38550866000006,7.275580145000105],[99.40544681100002,7.26630280200014],[99.41911868600008,7.256577867000188],[99.44581139400005,7.250921942000105]]],[[[99.11744225400015,7.479193427000084],[99.09994550900015,7.467230536000145],[99.07715905000012,7.48029205900012],[99.05713951900006,7.504055080000128],[99.03126061300011,7.56191640800013],[99.02808678500017,7.571722723000065],[99.02906334700006,7.606187242000174],[99.02711022200018,7.622870184000121],[99.02068118600006,7.636867580000086],[99.02320397200018,7.639105536000073],[99.0244246750001,7.6398379580001],[99.02564537900011,7.64093659100014],[99.02808678500017,7.64427317900008],[99.03492272200018,7.64427317900008],[99.06568444100006,7.615057684000134],[99.07585696700019,7.608954169000143],[99.07593834700018,7.57322825700011],[99.08611087300002,7.536525783000115],[99.1014103520001,7.50356679900014],[99.11744225400015,7.479193427000084]]],[[[99.11744225400015,7.595892645000077],[99.1087345710001,7.594183661000073],[99.09986412900015,7.596625067000104],[99.09302819100006,7.601263739000131],[99.0901798840001,7.605861721000152],[99.08765709700016,7.612046617000132],[99.0818791020001,7.616034247000116],[99.07520592500006,7.61912669500019],[99.06959069100006,7.622544664000187],[99.04460696700002,7.663397528000147],[99.06706790500002,7.675197658000116],[99.10450280000006,7.669378973000065],[99.1242781910001,7.657375393000136],[99.12745201900006,7.644354559000149],[99.12745201900006,7.625189520000091],[99.12403405000006,7.60683828300013],[99.11744225400015,7.595892645000077]]],[[[98.53630618600008,8.115139065000108],[98.5405379570001,8.104925848000079],[98.54037519600008,8.105617580000114],[98.58692467500006,8.0792910830001],[98.6023869150001,8.063462632000068],[98.61036217500012,8.034735419000114],[98.61182701900006,7.926092841000155],[98.60352623800011,7.903753973000121],[98.58822675900015,7.904933986000145],[98.57732181100008,7.919623114000145],[98.57081139400006,7.939357815000093],[98.56755618600002,7.963364976000121],[98.56283613400008,7.978094794000114],[98.56324303500006,7.986314195000118],[98.56804446700014,7.993353583000086],[98.5745548840001,7.994126695000105],[98.58041425900015,7.99616120000013],[98.58301842500005,8.00678131700009],[98.5822860040001,8.015366929000095],[98.57960045700005,8.024562893000066],[98.57439212300008,8.031805731000176],[98.5659285820001,8.034735419000114],[98.55486087300008,8.036932684000107],[98.55111738400015,8.0425479190001],[98.54981530000005,8.050116278000147],[98.53687584700006,8.071193752000084],[98.53101647200018,8.088568427000055],[98.52816816500015,8.107082424000067],[98.52849368600008,8.123480536000073],[98.53296959700006,8.119452216000113],[98.53630618600008,8.115139065000108]]],[[[98.28907311300004,8.189683335000055],[98.29566491000006,8.184963283000144],[98.30290774800008,8.188055731000134],[98.31153405000006,8.18553294500012],[98.32081139400006,8.179103908000101],[98.33008873800011,8.170477606000105],[98.33570397200016,8.156439520000148],[98.34351647200016,8.109198309000178],[98.34961998800004,8.109198309000178],[98.36011803500006,8.118841864000144],[98.37370853000019,8.110907294000171],[98.3891707690001,8.095445054000066],[98.40552819100006,8.082505601000065],[98.41285241000006,8.094305731000118],[98.42261803500017,8.099310614000075],[98.43213951900006,8.09593333500014],[98.43913821700008,8.082505601000065],[98.43848717500012,8.06574127800013],[98.43189537900011,8.049790757000125],[98.41863040500019,8.027289130000128],[98.417735222,8.019110419000128],[98.41993248800011,8.001044012000108],[98.41863040500019,7.993150132000138],[98.41431725400011,7.988918361000118],[98.40821373800011,7.98566315300016],[98.4021916020001,7.981024481000133],[98.39812259200002,7.972642320000175],[98.39747155000012,7.955023505000071],[98.40154056100008,7.935777085000111],[98.40894616000004,7.917710679000095],[98.41863040500019,7.903753973000121],[98.42188561300006,7.908433335000139],[98.4279891290001,7.913234768000124],[98.43165123800006,7.91742584800015],[98.43962649800002,7.901922919000143],[98.4397892590001,7.886623440000093],[98.43181399800002,7.874945380000099],[98.39966881600017,7.864569403000091],[98.3953556650001,7.85049062700014],[98.39812259200002,7.815008856000162],[98.36231530000012,7.832424221000124],[98.3439233730002,7.832912502000113],[98.3361108730002,7.811265367000131],[98.33253014400012,7.785956122000171],[98.3230900400001,7.77094147300015],[98.30909264400006,7.767726955000099],[98.29184004000015,7.777492580000142],[98.28663170700005,7.79169342700007],[98.28142337300008,7.855943101000094],[98.2776798840001,7.863430080000157],[98.27295983200011,7.87067291900017],[98.26905358200011,7.879136460000126],[98.2677514980002,7.890082098000092],[98.27198326900006,7.893459377000113],[98.28003991000016,7.896918036000102],[98.28532962300002,7.903753973000121],[98.28142337300008,7.91742584800015],[98.2757267590001,7.921047268000123],[98.25798587300008,7.926418361000088],[98.25416100400017,7.928290106000148],[98.2586369150001,7.93829987200013],[98.26758873800006,7.946275132000082],[98.27409915500006,7.953680731000162],[98.27149498800006,7.962103583000115],[98.26596113400015,7.973781643000122],[98.27003014400006,7.983954169000156],[98.27759850400011,7.993557033000145],[98.28142337300008,8.003078518000137],[98.28044681100008,8.014227606000146],[98.27613366000017,8.033840236000117],[98.27442467500006,8.06932200700011],[98.27515709700012,8.07566966400013],[98.27759850400011,8.083156643000109],[98.28532962300002,8.098863023000163],[98.28825931100008,8.109198309000178],[98.29021243600013,8.130113023000135],[98.2889103520001,8.151800848000121],[98.28142337300008,8.191799221000153],[98.2859806650001,8.191148179000109],[98.28907311300004,8.189683335000055]]],[[[98.62142988400015,8.102525132000125],[98.6208602220001,8.089992580000128],[98.58765709700018,8.101752020000106],[98.57960045700005,8.106146552000084],[98.57007897200006,8.118882554000137],[98.57471764400006,8.12498607000012],[98.59669030000006,8.130316473000093],[98.59229576900012,8.14679596600017],[98.60181725400011,8.16156647300015],[98.61589603000006,8.176174221000082],[98.62403405000006,8.191799221000153],[98.63209069100012,8.189764716000127],[98.63575280000005,8.18553294500012],[98.63705488400015,8.17934804900014],[98.63754316500014,8.171291408000116],[98.62142988400015,8.102525132000125]]],[[[98.29395592500006,8.93463776200015],[98.27051842500006,8.877183335000138],[98.26156660200016,8.878566799000126],[98.25310306100019,8.897853908000158],[98.25098717500012,8.918443101000108],[98.2557072270001,8.939764716000155],[98.25586998800004,8.966376044000114],[98.25220787900011,8.997015692000119],[98.26091556100019,9.012925523000135],[98.27930748800006,9.009344794000157],[98.2884220710001,9.004461981000091],[98.29908287900017,8.997381903000132],[98.31088300900015,8.978176174000083],[98.30697675900015,8.957912502000156],[98.29395592500006,8.93463776200015]]],[[[98.29444420700005,9.041571356000103],[98.27418053500006,9.035956122000101],[98.25424238400015,9.036810614000103],[98.2404891290001,9.0489769550001],[98.24000084700005,9.06268952000012],[98.2483830090001,9.143377997000144],[98.24822024800002,9.150091864000089],[98.25082441500015,9.15403880400008],[98.26091556100019,9.158148505000128],[98.2732853520001,9.159979559000107],[98.28223717500006,9.156724351000065],[98.29566491000006,9.145168361000131],[98.30787194100004,9.133002020000148],[98.31739342500012,9.117132880000113],[98.32276451900006,9.097967841000155],[98.32300866000004,9.076239325000174],[98.30201256600017,9.055161851000065],[98.30933678500011,9.0489769550001],[98.29444420700005,9.041571356000103]]],[[[97.87614993600002,9.390204169000128],[97.87183678500006,9.379584052000084],[97.8400171230002,9.404282945000162],[97.8352970710001,9.41205475500007],[97.8377384770001,9.419338283000087],[97.84359785200016,9.42495351800008],[97.85084069100012,9.428371486000088],[97.85726972700009,9.42869700700011],[97.86841881600006,9.420396226000136],[97.87468509200008,9.405707098000136],[97.87614993600002,9.390204169000128]]],[[[97.89820397200005,9.444973049000138],[97.89478600400011,9.438706773000192],[97.88697350400011,9.438218492000118],[97.87720787900011,9.44208405200011],[97.86988366000011,9.44074127800013],[97.8699650400001,9.425238348000121],[97.84961998800006,9.442124742000104],[97.85328209700006,9.461371161000145],[97.87183678500006,9.473049221000151],[97.895274285,9.46735260600016],[97.89942467500005,9.461127020000104],[97.90015709700018,9.453070380000085],[97.89820397200005,9.444973049000138]]],[[[99.70346113400015,9.521307684000178],[99.68148847700016,9.512884833000129],[99.66814212300002,9.519191799000083],[99.69874108200004,9.542222398000135],[99.70346113400015,9.521307684000178]]],[[[100.08594811300004,9.574530341000155],[100.09066816500014,9.56093984600011],[100.08008873800011,9.549994208000143],[100.0717879570001,9.521673895000106],[100.06861412900017,9.489813544000171],[100.06088300900015,9.46381256700009],[100.03199303500006,9.450181382000139],[100.0296330090001,9.443548895000077],[100.02881920700005,9.4356957050001],[100.02588951900006,9.429144598000107],[100.01929772200018,9.4257266300001],[100.01156660200016,9.42548248900006],[100.00359134200019,9.426214911000088],[99.95630944100006,9.421616929000066],[99.9466251960001,9.418198960000138],[99.94076582100016,9.437486070000176],[99.93669681100017,9.4745547550001],[99.92628014400012,9.493963934000107],[99.94117272200006,9.511867580000157],[99.93962649800018,9.53025950700011],[99.93116295700005,9.54857005400008],[99.92628014400012,9.565985419000143],[99.93628991000017,9.577704169000128],[99.95948326900012,9.580755927000126],[99.9847111340001,9.579006252000127],[100.043711785,9.564154364000075],[100.0623478520001,9.567368882000125],[100.0701603520001,9.586411851000122],[100.07585696700008,9.585028387000136],[100.08594811300004,9.574530341000155]]],[[[99.68043053500017,9.612209377000141],[99.67807050900014,9.61041901200015],[99.67676842500006,9.614569403000104],[99.67530358200005,9.624457098000107],[99.67823326900012,9.624090887000094],[99.68018639400006,9.622544664000145],[99.68181399800007,9.620835679000052],[99.68425540500019,9.620021877000141],[99.68043053500017,9.612209377000141]]],[[[98.41667728000007,9.733465887000179],[98.39812259200002,9.706244208000086],[98.3849389980002,9.727932033000158],[98.38965905000012,9.742417710000112],[98.402110222,9.75584544500019],[98.4116317070001,9.77456289300008],[98.4116317070001,9.768296617000118],[98.4178166020001,9.747056382000139],[98.41667728000007,9.733465887000179]]],[[[99.9978947270001,9.797267971000124],[100.00782311300011,9.79637278900013],[100.02613366000016,9.797756252000113],[100.03541100400011,9.795599677000112],[100.0672306650001,9.775620835000126],[100.07927493600019,9.742417710000112],[100.09009850400017,9.665269273000163],[100.07862389400005,9.673814195000176],[100.05404707100008,9.687730210000069],[99.99919681100012,9.71035390800013],[99.9876408210001,9.719916083000115],[99.99333743600008,9.731675523000192],[99.98991946700008,9.742905992000189],[99.97055097700016,9.76459381700009],[99.9707137380001,9.771226304000137],[99.98357181100002,9.791937567000145],[99.9876408210001,9.801825262000165],[99.9978947270001,9.797267971000124]]],[[[102.56999759200008,11.72093333500014],[102.56413821700002,11.707953192000131],[102.58961022200006,11.71002838700015],[102.60596764400006,11.684515692000076],[102.60816491000004,11.648342190000136],[102.59156334700018,11.618597723000121],[102.59156334700018,11.611761786000102],[102.60572350400011,11.611761786000102],[102.59717858200011,11.598537502000156],[102.5945744150001,11.588853257000109],[102.598317905,11.563381252000099],[102.59156334700018,11.563381252000099],[102.58472741000017,11.568833726000136],[102.57699629000015,11.585028387000179],[102.5716251960001,11.59125397300015],[102.56218509200019,11.595648505000128],[102.53003991000006,11.604925848000093],[102.5379337900001,11.615790106000162],[102.54249108200005,11.620672919000143],[102.54420006600006,11.626044012000094],[102.54371178500017,11.63849518400012],[102.54078209700006,11.647894598000136],[102.53093509200019,11.670355536000145],[102.53003991000006,11.680080471000096],[102.54981530000006,11.752346096000068],[102.5551863940001,11.759833075000131],[102.56413821700002,11.755113023000119],[102.56836998800006,11.744045315000093],[102.57081139400006,11.732814846000096],[102.56999759200008,11.72093333500014]]],[[[102.26628665500007,12.152411200000174],[102.29322350400011,12.145412502000097],[102.31088300900015,12.146185614000117],[102.34278405000006,12.123602606000148],[102.35523522200016,12.11131419500019],[102.36622155000012,12.097805080000114],[102.37810306100019,12.071844794000128],[102.3865666020001,12.058335679000066],[102.39966881600017,12.049302476000136],[102.39966881600017,12.043158270000076],[102.4065047540001,12.036322333000143],[102.41700280000006,12.017767645000133],[102.43213951900006,12.000392971000153],[102.44312584700006,11.983710028000118],[102.44117272200016,11.967433986000088],[102.42750084700006,11.961371161000102],[102.4109806650001,11.971502997000144],[102.37916100400011,12.002834377000099],[102.37598717500006,11.991156317000103],[102.3779403000001,11.979641018000066],[102.37614993600002,11.970892645000092],[102.36215254000008,11.967433986000088],[102.34913170700011,11.968898830000143],[102.31088300900015,11.981105861000131],[102.31088300900015,11.974839585000083],[102.31381269600016,11.971380927000084],[102.31836998800011,11.96116771000014],[102.312266472,11.966131903000088],[102.30640709700018,11.969794012000136],[102.29948978000019,11.97247955900012],[102.2903751960001,11.974839585000083],[102.2903751960001,11.981105861000131],[102.29411868600013,11.994696356000176],[102.29420006600012,12.056789455000114],[102.28467858200011,12.066839911000088],[102.25635826900006,12.131903387000122],[102.27003014400012,12.131903387000122],[102.26596113400015,12.138902085000112],[102.26172936300011,12.144435940000122],[102.25635826900006,12.14899323100016],[102.24952233200005,12.15302155200014],[102.26628665500007,12.152411200000174]]],[[[99.9859171960002,20.38702545200014],[99.99671757100006,20.383511454000185],[100.00844812100016,20.383588969000115],[100.02291752200009,20.380772603000036],[100.03614668800017,20.37312449200006],[100.04265791800006,20.364778748],[100.04761885600007,20.3552444460001],[100.05547367400013,20.344185690000085],[100.09929528800015,20.317804870000046],[100.0972799080001,20.28323333700014],[100.10296431500015,20.263596293000102],[100.11660689300005,20.24801584900017],[100.13464196800012,20.23910166500015],[100.15252201300008,20.239153341000147],[100.1677148850001,20.253622742000104],[100.16709476700007,20.29261261],[100.17639652500006,20.30062245700016],[100.17949711200012,20.302482809000153],[100.20171797700007,20.31031178800002],[100.20719567900007,20.311138611000118],[100.20915938300018,20.312998963000112],[100.22068322800013,20.348991597000023],[100.24037194800015,20.37281443300016],[100.27024092600018,20.391831361000143],[100.30651778200016,20.399686178000177],[100.3443449300001,20.389971009000032],[100.36439538600015,20.368964539000117],[100.42160119700011,20.25018626000015],[100.44733606000008,20.21804351800013],[100.45214196800012,20.210240377],[100.45730961100011,20.196391093000145],[100.461030314,20.190706686],[100.46878178000011,20.185719910000145],[100.4856282960001,20.178769429000152],[100.48893558800007,20.17334340399999],[100.49637699400014,20.164868469000066],[100.51281010000017,20.15528249099999],[100.52924320500003,20.14972727500016],[100.53668461100008,20.153473816000187],[100.54195560700012,20.166728821000092],[100.54650313300013,20.167917379000116],[100.54867354400014,20.15802134200011],[100.55058557200006,20.10652577700013],[100.54335087100017,20.066579895000174],[100.51854618300015,19.99549896300006],[100.51854618300015,19.99542144800013],[100.49265629100009,19.93165273],[100.48795373600014,19.896977844],[100.48397465000008,19.88069976800007],[100.47425948100013,19.865351868000104],[100.46562951600016,19.85977081300008],[100.4462508550001,19.852122701000024],[100.43844771400009,19.847213440000175],[100.43141971900016,19.83827341700005],[100.42051599100007,19.810445659],[100.40765850600022,19.794257080000094],[100.38351566600008,19.763859355000037],[100.37917484500004,19.745669251],[100.3838257240002,19.732000835000164],[100.3900481580001,19.724387049000185],[100.40046553600015,19.71164032000003],[100.40723514800017,19.699935608000047],[100.41049076300006,19.684251811000095],[100.41291955600016,19.651566467000023],[100.41886234600005,19.634358215000034],[100.42707889800008,19.621800842000123],[100.44749108900011,19.597771302000083],[100.45555261300015,19.58467132600005],[100.45896325700008,19.56805735300013],[100.45896325700008,19.551830953000106],[100.46196049000017,19.537103170000123],[100.47425948100013,19.52498504700013],[100.49182946800008,19.514468893000142],[100.52061324100012,19.502609152000147],[100.54929366000006,19.494547628000145],[100.5666569420001,19.49563283300013],[100.5747578780001,19.508347404000105],[100.58598392800016,19.52596689900018],[100.60701623600019,19.540927226000136],[100.6332678630001,19.542167460000186],[100.71476159700015,19.512453512000107],[100.72923099800019,19.504650371000093],[100.73817102000012,19.495038554000086],[100.74550907500011,19.485013326000157],[100.75300215700005,19.482429504000052],[100.76261397300007,19.49547780400009],[100.80845096900012,19.536534729000053],[100.84901696800014,19.582526754000142],[100.86121260600007,19.602603048],[100.86503666200011,19.60715057400013],[100.87459680200018,19.612912496000106],[100.87981612100012,19.613584290000105],[100.88565555900018,19.61244740799999],[100.97428064000003,19.613480937000148],[101.00254764900015,19.610612895000187],[101.02430342600016,19.602861430000175],[101.06822839400009,19.577126567000093],[101.09582360900018,19.567282207000016],[101.12465905700004,19.565111796000124],[101.15266768400014,19.56836741100001],[101.1768522550001,19.57474945100013],[101.18832442200014,19.580743917000078],[101.19731612200005,19.586867574000124],[101.20796146700016,19.589554749000072],[101.22501469000011,19.585213928000186],[101.23824385600018,19.578185933000086],[101.24620202600008,19.570279439000117],[101.2510596110001,19.56030588800003],[101.2548836670002,19.547154236000054],[101.25695072400018,19.522788798000036],[101.25173140500006,19.494444275000106],[101.23824385600018,19.472300924000095],[101.21529952000006,19.46635813500008],[101.19287194800009,19.4527930710001],[101.17778243100005,19.417213847000042],[101.1723564050001,19.37638946500014],[101.17845422400013,19.346623841000067],[101.18501713100014,19.341998800000013],[101.20196700100021,19.338665670000083],[101.20775476100019,19.33468658400001],[101.21126875800014,19.32636667900006],[101.21090702300015,19.320630595000083],[101.20925337700011,19.315592143000046],[101.20951176000008,19.30941680900004],[101.2298722740002,19.22580434200013],[101.22677168800007,19.167151591],[101.22914880400012,19.143587138],[101.23571171100009,19.128110047000078],[101.24744226100009,19.11578521800014],[101.29116052300017,19.07899159700004],[101.31787723800012,19.050130311000103],[101.32640385000016,19.020545553000076],[101.28392582300009,18.981478170000127],[101.27700118000021,18.96706044500003],[101.2672860110001,18.93445261700016],[101.25726078300008,18.919492289000015],[101.23292118400016,18.892723897000124],[101.22491133700007,18.874766337000054],[101.2233093670002,18.855491028000117],[101.22863204000006,18.795623881000054],[101.22398116100013,18.778544820000107],[101.20920170100013,18.746324565000137],[101.2058427330002,18.73007232700003],[101.21126875800014,18.711908061000102],[101.23478153500017,18.68948048900002],[101.2401042070002,18.67364166300011],[101.23472985900004,18.658448791000083],[101.22191410300015,18.642041525000124],[101.1941121830001,18.616797587000164],[101.18532719000021,18.612534282000112],[101.16775720200022,18.606358948000107],[101.16088423700009,18.599796041000147],[101.15814538600014,18.589977519000072],[101.15912723900007,18.567704976000027],[101.15535485900008,18.55672373400013],[101.14207401500008,18.544295552000065],[101.07789188700022,18.510421651000154],[101.0738094480001,18.5057707720001],[101.0719490970001,18.495668030000147],[101.06471439700013,18.476418559000123],[101.03562056500002,18.447841492000137],[101.0302978920001,18.4277910360001],[101.03701582900013,18.410453593000096],[101.05102014200011,18.392470194000012],[101.07408876600013,18.3716131070001],[101.08228438300009,18.364203186000125],[101.1455363370002,18.336246237000026],[101.15540653500008,18.322887879000106],[101.15240930200015,18.316376649000134],[101.13540775500016,18.29839325000013],[101.13013676,18.291158550000162],[101.1279663490002,18.28095245400003],[101.12837976100016,18.245734965000125],[101.13173872900013,18.238861999000065],[101.13964522300009,18.218708192000104],[101.1455363370002,18.21299794500014],[101.15277103700006,18.209070537000073],[101.15928226700011,18.20405792200002],[101.16279626500008,18.195298768000143],[101.16052250200008,18.179511617000127],[101.14563969000014,18.141942851000135],[101.14160892800012,18.123959453000154],[101.14496789600005,18.10473582000013],[101.16207279400007,18.067451274000106],[101.165173381,18.053421123000177],[101.15752526900016,18.040450338000156],[101.12543420500006,18.02133005800006],[101.11230839100008,18.011304830000043],[101.09489343300005,17.984381408000118],[101.08197432500006,17.958336487000153],[101.06616133700007,17.933996887000134],[101.03980635600007,17.912034403000163],[101.00828373200008,17.895239563000118],[101.00084232600008,17.884800924000057],[100.99712162300008,17.864595439000183],[101.00027388600014,17.83048899400002],[100.99479618300015,17.81772491500014],[100.97428064000003,17.809249980000132],[100.96704594000019,17.803823955000084],[100.9651855880002,17.79762278300008],[100.96771773300011,17.79100819900019],[100.97428064000003,17.783980204000088],[100.97521081600021,17.78191314800001],[100.97552087400011,17.779794413000147],[100.97521081600021,17.777624004000145],[100.97428064000003,17.775505269000078],[100.96487552900011,17.770596009000045],[100.95857100500021,17.76413645500018],[100.95640059400009,17.755919902000144],[100.95872603300015,17.745791321000112],[100.96068973800018,17.725585836],[100.95587773300011,17.70753177100015],[100.95381677300011,17.69979929600011],[100.93293949400007,17.6545307410001],[100.89945316600014,17.6169619760001],[100.88565555900018,17.595877991000165],[100.88601729400008,17.573760478000153],[100.90193363500012,17.561926575000044],[100.9377383790002,17.555486371000185],[100.98151534100006,17.547612203000067],[101.00084232600008,17.538207092],[101.01903243000001,17.526631572000056],[101.03546553500009,17.512627259000155],[101.04931482000003,17.49572906500005],[101.06616133700007,17.49221506700009],[101.09603031500015,17.475265198],[101.12465905700004,17.46394805900003],[101.1288965250001,17.461157532000144],[101.13230717000013,17.461674296000112],[101.1418156340001,17.46715199800009],[101.14718998200007,17.472474671000143],[101.16424320500019,17.49572906500005],[101.16424320500019,17.49578074200015],[101.16672367300006,17.51061187800009],[101.17695560800021,17.516399638000067],[101.19028812700017,17.518725078],[101.20217370700017,17.523169250000123],[101.2085299080002,17.53128245100011],[101.22863204000006,17.568489482000032],[101.24702885000008,17.592157288000138],[101.35730635600007,17.67902537100015],[101.36986372900004,17.68315948500016],[101.37746016500009,17.68264272100005],[101.38376468900005,17.684916484000055],[101.40159305900006,17.70667226200008],[101.40309167500017,17.709462789000114],[101.40402185100007,17.71556060900018],[101.39875085500009,17.717162577000025],[101.38836389200017,17.717782695],[101.38190433800006,17.720728252000086],[101.3880021570001,17.72930653900012],[101.40185144000006,17.733750713000045],[101.41699263500006,17.73235544900014],[101.43203047700015,17.73359568300019],[101.44525964400006,17.745791321000112],[101.44980717000006,17.74925364200014],[101.45347619700006,17.75101064100012],[101.45606001800014,17.750183818],[101.45735192900011,17.745791321000112],[101.45910892800012,17.739486796000094],[101.46830733200007,17.720366516000084],[101.47042606700009,17.72258860300009],[101.4741984460002,17.730598450000073],[101.47900435400011,17.73798818000007],[101.48298344000008,17.745791321000112],[101.50272383700015,17.76537668900012],[101.53652022300011,17.779122620000138],[101.55626062000006,17.7921450810001],[101.53403975500005,17.80956003800013],[101.54550484500012,17.813671657000057],[101.5640120850002,17.820308736000143],[101.57052331500009,17.828887024000082],[101.5750708420002,17.839790752000127],[101.57755131000006,17.85291656500003],[101.57755131000006,17.868109436000125],[101.6003922940001,17.854363506000098],[101.6111409920002,17.86552561500004],[101.6198743090001,17.884645895000048],[101.6362040610002,17.894826152000107],[101.72906661000015,17.91218943300011],[101.73258060800012,17.932033183],[101.75692020700009,17.997817282000156],[101.7657568770002,18.040321147000114],[101.77392175300021,18.05856292700018],[101.79040653500013,18.073574931000067],[101.7966593840001,18.073574931000067],[101.80606449400008,18.062386983000025],[101.8451835530001,18.052129211000032],[101.88378584800009,18.030838522000135],[101.90430139200006,18.037117208000055],[102.05552696700013,18.19234457500012],[102.07126794400014,18.208502096000032],[102.0785026450001,18.213798930000067],[102.10738518700012,18.212376684000063],[102.15353682500009,18.210104065000152],[102.1719336350001,18.200285543000078],[102.17839318900022,18.185971171000105],[102.18211389200016,18.169228007000143],[102.19157067900018,18.152071432000085],[102.22180139200012,18.131607564000134],[102.22557377100006,18.12819692],[102.2331185310002,18.124166158000108],[102.25657963100016,18.094038798000113],[102.30670577000008,18.051457418000055],[102.3365230720001,18.037039694000143],[102.36639205000019,18.03879669200002],[102.3851505950001,18.016059062000053],[102.41222904500009,17.994199931000097],[102.44550866700008,17.97776682600012],[102.48204390500015,17.971152243000134],[102.56751672400017,17.970842183000126],[102.59960778900009,17.955184225],[102.61232019100012,17.915290019000153],[102.59557702600007,17.85007436200014],[102.59526696800012,17.84082428000012],[102.60942631100014,17.83700022400008],[102.6607926840002,17.81286733000003],[102.6829101970002,17.810076802000154],[102.6829101970002,17.817363180000044],[102.67335005700014,17.831780904000155],[102.66761397300014,17.85007436200014],[102.67298832300006,17.86537058500009],[102.68673425300008,17.873535462000017],[102.72218428500017,17.881803691000144],[102.73737715700011,17.890433655000024],[102.7740674230001,17.922731425000066],[102.83189335200008,17.95311716700003],[102.83804284700008,17.96376251300002],[102.85271895400015,17.97203074200017],[102.93860518400018,18.00892771399999],[102.95493493600011,18.012131653000083],[102.9729183350001,18.00773915600017],[103.00382084200012,17.988567200000162],[103.02046065300013,17.98422638000009],[103.03792728700009,17.990685934000123],[103.0493994550001,18.005000305000024],[103.05828780100009,18.019263001000112],[103.06820967600012,18.02577423100017],[103.07306726100015,18.035515239000016],[103.06479903100009,18.094038798000113],[103.06634932500012,18.112254740000154],[103.07131026200014,18.12556142200019],[103.0799402260001,18.134785665],[103.08770263200019,18.138666867000055],[103.0921326100001,18.140881856000092],[103.09275598200006,18.141193542000124],[103.0905855710001,18.13685272300016],[103.0900868090001,18.13616477500007],[103.0894037820001,18.135222668000026],[103.08908695500006,18.134785665],[103.11006758700009,18.141813660000093],[103.1266557210001,18.15186472600014],[103.13859297700006,18.16672170000008],[103.1451042080001,18.18801239000005],[103.15089196800008,18.221498719000138],[103.15729984600009,18.237027487000162],[103.16820357300017,18.249765727000053],[103.17673018400009,18.25485585600002],[103.18520511900007,18.257749736],[103.21491906700007,18.262297262000132],[103.2367265230001,18.26999705000013],[103.2735201420002,18.276069031000176],[103.2863358970001,18.280332336000058],[103.29537927300012,18.28777374300016],[103.29651615500015,18.296894633000036],[103.29041833600009,18.30513702400016],[103.24866377800005,18.332628886000137],[103.24018884300014,18.335987854000066],[103.23801843300005,18.341568909000088],[103.23533125900022,18.345263774000085],[103.2336776120001,18.349268698000074],[103.23398767100016,18.355779928000132],[103.24406457600016,18.38006785100005],[103.260756063,18.40019582100011],[103.28256351700004,18.415569560000094],[103.30685144100008,18.425672303000127],[103.38663985200006,18.441459452000018],[103.39676843300016,18.441407777],[103.45154545100016,18.425310568000114],[103.46994226100017,18.421977437000024],[103.47479984500009,18.42215830500008],[103.48911421800008,18.424432068],[103.49774418100012,18.42373443600009],[103.52316898700022,18.417688293000154],[103.54880049700009,18.415414530000035],[103.60714318900014,18.400402527000054],[103.6213542080001,18.390764873000037],[103.62993249500013,18.383220113],[103.63861413600009,18.37794911700014],[103.69556156500008,18.353221945000044],[103.70910079000006,18.349707947000084],[103.76718510000008,18.346684875000065],[103.78460005700006,18.343894348],[103.80139489700011,18.33826161700007],[103.81725956200013,18.330355123000132],[103.83209069900006,18.3206657920001],[103.84221927900009,18.309116110000062],[103.84898889200022,18.296352031000183],[103.85777388600009,18.286481832],[103.87394860800012,18.28322621700012],[103.88128666200011,18.284414775000144],[103.88593754100005,18.286998596000146],[103.88950321500008,18.291158550000162],[103.89368900600019,18.297256368000134],[103.91001875800012,18.31531728100005],[103.92929406800008,18.32759043400007],[103.9512565520001,18.33299062200014],[103.97544112200009,18.330665182000118],[104.00003910300008,18.318443705],[104.01864261900008,18.299116720000043],[104.06840702300016,18.21540090000009],[104.11093672700022,18.11455434200009],[104.12235721900011,18.095279032000164],[104.13568973800014,18.07967275000011],[104.1981148690002,18.025567525000113],[104.20332887200013,18.018643666000013],[104.21087894700004,18.008617656000112],[104.25511397400007,17.914979960000082],[104.26431237800008,17.884645895000048],[104.2703068440002,17.874000550000133],[104.27826501500007,17.864647116000086],[104.28198161000009,17.861488010000087],[104.28756677200013,17.856740621000043],[104.35262740100009,17.81932688500008],[104.36776859600009,17.80056834],[104.39029952000013,17.757160137000184],[104.4048722740001,17.739951884000035],[104.40890303600005,17.733699036000118],[104.41164188700012,17.727394511000014],[104.41784305900009,17.70760243800011],[104.42228723200012,17.69979929600011],[104.45200118000011,17.66595123300003],[104.48119836500021,17.640423075000072],[104.63638269100008,17.562443339000183],[104.65508955900006,17.556087138000137],[104.70263187700017,17.527303365000034],[104.7145174570002,17.515262756000155],[104.73425785400016,17.486892395000055],[104.74965743100009,17.458160299000056],[104.75678877800013,17.449943746000102],[104.76464359600007,17.444414368000125],[104.78164514200014,17.43526763900003],[104.78893151900016,17.428963115000116],[104.79270389800016,17.423485413000133],[104.81642338100019,17.37279083300014],[104.81931726100018,17.361060283000157],[104.8199890550001,17.34891632100006],[104.81642338100019,17.300082093000086],[104.81833540900013,17.240240784000136],[104.8144596760001,17.19404205300019],[104.80991215100013,17.171666158],[104.74531661000017,17.024801738000107],[104.74035567200022,17.002580872000166],[104.74634039700007,16.94353159400019],[104.74965743100009,16.91080352800013],[104.75301639800009,16.89984812500013],[104.76288659700006,16.87907419800011],[104.76640059500019,16.868170472000045],[104.76707238800012,16.85612986200009],[104.76521203600005,16.844657695000148],[104.75844242400015,16.821920065000157],[104.75791005200008,16.818894636000138],[104.75632369000019,16.80987945500003],[104.75678877800013,16.79845896400009],[104.77833785000016,16.715828349000148],[104.77900964400013,16.70487294500016],[104.77756270400006,16.694020894000047],[104.76371342000019,16.656762187000098],[104.75301639800009,16.614800924000107],[104.74841719600013,16.571909485000145],[104.74950240100011,16.54932688400011],[104.75451501500017,16.52891469300006],[104.76516036000007,16.511344706],[104.78273034700007,16.49708201200012],[104.8388509530001,16.467729797000132],[104.85549076300012,16.454087220000034],[104.86892663600005,16.438429260000177],[104.87946862800005,16.421841126000075],[104.88773685700019,16.403909404],[104.89703861500013,16.372748515000055],[104.90158614100002,16.36246490500004],[104.90804569600019,16.353369853000075],[104.91729577700019,16.34556671200015],[104.94406416900009,16.330838928000148],[104.95207401600007,16.3244310510001],[104.97150435400013,16.304328919000127],[104.97930749500009,16.29864451100009],[104.98802829000007,16.29396349600013],[105.0074194740001,16.283554992000106],[105.01548099800019,16.27673370400005],[105.02638472500016,16.257665100000068],[105.02974369300009,16.236012675],[105.02886519400013,16.191467590000073],[105.03258589700013,16.165267639000078],[105.04245609600011,16.141444804000102],[105.05811405500017,16.121187643],[105.07930139200013,16.105426331],[105.1069790080002,16.09585328100009],[105.23722456900006,16.05080434100016],[105.24740482700011,16.049150696000098],[105.28853926700017,16.047393698000135],[105.40491459200021,16.018816630000074],[105.4144747320001,16.01519928000009],[105.42207116700015,16.00987660800014],[105.4232318410001,16.00504046700003],[105.42393151900009,16.00212514300013],[105.41814375800018,15.994735412000026],[105.40739506000008,15.988895976000137],[105.3865177820002,15.980782776000057],[105.36248824000009,15.954789531000173],[105.36062788900009,15.919391175000058],[105.37256514500021,15.882132467000032],[105.41204593900014,15.799760234000146],[105.4230013430001,15.783895569000137],[105.43566206900007,15.771648255000015],[105.4479610600001,15.764878642000086],[105.4623787850002,15.762811585000021],[105.50340987200015,15.76617055200002],[105.52542403200006,15.763483378],[105.56852217700006,15.749375712000145],[105.61291223200013,15.721470439000155],[105.64092085800021,15.681989645000058],[105.65099776200006,15.634602356000173],[105.64086918200022,15.583313497000134],[105.61627119900001,15.52127594000008],[105.61203373200007,15.49946848600014],[105.6103800870002,15.45717132600008],[105.60428226700017,15.43921376600018],[105.59224347300008,15.427546297000163],[105.58836592600008,15.423788350000095],[105.55281254100007,15.402032573000087],[105.50620039900011,15.38758900900015],[105.4862532970001,15.374902446000107],[105.47746830200012,15.352810771000108],[105.48330774000013,15.334517314000138],[105.49901737500008,15.32467295300016],[105.51937789000013,15.321055603000088],[105.53854984600011,15.321520691000103],[105.55803186100009,15.325138041000088],[105.56149418200008,15.320900574000133],[105.56480147400006,15.299454854000203],[105.56397465000012,15.272531433000097],[105.5602539470001,15.270929464000163],[105.53157352800022,15.252894389000161],[105.5039266360001,15.231061096000133],[105.46310225400012,15.189435730000113],[105.45442061400016,15.17553477000014],[105.44770267800013,15.155303446000147],[105.44377526900016,15.133806050000189],[105.44362024000012,15.11135264100011],[105.45194014500007,15.094764506000104],[105.4738509520001,15.09063039100016],[105.49829390500005,15.066135763000203],[105.50356490100009,15.064895528000179],[105.51653568600014,15.067143453000183],[105.52087650600012,15.066135763000203],[105.52315026900013,15.061174825000165],[105.52284021000006,15.050038554000139],[105.52428715000022,15.045956116000129],[105.55353601100009,15.005338440000102],[105.56614506100013,14.995985006000154],[105.56614506100013,14.995933329000136],[105.56635176600017,14.995933329000136],[105.5664551190001,14.995933329000136],[105.59306848199999,14.990791525000148],[105.58356001800014,14.977588196000157],[105.54392419400007,14.953093567000108],[105.53415734900014,14.934024964000114],[105.55064213100009,14.902295634000096],[105.54304569500013,14.88010060700016],[105.53761967000017,14.878033549000106],[105.52191003400016,14.878705343000176],[105.51777592000016,14.87767181400011],[105.51586389200006,14.871677348000091],[105.51694909700015,14.856536153000077],[105.52408044500005,14.842531840000163],[105.52439050300009,14.837235006000126],[105.52004968300017,14.833462626000184],[105.50620039900011,14.830413717000168],[105.50154952000017,14.827338970000126],[105.4938497310001,14.808993836000141],[105.4891471760001,14.786333720000187],[105.49069746900007,14.763802796000164],[105.50154952000017,14.745948589000122],[105.50511519400013,14.736362610000114],[105.49736372900011,14.690422262000126],[105.49576175900009,14.659881490000132],[105.51012780800008,14.593580627000124],[105.50754398600012,14.564047547000186],[105.49545170100012,14.53712412500009],[105.46367069500015,14.495963847000096],[105.44036462500006,14.47534495000019],[105.43385339400007,14.467929383000168],[105.42889245600011,14.458162536000131],[105.42031416900008,14.435218201000097],[105.41597334800011,14.428164368000168],[105.40568973800012,14.423048401000171],[105.37923140500013,14.41824249300008],[105.36765588400007,14.41454762800008],[105.3596460370002,14.408268942000163],[105.34083581600007,14.390104675000131],[105.33509973200015,14.385712178000134],[105.32223230000012,14.386383972000118],[105.30466231300008,14.398192037000129],[105.29474043800016,14.399070536000167],[105.28771244300006,14.39328277600019],[105.27572351100011,14.372095439000132],[105.26859216300008,14.364369812000135],[105.25045373600014,14.35718678800018],[105.19820886300012,14.34522369400014],[105.18430790300008,14.345740458000181],[105.1550073650001,14.330470073000129],[105.13221805800012,14.28070566800011],[105.10141890500014,14.230527852000165],[105.04731368100013,14.214068909000103],[105.02535119700003,14.224378358000195],[105.00772953300006,14.243834534000184],[104.97594852700016,14.301117859000158],[104.97429488200012,14.309644470000165],[104.97899743700006,14.354964701000185],[104.9787390540001,14.368503927000164],[104.97382979400018,14.380647888000155],[104.9551229250001,14.386280619000102],[104.91562096700008,14.39321676200015],[104.89817549700008,14.396280009000106],[104.89021732600006,14.400233256000178],[104.87424930900013,14.41056854200019],[104.86654952,14.413772481000164],[104.85735111500006,14.414134217000154],[104.8384892180002,14.411447042000134],[104.83140954700016,14.411757101000203],[104.81507979400013,14.419844462000114],[104.80185062700015,14.430076396000104],[104.78825972500007,14.438215434000199],[104.77167159000007,14.43986908000015],[104.75792566000021,14.433047791000192],[104.72795332900009,14.409948426000128],[104.71286381000006,14.406847839000177],[104.70619755100009,14.412248027000144],[104.70102990800014,14.430076396000104],[104.69286503100014,14.433977966000157],[104.68464847900012,14.430567322000131],[104.6747266040002,14.414650981000193],[104.66837040200008,14.40963836700014],[104.65136885600005,14.408914897000145],[104.6265641690002,14.419276021000158],[104.61044112100015,14.418965963000176],[104.59462813300014,14.41000010200014],[104.58346602400009,14.395814921000179],[104.57385420800018,14.38054453600013],[104.56279545100018,14.368478089000147],[104.54284834800009,14.360390727000151],[104.5265185960002,14.363542989000123],[104.5108089610001,14.370545145000122],[104.492618856,14.374007467000155],[104.48197351100012,14.37121694000011],[104.47391198800014,14.365687561000184],[104.46750411000019,14.360080668000165],[104.46197473200017,14.357109273000162],[104.45850831800007,14.357042243000125],[104.45262129700004,14.35692840600012],[104.44600671400016,14.358685404000182],[104.43918542500009,14.361424255000145],[104.32539392100007,14.37762481700014],[104.27123702000009,14.399070536000167],[104.2474658610001,14.401085917000115],[104.2323763430002,14.39312774700015],[104.21914717700022,14.382869975000162],[104.20126713100014,14.377986552000136],[104.1891748460001,14.382301534000119],[104.18349043800006,14.391422425000187],[104.18256026200018,14.400362448000122],[104.18566084800014,14.403979798000194],[104.17703088400017,14.404212342000164],[104.17480879700004,14.401344299000186],[104.17325850500006,14.396021627000138],[104.1484538170001,14.369614970000157],[104.14090905800016,14.365997620000172],[104.12835168500006,14.366359355000084],[104.12127201400014,14.371475321000162],[104.11615604700015,14.377469788000097],[104.11021325700014,14.380441183000116],[104.07372969600011,14.370751852000167],[104.04572418600017,14.357285453000172],[104.04506401500005,14.356968011000106],[104.03595422400022,14.352587585000137],[104.00138269100015,14.345068665000099],[103.9739941810001,14.367289530000134],[103.9198372810001,14.364576518000192],[103.91053552300016,14.356256612000136],[103.90800337700009,14.348324280000085],[103.9027840580001,14.342433167000179],[103.88516239400009,14.340417786000131],[103.87033125800022,14.34325999000019],[103.85916914900011,14.34961619100014],[103.84924727400013,14.357083436000151],[103.8384469000001,14.363387960000168],[103.82402917500016,14.368038839000134],[103.81550256400007,14.367961324000118],[103.80728601100012,14.365997620000172],[103.79421187400007,14.36483490000016],[103.77524662300013,14.366979472000152],[103.71654219600005,14.381526387000106],[103.68222904400014,14.383800151000115],[103.67489099100007,14.386487325000147],[103.67168705300017,14.395608216000127],[103.67385746300008,14.419327698000174],[103.6714803470002,14.429559631000146],[103.66538252800015,14.435941671000178],[103.65716597500013,14.441160991000102],[103.64719242300012,14.443977356000161],[103.63706384300016,14.443279724000176],[103.62745202700015,14.437802023000188],[103.62445479400006,14.430567322000131],[103.62290450000009,14.422479960000132],[103.61680668100014,14.41454762800008],[103.59613610900007,14.40434153300019],[103.5816150320002,14.407416280000133],[103.56812748200011,14.415942892000144],[103.55024743700008,14.421859844000151],[103.5334009200001,14.419069316000103],[103.49485030100013,14.399949036000109],[103.45702315300016,14.374420878000166],[103.44968510000015,14.37157867400019],[103.43924646000013,14.372870585000143],[103.43149499600011,14.377521464000111],[103.42622399900009,14.382508240000163],[103.42250329600009,14.384833679000108],[103.40808557200015,14.380802918000198],[103.3802319750001,14.361062520000145],[103.36286869400007,14.353466085000079],[103.3413712980001,14.35090810100017],[103.27367517100005,14.351063131000132],[103.24327762700008,14.341931315000123],[103.19858931500013,14.32850636800019],[103.13823124200022,14.319747213000113],[103.11802575700014,14.31323598200015],[103.08500451700016,14.295821025000121],[103.0169296110001,14.238872481000143],[103.0048543710001,14.228770854000103],[102.98780114800016,14.219004008000141],[102.95090417500015,14.208642884000126],[102.93405765800006,14.200968934000144],[102.91860640500008,14.185491842000133],[102.91400720200006,14.169342956000149],[102.91392961400018,14.164946285000068],[102.91369714400011,14.151772970000167],[102.91126835200006,14.13211008800013],[102.90408532700022,14.115987040000148],[102.88325972500016,14.086944885000063],[102.8762317310002,14.071312765000116],[102.87287276200013,14.048368429000092],[102.87333785000006,14.033408102000122],[102.8697721770001,14.020618185000146],[102.85499271600005,14.004004212000126],[102.79742517100011,13.960001729000169],[102.77282718900003,13.93607554100008],[102.75437870400006,13.904113668000093],[102.73717045100008,13.849595032000167],[102.72910892800004,13.832154236000136],[102.71128055900013,13.810398458000122],[102.7064746500001,13.801949361000124],[102.70399418100007,13.791769104000153],[102.70265059400018,13.771201884000163],[102.6986198330001,13.761796774000118],[102.67495202700016,13.741901347000109],[102.57438969000012,13.69389394100017],[102.54235030100014,13.669709371000096],[102.54105839100006,13.648599549000153],[102.5625041100001,13.628032329000163],[102.59774743700008,13.605449728000139],[102.5795573330001,13.600488790000098],[102.53253177900015,13.573823751000148],[102.51320479400013,13.56715749100013],[102.45222660300013,13.562170716000168],[102.37130131000006,13.568914490000111],[102.33223392800014,13.564599508000143],[102.31342370600012,13.541009217000122],[102.31476729300019,13.530338033000135],[102.32551599100012,13.513439840000132],[102.32939172400009,13.504344788000168],[102.33011519400004,13.4963607790001],[102.3295283460001,13.484602854000157],[102.32939172400009,13.481865540000157],[102.33362919200013,13.406262919000113],[102.32706628500014,13.3454397590001],[102.32820316600007,13.275159811000094],[102.32918681200007,13.272628953000122],[102.38205000800016,13.136615295000155],[102.40189375900016,13.102999777000122],[102.44726566600009,13.050806580000142],[102.46318200800013,13.01928395600008],[102.47315555800006,13.006132304000104],[102.49015710500007,12.996081238000158],[102.4900967720001,12.995187554000111],[102.48974369400004,12.989957581000112],[102.4866431070001,12.984789937000187],[102.48137211200006,12.980552470000148],[102.47408573400016,12.976960958000163],[102.46881473900007,12.973395284000105],[102.4672127690002,12.969467876000138],[102.46907312000022,12.96523040800018],[102.47759973200013,12.957298075000123],[102.47889164300008,12.953629049000128],[102.47759973200013,12.949934184000126],[102.46628259300016,12.937919414000163],[102.46483565300016,12.927532451000145],[102.46788456300007,12.916344503000104],[102.47408573400016,12.90525990800009],[102.47920170100016,12.882108867000099],[102.48333581500017,12.843790792000092],[102.48974369400004,12.82309438100016],[102.4955314530001,12.812681580000131],[102.50049239100017,12.806506246000154],[102.50431644800018,12.799736633000123],[102.50664188700014,12.787515157000186],[102.5055566820001,12.777774150000155],[102.49527307200006,12.746096497000138],[102.49519613400017,12.746029849000138],[102.48271569900012,12.735218608000181],[102.47796146700013,12.719638164000159],[102.47666955600019,12.698450826000098],[102.4792533770001,12.677108460000099],[102.48638472500014,12.661192119000177],[102.49587711000012,12.654152464000092],[102.5017843020001,12.649771627000163],[102.55862837700013,12.631219788000138],[102.5885490310001,12.609825745000123],[102.6648234460001,12.534223124000079],[102.68973148600017,12.519702047000138],[102.6967594810001,12.513087464000135],[102.7004801840001,12.504870911000111],[102.70213383000007,12.48812774700015],[102.70482100500007,12.480324606000138],[102.71841190600017,12.465906880000205],[102.75060632400017,12.449008688000118],[102.7620784910001,12.43608957900011],[102.763750896,12.42526146900019],[102.76512740100006,12.416349182000147],[102.75649743700009,12.402241517000121],[102.73065922000009,12.380072327000093],[102.7200655520002,12.361210429000081],[102.71505293800007,12.3421935020001],[102.69221195500015,12.178482564000205],[102.69996342000015,12.138743388000123],[102.75122644000007,12.06097035800019],[102.76501241200006,12.044563616000175],[102.77107019100018,12.037354228000169],[102.78714156100014,12.002627666000137],[102.79711511200004,11.952966614000147],[102.8430037850002,11.866046855000135],[102.8851717530001,11.807704163000082],[102.91380049600016,11.765536194000118],[102.92511763500013,11.725797018000122],[102.92878666200014,11.668694560000105],[102.91359227323525,11.64589160539414],[102.91358483200005,11.645900783000101],[102.90601647199999,11.666205145000106],[102.90870201900012,11.717962958000129],[102.90674889400006,11.741441148000177],[102.89332116000006,11.769680080000157],[102.82545006600006,11.858140367000175],[102.78345787900017,11.892279364000089],[102.77702884200006,11.902533270000106],[102.77702884200006,11.967433986000088],[102.7669376960001,12.011786200000131],[102.74968509200019,12.040269273000135],[102.63184655000006,12.152044989000075],[102.63013756600006,12.161363023000105],[102.65357506600006,12.159165757000125],[102.64136803500017,12.175482489000144],[102.60450280000005,12.203924872000158],[102.60572350400011,12.214422919000128],[102.60572350400011,12.221258856000148],[102.58936608200011,12.21222565300013],[102.57390384200008,12.208726304000052],[102.56185957100016,12.20209381700009],[102.55730228000013,12.183742580000128],[102.5716251960001,12.090969143000109],[102.58399498800004,12.067328192000076],[102.58594811300006,12.060248114000117],[102.58236738400008,12.049261786000145],[102.57398522200006,12.049261786000145],[102.56348717500006,12.053859768000095],[102.55388431100017,12.056789455000114],[102.55014082100016,12.061183986000103],[102.55103600400017,12.082749742000189],[102.55046634200019,12.090969143000109],[102.5322371750001,12.113592841000154],[102.5042423840001,12.133368231000176],[102.47364342500006,12.14899323100016],[102.36622155000012,12.186021226000108],[102.35035241,12.195705471000153],[102.33619225400017,12.197577216000127],[102.32447350400011,12.180324611000117],[102.31836998800011,12.180324611000117],[102.29590905000012,12.190008856000176],[102.2903751960001,12.19399648600016],[102.28646894600008,12.202541408000087],[102.28711998800006,12.210191148000106],[102.2893986340001,12.21662018400012],[102.2903751960001,12.221258856000148],[102.28345787900017,12.241359768000095],[102.26539147200018,12.271470445000134],[102.26319420700005,12.28953685100005],[102.29004967500006,12.282904364000089],[102.31519616000006,12.291245835000055],[102.33627363400015,12.307440497000101],[102.35189863400015,12.32367584800015],[102.35987389400012,12.34707265800013],[102.35206139400012,12.36725495000016],[102.33725019600016,12.376125393000109],[102.32447350400011,12.365301825000117],[102.3325301440001,12.361883856000105],[102.33838951900006,12.357163804000095],[102.34245853000002,12.351304429000066],[102.3450626960001,12.34479401200015],[102.33073978000007,12.327826239000089],[102.31023196700019,12.316229559000163],[102.29167728000019,12.318060614000146],[102.28353925900015,12.341376044000143],[102.28614342500006,12.385687567000103],[102.29224694100006,12.406887111000088],[102.30404707100008,12.42739492400014],[102.29786217500006,12.42739492400014],[102.29151451900012,12.419582424000152],[102.27670332100016,12.39256419500019],[102.27003014400012,12.39256419500019],[102.26587975400017,12.404771226000078],[102.2635197270001,12.417303778000175],[102.26441491000011,12.42942942900008],[102.27003014400012,12.440375067000131],[102.25847415500007,12.431870835000112],[102.24244225400017,12.426255601000108],[102.22828209700006,12.427720445000162],[102.22217858200004,12.440375067000131],[102.20573978000007,12.435777085000112],[102.20101972700016,12.433539130000128],[102.21062259200002,12.427679755000085],[102.21436608200004,12.419623114000146],[102.2133895190001,12.409979559000163],[102.20850670700005,12.399400132000123],[102.214610222,12.399400132000123],[102.2358504570001,12.413723049000112],[102.24252363400015,12.402777411000145],[102.24708092500012,12.393011786000102],[102.24781334700006,12.38320547100008],[102.24268639400012,12.372137762000136],[102.2630314460001,12.357001044000128],[102.27344811300011,12.326157945000162],[102.26482181100019,12.306219794000086],[102.22828209700006,12.32367584800015],[102.1668400400001,12.385728257000096],[102.1368921230002,12.401760158000087],[102.12435957100008,12.410549221000139],[102.12598717500012,12.419907945000176],[102.10987389400006,12.440904039000117],[102.087168816,12.464748440000108],[102.071950717,12.488511460000097],[102.07813561300011,12.509263414000188],[102.08179772200005,12.50112539300008],[102.08594811300011,12.498358466000125],[102.09148196700019,12.4976260440001],[102.09864342500005,12.49559153900016],[102.08545983200011,12.50433991100013],[102.09213300900015,12.512681382000109],[102.10564212300002,12.522894598000136],[102.1123153000001,12.537258205000114],[102.10474694100004,12.537258205000114],[102.09945722700016,12.527411200000103],[102.09294681100008,12.523382880000126],[102.08545983200011,12.524359442000105],[102.07813561300011,12.529730536000073],[102.08822675900015,12.538723049000083],[102.09327233200011,12.541449286000145],[102.09864342500005,12.543402411000102],[102.04786217500012,12.542303778000147],[102.04330488400015,12.550523179000052],[102.06446373800006,12.570746161000073],[102.02222741000006,12.568548895000077],[102.00928795700004,12.564520575000117],[102.00928795700004,12.55707428600013],[102.02247155000005,12.547756252000099],[102.03150475400011,12.534125067000147],[102.04322350400015,12.523504950000103],[102.06446373800006,12.52293528900013],[102.05958092500012,12.510484117000116],[102.0574650400001,12.497219143000095],[102.0569767590001,12.468329169000171],[102.02247155000005,12.51951732000012],[102.00896243600019,12.534084377000156],[101.99219811300011,12.539780992000132],[101.9734806650001,12.541449286000145],[101.96078535200016,12.537258205000114],[101.96078535200016,12.580633856000176],[101.9588322270001,12.591253973000121],[101.95435631600006,12.601304429000095],[101.94988040500019,12.606350002000125],[101.94776451900006,12.601752020000092],[101.94597415500019,12.59568919500019],[101.93702233200005,12.589178778000104],[101.93425540500019,12.583726304000066],[101.94727623800011,12.540716864000117],[101.94776451900006,12.529730536000073],[101.91407311300006,12.555121161000088],[101.89958743600002,12.569728908000101],[101.89258873800006,12.583726304000066],[101.91309655000012,12.577582098000091],[101.90943444100006,12.594224351000136],[101.90259850400011,12.597886460000096],[101.89429772200006,12.596502997000115],[101.88575280000012,12.598049221000153],[101.87761478000019,12.605536200000117],[101.87354576900006,12.613023179000095],[101.87045332100016,12.621568101000108],[101.86524498800004,12.63214752800016],[101.84880618600008,12.654527085000081],[101.83025149800008,12.672796942000147],[101.80836022200005,12.687933661000145],[101.78272545700005,12.7011172550001],[101.76612389400012,12.705877997000101],[101.70443769600008,12.707912502000125],[101.68637129000015,12.702134507000068],[101.67595462300007,12.688625393000095],[101.66846764400012,12.672796942000147],[101.65984134200019,12.6601016300001],[101.64234459700006,12.65135325700011],[101.62208092500006,12.649644273000106],[101.58106530000006,12.652655341000113],[101.57349694100017,12.649807033000073],[101.57203209700006,12.643296617000173],[101.57260175900008,12.636419989000075],[101.57105553500006,12.63214752800016],[101.56641686300011,12.63129303600006],[101.55543053500017,12.6323916690001],[101.53907311300004,12.631740627000156],[101.509043816,12.63898346600017],[101.46509850400017,12.632310289000117],[101.44288170700011,12.62482330900015],[101.43327884200002,12.615423895000133],[101.42888431100008,12.596869208000129],[101.41814212300002,12.595648505000113],[101.39291425900008,12.611721096000096],[101.32349694100006,12.642157294000143],[101.2488712900001,12.6601016300001],[101.0877384770001,12.680609442000147],[101.06666100400015,12.676255601000065],[101.0320744150001,12.656968492000116],[100.98861738400015,12.649359442000076],[100.9780379570001,12.639593817000133],[100.97771243600008,12.63922760600012],[100.9744572270001,12.622219143000152],[100.9744572270001,12.598049221000153],[100.9261173840001,12.619126695000162],[100.9261173840001,12.625392971000124],[100.9407658210001,12.636379299000081],[100.93458092500006,12.652899481000148],[100.91765384200008,12.662583726000122],[100.89958743600008,12.652655341000113],[100.88868248800006,12.658758856000103],[100.8798934250001,12.658148505000142],[100.87061608200004,12.65473053600013],[100.85792076900012,12.652655341000113],[100.8626408210001,12.655991929000137],[100.86687259200014,12.660305080000143],[100.86988366000006,12.66600169500012],[100.87142988400015,12.673773505000128],[100.85108483200005,12.673773505000128],[100.85450280000006,12.679673570000162],[100.86133873800011,12.695135809000178],[100.86459394600016,12.7011172550001],[100.85629316500015,12.701402085000126],[100.83741295700004,12.707912502000125],[100.8548283210001,12.752264716000155],[100.86793053500017,12.771144924000096],[100.88591556100017,12.762518622000087],[100.89210045700005,12.762518622000087],[100.89918053500006,12.773504950000145],[100.907888217,12.782538153000147],[100.91570071700014,12.793646552000084],[100.91993248800006,12.810939846000082],[100.91846764400006,12.826320705000128],[100.91325931100019,12.840399481000162],[100.90609785200016,12.853216864000101],[100.86866295700011,12.906236070000134],[100.86459394600016,12.91958242400014],[100.86817467500012,12.929022528000147],[100.87549889400012,12.934759833000129],[100.88404381600006,12.940008856000118],[100.89210045700005,12.948065497000144],[100.8945418630001,12.95551178600013],[100.89673912900011,12.973863023000177],[100.89958743600008,12.982245184000135],[100.90821373800006,12.97744375200014],[100.9187931650001,12.98240794500019],[100.92839603000019,12.992499091000154],[100.93360436300006,13.002752997000101],[100.93311608200011,13.026434637000108],[100.923106316,13.04279205900012],[100.91138756599999,13.057033596000123],[100.90577233200011,13.074408270000106],[100.90154056100019,13.080633856000162],[100.89210045700005,13.083482164000117],[100.88282311300011,13.087836005000097],[100.8782658210001,13.098334052000084],[100.89958743600008,13.125637111000145],[100.91578209700012,13.15485260600009],[100.93702233200011,13.183986721000153],[100.94516035200009,13.200913804000137],[100.94450931100006,13.220038153000104],[100.93360436300006,13.256008205000084],[100.92896569100006,13.265611070000162],[100.9153751960001,13.2870547550001],[100.9124455090001,13.293850002000125],[100.91472415500007,13.304388739000089],[100.9192814460001,13.310777085000112],[100.92400149800018,13.315619208000086],[100.93238366000016,13.338120835000083],[100.94711347700016,13.344427802000126],[100.96534264400012,13.34853750200007],[100.98129316500014,13.35903554900014],[100.98536217500012,13.37303294500019],[100.9871525400001,13.396144924000154],[100.98511803500006,13.417710679000066],[100.97087649800008,13.437201239000144],[100.9783634770001,13.458889065000136],[100.99577884200019,13.489325262000179],[100.99577884200019,13.496161200000103],[100.98389733200005,13.487982489000103],[100.97388756600006,13.478827216000111],[100.96338951900006,13.47138092700014],[100.95069420700011,13.46824778900016],[100.88892662900011,13.46824778900016],[100.86402428500016,13.471502997000115],[100.81397545700005,13.486029364000146],[100.7713322270001,13.491156317000074],[100.749766472,13.499904690000136],[100.6798608730002,13.509222723000093],[100.64966881600017,13.520249742000132],[100.6101994150001,13.547512111000117],[100.5920516290001,13.554510809000105],[100.58961022200018,13.561957098000079],[100.59156334700006,13.571519273000163],[100.59669030000006,13.582668361000088],[100.59888756600006,13.596502997000172],[100.59782962300007,13.612250067000131],[100.58692467500012,13.592027085000126],[100.58318118600008,13.575995184000133],[100.5842391290001,13.533677476000122],[100.57585696700008,13.519598700000174],[100.55591881600017,13.510891018000095],[100.4299422540001,13.489325262000179],[100.38111412900011,13.491522528000175],[100.35645592500006,13.489691473000105],[100.337168816,13.481878973000107],[100.28988691500015,13.505031643000152],[100.27507571700008,13.51666901200015],[100.2649845710001,13.497544664000173],[100.2532658210001,13.485785223000107],[100.23715254000014,13.477362372000158],[100.1504012380001,13.444037177000068],[100.11304772200018,13.436590887000179],[100.08895918100004,13.425970770000147],[100.06934655000006,13.41738515800013],[100.05307050900015,13.413031317000147],[100.03882897200006,13.402736721000124],[100.03126061300011,13.382025458000115],[100.02165774800014,13.366603908000087],[100.0013126960001,13.372015692000133],[100.01563561300011,13.36587148600016],[100.01392662900011,13.348374742000104],[100.0061955090001,13.332831122000101],[99.9936629570001,13.321722723000077],[99.97738691500015,13.317368882000082],[99.96273847700016,13.309881903000118],[99.96070397200005,13.29242584800015],[99.96086673300006,13.291571356000148],[99.96713300900015,13.259019273000177],[99.99854576900006,13.21808502800016],[100.05648847700016,13.170314846000108],[100.05982506600017,13.165676174000096],[100.0667423840001,13.160101630000085],[100.073985222,13.152777411000073],[100.0769962900001,13.142726955000098],[100.077810092,13.13377513200008],[100.0877384770001,13.09617747600008],[100.10434004000008,13.05731842700007],[100.10189863400015,13.039862372000101],[100.093028191,13.023993231000176],[100.06006920700005,12.980292059000178],[100.05298912900017,12.966131903000159],[100.04297936300011,12.933823960000138],[100.02930748800006,12.861802476000108],[100.0239363940001,12.847072658000116],[99.9876408210001,12.79047272300012],[99.97429446700019,12.751206773000192],[99.96501712300002,12.710150458000115],[99.9604598320001,12.667914130000085],[99.9607853520001,12.636175848000121],[99.96094811300006,12.625392971000124],[99.9780379570001,12.560777085000083],[99.9808048840001,12.540350653000102],[99.97706139400006,12.476874091000097],[99.9808048840001,12.454657294000128],[100.01099694100017,12.383246161000073],[100.01221764400012,12.368719794000128],[100.00367272200016,12.353949286000145],[99.98170006600017,12.27993398600016],[99.98275800900008,12.270453192000076],[99.99170983200005,12.259466864000103],[100.00171959700006,12.250311591000125],[100.00928795700011,12.241115627000156],[100.01392662900011,12.230698960000069],[100.01710045700005,12.210109768000123],[100.01970462300008,12.20221588700015],[100.02003014400012,12.19269440300016],[100.01563561300011,12.180324611000117],[100.01042728000002,12.174953518000066],[99.99431399800008,12.162583726000122],[99.9876408210001,12.15302155200014],[99.98145592500012,12.117173570000134],[99.97738691500015,12.108303127000099],[99.95533287900015,12.072495835000083],[99.8553166020001,11.968410549000152],[99.83122806100019,11.924709377000084],[99.82325280000005,11.878648179000137],[99.83692467500006,11.843451239000089],[99.833750847,11.837713934000107],[99.81959069100017,11.836371161000116],[99.81251061300011,11.832098700000117],[99.80982506600006,11.824611721000139],[99.80958092500012,11.813462632000123],[99.81706790500007,11.775580145000092],[99.81495201900006,11.769680080000157],[99.81177819100017,11.762274481000162],[99.81104576900006,11.753078518000095],[99.81706790500007,11.741441148000177],[99.78044681100008,11.737250067000062],[99.75180097700014,11.709865627000099],[99.67058353000007,11.577866929000137],[99.66553795700004,11.56679922100011],[99.66130618600013,11.551011460000067],[99.641856316,11.523260809000178],[99.6375431650001,11.505316473000136],[99.63607832100016,11.481838283000158],[99.63200931100019,11.460638739000075],[99.62574303500006,11.440497137000136],[99.5999455090001,11.38422272300015],[99.59734134200014,11.374945380000113],[99.59294681100002,11.36420319200009],[99.57374108200005,11.344061591000155],[99.56934655000012,11.333970445000176],[99.5662541020001,11.276312567000133],[99.56934655000012,11.25551992400014],[99.58619225400011,11.213853257000096],[99.58619225400011,11.19513580900012],[99.56934655000012,11.179144598000121],[99.56202233200011,11.198919989000146],[99.54615319100017,11.198431708000058],[99.52857506600006,11.18683502800013],[99.51531009200019,11.17291901200015],[99.50814863400014,11.162176825000145],[99.50131269600016,11.148749091000155],[99.49634850400011,11.132879950000131],[99.49415123800011,11.11456940300016],[99.4975692070001,11.093085028000132],[99.51205488400015,11.056952216000097],[99.51531009200019,11.0392113300001],[99.51246178500016,11.019232489000132],[99.50342858200005,10.997056382000068],[99.49870853000007,10.98529694200009],[99.49415123800011,10.967474677000112],[99.49610436300004,10.944240627000084],[99.51156660200016,10.90241120000016],[99.51531009200019,10.881537177000098],[99.51156660200016,10.866359768000109],[99.5032658210001,10.866848049000096],[99.49586022200012,10.873846747000172],[99.49415123800011,10.878119208000086],[99.47535241000006,10.878851630000113],[99.46119225400011,10.877427476000136],[99.45167076900012,10.875311591000125],[99.4432072270001,10.870347398000177],[99.43970787900011,10.861029364000132],[99.43970787900011,10.820054429000123],[99.43506920700005,10.801825262000136],[99.37501061300004,10.711981512000136],[99.37134850400011,10.7030703800001],[99.37370853000007,10.692572333000129],[99.37671959700018,10.68549225500007],[99.3743595710001,10.681382554000109],[99.36109459700016,10.680121161000102],[99.34351647200005,10.675360419000114],[99.32715905000005,10.6632754580001],[99.31316165500019,10.647365627000083],[99.30241946700008,10.631048895000063],[99.296153191,10.610907294000128],[99.28825931100008,10.56293366100013],[99.2781681650001,10.546047268000137],[99.26726321700019,10.54169342700014],[99.2547306650001,10.539943752000141],[99.24463951900006,10.535142320000148],[99.24040774800014,10.521877346000123],[99.24268639400012,10.514471747000144],[99.24903405000012,10.509995835000083],[99.25798587300008,10.508002020000133],[99.26832116000017,10.508205471000096],[99.26099694100006,10.494818427000098],[99.25171959700012,10.4839541690001],[99.24382571700002,10.472357489000089],[99.24040774800014,10.456976630000142],[99.24675540500007,10.443915106000162],[99.2776798840001,10.42357005400008],[99.28874759200002,10.41201406500015],[99.29053795700011,10.399237372000115],[99.28931725400011,10.380845445000162],[99.2850041020001,10.364488023000149],[99.2781681650001,10.3573672550001],[99.26384524800018,10.357326565000108],[99.25635826900012,10.356146552000082],[99.23414147200016,10.34369538000007],[99.23072350400017,10.356512762000094],[99.22339928500017,10.365383205000143],[99.21306399800008,10.372056382000096],[99.20004316500015,10.378485419000114],[99.18474368600019,10.371283270000077],[99.17164147200006,10.370266018000109],[99.16065514400006,10.367987372000144],[99.15162194100017,10.3573672550001],[99.15137780000012,10.346340236000145],[99.15845787900017,10.302720445000148],[99.16895592500006,10.287746486000117],[99.206309441,10.254339911000145],[99.22461998800006,10.232367255000128],[99.236094597,10.22931549700013],[99.25464928500004,10.234442450000143],[99.2417098320001,10.214504299000154],[99.20134524800008,10.210638739000146],[99.19255618600017,10.196275132000082],[99.18677819100006,10.172430731000105],[99.15992272200006,10.128322658000101],[99.15162194100017,10.10346100500007],[99.15349368600002,10.075832424000152],[99.16309655000012,10.05768463700015],[99.1740014980002,10.04291413000007],[99.17888431100008,10.02529531500015],[99.17579186300006,10.013495184000178],[99.16163170700005,10.00332265800013],[99.15845787900017,9.990545966000099],[99.165293816,9.946478583000086],[99.165293816,9.86762116100013],[99.16675866000017,9.864691473000121],[99.16993248800004,9.861802476000094],[99.17237389400005,9.85740794500019],[99.1721297540001,9.85024648600016],[99.1683048840001,9.844468492000189],[99.1557723320001,9.83478424700013],[99.15162194100017,9.829169012000136],[99.14820397200006,9.819240627000127],[99.146169467,9.809719143000137],[99.14494876400012,9.79124583500011],[99.14478600400017,9.788234768000109],[99.1479598320001,9.767401434000135],[99.16195722700014,9.727118231000146],[99.16724694100006,9.688137111000074],[99.17286217500006,9.665228583000086],[99.18140709700016,9.64325592700007],[99.21208743600008,9.597723700000103],[99.21778405000006,9.5821800800001],[99.21998131600006,9.559149481000118],[99.22315514400012,9.54262929900014],[99.26531009200008,9.466009833000086],[99.32357832100014,9.391546942000119],[99.31568444100012,9.389593817000074],[99.31072024800008,9.389837958000115],[99.30600019600014,9.390855210000083],[99.29900149800008,9.391546942000119],[99.29078209700018,9.39008209800015],[99.2900496750001,9.386419989000103],[99.29127037900017,9.381781317000076],[99.28874759200002,9.377264716000111],[99.26384524800018,9.363755601000136],[99.25464928500004,9.356838283000144],[99.23552493600008,9.336330471000096],[99.23023522200018,9.319769598000121],[99.23414147200016,9.278265692000133],[99.255056186,9.232489325000117],[99.30176842500012,9.222601630000113],[99.35075931100019,9.219183661000102],[99.37818444100006,9.192938544000171],[99.41098066500015,9.196356512000179],[99.44385826900006,9.195990302000068],[99.47478274800008,9.200995184000107],[99.50171959700006,9.220282294000143],[99.50928795700011,9.235500393000123],[99.51441491,9.253241278000118],[99.52149498800004,9.269924221000151],[99.53581790500007,9.28168366100013],[99.5481876960001,9.2831485050001],[99.59351647200012,9.274847723000121],[99.61011803500017,9.277980861000103],[99.62354576900006,9.284816799000112],[99.63379967500006,9.291652736000131],[99.64128665500007,9.29474518400012],[99.67237389400006,9.302191473000093],[99.68913821700006,9.313910223000079],[99.68946373800011,9.315863348000121],[99.72730553500006,9.31370677300012],[99.73373457100014,9.312160549000081],[99.73951256599999,9.320502020000148],[99.75277754000015,9.319769598000121],[99.77182050900015,9.312282619000158],[99.7815861340001,9.30841705900015],[99.78687584700006,9.312811591000127],[99.79769941500015,9.318345445000148],[99.80339603000002,9.322658596000153],[99.81544030000005,9.311183986000117],[99.85352623800006,9.294663804000137],[99.8545028000001,9.285101630000142],[99.85303795700004,9.27399323100012],[99.85962975400011,9.257757880000085],[99.8777775400001,9.226467190000122],[99.88599694099999,9.233303127000127],[99.88648522200012,9.157904364000089],[99.89144941500015,9.138332424000112],[99.89958743600008,9.125311591000127],[99.90870201900006,9.11408112200013],[99.9162703790001,9.101996161000116],[99.91944420700005,9.086493231000103],[99.91944420700005,9.038397528000132],[99.92164147200018,9.028225002000099],[99.93132571700002,9.011867580000086],[99.93311608200011,9.000555731000105],[99.93116295700005,8.999823309000163],[99.92652428500006,8.994533596000096],[99.92188561300011,8.987127997000101],[99.91944420700005,8.980047919000143],[99.91944420700005,8.955796617000146],[99.93116295700005,8.878973700000131],[99.92628014400012,8.863348700000145],[99.9392195970001,8.832464911000102],[99.95923912900017,8.63764069200009],[99.96713300900015,8.60565827000009],[99.98414147200012,8.57941315300016],[100.04078209700018,8.545558986000103],[100.04965254000015,8.530951239000075],[100.05372155000012,8.513657945000176],[100.07593834700006,8.470404364000089],[100.0921330090001,8.446437893000137],[100.09848066500015,8.42645905200007],[100.10434004000008,8.417669989000089],[100.11198978000013,8.413153387000136],[100.13404381599999,8.403753973000107],[100.13851972700016,8.400946356000162],[100.14421634200008,8.388820705000157],[100.15756269600016,8.385728257000082],[100.17351321700008,8.38934967700014],[100.18628991000006,8.39720286700013],[100.17709394600016,8.426214911000116],[100.175059441,8.466457424000096],[100.16480553500011,8.501369533000116],[100.1311141290001,8.51455312700007],[100.15064537900017,8.52293528900013],[100.18083743600019,8.501206773000149],[100.20834394600008,8.469671942000147],[100.22046959699999,8.448716539000102],[100.27149498800011,8.317084052000068],[100.30290774800001,8.118557033000116],[100.34245853000019,7.938788153000118],[100.36736087300018,7.825588283000116],[100.44019616000017,7.476996161000087],[100.50062712400002,7.333994596000139],[100.55440086900009,7.249833509000111],[100.56720549100012,7.229492628000102],[100.57460007300008,7.209153209000135],[100.57398522200012,7.194973049000154],[100.54813921600007,7.197050183000143],[100.53553353000015,7.210047007000099],[100.49963009900007,7.242325281000162],[100.48023522200018,7.253892320000118],[100.47242272200012,7.258856512000164],[100.44433725400013,7.25781738200007],[100.42554772200006,7.267564195000148],[100.43897545700005,7.294134833000101],[100.42907310000005,7.326386839000121],[100.42231851700015,7.369974025000174],[100.40812190499999,7.378690254000077],[100.41000410200016,7.458319403000105],[100.40601647200016,7.527655341000155],[100.38950791600008,7.566181028000115],[100.35892713700017,7.578610288000092],[100.32556391400013,7.574479835000105],[100.30298912900011,7.540676174000139],[100.2957462900001,7.5235863300001],[100.28956139400012,7.518215236000144],[100.27881920700011,7.523911851000121],[100.272634311,7.531073309000163],[100.2697046230002,7.537502346000083],[100.26880944100006,7.545477606000134],[100.26880944100006,7.557440497000159],[100.27556399800008,7.576971747000144],[100.30958092500006,7.597723700000144],[100.32349694100017,7.616400458000128],[100.32699629000015,7.655218817000133],[100.32056725400017,7.707953192000132],[100.30697675900008,7.757879950000173],[100.28874759200018,7.788316148000134],[100.2697046230002,7.795396226000107],[100.25049889400005,7.791978257000097],[100.23096764400006,7.78481679900014],[100.21062259200019,7.780910549000154],[100.20085696700008,7.772324937000135],[100.15642337300001,7.733384507000054],[100.14478600400011,7.719427802000083],[100.14291425900015,7.700018622000172],[100.15463300900015,7.615790106000162],[100.17261803500017,7.568019924000126],[100.17920983200005,7.531195380000141],[100.1853947270001,7.514227606000162],[100.19654381600006,7.507147528000103],[100.19922936300011,7.503810940000079],[100.22046959699999,7.486029364000103],[100.22510826900006,7.479478257000109],[100.22779381599999,7.474595445000134],[100.26050866000006,7.393622137000178],[100.27881920700011,7.362209377000141],[100.30298912900011,7.34267812700007],[100.32488040500007,7.339789130000141],[100.34978274800018,7.33930084800015],[100.37012780000006,7.332709052000084],[100.37867272200012,7.311346747000115],[100.3787541020001,7.309800523000177],[100.37940514400012,7.287665106000105],[100.3811955090001,7.27570221600017],[100.38493899800008,7.26630280200014],[100.39380944100012,7.258530992000146],[100.40795767400019,7.258301914000099],[100.41765772700015,7.253489360000088],[100.42687237100002,7.245308942000108],[100.41065514400012,7.237005927000126],[100.40186608200005,7.233547268000123],[100.39519290500019,7.228664455000157],[100.39234459700006,7.222560940000079],[100.39551842500012,7.211330471000069],[100.40259850400017,7.203192450000146],[100.41086040400009,7.198636690000143],[100.4244364040002,7.17120569800015],[100.43655983500011,7.160134853000115],[100.45062495500011,7.155316541000147],[100.46614621000012,7.157237053000159],[100.47778577700008,7.146162532000091],[100.48603135600015,7.139901052000184],[100.49480228000002,7.13662344000015],[100.51998800000015,7.135553009000134],[100.53163022300012,7.137473830000175],[100.55586937000007,7.144694505000132],[100.58082116,7.167629299000083],[100.58863366,7.179592190000107],[100.58570128300002,7.207170551000132],[100.58541961600011,7.224401972000166],[100.611094597,7.192613023000192],[100.76514733200005,6.983140367000174],[100.7844344410001,6.967108466000084],[100.81123879700012,6.957427810000154],[100.82734686500011,6.951698926000162],[100.84994550900014,6.962062893000152],[100.8664742460002,6.947088590000178],[100.89636616000003,6.919634714000068],[100.94810813400008,6.880730520000142],[100.99757308100001,6.856675229000118],[101.0267033210001,6.856350002000112],[101.06804446700008,6.857733466000099],[101.19141686300011,6.861883856000133],[101.2315253100002,6.880323212000107],[101.24426659600007,6.902029121000155],[101.27773147400015,6.896256198000074],[101.29156196900007,6.884794559000142],[101.31006920700005,6.880357164000159],[101.317149285,6.87592194200009],[101.31918379000015,6.877997137000108],[101.35132897200012,6.87592194200009],[101.34358280900018,6.896142525000172],[101.32829837300001,6.917873440000078],[101.26254316500014,6.94476959800015],[101.2917311680002,6.954572005000117],[101.32081139400006,6.949286200000116],[101.34669030000005,6.928615627000099],[101.38520969600003,6.905220335000152],[101.41944420700005,6.894476630000099],[101.4368595710001,6.890204169000171],[101.45191491000006,6.888413804000095],[101.47120201900006,6.88401927300012],[101.48804772200018,6.87832265800013],[101.49537194100017,6.872503973000078],[101.52295983200011,6.860825914000173],[101.55738366,6.841782945000175],[101.56625410200014,6.832220770000105],[101.66830488400015,6.658636786000073],[101.7234806650001,6.574408270000077],[101.77165774800002,6.500718492000118],[101.80836022200005,6.464544989000089],[101.90870201900012,6.401922919000171],[102.02003014400005,6.295640367000174],[102.07276451900006,6.257757880000142],[102.07309004000015,6.257513739000103],[102.07311375502772,6.257496632543237],[102.06665583400016,6.204748336000122],[102.07126794400014,6.126655579000101],[102.06000248200004,6.09479705800014],[102.03344079600005,6.068390402000162],[101.95938846900006,6.011598002000142],[101.93473881000013,5.981729024000117],[101.91975264500016,5.940258687000153],[101.91928755700022,5.897573955000155],[101.9129313560002,5.859307556000161],[101.88032352800016,5.831040548000175],[101.86921309400012,5.823857524000132],[101.86425215700008,5.815408427000136],[101.86084151200006,5.806494242000113],[101.85474369300019,5.797657573000109],[101.82549483300014,5.779829203000162],[101.82022383600021,5.7737313840002],[101.81226566600006,5.752544047000143],[101.80048343900015,5.739909159000205],[101.78415368600021,5.738100484000128],[101.76286299700021,5.749546814000141],[101.75418135600009,5.760269674000142],[101.74787683100007,5.772387797000135],[101.74002201400006,5.782361349000155],[101.72679284700021,5.786469625000165],[101.71475223800014,5.782903951000108],[101.69756670000018,5.767138300000113],[101.69661381100009,5.766264140000175],[101.68669193600013,5.761199849000191],[101.6659180090002,5.765592346000105],[101.65036340400016,5.782645569000124],[101.63077803600007,5.828405050000157],[101.63129480000006,5.837370911000107],[101.63439538600014,5.847344462000193],[101.63408532700007,5.855586853000148],[101.62457686400013,5.859410909000175],[101.6128979900001,5.86134877500011],[101.60514652500008,5.866103007000106],[101.59977217600012,5.874061178000161],[101.59512129800007,5.885352478000129],[101.57930831000007,5.906333109000129],[101.55791426600014,5.911345724000099],[101.53465987100006,5.906023051000147],[101.50020142500009,5.892693601000118],[101.39265303600015,5.851091004000125],[101.3575647380002,5.828405050000157],[101.3189624440001,5.810085755000088],[101.27968835500015,5.803031921000169],[101.24899255400011,5.786986389000106],[101.23664188700016,5.7416661580001],[101.23359297700013,5.719419454000146],[101.22501469000011,5.699213969000155],[101.21230228700013,5.681514791000153],[101.19685103400016,5.666812846000155],[101.14998050900012,5.638649190000194],[101.12217858900007,5.62989003500013],[101.10543542600013,5.637641500000129],[101.09396325700018,5.662652893000129],[101.07877038600006,5.687767640000146],[101.0598051350001,5.709575094000172],[101.03732588700021,5.724587097000153],[101.02740401200012,5.726550802000176],[101.00838708500012,5.725672302000148],[100.99862023900019,5.729548035000107],[100.99174727400012,5.73748036700016],[100.98001672400014,5.760993144000138],[100.97242665500008,5.772852627000147],[100.96720096800006,5.781017762000174],[100.96528894000014,5.792412415000172],[100.96771773300011,5.804117126000164],[100.97428064000003,5.815305075000197],[101.01531172700012,5.898349101000164],[101.0318481850002,5.908916931000135],[101.05293217000022,5.913102722000176],[101.07112227400009,5.919846497000107],[101.07877038600006,5.938165792000176],[101.08042403200008,5.957027690000118],[101.08745202700013,5.989687195000086],[101.08900232000022,6.046608785000145],[101.0942733150001,6.085753683000178],[101.08714196800005,6.105597433000169],[101.06853845200007,6.119550069000169],[101.05251875900015,6.13456207300014],[101.05344893400009,6.157609761000117],[101.06688480700019,6.174327088000154],[101.0800106200002,6.180347392000087],[101.08915734900009,6.188848165000195],[101.09101770000008,6.213161926000111],[101.08827884900015,6.233522441000133],[101.08166426600016,6.246467387000152],[101.06895186400018,6.250859883000146],[101.02306319200014,6.240989685000158],[101.00647505700013,6.246364034000123],[100.97428064000003,6.272615662000149],[100.95516036000018,6.268636576000176],[100.92890873200022,6.24062795000016],[100.91009851100014,6.235796204000152],[100.86844730700012,6.246157328000081],[100.85511478700018,6.247914328000149],[100.84281579600022,6.243935242000163],[100.83733809400016,6.23719146700013],[100.83299727400018,6.236674703000091],[100.8245740150002,6.251480001000118],[100.82214522400014,6.259877422000102],[100.82152510600017,6.288764547000142],[100.82338545800005,6.297678731000161],[100.82373221800016,6.29860427300018],[100.82689945500013,6.307058004000112],[100.82901818900021,6.316256409000118],[100.8271061610001,6.324550477000158],[100.81516890500015,6.344833476000176],[100.81072473200001,6.355763041000145],[100.80845096900012,6.367261048000073],[100.80560876500013,6.414803365000182],[100.79630700700014,6.433949484000095],[100.77325931800007,6.447307841000125],[100.76189050400015,6.448961487000161],[100.75160689400016,6.448806457000131],[100.74230513500007,6.450124207000086],[100.73388187700006,6.456377055000175],[100.73119470200011,6.464722799000156],[100.73150476100008,6.487021179000108],[100.7299544680001,6.4931965130001],[100.71284956900016,6.493041484000145],[100.64840905700012,6.447152812000168],[100.63068404100014,6.444775696000136],[100.61264896700013,6.449168193000133],[100.57843916800013,6.464257711000129],[100.51740930200006,6.481905213000118],[100.49916752200008,6.490302633000113],[100.4672314860002,6.513221131000137],[100.45234867400002,6.516864319000206],[100.42651045700013,6.513892925000121],[100.40966394000006,6.515262349000182],[100.38739139900011,6.522083639000144],[100.37765899000007,6.526754413000148],[100.3487891030002,6.540609639000166],[100.3292037350001,6.557766215000128],[100.31788659700013,6.57670562800017],[100.28078291900013,6.688921000000164],[100.27396163000017,6.696259053000162],[100.26331628400007,6.700005595000093],[100.25174076400006,6.701090801000177],[100.2426457120001,6.700263977000148],[100.22750451700009,6.6908330280001],[100.22750451700009,6.688869324000151],[100.21236332200007,6.689179383000138],[100.2037850350001,6.693881938000118],[100.19920020200013,6.699413639000142],[100.19665368700007,6.702486064000155],[100.18755863400011,6.707963766000148],[100.17329593900016,6.703416240000195],[100.16683638600009,6.695122172000154],[100.1640458580001,6.683727519000158],[100.16275394700008,6.66111908000012],[100.15608768800016,6.620578919000195],[100.15717289200002,6.603525696000162],[100.16518273900013,6.580322978000154],[100.16719812000011,6.56613779700011],[100.16120365400016,6.557456156000143],[100.15241866100004,6.549988912000117],[100.14570072500013,6.539524435000175],[100.14482222500013,6.530584412000152],[100.14807784100017,6.513221131000137],[100.14849125200007,6.504487814000157],[100.14435713700018,6.479579773000182],[100.13557214400007,6.457720643000144],[100.12728925900008,6.442287502000141],[100.11996504000015,6.463120835000126],[100.10816491,6.479559637000122],[100.09009850400017,6.484849351000179],[100.10230553500016,6.517075914000131],[100.10352623800004,6.53318919500019],[100.09351647200018,6.540106512000108],[100.08057701900006,6.536810614000074],[100.07292728000007,6.528509833000086],[100.0633244150001,6.506577867000161],[100.02995853000019,6.534654039000159],[100.0013126960001,6.567450262000165],[99.9978947270001,6.576117255000071],[99.99512780000005,6.587713934000178],[99.99122155000006,6.597845770000134],[99.98414147200012,6.602199611000131],[99.97144616000006,6.59560781500015],[99.96412194100006,6.593736070000189],[99.96094811300006,6.598456122000101],[99.96314537900015,6.605698960000126],[99.97217858200004,6.617865302000112],[99.97396894600016,6.622707424000097],[99.9715275400001,6.632757880000071],[99.96290123800011,6.649562893000081],[99.96094811300006,6.660549221000124],[99.95655358200011,6.664007880000128],[99.94703209700018,6.663397528000161],[99.9373478520001,6.66474030200007],[99.93311608200011,6.674221096000067],[99.92847741000017,6.692613023000106],[99.91749108200005,6.705267645000092],[99.89144941500015,6.725043036000102],[99.8675236340001,6.762600002000113],[99.85173587300002,6.776434637000108],[99.833750847,6.770086981000175],[99.82488040500007,6.769598700000102],[99.81763756600006,6.782619533000087],[99.80958092500012,6.808294989000132],[99.80250084700006,6.817531643000109],[99.79721113400015,6.821682033000144],[99.71070397200018,6.85415273600013],[99.68580162900017,6.877346096000153],[99.68604576900012,6.917466539000173],[99.69044030000006,6.935492255000099],[99.69581139400012,6.937689520000092],[99.71021569100012,6.937974351000122],[99.71387780000006,6.942206122000143],[99.71290123800006,6.951646226000165],[99.7072046230002,6.961004950000102],[99.69629967500012,6.965277411000116],[99.68091881600017,6.973618882000081],[99.6821395190001,6.992661851000165],[99.68620853000006,7.013373114000089],[99.67920983200005,7.026760158000087],[99.6954858730002,7.059881903000118],[99.70573978000002,7.07542552300012],[99.71680748800006,7.081976630000099],[99.71998131600006,7.088527736000088],[99.74805748800006,7.126044012000108],[99.7405705090001,7.137111721000139],[99.72339928500006,7.131822007000067],[99.70484459700006,7.121242580000113],[99.69288170700011,7.116115627000098],[99.67758222700016,7.12327708500014],[99.67188561300006,7.13540273600013],[99.67237389400006,7.170721747000158],[99.6375431650001,7.15086497600015],[99.62110436300011,7.137030341000155],[99.61410566500015,7.136664130000142],[99.61085045700011,7.15086497600015],[99.60352623800011,7.15086497600015],[99.58399498800011,7.156439520000077],[99.55787194100006,7.197455145000077],[99.54004967500006,7.244126695000176],[99.54542076900006,7.26630280200014],[99.5667423840001,7.278021552000125],[99.58521569100006,7.306708075000103],[99.59839928500016,7.342718817000061],[99.60352623800011,7.376166083000115],[99.59734134200014,7.376166083000115],[99.56902103000007,7.322211005000113],[99.54957116000017,7.301825262000122],[99.52466881600006,7.311346747000115],[99.5205184250001,7.3269717470001],[99.52540123800006,7.370021877000141],[99.52149498800004,7.3836123720001],[99.50814863400014,7.384955145000092],[99.49781334700005,7.370794989000074],[99.49097741000006,7.351019598000136],[99.488047722,7.335191148000191],[99.49219811300006,7.299872137000165],[99.48829186300006,7.285711981000148],[99.47071373800011,7.279974677000083],[99.46021569100006,7.282863674000111],[99.44516035200014,7.289699611000132],[99.43181399800014,7.297796942000147],[99.42603600400017,7.304510809000107],[99.42066491,7.30744049700013],[99.39234459700006,7.312201239000117],[99.37818444100006,7.320949611000103],[99.36589603000019,7.336371161000131],[99.33659915500007,7.3836123720001],[99.3458764980002,7.400051174000097],[99.34742272200006,7.423488674000068],[99.34400475400017,7.468980210000139],[99.34180748800004,7.475734768000081],[99.33187910200016,7.491929429000123],[99.329844597,7.503404039000173],[99.32520592500012,7.504868882000139],[99.30339603000007,7.504624742000188],[99.29558353000007,7.507147528000103],[99.30884850400017,7.52830638200011],[99.30738366000006,7.55027903900013],[99.300059441,7.575384833000115],[99.292735222,7.620672919000128],[99.2858992850001,7.621771552000084],[99.27702884200008,7.617499091000169],[99.26832116000017,7.616400458000128],[99.25953209700016,7.620835679000094],[99.24976647200005,7.627752997000101],[99.24675540500007,7.634100653000132],[99.2580672540001,7.636867580000086],[99.26221764400006,7.643255927000112],[99.2557072270001,7.657375393000136],[99.24366295700005,7.671454169000171],[99.23047936300011,7.677801825000118],[99.21436608200005,7.679999091000113],[99.20622806100002,7.685939846000124],[99.19255618600017,7.705145575000174],[99.172618035,7.71971263200011],[99.15308678500004,7.730658270000092],[99.13754316500008,7.74433014500012],[99.13054446700008,7.767238674000111],[99.1242781910001,7.767238674000111],[99.12191816500015,7.73305898600013],[99.1121525400001,7.705511786000102],[99.09148196700018,7.691839911000073],[99.0560001960001,7.698919989000132],[99.03321373800004,7.722805080000099],[99.02767988400015,7.788885809000107],[99.01441491,7.815008856000162],[99.0560001960001,7.847357489000075],[99.06226647200005,7.859361070000189],[99.06413821700019,7.878119208000057],[99.07032311300006,7.907904364000076],[99.06959069100006,7.924872137000135],[99.05030358200011,7.905462958000129],[99.04070071700002,7.901841539000159],[99.02808678500017,7.903753973000121],[99.02295983200004,7.909572658000086],[99.00757897200012,7.935126044000157],[99.00025475400011,7.942572333000142],[98.984141472,7.947251695000148],[98.96778405000012,7.956203518000095],[98.96045983200011,7.97638580900012],[98.96159915500007,7.986476955000086],[98.9633895190001,7.992621161000059],[98.9638778000001,7.998277085000139],[98.96045983200011,8.00678131700009],[98.9534611340001,8.015448309000163],[98.93734785200016,8.024318752000127],[98.92945397200018,8.03099192900008],[98.9236759770001,8.041408596000068],[98.92212975400017,8.048529364000117],[98.91797936300006,8.051336981000162],[98.90528405000006,8.048407294000143],[98.89893639400005,8.042710679000066],[98.89161217500005,8.024888414000188],[98.88819420700005,8.021063544000171],[98.87281334700018,8.016791083000072],[98.85792076900006,8.008449611000103],[98.84359785200016,8.002875067000089],[98.8294376960001,8.00678131700009],[98.82455488400015,8.014349677000126],[98.81771894600014,8.036566473000093],[98.8127547540001,8.044989325000131],[98.80030358200004,8.052435614000116],[98.79468834700018,8.048488674000124],[98.79200280000006,8.040228583000143],[98.78858483200005,8.034735419000114],[98.77556399800018,8.023423570000134],[98.770274285,8.023667710000081],[98.76807701900012,8.038153387000122],[98.76539147200006,8.04710521000014],[98.75245201900005,8.060126044000128],[98.7474064460001,8.06826406500015],[98.74512780000006,8.087551174000097],[98.7474064460001,8.13654205900015],[98.743907097,8.14988841400016],[98.7474064460001,8.181952216000141],[98.7474064460001,8.199204820000148],[98.74415123800006,8.214911200000117],[98.72706139400012,8.2538516300001],[98.71273847700009,8.22589752800016],[98.70655358200004,8.22589752800016],[98.70313561300006,8.298529364000075],[98.69629967500006,8.30849844000015],[98.67725670700005,8.303168036000088],[98.64820397200018,8.284857489000132],[98.63754316500014,8.287990627000099],[98.63086998800004,8.287990627000099],[98.63086998800004,8.281154690000093],[98.62403405000006,8.281154690000093],[98.6220809250001,8.29287344000008],[98.62623131600006,8.346096096000151],[98.63160241,8.354437567000119],[98.64795983200005,8.366522528000132],[98.65544681100019,8.379624742000189],[98.64210045700005,8.385931708000129],[98.62061608200004,8.390204169000143],[98.60352623800011,8.39720286700013],[98.59888756600016,8.374904690000093],[98.58513431100008,8.368963934000163],[98.56755618600002,8.367865302000112],[98.55201256600006,8.360012111000131],[98.54175866,8.349025783000087],[98.52605228,8.33633047100011],[98.51042728000007,8.331122137000122],[98.50049889400006,8.343207098000121],[98.49366295700004,8.343207098000121],[98.49195397200006,8.331284898000177],[98.48666425900015,8.32489655200007],[98.47982832100016,8.325751044000157],[98.47315514400006,8.33576080900015],[98.46631920700005,8.33576080900015],[98.46631920700005,8.322739976000065],[98.44564863400015,8.325100002000113],[98.42823326900005,8.316961981000105],[98.4222111340001,8.306341864000146],[98.45313561300011,8.294012762000108],[98.45679772200018,8.27753327000012],[98.45655358200011,8.25828685100008],[98.462657097,8.243312893000137],[98.46290123800006,8.216131903000132],[98.44613691500015,8.175116278000118],[98.424978061,8.14842357000019],[98.4116317070001,8.164496161000088],[98.40552819100006,8.164496161000088],[98.40479576900012,8.155218817000133],[98.402028842,8.148993231000162],[98.39128665500002,8.13654205900015],[98.37525475400011,8.150824286000145],[98.35694420700005,8.185003973000136],[98.331228061,8.195054429000109],[98.32813561300006,8.202337958000129],[98.32398522200012,8.209621486000131],[98.31251061300006,8.212876695000176],[98.30152428499999,8.213609117000118],[98.2933048840001,8.215887762000179],[98.28687584700018,8.219916083000058],[98.28142337300008,8.22589752800016],[98.27759850400011,8.240708726000136],[98.27759850400011,8.283514716000141],[98.27149498800006,8.297919012000108],[98.26238040500007,8.312811591000155],[98.24203535200016,8.406480210000081],[98.19947350400011,8.534369208000086],[98.19800866000006,8.556057033000158],[98.2029728520001,8.57387929900014],[98.20972741000006,8.581488348000079],[98.21314537900017,8.572577216000141],[98.21566816500015,8.553371486000088],[98.22315514400005,8.540432033000087],[98.24732506600004,8.51455312700007],[98.25310306100019,8.534654039000117],[98.24431399800002,8.54686107000019],[98.23015384200014,8.556586005000142],[98.21998131600017,8.56915924700013],[98.21949303500017,8.575628973000136],[98.22217858200005,8.580633856000176],[98.22527103000007,8.58490631700009],[98.22681725400011,8.589016018000137],[98.22624759200014,8.60537344000015],[98.22681725400011,8.610093492000159],[98.23804772200018,8.641058661000102],[98.2404891290001,8.651068427000084],[98.23853600400017,8.6730410830001],[98.2228296230002,8.712388414000173],[98.21998131600017,8.726223049000081],[98.2241317070001,8.735337632000082],[98.23121178500017,8.740871486000103],[98.2395939460001,8.745835679000137],[98.24732506600004,8.753485419000171],[98.25074303500006,8.759955145000077],[98.2527775400001,8.766424872000172],[98.25652103000013,8.828558661000102],[98.26156660200016,8.850653387000179],[98.28353925900015,8.884955145000148],[98.29273522200005,8.92438385600012],[98.31218509200002,8.951361395000092],[98.32488040500019,8.975246486000145],[98.33301842500012,8.980047919000143],[98.33676191500014,8.977606512000108],[98.35157311300011,8.973781643000095],[98.36402428500006,8.973944403000147],[98.36060631600006,8.98346588700015],[98.35808353000013,8.99599844000015],[98.36784915500006,9.009995835000112],[98.39128665500002,9.035305080000157],[98.36133873800006,9.0230166690001],[98.34245853000002,9.018215236000117],[98.33269290500019,9.026068427000096],[98.32984459700006,9.052069403000175],[98.3420516290001,9.062892971000082],[98.36597741000016,9.063910223000136],[98.38200931100008,9.071926174000083],[98.37077884200008,9.103583075000145],[98.34148196700008,9.141831773000192],[98.32837975400017,9.164374091000083],[98.32300866000004,9.189195054000137],[98.32227623800011,9.209377346000082],[98.32691491000006,9.203680731000176],[98.33969160200016,9.19977448100009],[98.34782962300007,9.202785549000097],[98.35580488400015,9.209906317000147],[98.37077884200008,9.226467190000122],[98.35230553500006,9.235907294000128],[98.35189863400015,9.251369533000144],[98.361094597,9.268215236000145],[98.36402428500006,9.28168366100013],[98.37598717500006,9.298163153000118],[98.38331139400006,9.316555080000157],[98.39714603000007,9.37881094000015],[98.40503991000006,9.396877346000082],[98.42546634200014,9.432521877000127],[98.4432072270001,9.520819403000102],[98.45720462300008,9.548529364000089],[98.48682701900012,9.528062242000118],[98.51986738400008,9.553778387000165],[98.53109785200016,9.566107489000117],[98.52849368600008,9.575873114000146],[98.52084394600016,9.57758209800015],[98.50171959700018,9.575018622000144],[98.49366295700004,9.575873114000146],[98.4895939460001,9.580389716000113],[98.48585045700005,9.593654690000136],[98.48340905000012,9.596380927000112],[98.46338951900006,9.604437567000147],[98.47169030000012,9.621161200000174],[98.4902449880001,9.634955145000092],[98.50049889400006,9.634507554000095],[98.50269616000004,9.638373114000089],[98.51197350400011,9.65021393400015],[98.51417076900005,9.654730536000102],[98.511485222,9.662054755000113],[98.49366295700004,9.685736395000134],[98.51002037900015,9.686590887000136],[98.51319420700011,9.694891669000114],[98.50660241000006,9.705633856000118],[98.49366295700004,9.713690497000158],[98.50049889400006,9.719916083000115],[98.51563561300006,9.710191148000163],[98.5314233730002,9.703924872000115],[98.54395592500012,9.706488348000121],[98.54900149800001,9.723618882000068],[98.55323326900006,9.724595445000134],[98.56128991000017,9.733058986000088],[98.56576582100016,9.742621161000073],[98.55925540500007,9.747219143000109],[98.53874759200019,9.747463283000144],[98.52979576900006,9.749579169000157],[98.52100670700011,9.754624742000175],[98.51644941500014,9.74778880400008],[98.51531009200002,9.74481842700007],[98.51417076900005,9.740383205000086],[98.50798587300014,9.740383205000086],[98.50912519600016,9.748521226000108],[98.50879967500012,9.770819403000132],[98.50798587300014,9.77456289300008],[98.51636803500017,9.782945054000137],[98.52418053500017,9.784979559000163],[98.53223717500012,9.785305080000086],[98.54151451900006,9.788234768000109],[98.55543053500006,9.798041083000143],[98.56617272200005,9.810003973000079],[98.57496178499999,9.824652411000088],[98.58301842500005,9.842840887000165],[98.57496178499999,9.83559804900014],[98.55844160200016,9.81500885600012],[98.54900149800001,9.80927155200014],[98.54004967500012,9.810980536000145],[98.53467858200005,9.81801992400011],[98.53028405000006,9.825588283000158],[98.51270592500012,9.836859442000145],[98.52076256600017,9.85443756700009],[98.53687584700006,9.872951565000108],[98.54900149800001,9.883734442000103],[98.5535587900001,9.876695054000137],[98.5599064460001,9.873032945000176],[98.56739342500006,9.873236395000134],[98.57618248800006,9.877590236000131],[98.57048587300007,9.884222723000091],[98.58545983200011,9.894964911000116],[98.58985436300006,9.905462958000086],[98.58643639400006,9.909328518000095],[98.578868035,9.911322333000129],[98.5716251960001,9.915472723000065],[98.57357832100016,9.92088450700011],[98.58383222700016,9.930324611000131],[98.59197024800008,9.94269440300016],[98.59986412900017,9.948146877000097],[98.6220809250001,9.947821356000176],[98.63086998800004,9.952704169000143],[98.63314863400015,9.962958075000172],[98.62354576900006,9.967189846000096],[98.612559441,9.96596914300008],[98.61036217500012,9.960109768000137],[98.59961998800011,9.973863023000149],[98.59978274800008,9.980454820000118],[98.60352623800011,9.993597723000093],[98.64795983200005,10.069322007000068],[98.6622827480002,10.08527252800016],[98.68962649800007,10.1620547550001],[98.7129012380001,10.205511786000145],[98.72046959700005,10.227932033000144],[98.72535241,10.251613674000083],[98.72706139400012,10.272040106000148],[98.73080488400015,10.291734117000175],[98.74626712300008,10.329006252000156],[98.7474064460001,10.35053131700009],[98.76640507000015,10.41120025700013],[98.7765336510001,10.46210154300016],[98.79038293500011,10.500264588000135],[98.79131311100011,10.52041839600011],[98.77725712100013,10.583231100000177],[98.77074589100008,10.593979798000191],[98.75152225800011,10.610361226000151],[98.74790490800014,10.623125305000114],[98.75679325400009,10.666068420000087],[98.76671512800006,10.688754375000144],[98.81095015500009,10.746631979000169],[98.83007043500017,10.763556010000173],[98.83957889800016,10.766398214000148],[98.86086958900013,10.767664287000102],[98.8682076420001,10.76988637300019],[98.87533899000007,10.77861969000017],[98.87919148800009,10.788202779000102],[98.88360721800021,10.79918691000016],[98.89208215300013,10.808514506000094],[98.90541467400007,10.814405619000183],[98.91471643100007,10.812286886000123],[98.92329471800011,10.808101095000083],[98.9340434160001,10.807713521000082],[98.9697001550002,10.82311309800015],[98.97445438700012,10.824198303000145],[98.981895793,10.832414856000184],[98.98613326000006,10.840321350000139],[98.9898539640001,10.86044932100019],[98.98975061000007,10.8751512660001],[98.98179244000019,10.895485942000121],[98.9796220300001,10.907655741000127],[98.98024214700008,10.918016867000148],[98.98261926300019,10.928946432000203],[98.9866500250001,10.93930755600013],[98.99233443300008,10.94796335900017],[99.00153283700016,10.957626851000114],[99.00556359900004,10.958815410000126],[99.01062788900006,10.956231588000122],[99.0233402910001,10.954371236000128],[99.03470910700017,10.9509605920001],[99.04525109800014,10.94550872800012],[99.05506962100011,10.945250346000137],[99.06364790900014,10.957420146000144],[99.07253625500006,10.987599182000153],[99.0768770760002,10.996513367000162],[99.09320682800009,11.01297231100014],[99.13310103300009,11.0333845010001],[99.14094611700014,11.039409961000104],[99.15170455000006,11.047673035000173],[99.15821578000012,11.05731068900019],[99.1676208910001,11.077981262000108],[99.1750622970002,11.087438050000173],[99.18488081900009,11.092967428000179],[99.20617150900009,11.100021260000105],[99.21299279800022,11.108263652000133],[99.24327518800007,11.197663880000121],[99.25619429500013,11.219988098000101],[99.2884403890001,11.258306173000108],[99.3005326740001,11.280630392000162],[99.31572554600021,11.320808817000085],[99.3263708910001,11.336234233000168],[99.3643013920001,11.376722718000167],[99.37050256400018,11.3933366910001],[99.37205285600012,11.410855001000144],[99.37763391100006,11.435504660000149],[99.3870390220002,11.451550192000113],[99.41587447100014,11.480230611000195],[99.4281734620001,11.49689626100013],[99.43737186700015,11.516688334000106],[99.44109257000011,11.533405661000145],[99.43923221800017,11.573919983000152],[99.44057580600006,11.59727773100019],[99.44977421100005,11.613762513000083],[99.46610396300011,11.623942770000141],[99.48915165300016,11.628438619000164],[99.53069950400007,11.630919088000141],[99.54258508300008,11.640479228000146],[99.60687056500015,11.725693665000094],[99.61534550000013,11.74941314700014],[99.6300216060001,11.815765686000162],[99.62795455000017,11.825377503000169],[99.61100468000004,11.830183411000178],[99.59178104700007,11.84227569600017],[99.57379764900006,11.85772695000017],[99.56139530500016,11.872919820000106],[99.5540572510001,11.895037334000108],[99.55736454300009,11.915604554000183],[99.57286747300012,11.95591217100015],[99.57400435400021,11.97632436100018],[99.56697635900011,11.993325908000202],[99.55333378100008,12.005521545000121],[99.53431685400014,12.01156768800017],[99.5184005130001,12.025933737000171],[99.52170780500008,12.053683980000116],[99.53762414600011,12.100864563000128],[99.53927779100016,12.112285055000127],[99.5435152590002,12.122465312000186],[99.54578902200015,12.131870422000148],[99.54165490700021,12.140655416000143],[99.53286991400014,12.144531148000098],[99.52263798000016,12.144221090000201],[99.46631067000007,12.12603098600016],[99.4522546800001,12.129389953000084],[99.44884403500012,12.147218323000132],[99.45411503200015,12.156881816000151],[99.46383020100009,12.164581604000148],[99.47199507600007,12.173624980000099],[99.47375207600007,12.187267558000201],[99.47013472500007,12.197396139000162],[99.45938602700006,12.217084860000114],[99.45556197200013,12.227575175000155],[99.4547351480002,12.238220521000144],[99.45711226400013,12.2564106250001],[99.4544250900001,12.267262675000138],[99.44760380100016,12.278218079000126],[99.43220422400006,12.296408183000153],[99.42672652200011,12.308655498000178],[99.42341923000018,12.327775777000085],[99.42062870300006,12.383379619000095],[99.41401411900014,12.405238749000134],[99.39127648900015,12.445339660000128],[99.3870390220002,12.465906880000205],[99.38951949100007,12.475983785000153],[99.40026818900012,12.497481181000182],[99.40419559700015,12.508126526000183],[99.40708947800007,12.530244039000195],[99.40729618400022,12.55148305200008],[99.40474711600015,12.56694085900017],[99.4032654210001,12.575926005000113],[99.39375695800001,12.589775289000073],[99.34445764200015,12.616750387000193],[99.3333988850002,12.625432027000159],[99.32358036300016,12.635405579000164],[99.31717248600015,12.645895894000205],[99.30973108000008,12.653492330000176],[99.28626997900014,12.660003560000149],[99.2768648690001,12.66558461500017],[99.27345422400006,12.673542786000127],[99.27118046100011,12.69379994700013],[99.2667362880002,12.702843323000181],[99.25629764800007,12.70945790600018],[99.23345666600007,12.713126933000183],[99.22446496600006,12.717467753000165],[99.21412968000013,12.73465016700014],[99.21319950400007,12.75260772700011],[99.2144397380001,12.771676331000094],[99.2107190350001,12.792269389000182],[99.20307092300013,12.803870748000136],[99.18322717300012,12.822577616000132],[99.17526900200006,12.833429667000175],[99.17185835800015,12.843325704000165],[99.16844771400011,12.874099019000127],[99.15532190000013,12.90448476200008],[99.15315149000017,12.913553975000141],[99.1541850180001,12.926602275000093],[99.15790572100016,12.935955709000126],[99.16307336400016,12.944663188000106],[99.16731083200008,12.956006165000176],[99.1648303640002,12.975514018000169],[99.1510844320002,12.994789327000206],[99.13248091700015,13.011041565000127],[99.11532434100016,13.02140268900014],[99.09320682800009,13.03832672200015],[99.08834924300005,13.058351339000183],[99.09382694500002,13.080675558000152],[99.10250858600007,13.1043950400001],[99.10529911300014,13.12961313900014],[99.10219852800012,13.151834005000183],[99.10209517500019,13.171341858000176],[99.11408410700014,13.188085022000138],[99.13320438600013,13.195164693000152],[99.17278853400009,13.199505514000137],[99.18647971700014,13.211558644000178],[99.18725793500013,13.212243754000097],[99.19015181500012,13.229503682000185],[99.18601770000006,13.24999338800015],[99.17340865100007,13.287432963000128],[99.17278853400009,13.300920512000102],[99.1769226490002,13.31032562200015],[99.18271040800019,13.318723043000134],[99.18694787600005,13.329135844000163],[99.18694787600005,13.338747660000166],[99.18364058400007,13.357971293000103],[99.18880822800006,13.407916565000164],[99.18787805200012,13.427140198000188],[99.15201460800014,13.581962790000148],[99.14953413900017,13.66598866800018],[99.1528414310001,13.688726298000162],[99.15253137200008,13.714874573000158],[99.14677934200013,13.723674124000112],[99.1412659100001,13.732108663000147],[99.10881311000011,13.762701111000155],[99.10116499900013,13.778824158000148],[99.08979618300006,13.826650696000142],[99.08948612500015,13.84391062400013],[99.09186324100018,13.8559253950001],[99.09217329900011,13.863573507000169],[99.09000289000019,13.87011057500014],[99.0848352460001,13.878533834000137],[99.08028772000014,13.881556905000153],[99.06633508300015,13.885329285000182],[99.06106408800022,13.888016459000198],[99.05713667800008,13.89408844000016],[99.0520723880002,13.90904876700013],[99.04762821400018,13.914991557000135],[99.01620894400004,13.937935893000171],[99.00711389200009,13.949640605000155],[98.99698531100015,13.971628926000136],[98.98478967300011,13.990594178000093],[98.95295699100004,14.028033752000153],[98.9475826410002,14.04640472400014],[98.94530887900007,14.069142355000123],[98.93528365100016,14.085394592000142],[98.91771366400009,14.096375834000128],[98.89373580000009,14.103248800000188],[98.87234175600017,14.112473043000191],[98.75369266800013,14.200116272000114],[98.73105839100018,14.223499858000167],[98.70697717300013,14.269982809000096],[98.69736535700011,14.271378073000164],[98.6855831300002,14.267398987000192],[98.67039025900007,14.26791575100013],[98.66356897000006,14.272876688000082],[98.65075321400016,14.289413147000175],[98.64424198400009,14.295665996000167],[98.63690393100009,14.298973287000164],[98.62150435400011,14.30240977000011],[98.61447635900018,14.305148621000143],[98.60145389800007,14.313649394000151],[98.5931856700001,14.321607564000118],[98.54771040900008,14.377676493000154],[98.47815393100014,14.516505229000172],[98.46513147000022,14.523352356000132],[98.45283247900007,14.528054911000112],[98.44549442600007,14.542033386000112],[98.44001672400012,14.566269633000104],[98.4313350830001,14.587844543000157],[98.41820926900007,14.607559103000112],[98.29749312300007,14.721247254000103],[98.24333622200007,14.805118103000098],[98.23537805200007,14.824548442000077],[98.2387886970001,14.839095358000122],[98.23909875500006,14.844004618000156],[98.23589481600001,14.850386658000103],[98.22514611800008,14.858964946000128],[98.22214888500011,14.864261780000163],[98.2203918860001,14.885268250000166],[98.22163212100006,14.921260885000152],[98.21491418500014,14.943171692000194],[98.19507043400014,14.977588196000157],[98.19114302600005,14.98813018800013],[98.19122365500019,14.993209838000125],[98.19134973100014,15.001152649000161],[98.19569055200012,15.010686951000153],[98.20116825300008,15.019291076000087],[98.20437219300007,15.029574687000178],[98.1989978440001,15.051382142000195],[98.19879962500013,15.051583013000124],[98.1680953370002,15.082698060000112],[98.16807190400012,15.082770575000081],[98.16044722500013,15.106365865000143],[98.16499475100008,15.125796204000125],[98.1857686770002,15.16078114900013],[98.19072961500015,15.179177958000123],[98.18468040900021,15.193154550000143],[98.17791385900009,15.208788554000165],[98.17790575900014,15.2089207570001],[98.1771903900001,15.22059661900009],[98.2076928600002,15.219215764000142],[98.21543094900007,15.21886545800011],[98.23289758300021,15.226797791000164],[98.24767704300021,15.240931295000108],[98.28302372200014,15.289972229000128],[98.29511600700013,15.29260772800015],[98.31785363800012,15.288990377000161],[98.33604374200016,15.282169088000117],[98.37025354100015,15.261911926000108],[98.38523970600008,15.256253357000162],[98.39226770000013,15.258242900000196],[98.39474816900011,15.264909160000128],[98.39474816900011,15.28007619300014],[98.39206099500004,15.285838115000116],[98.38606652900013,15.290385640000139],[98.3799687100001,15.293847962000184],[98.37748824100012,15.296457622000103],[98.37883182800007,15.301625265000098],[98.38120894400012,15.306637879000164],[98.3836894130001,15.310281067000146],[98.38482629400018,15.311366272000141],[98.39361128800007,15.316275533000178],[98.39908899000008,15.321779074000174],[98.40032922400009,15.330667420000095],[98.39619510900009,15.347617289000182],[98.39691858000018,15.355730489000107],[98.40342981000006,15.360097148000179],[98.43939660700013,15.367590230000117],[98.45541630000015,15.373636373000165],[98.47453658000009,15.383480734000145],[98.49500044800001,15.374799093000176],[98.51546431500017,15.363456116000108],[98.53024377400013,15.347720642000125],[98.53355106600011,15.325964865000115],[98.55990604700017,15.355317078000096],[98.56900109900002,15.402135926000197],[98.56714074700014,15.452546285000109],[98.54367964700006,15.601503601000092],[98.54574670400021,15.65863189700009],[98.54405541500007,15.675098034000044],[98.54026900300013,15.711961975000108],[98.54305953000019,15.735371399000073],[98.5743754480001,15.835985413000104],[98.5766492110001,15.854175517000144],[98.56931115800009,15.896136780000134],[98.56858768700013,15.920166321000165],[98.58067997200013,15.959130351000157],[98.58378055900006,15.976958720000097],[98.57695926900007,15.99690582300012],[98.55008752500012,16.034216207000057],[98.54698693800006,16.047497050000157],[98.5558752850001,16.055506897000143],[98.56765751100008,16.05395660500004],[98.5799565030002,16.048788961000113],[98.59008508300016,16.045791728],[98.60310754400021,16.04584340400011],[98.61158247900019,16.04692861000011],[98.61912723800006,16.05101104800012],[98.63018599400007,16.060002747000155],[98.64413863200015,16.079639791000186],[98.65033980300015,16.09963857000004],[98.6587113850002,16.116278381000043],[98.67958866400006,16.126148580000134],[98.69715865100008,16.126872051000035],[98.75844690000011,16.11917226200013],[98.77033247900013,16.113849589],[98.77601688600005,16.10687327],[98.7830448810001,16.102429098000087],[98.79844445800008,16.104444479000122],[98.80722945200009,16.110542298],[98.83079390500008,16.135605367000025],[98.83544478300021,16.144545390000033],[98.83472131400006,16.167748108000055],[98.83668501900016,16.189038799000016],[98.84309289600012,16.208727519000163],[98.85559859200012,16.226969299000032],[98.88371057200007,16.258750305000078],[98.88867150900009,16.274563294000146],[98.89342574100007,16.31988352500015],[98.90334761600009,16.36344675700012],[98.90252079300015,16.38163686200015],[98.88526086500016,16.40618316700012],[98.86210982300005,16.42065256800005],[98.84340295400007,16.43837758400015],[98.83957889800016,16.472432353000116],[98.8187016200001,16.455637512000134],[98.81043339100015,16.439617819000105],[98.80206180900004,16.39827667300007],[98.7886259360001,16.374557190000033],[98.72826786400012,16.328255107000146],[98.69839888600009,16.284950256000073],[98.68237919200006,16.27347808900008],[98.66325891200015,16.28665557900014],[98.65695438600014,16.301641744000037],[98.64238163200017,16.373627015000167],[98.62946252500015,16.402669170000152],[98.62822229100013,16.413572896000048],[98.63824751800014,16.434450176],[98.63979781100008,16.444992167000162],[98.63163293400007,16.463130595000095],[98.57044803900011,16.541575419000093],[98.56424686700015,16.551962382000127],[98.56404016100005,16.562711080000057],[98.5673474530001,16.573304749000116],[98.56776086400012,16.582503154000122],[98.56579716000006,16.591546529000183],[98.5615596920002,16.601726787000146],[98.5470902910001,16.620123596000056],[98.51226037600011,16.643274638000136],[98.49841109200004,16.662394918000032],[98.49138309700007,16.68973175000015],[98.48631880700006,16.70099721300012],[98.45665653500012,16.723218079000063],[98.45469283100007,16.740994772000093],[98.4625476480002,16.760115052000074],[98.47453658000009,16.77665150900016],[98.48921268700016,16.78073394800019],[98.50543908700016,16.79065582300008],[98.51753137200015,16.803006490000044],[98.52052860500007,16.814116923000157],[98.51319055200004,16.822178447000155],[98.50337203000012,16.826002503],[98.49438033100009,16.83117014600019],[98.49003951000006,16.843210755000158],[98.49251997900014,16.857421774000116],[98.50058150300005,16.862227681000135],[98.51195031700016,16.85928212500012],[98.52455936700008,16.850445455000127],[98.51598108000022,16.878970846000172],[98.50946984900004,16.8926651],[98.50006473800008,16.898917949000108],[98.48445845500007,16.905894267000104],[98.48073775200007,16.920570374000178],[98.48042769400016,16.937261862000028],[98.47453658000009,16.950439352],[98.46368453000011,16.96361684100016],[98.4467346600002,16.99632802300006],[98.43619266800007,17.01157257100003],[98.41789921100009,17.029039205000156],[98.39991581200009,17.040149638000074],[98.37976200400013,17.045782370000026],[98.33066939300008,17.04686757400019],[98.31330611100006,17.052035217000096],[98.29966353400008,17.06474762000006],[98.28622766100008,17.087433574000116],[98.29015507000017,17.090844218000043],[98.2953227140001,17.099835917000078],[98.2943925380001,17.10758738200009],[98.26834761600006,17.10774241100013],[98.26617720500016,17.116372376000083],[98.27082808400021,17.12779286699999],[98.27899296100006,17.136577860000088],[98.25625533100005,17.151615702000143],[98.22101200400019,17.20075999],[98.20178837100016,17.215694479000163],[98.1861820880001,17.224221090000082],[98.10060591700008,17.30261423800009],[98.0926477460001,17.312226054000103],[98.09047733600013,17.325248515000126],[98.0940946860002,17.346332500000145],[98.09471480300007,17.35863149],[98.08872033700007,17.37279083300014],[98.07683475700011,17.380025533000108],[98.06226200400008,17.38483144100003],[98.04872277900009,17.39154937800005],[98.03549361200007,17.405036927000126],[98.02856897000018,17.418782858000057],[98.0182336840002,17.447411601000127],[97.99611617000008,17.480794576],[97.99167199800016,17.49572906500005],[97.98278365100005,17.505444234],[97.9722416590001,17.5116970830001],[97.94857385300006,17.522394104000014],[97.93379439300006,17.53179921500005],[97.90799443000016,17.55486551400007],[97.76894657400007,17.67918039900009],[97.75933475800016,17.691479391000044],[97.75313358600008,17.70538035100013],[97.75178999900018,17.71809275300008],[97.75158329300015,17.72956492200008],[97.7496195880001,17.739848532000096],[97.74104130100008,17.750183818],[97.71685673100009,17.76976918600012],[97.71117232300017,17.781293030000043],[97.70652144400012,17.794728902000188],[97.69649621600016,17.806562806000116],[97.6839905200001,17.816536357000032],[97.67613570200015,17.83033396400016],[97.69908003800016,17.833331198000096],[97.68554081300007,17.880718486000077],[97.6918453370001,17.895601298000102],[97.72006066900005,17.943195293000045],[97.74755253100014,17.960920309000144],[97.75085982300007,17.96365916000009],[97.75406376200013,17.969033508000148],[97.75178999900018,17.980764058000048],[97.74724247300017,17.99249460900013],[97.74403853300007,17.997817282000156],[97.73980106600007,18.00293324800016],[97.72522831300007,18.036755473000156],[97.72212772600014,18.048925273000165],[97.72006066900005,18.05305938700009],[97.70641809100007,18.059286398000083],[97.70218062400014,18.06184438100017],[97.69773645000012,18.060733338000162],[97.69422245300015,18.061508484000072],[97.69277551300014,18.070112610000123],[97.6937056890001,18.07512522400016],[97.69804650900018,18.084659525000077],[97.69908003800016,18.090653992000014],[97.69680627400007,18.101583558000172],[97.68750451600013,18.119825338000123],[97.68533410700016,18.131607564000134],[97.68533410700016,18.14016001400016],[97.68430057800006,18.146102804000165],[97.6803731700002,18.152639872000137],[97.62900679600014,18.220852763000078],[97.61794803900014,18.24167836500014],[97.62073856600007,18.25108347600009],[97.63572473200006,18.257594707000166],[97.64326949100021,18.273020121000155],[97.64378625500015,18.29131357800013],[97.63758508300006,18.306325582000014],[97.62466597500006,18.313405253000113],[97.57381636600022,18.33309397400008],[97.56244755100008,18.33051015300016],[97.56058719900014,18.328262227000053],[97.54198368400009,18.2802289830001],[97.53764286300012,18.27258087200012],[97.52834110500007,18.265320333000073],[97.5080839440001,18.276559957000117],[97.48648319500009,18.292140401000054],[97.4665360920001,18.311441549000094],[97.4525834560001,18.33361073800002],[97.44679569500013,18.358312073000135],[97.44648563700011,18.381178894000058],[97.44307499200013,18.403348084000143],[97.41765018800012,18.441149394000135],[97.39460249900006,18.487089742000123],[97.39046838400012,18.501817525000106],[97.37909956900013,18.52078277600016],[97.35760217300017,18.53990305600017],[97.35140100100007,18.551168519000115],[97.3728988300002,18.548616618],[97.38013309800013,18.547757874000112],[97.38891809100019,18.542228496000106],[97.40938195800005,18.511351827],[97.41217248500013,18.50303192100013],[97.41661665900014,18.496029765000127],[97.42746871000006,18.489518535000073],[97.43811405500017,18.488123271000106],[97.4628153890001,18.492464091000087],[97.50953088400016,18.49127553300015],[97.5483915610001,18.509078064],[97.61794803900014,18.55315806100016],[97.63737837800008,18.559281718000037],[97.69029504400007,18.557886454000066],[97.73794071400013,18.57049550400008],[97.74279829900016,18.56925527000014],[97.74569218000013,18.57106394500012],[97.75178999900018,18.582484437000133],[97.75974816900006,18.6227920540001],[97.7526168210002,18.663435567000036],[97.74124800600012,18.703148906000123],[97.7362870690001,18.740588481000184],[97.73577030500014,18.762654318],[97.73266971900009,18.78050852500006],[97.72037072800006,18.817638041000023],[97.71944055200011,18.825880432000147],[97.7233679610001,18.851977030000153],[97.7191304940002,18.864637756000022],[97.70858850100015,18.87520558700008],[97.68440393100009,18.892491353000153],[97.66187300600009,18.91378204400014],[97.65784224500005,18.92571929899999],[97.66807417800005,18.93543446900004],[97.68905481000016,18.94974884100013],[97.70331750500011,18.964373271000014],[97.71044885300007,18.979902039000123],[97.71696008300015,19.018323466000155],[97.72781213400017,19.03708201100015],[97.78992720500017,19.08258310900011],[97.80408654800013,19.097956848000095],[97.81080448500015,19.11221954300008],[97.81514530400007,19.19056101500014],[97.8125614830001,19.20846689900013],[97.80522343000021,19.227354635000054],[97.79633508300012,19.236682231000184],[97.76967004500014,19.257275289000077],[97.76408899000015,19.266396179000154],[97.76801639800013,19.277119040000073],[97.77731815600012,19.278617655000076],[97.7886869710002,19.27773915600012],[97.7982987870001,19.281408183000124],[97.8061536060001,19.301096903000182],[97.7970585530002,19.318382671000094],[97.7831059170002,19.337089539000157],[97.77669803900007,19.361093242],[97.77514774600016,19.37106679300011],[97.7677063400001,19.390367941000036],[97.76708622200007,19.397525126000076],[97.80036584500006,19.440778300000044],[97.83354211500009,19.468709412000024],[97.84212040300022,19.479380595000023],[97.84873498500022,19.49397918699999],[97.84811486900017,19.499560242000097],[97.84429081300013,19.50452118000005],[97.84098352100014,19.517156067000187],[97.83891646300017,19.537103170000123],[97.839846639,19.555319113000067],[97.8486316330001,19.567643942000117],[97.86912302100015,19.570489968000132],[97.8858386640002,19.572811585000025],[97.948057089,19.602422181000165],[97.9561186120002,19.609372660000147],[97.97069136600007,19.62593495700004],[97.97947636000006,19.63332468600005],[97.99043176300015,19.636554464000042],[98.00014693200009,19.63629608200007],[98.0083118090001,19.63911244700013],[98.01358280500014,19.651747335000053],[98.01389286300011,19.669446513000153],[98.00562463400016,19.70564585400011],[98.00459110500017,19.72391347300008],[98.01792362400008,19.789387513000165],[98.02453820800011,19.80297841400015],[98.04562219200014,19.80762929300012],[98.0606083580001,19.793909200000186],[98.07290734900008,19.777295227000153],[98.08592981000017,19.773161112000068],[98.11135461500005,19.77714019800014],[98.13223189300005,19.76605560300011],[98.17202274600018,19.731561584000147],[98.20592248500006,19.721484681],[98.21326053900006,19.717763978],[98.21791141800006,19.707971293000057],[98.2166711830001,19.687455750000154],[98.21915165200006,19.676991272000024],[98.23754846200009,19.664692281000086],[98.26276656200011,19.66985992399999],[98.30731164500006,19.689987895000154],[98.3476192630001,19.690633851000126],[98.39443811100008,19.68634470600007],[98.43960331200017,19.687739970000123],[98.47453658000009,19.70530995700001],[98.47780068600017,19.705629272000166],[98.48879927600014,19.706705220000103],[98.49758426900021,19.700710754000067],[98.50512902900019,19.69151235000008],[98.51546431500017,19.683373312000143],[98.53262089000006,19.67585439000011],[98.53654830000012,19.67709462500015],[98.53799524000013,19.683890076000083],[98.54833052600011,19.692649231000175],[98.56827762900011,19.699987285000148],[98.59070520100013,19.704095561000187],[98.59835331300022,19.709082336000122],[98.61540653500006,19.729778748000072],[98.623778117,19.737504375000142],[98.6413481050001,19.744945781000084],[98.73012821500012,19.757296448000048],[98.74924849500022,19.763497620000024],[98.807849569,19.806544088000024],[98.83792525300012,19.793444112000156],[98.85187788900012,19.78403900100001],[98.86448693900009,19.77321278900017],[98.88371057200007,19.74546254500002],[98.89931685400009,19.748614808000085],[98.93507694500008,19.773471172000043],[98.97383426900014,19.788069764000014],[98.98768355400009,19.79936106400008],[99.0009127200001,19.82101348900015],[99.00876753700011,19.84592153000004],[99.0076306560002,19.864886780000077],[99.00266971900007,19.883593649000048],[98.99936242700008,19.907726542000105],[99.00142948400006,19.91788096100008],[99.0061837160001,19.924934795000084],[99.01093794800012,19.930205790000016],[99.01352176900009,19.934960022000112],[99.01279830000013,19.94423594200013],[99.00701053900016,19.96245188400009],[99.00587365800007,19.972347921000065],[99.01682906100021,20.041000061000133],[99.03646610500006,20.075158183000028],[99.07346643100018,20.101228943000095],[99.11749475100007,20.117791240000187],[99.1584224850001,20.123553162000135],[99.17774947100006,20.12179616300007],[99.21898726500015,20.11045318700009],[99.23645389800018,20.102727560000105],[99.27531457500007,20.072186788000106],[99.29567509000017,20.062497457000163],[99.32120324700011,20.066269837],[99.44140262900007,20.10161651599999],[99.47447554500016,20.12807485000009],[99.4874980060001,20.141252340000065],[99.49928023300012,20.146885071],[99.50873365500016,20.15280450400003],[99.51033898900019,20.153809713000083],[99.52057092300016,20.170966288000145],[99.5258419190002,20.196184387000088],[99.51891727700016,20.212178243000135],[99.48625777200007,20.24548370399999],[99.47499231000019,20.303723043],[99.46641402200007,20.32217153000012],[99.4296204020001,20.35868092900013],[99.42062870300006,20.37555328400013],[99.43995568900019,20.38216786700003],[99.45411503200015,20.377103577000142],[99.50289758300019,20.34521921800008],[99.57968876200006,20.321241354000065],[99.58930057800015,20.320776266000124],[99.60759403500006,20.323153382],[99.61803267400009,20.32237823500016],[99.62702437400011,20.31876088500009],[99.64221724500013,20.30883901],[99.65193241400019,20.306823629000135],[99.67125940000014,20.31013092000013],[99.708414755,20.325013733],[99.72908532700015,20.328527731000136],[99.76959965100016,20.328424377000104],[99.787169637,20.33408294700014],[99.8040161540001,20.348991597000023],[99.81300785400006,20.365269673000128],[99.82634037300008,20.401391500000145],[99.83770918800016,20.41684275300004],[99.85569258600006,20.42805653900008],[99.87791345300016,20.43513621000001],[99.9324837650001,20.44273264600018],[99.93713464400015,20.4450064090001],[99.94204390500008,20.444024557000134],[99.95237919200011,20.436273092000036],[99.95878706900007,20.42748809800004],[99.96111250900017,20.417824606000025],[99.96472985900007,20.408626201000015],[99.97434167500009,20.400823059000103],[99.9859171960002,20.38702545200014]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Tajikistan","sov_a3":"TJK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tajikistan","adm0_a3":"TJK","geou_dif":0,"geounit":"Tajikistan","gu_a3":"TJK","su_dif":0,"subunit":"Tajikistan","su_a3":"TJK","brk_diff":0,"name":"Tajikistan","name_long":"Tajikistan","brk_a3":"TJK","brk_name":"Tajikistan","brk_group":null,"abbrev":"Tjk.","postal":"TJ","formal_en":"Republic of Tajikistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tajikistan","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":7349145,"gdp_md_est":13160,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"TI","iso_a2":"TJ","iso_a3":"TJK","iso_n3":"762","un_a3":"762","wb_a2":"TJ","wb_a3":"TJK","woe_id":23424961,"woe_id_eh":23424961,"woe_note":"Exact WOE match as country","adm0_a3_is":"TJK","adm0_a3_us":"TJK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TJK.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[70.61990604700006,39.85069529200014],[70.65499434500012,39.849765116000114],[70.6866203210001,39.86087555000002],[70.69891931200007,39.85844675700015],[70.70641239500017,39.83999827100014],[70.70481042500015,39.82206654900007],[70.69452681500016,39.814831848000104],[70.6616089280001,39.80981923500015],[70.63298018400022,39.79845041900016],[70.5816138110001,39.7665660600001],[70.57587772600013,39.77008005800015],[70.54730065900006,39.80764882500016],[70.53737878400014,39.81731231700009],[70.50347904500015,39.83550242100012],[70.49014652500014,39.85017852900002],[70.48260176600014,39.86676666300012],[70.48373864800007,39.882217916000016],[70.49872481300017,39.88190785800013],[70.61990604700006,39.85069529200014]]],[[[70.64341882300008,40.95228180000008],[70.64507246900021,40.93517690000011],[70.62522871900009,40.938690898000075],[70.60838220200004,40.95093821199999],[70.57913334200012,40.98085886600005],[70.56249353100006,40.99377797500013],[70.56146000200008,40.99460479800017],[70.54978112800019,41.01522369400005],[70.5659041750001,41.01837595600004],[70.59344771300019,41.00938425700018],[70.61665043200011,40.993519592000084],[70.63049971500007,40.97641469400013],[70.64341882300008,40.95228180000008]]],[[[70.51443444800012,40.972590637000096],[70.6968522540001,40.81621775399999],[70.70512048300006,40.80743276000011],[70.70315677900007,40.78893259700008],[70.68346805900013,40.79451365200002],[70.64868981900011,40.81750966400013],[70.62874271700016,40.81585601800002],[70.61933760600013,40.80319529300006],[70.62176639900011,40.78598704000008],[70.63742435700013,40.7705874630001],[70.72889164300008,40.75446441700002],[70.7671322030001,40.737617900000046],[70.75850223800015,40.70392486600018],[70.7562927860001,40.69557805100011],[70.75617679800008,40.69513987300009],[70.74067386900018,40.687698467000175],[70.73715987200015,40.68356435200015],[70.73550622500007,40.67886179700015],[70.73209558100004,40.67498606400012],[70.71566247600016,40.67214386000013],[70.70723921700018,40.668991598],[70.69292484600012,40.66041331000015],[70.67793868100014,40.649922994000015],[70.61716719600022,40.6119408170001],[70.5820788990001,40.57876454700009],[70.56931482000002,40.57044464200011],[70.55422530100006,40.565018616000046],[70.53944584200022,40.56186635400009],[70.52549320500012,40.55711212199999],[70.51195398000006,40.546776835000074],[70.48787276200018,40.5155642700001],[70.47779585800006,40.50548736600017],[70.46818404100023,40.502490133000045],[70.39935103400015,40.490191142000114],[70.36963708500016,40.47551503600012],[70.35382409700017,40.456136373000064],[70.3554260670002,40.43510406500006],[70.35702803500007,40.43040151000015],[70.35878503400014,40.427714336000136],[70.3719625240001,40.412986552000135],[70.37139408300007,40.41334828800005],[70.37356449400014,40.41179799400011],[70.38214278100006,40.40394317700016],[70.38493330900022,40.399705709000116],[70.37139408300007,40.36492747000006],[70.42121016500019,40.34797760000008],[70.44219079600006,40.34332672100011],[70.46410160300016,40.34482533800011],[70.48291182500006,40.34926951100011],[70.50192875200011,40.35081980400004],[70.52404626500001,40.34374013300011],[70.55060795100016,40.31046051100016],[70.56394047000018,40.2642101040001],[70.58182051600012,40.22173207700016],[70.62212813300019,40.19956288700014],[70.66429610200007,40.19749582900009],[70.7071875410002,40.200183004],[70.8497111410002,40.233772685000034],[70.93833622200012,40.239922181],[70.9589551190002,40.23837188800009],[70.97952233900017,40.214083964000096],[70.96288252800016,40.18969268800008],[70.92929284700014,40.170624085000085],[70.89854537000011,40.16261423800001],[70.84516361500017,40.17181264200009],[70.83183109500007,40.16819529200002],[70.82490645300018,40.16354441300014],[70.80671634900014,40.15615468400016],[70.80604455600016,40.15765330100005],[70.80268558800006,40.16013376900004],[70.7977246500001,40.16194244400013],[70.79214359500004,40.16137400400008],[70.78873295100007,40.15899688800012],[70.78253177900014,40.152589010000085],[70.74346439600006,40.12711252900006],[70.72982181900014,40.12070465100011],[70.66594974800009,40.104168193000035],[70.6394397380001,40.08494456000001],[70.63473718300011,40.05931305000006],[70.63597741700002,40.028513896000064],[70.62739913000021,39.99389068600006],[70.61396325700017,39.97575225900012],[70.59659997600014,39.961954651],[70.57660119600021,39.95223948200005],[70.55505212400007,39.946245016000105],[70.51257409600012,39.94515981000002],[70.50089522300006,39.94056060800007],[70.49417728700021,39.93167226200016],[70.48596073400009,39.909606425000064],[70.47722741700007,39.90092478500009],[70.45562666800006,39.906815898],[70.44803023300008,39.91999338800018],[70.45087243600001,39.93740834600011],[70.46022587100018,39.95611521400009],[70.47319665600011,39.97011952800001],[70.48849287900006,39.978542786],[70.50502933800007,39.98510569300008],[70.52094567900009,39.993735657],[70.53562178600005,40.015956523000156],[70.52549320500012,40.033681539000085],[70.50213545800008,40.04598053000002],[70.47722741700007,40.05202667300016],[70.39764571100008,40.061225078000156],[70.35950850500008,40.07404083300003],[70.32426517700006,40.07750315400007],[70.30628177900005,40.08478953100014],[70.29026208500008,40.09817372700009],[70.27780806500013,40.11207468700017],[70.26349369300013,40.1242703250001],[70.24153120900004,40.13274526],[70.21853519700014,40.13414052400016],[70.1688224690001,40.1316600550001],[70.14717004400015,40.136982727000046],[70.0045947670001,40.208761291000044],[69.96955814600008,40.21160349500012],[69.57547367300018,40.10359975200008],[69.55883386200017,40.101739400000056],[69.54302087400018,40.10308298700012],[69.53661299600006,40.107888896000034],[69.5260710040001,40.123185119000176],[69.51800948100016,40.12509714800002],[69.51346195500017,40.12070465100011],[69.50922448700007,40.10344472300012],[69.50633060700007,40.096933493000066],[69.48571171000012,40.07373077400014],[69.46964034100014,40.050993144000174],[69.46312911000008,40.02541331000013],[69.47119063300008,39.99368398100002],[69.47511804200022,39.9877411910001],[69.47728845200012,39.98159169500012],[69.47811527600007,39.975028788000046],[69.47728845200012,39.968155823000174],[69.50043949400012,39.93570302400015],[69.5015763750001,39.922473857000156],[69.4053548580001,39.8961188760001],[69.35729577600009,39.95947418300001],[69.32784021000012,39.98474395800018],[69.31399092600006,39.98691436800006],[69.31032190000016,39.98479563500008],[69.31006351700009,39.978646139000105],[69.3056710210001,39.96862091100009],[69.28644738800008,39.935754700000146],[69.24071374600013,39.82893951400014],[69.22955163500009,39.79054392500002],[69.2262960200002,39.75101145500015],[69.23332401500014,39.732666321000075],[69.24836185700022,39.71938547800009],[69.2659318450001,39.70775828000002],[69.28009118600002,39.694270732000135],[69.28753259300007,39.677785950000086],[69.29114994400007,39.65887237600013],[69.28618900500007,39.53970652300016],[69.30034834800001,39.515625305000114],[69.33972579000013,39.52807932600011],[69.34592696100006,39.53536570300018],[69.34840743000021,39.543168843],[69.35202478000011,39.549628398000046],[69.36163659700011,39.55288401400004],[69.36721765200011,39.549938457000124],[69.39145389800008,39.53050811800016],[69.41217614800021,39.525030416000064],[69.45527429200015,39.53045644200013],[69.47728845200012,39.53040476500003],[69.49609867300015,39.532575175000105],[69.51439213100011,39.537587789000085],[69.53144535400023,39.54564931300017],[69.5649316820002,39.56812856099999],[69.58229496300007,39.57355458600016],[69.66942142700012,39.577792053],[69.71034916200003,39.5740713500001],[69.74982995600007,39.56383941700001],[69.79158451400022,39.54539093099999],[69.83044519100005,39.536244202000105],[69.90775313300017,39.548491516000134],[69.9486291910001,39.54508087200012],[69.97875655100009,39.53443552700012],[69.98712813400007,39.53960317000003],[70.0027344160001,39.556863098000015],[70.01968428600011,39.56859364900011],[70.04035485900013,39.57360626200007],[70.06226566600017,39.573451234000046],[70.0827295330001,39.56978220600003],[70.11626753700014,39.55464101200012],[70.13244226100014,39.55004181000008],[70.14897871900021,39.5542792770001],[70.1573503010001,39.56389109300012],[70.18520389800008,39.61034820600007],[70.20065515200015,39.619494934000144],[70.21026696800017,39.60972808900008],[70.2148144940002,39.59112457300013],[70.21502120000017,39.5740713500001],[70.20437585500004,39.53815623000004],[70.20602950000014,39.52410024000004],[70.22328942900012,39.51908762700004],[70.24106612100015,39.522394918000046],[70.33025964300006,39.57308949800013],[70.34317875200011,39.57686187700015],[70.35346236200009,39.575931702],[70.37428796400016,39.57102244100015],[70.38431319200006,39.57086741100012],[70.39041101100023,39.57401967400007],[70.39537194800008,39.57949737600016],[70.40146976700012,39.58476837100001],[70.411081584,39.58745554700012],[70.42761804200013,39.59009104400014],[70.4599674890002,39.59954783200011],[70.47722741700007,39.601201477000146],[70.49097334900014,39.59686065699999],[70.51350427200006,39.58151275600004],[70.5261133220001,39.575621643000105],[70.54357995600006,39.57427805600007],[70.58027022300021,39.579549053000086],[70.5978402100001,39.577792053],[70.62212813300019,39.56352935800014],[70.63597741700002,39.54249705000002],[70.65559843200018,39.49466447300016],[70.65592452000007,39.493869528000104],[70.65597619700006,39.49371449800016],[70.65597619700006,39.493662821000136],[70.6667248950001,39.486893209000115],[70.69013431800008,39.47919342],[70.69974613500008,39.47216542600002],[70.70543054200013,39.4585228480001],[70.70305342600008,39.44472524000007],[70.69860925300006,39.43139272100002],[70.69809248800013,39.418990377000156],[70.71328536000007,39.39842315700015],[70.73974369300007,39.38622751900006],[70.7701294350002,39.382093404000116],[70.79762129700006,39.385349020000106],[70.82805871600013,39.398578187],[70.84009932500012,39.4014203900001],[70.85529219600014,39.40173044900017],[70.86418054200007,39.40059356700006],[70.87224206600014,39.402970683000106],[70.88448938000006,39.41387441000016],[70.90335127800009,39.420850729000065],[70.92515873300013,39.41294423400002],[70.94980839100012,39.4007485960001],[70.97714522300006,39.39490916000001],[71.0092879640001,39.40762156200016],[71.02758142100006,39.43521677600016],[71.04230920400008,39.467876282000034],[71.06292810100015,39.49562652600018],[71.0958976640002,39.51236969000003],[71.1374455160001,39.521154684000024],[71.17997521900023,39.52301503600002],[71.23692264900009,39.514488424000106],[71.24927331500007,39.51438507100009],[71.26007369000008,39.52063792000017],[71.2919580490001,39.54895660400017],[71.30591068500004,39.55717315700009],[71.3405855720001,39.571694234000134],[71.34787194800018,39.57624176100008],[71.36161788000013,39.58755889900006],[71.36854252100008,39.59148630800003],[71.37830936700007,39.59417348200007],[71.40673140400017,39.598152568000145],[71.44125126100002,39.61065826400012],[71.45954471800022,39.61210520500013],[71.49303104700013,39.59624054000004],[71.5096544830001,39.58499810000011],[71.51091109200016,39.58414825500013],[71.5253804930002,39.56916209000015],[71.53137496000014,39.55309071900008],[71.52600061000007,39.53815623000004],[71.50057580600017,39.50921742800007],[71.49210087100008,39.493662821000136],[71.51287479700008,39.45883290700009],[71.55431929500017,39.444156799],[71.60279178900012,39.442348124000105],[71.70459436100012,39.45898793600013],[71.72443811100018,39.45940134800004],[71.74025109900018,39.44834259000014],[71.74924279800021,39.42550160700013],[71.75182662000012,39.399663391],[71.74810591700012,39.37956125900014],[71.73663374800012,39.36457509400016],[71.72319787600023,39.353981425000185],[71.71296594200007,39.34152740500012],[71.71089888500009,39.32096018500012],[71.71834029200014,39.30106475800004],[71.73291304500017,39.285096741000174],[71.75120650200009,39.27424469000012],[71.77043013500004,39.26954213500015],[71.8070170490001,39.272849427000054],[71.84350061100022,39.28504506500015],[71.94230594900009,39.339046936000145],[71.95915246600006,39.34586822600009],[71.9964628500002,39.35186269200004],[72.0314994720002,39.366693828000145],[72.04979292800006,39.36886423700004],[72.06694950400006,39.358477275000105],[72.07811161300017,39.33661814400007],[72.08410607900012,39.311245016000086],[72.08575972500014,39.29010935500004],[72.09475142400012,39.27507151300016],[72.11552535000007,39.26814687100007],[72.15862349500017,39.26261749300006],[72.16709842900016,39.258741761000024],[72.1823946540002,39.24933665000016],[72.20327193200009,39.24081003800013],[72.20637251800022,39.23460886700015],[72.20647587100004,39.22688324000016],[72.20916304500011,39.21729726200006],[72.21856815600015,39.20088999400009],[72.22866824500014,39.18950214400003],[72.22890344200007,39.18923695900004],[72.24027225800015,39.18990875300001],[72.28140669800021,39.25972361300008],[72.30424768100013,39.31357045600011],[72.31633996600013,39.32881500300006],[72.3341166590002,39.33382761600002],[72.35592411300016,39.336101379000056],[72.3932344980001,39.35082916300006],[72.41070113100014,39.35134592700008],[72.44356734200008,39.344783020000094],[72.46041385900017,39.34411122600001],[72.47674361200009,39.34612660800015],[72.50805953000011,39.37196482400016],[72.51901493300008,39.375685527000186],[72.5341044510001,39.37232655900008],[72.55942590300006,39.35956248000012],[72.5757556560001,39.35930409800012],[72.58702111800008,39.36488515300006],[72.60614139800006,39.38348866800011],[72.61637333200022,39.39041331],[72.63373661300012,39.39449574800001],[72.65047977700007,39.3937722780001],[72.83527469900011,39.356203511],[72.85046757000006,39.35672027600005],[72.8936690680001,39.363903300000096],[72.91433964100011,39.36271474200008],[72.97676477100005,39.352224427000024],[72.994334758,39.34783192900012],[73.0093209230001,39.34860707700012],[73.0584135330001,39.36881256100013],[73.07112593600019,39.37072458900006],[73.08342492700015,39.36783071000015],[73.1009949140001,39.361164450000146],[73.13603153500006,39.35346466100005],[73.16786421700007,39.35537668900015],[73.26935673000017,39.38255849200006],[73.32640751100016,39.39087839800011],[73.3333321530001,39.401110331],[73.33550256400022,39.41516632100003],[73.3431506750002,39.43066925100014],[73.36764530500008,39.44379506500008],[73.47688928200014,39.4647756960001],[73.51223596200006,39.46741119400012],[73.60432336400007,39.45960805300008],[73.63264204900017,39.44834259000014],[73.63191857900007,39.42880889900012],[73.64256392500008,39.371758118000045],[73.6438041590001,39.35129425100017],[73.6413236900001,39.335274557000034],[73.61011112500015,39.26545969700013],[73.6022563070002,39.23577158700009],[73.6078373620002,39.20732371000004],[73.63140181500009,39.17510345400008],[73.67377649000011,39.14262481700017],[73.68297489400001,39.12874969600009],[73.69186324100016,39.094462382000174],[73.69816776600007,39.07841685000012],[73.70932987500007,39.065471904],[73.76865441900011,39.02991851900005],[73.80162398300016,39.001444804000116],[73.81599003200009,38.99377085400012],[73.82611861200022,38.97689849900006],[73.82911584500002,38.96015533500018],[73.82394820200014,38.94493662600014],[73.80958215300015,38.93266347300011],[73.78787805200014,38.927082419],[73.73992232200013,38.92692738900014],[73.717184693,38.91858164500009],[73.70292199700006,38.90703196200015],[73.68896936000007,38.89108978300011],[73.6808044840002,38.872977193],[73.68369836500013,38.854942119],[73.69579065000013,38.84011098300009],[73.72493615700014,38.81455698700013],[73.7358915610001,38.80042348300019],[73.73899214700006,38.781096497000036],[73.73268762200016,38.73717153000011],[73.73640832600003,38.7216686],[73.77227176900007,38.6746172080001],[73.77909305800002,38.66019948299999],[73.7886015220001,38.61857411800018],[73.79738651500011,38.6028386440001],[73.8164034430001,38.586586406],[73.83356001800016,38.57795644200014],[73.86973352100007,38.5667943320001],[73.88709680100007,38.559042867000116],[73.9172758390001,38.537080384000134],[73.93288212100006,38.52966481500012],[74.02889693200021,38.52723602400006],[74.04553674300016,38.530414124000046],[74.05876591000006,38.54702809700014],[74.05080773900008,38.562660217000186],[74.0380953370002,38.57922251399999],[74.0372685140002,38.59847198600012],[74.04491662600017,38.60345876100017],[74.0843974200001,38.61402659100004],[74.09142541500009,38.62043446900019],[74.0928723550002,38.628754375000035],[74.09266565000016,38.63769439800008],[74.09504276600009,38.64575592000007],[74.10909875500013,38.662292379000164],[74.12336145000009,38.669475403000106],[74.1404146730001,38.66921702100014],[74.20201298100008,38.65231882700014],[74.22144331900014,38.64970916800006],[74.24376753700018,38.65020009400017],[74.3134273680001,38.66921702100014],[74.33420129400005,38.66699493400013],[74.47662154100007,38.61206288700011],[74.64612023900023,38.56110992500008],[74.66431034400009,38.54901763900007],[74.67960656800014,38.53490997400014],[74.6964530850001,38.52398040800007],[74.71908736100008,38.52152577700012],[74.7420316970001,38.52307607000013],[74.76032515500006,38.51997548500019],[74.77634484900007,38.510673727000054],[74.79215783700008,38.494033915000145],[74.79215783700008,38.494008078000135],[74.79226119000006,38.493853048000105],[74.79226119000006,38.493775534000164],[74.80125289000009,38.48282013],[74.80848759000011,38.47765248600008],[74.8261609290001,38.4696426390001],[74.83287886600007,38.46364817300018],[74.83577274600006,38.455173238000086],[74.83711633300013,38.44574229000004],[74.8443510330001,38.41724273700008],[74.84414432800021,38.397760722000086],[74.8382532140001,38.3794155880001],[74.8266776940001,38.363215027000095],[74.78430302000018,38.32567209900019],[74.7747945560001,38.30962656700014],[74.7710738530001,38.291539816000025],[74.77128055900002,38.19627431200006],[74.7907108970002,38.08144928000005],[74.80993453000022,38.05320811000017],[74.88042118300008,38.021659648000096],[74.89282352800015,37.99401275700008],[74.88879276500009,37.93091583300004],[74.89116988100008,37.904250794000106],[74.89075647000018,37.897713725000116],[74.89396040800008,37.89226186200012],[74.90522587100023,37.88693918900019],[74.91370080600021,37.88084137000014],[74.91163374800007,37.87376169900001],[74.89458052600011,37.852109274000114],[74.88734582500015,37.848931173000054],[74.88321171100003,37.84386688300019],[74.88610559100002,37.83056020200017],[74.89116988100008,37.82304128000011],[74.8984045820001,37.81758941600005],[74.94925419100011,37.79531687399999],[74.96144982900009,37.7854725150001],[74.96517053300012,37.767463278000136],[74.9617598880001,37.75808400500007],[74.95442183500009,37.747722880000154],[74.93860884700008,37.730824687000066],[74.93189091000008,37.72157460600006],[74.92879032400005,37.71242787700008],[74.9269299730001,37.70359120700009],[74.92362268100013,37.695322978000135],[74.91091027900009,37.680233460000025],[74.8970609950002,37.66757273400018],[74.88610559100002,37.65346506800016],[74.88217818200005,37.63442230300008],[74.8918933520001,37.59920481400012],[74.9150443930001,37.57073110000009],[74.9452234300002,37.548561910000146],[75.03586389200021,37.5063939410001],[75.0534338790001,37.49383656800008],[75.10397343000012,37.44060984300002],[75.13249882000015,37.41849233],[75.16412479700008,37.40063812300015],[75.11523889200006,37.38779652900016],[75.0917777920001,37.37844309500004],[75.07958215300019,37.36123484300005],[75.0771016840001,37.32420867899999],[75.06842004400008,37.3121422330001],[74.97540246600008,37.28428863500015],[74.95152795400011,37.281291403000026],[74.93292443900006,37.272506409000144],[74.92372603400017,37.255194805000045],[74.91266727700022,37.238994243000135],[74.89230676300022,37.231113587],[74.86264449100017,37.24460113500005],[74.81685917200011,37.306922913],[74.78854048700012,37.33115916000018],[74.66038293500011,37.39397186300015],[74.63144413300014,37.38107859300014],[74.52984826700006,37.375755921000106],[74.52116662600005,37.37560089100005],[74.51269169100007,37.3772286990001],[74.47662154100007,37.38609120800011],[74.45481408700007,37.39363596600005],[74.43590051300012,37.392344055000095],[74.41833052600006,37.38919179300014],[74.38939172400009,37.393403422000105],[74.37812626200011,37.39376515800008],[74.36820438600009,37.3963748180001],[74.35363163200006,37.41590850900012],[74.34381311000018,37.42099863700018],[74.3324442960002,37.42035268100001],[74.32086877400016,37.413893128000055],[74.31559777900011,37.426915588],[74.3038155520002,37.40017303500004],[74.27942427600007,37.39751169900001],[74.25038212100011,37.40368703200009],[74.22392378800012,37.4033511360001],[74.20769738800018,37.38991526300005],[74.20604374200016,37.355653789000044],[74.18764693200013,37.33839386100014],[74.163255657,37.3300739540001],[74.05215132600014,37.31224558600006],[73.97670373600013,37.29028310200009],[73.95561975100011,37.28676910400013],[73.8992924400002,37.26547841500003],[73.85640100100008,37.26157684300007],[73.83624719200006,37.25674509700015],[73.79821333900023,37.22852976500009],[73.78395064300017,37.22589426700007],[73.76865441900011,37.22889150000019],[73.74612349500009,37.230545146000125],[73.73620161900007,37.22765126600013],[73.71997522000018,37.217548524],[73.70922652200007,37.21700592000015],[73.70240523300012,37.22116587400011],[73.68803918400012,37.23690134700017],[73.68049442500015,37.242456563000175],[73.65992720500017,37.243748475000025],[73.61765588400007,37.23318064400014],[73.60163619000011,37.240880432000054],[73.59729536900008,37.261809387000035],[73.60990441900016,37.281394756000154],[73.6309884030002,37.295993348000124],[73.6519690350001,37.302065328000154],[73.69041630000007,37.30521759100013],[73.70498905400021,37.31095367400009],[73.72224898300013,37.32245168100012],[73.7390955000001,37.338342184000126],[73.74571008300009,37.352863262000156],[73.74591678900006,37.394902039],[73.74705367000016,37.40311859200012],[73.7534615480001,37.42838836700009],[73.7178048100001,37.431824850000126],[73.67449995900014,37.43104970300011],[73.60504683500008,37.44577748700011],[73.48526086400008,37.48096913700009],[73.4406124270001,37.479935608000105],[73.37839400300018,37.45254709900014],[73.36185754400016,37.45639699400003],[73.3450110270002,37.464484355000096],[73.32123986800015,37.4670165000001],[73.29633182800008,37.46494944300004],[73.27607466700007,37.459471741000144],[73.26026167900007,37.45004079199999],[73.21147912600023,37.408260396000124],[73.20062707500009,37.4041779590001],[73.17902632600013,37.4107408660001],[73.170241333,37.408260396000124],[73.13210412600009,37.38438588500004],[73.11639449000009,37.36906382299999],[73.09923791500015,37.33986663800014],[73.08776574800012,37.32606903100019],[73.06750858600012,37.31506195100012],[72.99557499200009,37.30930002900014],[72.9242615150001,37.27483184900008],[72.90224735600012,37.25379954100008],[72.87744266800004,37.24687489800009],[72.83052046700011,37.23976938900013],[72.79072961400018,37.22026153600013],[72.76096399000014,37.187498678000146],[72.71435184800006,37.10998402900019],[72.67270064300013,37.057609965000054],[72.66660282400008,37.03833465600012],[72.65771447800009,37.028826192000125],[72.5086796470001,37.01107533800011],[72.4749866130002,36.9974844360001],[72.40594689900014,37.007664693],[72.36098840400015,37.000274964000155],[72.25980594900014,36.967305400000114],[72.22032515500021,36.94554962200003],[72.21040328,36.93660959900007],[72.19593387900008,36.91898793600008],[72.18683882600013,36.911391500000136],[72.15283573400009,36.895707703000156],[72.12668746000006,36.87273752900001],[71.83657596900017,36.69915639200015],[71.79761193900018,36.6860822550001],[71.74851932800001,36.67864084900019],[71.69994348200011,36.67864084900019],[71.6530212810001,36.687012431000156],[71.61106001800007,36.7048408],[71.577366984,36.73326283800013],[71.56393111200006,36.75067779600006],[71.55287235600005,36.7695913700001],[71.54532759600012,36.79000356100014],[71.53850630700018,36.83609893800015],[71.52848107900016,36.85614939400001],[71.47174035600014,36.93004669200009],[71.46305871600006,36.94808176700009],[71.4599581300001,36.96978586800019],[71.4599581300001,37.01073944100004],[71.45644413300008,37.02254750600003],[71.4391842040001,37.044096578000094],[71.43318973800015,37.05474192400008],[71.43112268100018,37.0669892370001],[71.43318973800015,37.127347311],[71.4410445560001,37.16843007400017],[71.44683231600007,37.18359710700018],[71.45375695800013,37.19261464500012],[71.45013960700007,37.21667002400006],[71.48703658000007,37.26705454600007],[71.48786340400007,37.294985657000055],[71.49385787000013,37.307543030000076],[71.49654504400004,37.328523662000165],[71.49468469200016,37.37069163100004],[71.48713993300012,37.40908721900014],[71.49024052000006,37.42337575300002],[71.50150598200011,37.44577748700011],[71.51122115100006,37.485878398000025],[71.49716516100014,37.56654530900012],[71.50150598200011,37.61034108500003],[71.50512333200018,37.61599965500007],[71.51721561700018,37.629228821000154],[71.52207320200009,37.63762624100015],[71.5247603760001,37.647728984000096],[71.52951460800014,37.67857981400008],[71.54088342300011,37.70971486500004],[71.54253706900008,37.71955922500011],[71.54026330600007,37.73051462900018],[71.53116825400016,37.751753642000054],[71.52951460800014,37.76113291500012],[71.5377828370001,37.77903879800009],[71.5746798100001,37.79800404900011],[71.59028609300006,37.81572906500004],[71.5942135010001,37.83376414000004],[71.59504032400011,37.857535299000105],[71.59338667800009,37.879342753000046],[71.59028609300006,37.891435038],[71.59772749900004,37.898359681],[71.5673417570001,37.92807362900008],[71.53705936700007,37.944455058000116],[71.50119592300021,37.946212057000096],[71.37918786600008,37.91293243400007],[71.36099776200015,37.9020287070001],[71.341154013,37.89329539000012],[71.31975996900022,37.900581767000105],[71.28182946800021,37.924998881000036],[71.27118412300015,37.92618743900006],[71.26353601100007,37.924352926000054],[71.25826501500009,37.92647165900003],[71.25454431200009,37.939287415000116],[71.25578454600006,37.94988108299999],[71.26591312700012,37.97254119900005],[71.27263106300019,37.997991842000076],[71.30239668800013,38.042330221000114],[71.31603926600022,38.083283793000035],[71.33453942900016,38.11167999300015],[71.34094730600006,38.14092885400002],[71.3590857340001,38.18410451300004],[71.36451176000011,38.20681630500009],[71.35815555800015,38.25125803700017],[71.33438439900013,38.280661927000075],[71.30012292500007,38.298697001000065],[71.21769901600013,38.32582712800006],[71.15594567900021,38.37621165000003],[71.11739506000006,38.398639221000124],[71.08938643400015,38.40985300700008],[71.07698409100007,38.4121784470001],[71.06494348200007,38.41181671200009],[71.05714034000007,38.40902618400004],[71.04980228700018,38.40866445000013],[71.039467,38.41533070900006],[71.0329557700002,38.42365061500011],[71.02458418800015,38.44191823300018],[71.01864139900013,38.449824727000035],[71.00856449400007,38.45858388300012],[70.9982292070001,38.46566355400013],[70.98680871600007,38.47090871200005],[70.9740446370001,38.473673402000095],[70.95073856600007,38.47305328400013],[70.94345218900017,38.46594777500012],[70.9467594810001,38.44323598300004],[70.93621748900014,38.433004049000075],[70.91223962400008,38.43765492800013],[70.8710018310002,38.45320953400015],[70.8593229570001,38.45165924100003],[70.85358687400016,38.44742177400017],[70.84981449400007,38.442822571000036],[70.84304488100011,38.440161235000105],[70.83410485800006,38.44060048400003],[70.81798181200011,38.44499298100011],[70.80888675900022,38.446362407],[70.77726078300006,38.446465759000105],[70.76108606000011,38.44352020300011],[70.75421309400005,38.436466370000105],[70.74181075100009,38.41943898500007],[70.68331302900012,38.41458140100014],[70.6648645430001,38.40540883400014],[70.6648645430001,38.398639221000124],[70.68475996900011,38.38665028900006],[70.67669844600019,38.37491973900007],[70.6413517660001,38.35419748900013],[70.6321016850001,38.350115052000135],[70.60931237800011,38.35120025700003],[70.60001062000018,38.347066142000116],[70.59577315200013,38.338177796000096],[70.59556644700015,38.327790833000066],[70.59670332800006,38.317584737000104],[70.59659997600014,38.30918731800001],[70.58306075100009,38.275080872000146],[70.57303552300007,38.27105011000004],[70.5593929440001,38.26818206800008],[70.54719730600013,38.26265269000008],[70.53794722500012,38.23805470800009],[70.50854333500008,38.192501933000116],[70.48260176600014,38.13736318000004],[70.47030277500014,38.12051666300006],[70.46007084200006,38.11224843400011],[70.42596439700017,38.10064707400015],[70.41537072700012,38.094523418000094],[70.3711873780002,38.05829823800015],[70.3262805580001,38.011272685000066],[70.31796065300014,38.00631174800013],[70.29858315700007,37.998134279000126],[70.29377608300015,37.996105652000054],[70.2887117920001,37.99080881800002],[70.28375085500014,37.981868795000175],[70.27269209900011,37.978173930000175],[70.2609098720002,37.97646860800001],[70.25393355300011,37.97339386000009],[70.25041955600008,37.96414377900008],[70.25016117400011,37.95561716700014],[70.25367517100008,37.94740061500012],[70.26152998900008,37.939287415000116],[70.23812056500006,37.93236277300004],[70.2147111410001,37.92926218700008],[70.19223189300007,37.932879538000165],[70.1721297610002,37.946082866000054],[70.16050256400015,37.920658061000054],[70.16520511900015,37.889910584000106],[70.17915775600014,37.86079091400008],[70.1960042730001,37.83991363600002],[70.20747644000014,37.835624492000065],[70.24034265200007,37.82756296800015],[70.2471639400002,37.81916554800007],[70.2498511150002,37.804877015],[70.25651737500007,37.79180287800012],[70.2655607510001,37.78120920800016],[70.27512089000018,37.77418121300015],[70.26959151200018,37.762631531000025],[70.27176192300007,37.748704733000025],[70.28189050300014,37.71955922500011],[70.28307906100017,37.704831442],[70.28054691600008,37.69604644800002],[70.277032918,37.68798492500004],[70.27512089000018,37.67547922800004],[70.26256351700007,37.66088063600007],[70.25770593300015,37.65809010800011],[70.25357181800015,37.654576111000054],[70.25388187700011,37.6465921020001],[70.25522546400005,37.63747121200011],[70.25393355300011,37.630804952000105],[70.24830082200012,37.62333770800016],[70.2460787360001,37.62127065000003],[70.24096276900009,37.61713653600015],[70.23765547700012,37.61811838800004],[70.2184318450002,37.61744659500006],[70.21646814000016,37.61713653600015],[70.20194706200013,37.58799102900014],[70.1994149170001,37.579283550000085],[70.19269698100018,37.576027934000116],[70.15786706500013,37.541430562000116],[70.12913496900015,37.532283834000125],[70.09905928600008,37.536572978],[70.06919030800006,37.545202942000124],[70.04169844600008,37.54884613100005],[70.04800297000011,37.541430562000116],[70.01689375800007,37.545978089000144],[70.00759200100012,37.54884613100005],[70.00418746200015,37.551370519],[69.99849694800011,37.555589905000076],[69.99467289200018,37.562256165000164],[69.98950524900008,37.56732045500014],[69.97658614100007,37.569335836],[69.95539880400023,37.57548533100008],[69.94454675300008,37.589696350000125],[69.93524499600008,37.60566436800015],[69.91881189000017,37.61713653600015],[69.89524743600006,37.61817006500014],[69.85328617400009,37.60122019400016],[69.83292565900014,37.596672669000114],[69.82300378500022,37.592951966000115],[69.81266849800014,37.585846456000084],[69.80222985800012,37.5815056360001],[69.79184289500009,37.586104838000054],[69.78445316600008,37.59041982000012],[69.76223230000002,37.59579416900009],[69.75427413000008,37.596672669000114],[69.72957279500017,37.59408884800003],[69.68730147300019,37.57959360799999],[69.6649772550002,37.57615712500013],[69.52865482600006,37.58602732400011],[69.50865604600001,37.578973490000024],[69.49144779500008,37.53698639000011],[69.46974369400007,37.52013987300005],[69.42540531400012,37.494249980000106],[69.42178796400006,37.489495748000095],[69.41558679200014,37.477506816000144],[69.4117110600001,37.47252004000008],[69.4040112710002,37.46686147100014],[69.38964522300009,37.45879994700006],[69.38447758000021,37.453270569000054],[69.37837976100016,37.43740590500015],[69.37631270300008,37.41885406500002],[69.3770361740001,37.38066518200013],[69.3789482020002,37.37712534600017],[69.38830163600002,37.375109966000124],[69.39119551600001,37.37069163100004],[69.39088545700022,37.36531728100006],[69.38850834100018,37.36376698800014],[69.38582116700016,37.36314687200017],[69.38447758000021,37.36014963800015],[69.3848909910001,37.35089955700015],[69.38644128500002,37.34152028400008],[69.38943851700004,37.33291615800006],[69.39460616000017,37.32606903100019],[69.40308109500002,37.311160380000146],[69.40969567900007,37.2767438770001],[69.41791223100009,37.26767466200012],[69.4098507080001,37.24566050300014],[69.42685225400012,37.23945933100008],[69.44519738800008,37.23641042100003],[69.44214847900017,37.22362050400006],[69.40773197400019,37.17747345000011],[69.39119551600001,37.16465769400004],[69.35083622300007,37.14414215100008],[69.33476485200018,37.12905263300017],[69.32391280200014,37.12099111],[69.31207889800012,37.11747711200003],[69.3086166780001,37.11688204300019],[69.28562056500007,37.11292958600008],[69.26577681500007,37.10541066600014],[69.24567468300009,37.10388621000011],[69.15100345900007,37.155045878000024],[69.14573246300014,37.15695790700014],[69.12361495000013,37.169205221000155],[69.1143131920002,37.17747345000011],[69.09643314600012,37.213026836],[69.07839807200011,37.22517079700016],[69.05560876500013,37.237108053000114],[69.03576501500007,37.25157745400015],[69.02103723200015,37.28795766300014],[69.00548262600014,37.30552764900001],[68.98522546400014,37.32035878500015],[68.96543339100006,37.32914377800013],[68.89716882400009,37.33596506800008],[68.89365482600013,37.33715362500011],[68.88786706600014,37.33813547800015],[68.8850765380001,37.33482818600008],[68.89029585800014,37.322942607000144],[68.89675541200009,37.316483053000084],[68.91298181200008,37.30676788300015],[68.91763269100008,37.302427064000156],[68.9211466880001,37.28795766300014],[68.91582401600007,37.27906931600004],[68.90471358200014,37.276692200000085],[68.89029585800014,37.281963196000035],[68.87701501500013,37.29609670100014],[68.86802331600009,37.3121422330001],[68.8567578530001,37.32490631100008],[68.83582889800002,37.32914377800013],[68.81381473800015,37.32340769500017],[68.81019738800015,37.312090556],[68.82203129000018,37.281963196000035],[68.82461511300019,37.260620830000036],[68.82037764500015,37.25090566000007],[68.80849206500008,37.251629130000154],[68.7712850340001,37.270723572000165],[68.7596061610002,37.275245260000084],[68.74653202300007,37.27622711200014],[68.72591312700015,37.274521790000094],[68.68694909600018,37.27901764000001],[68.66886234500006,37.27829416900012],[68.65754520700008,37.26767466200012],[68.66266117300009,37.26372141500015],[68.66545170100002,37.259380595000074],[68.67123946100011,37.24718495700016],[68.64860518400016,37.24436859100011],[68.63640954600005,37.22992502900017],[68.63077681500013,37.213827820000105],[68.62690108300015,37.20625722200005],[68.60881433200015,37.20408681300016],[68.57140059500009,37.19470754100011],[68.55145349100003,37.19261464500012],[68.54654423000014,37.18822214800004],[68.53274662300007,37.16899851500004],[68.52385827600008,37.16465769400004],[68.51331628400013,37.16398590100005],[68.4657739670001,37.155355937000124],[68.403710571,37.151635234000096],[68.41802494300012,37.12827748600016],[68.41146203600013,37.113368836000106],[68.39187666900008,37.10543650300015],[68.36583174600011,37.10321441700013],[68.34609135000008,37.106909281000135],[68.32666101100008,37.113032939000036],[68.30728234900013,37.11422149700003],[68.28831709800008,37.10321441700013],[68.2807723390001,37.08665212100014],[68.28159916200016,37.06647247300016],[68.28831709800008,37.024407857000035],[68.27777510600012,37.01006764800003],[68.25374556500017,37.010222677000066],[68.21255944800006,37.02125559500017],[68.1864111730001,37.01831003800008],[68.16796268800007,37.00608856200016],[68.15199467000011,36.99278188100014],[68.13339115400018,36.986529032000035],[68.12109216300021,36.98027618500005],[68.05494633000015,36.93464589400004],[68.04471439600015,36.929219869000164],[68.0327254640001,36.925240784],[68.02481969200002,36.925518466000156],[68.02021976800019,36.9256800340001],[68.01112471500008,36.93087351600012],[68.00606042500007,36.938676657000045],[68.00202966300017,36.947487488000135],[67.9961902260001,36.955781555],[67.96182539900016,36.989939677000066],[67.9529370530001,36.996244202000085],[67.92926924600013,37.00624359200019],[67.91841719600009,37.01381418900014],[67.90250085500023,37.03438140900015],[67.89195886200017,37.05202891100013],[67.8781095790001,37.064431254],[67.83289270100013,37.073087057000166],[67.80803633700006,37.083241476000026],[67.78535038200019,37.09654815700004],[67.77305139200004,37.10998402900019],[67.77196618700006,37.12497019500016],[67.7805444750002,37.18886810300002],[67.78509200100015,37.20357004800012],[67.80395389900016,37.23343902600011],[67.81542606600007,37.26733876600004],[67.82064538600011,37.30330556300011],[67.81718306500008,37.345421855000055],[67.79733931500007,37.424435120000126],[67.80121504700011,37.466448060000126],[67.82922367400013,37.52794301400014],[67.87185673000013,37.58680247000013],[67.92337813300011,37.63878896100005],[67.97732832900007,37.679742534000084],[68.05019209800017,37.76040944400002],[68.07964766500018,37.806272279000076],[68.12222904500007,37.90833323200009],[68.13995406100017,37.92269928000012],[68.1711149500002,37.93107086300007],[68.21772709100017,37.936083476000036],[68.23302331600016,37.93980417900015],[68.23802450700006,37.94271605600004],[68.24873295100011,37.94895090700014],[68.25622603400014,37.96155995700015],[68.26077355900006,37.9767786660001],[68.26826664200021,37.99383188900013],[68.26836999500003,37.99390940400015],[68.26847334800017,37.993986918000175],[68.26847334800017,37.99411611],[68.26857670100011,37.99419362400012],[68.28056563300007,38.0132363900001],[68.31952966300017,38.06021026600017],[68.3443343500002,38.11545237200009],[68.3606641030001,38.1740534470001],[68.35621993000021,38.212604065000065],[68.33203536000022,38.24298980700003],[68.25266036000008,38.29874867799999],[68.2008288980002,38.32169301400002],[68.18372399900014,38.33549062100015],[68.14672367300008,38.38874318500005],[68.10755293800017,38.41827626600015],[68.09804447400009,38.432435608],[68.09463383000016,38.44698252400015],[68.09256677300019,38.47878936800002],[68.08688236500015,38.494033915000145],[68.06259444200006,38.52307607000013],[68.05515303500013,38.536305237000036],[68.0525175380001,38.558267721],[68.05587650600009,38.6157319140001],[68.05370609500014,38.63593739800011],[68.04032190000007,38.673351135000146],[68.03763472500006,38.69164459200012],[68.04548954300017,38.70670827300005],[68.07075931800014,38.720738424000146],[68.07592696200007,38.72686208100011],[68.07665043100016,38.73810170500015],[68.07220625900007,38.747351786000145],[68.06631514500006,38.75621429500007],[68.06331791200014,38.76631703800002],[68.06672855600007,38.787969462000106],[68.07789066600017,38.79339548800009],[68.09561568300009,38.79293040000006],[68.11902510600005,38.79670278000016],[68.13597497600009,38.804505921],[68.15127120000014,38.81512542800009],[68.1636735430001,38.82863881400005],[68.17256189000014,38.84527862600007],[68.17369877100012,38.86731862400016],[68.1637252200002,38.88747243300004],[68.15338640700006,38.89940254000011],[68.13468306500013,38.920984599000136],[68.10093835400008,38.97927561500008],[68.08564213100007,38.99377085400012],[68.08543542500016,38.99379669200012],[68.08528039600012,38.99395172100016],[68.08507369000002,38.99395172100016],[68.07727054900013,38.99552785300001],[68.06910567200012,38.99609629300015],[68.0609407960001,38.99552785300001],[68.05308597900014,38.99395172100016],[68.03644616700015,38.98439158200007],[68.01980635600007,38.97968902600009],[68.00337325100023,38.98211781900015],[67.98797367400007,38.99377085400012],[67.98011885600013,38.997388205],[67.96327233900016,39.00190989200002],[67.94890629000022,39.00201324500016],[67.93485030200023,38.99906768900014],[67.92151778200011,38.99387420700005],[67.92125940000014,38.99387420700005],[67.92125940000014,38.99379669200012],[67.92115604700021,38.99379669200012],[67.92115604700021,38.99377085400012],[67.84524336700011,38.9737720750001],[67.8183716230001,38.97341034],[67.69052412900007,38.989610901],[67.67325419900013,39.002978022000136],[67.6722306720001,39.00377024400014],[67.67218541700007,39.003992322000116],[67.66721805800009,39.028368226000126],[67.67858687400009,39.1059345500001],[67.67672652200011,39.11962880500012],[67.67658139500006,39.11982148800017],[67.66757979300021,39.13177276700013],[67.66117191600009,39.133374736000135],[67.64453210500002,39.1306100470001],[67.63771081500008,39.13154022300016],[67.63212976100007,39.13621693900002],[67.6241715900002,39.14737904900006],[67.6198307700001,39.151254781000105],[67.58034997600012,39.16360544900006],[67.4990112710001,39.16598256400012],[67.37819177300017,39.19949473100003],[67.35007979400015,39.21982940700006],[67.35003729600007,39.220057946000125],[67.34269006300022,39.259568583000046],[67.34439538600012,39.273831279000106],[67.34646244300004,39.280807597000106],[67.35121667500007,39.285251770000016],[67.36062178500012,39.2917630000001],[67.37126713000012,39.294501851000135],[67.38025883000014,39.292331441000144],[67.38687341300013,39.294191793000046],[67.3944181730001,39.327368063000065],[67.40707889900014,39.361009420000116],[67.40816410300013,39.39790639300013],[67.41477868600012,39.43811065700005],[67.42728438300011,39.4766095990001],[67.43648278799999,39.48570465100009],[67.45167565900012,39.487151591000085],[67.47741052200016,39.48441274000013],[67.48237146000011,39.48529123900006],[67.48702233900016,39.487151591000085],[67.49115645400016,39.490097148000174],[67.4945670980002,39.493662821000136],[67.4945670980002,39.49371449800016],[67.48764245600009,39.538001200000096],[67.50743453000008,39.55293569000007],[67.5873779710001,39.562650859000186],[67.68044722500011,39.61412058600017],[67.7176025800002,39.62337066700009],[67.76452478000007,39.622595520000075],[68.1062093510001,39.554124248000065],[68.25586429900014,39.55055857400011],[68.33756473800022,39.52792429600005],[68.38660567200006,39.52518544600012],[68.43626672400015,39.52880279599999],[68.49771000100006,39.54141184500013],[68.51745039900001,39.54843984000003],[68.5172677080001,39.5487648200001],[68.51015830600014,39.56141135100001],[68.50670170100008,39.56756012000012],[68.52024092600018,39.58254628500002],[68.56292566000015,39.60357859300002],[68.5870068770001,39.62316396100012],[68.60033939700023,39.642852682000076],[68.60581709800013,39.666882223000115],[68.61584232600015,39.82811269200012],[68.62617761200008,39.84961008800015],[68.63775313400012,39.84893829400009],[68.65108565300012,39.84470082600002],[68.68508874500017,39.86800689700006],[68.70152185100002,39.85844675700015],[68.7281868900001,39.82496042900006],[68.7416227620001,39.819637757000024],[68.74834069800008,39.82614898700008],[68.75051110800015,39.83607086200008],[68.75061446100008,39.84108347600015],[68.75040775600021,39.84247874000012],[68.75753910300013,39.857516582000116],[68.76094974800017,39.85911855000013],[68.77144006400013,39.86051381400004],[68.77521244300006,39.86252919500008],[68.78735640500017,39.881701152000076],[68.78761478700014,39.895757141],[68.76523889200016,39.93244740900015],[68.7555753990001,39.954048157000145],[68.75200972500008,39.972755025000126],[68.7588826900002,39.98055816700004],[68.77975996900008,39.96944773300011],[68.80012048300013,39.93513458300002],[68.81536503100008,39.891881409000135],[68.8382576910001,39.864647930000146],[68.88078739500023,39.87834218300015],[68.87742842600012,39.900563050000116],[68.7893717850002,39.993994039000185],[68.78441084800008,40.00401926700011],[68.78291223200003,40.01342437700008],[68.7850309660001,40.03393992100013],[68.78162032100008,40.04153635700011],[68.76384362800016,40.0524917610001],[68.7617248940002,40.06148345900011],[68.77469567900013,40.07988027000012],[68.7904053140002,40.070165101],[68.81314294400008,40.038900859000094],[68.82606205300007,40.04205312100005],[68.86151208500021,40.065824280000115],[68.88176924700011,40.07083689400015],[68.9545296630001,40.062051900000185],[68.97726729300004,40.06489410400014],[68.98543217000004,40.077141419000085],[68.9869824620001,40.09171417300014],[68.98377852400014,40.10701039700011],[68.97726729300004,40.12101471],[68.93065515200007,40.1468012500001],[68.69654498000008,40.11173935200004],[68.68705245000008,40.11031768800011],[68.6517057700001,40.12075632800004],[68.60695398000016,40.1423054000001],[68.5811157640002,40.16421620800004],[68.60199304200009,40.17542999300018],[68.64273231300015,40.1836914980001],[68.69831791200008,40.194963685000104],[68.72053877800008,40.19651397800011],[68.77846805900006,40.18876251200011],[68.8018774820001,40.19113962800007],[68.83665572100008,40.20643585200009],[68.85655114800008,40.21274037700012],[69.01922855600017,40.23206736300007],[69.04201786300015,40.22917348300008],[69.0736398170001,40.2169407140001],[69.10800866700018,40.20364532500015],[69.1979256590001,40.182974752000135],[69.24769006400007,40.181734518],[69.28525883000006,40.194963685000104],[69.28525883000006,40.21863149000002],[69.21249841300008,40.26875763000005],[69.20836429900007,40.29831654900009],[69.23461592700019,40.30084869400015],[69.27311486800014,40.289583231],[69.3053092850001,40.29382069900005],[69.3126990160001,40.34280995800015],[69.30634281400009,40.364979147],[69.29549076300012,40.38394439800014],[69.26944584200007,40.41980784100018],[69.25973067200019,40.43763621100014],[69.23833663000019,40.493963521000055],[69.23823327700009,40.493963521000055],[69.19802901200013,40.54584666000012],[69.19844242400004,40.56651723300014],[69.23425419100008,40.58527577800005],[69.29497399900018,40.58915151000009],[69.30934004800011,40.59581776900002],[69.31347416200012,40.609356995],[69.30660119700022,40.662532044000145],[69.3071696370001,40.69932566400003],[69.3141976320002,40.72929799500018],[69.32959720800008,40.755342916000146],[69.35507369000013,40.780354309000145],[69.36928470900007,40.78939768500011],[69.38525272600012,40.79611562200013],[69.41775720300015,40.80422882100014],[69.43584395300016,40.80267852900012],[69.4491764740001,40.79446197500009],[69.46168217000016,40.78433339500013],[69.47728845200012,40.77704701800015],[69.50922448700007,40.7746699020001],[69.53185876500007,40.75859853100003],[69.57082279400005,40.712451478],[69.58260502100015,40.70438995400012],[69.60782312000018,40.691780905000186],[69.61888187600019,40.68165232400004],[69.63717533300004,40.65793284100009],[69.64751062000006,40.64744252600003],[69.66011966900005,40.63870920800015],[69.69091882300009,40.63002756800002],[69.7176872150002,40.636280417000094],[69.74156172700012,40.652455139],[69.78352299000014,40.69296946200011],[69.80331506400009,40.70563018800014],[69.82532922400017,40.71400177000011],[70.00965905700016,40.75803009],[70.10422692900008,40.813323873000016],[70.20799320500007,40.84458811500009],[70.28039188600022,40.877712708],[70.33589237400011,40.92696034800018],[70.36353926600012,41.032431946000045],[70.40115970900015,41.039976705000086],[70.44570479300015,41.02592071600015],[70.458006358,41.015736633000145],[70.47722741700007,40.99982411700007],[70.4797595630001,40.99646514900017],[70.48291182500006,40.993519592000084],[70.51443444800012,40.972590637000096]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Turkmenistan","sov_a3":"TKM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Turkmenistan","adm0_a3":"TKM","geou_dif":0,"geounit":"Turkmenistan","gu_a3":"TKM","su_dif":0,"subunit":"Turkmenistan","su_a3":"TKM","brk_diff":0,"name":"Turkmenistan","name_long":"Turkmenistan","brk_a3":"TKM","brk_name":"Turkmenistan","brk_group":null,"abbrev":"Turkm.","postal":"TM","formal_en":"Turkmenistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Turkmenistan","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":9,"pop_est":4884887,"gdp_md_est":29780,"pop_year":-99,"lastcensus":1995,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"TX","iso_a2":"TM","iso_a3":"TKM","iso_n3":"795","un_a3":"795","wb_a2":"TM","wb_a3":"TKM","woe_id":23424972,"woe_id_eh":23424972,"woe_note":"Exact WOE match as country","adm0_a3_is":"TKM","adm0_a3_us":"TKM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":12,"long_len":12,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"TKM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.10206139400006,38.755072333],[53.09473717500012,38.755072333],[53.09213300900015,38.778794664000095],[53.06299889400006,38.86469147300012],[53.04688561300011,38.89166901200018],[53.040212436000076,38.90668366100003],[53.038422071000156,38.91693756700012],[53.04004967500006,38.94342682500012],[53.03785241000011,38.97016022300012],[53.028575066000116,39.01630280200014],[53.02637780000006,39.03937409100011],[53.029958530000016,39.06134674700011],[53.040293816000116,39.08100006700006],[53.05762780000012,39.094427802000055],[53.081716342000014,39.09772370000009],[53.08659915500013,39.09129466400019],[53.087901238000114,39.08812083500011],[53.087901238000114,39.083441473],[53.05884850400011,39.06708405199999],[53.05396569100017,39.026800848],[53.06739342500006,38.946844794000114],[53.079437696000156,38.86347077],[53.10206139400006,38.781724351000136],[53.097992384000094,38.76923248900012],[53.09839928500017,38.763902085000055],[53.10206139400006,38.755072333]]],[[[53.50375410200015,39.58612702000006],[53.50863691500015,39.585516669000114],[53.512950066000116,39.5912132830001],[53.51734459700006,39.56940338700004],[53.519297722000175,39.563869533000016],[53.539724155000066,39.539618231000034],[53.53443444100017,39.52765534100011],[53.52198326900006,39.51609935100008],[53.506195509000094,39.508612372000115],[53.491872592000135,39.508612372000115],[53.48658287900017,39.516343492000104],[53.47527103000007,39.54808177300008],[53.468272332000105,39.560451565],[53.46290123800023,39.57379791900003],[53.46851647200006,39.58494700700014],[53.479991082000055,39.593329169000114],[53.491872592000135,39.59796784100003],[53.49830162900011,39.59100983300014],[53.50375410200015,39.58612702000006]]],[[[58.612266887,42.780852356000096],[58.82744755000007,42.593757833000055],[58.894420207000074,42.547843323000095],[58.96470015500009,42.5243822230001],[59.00924523900008,42.518465271000096],[59.03859745300016,42.51973134400005],[59.06743290200009,42.52557078000014],[59.09647505700016,42.535983582000156],[59.122003215000206,42.53799896200012],[59.14608443200003,42.52675933900015],[59.209646444000136,42.47771840500003],[59.22380578600009,42.46087188800006],[59.23331425000006,42.44172576900014],[59.24519982900019,42.36534800300011],[59.258428996000106,42.34754547100006],[59.28716109300009,42.33594411300011],[59.33811405500014,42.331809998],[59.36157515400012,42.32578969400005],[59.40146936000016,42.29390533499999],[59.426480754000146,42.28677398700016],[59.47815718600006,42.28563710600004],[59.68951379400019,42.30979583800011],[59.776330200000096,42.30395640100012],[59.820978638000014,42.30798716200003],[59.866350545000074,42.30421478300009],[59.897873169,42.278531596000036],[59.92567509000016,42.24628550200005],[59.96071171100019,42.22272104900004],[60.005050090000026,42.20977610300004],[60.028201131000145,42.19951833200004],[60.04039676900006,42.186470032],[60.03698612400009,42.16970102900013],[60.02055302000016,42.16078684500003],[60.00008915200007,42.154508159000116],[59.98365604600022,42.14559397400011],[59.97445764200014,42.0992402150001],[59.994094686000174,42.05009592800015],[59.99719527200008,42.010615133000115],[59.9378707270001,41.99340688100012],[59.93756066900019,41.99340688100012],[59.937250611000216,41.99340688100012],[59.936940551000156,41.99348439500007],[59.9192672120001,41.98966034000013],[59.90800174900008,41.97981597900015],[59.906451457000145,41.96661265100006],[59.917510213000156,41.952427471000114],[59.93177290800023,41.9476474],[59.98365604600022,41.9490426630001],[60.08876591000009,41.91935455300002],[60.1182214770001,41.900440979000095],[60.1411441160001,41.87422148400004],[60.1525346270001,41.86119272900011],[60.16752079300008,41.849591370000084],[60.21485640500006,41.828584900000166],[60.2289123950001,41.81961903900013],[60.24110803300018,41.808069357000086],[60.250823202000134,41.794271750000135],[60.252683553000146,41.78006073000007],[60.24110803300018,41.76706410700014],[60.225398397000134,41.7654621380001],[60.20586470500021,41.77202504500009],[60.17134484900012,41.788406474000126],[60.1337244060002,41.79729482100005],[60.10240848800018,41.795279440000016],[60.074916626000146,41.78104258300014],[60.049181763000064,41.75349904400015],[60.058276815000085,41.71859161400009],[60.0890759690001,41.674124044],[60.15563521300007,41.60332733200006],[60.16473026500015,41.58495636000008],[60.150984334000064,41.572347311000144],[60.10964318900009,41.556792704000095],[60.09258996600014,41.54547556600012],[60.079567505000085,41.531471252000024],[60.07171268700008,41.51436635400007],[60.05920699100008,41.43416453100009],[60.06613163300002,41.41049672500016],[60.0942436120001,41.38951609300007],[60.20369429600012,41.347089742000136],[60.29991581200008,41.309831035000016],[60.36027388600004,41.2763447060001],[60.414534140000086,41.23526194300014],[60.443266235000095,41.219655660000015],[60.47809615100019,41.21211090200016],[60.53814416500009,41.21324778200007],[60.65886031100009,41.24378855400006],[60.86029504400014,41.25298695900007],[60.93026493300013,41.2402228800001],[60.978013957000115,41.20280914400002],[60.984628540000095,41.20699493500017],[60.991139771000086,41.21247263600016],[61.00431806800012,41.229533188000076],[61.010260051000074,41.237225647000066],[61.014084107000116,41.234900208000155],[61.01718469200014,41.225960185000034],[61.02276574700008,41.216865133000155],[61.081883586000146,41.22451324500004],[61.099660279000055,41.224099833000125],[61.20259973100022,41.168806051],[61.24321740800004,41.15630035400001],[61.2813546140002,41.15728220700008],[61.31587447100011,41.17045969700014],[61.34398645000012,41.193817444],[61.36300337700013,41.22518503900001],[61.387498006000065,41.23577870700008],[61.39721317500019,41.270970358000156],[61.41075240100012,41.29200266600016],[61.43317997200008,41.30032257100014],[61.470076945000095,41.29717030900015],[61.567331991000145,41.27779164700011],[61.654355103000086,41.249421285],[61.87790734900014,41.12498443599999],[61.89744104000013,41.108809713000184],[61.970821574000034,41.015430399000124],[61.97929650900008,40.99884226500002],[61.982707153000064,40.97843007500016],[61.985394328000126,40.9078917450001],[61.990251912000225,40.8931639610001],[61.982707153000064,40.885670878000056],[61.99386926300022,40.86587880399999],[62.02534021000006,40.781956279],[62.03681237800018,40.73632598900017],[62.04477054900016,40.71498362199999],[62.055725952000124,40.701754456000096],[62.08869551600017,40.67436594700014],[62.100064331000084,40.66041331000015],[62.12068322700006,40.59897003200017],[62.134170776000154,40.57783437200011],[62.17137780800007,40.53995554700013],[62.177268921000035,40.53065378900003],[62.18533044500006,40.507864482],[62.18706125700007,40.505515522000096],[62.19184167500013,40.49902781200002],[62.21344242400019,40.48657379200013],[62.260933065000096,40.47572174100016],[62.343615356000065,40.439393209000016],[62.35327885000018,40.43040151000015],[62.35637943500009,40.38818186499999],[62.36258060800011,40.36968170200008],[62.388315471000205,40.33014923200012],[62.39653202300022,40.31201080300009],[62.40020105000022,40.29211537700009],[62.40097619600013,40.26560536800018],[62.40505863500007,40.245244853000074],[62.43575443500018,40.19418853800009],[62.43968184400015,40.172897848],[62.43410079000014,40.154811097000085],[62.42578088300016,40.13667266900016],[62.42159509200022,40.115071920000084],[62.424385620000095,40.09212758400015],[62.4419556070001,40.035955302],[62.452807658000125,40.00923858600014],[62.52458622200001,39.93973378500014],[62.535386597000034,39.93497955300016],[62.59316084800016,39.890227763],[62.71015629100006,39.82573557600007],[62.84647871900008,39.75059804300015],[63.00894942300013,39.66109446200012],[63.33864506000012,39.47945180300009],[63.47755131000022,39.40291900699999],[63.5410099690001,39.356100159000064],[63.64849694800009,39.239518128],[63.70926843200019,39.19089060500009],[63.82006270300022,39.12913726800009],[63.95969242400022,39.05136423800017],[64.12061283400007,38.961679789000115],[64.1505851640002,38.94945831400018],[64.18014408400003,38.94511749300001],[64.20598230000004,38.94945831400018],[64.28339359600008,38.97968902600009],[64.31357263200019,38.98247955300015],[64.33734379100017,38.97095570900002],[64.36756630300013,38.940374046000116],[64.42431522600012,38.882950745000116],[64.63489668800011,38.74414784800011],[64.76336429900013,38.68601186100001],[64.91053877800019,38.64534250900006],[64.97771813900007,38.612269592000146],[65.11083663000014,38.51726247200007],[65.20530114800007,38.44964386],[65.34017663600011,38.377813620000055],[65.43960209100007,38.324948629000104],[65.60413985200015,38.237408753000025],[65.67162927300008,38.21968373600002],[65.74020389800015,38.224076234000094],[65.7659904380001,38.23554840100011],[65.81435957800008,38.266192526000125],[65.8428849690001,38.27533925400003],[65.8766813560002,38.27296213800015],[65.9774503990001,38.234566549000036],[66.04349287900001,38.226194967000154],[66.07160485800009,38.2145419320001],[66.1335649000001,38.17529368100004],[66.19841882400013,38.16072092700007],[66.2310783290001,38.148783672000135],[66.26043054200008,38.12674367300006],[66.30693933100011,38.08038991400015],[66.40832849200015,38.042846985000054],[66.4394377040002,38.03545725500014],[66.51591882300008,38.03509552000004],[66.55415938400009,38.026853129000116],[66.59038456200014,38.01297800700002],[66.62402592000015,37.99401275700008],[66.62423262600012,37.993883566000065],[66.62433597800006,37.99383188900013],[66.63652367000012,37.96659313300013],[66.64578169800008,37.9459019980001],[66.60903975400018,37.88918711400002],[66.55364261900016,37.832007142000165],[66.51881270300007,37.78270782500006],[66.51498864700014,37.7434854130001],[66.52294681800012,37.6650405890001],[66.51912276300007,37.6252497360001],[66.49721195400011,37.557889506],[66.49349125100011,37.52220692900009],[66.50713383000019,37.49383656800008],[66.52682255100015,37.48037485800001],[66.54268721500009,37.46675811800013],[66.54661462400023,37.45079010000008],[66.53080163600006,37.430145365999984],[66.51209476800014,37.41482330300003],[66.49700524900007,37.39774424200009],[66.49483483900005,37.37942494800011],[66.51958785000008,37.36418040000014],[66.50289636200014,37.355653789000044],[66.48522302300015,37.34340647400002],[66.4699267990002,37.3297638960001],[66.46145186400011,37.324441223000136],[66.45106490100008,37.322942607000144],[66.43866255700019,37.32790354399999],[66.42362471500022,37.345680237000025],[66.41349613500009,37.349633484000016],[66.38962162300018,37.34717885400011],[66.32068526200007,37.32914377800013],[66.29443363400011,37.331210836000096],[66.27438317900007,37.34327728300017],[66.25774336800006,37.35684234600016],[66.2508477160001,37.35965002200011],[66.24187870300013,37.363301900000025],[66.23252526900009,37.36542063400019],[66.21846927900016,37.374799906000035],[66.20772058100007,37.37689280200002],[66.1746476650001,37.37549753800012],[66.16307214300011,37.37689280200002],[66.14291833500013,37.38505767900013],[66.12560673000016,37.39870025700013],[66.09785648600021,37.428414205000095],[66.07966638200016,37.44086822500019],[65.85518396000006,37.507944235000124],[65.83606368000008,37.51915802000015],[65.82908736200008,37.52561757400012],[65.82107751500008,37.5351777150001],[65.80433435100016,37.56530507400002],[65.79647953300011,37.569335836],[65.77653243000012,37.572901510000165],[65.76144291200009,37.578379212000144],[65.75885909000007,37.56411651700007],[65.7526579180002,37.53786488900015],[65.73942875200012,37.529054057000145],[65.69829431200006,37.52941579200014],[65.68103438400007,37.52639272000011],[65.66883874500016,37.52055328400006],[65.6587101640001,37.51026967400004],[65.64832320200017,37.49414662700015],[65.64832320200017,37.4939915980001],[65.64827152500007,37.49393992200011],[65.6481681720002,37.49383656800008],[65.63576582900006,37.47409617100011],[65.62574060100022,37.45280548100014],[65.62098636900012,37.430403748000124],[65.62889286300017,37.387538147],[65.62946130400022,37.36542063400019],[65.62408695500008,37.34513763500017],[65.61127120000017,37.33105580600015],[65.58315922000016,37.30805979500009],[65.53685713700006,37.25710683300015],[65.50140710500013,37.242275696000135],[65.48792177900006,37.24199746800012],[65.06308760600015,37.233232321000074],[64.98908695500015,37.21367279100015],[64.80790938300012,37.13551218700003],[64.77876387500011,37.11804555300007],[64.76016036000013,37.09262074800007],[64.75561283400012,37.05363088000017],[64.77462976100017,36.977589010000095],[64.77876387500011,36.938469950000076],[64.76522465000014,36.90462188800008],[64.72854862900007,36.85056954700012],[64.62135746300012,36.69259348500016],[64.60482100400006,36.66055409800008],[64.59200524900004,36.62107330300013],[64.58880131100008,36.60045440700004],[64.58900801600007,36.58024892200014],[64.59371057100012,36.55983673100011],[64.60776656100015,36.521647848000114],[64.6105054120001,36.50092559800002],[64.60585453300021,36.46108306900008],[64.59438236500009,36.424186097000145],[64.5766573490001,36.389614564000155],[64.49816084800013,36.29142934200017],[64.4776969810001,36.271637268000106],[64.44457238800007,36.24998484300012],[64.41087935400006,36.23985626200006],[64.33724043800012,36.225955302],[64.31894698100004,36.21975413000011],[64.3036507570001,36.211537578000055],[64.29186853100012,36.19944529200008],[64.27605554200008,36.15924102800007],[64.26613366700022,36.152471416000125],[64.25373132300015,36.154848531000155],[64.23714318900014,36.16042958600018],[64.19590539500021,36.165907288000156],[64.15869836500022,36.16027455600015],[64.12335168400014,36.14606353800018],[64.05725752800006,36.105239156],[64.04464847900013,36.09232004900018],[64.03622522000015,36.07640370700015],[64.03638024900008,36.0585753380001],[64.04557865400008,36.011291402000055],[64.04511356600008,35.99873403000005],[63.94997725400011,36.02886138900014],[63.9219686280002,36.03371897400014],[63.9063270610001,36.03173234399999],[63.889825887000164,36.029636536000154],[63.85985355600022,36.022091777000085],[63.76590580200011,35.97728831000002],[63.72570153800009,35.968865052000055],[63.60229821800013,35.96266388000005],[63.582092732000056,35.95904653000015],[63.56343754000007,35.95062327100008],[63.54958825700013,35.93904775100013],[63.52592045100019,35.91269277000007],[63.51108931500007,35.90184071900001],[63.43021569800007,35.871041565000056],[63.34293420400015,35.856262106000045],[63.12527307200011,35.86024119100004],[63.104085734000165,35.85646881100008],[63.088634481000064,35.84339467400004],[63.084397013000135,35.82608306900015],[63.09132165500009,35.81331899100017],[63.1012952070001,35.80055491200001],[63.10568770400019,35.78288157200011],[63.11204390500014,35.76991078700017],[63.163255250000155,35.73229034500015],[63.17725956300015,35.716890768000084],[63.18392582200008,35.712343242000046],[63.209350627000084,35.704488424000104],[63.21441491700014,35.699269105],[63.21358809400014,35.692292786000095],[63.207696981000105,35.6831977340001],[63.17989506000018,35.666454570000084],[63.10315555800011,35.64604237900012],[63.07664554900012,35.62470001200002],[63.07494022700004,35.60981720000007],[63.07736901800009,35.5587608850001],[63.0805729570001,35.54651357000007],[63.09721276900021,35.53545481400009],[63.100726766000065,35.524964499000035],[63.090494832000076,35.49354522800009],[63.08625736500014,35.45566640300011],[63.08021122200008,35.43706288700003],[63.06682702700007,35.42559071900003],[63.04708662900007,35.421353251000156],[63.0055387780001,35.418407695000084],[62.98528161600009,35.41458363900013],[62.91820560700008,35.38817698200016],[62.827565145000136,35.32931752500015],[62.82306342900008,35.32751406400014],[62.76048913600013,35.302445781000145],[62.734237508000064,35.28074167900017],[62.721628458000076,35.266427308000075],[62.70860599800013,35.25604034500007],[62.693619832000216,35.24839223200017],[62.62106612200015,35.222709045],[62.604529663000136,35.219401754],[62.595641317000144,35.22059031200003],[62.56618575000012,35.230770569000086],[62.55543705200008,35.230408834000094],[62.545515177000105,35.22803171800014],[62.535489950000084,35.227359924000055],[62.52458622200001,35.23216583300017],[62.458905477000165,35.281878561000084],[62.431878703000145,35.280638326000044],[62.3993225510001,35.25593699200011],[62.302015828000066,35.147519837000075],[62.28620284000007,35.140646871000015],[62.275712525000095,35.151033835000035],[62.25685062700009,35.187155660000045],[62.25095951300008,35.20234853200016],[62.252613159000106,35.24281117800017],[62.25121789600015,35.260381165000055],[62.244344930000096,35.27805450500013],[62.233699585000096,35.29376414000011],[62.219023478000196,35.30626983600011],[62.16388472500009,35.32616526300002],[62.13634118700023,35.34135813400003],[62.03381514500009,35.42398875],[62.007460164000086,35.43892323900015],[61.97774621600016,35.4509121710001],[61.91935184700018,35.45184234600005],[61.79904911300011,35.417477519000116],[61.73962121600007,35.41375681600003],[61.60474572800009,35.43060333200019],[61.53870324700003,35.452307433999984],[61.492711223000164,35.49416534400013],[61.427702271000186,35.54284454300007],[61.41930908800012,35.54589138400003],[61.412612752000115,35.54832224600006],[61.40124393700008,35.54982086200009],[61.3931824140001,35.553593241],[61.386877889000196,35.55953603200011],[61.38026330500011,35.56733917300012],[61.37995324700008,35.57131825800012],[61.38388065600006,35.58211863200016],[61.38346724500017,35.58645945300013],[61.36765425600018,35.597983297000056],[61.3654838460001,35.59850006100011],[61.36393355300007,35.598241679000054],[61.351531210000104,35.60713002600015],[61.36010949700014,35.618395488000104],[61.36093632000003,35.62103098600012],[61.351531210000104,35.62780059900017],[61.3441931560001,35.63090118400011],[61.33571822100012,35.63090118400011],[61.283318319000074,35.622632956000146],[61.26967574100015,35.61849884000004],[61.24538781800006,35.64929799500011],[61.231745239000155,35.67188059500013],[61.22916141800013,35.69859731100011],[61.23308882600011,35.70459177700003],[61.24673140500013,35.715495504],[61.24972863800022,35.722471822],[61.24900516800003,35.74019683900009],[61.24972863800022,35.745777893000124],[61.2563432210002,35.76949737500017],[61.256136515000065,35.77936757400014],[61.24972863800022,35.78670562800015],[61.256136515000065,35.80913320000003],[61.255516398000196,35.82535959900004],[61.25189904800001,35.84039744100012],[61.247351522000166,35.87620920800008],[61.2410469970001,35.89388254800015],[61.232158651000155,35.91067738900013],[61.22182336400007,35.9245266730001],[61.2058036710001,35.940494690000136],[61.18833703600015,35.95356882800017],[61.168079874000135,35.96235382100014],[61.14358524600018,35.96550608300011],[61.12983931500016,35.97051869700009],[61.14141483500012,35.98235260000011],[61.16177535000023,35.995943502],[61.173970988000036,36.00648549400016],[61.17459110500013,36.015838928],[61.17107710800004,36.035941060000155],[61.173970988000036,36.048033345000064],[61.18027551300016,36.05278757700013],[61.18968062300021,36.05578481100015],[61.19815555800014,36.060797424000114],[61.20197961500016,36.07159779900014],[61.20239302600006,36.080744527000135],[61.20415002400014,36.090563049000096],[61.207250611000084,36.099503072000125],[61.21221154800011,36.10637603800011],[61.22275354000012,36.11753814800012],[61.22471724400006,36.123687643000025],[61.22306359900019,36.12880361],[61.22047977700017,36.15893096900008],[61.2054936110002,36.22109771700015],[61.19092085800017,36.24063140900007],[61.18761356700016,36.25034657900004],[61.187200154000074,36.27354929600004],[61.185443156000154,36.283987936000145],[61.181412394000084,36.29447825100003],[61.17727828000014,36.300369365],[61.17107710800004,36.30641550800006],[61.16311893700012,36.31158315100005],[61.1535071210001,36.31494211800016],[61.156194296000216,36.32186676100007],[61.157744588000156,36.32465728800009],[61.1609485280002,36.328636373000094],[61.146685832000145,36.35726511700007],[61.15247359200012,36.4063060510001],[61.173970988000036,36.48681793300007],[61.167976522000146,36.501804098000136],[61.16632287600007,36.513844707000096],[61.170663697000144,36.524438375],[61.17686486900007,36.532034811000145],[61.1822392170001,36.54164662700008],[61.186166626000066,36.55280873600019],[61.18761356700016,36.565107727000125],[61.18595992000021,36.57766510000015],[61.1822392170001,36.586915181000066],[61.173970988000036,36.602314759000066],[61.165806112,36.6363178510001],[61.12518843600011,36.6407620240001],[61.075475708000084,36.64779001900011],[60.97294966700022,36.64634307900012],[60.854403930000124,36.644637757000154],[60.64108361800007,36.64148549499999],[60.50124719200008,36.639470113000144],[60.3422904870001,36.63714467400011],[60.30921757000007,36.65197581000014],[60.2886503500001,36.681069641000065],[60.2596081950002,36.74240956700011],[60.23852421100017,36.76974639900014],[60.132587525000105,36.87340932200003],[60.08638879400015,36.93002085400009],[60.04887170400016,36.99402211500008],[60.0192094320001,37.02580312100012],[59.98158898900007,37.03882558300013],[59.89952681500009,37.050556132000125],[59.862836548000104,37.06781606100013],[59.797207479000086,37.112206116],[59.65323693800016,37.14967152900006],[59.64259159300016,37.15023997000013],[59.63318648300011,37.14626088500013],[59.621507609000126,37.13150726400012],[59.614479614000196,37.1254869590001],[59.60497115100022,37.12388499000015],[59.59153527800018,37.13233408600014],[59.584610636000114,37.14889638300015],[59.57985640400013,37.16780995800009],[59.5727250570001,37.183390402000114],[59.55598189300022,37.19778228800014],[59.54120243300022,37.19984934500009],[59.50947310400008,37.18982411700007],[59.50120487500007,37.190211690000076],[59.49272994000014,37.19359649600001],[59.48466841600006,37.19876414000011],[59.47815718600006,37.20413848900007],[59.46172408000021,37.207600810000095],[59.45883020000022,37.21475799600016],[59.461827433000074,37.223000387000084],[59.463067667000104,37.229718323000114],[59.46451460800009,37.23245717400006],[59.46813195800004,37.23584198100018],[59.46937219300011,37.240699565000014],[59.463481079000104,37.24744333900004],[59.44467085800008,37.264186503000175],[59.3820390220001,37.30568267900016],[59.3703601490001,37.3194286090001],[59.35072310400008,37.38836497000012],[59.34834598800009,37.409293925000114],[59.351653280000185,37.420430197000044],[59.357854451000115,37.43027455700012],[59.36198856700011,37.439214580000126],[59.35919803900017,37.4475086470001],[59.353203572000126,37.45843821300014],[59.35630415900019,37.48063324000019],[59.351653280000185,37.49383656800008],[59.33232629400006,37.51512725900007],[59.31227583800009,37.53034596700009],[59.28922814900013,37.5351777150001],[59.2331075440002,37.514713847000145],[59.211713501000105,37.51631581700009],[59.078284953000065,37.592745259000154],[59.04562544700016,37.61961700500014],[59.03456669100015,37.624526265],[59.00552453600008,37.62801442500013],[58.99219201700006,37.631450908000076],[58.97813602700015,37.63951243100014],[58.938655233000105,37.65393015600007],[58.8610372310002,37.66808949800013],[58.801092570000016,37.69465118400013],[58.795614868000115,37.68772654200016],[58.79313440000007,37.672843730000025],[58.779801880000065,37.659640402000136],[58.76925988800004,37.65679819800006],[58.75902795500011,37.65615224300008],[58.73773726400012,37.659407858000165],[58.726368449000084,37.65938201900015],[58.7192371020001,37.65478281700011],[58.71293257600009,37.64881418900007],[58.70425093600013,37.64462839700015],[58.68172001100018,37.64271637000003],[58.65908573400022,37.64540354500015],[58.61588423700019,37.659511211],[58.56565474400022,37.69485789000002],[58.54932499200012,37.70157582700013],[58.52979130000019,37.700387268],[58.514288371000106,37.691473084000094],[58.50229943900015,37.67739125600014],[58.49310103400015,37.66067393100012],[58.47966516100009,37.64411163400011],[58.46230188000018,37.637497051000125],[58.371764770000176,37.630365703000066],[58.35781213400017,37.633311260000156],[58.331457153000116,37.64829742500014],[58.318848104000175,37.65305165600013],[58.2409200440002,37.66232757600007],[58.22386682200008,37.66746938100006],[58.20681359900007,37.67873484300013],[58.20195601400022,37.69010365800001],[58.2018526620001,37.70395294200007],[58.19926883900021,37.72219472300013],[58.19575484200007,37.72963612900004],[58.17994185400008,37.753045553],[58.179115031,37.760771179000116],[58.181285441000135,37.76792836600005],[58.18118208800009,37.77485300700012],[58.17353397600013,37.78162262000008],[58.15668745900021,37.78818552700015],[58.14056441300008,37.79113108300005],[58.10687137900018,37.79343068500016],[58.0409322510001,37.805703838000014],[57.88414595500009,37.86533844000003],[57.849522746000076,37.87272817000003],[57.83329634600008,37.87174631800015],[57.816449829000106,37.86864573200002],[57.80001672300014,37.86763804200013],[57.785030559000155,37.87257314100019],[57.77913944500008,37.878774312000175],[57.77004439300018,37.89388966900016],[57.76301639900006,37.89939320900008],[57.75474816900012,37.901021016000115],[57.73841841600009,37.897997945],[57.73482715000015,37.898271669000096],[57.729943481000106,37.898643900000145],[57.7171277270002,37.90507761600013],[57.704622030000074,37.913707581000054],[57.69118615700003,37.92027048800004],[57.67609663900006,37.92047719300011],[57.66111047400009,37.91742828400008],[57.61232792200021,37.91660146100004],[57.56137495900006,37.92822865900011],[57.54463179500012,37.92998565700019],[57.5276819250001,37.92784108500011],[57.51207564300009,37.92406870500018],[57.496262654000105,37.9223117070001],[57.35239546700021,37.967528585000174],[57.327074015000136,37.99411611],[57.3468144120001,38.046929424000055],[57.34929488100007,38.06356923400007],[57.344333943000116,38.08106170700013],[57.322939901000176,38.10511708600016],[57.31136438000007,38.13501190200019],[57.27860152200006,38.16294301400008],[57.266922648000076,38.176895651000066],[57.24883589700007,38.21151886100007],[57.22578820800018,38.24236969100015],[57.221550741000065,38.251154684000035],[57.221137329000065,38.258596090000154],[57.218346802000184,38.26508148200004],[57.207288046000166,38.270740052000164],[57.18589400200008,38.276476136000106],[57.17493859900017,38.27756134000013],[57.1639831950001,38.276476136000106],[57.14661991300008,38.26980987600002],[57.13791423900008,38.262364232000024],[57.13483768800009,38.259732971000076],[57.11468387900012,38.232111918000086],[57.10279829900017,38.22200917600013],[57.07044885200011,38.205059306000024],[57.05649621600011,38.19524078400015],[57.03840946500011,38.18728261299999],[57.018048950000065,38.18981475900007],[56.978361450000044,38.20273386600009],[56.827879679000176,38.22495473300013],[56.812376750000084,38.22895965600013],[56.77816695200008,38.244488424000124],[56.73899621600006,38.26960317000005],[56.729384399000224,38.27105011000004],[56.68153202300013,38.2646163940001],[56.60133020000015,38.236866150000154],[56.585207154000074,38.234566549000036],[56.57177128100008,38.239501648000086],[56.559162231000094,38.247382304000105],[56.5452095950001,38.25410024000014],[56.528156372000154,38.25740753200012],[56.43648238100016,38.25508209200002],[56.40010217300007,38.24412668900014],[56.36640913900012,38.22552317400009],[56.30336389200008,38.179427796000155],[56.29705936700006,38.165785217000135],[56.32424117000008,38.14113555900014],[56.32899540200006,38.123772278000146],[56.3254814040001,38.105220439],[56.31545617700007,38.08945912700001],[56.299746541000076,38.080234884],[56.21406701700019,38.068840231000124],[56.19784061700008,38.0706489060001],[56.16674062500013,38.08079215000011],[56.161873820000125,38.08237945600008],[56.12146285000002,38.086461894000095],[55.978422486000085,38.065894674000035],[55.963022909000095,38.06651479100016],[55.949070272000114,38.070080465000146],[55.921888469000095,38.08144928000005],[55.90504195200006,38.08558339500014],[55.85408898900019,38.08599680600015],[55.839412882,38.08992421500012],[55.80034550000019,38.10780426000009],[55.73843713400018,38.118604635000125],[55.7086715090002,38.118656311000144],[55.510957479000155,38.08584177600012],[55.44739546700012,38.083671367000036],[55.42310754400009,38.075894063000035],[55.348796834000126,38.03049631800009],[55.32812626100011,38.02212473600012],[55.30745568800009,38.00879221600009],[55.29608687400011,38.00755198200007],[55.2505082600002,37.99540802000014],[55.228804159000134,37.98579620400015],[55.21970910600012,37.96998321500014],[55.2074101150001,37.96615916000012],[55.1496358640002,37.957477519000136],[55.13030887800008,37.95230987600014],[55.121730591000215,37.94471344],[55.110775187000144,37.92647165900003],[55.103540487000174,37.918797709000145],[55.092791789000074,37.91554209400006],[55.07873579900016,37.913707581000054],[55.06664351400016,37.90843658500013],[55.06137251800013,37.894845683000035],[55.053517701000175,37.88440704300011],[55.00680220600011,37.843091736000176],[54.8566304930001,37.76113291500012],[54.82665816200003,37.735268860000176],[54.81363570200019,37.71862904900014],[54.808158000000134,37.70281606100015],[54.80371382600012,37.682920634000155],[54.78728072100014,37.651863098000106],[54.78831425000012,37.630804952000105],[54.79182824800008,37.625353089000114],[54.80361047300019,37.61692983100012],[54.808158000000134,37.61034108500003],[54.809398234000156,37.60333892900003],[54.808158000000134,37.579283550000085],[54.80505741300007,37.565046692000024],[54.79141483600009,37.539931946000095],[54.78831425000012,37.52463572200004],[54.78366337100007,37.5174526980001],[54.75834191900017,37.500554505000096],[54.71079960100005,37.47569814100013],[54.698293905000156,37.46629303000019],[54.67855350800019,37.459988505000084],[54.65395552600009,37.438904521000055],[54.638969361000164,37.43327179000012],[54.616851847000106,37.43301340700005],[54.55597701000008,37.44360707700004],[54.53334273300007,37.44081654900016],[54.3641540940001,37.362681784000145],[54.32849735500011,37.353276673],[54.3063798420001,37.353224996000066],[54.28333215400013,37.355653789000044],[54.26152469900009,37.3548269650001],[54.24302453600015,37.34495676700011],[54.22452437300014,37.33074574800015],[54.20643762200021,37.32459625299999],[54.186593873000135,37.32374359100008],[53.91374825029047,37.34275359690887],[53.91374759200019,37.34275950700014],[53.91374759200019,37.34300364799999],[53.899668816000116,37.468410549000154],[53.88982181100002,37.50812409100017],[53.87110436300017,37.54779694200009],[53.865244988000114,37.56728750200007],[53.860606316000165,37.61131419499999],[53.82488040500007,37.74485911700015],[53.80713951900006,38.03196849200005],[53.810313347000054,38.04840729400002],[53.823985222000175,38.08152903900016],[53.834157748000194,38.1302757830001],[53.85889733200011,38.20648834800015],[53.85499108200011,38.23371002800015],[53.866465691000116,38.26508209800009],[53.86817467500006,38.30801015800016],[53.863047722,38.38141510600015],[53.861501498000074,38.38934967700014],[53.85254967500006,38.403306382000025],[53.84815514400005,38.41250234600007],[53.84555097700016,38.422308661],[53.84343509200008,38.44269440300009],[53.82829837300008,38.50356679900001],[53.82699629000015,38.52545807500003],[53.836110873000074,38.606146552000055],[53.84742272200006,38.64630768400015],[53.863047722,38.679388739000025],[53.90984134200019,38.737697658000016],[53.92693118600001,38.77366771],[53.91700280000006,38.80353424700017],[53.931976759000094,38.813055731000176],[53.93978925900014,38.8310407570001],[53.94556725400011,38.8513044290001],[53.954600457000225,38.86774323100012],[53.965586785000106,38.88190338700004],[53.97754967500012,38.90176015800013],[53.982758009000094,38.91600169500005],[53.97291100400011,38.91339752800015],[53.97136478000007,38.93427155200011],[53.95801842500006,38.94452545800006],[53.9231876960001,38.95433177299999],[53.92286217500006,38.956040757],[53.918793165000096,38.96478913000006],[53.91700280000006,38.96735260600015],[53.912282748000024,38.96967194200012],[53.89975019600009,38.97284577],[53.896657748000024,38.974188544000086],[53.891774936000076,38.98053620000012],[53.88721764400012,38.98859284100014],[53.88404381600017,38.998114325000145],[53.88233483200017,39.00897858300014],[53.8709416020001,39.02838776200004],[53.859711134000094,39.035223700000145],[53.82081139400012,39.03628164300004],[53.796641472000175,39.04165273600007],[53.78736412900011,39.04246653900018],[53.776866082000055,39.039129950000145],[53.77214603000007,39.03310781500015],[53.76726321700019,39.03099192900014],[53.75635826900012,39.03937409100011],[53.747813347000175,39.05442942900011],[53.728037957000055,39.10138580900014],[53.72185306100018,39.11139557500003],[53.712168816000116,39.104315497000165],[53.71517988400015,39.08856842700011],[53.72413170700005,39.072088934000035],[53.73210696700002,39.062933661000145],[53.73210696700002,39.05670807500009],[53.715993686000076,39.06342194200011],[53.701508009000094,39.078517971000124],[53.69467207100009,39.09711334800012],[53.70533287900011,39.12421295800006],[53.697276238000114,39.142482815000115],[53.69800866000011,39.15232982000008],[53.70394941500015,39.158636786],[53.73210696700002,39.17279694200012],[53.702403191000116,39.17511627800009],[53.70215905000006,39.196234442],[53.72461998800017,39.24168528900016],[53.70394941500015,39.232733466000134],[53.67628014400005,39.216213283000066],[53.6600041020001,39.20038483300014],[53.67408287900017,39.193304755000085],[53.683767123000194,39.083441473],[53.67212975400011,39.098578192],[53.64730879000015,39.12396881700012],[53.63599694100017,39.13865794500013],[53.63135826900006,39.15664297100007],[53.63021894600009,39.17674388200011],[53.623383009000094,39.191636460000055],[53.60173587300019,39.193304755000085],[53.60694420700011,39.20587799700017],[53.61036217500011,39.22190989800004],[53.60857181100013,39.23578522300015],[53.59831790500019,39.24168528900016],[53.592784050000056,39.23505280200011],[53.57667076900012,39.20343659100003],[53.56763756600017,39.193304755000085],[53.563975457000225,39.216701565000065],[53.56869550900015,39.24632396000011],[53.58814537900011,39.30316803600006],[53.56080162900017,39.282660223],[53.577321811000076,39.31671784100003],[53.581309441000116,39.330471096000124],[53.574554884000094,39.32786692900014],[53.55396569100017,39.323675848],[53.56495201900012,39.34516022300012],[53.562022332000105,39.353338934000035],[53.54981530000012,39.348334052],[53.53345787900011,39.330471096000124],[53.52613366000011,39.337876695000105],[53.51482181100019,39.332709052000105],[53.47144616000017,39.330471096000124],[53.452484571000156,39.318060614],[53.44336998800023,39.318793036000145],[53.44410241000016,39.337876695000105],[53.43726647200006,39.337876695000105],[53.429698113000114,39.32786692900014],[53.41879316500015,39.318060614],[53.405121290000096,39.31126536700016],[53.38941491000011,39.31061432500003],[53.39429772200012,39.31704336100013],[53.40316816500015,39.337876695000105],[53.39616946700008,39.33820221600014],[53.382009311000076,39.337103583],[53.375173373000024,39.337876695000105],[53.37378991000017,39.336655992000104],[53.36548912900017,39.33161041900017],[53.36158287900017,39.330471096000124],[53.358571811000076,39.332709052000105],[53.351573113000114,39.342230536000116],[53.3479110040001,39.34414297100007],[53.33464603000019,39.34052155200011],[53.30909264400011,39.33075592700008],[53.29330488400009,39.330471096000124],[53.29330488400009,39.337876695000105],[53.29948978000007,39.34516022300012],[53.29688561300023,39.34906647300012],[53.288259311000076,39.35065338700015],[53.27613366000017,39.350978908000094],[53.26465905000012,39.35285065300015],[53.24952233200011,39.36180247599999],[53.23861738400015,39.364650783000044],[53.218516472000175,39.36383698100012],[53.17017662900017,39.35248444200014],[53.14991295700017,39.34414297100007],[53.18588300900015,39.32636139500009],[53.19776451900005,39.323675848],[53.1795353520001,39.30125560099999],[53.17302493600019,39.28831614799999],[53.17025800900015,39.27216217700011],[53.1721297540001,39.255438544000086],[53.18409264400006,39.21381256700012],[53.18148847700016,39.18935781500009],[53.17188561300006,39.17747630400014],[53.1614689460001,39.17959219000015],[53.13689212300008,39.32143789300012],[53.13054446700002,39.333482164000046],[53.088715040000096,39.383246161000116],[53.085215691000116,39.40045807500003],[53.09473717500012,39.41986725500014],[53.10401451900006,39.429348049000154],[53.132823113000114,39.45058828300013],[53.13746178500011,39.45994700700008],[53.14087975400017,39.47264232000013],[53.14535566500009,39.48395416900011],[53.165537957000225,39.49673086100016],[53.17823326900012,39.51569245000017],[53.214610222000175,39.59349192900007],[53.241709832000105,39.63629791900014],[53.27588951900012,39.664862372000144],[53.313731316000116,39.65884023600013],[53.292735222,39.64984772300012],[53.27735436300005,39.639227606000176],[53.24854576900006,39.607896226000136],[53.24439537900011,39.59967682500003],[53.23519941500009,39.570705471000124],[53.23243248800017,39.567531643000066],[53.21127363400015,39.55019765800007],[53.216970248000024,39.52505117400001],[53.254079623000074,39.521185614],[53.36353600400011,39.538072007],[53.42676842500006,39.53595612200017],[53.44678795700016,39.53058502800003],[53.458750847000175,39.51780833500008],[53.46753991000017,39.50234609600015],[53.478282097000175,39.488714911000116],[53.49219811300022,39.480780341000134],[53.5091251960001,39.47650788000014],[53.55054772200006,39.474514065],[53.567881707000225,39.46771881700006],[53.57715905000006,39.46784088700004],[53.581309441000116,39.477932033000016],[53.58057701900012,39.48798248900008],[53.57740319100011,39.495266018],[53.571299675000056,39.499823309000035],[53.56080162900017,39.50177643400009],[53.573741082000055,39.52728913],[53.586110873000194,39.52387116100009],[53.5994572270001,39.50775788000003],[53.615407748000024,39.49494049700017],[53.63445071700002,39.495306708],[53.66358483200011,39.517320054],[53.683767123000194,39.52220286700016],[53.69288170700011,39.51947663],[53.715993686000076,39.509263414000074],[53.72461998800017,39.508612372000115],[53.7361759770001,39.51788971600014],[53.73316491000017,39.527980861000046],[53.72250410200015,39.53705475500011],[53.711599155000066,39.54340241100006],[53.6893009770001,39.550441799000126],[53.64714603000019,39.55825429900004],[53.62916100400017,39.570705471000124],[53.64527428500011,39.574896552000084],[53.65463300900015,39.58209870000009],[53.655528191000116,39.592922268],[53.64649498800023,39.607896226000136],[53.63306725400017,39.618312893000116],[53.61963951900006,39.620510158000016],[53.571625196000156,39.61640045800005],[53.56820722700015,39.62262604400002],[53.56763756600017,39.642401434000064],[53.56446373800022,39.65265534100017],[53.55648847700016,39.66449616100011],[53.54566491000017,39.67487213700003],[53.53345787900011,39.68048737200003],[53.539724155000066,39.646307684000035],[53.539724155000066,39.63214752800012],[53.53345787900011,39.63214752800012],[53.49708092500012,39.676459052000055],[53.47103925900015,39.69635651200014],[53.44410241000016,39.701076565000065],[53.44776451900012,39.69525788000011],[53.45777428500011,39.67308177300005],[53.45167076900012,39.67666250200001],[53.435883009000094,39.68333567900007],[53.429860873000074,39.686712958],[53.430430535000106,39.66771067899999],[53.449229363000114,39.648586330000015],[53.450938347000175,39.63214752800012],[53.41675866000011,39.649969794000086],[53.41285241000011,39.68569570500012],[53.429860873000074,39.762518622000144],[53.41822350400017,39.75739166900003],[53.405772332000225,39.755804755],[53.39340254000009,39.757513739],[53.382009311000076,39.762518622000144],[53.382009311000076,39.769273179],[53.415212436000076,39.78204987200003],[53.46753991000017,39.83869049700003],[53.499278191000116,39.86554596600011],[53.49382571700008,39.87067291900002],[53.48829186300023,39.88104889500011],[53.48503665500018,39.88540273600002],[53.49382571700008,39.889349677],[53.50269616000011,39.89154694200009],[53.522715691000165,39.892808335],[53.53711998800023,39.89630768400018],[53.5369572270001,39.903753973000065],[53.530772332000225,39.91071198100015],[53.52613366000011,39.912665106000084],[53.53728274800019,39.92487213700018],[53.55274498800023,39.936224677000055],[53.567067905000016,39.94953034100016],[53.5744735040001,39.967922268],[53.56910241000017,39.965562242000075],[53.56641686300006,39.96482982000013],[53.564219597000175,39.96393463700004],[53.56080162900017,39.9610863300001],[53.54363040500007,39.97431061400012],[53.528819207000055,39.976955471000124],[53.491872592000135,39.97475820500013],[53.47494550900015,39.97923411700019],[53.45199629000015,39.99551015800013],[53.43726647200006,40.00267161700016],[53.41960696700007,40.006496486000074],[53.402110222000175,40.00678131700012],[53.38526451900012,40.00307851800006],[53.368907097000175,39.995266018000095],[53.32683353000012,39.95868561400014],[53.31031334700006,39.953599351000136],[53.30567467500012,39.95148346600003],[53.29004967500012,39.942084052],[53.282725457000225,39.940008856000176],[53.274912957000225,39.942084052],[53.257090691000165,39.95148346600003],[53.24854576900006,39.953599351000136],[53.23755944100017,39.95774974200016],[53.17237389400005,39.99746328300007],[53.15528405000012,39.99237702000015],[53.140391472000175,39.981024481000176],[53.12574303500017,39.97475820500013],[53.05355879000015,39.967922268],[53.05925540500007,39.97703685100011],[53.06511478000019,39.9840355490001],[53.072438998000194,39.98981354400014],[53.081716342000014,39.995266018000095],[53.01246178500017,39.97801341400016],[52.97486412900017,39.97431061400012],[52.943695509000094,39.98159414300015],[52.92750084700006,40.011175848],[52.913584832000225,40.02167389500006],[52.89600670700022,40.00885651200004],[52.895843946000156,39.998277085],[52.90308678500017,39.984930731000176],[52.91993248800006,39.964544989],[52.92359459700006,39.952582098000065],[52.93018639400012,39.895941473000065],[52.93604576900006,39.88760000200001],[52.96452884200008,39.85822174700009],[52.97486412900017,39.85187409100017],[53.01254316500015,39.79726797100001],[53.04371178500011,39.77464427300005],[53.05355879000015,39.769273179],[53.05355879000015,39.762518622000144],[53.005869988000114,39.78294505400011],[53.01937910200016,39.775336005000085],[53.04688561300011,39.74823639500015],[53.04004967500006,39.74201080900009],[53.00806725400017,39.76634349200016],[52.99488366000011,39.78021881700014],[52.966319207000225,39.83295319200015],[52.95264733200011,39.846502997000115],[52.91716556100001,39.85834381700006],[52.90528405000006,39.874579169000114],[52.89844811300023,39.89549388200008],[52.89283287900017,39.93423086100002],[52.884125196000156,39.94489166900014],[52.78785241000017,40.00433991100008],[52.753265821000156,40.03196849200019],[52.73845462300008,40.05361562700007],[52.746104363000114,40.09699127800006],[52.75375410200016,40.12107982000007],[52.7619735040001,40.13580963700015],[52.76832116000016,40.15379466400019],[52.75806725400011,40.17251211100016],[52.73096764400012,40.200669664000046],[52.74341881600011,40.20954010600009],[52.73894290500007,40.21938711100002],[52.71778405000006,40.23541901200009],[52.698985222,40.273871161000024],[52.701996290000096,40.312404690000086],[52.73658287900011,40.48456452000015],[52.75025475400017,40.51764557500009],[52.77247155000012,40.550726630000135],[52.83253014400012,40.61456940300015],[52.8631291020001,40.65810781500009],[52.86817467500006,40.694159247000144],[52.8592228520001,40.70001862200009],[52.833181186000076,40.70490143400014],[52.827647332000225,40.711493231000034],[52.82984459700006,40.72064850500011],[52.837575717000014,40.739081122000144],[52.8372501960001,40.742499091000134],[52.83253014400012,40.74555084800015],[52.845225457000055,40.751654364000146],[52.86158287900017,40.75649648600001],[52.86817467500006,40.75556061400012],[52.87037194100017,40.76508209800012],[52.868825717000185,40.77578359600015],[52.86524498800023,40.78510163],[52.86198978000019,40.790350653000175],[52.88550866000017,40.865423895],[52.92335045700011,40.941148179],[52.93132571700008,40.975653387000094],[52.917002800000056,41.044989325000145],[52.91651451900006,41.08515045800006],[52.92725670700011,41.07904694200006],[52.95142662900011,41.068793036000145],[52.96119225400011,41.06098053600006],[52.965505405000016,41.049383856000034],[52.963063998000194,41.03778717700011],[52.95875084700012,41.02651601800012],[52.95818118600002,41.0162621110001],[52.96843509200008,40.99701569200006],[53.01205488400015,40.95477936400012],[53.01986738400014,40.937933661000116],[53.03174889400012,40.89980703300016],[53.04004967500006,40.88593170800006],[53.072032097000175,40.86896393400009],[53.07447350400011,40.865423895],[53.09978274800008,40.86517975500006],[53.111338738000114,40.86709219000012],[53.12191816500015,40.872259833000115],[53.10629316500015,40.858303127000156],[53.0818791020001,40.85150788000011],[53.06470787900017,40.843980210000076],[53.07081139400006,40.827866929000024],[53.0779728520001,40.822211005000106],[53.09400475400011,40.812404690000086],[53.10206139400006,40.803941148000135],[53.10425866000011,40.79490794500013],[53.10425866000011,40.78359609600015],[53.107432488000114,40.77391185099999],[53.11890709700006,40.76984284100003],[53.163259311000076,40.76703522300009],[53.18230228000007,40.768459377000156],[53.20460045700011,40.776068427],[53.249766472000054,40.81256745000006],[53.2658797540001,40.81704336100002],[53.249359571000156,40.790350653000175],[53.24488366000017,40.77496979400014],[53.256032748000194,40.76894765800012],[53.33082116000011,40.776068427],[53.33952884200008,40.780829169000086],[53.3411564460001,40.79197825700011],[53.3411564460001,40.80459219000009],[53.34449303500011,40.81391022300012],[53.3592228520001,40.82977936400006],[53.36996504000015,40.835191148000106],[53.382009311000076,40.831284898000106],[53.38306725400011,40.82558828300013],[53.37598717500006,40.807074286000116],[53.375173373000024,40.79779694200006],[53.38379967500011,40.77830638200008],[53.39869225400017,40.76276276200015],[53.41830488400015,40.75242747600005],[53.44068444100017,40.748724677000105],[53.446950717000135,40.74652741100011],[53.461273634000094,40.73688385600015],[53.47144616000017,40.735052802000084],[53.48308353000007,40.737046617000104],[53.491872592000135,40.74087148600013],[53.50554446700007,40.748724677000105],[53.54167728000019,40.76162344000012],[53.555349155000016,40.773504950000174],[53.56080162900017,40.79401276200004],[53.55909264400006,40.83681875200013],[53.56275475400011,40.85297272300009],[53.58741295700011,40.89158763200005],[53.592784050000056,40.89337799700006],[53.60547936300023,40.89337799700006],[53.61475670700011,40.89154694200006],[53.62468509200019,40.88703034100011],[53.63257897200006,40.881293036000145],[53.63599694100017,40.87604401200015],[53.63892662900011,40.87201569200009],[53.65284264400006,40.86786530200014],[53.656993035000106,40.865423895],[53.657481316000116,40.85907623900009],[53.65455162900017,40.8529320330001],[53.65088951900011,40.84784577000009],[53.64958743600002,40.84491608300006],[53.65512129000015,40.823879299000126],[53.66032962300002,40.816229559000085],[53.67066491000011,40.810777085000055],[53.66211998800023,40.79661692900014],[53.65674889400006,40.78974030200011],[53.64958743600002,40.78351471600016],[53.660980665000096,40.76618073100017],[53.67644290500019,40.72589752800009],[53.69117272200012,40.70783112200017],[53.70118248800006,40.70311107000007],[53.71119225400016,40.70164622600011],[53.71949303500011,40.69830963700018],[53.72461998800017,40.68793366100009],[53.722015821000156,40.68073151200015],[53.70801842500012,40.65900299700017],[53.70476321700008,40.650091864000146],[53.72103925900009,40.625677802],[53.75953209700017,40.625677802],[53.804860873000194,40.63263580900018],[53.8626408210001,40.626166083000086],[53.87916100400011,40.63792552300005],[53.89478600400017,40.65306224200005],[53.9377547540001,40.67161692900005],[53.94776451900012,40.67365143400009],[53.95785566500009,40.672105210000055],[53.98536217500012,40.660589911000116],[54.01075280000006,40.657863674000126],[54.03052819100017,40.66282786700019],[54.04908287900016,40.66998932500003],[54.08033287900011,40.67609284100003],[54.08814537900011,40.68219635600012],[54.09327233200022,40.690090236000074],[54.09522545700011,40.69782135600009],[54.089610222000175,40.69891998900014],[54.063243035000106,40.70848216400013],[54.054209832000105,40.71527741100006],[54.11207116000011,40.713446356000176],[54.14136803500011,40.71686432500009],[54.17107181100002,40.729681708000115],[54.232188347000175,40.728338934000035],[54.235036655000016,40.725734768000116],[54.230479363000114,40.71938711100002],[54.22071373800023,40.695379950000145],[54.21753991000016,40.690252997000144],[54.22169030000011,40.687079169000086],[54.25269616000017,40.676581122000115],[54.40357506600011,40.67365143400009],[54.383962436000076,40.682766018000095],[54.3626408210001,40.68793366100009],[54.37517337300019,40.700913804],[54.414886915000096,40.70872630400008],[54.43043053500011,40.72142161700013],[54.33106530000012,40.720200914000095],[54.3182072270001,40.72162506700009],[54.31055748800017,40.73065827],[54.308116082000225,40.75214264500012],[54.30388431100018,40.770086981000176],[54.28500410200016,40.79743073100006],[54.27857506600017,40.82363515800007],[54.268809441000116,40.83991120000012],[54.266449415000146,40.848334052000055],[54.26832116000011,40.855047919000114],[54.27198326900006,40.85984935100002],[54.27458743600019,40.86489492400012],[54.273285352000094,40.872259833000115],[54.26710045700011,40.874172268000095],[54.257090691000116,40.873114325000024],[54.24830162900017,40.87498607000002],[54.2459416020001,40.88593170800006],[54.25001061300006,40.89061107],[54.257497592000014,40.89142487200009],[54.26612389400006,40.891343492000104],[54.273285352000094,40.89337799700006],[54.299001498000024,40.91608307500008],[54.31251061300011,40.923895575000174],[54.33171634200008,40.926906643000095],[54.36052493600019,40.91705963700015],[54.42115319100017,40.87986888200008],[54.437836134000094,40.879706122000115],[54.46583092500011,40.86595286699998],[54.46876061300023,40.85162995000008],[54.456309441000116,40.835638739],[54.437836134000094,40.81704336100002],[54.474945509000094,40.80988190300015],[54.59066816500015,40.82672760600015],[54.624359571000156,40.836493231000084],[54.639903191000116,40.83877187700007],[54.65756269600015,40.862005927],[54.69955488400015,40.87909577000015],[54.70899498800023,40.88499583500008],[54.74659264400006,40.93268463700004],[54.756032748000074,40.948431708],[54.76002037900011,40.96503327000006],[54.75619550900014,40.98159414300012],[54.74683678500011,40.99567291900017],[54.722015821000156,41.019964911000145],[54.69011478,41.05923086100016],[54.6779891290001,41.064642645],[54.6779891290001,41.07086823100015],[54.7005314460001,41.06830475500006],[54.724375847000175,41.059271552000055],[54.7674259770001,41.036769924000154],[54.76091556100001,41.045477606000034],[54.74097741000017,41.05784739799999],[54.732595248000194,41.064642645],[54.72388756600011,41.07485586100013],[54.7200626960001,41.080471096000124],[54.71843509200008,41.08515045800006],[54.71989993600002,41.09198639500009],[54.724294467000185,41.09804922100007],[54.72925866000017,41.1009789080001],[54.732595248000194,41.09813060100005],[54.716075066000116,41.11517975500011],[54.688731316000116,41.121242580000015],[54.65935306100002,41.124457098000065],[54.63640384200008,41.1329613300001],[54.63502037900016,41.16266510600012],[54.600433790000096,41.19232819200006],[54.40040123800006,41.309027411000145],[54.31177819100017,41.33828359600006],[54.294769727000094,41.34747955900015],[54.25806725400011,41.37596263200005],[54.21143639400011,41.39581940300015],[54.19076582100009,41.40729401200009],[54.18604576900005,41.412543036],[54.17497806100001,41.429388739],[54.15284264400006,41.45425039300012],[54.14478600400011,41.459784247000144],[54.108653191000165,41.46548086100013],[54.089366082000225,41.47479889500009],[54.073985222,41.48798248900012],[54.06104576900012,41.50287506700009],[54.04135175900015,41.53457265800016],[54.03028405000012,41.569484768000066],[54.02588951900006,41.60879140800007],[54.025563998000194,41.695217190000065],[54.019704623000074,41.73151276200018],[54.00855553500016,41.76483795800006],[53.99219811300022,41.79706452],[53.94459069100017,41.85834381700012],[53.936859571000156,41.87620677299999],[53.93230228000019,41.88426341400013],[53.92172285200016,41.88743724199999],[53.91032962300008,41.88930898600016],[53.90284264400012,41.89329661700005],[53.89877363400015,41.90534088700006],[53.901621941000116,41.91461823100009],[53.90691165500007,41.923529364000146],[53.91016686300011,41.934271552000055],[53.90935306100019,41.940619208],[53.904063347000054,41.960516669000086],[53.90284264400012,41.972113348],[53.91480553500011,41.995550848000065],[53.91700280000006,42.00690338700004],[53.9162703790001,42.02350495000008],[53.91325931100019,42.043402411],[53.90691165500007,42.06293366100009],[53.896657748000024,42.07884349200001],[53.86557050900015,42.10175202],[53.818695509000094,42.12441640800012],[53.76791425900014,42.13613515800013],[53.72461998800017,42.12604401200014],[53.681813998000074,42.14394765800013],[53.375173373000024,42.10553620000003],[53.316579623000194,42.082261460000026],[53.2967228520001,42.07884349200001],[53.21973717500012,42.0814476580001],[53.16382897200006,42.10370514500015],[53.12191816500015,42.089992580000015],[53.08448326900012,42.06452057500011],[53.06039472700016,42.044134833000115],[52.960297071000156,41.98436107000008],[52.937022332000225,41.95538971600016],[52.821462436000076,41.76487864800005],[52.8040470710001,41.74485911699999],[52.78956139400006,41.736273505000085],[52.78207441500009,41.72553131700006],[52.773773634000094,41.70132070500007],[52.76921634200007,41.67560455900012],[52.77247155000012,41.66054922100001],[52.78467858200011,41.66307200700011],[52.815684441000116,41.69383372599999],[52.83082116000011,41.70148346600003],[52.88054446700019,41.69790273600016],[52.903819207000105,41.68976471600005],[52.91651451900006,41.674221096000124],[52.915375196000156,41.66079336100013],[52.89991295700011,41.64032623900009],[52.89600670700022,41.629543361000074],[52.89714603000007,41.61945221600011],[52.901866082000055,41.599839585000055],[52.90284264400005,41.58852773600016],[52.89893639400006,41.565985419000086],[52.83269290500007,41.437486070000105],[52.827647332000225,41.41718170800011],[52.815684441000116,41.38873932500009],[52.81348717500012,41.37933991100009],[52.81544030000006,41.36953359600015],[52.827647332000225,41.34463125200001],[52.8372501960001,41.30292389500006],[52.84400475400017,41.240179755000085],[52.85132897200006,41.22357819200011],[52.90398196700008,41.14020416900003],[52.90967858200017,41.12270742400007],[52.904307488000114,41.10199616100006],[52.88306725400011,41.07249583499999],[52.882334832000105,41.05044179900009],[52.87549889400006,41.05044179900009],[52.86996504000015,41.060003973000086],[52.85401451900006,41.07050202000015],[52.84831790500007,41.077704169000086],[52.84669030000012,41.08869049700006],[52.85450280000012,41.11933014500014],[52.85466556100019,41.142523505000085],[52.85108483200011,41.16331614800008],[52.84408613400015,41.18256256700012],[52.8338322270001,41.20123932500009],[52.829274936000076,41.20648834800009],[52.81666100400017,41.21784088700015],[52.81348717500012,41.221747137000065],[52.81104576900006,41.233710028000175],[52.81373131600017,41.25267161699999],[52.81348717500012,41.26264069200009],[52.79127037900017,41.32127513200011],[52.78956139400006,41.33100006700006],[52.77711022200006,41.33954498900009],[52.760996941000165,41.377590236000074],[52.74529056100019,41.386175848],[52.73194420700011,41.388251044000114],[52.72339928500017,41.39423248900012],[52.71908613400015,41.40395742400007],[52.71778405000006,41.41718170800011],[52.71583092500012,41.426418361000074],[52.7102970710001,41.432277736000046],[52.69361412900016,41.444525458],[52.68238366000016,41.45034414300015],[52.65593509200008,41.45335521000005],[52.646250847,41.458197333000115],[52.611664259000094,41.49237702000012],[52.593923373000024,41.50263092700014],[52.57536868600001,41.50873444200012],[52.56218509200008,41.51947663000014],[52.56023196700002,41.54385000200001],[52.56348717500006,41.54621002800015],[52.584157748000194,41.574611721000096],[52.58773847700016,41.582709052000105],[52.58863366000016,41.59418366100006],[52.58757571700019,41.61615631700006],[52.589121941000116,41.62319570500012],[52.595225457000225,41.633734442],[52.59555097700016,41.64004140800013],[52.59253991000016,41.645738023000135],[52.58773847700016,41.649562893000116],[52.58301842500006,41.65200429900007],[52.58073978000019,41.653713283000066],[52.57252037900017,41.67377350500014],[52.56714928500011,41.68170807500008],[52.56023196700002,41.68781159100008],[52.55290774800014,41.68964264500006],[52.53663170700011,41.68793366100006],[52.52955162900011,41.69122955900009],[52.51986738400014,41.70209381700009],[52.514496290000096,41.706935940000065],[52.49878991000011,41.71210358300005],[52.483571811000076,41.726263739],[52.47461998800023,41.72943756700006],[52.45020592500006,41.73480866100011],[52.437673373000194,41.748846747000144],[52.43767061734431,41.74887574142436],[52.4788428140001,41.780344951000146],[52.63144331900017,41.89423980700009],[52.76435510300009,41.99348439500007],[52.76466516100018,41.993587748],[52.76466516100018,41.99376861600014],[52.97870894400015,42.12662872300014],[53.13508182800015,42.167840678000125],[53.19171919800013,42.19303293899999],[53.41227421000022,42.25817108200009],[53.4784200440001,42.268661398000134],[53.654429972000145,42.29248423300011],[53.807598917000035,42.31307729100011],[54.04717085800015,42.34540089900018],[54.12261844900016,42.337597758000136],[54.1952755130001,42.318064067000144],[54.35051151600007,42.240911153000084],[54.51897668400014,42.15727284700007],[54.6196423750001,42.10719838500016],[54.73829146300013,42.048209737000136],[54.9070666910001,41.932144471000086],[54.930837850000074,41.909225973000055],[54.940759725000156,41.88961476700014],[54.94055301900019,41.872716574000044],[54.93641890400008,41.85527577800012],[54.93497196400008,41.833726706000064],[54.94024296100011,41.813598735000184],[54.950681600000024,41.795563660000184],[55.05475793500014,41.690014547000104],[55.1000264890001,41.644151714000046],[55.16493208800014,41.5574644980001],[55.22839074800018,41.47281850200001],[55.259189901000155,41.44465484600015],[55.29412316900007,41.42150380500006],[55.35675500500005,41.38905100500012],[55.37256799300004,41.37556345700006],[55.38466027800004,41.35856191000014],[55.41266890400007,41.30791900700008],[55.42951542100016,41.290814107000145],[55.45028934800009,41.27887685200001],[55.478297974000185,41.266784567000016],[55.509303834000114,41.258878073000155],[55.6354976810002,41.26435577400015],[55.69440881400013,41.28156402600002],[55.787323039000086,41.29169260700009],[55.876619914000145,41.3245071410001],[55.910106242000126,41.32662587600008],[55.978422486000085,41.32171661400004],[56.14068648300005,41.31515370700005],[56.32682499200015,41.30745391900017],[56.53372131600017,41.298968795000015],[56.57001428200013,41.297480367000055],[56.79346317600002,41.28833363900016],[56.88792769400018,41.273347474],[57.010194132,41.25412384100018],[57.029521118000076,41.262598776000075],[57.06032027200015,41.30492177399999],[57.08006066900012,41.32202667200011],[57.12667281100008,41.33959666],[57.14796350100008,41.35106882700001],[57.159228963,41.36114573200013],[57.161399374000126,41.3679670210001],[57.1537512610001,41.37235951800001],[57.103625122000125,41.381609599000015],[57.08832889800007,41.38729400700005],[57.074169555000104,41.39499379500013],[57.052258748000064,41.413597311],[57.03303511500022,41.438246969000105],[57.0195992430001,41.46594553700013],[57.01505171700015,41.493644104000154],[57.01577518700006,41.52899078400016],[57.01205448400005,41.557826233000085],[57.00058231600022,41.58402618400011],[56.978361450000044,41.61146637000017],[56.96048140500013,41.64720062300007],[56.96161828600012,41.67872324700015],[56.96947310400017,41.71089182499999],[56.97195357300015,41.74853810600003],[56.949836059000205,41.82749969500016],[56.950146118000106,41.866050314000134],[56.978361450000044,41.89511830600004],[57.07437626100008,41.928785503000185],[57.11551070200002,41.952091573000025],[57.15292443900009,41.99348439500007],[57.15292443900009,41.993742778000055],[57.20780481000011,42.07055979400012],[57.28821333800008,42.129419251000016],[57.382264445,42.16362904900011],[57.4782792560002,42.16652293],[57.61976932800017,42.1481777960001],[57.66627811700019,42.155102438000156],[57.72157189900012,42.17533376100009],[57.740898885000064,42.1787444050001],[57.80921512900014,42.17639312800016],[57.82843876200016,42.179545390000115],[57.850452922,42.19143096900014],[57.84735233600011,42.20091359500013],[57.83453658100021,42.21163645400004],[57.82730188000002,42.227371928000125],[57.83546675700003,42.240446066000075],[57.873707316000065,42.24964447000014],[57.88807336400007,42.26158172700012],[57.92879439300011,42.33093149800005],[57.937476033000074,42.35423757000008],[57.935719035000176,42.3698180140001],[57.91432499200019,42.403950297],[57.90864058400015,42.43043446899999],[57.92559045400011,42.44110565300009],[57.952772258000124,42.450071513000026],[57.97830041500018,42.47177561500003],[57.98708540800007,42.48342865000008],[57.99773075300007,42.4934280400001],[58.01602421000021,42.499706726000014],[58.03824507700008,42.50278147400014],[58.060879354000086,42.5022647090001],[58.079896281000096,42.49730377200014],[58.094365682000074,42.48671010400007],[58.11720666500011,42.46151784300004],[58.133226360000066,42.45456736200005],[58.14945275900006,42.45567840600013],[58.18572961400012,42.4672539270001],[58.20381636600016,42.46950185100009],[58.22572717300008,42.4665821330001],[58.3250492760001,42.43185557000008],[58.35894901600008,42.413407085000145],[58.384683879000164,42.387827251000104],[58.39491581300015,42.352248027000044],[58.391505168000116,42.33398040800007],[58.38613081800005,42.31684967100013],[58.38582076000009,42.301320903000104],[58.39760298700011,42.287859192000056],[58.41393273900022,42.284758607000114],[58.478218221000105,42.291993307000084],[58.490620565000164,42.297574361],[58.49413456200014,42.30571339900011],[58.48958703600007,42.31452423100011],[58.478218221000105,42.32232737200012],[58.437910604000216,42.35769989000012],[58.363703247000075,42.44707428000011],[58.33703820800022,42.493712260000095],[58.306239054000095,42.528671367000086],[58.27099572800009,42.54903188100012],[58.145732056000064,42.592569276000134],[58.1270251870001,42.604997457000124],[58.121340780000224,42.62424692800015],[58.13064253700017,42.63884552000012],[58.14883264200008,42.64899993900018],[58.18655643700006,42.661195578],[58.23957645700014,42.68514760400011],[58.258283325000065,42.68951426200009],[58.28267460200007,42.68891998300001],[58.39057499200007,42.65667389000005],[58.44183801300019,42.647837220000056],[58.49320438600009,42.645460104],[58.53454553200017,42.65450348000017],[58.55573287000007,42.68359731000008],[58.56937544700017,42.768501689000125],[58.5878756110001,42.791187643000015],[58.612266887,42.780852356000096]]]]}},{"type":"Feature","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"East Timor","sov_a3":"TLS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"East Timor","adm0_a3":"TLS","geou_dif":0,"geounit":"East Timor","gu_a3":"TLS","su_dif":0,"subunit":"East Timor","su_a3":"TLS","brk_diff":0,"name":"Timor-Leste","name_long":"Timor-Leste","brk_a3":"TLS","brk_name":"Timor-Leste","brk_group":null,"abbrev":"T.L.","postal":"TL","formal_en":"Democratic Republic of Timor-Leste","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Timor-Leste","name_alt":"East Timor","mapcolor7":2,"mapcolor8":2,"mapcolor9":4,"mapcolor13":3,"pop_est":1131612,"gdp_md_est":2520,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"TT","iso_a2":"TL","iso_a3":"TLS","iso_n3":"626","un_a3":"626","wb_a2":"TP","wb_a3":"TMP","woe_id":23424968,"woe_id_eh":23424968,"woe_note":"Exact WOE match as country","adm0_a3_is":"TLS","adm0_a3_us":"TLS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TLS.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.35455896000016,-9.364181823999871],[124.34789270000024,-9.374620462999815],[124.34541223200009,-9.404179381999839],[124.34174320500007,-9.411827493999821],[124.33207971200014,-9.425470071999825],[124.32861739100011,-9.43301483199987],[124.32882409700008,-9.439836119999825],[124.3333716230002,-9.457199401999844],[124.3323380950002,-9.466604511999888],[124.32355310100004,-9.48035044399984],[124.31006555200018,-9.488722025999905],[124.29306400600015,-9.493062844999884],[124.27384037300013,-9.49492319699989],[124.26159305900009,-9.497920429999809],[124.2575106210002,-9.501227721999896],[124.25658044500015,-9.499367370999892],[124.25337650600008,-9.486448261999882],[124.25337650600008,-9.480557148999893],[124.25689050300004,-9.462883808999889],[124.2575106210002,-9.455442402999864],[124.25399662300005,-9.438699238999916],[124.24686527500009,-9.421542662999855],[124.23715010600013,-9.405212910999822],[124.22578129100017,-9.391570332999905],[124.21069177300014,-9.378857930999857],[124.19746260600006,-9.37317352299982],[124.1836133230001,-9.373896992999901],[124.16723189300014,-9.380614928999833],[124.15379602100019,-9.391880391999806],[124.13374556500015,-9.419268899999835],[124.12108483900012,-9.426917012999823],[124.09028568500005,-9.421542662999855],[124.06269047000015,-9.397874856999834],[124.03003991000011,-9.341973565499856],[124.04835045700004,-9.337009372999859],[124.12916100400017,-9.304945570999877],[124.14673912900001,-9.30291106599985],[124.15935306100017,-9.29648202899993],[124.18132571700018,-9.265394789999917],[124.19076582100004,-9.255140882999811],[124.22120201900005,-9.24114348799985],[124.28777103000007,-9.22079843499985],[124.38575280000005,-9.202325127999828],[124.39682050900004,-9.196465752999885],[124.40528405000018,-9.185316664999858],[124.42514082100016,-9.181573174999825],[124.45020592500006,-9.180271091999927],[124.4505314460001,-9.180189710999855],[124.45150394800018,-9.20057423899982],[124.43662113400013,-9.255868021999845],[124.43181522700014,-9.290801289999832],[124.42793949400017,-9.299482929999883],[124.42478723200023,-9.303513691999797],[124.42091149900008,-9.306924336999913],[124.40168786600023,-9.331832376999884],[124.37187056500008,-9.357050475999841],[124.36262048400025,-9.362011413999879],[124.35807295800012,-9.362218118999834],[124.35455896000016,-9.364181823999871]]],[[[127.08887780000012,-8.362725518999838],[127.11361738399997,-8.365004164999903],[127.13795006600016,-8.362725518999838],[127.15552819100012,-8.354180596999896],[127.18628991000016,-8.332452080999843],[127.19312584700018,-8.329766533999859],[127.20606530000013,-8.332614841999899],[127.21094811300004,-8.339043877999899],[127.21363366000004,-8.34783294099988],[127.22038821700019,-8.357598565999822],[127.24154707099999,-8.370212497999887],[127.2868758470001,-8.382419528999876],[127.30600019600016,-8.395196221999825],[127.31324303500011,-8.415215752999885],[127.30323326900012,-8.432305596999825],[127.230153842,-8.486586195999863],[127.18433678500004,-8.532321872999873],[127.09262129000017,-8.60312265399989],[127.02800540500019,-8.665459893999866],[127.02116946700018,-8.675713799999897],[127.00928795700021,-8.676690362999864],[126.93921959700006,-8.692152601999894],[126.87484785200016,-8.73845794099988],[126.84620201900006,-8.752536716999913],[126.69418379000014,-8.763441664999888],[126.6723738940001,-8.768649997999887],[126.66065514400012,-8.774183851999808],[126.63135826900013,-8.795830987999892],[126.6240340500001,-8.799004815999865],[126.61548912900017,-8.80087655999992],[126.59351647200006,-8.802015882999868],[126.58326256600007,-8.805840752999885],[126.54411868600019,-8.850274346999896],[126.5078231130001,-8.91187916499993],[126.47242272200016,-8.94280364399988],[126.43018639400023,-8.954685153999932],[126.16586347700003,-8.988376559999935],[126.13795006600017,-8.999932549999867],[126.12191816499998,-9.006524346999838],[126.04753665500012,-9.057305596999882],[125.94711347700016,-9.125746351999851],[125.92847741000017,-9.131605726999894],[125.86963951900006,-9.122653903999861],[125.84986412900017,-9.124200127999899],[125.83871504000014,-9.130059502999856],[125.81690514400005,-9.148207289999943],[125.80518639400012,-9.152113539999931],[125.7636824880001,-9.152113539999931],[125.74268639400016,-9.157321872999844],[125.67855879000003,-9.193047783999873],[125.66016686300017,-9.193536065999865],[125.60938561300011,-9.186211846999852],[125.5930281910001,-9.189629815999865],[125.57260175900004,-9.20574309699984],[125.55209394600014,-9.217217705999872],[125.48796634200018,-9.240817966999913],[125.3787541020001,-9.281019789999903],[125.34278405000012,-9.30291106599985],[125.29127037900005,-9.345472914999888],[125.2636824880001,-9.357354424999855],[125.25147545700024,-9.371514580999872],[125.23292076900022,-9.399183851999865],[125.22201582100016,-9.411065362999821],[125.21111087300008,-9.419610283999845],[125.19662519600003,-9.42473723799985],[125.14991295700023,-9.428155205999857],[125.13054446700002,-9.433770440999865],[125.11361738400015,-9.444431247999887],[125.09644615999999,-9.46119557099982],[125.06162548343504,-9.485765301020919],[125.05093075400012,-9.424696842999893],[125.04629968300013,-9.409863788999886],[125.02376875800009,-9.374723815999843],[125.02278690600022,-9.367695820999828],[125.02480228700009,-9.35198618499986],[125.0234070240002,-9.345578307999816],[125.01787764500008,-9.338963724999829],[124.99669030800013,-9.325837910999851],[124.9728157960002,-9.30465057299989],[124.96599450700008,-9.29338511199984],[124.96015507000017,-9.27602182999982],[124.95410892800022,-9.241501973999931],[124.95793298400011,-9.211943053999903],[124.97446944200017,-9.191892598999857],[125.00723230100019,-9.186104837999878],[125.02769616800006,-9.18631154399985],[125.03451745600002,-9.188171895999844],[125.04144209800009,-9.193236185999822],[125.05337935400021,-9.206672057999866],[125.05968387900022,-9.210496113999824],[125.07394657400013,-9.211322936999835],[125.08257653800014,-9.20553517699986],[125.09146488400008,-9.196750182999878],[125.10696781400011,-9.188481953999839],[125.11792321800023,-9.187551777999872],[125.14252120000006,-9.189102070999809],[125.15063440000013,-9.185381367999879],[125.15389001500014,-9.175769550999872],[125.15265373200016,-9.1708244189999],[125.15120284100013,-9.165020852999858],[125.14696537300009,-9.154478861999806],[125.14500166900021,-9.14517710399987],[125.16200321400007,-9.08233856199989],[125.16236495000024,-9.060634460999891],[125.15399336800023,-9.040790709999897],[125.1394206140001,-9.024771015999846],[125.12133386200017,-9.011851907999839],[125.10252364200008,-9.001309915999867],[125.09528894100012,-8.994798684999807],[125.09151656100019,-8.98859751399982],[125.0868140060002,-8.986220397999872],[125.07647871900011,-8.990767923999911],[125.07301639900007,-8.996452331999862],[125.06857222500015,-9.01588266999984],[125.06531661000017,-9.023220723999827],[125.05182906100012,-9.035002949999836],[125.00444177300014,-9.0555701699999],[124.9789136150001,-9.072003274999886],[124.96589115400016,-9.077274271999912],[124.94785608000014,-9.078514505999848],[124.93302494300022,-9.074483743999863],[124.92129439300007,-9.065492044999814],[124.91297448700018,-9.052779641999862],[124.9079101970001,-9.037483418999898],[124.90915043100013,-9.02032684299985],[124.92248295100015,-8.986323750999901],[124.91950720677637,-8.962015499916774],[124.91952558700004,-8.962009372999844],[124.95378665500002,-8.942640882999825],[124.97478274800008,-8.922133070999863],[125.02320397200018,-8.84905364399988],[125.02759850400005,-8.833672783999845],[125.03687584700012,-8.824802341999884],[125.08171634200002,-8.808363539999888],[125.09644615999999,-8.795830987999892],[125.10035241,-8.778252862999864],[125.1064559250001,-8.688734632999882],[125.115000847,-8.665948174999855],[125.12794030000022,-8.645603122999859],[125.14429772200005,-8.631442966999842],[125.16431725400001,-8.624769789999888],[125.2101343110002,-8.617771091999899],[125.22925866000017,-8.607517184999878],[125.2373153000001,-8.60556405999992],[125.27393639400022,-8.610935153999888],[125.28516686300021,-8.6078427059999],[125.314789259,-8.590427341999842],[125.38103274800007,-8.571465752999828],[125.40113365999999,-8.569268487999835],[125.46697024800007,-8.573663018999824],[125.48747806100002,-8.569268487999835],[125.54151451900012,-8.54501718499985],[125.56592858200005,-8.542087497999916],[125.59180748800006,-8.54957447699988],[125.60352623800006,-8.548923434999935],[125.63086998800023,-8.521579684999864],[125.64926191499998,-8.52955494599982],[125.678884311,-8.530368747999928],[125.73316491000016,-8.521579684999864],[125.85059655000006,-8.483819268999895],[125.89771569100016,-8.481133721999825],[126.002207879,-8.49944426899988],[126.04224694100004,-8.518812757999811],[126.06910241000007,-8.521579684999864],[126.09107506600006,-8.517185153999876],[126.13347415500002,-8.50400155999992],[126.14185631600016,-8.502862237999892],[126.15503991000006,-8.501071872999901],[126.20004316500003,-8.500420830999857],[126.2402449880001,-8.494805596999868],[126.260915561,-8.484551690999837],[126.30502363400002,-8.4535458309999],[126.33692467500023,-8.444431247999916],[126.37012780000023,-8.425957940999893],[126.38119550899998,-8.424086195999834],[126.40113366000016,-8.423760674999896],[126.41163170700021,-8.41912200299987],[126.42969811300006,-8.432224216999842],[126.45093834700005,-8.440687757999882],[126.47396894600004,-8.44548919099988],[126.49732506599999,-8.447035414999917],[126.51197350400007,-8.45208098799985],[126.5488387380001,-8.486748955999829],[126.59009850400005,-8.472914320999834],[126.66684003999998,-8.436944268999852],[126.693125847,-8.429864190999893],[126.71208743600013,-8.416599216999856],[126.72022545700021,-8.412855726999837],[126.7312931650001,-8.412774346999853],[126.74830162900005,-8.41806405999992],[126.75554446700006,-8.41912200299987],[126.79932701900023,-8.410088799999869],[126.84213300900004,-8.391045830999872],[126.944590691,-8.318617445999832],[126.96705162899998,-8.309014580999857],[126.98389733200011,-8.312920830999857],[126.99927819100004,-8.324151299999853],[127.06959069100017,-8.357598565999822],[127.08887780000012,-8.362725518999838]]],[[[125.5830184250001,-8.314385674999825],[125.57357832099997,-8.317315362999835],[125.56934655000006,-8.312920830999857],[125.562754754,-8.309177341999913],[125.53052819100017,-8.299493096999868],[125.51758873800021,-8.292168877999856],[125.50709069100017,-8.280368747999887],[125.50367272200018,-8.270765882999811],[125.50635826900022,-8.261000257999868],[125.51417076900023,-8.247735283999845],[125.52662194100017,-8.235772393999909],[125.56202233200004,-8.209161065999865],[125.56934655000006,-8.196384372999916],[125.58025149800008,-8.178969007999854],[125.60515384200019,-8.153008721999868],[125.63249759200006,-8.135023695999834],[125.65064537900015,-8.14283619599982],[125.64210045700021,-8.174737237999835],[125.60352623800006,-8.268812757999866],[125.59669030000023,-8.299248955999829],[125.59229576900017,-8.307305596999852],[125.5830184250001,-8.314385674999825]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Turkey","sov_a3":"TUR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Turkey","adm0_a3":"TUR","geou_dif":0,"geounit":"Turkey","gu_a3":"TUR","su_dif":0,"subunit":"Turkey","su_a3":"TUR","brk_diff":0,"name":"Turkey","name_long":"Turkey","brk_a3":"TUR","brk_name":"Turkey","brk_group":null,"abbrev":"Tur.","postal":"TR","formal_en":"Republic of Turkey","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Turkey","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":8,"mapcolor13":4,"pop_est":76805524,"gdp_md_est":902700,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"TU","iso_a2":"TR","iso_a3":"TUR","iso_n3":"792","un_a3":"792","wb_a2":"TR","wb_a3":"TUR","woe_id":23424969,"woe_id_eh":23424969,"woe_note":"Exact WOE match as country","adm0_a3_is":"TUR","adm0_a3_us":"TUR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TUR.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[26.04004967500012,39.84503815300015],[26.0462345710001,39.84406159100017],[26.051117384000065,39.84406159100017],[26.05551191500004,39.84271881700009],[26.060557488000086,39.83759186400009],[26.07715905000012,39.84467194200012],[26.083018425000088,39.834947007],[26.081716342000078,39.799994208000086],[26.07496178500014,39.78489817900008],[26.059092644000117,39.786078192],[26.026540561000047,39.803412177],[25.99708092500006,39.814154364],[25.983653191000087,39.82208893400015],[25.978037957000083,39.834173895000056],[25.98601321700005,39.842230536],[26.004242384000122,39.8452009140001],[26.04004967500012,39.84503815300015]]],[[[25.963063998000052,40.15713125200013],[25.972911004000053,40.15322500200013],[25.99097741000008,40.15745677300005],[26.005869988000143,40.166571356000034],[26.01221764400006,40.166571356000034],[26.01221764400006,40.146063544000086],[25.990244988000143,40.13690827],[25.967784050000144,40.130764065000115],[25.900401238000143,40.12274811400009],[25.856293165000068,40.107855536000116],[25.76596113400006,40.0971540390001],[25.745290561000044,40.098293361000124],[25.721202019000117,40.10480377800003],[25.709320509000065,40.10993073100014],[25.704356316000116,40.11530182500012],[25.66325931100002,40.126166083],[25.66325931100002,40.13239166900014],[25.6862085300001,40.160834052000084],[25.71900475400011,40.18720123900005],[25.759043816000144,40.20673248900014],[25.82691491000014,40.21662018400015],[25.913340691000144,40.24127838700015],[25.92595462300002,40.2428246110001],[25.938243035000085,40.241644598000065],[25.9446720710001,40.23700592700014],[25.950043165000068,40.22964101800015],[25.957855665000036,40.22308991100006],[25.971853061000104,40.221136786000116],[25.971853061000104,40.21434153900018],[25.969248894000117,40.20600006700012],[25.967295769000145,40.193264065000065],[25.96753991000011,40.180609442],[25.971853061000104,40.17275625200001],[25.963063998000052,40.15713125200013]]],[[[27.63510175900009,40.46678294500008],[27.645192905000073,40.45986562700007],[27.653086785000113,40.46039459800015],[27.65699303500011,40.45750560100011],[27.65658613400012,40.44944896000008],[27.645681186000047,40.44782135600014],[27.631521030000012,40.453762111000074],[27.614919467000078,40.456732489],[27.596364780000073,40.457993882],[27.582041863000086,40.465521552000055],[27.579925977000073,40.476548570000105],[27.590830925000034,40.4838727890001],[27.59913170700011,40.49652741100008],[27.60726972700013,40.50543854400003],[27.640472852000045,40.49412669500013],[27.642100457000083,40.48725006700012],[27.636729363000114,40.478338934000085],[27.63510175900009,40.46678294500008]]],[[[27.631358269000145,40.66347890800013],[27.6575626960001,40.65314362200003],[27.673350457000137,40.65643952000006],[27.702403191000116,40.653021552000055],[27.727793816000144,40.64264557500014],[27.73267662900011,40.62518952],[27.7142033210001,40.61469147300012],[27.67644290500004,40.61017487200017],[27.6575626960001,40.605414130000085],[27.62452233200014,40.58307526200015],[27.604746941000116,40.5768089860001],[27.582530144000142,40.58429596600017],[27.571543816000087,40.584662177],[27.55176842500009,40.591050523000106],[27.535980665000125,40.60199616100009],[27.538910352000045,40.62335846600003],[27.53207441500012,40.630682684000035],[27.52637780000006,40.63910553600009],[27.53101647200009,40.650091864000146],[27.53882897200006,40.656927802000055],[27.545909050000034,40.66034577000006],[27.55152428500014,40.65770091400016],[27.55453535200013,40.64691803600009],[27.57943769600007,40.656480210000055],[27.60523522200009,40.663275458],[27.631358269000145,40.66347890800013]]],[[[27.33247074400009,42.05743398100004],[27.374845418000092,42.008703105],[27.396859578000086,41.98932444300014],[27.420837443000096,41.97371816000002],[27.494321330000048,41.94284149200011],[27.50946252400007,41.93317799900008],[27.533182007000107,41.90806325300015],[27.54641117300011,41.90116444900018],[27.562740926000057,41.906435445],[27.548891642000083,41.91087961900003],[27.55126875800005,41.91310170500013],[27.55746993000011,41.91550465900018],[27.560673869000084,41.91767507000016],[27.557935018000133,41.91907033400004],[27.55488610800012,41.9203364050001],[27.552095581000057,41.92183502199999],[27.55075199400008,41.924212138000044],[27.572197713000033,41.92984486900018],[27.582377970000096,41.93488332200006],[27.59054284700011,41.942893169000016],[27.59808760600006,41.938604025000146],[27.60335860200007,41.938629863000145],[27.60687259900004,41.94351328500009],[27.609301392000106,41.953486837000085],[27.687074422000137,41.96860219300011],[27.723971395000063,41.967594503000115],[27.776164592000043,41.946122945000084],[27.78980717000013,41.94268646300016],[27.802829631000094,41.943074036000084],[27.81533532700007,41.946794739],[27.818280884000075,41.95286672000013],[27.802726278000137,41.960049744000074],[27.804896687000053,41.96989410400006],[27.80494836400007,41.983433329000135],[27.807997274000083,41.99348439500007],[27.81192468200007,41.99469879200011],[27.81595544500004,41.99513804200002],[27.819934529000136,41.99469879200011],[27.824016968000137,41.99348439500007],[27.843033895000104,41.99575815900009],[27.85223230000011,41.995448100000104],[27.87693363400012,41.99071970700011],[27.903391968000104,41.981056213],[27.91703454600011,41.977903951000044],[27.965920451000102,41.98214141900008],[27.981009969000098,41.97852406900002],[28.016783431046946,41.97253145701354],[28.03060957100007,41.924546617000104],[28.030935092000075,41.913763739],[28.03589928500014,41.911200262000094],[28.04232832100004,41.90485260600015],[28.046560092000078,41.89712148600013],[28.04493248800014,41.89020416900014],[28.03581790500007,41.88589101800015],[28.02564537900011,41.88735586100002],[28.00700931100002,41.89329661700005],[27.990570509000122,41.89276764500006],[27.97754967500003,41.88735586100002],[27.969086134000094,41.87376536700005],[27.966075066000087,41.84894440300009],[27.972015821000127,41.82225169499999],[27.98682701900009,41.80402252800009],[28.004893425000034,41.78856028900016],[28.02125084700012,41.77041250200007],[28.040212436000047,41.72540924700009],[28.051768425000063,41.712062893000066],[28.07007897200012,41.69940827],[28.078461134000094,41.691961981000034],[28.083262566000087,41.68154531500012],[28.0857853520001,41.679754950000145],[28.08838951900009,41.676906643],[28.08961022200012,41.67080312700013],[28.0870874360001,41.667059637000094],[28.08155358200008,41.667385158000016],[28.07667076900009,41.666815497000144],[28.07593834700006,41.66054922100001],[28.083343946000067,41.64492422100001],[28.09717858200014,41.62669505400014],[28.11329186300011,41.61155833500014],[28.141856316000112,41.59894440300015],[28.15650475400011,41.584377346000124],[28.177744988000114,41.558172919000086],[28.232758009000094,41.518988348000065],[28.38428795700011,41.447455145000035],[28.600840691000087,41.37750885600009],[28.908457879000107,41.26654694200009],[29.007578972000058,41.2496605490001],[29.012868686000047,41.248114325000145],[29.01514733200011,41.24579498900008],[29.01783287900008,41.243719794000135],[29.024261915000096,41.242824611000074],[29.031993035000113,41.24494049700017],[29.038259311000072,41.254339911],[29.045176629000082,41.256415106000034],[29.068695509000122,41.253729559000064],[29.093923373000077,41.24640534100014],[29.10922285200013,41.23529694200003],[29.09986412900011,41.210394598000065],[29.086761915000036,41.19188060100005],[29.06934655000006,41.17470937700013],[29.05225670700011,41.167141018000095],[29.040782097000086,41.16429271000014],[29.04330488400009,41.15766022300009],[29.051442905000016,41.149847723000086],[29.05738366000014,41.141546942],[29.063731316000084,41.134466864000146],[29.065684441000112,41.1329613300001],[29.07064863400006,41.130194403000026],[29.068695509000122,41.124457098000065],[29.064463738000114,41.119574286],[29.06226647200012,41.11933014500014],[29.05860436300014,41.099595445000105],[29.051524285000085,41.08177317900014],[29.042165561000076,41.06635163000011],[29.031504754000135,41.053859768],[29.02328535200013,41.04881419500008],[29.00554446700005,41.04450104400017],[28.997325066000144,41.03986237200006],[28.989512566000144,41.03107330900018],[28.988047722000086,41.025783596],[28.98853600400008,41.02163320500016],[28.98959394600013,41.0170759140001],[28.992523634000065,41.013657945000105],[28.99236087300008,41.00820547100007],[28.986501498000052,41.002630927000055],[28.981944207000108,41.00165436400009],[28.960459832000083,41.00299713700015],[28.95183353000007,41.00861237200017],[28.946136915000093,41.00946686400009],[28.9404403,41.006822007],[28.931651238000146,40.99774811400008],[28.928396030000098,40.995794989000146],[28.91749108200011,40.99359772300015],[28.899261915000125,40.98427969],[28.859548373000024,40.978013414000046],[28.849945509000065,40.975287177],[28.844248894000057,40.97190989800008],[28.840017123000056,40.96767812700013],[28.83375084700009,40.96393463700012],[28.82203209700012,40.961615302000055],[28.797618035000138,40.962551174000126],[28.785980665000064,40.965643622000115],[28.78101647200009,40.971869208000086],[28.770192905000098,40.97931549700014],[28.745290561000076,40.98016998900006],[28.62525475400014,40.96841054900007],[28.595225457000083,40.977972723000065],[28.603526238000086,41.00946686400009],[28.591807488000086,41.01886627800009],[28.584808790000096,41.02204010600015],[28.57553144600007,41.02366771],[28.582530144000117,41.04637278900013],[28.57243899800008,41.066473700000174],[28.551931186000104,41.08051178600011],[28.52784264400009,41.08515045800006],[28.532888217000018,41.07062409100003],[28.5545353520001,41.05365631700015],[28.562510613000057,41.036769924000154],[28.562836134000094,41.02667877800009],[28.560313347000086,41.012274481000034],[28.553558790000125,40.99835846600014],[28.541351759000065,40.989569403000175],[28.512461785000138,40.99266185100008],[28.46070397200012,41.032863674000154],[28.43531334700009,41.04291413000014],[28.402191602000073,41.047308661000116],[28.332774285000138,41.06655508000016],[28.29810631600014,41.07086823100015],[28.264008009000065,41.07086823100015],[28.255869988000114,41.07318756700012],[28.244965040000068,41.08295319200006],[28.236664259000065,41.08515045800006],[28.199473504000082,41.07855866100009],[28.18165123800011,41.077704169000086],[28.174733920000108,41.08083730700015],[28.165293816000084,41.08515045800006],[28.117442254000082,41.07123444200008],[28.110036655000073,41.067775783000066],[28.100271030000044,41.067816473000065],[28.04493248800014,41.05044179900009],[28.030121290000064,41.04759349200005],[28.013031446000124,41.04071686400014],[27.99732506600006,41.032049872000144],[27.986582879000135,41.02366771],[27.964366082000083,40.99628327000012],[27.957774285000113,40.98330312700013],[27.959239129000082,40.975287177],[27.94125410200013,40.97109609600015],[27.8606876960001,40.97846100500006],[27.845713738000143,40.986070054],[27.831553582000108,40.995103257],[27.815277540000096,41.002630927000055],[27.77613366000014,41.010972398000135],[27.73780358200011,41.01264069200015],[27.524180535000053,40.98920319200006],[27.493174675000034,40.975287177],[27.4716903,40.941839911000116],[27.446543816000116,40.86172109600007],[27.424815300000063,40.831284898000106],[27.330821160000113,40.760972397999986],[27.287933790000125,40.70355866100005],[27.19825280000009,40.65314362200003],[27.19271894600007,40.64834219000015],[27.182302280000073,40.63637929900001],[27.177744988000143,40.63263580900018],[27.16700280000012,40.62986888200011],[27.14283287900011,40.627386786],[27.115244988000086,40.61371491100005],[27.068614129000082,40.614406643],[27.047536655000073,40.61220937700001],[27.0306095710001,40.60154857],[27.001475457000108,40.570298570000105],[26.98975670700014,40.56378815300012],[26.9635522800001,40.561021226000044],[26.949880405000073,40.559556382],[26.91163170700011,40.550726630000135],[26.853688998000024,40.52313873900012],[26.838633660000113,40.512274481000034],[26.821055535000085,40.50311920800006],[26.75945071700005,40.496161200000145],[26.74073326900006,40.487453518000095],[26.708343946000067,40.46572500200001],[26.694590691000144,40.461371161000116],[26.683360222000143,40.455471096000096],[26.674327019000145,40.42568594000006],[26.66382897200006,40.41356028900016],[26.631521030000044,40.40005117400001],[26.6248478520001,40.392482815000065],[26.62289472700013,40.37571849200005],[26.61670983200008,40.35952383000009],[26.601573113000086,40.34613678600009],[26.546722852000073,40.30756256700003],[26.5397241550001,40.30369700700011],[26.510427280000073,40.29816315300009],[26.49724368600002,40.28994375200009],[26.47608483200011,40.27338288000011],[26.475840691000084,40.26959870000009],[26.47087649800011,40.265855210000055],[26.4446720710001,40.241644598000065],[26.426524285000085,40.230292059000085],[26.40365644600007,40.21942780200011],[26.37989342500009,40.21133047100009],[26.35914147200009,40.20815664300004],[26.34555097700013,40.19977448100014],[26.348806186000076,40.18134186400012],[26.361338738000086,40.16258372600008],[26.375824415000125,40.15350983300006],[26.3279728520001,40.118719794000114],[26.312998894000145,40.11005280200011],[26.273122592000075,40.092596747000144],[26.242930535000085,40.07078685100011],[26.23064212300011,40.06488678600009],[26.177582227000098,40.05072663000006],[26.167002800000148,40.049872137000065],[26.15748131600014,40.05532461100007],[26.160004102000073,40.06720612200003],[26.167979363000114,40.07916901200015],[26.173838738000057,40.08462148600001],[26.190196160000085,40.09422435099999],[26.201426629000082,40.11530182500012],[26.209239129000082,40.13641998900012],[26.2146916020001,40.146063544000086],[26.259776238000086,40.194484768000095],[26.271983269000142,40.23041413000006],[26.266937696000127,40.25775788000014],[26.24789472700013,40.27912018400009],[26.218109571000127,40.29686107],[26.228526238000114,40.30345286700016],[26.23178144600007,40.31012604400003],[26.227386915000064,40.31533437700001],[26.2146916020001,40.31736888200013],[26.20997155000009,40.3219261740001],[26.219086134000094,40.33144765800007],[26.232188347000143,40.34003327],[26.238780144000117,40.34153880400005],[26.25017337300011,40.349514065],[26.30144290500004,40.36469147300009],[26.321136915000068,40.365179755000085],[26.33611087300011,40.38532135600011],[26.38575280000012,40.409857489000146],[26.432790561000047,40.439846096],[26.49170983200011,40.456529039000046],[26.535899285000085,40.48550039300012],[26.564463738000057,40.499457098],[26.595550977000073,40.510402736000074],[26.62289472700013,40.51532623900012],[26.6697697270001,40.51080963700018],[26.683767123000052,40.51532623900012],[26.697276238000114,40.52643463700014],[26.718272332000083,40.551499742000075],[26.73275800900012,40.56378815300012],[26.75619550900009,40.5548363300001],[26.788259311000076,40.56293366100011],[26.81666100400011,40.58095937700013],[26.828949415000068,40.60199616100009],[26.79835045700014,40.65155670799999],[26.79037519600007,40.660589911000116],[26.780528191000144,40.659369208],[26.7142033210001,40.65131256700006],[26.690765821000127,40.64256419499999],[26.67750084700009,40.63947174700009],[26.6092228520001,40.63947174700009],[26.582041863000082,40.63300202],[26.505625847000086,40.598578192000055],[26.47706139400009,40.61310455900009],[26.461192254000053,40.61762116100006],[26.4446720710001,40.61904531500012],[26.431000196000042,40.61517975500011],[26.415293816000087,40.60822174700003],[26.39975019600007,40.604152736000074],[26.373057488000143,40.614447333],[26.356130405000073,40.61302317900011],[26.302582227000073,40.60114166900017],[26.117360873000052,40.60199616100009],[26.091319207000055,40.605414130000085],[26.076914910000085,40.61180247600011],[26.068532748000052,40.62710195500016],[26.06226647200009,40.64541250200013],[26.053721550000148,40.660589911000116],[26.060883009000094,40.675848700000174],[26.05811608200014,40.697699286000116],[26.048106316000144,40.719631252000156],[26.033213738000114,40.735052802000084],[26.040863477000126,40.73663971600011],[26.04395592550017,40.738470770000085],[26.08159102400012,40.73555084200008],[26.11228682500004,40.74697133400017],[26.134507690000078,40.76712514300006],[26.142982625000084,40.79379018200011],[26.158278849000055,40.812186991000104],[26.212022338000054,40.84743031900017],[26.20509769700007,40.858385722000044],[26.205821167000064,40.865000305000066],[26.208715047000055,40.86841095000006],[26.218636922000144,40.87197662300004],[26.215122925000088,40.87285512300018],[26.212539103000097,40.87311350500014],[26.211195516000117,40.87471547500009],[26.211918986000114,40.87946970600008],[26.220910685000064,40.881330058000074],[26.22525150500013,40.88360382100011],[26.226285034000114,40.88882314000004],[26.2261816810001,40.899313457000076],[26.231142619000135,40.889804993],[26.232382853000075,40.885670878000056],[26.239204142000116,40.885670878000056],[26.246335490000064,40.891458639000135],[26.25222660300008,40.9005536910001],[26.260391480000095,40.92044911800012],[26.266489299000057,40.92044911800012],[26.270003295000095,40.914816386],[26.275170939000105,40.910268860000045],[26.28219893400012,40.907219951000016],[26.290673869000102,40.90613474500013],[26.304006389000048,40.90902862600002],[26.303282918000036,40.91548818000016],[26.297288452000117,40.922412821000066],[26.294394572000044,40.92665028900011],[26.30648685700001,40.93600372300013],[26.335012247000066,40.946235657000116],[26.349068237000097,40.954555563000085],[26.35909346500011,40.96468414300013],[26.356199585000127,40.968146465000174],[26.346484416000095,40.971712138000136],[26.33604577600005,40.98189239500003],[26.333151896000057,40.99072906500011],[26.33594242300012,40.99713694300006],[26.34462406400007,41.00106435200003],[26.35961023000004,41.00240793900018],[26.368085164000064,41.00773061200012],[26.37500980700014,41.01946116200012],[26.37418298300011,41.031140035000085],[26.3476212970001,41.040958558000156],[26.33904301000007,41.051552226000055],[26.325090373000076,41.07408315100015],[26.32240319800013,41.088552552000074],[26.33945642100008,41.11449412100013],[26.33232507300005,41.119041647000174],[26.317338908000067,41.122297262000146],[26.317338908000067,41.130462138000084],[26.33604577600005,41.152579651000096],[26.32416019700011,41.169891256000184],[26.321059611000067,41.18761627200011],[26.325503785000077,41.20699493500017],[26.33604577600005,41.22890574200012],[26.320542846000134,41.24621734700012],[26.331704956000067,41.25412384100018],[26.395060262000072,41.2589814250001],[26.412113484000116,41.26569936100013],[26.438468465000085,41.28357940700009],[26.466373738000073,41.29717030900015],[26.471954793000062,41.301924540000144],[26.474435262000043,41.30636871400016],[26.478776083000124,41.30962432900007],[26.489318074000096,41.310864563000095],[26.540167684000096,41.35179229800012],[26.550606323000125,41.3417670700001],[26.56962325000012,41.33360219400008],[26.591120646000064,41.32931305],[26.609724162000102,41.33070831300007],[26.62264327000011,41.34037180600002],[26.631738321000086,41.35752838200007],[26.6365959070001,41.37845733700006],[26.636389201000043,41.3995929980001],[26.632151734000104,41.419746805999985],[26.615925333000092,41.468529358000026],[26.610964396000043,41.50573638900015],[26.60610681100013,41.52304799400004],[26.59546146600013,41.53741404300014],[26.60166263900001,41.547335917000126],[26.597838582000065,41.573277487],[26.60228275500009,41.58516306600002],[26.598562052000062,41.59084747300007],[26.596288289000142,41.59753957100018],[26.595254760000074,41.6049551390001],[26.59546146600013,41.612448222000054],[26.576444540000068,41.5910025030001],[26.566522664000075,41.598753967000036],[26.521150757000044,41.61642730800013],[26.46441003400011,41.648518372000055],[26.473195028000106,41.66112742100016],[26.476192260000115,41.67572601300013],[26.460379272000125,41.678774923000056],[26.442809286000056,41.6844593310001],[26.404362020000093,41.691823222000025],[26.377386923000074,41.71063344300002],[26.35961023000004,41.71489674900006],[26.333358602000114,41.71303639700007],[26.323230021000143,41.72368174300006],[26.31630537900008,41.7437580360001],[26.320026082000084,41.7654621380001],[26.334185425000044,41.78954335500004],[26.375526571000076,41.816621806],[26.478362671000095,41.81328867600011],[26.526111694000093,41.824244080000184],[26.539547567000056,41.837990011000116],[26.547815796000094,41.85628346800008],[26.55205326300012,41.874447734000036],[26.552894853000055,41.88164332500004],[26.553603557000145,41.887702739000034],[26.554740438000067,41.892947897000155],[26.55897790500012,41.90173289000013],[26.55980472800013,41.90733978300007],[26.556807495000044,41.91075042699999],[26.54471521000005,41.91643483500003],[26.54295821100007,41.920362244],[26.547092326000097,41.92689931200009],[26.553293497000084,41.93157603000004],[26.560631552000075,41.935684306000056],[26.589467,41.95875783400013],[26.60569340000012,41.967413636000074],[26.623573446000076,41.969041444000126],[26.7175728760001,41.95731089300013],[26.736744833000103,41.95896453900009],[26.746976766000103,41.96449391700018],[26.768577515000057,41.98077199400002],[26.780566447000126,41.983433329000135],[26.78991988100006,41.97994517000008],[26.808420044000087,41.967878724000016],[26.819427124000068,41.96565663600001],[26.827695353000134,41.96878306100013],[26.837899181000097,41.97521950300016],[26.850019572000093,41.982864889],[26.86076826900012,41.98790334100014],[26.871723674000094,41.98813588500012],[26.881128784000055,41.985526225000015],[26.89032718900006,41.985422873000076],[26.901075887000076,41.99348439500007],[26.911462850000078,41.996791687000055],[26.930221395000075,41.99451792400005],[26.938903035000035,41.99622324700003],[26.950065144000092,42.00617096000012],[26.9582300210001,42.01823740600009],[26.967170044000113,42.02849517900007],[26.981071004000114,42.032861837000056],[27.000397990000067,42.04280955000017],[27.022618856000094,42.07389292400002],[27.046545044000084,42.082936300000156],[27.047903041000097,42.08291964900003],[27.065510294000063,42.082703756000015],[27.083700398000076,42.07841461200006],[27.100650268000095,42.07110239700016],[27.116049845000077,42.06182647800013],[27.127211954000103,42.06257578600004],[27.149587849000085,42.06182647800013],[27.17382409700008,42.05707224600006],[27.17816491700006,42.058364156],[27.178991740000072,42.06187815400015],[27.18157556100007,42.06588307700004],[27.203796427000015,42.08812978100018],[27.216405477000137,42.09562286400001],[27.238212931000074,42.09792246500014],[27.273352906000127,42.09174713200015],[27.30528894000008,42.07758778900002],[27.33247074400009,42.05743398100004]]],[[[34.99073326900023,42.09113190300015],[35.00342858200011,42.08510976800015],[35.00586998800023,42.091376044000086],[35.01010175900014,42.09275950700008],[35.01612389400023,42.09218984600001],[35.02393639400023,42.092515367000125],[35.0310978520001,42.080633856000176],[35.041840040000096,42.07208893400015],[35.04883873800006,42.065130927000084],[35.04444420700011,42.05780670800006],[35.04444420700011,42.051581122000115],[35.08155358200011,42.02920156500009],[35.10450280000012,42.02187734600007],[35.13379967500012,42.023627020000056],[35.14421634200019,42.02850983300014],[35.16041100400017,42.04148997600005],[35.171234571000156,42.044134833000115],[35.18620853000019,42.0424665390001],[35.195811394000174,42.03807200700014],[35.216319207000225,42.023627020000056],[35.216319207000225,42.01679108300006],[35.16260826900023,42.02171458500011],[35.13754316500015,42.01951732000013],[35.116709832000055,42.00690338700004],[35.107432488000114,41.99168528900016],[35.09880618600013,41.969712632000046],[35.09302819100017,41.94668203300007],[35.09213300900015,41.928045966000084],[35.09864342500006,41.91266510600015],[35.12574303500016,41.875311591000084],[35.155772332000225,41.84568919500005],[35.20948326900011,41.81134674700009],[35.20948326900011,41.80451080900018],[35.195811394000174,41.80451080900018],[35.20199629000015,41.791449286],[35.211761915000096,41.77537669500013],[35.22478274800008,41.76186758000016],[35.25359134200019,41.75063711100013],[35.28256269600009,41.72418854400017],[35.298187696000156,41.71515534100014],[35.35767662900011,41.69684479400008],[35.40105228000007,41.69155508000004],[35.4173283210001,41.68341705900009],[35.44906660200016,41.66054922100001],[35.485850457000225,41.645086981000176],[35.530121290000096,41.63426341400016],[35.57667076900023,41.62970612200003],[35.619802280000066,41.63263580900015],[35.64087975400017,41.63930898600002],[35.67872155000012,41.65692780200014],[35.740570509000094,41.66498444200006],[35.84620201900023,41.69871653900016],[35.87012780000012,41.70148346600003],[35.893809441000116,41.707464911000145],[35.934825066000116,41.73240794500008],[35.956797722000175,41.736273505000085],[35.956797722000175,41.72943756700006],[35.952484571000156,41.72329336100007],[35.946787957000055,41.71723053600009],[35.938975457000055,41.71210358300005],[35.928965691000116,41.708929755],[35.93051191500015,41.69383372599999],[35.911631707000105,41.662787177],[35.91529381600017,41.64622630400011],[35.922699415000146,41.64622630400011],[35.924815300000056,41.67023346600014],[35.93433678500016,41.69212474199999],[35.94792728000019,41.710028387000065],[35.96241295700017,41.721991278000175],[35.97291100400011,41.728583075000145],[35.9778751960001,41.729681708],[36.03809655000006,41.68781159100008],[36.03809655000006,41.70148346600003],[36.04493248800017,41.70148346600003],[36.1204533210001,41.62775299700009],[36.13445071700002,41.59906647300012],[36.13445071700002,41.558172919000086],[36.131032748000024,41.5482445330001],[36.122325066000116,41.53180573100009],[36.12077884200019,41.527044989],[36.119965040000096,41.49433014500006],[36.12378991000011,41.47915273600007],[36.13445071700002,41.46190013200008],[36.178884311000076,41.419989325000174],[36.20476321700008,41.40648021],[36.23682701900023,41.3588727890001],[36.253265821000156,41.34882233300014],[36.30339603000007,41.328517971000124],[36.33187910200016,41.32318756700006],[36.3372501960001,41.31854889500015],[36.339854363000114,41.31093984600001],[36.34050540500007,41.30052317900011],[36.343760613000114,41.288723049000154],[36.35222415500007,41.283636786000116],[36.36329186300006,41.28107330900012],[36.37452233200011,41.277004299000154],[36.38013756600017,41.27216217700008],[36.39014733200005,41.26032135600012],[36.39503014400023,41.256415106000034],[36.40503991000011,41.25360748900009],[36.42383873800006,41.25169505400011],[36.432465040000096,41.24624258000007],[36.4510197270001,41.24042389500012],[36.47608483200005,41.24494049700017],[36.517914259000094,41.26264069200009],[36.57081139400023,41.297919012000115],[36.57935631600017,41.30731842700014],[36.58253014400022,41.317084052],[36.596690300000056,41.335272528000175],[36.59986412900011,41.34149811400012],[36.60189863400015,41.343736070000105],[36.608653191000116,41.36493561400003],[36.60670006600017,41.366278387000094],[36.61988366000011,41.375067450000145],[36.63355553500011,41.374090887000094],[36.650157097000175,41.369289455000015],[36.6717228520001,41.366278387000094],[36.75806725400011,41.366278387000094],[36.83668053500011,41.350775458],[36.98487389400022,41.294501044000114],[37.01531009200019,41.274603583000115],[37.03191165500007,41.242824611000074],[37.03386478000019,41.19879791900014],[37.039724155000066,41.18154531500015],[37.056407097000175,41.174505927000084],[37.0774845710001,41.17084381700012],[37.11573326900023,41.15314362200003],[37.13550866000017,41.14663320500013],[37.26343834700017,41.14785390800013],[37.299327019000174,41.140366929],[37.322438998000194,41.124090887000065],[37.333506707000225,41.11933014500014],[37.35450280000012,41.11424388200011],[37.37794030000006,41.112494208000115],[37.39535566500015,41.10846588700015],[37.419444207000055,41.087591864],[37.43653405000012,41.077704169000086],[37.47754967500012,41.067775783000066],[37.48129316500015,41.06220123900006],[37.50473066500009,41.04291413000014],[37.5247501960001,41.037176825000145],[37.56470787900017,41.040472723],[37.58057701900006,41.036769924000154],[37.58643639400012,41.04222239799999],[37.600433790000096,41.04633209800015],[37.60792076900023,41.05044179900009],[37.61524498800023,41.05853913000011],[37.628265821000156,41.08515045800006],[37.64014733200011,41.10154857000008],[37.65503991000011,41.117621161000145],[37.672048373000194,41.131252346000096],[37.689789259000094,41.140366929],[37.69849694100017,41.124090887000065],[37.71509850400011,41.1147321640001],[37.7342228520001,41.11465078300013],[37.75123131600017,41.126125393000066],[37.7580672540001,41.11933014500014],[37.78386478,41.122626044000086],[37.78516686300023,41.060003973000086],[37.80274498800017,41.04291413000014],[37.854258660000106,41.02366771],[37.86793053500017,41.01557038000006],[37.8782658210001,41.00560130400008],[37.895762566000116,40.982123114],[37.93474368600019,40.995103257],[37.981700066000116,40.99022044500013],[38.10222415500007,40.95970286699999],[38.16130618600019,40.95209381700014],[38.20142662900011,40.94135163000014],[38.224131707000225,40.941148179],[38.26832116000011,40.95038483300014],[38.28736412900011,40.947211005000085],[38.33090254000015,40.917873440000065],[38.351247592000135,40.917873440000065],[38.38933353000019,40.926906643000095],[38.426768425000056,40.918646552],[38.45232181100002,40.91673411700013],[38.463715040000096,40.92377350500003],[38.539398634000094,40.926906643000095],[38.554860873000194,40.935003973],[38.591563347,40.962551174000126],[38.604746941000165,40.96845123900006],[38.637054884000094,40.976019598000036],[38.64926191500015,40.975287177],[38.65544681100002,40.97109609600015],[38.670909050000056,40.95453522300009],[38.67790774800014,40.94863515800016],[38.68775475400017,40.952704169000114],[38.70704186300006,40.95286692900008],[38.71762129000015,40.95477936400012],[38.724619988000114,40.959173895000035],[38.73308353000007,40.96613190300009],[38.74333743600019,40.972479559000035],[38.75513756600017,40.975287177],[38.77540123800017,40.99335358299999],[38.779063347,40.99921295800014],[38.78370201900023,41.00177643400015],[38.805918816000116,41.00775788000008],[38.875824415000096,41.01894765800007],[38.89234459700011,41.027085679],[38.908376498000194,41.03766510600014],[38.927500847000175,41.04262929900001],[39.04175866000011,41.043402411000116],[39.122325066000165,41.05727773600002],[39.131195509000094,41.06146881700015],[39.15650475400017,41.077704169000086],[39.16830488400015,41.07973867400001],[39.20118248800023,41.077704169000086],[39.21998131600017,41.0729027360001],[39.25074303500017,41.053045966000084],[39.273203972000054,41.05044179900009],[39.29004967500006,41.05483633000007],[39.31723066500015,41.06806061400012],[39.337412957000105,41.07086823100015],[39.34913170700011,41.07396067900005],[39.40284264400023,41.09813060100005],[39.40886478000007,41.102443752000156],[39.41244550900015,41.10651276200012],[39.41822350400011,41.11001211100002],[39.43018639400023,41.112494208000115],[39.49293053500011,41.10101959800009],[39.5071720710001,41.090073960000105],[39.532562696000156,41.064642645],[39.59205162900017,41.02509186400005],[39.630056186000076,41.008490302],[39.66968834700012,41.002630927000055],[39.68978925900015,41.007473049000126],[39.71013431100007,41.01504140800007],[39.729991082000225,41.01715729400008],[39.75709069100017,41.002346096000124],[39.76832116000017,41.00141022300012],[39.79021243600019,41.002630927000055],[39.79916425900015,41.000311591000084],[39.858734571000156,40.96426015800013],[39.876475457000225,40.95783112200002],[39.89568118600019,40.95477936400012],[39.91187584700006,40.963771877000156],[39.97494550900015,40.980292059000035],[39.9993595710001,40.982123114],[40.05681399800019,40.94135163000014],[40.085703972000054,40.926459052],[40.12598717500012,40.920640367000125],[40.14275149800014,40.92279694200012],[40.172536655000016,40.93219635600015],[40.19556725400011,40.93634674700008],[40.23145592500012,40.946844794000164],[40.25464928500011,40.95868561400012],[40.30103600400011,40.96845123900006],[40.46485436300006,41.05044179900009],[40.499685092000135,41.038763739],[40.5291447270001,41.036281643000066],[40.55738366000016,41.042466539000046],[40.58838951900012,41.05727773600002],[40.626149936000076,41.08218008000013],[40.63965905000012,41.08515045800006],[40.67066491000017,41.08795807500012],[40.68588300900015,41.09198639500009],[40.698252800000056,41.09813060100005],[40.75757897200006,41.158351955000015],[40.827484571000156,41.197943427000055],[40.83887780000012,41.20123932500009],[40.85401451900012,41.199286200000145],[40.896820509000094,41.187567450000145],[40.92204837300008,41.19061920800005],[40.95980879000015,41.21063873900012],[40.976084832000055,41.215521552],[40.99708092500012,41.21771881700009],[41.02027428500011,41.223700262000094],[41.04273522200006,41.232489325000145],[41.06137129000015,41.242824611000074],[41.100840691000116,41.274155992000104],[41.12134850400017,41.285549221000096],[41.146657748000194,41.28998444200006],[41.17261803500017,41.291245835000055],[41.1907658210001,41.29572174700002],[41.285004102000094,41.35382721600008],[41.310313347,41.360785223000065],[41.33179772200006,41.36969635600012],[41.34253991000017,41.372503973000065],[41.37745201900006,41.37604401200004],[41.39039147200017,41.37933991100009],[41.40894616000011,41.39032623900012],[41.424164259000094,41.40786367400007],[41.43433678500011,41.42914459800015],[41.438161655000016,41.451361395],[41.4485783210001,41.456244208000086],[41.50709069100017,41.49542877800012],[41.520762566000116,41.5142276065002],[41.62725712100009,41.48051829000009],[41.63996952400012,41.478709615000085],[41.66983850100016,41.48046661400017],[41.694953247000086,41.489096578000115],[41.70260135900011,41.489044902],[41.70394494700011,41.48511749300003],[41.70280806500008,41.47762441100009],[41.70260135900011,41.46945953400008],[41.7068388270001,41.46315500900006],[41.71851770100008,41.459589335000096],[41.747766561000134,41.456850485000146],[41.7609957280001,41.45354319300016],[41.80078658100009,41.425689596],[41.812982218000144,41.42181386300014],[41.82259403500004,41.42599965400007],[41.86269494600006,41.45178619400018],[41.89401086400008,41.48553090500015],[41.907756796000086,41.493489075000106],[41.9479610600001,41.50558136000011],[42.01958459400018,41.485065817000034],[42.05493127500009,41.493489075000106],[42.06940067600013,41.49860504200011],[42.08345666500023,41.500103658000015],[42.09751265500003,41.49834665900012],[42.1117753500001,41.493489075000106],[42.14319462100016,41.500258688000045],[42.15838749100006,41.499896953000146],[42.17265018700007,41.493489075000106],[42.18928999800019,41.481706849000105],[42.2132678630002,41.48020823200001],[42.262463827000175,41.48232696600017],[42.43785363800012,41.43085723900002],[42.45103257600013,41.431370354000094],[42.46307173700009,41.43183909200014],[42.48384566200011,41.44217437700017],[42.51381799300023,41.47622914700012],[42.535522095000054,41.493489075000106],[42.54554732300007,41.50961212200009],[42.55495243300007,41.55033315100014],[42.565184367000114,41.56712799100002],[42.58523482200005,41.57875518800007],[42.58664757525943,41.57910693488007],[42.590913541000106,41.58016907299999],[42.61055627400012,41.58505971300009],[42.66099247200023,41.58826365200015],[42.80093225100009,41.579220276],[42.819949178000144,41.572347311000144],[42.812197714000064,41.56299387700001],[42.808890422000125,41.552916972000055],[42.80682336400017,41.542995097000144],[42.80268925000016,41.53410675100007],[42.79462772600007,41.52682037400016],[42.77488732900011,41.514263001000145],[42.766515747000106,41.50434112500007],[42.792147257000096,41.492868958000045],[42.81116418500008,41.47715932300018],[42.82997440600016,41.4725084440001],[42.85457238800015,41.4937991340001],[42.868008260000096,41.50020701100014],[42.875139608,41.493695781000085],[42.88072066200007,41.48124176099999],[42.888988891000196,41.46997629800001],[42.896637004000155,41.46656565400009],[42.92609257000018,41.45907257100008],[42.932190389000226,41.45478342700001],[42.93622115100001,41.450235901000056],[42.94107873600015,41.4463084930001],[42.949967082000086,41.44367299400006],[42.957718546000166,41.43700673400015],[42.98758752400019,41.394683736000054],[43.002056925,41.3826948050001],[43.075644165000114,41.344867656000034],[43.12390995300021,41.31293162100014],[43.15476078300011,41.30187286400014],[43.18400964400004,41.29897898400016],[43.18535323100022,41.29381134100005],[43.17186568200023,41.27934194000012],[43.1572412510001,41.269730123000116],[43.10313602700008,41.24880116800013],[43.13031783000005,41.242289938000155],[43.15233199100007,41.24415028900016],[43.172020712000204,41.24234161400007],[43.192226196000064,41.224978333000145],[43.21620406100013,41.180536601000185],[43.230621785,41.17263010700013],[43.32260583500013,41.1920604460001],[43.35175134300002,41.193610738000025],[43.38327396700018,41.187202861000095],[43.41055912200008,41.17516225200002],[43.43758589700016,41.156197001000166],[43.451796916,41.13258087200013],[43.44042810000022,41.10658762600009],[43.436293986000095,41.08322987900014],[43.44456221600014,41.05144887300009],[43.46047855700007,41.02287180600014],[43.47959883700017,41.009125875],[43.522386922000095,41.00447499600013],[43.565433390000095,40.9881452440001],[43.60486250900013,40.96334055600006],[43.636178426000214,40.93352325500016],[43.647650594000226,40.91388621100013],[43.651939738000095,40.894765931000116],[43.65416182400011,40.87471547500009],[43.65953617400007,40.851977844000096],[43.669768107000124,40.83213409500003],[43.71131595900013,40.78164622100008],[43.72061771700007,40.762887676],[43.72413171400009,40.74635121700011],[43.72935103300014,40.6771047970001],[43.726405477000206,40.668991598],[43.705631551000096,40.64077626600012],[43.69953373200022,40.63457509400014],[43.70718184400019,40.6119408170001],[43.66480716900017,40.57406199200001],[43.65147465000009,40.55339141899999],[43.65250817900008,40.52941355400016],[43.64646203700008,40.53303090500005],[43.64201786300012,40.53437449200011],[43.63757369000009,40.53514963800002],[43.631475871000106,40.536854960000184],[43.634628133000064,40.53277252200017],[43.63628177900014,40.52977528900005],[43.638968954000084,40.52259226500011],[43.615301147000224,40.52042185500012],[43.593700399000085,40.50900136300011],[43.55949060100008,40.47789215200008],[43.5636247150002,40.46471466100009],[43.584863728000045,40.44657623400015],[43.62532637500007,40.42016957599999],[43.62532637500007,40.41334828800005],[43.624463001000116,40.41113748500008],[43.609565064000066,40.37298899400015],[43.601038452000154,40.36182688400014],[43.59421716300019,40.345445455000075],[43.604449097000185,40.32978749600012],[43.631475871000106,40.31030548100012],[43.6759692790001,40.26596710200009],[43.69034759000007,40.24044318800004],[43.691368856000196,40.238630269000154],[43.67307539900011,40.22772654300009],[43.683720744000226,40.2101048790001],[43.71493330900009,40.18064931300002],[43.72139286300015,40.16938385100006],[43.71162601700021,40.15646474200004],[43.666357463000196,40.148919983],[43.65250817900008,40.1389981090001],[43.665427287000085,40.11016265900015],[43.7112126060002,40.090732321000175],[43.802783244000096,40.07073354100014],[43.91213057400009,40.02432810500012],[44.032433309000076,40.00861847000006],[44.04834965000011,40.01285593700011],[44.08312788900017,40.03161448200002],[44.104470256000155,40.035955302],[44.1142887780002,40.03393992100013],[44.12700118000018,40.024483135000146],[44.1354761150001,40.02231272400009],[44.14591475400019,40.02339792900007],[44.16637862100018,40.02804880800015],[44.195007365000066,40.0307876590001],[44.25526208500011,40.04339670800012],[44.28905847200011,40.04339670800012],[44.32564538600016,40.03466339200004],[44.38092555300008,40.00980379300007],[44.46434493000001,39.972289937000184],[44.52217085800007,39.93353261300016],[44.54785404500009,39.91146677600007],[44.55911950700008,39.896894023000115],[44.56377038600013,39.881701152000076],[44.567491089000065,39.873019512000106],[44.57596602400017,39.86635325100012],[44.59105554200008,39.85782664],[44.594156128000094,39.84805979400012],[44.59446618600006,39.83679433200008],[44.59818688900012,39.831006572000106],[44.61151940900001,39.83731109600002],[44.647692911000064,39.80511667900008],[44.666193075000166,39.7963833620001],[44.67125736500023,39.79586659800007],[44.682419474000056,39.79721018500011],[44.687173706000095,39.7963833620001],[44.69203129100017,39.793024394],[44.697767374000165,39.78527292900016],[44.759107300000124,39.72310618100009],[44.77455855300022,39.702797343000086],[44.784325399000096,39.690239970000064],[44.795745891000166,39.65236114600016],[44.8069928290001,39.63990171200008],[44.725724325000066,39.68533070900013],[44.70629398600007,39.698043111000075],[44.6465043540002,39.719540507000104],[44.63281009900018,39.73163279200009],[44.60583500200007,39.763155416000174],[44.590435425000095,39.77152699800014],[44.56573409000006,39.76589426700012],[44.45948734500021,39.698456523000104],[44.455043173000114,39.687139384000105],[44.460210816000114,39.654479879000135],[44.45825019400016,39.64252008900008],[44.45762699400021,39.63871856700014],[44.45168420400009,39.625851136000065],[44.41855961100006,39.57432973300017],[44.41401208500017,39.56089386000012],[44.41204838100011,39.54446075500014],[44.41401208500017,39.530353089000116],[44.417422729000094,39.51748565700002],[44.41680261200011,39.50554840100007],[44.406829061000195,39.49371449800016],[44.406674031000165,39.49371449800016],[44.406674031000165,39.493662821000136],[44.40171309400009,39.47133860300009],[44.40522709100017,39.45247670500005],[44.40481368000016,39.43438995400014],[44.38796716300018,39.414494528000134],[44.36874353000016,39.403590800000174],[44.316963745000095,39.385297343],[44.29494958500018,39.38121490499999],[44.269524781000115,39.38286855100013],[44.20043339000019,39.40948191300007],[44.176507203000114,39.41154897100013],[44.122246949000186,39.40043853800002],[44.09919925900012,39.39847483300017],[44.076978394000065,39.40059356700006],[44.061372111000225,39.40028350800015],[44.04638594600007,39.39604604100013],[44.026025432000125,39.38617584200013],[44.01486332200008,39.37408355700016],[44.02096114100007,39.36199127200017],[44.047212768000094,39.337910055000016],[44.04739541400008,39.33751363],[44.05176029500014,39.328039857000064],[44.057651408000226,39.30680084200016],[44.06943363500013,39.28700876900011],[44.069226929000166,39.27956736200018],[44.066746460000076,39.27295278000018],[44.06715987200019,39.264012757000145],[44.07057051600023,39.255486145000035],[44.082662801000225,39.23566823400013],[44.083489624000066,39.226831564000136],[44.07656498200018,39.20869313600012],[44.07770186400009,39.200063172000064],[44.1035400800001,39.184637757000175],[44.14808516400009,39.166447652000144],[44.186635783000185,39.14513112500005],[44.194800659000094,39.12053314200007],[44.17495690900009,39.090224915000036],[44.16989261900014,39.07436025000011],[44.17914270000003,39.03493113200001],[44.169530884000125,39.02304555300016],[44.153356160000016,39.01255523700002],[44.1391968180001,38.99395172100016],[44.1391968180001,38.99377085400012],[44.144674520000045,38.98682037400012],[44.147775106000125,38.980050761000186],[44.15196089700006,38.964625346],[44.15800703900018,38.957468161000165],[44.16710209200008,38.95199045800016],[44.174646851,38.94576344799999],[44.1753703210002,38.93669423500002],[44.17485355600016,38.928374329000135],[44.17816084800009,38.92070037900008],[44.18250166900006,38.91312978100002],[44.19211348500008,38.89075388600004],[44.20575606300005,38.87566436800013],[44.22198246200017,38.86344289200012],[44.27500248200019,38.8435733030001],[44.2798083910001,38.814221090000146],[44.25267826400014,38.74182240800015],[44.248647501000136,38.72182362900004],[44.250507853000016,38.70921458000011],[44.255468791000084,38.69727732300007],[44.26048140500015,38.679242249000154],[44.256088908000066,38.67195587100018],[44.247407267000106,38.66508290600002],[44.244306682000136,38.65895924900015],[44.25681237800014,38.65392079700008],[44.27489912900015,38.64937327100013],[44.28254724200021,38.64539418500006],[44.28988529500012,38.638882955],[44.29701664300015,38.622320659000096],[44.29680993600019,38.60162424800008],[44.29215905800007,38.56204010100011],[44.30135746200002,38.51119049100011],[44.30016890500022,38.494033915000145],[44.287508179000184,38.45372629800009],[44.287404826000085,38.441944072000084],[44.290505412000094,38.4165967810001],[44.28988529500012,38.407372539],[44.28657800300002,38.39099111000014],[44.2895235600001,38.382257792000175],[44.298670288000125,38.37719350200008],[44.313398072000126,38.371819154000136],[44.363369182000184,38.364610291000176],[44.396338745000065,38.37967397100006],[44.4090511470001,38.38179270400006],[44.42465743000017,38.37703847200005],[44.43881677200008,38.36755584700008],[44.45111576300021,38.354042461000105],[44.458763876,38.33833282500014],[44.45917728700013,38.3224164840001],[44.436749715000104,38.29694000300019],[44.40057621200012,38.274667460000146],[44.37241255700016,38.249501038000105],[44.37670170100008,38.20154530900008],[44.37323938000006,38.18211497],[44.367089885000176,38.162477926000136],[44.36057865400002,38.147853496],[44.353137248000195,38.139998678000055],[44.3353605550001,38.134055888000134],[44.32709232500022,38.128397319],[44.32569706200015,38.119689840000134],[44.33381026200007,38.10087961800012],[44.328280884000065,38.09462677100011],[44.309005574000224,38.08723704000003],[44.295879761000066,38.07902048800018],[44.28657800300002,38.066308085000045],[44.27830977400018,38.04532745400003],[44.269524781000115,38.03000539100016],[44.24539188600013,38.00837880500008],[44.23614180500012,37.99401275700008],[44.23614180500012,37.993986918000175],[44.2360384520002,37.993883566000065],[44.2360384520002,37.99383188900013],[44.22756351700011,37.980990296000144],[44.22146569800023,37.968820496000134],[44.219657023000224,37.95608225500017],[44.22466963700012,37.94200042800004],[44.225496460000016,37.929313863000104],[44.21671146700007,37.91859100400008],[44.20637618000015,37.90833323200009],[44.20500618600013,37.90476794700008],[44.20208703600005,37.89717112200016],[44.21960534600012,37.875311992000135],[44.2544352620001,37.87084198000012],[44.3192375080001,37.87686228500014],[44.331226441000155,37.87396840500015],[44.36714156100001,37.860222473000036],[44.37794193600004,37.85412465400016],[44.383833049000174,37.844977926000084],[44.38755375200017,37.83340240500014],[44.393238159000106,37.821077576],[44.40440026900014,37.809734599000116],[44.41210005700023,37.80771921800006],[44.41897302300012,37.80968292200002],[44.42548425300018,37.810768128000106],[44.433029012000105,37.806117249000025],[44.43375248200013,37.80110463500007],[44.42977339700022,37.78513661800003],[44.42910160300008,37.779142152000084],[44.43643965600003,37.76779917400002],[44.45049564600018,37.76663645400011],[44.466515340000136,37.77113230400012],[44.479227743000166,37.77686838800018],[44.50646122300006,37.77934885700016],[44.534418172000045,37.7691944380001],[44.55937788900016,37.75201202500013],[44.59611983300013,37.71638112400014],[44.59839359500003,37.7070276890001],[44.58816166200008,37.693979391000155],[44.55353845200008,37.67181020100004],[44.54527022300013,37.66302520800015],[44.54087772600022,37.63271698000001],[44.56097985800008,37.61465606800003],[44.58351078300021,37.601091004000025],[44.587438191000075,37.58401194300008],[44.5783431400001,37.56390981100013],[44.57183190900011,37.53920847600001],[44.569919881,37.51440378800008],[44.575242554000084,37.4939915980001],[44.575242554000084,37.49383656800008],[44.579273316000155,37.47696421400009],[44.56594079600015,37.44717275],[44.57214196800012,37.43079132100014],[44.58557784000007,37.42466766400018],[44.622784872000096,37.42190297500004],[44.63818444800009,37.4126012170001],[44.65224043800018,37.384024150000144],[44.661645549000156,37.37565256800015],[44.698025757000124,37.38004506500006],[44.70712080900009,37.37095001300018],[44.713011923000096,37.35679067000014],[44.721383504000045,37.34327728300017],[44.77895105000019,37.313795878000164],[44.80158532700008,37.292686056000136],[44.798484741,37.260310771000135],[44.78675419100014,37.24811513300001],[44.77295658300008,37.241681417000066],[44.76050256300019,37.233232321000074],[44.753526245000074,37.21532643600001],[44.75673018400008,37.195198466000036],[44.76613529500011,37.178145244000106],[44.7723364670002,37.1612470510001],[44.76613529500011,37.14192006500015],[44.7538363030001,37.15915415500014],[44.73378584800011,37.16724151700005],[44.62893436700003,37.179023743000144],[44.6102791750001,37.17835194900006],[44.57823978700017,37.166414694000125],[44.53937911000011,37.14367706300014],[44.503412313000155,37.11662445100008],[44.479227743000166,37.09200063100009],[44.45442305500015,37.07634267200014],[44.428068074000095,37.06476715100011],[44.34311202000018,37.04244293300003],[44.335153849000136,37.03115163200006],[44.33163985200005,37.01546783500011],[44.316136922000084,36.994125468],[44.316136922000084,36.99402211500008],[44.31598189300021,36.993970439000165],[44.315878540000114,36.993970439000165],[44.30662845900005,36.97722727500012],[44.29722334800013,36.96994089800013],[44.284821004000065,36.96916575200011],[44.24327315300016,36.97776987800016],[44.23428145400012,36.98366099100015],[44.227770223000135,36.994125468],[44.187462606000196,37.06693756100019],[44.18002120000008,37.087608134],[44.18064131700006,37.108924662],[44.1892196040001,37.12920766200001],[44.20596276900013,37.14662262000006],[44.218778524000214,37.15261708600015],[44.230199016000114,37.15432240800014],[44.24012089000021,37.157965597000114],[44.248337443000224,37.1696703090001],[44.24962935400018,37.17943715500014],[44.24854414800009,37.191917013000065],[44.24353153500012,37.213827820000105],[44.23500492300021,37.23677215600004],[44.22317102100013,37.25405792300013],[44.20689294500008,37.26751963300007],[44.18446537300011,37.27917266800016],[44.08803715000019,37.311160380000146],[44.069024736000216,37.31372658800011],[44.03558557100021,37.31824005200014],[43.99036869300008,37.312503968000115],[43.95378177900008,37.28746673600001],[43.92417118300008,37.25307607000015],[43.89363041200007,37.22491241400011],[43.839990276000066,37.217109273000105],[43.82200687700012,37.202381491],[43.80939782700008,37.19969431500006],[43.802059774000064,37.20357004800012],[43.780562378000155,37.22036488900007],[43.77064050300007,37.22584259000017],[43.74692102100019,37.23064849900008],[43.72082442300021,37.2326122030001],[43.618298381000066,37.22697947200008],[43.59421716300019,37.229459941000144],[43.56889571200023,37.23770233200018],[43.550602255000086,37.24873525],[43.54243737800007,37.25230092400015],[43.52951827000001,37.25390289300019],[43.51711592600017,37.25230092400015],[43.49241459100003,37.244756165000105],[43.47959883700017,37.24336090100003],[43.46326908400013,37.24868357400008],[43.4167602950001,37.27917266800016],[43.376039266000106,37.2955282600001],[43.362505215000134,37.30390815200015],[43.33614506100011,37.32022959400011],[43.32415612800011,37.32221913700015],[43.30565596500011,37.319971212000134],[43.29687097200022,37.316741435000054],[43.28751753800006,37.30914499900011],[43.27862919100008,37.30774973600002],[43.270309285000195,37.30867991100017],[43.26338464300014,37.31069529300011],[43.13197147600013,37.36725514699999],[43.114814901000074,37.37113088000014],[43.083705689000084,37.36883127900001],[43.04350142400008,37.360252991],[43.00515751200007,37.34725636800006],[42.97962935400013,37.33183095400007],[42.937047973000034,37.320152080000085],[42.896740357000084,37.32490631100008],[42.81405806500007,37.346817119000136],[42.805479777000095,37.35185557000001],[42.80113895600002,37.36908966100019],[42.79245731600005,37.37433481900011],[42.780468384000216,37.37549753800012],[42.77158003700018,37.37490326000007],[42.72217736800005,37.35890940400013],[42.715666138000095,37.35529205300004],[42.709464965000194,37.34717885400011],[42.70739790900003,37.34015085900002],[42.70615767400014,37.33322621700013],[42.702333619000086,37.325345561000105],[42.5769665940002,37.179230449],[42.564667602000064,37.15204864500011],[42.56125695800003,37.14662262000006],[42.54523726400012,37.140886536],[42.45914432800012,37.12931101500014],[42.40188684100022,37.1141439820001],[42.35723840300014,37.10998402900019],[42.35651493400022,37.13827687600018],[42.354551229000066,37.15241038100011],[42.34669641200017,37.15843068500005],[42.33532759600004,37.17116892500012],[42.353207642000115,37.22703114900018],[42.34669641200017,37.23976938900013],[42.33987512200011,37.24263743100012],[42.30576867700014,37.26454823900018],[42.30142785600012,37.269922587000124],[42.29636356600005,37.279689433],[42.292022746000185,37.28506378200014],[42.285821574000096,37.28656239900006],[42.2792069910001,37.282273255000106],[42.2729024650001,37.2767438770001],[42.26721805900015,37.274521790000094],[42.2368323160002,37.28630401600019],[42.22318973800011,37.28813853000018],[42.22215620900013,37.29240183500015],[42.223809855000155,37.302375387000055],[42.22256962100013,37.31395090800011],[42.21120080500006,37.32490631100008],[42.19301070100019,37.313227437000094],[42.17854130000015,37.306302795000036],[42.12831180900011,37.25328277600012],[42.05296757000021,37.19664540600003],[42.00924930900006,37.1756130990001],[41.896365067000175,37.15428342000011],[41.479772583000084,37.07556752600014],[41.20133996600006,37.064973857000055],[41.17973921700016,37.06962473600011],[41.13509078000007,37.0842491660001],[40.896449015000115,37.122696432000126],[40.708966919000176,37.100475566],[40.659460897000116,37.08525685700006],[40.52572229000006,37.02588063600005],[40.47983361800013,37.01515777600012],[40.45699263500009,37.01412424700014],[40.435185180000104,37.010610250000084],[40.41389449100009,37.0040215050001],[40.39374068200013,36.99402211500008],[40.26140900600015,36.92278468300019],[40.19013553900018,36.884416403],[40.15272180200023,36.87036041300017],[40.115204712000065,36.864727682000066],[40.079237915000164,36.85485748300006],[39.97981246000003,36.80695343100014],[39.76525191300007,36.742151184000036],[39.44170763300022,36.6923726940001],[39.239599243000015,36.66127756700017],[39.18585575300014,36.659520569000094],[39.03217004400008,36.701171774000024],[38.979976848000064,36.698174540000096],[38.957962687000105,36.69290354500008],[38.795388631000066,36.68665069600014],[38.72500533000013,36.69393707300004],[38.664130494000084,36.71951690700008],[38.635191663000086,36.74403945900014],[38.52935835800017,36.83372182200013],[38.47995568900015,36.85573598200001],[38.28988977000009,36.90170216900019],[38.22426070200006,36.90839426700002],[38.19005090300007,36.90552622500003],[38.12297489400012,36.88462310800007],[38.026005169000115,36.83500562500002],[38.007943156000096,36.82576365100006],[37.98003788200012,36.819665833],[37.81973758900003,36.76054799400005],[37.65406294800002,36.73212595700012],[37.59339481600014,36.71052520800005],[37.4461169840001,36.63419911700011],[37.404465780000095,36.634457500000096],[37.241891724000226,36.658590393000125],[37.21967085800011,36.65714345300013],[37.15610884600002,36.643914287000044],[37.13740197700022,36.64587799100018],[37.12096887200019,36.64990875299999],[37.10443241400017,36.65099395700015],[37.08562219300009,36.644172669000035],[37.07011926300018,36.63151194300018],[37.06236779800017,36.622106832000114],[37.05306604000023,36.61993642200004],[37.033325643000154,36.62872141500013],[37.01451542200007,36.64226064100011],[37.01079471800002,36.65373280900012],[37.019476359000095,36.68582387300013],[37.0184428310001,36.706649475000106],[37.01058801200011,36.71951690700008],[36.98009891800021,36.74225453700016],[36.96469934100023,36.75383005800001],[36.9458891200002,36.76266672800001],[36.9259420170001,36.76897125300003],[36.906821736000126,36.7725886030001],[36.84367313700014,36.77584421800019],[36.65956262500018,36.827243022000076],[36.65856815600014,36.82752065100014],[36.6491630460001,36.82855417900011],[36.63986128800016,36.828089091],[36.64327193200009,36.80364613900015],[36.63200646900023,36.78431915300011],[36.615676717000184,36.76659413700018],[36.60327437400022,36.74695709300015],[36.59893355300002,36.72478790300012],[36.59810673000001,36.705460918000156],[36.594696085000095,36.68582387300013],[36.58281050700006,36.66241444900008],[36.569271281000084,36.620143127000105],[36.56999475100011,36.575701396000014],[36.56534387200011,36.53249989900017],[36.53547489400009,36.4940009560001],[36.531237427000036,36.479014791000154],[36.533821248000066,36.46247833300005],[36.55273482300018,36.40816640300001],[36.558005819000215,36.400621643000065],[36.565033814000145,36.395609030000074],[36.58084680200014,36.389872945000135],[36.58570438600023,36.38703074200005],[36.590561971000085,36.38036448200013],[36.593352498000144,36.37349151600007],[36.59448938000011,36.36594675700003],[36.594282674000084,36.35711008700012],[36.5877714440002,36.342123922000056],[36.5821903890002,36.33308054700011],[36.57764286300008,36.33287384100013],[36.5877714440002,36.32481231700014],[36.62074100700008,36.32202179000007],[36.6370707610001,36.316802470000155],[36.648646281000225,36.305898743000014],[36.64876116200016,36.30571856100012],[36.6584648030001,36.29049916600003],[36.665492798000145,36.274014384000154],[36.669110148000215,36.2598550420001],[36.67004032400004,36.23732411700017],[36.664252563000076,36.22900421100012],[36.59345585100007,36.21810048500005],[36.57443892500007,36.21835886700002],[36.49857792200006,36.2278673310001],[36.480181111000064,36.22554189099999],[36.46891564900014,36.22238962800013],[36.465298299000125,36.215930074000156],[36.463954712000174,36.208798726000126],[36.45920048000008,36.20311432000009],[36.4507255450001,36.19991038000002],[36.44524784300009,36.19991038000002],[36.43925337700014,36.201408997000115],[36.41186486800021,36.20445790700013],[36.39811893700019,36.208230286000074],[36.38561324100007,36.21546498600004],[36.373004191000035,36.22760894800014],[36.361428670000095,36.21815216000006],[36.3757947190002,36.20450958300016],[36.37445113100014,36.1958796190001],[36.36628625500011,36.18921335800012],[36.36049849400015,36.18166860000015],[36.35863814300014,36.16699249300016],[36.35553755700019,36.022401835],[36.3580180260001,35.993979798000154],[36.33672733500012,35.988243713000095],[36.29734989400012,36.000749411000086],[36.277506144000114,35.99423818000004],[36.277506144000114,35.994186504000126],[36.27740279100007,35.99403147400006],[36.27740279100007,35.993979798000154],[36.26903120900013,35.95873647100008],[36.2531148680001,35.95563588500015],[36.22903365100015,35.961165263000126],[36.19689090900013,35.95170847600018],[36.17487674900022,35.92266632100008],[36.16877893100016,35.852076315000105],[36.15761682100012,35.82256907200018],[36.155307557000214,35.82223204400019],[36.13849654100014,35.819778545000034],[36.08030887900022,35.85419504800008],[36.050749959000115,35.86540883400012],[36.019434041000096,35.866183981000134],[36.003931111000185,35.86918121400005],[35.99235559100012,35.877346090000074],[35.99008182800011,35.88928334600011],[35.9930790600001,35.90235748300016],[35.992769002000074,35.91527659100008],[35.98026330600007,35.92685211200002],[35.96072961500013,35.92437164300004],[35.94057580600017,35.918377177000124],[35.920835409000205,35.91512156200004],[35.91130541888409,35.917750432794705],[35.91130618600019,35.91775136900013],[35.91138756600017,35.91787344000009],[35.922699415000146,35.93158600500011],[35.966075066000116,35.993638414000074],[35.976735873000024,36.00096263200005],[35.97543379000015,36.018500067],[35.94841556100019,36.08783600500006],[35.8782658210001,36.182074286000145],[35.864512566000116,36.19684479400002],[35.85222415500007,36.213527736000074],[35.840993686000076,36.244533596000096],[35.826914910000106,36.257554429],[35.81080162900011,36.26959870000009],[35.798594597000175,36.281683661],[35.78736412900017,36.30426666900017],[35.78874759200008,36.32025788000008],[35.81592858200017,36.35301341400019],[35.82447350400017,36.36107005400011],[35.83423912900011,36.36627838700012],[35.844981316000116,36.36896393400009],[35.8567814460001,36.36977773600002],[35.86182701900023,36.37352122600005],[35.87354576900012,36.39769114800005],[35.88184655000012,36.404689846000124],[35.89942467500011,36.412298895000056],[35.90845787900011,36.418158270000035],[35.91325931100002,36.42719147300012],[35.91871178500017,36.44818756700006],[35.930837436000076,36.45457591400018],[35.93555748800006,36.459458726000044],[35.942393425000056,36.46434153900013],[35.981781446000156,36.47565338700009],[35.99024498800011,36.479641018000095],[36.037445509000094,36.52704498900012],[36.04493248800017,36.53766510600015],[36.05543053500011,36.538275458000115],[36.16293379000015,36.593410549000154],[36.17872155000012,36.596340236000074],[36.18913821700019,36.60398997600011],[36.201182488000114,36.62197500200013],[36.21119225400017,36.64240143400012],[36.216156446000156,36.65778229400014],[36.21558678500017,36.67047760600012],[36.21159915500019,36.67991771000014],[36.20655358200017,36.688706773000106],[36.2024845710001,36.69936758000013],[36.20191491000011,36.706284898000135],[36.2024845710001,36.76919179900007],[36.198741082000055,36.784572658000016],[36.188975457000225,36.80174388200013],[36.12989342500012,36.869289455000015],[36.095469597000175,36.897121486000074],[36.05860436300011,36.918443101000136],[36.02027428500017,36.92633698100012],[35.985036655000016,36.91559479400008],[35.95085696700002,36.891017971000096],[35.893809441000116,36.834906317000055],[35.88013756600011,36.82591380400005],[35.863617384000094,36.82225169500002],[35.853851759000094,36.81582265800007],[35.82064863400015,36.78514232],[35.80543053500017,36.77509186400003],[35.76710045700017,36.767726955000015],[35.684092644000174,36.76463450700014],[35.64771569100017,36.75397370000009],[35.636241082000225,36.74461497600008],[35.624522332000225,36.726019598000065],[35.61353600400011,36.719875393000095],[35.61744225400011,36.72679271],[35.61817467500012,36.73163483300006],[35.615000847000175,36.73566315300003],[35.606700066000165,36.74038320500013],[35.596853061000076,36.72492096600003],[35.58228600400011,36.71279531500012],[35.57300866000017,36.70066966400013],[35.5794376960001,36.68512604400003],[35.59449303500011,36.70172760600009],[35.616872592000135,36.69623444200006],[35.619802280000066,36.71238841400013],[35.62549889400023,36.71092357000008],[35.62916100400017,36.70823802299999],[35.63168379000009,36.70433177299999],[35.634043816000116,36.69936758000013],[35.63868248800006,36.706284898000135],[35.64047285200016,36.71336497599999],[35.639170769000174,36.72036367400007],[35.634043816000116,36.726711330000015],[35.64812259200019,36.73322174700009],[35.653819207000055,36.727362372000144],[35.657399936000076,36.71751536700013],[35.66480553500011,36.71238841400013],[35.675791863000114,36.71531810100005],[35.68555748800023,36.720770575000174],[35.69605553500011,36.72394440300015],[35.70915774800008,36.719875393000095],[35.65015709700012,36.69782135600009],[35.62256920700011,36.680731512000065],[35.606700066000165,36.65778229400014],[35.608653191000116,36.646877346000096],[35.62208092500012,36.65424225500008],[35.66675866000017,36.69611237200009],[35.680023634000094,36.703070380000085],[35.69556725400011,36.70620351800015],[35.65796959700012,36.67519765800013],[35.65219160200015,36.66673411700019],[35.64372806100018,36.648871161000116],[35.63746178500017,36.641017971000124],[35.63314863400015,36.630926825000174],[35.632985873000194,36.61815013200014],[35.63135826900006,36.60716380400008],[35.62354576900006,36.602525132000046],[35.61394290500019,36.600531317],[35.59880618600019,36.591498114],[35.58936608200011,36.589504299000154],[35.55713951900023,36.58746979400003],[35.54468834700012,36.589504299000154],[35.51335696700008,36.61298248900012],[35.50367272200012,36.616848049000126],[35.490000847000175,36.61391836100002],[35.48121178500011,36.60724518400015],[35.478688998000194,36.59853750200007],[35.48853600400011,36.597072658000016],[35.49683678500011,36.59442780200011],[35.53101647200017,36.58270905200014],[35.488780144000174,36.59202708500008],[35.445485873000194,36.596340236000074],[35.43718509200019,36.59422435100008],[35.413259311000076,36.583685614],[35.40805097700016,36.579291083000115],[35.40447024800008,36.571926174000126],[35.395355665000096,36.567613023000135],[35.37403405000012,36.56159088700012],[35.34799238400014,36.544378973],[35.346039259000094,36.54108307500014],[35.33578535200015,36.54559967700011],[35.3201603520001,36.564683335000026],[35.30884850400011,36.569037177],[35.294688347000175,36.572495835],[35.041840040000096,36.69521719],[35.01417076900012,36.703070380000085],[34.9822697270001,36.720770575000174],[34.962412957000055,36.726711330000015],[34.946462436000076,36.727972723000036],[34.933278842000135,36.72748444200012],[34.929860873000194,36.727362372000144],[34.9139103520001,36.724676825000174],[34.90040123800022,36.719875393000095],[34.90259850400011,36.72451406500004],[34.90788821700019,36.74038320500013],[34.89356530000012,36.74599844000015],[34.85254967500012,36.781317450000174],[34.770762566000116,36.816066799000126],[34.764984571000156,36.80857982000008],[34.73585045700011,36.82168203300013],[34.69288170700016,36.81386953300013],[34.626719597000175,36.788763739000146],[34.59652754000015,36.78506094],[34.58513431100019,36.781317450000174],[34.55469811300023,36.76764557500003],[34.54883873800011,36.76337311400012],[34.53907311300023,36.74457428600009],[34.533864780000066,36.74038320500013],[34.503184441000165,36.726711330000015],[34.41521243600013,36.66290924700017],[34.30746504000015,36.60858795800014],[34.276215040000096,36.58698151200003],[34.19044030000012,36.4985212260001],[34.18165123800006,36.48338450700011],[34.17774498800006,36.47337474200013],[34.16822350400017,36.466945705000036],[34.14747155000006,36.45917389500012],[34.11198978000019,36.429592190000065],[34.07732181100019,36.41388580900009],[34.07488040500019,36.38727448100015],[34.0799259770001,36.35553620000012],[34.077891472000175,36.32884349200016],[34.05779056100002,36.31590403900016],[34.0271916020001,36.310777085000055],[33.999766472000175,36.30292389500009],[33.98926842500006,36.281683661],[33.99480228000019,36.28327057500003],[33.99830162900011,36.2860375020001],[33.99586022200017,36.279527085],[33.97706139400012,36.259426174000154],[33.96876061300023,36.246893622000144],[33.96517988400015,36.23236725500011],[33.964366082000225,36.22052643400015],[33.95899498800011,36.213568427000055],[33.94141686300017,36.21336497600011],[33.94141686300017,36.219631252000156],[33.950938347000175,36.23769765800007],[33.94597415500019,36.265204169000114],[33.93091881600017,36.290472723000065],[33.91041100400011,36.301499742000104],[33.89527428500011,36.30556875200007],[33.88314863400015,36.31248607000008],[33.87110436300023,36.314886786000116],[33.85547936300023,36.30491771000011],[33.83765709700017,36.280422268000095],[33.82789147200012,36.27171458500002],[33.81104576900023,36.26740143400009],[33.81869550900015,36.26577383000007],[33.821787957000225,36.263983466000084],[33.82471764400006,36.25991445500012],[33.813731316000116,36.251654364000146],[33.79908287900011,36.23065827],[33.78687584700012,36.22638580900009],[33.77702884200019,36.225043036],[33.74284915500012,36.21336497600011],[33.73560631600017,36.208726304],[33.70525149800019,36.18170807500003],[33.700368686000076,36.17112864799999],[33.69385826900023,36.14411041900003],[33.68824303500017,36.13703034100017],[33.68531334700012,36.14321523600013],[33.660329623000194,36.17487213700012],[33.656586134000094,36.188666083000115],[33.64722741000011,36.192572333000115],[33.6341251960001,36.19033437700013],[33.61988366000017,36.185451565000065],[33.596527540000096,36.16876862200003],[33.57406660200016,36.14476146],[33.552256707000225,36.127508856000176],[33.53052819100017,36.13080475500011],[33.54420006600017,36.13703034100017],[33.54420006600017,36.14447663000006],[33.52100670700016,36.14663320500016],[33.47828209700011,36.155951239],[33.45826256600017,36.158148505],[33.436696811000076,36.154689846000096],[33.40113366000011,36.13983795800011],[33.386485222000175,36.13703034100017],[33.347829623000024,36.14789459800006],[33.32683353000019,36.150091864000146],[33.308360222000175,36.132228908000066],[33.286468946000156,36.12995026200012],[33.24195397200012,36.13080475500011],[33.21241295700005,36.12409088700015],[33.20093834700012,36.123358466000056],[33.188649936000076,36.12579987200017],[33.167246941000116,36.13495514500015],[33.15691165500012,36.13703034100017],[33.13404381600011,36.13178131700009],[33.12142988400015,36.11908600500011],[33.112152540000096,36.10342031500015],[33.09864342500012,36.08926015800013],[33.0877384770001,36.082831122000115],[33.08375084700012,36.08274974200013],[33.080414259000094,36.08588288000011],[33.07113691500015,36.08926015800013],[33.05836022200012,36.090643622000115],[33.02686608200011,36.08926015800013],[32.96045983200005,36.102687893000116],[32.94092858200011,36.10350169500013],[32.876719597000175,36.075140692],[32.865244988000114,36.07184479400014],[32.85670006600017,36.06098053600009],[32.80372155000006,36.02716705900009],[32.76059004000015,36.02948639500006],[32.670664910000106,36.04669830900018],[32.63233483200011,36.06195709800015],[32.57178795700022,36.09398021000014],[32.567881707000225,36.09609609600015],[32.53142337300008,36.098822333000115],[32.51343834700012,36.103013414000046],[32.437266472000175,36.13865794500002],[32.427012566000116,36.14760976800012],[32.41960696700008,36.15949127800017],[32.40202884200019,36.16551341400016],[32.38152103000007,36.17015208500011],[32.36548912900016,36.177964585],[32.318695509000094,36.22858307500008],[32.31031334700011,36.22947825700008],[32.30591881600017,36.23456452],[32.28728274800008,36.244818427000105],[32.282969597000175,36.250637111000074],[32.27898196700019,36.27903880400011],[32.27613366000017,36.28782786700016],[32.25269616000017,36.31533437700001],[32.19214928500017,36.35838450700005],[32.17994225400011,36.387152411],[32.17839603000007,36.39533112200009],[32.17432701900012,36.402411200000145],[32.16285241000017,36.41478099200019],[32.15162194100017,36.4303246110001],[32.148448113000114,36.433661200000024],[32.13502037900011,36.43821849200016],[32.13209069100017,36.43866608300005],[32.11451256600017,36.469671942],[32.10206139400023,36.48615143400017],[32.08716881600017,36.49331289300012],[32.026052280000016,36.54344310100011],[32.018809441000116,36.54653554900001],[32.0100203790001,36.547756252000035],[31.998708530000073,36.54791901200018],[31.987803582000055,36.549953518],[31.980153842000078,36.55438873900009],[31.974131707000225,36.558986721000124],[31.968272332000108,36.56159088700012],[31.928070509000094,36.56024811400012],[31.907969597000115,36.56264883000007],[31.899424675000116,36.572455145],[31.888031446000156,36.581122137000094],[31.862478061000186,36.588690497000144],[31.834646030000012,36.59235260600009],[31.81674238400015,36.589504299000154],[31.807383660000113,36.596828518000066],[31.76905358200011,36.61001211100002],[31.749359571000152,36.632269598000065],[31.736582879000107,36.642279364000146],[31.724294467000078,36.641017971000124],[31.70346113400009,36.64362213700004],[31.627614780000016,36.67084381700012],[31.610687696000156,36.68203359600015],[31.596202019000117,36.69570547100009],[31.407562696000152,36.76341380400011],[31.378591342000078,36.76764557500003],[31.3763126960001,36.79193756700003],[31.340830925000123,36.80857982000008],[30.939707879000107,36.85700104400014],[30.77588951900023,36.849554755000085],[30.748057488000057,36.85565827000006],[30.726898634000094,36.8658714860001],[30.686534050000123,36.891180731000055],[30.62859134200002,36.85956452000006],[30.601735873000024,36.83812083500011],[30.58765709700012,36.80707428600003],[30.574473504000167,36.78953685100008],[30.569834832000222,36.781317450000174],[30.569834832000222,36.75055573100009],[30.56462649800002,36.717962958000115],[30.56576582100016,36.70018138200005],[30.576670769000227,36.68512604400003],[30.576670769000227,36.678900458000086],[30.568858269000227,36.670599677],[30.562673373000194,36.66254303600006],[30.558360222000175,36.652329820000105],[30.556162957000108,36.63788483300006],[30.557871941000116,36.61961497599999],[30.563812696000095,36.609320380000085],[30.571055535000117,36.60114166900017],[30.576670769000227,36.589504299000154],[30.583506707000055,36.596340236000074],[30.58106530000012,36.57518138200008],[30.56723066500015,36.539862372000144],[30.569834832000222,36.528021552],[30.535980665000153,36.505194403000175],[30.520843946000156,36.489732164000046],[30.508799675000063,36.45429108300006],[30.486989780000183,36.426947333000086],[30.487966342000078,36.418158270000035],[30.47461998800017,36.40159739800005],[30.47632897200018,36.384222723000065],[30.487152540000157,36.370266018],[30.501638217000192,36.36359284100014],[30.494151238000224,36.349310614000146],[30.519867384000094,36.341864325000174],[30.50562584700017,36.327378648000106],[30.478770379000107,36.30857982000008],[30.466807488000057,36.28782786700016],[30.473643425000063,36.28782786700016],[30.478200717000018,36.29230377800003],[30.478851759000094,36.29193756700011],[30.48064212300008,36.28953685099999],[30.487966342000078,36.28782786700016],[30.477793816000112,36.279486395],[30.463877800000066,36.27114492400012],[30.45167076900006,36.26178620000009],[30.440765821000095,36.239325262000094],[30.42741946700019,36.22638580900009],[30.398610873000077,36.20595937700004],[30.400401238000224,36.248114325000145],[30.39600670700017,36.26552969000012],[30.38428795700005,36.27423737200002],[30.360524936000072,36.268622137000115],[30.254567905000187,36.308294989000146],[30.2337345710001,36.308905341000084],[30.15853925900009,36.29865143400015],[30.149261915000157,36.28986237200011],[30.14551842500012,36.27513255400011],[30.144704623000194,36.254339911000116],[30.13843834700018,36.254339911000116],[30.137217644000227,36.26064687700007],[30.13103274800008,36.27423737200002],[30.124766472000115,36.25507233300005],[30.124766472000115,36.246893622000144],[30.110606316000112,36.254339911000116],[30.11109459700017,36.247219143000066],[30.110606316000112,36.240057684000035],[30.073008660000113,36.246893622000144],[30.06560306100013,36.24994538000014],[30.057871941000112,36.25560130400014],[30.04818769600016,36.258775132],[30.03484134200002,36.254339911000116],[30.055918816000172,36.254339911000116],[30.055918816000172,36.246893622000144],[29.988454623000084,36.217759507],[29.97339928500017,36.219631252000156],[29.96127363400015,36.213853257],[29.950043165000153,36.214422919000135],[29.938324415000093,36.21767812700001],[29.92554772200012,36.219631252000156],[29.916514519000117,36.219061591000084],[29.911631707000222,36.217027085000055],[29.89820397200017,36.20595937700004],[29.881358269000234,36.19843170800006],[29.84400475400011,36.19139232],[29.830088738000228,36.185451565000065],[29.833343946000152,36.18447500200009],[29.836110873000024,36.18427155200014],[29.837575717000195,36.18284739800007],[29.836924675000063,36.177964585],[29.827321811000076,36.178045966000084],[29.8025822270001,36.17182038000011],[29.8025822270001,36.164984442],[29.82309004000015,36.164984442],[29.809580925000066,36.153998114000146],[29.79525800900009,36.145209052000084],[29.77955162900011,36.13934967700014],[29.761729363000228,36.13703034100017],[29.761729363000228,36.14447663000006],[29.767263217000075,36.14777252800009],[29.77019290500019,36.15082428600009],[29.772227410000113,36.154201565],[29.775401238000054,36.158148505],[29.762380405000187,36.15656159100014],[29.75928795700011,36.155015367000104],[29.75489342500012,36.15070221600011],[29.743418816000172,36.16095612200003],[29.73145592500006,36.164252020000056],[29.71924889400006,36.162665106000034],[29.70704186300011,36.158148505],[29.703868035000113,36.15444570500013],[29.70313561300011,36.14996979400017],[29.699961785000113,36.14614492400007],[29.689300977000098,36.14447663000006],[29.688731316000116,36.1412621110001],[29.672373894000117,36.123358466000056],[29.668223504000167,36.143784898000106],[29.633962436000186,36.15704987200005],[29.623871290000153,36.177964585],[29.637380405000016,36.172430731000176],[29.643239780000073,36.177923895],[29.642100457000222,36.186957098000114],[29.634532097000175,36.19163646000014],[29.58350670700011,36.185451565000065],[29.58350670700011,36.19163646000014],[29.592539910000113,36.19578685100008],[29.602305535000113,36.198675848],[29.612966342000078,36.19985586100013],[29.623871290000153,36.19912344],[29.60222415500007,36.20701732],[29.521494988000228,36.20595937700004],[29.494476759000094,36.211004950000145],[29.432139519000117,36.240057684000035],[29.42042076900023,36.230617580000015],[29.415212436000015,36.2397321640001],[29.411631707000055,36.26740143400009],[29.405772332000222,36.26015859600007],[29.401866082000222,36.26178620000009],[29.398122592000192,36.266180731000176],[29.391856316000112,36.26740143400009],[29.38160241000011,36.26390208500011],[29.377614780000016,36.26162344000012],[29.375254754000164,36.25885651200018],[29.369965040000093,36.254339911000116],[29.364919467000078,36.24827708500011],[29.361338738000118,36.24152252800009],[29.35710696700019,36.23566315300015],[29.349619988000114,36.23261139500015],[29.340830925000063,36.23737213700015],[29.334727410000166,36.24770742400015],[29.329356316000116,36.25409577000009],[29.322276238000224,36.246893622000144],[29.26124108200006,36.29356517100014],[29.256683790000096,36.29702383000013],[29.24781334700017,36.31171295800014],[29.234629754000107,36.32428620000003],[29.174978061000047,36.33982982000005],[29.158457879000135,36.35675690300003],[29.144704623000052,36.349310614000146],[29.140798373000052,36.362453518],[29.141774936000104,36.36542389500011],[29.144704623000052,36.36977773600002],[29.144704623000052,36.377183335],[29.116872592000078,36.377183335],[29.12427819100014,36.38344961100013],[29.11280358200011,36.38939036700015],[29.106211785000145,36.39085521000014],[29.096364780000012,36.390936591000106],[29.101410352000045,36.40021393400015],[29.109060092000075,36.40648021000011],[29.11890709700009,36.41010163000008],[29.130381707000137,36.411363022999986],[29.129893425000063,36.41596100500011],[29.129161004000135,36.416896877],[29.127696160000085,36.41681549700003],[29.12427819100014,36.418158270000035],[29.130137566000112,36.43650950700008],[29.124196811000072,36.45359935100011],[29.111338738000146,36.46678294500008],[29.096364780000012,36.473456122000115],[29.096364780000012,36.479641018000095],[29.10954837300008,36.48851146000014],[29.115570509000065,36.491359768000066],[29.12427819100014,36.49331289300012],[29.12427819100014,36.50079987200009],[29.120290561000072,36.535630601000136],[29.11491946700002,36.552679755000085],[29.10377037900011,36.54791901200018],[29.096364780000012,36.54791901200018],[29.084320509000094,36.56024811400012],[29.036387566000087,36.545314846000096],[29.014414910000085,36.54791901200018],[29.032725457000144,36.55182526200018],[29.036875847000093,36.56146881700015],[29.03142337300005,36.57477448100015],[29.020518425000063,36.589504299000154],[29.026133660000085,36.59625885600009],[29.03500410200013,36.614691473000114],[29.041758660000138,36.624253648000106],[29.055837436000104,36.61424388200014],[29.068207227000133,36.6239281270001],[29.080902540000096,36.63861725499999],[29.096364780000012,36.64411041900003],[29.096364780000012,36.63788483300006],[29.09058678500014,36.62710195500016],[29.098806186000047,36.62360260600015],[29.110606316000116,36.62636953300013],[29.116872592000078,36.634222723],[29.114512566000116,36.64313385600015],[29.10922285200013,36.6520042990001],[29.10238691500012,36.65961334800012],[29.096364780000012,36.66522858300014],[29.0341903,36.70099518400015],[28.956309441000116,36.72752513200011],[28.946136915000093,36.73696523600013],[28.93897545700014,36.75128815300012],[28.922699415000096,36.74135976800004],[28.9041447270001,36.72304922100015],[28.890879754000082,36.71238841400013],[28.890879754000082,36.70620351800015],[28.897715691000084,36.70620351800015],[28.897715691000084,36.69936758000013],[28.87891686300014,36.69806549700002],[28.870860222000115,36.69623444200006],[28.86353600400011,36.69257233300003],[28.860036655000098,36.68423086100013],[28.862640821000095,36.67511627800015],[28.86247806100005,36.66791413000011],[28.849945509000065,36.66522858300014],[28.854991082000083,36.656642971000124],[28.85792076900009,36.65375397300009],[28.86353600400011,36.650946356000034],[28.856781446000074,36.64411041900003],[28.866872592000046,36.63491445500016],[28.87037194100012,36.63051992400007],[28.876638217000078,36.63051992400007],[28.882334832000137,36.64061107000013],[28.888031446000127,36.648423570000126],[28.890147332000137,36.6576195330001],[28.88404381600014,36.67145416900008],[28.90170332100007,36.658270575000145],[28.895355665000125,36.641424872000144],[28.878428582000137,36.62592194200012],[28.86353600400011,36.616848049000126],[28.86963951900009,36.606634833],[28.858734571000095,36.60130442900014],[28.84156334700009,36.60016510600009],[28.82886803500011,36.602525132000046],[28.818614129000107,36.61172109600004],[28.818614129000107,36.62079498900012],[28.82715905000003,36.62775299700011],[28.842539910000053,36.63051992400007],[28.842539910000053,36.63788483300006],[28.825450066000116,36.64472077000009],[28.815196160000088,36.65180084800015],[28.805023634000037,36.65525950700014],[28.787852410000113,36.650946356000034],[28.78272545700011,36.67739492400004],[28.746348504000107,36.697699286000116],[28.701670769000142,36.705064195000105],[28.671722852000098,36.69257233300003],[28.664886915000068,36.69257233300003],[28.65992272200012,36.71100495000006],[28.64918053500011,36.71832916900014],[28.635915561000076,36.714504299000126],[28.623383009000094,36.69936758000013],[28.616221550000034,36.70595937700001],[28.603526238000086,36.73354726800012],[28.612559441000087,36.74713776200018],[28.61670983200011,36.76699453300007],[28.61410566500012,36.78534577000012],[28.603526238000086,36.79498932500012],[28.60303795700008,36.79962799700003],[28.604502800000063,36.800848700000145],[28.60718834700012,36.800848700000145],[28.610362175000088,36.80174388200013],[28.60840905000006,36.804754950000145],[28.606293165000125,36.806870835000055],[28.60621178500014,36.810126044000114],[28.610362175000088,36.816066799000126],[28.603526238000086,36.816066799000126],[28.598887566000144,36.806870835000055],[28.59742272200009,36.80255768400015],[28.596690300000063,36.79498932500012],[28.59107506600014,36.79901764500006],[28.590993686000076,36.8001976580001],[28.588552280000044,36.8080101580001],[28.575856967000078,36.81952545800011],[28.54615319100014,36.823431708000115],[28.52442467500009,36.81329987200017],[28.52784264400009,36.788763739000146],[28.51775149800002,36.79564036700005],[28.50798587300008,36.79767487200009],[28.497894727000126,36.7984886740001],[28.486827019000085,36.80174388200013],[28.500498894000117,36.80857982000008],[28.500498894000117,36.816066799000126],[28.47803795700011,36.81598541900014],[28.46387780000009,36.81875234600001],[28.45606530000009,36.828517971000146],[28.452647332000083,36.849554755000085],[28.459483269000113,36.84910716400016],[28.464121941000144,36.849920966000084],[28.466319207000108,36.85333893400009],[28.465179884000094,36.859361070000105],[28.462575717000107,36.86204661700018],[28.460134311000076,36.86375560099999],[28.458832227000073,36.866929429000045],[28.45671634200005,36.87750885600012],[28.45199629000004,36.88361237200009],[28.447438998000106,36.88304271000011],[28.44516035200013,36.87376536700016],[28.4362085300001,36.86473216400016],[28.416188998000024,36.85968659100003],[28.387217644000117,36.85700104400014],[28.376719597000143,36.85443756700014],[28.37745201900009,36.84837474200005],[28.38379967500003,36.84137604400017],[28.390635613000143,36.83592357000013],[28.39673912900014,36.83539459800015],[28.405121290000096,36.837551174000154],[28.414724155000073,36.83710358300006],[28.424815300000034,36.82908763200011],[28.41423587300008,36.81460195500007],[28.406504754000082,36.799750067],[28.396006707000108,36.78949616100009],[28.376963738000114,36.788763739000146],[28.32496178500014,36.810126044000114],[28.314952019000145,36.816066799000126],[28.30876712300008,36.816066799000126],[28.31283613400006,36.800360419000135],[28.314952019000145,36.79498932500012],[28.28858483200005,36.793687242000104],[28.278168165000064,36.79645416900017],[28.273936394000145,36.80516185100005],[28.278330925000034,36.81415436400006],[28.288910352000073,36.818426825000174],[28.314952019000145,36.82225169500002],[28.314952019000145,36.82908763200011],[28.302744988000086,36.835679429],[28.28858483200005,36.84589264500012],[28.27312259200005,36.851996161000116],[28.257172071000127,36.84617747600005],[28.243174675000063,36.82977936400005],[28.236664259000065,36.81321849200019],[28.239512566000116,36.798814195000105],[28.253428582000083,36.788763739000146],[28.248871290000068,36.7668317730001],[28.28858483200005,36.742580471000124],[28.295095248000052,36.719875393000095],[28.28305097700013,36.72662995000003],[28.267263217000107,36.730902411000145],[28.253103061000076,36.72785065300006],[28.24659264400009,36.71238841400013],[28.240000847000086,36.71548086100002],[28.233571811000104,36.719875393000095],[28.233246290000064,36.71503327],[28.231944207000083,36.71185944200015],[28.22950280000003,36.709295966000056],[28.225433790000068,36.70620351800015],[28.23031660200013,36.7047386740001],[28.231618686000047,36.70457591400013],[28.233571811000104,36.69936758000013],[28.18189537900014,36.68463776200004],[28.16228274800008,36.672674872000115],[28.144297722000147,36.650946356000034],[28.1307072270001,36.62897370000003],[28.11150149800005,36.604193427000055],[28.08814537900014,36.58905670800006],[28.061696811000076,36.596340236000074],[28.057871941000144,36.58999258000013],[28.055023634000122,36.58657461100013],[28.05062910200013,36.58466217700008],[28.041840040000068,36.58270905200014],[28.04395592500006,36.57949453300007],[28.04615319100006,36.572495835],[28.048024936000044,36.569037177],[28.03589928500014,36.564764716000084],[28.025889519000145,36.56370677300013],[28.01832116000011,36.56704336100016],[28.013845248000052,36.57587311400012],[28.00367272200009,36.56191640800013],[27.99089603000004,36.55975983300014],[27.9777124360001,36.56574127800015],[27.966075066000087,36.57587311400012],[27.968028191000144,36.578924872000115],[27.97087649800008,36.58641185100008],[27.97291100400011,36.589504299000154],[27.967621290000125,36.592596747000144],[27.96461022200012,36.59564850500014],[27.959239129000082,36.602525132000046],[28.034434441000087,36.602525132000046],[28.053965691000144,36.60960521000011],[28.065440300000088,36.61953359600001],[28.075368686000104,36.63125234600001],[28.08961022200012,36.64411041900003],[28.07593834700006,36.65778229400014],[28.056651238000143,36.64301178600008],[28.048024936000044,36.63788483300006],[28.048024936000044,36.64411041900003],[28.057790561000076,36.652777411000116],[28.061208530000073,36.664740302000055],[28.057953321000124,36.6766625020001],[28.048024936000044,36.68512604400003],[28.037933790000068,36.69061920800006],[28.03532962300008,36.687567450000145],[28.034434441000087,36.67519765800013],[28.029633009000094,36.670355536000145],[28.01889082100007,36.67133209800012],[28.00733483200014,36.67519765800013],[28.00017337300011,36.678900458000086],[27.991465691000116,36.67584870000017],[27.98015384200005,36.67584870000017],[27.97022545700014,36.67983633000016],[27.966075066000087,36.688788153000175],[27.971202019000117,36.69253164300004],[28.00700931100002,36.69936758000013],[28.00017337300011,36.70620351800015],[28.0213322270001,36.705064195000105],[28.02751712300008,36.70620351800015],[28.03223717500009,36.709214585000055],[28.038259311000104,36.71405670800014],[28.04249108200011,36.71845123900012],[28.041840040000068,36.719875393000095],[28.079763217000078,36.72207265800007],[28.08961022200012,36.726711330000015],[28.085948113000143,36.710598049000126],[28.100596550000063,36.70962148600016],[28.116384311000104,36.71881745000003],[28.116872592000107,36.73354726800012],[28.107432488000086,36.73920319200012],[28.087657097000147,36.740871486000124],[28.08220462300011,36.74713776200018],[28.08415774800008,36.75372955900015],[28.091644727000126,36.75934479400014],[28.103282097000143,36.76764557500003],[28.110036655000073,36.77509186400003],[28.11345462300008,36.7682152360001],[28.117523634000065,36.763861395],[28.13054446700005,36.75397370000009],[28.12525475400005,36.77130768400018],[28.123708530000016,36.79189687700004],[28.11841881600014,36.80060455900009],[28.106700066000144,36.802964585000055],[28.09498131600006,36.80141836100002],[28.08627363400009,36.79669830900012],[28.06910241000014,36.77509186400003],[28.047211134000122,36.76333242400012],[28.03931725400014,36.76447174700017],[28.034434441000087,36.77509186400003],[28.019704623000077,36.76312897300009],[27.98072350400011,36.75381094000012],[27.966075066000087,36.74713776200018],[27.959239129000082,36.74713776200018],[27.95411217500006,36.75958893400009],[27.944672071000042,36.75625234600007],[27.9323022800001,36.7465681010001],[27.917653842000103,36.74038320500013],[27.912445509000094,36.754136460000055],[27.905446811000047,36.75287506700015],[27.897715691000116,36.74534739799999],[27.89031009200005,36.74038320500013],[27.88314863400009,36.743841864000146],[27.876800977000073,36.75079987200003],[27.87037194100014,36.75259023600002],[27.863047722000147,36.74038320500013],[27.856211785000113,36.74038320500013],[27.84376061300011,36.74892812700007],[27.826182488000086,36.7574730490001],[27.80648847700013,36.76080963700012],[27.78785241000014,36.75397370000009],[27.78785241000014,36.76080963700012],[27.776052280000073,36.755926825000145],[27.76449629000004,36.75649648600002],[27.75171959700009,36.75922272300009],[27.73609459700012,36.76080963700012],[27.71941165500007,36.75625234600007],[27.698496941000116,36.73419830900017],[27.684255405000016,36.726711330000015],[27.684255405000016,36.719875393000095],[27.6868595710001,36.711127020000035],[27.673106316000087,36.67963288],[27.671153191000144,36.65778229400014],[27.637950066000116,36.67133209800012],[27.619883660000113,36.67645905200014],[27.60303795700011,36.678900458000086],[27.585134311000047,36.67706940300009],[27.570323113000086,36.67381419500005],[27.559743686000047,36.674627997000144],[27.55453535200013,36.68512604400003],[27.486338738000114,36.66522858300014],[27.48194420700014,36.65835195500013],[27.4777124360001,36.65346914300015],[27.472666863000086,36.650946356000034],[27.468028191000144,36.652980861000074],[27.4557397800001,36.66290924700017],[27.448415561000104,36.66522858300014],[27.425629102000073,36.66864655200014],[27.415782097000147,36.66901276200015],[27.404307488000114,36.66522858300014],[27.402028842000046,36.677476304000024],[27.394053582000083,36.68414948100014],[27.382985873000052,36.684759833000115],[27.370290561000072,36.678900458000086],[27.37061608200011,36.683172919000086],[27.36915123800014,36.68447500200007],[27.366384311000072,36.68447500200007],[27.36280358200011,36.68512604400003],[27.36866295700014,36.69135163],[27.36866295700014,36.6974144550001],[27.36402428500011,36.70258209800009],[27.355804884000122,36.70620351800015],[27.355804884000122,36.71238841400013],[27.368337436000044,36.70823802299999],[27.384776238000114,36.70502350500011],[27.401621941000116,36.7047386740001],[27.414317254000082,36.709295966000056],[27.423106316000144,36.71967194200011],[27.42725670700008,36.73566315300003],[27.43848717500009,36.74713776200018],[27.449554884000122,36.75397370000009],[27.458832227000073,36.75568268400009],[27.48316491000014,36.75397370000009],[27.556651238000143,36.762681382],[27.592458530000073,36.76080963700012],[27.611501498000052,36.76532623900006],[27.61695397200009,36.776190497000144],[27.617849155000073,36.78961823100015],[27.623383009000094,36.80174388200013],[27.64535566500012,36.80646393400015],[27.69117272200012,36.784328518000066],[27.705414259000122,36.788763739000146],[27.721202019000057,36.78168366100009],[27.73519941500012,36.782416083000115],[27.748220248000106,36.78440989800005],[27.76002037900008,36.781317450000174],[27.785655144000142,36.801092841000084],[27.79908287900014,36.806626695000105],[27.88648522200012,36.808823960000026],[27.897146030000044,36.81232330900009],[27.903656446000127,36.805812893],[27.91968834700012,36.79970937700001],[27.939952019000142,36.79564036700005],[27.959239129000082,36.79498932500012],[27.994151238000086,36.798407294000114],[28.010508660000113,36.79433828300016],[28.02751712300008,36.781317450000174],[28.03077233200011,36.791734117000075],[28.036875847000115,36.797349351000044],[28.055430535000113,36.80857982000008],[28.049082879000082,36.82062409100017],[28.03956139400009,36.82664622599999],[28.025726759000094,36.82880280200008],[28.00700931100002,36.82908763200011],[28.013845248000052,36.83592357000013],[28.023285352000073,36.83323802300005],[28.024587436000044,36.83909739800002],[28.0187280610001,36.848618882],[28.00700931100002,36.85700104400014],[28.011566602000073,36.85765208500002],[28.014496290000096,36.85907623900009],[28.017344597000115,36.86107005400011],[28.02125084700012,36.86322663000011],[28.0286564460001,36.86017487200002],[28.036306186000047,36.86261627800014],[28.04493248800014,36.867254950000174],[28.055430535000113,36.870672919000086],[28.055430535000113,36.87689850500006],[28.035492384000122,36.89337799700003],[28.02751712300008,36.90253327000012],[28.02125084700012,36.9116071640001],[28.034434441000087,36.90420156500012],[28.041840040000068,36.9116071640001],[28.03589928500014,36.91461823100012],[28.033213738000143,36.91766998900012],[28.031097852000045,36.921332098000065],[28.02751712300008,36.925930080000015],[28.03589928500014,36.92544179900001],[28.053233269000117,36.92649974200016],[28.061696811000076,36.925930080000015],[28.061696811000076,36.93211497600007],[28.041840040000068,36.93211497600007],[28.041840040000068,36.938910223],[28.065440300000088,36.939276434000114],[28.075043165000064,36.93740469000015],[28.08220462300011,36.93211497600007],[28.088552280000044,36.93667226800004],[28.09351647200009,36.937892971000124],[28.098155144000117,36.93622467700011],[28.103282097000143,36.93211497600007],[28.110036655000073,36.93211497600007],[28.120127800000063,36.93768952000009],[28.1419376960001,36.92869700700005],[28.151703321000127,36.93211497600007],[28.15723717500006,36.93211497600007],[28.1591903,36.924627997000115],[28.165293816000084,36.9116071640001],[28.168142123000052,36.916815497000115],[28.168467644000142,36.91889069200012],[28.167165561000076,36.9208031270001],[28.165293816000084,36.925930080000015],[28.168467644000142,36.9301618510001],[28.168142123000052,36.93341705900015],[28.164235873000052,36.93618398600013],[28.15723717500006,36.938910223],[28.15723717500006,36.94578685100011],[28.166514519000113,36.94692617400012],[28.174489780000073,36.94599030200005],[28.18067467500003,36.943304755000085],[28.185231967000078,36.938910223],[28.205088738000082,36.96629466400016],[28.212412957000083,36.973089911],[28.212412957000083,36.980536200000145],[28.198903842000107,36.980536200000145],[28.20687910200007,36.99017975500014],[28.212412957000083,37.00043366100006],[28.228526238000143,36.99054596600014],[28.244639519000117,36.98818594],[28.253103061000076,36.993719794000114],[28.24659264400009,37.00787995000003],[28.300059441000112,37.024969794000086],[28.32960045700008,37.030462958000115],[28.329356316000116,37.036769924000154],[28.322764519000142,37.04385000200001],[28.314952019000145,37.04881419500008],[28.304698113000114,37.05084870000009],[28.17432701900009,37.03514232000013],[28.126231316000116,37.035874742000075],[28.10726972700013,37.03213125200013],[28.110036655000073,37.02147044499999],[28.110036655000073,37.014105536],[28.092946811000044,37.021429755],[27.986582879000135,37.03514232000013],[27.975596550000088,37.03229401200018],[27.96314537900008,37.023586330000015],[27.9518335300001,37.02147044499999],[27.94092858200011,37.02220286700013],[27.911387566000144,37.027736721000124],[27.886241082000083,37.02619049700009],[27.804698113000143,37.004584052],[27.7941186860001,37.00787995000003],[27.78785241000014,37.00787995000003],[27.786387566000087,37.003566799000126],[27.780446811000047,36.99359772300015],[27.772959832000083,36.99583567900011],[27.76286868600002,36.997300522999986],[27.751231316000116,36.99689362200017],[27.739512566000116,36.99359772300015],[27.719737175,37.00519440300015],[27.687673373000024,37.005438544000114],[27.65577233200011,36.99652741100006],[27.636485222000058,36.980536200000145],[27.61801191500004,36.98924388200005],[27.590342644000145,36.998277085000055],[27.56714928500011,36.996649481000034],[27.562022332000108,36.973089911],[27.538747592000078,36.986721096000124],[27.528330925000088,36.99127838700018],[27.514170769000085,36.99359772300015],[27.483734571000127,36.99079010600009],[27.472666863000086,36.99359772300015],[27.46273847700007,37.001125393],[27.44483483200011,37.022528387000065],[27.43848717500009,37.027736721000124],[27.423513217000046,37.02716705900018],[27.40805097700013,37.01683177300007],[27.402354363000143,37.02387116100014],[27.404307488000114,37.027736721000124],[27.396820509000122,37.027736721000124],[27.39478600400011,37.01829661700013],[27.383311394000145,36.99359772300015],[27.37940514400006,36.998968817],[27.378916863000086,37.00071849200019],[27.38062584700009,37.00242747600002],[27.383311394000145,37.00787995000003],[27.38184655000009,37.008978583000086],[27.379893425000148,37.00918203300013],[27.37794030000009,37.010199286],[27.37647545700014,37.014105536],[27.380869988000114,37.01797109600001],[27.381683790000125,37.01894765800007],[27.379893425000148,37.020900783000044],[27.37647545700014,37.027736721000124],[27.36744225400014,37.02277252800009],[27.340993686000047,37.01845937700009],[27.328623894000117,37.014105536],[27.328623894000117,37.00787995000003],[27.332692905000073,36.99705638200014],[27.326508009000094,36.98598867400001],[27.314626498000052,36.97711823100015],[27.3006291020001,36.973089911],[27.305430535000085,36.96328359600015],[27.308116082000055,36.95941803600006],[27.299001498000077,36.961493231000176],[27.293955925000148,36.96161530200013],[27.286957227000073,36.95941803600006],[27.28093509200005,36.96686432500003],[27.263194207000055,36.963364976000136],[27.25269616000008,36.97833893400018],[27.247406446000095,37.00023021000011],[27.246104363000114,37.01776764500014],[27.241221550000148,37.03436920800003],[27.232432488000086,37.04730866100011],[27.22877037900011,37.06183502800015],[27.23910566500012,37.082953192000055],[27.24773196700005,37.08344147300015],[27.264170769000117,37.089016018000066],[27.281911655000044,37.09833405200003],[27.294444207000108,37.11029694200012],[27.287445509000065,37.11542389500015],[27.27906334700009,37.11758047100015],[27.270030144000085,37.116034247000115],[27.2604272800001,37.11029694200012],[27.256602410000085,37.11367422100015],[27.254893425000088,37.11652252800009],[27.252940300000116,37.12396881700006],[27.2604272800001,37.11774323100011],[27.271657748000106,37.128851630000135],[27.30298912900014,37.119574286],[27.32178795700011,37.12396881700006],[27.321299675000116,37.13108958500011],[27.323496941000116,37.13886139500012],[27.324717644000117,37.14785390800013],[27.32178795700011,37.158677476000136],[27.332530144000113,37.15619538000011],[27.339610222000086,37.15053945500004],[27.343028191000087,37.14179108300014],[27.342295769000145,37.13011302300004],[27.3489689460001,37.13011302300004],[27.354258660000085,37.140855210000055],[27.361582879000082,37.14862702000006],[27.36931399800011,37.150702216000084],[27.37647545700014,37.14443594000012],[27.37940514400006,37.14667389500012],[27.380544467000107,37.1480980490001],[27.38111412900008,37.14948151200015],[27.383311394000145,37.15184153900013],[27.382985873000052,37.13471100499999],[27.3865666020001,37.13007233300006],[27.393809441000116,37.13080475499999],[27.404307488000114,37.13011302300004],[27.412445509000122,37.125677802000084],[27.418223504000082,37.121242580000015],[27.425466342000107,37.11961497599999],[27.43848717500009,37.12396881700006],[27.436208530000016,37.121242580000015],[27.434906446000127,37.120347398000106],[27.433360222000086,37.11969635600015],[27.431000196000127,37.11774323100011],[27.445567254000135,37.09699127800012],[27.459808790000068,37.089504299000154],[27.475108269000117,37.09251536700005],[27.50131269600007,37.10748932500009],[27.52222741000011,37.114976304000045],[27.53101647200009,37.120835679],[27.541514519000145,37.12596263200011],[27.5651147800001,37.12563711100007],[27.57553144600007,37.13011302300004],[27.57553144600007,37.13760000200001],[27.56234785200013,37.13580963700004],[27.559092644000085,37.13434479400017],[27.55453535200013,37.13011302300004],[27.547211134000122,37.16181061400012],[27.539561394000085,37.17829010600009],[27.527842644000117,37.18537018400014],[27.527842644000117,37.19281647300012],[27.57471764400006,37.201157945000105],[27.58765709700006,37.19879791900014],[27.57553144600007,37.178534247000144],[27.586680535000085,37.18146393400015],[27.59473717500003,37.185939846000124],[27.609873894000117,37.19965241100006],[27.594248894000145,37.204291083000086],[27.588552280000073,37.21112702],[27.589366082000083,37.23069896000008],[27.591644727000045,37.235052802000055],[27.604258660000113,37.24225495000008],[27.609873894000117,37.2474632830001],[27.61280358200014,37.25462474200013],[27.61402428500008,37.26752350500005],[27.615977410000113,37.274725653000175],[27.60377037900014,37.28148021000011],[27.60303795700011,37.28217194200006],[27.5944116550001,37.28384023600007],[27.59205162900014,37.281073309000114],[27.591563347000058,37.277004299000154],[27.589366082000083,37.274725653000175],[27.564789259000065,37.27553945500009],[27.553233269000145,37.27293528900019],[27.548350457000083,37.264837958000086],[27.54322350400014,37.249823309000064],[27.530528191000087,37.23631419500008],[27.514659050000063,37.22931549700009],[27.500010613000143,37.23383209800015],[27.517751498000052,37.24599844000012],[27.519867384000065,37.25910065300009],[27.50879967500003,37.268052476000136],[27.486338738000114,37.26788971600016],[27.48316491000014,37.264105536000145],[27.473643425000063,37.25641510600012],[27.463633660000085,37.25202057500003],[27.458832227000073,37.25800202000015],[27.46143639400009,37.26752350500005],[27.467946811000076,37.277004299000154],[27.486338738000114,37.295233466000056],[27.485118035000113,37.30304596600003],[27.49000084700006,37.31378815300006],[27.491384311000047,37.32733795800003],[27.48015384200005,37.34369538000011],[27.472666863000086,37.34369538000011],[27.468516472000147,37.31561920800011],[27.446136915000125,37.30560944200011],[27.418304884000065,37.30947500200013],[27.396820509000122,37.32314687700007],[27.388682488000114,37.34528229400014],[27.396739129000135,37.36562734600015],[27.415212436000072,37.38165924700003],[27.43848717500009,37.39081452000012],[27.426524285000056,37.40595123900012],[27.40723717500012,37.41274648600013],[27.403493686000104,37.41258372599999],[27.3865666020001,37.412054755],[27.370290561000072,37.405096747000115],[27.361175977000073,37.392157294000114],[27.35645592500009,37.37913646000011],[27.346202019000145,37.37059153900019],[27.32178795700011,37.370917059000114],[27.32178795700011,37.36351146000014],[27.336436394000113,37.35569896000014],[27.330332879000107,37.35162995000009],[27.271494988000143,37.348578192],[27.257660352000126,37.34454987200003],[27.246104363000114,37.336167710000055],[27.238780144000117,37.34389883000007],[27.231700066000144,37.348089911],[27.224945509000122,37.348211981000176],[27.218760613000143,37.34369538000011],[27.217051629000135,37.35097890800013],[27.215586785000085,37.3541527360001],[27.21192467500012,37.357326565000065],[27.20411217500012,37.35293203300007],[27.20134524800008,37.35228099200013],[27.1985783210001,37.354193427],[27.190765821000127,37.357326565000065],[27.200694207000108,37.36652252800003],[27.207530144000145,37.37641022300015],[27.20948326900009,37.38694896000011],[27.205088738000114,37.39826080900009],[27.220388217000075,37.40399811400006],[27.226247592000107,37.405096747000115],[27.226247592000107,37.411932684000035],[27.217458530000044,37.431301174000154],[27.222504102000073,37.47675202000012],[27.205088738000114,37.472723700000145],[27.199392123000024,37.47858307500012],[27.192637566000087,37.4786644550001],[27.185313347000086,37.47410716400004],[27.177744988000143,37.466538804],[27.181895379000082,37.483343817],[27.187836134000094,37.498277085000055],[27.190440300000088,37.51268138200011],[27.184580925000144,37.528021552000055],[27.188243035000113,37.53449127800015],[27.184255405000044,37.53876373900009],[27.180430535000113,37.544582424000126],[27.184580925000144,37.555894273000106],[27.200368686000104,37.54755280200013],[27.209320509000122,37.56329987200009],[27.21216881600006,37.585598049000126],[27.20850670700011,37.596869208000115],[27.193858269000117,37.601019598000065],[27.13624108200014,37.63104889500012],[27.048838738000057,37.65013255400011],[27.01148522200012,37.665716864],[27.02076256600006,37.68626536700005],[27.038340691000084,37.69013092700005],[27.105479363000143,37.68626536700005],[27.127207879000135,37.688544012000115],[27.21314537900014,37.71344635600015],[27.226410352000073,37.72093333500011],[27.24952233200011,37.744330145],[27.256602410000085,37.759507554],[27.260508660000085,37.78196849200019],[27.26156660200013,37.803534247000115],[27.2604272800001,37.81598541900003],[27.25269616000008,37.82526276200018],[27.243337436000047,37.83380768400009],[27.237152540000093,37.84544505400011],[27.23910566500012,37.86440664300004],[27.242523634000037,37.86806875200007],[27.25554446700005,37.87710195500007],[27.2604272800001,37.88422272300012],[27.26343834700009,37.89350006700008],[27.265391472000147,37.90167877800008],[27.26465905000012,37.90981679900001],[27.2604272800001,37.91901276200018],[27.2747501960001,37.92902252800015],[27.266286655000044,37.951361395],[27.23910566500012,37.987941799000126],[27.214040561000044,37.98094310100005],[27.17750084700009,37.98094310100005],[27.141123894000117,37.98602936400006],[27.116384311000047,37.99408600500003],[27.11117597700013,37.999701239],[27.10759524800008,38.00674062700007],[27.101898634000094,38.012681382000025],[27.091807488000114,38.01528554900001],[27.08375084700009,38.01557038000014],[27.07593834700009,38.017035223],[27.07016035200013,38.02000560100011],[27.06788170700005,38.02513255400011],[27.06470787900008,38.040594794000135],[27.055918816000116,38.04572174700014],[27.027028842000107,38.04938385600012],[26.975433790000068,38.06525299700003],[26.949229363000114,38.06736888200005],[26.91773522200012,38.06240469],[26.900075717000107,38.0567894550001],[26.893402540000125,38.05621979400003],[26.888519727000073,38.0528832050001],[26.88559004000004,38.045599677],[26.881521030000098,38.03839752800015],[26.87305748800014,38.03510163000011],[26.86491946700005,38.04035065300009],[26.84205162900011,38.07607656500012],[26.847422722000086,38.0887718770001],[26.84644616000011,38.103420315],[26.841563347000115,38.11823151200018],[26.835215691000112,38.13129303600006],[26.825043165000068,38.144964911],[26.802989129000053,38.16242096600014],[26.793630405000044,38.17226797100007],[26.7760522800001,38.165228583],[26.771494988000143,38.17747630400008],[26.77369225400014,38.20701732000013],[26.760264519000145,38.216742255000085],[26.74463951900006,38.21564362200003],[26.727305535000085,38.210272528000175],[26.708262566000087,38.20701732000013],[26.645762566000144,38.206732489],[26.635915561000047,38.20359935100011],[26.62289472700013,38.13873932500003],[26.61817467500012,38.1415062520001],[26.617686394000145,38.142320054000024],[26.61548912900014,38.144964911],[26.6092228520001,38.144964911],[26.612152540000125,38.130764065000065],[26.612152540000125,38.11786530200005],[26.607106967000107,38.10830312700007],[26.594981316000087,38.10394928600009],[26.588633660000085,38.10822174700009],[26.5768335300001,38.13271719000012],[26.567637566000116,38.144964911],[26.56714928500014,38.12396881700015],[26.55689537900011,38.122300523000135],[26.543304884000065,38.130519924000126],[26.523773634000094,38.14740631700012],[26.51734459700006,38.155666408000016],[26.515472852000098,38.16571686400009],[26.51929772200012,38.17967357000005],[26.49170983200011,38.17401764500006],[26.46656334700012,38.190619208000115],[26.442230665000068,38.21198151200018],[26.417491082000083,38.220648505000085],[26.42204837300011,38.204779364000146],[26.424164259000122,38.20018138200011],[26.417491082000083,38.20018138200011],[26.412119988000114,38.206366278000175],[26.390147332000108,38.22382233300014],[26.391856316000116,38.23403554900006],[26.394541863000086,38.24286530200014],[26.39486738400012,38.251654364],[26.390147332000108,38.261664130000085],[26.38331139400009,38.261664130000085],[26.375010613000114,38.234808661],[26.35401451900006,38.22825755400011],[26.328623894000145,38.23505280200014],[26.296071811000076,38.256577867000075],[26.286631707000055,38.26105377800003],[26.234629754000082,38.27383047100007],[26.23308353000004,38.28025950700008],[26.238780144000117,38.29580312700007],[26.26539147200009,38.286688544000086],[26.27637780000012,38.300482489],[26.285899285000113,38.318670966000084],[26.307627800000088,38.32306549700017],[26.307627800000088,38.330511786000145],[26.288910352000126,38.340643622000115],[26.28614342500006,38.35895416900017],[26.294118686000047,38.36985911700005],[26.307627800000088,38.357855536000116],[26.309336785000113,38.367132880000085],[26.31177819100014,38.37116120000006],[26.31568444100014,38.373480536],[26.321136915000068,38.37767161700013],[26.32520592500012,38.36554596600014],[26.325938347000143,38.354925848],[26.322764519000085,38.34552643400018],[26.31430097700007,38.336737372000115],[26.31934655000009,38.333644924000126],[26.32447350400011,38.33173248900006],[26.33057701900009,38.330755927],[26.338633660000113,38.330511786000145],[26.34636478000004,38.32880280200014],[26.348317905000073,38.324774481000176],[26.349782748000052,38.32013580900015],[26.356130405000073,38.31688060100011],[26.37061608200011,38.3160667990001],[26.38502037900008,38.318426825000145],[26.391856316000116,38.32501862200003],[26.38331139400009,38.336737372000115],[26.38331139400009,38.34357330900003],[26.39893639400006,38.33551666900008],[26.40528405000009,38.33535390800012],[26.417491082000083,38.336737372000115],[26.429209832000055,38.34076569200009],[26.454600457000083,38.354803778000026],[26.462168816000144,38.357855536000116],[26.47592207100007,38.36688873900012],[26.47706139400009,38.386867580000015],[26.468028191000087,38.407619533],[26.451508009000094,38.41868724200005],[26.451508009000094,38.42609284100003],[26.476898634000122,38.41669342700003],[26.489105665000096,38.40619538000014],[26.497894727000073,38.40729401200017],[26.51303144600007,38.43292877800015],[26.498871290000036,38.439642645],[26.47429446700005,38.457342841000084],[26.45386803500014,38.463202216000134],[26.4407658210001,38.472805080000015],[26.431000196000042,38.47394440300015],[26.42204837300011,38.46971263200013],[26.414235873000024,38.45628489800004],[26.407237175000148,38.45343659100011],[26.387868686000047,38.454250393],[26.388194207000137,38.45844147300015],[26.397227410000053,38.468695380000085],[26.40381920700014,38.487534898000106],[26.39991295700014,38.49957916900003],[26.369639519000145,38.53534577000015],[26.375824415000125,38.528550523000106],[26.373057488000143,38.540716864],[26.360687696000127,38.57094961100001],[26.35914147200009,38.576971747000115],[26.36011803500014,38.58356354400008],[26.34864342500012,38.621323960000055],[26.348968946000127,38.63548411700016],[26.35108483200014,38.65021393400015],[26.35629316500012,38.661688544000114],[26.365977410000085,38.66632721600003],[26.38103274800011,38.66836172100007],[26.403005405000044,38.67731354400008],[26.414073113000057,38.679388739000025],[26.440603061000047,38.67767975500003],[26.46558678500014,38.672674872000144],[26.487640821000127,38.664292710000026],[26.505625847000086,38.652655341000084],[26.539561394000117,38.6236839860001],[26.555837436000072,38.60541413000011],[26.56080162900011,38.59003327000009],[26.583994988000143,38.560939846000124],[26.6092228520001,38.53534577000015],[26.618011915000068,38.52863190300009],[26.62476647200012,38.5246442730001],[26.63038170700011,38.51923248900009],[26.635915561000047,38.508042710000055],[26.637950066000144,38.49701569200012],[26.637461785000085,38.4872093770001],[26.638031446000124,38.477728583000086],[26.64332116000011,38.467718817],[26.636729363000143,38.463446356000176],[26.633148634000065,38.46190013200014],[26.629161004000082,38.460882880000085],[26.62134850400011,38.46662018400015],[26.61085045700011,38.468410549000126],[26.599294467000107,38.466376044000114],[26.58814537900008,38.460882880000085],[26.60523522200012,38.45380280200011],[26.604991082000083,38.444769598],[26.596364780000073,38.433172919000086],[26.58814537900008,38.41868724200005],[26.61182701900009,38.41624583500011],[26.622080925000116,38.40534088700004],[26.6282658210001,38.390082098000065],[26.639659050000148,38.37457916900014],[26.657074415000125,38.32880280200014],[26.673106316000116,38.30719635600006],[26.694590691000144,38.313177802000055],[26.699961785000113,38.32575104400014],[26.693614129000082,38.334377346000146],[26.67750084700009,38.34357330900003],[26.670664910000085,38.38515859600001],[26.675954623000052,38.402329820000126],[26.687266472000147,38.41974518400009],[26.702403191000144,38.43016185099999],[26.719086134000094,38.42609284100003],[26.719086134000094,38.43292877800015],[26.725352410000113,38.43292877800015],[26.736664259000122,38.42291901200015],[26.748220248000052,38.404689846000096],[26.766856316000112,38.36408112200017],[26.771494988000143,38.36611562700001],[26.78296959700009,38.369370835000055],[26.787364129000082,38.37152741100006],[26.79509524800008,38.35862864800005],[26.809825066000087,38.36005280200011],[26.82764733200014,38.36725495000014],[26.845469597000115,38.37152741100006],[26.924571160000113,38.37767161700013],[26.973806186000047,38.396185614000146],[26.98975670700014,38.39887116100011],[26.994476759000065,38.400783596000096],[27.00749759200005,38.409735419000114],[27.013356967000078,38.41250234600007],[27.02361087300011,38.41209544500008],[27.032969597000147,38.40900299700008],[27.042491082000137,38.407619533],[27.054372592000078,38.41250234600007],[27.055837436000044,38.408514716000084],[27.0612085300001,38.41250234600007],[27.08863366000014,38.40224844000015],[27.111827019000085,38.414007880000106],[27.13542728000004,38.43366120000017],[27.16423587300005,38.446600653000175],[27.16423587300005,38.45343659100011],[27.15447024800011,38.459418036000116],[27.15015709700012,38.45872630400008],[27.143077019000145,38.45343659100011],[27.13624108200014,38.460882880000085],[27.116953972000086,38.45392487200009],[27.08334394600007,38.456732489000146],[27.07471764400009,38.45343659100011],[27.04908287900011,38.463202216000134],[27.022308790000096,38.462469794000114],[26.9596460300001,38.44196198100014],[26.938649936000072,38.43423086100013],[26.93539472700013,38.43488190300009],[26.94507897200009,38.446600653000175],[26.927907748000052,38.456040757],[26.897634311000076,38.49469635600015],[26.884043816000116,38.50120677300005],[26.859222852000045,38.5074730490001],[26.84929446700005,38.512396552000055],[26.826914910000113,38.526190497000144],[26.814707879000135,38.542792059000114],[26.829274936000072,38.531317450000174],[26.84701582100007,38.52069733300014],[26.874196811000072,38.5074730490001],[26.889821811000076,38.508042710000055],[26.889821811000076,38.51487864799999],[26.877777540000064,38.52635325700011],[26.8650822270001,38.53554922100001],[26.851247592000107,38.54291413],[26.835215691000112,38.549017645000085],[26.839366082000137,38.560777085000055],[26.844574415000125,38.585435289000046],[26.848887566000144,38.597398179],[26.834239129000135,38.608221747000165],[26.825043165000068,38.604803778000175],[26.813731316000084,38.59764232000013],[26.793630405000044,38.597398179],[26.798106316000087,38.607733466000084],[26.80103600400011,38.61172109600007],[26.779307488000143,38.617743231000176],[26.7669376960001,38.619045315000065],[26.753184441000087,38.61790599200005],[26.755137566000144,38.62254466400016],[26.757578972000058,38.63377513200008],[26.75945071700005,38.638413804],[26.746429884000065,38.63865794500013],[26.736989780000044,38.64248281500015],[26.719086134000094,38.652655341000084],[26.726084832000055,38.65900299700003],[26.733653191000116,38.66364166900014],[26.742442254000082,38.666245835000055],[26.753184441000087,38.66632721600003],[26.73316491000011,38.68964264500012],[26.725840691000116,38.702704169000114],[26.719086134000094,38.720933335],[26.737559441000116,38.73078034100003],[26.78891035200013,38.73940664300012],[26.81820722700013,38.755438544000114],[26.82374108200005,38.75372955900009],[26.8274845710001,38.75018952000012],[26.828949415000068,38.748277085000076],[26.83057701900009,38.747259833],[26.841807488000086,38.74583567900014],[26.85157311300011,38.74567291900017],[26.87452233200011,38.73753489800005],[26.888519727000073,38.73403554900007],[26.903493686000104,38.73456452000015],[26.89722741000014,38.748277085000076],[26.907074415000068,38.75364817900011],[26.915293816000087,38.75995514500006],[26.923024936000076,38.76215241100005],[26.931407097000143,38.755072333],[26.93441816500004,38.762884833],[26.93506920700008,38.77045319200012],[26.933848504000082,38.77895742400007],[26.931407097000143,38.78925202000009],[26.924571160000113,38.781724351000136],[26.90447024800008,38.80975983300014],[26.89722741000014,38.81655508000007],[26.937673373000077,38.830226955],[26.943858269000145,38.808742580000064],[26.96078535200013,38.80613841400016],[26.971446160000085,38.819159247000144],[26.95875084700012,38.844468492000104],[26.975352410000085,38.84861888200005],[26.990896030000073,38.85504791900014],[27.003916863000057,38.86286041900014],[27.013356967000078,38.871161200000024],[27.033539259000094,38.860500393],[27.055023634000122,38.87107982000005],[27.06267337300008,38.8868675800001],[27.041270379000107,38.89166901200018],[27.057871941000087,38.91852448100015],[27.057790561000104,38.92975495000017],[27.041270379000107,38.940090236000074],[27.0240991550001,38.928168036000145],[27.012868686000104,38.92206452000015],[27.001231316000087,38.91986725500006],[26.982595248000106,38.91962311400012],[26.977549675000148,38.9227562520001],[26.967539910000085,38.936916408000016],[26.962412957000083,38.940090236000074],[26.94996178500014,38.93699778900019],[26.941661004000082,38.93187083500008],[26.934255405000073,38.9308942730001],[26.924571160000113,38.940090236000074],[26.9134220710001,38.93195221600014],[26.879161004000135,38.916205145],[26.86622155000012,38.91339752800015],[26.85564212300008,38.917547919000086],[26.84009850400008,38.93585846600014],[26.825205925000116,38.940090236000074],[26.806488477000045,38.95014069200014],[26.797211134000094,38.973130601000136],[26.799164259000065,38.998358466000084],[26.814707879000135,39.0151227890001],[26.814707879000135,39.021958726000136],[26.80958092500012,39.02155182500003],[26.793630405000044,39.021958726000136],[26.80640709700006,39.033880927000084],[26.82911217500012,39.047349351000044],[26.854014519000145,39.058417059000085],[26.87305748800014,39.062933661000145],[26.883148634000122,39.07160065300006],[26.87525475400014,39.09088776200018],[26.851898634000037,39.12128327000015],[26.82374108200005,39.14907461100002],[26.809825066000087,39.15745677300008],[26.778737826000082,39.170030015000165],[26.771169467000018,39.17308177300005],[26.75163821700005,39.18463776200018],[26.73780358200014,39.197211005000085],[26.739024285000056,39.207586981000176],[26.730967644000117,39.22760651200004],[26.726573113000143,39.24750397300012],[26.718760613000143,39.262884833000086],[26.70142662900008,39.268988348000065],[26.65333092500009,39.26691315300006],[26.62907962300011,39.268377997000115],[26.6092228520001,39.27521393400012],[26.61931399800008,39.283148505],[26.62517337300011,39.303290106000034],[26.63257897200009,39.31342194200008],[26.645518425000088,39.31757233300011],[26.654795769000142,39.31321849200013],[26.653819207000083,39.306463934000085],[26.635915561000047,39.30316803600006],[26.635915561000047,39.29694245000009],[26.64673912900011,39.29730866100003],[26.65601647200009,39.29425690300011],[26.663910352000045,39.28900788000011],[26.670664910000085,39.282660223],[26.664805535000138,39.298081773000135],[26.670258009000094,39.30597565300009],[26.681162957000137,39.31061432500003],[26.691172722000147,39.316229559000035],[26.70875084700006,39.33690013200005],[26.814707879000135,39.399359442],[26.805430535000085,39.405096747000144],[26.80103600400011,39.406195380000106],[26.80103600400011,39.41242096600017],[26.802582227000073,39.419175523000106],[26.802744988000114,39.42511627800003],[26.80103600400011,39.433539130000085],[26.837412957000083,39.43561432500009],[26.850840691000087,39.43976471600014],[26.863047722000143,39.44717031500012],[26.852061394000117,39.46181875200013],[26.867930535000138,39.47150299700009],[26.92595462300011,39.48582591400016],[26.92986087300011,39.48773834800012],[26.929698113000143,39.49144114799999],[26.931407097000143,39.50177643400009],[26.94507897200009,39.539618231000034],[26.943858269000145,39.560980536],[26.937673373000077,39.574774481000084],[26.922211134000065,39.58218008000007],[26.893402540000125,39.58437734600007],[26.87045332100004,39.576849677000105],[26.852061394000117,39.56338125200013],[26.832855665000064,39.55683014500015],[26.807871941000116,39.570705471000124],[26.667246941000087,39.55084870000003],[26.45679772200009,39.521185614],[26.434255405000098,39.51398346600017],[26.424164259000122,39.50519440300009],[26.4139103520001,39.50531647300006],[26.369965040000068,39.48578522300009],[26.362152540000096,39.48135000200001],[26.35010826900006,39.48135000200001],[26.297373894000085,39.488714911000116],[26.286631707000055,39.48761627800015],[26.27361087300008,39.48240794500008],[26.262950066000144,39.48135000200001],[26.253916863000114,39.472845770000085],[26.252289259000094,39.47077057500014],[26.249278191000112,39.46564362200014],[26.242523634000065,39.46759674700009],[26.23178144600007,39.474514065],[26.152842644000117,39.45921458500014],[26.11296634200005,39.45917389500015],[26.074229363000114,39.474514065],[26.069997592000103,39.496283270000056],[26.094981316000116,39.548570054000045],[26.11068769600007,39.597886460000055],[26.148203972000086,39.62604401200004],[26.156748894000117,39.64923737200014],[26.163584832000137,39.70416901200015],[26.159353061000104,39.714911200000145],[26.140635613000143,39.742743231000034],[26.13640384200002,39.755682684000035],[26.137868686000076,39.76455312700007],[26.142100457000108,39.76788971600011],[26.14673912900014,39.770209052000084],[26.14991295700011,39.7761091170001],[26.14991295700011,39.799994208000086],[26.154958530000044,39.826157945000105],[26.1517033210001,39.83515045800014],[26.13640384200002,39.83759186400009],[26.14185631600006,39.84902578300012],[26.156748894000117,39.89899323100015],[26.15601647200009,39.905096747000144],[26.15064537900014,39.92470937700001],[26.14991295700011,39.933783270000035],[26.152598504000082,39.94261302300007],[26.161631707000083,39.956203518000116],[26.163584832000137,39.964544989],[26.167653842000107,39.973578192],[26.188649936000047,40.00177643400017],[26.197764519000117,40.00885651200004],[26.251149936000076,39.99485911700015],[26.266937696000127,40.00307851800006],[26.30030358200008,40.014390367000075],[26.311045769000117,40.019476630000085],[26.35320071700005,40.052150783000016],[26.362152540000096,40.063462632000025],[26.36500084700012,40.07176341400016],[26.366221550000148,40.08462148600001],[26.369639519000145,40.09080638200008],[26.370371941000087,40.094712632000075],[26.369476759000094,40.09918854400003],[26.36939537900011,40.10293203300007],[26.37281334700012,40.10447825700011],[26.383799675000063,40.104152736000074],[26.389008009000065,40.105169989000146],[26.3932397800001,40.108221747000144],[26.39958743600002,40.12083567900011],[26.403493686000104,40.13898346600002],[26.403005405000044,40.157904364000146],[26.396332227000073,40.17275625200001],[26.40284264400006,40.18744538000011],[26.40796959700009,40.19367096600017],[26.414886915000068,40.194891669000086],[26.42758222700013,40.194484768000095],[26.441416863000143,40.19660065300009],[26.467539910000085,40.20600006700012],[26.500743035000113,40.21295807500012],[26.5193791020001,40.225165106000176],[26.563649936000047,40.27016836100016],[26.57252037900011,40.27456289300015],[26.581390821000042,40.2770042990001],[26.594981316000087,40.28261953300007],[26.60759524800008,40.29043203300007],[26.71461022200012,40.39061107],[26.735606316000144,40.40355052300002],[26.77670332100004,40.40550364800005],[26.863047722000143,40.399888414000046],[26.89722741000014,40.40615469],[26.908213738000114,40.40371328300016],[26.93441816500004,40.392482815000065],[26.99146569100014,40.38861725500006],[27.013356967000078,40.392482815000065],[27.041270379000107,40.409613348],[27.065765821000042,40.43353913000006],[27.096364780000073,40.45229726800004],[27.143077019000145,40.45392487200006],[27.177012566000116,40.44879791900003],[27.215342644000117,40.44769928600009],[27.237559441000087,40.45184967700011],[27.271494988000143,40.46784088700012],[27.286957227000073,40.468207098000114],[27.303396030000073,40.458441473],[27.31373131600006,40.444077867000104],[27.328623894000117,40.41356028900016],[27.314952019000085,40.40615469],[27.308116082000055,40.40615469],[27.30355879000012,40.410467841000084],[27.30323326900009,40.41095612200009],[27.30176842500012,40.40900299700003],[27.294444207000108,40.40615469],[27.33757571700005,40.370306708],[27.392914259000037,40.34210846600003],[27.452321811000104,40.32200755400008],[27.523285352000073,40.30878327000011],[27.55128014400009,40.30882396000011],[27.562022332000108,40.31049225500014],[27.5970158210001,40.32831452],[27.612966342000107,40.33100006700009],[27.64087975400014,40.326117255000106],[27.66504967500006,40.31745026200012],[27.687998894000145,40.313788153000175],[27.712250196000127,40.32420482000008],[27.732595248000024,40.317287502000156],[27.762705925000063,40.315375067],[27.789805535000085,40.32046133000013],[27.813243035000056,40.347113348000065],[27.867360873000052,40.36888255400011],[27.88355553500008,40.386297919000086],[27.86524498800011,40.386786200000174],[27.815277540000096,40.399888414000046],[27.80054772200009,40.393011786000145],[27.791758660000138,40.39288971600017],[27.78785241000014,40.40302155200011],[27.785817905000098,40.41290924700003],[27.78012129000012,40.41571686400009],[27.773448113000086,40.41648997600011],[27.767425977000073,40.42039622600002],[27.760752800000034,40.42841217700014],[27.756358269000117,40.432603257000075],[27.754079623000052,40.438299872000144],[27.75318444100006,40.450832424000154],[27.75017337300005,40.45758698100009],[27.742686394000085,40.459051825000145],[27.73373457100007,40.459051825000145],[27.725840691000087,40.461371161000116],[27.69320722700013,40.48627350500006],[27.684255405000016,40.496161200000145],[27.684255405000016,40.502346096000124],[27.696299675000034,40.50641510600009],[27.70606530000006,40.51190827000012],[27.722422722000086,40.5262718770001],[27.733164910000085,40.53058502800009],[27.741953972000143,40.52631256700009],[27.75017337300005,40.52472565300015],[27.76002037900008,40.537054755],[27.77906334700009,40.518255927000055],[27.780446811000047,40.51532623900012],[27.789398634000094,40.51422760600017],[27.792246941000116,40.51703522300012],[27.79517662900014,40.52090078300012],[27.804698113000143,40.52277252800012],[27.969899936000104,40.50299713700017],[28.014170769000057,40.49115631700012],[28.034434441000087,40.47443268400009],[28.016774936000076,40.451076565],[27.929942254000053,40.416937567],[27.903981967000078,40.399888414000046],[27.90845787900014,40.374212958],[27.944672071000042,40.366034247000165],[28.02751712300008,40.372015692],[28.111989780000044,40.39606354400003],[28.347992384000122,40.404038804],[28.400401238000086,40.39740631700012],[28.486827019000085,40.399888414000046],[28.476084832000083,40.39793528900018],[28.467539910000138,40.394354559000035],[28.461680535000113,40.38837311400003],[28.458832227000073,40.379461981000176],[28.49952233200014,40.39109935099999],[28.545420769000117,40.39130280200013],[28.592784050000063,40.381903387000094],[28.637705925000063,40.365179755000085],[28.643809441000144,40.37124258000007],[28.64747155,40.370021877000156],[28.651215040000125,40.366359768],[28.658050977000073,40.365179755000085],[28.66684004000012,40.368109442],[28.677419467000075,40.37604401200015],[28.68539472700013,40.379461981000176],[28.74187259200005,40.38641998900006],[28.75709069100014,40.396185614],[28.77198326900009,40.40253327000012],[28.79127037900011,40.40045807500012],[28.825450066000116,40.392482815000065],[28.855642123000024,40.39118073100015],[28.88404381600014,40.386297919000086],[28.89795983200014,40.381333726000136],[28.92139733200011,40.370021877000156],[28.938731316000087,40.365179755000085],[28.956553582000083,40.36318594000012],[29.033946160000053,40.36444733300014],[29.05160566500007,40.36733633000007],[29.065684441000112,40.37571849200005],[29.07390384200011,40.38865794500004],[29.082692905000073,40.4156761740001],[29.09009850400008,40.4272321640001],[29.102793816000116,40.423041083],[29.11898847700007,40.423651434000064],[29.136403842000046,40.42788320500007],[29.151540561000044,40.434068101000136],[29.13355553500011,40.450751044000164],[29.11150149800011,40.46613190300011],[29.087901238000086,40.47748444200009],[29.065684441000112,40.481878973000065],[29.010996941000087,40.481878973000065],[29.002452019000145,40.478664455000015],[28.980316602000073,40.46454498900009],[28.969493035000085,40.461371161000116],[28.9166772800001,40.470892645000035],[28.828461134000122,40.51300690300015],[28.774180535000085,40.52277252800012],[28.792653842000107,40.55329010600006],[28.8268335300001,40.57062409100003],[28.897715691000084,40.59174225500014],[28.927744988000143,40.60643138200005],[28.970062696000046,40.63947174700009],[28.986338738000082,40.64476146000008],[29.28158613400015,40.66592031500009],[29.32325280000012,40.67674388200008],[29.363780144000234,40.694159247000144],[29.384532097000115,40.70648834800009],[29.391856316000112,40.70783112200017],[29.399180535000117,40.702582098],[29.40723717500006,40.693101304],[29.41684004000015,40.68675364800005],[29.428721550000116,40.69098541900017],[29.43775475400011,40.69546133000012],[29.450368686000186,40.69936758000012],[29.461436394000227,40.70416901200004],[29.466156446000152,40.711493231000034],[29.470062696000152,40.71893952],[29.47925866000011,40.72406647300012],[29.490570509000094,40.727240302],[29.501149936000072,40.72890859600001],[29.51124108200011,40.72748444200012],[29.527517123000024,40.721502997000115],[29.542246941000116,40.70966217700005],[29.54883873800011,40.69098541900017],[29.559906446000152,40.691066799000154],[29.7532658210001,40.72455475500011],[29.867198113000228,40.72890859600001],[29.903575066000116,40.716253973000114],[29.924164259000147,40.7164574240001],[29.93930097700016,40.735052802000084],[29.92920983200011,40.758042710000055],[29.890147332000222,40.76349518400009],[29.809418165000093,40.75556061400012],[29.80250084700012,40.753851630000106],[29.79525800900009,40.75112539300006],[29.78663170700005,40.74884674700009],[29.775401238000054,40.748724677000105],[29.76384524800008,40.75275299700008],[29.743825717000192,40.76679108300014],[29.737559441000112,40.76984284100003],[29.721527540000157,40.77204010600012],[29.686534050000063,40.78156159100003],[29.666188998000077,40.78351471600016],[29.428721550000116,40.776068427],[29.410166863000114,40.77122630400011],[29.39429772200018,40.76211172100004],[29.377777540000093,40.75653717700011],[29.356944207000225,40.762396552000055],[29.348480665000093,40.770941473000065],[29.34424889400023,40.78021881700012],[29.339528842000075,40.78758372600011],[29.32911217500006,40.790350653000175],[29.33301842500006,40.792425848],[29.335622592000075,40.79450104400002],[29.338633660000166,40.79637278900019],[29.343435092000078,40.79779694200006],[29.339528842000075,40.807806708000136],[29.333343946000095,40.81484609600001],[29.32520592500006,40.82005442900011],[29.31544030000012,40.82444896],[29.311045769000227,40.818182684000035],[29.301768425000063,40.82444896],[29.293467644000113,40.81867096600003],[29.28158613400015,40.815375067],[29.25456790500013,40.810777085000055],[29.25456790500013,40.81704336100002],[29.264170769000113,40.817938544000086],[29.270762566000172,40.821844794000086],[29.27409915500019,40.82884349200015],[29.274587436000186,40.83877187700007],[29.284190300000063,40.833929755],[29.288259311000136,40.831284898000106],[29.287608269000174,40.83559804900001],[29.2884220710001,40.837795315],[29.291026238000057,40.838568427000105],[29.294932488000057,40.83877187700007],[29.283864780000016,40.85162995000008],[29.263926629000164,40.869777736000096],[29.25367272200012,40.87547435099999],[29.240977410000173,40.882554429000045],[29.22046959700012,40.879706122000115],[29.201345248000028,40.893947658000016],[29.144786004000107,40.91412995000003],[29.12427819100014,40.926906643000095],[29.103526238000054,40.946722723],[29.083181186000076,40.959662177],[29.028086785000113,40.982123114],[29.032074415000093,40.984035549000154],[29.032888217000107,40.98456452000011],[29.032888217000107,40.985663153000175],[29.034841342000046,40.989569403000175],[29.02328535200013,40.99335358299999],[29.018321160000085,41.00389232000008],[29.01465905000003,41.01752350500011],[29.007578972000058,41.030503648000106],[29.026052280000098,41.03827545800002],[29.046153191000144,41.05548737200003],[29.0623478520001,41.076320705000015],[29.076182488000082,41.114406643000095],[29.088145379000107,41.12885163000014],[29.09058678500014,41.14093659100014],[29.06910241000011,41.15277741100003],[29.0926212900001,41.180365302000105],[29.13005618600002,41.21190013200011],[29.16968834700015,41.23309967700011],[29.199961785000138,41.22919342700011],[29.206228061000186,41.22919342700011],[29.2161564460001,41.239406643000066],[29.2317814460001,41.24070872600005],[29.419606967000135,41.214300848000065],[29.61882571700019,41.17890045800006],[29.8846134770001,41.148993231000176],[30.136892123000134,41.14378489799999],[30.165212436000076,41.14663320500013],[30.180023634000147,41.15155670799999],[30.203461134000094,41.164496161],[30.217051629000167,41.167141018000095],[30.2264103520001,41.172919012000065],[30.233653191000112,41.18447500200007],[30.240489129000167,41.19232819200006],[30.248301629000107,41.187567450000145],[30.25904381600017,41.19574616100005],[30.27125084700012,41.21116771],[30.282481316000116,41.215521552],[30.295583530000183,41.20742422100007],[30.33668053500017,41.2008324240001],[30.369965040000093,41.181341864],[30.699229363000054,41.121527411000145],[30.732432488000114,41.09943268400015],[30.748057488000057,41.09198639500009],[30.83326256600017,41.07990143400018],[31.090586785000113,41.08515045800006],[31.115244988000114,41.09601471600014],[31.124766472000115,41.09813060100005],[31.13705488400015,41.09760163000008],[31.158457879000107,41.09308502800003],[31.169444207000055,41.09198639500009],[31.21045983200005,41.09813060100005],[31.216481967000078,41.09723541900014],[31.22608483200017,41.09296295800006],[31.23121178500017,41.09198639500009],[31.238780144000117,41.09369538000008],[31.24097741000011,41.097723700000145],[31.24293053500017,41.10236237200017],[31.248871290000096,41.105658270000035],[31.290212436000132,41.117865302],[31.3235783210001,41.13385651200018],[31.378591342000078,41.174505927000084],[31.392751498000194,41.18842194200006],[31.401052280000073,41.202093817],[31.405039910000117,41.21816640800007],[31.40601647200012,41.239406643000066],[31.40805097700016,41.248358466000084],[31.41749108200017,41.26829661699998],[31.41960696700008,41.28034088700018],[31.41504967500012,41.2858747420001],[31.396169467000192,41.295477606000176],[31.392832879000167,41.303656317],[31.403575066000172,41.31647370000003],[31.425140821000102,41.32257721600011],[31.47103925900015,41.32477448100009],[31.476573113000114,41.32900625200013],[31.492686394000227,41.34772370000008],[31.498301629000167,41.35203685099999],[31.50855553500017,41.35382721600008],[31.65894616000017,41.39793528900016],[31.87159264400006,41.504584052],[31.99333743600019,41.549505927],[32.029633009000094,41.57119375200006],[32.03939863400015,41.57558828300016],[32.1341251960001,41.599432684000035],[32.161875847000175,41.61200592700014],[32.17839603000007,41.63690827000006],[32.243418816000116,41.692938544000114],[32.248220248000194,41.69806549700003],[32.26335696700019,41.720160223],[32.297048373000194,41.72736237200002],[32.35181725400011,41.72943756700006],[32.353688998000194,41.7357445330001],[32.36182701900012,41.73786041900011],[32.37232506600017,41.74249909100003],[32.37435957100009,41.74941640800013],[32.37720787900017,41.75405508000015],[32.38257897200012,41.756089585],[32.38721764400022,41.75385163000003],[32.39625084700012,41.744289455000015],[32.39966881600017,41.74249909100003],[32.41724694100017,41.74892812700013],[32.43946373800023,41.76752350500014],[32.45427493600002,41.77724844],[32.523203972000175,41.80451080900018],[32.53484134200008,41.81073639500015],[32.548350457000225,41.81574127800009],[32.562836134000094,41.81688060100011],[32.57781009200002,41.81134674700009],[32.58936608200017,41.82697174700009],[32.612559441000165,41.83954498900009],[32.63965905000012,41.84389883000007],[32.66309655000012,41.83494700700014],[32.679209832000055,41.83633047100003],[32.740407748000194,41.85317617400004],[32.755381707000225,41.85911692900005],[32.77027428500011,41.85797760600012],[32.79851321700008,41.85968659100003],[32.827484571000156,41.864691473000065],[32.844574415000096,41.872788804],[32.855642123000024,41.86831289300004],[32.92611738400015,41.881822007],[32.96192467500006,41.894110419000135],[33.00806725400017,41.917303778000175],[33.165537957000225,41.95697663],[33.32447350400011,42.019029039000046],[33.360850457000225,42.020656643000066],[33.43433678500011,42.01064687700007],[33.540537957000225,42.01064687700007],[33.56324303500017,42.00771719000006],[33.61345462300008,41.993719794000086],[33.82715905000012,41.977687893],[33.845225457000225,41.982652085000055],[33.87354576900006,41.97443268400015],[34.00359134200008,41.982652085000055],[34.331309441000116,41.947943427],[34.44548587300019,41.97284577000011],[34.48267662900011,41.97524648600007],[34.49870853000019,41.97190989800004],[34.52702884200002,41.96063873900006],[34.561778191000116,41.951849677],[34.69418379000015,41.945949611000124],[34.74634850400017,41.950384833000115],[34.798594597000175,41.96222565300009],[34.81511478000007,41.96914297100009],[34.8528751960001,41.99152252800009],[34.88900800900015,42.00779857000005],[34.918793165000096,42.03554922100001],[34.94190514400023,42.069281317],[34.948090040000096,42.098781643000095],[34.962087436000076,42.09503815300015],[34.99073326900023,42.09113190300015]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Taiwan","sov_a3":"TWN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Taiwan","adm0_a3":"TWN","geou_dif":0,"geounit":"Taiwan","gu_a3":"TWN","su_dif":0,"subunit":"Taiwan","su_a3":"TWN","brk_diff":1,"name":"Taiwan","name_long":"Taiwan","brk_a3":"B77","brk_name":"Taiwan","brk_group":null,"abbrev":"Taiwan","postal":"TW","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Self admin.; Claimed by China","name_sort":"Taiwan","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":7,"mapcolor13":2,"pop_est":22974347,"gdp_md_est":712000,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"TW","iso_a2":"TW","iso_a3":"TWN","iso_n3":"158","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":23424971,"woe_id_eh":23424971,"woe_note":"Exact WOE match as country","adm0_a3_is":"TWN","adm0_a3_us":"TWN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"TWN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.58765709700006,22.013861395],[121.56690514400022,22.007757880000113],[121.53891035200003,22.018215236000014],[121.51319420700004,22.03506094],[121.498301629,22.048041083],[121.50277754000011,22.057562567],[121.50261478000012,22.066555080000015],[121.49878990999999,22.07477448100012],[121.49203535200016,22.082180080000015],[121.56657962300018,22.082180080000015],[121.56657962300018,22.075995184000035],[121.56462649800007,22.072170315000033],[121.56137129000004,22.063666083],[121.5600692070001,22.05353424700003],[121.5634871750001,22.044623114],[121.58106530000022,22.03221263200005],[121.58887780000023,22.023504950000174],[121.58765709700006,22.013861395]]],[[[121.49634850400017,22.638495184000146],[121.4961043630001,22.634670315000122],[121.49317467500012,22.635402736000074],[121.48658287900004,22.635402736000074],[121.48316490999999,22.636135158000016],[121.4814559250001,22.638088283000126],[121.47144616000006,22.641791083],[121.460703972,22.659002997000115],[121.45541425900015,22.673814195000162],[121.45753014400023,22.6759300800001],[121.49577884200019,22.678534247000087],[121.50001061300011,22.676255601000108],[121.50277754000011,22.669501044000086],[121.49976647200018,22.655666408000073],[121.49634850400017,22.650051174000065],[121.49496503999998,22.644191799000126],[121.49634850400017,22.638495184000146]]],[[[120.01954186300023,23.438381252000127],[120.0076562850002,23.432593713000088],[120.02186078900016,23.451644407000018],[120.0749318400001,23.500818171],[120.11525123000017,23.547911555],[120.12476993200019,23.550453797000113],[120.09030090900013,23.49939595000002],[120.07344997300018,23.483814315000146],[120.06227206400015,23.47127909000004],[120.04791202000004,23.45808471300016],[120.0365953850002,23.45080878100005],[120.01954186300023,23.438381252000127]]],[[[119.60840905000005,23.594875393000123],[119.60629316500014,23.590399481000148],[119.62159264400023,23.59467194200006],[119.63331139400012,23.593491929000052],[119.64185631600006,23.594061591000028],[119.64795983200021,23.603461005000142],[119.66578209700012,23.573309637000122],[119.67066491000017,23.559230861000074],[119.66846764400006,23.548814195000162],[119.66114342500006,23.55573151200018],[119.65137780000022,23.561590887000037],[119.64063561300011,23.56354401200018],[119.62566165500017,23.555812893000066],[119.61500084700006,23.554632880000142],[119.609711134,23.551947333000058],[119.60678144600016,23.546820380000057],[119.60271243600017,23.53261953300013],[119.60010826900013,23.528387762000122],[119.58236738400002,23.518947658000098],[119.56397545700004,23.516587632000054],[119.54558353,23.523098049000126],[119.52711022200016,23.53998444200012],[119.53199303500016,23.548814195000162],[119.54216556100017,23.53758372599999],[119.55738366000016,23.534613348000065],[119.57374108200011,23.538763739000032],[119.58716881600012,23.548814195000162],[119.57789147200006,23.551988023000046],[119.57056725400005,23.556057033000016],[119.5646264980002,23.561672268],[119.55925540500007,23.56932200700014],[119.55713951900022,23.566107489000085],[119.55713951900022,23.56500885600003],[119.556407097,23.564398505000085],[119.55241946700002,23.562486070000105],[119.55152428500006,23.576483466000084],[119.55241946700002,23.590399481000148],[119.55925540500007,23.590399481000148],[119.56723066500004,23.588527736000103],[119.59546959700018,23.60472239800005],[119.61312910199997,23.610296942000062],[119.60840905000005,23.594875393000123]]],[[[119.45655358200021,23.562486070000105],[119.4423934250001,23.562486070000105],[119.44483483200023,23.56976959800012],[119.44947350400015,23.574123440000122],[119.45655358200021,23.57615794500005],[119.46615644599999,23.576808986000017],[119.47445722700009,23.579738674000126],[119.47681725400004,23.5868187520001],[119.47706139400006,23.603461005000142],[119.48943118600012,23.639634507000082],[119.50131269600016,23.650376695000162],[119.51734459700006,23.637600002000127],[119.50782311300016,23.632391669000143],[119.50123131600017,23.619818427000055],[119.49073326900012,23.590399481000148],[119.49024498800021,23.582464911],[119.49284915500002,23.575751044000143],[119.49170983200011,23.571030992000047],[119.48023522200005,23.56932200700014],[119.47193444100017,23.569037177000027],[119.46607506599999,23.568060614000117],[119.46119225400004,23.565985419000114],[119.45655358200021,23.562486070000105]]],[[[119.58513431100006,23.624741929000106],[119.57683353000019,23.622503973000118],[119.57260175900016,23.627671617000047],[119.56934655000012,23.63971588700006],[119.56177819100017,23.649847723],[119.54525800899997,23.664943752000013],[119.56641686300011,23.679185289000102],[119.57886803499999,23.673081773000135],[119.59107506600016,23.66351959800012],[119.5962020190001,23.653265692000033],[119.58692467500023,23.645005601000108],[119.59066816499998,23.63279857000005],[119.58513431100006,23.624741929000106]]],[[[118.44958993900005,24.5055278330001],[118.46735474900007,24.461827610000014],[118.46335554600003,24.43152308400012],[118.44878503900023,24.415513445000116],[118.42290052900003,24.430303610000024],[118.4036242120001,24.4360098370001],[118.37285610500011,24.43320126700014],[118.34576026800002,24.417579187000154],[118.33099387900015,24.396482454000036],[118.31821764600014,24.390544350000155],[118.30323326900022,24.397040106000087],[118.2929793630001,24.397650458000143],[118.28394616000011,24.401271877000013],[118.279551629,24.408433335000055],[118.28109785200014,24.411037502000124],[118.28939863400004,24.420599677000137],[118.2920028000001,24.424994208000115],[118.29273522200006,24.432074286000088],[118.29232832100017,24.440619208],[118.2895613940001,24.455633856000034],[118.28296959700002,24.47003815300009],[118.28207441500005,24.477362372000087],[118.28785241000016,24.480454820000162],[118.31665681500012,24.493348759000142],[118.35480862500006,24.47056171800007],[118.38141414600014,24.473511031000115],[118.38539271199997,24.503817045000133],[118.39421634200008,24.522691148000106],[118.42259661300002,24.527968322000035],[118.44958993900005,24.5055278330001]]],[[[121.63599694100006,25.22280508000007],[121.64966881600017,25.197088934000035],[121.65414472700016,25.198797919000057],[121.6643986340001,25.20136139500015],[121.67611738400015,25.20258209800006],[121.68441816500015,25.20050690300006],[121.68392988400014,25.197455145000145],[121.67994225400017,25.19301992400007],[121.67611738400015,25.186916408000098],[121.67644290500019,25.179388739000117],[121.68051191500015,25.175034898000046],[121.69459069100017,25.166083075000117],[121.69752037899998,25.162583726000108],[121.70386803500006,25.15688711100013],[121.71851647200006,25.152004299000065],[121.892832879,25.113674221000124],[121.90512129000014,25.106594143000066],[121.8989363940001,25.09398021],[121.89722741000011,25.083889065000122],[121.89991295700005,25.06598541900017],[121.90919030000012,25.036037502000013],[121.919200066,25.022040106000063],[121.92725670700021,25.018703518000038],[121.95386803500017,25.022365627000067],[121.96753991,25.02106354400017],[121.98357181100019,25.01715729400017],[121.99773196700002,25.010687567000062],[122.00538170700005,25.001898505000028],[121.92676842500023,24.96662018400015],[121.90577233200011,24.950100002000095],[121.83472741000006,24.871527411000088],[121.82349694100006,24.85492584800012],[121.81462649800018,24.831732489],[121.80884850400005,24.805161851000136],[121.8068139980002,24.77875397300015],[121.80779056100019,24.753119208000086],[121.8203231130001,24.69965241100006],[121.81959069100007,24.685980536000113],[121.8142195970001,24.672308661000088],[121.81495201900022,24.644354559000146],[121.82797285200004,24.622788804000052],[121.85271243600019,24.60887278900016],[121.88184655000023,24.60398997599999],[121.88184655000023,24.59780508000004],[121.86947675900002,24.598944403000147],[121.85775800900004,24.597845770000035],[121.847911004,24.594916083],[121.84083092500023,24.590318101000047],[121.85084069100004,24.572984117000157],[121.85596764400022,24.550523179000077],[121.85279381600016,24.53099192899999],[121.83008873800023,24.519232489],[121.82837975400005,24.51072825700008],[121.83130944100004,24.500392971000068],[121.83773847700016,24.49103424700003],[121.84001712300002,24.481350002000067],[121.83041425900016,24.47313060099999],[121.8068139980002,24.46063873900006],[121.78003991,24.432684637000033],[121.77914472700004,24.421779690000065],[121.78077233200021,24.39760976800015],[121.77637780000023,24.388332424],[121.77149498800011,24.380560614],[121.76840254000004,24.369370835],[121.76644941500015,24.34735748900009],[121.76433353000006,24.341701565],[121.76050866000006,24.337103583000058],[121.75855553500018,24.33234284100014],[121.76254316500014,24.326605536],[121.76335696700009,24.325791734000074],[121.7658797540001,24.32318756700009],[121.7692977220001,24.31806061400006],[121.77198326900005,24.31293366100006],[121.772715691,24.309230861000017],[121.76742597700004,24.300930080000125],[121.74529056100009,24.281236070000162],[121.72144616000017,24.25116608300014],[121.70386803500006,24.238348700000117],[121.69825280000023,24.231512762000094],[121.70093834699999,24.224188544000086],[121.69776451900023,24.21898021],[121.67237389400023,24.20148346600014],[121.66285241000006,24.19310130399999],[121.65219160199999,24.172186591000024],[121.641286655,24.12986888200011],[121.61304772200006,24.09210846600014],[121.60743248800017,24.076849677],[121.60816491000016,24.060492255000085],[121.61500084699999,24.042303778000175],[121.62077884200008,24.03461334800006],[121.625743035,24.030951239],[121.62891686300006,24.026190497000115],[121.62916100400004,24.014960028000118],[121.62501061300011,24.002386786000116],[121.611094597,23.982489325000028],[121.60816491000016,23.970363674000126],[121.60670006600006,23.948065497000087],[121.59449303500007,23.89150625200007],[121.57032311300021,23.83209870000003],[121.539805535,23.69281647300006],[121.52149498800023,23.65867747600005],[121.47950280000018,23.43520742400007],[121.46216881600017,23.343003648000103],[121.45362389400023,23.32599518400015],[121.42676842500016,23.293117580000157],[121.41675866000017,23.276068427000027],[121.40886478000013,23.25458405200008],[121.40333092500006,23.21474844],[121.40381920700005,23.17926666900011],[121.40007571700002,23.14549388200011],[121.38160240999999,23.11066315300009],[121.37370853000006,23.103216864],[121.35547936300006,23.091009833000115],[121.34742272200005,23.083319403000115],[121.34343509200006,23.075384833000058],[121.33708743600002,23.055080471000153],[121.31885826900022,23.02553945500007],[121.30762780000022,22.979803778000147],[121.29957116000001,22.95917389500015],[121.26050866000004,22.907294012000065],[121.25562584700018,22.897772528000147],[121.20281009200019,22.856512762000094],[121.19027753999998,22.843166408000098],[121.1884871750001,22.833929755000113],[121.19092858200023,22.811957098],[121.19027753999998,22.802150783000073],[121.18555748800011,22.790961005000085],[121.17741946700006,22.778631903000033],[121.15935306100006,22.75747304900004],[121.14144941499997,22.741766669000143],[121.08025149800008,22.704087632000082],[121.03907311300011,22.662420966000024],[121.029063347,22.657538153000147],[121.02100670700007,22.647894598000093],[121.00114993600009,22.600775458],[120.99122155000016,22.58307526200018],[120.96062259200002,22.547796942000147],[120.94825280000012,22.526800848],[120.94109134200008,22.48362864799999],[120.92286217500005,22.42475006700012],[120.88656660200009,22.36595286700013],[120.88135826900005,22.345933335000055],[120.87501061300016,22.289252020000088],[120.87598717500022,22.237697658000013],[120.87924238399998,22.055812893],[120.87330162900004,22.029974677],[120.86361738399998,22.00893789300015],[120.85084069100006,22.000230210000055],[120.83570397200005,21.987250067000062],[120.83619225400005,21.957709052000027],[120.84156334700013,21.92548248900006],[120.84034264400005,21.904608466000084],[120.8230900400001,21.928615627000127],[120.79737389400012,21.946763414000046],[120.76742597700016,21.959295966000052],[120.7373153000001,21.966131903000147],[120.736094597,21.94281647300015],[120.72730553500006,21.934475002000067],[120.71436608200023,21.937486070000162],[120.70036868600008,21.948431708000058],[120.69955488400015,21.956691799000126],[120.70435631600006,21.98139069200012],[120.68336022199999,22.013861395],[120.6816512380001,22.022528387000094],[120.68189537900004,22.02960846600017],[120.68336022199999,22.041205145000088],[120.68336022199999,22.07904694200012],[120.68555748800013,22.090155341000138],[120.69483483200015,22.102606512000147],[120.69695071700006,22.113226630000113],[120.62126712300008,22.295070705000125],[120.61500084700006,22.304999091000028],[120.59392337300021,22.329169012000037],[120.57732181100006,22.36383698100012],[120.56967207100003,22.373846747000083],[120.53874759200006,22.396429755000085],[120.52637780000025,22.403021552000055],[120.52222741,22.40428294500005],[120.51807701900016,22.406968492000047],[120.51441491,22.420070705000015],[120.51197350400015,22.42475006700012],[120.495290561,22.434759833],[120.45720462300002,22.451605536],[120.43995201900023,22.462591864000057],[120.42172285200014,22.477362372000144],[120.41325931100013,22.482326565],[120.4021102220001,22.48680247600005],[120.3960067070001,22.48647695500013],[120.38900800900004,22.484076239],[120.38086998800011,22.483872789000046],[120.33122806100017,22.51972077000015],[120.28516686300017,22.580064195000162],[120.33366946700002,22.525946356000087],[120.32797285200016,22.551703192000144],[120.3199162120002,22.565822658000073],[120.31348717500012,22.57705312700007],[120.29330488399997,22.598293361000156],[120.25896243600002,22.627590236000074],[120.24577884200006,22.642523505000113],[120.23959394600003,22.6590843770001],[120.24781334699999,22.675238348000146],[120.2521264980002,22.68964264500012],[120.24634850400004,22.70990631700012],[120.23617597699997,22.729885158000016],[120.21753990999999,22.7567406270001],[120.19996178500016,22.79246653900013],[120.19605553500016,22.808335679000052],[120.19646243600019,22.818589585000083],[120.20215905000006,22.831244208000058],[120.2034611340001,22.839667059000092],[120.20134524800008,22.844142971000068],[120.19646243600019,22.847479559000092],[120.19141686300016,22.852036851000133],[120.18921959700018,22.860174872000144],[120.17847741000004,22.877346096000068],[120.17554772200006,22.884100653000118],[120.1674910820001,22.931870835000055],[120.16382897200005,22.95384349200016],[120.15691165500007,22.966538804000137],[120.14210045700004,22.98029205900015],[120.1601668630001,22.992132880000113],[120.17025800900014,23.013373114],[120.1661889980002,23.03172435100005],[120.14210045700004,23.03489817900011],[120.13746178500004,23.028387762000037],[120.13347415500006,23.016546942000062],[120.12671959700008,23.007147528000033],[120.11410566500015,23.007635809000032],[120.1091414720001,23.01544830900012],[120.11101321700008,23.039984442000147],[120.10792076900006,23.048570054000052],[120.09245853000009,23.05475495000003],[120.08375084700016,23.047552802],[120.0766707690001,23.037420966000028],[120.06625410200003,23.03489817900011],[120.05518639400005,23.04368724200016],[120.052419467,23.055812893000066],[120.05494225400005,23.067775783000016],[120.05941816500003,23.075873114000117],[120.07056725400005,23.081203518],[120.08472741000006,23.082953192],[120.09644616000004,23.08641185099999],[120.10043379000003,23.096991278000147],[120.09498131600017,23.10248444200009],[120.05941816500003,23.11066315300009],[120.05941816500003,23.117499091000113],[120.08920332100004,23.117743231000063],[120.08627363399997,23.126939195000105],[120.07007897200006,23.139797268000123],[120.05941816500003,23.15102773600013],[120.0620223320001,23.165025132000025],[120.07154381600012,23.169989325000145],[120.08187910199999,23.173163153000033],[120.08692467500022,23.182033596000068],[120.08383222700014,23.195746161],[120.07862389400016,23.20697663],[120.08215891700016,23.217292379000085],[120.0874437130001,23.230287823000097],[120.09609750400013,23.239490892000116],[120.09424889400022,23.247503973000036],[120.09603925900004,23.255357164000102],[120.10889733200015,23.286688544000143],[120.11491946700006,23.292710679000052],[120.12468509200019,23.29498932500003],[120.11049353800016,23.303698714000078],[120.11652721700013,23.317897404000078],[120.13117971100021,23.318810078000112],[120.14356530000022,23.323879299000122],[120.14893639400006,23.322251695000105],[120.145762566,23.333319403000147],[120.13734148200004,23.32773406000014],[120.13028443700003,23.32933481700014],[120.12094160200016,23.329738674000097],[120.12077884200018,23.34125397300012],[120.1301491600001,23.36096024400011],[120.14416428100006,23.361854372],[120.16457738900024,23.36171145600018],[120.1506453790001,23.39813873900006],[120.13477623800004,23.42625560100005],[120.14210045700004,23.438950914000102],[120.14210045700004,23.445786851000136],[120.13054446700002,23.450995184000035],[120.13209069100016,23.45697663000014],[120.13868248800017,23.464260158000158],[120.14210045700004,23.473089911000027],[120.15754360400004,23.49147571499999],[120.12502924700006,23.489611410000023],[120.12426153300024,23.52002055000004],[120.14168913100016,23.53794659],[120.14086753400014,23.595262518000183],[120.14360900800004,23.63803570200004],[120.15422991400013,23.672211863000182],[120.1708049610002,23.69890152000012],[120.17554772200006,23.733832098000065],[120.1844181650001,23.76439036700019],[120.18921959700018,23.774807033000073],[120.21265709700008,23.803168036000116],[120.21656334700006,23.81264883000013],[120.21949303500017,23.817938544000114],[120.24073326900022,23.832831122000144],[120.24675540500007,23.843410549000012],[120.25294030000012,23.868068752000013],[120.25749759200008,23.878404039000102],[120.28443444100006,23.902004299000154],[120.292246941,23.91193268400015],[120.30250084700006,23.938869533000016],[120.31812584700006,23.965806382],[120.34009850400005,24.021795966000028],[120.35035241000017,24.03807200700005],[120.36182701900012,24.048529364000146],[120.37126712300002,24.054348049000097],[120.37956790500013,24.058010158000126],[120.38550866000004,24.063055731000176],[120.38786868600017,24.073309637000094],[120.39234459700006,24.08291250200007],[120.41187584700005,24.09690989800005],[120.41635175900002,24.10748932500009],[120.41863040500007,24.142523505],[120.42204837300008,24.15216705900015],[120.43230228000013,24.161078192],[120.47543379000003,24.207098700000056],[120.47779381600017,24.209662177000055],[120.48064212300014,24.22109609600001],[120.49317467500012,24.23065827],[120.50163821700008,24.252875067000147],[120.51197350400015,24.295558986000074],[120.54737389400005,24.351548570000105],[120.5581160820001,24.385891018000066],[120.57081139400022,24.40493398600016],[120.62134850400017,24.456000067000147],[120.64893639400006,24.483872789000188],[120.65601647200006,24.49787018400015],[120.65935306100008,24.520697333000058],[120.66773522199999,24.540025132],[120.69019616000004,24.576117255000142],[120.6962996750001,24.59772370000006],[120.70215905000023,24.607001044000086],[120.72787519600004,24.613918361000103],[120.73511803500004,24.62124258000001],[120.73943118600002,24.630357164000188],[120.74463951900023,24.638820705000125],[120.76059004000004,24.653957424000122],[120.77808678500016,24.665716864],[120.79932701900005,24.670803127000127],[120.82667076900023,24.66608307500003],[120.8230086600001,24.685044664000042],[120.83334394599999,24.697821356000176],[120.84750410200004,24.710842190000065],[120.8545028000001,24.73065827000009],[120.85767662900017,24.73700592700011],[120.871348504,24.74323151200015],[120.87696373800011,24.76190827000015],[120.89812259200019,24.801174221000068],[120.9064233730002,24.811468817000087],[120.90919030000023,24.816880601000108],[120.90902753999997,24.82273997600008],[120.90650475400015,24.82908763199999],[120.90235436300021,24.836818752000013],[120.90805097700004,24.847072658000126],[120.91464277400011,24.853420315000065],[120.91488691500003,24.853705145],[120.92058353000012,24.861395575000028],[120.92286217500005,24.87466054900015],[120.92603600400005,24.884711005000113],[120.93392988400002,24.89459870000003],[120.94402103000019,24.902044989000117],[120.95362389400016,24.905015367000132],[120.95281009200008,24.909247137000065],[120.95533287900017,24.919378973],[120.96387780000005,24.94041575700014],[120.97169030000006,24.951768296000107],[121.00554446700006,25.000677802],[121.03199303500006,25.029242255000085],[121.059336785,25.05023834800012],[121.12940514400005,25.071112372000087],[121.14576256600012,25.08038971600014],[121.159841342,25.091620184000035],[121.17693118600017,25.100043036],[121.21094811300011,25.111151434000035],[121.28744550900002,25.123683986000017],[121.3302514980002,25.130682684000092],[121.348317905,25.13711172100001],[121.37175540500017,25.154771226000136],[121.3787541020001,25.157945054],[121.38738040500017,25.159328518000066],[121.3989363940001,25.15949127800003],[121.41228274800014,25.155462958000054],[121.41944420700005,25.146389065000065],[121.42408287900011,25.136908270000063],[121.43002363400002,25.131577867000185],[121.44320722700016,25.13641998900009],[121.42945397200005,25.155991929000052],[121.40739993600006,25.17621491100006],[121.39576256600004,25.182806708000143],[121.39909915500006,25.19212474200016],[121.40601647200016,25.197333075000174],[121.41325931100019,25.200425523000078],[121.416270379,25.203599351000136],[121.42416425900011,25.221340236000017],[121.43628991000016,25.241441148000074],[121.46127363399998,25.26190827000012],[121.49781334699999,25.27875397300012],[121.539724155,25.287420966000028],[121.58082116,25.28302643400006],[121.59791100400017,25.271429755000113],[121.63599694100006,25.22280508000007]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Uzbekistan","sov_a3":"UZB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uzbekistan","adm0_a3":"UZB","geou_dif":0,"geounit":"Uzbekistan","gu_a3":"UZB","su_dif":0,"subunit":"Uzbekistan","su_a3":"UZB","brk_diff":0,"name":"Uzbekistan","name_long":"Uzbekistan","brk_a3":"UZB","brk_name":"Uzbekistan","brk_group":null,"abbrev":"Uzb.","postal":"UZ","formal_en":"Republic of Uzbekistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uzbekistan","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":5,"mapcolor13":4,"pop_est":27606007,"gdp_md_est":71670,"pop_year":-99,"lastcensus":1989,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"UZ","iso_a2":"UZ","iso_a3":"UZB","iso_n3":"860","un_a3":"860","wb_a2":"UZ","wb_a3":"UZB","woe_id":23424980,"woe_id_eh":23424980,"woe_note":"Exact WOE match as country","adm0_a3_is":"UZB","adm0_a3_us":"UZB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1,"filename":"UZB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[71.75730432100013,39.9030951940001],[71.74180139100011,39.900769755000155],[71.71616988100007,39.9067642210001],[71.6968428960001,39.913843892000116],[71.67534550000008,39.92578114900006],[71.66552697800009,39.940198873000085],[71.6817533780002,39.95508168600013],[71.70686812300019,39.95611521400009],[71.72412805200011,39.96267812100008],[71.76061161300012,39.983710429],[71.78551965400018,39.989704895000116],[71.78975712100012,39.979317932000114],[71.76712284300018,39.915445862000134],[71.75730432100013,39.9030951940001]]],[[[71.16938155100014,40.04282826700016],[71.17692631000014,40.04200144500014],[71.1818872480001,40.04339670800012],[71.19294600500008,40.05026967400009],[71.198217,40.052595113],[71.22374515800006,40.057866109000045],[71.23635420800005,40.05605743400015],[71.24400231900003,40.046755677000036],[71.23728438300012,40.03109771700015],[71.19098230000006,40.00624135400004],[71.17470422400012,39.993994039000185],[71.17702966300007,39.968155823000174],[71.22105798400011,39.931723938000076],[71.21909427900019,39.90092478500009],[71.20844893400007,39.888780823],[71.19459965000013,39.88480173800012],[71.1610099690001,39.88423329700008],[71.11367435700006,39.87446645200011],[71.09889489800011,39.875499980000185],[71.08721602400007,39.883819886000154],[71.08478723100008,39.89482696600005],[71.07998132300006,39.90340525400008],[71.060964396,39.904128723000085],[71.04980228700018,39.89797922800001],[71.03605635600016,39.88754058900015],[71.02189701400019,39.880822652000134],[71.0092879640001,39.88573191300015],[71.00763431800013,39.911156718000186],[71.05037072800022,39.96288482700014],[71.0458232010001,39.99203033500005],[71.0342993570001,39.99911000600018],[71.00763431800013,40.003502503000064],[70.99450850400015,40.00887685200003],[70.98313969000017,40.021382548000034],[70.95843835400015,40.06308542900016],[70.95296065300008,40.07920847600006],[70.95404585800017,40.09579661100007],[70.95988529400003,40.11341827400004],[70.97714522300006,40.14457916300002],[71.00856449400007,40.15775665299999],[71.03119877200001,40.146904603000124],[71.04794193500018,40.12251332600003],[71.06173954200014,40.095176493000096],[71.07884444200008,40.07864003600018],[71.10597456900015,40.06494578100016],[71.16204349800009,40.04691070600016],[71.16545414200019,40.04463694300016],[71.16938155100014,40.04282826700016]]],[[[62.005961548000215,43.486984965000076],[62.026115357000066,43.480628765000134],[62.02832051600009,43.48092238300008],[62.11091638200011,43.491920065],[62.14605635600017,43.4966742970001],[62.18140303500016,43.50142852900008],[62.21674971600006,43.50615692200007],[62.25188968900013,43.51085947700015],[62.30842370600006,43.51840423599999],[62.36485437000013,43.52600067100015],[62.42128503400008,43.53359710700011],[62.47771569800008,43.54111602900014],[62.56897627800018,43.55189056400008],[62.660236857000065,43.56271677600013],[62.7514974370001,43.573491313000076],[62.84286136900019,43.58429168800011],[62.934121949000115,43.595066223000046],[63.02538252800011,43.60584076000005],[63.1166431070001,43.61661529600018],[63.208007040000126,43.62746734700012],[63.36034916200012,43.617416281000104],[63.512691284000105,43.60726186100013],[63.66513676000014,43.597288310000025],[63.81737552900008,43.587237244],[63.95592004400012,43.578064678000096],[64.09467126500013,43.568917949000124],[64.23316410300006,43.55971954400003],[64.3716569420001,43.550598654000126],[64.42674401800016,43.547032979000065],[64.44421065300011,43.55067616800007],[64.4615739340002,43.55431935700015],[64.56213627200006,43.59480784200015],[64.65835778800007,43.633591003],[64.75762821400016,43.67361440000015],[64.85503829000001,43.71291432800014],[64.87307336400013,43.71782358800008],[64.89100508600008,43.72278452500002],[64.90702478100016,43.72097585000013],[64.92294112200008,43.719115499000125],[64.93958093300009,43.708289287000085],[64.9565308030001,43.69735972100004],[65.06422448700008,43.59555715000006],[65.17191817200009,43.49367706300008],[65.22173425300016,43.45528147400013],[65.27144698100008,43.417015076000055],[65.37448978700016,43.36991200800004],[65.47737756300009,43.322808940000144],[65.4971696370001,43.310019023000066],[65.51691003400006,43.297229106000096],[65.60186608900003,43.16901987700008],[65.65612634300007,43.08721608500004],[65.73105717000013,42.974225566000044],[65.79523929800008,42.87720306500007],[65.80402429200015,42.87647959400009],[65.81260258000012,42.87575612400009],[65.95693485500013,42.93301361100005],[66.10126713100013,42.9903227750001],[66.07971805900016,42.74194000300003],[66.0581689860002,42.49360890700014],[66.05568851700016,42.4672539270001],[66.05320804800007,42.44087310900012],[66.04814375800018,42.432268983000185],[66.04318282100016,42.423664856000144],[66.03140059400008,42.42025421200013],[66.01961836700016,42.4168435670001],[66.01672448700005,42.40994476300004],[66.01372725400003,42.403020121000125],[66.01315936400013,42.37286994600014],[66.01005822800008,42.208225810000116],[66.00649255300019,42.01343149899999],[66.00752608200017,42.00805714900004],[66.00866296400008,42.00265696200016],[66.012900432,42.00007314100007],[66.01724125100012,41.997618510000095],[66.13764733900021,41.997230937],[66.24735640500015,41.9969208780001],[66.3566003820001,41.99663665800004],[66.4773682050002,41.99622324700003],[66.48119226100007,41.99663665800004],[66.48480961100014,41.997024231000026],[66.48863366700019,41.9968950400001],[66.49240604700012,41.996791687000055],[66.49576501500022,41.996171571],[66.49917565900014,41.995603130000134],[66.501656128,41.99451792400005],[66.5041365970001,41.99348439500007],[66.52144820200007,41.86710968000012],[66.5388631590001,41.740760804],[66.57069584100006,41.61730580700005],[66.60263187700016,41.4937991340001],[66.64552331500013,41.34646962500006],[66.68820804900011,41.19919179300014],[66.710738974,41.17862457300008],[66.73295983900007,41.15805735300007],[66.75789044400014,41.153140136],[66.77409427900014,41.14994415300008],[66.815280396,41.14188263000007],[66.93139733900007,41.147153626000105],[67.0289624430001,41.151494446000086],[67.17479333500009,41.158109029000094],[67.28171187400008,41.1629666140001],[67.40930098500021,41.16870269800016],[67.49053633600008,41.17242340200009],[67.62024418200022,41.17836619100007],[67.7481433510001,41.18410227500006],[67.75956384300011,41.1816734830001],[67.77093265800008,41.179296367000134],[67.7920166420001,41.17097646100008],[67.81299727400018,41.16270823200012],[67.8239526780001,41.15976267600006],[67.83490808100007,41.15686879500005],[67.84451989800019,41.157902324000034],[67.85413171400009,41.158987528000026],[67.88307051600006,41.17345692900015],[67.9120093180002,41.18797800700009],[67.92467004400007,41.1941791790001],[67.93743412300014,41.20038035100008],[67.94353194200018,41.18611765500019],[67.9494747310001,41.171906637000134],[67.95076664200016,41.17123484300005],[67.95190352400007,41.17056305000007],[67.9554175220002,41.16498199500016],[67.95893151900005,41.15945261600014],[67.98094567900014,41.137490133000185],[68.00306319200016,41.11563100200014],[68.00812748200022,41.10674265600012],[68.0131917730001,41.09785430900003],[68.01711918200007,41.07852732300016],[68.0211499430001,41.059148662],[68.02766117400003,41.05093210900016],[68.03437911000017,41.04271555600003],[68.04032190000007,41.04643625900014],[68.04636804200001,41.05020863900007],[68.05277592000007,41.05253407800011],[68.05908044500009,41.054756165000114],[68.06517826400014,41.054084371000116],[68.071379435,41.0533092240001],[68.07685713700019,41.04798655200007],[68.08212813300023,41.04271555600003],[68.0890527760001,41.053929342000075],[68.09597741700011,41.065143128000116],[68.10662276200011,41.06591827400014],[68.11737146000021,41.06674509700015],[68.11933516500008,41.05609975200015],[68.12119551600009,41.04550608300009],[68.12129886900019,41.044369202],[68.12145389800011,41.0432839970001],[68.1201619870001,41.03868479500012],[68.11892175300014,41.03403391600007],[68.1236759850001,41.032845357000056],[68.12848189300021,41.03165680000005],[68.12998051000014,41.03062327100007],[68.1313240970002,41.029641419000185],[68.11985192900008,41.02323354100004],[68.10822473200014,41.01682566300009],[68.10403894100008,41.01522369400005],[68.09969812000011,41.01362172400003],[68.10378055800001,41.01191640300006],[68.10786299600012,41.01026275700012],[68.11034346500011,41.00788564100016],[68.11266890500022,41.00550852500011],[68.11675134300006,40.99966908800003],[68.12088545700007,40.99382965200006],[68.12078210500013,40.97951527900006],[68.1205753990001,40.9653042610001],[68.11571781500018,40.94850942000012],[68.11075687700023,40.931662903000145],[68.10331547000013,40.91533315100013],[68.09597741700011,40.898951722000064],[68.0882259520001,40.88592926100013],[68.080577841,40.87295847600002],[68.07515181500017,40.86639556900003],[68.06951908300013,40.859832662000045],[68.06212935400012,40.85352813800013],[68.05473962400012,40.847223612000114],[68.04652307200016,40.84226267500016],[68.03820316500011,40.83719838500009],[68.02063317900016,40.83115224300015],[68.00306319200016,40.82515777700003],[67.99861901900007,40.82205719000007],[67.99407149300012,40.81895660500014],[67.9925212000002,40.81502919500015],[67.99091923100016,40.81110178700003],[67.99422652200016,40.80934478800013],[67.99748213700016,40.80753611300003],[68.01732588700023,40.80428049700005],[68.03706628400019,40.80107655900018],[68.05225915500014,40.79451365200002],[68.06750370300009,40.788002421000115],[68.11323734600009,40.75353424100017],[68.15891931200011,40.719117737000104],[68.1924056400002,40.699015605000156],[68.22609867300015,40.67886179700015],[68.26649657800013,40.66270263500003],[68.34392093900007,40.63173289000015],[68.46174320500009,40.584655660000074],[68.46339685100023,40.58718780600016],[68.46505049600009,40.589719950000145],[68.47114831500002,40.59447418200013],[68.47734948800021,40.59922841400014],[68.48489424700008,40.59891835600014],[68.49243900600001,40.59860829700007],[68.49631473800017,40.60212229500003],[68.49988041200007,40.605636292000085],[68.50267094000012,40.609977112000145],[68.50546146700017,40.61431793300012],[68.51011234600011,40.616746724],[68.51481490100011,40.61912384000014],[68.52055098400015,40.61834869400003],[68.52633874500006,40.617573548000124],[68.54633752400017,40.61002878900017],[68.5662329510001,40.60248402900011],[68.5796688230001,40.6009337360001],[68.59300134300022,40.59948679600011],[68.60354333500013,40.604292704000116],[68.61424035700023,40.60909861300002],[68.61739261900019,40.6156615200001],[68.62038985200009,40.62222442700009],[68.61067468300016,40.626100159000046],[68.60111454300008,40.63002756800002],[68.61325850400007,40.64516876300003],[68.62545414200005,40.66041331000015],[68.62638431800022,40.66377227800017],[68.6274178470002,40.66713124699999],[68.6231287030001,40.672712301],[68.61883955900007,40.67824167900001],[68.61542891400015,40.684442851000185],[68.61212162300015,40.690540671000136],[68.61036462400008,40.69694854800018],[68.60850427200015,40.70335642500013],[68.60902103700019,40.70960927400013],[68.60943444800009,40.71581044500011],[68.5969287520002,40.71808420900014],[68.58421634900017,40.720357972000144],[68.57935876500002,40.7224250280001],[68.57460453300016,40.72449208600007],[68.57047041900015,40.728471171000145],[68.56633630300021,40.73250193300005],[68.5630290120001,40.74180369100016],[68.5597733970002,40.75131215500006],[68.5546574300001,40.79317006500004],[68.54969649300008,40.83502797400011],[68.55145349100003,40.84272776300009],[68.5534171960002,40.850427551000095],[68.55615604600015,40.85290802000016],[68.5589982500002,40.85549184200006],[68.56209883600016,40.85735219400008],[68.56540612800003,40.85916086900006],[68.56871341900015,40.8648452770001],[68.57186568200021,40.870478008000035],[68.57253747600005,40.87528391500013],[68.57315759300015,40.88014150000008],[68.5718140060001,40.89135528600012],[68.57057377100014,40.90251739500006],[68.57067712400007,40.90799509700003],[68.57088383000016,40.91352447500013],[68.57300256300013,40.91254262400015],[68.57532800300007,40.9116124480001],[68.57997888200012,40.910217184000125],[68.5847331140001,40.90882192000005],[68.58690352300017,40.90768503900013],[68.58917728700013,40.90659983300004],[68.59465498900008,40.918382060000155],[68.6001326900001,40.93006093400011],[68.61398197400014,40.93729563500009],[68.62793461100014,40.94453033500015],[68.64952445100019,40.951690602],[68.65863041200006,40.954710592000126],[68.68937788900021,40.9649425250001],[68.6995581460001,40.974399312000074],[68.70953169800012,40.98375274700011],[68.72787683100009,41.02380198200011],[68.7462736410001,41.06379954100008],[68.75986454200009,41.07553009100014],[68.77376550300008,41.08726064100013],[68.80818200700011,41.09868113200004],[68.8424434820001,41.11010162400005],[68.85489750200011,41.12637970000015],[68.86735152200018,41.14255442300008],[68.8736560470002,41.14906565400004],[68.88021895400018,41.155525208000185],[68.89050256400016,41.158109029000094],[68.9008378500001,41.16064117500018],[68.92223189300009,41.162759908000154],[68.94378096500006,41.16487864200003],[68.96171268700002,41.17159657800015],[68.97974776200013,41.17821116100005],[68.9970076910001,41.187099508000145],[69.01406091300007,41.196039531000096],[69.0225875240001,41.202395731000124],[69.03121748900011,41.208751933000045],[69.0351448970001,41.21448801800001],[69.0391756600001,41.22027577700008],[69.04692712400018,41.267869771],[69.05478194100013,41.31541209000012],[69.05436853000012,41.323628642000145],[69.0539551190001,41.3318968710001],[69.05250817900011,41.337787985000105],[69.05116459100006,41.34362742100011],[69.04971765100007,41.345436096000086],[69.04832238800006,41.347244772000074],[69.04599694800007,41.348536683000034],[69.04351648000008,41.349880270000185],[69.0388656000001,41.354324442000106],[69.03426639800014,41.35871694000009],[69.03297448700019,41.3628510540001],[69.03157922400013,41.36698516800014],[69.03390466300006,41.3704991660001],[69.03617842600008,41.37401316300004],[69.04031254000009,41.37664866200008],[69.04444665500009,41.37918080700013],[69.06754602100008,41.38775909499999],[69.09064538600015,41.39628570600011],[69.10005049700013,41.39850779300009],[69.10945560700006,41.400678202],[69.11880904100022,41.39793935200005],[69.12805912300021,41.395148824],[69.1331234130001,41.40553578700011],[69.1381877040001,41.41592275100014],[69.1503833420002,41.424966126000086],[69.1626823330001,41.43406117800008],[69.18986413600012,41.44708363900009],[69.21714929200002,41.46005442300013],[69.22531416900009,41.46139801],[69.23332401500014,41.46263824500012],[69.24815515200007,41.45855580600011],[69.26293461100008,41.45457672200014],[69.27027266400007,41.45535186800005],[69.27755904200015,41.456178690000066],[69.29683435100017,41.465480449000026],[69.31616133600002,41.474833883000045],[69.32355106600008,41.47638417600017],[69.3311475020001,41.47793446900009],[69.36080977400016,41.47380035500008],[69.39067875200007,41.46971791600005],[69.39646651200016,41.47235341400007],[69.40235762600017,41.474833883000045],[69.40173750800008,41.480001526000066],[69.40111739100021,41.485169169000145],[69.39274580900016,41.4967446910001],[69.38447758000021,41.508216858000125],[69.3827205810002,41.51348785400013],[69.3808085530002,41.518810526],[69.3873714600002,41.53188466400014],[69.39377933800014,41.54495880200001],[69.40711185800015,41.55224517900008],[69.42034102400007,41.55953155500005],[69.44881473800008,41.566352845000104],[69.47728845200012,41.57312245700014],[69.52818973800007,41.60319814100002],[69.57898767100008,41.63337717700004],[69.5931986890001,41.64583119800001],[69.60756473800019,41.6582852180001],[69.61598799700018,41.66327199300004],[69.6245662840001,41.66831044600012],[69.69200402800007,41.682392273000126],[69.75944177300019,41.69644826300005],[69.81514896700011,41.69805023200008],[69.87085616000016,41.699574687],[69.89173344000012,41.7062151090001],[69.91240401200011,41.71285553000003],[69.92764856000011,41.726317241000075],[69.94289310700005,41.73972727500002],[69.94971439700006,41.74745290200012],[69.95653568500015,41.755178528000116],[69.96428715000016,41.7599069220001],[69.97203861500006,41.76458363900015],[69.99999556500015,41.77233510399999],[70.02795251500007,41.77998321600016],[70.0694486900002,41.802927552000185],[70.11109989400015,41.82597524000006],[70.12365726700014,41.83705983500006],[70.13636966900012,41.84809275300016],[70.17037276200014,41.8919918830001],[70.20416914900014,41.9358134970001],[70.21140385000008,41.94139455200012],[70.21858687300002,41.94692393000012],[70.22711348500016,41.95064463300004],[70.23579512600011,41.954287822000126],[70.24489017700009,41.95671661400017],[70.25388187700011,41.95911956800005],[70.26215010600016,41.96232350700011],[70.27031498300019,41.96555328400008],[70.27667118300022,41.970875956000114],[70.28297570900023,41.9762503060001],[70.28674808800017,41.984983623000154],[70.29026208500008,41.99376861600014],[70.30266442900009,42.014129131000075],[70.31506677300015,42.03459299800012],[70.33635746200011,42.04841644300008],[70.35790653500007,42.06223988900014],[70.40674076400015,42.07800120100005],[70.45541996300008,42.093736674000105],[70.4627580160001,42.0926514690001],[70.4701994220002,42.09161794000012],[70.4793978270001,42.086708680000086],[70.48849287900006,42.08187693300009],[70.49650272700015,42.075133159000146],[70.5044608970002,42.06846689900014],[70.50823327700002,42.061981506000066],[70.5118506270002,42.055418599000106],[70.51536462400017,42.046039327000145],[70.51887862200013,42.03668589300009],[70.52663008600021,42.03082061800002],[70.53422652200018,42.024981181000115],[70.54482019000008,42.021854757000156],[70.55525883000021,42.018702494000124],[70.56709273300012,42.017513937],[70.57902998900008,42.01624786400005],[70.59453291800017,42.021854757000156],[70.61024255300006,42.02740997299999],[70.62083622300021,42.04216359499999],[70.63148156800011,42.05686554],[70.64073164900006,42.075133159000146],[70.6498267010002,42.093400777000014],[70.66145389800008,42.10967885300012],[70.67318444900016,42.125982768000156],[70.68724043800009,42.13846262700015],[70.70114139800015,42.15094248500004],[70.70641239500017,42.157634583000075],[70.71183842000008,42.16432668099999],[70.71586918100014,42.17365427600011],[70.71989994300006,42.182904359000034],[70.72713464300008,42.190139059],[70.73426599100006,42.19729624400004],[70.74625492300012,42.197657980000045],[70.75814050300002,42.19801971500014],[70.78139489700007,42.19321380600003],[70.80454594000011,42.18843373700004],[70.82345951300006,42.19050079300008],[70.84237308800013,42.19254201300005],[70.86118330900015,42.19969919900011],[70.87999353000006,42.20693389900008],[70.91389327000016,42.22755279600006],[70.9477930090001,42.24814585400016],[70.96960046400008,42.263467916000124],[71.01404219500009,42.287704163000015],[71.0457715260001,42.2909597780001],[71.07760420700006,42.281167094000025],[71.21785404400006,42.206365458],[71.24986822800011,42.19838531500001],[71.25320072500001,42.19755462700011],[71.23821455900006,42.16024424300018],[71.20100752700009,42.140788066000184],[71.1184285890001,42.12290802000002],[70.97714522300006,42.04423065200014],[70.93590743100005,42.036866761000155],[70.88671146700008,42.03849456800002],[70.84547367400009,42.03035553000007],[70.82805871600013,41.993742778000055],[70.82511316000014,41.936330262000055],[70.8140027260001,41.919535420999985],[70.77932784100018,41.909665223],[70.6796956790001,41.90111277300015],[70.64894820200007,41.88739268000013],[70.5500911870001,41.82406321200013],[70.50647627700008,41.78559010800008],[70.47722741700007,41.73843536500006],[70.45366296400019,41.712080384],[70.42348392800008,41.69691335099999],[70.39082442200007,41.68505361000017],[70.33118981900006,41.64962941500012],[70.16928755700022,41.57834177700006],[70.14825524900012,41.55245188400012],[70.1665487060001,41.52020579000008],[70.20344567900023,41.50563303700001],[70.34441898600012,41.4937991340001],[70.34452233900006,41.493695781000085],[70.3447290450001,41.493644104000154],[70.34493575000008,41.493489075000106],[70.3822461340001,41.47643585200008],[70.39898929800003,41.46496368500006],[70.4136137290002,41.450700989],[70.43805668200015,41.41607777899999],[70.45319787600008,41.405484111000085],[70.47078170900014,41.404879076000135],[70.47722741700007,41.40465728800008],[70.5113338620001,41.41447581000013],[70.63380700700004,41.46749582900004],[70.66781009900009,41.471371562],[70.68672367400013,41.46248321600008],[70.70357019100013,41.445481669000074],[70.75969079600006,41.37251454700005],[70.76919925900015,41.352102356],[70.77105961100003,41.331018372000166],[70.75628015200002,41.26962677100009],[70.7580371500002,41.25216013600014],[70.7704394940001,41.238517558000055],[70.78656254100017,41.240429586000154],[70.80599288000022,41.24745758100006],[70.82852380300008,41.249111227000114],[70.8477474360001,41.24306508400015],[70.86573083500016,41.23319488599999],[70.88216394100002,41.220482483000055],[70.89596154800009,41.20611643500003],[70.91420332900005,41.19304229699999],[70.93415043100006,41.19144032800013],[70.97714522300006,41.19634958900018],[71.02468754100008,41.18978668200001],[71.04701176,41.18203521800008],[71.06757898000009,41.169736226000154],[71.08576908400008,41.16203643900015],[71.1230794680001,41.158212382000116],[71.13909916200006,41.148393860000155],[71.16442061400014,41.1161994430001],[71.1801302490002,41.108137919000015],[71.18994877100008,41.12746490500017],[71.1878817140001,41.14844553700006],[71.18302412900019,41.16637725900013],[71.1857113040002,41.1802265430001],[71.2063818770001,41.18875315400011],[71.23015303600019,41.187254537000015],[71.24152185100016,41.17516225200002],[71.25382084100013,41.137490133000185],[71.2633809820002,41.123485820000084],[71.2761450610001,41.11315053300016],[71.28947758000012,41.113874004000145],[71.30022627800022,41.133045960000075],[71.32523767100021,41.15733388299999],[71.39365726700012,41.112737122000155],[71.4160848390002,41.12736155200004],[71.42145918800017,41.162088115000174],[71.41257084200006,41.33468739800015],[71.41877201400021,41.34739980100012],[71.43246626800007,41.344815980000114],[71.48062870300006,41.31076121100007],[71.5238302010001,41.29665354500004],[71.55793664600006,41.301717835000105],[71.58553186100002,41.32352528900013],[71.61881148300009,41.37778554300017],[71.63307417800016,41.411323547000094],[71.63741499900007,41.431270651000105],[71.63369429600002,41.4496157840001],[71.60558231600005,41.47684926400008],[71.59555708800004,41.493489075000106],[71.59555708800004,41.493695781000085],[71.59545373600022,41.493747457],[71.59545373600022,41.4937991340001],[71.61529748500001,41.532143046000115],[71.62738977000012,41.543201803000116],[71.649507284,41.54991973900014],[71.6714180910001,41.54738759400006],[71.68413049400013,41.53405507500004],[71.68940148900016,41.514624735000055],[71.68950484200009,41.4937991340001],[71.67110803300008,41.43762685200012],[71.6719348550001,41.425482890000055],[71.68144331900012,41.42284739200012],[71.6873344320002,41.431012268000025],[71.69146854700014,41.441915996000105],[71.69611942500009,41.447445374000026],[71.70686812300019,41.44408640500008],[71.71224247300009,41.428015036000126],[71.72164758300013,41.42475942000014],[71.7297091060001,41.43008209200017],[71.73043257700013,41.45116607700011],[71.73684045400014,41.45540354400008],[71.74521203600014,41.45281972300016],[71.75317020700018,41.447290344000166],[71.84701460800008,41.341818746],[71.86303430200016,41.31220815000016],[71.86882206300012,41.27923858700011],[71.86634159400015,41.23660553000012],[71.87161259000018,41.19448923700015],[71.89765751200017,41.18492909800007],[71.97703251100019,41.19521270800008],[72.00121708100019,41.180019836000135],[72.01651330600005,41.16353505500016],[72.0337732340001,41.15661041300008],[72.06364221200008,41.17020131400007],[72.0852429610002,41.18487742100017],[72.10849735500014,41.19640126600007],[72.13288863200009,41.19929514600007],[72.1584167890002,41.18787465400008],[72.1698889570001,41.168651022000134],[72.17464318800009,41.141417542000156],[72.17640018800009,41.112892151000025],[72.18559859200009,41.060647278000104],[72.18559859200009,41.041061911],[72.17877730300015,41.023181865000126],[72.16513472500006,40.99935903000015],[72.19548649700012,41.00635779100004],[72.25298466000018,41.01961619100014],[72.28977828000009,41.02354360000011],[72.29732303900002,41.02814280200009],[72.30879520700014,41.05444610600004],[72.31406620300018,41.06168080700009],[72.33235966000004,41.07284291700002],[72.34569217900017,41.06596995000014],[72.37432092300017,41.031966858000104],[72.39519820100021,41.022044983000015],[72.42351688700015,41.0157404590001],[72.47674361200009,41.01181304900014],[72.48191125500009,41.00881581700012],[72.48470178200014,41.0046817020001],[72.48521854700019,40.999565735000104],[72.48356490100016,40.993519592000084],[72.48335819500019,40.97057525600003],[72.50144494600008,40.96349558600012],[72.52624963400014,40.96220367400015],[72.5455766200001,40.956519267000104],[72.58846805900006,40.905824687000134],[72.61947391800017,40.88008982400005],[72.6582312420002,40.86717071600004],[72.70122603400009,40.863243307000076],[72.83010705600012,40.87207997700007],[72.86865767400016,40.864121806000114],[72.87299849400009,40.834821269000045],[72.87031132000001,40.818181458000126],[72.8831270750002,40.81962839800011],[72.92942915800009,40.84417470300009],[73.0034298100002,40.870167948000145],[73.01944950400016,40.86189972000001],[73.03329878700012,40.847223612000114],[73.05355594900013,40.83631988600014],[73.11246708200022,40.83916209000013],[73.13504155500019,40.8352738440001],[73.14329199400018,40.833852782000015],[73.143369589,40.833839416999986],[73.14864058400016,40.813685608000114],[73.11804813700022,40.78293813100005],[73.07060917100014,40.762474264],[72.97676477100005,40.73606760700003],[72.89098189300014,40.695088196000185],[72.81894494700006,40.681083883000085],[72.78390832600016,40.66966339100016],[72.76003381400007,40.641758118],[72.74835494000008,40.57509552099999],[72.7192094320001,40.5648635860001],[72.68241581200007,40.57767934200008],[72.66422570800015,40.577782695],[72.65647424300013,40.5611428830001],[72.65513065600007,40.54636342400006],[72.65047977700007,40.532152405000105],[72.64086796100017,40.51985341400017],[72.62546838400007,40.51049998000003],[72.58578088400012,40.50874298200015],[72.51529423000008,40.54563995400018],[72.47674361200009,40.54956736300015],[72.44790816300016,40.56047109000009],[72.41483524600008,40.58987498],[72.381555624,40.61214752200014],[72.35189335100009,40.601967265000084],[72.3485092550002,40.585508257000114],[72.34848270600011,40.58537913100015],[72.36992827500015,40.55793085500006],[72.37008345500013,40.55773223900014],[72.36998010200007,40.539852194],[72.36326216700016,40.52357411800007],[72.36346700700003,40.51241031500008],[72.36346887200008,40.512308655000126],[72.3722538660002,40.50326527900016],[72.41558505200013,40.479329958],[72.41566206900009,40.479287415000144],[72.42002791600012,40.47102654600009],[72.42609577400016,40.45954520700012],[72.42620406100016,40.45934031200012],[72.42517053200018,40.435982564000184],[72.41442183400008,40.410712789000016],[72.39406132000013,40.38942209900013],[72.37049686700013,40.38564972000002],[72.34341841600005,40.3934011840001],[72.2843005780002,40.41985951800011],[72.26962447100013,40.424045309000135],[72.22435591700011,40.422443339000026],[72.21164351400009,40.425595601000154],[72.21176846300007,40.42583619500009],[72.21650109900006,40.434949036000106],[72.22807662000011,40.43753285800001],[72.24512984200007,40.43872141500013],[72.2595992440001,40.44239044200013],[72.26363000500007,40.45251902300008],[72.26341527500009,40.45265116500018],[72.25422489400015,40.45830678300014],[72.23593143700006,40.45990875299999],[72.22832780000013,40.459606084000185],[72.18270471200012,40.457790019000115],[72.16585819500014,40.454431051000185],[72.09929895000002,40.42637074800017],[72.09010054500007,40.41603546200015],[72.08410607900012,40.39738027],[72.06963667800008,40.36942332000011],[72.04317834500009,40.34932118800013],[71.95667199800019,40.31567983100008],[71.95109421200007,40.30152878200012],[71.95109094300008,40.30152048800015],[71.95822229000011,40.28653432200018],[71.97703251100019,40.27609568300012],[72.00597131300017,40.26576039600003],[72.01323892900021,40.262072352000146],[72.01982059800011,40.258732401000124],[72.02540165300016,40.25087758400017],[72.01889042200011,40.240025533000114],[72.00483443200007,40.237286682],[71.98902144300008,40.23930206300004],[71.97703251100019,40.24307444300017],[71.96917769400008,40.244418030000034],[71.96338993300012,40.24374623600015],[71.95181441300016,40.24090403300009],[71.91233361900007,40.243436178000145],[71.87295617700013,40.25077423100005],[71.836472616,40.249172262000044],[71.80546675600007,40.22529775000014],[71.78675988800008,40.19351674400009],[71.77590783700006,40.1799258430001],[71.75978479000011,40.168091939000085],[71.70717818200009,40.14426910400012],[71.69332889800015,40.14111684200016],[71.67307173600013,40.147886455],[71.66687056500015,40.16313100200013],[71.667180623,40.20416208900009],[71.66015262900012,40.2244709270001],[71.64599328600016,40.24710520400008],[71.62831994600018,40.258887431000154],[71.61012984200013,40.24638173500007],[71.60403202300009,40.227261455000175],[71.6016549070001,40.20994985000006],[71.59297326700008,40.198426005000144],[71.56827193200016,40.19656565300012],[71.52124637800009,40.20374867800008],[71.4984053960001,40.21051829100013],[71.4771147060001,40.220801901000115],[71.45892460200011,40.23413442000004],[71.45096643100007,40.24891387900006],[71.44135461400016,40.26090281200011],[71.3965511480001,40.271548157000026],[71.36513187600016,40.29413075800012],[71.34492639200008,40.295215963000125],[71.31355879800006,40.29268381800013],[71.29707401600014,40.29382069900005],[71.2832247320001,40.2984199020001],[71.27283776900018,40.30772166000004],[71.26394942300007,40.3182119750001],[71.25382084100013,40.32441314700016],[71.23955814600006,40.32110585600016],[71.22395186300011,40.302864075000016],[71.21511519400009,40.280746562],[71.20100752700009,40.263848369000115],[71.16938155100014,40.26141957700006],[71.0532129320002,40.27423533100013],[70.995128622,40.26658722000015],[70.9589551190002,40.23837188800009],[70.93833622200012,40.239922181],[70.8497111410002,40.233772685000034],[70.7071875410002,40.200183004],[70.66429610200007,40.19749582900009],[70.62212813300019,40.19956288700014],[70.58182051600012,40.22173207700016],[70.56394047000018,40.2642101040001],[70.55060795100016,40.31046051100016],[70.52404626500001,40.34374013300011],[70.50192875200011,40.35081980400004],[70.48291182500006,40.34926951100011],[70.46410160300016,40.34482533800011],[70.44219079600006,40.34332672100011],[70.42121016500019,40.34797760000008],[70.37139408300007,40.36492747000006],[70.38493330900022,40.399705709000116],[70.38214278100006,40.40394317700016],[70.37356449400014,40.41179799400011],[70.37139408300007,40.41334828800005],[70.3719625240001,40.412986552000135],[70.35878503400014,40.427714336000136],[70.35702803500007,40.43040151000015],[70.3554260670002,40.43510406500006],[70.35382409700017,40.456136373000064],[70.36963708500016,40.47551503600012],[70.39935103400015,40.490191142000114],[70.46818404100023,40.502490133000045],[70.47779585800006,40.50548736600017],[70.48787276200018,40.5155642700001],[70.51195398000006,40.546776835000074],[70.52549320500012,40.55711212199999],[70.53944584200022,40.56186635400009],[70.55422530100006,40.565018616000046],[70.56931482000002,40.57044464200011],[70.5820788990001,40.57876454700009],[70.61716719600022,40.6119408170001],[70.67793868100014,40.649922994000015],[70.69292484600012,40.66041331000015],[70.70723921700018,40.668991598],[70.71566247600016,40.67214386000013],[70.73209558100004,40.67498606400012],[70.73550622500007,40.67886179700015],[70.73715987200015,40.68356435200015],[70.74067386900018,40.687698467000175],[70.75617679800008,40.69513987300009],[70.7562927860001,40.69557805100011],[70.75850223800015,40.70392486600018],[70.7671322030001,40.737617900000046],[70.72889164300008,40.75446441700002],[70.63742435700013,40.7705874630001],[70.62176639900011,40.78598704000008],[70.61933760600013,40.80319529300006],[70.62874271700016,40.81585601800002],[70.64868981900011,40.81750966400013],[70.68346805900013,40.79451365200002],[70.70315677900007,40.78893259700008],[70.70512048300006,40.80743276000011],[70.6968522540001,40.81621775399999],[70.51443444800012,40.972590637000096],[70.48291182500006,40.993519592000084],[70.4797595630001,40.99646514900017],[70.47722741700007,40.99982411700007],[70.458006358,41.015736633000145],[70.44570479300015,41.02592071600015],[70.40115970900015,41.039976705000086],[70.36353926600012,41.032431946000045],[70.33589237400011,40.92696034800018],[70.28039188600022,40.877712708],[70.20799320500007,40.84458811500009],[70.10422692900008,40.813323873000016],[70.00965905700016,40.75803009],[69.82532922400017,40.71400177000011],[69.80331506400009,40.70563018800014],[69.78352299000014,40.69296946200011],[69.74156172700012,40.652455139],[69.7176872150002,40.636280417000094],[69.69091882300009,40.63002756800002],[69.66011966900005,40.63870920800015],[69.64751062000006,40.64744252600003],[69.63717533300004,40.65793284100009],[69.61888187600019,40.68165232400004],[69.60782312000018,40.691780905000186],[69.58260502100015,40.70438995400012],[69.57082279400005,40.712451478],[69.53185876500007,40.75859853100003],[69.50922448700007,40.7746699020001],[69.47728845200012,40.77704701800015],[69.46168217000016,40.78433339500013],[69.4491764740001,40.79446197500009],[69.43584395300016,40.80267852900012],[69.41775720300015,40.80422882100014],[69.38525272600012,40.79611562200013],[69.36928470900007,40.78939768500011],[69.35507369000013,40.780354309000145],[69.32959720800008,40.755342916000146],[69.3141976320002,40.72929799500018],[69.3071696370001,40.69932566400003],[69.30660119700022,40.662532044000145],[69.31347416200012,40.609356995],[69.30934004800011,40.59581776900002],[69.29497399900018,40.58915151000009],[69.23425419100008,40.58527577800005],[69.19844242400004,40.56651723300014],[69.19802901200013,40.54584666000012],[69.23823327700009,40.493963521000055],[69.23833663000019,40.493963521000055],[69.25973067200019,40.43763621100014],[69.26944584200007,40.41980784100018],[69.29549076300012,40.38394439800014],[69.30634281400009,40.364979147],[69.3126990160001,40.34280995800015],[69.3053092850001,40.29382069900005],[69.27311486800014,40.289583231],[69.23461592700019,40.30084869400015],[69.20836429900007,40.29831654900009],[69.21249841300008,40.26875763000005],[69.28525883000006,40.21863149000002],[69.28525883000006,40.194963685000104],[69.24769006400007,40.181734518],[69.1979256590001,40.182974752000135],[69.10800866700018,40.20364532500015],[69.0736398170001,40.2169407140001],[69.04201786300015,40.22917348300008],[69.01922855600017,40.23206736300007],[68.85655114800008,40.21274037700012],[68.83665572100008,40.20643585200009],[68.8018774820001,40.19113962800007],[68.77846805900006,40.18876251200011],[68.72053877800008,40.19651397800011],[68.69831791200008,40.194963685000104],[68.64273231300015,40.1836914980001],[68.60199304200009,40.17542999300018],[68.5811157640002,40.16421620800004],[68.60695398000016,40.1423054000001],[68.6517057700001,40.12075632800004],[68.68705245000008,40.11031768800011],[68.69654498000008,40.11173935200004],[68.93065515200007,40.1468012500001],[68.97726729300004,40.12101471],[68.98377852400014,40.10701039700011],[68.9869824620001,40.09171417300014],[68.98543217000004,40.077141419000085],[68.97726729300004,40.06489410400014],[68.9545296630001,40.062051900000185],[68.88176924700011,40.07083689400015],[68.86151208500021,40.065824280000115],[68.82606205300007,40.04205312100005],[68.81314294400008,40.038900859000094],[68.7904053140002,40.070165101],[68.77469567900013,40.07988027000012],[68.7617248940002,40.06148345900011],[68.76384362800016,40.0524917610001],[68.78162032100008,40.04153635700011],[68.7850309660001,40.03393992100013],[68.78291223200003,40.01342437700008],[68.78441084800008,40.00401926700011],[68.7893717850002,39.993994039000185],[68.87742842600012,39.900563050000116],[68.88078739500023,39.87834218300015],[68.8382576910001,39.864647930000146],[68.81536503100008,39.891881409000135],[68.80012048300013,39.93513458300002],[68.77975996900008,39.96944773300011],[68.7588826900002,39.98055816700004],[68.75200972500008,39.972755025000126],[68.7555753990001,39.954048157000145],[68.76523889200016,39.93244740900015],[68.78761478700014,39.895757141],[68.78735640500017,39.881701152000076],[68.77521244300006,39.86252919500008],[68.77144006400013,39.86051381400004],[68.76094974800017,39.85911855000013],[68.75753910300013,39.857516582000116],[68.75040775600021,39.84247874000012],[68.75061446100008,39.84108347600015],[68.75051110800015,39.83607086200008],[68.74834069800008,39.82614898700008],[68.7416227620001,39.819637757000024],[68.7281868900001,39.82496042900006],[68.70152185100002,39.85844675700015],[68.68508874500017,39.86800689700006],[68.65108565300012,39.84470082600002],[68.63775313400012,39.84893829400009],[68.62617761200008,39.84961008800015],[68.61584232600015,39.82811269200012],[68.60581709800013,39.666882223000115],[68.60033939700023,39.642852682000076],[68.5870068770001,39.62316396100012],[68.56292566000015,39.60357859300002],[68.52024092600018,39.58254628500002],[68.50670170100008,39.56756012000012],[68.51015830600014,39.56141135100001],[68.5172677080001,39.5487648200001],[68.51745039900001,39.54843984000003],[68.49771000100006,39.54141184500013],[68.43626672400015,39.52880279599999],[68.38660567200006,39.52518544600012],[68.33756473800022,39.52792429600005],[68.25586429900014,39.55055857400011],[68.1062093510001,39.554124248000065],[67.76452478000007,39.622595520000075],[67.7176025800002,39.62337066700009],[67.68044722500011,39.61412058600017],[67.5873779710001,39.562650859000186],[67.50743453000008,39.55293569000007],[67.48764245600009,39.538001200000096],[67.4945670980002,39.49371449800016],[67.4945670980002,39.493662821000136],[67.49115645400016,39.490097148000174],[67.48702233900016,39.487151591000085],[67.48237146000011,39.48529123900006],[67.47741052200016,39.48441274000013],[67.45167565900012,39.487151591000085],[67.43648278799999,39.48570465100009],[67.42728438300011,39.4766095990001],[67.41477868600012,39.43811065700005],[67.40816410300013,39.39790639300013],[67.40707889900014,39.361009420000116],[67.3944181730001,39.327368063000065],[67.38687341300013,39.294191793000046],[67.38025883000014,39.292331441000144],[67.37126713000012,39.294501851000135],[67.36062178500012,39.2917630000001],[67.35121667500007,39.285251770000016],[67.34646244300004,39.280807597000106],[67.34439538600012,39.273831279000106],[67.34269006300022,39.259568583000046],[67.35003729600007,39.220057946000125],[67.35007979400015,39.21982940700006],[67.37819177300017,39.19949473100003],[67.4990112710001,39.16598256400012],[67.58034997600012,39.16360544900006],[67.6198307700001,39.151254781000105],[67.6241715900002,39.14737904900006],[67.63212976100007,39.13621693900002],[67.63771081500008,39.13154022300016],[67.64453210500002,39.1306100470001],[67.66117191600009,39.133374736000135],[67.66757979300021,39.13177276700013],[67.67658139500006,39.11982148800017],[67.67672652200011,39.11962880500012],[67.67858687400009,39.1059345500001],[67.66721805800009,39.028368226000126],[67.67218541700007,39.003992322000116],[67.6722306720001,39.00377024400014],[67.67325419900013,39.002978022000136],[67.69052412900007,38.989610901],[67.8183716230001,38.97341034],[67.84524336700011,38.9737720750001],[67.92115604700021,38.99377085400012],[67.92115604700021,38.99379669200012],[67.92125940000014,38.99379669200012],[67.92125940000014,38.99387420700005],[67.92151778200011,38.99387420700005],[67.93485030200023,38.99906768900014],[67.94890629000022,39.00201324500016],[67.96327233900016,39.00190989200002],[67.98011885600013,38.997388205],[67.98797367400007,38.99377085400012],[68.00337325100023,38.98211781900015],[68.01980635600007,38.97968902600009],[68.03644616700015,38.98439158200007],[68.05308597900014,38.99395172100016],[68.0609407960001,38.99552785300001],[68.06910567200012,38.99609629300015],[68.07727054900013,38.99552785300001],[68.08507369000002,38.99395172100016],[68.08528039600012,38.99395172100016],[68.08543542500016,38.99379669200012],[68.08564213100007,38.99377085400012],[68.10093835400008,38.97927561500008],[68.13468306500013,38.920984599000136],[68.15338640700006,38.89940254000011],[68.1637252200002,38.88747243300004],[68.17369877100012,38.86731862400016],[68.17256189000014,38.84527862600007],[68.1636735430001,38.82863881400005],[68.15127120000014,38.81512542800009],[68.13597497600009,38.804505921],[68.11902510600005,38.79670278000016],[68.09561568300009,38.79293040000006],[68.07789066600017,38.79339548800009],[68.06672855600007,38.787969462000106],[68.06331791200014,38.76631703800002],[68.06631514500006,38.75621429500007],[68.07220625900007,38.747351786000145],[68.07665043100016,38.73810170500015],[68.07592696200007,38.72686208100011],[68.07075931800014,38.720738424000146],[68.04548954300017,38.70670827300005],[68.03763472500006,38.69164459200012],[68.04032190000007,38.673351135000146],[68.05370609500014,38.63593739800011],[68.05587650600009,38.6157319140001],[68.0525175380001,38.558267721],[68.05515303500013,38.536305237000036],[68.06259444200006,38.52307607000013],[68.08688236500015,38.494033915000145],[68.09256677300019,38.47878936800002],[68.09463383000016,38.44698252400015],[68.09804447400009,38.432435608],[68.10755293800017,38.41827626600015],[68.14672367300008,38.38874318500005],[68.18372399900014,38.33549062100015],[68.2008288980002,38.32169301400002],[68.25266036000008,38.29874867799999],[68.33203536000022,38.24298980700003],[68.35621993000021,38.212604065000065],[68.3606641030001,38.1740534470001],[68.3443343500002,38.11545237200009],[68.31952966300017,38.06021026600017],[68.28056563300007,38.0132363900001],[68.26857670100011,37.99419362400012],[68.26847334800017,37.99411611],[68.26847334800017,37.993986918000175],[68.26836999500003,37.99390940400015],[68.26826664200021,37.99383188900013],[68.26077355900006,37.9767786660001],[68.25622603400014,37.96155995700015],[68.24873295100011,37.94895090700014],[68.23802450700006,37.94271605600004],[68.23302331600016,37.93980417900015],[68.21772709100017,37.936083476000036],[68.1711149500002,37.93107086300007],[68.13995406100017,37.92269928000012],[68.12222904500007,37.90833323200009],[68.07964766500018,37.806272279000076],[68.05019209800017,37.76040944400002],[67.97732832900007,37.679742534000084],[67.92337813300011,37.63878896100005],[67.87185673000013,37.58680247000013],[67.82922367400013,37.52794301400014],[67.80121504700011,37.466448060000126],[67.79733931500007,37.424435120000126],[67.81718306500008,37.345421855000055],[67.82064538600011,37.30330556300011],[67.81542606600007,37.26733876600004],[67.80395389900016,37.23343902600011],[67.78509200100015,37.20357004800012],[67.7805444750002,37.18886810300002],[67.77599694800008,37.20754913400019],[67.76426639800016,37.22088165300012],[67.74659305800017,37.229408265000025],[67.72587080900016,37.233542379000156],[67.69016239400011,37.23225046800012],[67.67750166800008,37.233542379000156],[67.66644291200012,37.23801239100008],[67.64463545700008,37.25121571900014],[67.63316329000017,37.25405792300013],[67.62179447400014,37.25292104100011],[67.6027258710001,37.248270162000054],[67.59228723100014,37.24718495700016],[67.58603438300023,37.24261159300011],[67.57993656400018,37.23266388000012],[67.57218509900011,37.223155416000125],[67.56138472500007,37.21989980100015],[67.54500329600008,37.231526998],[67.52614139800008,37.27289398200004],[67.50314538600011,37.281963196000035],[67.48237146000011,37.277363993000066],[67.4639746500001,37.26627939800015],[67.43110843900016,37.23976938900013],[67.41126468900009,37.227909648000136],[67.39116255700011,37.21958974200008],[67.3695101320002,37.21468048100003],[67.34522220900013,37.213026836],[67.31959069800004,37.20842763300014],[67.28145349100012,37.18866139800015],[67.25912927200014,37.18514740000002],[67.23675337700016,37.19240793900018],[67.22528121000002,37.20770416300003],[67.21799483200007,37.226256003000074],[67.2079696050001,37.24346425400016],[67.18781579600014,37.25824371400007],[67.14347741700013,37.27186045300006],[67.12332360900021,37.281963196000035],[67.11391849800006,37.29718190500013],[67.0973820390001,37.34059010800014],[67.08508304900013,37.349633484000016],[67.06410241700021,37.35456858300013],[67.02410485800007,37.377487081000154],[67.00591475400014,37.38438588500004],[66.95764896600022,37.38521270800008],[66.86576827000007,37.367926941000164],[66.73497522000011,37.363301900000025],[66.72443322700016,37.36014963800015],[66.70474450700007,37.34653289900014],[66.69409916200019,37.34340647400002],[66.66702071100016,37.344310811000135],[66.65467004400007,37.34614532500014],[66.58857588700002,37.36846954300002],[66.56459802200013,37.37069163100004],[66.53901818900007,37.36908966100019],[66.51958785000008,37.36418040000014],[66.49483483900005,37.37942494800011],[66.49700524900007,37.39774424200009],[66.51209476800014,37.41482330300003],[66.53080163600006,37.430145365999984],[66.54661462400023,37.45079010000008],[66.54268721500009,37.46675811800013],[66.52682255100015,37.48037485800001],[66.50713383000019,37.49383656800008],[66.49349125100011,37.52220692900009],[66.49721195400011,37.557889506],[66.51912276300007,37.6252497360001],[66.52294681800012,37.6650405890001],[66.51498864700014,37.7434854130001],[66.51881270300007,37.78270782500006],[66.55364261900016,37.832007142000165],[66.60903975400018,37.88918711400002],[66.64578169800008,37.9459019980001],[66.63652367000012,37.96659313300013],[66.62433597800006,37.99383188900013],[66.62423262600012,37.993883566000065],[66.62402592000015,37.99401275700008],[66.59038456200014,38.01297800700002],[66.55415938400009,38.026853129000116],[66.51591882300008,38.03509552000004],[66.4394377040002,38.03545725500014],[66.40832849200015,38.042846985000054],[66.30693933100011,38.08038991400015],[66.26043054200008,38.12674367300006],[66.2310783290001,38.148783672000135],[66.19841882400013,38.16072092700007],[66.1335649000001,38.17529368100004],[66.07160485800009,38.2145419320001],[66.04349287900001,38.226194967000154],[65.9774503990001,38.234566549000036],[65.8766813560002,38.27296213800015],[65.8428849690001,38.27533925400003],[65.81435957800008,38.266192526000125],[65.7659904380001,38.23554840100011],[65.74020389800015,38.224076234000094],[65.67162927300008,38.21968373600002],[65.60413985200015,38.237408753000025],[65.43960209100007,38.324948629000104],[65.34017663600011,38.377813620000055],[65.20530114800007,38.44964386],[65.11083663000014,38.51726247200007],[64.97771813900007,38.612269592000146],[64.91053877800019,38.64534250900006],[64.76336429900013,38.68601186100001],[64.63489668800011,38.74414784800011],[64.42431522600012,38.882950745000116],[64.36756630300013,38.940374046000116],[64.33734379100017,38.97095570900002],[64.31357263200019,38.98247955300015],[64.28339359600008,38.97968902600009],[64.20598230000004,38.94945831400018],[64.18014408400003,38.94511749300001],[64.1505851640002,38.94945831400018],[64.12061283400007,38.961679789000115],[63.95969242400022,39.05136423800017],[63.82006270300022,39.12913726800009],[63.70926843200019,39.19089060500009],[63.64849694800009,39.239518128],[63.5410099690001,39.356100159000064],[63.47755131000022,39.40291900699999],[63.33864506000012,39.47945180300009],[63.00894942300013,39.66109446200012],[62.84647871900008,39.75059804300015],[62.71015629100006,39.82573557600007],[62.59316084800016,39.890227763],[62.535386597000034,39.93497955300016],[62.52458622200001,39.93973378500014],[62.452807658000125,40.00923858600014],[62.4419556070001,40.035955302],[62.424385620000095,40.09212758400015],[62.42159509200022,40.115071920000084],[62.42578088300016,40.13667266900016],[62.43410079000014,40.154811097000085],[62.43968184400015,40.172897848],[62.43575443500018,40.19418853800009],[62.40505863500007,40.245244853000074],[62.40097619600013,40.26560536800018],[62.40020105000022,40.29211537700009],[62.39653202300022,40.31201080300009],[62.388315471000205,40.33014923200012],[62.36258060800011,40.36968170200008],[62.35637943500009,40.38818186499999],[62.35327885000018,40.43040151000015],[62.343615356000065,40.439393209000016],[62.260933065000096,40.47572174100016],[62.21344242400019,40.48657379200013],[62.19184167500013,40.49902781200002],[62.18706125700007,40.505515522000096],[62.18533044500006,40.507864482],[62.177268921000035,40.53065378900003],[62.17137780800007,40.53995554700013],[62.134170776000154,40.57783437200011],[62.12068322700006,40.59897003200017],[62.100064331000084,40.66041331000015],[62.08869551600017,40.67436594700014],[62.055725952000124,40.701754456000096],[62.04477054900016,40.71498362199999],[62.03681237800018,40.73632598900017],[62.02534021000006,40.781956279],[61.99386926300022,40.86587880399999],[61.982707153000064,40.885670878000056],[61.990251912000225,40.8931639610001],[61.985394328000126,40.9078917450001],[61.982707153000064,40.97843007500016],[61.97929650900008,40.99884226500002],[61.970821574000034,41.015430399000124],[61.89744104000013,41.108809713000184],[61.87790734900014,41.12498443599999],[61.654355103000086,41.249421285],[61.567331991000145,41.27779164700011],[61.470076945000095,41.29717030900015],[61.43317997200008,41.30032257100014],[61.41075240100012,41.29200266600016],[61.39721317500019,41.270970358000156],[61.387498006000065,41.23577870700008],[61.36300337700013,41.22518503900001],[61.34398645000012,41.193817444],[61.31587447100011,41.17045969700014],[61.2813546140002,41.15728220700008],[61.24321740800004,41.15630035400001],[61.20259973100022,41.168806051],[61.099660279000055,41.224099833000125],[61.081883586000146,41.22451324500004],[61.02276574700008,41.216865133000155],[61.01718469200014,41.225960185000034],[61.014084107000116,41.234900208000155],[61.010260051000074,41.237225647000066],[61.00431806800012,41.229533188000076],[60.991139771000086,41.21247263600016],[60.984628540000095,41.20699493500017],[60.978013957000115,41.20280914400002],[60.93026493300013,41.2402228800001],[60.86029504400014,41.25298695900007],[60.65886031100009,41.24378855400006],[60.53814416500009,41.21324778200007],[60.47809615100019,41.21211090200016],[60.443266235000095,41.219655660000015],[60.414534140000086,41.23526194300014],[60.36027388600004,41.2763447060001],[60.29991581200008,41.309831035000016],[60.20369429600012,41.347089742000136],[60.0942436120001,41.38951609300007],[60.06613163300002,41.41049672500016],[60.05920699100008,41.43416453100009],[60.07171268700008,41.51436635400007],[60.079567505000085,41.531471252000024],[60.09258996600014,41.54547556600012],[60.10964318900009,41.556792704000095],[60.150984334000064,41.572347311000144],[60.16473026500015,41.58495636000008],[60.15563521300007,41.60332733200006],[60.0890759690001,41.674124044],[60.058276815000085,41.71859161400009],[60.049181763000064,41.75349904400015],[60.074916626000146,41.78104258300014],[60.10240848800018,41.795279440000016],[60.1337244060002,41.79729482100005],[60.17134484900012,41.788406474000126],[60.20586470500021,41.77202504500009],[60.225398397000134,41.7654621380001],[60.24110803300018,41.76706410700014],[60.252683553000146,41.78006073000007],[60.250823202000134,41.794271750000135],[60.24110803300018,41.808069357000086],[60.2289123950001,41.81961903900013],[60.21485640500006,41.828584900000166],[60.16752079300008,41.849591370000084],[60.1525346270001,41.86119272900011],[60.1411441160001,41.87422148400004],[60.1182214770001,41.900440979000095],[60.08876591000009,41.91935455300002],[59.98365604600022,41.9490426630001],[59.93177290800023,41.9476474],[59.917510213000156,41.952427471000114],[59.906451457000145,41.96661265100006],[59.90800174900008,41.97981597900015],[59.9192672120001,41.98966034000013],[59.936940551000156,41.99348439500007],[59.937250611000216,41.99340688100012],[59.93756066900019,41.99340688100012],[59.9378707270001,41.99340688100012],[59.99719527200008,42.010615133000115],[59.994094686000174,42.05009592800015],[59.97445764200014,42.0992402150001],[59.98365604600022,42.14559397400011],[60.00008915200007,42.154508159000116],[60.02055302000016,42.16078684500003],[60.03698612400009,42.16970102900013],[60.04039676900006,42.186470032],[60.028201131000145,42.19951833200004],[60.005050090000026,42.20977610300004],[59.96071171100019,42.22272104900004],[59.92567509000016,42.24628550200005],[59.897873169,42.278531596000036],[59.866350545000074,42.30421478300009],[59.820978638000014,42.30798716200003],[59.776330200000096,42.30395640100012],[59.68951379400019,42.30979583800011],[59.47815718600006,42.28563710600004],[59.426480754000146,42.28677398700016],[59.40146936000016,42.29390533499999],[59.36157515400012,42.32578969400005],[59.33811405500014,42.331809998],[59.28716109300009,42.33594411300011],[59.258428996000106,42.34754547100006],[59.24519982900019,42.36534800300011],[59.23331425000006,42.44172576900014],[59.22380578600009,42.46087188800006],[59.209646444000136,42.47771840500003],[59.14608443200003,42.52675933900015],[59.122003215000206,42.53799896200012],[59.09647505700016,42.535983582000156],[59.06743290200009,42.52557078000014],[59.03859745300016,42.51973134400005],[59.00924523900008,42.518465271000096],[58.96470015500009,42.5243822230001],[58.894420207000074,42.547843323000095],[58.82744755000007,42.593757833000055],[58.612266887,42.780852356000096],[58.5878756110001,42.791187643000015],[58.56937544700017,42.768501689000125],[58.55573287000007,42.68359731000008],[58.53454553200017,42.65450348000017],[58.49320438600009,42.645460104],[58.44183801300019,42.647837220000056],[58.39057499200007,42.65667389000005],[58.28267460200007,42.68891998300001],[58.258283325000065,42.68951426200009],[58.23957645700014,42.68514760400011],[58.18655643700006,42.661195578],[58.14883264200008,42.64899993900018],[58.13064253700017,42.63884552000012],[58.121340780000224,42.62424692800015],[58.1270251870001,42.604997457000124],[58.145732056000064,42.592569276000134],[58.27099572800009,42.54903188100012],[58.306239054000095,42.528671367000086],[58.33703820800022,42.493712260000095],[58.363703247000075,42.44707428000011],[58.437910604000216,42.35769989000012],[58.478218221000105,42.32232737200012],[58.48958703600007,42.31452423100011],[58.49413456200014,42.30571339900011],[58.490620565000164,42.297574361],[58.478218221000105,42.291993307000084],[58.41393273900022,42.284758607000114],[58.39760298700011,42.287859192000056],[58.38582076000009,42.301320903000104],[58.38613081800005,42.31684967100013],[58.391505168000116,42.33398040800007],[58.39491581300015,42.352248027000044],[58.384683879000164,42.387827251000104],[58.35894901600008,42.413407085000145],[58.3250492760001,42.43185557000008],[58.22572717300008,42.4665821330001],[58.20381636600016,42.46950185100009],[58.18572961400012,42.4672539270001],[58.14945275900006,42.45567840600013],[58.133226360000066,42.45456736200005],[58.11720666500011,42.46151784300004],[58.094365682000074,42.48671010400007],[58.079896281000096,42.49730377200014],[58.060879354000086,42.5022647090001],[58.03824507700008,42.50278147400014],[58.01602421000021,42.499706726000014],[57.99773075300007,42.4934280400001],[57.98708540800007,42.48342865000008],[57.97830041500018,42.47177561500003],[57.952772258000124,42.450071513000026],[57.92559045400011,42.44110565300009],[57.90864058400015,42.43043446899999],[57.91432499200019,42.403950297],[57.935719035000176,42.3698180140001],[57.937476033000074,42.35423757000008],[57.92879439300011,42.33093149800005],[57.88807336400007,42.26158172700012],[57.873707316000065,42.24964447000014],[57.83546675700003,42.240446066000075],[57.82730188000002,42.227371928000125],[57.83453658100021,42.21163645400004],[57.84735233600011,42.20091359500013],[57.850452922,42.19143096900014],[57.82843876200016,42.179545390000115],[57.80921512900014,42.17639312800016],[57.740898885000064,42.1787444050001],[57.72157189900012,42.17533376100009],[57.66627811700019,42.155102438000156],[57.61976932800017,42.1481777960001],[57.4782792560002,42.16652293],[57.382264445,42.16362904900011],[57.28821333800008,42.129419251000016],[57.20780481000011,42.07055979400012],[57.15292443900009,41.993742778000055],[57.15292443900009,41.99348439500007],[57.11551070200002,41.952091573000025],[57.07437626100008,41.928785503000185],[56.978361450000044,41.89511830600004],[56.950146118000106,41.866050314000134],[56.949836059000205,41.82749969500016],[56.97195357300015,41.74853810600003],[56.96947310400017,41.71089182499999],[56.96161828600012,41.67872324700015],[56.96048140500013,41.64720062300007],[56.978361450000044,41.61146637000017],[57.00058231600022,41.58402618400011],[57.01205448400005,41.557826233000085],[57.01577518700006,41.52899078400016],[57.01505171700015,41.493644104000154],[57.0195992430001,41.46594553700013],[57.03303511500022,41.438246969000105],[57.052258748000064,41.413597311],[57.074169555000104,41.39499379500013],[57.08832889800007,41.38729400700005],[57.103625122000125,41.381609599000015],[57.1537512610001,41.37235951800001],[57.161399374000126,41.3679670210001],[57.159228963,41.36114573200013],[57.14796350100008,41.35106882700001],[57.12667281100008,41.33959666],[57.08006066900012,41.32202667200011],[57.06032027200015,41.30492177399999],[57.029521118000076,41.262598776000075],[57.010194132,41.25412384100018],[56.88792769400018,41.273347474],[56.79346317600002,41.28833363900016],[56.57001428200013,41.297480367000055],[56.53372131600017,41.298968795000015],[56.32682499200015,41.30745391900017],[56.14068648300005,41.31515370700005],[55.978422486000085,41.32171661400004],[55.97821577900001,41.5512633260001],[55.978009074000084,41.780680848000046],[55.977905721000155,42.010150045],[55.97769901500007,42.23961924300015],[55.97759566300007,42.46908844000008],[55.9773889570001,42.69853179900004],[55.97728560400017,42.92800099700018],[55.9770788980002,43.15747019400011],[55.9769755450001,43.38691355500008],[55.97676883900012,43.61638275200012],[55.97666548700013,43.84585195000007],[55.97645878100016,44.07529530900011],[55.976355428,44.304842021000084],[55.97614872300008,44.534285381000025],[55.97604537000015,44.76378041600016],[55.975838663000076,44.99322377600011],[55.975838663000076,44.993275452000134],[55.975838663000076,44.99337880400007],[55.975838663000076,44.993430481000175],[55.975838663000076,44.99348215700008],[55.975838663000076,44.993533834000104],[55.975838663000076,44.993585511000035],[55.975838663000076,44.99368886400005],[55.975838663000076,44.99374054000005],[55.975838663000076,44.993843892000186],[55.975838663000076,44.99389556900008],[55.975838663000076,44.993998922000046],[55.975838663000076,44.99405059800013],[55.975838663000076,44.994153952000076],[55.975838663000076,44.99420562800016],[55.975838663000076,44.99425730500009],[55.975838663000076,44.9943089800001],[55.975838663000076,44.99436065700003],[55.975838663000076,44.99441233300006],[55.9759420170001,44.99446401000016],[55.97604537000015,44.99451568600007],[55.97604537000015,44.99456736300009],[55.97604537000015,44.99461903899999],[55.97604537000015,44.994670716000094],[55.97604537000015,44.99477406800004],[55.97614872300008,44.99477406800004],[55.97614872300008,44.99482574500014],[55.97614872300008,44.99492909800007],[55.97614872300008,44.9949807740001],[55.97614872300008,44.99503245100003],[55.97614872300008,44.99508412700011],[55.97625207500019,44.99513580400004],[55.976355428,44.99518748000004],[55.976355428,44.99523915600015],[55.97645878100016,44.99529083200018],[55.97645878100016,44.99534250900008],[55.97656213400009,44.99539418600001],[55.97666548700013,44.99544586200003],[55.97676883900012,44.995497539000134],[55.97676883900012,44.995549215000054],[55.97676883900012,44.995600892000155],[55.97687219200017,44.995600892000155],[55.9769755450001,44.99565256800015],[55.9769755450001,44.995704244000095],[55.9770788980002,44.99575592000009],[55.97718225100007,44.995807597000024],[55.97728560400017,44.99585927300005],[55.9773889570001,44.99585927300005],[55.9773889570001,44.99591095000015],[55.977492310000144,44.99591095000015],[55.97759566300007,44.99591095000015],[55.97769901500007,44.995962627000054],[55.97769901500007,44.99601430300008],[55.97780236800011,44.99606598000018],[55.977905721000155,44.99606598000018],[55.978009074000084,44.99606598000018],[55.978009074000084,44.996117656000095],[55.978112427000184,44.99616933200012],[55.97821577900001,44.99616933200012],[55.978319132000166,44.996221008000035],[55.978422486000085,44.996221008000035],[56.072060181000126,45.017563375000016],[56.165801229000095,45.03880238900011],[56.25943892500006,45.06009307900008],[56.35338667900007,45.081435445000075],[56.44712772600022,45.10272613600007],[56.54086877400019,45.12401682600015],[56.634506470000154,45.145307515000056],[56.70760971000007,45.16191089800016],[56.72824751800013,45.16659820600002],[56.8220919190002,45.18788889600002],[56.915729614000064,45.20912791000007],[57.00947066300014,45.230418599000146],[57.103211710000124,45.25176096700007],[57.19705611200018,45.27299998000005],[57.29079716000015,45.29434234700012],[57.384538208000116,45.31563303700001],[57.4782792560002,45.33692372600011],[57.603232870000085,45.363898825000135],[57.7281864830002,45.39092559900017],[57.85324344900019,45.41790069600002],[57.97830041500018,45.44492747000005],[58.03607466600007,45.457071431000045],[58.09384891800007,45.46911204100003],[58.151623169000146,45.48120432600011],[58.20960412600013,45.493348288],[58.26975549300007,45.5055439260001],[58.330010214000104,45.51784291600016],[58.3902649340001,45.5301419070001],[58.45041630100015,45.54238922200012],[58.53144494700003,45.55871897400006],[58.55490604600001,45.557168681000135],[58.582191203000065,45.54869374600004],[58.65898238200012,45.51226186100014],[58.68078983600006,45.5018232230001],[58.74311161300008,45.47226430300016],[58.840470011000114,45.4260138960001],[58.96790409400015,45.36544911700007],[59.05513216600011,45.3240231750001],[59.12034956900006,45.29305043500007],[59.29243208800015,45.21124664300005],[59.47939742000014,45.122466532000125],[59.675767863000175,45.02913889600008],[59.87658247900006,44.93379587800017],[60.07667362400011,44.83865956600011],[60.27087365700017,44.74646881200006],[60.45401493300014,44.65944569900004],[60.62113651600006,44.58007070000015],[60.76686405500007,44.51082428000013],[60.88623661300007,44.45413523400005],[60.97398319500021,44.41243235300011],[61.03630497200006,44.38282175800008],[61.06214318900006,44.36199615500003],[61.080229940000066,44.33548614500002],[61.08663781800013,44.3111982220001],[61.093149048000065,44.259418437000036],[61.10286421700001,44.23606069],[61.16167199700012,44.16810618100011],[61.27639367700007,44.07886098199999],[61.33117069500016,44.03617624900009],[61.38605106600008,43.993439840000164],[61.45612430800011,43.935174663000126],[61.513485148000115,43.8872447720001],[61.571052694000144,43.83928904300008],[61.628516886000085,43.791359152000055],[61.68598107900007,43.74342926100003],[61.74210168400011,43.69653289900002],[61.798325643000084,43.649584860000125],[61.85454960200016,43.6026884970001],[61.91067020700021,43.55581797300006],[61.9857043860002,43.49334116600009],[62.005961548000215,43.486984965000076]],[[70.62522871900009,40.938690898000075],[70.64507246900021,40.93517690000011],[70.64341882300008,40.95228180000008],[70.63049971500007,40.97641469400013],[70.61665043200011,40.993519592000084],[70.59344771300019,41.00938425700018],[70.5659041750001,41.01837595600004],[70.54978112800019,41.01522369400005],[70.56146000200008,40.99460479800017],[70.56249353100006,40.99377797500013],[70.57913334200012,40.98085886600005],[70.60838220200004,40.95093821199999],[70.62522871900009,40.938690898000075]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Akrotiri Sovereign Base Area","adm0_a3":"WSB","geou_dif":0,"geounit":"Akrotiri Sovereign Base Area","gu_a3":"WSB","su_dif":0,"subunit":"Akrotiri Sovereign Base Area","su_a3":"WSB","brk_diff":0,"name":"Akrotiri","name_long":"Akrotiri","brk_a3":"WSB","brk_name":"Akrotiri","brk_group":null,"abbrev":"Akr.","postal":"AK","formal_en":null,"formal_fr":null,"note_adm0":"U.K. Base","note_brk":null,"name_sort":"Akrotiri Sovereign Base Area","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":7850,"gdp_md_est":314,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"woe_id_eh":-99,"woe_note":"No WOE equivalent.","adm0_a3_is":"GBR","adm0_a3_us":"WSB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":-99,"filename":"akrotiri.geojson"},"geometry":{"type":"Polygon","coordinates":[[[32.84080876400009,34.69946744100013],[32.84599175000005,34.69946744100013],[32.85376622900009,34.69946744100013],[32.85968964200009,34.70057808100009],[32.860430068000085,34.6876206150001],[32.8656130550001,34.67873549600009],[32.8845035650001,34.66660687900011],[32.91366655000012,34.66027990800012],[32.91724613500008,34.6671357220001],[32.92975183100008,34.66248484300013],[32.93605635600011,34.657730611000034],[32.942257528000084,34.6671357220001],[32.95471154800009,34.67731597900007],[32.9875260820001,34.67338857100009],[32.98979984500011,34.646103415000084],[32.970266154000115,34.646103415000084],[32.965615276000044,34.651581116000074],[32.95403975500011,34.64295115200011],[32.955590047000044,34.628895162000106],[32.9625146890001,34.625019430000066],[32.96954268300009,34.63204742500005],[32.99073002100005,34.6344245410001],[33.01563463618163,34.63442454106643],[33.009938998000045,34.62490469000005],[33.00912519600013,34.59739817900004],[33.030284050000034,34.57477448100008],[33.030284050000034,34.568548895000106],[32.940928582000076,34.568548895000106],[32.940928582000076,34.57477448100008],[32.94467207100013,34.593695380000064],[32.91586347700007,34.63939036700012],[32.91358483200014,34.65668366100002],[32.857432488000136,34.66901276200005],[32.834320509000065,34.67096588700011],[32.812836134000065,34.66864655200004],[32.76067142000011,34.65322500200011],[32.76010226500017,34.66910995000009],[32.766766104000055,34.676144003000076],[32.778612929000076,34.67318229700007],[32.79860444800005,34.67096101700013],[32.806008714000086,34.68576954900007],[32.81933639200008,34.6876206150001],[32.822668312000076,34.69132274800009],[32.827481085000045,34.69650573400011],[32.83229385800007,34.700948294000085],[32.835625777000075,34.699837654000106],[32.84080876400009,34.69946744100013]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Yemen","sov_a3":"YEM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Yemen","adm0_a3":"YEM","geou_dif":0,"geounit":"Yemen","gu_a3":"YEM","su_dif":0,"subunit":"Yemen","su_a3":"YEM","brk_diff":0,"name":"Yemen","name_long":"Yemen","brk_a3":"YEM","brk_name":"Yemen","brk_group":null,"abbrev":"Yem.","postal":"YE","formal_en":"Republic of Yemen","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Yemen, Rep.","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":3,"mapcolor13":11,"pop_est":23822783,"gdp_md_est":55280,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"YM","iso_a2":"YE","iso_a3":"YEM","iso_n3":"887","un_a3":"887","wb_a2":"RY","wb_a3":"YEM","woe_id":23425002,"woe_id_eh":23425002,"woe_note":"Exact WOE match as country","adm0_a3_is":"YEM","adm0_a3_us":"YEM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"YEM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.308239457000155,12.11839453700017],[53.310267307000146,12.11144367200015],[53.277495146000064,12.113829090000166],[53.2630755750001,12.114869391000084],[53.24832614200008,12.121302453000084],[53.26807112100008,12.128831559000076],[53.28688385000012,12.127337335000078],[53.29806645900007,12.121873086000136],[53.308239457000155,12.11839453700017]]],[[[53.03854985500007,12.180332719000177],[53.05306807200023,12.174919864000131],[53.06836570600015,12.174940026000115],[53.08291778600008,12.164794378000167],[53.08707388300015,12.148554792000127],[53.08637844700016,12.134344390000123],[53.071828726000064,12.130282908000169],[53.05658965100011,12.128251135000182],[53.02677446400011,12.139741661000116],[53.006703274000216,12.156644227000115],[52.98526503800011,12.1627272530001],[52.988719992000114,12.172197631000131],[53.00395319600013,12.176942240000129],[53.01705040900006,12.175576328000176],[53.02745972500023,12.179647667000069],[53.03854985500007,12.180332719000177]]],[[[52.17887622100014,12.213943448000164],[52.200433520000075,12.206442858000129],[52.216803629000225,12.207334582000101],[52.24611446400015,12.202370688000173],[52.28919867900018,12.200815051000149],[52.3193738050002,12.188263653000192],[52.37468509200008,12.20058828300013],[52.38949629000015,12.197251695000189],[52.38957767000013,12.197251695000189],[52.39470462300002,12.187323309000107],[52.38148224100004,12.182545219000176],[52.371129100000104,12.17156527100012],[52.37894002700014,12.16569130000012],[52.38846359400023,12.14886784300009],[52.359980980000074,12.153853921000092],[52.34790410100001,12.151296407000132],[52.33057701900006,12.146185614000117],[52.28467858200011,12.154486395000104],[52.24023003500011,12.156877327000132],[52.23503403000015,12.165283115000094],[52.22437584700006,12.180324611000117],[52.2181095710001,12.180609442000145],[52.21176191500015,12.180894273000177],[52.190684441000116,12.174627997000144],[52.17986087300008,12.172837632000068],[52.175791863000114,12.176336981000148],[52.16456139400012,12.192531643000095],[52.16236412900011,12.197414455000157],[52.15699303500011,12.196234442000133],[52.13669149800009,12.204540547000121],[52.12375291800017,12.201978275000116],[52.11231530000006,12.198635158000087],[52.105804884000094,12.203802802000096],[52.10181725400011,12.207017320000148],[52.06848665200002,12.222007893000123],[52.0641184230001,12.235473303000134],[52.07876295300011,12.239736797000191],[52.094086134000094,12.2417666690001],[52.11843463400007,12.241548796000103],[52.147777224,12.23489772900011],[52.17887622100014,12.213943448000164]]],[[[43.448985222000175,12.652980861000131],[43.44743899800002,12.638657945000146],[43.43580162900011,12.63214752800016],[43.42888431100002,12.63467031500008],[43.417165561000076,12.646714585000097],[43.41138756600017,12.652655341000113],[43.39975019600009,12.649847723000065],[43.39275149800019,12.653062242000118],[43.39014733200011,12.66632721600014],[43.397634311000076,12.670803127000113],[43.406423373000024,12.6730410830001],[43.42896569100011,12.673773505000128],[43.44223066500015,12.667222398000133],[43.44385826900006,12.663804429000137],[43.448985222000175,12.652980861000131]]],[[[53.57376212300002,12.703771964000111],[53.60619832600011,12.699984973000113],[53.629934549000126,12.702304075000157],[53.65475484300012,12.704757999000066],[53.69400944700007,12.669778568000169],[53.762893950000056,12.61970321700008],[53.80806531800013,12.60799612900017],[53.84610392700009,12.598604923000124],[53.86640110700009,12.622933074000157],[53.8759954810001,12.647293684000132],[53.90339099700011,12.653031404000146],[53.92242660000008,12.650655317000187],[53.94018363500018,12.64242607800017],[53.97354138900002,12.646988269000175],[54.008096581000096,12.645744035000163],[54.04513137700005,12.66655556400012],[54.05825853900015,12.671163037000142],[54.082166225,12.686200302000174],[54.093028191000116,12.698879299000112],[54.11939537900011,12.7011172550001],[54.13224613600002,12.688365928000124],[54.14651063000011,12.67786051500016],[54.16789046400018,12.664994769000117],[54.18346005400011,12.668444042000147],[54.195491248000195,12.675400124000149],[54.2005314460001,12.673000393000109],[54.210703972000175,12.661688544000128],[54.21876061300011,12.652655341000113],[54.23731530000012,12.652044989000146],[54.26002037900017,12.647528387000108],[54.26934090400002,12.63211920800012],[54.2848542190002,12.62624853100013],[54.31946791600014,12.610993760000127],[54.36014459600008,12.602688591000145],[54.40077485000009,12.580403897000153],[54.421909149000186,12.574027833000088],[54.470662090000104,12.5435655980001],[54.49693247600007,12.546913901000122],[54.51609239300015,12.558434045000112],[54.52683313600002,12.557213916000137],[54.540293816000165,12.550238348000121],[54.5279268420002,12.537446101000128],[54.498038406000056,12.529471603000133],[54.4765241150001,12.522613150000126],[54.45742273100015,12.519228400000117],[54.446653804000135,12.51114958900011],[54.4446835630001,12.484720990000184],[54.402340262000195,12.467224178000137],[54.3686610450002,12.459568589000156],[54.32816880600009,12.443456635000118],[54.28333651200015,12.447290953000106],[54.2459416020001,12.433539130000128],[54.237478061000076,12.425197658000144],[54.21876061300011,12.399400132000123],[54.20972741000011,12.39378489800012],[54.18384850400017,12.382513739000132],[54.15495853000007,12.359808661000088],[54.14049788800017,12.351344300000079],[54.110711403000124,12.353810633000121],[54.06422938900019,12.350547619000153],[54.04754648100007,12.352962049000082],[54.030885983000104,12.348360811000134],[54.00824394100002,12.329857074000174],[53.985931837000095,12.337144273000135],[53.98568769600015,12.337144273000135],[53.96998131600017,12.341864325000131],[53.9392808150001,12.334757060000141],[53.89647094000023,12.327908182000115],[53.776352020000076,12.304968586000129],[53.73116478000023,12.300413636000187],[53.672924037000115,12.306341909000151],[53.61826498200011,12.322706338000131],[53.57214667500014,12.334614153000132],[53.55200014300007,12.354383226000065],[53.535980665000096,12.373765367000145],[53.519541863000114,12.393540757000082],[53.50562584700006,12.416327216000113],[53.47937461500007,12.4251702010001],[53.437875078000076,12.451956330000115],[53.33423912900011,12.51552969000015],[53.309743686000076,12.53766510600012],[53.30689537900011,12.543402411000102],[53.315684441000116,12.550279039000102],[53.342493709000074,12.542609032000186],[53.36300219500018,12.544912840000109],[53.384532097000175,12.557318427000084],[53.38941491000011,12.560777085000083],[53.39112389400006,12.569647528000118],[53.39958743600019,12.587591864000075],[53.40316816500015,12.598049221000153],[53.39602709800013,12.656467756000067],[53.41073767100007,12.66213573700017],[53.428024418000085,12.665390016000146],[53.47007710600022,12.671423887000145],[53.479577989000084,12.68653505800016],[53.49032670900012,12.701620604000182],[53.499869245000156,12.712064513000115],[53.51894586400007,12.714350673000098],[53.57376212300002,12.703771964000111]]],[[[42.68856855600009,13.663804429000109],[42.68848717500006,13.663763739000116],[42.68628991000017,13.67597077000009],[42.68580162900011,13.678452867000118],[42.68580162900011,13.678534247000101],[42.693532748000194,13.699204820000118],[42.719248894000174,13.742621161000073],[42.76172936300023,13.772162177000126],[42.7825626960001,13.779933986000131],[42.79493248800023,13.769924221000153],[42.79184004000015,13.750718492000189],[42.761485222000175,13.719305731000162],[42.754079623000194,13.697902736000117],[42.74390709700006,13.688421942000119],[42.68856855600009,13.663804429000109]]],[[[42.788584832000105,13.926703192000076],[42.78174889400012,13.919989325000117],[42.754079623000194,13.920721747000144],[42.76758873800006,13.948635158000101],[42.76758873800006,13.948675848000093],[42.74659264400023,13.956529039000158],[42.72152754000015,13.969387111000088],[42.71249433700021,13.977443752000127],[42.70069420700017,13.987941799000096],[42.699229363000114,13.992254950000103],[42.69190514400012,14.013169664000158],[42.700856967000135,14.028265692000076],[42.72103925900014,14.045965887000165],[42.74398847700016,14.0601260440001],[42.76026451900006,14.06468333500014],[42.76758873800006,14.071519273000149],[42.795746290000146,14.037176825000103],[42.80176842500006,14.023138739000144],[42.801605665000096,14.012274481000162],[42.78809655000012,13.975327867000116],[42.786631707000055,13.94403717700007],[42.786631707000055,13.94399648600016],[42.788584832000105,13.926703192000076]]],[[[42.581553582000225,15.391587632000068],[42.59253991000017,15.389471747000142],[42.60564212300008,15.393011786000129],[42.6185001960001,15.400091864000089],[42.628184441000116,15.398667710000124],[42.628103061000076,15.386460679000137],[42.61622155000012,15.348089911000129],[42.61345462300002,15.334702867000118],[42.61548912900017,15.326361395000147],[42.61329186300006,15.318548895000063],[42.60840905000012,15.314032294000112],[42.609385613000114,15.312201239000132],[42.61524498800023,15.314032294000112],[42.614105665000096,15.308050848000095],[42.59392337300008,15.278713283000087],[42.58220462300008,15.268215236000115],[42.56836998800006,15.268866278000162],[42.55738366000011,15.277573960000138],[42.545746290000096,15.294419664000143],[42.545909050000056,15.316961981000134],[42.55616295700011,15.341457424000156],[42.55892988400014,15.39297109600014],[42.57097415500019,15.410101630000085],[42.583750847,15.422796942000131],[42.59343509200008,15.430731512000094],[42.59750410200016,15.43915436400006],[42.601898634000094,15.44627513200011],[42.62387129000015,15.457342841000141],[42.631032748000074,15.454250393000065],[42.635996941000116,15.445542710000083],[42.61036217500006,15.429388739000116],[42.607188347000175,15.422919012000106],[42.611501498000194,15.421291408000085],[42.61198978000019,15.416571356000176],[42.60808353000019,15.41038646000011],[42.5989689460001,15.403631903000162],[42.58472741000011,15.3966332050001],[42.581553582000225,15.391587632000068]]],[[[52.9027445880001,17.048262838000156],[52.9652730720002,16.912922262],[53.027904908000124,16.777478333000104],[53.09035191701477,16.64240603028115],[53.09034264400005,16.642401434000092],[53.09001712300014,16.642238674000126],[53.06918379000015,16.63182200700014],[53.021820509000094,16.619452216000113],[52.98487389400006,16.62815989800019],[52.973887566000116,16.618312893000066],[52.96216881600011,16.616278387000037],[52.95053144600009,16.615627346000096],[52.94027754000009,16.610174872000144],[52.921153191000116,16.591131903000147],[52.90992272200012,16.58307526200012],[52.88526451900012,16.57542552300019],[52.85108483200011,16.556138414000074],[52.80909264400006,16.54832591400016],[52.788828972,16.53969961100016],[52.752126498000194,16.518296617000104],[52.73682701900006,16.51194896],[52.597666863000164,16.47671133000013],[52.5325626960001,16.447251695000045],[52.42042076900006,16.37124258000013],[52.31861412900011,16.29116445500007],[52.29273522200006,16.263820705000015],[52.279470248000194,16.24388255400011],[52.26140384200008,16.20897044500019],[52.22868899800008,16.171942450000174],[52.22144616000011,16.160874742000132],[52.21705162900011,16.148382880000113],[52.21705162900011,16.138088283000016],[52.21957441500015,16.125962632000107],[52.22266686300023,16.11640045800011],[52.22437584700006,16.11359284100017],[52.21680748800011,16.09516022300012],[52.19434655000011,16.07029857000019],[52.18409264400005,16.02944570500013],[52.16000410200016,16.00210195500007],[52.15552819100017,15.983872789000186],[52.16342207100015,15.964789130000113],[52.177419467000135,15.942368882],[52.18653405000012,15.919094143000095],[52.17546634200008,15.877915757000109],[52.191579623000024,15.862982489000059],[52.22437584700006,15.846747137000035],[52.22527103000007,15.83193594000015],[52.21705162900011,15.76072825700014],[52.22144616000011,15.716986395000061],[52.23121178500017,15.674750067000119],[52.23829186300023,15.66864655200014],[52.24284915500007,15.66347890800013],[52.24488366000011,15.65770091400016],[52.24382571700007,15.651556708],[52.23853600400017,15.642523505],[52.237478061000125,15.637518622000142],[52.23658287900011,15.629339911000143],[52.23357181100002,15.621771552],[52.2283634770001,15.616115627000013],[52.22071373800011,15.613959052],[52.198985222,15.61147695500007],[52.04712975400017,15.570013739000059],[52.038747592000185,15.56313711100016],[52.03150475400017,15.555812893000152],[52.025726759000094,15.551214911000116],[52.016937696000156,15.548651434000119],[52.00163821700019,15.547267971000123],[51.99170983200011,15.545070705000128],[51.91309655000006,15.515326239000117],[51.87419681100018,15.491522528000031],[51.87501061300011,15.46938711100016],[51.87419681100018,15.465033270000061],[51.87183678500011,15.463771877000154],[51.86939537900011,15.463771877000154],[51.86817467500006,15.463120835000112],[51.86866295700005,15.451564846000098],[51.86540774800014,15.45010000200004],[51.85987389400012,15.453314520000092],[51.853851759000094,15.455715236000017],[51.846527540000096,15.459540106000034],[51.838715040000096,15.466294664000158],[51.82927493600019,15.468695380000113],[51.8166610040001,15.45941803600006],[51.809418165000096,15.45575592700011],[51.75879967500012,15.44562409100014],[51.6799422540001,15.403469143000109],[51.66724694100017,15.391424872000101],[51.66211998800006,15.377142645000106],[51.66773522200017,15.357652085000112],[51.67652428500011,15.346991278000177],[51.67644290500007,15.34027741100013],[51.655284050000056,15.332749742000175],[51.549489780000016,15.322984117000132],[51.530528191000116,15.316839911000057],[51.513438347000175,15.308050848000095],[51.49830162900017,15.298041083000115],[51.47429446700002,15.270697333000127],[51.454274936000076,15.269517320000107],[51.44654381600017,15.266424872000128],[51.44361412900011,15.260199286000072],[51.432465040000096,15.259670315000093],[51.38200931100019,15.238023179000095],[51.367849155000066,15.22972239800012],[51.34245853000007,15.237697658000073],[51.31446373800023,15.226711330000114],[51.288422071000156,15.210272528000118],[51.268809441000165,15.201808986000087],[51.069834832000225,15.149644273000147],[50.851328972,15.109930731000134],[50.661468946000156,15.058498440000136],[50.5540470710001,15.048570054000137],[50.45948326900006,15.01044342700007],[50.43238366000016,14.995428778000132],[50.358246290000096,14.933335679000109],[50.343028191000116,14.924750067000106],[50.302256707000055,14.917466539000173],[50.24382571700019,14.887152411000102],[50.17953535200016,14.84332916900014],[50.16504967500012,14.842474677000139],[50.146250847000175,14.849798895000134],[50.121429884000094,14.844224351000136],[50.079356316000165,14.82566966400013],[50.06039472700016,14.820217190000093],[50.051768425000056,14.818752346000126],[50.04184004000015,14.818264065000136],[50.035817905000016,14.83893463700015],[50.02979576900012,14.850287177000126],[50.02100670700005,14.849269924000152],[50.006032748000024,14.844387111000103],[49.94214928500011,14.838771877000097],[49.798594597000054,14.792181708000085],[49.57813561300022,14.737290757000082],[49.460459832000105,14.673570054000123],[49.41781660200016,14.656927802000084],[49.372406446000156,14.64980703300013],[49.35206139400006,14.639797268000137],[49.31275475400017,14.612779039000188],[49.228851759000094,14.575262762000165],[49.19019616000011,14.548570054000066],[49.18189537900016,14.516587632000066],[49.17188561300006,14.518255927000071],[49.15674889400006,14.526109117000146],[49.13705488400015,14.532660223000134],[49.11353600400016,14.530218817000105],[49.09278405000006,14.519598700000161],[49.0779728520001,14.506089585000085],[49.02808678500011,14.43634674700013],[49.009938998000024,14.401109117000173],[49.00025475400011,14.35956452000009],[49.00798587300019,14.354437567000089],[49.00855553500016,14.343003648000119],[49.00603274800008,14.331203518000152],[49.00367272200012,14.324774481000146],[48.9915470710001,14.31688060100008],[48.9505314460001,14.300604559000135],[48.94166100400017,14.294378973000079],[48.93580162900011,14.270453192000119],[48.92156009200019,14.2618675800001],[48.90349368600019,14.258490302000084],[48.8869735040001,14.25031159100017],[48.882334832000055,14.243231512000122],[48.880381707000225,14.234605210000112],[48.88013756600017,14.212103583000115],[48.876963738000114,14.206732489000073],[48.86988366000017,14.201361395000106],[48.86296634200008,14.194647528000159],[48.85254967500006,14.166978257000068],[48.835297071000156,14.156236070000148],[48.79761803500017,14.140448309000105],[48.738291863000114,14.06818268400012],[48.71949303500017,14.057277736000145],[48.713715040000096,14.055405992000175],[48.70183353000007,14.046698309000107],[48.69581139400023,14.043605861000117],[48.68930097700016,14.042425848000091],[48.68148847700016,14.043605861000117],[48.56478925900015,14.046047268000152],[48.54810631600011,14.04051341400013],[48.503428582000055,14.002630927000098],[48.49382571700019,13.998968817000147],[48.48552493600019,13.99848053600006],[48.477549675000056,13.99673086100016],[48.468760613000114,13.98895905200007],[48.450450066000116,14.010646877000141],[48.415375196000156,14.016831773000106],[48.338226759000094,14.016302802000125],[48.3411564460001,14.01239655200014],[48.34571373800005,14.002630927000098],[48.304209832000055,14.001898505000069],[48.18873131600011,13.969142971000137],[48.19361412900017,13.993394273000135],[48.17758222700016,14.009182033000087],[48.15528405000006,14.020209052000126],[48.140391472000175,14.030585028000132],[48.13355553500017,14.023138739000144],[48.10596764400023,14.036037502000154],[48.01685631600017,14.057277736000145],[48.001638217000185,14.049139716000127],[47.948578321000156,14.033392645000077],[47.93116295700011,14.030585028000132],[47.9173283210001,14.02138906500015],[47.866547071000156,13.961655992000173],[47.82097415500019,13.938462632000139],[47.667246941000165,13.887193101000108],[47.645681186000076,13.87319570500014],[47.564219597,13.789129950000103],[47.43604576900006,13.678045966000113],[47.39820397200006,13.654852606000176],[47.166840040000096,13.585598049000112],[46.91187584700017,13.533270575000117],[46.82422936300006,13.476304429000109],[46.700694207000055,13.430324611000144],[46.68384850400017,13.427232164000158],[46.66391035200016,13.430080471000096],[46.6282658210001,13.440822658000116],[46.60474694100017,13.440904039000188],[46.583506707000055,13.435126044000128],[46.54021243600019,13.41689687700014],[46.52003014400006,13.413031317000147],[46.31299889400006,13.413560289000117],[46.26954186300023,13.42047760600012],[46.247813347000175,13.432114976000122],[46.234548373000024,13.436346747000144],[46.228688998000194,13.431057033000071],[46.224131707000225,13.428697007000125],[46.19752037900011,13.42047760600012],[46.11133873800023,13.406805731000176],[45.940603061000076,13.399359442000103],[45.92318769600009,13.395453192000119],[45.89047285200016,13.382310289000143],[45.87574303500017,13.379461981000118],[45.833750847000175,13.38133372600008],[45.81544030000012,13.379543361000103],[45.80347741000011,13.372015692000133],[45.665782097000175,13.341986395000092],[45.63209069100017,13.32489655200014],[45.53589928500011,13.228664455000114],[45.508474155000066,13.208685614000132],[45.49415123800006,13.194647528000175],[45.48145592500012,13.157538153000159],[45.43409264400006,13.098334052000084],[45.40300540500019,13.070135809000105],[45.36524498800011,13.053697007000109],[45.19353274800008,13.012681382000096],[45.15406334700017,12.992132880000142],[45.11817467500012,12.961737372000172],[45.10450280000006,12.944891669000171],[45.099457227000094,12.936183986000103],[45.09376061300023,12.926255601000094],[45.09319095100008,12.924709377000156],[45.08659915500019,12.907294012000179],[45.083994988000114,12.889471747000115],[45.08228600400011,12.88662344000008],[45.058767123000024,12.827134507000137],[45.05665123800023,12.817124742000146],[45.06202233200011,12.776556708000143],[45.05860436300006,12.762030341000099],[45.03931725400011,12.75629303600013],[45.017751498000024,12.759833075000115],[44.99463951900005,12.769191799000138],[44.979340040000096,12.782294012000106],[44.98096764400023,12.79730866100013],[44.997406446000156,12.803452867000116],[45.017751498000024,12.80174388200011],[45.035166863000114,12.803656317000074],[45.042491082000105,12.820868231000176],[45.038584832000105,12.821234442000105],[45.02328535200015,12.84105052300012],[45.02198326900023,12.845119533000071],[45.02003014400012,12.848944403000175],[45.02149498800006,12.853461005000142],[45.02149498800006,12.857163804000095],[45.015147332000225,12.858710028000132],[45.00928795700011,12.856675523000192],[45.00847415500018,12.852240302000126],[45.00928795700011,12.847560940000108],[45.00831139400012,12.845119533000071],[45.00123131600017,12.83348216400016],[44.998057488000114,12.83144765800013],[44.99301191500015,12.832464911000102],[44.983653191000116,12.837144273000119],[44.97754967500006,12.83820221600017],[44.95508873800022,12.837062893000137],[44.94459069100017,12.833970445000148],[44.94011478000018,12.828029690000122],[44.933116082000225,12.812648830000086],[44.91675866000011,12.799465236000131],[44.8982853520001,12.79621002800009],[44.884776238000114,12.810939846000082],[44.87159264400022,12.803534247000101],[44.86744225400011,12.794826565000108],[44.87183678500011,12.769964911000073],[44.87940514400023,12.776434637000165],[44.88542728000007,12.777980861000117],[44.91627037900011,12.774888414000129],[44.92090905000006,12.771389065000136],[44.91895592500012,12.75942617400011],[44.912771030000016,12.748195705000098],[44.8982853520001,12.736761786000145],[44.88135826900012,12.729885158000144],[44.86833743600019,12.732123114000117],[44.83961022200006,12.743475653000102],[44.83082116000011,12.748846747000144],[44.82488040500007,12.757025458000072],[44.82496178500017,12.761623440000093],[44.822601759000094,12.765082098000093],[44.809743686000076,12.769964911000073],[44.78516686300017,12.77228424700013],[44.764903191000116,12.765570380000085],[44.727793816000116,12.742010809000133],[44.726735873000074,12.746527411000088],[44.72291100400017,12.752346096000137],[44.7209578790001,12.75629303600013],[44.72559655000006,12.766506252000156],[44.71924889400012,12.780096747000115],[44.70687910200015,12.793646552000084],[44.69361412900017,12.803452867000116],[44.652354363000114,12.817938544000157],[44.61060631600017,12.819566148000177],[44.57276451900012,12.811590887000136],[44.54281660200016,12.79730866100013],[44.489919467000185,12.753485419000171],[44.432953321000156,12.69358958500014],[44.430837436000076,12.688177802000096],[44.42351321700008,12.67597077000012],[44.41553795700011,12.670152085000069],[44.41179446700008,12.684027411000145],[44.40699303500017,12.685248114000075],[44.383474155000016,12.676336981000134],[44.35434004000015,12.669338283000144],[44.28956139400022,12.63898346600017],[44.267344597000175,12.636786200000174],[44.247325066000116,12.63898346600017],[44.22852623800006,12.638657945000146],[44.191172722,12.619126695000162],[44.16911868600002,12.618150132000096],[44.149424675000056,12.62498607000012],[44.1380314460001,12.63898346600017],[44.151621941000165,12.637884833000129],[44.176117384000094,12.633246161000102],[44.18995201900012,12.63214752800016],[44.198415561000076,12.639064846000151],[44.19800866000011,12.652248440000108],[44.191172722,12.660467841000113],[44.17969811300006,12.652655341000113],[44.153493686000076,12.655951239000146],[44.12134850400017,12.643377997000158],[44.06234785200016,12.611721096000096],[44.033702019000174,12.604315497000101],[44.01710045700011,12.603705145000133],[43.99170983200011,12.612127997000101],[43.96143639400012,12.59959544500019],[43.94629967500012,12.598049221000153],[43.927093946000156,12.610174872000144],[43.909434441000116,12.645331122000115],[43.89478600400011,12.652655341000113],[43.87419681100019,12.655462958000072],[43.857758009000094,12.66254303600013],[43.82960045700011,12.680609442000147],[43.81348717500012,12.688381252000141],[43.794688347000175,12.694891669000143],[43.773773634000094,12.699408270000092],[43.751475457000055,12.7011172550001],[43.737803582000225,12.705755927000126],[43.69947350400011,12.727850653000118],[43.67945397200006,12.735256252000099],[43.644053582000225,12.734564520000148],[43.6346134770001,12.73867422100011],[43.61939537900017,12.749579169000171],[43.60962975400011,12.754339911000088],[43.60059655000012,12.75629303600013],[43.58773847700016,12.751369533000158],[43.53077233200017,12.695502020000104],[43.52556399800008,12.690375067000089],[43.51172936300017,12.683172919000143],[43.49073326900012,12.680609442000147],[43.46802819100017,12.68390534100017],[43.4622501960001,12.693345445000189],[43.48121178500011,12.77342357000016],[43.48194420700016,12.812079169000114],[43.47315514400012,12.846625067000117],[43.452891472000175,12.878607489000117],[43.42261803500016,12.906195380000142],[43.41871178500016,12.916449286000073],[43.415537957000225,12.928900458000086],[43.40845787900016,12.93695709800012],[43.40137780000011,12.943426825000117],[43.39820397200006,12.951157945000134],[43.39682050900014,12.970851955000086],[43.39291425900014,12.989691473000121],[43.38640384200008,13.00726959800015],[43.377126498000194,13.023179429000066],[43.341807488000114,13.062648830000127],[43.33619225400017,13.074408270000106],[43.33472741000011,13.082180080000114],[43.32252037900016,13.10578034100014],[43.31299889400023,13.131252346000153],[43.30884850400011,13.139308986000088],[43.24887129000009,13.212713934000107],[43.226328972,13.283880927000125],[43.239593946000156,13.315130927000098],[43.24830162900011,13.348944403000173],[43.25424238400015,13.526556708000072],[43.27466881600011,13.557603257000096],[43.27849368600002,13.566595770000106],[43.28028405000012,13.574123440000065],[43.284515821000156,13.580389716000111],[43.29517662900017,13.585598049000112],[43.28199303500011,13.617132880000112],[43.285329623000074,13.686590887000136],[43.28093509200008,13.722113348000121],[43.247894727000094,13.78367747600008],[43.243500196000156,13.794338283000101],[43.23316491000011,13.876369533000116],[43.22730553500017,13.885443427000112],[43.1617167470001,13.953990384000162],[43.13919286500007,14.00734844900016],[43.11806712900014,14.05249176400011],[43.0955200010001,14.083955708000104],[43.0842533910002,14.159187050000156],[43.0757922330001,14.194759292000171],[43.0659165980002,14.224865071000139],[43.047562871000224,14.275507584000165],[43.019053582000055,14.368353583000072],[43.010996941000116,14.388413804000123],[43.00611412900016,14.419419664000143],[42.99350019600009,14.44830963700015],[42.989919467000135,14.480210679000079],[42.98731530000012,14.489243882000082],[42.981700066000116,14.494777736000103],[42.96338951900017,14.507757880000097],[42.959320509000094,14.513495184000162],[42.96119225400017,14.52537669500012],[42.965993686000076,14.530259507000096],[42.973480665000096,14.528469143000109],[42.98365319100017,14.520331122000087],[42.99415123800023,14.500474351000094],[43.00611412900016,14.45477936400006],[43.02149498800011,14.442084052000098],[43.02198326900012,14.471096096000082],[43.02003014400023,14.484605210000069],[43.01400800900015,14.49677155200014],[43.028656446000156,14.5379906270001],[43.017588738000114,14.571234442000103],[42.99805748800023,14.6015078800001],[42.98731530000012,14.633856512000122],[42.989512566000116,14.641058661000145],[42.99878991000017,14.651271877000084],[43.00098717500006,14.657171942000119],[42.999847852000094,14.66331614800019],[42.997325066000116,14.666205145000133],[42.99480228000019,14.667914130000128],[42.99048912900011,14.680080471000124],[42.98365319100017,14.68512604400014],[42.97681725400017,14.688381252000099],[42.97380618600007,14.691880601000092],[42.97144616000011,14.697007554000109],[42.96656334700006,14.701849677000084],[42.96168053500017,14.708563544000128],[42.95411217500012,14.742661851000134],[42.95313561300023,14.753729559000163],[42.94223066500015,14.788885809000133],[42.894541863000114,14.847479559000176],[42.883636915000096,14.883693752000097],[42.88160241000017,14.904608466000155],[42.88331139400012,14.91551341400013],[42.89112389400006,14.913804429000121],[42.895762566000116,14.905991929000136],[42.89405358200011,14.899318752000084],[42.890961134000094,14.891424872000114],[42.89112389400006,14.880316473000079],[42.8982853520001,14.861761786000073],[42.91041100400011,14.8413760440001],[42.926605665000096,14.823228257000096],[42.94564863400015,14.811428127000125],[42.946787957000105,14.825873114000087],[42.95313561300023,14.859198309000162],[42.95232181100001,14.87954336100016],[42.9416610040001,14.915350653000159],[42.937266472,14.948472398000192],[42.93213951900012,14.960842190000134],[42.923594597000175,14.971421617000187],[42.89812259200007,14.99526601800008],[42.88721764400012,15.008205471000082],[42.880137566000116,15.024847723000134],[42.87745201900023,15.048529364000144],[42.882334832000225,15.102484442000076],[42.87745201900023,15.119859117000145],[42.86402428500017,15.136419989000116],[42.828949415000096,15.151760158000158],[42.796885613000114,15.178697007000125],[42.776703321000156,15.191392320000174],[42.75473066500015,15.201808986000087],[42.73340905000006,15.209295966000141],[42.711273634000094,15.214260158000101],[42.691416863000114,15.214260158000101],[42.676931186000076,15.205796617000148],[42.671397332000225,15.185370184000176],[42.66041100400017,15.182562567000133],[42.63770592500012,15.190863348000105],[42.618011915000096,15.207505601000063],[42.61670983200011,15.22972239800012],[42.610118035000106,15.243597723000107],[42.6213485040001,15.244696356000146],[42.654633009000094,15.237209377000084],[42.67172285200016,15.239650783000114],[42.682627800000056,15.246486721000139],[42.68873131600011,15.257025458000099],[42.69190514400012,15.270697333000127],[42.69092858200011,15.28123607000019],[42.68067467500006,15.29604726800008],[42.67823326900023,15.30829498900013],[42.70427493600001,15.355454820000118],[42.71241295700022,15.36627838700012],[42.71762129000015,15.353461005000083],[42.7150985040001,15.336981512000094],[42.707855665000096,15.321519273000161],[42.699392123000074,15.31167226800015],[42.71851647200006,15.303127346000124],[42.7337345710001,15.293890692000074],[42.774261915000146,15.260443427000112],[42.7791447270001,15.253322658000158],[42.781260613000114,15.24030182500016],[42.77857506600011,15.22162506700009],[42.78199303500011,15.215073960000112],[42.79493248800023,15.209295966000141],[42.79590905000012,15.217352606000178],[42.794606967000135,15.222601630000073],[42.79167728000019,15.226304429000109],[42.78809655000012,15.22972239800012],[42.80307050900015,15.245184637000134],[42.80909264400005,15.26776764500012],[42.80689537900017,15.344305731000107],[42.79737389400006,15.379706122000115],[42.781260613000114,15.407904364000087],[42.77719160200016,15.421942450000131],[42.77767988400015,15.432806708000115],[42.77995853000012,15.44318268400012],[42.781260613000114,15.455715236000017],[42.78052819100017,15.467474677],[42.77833092500006,15.478989976000136],[42.774261915000146,15.491034247000144],[42.759938998000024,15.516058661000057],[42.719248894000174,15.570013739000059],[42.72136478000007,15.578192450000174],[42.73340905000006,15.592230536000116],[42.72388756600017,15.602199611000016],[42.71485436300006,15.613959052],[42.708262566000116,15.627834377000097],[42.70557701900023,15.64435455900015],[42.716075066000116,15.679836330000157],[42.71363366000017,15.694728908000016],[42.69190514400012,15.702093817],[42.699229363000114,15.71743398600016],[42.70923912900017,15.72589752800009],[42.72103925900014,15.732814846000096],[42.73340905000006,15.74306875200004],[42.74170983200005,15.753241278000147],[42.745778842000135,15.761948960000055],[42.74691816500015,15.772650458000086],[42.74724368600018,15.788397528000031],[42.75245201900006,15.816392320000046],[42.765798373000194,15.835760809000147],[42.7834578790001,15.849432684000092],[42.80176842500006,15.86033763199999],[42.81999759200008,15.87494538],[42.83033287900017,15.892523505000142],[42.834808790000096,15.915350653000145],[42.84327233200017,16.05219147300009],[42.84009850400011,16.097805080000125],[42.81275475400011,16.238267320000105],[42.80884850400011,16.312648830000015],[42.80762780000012,16.319566148000106],[42.80176842500006,16.34015534100014],[42.80258222700016,16.339422919000114],[42.80307050900015,16.342352606000034],[42.80298912900017,16.34735748900009],[42.80176842500006,16.353216864000114],[42.79883873800023,16.35846588700009],[42.79070071700002,16.368638414000042],[42.78948689012466,16.37094468406555],[42.837312459000174,16.38721791600007],[42.87245243400011,16.401635641],[42.89818729700019,16.418895569000156],[42.906765584000226,16.434915263000118],[42.90562870300013,16.451089986000042],[42.90294152800018,16.466282857000134],[42.906765584000226,16.479356995],[42.91741092900011,16.483801168000113],[42.95627160600006,16.490725810000082],[42.970947713000065,16.495790100000146],[43.014665975000156,16.52069814100004],[43.036266723000125,16.53630442400008],[43.04877242000012,16.553460999000137],[43.07461063600013,16.61878000900016],[43.0786413980002,16.637693584000132],[43.07998498600008,16.65882924400016],[43.08494592300022,16.67257517500009],[43.097761678000126,16.677794495000015],[43.122773071000125,16.67329864600019],[43.16292565900014,16.661516419000108],[43.17997888200014,16.664617004000135],[43.186076701000125,16.683272196000118],[43.185678910000064,16.684847057000027],[43.179772176000114,16.708231914000077],[43.17067712400015,16.723476461000033],[43.168506714000074,16.737222392000163],[43.18287276200013,16.757996317],[43.19186446100011,16.764249166000113],[43.201062867000104,16.768124899000057],[43.20860762500015,16.773395894000185],[43.21284509200009,16.783886210000148],[43.21150150500014,16.796856995000084],[43.20473189300017,16.807709046000028],[43.194448283000185,16.815460510000108],[43.1573446040002,16.825382385000026],[43.14582076000008,16.834477438000093],[43.1337284750002,16.871012675000102],[43.11264449100017,16.91002838200002],[43.108717082000084,16.926978252000122],[43.11543501800022,16.951834616000085],[43.13155806500012,16.990436910000156],[43.1358988850001,17.00960886700007],[43.1360022380002,17.031416321],[43.13031783000005,17.05348215700009],[43.1224630130001,17.070121969000027],[43.11843225100014,17.08624501600009],[43.12432336500015,17.106967265000133],[43.145303996000024,17.14655141200008],[43.150988404000174,17.166860251000102],[43.15005822800006,17.189959615000177],[43.1561560470001,17.209700013000045],[43.176878296000126,17.22551300100004],[43.20333663000011,17.23631337500016],[43.226177612000214,17.24127431200013],[43.24860518400013,17.25191965800012],[43.252170858000085,17.271970114000155],[43.241835571000166,17.293415833],[43.22219852700002,17.30783355700011],[43.1650443930001,17.325920308000107],[43.16788659700009,17.33051951100016],[43.2159456790001,17.387208557000164],[43.3030721430002,17.45903879800009],[43.39102543100009,17.511955465000156],[43.41288456200007,17.51996531200014],[43.434950399000144,17.522859192000126],[43.453140503000185,17.518776754000115],[43.48714359600009,17.51748484300016],[43.50336999500021,17.513454081000177],[43.57706058700015,17.482964986000084],[43.619538615000096,17.458832093000026],[43.68930179900022,17.38384958900015],[43.730642945000085,17.35243031900002],[43.75064172400019,17.34566070600009],[43.76878015100013,17.34550567600006],[43.806193888000195,17.349588115000145],[43.845778035000166,17.34617747000011],[43.863244670000114,17.34695261600005],[43.88670577000019,17.353670553000157],[43.892648560000076,17.35103505500014],[43.892648560000076,17.340079651000067],[43.89006473800012,17.320184225000062],[43.89404382300009,17.31217437800008],[43.89735111500008,17.307368470000156],[43.9032939050002,17.30431956000014],[43.91512780800011,17.30183909100016],[43.93869226000012,17.30519806000008],[43.95429854300008,17.32002919600002],[43.967114299000144,17.339562887000127],[43.982307170000155,17.35682281500011],[44.003907918000124,17.367829896],[44.02096114100007,17.366021220000032],[44.05935673000007,17.347055969000067],[44.08534997600023,17.343438619000082],[44.104470256000155,17.351965231000104],[44.11966312600006,17.369948629000177],[44.13428755700013,17.39470164],[44.14901534000015,17.404830220000164],[44.16937585500008,17.402349752000177],[44.211543824000074,17.390619202],[44.23056075000008,17.391859436000132],[44.30735192900008,17.408964336000096],[44.40414188700018,17.418731181000126],[44.46517175300008,17.416457418000117],[44.53379805500011,17.40286651700002],[44.561961711000066,17.404468486000056],[44.6246452230001,17.427206116000136],[44.64645267700021,17.43180531900019],[44.84902429200022,17.430513407000134],[44.97246636800016,17.42969619600011],[44.99733565200003,17.429531556000157],[45.165387411000125,17.42839467400016],[45.22212813300021,17.41738759400006],[45.38470219000006,17.326488749000177],[45.43038415500021,17.31201934800005],[45.6423092040001,17.29109039400005],[45.8908211670001,17.266647441000103],[46.07995690900012,17.24799224900015],[46.32262943500015,17.22406606000014],[46.48789066500015,17.245976868000085],[46.71009932500013,17.275380758],[46.74720300300012,17.254761861000176],[46.811798543000144,17.16846221900012],[46.88579919400016,17.069553528000156],[46.97034183800022,16.956847229000132],[46.98300256400009,16.949095764000116],[46.99702637400017,16.948514131000067],[47.12878177900009,16.9430496210001],[47.16133793100013,16.947442119000083],[47.19089685000003,16.95891428600002],[47.31357670100007,17.02790232400004],[47.42757491100016,17.091826070000124],[47.428568591,17.09310365900005],[47.45796065300013,17.130893453000127],[47.524829956000104,17.30757517500005],[47.57211389200015,17.432322083000127],[47.589012085,17.463276265000147],[47.68626713000006,17.579651591000143],[47.835508667000084,17.75819366400016],[47.99358687400015,17.947587789000025],[48.08438236500009,18.055901591000165],[48.161948690000116,18.148919169000052],[48.18442793700009,18.16393117300011],[48.3125854900002,18.22658884700003],[48.48435795100008,18.31040802000011],[48.675974162000074,18.404019877000152],[48.84753991700009,18.487709860000095],[48.99130375200011,18.557886454000066],[49.035848837000145,18.579719747000084],[49.128814738000095,18.61209503200008],[49.25785079000016,18.629509989000113],[49.4180477290001,18.65105906200007],[49.5782446690001,18.67260813400013],[49.73844161000014,18.69415720700009],[49.89853519700014,18.715706279000027],[50.05873213700007,18.737255351],[50.218929078000116,18.75885609900014],[50.379126018000214,18.780353495],[50.53932295700022,18.80190256700014],[50.69936486900022,18.82352915500003],[50.859716838000196,18.84502655100006],[51.0198104250002,18.866575622000127],[51.179904012000094,18.888150533],[51.3401009520002,18.90969960600013],[51.50029789200008,18.9312486780001],[51.66049483200018,18.952823588000157],[51.82069177300011,18.974372661000118],[51.97861495000021,18.99563751300009],[51.985688749000104,18.979731806000146],[52.01396162900019,18.916159160000106],[52.0567497150001,18.81962758400006],[52.09953780100008,18.72304433200013],[52.142325887000105,18.62651275700001],[52.1850106200001,18.529929504000066],[52.22779870600013,18.433423767000033],[52.27069014500009,18.336866353000104],[52.31332320200008,18.240283102000046],[52.356162964000106,18.14377736400003],[52.39900272600001,18.047271627000114],[52.4417391360001,17.950636699000157],[52.48452722200008,17.854156799000137],[52.527418660000215,17.75762522400011],[52.57020674700007,17.661093648000087],[52.612839803,17.56456207300006],[52.65562788900016,17.467978821000102],[52.69841597500007,17.3714472460001],[52.73014530500021,17.299875387000142],[52.7282849530001,17.299358622000014],[52.72301395700017,17.29868682900012],[52.72146366400014,17.298170065000175],[52.73624312400008,17.289178365000126],[52.77386356600018,17.287111308000178],[52.79102014100013,17.281220195000074],[52.801562134000186,17.267422587000127],[52.84031945800015,17.18370676700009],[52.9027445880001,17.048262838000156]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Vietnam","sov_a3":"VNM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vietnam","adm0_a3":"VNM","geou_dif":0,"geounit":"Vietnam","gu_a3":"VNM","su_dif":0,"subunit":"Vietnam","su_a3":"VNM","brk_diff":0,"name":"Vietnam","name_long":"Vietnam","brk_a3":"VNM","brk_name":"Vietnam","brk_group":null,"abbrev":"Viet.","postal":"VN","formal_en":"Socialist Republic of Vietnam","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vietnam","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":5,"mapcolor13":4,"pop_est":86967524,"gdp_md_est":241700,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"VM","iso_a2":"VN","iso_a3":"VNM","iso_n3":"704","un_a3":"704","wb_a2":"VN","wb_a3":"VNM","woe_id":23424984,"woe_id_eh":23424984,"woe_note":"Exact WOE match as country","adm0_a3_is":"VNM","adm0_a3_us":"VNM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":5,"tiny":2,"homepart":1,"filename":"VNM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.66871178500006,8.753485419000171],[106.6658634770001,8.752875067000119],[106.65577233200005,8.753485419000171],[106.66081790500007,8.747381903000175],[106.66179446700002,8.744452216000155],[106.66260826900006,8.739813544000143],[106.63917076900005,8.737453518000095],[106.63949629000008,8.726467190000122],[106.64966881600006,8.711859442000103],[106.65577233200005,8.698879299000112],[106.64307701900006,8.703802802000084],[106.63257897200016,8.7032738300001],[106.62256920700011,8.700506903000132],[106.61109459700018,8.698879299000112],[106.602305535,8.694728908000073],[106.60043379000014,8.68496328300013],[106.60108483200011,8.67365143400015],[106.60043379000014,8.66474030200011],[106.60132897200006,8.660142320000176],[106.60303795700005,8.655707098000107],[106.59929446700019,8.65241120000016],[106.5833439460001,8.651068427000084],[106.57837975400005,8.655462958000072],[106.56275475400017,8.67572663000007],[106.55958092500006,8.681830145000148],[106.57097415500006,8.705959377000084],[106.5979923840001,8.73232656500008],[106.63062584700006,8.754584052000126],[106.65837649800012,8.766669012000122],[106.66260826900006,8.765082098000093],[106.66602623800006,8.763169664000129],[106.66822350400005,8.759711005000128],[106.66871178500006,8.753485419000171]]],[[[106.21070397200006,9.620917059000135],[106.22339928500017,9.608465887000108],[106.27930748800004,9.595689195000162],[106.29200280000012,9.586411851000122],[106.29070071700019,9.561428127000099],[106.28443444100017,9.543687242000187],[106.27003014400012,9.534491278000132],[106.24415123800011,9.53497955900012],[106.24415123800011,9.541164455000086],[106.24919681100013,9.5601260440001],[106.2341414720001,9.581366278000175],[106.21241295700005,9.599758205000128],[106.19703209700016,9.61005280200014],[106.1896264980002,9.603827216000083],[106.20460045700005,9.585272528000173],[106.22144616000006,9.57249583500014],[106.22657311300004,9.565171617000132],[106.20704186300006,9.562892971000151],[106.1966251960001,9.57168203300013],[106.162364129,9.624335028000132],[106.13738040500019,9.654364325000088],[106.12598717500012,9.672430731000103],[106.121348504,9.689154364000132],[106.11768639400005,9.71092357000019],[106.1087345710001,9.726629950000158],[106.08716881599999,9.754624742000175],[106.09343509200008,9.760891018000137],[106.09571373800006,9.755764065000122],[106.0989689460001,9.752671617000132],[106.10710696700019,9.747219143000109],[106.15544681100013,9.678941148000192],[106.20337975400005,9.63214752800013],[106.21070397200006,9.620917059000135]]],[[[106.54411868600008,9.838039455000086],[106.53565514400012,9.829169012000136],[106.5210067070001,9.83771393400015],[106.496836785,9.875230210000083],[106.46851647200018,9.890285549000097],[106.42237389400006,9.932806708000143],[106.42237389400006,9.939032294000114],[106.42693118600019,9.936102606000176],[106.44288170700011,9.932806708000143],[106.48601321700019,9.902655341000127],[106.49805748800011,9.891180731000176],[106.53101647200012,9.857977606000162],[106.54411868600008,9.838039455000086]]],[[[106.73829186300006,10.22915273600016],[106.72413170700011,10.226507880000085],[106.71778405000005,10.231024481000134],[106.70932050900014,10.243597723000121],[106.68995201900012,10.251776434000135],[106.55958092500006,10.275376695000162],[106.51172936300006,10.295884507000125],[106.52711022200012,10.297105210000138],[106.5608830090001,10.28286367400014],[106.58790123800006,10.276922919000114],[106.70281009200002,10.27558014500012],[106.72413170700011,10.268622137000136],[106.74683678500006,10.263169664000188],[106.75554446700002,10.257554429000095],[106.75879967500006,10.24437083500014],[106.75245201900006,10.23607005400008],[106.73829186300006,10.22915273600016]]],[[[104.00473066500015,10.450995184000135],[104.01710045700005,10.439276434000135],[104.00977623800006,10.446112372000158],[104.08204186300006,10.370998440000136],[104.08545983200005,10.353949286000088],[104.08545983200005,10.248114325000174],[104.04664147200006,10.15106842700014],[104.03345787900011,10.09601471600017],[104.05128014400006,10.069322007000068],[104.04395592500006,10.048163153000145],[104.044200066,10.036078192000147],[104.04802493600002,10.02529531500015],[104.05128014400006,10.007961330000157],[104.03484134200006,10.016750393000123],[104.03093509200008,10.021551825000117],[104.0105900400001,10.030462958000143],[103.99724368600008,10.074530341000155],[103.983653191,10.158758856000162],[103.95704186300006,10.233791408000101],[103.93718509200008,10.26605866100013],[103.90845787900011,10.289048570000105],[103.87029056100006,10.308091539000188],[103.85743248800004,10.320868231000148],[103.84945722700014,10.360541083000072],[103.84603925900015,10.371283270000077],[103.85132897200005,10.3742129580001],[103.9142358730002,10.365220445000176],[103.93376712300007,10.366359768000123],[103.94214928500004,10.37474192900008],[103.94434655000012,10.379461981000174],[103.95508873800006,10.394964911000102],[103.95923912900015,10.398342190000122],[103.9681095710001,10.40232982000019],[103.97144616000006,10.411932684000163],[103.9729923840001,10.42332591400013],[103.97624759200002,10.433050848000093],[103.98340905000006,10.442206122000158],[103.99317467500012,10.450100002000141],[104.00473066500015,10.450995184000135]]],[[[107.20264733200005,10.438055731000118],[107.21119225400011,10.425604559000107],[107.20557701900012,10.428168036000116],[107.202810092,10.428900458000143],[107.20069420700011,10.429877020000118],[107.19703209700016,10.433050848000093],[107.19019616000006,10.433050848000093],[107.187754754,10.420640367000146],[107.1805119150001,10.415432033000158],[107.17310631599999,10.411118882000068],[107.1658634770001,10.391099351000094],[107.1567488940001,10.385484117000189],[107.13550866,10.378485419000114],[107.12159264400012,10.365912177000126],[107.10059655000006,10.335150458000143],[107.08716881600017,10.323187567000103],[107.07374108200011,10.372626044000157],[107.0793563160001,10.39101797100011],[107.11988366000006,10.401312567000131],[107.14966881600006,10.416571356000103],[107.15601647200006,10.422512111000117],[107.1567488940001,10.432847398000135],[107.15943444100017,10.44562409100017],[107.16423587300008,10.457342841000155],[107.17204837300008,10.464585679000095],[107.20264733200005,10.438055731000118]]],[[[106.9480900400001,10.507025458000072],[106.94336998800006,10.476629950000103],[106.9220483730002,10.425604559000107],[106.92945397200018,10.425604559000107],[106.93628991,10.439276434000135],[106.95777428500006,10.425604559000107],[106.96892337300008,10.416408596000139],[106.977305535,10.405178127000127],[106.92847741,10.393500067000133],[106.90853925900015,10.384711005000069],[106.895274285,10.370998440000136],[106.88795006600012,10.370998440000136],[106.88795006600012,10.38922760600012],[106.8831486340001,10.403021552000126],[106.87745201900012,10.414374091000113],[106.87427819100017,10.425604559000107],[106.87696373800004,10.443833726000094],[106.89234459700018,10.46527741100013],[106.895274285,10.480861721000124],[106.88795006600012,10.480861721000124],[106.88795006600012,10.46662018400012],[106.87940514400005,10.490057684000178],[106.88835696700019,10.504868882000068],[106.90674889400006,10.514308986000088],[106.92750084700006,10.521185614000089],[106.9480900400001,10.507025458000072]]],[[[108.96615644600016,10.517645575000103],[108.96078535200009,10.502875067000117],[108.94019616000017,10.504217841000111],[108.93018639400006,10.514553127000127],[108.92595462300008,10.530218817000105],[108.92945397200006,10.544826565000122],[108.94255618600017,10.551947333000072],[108.95899498800011,10.537543036000102],[108.96615644600016,10.517645575000103]]],[[[106.9220483730002,10.580226955000128],[106.92457116000006,10.569240627000156],[106.92888431100002,10.558335679000095],[106.92969811300006,10.54905833500014],[106.9220483730002,10.542954820000146],[106.91675866000006,10.546291408000087],[106.91098066500015,10.55597565300013],[106.902110222,10.576483466000099],[106.895274285,10.576483466000099],[106.89779707100008,10.564032294000171],[106.90699303500017,10.545721747000115],[106.90894616000006,10.532375393000095],[106.90308678500011,10.521877346000123],[106.88990319100006,10.525458075000103],[106.87574303500004,10.53510163000007],[106.86744225400005,10.542954820000146],[106.86597741000017,10.54596588700015],[106.85596764400012,10.561712958000115],[106.85377037899998,10.562811591000155],[106.85596764400012,10.571763414000173],[106.86524498800006,10.579779364000132],[106.86744225400005,10.58698151200015],[106.87126712300008,10.607652085000083],[106.86793053500004,10.617132880000085],[106.85377037899998,10.624904690000093],[106.85377037899998,10.631048895000063],[106.86475670700005,10.633978583000086],[106.87769616000016,10.635565497000115],[106.88795006600012,10.634466864000075],[106.88965905000012,10.627264716000141],[106.91285241000006,10.61204661700016],[106.9178166020001,10.603745835000081],[106.92221113400015,10.601263739000146],[106.92701256600006,10.599351304000095],[106.92945397200018,10.597560940000108],[106.93018639400012,10.590073960000138],[106.92741946700008,10.586127020000147],[106.9238387380001,10.583563544000143],[106.9220483730002,10.580226955000128]]],[[[106.86394290500007,10.486965236000103],[106.87427819100017,10.46662018400012],[106.87427819100017,10.46039459800015],[106.85808353000019,10.46430084800015],[106.84449303500006,10.469916083000143],[106.83228600400015,10.47239817900008],[106.819590691,10.46662018400012],[106.8252059250001,10.463853257000068],[106.82667076900006,10.463812567000076],[106.82813561300006,10.465236721000137],[106.83326256600006,10.46662018400012],[106.84864342500012,10.452541408000073],[106.85962975400005,10.431789455000086],[106.85889733200011,10.41307200700011],[106.84009850400017,10.405178127000127],[106.81641686300006,10.414699611000131],[106.79167728000019,10.437160549000124],[106.77068118600002,10.46430084800015],[106.75879967500006,10.487738348000121],[106.75513756600006,10.503607489000146],[106.7547306650001,10.515570380000085],[106.75879967500006,10.542954820000146],[106.75749759200019,10.54352448100012],[106.75513756600006,10.550523179000095],[106.75196373800006,10.566555080000086],[106.75538170700004,10.56964752800016],[106.77214603000019,10.572251695000162],[106.778575066,10.576483466000099],[106.78589928499999,10.601385809000119],[106.77881920700005,10.624457098000093],[106.75196373800006,10.665838934000107],[106.7747501960001,10.666083075000145],[106.78419030000012,10.662909247000087],[106.79314212300002,10.654445705000143],[106.80225670700005,10.63971588700015],[106.80811608200005,10.633612372000158],[106.8352970710001,10.626044012000122],[106.84782962300008,10.613836981000148],[106.85377037899998,10.598374742000118],[106.85377037899998,10.58392975500007],[106.84669030000005,10.577541408000144],[106.84205162900005,10.570746161000116],[106.84009850400017,10.559393622000144],[106.84245853000002,10.555080471000137],[106.85352623800006,10.53900788000007],[106.85743248800006,10.53546784100017],[106.86768639400006,10.528957424000096],[106.87183678500006,10.515204169000171],[106.86443118600002,10.502997137000094],[106.84009850400017,10.501369533000073],[106.84009850400017,10.494533596000153],[106.85596764400012,10.493801174000124],[106.86394290500007,10.486965236000103]]],[[[109.32837975400005,12.221258856000148],[109.3362736340001,12.217962958000115],[109.34213300900015,12.213202216000113],[109.34620201900012,12.207424221000153],[109.34888756600017,12.200832424000083],[109.34441165500013,12.196966864000075],[109.33350670700005,12.189601955000086],[109.32837975400005,12.18716054900014],[109.32300866000016,12.19375234600011],[109.31657962300008,12.19749583500014],[109.30909264400005,12.197739976000094],[109.30046634200019,12.19399648600016],[109.30339603000019,12.191880601000049],[109.30469811300011,12.192043361000117],[109.30567467500006,12.191392320000162],[109.30738366000017,12.18716054900014],[109.28760826900006,12.188950914000129],[109.26929772200018,12.198675848000079],[109.25456790500019,12.21112702000009],[109.24529056100008,12.221258856000148],[109.24529056100008,12.228094794000157],[109.2519637380001,12.22601959800015],[109.26636803500017,12.223537502000125],[109.27320397200018,12.221258856000148],[109.2727970710001,12.224798895000134],[109.27320397200018,12.235541083000143],[109.29151451900005,12.228338934000107],[109.32837975400005,12.221258856000148]]],[[[109.40503991000017,12.570786851000065],[109.4002384770001,12.557928778000132],[109.38396243600008,12.563055731000148],[109.34742272199999,12.588202216000125],[109.34156334700018,12.596340236000145],[109.3354598320001,12.603257554000137],[109.3232528000001,12.606390692000119],[109.31202233200011,12.614325262000179],[109.3203231130001,12.627997137000122],[109.34620201900012,12.63104889500012],[109.36890709700005,12.627752997000172],[109.38314863400015,12.623724677000112],[109.39039147200018,12.613511460000083],[109.39340254000008,12.601874091000155],[109.40113366000016,12.582749742000189],[109.40503991000017,12.570786851000065]]],[[[107.38445071700019,20.81281159100014],[107.383555535,20.79930247599999],[107.38021894600014,20.797552802],[107.37525475400005,20.803941148000106],[107.36890709700016,20.807196356000148],[107.36085045700005,20.805894273000078],[107.35027103000017,20.81093984600001],[107.3421330090001,20.828436591000138],[107.34107506600006,20.842596747000172],[107.34498131600006,20.84251536700019],[107.35710696700012,20.82933177300005],[107.36963951900012,20.825913804000137],[107.38119550900015,20.818915106000148],[107.38445071700019,20.81281159100014]]],[[[106.99447675900015,20.85175202000015],[107.00513756600017,20.842027085],[107.01140384200002,20.842027085],[107.01246178500017,20.858791408000016],[107.022715691,20.86225006700012],[107.03598066500014,20.857367255000057],[107.04615319100017,20.848863023000106],[107.04615319100017,20.842027085],[107.04297936300011,20.831366278000147],[107.05494225400004,20.823919989],[107.07097415500007,20.820298570000134],[107.08033287900015,20.82151927300005],[107.08716881600017,20.82151927300005],[107.09099368600019,20.814764716000113],[107.09546959700018,20.80902741100014],[107.10084069100004,20.804266669000057],[107.10767662900005,20.800441799000126],[107.0867619150001,20.805121161000145],[107.08033287900015,20.807847398000106],[107.08033287900015,20.800441799000126],[107.08521569100006,20.797186591000084],[107.08814537900017,20.794419664000102],[107.094004754,20.787420966000052],[107.08220462300002,20.789374091000084],[107.07504316500008,20.796047268000123],[107.06609134200008,20.81411367400007],[107.06251061300011,20.80560944200012],[107.0628361340001,20.79828522300012],[107.06666100400005,20.79214101800015],[107.07349694100006,20.787420966000052],[107.07349694100006,20.780585028000033],[107.060313347,20.77594635600009],[107.05046634200019,20.77594635600009],[107.04175866,20.779933986000074],[107.03191165500019,20.787420966000052],[107.03687584700006,20.76626211100013],[107.06739342500006,20.749741929000052],[107.07349694100006,20.73216380400011],[107.06609134200008,20.73216380400011],[107.06609134200008,20.738959052000055],[107.059825066,20.738959052000055],[107.05502363400015,20.721665757000054],[107.04615319100017,20.704250393000095],[107.04615319100017,20.725978908000158],[107.03882897200018,20.72345612200006],[107.03589928500017,20.721665757000054],[107.03191165500019,20.718491929],[107.03191165500019,20.725978908000158],[107.02564537900005,20.718491929],[107.02125084700006,20.723618882000025],[107.01823978000007,20.725978908000158],[107.01823978000007,20.73216380400011],[107.03931725400017,20.73216380400011],[107.03931725400017,20.738959052000055],[107.0353296230002,20.74119700700014],[107.03443444100012,20.742173570000105],[107.03419030000005,20.743353583000143],[107.03191165500019,20.746405341000024],[107.02564537900005,20.746405341000024],[107.02564537900005,20.738959052000055],[107.01823978000007,20.738959052000055],[107.01482181100002,20.743597723000093],[107.00863691500015,20.748928127000127],[107.00513756600017,20.753241278000147],[106.99781334700018,20.753241278000147],[107.00228925900015,20.742499091000028],[107.00513756600017,20.738959052000055],[107.00513756600017,20.73216380400011],[106.985118035,20.745266018],[106.96241295700005,20.77496979400003],[106.94996178500006,20.787420966000052],[106.92107181100002,20.804592190000065],[106.90992272199999,20.81854889500012],[106.91285241000006,20.836900132],[106.93628991,20.844671942],[106.94312584700006,20.848863023000106],[106.94678795700005,20.855536200000174],[106.94654381600004,20.862860419000086],[106.9480900400001,20.870266018000066],[106.95736738400014,20.87677643400015],[106.94996178500006,20.869330145000088],[106.96363366000017,20.85610586100013],[106.99447675900015,20.85175202000015]]],[[[107.34603925900008,20.88816966400013],[107.35132897200005,20.885931708000143],[107.35547936300011,20.887111721000064],[107.36597741000017,20.88841380400008],[107.3821720710001,20.887884833],[107.39234459700018,20.884670315000122],[107.39519290500019,20.878566799000126],[107.39275149800008,20.87457916900017],[107.38990319100006,20.871771552000112],[107.38990319100006,20.869533596000124],[107.3899845710001,20.86741771000011],[107.38786868600019,20.864976304],[107.37452233200011,20.85932038],[107.36768639400006,20.858384507000107],[107.36109459700012,20.859686591000028],[107.35417728000019,20.864732164000046],[107.34351647200018,20.877346096000124],[107.34058678500006,20.875392971000068],[107.33545983200005,20.876939195000105],[107.33253014400012,20.88328685100005],[107.3338322270001,20.888251044000114],[107.33920332100016,20.89036692900011],[107.34603925900008,20.88816966400013]]],[[[106.84009850400017,20.879868882000054],[106.8455509770001,20.866034247000144],[106.88160241000017,20.82151927300005],[106.88648522200006,20.796128648000106],[106.87354576900012,20.78953685100005],[106.85621178500006,20.792873440000065],[106.84750410200016,20.79730866100006],[106.84253991,20.813625393000063],[106.82252037900005,20.85350169500005],[106.819590691,20.87677643400015],[106.81421959700006,20.86810944200006],[106.8126733730002,20.85932038],[106.81462649800008,20.85053131700012],[106.819590691,20.842027085],[106.81218509200002,20.842027085],[106.79932701900012,20.849676825000028],[106.78386478000019,20.852362372000115],[106.77068118600002,20.858587958000058],[106.76563561300011,20.87677643400015],[106.77361087300007,20.904974677000137],[106.78541100400005,20.93081289300015],[106.82455488400015,20.915187893000066],[106.83594811300006,20.90241120000003],[106.84009850400017,20.879868882000054]]],[[[107.47722415500002,20.814520575000145],[107.46387780000012,20.81411367400007],[107.48023522200006,20.849514065000065],[107.48194420700005,20.8653832050001],[107.47071373800006,20.87677643400015],[107.47071373800006,20.88300202000012],[107.49146569100006,20.88377513200014],[107.50562584700006,20.887396552],[107.5161238940001,20.895656643000095],[107.52540123800006,20.910305080000015],[107.54957116000017,20.95612213700009],[107.55323326900006,20.972357489000142],[107.55640709700012,20.969183661000084],[107.55795332100016,20.96605052300002],[107.5594181650001,20.958726304],[107.55347741000016,20.935939846000068],[107.54517662899998,20.919134833000054],[107.49781334700006,20.85317617400004],[107.49170983200004,20.842027085],[107.484629754,20.821722723],[107.47722415500002,20.814520575000145]]],[[[107.7928166020001,20.99225495000003],[107.7928166020001,20.98602936400009],[107.78239993600019,20.98993561400006],[107.77914472700016,20.99225495000003],[107.77295983200011,20.99225495000003],[107.77800540500013,20.97260163],[107.77076256600017,20.957220770000145],[107.75611412900015,20.94570547100001],[107.73829186300011,20.93764883000007],[107.75717207100014,20.97101471600014],[107.75879967500006,20.982611395000063],[107.7534285820001,20.988674221000068],[107.743418816,20.994086005000113],[107.73764082100016,21.00324127800009],[107.74512780000012,21.020168361000074],[107.75806725400005,21.016587632000025],[107.7928166020001,20.99225495000003]]],[[[107.82740319100016,20.989081122000172],[107.8177189460001,20.98826732000005],[107.8165796230002,21.00584544500019],[107.82569420700004,21.024969794000143],[107.84213300900008,21.035589911],[107.8562931650001,21.03327057500006],[107.852793816,21.01992422100012],[107.84441165500007,21.011867580000096],[107.82740319100016,20.989081122000172]]],[[[107.53272545700005,21.040594794000143],[107.53272545700005,21.020168361000074],[107.54639733200011,21.034898179000077],[107.55225670700004,21.038234768],[107.55836022200006,21.034735419000114],[107.5545353520001,21.021551825000145],[107.53907311300011,20.98602936400009],[107.52881920700011,20.950913804000024],[107.52222740999999,20.936428127000152],[107.51172936300006,20.92397695500013],[107.49756920700011,20.916327216000113],[107.48145592500006,20.912543036000088],[107.45704186300011,20.910305080000015],[107.4121199880001,20.899481512000094],[107.39503014400006,20.897284247000115],[107.39503014400006,20.903509833000086],[107.42432701900006,20.915350653000033],[107.45118248800004,20.92999909100014],[107.47429446700018,20.946722723000065],[107.49170983200004,20.964911200000145],[107.4890242850001,20.97606028900016],[107.492442254,20.991441148000106],[107.50473066500015,21.020168361000074],[107.50904381600017,21.017401434000117],[107.51978600400017,21.013373114000146],[107.52263431100013,21.022284247000083],[107.53272545700005,21.040594794000143]]],[[[107.589610222,21.00812409100014],[107.57960045700005,20.983140367000047],[107.5594181650001,20.98602936400009],[107.57007897200006,20.98993561400006],[107.57146243600013,20.99616120000003],[107.5688582690001,21.004950262000094],[107.56690514400006,21.016750393000063],[107.57007897200006,21.026678778000147],[107.58415774800008,21.03969961100016],[107.58741295700011,21.050930080000157],[107.58904056100008,21.07330963700018],[107.59107506600017,21.08177317900011],[107.59424889400006,21.089056708000115],[107.5979110040001,21.09398021],[107.62126712300018,21.116034247000087],[107.62826582100014,21.120184637000037],[107.63209069100016,21.118841864000146],[107.63184655000006,21.111965236000128],[107.59595787900005,21.03912995000009],[107.589610222,21.00812409100014]]],[[[107.52898196700008,21.20331452],[107.53272545700005,21.198919989],[107.53907311300011,21.198919989],[107.54590905000012,21.20270416900003],[107.58057701900012,21.21198151200018],[107.60320071700008,21.219305731000087],[107.60621178500017,21.217433986000017],[107.60157311300006,21.20514557500014],[107.59034264400006,21.19306061400006],[107.55738366000017,21.171779690000093],[107.54712975400005,21.15672435100008],[107.53907311300011,21.15672435100008],[107.52418053500017,21.15997955900012],[107.5041610040001,21.139715887000094],[107.47071373800006,21.09589264500015],[107.45964603000019,21.090236721000064],[107.435313347,21.0814476580001],[107.42286217500012,21.074774481000034],[107.38868248800011,21.04751211100013],[107.37289472700014,21.059556382000054],[107.379649285,21.081935940000093],[107.394297722,21.106838283000016],[107.4025171230002,21.126613674000126],[107.40447024800008,21.138128973000065],[107.4134220710001,21.166327216000138],[107.41830488400015,21.196682033000044],[107.42505944100012,21.196763414000102],[107.43238366,21.188544012000094],[107.435313347,21.189276434000035],[107.4363712900001,21.19773997599999],[107.44117272200018,21.203273830000015],[107.45020592500006,21.20514557500014],[107.44581139400012,21.212062893000066],[107.4448348320001,21.227484442],[107.44654381600006,21.253159898000046],[107.44906660200016,21.265326239000142],[107.45167076900005,21.271470445000105],[107.45533287900011,21.275702216000056],[107.45915774800018,21.277248440000093],[107.4630639980002,21.277411200000056],[107.46713300900015,21.27651601800015],[107.47136478000019,21.274481512000122],[107.48161868600019,21.266791083],[107.50473066500015,21.239243882000082],[107.51140384200019,21.234808661],[107.51807701900006,21.233587958],[107.52320397200018,21.23086172100001],[107.52540123800006,21.22215403900013],[107.52564537900004,21.214016018],[107.52662194100017,21.20799388200011],[107.52898196700008,21.20331452]]],[[[107.80933678500016,21.3471540390001],[107.71143639400012,21.307562567000062],[107.71436608200004,21.31012604400017],[107.72584069100016,21.32347239799999],[107.78394616000004,21.35635000200007],[107.80030358200004,21.362453518000066],[107.81348717500012,21.360500393],[107.81560306100013,21.35809967700008],[107.8182072270001,21.354071356000087],[107.81934655000006,21.350246486000074],[107.81706790500019,21.348537502000067],[107.80933678500016,21.3471540390001]]],[[[107.99830162900005,21.397528387000037],[107.95948326900012,21.37384674700003],[107.94418379000014,21.368109442000062],[107.93620853000019,21.37641022300012],[107.92994225400017,21.37641022300012],[107.92237389400012,21.372626044000114],[107.85425866000017,21.350409247000144],[107.8411564460001,21.348537502000067],[107.84359785200014,21.358832098],[107.84815514400006,21.37026601800015],[107.85352623800006,21.36025625200007],[107.8549910820001,21.35594310100008],[107.85938561300006,21.364081122000087],[107.8652449880001,21.370103257],[107.87281334700016,21.374212958000143],[107.85222415500007,21.375311591000084],[107.82691491000011,21.37026601800015],[107.82691491000011,21.37641022300012],[107.860118035,21.38621653900016],[107.86866295700004,21.390082098000065],[107.99830162900005,21.403753973],[107.99830162900005,21.397528387000037]]],[[[105.38951501499999,23.275427958000037],[105.39912683100012,23.274885356000095],[105.40667159100009,23.2774691770001],[105.4144747320001,23.278476868000084],[105.42589522400013,23.27320587200013],[105.43085616100014,23.267805685000084],[105.44398197500013,23.245223084000045],[105.44398197500013,23.24519724600013],[105.44398197500013,23.245145569000115],[105.46434248900007,23.206000672000172],[105.4738509520001,23.19450266500014],[105.51715580200018,23.16773427300008],[105.52132535800008,23.163147762],[105.52826623600012,23.155512797000156],[105.5348291430001,23.136263327000123],[105.53523999500005,23.099012778000155],[105.53529423100022,23.094095358000075],[105.53968672700013,23.075466003000102],[105.55157230700016,23.059678854000122],[105.5659900310001,23.054097799000104],[105.6368384190001,23.05133311000004],[105.66495039900016,23.043374939],[105.69032352700006,23.043969218000043],[105.70071049000009,23.03781972200009],[105.7196757410002,23.019603781000125],[105.7316129970001,23.01422943100006],[105.74324019400015,23.01079294800003],[105.75471236200022,23.005676982000136],[105.76582279400006,22.995470886000177],[105.76582279400006,22.995315857000136],[105.76602950100013,22.995160828000095],[105.76613285400006,22.995160828000095],[105.77936202000015,22.976118062000022],[105.83568933100005,22.91723276800012],[105.85387943500008,22.904649556],[105.86225101700009,22.907750143000143],[105.86659183800006,22.915062358000128],[105.87010583500009,22.92309804300011],[105.87599694900008,22.92826568700012],[105.88664229400008,22.929764303000027],[105.90369551600011,22.925500997000157],[105.91320398000019,22.924389954000063],[105.94482995600012,22.927697246000047],[105.96121138500015,22.932399801000045],[105.97397546400012,22.939892884000173],[105.98999515800008,22.97061452300012],[105.99924524000019,22.975368754000115],[106.07758671000006,22.981027324000067],[106.13210534700008,22.975007019000103],[106.17003584900007,22.966015320000068],[106.2023852940001,22.946998393000015],[106.22300419100006,22.912375183],[106.22708663000017,22.875555726000087],[106.23401127200006,22.863851013000115],[106.25540531400011,22.854652609000098],[106.27659265200006,22.85103525800004],[106.29638472500012,22.85111277300014],[106.31566003400016,22.853799947000184],[106.45797692900011,22.888965759000044],[106.47373824100012,22.897104797000154],[106.47797570900016,22.919609884000167],[106.48779423100021,22.925423483000046],[106.50117842600017,22.92170278000013],[106.51693973800016,22.915424093000027],[106.56696252400016,22.903771057000156],[106.58169030800016,22.895270284000148],[106.59171553500008,22.88087839800012],[106.59915694200018,22.864987895000027],[106.6103707280001,22.852869771000126],[106.63274662300007,22.849614156000044],[106.63987797000006,22.853386536000173],[106.64793949400016,22.866977438000063],[106.65682784000015,22.86997467000016],[106.66747318500015,22.86752004000003],[106.67439782700015,22.861473897000067],[106.68514652500008,22.848218893000148],[106.7149121510001,22.82610137900015],[106.73103519700012,22.800108134000098],[106.73036340400013,22.797627665000118],[106.74509118700021,22.797188416],[106.76844893400018,22.799229635000145],[106.78984297700018,22.797188416],[106.7987313230001,22.784372660000102],[106.79149662300014,22.772125346000095],[106.75847538300016,22.754219462000105],[106.74664148000008,22.74434926300013],[106.73956180800022,22.726779277000063],[106.73553104700014,22.695411682000056],[106.7265910240002,22.677273255000113],[106.70509362800007,22.64611236600014],[106.69770389900006,22.630867818000112],[106.68018558800011,22.57944976800003],[106.66788659700015,22.56911448200013],[106.64633752500012,22.568804423000145],[106.63005944800008,22.580121562000116],[106.61951745600012,22.59732981400019],[106.6076318770001,22.609990540000055],[106.58799483200006,22.607768453000133],[106.57714278200008,22.595314433000155],[106.5687712000001,22.57459218300012],[106.54587854000013,22.472531230000087],[106.54138269100011,22.464263001000134],[106.53032393400011,22.449276836000152],[106.52691329000005,22.438269755000178],[106.52691329000005,22.427779440000123],[106.53302821800011,22.403444519000132],[106.5345097250001,22.39754872600012],[106.53652510600007,22.360548401000145],[106.5417961020001,22.34509714800008],[106.55533532700011,22.3319713340001],[106.57745284100011,22.3245816040001],[106.61729537000022,22.32277292900001],[106.63378015100008,22.30944041],[106.63967126500019,22.29667633100011],[106.66292565900018,22.223295797000063],[106.66054854300008,22.213425598000086],[106.65181522700017,22.205622457000075],[106.63967126500019,22.190894674000063],[106.64235843900022,22.17611521400015],[106.64866296500006,22.165056458000052],[106.65610437100005,22.155134583000134],[106.66132369000015,22.143559062000108],[106.66147871900014,22.13632436100012],[106.65837813400017,22.120097962000116],[106.65868819200008,22.111933085000103],[106.66132369000015,22.106558737000157],[106.67005700700004,22.096636861000047],[106.67217574100013,22.09250274700004],[106.67300256400003,22.06609609000007],[106.66788659700015,22.042686666000108],[106.6481978770001,21.99550608300008],[106.64814620000018,21.987031149000174],[106.64959314000006,21.977574362000027],[106.65310713700015,21.968892720000053],[106.65894657500021,21.962794901000095],[106.67460453300006,21.962174785000016],[106.68974572800019,21.97287180600013],[106.72235355700015,22.006978251000092],[106.72876143400012,22.008321839000146],[106.74255904200007,22.00387766600015],[106.7483468020001,21.99995025700018],[106.75614994400016,21.989511617000133],[106.76100752800008,21.98506744400005],[106.78152307100005,21.97504221600012],[106.79909305900011,21.972613423000055],[106.84053755700009,21.973595276000125],[106.86477380400007,21.968065898000035],[106.87686608900006,21.957317200000105],[106.88539270000015,21.943312887],[106.8988285730002,21.92775828000016],[106.92037764500017,21.91695790600012],[106.93774092600009,21.920006816000168],[106.95376062100016,21.928998515],[106.97122725400018,21.93581980400016],[106.99189782700009,21.93535471600013],[107.00936446200015,21.92744822200008],[107.02021651300018,21.91292714400005],[107.02114668800007,21.892256571000033],[107.0118449300002,21.875565084000087],[106.99753055800012,21.860837301000075],[106.9871435950001,21.844817607000138],[106.98910730000014,21.824250387000134],[107.00290490800009,21.810556132000116],[107.02373051000015,21.804096578000085],[107.06584680200008,21.795828349000132],[107.09483728100005,21.778981832000127],[107.17235192900014,21.71505808500008],[107.21214278200013,21.70523956300012],[107.24387211100006,21.71516143800001],[107.27265588400009,21.71831370100007],[107.30319665500011,21.688703105000016],[107.32965498900009,21.616046041000075],[107.33357556600018,21.612508760000065],[107.34815515200009,21.599354553000136],[107.3828817140002,21.61888824500015],[107.40996016500017,21.645398255000046],[107.42603153500008,21.652064514000145],[107.44592696200006,21.64694854700015],[107.45703739400007,21.631497294000084],[107.46101648000015,21.59635732000011],[107.47378055800013,21.590569560000134],[107.49119551600009,21.584110006000103],[107.5013240970002,21.581526184],[107.50985070800013,21.58178456700007],[107.518273967,21.587365621000075],[107.52654219600007,21.6032819630001],[107.53305342600007,21.608656311000075],[107.55098514800008,21.610826721000148],[107.59284305800006,21.605607402000047],[107.6132035730001,21.605607402000047],[107.67185632300007,21.6176480110001],[107.69025313300014,21.624727682000028],[107.72942386900009,21.65196116100004],[107.74482344600007,21.657542217000138],[107.76011967000012,21.658214010000123],[107.77789636300005,21.655991923000112],[107.81164107300006,21.64782704700012],[107.83236332200006,21.63935211200011],[107.83985640500012,21.629895325000135],[107.84445560700013,21.61749298100007],[107.85546268800012,21.60033640600001],[107.86771000200017,21.589225973000097],[107.89613204000008,21.569433899000032],[107.93096195500006,21.534242248000155],[107.94419112200015,21.530779928000115],[107.99122155000006,21.485663153000147],[107.96998131600017,21.475775458000143],[107.94857832100016,21.45498281500015],[107.92969811300011,21.442613023000106],[107.91602623800006,21.458400783000158],[107.91627037900005,21.46824778900016],[107.92123457100016,21.474798895000063],[107.92701256600006,21.47931549700003],[107.92969811300011,21.482855536],[107.9285587900001,21.490545966000024],[107.92603600400017,21.495917059000178],[107.92343183700004,21.499945380000142],[107.92221113400015,21.503078518000038],[107.91871178500006,21.517523505000085],[107.90967858200005,21.526516018],[107.89673912900005,21.531561591000028],[107.88192793100009,21.534084377000127],[107.88379967500012,21.52676015800013],[107.88266035200009,21.522528387000122],[107.87509199300003,21.513617255000085],[107.86841881600017,21.513617255000085],[107.86280358200011,21.53021881700012],[107.85596764400006,21.520941473000093],[107.84791100400005,21.49310944200012],[107.83594811300011,21.48834870000003],[107.82886803500006,21.494940497000083],[107.825938347,21.508978583000058],[107.82667076900006,21.526678778000143],[107.82056725400017,21.526678778000143],[107.81299889400012,21.520453192],[107.81299889400012,21.513617255000085],[107.8173934250001,21.509344794000167],[107.81893964900016,21.506252346000096],[107.82056725400017,21.49310944200012],[107.81299889400012,21.49310944200012],[107.80689537900004,21.506781317000062],[107.800059441,21.49933502800009],[107.7962345710001,21.51947663000011],[107.78345787900017,21.524318752000013],[107.76685631600012,21.52020905200005],[107.75220787900017,21.513617255000085],[107.75220787900017,21.506781317000062],[107.76832116000017,21.506903387000037],[107.78036543100009,21.503078518000038],[107.78858483200005,21.494452216000028],[107.79257246200004,21.480129299000126],[107.77890058700021,21.485663153000147],[107.7810978520001,21.47915273600016],[107.78394616000004,21.464911200000145],[107.78638756600016,21.458400783000158],[107.77564537900017,21.45856354400003],[107.76758873800011,21.455715236000074],[107.76181074300004,21.45075104400003],[107.758555535,21.444728908000016],[107.7652287120001,21.43854401200015],[107.74854576900006,21.41120026200018],[107.73031660200016,21.411810614000146],[107.72144616,21.410874742000047],[107.71737714900016,21.40745677300005],[107.7115177740001,21.398911851000108],[107.6980900400001,21.398382880000057],[107.68417402400021,21.40326569200012],[107.67652428499999,21.41120026200018],[107.66903730600015,21.41120026200018],[107.66602623800006,21.40680573100009],[107.66285241000017,21.403753973],[107.66285241000017,21.397528387000037],[107.66944420700005,21.38544342700014],[107.66342207100014,21.37807851800015],[107.6502384770001,21.376857815000122],[107.635020379,21.38324616100006],[107.6372990240001,21.37775299700003],[107.6372176440001,21.375433661000056],[107.63778730600009,21.373724677000055],[107.642344597,21.37026601800015],[107.642344597,21.362779039000188],[107.6341251960001,21.358587958000058],[107.6311955090001,21.354478257000107],[107.63388105600009,21.349351304],[107.642344597,21.342271226000133],[107.63575280000006,21.341376044000057],[107.62134850400017,21.335516669000086],[107.62533613400014,21.33372630400011],[107.62671959700006,21.333889065000065],[107.627207879,21.333156643000123],[107.62875410200016,21.328680731000176],[107.6241154310002,21.330715236000017],[107.60816491000006,21.335516669000086],[107.60352623800011,21.310492255],[107.5992130870001,21.298773505],[107.59058678500017,21.293890692000115],[107.5737410820001,21.294745184000032],[107.56226647200006,21.298041083000058],[107.55404707100016,21.30451080900015],[107.54688561300011,21.315008856000034],[107.54257246200021,21.326564846000068],[107.5403751960001,21.337347723000065],[107.53516686300011,21.345363674],[107.5223087900001,21.348537502000067],[107.52198326900006,21.344305731000148],[107.52597089900014,21.33441803600006],[107.52881920700011,21.32322825700014],[107.52515709700006,21.315008856000034],[107.52515709700006,21.307562567000062],[107.5374455090001,21.301947333000054],[107.52662194100017,21.298773505],[107.50448652400021,21.298407294000086],[107.484141472,21.30133698100009],[107.48178144600016,21.30133698100009],[107.47217858200011,21.303697007000054],[107.46168053500006,21.309271552000084],[107.45679772200006,21.318345445000162],[107.450938347,21.320502020000063],[107.41529381600006,21.328680731000176],[107.40902754000008,21.315008856000034],[107.41602623800011,21.308539130000142],[107.443125847,21.293890692000115],[107.443125847,21.287665106000148],[107.42359459700006,21.279608466000028],[107.39161217500006,21.28042226800015],[107.36744225400005,21.27338288000008],[107.36744225400005,21.26658763200005],[107.37330162900017,21.258978583000026],[107.37086022200006,21.253363348],[107.3648380870002,21.247626044000025],[107.36060631599999,21.239243882000082],[107.3588973320001,21.203070380000057],[107.35434004000015,21.19147370000003],[107.36207116000017,21.185614325000085],[107.3706974620001,21.181626695000105],[107.379649285,21.180975653000147],[107.38843834700018,21.184637762000122],[107.38233483200011,21.139797268000095],[107.37549889400005,21.11615631700006],[107.36060631599999,21.102118231000116],[107.36630293100009,21.09349192900011],[107.36744225400005,21.087876695000105],[107.36353600400005,21.084418036],[107.35434004000015,21.082220770000035],[107.35824629000015,21.067328192000062],[107.36036217500005,21.052435614],[107.36434980600004,21.04035065300009],[107.37427819100004,21.033840236000017],[107.37427819100004,21.027573960000055],[107.3576766290001,21.01520416900003],[107.3477482430001,21.00995514500012],[107.3338322270001,21.00584544500019],[107.31104576900006,21.005275783000016],[107.2923283210001,21.00462474200016],[107.27955162900017,20.99970123900003],[107.2664494150001,21.004299221000153],[107.24529056100019,21.003078518000123],[107.22413170700011,20.99823639500015],[107.21119225400011,20.99225495000003],[107.21631920700011,20.990220445000105],[107.21957441500015,20.988226630000057],[107.22380618600006,20.986639716000028],[107.23113040500017,20.98602936400009],[107.23113040500017,20.97919342700005],[107.21485436300006,20.975246486000074],[107.19336998800011,20.952704169000086],[107.19703209700016,20.93764883000007],[107.18189537900017,20.93675364799999],[107.17090905000012,20.933579820000105],[107.16089928500006,20.932440497000172],[107.14918053500006,20.93764883000007],[107.14918053500006,20.93081289300015],[107.1337996750001,20.944810289000102],[107.08497155000012,20.951402085],[107.06609134200008,20.958726304],[107.06609134200008,20.964911200000145],[107.09522545700005,21.000474351000136],[107.14918053500006,21.033840236000017],[107.14918053500006,21.040594794000143],[107.13599694100016,21.039740302000055],[107.12305748800011,21.037258205000015],[107.11117597700016,21.03310781500009],[107.101328972,21.027573960000055],[107.09685306100008,21.02106354400017],[107.09538821700019,21.014064846000096],[107.09245853000006,21.008246161000116],[107.08375084700018,21.00584544500019],[107.07976321700018,21.009100653000033],[107.08106530000012,21.016302802000084],[107.08472741000017,21.02366771000005],[107.08716881600017,21.027573960000055],[107.082774285,21.030178127000156],[107.08236738400008,21.03099192900008],[107.08033287900015,21.033840236000017],[107.07227623800006,21.017075914000188],[107.06324303500006,21.009344794000086],[107.05762780000012,21.01386139500012],[107.059825066,21.033840236000017],[107.052989129,21.033840236000017],[107.05347741000017,21.02301666900003],[107.052500847,21.013657945000162],[107.05014082100016,21.005926825000174],[107.04615319100017,20.99970123900003],[107.04688561300011,21.013983466000113],[107.04460696700002,21.025091864000117],[107.0379337900001,21.032171942],[107.02564537900005,21.033840236000017],[107.02564537900005,21.027573960000055],[107.0291447270001,21.024562893000066],[107.03467858200005,21.01780833500011],[107.03931725400017,21.013373114000146],[107.03614342500012,21.01300690300003],[107.02564537900005,21.013373114000146],[107.03931725400017,20.99970123900003],[107.02515709700005,20.999823309000178],[107.01563561300006,21.004339911000145],[106.99781334700018,21.020168361000074],[106.9954533210001,21.006415106000148],[107.02084394600014,20.98639557500009],[107.02564537900005,20.972357489000142],[107.01677493600019,20.95766836100013],[107.00098717500005,20.951076565000065],[106.98210696700019,20.949937242000132],[106.96363366000017,20.95123932500003],[106.946950717,20.954291083000115],[106.93189537900005,20.959418036000116],[106.91920006600017,20.965765692000062],[106.90894616000006,20.972357489000142],[106.88461347700016,20.993231512000094],[106.87338300900015,20.997137762000094],[106.86744225400005,20.98602936400009],[106.86353600400005,20.991603908000073],[106.86019941500008,20.99310944200012],[106.85377037899998,20.99225495000003],[106.88282311300006,20.960516669000086],[106.895274285,20.95123932500003],[106.9163517590001,20.94110748900006],[106.9220483730002,20.93764883000007],[106.92611738400015,20.930975653000118],[106.92823326900006,20.92275625200001],[106.93238365999999,20.915187893000066],[106.94312584700006,20.910305080000015],[106.94312584700006,20.903509833000086],[106.91724694099999,20.904038804000052],[106.9017033210001,20.90786367400007],[106.8914494150001,20.918036200000117],[106.88160241000017,20.93764883000007],[106.87427819100017,20.93764883000007],[106.87549889400006,20.92869700700005],[106.87842858200011,20.921210028000175],[106.88233483200011,20.915106512000094],[106.88795006600012,20.910305080000015],[106.86793053500004,20.882717190000093],[106.85987389400012,20.889390367000047],[106.85222415500007,20.909979559000178],[106.83326256600006,20.92397695500013],[106.83668053500017,20.92914459800012],[106.83545983200005,20.930609442],[106.83326256600006,20.93764883000007],[106.82642662900005,20.93764883000007],[106.80600019600016,20.93207428600006],[106.78321373800004,20.942572333000115],[106.77247155000012,20.957424221],[106.78882897200006,20.964911200000145],[106.80689537900015,20.966009833000026],[106.81690514400006,20.9694684920001],[106.8206486340001,20.976019598],[106.819590691,20.98602936400009],[106.8128361340001,20.99062734600001],[106.80241946700019,20.99518463700015],[106.79867597700016,21.00193919500019],[106.81218509200002,21.013373114000146],[106.80567467500006,21.01984284100014],[106.79810631600017,21.024807033000016],[106.78931725400004,21.027533270000063],[106.778575066,21.027573960000055],[106.78077233200011,21.02411530200005],[106.78321373800004,21.01666901200018],[106.78541100400005,21.013373114000146],[106.76238040500007,21.015326239],[106.74610436300011,21.024562893000066],[106.73080488400015,21.029852606000034],[106.7102970710001,21.020168361000074],[106.7102970710001,21.013373114000146],[106.71778405000005,21.013373114000146],[106.71778405000005,21.00584544500019],[106.68034915500007,21.020453192],[106.65870201900006,21.024847723],[106.64210045700011,21.020168361000074],[106.6507267590001,21.018011786000088],[106.65267988400015,21.017523505],[106.68295332100016,21.00584544500019],[106.68295332100016,20.99970123900003],[106.67628014400006,21.001898505],[106.65577233200005,21.00584544500019],[106.65577233200005,20.99970123900003],[106.66553795700005,20.990545966000028],[106.66911868600002,20.97996653900016],[106.67107181100019,20.969061591000113],[106.67628014400006,20.958726304],[106.68669681100008,20.952704169000086],[106.71192467500012,20.95156484600015],[106.73373457100008,20.94220612200003],[106.74610436300011,20.942328192],[106.75513756600006,20.93854401200015],[106.75879967500006,20.920843817000062],[106.7566837900001,20.907904364000057],[106.74724368600008,20.89472077],[106.7444767590001,20.88300202000012],[106.73829186300006,20.88300202000012],[106.71778405000005,20.903509833000086],[106.699961785,20.882757880000085],[106.70753014400005,20.870754299000154],[106.72689863400014,20.86139557500003],[106.7444767590001,20.848863023000106],[106.75294030000005,20.82575104400017],[106.74919681100019,20.804348049000037],[106.73658287900005,20.79498932500009],[106.71778405000005,20.807847398000106],[106.72461998800011,20.790025132000135],[106.7384546230002,20.76972077000012],[106.75562584699999,20.751206773000106],[106.77247155000012,20.738959052000055],[106.778575066,20.746405341000024],[106.78882897200006,20.73053620000009],[106.80591881600017,20.677557684000146],[106.78516686300006,20.692287502000156],[106.77613366000017,20.701117255000113],[106.77247155000012,20.707953192000115],[106.76710045700005,20.713446356000148],[106.75562584699999,20.709295966000028],[106.74488366,20.701971747000115],[106.74146569100012,20.697984117000047],[106.73267662900005,20.696600653000147],[106.72559655000006,20.69375234600001],[106.71697024800008,20.691310940000093],[106.70411217500006,20.69114817900011],[106.67554772200005,20.698635158000073],[106.66260826900006,20.697984117000047],[106.66260826900006,20.69114817900011],[106.68751061300006,20.681341864],[106.702891472,20.671576239000146],[106.70313561300006,20.659654039000102],[106.68295332100016,20.643377997000172],[106.66968834699999,20.63646067900008],[106.654063347,20.630804755],[106.63754316500015,20.628078518],[106.6209416020001,20.62978750200001],[106.61231530000006,20.635484117000104],[106.59815514400006,20.655096747000144],[106.58676191500008,20.663275458000058],[106.59262129000014,20.64809804900007],[106.5935978520001,20.646714585],[106.59937584700018,20.63841380400011],[106.61426842500012,20.62230052300005],[106.61939537900005,20.618597723],[106.62403405000005,20.61880117400007],[106.62720787900004,20.616603908000073],[106.62842858200004,20.605861721000153],[106.62745201900006,20.60008372599999],[106.62476647200012,20.594631252000156],[106.62134850400011,20.59039948100003],[106.60474694100004,20.584418036000113],[106.58253014400006,20.56517161700016],[106.51856530000006,20.540961005000085],[106.53614342500012,20.531642971000124],[106.55062910200016,20.532416083000058],[106.5799259770001,20.547186591000028],[106.5799259770001,20.540961005000085],[106.5677189460001,20.524888414000188],[106.57488040500007,20.510728257000082],[106.5844832690001,20.496039130000085],[106.5799259770001,20.478257554],[106.57374108200011,20.477118231000148],[106.54542076900005,20.467596747000144],[106.54249108200004,20.465277411],[106.5369572270001,20.462062893000123],[106.52979576900006,20.45441315300009],[106.523203972,20.44521719000012],[106.51856530000006,20.43732330900015],[106.52475019600014,20.43732330900015],[106.53809655000005,20.446234442],[106.56169681100019,20.45506419500005],[106.58423912900015,20.457831122000112],[106.59424889400006,20.448187567000147],[106.590586785,20.404730536],[106.5841577480002,20.381822007000025],[106.57309004000015,20.36847565300009],[106.56804446700002,20.378078518000066],[106.56641686300011,20.38271719],[106.56674238400015,20.378892320000162],[106.56568444100017,20.376450914000046],[106.5633244150001,20.375474351000076],[106.55958092500006,20.375921942000062],[106.57764733200011,20.358954169000086],[106.57977615200011,20.350215994000063],[106.5837658560001,20.337974617],[106.58548873800007,20.32229206900014],[106.58847454900015,20.303275170000077],[106.59259316400014,20.275410718],[106.58165895500022,20.264177384000117],[106.55958092500006,20.286525783000158],[106.54997806100019,20.29897695500007],[106.5369572270001,20.309149481000034],[106.52165774800008,20.31346263200011],[106.50440514400006,20.308254299000126],[106.49805748800011,20.308254299000126],[106.50294030000012,20.30052317900011],[106.50489342500005,20.29743073100003],[106.51295006600017,20.29441966400013],[106.52051842500012,20.298407294000114],[106.52475019600014,20.308254299000126],[106.54851321700006,20.291449286000113],[106.55274498800004,20.286525783000158],[106.5560001960001,20.277736721000093],[106.56630784100005,20.26107734600005],[106.5723250560001,20.24667693500005],[106.56961489300014,20.231993895000116],[106.55426760200012,20.224653831000023],[106.54102661100009,20.226066152],[106.5292912510001,20.222393463000156],[106.5049146170002,20.21702498600014],[106.4731551440001,20.21515534100017],[106.46021569100016,20.21198151200009],[106.39503014400006,20.20457591400013],[106.39503014400006,20.21198151200009],[106.4018660820001,20.21198151200009],[106.4018660820001,20.218207098000065],[106.39470462300002,20.217515367000132],[106.39014733200011,20.216294664000102],[106.3807072270001,20.21198151200009],[106.3807072270001,20.20457591400013],[106.387950066,20.197495835000055],[106.38111412900011,20.192084052000112],[106.36019941500014,20.18406810100008],[106.35328209700006,20.176825262000037],[106.34034264400012,20.149969794000143],[106.30551191500008,20.108587958000143],[106.28370201900006,20.09463125200007],[106.25928795700011,20.061265367000185],[106.2361759770001,20.048000393000063],[106.21192467500006,20.02118561400006],[106.19703209700016,20.012762762000122],[106.2063908210001,20.03497955900015],[106.21070397200006,20.04010651200018],[106.20329837300002,20.047512111000074],[106.19597415500002,20.03343333500011],[106.18409264400006,20.003607489000114],[106.17603600400005,19.99233633000013],[106.16089928500006,19.984076239000057],[106.12403405000006,19.975002346000153],[106.10710696700019,19.96499258000007],[106.1014103520001,19.979966539000102],[106.10450280000012,19.99591705900012],[106.11085045700005,20.013413804000052],[106.11451256600017,20.03327057500014],[106.10710696700019,20.03327057500014],[106.10401451900012,20.01723867400007],[106.08887780000012,19.973863023000106],[106.08350670700005,19.96499258000007],[106.06885826900006,19.968491929000052],[106.05274498800006,19.977280992000132],[106.03907311300004,19.98843008000013],[106.03191165500019,19.999172268000066],[106.02515709700016,19.999172268000066],[106.019786004,19.986029364],[106.00831139400006,19.973456122000115],[105.96436608200005,19.935288804000052],[105.95557701900005,19.925482489000032],[105.94947350400017,19.910345770000035],[105.94947350400017,19.900824286000116],[105.95655358200005,19.885199286000113],[105.95679772200016,19.87563711100013],[105.93580162900005,19.848293361000074],[105.93213951900012,19.833441473],[105.93230228000007,19.805405992000104],[105.92888431100008,19.793646552000112],[105.92579186300006,19.797430731000063],[105.91529381600017,19.80731842700005],[105.90894616000017,19.796861070000162],[105.89470462300008,19.787298895],[105.86744225400017,19.77317942900005],[105.87370853000013,19.765692450000085],[105.88697350400005,19.771633205000015],[105.91553795700005,19.77448151200015],[105.92888431100008,19.78001536700016],[105.92335045700005,19.76679108300014],[105.90544681100006,19.743801174000154],[105.90162194100006,19.72821686400006],[105.89527428500006,19.72134023600016],[105.881114129,19.722154039000156],[105.86695397200018,19.72109609600001],[105.86060631600004,19.707993882000054],[105.85596764400012,19.691636460000108],[105.83350670700011,19.658148505000085],[105.82593834700018,19.64223867400007],[105.8240666020001,19.62661367400007],[105.82390384200002,19.598944403000175],[105.81902103000006,19.587591864],[105.81755618600019,19.610012111000017],[105.80388431100006,19.613023179000106],[105.7908634770001,19.60346100500014],[105.79175866000017,19.587591864],[105.79574629000014,19.594549872000087],[105.80298912900017,19.602932033000158],[105.805430535,19.608710028000033],[105.81055748800006,19.599595445000134],[105.81316165500002,19.58974844],[105.8137313160001,19.57904694200009],[105.81470787900015,19.574408270000063],[105.81902103000006,19.57391998900006],[105.81934655000012,19.536688544000086],[105.80811608200011,19.460760809000146],[105.81275475400005,19.423163153000147],[105.7985945970001,19.430568752000127],[105.78492272200016,19.40326569200006],[105.77125084700006,19.409491278000033],[105.77125084700006,19.40326569200006],[105.7825626960001,19.394354559000035],[105.786875847,19.383042710000055],[105.79175866000017,19.354885158000158],[105.81006920700005,19.321478583],[105.81275475400005,19.30703359600012],[105.79175866000017,19.320705471000068],[105.794200066,19.310939846000124],[105.7985945970001,19.299627997000144],[105.805918816,19.302150783000073],[105.81080162900017,19.299627997000144],[105.80876712300002,19.280178127000156],[105.80624433700021,19.274318752000013],[105.805430535,19.272284247000172],[105.79753665500007,19.26732005400011],[105.78858483200011,19.266831773000046],[105.78101647200018,19.26487864799999],[105.7723087900001,19.23598867400007],[105.75953209700005,19.235337632000107],[105.74577884200014,19.23725006700009],[105.74341881600017,19.231919664000102],[105.73121178500011,19.170233466000084],[105.7298283210001,19.133856512000122],[105.73707116000006,19.10846588700009],[105.7117619150001,19.09662506700012],[105.70199629000014,19.09048086100013],[105.69556725400005,19.081122137000122],[105.66830488400015,19.08954498900006],[105.643809441,19.06537506700006],[105.62484785200009,19.028469143],[105.61426842500005,18.99860260600012],[105.61329186300006,18.985541083000143],[105.61866295700004,18.97630442900008],[105.62110436300006,18.967840887000037],[105.62224368600019,18.954535223],[105.62964928500011,18.92230866100006],[105.63477623800011,18.909816799000065],[105.6482853520001,18.892726955000015],[105.66993248800006,18.874945380000113],[105.69450931100019,18.860785223],[105.71664472700016,18.854559637000065],[105.71664472700016,18.848334052],[105.70289147200006,18.83413320500007],[105.69874108200011,18.843003648000106],[105.69288170700005,18.849554755000028],[105.6849064460001,18.853461005],[105.67505944100017,18.854559637000065],[105.685801629,18.831284898000135],[105.68873131600004,18.826646226000108],[105.69532311300011,18.82469310100005],[105.71265709700018,18.82632070500007],[105.72006269600016,18.823553778000033],[105.74097741000006,18.801581122000115],[105.75196373800011,18.786322333000143],[105.75757897200018,18.772040106000063],[105.74268639400006,18.730780341000084],[105.7470809250001,18.724269924000012],[105.75611412900005,18.71596914300012],[105.75766035200014,18.696966864000114],[105.75473066500015,18.676255601000108],[105.75074303500017,18.662787177000112],[105.77003014400012,18.671576239],[105.76986738400015,18.695054429000052],[105.76677493600008,18.755601304000052],[105.76441491,18.758978583000058],[105.78345787899998,18.747259833000086],[105.78972415500007,18.718736070000162],[105.7908634770001,18.689683335000026],[105.79517662900011,18.676459052000055],[105.802012566,18.665432033000016],[105.82593834700018,18.59389883000007],[105.87924238400015,18.510931708000086],[105.91529381600017,18.473089911000116],[105.94947350400017,18.471014716000113],[105.95215905000006,18.452378648000106],[105.9588322270001,18.432562567],[105.96778405000006,18.41474030200014],[105.97730553500006,18.402085679000052],[106.00049889400006,18.385402736000017],[106.00806725400005,18.37848541900003],[106.0457462900001,18.33226146000011],[106.09815514400006,18.290025132],[106.11011803499999,18.27553945500013],[106.11215254000014,18.262884833000086],[106.09343509200008,18.25873444200012],[106.10328209700018,18.251532294000114],[106.12012780000005,18.254828192000147],[106.14177493600019,18.26178620000003],[106.16578209699999,18.265570380000057],[106.18116295700005,18.259711005000113],[106.233653191,18.220851955000015],[106.2405705090001,18.21710846600017],[106.26221764400012,18.209458726000133],[106.2708439460001,18.20408763199999],[106.29883873800006,18.169338283000044],[106.3322860040001,18.145209052000112],[106.34603925900008,18.13271719],[106.35401451900006,18.114691473000065],[106.34669030000006,18.114691473000065],[106.33692467500012,18.120672919000086],[106.3240666020001,18.1180687520001],[106.31251061300004,18.110174872000115],[106.30632571700019,18.100490627000156],[106.31934655000006,18.094224351000108],[106.32374108200005,18.09735748900009],[106.327403191,18.09878164300015],[106.34034264400012,18.100490627000156],[106.33448326900006,18.088609117000104],[106.3364363940001,18.079006252000127],[106.34669030000006,18.059475002000156],[106.34693444100012,18.071844794000086],[106.34986412900005,18.083644924000154],[106.35450280000006,18.093654690000122],[106.36019941500014,18.100490627000156],[106.37077884200018,18.105617580000068],[106.3772892590001,18.103461005000085],[106.38412519600008,18.09983958500011],[106.39503014400006,18.100490627000156],[106.40349368600017,18.106187242000047],[106.42237389400006,18.128363348],[106.43482506600016,18.123521226000136],[106.43336022200012,18.11326732000019],[106.42237389400006,18.094224351000108],[106.4277449880001,18.07290273600013],[106.43897545700011,18.051988023000163],[106.51856530000006,17.957017320000077],[106.52475019600014,17.949611721000068],[106.52475019600014,17.943426825000117],[106.50407962300001,17.93065013200005],[106.48438561300011,17.915472723000065],[106.47429446700002,17.902899481000176],[106.46607506600006,17.89020416900003],[106.45508873800006,17.881822007000054],[106.43604576900006,17.88198476800012],[106.43604576900006,17.874497789000074],[106.44703209700006,17.872137762000094],[106.4510197270001,17.86570872599999],[106.44947350400017,17.856634833],[106.44288170700011,17.846584377000013],[106.45183353000002,17.828192450000174],[106.46070397200016,17.799383856000034],[106.47006269600008,17.7481957050001],[106.47510826900006,17.737005927000084],[106.49537194100006,17.717962958000083],[106.49805748800011,17.71063873900009],[106.48951256599999,17.70258209800015],[106.47852623800006,17.703517971000124],[106.44874108200004,17.71600983300014],[106.43555748800011,17.73944733300011],[106.42579186300006,17.744777736000074],[106.41065514400006,17.747015692000062],[106.37452233200011,17.765285549000126],[106.30665123800011,17.771918036],[106.29200280000012,17.77826569200012],[106.28516686300011,17.77212148600013],[106.29948978000019,17.762274481000034],[106.32276451900012,17.753485419000143],[106.34693444100012,17.747219143],[106.3806258470001,17.74339427300019],[106.42920983200005,17.73114655200014],[106.42920983200005,17.72370026200015],[106.42237389400006,17.72370026200015],[106.40259850400005,17.731512762000065],[106.38306725400005,17.719183661],[106.37964928500004,17.69879791900003],[106.40870201900012,17.682766018000123],[106.40300540500002,17.694810289000046],[106.40023847700016,17.699164130000142],[106.39503014400006,17.70319245000009],[106.41749108200005,17.71295807500006],[106.44996178500016,17.708644924000126],[106.4822697270001,17.696437893000066],[106.50440514400006,17.682766018000123],[106.51490319100006,17.669907945000105],[106.53907311300006,17.62750885600012],[106.56592858200011,17.598049221000124],[106.6147567070001,17.518703518],[106.62598717500012,17.486639716000028],[106.6346134770001,17.47040436400009],[106.63843834700006,17.468898830000043],[106.65821373800006,17.453762111000046],[106.65919030000005,17.449937242000104],[106.66358483200011,17.447251695000134],[106.67628014400006,17.429510809000035],[106.763926629,17.335516669000086],[106.9466251960001,17.205389716000113],[107.007497592,17.16221751500011],[107.11182701900006,17.08828359600001],[107.12720787900005,17.05975983300003],[107.1212671230002,17.018540757000054],[107.13257897200018,17.009833075000145],[107.18653405000012,16.93439362200003],[107.20069420700011,16.926255601000104],[107.20386803500017,16.919256903000033],[107.20069420700011,16.914292710000083],[107.19361412900017,16.91107819200012],[107.18653405000012,16.90656159100014],[107.18336022200006,16.89813873900003],[107.17741946700019,16.89394765800007],[107.14177493600008,16.874579169000143],[107.14177493600008,16.867743231000063],[107.16724694100017,16.867621161000084],[107.17896569100006,16.869533596000124],[107.19019616000006,16.874579169000143],[107.19141686300006,16.879217841000084],[107.18995201900012,16.88617584800009],[107.1894637380001,16.892320054000052],[107.20753014400006,16.904974677000112],[107.21648196700006,16.907945054000134],[107.22339928500017,16.901353257000082],[107.22934004000008,16.89223867400007],[107.2345483730002,16.887640692000147],[107.24927819100017,16.880031643],[107.37867272200006,16.773382880000085],[107.41163170700011,16.750026760000182],[107.49781334700006,16.68903229400011],[107.60466556100002,16.595689195000105],[107.63526451900006,16.587225653000147],[107.63526451900006,16.579779364000085],[107.59603925900015,16.590521552],[107.47364342500006,16.653143622000115],[107.44336998800006,16.648016669000086],[107.51978600400017,16.60643138200011],[107.54395592500006,16.60057200700008],[107.55494225400005,16.59662506700009],[107.56397545700005,16.582709052000112],[107.5745548840001,16.580023505000113],[107.586192254,16.581691799000126],[107.59424889400006,16.587225653000147],[107.60157311300006,16.576564846000124],[107.61109459700006,16.56928131700012],[107.63526451900006,16.55927155200014],[107.63526451900006,16.55182526200015],[107.62452233200005,16.557114976000136],[107.62159264400012,16.55927155200014],[107.61459394600016,16.55927155200014],[107.612478061,16.555894273000106],[107.61085045700011,16.552639065000065],[107.60840905000005,16.544989325000028],[107.62305748800006,16.54441966400016],[107.63672936300011,16.54588450700014],[107.6630965500001,16.55182526200015],[107.65699303500006,16.545477606000034],[107.65259850400004,16.538723049000097],[107.64975019600008,16.530910549000097],[107.64893639400005,16.521429755],[107.65259850400004,16.522447007000054],[107.65984134200008,16.513128973],[107.66529381600012,16.50185781500012],[107.6630965500001,16.497219143000095],[107.67286217500006,16.497259833000086],[107.67798912900017,16.50136953300013],[107.68165123800011,16.507717190000065],[107.68669681100008,16.514593817000062],[107.69711347700016,16.52008698100009],[107.70313561300006,16.514390367000104],[107.70720462300018,16.504543361000103],[107.71143639400012,16.497219143000095],[107.74952233200011,16.47223541900017],[107.75879967500006,16.463080145],[107.78174889400006,16.42755768400012],[107.799978061,16.41571686400006],[107.82162519600008,16.387518622000172],[107.8411564460001,16.37978750200007],[107.83887780000012,16.37685781500015],[107.83350670700004,16.374212958000058],[107.82691491000011,16.373683986000074],[107.8204858730002,16.37653229400003],[107.81421959700006,16.38117096600014],[107.80689537900004,16.385443427000055],[107.79656009200014,16.387355861000017],[107.79444420700011,16.379217841000113],[107.80713951900006,16.32273997600008],[107.81226647200016,16.313177802],[107.82406660200016,16.304836330000015],[107.84815514400006,16.291693427000055],[107.8549910820001,16.291693427000055],[107.86402428499999,16.297796942000147],[107.87256920700005,16.295884507],[107.87891686300004,16.28856028900016],[107.8821720710001,16.278062242000104],[107.89136803500017,16.284165757],[107.89649498800011,16.278062242000104],[107.9331160820001,16.30540599200016],[107.93751061300011,16.312079169000057],[107.93091881600004,16.343410549000097],[107.92994225400017,16.353216864000114],[107.9451603520001,16.356838283000073],[107.99040774800008,16.32477448100009],[108.01197350400017,16.319037177000112],[108.02051842500012,16.32518138200011],[108.025157097,16.334377346000064],[108.03101647200018,16.342718817000147],[108.04297936300011,16.346380927],[108.0437931650001,16.339911200000085],[108.05347741000017,16.30540599200016],[108.06177819100006,16.28823476800015],[108.09449303500017,16.23651764500012],[108.06592858200011,16.25722890800013],[108.052012566,16.26211172100001],[108.04607181100019,16.247381903000118],[108.05396569100006,16.235988674000154],[108.07195071700018,16.228949286000088],[108.09066816500015,16.22687409100014],[108.10132897200018,16.23029205900015],[108.10816491,16.23029205900015],[108.1263126960001,16.222479559000178],[108.15121504000015,16.21698639500015],[108.17872155000006,16.214748440000065],[108.20435631600004,16.216701565],[108.20012454500014,16.211574611000103],[108.18921959700005,16.19847239800013],[108.1544702480002,16.17084381700012],[108.14226321700014,16.148382880000113],[108.14283287900017,16.11937083500014],[108.15992272200006,16.103745835000055],[108.18197675900014,16.091376044000114],[108.19752037900005,16.072007554],[108.21306399800002,16.08681875200007],[108.22095787899998,16.09162018400015],[108.228282097,16.089748440000093],[108.23666425900008,16.055121161],[108.23853600400005,16.05219147300009],[108.23324629000015,16.037095445000162],[108.22291100400017,16.022894598000065],[108.21013431100019,16.01129791900014],[108.19752037900005,16.003729559000092],[108.21631920700005,16.00946686400006],[108.23462975400004,16.019354559000178],[108.24984785200009,16.023260809000178],[108.25896243600017,16.010565497000115],[108.24919681100006,16.06191640800013],[108.24195397200006,16.07575104400003],[108.24089603000017,16.090521552000112],[108.24773196700019,16.10871002800009],[108.247325066,16.12323639500015],[108.224864129,16.127264716000113],[108.224864129,16.134711005],[108.2327580090001,16.14032623900009],[108.2386173840001,16.14671458500011],[108.24268639400006,16.153957424000126],[108.24537194100006,16.162014065000065],[108.25269616000017,16.15892161700016],[108.25416100400005,16.156642971],[108.25489342500006,16.156968492000132],[108.25896243600017,16.162014065000065],[108.26579837300001,16.162014065000065],[108.27458743600019,16.15346914300015],[108.28630618600019,16.144517320000105],[108.30054772200016,16.13751862200003],[108.31739342500005,16.134711005],[108.31820722700009,16.13955312700007],[108.32447350400005,16.148871161000027],[108.33139082100016,16.15534088700012],[108.33472741000017,16.151516018],[108.33659915500007,16.147772528000147],[108.348399285,16.134711005],[108.33716881599999,16.125392971000124],[108.32618248800006,16.119045315],[108.31763756600006,16.111761786],[108.314219597,16.099920966000052],[108.30494225400017,16.107163804000052],[108.27955162900005,16.10203685100005],[108.26579837300001,16.107407945000105],[108.25855553499999,16.07099030200014],[108.26531009200002,16.03156159100014],[108.27914472700016,15.99567291900014],[108.2823185560002,15.990057684000147],[108.29371178500017,15.969631252000099],[108.30591881600004,15.955226955000043],[108.35865319100004,15.91543203300013],[108.37427819100004,15.908270575000088],[108.38819420700011,15.898382880000085],[108.39616946700006,15.880845445000132],[108.38526451900005,15.878892320000189],[108.37712649800008,15.874212958000085],[108.3751733730002,15.869452216000168],[108.38249759200014,15.86717357000019],[108.38835696700006,15.87055084800012],[108.39535566500015,15.87726471600017],[108.40267988400014,15.882391669000171],[108.40992272200018,15.880845445000132],[108.41480553500006,15.86741771000014],[108.424082879,15.805731512000122],[108.45533287900017,15.747015692],[108.61866295700005,15.529242255000026],[108.64625084700018,15.513861395000061],[108.68344160200016,15.517767645000063],[108.67448978000007,15.489406643000123],[108.667735222,15.482652085],[108.65626061300004,15.496649481000146],[108.64454186300006,15.493109442000062],[108.62940514400006,15.486517645],[108.62094160200016,15.474758205000013],[108.62891686300011,15.455715236000017],[108.65251712300002,15.438788153000033],[108.66846764400006,15.447821356000146],[108.69092858200005,15.49042389500009],[108.6971134770001,15.49042389500009],[108.70264733200005,15.469916083000143],[108.70394941500014,15.44513580900015],[108.70948326900005,15.43768952],[108.7334090500001,15.41791413000007],[108.73878014400006,15.411322333000099],[108.7435001960001,15.407294012000122],[108.7615666020001,15.396551825000115],[108.76596113400008,15.393866278000132],[108.77295983200005,15.38678620000016],[108.77458743600019,15.375067450000174],[108.7732853520001,15.363185940000134],[108.7736108730002,15.351263739000089],[108.77979576900006,15.339585679000095],[108.77613366000004,15.334458726000078],[108.77475019600014,15.331366278000104],[108.77295983200005,15.325344143000095],[108.77979576900006,15.325344143000095],[108.78126061300006,15.33100006700009],[108.78711998800006,15.34585195500014],[108.79411868600008,15.344671942000117],[108.80225670700005,15.344305731000107],[108.82129967500006,15.34585195500014],[108.82129967500006,15.352687893000152],[108.79623457100016,15.356390692000103],[108.78858483200005,15.374172268000095],[108.79558353000002,15.395086981000148],[108.81446373800006,15.407904364000087],[108.81446373800006,15.414740302000098],[108.80844160200016,15.417669989000117],[108.80567467500005,15.420558986000144],[108.80014082100014,15.42902252800009],[108.80795332100016,15.425238348000079],[108.814707879,15.423570054000066],[108.82081139400005,15.42475006700009],[108.82748457100016,15.42902252800009],[108.83269290500002,15.413885809000107],[108.83904056100008,15.374335028000145],[108.84546959700018,15.36627838700012],[108.85328209700018,15.362616278000159],[108.87745201900006,15.343980210000081],[108.88282311300006,15.336167710000083],[108.88103274800008,15.299139716000154],[108.88656660200016,15.28620026200015],[108.91211998800006,15.263495184000105],[108.92432701900012,15.256415106000132],[108.93213951900012,15.253973700000103],[108.94548587300002,15.252915757000052],[108.95167076900012,15.250230210000085],[108.94361412900017,15.23688385600016],[108.93295332100016,15.227199611000103],[108.9197697270001,15.222113348000079],[108.90333092500006,15.222886460000096],[108.90333092500006,15.215480861000117],[108.91334069100017,15.216376044000114],[108.91960696700014,15.215236721000084],[108.92286217500006,15.210760809000107],[108.92432701900012,15.201808986000087],[108.91000410200016,15.209295966000141],[108.90544681100019,15.197943427000084],[108.90235436300011,15.168646552000054],[108.89771569100016,15.153998114000148],[108.88160240999999,15.160630601000108],[108.86817467500012,15.15965403900013],[108.86247806100008,15.152492580000098],[108.86980228000007,15.140366929000093],[108.87598717500012,15.140366929000093],[108.88412519600016,15.143947658000158],[108.89226321700006,15.14134349200016],[108.89747155000006,15.133205471000155],[108.89771569100016,15.119859117000145],[108.90333092500006,15.119859117000145],[108.90381920700005,15.128159898000119],[108.90528405000006,15.1343447940001],[108.91000410200016,15.14663320500014],[108.919200066,15.0578067080001],[108.94263756600017,14.979559637000106],[109.00562584699999,14.838771877000097],[108.98552493600006,14.836615302000096],[108.99024498800004,14.830633856000176],[109.01246178500006,14.821966864000087],[109.01677493600002,14.81305573100015],[109.03695722700016,14.783636786000145],[109.04346764400005,14.777289130000126],[109.08082116,14.729478257000096],[109.0861108730002,14.715318101000063],[109.09506269600008,14.66742584800015],[109.08668053500017,14.671332098000134],[109.08057701900006,14.677476304000123],[109.07642662900005,14.68561432500013],[109.07732181100002,14.672471421000166],[109.08179772200018,14.606390692000076],[109.08708743600008,14.596096096000151],[109.0882267590001,14.58926015800013],[109.0861108730002,14.58527252800016],[109.07667076900005,14.585679429000066],[109.07105553500017,14.575100002000111],[109.06446373800011,14.5703799500001],[109.06104576900012,14.563706773000147],[109.06706790500019,14.550726630000057],[109.0735783210001,14.57050202000008],[109.07447350400015,14.578599351000108],[109.10816491000017,14.4887149110001],[109.125743035,14.465399481000107],[109.13021894600008,14.451605536000102],[109.12916100400005,14.397406317000133],[109.13119550900014,14.38344961100016],[109.13648522200006,14.36684804900011],[109.14966881600017,14.338446356000178],[109.18140709700005,14.304754950000174],[109.19060306100017,14.291245835000112],[109.19459069100017,14.277492580000086],[109.20118248800006,14.236029364000089],[109.19092858200005,14.220526434000163],[109.2052514980002,14.186102606000134],[109.239024285,14.13300202000012],[109.22022545700004,14.135239976000108],[109.21265709700012,14.144680080000128],[109.20777428500006,14.156968492000175],[109.19752037899998,14.167792059000163],[109.17448978000002,14.17206452000009],[109.17261803500017,14.15656159100017],[109.1840926440001,14.136297919000157],[109.21509850400005,14.11957428600013],[109.22543379000015,14.103989976000136],[109.25269616000006,14.032619533000158],[109.26636803500017,13.920721747000144],[109.27515709700005,13.906724351000094],[109.3016056650001,13.885809637000136],[109.30738366000017,13.876369533000116],[109.30046634200019,13.797796942000105],[109.30396569100017,13.759263414000117],[109.2957462900001,13.755601304000066],[109.26978600400015,13.755601304000066],[109.26742597700009,13.766302802000098],[109.27320397200018,13.824530341000113],[109.25953209700006,13.874009507000068],[109.25147545700011,13.890936591000141],[109.239024285,13.879787502000125],[109.23617597700016,13.869614976000078],[109.23218834700016,13.831976630000097],[109.22185306100008,13.813218492000132],[109.22071373800004,13.80613841400016],[109.23218834700016,13.81085846600017],[109.23951256600016,13.787665106000148],[109.24610436300004,13.779608466000113],[109.25896243600017,13.777329820000132],[109.24781334700018,13.765448309000176],[109.23536217500006,13.756089585000055],[109.22624759200006,13.743597723000136],[109.2247827480002,13.722113348000121],[109.2368270190001,13.699611721000123],[109.23707116000004,13.698594468000152],[109.239024285,13.69139232000012],[109.239024285,13.663763739000116],[109.24138431100006,13.644029039000173],[109.24756920700011,13.622707424000126],[109.25717207100008,13.605617580000084],[109.26978600400015,13.598578192000105],[109.27051842500012,13.594183661000116],[109.28248131600004,13.585150458000115],[109.2957462900001,13.577704169000128],[109.30046634200019,13.578111070000134],[109.30388431100019,13.568793036000102],[109.30347741000017,13.562201239000116],[109.29810631600004,13.558498440000077],[109.28679446700006,13.557603257000096],[109.28679446700006,13.55076732000016],[109.29118899800002,13.546576239000132],[109.29273522200016,13.543524481000148],[109.29420006600006,13.530340887000094],[109.28565514400012,13.539007880000097],[109.26343834700006,13.577053127000083],[109.25294030000006,13.601629950000103],[109.22608483200011,13.631903387000179],[109.21851647200006,13.646958726000108],[109.21119225400005,13.646958726000108],[109.21013431100019,13.630804755000142],[109.21558678500006,13.623683986000103],[109.22413170700005,13.619533596000151],[109.23218834700016,13.612250067000131],[109.23715254000015,13.60138580900015],[109.24122155000012,13.581529039000145],[109.24529056100008,13.571234442000133],[109.25831139400006,13.559759833000086],[109.26742597700009,13.554673570000162],[109.26636803500017,13.548732815000136],[109.26246178500017,13.543931382000054],[109.25896243600017,13.544623114000089],[109.26587975400017,13.533880927000082],[109.28679446700006,13.509222723000093],[109.29420006600006,13.509222723000093],[109.29802493600008,13.514715887000106],[109.30176842500005,13.517523505000069],[109.3142195970001,13.52289459800012],[109.31080162900011,13.513128973000077],[109.30225670700005,13.501532294000157],[109.30046634200019,13.492743231000103],[109.30372155000012,13.479885158000073],[109.31218509200006,13.47162506700009],[109.3232528000001,13.469794012000106],[109.33464603000006,13.475734768000137],[109.3396916020001,13.465480861000103],[109.33130944100006,13.452093817000105],[109.33464603000006,13.440904039000188],[109.324961785,13.422308661000102],[109.3185327480002,13.413763739000075],[109.30738366000017,13.406805731000176],[109.2991642590001,13.417466539000115],[109.2775171230002,13.421616929000066],[109.27320397200018,13.431057033000071],[109.27808678500017,13.437933661000088],[109.28858483200004,13.442206122000101],[109.2981876960001,13.448431708000143],[109.30046634200019,13.46137116100006],[109.29444420700005,13.468166408000087],[109.26254316500015,13.489325262000179],[109.25294030000006,13.488674221000139],[109.24512780000006,13.485174872000144],[109.238536004,13.476752020000106],[109.23218834700016,13.46137116100006],[109.23755944100006,13.453192450000145],[109.235118035,13.445379950000158],[109.23462975400005,13.437079169000171],[109.24529056100008,13.427232164000158],[109.23755944100006,13.420070705000114],[109.23414147200006,13.410060940000136],[109.23218834700016,13.393133856000148],[109.24935957100008,13.3847110050001],[109.26636803500017,13.361802476000108],[109.28003991,13.352769273000176],[109.29102623800006,13.363104559000105],[109.29932701900005,13.364691473000136],[109.30738366000017,13.352769273000176],[109.30884850400005,13.341457424000112],[109.30567467500006,13.33388906500015],[109.29802493600008,13.330267645000106],[109.28679446700006,13.331040757000125],[109.28679446700006,13.32489655200014],[109.29175866000011,13.320379950000172],[109.2942814460001,13.314642645000118],[109.29509524800014,13.307277736000117],[109.29420006600006,13.297552802000068],[109.28931725400017,13.301174221000124],[109.27808678500017,13.30687083500011],[109.27320397200018,13.310614325000143],[109.26856530000006,13.301825262000179],[109.26636803500017,13.301214911000116],[109.25896243600017,13.297552802000068],[109.27263431100002,13.263251044000114],[109.28150475400017,13.248968817000119],[109.29420006600006,13.235500393000123],[109.29273522200016,13.266791083000086],[109.29623457100014,13.2788760440001],[109.30738366000017,13.283880927000125],[109.30738366000017,13.290106512000179],[109.302989129,13.297796942000117],[109.30372155000012,13.303168036000073],[109.30795332100016,13.303778387000122],[109.3142195970001,13.297552802000068],[109.31812584700016,13.288885809000163],[109.32007897200006,13.27952708500014],[109.321055535,13.259019273000177],[109.31885826900012,13.25141022300015],[109.30738366000017,13.228664455000114],[109.30762780000012,13.218654690000122],[109.3142195970001,13.197943427000126],[109.31177819100017,13.181708075000174],[109.3069767590001,13.166327216000141],[109.30420983200011,13.150620835000081],[109.30738366000017,13.13304271000014],[109.31560306100019,13.119452216000083],[109.32536868600013,13.106878973000091],[109.3313908210001,13.093573309000163],[109.32837975400005,13.08466217700014],[109.34115644600016,13.076605536000102],[109.34945722700014,13.068264065000136],[109.37012780000005,13.031805731000162],[109.39665774800014,13.002752997000101],[109.41635175900015,12.971747137000165],[109.45826256600017,12.92405833500011],[109.4650171230002,12.913316148000177],[109.46729576900006,12.897691148000192],[109.46631920700011,12.878973700000131],[109.46290123800011,12.86212799700013],[109.45818118600019,12.851874091000113],[109.45362389400005,12.849920966000155],[109.43588300900015,12.844875393000123],[109.43091881600017,12.845119533000071],[109.42839603000017,12.852118231000148],[109.43360436300006,12.856838283000158],[109.4407658210001,12.860663153000175],[109.44450931100008,12.864935614000089],[109.4467879570001,12.869045315000136],[109.45004316500015,12.873236395000077],[109.448985222,12.876695054000066],[109.4382430350001,12.878607489000117],[109.41724694100006,12.864935614000089],[109.4140731130001,12.859767971000082],[109.40788821700014,12.844142971000096],[109.40349368600002,12.83820221600017],[109.39527428500006,12.834906317000131],[109.38656660200016,12.834418036000145],[109.3846134770001,12.833970445000148],[109.37769615999999,12.832424221000108],[109.36882571700008,12.824611721000124],[109.37549889400012,12.816351630000126],[109.37647545700011,12.80434804900011],[109.37566165500019,12.790350653000147],[109.37623131600004,12.77619049700013],[109.42074629000015,12.69131094000008],[109.43620853000006,12.674221096000123],[109.45134524800007,12.673773505000128],[109.46949303500016,12.660345770000133],[109.47242272200016,12.656398830000143],[109.46998131600004,12.648627020000147],[109.464121941,12.645900783000087],[109.45728600400011,12.6441104190001],[109.45134524800007,12.63898346600017],[109.448985222,12.624090887000122],[109.452403191,12.583238023000177],[109.45134524800007,12.570746161000073],[109.4402775400001,12.5646019550001],[109.42994225400005,12.575873114000089],[109.41724694100006,12.605454820000132],[109.41334069100017,12.610256252000127],[109.40886478000019,12.613104559000163],[109.40512129000015,12.61798737200013],[109.40349368600002,12.628810940000136],[109.4065861340001,12.630682684000105],[109.42408287900015,12.646429755000057],[109.42408287900015,12.652655341000113],[109.40349368600002,12.68744538000007],[109.40162194100016,12.677964585000067],[109.39600670700005,12.673081773000177],[109.38738040500007,12.67186107000016],[109.37623131600004,12.673773505000128],[109.38013756600006,12.664862372000087],[109.38152103,12.656398830000143],[109.38013756600006,12.647894598000121],[109.37623131600004,12.63898346600017],[109.370371941,12.649115302000126],[109.36353600400017,12.656236070000176],[109.35425866000006,12.660060940000108],[109.34205162900017,12.6601016300001],[109.36011803500017,12.685288804000066],[109.36255944099999,12.69049713700015],[109.36687259200019,12.693426825000174],[109.37623131600004,12.696926174000069],[109.3855900400001,12.702460028000175],[109.38990319100017,12.711615302000068],[109.38640384200019,12.727525132000094],[109.36890709700005,12.750230210000126],[109.36255944099999,12.762518622000087],[109.36255944099999,12.792914130000057],[109.35889733200005,12.79730866100013],[109.34782962300014,12.794826565000108],[109.34441165500013,12.788641669000143],[109.34310957100008,12.78074778900016],[109.3383895190001,12.77309804900014],[109.30396569100017,12.750881252000084],[109.29420006600006,12.742010809000133],[109.26954186300006,12.712307033000116],[109.25538170700011,12.69912344000015],[109.24219811300006,12.69358958500014],[109.23357181100006,12.687079169000143],[109.2049259770001,12.646429755000057],[109.20460045700005,12.636908270000147],[109.20801842500005,12.598049221000153],[109.20045006600006,12.591253973000121],[109.20134524800014,12.57591380400008],[109.2049259770001,12.559719143000123],[109.2049259770001,12.550238348000121],[109.20777428500006,12.549221096000151],[109.21021569100017,12.549261786000145],[109.21159915500007,12.548041083000129],[109.21119225400005,12.543402411000102],[109.21851647200006,12.543402411000102],[109.22193444100004,12.553615627000127],[109.22364342500006,12.565252997000144],[109.2278751960001,12.574530341000099],[109.239024285,12.577582098000091],[109.239024285,12.583726304000066],[109.23218834700016,12.583726304000066],[109.23218834700016,12.591253973000121],[109.24903405000006,12.585516669000143],[109.24708092500006,12.571966864000089],[109.23780358200011,12.555405992000116],[109.23218834700016,12.540350653000102],[109.23715254000015,12.522284247000172],[109.24935957100008,12.509507554000137],[109.29835045700005,12.477972723000136],[109.30355879000014,12.46963125200007],[109.29346764400012,12.449042059000133],[109.2942814460001,12.439032294000143],[109.298513217,12.43081289300015],[109.30396569100017,12.42739492400014],[109.31869550900014,12.422186591000141],[109.336680535,12.410142320000134],[109.34595787900017,12.396307684000135],[109.33464603000006,12.385728257000096],[109.34205162900017,12.37889232000016],[109.33464603000006,12.372137762000136],[109.32252037900015,12.386053778000118],[109.31568444100017,12.376898505000128],[109.30909264400005,12.360052802000125],[109.29737389400012,12.351019598000121],[109.28239993600008,12.35594310100008],[109.27222741,12.367743231000148],[109.25896243600017,12.39256419500019],[109.21550540500006,12.440171617000173],[109.18506920700011,12.458929755000142],[109.156504754,12.454657294000128],[109.16138756600017,12.4487979190001],[109.1668400400001,12.437974351000094],[109.17017662900005,12.433539130000128],[109.15984134200002,12.437933661000102],[109.156504754,12.440375067000131],[109.14966881600017,12.440375067000131],[109.15463300900015,12.426906643000152],[109.17042076900006,12.410386460000083],[109.17693118600008,12.399400132000123],[109.19629967500006,12.402777411000145],[109.2065535820001,12.38715241100006],[109.21045983200011,12.363185940000108],[109.21119225400005,12.341376044000143],[109.21412194100016,12.332912502000113],[109.22120201900012,12.322495835000126],[109.22925866000016,12.313706773000149],[109.24203535200009,12.305405992000173],[109.24219811300006,12.296576239000117],[109.23633873800011,12.291083075000088],[109.2247827480002,12.29637278900016],[109.21851647200006,12.29637278900016],[109.2146916020001,12.289780992000189],[109.2049259770001,12.262884833000115],[109.18238365999999,12.272609768000066],[109.17693118600008,12.276516018000152],[109.1824650400001,12.267808335000083],[109.19157962300008,12.260402736000088],[109.21119225400005,12.24860260600012],[109.204844597,12.233384507000139],[109.20899498800006,12.221665757000068],[109.21762129000014,12.211493231000105],[109.2247827480002,12.200832424000083],[109.19849694100017,12.207953192000133],[109.18824303500006,12.20575592700014],[109.18433678500017,12.19399648600016],[109.19092858200005,12.200181382000125],[109.19060306100017,12.200832424000083],[109.20435631600004,12.193793036000102],[109.20964603000019,12.186021226000108],[109.21119225400005,12.172837632000068],[109.2130639980002,12.166001695000132],[109.21265709700012,12.162665106000103],[109.21420332100016,12.158596096000153],[109.22169030000012,12.149603583000129],[109.22681725400004,12.137884833000143],[109.22266686300011,12.129055080000084],[109.21119225400005,12.118231512000179],[109.20997155000012,12.10968659100017],[109.21387780000012,12.068101304000095],[109.22055097700014,12.050604559000135],[109.24919681100008,11.997381903000159],[109.25831139400006,11.986761786000116],[109.28679446700006,11.967433986000088],[109.28679446700006,11.96116771000014],[109.28345787900005,11.943508205000128],[109.28345787900005,11.940130927000112],[109.26636803500017,11.926459052000084],[109.26587975400017,11.909898179000109],[109.27084394600014,11.895005601000065],[109.28077233200005,11.883937893000109],[109.29420006600006,11.878648179000137],[109.29420006600006,11.871242580000143],[109.2778426440001,11.864813544000143],[109.26140384200014,11.865708726000136],[109.24756920700011,11.87295156500015],[109.239024285,11.88544342700007],[109.23560631600017,11.883368231000148],[109.22828209700018,11.880804755000142],[109.2247827480002,11.878648179000137],[109.21656334700012,11.908840236000145],[109.22266686300011,11.9816348330001],[109.21119225400005,12.015814520000092],[109.21851647200006,12.015814520000092],[109.19581139400012,12.074896552000126],[109.18620853000002,12.117743231000103],[109.17676842500012,12.12946198100009],[109.163340691,12.112005927000125],[109.17603600400015,12.08856842700007],[109.18067467500012,12.084702867000146],[109.18213951900006,12.081040757000096],[109.17693118600008,12.05304596600017],[109.18238365999999,12.042873440000136],[109.20582116000017,12.021633205000143],[109.21119225400005,12.005601304000066],[109.20818118600002,11.97662995000016],[109.1987410820001,11.948146877000156],[109.18181399800001,11.921698309000163],[109.156504754,11.899115302000096],[109.13721764400005,11.896063544000114],[109.1258244150001,11.863592841000127],[109.13160241000017,11.8300235050001],[109.163340691,11.824042059000163],[109.16822350400015,11.833197333000056],[109.18287194100012,11.85301341400016],[109.19792728000013,11.869452216000155],[109.2049259770001,11.868109442000074],[109.200938347,11.85382721600017],[109.19410241000011,11.841131903000116],[109.19288170700004,11.827541408000158],[109.2049259770001,11.810370184000135],[109.20386803500004,11.788682359000148],[109.20362389400012,11.784572658000116],[109.24293053500011,11.735663153000132],[109.23218834700016,11.714178778000104],[109.2247827480002,11.721625067000074],[109.21778405000012,11.71409739800012],[109.20899498800006,11.693670966000141],[109.19125410200016,11.671942450000174],[109.18881269600008,11.663234768000095],[109.18832441500015,11.653306382000096],[109.18433678500017,11.63849518400012],[109.17855879000008,11.631659247000101],[109.16041100400011,11.61644114800012],[109.156504754,11.608343817000089],[109.15406334700018,11.596991278000118],[109.14828535200009,11.586086330000143],[109.13599694100004,11.570217190000122],[109.12916100400005,11.570217190000122],[109.11719811300011,11.58026764500009],[109.10254967500006,11.58104075700011],[109.08570397200018,11.579779364000103],[109.06706790500019,11.583807684000163],[109.05567467500012,11.596625067000103],[109.04810631600017,11.63133372600008],[109.04346764400005,11.63849518400012],[109.02027428500006,11.632798570000134],[109.02173912900015,11.620306708000129],[109.03321373800004,11.607652085000055],[109.04037519600014,11.601507880000085],[109.03834069100006,11.587713934000163],[109.03467858200011,11.574123440000108],[109.03402754000015,11.559556382000082],[109.04037519600014,11.542873440000136],[109.01929772200005,11.542303778000175],[109.01246178500006,11.542873440000136],[109.02784264400006,11.517482815000122],[109.02833092500005,11.474269924000124],[109.01929772200005,11.406317450000143],[109.02247155000012,11.367621161000102],[109.01807701900005,11.355902411000116],[109.00562584699999,11.34365469000015],[108.98072350400017,11.32371653900016],[108.96607506600016,11.314764716000125],[108.95167076900012,11.310126044000114],[108.93336022200005,11.311183986000158],[108.88965905000006,11.330633856000162],[108.8738712900001,11.333889065000108],[108.85613040500013,11.333970445000176],[108.8380639980002,11.330755927000126],[108.82129967500006,11.32371653900016],[108.78785240999999,11.300685940000093],[108.77515709700006,11.288478908000116],[108.76612389400006,11.27594635600012],[108.75782311300006,11.25779857000012],[108.7456160820001,11.207098700000145],[108.73804772200006,11.189683335000081],[108.72934004000015,11.181545315000065],[108.71745853000019,11.179185289000117],[108.7005314460001,11.179144598000121],[108.69044030000006,11.181463934000178],[108.66920006600017,11.19122955900012],[108.65626061300004,11.19281647300015],[108.64625084700018,11.190497137000179],[108.62598717500005,11.181789455000114],[108.61524498800006,11.179144598000121],[108.577403191,11.179144598000121],[108.57162519600016,11.176011460000138],[108.5594181650001,11.162420966000099],[108.53126061300011,11.153265692000105],[108.5140080090001,11.13873932500016],[108.50033613400015,11.120835679000109],[108.49170983200004,11.104681708000143],[108.48194420700011,11.064032294000157],[108.47234134200002,11.053168036000073],[108.44703209700018,11.049465236000131],[108.43913821700019,11.046698309000163],[108.40357506600006,11.028957424000083],[108.39307701900005,11.027085679000109],[108.37631269600016,11.026271877000099],[108.36882571700019,11.022772528000104],[108.36280358200005,11.009711005000128],[108.34986412900017,10.963853257000139],[108.34498131599999,10.953802802000068],[108.32520592500006,10.951564846000094],[108.31544030000006,10.944322007000068],[108.30005944100012,10.912827867000146],[108.29371178500017,10.912827867000146],[108.2853296230002,10.943345445000176],[108.2586369150001,10.951808986000131],[108.13502037900011,10.927679755000113],[108.10645592500012,10.91815827000012],[108.09449303500017,10.902004299000154],[108.08912194099999,10.892035223000065],[108.06568444100006,10.86798737200013],[108.06031334700016,10.854193427000126],[108.05713951900012,10.842108466000111],[108.04297936300011,10.813910223000136],[108.03541100400005,10.77277252800016],[107.99830162900005,10.699367580000143],[107.991465691,10.699367580000143],[107.98064212300014,10.705796617000159],[107.93628991000017,10.718695380000085],[107.91944420700011,10.721096096000124],[107.89820397200012,10.719956773000177],[107.88233483200005,10.716986395000077],[107.82390384200018,10.692368882000082],[107.78223717500006,10.657782294000171],[107.76832116000017,10.65021393400012],[107.7312931650001,10.637884833000086],[107.66627037900017,10.603745835000081],[107.64454186300011,10.600653387000094],[107.62134850400017,10.592596747000158],[107.58651777400021,10.573513088000167],[107.58057701900012,10.570257880000128],[107.57048587300002,10.562241929000095],[107.54420006600006,10.536200262000108],[107.53907311300011,10.525580145000077],[107.53052819100017,10.512925523000192],[107.51140384200019,10.501654364000103],[107.447520379,10.47333405200007],[107.42953535200016,10.468451239000089],[107.38461347700016,10.4628360050001],[107.34498131600006,10.450425523000163],[107.33415774800001,10.45355866100013],[107.32601972700009,10.442450262000108],[107.296641472,10.415716864000103],[107.27198326900012,10.378485419000114],[107.25440514400012,10.37889232000012],[107.21631920700011,10.401556708000072],[107.19019616000006,10.405178127000127],[107.194997592,10.414048570000176],[107.20313561300004,10.417222398000149],[107.21168053500017,10.41937897300015],[107.21753991000006,10.425604559000107],[107.21697024800008,10.434475002000156],[107.21192467500012,10.443548895000148],[107.20541425900014,10.450669664000102],[107.20045006600017,10.45355866100013],[107.1956486340001,10.457017320000134],[107.17595462300002,10.477443752000111],[107.17123457100016,10.476467190000136],[107.16089928500006,10.476507880000128],[107.14942467500006,10.477932033000101],[107.14177493600008,10.480861721000124],[107.14177493600008,10.46662018400012],[107.13550866,10.46662018400012],[107.12273196700006,10.48021067900008],[107.10279381600017,10.489935614000117],[107.08179772200006,10.49160390800013],[107.06609134200008,10.480861721000124],[107.059825066,10.480861721000124],[107.06267337300008,10.489569403000102],[107.06324303500006,10.495062567000133],[107.059825066,10.508205471000096],[107.05046634200019,10.488470770000148],[107.04322350400017,10.47980377800016],[107.03191165500019,10.474066473000093],[107.0262150400001,10.493109442000089],[107.02564537900005,10.501369533000073],[107.01099694099999,10.494126695000148],[107.00359134200002,10.488592841000127],[106.99781334700018,10.480861721000124],[106.99146569100006,10.480861721000124],[106.99439537900015,10.496649481000162],[107.004161004,10.504706122000101],[107.01417076900006,10.508693752000084],[107.0159611340001,10.509426174000112],[107.02564537900005,10.515041408000116],[107.03272545700011,10.525946356000174],[107.03419030000005,10.535874742000173],[107.03191165500019,10.607489325000117],[107.02898196700006,10.613836981000148],[107.0157983730002,10.62775299700013],[107.01140384200002,10.637884833000086],[107.01465905000006,10.635484117000132],[107.02564537900005,10.631048895000063],[107.02531985800013,10.63528066600017],[107.02369225400017,10.656317450000117],[107.01319420700011,10.67267487200013],[106.98414147200006,10.699367580000143],[106.97974694100006,10.684759833000129],[106.99008222700016,10.673570054000123],[107.00424238400008,10.664252020000077],[107.01140384200002,10.655259507000068],[107.00261478000007,10.6304385440001],[107.00245201900012,10.617092190000093],[107.01482181100002,10.61123281500015],[107.02507571700008,10.603908596000139],[107.022715691,10.587591864000116],[107.01140384200002,10.562811591000155],[107.01441491000006,10.555487372000144],[107.0213322270001,10.55011627800009],[107.02686608200005,10.544175523000163],[107.02564537900005,10.53546784100017],[107.01905358200005,10.533880927000139],[107.0097762380001,10.53896719000008],[106.99781334700018,10.549139716000111],[107.00513756600017,10.55597565300013],[106.99146569100006,10.570257880000128],[106.99146569100006,10.576483466000099],[106.996348504,10.585191148000163],[106.99822024800008,10.597235419000086],[106.99781334700018,10.624904690000093],[106.99146569100006,10.624904690000093],[106.98487389400006,10.59682851800008],[106.98414147200006,10.566880601000108],[106.99195397200005,10.540106512000108],[107.01140384200002,10.521877346000123],[107.00359134200002,10.517767645000077],[106.99439537900015,10.512884833000115],[106.97217858200011,10.47426992400014],[106.96363366000017,10.46662018400012],[106.95720462300008,10.471665757000139],[106.95866946700002,10.48045482000012],[106.962657097,10.491034247000158],[106.96363366000017,10.501369533000073],[106.9593205090001,10.511867580000143],[106.95460045700005,10.51650625200007],[106.94898522200016,10.520575262000122],[106.94312584700006,10.52928294500012],[106.93775475400017,10.548732815000108],[106.93824303500017,10.566636460000069],[106.94312584700006,10.600653387000094],[106.89055423300007,10.644639390000123],[106.88160241000017,10.652167059000163],[106.86776777400003,10.645209052000084],[106.84864342500012,10.635565497000115],[106.82862389400012,10.630275783000144],[106.819590691,10.641302802000098],[106.81421959700006,10.652167059000163],[106.80128014400005,10.666937567000147],[106.79354902400016,10.673529364000132],[106.78581790500002,10.680121161000102],[106.77247155000012,10.686346747000158],[106.76815839900021,10.684678453000146],[106.767263217,10.68431224200013],[106.74756920700011,10.673651434000107],[106.74146569100012,10.669256903000116],[106.73682701900006,10.6581485050001],[106.7436629570001,10.651516018000123],[106.75367272200018,10.646795966000113],[106.75879967500006,10.641302802000098],[106.76099694100017,10.63153717700014],[106.77247155000012,10.603745835000081],[106.7690535820001,10.592271226000136],[106.763926629,10.586655992000132],[106.75782311300011,10.58270905200014],[106.75196373800006,10.576483466000099],[106.74610436300011,10.56037018400012],[106.74406985800006,10.552232164000186],[106.74097741,10.539984442000133],[106.73340905000006,10.522447007000096],[106.72087649800008,10.515041408000116],[106.6888126960001,10.503648179000137],[106.67237389400006,10.504217841000111],[106.66260826900006,10.521877346000123],[106.65577233200005,10.521877346000123],[106.65919030000005,10.507066148000149],[106.66244550900008,10.501125393000123],[106.66871178500006,10.494533596000153],[106.65772545700005,10.492132880000113],[106.64649498800004,10.48663971600017],[106.63803144600016,10.478989976000065],[106.63038170700011,10.458685614000146],[106.62012780000006,10.452622789000143],[106.60678144600016,10.44765859600011],[106.59424889400006,10.439276434000135],[106.59489993600012,10.456000067000076],[106.59213300900015,10.468695380000128],[106.587168816,10.478827216000099],[106.5799259770001,10.487738348000121],[106.58187910200009,10.452785549000112],[106.58676191500008,10.438706773000163],[106.59742272200005,10.433050848000093],[106.61540774800008,10.436590887000165],[106.63005618600019,10.445786851000136],[106.64136803500017,10.4589297550001],[106.64893639400012,10.474066473000093],[106.65577233200005,10.474066473000093],[106.6606551440001,10.460109768000123],[106.66293379000015,10.443915106000162],[106.67017662900011,10.432562567000105],[106.68978925900015,10.433050848000093],[106.69800866000006,10.440985419000143],[106.71363366000004,10.468085028000175],[106.72413170700011,10.474066473000093],[106.74105879000008,10.468003648000192],[106.751719597,10.453517971000137],[106.75977623800006,10.436346747000115],[106.7690535820001,10.422512111000117],[106.781993035,10.407782294000128],[106.78809655000012,10.393133856000118],[106.79542076900012,10.30683014500009],[106.79078209700018,10.284857489000087],[106.7755639980002,10.275376695000162],[106.75603274800014,10.27716705900015],[106.70411217500006,10.289048570000105],[106.59831790500002,10.288519598000136],[106.52523847700016,10.302557684000178],[106.48755944100006,10.302720445000148],[106.46802819100016,10.307318427000084],[106.45232181100019,10.316148179000137],[106.4376733730002,10.321844794000114],[106.42237389400006,10.316961981000148],[106.48031660200009,10.280829169000114],[106.72087649800008,10.199693101000094],[106.72624759200014,10.196478583000129],[106.7423608730002,10.182359117000189],[106.748301629,10.17918528900013],[106.75359134200019,10.177069403000118],[106.75831139400012,10.172349351000122],[106.76514733200011,10.167669989000103],[106.7755639980002,10.165513414000188],[106.78565514400005,10.164943752000127],[106.79314212300002,10.162502346000096],[106.797618035,10.157212632000123],[106.79908287900015,10.148138739000116],[106.797129754,10.125392971000082],[106.79127037900017,10.110174872000101],[106.73707116,10.054144598000079],[106.72087649800008,10.044907945000105],[106.70411217500006,10.048895575000174],[106.70923912900017,10.05662669500019],[106.7102970710001,10.06586334800015],[106.70834394600016,10.075262762000179],[106.70411217500006,10.08364492400014],[106.69662519600014,10.08364492400014],[106.69214928499999,10.066595770000092],[106.68978925900015,10.062567450000117],[106.67676842500006,10.049221096000108],[106.67115319100017,10.04100169500012],[106.66871178500006,10.0324160830001],[106.67253665500007,10.029486395000077],[106.6795353520001,10.020982164000145],[106.68409264400006,10.012030341000113],[106.6795353520001,10.007961330000157],[106.66423587300008,10.006089585000096],[106.66081790500007,10.001450914000158],[106.6609806650001,9.994859117000187],[106.65398196700002,9.98501211100016],[106.65154056100017,9.977525132000109],[106.64893639400012,9.974351304000137],[106.64486738400015,9.973374742000159],[106.6074324880001,9.974839585000126],[106.59107506600012,9.980780341000141],[106.57691491000016,9.991034247000172],[106.56299889400012,10.004461981000162],[106.54786217500012,10.015366929000137],[106.49805748800011,10.035834052000112],[106.46892337300008,10.058986721000151],[106.44336998800006,10.089544989000089],[106.35987389400012,10.220689195000134],[106.33122806100002,10.249497789000158],[106.29200280000012,10.261704820000132],[106.29737389400005,10.255926825000172],[106.30274498800011,10.253322658000087],[106.30787194100006,10.251410223000121],[106.33790123800011,10.228094794000114],[106.34937584700005,10.214829820000176],[106.35816490999999,10.17658112200013],[106.3685001960001,10.155910549000124],[106.46168053500006,10.035711981000134],[106.48438561300011,10.015326239000146],[106.56153405000006,9.979152736000131],[106.61426842500012,9.939032294000114],[106.67058353000019,9.909409898000163],[106.68637129000014,9.905462958000086],[106.69629967500006,9.896551825000143],[106.69320722700016,9.876410223000107],[106.68246504000015,9.855129299000126],[106.66871178500006,9.842840887000165],[106.66871178500006,9.85024648600016],[106.67505944100017,9.857611395000148],[106.67644290500007,9.866766669000128],[106.6740828790001,9.87612539300008],[106.66871178500006,9.883734442000103],[106.66260826900006,9.883734442000103],[106.65788821700002,9.848618882000139],[106.63786868600008,9.825995184000163],[106.61133873800011,9.817043361000145],[106.58676191500008,9.822943427000084],[106.5633244150001,9.84178294500012],[106.50440514400006,9.905462958000086],[106.47974694100017,9.9239769550001],[106.39503014400006,9.974351304000137],[106.14486738400014,10.228583075000103],[106.13648522200012,10.23456452000012],[106.12728925900015,10.239447333000086],[106.121348504,10.240668036000102],[106.11817467500006,10.238104559000107],[106.11329186300006,10.234279690000093],[106.11784915500013,10.229234117000146],[106.12745201900012,10.224798895000077],[106.13502037900005,10.22016022300015],[106.15788821700008,10.195379950000174],[106.16602623800006,10.181097723000093],[106.17286217500006,10.14752838700015],[106.18213951900006,10.133042710000112],[106.19336998800004,10.12026601800008],[106.215098504,10.100287177000098],[106.24642988400015,10.077460028000175],[106.28321373800006,10.05068594000008],[106.29200280000012,10.042059637000165],[106.29818769600008,10.033270575000103],[106.30665123800011,10.016669012000136],[106.31251061300004,10.007961330000157],[106.36361738400015,9.960109768000137],[106.36931399800014,9.95693594000008],[106.38892662900017,9.932806708000143],[106.47575931100019,9.861802476000094],[106.50098717500006,9.834051825000103],[106.51856530000006,9.801825262000165],[106.5275171230002,9.762193101000136],[106.53785240999999,9.751166083000086],[106.56299889400012,9.747219143000109],[106.57496178500006,9.739081122000172],[106.57984459700012,9.720363674000112],[106.58057701900012,9.699693101000108],[106.5755314460001,9.64862702000012],[106.56316165500006,9.61432526200015],[106.54371178500016,9.585028387000136],[106.51856530000006,9.562892971000151],[106.49724368600013,9.549994208000143],[106.48487389400005,9.547105210000112],[106.4734806650001,9.551988023000177],[106.46436608200011,9.554754950000145],[106.45394941500015,9.550523179000123],[106.43946373800011,9.541164455000086],[106.39820397200006,9.542059637000179],[106.38502037900017,9.548285223000136],[106.33716881600017,9.584702867000118],[106.25033613400015,9.631170966000155],[106.064707879,9.8042666690001],[105.970469597,9.920843817000119],[105.93287194100006,9.955389716000127],[105.90406334700018,9.97646719000015],[105.8694767590001,9.985337632000096],[105.83806399800008,10.005031643000137],[105.81902103000006,10.007961330000157],[105.83838951900012,9.979437567000062],[105.90211022200006,9.916693427000082],[106.07349694100017,9.747951565000136],[106.07976321700002,9.730780341000113],[106.08350670700005,9.713080145000106],[106.09294681100019,9.692938544000157],[106.19703209700016,9.541164455000086],[106.20362389400005,9.526841539000186],[106.207774285,9.511460679000066],[106.21070397200006,9.470038153000147],[106.20582116000017,9.457342841000083],[106.16920006600006,9.418198960000138],[106.17888431100019,9.40843333500011],[106.1878361340001,9.404486395000118],[106.19459069100004,9.398993231000174],[106.19703209700016,9.3847110050001],[106.19336998800004,9.369330145000148],[106.18392988400008,9.362209377000097],[106.15544681100013,9.356838283000144],[106.01823978000007,9.315252997000158],[105.86825605600009,9.254706122000172],[105.75993899800001,9.21092357000012],[105.53874759200002,9.129339911000102],[105.51417076900012,9.1085879580001],[105.47022545700011,9.061957098000093],[105.44361412900005,9.041489976000122],[105.4329533210001,9.028306382000082],[105.42855879000014,9.010728257000139],[105.42603600400005,9.008002020000077],[105.41325931100008,9.00470612200013],[105.40821373800006,9.000555731000105],[105.40739993600002,8.995917059000163],[105.40894616000017,8.984767971000153],[105.40821373800006,8.980047919000143],[105.33397583200022,8.839698822000088],[105.31512603100005,8.812237350000146],[105.29318429700018,8.787854650000128],[105.2588198490001,8.760465236000101],[105.21675151500014,8.754510429000064],[105.18403084100005,8.740881653000145],[105.15440735000017,8.70585818800015],[105.12635954300006,8.660141341000084],[105.1014722900002,8.63427539000017],[105.03472808500013,8.616218361000136],[104.85621178500017,8.565578518000152],[104.832774285,8.56915924700013],[104.82691491000017,8.572658596000123],[104.82203209700012,8.577134507000096],[104.81478925900008,8.581122137000165],[104.75220787900017,8.590765692000133],[104.72852623800006,8.599514065000108],[104.72291100400011,8.60268789300008],[104.72022545700004,8.613755601000108],[104.72803795700004,8.616359768000109],[104.74008222700016,8.612046617000102],[104.75930129400015,8.615620453000133],[104.80844160200014,8.647650458000072],[104.81910241000017,8.654038804000095],[104.82813561300011,8.656561591000113],[104.83513431100008,8.660467841000099],[104.83904056100008,8.670965887000165],[104.8341577480002,8.680975653000147],[104.82374108200011,8.68622467700014],[104.81950931100017,8.690863348000079],[104.832774285,8.698879299000112],[104.84555097700016,8.698146877000083],[104.91163170700005,8.685207424000083],[104.92579186300011,8.688381252000141],[104.94239342500006,8.69643789300008],[104.9563908210001,8.707424221000137],[104.9631453790001,8.71938711100016],[104.93930097700016,8.708075262000179],[104.90748131600006,8.699611721000139],[104.87614993600008,8.699204820000134],[104.85328209700016,8.712551174000138],[104.84839928500011,8.723578192000103],[104.85279381600017,8.729193427000098],[104.86426842500012,8.731756903000102],[104.88062584700006,8.733628648000163],[104.90479576900006,8.733628648000163],[104.91211998800006,8.735337632000082],[104.92896569100006,8.747300523000192],[104.92896569100006,8.753485419000171],[104.91911868600002,8.770453192000147],[104.91627037900011,8.790472723000121],[104.92156009200008,8.809312242000146],[104.85792076900012,8.781439520000106],[104.81666100400011,8.77130768400015],[104.79167462400008,8.784062157000122],[104.77459454000015,8.817867266000121],[104.78540149400007,8.856102424000113],[104.7962432840001,8.891231306000122],[104.81171701700005,8.93704945100012],[104.80861189400011,8.975284591000104],[104.8070727510002,9.045571369000129],[104.81104576900006,9.132635809000135],[104.81910241000017,9.192938544000171],[104.8255314460001,9.340033270000134],[104.82607212100007,9.400965572000132],[104.832774285,9.514471747000158],[104.83562259200008,9.5562197940001],[104.856557648,9.73803691600011],[104.8723189720001,9.793017359000146],[104.89278923400016,9.851095140000112],[104.9394291570002,9.849564634000131],[104.96998131600017,9.853664455000157],[104.97689863400015,9.8712425800001],[104.99333743600008,9.888128973000093],[105.05486087300018,9.933417059000107],[105.07667076900006,9.943426825000103],[105.08668053500006,9.935939846000123],[105.08936608200005,9.919867255000142],[105.11329186300011,9.857082424000083],[105.1131291020001,9.871039130000142],[105.107106967,9.908596096000153],[105.107106967,9.952704169000143],[105.10043379000015,9.974107164000188],[105.08765709700006,9.99673086100016],[105.04265384200002,10.055080471000153],[105.00326582100014,10.092108466000084],[104.9836531910001,10.10346100500007],[104.96387780000006,10.105861721000108],[104.9243270190001,10.09625885600012],[104.90105228000013,10.097316799000083],[104.86890709700006,10.116115627000125],[104.84538821700019,10.147202867000132],[104.825450066,10.180853583000143],[104.80486087300008,10.207098700000174],[104.77198326900006,10.226629950000145],[104.73853600400011,10.231390692000145],[104.70736738400015,10.222316799000152],[104.68132571700008,10.199693101000094],[104.67790774800007,10.190090236000117],[104.67807050900008,10.18134186400013],[104.6756291020001,10.174872137000136],[104.66456139400006,10.172349351000122],[104.65837649800008,10.168036200000117],[104.65414472700014,10.148830471000151],[104.6508895190001,10.14447663000007],[104.61597741000017,10.146429755000113],[104.61304772200016,10.14447663000007],[104.60767662900011,10.153509833000086],[104.60971113400015,10.159979559000178],[104.61353600400017,10.167385158000158],[104.61304772200016,10.17918528900013],[104.60873457100014,10.18573639500012],[104.59546959700005,10.200873114000117],[104.59253991,10.210272528000132],[104.59253991,10.237534898000135],[104.58887780000005,10.260891018000123],[104.57935631600017,10.274847723000093],[104.551524285,10.295884507000125],[104.54737389400006,10.28945547100011],[104.54615319100006,10.286688544000157],[104.54542076900012,10.282212632000096],[104.53736412900017,10.282212632000096],[104.535899285,10.309556382000068],[104.52588951900006,10.328843492000189],[104.50375410200016,10.3573672550001],[104.49903405000006,10.37059153900013],[104.50196373800006,10.372951565000093],[104.5091251960001,10.37270742400014],[104.5174259770001,10.378485419000114],[104.52507571700014,10.389837958000086],[104.53003991000017,10.399603583000129],[104.53052819100017,10.409084377000125],[104.52491295700005,10.41941966400013],[104.5174259770001,10.41941966400013],[104.509450717,10.403998114000103],[104.49903405000006,10.39183177300012],[104.4858504570001,10.383286851000108],[104.46957441500015,10.378485419000114],[104.45362389400006,10.379828192000103],[104.45313561300006,10.390692450000172],[104.45582116000004,10.407171942000076],[104.4513452480002,10.41966380400008],[104.46957116700017,10.415773620000081],[104.48373051000013,10.4180473830001],[104.49427250200009,10.427736715000137],[104.53597538300019,10.487991435000197],[104.54429528800009,10.503778585000191],[104.55401045700009,10.518325500000145],[104.5668262130001,10.528066508000094],[104.58253584800016,10.531528829000136],[104.62553064000022,10.53336334200013],[104.7006340670001,10.524230557000138],[104.72442453000022,10.521337570000142],[104.77384200100013,10.515328268000133],[104.81880049700007,10.517188619000137],[104.85440555800012,10.531322123000166],[104.87853845300016,10.555971781000082],[104.91972456900007,10.618009338000133],[104.93135176600005,10.630695902000168],[104.94432255100017,10.641625469000147],[105.04245609600011,10.690821431000115],[105.06674401900014,10.713946635000184],[105.0662272540001,10.746425272000124],[105.03046716400016,10.811640931000142],[105.01480920400009,10.849209696000145],[105.01139856000006,10.88383290600015],[105.01785811400006,10.899594218000132],[105.0290719000001,10.914089457000088],[105.03854802900015,10.922582214000144],[105.04276615400008,10.926362610000112],[105.05578861600004,10.935457662000173],[105.07790612800014,10.946903992000102],[105.08374556500021,10.942614848000133],[105.0860710050001,10.929514873000159],[105.09754317200012,10.914347840000147],[105.11175419200006,10.909567769000148],[105.2091450070002,10.891647006000184],[105.2532959390002,10.883522848000084],[105.26869551600007,10.873652649000178],[105.3030086680002,10.844016215000138],[105.31789148000016,10.838848572000131],[105.32750329600016,10.848279520000105],[105.35726892200015,10.907965800000113],[105.39788659700011,10.95457794200017],[105.4104956470002,10.963001201000168],[105.41504317300016,10.960727438000147],[105.44336185700016,10.952975972000146],[105.46578942900007,10.941839702000122],[105.4738509520001,10.940909526000155],[105.52360324500015,10.951293531000204],[105.61723995200006,10.970836832000202],[105.63218754100014,10.973956605000138],[105.65492517100014,10.98429189000015],[105.67378706900016,10.996254984000188],[105.67404545100013,10.996410014000148],[105.69729984600022,11.010233460000109],[105.72613529500008,11.018372498000117],[105.75290368700016,11.015607808000153],[105.7696985270002,10.99646169100015],[105.78742354300013,10.965972595000082],[105.8214266360001,10.919670512000096],[105.82855798300008,10.90450347900017],[105.84003015200012,10.869699402000123],[105.84752323500005,10.855410868000133],[105.86101078300013,10.839313660000158],[105.87868412300006,10.828074036000203],[105.89935469600007,10.828384094000098],[105.90865645400018,10.838383484000104],[105.92049035700009,10.858149719000082],[105.92984379100014,10.880060526000136],[105.93134240700013,10.89636444100016],[105.96467370600007,10.869596049000094],[105.97397546400012,10.85882151300015],[105.99257897900006,10.837815043000148],[106.01790043100007,10.819805806000161],[106.04570235300011,10.805853170000162],[106.07221236200022,10.796861470000124],[106.12884973200019,10.791357931000135],[106.1550496830001,10.784846701000163],[106.17732222500015,10.766863302000075],[106.15158736200007,10.862981466000178],[106.12693770400008,10.908999329000094],[106.12182173700009,10.92522572900019],[106.12342370600012,10.927447815000107],[106.12466394100008,10.95318267800019],[106.12249353000017,10.955508118000123],[106.1281779380001,10.9657142140001],[106.13143355300011,10.96927988700017],[106.14910689300021,10.97129526800012],[106.17038952300007,10.97060202300014],[106.18083622300006,10.970261739000136],[106.18786421700004,10.97630788200017],[106.17665043100007,10.996203308000176],[106.16032067900007,11.05351247200015],[106.14874515800008,11.07072072400014],[106.13086511200007,11.084234111000113],[106.11350183200013,11.08692128500013],[106.09810225500014,11.077903748000095],[106.0866300860001,11.056328837000123],[106.07650150600008,11.077025249000144],[106.0630656330002,11.093329163000178],[106.02813236500006,11.122655538000146],[106.01314620000008,11.139269511000151],[105.98875492400006,11.17696746900019],[105.97397546400012,11.19037750300015],[105.92043868100009,11.203322449000154],[105.89987146100006,11.21859283500011],[105.88943282100016,11.246239726000125],[105.88943282100016,11.246394756000157],[105.88674564700013,11.267943828000128],[105.87351648,11.275901998000094],[105.85718672700008,11.279958598000178],[105.84442264800012,11.289880473000082],[105.84344079600007,11.304091492000138],[105.85997725500013,11.379306539000169],[105.87103601100014,11.413283793000119],[105.87382653800007,11.428244121000176],[105.87217289300006,11.443462830000113],[105.85666996300014,11.496276144000163],[105.8588403730001,11.522321066000131],[105.85780684500017,11.535627747000149],[105.85320764200011,11.546867371000104],[105.84214888500011,11.55495473200011],[105.81553552300008,11.559760640000206],[105.80333988500014,11.566220194000067],[105.79317921600014,11.582883693000099],[105.79042077700015,11.587407532000128],[105.79341800900008,11.607302958000133],[105.80489017800008,11.62492462200012],[105.81801599200006,11.638980612000138],[105.82098599000014,11.641473529000164],[105.84085697500015,11.658152568000148],[105.85791019700015,11.66156321200016],[105.90550419200022,11.644303284000086],[105.93408125800008,11.642856343000176],[105.94617354400006,11.65706736300015],[105.95526859600014,11.67799631800014],[105.98307051700007,11.706676738000125],[105.98875492400006,11.718975729000164],[105.9912870690001,11.73246327800014],[105.99211389200015,11.746312561000195],[106.0154199620001,11.770497131000168],[106.06120528100021,11.762900696000202],[106.11319177300007,11.747087707000103],[106.1546362720002,11.746312561000195],[106.22362430900013,11.724970195000196],[106.24320967600008,11.714583232000166],[106.25075443600022,11.706056620000155],[106.26512048400011,11.683990783000155],[106.27411218300008,11.676807760000202],[106.28734135000016,11.674585673000193],[106.34366866100018,11.689055075000141],[106.35431400500008,11.690140279000131],[106.36418420400005,11.688538310000098],[106.37808516400005,11.683835755000118],[106.40009932400018,11.66853953000016],[106.41281172700016,11.661769918000132],[106.4258341880001,11.6620799760002],[106.4350325930001,11.677272848000143],[106.4345874630002,11.67842812700016],[106.42609257100015,11.700475566000136],[106.39885909000006,11.746312561000195],[106.39777388500008,11.762125549000189],[106.4031482340001,11.775871481000124],[106.41136478700017,11.789152323000138],[106.41828942900004,11.803415019000113],[106.41963301700011,11.812044983000147],[106.4202531330001,11.830958557000185],[106.42139001500018,11.837573141000092],[106.43616947400018,11.86118927000011],[106.43875329700019,11.863721416000189],[106.43312056500017,11.888371073000187],[106.40350996900005,11.942889709000113],[106.39541619700006,11.965807400000159],[106.39400150500015,11.969813131000123],[106.41746260600021,11.975859274000157],[106.42914148000008,11.976841126000139],[106.44206058800007,11.974877421000187],[106.45105228700007,11.968469544000158],[106.45513472600007,11.959736226000174],[106.46050907400009,11.952914938000132],[106.47373824100012,11.952088115000109],[106.50453739500009,11.973378804000092],[106.5524414470001,11.972810364000138],[106.63858606000011,11.961131490000156],[106.63062788900007,11.976169332000154],[106.68049564600018,11.965058899000127],[106.70157963000011,11.97079498300019],[106.72111332300014,11.996374817000145],[106.73279219600008,12.028879293000074],[106.74922530100017,12.05234039300015],[106.77196293200015,12.065827942000112],[106.79056193400018,12.067408857000173],[106.80296879100015,12.06846344000013],[106.87929488100009,12.062727356000082],[106.91629520700016,12.066913147000106],[106.95339888600014,12.081072490000151],[106.97768680900006,12.097247213000143],[107.0460030520002,12.164374899000093],[107.07757735200006,12.202770487000123],[107.10424239100021,12.221218974000138],[107.11623132300011,12.232122702000183],[107.12294926000018,12.246230367000123],[107.15250817900014,12.277029521000188],[107.21188440000017,12.305709941000188],[107.22782438100009,12.310591880000175],[107.27616988100011,12.325398661000136],[107.32019820200011,12.329222718000082],[107.34381433100012,12.315115051000149],[107.37378666200007,12.269433086000133],[107.3930102950001,12.252844950000124],[107.41585127800008,12.254085185000164],[107.44964766500007,12.299043681000171],[107.47378055800013,12.315373434000122],[107.49956709800014,12.325812073000149],[107.51429488200014,12.343847148000151],[107.52225305200008,12.36658477800013],[107.52726566600009,12.391131083000104],[107.55666955600005,12.472676494000154],[107.55677290900009,12.496085917000116],[107.55666955600005,12.496189271000148],[107.55666955600005,12.49624094700016],[107.54964156100007,12.509211731000093],[107.55176029500008,12.520063782000136],[107.55796146700017,12.530864156000163],[107.56343916800009,12.543628235000126],[107.5669531660002,12.573910624000163],[107.56509281500021,12.606415100000092],[107.54008142100005,12.716692607000155],[107.53775598100012,12.746561585000165],[107.53863448100005,12.773433329000168],[107.53594730600005,12.79963328000018],[107.52235640500012,12.827486878000158],[107.4942961020001,12.858751119000146],[107.48737146000022,12.870559184000157],[107.48334069900014,12.885571188000142],[107.47961999600014,12.915879415000177],[107.46835453300017,12.941097514000134],[107.46608077000022,12.952182109000134],[107.46783776900011,12.963034160000177],[107.47378055800013,12.972878520000165],[107.47894820200005,12.976857605000149],[107.48137699400009,12.982257793000201],[107.48106693600019,12.988769023000174],[107.47858646700016,12.996081238000158],[107.46298018400009,13.007320862000128],[107.46039636300011,13.021609396000201],[107.56159684900015,13.262014078000163],[107.57490707500018,13.29363290500011],[107.6069507240002,13.369753520000188],[107.61051639900009,13.400371806000123],[107.6043152270001,13.498531190000094],[107.59692549700017,13.535066426000114],[107.51429488200014,13.692550354000105],[107.49672489400002,13.717044984000152],[107.47378055800013,13.741642965000139],[107.47176517800008,13.74608713800015],[107.46225671400012,13.761202495000148],[107.44323978700001,13.783475037000116],[107.43817549600007,13.798487040000097],[107.43853723200006,13.808951517000125],[107.44499678600019,13.830448913000168],[107.44623702000015,13.83938893600019],[107.43538496900007,13.86969716400013],[107.43982914300008,13.886466167000092],[107.4453068440001,13.897809143000174],[107.4480456950001,13.909307150000187],[107.44598789700015,13.92163556300008],[107.44515181500006,13.926644592000116],[107.4310441490002,13.955996806000172],[107.43011397400008,13.96516937300008],[107.4313542080001,13.974703674000166],[107.43073409000013,13.984470520000116],[107.4244812420002,13.994056498000118],[107.40902998900006,13.999921773000125],[107.37156457600005,13.996278585000127],[107.35456302900009,14.002402242000187],[107.34314253800014,14.020618185000146],[107.34350427300015,14.040927022000162],[107.34686324100002,14.061675110000095],[107.34474450700006,14.08131215400013],[107.33363407400005,14.098546245000122],[107.32417728700008,14.10808054600011],[107.31993981900021,14.119836934000189],[107.32474572800007,14.143866476000126],[107.35859379100012,14.238615215000081],[107.36360640500017,14.273832703000137],[107.36376143500014,14.283237814000188],[107.36091923100017,14.293288880000134],[107.35213423700006,14.31259002700017],[107.34991215000016,14.321555888000205],[107.35177250200016,14.341968079000154],[107.35900720300005,14.360287374000137],[107.37941939300016,14.395453186000095],[107.38226159700017,14.404574076000157],[107.38381189000009,14.413617452000125],[107.38691247600009,14.421911520000078],[107.3948706460001,14.42909454400012],[107.40778975400009,14.433047791000192],[107.41362919100018,14.428732809000124],[107.41734989500011,14.422066549000121],[107.42380944800007,14.418965963000176],[107.4431364340002,14.423668519000145],[107.45574548400012,14.433874613000128],[107.46473718300014,14.44904164600014],[107.4767261150001,14.475241597000162],[107.48044681800016,14.488858338000156],[107.48137699400009,14.495963847000096],[107.48571781500007,14.509528911000174],[107.50008386300007,14.52976023400008],[107.50525150600018,14.541025696000132],[107.5064400630001,14.556864522000138],[107.50256433200015,14.586604309000123],[107.50401127200016,14.602107239000134],[107.52726566600009,14.652827657000117],[107.53243331000007,14.677942403000145],[107.52039270000009,14.704581605000087],[107.52225305200008,14.718689270000198],[107.51465661700016,14.728223572000104],[107.50442468300017,14.736285095000182],[107.49806848200015,14.745948589000122],[107.50928226700009,14.758635152000165],[107.50432133000012,14.773182068000125],[107.4942961020001,14.788762513000153],[107.49088545800005,14.80423960400016],[107.4988436290001,14.81764963800019],[107.54059818500015,14.85684621200015],[107.55532596900015,14.876199036000115],[107.55816817300015,14.88671519000016],[107.54964156100007,14.895267640000098],[107.48949019400018,14.94030365000013],[107.47378055800013,14.94823598200017],[107.4619466560001,14.956814270000109],[107.45393680900004,14.96787302600012],[107.44990604700016,14.981102193000195],[107.45140466300015,14.995933329000136],[107.44468672700012,15.01182383300015],[107.44556522700006,15.025388896000138],[107.45507369000015,15.034122213000117],[107.47378055800013,15.035750021000153],[107.50238603900007,15.044037437000098],[107.5189974360002,15.048849996000115],[107.53522383700013,15.050400289000137],[107.56261234600007,15.045801087000184],[107.57801192200006,15.047248027000178],[107.58907067900006,15.058177592000147],[107.5900008550001,15.068900452000078],[107.5808024500001,15.086935527000078],[107.58049239100009,15.096754049000138],[107.58498824100016,15.10429880800018],[107.59919926000012,15.114789124000138],[107.60540043200008,15.120602722000115],[107.61578739400014,15.135511373000154],[107.62131677300012,15.154528300000136],[107.62359053600014,15.187239482000122],[107.62725956300014,15.196515402000143],[107.6367163500001,15.205067851000166],[107.64260746300008,15.202458191000147],[107.64746504800021,15.197652283000153],[107.6539762780001,15.19956431100016],[107.65681848200009,15.205687969000138],[107.6643632400002,15.253152771000131],[107.66410485900022,15.268552348000114],[107.65759362800006,15.28242747000017],[107.64307255100013,15.297852885000168],[107.59847578900009,15.330615743000166],[107.58659021000008,15.343353984000132],[107.57987227400017,15.361234030000103],[107.57770186400013,15.399629619000123],[107.5763597370002,15.403053568000187],[107.57315433800014,15.411230977000171],[107.55558435100008,15.415752665000113],[107.51264123600018,15.409422302000095],[107.49393436700021,15.420041809000168],[107.48964522300005,15.437921855000056],[107.4901619870001,15.461512146000144],[107.48747481300015,15.48140757200015],[107.47378055800013,15.488254700000097],[107.46654585800016,15.484353129000155],[107.46080977400018,15.484378967000154],[107.45646895400013,15.488332214000039],[107.45336836800018,15.495902812000095],[107.45336836800018,15.495954489000027],[107.44789066600018,15.508124288000104],[107.44298140500015,15.509209494000016],[107.43796879100009,15.505592143000042],[107.43212935400011,15.503886821000052],[107.41223392800012,15.508796082000103],[107.40505090300015,15.508589376000046],[107.39497400000012,15.501483867],[107.38866947400018,15.49251800500015],[107.38164147900008,15.488538920000096],[107.36934248900016,15.496057841000138],[107.31642582200018,15.588739523000115],[107.30355839000018,15.5997466030001],[107.26542118400013,15.618660177000052],[107.24872969600007,15.63108835800004],[107.23911787900008,15.645118510000131],[107.23457035300012,15.660931498000037],[107.2300228280001,15.70240183600019],[107.22568200700013,15.716819560000102],[107.21529504400009,15.72751658100013],[107.16025964400015,15.758729146000107],[107.14878747600014,15.773456930000107],[107.15018274000008,15.794282532000167],[107.17524580900013,15.848542786],[107.18625288900009,15.859394837000153],[107.19860355700015,15.862082011],[107.20883549000015,15.85913645400008],[107.21808557100016,15.854795634000096],[107.22723230000005,15.853297018000191],[107.23565555900021,15.85551910400001],[107.3050570070001,15.899134013000051],[107.32293705300006,15.90585195000007],[107.36107425900009,15.91231150400013],[107.37554366000015,15.919081116000157],[107.3906331790001,15.935824280000121],[107.4180216880001,15.983573303000083],[107.43269779500017,15.995923971000067],[107.44473840300006,16.00997996100007],[107.44354984600014,16.018919984000192],[107.43672855600008,16.02687815400016],[107.43212935400011,16.03829864500007],[107.43329211500006,16.055460998000157],[107.43342126500008,16.057367248000144],[107.43564335200008,16.068839417000063],[107.4310441490002,16.073697001000184],[107.4115104570001,16.073076884000116],[107.35590661600011,16.059279276000055],[107.32686446200009,16.056075338000184],[107.29895918800005,16.06418853800001],[107.27591150000015,16.084032288000103],[107.23880782100017,16.129817606000028],[107.21281457600004,16.146664123],[107.19715661600017,16.151004944000178],[107.18320398000017,16.15322703],[107.16966475500007,16.15689605699999],[107.15436853100007,16.166042786000062],[107.14201786300006,16.176998189000145],[107.13599030600008,16.184783784000118],[107.1333362230001,16.1882119750001],[107.12749678600014,16.20097605400015],[107.11685144100014,16.254616190000135],[107.10827315299998,16.267483623000132],[107.08910119600007,16.281074524000033],[107.07060103400006,16.290014547000155],[107.06798023900015,16.290809443000015],[107.0533927820002,16.29523386600009],[107.01432539900011,16.299419657000115],[106.98021895400021,16.298334453000038],[106.9672998460002,16.299884745000142],[106.9565511480001,16.307067769000085],[106.95407067900011,16.313837383000035],[106.9506600340001,16.336316631000145],[106.94600915500021,16.346135153000105],[106.93949792500015,16.35171620700011],[106.9150032960001,16.364738668000157],[106.8977433680002,16.37853627500003],[106.8884416100001,16.390886943000066],[106.87629764900007,16.418017070000033],[106.87283532700016,16.417345276000148],[106.86653080200014,16.41403798400016],[106.85986454300021,16.411815898000057],[106.85588545700014,16.414658102000132],[106.85588545700014,16.42034250900015],[106.85821089700008,16.424631653000134],[106.86136315900013,16.42788726900004],[106.86260339400016,16.43057444300014],[106.86684086200009,16.463854065000092],[106.86405033400015,16.50405833000012],[106.84668705300007,16.530051575000172],[106.82286421800009,16.530981751000027],[106.80141849800006,16.49610015900005],[106.7973360600001,16.479460347000114],[106.78612227400018,16.469125061000042],[106.75914717600007,16.45248525],[106.75459965000013,16.44426869800016],[106.75439294400016,16.436568909000172],[106.75253259300014,16.42902415000013],[106.75151087800006,16.42826829000002],[106.74240401200021,16.421531067],[106.73248213700012,16.41755198200012],[106.72571252500008,16.41713857100011],[106.72256026200009,16.421634420000103],[106.72266361500013,16.43248647100016],[106.69289799000015,16.42788726900004],[106.6706771240001,16.444423726000096],[106.6551741950001,16.470830384000077],[106.64116988200013,16.51036285400012],[106.63967126500019,16.52178334600005],[106.64432214400009,16.57532012900016],[106.64018803000012,16.586637268000132],[106.62494348100019,16.59351023400002],[106.61155928600007,16.594595439000116],[106.59140547700011,16.602450256000154],[106.5724402270001,16.613560689000067],[106.54975427300016,16.637796936000044],[106.5406592210002,16.659139303000146],[106.53507816600009,16.683530579000163],[106.53355047300008,16.950638060000117],[106.53342452000012,16.972660217000126],[106.52453617400013,16.989248353000146],[106.49683760600007,16.96392690100008],[106.47373824100012,16.970696513000107],[106.45652998900013,16.97359039300009],[106.43720300300016,16.980463358000133],[106.4202531330001,16.98867991200008],[106.41136478700017,16.99570790700001],[106.41136478700017,16.99581125900012],[106.40883264200008,17.005371399000026],[106.404019841,17.014641771000026],[106.38712854000008,17.04717763300009],[106.38790368700009,17.051673482000112],[106.39436324100014,17.06221547400015],[106.39493168100007,17.068003235000145],[106.3846480710001,17.08536651600015],[106.33653731300015,17.12856801400001],[106.30635827700021,17.176523743000033],[106.3008288990002,17.191561585000116],[106.30165572100006,17.202000224000145],[106.30976892200007,17.217916565000067],[106.31054406800014,17.227114970000073],[106.30697839400008,17.23295440700015],[106.29312911000012,17.24690704300015],[106.28796146600021,17.25378001000003],[106.28568770400014,17.265975647000133],[106.28666955600008,17.27656931600002],[106.2845508230001,17.284785868000043],[106.27261356600016,17.289850159000125],[106.25995284000012,17.289230042000057],[106.25478519700013,17.283183899],[106.25235640500014,17.274553935000156],[106.24791223200006,17.2662340290001],[106.2333911540002,17.251971334000032],[106.22181563400008,17.244891663000104],[106.20729455600022,17.246286927000185],[106.18543542500018,17.2573973600001],[106.01929569500012,17.39449493400015],[105.9323242600001,17.49572906500005],[105.93216923100007,17.49572906500005],[105.91113692300016,17.516813050000096],[105.84602461800014,17.597996725000044],[105.81987634300006,17.62156117800005],[105.78742354300013,17.642076722000027],[105.73528202400004,17.664039205000094],[105.72308638500006,17.673495993000145],[105.71383630400011,17.689464009000105],[105.70122725500019,17.727601217000156],[105.69202884900018,17.74408599900012],[105.66980798400019,17.773076477000117],[105.64396976700007,17.82010203100019],[105.60521244300006,17.85426015300008],[105.5941536870001,17.88810821500006],[105.60603926600007,17.96412424800003],[105.60343050400009,17.969183917000166],[105.58981286600012,17.99559519400016],[105.58981286600012,17.99575022400002],[105.56614506100013,18.008255920000025],[105.55932377100007,18.01533559200014],[105.55555139200013,18.025154114000102],[105.55188236500013,18.04794342000009],[105.54650801700008,18.058950501000183],[105.5381364350001,18.066727804000024],[105.52066980000015,18.075900371],[105.51250492300012,18.08282501300009],[105.4960718190001,18.118145854000158],[105.49198938000008,18.121065572000145],[105.48062056500007,18.123649394000083],[105.47602136200011,18.127318421000055],[105.47684818600007,18.12964386],[105.47912194900006,18.133493754000042],[105.48118900500006,18.138713074000165],[105.48087894700015,18.144810893000013],[105.47281742300007,18.171992697000107],[105.46671960400008,18.180958558000142],[105.45142338100007,18.192714946000038],[105.43137292500009,18.200543925000076],[105.41003055900009,18.201887512000113],[105.3919954830001,18.19421356200006],[105.38610437100007,18.18493764200012],[105.38155684500006,18.162768453000083],[105.37747440600005,18.155688782000155],[105.36832767800016,18.149952698000035],[105.36553715000011,18.151037903000102],[105.3633150640002,18.155223694000043],[105.35592533400009,18.158737691000013],[105.34011234500011,18.162639262000155],[105.32187056500005,18.170080669000086],[105.30559248900013,18.181061911000157],[105.29505049700006,18.195608826000022],[105.29437870300009,18.20695180300002],[105.3008382570001,18.230929667000012],[105.2992879650001,18.242040100000125],[105.29251835100014,18.25273712200014],[105.28802250200013,18.253408916000026],[105.28311324100011,18.250179138000064],[105.25691977000011,18.247463736],[105.24647465100004,18.246380921000124],[105.2359326580001,18.249455669000056],[105.22926639800008,18.255320944000132],[105.22048140500007,18.270798035000055],[105.21474532100014,18.277851868000155],[105.16616947400021,18.306790670000126],[105.15666101100007,18.319838969000088],[105.15598921700008,18.34063873300012],[105.16224206600005,18.353893738000025],[105.16286218300016,18.36601186100002],[105.14544722500008,18.383168437000094],[105.11397627800014,18.405130920000047],[105.09077356000014,18.426524963000148],[105.0799731860002,18.454352722000024],[105.08524418200012,18.49577138300016],[105.10048872900009,18.551168519000115],[105.11361454300007,18.580830790000093],[105.1281356210001,18.598917542000024],[105.14033125900019,18.600467834000128],[105.15206180900012,18.596798808000027],[105.16208703600014,18.598194072000112],[105.16947676600014,18.61485972100003],[105.16947676600014,18.618327167000146],[105.16947676600014,18.630569356000095],[105.16286218300016,18.638992615000078],[105.14110640500022,18.653074443000104],[105.11268436700018,18.698342998000115],[105.10028202300012,18.70206370100011],[105.08865482600018,18.70056508400002],[105.07697595200008,18.69751617500019],[105.06457360900006,18.696637675000044],[105.04033736200014,18.705009258000032],[104.99015954600011,18.73301788400012],[104.97382979400018,18.73606679300015],[104.95687992400016,18.731674297000083],[104.93724287900014,18.731157532000125],[104.91972456900007,18.735575867000037],[104.90923425300011,18.74567861000015],[104.89936405400013,18.770612488000054],[104.87290572100008,18.77797638000005],[104.8153898520002,18.773661397000083],[104.80164392100019,18.775134176000094],[104.76288659700006,18.786451314000043],[104.72195886300014,18.792006531000155],[104.71027998900016,18.79608896900008],[104.70252852400009,18.802471008000012],[104.6908496500001,18.819317525000187],[104.68557865500006,18.824769389000082],[104.67565677900002,18.828205872000108],[104.6563297930002,18.829704489],[104.64620121300007,18.832546692000093],[104.6312150470001,18.842365215000044],[104.60398156700009,18.868694357000024],[104.58966719600019,18.879107157000035],[104.55607751500006,18.89647043900005],[104.54429528800009,18.906805725000154],[104.50987878500021,18.95636342400003],[104.4976831470001,18.967990621000084],[104.48093998200014,18.97770579000003],[104.46212976100006,18.98240834600001],[104.43107222500012,18.97933359800005],[104.41324385600014,18.98310597699999],[104.40073815900016,18.992278544000087],[104.37200606400003,19.033568014000096],[104.35515954700006,19.04788238499999],[104.3391398520001,19.055194601000082],[104.32198327700016,19.060465597000118],[104.30286299700018,19.068656312000044],[104.28725671400011,19.080490214000136],[104.2743376060001,19.093460999000072],[104.25991988100012,19.10405466800013],[104.25960326300012,19.104129804000063],[104.23955936700004,19.10888641400005],[104.21062056500008,19.100747376000143],[104.20183557200014,19.109170634000137],[104.20173221900009,19.127050680000096],[104.1981148690002,19.1469461060001],[104.1878312590002,19.156583761000107],[104.14773034700013,19.18288706500006],[104.03672937000006,19.230248515000042],[104.01616215000016,19.23487355499999],[103.99518151900004,19.23384002700011],[103.9739941810001,19.22528757700009],[103.97275394700009,19.22528757700009],[103.94314335100015,19.24559641500009],[103.9179769290001,19.25815378800003],[103.91094893400006,19.26301137300014],[103.90588464400011,19.27003936800004],[103.8926554770002,19.29388804100013],[103.87673913600011,19.29580006900015],[103.85854903200007,19.29533498100012],[103.84842045100018,19.299908346000066],[103.85674035700006,19.317194112000053],[103.87002120000008,19.326883443],[103.90588464400011,19.34179209400004],[103.92128422100009,19.352773336000112],[103.94102461800006,19.381350403000095],[103.95280684400014,19.390962219000116],[103.9739941810001,19.39566477500007],[103.9966801360001,19.406930237000054],[104.02039961800018,19.414991761000053],[104.03512740100021,19.416671244],[104.0382796640001,19.412924703000087],[104.03879642800021,19.413389791],[104.0465478930001,19.42749745700003],[104.04990686100015,19.437471008000145],[104.05404097500015,19.460570374000113],[104.06050052900011,19.471293234000044],[104.07052575800004,19.47702931700009],[104.08127445500006,19.479303080000093],[104.08995609600012,19.483669739],[104.09414188700006,19.49547780400009],[104.09414188700006,19.49552948000003],[104.09398685700009,19.49558115700013],[104.09398685700009,19.49563283300013],[104.08251468900019,19.509301250000146],[104.07925907400013,19.525708516000023],[104.07796716400017,19.542890930000098],[104.0715592850001,19.55914316900002],[104.06019047100014,19.56816070600014],[104.0289262300001,19.586040752000102],[104.01735070800005,19.6004068000001],[103.99766198800015,19.652522482000066],[103.99518151900004,19.66489898700003],[104.00096927900015,19.680737813000135],[104.01027103700008,19.68456186900009],[104.02174320500008,19.681435445000133],[104.06969893400012,19.658026022000072],[104.0887158620001,19.651902364000094],[104.10923140500009,19.654873759],[104.11718957600013,19.66099741700016],[104.1244759520001,19.675906067000128],[104.13124556500006,19.68244313600009],[104.136309856,19.687455750000154],[104.15816898600016,19.687739970000123],[104.20020338600007,19.69858607200005],[104.22896569900009,19.70600758900009],[104.24214318800009,19.695181376000065],[104.27702478100016,19.683890076000083],[104.2952665610002,19.654873759],[104.34187870300016,19.68301157700016],[104.3600171310002,19.687455750000154],[104.38006758600014,19.68528534000008],[104.39174646000012,19.676836243000178],[104.40125492400009,19.664433899000116],[104.41541426700014,19.65081715900011],[104.42378584800022,19.645778707000048],[104.44910730000012,19.635159200000047],[104.50584802300014,19.60280975300016],[104.52279789300022,19.59937327100012],[104.54615564000008,19.601931254000036],[104.5548372800001,19.605445252],[104.5702368570002,19.615289612000154],[104.57922855600006,19.6180284630001],[104.5878068440002,19.615961406000125],[104.60496342000008,19.60647878000016],[104.61426517700006,19.60743479500003],[104.62305017100007,19.6180801390001],[104.65477950100009,19.697971904000113],[104.6630477300001,19.71122690800003],[104.67596683800016,19.724688619000077],[104.6916764740001,19.735463155],[104.70418217000011,19.73869293200009],[104.71777307200009,19.740191549000187],[104.73673832200015,19.745669251],[104.7607161870001,19.766520691000053],[104.78521081600009,19.776933492000083],[104.80500288900012,19.79088612900007],[104.81507979400013,19.822408753000115],[104.81688846900013,19.838996887000135],[104.81663008600017,19.848091940000117],[104.80924035700015,19.853672994000036],[104.79027510600011,19.859667460000153],[104.7607161870001,19.861450297000047],[104.75554854400016,19.86700551300005],[104.76180139200008,19.885505677000154],[104.7806632890001,19.908088278000108],[104.83533695500014,19.938887431000083],[104.8579195560001,19.95521718400012],[104.8671696370001,19.969143982],[104.8690299890001,19.977748108000057],[104.87383589700019,19.98265736900008],[104.89290450100005,19.98549957300004],[104.92246342000013,19.982243958000154],[104.9356925870002,19.984155986000175],[104.94568809100015,19.99237326399999],[104.94949019400016,19.99549896300006],[104.95321089700005,20.00927073200002],[104.9514538990002,20.02151804600014],[104.94830163600014,20.033662008000036],[104.94644128500012,20.052188009000147],[104.94365075700009,20.06094716400004],[104.94396081600016,20.06709665900003],[104.94747481300013,20.069525452000065],[104.96116906800015,20.072109274000084],[104.9644246830002,20.076088359000053],[104.95687992400016,20.091797994000117],[104.9183809820001,20.115724182000022],[104.90489343200014,20.134637757000164],[104.90344649300008,20.157091166000058],[104.90897587100008,20.16781402600016],[104.90799401900009,20.17533294700003],[104.81916223200008,20.220989075000134],[104.7788029380001,20.21902537000001],[104.73358606000008,20.20476267500011],[104.6908496500001,20.196546122000186],[104.6570532640002,20.21269500699999],[104.65302250200008,20.22579498300003],[104.65198897400015,20.246103821000148],[104.65353926600008,20.26646433600008],[104.65736332200018,20.279615987000156],[104.6658382570001,20.285713806000114],[104.67410648600006,20.285300395000107],[104.68185795100007,20.287470805000094],[104.68862756400009,20.301035869000156],[104.68929935800006,20.310001729000117],[104.68769738800015,20.321706442],[104.68464847900012,20.333049419000176],[104.68092777600012,20.34098175000004],[104.66640669800015,20.35178212500007],[104.62842452000021,20.365812277000156],[104.61230147300014,20.37674184200013],[104.58935713800011,20.40681752600004],[104.57550785300006,20.41405222600018],[104.43236413600007,20.411054992000075],[104.39153975500008,20.420666809000082],[104.35981042500006,20.439735413000065],[104.36642500900015,20.458493958000147],[104.42368249500012,20.495442607000097],[104.42378584800022,20.495442607000097],[104.44497318500007,20.534613342000128],[104.46967452100009,20.516164857000135],[104.49582279500012,20.51192738900009],[104.52073083500008,20.519265442000076],[104.54264164200012,20.535698548000042],[104.60723718300008,20.61905263200016],[104.6140708880001,20.64261560500013],[104.61519535300013,20.646492819000127],[104.6007259520002,20.660548808000055],[104.54388187700006,20.6787389120001],[104.49230879700022,20.70209666000015],[104.47566898600022,20.718219706000028],[104.46616052300013,20.749638977000146],[104.45262129700004,20.763591614000163],[104.4321574300001,20.76576202400004],[104.40931644700018,20.765193584000187],[104.38905928600009,20.770981343000145],[104.38166955600016,20.778371074000077],[104.3733496510001,20.795734354],[104.36797530100014,20.803124085000018],[104.36032719000016,20.808085022000128],[104.34466923000011,20.813666077000065],[104.33634932500016,20.81904042600003],[104.32322351100018,20.83387156200014],[104.30720381700016,20.864619039],[104.2952665610002,20.87981191000013],[104.2878768320002,20.885754700000135],[104.27893680900016,20.891542460000107],[104.26906661000007,20.89619333899999],[104.2600232340002,20.898932191000043],[104.25056644700007,20.89826039700013],[104.22803552300016,20.892317607000123],[104.22105920500022,20.892007548000052],[104.21754520700009,20.897020162000032],[104.20710656700007,20.917639059000024],[104.20126713100014,20.92544220000003],[104.19387740100014,20.929886373000144],[104.16540368700012,20.93975657100013],[104.15475834100012,20.941255188000028],[104.13207238800007,20.941668600000142],[104.12261560100009,20.94316721600013],[104.1142440190001,20.947042949000107],[104.0991545000002,20.95768829399999],[104.09228153500005,20.961202291000134],[104.05667647300017,20.95882517500011],[104.01058109600015,20.90807891900012],[103.9739941810001,20.90234283400015],[103.96231530800006,20.902704570000154],[103.95218672700015,20.90027577799999],[103.93213627200006,20.891800843000098],[103.85860070800005,20.86957997600014],[103.85048750800014,20.86477406900015],[103.83575972500014,20.85226837100005],[103.82681970200022,20.8476691690001],[103.81669112200008,20.846894023000104],[103.79643396000009,20.849529521000093],[103.78532352700013,20.84596384700013],[103.77555668200009,20.834905091000124],[103.76516971900017,20.81624989900017],[103.75674646000019,20.795992737000162],[103.75302575700006,20.779869690000066],[103.75519616700015,20.759405823000023],[103.75860681200018,20.7497423300001],[103.75457605000011,20.74292104100014],[103.73437056500019,20.73093210899999],[103.72201989700014,20.72684967100015],[103.7134416100001,20.72576446500007],[103.70724043800013,20.721837057000116],[103.7023828530001,20.708711243000053],[103.70362308800006,20.699254456000077],[103.71375166900012,20.67982411700011],[103.71426843300006,20.671710918000187],[103.70848067200009,20.66674998000006],[103.69762862100012,20.661530661000125],[103.68543298400019,20.65765492800007],[103.67633793200011,20.65651804600016],[103.66538252800015,20.658275045000053],[103.66114506000011,20.66075551400003],[103.6579411210001,20.664734599],[103.63603031400007,20.68282135000011],[103.5973763430001,20.72235382100014],[103.57794600500019,20.732895813000123],[103.5161409920001,20.745349833000102],[103.5161409920001,20.745504863000136],[103.51608931500019,20.74555653900016],[103.51608931500019,20.745504863000136],[103.50596073500006,20.745969951000077],[103.4973307700001,20.74834706700001],[103.48937260000011,20.752481181000135],[103.48162113500021,20.757907206000098],[103.47087243700011,20.770877991000035],[103.45257898000014,20.804312643000014],[103.44043501800014,20.815733135000027],[103.4265857340001,20.82069407200008],[103.42131473900022,20.818110250000174],[103.41826582900009,20.811805725000156],[103.4112378340001,20.805604553000148],[103.3908773200001,20.79475250300011],[103.38911460100016,20.794288275000085],[103.36379886900014,20.787621155000082],[103.35832116700013,20.78772450800001],[103.34767582200007,20.789068095000076],[103.31982222500008,20.79785308900007],[103.26339156100013,20.826378479000127],[103.24711348500009,20.830719300000013],[103.23812178600016,20.829892476000065],[103.22582913700009,20.826412811000026],[103.21858809400007,20.824363098000063],[103.2069092200002,20.824569804000035],[103.1970906980001,20.827825420000025],[103.1836548260001,20.83707550100003],[103.1752315680001,20.84120961500004],[103.16505131100021,20.843690084000013],[103.1469645600001,20.84601552400015],[103.13637089000022,20.850459696000158],[103.1300146900002,20.854903870000058],[103.1152869060002,20.868391419000133],[103.08670983900006,20.901981100000153],[103.06820967600012,20.931281636000122],[103.03710046400008,20.995463766000157],[103.01451786300012,21.040525615000107],[102.99916996300007,21.057372132000083],[102.97410689300014,21.067655742000067],[102.95948246300006,21.065795390000076],[102.95157596900012,21.068999329000135],[102.94682173700014,21.075872294000092],[102.94217085800008,21.08486399400006],[102.93529789200007,21.102382304000013],[102.92588454400007,21.14063976400017],[102.92563440000018,21.141656392000087],[102.91442061400014,21.15839955600005],[102.90418868000015,21.1641873170001],[102.8959204510002,21.164549052],[102.88909916200006,21.166409403],[102.88300134300019,21.176434632000124],[102.88300134300019,21.18609812400014],[102.89178633700006,21.205993551000162],[102.89297489400009,21.21508860300004],[102.8878589280001,21.22692250600015],[102.87814375900004,21.237619527000064],[102.8651212980002,21.246197816000073],[102.85018680900006,21.251675517000148],[102.8281726490001,21.25245066300009],[102.8091557210001,21.250590312000085],[102.80130090300011,21.254827779000138],[102.81277307200011,21.27389638300012],[102.82915450100013,21.285885315000158],[102.86300256400014,21.29379181000003],[102.87519820200006,21.30531565400004],[102.87881555200013,21.322162171000045],[102.87964237500009,21.367895813000146],[102.8838281660002,21.388359680000022],[102.91679773000006,21.43864084900015],[102.9180379640002,21.45011301699999],[102.90418868000015,21.452696839000094],[102.88475834200008,21.444066874000054],[102.8647595620001,21.43218129500012],[102.84967004500012,21.425411682000075],[102.89499027600007,21.495278219000067],[102.9165910240001,21.51357167600004],[102.9541081140002,21.557289938],[102.97410689300014,21.57532501200002],[102.97493371600014,21.578167216000097],[102.97529545100016,21.581009420000058],[102.97493371600014,21.583903300000046],[102.97410689300014,21.5866938270001],[102.96413334200022,21.608604635000134],[102.96082605,21.63284088100012],[102.96175622600018,21.701518860000093],[102.95989587400018,21.713042705000035],[102.9560201420002,21.7239464310001],[102.94780358900019,21.737123922000148],[102.94263594600008,21.738984273000156],[102.93700321500015,21.73505686500003],[102.86450118000008,21.705652975000035],[102.84718957500016,21.70446441700001],[102.83514896700008,21.716453349000158],[102.83189335200008,21.735780335000115],[102.83494226100012,21.775622864000024],[102.82646732600018,21.821304830000045],[102.80672692900006,21.83608429000016],[102.78915694200006,21.82032297799999],[102.7866764730002,21.739914449000036],[102.77468754100008,21.70787506100011],[102.75215661600012,21.680899964],[102.72115075700012,21.66167633100015],[102.71029870600015,21.659299215000132],[102.6574337160001,21.658420716000094],[102.65345463100013,21.656301982000016],[102.65066410300008,21.65780059800012],[102.64332605000006,21.668032532],[102.63681482000017,21.683638815000123],[102.63190555900016,21.706273092000103],[102.62978682500008,21.729114075],[102.63459273300006,21.787766826000123],[102.62513594600014,21.828642883000143],[102.59102950100007,21.9013516240001],[102.5602303470001,21.925432841000045],[102.51589196800015,21.939178772000062],[102.47806482000007,21.95757558300006],[102.46638594600009,21.99535105400004],[102.46731612200013,21.999226786000076],[102.46907312000022,22.002844137000164],[102.47124353000012,22.00599639900004],[102.47408573400016,22.008890280000017],[102.48287072800017,22.021395976000022],[102.46762618000011,22.034005025000123],[102.44261478700011,22.047440898],[102.42215091900007,22.062220358],[102.41522627800006,22.07348582000016],[102.40540775600013,22.098290508],[102.3987931720002,22.108884176000075],[102.3894397380001,22.117100728000125],[102.35807214400002,22.134722392000114],[102.28644860900008,22.200041403000156],[102.22624556500014,22.228411764000057],[102.20697025600012,22.245413310000075],[102.20056237800006,22.26546376600011],[102.18619633000006,22.278382874000144],[102.16888472500013,22.289648336000095],[102.15436364700011,22.304686178000093],[102.15281335500018,22.310835673000057],[102.15612064700011,22.322669576000166],[102.15612064700011,22.32809560200006],[102.15286503100012,22.332488098000127],[102.14418339000022,22.338585917],[102.1413928630001,22.34215159100016],[102.13136763600006,22.37372589100015],[102.12542484500013,22.38364776600004],[102.1186552330001,22.39754872600012],[102.12883549000017,22.410881246000045],[102.14702559400021,22.421061503000104],[102.1645439050001,22.425505676000014],[102.18655806500006,22.421061503000104],[102.20355961100009,22.41248321500008],[102.21802901200013,22.410674540000073],[102.23130985600018,22.42633250000013],[102.23663252800006,22.443437398000086],[102.24252364200007,22.47718210900014],[102.2525488690001,22.49547556600011],[102.37688236500017,22.615571595000134],[102.38432377100017,22.628852437000077],[102.38246342000016,22.630816142000086],[102.37858768800001,22.639084371000035],[102.37269657400012,22.645750631000155],[102.36334314000005,22.651435038],[102.35626346800008,22.658721415000073],[102.35585005700014,22.669935201000115],[102.36272302300019,22.677428283000054],[102.37316166200006,22.67835845900011],[102.38463383000006,22.677738343000144],[102.3949691170001,22.68052887],[102.40726810700014,22.693447978],[102.41522627800006,22.709829407000154],[102.4256132410002,22.745176087000075],[102.4256132410002,22.745305278],[102.44271814000015,22.76517486600001],[102.46778121000008,22.768585510000136],[102.49434289600018,22.760394796000114],[102.5157886150001,22.745176087000075],[102.52633060700006,22.72595245400005],[102.52891442900008,22.707814026000037],[102.53578739400015,22.695825094000057],[102.55836999500015,22.6949465950001],[102.5657597250001,22.699545797000084],[102.57035892700004,22.707090556000125],[102.57619836500012,22.71380849300014],[102.58668868000008,22.716082256000064],[102.5911845300001,22.712568258000104],[102.60611901900013,22.696703593],[102.6124752200001,22.691587626000015],[102.63226729400006,22.684973043000113],[102.67216149900011,22.67835845900011],[102.69272871900009,22.670503642000156],[102.75189823400015,22.62528676400008],[102.7712252200001,22.61779368100015],[102.81339318800016,22.608698629000074],[102.8318416750001,22.599706930000035],[102.84517419400012,22.58523752900011],[102.85313236500016,22.56844268900015],[102.85928186100014,22.55051096600009],[102.89369836400007,22.487362366000028],[102.90258671100011,22.477233785000166],[102.91958825700013,22.469223938000184],[102.95653690600008,22.45971547400002],[102.98909305800012,22.43759796199999],[103.00893680900012,22.430311585000126],[103.02903894100002,22.430156555000067],[103.04505863500012,22.440543518000098],[103.04908939600007,22.456821594000033],[103.04485192900009,22.472892965000185],[103.04418013600016,22.486483867000075],[103.05828780100009,22.49547556600011],[103.0744108480001,22.49816274000015],[103.09125736500008,22.505087382000127],[103.14200362100014,22.537798564000028],[103.14572432500009,22.54555002900004],[103.14469079600009,22.555781963000115],[103.13259851100011,22.569786276000016],[103.1300146900002,22.577951151000136],[103.14174524000006,22.607044983000137],[103.16846195500013,22.626475321000115],[103.22840661600006,22.655827536000103],[103.24489139800019,22.668694967000093],[103.25248783400016,22.678565165000165],[103.26995446800012,22.723265279000103],[103.3096419680002,22.787938334],[103.32157922400013,22.790392965000148],[103.3441618250001,22.782977397000035],[103.3570809330001,22.776026917000067],[103.36875980700009,22.767138570000142],[103.37894006300021,22.756777446000015],[103.38751835200017,22.745176087000075],[103.40172937100013,22.737838033000074],[103.40400313400002,22.723885397000075],[103.40234948700018,22.706522115000055],[103.4043131920001,22.688797099000155],[103.41092777500015,22.67474110900004],[103.44751469000008,22.618258769000175],[103.4731462000001,22.591645406000154],[103.48544519000009,22.58410064700011],[103.50363529500012,22.58141347300007],[103.51428064000012,22.587356262000085],[103.54621667500007,22.63143625900007],[103.55091923000006,22.640789694000105],[103.54992302200006,22.648662168],[103.5445630290002,22.691019185000144],[103.54714685000013,22.70068267900008],[103.56833418800008,22.724970602000084],[103.57680912300012,22.740835267000094],[103.58254520700015,22.755795593000144],[103.5900382900002,22.768017070000084],[103.60383589700015,22.776026917000067],[103.64693404200013,22.799048768000105],[103.65850956200009,22.793209330000124],[103.72641239500015,22.716288961000103],[103.79421187400007,22.659444886000173],[103.80532230700007,22.647404277000092],[103.80966312700015,22.63872263600014],[103.8296619060001,22.609163717000012],[103.83632816600019,22.602755839000064],[103.84418298400013,22.599293519000025],[103.8668172610002,22.57541900700015],[103.8726566980001,22.573610332000055],[103.88867639200012,22.57174998000015],[103.89461918200006,22.569217835000142],[103.9027840580001,22.55857249000014],[103.91704675300011,22.53325103800007],[103.9254183350001,22.528238424000122],[103.9407145590001,22.52467275000005],[103.95094649200016,22.516456197000124],[103.95952478000018,22.507102763000162],[103.9739941810001,22.515267639000015],[103.98536299700018,22.527153219000027],[103.98737837800016,22.540175680000075],[103.98556970200016,22.55454172800007],[103.98556970200016,22.57025136400013],[103.99006555200017,22.58534088100005],[104.00339807100008,22.61495147700016],[104.00748051000019,22.630247701000044],[104.01394006400008,22.691019185000144],[104.02381026300006,22.71918284100009],[104.0447392180001,22.745176087000075],[104.05404097500015,22.753754374],[104.06597823100012,22.774011536],[104.07331628500012,22.782667339000156],[104.0868555100001,22.791555685000063],[104.09905114800019,22.79460459400009],[104.12819665500008,22.7968266810001],[104.2132560630001,22.825016175000158],[104.24116133700008,22.8243960570001],[104.2330998130001,22.804810690000167],[104.22875899300001,22.783442485000148],[104.22968916800019,22.76194508900012],[104.23682051600021,22.742075501000116],[104.24948124200009,22.72832957000018],[104.30441328900011,22.70466176400005],[104.32523889200016,22.69251780200007],[104.34017338100007,22.68636830600009],[104.35546960500008,22.688642069000096],[104.36191128100015,22.692535546000116],[104.44900394700008,22.745176087000075],[104.4686409920001,22.764864807000105],[104.53333988400018,22.814396668000157],[104.55121993000014,22.832845154],[104.55354537000008,22.836049093000057],[104.56238203900007,22.83439544700012],[104.56269209900009,22.82984792100008],[104.56124515800016,22.8243960570001],[104.5646558020002,22.81995188400016],[104.5704952400001,22.81625701900016],[104.57447432400008,22.812277934000107],[104.57922855600006,22.80886729000015],[104.58842696200006,22.806851909000116],[104.59426639800014,22.809022318000117],[104.6044466550002,22.82021026600016],[104.6098210050001,22.823000794],[104.62904463800007,22.82077870700003],[104.66273767200008,22.810934346000053],[104.68320153900012,22.812174581000146],[104.70077152500019,22.818246562000024],[104.71534427900022,22.827083232000017],[104.72821171100006,22.839098002000085],[104.76288659700006,22.884728292000162],[104.77420373600015,22.89622629800003],[104.82360640500016,22.924131572000093],[104.82794722500014,22.934156799000032],[104.82701704900009,22.954284770000086],[104.79792321800008,23.08556874600005],[104.81146244300005,23.09618825300005],[104.83590539600019,23.099753926000016],[104.86127852400008,23.119597677000012],[104.86551599200006,23.133472799000074],[104.86675622600009,23.149466655000126],[104.87006351800008,23.163548482000138],[104.88086389200012,23.17171335900015],[104.89476485200007,23.170343933000183],[104.92101648000013,23.155771179000126],[104.93507246900006,23.15427256300002],[104.94520105000018,23.159827779000025],[104.9814262290001,23.19036855100005],[105.01568770300005,23.206827494000024],[105.04664188700015,23.226826274000032],[105.06105961100016,23.232459005000166],[105.14239831500018,23.25374969500014],[105.14591231300014,23.256695252000057],[105.14777266500013,23.260881043],[105.1503564860002,23.264756775000038],[105.15562748200009,23.266849670000013],[105.15841801000013,23.26576446600002],[105.16580773900014,23.260570984000097],[105.16896000200009,23.259434103],[105.17660811400017,23.25775461900004],[105.18244755100007,23.25442148800012],[105.18957889800016,23.25219940200013],[105.20089603700009,23.25400807700011],[105.21753584900009,23.26535105500001],[105.2238920500001,23.281706645000053],[105.22766442900016,23.300646057],[105.2359326580001,23.319792176000092],[105.24554447500012,23.33017913800002],[105.28006433200008,23.35878204400008],[105.29365523300005,23.366275127000122],[105.31215539600012,23.36581003900001],[105.32006189000006,23.354337870000094],[105.32435103400022,23.336742045],[105.33225752800014,23.317957662000097],[105.34403975500005,23.304185893000138],[105.3596460370002,23.29155100500013],[105.37571740700015,23.281499939000085],[105.38951501499999,23.275427958000037]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Angola","sov_a3":"AGO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Angola","adm0_a3":"AGO","geou_dif":0,"geounit":"Angola","gu_a3":"AGO","su_dif":0,"subunit":"Angola","su_a3":"AGO","brk_diff":0,"name":"Angola","name_long":"Angola","brk_a3":"AGO","brk_name":"Angola","brk_group":null,"abbrev":"Ang.","postal":"AO","formal_en":"People's Republic of Angola","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Angola","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":6,"mapcolor13":1,"pop_est":12799293,"gdp_md_est":110300,"pop_year":-99,"lastcensus":1970,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"AO","iso_a2":"AO","iso_a3":"AGO","iso_n3":"024","un_a3":"024","wb_a2":"AO","wb_a3":"AGO","woe_id":23424745,"woe_id_eh":23424745,"woe_note":"Exact WOE match as country","adm0_a3_is":"AGO","adm0_a3_us":"AGO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"AGO.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[11.73751945100014,-16.692577982999833],[11.738506688000113,-16.70582207599999],[11.715793545000109,-16.685006365999968],[11.701973057000117,-16.65567360999991],[11.669394143000147,-16.557209578999945],[11.671369885000104,-16.529743735999915],[11.681243656000047,-16.51743619799997],[11.701977019000111,-16.50039341199999],[11.719745932000109,-16.506082592999903],[11.721527540000068,-16.555433851999933],[11.725759311000104,-16.577325127999952],[11.725759311000104,-16.618422132999868],[11.726658696000072,-16.656626828],[11.73751945100014,-16.692577982999833]]],[[[13.982329549000069,-5.853285013999837],[14.006307414000075,-5.86692759199984],[14.021190226000101,-5.872508646999862],[14.140149374000146,-5.863516946999822],[14.163093710000084,-5.866100768999913],[14.222211548000132,-5.886978047999889],[14.241848592000082,-5.889561868999891],[14.346131632000093,-5.891525573999914],[14.436668741000089,-5.893385924999919],[14.48214400200007,-5.885531107999896],[14.545706014000132,-5.90165415399987],[14.57660852100011,-5.904651387999891],[14.703732544000076,-5.881396992999867],[14.759651665000147,-5.880469130999841],[14.797163533000058,-5.87984669999986],[14.888424113000042,-5.878296406999837],[14.979581340000038,-5.876746113999899],[15.070841919000117,-5.87529917399982],[15.16210249800011,-5.873748880999898],[15.253363078000092,-5.872198587999875],[15.344520304000069,-5.870751646999793],[15.435780884000081,-5.869201354999859],[15.527041463000073,-5.867754414999865],[15.618302042000066,-5.866204121999843],[15.70956262200005,-5.864757180999859],[15.800719849000131,-5.863206888999841],[15.892083780000066,-5.861656595999818],[15.983241007000116,-5.86010630299988],[16.0745015870001,-5.858556009999873],[16.100855892000112,-5.858107807999914],[16.16565881300008,-5.857005716999851],[16.257022746000104,-5.855558776999857],[16.31572717300014,-5.854628600999902],[16.34125533000008,-5.859796243999895],[16.358515258000097,-5.870234883999842],[16.37432824700008,-5.882843932999862],[16.396135701000105,-5.89410939499983],[16.412465454000138,-5.896796569999863],[16.427451619000124,-5.894626158999869],[16.45949100700011,-5.885221048999909],[16.479334757000117,-5.882223815999808],[16.49731815600009,-5.882843932999862],[16.515094848000043,-5.887081399999914],[16.552921997000112,-5.902377624999872],[16.560260051000085,-5.906408385999867],[16.59736372800009,-5.924701842999838],[16.59405643700009,-5.933176777999847],[16.580620564000128,-5.94898976599984],[16.58072391800007,-5.955397643999873],[16.590335734000064,-5.968006692999907],[16.595296672000103,-5.978548685999868],[16.597157023000108,-5.987850443999889],[16.601187785000036,-6.050585632999841],[16.604288371000052,-6.061851094999894],[16.61007613100014,-6.061230976999838],[16.61948124200009,-6.056580098999873],[16.62836958800011,-6.055339863999933],[16.63219364400004,-6.065261738999836],[16.611109660000125,-6.089756367999883],[16.630953410000103,-6.09172007299982],[16.643045695000097,-6.100711770999865],[16.660098917000113,-6.123966165999875],[16.671777791000096,-6.130167337999865],[16.68511031100013,-6.134301452999892],[16.69585900900006,-6.14091603499989],[16.70040653500007,-6.154351908999843],[16.717873169000114,-6.174092304999903],[16.72676151600012,-6.189181822999899],[16.724384400000105,-6.202410989999805],[16.717253052000046,-6.215123392999857],[16.71477258300007,-6.231556497999818],[16.715392700000052,-6.304833678999913],[16.716942994000078,-6.313308613999836],[16.720146932000148,-6.322610371999858],[16.722317342000025,-6.332428893999833],[16.720973755000074,-6.342350767999918],[16.715289347000123,-6.345968118999807],[16.706090943000106,-6.346691588999889],[16.69740930100008,-6.349792174999848],[16.69358524600011,-6.359817402999865],[16.692965129000072,-6.398368021999843],[16.69472212700012,-6.402192076999881],[16.70040653500007,-6.411287129999849],[16.707021118000085,-6.415421243999873],[16.71363570200006,-6.413974303999879],[16.718906697000108,-6.415317890999845],[16.720973755000074,-6.428340351999792],[16.71518599400008,-6.441362813999916],[16.706090943000106,-6.455212096999887],[16.706090943000106,-6.465030618999847],[16.727795044000114,-6.465960794999901],[16.721283813000042,-6.480533548999858],[16.721697224000053,-6.491799010999912],[16.72800175000009,-6.501100768999847],[16.738337036000075,-6.510609231999836],[16.747328736000043,-6.521978046999919],[16.746811971000085,-6.531589863999841],[16.734512980000147,-6.552363789999873],[16.730792277000116,-6.569830423999832],[16.73399621600009,-6.58605682399984],[16.74867232300008,-6.619543150999931],[16.75301314200007,-6.637216491999837],[16.75590702300005,-6.674113464999862],[16.760351197000148,-6.691993508999828],[16.768102661000086,-6.708323261999851],[16.823086385000096,-6.78511444099982],[16.826910441000052,-6.799790547999819],[16.828564087000103,-6.814363301999861],[16.832904907000085,-6.827799173999907],[16.844480428000107,-6.838444518999907],[16.855332479000083,-6.84216522199992],[16.879413696000114,-6.844645690999897],[16.8907825120001,-6.84712615899987],[16.91496708200009,-6.864076028999875],[16.92695601400004,-6.888570657999836],[16.93450077300008,-6.945724791999865],[16.93212365700012,-6.949858906999793],[16.928609660000088,-6.959264017999843],[16.928713012000117,-6.968669127999887],[16.93760135900004,-6.973009948999874],[16.949073527000053,-6.975387063999918],[16.955274699000114,-6.981484883999869],[16.95930546100004,-6.989443053999835],[16.96457645700013,-6.997194518999848],[16.973154744000084,-7.014764505999906],[16.96933068900006,-7.030370787999856],[16.96230269400013,-7.04742401099989],[16.961165812000047,-7.069231464999817],[16.929126424000117,-7.060653177999882],[16.92705936700014,-7.085664570999882],[16.947523234000126,-7.151086933999864],[16.945662882000107,-7.204623718999811],[16.95083052500013,-7.213202005999932],[16.96054569500006,-7.21909311999984],[16.972844686000087,-7.232218932999898],[16.98907108500012,-7.254853209999851],[16.99165490700011,-7.27056284499983],[16.99165490700011,-7.28606577499984],[16.996099080000107,-7.297951354999867],[17.022867472000087,-7.306012878999852],[17.056663859000082,-7.32988738999984],[17.082502075000093,-7.34228973399982],[17.093354126000037,-7.352314961999837],[17.097798299000146,-7.367404479999834],[17.097894948000146,-7.378293566999929],[17.098108358000044,-7.402337747999822],[17.103999471000122,-7.416083678999853],[17.118158813000093,-7.425488789999817],[17.126220337000063,-7.411432799999886],[17.132214803000096,-7.409572448999881],[17.13820926900013,-7.413706562999905],[17.146167439000095,-7.418047383999891],[17.167458130000085,-7.423525084999881],[17.176553182000134,-7.428175963999848],[17.180273885000073,-7.435410664999907],[17.17489953600011,-7.441611836999896],[17.163117310000104,-7.445539244999863],[17.151541789000134,-7.4512236529999],[17.146167439000095,-7.463109232999841],[17.148544555000058,-7.472617695999829],[17.15495243300009,-7.479128925999888],[17.16342736800007,-7.485226744999849],[17.172832479000135,-7.493805032999873],[17.18626835100008,-7.516335957999899],[17.202908163000103,-7.564291686999836],[17.21779097500007,-7.585995788999825],[17.266573527000105,-7.610387063999852],[17.286417277000112,-7.625166523999865],[17.282696574000084,-7.643976745999879],[17.287450806000095,-7.660203144999797],[17.28652063000004,-7.683664245999864],[17.28889774600009,-7.699477233999857],[17.303780558000113,-7.692449238999855],[17.305950968000104,-7.700097350999926],[17.308121379000085,-7.701854349999805],[17.308121379000085,-7.702371113999845],[17.303780558000113,-7.706711933999826],[17.320420369000146,-7.713636575999899],[17.32062707500009,-7.722421569999895],[17.314219198000043,-7.731826680999845],[17.310601847000072,-7.740818378999889],[17.315976196000122,-7.753634134999872],[17.334062947000064,-7.769653828999835],[17.337887003000077,-7.77864552799987],[17.342434529000116,-7.784019876999834],[17.365482218000093,-7.787327168999837],[17.37540409400009,-7.792288105999872],[17.376954386000104,-7.801693216999836],[17.376127563000065,-7.814095560999903],[17.380985148000093,-7.823190612999865],[17.400002075000145,-7.823397318999839],[17.400002075000145,-7.830218606999878],[17.39070031700004,-7.839210306999831],[17.397624959000012,-7.841380716999821],[17.410854126000118,-7.84148406999985],[17.420569295000064,-7.843861185999798],[17.423566529000055,-7.855126647999852],[17.42304976400004,-7.86794240299983],[17.426357056000114,-7.875487161999885],[17.440929810000085,-7.871146341999804],[17.452401977000108,-7.88396209699988],[17.44868127400008,-7.8928504429999],[17.439379517000077,-7.902152200999836],[17.434108520000024,-7.915794778999838],[17.43782922300005,-7.922409362999828],[17.446820923000075,-7.928920592999901],[17.46831831900002,-7.939462584999859],[17.463564087000123,-7.946903990999886],[17.46304732200008,-7.949797871999877],[17.465217733000088,-7.952588398999836],[17.46831831900002,-7.959926452999824],[17.471108846000075,-7.955585631999852],[17.47720666500004,-7.950521341999874],[17.481857544000093,-7.945663756999849],[17.490952596000085,-7.977496439999896],[17.49622359200009,-7.987211608999844],[17.506352173000067,-7.99651336599986],[17.52836633300012,-8.007778828999918],[17.536531209000145,-8.01511688199983],[17.540045207000105,-8.032066751999835],[17.52836633300012,-8.060592141999877],[17.536218704000134,-8.075402310999849],[17.536531209000145,-8.075991718999859],[17.544282674000073,-8.084776712999854],[17.60019657400005,-8.098522643999885],[17.62841190500012,-8.09800587899984],[17.713264608000088,-8.068343607999793],[17.74334029200014,-8.070720722999837],[17.777240031000076,-8.08332977299986],[17.7895390220001,-8.081779479999838],[17.851757447000097,-8.047776387999889],[17.8679838460001,-8.044469095999887],[17.901366821000096,-8.04808644599987],[17.93082238700009,-8.062142435999888],[17.981878703000064,-8.105343932999844],[18.008543742000114,-8.111235045999834],[18.098150675000056,-8.1092713419999],[18.091742798000094,-8.084156595999872],[18.092879680000124,-8.056354674999824],[18.10218143700004,-8.033306986999861],[18.120371541000083,-8.022454935999818],[18.135771118000065,-8.018527526999847],[18.176595500000076,-7.999200540999894],[18.192718546000066,-7.996926777999875],[18.26733931400011,-7.999820657999862],[18.316225220000092,-8.001681009999869],[18.353638957000072,-8.015943704999842],[18.366558065000078,-8.016770527999867],[18.38195764100007,-8.012326353999867],[18.403868449000125,-8.000647480999888],[18.420508260000133,-7.998270364999839],[18.481796509000105,-7.997340188999885],[18.487894328000067,-7.998270364999839],[18.507634725000116,-7.997546894999842],[18.502260376000063,-7.960133157999792],[18.5043274330001,-7.940702819999898],[18.51652307100002,-7.932227884999803],[18.588663371000024,-7.932331237999918],[18.6669014900001,-7.932331237999918],[18.73852502400004,-7.932331237999918],[18.747310018000118,-7.937808939999826],[18.752064249000114,-7.965920918999857],[18.758265421000118,-7.978219908999889],[18.773768351000115,-8.001991068999857],[18.81800337700014,-8.001991068999857],[18.94543746000008,-8.001991068999857],[19.073078247000037,-8.001991068999857],[19.200615682000088,-8.001991068999857],[19.32825647000007,-8.001991068999857],[19.355541626000104,-8.001991068999857],[19.334044230000046,-7.924269713999834],[19.330943644000115,-7.898638203999865],[19.333837525000092,-7.867322285999862],[19.34851363100009,-7.82153696699983],[19.35802209500008,-7.791564635999876],[19.377762492000045,-7.730069680999875],[19.381379842000115,-7.703921406999867],[19.3809664310001,-7.679736836999894],[19.373214965000102,-7.653795267999853],[19.361846151000094,-7.627026875999874],[19.353681274000078,-7.600258483999894],[19.355644979000118,-7.574110208999798],[19.424684692000085,-7.57969126399982],[19.44390832500011,-7.575247090999894],[19.45827437300011,-7.560260925999927],[19.468713013000126,-7.521090188999891],[19.482355591000044,-7.503520201999904],[19.48307906100004,-7.502900084999851],[19.48390588400008,-7.502383320999812],[19.48473270700009,-7.501969908999798],[19.513154744000104,-7.479438984999874],[19.513774862000076,-7.448433125999856],[19.48721317500008,-7.381977233999891],[19.479461711000056,-7.34766408299987],[19.476361125000036,-7.315934752999851],[19.48721317500008,-7.153877461999826],[19.497031697000125,-7.121734720999881],[19.508607219000083,-7.103234557999855],[19.53620243400007,-7.068404642999893],[19.542610311000118,-7.052281595999901],[19.54023319500007,-7.041636249999911],[19.521836385000086,-7.001948750999844],[19.574029582000065,-7.001948750999844],[19.6160941980001,-7.001948750999844],[19.65805546100009,-7.001948750999844],[19.70001672300009,-7.001948750999844],[19.74197798600008,-7.001948750999844],[19.784042602000113,-7.001948750999844],[19.82610721800006,-7.001948750999844],[19.86806848200007,-7.001948750999844],[19.91002974500014,-7.001948750999844],[19.952094360000075,-7.001948750999844],[19.963079168000093,-7.001948750999844],[19.994055623000094,-7.001948750999844],[20.0361202390001,-7.001948750999844],[20.07818485500013,-7.001948750999844],[20.120146118000036,-7.001948750999844],[20.162107381000055,-7.001948750999844],[20.20406864400013,-7.001948750999844],[20.24623661300009,-7.001948750999844],[20.294295695000073,-7.001948750999844],[20.294192342000116,-6.987479349999902],[20.298636515000055,-6.954509785999846],[20.303184042000083,-6.940143736999842],[20.311245564000075,-6.925054219999851],[20.319513794000102,-6.918542988999874],[20.33108931500007,-6.916785989999894],[20.383695922000044,-6.91668263799987],[20.467308390000085,-6.916372578999883],[20.55371138500004,-6.916165872999926],[20.611485636000054,-6.915959166999869],[20.588127889000106,-6.976834004999901],[20.560946085000097,-7.047837422999805],[20.54544315600009,-7.088558450999868],[20.524462524000086,-7.143128763999896],[20.51826135200011,-7.189740904999866],[20.519398234000104,-7.237179870999853],[20.520535116000133,-7.286375833999911],[20.56704390400006,-7.286169127999854],[20.639804321000042,-7.285962422999902],[20.71256473800011,-7.285859069999874],[20.785221801000148,-7.285549010999886],[20.85798221900012,-7.285342305999932],[20.930742635000083,-7.285238951999815],[21.003503051000052,-7.284928893999918],[21.07626346900011,-7.284722187999861],[21.148920532000147,-7.284618834999847],[21.221784301000067,-7.284412129999795],[21.294338013000072,-7.284205423999835],[21.367098429000066,-7.283998717999864],[21.439962198000046,-7.283792011999822],[21.51261926300009,-7.283585306999854],[21.5854830320001,-7.283378600999811],[21.65824344800006,-7.283171894999853],[21.730900513000105,-7.282965189999799],[21.764490194000132,-7.282758482999838],[21.784954060000075,-7.283378600999811],[21.784644002000107,-7.286892598999856],[21.78826135200009,-7.291750182999877],[21.79477258300005,-7.294023945999896],[21.802524048000066,-7.298881530999907],[21.808828572000067,-7.306426289999862],[21.83135949700008,-7.354175313999845],[21.8369405520001,-7.360583190999876],[21.842418253000087,-7.369884948999811],[21.83993778500013,-7.378153177999849],[21.834976847000064,-7.385284524999888],[21.832909790000116,-7.390762226999883],[21.83869755000009,-7.402027688999836],[21.845725545000107,-7.409055683999852],[21.851616659000083,-7.416497089999865],[21.854097127000074,-7.428899434999848],[21.852960246000066,-7.434997253999896],[21.84779260300007,-7.44409230499987],[21.846655721000047,-7.449053242999824],[21.84892948400008,-7.454841002999885],[21.8586446540001,-7.464039407999792],[21.860918416000118,-7.469827168999857],[21.85905806500011,-7.482642923999848],[21.849963012000046,-7.502900084999851],[21.846655721000047,-7.514268899999834],[21.845932251000136,-7.526774596999844],[21.84820601400008,-7.532975768999918],[21.851513306000072,-7.538453469999808],[21.854097127000074,-7.5483753459999],[21.854097127000074,-7.585995788999825],[21.850789835000086,-7.593643899999904],[21.836217082000104,-7.608320006999889],[21.832909790000116,-7.614211119999894],[21.83104943900011,-7.632814635999849],[21.826558136000102,-7.645600686999855],[21.81957727000008,-7.665474141999823],[21.807898397000116,-7.699373880999828],[21.795082642000125,-7.736270852999851],[21.787227824000098,-7.758595071999821],[21.776169067000097,-7.790324400999851],[21.770484659000147,-7.806757506999816],[21.76459354700006,-7.850682473999839],[21.770898071000147,-7.876520690999867],[21.7721383060001,-7.888199563999833],[21.768831014000114,-7.899878437999817],[21.75436161300007,-7.919618835999871],[21.751054321000083,-7.929230651999887],[21.75394820200006,-7.997340188999885],[21.7584957280001,-8.01511688199983],[21.76821089700013,-8.02317840499991],[21.79963016800008,-8.040851744999912],[21.806348104000108,-8.052427266999857],[21.8085185140001,-8.07671518999986],[21.815133098000075,-8.096765644999905],[21.825985148000115,-8.114438984999907],[21.851203247000086,-8.143481139999892],[21.857301066000048,-8.156917011999852],[21.860194946000036,-8.173763528999828],[21.862468709000037,-8.216448262999918],[21.873217407000055,-8.264093932999868],[21.881382283000075,-8.282077330999853],[21.910631144000035,-8.310499368999869],[21.92055301900012,-8.328999531999898],[21.91314632600003,-8.333003149999868],[21.905256795000067,-8.33726776099985],[21.899882446000106,-8.348843281999805],[21.911457967000043,-8.374268086999805],[21.935952596000106,-8.413025410999836],[21.943910766000073,-8.455916848999891],[21.939983358000088,-8.499945169999847],[21.916212199000142,-8.576839701999845],[21.92127649000011,-8.578596699999819],[21.92437707500008,-8.580767109999911],[21.928407836000076,-8.582524108999792],[21.935952596000106,-8.58314422599986],[21.917762492000065,-8.61518361399986],[21.906910441000036,-8.645466003999886],[21.895128215000113,-8.71874318399989],[21.88479292800011,-8.782305195999868],[21.877764933000094,-8.789229837999855],[21.87011682100012,-8.822302753999836],[21.859884888000124,-8.846383971999884],[21.85172001100011,-8.92586232499987],[21.854097127000074,-8.977848815999891],[21.839731079000074,-9.09236378999982],[21.851926717000083,-9.192926126999836],[21.851616659000083,-9.233750507999929],[21.841074666000026,-9.275815123999863],[21.810172159000047,-9.338136901999803],[21.80376428200009,-9.372966816999863],[21.79332564200007,-9.393534036999853],[21.79198205500009,-9.40614308599987],[21.796219523000048,-9.417098489999844],[21.813169393000067,-9.437459003999876],[21.819887329000064,-9.447690937999866],[21.83218632000012,-9.488411966999834],[21.84365848800013,-9.57615854899987],[21.854097127000074,-9.617809752999875],[21.878901814000102,-9.65708384099986],[21.94236047400005,-9.722919616999846],[21.95651981600011,-9.761780292999902],[21.962720988000086,-9.758473001999903],[21.978223918000083,-9.752168476999884],[21.984425090000087,-9.748757831999868],[21.986285441000092,-9.781107278999853],[21.998377726000086,-9.80911590599986],[22.055841919000073,-9.875365090999864],[22.065763794000077,-9.881049498999815],[22.072791789000092,-9.87887908899991],[22.079923136000048,-9.87164438799985],[22.09098189300005,-9.877122090999848],[22.107621704000053,-9.891384785999902],[22.14627567500014,-9.915672708999821],[22.159918253000058,-9.931485696999815],[22.167566366000127,-9.953706562999855],[22.175627889000026,-9.988949889999915],[22.196091756000097,-10.043623554999883],[22.204876750000064,-10.085791523999843],[22.209734334000103,-10.098193867999896],[22.202809692000102,-10.130646666999922],[22.2211031490001,-10.176225280999816],[22.24570113200008,-10.221183776999823],[22.26347782400009,-10.268209329999891],[22.286938924000083,-10.309137063999826],[22.295517212000103,-10.339316100999909],[22.310089966000078,-10.356989440999826],[22.313397258000066,-10.368564960999862],[22.31226037600007,-10.379933776999863],[22.307092733000047,-10.399570820999884],[22.305955852000125,-10.409802754999873],[22.30109826700004,-10.42489227299987],[22.27867069500013,-10.460962421999866],[22.271849406000086,-10.481736347999828],[22.274019816000074,-10.503027037999814],[22.28404504400009,-10.516462910999849],[22.296447388000075,-10.52969207699985],[22.305955852000125,-10.550672708999855],[22.309469848000106,-10.592944030999831],[22.308573272000075,-10.61251927699982],[22.3076094970001,-10.633561705999867],[22.310089966000078,-10.668805032999842],[22.32641971900011,-10.694643248999867],[22.321045369000046,-10.700741067999914],[22.319495077000113,-10.703841654999863],[22.32238895600011,-10.74218556699988],[22.319495077000113,-10.761305846999875],[22.309676555000067,-10.769780781999883],[22.290659627000082,-10.772674662999862],[22.265854939000064,-10.779909362999831],[22.223997030000078,-10.79706593799989],[22.206013631000076,-10.80988169299988],[22.182759236000066,-10.83044891399986],[22.16549930800008,-10.852359720999829],[22.165706014000136,-10.868792825999876],[22.174801066000096,-10.884295755999801],[22.196091756000097,-10.954162291999879],[22.196091756000097,-10.992299499999845],[22.19929569500007,-10.997363789999909],[22.21397180100004,-11.007905781999881],[22.217175741000116,-11.012763366999891],[22.220586385000047,-11.030023294999893],[22.237329549000094,-11.05937550799986],[22.243840780000053,-11.0782890829999],[22.25551965400012,-11.166552428999879],[22.25200565600008,-11.208617044999825],[22.237639608000077,-11.249544778999834],[22.26306441200009,-11.248201191999867],[22.28177128100006,-11.236729023999857],[22.3256962480001,-11.190323587999842],[22.34026900200007,-11.180195007999885],[22.440314575000055,-11.146915384999858],[22.46935673000013,-11.122420755999897],[22.500982706000116,-11.042425637999855],[22.537569621000074,-11.037154642999923],[22.61363732900014,-11.067540384999885],[22.65094771300008,-11.082319843999898],[22.688981567000095,-11.092965188999884],[22.727738891000055,-11.09678924499984],[22.76422245300006,-11.090484720999825],[22.785306437000088,-11.078495787999854],[22.806907186000046,-11.063096210999873],[22.829231405000115,-11.05214080799989],[22.853105916000118,-11.05307098399986],[22.873569783000075,-11.063716328999845],[22.911190226000087,-11.08831430999983],[22.93113732900011,-11.09678924499984],[22.96958459500007,-11.102473652999876],[23.014336385000036,-11.102473652999876],[23.114692016000078,-11.08552378299987],[23.196754191000082,-11.071881204999869],[23.306514933000102,-11.011729837999908],[23.373280884000053,-10.975142923999881],[23.4154488530001,-10.963257344999844],[23.455963175000107,-10.960983581999841],[23.49482385300007,-10.964290873999829],[23.557042277000075,-10.981344095999859],[23.641584920000128,-11.004495137999854],[23.674864543000098,-11.006975605999825],[23.714138631000136,-11.003875019999882],[23.752275838000113,-11.008215840999867],[23.79372033700008,-11.02113494899987],[23.833717896000053,-11.028473001999869],[23.8674109290001,-11.016380716999876],[23.874128865000046,-11.006872252999898],[23.8817769770001,-10.984548033999843],[23.887771443000133,-10.974419453999886],[23.897279907000012,-10.966461282999916],[23.918570597000095,-10.95405893899985],[23.927975708000044,-10.945377298999801],[23.93614058400007,-10.925223489999908],[23.940584757000096,-10.901555684999877],[23.948646281000066,-10.881505228999842],[23.96745650200009,-10.872306822999846],[23.974277791000134,-10.92139943399988],[23.980582316000067,-10.938349303999885],[24.000012654000045,-10.967804869999881],[24.003733358000144,-10.98248097799987],[23.997325480000086,-11.00170460999989],[23.9937081300001,-11.01958465499986],[23.99453495300014,-11.074981790999814],[23.990090779000123,-11.113532408999873],[23.995775187000078,-11.127381693999851],[24.0153088780001,-11.130482278999878],[24.011174764000142,-11.272902525999882],[24.016962525000054,-11.298430684999829],[24.061094197000045,-11.394962259999843],[24.061714315000103,-11.406951191999894],[24.052102499000082,-11.420490416999883],[24.020786581000067,-11.444571634999832],[24.00993453000012,-11.459454446999871],[24.007557414000075,-11.470513203999872],[24.00724735500009,-11.483122252999806],[24.00983117700011,-11.50720347099984],[24.009727824000063,-11.523429869999859],[24.005387004000085,-11.535212096999855],[23.97768843600008,-11.577276712999875],[23.959911743000134,-11.617170918999832],[23.9546407470001,-11.636911315999882],[23.9546407470001,-11.662232766999864],[23.96228885900007,-11.681559752999817],[23.972727498000012,-11.700576679999884],[23.981305786000064,-11.724761250999862],[23.98554325300009,-11.799485371999864],[23.990194132000056,-11.82408335399984],[23.988540487000108,-11.834211933999896],[23.96704309100008,-11.882891132999829],[23.961048624000057,-12.011668802999822],[23.954330689000102,-12.15191863999982],[23.959601685000052,-12.196670430999873],[23.981305786000064,-12.227676289999806],[24.006627238000135,-12.253721211999874],[24.016859171000107,-12.278939310999831],[24.020993286000135,-12.340020852999826],[24.030811808000095,-12.385082702999865],[24.028021281000118,-12.402135924999811],[24.01985640500004,-12.419189147999845],[23.986060018000046,-12.467661640999907],[23.94079146300004,-12.532773945999807],[23.928699178000045,-12.561609394999834],[23.91071577900007,-12.631269225999942],[23.891698853000094,-12.705063170999907],[23.87226851400004,-12.75012502099986],[23.86565393100011,-12.789709167],[23.874748983000103,-12.821748554999914],[23.895109497000135,-12.849757181999834],[23.94957645700012,-12.904637552999844],[23.971797322000068,-12.933369649999845],[23.988850545000105,-12.965098978999947],[24.000632772000102,-13.001479186999944],[23.9682833250001,-13.001479186999944],[23.84415653500008,-13.001479186999944],[23.71982303900009,-13.001479186999944],[23.595592895000035,-13.001479186999944],[23.471259399000076,-13.001479186999944],[23.346925903000084,-13.001479186999944],[23.222695760000136,-13.001479186999944],[23.09836226400006,-13.001479186999944],[22.974028768000068,-13.001479186999944],[22.84979862500012,-13.001479186999944],[22.72546512800011,-13.001479186999944],[22.601234985000076,-13.001479186999944],[22.477004842000014,-13.001479186999944],[22.352774698000072,-13.001479186999944],[22.2285445550001,-13.001479186999944],[22.104211059000136,-13.001479186999944],[21.97987756300006,-13.001479186999944],[21.97998091600007,-13.15216766399989],[21.980084269000088,-13.302701109999973],[21.980187622000127,-13.453492939999947],[21.98029097400007,-13.604181415999903],[21.98035310000006,-13.694822054999946],[21.980394328000074,-13.754973245999878],[21.980497681000116,-13.905558369999895],[21.98060103400013,-14.056350198999866],[21.98070438600007,-14.206935322999882],[21.980807739000085,-14.35762379900001],[21.980911092000042,-14.508415628999984],[21.98101444500014,-14.659104104999841],[21.98111779800007,-14.80979258199997],[21.981221150000092,-14.960481058999916],[21.981324503000053,-15.11116953499996],[21.981427856000067,-15.261858011999905],[21.9815312100001,-15.412546487999945],[21.9815312100001,-15.452337340999945],[21.9815312100001,-15.473524678999908],[21.9815312100001,-15.503807067999942],[21.9815312100001,-15.547835387999909],[21.981427856000067,-15.64994801799986],[21.981221150000092,-15.751957295999873],[21.980911092000042,-15.85396657299998],[21.980807739000085,-15.95607920299993],[21.98060103400013,-16.001244404999895],[21.9815312100001,-16.004034932999957],[21.9815312100001,-16.067493590999902],[21.9815312100001,-16.128161721999888],[21.9815312100001,-16.14428476999987],[21.98380497200011,-16.165885518999843],[22.010366658000123,-16.198131611999898],[22.0451965740001,-16.25228851299991],[22.019875122000116,-16.253115335999937],[22.011710246000092,-16.25228851299991],[22.022355590000075,-16.266344502999843],[22.025972941000074,-16.278953552999866],[22.027729940000143,-16.29166595399991],[22.03217411300005,-16.30634206099998],[22.036618286000074,-16.312233173999815],[22.048607218000114,-16.32236175599995],[22.05201786300006,-16.326805927999956],[22.053671508000093,-16.336521096999903],[22.054188273000136,-16.35863861099999],[22.055841919000073,-16.364633076999937],[22.089121542000044,-16.371971131],[22.105554646000087,-16.37941253699995],[22.103590943000142,-16.391918232999856],[22.094289184000047,-16.404733987999933],[22.08602095500009,-16.422303974999817],[22.08074995900006,-16.44101084399989],[22.079923136000048,-16.457754007999938],[22.0845740150001,-16.470156351999986],[22.10173059100015,-16.49795827199995],[22.107311646000085,-16.512324319999962],[22.10658817500007,-16.52596689799988],[22.104004354000068,-16.53671559599981],[22.108138469000096,-16.543950296999867],[22.127258748000088,-16.54643076499984],[22.13811079900003,-16.55263193799992],[22.14245161900001,-16.567101338999947],[22.145138794000047,-16.584051208999952],[22.151650025000034,-16.59769378699987],[22.237742961000095,-16.665493265999885],[22.251282186000083,-16.670040792],[22.259033651000095,-16.669213968999898],[22.27412316900009,-16.66363291499988],[22.28373498500011,-16.661359150999953],[22.287352335000094,-16.658258564999826],[22.290762980000125,-16.65639821399982],[22.295620565000036,-16.659188740999966],[22.303061971000147,-16.66694020599988],[22.306989379000125,-16.669213968999898],[22.33365441900008,-16.673658141999894],[22.34347294100013,-16.683166605999887],[22.350087524000116,-16.69629241999995],[22.36579716000011,-16.716859639999935],[22.37261844900007,-16.728848571999986],[22.377992798000037,-16.734843037999923],[22.383573853000115,-16.737530211999953],[22.39959354600009,-16.74042409199994],[22.40889530400011,-16.745798441999895],[22.41664676900012,-16.754480081999958],[22.489097127000093,-16.865377705999975],[22.499742472000094,-16.89348968499992],[22.50852746600009,-16.906202087999887],[22.52289351400009,-16.914677021999893],[22.554519491000093,-16.924185485999956],[22.567231893000038,-16.936897887999834],[22.569298950000103,-16.944959411999918],[22.569195597000146,-16.962426044999958],[22.573433064000113,-16.971004332999897],[22.579324178000036,-16.975345153999967],[22.592036581000087,-16.975448505999893],[22.651671183000076,-16.998702900999916],[22.665623820000064,-17.008624775999905],[22.71047896300007,-17.055443623999935],[22.73073612500005,-17.081591897999928],[22.74479211400009,-17.10825693699998],[22.75585087100009,-17.154869079999855],[22.765152628000095,-17.16964853899995],[22.778278442000072,-17.18039723699998],[22.809387655000137,-17.196416930999845],[22.849178507000147,-17.231040140999852],[22.876153605000066,-17.24809336299988],[22.936511678000073,-17.27331146199984],[22.9841573490001,-17.28581715899992],[22.998626750000142,-17.293775328999985],[23.040381307000104,-17.337080179999944],[23.046375773000108,-17.348448993999853],[23.054127238000035,-17.375320739999935],[23.073040812000073,-17.40508636399984],[23.097638794000147,-17.432164814999805],[23.121513306000054,-17.45087168299996],[23.165748332000135,-17.467408141999954],[23.176186971000078,-17.478156839999983],[23.179080852000084,-17.49417653399985],[23.176910441000075,-17.509782815999884],[23.177530558000058,-17.524045511999944],[23.189726196000066,-17.536551207999864],[23.20698612500007,-17.54120208699983],[23.22424605300006,-17.539341735999827],[23.241299275000074,-17.53510426799987],[23.258352498000107,-17.53283050499985],[23.290805298000123,-17.535414326999852],[23.305378051000105,-17.53954844199995],[23.320157512000094,-17.54636973099991],[23.340621379000083,-17.560735778999923],[23.35943160000008,-17.582853291999925],[23.382272583000088,-17.60104339599988],[23.375141235000058,-17.615409443999965],[23.37596805800007,-17.628225199999957],[23.381652466000105,-17.641144306999877],[23.298039998000093,-17.656853942999927],[23.09391809100012,-17.69540456099992],[22.889796183000072,-17.73405853199992],[22.68567427500011,-17.772815855999937],[22.481449015000123,-17.811366475000014],[22.230508260000136,-17.85756520599996],[21.979464152000048,-17.90376393599992],[21.72852339700006,-17.94985931399995],[21.477582642000073,-17.996058045],[21.405545695000082,-18.0092872109999],[21.386838826000115,-18.014454853999908],[21.38115441900007,-18.0125945019999],[21.364824666000118,-17.992027281999825],[21.335059041000136,-17.977971292999896],[21.27811161300008,-17.95854095399991],[21.23273970600013,-17.934459736999955],[21.216616658000078,-17.930635680999927],[21.175792277000085,-17.93321950199984],[21.161322876000042,-17.930635680999927],[21.143132772000087,-17.933736266999954],[21.126079549000053,-17.94107431999987],[21.10943973800005,-17.945001729000012],[21.093109986000115,-17.93807708699994],[21.000712524000107,-17.962054951999875],[20.986454526000074,-17.96577096299994],[20.90831506300009,-17.98613616899982],[20.894465780000132,-18.0125945019999],[20.861599569000106,-18.01879567399989],[20.83193729600015,-18.029337666999936],[20.806202433000063,-18.031404723999813],[20.78460168500007,-18.0125945019999],[20.754422648000087,-17.997918396],[20.73747277800007,-17.99347422199982],[20.729928020000045,-18.002362569],[20.722486613000115,-18.006496682999853],[20.70615686000008,-18.00380950899999],[20.689620402000088,-17.996988219999864],[20.68217899600006,-17.988616637999968],[20.66626265500011,-17.980245056],[20.630089152000096,-17.976937765],[20.590711710000107,-17.978798116],[20.565493611000136,-17.985205993999955],[20.552884562000116,-17.979108174999894],[20.52394576000006,-17.95854095399991],[20.48952925600011,-17.942107848999854],[20.479504028000093,-17.93435638399994],[20.460073690000115,-17.913685810999837],[20.437542765000074,-17.894462177999813],[20.412634725000117,-17.884126891999898],[20.386796509000106,-17.890328063999974],[20.347729126000075,-17.85890879299994],[20.33615360500005,-17.854878030999853],[20.302770630000055,-17.860769143999946],[20.28892134600011,-17.861595966999957],[20.27817264800009,-17.854878030999853],[20.24344608500013,-17.88278330499992],[20.219881633000053,-17.87337819399997],[20.19311324000006,-17.872137959999847],[20.169238729000085,-17.87813242599995],[20.1545626220001,-17.890328063999974],[20.147121216000073,-17.88278330499992],[20.132961873000113,-17.888777770999866],[20.119939413000083,-17.890741474999984],[20.09255090300013,-17.890328063999974],[20.034259888000093,-17.895909118999896],[20.024544719000062,-17.894565530999927],[19.989508097000055,-17.88278330499992],[19.95199100700006,-17.862319437999872],[19.793964477000113,-17.862319437999872],[19.787659953000116,-17.866453551999896],[19.775981079000132,-17.885057067999853],[19.771020141000093,-17.890328063999974],[19.7552071530001,-17.889087829999852],[19.73205611200009,-17.88205983500002],[19.711282186000062,-17.87296478199987],[19.70218713400007,-17.8657300819999],[19.69319543500012,-17.847746684],[19.67262821500014,-17.842682392999933],[19.64978723200005,-17.844956155999938],[19.59283980300006,-17.857255146999975],[19.421274048000072,-17.859425556999966],[19.26242069500009,-17.813950296999835],[19.246607706000106,-17.80402842199993],[19.201855916000056,-17.807129007999876],[19.172090292000064,-17.801237894999957],[19.16082482900009,-17.80092783599997],[19.139327433000062,-17.805268655999953],[19.105117635000056,-17.818187763999973],[19.020574992000093,-17.8223218789999],[18.89004032400001,-17.79927418999985],[18.80084680200008,-17.756589456999848],[18.761986124000117,-17.747701110999927],[18.74824019400009,-17.736332295000025],[18.72829309100007,-17.71090749099993],[18.670932251000096,-17.65313323999993],[18.66132043400006,-17.646725361999984],[18.64282027200005,-17.638043721999917],[18.633311808000144,-17.62894866899987],[18.627937459000094,-17.61985361799989],[18.622873169000115,-17.60218027699989],[18.619669230000056,-17.594842223999976],[18.567476033000077,-17.553294372],[18.554143514000145,-17.54636973099991],[18.550939575000086,-17.535310973999824],[18.516626424000066,-17.471335549999935],[18.492751912000074,-17.464514261999966],[18.489858032000086,-17.462447204],[18.488101033000106,-17.452111917999915],[18.471667928000045,-17.414284769999924],[18.465156697000083,-17.409220478999956],[18.45864546700011,-17.40529307099997],[18.45502811700004,-17.39599131299987],[18.453581177000046,-17.38989349399982],[18.445726359000105,-17.38927337599985],[18.392292928000074,-17.38927337599985],[18.13566776500005,-17.38917002299982],[18.000482986000094,-17.389115556999926],[17.87914595500004,-17.389066669999977],[17.622624146000135,-17.388963317999952],[17.36610233600007,-17.388963317999952],[17.278972034000105,-17.38892822699998],[17.10947717300013,-17.38885996499984],[16.852852010000106,-17.388756611999977],[16.596330200000097,-17.388756611999977],[16.339808390000087,-17.388653258999966],[16.08338993300012,-17.388653258999966],[15.826764770000095,-17.388653258999966],[15.570242961000103,-17.38854990699994],[15.559114346000086,-17.388545422999922],[15.313721151000095,-17.388446553999827],[15.057199341000114,-17.38834320099997],[14.800574178000089,-17.38834320099997],[14.543949015000065,-17.388239846999866],[14.287427206000046,-17.38813649499984],[14.219111804000077,-17.38813649499984],[14.218800903000101,-17.38813649499984],[14.207432088000104,-17.388033141999983],[14.206501913000068,-17.39309743299988],[14.197096802000118,-17.412941181999955],[14.174979288000088,-17.41624847399987],[14.130744263000082,-17.409220478999956],[14.123922973000047,-17.411597594999904],[14.10821333800007,-17.42048594099991],[14.097257935000073,-17.42358652799996],[14.085372355000061,-17.42358652799996],[14.069145956000055,-17.418625589999905],[14.047441854000056,-17.416041769],[14.029148396000066,-17.410460713999896],[14.017882934000113,-17.409220478999956],[14.008891236000066,-17.41149424199996],[13.992974894000042,-17.42131276399985],[13.98057255000009,-17.42358652799996],[13.95731815600007,-17.41914235399986],[13.9427454020001,-17.408186950999962],[13.896856730000138,-17.349069112],[13.884351033000142,-17.338527119999938],[13.790403279000117,-17.288090921999853],[13.694130086000142,-17.23662119599996],[13.60648685700005,-17.167374775999946],[13.521324097000104,-17.121899515999985],[13.53093591300012,-17.093270771999826],[13.522254273000044,-17.076941018999957],[13.507784872000116,-17.06350514700001],[13.494659058000137,-17.024024352999902],[13.479776245000096,-17.01027842199987],[13.45889896600005,-17.001803486999943],[13.43512780700007,-16.999012959999902],[13.417247762000017,-16.993741962999877],[13.382004435000056,-16.970384216000014],[13.363710978000084,-16.964183044999928],[13.345946539000096,-16.968711234999954],[13.321543009000038,-16.974931742999956],[13.315238485000094,-16.974414977999828],[13.308417195000061,-16.970177510999875],[13.293017619000068,-16.97379486099986],[13.267489461000139,-16.985370380999896],[13.267489461000139,-16.97792897499997],[13.25715417500004,-16.981649677999965],[13.245268595000084,-16.981339619999815],[13.222841023000084,-16.97792897499997],[13.21209232500007,-16.972761331999877],[13.205477743000074,-16.96304616299993],[13.1981396890001,-16.95736175499998],[13.184910523000099,-16.964183044999928],[13.166307006000125,-16.95105723099988],[13.144499552000097,-16.952400817999845],[13.121761922000132,-16.959842223999956],[13.014274943000117,-16.97792897499997],[12.961668335000127,-17.00738454199988],[12.930455770000064,-17.01420583099984],[12.91102543100007,-17.023507588999863],[12.887150920000096,-17.029812112999874],[12.882293335000071,-17.03952728199991],[12.880536336000091,-17.050792744999967],[12.876402222000081,-17.059784443999916],[12.867720581000098,-17.06557220499998],[12.849943888000068,-17.0708432],[12.84229577700009,-17.074047138999973],[12.833097371000093,-17.0817986039999],[12.824932495000096,-17.096371357999942],[12.818317912000083,-17.104846292999866],[12.784314820000134,-17.115078226999927],[12.739873088000081,-17.135542093999902],[12.704733114000133,-17.164274189999986],[12.685922892000121,-17.17357594800002],[12.660704793000065,-17.177089944999892],[12.636210164000119,-17.185151468999962],[12.591458374000041,-17.222565205999942],[12.567170451000067,-17.23455413799989],[12.554561401000115,-17.235587666999976],[12.519214722000129,-17.22783620099996],[12.460510294000072,-17.223081970999885],[12.441700073000048,-17.216984150999835],[12.417928914000099,-17.203444925999946],[12.407593628000086,-17.204065042999915],[12.393951050000084,-17.214710388],[12.37948164900007,-17.220394794999862],[12.314679402000138,-17.218121031999843],[12.242642456000084,-17.224838968999947],[12.239335165000083,-17.220704854999937],[12.236544637000122,-17.211299743999888],[12.231790405000112,-17.20189463299984],[12.222281942000052,-17.19765716499988],[12.211739950000066,-17.195176695999905],[12.200474487000122,-17.189285583999904],[12.190655965000133,-17.18256764699997],[12.185074911000129,-17.177089944999892],[12.181147501000055,-17.16923512799994],[12.179493856000107,-17.16158701599997],[12.17711674000006,-17.154765726999912],[12.170708862000112,-17.149184671999905],[12.161510457000134,-17.146290791999913],[12.156652873000098,-17.14908131899996],[12.151278524000134,-17.15362884499991],[12.139909708000062,-17.156005960999863],[12.10559655800003,-17.14608408599996],[12.09526127100011,-17.13967620799991],[12.08812992300008,-17.139159443999887],[12.082238810000092,-17.141329853999878],[12.075210816000094,-17.1429835],[12.028908732000104,-17.148977965999947],[11.983020060000115,-17.161897073999867],[11.942092326000108,-17.18050059],[11.894963419000106,-17.214607035999975],[11.853932332000054,-17.233417256999985],[11.835535523000146,-17.245406188999937],[11.829644409000139,-17.25346771299985],[11.827473999000063,-17.260082294999847],[11.822409709000084,-17.264423115999918],[11.807630249000082,-17.265870055999912],[11.796881551000068,-17.263802998999935],[11.77951826900005,-17.25491465199984],[11.766183862000048,-17.252750745999947],[11.766123894000144,-17.25269947699988],[11.766123894000144,-17.24529387799997],[11.757985873000052,-17.239190362999988],[11.752777540000125,-17.229180597],[11.750743035000113,-17.216892184999864],[11.751800977000073,-17.203708591999913],[11.758636915000096,-17.165215753],[11.75928795700014,-17.032972915],[11.772114401000124,-16.947025539999984],[11.780013158000145,-16.869467402999973],[11.768144011000059,-16.798520397000015],[11.768141038000065,-16.768251332999952],[11.785921415000132,-16.763520113999988],[11.79086998400004,-16.80608224499988],[11.803709509000043,-16.824033303999954],[11.82047405600008,-16.781471608999922],[11.817637566000114,-16.70468515399999],[11.823090040000068,-16.678969007999854],[11.813812696000127,-16.583916924999855],[11.82195071700005,-16.47909921699998],[11.779144727000128,-16.099867445999962],[11.779795769000087,-16.080254815999908],[11.784515821000099,-16.06406015399986],[11.806976759000092,-16.018812757999925],[11.784356030000112,-15.972633182999942],[11.736618369000098,-15.90020322299988],[11.735524936000045,-15.857110283999942],[11.751800977000073,-15.799086195999877],[11.763519727000073,-15.789971612999976],[11.78467858200014,-15.7772763],[11.804942254000082,-15.769219658999885],[11.813812696000127,-15.774997653999945],[11.818369988000143,-15.792413018999907],[11.829844597000118,-15.797784112999878],[11.844248894000089,-15.79355234199994],[11.89470462300011,-15.746677341999984],[11.903330925000091,-15.73137786299985],[11.906504754000082,-15.717950127999854],[11.907481316000142,-15.690036716999911],[11.910166863000114,-15.676202080999913],[11.930511915000094,-15.65243906],[11.992035352000073,-15.617282809999933],[12.005137566000144,-15.594333591999956],[12.008474155000073,-15.565362237999947],[12.028493686000045,-15.490166924999869],[12.040375196000099,-15.463311455999886],[12.030039910000085,-15.436944268999966],[12.033457879000082,-15.407403253],[12.046641472000118,-15.350681247999946],[12.05640709700009,-15.233086846999868],[12.061778191000116,-15.217868747999887],[12.07056725400011,-15.204685153999932],[12.10499108200014,-15.172784112999905],[12.112478061000104,-15.17099374799993],[12.127777540000068,-15.178969007999967],[12.135996941000144,-15.178969007999967],[12.145274285000113,-15.16863372199988],[12.14975019600007,-15.15195077899993],[12.148936394000144,-15.134209893999852],[12.142832879000082,-15.120700778999876],[12.12794030000012,-15.11337655999995],[12.11736087300008,-15.116631768999907],[12.112478061000104,-15.115166924999855],[12.115000847000118,-15.093926690999949],[12.12484785200013,-15.062188409],[12.151133660000141,-15.002048435],[12.15650475400011,-14.967054945999832],[12.160492384000094,-14.953545830999856],[12.170095248000079,-14.942478122999916],[12.181407097000147,-14.932305596999953],[12.190603061000104,-14.92205169099985],[12.196136915000125,-14.908461195999891],[12.20533287900011,-14.853610934999963],[12.205414259000094,-14.840427341999925],[12.207774285000141,-14.833265882999981],[12.215179884000122,-14.824151299999896],[12.221934441000059,-14.82398853999993],[12.228526238000141,-14.825860283999901],[12.235606316000114,-14.823011976999865],[12.24431399800008,-14.80999114399988],[12.252777540000125,-14.782321872999972],[12.272715691000116,-14.750583592000012],[12.272308790000096,-14.732842705999929],[12.268077019000089,-14.714776299999913],[12.266368035000085,-14.696058851999851],[12.268728061000047,-14.6835263],[12.276621941000116,-14.660739841999913],[12.292735222000088,-14.587497653999959],[12.299001498000052,-14.507582289999945],[12.303884311000104,-14.494073174999967],[12.319672071000042,-14.468682549999869],[12.331309441000144,-14.4335262999999],[12.342133009000065,-14.36712004999987],[12.345388217000107,-14.302992445999818],[12.342133009000065,-14.27044036299985],[12.331553582000112,-14.236748955999843],[12.324229363000086,-14.220635674999869],[12.322113477000073,-14.213067315999908],[12.321055535000113,-14.20273202899999],[12.319672071000042,-14.197442315999922],[12.315196160000085,-14.187920830999843],[12.314219597000118,-14.182224216999941],[12.315603061000104,-14.174981377999842],[12.3190210300001,-14.17538827899993],[12.323578321000127,-14.177504164999945],[12.332204623000052,-14.17343515399989],[12.344248894000145,-14.171319268999879],[12.348887566000085,-14.168552342],[12.353037957000112,-14.160902601999894],[12.355235222000118,-14.15178801899998],[12.355804884000094,-14.142347914999887],[12.35515384200005,-14.133721612999963],[12.347178582000083,-14.119886976999965],[12.33497155000012,-14.106377862999906],[12.328786655000044,-14.092217705999886],[12.344737175000148,-14.066827080999957],[12.349782748000079,-14.045505466999899],[12.369883660000113,-14.021905205999943],[12.37452233200014,-14.007582289999872],[12.377289259000122,-13.992445570999877],[12.383067254000082,-13.97730885199988],[12.399912957000083,-13.951592705999929],[12.402842644000089,-13.941338799999981],[12.404144727000102,-13.90634531],[12.407237175000091,-13.8905575499999],[12.415537957000053,-13.878594659],[12.439300977000073,-13.871270440999908],[12.445078972000118,-13.866143487999906],[12.45053144600007,-13.862481377999854],[12.458181186000104,-13.863864841999927],[12.471853061000047,-13.874444268999964],[12.478363477000128,-13.878024997999859],[12.485687696000127,-13.877129815999865],[12.502452019000145,-13.855238540000014],[12.508962436000047,-13.819594007999882],[12.516286655000044,-13.71510182099986],[12.512705925000091,-13.61679452899999],[12.515879754000139,-13.604913018999866],[12.530121290000038,-13.578708592000012],[12.533864780000071,-13.565199476999936],[12.523610873000052,-13.551202080999971],[12.5221460300001,-13.54420338299991],[12.523936394000087,-13.539971612999892],[12.526540561000076,-13.536228122999859],[12.527028842000078,-13.504489841999897],[12.524587436000047,-13.489353122999901],[12.514903191000059,-13.457614841999856],[12.512705925000091,-13.442071221999853],[12.515310092000078,-13.42595794099988],[12.5221460300001,-13.410577080999843],[12.53296959700009,-13.399021092],[12.547211134000094,-13.39462655999992],[12.568044467000078,-13.392347914999945],[12.575450066000144,-13.385918877999925],[12.580821160000113,-13.37525807099982],[12.594737175000091,-13.36044687299993],[12.611094597000118,-13.351983330999985],[12.624196811000074,-13.349216403999932],[12.634450717000107,-13.343357028999888],[12.642425977000073,-13.325616143999893],[12.643239780000073,-13.3163388],[12.64087975400011,-13.308851820999875],[12.637868686000104,-13.302015882999951],[12.636241082000083,-13.294610283999873],[12.63843834700009,-13.288018487999977],[12.647715691000116,-13.278090101999894],[12.650075717000078,-13.271091404],[12.65650475400011,-13.255629164999974],[12.685069207000083,-13.240817967],[12.69157962300008,-13.229424737999864],[12.694102410000085,-13.218357028999916],[12.699961785000141,-13.217868747999928],[12.706797722000145,-13.221449476999894],[12.712087436000047,-13.222588799999924],[12.730642123000052,-13.210544529],[12.73178144600007,-13.208916924999981],[12.749766472000118,-13.20134856599995],[12.76148522200009,-13.192966403999973],[12.82715905000009,-13.109795830999929],[12.855723504000082,-13.08953215899993],[12.865977410000113,-13.078708592000012],[12.883148634000065,-13.052015882999825],[12.944834832000083,-12.98235442499984],[12.958669467000078,-12.955498955999857],[12.95883222700013,-12.929131768999936],[12.94947350400011,-12.9021135399999],[12.934825066000085,-12.873793226999865],[12.92750084700009,-12.842054945999905],[12.939463738000113,-12.816664320999962],[12.985687696000126,-12.770114841999856],[13.009613477000073,-12.756524346999894],[13.075043165000125,-12.695000908999845],[13.101084832000112,-12.681410414999974],[13.109222852000128,-12.674493096999882],[13.12647545700014,-12.64446379999984],[13.132823113000057,-12.636651299999924],[13.161631707000112,-12.611260674999912],[13.178558790000096,-12.601739190999908],[13.198008660000085,-12.59937916499996],[13.198903842000078,-12.603610934999978],[13.221039259000065,-12.60719166500003],[13.232758009000122,-12.613051039999903],[13.264414910000113,-12.582614841999941],[13.27686608200014,-12.57830169099985],[13.294281446000099,-12.581149997999887],[13.31153405000012,-12.594496351999894],[13.32837975400011,-12.59937916499996],[13.364024285000141,-12.592705987999906],[13.392914259000065,-12.570407809999864],[13.43767337300011,-12.523695570999877],[13.459727410000113,-12.50725676899988],[13.469248894000115,-12.494805596999868],[13.472992384000037,-12.479099216999899],[13.474945509000092,-12.437758070999863],[13.479014519000144,-12.419122002999883],[13.48658287900011,-12.400811455999829],[13.50562584700009,-12.371351820999834],[13.568614129000109,-12.311455987999892],[13.575450066000114,-12.311455987999892],[13.575450066000114,-12.318291924999826],[13.564952019000145,-12.322035414999945],[13.558278842000107,-12.328301690999893],[13.55681399800005,-12.336602471999882],[13.561778191000087,-12.346123955999872],[13.57748457100007,-12.330987237999878],[13.59750410200013,-12.29876067499984],[13.63021894600007,-12.263441664999903],[13.639821811000045,-12.248711846999825],[13.66358483200014,-12.16961028399983],[13.693369988000141,-12.11028411299985],[13.705088738000114,-12.078057549999912],[13.715179884000094,-12.00839609199984],[13.722504102000102,-11.992771091999856],[13.736989780000044,-11.977715752999842],[13.748789910000113,-11.961195570999863],[13.758555535000141,-11.942478122999887],[13.766449415000123,-11.92050546699987],[13.782481316000116,-11.820896091999913],[13.792246941000144,-11.790948174999855],[13.794606967000107,-11.770196221999853],[13.77767988400012,-11.589125257999868],[13.781911655000044,-11.48105234199987],[13.785980665000096,-11.458265882999852],[13.794606967000107,-11.44060637799984],[13.78663170700014,-11.431573174999826],[13.787364129000082,-11.420342705999829],[13.791840040000066,-11.407972914999888],[13.794606967000107,-11.395928643999866],[13.794200066000116,-11.341485283999873],[13.795258009000065,-11.332207940999822],[13.800140821000127,-11.321384372999916],[13.819021030000071,-11.295586846999896],[13.82162519600007,-11.283623955999857],[13.82178795700011,-11.256280205999886],[13.846527540000094,-11.113702080999886],[13.847422722000088,-11.055433851999865],[13.848480665000038,-10.982110283999845],[13.843435092000107,-10.945733330999857],[13.828623894000144,-10.913669528999876],[13.73926842500012,-10.783379815999837],[13.73145592500012,-10.764255466999856],[13.731130405000101,-10.747165622999901],[13.739431186000074,-10.730238539999917],[13.769786004000137,-10.69426848799985],[13.771739129000109,-10.677911065999837],[13.76498457100007,-10.662041924999912],[13.752940300000148,-10.646172783999887],[13.711436394000145,-10.61207447699988],[13.705088738000114,-10.6019833309999],[13.700856967000107,-10.590915622999873],[13.606130405000043,-10.478204033999859],[13.542328321000099,-10.426690362999878],[13.52759850400011,-10.406508070999848],[13.522634311000047,-10.387790622999873],[13.520762566000085,-10.320245049999912],[13.51734459700009,-10.298435153999861],[13.508962436000104,-10.277032158999901],[13.455088738000086,-10.201755466999842],[13.442637566000059,-10.179375908999901],[13.431162957000112,-10.130547783999901],[13.415293816000087,-10.110039971999852],[13.376719597000118,-10.070733330999857],[13.317393425000148,-9.976332289999903],[13.319834832000083,-9.961602471999909],[13.329112175000148,-9.947523695999863],[13.335215691000116,-9.926690362999892],[13.327159050000091,-9.886000257999811],[13.305430535000113,-9.842461846999882],[13.278005405000071,-9.801690362999821],[13.198578321000042,-9.708672783999845],[13.191172722000145,-9.690036716999856],[13.196136915000125,-9.67278411299985],[13.218597852000102,-9.649183851999823],[13.225352410000141,-9.631280205999857],[13.223887566000087,-9.614190362999821],[13.217784050000091,-9.594170830999843],[13.2096460300001,-9.577406507999825],[13.201426629000082,-9.570489190999822],[13.202403191000142,-9.559014580999872],[13.169932488000086,-9.466403903999902],[13.168304884000065,-9.447360934999907],[13.170664910000113,-9.402520440999893],[13.166514519000058,-9.387139580999857],[13.147715691000114,-9.352146091999856],[13.143402540000125,-9.330254815999822],[13.120616082000083,-9.313083591999884],[13.045420769000089,-9.18906015399989],[13.016856316000116,-9.122816664999917],[12.996348504000139,-9.09384530999992],[12.992360873000079,-9.03801848799985],[13.030284050000091,-8.959567966999899],[13.086436394000087,-8.892347914999858],[13.136566602000102,-8.871026299999897],[13.11475670700014,-8.902927341999913],[13.0428166020001,-8.962497653999918],[13.00684655000012,-9.045586846999896],[13.00017337300008,-9.072035414999872],[13.013031446000099,-9.08375416499986],[13.023448113000086,-9.074965101999808],[13.079600457000083,-8.980645440999837],[13.081879102000073,-8.970472914999874],[13.086924675000091,-8.959730726999865],[13.098887566000116,-8.956475518999824],[13.112478061000076,-8.956149997999887],[13.122894727000071,-8.954196872999844],[13.137461785000085,-8.940850518999838],[13.148285352000102,-8.907972914999931],[13.160411004000082,-8.88795338299988],[13.185557488000143,-8.861586195999877],[13.191172722000145,-8.85051848799985],[13.19214928500014,-8.839532158999887],[13.190603061000104,-8.816094658999901],[13.194590691000085,-8.806084893999824],[13.22413170700014,-8.773858330999886],[13.241547071000099,-8.760674737999835],[13.259532097000147,-8.754815362999892],[13.209727410000085,-8.804294528999845],[13.198008660000085,-8.823174737999864],[13.212168816000116,-8.814873955999886],[13.245371941000116,-8.800062757999825],[13.263682488000086,-8.788262627999856],[13.271657748000052,-8.786553643999852],[13.278005405000071,-8.782484632999882],[13.280528191000087,-8.771661065999893],[13.281016472000061,-8.764743747999887],[13.282969597000116,-8.759454033999916],[13.287119988000141,-8.756036065999908],[13.294200066000114,-8.754815362999892],[13.3561304050001,-8.763604424999853],[13.380137566000116,-8.755059502999842],[13.393321160000085,-8.704278252999885],[13.408050977000073,-8.666924737999835],[13.410899285000113,-8.65195077899989],[13.40609785200013,-8.637139580999829],[13.376719597000118,-8.596612237999892],[13.36540774800005,-8.566827080999886],[13.352061394000117,-8.49968840899983],[13.342051629000137,-8.467461846999882],[13.355479363000141,-8.464613539999945],[13.365000847000118,-8.465915622999844],[13.372569207000083,-8.464450778999888],[13.379893425000091,-8.453789971999852],[13.382578972000145,-8.444024346999823],[13.38355553500014,-8.368747653999932],[13.378916863000113,-8.347100518999852],[13.36939537900011,-8.323500257999811],[13.27686608200014,-8.17888762799987],[13.264903191000087,-8.1696916649999],[13.250824415000066,-8.124444268999866],[13.24244225400011,-8.10719166499986],[13.23454837300011,-8.095961195999863],[13.2225041020001,-8.069594007999868],[13.215505405000044,-8.05917734199987],[13.198008660000085,-8.021579684999878],[13.1893009770001,-7.975762627999885],[13.122894727000071,-7.857354424999883],[12.986308166000127,-7.55066086699982],[12.93928264800013,-7.435969127999925],[12.911472618000118,-7.335110615999908],[12.883894998000073,-7.305754470999872],[12.869054690000098,-7.288986325999899],[12.849963117000073,-7.265918980999814],[12.85519191700007,-7.231279022999929],[12.849857033000092,-7.205052670999861],[12.833262566000085,-7.005791924999855],[12.823415561000076,-6.975192966999842],[12.821299675000148,-6.959161065999851],[12.819672071000127,-6.954034112999835],[12.816661004000139,-6.950372002999884],[12.815196160000085,-6.946954033999873],[12.81788170700014,-6.942152601999879],[12.824554884000094,-6.93425872199991],[12.827484571000127,-6.929131768999894],[12.829925977000071,-6.918877862999864],[12.832774285000113,-6.915785414999888],[12.83350670700014,-6.912286065999893],[12.828786655000043,-6.904554945999876],[12.799571160000085,-6.923272393999852],[12.779633009000094,-6.914727471999838],[12.70687910200013,-6.814222914999888],[12.620425359000137,-6.734822774999884],[12.550631775000056,-6.632638645999876],[12.458181186000104,-6.465752862999834],[12.421954225000091,-6.380987645999838],[12.395575572000041,-6.324452741999878],[12.368825717000078,-6.287692966999842],[12.344543400000106,-6.254146508999937],[12.319149310000057,-6.220139812999861],[12.279446734000146,-6.147704837999825],[12.275060383000039,-6.1147691379999],[12.290293816000142,-6.096612237999864],[12.312654793000121,-6.090545471999889],[12.333647693000072,-6.078436268999923],[12.32701159800007,-6.093810969999893],[12.324780829000074,-6.122353132999904],[12.346872992000101,-6.120113032999839],[12.382206725000117,-6.110167640999848],[12.43295871500004,-6.108983566999839],[12.496927621000111,-6.094594274999878],[12.52776830200014,-6.074826207999834],[12.549799001000082,-6.067123489999872],[12.580642199000124,-6.062695452999861],[12.632823113000086,-6.03435637799987],[12.645518425000148,-6.028985283999901],[12.669816611000101,-6.029709683999897],[12.69075162300004,-6.037358136999898],[12.716095005000085,-6.045002077999897],[12.74253774200011,-6.049356248999828],[12.771169528000058,-6.04165865899992],[12.817430848000043,-6.031749810999855],[12.86146854900008,-6.016346948999853],[12.88238597500009,-6.000986464999826],[12.92756902800005,-5.981218325999862],[12.946270106000071,-5.955990676999832],[12.966073962000053,-5.931853386999862],[12.972659519000045,-5.913214391999901],[12.985879637000096,-5.901139782999863],[13.01113884600008,-5.895605731999822],[13.029867360000082,-5.893380573999835],[13.046372105000101,-5.885679232999805],[13.064015031000082,-5.887838356999836],[13.10059655000012,-5.891208591999899],[13.111827019000117,-5.890232028999918],[13.129161004000109,-5.883558851999865],[13.169688347000116,-5.861748955999914],[13.183848504000137,-5.856459242999932],[13.183913258573595,-5.856426865551924],[13.184910523000099,-5.856385598999879],[13.269349813000133,-5.863516946999822],[13.311001017000137,-5.873955586999855],[13.342523641000126,-5.890595397999874],[13.353582398000128,-5.882637226999819],[13.373839559000118,-5.860933124999818],[13.380454142000133,-5.856385598999879],[13.413320353000046,-5.857005716999851],[13.493212118000145,-5.858452656999845],[13.522667684000053,-5.867547708999908],[13.53475996900005,-5.867030943999865],[13.553053426000105,-5.859382832999884],[13.562561890000097,-5.857419127999862],[13.641523479000055,-5.865790709999843],[13.80714644300005,-5.852458190999812],[13.943572225000109,-5.841606139999868],[13.982329549000069,-5.853285013999837]]],[[[12.801057984000096,-4.41001393599997],[12.814803914000038,-4.412907816999876],[12.830306844000063,-4.409703876999814],[12.84229577700009,-4.404329528999853],[12.85428470900007,-4.403089294999816],[12.86989099100009,-4.411977640999822],[12.884463745000062,-4.432131448999897],[12.902447144000064,-4.480190531999852],[12.921980835000056,-4.502308043999861],[12.961564982000112,-4.533830667999837],[13.027194051000038,-4.612172138999824],[13.073702840000067,-4.635323180999904],[13.0653312580001,-4.663951923999889],[13.029571167000086,-4.676871032999898],[12.83320072400005,-4.722656351999845],[12.8029183350001,-4.739812926999889],[12.786175171000139,-4.758416441999856],[12.774806356000056,-4.779500426999873],[12.768295125000094,-4.801927998999957],[12.766228068000117,-4.825182392999892],[12.756926310000097,-4.837274678999961],[12.711967814000102,-4.8633196],[12.696981648000104,-4.87561859199981],[12.688300008000056,-4.897012633999822],[12.68623295000009,-4.912825621999985],[12.678894897000106,-4.924297789999912],[12.654400269000064,-4.932566019999953],[12.615849650000085,-4.935459899999941],[12.606961304000066,-4.942229511999898],[12.603964070000131,-4.962590026999833],[12.587737671000125,-5.000313822999871],[12.550427287000105,-5.024188333999859],[12.466504761000094,-5.05312713599983],[12.458133179000129,-5.054160664999813],[12.450691772000113,-5.05312713599983],[12.444387248000083,-5.055090840999867],[12.439426310000044,-5.064806009999898],[12.438909546000103,-5.073280944999809],[12.440769898000099,-5.084029642999923],[12.44469730600008,-5.093538105999812],[12.450381714000116,-5.098809101999933],[12.511980021000056,-5.120513203999834],[12.52407230600005,-5.129091490999869],[12.530686889000036,-5.162681171999807],[12.52768965700011,-5.239472350999861],[12.524382365000122,-5.324738464999825],[12.519731486000067,-5.444214375999891],[12.514977254000058,-5.568754577999826],[12.512496785000081,-5.633660176999868],[12.50898278800014,-5.726264343999915],[12.435498901000072,-5.725540872999829],[12.344445028000052,-5.724610696999875],[12.25897220900012,-5.736702981999854],[12.210554869353132,-5.763464704997148],[12.210541212000095,-5.763441664999859],[12.21029707100007,-5.763116143999838],[12.161794467000078,-5.68124765399989],[12.147227410000141,-5.617933851999837],[12.170176629000139,-5.554620049999883],[12.182383660000113,-5.543226820999833],[12.193369988000086,-5.540622653999918],[12.204844597000118,-5.539808851999823],[12.218597852000128,-5.534112237999835],[12.22828209700009,-5.523695570999848],[12.23218834700009,-5.510918877999899],[12.23218834700009,-5.479587497999859],[12.229258660000085,-5.466892184999892],[12.214121941000085,-5.431247653999847],[12.1963899750001,-5.396096918999888],[12.171362296000098,-5.329088242999845],[12.172090741000147,-5.302094889999822],[12.132348590000078,-5.232529128999843],[12.12461191400007,-5.184828052999848],[12.069737322000094,-5.119782870999899],[12.023122592000078,-5.045993747999901],[12.02328535200013,-5.035251559999877],[12.035150881000106,-5.038468946999899],[12.054771436000095,-5.042353816999906],[12.067822632000116,-5.046252994999847],[12.074346011000102,-5.05210585399989],[12.080891585000074,-5.075509125999872],[12.100527406000111,-5.080022217999897],[12.116815163000126,-5.069629422999839],[12.127259263000068,-5.053366311999909],[12.128561266000077,-5.039711413999854],[12.137714746000086,-5.034497411999922],[12.137054131000127,-5.01499605499984],[12.13247593900013,-5.0058992189999],[12.123330939000112,-5.002654564999844],[12.112884833000095,-5.002009816999873],[12.105050408000068,-5.013067071999927],[12.103085313000093,-5.027375522999875],[12.103738391000121,-5.048835580999835],[12.097859004000043,-5.054042887999842],[12.090669889000111,-5.050797593999903],[12.086108343000149,-5.030635647999873],[12.079587688000117,-5.02023172799987],[12.071751654000137,-5.017634490999824],[12.066529096000124,-5.026740248999886],[12.056727353000099,-5.02739676499985],[12.044960248000109,-5.02090167199988],[12.030556093000142,-5.022866506999918],[12.00960769100007,-5.019630835999806],[12.01807177200007,-5.00859978799987],[12.130814657000087,-4.912928975999833],[12.157169637000067,-4.8705543],[12.187555379000115,-4.768028258999948],[12.192206258000084,-4.763480732999838],[12.204091837000107,-4.763480732999838],[12.213496948000056,-4.769165139999955],[12.222592000000134,-4.780637308999971],[12.235201049000068,-4.803995055999835],[12.244089396000078,-4.796346943999865],[12.258558797000092,-4.790765888999928],[12.273751668000045,-4.787148538999944],[12.307651407000037,-4.783634540999813],[12.321914103000095,-4.77815684],[12.332352743000058,-4.765857848999957],[12.374107299000087,-4.683175556999899],[12.378861531000098,-4.662298278999842],[12.377621297000132,-4.619406839999883],[12.38702640800011,-4.605454203999884],[12.414104859000076,-4.608864846999907],[12.429091024000115,-4.607521259999857],[12.497200562000044,-4.585300394999905],[12.608098185000074,-4.565043232999813],[12.623807821000128,-4.559255471999933],[12.634866577000137,-4.547679951999896],[12.65657067900014,-4.507372333999839],[12.670523315000137,-4.491352640999892],[12.686853068000062,-4.478330179999858],[12.704939819000087,-4.467994893999929],[12.718479044000077,-4.451871845999946],[12.72654056800013,-4.427997333999869],[12.737909383000044,-4.404949645999821],[12.761680542000105,-4.391203714999961],[12.775426473000039,-4.396164651999825],[12.782655684000076,-4.400070757999898],[12.801057984000096,-4.41001393599997]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Burundi","sov_a3":"BDI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Burundi","adm0_a3":"BDI","geou_dif":0,"geounit":"Burundi","gu_a3":"BDI","su_dif":0,"subunit":"Burundi","su_a3":"BDI","brk_diff":0,"name":"Burundi","name_long":"Burundi","brk_a3":"BDI","brk_name":"Burundi","brk_group":null,"abbrev":"Bur.","postal":"BI","formal_en":"Republic of Burundi","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Burundi","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":8,"pop_est":8988091,"gdp_md_est":3102,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"BY","iso_a2":"BI","iso_a3":"BDI","iso_n3":"108","un_a3":"108","wb_a2":"BI","wb_a3":"BDI","woe_id":23424774,"woe_id_eh":23424774,"woe_note":"Exact WOE match as country","adm0_a3_is":"BDI","adm0_a3_us":"BDI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BDI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[30.415073283000137,-2.313087665999888],[30.418483927000068,-2.311847431999865],[30.42323815900005,-2.317325133999944],[30.428405802000043,-2.331381123999961],[30.434141886000134,-2.339235940999899],[30.488453817000163,-2.383781025999895],[30.52173344000005,-2.399387308999849],[30.554599650000053,-2.400627542999885],[30.521475057000146,-2.442278747999893],[30.50809086100014,-2.463466083999947],[30.470160360000136,-2.555760192999927],[30.461995483000063,-2.587489521999942],[30.45765466300008,-2.598031514999917],[30.448042846000078,-2.610537210999908],[30.424168335000104,-2.633171487999959],[30.41600345900008,-2.645573831999926],[30.41212772600005,-2.670171813999914],[30.42323815900005,-2.680920511999929],[30.442668498000046,-2.681127217999886],[30.463752482000075,-2.674202575999914],[30.4996159260001,-2.657872822999877],[30.522560262000066,-2.649397887999967],[30.516100708000067,-2.668311461999906],[30.458584839000082,-2.728669534999909],[30.450523315000055,-2.741795348999872],[30.447267700000108,-2.757298278999883],[30.4469059650001,-2.782723082999893],[30.425098510000055,-2.812178648999904],[30.413626343000146,-2.834399515999849],[30.41579675300005,-2.851659443999921],[30.44080814600005,-2.884008890999908],[30.45600101700006,-2.898271585999893],[30.4741911210001,-2.903232523999932],[30.46964359500009,-2.914187926999915],[30.475431356000055,-2.922146097999885],[30.48411299600008,-2.930724385999909],[30.488325079000102,-2.94316005799989],[30.488453817000163,-2.943540139999896],[30.49325972500009,-2.941266376999877],[30.51305179800005,-2.913981221999947],[30.52493737800017,-2.904162699999887],[30.538890015000106,-2.89899505599989],[30.54700321500007,-2.900338642999941],[30.611960490000058,-2.939199320999904],[30.625189656000146,-2.944780374999922],[30.629530477000113,-2.94767425499991],[30.63211429800009,-2.953772073999872],[30.634904825000095,-2.970101826999908],[30.637592001000083,-2.97444264699989],[30.650924520000046,-2.977336526999877],[30.66136315900007,-2.974752705999961],[30.671336711000095,-2.970825296999905],[30.68368737800012,-2.96999847399988],[30.69598636900008,-2.974546],[30.718879029000103,-2.989532164999971],[30.732056519000086,-2.993459573999942],[30.755414266000116,-2.991392516999895],[30.802129761000117,-2.978370055999946],[30.825487508000037,-2.978576760999914],[30.818814624000137,-2.990495174999893],[30.815824015000143,-2.995836689999905],[30.78486983300013,-3.031493427999891],[30.778255249000043,-3.047409768999913],[30.783216186000057,-3.062085876999901],[30.80781416800005,-3.085236917999893],[30.817684366000037,-3.099086201999853],[30.81783939600007,-3.104357197999889],[30.813085164000086,-3.117689717999909],[30.812258341000074,-3.123477477999884],[30.815824015000143,-3.131022236999925],[30.82879480000014,-3.140530700999918],[30.832928915000082,-3.147662048999947],[30.833962443000072,-3.160271097999967],[30.832205444000063,-3.172776793999972],[30.823523804000047,-3.196651305999865],[30.809364461000087,-3.216805114999929],[30.80988122500014,-3.224143167999927],[30.814325399000037,-3.241919860999872],[30.814842163000097,-3.247707621999936],[30.79975264500007,-3.274579365999926],[30.775671427000134,-3.291012470999902],[30.747921184000063,-3.294113056999933],[30.72146285000008,-3.280987242999885],[30.71841394100005,-3.292872822999911],[30.712006063000047,-3.301864521999946],[30.702239217000056,-3.307342223999839],[30.689940227000132,-3.308892516999947],[30.662603393000094,-3.319227803999866],[30.64053755700013,-3.332870380999878],[30.62167565900006,-3.350440368999941],[30.603278849000162,-3.372557880999863],[30.610250154000084,-3.376358647999922],[30.640434204000083,-3.392815042999871],[30.639142293000134,-3.419480081999907],[30.61289066600011,-3.444904886999907],[30.56596846500014,-3.466712340999933],[30.55294600400009,-3.482215270999859],[30.544987834000036,-3.489139912999931],[30.53811486900008,-3.491620381999908],[30.511501505000123,-3.497718200999955],[30.50995121300014,-3.500198668999928],[30.508245890000065,-3.508880309999896],[30.507160685000148,-3.511050719999972],[30.488040406000156,-3.512601012999908],[30.487523641000053,-3.510740661999904],[30.485559937000176,-3.510533955999946],[30.468920126000057,-3.513014424999923],[30.46633630400009,-3.516115009999865],[30.462615600000046,-3.527897236999863],[30.46013513100007,-3.531927997999958],[30.43228153500013,-3.551875101999883],[30.42685551000005,-3.563864033999934],[30.429232625000115,-3.58391448899988],[30.4288708900001,-3.602207946999954],[30.421377807000056,-3.620811461999906],[30.38014001500005,-3.685613708999909],[30.37311202000006,-3.703597106999907],[30.37306837800008,-3.704339017999914],[30.37197513800004,-3.722924092999946],[30.376212606000077,-3.739770609999923],[30.381897014000113,-3.755170185999916],[30.384997599000084,-3.770776467999951],[30.381586954000053,-3.788346455999928],[30.336990194000123,-3.773773701999871],[30.31172041800005,-3.789896748999852],[30.273273152000115,-3.856249287999972],[30.220769898000068,-3.909992777999889],[30.208780965000074,-3.930456644999935],[30.191417684000157,-4.002493591999907],[30.17585230700013,-4.039991996999959],[30.173227579000123,-4.046315205999917],[30.14976647900005,-4.086829527999924],[30.119587443000057,-4.123519795999896],[30.05147790600006,-4.180157165999972],[30.041142619000137,-4.195039977999926],[30.015614461000098,-4.256018167999898],[30.003005411000057,-4.271934508999919],[29.980784546000052,-4.284440204999925],[29.970655965000105,-4.292605081999852],[29.936342814000056,-4.312035419999916],[29.90047937000014,-4.345625101999942],[29.84735599700008,-4.370533141999913],[29.83857100400013,-4.37353037499993],[29.82182784000014,-4.370739847999872],[29.810975789000107,-4.365262145999878],[29.800330444000107,-4.363918557999909],[29.784104045000106,-4.373840432999913],[29.782295370000096,-4.377354430999958],[29.78017663600013,-4.393684183999909],[29.775008992000036,-4.402262470999929],[29.75795577000008,-4.410220641999899],[29.751651245000062,-4.416111755999893],[29.747930542000063,-4.430271096999945],[29.74741377700013,-4.443190205999954],[29.744364868000105,-4.454455667999909],[29.732841023000105,-4.463344014999933],[29.728293498000138,-4.461587014999864],[29.68746911700003,-4.45838307699988],[29.638273153000057,-4.446807555999939],[29.40417891500016,-4.449804788999941],[29.372759644000038,-4.208165791999903],[29.36722380600014,-4.189048239999863],[29.3394800210001,-4.093237405999957],[29.27772668400013,-3.98895436599993],[29.239796183000124,-3.948026630999919],[29.224551636000054,-3.926529235999879],[29.21504317200009,-3.899864195999925],[29.206568237000113,-3.781938578999884],[29.217122763000134,-3.709265928999898],[29.223259725000105,-3.667010191999864],[29.225171753000037,-3.588565367999947],[29.2066715900001,-3.334524027999919],[29.208738648000065,-3.305275165999873],[29.213079468000046,-3.291942646999942],[29.236116841000065,-3.270703730999898],[29.240881388000105,-3.266311136999888],[29.223828166000086,-3.252668558999886],[29.216903523000095,-3.233134866999876],[29.214112996000036,-3.166472268999954],[29.217523641000067,-3.146215107999865],[29.225016724000113,-3.129368590999889],[29.237780803000078,-3.122237243999933],[29.242328328000095,-3.110765075999922],[29.241539256000063,-3.104187711999898],[29.234628540000188,-3.046582946999891],[29.22537845800008,-3.031803486999877],[29.21152917500012,-3.021158141999877],[29.19447595200009,-3.014646910999915],[29.175975789000063,-3.012476500999924],[29.156752157000142,-3.004828388999939],[29.148173868000097,-2.98694834299988],[29.144246460000144,-2.966277770999866],[29.13840702300007,-2.950361429999944],[29.12336918100007,-2.940232848999898],[29.10507572500009,-2.934135029999936],[29.089779500000137,-2.926073506999941],[29.083268270000072,-2.910053812999891],[29.081717977000068,-2.893930764999908],[29.077583862000036,-2.884008890999908],[29.062701050000097,-2.862201435999892],[29.053502645000094,-2.835433044999916],[29.04905847100008,-2.827474873999947],[29.034072306,-2.82086029099986],[29.01314335100002,-2.818896585999922],[28.994901570000078,-2.813625589999887],[28.986891723000095,-2.796779072999911],[28.988803751000034,-2.775488382999924],[28.995521688000053,-2.758435159999891],[29.008234090000087,-2.747479756999923],[29.02859460400012,-2.744895934999917],[29.015365438000114,-2.720711364999943],[29.032573690000106,-2.620665791999954],[29.055259643000085,-2.598444925999928],[29.113447307000087,-2.594620869999886],[29.129725383000107,-2.596997985999835],[29.1904451900001,-2.623456318999914],[29.212769409000085,-2.630277608999961],[29.25498905400013,-2.635548603999907],[29.276124716000083,-2.640612893999971],[29.294418172000064,-2.651051533999919],[29.30661381000004,-2.660146585999897],[29.307337280000066,-2.66479746499995],[29.30604537000011,-2.676579690999858],[29.309480544000106,-2.690126857999871],[29.309714396000118,-2.69104909299989],[29.331418497000183,-2.711409606999922],[29.33751631600006,-2.723811949999885],[29.335345907000086,-2.735180765999885],[29.321496623000087,-2.75213063599989],[29.318085978000113,-2.762569274999919],[29.320359741000118,-2.774144795999873],[29.32966149900005,-2.794918720999902],[29.330850057000134,-2.807424417999911],[29.339686727000068,-2.826441344999878],[29.364284709000064,-2.824167581999859],[29.407434530000046,-2.805460713999878],[29.425366251000124,-2.803393655999912],[29.444674800000087,-2.806989288999957],[29.48086674000012,-2.813728942999916],[29.504121135000048,-2.826854756999893],[29.52313806100011,-2.820446878999846],[29.54184493000008,-2.808561298999919],[29.563755737000122,-2.805667418999931],[29.574091024000037,-2.806080829999942],[29.582049194000092,-2.802980244999901],[29.5894906000002,-2.798432718999962],[29.61925622500013,-2.787684020999933],[29.626387573000045,-2.788097431999859],[29.637086889000102,-2.791628628999916],[29.67868412200005,-2.805357360999934],[29.697546021000107,-2.808251240999923],[29.719921916000143,-2.805460713999878],[29.729637085000093,-2.79956959999987],[29.733977905000074,-2.790267841999935],[29.737285197000062,-2.769287210999934],[29.74472660300012,-2.759985452999913],[29.75619877100013,-2.759882099999885],[29.77852299000017,-2.766600036999918],[29.803379354000132,-2.767323505999911],[29.823584839000034,-2.763499450999873],[29.842395060000054,-2.752440693999873],[29.862858927000104,-2.731666768999915],[29.87619144700011,-2.713580016999913],[29.888387085000144,-2.692909443999895],[29.89789554800012,-2.671101988999865],[29.903269898000076,-2.649087828999882],[29.903725678000054,-2.637946527999887],[29.907920776000136,-2.535399678999894],[29.929573202000142,-2.459848733999877],[29.922390177000068,-2.382954202999883],[29.92890140800006,-2.331794534999872],[29.92879805500013,-2.322492776999937],[29.931691935000117,-2.316911722999933],[29.941923869000103,-2.316601663999947],[29.949933716000142,-2.321149189999886],[29.956781101000047,-2.327037670999928],[29.958519715000136,-2.328532809999913],[29.976133667000056,-2.343680114999898],[29.98388513100008,-2.344816995999906],[29.992308390000062,-2.343990172999895],[30.001920207000065,-2.344300230999877],[30.013340698000093,-2.348330993999866],[30.02553633600013,-2.357736104999915],[30.05654219600012,-2.394426370999895],[30.0729753010001,-2.408792418999894],[30.093852580000142,-2.422641702999953],[30.11679691600011,-2.431530049999878],[30.13912113400005,-2.430806578999877],[30.15617435700011,-2.419024352999884],[30.201339559000072,-2.362386982999894],[30.203406617000045,-2.355358988999882],[30.203923381000095,-2.345953877999917],[30.207489054000064,-2.339235940999899],[30.219116252000106,-2.34037282299991],[30.250328816000092,-2.355565693999935],[30.262731161000147,-2.358356220999895],[30.278854207000048,-2.357632750999898],[30.297974487000204,-2.353705341999927],[30.316784709000046,-2.347607522999879],[30.331150756000056,-2.340269469999967],[30.344018189000053,-2.328383890999945],[30.348610082000107,-2.322351935999919],[30.35275150500013,-2.316911722999933],[30.362518351000062,-2.307816670999955],[30.37858972200013,-2.303062438999873],[30.383447306000047,-2.305542906999932],[30.415073283000137,-2.313087665999888]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Benin","sov_a3":"BEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Benin","adm0_a3":"BEN","geou_dif":0,"geounit":"Benin","gu_a3":"BEN","su_dif":0,"subunit":"Benin","su_a3":"BEN","brk_diff":0,"name":"Benin","name_long":"Benin","brk_a3":"BEN","brk_name":"Benin","brk_group":null,"abbrev":"Benin","postal":"BJ","formal_en":"Republic of Benin","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Benin","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":12,"pop_est":8791832,"gdp_md_est":12830,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"BN","iso_a2":"BJ","iso_a3":"BEN","iso_n3":"204","un_a3":"204","wb_a2":"BJ","wb_a3":"BEN","woe_id":23424764,"woe_id_eh":23424764,"woe_note":"Exact WOE match as country","adm0_a3_is":"BEN","adm0_a3_us":"BEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"BEN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[3.341635376000113,11.882893372000053],[3.355071248000058,11.889042868000033],[3.369127238000061,11.897311096000081],[3.380909465000087,11.895037334000065],[3.391658163000102,11.888836161000071],[3.402820272000042,11.885270488000103],[3.447675415000106,11.857985331000094],[3.484262329000046,11.845169577000107],[3.495424439000089,11.837521464000119],[3.503485961000081,11.829976705000078],[3.536972290000079,11.782899476000082],[3.543690226000109,11.777060038000101],[3.549271280000113,11.773752746000099],[3.553715454000042,11.769670309000091],[3.557436157000041,11.761815491000064],[3.562500447000104,11.74600250300007],[3.566221150000018,11.738354391000087],[3.568184855000055,11.729517721000079],[3.571698852000111,11.721869608000103],[3.580070435000096,11.717373759000083],[3.589372193000117,11.701509095000077],[3.596400187000114,11.695773010000025],[3.57438602700006,11.673035380000044],[3.504932902000064,11.556556702000094],[3.493047323000041,11.511494853000045],[3.486742798000137,11.496276144000104],[3.466692342000073,11.442480978000091],[3.468449340000063,11.419484965000052],[3.483332153000106,11.392303162000061],[3.662546020000093,11.143145244000067],[3.686730590000082,11.120485128000098],[3.694998820000109,11.119115703000134],[3.704403930000069,11.120795187000084],[3.705583311000055,11.120732942000089],[3.713705689000108,11.120304260000053],[3.722077271000074,11.112346090000086],[3.711845337000085,11.073511251000141],[3.711845337000085,11.051858826000057],[3.715876099000099,11.031885885000122],[3.723317505000097,11.013540751000049],[3.733549438000097,10.996461691000105],[3.733549438000097,10.996203308000132],[3.754116658000072,10.907138977000045],[3.752979777000064,10.877683411000133],[3.731275675000063,10.825025126000128],[3.730035441000041,10.807713521000025],[3.735099731000105,10.795776266000075],[3.743161255000103,10.787456360000121],[3.751946248000081,10.780169983000135],[3.759491008000055,10.7715916960001],[3.764451945000075,10.760868836000098],[3.773857056000054,10.728054301000086],[3.783262166000099,10.716969706000071],[3.79607792100009,10.713119812000116],[3.810237264000108,10.710484314000098],[3.822949666000085,10.703249613000139],[3.832148071000091,10.68392262800009],[3.83710900900013,10.654828797000079],[3.837245715000051,10.63060901700004],[3.837419067000014,10.599896749000067],[3.829874308000058,10.573076681000074],[3.804346151000118,10.523157248000103],[3.795354451000094,10.496492208000063],[3.7943209230001,10.44486745200004],[3.787706339000096,10.426367290000101],[3.772513469000074,10.407634582000114],[3.75690718600012,10.405257467000068],[3.692828409000129,10.438382059000077],[3.671744425000099,10.44207692500008],[3.652107381000064,10.435798238000075],[3.632573689000139,10.416652120000066],[3.625959106000067,10.407272848000119],[3.623168579000093,10.400916647000088],[3.62213505000011,10.38122792600005],[3.618207642000044,10.369342346000108],[3.592989543000101,10.330946757000078],[3.572422323000097,10.285704041000088],[3.573352498000077,10.266997173000107],[3.587615193000118,10.244182027000107],[3.65562137900011,10.174780578000139],[3.664613078000059,10.162197368000122],[3.667506957000057,10.146565247000082],[3.664830075000082,10.128653750000097],[3.663992961000076,10.12305247000009],[3.654897908000123,10.101115825000136],[3.642392212000118,10.09189158200013],[3.627819458000146,10.084992778000055],[3.612316528000065,10.070290833000058],[3.605805297000074,10.054116110000066],[3.599604126000088,9.968694966000058],[3.589475545000141,9.948825378000066],[3.557126099000044,9.910558981000065],[3.530771118000104,9.862964987000124],[3.513097778000088,9.846609395000087],[3.452946411000141,9.853094788000135],[3.413982381000068,9.842837016000146],[3.342048788000113,9.813588156000023],[3.325925740000031,9.801728415000085],[3.317140747000053,9.781729634000058],[3.314866984000048,9.75909535800011],[3.318380981000075,9.739432475000072],[3.330679972000041,9.708633321000093],[3.338638143000082,9.67822174100013],[3.331610148000067,9.652021790000106],[3.299053996000026,9.633960877000106],[3.281380656000124,9.634994405000086],[3.261846964000113,9.63861175500007],[3.245723918000039,9.633702495000136],[3.238179158000094,9.609052836000046],[3.23941939200003,9.602309062000103],[3.244690389000056,9.589570821000052],[3.243553507000058,9.584403178000045],[3.182575317000072,9.505338236000057],[3.175133911000074,9.4988786830001],[3.159010864000095,9.493478495000133],[3.151776164000125,9.488155823000085],[3.132552531000101,9.457279155000094],[3.12862512200013,9.429580587000075],[3.135343058000046,9.401675313000098],[3.148055461000098,9.370256042000065],[3.151466105000026,9.35356455500012],[3.151362752000097,9.288633117000074],[3.145161580000121,9.267859192000131],[3.124594360000031,9.22899851500007],[3.091314738000079,9.126420796000103],[3.076018514000026,9.0951565550001],[3.051420533000055,9.078206686000101],[2.983104289000096,9.060610861000029],[2.971425415000112,9.0605075080001],[2.961400187000094,9.065313416000095],[2.951685018000148,9.071902161000096],[2.940729614000077,9.07706980400009],[2.929877564000122,9.078361715000142],[2.899181762000097,9.077379862000086],[2.888433064000054,9.07536448200004],[2.877787720000072,9.068543192000078],[2.869312784000073,9.059706523000074],[2.859700969000073,9.052626851000056],[2.846265096000109,9.050766500000051],[2.769163859000059,9.057045186000053],[2.772367798000118,9.030535177000061],[2.770197387000052,8.967154032000039],[2.764719686000149,8.939765524000094],[2.76151574700009,8.933693542000128],[2.750250285000021,8.916872864000068],[2.747769816000044,8.914805806000102],[2.74952681500011,8.90661509200008],[2.753764282000077,8.904418843000087],[2.758725220000116,8.902661845000111],[2.762549276000072,8.895685527000111],[2.762135864000044,8.88041514100007],[2.749630167000049,8.851941427000028],[2.745909464000135,8.836516012000132],[2.74714969900009,8.827653503000121],[2.752317342000083,8.812279765000142],[2.751077107000043,8.803417257000133],[2.745702759000096,8.79814626000011],[2.728856242000091,8.790472310000027],[2.723171834000055,8.78292755100007],[2.722861776000087,8.772308045000088],[2.722948943000091,8.771217938000134],[2.742438669000109,8.527481443000084],[2.744772583000042,8.498293762000046],[2.736917765000101,8.464523214000067],[2.728959595000049,8.452740987000155],[2.709012492000113,8.43039093100009],[2.703741495000088,8.417885233000092],[2.70353479000002,8.409022726000087],[2.706015259000111,8.390548401000059],[2.706015259000111,8.381272481000053],[2.698367147000113,8.33985382100009],[2.69712691300009,8.320707703000082],[2.700744263000075,8.296884868000106],[2.70849572700007,8.27481903100012],[2.728132771000105,8.2331936650001],[2.734954061000053,8.21190297500003],[2.734437297000113,8.189966329000072],[2.726582479000086,8.171595357000072],[2.716143839000068,8.154903870000041],[2.708392375000045,8.137979838000135],[2.705705200000125,8.119686381000065],[2.70353479000002,8.059896749000117],[2.690925741000086,7.996567281000111],[2.687101684000055,7.933522034000091],[2.683587687000113,7.92463368800007],[2.673355753000124,7.905565084000088],[2.671081990000118,7.897916972000104],[2.671694505000062,7.893434477000127],[2.672218872000116,7.889597067000053],[2.680280396000114,7.877349752000028],[2.691545858000069,7.848669332000043],[2.715523722000086,7.822055969000103],[2.724412068000106,7.807689921000089],[2.727202596000069,7.79332387300009],[2.717641139000136,7.658548898000105],[2.715317017000132,7.625788879000069],[2.720588012000064,7.58656646700011],[2.7406384680001,7.549359437000105],[2.770197387000052,7.514271139000073],[2.792314901000054,7.477632548000117],[2.78962772600002,7.435826315000057],[2.787250610000086,7.426886292000119],[2.786527140000089,7.421253561000099],[2.783323201000115,7.41923818000015],[2.761722452000129,7.423527324000119],[2.751283814000089,7.423630677000047],[2.74363570100013,7.41923818000015],[2.74115523200004,7.408179424000138],[2.762135864000044,7.162199606000115],[2.761102336000079,7.148350322000055],[2.757795044000062,7.138893535000079],[2.749836873000106,7.128558248000076],[2.7406384680001,7.109592998000025],[2.736297648000118,7.102926738000107],[2.735264119000135,7.09600209600012],[2.739088175000091,7.082979635000086],[2.747666463000115,7.072230937000072],[2.773918090000052,7.05078521700004],[2.779705851000131,7.041328431000068],[2.775778442000046,7.030528056000037],[2.765546508000085,7.025102030000156],[2.752730754000083,7.02132965100013],[2.741051880000015,7.015800273000124],[2.715110311000075,6.979833476000067],[2.718417602000073,6.943556621000099],[2.731956828000136,6.905212708000093],[2.736917765000101,6.863303121000101],[2.7262724200001,6.821367697000099],[2.723585246000084,6.799715271000125],[2.728649536000148,6.780000713000064],[2.736297648000118,6.7698462930001],[2.744772583000042,6.763774312000066],[2.755004517000117,6.760725403000037],[2.767406860000079,6.759562683000111],[2.773297974000087,6.755040995000086],[2.775261677000117,6.744886576000127],[2.778568969000105,6.698765361000099],[2.772987915000101,6.687474060000127],[2.76068892400005,6.679386699000119],[2.742602172000147,6.66334116700007],[2.731130005000125,6.641843771000125],[2.730819946000054,6.621354065000062],[2.739398234000078,6.5791860960001],[2.737331177000101,6.558024597000056],[2.718803181000084,6.504297780000101],[2.715420369000071,6.494488424000096],[2.71192043500011,6.474047835000093],[2.704258260000131,6.429298605000085],[2.703841289345036,6.36835167263952],[2.703298373000109,6.368312893000108],[2.306976759000122,6.331488348000036],[2.226817254000082,6.313666083000057],[1.88453209700009,6.274807033000059],[1.619662500047014,6.21389923179639],[1.612438598000068,6.234762675000113],[1.633109171000086,6.245692240000096],[1.761576782000077,6.276026306000134],[1.782350708000138,6.277266541000074],[1.763540486000124,6.350647075000111],[1.744110148000061,6.425732930000109],[1.71837528500015,6.466996561000116],[1.709796997000126,6.473404440000066],[1.688299601000068,6.48443735800015],[1.681685018000081,6.489837545000128],[1.67951460800009,6.498570862000093],[1.681995077000067,6.520016581000036],[1.680754842000027,6.530067648000056],[1.674450318000112,6.538594259000077],[1.657810506000089,6.552262675000094],[1.655226685000088,6.559213156000083],[1.653883098000023,6.570659485000093],[1.646648397000149,6.573191630000082],[1.636829874000085,6.572261454000113],[1.62742476400004,6.573346660000111],[1.619569946000098,6.577997539000079],[1.611198364000131,6.584689636000093],[1.603343547000094,6.592596130000046],[1.597349081000061,6.600812684000076],[1.594145141000098,6.611044617000061],[1.59476525800008,6.620268860000067],[1.596522257000061,6.628640443000052],[1.596315552000078,6.636417745000059],[1.58536014800012,6.656442363000095],[1.572441040000086,6.666906840000138],[1.566033163000071,6.678146465000097],[1.574301392000109,6.700574036000091],[1.589182290000082,6.720460328000044],[1.597039021000086,6.730959778000042],[1.601069784000089,6.746436869000135],[1.595178670000081,6.770569763000097],[1.587530558000111,6.791033631000062],[1.583189738000016,6.808267720000046],[1.582569620000044,6.825346781000092],[1.590114380000102,6.8673338830001],[1.58804732300004,6.881234843000072],[1.579055623000102,6.8920352170001],[1.56422344300006,6.903089389000087],[1.562622518000126,6.904282532000124],[1.551357055000068,6.920870666000042],[1.53192671700009,6.991925761000047],[1.607477661000104,6.991408996000103],[1.62566776500006,6.996783346000072],[1.624944296000081,7.143647767000076],[1.624324178000109,7.288806865000113],[1.623704060000136,7.438100078000075],[1.623251367000051,7.536384757000121],[1.622854912000122,7.622459699000046],[1.622773885000072,7.640051575000143],[1.621947062000061,7.838282369000112],[1.621326945000078,7.996567281000111],[1.623807414000055,8.155885722000107],[1.625564412000131,8.270478210000135],[1.61491906700013,8.356261089000057],[1.609854777000066,8.365485331000059],[1.603963663000059,8.36744903600008],[1.603944873000017,8.36747621500011],[1.601069784000089,8.371634827000037],[1.60603072100011,8.396026103000054],[1.60603072100011,8.41338938400007],[1.607581014000061,8.421864319000079],[1.64044722400007,8.47581451400012],[1.644167928000087,8.493487855000126],[1.639930461000034,8.503254700000085],[1.614092245000109,8.535785014000126],[1.609027954000055,8.546972961000066],[1.607581014000061,8.558755188000063],[1.607204026000119,8.588617302000046],[1.605513956000095,8.722491964000142],[1.604273722000045,8.815225321000057],[1.602826782000051,8.924391785000111],[1.601173136000114,9.049526266000115],[1.595798787000149,9.076811422000034],[1.587840617000097,9.100892639000065],[1.567273397000093,9.136730245000107],[1.50515832500011,9.201454977000097],[1.425266561000115,9.284499003000064],[1.4201460190001,9.292317169000071],[1.401185343000066,9.321266785000134],[1.386715942000137,9.361135152000074],[1.379894653000093,9.462472636000115],[1.368422485000082,9.490842998000119],[1.351265910000109,9.482548930000064],[1.33648645000008,9.497509257000033],[1.326357869000049,9.521952209000077],[1.323153930000075,9.542312724000098],[1.327288045000103,9.555309346000044],[1.345064737000115,9.582387797000095],[1.351265910000109,9.595074362000048],[1.352506144000131,9.605280456000116],[1.35219608500006,9.625356751000067],[1.354573201000107,9.63530446400007],[1.356020141000101,9.647474264000081],[1.348165324000149,9.694163920000063],[1.346925089000109,9.771833598000072],[1.345064737000115,9.881103414000066],[1.34394169300009,9.95475642000008],[1.343824503000093,9.962442119000059],[1.331008748000102,9.996471049000107],[1.225485473000049,10.0660533650001],[1.082238403000105,10.160440369000057],[0.997105905000097,10.216553226000087],[0.939508097000043,10.254517314000111],[0.844423462000094,10.317174988000133],[0.768769164000048,10.367094421000104],[0.760707642000057,10.382158102000089],[0.759880818000113,10.40515411400014],[0.773833456000119,10.508145243000127],[0.788509562000087,10.563852438000069],[0.789233032000084,10.602945659000085],[0.781274862000117,10.693043519000069],[0.795640910000145,10.72647817000005],[0.850004517000116,10.777689514000157],[0.862923625000121,10.796086324000072],[0.866024210000148,10.806369934000145],[0.867574503000071,10.829210917000069],[0.869538208000108,10.839907938000067],[0.885144490000073,10.869389344000083],[0.883697551000068,10.880215556000124],[0.875325968000084,10.900524394000044],[0.872948853000139,10.91129893000007],[0.875842732000137,10.931168518000064],[0.901474243000081,10.99274098700009],[0.931963338000088,10.976101176000071],[0.945399211000023,10.974292501000079],[0.963279256000078,10.974137472000052],[0.967516723000131,10.979485983000089],[0.969997192000108,10.991164856000069],[0.969067017000071,11.002895407000054],[0.963279256000078,11.008269755000114],[0.955321085000122,11.011990458000128],[0.951807088000067,11.021085511000095],[0.951290324000126,11.032299297000051],[0.952427205000049,11.042402039000095],[0.955941203000094,11.044727479000116],[0.964416138000104,11.057414042000076],[0.970307251000094,11.069480490000046],[0.97692183400008,11.078368836000067],[0.981366008000094,11.080125834000043],[0.986016887000062,11.078498027000094],[1.007927694000017,11.075061544000064],[1.014645629000142,11.070358989000082],[1.019709920000111,11.065682271000114],[1.025084269000075,11.063511861000123],[1.027978149000063,11.061341452000136],[1.033249146000088,11.051574605000084],[1.035006144000079,11.049275004000066],[1.041310669000097,11.049585063000052],[1.052162720000126,11.055011089000118],[1.056090129000097,11.056070455000096],[1.086889282000072,11.052737325000095],[1.097017863000133,11.049275004000066],[1.099705037000149,11.044365743000114],[1.106836385000094,11.034418030000026],[1.114174438000077,11.027674255000093],[1.117481730000094,11.032195943000119],[1.118618612000091,11.048241476000072],[1.107249796000104,11.05979115800011],[1.100945272000104,11.070410665000097],[1.099291626000138,11.081288554000153],[1.099084920000081,11.092605693000039],[1.097017863000133,11.104491272000061],[1.09515751100011,11.104439595000144],[1.085649047000032,11.108728739000114],[1.082755168000062,11.110692444000051],[1.08213505000009,11.115291646000086],[1.08389204900007,11.127719828000068],[1.082755168000062,11.13180226600008],[1.073350057000084,11.133946838000071],[1.067045532000094,11.12833994600004],[1.063324829000067,11.126970520000071],[1.062291300000083,11.14206003900007],[1.067458943000105,11.144282125000073],[1.10042850800005,11.151620178000158],[1.106216267000121,11.155650940000058],[1.113037557000069,11.173866882000112],[1.117481730000094,11.178982849000093],[1.128127076000083,11.178879497000068],[1.148074178000087,11.169500224000032],[1.15840946500009,11.165934550000145],[1.153241821000108,11.183168640000133],[1.149314412000138,11.217249247000098],[1.130607544000043,11.247583313000135],[1.13556848200011,11.260114848000043],[1.145903768000011,11.269855855000088],[1.156342407000039,11.285539652000054],[1.165954224000046,11.277994894000102],[1.173498982000098,11.266600240000102],[1.172155395000033,11.261484273000107],[1.180940389000028,11.26135508200008],[1.186211385000149,11.263887228000073],[1.191379028000057,11.267013652000115],[1.200060669000038,11.26897735600005],[1.218974243000076,11.268047180000096],[1.235200642000081,11.263473816000058],[1.268376912000093,11.247893371000117],[1.281089314000042,11.271096090000128],[1.282639608000068,11.27887339300014],[1.280365845000034,11.2886919150001],[1.270547323000073,11.298277894000108],[1.268376912000093,11.306210225000072],[1.273337850000132,11.318224996000126],[1.284499959000073,11.312721456000133],[1.296178833000056,11.299621481000072],[1.302483358000046,11.288846944000056],[1.30930464700009,11.297089335000095],[1.316332642000106,11.299879862000054],[1.323463989000061,11.297089335000095],[1.330388631000033,11.288846944000056],[1.347855265000078,11.303497213000128],[1.345891561000144,11.316338806000118],[1.336176391,11.330033061000051],[1.330388631000033,11.347163798000095],[1.339070271000082,11.36610321100005],[1.359017375000121,11.378893127000111],[1.381651652000073,11.388685812000077],[1.398084757000021,11.39868520100009],[1.388576293000142,11.420001730000081],[1.389816529000086,11.428399150000075],[1.398084757000021,11.440310567000097],[1.411107218000069,11.449844869000088],[1.423215479000135,11.45374753200015],[1.423612915000149,11.453875631000088],[1.433844848000149,11.459405009000093],[1.439632609000114,11.473771057000093],[1.455962361000047,11.464701843000128],[1.475289347000114,11.460774434000157],[1.56934045400007,11.453307190000132],[1.567273397000093,11.446692607000045],[1.564999634000088,11.432636617000112],[1.563242635000108,11.426022034000113],[1.58060591600011,11.427055562000106],[1.601586548000114,11.388685812000077],[1.621120239000021,11.395274557000064],[1.638173461000065,11.404214579000095],[1.684372192000097,11.413852234000116],[1.703492472000107,11.422921448000082],[1.719098755000061,11.42777903300009],[1.763333781000057,11.424678446000144],[1.78224735500001,11.426022034000113],[1.821521444000069,11.441602478000064],[1.840641723000061,11.445478210000104],[1.858005005000081,11.440310567000097],[1.867616821000098,11.446615092000116],[1.879812459000106,11.44485809400004],[1.905754028000075,11.432843323000071],[1.948025349000147,11.416720276000092],[1.983372030000055,11.414007264000062],[2.010760538000085,11.426900533000065],[2.015428661000072,11.431589907000102],[2.146979614000116,11.56373972600005],[2.220050089000068,11.622547506000117],[2.273586873000113,11.652054749000044],[2.287436157000059,11.665283915000131],[2.291053507000044,11.67479237900011],[2.290226684000118,11.685747783000096],[2.290846802000089,11.703214416000037],[2.301595500000104,11.731533102000128],[2.340042766000067,11.773856100000032],[2.354098755000081,11.799849345000098],[2.390168904000092,11.896535950000072],[2.388205201000062,11.906767884000132],[2.376526327000079,11.92407948900005],[2.37518273900011,11.935034892000118],[2.380867146000071,11.947902324000026],[2.389342081000052,11.950072734000102],[2.398747192000116,11.948780823000062],[2.407428832000079,11.951209616000114],[2.414146769000098,11.958702698000153],[2.422001587000125,11.973172099000081],[2.428926228000108,11.980355123000038],[2.438951457000144,11.981285299000092],[2.449390096000087,11.97751291900006],[2.456728149000071,11.979063212000085],[2.457348267000043,11.996219787000143],[2.455281209000077,12.008673808000125],[2.448769979000105,12.01337636400011],[2.439261515000112,12.015598450000113],[2.428616170000026,12.020352682000109],[2.418280883000108,12.028672587000074],[2.411149536000095,12.036785788000074],[2.405568481000074,12.046707662000072],[2.371875447000122,12.140448711000133],[2.362056925000047,12.196155905000069],[2.361230102000121,12.218893535000047],[2.370015096000117,12.236256816000065],[2.394199666000077,12.247212219000048],[2.407945597000122,12.2489175420001],[2.43088993300006,12.24798736600006],[2.443705689000126,12.249227600000097],[2.446082805000088,12.251811422000088],[2.454351033000108,12.263025208000045],[2.459518677000119,12.266745911000058],[2.46696008300006,12.26504058800009],[2.472644491000096,12.259252829000118],[2.477708781000075,12.257599182000163],[2.483393188000122,12.268037822000094],[2.488044067000089,12.280388489000059],[2.495072062000076,12.283230692000132],[2.504477173000055,12.281835429000054],[2.516259400000138,12.28142201700014],[2.519049927000111,12.279148255000123],[2.52060021900013,12.273670553000045],[2.523700806000079,12.269174703000104],[2.53124556500012,12.269691467000142],[2.536929972000053,12.273050436000062],[2.54602502400013,12.2816287240001],[2.550572550000055,12.284522604000088],[2.586125936000116,12.294031067000063],[2.590053345000086,12.293307597000066],[2.598631632000121,12.288346659000112],[2.603592570000075,12.287829895000085],[2.609690389000122,12.290775452000076],[2.621679321000073,12.299508769000056],[2.628603963000074,12.300800680000108],[2.663847290000149,12.291550598000084],[2.672942342000113,12.296718241000093],[2.686894979000101,12.318422343000094],[2.6902022700001,12.326173808000092],[2.692165975000137,12.334028626000132],[2.695059855000125,12.34121165000009],[2.700434204000089,12.34710276300008],[2.711286254000129,12.351236878000108],[2.721828247000104,12.344260560000109],[2.732266886000048,12.346792704000093],[2.741465291000026,12.354130758000096],[2.757484985000076,12.372940979000106],[2.768543742000077,12.38007232700005],[2.778155558000094,12.381932678000053],[2.798412720000101,12.381209209000147],[2.808644653000073,12.383224589000093],[2.832415812000136,12.384051413000122],[2.844301392000062,12.399244283000144],[2.892257121000114,12.357076314000096],[2.912617635000032,12.346327616000082],[2.92264286300005,12.335630595000067],[2.930394328000062,12.323331604000117],[2.936802205000106,12.300852357000108],[2.944967081000129,12.292480774000138],[2.95602583800013,12.286848043000106],[2.967808064000025,12.282558899000051],[3.000984334000037,12.278889873000137],[3.009355917000022,12.276306051000049],[3.013076620000049,12.271086731000123],[3.022895142000095,12.252483215000083],[3.063409464000102,12.19377878900012],[3.23538863100012,12.039524638000117],[3.238489217000079,12.034201965000065],[3.252028442000067,12.024125062000039],[3.255129028000084,12.01875071200007],[3.257609497000061,11.997408346000071],[3.262570435000015,11.974722392000103],[3.269908488000112,11.956532288000062],[3.292749471000121,11.918653463000068],[3.307012166000106,11.902375387000047],[3.315487102000105,11.894572246000038],[3.327786092000053,11.88640736900011],[3.341635376000113,11.882893372000053]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Burkina Faso","sov_a3":"BFA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Burkina Faso","adm0_a3":"BFA","geou_dif":0,"geounit":"Burkina Faso","gu_a3":"BFA","su_dif":0,"subunit":"Burkina Faso","su_a3":"BFA","brk_diff":0,"name":"Burkina Faso","name_long":"Burkina Faso","brk_a3":"BFA","brk_name":"Burkina Faso","brk_group":null,"abbrev":"B.F.","postal":"BF","formal_en":"Burkina Faso","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Burkina Faso","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":5,"mapcolor13":11,"pop_est":15746232,"gdp_md_est":17820,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"UV","iso_a2":"BF","iso_a3":"BFA","iso_n3":"854","un_a3":"854","wb_a2":"BF","wb_a3":"BFA","woe_id":23424978,"woe_id_eh":23424978,"woe_note":"Exact WOE match as country","adm0_a3_is":"BFA","adm0_a3_us":"BFA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BFA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-0.3976712649999,15.002134501000072],[-0.361471923999943,15.017740784000113],[-0.29917598499992,15.054741110000064],[-0.236699177999867,15.065618999000035],[-0.166987670999902,15.049676819000098],[-0.033404092999916,14.995933329000096],[-0.033197387999962,14.995933329000096],[0.218466838000012,14.910977275000109],[0.22084395400006,14.888213806000126],[0.211852254000121,14.874803772000078],[0.198002971000051,14.863796692000093],[0.185755656000111,14.848190409000052],[0.184102010000089,14.81956166600007],[0.213092488000143,14.761632386000128],[0.219707072000062,14.731220805000063],[0.152941121000111,14.546710103000123],[0.158832234000016,14.496118877000086],[0.188649536000099,14.447749736000047],[0.202382348000128,14.43554454100014],[0.346366007000057,14.307577414000065],[0.388792358000103,14.251611837000054],[0.391634562000064,14.245927430000108],[0.390601034000099,14.237633362000054],[0.381118408000106,14.225670268000101],[0.377423543000106,14.216601054000135],[0.37215254700007,14.18564687100013],[0.367398315000088,14.173787130000107],[0.343472127000069,14.137536113000067],[0.339157145000115,14.125779725000157],[0.343575480000112,14.11433339500006],[0.356262044000061,14.09570404100009],[0.362463216000123,14.088856913000129],[0.368741902000039,14.084154358000147],[0.374219605000036,14.078883362000113],[0.378457072000089,14.070434265000117],[0.377320190000091,14.063948873000072],[0.369051961000139,14.047851664000092],[0.369155314000068,14.0390666710001],[0.378353719000074,14.028808900000115],[0.391376180000094,14.022581889000037],[0.401866495000149,14.013796895000041],[0.403933553000115,13.99607187900011],[0.411865886000072,13.978424377000124],[0.428376506000063,13.967494812000055],[0.445920654000105,13.958580628000036],[0.456695190000062,13.946850078000054],[0.456255941000023,13.938142599000088],[0.448065227000086,13.920107524000086],[0.448633666000148,13.909617208000043],[0.454809001000029,13.902356669000156],[0.475660441000088,13.88894663500011],[0.483515259000029,13.880342509000073],[0.491990194000039,13.861816508000047],[0.499925937000114,13.85101508000011],[0.504082479000118,13.845357564000068],[0.519275350000044,13.83163747200014],[0.55296838400011,13.810036723000081],[0.563200317000081,13.796781718000076],[0.57446577900015,13.785025330000082],[0.59368941200006,13.77810068700009],[0.600510701000104,13.768721415000142],[0.5945162350001,13.749859517000118],[0.584801066000068,13.729008077000058],[0.580460245000069,13.713789368000121],[0.594309530000118,13.688881328000065],[0.620664510000097,13.679967143000042],[0.753369588000055,13.684101258000055],[0.763498169000115,13.682034200000087],[0.766392049000103,13.675109558000115],[0.766185343000132,13.666970520000104],[0.767012166000058,13.660872701000145],[0.766288696000061,13.65717783600013],[0.762878052000133,13.65304372200012],[0.763704874000069,13.646429138000116],[0.775693807000039,13.63529286700009],[0.795330852000063,13.62596527100007],[0.813107544000076,13.6250350950001],[0.85072798600001,13.628600769000071],[0.896926717000071,13.614932353000157],[0.950980266000045,13.583203024000042],[0.991391235000122,13.541112569000106],[0.996558878000116,13.49605072100006],[1.015265747000115,13.465664978000106],[1.04823531100007,13.44194549600006],[1.157169230000079,13.392646179000067],[1.175049275000021,13.386910095000104],[1.21742395000004,13.381768290000108],[1.234270467000016,13.377582500000074],[1.249566691000069,13.367066346000113],[1.268686971000079,13.346059875000108],[1.241505168000089,13.33554372100015],[1.222074829000093,13.344612935000114],[1.205745076000056,13.358901469000102],[1.187658325000143,13.364120789000111],[1.182387329000022,13.358694764000049],[1.17763309800003,13.347610169000118],[1.167607869000108,13.31342620900004],[1.160683228000039,13.311307475000163],[1.13846236100008,13.320376689000128],[1.084718872000082,13.33358001800012],[1.004723755000043,13.364844259000108],[0.983536418000085,13.36840993300008],[0.970410604000023,13.328334859000092],[0.970824015000033,13.243533834000061],[0.971340779000087,13.14940521300008],[0.971661196000127,13.085782453000135],[0.971754191000087,13.067317200000074],[0.974648071000075,13.048326111000108],[0.983536418000085,13.03235809300007],[1.012268513000095,13.016881002000076],[1.083788696000028,13.010989888000069],[1.113967733000038,12.996236267000157],[1.170915161000096,12.949210714000086],[1.230756470000074,12.899756368000055],[1.304806449000068,12.838507989000107],[1.330595336000101,12.817177429000111],[1.412037394000037,12.749868876000122],[1.467124471000091,12.704393616000061],[1.535854126000061,12.647497864000101],[1.563862752000063,12.632149964000135],[1.597039021000086,12.623675029000125],[1.699461710000122,12.614890035000144],[1.826068969000119,12.604193014000131],[1.843742309000106,12.606105042000152],[1.860692179000125,12.617060445000035],[1.872681112000066,12.634217021000097],[1.883223104000137,12.65395741800006],[1.900172974000043,12.678452047000107],[1.906994262000097,12.691836243000054],[1.911438436000111,12.696642151000061],[1.919603312000021,12.698347473000112],[1.926631307000122,12.694988505000111],[1.934486124000074,12.693541565000118],[1.945544881000074,12.700827942000089],[1.962494750000076,12.719121399000073],[1.971693156000071,12.724237366000054],[2.068948202000115,12.716279196000087],[2.109049113000111,12.705633851000101],[2.135197388000108,12.675609843000132],[2.140985148000084,12.656127828000137],[2.144809204000126,12.650753479000088],[2.155454549000098,12.640004781000073],[2.165996541000084,12.63173655200012],[2.184289998000054,12.620626119000107],[2.193281698000078,12.609464009000078],[2.199999633000118,12.59592478400009],[2.203203572000092,12.58331573500007],[2.210851684000147,12.523061015000096],[2.215709269000087,12.51034861200013],[2.22387414500011,12.494845683000037],[2.229558553000061,12.487145895000126],[2.242270955000095,12.473451640000107],[2.24630171700008,12.465906880000162],[2.24630171700008,12.461669414000113],[2.243097778000021,12.451179098000068],[2.242994425000091,12.446166484000102],[2.244958130000043,12.424152324000119],[2.237930135000113,12.413455302000116],[2.223254028000042,12.409734599000103],[2.163826131000093,12.404773661000148],[2.158761840000096,12.405652160000086],[2.148013142000082,12.41076812700008],[2.145015910000069,12.411749980000138],[2.13871138500005,12.408339336000026],[2.131476685000081,12.398520814000065],[2.126929159000071,12.39511016900012],[2.069258260000083,12.383327942000037],[2.054168741000097,12.370925599000145],[2.051791626000039,12.341935120000088],[2.070911905000031,12.30689849900007],[2.113803345000093,12.24798736600006],[2.188527466000096,12.145461324000095],[2.258807413000085,12.048774720000038],[2.338079061000116,11.940099182000097],[2.390168904000092,11.896535950000072],[2.354098755000081,11.799849345000098],[2.340042766000067,11.773856100000032],[2.301595500000104,11.731533102000128],[2.290846802000089,11.703214416000037],[2.290226684000118,11.685747783000096],[2.291053507000044,11.67479237900011],[2.287436157000059,11.665283915000131],[2.273586873000113,11.652054749000044],[2.220050089000068,11.622547506000117],[2.146979614000116,11.56373972600005],[2.015428661000072,11.431589907000102],[2.010760538000085,11.426900533000065],[1.983372030000055,11.414007264000062],[1.948025349000147,11.416720276000092],[1.905754028000075,11.432843323000071],[1.879812459000106,11.44485809400004],[1.867616821000098,11.446615092000116],[1.858005005000081,11.440310567000097],[1.840641723000061,11.445478210000104],[1.821521444000069,11.441602478000064],[1.78224735500001,11.426022034000113],[1.763333781000057,11.424678446000144],[1.719098755000061,11.42777903300009],[1.703492472000107,11.422921448000082],[1.684372192000097,11.413852234000116],[1.638173461000065,11.404214579000095],[1.621120239000021,11.395274557000064],[1.601586548000114,11.388685812000077],[1.58060591600011,11.427055562000106],[1.563242635000108,11.426022034000113],[1.564999634000088,11.432636617000112],[1.567273397000093,11.446692607000045],[1.56934045400007,11.453307190000132],[1.475289347000114,11.460774434000157],[1.455962361000047,11.464701843000128],[1.439632609000114,11.473771057000093],[1.433844848000149,11.459405009000093],[1.423612915000149,11.453875631000088],[1.423215479000135,11.45374753200015],[1.411107218000069,11.449844869000088],[1.398084757000021,11.440310567000097],[1.389816529000086,11.428399150000075],[1.388576293000142,11.420001730000081],[1.398084757000021,11.39868520100009],[1.381651652000073,11.388685812000077],[1.359017375000121,11.378893127000111],[1.339070271000082,11.36610321100005],[1.330388631000033,11.347163798000095],[1.336176391,11.330033061000051],[1.345891561000144,11.316338806000118],[1.347855265000078,11.303497213000128],[1.330388631000033,11.288846944000056],[1.323463989000061,11.297089335000095],[1.316332642000106,11.299879862000054],[1.30930464700009,11.297089335000095],[1.302483358000046,11.288846944000056],[1.296178833000056,11.299621481000072],[1.284499959000073,11.312721456000133],[1.273337850000132,11.318224996000126],[1.268376912000093,11.306210225000072],[1.270547323000073,11.298277894000108],[1.280365845000034,11.2886919150001],[1.282639608000068,11.27887339300014],[1.281089314000042,11.271096090000128],[1.268376912000093,11.247893371000117],[1.235200642000081,11.263473816000058],[1.218974243000076,11.268047180000096],[1.200060669000038,11.26897735600005],[1.191379028000057,11.267013652000115],[1.186211385000149,11.263887228000073],[1.180940389000028,11.26135508200008],[1.172155395000033,11.261484273000107],[1.173498982000098,11.266600240000102],[1.165954224000046,11.277994894000102],[1.156342407000039,11.285539652000054],[1.145903768000011,11.269855855000088],[1.13556848200011,11.260114848000043],[1.130607544000043,11.247583313000135],[1.149314412000138,11.217249247000098],[1.153241821000108,11.183168640000133],[1.15840946500009,11.165934550000145],[1.148074178000087,11.169500224000032],[1.128127076000083,11.178879497000068],[1.117481730000094,11.178982849000093],[1.113037557000069,11.173866882000112],[1.106216267000121,11.155650940000058],[1.10042850800005,11.151620178000158],[1.067458943000105,11.144282125000073],[1.062291300000083,11.14206003900007],[1.063324829000067,11.126970520000071],[1.067045532000094,11.12833994600004],[1.073350057000084,11.133946838000071],[1.082755168000062,11.13180226600008],[1.08389204900007,11.127719828000068],[1.08213505000009,11.115291646000086],[1.082755168000062,11.110692444000051],[1.085649047000032,11.108728739000114],[1.09515751100011,11.104439595000144],[1.097017863000133,11.104491272000061],[1.099084920000081,11.092605693000039],[1.099291626000138,11.081288554000153],[1.100945272000104,11.070410665000097],[1.107249796000104,11.05979115800011],[1.118618612000091,11.048241476000072],[1.117481730000094,11.032195943000119],[1.114174438000077,11.027674255000093],[1.106836385000094,11.034418030000026],[1.099705037000149,11.044365743000114],[1.097017863000133,11.049275004000066],[1.086889282000072,11.052737325000095],[1.056090129000097,11.056070455000096],[1.052162720000126,11.055011089000118],[1.041310669000097,11.049585063000052],[1.035006144000079,11.049275004000066],[1.033249146000088,11.051574605000084],[1.027978149000063,11.061341452000136],[1.025084269000075,11.063511861000123],[1.019709920000111,11.065682271000114],[1.014645629000142,11.070358989000082],[1.007927694000017,11.075061544000064],[0.986016887000062,11.078498027000094],[0.981366008000094,11.080125834000043],[0.97692183400008,11.078368836000067],[0.970307251000094,11.069480490000046],[0.964416138000104,11.057414042000076],[0.955941203000094,11.044727479000116],[0.952427205000049,11.042402039000095],[0.951290324000126,11.032299297000051],[0.951807088000067,11.021085511000095],[0.955321085000122,11.011990458000128],[0.963279256000078,11.008269755000114],[0.969067017000071,11.002895407000054],[0.969997192000108,10.991164856000069],[0.967516723000131,10.979485983000089],[0.963279256000078,10.974137472000052],[0.945399211000023,10.974292501000079],[0.931963338000088,10.976101176000071],[0.901474243000081,10.99274098700009],[0.771559692000096,10.99036387200006],[0.675338175000149,10.988529358000049],[0.612602987000116,10.976566264000098],[0.487649373000067,10.93323557600013],[0.499741658000033,10.975687764000071],[0.483618612000072,10.979692688000055],[0.487132609000099,10.983671774000129],[0.488579549000093,10.98775421200014],[0.48930301900009,10.991914165000066],[0.49064660600007,10.996358337000075],[0.490129842000044,10.999510600000136],[0.488786254000075,11.001784363000054],[0.486615844000084,11.003205465000136],[0.374779215000075,11.025807961000126],[0.28755822700009,11.043435567000074],[0.05958764600004,11.089401754000065],[-0.0631180419999,11.11415476500008],[-0.115062219999885,11.124658279000073],[-0.16610917099996,11.134980367000137],[-0.301682291999924,11.162937317000043],[-0.304472818999955,11.146788432000049],[-0.300545409999899,11.137409160000104],[-0.298297485999882,11.128391622000052],[-0.30612646499992,11.113534648000025],[-0.318813028999955,11.101364848000102],[-0.368939167999883,11.065217183000087],[-0.386922566999971,11.086404521000134],[-0.405887816999922,11.101468201000046],[-0.42521480299996,11.101468201000046],[-0.444386759999901,11.077438660000112],[-0.449037637999936,11.062891744000055],[-0.451259724999943,11.04020579100009],[-0.456685750999924,11.029612122000115],[-0.46851965299993,11.020129496000038],[-0.494822956999883,11.007804667000087],[-0.504228067999946,10.996358337000075],[-0.504228067999946,10.996203308000132],[-0.506708536999923,10.993671163000059],[-0.509705769999925,10.991449077000139],[-0.512961384999926,10.989743754000088],[-0.516475382999971,10.988632711000077],[-0.555439411999942,10.989950460000045],[-0.576213337999917,10.98775421200014],[-0.590579385999916,10.982431539000089],[-0.599829467999911,10.965765890000071],[-0.607115844999896,10.941219584000095],[-0.617244424999853,10.91863698300007],[-0.634762735999914,10.90796580000007],[-0.682770141999868,10.953596090000062],[-0.679772907999933,10.960572408000061],[-0.672279825999908,10.968504741000103],[-0.667990682999942,10.976514588000086],[-0.673933471999959,10.983516744000083],[-0.683235229999894,10.98434356700011],[-0.690211547999894,10.981811422000119],[-0.69465572099989,10.982741598000075],[-0.695999308999944,10.994032898000057],[-0.703017494999955,10.99415881200008],[-0.816973836999921,10.996203308000132],[-0.816973836999921,10.996461691000105],[-0.822141479999914,11.003618876000147],[-0.827774210999962,11.005840963000152],[-0.833665323999867,11.003412171000093],[-0.839401407999901,10.996461691000105],[-0.860795450999916,10.992921855000134],[-0.883171345999898,10.968633932000046],[-0.900586303999944,10.966230978000096],[-0.893920043999913,10.979899394000098],[-0.904358683999874,10.979485983000089],[-0.909474649999936,10.982689921000159],[-0.916450968999953,10.996203308000132],[-0.924047403999907,11.001422628000057],[-0.93247066299989,11.003102112000105],[-1.070343383999955,11.013902486000049],[-1.098713744999969,11.009561666000067],[-1.107550414999878,10.994342956000125],[-1.228059854999913,10.995479838000051],[-1.355287231999881,10.996720072000073],[-1.380350300999907,11.001267599000116],[-1.413553084999876,11.014049746000069],[-1.423584092999931,11.017911405000104],[-1.436057494999915,11.022713318000044],[-1.562406371999941,11.026589050000098],[-1.579821329999987,11.021214702000123],[-1.58700435399993,11.003670553000061],[-1.598683226999924,10.997133484000088],[-1.754074259999925,10.995634868000081],[-1.972872273999883,10.993516134000103],[-2.197871459999931,10.991294047000096],[-2.439768839999942,10.98894276900006],[-2.634950723999879,10.986979065000128],[-2.7287975939999,10.98605735500007],[-2.75070593299992,10.98584218400012],[-2.75111934499995,10.996461691000105],[-2.837341471999877,10.99801198400013],[-2.835946207999882,10.992224223000065],[-2.838710896999942,10.985118714000121],[-2.832716430999909,10.966024272000126],[-2.821761026999923,10.948299256000027],[-2.815766560999918,10.929153137000114],[-2.821399291999938,10.906260478000092],[-2.834861002999901,10.89161020900012],[-2.850803181999936,10.879543763000129],[-2.864239054999871,10.864273377000089],[-2.871628784999899,10.843447774000126],[-2.882661702999883,10.797068176000039],[-2.899482380999956,10.769989726000077],[-2.903099730999941,10.747148743000068],[-2.908577433999909,10.737666118000092],[-2.919274454999936,10.727201640000146],[-2.922323363999851,10.721207174000112],[-2.919959289999923,10.711088218000071],[-2.918912719999923,10.706608582000058],[-2.916949015999904,10.706608582000058],[-2.912634033999922,10.705807597000046],[-2.908034829999878,10.70363718700014],[-2.905140950999879,10.699193013000126],[-2.905115111999891,10.692733459000081],[-2.907337198999898,10.688315125000088],[-2.91015356499986,10.684491068000042],[-2.916251383999906,10.66808380100008],[-2.929661417999853,10.644209290000092],[-2.932503621999928,10.634313253000101],[-2.92826615499996,10.615218811000119],[-2.898293823999921,10.562612204000116],[-2.895865030999886,10.55276784300014],[-2.89421138499992,10.531425476000052],[-2.891524210999904,10.521658631000093],[-2.886899169999936,10.515793356000103],[-2.873385782999947,10.502486674000094],[-2.870440225999857,10.497784119000116],[-2.867391316999942,10.47825042800011],[-2.859562336999915,10.465615540000071],[-2.824448201999871,10.435023092000066],[-2.812149210999933,10.428821920000075],[-2.795871134999913,10.426108907000128],[-2.771428181999851,10.425488790000074],[-2.767552448999908,10.421199646000105],[-2.771893269999879,10.411820373000053],[-2.781039998999887,10.402415263000094],[-2.791995401999941,10.398151957000053],[-2.804940347999946,10.397118429000058],[-2.814629679999911,10.393707784000128],[-2.822329467999879,10.387584127000066],[-2.829460815999937,10.37828236900013],[-2.836282103999878,10.363657939000078],[-2.841294718999933,10.343271586000128],[-2.841294718999933,10.322290954000039],[-2.833181518999936,10.305987041000094],[-2.824448201999871,10.302214661000079],[-2.814216267999882,10.301077779000067],[-2.805689656999959,10.299010722000105],[-2.802098144999889,10.292318624000089],[-2.799669351999938,10.280923970000089],[-2.793183959999879,10.27854685400014],[-2.7844506429999,10.278805237000114],[-2.774838826999882,10.275239563000142],[-2.764865274999892,10.269115906000081],[-2.758354044999919,10.266118673000065],[-2.754943399999888,10.260796000000113],[-2.754374959999922,10.247954407000123],[-2.75768225199991,10.234647726000118],[-2.765123657999936,10.225836894000125],[-2.785380818999954,10.210101420000058],[-2.798454955999915,10.189534200000153],[-2.798920043999914,10.169612935000146],[-2.788481404999885,10.124447734000071],[-2.788481404999885,10.038768209000096],[-2.783572143999947,10.018511048000093],[-2.760886189999894,9.984766337000124],[-2.754374959999922,9.966782938000037],[-2.755563516999956,9.941151428000069],[-2.764865274999892,9.895753683000137],[-2.76052445499991,9.87053558400008],[-2.736753295999932,9.832579245000076],[-2.733911091999857,9.822786560000111],[-2.740267293999892,9.812606303000052],[-2.774838826999882,9.774339905000147],[-2.79158199099993,9.740931091000078],[-2.795302693999929,9.720002136000089],[-2.788481404999885,9.699254049000047],[-2.780316527999958,9.690236512000098],[-2.774838826999882,9.689306336000143],[-2.769257771999975,9.689926453000112],[-2.76052445499991,9.68558563300013],[-2.755460163999913,9.677498270000044],[-2.754219929999891,9.668351542000051],[-2.751015991999907,9.659178976000064],[-2.743404468999926,9.653325351000149],[-2.740163940999963,9.650833231000092],[-2.752928019999927,9.639903666000123],[-2.761506306999962,9.62525339800004],[-2.766467244999915,9.60889780700009],[-2.768017536999935,9.592800599000029],[-2.766260538999859,9.576522522000104],[-2.761092894999933,9.5662389120001],[-2.725281127999921,9.533863627000102],[-2.68921097799992,9.488724263000051],[-2.720475219999912,9.45921702000004],[-2.744918171999956,9.408109030000047],[-2.763676717999942,9.391882629000122],[-2.787602905999961,9.39371714300013],[-2.810418049999953,9.411106262000146],[-2.91015356499986,9.542726136000113],[-2.959892130999947,9.63861175500007],[-2.977823852999933,9.685172221000116],[-2.989993651999953,9.70842661600004],[-3.005677449999894,9.724162090000105],[-3.024642699999958,9.728606262000113],[-3.059059203999908,9.718555196000096],[-3.077094278999908,9.719407858000125],[-3.094560912999953,9.73385142000005],[-3.104379435999931,9.757131653000071],[-3.116910969999935,9.805294088000068],[-3.136935587999886,9.829530335000143],[-3.16011246799988,9.834697978000051],[-3.182565877999878,9.835163066000078],[-3.200006673999894,9.84536916100005],[-3.204399169999903,9.865367941000086],[-3.202228759999912,9.888958232000093],[-3.202564656999897,9.90823354100013],[-3.214760294999905,9.915623271000129],[-3.230237385999914,9.90471954300007],[-3.264059610999908,9.857073873000033],[-3.277857218999941,9.843457133000129],[-3.301731730999933,9.841131694000097],[-3.311808634999891,9.854128316000129],[-3.313565632999968,9.874566345000076],[-3.312738809999928,9.894513449000101],[-3.317182983999942,9.901334737000056],[-3.327518269999956,9.89730397600006],[-3.339248819999852,9.8900951130001],[-3.348343871999901,9.886994527000056],[-3.359015055999918,9.892498068000052],[-3.376559203999875,9.908491923000097],[-3.389168253999912,9.913246155000095],[-3.546471313999945,9.926139425000086],[-3.606260945999878,9.918181254000032],[-3.62334000699994,9.921746928000104],[-3.634011189999939,9.929240010000044],[-3.64054825799991,9.937379048000139],[-3.648170531999881,9.944587911000099],[-3.661658080999927,9.94892873100008],[-3.665042887999959,9.946603292000148],[-3.674318806999878,9.935260315000079],[-3.6796414799999,9.932211405000132],[-3.685946004999949,9.933451640000087],[-3.698994302999893,9.94078969300007],[-3.706461547999908,9.941823222000053],[-3.755037394999903,9.935880433000134],[-3.769610147999885,9.931332906000108],[-3.779738728999916,9.924692485000094],[-3.795758422999882,9.907665100000074],[-3.80425919599989,9.901386414000072],[-3.823482828999914,9.895702006000121],[-3.889706176999908,9.894461772000085],[-3.891624633999924,9.893900095000063],[-3.91009252899994,9.888493144000066],[-3.947738809999862,9.864360250000104],[-3.969184529999894,9.858985901000054],[-3.984041503999919,9.851156921000026],[-3.988253133999876,9.83480133100008],[-3.994609333999903,9.820771179000062],[-4.026674560999908,9.820306091000134],[-4.034968627999973,9.817618917000104],[-4.050316528999929,9.81030670200012],[-4.051350056999922,9.807567851000073],[-4.051711791999907,9.802348531000064],[-4.053675496999858,9.79762013800007],[-4.05987666799993,9.796276551000105],[-4.065716104999922,9.798085226000097],[-4.076154744999968,9.803795471000058],[-4.133050496999914,9.820409444000061],[-4.150258747999885,9.818290711000088],[-4.168293823999903,9.804829],[-4.196974242999886,9.7649606330001],[-4.215422729999915,9.754857890000054],[-4.253094848999921,9.750051982000059],[-4.27032893899991,9.743928325000084],[-4.283635620999945,9.732016907000057],[-4.279191446999931,9.731138408000106],[-4.267512572999863,9.727262675000063],[-4.297794961999983,9.695843404000115],[-4.303298502999979,9.686722514000051],[-4.303453531999907,9.677911682000058],[-4.300482137999921,9.65429555300004],[-4.302988443999908,9.641712341000115],[-4.315933390999902,9.616623434000088],[-4.322476993999885,9.608980710000111],[-4.322547973999917,9.60889780700009],[-4.349678099999977,9.620034078000117],[-4.365026001999951,9.624168193000045],[-4.368023233999878,9.608381043000064],[-4.367816528999896,9.591973775000099],[-4.37117549599992,9.582956238000051],[-4.38486975099994,9.589415792000096],[-4.391587687999959,9.600293681000068],[-4.400165974999908,9.633134054000081],[-4.409105997999915,9.647732646000051],[-4.43336808299992,9.6534687300001],[-4.469205688999864,9.651763407000132],[-4.501710163999888,9.655019023000122],[-4.51592118399995,9.675689595000051],[-4.513647420999916,9.694008891000124],[-4.50382889899987,9.719898783000062],[-4.501606810999959,9.737107035000122],[-4.503958089999912,9.742016297000063],[-4.509952554999927,9.745065206000092],[-4.517781534999955,9.746615499000114],[-4.535945800999883,9.746615499000114],[-4.539098063999859,9.744703471000093],[-4.539899047999967,9.740776062000123],[-4.543051310999913,9.734006450000095],[-4.547960570999862,9.720260518000146],[-4.548425658999889,9.706798808000102],[-4.552198038999904,9.696463522000087],[-4.566719115999945,9.692406922000089],[-4.578320475999902,9.6965151980001],[-4.592712360999911,9.717831727000087],[-4.604029499999882,9.72715932200012],[-4.616948608999905,9.713852641000116],[-4.628730834999914,9.707703145000053],[-4.641107339999877,9.706023661000089],[-4.655809284999861,9.706075338000105],[-4.65472408099987,9.703543193000115],[-4.658263915999925,9.697600403000095],[-4.664826822999913,9.690856628000063],[-4.672914184999911,9.68558563300013],[-4.681079060999934,9.682071635000085],[-4.681802530999931,9.682846781000093],[-4.681544148999933,9.686722514000051],[-4.686608439999929,9.692406922000089],[-4.700095987999902,9.697910462000081],[-4.705470336999952,9.70209625300012],[-4.707640747999932,9.709770203000105],[-4.709087686999936,9.720312195000076],[-4.71280838999985,9.726849264000052],[-4.724383911999894,9.737107035000122],[-4.730016642999914,9.744238383000067],[-4.733323933999912,9.749638570000045],[-4.738336547999978,9.75315256800009],[-4.74864599599988,9.754496155000155],[-4.758593709999984,9.75330759700013],[-4.762133544999955,9.749948629000116],[-4.76045406099999,9.745323588000062],[-4.754769653999857,9.74020762200007],[-4.76996252399988,9.737365418000095],[-4.783191690999956,9.758371887000107],[-4.796446695999862,9.754496155000155],[-4.79931473799985,9.762531840000136],[-4.801226765999957,9.766459249000107],[-4.810115111999891,9.774339905000147],[-4.810115111999891,9.781781311000074],[-4.800399942999945,9.781109518000093],[-4.791899169999937,9.782349752000114],[-4.775905313999885,9.788008321000063],[-4.785413777999878,9.804829],[-4.790323038999901,9.82751495300009],[-4.798462076999924,9.842526958000079],[-4.817556517999918,9.836454976000127],[-4.824274454999937,9.856970520000102],[-4.838459634999879,9.869450378000096],[-4.858329223999873,9.875703227000088],[-4.881738647999953,9.877408549000052],[-4.890058552999903,9.879501445000116],[-4.893495035999933,9.884204],[-4.898016723999973,9.888906555000075],[-4.909385538999857,9.891051127000154],[-4.917085326999938,9.886477763000116],[-4.922356322999889,9.877460226000068],[-4.928014892999926,9.870948995000091],[-4.936670694999861,9.87399790400012],[-4.966074584999944,9.901024679000072],[-4.967314819999899,9.912367656000058],[-4.9529487719999,9.953372905000094],[-4.954809122999905,9.959703268000112],[-4.96571285,9.983112691000073],[-4.976926634999899,9.997607931000104],[-4.981396646999912,10.007736511000061],[-4.960209309999868,10.008485819000072],[-4.956411091999939,10.021999207000135],[-4.963335733999912,10.040318502000119],[-4.974523681999955,10.055537211000058],[-4.986641805999852,10.063262838000057],[-4.999793456999925,10.069464010000047],[-5.01051631699994,10.079049988000136],[-5.015580607999908,10.09711090100005],[-5.025528320999911,10.08873931900007],[-5.037233031999989,10.08375254400012],[-5.04834346599992,10.085354512000052],[-5.056482503999916,10.09711090100005],[-5.042865762999923,10.10333791100004],[-5.049376993999886,10.105353292000089],[-5.055138916999852,10.108040467000109],[-5.061701822999851,10.11005584700007],[-5.07009924299993,10.110159200000098],[-5.061030028999966,10.118453268000053],[-5.037594767999906,10.12648895300012],[-5.039455118999911,10.13434377000007],[-5.06472489499987,10.150802714000136],[-5.070719360999902,10.161008809000108],[-5.063949747999857,10.179043885000112],[-5.090718139999922,10.1779328410001],[-5.09014969899988,10.188810730000071],[-5.0815972499999,10.206897481000084],[-5.084413614999902,10.227438864000064],[-5.087333333999908,10.220824280000059],[-5.091906696999956,10.214338887000096],[-5.097849487999952,10.209274597000032],[-5.104903319999977,10.206949158000086],[-5.117073120999891,10.20803436300008],[-5.118210001999898,10.212478536000091],[-5.114411783999855,10.21829213400008],[-5.11180212399995,10.223718160000146],[-5.11180212399995,10.278650208000073],[-5.119191853999951,10.293533020000027],[-5.11988239199988,10.293983277000065],[-5.135676635999943,10.304281718000126],[-5.152058064999892,10.305625305000106],[-5.159499470999918,10.292318624000089],[-5.168439493999927,10.291336772000122],[-5.217583780999888,10.319939677000093],[-5.233551797999922,10.315676371000038],[-5.279802204999895,10.32242014600007],[-5.296648721999873,10.323040263000038],[-5.304141804999915,10.318415223000073],[-5.309206094999894,10.311490580000097],[-5.315510619999912,10.305263570000108],[-5.327086140999938,10.302576396000077],[-5.338506632999952,10.302214661000079],[-5.343777628999873,10.303093160000117],[-5.348170124999882,10.305987041000094],[-5.353337768999978,10.308260804000028],[-5.357058471999892,10.30438507100007],[-5.360830850999918,10.298752340000135],[-5.365533406999901,10.295703431000106],[-5.385738891999893,10.296478577000116],[-5.402533731999938,10.300561015000127],[-5.416227986999956,10.307537333000113],[-5.426976684999886,10.316864929000062],[-5.430077270999931,10.322936910000108],[-5.433487915999962,10.331876933000046],[-5.437828734999925,10.34001597100014],[-5.443771525999863,10.343529969000102],[-5.453021606999869,10.343943380000113],[-5.459946248999954,10.34515777600005],[-5.474157267999914,10.350325419000058],[-5.475294148999922,10.367714539000076],[-5.48748978699993,10.392932638000033],[-5.505111449999929,10.41556691500007],[-5.522578084999878,10.425488790000074],[-5.517100382999956,10.439984029000101],[-5.508987182999874,10.490936992000059],[-5.505163126999918,10.499179383000097],[-5.481650349999938,10.535327047000107],[-5.46811112499995,10.587830302000086],[-5.471056680999965,10.597364604000077],[-5.478549763999894,10.604237569000134],[-5.477412882999886,10.619559632000103],[-5.470488239999924,10.635605164000154],[-5.46056636599991,10.6445710240001],[-5.47591426599999,10.650384623000079],[-5.477154499999926,10.658807882000062],[-5.48211543799988,10.675215149000124],[-5.482632201999905,10.684232687000074],[-5.473072061999914,10.737872823000146],[-5.467956095999909,10.752678121000073],[-5.461186482999892,10.760042013000074],[-5.452969929999938,10.763969421000127],[-5.44645869999988,10.768697815000124],[-5.445011759999886,10.7785680140001],[-5.445321817999883,10.786991273000098],[-5.431420857999909,10.844688009000066],[-5.435089883999893,10.856909485000088],[-5.44702714099992,10.87799347000012],[-5.46557897999989,10.94788584400011],[-5.47911820499985,10.975532736000119],[-5.501804157999913,10.970210063000081],[-5.495602986999927,10.996203308000132],[-5.505602479999964,11.047984824000068],[-5.507333536999909,11.056948954000049],[-5.504232950999977,11.072684428000116],[-5.48976354999985,11.082115377000079],[-5.390131387999872,11.094698589000103],[-5.373026488999926,11.099762879000082],[-5.356283325999897,11.106894227000112],[-5.332512166999919,11.121570333000093],[-5.322331908999956,11.135548808000095],[-5.316182413999883,11.176321513000074],[-5.306725626999906,11.199395040000141],[-5.275254678999971,11.230710958000145],[-5.262852335999895,11.25158823700012],[-5.260940307999874,11.267737122000113],[-5.267864949999961,11.372020162000055],[-5.263472452999878,11.390184428000083],[-5.24817622899991,11.403181051000118],[-5.22642045099991,11.413490499000119],[-5.218307250999885,11.422197978000085],[-5.219185749999923,11.435142924000102],[-5.224611775999904,11.458009746000114],[-5.22466345199993,11.540769551000096],[-5.233913533999925,11.575987040000072],[-5.269466918999882,11.604099019000103],[-5.28073238099995,11.605752666000058],[-5.29096431499994,11.604460755000105],[-5.299956013999889,11.606424459000037],[-5.307604125999944,11.617638244000089],[-5.307810831999916,11.629007060000077],[-5.302281452999921,11.63985911100012],[-5.294788370999868,11.650297750000064],[-5.289258992999862,11.66042633100011],[-5.280680704999924,11.699493713000038],[-5.278561970999874,11.721456197000093],[-5.279543822999926,11.739026185000071],[-5.287140258999898,11.758921611000076],[-5.298974161999921,11.772667542000107],[-5.314787150999905,11.78248606400008],[-5.33426916499991,11.790805970000136],[-5.344656127999912,11.793906555000078],[-5.353286091999877,11.79452667300005],[-5.370649373999896,11.7910643510001],[-5.374525105999851,11.795250142000041],[-5.400414997999889,11.810184631000098],[-5.405996052999882,11.812303365000076],[-5.412197224999971,11.823568828000132],[-5.412352254999917,11.828529765000084],[-5.405944376999884,11.830441793000105],[-5.392301798999966,11.832353821000126],[-5.387909301999883,11.830803528000102],[-5.375610310999917,11.822225241000067],[-5.369874226999883,11.820158183000101],[-5.364551553999917,11.82176015300014],[-5.357058471999892,11.82961497000008],[-5.35380285699992,11.831733704000058],[-5.319024616999855,11.837418111000105],[-5.314838825999914,11.839330139000111],[-5.311066446999887,11.842895813000084],[-5.306518920999878,11.846048076000045],[-5.300162719999918,11.846358134000127],[-5.293444782999899,11.84320587200007],[-5.288018757999936,11.839123433000069],[-5.2824893799999,11.836436259000038],[-5.275151325999928,11.837418111000105],[-5.268226684999945,11.843050842000125],[-5.248227904999908,11.870439351000073],[-5.209470580999891,11.901496887000107],[-5.182908894999883,11.930900777000105],[-5.167819376999972,11.943664856000067],[-5.136994383999905,11.953121644000134],[-5.103947306999913,11.972758688000068],[-5.089322875999954,11.979269918000043],[-5.073768269999931,11.980510152000079],[-5.034313313999888,11.979269918000043],[-5.016045694999945,11.981285299000092],[-5.004702717999862,11.980665182000124],[-4.994238239999902,11.983249003000125],[-4.984523070999956,11.988571676000078],[-4.975453857999895,11.99627146400006],[-4.953749755999922,12.005108134000068],[-4.93207149199992,12.00314443000012],[-4.910677449999895,11.998131816000068],[-4.889955199999889,11.99792511000011],[-4.847244628999873,12.01306630400012],[-4.826238159999946,12.01270457000004],[-4.806807819999988,11.99627146400006],[-4.789522053999889,12.001800842000065],[-4.761280883999916,12.006606751000078],[-4.7468889969999,12.015081686000073],[-4.73898250299996,12.025210266000029],[-4.732280930999963,12.037263094000124],[-4.72513321999989,12.05011830700009],[-4.714617065999931,12.059006653000111],[-4.704023396999957,12.061487122000088],[-4.683714558999924,12.059058330000113],[-4.673585977999892,12.059730123000108],[-4.653716389999886,12.069135233000068],[-4.652736852999851,12.07162677500007],[-4.648677937999906,12.081950989000049],[-4.646662556999956,12.098022360000101],[-4.636120564999914,12.117556051000108],[-4.600308796999883,12.137554830000056],[-4.570233113999905,12.138898417000107],[-4.560466267999857,12.149492086000095],[-4.585529337999958,12.197241109000075],[-4.497421019999932,12.268709615000091],[-4.493545288999968,12.272843730000105],[-4.492253376999912,12.278838196000038],[-4.49401037699991,12.290103659000094],[-4.49049637899995,12.305761617000144],[-4.490703084999893,12.313823141000043],[-4.4881709389999,12.320696106000113],[-4.477189696999915,12.327310690000104],[-4.46248775199993,12.328189189000057],[-4.452669229999856,12.320282695000103],[-4.444814412999932,12.309430644000143],[-4.435822712999879,12.301730856000063],[-4.406134602999913,12.307466939000108],[-4.415358845999918,12.350306702000054],[-4.451635700999873,12.435314433000144],[-4.443677530999906,12.459447327000104],[-4.426624308999891,12.479652812000097],[-4.407607380999906,12.497946269000067],[-4.393448038999878,12.516446431000091],[-4.38688513199989,12.530192363000126],[-4.387246866999902,12.533964742000151],[-4.392647053999951,12.537427063000095],[-4.401406209999918,12.55039784800003],[-4.422490193999863,12.597216695000043],[-4.43907832799988,12.61328806600011],[-4.48253820799988,12.646257630000065],[-4.491323200999972,12.662794088000068],[-4.485251220999913,12.714677226000063],[-4.481711384999954,12.717416077000095],[-4.474941771999909,12.715762431000142],[-4.464370141999893,12.717250671000086],[-4.464296426999908,12.717261048000069],[-4.435254271999924,12.728423157000094],[-4.402026325999913,12.736562195000104],[-4.368850056999889,12.738990988000067],[-4.339446166999892,12.732789816000079],[-4.310920775999932,12.716020813000114],[-4.297226521999931,12.712145081000074],[-4.276297565999926,12.714677226000063],[-4.257642373999971,12.720930074000151],[-4.245471962999915,12.728936319000098],[-4.243973957999856,12.729921774000104],[-4.234129597999896,12.74234995500008],[-4.213278157999923,12.807178039000092],[-4.211882893999927,12.819192810000061],[-4.224646971999903,12.864513041000066],[-4.221313842999905,12.921253764000085],[-4.229323689999887,12.948952331000115],[-4.247849690999914,12.971948344000069],[-4.276917683999898,12.996236267000157],[-4.289733439999907,13.013470358000049],[-4.316398478999928,13.070857036000135],[-4.345363117999909,13.097056987000142],[-4.351073363999944,13.106074524000107],[-4.351073363999944,13.118321839000131],[-4.345905720999951,13.127132670000037],[-4.339601195999933,13.13529754700005],[-4.327043823999928,13.168551331000074],[-4.310197306999953,13.175553488000077],[-4.246170206999864,13.172478740000143],[-4.234801391999952,13.175605164000089],[-4.227773396999851,13.184441834000097],[-4.230021321999885,13.19314931200006],[-4.251208658999929,13.204750671000113],[-4.258107461999913,13.214129944000149],[-4.253508259999933,13.229090271000118],[-4.238780476999949,13.246789450000037],[-4.220667887999923,13.262834982000099],[-4.205500854999912,13.27298940100006],[-4.195837361999878,13.274694723000025],[-4.186458088999927,13.272834371000116],[-4.176872110999938,13.272369283000089],[-4.16602005999988,13.278157044000068],[-4.147106485999927,13.29960276300008],[-4.131577718999921,13.323839010000071],[-4.114653685999912,13.364534200000037],[-4.104266723999899,13.382698466000065],[-4.087549397999851,13.397994690000118],[-4.079307006999926,13.402128804000142],[-4.052538614999946,13.409001771000106],[-4.043495239999885,13.414453634000097],[-4.028199014999927,13.43153269400004],[-4.016029215999936,13.43577016200008],[-4.005358031999918,13.439516704000098],[-3.990216837999923,13.449128520000116],[-3.976910155999889,13.460626526000041],[-3.971613321999939,13.469954122000075],[-3.97946813999988,13.475380147000052],[-3.992232217999856,13.476232809000079],[-3.997968302999908,13.480521953000048],[-3.984480753999947,13.49605072100006],[-3.981250976999973,13.498970439000061],[-3.977736979999918,13.499926453000114],[-3.974093790999916,13.498944601000048],[-3.970321410999901,13.496154074000088],[-3.965467786999852,13.48921725500007],[-3.964481974999927,13.487808329000117],[-3.959288492999917,13.467938741000124],[-3.956058715999916,13.461660055000024],[-3.947480427999892,13.458197733000075],[-3.923399210999946,13.45375356100007],[-3.91797318499988,13.45106638600005],[-3.918593302999853,13.440317689000025],[-3.925543781999949,13.436312765000125],[-3.934923054999985,13.434891663000142],[-3.94272619599991,13.431946107000044],[-3.963009195999916,13.41316172300013],[-3.971613321999939,13.408329977000037],[-3.984041503999919,13.396470235000109],[-3.971613321999939,13.386755066000163],[-3.948410603999946,13.38083811500006],[-3.928825235999938,13.380269674000104],[-3.908878133999906,13.381974996000068],[-3.892600056999896,13.378926087000139],[-3.858080199999903,13.365516052000089],[-3.81710078999987,13.354689840000063],[-3.798626464999955,13.347145081000107],[-3.724419108999882,13.288828227000067],[-3.678711303999876,13.261749776000102],[-3.596881673999945,13.199402161000066],[-3.589802001999913,13.197386780000114],[-3.576598672999921,13.199298808000037],[-3.569958251999935,13.196766663000048],[-3.553912719999857,13.180256043000057],[-3.54505021099996,13.17449412000009],[-3.538487304999876,13.173408916000099],[-3.516111408999989,13.173899841000036],[-3.473921513999898,13.16760134900008],[-3.461592773999882,13.16576080300011],[-3.449474649999985,13.168809713000144],[-3.439475259999881,13.184855245000108],[-3.440586303999879,13.202838643000092],[-3.45226517699993,13.237513530000115],[-3.448544473999931,13.26578053900009],[-3.426530314999866,13.274229635000097],[-3.26240596599996,13.28391896600003],[-3.248634195999927,13.292781474000037],[-3.283955037999903,13.542197774000101],[-3.269175577999903,13.579094747000125],[-3.263904581999952,13.602659200000119],[-3.259718789999937,13.658314718000057],[-3.266281696999925,13.682344258000084],[-3.286952269999915,13.69776967400007],[-3.26705684399991,13.71704498400011],[-3.240417642999887,13.707975769000143],[-3.195820882999953,13.674902852000058],[-3.16794144699989,13.6721123250001],[-3.146030639999935,13.676659851000124],[-3.125101683999958,13.677279968000107],[-3.100038614999931,13.662733053000053],[-3.082210245999903,13.646222433000062],[-3.07730098499988,13.636791483000096],[-3.074510457999907,13.622141215000113],[-3.067508300999918,13.606767477000046],[-3.05601029399989,13.61084991500006],[-3.038621174999946,13.629582621000054],[-3.02696813899999,13.6353445430001],[-3.019113321999953,13.637514954000094],[-2.994773721999934,13.634982808000103],[-2.986402139999967,13.632063090000116],[-2.979322468999953,13.627567241000092],[-2.972320312999926,13.624466655000063],[-2.965008096999952,13.625655213000071],[-2.930473113999966,13.63852269200008],[-2.895244913999903,13.651648458000139],[-2.923382731999936,13.74603546200008],[-2.928059447999914,13.799623922000135],[-2.912168945999895,13.837941996000055],[-2.89446976699989,13.866570740000041],[-2.855376545999973,13.996175232000056],[-2.857030191999911,13.997777201000089],[-2.858606323999936,14.000231832000054],[-2.86155188,14.00173044900015],[-2.8672879639999,14.000541891000125],[-2.840855468999933,14.04299408000007],[-2.693190063999907,14.123195903000067],[-2.676264864999893,14.141729055000068],[-2.619757853999943,14.203604431000102],[-2.597381958999961,14.222311300000086],[-2.516146605999893,14.267864075000162],[-2.461679646999897,14.28091237400011],[-2.385611938999915,14.264711813000105],[-2.151879435999916,14.156139628000103],[-2.119840046999911,14.148775736000104],[-2.104337116999914,14.151178691000068],[-2.085007889999929,14.159668076000116],[-2.035917520999902,14.181228536000035],[-2.02728755699988,14.188127340000108],[-2.023411824999926,14.198643494000066],[-2.005015014999913,14.44423573900009],[-1.997056843999957,14.470694072000086],[-1.967032836999891,14.483742371000119],[-1.919128784999884,14.485861104000092],[-1.836963256999866,14.479582418000092],[-1.766683308999859,14.483173930000078],[-1.696920124999906,14.496118877000086],[-1.350274617999929,14.71496856700014],[-1.307744913999954,14.734657287000104],[-1.116697143999943,14.780442606000136],[-1.078559936999909,14.79635894800016],[-1.0433166099999,14.817908020000118],[-1.04313815399999,14.818061606000127],[-0.836404174999899,14.995985006000097],[-0.836249145999943,14.99608835900004],[-0.782815714999941,15.048384908000044],[-0.771271818999935,15.056619155000122],[-0.752895059999901,15.069727274000043],[-0.719718790999906,15.078460592000111],[-0.500343259999852,15.07972111200013],[-0.46789953699988,15.079907532000107],[-0.458649454999943,15.075463359000096],[-0.435601765999905,15.015156962000106],[-0.425731567999918,15.002599589000097],[-0.3976712649999,15.002134501000072]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Botswana","sov_a3":"BWA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Botswana","adm0_a3":"BWA","geou_dif":0,"geounit":"Botswana","gu_a3":"BWA","su_dif":0,"subunit":"Botswana","su_a3":"BWA","brk_diff":0,"name":"Botswana","name_long":"Botswana","brk_a3":"BWA","brk_name":"Botswana","brk_group":null,"abbrev":"Bwa.","postal":"BW","formal_en":"Republic of Botswana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Botswana","name_alt":null,"mapcolor7":6,"mapcolor8":5,"mapcolor9":7,"mapcolor13":3,"pop_est":1990876,"gdp_md_est":27060,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"BC","iso_a2":"BW","iso_a3":"BWA","iso_n3":"072","un_a3":"072","wb_a2":"BW","wb_a3":"BWA","woe_id":23424755,"woe_id_eh":23424755,"woe_note":"Exact WOE match as country","adm0_a3_is":"BWA","adm0_a3_us":"BWA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"BWA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[25.259780721000112,-17.794106546999984],[25.219369751000045,-17.87978607199996],[25.219369751000045,-17.90800140399993],[25.22608768700007,-17.93187591499992],[25.255026489000016,-18.001122334999934],[25.296367635000138,-18.068611755999967],[25.323446086000104,-18.096620381999884],[25.357449178000135,-18.115844013999904],[25.387524861000117,-18.138995055999896],[25.408815552000107,-18.17599538199994],[25.440854939000104,-18.25319997199992],[25.473204386000106,-18.303429462999873],[25.481162557000058,-18.323376565999894],[25.49051599100011,-18.365544534999856],[25.495580281000088,-18.378877054999876],[25.508499390000082,-18.39913421599988],[25.574438518000107,-18.465693460999958],[25.608441610000057,-18.48770762099994],[25.622084188000144,-18.501143492999898],[25.669523153000053,-18.56604909199993],[25.698255249000052,-18.590233662999907],[25.736909220000143,-18.60873382599992],[25.761920613000143,-18.63033457499989],[25.77339278200006,-18.665577900999963],[25.779490601000106,-18.738751728999944],[25.81525069100013,-18.813992614999904],[25.940721069000116,-18.921272887999947],[25.967448582000088,-18.999925225999988],[25.96779952000008,-19.000957946999904],[25.96438887500005,-19.021628519999908],[25.94805912300012,-19.058732197999902],[25.944855184000062,-19.079196064999863],[25.94857588700006,-19.103277282999898],[25.95653405800004,-19.122087503999907],[25.9811320390001,-19.161775003999892],[26.011414429000123,-19.199808857999926],[26.034358765000064,-19.24373382499995],[26.13027022300014,-19.50108245899989],[26.155488322000082,-19.537152608999886],[26.19445235200007,-19.560200296999948],[26.239100789000105,-19.571465758999906],[26.292637573000064,-19.57249928799989],[26.303489624000093,-19.577253519999886],[26.313204793000125,-19.584178161999958],[26.321059611000067,-19.592032978999892],[26.33098148600007,-19.604952086999916],[26.333461955000132,-19.6130136109999],[26.3263306070001,-19.633890889999876],[26.319095906000143,-19.646293232999938],[26.31248132300004,-19.64960052499994],[26.312171264000142,-19.651357522999916],[26.324366903000083,-19.659108988999918],[26.33232507300005,-19.662416279999917],[26.362710815000096,-19.667583922999924],[26.38524174000011,-19.679056090999936],[26.412836955000103,-19.719570413999946],[26.43185388200007,-19.73652028399995],[26.45025069200008,-19.74334157299991],[26.489731486000096,-19.751919860999934],[26.508851766000106,-19.75925791399993],[26.549262736000085,-19.784062600999974],[26.566315958000104,-19.80080576499992],[26.574790893000113,-19.819512633999906],[26.581922241000143,-19.842146911999862],[26.59556481900006,-19.855582783999907],[26.614064982000087,-19.863437600999944],[26.65943688900012,-19.87573659199998],[26.67380293700012,-19.88338470499987],[26.67716996900009,-19.88681526499994],[26.684758341000077,-19.894546813999895],[26.698607625000136,-19.91253021199988],[26.713903850000094,-19.92741302499992],[26.730957072000137,-19.935887958999928],[26.750800822000116,-19.939608662999927],[26.77446862800008,-19.939815368999902],[26.811882365000116,-19.94642995199999],[26.92505375200008,-20.0008969109999],[26.961072225000066,-20.007201435999903],[26.994300171000106,-20.006788024999892],[27.02664961700009,-20.010095316999895],[27.060135946000088,-20.027561949999935],[27.069230997000147,-20.03738047199991],[27.08649092600004,-20.060531514999894],[27.097342977000096,-20.068903096999872],[27.109641968000115,-20.073243916999942],[27.119770548000076,-20.073864033999907],[27.12969242300008,-20.072933857999956],[27.141888062000106,-20.073347268999967],[27.16292037000011,-20.07655120799994],[27.183745971000064,-20.08233896899992],[27.201781047000082,-20.092984313999906],[27.214906861000117,-20.11045094799995],[27.266014852000126,-20.234164326999874],[27.283998250000106,-20.351469827999935],[27.26839196700007,-20.495750427999937],[27.306012411000097,-20.47735361699995],[27.340738973000043,-20.473012796999864],[27.453910359000073,-20.473322855999953],[27.534112183000076,-20.4830380249999],[27.590852905000077,-20.473322855999953],[27.625786174000066,-20.488619079999907],[27.665990438000104,-20.489135843999946],[27.68376713100011,-20.496060485999934],[27.698133179000134,-20.509082946999868],[27.705574585000132,-20.526652932999937],[27.702629028000047,-20.56613372799997],[27.690381713000107,-20.60148040699997],[27.68247521900008,-20.637343851999912],[27.70733158300004,-20.716718851999886],[27.709605346000043,-20.756716409999854],[27.69441247600011,-20.837745055999875],[27.68903812600007,-20.849010518999933],[27.6818034260001,-20.857588805999868],[27.676015666000122,-20.86668385799993],[27.674775431000086,-20.879913024999922],[27.675085490000072,-20.8912818399999],[27.672605021000095,-20.913709410999914],[27.672656697,-20.923527932999974],[27.680356486000107,-20.979648538999925],[27.67896122200011,-21.000732522999954],[27.666817261000116,-21.05375254299986],[27.666610555000144,-21.071219176999904],[27.674775431000086,-21.090132751999946],[27.709191935000035,-21.13447113],[27.72438480700006,-21.14966400099992],[27.79383793100004,-21.197413023999985],[27.82360355600011,-21.23172617599991],[27.849131714000062,-21.269656676999915],[27.884995158000095,-21.310171],[27.894400269000073,-21.324330342999886],[27.896674032000078,-21.332391865999867],[27.89615726700003,-21.34789479499997],[27.897810913000086,-21.355439554999933],[27.904218791000115,-21.36474131199995],[27.920548543000052,-21.381174417999915],[27.95021081500002,-21.438328551999945],[27.953001343000064,-21.448663838999945],[27.94964237500008,-21.456518655999986],[27.941942586000064,-21.468507587999852],[27.93987552900012,-21.478016051999926],[27.94333785000006,-21.47987640399994],[27.950417521000077,-21.48204681399993],[27.95444828200007,-21.487834573999905],[27.94928063900008,-21.50075368199991],[27.953208048000135,-21.510468851999946],[27.958065633000047,-21.511502379999925],[27.963698365000084,-21.510468851999946],[27.97057133000007,-21.514396259999913],[27.975738973000144,-21.52256113699994],[27.984730673000087,-21.542921650999872],[27.99041507900006,-21.551913349999907],[28.00255904100004,-21.56421234199986],[28.016563355000045,-21.572893981999908],[28.032893107000092,-21.57785491899996],[28.09077071100012,-21.581265563999892],[28.16570153800006,-21.595218199999877],[28.284867391000063,-21.596871846999928],[28.321919393000115,-21.60348642999992],[28.361761922000138,-21.61630218499991],[28.443100627000035,-21.655782979999927],[28.464598023000093,-21.660330504999962],[28.481392863000053,-21.657436624999974],[28.497309204000057,-21.651545511999885],[28.532500855000137,-21.643070576999975],[28.54293949300006,-21.638316344999893],[28.55399825100008,-21.636559346999917],[28.585934285000064,-21.644414163999937],[28.615699911000036,-21.647101337999885],[28.629704224000136,-21.651338805999924],[28.668409872000066,-21.6799675499999],[28.714195190000115,-21.693506774999975],[28.860852905000055,-21.757378844999934],[28.89103194200004,-21.764923603999886],[28.951906779000094,-21.76833424899992],[28.980845581000064,-21.774845478999893],[28.99872562600009,-21.786007588999922],[29.038723186000084,-21.797893167999945],[29.055259643000085,-21.809985453999925],[29.057636759000104,-21.829209085999945],[29.045441121000092,-21.8525668339999],[29.02890466300011,-21.876648050999844],[29.01794925900012,-21.89814544699989],[29.013815145000112,-21.94041676899988],[29.0215666090001,-21.982791442999883],[29.040531861000062,-22.02092864899994],[29.07076257300008,-22.051004332999923],[29.107969604000086,-22.06919443699986],[29.1448665770001,-22.075292256999912],[29.239331095000065,-22.072605081999892],[29.244395386000065,-22.075705667999927],[29.25411055500018,-22.087074482999924],[29.259588257000075,-22.096066182999962],[29.2673397210001,-22.115806578999923],[29.273644246000114,-22.125108336999855],[29.35007368900006,-22.186706644999987],[29.331521850000055,-22.192804463999945],[29.302893107000045,-22.190220641999943],[29.248219441000114,-22.179265238999875],[29.222071167000077,-22.182159117999944],[29.202795858000062,-22.194458108999896],[29.186621134000063,-22.207687275999884],[29.168844442000132,-22.213991800999906],[29.047818237000058,-22.22029632599991],[29.038723186000084,-22.223913675999896],[29.0178459060001,-22.250372008999886],[29.018052612000076,-22.255022887999942],[29.002756388000105,-22.263394470999923],[28.98373946100014,-22.28199798599988],[28.960226685000062,-22.31021331699995],[28.967926473000148,-22.380389912999917],[28.96337894700011,-22.39217213899991],[28.953457072000102,-22.40075042699995],[28.930409383000036,-22.440851338999934],[28.9125293380001,-22.453667093999925],[28.86937951700006,-22.448912861999926],[28.846590210000073,-22.449946390999912],[28.836771688000113,-22.46317555699991],[28.831190634000077,-22.48229583699991],[28.81682458500009,-22.492941181999896],[28.79677412900014,-22.498212177999932],[28.77475996900006,-22.501416116999906],[28.731351766000074,-22.513921813999985],[28.659004761000087,-22.551955667999934],[28.62386478700006,-22.562807718999878],[28.597199747000104,-22.562704365999945],[28.57756270300007,-22.56001719199992],[28.559837687000055,-22.563014424999935],[28.538495321000056,-22.580274352999922],[28.5224756260001,-22.58482187899996],[28.459378703000056,-22.569629006999932],[28.376851441000042,-22.575003356999986],[28.338559204000035,-22.584615172999904],[28.301817261000053,-22.603838805999928],[28.28683109500008,-22.615827738999883],[28.250554240000042,-22.655618590999893],[28.240684041000037,-22.66088958699993],[28.216344442000036,-22.663163349999948],[28.205492391000092,-22.665953876999907],[28.19619063300007,-22.671638284999943],[28.164668010000096,-22.7086386109999],[28.15970707200006,-22.71814707499989],[28.15774336700011,-22.731066181999893],[28.15970707200006,-22.743261819999912],[28.162704305000144,-22.751013284999914],[28.162497599000087,-22.758971455999884],[28.154952840000135,-22.77199391599991],[28.145857788000086,-22.779745381999916],[28.135625855000086,-22.7833627319999],[28.12560062600008,-22.785533141999892],[28.117435751000073,-22.789460550999962],[28.113198283000116,-22.795351663999952],[28.10772058100011,-22.810647887999917],[28.10368981900012,-22.816745706999967],[28.08880700700007,-22.822636819999968],[28.06575931800012,-22.82883799199996],[28.047155802000077,-22.83689951599986],[28.045398804000083,-22.8477515659999],[28.053977091000036,-22.86914560999992],[28.04973962400007,-22.89136647499994],[28.03744063300013,-22.911416930999906],[28.02183435000009,-22.92660980299992],[28.008295125000103,-22.934774677999936],[27.989381551000065,-22.943766377999893],[27.96840092000008,-22.951001077999948],[27.94917728700005,-22.953894957999935],[27.93749841300007,-22.963816832999935],[27.937911825000068,-22.986657815999934],[27.946076700000106,-23.029032490999953],[27.93005700700013,-23.057041117999873],[27.89553715000008,-23.079468688999953],[27.853782593000115,-23.095591735999843],[27.81574873800008,-23.10468678799991],[27.82225996900007,-23.122980244999976],[27.80644698100005,-23.128354593999944],[27.784949585000106,-23.12701100699988],[27.77420088700009,-23.12515065499987],[27.771720418000115,-23.133005472999912],[27.774614298000103,-23.140756936999907],[27.779058472000113,-23.147681579999897],[27.781022176000135,-23.15253916399992],[27.783037557000085,-23.155433043999906],[27.787378377000067,-23.159773864999874],[27.789290405000088,-23.163804625999973],[27.784587850000037,-23.16556162499995],[27.78329593900008,-23.166905212999918],[27.775751180000015,-23.172486266999925],[27.77420088700009,-23.173003030999965],[27.75942142800008,-23.211450296999914],[27.753633667000116,-23.220752053999945],[27.739164266000074,-23.227573343999907],[27.725728394000043,-23.221682229999896],[27.698443237000106,-23.19346689899993],[27.658755737000032,-23.22343922999997],[27.647128540000068,-23.227573343999907],[27.633434285000135,-23.22343922999997],[27.61917159000006,-23.21703135099993],[27.60800948100004,-23.21672129299995],[27.599224487000072,-23.244626565999937],[27.580414266000044,-23.263850198999947],[27.576073446000066,-23.279146422999915],[27.575246623000055,-23.284830830999866],[27.573076212000046,-23.290515237999898],[27.56961389200012,-23.294856058999883],[27.565893189000093,-23.296509703999927],[27.5633093670001,-23.299196878999865],[27.564911336000137,-23.30581146199995],[27.567753540000098,-23.31376963299992],[27.569355509000047,-23.32038421599992],[27.563671102000086,-23.342811787999906],[27.548891642000083,-23.360795186999894],[27.528841186000133,-23.373094176999942],[27.507240438000053,-23.379088643999875],[27.465692586000074,-23.380432230999926],[27.45267012500005,-23.385289814999865],[27.443161661000147,-23.39510833699992],[27.434996786000028,-23.40658050599994],[27.425178263000074,-23.412678324999902],[27.411122274000064,-23.40575368199991],[27.418460327000048,-23.39128428099988],[27.410502156000092,-23.38932057699995],[27.395826050000093,-23.394074808999846],[27.383733765000102,-23.399552510999925],[27.380839885000114,-23.4053402709999],[27.371331421000033,-23.417019143999966],[27.36120284000009,-23.422496846999962],[27.349989055000034,-23.391490986999937],[27.335571330000104,-23.402446390999913],[27.312006877000016,-23.437069599999916],[27.295573771000136,-23.451745706999915],[27.27810713700009,-23.46363128699994],[27.239711548000088,-23.481407979999872],[27.202504516000143,-23.492053323999954],[27.191497437000066,-23.503835550999952],[27.205656779000037,-23.52305918399989],[27.1956315510001,-23.52708994599989],[27.18663985200007,-23.52729665099993],[27.178681681000086,-23.52357594799993],[27.171446981000116,-23.51561777699996],[27.168966512000054,-23.521612243999893],[27.161525106000028,-23.52988047299993],[27.15718428500014,-23.536701761999893],[27.149122762000076,-23.5275033569999],[27.137650594000036,-23.523369241999955],[27.127418661000064,-23.525022887999924],[27.123077840000093,-23.532981057999887],[27.127418661000064,-23.545280049999917],[27.135686889000112,-23.551894632999918],[27.14116459100009,-23.558302509999862],[27.136720418000095,-23.57018808999989],[27.124421427000044,-23.563160094999972],[27.11336267100006,-23.564296975999895],[27.103750855000044,-23.57173838299991],[27.09579268400006,-23.583830667999905],[27.10251062000009,-23.583830667999905],[27.08411381100009,-23.596026305999914],[27.078326050000044,-23.602020772999936],[27.075225464000084,-23.61121917699994],[27.068404175000126,-23.60729176799988],[27.061531209000066,-23.604397887999895],[27.0631331780001,-23.624241637999972],[27.06943770300012,-23.641708272999917],[27.070057821000088,-23.65607431999993],[27.05476159600002,-23.666409606999935],[27.037605021000076,-23.665686135999934],[27.029853557000138,-23.65473073299995],[27.02427250200014,-23.642535094999943],[27.013833862000094,-23.638504333999943],[27.00417037000008,-23.645842386999945],[26.986548706000093,-23.686976826999924],[26.967170044000113,-23.718706155999936],[26.962054077000115,-23.737413024999924],[26.964542365000025,-23.747139969999864],[26.966601603000072,-23.755189717999954],[26.938127889000043,-23.80288706499992],[26.945000854000085,-23.82324757899994],[26.941176798000072,-23.850222676999877],[26.870896851000055,-24.115839537999946],[26.86893314600013,-24.160384622999857],[26.849709513000107,-24.248131204999893],[26.83916752200014,-24.265597838999938],[26.82325118000011,-24.27882700599993],[26.802270549000127,-24.28967905599997],[26.714007202000033,-24.31593068399991],[26.692923218000118,-24.32657602899991],[26.684086547000103,-24.341458841999952],[26.623470093000037,-24.399439798999907],[26.558357788000137,-24.438197122999938],[26.531175985000058,-24.458660990999903],[26.506061238000143,-24.488840026999895],[26.47681237800009,-24.559946797999913],[26.469474325000107,-24.571418965999925],[26.404362020000093,-24.632810566999904],[26.404001092000073,-24.632758067999916],[26.381624390000127,-24.62950327499992],[26.36353763800011,-24.628056334999926],[26.344520711000143,-24.62402557399993],[26.32571049000012,-24.622371927999964],[26.27878829000008,-24.628469745999933],[26.16591061700009,-24.660846194999934],[26.013584839000117,-24.704537455999898],[25.9811320390001,-24.726344909999924],[25.966042521000105,-24.733579610999897],[25.91467614800007,-24.731822610999913],[25.881706583000096,-24.742157897999917],[25.874058472000115,-24.74339813299987],[25.86837406400008,-24.748152363999864],[25.866927124000085,-24.77264699299991],[25.87726241100009,-24.845717468999865],[25.87674564600013,-24.88602508499991],[25.866203654000085,-24.918167826999948],[25.837058146000057,-24.979146015999916],[25.835197795000056,-25.016353047999925],[25.804915405000116,-25.06482554099989],[25.782901245000062,-25.13138478499988],[25.69546472200008,-25.3099785359999],[25.663528687000106,-25.439996438999927],[25.652837702000085,-25.463318549999954],[25.608855021000068,-25.55926564499994],[25.58725427200008,-25.61952036499991],[25.458424927000095,-25.71119435599992],[25.386491333000038,-25.74354380299991],[25.177821899000037,-25.76328419999987],[25.13596399000008,-25.75656626399994],[25.09028202300007,-25.74364715499993],[25.05173140500008,-25.73785939499996],[25.013284139000035,-25.74302703899987],[24.9679122310001,-25.762870787999958],[24.90838098200004,-25.804108580999866],[24.888537231000043,-25.81165334099991],[24.82890262900014,-25.82601938899991],[24.798620239000115,-25.829223326999895],[24.770714966000128,-25.822608743999893],[24.737952107000126,-25.815890807999963],[24.664984985000103,-25.823332213999976],[24.62963830600009,-25.816097512999917],[24.576721639000112,-25.783334655999923],[24.50085111700011,-25.757848433999893],[24.456728963000018,-25.74302703899987],[24.4367818610001,-25.74530080199989],[24.416731405000064,-25.753052265999898],[24.38923954200007,-25.75946014399993],[24.3389066980001,-25.751812031999947],[24.29673872900014,-25.723493347999863],[24.2276990150001,-25.648975931999914],[24.183463990000064,-25.625928242999944],[24.130960734000098,-25.626238301999933],[24.027091105000096,-25.651766458999873],[24.00569706200008,-25.65466033899986],[24.004250122000087,-25.64990610799987],[24.009624471000052,-25.641327818999923],[24.00869429600007,-25.63316294399992],[23.99825565600014,-25.625308125999876],[23.98802372300008,-25.61952036499991],[23.976448202000114,-25.617556660999877],[23.92477176900007,-25.629235533999946],[23.905754842000107,-25.61848683599993],[23.89066532400011,-25.598849791999978],[23.845396769000104,-25.5690841669999],[23.8074662680001,-25.523608906999936],[23.79857792100009,-25.518544616999872],[23.7783207600001,-25.512550150999942],[23.76901900200008,-25.50738250699993],[23.762301066000134,-25.498494160999922],[23.75206913300005,-25.477616882999953],[23.7426640220001,-25.469968769999877],[23.686750122,-25.454362486999926],[23.674244425000012,-25.442580261999936],[23.666699666000053,-25.43265838599993],[23.56107303800007,-25.357314147999954],[23.53585494,-25.34325815799994],[23.506606079000075,-25.330959166999904],[23.496580851000147,-25.324241230999885],[23.483455037000084,-25.311528828999926],[23.468158813000116,-25.29023813899994],[23.459270467000096,-25.282176615999944],[23.444904419000096,-25.278145852999955],[23.4319853100001,-25.28031626399985],[23.39922245300008,-25.291375019999947],[23.381445760000048,-25.292615253999884],[23.36594283100004,-25.289307962999885],[23.320364217000076,-25.273391621999863],[23.26569055100009,-25.263986510999914],[23.216081176000046,-25.267190449999887],[23.16853885900011,-25.28000620499995],[23.093401327000095,-25.31245900499988],[23.083892863000102,-25.319693705999935],[23.071697225000094,-25.325998229999954],[23.065496053000118,-25.320830586999946],[23.061155233000132,-25.3107020059999],[23.054540649000046,-25.302537128999887],[23.030666138000043,-25.299436543999928],[23.00699833200011,-25.31080535899993],[22.968034302000035,-25.346875507999926],[22.96255660000014,-25.355763854999847],[22.960282837000108,-25.364342142999874],[22.95614872200011,-25.372093606999968],[22.94477990700011,-25.378708190999888],[22.93093062300005,-25.38428924499989],[22.92049198400011,-25.39049041699988],[22.91191369600008,-25.399068704999905],[22.903645467000043,-25.411367695999942],[22.88762577300008,-25.450228372999916],[22.876773722000053,-25.462010599999914],[22.851348918000042,-25.471312356999928],[22.844630981000105,-25.4811308799999],[22.824683879000077,-25.54303924599992],[22.816829061000135,-25.558438822999918],[22.814038534000076,-25.56660369799992],[22.81341841600002,-25.575078632999933],[22.819206177000098,-25.584897155999897],[22.828714640000072,-25.595542499999894],[22.833365519000036,-25.60608449299987],[22.824373819000098,-25.615799661999898],[22.810834594000113,-25.625308125999876],[22.80959436000009,-25.633266296999935],[22.81341841600002,-25.641947936999898],[22.81496871000013,-25.652799987999853],[22.812798299000065,-25.667062682999926],[22.810214478000148,-25.677397968999927],[22.80442671700007,-25.687216490999898],[22.75977828000015,-25.734862161999942],[22.746445760000114,-25.755326028999903],[22.74045129400008,-25.777030130999904],[22.741174764000075,-25.790879413999875],[22.744998820000117,-25.794083353999937],[22.750889934000043,-25.79604705799997],[22.75791792800004,-25.80596893299987],[22.76411910000013,-25.820334980999874],[22.76546268700008,-25.82653615299995],[22.754713989000066,-25.843382669999926],[22.73952111800014,-25.858472187999936],[22.719470662000106,-25.874285176999933],[22.70882531800009,-25.891028339999878],[22.721641072000097,-25.909011738999965],[22.72680871600008,-25.92162078899989],[22.72722212700009,-25.943945006999865],[22.724224894000088,-25.96750945999986],[22.719367309000063,-25.98425262499991],[22.710478963000043,-25.99686167399993],[22.700660441000082,-26.003269551999963],[22.67223840300005,-26.012881367999896],[22.66159305800008,-26.020942890999976],[22.662109823,-26.0298312379999],[22.665830526000033,-26.039856465999915],[22.665003702000092,-26.051431985999955],[22.62324914600015,-26.10930958999998],[22.62086310300006,-26.111532484999955],[22.61115686100007,-26.12057505299994],[22.59151981600013,-26.133184101999873],[22.58025435400006,-26.14651662199989],[22.563821248000096,-26.18113983099991],[22.545114380000115,-26.207391458999936],[22.527957805000142,-26.213695983999855],[22.482585897000035,-26.204807637999934],[22.45085656800012,-26.210078633999956],[22.428842407000044,-26.226511738999932],[22.395046020000052,-26.27188364599995],[22.342852824000147,-26.317358906999914],[22.31877160600004,-26.328831074999925],[22.303165324000076,-26.333585305999918],[22.257276652000115,-26.340923360999923],[22.248284953000077,-26.346917826999942],[22.237742961000095,-26.36676157599993],[22.197435344000066,-26.404071959999968],[22.17831506400006,-26.43993540499991],[22.14617232200004,-26.519207050999864],[22.108138469000096,-26.571917011999883],[22.057702271000096,-26.617598978999894],[21.99899784300004,-26.650258483999963],[21.935849243000092,-26.66390106199988],[21.838800903000102,-26.66452117899985],[21.807278280000048,-26.669585468999912],[21.78061324100011,-26.67816375699995],[21.76872766100007,-26.688705748999908],[21.76748742700005,-26.704312031999862],[21.776479126000083,-26.74916717499994],[21.777512654000045,-26.768494160999893],[21.773378540000124,-26.786787617999963],[21.762319784000027,-26.804460957999964],[21.743819620000092,-26.820480651999915],[21.68718225100011,-26.855207213999858],[21.664547974000072,-26.86306203199989],[21.643360636000093,-26.862751972999902],[21.583932739000144,-26.8483859249999],[21.4986666260001,-26.846422220999955],[21.449470662000124,-26.82637176499992],[21.426629679000115,-26.822651061999906],[21.38084436000008,-26.82399464899987],[21.296921834000074,-26.844458515999932],[21.28286584500006,-26.844975280999876],[21.25485721800004,-26.841771341999902],[21.240594523000084,-26.84197804799996],[21.1534680580001,-26.864508971999967],[21.12246219900007,-26.865335794999904],[20.99037723800009,-26.838567402999928],[20.950172973000065,-26.816036478999905],[20.90769494600002,-26.80001678399995],[20.851884400000074,-26.806528014999927],[20.82604618300013,-26.818827005999964],[20.779434042000076,-26.848075866999917],[20.714941854000045,-26.875050964999943],[20.693547810000037,-26.889003600999928],[20.690757283000067,-26.891794127999987],[20.685692993000085,-26.88176889999997],[20.67546105900004,-26.850039570999854],[20.665642537000053,-26.83908416799997],[20.650553019000142,-26.829679056999918],[20.644868612,-26.824511413999915],[20.63866744000012,-26.816966653999955],[20.624818156000057,-26.789371438999865],[20.614689575000114,-26.753197936999936],[20.60921187300002,-26.71619761199989],[20.608901815000138,-26.686121927999906],[20.63070926900008,-26.61832244899989],[20.6323629150001,-26.595274759999924],[20.627712036000048,-26.580805358999896],[20.611485636000054,-26.55992807999992],[20.60528446400005,-26.54773244199991],[20.602287232000034,-26.522204284999873],[20.60528446400005,-26.493265482999913],[20.618203573000073,-26.439728698999957],[20.622544392000037,-26.42753305999994],[20.652103312000065,-26.40779266399988],[20.665952596000125,-26.391772969999934],[20.695511515000078,-26.3419568879999],[20.75328576700008,-26.276224466999935],[20.776230103000103,-26.24056772799994],[20.794730265000023,-26.201913756999943],[20.837931763000057,-26.14682668099988],[20.841445760000113,-26.131323750999865],[20.80392867000012,-26.071275735999862],[20.800518026000105,-26.052465514999938],[20.802791789000107,-25.980531921999898],[20.794110148000073,-25.893922220999865],[20.767135050000036,-25.834390970999888],[20.766928344000064,-25.83067026699989],[20.75576623500004,-25.81899139399991],[20.749978475000063,-25.818474628999866],[20.740056600000088,-25.823125507999933],[20.7265173750001,-25.82736297599989],[20.727137492000054,-25.81816457099997],[20.737782837000054,-25.79894093799996],[20.71669885300011,-25.73258839899992],[20.706880330000075,-25.714811705999903],[20.69654504400006,-25.70706024199998],[20.671016887000118,-25.695484720999943],[20.66285201000011,-25.685252786999865],[20.662748657000066,-25.67491750099995],[20.671430298000132,-25.653316751999892],[20.67081018100006,-25.642257994999895],[20.663058716000137,-25.63626352899986],[20.65137984200007,-25.634609883999914],[20.641044556000082,-25.63119923899997],[20.637943969000048,-25.620347187999926],[20.643318319000084,-25.6132158409999],[20.665229126000042,-25.60102020299989],[20.671430298000132,-25.591201680999916],[20.66336877400005,-25.56474334699992],[20.61851363100004,-25.528466491999964],[20.620373983000064,-25.50056121899989],[20.626885213000037,-25.484748229999894],[20.656547486000076,-25.46779835999989],[20.643525024000038,-25.457359720999946],[20.634429972000078,-25.45766977899993],[20.625644979000096,-25.462734069999907],[20.616549927000108,-25.466144713999938],[20.606628051000115,-25.462010599999914],[20.60590458200002,-25.451778665999925],[20.611382283000097,-25.439376321999955],[20.61200240100007,-25.43100473999989],[20.596912882000083,-25.4328650919999],[20.593605590000095,-25.413228046999862],[20.588024536000148,-25.40402964299996],[20.55877567600004,-25.392040710999908],[20.542239217000116,-25.382222188999933],[20.53583134000007,-25.37116343099993],[20.529216756000096,-25.34005421999997],[20.525082642000058,-25.33219940199994],[20.514644002000125,-25.31928029299993],[20.510509888000115,-25.312252298999923],[20.510406534000083,-25.30470753999988],[20.514850708000097,-25.299126484999945],[20.518571411000096,-25.293028666999902],[20.5164010010001,-25.283623555999938],[20.509889770000143,-25.277525736999888],[20.491803019000116,-25.26905080199988],[20.485498495000115,-25.263159687999888],[20.48353479000008,-25.256648456999912],[20.481674439000074,-25.230500182999904],[20.46245080600005,-25.223678893999946],[20.443847290000093,-25.213343606999942],[20.434442179000143,-25.199804381999865],[20.44322717300011,-25.183061217999917],[20.444777466000062,-25.168385110999935],[20.43392541500009,-25.14678436299995],[20.406846965000057,-25.107820332999964],[20.375531047000035,-25.04611867299991],[20.364885702000034,-25.0331995649999],[20.23569462100005,-24.9360478709999],[20.15931685300009,-24.8936731969999],[20.149084920000092,-24.890986022999954],[20.128414348000092,-24.889745787999924],[20.118905884000096,-24.88736867299988],[20.10784712800009,-24.880340677999865],[20.08107873500012,-24.852642109999934],[20.029298950000054,-24.815228372999883],[20.010488729000144,-24.788046569999892],[19.992918742000086,-24.775850931999884],[19.986407511000095,-24.768822936999868],[19.981446574000046,-24.75249318399993],[19.981343221000113,-24.580410664999874],[19.981136516000078,-24.408431497999942],[19.980826456000074,-24.23655568399994],[19.98072310400005,-24.064473164999896],[19.980516398000105,-23.89249399799986],[19.980482728000055,-23.86448870199987],[19.980309692000045,-23.720566507999944],[19.98010298700009,-23.548587340999916],[19.979896281000034,-23.37650482199996],[19.979855443000133,-23.30855112099988],[19.97979292800011,-23.20452565499994],[19.979586222000137,-23.03254648799991],[19.97927616400005,-22.86067067499991],[19.979172811000126,-22.688588154999948],[19.97896610500007,-22.53810638399996],[19.97886275300004,-22.38762461399997],[19.978656046000083,-22.237246195999916],[19.978449340000054,-22.086764424999924],[19.978345988000115,-22.00067148899994],[20.212440226000126,-22.00067148899994],[20.446534465000127,-22.00067148899994],[20.68062870300011,-22.00067148899994],[20.914722941000036,-22.00067148899994],[20.97198042800008,-22.00067148899994],[20.98479618300007,-21.963981220999884],[20.98469283100013,-21.922846780999905],[20.984486125000075,-21.86517588299992],[20.984279418000114,-21.807608337999895],[20.984072713000074,-21.750040791999936],[20.983866007000103,-21.692369892999878],[20.98365930200015,-21.63469899499991],[20.98345259600009,-21.577028095999932],[20.98314253800004,-21.519357197999867],[20.98303918400009,-21.461789652999926],[20.982832479000137,-21.404118753999867],[20.98262577300008,-21.34644785499998],[20.98241906700011,-21.28888030999994],[20.98221236200007,-21.23120941199997],[20.982109009000055,-21.173641865999926],[20.981902303000084,-21.116074319999896],[20.981592244000097,-21.058403421999927],[20.981488891000083,-21.000732522999954],[20.98148632900012,-20.999958183999922],[20.981075480000072,-20.87577890999991],[20.980662068000044,-20.75072194399992],[20.980248657000033,-20.62576832999987],[20.97983524600002,-20.5007113649999],[20.979421834000107,-20.375757750999938],[20.979360470000103,-20.35102810699989],[20.979111775000035,-20.25080413799989],[20.97869836400011,-20.125850524999933],[20.9782849530001,-20.00079355899996],[20.977974894000113,-19.875839944999907],[20.977561483000102,-19.750782978999936],[20.97704471800006,-19.625829365999977],[20.976734660000087,-19.50087575299993],[20.97632124800006,-19.37581878699994],[20.975804484000037,-19.250865172999895],[20.97560905200004,-19.172106009999908],[20.975494425000136,-19.12591155999985],[20.975081014000125,-19.000957946999904],[20.975081014000125,-18.96003021199988],[20.975081014000125,-18.919205830999886],[20.975081014000125,-18.87838144899999],[20.975081014000125,-18.837660420999924],[20.975081014000125,-18.796836038999928],[20.975081014000125,-18.756011657999935],[20.975081014000125,-18.715187275999952],[20.975081014000125,-18.67436289499996],[20.975081014000125,-18.633538512999877],[20.975081014000125,-18.592714130999877],[20.975081014000125,-18.551993102999916],[20.975081014000125,-18.511065368999894],[20.975081014000125,-18.47013763399987],[20.975081014000125,-18.429313252999876],[20.975081014000125,-18.388592223999908],[20.975081014000125,-18.347767841999925],[20.975081014000125,-18.319345804999898],[20.993436476000085,-18.318611585999903],[21.02417362500006,-18.317382099999875],[21.0806042880001,-18.31521169],[21.13693160000011,-18.31293792699995],[21.193465617000072,-18.310767516999874],[21.2498962810001,-18.30849375399994],[21.29681848200005,-18.306633401999946],[21.34394738800006,-18.30477305099994],[21.3908695880001,-18.302912698999933],[21.437895142000087,-18.301052347999928],[21.456808715000104,-18.300225524999902],[21.47572229000005,-18.299502054999905],[21.492878865000108,-18.29640146899996],[21.509828735000042,-18.2931975299999],[21.52698531100009,-18.289993590999927],[21.544038534000038,-18.286789652999857],[21.62847782400007,-18.271183369999918],[21.712710409000067,-18.255577087999963],[21.7971496990001,-18.2398674519999],[21.88148563700011,-18.224157816999934],[21.966028280000074,-18.208551533999895],[22.05026086500007,-18.19284189899993],[22.13459680100007,-18.17723561599989],[22.219036092000124,-18.16152598099991],[22.303475383000148,-18.145816344999943],[22.387811320000083,-18.130210062999907],[22.472147257000103,-18.11450042699994],[22.556483195000112,-18.098790791999875],[22.640922485000146,-18.083184508999935],[22.72525842300007,-18.06747487399987],[22.8096977130001,-18.051868590999916],[22.894033650000036,-18.03615895599995],[22.981366822000066,-18.020035908999972],[23.09960249900007,-18.010217386999912],[23.185798787000095,-18.003086038999868],[23.25494185400009,-17.99740163199992],[23.292769002000057,-17.998951924999943],[23.30568811100008,-18.005463154999916],[23.311475870000038,-18.009803974999897],[23.312819458,-18.016521911999916],[23.312716105000078,-18.029957783999876],[23.315920044000052,-18.037089131999906],[23.32325809700006,-18.03915618899987],[23.330596150000133,-18.039983011999894],[23.333800090000096,-18.043290303999896],[23.332559855000085,-18.067061461999856],[23.333800090000096,-18.07398610399993],[23.33659061700007,-18.079360453999897],[23.34806278500008,-18.09444997099989],[23.359534952000104,-18.119151305999907],[23.389713989000114,-18.15325775099997],[23.395811808000076,-18.163386331999916],[23.396328573000087,-18.169380797999864],[23.394468221000096,-18.186227314999925],[23.395811808000076,-18.191394958999933],[23.40128951000014,-18.194288838999924],[23.41028120900009,-18.19738942499987],[23.41885949700011,-18.198422952999934],[23.4294014890001,-18.188501077999945],[23.444284302000113,-18.200696715999868],[23.45875370300007,-18.217646585999958],[23.464128052000035,-18.2255014039999],[23.477770630000123,-18.230875751999857],[23.49130985500011,-18.233149515999884],[23.5015417890001,-18.23749033599995],[23.5056759040001,-18.24937591599989],[23.511256958000047,-18.26033131899996],[23.521695597000072,-18.2681861369999],[23.52727665200007,-18.27769459999989],[23.518801717000088,-18.293714293999926],[23.551461222000057,-18.32751068099992],[23.560762980000078,-18.34849131299991],[23.546603637000118,-18.36947194399991],[23.555491984000042,-18.383114522999918],[23.571304972000036,-18.426005960999888],[23.57915979000009,-18.467863870999864],[23.592182251000107,-18.47819915699995],[23.609855591000013,-18.477682392999924],[23.64540897600008,-18.466003518999855],[23.649853149000077,-18.46341969799994],[23.656467733000085,-18.45825205499993],[23.6801355390001,-18.431483662999966],[23.700909464000063,-18.42796966599991],[23.715792277000105,-18.419081318999897],[23.809843384000146,-18.321722920999946],[23.825553019000036,-18.317072041999978],[23.83723189200009,-18.305806578999917],[23.855215291000093,-18.280071715999924],[23.86751428300002,-18.269426370999938],[23.89696984900013,-18.250202737999913],[23.91288619000005,-18.235733336999886],[23.915986776000096,-18.201213480999893],[23.950816691000057,-18.1776490269999],[23.956604451000118,-18.176615498999922],[23.961978800000082,-18.177855732999944],[23.966733032000093,-18.180646260999904],[23.97117720600008,-18.183850198999977],[23.974897909000106,-18.17702891099992],[23.979652141000088,-18.171861266999926],[23.991744426000082,-18.163386331999916],[24.020269816000024,-18.151604105999922],[24.02812463400008,-18.145816344999943],[24.05696008300009,-18.119047953999882],[24.065124959000116,-18.115223896999936],[24.101608521000117,-18.108816019999892],[24.135094848000023,-18.08545827199994],[24.18305057800006,-18.029441018999933],[24.21829390400012,-18.012594501999942],[24.238241007000056,-18.009907327999926],[24.259221639000142,-18.012594501999942],[24.270073689000096,-18.01579844199992],[24.28743697100012,-18.024480081999883],[24.29642867000007,-18.026237080999863],[24.30583378100002,-18.019415791999904],[24.334255819000134,-17.971563414999906],[24.350585571000064,-17.956060484999895],[24.365261678000078,-17.950789489999863],[24.399471476000144,-17.952339781999882],[24.42158898900007,-17.95647389699991],[24.433887980000122,-17.967222594999924],[24.451044556000085,-17.998951924999943],[24.458485962000083,-18.005773213999902],[24.465100545000098,-18.00866709399989],[24.469751424000066,-18.01445485399995],[24.471508422000024,-18.029957783999876],[24.505614868000094,-18.060343525999926],[24.518430623000086,-18.057346292999906],[24.56442264800009,-18.05279876699997],[24.574551229000118,-18.05042165099992],[24.577755168000095,-18.044427184999904],[24.591811157000105,-18.02840749099994],[24.59501509600008,-18.02282643599993],[24.598632446000064,-18.02075937899987],[24.64917199700011,-17.962778421999914],[24.66405480900005,-17.94985931399991],[24.698471314000102,-17.92887868299991],[24.725343058000107,-17.89590911899994],[24.73071740700007,-17.891878356999953],[24.738158814000087,-17.8876408899999],[24.746840454000047,-17.884230244999884],[24.756038859000057,-17.882783304999887],[24.76451379300005,-17.87968271899993],[24.770714966000128,-17.8655233759999],[24.776916138000104,-17.862319437999915],[24.797380005000065,-17.858081969999958],[24.820841105000056,-17.839271748999863],[24.838101033000044,-17.835034280999906],[24.8574280200001,-17.833587340999912],[24.93111861200012,-17.81053965299995],[24.937629842000092,-17.80712900799992],[24.945174601000133,-17.79999765999989],[24.94858524600005,-17.79327972399996],[24.95333947700004,-17.788422138999934],[24.964294881000114,-17.786665140999958],[24.95809370900014,-17.800927835999943],[24.968635702000114,-17.807645771999958],[24.975146932000087,-17.81632741299992],[24.98331180800008,-17.82046152699985],[24.998504680000107,-17.813950296999877],[25.007082967000144,-17.825732522999886],[25.01969201600008,-17.823768818999937],[25.047493937000127,-17.80712900799992],[25.05700240100012,-17.82769622799991],[25.087904907000105,-17.826766051999865],[25.120874471000064,-17.813536884999877],[25.153947387000073,-17.781807555999947],[25.19415165200007,-17.782324319999887],[25.259780721000112,-17.794106546999984]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Central African Republic","sov_a3":"CAF","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Central African Republic","adm0_a3":"CAF","geou_dif":0,"geounit":"Central African Republic","gu_a3":"CAF","su_dif":0,"subunit":"Central African Republic","su_a3":"CAF","brk_diff":0,"name":"Central African Rep.","name_long":"Central African Republic","brk_a3":"CAF","brk_name":"Central African Rep.","brk_group":null,"abbrev":"C.A.R.","postal":"CF","formal_en":"Central African Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Central African Republic","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":6,"mapcolor13":9,"pop_est":4511488,"gdp_md_est":3198,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"CT","iso_a2":"CF","iso_a3":"CAF","iso_n3":"140","un_a3":"140","wb_a2":"CF","wb_a3":"CAF","woe_id":23424792,"woe_id_eh":23424792,"woe_note":"Exact WOE match as country","adm0_a3_is":"CAF","adm0_a3_us":"CAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":20,"long_len":24,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"CAF.geojson"},"geometry":{"type":"Polygon","coordinates":[[[22.555759725000115,10.978969218000145],[22.577050415000087,10.985118714000121],[22.600821574000065,10.987805888000153],[22.609089803000103,10.98522206600006],[22.628210083000084,10.976127014000085],[22.63833866300004,10.974137472000052],[22.673168579000105,10.975067648000092],[22.682677043000098,10.974137472000052],[22.719884074000102,10.964654846000158],[22.74510217300005,10.9438034060001],[22.805977010000106,10.92450225800006],[22.86106408700007,10.919153747000095],[22.863234497000064,10.891816915000078],[23.005551392000115,10.686816508000078],[23.10942102100006,10.614495342000126],[23.291218710000038,10.439725648000135],[23.457616822000062,10.173747050500111],[23.62401493400006,9.907768453000102],[23.6447888590001,9.863068339000066],[23.674037720000058,9.690339864000123],[23.669076782000104,9.652021790000106],[23.655537557000116,9.622462870000078],[23.61853723100009,9.56608388300016],[23.6061348880001,9.537170919000104],[23.606755005000082,9.526241354000135],[23.616470174000114,9.501462504000102],[23.61853723100009,9.48831085200004],[23.61719364400011,9.45717580200008],[23.619984171000084,9.447719015000102],[23.62752893100011,9.435084127000067],[23.634970337000137,9.435394185000062],[23.640861450000045,9.433120422000044],[23.646339152000024,9.425033061000136],[23.646855917000067,9.418392640000134],[23.621844523000078,9.3406196090001],[23.620500936000095,9.322868755000085],[23.6307328690001,9.292172953000133],[23.63217980900009,9.277574361000077],[23.623291463000072,9.265637106000042],[23.610062296000077,9.255456848000065],[23.57140832500008,9.207294413000085],[23.549497518000123,9.185254415000088],[23.53792199700007,9.178148906000061],[23.52179895000009,9.175358379000102],[23.48944950300009,9.176701966000067],[23.474256632000078,9.17068166100013],[23.462821145000078,9.153724977000094],[23.457720174000087,9.146161194000072],[23.435706014000086,9.018933817000104],[23.43828983600011,8.994542542000076],[23.451415650000058,8.97418202700004],[23.478080689000105,8.958911641000086],[23.505469197000135,8.96108205200008],[23.54257287600012,8.997281393000021],[23.560142863000095,8.996454570000097],[23.567480917000097,8.974827982000107],[23.56593062300007,8.940023905000146],[23.553631632000133,8.8831539910001],[23.53668176200003,8.855610453000125],[23.495443970000025,8.809437562000085],[23.482318156000073,8.783392639000098],[23.481801392000108,8.759363099000069],[23.49006962100006,8.7325947060001],[23.5052624920001,8.710735576000062],[23.525726359000142,8.701485495000057],[23.54050581800007,8.704792786000056],[23.564070272000066,8.722698670000113],[23.578022908000065,8.730475973000125],[23.596419719000068,8.734145000000112],[23.61336958800007,8.732232972000105],[23.629079224000034,8.725592550000101],[23.644065389000104,8.715153911000058],[23.657087850000067,8.71001210500016],[23.68912723800014,8.710683899000045],[23.721269979000084,8.70200225800009],[23.737496379000106,8.706859843000103],[23.768915650000054,8.721251730000118],[23.803435506000113,8.722130229000058],[23.866687459000104,8.707790019000058],[23.922291300000097,8.713448588000091],[23.96208215300004,8.69701548300013],[23.981305786000036,8.694173279000069],[24.009624471000052,8.698875835000138],[24.114010864000104,8.68164174400006],[24.170328031000054,8.689327330000125],[24.18046675600007,8.69071095800011],[24.21767378700008,8.691511943000137],[24.23576053900007,8.682003479000059],[24.233486776000063,8.667766622000087],[24.21508996600008,8.641359965000106],[24.211265910000122,8.627071432000037],[24.218397258000063,8.613041280000118],[24.245579061000058,8.591802267000048],[24.250539998000107,8.579632467000138],[24.243718710000053,8.570175680000162],[24.20320438600004,8.543458965000113],[24.193179159000096,8.532426046000111],[24.137161906000102,8.438865865000096],[24.125172973000133,8.404888611000061],[24.121555623000063,8.372306621000106],[24.13137414500011,8.343057760000065],[24.152871541000053,8.31789133700012],[24.179949992000104,8.297711690000128],[24.20661503100007,8.283268127000113],[24.22242801900006,8.277196147000069],[24.25705122900007,8.269186300000086],[24.263185621000048,8.268505435000066],[24.281029094000075,8.266524963000066],[24.295498495000118,8.266524963000066],[24.302733195000087,8.265439759000074],[24.310277954000128,8.261564026000116],[24.326814412000118,8.248567403000079],[24.332085409000054,8.245725199000105],[24.396577596000068,8.267816874000118],[24.43109745300006,8.27140838600009],[24.454868612000013,8.24867075600011],[24.458899373000094,8.23975657200009],[24.464273722000055,8.2331936650001],[24.471508422000024,8.22893035900006],[24.481326945000088,8.22665659600004],[24.51284956900008,8.207148743000133],[24.54468225100001,8.206115214000148],[24.61485884600009,8.217148132000148],[24.67087609900011,8.206838684000047],[24.6904097900001,8.20663197800009],[24.710563599000096,8.204306539000058],[24.742292928000097,8.186839905000113],[24.80017053200004,8.180276998000124],[24.832106568000114,8.165730082000081],[24.917992798000057,8.087026876000095],[24.9278113200001,8.070955505000127],[24.93008508300005,8.035453796000084],[24.950548950000098,8.014395651000157],[24.952616007000046,7.996567281000111],[24.95809370900014,7.9891775520001],[24.964811646000072,7.982614645000125],[24.97266646300011,7.976981914000091],[24.981244751000133,7.972331035000124],[25.029303833000085,7.918845927000091],[25.059172811000106,7.896108297000112],[25.089558553000074,7.884894511000069],[25.103407837000134,7.885773011000111],[25.134413696000138,7.892542623000053],[25.148573039000098,7.892594299000066],[25.17317102000007,7.888563538000071],[25.180509073000078,7.884016012000131],[25.18547001200011,7.877918193000085],[25.19156783100007,7.872388814000074],[25.216889283000057,7.86406890900011],[25.229705037000144,7.851614889000132],[25.23942020600009,7.835956929000076],[25.24965214000005,7.80433095300009],[25.264534953000094,7.777717590000051],[25.26990930200006,7.760767720000047],[25.270632772000052,7.746143291000081],[25.266808716000128,7.70309682300008],[25.270632772000052,7.68816233400011],[25.276420532000117,7.674261373000134],[25.279417765000062,7.65948191300012],[25.274973592000038,7.641963603000064],[25.25254602000004,7.622429911000068],[25.1865035400001,7.600105693000088],[25.165212850000017,7.579900207000108],[25.164592732000045,7.567342834000087],[25.169036906000144,7.551168112000098],[25.190430949000074,7.501197002000112],[25.249962199000034,7.469984436000047],[25.263294718000083,7.461044414000114],[25.269599243000073,7.454223124000066],[25.27921105900009,7.438358460000146],[25.285102173000098,7.431588847000099],[25.29295699100004,7.427196350000115],[25.309700155000087,7.422028707000109],[25.316211385000145,7.4172227990001],[25.3241695560001,7.402908427000114],[25.33057743300014,7.374124655000087],[25.335951782000105,7.359603577000143],[25.346803833000052,7.345030823000086],[25.360032999000055,7.33557403600011],[25.41615360500009,7.307772115000162],[25.45511763500008,7.278213196000124],[25.481162557000058,7.266172587000156],[25.50033451300007,7.272787170000058],[25.516767619000035,7.269944966000081],[25.531650431000088,7.260694885000077],[25.57660892700011,7.219818828000072],[25.592421916000088,7.211240540000134],[25.654020223000117,7.195375875000124],[25.672727091000098,7.187831116000083],[25.6970150140001,7.168607483000059],[25.7050765380001,7.166385396000051],[25.724506876000078,7.166695455000123],[25.73442875100008,7.162406312000072],[25.750241739000074,7.146541646000059],[25.76130049700009,7.1437511190001],[25.78620853600006,7.142665914000105],[25.7915828860001,7.134397685000067],[25.79168623900003,7.121116842000049],[25.800781290000117,7.104942118000054],[25.815767456000085,7.09977447600005],[25.86072595200008,7.095537008000093],[25.877469116000043,7.087733866000079],[25.881706583000096,7.079827372000124],[25.884083699000143,7.061068827000041],[25.88873457800011,7.051870423000124],[25.920257202000073,7.034145406000121],[25.930385783000105,7.031509909000107],[25.950436238000066,7.028564352000102],[25.9604614670001,7.024481914000091],[25.966249227000077,7.01745391900009],[25.966765991000102,7.009857483000118],[25.969453165000033,7.0035529580001],[25.9811320390001,7.000297343000113],[26.026090535000037,6.996679993000043],[26.032291707000095,6.974097392000104],[26.03580570400007,6.922265930000022],[26.045417521000076,6.899683330000087],[26.050585165000086,6.896686096000067],[26.056889689000087,6.897409566000064],[26.06340091900006,6.899063212000115],[26.06918868000014,6.899063212000115],[26.07363285300005,6.895135803000144],[26.07311608900011,6.889709778000082],[26.07115238500006,6.883560282000104],[26.071565796000073,6.877462463000143],[26.075699910000107,6.864646709000069],[26.077353557000066,6.853329570000085],[26.08097090700005,6.842348328000099],[26.091202840000108,6.830333557000131],[26.113733765000035,6.816458435000072],[26.13182051600006,6.811730042000093],[26.147633504000055,6.804702047000077],[26.17874271700009,6.765918884000129],[26.219463745000066,6.737522685000029],[26.236206909000117,6.720030213000072],[26.270623413000067,6.702486064000098],[26.32974125200013,6.680575256000054],[26.37800703900004,6.653290100000048],[26.37922433500006,6.63136187200007],[26.37986739100006,6.619777934000126],[26.372322631000088,6.609804382000121],[26.356096232000084,6.579496155000086],[26.324366903000083,6.537198995000097],[26.305039917000016,6.496917216000057],[26.296461629000078,6.489527486000043],[26.28643640100006,6.484178975000091],[26.27703129000011,6.477357687000036],[26.270210002000056,6.465652974000149],[26.289123575000104,6.459425964000062],[26.290673869000102,6.44467234300015],[26.28509281400011,6.425887960000054],[26.282819051000075,6.407852885000054],[26.28964034000012,6.387208150000049],[26.300699097000034,6.377828878000087],[26.31578861400004,6.371576030000099],[26.335218954000112,6.360594788000114],[26.351755411000113,6.344368388000106],[26.375836629000048,6.312587382000075],[26.39464685100006,6.300546774000097],[26.436194702000137,6.291710103000099],[26.452007690000045,6.28028961200009],[26.45531498200006,6.254451396000164],[26.455625040000115,6.230473531000143],[26.464926798000047,6.224401551000099],[26.479499552000107,6.225073344000094],[26.495829305000143,6.221145935000023],[26.50895511900012,6.205462138000158],[26.50947188300006,6.186393535000078],[26.50006677200011,6.167970887000081],[26.48353031400012,6.154457499000102],[26.465340209000058,6.144303080000043],[26.445599813000115,6.130221253000116],[26.429270061000068,6.113090515000067],[26.42131189000011,6.093660177000089],[26.424825887000054,6.072447002000118],[26.440638875000072,6.076994528000057],[26.481049846000133,6.104951477000057],[26.49882653800006,6.099835510000062],[26.50988529400007,6.082678935000104],[26.518050171000084,6.061155701000146],[26.527972045000098,6.043172303000063],[26.543578328000137,6.030847474000026],[26.602179403000065,6.010616150000118],[26.634322144000095,6.006482035000089],[26.705015503000084,6.009789327000092],[26.776328979000084,5.981884054000105],[26.794364054000084,5.970489401000107],[26.805061076000072,5.957182719000102],[26.810848836000048,5.91237925300004],[26.81891036000013,5.894628398000108],[26.842164754000066,5.884267273000091],[26.86531579600006,5.885972595000055],[26.88205896000011,5.891941224000077],[26.894254598000117,5.889667461000059],[26.90376306100009,5.866981506000087],[26.916475464000143,5.849644064000088],[26.937456095000044,5.848507182000077],[26.981071004000086,5.859204203000075],[26.991819702000015,5.84770619700015],[27.003498576000084,5.819284159000134],[27.021998738000036,5.805098979000078],[27.029543497000073,5.789880269000136],[27.036054728000124,5.785126037000055],[27.045356486000056,5.784919332000101],[27.06354659100012,5.790862122000107],[27.072744995000107,5.791223857000105],[27.114809611000055,5.775281678000084],[27.12380131100008,5.768744608000104],[27.130932657000102,5.752130635000086],[27.13144942200006,5.74145945300009],[27.136307007000084,5.734018047000062],[27.156254109000084,5.727480977000084],[27.170413452000048,5.720349630000058],[27.182350708000083,5.707456360000052],[27.19077396600008,5.691824239000098],[27.193822876000098,5.676321310000091],[27.194287964000125,5.667303772000138],[27.1964066970001,5.661464335000062],[27.201109253000084,5.656968486000039],[27.21836918100007,5.645315450000069],[27.21919600400011,5.639992777000117],[27.216715536000038,5.63345570900013],[27.215165242000097,5.616144104000043],[27.21066939300007,5.601623027000088],[27.211341186000055,5.594879252000069],[27.217335653000106,5.58539662700008],[27.222606649000113,5.584363098000097],[27.227309204000107,5.586714376000131],[27.231081584000037,5.587592875000084],[27.234595581000093,5.58883311000011],[27.240073283000072,5.591985372000082],[27.2475146890001,5.592605490000054],[27.257126505000116,5.586068420000075],[27.261053914000087,5.577593485000065],[27.258883505000085,5.55997182200008],[27.26074385600009,5.550256653000132],[27.220126180000133,5.440883484000025],[27.218059123000103,5.425509746000045],[27.220126180000133,5.413081564000066],[27.228239380000048,5.38760508200005],[27.23366540600003,5.33827992700013],[27.237799520000067,5.323190410000052],[27.26446455900009,5.260145162000114],[27.280897664000065,5.230560404000073],[27.301309855000113,5.205187277000078],[27.35851566500014,5.166765849000043],[27.385800822000075,5.143847351000105],[27.402130574000097,5.104495748000119],[27.43117272900008,5.083618469000057],[27.441301310000142,5.070725199000051],[27.414842977000063,5.08072458900007],[27.40533451300007,5.082843323000134],[27.391381876000082,5.092222595000081],[27.38032312000007,5.094393006000075],[27.36120284000009,5.095478210000066],[27.351384318000015,5.097338562000076],[27.34275435400008,5.100594177000062],[27.32864668700003,5.110800273000038],[27.315727580000043,5.122401632000091],[27.30187829600007,5.131987610000095],[27.28441166200011,5.135966695000164],[27.262810913000067,5.138447164000141],[27.239711548000088,5.144880880000088],[27.157494344000042,5.185421041000112],[27.116359904000063,5.200303854000139],[27.073675171000072,5.20332692500007],[27.027476441000115,5.189968567000051],[26.991716349000086,5.171287537000069],[26.961640666000108,5.151185404000103],[26.933683715000114,5.126587423000032],[26.90396976700006,5.094393006000075],[26.899215535000053,5.085995585000092],[26.889603719000064,5.0621210730001],[26.88412601700014,5.053387757000038],[26.872653849000127,5.041786397000081],[26.867072795000126,5.037548930000128],[26.849296102000096,5.039099223000051],[26.848365926000042,5.041372986000069],[26.84495528100012,5.046282247000107],[26.83947758000002,5.051165670000032],[26.83265629100006,5.053387757000038],[26.8261450600001,5.05075225900012],[26.815706421000073,5.040184428000146],[26.80836836800009,5.039099223000051],[26.8018571370001,5.044525248000127],[26.760619344000105,5.08811431900007],[26.753694702000104,5.092274272000097],[26.73943200700006,5.094393006000075],[26.691682983000074,5.094393006000075],[26.68124434400005,5.089277039000081],[26.66760176600013,5.078347473000107],[26.657576538000114,5.07325734500013],[26.644037313000126,5.078347473000107],[26.635665731000046,5.077624003000025],[26.629671265000127,5.067056173000139],[26.623470093000037,5.067056173000139],[26.61551192200008,5.078244121000083],[26.59835534700011,5.08062123700013],[26.579855183000088,5.074342550000039],[26.568176310000094,5.059640605000126],[26.561355021000054,5.067056173000139],[26.55422367300011,5.059847310000094],[26.541511271000076,5.05312937400015],[26.528282105000073,5.0480909220001],[26.519807170000064,5.045972188000121],[26.502547241000087,5.047470805000032],[26.475158732000125,5.057263489000093],[26.46265303500013,5.059640605000126],[26.46068933100011,5.066022644000071],[26.441879110000087,5.104289042000062],[26.42937341300009,5.113797506000139],[26.414283895000093,5.122711690000074],[26.400124552000136,5.133641256000132],[26.390616089000076,5.149014995000115],[26.36942875200012,5.14056589700003],[26.362710815000096,5.135966695000164],[26.35330570500014,5.147774760000075],[26.33635583500012,5.148601583000101],[26.317338908000067,5.146431173000109],[26.291810751000128,5.150978699000049],[26.272483765000057,5.159066061000146],[26.253983602000062,5.172321066000052],[26.24664554800006,5.189968567000051],[26.242098022000107,5.188056539000115],[26.23072920700011,5.185162659000127],[26.2261816810001,5.183147278000092],[26.225664917000046,5.199037781000101],[26.2261816810001,5.204257101000124],[26.21357263200008,5.199141134000044],[26.207164754000132,5.207693584000154],[26.198276408000112,5.238389384000101],[26.195175822000063,5.234772034000116],[26.184530477000063,5.225341085000152],[26.1817399490001,5.229578552000106],[26.17533207200009,5.233686829000121],[26.17088789800007,5.238389384000101],[26.157348673000087,5.232472432000093],[26.150837443000114,5.239965515000036],[26.14422285900011,5.251799418000132],[26.12996016400004,5.258879090000065],[26.12510257900004,5.248595480000077],[26.11962487800014,5.241541646000144],[26.11249353000011,5.238389384000101],[26.104535359000124,5.238596090000057],[26.098437540000077,5.239577942000025],[26.093373250000095,5.241438294000119],[26.08841231300005,5.24459055600009],[26.091719605000062,5.219062398000048],[26.09523360200012,5.211052552000069],[26.086035197000115,5.215238343000109],[26.077146851000094,5.216323547000101],[26.07053226700009,5.21224110900009],[26.067845093000074,5.200846456000093],[26.06267745000008,5.200122986000096],[26.050998576000097,5.200226339000039],[26.037355998000095,5.197952576000105],[26.02691735800005,5.189968567000051],[26.013894897000114,5.199244486000069],[25.996634969000127,5.219243266000092],[25.985989624000126,5.225341085000152],[25.97193363400001,5.227666524000085],[25.962838583000035,5.224514262000127],[25.95839440900005,5.214824931000095],[25.95860111500008,5.197384135000063],[25.943201538000096,5.204102071000079],[25.925631551000034,5.201776632000146],[25.91250573700006,5.190381979000064],[25.910852092000113,5.170098979000044],[25.892972046000068,5.185214335000055],[25.88356693500009,5.203533630000038],[25.87240482600006,5.217098694000114],[25.849357137000112,5.217873841000126],[25.846049845000096,5.211672668000048],[25.83623132300005,5.200019633000082],[25.826102742000074,5.194696961000119],[25.818971394000044,5.21456654900004],[25.814217163000052,5.221620381000136],[25.811426636000107,5.230922140000075],[25.81463057500008,5.24459055600009],[25.810186401000067,5.242678528000069],[25.799437703000137,5.24009470600015],[25.794683471000038,5.238389384000101],[25.792306355000104,5.262832337000134],[25.77835371900011,5.269136861000064],[25.769258667000145,5.265157776000081],[25.781144246000082,5.258879090000065],[25.771739135000104,5.245469055000114],[25.757993205000076,5.24443552700005],[25.743730509000102,5.250610860000123],[25.732775106000133,5.258879090000065],[25.7050765380001,5.289600728000025],[25.69112390100011,5.299806824000086],[25.668903035000085,5.306137187000104],[25.6675594480001,5.307248230000113],[25.66311527500011,5.309160258000119],[25.655777222000097,5.317764384000071],[25.65009281400006,5.320296529000061],[25.637897176000138,5.317971090000114],[25.631075887000094,5.31182159400015],[25.62342777500004,5.309935404000043],[25.609165079000036,5.320296529000061],[25.609165079000036,5.32652353900005],[25.614229370000118,5.329934184000081],[25.61722660300012,5.333551534000065],[25.61981042500014,5.337220561000052],[25.62291101100007,5.340760396000107],[25.600483439000072,5.340450338000039],[25.59231856200006,5.349183655000104],[25.589011271000057,5.36228363000015],[25.581259806000077,5.374918518000101],[25.575058634000072,5.374918518000101],[25.56182946800007,5.37300649000008],[25.543742716000082,5.375280253000099],[25.53278731300008,5.37223134400007],[25.540848836000094,5.354428813000126],[25.528963257000044,5.351896668000052],[25.504468628000094,5.342284851000031],[25.495580281000088,5.344532776000051],[25.484934936000087,5.355307312000164],[25.48198937900008,5.356857605000087],[25.479922323000036,5.35318857900009],[25.435067180000146,5.328693949000126],[25.413363078000145,5.323552145000136],[25.395689738000044,5.333964946000066],[25.385354451000126,5.321485087000084],[25.37067834500004,5.316834208000117],[25.363650350000025,5.310555522000101],[25.376466105000105,5.293011373000141],[25.355898885000045,5.286448466000152],[25.34339318900004,5.271927388000108],[25.337192016000127,5.25174774200012],[25.335538371000094,5.228441671000098],[25.32892378800011,5.216013489000119],[25.316211385000145,5.202241720000074],[25.30773645000005,5.18529185000007],[25.31445438700007,5.163251852000087],[25.321482381000063,5.159169414000075],[25.341222779000134,5.155603739000099],[25.348560832000118,5.149014995000115],[25.349284301000125,5.141676941000114],[25.34380660000005,5.121884868000051],[25.342359660000053,5.111472067000108],[25.33915572100008,5.105167542000103],[25.324996378000037,5.08811431900007],[25.321895793000095,5.077003886000057],[25.320965617000127,5.052250875000126],[25.316831503000113,5.042251485000108],[25.30763309700012,5.032277934000092],[25.292336873000067,5.02827301100011],[25.248515259000044,5.024138895000092],[25.239316854000062,5.015534769000055],[25.227534627000068,5.00956614200004],[25.1636625560001,5.005638733000069],[25.154567505000042,5.009307760000056],[25.147642863000044,5.014139506000078],[25.140201457000018,5.017963562000105],[25.129452759000085,5.01863535600009],[25.121701294000104,5.008635967000075],[25.114259888000078,5.001840516000129],[25.10526818800014,4.998765768000098],[25.10092736800004,4.994554138000055],[25.090488729000096,4.974477845000094],[25.084804321000064,4.954220683000088],[25.0761226810001,4.95184356700014],[25.04056929500007,4.962101339000128],[25.006462850000077,4.98093739900014],[24.969359171000093,4.991401876000097],[24.95809370900014,4.991350199000081],[24.950859009000084,4.987681173000084],[24.932358846000056,4.974426168000079],[24.927087850000106,4.971480611000075],[24.904350219000037,4.966803895000112],[24.86817671700001,4.944376323000114],[24.84833296700012,4.936728211000045],[24.836860799000103,4.937710063000097],[24.8276623940001,4.941921692000051],[24.819497518000077,4.944479675000139],[24.811022583000096,4.940448914000058],[24.80006717900011,4.928899231000102],[24.78942183400011,4.91985585600014],[24.778259725000083,4.918538107000088],[24.766374145000043,4.929881083000083],[24.749837687000053,4.918744812000057],[24.73061405400003,4.917504578000106],[24.66436486800012,4.924403382000094],[24.65423628700009,4.929415995000055],[24.657440226000062,4.939777120000159],[24.67077274600007,4.957217916000104],[24.656923462000123,4.967268982000135],[24.6274678960001,4.976906637000056],[24.61547896300004,4.985097351000078],[24.610001261000065,4.996724549000135],[24.61010461400008,5.016723328000069],[24.601216268000087,5.026102600000115],[24.588607219000068,5.031063538000069],[24.563389120000096,5.034887593000107],[24.5534672440001,5.039099223000051],[24.547369425000056,5.046488953000065],[24.538687785000093,5.065557556000044],[24.533003377000057,5.07325734500013],[24.513676391000104,5.087235819000128],[24.4872180590001,5.100800883000118],[24.480844127000125,5.102334685000102],[24.459622844000105,5.107441304000119],[24.436678508000085,5.100594177000062],[24.4330611580001,5.089328715000093],[24.43347456900011,5.07553110800005],[24.43068404200005,5.067417908000053],[24.416938110000103,5.07325734500013],[24.411460409000114,5.081861471000067],[24.401641887000068,5.111472067000108],[24.396370890000128,5.122298279000063],[24.382521607000058,5.107854716000134],[24.36784550000007,5.084548645000098],[24.361230916000064,5.062947896000125],[24.371979614000082,5.053387757000038],[24.396887655000057,5.048194275000114],[24.398644653000133,5.036024475000119],[24.386138957000124,5.022356059000102],[24.368465617000137,5.012434184000099],[24.29663537600004,5.003261617000106],[24.28650679500006,4.995070903000083],[24.284646444000145,4.99243540500008],[24.272967570000077,4.964013367000049],[24.269660278000085,4.952463684000108],[24.269556925000074,4.94318776500009],[24.267696573000052,4.935720521000064],[24.259221639000142,4.929881083000083],[24.253020467000084,4.929881083000083],[24.246199178000012,4.954065653000058],[24.229766073000064,4.961171163000074],[24.20961226400007,4.956184388000125],[24.19090539600009,4.944169617000057],[24.16289677000009,4.907789409000073],[24.15276818800004,4.902595927000064],[24.13922896300005,4.905438130000036],[24.119901978000087,4.918899841000098],[24.108429809000086,4.923059795000113],[24.089619588000062,4.920217591000053],[24.072463013000117,4.910269878000051],[24.046934855000075,4.888927511000148],[23.995775187000078,4.865052999000071],[23.977998494000133,4.8541492720001],[23.963115682000108,4.868696187000054],[23.957121216000072,4.870814921000118],[23.950816691000057,4.867791850000103],[23.94647587100007,4.861642355000129],[23.943168579000087,4.851694641000037],[23.942755168000076,4.840506694000098],[23.94740604700013,4.830584819000094],[23.948336223000098,4.817691549000088],[23.92435835800006,4.817794902000117],[23.881880330000115,4.826889954000094],[23.874748983000103,4.824977926000074],[23.86441369600007,4.816089580000067],[23.855215291000093,4.813221537000075],[23.84787723800008,4.813996684000088],[23.828240194000045,4.819345195000054],[23.816664672000115,4.820611267000088],[23.79847456800007,4.814745992000098],[23.76002730300013,4.787434997000076],[23.737909790000117,4.779063415000095],[23.692847941000082,4.773404846000061],[23.67269413200009,4.767203674000072],[23.634040161000087,4.745137838000076],[23.5880481370001,4.733949890000133],[23.566550741000043,4.724441427000059],[23.50608931500011,4.676434021000105],[23.488415975000123,4.669845276000032],[23.46505822800009,4.667209778000099],[23.448315063000024,4.659406637000088],[23.437152954000084,4.646565044000099],[23.43002160700007,4.62884002700008],[23.428264607000074,4.617342021000056],[23.428367960000116,4.60860870400009],[23.427437785000052,4.601348165000104],[23.42258020100013,4.594061788000133],[23.414518677000046,4.590832011000145],[23.396018514000104,4.591607158000072],[23.388370402000135,4.587266337000088],[23.371213826000087,4.597265727000106],[23.3539538980001,4.603570252000111],[23.33586714700007,4.606800028000094],[23.316436809000095,4.607730204000049],[23.313026164000064,4.610210673000026],[23.301967408000053,4.62170867900005],[23.29959029200012,4.625119324000067],[23.2951461180001,4.62759979200014],[23.273131958000135,4.632018127000052],[23.26486372900007,4.63506703700007],[23.251841268000135,4.662972310000058],[23.22424605300006,4.68005137100009],[23.22083540800011,4.683513693000136],[23.208639770000104,4.690541687000048],[23.183731731000137,4.725268249000081],[23.16874556500008,4.738109843000075],[23.123890422000073,4.715630595000064],[23.099395793000042,4.711651510000081],[23.07738163200014,4.721056621000045],[23.06663293400004,4.730177511000107],[23.055160767000103,4.737799784000089],[23.042758423000123,4.742967428000085],[23.029322550000074,4.744931132000119],[23.01733361900011,4.75051218700014],[23.011132446000147,4.763638001000103],[23.007205037000062,4.778443299000131],[22.99624963400009,4.799501445000146],[22.98570764100012,4.826424866000067],[22.97743941200008,4.834305522000107],[22.965037069000118,4.835287374000075],[22.953048136000064,4.830791525000052],[22.941472616000112,4.824719544000104],[22.929690389000115,4.820611267000088],[22.915220988000073,4.821153870000046],[22.905919230000052,4.824202779000061],[22.898374471000096,4.823582663000096],[22.88876265500008,4.813221537000075],[22.8828715410001,4.800741679000083],[22.882354777000042,4.788494365000062],[22.886798950000067,4.776686299000061],[22.895583944000034,4.76539499900008],[22.887315715000085,4.755498963000093],[22.865301554,4.738678284000116],[22.853829386000086,4.71126393600008],[22.837292928000096,4.714235331000083],[22.818069295000072,4.7245964560001],[22.802876424000143,4.730642599000134],[22.786029907000085,4.724648133000116],[22.776418091000068,4.710101216000069],[22.765152628000095,4.676020610000094],[22.7574011640001,4.66080190100007],[22.748719523000148,4.648270365000158],[22.73786747300008,4.6377542110001],[22.723604777000105,4.62884002700008],[22.723811483000077,4.61703196200007],[22.72980594900011,4.596748962000063],[22.731149536000057,4.587266337000088],[22.728669067000084,4.580290019000088],[22.718953898000052,4.562771709000131],[22.716783488000146,4.55651886000004],[22.713682902000127,4.55122202600009],[22.70014367600004,4.54106760700013],[22.697043091000097,4.535744934000093],[22.697146444000023,4.512025452000046],[22.69507938600006,4.501483460000074],[22.68949833200014,4.491664938000113],[22.675649048000082,4.48474029600004],[22.654358357000092,4.482828268000105],[22.61033003700004,4.484223532000087],[22.59244999200007,4.473707378000128],[22.58697229000009,4.449393616000122],[22.589039347000067,4.421953430000073],[22.594000284000085,4.402316386000038],[22.61126021300009,4.381852519000077],[22.61374068200007,4.374359437000138],[22.609296509000075,4.36335235600005],[22.599891398000096,4.352551981000104],[22.588005818000084,4.344180399000038],[22.576533651000148,4.340847270000039],[22.568575480000106,4.331545512000104],[22.53932661900006,4.278163757000101],[22.539740030000075,4.266924134000135],[22.545734497000097,4.245943502000046],[22.546147909000094,4.237184347000067],[22.540463501000147,4.227262472000078],[22.52217004400009,4.211346131000141],[22.518242635000036,4.206798605000102],[22.51049117000011,4.191269836000089],[22.492714477000078,4.174035747000104],[22.45736779800009,4.149076029000128],[22.451532021000048,4.146672020000082],[22.431839640000135,4.13855987500007],[22.42264123500013,4.134787496000043],[22.3032686760001,4.128715516000099],[22.207253866000116,4.150316264000068],[22.184722941000103,4.164604797000052],[22.161881958000095,4.173183085000076],[22.151650025,4.179461772000082],[22.133046509000053,4.198659567000092],[22.12787886600006,4.203077902000103],[22.108448527000064,4.209847514000046],[22.05780562400011,4.219536845000079],[22.036612824000144,4.229438766000101],[22.008919718000126,4.242377828000073],[22.0014783120001,4.244651591000093],[21.989592733000077,4.244238180000082],[21.984528442000112,4.242946269000129],[21.98029097400007,4.240620830000097],[21.970782512000085,4.237184347000067],[21.949905232000106,4.233463644000054],[21.89161421700007,4.237184347000067],[21.867739705000076,4.241551005000147],[21.851926717000083,4.251679586000108],[21.8380774340001,4.263255106000144],[21.819887329000064,4.271936748000101],[21.810998983000047,4.273176982000052],[21.782060181000105,4.271936748000101],[21.771001424000076,4.27348704000012],[21.76604048700005,4.277207744000137],[21.76324995900009,4.281677755000146],[21.7584957280001,4.285605164000117],[21.737308390000123,4.293382467000128],[21.722942342000124,4.295139465000105],[21.68893925000009,4.292452291000089],[21.65111210100011,4.295656230000148],[21.63416223100012,4.294209290000154],[21.538147420000115,4.244651591000093],[21.5278121340001,4.249250793000044],[21.508071737000137,4.249405823000089],[21.497219686000108,4.251472881000055],[21.489881633000092,4.256252950000145],[21.482440227000094,4.263125916000106],[21.47313846800006,4.269301249000094],[21.460219360000053,4.271936748000101],[21.416914510000083,4.270076396000106],[21.397690877000056,4.271626689000115],[21.374849894000132,4.278163757000101],[21.358313436000056,4.285553487000101],[21.310357707000037,4.31609425900011],[21.305500122000097,4.323148092000125],[21.298885538,4.330227763000053],[21.28834354700004,4.333380025000096],[21.275321086000105,4.332527365000075],[21.26591597500007,4.330072733000108],[21.258371216000114,4.325990295000095],[21.25072310300004,4.320357564000062],[21.24462528400008,4.313768820000078],[21.23914758300009,4.305603943000065],[21.23242964700006,4.297826640000053],[21.22343794800011,4.292452291000089],[21.210932251000113,4.291573792000051],[21.202974080000047,4.296638082000115],[21.195739380000077,4.30291676900012],[21.18561079900013,4.306069031000077],[21.165560344000085,4.307154236000073],[21.15811893700007,4.310203145000102],[21.150057414000084,4.326713766000097],[21.137965129000094,4.332682393000113],[21.113573853000076,4.340847270000039],[21.103445271000112,4.353275452000104],[21.084221639000077,4.388234558000107],[21.076056763000082,4.39546925900008],[21.05962365700009,4.398595683000124],[20.9635054930001,4.433735657000071],[20.87152144400008,4.453372702000109],[20.832350708000064,4.450685526000072],[20.81870813000006,4.443528341000032],[20.807029256000078,4.434252422000114],[20.79183638500004,4.426190898000115],[20.767858520000118,4.422780253000099],[20.688380168000037,4.422780253000099],[20.60311405400006,4.409731954000051],[20.58027307100005,4.415002950000087],[20.55980920400009,4.428361308000106],[20.456712867000107,4.524815862000068],[20.4523222250001,4.528923645000134],[20.44209029100011,4.55049855500009],[20.447051229000067,4.569670512000101],[20.457179809000106,4.586439514000062],[20.463070923000117,4.600934753000104],[20.456456340000017,4.621501973000093],[20.44022993900012,4.64411041300012],[20.42059289500008,4.662352193000089],[20.403746378000104,4.669845276000032],[20.395478149000038,4.6771058140001],[20.373670695000044,4.724441427000059],[20.354033651000094,4.755395610000065],[20.33894413200008,4.771906230000056],[20.322511027000132,4.779063415000095],[20.30173710100007,4.781647238000104],[20.254814901000117,4.797124329000098],[20.236624796000083,4.806348572000104],[20.217194458000108,4.822445781000084],[20.171719198000062,4.878359680000074],[20.152598918000052,4.890684509000039],[20.086349732000144,4.916264344000083],[20.054620402000126,4.937813416000039],[20.03105594900012,4.957993063000117],[20.00397749800007,4.974477845000094],[19.91540409300012,4.993107198000061],[19.890909465000046,5.002124736000098],[19.880367472000103,5.015534769000055],[19.875509888000067,5.031063538000069],[19.858163068000096,5.060305320000055],[19.85018843600008,5.073748271000071],[19.838612915000056,5.087545878000114],[19.824660278000064,5.096976827000077],[19.779185018000106,5.118164165000039],[19.748799276000057,5.124417012000038],[19.728748820000106,5.13384796200009],[19.7195504150001,5.135966695000164],[19.605552205000038,5.1382921350001],[19.568758586000115,5.155190328000089],[19.548604777000065,5.151366272000061],[19.517082154000093,5.135966695000164],[19.49651493400009,5.133796285000088],[19.431505982000118,5.135966695000164],[19.408975057000106,5.130385640000057],[19.394195597000106,5.116975606000111],[19.373111613000077,5.087545878000114],[19.283814738000103,5.032277934000092],[19.236995890000085,5.010780538000063],[19.229761189000016,5.002176412000026],[19.21467167200012,4.976131490000043],[19.195654744000134,4.950344950000044],[19.179014933000133,4.946417542000077],[19.133022908000044,4.946934306000102],[19.116176391000067,4.940448914000058],[19.106741180000082,4.93151810100008],[19.083310181000115,4.909339702000096],[19.069047485000056,4.891252950000079],[19.0577820230001,4.867791850000103],[19.048997030000095,4.836527608000111],[19.04413944400008,4.826889954000094],[19.035767863000103,4.818001607000085],[19.026879516000093,4.811516215000026],[19.019748169000138,4.803299662000086],[19.011583292000125,4.765033265000084],[18.998044067000052,4.750641378000083],[18.980474081000093,4.739401754000113],[18.96228397700014,4.724441427000059],[18.928177531000074,4.66643463200009],[18.92383671100009,4.662868957000128],[18.90450972500014,4.655866801000116],[18.90016890400005,4.652146098000117],[18.89789514100005,4.650647481000107],[18.88652632700007,4.621398621000154],[18.85241988100009,4.594061788000133],[18.82823531000011,4.559981181000069],[18.77697229000009,4.433451437000087],[18.75330448400007,4.400611064000073],[18.7210583910001,4.377356669000051],[18.6743428960001,4.361311137000086],[18.65408573400009,4.357228699000089],[18.633931925000127,4.355962626000135],[18.61429488100009,4.359812520000091],[18.595794719000054,4.371258850000089],[18.5764677330001,4.372757467000099],[18.556830688000076,4.354153951000058],[18.54194787600005,4.327850647000105],[18.537090291000112,4.306069031000077],[18.545048462000064,4.289015808000059],[18.572540323000055,4.265683899000109],[18.5786381420001,4.254857687000069],[18.583909139000127,4.235789083000085],[18.619669230000056,4.169565735000091],[18.632691691000076,4.130420837000145],[18.64654097500005,4.04598154700011],[18.645300741000113,3.982445373000147],[18.641580038000114,3.958260803000087],[18.6345520430001,3.935729879000064],[18.61367476300012,3.901468404000056],[18.611711060000086,3.879092509000074],[18.612023983000142,3.866611157000136],[18.612847941000098,3.83374644000014],[18.59300419100009,3.709774679000062],[18.626387166000086,3.476868998000086],[18.582462199000133,3.477385762000026],[18.57026656100004,3.489607239000051],[18.5543502190001,3.526375020000032],[18.513422485000092,3.592236633000126],[18.497092733000045,3.611460266000051],[18.472081339000056,3.63205332400014],[18.45905887800012,3.631381531000059],[18.44800012200011,3.61802317300004],[18.42970666500014,3.600220642000096],[18.420611613000062,3.59637074800014],[18.403661743000068,3.597352600000107],[18.392292928000074,3.595853983000111],[18.38784875500008,3.591668192000071],[18.38371464000005,3.577999776000055],[18.379890585000112,3.574382426000071],[18.372862590000096,3.574537455000026],[18.36159712700004,3.580170186000145],[18.35560266100009,3.581462098000102],[18.275917602000046,3.574382426000071],[18.264858846000035,3.574744161000069],[18.25586714700009,3.577224630000046],[18.248529094000105,3.574899191000028],[18.242534627000083,3.561127422000069],[18.235403280000128,3.530922547000074],[18.231579224000114,3.521155701000112],[18.220003703000145,3.503947449000137],[18.2025370690001,3.487333476000117],[18.181556437000012,3.477385762000026],[18.15985233500001,3.480305482000105],[18.14672652200005,3.494904073000086],[18.134014120000103,3.534824117000127],[18.11644413200011,3.552006531000089],[18.082027629000066,3.563452861000101],[18.04709436100009,3.563142802000115],[18.01309126700005,3.553970235000122],[17.981878703000064,3.53880320200011],[17.969476359000083,3.537511292000147],[17.959864542000076,3.541076966000034],[17.924517863000062,3.563452861000101],[17.91924686700014,3.565597433000093],[17.913562459000104,3.561334127000123],[17.875321899000113,3.542730611000081],[17.856408325000075,3.537304586000104],[17.84214563000009,3.54014679000008],[17.835324341000046,3.555830587000045],[17.830570109000064,3.575674337000123],[17.821164998000086,3.593993632000107],[17.80834924300009,3.608592225000067],[17.793156372000084,3.617506409000085],[17.78447473200012,3.618229879000083],[17.76514774600008,3.614354147000129],[17.755949341000075,3.61450917500008],[17.749644816000057,3.618074850000141],[17.73992964700011,3.629159445000155],[17.73321171000009,3.632208354000084],[17.72608036300005,3.631846619000086],[17.71450484200011,3.627505798000101],[17.709130493000146,3.626420593000105],[17.627275024000113,3.62631724100008],[17.586760702000106,3.632234192000098],[17.550483846000134,3.64815053300012],[17.51348352000008,3.67918223100014],[17.50893599400007,3.681766052000057],[17.49498335800007,3.683212993000055],[17.490125773000045,3.68714040200011],[17.486198364000074,3.700292054000088],[17.481857544000093,3.704762065000097],[17.45891320800007,3.708276062000052],[17.442686808000047,3.701273906000054],[17.427493937000122,3.690111797000028],[17.414488944000112,3.683414614000128],[17.375714152000057,3.663446757000073],[17.355767049000036,3.638435364000074],[17.334373007000124,3.618514099000066],[17.298096150000077,3.615904439000061],[17.272257934000066,3.624560241000111],[17.259442179000075,3.62590382900008],[17.24497277800012,3.620606994000127],[17.231123494000084,3.609108988000102],[17.222958618000064,3.598515320000033],[17.213966919000114,3.589291076000038],[17.197223755000067,3.581720479000068],[17.182857707000068,3.579601746000094],[17.142756795000054,3.58084198000013],[17.129010864000122,3.577069601000104],[17.102139119000128,3.566605123000059],[17.0883931890001,3.564434713000068],[17.061418091000064,3.566140035000046],[17.052426392000115,3.563969625000141],[17.035786580000092,3.556140646000117],[17.02886193800012,3.551541443000076],[17.017596476000048,3.541800436000116],[17.009224894000084,3.538131409000115],[17.003127075000123,3.537717998000105],[16.989691203000064,3.539474996000095],[16.98193973800008,3.537976379000085],[16.968607218000045,3.533480530000062],[16.96054569500006,3.538441467000112],[16.953207641000063,3.546890565000098],[16.942252238000094,3.553091736000084],[16.9324337160001,3.553918559000109],[16.904735148000096,3.550637105000121],[16.895536743000093,3.552368266000087],[16.877243286000123,3.559163717000047],[16.867838176000078,3.56154083300008],[16.853162068000074,3.560093893000086],[16.851818481000123,3.551903178000074],[16.854609009000086,3.541335348000089],[16.852645304000134,3.532808736000078],[16.8330082600001,3.522861023000075],[16.81192427500008,3.521672466000055],[16.729552043000098,3.542213847000127],[16.709398234000105,3.543712464000052],[16.686350545000067,3.542213847000127],[16.63942834400009,3.528597107000039],[16.598500610000087,3.501673686000117],[16.56770145700011,3.464389140000094],[16.551681762000072,3.419766541000072],[16.54279341600005,3.336154073000045],[16.517782023000052,3.273238017000054],[16.517161906000098,3.248691711000077],[16.511477498000147,3.227245992000064],[16.4770609950001,3.179393616000141],[16.465485474000047,3.156500956000044],[16.464762003000146,3.131799622000116],[16.472720174000102,3.110612285000073],[16.48315881400015,3.090148417000108],[16.490806925000125,3.067824198000039],[16.484192342000114,3.031909078000083],[16.445538370000122,2.957650045000108],[16.448328898000085,2.913466695000096],[16.460524536000094,2.894604798000074],[16.474993937000136,2.878378397000062],[16.48377893000011,2.860394999000079],[16.479128051000146,2.836313781000044],[16.450602661000087,2.775593974000046],[16.42749236600011,2.726492689000096],[16.41370568800008,2.697200826000127],[16.371124308000105,2.606922099000101],[16.325649048000056,2.510493876000112],[16.293506307000115,2.442074280000028],[16.24803104700007,2.345594381000097],[16.1966646730001,2.23645375600006],[16.19284061700006,2.239502665000074],[16.17971480300011,2.246995748000117],[16.181265096000118,2.256555888000108],[16.18694950400007,2.269319967000087],[16.18653609200007,2.277691549000053],[16.182918742000084,2.281153870000097],[16.16906945800011,2.289887187000076],[16.165968872000064,2.294796448000099],[16.164728638000042,2.314795227000047],[16.16286828600002,2.323838603000098],[16.15925093600012,2.332933655000161],[16.152326294000147,2.343268941000076],[16.13341272000011,2.364818013000033],[16.120907023000115,2.389571025000052],[16.112948853000148,2.410448304000127],[16.11150191200008,2.41856150300012],[16.11150191200008,2.455871887000072],[16.10705773900014,2.474165344000127],[16.094345337000107,2.49752309200008],[16.090314575,2.510493876000112],[16.091244751000147,2.532766419000069],[16.1068510340001,2.567027894000077],[16.11150191200008,2.586199850000085],[16.108504679000134,2.606612040000115],[16.093105102000063,2.641493632000106],[16.090314575,2.661905823000055],[16.093725220000124,2.673119609000096],[16.101373332,2.687847392000094],[16.110468384000086,2.701438294000084],[16.0990995680001,2.703970439000074],[16.086283814000097,2.704952291000055],[16.072847941000077,2.702833557000076],[16.062616008000077,2.703195292000075],[16.05930871600009,2.711825257000115],[16.060032186000086,2.725829570000116],[16.05620813000013,2.759832662000065],[16.05992883300004,2.786187643000118],[16.08690393100008,2.813162740000053],[16.095172160000118,2.836778869000071],[16.09238163300006,2.86328888000007],[16.082459757000063,2.885664775000052],[16.07016076600013,2.90659373000004],[16.05538130700012,2.939769999000134],[16.034193969000057,2.97062082900004],[16.02623579900009,2.978992411000107],[16.015797160000147,2.983488261000034],[16.00608199000004,2.98395334900006],[15.995436645000039,2.981472880000083],[15.982000773000065,2.976718648000087],[15.97776330600004,2.980956116000129],[15.974249309000072,2.985762024000053],[15.971562133000134,2.991188049000115],[15.958229614000118,3.041520894000087],[15.950064738000092,3.061002910000084],[15.933424927000091,3.081776835000127],[15.913994588000094,3.097951559000123],[15.8977681880001,3.10353261400013],[15.854773397000116,3.098985087000102],[15.850949340000085,3.100432027000096],[15.84020064200004,3.107408345000095],[15.834206176000121,3.108545227000107],[15.829141886000057,3.106633199000086],[15.817566366000108,3.100121969000028],[15.813535603000103,3.098985087000102],[15.801029907000098,3.100897115000123],[15.793175089000073,3.103274231000071],[15.785630330000116,3.107976786000052],[15.71069950300006,3.187455139000051],[15.616855102000072,3.286777243000131],[15.517946411000082,3.391602885000111],[15.413973429000036,3.501880392000075],[15.32974084500006,3.59099639900009],[15.2623059310001,3.662589498000116],[15.252639608000095,3.672851868000123],[15.171300904000105,3.758970642000122],[15.084897908000132,3.885836283000103],[15.025986775000119,4.026086120000102],[15.043143351000083,4.026137797000032],[15.075182739000097,4.017972921000108],[15.091719198000078,4.01585418700013],[15.111252889000099,4.019936625000128],[15.150423624000041,4.038514302000081],[15.172437785000113,4.04381113700012],[15.192074829000147,4.052234395000113],[15.189801066000115,4.063112285000074],[15.177708781000149,4.071458028000038],[15.162412557000096,4.073938497000114],[15.148459920000105,4.073938497000114],[15.142568807000089,4.080449728000075],[15.139261515000099,4.094583231000115],[15.13285363800014,4.108535868000104],[15.11776411900007,4.114323629000083],[15.10257124900005,4.112411601000062],[15.091202433000149,4.121790874000112],[15.084484497000119,4.148610942000104],[15.082934204000082,4.205506693000061],[15.072805623000134,4.265942282000083],[15.063813924000101,4.293434143000056],[15.048517700000048,4.321649475000115],[15.01389449000004,4.36425669400009],[15.007383260000069,4.377770080000062],[15.00056197100011,4.403194885000076],[14.993947388000038,4.413297628000109],[14.982061808000083,4.420480652000066],[14.938343546000112,4.435931905000074],[14.7796968990001,4.545046692000113],[14.743730102000114,4.579979961000106],[14.717271769000147,4.622018738000122],[14.704249308000099,4.669354350000091],[14.697324667000116,4.745215353000106],[14.690710083000113,4.762139384000093],[14.69184696400012,4.768702291000082],[14.696084432000077,4.779735209000079],[14.700631958000118,4.804281514000137],[14.701458781000042,4.814384257000099],[14.686989380000114,4.908874614000069],[14.681615031000149,4.920941060000146],[14.675827271000086,4.930759582000107],[14.67210656800006,4.940810649000142],[14.674483683000117,4.967579041000121],[14.669832804000064,4.977113342000109],[14.663424927000106,4.985717468000146],[14.659497518000137,4.997034607000032],[14.660132450000106,5.011439624000062],[14.660324341000063,5.015793152000114],[14.667455689000091,5.052767639000066],[14.663011515000106,5.091447449000071],[14.663218221000049,5.141831970000069],[14.658877401000069,5.164543762000036],[14.651539348000084,5.187513936000072],[14.640480590000067,5.208236186000107],[14.624460897000118,5.2240491740001],[14.603583618000043,5.234255270000077],[14.560485473000144,5.248595480000077],[14.539711548000097,5.261798808000065],[14.523898560000106,5.279678854000109],[14.519867797000101,5.290582580000077],[14.528032674000116,5.293011373000141],[14.539608195000085,5.303579203000112],[14.548393188000146,5.320503235000103],[14.553974243000082,5.338228251000118],[14.555937947000103,5.351328227000081],[14.560795532000041,5.355462341000106],[14.570820760000059,5.370939433000117],[14.579295695000068,5.38760508200005],[14.579605754000054,5.395382385000061],[14.592834920000115,5.400033264000115],[14.597279094000042,5.411479594000127],[14.59624556500006,5.4401083380001],[14.59955285700005,5.456644796000105],[14.614125611000105,5.484860128000165],[14.617432902000102,5.495298767000108],[14.618879842000096,5.525451966000091],[14.617226196000074,5.53788014800007],[14.610611613000058,5.553667298000064],[14.59655562300014,5.57723175100007],[14.591491333000077,5.590951843000099],[14.5901477460001,5.608289287000105],[14.592834920000115,5.623869731000127],[14.610611613000058,5.669138286000134],[14.624357544000105,5.723605245000044],[14.63107548000002,5.738048808000158],[14.62404748500012,5.758305970000066],[14.617432902000102,5.864966125000136],[14.602963501000088,5.883388774000139],[14.598002563000135,5.903490906000116],[14.58477339600006,5.92341217000012],[14.57247440600011,5.924187317000132],[14.54539595600005,5.907573344000113],[14.530616495000118,5.905919698000076],[14.499197225000103,5.909537049000065],[14.48214400200007,5.90964040100009],[14.465710897000093,5.920673319000087],[14.458166137000148,5.936408793000054],[14.45382531800007,5.953875428000103],[14.446900675000078,5.970024313000096],[14.432327922000127,5.985449727000088],[14.417548462000099,5.997257792000084],[14.406076294000087,6.011029561000043],[14.397704712000118,6.019168600000043],[14.389436482000065,6.03105417900008],[14.387266072000072,6.039038188000049],[14.390263306000092,6.045781963000081],[14.397704712000118,6.053946838000087],[14.402458944000102,6.054877014000056],[14.412897583000131,6.047022197000103],[14.41816857900008,6.047125550000131],[14.422509400000138,6.051363017000085],[14.426023397000106,6.059863790000094],[14.429123982000133,6.064178772000076],[14.433568156000149,6.073868103000109],[14.43270924500004,6.079122618000099],[14.431811157000084,6.084616801000038],[14.430570922000129,6.088079122000067],[14.443903442000076,6.100248922000076],[14.467054484000073,6.122598979000145],[14.48214400200007,6.127068991000058],[14.51097945100008,6.155335999000044],[14.525965617000054,6.174068706000128],[14.534957316000117,6.190088399000089],[14.576401814000064,6.189778341000092],[14.719028768000014,6.257862041000095],[14.734841756000037,6.270445251000112],[14.772255493000072,6.318323466000038],[14.78238407400005,6.336771952000049],[14.784657837000054,6.347804871000037],[14.784347778000066,6.358682760000093],[14.780006958000087,6.382221374000081],[14.78217736800008,6.393616028000082],[14.807292114000093,6.427799988000075],[14.92187418000006,6.686413886000067],[14.932452434000112,6.710289205000038],[14.946095011000127,6.725740459000121],[14.962321411000117,6.736695862000104],[15.022369425000134,6.766539002000101],[15.034565063000057,6.776770935000086],[15.04221317600013,6.790775248000088],[15.059059693000107,6.836276347000151],[15.080247029000079,6.878082581000115],[15.113216594000022,6.964692282000058],[15.128926229000086,7.026497294000137],[15.136160930000072,7.045307516000149],[15.147012980000113,7.061843974000055],[15.156108032000075,7.067786764000061],[15.179052368000102,7.078380432000131],[15.18752730300011,7.088612365000117],[15.19021447700004,7.09879262300008],[15.185356893000119,7.156876933000163],[15.186597127000054,7.166333720000125],[15.191248006000107,7.177340801000128],[15.205097290000081,7.200233460000049],[15.223907511000107,7.247517395000087],[15.246563660000078,7.266731312000103],[15.261321248000057,7.279246725000106],[15.338215779000052,7.322189840000078],[15.385344686000053,7.358363342000104],[15.389168741000104,7.364151103000083],[15.397436971000047,7.380739237000085],[15.40322473100011,7.386371968000121],[15.409632609000056,7.387663880000076],[15.428442830000078,7.388800761000083],[15.432783651000136,7.389730937000123],[15.434954060000054,7.402908427000114],[15.415523722000074,7.420840150000089],[15.419451131000129,7.436549785000054],[15.47329797300006,7.509103496000065],[15.481049439000058,7.523262838000107],[15.515569295000148,7.512204081000107],[15.551949503000117,7.509878642000075],[15.624813273000115,7.519748841000065],[15.668531535000113,7.516286519000118],[15.720001262000096,7.468640849000081],[15.758345174000112,7.455566711000117],[15.79389855900007,7.45799550400008],[15.925260050000077,7.488174541000078],[15.943140096000036,7.495305888000118],[15.975696248000077,7.515201315000127],[15.990372355000147,7.529412333000081],[16.012283162000102,7.560314840000088],[16.02633915200002,7.574887594000131],[16.042978964000042,7.583930970000096],[16.06519982900008,7.591217346000079],[16.12876184100014,7.599485575000116],[16.162661580000076,7.611112773000087],[16.1856059160001,7.610751037000085],[16.207206665000058,7.613541565000047],[16.227257120000104,7.625582174000115],[16.26188033000011,7.651885478000068],[16.2827576090001,7.660102031000093],[16.37081424900012,7.672504374000069],[16.383009888000032,7.680669251000083],[16.387144002000067,7.694673564000084],[16.387040649000113,7.762628072000055],[16.39220829200013,7.783608703000141],[16.407401164000074,7.796062724000136],[16.418149862000092,7.795856018000079],[16.427244913000067,7.791463522000086],[16.437373495000116,7.788362935000052],[16.450912720000076,7.792083638000065],[16.457217244000105,7.79962839800011],[16.469412882000114,7.825828349000119],[16.47571740700002,7.835801901000123],[16.49173710100007,7.849237773000083],[16.509203735000114,7.858281149000049],[16.54868453000006,7.870011699000131],[16.550131469000036,7.861691793000162],[16.550751587,7.852700094000128],[16.55023482200008,7.843501689000035],[16.544860474000103,7.813012594000043],[16.54930464600011,7.794719137000071],[16.56015669700008,7.779732972000104],[16.576383097000075,7.767795715000148],[16.586821737,7.763558248000109],[16.596433553000107,7.761129456000049],[16.605218547000106,7.757202047000078],[16.61307336400006,7.74821034700004],[16.618137655000112,7.734309387000067],[16.616173950000075,7.723870748000125],[16.611833129000104,7.713897197000107],[16.609869426000074,7.70159820600007],[16.614210245000066,7.679584046000087],[16.624545532000067,7.668680318000027],[16.663199504000147,7.657414856000074],[16.686867310000082,7.645787659000105],[16.70981164600005,7.627752584000107],[16.74670861800007,7.58656646700011],[16.76861942500011,7.550237936000144],[16.782365357000057,7.541142883000077],[16.80551639800012,7.54367502900007],[16.812854451000135,7.547705790000065],[16.815071257000056,7.549543532000143],[16.836728963000013,7.56749786400013],[16.839622843000086,7.567446188000118],[16.85037154100013,7.565895894000092],[16.853885539000085,7.56749786400013],[16.855849243000108,7.575404358000084],[16.852438599000095,7.580261943000096],[16.848097778000092,7.584706116000106],[16.84716760300006,7.591579081000076],[16.854815715000115,7.611474508000086],[16.865461060000115,7.624445292000103],[16.88065393000005,7.632868551000101],[16.919617961000142,7.644082337000043],[16.96271610500014,7.650696920000129],[16.98193973800008,7.648733215000106],[16.988967733000067,7.660773824000073],[16.997546020000097,7.666716614000094],[17.008294718000116,7.667646790000048],[17.038990519000066,7.662479147000042],[17.04209110500011,7.66702667300008],[17.041057576000128,7.675501608000075],[17.04560510200008,7.684700012000079],[17.059351033000098,7.696533916000092],[17.07909143100008,7.689919332000102],[17.090253540000106,7.68382151300004],[17.095524536000113,7.678240458000118],[17.101932414000057,7.677723694000078],[17.11629846200009,7.686870422000069],[17.135522095000084,7.705112203000127],[17.1705587160001,7.74753855400006],[17.18864546700013,7.764126689000065],[17.19639693200014,7.765160218000047],[17.20456180800005,7.763816630000078],[17.211073038000023,7.76831248000009],[17.21448368300014,7.786812643000119],[17.22068485500003,7.798181457000111],[17.233790206000094,7.810801425000149],[17.234637492000047,7.811617330000061],[17.25086389100005,7.822831116000102],[17.38573938000007,7.870476787000143],[17.405996541000093,7.883034160000065],[17.41912235500007,7.898227030000101],[17.466354614000096,7.88411936400007],[17.478343547000037,7.891819153000142],[17.487231893000057,7.914453430000107],[17.50366499800012,7.926235657000106],[17.52381880700011,7.930989889000101],[17.55978560300008,7.9347105920001],[17.580766235000084,7.940601706000108],[17.599989868000108,7.950368551000067],[17.620660441000012,7.978738912000068],[17.639884074000122,7.985043437000086],[17.661794881000077,7.986283671000124],[17.679778280000075,7.985198466000027],[17.817237589000115,7.962099101000149],[17.858785441000123,7.960445455000097],[17.89785282400004,7.967473450000113],[17.977227824000096,7.997187398000078],[18.07045210800004,8.019201558000061],[18.50825484200007,8.030673727000078],[18.589283488000092,8.047881979000065],[18.617912231000076,8.09012746200004],[18.618635702000063,8.13865163200012],[18.638582804000094,8.177641500000107],[18.672585896000044,8.207510478000131],[18.715063924000077,8.228671977000076],[18.773768351000115,8.248619080000097],[18.791234986000063,8.257378235000076],[18.81304244000009,8.27642100100006],[18.854900350000065,8.339802144000075],[18.887456503000095,8.370963033000137],[18.90130578600008,8.388636373000052],[18.910400839000143,8.412975973000059],[18.920529419000104,8.432122090000064],[19.02047163900005,8.545577698000088],[19.061296021000146,8.625624492000043],[19.072261297000125,8.631872473000087],[19.081656535000064,8.637225851000082],[19.09147505700014,8.652857972000035],[19.12413456200011,8.675078837000072],[19.10387740100012,8.698049011000109],[19.07349165900007,8.720528259000119],[19.0577820230001,8.729700826000112],[19.04868697100011,8.74566884400015],[18.929107707000128,8.796544292000076],[18.917325480000045,8.805148418000115],[18.912467895000106,8.818403422000117],[18.909677368000132,8.835327454000023],[18.902959432000017,8.844810079000084],[18.88652632700007,8.835844218000148],[18.869783162000118,8.849409282000138],[18.869679810000093,8.864111227000123],[18.892727498000053,8.897933452000117],[18.901409139000094,8.893980205000048],[18.910607544000097,8.894238586000114],[18.917738892000045,8.898811951000155],[18.920736124000143,8.90785532700012],[18.92290653500004,8.918216451000132],[18.928590943000074,8.921678772000078],[18.93644576000011,8.923358256000128],[18.952052042000076,8.931988220000079],[18.971895793000044,8.938215230000068],[18.97592655400004,8.941987610000098],[18.97851037600014,8.949454855000113],[18.98481490000006,8.956431173000112],[18.999491007000046,8.969634501000101],[19.021918579000044,8.985214946000042],[19.06067590300009,9.004180196000092],[19.100570109000103,9.015264791000106],[19.126718384000124,9.007177429000109],[19.1336430260001,9.007177429000109],[19.14211796100011,9.008676046000103],[19.168783000000133,9.00221649200006],[19.17457076000011,9.003766784000078],[19.179635051000105,9.015264791000106],[19.192037394000067,9.02017405200013],[19.23286177600005,9.02229278600002],[19.25342899600014,9.027951356000145],[19.2632475180001,9.028261414000042],[19.27523645000008,9.021982727000122],[19.285778442000034,9.012810160000129],[19.295493612000087,9.00950286900013],[19.304795370000107,9.02084584500011],[19.316267537000016,9.013120219000115],[19.33332076000005,9.00655731200004],[19.352234334000087,9.002061463000118],[19.36939091000005,9.000381978000064],[19.382620076000137,9.00319834500003],[19.420963989000054,9.017435202000087],[19.430162394000064,9.01286183700006],[19.50664351400013,9.013998718000066],[19.511811157000068,9.012293396000087],[19.515841919000138,9.009451192000114],[19.521319621000117,9.00883107500006],[19.53082808400012,9.013998718000066],[19.553772420000143,9.013326925000072],[19.583124633000125,9.02534169600004],[19.61361372900012,9.031672059000059],[19.640072062000087,9.013998718000066],[19.65640181400005,9.02125925700004],[19.70001672300009,9.020587464000144],[19.70900842300003,9.024566548000038],[19.71396936000008,9.02913991300008],[19.738153931000056,9.039371847000053],[19.746835571000105,9.041309713000075],[19.758411092000046,9.04198150600007],[19.784662720000085,9.048751120000105],[19.805539998000143,9.051128235000135],[19.889462525000056,9.046374004000143],[19.902174927000118,9.051800029000034],[19.914473917000066,9.069266663000079],[19.928736613000126,9.062574565000148],[19.932091369000148,9.06333056600009],[19.943412719000037,9.065881856000146],[19.969044231000083,9.082883403000082],[19.976485637000106,9.084175313000117],[19.98547733500004,9.083193461000063],[19.993022094000107,9.084588725000046],[19.9963293860001,9.092831116000085],[19.99715620900011,9.09861887600006],[19.999533325000073,9.104303284000096],[20.002943970000103,9.108514913000134],[20.006871379000074,9.110220236000103],[20.014416137000097,9.10634450300006],[20.017930135000057,9.091048279000091],[20.024338012000097,9.089756368000053],[20.030332478000048,9.093864644000064],[20.029919067000034,9.098980611000059],[20.028368775000104,9.104561666000066],[20.031159302000077,9.110220236000103],[20.060511515000144,9.134353129000147],[20.068676391000054,9.13812550900009],[20.07694462100011,9.136730245000107],[20.090587199000108,9.131123352000088],[20.099372193000107,9.130709941000077],[20.100509074000115,9.134146423000104],[20.09957889800006,9.141174418000105],[20.10102583800005,9.148073222000093],[20.10960412600008,9.151173808000124],[20.11714888500012,9.145747782000058],[20.12572717200007,9.133784688000105],[20.13761275200008,9.121821594000053],[20.1545626220001,9.11642140700009],[20.16954878800007,9.120891418000099],[20.197970825000084,9.140502625000124],[20.21264693200007,9.144972636000132],[20.222982218000084,9.141949565000118],[20.234454387000085,9.134559835000118],[20.256985311000108,9.11642140700009],[20.276829061000115,9.120736390000062],[20.35940799900004,9.11642140700009],[20.378321574000097,9.120064596000077],[20.384419393000144,9.123578593000033],[20.402919555000064,9.136988627000079],[20.41242801900006,9.142052918000061],[20.42307336400006,9.143241476000071],[20.435165649000027,9.13812550900009],[20.455422811000034,9.159312846000134],[20.467618449000042,9.184143372000094],[20.481777792000088,9.204658915000067],[20.5072025960001,9.213263041000102],[20.512990357000092,9.223882548000091],[20.50265507000006,9.247421163000084],[20.496143840000087,9.270882264000148],[20.514230591000114,9.281501771000137],[20.526426229000037,9.283620504000112],[20.53366093000008,9.289640809000062],[20.537278280000066,9.299200948000149],[20.53820845600012,9.311939189000114],[20.541825806000105,9.321628520000047],[20.550920858000094,9.320259095000067],[20.572314901000084,9.308218485000097],[20.57355513500005,9.30914866100005],[20.592262003000116,9.30806345700006],[20.592882121000084,9.308218485000097],[20.609728638000064,9.30279246000012],[20.616653280000037,9.302017314000109],[20.667916300000087,9.302017314000109],[20.654893839000124,9.342970887000135],[20.695821574000064,9.36346059200011],[20.7408834230001,9.377129008000125],[20.750495240000106,9.384544576000037],[20.757936646000132,9.377129008000125],[20.766618286000096,9.386559957000088],[20.77106246000011,9.398057963000113],[20.7765401610001,9.407798970000059],[20.788322388000093,9.411881409000074],[20.792353149000093,9.414000142000134],[20.798244262000082,9.423379415000085],[20.8019649660001,9.425549825000076],[20.806719197000092,9.423327739000072],[20.81323042800005,9.419116109000129],[20.81388430900006,9.41884686400006],[20.82025842200008,9.41622222900014],[20.82614953600006,9.418082580000146],[20.83266076700005,9.437254537000058],[20.834314412000083,9.462472636000115],[20.841445760000113,9.484409282000072],[20.863769979000097,9.493788554000119],[20.874208618000125,9.502496033000085],[20.91265588400006,9.544328105000147],[20.921234171000094,9.55897837300013],[20.925058227000136,9.569597880000117],[20.934256632000142,9.577065125000047],[20.955960734000143,9.589415792000096],[20.96050826000007,9.598123271000077],[20.96226525900005,9.606934103000071],[20.9676396080001,9.610603129000154],[20.98314253800004,9.603678488000085],[20.98179895000007,9.616778463000045],[20.980145304000104,9.61993072600009],[20.975804484000037,9.624168193000045],[20.975804484000037,9.630963643000086],[20.989963826000064,9.635614522000154],[20.996061645000026,9.648301087000107],[20.996888468000066,9.6821749880001],[21.000092408000114,9.697393697000052],[21.014251749000067,9.724472148000103],[21.017352336000016,9.743592428000099],[21.0199361570001,9.74793324800008],[21.025620565000054,9.753255920000113],[21.032338501000083,9.75801015200011],[21.03781620300009,9.760671489000131],[21.039056437000113,9.762170105000052],[21.040089966000096,9.764753927000143],[21.042673787000098,9.767079366000074],[21.04835819500005,9.76816457100007],[21.052905721000087,9.765890809000055],[21.062207479000108,9.756201477000118],[21.065824829000093,9.754496155000155],[21.073162882000073,9.757648417000112],[21.080294230000106,9.762609355000066],[21.093109986000087,9.774339905000147],[21.097037394000065,9.77537343400013],[21.101584920000107,9.774236552000119],[21.10520227100008,9.774029847000065],[21.1067525630001,9.778060608000146],[21.10592574000009,9.791884054000107],[21.1067525630001,9.79544972800008],[21.121738728000082,9.831907451000092],[21.13197066200007,9.849425761000148],[21.187264445000096,9.88513417600005],[21.195429322000106,9.88730458600014],[21.198426554000037,9.902988383000107],[21.20566125500008,9.916837667000067],[21.256924276000117,9.975748800000074],[21.271290323000102,9.987246806000101],[21.285139608000065,9.978591004000052],[21.3260673420001,9.96275217700014],[21.339503214000047,9.959909973000066],[21.37433313000011,9.973113301000055],[21.406889282000066,10.00556610100007],[21.43334761600005,10.04605458600008],[21.48543745900011,10.16431610100011],[21.513239380000044,10.200515442000054],[21.544968709000074,10.219997457000133],[21.55447717200005,10.218653870000068],[21.566672810000085,10.214493917000139],[21.57928186000009,10.212271831000137],[21.589720500000027,10.216612650000114],[21.593441203000054,10.214545594000057],[21.625273885000095,10.22449330700006],[21.630648234000148,10.227438864000064],[21.65627974500012,10.23366587300005],[21.668888794000054,10.249194641000074],[21.67695031700012,10.269167582000094],[21.68893925000009,10.288907980000147],[21.6974141850001,10.292421977000117],[21.708886352,10.293533020000027],[21.718808228000114,10.296633606000057],[21.723045695000053,10.305987041000094],[21.722115519000113,10.314177755000117],[21.71777469900013,10.328983053000059],[21.716844523000074,10.339809265000083],[21.720461873000147,10.360815735000102],[21.751054321000083,10.411820373000053],[21.743612915000142,10.418977559000098],[21.74278609300012,10.425773010000057],[21.744439738000068,10.432439270000145],[21.744233032000125,10.439105530000075],[21.738031861000138,10.448019714000097],[21.720461873000147,10.46801849400012],[21.716844523000074,10.47732025200014],[21.714674113000086,10.493701681000104],[21.70547570800008,10.532019755000105],[21.70330529800009,10.552406108000056],[21.70547570800008,10.57181060800012],[21.714674113000086,10.601395365000158],[21.716844523000074,10.621006572000098],[21.72263228400004,10.636716207000063],[21.736481567000112,10.646172994000038],[21.7534314370001,10.650720520000064],[21.768417603000074,10.651986593000103],[21.77420536300005,10.655164694000078],[21.77875288900009,10.662270203000105],[21.784850708000135,10.66932403600012],[21.795392700000036,10.672476299000081],[21.80355757700005,10.673664856000102],[21.8225745040001,10.678754985000083],[21.832909790000116,10.679943543000107],[21.852753540000094,10.670150859000046],[21.863605591000066,10.667928772000053],[21.86835982300005,10.67622283900009],[21.872080526000044,10.677592265000072],[21.8950248620001,10.699193013000126],[21.925617309000103,10.720121969000033],[21.943083944000136,10.728261007000128],[22.003855428000062,10.74327301000011],[22.01460412600008,10.754564310000077],[22.00488895700005,10.775519104000082],[22.011400187000106,10.789290873000112],[22.018324829000075,10.809883932000105],[22.02948693800002,10.828745829000127],[22.048607218000114,10.83698822000008],[22.1324263920001,10.828539124000088],[22.148239380000092,10.830761210000091],[22.17635135900011,10.81621429500012],[22.189787231000082,10.837298279000066],[22.20063928200011,10.868665873000083],[22.229371378000025,10.891971944000119],[22.240120076000068,10.905898743000094],[22.253039185000148,10.915303854000058],[22.268438761000137,10.908999329000054],[22.276500285000054,10.908534241000027],[22.287248983000065,10.91594980900004],[22.305955852000125,10.932563782000045],[22.31877160600004,10.93935923300009],[22.33944217900003,10.947730815000071],[22.36114628100003,10.953647766000074],[22.364690321000097,10.954208607000112],[22.391842082000068,10.958505351000097],[22.40703495200009,10.963052877000038],[22.41923059,10.970726827000107],[22.437627401000015,10.99155242900008],[22.447135865000092,10.998270366000098],[22.46046838400011,11.000828349000088],[22.4762813720001,10.997960307000113],[22.49075077300006,10.993154399000103],[22.502843058000053,10.992172547000052],[22.511938110000102,11.000828349000088],[22.534675740000097,10.980519511000082],[22.555759725000115,10.978969218000145]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ivory Coast","sov_a3":"CIV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ivory Coast","adm0_a3":"CIV","geou_dif":0,"geounit":"Ivory Coast","gu_a3":"CIV","su_dif":0,"subunit":"Ivory Coast","su_a3":"CIV","brk_diff":0,"name":"Côte d'Ivoire","name_long":"Côte d'Ivoire","brk_a3":"CIV","brk_name":"Côte d'Ivoire","brk_group":null,"abbrev":"I.C.","postal":"CI","formal_en":"Republic of Ivory Coast","formal_fr":"Republic of Cote D'Ivoire","note_adm0":null,"note_brk":null,"name_sort":"Côte d'Ivoire","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":3,"mapcolor13":3,"pop_est":20617068,"gdp_md_est":33850,"pop_year":-99,"lastcensus":1998,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"IV","iso_a2":"CI","iso_a3":"CIV","iso_n3":"384","un_a3":"384","wb_a2":"CI","wb_a3":"CIV","woe_id":23424854,"woe_id_eh":23424854,"woe_note":"Exact WOE match as country","adm0_a3_is":"CIV","adm0_a3_us":"CIV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":13,"long_len":13,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CIV.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-3.1849666009999,5.132269598000107],[-3.163400844999899,5.125474351000179],[-3.159087693999908,5.125555731000161],[-3.155140753999916,5.127875067000133],[-3.146351691999939,5.121568101000179],[-3.131703253999944,5.108140367000189],[-3.118316209999932,5.107001044000157],[-3.115305141999926,5.107814846000082],[-3.115281436038742,5.107820910151929],[-3.119600953008359,5.09133139696317],[-3.119618292999917,5.091335354000179],[-3.120228644999884,5.091498114000146],[-3.163807745999918,5.101548570000119],[-3.26207434799997,5.11098867400014],[-3.276356574999852,5.11810944200009],[-3.272328253999888,5.132391669000171],[-3.253285285999908,5.149603583000101],[-3.234120245999918,5.163478908000087],[-3.207386847999913,5.156642971000082],[-3.200306769999941,5.151800848000093],[-3.197417772999926,5.145900783000157],[-3.195952928999873,5.140204169000171],[-3.193186001999919,5.136135158000116],[-3.1849666009999,5.132269598000107]]],[[[-6.244446166999893,10.70686696400017],[-6.249458780999873,10.66560333200016],[-6.246616576999884,10.657619324000095],[-6.227754678999872,10.650849711000147],[-6.2169026279999,10.645087789000085],[-6.207807576999926,10.637543030000131],[-6.204448607999922,10.629610698000178],[-6.209771280999888,10.617750957000155],[-6.219796508999906,10.611859843000161],[-6.230700235999961,10.606924744000125],[-6.238658406999917,10.597984721000087],[-6.232870645999867,10.584109599000115],[-6.230028441999877,10.572043152000134],[-6.231372028999942,10.560235088000127],[-6.237934935999931,10.551941020000172],[-6.256228392999901,10.537239075000173],[-6.260930948999885,10.529151714000179],[-6.261292683999955,10.514088033000093],[-6.256021687999947,10.511607565000118],[-6.247650105999866,10.513829651000123],[-6.238658406999917,10.512744446000125],[-6.233490763999924,10.50757680200013],[-6.228168090999873,10.500574646000118],[-6.222432006999924,10.494631857000114],[-6.215662393999878,10.492616476000151],[-6.204190226999855,10.494373474000142],[-6.196128702999971,10.494683533000128],[-6.190289265999894,10.491143698000158],[-6.185793416999957,10.481325176000098],[-6.187498737999931,10.475408224000176],[-6.198195759999919,10.45739898700019],[-6.200366170999928,10.448769023000137],[-6.196903848999881,10.439157207000136],[-6.180574096999948,10.420217794000095],[-6.195663614999944,10.389211934000159],[-6.198764200999989,10.370815125000163],[-6.183933064999849,10.358852031000112],[-6.208324340999894,10.331980286000203],[-6.207807576999926,10.328517965000174],[-6.20537878399989,10.322626851000166],[-6.203983520999913,10.316038107000082],[-6.206153929999886,10.310818787000159],[-6.214370483999914,10.307795716000143],[-6.221140095999971,10.310353699000132],[-6.225894327999868,10.314487813000156],[-6.228323119999914,10.316089783000093],[-6.240673787999867,10.30257639600012],[-6.243309285999885,10.289011333000133],[-6.240001993999897,10.251933492000163],[-6.224809122999943,10.255034078000108],[-6.21400874899993,10.24785105400015],[-6.194320027999879,10.22418324800013],[-6.180884154999916,10.215837504000149],[-6.105333210999902,10.18927581800014],[-6.015932982999914,10.189870097000108],[-5.997122762999908,10.208189392000177],[-5.985237182999867,10.227283834000161],[-5.978312540999895,10.24862620000016],[-5.974746866999908,10.273637594000162],[-5.963016316999926,10.282732645000138],[-5.916404174999883,10.266635437000161],[-5.9047253009999,10.275291239000111],[-5.908962767999952,10.330068258000097],[-5.904828653999914,10.34828420100014],[-5.893304809999989,10.365027364000184],[-5.878060261999849,10.376060283000186],[-5.80628169799985,10.413474020000152],[-5.677555704999861,10.441508484000167],[-5.621796834999913,10.446934510000148],[-5.594046589999891,10.453936666000146],[-5.584383097999961,10.454246725000132],[-5.571722371999925,10.449880066000148],[-5.549708211999927,10.435643209000174],[-5.522578084999878,10.425488790000117],[-5.505111449999902,10.415566915000127],[-5.48748978699993,10.392932638000076],[-5.475294148999922,10.367714539000117],[-5.474157267999914,10.3503254190001],[-5.459946248999927,10.345157776000093],[-5.453021606999869,10.343943380000153],[-5.443771525999863,10.343529969000144],[-5.437828734999925,10.340015971000184],[-5.433487915999962,10.331876933000089],[-5.430077270999931,10.322936910000152],[-5.426976684999886,10.316864929000104],[-5.416227986999956,10.30753733300017],[-5.402533731999938,10.300561015000168],[-5.385738891999893,10.296478577000158],[-5.365533406999901,10.295703431000147],[-5.360830850999918,10.298752340000176],[-5.357058471999892,10.304385071000112],[-5.353337768999978,10.30826080400007],[-5.348170124999882,10.30598704100015],[-5.343777628999873,10.30309316000016],[-5.338506632999952,10.302214661000122],[-5.327086140999938,10.30257639600012],[-5.315510619999912,10.30526357000015],[-5.309206094999894,10.31149058000014],[-5.304141804999915,10.31841522300013],[-5.296648721999873,10.323040263000095],[-5.279802204999895,10.32242014600011],[-5.233551797999922,10.315676371000094],[-5.217583780999888,10.319939677000134],[-5.168439493999927,10.291336772000165],[-5.159499470999918,10.29231862400013],[-5.152058064999892,10.305625305000149],[-5.135676635999943,10.304281718000183],[-5.11988239199988,10.293983277000109],[-5.119191853999951,10.29353302000007],[-5.11180212399995,10.27865020800013],[-5.11180212399995,10.223718160000189],[-5.114411783999855,10.218292134000123],[-5.118210001999898,10.212478536000148],[-5.117073120999891,10.208034363000138],[-5.104903319999977,10.20694915800014],[-5.097849487999952,10.209274597000075],[-5.091906696999928,10.214338887000153],[-5.087333333999908,10.220824280000116],[-5.084413614999902,10.227438864000106],[-5.0815972499999,10.206897481000127],[-5.09014969899988,10.188810730000114],[-5.090718139999922,10.177932841000157],[-5.063949747999857,10.179043885000155],[-5.070719360999902,10.161008809000151],[-5.06472489499987,10.150802714000179],[-5.039455118999881,10.134343770000115],[-5.037594767999877,10.126488953000177],[-5.061030028999937,10.118453268000096],[-5.07009924299993,10.110159200000139],[-5.061701822999851,10.11005584700011],[-5.055138916999852,10.108040467000166],[-5.049376993999886,10.105353292000132],[-5.042865762999923,10.103337911000096],[-5.056482503999916,10.097110901000107],[-5.04834346599992,10.085354512000107],[-5.037233031999989,10.083752544000163],[-5.025528320999911,10.088739319000126],[-5.015580607999908,10.097110901000107],[-5.01051631699994,10.079049988000179],[-4.999793456999925,10.06946401000009],[-4.986641805999852,10.0632628380001],[-4.974523681999955,10.0555372110001],[-4.963335733999912,10.040318502000162],[-4.956411091999939,10.021999207000178],[-4.960209309999868,10.008485819000114],[-4.981396646999912,10.007736511000118],[-4.976926634999899,9.99760793100016],[-4.96571285,9.98311269100013],[-4.954809122999905,9.959703268000153],[-4.9529487719999,9.953372905000135],[-4.967314819999899,9.9123676560001],[-4.966074584999944,9.901024679000116],[-4.936670694999861,9.873997904000175],[-4.928014892999926,9.870948995000147],[-4.922356322999889,9.877460226000125],[-4.917085326999938,9.886477763000158],[-4.909385538999857,9.891051127000196],[-4.898016723999945,9.888906555000133],[-4.893495035999933,9.884204000000151],[-4.890058552999903,9.879501445000173],[-4.881738647999924,9.877408549000108],[-4.858329223999873,9.875703227000145],[-4.838459634999879,9.869450378000137],[-4.824274454999937,9.856970520000147],[-4.817556517999889,9.83645497600017],[-4.798462076999924,9.842526958000121],[-4.790323038999901,9.827514953000147],[-4.785413777999878,9.804829],[-4.775905313999885,9.78800832100012],[-4.791899169999937,9.782349752000172],[-4.800399942999945,9.781109518000136],[-4.810115111999891,9.781781311000117],[-4.810115111999891,9.77433990500019],[-4.801226765999957,9.76645924900015],[-4.79931473799985,9.762531840000179],[-4.796446695999862,9.754496155000197],[-4.783191690999956,9.758371887000152],[-4.76996252399988,9.73736541800015],[-4.754769653999857,9.740207622000128],[-4.76045406099999,9.745323588000119],[-4.762133544999926,9.749948629000173],[-4.758593709999984,9.753307597000173],[-4.74864599599988,9.754496155000197],[-4.738336547999978,9.753152568000147],[-4.733323933999912,9.749638570000087],[-4.730016642999914,9.744238383000123],[-4.724383911999894,9.737107035000177],[-4.71280838999985,9.726849264000094],[-4.709087686999936,9.720312195000119],[-4.707640747999932,9.709770203000147],[-4.705470336999952,9.702096253000164],[-4.700095987999902,9.697910462000138],[-4.686608439999929,9.692406922000131],[-4.681544148999933,9.686722514000095],[-4.681802530999903,9.682846781000137],[-4.681079060999906,9.682071635000128],[-4.672914184999911,9.685585633000173],[-4.664826822999913,9.69085662800012],[-4.658263915999925,9.697600403000152],[-4.65472408099987,9.703543193000158],[-4.655809284999861,9.706075338000147],[-4.641107339999877,9.706023661000131],[-4.628730834999884,9.707703145000096],[-4.616948608999905,9.713852641000159],[-4.604029499999882,9.727159322000174],[-4.592712360999911,9.717831727000146],[-4.578320475999902,9.696515198000156],[-4.566719115999945,9.692406922000131],[-4.552198038999904,9.696463522000144],[-4.548425658999889,9.706798808000144],[-4.547960570999862,9.7202605180002],[-4.543051310999913,9.734006450000138],[-4.539899047999967,9.74077606200018],[-4.539098063999859,9.74470347100015],[-4.535945800999883,9.746615499000155],[-4.517781534999955,9.746615499000155],[-4.509952554999927,9.745065206000149],[-4.503958089999884,9.74201629700012],[-4.501606810999959,9.737107035000177],[-4.50382889899987,9.719898783000104],[-4.513647420999916,9.694008891000166],[-4.51592118399995,9.675689595000094],[-4.501710163999888,9.655019023000179],[-4.469205688999864,9.651763407000187],[-4.43336808299992,9.653468730000156],[-4.409105997999915,9.647732646000108],[-4.400165974999908,9.633134054000138],[-4.391587687999959,9.60029368100011],[-4.38486975099994,9.589415792000153],[-4.37117549599992,9.582956238000108],[-4.367816528999896,9.59197377500014],[-4.368023233999878,9.608381043000108],[-4.365026001999951,9.6241681930001],[-4.349678099999977,9.620034078000174],[-4.322547973999917,9.608897807000147],[-4.322476993999885,9.608980710000168],[-4.315933390999902,9.616623434000147],[-4.30298844399988,9.641712341000158],[-4.300482137999921,9.654295553000082],[-4.303453531999907,9.677911682000099],[-4.303298502999979,9.686722514000095],[-4.297794961999983,9.695843404000172],[-4.267512572999863,9.727262675000105],[-4.279191446999931,9.731138408000161],[-4.283635620999917,9.732016907000101],[-4.27032893899991,9.743928325000141],[-4.253094848999921,9.750051982000102],[-4.215422729999887,9.75485789000011],[-4.196974242999886,9.764960633000143],[-4.168293823999903,9.804829],[-4.150258747999885,9.818290711000145],[-4.133050496999914,9.82040944400012],[-4.07615474499994,9.8037954710001],[-4.065716104999922,9.798085226000154],[-4.05987666799993,9.796276551000162],[-4.053675496999858,9.797620138000127],[-4.051711791999907,9.802348531000105],[-4.051350056999922,9.807567851000128],[-4.050316528999929,9.810306702000162],[-4.034968627999973,9.817618917000159],[-4.026674560999908,9.820306091000177],[-3.994609333999903,9.820771179000118],[-3.988253133999876,9.834801331000122],[-3.984041503999919,9.851156921000081],[-3.969184529999894,9.858985901000096],[-3.947738809999862,9.86436025000016],[-3.91009252899994,9.88849314400012],[-3.891624633999924,9.89390009500012],[-3.889706176999908,9.894461772000142],[-3.823482828999914,9.895702006000164],[-3.80425919599989,9.901386414000115],[-3.795758422999882,9.90766510000013],[-3.779738728999916,9.92469248500015],[-3.769610147999885,9.93133290600015],[-3.755037394999903,9.935880433000179],[-3.706461547999908,9.941823222000108],[-3.698994302999893,9.940789693000127],[-3.68594600499992,9.93345164000013],[-3.6796414799999,9.932211405000189],[-3.674318806999878,9.935260315000122],[-3.665042887999959,9.94660329200019],[-3.661658080999927,9.948928731000137],[-3.648170531999881,9.944587911000156],[-3.64054825799991,9.937379048000194],[-3.6340111899999,9.929240010000086],[-3.623340006999911,9.921746928000147],[-3.606260945999878,9.918181254000089],[-3.546471313999945,9.926139425000144],[-3.389168253999912,9.913246155000138],[-3.376559203999875,9.908491923000142],[-3.359015055999918,9.892498068000108],[-3.348343871999901,9.886994527000112],[-3.339248819999852,9.890095113000143],[-3.327518269999956,9.897303976000117],[-3.317182983999942,9.901334737000113],[-3.312738809999928,9.894513449000142],[-3.313565632999939,9.874566345000131],[-3.311808634999891,9.854128316000171],[-3.301731730999933,9.84113169400014],[-3.277857218999941,9.843457133000172],[-3.264059610999908,9.85707387300009],[-3.230237385999914,9.904719543000127],[-3.214760294999905,9.915623271000186],[-3.202564656999897,9.908233541000172],[-3.202228759999912,9.888958232000135],[-3.204399169999903,9.86536794100013],[-3.200006673999894,9.845369161000107],[-3.182565877999878,9.835163066000119],[-3.16011246799988,9.834697978000108],[-3.136935587999857,9.829530335000186],[-3.116910969999935,9.80529408800011],[-3.104379435999931,9.75713165300013],[-3.094560912999953,9.733851420000105],[-3.077094278999908,9.719407858000167],[-3.059059203999908,9.718555196000139],[-3.024642699999958,9.72860626200017],[-3.005677449999894,9.724162090000164],[-2.989993651999924,9.708426616000096],[-2.977823852999933,9.68517222100017],[-2.959892130999947,9.638611755000127],[-2.91015356499986,9.54272613600017],[-2.810418049999953,9.411106262000203],[-2.787602905999932,9.393717143000174],[-2.763676717999942,9.391882629000179],[-2.744918171999956,9.408109030000091],[-2.720475219999912,9.459217020000082],[-2.68921097799992,9.488724263000094],[-2.675671752999932,9.471722718000166],[-2.674586547999951,9.457485861000109],[-2.678668986999867,9.425549825000132],[-2.677377074999896,9.41777252200012],[-2.67241613799996,9.401003519000154],[-2.67241613799996,9.374028422000137],[-2.677532104999926,9.357001038000192],[-2.689417683999864,9.349533794000166],[-2.70306026199998,9.34325510700016],[-2.713343871999882,9.32992258700014],[-2.714997517999933,9.31106068900013],[-2.707142700999895,9.295635275000137],[-2.692983357999935,9.285325826000133],[-2.675516722999902,9.28150177100018],[-2.659807087999923,9.272897645000157],[-2.661150674999902,9.253906556000103],[-2.67308793199993,9.234889628000133],[-2.70481726099996,9.218404847000144],[-2.716496134999915,9.200266418000126],[-2.733911091999857,9.164842225000184],[-2.755201781999858,9.143138123000185],[-2.759387572999884,9.13481821700013],[-2.761299601999894,9.084795431000146],[-2.765433715999932,9.069111633000176],[-2.774838826999882,9.054978129000148],[-2.76507198099992,9.04947458900014],[-2.758664102999887,9.042860006000154],[-2.750809284999946,9.03740814200016],[-2.736960001999904,9.035134379000155],[-2.711328491999922,9.033894145000204],[-2.686058715999962,9.028261414000085],[-2.660788940999907,9.01490305600015],[-2.654329386999933,8.998831685000184],[-2.653295857999865,8.97839365700014],[-2.637689574999911,8.931471456000097],[-2.631746785999894,8.92697560700016],[-2.625028848999875,8.925993754000103],[-2.619447793999967,8.923616639000144],[-2.617174031999951,8.915012513000121],[-2.615933796999911,8.897830099000146],[-2.595573282999879,8.828066915000178],[-2.596658487999974,8.814398499000077],[-2.60725215599993,8.808559062000183],[-2.614641886999948,8.801918640000094],[-2.617225707999864,8.78918040000012],[-2.612381685999906,8.781321221000084],[-2.612161417999886,8.78096384700018],[-2.60311804199992,8.785149638000133],[-2.598363809999938,8.76946584100017],[-2.552345946999935,8.489366659000154],[-2.506328083999932,8.209267477000154],[-2.513201049999907,8.194022929000113],[-2.558107869999901,8.167693787000161],[-2.571750446999914,8.16312042200012],[-2.583274291999941,8.164334818000142],[-2.59598669499988,8.170277609000067],[-2.604254923999918,8.170794373000192],[-2.610662800999876,8.164851583000184],[-2.617639118999875,8.15149322500015],[-2.621876586999917,8.135731913000171],[-2.619447793999967,8.123097026000138],[-2.606218627999879,8.094313253000124],[-2.599759073999905,8.07038706400013],[-2.600689249999959,8.052946269000174],[-2.610559447999947,8.040001322000165],[-2.631178344999852,8.029588521000136],[-2.690864624999961,8.009744772000147],[-2.70926143399987,7.996722310000108],[-2.754891723999947,7.944374084000174],[-2.771221476999898,7.930731507000174],[-2.772616739999875,7.93393544600015],[-2.777681030999958,7.939619853000181],[-2.784347289999857,7.944012349000091],[-2.790625976999877,7.943288880000181],[-2.793545694999864,7.935950826000094],[-2.797886515999949,7.861278381000203],[-2.801193806999947,7.850219625000192],[-2.809151976999914,7.841693014000086],[-2.831398680999939,7.828360494000065],[-2.840002806999877,7.820247294000154],[-2.840829630999905,7.815234681000106],[-2.83790991199993,7.80226389600017],[-2.838168294999889,7.796837870000104],[-2.84201818799994,7.790274963000115],[-2.852069254999946,7.778131002000123],[-2.855944986999929,7.771568095000133],[-2.928162800999928,7.617675679000115],[-2.941521158999876,7.577161357000108],[-2.990458739999951,7.27066843700014],[-2.989528564999915,7.258937887000144],[-2.983224039999897,7.244985250000155],[-2.976531941999894,7.236717021000118],[-2.97208776899987,7.228603821000193],[-2.972811237999878,7.214961243000104],[-2.981699584999888,7.195530905000126],[-3.027536579999946,7.138428447000194],[-3.032600870999914,7.12835154200016],[-3.040869099999952,7.078328755000172],[-3.045933390999949,7.071249085000147],[-3.095465249999904,7.05517771400018],[-3.096592622999907,7.054476971000113],[-3.097274113999901,7.054053375000137],[-3.109598754999922,7.046392721000188],[-3.224940551999879,6.84940216100017],[-3.241683715999926,6.81090321900011],[-3.243078979999893,6.77475555400018],[-3.238738158999922,6.764626974000137],[-3.226232462999917,6.748581441000169],[-3.21274491399987,6.722665711000133],[-3.210419474999924,6.71599945100013],[-3.230056518999959,6.66111908000012],[-3.23548254399995,6.654582011000143],[-3.253905191999934,6.64442759200017],[-3.261114053999904,6.633937277000129],[-3.262509317999985,6.617142436000165],[-3.183599405999928,6.263908183000183],[-3.171721890999947,6.249584688000155],[-3.168794107999929,6.246053976000141],[-3.139364379999932,6.219285584000161],[-3.118073689999931,6.163475037000111],[-3.087765462999897,5.996689352000174],[-3.073244384999953,5.960955099000087],[-3.034719604999907,5.890700989000095],[-3.02252396699987,5.854501648000151],[-3.019965982999878,5.818353984000126],[-3.029758666999953,5.704252421000135],[-2.964801390999895,5.709781799000126],[-2.974904133999928,5.647279155000149],[-2.969503946999879,5.621440938000134],[-2.945861978999858,5.608289287000147],[-2.926302449999923,5.610718078000119],[-2.893746296999893,5.630355123000143],[-2.877494059999975,5.636814677000103],[-2.806258097999915,5.618495382000134],[-2.793442341999934,5.608134257000117],[-2.785587524999897,5.595034282000156],[-2.781815144999882,5.578885397000164],[-2.77943802899992,5.526485494000127],[-2.761713012999905,5.454913636000171],[-2.734427855999911,5.391144918000151],[-2.730138712999945,5.373161520000167],[-2.732670857999921,5.355720724000136],[-2.742592732999924,5.343137512000111],[-2.755873575999914,5.340708720000151],[-2.789566608999877,5.346858216000129],[-2.79612951599995,5.284975688000202],[-2.793287312999894,5.271100566000143],[-2.779334675999905,5.251075948000107],[-2.774890502999909,5.239577942000082],[-2.775407267999924,5.231025492000143],[-2.779644734999891,5.210122376000172],[-2.77881791199988,5.201001486000095],[-2.775665648999904,5.197539164000147],[-2.762488158999929,5.186299540000107],[-2.757010456999922,5.179865825000149],[-2.766622272999939,5.161029765000137],[-2.780884968999914,5.150875346000163],[-2.803855142999879,5.147568054000175],[-2.843658006999902,5.149115302000112],[-2.846180792999917,5.176988023000163],[-2.879383917999916,5.181341864000146],[-2.920399542999945,5.176499742000175],[-2.946685350999871,5.177069403000147],[-2.938465949999852,5.156927802000111],[-2.943511522999898,5.136786200000159],[-2.957997199999852,5.121161200000174],[-2.977772589999859,5.114976304000109],[-2.993397589999859,5.119533596000153],[-3.046294725999899,5.144110419000171],[-3.062814907999893,5.156642971000082],[-3.082753058999856,5.15106842700007],[-3.122385219999899,5.149969794000114],[-3.139149542999917,5.142320054000094],[-3.146839972999942,5.161322333000086],[-3.162464972999913,5.184149481000105],[-3.180897589999859,5.203192450000102],[-3.196888800999943,5.211167710000054],[-3.205067511999857,5.218654690000122],[-3.194325324999852,5.234442450000159],[-3.17882239499994,5.24884674700013],[-3.172718878999945,5.252183335000069],[-3.167958136999857,5.266302802000098],[-3.165028449999908,5.295884507000139],[-3.159087693999908,5.307440497000171],[-3.145375128999888,5.3159854190001],[-3.134755011999914,5.318589585000097],[-3.127919074999909,5.324896552000125],[-3.125477667999888,5.344631252000155],[-3.127756313999953,5.359605210000097],[-3.134429490999906,5.366766669000143],[-3.146066860999923,5.368841864000075],[-3.162749803999958,5.368841864000075],[-3.167388475999871,5.366644598000079],[-3.173329230999911,5.361761786000102],[-3.180734829999892,5.356838283000144],[-3.189768032999893,5.354641018000152],[-3.198109503999973,5.355902411000059],[-3.211822068999908,5.361476955000157],[-3.220529751999891,5.362046617000132],[-3.230213995999947,5.358628648000121],[-3.2494197259999,5.345363674000097],[-3.26207434799997,5.340887762000136],[-3.252064581999889,5.318101304000109],[-3.246937628999973,5.297593492000146],[-3.254302537999877,5.283596096000096],[-3.282622850999899,5.280178127000084],[-3.278187628999944,5.27252838700015],[-3.278187628999944,5.265448309000177],[-3.282134568999908,5.258734442000146],[-3.289418097999942,5.252183335000069],[-3.280262824999852,5.246161200000144],[-3.275786912999905,5.244777736000074],[-3.282622850999899,5.244777736000074],[-3.273060675999915,5.241156317000119],[-3.262806769999884,5.238836981000147],[-3.252023891999897,5.237860419000171],[-3.240956183999856,5.238511460000126],[-3.240956183999856,5.231675523000192],[-3.250396287999876,5.227362372000101],[-3.265695766999926,5.228705145000092],[-3.275786912999905,5.225490627000141],[-3.284291144999912,5.219061591000127],[-3.291981574999852,5.210516669000099],[-3.298329230999883,5.200669664000173],[-3.303049282999893,5.190130927000125],[-3.313588019999941,5.197251695000161],[-3.320708787999905,5.193508205000143],[-3.318999803999901,5.184800523000149],[-3.303049282999893,5.177069403000147],[-3.308990037999905,5.163763739000117],[-3.303089972999885,5.155707098000093],[-3.290516730999883,5.151353257000096],[-3.275786912999905,5.149115302000112],[-3.312163865999878,5.119940497000158],[-3.378041144999912,5.123195705000114],[-3.631988084999875,5.177069403000147],[-3.678537563999896,5.1798363300001],[-3.710113084999875,5.186102606000148],[-3.718006964999858,5.188706773000149],[-3.721424933999856,5.193833726000165],[-3.719634568999879,5.203111070000119],[-3.717274542999917,5.210191148000177],[-3.718902147999927,5.217027085000097],[-3.728871222999941,5.225490627000141],[-3.721424933999856,5.238511460000126],[-3.731678839999887,5.230047919000171],[-3.739654100999928,5.21710846600017],[-3.745228644999941,5.202704169000114],[-3.748036261999914,5.190130927000125],[-3.755523240999878,5.190130927000125],[-3.767486131999902,5.197007554000123],[-3.786854620999919,5.198960679000081],[-3.827504035999908,5.197577216000099],[-3.8408910799999,5.201157945000162],[-3.885853644999912,5.225490627000141],[-3.955799933999913,5.234564520000134],[-3.987049933999884,5.243963934000163],[-4.001942511999857,5.26650625200014],[-3.983387824999852,5.260321356000175],[-3.9623103509999,5.262437242000175],[-3.943837042999888,5.271795966000127],[-3.932972785999908,5.286932684000121],[-3.91844641799986,5.268988348000079],[-3.911284959999932,5.261867580000113],[-3.902902798999946,5.258978583000086],[-3.896351691999883,5.261542059000092],[-3.893666144999912,5.267482815000122],[-3.894846157999921,5.274481512000108],[-3.8995255199999,5.280178127000084],[-3.8995255199999,5.286932684000121],[-3.885731574999852,5.283880927000126],[-3.851185675999915,5.269761460000097],[-3.844309048999918,5.26959870000013],[-3.83413652299987,5.272853908000087],[-3.811634894999883,5.264105536000102],[-3.775380011999885,5.244777736000074],[-3.777740037999934,5.251206773000177],[-3.779449022999927,5.261175848000078],[-3.78221594999988,5.26650625200014],[-3.766672329999892,5.266058661000144],[-3.739816860999895,5.262396552000098],[-3.728871222999941,5.26650625200014],[-3.715687628999888,5.282294012000179],[-3.721913214999859,5.291001695000176],[-3.734771287999877,5.298529364000132],[-3.741851365999935,5.310532945000147],[-3.753325975999871,5.343817450000145],[-3.755523240999878,5.35834381700009],[-3.758900519999884,5.366197007000082],[-3.767241990999963,5.371527411000145],[-3.778146938999924,5.372788804000052],[-3.788970506999931,5.368841864000075],[-3.795521613999909,5.373195705000157],[-3.804921027999854,5.37596263200011],[-3.813303188999896,5.374416408000073],[-3.816965298999946,5.36546458500014],[-3.814035610999923,5.359808661000145],[-3.792713995999861,5.344631252000155],[-3.767404751999919,5.310614325000131],[-3.752349412999905,5.29458242400014],[-3.735015428999901,5.286932684000121],[-3.743967251999947,5.273993231000119],[-3.759429490999878,5.27537669500019],[-3.776275193999879,5.279038804000137],[-3.788970506999931,5.272691148000121],[-3.796498175999886,5.272691148000121],[-3.808990037999905,5.287787177000126],[-3.818348761999914,5.291693427000111],[-3.828684048999946,5.291205145000134],[-3.844309048999918,5.293158270000077],[-3.854888475999871,5.296861070000119],[-3.866688605999854,5.303615627000156],[-3.875884568999907,5.31342194200009],[-3.87840735599994,5.326646226000122],[-3.883168097999913,5.322211005000056],[-3.88914954299986,5.317775783000087],[-3.8919978509999,5.313625393000136],[-3.896148240999934,5.321844794000143],[-3.898833787999905,5.329657294000128],[-3.900054490999906,5.3380394550001],[-3.8995255199999,5.348374742000188],[-3.906320766999954,5.348374742000188],[-3.907704230999854,5.334295966000155],[-3.912587042999916,5.322211005000056],[-3.920969204999892,5.316229559000135],[-3.932972785999908,5.320461330000157],[-3.940744594999899,5.314601955000114],[-3.951649542999888,5.312933661000101],[-3.96353105399993,5.314927476000136],[-3.974598761999886,5.320461330000157],[-3.997954881999874,5.316839911000102],[-4.009348110999923,5.313625393000136],[-3.999623175999886,5.304632880000128],[-3.983998175999886,5.300930080000086],[-3.967437303999929,5.301947333000143],[-3.954741990999878,5.307440497000171],[-3.940541144999941,5.293158270000077],[-3.953846808999884,5.282904364000146],[-3.971018032999893,5.273016669000143],[-3.989084438999924,5.269110419000143],[-4.00560462099989,5.27643463700015],[-4.018137173999889,5.283636786000088],[-4.040028449999937,5.293402411000116],[-4.060902472999885,5.299546617000189],[-4.070220506999931,5.296576239000088],[-4.078521287999904,5.287787177000126],[-4.096913214999859,5.292669989000089],[-4.12547766799986,5.307440497000171],[-4.138742641999897,5.303412177000111],[-4.149403449999909,5.296576239000088],[-4.160145636999914,5.293402411000116],[-4.173898891999954,5.299994208000101],[-4.179676886999914,5.294175523000134],[-4.186187303999901,5.294094143000152],[-4.193267381999874,5.298814195000161],[-4.20055091099988,5.307440497000171],[-4.227772589999887,5.289048570000133],[-4.241037563999896,5.283921617000118],[-4.255767381999902,5.286932684000121],[-4.253773566999968,5.291489976000164],[-4.250884568999935,5.302964585000112],[-4.248931443999879,5.307440497000171],[-4.274566209999932,5.312404690000122],[-4.285633917999888,5.310532945000147],[-4.297352667999888,5.299994208000101],[-4.304798956999946,5.30683014500012],[-4.31383216099988,5.311224677000098],[-4.321441209999903,5.310980536000144],[-4.327626105999882,5.295233466000098],[-4.34349524599989,5.282619533000116],[-4.35130774599989,5.272691148000121],[-4.358469204999921,5.280015367000118],[-4.370472785999937,5.2892113300001],[-4.383290167999888,5.297023830000085],[-4.392404751999891,5.299994208000101],[-4.402902798999946,5.294338283000101],[-4.413400844999927,5.285060940000149],[-4.423817511999914,5.281561591000155],[-4.433908657999979,5.293158270000077],[-4.430897589999887,5.29539622600015],[-4.429676886999857,5.295640367000189],[-4.42870032499988,5.29637278900013],[-4.426503058999884,5.299994208000101],[-4.46353105399993,5.298244533000101],[-4.477691209999931,5.291327216000099],[-4.481678839999915,5.272691148000121],[-4.472157355999911,5.2774925800001],[-4.463775193999879,5.276109117000118],[-4.457386847999942,5.26959870000013],[-4.453724738999881,5.258978583000086],[-4.472767706999889,5.263373114000074],[-4.543771938999953,5.26650625200014],[-4.547678188999953,5.276027736000144],[-4.552479620999918,5.284491278000175],[-4.563628709999961,5.299994208000101],[-4.569325324999852,5.290432033000116],[-4.569691535999937,5.282538153000132],[-4.565541144999912,5.276516018000123],[-4.557484503999888,5.272691148000121],[-4.557484503999888,5.26650625200014],[-4.575510219999898,5.263006903000147],[-4.589182094999927,5.256577867000146],[-4.612131313999924,5.238511460000126],[-4.630604620999861,5.250555731000134],[-4.651966925999915,5.249172268000152],[-4.670562303999901,5.240708726000122],[-4.680287238999938,5.231675523000192],[-4.687163865999878,5.231675523000192],[-4.693837042999917,5.234605210000126],[-4.702463344999927,5.239894924000112],[-4.710194464999944,5.246161200000144],[-4.714466925999942,5.252183335000069],[-4.702788865999935,5.257391669000157],[-4.693023240999906,5.256252346000124],[-4.682118292999917,5.252997137000165],[-4.667307094999956,5.252183335000069],[-4.669422980999883,5.261867580000113],[-4.672596808999856,5.268052476000179],[-4.678130662999962,5.271389065000122],[-4.687163865999878,5.272691148000121],[-4.687163865999878,5.280178127000084],[-4.676909959999932,5.284816799000112],[-4.67039954299986,5.29189687700007],[-4.667307094999956,5.30145905200007],[-4.667307094999956,5.313625393000136],[-4.673451300999943,5.313625393000136],[-4.685780402999882,5.29059479400017],[-4.702504035999907,5.27830638200011],[-4.723622199999937,5.273504950000131],[-4.749256964999887,5.272691148000121],[-4.722157355999883,5.252264716000141],[-4.742176886999943,5.234564520000134],[-4.779367641999926,5.218898830000157],[-4.803822394999884,5.204413153000118],[-4.810047980999911,5.189927476000165],[-4.808583136999857,5.180487372000144],[-4.799549933999856,5.174505927000141],[-4.783355272999898,5.17031484600011],[-4.765451626999948,5.16933828300013],[-4.747670050999943,5.172349351000136],[-4.737456834999931,5.179348049000112],[-4.742421027999882,5.190130927000125],[-4.742421027999882,5.197577216000099],[-4.717152472999913,5.204413153000118],[-4.704741990999906,5.21133047100011],[-4.700306769999911,5.206732489000089],[-4.695383266999954,5.200181382000096],[-4.687163865999878,5.197577216000099],[-4.674794074999936,5.200669664000173],[-4.65453040299991,5.209418036000059],[-4.639393683999913,5.211167710000054],[-4.608306443999908,5.211167710000054],[-4.598866339999887,5.209173895000119],[-4.592518683999884,5.204779364000132],[-4.58820553299995,5.200140692000105],[-4.584787563999952,5.197577216000099],[-4.569935675999886,5.195502020000077],[-4.559559699999909,5.196966864000132],[-4.536366339999859,5.204413153000118],[-4.546701626999975,5.203192450000102],[-4.558827277999881,5.204169012000165],[-4.568348761999857,5.208726304000122],[-4.571034308999856,5.218003648000163],[-4.56493079299986,5.223211981000162],[-4.530140753999916,5.231675523000192],[-4.530140753999916,5.218003648000163],[-4.522694464999915,5.218003648000163],[-4.500599738999938,5.228705145000092],[-4.441639777999882,5.225043036000145],[-4.412831183999855,5.238511460000126],[-4.408070441999939,5.223618882000082],[-4.400298631999959,5.229681708000072],[-4.392079230999855,5.243557033000158],[-4.385568813999953,5.252183335000069],[-4.367258266999896,5.251695054000081],[-4.351673956999917,5.244370835000068],[-4.337757941999911,5.240871486000088],[-4.32469641799986,5.252183335000069],[-4.305816209999904,5.244574286000115],[-4.286284959999931,5.247870184000149],[-4.266265428999873,5.255031643000109],[-4.225209113999881,5.262355861000103],[-4.199574347999913,5.276841539000145],[-4.183827277999853,5.280178127000084],[-4.060454881999902,5.283351955000143],[-4.029204881999931,5.272691148000121],[-4.038563605999883,5.268377997000115],[-4.048573370999861,5.266180731000119],[-4.059193488999881,5.265692450000131],[-4.070220506999931,5.26650625200014],[-3.995757615999878,5.231675523000192],[-4.308135545999875,5.206203517500143],[-4.6205134759999,5.180731512000094],[-4.784657355999911,5.143947658000116],[-4.875355597999913,5.136216539000188],[-4.892648891999897,5.128648179000052],[-4.903472459999904,5.134344794000128],[-4.915191209999904,5.136379299000154],[-4.969105597999913,5.137396552000126],[-4.982004360999922,5.136135158000116],[-4.982004360999922,5.142320054000094],[-4.978749152999882,5.142564195000133],[-4.972157355999911,5.14203522300015],[-4.968983527999853,5.142320054000094],[-4.968983527999853,5.149115302000112],[-4.997059699999852,5.148749091000098],[-5.003773566999882,5.160589911000059],[-5.003285285999908,5.17877838700015],[-5.00991777299987,5.197577216000099],[-4.997059699999852,5.212795315000079],[-5.009755011999914,5.21605052300012],[-5.06427975199989,5.209214585000112],[-5.082142706999946,5.203599351000193],[-5.098703579999921,5.19476959800015],[-5.11229407499988,5.183294989000102],[-5.129017706999917,5.197699286000073],[-5.157866990999935,5.212225653000104],[-5.191395636999886,5.219224351000179],[-5.221587693999879,5.211167710000054],[-5.225453253999888,5.215480861000145],[-5.232329881999902,5.220770575000131],[-5.234038865999906,5.22304922100011],[-5.235829230999883,5.225490627000141],[-5.242054816999939,5.225490627000141],[-5.253041144999912,5.214097398000163],[-5.27086341099988,5.219387111000144],[-5.289906378999888,5.227728583000115],[-5.304798956999917,5.225490627000141],[-5.310943162999905,5.225490627000141],[-5.321522589999859,5.230210679000137],[-5.327259894999941,5.226060289000102],[-5.328195766999926,5.216457424000126],[-5.32396399599989,5.204413153000118],[-5.327056443999879,5.205511786000073],[-5.338286912999877,5.211167710000054],[-5.33775794199991,5.200669664000173],[-5.338286912999877,5.197577216000099],[-5.330067511999886,5.19989655200007],[-5.328521287999933,5.196844794000157],[-5.324452277999882,5.190781968000167],[-5.32396399599989,5.190130927000125],[-5.316965298999917,5.194159247000087],[-5.31151282499988,5.195786851000108],[-5.29735266799986,5.197577216000099],[-5.29735266799986,5.190130927000125],[-5.305002407999893,5.181626695000176],[-5.32843990799995,5.170070705000157],[-5.338286912999877,5.163478908000087],[-5.338286912999877,5.183294989000102],[-5.35252844999988,5.141831773000192],[-5.359364386999914,5.128648179000052],[-5.39289303299995,5.177069403000147],[-5.400380011999913,5.177069403000147],[-5.400786912999905,5.173976955000157],[-5.400380011999913,5.163478908000087],[-5.413929816999882,5.17031484600011],[-5.398996548999918,5.141994533000158],[-5.35789954299986,5.123521226000136],[-5.30882727799991,5.118150132000082],[-5.269398566999911,5.128648179000052],[-5.285471157999893,5.140773830000143],[-5.302357550999886,5.140448309000121],[-5.320139126999891,5.137640692000076],[-5.338286912999877,5.142320054000094],[-5.338286912999877,5.149115302000112],[-5.328114386999943,5.148504950000145],[-5.319935675999915,5.149807033000144],[-5.312570766999925,5.152573960000112],[-5.304798956999917,5.156642971000082],[-5.299468553999872,5.160956122000171],[-5.28685462099989,5.17405833500014],[-5.283070441999939,5.177069403000147],[-5.268137173999918,5.173732815000121],[-5.251616990999935,5.16543203300013],[-5.235463019999884,5.161322333000086],[-5.221587693999879,5.17031484600011],[-5.209339972999913,5.162827867000132],[-5.197132941999939,5.160142320000162],[-5.1869197259999,5.164252020000106],[-5.180653449999851,5.177069403000147],[-5.198963995999918,5.174383856000162],[-5.207020636999857,5.182440497000101],[-5.213775193999908,5.193019924000153],[-5.228423631999902,5.197577216000099],[-5.228423631999902,5.204413153000118],[-5.214751756999874,5.197577216000099],[-5.18138587099989,5.202337958000101],[-5.120757615999906,5.166978257000082],[-5.094960089999887,5.173732815000121],[-5.080922003999945,5.184759833000072],[-5.06773841099988,5.18695709800015],[-5.033192511999886,5.183294989000102],[-5.029123501999918,5.175726630000056],[-5.023426886999857,5.158514716000141],[-5.014881964999915,5.140082098000107],[-5.002430792999917,5.128648179000052],[-5.255360480999883,5.121039130000113],[-5.294300910999965,5.106024481000176],[-5.495676235999952,5.095282294000171],[-5.5248103509999,5.09979889500012],[-5.550526495999861,5.114976304000109],[-5.578439907999893,5.094549872000143],[-5.557687954999892,5.088446356000148],[-5.550526495999861,5.08771393400012],[-5.630238410999908,5.063218492000189],[-5.851307745999861,5.029974677000084],[-5.858672654999849,5.027696031000118],[-5.971424933999856,4.99262116100013],[-5.988433397999927,4.983872789000145],[-5.995594855999855,4.974758205000157],[-6.007435675999915,4.975246486000145],[-6.059722459999932,4.955796617000146],[-6.138579881999873,4.915228583000143],[-6.412220831999946,4.823879299000083],[-6.420765753999973,4.817124742000146],[-6.426625128999916,4.801988023000149],[-6.441517706999946,4.79393138200011],[-6.547189907999922,4.768011786000116],[-6.567860480999911,4.765570380000085],[-6.583851691999911,4.76040273600016],[-6.610747850999899,4.73476797100011],[-6.626820441999882,4.724595445000147],[-6.7533259759999,4.687323309000178],[-6.853667772999898,4.680609442000133],[-6.87950598899991,4.667914130000085],[-6.903146938999924,4.662014065000136],[-6.914173956999889,4.655707098000107],[-6.942128058999913,4.621568101000193],[-6.996001756999931,4.576483466000127],[-7.058216925999942,4.539007880000113],[-7.099191860999951,4.526516018000095],[-7.173451300999886,4.518784898000177],[-7.232818162999933,4.493312893000081],[-7.245228644999883,4.484930731000119],[-7.255238410999937,4.465521552000112],[-7.266021287999962,4.463609117000146],[-7.278472459999875,4.463771877000113],[-7.288156704999921,4.460516669000171],[-7.306019660999908,4.445461330000157],[-7.35985266799986,4.416083075000145],[-7.438710089999886,4.350978908000116],[-7.456776495999919,4.344061591000127],[-7.480865037999933,4.346136786000145],[-7.524322068999878,4.354681708000072],[-7.540638800999915,4.352850653000175],[-7.540666124138936,4.352844581561185],[-7.573770710999894,4.375392965000159],[-7.57919673699996,4.387149353000154],[-7.577853149999897,4.397277934000115],[-7.567414509999963,4.415933126000183],[-7.564313924999908,4.425829163000174],[-7.565709187999885,4.435208435000121],[-7.572840534999926,4.455388082000113],[-7.570928506999905,4.480709534000184],[-7.572737182999901,4.491122335000114],[-7.575424356999918,4.500346578000119],[-7.576871297999929,4.509338277000154],[-7.572478800999932,4.72335622200012],[-7.576871297999929,4.775291036000127],[-7.579558471999861,4.784282735000161],[-7.585552937999893,4.791543274000134],[-7.59340775499993,4.797434387000138],[-7.601004190999986,4.804643250000197],[-7.606016804999854,4.816192932000135],[-7.605996506999957,4.817363425000167],[-7.605861775999897,4.825132955000157],[-7.600229044999877,4.845803528000175],[-7.598833780999882,4.857094828000143],[-7.605965127999923,4.887997335000151],[-7.605500039999895,4.897428284000113],[-7.574959269999908,4.921561178000161],[-7.561781778999914,4.920165914000094],[-7.553461873999879,4.914248963000176],[-7.54953446399989,4.913887228000178],[-7.549586140999907,4.929054261000189],[-7.555322224999884,4.948432922000165],[-7.564623982999905,4.961584575000145],[-7.571600300999904,4.975382182000189],[-7.570205037999926,4.996879578000133],[-7.570360066999854,4.996879578000133],[-7.578163207999892,5.054731344000146],[-7.575786091999929,5.072068786000159],[-7.56322871899991,5.090155538000175],[-7.546847289999959,5.097700298000119],[-7.529923258999871,5.097390238000145],[-7.515841430999927,5.091809184000126],[-7.488918009999935,5.14066925100019],[-7.483026895999927,5.158239238000164],[-7.482251749999903,5.175059916000137],[-7.490468302999942,5.222188822000149],[-7.479926309999883,5.255158387000108],[-7.475688842999944,5.264227600000169],[-7.468247436999917,5.273451844000178],[-7.442409219999887,5.287378642000164],[-7.439928751999929,5.290169169000123],[-7.428508259999916,5.288153789000162],[-7.430110229999854,5.284252217000115],[-7.435174519999918,5.279291280000166],[-7.434089314999937,5.274071960000143],[-7.430885375999963,5.267534892000171],[-7.430833699999936,5.259990133000116],[-7.428508259999916,5.256140239000075],[-7.418793090999885,5.260455221000143],[-7.413780476999903,5.266708069000145],[-7.410111449999903,5.283167013000124],[-7.407682657999942,5.289859111000141],[-7.395590372999976,5.306783142000127],[-7.389750935999898,5.317144267000145],[-7.3888207599999,5.328383891000101],[-7.391456257999948,5.347685038000151],[-7.396933959999927,5.366443583000148],[-7.404375366999943,5.36799387700016],[-7.414865681999912,5.365978495000205],[-7.429696818999928,5.374298401000175],[-7.439101928999889,5.38781178800015],[-7.446026570999975,5.404916687000195],[-7.449953978999928,5.422770895000141],[-7.450212361999916,5.438713074000177],[-7.436208048999902,5.431323344000162],[-7.43171219899989,5.44191701300015],[-7.43238399299986,5.479563294000172],[-7.425149291999901,5.494161885000139],[-7.413470417999917,5.503489482000177],[-7.408147745999885,5.511783550000132],[-7.409851859999918,5.513416970000108],[-7.419981648999907,5.523126526000112],[-7.413470417999917,5.52281646800013],[-7.393626668999929,5.523979187000151],[-7.407114216999901,5.541394145000169],[-7.411920125999898,5.560359396000138],[-7.405098835999866,5.572400004000201],[-7.384118204999936,5.568963522000161],[-7.396675577999871,5.58508656800015],[-7.417962620999901,5.627756685000179],[-7.431040405999909,5.653971253000165],[-7.44948889199992,5.732364400000165],[-7.448558715999866,5.769054668000138],[-7.442047484999904,5.811274312000194],[-7.446543335999905,5.845949198000127],[-7.478582722999931,5.859875997000117],[-7.481683308999947,5.830213725000149],[-7.486644246999901,5.813806458000101],[-7.494395710999925,5.80618418400013],[-7.503904174999889,5.812101136000138],[-7.50881343599994,5.826182963000149],[-7.515583048999873,5.839231263000101],[-7.531085978999897,5.84202179000016],[-7.527778686999881,5.858842468000134],[-7.535194253999889,5.855845235000118],[-7.547570759999871,5.845432434000187],[-7.559146280999897,5.839851379000081],[-7.566277627999852,5.843727112000124],[-7.579506794999928,5.860341085000144],[-7.587206583999943,5.866774801000176],[-7.579093383999918,5.87718760200012],[-7.584157673999897,5.883698832000093],[-7.605758422999883,5.893129781000141],[-7.608497273999915,5.89369822200011],[-7.629116169999919,5.904937846000152],[-7.630614786999928,5.908606873000153],[-7.648339802999942,5.911294047000183],[-7.663119262999941,5.923102112000095],[-7.674022989999912,5.935737000000131],[-7.680482543999886,5.940930481000137],[-7.691541299999898,5.927727153000149],[-7.703220173999853,5.907883403000156],[-7.717172810999954,5.900752055000126],[-7.734949503999871,5.925634258000173],[-7.747145140999891,5.937597352000125],[-7.786625935999922,5.958164572000115],[-7.799648396999942,5.974468486000148],[-7.800681925999924,5.981729024000117],[-7.799958454999853,6.010151062000148],[-7.797736368999921,6.014750265000188],[-7.788589640999959,6.019788717000153],[-7.786470905999891,6.025111390000106],[-7.788744668999897,6.031493429000136],[-7.793860635999891,6.034077250000138],[-7.799234985999931,6.035679220000176],[-7.802438923999914,6.039244893000144],[-7.805694538999887,6.062034200000141],[-7.80967362499996,6.071206767000135],[-7.819388793999905,6.080095113000141],[-7.828380493999872,6.080715231000112],[-7.840886189999963,6.077356262000194],[-7.850498005999953,6.072240296000118],[-7.850911416999878,6.067563578000146],[-7.861815144999952,6.081490377000121],[-7.864502318999883,6.101695862000113],[-7.862021850999895,6.124381815000092],[-7.857370971999927,6.145388286000184],[-7.844141804999936,6.183964742000171],[-7.846622273999913,6.197478130000135],[-7.86212520299992,6.21639170300017],[-7.906566934999915,6.251996765000157],[-7.910029255999859,6.256776835000153],[-7.912664753999876,6.268429871000123],[-7.914370076999915,6.271737163000125],[-7.920545409999903,6.273804219000168],[-7.925222126999869,6.272512309000135],[-7.929511270999853,6.270755310000155],[-7.934885620999893,6.271427104000139],[-7.999377807999934,6.286697489000176],[-8.01570756099994,6.297782084000104],[-8.033019164999871,6.301761169000173],[-8.060097615999922,6.301141053000108],[-8.106606403999962,6.294681499000148],[-8.118285277999917,6.289901428000149],[-8.140609497999888,6.277576599000112],[-8.154355427999917,6.274217631000099],[-8.170581827999854,6.27401092600013],[-8.179056762999949,6.276853130000106],[-8.185723022999866,6.281839905000155],[-8.196575073999895,6.288144430000088],[-8.208486490999945,6.292536927000171],[-8.285975301999883,6.310055237000128],[-8.295070352999858,6.31336252900013],[-8.296568969999953,6.317496643000155],[-8.296568969999953,6.324395447000128],[-8.297705850999876,6.33258616100015],[-8.302718465999929,6.340647685000135],[-8.310004841999927,6.344626770000119],[-8.314190632999953,6.341526184000172],[-8.317497924999941,6.336978659000138],[-8.32235550999988,6.336461894000195],[-8.332949177999863,6.345970357000097],[-8.342612670999898,6.356951599000169],[-8.352947956999884,6.361059876000184],[-8.365970417999932,6.350078634000113],[-8.376564086999906,6.354729513000166],[-8.38881140199993,6.355091247000161],[-8.40105871599988,6.350440369000111],[-8.411807413999895,6.340027568000082],[-8.423692992999918,6.351990662000119],[-8.420153157999948,6.35808848100008],[-8.41098059099994,6.363178610000161],[-8.405967976999902,6.372247824000127],[-8.408241739999909,6.379921774000109],[-8.417233439999961,6.398189392000177],[-8.419042114999854,6.407646179000138],[-8.413874470999929,6.424182638000132],[-8.406484741999947,6.430538839000164],[-8.405089477999866,6.436326599000139],[-8.418266967999926,6.451209412000182],[-8.449634561999858,6.467926737000127],[-8.461210083999902,6.482887065000099],[-8.46751460799993,6.487072856000125],[-8.472372192999927,6.478649597000142],[-8.47691971899988,6.460149435000119],[-8.484774535999918,6.441571757000162],[-8.497228556999884,6.431365662000189],[-8.515625365999881,6.437592672000093],[-8.545339314999863,6.477202657000149],[-8.556501424999908,6.487021179000108],[-8.56807694499986,6.490405985000137],[-8.59210648699988,6.48968251600013],[-8.601847492999923,6.491749572000103],[-8.618719848999916,6.492834778000187],[-8.594121866999927,6.523892314000136],[-8.589367634999917,6.526062724000127],[-8.577327025999864,6.52802642900015],[-8.572727823999912,6.530842794000121],[-8.570609090999938,6.535131938000177],[-8.566113240999897,6.549058737000165],[-8.567198445999907,6.5506090290001],[-8.566113240999897,6.550919088000171],[-8.549473429999892,6.560143331000176],[-8.547147989999871,6.560039978000148],[-8.53355708899997,6.576343892000182],[-8.461313435999925,6.633420512000099],[-8.441645673999943,6.655310175000167],[-8.351759399999878,6.755351054000116],[-8.337496703999904,6.777261862000074],[-8.324991007999898,6.806252340000142],[-8.316619425999932,6.836276347000194],[-8.314965779999879,6.850280660000109],[-8.315715087999877,6.863819885000098],[-8.320598510999899,6.869659322000174],[-8.328763386999922,6.875085347000151],[-8.333672647999947,6.88257843000018],[-8.320908569999887,6.910173645000086],[-8.319978393999918,6.925831604000138],[-8.321218627999883,6.942264710000103],[-8.319978393999918,6.959989726000117],[-8.314552367999852,6.968568013000151],[-8.294140177999907,6.984381002000148],[-8.286647094999893,6.993786112000109],[-8.28411494999989,7.017867330000143],[-8.301219848999919,7.113210348000152],[-8.302615112999915,7.137601624000169],[-8.305353962999959,7.146903382000104],[-8.311503458999937,7.157290344000131],[-8.32623124199992,7.172069804000145],[-8.32974523999988,7.178322652000148],[-8.330572061999902,7.184730530000181],[-8.328453328999927,7.197391256000131],[-8.32897009299998,7.204005839000118],[-8.33300085499988,7.211860657000159],[-8.344989786999918,7.2267951460002],[-8.349692341999912,7.234701640000153],[-8.357547159999854,7.265707500000175],[-8.364006713999885,7.278884989000161],[-8.381059936999916,7.303017884000127],[-8.387674519999933,7.314955139000161],[-8.393048868999898,7.334333802000131],[-8.405141154999882,7.431278788000085],[-8.425605021999928,7.501920471000162],[-8.443640095999939,7.537112122000124],[-8.485446329999888,7.55798940000011],[-8.440022745999954,7.599898987000188],[-8.414804646999896,7.612921448000122],[-8.390878458999907,7.585791321000158],[-8.372274942999951,7.587289937000065],[-8.336773233999907,7.597831930000126],[-8.303235229999899,7.589305318000114],[-8.26535640499989,7.560056458000161],[-8.228976195999905,7.54429514600018],[-8.200244099999907,7.576334534000181],[-8.19977901199988,7.583362529000098],[-8.203034626999852,7.599588928000102],[-8.202621215999955,7.60718536400016],[-8.197866983999859,7.618554179000157],[-8.177868204999925,7.64387563000014],[-8.173424030999909,7.647803040000112],[-8.162106893999947,7.654159240000126],[-8.158024454999916,7.658241679000142],[-8.157404337999964,7.662375794000154],[-8.160194864999909,7.67219431600013],[-8.159523070999851,7.676328430000154],[-8.127380330999898,7.713018697000122],[-8.122626098999916,7.72748809800015],[-8.119008748999931,7.760819397000205],[-8.115133015999959,7.776890768000086],[-8.110482136999906,7.782420146000092],[-8.103919229999917,7.786347555000148],[-8.098260660999896,7.791876933000154],[-8.096322793999946,7.801902161000086],[-8.10143876099994,7.812805888000142],[-8.123762980999913,7.832029521000153],[-8.131204386999855,7.842416484000182],[-8.128878946999919,7.88256907200018],[-8.07911454299989,7.95765492800018],[-8.0688826089999,7.996567281000168],[-8.067228963999867,8.020751852000132],[-8.069089314999871,8.029278463000153],[-8.05384476699993,8.028761699000198],[-8.011986857999942,8.035557150000159],[-8.00216833499988,8.032430725000111],[-7.99250484199996,8.024162496000159],[-7.980360879999863,8.016566061000104],[-7.962635863999936,8.015170797000124],[-7.965637541999881,8.026927369000134],[-7.968216918999873,8.037029928000152],[-7.98041255699988,8.058992411000133],[-7.997052368999903,8.077337545000205],[-8.01570756099994,8.088473816000132],[-8.02128861499989,8.102658997000091],[-8.02170202699989,8.117722677000174],[-8.01570756099994,8.14816009500015],[-8.008266153999926,8.16043324800009],[-8.002426716999935,8.174308370000162],[-8.003305215999887,8.184049378000111],[-8.01570756099994,8.183894348000166],[-8.07596228099993,8.163378805000178],[-8.085522419999933,8.162035218000128],[-8.182932494999903,8.191671652000167],[-8.26597652199996,8.245983582000136],[-8.264581257999879,8.25649973600018],[-8.248251504999928,8.273578797000127],[-8.245305949999931,8.285076803000152],[-8.247631388999878,8.303835347000145],[-8.247631388999878,8.322568055000145],[-8.235280720999924,8.379515483000205],[-8.236882690999948,8.400082703000109],[-8.242102009999883,8.412769267000144],[-8.24907832899987,8.423776347000143],[-8.254297647999891,8.434499206000154],[-8.254401000999906,8.446513977000123],[-8.2488716229999,8.453567811000141],[-8.200295776999923,8.491834208000128],[-8.186343139999932,8.493694560000137],[-8.150531371999904,8.486485698000179],[-8.130119180999941,8.488604432000159],[-8.09689123499993,8.501704407000204],[-8.076634073999912,8.50325470000014],[-8.068107462999905,8.500464173000168],[-8.057203735999849,8.490852356000161],[-8.05066666699986,8.487674256000105],[-8.042475952999922,8.487157492000165],[-8.02490596499996,8.488604432000159],[-8.01570756099994,8.487209168000078],[-7.985890258999859,8.494934795000177],[-7.970542357999903,8.496950175000123],[-7.956279662999918,8.494366354000121],[-7.943877318999853,8.484625346000172],[-7.93695267699988,8.471422018000098],[-7.931578328999905,8.457030131000167],[-7.923826862999903,8.443775126000077],[-7.912871459999905,8.43418914800017],[-7.898582926999921,8.426282654000119],[-7.882330687999911,8.42145090800011],[-7.865587524999881,8.420882467000155],[-7.84858597799996,8.428633931000164],[-7.846777302999953,8.44268992100018],[-7.84941280199996,8.459200541000156],[-7.845743773999885,8.474315898000086],[-7.823832966999929,8.47785573400013],[-7.802438923999914,8.449201151000153],[-7.771019652999883,8.386517639000203],[-7.748333699999904,8.372306621000149],[-7.720738484999913,8.368534241000134],[-7.662447469999961,8.374864604000152],[-7.683221394999918,8.417316793000097],[-7.689577596999953,8.438659160000086],[-7.686477009999919,8.462585348000173],[-7.679293986999937,8.487725932000117],[-7.6792423099999,8.505089213000133],[-7.691696329999928,8.546662903000126],[-7.693970092999848,8.567772725000166],[-7.691592976999885,8.606142477000091],[-7.696812296999923,8.624849346000174],[-7.703943644999867,8.633479309000123],[-7.731823079999913,8.652082825000164],[-7.741202351999959,8.662909038000123],[-7.765128539999893,8.70608469700015],[-7.772053181999865,8.714533793000143],[-7.790915079999877,8.73094106100011],[-7.795695149999887,8.736470439000101],[-7.803679157999852,8.749053650000121],[-7.810190388999928,8.753368633000193],[-7.816055663999919,8.75352366100013],[-7.826571817999877,8.748226827000096],[-7.831015990999958,8.74765838600014],[-7.890960652999865,8.765693462000144],[-7.913129841999904,8.76822560600013],[-7.958915160999937,8.781997375000174],[-7.968940388999953,8.81284820500015],[-7.950698608999885,8.89953542100011],[-7.946461140999929,8.948602193000141],[-7.941603555999933,8.972218323000149],[-7.931888386999986,8.99645457000014],[-7.93183671099996,8.99645457000014],[-7.93183671099996,8.996557922000164],[-7.931785033999859,8.996557922000164],[-7.916747192999877,9.012345073000162],[-7.827036905999905,9.057820333000123],[-7.807813273999954,9.060042420000116],[-7.788072875999915,9.060042420000116],[-7.764198364999913,9.063608093000184],[-7.748202714999906,9.075403105000177],[-7.746783406999896,9.076449687000178],[-7.759392455999915,9.091668396000117],[-7.801043660999937,9.114793599000095],[-7.823367878999903,9.131976013000155],[-7.834219929999932,9.142983093000153],[-7.847914184999865,9.168562928000199],[-7.8562340899999,9.170216573000147],[-7.866310993999974,9.16603078200012],[-7.878713337999926,9.163912049000146],[-7.929562947999954,9.183884990000166],[-7.930648152999935,9.220291036000162],[-7.894939737999949,9.307133281000148],[-7.891735798999889,9.330232645000137],[-7.86538081799992,9.409917705000083],[-7.870600137999929,9.418599345000146],[-7.911889607999854,9.418651021000157],[-7.933025268999898,9.414258525000063],[-7.971059122999918,9.392967835000178],[-7.991574665999906,9.385319723000109],[-8.009868122999876,9.383614400000141],[-8.03229569499996,9.384647929000124],[-8.054051472999959,9.38909210200012],[-8.070432901999936,9.397541199000116],[-8.08717606599987,9.415395406000172],[-8.145363728999882,9.497147522000176],[-8.152856810999936,9.513115540000127],[-8.157611042999918,9.530866395000144],[-8.161021687999948,9.553604024000121],[-8.161590128999904,9.575644023000109],[-8.160292859999856,9.584813799000145],[-8.123504597999952,9.844852397000153],[-8.128103799999906,9.866246440000168],[-8.146862344999903,9.864696146000142],[-8.15099645999993,9.86614308700014],[-8.155078898999932,9.875238139000203],[-8.152133341999928,9.878829651000089],[-8.14732743299993,9.880121562000141],[-8.145673787999952,9.88249867800009],[-8.147224079999887,9.88792470300015],[-8.149549519999937,9.905339661000184],[-8.15321854699991,9.910920716000106],[-8.158954629999895,9.9123676560001],[-8.16453568499989,9.912677714000097],[-8.167894652999905,9.914693095000132],[-8.17151200299989,9.922832133000142],[-8.174715942999882,9.933038229000204],[-8.173837442999911,9.941874899000126],[-8.152391722999909,9.94998809800012],[-8.14009273299996,9.959703268000153],[-8.136268676999919,9.969444275000113],[-8.148877726999928,9.973888449000114],[-8.15848954299986,9.984921367000112],[-8.14774084499993,10.01003611300014],[-8.127535359999854,10.037114563000102],[-8.108776814999942,10.054193624000135],[-8.057875529999905,10.07308136000016],[-8.034879516999865,10.085793763000126],[-8.01570756099994,10.110365906000196],[-8.012348591999853,10.12486114500014],[-8.007232625999961,10.138322856000102],[-7.999842895999932,10.15069936100015],[-7.989662638999988,10.161990662000122],[-7.970904093999876,10.155066020000149],[-7.94987178599996,10.155427755000147],[-7.929046182999911,10.160957133000139],[-7.910959431999912,10.169406230000135],[-7.892252563999903,10.184831644000127],[-7.882847452999953,10.190826111000163],[-7.857215942999885,10.194417623000135],[-7.847423257999934,10.19793162100018],[-7.838664103999861,10.203719381000155],[-7.829000609999923,10.211651713000123],[-7.805074421999933,10.241830749000114],[-7.80125036699988,10.24945302400009],[-7.797736368999921,10.260279236000128],[-7.79122513799996,10.265782776000123],[-7.783835408999948,10.27043365500019],[-7.778254353999927,10.278340149000144],[-7.776342325999934,10.292732036000146],[-7.764405069999982,10.312911682000133],[-7.777582559999871,10.32986155200014],[-7.757428750999877,10.334047343000165],[-7.735337076999883,10.347095642000127],[-7.723994099999913,10.363606262000104],[-7.736034708999881,10.378282369000189],[-7.726784626999858,10.38288157100014],[-7.722288777999922,10.38448354100018],[-7.722288777999922,10.39133066900014],[-7.708646199999919,10.402466939000163],[-7.699809529999925,10.40453399700013],[-7.687923949999912,10.403087057000135],[-7.679035603999893,10.40592926100011],[-7.673971313999915,10.416393738000153],[-7.670043903999925,10.428770244000118],[-7.664411172999905,10.437141825000182],[-7.643688924999878,10.440474955000184],[-7.607773803999918,10.41871917700017],[-7.584416056999885,10.416522929000093],[-7.574339151999936,10.417530620000148],[-7.556381591999866,10.417272237000175],[-7.547415730999915,10.420502015000167],[-7.539612588999915,10.427633362000108],[-7.515841430999927,10.457812399000188],[-7.501475382999928,10.458639221000126],[-7.489848184999886,10.456107076000137],[-7.480236368999954,10.450293477000159],[-7.471606404999931,10.441095072000152],[-7.466180379999855,10.429493713000113],[-7.465353555999911,10.417995708000177],[-7.466180379999855,10.407479554000131],[-7.465456908999954,10.398617045000123],[-7.461477823999871,10.388643493000117],[-7.44468298399991,10.360815735000143],[-7.443287719999915,10.34996368500019],[-7.445768187999903,10.340377706000183],[-7.444424600999922,10.334202372000119],[-7.431402140999892,10.333737284000094],[-7.422203735999916,10.336088562000128],[-7.395021931999906,10.346217143000088],[-7.372335977999853,10.344770203000095],[-7.366341511999934,10.329448141000126],[-7.372697713999855,10.28859792100013],[-7.371819213999913,10.264516704000172],[-7.363395954999929,10.252191875000136],[-7.346962850999943,10.247902731000167],[-7.28402095499996,10.246559143000113],[-7.204749308999907,10.234492696000132],[-7.106357380999895,10.207259216000125],[-7.089459187999893,10.197569886000094],[-7.073129434999942,10.178527120000126],[-7.058246622999916,10.15597035800009],[-7.040521605999885,10.140054017000166],[-7.015768594999884,10.14088083900019],[-6.992410847999935,10.14909739200013],[-6.971636922999892,10.164419454000097],[-6.959389607999867,10.185503439000115],[-6.961611693999942,10.211031596000154],[-6.97117183499995,10.222064514000152],[-6.984297648999927,10.230384420000107],[-6.994891316999912,10.239401958000158],[-6.9971134029999,10.252760316000177],[-6.973135537999894,10.332290344000098],[-6.961249959999861,10.344873556000124],[-6.938719034999848,10.348335877000153],[-6.882029987999942,10.34125620600014],[-6.862754679999909,10.34384002700014],[-6.803895222999898,10.370866801000174],[-6.782087768999872,10.373037212000071],[-6.760228637999944,10.366112570000098],[-6.722556518999909,10.344046733000182],[-6.700335652999883,10.34166961700015],[-6.677391316999915,10.349033509000149],[-6.668916381999934,10.361022441000102],[-6.668270003999907,10.36583997700009],[-6.663955444999885,10.397996928000154],[-6.659614623999914,10.405360820000155],[-6.653051716999926,10.413060608000137],[-6.647935749999931,10.421871440000132],[-6.647780721999879,10.43269765300009],[-6.653981892999866,10.440035706000174],[-6.664627237999865,10.4445573940001],[-6.675634317999936,10.447864686000102],[-6.683075723999877,10.45168874100014],[-6.695788126999929,10.471196594000132],[-6.69754512499992,10.488301494000096],[-6.687778279999861,10.520470072000123],[-6.682817342999897,10.565971171000099],[-6.685607869999956,10.574006857000171],[-6.689225219999855,10.580931498000155],[-6.691085571999849,10.589432271000163],[-6.688966836999981,10.607854919000161],[-6.684212605999988,10.626561788000146],[-6.681938842999955,10.627388611000171],[-6.667882853999856,10.650901387000161],[-6.669174763999905,10.65415700300015],[-6.647108927999909,10.661340027000108],[-6.633983113999932,10.653020122000141],[-6.6136226,10.618474426000148],[-6.59858475799993,10.60490936300016],[-6.578069213999953,10.59113759400013],[-6.537554890999928,10.569691874000098],[-6.521380167999951,10.56421417200012],[-6.466964883999964,10.55354299000011],[-6.445984252999948,10.552251078000154],[-6.421489623999889,10.55659189900014],[-6.402782755999908,10.569123434000147],[-6.39921708199995,10.592481181000096],[-6.406658487999977,10.601860453000143],[-6.419060831999928,10.607699891000124],[-6.430688028999896,10.614960429000107],[-6.435855671999917,10.628706360000137],[-6.433995320999912,10.667928772000096],[-6.427019002999913,10.686093038000124],[-6.409810750999924,10.694387106000178],[-6.388054971999907,10.6955239870001],[-6.367539428999947,10.692268372000115],[-6.341701211999919,10.69144154900009],[-6.322219197999914,10.70048492500014],[-6.303564005999874,10.71317148900009],[-6.279999551999964,10.723274231000133],[-6.255970011999921,10.726478170000107],[-6.245841430999889,10.720742086000143],[-6.244446166999893,10.70686696400017]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cameroon","sov_a3":"CMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cameroon","adm0_a3":"CMR","geou_dif":0,"geounit":"Cameroon","gu_a3":"CMR","su_dif":0,"subunit":"Cameroon","su_a3":"CMR","brk_diff":0,"name":"Cameroon","name_long":"Cameroon","brk_a3":"CMR","brk_name":"Cameroon","brk_group":null,"abbrev":"Cam.","postal":"CM","formal_en":"Republic of Cameroon","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cameroon","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":3,"pop_est":18879301,"gdp_md_est":42750,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"CM","iso_a2":"CM","iso_a3":"CMR","iso_n3":"120","un_a3":"120","wb_a2":"CM","wb_a3":"CMR","woe_id":23424785,"woe_id_eh":23424785,"woe_note":"Exact WOE match as country","adm0_a3_is":"CMR","adm0_a3_us":"CMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"CMR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[14.560692179000085,12.766224467000157],[14.569373820000067,12.769402568000118],[14.569373820000067,12.759609884000069],[14.570717407000132,12.750385641000065],[14.57526493300014,12.744907939000072],[14.584876749000074,12.746354879000064],[14.603997029000054,12.760798442000095],[14.610611613000058,12.762348735000103],[14.618363078000073,12.759196472000056],[14.620326782000092,12.754054667000062],[14.62074019400012,12.747853495000072],[14.62425419100006,12.741884867000053],[14.641720826000011,12.730903626000071],[14.648128703000053,12.725115865000092],[14.6644584550001,12.71596913600011],[14.694017375000044,12.723720602000114],[14.709933716000137,12.718242900000119],[14.716755005000095,12.701809795000159],[14.70207889800011,12.668995260000145],[14.713654419000052,12.652510478000067],[14.72884729000009,12.677211812000081],[14.734118286000124,12.680415751000055],[14.743316691000103,12.677160136000067],[14.75210168400011,12.668943583000043],[14.758716268000114,12.658815003000086],[14.761403443000118,12.64935821600011],[14.76884484900006,12.633235168000125],[14.786208130000063,12.631219788000081],[14.819177694000132,12.638816223000049],[14.830753214000081,12.61824900300006],[14.863826131000053,12.49546580000009],[14.860105428000054,12.490091451000126],[14.852043905000075,12.474691875000147],[14.850183553000049,12.468128968000073],[14.849563436000096,12.457018534000056],[14.851010376000088,12.455158183000052],[14.855454549000084,12.454538066000083],[14.863826131000053,12.44704498300014],[14.861862427000117,12.45200592000009],[14.865893188000113,12.452574361000131],[14.872404419000105,12.450403952000059],[14.877468709000084,12.44704498300014],[14.878502238000065,12.443065897000068],[14.876848592000101,12.431593730000131],[14.877468709000084,12.427201233000046],[14.891214640000099,12.402654928000075],[14.908267863000047,12.326897278000088],[14.906304159000115,12.317957255000065],[14.90485721900012,12.248400778000075],[14.903100219000121,12.236256816000065],[14.898035929000057,12.219461976000105],[14.898035929000057,12.207473043000048],[14.900929809000047,12.20003163600012],[14.905890747000088,12.195639140000125],[14.910128214000054,12.190368144000104],[14.911575154000047,12.180136210000114],[14.90744104,12.17346995000011],[14.899896281000053,12.171764629000052],[14.894831990000084,12.167372131000148],[14.898035929000057,12.152799377000093],[14.903100219000121,12.14587473600011],[14.928731730000093,12.128614807000119],[14.950745890000093,12.103345032000064],[14.964801879000106,12.092441305000094],[14.976790812000047,12.094146627000057],[14.993844035000079,12.106704000000162],[15.011827433000065,12.108616028000085],[15.03043094900005,12.1009162390001],[15.0494478760001,12.084586487000152],[15.044590292000064,12.07838531600008],[15.040869589000067,12.067584941000135],[15.040559529000092,12.055647685000094],[15.045727173000074,12.046087545000091],[15.053065226000085,12.03802602200011],[15.053685343000039,12.031876526000131],[15.051204875000082,12.024228414000063],[15.0494478760001,12.011929423000112],[15.059679809000071,11.997304993000043],[15.076836385000123,11.982835592000113],[15.0811772050001,11.971673483000075],[15.052548462000033,11.967229309000075],[15.048310995000094,11.962785136000065],[15.050584758000099,11.952863261000076],[15.05554569500015,11.942476298000145],[15.059369751000105,11.936791891000098],[15.063400512000102,11.92728342700012],[15.056579224000131,11.918446757000112],[15.046967408000114,11.910178528000074],[15.042006469000086,11.902375387000047],[15.044176880000066,11.877312317000131],[15.05099816900011,11.861602681000079],[15.062780396000107,11.853489482000072],[15.079833618000066,11.851215719000052],[15.086344848000124,11.840467021000038],[15.110942831000104,11.782899476000082],[15.10536177600008,11.772719219000122],[15.089135376000087,11.757629700000123],[15.083554321000065,11.748172913000147],[15.08531132000013,11.744038798000119],[15.09595666500013,11.734116923000045],[15.097196899000068,11.727657369000083],[15.093062785000141,11.722903137000088],[15.086344848000124,11.722179668000095],[15.079833618000066,11.722593079000106],[15.076112915000037,11.721456197000093],[15.068258097000097,11.700113831000095],[15.066501099000048,11.680631816000101],[15.069394979000037,11.660788066000109],[15.085207967000114,11.6158812460001],[15.095749959000074,11.598156230000086],[15.123861938000118,11.56317128500008],[15.135644165000114,11.530821838000094],[15.122311645000082,11.503226624000092],[15.076112915000037,11.453307190000132],[15.067017863000075,11.435556335000115],[15.060609985000042,11.416125997000035],[15.054305461000125,11.364087829000098],[15.0494478760001,11.348714091000119],[15.0494478760001,11.33726776200011],[15.052548462000033,11.32980051700008],[15.057819458000068,11.32535634400007],[15.062263631000093,11.320033671000118],[15.063090454000102,11.309930929000075],[15.056372517000087,11.293420309000096],[15.033324829000037,11.260269877000084],[15.028260539000144,11.24448272700009],[15.021232544000043,11.182548523000063],[15.028830281000124,11.080218266000145],[15.035185181000115,10.994627177000112],[15.062470336000047,10.930703430000051],[15.072702270000036,10.915768941000081],[15.079006795000028,10.898147278000096],[15.075596150000107,10.873497620000094],[15.063090454000102,10.830761210000091],[15.065880981000078,10.793114929000053],[15.142258749000119,10.647206523000108],[15.1499068600001,10.623125305000073],[15.148459920000105,10.607338155000077],[15.138434692000088,10.58969065400008],[15.132336873000014,10.565402731000091],[15.13171675600006,10.540701396000074],[15.138227986000118,10.521658631000093],[15.144429158000094,10.516310120000142],[15.1536275630001,10.51196930000016],[15.1646863200001,10.509075419000084],[15.176055135000098,10.507990214000088],[15.186597127000054,10.50587148000011],[15.193315063000083,10.501194764000047],[15.19817264800011,10.496492208000063],[15.218326457000073,10.487216288000141],[15.227214803000093,10.470137228000096],[15.241167440000083,10.432904358000087],[15.255636841000126,10.417039693000076],[15.268762655000073,10.406342672000065],[15.278374471000092,10.394276225000084],[15.282198527000046,10.374587504000132],[15.284265584000108,10.349291891000064],[15.2905701090001,10.328983053000059],[15.301422160000072,10.311748963000069],[15.439191528000094,10.185245057000088],[15.476398560000092,10.13274180100012],[15.490661255000077,10.124447734000071],[15.490144490000118,10.1201069130001],[15.536136515000122,10.080522766000044],[15.602799113000058,10.040990296000103],[15.63793908700009,10.029957378000104],[15.681243937000147,9.991277568000086],[15.663777303000103,9.98610992400009],[15.439398234000066,9.931694641000105],[15.382967570000119,9.9301960250001],[15.214915812000072,9.98409454300014],[15.155487915,9.986523336000104],[15.109599244000037,9.981536560000052],[15.100710897000111,9.97890106200012],[15.089445435000075,9.972183126000104],[15.071668742000043,9.955956726000096],[15.06123010200011,9.949238790000065],[15.033014770000134,9.942856751000136],[15.002422323000102,9.94505299900004],[14.944131307000077,9.95882476800007],[14.898139282000074,9.960478414000121],[14.77256555200006,9.921746928000104],[14.732464640000074,9.923813985000066],[14.440492798000038,9.995308329000082],[14.196340538000072,9.979146894000039],[14.181697225000022,9.97817759300004],[14.173532348000094,9.975025329000076],[14.171155232000073,9.967609762000066],[14.170638468000105,9.957842916000104],[14.168364705000101,9.94774017400006],[14.119788859000096,9.852009583000052],[14.088472941000104,9.809634909000138],[14.006720825000087,9.739277446000116],[13.945949340000084,9.652641907000088],[13.947602987000039,9.637759094000046],[14.03648645000007,9.568771057000092],[14.321326945000067,9.243157858000117],[14.331145467000027,9.20021474300006],[14.349542277000124,9.168356221000096],[14.571699259500035,8.990989787000103],[14.79385624200006,8.813623353000109],[14.80987593600011,8.80861073800014],[14.819177694000132,8.811607971000072],[14.827962687000108,8.813158265000084],[14.836747680000116,8.813003235000053],[14.846049438000135,8.810987854000103],[14.85989872200008,8.803313904000104],[14.899379516000124,8.774323425000132],[14.908267863000047,8.764840800000059],[14.91333215300011,8.752438457000096],[14.919946736000098,8.747710063000099],[14.927284790000101,8.745074565000095],[14.93441613700014,8.739002584000048],[14.940100545000092,8.729649149000096],[14.949092244000042,8.704276022000101],[14.951469360000088,8.692106222000092],[14.951469360000088,8.682830302000085],[14.955086710000073,8.676215719000083],[14.968522583000011,8.672159119000085],[15.005832967000059,8.66662974100008],[15.03125777200006,8.658749085000125],[15.051928345000078,8.64378875800007],[15.068568155000092,8.623867493000146],[15.11073612400014,8.555137838000078],[15.168510376000143,8.498603821000117],[15.183703247000068,8.479147644000136],[15.21070621600009,8.421822448000071],[15.34534712700008,8.135990296000102],[15.406532023000125,7.921584778000137],[15.4407418210001,7.839419251000024],[15.487870727000114,7.804951071000063],[15.509368123000057,7.804020895000093],[15.540787394000093,7.796837870000046],[15.562904907000103,7.792445374000053],[15.562181437000106,7.690177714000071],[15.548952271000102,7.630801493000136],[15.521977173000096,7.576076151000066],[15.481049439000058,7.523262838000107],[15.47329797300006,7.509103496000065],[15.419451131000129,7.436549785000054],[15.415523722000074,7.420840150000089],[15.434954060000054,7.402908427000114],[15.432783651000136,7.389730937000123],[15.428442830000078,7.388800761000083],[15.409632609000056,7.387663880000076],[15.40322473100011,7.386371968000121],[15.397436971000047,7.380739237000085],[15.389168741000104,7.364151103000083],[15.385344686000053,7.358363342000104],[15.338215779000052,7.322189840000078],[15.261321248000057,7.279246725000106],[15.246563660000078,7.266731312000103],[15.223907511000107,7.247517395000087],[15.205097290000081,7.200233460000049],[15.191248006000107,7.177340801000128],[15.186597127000054,7.166333720000125],[15.185356893000119,7.156876933000163],[15.19021447700004,7.09879262300008],[15.18752730300011,7.088612365000117],[15.179052368000102,7.078380432000131],[15.156108032000075,7.067786764000061],[15.147012980000113,7.061843974000055],[15.136160930000072,7.045307516000149],[15.128926229000086,7.026497294000137],[15.113216594000022,6.964692282000058],[15.080247029000079,6.878082581000115],[15.059059693000107,6.836276347000151],[15.04221317600013,6.790775248000088],[15.034565063000057,6.776770935000086],[15.022369425000134,6.766539002000101],[14.962321411000117,6.736695862000104],[14.946095011000127,6.725740459000121],[14.932452434000112,6.710289205000038],[14.92187418000006,6.686413886000067],[14.807292114000093,6.427799988000075],[14.78217736800008,6.393616028000082],[14.780006958000087,6.382221374000081],[14.784347778000066,6.358682760000093],[14.784657837000054,6.347804871000037],[14.78238407400005,6.336771952000049],[14.772255493000072,6.318323466000038],[14.734841756000037,6.270445251000112],[14.719028768000014,6.257862041000095],[14.576401814000064,6.189778341000092],[14.534957316000117,6.190088399000089],[14.525965617000054,6.174068706000128],[14.51097945100008,6.155335999000044],[14.48214400200007,6.127068991000058],[14.467054484000073,6.122598979000145],[14.443903442000076,6.100248922000076],[14.430570922000129,6.088079122000067],[14.431811157000084,6.084616801000038],[14.43270924500004,6.079122618000099],[14.433568156000149,6.073868103000109],[14.429123982000133,6.064178772000076],[14.426023397000106,6.059863790000094],[14.422509400000138,6.051363017000085],[14.41816857900008,6.047125550000131],[14.412897583000131,6.047022197000103],[14.402458944000102,6.054877014000056],[14.397704712000118,6.053946838000087],[14.390263306000092,6.045781963000081],[14.387266072000072,6.039038188000049],[14.389436482000065,6.03105417900008],[14.397704712000118,6.019168600000043],[14.406076294000087,6.011029561000043],[14.417548462000099,5.997257792000084],[14.432327922000127,5.985449727000088],[14.446900675000078,5.970024313000096],[14.45382531800007,5.953875428000103],[14.458166137000148,5.936408793000054],[14.465710897000093,5.920673319000087],[14.48214400200007,5.90964040100009],[14.499197225000103,5.909537049000065],[14.530616495000118,5.905919698000076],[14.54539595600005,5.907573344000113],[14.57247440600011,5.924187317000132],[14.58477339600006,5.92341217000012],[14.598002563000135,5.903490906000116],[14.602963501000088,5.883388774000139],[14.617432902000102,5.864966125000136],[14.62404748500012,5.758305970000066],[14.63107548000002,5.738048808000158],[14.624357544000105,5.723605245000044],[14.610611613000058,5.669138286000134],[14.592834920000115,5.623869731000127],[14.5901477460001,5.608289287000105],[14.591491333000077,5.590951843000099],[14.59655562300014,5.57723175100007],[14.610611613000058,5.553667298000064],[14.617226196000074,5.53788014800007],[14.618879842000096,5.525451966000091],[14.617432902000102,5.495298767000108],[14.614125611000105,5.484860128000165],[14.59955285700005,5.456644796000105],[14.59624556500006,5.4401083380001],[14.597279094000042,5.411479594000127],[14.592834920000115,5.400033264000115],[14.579605754000054,5.395382385000061],[14.579295695000068,5.38760508200005],[14.570820760000059,5.370939433000117],[14.560795532000041,5.355462341000106],[14.555937947000103,5.351328227000081],[14.553974243000082,5.338228251000118],[14.548393188000146,5.320503235000103],[14.539608195000085,5.303579203000112],[14.528032674000116,5.293011373000141],[14.519867797000101,5.290582580000077],[14.523898560000106,5.279678854000109],[14.539711548000097,5.261798808000065],[14.560485473000144,5.248595480000077],[14.603583618000043,5.234255270000077],[14.624460897000118,5.2240491740001],[14.640480590000067,5.208236186000107],[14.651539348000084,5.187513936000072],[14.658877401000069,5.164543762000036],[14.663218221000049,5.141831970000069],[14.663011515000106,5.091447449000071],[14.667455689000091,5.052767639000066],[14.660324341000063,5.015793152000114],[14.660132450000106,5.011439624000062],[14.659497518000137,4.997034607000032],[14.663424927000106,4.985717468000146],[14.669832804000064,4.977113342000109],[14.674483683000117,4.967579041000121],[14.67210656800006,4.940810649000142],[14.675827271000086,4.930759582000107],[14.681615031000149,4.920941060000146],[14.686989380000114,4.908874614000069],[14.701458781000042,4.814384257000099],[14.700631958000118,4.804281514000137],[14.696084432000077,4.779735209000079],[14.69184696400012,4.768702291000082],[14.690710083000113,4.762139384000093],[14.697324667000116,4.745215353000106],[14.704249308000099,4.669354350000091],[14.717271769000147,4.622018738000122],[14.743730102000114,4.579979961000106],[14.7796968990001,4.545046692000113],[14.938343546000112,4.435931905000074],[14.982061808000083,4.420480652000066],[14.993947388000038,4.413297628000109],[15.00056197100011,4.403194885000076],[15.007383260000069,4.377770080000062],[15.01389449000004,4.36425669400009],[15.048517700000048,4.321649475000115],[15.063813924000101,4.293434143000056],[15.072805623000134,4.265942282000083],[15.082934204000082,4.205506693000061],[15.084484497000119,4.148610942000104],[15.091202433000149,4.121790874000112],[15.10257124900005,4.112411601000062],[15.11776411900007,4.114323629000083],[15.13285363800014,4.108535868000104],[15.139261515000099,4.094583231000115],[15.142568807000089,4.080449728000075],[15.148459920000105,4.073938497000114],[15.162412557000096,4.073938497000114],[15.177708781000149,4.071458028000038],[15.189801066000115,4.063112285000074],[15.192074829000147,4.052234395000113],[15.172437785000113,4.04381113700012],[15.150423624000041,4.038514302000081],[15.111252889000099,4.019936625000128],[15.091719198000078,4.01585418700013],[15.075182739000097,4.017972921000108],[15.043143351000083,4.026137797000032],[15.025986775000119,4.026086120000102],[15.084897908000132,3.885836283000103],[15.171300904000105,3.758970642000122],[15.252639608000095,3.672851868000123],[15.2623059310001,3.662589498000116],[15.32974084500006,3.59099639900009],[15.413973429000036,3.501880392000075],[15.517946411000082,3.391602885000111],[15.616855102000072,3.286777243000131],[15.71069950300006,3.187455139000051],[15.785630330000116,3.107976786000052],[15.793175089000073,3.103274231000071],[15.801029907000098,3.100897115000123],[15.813535603000103,3.098985087000102],[15.817566366000108,3.100121969000028],[15.829141886000057,3.106633199000086],[15.834206176000121,3.108545227000107],[15.84020064200004,3.107408345000095],[15.850949340000085,3.100432027000096],[15.854773397000116,3.098985087000102],[15.8977681880001,3.10353261400013],[15.913994588000094,3.097951559000123],[15.933424927000091,3.081776835000127],[15.950064738000092,3.061002910000084],[15.958229614000118,3.041520894000087],[15.971562133000134,2.991188049000115],[15.974249309000072,2.985762024000053],[15.97776330600004,2.980956116000129],[15.982000773000065,2.976718648000087],[15.995436645000039,2.981472880000083],[16.00608199000004,2.98395334900006],[16.015797160000147,2.983488261000034],[16.02623579900009,2.978992411000107],[16.034193969000057,2.97062082900004],[16.05538130700012,2.939769999000134],[16.07016076600013,2.90659373000004],[16.082459757000063,2.885664775000052],[16.09238163300006,2.86328888000007],[16.095172160000118,2.836778869000071],[16.08690393100008,2.813162740000053],[16.05992883300004,2.786187643000118],[16.05620813000013,2.759832662000065],[16.060032186000086,2.725829570000116],[16.05930871600009,2.711825257000115],[16.062616008000077,2.703195292000075],[16.072847941000077,2.702833557000076],[16.086283814000097,2.704952291000055],[16.0990995680001,2.703970439000074],[16.110468384000086,2.701438294000084],[16.101373332,2.687847392000094],[16.093725220000124,2.673119609000096],[16.090314575,2.661905823000055],[16.093105102000063,2.641493632000106],[16.108504679000134,2.606612040000115],[16.11150191200008,2.586199850000085],[16.1068510340001,2.567027894000077],[16.091244751000147,2.532766419000069],[16.090314575,2.510493876000112],[16.094345337000107,2.49752309200008],[16.10705773900014,2.474165344000127],[16.11150191200008,2.455871887000072],[16.11150191200008,2.41856150300012],[16.112948853000148,2.410448304000127],[16.120907023000115,2.389571025000052],[16.13341272000011,2.364818013000033],[16.152326294000147,2.343268941000076],[16.15925093600012,2.332933655000161],[16.16286828600002,2.323838603000098],[16.164728638000042,2.314795227000047],[16.165968872000064,2.294796448000099],[16.16906945800011,2.289887187000076],[16.182918742000084,2.281153870000097],[16.18653609200007,2.277691549000053],[16.18694950400007,2.269319967000087],[16.181265096000118,2.256555888000108],[16.17971480300011,2.246995748000117],[16.19284061700006,2.239502665000074],[16.1966646730001,2.23645375600006],[16.202349081000133,2.232009582000046],[16.20772342900011,2.223069560000112],[16.199455200000074,2.212165833000142],[16.15925093600012,2.182090149000075],[16.140647421000097,2.199815165000089],[16.120390259000086,2.203329163000149],[16.104370565000124,2.193562317000101],[16.09775598100012,2.171548157000117],[16.085767049000083,2.149172262000135],[16.08349328600005,2.137751770000122],[16.08556034300011,2.124910177000046],[16.08979781000008,2.116151021000064],[16.092484986000102,2.10690094000006],[16.090314575,2.092741597000099],[16.088144165000102,2.091759745000047],[16.08411340400002,2.091604716000091],[16.079669230000036,2.090261129000041],[16.07667199700009,2.085920309000059],[16.075535116000083,2.079951680000121],[16.075535116000083,2.075455831000099],[16.076155233000065,2.072820333000095],[16.07667199700009,2.072251893000043],[16.078118937000085,2.063441061000049],[16.081529582000115,2.055637920000024],[16.081736288000087,2.046827088000029],[16.06644006300013,2.025484721000041],[16.063752889000085,2.015872904000119],[16.06488977100011,1.978950094000083],[16.068713826000135,1.973601583000132],[16.07491499800011,1.970604350000116],[16.08349328600005,1.963007914000059],[16.101373332,1.932803040000053],[16.135066366000075,1.845314840000071],[16.15904423000009,1.734804790000055],[16.155840291000118,1.719069316000073],[16.145091593000103,1.714315084000077],[16.123594197000045,1.721601461000148],[16.114809204000068,1.719069316000073],[16.069850708000047,1.654551290000143],[16.030473266000058,1.705400900000157],[16.021998331000134,1.722790019000087],[16.021998331000134,1.733047790000072],[16.024892212000026,1.742478740000124],[16.02633915200002,1.752297262000098],[16.021998331000134,1.763795268000123],[16.013833455000025,1.771314189000065],[16.002774699000042,1.775913391000117],[15.990785766000073,1.77617177400009],[15.980450480000059,1.770590719000069],[15.963190551000084,1.77736033100011],[15.943760213000076,1.781623637000067],[15.928980753000074,1.788961691000068],[15.925880167000116,1.804748840000059],[15.915234823000048,1.798961080000083],[15.901798951000073,1.79374176000006],[15.889913371000148,1.793276672000047],[15.884952434000096,1.801648254000114],[15.882368611000118,1.816711934000097],[15.875650676000078,1.82376576800003],[15.86593550600014,1.828468323000095],[15.842060994000066,1.844152120000061],[15.815395955000099,1.853428039000079],[15.802890258000103,1.859965109000143],[15.764649699000131,1.908721822000103],[15.757414999000046,1.912985128000059],[15.73405725100011,1.916705831000072],[15.721551554000113,1.92161509200011],[15.711112915000086,1.927377014000072],[15.706772095000105,1.931976217000112],[15.611790812000095,1.942544047000098],[15.526628051000046,1.967813822000068],[15.482909790000063,1.975849507000134],[15.439191528000094,1.969829204000106],[15.388135214000016,1.939546815000085],[15.367981405000135,1.932854716000065],[15.349171183000122,1.92329457600006],[15.33738895600004,1.921460063000069],[15.337802368000041,1.923759664000087],[15.314341268000076,1.934249979000128],[15.309483683000053,1.935076803000072],[15.301628866000016,1.943577576000081],[15.300181926000022,1.947660014000078],[15.301938924000096,1.95331858400003],[15.303282511000077,1.966418559000075],[15.301112101000085,1.973756612000074],[15.295427694000125,1.981533915000085],[15.287572876000098,1.987786764000091],[15.25356978400015,2.000318299000085],[15.248092081000065,2.003341370000115],[15.244164673000114,2.01005930600013],[15.238686971000105,2.025303854000085],[15.233726033000067,2.031298320000104],[15.212642049000124,2.039618225000069],[15.197035766000084,2.034967346000101],[15.183599894000052,2.029334615000081],[15.15166385900008,2.040987651000137],[15.138538046000093,2.011506246000124],[15.123861938000118,2.017009786000116],[15.11776411900007,2.017009786000116],[15.107635539000114,2.000835062000121],[15.091615845000147,1.984427796000076],[15.074872681000102,1.979363505000094],[15.063090454000102,1.997166036000124],[15.043660116000124,1.990861512000023],[15.028260539000144,1.99530568400013],[14.980718221000132,2.033106995000097],[14.971003052000071,2.034450582000161],[14.963044881000116,2.010421041000129],[14.953846476000107,2.005821838000088],[14.932142374000108,2.003341370000115],[14.892454874000038,2.006390279000129],[14.896588989000064,2.030936585000106],[14.90733768700008,2.058893535000109],[14.88780399600009,2.072251893000043],[14.884600057000112,2.082096253000103],[14.871474243000137,2.101655782000122],[14.857004842,2.11594431600011],[14.850183553000049,2.109794820000047],[14.850183553000049,2.097366638000068],[14.848219849000115,2.085196838000059],[14.8411918540001,2.07592091900004],[14.826309042000075,2.072251893000043],[14.764814087000074,2.065456442000084],[14.761610148000102,2.070184835000077],[14.762540324000042,2.092534892000046],[14.761403443000118,2.099588725000061],[14.756339152000066,2.099588725000061],[14.74755415800007,2.097185771000113],[14.73711551900004,2.096074728000104],[14.72729699700008,2.099588725000061],[14.733498169000143,2.102017517000121],[14.747864217000142,2.113205465000064],[14.720889119000018,2.127597351000077],[14.713654419000052,2.123980001000092],[14.720475708000011,2.099588725000061],[14.705696249000084,2.105531514000077],[14.685955851000129,2.125866190000096],[14.672003215000132,2.134341125000105],[14.646061645000088,2.133359273000039],[14.63634647600014,2.138320211000092],[14.644821411000066,2.154184876000102],[14.620946899000074,2.164830221000088],[14.587873983000092,2.20172719300011],[14.562139120000097,2.208806865000042],[14.557074829000015,2.202398987000095],[14.547773072000098,2.193665670000115],[14.547979777000135,2.184363912000094],[14.550253540000057,2.175165507000102],[14.547049601000083,2.166535543000052],[14.538057902000046,2.16338328000009],[14.45919966600013,2.146536763000114],[14.438735799000057,2.13397939100011],[14.432948038000092,2.132119039000102],[14.41868534400001,2.135271301000059],[14.399358358000057,2.153151347000119],[14.383648722000087,2.162091370000056],[14.320293416000084,2.170669658000079],[14.276265096000117,2.15356475800013],[14.266963338000096,2.152427877000121],[14.161750122000115,2.153409729000089],[14.002793417000104,2.15480499300007],[13.823992960000027,2.156406962000105],[13.662266290000105,2.157761182000058],[13.62033614100011,2.158112284000069],[13.466547078000104,2.159507548000136],[13.294567912000076,2.161057841000073],[13.294257854000108,2.185759175000072],[13.298391968000118,2.215834859000054],[13.294154500000076,2.230510967000043],[13.284646037000101,2.242241516000121],[13.269659871000016,2.255729066000086],[13.254156941000105,2.266891175000112],[13.242891479000034,2.271490377000077],[13.235966837000149,2.269888407000039],[13.22160078900015,2.263945618000122],[13.212299032000118,2.264048971000136],[13.205684448000028,2.266891175000112],[13.191731812000057,2.277691549000053],[13.163826538000052,2.283169251000047],[13.133337443000071,2.284512838000111],[13.12465580200012,2.281050517000068],[13.113080281000066,2.2727306110001],[13.093029826000134,2.253455302000077],[13.083521362000054,2.249527893000106],[13.040939982000081,2.244205220000154],[13.012931355000148,2.256297505000134],[12.996911662000116,2.260018209000052],[12.98316573100007,2.253455302000077],[12.972210327000084,2.250354716000118],[12.954847046000083,2.253248596000105],[12.924771362000113,2.264048971000136],[12.914539429000115,2.254540507000073],[12.903170613000041,2.250354716000118],[12.890458211000094,2.251388245000101],[12.876402222000081,2.257176005000076],[12.867823934000029,2.244980368000071],[12.848083537000065,2.249321187000135],[12.825242554000056,2.259243062000053],[12.808189331000051,2.264048971000136],[12.795580282000117,2.258777975000029],[12.784108113000087,2.249527893000106],[12.770155477000088,2.240691224000102],[12.749898315000081,2.236712138000115],[12.614609416000121,2.256917623000106],[12.590734904000044,2.265702616000098],[12.574818563000122,2.277691549000053],[12.551460816000088,2.272265523000087],[12.53420088700008,2.277691549000053],[12.478390340000116,2.295881653000095],[12.43994307400007,2.298517151000112],[12.384855997000102,2.285908102000093],[12.366769246000104,2.28957712800009],[12.334006388000091,2.309575907000109],[12.321604045000127,2.314071757000136],[12.312095581000051,2.312934875000039],[12.291218303000079,2.301772766000099],[12.280779663000118,2.299033915000052],[12.261039266000067,2.296191712000081],[12.222592000000105,2.283324280000087],[12.202644897000113,2.279551901000062],[12.159236694000098,2.281412252000067],[12.118825724000118,2.287820130000099],[12.10073897300012,2.288491923000095],[12.041931193000039,2.283996073000068],[11.966173543000139,2.288750305000065],[11.889795776000083,2.282084045000147],[11.802152547000077,2.284822896000093],[11.768149455000042,2.280172017000041],[11.752749878000145,2.281877340000094],[11.70138350500011,2.29872385700007],[11.681022990000088,2.315415345000105],[11.671204468000099,2.320996399000122],[11.65725183100011,2.322495016000119],[11.644642781000101,2.319652812000058],[11.618597860000108,2.310402731000053],[11.35163741000008,2.300584209000078],[11.349777059000075,2.291489156000097],[11.354324585000112,2.278466695000063],[11.355978231000051,2.265185852000058],[11.349983764000115,2.251129862000127],[11.34223230000012,2.24058787000007],[11.335927775000101,2.229167378000071],[11.33417077600012,2.212785950000111],[11.33417077600012,2.200280253000116],[11.332413778000046,2.188032938000092],[11.328486368000085,2.176302389000099],[11.322078491000042,2.165760396000053],[11.022975301000088,2.16570872000004],[10.72376875800009,2.165657043000109],[10.424665568000108,2.165657043000109],[10.409685690000117,2.16565445500008],[10.189982611000062,2.16561649700013],[10.12556237800004,2.165605367000097],[9.990996948000088,2.165605367000097],[9.970739786000081,2.1689126590001],[9.907487834000078,2.200486959000074],[9.890124552000088,2.204569397000085],[9.872141154000076,2.211235657000103],[9.846819702000118,2.228547262000106],[9.823668660000124,2.249011129000067],[9.810852905000047,2.264875794000076],[9.808682495000141,2.285494690000078],[9.811886434000115,2.306165263000096],[9.811059611000104,2.324872132000081],[9.799571159500116,2.341742255000057],[9.81218509200005,2.353583075000102],[9.81218509200005,2.359808661000073],[9.819183790000125,2.376939195000105],[9.822927280000044,2.562933661000059],[9.85320071700005,2.696966864000046],[9.87045332100007,2.738104559000121],[9.874278191000059,2.754543361000032],[9.877777540000068,2.881415106000062],[9.887950066000116,2.926906643000038],[9.903330925000148,2.968329169000043],[9.92204837300011,2.997259833000058],[9.943369988000086,3.02313873900006],[9.955739780000016,3.050482489000032],[9.958018425000091,3.082220770000091],[9.919688347000147,3.228094794000128],[9.902110222000118,3.251695054000066],[9.902110222000118,3.257961330000029],[9.911631707000112,3.257717190000079],[9.917979363000143,3.259466864000075],[9.92945397200009,3.264797268000038],[9.92945397200009,3.271551825000074],[9.913910352000102,3.270331122000059],[9.903086785000113,3.272894598000065],[9.89503014400006,3.278306382000011],[9.887950066000116,3.285223700000103],[9.881521030000101,3.294338283000101],[9.855316602000071,3.343573309000107],[9.780935092000078,3.436753648000135],[9.739024285000085,3.47308991100003],[9.642100457000112,3.539048570000062],[9.66423587300008,3.543931382000039],[9.688649936000047,3.556097723000022],[9.770762566000116,3.618719794000128],[9.79281660200013,3.627183335000069],[9.819590691000116,3.627875067000019],[9.787608269000117,3.637111721000068],[9.759613477000102,3.626166083000015],[9.733653191000114,3.609320380000014],[9.706879102000102,3.600531317000048],[9.638438347000147,3.59438711100006],[9.626231316000087,3.600002346000068],[9.62134850400011,3.612779039000102],[9.62598717500012,3.626450914000131],[9.642100457000112,3.634670315000036],[9.612559441000144,3.704982815000065],[9.565114780000016,3.770900783000101],[9.551524285000056,3.796210028000061],[9.545909050000148,3.819647528000132],[9.570974155000071,3.795477606000119],[9.576670769000145,3.792303778000061],[9.581553582000112,3.787827867000089],[9.589610222000147,3.766099351000122],[9.594248894000089,3.758205471000053],[9.60694420700014,3.752264716000112],[9.624278191000116,3.750189520000106],[9.662608269000145,3.750718492000075],[9.65251712300008,3.756048895000049],[9.621104363000143,3.76496002800009],[9.611013217000107,3.770575262000079],[9.607106967000107,3.774725653000118],[9.604258660000141,3.779974677000013],[9.597422722000147,3.78888580900005],[9.589203321000127,3.809637762000051],[9.592133009000065,3.835150458000043],[9.603770379000082,3.859035549000026],[9.621104363000143,3.874823309000063],[9.659027540000096,3.841009833000086],[9.679698113000086,3.836086330000029],[9.689789259000065,3.860581773000063],[9.723480665000066,3.843817450000045],[9.736338738000086,3.834173895000077],[9.744476759000094,3.819647528000132],[9.750336134000065,3.830267645000078],[9.750498894000115,3.840765692000048],[9.74586022200009,3.850897528000103],[9.738291863000141,3.860581773000063],[9.741465691000116,3.86102936400006],[9.751963738000084,3.860581773000063],[9.704925977000073,3.877508856000048],[9.682871941000059,3.89044830900005],[9.676280144000089,3.909002997000059],[9.689219597000088,3.922430731000048],[9.715017123000024,3.931341864000089],[9.743337436000076,3.935939846000025],[9.764414910000085,3.936346747000115],[9.764333530000101,3.940741278000103],[9.762950066000116,3.943793036000102],[9.758148634000037,3.950018622000058],[9.760752800000148,3.951361395000049],[9.762950066000116,3.951239325000074],[9.764414910000085,3.95233795800003],[9.764414910000085,3.957464911000045],[9.664805535000141,3.94037506700009],[9.63461347700013,3.943182684000049],[9.618907097000061,3.960353908000073],[9.623708530000073,3.985785223000079],[9.639903191000116,4.008775132000068],[9.659190300000148,4.018866278000118],[9.67562910200013,4.03384023600006],[9.71892337300011,4.099554755000056],[9.748301629000109,4.114447333000015],[9.752452019000145,4.11981842700007],[9.756846550000148,4.129828192000048],[9.754567905000073,4.13568756700009],[9.738291863000141,4.128729559000107],[9.719493035000085,4.114935614000089],[9.710948113000057,4.105698960000041],[9.703461134000094,4.093939520000063],[9.69662519600007,4.093939520000063],[9.69662519600007,4.114447333000015],[9.678884311000076,4.101019598000022],[9.64633222700013,4.051459052000084],[9.628428582000055,4.031927802000013],[9.606618686000104,4.020656643000024],[9.579356316000116,4.01300690300009],[9.559336785000141,4.016791083000014],[9.559580925000091,4.039374091000083],[9.545909050000148,4.025702216000056],[9.526621941000116,4.035793361000103],[9.508555535000113,4.054185289000059],[9.498545769000117,4.077215887000122],[9.504242384000094,4.100775458000072],[9.490082227000073,4.115871486000074],[9.478526238000143,4.111395575000117],[9.450368686000076,4.080308335000012],[9.45289147200009,4.076971747000087],[9.457286004000082,4.071112372000044],[9.465179884000037,4.068101304000038],[9.47429446700005,4.066148179000081],[9.484385613000086,4.059881903000132],[9.485362175000063,4.055324611000088],[9.495616082000112,4.031480210000012],[9.507009311000076,4.019476630000084],[9.52361087300011,4.006089585000083],[9.532481316000059,3.989447333000044],[9.518565300000091,3.970445054000038],[9.504242384000094,3.976141669000114],[9.497080925000148,3.977687893000066],[9.490082227000073,3.980658270000077],[9.476898634000122,3.990912177000098],[9.464040561000104,4.012030341000113],[9.458343946000127,4.016180731000048],[9.453868035000056,4.018622137000079],[9.451182488000086,4.022772528000118],[9.450368686000076,4.031927802000013],[9.437998894000117,4.030462958000044],[9.429209832000083,4.026556708000058],[9.424082879000139,4.019476630000084],[9.422373894000145,4.008368231000063],[9.44939212300011,3.992132880000028],[9.45655358200014,3.984076239000074],[9.458832227000102,3.972357489000089],[9.45639082100007,3.963527736000045],[9.452403191000087,3.953924872000059],[9.450368686000076,3.939764716000042],[9.45329837300008,3.932114976000107],[9.469086134000037,3.923407294000114],[9.476898634000122,3.915838934000078],[9.464040561000104,3.90997955900012],[9.448252800000148,3.905747789000102],[9.412119988000114,3.902167059000135],[9.393402540000068,3.904282945000133],[9.359222852000071,3.913723049000069],[9.34351647200009,3.915838934000078],[9.313731316000087,3.930853583000101],[9.302582227000073,3.9649925800001],[9.307627800000091,4.001939195000134],[9.326182488000114,4.025702216000056],[9.326182488000114,4.031927802000013],[9.301442905000043,4.026353257000095],[9.290293816000116,4.009711005000056],[9.284353061000104,3.992254950000088],[9.250336134000065,3.960842190000065],[9.220713738000114,3.966009833000058],[9.210703972000118,3.964260158000073],[9.211110873000052,3.982570705000029],[9.213226759000065,3.996568101000094],[9.21062259200005,4.008124091000113],[9.196462436000047,4.018866278000118],[9.184743686000047,4.020900783000059],[9.166514519000145,4.020900783000059],[9.148773634000065,4.019029039000087],[9.138682488000114,4.015448309000121],[9.123383009000037,4.017889716000056],[9.070160352000073,4.051418361000088],[8.98340905000012,4.092433986000103],[8.971202019000144,4.100775458000072],[8.969411655000073,4.128973700000046],[8.98845462300008,4.188910223000079],[8.990977410000085,4.21747467700007],[8.960297071000099,4.245917059000078],[8.936289910000141,4.279527085000012],[8.918955925000148,4.318060614000089],[8.894786004000139,4.460516669000114],[8.900075717000021,4.485093492000132],[8.92603600400011,4.529608466000127],[8.935720248000079,4.553290106000048],[8.913584832000083,4.52863190300006],[8.900563998000107,4.521633205000072],[8.894786004000139,4.535874742000075],[8.897227410000085,4.548000393000081],[8.901540561000076,4.560248114000045],[8.904307488000141,4.573187567000048],[8.901621941000059,4.58738841400006],[8.893809441000087,4.594631252000084],[8.871918165000125,4.602484442000062],[8.86410566500004,4.618719794000099],[8.856293165000068,4.629950262000108],[8.847015821000099,4.63971588700005],[8.839610222000118,4.642645575000074],[8.835703972000118,4.62962474200009],[8.86670983200014,4.582709052000041],[8.873708530000043,4.560044664000087],[8.867849155000073,4.544582424000069],[8.858734571000099,4.54083893400012],[8.850596550000063,4.547430731000105],[8.847015821000099,4.563218492000146],[8.798594597000118,4.601141669000071],[8.798024936000047,4.588283596000053],[8.799489780000101,4.577785549000083],[8.804209832000112,4.57013580900005],[8.812836134000122,4.566351630000028],[8.799571160000085,4.54218170800003],[8.79517662900011,4.539007880000056],[8.78842207100007,4.541449286000088],[8.768565300000148,4.553127346000082],[8.764414910000113,4.556626695000077],[8.757009311000047,4.565090236000117],[8.74057050900012,4.57123444200009],[8.72413170700014,4.580471096000068],[8.71656334700009,4.597723700000074],[8.705902540000068,4.634670315000022],[8.661306186000076,4.698797919000071],[8.655121290000096,4.738267320000134],[8.638682488000114,4.713080145000077],[8.645355665000068,4.684068101000079],[8.660492384000065,4.653998114000046],[8.685720248000024,4.561224677000027],[8.694834832000112,4.553290106000048],[8.706309441000059,4.547674872000059],[8.71656334700009,4.539007880000056],[8.722666863000086,4.513128973000049],[8.701670769000145,4.50128815300009],[8.57667076900006,4.49188873900006],[8.565440300000148,4.49725983300003],[8.570323113000143,4.509670315000051],[8.582692905000073,4.523342190000079],[8.593760613000114,4.5327822940001],[8.581716342000107,4.538478908000073],[8.570567254000082,4.53856028900006],[8.562673373000107,4.533189195000105],[8.556407097000147,4.511704820000077],[8.548350457000112,4.507798570000077],[8.537364129000053,4.508530992000104],[8.52556399800008,4.511704820000077],[8.510264519000115,4.527044989000032],[8.505056186000047,4.5509300800001],[8.50993899800011,4.56883372600015],[8.52556399800008,4.566351630000028],[8.530772332000083,4.579250393000052],[8.55209394600007,4.614732164000131],[8.538340691000144,4.604641018000066],[8.525726759000065,4.604437567000019],[8.516123894000089,4.612982489000046],[8.511241082000112,4.629055080000114],[8.513682488000143,4.642320054000052],[8.521169467000107,4.655951239000089],[8.538584832000083,4.676214911000102],[8.567637566000144,4.695990302000027],[8.573252800000148,4.704087632000054],[8.57357832100007,4.7163760440001],[8.569672071000099,4.728338934000135],[8.567637566000144,4.740220445000091],[8.573252800000148,4.752508856000048],[8.580088738000084,4.745062567000076],[8.576508009000094,4.784654039000102],[8.578379754000082,4.804673570000077],[8.59001712300008,4.813381252000056],[8.594167514000105,4.815293687000107],[8.59417866654718,4.815299263178203],[8.594185680000095,4.815299377000144],[8.595113159000107,4.81531443300014],[8.612166382000055,4.831876729000058],[8.608445679000027,4.846216939000044],[8.60544844500012,4.860040385000104],[8.602244506000147,4.881331075000091],[8.611029501000132,4.896653137000058],[8.638314656000148,4.916781108000109],[8.64441247500011,4.934867859000121],[8.683686564000084,4.996879578000075],[8.683686564000084,4.997034607000032],[8.698569376000108,5.017808533000064],[8.707871134000044,5.037548930000128],[8.722650594000072,5.081189677000083],[8.728851765000057,5.094548035000116],[8.748282104000026,5.124210307000084],[8.758307332000044,5.134881490000083],[8.769469442000087,5.139945781000051],[8.781251668000095,5.1419870000001],[8.791690307000124,5.146741232000096],[8.798925008000081,5.159634502000102],[8.825693400000148,5.295491842000118],[8.82465987100008,5.306137187000104],[8.816391642000042,5.330295919000164],[8.81525476100012,5.343499247000068],[8.821662638000078,5.367683817000128],[8.843160034000107,5.409980977000117],[8.849774618000112,5.432356873000103],[8.849257853000069,5.453466695000131],[8.845743855000109,5.472793681000084],[8.844296915000115,5.492353210000104],[8.85049808700009,5.514005636000093],[8.86548425300006,5.533461813000073],[8.884294474000084,5.551445211000058],[8.899487345000097,5.570953064000149],[8.90393151900011,5.595085958000111],[8.893699585000121,5.621750997000063],[8.874889363000134,5.641439718000115],[8.852565145000057,5.658673808000088],[8.832411336000092,5.678155823000083],[8.819285522000115,5.703451437000068],[8.826933635000103,5.717817485000068],[8.8446069740001,5.730865783000112],[8.862176961000074,5.752337342000131],[8.866621135000088,5.777452087000071],[8.857836141000092,5.794892883000101],[8.847087443000078,5.810757548000112],[8.845227091000083,5.831040548000118],[8.855872437000073,5.847499492000097],[8.891219116000059,5.871115621000115],[8.904654988000118,5.888117167000132],[8.921708211000066,5.904472758000082],[8.943205607000095,5.901423849000138],[8.965013061000121,5.893594869000125],[8.982686401000109,5.895765280000106],[8.98630375200011,5.908813578000149],[8.988474162000102,5.937287292000093],[8.993848511000067,5.944082743000138],[9.0098682040001,5.952350973000094],[9.022477254000137,5.965812683000138],[9.043871297000038,5.996689352000132],[9.043871297000038,5.996844381000074],[9.136165405000014,6.092523295000078],[9.273314657000071,6.202774964000128],[9.298842814000125,6.23843170100011],[9.327368205000084,6.29850555400013],[9.341010783000085,6.313982646000056],[9.354756713000114,6.321501567000084],[9.366538940000112,6.322690125000107],[9.37914799000012,6.321604920000112],[9.394960978000142,6.322535095000163],[9.42286625200012,6.33935577400014],[9.453148641000041,6.39767262800008],[9.482604207000065,6.415991923000149],[9.488590226000099,6.418208095000111],[9.52859623200004,6.433019308000084],[9.54895674700009,6.443173726000055],[9.564769735000084,6.458599142000139],[9.588127482000118,6.502730814000131],[9.603010294000057,6.515184835000113],[9.632672567000043,6.521153463000132],[9.644805968000128,6.521225530000051],[9.680524943000108,6.521437683000116],[9.693030640000131,6.531307882000092],[9.69397999000006,6.534304786000078],[9.76982181800008,6.773722026000157],[9.788528686000063,6.794754334000075],[9.81229984500004,6.793049011000107],[9.831730184,6.783566386000131],[9.8511605220001,6.777881978000096],[9.874621623000053,6.787700500000156],[10.119464559000079,6.994406230000024],[10.14292565900007,7.007687073000127],[10.156878296000059,7.004741516000124],[10.165043172000082,6.988515117000119],[10.179409220000082,6.914927877000125],[10.1898478600001,6.89544586200013],[10.210828491000115,6.87916778600011],[10.238423706000106,6.871002910000087],[10.495979045000096,6.874671936000084],[10.496599161000063,6.897151184000094],[10.500733276000089,6.91280914400005],[10.508898153000104,6.926348369000038],[10.521197144000041,6.9427814740001],[10.52750166800007,6.94748402900008],[10.533186076000106,6.948827617000134],[10.537423543000045,6.952134908000132],[10.543314656000064,7.028719381000144],[10.551789591000045,7.066339824000067],[10.564191935000109,7.102668355000048],[10.578661336000067,7.130832011000095],[10.597161499000094,7.107267558000089],[10.602535848000059,7.058071595000115],[10.620622599000056,7.043757222000124],[10.646977580000112,7.035075582000076],[10.716947469000047,6.998126933000036],[10.799112996000048,6.967327779000072],[10.831875854000145,6.945210266000061],[10.848205607000097,6.905316061000107],[10.857404012000103,6.859789124000145],[10.877454467000035,6.816096700000074],[10.909390503000111,6.784264018000029],[11.002614787000141,6.767262471000108],[11.036721232000104,6.740545757000049],[11.055944865000129,6.70036733000012],[11.059045451000088,6.652721659000079],[11.057391804000133,6.613008321000095],[11.060595744000096,6.573966777000081],[11.077442261000073,6.496736348000098],[11.097079305000108,6.449116517000064],[11.113512410000082,6.43400116000015],[11.140384155000078,6.430280456000048],[11.202276467000104,6.43673924200003],[11.231748087000113,6.439814759000043],[11.237122437000068,6.438057759000059],[11.248284546000093,6.431003927000049],[11.255519247000052,6.429970398000066],[11.261513713000085,6.432554220000071],[11.272159058000083,6.442036845000132],[11.275879761000082,6.444207255000038],[11.28683516500007,6.443225403000071],[11.308539266000082,6.437902731000108],[11.31949467000004,6.437282613000136],[11.344196004000139,6.443122050000042],[11.369827515000111,6.455756938000164],[11.389361206000046,6.473921204000106],[11.395665731000035,6.496736348000098],[11.401763550000084,6.538180848000067],[11.416749715000066,6.572003073000147],[11.443104695000043,6.59326792400013],[11.482585490000048,6.597169495000088],[11.50976729400014,6.612310689000097],[11.533435099000087,6.645099386000112],[11.56237390100003,6.712485454000031],[11.568885132000105,6.739098816000151],[11.571468954000096,6.76622894300003],[11.566611369000098,6.784186504000104],[11.544597209000102,6.808939515000119],[11.53808597800014,6.823899841000099],[11.543667033000048,6.850694071000078],[11.561753784000075,6.876067200000064],[11.623248739000076,6.932291158000055],[11.681126343000102,6.968619690000111],[11.684847046000101,6.973839010000134],[11.688464396000086,6.986913147000081],[11.6924951580001,6.99161570300015],[11.697249389000092,6.992855937000101],[11.70748132400007,6.991822408000118],[11.718643433000095,6.994457906000136],[11.734249715000116,6.995078024000108],[11.741071004000077,6.997506815000065],[11.746858764000052,7.005361634000095],[11.748615764000135,7.014973450000112],[11.751509643000134,7.023965149000063],[11.766392456000062,7.033525289000053],[11.808870484000096,7.071920878000085],[11.820342651000118,7.078793843000141],[11.833985230000053,7.082979635000086],[11.845147339000079,7.081946106000103],[11.854139038000111,7.077811992000078],[11.862613973000123,7.07543487600013],[11.87222578900011,7.079362284000098],[11.881320842000092,7.102048239000069],[11.868918497000038,7.127111308000082],[11.82995446800004,7.169382630000157],[11.780241740000122,7.241057841000042],[11.766185750000117,7.252943421000069],[11.742414592000044,7.257439270000091],[11.736626831000079,7.263278707000082],[11.744585001000132,7.272167054000093],[11.762465047000092,7.285551249000122],[11.782722209000097,7.304516500000076],[11.84473392700005,7.396397197000055],[11.903545283000057,7.453556830000081],[11.966173543000139,7.514426168000114],[11.992838582000102,7.554010315000069],[12.008548217000055,7.564862366000113],[12.021053915000067,7.57623118100011],[12.024981323000132,7.596591696000131],[12.010718628000063,7.655244446000082],[12.009064982000098,7.676328430000098],[12.012165568000057,7.698342591000085],[12.018986857000101,7.718858134000058],[12.054953654000087,7.783918763000131],[12.154275757000049,7.921326396000069],[12.192102906000029,7.960652161000056],[12.197787313000077,7.975173239000099],[12.195100138000043,7.9917096960001],[12.18817549600007,8.016256002000162],[12.18269779500008,8.054651591000093],[12.182594442000065,8.093486430000054],[12.188278849000085,8.117774353000144],[12.229103231000094,8.175496928000129],[12.233713188000138,8.188454644000045],[12.236751343000066,8.196994324000073],[12.237681518000016,8.216889750000078],[12.221765177000094,8.297660014000115],[12.219284709000107,8.34316111200009],[12.227036173000045,8.386310934000107],[12.249980510000057,8.418763733000032],[12.271787964000081,8.427781271000086],[12.310235229000028,8.421347555000125],[12.331319214000075,8.424293112000043],[12.343204793000096,8.432742208000121],[12.35116296300015,8.444240214000061],[12.357570842000086,8.456358338000143],[12.365115601000042,8.466564433000116],[12.395191284000106,8.487338359000148],[12.403872925000087,8.49653676400007],[12.403252808000104,8.524235332000089],[12.400462280000056,8.53842051200013],[12.377001180000065,8.595109559000134],[12.36883630400007,8.609578960000078],[12.396328166000046,8.600768128000084],[12.410590861000088,8.598494365000064],[12.424440145000062,8.599786275000113],[12.440253133000056,8.606607565000076],[12.45182865400011,8.61469492600007],[12.464334350000115,8.621154480000113],[12.482524454000043,8.623247376000094],[12.49554691500009,8.61955251000009],[12.52779300900005,8.604850565000092],[12.542572469000078,8.60200836200012],[12.557972046000145,8.605677389000107],[12.660394735000068,8.659317526000095],[12.678171428000098,8.678696187000057],[12.692847534000094,8.710890605000102],[12.70163252800009,8.739157613000089],[12.708867228000143,8.750914001000083],[12.720236043000028,8.756469218000092],[12.734498738000099,8.755900777000122],[12.747211141000065,8.753627014000116],[12.759613484000027,8.753420309000148],[12.772946004000062,8.759053039000092],[12.794546753000134,8.788611959000121],[12.805708862000074,8.831503397000077],[12.828239787000085,9.019967346000087],[12.821005086000099,9.056425070000088],[12.82214196800004,9.096810201000068],[12.842192424000075,9.144430033000091],[12.888391154000118,9.226724752000067],[12.894592326000094,9.24395884200004],[12.898416382000049,9.262433166000065],[12.899346557000086,9.302017314000109],[12.891285034000106,9.331989645000064],[12.881569865000072,9.352220968000054],[12.853147827000043,9.356639303000065],[12.848393595000061,9.359946595000054],[12.855421590000077,9.378110860000092],[12.862036173000147,9.382890931000091],[12.920740601000118,9.410486146000082],[12.929008830000072,9.416118877000116],[12.940067586000055,9.427100119000102],[12.96900638800011,9.46407460500005],[12.982442261000074,9.474590759000108],[13.051688680000096,9.504511414000135],[13.130340210000071,9.5165261840001],[13.195452515000056,9.542209371000084],[13.223461141000058,9.613135275000047],[13.228422078000108,9.677911682000058],[13.241341187000016,9.745323588000062],[13.251056356000078,9.769249777000068],[13.26046146700011,9.785708720000045],[13.262941936000088,9.801728415000085],[13.251986531000114,9.824233500000103],[13.222944376000044,9.854128316000129],[13.212712443000044,9.87014801000008],[13.211058798000096,9.892756449000032],[13.218706909000074,9.913039449000038],[13.242271362000082,9.949755554000106],[13.24640547700011,9.973475037000057],[13.242478068000139,9.992672831000078],[13.230489136000074,10.02535817500005],[13.230179077000088,10.045331116000085],[13.247955770000118,10.079411723000133],[13.281338745000085,10.092098287000084],[13.359783569000115,10.10054738400008],[13.378387085000071,10.108608907000075],[13.392671966000108,10.116957418000098],[13.401951538000077,10.122380677000109],[13.423242229000039,10.13847788600009],[13.434921102000116,10.15341237400014],[13.45083744300004,10.187157084000106],[13.453007853000114,10.200515442000054],[13.451354207000094,10.212116801000093],[13.44453291800005,10.23247731500004],[13.444842976000103,10.245473938000146],[13.467167196000077,10.307589010000129],[13.501273641000038,10.496337179000122],[13.538790730000128,10.62141998300011],[13.566282593000011,10.679013367000051],[13.744411254000113,10.930496725000083],[13.749838822000129,10.942441823000152],[13.757020304000037,10.958246969000115],[13.75040572100005,10.996203308000132],[13.754849894000131,11.01671885200011],[13.765908650000142,11.033901265000083],[13.78203169800014,11.047518006000075],[13.820065552000074,11.069273783000085],[13.83205448400011,11.08480255100011],[13.849211059000083,11.12456756600011],[13.87318892400009,11.166502991000101],[13.906261841000088,11.208025004000092],[13.943882284000097,11.245722962000128],[13.982329549000069,11.27626373300012],[14.01312870300012,11.276367086000064],[14.05250614400012,11.265153300000108],[14.12257938600007,11.235723572000026],[14.143249959000087,11.232726338000106],[14.165470826000101,11.238333232000116],[14.186761515000086,11.249236959000084],[14.204641561000072,11.262130229000093],[14.23213342300002,11.29029388400005],[14.244329061000144,11.295435690000131],[14.271304158000078,11.298639628000103],[14.279158976000105,11.301843567000077],[14.36824914600001,11.383001404000126],[14.38705936600013,11.393388367000057],[14.446280558000097,11.411681824000127],[14.467261190000102,11.423851624000122],[14.503951456000094,11.456304424000052],[14.524932088000071,11.468835958000057],[14.57660852100011,11.487336121000082],[14.593765096000082,11.496431173000147],[14.605754029000137,11.51472463000003],[14.616192667000092,11.53867665600012],[14.62384078000005,11.563481344000067],[14.627561483000079,11.58435862300014],[14.62714807100005,11.609680074000025],[14.621360311000075,11.629782206000087],[14.610198201000058,11.646835429000118],[14.593868449000098,11.66301015200011],[14.588597452000073,11.669676412000115],[14.585083456000119,11.676807760000159],[14.580949341000093,11.683267314000119],[14.573507935000094,11.687711487000115],[14.556454712000061,11.687504781000072],[14.552423950000048,11.689003398000082],[14.543328898000082,11.701095683000062],[14.541881958000088,11.709829000000127],[14.546532837000141,11.718613993000119],[14.583223104000126,11.766363017000089],[14.590664510000037,11.783157857000063],[14.612058553000054,11.884960429000117],[14.623427368000137,11.916534729000091],[14.62714807100005,11.950072734000102],[14.626941365000109,11.957204082000146],[14.625184367000116,11.968107809000102],[14.606270792000089,12.01125762900004],[14.604307088000041,12.030429586000139],[14.622187133000097,12.04200510600009],[14.619913370000093,12.052495423000037],[14.637173299000068,12.12422231100004],[14.643167765000099,12.135849508000092],[14.648128703000053,12.141843974000025],[14.650609172000118,12.148096822000113],[14.66993615700008,12.167423808000066],[14.668282512000134,12.178069153000152],[14.663424927000106,12.187577617000045],[14.651539348000084,12.19377878900012],[14.643167765000099,12.190626526000074],[14.629318481000043,12.183495179000133],[14.616296020000108,12.17894765200009],[14.610611613000058,12.183546855000145],[14.604100382000098,12.204320781000092],[14.588287394000103,12.217188213000084],[14.568133585000112,12.227730204000054],[14.548496541000077,12.241579488000113],[14.558315063000066,12.246902161000065],[14.562139120000097,12.248400778000075],[14.562139120000097,12.255842184000088],[14.551183715000034,12.260441386000137],[14.521521444000143,12.282352193000094],[14.514390096000112,12.289380188000095],[14.512426391000075,12.298630269000114],[14.517594035000085,12.313358053000115],[14.514390096000112,12.323538310000089],[14.487104939000089,12.337801006000062],[14.423129516000131,12.35314890600013],[14.217560669000079,12.359298402000091],[14.202161092000095,12.362502340000077],[14.188931925000077,12.370408834000116],[14.179836873000113,12.385601705000056],[14.179113403000116,12.397280579000025],[14.185107870000138,12.427873027000132],[14.18541792800005,12.44704498300014],[14.180216224000048,12.463530383000075],[14.178699992000105,12.468335673000126],[14.177356404000136,12.545591940000106],[14.121132446000075,12.811790161500097],[14.0649084880001,13.077988383000076],[14.41816857900008,13.081140646000035],[14.435428507000069,13.07028859500008],[14.481040720000065,13.000507963000102],[14.48214400200007,12.998820089000061],[14.496303345000113,12.983808085000078],[14.504674927000082,12.969002788000068],[14.507672159000094,12.952440491000061],[14.506121867000074,12.932079977000129],[14.49061893700005,12.886346334000095],[14.490102173000109,12.873608094000133],[14.500437459000125,12.859112854000102],[14.53102990700003,12.836246033000092],[14.54901330600012,12.818210958000094],[14.54901330600012,12.780461324000044],[14.551080363000096,12.771572978000107],[14.554801066000094,12.766896261000056],[14.560692179000085,12.766224467000157]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Democratic Republic of the Congo","sov_a3":"COD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Democratic Republic of the Congo","adm0_a3":"COD","geou_dif":0,"geounit":"Democratic Republic of the Congo","gu_a3":"COD","su_dif":0,"subunit":"Democratic Republic of the Congo","su_a3":"COD","brk_diff":0,"name":"Dem. Rep. Congo","name_long":"Democratic Republic of the Congo","brk_a3":"COD","brk_name":"Democratic Republic of the Congo","brk_group":null,"abbrev":"D.R.C.","postal":"DRC","formal_en":"Democratic Republic of the Congo","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Congo, Dem. Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":7,"pop_est":68692542,"gdp_md_est":20640,"pop_year":-99,"lastcensus":1984,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"CG","iso_a2":"CD","iso_a3":"COD","iso_n3":"180","un_a3":"180","wb_a2":"ZR","wb_a3":"ZAR","woe_id":23424780,"woe_id_eh":23424780,"woe_note":"Exact WOE match as country","adm0_a3_is":"COD","adm0_a3_us":"COD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":15,"long_len":32,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"COD.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.994589909000126,-5.868244252999901],[12.969298816000077,-5.88801436299984],[12.940630803000118,-5.896823945999898],[12.88442328700009,-5.907861518999837],[12.87011427100009,-5.917740778999871],[12.839276059000099,-5.927639893999839],[12.807373291000118,-5.953969799999868],[12.783150992000115,-5.960571545999869],[12.761119136000103,-5.958406460999868],[12.745127800000091,-5.940199476999865],[12.765463596000103,-5.92006689799986],[12.795161178000058,-5.897029728999883],[12.828160887000138,-5.871794391999828],[12.854595119000066,-5.868469960999916],[12.905290483000044,-5.869487836999852],[12.933938671000107,-5.873822751999882],[12.953781894000143,-5.871599569999873],[12.97252187100011,-5.868281448999866],[12.994589909000126,-5.868244252999901]]],[[[25.543742716000082,5.375280253000141],[25.5618294680001,5.373006490000122],[25.575058634000072,5.374918518000143],[25.581259806000077,5.374918518000143],[25.589011271000057,5.362283630000206],[25.59231856200006,5.349183655000147],[25.600483439000097,5.340450338000082],[25.62291101100007,5.340760396000164],[25.61981042500014,5.337220561000109],[25.61722660300012,5.333551534000108],[25.614229370000118,5.329934184000123],[25.609165079000064,5.326523539000107],[25.609165079000064,5.320296529000103],[25.62342777500004,5.3099354040001],[25.631075887000094,5.311821594000193],[25.637897176000138,5.317971090000171],[25.65009281400006,5.320296529000103],[25.655777222000097,5.317764384000113],[25.66311527500011,5.309160258000175],[25.6675594480001,5.307248230000155],[25.668903035000085,5.306137187000161],[25.69112390100011,5.299806824000143],[25.7050765380001,5.289600728000067],[25.732775106000133,5.258879090000121],[25.743730509000102,5.250610860000165],[25.757993205000076,5.244435527000093],[25.771739135000104,5.245469055000171],[25.781144246000082,5.258879090000121],[25.769258667000145,5.265157776000123],[25.77835371900011,5.269136861000106],[25.792306355000104,5.262832337000191],[25.79468347100007,5.238389384000143],[25.799437703000137,5.240094706000206],[25.810186401000067,5.242678528000113],[25.81463057500008,5.244590556000134],[25.811426636000107,5.230922140000118],[25.814217163000052,5.221620381000193],[25.818971394000044,5.214566549000082],[25.826102742000103,5.194696961000176],[25.83623132300005,5.200019633000124],[25.846049845000096,5.211672668000091],[25.849357137000112,5.21787384100017],[25.87240482600006,5.217098694000157],[25.88356693500009,5.203533630000081],[25.892972046000068,5.185214335000111],[25.910852092000113,5.170098979000102],[25.91250573700006,5.190381979000108],[25.925631551000034,5.20177663200019],[25.943201538000096,5.204102071000135],[25.95860111500008,5.197384135000107],[25.95839440900005,5.214824931000152],[25.962838583000035,5.22451426200017],[25.97193363400001,5.227666524000142],[25.985989624000126,5.225341085000196],[25.996634969000127,5.219243266000149],[26.013894897000114,5.199244486000111],[26.02691735800005,5.189968567000093],[26.037355998000095,5.197952576000162],[26.050998576000097,5.200226339000082],[26.06267745000008,5.200122986000153],[26.067845093000074,5.20084645600015],[26.07053226700009,5.212241109000146],[26.077146851000094,5.216323547000157],[26.086035197000115,5.215238343000152],[26.09523360200012,5.211052552000126],[26.091719605000062,5.219062398000104],[26.088412313000077,5.244590556000134],[26.093373250000095,5.241438294000176],[26.098437540000077,5.239577942000082],[26.104535359000124,5.238596090000115],[26.11249353000011,5.238389384000143],[26.11962487800014,5.241541646000201],[26.12510257900004,5.24859548000012],[26.129960164000067,5.258879090000121],[26.14422285900011,5.251799418000189],[26.150837443000114,5.23996551500008],[26.157348673000087,5.232472432000137],[26.17088789800007,5.238389384000143],[26.17533207200009,5.233686829000163],[26.1817399490001,5.229578552000149],[26.184530477000063,5.225341085000196],[26.195175822000063,5.234772034000158],[26.198276408000112,5.238389384000143],[26.207164754000132,5.207693584000197],[26.21357263200008,5.199141134000086],[26.2261816810001,5.204257101000167],[26.225664917000046,5.199037781000158],[26.2261816810001,5.183147278000135],[26.230729207000138,5.185162659000184],[26.242098022000107,5.188056539000172],[26.24664554800006,5.189968567000093],[26.253983602000062,5.172321066000108],[26.272483765000086,5.159066061000189],[26.291810751000128,5.150978699000106],[26.317338908000067,5.146431173000167],[26.33635583500012,5.148601583000158],[26.35330570500014,5.147774760000132],[26.362710815000096,5.135966695000207],[26.36942875200012,5.140565897000073],[26.390616089000076,5.149014995000158],[26.400124552000136,5.133641256000189],[26.414283895000093,5.122711690000116],[26.42937341300009,5.113797506000196],[26.441879110000087,5.104289042000119],[26.46068933100011,5.066022644000114],[26.46265303500013,5.059640605000183],[26.475158732000125,5.057263489000135],[26.502547241000087,5.047470805000088],[26.519807170000064,5.045972188000164],[26.528282105000073,5.048090922000141],[26.541511271000076,5.053129374000207],[26.55422367300011,5.059847310000137],[26.561355021000054,5.067056173000196],[26.568176310000123,5.059640605000183],[26.579855183000088,5.074342550000082],[26.59835534700011,5.080621237000173],[26.61551192200008,5.078244121000139],[26.623470093000037,5.067056173000196],[26.629671265000127,5.067056173000196],[26.635665731000046,5.077624003000082],[26.644037313000126,5.078347473000164],[26.657576538000114,5.073257345000172],[26.66760176600013,5.078347473000164],[26.68124434400005,5.089277039000137],[26.691682983000074,5.094393006000132],[26.73943200700006,5.094393006000132],[26.753694702000132,5.092274272000154],[26.760619344000105,5.088114319000127],[26.8018571370001,5.04452524800017],[26.80836836800009,5.039099223000107],[26.815706421000073,5.040184428000188],[26.8261450600001,5.050752259000163],[26.832656291000088,5.053387757000095],[26.839477580000047,5.051165670000088],[26.84495528100012,5.046282247000149],[26.848365926000042,5.041372986000127],[26.849296102000096,5.039099223000107],[26.867072795000126,5.03754893000017],[26.872653849000127,5.041786397000138],[26.88412601700014,5.053387757000095],[26.889603719000064,5.062121073000156],[26.899215535000053,5.085995585000148],[26.90396976700006,5.094393006000132],[26.933683715000114,5.126587423000075],[26.961640666000108,5.151185404000159],[26.991716349000086,5.171287537000125],[27.027476441000115,5.189968567000093],[27.073675171000072,5.203326925000126],[27.116359904000063,5.200303854000197],[27.157494344000042,5.185421041000153],[27.239711548000088,5.144880880000144],[27.262810913000067,5.138447164000183],[27.28441166200011,5.135966695000207],[27.30187829600007,5.131987610000137],[27.315727580000043,5.122401632000134],[27.32864668700006,5.110800273000095],[27.34275435400008,5.100594177000119],[27.351384318000015,5.097338562000132],[27.36120284000009,5.095478210000124],[27.38032312000007,5.094393006000132],[27.391381876000082,5.092222595000138],[27.40533451300007,5.082843323000175],[27.414842977000063,5.080724589000113],[27.441301310000142,5.070725199000094],[27.443058309000037,5.057780253000175],[27.436340373000093,5.013157654000153],[27.441818074000082,5.007964172000143],[27.44786421700013,5.003468323000121],[27.45453047700005,4.999799297000123],[27.461558472000064,4.996879578000133],[27.492822713000066,4.973030904000154],[27.501349325000064,4.963289897000109],[27.505018351000075,4.953858948000146],[27.5092041420001,4.932439067000118],[27.514578492000055,4.922439677000114],[27.53256189000004,4.90758270200017],[27.55271569800004,4.900528870000144],[27.64097904400009,4.89094289200014],[27.658755737000032,4.879651592000172],[27.671881551000098,4.855906271000123],[27.679736369000125,4.814487610000171],[27.685937541000015,4.797899475000164],[27.699063355000078,4.787434997000119],[27.706504761000105,4.787434997000119],[27.72583174700014,4.79278350800017],[27.734823445000103,4.793196920000184],[27.744228556000053,4.787848409000134],[27.752600138000048,4.77766815200016],[27.759214722000138,4.766273499000164],[27.76314213100011,4.757100932000171],[27.766862834000108,4.7354485070001],[27.758801310000106,4.677157491000159],[27.760765015000057,4.635997213000167],[27.765209187000067,4.612071025000176],[27.77244388800011,4.595818786000152],[27.776888061000133,4.59574127200014],[27.80138269000008,4.590573629000133],[27.80923750800011,4.587989808000131],[27.819469441000106,4.579566549000148],[27.837659546000054,4.559981181000126],[27.849131714000062,4.553211568000094],[27.856934855000077,4.552462260000169],[27.88551192200006,4.556673890000126],[27.890989624000042,4.555847066000098],[27.907939494000033,4.548689880000154],[27.914037313000104,4.549309998000125],[27.91641442900004,4.553573303000178],[27.91703454600011,4.558430888000188],[27.917861369000036,4.560756328000139],[27.91610437000014,4.562151591000202],[27.92034183700011,4.565278016000163],[27.92923018400012,4.569980571000144],[27.934294475000083,4.568171896000152],[27.944526408000087,4.557294006000092],[27.951244344000116,4.555950419000126],[27.96250980600007,4.557449036000135],[28.01403120900008,4.550033467000119],[28.01708011800008,4.539052226000138],[28.01211918100006,4.521766460000137],[28.008915243000075,4.499080505000165],[28.00958703600014,4.488383484000166],[28.011240682000103,4.480141093000128],[28.01418623900011,4.472208761000075],[28.019043823000118,4.462751974000113],[28.04973962400007,4.419137064000154],[28.059764852000086,4.420067240000108],[28.076301310000076,4.437688904000183],[28.085551392000095,4.443321635000132],[28.101726115000105,4.442133077000108],[28.10834069800009,4.433994039000183],[28.112371460000077,4.414641215000131],[28.140225057000066,4.37932037400013],[28.158725219000075,4.360794373000189],[28.17758711700011,4.347229310000116],[28.216964559000104,4.342035827000103],[28.26104455500007,4.350381572000174],[28.303160848000118,4.352241923000179],[28.33685388200007,4.327488912000149],[28.345845581000106,4.306379090000121],[28.349101196000102,4.292348938000202],[28.357421102000075,4.282866313000127],[28.381502320000095,4.275295716000173],[28.404136596000054,4.277827860000158],[28.425427287000048,4.290824483000094],[28.443927449000086,4.308497823000095],[28.482426392000036,4.358985698000197],[28.496844116000148,4.369010926000129],[28.51927168800006,4.374411113000107],[28.52878015200011,4.373842672000151],[28.538495321000056,4.371827291000102],[28.548210490000116,4.370819601000122],[28.55730554200008,4.373532613000165],[28.56428186100007,4.382601828000134],[28.56671065200004,4.394125672000158],[28.570534708000082,4.405106914000143],[28.582420288000094,4.412625834000096],[28.623658081000112,4.42236684200013],[28.638644247000087,4.432082011000162],[28.65373376400007,4.452700907000164],[28.695178264000045,4.532592672000177],[28.70406661000007,4.533987935000155],[28.724530477000112,4.533987935000155],[28.738173055000118,4.540886739000129],[28.74685469600007,4.549309998000125],[28.75543298400009,4.553986714000189],[28.769178914000037,4.549775086000153],[28.783648315000075,4.53037058500017],[28.785095255000073,4.507994690000189],[28.789952840000097,4.488590190000124],[28.81527429200008,4.47828074100012],[28.825712931000112,4.478384094000148],[28.85620202600009,4.48246653200016],[28.903640992000074,4.478590800000106],[28.925551799000115,4.480812887000112],[28.986219930000118,4.495928243000122],[28.994074748000056,4.487453308000113],[29.04234053600007,4.455336405000182],[29.053192587000098,4.450788879000157],[29.055983114000075,4.436500346000173],[29.05887699300007,4.437688904000183],[29.098564494000126,4.420532328000135],[29.109829956000116,4.412367452000112],[29.173495320000086,4.348004456000126],[29.196129598000137,4.337074890000153],[29.221296021000196,4.340692240000138],[29.228685750000096,4.356711935000192],[29.23157963100019,4.375547994000115],[29.242845093000113,4.387356059000126],[29.267443074000223,4.387872823000151],[29.28739017800015,4.383583679000182],[29.30392663600011,4.387149353000154],[29.31870609600017,4.411075542000161],[29.328938029000113,4.434924215000137],[29.33885990400014,4.449548645000121],[29.390226278000085,4.493757833000132],[29.402628621000044,4.512077128000115],[29.41089685000011,4.532282613000106],[29.41730472900022,4.555485331000099],[29.423919311000216,4.566053162000173],[29.442729533000172,4.583442281000188],[29.444589884000063,4.5944751990001],[29.443659708000126,4.604707133000176],[29.44676029500007,4.622122091000108],[29.449240763,4.657055359000196],[29.45761234500011,4.669535217000188],[29.472598510000154,4.672196554000109],[29.49409590600013,4.668294983000152],[29.498126669000182,4.665607809000122],[29.508461955000115,4.655350037000133],[29.51326786300009,4.652146098000159],[29.528822469000122,4.659871725000158],[29.53502364100021,4.660698547000094],[29.546392456,4.657365418000083],[29.576674846000028,4.644446309000074],[29.606750529000095,4.643903707000121],[29.618532755000132,4.641578268000103],[29.66028731300017,4.622122091000108],[29.671862834000105,4.613983053000183],[29.700801636000076,4.588299866000114],[29.715322713000116,4.579669901000074],[29.72291914900009,4.578197123000166],[29.74514001400021,4.58390736900013],[29.751754598000133,4.581271871000112],[29.77449222800007,4.567500102000167],[29.78462080900007,4.563288472000124],[29.796713094000125,4.556027934000141],[29.79330244900021,4.545382589000155],[29.788295252000154,4.539365877000151],[29.783690633000077,4.533832906000114],[29.77769616700007,4.523859355000113],[29.778522990000198,4.51510019900013],[29.785447632000086,4.49856374100014],[29.786997925000176,4.48967539500012],[29.785654337000125,4.479365947000119],[29.776765991000133,4.449341939000163],[29.77619755100008,4.405623678000083],[29.787824748000133,4.368804220000172],[29.81485152200017,4.34676422200009],[29.860688517000114,4.347280986000129],[29.88270267800007,4.344025371000143],[29.90848921700021,4.329194234000113],[29.930348348000024,4.30865285300014],[29.940115194000075,4.288344014000116],[29.936859578000195,4.278318787000103],[29.92931481900004,4.268371073000182],[29.923217000000108,4.257751567000113],[29.924147176000158,4.245581767000189],[29.932157023000144,4.236150818000141],[29.942647339000104,4.233773702000178],[29.954171183000113,4.233825379000109],[29.966005087000127,4.231809998000159],[29.989362834000104,4.217779847000145],[30.004762411000083,4.199279683000114],[30.027913452000146,4.154450379000139],[30.042899617000128,4.133108012000136],[30.057782430000174,4.12365122500016],[30.099795369000187,4.115098775000149],[30.122688029000102,4.102463888000115],[30.133023315000205,4.082801005000164],[30.1385010180002,4.059701640000185],[30.147492716000126,4.036653951000133],[30.17157393400006,4.00818023700019],[30.17808516500017,3.997095642000176],[30.18035892700018,3.986217753000133],[30.18046228000011,3.975649923000148],[30.182115926000076,3.965521342000102],[30.18935062700021,3.956090394000142],[30.205887085000114,3.950380147000188],[30.270947713000194,3.949449971000135],[30.33792037000009,3.927875061000166],[30.41894901500021,3.879712626000185],[30.4568278400001,3.867594502000187],[30.46571618600009,3.866095887000185],[30.485869995000172,3.865579122000141],[30.495481812000126,3.867077739000151],[30.505507039000094,3.869764913000097],[30.51553226700011,3.870850118000178],[30.525247436000058,3.867542827000178],[30.538890015000074,3.841549581000123],[30.56286788000008,3.694866028000163],[30.562247762000226,3.675332336000068],[30.554909709000157,3.636394145000168],[30.549328654000217,3.62409515400013],[30.54343754100014,3.617868144000056],[30.543024129000198,3.612907207000191],[30.55346276900016,3.604509786000108],[30.562247762000226,3.60135752400015],[30.572634725000086,3.601047465000164],[30.592426798000105,3.60352793400014],[30.604932496000146,3.606680197000102],[30.636455119000203,3.62409515400013],[30.65376672400012,3.630606384000188],[30.665393921000174,3.632053324000182],[30.693350870000156,3.631949972000158],[30.71464156100015,3.64380971300001],[30.731333048000096,3.663498434000132],[30.74693933100022,3.674867248000126],[30.765129435000087,3.661715597000068],[30.769160197000158,3.651845398000162],[30.77226078300012,3.617558085000069],[30.779082072000083,3.602597758000101],[30.79210453300018,3.592701721000111],[30.823213746000217,3.580428569000162],[30.837683147000092,3.56267771400006],[30.82765791800014,3.511104635000137],[30.839543498000097,3.490201518000148],[30.861247599000052,3.498211365000046],[30.880161174000104,3.514411927000125],[30.896387573000226,3.519967143000144],[30.90930668100023,3.49614430700008],[30.90961674000013,3.487178447000048],[30.902898804000102,3.458911438000143],[30.90444909700014,3.447465108000145],[30.914474324000114,3.426484477000145],[30.91633467600016,3.414805603000161],[30.910030152000136,3.393411560000146],[30.904932931000104,3.386035094000092],[30.89731774900005,3.375014750000148],[30.868482300000064,3.343337097000144],[30.84869022600017,3.30925649000001],[30.846881551000166,3.304398906000159],[30.845641317000144,3.293908589000125],[30.842437377000152,3.288740946000032],[30.837786499000085,3.286415507000171],[30.82574589000015,3.283676656000054],[30.822128540000133,3.28140289300012],[30.80419681800018,3.246004537000189],[30.763415783000113,3.123436950000126],[30.747869507000157,3.076712545000106],[30.743838745000087,3.055473531000132],[30.745078980000216,3.036301575000124],[30.757067912000167,3.021470439000097],[30.80362837700014,2.989069316000013],[30.820939982000226,2.973152975000161],[30.843987671000182,2.932793681000192],[30.85483972200015,2.89320953400015],[30.853392782000153,2.853367005000038],[30.82869144700012,2.786084290000133],[30.821870157000173,2.776162415000059],[30.817942749000196,2.774198710000107],[30.8058504640002,2.771873271000089],[30.80161299700009,2.769082743000126],[30.79913252800011,2.763450012000177],[30.798925822000143,2.753528138000192],[30.797685587000185,2.748360495000099],[30.764302613000066,2.658391825000137],[30.762013299000074,2.645781198000165],[30.761253703000104,2.641596985000092],[30.758928263000172,2.633793844000152],[30.73939457200018,2.603304749000088],[30.735260458000223,2.593072815000184],[30.7340202230001,2.574469300000146],[30.73784427900014,2.537468974000177],[30.73701745600013,2.519537252000034],[30.729369344000162,2.503465882000143],[30.71676029400012,2.483105367000036],[30.707665243000033,2.462279765000161],[30.710559123000028,2.4451231890001],[30.724925171000134,2.440782369000118],[30.794998413000176,2.440110575000134],[30.80492028800009,2.43437449100017],[30.807142375000094,2.422178853000077],[30.806987345000064,2.406985982000052],[30.809674520000073,2.392361552000153],[30.81980310100013,2.375980123000119],[30.836339559000205,2.356343078000165],[30.85494307500008,2.33970326800015],[30.87178959200011,2.332055155000177],[30.900573364000163,2.345956116000067],[30.914474324000114,2.378150534000099],[30.930907430000186,2.405590719000159],[30.96801110900017,2.405435689000115],[30.98485762600015,2.394635315000173],[31.041288289000107,2.331228333000155],[31.043562052000112,2.327042542000115],[31.04593916800016,2.319652812000115],[31.04438887500012,2.313916728000152],[31.03880782000013,2.310971171000062],[31.035500529000128,2.306940409000148],[31.040668172000125,2.297897033000183],[31.055240926000096,2.290248922000117],[31.09906254000012,2.282704163000162],[31.112601766000154,2.28208404500019],[31.1292415770001,2.284667868000099],[31.177559041000134,2.302909648000153],[31.179057658000115,2.259759827000138],[31.18246830200016,2.238727519000037],[31.19011641500006,2.221519267000147],[31.210890340000073,2.205344543000152],[31.26747603300006,2.173253479000124],[31.278739869000074,2.156021156000108],[31.28044681800006,2.153409729000131],[31.280095681000176,2.151441144000145],[31.271455119000024,2.102999370000134],[31.242826376000068,2.051167908000153],[31.183295125000054,1.976211243000179],[31.119112996000155,1.895363464000042],[31.09601754700023,1.866363001000124],[31.025837036000066,1.77823883100011],[30.954420207000197,1.720671285000151],[30.81701257300008,1.609515279000149],[30.681723673000107,1.500348816000098],[30.59728438300007,1.391673279000159],[30.553704453000165,1.33563247800015],[30.47827356000013,1.238633525000097],[30.458274780000096,1.221683655000092],[30.445562378000233,1.212795309000157],[30.43160974100013,1.207007548000192],[30.41269616700012,1.202046611000142],[30.39926029500023,1.200599670000145],[30.37662601700012,1.203080140000125],[30.364947143000137,1.202046611000142],[30.34820398000008,1.189024150000108],[30.336060018000094,1.16887034100013],[30.323812703000073,1.155847880000096],[30.306552775000085,1.163909404000094],[30.295700724000113,1.172642721000159],[30.28650231900022,1.174296366000107],[30.27797570800007,1.171609192000176],[30.269345744000166,1.167268371000105],[30.238856649000155,1.136004130000103],[30.236169475000143,1.12949290000013],[30.23410241700017,1.108098857000115],[30.231518596000083,1.097763570000112],[30.228004598000126,1.089030253000132],[30.215292195000043,1.077092997000193],[30.21560225500016,1.057766012000059],[30.2209766030002,1.017096660000092],[30.214051961000134,0.998544820000148],[30.19152103700011,0.974877014000128],[30.186870158000115,0.958753968000138],[30.183769572000106,0.95513661700015],[30.165682820000168,0.921443583000112],[30.154830770000128,0.908679505000052],[30.145115600000192,0.903150126000128],[30.038352092000114,0.878913879000152],[29.99639082900009,0.859948629000186],[29.982194040000167,0.849017102000147],[29.960217326000162,0.832095032000126],[29.947298218000157,0.824601950000101],[29.928281290000054,0.785017802000141],[29.926834350000178,0.774889221000094],[29.932312053000175,0.723161113000046],[29.920013061000216,0.638670145000077],[29.91949629700011,0.618102925000173],[29.937996460000107,0.537280985000123],[29.940476928000095,0.498316956000053],[29.92608285600008,0.467073351000167],[29.92290694200014,0.460179748000087],[29.903908655000095,0.438229209000127],[29.85107670100021,0.377187399000121],[29.839604533000195,0.358480530000136],[29.832628215000195,0.336983134000192],[29.800640502000107,0.172445374000105],[29.79712650600007,0.164797261000118],[29.787204630000158,0.158492737000103],[29.78038334200019,0.161179911000133],[29.77304528800019,0.167484436000152],[29.761263062000097,0.172135315000119],[29.755785359000104,0.160869853000065],[29.711808715000046,0.099581604000107],[29.703075399000195,0.072503154000145],[29.701628458000098,0.055243226000144],[29.71346236200011,0.011628316000099],[29.714340861000064,-0.007491962999893],[29.709018188000215,-0.026302184999807],[29.69403202300023,-0.063095804999904],[29.676617066000205,-0.165105081999826],[29.670569225000207,-0.200867429999931],[29.65398278800015,-0.298947041999966],[29.65098074500011,-0.31645475299986],[29.629384806000044,-0.442400817999868],[29.631865275000138,-0.461211038999878],[29.63461492500019,-0.466968118999887],[29.64509444200021,-0.488909606999897],[29.649745320000108,-0.504309182999876],[29.653052612000092,-0.565597431999834],[29.65088220200019,-0.579550068999836],[29.642820679000092,-0.585027770999915],[29.632175334000205,-0.585751240999812],[29.6228735760001,-0.588438414999928],[29.618842814000086,-0.599393818999914],[29.620496460000165,-0.605388284999933],[29.628247925000064,-0.616033629999848],[29.630573364000185,-0.622028095999951],[29.629281453000228,-0.629779560999879],[29.624423868000093,-0.634843851999847],[29.618842814000086,-0.638977965999956],[29.615535522000215,-0.644145608999878],[29.603029826000096,-0.72290049199988],[29.60220300300008,-0.743777770999856],[29.611091349000187,-0.78274179999984],[29.613365112000135,-0.803825784999859],[29.610781291000226,-0.863977152999908],[29.60799076400016,-0.878446553999837],[29.596725301000077,-0.891882425999881],[29.567166382000067,-0.901907653999913],[29.556004273000124,-0.919477640999887],[29.554660686000172,-0.928572691999861],[29.555280802000226,-0.938494567999939],[29.559156535000202,-0.957304788999949],[29.56034509300011,-0.972084247999874],[29.556521037000177,-0.981799417999909],[29.551517572000048,-0.990305308999908],[29.55135339400007,-0.990584411999819],[29.548459513000093,-1.00257334399987],[29.551198364000097,-1.020143330999843],[29.565926148000106,-1.058590595999888],[29.570060262000226,-1.077917581999841],[29.569130087000104,-1.095900979999911],[29.55693444800019,-1.157705992999823],[29.55703780100012,-1.181787210999943],[29.56525435400013,-1.197910257999837],[29.57553796400006,-1.213206480999887],[29.581429077000024,-1.234807229999859],[29.580447225000086,-1.243282164999869],[29.57099043800011,-1.268603616999854],[29.57150720200016,-1.279248961999926],[29.5831860760002,-1.29929941799989],[29.587113484000184,-1.310564879999845],[29.587320191000142,-1.32968515999984],[29.577915080000164,-1.388389587999896],[29.53864099100022,-1.402342223999966],[29.498746785000066,-1.431074319999894],[29.464330282000137,-1.466937764999841],[29.445065226000136,-1.497286823999957],[29.441696004000075,-1.502594501999823],[29.439628947000212,-1.504764912999903],[29.437406861000085,-1.506211852999897],[29.43492639200022,-1.50683196999988],[29.35849694800018,-1.509932555999825],[29.342787313000112,-1.516547138999911],[29.331211792000232,-1.531429951999854],[29.303823282000195,-1.587860615999972],[29.293694702000067,-1.600986429999864],[29.24542891400003,-1.640983988],[29.233336629000092,-1.658657327999833],[29.212252645000067,-1.698654886999804],[29.18664003500004,-1.739618238999839],[29.14931075000004,-1.799320575999843],[29.130500529000102,-1.843348896999899],[29.125539592000077,-1.879108988999832],[29.127710001000136,-1.915695901999868],[29.15427168700009,-2.072688903999918],[29.15633874500014,-2.108655700999805],[29.150550984000063,-2.150410257999837],[29.134841349000084,-2.197745869999892],[29.109829956000116,-2.23670989999988],[29.075413452000134,-2.263891702999956],[29.030920044000144,-2.275673928999879],[29.00213627100004,-2.274743753999829],[28.99366133600003,-2.27774098699993],[28.983377726000125,-2.287352802999933],[28.982189168000104,-2.296034443999815],[28.97877852400009,-2.306783141999915],[28.971233765000136,-2.321665954999872],[28.959658244000106,-2.339752705999885],[28.94544722500012,-2.354222106999913],[28.92813562000003,-2.364454039999899],[28.907258342000063,-2.37055185899986],[28.880386596000047,-2.379853616999881],[28.866330607000123,-2.391945901999861],[28.85883752400011,-2.418197529999901],[28.860852905000055,-2.439591572999902],[28.864573608000057,-2.459435322999894],[28.874702189000118,-2.477522073999907],[28.87821618700008,-2.48971771199993],[28.860852905000055,-2.505220641999841],[28.857235555000074,-2.518346455999989],[28.86095625800007,-2.531162210999895],[28.869844605000083,-2.537260029999857],[28.88105839000013,-2.542634378999907],[28.891342000000126,-2.55307301799985],[28.89805993700014,-2.576327412999859],[28.891342000000126,-2.652705179999913],[28.89909346500013,-2.660663350999883],[28.936403849000072,-2.685054625999896],[28.949736369000103,-2.690325621999847],[28.9796053470001,-2.693529560999906],[29.000120890000087,-2.703658141999866],[29.015365438000114,-2.720711364999886],[29.02859460400012,-2.74489593499986],[29.008234090000087,-2.747479756999951],[28.995521688000053,-2.758435159999848],[28.988803751000034,-2.775488382999881],[28.986891723000095,-2.796779072999868],[28.994901570000078,-2.813625589999845],[29.01314335100002,-2.818896585999866],[29.034072306,-2.820860290999818],[29.04905847100008,-2.827474873999904],[29.053502645000094,-2.835433044999859],[29.062701050000097,-2.862201435999836],[29.077583862000036,-2.884008890999866],[29.081717977000068,-2.893930764999865],[29.083268270000072,-2.910053812999848],[29.089779500000137,-2.926073506999884],[29.105075725000116,-2.934135029999965],[29.12336918100007,-2.940232848999926],[29.13840702300007,-2.950361429999972],[29.144246460000144,-2.966277770999824],[29.14817386800013,-2.986948342999838],[29.156752157000142,-3.004828388999882],[29.175975789000063,-3.012476500999952],[29.19447595200009,-3.014646910999943],[29.211529175000152,-3.021158141999833],[29.225378458000108,-3.03180348699982],[29.234628540000216,-3.046582946999834],[29.241539256000095,-3.104187711999841],[29.242328328000127,-3.110765075999879],[29.237780803000046,-3.122237243999891],[29.225016724000195,-3.129368590999917],[29.217523641000042,-3.146215107999808],[29.21411299600007,-3.166472268999911],[29.216903523000184,-3.233134866999833],[29.22382816600006,-3.252668558999829],[29.24088138800019,-3.266311136999846],[29.236116841000154,-3.270703730999927],[29.213079468000075,-3.291942646999899],[29.20873864800009,-3.305275165999831],[29.206671590000127,-3.334524027999876],[29.22517175300007,-3.588565367999976],[29.22325972500013,-3.667010191999822],[29.217122763000102,-3.709265928999841],[29.206568237000194,-3.781938578999842],[29.21504317200018,-3.899864195999883],[29.224551636000086,-3.926529235999823],[29.239796183000205,-3.948026630999947],[29.27772668400021,-3.988954365999887],[29.339480021000124,-4.093237405999915],[29.367223806000222,-4.189048239999805],[29.37275964400007,-4.208165791999932],[29.404178915000184,-4.449804788999899],[29.40727950000021,-4.462620543999875],[29.41089685000011,-4.502308043999861],[29.401336711000084,-4.586850686999924],[29.34082360800008,-4.751698506999915],[29.321031535000117,-4.836344502999836],[29.32377038600012,-4.920163675999902],[29.342792981000144,-4.999952894999851],[29.34423425300011,-5.005998229999832],[29.37782393400013,-5.087543639999879],[29.455648641000064,-5.229963886999868],[29.496369669000018,-5.391711119999826],[29.593521363,-5.620327656999933],[29.61243493600008,-5.704353534999868],[29.603029826000096,-5.781661478999879],[29.570887085000063,-5.837988789999883],[29.49605961100022,-5.93865447999984],[29.476112508000227,-6.002113137999871],[29.478696330000016,-6.041800637999855],[29.508823690000128,-6.153731790999871],[29.52551517700007,-6.273104349999812],[29.537710815000167,-6.312378438999872],[29.566029500000155,-6.359507344999884],[29.633932332000114,-6.446943867999835],[29.68436853000011,-6.581509297999901],[29.70700280800017,-6.619336445999878],[29.73862878400004,-6.652409362999862],[29.873090861000183,-6.754211933999912],[29.96911280500015,-6.80304026599984],[30.012720581000135,-6.825215351999816],[30.090855346000154,-6.890017598999832],[30.234670858000214,-7.057139179999837],[30.29446049000009,-7.149433288999901],[30.369598022000076,-7.310250345999805],[30.40494470200011,-7.436030780999871],[30.414711548000156,-7.501969908999798],[30.441634969000148,-7.596331074999838],[30.6549552820002,-7.927370299999878],[30.728129110000197,-8.104103698999893],[30.752106975000203,-8.194124042999858],[30.581781453000218,-8.219962259999875],[30.32494958500015,-8.258926289999863],[30.123618204000167,-8.28951873699988],[29.858104695000208,-8.329826354999838],[29.59228112800011,-8.370237324999906],[29.575844324000087,-8.372729113999839],[29.365938354000175,-8.40455047599984],[29.20811853000012,-8.428528340999847],[29.035105835000106,-8.454779967999883],[28.915268189000127,-8.472866718999795],[28.889171590000043,-8.483098652999871],[28.89278894100005,-8.50190887399988],[28.935473673000047,-8.590792337999844],[28.930461059000063,-8.679882506999846],[28.893098999000102,-8.765768736999874],[28.765406534000107,-8.934027200999893],[28.59906009900004,-9.096394550999904],[28.5061975510001,-9.16440073699988],[28.41509200000013,-9.207085468999878],[28.3723039140001,-9.235094094999809],[28.352460165000107,-9.27199106799982],[28.36853153500007,-9.30857798199986],[28.411371297000127,-9.324907734999897],[28.460463908000065,-9.335036314999854],[28.49539717600007,-9.353226419999885],[28.51596439600013,-9.378341165999828],[28.518134806000035,-9.397461445999822],[28.51627445400004,-9.415548196999836],[28.514724162000107,-9.430017597999864],[28.51968509900007,-9.44562388099989],[28.531570679000083,-9.456889342999858],[28.555600219000095,-9.474459329999831],[28.56278324400006,-9.484897969999864],[28.56686568200007,-9.495956725999875],[28.568726033000075,-9.508979186999824],[28.569191121000102,-9.525929056999829],[28.574100383000143,-9.539158223999905],[28.586296021000067,-9.544015807999841],[28.617766968000097,-9.54329233799993],[28.611100708000095,-9.551043802999843],[28.5886214600001,-9.558278503999816],[28.583557169000102,-9.56375620499989],[28.587587931000115,-9.573161315999855],[28.60650150500004,-9.594348652999898],[28.610842326000125,-9.60788787899989],[28.612909383000073,-9.617499694999893],[28.621797730000107,-9.63827362099984],[28.62386478700006,-9.649125670999894],[28.625156697000108,-9.695634459999923],[28.63125451600007,-9.715581562999844],[28.644948771000085,-9.735115253999851],[28.654973999000106,-9.741936543999897],[28.663655640000083,-9.745037128999854],[28.669960165000077,-9.750928242999848],[28.672337280000132,-9.7655009959999],[28.698485555000047,-9.791959329999898],[28.69652185100011,-9.796506855999837],[28.678073364000085,-9.803844908999835],[28.668461548000067,-9.821621601999865],[28.65869470200002,-9.86482309999981],[28.62794722400008,-9.92941863999985],[28.62386478700006,-9.95101938899991],[28.63125451600007,-10.023056334999891],[28.62851566500012,-10.10274139399985],[28.6196273190001,-10.141912129999879],[28.60402103700008,-10.172711282999856],[28.57931970200005,-10.201133320999872],[28.56991459200009,-10.2196334839999],[28.60402103700008,-10.248365579999813],[28.605984741000096,-10.252913106999841],[28.608051798000076,-10.263558450999838],[28.610842326000125,-10.268829447999861],[28.6133227950001,-10.270689798999868],[28.62210778800008,-10.275857441999875],[28.62386478700006,-10.276374205999915],[28.629239136000106,-10.295907897999825],[28.62644860900008,-10.311410826999847],[28.620712524000112,-10.327327167999869],[28.617766968000097,-10.348307799999857],[28.620867554000142,-10.373319192999856],[28.628619019000066,-10.391095885999887],[28.637714071000115,-10.40701222699991],[28.644948771000085,-10.426545918999821],[28.646085653000085,-10.438431497999858],[28.644535360000077,-10.451040547999881],[28.640607950000117,-10.462616067999832],[28.634716838000116,-10.471607767999869],[28.63047937000007,-10.481012878999818],[28.638747599000112,-10.496205748999856],[28.634716838000116,-10.505714212999834],[28.63492354300007,-10.519460143999865],[28.64804935700005,-10.53765024799982],[28.672337280000132,-10.564315286999856],[28.672699016000138,-10.576097513999855],[28.667169637000118,-10.597388203999841],[28.66551599100009,-10.608963724999796],[28.670890341000128,-10.619092304999839],[28.694248088000084,-10.63676564499984],[28.699622436000137,-10.643173522999874],[28.6943514400001,-10.663327330999863],[28.68153568500011,-10.681930846999819],[28.665877726000076,-10.697433776999915],[28.651873413000065,-10.708389179999898],[28.64618900500011,-10.709836120999796],[28.633476604000066,-10.708905944999842],[28.627585490000087,-10.711696471999801],[28.6232446700001,-10.716864114999808],[28.608051798000076,-10.741358744999857],[28.600920451000032,-10.763166198999883],[28.593479044000105,-10.772881367999915],[28.576529174000086,-10.79065806099986],[28.56350671400014,-10.811948750999846],[28.554411662000092,-10.834996438999893],[28.549450724000053,-10.858560892999902],[28.549450724000053,-10.902899271999857],[28.54717696100002,-10.9137513229999],[28.53735843900006,-10.934111836999833],[28.535084676000054,-10.944447122999847],[28.53136397300011,-10.955092467999833],[28.513793986000053,-10.972869160999863],[28.507851196000047,-10.982067565999854],[28.50666263800011,-10.992092793999888],[28.50862634300006,-11.0134868359998],[28.507851196000047,-11.023615417999848],[28.504078816000117,-11.034364115999862],[28.49095300300013,-11.058652038999867],[28.476793661000098,-11.077979023999916],[28.47617354300013,-11.087694193999864],[28.48692224100006,-11.140920918999823],[28.48733565200007,-11.153426614999914],[28.484751831000068,-11.16283172599988],[28.47622522000006,-11.175440775999903],[28.473693074000067,-11.181228534999875],[28.47245284000013,-11.19197723299989],[28.473693074000067,-11.225670266999856],[28.4550895590001,-11.26370412199988],[28.445581096000126,-11.274556172999837],[28.436175985000148,-11.289128926999894],[28.431990194000033,-11.311039733999847],[28.439586629000104,-11.348246764999857],[28.434212280000022,-11.351243997999871],[28.411991414000084,-11.368400573999836],[28.40858077000007,-11.37243133499983],[28.357007690000046,-11.446948750999866],[28.354423869000044,-11.464725443999896],[28.355664103000095,-11.518158874999827],[28.360314982000148,-11.53355845199981],[28.365585978000098,-11.541619973999886],[28.37741988100009,-11.5710755409998],[28.38491296300012,-11.581307473999871],[28.399589071000037,-11.5960869339998],[28.405480183000122,-11.605181985999863],[28.4227401120001,-11.664713235999841],[28.42211999500006,-11.674738464999862],[28.418399292000114,-11.678872578999886],[28.425117228000147,-11.688070983999879],[28.439586629000104,-11.701506855999837],[28.442687215000035,-11.711635436999885],[28.45250573700011,-11.78077850399987],[28.460670613000104,-11.793387552999903],[28.476793661000098,-11.798245136999824],[28.488885946000096,-11.808683776999857],[28.49715417500005,-11.857362975999877],[28.507851196000047,-11.872762552999873],[28.521132039000065,-11.865734557999858],[28.531570679000083,-11.866458027999855],[28.540562377000125,-11.872039081999873],[28.549450724000053,-11.879583841999832],[28.554204956000035,-11.88506154399991],[28.566090536000075,-11.904491881999887],[28.569191121000102,-11.91369028699988],[28.592652222000083,-11.900461120999893],[28.60619144700007,-11.910279642999866],[28.62386478700006,-11.947796731999858],[28.63688724700009,-11.957615253999831],[28.68603153500007,-11.984073587999902],[28.707063843000068,-11.989447936999866],[28.741997111000074,-11.98428029299987],[28.751092163000123,-11.992238463999838],[28.754192749000083,-12.020143737999902],[28.7598771560001,-12.035233255999813],[28.77362308800014,-12.045878600999814],[28.808866414000132,-12.06458546899988],[28.82147546300007,-12.075747578999824],[28.835014689000047,-12.092180683999883],[28.845970093000115,-12.11130096399988],[28.85041426600011,-12.130007831999862],[28.85950931800008,-12.141790058999858],[28.918730509000085,-12.174346211999818],[28.944672079000043,-12.206075540999834],[29.026114136000043,-12.353043313999862],[29.02859460400012,-12.363068542999883],[29.030351603000096,-12.376194355999857],[29.035105835000106,-12.378881530999877],[29.04265059400006,-12.378778177999862],[29.0527791750001,-12.383842467999926],[29.067248576000026,-12.38477264399988],[29.084405152000098,-12.3764010619999],[29.100218140000095,-12.374023945999866],[29.11107019100012,-12.393454284999848],[29.128123413000083,-12.382808939999848],[29.148949016000127,-12.37371388699988],[29.17339196700007,-12.367616067999833],[29.254989054000163,-12.36616912799984],[29.265065958000175,-12.37092335999992],[29.283049357000067,-12.390457050999828],[29.29550337700007,-12.400999043999889],[29.304856811000178,-12.404823099999831],[29.31643233200023,-12.406683450999834],[29.356533244000016,-12.407613626999888],[29.364388062000074,-12.409267272999841],[29.40593591300015,-12.431694843999836],[29.43260095200012,-12.441306659999853],[29.439215536000205,-12.442030130999838],[29.45332320200012,-12.440789896999902],[29.459886108000116,-12.441306659999853],[29.46526045700008,-12.44420054099983],[29.468774454000116,-12.448438007999883],[29.473011922000097,-12.452468770999872],[29.480453328000205,-12.454949238999859],[29.49967696100012,-12.45308888699985],[29.5146631260001,-12.443890482999848],[29.52468835500022,-12.429214374999857],[29.528202352000083,-12.410507506999878],[29.523448120000097,-12.392524108999794],[29.511459188000146,-12.387356465999886],[29.49605961100022,-12.386322936999902],[29.480453328000205,-12.380535175999839],[29.45037764500014,-12.34291473399982],[29.446553589000104,-12.335059915999878],[29.44815555900001,-12.326791685999835],[29.45182458500014,-12.31779998799989],[29.455907023000147,-12.294338887999814],[29.467947632000094,-12.255271503999893],[29.474252157000222,-12.242662454999873],[29.489548381000105,-12.231500344999844],[29.533473348000115,-12.216720885999834],[29.55305871600015,-12.205145365999883],[29.56757979300008,-12.191709491999829],[29.576726522000087,-12.188092141999844],[29.590317423000073,-12.188092141999844],[29.603184855000134,-12.192846373999842],[29.621116577000205,-12.210209655999861],[29.631865275000138,-12.215997415999837],[29.648918498000086,-12.212793476999861],[29.701266724000078,-12.1890223179999],[29.73490808100016,-12.164837747999826],[29.7560954190001,-12.157603046999867],[29.799296915000156,-12.154089049999811],[29.79939678300016,-12.155820078999866],[29.79958231400022,-12.159035937999846],[29.799606975000216,-12.15946339899986],[29.799400268000085,-12.265813496999868],[29.799141887000104,-12.382292175999822],[29.79898685700007,-12.548690286999827],[29.798676799000045,-12.698345234999977],[29.798470093000134,-12.873011575999938],[29.798211711000164,-13.02276987699993],[29.79795332800009,-13.16436330099999],[29.797746623000222,-13.313759866999987],[29.797643270000062,-13.424244079],[29.782243693000193,-13.455663349999936],[29.767154175000115,-13.458350523999883],[29.702868693000113,-13.457627054999888],[29.663077840000224,-13.44687835699996],[29.641477092000088,-13.438506774999894],[29.626077515000162,-13.429825133999842],[29.617395874000206,-13.421246846999892],[29.610677938000066,-13.41101491299983],[29.605510295000183,-13.399956155999917],[29.60168623900003,-13.388380634999876],[29.60168623900003,-13.374427998999963],[29.609437703000165,-13.36905365],[29.618946167000132,-13.367296650999847],[29.62514733900022,-13.364196064999902],[29.627007691000102,-13.354894307999956],[29.625043986000183,-13.33484385199992],[29.626594279000216,-13.326368916999911],[29.633622274000146,-13.318927510999814],[29.65150231900006,-13.31458669],[29.658892049000116,-13.30952239999985],[29.66359460500004,-13.30187428799995],[29.667522013000024,-13.291952411999873],[29.669175659000103,-13.281203713999858],[29.666591837000087,-13.271178486999913],[29.657496786000106,-13.260119730999833],[29.649745320000108,-13.25991302499996],[29.64106368000014,-13.262806904999948],[29.629074748000193,-13.261463317999969],[29.609851115000165,-13.249474384999928],[29.592797892000103,-13.235625101999872],[29.574401082000147,-13.225393167999966],[29.551043335000173,-13.224152933999946],[29.527995646000107,-13.234074807999932],[29.470014689000063,-13.287818297999934],[29.449550822000134,-13.300323994999943],[29.30826745600021,-13.353654072999845],[29.250183146000065,-13.39158457399985],[29.227445516000074,-13.400782979999846],[29.214009644000125,-13.408327737999983],[29.19478601100008,-13.430962015999938],[29.184140665000086,-13.436853128999928],[29.16894779500006,-13.433855895999924],[29.160162801000066,-13.422073668999914],[29.15339318800005,-13.406984151],[29.1444531650001,-13.394478453999836],[29.122128947000135,-13.38434987399988],[29.098047730000104,-13.384659931999863],[29.072932983000072,-13.388587341999836],[29.06538614700014,-13.388676477999837],[29.046681356000132,-13.38889739999982],[29.0284912510001,-13.395511982999906],[29.01030114700006,-13.399439391999877],[28.99397139500013,-13.39592539499992],[28.980845581000064,-13.380215759999857],[28.95035648600006,-13.350966897999896],[28.934130086000067,-13.309625752999878],[28.903434285000113,-13.162296243999846],[28.89185876500008,-13.147310078999965],[28.8827120360001,-13.143589375999865],[28.863230021000106,-13.142659199999898],[28.853669881000087,-13.13707814499989],[28.844213094000025,-13.102351582999859],[28.840905803000023,-13.100077819999925],[28.835428101000048,-13.098940937999927],[28.829743693000093,-13.097183938999947],[28.825816284000044,-13.092843118999964],[28.82462772700012,-13.087262063999859],[28.8260229900001,-13.076823424999828],[28.825299520000097,-13.072379251999818],[28.82550622600013,-13.06783172599988],[28.830260458000055,-13.05687632199998],[28.830880574000105,-13.051812031999829],[28.827056518000067,-13.047574563999873],[28.813620646000118,-13.042820331999962],[28.809434855000088,-13.038376159999954],[28.800598185000066,-13.002409362999813],[28.793363485000096,-12.991557311999854],[28.775690144000123,-12.976571145999884],[28.707994018000107,-12.889754739999972],[28.66789310700011,-12.84934376999982],[28.621177612000025,-12.839421895999905],[28.608155152000077,-12.847896829999826],[28.593685751000063,-12.876732279999857],[28.58397058100013,-12.888721210999819],[28.568467652000095,-12.895542500999865],[28.55337813300011,-12.894922383999898],[28.542836141000038,-12.885620625999962],[28.53942549700011,-12.833840840999898],[28.52361250800004,-12.810173033999874],[28.50159834800013,-12.788468932999876],[28.48092777500011,-12.762113951999908],[28.47400313300005,-12.736482441999852],[28.48397668400014,-12.722219745999965],[28.500151408000132,-12.710954285],[28.511623575000073,-12.694417826],[28.51229537000006,-12.668372905000027],[28.502011760000045,-12.649562682999928],[28.468267049000076,-12.614629414999925],[28.455916382000108,-12.592098489999913],[28.436434367000114,-12.542799173999825],[28.4227401120001,-12.52130177799988],[28.33974776200006,-12.450505065999849],[28.32248783400007,-12.4410999549998],[28.303677612000055,-12.435415547999852],[28.28383386300007,-12.434071959999883],[28.26388675900006,-12.43696584099986],[28.23753177900008,-12.437069192999886],[28.220065145000063,-12.42539031999982],[28.204975626000135,-12.410817565999864],[28.18575199400004,-12.402445983999883],[28.160740601000043,-12.408750507999812],[28.1459611410001,-12.423116555999812],[28.131285034000115,-12.429214374999857],[28.106997111000112,-12.410197448999893],[28.102449585000098,-12.401205748999857],[28.10043420400012,-12.391490579999811],[28.09686853100007,-12.3830156449999],[28.087670125000074,-12.377537943999826],[28.01403120900008,-12.37050994899991],[27.998993367000082,-12.371440124999864],[27.981009969000098,-12.374540709999804],[27.958685750000114,-12.36782277499988],[27.95222619600008,-12.34653208399989],[27.94845381600004,-12.321417337999875],[27.933881062000097,-12.303330586999863],[27.877036987000054,-12.269947610999793],[27.856676473000107,-12.262402851999838],[27.831406698000137,-12.259922383999864],[27.818280884000075,-12.26777720199989],[27.8072738030001,-12.281419778999805],[27.788308553000036,-12.2965092969999],[27.756734252000058,-12.3042607629999],[27.710742228000072,-12.306327819999865],[27.666197143000147,-12.302710469999795],[27.63818851700006,-12.293615416999913],[27.59529707900009,-12.24731333399984],[27.589836216000062,-12.242957985999809],[27.536075887000095,-12.2000810749999],[27.520469605000073,-12.17961720699985],[27.471790405000036,-12.04164113399986],[27.467552938000093,-12.001643574999889],[27.42073409000005,-11.921958516999837],[27.23418216900006,-11.809097187999868],[27.209997599000104,-11.7219707229998],[27.211961304000056,-11.68827768999985],[27.20762048300014,-11.639391783999855],[27.197181844000113,-11.593709818999855],[27.18012862100008,-11.569628600999804],[27.173617391000107,-11.570558775999856],[27.144988647000044,-11.581307473999871],[27.102200562000117,-11.584924824999858],[27.064373413000055,-11.597120462999868],[27.054451538000134,-11.597533874999883],[27.032437378000054,-11.594329935999909],[27.02375573800009,-11.595570169999858],[27.010268189000044,-11.609832864999829],[27.010836629000092,-11.6288497929998],[27.023238973000076,-11.671121113999874],[27.021481975000086,-11.697889505999852],[27.011146688000082,-11.713185729999822],[26.99636722800005,-11.727035013999867],[26.981071004000114,-11.74904917399985],[26.971355835000054,-11.788529967999878],[26.96732507300007,-11.870385436999825],[26.94768802900012,-11.909142760999856],[26.912754761000144,-11.942525736999826],[26.874204143000068,-11.964333190999852],[26.831726115000038,-11.973324889999887],[26.785010620000037,-11.968363951999846],[26.75937910900006,-11.968674010999834],[26.744186239000044,-11.981179707999914],[26.732559042000076,-11.998336282999887],[26.717417847000064,-12.013012389999872],[26.697057333000117,-12.017456562999882],[26.679797404000052,-12.009601744999856],[26.662744181000107,-11.99657928499991],[26.643520548000083,-11.985520527999896],[26.60590010600006,-11.977769062999897],[26.524871460000043,-11.972291360999819],[26.489111369000028,-11.960819192999807],[26.47071455900004,-11.946969908999918],[26.455418335000076,-11.931983743999865],[26.438365112000042,-11.919064635999845],[26.414593953000093,-11.911829934999886],[26.37635339400009,-11.91286346399987],[26.339146362000093,-11.918961282999831],[26.32881107600008,-11.923302103999902],[26.309174032000044,-11.936531269999888],[26.29801192200011,-11.941182148999857],[26.286229696000106,-11.940562031999889],[26.265559123000088,-11.930846862999857],[26.229592326000017,-11.933120625999862],[26.209335164000038,-11.923612161999884],[26.189078003000105,-11.910899759999836],[26.166650431000107,-11.902424824999827],[25.99405114800004,-11.904801940999874],[25.9811320390001,-11.903044941999894],[25.963562052000043,-11.89508677099984],[25.94981612100011,-11.86397755999988],[25.935553426000126,-11.853642272999878],[25.91415938300011,-11.845580748999794],[25.85958907000008,-11.801965839999838],[25.85576501500014,-11.797211608999845],[25.850700724000063,-11.793800963999914],[25.839848674000105,-11.791940612999909],[25.83251062000005,-11.793800963999914],[25.812666870000044,-11.80299936899982],[25.801608114000118,-11.804239602999857],[25.744040568000088,-11.803826191999846],[25.725643758000103,-11.800518899999844],[25.687403198000112,-11.778711445999818],[25.655777222000097,-11.750496113999844],[25.621464071000077,-11.728895365999875],[25.575678752000044,-11.727345071999862],[25.567823934000103,-11.733752949999896],[25.56493005400011,-11.743984882999882],[25.561002645000144,-11.753286640999903],[25.550253947000044,-11.756593932999806],[25.537644897000117,-11.758350931999884],[25.5306169020001,-11.764242044999875],[25.524519083000143,-11.770959981999809],[25.515217326000112,-11.77581756599983],[25.495580281000088,-11.776541035999827],[25.480439087000065,-11.769823099999897],[25.47413456200007,-11.756180520999889],[25.482816203000112,-11.73116912899981],[25.48328129100014,-11.725794778999841],[25.482816203000112,-11.72042043099988],[25.481162557000058,-11.71525278699987],[25.46359257000009,-11.700059915999844],[25.406335083000045,-11.673084817999907],[25.39755008900005,-11.664919942999802],[25.392795858000056,-11.656445007999892],[25.386387980000105,-11.649830423999887],[25.373158813000117,-11.647143249999871],[25.36044641100008,-11.647246601999896],[25.35197147700006,-11.646109720999888],[25.344943482000044,-11.642182311999818],[25.336778605000116,-11.633500671999855],[25.327373494000085,-11.616654154999878],[25.300398397000066,-11.5350053909998],[25.29750451600006,-11.51722869899987],[25.297711223000107,-11.507926939999846],[25.301741984000103,-11.49841847699986],[25.315384562000133,-11.482502135999837],[25.316728149000085,-11.472993671999845],[25.309286743000058,-11.455423685999875],[25.286652465000117,-11.416563008999915],[25.27900435400005,-11.396305846999908],[25.277970825000068,-11.371811217999863],[25.286342407000117,-11.360649108999922],[25.298021281000103,-11.35145070399983],[25.306496216000113,-11.333053893999832],[25.30132857300009,-11.324475605999808],[25.290166463000073,-11.31589731799987],[25.284688761000098,-11.307319030999833],[25.29626428200004,-11.298430684999829],[25.317141561000113,-11.290472513999859],[25.324893025000108,-11.28365122399981],[25.325409790000066,-11.273936054999865],[25.32334273300009,-11.253472187999904],[25.32458296700011,-11.227840677999836],[25.322515910000078,-11.20541310599985],[25.31032027200004,-11.19476776099985],[25.27879764800008,-11.19993540399986],[25.184023071000126,-11.246650898999846],[25.124285116000095,-11.259156595999855],[24.981244751000133,-11.271868997999903],[24.942900838000124,-11.268561706999904],[24.901042928000038,-11.281274107999861],[24.826732218000046,-11.317550963999821],[24.787974894000115,-11.325819192999859],[24.712527303000112,-11.32602589999982],[24.674080037000067,-11.341632180999852],[24.66333134000007,-11.351657409999873],[24.64503788200008,-11.376048685999905],[24.635219360000118,-11.38586720799988],[24.624677369000064,-11.39082814499983],[24.60224979700007,-11.39568572999984],[24.593258097000103,-11.39961313899991],[24.58457645600006,-11.407364603999909],[24.578581990000114,-11.415632832999862],[24.574447876000107,-11.425141296999854],[24.571243937000133,-11.43640675799982],[24.564732707000076,-11.44467498799986],[24.5541907140001,-11.446328632999894],[24.542511840000117,-11.445398457999858],[24.53269331800007,-11.446121927999853],[24.490938762000013,-11.461521504999837],[24.46964807100005,-11.465552265999833],[24.446497030000046,-11.463588561999885],[24.426446574000096,-11.45408009899991],[24.392546834000086,-11.42338429699987],[24.370222615000102,-11.410155130999868],[24.351722453000093,-11.407054544999836],[24.31007124900009,-11.406641132999823],[24.293948201000088,-11.399199726999896],[24.285473266000082,-11.381216328999813],[24.298289022000063,-11.370570982999823],[24.339940226000092,-11.358065286999832],[24.35244592300009,-11.345042825999883],[24.384485311000105,-11.295226745999855],[24.39223677600009,-11.279103698999862],[24.396060832000046,-11.259673359999795],[24.39781783000012,-11.23827931699988],[24.396577596000068,-11.217402037999902],[24.391306600000064,-11.199832051999834],[24.384381958000063,-11.191253763999894],[24.367432088000072,-11.176267597999825],[24.36174768000012,-11.164692077999874],[24.362471151000108,-11.150532734999928],[24.369912557000134,-11.140920918999823],[24.3782841390001,-11.132135924999844],[24.38179813600007,-11.120560403999889],[24.37053267400009,-11.100199889999857],[24.345314575000145,-11.0782890829999],[24.31637577300009,-11.06009897899986],[24.293844848000077,-11.050280456999886],[24.275137980000096,-11.047903340999852],[24.238034302000102,-11.048006692999877],[24.21829390400012,-11.045216165999816],[24.181293579000084,-11.034467467999889],[24.16455041500012,-11.033950703999864],[24.144396606000072,-11.040358581999897],[24.124242797000075,-11.043252461999884],[24.117731567000106,-11.030850117999817],[24.119385213000072,-10.997570494999875],[24.117524862000067,-10.986098327999855],[24.11049686700005,-10.965944518999876],[24.108016398000075,-10.954989114999902],[24.10873986800007,-10.945790709999812],[24.114320923000093,-10.927910663999853],[24.11421757000005,-10.919229023999888],[24.091479939000095,-10.897834980999873],[24.048381796000086,-10.882332051999866],[24.001459595000114,-10.873443704999843],[23.96745650200009,-10.872306822999846],[23.948646281000066,-10.881505228999842],[23.940584757000096,-10.901555684999877],[23.93614058400007,-10.925223489999908],[23.927975708000044,-10.945377298999801],[23.918570597000095,-10.95405893899985],[23.897279907000012,-10.966461282999916],[23.887771443000133,-10.974419453999886],[23.8817769770001,-10.984548033999843],[23.874128865000046,-11.006872252999898],[23.8674109290001,-11.016380716999876],[23.833717896000053,-11.028473001999869],[23.79372033700008,-11.02113494899987],[23.752275838000113,-11.008215840999867],[23.714138631000136,-11.003875019999882],[23.674864543000098,-11.006975605999825],[23.641584920000128,-11.004495137999854],[23.557042277000075,-10.981344095999859],[23.49482385300007,-10.964290873999829],[23.455963175000107,-10.960983581999841],[23.4154488530001,-10.963257344999844],[23.373280884000053,-10.975142923999881],[23.306514933000102,-11.011729837999908],[23.196754191000082,-11.071881204999869],[23.114692016000078,-11.08552378299987],[23.014336385000036,-11.102473652999876],[22.96958459500007,-11.102473652999876],[22.93113732900011,-11.09678924499984],[22.911190226000087,-11.08831430999983],[22.873569783000075,-11.063716328999845],[22.853105916000118,-11.05307098399986],[22.829231405000115,-11.05214080799989],[22.806907186000046,-11.063096210999873],[22.785306437000088,-11.078495787999854],[22.76422245300006,-11.090484720999825],[22.727738891000055,-11.09678924499984],[22.688981567000095,-11.092965188999884],[22.65094771300008,-11.082319843999898],[22.61363732900014,-11.067540384999885],[22.537569621000074,-11.037154642999923],[22.500982706000116,-11.042425637999855],[22.46935673000013,-11.122420755999897],[22.440314575000055,-11.146915384999858],[22.34026900200007,-11.180195007999885],[22.3256962480001,-11.190323587999842],[22.28177128100006,-11.236729023999857],[22.26306441200009,-11.248201191999867],[22.237639608000077,-11.249544778999834],[22.25200565600008,-11.208617044999825],[22.25551965400012,-11.166552428999879],[22.243840780000053,-11.0782890829999],[22.237329549000094,-11.05937550799986],[22.220586385000047,-11.030023294999893],[22.217175741000116,-11.012763366999891],[22.21397180100004,-11.007905781999881],[22.19929569500007,-10.997363789999909],[22.196091756000097,-10.992299499999845],[22.196091756000097,-10.954162291999879],[22.174801066000096,-10.884295755999801],[22.165706014000136,-10.868792825999876],[22.16549930800008,-10.852359720999829],[22.182759236000066,-10.83044891399986],[22.206013631000076,-10.80988169299988],[22.223997030000078,-10.79706593799989],[22.265854939000064,-10.779909362999831],[22.290659627000082,-10.772674662999862],[22.309676555000067,-10.769780781999883],[22.319495077000113,-10.761305846999875],[22.32238895600011,-10.74218556699988],[22.319495077000113,-10.703841654999863],[22.321045369000046,-10.700741067999914],[22.32641971900011,-10.694643248999867],[22.310089966000078,-10.668805032999842],[22.3076094970001,-10.633561705999867],[22.308573272000075,-10.61251927699982],[22.309469848000106,-10.592944030999831],[22.305955852000125,-10.550672708999855],[22.296447388000075,-10.52969207699985],[22.28404504400009,-10.516462910999849],[22.274019816000074,-10.503027037999814],[22.271849406000086,-10.481736347999828],[22.27867069500013,-10.460962421999866],[22.30109826700004,-10.42489227299987],[22.305955852000125,-10.409802754999873],[22.307092733000047,-10.399570820999884],[22.31226037600007,-10.379933776999863],[22.313397258000066,-10.368564960999862],[22.310089966000078,-10.356989440999826],[22.295517212000103,-10.339316100999909],[22.286938924000083,-10.309137063999826],[22.26347782400009,-10.268209329999891],[22.24570113200008,-10.221183776999823],[22.2211031490001,-10.176225280999816],[22.202809692000102,-10.130646666999922],[22.209734334000103,-10.098193867999896],[22.204876750000064,-10.085791523999843],[22.196091756000097,-10.043623554999883],[22.175627889000026,-9.988949889999915],[22.167566366000127,-9.953706562999855],[22.159918253000058,-9.931485696999815],[22.14627567500014,-9.915672708999821],[22.107621704000053,-9.891384785999902],[22.09098189300005,-9.877122090999848],[22.079923136000048,-9.87164438799985],[22.072791789000092,-9.87887908899991],[22.065763794000077,-9.881049498999815],[22.055841919000073,-9.875365090999864],[21.998377726000086,-9.80911590599986],[21.986285441000092,-9.781107278999853],[21.984425090000087,-9.748757831999868],[21.978223918000083,-9.752168476999884],[21.962720988000086,-9.758473001999903],[21.95651981600011,-9.761780292999902],[21.94236047400005,-9.722919616999846],[21.878901814000102,-9.65708384099986],[21.854097127000074,-9.617809752999875],[21.84365848800013,-9.57615854899987],[21.83218632000012,-9.488411966999834],[21.819887329000064,-9.447690937999866],[21.813169393000067,-9.437459003999876],[21.796219523000048,-9.417098489999844],[21.79198205500009,-9.40614308599987],[21.79332564200007,-9.393534036999853],[21.80376428200009,-9.372966816999863],[21.810172159000047,-9.338136901999803],[21.841074666000026,-9.275815123999863],[21.851616659000083,-9.233750507999929],[21.851926717000083,-9.192926126999836],[21.839731079000074,-9.09236378999982],[21.854097127000074,-8.977848815999891],[21.85172001100011,-8.92586232499987],[21.859884888000124,-8.846383971999884],[21.87011682100012,-8.822302753999836],[21.877764933000094,-8.789229837999855],[21.88479292800011,-8.782305195999868],[21.895128215000113,-8.71874318399989],[21.906910441000036,-8.645466003999886],[21.917762492000065,-8.61518361399986],[21.935952596000106,-8.58314422599986],[21.928407836000076,-8.582524108999792],[21.92437707500008,-8.580767109999911],[21.92127649000011,-8.578596699999819],[21.916212199000142,-8.576839701999845],[21.939983358000088,-8.499945169999847],[21.943910766000073,-8.455916848999891],[21.935952596000106,-8.413025410999836],[21.911457967000043,-8.374268086999805],[21.899882446000106,-8.348843281999805],[21.905256795000067,-8.33726776099985],[21.91314632600003,-8.333003149999868],[21.92055301900012,-8.328999531999898],[21.910631144000035,-8.310499368999869],[21.881382283000075,-8.282077330999853],[21.873217407000055,-8.264093932999868],[21.862468709000037,-8.216448262999918],[21.860194946000036,-8.173763528999828],[21.857301066000048,-8.156917011999852],[21.851203247000086,-8.143481139999892],[21.825985148000115,-8.114438984999907],[21.815133098000075,-8.096765644999905],[21.8085185140001,-8.07671518999986],[21.806348104000108,-8.052427266999857],[21.79963016800008,-8.040851744999912],[21.76821089700013,-8.02317840499991],[21.7584957280001,-8.01511688199983],[21.75394820200006,-7.997340188999885],[21.751054321000083,-7.929230651999887],[21.75436161300007,-7.919618835999871],[21.768831014000114,-7.899878437999817],[21.7721383060001,-7.888199563999833],[21.770898071000147,-7.876520690999867],[21.76459354700006,-7.850682473999839],[21.770484659000147,-7.806757506999816],[21.776169067000097,-7.790324400999851],[21.787227824000098,-7.758595071999821],[21.795082642000125,-7.736270852999851],[21.807898397000116,-7.699373880999828],[21.81957727000008,-7.665474141999823],[21.826558136000102,-7.645600686999855],[21.83104943900011,-7.632814635999849],[21.832909790000116,-7.614211119999894],[21.836217082000104,-7.608320006999889],[21.850789835000086,-7.593643899999904],[21.854097127000074,-7.585995788999825],[21.854097127000074,-7.5483753459999],[21.851513306000072,-7.538453469999808],[21.84820601400008,-7.532975768999918],[21.845932251000136,-7.526774596999844],[21.846655721000047,-7.514268899999834],[21.849963012000046,-7.502900084999851],[21.85905806500011,-7.482642923999848],[21.860918416000118,-7.469827168999857],[21.8586446540001,-7.464039407999792],[21.84892948400008,-7.454841002999885],[21.846655721000047,-7.449053242999824],[21.84779260300007,-7.44409230499987],[21.852960246000066,-7.434997253999896],[21.854097127000074,-7.428899434999848],[21.851616659000083,-7.416497089999865],[21.845725545000107,-7.409055683999852],[21.83869755000009,-7.402027688999836],[21.832909790000116,-7.390762226999883],[21.834976847000064,-7.385284524999888],[21.83993778500013,-7.378153177999849],[21.842418253000087,-7.369884948999811],[21.8369405520001,-7.360583190999876],[21.83135949700008,-7.354175313999845],[21.808828572000067,-7.306426289999862],[21.802524048000066,-7.298881530999907],[21.79477258300005,-7.294023945999896],[21.78826135200009,-7.291750182999877],[21.784644002000107,-7.286892598999856],[21.784954060000075,-7.283378600999811],[21.764490194000132,-7.282758482999838],[21.730900513000105,-7.282965189999799],[21.65824344800006,-7.283171894999853],[21.5854830320001,-7.283378600999811],[21.51261926300009,-7.283585306999854],[21.439962198000046,-7.283792011999822],[21.367098429000066,-7.283998717999864],[21.294338013000072,-7.284205423999835],[21.221784301000067,-7.284412129999795],[21.148920532000147,-7.284618834999847],[21.07626346900011,-7.284722187999861],[21.003503051000052,-7.284928893999918],[20.930742635000083,-7.285238951999815],[20.85798221900012,-7.285342305999932],[20.785221801000148,-7.285549010999886],[20.71256473800011,-7.285859069999874],[20.639804321000042,-7.285962422999902],[20.56704390400006,-7.286169127999854],[20.520535116000133,-7.286375833999911],[20.519398234000104,-7.237179870999853],[20.51826135200011,-7.189740904999866],[20.524462524000086,-7.143128763999896],[20.54544315600009,-7.088558450999868],[20.560946085000097,-7.047837422999805],[20.588127889000106,-6.976834004999901],[20.611485636000054,-6.915959166999869],[20.55371138500004,-6.916165872999926],[20.467308390000085,-6.916372578999883],[20.383695922000044,-6.91668263799987],[20.33108931500007,-6.916785989999894],[20.319513794000102,-6.918542988999874],[20.311245564000075,-6.925054219999851],[20.303184042000083,-6.940143736999842],[20.298636515000055,-6.954509785999846],[20.294192342000116,-6.987479349999902],[20.294295695000073,-7.001948750999844],[20.24623661300009,-7.001948750999844],[20.20406864400013,-7.001948750999844],[20.162107381000055,-7.001948750999844],[20.120146118000036,-7.001948750999844],[20.07818485500013,-7.001948750999844],[20.0361202390001,-7.001948750999844],[19.994055623000094,-7.001948750999844],[19.963079168000093,-7.001948750999844],[19.952094360000075,-7.001948750999844],[19.91002974500014,-7.001948750999844],[19.86806848200007,-7.001948750999844],[19.82610721800006,-7.001948750999844],[19.784042602000113,-7.001948750999844],[19.74197798600008,-7.001948750999844],[19.70001672300009,-7.001948750999844],[19.65805546100009,-7.001948750999844],[19.6160941980001,-7.001948750999844],[19.574029582000065,-7.001948750999844],[19.521836385000086,-7.001948750999844],[19.54023319500007,-7.041636249999911],[19.542610311000118,-7.052281595999901],[19.53620243400007,-7.068404642999893],[19.508607219000083,-7.103234557999855],[19.497031697000125,-7.121734720999881],[19.48721317500008,-7.153877461999826],[19.476361125000036,-7.315934752999851],[19.479461711000056,-7.34766408299987],[19.48721317500008,-7.381977233999891],[19.513774862000076,-7.448433125999856],[19.513154744000104,-7.479438984999874],[19.48473270700009,-7.501969908999798],[19.48390588400008,-7.502383320999812],[19.48307906100004,-7.502900084999851],[19.482355591000044,-7.503520201999904],[19.468713013000126,-7.521090188999891],[19.45827437300011,-7.560260925999927],[19.44390832500011,-7.575247090999894],[19.424684692000085,-7.57969126399982],[19.355644979000118,-7.574110208999798],[19.353681274000078,-7.600258483999894],[19.361846151000094,-7.627026875999874],[19.373214965000102,-7.653795267999853],[19.3809664310001,-7.679736836999894],[19.381379842000115,-7.703921406999867],[19.377762492000045,-7.730069680999875],[19.35802209500008,-7.791564635999876],[19.34851363100009,-7.82153696699983],[19.333837525000092,-7.867322285999862],[19.330943644000115,-7.898638203999865],[19.334044230000046,-7.924269713999834],[19.355541626000104,-8.001991068999857],[19.32825647000007,-8.001991068999857],[19.200615682000088,-8.001991068999857],[19.073078247000037,-8.001991068999857],[18.94543746000008,-8.001991068999857],[18.81800337700014,-8.001991068999857],[18.773768351000115,-8.001991068999857],[18.758265421000118,-7.978219908999889],[18.752064249000114,-7.965920918999857],[18.747310018000118,-7.937808939999826],[18.73852502400004,-7.932331237999918],[18.6669014900001,-7.932331237999918],[18.588663371000024,-7.932331237999918],[18.51652307100002,-7.932227884999803],[18.5043274330001,-7.940702819999898],[18.502260376000063,-7.960133157999792],[18.507634725000116,-7.997546894999842],[18.487894328000067,-7.998270364999839],[18.481796509000105,-7.997340188999885],[18.420508260000133,-7.998270364999839],[18.403868449000125,-8.000647480999888],[18.38195764100007,-8.012326353999867],[18.366558065000078,-8.016770527999867],[18.353638957000072,-8.015943704999842],[18.316225220000092,-8.001681009999869],[18.26733931400011,-7.999820657999862],[18.192718546000066,-7.996926777999875],[18.176595500000076,-7.999200540999894],[18.135771118000065,-8.018527526999847],[18.120371541000083,-8.022454935999818],[18.10218143700004,-8.033306986999861],[18.092879680000124,-8.056354674999824],[18.091742798000094,-8.084156595999872],[18.098150675000056,-8.1092713419999],[18.008543742000114,-8.111235045999834],[17.981878703000064,-8.105343932999844],[17.93082238700009,-8.062142435999888],[17.901366821000096,-8.04808644599987],[17.8679838460001,-8.044469095999887],[17.851757447000097,-8.047776387999889],[17.7895390220001,-8.081779479999838],[17.777240031000076,-8.08332977299986],[17.74334029200014,-8.070720722999837],[17.713264608000088,-8.068343607999793],[17.62841190500012,-8.09800587899984],[17.60019657400005,-8.098522643999885],[17.544282674000073,-8.084776712999854],[17.536531209000145,-8.075991718999859],[17.536218704000134,-8.075402310999849],[17.52836633300012,-8.060592141999877],[17.540045207000105,-8.032066751999835],[17.536531209000145,-8.01511688199983],[17.52836633300012,-8.007778828999918],[17.506352173000067,-7.99651336599986],[17.49622359200009,-7.987211608999844],[17.490952596000085,-7.977496439999896],[17.481857544000093,-7.945663756999849],[17.47720666500004,-7.950521341999874],[17.471108846000075,-7.955585631999852],[17.46831831900002,-7.959926452999824],[17.465217733000088,-7.952588398999836],[17.46304732200008,-7.949797871999877],[17.463564087000123,-7.946903990999886],[17.46831831900002,-7.939462584999859],[17.446820923000075,-7.928920592999901],[17.43782922300005,-7.922409362999828],[17.434108520000024,-7.915794778999838],[17.439379517000077,-7.902152200999836],[17.44868127400008,-7.8928504429999],[17.452401977000108,-7.88396209699988],[17.440929810000085,-7.871146341999804],[17.426357056000114,-7.875487161999885],[17.42304976400004,-7.86794240299983],[17.423566529000055,-7.855126647999852],[17.420569295000064,-7.843861185999798],[17.410854126000118,-7.84148406999985],[17.397624959000012,-7.841380716999821],[17.39070031700004,-7.839210306999831],[17.400002075000145,-7.830218606999878],[17.400002075000145,-7.823397318999839],[17.380985148000093,-7.823190612999865],[17.376127563000065,-7.814095560999903],[17.376954386000104,-7.801693216999836],[17.37540409400009,-7.792288105999872],[17.365482218000093,-7.787327168999837],[17.342434529000116,-7.784019876999834],[17.337887003000077,-7.77864552799987],[17.334062947000064,-7.769653828999835],[17.315976196000122,-7.753634134999872],[17.310601847000072,-7.740818378999889],[17.314219198000043,-7.731826680999845],[17.32062707500009,-7.722421569999895],[17.320420369000146,-7.713636575999899],[17.303780558000113,-7.706711933999826],[17.308121379000085,-7.702371113999845],[17.308121379000085,-7.701854349999805],[17.305950968000104,-7.700097350999926],[17.303780558000113,-7.692449238999855],[17.28889774600009,-7.699477233999857],[17.28652063000004,-7.683664245999864],[17.287450806000095,-7.660203144999797],[17.282696574000084,-7.643976745999879],[17.286417277000112,-7.625166523999865],[17.266573527000105,-7.610387063999852],[17.21779097500007,-7.585995788999825],[17.202908163000103,-7.564291686999836],[17.18626835100008,-7.516335957999899],[17.172832479000135,-7.493805032999873],[17.16342736800007,-7.485226744999849],[17.15495243300009,-7.479128925999888],[17.148544555000058,-7.472617695999829],[17.146167439000095,-7.463109232999841],[17.151541789000134,-7.4512236529999],[17.163117310000104,-7.445539244999863],[17.17489953600011,-7.441611836999896],[17.180273885000073,-7.435410664999907],[17.176553182000134,-7.428175963999848],[17.167458130000085,-7.423525084999881],[17.146167439000095,-7.418047383999891],[17.13820926900013,-7.413706562999905],[17.132214803000096,-7.409572448999881],[17.126220337000063,-7.411432799999886],[17.118158813000093,-7.425488789999817],[17.103999471000122,-7.416083678999853],[17.098108358000044,-7.402337747999822],[17.097894948000146,-7.378293566999929],[17.097798299000146,-7.367404479999834],[17.093354126000037,-7.352314961999837],[17.082502075000093,-7.34228973399982],[17.056663859000082,-7.32988738999984],[17.022867472000087,-7.306012878999852],[16.996099080000107,-7.297951354999867],[16.99165490700011,-7.28606577499984],[16.99165490700011,-7.27056284499983],[16.98907108500012,-7.254853209999851],[16.972844686000087,-7.232218932999898],[16.96054569500006,-7.21909311999984],[16.95083052500013,-7.213202005999932],[16.945662882000107,-7.204623718999811],[16.947523234000126,-7.151086933999864],[16.92705936700014,-7.085664570999882],[16.929126424000117,-7.060653177999882],[16.961165812000047,-7.069231464999817],[16.96230269400013,-7.04742401099989],[16.96933068900006,-7.030370787999856],[16.973154744000084,-7.014764505999906],[16.96457645700013,-6.997194518999848],[16.95930546100004,-6.989443053999835],[16.955274699000114,-6.981484883999869],[16.949073527000053,-6.975387063999918],[16.93760135900004,-6.973009948999874],[16.928713012000117,-6.968669127999887],[16.928609660000088,-6.959264017999843],[16.93212365700012,-6.949858906999793],[16.93450077300008,-6.945724791999865],[16.92695601400004,-6.888570657999836],[16.91496708200009,-6.864076028999875],[16.8907825120001,-6.84712615899987],[16.879413696000114,-6.844645690999897],[16.855332479000083,-6.84216522199992],[16.844480428000107,-6.838444518999907],[16.832904907000085,-6.827799173999907],[16.828564087000103,-6.814363301999861],[16.826910441000052,-6.799790547999819],[16.823086385000096,-6.78511444099982],[16.768102661000086,-6.708323261999851],[16.760351197000148,-6.691993508999828],[16.75590702300005,-6.674113464999862],[16.75301314200007,-6.637216491999837],[16.74867232300008,-6.619543150999931],[16.73399621600009,-6.58605682399984],[16.730792277000116,-6.569830423999832],[16.734512980000147,-6.552363789999873],[16.746811971000085,-6.531589863999841],[16.747328736000043,-6.521978046999919],[16.738337036000075,-6.510609231999836],[16.72800175000009,-6.501100768999847],[16.721697224000053,-6.491799010999912],[16.721283813000042,-6.480533548999858],[16.727795044000114,-6.465960794999901],[16.706090943000106,-6.465030618999847],[16.706090943000106,-6.455212096999887],[16.71518599400008,-6.441362813999916],[16.720973755000074,-6.428340351999792],[16.718906697000108,-6.415317890999845],[16.71363570200006,-6.413974303999879],[16.707021118000085,-6.415421243999873],[16.70040653500007,-6.411287129999849],[16.69472212700012,-6.402192076999881],[16.692965129000072,-6.398368021999843],[16.69358524600011,-6.359817402999865],[16.69740930100008,-6.349792174999848],[16.706090943000106,-6.346691588999889],[16.715289347000123,-6.345968118999807],[16.720973755000074,-6.342350767999918],[16.722317342000025,-6.332428893999833],[16.720146932000148,-6.322610371999858],[16.716942994000078,-6.313308613999836],[16.715392700000052,-6.304833678999913],[16.71477258300007,-6.231556497999818],[16.717253052000046,-6.215123392999857],[16.724384400000105,-6.202410989999805],[16.72676151600012,-6.189181822999899],[16.717873169000114,-6.174092304999903],[16.70040653500007,-6.154351908999843],[16.69585900900006,-6.14091603499989],[16.68511031100013,-6.134301452999892],[16.671777791000096,-6.130167337999865],[16.660098917000113,-6.123966165999875],[16.643045695000097,-6.100711770999865],[16.630953410000103,-6.09172007299982],[16.611109660000125,-6.089756367999883],[16.63219364400004,-6.065261738999836],[16.62836958800011,-6.055339863999933],[16.61948124200009,-6.056580098999873],[16.61007613100014,-6.061230976999838],[16.604288371000052,-6.061851094999894],[16.601187785000036,-6.050585632999841],[16.597157023000108,-5.987850443999889],[16.595296672000103,-5.978548685999868],[16.590335734000064,-5.968006692999907],[16.58072391800007,-5.955397643999873],[16.580620564000128,-5.94898976599984],[16.59405643700009,-5.933176777999847],[16.59736372800009,-5.924701842999838],[16.560260051000085,-5.906408385999867],[16.552921997000112,-5.902377624999872],[16.515094848000043,-5.887081399999914],[16.49731815600009,-5.882843932999862],[16.479334757000117,-5.882223815999808],[16.45949100700011,-5.885221048999909],[16.427451619000124,-5.894626158999869],[16.412465454000138,-5.896796569999863],[16.396135701000105,-5.89410939499983],[16.37432824700008,-5.882843932999862],[16.358515258000097,-5.870234883999842],[16.34125533000008,-5.859796243999895],[16.31572717300014,-5.854628600999902],[16.257022746000104,-5.855558776999857],[16.16565881300008,-5.857005716999851],[16.100855892000112,-5.858107807999914],[16.0745015870001,-5.858556009999873],[15.983241007000116,-5.86010630299988],[15.892083780000066,-5.861656595999818],[15.800719849000131,-5.863206888999841],[15.70956262200005,-5.864757180999859],[15.618302042000066,-5.866204121999843],[15.527041463000073,-5.867754414999865],[15.435780884000081,-5.869201354999859],[15.344520304000069,-5.870751646999793],[15.253363078000092,-5.872198587999875],[15.16210249800011,-5.873748880999898],[15.070841919000117,-5.87529917399982],[14.979581340000038,-5.876746113999899],[14.888424113000042,-5.878296406999837],[14.797163533000058,-5.87984669999986],[14.759651665000147,-5.880469130999841],[14.703732544000076,-5.881396992999867],[14.57660852100011,-5.904651387999891],[14.545706014000132,-5.90165415399987],[14.48214400200007,-5.885531107999896],[14.436668741000089,-5.893385924999919],[14.346131632000093,-5.891525573999914],[14.241848592000082,-5.889561868999891],[14.222211548000132,-5.886978047999889],[14.163093710000084,-5.866100768999913],[14.140149374000146,-5.863516946999822],[14.021190226000101,-5.872508646999862],[14.006307414000075,-5.86692759199984],[13.982329549000069,-5.853285013999837],[13.943572225000109,-5.841606139999868],[13.80714644300005,-5.852458190999812],[13.641523479000055,-5.865790709999843],[13.562561890000097,-5.857419127999862],[13.553053426000105,-5.859382832999884],[13.53475996900005,-5.867030943999865],[13.522667684000053,-5.867547708999908],[13.493212118000145,-5.858452656999845],[13.413320353000046,-5.857005716999851],[13.380454142000133,-5.856385598999879],[13.373839559000118,-5.860933124999818],[13.353582398000128,-5.882637226999819],[13.342523641000126,-5.890595397999874],[13.311001017000137,-5.873955586999855],[13.269349813000133,-5.863516946999822],[13.184910523000099,-5.856385598999879],[13.183913258573595,-5.856426865551924],[13.184336785000141,-5.856215101999808],[13.170664910000113,-5.849867445999863],[13.154795769000087,-5.852146091999841],[13.122894727000071,-5.862481377999842],[13.107758009000065,-5.86296965899983],[13.089854363000114,-5.860609632999882],[13.067227051000117,-5.862628662999867],[13.036351319000119,-5.857208592999854],[12.989268425000091,-5.835707289999931],[12.975840691000087,-5.832777601999823],[12.940928582000083,-5.819105726999879],[12.924327019000117,-5.814629815999822],[12.89616946700005,-5.814548434999935],[12.858734571000099,-5.819512627999885],[12.822438998000107,-5.829766533999916],[12.797129754000139,-5.845391533999901],[12.789235873000079,-5.849216403999904],[12.766479691000086,-5.865310251999873],[12.75439270600009,-5.881751757999922],[12.74341014500007,-5.900381638999832],[12.717539910000085,-5.931329033999901],[12.722606783000089,-5.979262694999888],[12.67198150100006,-6.000131711999884],[12.607011962000087,-5.998019437999815],[12.556376680000113,-6.025471702999894],[12.475952902000074,-6.045311734999842],[12.449497608000058,-6.051928236999827],[12.435164161000102,-6.050852776999832],[12.431853701000108,-6.034414028999848],[12.436262598000011,-6.026734250999908],[12.45720425400009,-6.013552440999916],[12.457367384000094,-5.989678643999909],[12.4571935270001,-5.981772430999882],[12.447273435000056,-5.976305633999814],[12.43074608900011,-5.975226715999894],[12.414201357000136,-5.978539887999858],[12.410895146000144,-5.986215485999892],[12.40428024400012,-5.990607702999852],[12.396563045000107,-6.005962561999879],[12.384776238000086,-5.984307549999855],[12.379567905000101,-5.966078382999868],[12.376231316000144,-5.958672783999887],[12.371104363000143,-5.954196872999915],[12.358897332000083,-5.947686455999829],[12.35515384200005,-5.945000908999845],[12.33415774800011,-5.9183895809999],[12.26661217500012,-5.850844007999839],[12.249278191000144,-5.828789971999839],[12.210554869353132,-5.763464704997148],[12.25897220900012,-5.736702981999854],[12.344445028000052,-5.724610696999875],[12.435498901000072,-5.725540872999829],[12.50898278800014,-5.726264343999915],[12.512496785000081,-5.633660176999868],[12.514977254000058,-5.568754577999826],[12.519731486000067,-5.444214375999891],[12.524382365000122,-5.324738464999825],[12.52768965700011,-5.239472350999861],[12.530686889000036,-5.162681171999807],[12.52407230600005,-5.129091490999869],[12.511980021000056,-5.120513203999834],[12.450381714000116,-5.098809101999933],[12.44469730600008,-5.093538105999812],[12.440769898000099,-5.084029642999923],[12.438909546000103,-5.073280944999809],[12.439426310000044,-5.064806009999898],[12.444387248000083,-5.055090840999867],[12.450691772000113,-5.05312713599983],[12.458133179000129,-5.054160664999813],[12.466504761000094,-5.05312713599983],[12.550427287000105,-5.024188333999859],[12.587737671000125,-5.000313822999871],[12.603964070000131,-4.962590026999833],[12.606961304000066,-4.942229511999898],[12.615849650000085,-4.935459899999941],[12.654400269000064,-4.932566019999953],[12.678894897000106,-4.924297789999912],[12.68623295000009,-4.912825621999985],[12.688300008000056,-4.897012633999822],[12.696981648000104,-4.87561859199981],[12.711967814000102,-4.8633196],[12.756926310000097,-4.837274678999961],[12.766228068000117,-4.825182392999892],[12.768295125000094,-4.801927998999957],[12.774806356000056,-4.779500426999873],[12.786175171000139,-4.758416441999856],[12.8029183350001,-4.739812926999889],[12.83320072400005,-4.722656351999845],[13.029571167000086,-4.676871032999898],[13.0653312580001,-4.663951923999889],[13.073702840000067,-4.635323180999904],[13.071532430000076,-4.601630146999937],[13.087965535000137,-4.57951263399984],[13.112356812000087,-4.576928812999839],[13.13406091300007,-4.602353616999935],[13.14212243600008,-4.617339781999831],[13.160002482000039,-4.6433847039998],[13.172404825000086,-4.676147561999898],[13.182119995000049,-4.686069436999887],[13.208785034000073,-4.703122660999924],[13.255810588000145,-4.743947041],[13.2740006920001,-4.755832620999854],[13.334565470000143,-4.777536721999851],[13.349344930000084,-4.785598245999836],[13.358750041000121,-4.794796650999842],[13.364124389000096,-4.806888936999911],[13.371359090000055,-4.841718851999886],[13.392649780000056,-4.885333760999842],[13.403191772000097,-4.876858825999832],[13.43078698700009,-4.843372497999923],[13.482256713000083,-4.805545348999942],[13.493522176000056,-4.799654235999853],[13.496416056000044,-4.792109475999908],[13.492385295000133,-4.783531188999959],[13.482256713000083,-4.774849547999906],[13.5147095130001,-4.755935973999883],[13.52618168100011,-4.754282327999917],[13.538894083000088,-4.759966735999868],[13.558634481000125,-4.780430602999928],[13.57072676600012,-4.785908304999822],[13.579859863000138,-4.783031378999822],[13.591397339000139,-4.77939707399986],[13.613101440000037,-4.739192809999835],[13.633978719000112,-4.725653583999858],[13.643693888000143,-4.726273701999915],[13.666534871000067,-4.732681578999944],[13.675319865000034,-4.731751402999818],[13.68059086100007,-4.724723407999889],[13.677800334000011,-4.706326598999809],[13.68193444800005,-4.695371194999922],[13.690099325000062,-4.691133727999954],[13.6983675540001,-4.693510843999917],[13.705860636000125,-4.694337665999839],[13.712475220000044,-4.685656025999875],[13.699091023000108,-4.642661233999902],[13.702605021000068,-4.620750426999933],[13.718159628000079,-4.580339456999951],[13.721776978000065,-4.561012471999916],[13.71102828000005,-4.464480895999969],[13.714955688000117,-4.453008727999872],[13.726531210000047,-4.446704202999854],[13.789989868000106,-4.424586690999845],[13.810453735000067,-4.426653746999818],[13.832881307000063,-4.441226500999875],[13.842079712000043,-4.453422138999883],[13.856135701000085,-4.47967376699999],[13.867091105000043,-4.489285582999827],[13.87628951000005,-4.491662698999875],[13.904401489000092,-4.48980234799987],[13.90543582500004,-4.49009989699988],[13.934580526000076,-4.498483987999833],[13.944502400000088,-4.498070576999822],[13.954941040000108,-4.491869404999917],[13.971787557000084,-4.471612243999914],[13.98770389800012,-4.460140075999988],[13.98987430800011,-4.457969664999907],[13.991631307000091,-4.45507578499992],[14.021086873000087,-4.415388284999935],[14.058397258000127,-4.400505472999896],[14.14635054500013,-4.38986012799991],[14.184694457000148,-4.377457782999841],[14.222211548000132,-4.359784443999928],[14.259625285000112,-4.326918232999901],[14.279985800000134,-4.312758890999859],[14.325461059000078,-4.301803486999887],[14.368559204000091,-4.278445738999848],[14.38705936600013,-4.27710215199987],[14.392847127000095,-4.281753030999838],[14.395327596000074,-4.289711201999893],[14.395224243000143,-4.300356546999893],[14.393467245000066,-4.31317230199987],[14.389126424000098,-4.327538349999884],[14.385715779000067,-4.332912699999837],[14.386025838000137,-4.338287047999899],[14.392743774000083,-4.352756448999841],[14.409073527000118,-4.377561136999873],[14.428607219000098,-4.400402119999882],[14.463230428000118,-4.422622985999823],[14.469741659000078,-4.429340921999838],[14.466537719000115,-4.448047789999833],[14.452481730000102,-4.467994893999929],[14.435738566000055,-4.486701761999825],[14.424576456000125,-4.502308043999861],[14.412587524000058,-4.514503681999884],[14.374760376000097,-4.530213317999852],[14.358947388000074,-4.544579365999936],[14.350782511000146,-4.559048766999965],[14.349955689000126,-4.566903584999906],[14.35750044800008,-4.589124450999861],[14.365768677000036,-4.62726165799999],[14.380961548000073,-4.646175231999862],[14.395844361000114,-4.660127868999851],[14.406903117000127,-4.676044209999872],[14.410933878,-4.701055602999872],[14.40917688000013,-4.710564066999936],[14.401528768000047,-4.728134052999835],[14.399048299000071,-4.737539163999884],[14.399668416000054,-4.749321390999881],[14.403699178000037,-4.75882985399987],[14.40876346800013,-4.76782155299982],[14.412587524000058,-4.77815684],[14.39646447700008,-4.855878193999928],[14.400701945000035,-4.886263935999891],[14.41816857900008,-4.883163349999933],[14.437288859000061,-4.880166116999831],[14.4494844970001,-4.873964944999855],[14.470051717000077,-4.852157491],[14.4819372960001,-4.845852965999909],[14.501470988000108,-4.840685322999903],[14.519867797000101,-4.841305439999957],[14.528032674000116,-4.852157491],[14.532476847000053,-4.856188252999829],[14.553870891000145,-4.855154723999845],[14.562139120000097,-4.855878193999928],[14.56689335100009,-4.860529072999896],[14.575058227000111,-4.873654886999859],[14.579605754000054,-4.876342060999974],[14.592111450000031,-4.880579528999931],[14.623324015000037,-4.899493102999884],[14.634486125000135,-4.903627217999897],[14.672726684000054,-4.899906514999898],[14.702182251000037,-4.88957122799988],[14.768431437000059,-4.848230081999858],[14.815456991000131,-4.827972920999854],[14.831166626000085,-4.815053811999846],[14.841398559000082,-4.800170999999807],[14.849046671000051,-4.783737893999927],[14.931005493000015,-4.646898701999859],[15.008210083000108,-4.571037698999845],[15.014617961000056,-4.558015237999982],[15.022782837000134,-4.547059834999914],[15.076112915000037,-4.520084736999976],[15.097920370000082,-4.499930927999827],[15.15067777700011,-4.425150932999912],[15.18804406800007,-4.372186787999823],[15.193418416000013,-4.358750914999945],[15.203960409000075,-4.339010518999899],[15.228351684000103,-4.324851175999854],[15.255740194000056,-4.313068948999856],[15.275273885000075,-4.300356546999893],[15.386584920000104,-4.244339293999957],[15.425445597000076,-4.230179951999915],[15.450250285000095,-4.21726084399999],[15.458931925000059,-4.213850198999893],[15.462859334000113,-4.207132262999949],[15.484976847000041,-4.183877868999843],[15.49035119600009,-4.17519622799989],[15.521150350000056,-4.076804300999939],[15.533759399000102,-4.057994079999929],[15.549055623000129,-4.046211852999846],[15.566832316000072,-4.038046976999823],[15.711216267000111,-3.992158304999862],[15.755141235000053,-3.985647074999889],[15.799996378000117,-3.978825784999842],[15.844231405000128,-3.965596618999924],[15.882988729000088,-3.945339456999832],[15.88801927300011,-3.940522978999851],[15.91213423700009,-3.917434183999859],[15.93032434100013,-3.858626402999874],[15.936112101000106,-3.848497822999917],[15.943140096000036,-3.840746357999904],[15.974249309000072,-3.786486103999877],[15.991095826000048,-3.738943786999939],[16.005255167000087,-3.724784443999809],[16.012696573000113,-3.702253519999886],[16.053314249000067,-3.619984638999838],[16.115532674000065,-3.544226988999853],[16.137856893000045,-3.500715432999826],[16.15842411300011,-3.447282002999899],[16.20772342900011,-3.361912535999821],[16.220745890000046,-3.331733499999814],[16.22560347500007,-3.313233336999886],[16.227463827000065,-3.289875589999838],[16.22208947700011,-3.279126891999908],[16.210410603000128,-3.271065368999828],[16.198628377000148,-3.259489846999884],[16.193357381000112,-3.23840586299994],[16.199455200000074,-3.194790954999817],[16.199248494000102,-3.171846618999865],[16.18994673600008,-3.153036396999866],[16.18570926900011,-3.136396585999847],[16.189843383000067,-3.082343036999859],[16.184469035000088,-3.026119079999958],[16.188293091000048,-2.97640635199987],[16.183981404000065,-2.940449251999979],[16.17702762900006,-2.882458597999928],[16.178164510000073,-2.868092549999844],[16.180851685000103,-2.854139912999855],[16.20451949100004,-2.782723082999851],[16.22560347500007,-2.635238545999954],[16.19232385200013,-2.395149841999924],[16.191703735000146,-2.346884053999829],[16.189843383000067,-2.337478942999951],[16.187466267000104,-2.332311298999869],[16.178267863000112,-2.318462015999899],[16.17485721800008,-2.303062438999816],[16.176924276000136,-2.286836038999809],[16.18994673600008,-2.241877542999973],[16.190050090000113,-2.235469664999854],[16.1886031490001,-2.227718200999931],[16.18736291500008,-2.204567157999861],[16.194597615000134,-2.182036234999842],[16.206793253000054,-2.160952249999895],[16.231287883000107,-2.129016214999837],[16.256092570000135,-2.106795348999881],[16.284411255000066,-2.087571715999871],[16.340221802000116,-2.034138284999855],[16.382596476000117,-2.002202249999954],[16.44564172400007,-1.940500588999896],[16.460937947000104,-1.920863544999875],[16.470033,-1.912698668999937],[16.474787232000068,-1.910114846999846],[16.490290161000075,-1.903603616999874],[16.50775679500012,-1.890271097999943],[16.513957967000124,-1.887377216999866],[16.517161906000098,-1.873734638999949],[16.522536255000144,-1.861745706999898],[16.524970535000108,-1.85853492199989],[16.604185018000123,-1.754052021999854],[16.617207479000086,-1.728730569999868],[16.623098592000076,-1.699171650999844],[16.622478475000094,-1.665168557999976],[16.623822062000073,-1.653799743999897],[16.628886352000052,-1.637263284999904],[16.636224406000053,-1.620830178999853],[16.65597112900008,-1.590290215999914],[16.66950402800009,-1.569360452999859],[16.69255171700013,-1.522955016999859],[16.725521281000113,-1.479960225999875],[16.762728312,-1.405856220999837],[16.77926477000011,-1.38239512099986],[16.79466434700009,-1.345498147999848],[16.81781538900009,-1.304157002999986],[16.828667440000117,-1.276251729999913],[16.833214966000067,-1.269017028999855],[16.83972619600013,-1.262505797999893],[16.862567179000052,-1.248863219999876],[16.909179321000096,-1.211139424999842],[16.94049523900011,-1.174759215999856],[16.979562622000117,-1.140239359999953],[17.003127075000123,-1.112850849999916],[17.005917602000096,-1.106753030999954],[17.012015421000058,-1.104272562999896],[17.02255741400012,-1.097037861999837],[17.02865523300008,-1.094454040999835],[17.060487915000124,-1.089183043999896],[17.10865035000009,-1.075643818999907],[17.175416301000038,-1.048255309999959],[17.194846639000104,-1.042984313999852],[17.245386190000144,-1.035852965999908],[17.297682739000066,-1.021073506999883],[17.30801802600007,-1.014975687999922],[17.327655070000105,-0.991721292999912],[17.33044559700008,-0.986553648999902],[17.357317342000073,-0.973531188999956],[17.364965454000128,-0.967226663999867],[17.38542932100009,-0.94242197699991],[17.41147424300007,-0.91834075899996],[17.545863410000038,-0.756491041999965],[17.60216027900009,-0.688690693999874],[17.623037557000146,-0.673291117999895],[17.63585331200005,-0.658511656999792],[17.647635538000145,-0.649933369999857],[17.650942830000133,-0.646316018999869],[17.652493123000053,-0.64218190499993],[17.654456828000093,-0.627505798999863],[17.65869429600013,-0.619754332999847],[17.66417199700004,-0.612726337999845],[17.7280440670001,-0.553091735999843],[17.741996704000087,-0.533351338999879],[17.749541463000128,-0.523429462999871],[17.740756470000065,-0.346179300999907],[17.71626184100009,-0.246237079999858],[17.7136780190001,-0.220915628999876],[17.716365193000115,-0.195800882999862],[17.757086222000083,-0.009455667999916],[17.77537967900014,0.026407776000113],[17.85403121000013,0.241071676000146],[17.939917440000073,0.36127105700011],[17.945498494000077,0.37729075200015],[17.95200972500004,0.474339091000118],[17.94994266800009,0.491495666],[17.943638143000072,0.51082265200013],[17.933096151000115,0.527049052000137],[17.918420044000126,0.535213929000165],[17.89929976400012,0.583273011000116],[17.893201945000072,0.607664287000063],[17.8925818270001,0.635879618000032],[17.907567993000068,0.713084208000012],[17.907671346000086,0.740472718000049],[17.877905721000104,0.867906800000071],[17.878215780000087,0.947178446000095],[17.866640259000064,1.01663157200008],[17.87325484200005,1.039627584000115],[17.892478475000072,1.077403056000179],[17.91480269400003,1.102001038000154],[17.95624719200009,1.171660868000089],[17.96337854000012,1.191452942000168],[17.966995890000106,1.253723043000178],[18.00203251100004,1.365783386000132],[18.00668339000009,1.402396138000171],[18.012264445000113,1.421955668000095],[18.071382284000094,1.551456808000182],[18.073656047000096,1.572334086000069],[18.06611128700004,1.858983256000144],[18.06817834500012,1.876217347000122],[18.078306926000067,1.909290263000116],[18.08151086400005,1.926550192000107],[18.08171757000008,1.942414856000198],[18.076033163000147,1.988484396000132],[18.08078739500013,2.084163310000122],[18.078306926000067,2.114807434000141],[18.072415812000145,2.145193176000106],[18.072415812000145,2.160024312000132],[18.111173137000094,2.26528920500013],[18.11861454300012,2.276968079000198],[18.142695760000066,2.305700175000112],[18.14672652200005,2.315932109000187],[18.163779744000095,2.321048076000096],[18.174011678000056,2.336137594000178],[18.18796431400005,2.37091583300014],[18.1991264240001,2.389105937000167],[18.207808065000048,2.407967835000193],[18.214112589000052,2.427656556000144],[18.22517134600008,2.486464335000136],[18.23302616400011,2.50258738200003],[18.246151978000054,2.518917135000152],[18.30351281700007,2.57255727200004],[18.313744751000115,2.575967916000153],[18.316741984000146,2.584339498000119],[18.393223104000125,2.713685608000162],[18.418337850000057,2.781743469000162],[18.421851847000113,2.808821920000113],[18.425159139000097,2.822154440000133],[18.449240356000132,2.873004049000158],[18.467327108000063,2.8988939420001],[18.47177128100006,2.909229227000196],[18.475802042000055,2.931191711000167],[18.479626098000097,2.94137196900013],[18.495335734000065,2.966073304000147],[18.528408651000063,3.064775289000152],[18.54143111200008,3.082810364000153],[18.562101685000098,3.096814677000168],[18.5973450110001,3.114643046000111],[18.61305464700007,3.128182272000089],[18.619669230000056,3.144770406000106],[18.621839640000132,3.156655986000132],[18.631141398000068,3.178980204000183],[18.64240686000005,3.323829244000152],[18.6345520430001,3.449222108000114],[18.626387166000086,3.476868998000128],[18.59300419100012,3.70977467900012],[18.612847941000098,3.833746440000198],[18.612023983000142,3.866611157000178],[18.611711060000086,3.879092509000117],[18.61367476300012,3.901468404000098],[18.6345520430001,3.935729879000107],[18.641580038000114,3.95826080300013],[18.645300741000113,3.982445373000189],[18.64654097500005,4.045981547000167],[18.632691691000105,4.130420837000202],[18.619669230000056,4.169565735000148],[18.583909139000127,4.235789083000142],[18.5786381420001,4.254857687000125],[18.572540323000055,4.265683899000152],[18.545048462000064,4.289015808000102],[18.537090291000112,4.306069031000135],[18.54194787600005,4.327850647000147],[18.556830688000076,4.3541539510001],[18.5764677330001,4.372757467000156],[18.595794719000082,4.371258850000146],[18.61429488100009,4.359812520000133],[18.633931925000127,4.355962626000178],[18.65408573400009,4.357228699000132],[18.6743428960001,4.361311137000143],[18.7210583910001,4.377356669000108],[18.75330448400007,4.400611064000117],[18.77697229000009,4.433451437000144],[18.82823531000011,4.559981181000126],[18.85241988100009,4.594061788000175],[18.88652632700007,4.621398621000195],[18.89789514100005,4.650647481000149],[18.90016890400008,4.652146098000159],[18.90450972500014,4.655866801000172],[18.92383671100009,4.662868957000171],[18.928177531000074,4.666434632000147],[18.96228397700014,4.724441427000116],[18.980474081000093,4.73940175400017],[18.998044067000052,4.750641378000125],[19.011583292000125,4.765033265000142],[19.019748169000138,4.803299662000128],[19.026879516000093,4.811516215000069],[19.035767863000103,4.818001607000127],[19.04413944400008,4.826889954000136],[19.048997030000095,4.836527608000154],[19.0577820230001,4.86779185000016],[19.069047485000056,4.891252950000137],[19.083310181000115,4.909339702000139],[19.106741180000082,4.931518101000123],[19.116176391000067,4.9404489140001],[19.133022908000044,4.946934306000159],[19.179014933000133,4.94641754200012],[19.195654744000134,4.950344950000087],[19.21467167200012,4.9761314900001],[19.229761189000016,5.002176412000082],[19.236995890000085,5.010780538000105],[19.283814738000103,5.032277934000149],[19.373111613000077,5.087545878000157],[19.394195597000106,5.116975606000153],[19.408975057000106,5.130385640000114],[19.431505982000118,5.135966695000207],[19.49651493400009,5.13379628500013],[19.517082154000093,5.135966695000207],[19.548604777000065,5.151366272000104],[19.568758586000115,5.155190328000145],[19.605552205000038,5.138292135000157],[19.7195504150001,5.135966695000207],[19.728748820000106,5.133847962000146],[19.748799276000057,5.124417012000094],[19.779185018000106,5.118164165000096],[19.824660278000064,5.096976827000134],[19.838612915000056,5.087545878000157],[19.85018843600008,5.073748271000113],[19.858163068000096,5.060305320000111],[19.875509888000067,5.031063538000126],[19.880367472000103,5.015534769000098],[19.890909465000046,5.002124736000155],[19.91540409300012,4.993107198000104],[20.00397749800007,4.974477845000138],[20.03105594900012,4.957993063000159],[20.054620402000126,4.937813416000083],[20.086349732000144,4.916264344000126],[20.152598918000052,4.890684509000081],[20.171719198000062,4.878359680000131],[20.217194458000108,4.822445781000141],[20.236624796000083,4.806348572000161],[20.254814901000117,4.797124329000154],[20.30173710100007,4.781647238000147],[20.322511027000132,4.779063415000152],[20.33894413200008,4.771906230000113],[20.354033651000094,4.755395610000122],[20.373670695000044,4.724441427000116],[20.395478149000066,4.677105814000143],[20.403746378000104,4.669845276000075],[20.42059289500008,4.662352193000132],[20.44022993900012,4.644110413000178],[20.456456340000017,4.621501973000136],[20.463070923000117,4.600934753000146],[20.457179809000106,4.586439514000118],[20.447051229000067,4.569670512000157],[20.44209029100011,4.550498555000146],[20.4523222250001,4.528923645000177],[20.456712867000107,4.524815862000111],[20.55980920400009,4.428361308000163],[20.580273071000075,4.41500295000013],[20.60311405400006,4.409731954000108],[20.688380168000037,4.422780253000141],[20.767858520000118,4.422780253000141],[20.79183638500004,4.426190898000172],[20.807029256000078,4.434252422000156],[20.81870813000006,4.443528341000089],[20.832350708000064,4.450685526000128],[20.87152144400011,4.453372702000152],[20.9635054930001,4.433735657000128],[21.059623657000117,4.398595683000167],[21.076056763000082,4.395469259000123],[21.084221639000077,4.38823455800015],[21.103445271000112,4.353275452000162],[21.113573853000076,4.340847270000083],[21.137965129000094,4.332682393000155],[21.150057414000084,4.32671376600014],[21.15811893700007,4.310203145000159],[21.165560344000085,4.30715423600013],[21.18561079900013,4.306069031000135],[21.195739380000077,4.302916769000177],[21.202974080000047,4.296638082000172],[21.210932251000113,4.291573792000094],[21.22343794800011,4.292452291000131],[21.23242964700006,4.297826640000096],[21.23914758300009,4.305603943000108],[21.24462528400008,4.313768820000121],[21.25072310300004,4.320357564000119],[21.258371216000114,4.325990295000139],[21.26591597500007,4.330072733000151],[21.275321086000105,4.332527365000118],[21.288343547000068,4.333380025000153],[21.298885538000032,4.330227763000096],[21.305500122000097,4.323148092000167],[21.310357707000037,4.316094259000153],[21.358313436000056,4.285553487000158],[21.374849894000132,4.278163757000144],[21.397690877000056,4.271626689000172],[21.416914510000083,4.27007639600015],[21.460219360000053,4.271936748000157],[21.47313846800006,4.269301249000137],[21.482440227000094,4.263125916000163],[21.489881633000092,4.256252950000189],[21.497219686000108,4.251472881000097],[21.508071737000137,4.249405823000131],[21.5278121340001,4.249250793000101],[21.538147420000115,4.244651591000149],[21.63416223100012,4.294209290000197],[21.65111210100011,4.295656230000191],[21.68893925000009,4.292452291000131],[21.722942342000124,4.295139465000162],[21.737308390000123,4.293382467000185],[21.7584957280001,4.285605164000174],[21.76324995900009,4.281677755000203],[21.76604048700005,4.277207744000179],[21.771001424000104,4.273487040000177],[21.782060181000105,4.271936748000157],[21.810998983000076,4.273176982000095],[21.819887329000064,4.271936748000157],[21.838077434000127,4.263255106000187],[21.851926717000083,4.251679586000151],[21.867739705000076,4.24155100500019],[21.89161421700007,4.237184347000124],[21.949905232000106,4.233463644000111],[21.970782512000085,4.237184347000124],[21.98029097400007,4.240620830000154],[21.984528442000112,4.242946269000171],[21.989592733000077,4.244238180000139],[22.0014783120001,4.244651591000149],[22.008919718000126,4.24237782800013],[22.036612824000144,4.229438766000157],[22.05780562400011,4.219536845000121],[22.108448527000093,4.209847514000089],[22.12787886600006,4.203077902000146],[22.133046509000053,4.198659567000149],[22.151650025000034,4.179461772000138],[22.161881958000095,4.173183085000133],[22.184722941000103,4.164604797000094],[22.207253866000116,4.150316264000111],[22.3032686760001,4.128715516000142],[22.42264123500013,4.134787496000101],[22.431839640000135,4.138559875000126],[22.451532021000048,4.146672020000125],[22.45736779800009,4.149076029000169],[22.492714477000078,4.174035747000161],[22.51049117000011,4.191269836000146],[22.518242635000036,4.206798605000159],[22.52217004400009,4.211346131000183],[22.540463501000147,4.22726247200012],[22.546147909000094,4.237184347000124],[22.545734497000097,4.245943502000102],[22.539740030000075,4.266924134000192],[22.53932661900006,4.278163757000144],[22.568575480000106,4.331545512000147],[22.576533651000148,4.340847270000083],[22.588005818000084,4.344180399000095],[22.599891398000096,4.352551981000161],[22.609296509000075,4.363352356000107],[22.61374068200007,4.37435943700018],[22.61126021300009,4.381852519000119],[22.594000284000114,4.402316386000095],[22.589039347000067,4.421953430000116],[22.58697229000009,4.449393616000165],[22.5924499920001,4.473707378000171],[22.61033003700004,4.484223532000143],[22.654358357000092,4.482828268000162],[22.675649048000082,4.484740296000084],[22.68949833200014,4.491664938000156],[22.69507938600006,4.501483460000131],[22.697146444000023,4.512025452000103],[22.697043091000097,4.535744934000135],[22.70014367600004,4.541067607000173],[22.713682902000127,4.551222026000147],[22.716783488000146,4.556518860000082],[22.718953898000052,4.562771709000173],[22.728669067000084,4.580290019000145],[22.731149536000057,4.587266337000131],[22.72980594900011,4.59674896200012],[22.723811483000077,4.617031962000127],[22.723604777000105,4.628840027000138],[22.737867473000108,4.637754211000157],[22.748719523000148,4.648270365000201],[22.7574011640001,4.660801901000113],[22.765152628000095,4.676020610000151],[22.776418091000068,4.710101216000112],[22.786029907000085,4.724648133000159],[22.802876424000143,4.730642599000191],[22.8180692950001,4.724596456000143],[22.837292928000096,4.71423533100014],[22.853829386000115,4.711263936000122],[22.865301554000037,4.738678284000173],[22.887315715000113,4.75549896300015],[22.895583944000066,4.765394999000137],[22.886798950000067,4.776686299000104],[22.882354777000042,4.788494365000119],[22.8828715410001,4.800741679000139],[22.888762655000107,4.813221537000132],[22.898374471000096,4.823582663000138],[22.905919230000052,4.824202779000117],[22.915220988000073,4.821153870000089],[22.929690389000115,4.820611267000132],[22.941472616000112,4.824719544000146],[22.953048136000064,4.830791525000109],[22.965037069000118,4.835287374000131],[22.97743941200008,4.83430552200015],[22.98570764100012,4.826424866000124],[22.99624963400009,4.799501445000189],[23.00720503700009,4.778443299000173],[23.011132446000147,4.76363800100016],[23.01733361900011,4.750512187000183],[23.029322550000074,4.744931132000175],[23.042758423000123,4.742967428000142],[23.055160767000103,4.737799784000131],[23.06663293400004,4.730177511000164],[23.07738163200014,4.721056621000087],[23.099395793000042,4.711651510000137],[23.123890422000073,4.715630595000121],[23.16874556500008,4.738109843000117],[23.183731731000137,4.725268249000138],[23.208639770000104,4.690541687000106],[23.22083540800011,4.68351369300018],[23.22424605300006,4.680051371000146],[23.251841268000135,4.662972310000113],[23.264863729000098,4.635067037000127],[23.273131958000135,4.632018127000094],[23.2951461180001,4.627599792000183],[23.29959029200012,4.625119324000124],[23.30196740800008,4.621708679000093],[23.313026164000064,4.610210673000083],[23.316436809000095,4.607730204000105],[23.33586714700007,4.606800028000136],[23.3539538980001,4.603570252000168],[23.371213826000087,4.597265727000149],[23.388370402000135,4.587266337000131],[23.396018514000104,4.591607158000116],[23.414518677000046,4.590832011000201],[23.42258020100013,4.594061788000175],[23.427437785000052,4.601348165000161],[23.428367960000116,4.608608704000133],[23.428264607000074,4.617342021000113],[23.43002160700007,4.628840027000138],[23.437152954000084,4.646565044000141],[23.448315063000024,4.659406637000131],[23.46505822800009,4.667209778000156],[23.488415975000123,4.669845276000075],[23.50608931500011,4.676434021000161],[23.56655074100007,4.724441427000116],[23.5880481370001,4.73394989000019],[23.634040161000087,4.745137838000133],[23.67269413200009,4.767203674000129],[23.692847941000082,4.773404846000119],[23.737909790000117,4.779063415000152],[23.76002730300013,4.787434997000119],[23.79847456800007,4.814745992000141],[23.816664672000115,4.820611267000132],[23.828240194000074,4.819345195000096],[23.84787723800008,4.813996684000144],[23.855215291000093,4.813221537000132],[23.8644136960001,4.81608958000011],[23.874748983000103,4.82497792600013],[23.881880330000115,4.826889954000136],[23.92435835800006,4.817794902000173],[23.948336223000098,4.817691549000145],[23.94740604700013,4.830584819000151],[23.942755168000076,4.84050669400014],[23.943168579000087,4.851694641000093],[23.94647587100007,4.861642355000185],[23.950816691000057,4.86779185000016],[23.957121216000072,4.870814921000175],[23.963115682000108,4.868696187000111],[23.977998494000133,4.854149272000143],[23.995775187000078,4.865052999000112],[24.046934855000075,4.88892751100019],[24.072463013000117,4.910269878000108],[24.08961958800009,4.92021759100011],[24.108429809000086,4.923059795000171],[24.119901978000115,4.91889984100014],[24.13922896300005,4.905438130000093],[24.15276818800004,4.902595927000121],[24.16289677000009,4.907789409000131],[24.19090539600009,4.944169617000114],[24.20961226400007,4.956184388000167],[24.229766073000064,4.961171163000131],[24.24619917800004,4.9540656530001],[24.253020467000084,4.929881083000126],[24.259221639000142,4.929881083000126],[24.267696573000052,4.935720521000121],[24.269556925000074,4.943187765000147],[24.269660278000085,4.952463684000165],[24.272967570000105,4.964013367000106],[24.284646444000145,4.992435405000123],[24.28650679500006,4.995070903000141],[24.29663537600004,5.003261617000162],[24.368465617000137,5.012434184000156],[24.386138957000124,5.022356059000145],[24.398644653000133,5.036024475000161],[24.396887655000057,5.048194275000171],[24.371979614000082,5.053387757000095],[24.361230916000064,5.062947896000182],[24.36784550000007,5.084548645000154],[24.382521607000058,5.107854716000176],[24.396370890000128,5.122298279000105],[24.401641887000068,5.111472067000165],[24.411460409000114,5.081861471000124],[24.416938110000103,5.073257345000172],[24.43068404200005,5.067417908000095],[24.43347456900011,5.075531108000106],[24.4330611580001,5.08932871500015],[24.436678508000085,5.100594177000119],[24.459622844000105,5.107441304000162],[24.480844127000125,5.102334685000145],[24.4872180590001,5.100800883000161],[24.513676391000104,5.087235819000171],[24.533003377000057,5.073257345000172],[24.538687785000093,5.0655575560001],[24.547369425000056,5.046488953000107],[24.5534672440001,5.039099223000107],[24.563389120000096,5.03488759300015],[24.588607219000068,5.031063538000126],[24.601216268000087,5.026102600000172],[24.610104614000104,5.016723328000126],[24.610001261000065,4.996724549000177],[24.615478963000072,4.985097351000135],[24.6274678960001,4.976906637000112],[24.656923462000123,4.967268982000178],[24.67077274600007,4.957217916000147],[24.657440226000062,4.939777120000201],[24.65423628700009,4.929415995000099],[24.66436486800012,4.924403382000136],[24.730614054000057,4.917504578000162],[24.749837687000053,4.918744812000099],[24.76637414500007,4.929881083000126],[24.778259725000083,4.918538107000145],[24.78942183400011,4.919855856000197],[24.80006717900011,4.928899231000159],[24.811022583000096,4.9404489140001],[24.819497518000077,4.944479675000181],[24.8276623940001,4.941921692000107],[24.836860799000103,4.937710063000154],[24.84833296700012,4.936728211000087],[24.86817671700001,4.944376323000157],[24.904350219000037,4.966803895000155],[24.927087850000106,4.971480611000132],[24.932358846000056,4.974426168000136],[24.950859009000084,4.987681173000126],[24.95809370900014,4.991350199000124],[24.969359171000093,4.99140187600014],[25.006462850000077,4.980937399000197],[25.04056929500007,4.962101339000171],[25.0761226810001,4.951843567000182],[25.084804321000064,4.954220683000145],[25.09048872900013,4.974477845000138],[25.10092736800007,4.994554138000097],[25.10526818800014,4.99876576800014],[25.114259888000078,5.001840516000172],[25.121701294000104,5.008635967000131],[25.129452759000117,5.018635356000146],[25.140201457000046,5.017963562000162],[25.147642863000044,5.014139506000119],[25.154567505000042,5.009307760000112],[25.1636625560001,5.005638733000112],[25.227534627000068,5.009566142000082],[25.239316854000062,5.015534769000098],[25.248515259000072,5.024138895000135],[25.292336873000067,5.028273011000152],[25.30763309700012,5.032277934000149],[25.316831503000113,5.042251485000151],[25.320965617000127,5.052250875000169],[25.321895793000095,5.077003886000099],[25.324996378000037,5.088114319000127],[25.33915572100008,5.105167542000145],[25.342359660000053,5.111472067000165],[25.34380660000005,5.121884868000095],[25.349284301000125,5.141676941000171],[25.348560832000146,5.149014995000158],[25.341222779000134,5.155603739000156],[25.32148238100009,5.159169414000132],[25.31445438700007,5.16325185200013],[25.30773645000005,5.185291850000127],[25.316211385000145,5.202241720000131],[25.32892378800011,5.216013489000161],[25.335538371000094,5.22844167100014],[25.337192016000127,5.251747742000177],[25.34339318900004,5.271927388000165],[25.355898885000045,5.286448466000195],[25.376466105000105,5.293011373000184],[25.363650350000054,5.310555522000158],[25.37067834500004,5.316834208000159],[25.385354451000126,5.321485087000127],[25.395689738000044,5.333964946000123],[25.413363078000145,5.323552145000178],[25.435067180000146,5.328693949000183],[25.479922323000036,5.353188579000147],[25.48198937900008,5.356857605000144],[25.484934936000087,5.355307312000207],[25.495580281000088,5.344532776000094],[25.504468628000094,5.342284851000088],[25.52896325700007,5.351896668000094],[25.540848836000094,5.354428813000169],[25.53278731300008,5.372231344000112],[25.543742716000082,5.375280253000141]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Republic of Congo","sov_a3":"COG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Republic of Congo","adm0_a3":"COG","geou_dif":0,"geounit":"Republic of Congo","gu_a3":"COG","su_dif":0,"subunit":"Republic of Congo","su_a3":"COG","brk_diff":0,"name":"Congo","name_long":"Republic of Congo","brk_a3":"COG","brk_name":"Republic of Congo","brk_group":null,"abbrev":"Rep. Congo","postal":"CG","formal_en":"Republic of Congo","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Congo, Rep.","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":10,"pop_est":4012809,"gdp_md_est":15350,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"CF","iso_a2":"CG","iso_a3":"COG","iso_n3":"178","un_a3":"178","wb_a2":"CG","wb_a3":"COG","woe_id":23424779,"woe_id_eh":23424779,"woe_note":"Exact WOE match as country","adm0_a3_is":"COG","adm0_a3_us":"COG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":17,"abbrev_len":10,"tiny":-99,"homepart":1,"filename":"COG.geojson"},"geometry":{"type":"Polygon","coordinates":[[[17.627275024000113,3.62631724100008],[17.709130493000146,3.626420593000105],[17.71450484200011,3.627505798000101],[17.72608036300005,3.631846619000086],[17.73321171000009,3.632208354000084],[17.73992964700011,3.629159445000155],[17.749644816000057,3.618074850000141],[17.755949341000075,3.61450917500008],[17.76514774600008,3.614354147000129],[17.78447473200012,3.618229879000083],[17.793156372000084,3.617506409000085],[17.80834924300009,3.608592225000067],[17.821164998000086,3.593993632000107],[17.830570109000064,3.575674337000123],[17.835324341000046,3.555830587000045],[17.84214563000009,3.54014679000008],[17.856408325000075,3.537304586000104],[17.875321899000113,3.542730611000081],[17.913562459000104,3.561334127000123],[17.91924686700014,3.565597433000093],[17.924517863000062,3.563452861000101],[17.959864542000076,3.541076966000034],[17.969476359000083,3.537511292000147],[17.981878703000064,3.53880320200011],[18.01309126700005,3.553970235000122],[18.04709436100009,3.563142802000115],[18.082027629000066,3.563452861000101],[18.11644413200011,3.552006531000089],[18.134014120000103,3.534824117000127],[18.14672652200005,3.494904073000086],[18.15985233500001,3.480305482000105],[18.181556437000012,3.477385762000026],[18.2025370690001,3.487333476000117],[18.220003703000145,3.503947449000137],[18.231579224000114,3.521155701000112],[18.235403280000128,3.530922547000074],[18.242534627000083,3.561127422000069],[18.248529094000105,3.574899191000028],[18.25586714700009,3.577224630000046],[18.264858846000035,3.574744161000069],[18.275917602000046,3.574382426000071],[18.35560266100009,3.581462098000102],[18.36159712700004,3.580170186000145],[18.372862590000096,3.574537455000026],[18.379890585000112,3.574382426000071],[18.38371464000005,3.577999776000055],[18.38784875500008,3.591668192000071],[18.392292928000074,3.595853983000111],[18.403661743000068,3.597352600000107],[18.420611613000062,3.59637074800014],[18.42970666500014,3.600220642000096],[18.44800012200011,3.61802317300004],[18.45905887800012,3.631381531000059],[18.472081339000056,3.63205332400014],[18.497092733000045,3.611460266000051],[18.513422485000092,3.592236633000126],[18.5543502190001,3.526375020000032],[18.57026656100004,3.489607239000051],[18.582462199000133,3.477385762000026],[18.626387166000086,3.476868998000086],[18.6345520430001,3.449222108000071],[18.642406860000023,3.323829244000095],[18.631141398000068,3.17898020400014],[18.621839640000132,3.156655986000075],[18.619669230000056,3.144770406000134],[18.61305464700007,3.128182272000046],[18.597345011000073,3.114643046000069],[18.562101685000098,3.096814677000111],[18.54143111200008,3.08281036400011],[18.528408651000063,3.06477528900011],[18.495335734000065,2.966073304000091],[18.479626098000097,2.941371969000087],[18.475802042000055,2.93119171100011],[18.47177128100006,2.909229227000139],[18.467327108000063,2.898893942000129],[18.449240356000132,2.873004049000102],[18.425159139000097,2.822154440000091],[18.421851847000113,2.808821920000071],[18.418337850000057,2.781743469000105],[18.393223104000125,2.713685608000119],[18.316741984000146,2.584339498000077],[18.313744751000115,2.575967916000096],[18.30351281700004,2.572557272000068],[18.246151978000054,2.518917135000095],[18.23302616400011,2.502587382000058],[18.225171346000053,2.486464335000079],[18.214112589000052,2.427656556000102],[18.207808065000048,2.40796783500015],[18.1991264240001,2.389105937000124],[18.18796431400005,2.370915833000083],[18.174011678000056,2.336137594000135],[18.163779744000095,2.321048076000125],[18.14672652200005,2.315932109000144],[18.142695760000066,2.305700175000069],[18.11861454300012,2.276968079000156],[18.111173137000094,2.265289205000087],[18.072415812000145,2.16002431200009],[18.072415812000145,2.145193176000063],[18.078306926000067,2.114807434000099],[18.08078739500013,2.084163310000079],[18.076033163000147,1.988484396000075],[18.08171757000008,1.942414856000156],[18.081510864000023,1.926550192000135],[18.078306926000067,1.909290263000059],[18.068178345000092,1.876217347000079],[18.06611128700004,1.858983256000087],[18.073656047000096,1.572334086000097],[18.071382284000066,1.551456808000125],[18.012264445000113,1.421955668000052],[18.00668339000009,1.402396138000128],[18.00203251100004,1.365783386000089],[17.966995890000106,1.253723043000136],[17.96337854000012,1.191452942000112],[17.95624719200009,1.171660868000046],[17.91480269400003,1.102001038000111],[17.892478475000072,1.077403056000122],[17.87325484200005,1.039627584000073],[17.866640259000064,1.016631572000108],[17.878215780000087,0.947178446000052],[17.877905721000104,0.8679068000001],[17.907671346000086,0.740472718000078],[17.907567993000068,0.71308420800004],[17.8925818270001,0.635879618000061],[17.893201945000072,0.607664287000091],[17.89929976400012,0.583273011000074],[17.918420044000097,0.535213929000108],[17.933096151000115,0.527049052000095],[17.943638143000072,0.510822652000087],[17.94994266800009,0.491495666000034],[17.95200972500004,0.474339091000075],[17.945498494000077,0.377290752000107],[17.939917440000073,0.361271057000053],[17.85403121000013,0.241071676000089],[17.77537967900014,0.02640777600007],[17.757086222000083,-0.009455667999887],[17.716365193000115,-0.195800882999905],[17.7136780190001,-0.220915628999933],[17.71626184100009,-0.246237079999915],[17.740756470000036,-0.346179300999964],[17.749541463000128,-0.523429462999928],[17.741996704000087,-0.533351338999921],[17.7280440670001,-0.553091735999885],[17.66417199700004,-0.612726337999888],[17.65869429600013,-0.619754332999904],[17.654456828000093,-0.627505798999906],[17.652493123000053,-0.642181904999902],[17.650942830000133,-0.646316018999912],[17.647635538000145,-0.6499333699999],[17.63585331200005,-0.658511656999835],[17.623037557000146,-0.673291117999938],[17.60216027900009,-0.688690693999931],[17.545863410000038,-0.756491041999936],[17.41147424300007,-0.918340758999932],[17.38542932100009,-0.942421976999881],[17.364965454000128,-0.967226663999909],[17.357317342000073,-0.973531188999928],[17.33044559700005,-0.986553648999873],[17.327655070000105,-0.991721292999955],[17.30801802600007,-1.014975687999893],[17.297682739000066,-1.02107350699994],[17.245386190000144,-1.03585296599995],[17.194846639000104,-1.042984313999895],[17.175416301000038,-1.048255309999931],[17.10865035000009,-1.075643818999879],[17.060487915000095,-1.089183043999938],[17.028655233000052,-1.094454040999878],[17.02255741400009,-1.09703786199988],[17.012015421000058,-1.104272562999938],[17.005917602000096,-1.106753030999926],[17.003127075000123,-1.112850849999887],[16.979562622000117,-1.140239359999924],[16.94049523900011,-1.174759215999899],[16.909179321000096,-1.211139424999885],[16.862567179000052,-1.248863219999933],[16.83972619600013,-1.262505797999935],[16.833214966000067,-1.269017028999912],[16.828667440000117,-1.27625173],[16.81781538900009,-1.304157002999958],[16.79466434700009,-1.345498147999891],[16.77926477000011,-1.382395120999917],[16.762728312,-1.405856220999894],[16.725521281000084,-1.479960225999918],[16.69255171700013,-1.522955016999902],[16.66950402800009,-1.569360452999916],[16.65597112900008,-1.590290215999886],[16.636224406000053,-1.620830178999896],[16.628886352000052,-1.63726328499996],[16.623822062000073,-1.653799743999869],[16.622478475000094,-1.665168557999948],[16.623098592000076,-1.699171650999886],[16.617207479000058,-1.728730569999911],[16.604185018000123,-1.754052021999897],[16.524970535000108,-1.858534921999947],[16.522536255000144,-1.861745706999955],[16.517161906000098,-1.87373463899992],[16.513957967000124,-1.887377216999923],[16.50775679500012,-1.890271097999914],[16.490290161000075,-1.903603616999931],[16.474787232000068,-1.910114846999903],[16.470033,-1.912698668999908],[16.460937947000104,-1.920863544999918],[16.44564172400007,-1.940500588999953],[16.382596476000117,-2.002202249999925],[16.340221802000116,-2.034138284999898],[16.284411255000037,-2.087571715999914],[16.256092570000135,-2.106795348999938],[16.231287883000107,-2.129016214999879],[16.206793253000054,-2.160952249999866],[16.194597615000134,-2.182036234999884],[16.18736291500008,-2.204567157999904],[16.1886031490001,-2.227718200999902],[16.190050090000113,-2.235469664999897],[16.18994673600008,-2.241877542999944],[16.176924276000136,-2.286836038999866],[16.17485721800008,-2.303062438999873],[16.178267863000112,-2.318462015999941],[16.187466267000104,-2.332311298999912],[16.189843383000067,-2.337478942999923],[16.191703735000146,-2.346884053999872],[16.19232385200013,-2.395149841999896],[16.22560347500007,-2.635238545999925],[16.20451949100004,-2.782723082999893],[16.180851685000103,-2.854139912999898],[16.178164510000073,-2.868092549999886],[16.17702762900006,-2.8824585979999],[16.183981404000065,-2.940449251999951],[16.188293091000048,-2.976406351999913],[16.184469035000088,-3.0261190799999],[16.189843383000067,-3.082343036999902],[16.18570926900011,-3.136396585999889],[16.18994673600008,-3.153036396999908],[16.199248494000102,-3.171846618999922],[16.199455200000074,-3.19479095499986],[16.193357381000112,-3.238405862999912],[16.19862837700012,-3.259489846999926],[16.210410603000128,-3.271065368999885],[16.22208947700011,-3.27912689199988],[16.227463827000065,-3.289875589999895],[16.22560347500007,-3.313233336999929],[16.220745890000046,-3.331733499999871],[16.20772342900011,-3.361912535999863],[16.15842411300011,-3.447282002999955],[16.137856893000016,-3.500715432999883],[16.115532674000065,-3.544226988999895],[16.053314249000067,-3.619984638999881],[16.012696573000113,-3.702253519999929],[16.005255167000087,-3.724784443999865],[15.991095826000048,-3.738943786999911],[15.974249309000072,-3.78648610399992],[15.943140096000036,-3.840746357999876],[15.936112101000106,-3.848497822999959],[15.93032434100013,-3.858626402999917],[15.91213423700009,-3.917434183999901],[15.88801927300011,-3.940522978999894],[15.882988729000088,-3.945339456999889],[15.844231405000128,-3.965596618999896],[15.799996378000117,-3.978825784999884],[15.755141235000053,-3.985647074999932],[15.711216267000111,-3.992158304999904],[15.566832316000072,-4.038046976999879],[15.549055623000129,-4.046211852999889],[15.533759399000077,-4.057994079999901],[15.521150350000056,-4.07680430099991],[15.49035119600009,-4.175196227999933],[15.484976847000041,-4.1838778689999],[15.462859334000113,-4.20713226299992],[15.458931925000059,-4.213850198999936],[15.450250285000095,-4.217260843999966],[15.425445597000047,-4.230179951999972],[15.386584920000104,-4.244339293999928],[15.275273885000047,-4.300356546999936],[15.255740194000056,-4.313068948999899],[15.228351684000103,-4.324851175999896],[15.203960409000075,-4.339010518999942],[15.193418416000013,-4.358750914999916],[15.18804406800007,-4.372186787999865],[15.15067777700011,-4.425150932999955],[15.097920370000082,-4.499930927999869],[15.076112915000037,-4.520084736999947],[15.022782837000134,-4.547059834999885],[15.014617961000027,-4.558015237999953],[15.00821008300008,-4.571037698999888],[14.931005493000015,-4.646898701999902],[14.849046671000051,-4.78373789399997],[14.841398559000082,-4.80017099999985],[14.831166626000085,-4.815053811999888],[14.815456991000103,-4.827972920999898],[14.768431437000059,-4.848230081999901],[14.702182251000037,-4.889571227999852],[14.672726684000054,-4.89990651499994],[14.634486125000135,-4.903627217999954],[14.623324015000037,-4.899493102999926],[14.592111450000031,-4.880579528999903],[14.579605754000054,-4.876342060999946],[14.575058227000111,-4.873654886999915],[14.56689335100009,-4.860529072999938],[14.562139120000097,-4.85587819399997],[14.553870891000145,-4.855154723999888],[14.532476847000025,-4.856188252999871],[14.528032674000116,-4.852157490999971],[14.519867797000101,-4.841305439999928],[14.501470988000108,-4.840685322999945],[14.4819372960001,-4.845852965999953],[14.470051717000077,-4.852157490999971],[14.44948449700007,-4.873964944999898],[14.437288859000061,-4.880166116999888],[14.41816857900008,-4.883163349999903],[14.400701945000035,-4.886263935999935],[14.39646447700008,-4.85587819399997],[14.412587524000058,-4.778156839999966],[14.408763468000101,-4.767821552999862],[14.403699178000037,-4.758829853999913],[14.399668416000054,-4.749321390999924],[14.399048299000071,-4.737539163999926],[14.401528768000047,-4.728134052999877],[14.40917688000013,-4.710564066999908],[14.410933878,-4.701055602999915],[14.406903117000097,-4.676044209999915],[14.395844361000114,-4.660127868999893],[14.380961548000073,-4.646175231999905],[14.365768677000036,-4.627261657999966],[14.35750044800008,-4.589124450999904],[14.349955689000126,-4.566903584999878],[14.350782511000146,-4.559048766999936],[14.358947388000074,-4.544579365999908],[14.374760376000067,-4.530213317999895],[14.412587524000058,-4.514503681999926],[14.424576456000125,-4.502308043999917],[14.435738566000055,-4.486701761999881],[14.452481730000102,-4.467994893999901],[14.466537719000115,-4.448047789999876],[14.469741659000078,-4.429340921999895],[14.463230428000118,-4.422622985999864],[14.428607219000098,-4.400402119999924],[14.40907352700009,-4.377561136999915],[14.392743774000083,-4.352756448999883],[14.386025838000137,-4.338287047999941],[14.385715779000067,-4.332912699999895],[14.389126424000098,-4.327538349999926],[14.393467245000066,-4.313172301999927],[14.395224243000143,-4.300356546999936],[14.395327596000074,-4.289711201999864],[14.392847127000095,-4.281753030999894],[14.38705936600013,-4.277102151999927],[14.368559204000091,-4.278445738999892],[14.325461059000078,-4.301803486999929],[14.279985800000134,-4.312758890999916],[14.259625285000084,-4.326918232999958],[14.222211548000132,-4.359784443999899],[14.18469445700012,-4.377457782999898],[14.146350545000104,-4.389860127999953],[14.058397258000127,-4.400505472999953],[14.021086873000087,-4.415388284999906],[13.991631307000091,-4.455075784999892],[13.98987430800011,-4.457969664999965],[13.98770389800012,-4.460140075999959],[13.971787557000084,-4.471612243999886],[13.954941040000108,-4.491869404999889],[13.944502400000088,-4.498070576999865],[13.934580526000076,-4.498483987999876],[13.90543582500004,-4.490099896999936],[13.904401489000092,-4.489802347999913],[13.87628951000005,-4.491662698999916],[13.867091105000043,-4.489285582999884],[13.856135701000056,-4.479673766999966],[13.842079712000043,-4.453422138999926],[13.832881307000063,-4.441226500999917],[13.810453735000067,-4.426653746999861],[13.789989868000106,-4.424586690999902],[13.726531210000047,-4.446704202999911],[13.714955688000117,-4.453008727999915],[13.71102828000005,-4.464480895999941],[13.721776978000065,-4.561012471999959],[13.718159628000079,-4.580339456999923],[13.702605021000068,-4.620750426999905],[13.699091023000108,-4.642661233999945],[13.712475220000044,-4.685656025999933],[13.705860636000125,-4.694337665999896],[13.6983675540001,-4.693510843999959],[13.690099325000062,-4.691133727999926],[13.68193444800005,-4.695371194999964],[13.677800334000011,-4.70632659899985],[13.68059086100007,-4.724723407999946],[13.675319865000034,-4.731751402999862],[13.666534871000067,-4.732681578999916],[13.643693888000143,-4.726273701999958],[13.633978719000112,-4.7256535839999],[13.613101440000037,-4.739192809999878],[13.591397339000139,-4.779397073999903],[13.579859863000138,-4.783031378999866],[13.57072676600012,-4.785908304999879],[13.558634481000125,-4.780430602999971],[13.53889408300006,-4.759966735999924],[13.52618168100011,-4.754282327999888],[13.5147095130001,-4.755935973999925],[13.482256713000083,-4.774849547999878],[13.492385295000133,-4.783531188999929],[13.496416056000044,-4.79210947599995],[13.493522176000056,-4.79965423599991],[13.482256713000083,-4.805545348999914],[13.43078698700009,-4.843372497999894],[13.403191772000097,-4.876858825999889],[13.392649780000028,-4.885333760999885],[13.371359090000055,-4.841718851999928],[13.364124389000096,-4.806888936999883],[13.358750041000121,-4.794796650999885],[13.349344930000058,-4.785598245999893],[13.334565470000143,-4.777536721999894],[13.2740006920001,-4.755832620999897],[13.255810588000145,-4.74394704099997],[13.208785034000073,-4.703122660999966],[13.182119995000049,-4.686069436999944],[13.172404825000086,-4.67614756199994],[13.160002482000039,-4.643384703999856],[13.14212243600008,-4.617339781999873],[13.13406091300007,-4.602353616999906],[13.112356812000087,-4.576928812999895],[13.087965535000137,-4.579512633999897],[13.071532430000076,-4.601630146999909],[13.073702840000067,-4.635323180999946],[13.027194051000038,-4.612172138999867],[12.961564982000112,-4.533830667999879],[12.921980835000056,-4.502308043999917],[12.902447144000035,-4.480190531999909],[12.884463745000062,-4.432131448999939],[12.86989099100009,-4.411977640999879],[12.85428470900007,-4.403089294999859],[12.84229577700009,-4.404329528999895],[12.830306844000035,-4.409703876999855],[12.814803914000038,-4.412907816999919],[12.801057984000096,-4.410013935999942],[12.782655684000076,-4.40007075799987],[12.775426473000039,-4.396164651999882],[12.761680542000105,-4.391203714999932],[12.737909383000044,-4.404949645999864],[12.72654056800013,-4.427997333999926],[12.718479044000048,-4.451871845999918],[12.704939819000087,-4.467994893999901],[12.686853068000062,-4.478330179999901],[12.67052331500011,-4.491352640999935],[12.65657067900014,-4.507372333999896],[12.634866577000137,-4.547679951999939],[12.623807821000128,-4.559255471999975],[12.608098185000074,-4.565043232999868],[12.497200562000044,-4.585300394999877],[12.429091024000115,-4.607521259999899],[12.414104859000048,-4.608864846999964],[12.38702640800011,-4.60545420399994],[12.377621297000132,-4.619406839999925],[12.378861531000068,-4.662298278999884],[12.374107299000087,-4.683175556999871],[12.332352743000058,-4.765857848999929],[12.321914103000095,-4.778156839999966],[12.307651407000037,-4.783634540999855],[12.273751668000017,-4.787148538999914],[12.258558797000092,-4.7907658889999],[12.244089396000078,-4.796346943999907],[12.23520104900004,-4.803995055999891],[12.222592000000105,-4.780637308999943],[12.213496948000056,-4.769165139999927],[12.204091837000107,-4.763480732999881],[12.192206258000056,-4.763480732999881],[12.187555379000086,-4.768028258999919],[12.157169637000038,-4.870554299999881],[12.130814657000087,-4.91292897599989],[12.01807177200007,-5.008599787999927],[12.00960769100007,-5.019630835999862],[11.994313998000052,-5.005791924999954],[11.980479363000141,-4.989434502999941],[11.957855665000068,-4.951918226999921],[11.920258009000092,-4.90642669099995],[11.89572791200004,-4.882644647999967],[11.88624108200014,-4.855238539999987],[11.83058609200009,-4.79702181099988],[11.82021023100009,-4.784799977999924],[11.819266039000127,-4.779159595999971],[11.824069031000079,-4.772359804999923],[11.829960630000102,-4.773532557999971],[11.843318628000105,-4.788782951999877],[11.848424341000053,-4.78604350699996],[11.853137400000094,-4.773918075999902],[11.850366514000086,-4.752839362999865],[11.824066602000128,-4.718682549999897],[11.781633493000072,-4.680409086999944],[11.776905990000072,-4.667878090999892],[11.777687864000114,-4.657700805999895],[11.80132059200008,-4.657938397999928],[11.82016291700009,-4.637281174999956],[11.824624412000105,-4.614767169999908],[11.806408668000072,-4.577117894999901],[11.692982342000079,-4.463491196999939],[11.589121941000116,-4.374688408999901],[11.497894727000128,-4.294040622999958],[11.450587436000092,-4.264729609999932],[11.401403362000053,-4.221366378999932],[11.38249759200005,-4.191013278999918],[11.377696160000141,-4.184665622999972],[11.36475670700014,-4.162774346999939],[11.362071160000141,-4.153090101999893],[11.363129102000102,-4.131117445999877],[11.362152540000125,-4.119805596999896],[11.358246290000038,-4.111911716999913],[11.270180621000065,-4.041725062999916],[11.172424592000084,-3.977473746999934],[11.139094570000054,-3.953100456999976],[11.114016304062915,-3.936856189903011],[11.12962271300006,-3.90785698499991],[11.196091349000113,-3.728815205999865],[11.212524455000079,-3.697292581999889],[11.238569377000147,-3.675071715999948],[11.272675822000108,-3.652954202999936],[11.30244144700012,-3.628459573999891],[11.334687540000061,-3.608615823999898],[11.375821981000058,-3.600347594999945],[11.41395918800012,-3.587635191999894],[11.436283407000076,-3.559006448999909],[11.454990275000057,-3.528207294999945],[11.482585490000048,-3.50929372199991],[11.53271162900009,-3.51652842199988],[11.569815307000056,-3.544950459999896],[11.649190307000111,-3.673314717999872],[11.665933471000073,-3.691401468999885],[11.687637573000073,-3.698739522999886],[11.74210453200007,-3.691711527999871],[11.762154989000123,-3.69398529099989],[11.81972253400005,-3.710418395999866],[11.83832605000012,-3.710935159999891],[11.840807756000089,-3.709988529999904],[11.85837650600007,-3.703287047999922],[11.879977254000039,-3.687164000999928],[11.89765059400014,-3.666080016999913],[11.905505412000082,-3.643549092999891],[11.898477417000066,-3.622361754999929],[11.879253784000126,-3.612026468999915],[11.855585978000107,-3.604378355999941],[11.834915405000089,-3.592079365999907],[11.824993530000086,-3.571202086999932],[11.827784057000144,-3.548051045999941],[11.884834839000062,-3.413278909999917],[11.898374064000024,-3.389197692999886],[11.94147220900004,-3.356951598999913],[11.954908081000099,-3.335454202999884],[11.944366089000113,-3.303208109999915],[11.905712117000121,-3.285121357999898],[11.858273153000141,-3.272098896999864],[11.821892944000039,-3.254838967999958],[11.781585327000101,-3.221662698999864],[11.760501343000072,-3.2090536499999],[11.703863973000068,-3.185385843999896],[11.696112508000084,-3.179598082999931],[11.687534220000146,-3.171019795999896],[11.68567386900014,-3.167195739999954],[11.687327515000078,-3.161511331999918],[11.688257691000047,-3.092264912999894],[11.693218628000096,-3.074694925999921],[11.706447795000088,-3.049890238999893],[11.716886433000127,-3.043585712999871],[11.730632365000048,-3.044722594999882],[11.753680054000114,-3.042345478999934],[11.778381388000128,-3.027152607999909],[11.778381388000128,-3.005655211999866],[11.763705281000057,-2.982607523999902],[11.687637573000073,-2.901785583999938],[11.6531177170001,-2.851659443999921],[11.636787964000062,-2.833262633999922],[11.616840861000126,-2.826751402999946],[11.588418823000012,-2.835433044999916],[11.5479045000001,-2.86385508199993],[11.530747925000128,-2.866748962999921],[11.525580282000135,-2.84328786199994],[11.535565759000065,-2.804995726999948],[11.537465861000072,-2.797709247999876],[11.61032963000008,-2.678853454999881],[11.619528036000077,-2.653532002999896],[11.624385620000083,-2.632758076999949],[11.624385620000083,-2.611984150999902],[11.619011271000119,-2.586455992999959],[11.609606160000084,-2.564028421999879],[11.584284708000098,-2.523617451999897],[11.576533244000075,-2.502533467999868],[11.576119833000062,-2.485066832999919],[11.583354533000119,-2.429669697999955],[11.579737183000047,-2.407655537999887],[11.558239787000105,-2.349364522999849],[11.566197957000071,-2.32972747799991],[11.568368367000062,-2.329107360999942],[11.605368693000116,-2.330347594999878],[11.655908244000045,-2.345643818999932],[11.66965417500009,-2.352671813999947],[11.675855346000077,-2.36042327899986],[11.67988610900008,-2.368794860999927],[11.687534220000146,-2.377683206999933],[11.721330607000112,-2.404141539999927],[11.739520711000068,-2.413753356999933],[11.756057170000076,-2.415096943999913],[11.772696981000081,-2.405381774999867],[11.806596720000101,-2.374169209999891],[11.828817586000127,-2.365280863999871],[11.864887736000126,-2.358149515999926],[11.90705570500009,-2.344610290999867],[11.938371623000108,-2.329107360999942],[11.948706909000094,-2.335205179999903],[11.966793661000109,-2.34853769899992],[12.000693400000046,-2.390602314999853],[12.031285848000039,-2.411582945999953],[12.062291707000071,-2.414993590999885],[12.459270060000021,-2.329934182999878],[12.44790124500014,-2.307920022999894],[12.455135946000098,-2.275570576999897],[12.468571818000072,-2.241154072999947],[12.475496460000045,-2.212421976999849],[12.46836511300009,-2.171080830999912],[12.470225464000093,-2.156301370999898],[12.47735681100005,-2.141108499999874],[12.495340210000023,-2.112789814999871],[12.499784383000131,-2.095529886999884],[12.460820353000143,-2.077856546999967],[12.440046427000112,-2.045817158999881],[12.431468140000078,-2.005406188999899],[12.423096557000093,-1.897609150999898],[12.42692061300005,-1.884069925999924],[12.438082722000075,-1.886653747999929],[12.450009333000109,-1.899298347999959],[12.468985229000083,-1.919416604999924],[12.486555217000044,-1.924894307999921],[12.49947432400006,-1.917866312999905],[12.503815145000118,-1.907737731999944],[12.504538615000115,-1.896885680999901],[12.506295613000106,-1.888204039999948],[12.512393432000067,-1.8754916379999],[12.517354370000106,-1.868980406999924],[12.523452189000066,-1.863295999999877],[12.572441447000074,-1.83042978899995],[12.583190145000088,-1.82650237999988],[12.632386109000064,-1.825158792999915],[12.674967489000037,-1.842832131999913],[12.741014228000067,-1.890672439999904],[12.745454142000085,-1.893888447999899],[12.787725463000072,-1.907531025999901],[12.804571980000048,-1.919106546999942],[12.816147502000092,-1.943497822999873],[12.838161661000072,-2.016051533999885],[12.84715336100004,-2.037238870999943],[12.85294112200009,-2.04457692499993],[12.868547403000036,-2.059873147999894],[12.87299157700005,-2.065867613999913],[12.876918986000106,-2.088708596999922],[12.875161987000126,-2.089122008999936],[12.875161987000126,-2.093772887999904],[12.874128458000143,-2.099767354999926],[12.876298869000038,-2.104934997999933],[12.895109091000052,-2.109792581999954],[12.89448897300008,-2.11558034299992],[12.890561564000109,-2.122194925999921],[12.888701212000115,-2.126949156999913],[12.884463745000062,-2.134493915999954],[12.882706746000082,-2.140798441999877],[12.885083862000043,-2.147413024999878],[12.898209676000079,-2.160228779999954],[12.90203373200012,-2.167256774999956],[12.902757202000117,-2.177592060999885],[12.907098022000097,-2.195368753999901],[12.921360717000082,-2.194851988999872],[12.945648640000087,-2.182449645999895],[12.954330282000058,-2.190924580999905],[12.973037150000037,-2.221517028999912],[12.982442261000074,-2.232989196999924],[12.987506551000138,-2.259964293999857],[12.990193725000097,-2.268025817999941],[12.997325073000127,-2.275673928999922],[13.003422892000088,-2.275467223999968],[13.00817712400007,-2.27650075299995],[13.010657592000143,-2.287766213999916],[13.002286010000063,-2.296654560999926],[12.996704956000144,-2.304819437999939],[12.99463789900008,-2.314948017999896],[12.993914428000096,-2.32352630599992],[12.991123901000035,-2.332311298999912],[12.987093140000127,-2.340682880999893],[12.982442261000074,-2.347710875999894],[12.971280152000134,-2.357115986999943],[12.966112508000036,-2.366417744999879],[12.96900638800011,-2.372412210999912],[12.982442261000074,-2.371688740999915],[12.994008157000025,-2.360122844999864],[13.012104533000127,-2.342026467999858],[13.025023641000132,-2.338202412999919],[13.049828329000093,-2.342646585999915],[13.114320516000106,-2.371895445999868],[13.135197795000096,-2.376959736999936],[13.14615319800015,-2.374685973999931],[13.165273478000046,-2.363523863999902],[13.1768489990001,-2.361973571999968],[13.18666752100006,-2.364143981999873],[13.361023804000126,-2.428842874999944],[13.378800497000071,-2.430909931999906],[13.398024130000094,-2.4261557],[13.419728231000077,-2.429669697999955],[13.4248958740001,-2.429773050999898],[13.438951864000103,-2.425432230999917],[13.44535974100006,-2.427085875999865],[13.453731323000028,-2.439384866999902],[13.45889896600005,-2.441038512999867],[13.469440959000108,-2.435044046999919],[13.47398848500012,-2.426982523999939],[13.476779012000094,-2.417680764999915],[13.482256713000083,-2.408068948999897],[13.492178589000076,-2.398457132999894],[13.524631389000092,-2.3760295619999],[13.533106323000084,-2.367657978999915],[13.547679077000053,-2.349364522999849],[13.557600952000143,-2.340476175999925],[13.56948653200007,-2.334481708999903],[13.593361044000062,-2.326833597999922],[13.60338627100009,-2.32001230799996],[13.607830445000104,-2.311123961999954],[13.610724324000074,-2.289936624999896],[13.617442261000122,-2.279601338999896],[13.693509969000075,-2.205910745999873],[13.701571492000085,-2.194748635999929],[13.705240519000055,-2.184309997999904],[13.706790812000094,-2.164569599999936],[13.70947798600011,-2.153510843999925],[13.720019979000085,-2.133563740999918],[13.740897257000142,-2.102454528999957],[13.743171020000062,-2.097080178999903],[13.746374959000036,-2.098320413999929],[13.756916952000097,-2.105865173999888],[13.770662882000039,-2.11909433999989],[13.782755167000118,-2.138007913999914],[13.791436808000098,-2.159091898999861],[13.800531860000149,-2.20043304399988],[13.823269491000133,-2.246838480999898],[13.835568481000081,-2.265235290999897],[13.853861938000136,-2.283838805999935],[13.860579875000068,-2.29365732799991],[13.863887166000069,-2.321459247999954],[13.871638631000081,-2.32879730299986],[13.882180624000057,-2.333861592999938],[13.892515910000041,-2.341199645999922],[13.90615848700014,-2.359803160999888],[13.901921020000115,-2.36631439199995],[13.890035441000064,-2.373652445999937],[13.875876098000047,-2.403831481999944],[13.855102173000091,-2.414270120999973],[13.847660767000065,-2.423055114999968],[13.846937296000078,-2.461605732999942],[13.84580041500007,-2.466566670999896],[13.862130168000107,-2.480932718999895],[13.884971151000087,-2.488477477999936],[13.909465779000072,-2.489717711999972],[13.930446411000048,-2.485376891999905],[13.947706339000149,-2.474938252999962],[13.95731815600007,-2.470597431999892],[13.967033325000102,-2.470597431999892],[13.976231730000109,-2.477315368999911],[13.979228963000109,-2.495608825999881],[13.985636840000069,-2.501499938999885],[13.993284953000028,-2.501603291999913],[14.039276978000117,-2.487237243999914],[14.045581502000031,-2.486100361999902],[14.055606730000079,-2.486927184999928],[14.071006307000061,-2.495815530999934],[14.080928181000047,-2.499949644999958],[14.090023234000114,-2.498606057999893],[14.096017700000061,-2.491061298999853],[14.100553460000071,-2.478064601999904],[14.106766398000076,-2.460262145999877],[14.115241333000057,-2.451373798999953],[14.124853149000074,-2.443829039999912],[14.13188114400009,-2.435147399999948],[14.13146773200009,-2.408895771999922],[14.136015259000118,-2.39876719199988],[14.144180135000026,-2.390188902999853],[14.163300415000037,-2.373962503999834],[14.172395467000086,-2.367864684999872],[14.18231734200009,-2.363317158999934],[14.230066365000056,-2.352155049999908],[14.234407186000055,-2.354945576999867],[14.226965780000114,-2.323112894999909],[14.151208130000041,-2.259034118999907],[14.14800419100007,-2.224824319999911],[14.161543416000143,-2.214282328999943],[14.195856568000067,-2.201776630999859],[14.209189087000084,-2.187203877999892],[14.209395793000056,-2.17986582399989],[14.20319462100008,-2.161985778999849],[14.204331502000088,-2.152167256999874],[14.209705851000136,-2.147413024999878],[14.226965780000114,-2.141315205999916],[14.233787068000083,-2.134493915999954],[14.238437947000136,-2.120231221999887],[14.244019002000073,-2.067521260999868],[14.25063358500006,-2.0477808629999],[14.251667114000043,-2.037858987999911],[14.246809530000121,-2.029384052999902],[14.238644653000108,-2.023389586999883],[14.233477010000085,-2.018221943999961],[14.232856892000115,-2.012020771999886],[14.238127889000054,-2.002615660999936],[14.237611124000125,-1.991143492999911],[14.240091593000102,-1.982255146999904],[14.245052531000056,-1.974813740999878],[14.252183878000066,-1.967579039999919],[14.36857050200004,-1.922120271999901],[14.370729614000084,-1.921276956999932],[14.397291301000108,-1.906807555999904],[14.404526001000077,-1.893061624999873],[14.396877889000079,-1.849446715999918],[14.397498006000149,-1.840971780999908],[14.403595825000112,-1.815236917999925],[14.40669641100007,-1.735551859999873],[14.413104289000103,-1.713951110999901],[14.425196574000095,-1.700515237999852],[14.448761027000076,-1.686252542999881],[14.441112915000103,-1.67963795999988],[14.420028931000076,-1.67612396199992],[14.402975708000042,-1.670852965999899],[14.390883422000057,-1.630338642999973],[14.37145308400008,-1.61948659199993],[14.364838501000094,-1.612045185999918],[14.373830200000045,-1.604087014999948],[14.394294067000088,-1.596852314999893],[14.403699178000037,-1.592201436999915],[14.413207642000119,-1.585276793999938],[14.419925578000061,-1.575148212999892],[14.423956340000132,-1.563572692999855],[14.43036421700009,-1.554891051999974],[14.463127075000102,-1.548689880999902],[14.462713664000091,-1.533600361999902],[14.451551554000046,-1.515616962999914],[14.438425741000087,-1.50259450199988],[14.451034790000108,-1.4736557],[14.452688436000043,-1.449574482999878],[14.456305786000144,-1.440169372999918],[14.467881307000084,-1.429007262999974],[14.480593709000033,-1.420842386999951],[14.487725057000063,-1.409370218999939],[14.48214400200007,-1.388596292999907],[14.447004028,-1.365341897999883],[14.432327922000127,-1.350149026999944],[14.426333455000105,-1.331028746999948],[14.429123982000133,-1.319969990999951],[14.436048625000124,-1.312735290999896],[14.444316854000077,-1.306327412999849],[14.451551554000046,-1.298162536999925],[14.457132609000068,-1.287620543999864],[14.460749959000053,-1.278008727999861],[14.464780721000123,-1.255581155999948],[14.465814250000106,-1.224368591999976],[14.464160604000083,-1.215376891999938],[14.456409139000073,-1.202457782999929],[14.439434821000077,-1.185733087999893],[14.435325154000054,-1.181683857999886],[14.428297160000113,-1.169488219999963],[14.42798710100004,-1.160909931999939],[14.433568156000149,-1.143650003999937],[14.434394979000075,-1.135071716999917],[14.430984334000073,-1.123392842999934],[14.420338989000072,-1.101792093999961],[14.391813598000113,-1.02334726999986],[14.392020304000084,-1.008981220999956],[14.402562296000044,-0.98769053099987],[14.40752323400008,-0.944489032999925],[14.412794230000115,-0.921544697999906],[14.42819380600011,-0.896946715999917],[14.445867147000085,-0.877516377999939],[14.457132609000068,-0.85612233399992],[14.4528951420001,-0.825736591999956],[14.446177205000083,-0.80031178799986],[14.445970499000026,-0.775713805999885],[14.451551554000046,-0.751219176999925],[14.492169230000087,-0.663369241999945],[14.49899051900013,-0.630916441999929],[14.489998820000096,-0.600944111999894],[14.466537719000115,-0.552678324999874],[14.454238729000082,-0.539552510999911],[14.414447876000054,-0.512164000999874],[14.39233036300007,-0.482398375999878],[14.35863732900009,-0.461314391999863],[14.32060347500007,-0.444467874999873],[14.292698201000093,-0.436406350999974],[14.27554162600012,-0.439093525999908],[14.260038696,-0.446431578999906],[14.244742472000068,-0.451599222999917],[14.228516073000035,-0.447775166999875],[14.210222616000067,-0.440333759999945],[14.193066040000105,-0.440437112999888],[14.176529582000114,-0.446121520999924],[14.159683065000136,-0.455113219999873],[14.157926066000073,-0.417699482999907],[14.150588012000071,-0.3764616899999],[14.138289022000038,-0.336360778999904],[14.121442505000061,-0.302150980999912],[14.095397583000077,-0.276622822999869],[14.058810669000138,-0.258846129999938],[14.018709758000057,-0.252644958999952],[13.982329549000069,-0.262256774999869],[13.9750948490001,-0.252541605999923],[13.967033325000102,-0.245823668999904],[13.95731815600007,-0.241999612999962],[13.921558064000038,-0.237865497999934],[13.913806600000042,-0.240552672999868],[13.909982544000087,-0.247167255999955],[13.907295369000082,-0.254401956999928],[13.903057902000114,-0.258846129999938],[13.889828735000036,-0.263703714999863],[13.883420858000079,-0.2649439489999],[13.877426392000046,-0.260499775999975],[13.8312276610001,-0.205412699999926],[13.832157837000068,-0.17709401399992],[13.84269982900011,-0.152289325999973],[13.888053549000063,-0.092088146999899],[13.900474081000112,-0.075601500999952],[13.910706014000082,-0.065886331999906],[13.921144653000026,-0.0529672239999],[13.920111125000062,-0.042425230999939],[13.91494348200004,-0.031263121999899],[13.912979777000118,-0.016587015999917],[13.917217245000073,-0.006665140999914],[13.931376586000113,0.011628316000056],[13.932926880000137,0.022066956000089],[13.925072062000083,0.034365946000122],[13.913083130000132,0.036536357000031],[13.901404257000081,0.036846415000099],[13.8948930250001,0.043667704000143],[13.890655559000038,0.115911357000087],[13.885901327000056,0.140302633000104],[13.87618615700012,0.171308492000136],[13.871225220000069,0.196423239000069],[13.875772745000091,0.220297750000057],[13.909775838000144,0.27094065300011],[13.945225871000076,0.350419006000095],[13.966516561000049,0.37305328400015],[14.040413859000125,0.413774313000118],[14.059120727000106,0.435271709000062],[14.063048137000093,0.455942281000077],[14.056846964000101,0.476406149000127],[14.045581502000031,0.497283427000099],[14.075967244000083,0.539451396000061],[14.12547326600014,0.54616933200009],[14.181593872000093,0.539864808000075],[14.231823365000139,0.542551982000106],[14.245259237000084,0.547719625000113],[14.250943644000131,0.551853739000123],[14.254664348000063,0.557124736000063],[14.328768351000093,0.621203512000079],[14.33538293400008,0.642597555000094],[14.3383801680001,0.693912252000132],[14.367318970000069,0.735511780000124],[14.413414347000073,0.775044251000082],[14.447624146000067,0.816230367000074],[14.44100956200009,0.862790833000119],[14.43759891700006,0.875141500000069],[14.445143676000098,0.88325470000008],[14.457029256000027,0.890334371000094],[14.466227661000117,0.899636129000029],[14.468088013000056,0.913227031000119],[14.46043990000007,0.921236878000101],[14.436565389000066,0.933277486000065],[14.417548462000099,0.950589091000069],[14.400805298000051,0.970329489000036],[14.386749308000049,0.992240296000091],[14.375690552000037,1.015598043000125],[14.360084269000083,1.066757710000047],[14.34644169100008,1.087118225000069],[14.298485962000141,1.109235739000084],[14.282879679000104,1.130113017000056],[14.274714803000109,1.155641174000081],[14.27574833200009,1.231088766000084],[14.273061157000143,1.257237040000092],[14.2581783440001,1.319662170000057],[14.252183878000066,1.330824280000087],[14.241435181000071,1.339195862000068],[14.230066365000056,1.343950093000061],[14.22148807800005,1.349479472000056],[14.219938873000103,1.355017878000097],[14.218387491000101,1.360564066000066],[14.206501913000068,1.362837830000089],[14.198957153,1.368315532000068],[14.19254927600008,1.374955953000082],[14.183867635000098,1.380847066000072],[14.14449019300011,1.391621603000104],[14.124439738000147,1.393585307000137],[14.10645634000008,1.38893442800007],[14.070696248000074,1.375110983000113],[14.049508911000117,1.376402893000076],[14.03379927500012,1.387642517000117],[14.01901981600011,1.402137757000062],[14.000829712000069,1.413015645000115],[13.983569784000082,1.416839702000061],[13.794744100000088,1.434435527000048],[13.780584757000042,1.431024882000102],[13.779757935000104,1.42627065000012],[13.77035282400007,1.400432435000099],[13.75815718600006,1.376506246000091],[13.754849894000131,1.3743358360001],[13.744101196000116,1.370279236000101],[13.741103963000114,1.371312764000081],[13.72942508900013,1.376919658000105],[13.724360799000067,1.377953187000088],[13.717539510000108,1.375369364000093],[13.705550578000043,1.365990092000047],[13.699091023000108,1.362786154000076],[13.680694214000084,1.359401347000059],[13.671495808000088,1.358781230000076],[13.662090699000146,1.359194641000087],[13.64224694800015,1.357385966000095],[13.628087605000104,1.348135884000087],[13.615065145000072,1.337438863000088],[13.579201701000017,1.323486226000085],[13.556360718000121,1.292790426000053],[13.543441609000098,1.283488668000118],[13.509955281000115,1.277287496000042],[13.479776245000096,1.277132466000097],[13.448873739000106,1.283075257000107],[13.413940470000112,1.295529277000099],[13.398747599000103,1.296924540000077],[13.376940145000077,1.2944440710001],[13.357406453000067,1.289069723000139],[13.349344930000058,1.281576640000097],[13.34293705200011,1.263851624000083],[13.325987183000109,1.259304098000143],[13.307797079000068,1.256720276000052],[13.289193562000037,1.233982646000072],[13.270900106000054,1.226024476000106],[13.250229533000038,1.221787008000149],[13.215813028000099,1.224370829000065],[13.195452515000056,1.221115214000079],[13.184910523000099,1.222510478000061],[13.184885479000057,1.222623178000063],[13.181809936000064,1.236463114000045],[13.172301473000061,1.242870993000082],[13.160312540000092,1.247728577000103],[13.150183960000048,1.256616923000124],[13.169200887000017,1.258580628000061],[13.176642293000043,1.270879619000098],[13.18036299600007,1.284832255000083],[13.188321167000112,1.291446839000088],[13.202377156000123,1.293410543000121],[13.219327026000144,1.299198303000097],[13.233589721000016,1.308810120000103],[13.242994832000079,1.328860576000054],[13.249092651000126,1.332374573000109],[13.251263062000106,1.337645569000131],[13.242891479000034,1.349789531000041],[13.239584188000038,1.356507467000071],[13.239170776000035,1.364181417000054],[13.239790893000105,1.372346293000064],[13.238447306000126,1.419630229000106],[13.239480835000107,1.427975973000088],[13.223461141000058,1.438001200000102],[13.205477743000074,1.486370341000054],[13.184910523000099,1.496886495000098],[13.190904989000018,1.511071676000157],[13.189664754000091,1.524740092000073],[13.182636759000076,1.536548157000084],[13.171267945000094,1.545255636000135],[13.16444665500012,1.537840068000122],[13.14594649300011,1.563419902000078],[13.129616740000072,1.592462057000077],[13.146773315000132,1.612254130000053],[13.149977254000106,1.636283671000086],[13.143982788000072,1.681810608000148],[13.147806844000113,1.702868754000079],[13.154628133000072,1.721653137000075],[13.157522013000062,1.739145609000033],[13.150183960000048,1.756302186000084],[13.162793010000087,1.763640239000082],[13.173024943000142,1.7769469200001],[13.180673055000057,1.792010600000097],[13.191008341000042,1.828726705000065],[13.192455281000036,1.844746399000115],[13.188321167000112,1.85658030200004],[13.183153523000101,1.864047546000066],[13.17509200000012,1.882108460000069],[13.162172892000113,1.899833476000083],[13.166307006000125,1.904381002000122],[13.17819258600008,1.907791646000149],[13.184910523000099,1.923449606000105],[13.191731812000057,1.935076803000072],[13.198449748000058,1.943112488000054],[13.205064331000074,1.949339498000128],[13.210231974000067,1.956315816000128],[13.212299032000118,1.966418559000075],[13.206614624000082,1.985151266000073],[13.206924682000079,1.993574524000067],[13.216019735000145,1.997166036000124],[13.221290731000066,2.000835062000121],[13.239480835000107,2.02073048900013],[13.245475301000056,2.025303854000085],[13.281132040000045,2.044966736000035],[13.291363973000102,2.068944601000041],[13.294877970000073,2.101087342000071],[13.294567912000076,2.161057841000073],[13.466547078000104,2.159507548000136],[13.62033614100011,2.158112284000069],[13.662266290000105,2.157761182000058],[13.823992960000027,2.156406962000105],[14.002793417000104,2.15480499300007],[14.161750122000115,2.153409729000089],[14.266963338000096,2.152427877000121],[14.276265096000117,2.15356475800013],[14.320293416000084,2.170669658000079],[14.383648722000087,2.162091370000056],[14.399358358000057,2.153151347000119],[14.41868534400001,2.135271301000059],[14.432948038000092,2.132119039000102],[14.438735799000057,2.13397939100011],[14.45919966600013,2.146536763000114],[14.538057902000046,2.16338328000009],[14.547049601000083,2.166535543000052],[14.550253540000057,2.175165507000102],[14.547979777000135,2.184363912000094],[14.547773072000098,2.193665670000115],[14.557074829000015,2.202398987000095],[14.562139120000097,2.208806865000042],[14.587873983000092,2.20172719300011],[14.620946899000074,2.164830221000088],[14.644821411000066,2.154184876000102],[14.63634647600014,2.138320211000092],[14.646061645000088,2.133359273000039],[14.672003215000132,2.134341125000105],[14.685955851000129,2.125866190000096],[14.705696249000084,2.105531514000077],[14.720475708000011,2.099588725000061],[14.713654419000052,2.123980001000092],[14.720889119000018,2.127597351000077],[14.747864217000142,2.113205465000064],[14.733498169000143,2.102017517000121],[14.72729699700008,2.099588725000061],[14.73711551900004,2.096074728000104],[14.74755415800007,2.097185771000113],[14.756339152000066,2.099588725000061],[14.761403443000118,2.099588725000061],[14.762540324000042,2.092534892000046],[14.761610148000102,2.070184835000077],[14.764814087000074,2.065456442000084],[14.826309042000075,2.072251893000043],[14.8411918540001,2.07592091900004],[14.848219849000115,2.085196838000059],[14.850183553000049,2.097366638000068],[14.850183553000049,2.109794820000047],[14.857004842,2.11594431600011],[14.871474243000137,2.101655782000122],[14.884600057000112,2.082096253000103],[14.88780399600009,2.072251893000043],[14.90733768700008,2.058893535000109],[14.896588989000064,2.030936585000106],[14.892454874000038,2.006390279000129],[14.932142374000108,2.003341370000115],[14.953846476000107,2.005821838000088],[14.963044881000116,2.010421041000129],[14.971003052000071,2.034450582000161],[14.980718221000132,2.033106995000097],[15.028260539000144,1.99530568400013],[15.043660116000124,1.990861512000023],[15.063090454000102,1.997166036000124],[15.074872681000102,1.979363505000094],[15.091615845000147,1.984427796000076],[15.107635539000114,2.000835062000121],[15.11776411900007,2.017009786000116],[15.123861938000118,2.017009786000116],[15.138538046000093,2.011506246000124],[15.15166385900008,2.040987651000137],[15.183599894000052,2.029334615000081],[15.197035766000084,2.034967346000101],[15.212642049000124,2.039618225000069],[15.233726033000067,2.031298320000104],[15.238686971000105,2.025303854000085],[15.244164673000114,2.01005930600013],[15.248092081000065,2.003341370000115],[15.25356978400015,2.000318299000085],[15.287572876000098,1.987786764000091],[15.295427694000125,1.981533915000085],[15.301112101000085,1.973756612000074],[15.303282511000077,1.966418559000075],[15.301938924000096,1.95331858400003],[15.300181926000022,1.947660014000078],[15.301628866000016,1.943577576000081],[15.309483683000053,1.935076803000072],[15.314341268000076,1.934249979000128],[15.337802368000041,1.923759664000087],[15.33738895600004,1.921460063000069],[15.349171183000122,1.92329457600006],[15.367981405000135,1.932854716000065],[15.388135214000016,1.939546815000085],[15.439191528000094,1.969829204000106],[15.482909790000063,1.975849507000134],[15.526628051000046,1.967813822000068],[15.611790812000095,1.942544047000098],[15.706772095000105,1.931976217000112],[15.711112915000086,1.927377014000072],[15.721551554000113,1.92161509200011],[15.73405725100011,1.916705831000072],[15.757414999000046,1.912985128000059],[15.764649699000131,1.908721822000103],[15.802890258000103,1.859965109000143],[15.815395955000099,1.853428039000079],[15.842060994000066,1.844152120000061],[15.86593550600014,1.828468323000095],[15.875650676000078,1.82376576800003],[15.882368611000118,1.816711934000097],[15.884952434000096,1.801648254000114],[15.889913371000148,1.793276672000047],[15.901798951000073,1.79374176000006],[15.915234823000048,1.798961080000083],[15.925880167000116,1.804748840000059],[15.928980753000074,1.788961691000068],[15.943760213000076,1.781623637000067],[15.963190551000084,1.77736033100011],[15.980450480000059,1.770590719000069],[15.990785766000073,1.77617177400009],[16.002774699000042,1.775913391000117],[16.013833455000025,1.771314189000065],[16.021998331000134,1.763795268000123],[16.02633915200002,1.752297262000098],[16.024892212000026,1.742478740000124],[16.021998331000134,1.733047790000072],[16.021998331000134,1.722790019000087],[16.030473266000058,1.705400900000157],[16.069850708000047,1.654551290000143],[16.114809204000068,1.719069316000073],[16.123594197000045,1.721601461000148],[16.145091593000103,1.714315084000077],[16.155840291000118,1.719069316000073],[16.15904423000009,1.734804790000055],[16.135066366000075,1.845314840000071],[16.101373332,1.932803040000053],[16.08349328600005,1.963007914000059],[16.07491499800011,1.970604350000116],[16.068713826000135,1.973601583000132],[16.06488977100011,1.978950094000083],[16.063752889000085,2.015872904000119],[16.06644006300013,2.025484721000041],[16.081736288000087,2.046827088000029],[16.081529582000115,2.055637920000024],[16.078118937000085,2.063441061000049],[16.07667199700009,2.072251893000043],[16.076155233000065,2.072820333000095],[16.075535116000083,2.075455831000099],[16.075535116000083,2.079951680000121],[16.07667199700009,2.085920309000059],[16.079669230000036,2.090261129000041],[16.08411340400002,2.091604716000091],[16.088144165000102,2.091759745000047],[16.090314575,2.092741597000099],[16.092484986000102,2.10690094000006],[16.08979781000008,2.116151021000064],[16.08556034300011,2.124910177000046],[16.08349328600005,2.137751770000122],[16.085767049000083,2.149172262000135],[16.09775598100012,2.171548157000117],[16.104370565000124,2.193562317000101],[16.120390259000086,2.203329163000149],[16.140647421000097,2.199815165000089],[16.15925093600012,2.182090149000075],[16.199455200000074,2.212165833000142],[16.20772342900011,2.223069560000112],[16.202349081000133,2.232009582000046],[16.1966646730001,2.23645375600006],[16.24803104700007,2.345594381000097],[16.293506307000115,2.442074280000028],[16.325649048000056,2.510493876000112],[16.371124308000105,2.606922099000101],[16.41370568800008,2.697200826000127],[16.42749236600011,2.726492689000096],[16.450602661000087,2.775593974000046],[16.479128051000146,2.836313781000044],[16.48377893000011,2.860394999000079],[16.474993937000136,2.878378397000062],[16.460524536000094,2.894604798000074],[16.448328898000085,2.913466695000096],[16.445538370000122,2.957650045000108],[16.484192342000114,3.031909078000083],[16.490806925000125,3.067824198000039],[16.48315881400015,3.090148417000108],[16.472720174000102,3.110612285000073],[16.464762003000146,3.131799622000116],[16.465485474000047,3.156500956000044],[16.4770609950001,3.179393616000141],[16.511477498000147,3.227245992000064],[16.517161906000098,3.248691711000077],[16.517782023000052,3.273238017000054],[16.54279341600005,3.336154073000045],[16.551681762000072,3.419766541000072],[16.56770145700011,3.464389140000094],[16.598500610000087,3.501673686000117],[16.63942834400009,3.528597107000039],[16.686350545000067,3.542213847000127],[16.709398234000105,3.543712464000052],[16.729552043000098,3.542213847000127],[16.81192427500008,3.521672466000055],[16.8330082600001,3.522861023000075],[16.852645304000134,3.532808736000078],[16.854609009000086,3.541335348000089],[16.851818481000123,3.551903178000074],[16.853162068000074,3.560093893000086],[16.867838176000078,3.56154083300008],[16.877243286000123,3.559163717000047],[16.895536743000093,3.552368266000087],[16.904735148000096,3.550637105000121],[16.9324337160001,3.553918559000109],[16.942252238000094,3.553091736000084],[16.953207641000063,3.546890565000098],[16.96054569500006,3.538441467000112],[16.968607218000045,3.533480530000062],[16.98193973800008,3.537976379000085],[16.989691203000064,3.539474996000095],[17.003127075000123,3.537717998000105],[17.009224894000084,3.538131409000115],[17.017596476000048,3.541800436000116],[17.02886193800012,3.551541443000076],[17.035786580000092,3.556140646000117],[17.052426392000115,3.563969625000141],[17.061418091000064,3.566140035000046],[17.0883931890001,3.564434713000068],[17.102139119000128,3.566605123000059],[17.129010864000122,3.577069601000104],[17.142756795000054,3.58084198000013],[17.182857707000068,3.579601746000094],[17.197223755000067,3.581720479000068],[17.213966919000114,3.589291076000038],[17.222958618000064,3.598515320000033],[17.231123494000084,3.609108988000102],[17.24497277800012,3.620606994000127],[17.259442179000075,3.62590382900008],[17.272257934000066,3.624560241000111],[17.298096150000077,3.615904439000061],[17.334373007000124,3.618514099000066],[17.355767049000036,3.638435364000074],[17.375714152000057,3.663446757000073],[17.414488944000112,3.683414614000128],[17.427493937000122,3.690111797000028],[17.442686808000047,3.701273906000054],[17.45891320800007,3.708276062000052],[17.481857544000093,3.704762065000097],[17.486198364000074,3.700292054000088],[17.490125773000045,3.68714040200011],[17.49498335800007,3.683212993000055],[17.50893599400007,3.681766052000057],[17.51348352000008,3.67918223100014],[17.550483846000134,3.64815053300012],[17.586760702000106,3.632234192000098],[17.627275024000113,3.62631724100008]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Comoros","sov_a3":"COM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Comoros","adm0_a3":"COM","geou_dif":0,"geounit":"Comoros","gu_a3":"COM","su_dif":0,"subunit":"Comoros","su_a3":"COM","brk_diff":0,"name":"Comoros","name_long":"Comoros","brk_a3":"COM","brk_name":"Comoros","brk_group":null,"abbrev":"Com.","postal":"KM","formal_en":"Union of the Comoros","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Comoros","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":4,"mapcolor13":10,"pop_est":752438,"gdp_md_est":751.2,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"CN","iso_a2":"KM","iso_a3":"COM","iso_n3":"174","un_a3":"174","wb_a2":"KM","wb_a3":"COM","woe_id":23424786,"woe_id_eh":23424786,"woe_note":"Exact WOE match as country","adm0_a3_is":"COM","adm0_a3_us":"COM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":2,"homepart":1,"filename":"COM.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[43.84294681100019,-12.373467705999843],[43.81934655000006,-12.373467705999843],[43.751475457000055,-12.35995859199987],[43.681407097000175,-12.358086846999896],[43.665212436000076,-12.352471612999906],[43.660817905000066,-12.34498463299984],[43.66179446700002,-12.327732028999916],[43.65894616000011,-12.318291924999826],[43.6502384770001,-12.310235283999873],[43.64112389400012,-12.30641041499986],[43.633962436000076,-12.30103932099982],[43.63103274800008,-12.287774346999882],[43.62989342500012,-12.251722914999917],[43.63575280000006,-12.236911716999856],[43.652110222000175,-12.242608330999829],[43.66635175900009,-12.25009530999989],[43.70834394600015,-12.257907809999892],[43.72722415500019,-12.263604424999869],[43.77930748800022,-12.297621351999808],[43.78874759200008,-12.30803801899988],[43.797048373000024,-12.311618747999859],[43.85010826900023,-12.346123955999872],[43.8615828790001,-12.363376559999876],[43.85816491000017,-12.371351820999834],[43.84294681100019,-12.373467705999843]]],[[[44.484141472,-12.085544528999876],[44.52637780000006,-12.21884530999992],[44.529063347000054,-12.232842705999886],[44.528493686000076,-12.354750257999882],[44.522959832000225,-12.372816664999887],[44.511485222000175,-12.380303643999866],[44.50269616000011,-12.376722914999888],[44.49244225400011,-12.368259372999859],[44.484141472,-12.358005466999913],[44.48072350400011,-12.349297783999845],[44.47877037900017,-12.336846612999821],[44.473317905000016,-12.329766533999859],[44.39958743600019,-12.279961846999882],[44.39136803500011,-12.267022393999879],[44.38526451900012,-12.251722914999917],[44.37012780000012,-12.244317315999837],[44.330577019000174,-12.236260674999897],[44.26840254000015,-12.20501067499984],[44.26002037900011,-12.198418877999856],[44.219899936000076,-12.174981377999885],[44.2063908210001,-12.160577080999914],[44.22250410200016,-12.160088799999826],[44.23585045700011,-12.163344007999868],[44.261566602000094,-12.174248955999857],[44.27898196700019,-12.178643487999835],[44.31128991000011,-12.183282158999859],[44.323090040000096,-12.187920830999886],[44.32837975400017,-12.18377044099985],[44.33838951900023,-12.178643487999835],[44.343516472000175,-12.174248955999857],[44.37354576900012,-12.18035247199984],[44.40007571700008,-12.156508070999863],[44.41529381600017,-12.119317315999865],[44.41179446700008,-12.085544528999876],[44.421560092000185,-12.082696221999838],[44.435313347,-12.07480234199987],[44.44605553500011,-12.071872653999845],[44.4510197270001,-12.069756768999838],[44.45533287900011,-12.066582940999865],[44.46013431100019,-12.06414153399983],[44.46705162900017,-12.064385674999867],[44.472829623000024,-12.068536065999822],[44.48072350400011,-12.082452080999886],[44.484141472,-12.085544528999876]]],[[[43.46314537900011,-11.930922132999866],[43.44955488400015,-11.932875257999811],[43.437673373000194,-11.931573174999912],[43.43238366000011,-11.924086195999847],[43.425954623000194,-11.911553643999852],[43.36996504000015,-11.86060963299984],[43.35515384200019,-11.854587497999916],[43.312266472,-11.852146091999884],[43.30176842500006,-11.849541924999896],[43.290293816000116,-11.843357028999916],[43.271006707000055,-11.82822030999992],[43.262868686000076,-11.818047783999887],[43.260101759000094,-11.809177341999842],[43.25879967500012,-11.800469658999859],[43.25424238400015,-11.790704033999901],[43.22877037900016,-11.766289971999866],[43.21778405000006,-11.750258070999877],[43.21322675900014,-11.725762627999842],[43.21599368600019,-11.715997002999899],[43.222504102000094,-11.703871351999808],[43.24415123800011,-11.672946872999859],[43.24439537900011,-11.662286065999837],[43.24154707100009,-11.651543877999828],[43.240570509000094,-11.639825127999828],[43.25440514400011,-11.463067315999837],[43.252289259000094,-11.45134856599985],[43.24683678500017,-11.44060637799984],[43.25660241000011,-11.423272393999852],[43.26612389400012,-11.398695570999834],[43.27654056100019,-11.379571221999853],[43.28834069100017,-11.379164320999848],[43.33082116000011,-11.365004164999917],[43.35572350400017,-11.361260674999897],[43.37403405000012,-11.368584893999895],[43.385996941000165,-11.384047132999825],[43.394867384000094,-11.400160414999888],[43.39942467500006,-11.418389580999872],[43.377126498000194,-11.605075778999876],[43.386078321000156,-11.645603122999887],[43.43051191500015,-11.708184502999897],[43.4466251960001,-11.749118747999844],[43.4471134770001,-11.759372653999861],[43.44556725400017,-11.780531507999868],[43.4466251960001,-11.790704033999901],[43.45118248800006,-11.798028252999828],[43.45777428500017,-11.804375908999845],[43.46387780000006,-11.811618747999873],[43.466563347,-11.821709893999838],[43.46908613400015,-11.83171965899983],[43.47535241000017,-11.843031507999811],[43.49878991000017,-11.873630466999913],[43.49830162900016,-11.882012627999885],[43.48698978000019,-11.899834893999852],[43.483734571000156,-11.909926039999915],[43.48259524800019,-11.917168877999842],[43.47999108200011,-11.92278411299985],[43.472666863000114,-11.927911065999865],[43.46314537900011,-11.930922132999866]]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Cape Verde","sov_a3":"CPV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cape Verde","adm0_a3":"CPV","geou_dif":0,"geounit":"Cape Verde","gu_a3":"CPV","su_dif":0,"subunit":"Cape Verde","su_a3":"CPV","brk_diff":0,"name":"Cape Verde","name_long":"Cape Verde","brk_a3":"CPV","brk_name":"Cape Verde","brk_group":null,"abbrev":"C.Vd.","postal":"CV","formal_en":"Republic of Cape Verde","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cape Verde","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":4,"mapcolor13":11,"pop_est":429474,"gdp_md_est":1626,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"CV","iso_a2":"CV","iso_a3":"CPV","iso_n3":"132","un_a3":"132","wb_a2":"CV","wb_a3":"CPV","woe_id":23424794,"woe_id_eh":23424794,"woe_note":"Exact WOE match as country","adm0_a3_is":"CPV","adm0_a3_us":"CPV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"CPV.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-24.683257615999906,14.842474677000139],[-24.686879035999937,14.826646226000108],[-24.695301886999914,14.819403387000163],[-24.704416469999895,14.814032294000114],[-24.710560675999886,14.803941148000149],[-24.718006964999855,14.803941148000149],[-24.725453253999916,14.814113674000097],[-24.744618292999885,14.826605536000116],[-24.751535610999895,14.838771877000097],[-24.758941209999875,14.831854559000092],[-24.754709438999953,14.840806382000125],[-24.7532445949999,14.849351304000137],[-24.754709438999953,14.857855536000088],[-24.758941209999875,14.866644598000134],[-24.745350714999915,14.866644598000134],[-24.74941972599987,14.885484117000175],[-24.7376195949999,14.892035223000077],[-24.719349738999938,14.894435940000106],[-24.704335089999915,14.90082428600013],[-24.693104620999918,14.890692450000175],[-24.686756964999887,14.876166083000141],[-24.683949347999942,14.859442450000117],[-24.683257615999906,14.842474677000139]]],[[[-24.334462042999917,14.831854559000092],[-24.37653561099998,14.815985419000157],[-24.41502844999988,14.820868231000134],[-24.449086066999882,14.838080145000148],[-24.50658118399988,14.884955145000108],[-24.520375128999888,14.903957424000113],[-24.526234503999913,14.924709377000113],[-24.52061926999994,14.94525788000014],[-24.506743943999936,14.969183661000116],[-24.488921678999873,14.990545966000168],[-24.46458899599989,15.007717190000093],[-24.40343176999994,15.03803131700009],[-24.385568813999896,15.043524481000105],[-24.364857550999883,15.04539622600008],[-24.34325110599988,15.04071686400006],[-24.329213019999912,15.02871328300013],[-24.32013912699992,15.01300690300016],[-24.30724036399991,14.979437567000133],[-24.295765753999973,14.930487372000158],[-24.296538865999878,14.917547919000155],[-24.301503058999856,14.906480210000124],[-24.298207160999908,14.895453192000076],[-24.29328365799995,14.88434479400014],[-24.29283606699994,14.872870184000107],[-24.299549933999884,14.863023179000079],[-24.334462042999917,14.831854559000092]]],[[[-23.739898240999906,15.317328192000149],[-23.737945115999878,15.31167226800015],[-23.71922766799989,15.322902736000145],[-23.70323645699989,15.313462632000137],[-23.697824673999943,15.296332098000105],[-23.71068274599986,15.284369208000072],[-23.697336391999954,15.266017971000124],[-23.681752081999946,15.254828192000105],[-23.648548956999946,15.237209377000084],[-23.65607662699992,15.22972239800012],[-23.638783331999917,15.226263739000116],[-23.63027910099987,15.21918366100006],[-23.615101691999882,15.195013739000146],[-23.584217902999853,15.1624209660001],[-23.56737219999985,15.152085679000095],[-23.55235755099991,15.153998114000148],[-23.54914303299995,15.149359442000119],[-23.547474738999938,15.145941473000105],[-23.544992641999926,15.143133856000148],[-23.539296027999853,15.140366929000093],[-23.54076087099989,15.139064846000094],[-23.53441321499986,15.133002020000108],[-23.52725175699993,15.127386786000102],[-23.525705532999893,15.127346096000108],[-23.52293860599991,15.126695054000066],[-23.514068162999877,15.12799713700015],[-23.511382615999906,15.127346096000108],[-23.51081295499992,15.124212958000129],[-23.51203365799995,15.116115627000111],[-23.511382615999906,15.113023179000123],[-23.47044837099986,15.037990627000097],[-23.466542120999858,15.034247137000149],[-23.463612433999856,15.033148505000112],[-23.460682745999918,15.030951239000117],[-23.456776495999918,15.023667710000113],[-23.454579230999855,15.018947658000101],[-23.451893683999856,15.015122789000173],[-23.448353644999884,15.012396552000112],[-23.443104620999886,15.010687567000105],[-23.44782467399989,14.995754299000154],[-23.454660610999923,14.985907294000143],[-23.477894660999937,14.96906159100014],[-23.47044837099986,14.962225653000118],[-23.480213995999918,14.946600653000132],[-23.486317511999886,14.930853583000085],[-23.494007941999907,14.918687242000189],[-23.508290167999917,14.913804429000121],[-23.51622473899988,14.912827867000148],[-23.531849738999934,14.90863678600013],[-23.539296027999853,14.907619533000156],[-23.54735266799986,14.908514716000155],[-23.555816209999904,14.91278717700007],[-23.563221808999884,14.913804429000121],[-23.596424933999913,14.914536851000063],[-23.624134894999912,14.918117580000128],[-23.649728969999956,14.926499742000187],[-23.676503058999884,14.935532945000189],[-23.715077277999853,14.968451239000089],[-23.730539516999954,14.985825914000161],[-23.73070227799985,15.018500067000103],[-23.742054816999907,15.02635325700008],[-23.75829016799986,15.031317450000131],[-23.772084113999966,15.037990627000097],[-23.772694464999915,15.041693427000125],[-23.779530402999853,15.06464264500012],[-23.782297329999892,15.06854889500012],[-23.786284959999872,15.072414455000128],[-23.790109829999892,15.077704169000098],[-23.792591925999915,15.085760809000133],[-23.78986568899995,15.09381745000016],[-23.77562415299985,15.11823151200012],[-23.772084113999966,15.127346096000108],[-23.772938605999855,15.140448309000176],[-23.78575598899991,15.174505927000096],[-23.776193813999896,15.17723216400016],[-23.77013098899991,15.18398672100011],[-23.766753709999904,15.193752346000137],[-23.76585852799991,15.205511786000116],[-23.76366126199991,15.216294664000129],[-23.758697068999965,15.223089911000143],[-23.753814256999902,15.2280947940001],[-23.751576300999915,15.233465887000149],[-23.754953579999917,15.250311591000154],[-23.763295050999886,15.269761460000055],[-23.77440344999991,15.285630601000078],[-23.78575598899991,15.291815497000144],[-23.77912350199992,15.294134833000115],[-23.758412238999906,15.304877020000118],[-23.773060675999943,15.310614325000103],[-23.779530402999853,15.31167226800015],[-23.751576300999915,15.332749742000175],[-23.74413001199991,15.332749742000175],[-23.74356035099987,15.325140692000133],[-23.74201412699992,15.3209496110001],[-23.739898240999906,15.317328192000149]]],[[[-23.17625891799986,15.319159247000114],[-23.161936001999944,15.312567450000145],[-23.139515753999945,15.317775783000144],[-23.12779700399994,15.31167226800015],[-23.121896938999924,15.299139716000154],[-23.120513475999957,15.283351955000112],[-23.121571417999913,15.256415106000132],[-23.110463019999884,15.199408270000136],[-23.111927863999938,15.171942450000087],[-23.12779700399994,15.14663320500014],[-23.13280188699991,15.144720770000093],[-23.14867102799994,15.142767645000134],[-23.155140753999945,15.140366929000093],[-23.158843553999873,15.135565497000115],[-23.16364498599995,15.12372467700014],[-23.168812628999888,15.119859117000145],[-23.182728644999937,15.118597723000134],[-23.1959529289999,15.122056382000139],[-23.217152472999885,15.133530992000175],[-23.240630662999934,15.150051174000154],[-23.252064581999917,15.161810614000132],[-23.25816809799988,15.174505927000096],[-23.255116339999883,15.186835028000147],[-23.247303839999915,15.199204820000176],[-23.24327551999994,15.211330471000082],[-23.25133216099988,15.222886460000096],[-23.237172003999945,15.23102448100012],[-23.230865037999905,15.24396393400012],[-23.234852667999885,15.254828192000105],[-23.25133216099988,15.256415106000132],[-23.245716925999886,15.27106354400014],[-23.224110480999883,15.286688544000127],[-23.209787563999896,15.31167226800015],[-23.21446692599991,15.313544012000122],[-23.215158657999947,15.31443919500012],[-23.21495520699989,15.3158226580001],[-23.217152472999885,15.319159247000114],[-23.203277147999895,15.324896552000098],[-23.189849412999905,15.332749742000175],[-23.189564581999974,15.32949453300013],[-23.189849412999905,15.319159247000114],[-23.181263800999886,15.325751044000098],[-23.178944464999915,15.327948309000178],[-23.17625891799986,15.332749742000175],[-23.168812628999888,15.325344143000095],[-23.17625891799986,15.319159247000114]]],[[[-22.85252844999988,16.206610419000143],[-22.829416469999927,16.204006252000152],[-22.819325324999852,16.212958075000174],[-22.811675584999932,16.228420315],[-22.793812628999945,16.231350002000042],[-22.734689907999922,16.216864325000174],[-22.72386633999986,16.21263255400005],[-22.713856574999852,16.20575592700014],[-22.709828253999888,16.1986351580001],[-22.7037654289999,16.17959219],[-22.69957434799997,16.17568594],[-22.682484503999916,16.16864655200014],[-22.67870032499991,16.15176015800013],[-22.682118292999917,16.11359284100017],[-22.678374803999873,16.111883856000148],[-22.670806443999908,16.102240302],[-22.66657467399989,16.091457424000097],[-22.67251542899993,16.086330471000096],[-22.67560787699992,16.082017320000162],[-22.677113410999965,16.072658596000153],[-22.679798956999946,16.063218492000132],[-22.696441209999904,16.052923895000035],[-22.75108801999994,16.010565497000115],[-22.78758704299989,15.991603908000016],[-22.80614173099991,15.985907294000029],[-22.863677537999877,15.98236725500014],[-22.873890753999916,15.983872789000186],[-22.883656378999945,15.988714911000086],[-22.8977758449999,16.00047435100005],[-22.90929114499994,16.003729559000092],[-22.945546027999853,16.019680080000015],[-22.957753058999913,16.03082916900003],[-22.963978644999884,16.05219147300009],[-22.96324622299994,16.071193752000095],[-22.957753058999913,16.089016018000066],[-22.9474177729999,16.102240302],[-22.932606574999852,16.107407945000105],[-22.913563605999855,16.12555573100009],[-22.924427863999934,16.212958075000174],[-22.91559811099995,16.243963934000092],[-22.911610480999883,16.236721096000068],[-22.90721594999991,16.231431382000025],[-22.895090298999918,16.22284577000009],[-22.87791907499988,16.21491120000003],[-22.85252844999988,16.206610419000143]]],[[[-24.29283606699994,16.641831773000135],[-24.282378709999872,16.641343492000047],[-24.22679602799994,16.649603583000115],[-24.21711178299995,16.64769114800016],[-24.180572068999933,16.630845445000162],[-24.17247473899991,16.629095770000063],[-24.0899958979999,16.622463283000016],[-24.067534959999875,16.613918361000074],[-24.047963019999912,16.598822333000086],[-24.03742428299995,16.593003648000135],[-24.032826300999915,16.59682851800012],[-24.032826300999915,16.56240469],[-24.044097459999904,16.55988190300009],[-24.114735480999855,16.55927155200014],[-24.19196529899989,16.592474677000055],[-24.233306443999908,16.60211823100012],[-24.272328253999888,16.587225653000147],[-24.28636633999986,16.570746161000088],[-24.315337693999933,16.520412502000124],[-24.32469641799989,16.482652085000055],[-24.333404100999868,16.494940497000027],[-24.34748287699989,16.531968492000043],[-24.35338294199994,16.5404320330001],[-24.360178188999953,16.547186591000028],[-24.365630662999905,16.55560944200009],[-24.367909308999884,16.569159247000144],[-24.36856035099993,16.57953522300015],[-24.37092037699989,16.587144273000163],[-24.376088019999884,16.591782945000105],[-24.385080532999893,16.593410549000126],[-24.408273891999926,16.600165106000148],[-24.424712693999936,16.617132880000142],[-24.430653449999852,16.639471747000172],[-24.422596808999913,16.66229889500009],[-24.36148027299987,16.681586005000113],[-24.354237433999856,16.680609442000147],[-24.340565558999913,16.67536041900017],[-24.328684048999943,16.667792059000117],[-24.30516516799989,16.64789459800012],[-24.29283606699994,16.641831773000135]]],[[[-22.89736894399988,16.71027252800009],[-22.88418535099993,16.698431708000115],[-22.88133704299989,16.692694403000147],[-22.882394985999948,16.68154531500012],[-22.886626756999874,16.66168854400003],[-22.887603318999936,16.65143463700009],[-22.889556443999908,16.64590078300007],[-22.898793097999942,16.639471747000172],[-22.90184485599985,16.634426174000126],[-22.90147864499994,16.629095770000063],[-22.89940344999991,16.62164948100009],[-22.89683997299991,16.61546458500011],[-22.895090298999918,16.613918361000074],[-22.90172278599988,16.605902411000145],[-22.90884355399993,16.602199611000103],[-22.917632615999903,16.599188544000082],[-22.92918860599991,16.593410549000126],[-22.941395636999914,16.66937897300015],[-22.95653235599991,16.69944896],[-22.97760982999992,16.68903229400011],[-22.981760219999956,16.703517971000153],[-22.983143683999856,16.723049221000124],[-22.98005123599995,16.741115627000156],[-22.97081458199989,16.75104401200015],[-22.97081458199989,16.757879950000174],[-22.982736782999922,16.761379299000154],[-22.989247199999937,16.770941473000146],[-22.991566535999876,16.78432851800015],[-22.990793423999975,16.81565989800019],[-22.970122850999957,16.83144765800013],[-22.92243404899989,16.860296942000062],[-22.916981574999852,16.853176174000012],[-22.898915167999917,16.836818752000013],[-22.895090298999918,16.829291083000143],[-22.89631100199992,16.82501862200003],[-22.902740037999934,16.813177802000084],[-22.909779425999915,16.80337148600013],[-22.907948370999947,16.800604559000174],[-22.904042120999858,16.79857005400005],[-22.90184485599985,16.79511139500015],[-22.904652472999913,16.73582591400016],[-22.90184485599985,16.71694570500013],[-22.89736894399988,16.71027252800009]]],[[[-24.927723761999914,16.91779205900015],[-24.918771938999893,16.908270575000145],[-24.91470292899993,16.89915599200016],[-24.919748501999944,16.89508698100012],[-24.92292232999992,16.89081452],[-24.914458787999877,16.881415106000176],[-24.90013587099989,16.872015692000062],[-24.885894334999904,16.867743231000063],[-24.88109290299991,16.86229075700011],[-24.876291469999927,16.849839585],[-24.873605923999946,16.835923570000105],[-24.875070766999897,16.826157945000162],[-24.89110266799989,16.813950914000188],[-24.915516730999855,16.80548737200014],[-24.94286048099991,16.800482489000032],[-24.96812903599988,16.798895575000174],[-24.9745173819999,16.796698309000178],[-24.984201626999948,16.78733958500005],[-24.98802649599986,16.785142320000077],[-24.995228644999884,16.78611888200014],[-25.058176235999923,16.80963776200009],[-25.06822669199991,16.81509023600013],[-25.076161261999854,16.82245514500012],[-25.08112545499992,16.832342841000056],[-25.094146287999905,16.826157945000162],[-25.08975175699993,16.847479559000035],[-25.078195766999897,16.86505768400015],[-25.063588019999884,16.87702057500009],[-25.0501195949999,16.881415106000176],[-25.01878821499986,16.88202545800014],[-25.005970831999914,16.88768138200014],[-25.01219641799986,16.9012718770001],[-24.983998175999886,16.915961005],[-24.978098110999948,16.92300039300015],[-24.971262173999946,16.92300039300015],[-24.965199347999942,16.908921617000104],[-24.955189581999946,16.910793361000074],[-24.93773352799991,16.92300039300015],[-24.927723761999914,16.91779205900015]]],[[[-25.091053839999915,17.19301992400007],[-25.079497850999896,17.185370184000035],[-25.053944464999912,17.18618398600013],[-25.039540167999856,17.182440497000115],[-25.030181443999908,17.175482489000117],[-25.026275193999908,17.16771067900011],[-25.025868292999917,17.14492422100001],[-25.02057857999992,17.140366929000052],[-24.99705969999988,17.134182033000073],[-24.991769985999895,17.130926825000028],[-24.988677537999905,17.125718492000047],[-24.974964972999885,17.11448802300005],[-24.971262173999946,17.107326565],[-24.973011847999942,17.09662506700009],[-24.97899329299986,17.08690013200011],[-25.015126105999883,17.04913971600017],[-25.019683397999927,17.049017645],[-25.02391516799986,17.045396226000136],[-25.042713995999915,17.03847890800013],[-25.046986456999917,17.035060940000122],[-25.055572068999936,17.0248070330001],[-25.115874803999873,16.997463283000044],[-25.143422003999888,16.970038153000175],[-25.162953253999888,16.94529857000019],[-25.187855597999913,16.92816803600006],[-25.231312628999945,16.92300039300015],[-25.269195115999906,16.92300039300015],[-25.280832485999895,16.920721747000083],[-25.289662238999934,16.917181708],[-25.29869544199988,16.917385158000158],[-25.31078040299988,16.92609284100014],[-25.313384568999876,16.93846263200008],[-25.31387285099987,17.004950262000094],[-25.327544725999896,17.028225002000013],[-25.33104407499988,17.03095123900009],[-25.3482966789999,17.034125067000147],[-25.354847785999876,17.03847890800013],[-25.360422329999892,17.055243231000148],[-25.35558020699989,17.069566148000135],[-25.330922003999916,17.096828518000123],[-25.316802537999877,17.106105861000074],[-25.30215410099987,17.10805898600013],[-25.289133266999983,17.10700104400017],[-25.27977454299986,17.107326565],[-25.269602016999897,17.11432526200018],[-25.245350714999915,17.136704820000187],[-25.226307745999918,17.144680080000157],[-25.202707485999895,17.15875885600009],[-25.17955481699994,17.164374091000084],[-25.118641730999855,17.192857164000102],[-25.102609829999945,17.196600653000033],[-25.091053839999915,17.19301992400007]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Djibouti","sov_a3":"DJI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Djibouti","adm0_a3":"DJI","geou_dif":0,"geounit":"Djibouti","gu_a3":"DJI","su_dif":0,"subunit":"Djibouti","su_a3":"DJI","brk_diff":0,"name":"Djibouti","name_long":"Djibouti","brk_a3":"DJI","brk_name":"Djibouti","brk_group":null,"abbrev":"Dji.","postal":"DJ","formal_en":"Republic of Djibouti","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Djibouti","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":4,"mapcolor13":8,"pop_est":516055,"gdp_md_est":1885,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"DJ","iso_a2":"DJ","iso_a3":"DJI","iso_n3":"262","un_a3":"262","wb_a2":"DJ","wb_a3":"DJI","woe_id":23424797,"woe_id_eh":23424797,"woe_note":"Exact WOE match as country","adm0_a3_is":"DJI","adm0_a3_us":"DJI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Middle East & North Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DJI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[43.24073326900009,11.487860419000112],[43.18881468300009,11.40776399400005],[42.923715454000046,10.99878713000004],[42.908109171000085,11.004187317000103],[42.898083944000064,10.995686544000094],[42.888058716000046,10.9835684210001],[42.873279256000046,10.978245748000063],[42.86015344200007,10.980416159000143],[42.83545210800014,10.987444153000055],[42.794110962000104,10.991604106000082],[42.771786743000064,10.996461691000105],[42.754836873000045,11.010543518000134],[42.72961877400007,11.065010478000133],[42.71039514100005,11.07211598700006],[42.68652063000007,11.073046163000114],[42.61562056500008,11.08966013600012],[42.60814508900012,11.089087690000099],[42.56973189300004,11.086146139000078],[42.47971154800007,11.059119364000125],[42.41325565600005,11.015943705000097],[42.391758260000074,11.005892639000066],[42.37666874100012,11.00666778600008],[42.36116581300007,11.011887105000099],[42.33853153500012,11.015504456000087],[42.305872030000046,11.004600729000115],[42.297293742000136,11.003773906000092],[42.27941369600006,11.00439402200007],[42.27083540900014,11.003515523000118],[42.23517867000004,10.98770253500004],[42.22163944500005,10.98434356700011],[42.20272587100004,10.984550273000067],[42.1513594970001,10.996203308000132],[42.096272420000105,10.990260518000113],[42.0694006760001,10.981501363000048],[42.03839481600011,10.950443828000104],[42.01079960100009,10.943596700000043],[41.95416223100011,10.94127126100011],[41.94734094200004,10.938532410000064],[41.94279341700007,10.933545634000112],[41.93752242000005,10.929824931000098],[41.92884078000009,10.931065165000135],[41.92284631300009,10.936026103000088],[41.92026249200006,10.941943055000095],[41.916851847000146,10.94705902200009],[41.798719523000045,10.970675151000094],[41.77381148300009,10.980054423000055],[41.76652309800011,10.989466077000117],[41.761305786000094,10.996203308000132],[41.77928918500009,11.02467702300008],[41.78559370900007,11.067387594000081],[41.78797082500006,11.259727275000046],[41.77567183400009,11.36842865000007],[41.74983361900007,11.4833828740001],[41.74911014800006,11.537953186000037],[41.77866906800011,11.628645325000079],[41.79241499800013,11.704454651000075],[41.808227987000116,11.736235657000108],[41.82300744600008,11.746105856000083],[41.862281535000136,11.7630557250001],[41.87220341000011,11.775871481000081],[41.87778446500005,11.790134176000052],[41.88625940000014,11.796025289000056],[41.89752486200018,11.79938425700007],[41.91147749900011,11.805947164000145],[41.92532678200006,11.816437480000102],[41.93638553800008,11.827444560000089],[41.97468025400008,11.88090987400008],[42.0573083910001,11.99627146400006],[42.09771936000009,12.070168762000051],[42.1087781170001,12.08210601900008],[42.132342570000105,12.093474833000073],[42.14030074000004,12.105825501000126],[42.15549361200009,12.142257386000038],[42.2887154550001,12.3210061650001],[42.319204549000055,12.386376852000055],[42.379459269000044,12.465906880000162],[42.430928995000045,12.52032216400005],[42.44849898300009,12.523371074000082],[42.4756807870001,12.516343079000066],[42.521569458000045,12.496240947000103],[42.67825240100012,12.3600218710001],[42.69148156800014,12.3788320930001],[42.6961871260001,12.38012578600012],[42.72775842300007,12.388805644000115],[42.74140100100009,12.408080953000152],[42.74987593600008,12.417072652000101],[42.7797449140001,12.422602031000096],[42.7922506100001,12.429164937000081],[42.79803837100007,12.456088358000102],[42.78873661300014,12.487455953000122],[42.785222615000116,12.517221578000104],[42.82883752400005,12.557632548000086],[42.852091919000145,12.611737772000083],[42.86883508300019,12.626155498000102],[42.87772342900013,12.625070292000101],[42.89012577300008,12.615406800000088],[42.90035770700007,12.616388652000053],[43.117686394000145,12.70791250200007],[43.1339624360001,12.697211005000057],[43.14332116000014,12.67951080900005],[43.15113366000008,12.659735419000112],[43.16179446700005,12.642726955000057],[43.25961347700013,12.533351955000072],[43.28321373800014,12.496527411000088],[43.29737389400009,12.482001044000057],[43.312998894000145,12.477687893000052],[43.32935631600009,12.488755601000094],[43.32935631600009,12.453558661000045],[43.33122806100005,12.436712958000044],[43.33619225400008,12.41990794500012],[43.344086134000065,12.406154690000106],[43.35320071700005,12.395209052000041],[43.36052493600004,12.383002020000063],[43.36353600400013,12.36530182500006],[43.36475670700008,12.327134507000096],[43.367849155000044,12.306870835000081],[43.374034050000034,12.292954820000105],[43.41138756600009,12.241766669000057],[43.414317254000075,12.224920966000056],[43.41138756600009,12.166652736000046],[43.418711785000085,12.091253973000079],[43.413340691000144,12.059271552000084],[43.398773634000115,12.029527085000069],[43.3771264980001,12.00482819200009],[43.35043379000007,11.987941799000097],[43.342539910000085,11.985663153000118],[43.31568444100014,11.981105861000072],[43.288340691000144,11.967433986000046],[43.26840254000007,11.963812567000076],[43.22543379000012,11.96287669500009],[43.20655358200008,11.957831122000057],[43.17400149800011,11.93500397300005],[43.09717858200008,11.844549872000071],[43.09197024800011,11.84129466400013],[43.08602949300007,11.838853257000094],[43.07618248800014,11.834702867000061],[43.06918379000007,11.830267645000077],[43.06470787900008,11.823431708000072],[43.060883009000115,11.809556382000082],[43.055511915000125,11.803615627000056],[43.04151451900009,11.79852936400003],[42.98682701900014,11.796087958000085],[42.97250410200007,11.790838934000107],[42.95753014400009,11.780462958000015],[42.942637566000144,11.773830471000053],[42.91553795700014,11.783596096000082],[42.89649498800014,11.780585028000075],[42.803396030000094,11.747992255000028],[42.77719160200007,11.732245184000064],[42.75407962300011,11.70795319200009],[42.68409264400009,11.582261460000083],[42.67741946700005,11.573675848000065],[42.66797936300014,11.568548895000049],[42.63697350400008,11.559556382000038],[42.62769616000014,11.55906810100005],[42.60377037900008,11.563381252000056],[42.57740319100009,11.562404690000077],[42.569021030000044,11.563381252000056],[42.563487175000034,11.567206122000059],[42.55404707100007,11.580267645000049],[42.54859459700003,11.58380768400012],[42.52686608200008,11.58246491100003],[42.51514733200008,11.574123440000063],[42.51498457100013,11.567206122000059],[42.528086785000085,11.570217190000065],[42.53248131600008,11.548488674000097],[42.53248131600008,11.547471421000125],[42.53305097700007,11.523504950000072],[42.53874759200005,11.502997137000122],[42.57162519600013,11.490464585000026],[42.59156334700003,11.472479559000078],[42.60377037900008,11.46775950700008],[42.617686394000145,11.470282294000086],[42.63355553500008,11.48480866100003],[42.644786004000075,11.488226630000042],[42.653493686000104,11.485907294000071],[42.662852410000085,11.48163483300007],[42.672536655000044,11.479722398000106],[42.681651238000136,11.484523830000098],[42.687510613000086,11.497219143000066],[42.680674675000084,11.504787502000099],[42.67042076900014,11.50995514500002],[42.66529381600014,11.515570380000014],[42.67408287900008,11.532131252000084],[42.694102410000085,11.54596588700008],[42.739756707000076,11.563381252000056],[42.80746504000007,11.571275132000023],[42.829112175000034,11.576971747000101],[42.83952884200005,11.584458726000065],[42.847504102000066,11.592718817000062],[42.855804884000065,11.59577057500006],[42.86695397200009,11.587591864000046],[42.87517337300005,11.583685614000045],[42.900726759000065,11.58405182500006],[43.04053795700008,11.58592357000012],[43.06185957100007,11.590155341000056],[43.08179772200003,11.589544989000089],[43.10336347700007,11.576971747000101],[43.123057488000086,11.581488348000065],[43.13355553500008,11.595282294000071],[43.14112389400014,11.608587958000086],[43.15186608200014,11.611761786000057],[43.15788821700005,11.601304429000066],[43.172211134000115,11.542873440000093],[43.173106316000144,11.541652736000072],[43.18384850400013,11.52655670800007],[43.19516035200013,11.518296617000075],[43.22632897200003,11.50189850500007],[43.24073326900009,11.487860419000112]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Algeria","sov_a3":"DZA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Algeria","adm0_a3":"DZA","geou_dif":0,"geounit":"Algeria","gu_a3":"DZA","su_dif":0,"subunit":"Algeria","su_a3":"DZA","brk_diff":0,"name":"Algeria","name_long":"Algeria","brk_a3":"DZA","brk_name":"Algeria","brk_group":null,"abbrev":"Alg.","postal":"DZ","formal_en":"People's Democratic Republic of Algeria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Algeria","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":6,"mapcolor13":3,"pop_est":34178188,"gdp_md_est":232900,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"AG","iso_a2":"DZ","iso_a3":"DZA","iso_n3":"012","un_a3":"012","wb_a2":"DZ","wb_a3":"DZA","woe_id":23424740,"woe_id_eh":23424740,"woe_note":"Exact WOE match as country","adm0_a3_is":"DZA","adm0_a3_us":"DZA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"DZA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[8.602510428642177,36.939510763470565],[8.605655151000065,36.913045146000115],[8.604828329000043,36.900978699000035],[8.608238973000084,36.89072092700004],[8.642552124000105,36.848501282000086],[8.641725301000065,36.836357321000094],[8.623845255000106,36.82607371100008],[8.554495483000066,36.80364613900011],[8.520078979000116,36.797910055000045],[8.482665242000053,36.7999771130001],[8.444011271000049,36.79620473300008],[8.41310876500006,36.78390574200003],[8.406700887000113,36.76798940000012],[8.441634155000115,36.75320994100008],[8.461787964000079,36.732797750000145],[8.453209676000142,36.697657776000085],[8.430368693000048,36.66262115500007],[8.40794112100005,36.64262237600005],[8.286914917000075,36.58340118400005],[8.222319376000113,36.56376414000002],[8.193483927000074,36.548984681],[8.169919474000096,36.52583363900001],[8.167890169000145,36.49199497900008],[8.16785241700012,36.491365459000065],[8.208780151000042,36.47782623300006],[8.295596557000124,36.46867950400008],[8.314923543000077,36.46061798200009],[8.333837118000103,36.456380514000045],[8.349236695000116,36.448784078000074],[8.357711629000107,36.43038726800009],[8.35967533300004,36.41121531200008],[8.358125041000108,36.36992584300014],[8.355423113000114,36.35611598600008],[8.354404338000109,36.350908915000076],[8.30706872600004,36.24362864200012],[8.302314494000143,36.20233917200002],[8.30706872600004,36.18249542300003],[8.314510132000066,36.163943583000076],[8.317093953000066,36.145908509000094],[8.307998901000104,36.12699493400004],[8.296733439000121,36.110406800000135],[8.27564945500012,36.03681956000014],[8.272445516000033,35.98173248300009],[8.268423401000064,35.96986394800004],[8.24722741700009,35.90731842100007],[8.241439656000125,35.82773671500013],[8.245780477000094,35.78531036400011],[8.257666057000023,35.750325419],[8.30655196100011,35.684903056000024],[8.323605184000144,35.65219187400004],[8.327225481000085,35.62140542800006],[8.33704105600009,35.53793528300008],[8.336730997000103,35.50837636300005],[8.300867553000074,35.43747629900011],[8.2900155020001,35.402594706000116],[8.287948446000144,35.366059469000106],[8.294356323000102,35.325080058000054],[8.317404012000054,35.28947499600008],[8.35523116100012,35.274333802000086],[8.396882365000067,35.263688457000086],[8.431298869000102,35.241725973000115],[8.42137699300011,35.22208892900008],[8.360915568000081,35.14591786800008],[8.313683309000055,35.10307810500004],[8.300454142000147,35.067679749000035],[8.28288415600008,34.994040833000014],[8.259009644000088,34.940659079000106],[8.248881062000123,34.901953431000095],[8.25074141400006,34.8647463990001],[8.269344930000102,34.76387400300007],[8.266554403000043,34.75028310200008],[8.258714460000078,34.741298],[8.257355997000047,34.739741110000125],[8.225213257000092,34.71168080700011],[8.213431030000095,34.69674631800004],[8.21064050300015,34.681191712000015],[8.236478719000075,34.64765370800009],[8.228830607000077,34.63643992200005],[8.19286381000012,34.61773305300007],[8.18655928600009,34.60956817600007],[8.179531291000103,34.592153219000124],[8.175190470000103,34.585280253000064],[8.167232300000137,34.57856231700003],[8.143667846000142,34.56672841400009],[8.102483160000105,34.53635470800009],[8.094058472000086,34.53014150000007],[7.999077189000076,34.494174703000084],[7.957322632000114,34.46942169200008],[7.870609579000075,34.437899068],[7.831542195000053,34.4143862920001],[7.811905151000104,34.37927215600007],[7.774284709000086,34.260958964000025],[7.765293009000061,34.24470672600012],[7.752787313000057,34.232149353000096],[7.733873738000113,34.22377777100013],[7.670311727000126,34.21530283600003],[7.631451049000077,34.199102275000115],[7.604062541000132,34.175486145],[7.579567911000083,34.148459372000076],[7.539228219000051,34.11375783900007],[7.51745284000009,34.09502594000014],[7.503706909000073,34.06797332800011],[7.500606323000113,33.99425689800006],[7.47983239800007,33.893901265000096],[7.484896688000049,33.85501475000004],[7.49853926600008,33.79997935000008],[7.505463908000137,33.78284861300003],[7.534196004000136,33.73623647100007],[7.544427938000125,33.68424998000003],[7.553006225000075,33.65874766100009],[7.616568237000139,33.5659626260001],[7.693152709000059,33.4541089890001],[7.70824222800013,33.414860738000044],[7.708286223000131,33.41070398400009],[7.709689168000125,33.27815073700008],[7.724985392000092,33.23140940400009],[7.750720255000089,33.207664083000054],[7.787513875000087,33.19831064900009],[7.835469604000109,33.19453826900008],[7.871953166000111,33.18412546800005],[7.982747437000113,33.11681691500007],[8.002177775000092,33.10836781900008],[8.022641642000082,33.10304514600011],[8.043622274000057,33.1018307490001],[8.064499552000143,33.10578399700006],[8.086823771000097,33.09428599100005],[8.181391642000108,32.96982330300003],[8.28288415600008,32.83636891700007],[8.296423381000068,32.80440704300008],[8.309962606000028,32.66387298600009],[8.31957442200013,32.560597636000125],[8.331253296000112,32.527628072000084],[8.33262728000011,32.52635540700001],[8.35998539200011,32.50101470900006],[8.482665242000053,32.43479136200005],[8.642345419000037,32.33665781700009],[8.851531616000074,32.208241882000095],[9.019893433000021,32.10486318000011],[9.033742716000091,32.09075551400008],[9.045008179000149,32.07184194000013],[9.063303822000108,32.00019151300006],[9.065988810000135,31.989676412000108],[9.094514201000095,31.879605611000105],[9.122729533000069,31.769534810000096],[9.1511515710001,31.65956736300012],[9.179470255000098,31.54949656200011],[9.207788941000075,31.43942576100011],[9.236210978000088,31.32940663700012],[9.26442631100008,31.21933583600011],[9.292951701000106,31.109316712000094],[9.321270386,30.999245911000084],[9.349589070000093,30.88917511000008],[9.377907756000099,30.7791559850001],[9.406329793000111,30.66908518500009],[9.434751831000142,30.559066060000106],[9.46307051600013,30.449046937000105],[9.491389201000032,30.33897613500011],[9.519707885000114,30.228905335000093],[9.286543823000073,30.11712921200012],[9.310004923000065,30.08436635400003],[9.369486582000093,30.022793757000077],[9.42172937,29.96871449800011],[9.54968021600007,29.802316386000086],[9.66770918800006,29.60832305900007],[9.746929158500109,29.368428141500146],[9.8261491290001,29.128533224000105],[9.848266642000112,28.975726013000095],[9.851263875000114,28.785995992000036],[9.827275804000065,28.618646663000018],[9.77695316600011,28.267578023000084],[9.789872273000128,28.209442037000088],[9.93590987100012,27.86672393900008],[9.93425622500007,27.82739817300009],[9.931273724000022,27.818641968000094],[9.863356160000109,27.619245504000045],[9.846612996000147,27.599298401000112],[9.818501017000102,27.585733337000136],[9.793903036000131,27.569739482000074],[9.797106974000087,27.54891388000004],[9.811679728000058,27.52653798500006],[9.821601603000147,27.505686544000067],[9.813643432000104,27.48648874900007],[9.77054528800008,27.444217428000087],[9.756282592000105,27.423030091000015],[9.743053426000102,27.36411895800012],[9.726516968000112,27.324689840000104],[9.72186608900006,27.308463440000082],[9.7213493240001,27.291875306000094],[9.806098674000054,27.025121562],[9.825529012000118,26.920580139],[9.835140828000133,26.90099477200007],[9.846096232000122,26.89195139600011],[9.890848022000084,26.869575501000043],[9.906661010000079,26.85748321600005],[9.910588419000135,26.843117168000045],[9.88547367400011,26.736612041000114],[9.882579793000017,26.701782125000047],[9.894051961000057,26.673980205000106],[9.896325725000054,26.652792867000045],[9.854571167000103,26.524376933000042],[9.83576094500009,26.504223125000067],[9.482604207000065,26.352552795000065],[9.48136397200011,26.332605693000033],[9.477643269000112,26.31555247000011],[9.468858276000105,26.301031393000073],[9.434751831000142,26.27198923800006],[9.416458374000086,26.232250062000077],[9.402505737000098,26.21617869100001],[9.377804403000084,26.16894643200007],[9.401162150000118,26.113394267000075],[9.541308634000103,25.936350810000075],[9.693960816000072,25.74349436400007],[9.816744019000055,25.58846506800006],[9.969499552000059,25.3954019170001],[10.007946818000079,25.331426493],[10.02138269000005,25.26801951100009],[10.025516805000052,25.13639963800003],[10.029960978000076,24.995064596000105],[10.032028035000023,24.856339213000126],[10.044533732000048,24.829622498000077],[10.19336185700007,24.749937440000025],[10.212172079000082,24.72285898900006],[10.229742065000067,24.629944763000108],[10.242247762000146,24.595114848000065],[10.260334513000144,24.57664052400014],[10.391799357000082,24.47997975700008],[10.410506225000063,24.47328765900005],[10.450193726000066,24.476930848000052],[10.56677575700013,24.51646331800009],[10.677363322000076,24.553851217000044],[10.69906742300006,24.55612498000005],[10.720668172000046,24.552300924000118],[10.911354207000045,24.49450083400012],[11.149995971000095,24.422334697000107],[11.467240356000048,24.32633855800006],[11.508630412000029,24.313814189000112],[11.541393270000128,24.29751027500009],[11.56712813300004,24.266840312000056],[11.636477905000078,24.13764923100007],[11.708618205000079,24.00298044800007],[11.710140444000075,24.000137321000096],[11.82230635600007,23.790641989000076],[11.892379598000105,23.660055644000096],[11.96886071700007,23.51735117600012],[11.900854533000114,23.477172750000104],[11.832744995000096,23.43704600100008],[11.764738810000038,23.396945089000013],[11.696732626000141,23.356844177000113],[11.62862308700005,23.31671742800009],[11.560513550000024,23.276590678000105],[11.492610717000076,23.236515605000108],[11.424501180000078,23.19641469300012],[11.356391642000062,23.156262106000014],[11.288488810000018,23.116161194000114],[11.220379273000106,23.076060283000114],[11.1522697340001,23.035881857000106],[11.084366903000074,22.9957551060001],[11.016257364000069,22.955654195000108],[10.948147827000042,22.915527446000084],[10.88003828900014,22.875374857000082],[10.812032104000052,22.8353256230001],[10.74392256700014,22.79519887300009],[10.675813029000068,22.755046285000105],[10.607806844000066,22.714945374000106],[10.539800659000093,22.674896139000026],[10.471691122000095,22.63474355100001],[10.403788289000147,22.594642640000103],[10.33567875200012,22.554541728000117],[10.267569213000113,22.51433746300009],[10.199563029000046,22.474236552],[10.131556844000073,22.434135641000093],[10.063447306000057,22.39403472900011],[9.995441122000102,22.35388214200009],[9.927434936000111,22.313781230000103],[9.859325399000113,22.273680318000086],[9.791319214000026,22.233579407],[9.723313029000051,22.19342681900011],[9.655203491000037,22.153325908000113],[9.587197306000064,22.113224997000117],[9.519087769000066,22.073072408000087],[9.451081583000075,22.032919820000075],[9.38307539900009,21.99281890900008],[9.314965860000086,21.952717997],[9.246959676000131,21.9125654100001],[9.178953491000128,21.872516175000012],[9.110843953000142,21.83236358700009],[9.042837769000073,21.7922626750001],[8.974831583000082,21.75211008700009],[8.906722046000084,21.712060852],[8.838612508000068,21.671908265000095],[8.770606323000095,21.631807353000113],[8.702496786000095,21.5916547650001],[8.634490600000106,21.55150217700009],[8.566381063000108,21.511349589000076],[8.498374878000021,21.47130035400008],[8.430265340000119,21.431147766000095],[8.36225915500006,21.3910468550001],[8.29425297000006,21.3509459440001],[8.226143432000072,21.31084503200009],[8.158033895000045,21.270744120000103],[8.090131063000113,21.23059153300008],[8.022021525000099,21.19049062100009],[7.953911987000083,21.1503897100001],[7.886009155000039,21.110237122000086],[7.817899617000136,21.070084534000074],[7.749790079000121,21.02998362200009],[7.681887247000077,20.989831034000076],[7.613777710000078,20.94973012300008],[7.482726278000057,20.872577210000117],[7.383610881000038,20.79165191700011],[7.312297404000077,20.733464254000125],[7.240880574000073,20.67517323800007],[7.169463745000143,20.616985576000076],[7.098046916000044,20.558746236000047],[7.020532267000077,20.495442607000143],[6.982808471000055,20.463609925000096],[6.925137574000074,20.414000549000033],[6.862092326000038,20.35974029500008],[6.799047078000115,20.30553171800005],[6.73610518400011,20.251323140000125],[6.672956583000143,20.197114563000095],[6.60996301300014,20.142854309000143],[6.546917765000103,20.088645732000113],[6.483769165000041,20.034385478000072],[6.420930623000061,19.980176900000057],[6.357782023000112,19.925916646000104],[6.294736775000074,19.87168223100008],[6.231691528000056,19.817473653000036],[6.168646281000121,19.76321339900008],[6.105601033000084,19.709004822000054],[6.04255578600015,19.654744568000126],[5.979407186000117,19.6005359910001],[5.91636193800008,19.546275737000144],[5.837607055000063,19.47863128700007],[5.794302205000093,19.449795838000025],[5.749343709000101,19.433698629000077],[5.62046268700007,19.408997294000045],[5.520830525000092,19.389902853000052],[5.301825806000096,19.34799326600009],[5.082821085000091,19.30600616500007],[4.983188924000018,19.286963399000083],[4.794466593000038,19.250764059000062],[4.605847616000091,19.21461639400013],[4.417228637000051,19.178417054000107],[4.228609660000103,19.142243551000064],[4.057560669000026,19.110436707000133],[3.886511678000147,19.0786298620001],[3.790290968000078,19.06077027500004],[3.715566040000112,19.04690053300007],[3.544620402000049,19.01506785100011],[3.439820598000068,18.995637513000133],[3.439717245000054,18.995637513000133],[3.358688598000128,18.976853129000034],[3.33305708800006,18.97556121800008],[3.318380981000075,18.977705790000073],[3.308355754000075,18.981684876000145],[3.284894653000094,18.995740866000062],[3.225983520000085,19.051060486000097],[3.179784790000042,19.069999899000038],[3.158597452000066,19.081549581000075],[3.138753703000077,19.096044820000117],[3.120873657000118,19.112813823000067],[3.104130493000071,19.135525615000063],[3.102683553000076,19.153560690000063],[3.11177860500004,19.171337382000075],[3.126558065000069,19.193351543000063],[3.134206176000134,19.212859396000056],[3.139270467000102,19.221928610000106],[3.152706340000066,19.230196839000058],[3.174410441000077,19.2516425580001],[3.178854614000073,19.268721619000132],[3.183815551000123,19.307504782000077],[3.192910604000105,19.32579823800006],[3.211514119000043,19.340861919000133],[3.232701457000104,19.35184316100012],[3.250994914000074,19.365459900000104],[3.260813436000149,19.388326722000045],[3.258229614000129,19.410392558000122],[3.247480916000114,19.426463928000086],[3.23476851400008,19.441346741000046],[3.225983520000085,19.459691874000043],[3.226190226000142,19.469200338000093],[3.231667928000121,19.4890440880001],[3.232288046000093,19.495477804000046],[3.228050578000136,19.50415944400001],[3.222882935000143,19.508061015000067],[3.217508585000076,19.51116160100011],[3.21223758900004,19.517156067000144],[3.199421834000077,19.553768819000084],[3.198284952000051,19.592396953000076],[3.216785116000068,19.794064230000085],[3.212754353000093,19.807758484000086],[3.198801717000094,19.820522562000065],[3.183195435000044,19.82773142500011],[3.147021932000115,19.837937520000082],[3.130485473000135,19.845223898000086],[3.072607869000109,19.88889048300004],[2.946000610000112,19.94165212000007],[2.671805461000105,19.9962224330001],[2.616925089000091,19.998367004000073],[2.525664510000098,20.01516184500005],[2.514812459000041,20.015936992000064],[2.495382120000073,20.0200969440001],[2.459311970000073,20.038777975000073],[2.439881632000095,20.046090190000058],[2.415697062000021,20.051283671000075],[2.400400838000053,20.056554667000086],[2.388721964000097,20.067406718000143],[2.348207641000073,20.137634989000016],[2.316478312000072,20.18016469300008],[2.279581339000031,20.21794016600006],[2.218189738000149,20.26408722000008],[2.200826456000129,20.273905742000068],[2.182429647000049,20.278504944000105],[2.161345662000116,20.27493927100005],[2.138194620000121,20.260728251000074],[2.097473592000142,20.224193013000047],[2.07122196500012,20.213263448000074],[2.056339152000077,20.215046285000057],[1.993397257000084,20.235949402000042],[1.983372030000055,20.24191803000005],[1.975620564000053,20.248429260000137],[1.967145629000044,20.25341603600009],[1.955260050000106,20.2549146530001],[1.941204061000093,20.251116435000053],[1.924254191000102,20.236130270000075],[1.91340214000013,20.23109181700002],[1.891387980000075,20.231789449000104],[1.88384322100012,20.244140117000057],[1.880329223000046,20.26305369100001],[1.870614054000015,20.283543396000084],[1.855007771000089,20.294834697000056],[1.838884725000099,20.295919902000037],[1.820901326000097,20.29359446300009],[1.799197225000114,20.29488637300005],[1.778113241000085,20.304291484000117],[1.659154093000069,20.397515767000044],[1.649232219000055,20.4120885210001],[1.650059041000077,20.487019348000047],[1.643961222000115,20.522676087000036],[1.623704060000136,20.551253154000108],[1.559728637000148,20.59750356100008],[1.520351196000149,20.616985576000076],[1.483454223000109,20.62261830700001],[1.465780884000111,20.633522034000062],[1.447487426000066,20.638741353000086],[1.407179810000088,20.645045879000094],[1.363978312000057,20.657706605000044],[1.346925089000109,20.669127095000135],[1.331525512000042,20.68793731700015],[1.310544881000055,20.72271555600008],[1.296695597000081,20.733464254000125],[1.273337850000132,20.739407044000128],[1.252253865000114,20.7389936320001],[1.212463012000086,20.73088043200002],[1.191275675000043,20.730570374000134],[1.168538045000048,20.733464254000125],[1.154585408000059,20.73878692600007],[1.147247355000076,20.75144765200011],[1.144560180000042,20.776252340000042],[1.145283651000057,20.795889384000077],[1.167504516000065,20.88601308200006],[1.180113566000102,20.995308736000055],[1.177943156000111,21.017322896000053],[1.15933964000007,21.08150502500007],[1.146523885000079,21.10171051100008],[1.029321737000117,21.178346660000102],[0.94260868300006,21.235035706000104],[0.855998983000035,21.29167307500009],[0.769389282000105,21.348310445000067],[0.682676229000151,21.404896139000044],[0.596066528000108,21.461585185000047],[0.509456827000093,21.518274231000046],[0.422795451000127,21.57496327700005],[0.336159912000085,21.631600647000138],[0.249498535000043,21.68823801700003],[0.162966350000119,21.744823711],[0.07625329600009,21.8014610810001],[0.003734557000115,21.848898800000086],[-0.010408080999866,21.85815012600011],[-0.097043619999909,21.914839173000104],[-0.183730834999949,21.97147654300008],[-0.270392211999905,22.028113913000084],[-0.357027749999958,22.08475128200007],[-0.443663289999989,22.141388651000057],[-0.530324665999927,22.198077698000077],[-0.616934366999971,22.25476674400008],[-0.703647419999925,22.31140411400005],[-0.790308796999881,22.36804148300004],[-0.876918497999895,22.42462717700002],[-0.963579874999937,22.48126454700011],[-1.050189575999894,22.53795359300011],[-1.136902627999859,22.594642640000103],[-1.223512328999959,22.651280009000086],[-1.310122029999917,22.707969055],[-1.39678340599994,22.76455474900007],[-1.483496459999912,22.821166280000057],[-1.570054484999929,22.877881165000076],[-1.656715860999981,22.93457021100008],[-1.74332556199991,22.991181743000052],[-1.830038614999893,23.047819112000038],[-1.916648315999907,23.104456482000042],[-2.003309692999949,23.16104217500009],[-2.089919392999889,23.217757060000025],[-2.176632446999861,23.274446106000113],[-2.263190470999859,23.331109314000116],[-2.349851846999911,23.387746684],[-2.436513224999942,23.444358216000097],[-2.523226277999924,23.500995585000084],[-2.609835977999864,23.557684632000072],[-2.696445678999879,23.61434783900006],[-2.78310705599992,23.670985209000065],[-2.869768432999876,23.72762257900004],[-2.956403971999919,23.78423411000003],[-3.043065347999857,23.84092315700013],[-3.129649210999986,23.89761220300005],[-3.209489298999898,23.949702047000102],[-3.289122680999924,24.001843567000066],[-3.368807738999863,24.053959249000116],[-3.448544473999931,24.106023255000053],[-3.528281209999903,24.158113098000115],[-3.608017943999868,24.21020294200008],[-3.687625487999896,24.262344462000044],[-3.767336384999851,24.314434306000095],[-3.846995604999904,24.36657582600006],[-3.926732340999962,24.41871734700004],[-4.006494913999944,24.470807190000073],[-4.086154134999958,24.52289703400004],[-4.165865030999925,24.574986878000086],[-4.245498412999979,24.627076721000037],[-4.325235148999923,24.6792182420001],[-4.404946044999889,24.73130808500005],[-4.516024536999879,24.803990987000105],[-4.592350626999917,24.85168833400007],[-4.668676716999954,24.8993340050001],[-4.744925292999881,24.947057190000066],[-4.821225545999908,24.99475453700003],[-4.821354736999922,24.99480621300006],[-4.821535603999876,24.994961243000088],[-4.821613117999902,24.995064596000105],[-4.995194254999973,25.102086487000093],[-5.168749552999912,25.209160055000098],[-5.34233068899988,25.316181946000086],[-5.515963500999874,25.42325551400006],[-5.636989704999848,25.494465637000104],[-5.661524745999969,25.50888110800011],[-5.804628051999913,25.592960918000074],[-5.972266397999931,25.691611226000077],[-6.139904743999892,25.790209859000072],[-6.30749141499993,25.888808493000056],[-6.505412149999898,26.00518381800009],[-6.703332885999884,26.121559144000088],[-6.901201944999855,26.237934469000038],[-7.099122680999925,26.35436147100006],[-7.297043415999894,26.470736796000068],[-7.494912475999854,26.58716379800009],[-7.692781534999909,26.703487447000015],[-7.890753946999922,26.819914449000038],[-8.088623006999882,26.936238099000064],[-8.2864403899999,27.052665100000095],[-8.484412800999904,27.168988750000096],[-8.682385212999918,27.28541575100013],[-8.682385212999918,27.379466858000082],[-8.682385212999918,27.473466288000026],[-8.682385212999918,27.567414042000053],[-8.682385212999918,27.661439311000095],[-8.682385212999918,27.721435649000085],[-8.682385212999918,27.781354472000086],[-8.682385212999918,27.841221619000038],[-8.682385212999918,27.90114044200004],[-8.682385212999918,27.961085104000116],[-8.682385212999918,28.02102976600011],[-8.682385212999918,28.08094858800007],[-8.682385212999918,28.14089325000006],[-8.682385212999918,28.20076039700004],[-8.682385212999918,28.260679220000014],[-8.682385212999918,28.320623881000103],[-8.682385212999918,28.380542704000078],[-8.682385212999918,28.44048736600007],[-8.682385212999918,28.500406189000046],[-8.682385212999918,28.560273336000108],[-8.682385212999918,28.6202179980001],[-8.682385212999918,28.665899964000115],[-8.678767862999933,28.692823385000025],[-8.66760575399988,28.711685283000065],[-8.648847208999882,28.725947978000136],[-8.52081884799992,28.78708119800004],[-8.475834512999882,28.818758851000037],[-8.430410929999937,28.84100555500009],[-8.417801879999928,28.852348531000075],[-8.383488728999907,28.905781963000095],[-8.36845088699991,28.916530661000106],[-8.333259235999947,28.930379944000062],[-8.316774454999859,28.93906158400003],[-8.250473591999935,28.99476877900008],[-8.18231237799992,29.035541484000053],[-8.069657754999923,29.07933726000004],[-8.03632645699986,29.099852804000104],[-7.945014200999964,29.176230570000087],[-7.839129191999887,29.239043275000142],[-7.777995970999882,29.289324443000112],[-7.729988565999918,29.311157736000037],[-7.714666503999865,29.32182891800005],[-7.653610798999892,29.376192525000107],[-7.619452677999902,29.3894216920001],[-7.572685506999989,29.387613017],[-7.528502156999878,29.38094675700009],[-7.506126260999906,29.380223287],[-7.484060424999909,29.382445374000014],[-7.463286498999877,29.38913747200013],[-7.349610105356646,29.383439374604677],[-7.258755287181771,29.467305360612272],[-7.146933972505082,29.509238353615956],[-7.070056818664909,29.516227185783265],[-6.95823550398822,29.509238353615956],[-6.78351469980592,29.44633886411037],[-6.699648713798354,29.516227185783265],[-6.55987207045257,29.53020485011785],[-6.413106594939393,29.565149010954343],[-6.273329951593496,29.57912667528896],[-6.126564476080318,29.57912667528896],[-6.00076549706904,29.57912667528896],[-5.881955350225155,29.600093171790746],[-5.756156371213876,29.614070836125368],[-5.721212210377388,29.523216017950574],[-5.637346224369792,29.495260689281363],[-5.539502574027694,29.523216017950574],[-5.434670091518313,29.64202616479454],[-5.343815273343522,29.76782514380582],[-5.273926951670632,29.886635290649817],[-5.176083301328532,29.977490108824608],[-5.071250818819067,30.04038959833028],[-4.959429504142378,30.124255584337785],[-4.875563518134896,30.180166241676087],[-4.770731035625516,30.22908806684717],[-4.623965560112338,30.284998724185556],[-4.484188916766527,30.382842374527655],[-4.372367602089838,30.50864135353893],[-4.274523951747767,30.557563178709923],[-4.155713804903684,30.585518507379135],[-4.001959497223311,30.59250733954641],[-3.834227525208235,30.62745150038282],[-3.645529056691345,30.71131748639041],[-3.652517888858654,30.774216975895996],[-3.659506721025934,30.83711646540169],[-3.610584895854856,30.879049458405373],[-3.554674238516554,30.955926612245662],[-3.608741414999969,31.03087188800009],[-3.61008500199992,31.05030222600007],[-3.614529174999944,31.06802724200008],[-3.624140991999951,31.08652740500011],[-3.635871541999932,31.095674133000102],[-3.671941690999944,31.110867005000046],[-3.689718383999945,31.12559478800003],[-3.717106892999908,31.163266907000065],[-3.731421264999909,31.176341045000125],[-3.748862059999936,31.180216776000066],[-3.763719034999951,31.173447164000038],[-3.792967895999908,31.149676006000078],[-3.810796263999862,31.142906393000118],[-3.827461913999883,31.143836568000093],[-3.839321654999907,31.152828268000032],[-3.842835652999952,31.170191549000066],[-3.836169392999863,31.189776917000074],[-3.814982054999888,31.220524394000023],[-3.812914998999929,31.243365377000114],[-3.819219522999958,31.318864645000048],[-3.815188761999962,31.337158102000018],[-3.802502197999899,31.350645651000093],[-3.747466796999959,31.385165507000067],[-3.673484385360553,31.389234206617825],[-3.659506721025934,31.647820996807663],[-3.591378132999949,31.67827423200001],[-3.548745076999865,31.66995432600004],[-3.511563883999941,31.672744853000097],[-3.219210294486515,31.717709318480583],[-3.002556497300333,31.773619975818978],[-2.827835693118061,31.79458647232076],[-2.869768686121859,31.89243012266294],[-2.938730631999903,32.048639221000116],[-2.881188923999986,32.07628611300004],[-2.695567178999852,32.08967030900007],[-2.516146605999893,32.13220001300004],[-2.378635620999944,32.126773987000064],[-2.315176960999906,32.12429351800009],[-2.243398396999879,32.12139963900009],[-2.165108601999918,32.118299052000054],[-2.081857869999908,32.11494008400003],[-1.995454873999932,32.11147776300001],[-1.907553262999926,32.10796376500005],[-1.819961710999934,32.10450144500001],[-1.734333861999886,32.101090800000094],[-1.652375039999896,32.09783518500009],[-1.575790567999888,32.09473459900005],[-1.506337442999921,32.0919440720001],[-1.445617634999934,32.08951528000003],[-1.395388142999877,32.087551575000106],[-1.357405965999959,32.08605295800009],[-1.333428100999953,32.08507110600004],[-1.324953165999943,32.084709371000116],[-1.249557250999942,32.08166046200009],[-1.210334838999898,32.08967030900007],[-1.190594440999945,32.125223694000056],[-1.195607055999886,32.146049296000086],[-1.211833455999908,32.15834828800004],[-1.23271073399988,32.1637226360001],[-1.251831013999976,32.163515931000035],[-1.288986368999872,32.150906881000104],[-1.305161091999963,32.15116526300008],[-1.309553588999961,32.167443339000016],[-1.305677855999903,32.173722026000114],[-1.289193074999929,32.184858297000034],[-1.282991902999925,32.190180969000096],[-1.276635700999918,32.200852153000085],[-1.275188760999924,32.20906870600004],[-1.2754988199999,32.21751780200012],[-1.273423460999879,32.22944217200006],[-1.257515420999908,32.32084482800008],[-1.244131225999894,32.35691497800008],[-1.23415767399996,32.37461415600009],[-1.217982950999982,32.392623393000086],[-1.201704874999962,32.399858093000056],[-1.160260375999883,32.404948222000144],[-1.123156697999917,32.41794484500008],[-1.089980428999894,32.43944224100011],[-1.031999470999949,32.49440012700006],[-1.047502400999861,32.5170085660001],[-1.327020223999909,32.698909607000104],[-1.390530558999956,32.7187791960001],[-1.423345092999881,32.74239532500013],[-1.558789021999871,32.93364980100009],[-1.516362670999854,32.9594880170001],[-1.508869587999925,32.966309306000056],[-1.502978474999907,32.97462921200011],[-1.498844360999897,32.98400848500009],[-1.496518920999961,32.99429209500008],[-1.493366658999889,33.016151225000016],[-1.493056599999903,33.03948313400005],[-1.499516153999878,33.060205384000085],[-1.516362670999854,33.073977153000016],[-1.545508178999881,33.09183136000007],[-1.571398071999908,33.111985169000064],[-1.592068643999909,33.13660898900014],[-1.605607869999886,33.168028260000085],[-1.623591267999899,33.196605327000036],[-1.674234171999927,33.23797231100008],[-1.683380899999918,33.270838521000115],[-1.683225869999887,33.36923044900004],[-1.67283890799996,33.394603577000055],[-1.659144653999931,33.41977],[-1.640386107999859,33.47552887000011],[-1.625399942999877,33.494235738000015],[-1.612739216999927,33.52146921800011],[-1.617338418999879,33.55443878200006],[-1.662400268999932,33.64469167100009],[-1.67325232,33.656499736000086],[-1.69071895299993,33.667325949000144],[-1.725393838999935,33.67771291100007],[-1.740741739999919,33.68660125700006],[-1.746787881999865,33.702388408000076],[-1.742240355999911,33.717762147000144],[-1.732576863999896,33.727864889000074],[-1.720949666999928,33.73636566200008],[-1.710821084999878,33.74706268300011],[-1.703224650999914,33.76181630500011],[-1.702501179999928,33.772823385],[-1.713043172999988,33.80199473000004],[-1.722086547999936,33.8511648570001],[-1.718727579999921,33.89808705600003],[-1.672115437999878,34.05918833400011],[-1.669634968999901,34.07921295200006],[-1.672085147999951,34.092020705000095],[-1.674750935999981,34.105955506000015],[-1.746064412999942,34.29031117800011],[-1.771334187999912,34.33470123300006],[-1.80962642399993,34.372450867000026],[-1.702966267999955,34.47967946400007],[-1.714231729999909,34.48505381300003],[-1.750663614999922,34.494174703000084],[-1.871121377999941,34.59664906900013],[-1.862956502999907,34.61359893800005],[-1.810504923999872,34.68072662400007],[-1.786113646999951,34.725840149000135],[-1.773142862999919,34.73405670200009],[-1.769525512999848,34.741343079000046],[-1.787715616999975,34.756690979000034],[-1.892825479999942,34.81167470400007],[-1.926725218999934,34.83808136000005],[-1.979745238999954,34.86526316400003],[-1.993491170999988,34.87885406500001],[-1.998400430999908,34.892703349000065],[-1.999692341999975,34.906345927000075],[-2.003619750999945,34.9181798300001],[-2.016280476999981,34.9262413540001],[-2.061238972999888,34.92970367400005],[-2.094932006999954,34.94768707300002],[-2.126041218999916,34.971923320000116],[-2.163299926999912,34.994040833000014],[-2.193789021999919,35.00360097300012],[-2.211669067999878,35.0234447230001],[-2.22112585499994,35.049954733000106],[-2.222564256999931,35.08930084800008],[-2.200103318999936,35.09613678600002],[-2.196115688999953,35.09487539300011],[-2.192616339999858,35.09446849200009],[-2.189442511999914,35.093003648000035],[-2.186390753999916,35.08869049700013],[-2.15689042899993,35.10097890800009],[-2.122222459999961,35.09467194200005],[-2.086089647999927,35.08197663000007],[-2.052357550999915,35.0750186220001],[-1.9877009759999,35.08246491100007],[-1.964751756999902,35.0762393250001],[-1.956450975999928,35.0750186220001],[-1.949818488999938,35.07713450700001],[-1.932484503999973,35.08869049700013],[-1.838693813999953,35.1109072940001],[-1.812733527999882,35.12653229400007],[-1.804351365999906,35.128119208000015],[-1.774240688999896,35.127346096000075],[-1.761138475999928,35.12962474200006],[-1.745594855999911,35.13882070500003],[-1.712798631999902,35.17059967700007],[-1.648833787999905,35.18842194200005],[-1.63768469999988,35.194525458000044],[-1.629505988999881,35.21222565300005],[-1.510365363999938,35.29547760600008],[-1.490874803999873,35.300970770000106],[-1.395904100999928,35.309393622000044],[-1.369536912999934,35.31586334800005],[-1.364003058999913,35.31834544500009],[-1.358957485999895,35.3222110050001],[-1.332671678999873,35.34935130400001],[-1.313791469999955,35.3537458350001],[-1.294829881999931,35.364569403000075],[-1.278635219999984,35.37799713700008],[-1.267730272999898,35.39032623900002],[-1.2591853509999,35.410305080000086],[-1.247303839999944,35.45774974200012],[-1.237049933999913,35.47573476800005],[-1.225412563999896,35.49127838700005],[-1.190337693999908,35.56614817900004],[-1.183338995999947,35.57648346600004],[-1.171538865999878,35.581040757000096],[-1.148019985999923,35.582098700000046],[-1.14281165299991,35.58690013200004],[-1.117014126999891,35.6168887390001],[-1.106353318999936,35.62323639500002],[-1.082753058999913,35.63735586100006],[-1.052072719999927,35.6609561220001],[-1.040394660999908,35.67641836100012],[-1.032948370999947,35.682603257000096],[-0.996693488999938,35.68960195500006],[-0.977650519999941,35.699774481000105],[-0.961537238999881,35.71124909100007],[-0.946278449999909,35.71930573100008],[-0.922678188999953,35.725165106000134],[-0.910227016999926,35.724310614000046],[-0.904693162999933,35.71588776200008],[-0.899403449999852,35.71181875200003],[-0.887562628999888,35.71596914300005],[-0.849476691999911,35.734320380000014],[-0.825021938999953,35.768540757000096],[-0.801665818999879,35.773911851000065],[-0.793527798999946,35.770086981000134],[-0.78612219999988,35.76312897300005],[-0.777170376999919,35.756415106000105],[-0.764027472999885,35.75340403900009],[-0.754017706999889,35.75226471600006],[-0.734486456999917,35.747219143000024],[-0.723133917999945,35.74599844000002],[-0.711293097999885,35.7429873720001],[-0.705881313999924,35.735663153000104],[-0.701324022999898,35.72687409100004],[-0.692453579999949,35.71930573100008],[-0.682606574999909,35.71735260600005],[-0.644520636999943,35.71930573100008],[-0.626454230999911,35.72296784100004],[-0.60610917899993,35.730943101],[-0.589344855999911,35.74249909100013],[-0.577259894999912,35.770819403000075],[-0.56505286399991,35.772447007000096],[-0.551258917999917,35.76902903900008],[-0.540923631999902,35.76776764500008],[-0.530425584999932,35.77289459800008],[-0.523426886999857,35.779689846000025],[-0.477040167999888,35.85936107000009],[-0.476063605999911,35.870103257000096],[-0.478423631999874,35.87287018400005],[-0.480336066999939,35.87909577000002],[-0.480824347999913,35.88572825700007],[-0.479481574999937,35.89004140800009],[-0.473784959999932,35.89126211100009],[-0.468006964999887,35.888739325000074],[-0.462880011999886,35.885199286000095],[-0.459055141999954,35.88377513200004],[-0.44896399599989,35.8843447940001],[-0.428130662999905,35.88279857000006],[-0.418039516999954,35.88377513200004],[-0.376128709999932,35.90033600500009],[-0.348540818999936,35.907049872000044],[-0.336171027999882,35.90082428600007],[-0.3314509759999,35.889553127000084],[-0.320708787999877,35.88410065300005],[-0.309193488999938,35.88117096600013],[-0.301909959999932,35.87759023600005],[-0.298491990999906,35.86717357000006],[-0.304595506999902,35.853501695000034],[-0.301909959999932,35.84284088700011],[-0.285552537999905,35.828273830000086],[-0.259429490999935,35.81753164300005],[-0.188059048999975,35.805243231000105],[-0.145090298999918,35.79035065300005],[-0.123890753999916,35.786932684000135],[-0.113677537999877,35.78880442900001],[-0.083078579999949,35.79437897300002],[-0.0384822259999,35.813299872000044],[0.00294030000012,35.838039455000114],[0.034515821000127,35.86326732000006],[0.069956902000115,35.92182038000004],[0.080170118000069,35.947007554000095],[0.114024285000113,36.01019928600007],[0.12240644600007,36.033351955000114],[0.123789910000056,36.04458242400011],[0.127289259000065,36.05076732000009],[0.135590040000125,36.05560944200007],[0.14551842500012,36.05996328300006],[0.153981967000078,36.06500885600008],[0.20215905000012,36.10651276200008],[0.219493035000113,36.116522528000075],[0.28345787900011,36.134426174000026],[0.294444207000083,36.14077383000006],[0.299082879000082,36.14740631700002],[0.321055535000113,36.15888092700007],[0.329274936000104,36.16498444200005],[0.332774285000085,36.173814195],[0.337575717000078,36.19749583500004],[0.342295769000089,36.205959377000056],[0.360036655000101,36.21385325700004],[0.38445071700005,36.21796295800009],[0.428396030000073,36.21963125200011],[0.451345248000052,36.22321198100008],[0.46827233200014,36.23224518400007],[0.483164910000085,36.24359772300005],[0.556651238000086,36.284084377000084],[0.594574415000096,36.29315827000008],[0.611827019000117,36.30548737200013],[0.627207879000053,36.319240627000056],[0.644053582000055,36.32884349200012],[0.663259311000019,36.33258698100008],[0.740407748000052,36.33775462400006],[0.753265821000099,36.33860911700006],[0.768728061000104,36.34471263200006],[0.80225670700014,36.3635928410001],[0.864756707000083,36.3773867860001],[0.88054446700005,36.387152411000045],[0.890879754000139,36.39638906500011],[0.913828972000118,36.40912506700005],[0.925140821000099,36.41815827000005],[0.929535352000102,36.42593008000006],[0.932139519000089,36.43455638200006],[0.936289910000113,36.44358958500007],[0.945567254000082,36.452337958000044],[0.96257571700005,36.45815664300011],[1.007090691000144,36.466864325000074],[1.04476972700013,36.48688385600005],[1.116953972000118,36.4871279970001],[1.138845248000052,36.493394273000064],[1.17872155000012,36.51089101800011],[1.202647332000083,36.51439036700009],[1.24545332100007,36.51357656500008],[1.265472852000044,36.515326239000075],[1.288259311000076,36.52122630400001],[1.346690300000148,36.5449893250001],[1.367686394000089,36.547919012000136],[1.385996941000144,36.54515208500007],[1.429535352000073,36.53221263200007],[1.452810092000107,36.528021552000034],[1.476328972000147,36.528957424000026],[1.51742597700013,36.538723049000055],[1.700938347000061,36.5471865910001],[1.716563347000147,36.547919012000136],[1.726735873000109,36.549994208000044],[1.750173373000081,36.559149481000134],[1.761241082000112,36.56159088700008],[1.770030144000089,36.560492255],[1.791514519000117,36.55548737200007],[1.802907748000081,36.555365302],[1.857595248000109,36.56745026200011],[1.91382897200009,36.57021719000008],[1.960459832000112,36.56220123900002],[1.972829623000052,36.56159088700008],[2.059906446000099,36.57013580900007],[2.309825066000059,36.63051992400011],[2.329600457000083,36.63727448100005],[2.351573113000086,36.63833242400011],[2.373301629000082,36.633856512000136],[2.391856316000087,36.624253648000064],[2.398203972000118,36.61530182500013],[2.400157097000147,36.606187242000146],[2.404063347000147,36.59918854400007],[2.416026238000086,36.59634023600003],[2.426768425000091,36.59528229400007],[2.447276238000143,36.59056224200006],[2.457041863000086,36.58950429900011],[2.600759311000047,36.59634023600003],[2.632985873000081,36.60512929900008],[2.727549675000091,36.66522858300007],[2.792979363000142,36.69293854400007],[2.818695509000094,36.710882880000014],[2.84359785200013,36.740383205000086],[2.849864129000082,36.75405508000003],[2.875661655000016,36.77480703300003],[2.933116082000112,36.80857982],[2.977061394000145,36.81586334800002],[2.984873894000145,36.814968166000114],[3.014170769000145,36.81171295800007],[3.047862175000148,36.794989325000046],[3.073985222000118,36.77138906500002],[3.101817254000081,36.75189850500004],[3.140147332000112,36.74164459800011],[3.173269076000054,36.742621161000066],[3.179372592000021,36.74282461100003],[3.21045983200014,36.75739166900004],[3.221202019000145,36.771429755000014],[3.226084832000112,36.78620026200008],[3.227305535000141,36.812323309000135],[3.237803582000111,36.81305573100007],[3.30298912900011,36.7887637390001],[3.340505405000044,36.78070709800005],[3.460703972000118,36.77509186400004],[3.480479363000142,36.77724844000005],[3.519053582000112,36.78660716400008],[3.539805535000113,36.7887637390001],[3.55046634200005,36.79144928600007],[3.558116082000083,36.79767487200012],[3.564300977000045,36.804348049000076],[3.570567254000082,36.80857982],[3.580414259000122,36.80996328300009],[3.601817254000053,36.80809153900012],[3.612071160000085,36.80857982],[3.649668816000087,36.82396067900004],[3.709483269000145,36.87319570500006],[3.741872592000049,36.89118073100008],[3.827484571000127,36.912909247000066],[3.873871290000096,36.917222398000064],[3.912608269000145,36.91160716400006],[3.948252800000091,36.89329661700009],[3.964040561000047,36.89118073100008],[3.974864129000138,36.892279364000046],[3.996429884000037,36.89691803600007],[4.031423373000052,36.89777252800007],[4.039480014000077,36.89691803600007],[4.08545983200014,36.89207591400009],[4.10482832100007,36.88373444200002],[4.146494988000114,36.90180084800004],[4.159515821000099,36.90420156500008],[4.171560092000107,36.90216705900005],[4.197032097000118,36.893255927],[4.210459832000112,36.89118073100008],[4.222829623000052,36.894191799000076],[4.249278191000116,36.907863674000026],[4.261973504000082,36.91160716400006],[4.278575066000144,36.91046784100013],[4.306000196000099,36.900458075000046],[4.320323113000086,36.8980166690001],[4.440684441000116,36.91160716400006],[4.452972852000073,36.91006094000002],[4.46810957100007,36.905991929000066],[4.482432488000057,36.900458075000046],[4.491953972000061,36.894598700000095],[4.504079623000052,36.88930898600003],[4.536387566000087,36.88857656500008],[4.55054772200009,36.88373444200002],[4.581553582000112,36.894924221000025],[4.591481967000049,36.895249742000146],[4.622894727000073,36.89638906500008],[4.698008660000085,36.89118073100008],[4.76905358200014,36.8980166690001],[4.787119988000143,36.89541250200011],[4.949880405000101,36.83978913000007],[4.96827233200014,36.82566966400014],[4.973643425000091,36.818915106000105],[4.985687696000099,36.81708405200004],[4.999522332000112,36.81712474200012],[5.00928795700014,36.81606679900008],[5.016449415000096,36.810980536000045],[5.025238477000045,36.79865143400011],[5.029144727000045,36.794989325000046],[5.045909050000063,36.78851959800005],[5.065603061000104,36.7835147160001],[5.086192254000139,36.78082916900013],[5.104828321000127,36.7813174500001],[5.084808790000068,36.73261139500008],[5.090179884000122,36.71678294500006],[5.118418816000087,36.69936758000008],[5.235850457000112,36.65094635600008],[5.269053582000112,36.64411041900007],[5.30437259200005,36.64301178600002],[5.372406446000099,36.65094635600008],[5.428070509000122,36.66388580900007],[5.433848504000082,36.66522858300007],[5.464854363000114,36.66522858300007],[5.469574415000124,36.66771067900001],[5.48218834700009,36.680243231000105],[5.489105665000096,36.68512604400007],[5.52914472700013,36.69765859600008],[5.549001498000052,36.70970286700009],[5.562754754000053,36.74599844000008],[5.576182488000143,36.76137929900002],[5.593923373000052,36.773871161000045],[5.611989780000073,36.7813174500001],[5.655935092000078,36.79181549700007],[5.674571160000085,36.79962799700007],[5.710459832000083,36.825506903000075],[5.733734571000098,36.83234284100009],[5.758799675000091,36.83340078300006],[5.827810092000107,36.82176341400006],[5.868825717000021,36.82294342700007],[6.037119988000085,36.8535830750001],[6.197032097000061,36.90232982],[6.235687696000127,36.92121002800004],[6.25684655000012,36.945786851000065],[6.258555535000141,36.966782945],[6.254730665000125,36.983303127000084],[6.254405144000089,36.99896881700005],[6.266856316000116,37.017767645000106],[6.274424675000148,37.0242373720001],[6.314626498000051,37.04865143400005],[6.328868035000056,37.06191640800009],[6.338715040000095,37.06928131700007],[6.371592644000089,37.08348216400009],[6.415782097000147,37.0929629580001],[6.46241295700014,37.09393952000008],[6.502696160000141,37.08295319200002],[6.538584832000111,37.060370184000135],[6.544200066000116,37.058783270000106],[6.544688347000118,37.048570054000066],[6.547048373000081,37.04120514500008],[6.552256707000054,37.0366885440001],[6.561289910000084,37.03514232000006],[6.572764519000117,37.02777741100007],[6.583262566000086,36.98981354400007],[6.599457227000129,36.973089911000045],[6.614105665000068,36.97785065300013],[6.631602410000113,36.972398179000095],[6.651133660000084,36.96385325700007],[6.671153191000144,36.9594180360001],[6.822032097000117,36.95262278900006],[6.834808790000068,36.94912344000008],[6.852793816000116,36.940334377000106],[6.869639519000117,36.92918528900009],[6.880056186000104,36.918443101000086],[6.879649285000085,36.902085679000066],[6.909434441000116,36.893052476000065],[6.948578321000041,36.89004140800006],[6.97559655000009,36.89118073100008],[7.064463738000114,36.913316148000064],[7.092295769000089,36.92593008000006],[7.108083530000044,36.92031484600005],[7.133311394000089,36.915269273000035],[7.156993035000112,36.91469961100006],[7.167491082000083,36.92218659100009],[7.176442905000101,36.93187083500006],[7.218760613000113,36.96084219000008],[7.232920769000145,36.966864325000074],[7.239024285000113,36.9715029970001],[7.247080925000147,36.98232656500011],[7.254242384000094,36.994696356000134],[7.257334832000083,37.00413646000004],[7.255544467000107,37.01536692900006],[7.250498894000088,37.02313873900004],[7.21111087300008,37.05703359600011],[7.181651238000113,37.07672760600005],[7.181651238000113,37.08295319200002],[7.192718946000042,37.0842959660001],[7.212168816000144,37.08930084800005],[7.222666863000114,37.08978913000004],[7.232758009000093,37.087225653000104],[7.2513126960001,37.07859935100004],[7.260508660000141,37.07672760600005],[7.262705925000148,37.07599518400011],[7.266449415000095,37.07469310100004],[7.270681186000103,37.07103099200006],[7.27475019600007,37.06932200700007],[7.281016472000118,37.0730654970001],[7.288259311000047,37.08026764500005],[7.292653842000106,37.082505601],[7.297699415000068,37.08295319200002],[7.307302280000044,37.080145575000074],[7.325856967000051,37.07119375200003],[7.335948113000086,37.06928131700007],[7.344411655000044,37.07143789300008],[7.369965040000125,37.08295319200002],[7.3834741550001,37.08299388200001],[7.386241082000055,37.0820987000001],[7.386892123000109,37.078111070000034],[7.39405358200014,37.06928131700007],[7.39820397200009,37.05801015800009],[7.404633009000093,37.05158112200007],[7.418223504000053,37.048814195],[7.438324415000096,37.048570054000066],[7.447113477000072,37.04661692900004],[7.456065300000091,37.041978257000096],[7.472422722000118,37.05003489800003],[7.490244988000085,37.05499909100007],[7.526133660000085,37.03314850500004],[7.555918816000087,37.00787995000007],[7.588877800000148,36.98761627800007],[7.633555535000113,36.980536200000095],[7.643402540000038,36.98265208500004],[7.652191602000102,36.98623281500008],[7.661875847000061,36.98847077000008],[7.674489780000044,36.98676178600007],[7.685801629000138,36.98240794500009],[7.695974155000073,36.976996161000045],[7.704844597000117,36.970526434000135],[7.712738477000101,36.96320221600013],[7.760752800000091,36.966864325000074],[7.770762566000087,36.97011953300003],[7.789073113000142,36.98655833500001],[7.798594597000118,36.99359772300008],[7.791026238000087,36.973211981000105],[7.778575066000058,36.951117255000014],[7.774261915000067,36.93146393400008],[7.791188998000051,36.918443101000086],[7.773448113000143,36.889960028000075],[7.773773634000066,36.88975657800012],[7.809906446000099,36.86815013200004],[7.866465691000115,36.85439687700011],[7.90845787900011,36.849554755000035],[8.049978061000045,36.87759023600003],[8.073008660000113,36.88739655200007],[8.093028191000087,36.90180084800004],[8.233164910000056,36.9580752620001],[8.251149936000104,36.94867584800008],[8.268728061000047,36.93374258000006],[8.288096550000148,36.92593008000006],[8.333262566000087,36.9278018250001],[8.355967644000145,36.92593008000006],[8.374034050000148,36.918443101000086],[8.388845248000052,36.92324453300006],[8.401621941000087,36.91860586100006],[8.41439863400012,36.910223700000074],[8.428721550000091,36.90420156500008],[8.463226759000122,36.9015567080001],[8.497569207000083,36.90420156500008],[8.601898634000122,36.93935781500005],[8.602510428642177,36.939510763470565]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Egypt","sov_a3":"EGY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Egypt","adm0_a3":"EGY","geou_dif":0,"geounit":"Egypt","gu_a3":"EGY","su_dif":0,"subunit":"Egypt","su_a3":"EGY","brk_diff":0,"name":"Egypt","name_long":"Egypt","brk_a3":"EGY","brk_name":"Egypt","brk_group":null,"abbrev":"Egypt","postal":"EG","formal_en":"Arab Republic of Egypt","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Egypt, Arab Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":7,"mapcolor13":2,"pop_est":83082869,"gdp_md_est":443700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"EG","iso_a2":"EG","iso_a3":"EGY","iso_n3":"818","un_a3":"818","wb_a2":"EG","wb_a3":"EGY","woe_id":23424802,"woe_id_eh":23424802,"woe_note":"Exact WOE match as country","adm0_a3_is":"EGY","adm0_a3_us":"EGY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"EGY.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[34.00294030000012,26.731634833],[34.00359134200008,26.70819733300011],[33.9895939460001,26.72028229400003],[33.982758009000094,26.734076239000146],[33.955088738000114,26.79002513199999],[33.9705509770001,26.790676174000126],[33.970632358000074,26.790635484000134],[33.97559655000006,26.79002513199999],[33.99545332100015,26.751695054000052],[34.00294030000012,26.731634833]]],[[[34.00660241000017,27.509466864],[34.02849368600019,27.50202057500003],[34.03492272200012,27.48501211100016],[34.0384220710001,27.466620184000117],[34.05128014400023,27.454820054000052],[34.05128014400023,27.448635158000073],[34.04420006600017,27.449611721000153],[34.031097852000094,27.451483466000028],[34.0130314460001,27.469956773000046],[34.007090691000165,27.476060289000127],[33.985850457000055,27.482123114000117],[33.976084832000225,27.487372137000122],[33.96656334700012,27.497626044000057],[33.9563908210001,27.50438060100008],[33.956309441000116,27.50438060100008],[33.933767123000024,27.49469635600012],[33.92448978000019,27.50141022300006],[33.91749108200011,27.513169664000046],[33.91358483200011,27.523708401000093],[33.91358483200011,27.523749091000084],[33.919200066000116,27.530218817],[33.92579186300006,27.53432851800015],[33.93311608200011,27.536363023000074],[33.94141686300017,27.53676992400007],[33.96412194100011,27.534125067],[33.971934441000116,27.529649156000048],[33.98072350400017,27.524603583],[33.98878014400012,27.518255927000055],[33.99390709700012,27.51430898600007],[34.00660241000017,27.509466864]]],[[[34.73216196500019,27.91894302300012],[34.70469477600013,27.90836804700008],[34.681039400000174,27.915173524000167],[34.661785763000154,27.930218099000072],[34.68177332800022,27.95870324499999],[34.73188201100001,27.95714111400015],[34.73216196500019,27.91894302300012]]],[[[34.54420006600017,27.99603913],[34.51823978000007,27.991359768000066],[34.50684655000012,27.986232815000065],[34.503184441000165,27.97557200700014],[34.50790449300004,27.971177476000047],[34.511892123000024,27.967474677000023],[34.528819207000225,27.965887762000147],[34.5579533210001,27.970160223000093],[34.57056725400017,27.97410716400016],[34.57276451900022,27.972154039000127],[34.57488040500007,27.972113348000118],[34.579600457000055,27.96552155200005],[34.58399498800023,27.957953192],[34.58513431100019,27.955145575000145],[34.58521569100017,27.95506419500016],[34.60132897200012,27.94261302300005],[34.6204533210001,27.92780182500009],[34.6204533210001,27.92035553600003],[34.58220462300008,27.917914130000085],[34.54721113400015,27.91966380400008],[34.51807701900012,27.930405992000157],[34.49813886800021,27.953111070000134],[34.49634850400011,27.955145575000145],[34.49781334700012,27.968736070000105],[34.49439537900011,27.98822663],[34.489512566000116,27.99603913],[34.493011915000096,28.000799872000087],[34.49439537900011,28.001776434000146],[34.494476759000094,28.001654364],[34.49634850400011,27.99603913],[34.49642988400009,27.996201890000137],[34.500010613000114,28.00381094],[34.504893425000056,28.00991445500007],[34.51075280000012,28.014146226000104],[34.517344597000175,28.016546942000147],[34.51742597700016,28.016506252000152],[34.53484134200002,28.00824616100006],[34.54053795700011,28.003119208000058],[34.54420006600017,27.99603913]]],[[[32.98698978000007,31.083644924000154],[32.98926842500012,31.073431708000115],[32.978526238000114,31.081691799],[32.97510826900012,31.08649323100009],[32.96973717500012,31.08657461100007],[32.97706139400023,31.091253973000097],[32.98308353000007,31.08991120000009],[32.98698978000007,31.083644924000154]]],[[[33.432953321000156,31.17206452000009],[33.4759220710001,31.141750393],[33.45435631600017,31.154689846],[33.2986759770001,31.21279531500006],[33.26978600400011,31.21678294500013],[33.30111738400015,31.215887762000037],[33.35254967500006,31.19489166900011],[33.37598717500012,31.18952057500014],[33.406016472000175,31.184475002000013],[33.432953321000156,31.17206452000009]]],[[[33.104746941000165,31.24030182500009],[33.26246178500017,31.223618882000054],[33.25611412900017,31.219305731000148],[33.2435001960001,31.219305731000148],[33.21257571700002,31.224310614],[33.182871941000116,31.228013414000046],[33.15308678500011,31.23175690300017],[33.1189884770001,31.223618882000054],[33.10254967500011,31.22675202000012],[33.07642662900011,31.21873607],[32.95590254000015,31.163153387000065],[32.93474368600002,31.147935289000156],[32.94646243600013,31.163275458000115],[32.96973717500012,31.173041083000054],[32.98910566500015,31.182074286000056],[33.00147545700011,31.188299872000027],[33.01482181100019,31.19672272300009],[33.06690514400023,31.217433986000074],[33.07862389400023,31.22711823100006],[33.104746941000165,31.24030182500009]]],[[[25.3020939460001,31.506537177000084],[25.322764519000117,31.506415106000116],[25.368500196000127,31.512274481000144],[25.378103061000104,31.509711005000145],[25.389659050000148,31.505113023000103],[25.40186608200011,31.503159898000074],[25.42017662900008,31.512193101000076],[25.44483483200008,31.517645575000113],[25.473887566000144,31.52049388200005],[25.63648522200012,31.56069570500013],[25.8240666020001,31.614935614],[25.868825717000046,31.62091705900012],[25.966807488000086,31.616603908000016],[26.362152540000096,31.52191803600012],[26.65064537900011,31.48875560099999],[26.667246941000087,31.480943101000104],[26.683116082000108,31.476223049000097],[26.73292076900009,31.47923411700019],[26.753184441000087,31.477484442],[26.824717644000117,31.447821356000144],[26.865733269000145,31.436835028000115],[26.91163170700011,31.436509507],[26.947927280000016,31.448228257000082],[26.965505405000044,31.449652411000145],[26.982595248000106,31.43992747599999],[26.996429884000094,31.428697007],[27.006521030000073,31.425034898000046],[27.01579837300011,31.42446523600007],[27.027028842000107,31.422267971000093],[27.054372592000078,31.408636786000148],[27.117360873000106,31.39044830900006],[27.18506920700014,31.38434479400014],[27.209971550000088,31.378119208],[27.226247592000107,31.367661851000108],[27.232432488000086,31.372259833000058],[27.242035352000073,31.377346096000064],[27.246104363000114,31.38129303600006],[27.25798587300008,31.38003164300015],[27.32064863400006,31.38100820500013],[27.32748457100007,31.379217841000138],[27.334808790000096,31.3751488300001],[27.342295769000145,31.36823151200018],[27.341970248000024,31.364650783000016],[27.340098504000053,31.360988674000065],[27.342295769000145,31.35398997599999],[27.34978274800011,31.34129466400013],[27.354340040000064,31.335760809000092],[27.359385613000086,31.33348216400013],[27.36231530000012,31.330511786000116],[27.36378014400009,31.315497137000094],[27.366465691000144,31.309637762000065],[27.373545769000117,31.298407294000143],[27.38347415500004,31.268500067000062],[27.39356530000009,31.254706122000144],[27.41749108200014,31.23720937700001],[27.44629967500009,31.223211981000148],[27.47803795700014,31.21393463700009],[27.54053795700008,31.20575592699999],[27.565440300000034,31.196966864000114],[27.587738477000045,31.19310130400011],[27.609873894000117,31.203192450000174],[27.66032962300005,31.18024323100009],[27.719493035000056,31.189276434000092],[27.83570397200006,31.237941799000126],[27.8528751960001,31.24030182500009],[27.863291863000086,31.233547268000148],[27.86850019600007,31.219387111000128],[27.86988366000014,31.199774481000176],[27.872731967000103,31.191595770000063],[27.89031009200005,31.155422268000123],[27.89429772200012,31.12262604400003],[27.897146030000044,31.114406643000123],[27.926931186000047,31.0990257830001],[27.975108269000117,31.093085028000143],[28.154551629000082,31.093329169000114],[28.16627037900008,31.090765692],[28.175303582000083,31.084906317000062],[28.18327884200005,31.07831452000009],[28.191416863000143,31.073431708000115],[28.203868035000053,31.07050202000009],[28.233571811000104,31.073431708000115],[28.256358269000113,31.07127513200011],[28.299082879000135,31.06195709800006],[28.318369988000054,31.05980052300008],[28.338633660000085,31.06411367400007],[28.382090691000116,31.082749742000047],[28.404958530000044,31.08649323100009],[28.424327019000145,31.083441473],[28.442230665000096,31.07640208500011],[28.457774285000113,31.066839911000145],[28.469737175000034,31.056057033000126],[28.478526238000114,31.051825262000122],[28.514170769000145,31.052313544000086],[28.527598504000135,31.050116278000118],[28.538259311000072,31.046535549000126],[28.555023634000094,31.038723049000126],[28.732676629000082,30.984076239],[28.76823978000007,30.966701565],[28.787771030000048,30.959662177000137],[28.812022332000108,30.956773179000113],[28.81804446700005,30.951157945000105],[28.82496178500011,30.924465236000078],[28.82886803500011,30.915187893000127],[28.835703972000143,30.910793361000128],[28.85434004000012,30.905951239000057],[29.028086785000113,30.827053127000124],[29.18921959700012,30.83323802300002],[29.21892337300008,30.838039455000096],[29.35572350400011,30.895086981000173],[29.503265821000156,30.956691799000126],[29.556325717000078,30.990912177000112],[29.598073764000134,31.00950755400011],[29.60377037900011,31.012030341000024],[29.611013217000135,31.021918036000116],[29.618662957000225,31.029282945000137],[29.765961134000147,31.12156810100008],[29.781504754000164,31.147935289000156],[29.80933678500011,31.142320054000077],[29.838389519000117,31.154120184000032],[29.8846134770001,31.18952057500014],[29.875661655000183,31.200873114000114],[29.87183678500017,31.200140692000087],[29.863536004000164,31.19635651200015],[29.869151238000054,31.20648834800012],[29.876963738000057,31.213568427000084],[29.884776238000057,31.213771877000127],[29.890879754000167,31.203192450000174],[29.89820397200017,31.203192450000174],[29.90967858200011,31.214097398000046],[29.95622806100002,31.250067450000028],[29.969981316000116,31.25779857000005],[29.983164910000113,31.263251044000086],[30.00310306100019,31.287095445000077],[30.01124108200011,31.29254791900011],[30.02507571700019,31.294867255000057],[30.032969597000175,31.300360419000086],[30.039561394000234,31.307114976000136],[30.04908287900011,31.313055731000148],[30.045909050000063,31.314154364],[30.043223504000114,31.314154364],[30.04167728000007,31.315497137000094],[30.04224694100012,31.32050202000012],[30.069590691000116,31.33348216400013],[30.066661004000167,31.30487702000015],[30.094899936000015,31.285589911000113],[30.098480665000096,31.28465403900013],[30.135996941000112,31.274847723],[30.172618035000166,31.271429755],[30.164398634000154,31.266994533000016],[30.15308678500017,31.25584544500002],[30.144704623000194,31.25161367400007],[30.144053582000055,31.246568101000054],[30.14551842500012,31.245103257],[30.148610873000194,31.245062567],[30.15211022200012,31.2441266950001],[30.140147332000055,31.237250067],[30.14372806100002,31.22947825699999],[30.15463300900009,31.222154039000188],[30.165212436000076,31.21678294500013],[30.20679772200012,31.237941799000126],[30.201670769000227,31.22650788],[30.20720462300008,31.22089264500009],[30.215830925000066,31.219387111000128],[30.220469597000175,31.220200914000042],[30.224375847000175,31.226874091000113],[30.254567905000187,31.25161367400007],[30.257334832000222,31.246812242000193],[30.258067254000167,31.24640534100008],[30.261403842000192,31.2441266950001],[30.263845248000024,31.249904690000065],[30.265961134000147,31.25324127800009],[30.267751498000024,31.25731028900007],[30.26880944100017,31.265285549000012],[30.27507571700002,31.265285549000012],[30.274587436000072,31.2545433610001],[30.27662194100017,31.24640534100008],[30.28142337300008,31.24091217700006],[30.288747592000078,31.237941799000126],[30.292735222000175,31.244574286],[30.302989129000164,31.271429755],[30.287608269000234,31.278225002000013],[30.273448113000114,31.275295315],[30.258636915000153,31.268866278000175],[30.240896030000073,31.265285549000012],[30.240896030000073,31.271429755],[30.24398847700016,31.271918036000088],[30.251312696000156,31.27106354400017],[30.254567905000187,31.271429755],[30.254567905000187,31.278265692],[30.238454623000194,31.27399323100009],[30.179453972000175,31.271429755],[30.179453972000175,31.278265692],[30.216563347000175,31.286444403000115],[30.25171959700012,31.30341217699999],[30.31283613400009,31.350572007000082],[30.334483269000117,31.38100820500013],[30.348399285000166,31.421332098],[30.352386915000153,31.46320221600011],[30.34392337300019,31.497992255000053],[30.35075931100002,31.497992255000053],[30.35572350400017,31.47882721600008],[30.364593946000102,31.460109768000123],[30.378428582000225,31.44668203300013],[30.398610873000077,31.443345445000105],[30.370616082000225,31.461615302000084],[30.35572350400017,31.491115627000156],[30.362152540000093,31.508734442000062],[30.398610873000077,31.491156317000144],[30.425629102000098,31.47361888199999],[30.4563908210001,31.46271393400012],[30.49252363400009,31.45921458500014],[30.535817905000187,31.463853257000054],[30.67652428500011,31.49616120000017],[30.973887566000112,31.586737372000027],[30.973887566000112,31.579901434000092],[30.958750847000115,31.578070380000113],[30.866384311000186,31.54828522300012],[30.78907311300011,31.51032135600009],[30.736094597000115,31.488714911],[30.693369988000228,31.463853257000054],[30.687754754000107,31.461615302000084],[30.67408287900011,31.459662177000112],[30.666026238000057,31.457017320000045],[30.628103061000076,31.434312242000185],[30.610687696000156,31.429144598000097],[30.570974155000073,31.426581122000087],[30.562347852000155,31.422267971000093],[30.557871941000116,31.422186591000113],[30.54265384200013,31.40241120000017],[30.54265384200013,31.394964911],[30.56324303500017,31.390204169000114],[30.57032311300011,31.39008209800012],[30.576670769000227,31.394964911],[30.583506707000055,31.394964911],[30.598643425000063,31.387355861000156],[30.626719597000175,31.388657945000077],[30.65381920700011,31.395819403000086],[30.666026238000057,31.405503648000074],[30.67505944100017,31.421576239000142],[30.69507897200012,31.416896877000124],[30.715993686000186,31.402085679000052],[30.727549675000116,31.388128973000093],[30.734385613000224,31.388128973000093],[30.74073326900006,31.405503648000074],[30.756195509000094,31.423000393],[30.774668816000116,31.436835028000115],[30.78956139400006,31.443345445000105],[30.79851321700019,31.446478583000086],[30.80958092500006,31.442084052],[30.822601759000147,31.434719143],[30.83741295700011,31.429144598000097],[30.846853061000132,31.430161851000047],[30.85971113400015,31.43333567900011],[30.873708530000187,31.434515692000144],[30.88575280000012,31.429144598000097],[30.882660352000098,31.42812734600012],[30.879893425000063,31.428168036000116],[30.87842858200011,31.42698802299999],[30.87891686300011,31.422267971000093],[30.892425977000162,31.419094143000038],[30.909434441000112,31.423814195000134],[30.926442905000187,31.43305084800009],[30.939707879000107,31.443345445000105],[30.93726647200017,31.44440338700015],[30.93482506600017,31.444240627000095],[30.933278842000135,31.44513580900009],[30.933604363000228,31.449611721000153],[30.937022332000222,31.451727606000148],[30.937510613000228,31.452622789000074],[30.93767337300019,31.45380280199999],[30.939707879000107,31.457017320000045],[30.9739689460001,31.444077867000132],[30.98072350400011,31.436509507],[30.990000847000175,31.44326406500012],[30.996918165000096,31.451117255000028],[31.008067254000107,31.471340236000046],[31.002207879000167,31.479641018],[31.00570722700016,31.486232815000093],[31.021739129000164,31.497992255000053],[31.02466881600017,31.504055080000157],[31.02361087300019,31.50918203300007],[31.023285352000098,31.513820705000096],[31.029144727000105,31.518500067000033],[31.03492272200017,31.51968008000013],[31.071299675000063,31.517320054],[31.080739780000187,31.51422760600009],[31.09742272200012,31.50482819200009],[31.100108269000117,31.501044012000147],[31.09978274800019,31.496405341000028],[31.101573113000054,31.492499091000028],[31.111094597000175,31.491156317000144],[31.119151238000118,31.49310944200009],[31.125254754000114,31.49778880400011],[31.12924238400015,31.504461981000144],[31.111094597000175,31.512274481000144],[31.11752363400009,31.516017971000093],[31.123545769000057,31.51788971600014],[31.130381707000115,31.516994533000158],[31.111094597000175,31.53974030199999],[31.070811394000117,31.56537506700006],[31.023203972000115,31.582993882],[30.97803795700017,31.58429596600008],[30.98755944100017,31.58893463700012],[31.01238040500013,31.596909898000074],[31.09742272200012,31.607896226000108],[31.12867272200012,31.604925848],[31.22095787900011,31.579901434000092],[31.349945509000094,31.529649156000133],[31.378591342000078,31.518500067000033],[31.41960696700008,31.491156317000144],[31.523692254000167,31.449652411000145],[31.556813998000194,31.443345445000105],[31.5716251960001,31.44375234600001],[31.59742272200012,31.44448476800012],[31.748301629000107,31.481594143000148],[31.837901238000057,31.525336005000113],[31.8743595710001,31.53558991100006],[31.912933790000096,31.53489817900011],[31.944834832000225,31.52094147300015],[31.95915774800019,31.494330145],[31.96420332100016,31.482407945000077],[31.995778842000018,31.44574616100014],[32.00904381600017,31.417181708000054],[32.02491295700011,31.400051174000122],[32.05697675900015,31.3751488300001],[32.06755618600013,31.37107982000013],[32.09197024800008,31.36640045800011],[32.09376061300023,31.36566803600009],[32.10425866000011,31.36147695500016],[32.12916100400017,31.33738841400013],[32.13526451900023,31.33348216400013],[32.149668816000116,31.327785549000154],[32.189463738000114,31.300767320000105],[32.19955488400009,31.295070705000015],[32.16895592500006,31.30072663000011],[32.07007897200012,31.35398997599999],[32.07569420700022,31.353501695000016],[32.080088738000114,31.35398997599999],[32.08277428500011,31.352769273000078],[32.09058678500017,31.34715403900016],[32.08814537900017,31.354437567000094],[32.083506707000225,31.358832098000065],[32.07650800900015,31.360907294000086],[32.0560001960001,31.362860419000025],[32.05144290500007,31.366441148000106],[32.04883873800023,31.37099844000015],[32.04395592500006,31.3751488300001],[32.01734459700012,31.38751862200003],[32.00660241000011,31.395331122000115],[32.00245201900006,31.394964911],[31.994965040000093,31.394964911],[31.99195397200012,31.408514716000166],[31.98568769600016,31.420355536000116],[31.97754967500006,31.429877020000117],[31.968272332000108,31.436509507],[31.981293165000096,31.436509507],[31.993500196000152,31.437811591000084],[31.943125847000122,31.49164459800012],[31.932383660000113,31.50775788],[31.917979363000224,31.523993231000034],[31.906586134000094,31.529608466000138],[31.906260613000224,31.525336005000113],[31.8894962900001,31.532049872000172],[31.882985873000028,31.528509833],[31.878916863000054,31.518500067000033],[31.865244988000228,31.525336005000113],[31.86500084700017,31.52212148600007],[31.865733269000234,31.515326239000142],[31.865244988000228,31.512274481000144],[31.861664259000147,31.514349677000084],[31.85474694100017,31.51650625200007],[31.850922071000156,31.518500067000033],[31.851328972000175,31.510646877000124],[31.849457227000098,31.505072333000115],[31.84473717500006,31.497992255000053],[31.865244988000228,31.497992255000053],[31.859711134000094,31.48688385600003],[31.875010613000054,31.463324286000084],[31.872080925000063,31.449611721000153],[31.878916863000054,31.449611721000153],[31.878916863000054,31.443345445000105],[31.872080925000063,31.443345445000105],[31.874278191000116,31.438910223000118],[31.877452019000113,31.434149481000034],[31.878916863000054,31.429144598000097],[31.872080925000063,31.429144598000097],[31.868662957000225,31.441351630000053],[31.862071160000166,31.45058828300013],[31.85189863400015,31.45612213700006],[31.837901238000057,31.457017320000045],[31.841644727000105,31.464504299000012],[31.83765709700012,31.465480861000074],[31.830414259000094,31.458807684000035],[31.824229363000224,31.443345445000105],[31.830414259000094,31.442572333000086],[31.83375084700012,31.443793036],[31.837901238000057,31.449611721000153],[31.844981316000116,31.44481028900016],[31.85059655000012,31.442938544000086],[31.858409050000123,31.443345445000105],[31.858409050000123,31.436509507],[31.850922071000156,31.436509507],[31.850922071000156,31.429144598000097],[31.854828321000156,31.423163153000175],[31.860606316000116,31.419012762000033],[31.868418816000112,31.41657135600009],[31.878916863000054,31.416083075000117],[31.871836785000113,31.40981679900007],[31.861664259000147,31.407619533000073],[31.851735873000077,31.4096540390001],[31.84473717500006,31.416083075000117],[31.837901238000057,31.416083075000117],[31.838552280000126,31.41083405200011],[31.836680535000166,31.4096540390001],[31.833669467000075,31.40981679900007],[31.830414259000094,31.408636786000148],[31.83497155000006,31.405747789000106],[31.838552280000126,31.402492580000153],[31.84473717500006,31.394964911],[31.83073978000002,31.379787502000013],[31.82789147200018,31.368353583000058],[31.836924675000123,31.361883856000148],[31.858409050000123,31.36147695500016],[31.858409050000123,31.35398997599999],[31.8450626960001,31.35618724200016],[31.834157748000024,31.359930731000116],[31.82504316500015,31.360663153000033],[31.81674238400015,31.35398997599999],[31.81055748800011,31.35398997599999],[31.80388431100002,31.360052802000084],[31.79721113400009,31.359523830000015],[31.792246941000116,31.353583075000174],[31.790212436000186,31.343451239000117],[31.794281446000156,31.338446356000176],[31.801280144000227,31.33486562700001],[31.80274498800011,31.331284898000135],[31.790212436000186,31.326646226000104],[31.790212436000186,31.32050202000012],[31.795909050000063,31.310980536000145],[31.788910352000098,31.307440497000144],[31.777517123000024,31.304999091000028],[31.76905358200011,31.298773505000057],[31.766937696000095,31.28465403900013],[31.77320397200012,31.27586497600008],[31.784190300000116,31.27338288000014],[31.794932488000118,31.277696031000133],[31.79639733200005,31.278265692],[31.794444207000225,31.280015367000104],[31.793142123000134,31.280462958],[31.791840040000096,31.281439520000063],[31.790212436000186,31.285101630000113],[31.804372592000025,31.279974677000112],[31.811208530000073,31.278713283000016],[31.820567254000167,31.278265692],[31.828623894000117,31.274115302000084],[31.83025149800002,31.264878648000106],[31.830332879000107,31.255764065000037],[31.834157748000024,31.25161367400007],[31.845388217000018,31.24896881700009],[31.861013217000135,31.24237702000003],[31.875987175000063,31.23330312700001],[31.88575280000012,31.223618882000054],[31.893402540000093,31.23993561400009],[31.898610873000194,31.24664948100003],[31.906260613000224,31.25161367400007],[31.90211022200012,31.242336330000043],[31.900645379000167,31.236070054000077],[31.902028842000018,31.230617580000125],[31.906260613000224,31.223618882000054],[31.89258873800011,31.223618882000054],[31.89258873800011,31.21678294500013],[31.906260613000224,31.21678294500013],[31.903005405000183,31.214585679000052],[31.90015709700017,31.21303945500001],[31.898448113000228,31.209906317000115],[31.899424675000116,31.203192450000174],[31.90414472700016,31.203843492000132],[31.906911655000183,31.20563385600012],[31.90919030000006,31.20807526200015],[31.912933790000096,31.21063873900006],[31.914235873000194,31.208970445000045],[31.913910352000155,31.20648834800012],[31.91504967500012,31.204250393000123],[31.9197697270001,31.203192450000174],[31.9197697270001,31.21063873900006],[31.926605665000153,31.21063873900006],[31.92164147200017,31.196478583000143],[31.926442905000187,31.18699778900013],[31.934743686000072,31.18756745000009],[31.940277540000093,31.203192450000174],[31.951914910000166,31.204575914000156],[31.96753991000017,31.218817450000145],[31.986582879000167,31.23029205900012],[32.00928795700011,31.223618882000054],[31.994965040000093,31.223618882000054],[31.994965040000093,31.21678294500013],[32.00928795700011,31.21063873900006],[32.01197350400017,31.21478913],[32.018239780000016,31.21906159100011],[32.0227970710001,31.223618882000054],[32.03711998800017,31.21678294500013],[32.03711998800017,31.21063873900006],[32.03296959700012,31.206203518000095],[32.031260613000114,31.20286692900005],[32.029633009000094,31.18952057500014],[32.04078209700012,31.193915106000034],[32.04395592500006,31.19635651200015],[32.042328321000156,31.187933661000113],[32.0403751960001,31.182318427000112],[32.03679446700002,31.17861562700007],[32.029633009000094,31.17584870000012],[32.029633009000094,31.169623114000142],[32.036387566000116,31.16107819200012],[32.03687584700011,31.150295315000122],[32.01612389400012,31.134914455000068],[32.01612389400012,31.128078518000063],[32.026866082000225,31.127671617000075],[32.035166863000114,31.129706122000083],[32.04102623800017,31.134263414000134],[32.04395592500006,31.141750393],[32.050140821000156,31.141750393],[32.05144290500007,31.131170966000138],[32.05233808700015,31.12877024900011],[32.0545353520001,31.12299225500014],[32.06055748800022,31.11737702000015],[32.07007897200012,31.114406643000123],[32.07007897200012,31.10691966400016],[32.0599064460001,31.10464101800009],[32.0525822270001,31.100775458000086],[32.04761803500011,31.09487539300015],[32.04395592500006,31.08649323100009],[32.049001498000194,31.08454010600003],[32.05697675900015,31.079657294000167],[32.06657962300002,31.08494700700005],[32.075531446000156,31.086371161000116],[32.083750847000175,31.084418036000056],[32.09058678500017,31.079657294000167],[32.09058678500017,31.073431708000115],[32.083750847000175,31.073431708000115],[32.083750847000175,31.06598541900003],[32.09376061300023,31.058539130000057],[32.10645592500012,31.05337148600016],[32.119802280000016,31.05292389500006],[32.13209069100017,31.05980052300008],[32.13209069100017,31.06598541900003],[32.11744225400016,31.06631094000006],[32.107432488000114,31.072821356000144],[32.101247592000135,31.082749742000047],[32.097992384000094,31.093329169000114],[32.11296634200019,31.090562242000047],[32.13314863400015,31.081732489],[32.14258873800023,31.08026764500012],[32.1463322270001,31.079657294000167],[32.13835696700002,31.093329169000114],[32.15430748800022,31.09381745000009],[32.159434441000165,31.093329169000114],[32.159434441000165,31.100775458000086],[32.15495853000019,31.101752020000063],[32.15406334700012,31.102525132000082],[32.15430748800022,31.103989976000136],[32.15284264400006,31.10659414300012],[32.15430748800022,31.107733466000166],[32.16627037900017,31.114406643000123],[32.16684004000015,31.108343817000115],[32.16968834700017,31.107123114000114],[32.17416425900014,31.107570705000015],[32.17994225400011,31.10691966400016],[32.17603600400011,31.11782461100013],[32.18384850400011,31.12494538],[32.19483483200005,31.12579987200009],[32.20573978000007,31.109198309000035],[32.218516472000175,31.10521067900005],[32.234141472000175,31.10488515800013],[32.248220248000194,31.10691966400016],[32.27222741000017,31.118882554],[32.28345787900017,31.13654205900009],[32.280528191000116,31.15497467700014],[32.26246178500011,31.169623114000142],[32.286468946000156,31.170355536000088],[32.28736412900017,31.17015208500011],[32.28980553500017,31.169623114000142],[32.29476972700016,31.199367580000068],[32.29509524800008,31.213364976000133],[32.28980553500017,31.230454820000077],[32.27295983200011,31.248846747000115],[32.27051842500006,31.25755442900002],[32.282969597000175,31.265285549000012],[32.26791425900015,31.27265045800003],[32.24675540500007,31.279242255000085],[32.226328972000175,31.282049872000027],[32.214121941000116,31.278265692],[32.20704186300023,31.295070705000015],[32.21949303500017,31.29376862200003],[32.2326766290001,31.292873440000122],[32.25660241000017,31.28880442900008],[32.30046634200013,31.281439520000063],[32.3138126960001,31.272691148000018],[32.320078972000175,31.272691148000018],[32.331390821000156,31.271429755],[32.3338322270001,31.254706122000144],[32.34424889400006,31.241888739000117],[32.35914147200012,31.23346588700018],[32.38990319100011,31.22650788],[32.40137780000006,31.217108466000138],[32.42017662900011,31.19635651200015],[32.462657097000175,31.161037502000124],[32.48121178500017,31.148871161000056],[32.50953209700012,31.10691966400016],[32.53581790500007,31.08661530200005],[32.565684441000116,31.07054271000008],[32.5997013680001,31.06150950700008],[32.60157311300023,31.060980536],[32.64551842500006,31.05980052300008],[32.68751061300023,31.064439194999988],[32.76197350400011,31.081203518],[32.850759311000076,31.118801174000012],[32.868011915000096,31.130275783000155],[32.90919030000006,31.148179429000106],[32.92042076900023,31.155422268000123],[32.927256707000055,31.155422268000123],[32.927256707000055,31.147935289000156],[32.89535566500015,31.13739655200011],[32.83961022200012,31.10122304900007],[32.807139519000174,31.093329169000114],[32.75245201900012,31.071356512000094],[32.66651451900012,31.052313544000086],[32.71501712300008,31.052313544000086],[32.71501712300008,31.045558986000156],[32.70069420700011,31.038723049000126],[32.731293165000096,31.038763739000114],[32.74284915500007,31.042629299000126],[32.749196811000076,31.052313544000086],[32.755381707000225,31.052313544000086],[32.75619550900014,31.046535549000126],[32.75945071700019,31.045599677000055],[32.763845248000074,31.046332098000093],[32.76954186300017,31.045558986000156],[32.83106530000012,31.079657294000167],[32.88282311300023,31.093573309000146],[32.89307701900006,31.100775458000086],[32.89926191500015,31.100775458000086],[32.903493686000076,31.09544505400011],[32.917735222000175,31.092230536000056],[32.91439863400014,31.087307033000098],[32.90674889400012,31.08649323100009],[32.90674889400012,31.079657294000167],[32.91724694100017,31.082831122000034],[32.94092858200011,31.093329169000114],[32.94092858200011,31.100775458000086],[32.913584832000225,31.100775458000086],[32.913584832000225,31.10691966400016],[32.9270939460001,31.111802476000133],[32.94402103000019,31.10789622600014],[32.95948326900012,31.098456122000027],[32.96876061300017,31.08649323100009],[32.97120201900012,31.080877997000087],[32.97331790500018,31.07103099200016],[32.97510826900012,31.06598541900003],[32.961273634000094,31.06598541900003],[32.994476759000094,31.055568752000127],[33.009938998000024,31.056301174000065],[33.023448113000114,31.06598541900003],[33.023448113000114,31.073431708000115],[33.01392662900011,31.078192450000117],[33.0091251960001,31.079657294000167],[33.0091251960001,31.08649323100009],[33.04786217500006,31.0951195330001],[33.05746504000015,31.100775458000086],[33.052500847000175,31.108303127000127],[33.05469811300006,31.11554596600017],[33.060069207000225,31.123928127000127],[33.06430097700016,31.134914455000068],[33.05746504000015,31.134914455000068],[33.05103600400011,31.128119208000058],[33.03028405000012,31.114406643000123],[33.027110222000175,31.11074453300007],[33.02377363400015,31.107733466000166],[33.02377363400015,31.10464101800009],[33.03028405000012,31.100775458000086],[33.0169376960001,31.09813060099999],[32.99415123800006,31.098456122000027],[32.97055097700015,31.10146719000012],[32.954437696000156,31.10691966400016],[32.98462975400017,31.109523830000157],[33.0018009770001,31.12482330900012],[33.01441491000011,31.144964911000056],[33.03028405000012,31.16217682500017],[33.042328321000156,31.167222398000103],[33.06706790500018,31.170965887000033],[33.07862389400023,31.17584870000012],[33.097829623000194,31.191555080000068],[33.109385613000114,31.19643789300015],[33.12647545700017,31.19635651200015],[33.12647545700017,31.18952057500014],[33.09864342500012,31.18952057500014],[33.09864342500012,31.18329498900009],[33.11109459700012,31.175360419000025],[33.14698326900012,31.134914455000068],[33.15772545700022,31.117865302000112],[33.15357506600017,31.11237213700009],[33.140961134000094,31.109605210000137],[33.12647545700017,31.100775458000086],[33.12525475400011,31.10325755400011],[33.12525475400011,31.105902411],[33.12403405000011,31.107570705000015],[33.1189884770001,31.10691966400016],[33.1189884770001,31.100775458000086],[33.13575280000012,31.090765692],[33.144704623000024,31.077866929],[33.14429772200011,31.06256745000003],[33.13331139400006,31.045558986000156],[33.16911868600019,31.058010158000073],[33.187673373000194,31.061672268000123],[33.20093834700012,31.05980052300008],[33.207692905000066,31.06102122599999],[33.21241295700005,31.060980536],[33.22144616000017,31.05980052300008],[33.22144616000017,31.06598541900003],[33.20777428500011,31.073431708000115],[33.20093834700012,31.073431708000115],[33.20093834700012,31.06598541900003],[33.194834832000225,31.06598541900003],[33.194834832000225,31.073431708000115],[33.24789472700016,31.091253973000097],[33.26246178500017,31.100775458000086],[33.26978600400011,31.100775458000086],[33.26246178500017,31.093329169000114],[33.26978600400011,31.08649323100009],[33.2771916020001,31.092108466000084],[33.28541100400017,31.092718817000144],[33.292491082000225,31.08844635600003],[33.29656009200019,31.079657294000167],[33.30396569100017,31.079657294000167],[33.30486087300008,31.08812083500011],[33.30453535200015,31.098211981000176],[33.30323326900023,31.099798895],[33.317637566000116,31.100775458000086],[33.308116082000225,31.10512929900007],[33.29818769600009,31.103908596000153],[33.288747592000185,31.10488515800013],[33.2771916020001,31.10691966400016],[33.386485222000175,31.114406643000123],[33.37769616000011,31.132554429000137],[33.39063561300022,31.136216539000156],[33.40642337300008,31.137274481000034],[33.40642337300008,31.155422268000123],[33.41724694100017,31.150783596000014],[33.42066491000017,31.147935289000156],[33.427500847000175,31.147935289000156],[33.44092858200011,31.151190497000115],[33.48080488400015,31.13324616100006],[33.499522332000225,31.128078518000063],[33.57252037900011,31.12156810100008],[33.59205162900011,31.114406643000123],[33.59205162900011,31.121283270000117],[33.61475670700017,31.115383205000015],[33.647959832000055,31.117254950000174],[33.854340040000096,31.163478908000073],[34.047048373000194,31.229193427000055],[34.19849694100017,31.313299872000083],[34.2002694411415,31.314266689147598],[34.22460819500023,31.27571482400016],[34.230395956000194,31.259230041000095],[34.24835085700013,31.211448958000133],[34.25861128700014,31.184144186000097],[34.29798872900008,31.07877594000017],[34.329511353000015,30.994491679000145],[34.367855266000134,30.907416891000093],[34.418808228000074,30.79129994700015],[34.480406535000014,30.65120513900008],[34.50221398900007,30.57167511000007],[34.50438440000002,30.53033396500014],[34.51037886600008,30.513332418000136],[34.52629520700012,30.49457387300013],[34.52629520700012,30.49452219600012],[34.5362170810001,30.48217153000014],[34.536010376000064,30.468580628000083],[34.52650191200016,30.438711650000144],[34.52474491400008,30.421141662000178],[34.52691532400016,30.409617818000143],[34.53383996600016,30.400212708000094],[34.5884102790001,30.358819886000145],[34.599469035000055,30.344505513000158],[34.63264530400008,30.26202992800013],[34.6916597900001,30.11454539000009],[34.73041711400006,30.018168844000098],[34.73320764200011,30.012587789000076],[34.734964640000186,30.00669667600009],[34.735584758000044,30.000702210000142],[34.735067993000115,29.99455271400008],[34.74137251800002,29.94024078400012],[34.78519413300014,29.835699361000124],[34.82436486800006,29.741699931000156],[34.850099732000075,29.638760478],[34.84823938000008,29.569643250000023],[34.85526737500018,29.545717062000122],[34.878108358000105,29.504298401000156],[34.886729362500226,29.490057684000032],[34.87533613400015,29.484808661000056],[34.866872592000185,29.479193427000055],[34.85971113400015,29.472154039000188],[34.85254967500012,29.46279531500015],[34.8470158210001,29.451117255000057],[34.84376061300023,29.44082265800013],[34.83814537900011,29.432928778000143],[34.82536868600019,29.428615627000156],[34.82886803500017,29.427720445000165],[34.831716342000014,29.42763906500009],[34.83326256600017,29.42617422100012],[34.83277428500017,29.42112864799999],[34.82422936300017,29.417385158000158],[34.81763756600017,29.412176825000145],[34.81519616000017,29.406398830000015],[34.81910241000011,29.400702216000028],[34.80958092500006,29.399115302],[34.805186394000174,29.396429755000113],[34.805918816000116,29.3925641950001],[34.81226647200011,29.387640692000147],[34.8006291020001,29.377875067],[34.77759850400016,29.346096096000153],[34.772715691000165,29.341864325000028],[34.76197350400017,29.336859442],[34.75700931100013,29.333075262000147],[34.75294030000006,29.327093817000062],[34.749766472000175,29.321193752000042],[34.744965040000096,29.315822658000158],[34.73658287900011,29.311265367000104],[34.73658287900011,29.305121161000145],[34.74529056100002,29.291327216000028],[34.74195397200012,29.277004299000158],[34.73414147200012,29.263128973000065],[34.72901451900012,29.25047435099999],[34.72901451900012,29.198919989000114],[34.72364342500006,29.18667226800015],[34.71208743600019,29.177435614],[34.70036868600002,29.170355536000116],[34.69499759200008,29.164496161000088],[34.69385826900023,29.150458075000035],[34.69011478000019,29.134466864000117],[34.68384850400017,29.119045315],[34.67457116000011,29.10651276200009],[34.677012566000116,29.094916083],[34.67457116000011,29.03440989799999],[34.676605665000096,29.024807033000016],[34.68653405000012,29.01243724200016],[34.688731316000116,29.000392971000068],[34.685720248000194,28.988674221000068],[34.67823326900023,28.983140367000047],[34.669118686000076,28.98016998900015],[34.64673912900011,28.9674339860001],[34.64323978000007,28.962062893000123],[34.640310092000135,28.94879791900011],[34.640961134000094,28.942694403000115],[34.64600670700011,28.922349351000108],[34.64714603000007,28.862860419000086],[34.6204533210001,28.84585195500013],[34.6204533210001,28.83958567900008],[34.62338300900015,28.83055247600008],[34.626312696000156,28.816961981000123],[34.626312696000156,28.802394924000097],[34.6204533210001,28.79059479400011],[34.62403405000006,28.787054755000142],[34.62728925900015,28.782538153000175],[34.63347415500019,28.77069733300011],[34.6243595710001,28.76532623900006],[34.622813347000175,28.759833075000028],[34.62501061300017,28.753729559000064],[34.626719597000175,28.74648672100012],[34.624522332000055,28.735988674000154],[34.61988366000017,28.72919342700011],[34.61524498800023,28.724188544000082],[34.61304772200012,28.719183661000145],[34.60767662900017,28.701483466000056],[34.58423912900011,28.67234935099999],[34.57032311300011,28.626166083000054],[34.530121290000096,28.572699286000145],[34.517344597000175,28.544134833000058],[34.51636803500011,28.54148997600008],[34.516449415000096,28.53896719000015],[34.51531009200008,28.53742096600011],[34.51059004000015,28.537990627000067],[34.523610873000024,28.50731028900016],[34.5115666020001,28.487779039000184],[34.48878014400012,28.472723700000174],[34.46900475400017,28.455389716000084],[34.47193444100017,28.453273830000068],[34.47282962300008,28.45282623900009],[34.47527103000013,28.447943427000112],[34.46168053500017,28.442043361000074],[34.45427493600007,28.428900458000115],[34.44483483200016,28.384466864],[34.44117272200012,28.373480536000145],[34.42937259200002,28.356756903000115],[34.42741946700019,28.35610586100016],[34.42432701900012,28.34471263200002],[34.41016686300006,28.320013739000114],[34.406911655000016,28.3080101580001],[34.40788821700019,28.291164455000096],[34.41065514400006,28.278143622000112],[34.41504967500006,28.26707591400016],[34.42058353000007,28.256170966000084],[34.42058353000007,28.249945380000142],[34.412933790000146,28.233140367000132],[34.421153191000116,28.2181664080001],[34.43433678500017,28.204413153000175],[34.443125847000175,28.188299872000083],[34.4524845710001,28.18036530200014],[34.45533287900011,28.174872137000094],[34.45525149800008,28.16746653900013],[34.452647332000225,28.163234768],[34.44996178500016,28.160345770000063],[34.44857832100009,28.157171942],[34.44776451900005,28.1446800800001],[34.43863930100011,28.109557429000162],[34.426753309000134,28.081543500000134],[34.44402656800017,28.05354050200016],[34.42741946700019,27.983058986000103],[34.434906446000156,27.97557200700014],[34.40886478000019,27.972113348000118],[34.40072675900015,27.968736070000105],[34.39747155000012,27.96308014500012],[34.39437910200016,27.953802802000084],[34.389984571000156,27.945257880000142],[34.37696373800006,27.938177802],[34.370860222000175,27.923651434000064],[34.362559441000116,27.92035553600003],[34.354991082000225,27.919501044000114],[34.341156446000156,27.91547272300012],[34.331309441000116,27.914129950000145],[34.33334394600015,27.910101630000085],[34.333506707000225,27.909125067],[34.33448326900012,27.90875885600009],[34.338715040000096,27.906683661000088],[34.331228061000076,27.89154694200009],[34.320974155000016,27.861273505000085],[34.31128991000017,27.852036851000108],[34.30445397200012,27.852036851000108],[34.30128014400006,27.857326565],[34.292979363000114,27.859849351000108],[34.286387566000116,27.864406643000148],[34.279470248000024,27.858343817000062],[34.27271569100017,27.83616771],[34.2635197270001,27.82477448100003],[34.27173912900011,27.81244538000008],[34.259125196000156,27.801703192000062],[34.23951256600017,27.794134833000115],[34.22608483200011,27.791245835],[34.21680748800023,27.79193756700012],[34.21412194100017,27.791489976000136],[34.2181095710001,27.775783596000068],[34.22120201900011,27.769842841000138],[34.257334832000225,27.769517320000105],[34.257334832000225,27.76333242400015],[34.2498478520001,27.76333242400015],[34.2498478520001,27.75649648600013],[34.25505618600019,27.752386786000084],[34.25847415500019,27.747788804000052],[34.2635197270001,27.736029364000057],[34.253754102000094,27.740423895000145],[34.2498478520001,27.742824611000103],[34.25123131600017,27.739081122000144],[34.25123131600017,27.73725006700009],[34.25245201900006,27.736476955000157],[34.257334832000225,27.736029364000057],[34.257334832000225,27.72858307500009],[34.2498478520001,27.72858307500009],[34.244965040000096,27.737372137000147],[34.22754967500006,27.75820547100012],[34.208506707000225,27.775946356000034],[34.19996178500011,27.78217194200009],[34.189789259000094,27.786769924000122],[34.17481530000006,27.791245835],[34.07846113400015,27.80068594],[34.05445397200012,27.81452057500009],[33.98755944100017,27.886664130000028],[33.98243248800006,27.88996002800006],[33.973806186000076,27.889227606000116],[33.91675866000017,27.93573639500015],[33.903981967000014,27.941799221000153],[33.89087975400017,27.942531643000066],[33.87940514400011,27.934637762000094],[33.865570509000094,27.96133047100012],[33.85889733200016,27.955145575000145],[33.84986412900017,27.964829820000105],[33.81511478000019,27.991034247000144],[33.80689537900011,27.994574286000116],[33.80420983200011,27.99603913],[33.80046634200019,28.00047435100008],[33.796885613000114,28.00901927299999],[33.79371178500011,28.01312897300012],[33.78679446700008,28.01797109600004],[33.7791447270001,28.020819403000147],[33.76335696700008,28.023993231000034],[33.7639266290001,28.04901764500012],[33.71599368600002,28.075262762000147],[33.71550540500007,28.092922268000063],[33.70142662900011,28.10382721600014],[33.68433678500016,28.12433502800009],[33.67253665500019,28.145982164000188],[33.67457116000011,28.160549221000124],[33.6697697270001,28.163723049000097],[33.66570071700008,28.165716864000117],[33.66244550900009,28.168768622000027],[33.660329623000194,28.174872137000094],[33.654063347000175,28.174872137000094],[33.654063347000175,28.16738515800013],[33.64665774800008,28.16738515800013],[33.64356530000012,28.172308661],[33.63477623800023,28.18130117400004],[33.632985873000024,28.1844750020001],[33.61817467500006,28.2333031270001],[33.61280358200011,28.240627346000096],[33.60564212300008,28.236273505],[33.59791100400017,28.24974192899999],[33.574392123000194,28.280747789000102],[33.56470787900011,28.29710521000011],[33.433929884000094,28.366400458000086],[33.427500847000175,28.376898505000053],[33.4231876960001,28.37824127800006],[33.40015709700012,28.414455471000064],[33.380869988000114,28.430243231000116],[33.36898847700016,28.44232819200003],[33.369151238000114,28.447943427000112],[33.30518639400012,28.489732164000046],[33.2947697270001,28.499416408000098],[33.290293816000116,28.506903387000147],[33.28711998800005,28.515082098000065],[33.27881920700011,28.52753327],[33.26783287900016,28.53888580900015],[33.25619550900014,28.544134833000058],[33.26246178500017,28.551581122000027],[33.26246178500017,28.544134833000058],[33.26978600400011,28.544134833000058],[33.262950066000165,28.577053127000124],[33.24610436300006,28.579494533000073],[33.237640821000156,28.56610748900006],[33.25619550900014,28.551581122000027],[33.23943118600013,28.55658600500008],[33.228688998000194,28.569403387000094],[33.22315514400006,28.587836005000142],[33.21900475400017,28.627997137000037],[33.21257571700002,28.645005601000104],[33.194834832000225,28.67511627800003],[33.20476321700002,28.695013739000114],[33.21778405000012,28.741034247000087],[33.22828209700012,28.763861395],[33.21583092500006,28.77716705900012],[33.21013431100018,28.78506094],[33.20476321700002,28.80516185100005],[33.19752037900011,28.81000397300012],[33.18873131600017,28.812933661000145],[33.181000196000156,28.818508205000157],[33.17457116000011,28.83698151200018],[33.171397332000055,28.881415106000087],[33.1673283210001,28.894232489000117],[33.1673283210001,28.9003766950001],[33.17603600400011,28.909735419000146],[33.1775822270001,28.918361721000153],[33.173594597000175,28.941392320000105],[33.17156009200002,28.9466820330001],[33.16765384200002,28.961086330000153],[33.16586347700016,28.976060289000188],[33.17058353000007,28.98297760600009],[33.17790774800008,28.989569403000147],[33.170746290000096,29.00307851800012],[33.15919030000006,29.014105536],[33.15308678500011,29.01337311400006],[33.15105228000007,29.024155992000157],[33.145030144000174,29.031724351000108],[33.13648522200012,29.03461334800015],[33.12647545700017,29.0313988300001],[33.11605879000015,29.04311758000007],[33.08904056100002,29.055975653000086],[33.07862389400023,29.064886786000148],[33.06617272200012,29.090033270000117],[33.06430097700016,29.095933335000055],[33.06120853000007,29.10138580900009],[33.04664147200012,29.111558335000137],[33.04322350400011,29.11640045800011],[33.04021243600002,29.11810944200012],[33.023448113000114,29.14061107000011],[33.020355665000096,29.142482815000093],[33.01205488400015,29.145819403000118],[33.0091251960001,29.147406317000144],[33.00749759200019,29.150336005000053],[33.00489342500012,29.158433335],[33.00294030000006,29.161118882000082],[32.957855665000096,29.202093817000087],[32.942067905000016,29.20661041900006],[32.9197697270001,29.217515367000104],[32.898610873000194,29.23102448100009],[32.88559004000009,29.243068752000013],[32.88013756600017,29.25885651200007],[32.87549889400023,29.279486395000063],[32.86833743600019,29.29743073100012],[32.85523522200012,29.305121161000145],[32.84595787900017,29.30833567899999],[32.83936608200011,29.316229559000153],[32.81910241000011,29.35907623900006],[32.81739342500006,29.359767971000093],[32.82105553500011,29.397040106000148],[32.81723066500009,29.414048570000134],[32.79029381600017,29.425441799000094],[32.741547071000156,29.455959377000127],[32.749196811000076,29.455959377000127],[32.745371941000165,29.46312083500008],[32.74105879000015,29.466742255000142],[32.7356876960001,29.46832916900017],[32.72852623800023,29.46963125200007],[32.73096764400012,29.471869208000054],[32.73365319100017,29.47386302299999],[32.73536217500006,29.47728099200019],[32.734711134000094,29.483832098000093],[32.72852623800023,29.483832098000093],[32.723806186000076,29.475287177000055],[32.72144616000011,29.46747467700008],[32.72291100400017,29.46088288],[32.72852623800023,29.455959377000127],[32.71501712300008,29.455959377000127],[32.72250410200015,29.49274323100012],[32.724131707000055,29.53953685099999],[32.712412957000105,29.58047109600004],[32.68083743600019,29.599920966000024],[32.68083743600019,29.606146552000084],[32.6868595710001,29.61815013199999],[32.68604576900006,29.63226959800012],[32.682465040000096,29.64704010600012],[32.68083743600019,29.66136302300002],[32.68327884200002,29.676092841000084],[32.69190514400023,29.696519273000078],[32.69385826900006,29.706040757000054],[32.69312584700012,29.72284577000006],[32.690684441000116,29.733628648000074],[32.686778191000116,29.74184804900007],[32.68083743600019,29.750799872000087],[32.656423373000024,29.77708567900011],[32.653005405000016,29.788316148000106],[32.648448113000114,29.794623114000064],[32.62549889400012,29.815252997000087],[32.60450280000006,29.824164130000113],[32.609548373000194,29.833889065000065],[32.619965040000096,29.84316640800004],[32.62549889400012,29.846340236000103],[32.62533613400015,29.87425364800013],[32.61247806100019,29.893744208000115],[32.57154381600017,29.928900458000086],[32.58041425900015,29.934027411],[32.58432050900015,29.938706773000106],[32.58350670700011,29.94342682500003],[32.57781009200002,29.94879791900017],[32.58350670700011,29.95062897300015],[32.585459832000055,29.952460028000033],[32.58350670700011,29.954331773000018],[32.57781009200002,29.956203518000063],[32.573741082000055,29.962144273],[32.56902103000007,29.96759674700003],[32.563487175000056,29.972398179000106],[32.56161543100009,29.976385809000092],[32.56275475400011,29.978949286],[32.56609134200008,29.98102448100012],[32.57007897200012,29.98265208500014],[32.57781009200002,29.983547268000123],[32.57781009200002,29.989691473000036],[32.57545006600017,29.99701569200012],[32.57545006600017,30.002875067000062],[32.57781009200002,30.01141998900009],[32.57154381600017,30.01141998900009],[32.55860436300006,29.987127997000115],[32.55746504000015,29.97646719000006],[32.560069207000225,29.96857330900009],[32.565603061000076,29.963039455000068],[32.570485873000024,29.95575592700008],[32.57154381600017,29.94257233300011],[32.56413821700019,29.94257233300011],[32.561778191000116,29.9552269550001],[32.55396569100017,29.962103583],[32.54273522200012,29.962551174000097],[32.53003991000017,29.956203518000063],[32.51343834700012,29.961574611000014],[32.49390709700012,29.95062897300015],[32.476898634000094,29.932196356000116],[32.467946811000076,29.915228583000147],[32.46680748800022,29.896877346000096],[32.47291100400011,29.881984768000123],[32.48698978000007,29.87156810100005],[32.50953209700012,29.866848049000126],[32.4915470710001,29.85407135600009],[32.40796959700012,29.751898505000145],[32.40300540500019,29.743963934000178],[32.39283287900011,29.7343610700001],[32.363942905000016,29.68821849200016],[32.35808353000019,29.67194245000014],[32.35743248800023,29.630560614000117],[32.351573113000114,29.613674221000124],[32.33765709700012,29.599920966000024],[32.33765709700012,29.592474677000137],[32.348317905000066,29.585028387000147],[32.35962975400011,29.57127513200005],[32.368662957000225,29.557196356000087],[32.37680097700016,29.536078192],[32.38770592500012,29.525620835000115],[32.43864993600002,29.496771552],[32.451345248000194,29.487290757],[32.497325066000165,29.44009023600002],[32.528575066000116,29.423651434000117],[32.55697675900015,29.397853908000073],[32.581228061000076,29.36912669500013],[32.59148196700008,29.349514065000065],[32.59538821700007,29.32489655200006],[32.60547936300023,29.291937567],[32.618662957000055,29.261175848],[32.63233483200011,29.243068752000013],[32.63233483200011,29.23680247600005],[32.628672722000175,29.21893952000009],[32.656179233000074,29.120632229000037],[32.65894616000017,29.11078522300004],[32.65967858200011,29.089097398000135],[32.65414472700015,29.080877997000027],[32.64421634200008,29.072902736000074],[32.6389266290001,29.061346747000144],[32.62818444100017,29.05703359600015],[32.62468509200019,29.048163153000118],[32.63233483200011,29.03758372600005],[32.62720787900011,29.007879950000028],[32.62549889400012,28.972723700000145],[32.63209069100017,28.96190013200008],[32.66277103000007,28.934068101000108],[32.673350457000225,28.921535549000012],[32.67652428500017,28.910956122000144],[32.677256707000225,28.890773830000125],[32.68083743600019,28.880560614],[32.70346113400015,28.858710028000147],[32.70753014400011,28.8563500020001],[32.749196811000076,28.80483633000001],[32.7845158210001,28.799383856000173],[32.80689537900011,28.778143622000087],[32.82064863400015,28.747870184000092],[32.865244988000114,28.59955475500011],[32.868907097000175,28.578924872000087],[32.87956790500019,28.575425523000103],[32.927256707000055,28.551581122000027],[32.95142662900016,28.530991929],[32.96355228000007,28.517726955000157],[32.97291100400011,28.499823309000092],[32.98259524800008,28.49656810100005],[32.99382571700008,28.494208075000117],[33.00294030000006,28.489488023000018],[33.006195509000094,28.483343817000115],[33.0130314460001,28.463039455000015],[33.04175866000017,28.41412995000003],[33.05079186300006,28.406927802000027],[33.05103600400011,28.40257396000011],[33.04957116000017,28.401353257],[33.0467228520001,28.40143463700018],[33.04322350400011,28.400783596000124],[33.08757571700008,28.368597723000065],[33.106700066000116,28.34711334800015],[33.10531660200016,28.32562897300012],[33.11296634200019,28.320013739000114],[33.11980228000019,28.308783270000117],[33.12468509200008,28.296332098],[33.12647545700017,28.287502346000124],[33.130544467000135,28.28416575700011],[33.15308678500011,28.256170966000084],[33.2005314460001,28.21137116100006],[33.212168816000116,28.189927476000108],[33.22217858200011,28.184637762000065],[33.23365319100017,28.18032461100013],[33.24195397200012,28.174872137000094],[33.246755405000016,28.161525783000098],[33.24610436300006,28.150458075000145],[33.2493595710001,28.142889716000113],[33.26612389400023,28.140082098000065],[33.28321373800011,28.132391669000057],[33.316416863000114,28.09638092700008],[33.33814537900017,28.0854352890001],[33.336761915000096,28.07916901200015],[33.33814537900017,28.071030992000043],[33.33814537900017,28.065008856000034],[33.336110873000024,28.05678945500013],[33.3435978520001,28.050604559000146],[33.35547936300017,28.04808177300005],[33.366058790000096,28.05068594000015],[33.374685092000135,28.03587474200016],[33.39665774800002,28.027248440000065],[33.441742384000094,28.016546942000147],[33.512543165000096,27.959051825000145],[33.53541100400011,27.91640859600012],[33.54737389400023,27.906683661000088],[33.55437259200002,27.896470445000134],[33.576182488000114,27.85049062700007],[33.57837975400017,27.838446356000148],[33.57837975400017,27.83222077],[33.58326256600011,27.824530341000084],[33.587087436000076,27.805121161000088],[33.59205162900011,27.797430731000144],[33.59205162900011,27.791245835],[33.585215691000116,27.791245835],[33.57154381600017,27.791245835],[33.56006920700011,27.813421942000062],[33.5364689460001,27.826076565000122],[33.50977623800023,27.834947007000082],[33.48894290500019,27.84589264500015],[33.48218834700011,27.84589264500015],[33.476084832000225,27.831610419000143],[33.47348066500015,27.823187567],[33.475433790000096,27.81586334800009],[33.48218834700011,27.804917710000108],[33.501231316000116,27.787502346000153],[33.511729363000114,27.775091864000117],[33.51628665500007,27.75991445500013],[33.52271569100017,27.751898505],[33.53711998800023,27.755764065],[33.55144290500013,27.76162344000015],[33.557871941000116,27.75991445500013],[33.556407097000175,27.74628327],[33.552500847000175,27.73187897300012],[33.54590905000012,27.71849192900011],[33.536794467000185,27.708075262000037],[33.540782097000175,27.70453522300015],[33.546153191000116,27.69818756700012],[33.55046634200002,27.695054429000052],[33.56853274800008,27.68325429900007],[33.57496178500017,27.681382554000106],[33.577891472000175,27.677435614000117],[33.58757571700007,27.659002997000087],[33.59205162900011,27.653469143000066],[33.59205162900011,27.646633205000157],[33.581553582000225,27.654486395000117],[33.557871941000116,27.681382554000106],[33.55046634200002,27.681382554000106],[33.55046634200002,27.67397695500013],[33.553965691000116,27.668646552000055],[33.557871941000116,27.659654039000042],[33.55046634200002,27.659654039000042],[33.54420006600017,27.679185289000127],[33.526540561000076,27.677557684000092],[33.507172071000156,27.663723049000012],[33.49634850400017,27.646633205000157],[33.51970462300008,27.63580963700015],[33.53630618600013,27.616197007],[33.56470787900011,27.571519273000135],[33.56080162900017,27.565171617000104],[33.55827884200002,27.55711497600008],[33.55697675900015,27.547593492000157],[33.557871941000116,27.53676992400007],[33.57447350400017,27.525864976000108],[33.61817467500006,27.508124091000113],[33.632985873000024,27.495835679000052],[33.635915561000076,27.486721096000068],[33.637217644000174,27.464789130000142],[33.64039147200011,27.454820054000052],[33.64714603000007,27.446478583000086],[33.66407311300022,27.430324611000017],[33.671153191000116,27.420396226000108],[33.67750084700012,27.400132554000024],[33.684825066000116,27.35569896],[33.69166100400017,27.34186432500009],[33.724782748000194,27.313706773000103],[33.76335696700008,27.290350653000118],[33.80567467500006,27.272121486000046],[33.82536868600013,27.259711005],[33.83838951900012,27.242580471000064],[33.84050540500013,27.232082424000097],[33.83838951900012,27.19415924700017],[33.836110873000024,27.190822658000126],[33.826996290000146,27.184149481000173],[33.82471764400006,27.180487372000027],[33.82536868600013,27.174627997000083],[33.83033287900017,27.165920315],[33.83155358200011,27.159979559000178],[33.83253014400017,27.137884833],[33.836761915000096,27.120754299000154],[33.847178582000055,27.107001044000057],[33.86597741000011,27.09516022300009],[33.88314863400015,27.080796617000104],[33.90137780000012,27.05874258000001],[33.90870201900023,27.04214101800015],[33.89372806100019,27.04393138200014],[33.893890821000156,27.027899481000034],[33.90088951900023,27.01422760600009],[33.92090905000012,26.98932526200015],[33.92945397200012,26.97418854400017],[33.94206790500013,26.944566148000135],[33.95167076900012,26.93097565300017],[33.964366082000225,26.92186107000016],[33.97885175900009,26.914943752000067],[33.99097741000011,26.907416083000115],[33.996104363000114,26.89655182500003],[34.00269616000017,26.864894924000065],[34.00359134200008,26.848944403000147],[33.996104363000114,26.837876695000105],[33.97966556100019,26.837103583],[33.96876061300023,26.846380927000055],[33.95964603000007,26.849798895000063],[33.94825280000006,26.831000067],[33.94581139400023,26.817775783000073],[33.94581139400023,26.799994208],[33.94776451900011,26.782416083000058],[33.95167076900012,26.769273179],[33.95191491000011,26.743353583],[33.93213951900012,26.682603257000054],[33.94141686300017,26.653509833],[33.955414259000094,26.643011786000116],[33.987803582000225,26.634100653000175],[34.00359134200008,26.62563711100013],[34.01400800900015,26.61163971600017],[34.023936394000174,26.58071523600013],[34.05640709700012,26.542303778000033],[34.07064863400015,26.514878648000078],[34.104828321000156,26.42666250200007],[34.11963951900012,26.400295315000093],[34.1399845710001,26.372300523000078],[34.15333092500012,26.347113348],[34.17750084700012,26.314846096000068],[34.26197350400017,26.139471747000144],[34.30103600400011,26.087795315],[34.338715040000096,26.00177643400012],[34.41749108200011,25.90314362200003],[34.424978061000076,25.890204169000025],[34.43474368600019,25.861883856000087],[34.50180097700015,25.771633205000068],[34.53825931100002,25.73566315300009],[34.546560092000135,25.725043036000056],[34.63347415500019,25.56940338700015],[34.64714603000007,25.522040106000034],[34.671397332000225,25.479722398000135],[34.68189537900011,25.42869700700014],[34.69996178500011,25.40102773600013],[34.74333743600019,25.351304429000052],[34.7493595710001,25.33881256700012],[34.75879967500012,25.309637762000094],[34.764984571000156,25.296087958000115],[34.79493248800023,25.25438060099999],[34.80689537900017,25.21161530200008],[34.85320071700008,25.138820705000015],[34.93913821700007,25.00336334800006],[34.94304446700008,24.97125885600009],[34.95372532300004,24.94414234300008],[34.969898223000115,24.926410745000066],[34.989756707000225,24.905015367000132],[34.993011915000096,24.886704820000162],[34.993907097000175,24.849310614000114],[34.99659264400006,24.83055247600005],[35.00220787900017,24.81561920800011],[35.01026451900012,24.80442942900011],[35.02182050900015,24.795152085000055],[35.03760826900006,24.785874742000104],[35.06348717500006,24.764105536000145],[35.08073978000019,24.73541901200018],[35.10401451900012,24.65688711100013],[35.109548373000024,24.64378489799999],[35.126963738000114,24.617661851000136],[35.14601372100012,24.585898242000113],[35.16026972400018,24.57461836900002],[35.16065514400012,24.558498440000122],[35.14444455500009,24.527674880000077],[35.14455647800011,24.500206473],[35.185720248000194,24.485663153000175],[35.23545487500015,24.400125862000053],[35.37061608200011,24.30609772300012],[35.391856316000116,24.28278229400003],[35.42864531300009,24.185953023000152],[35.45573700700007,24.158988126000096],[35.49382816200014,24.108899899],[35.510508660000106,24.111232815000122],[35.503081646000076,24.1251068240001],[35.49376661500011,24.138988741],[35.50389967000015,24.14053756700018],[35.524189170000085,24.12127498000002],[35.55205893100012,24.11049993900015],[35.58837194100007,24.07583712000014],[35.602725453000204,24.048100985000033],[35.60526050100006,24.01881704200012],[35.63563070300009,24.001864551000082],[35.66684957900023,24.007252541000085],[35.691314913000184,24.001078156000016],[35.71747878700015,23.99335486900013],[35.73857101300021,23.98331737500014],[35.753746889000155,23.96865948400007],[35.77482532700017,23.923911997000015],[35.79253529100018,23.90229102800005],[35.78577882500011,23.893045961000112],[35.77059665200014,23.912350222000057],[35.750355743000085,23.932423406],[35.73601209200015,23.933208663000144],[35.6997183280001,23.917828438000086],[35.6845204480002,23.910916206000152],[35.664274339000116,23.918649273000042],[35.64574991400016,23.925562007000124],[35.627201998000174,23.928643612000098],[35.61371109800021,23.92710193700016],[35.59853316500008,23.92941347200012],[35.57998109400009,23.936348524000078],[35.573231748000154,23.944825184000038],[35.56177819100017,23.95718008000007],[35.551442905000066,23.960394598000118],[35.550547722000175,23.96548086100016],[35.5352752160002,23.97179003700002],[35.51392662900017,23.977118231000148],[35.50492115100022,23.971000635000067],[35.49122155000012,23.947577216000113],[35.483871160000064,23.917787169000135],[35.49065811200009,23.86999553600019],[35.481425451000206,23.82834822700015],[35.474767778000086,23.797915038000056],[35.48322385800023,23.77248686400004],[35.501721354000125,23.768694704000083],[35.51014814400017,23.756378609000038],[35.50932195600009,23.741729189000136],[35.50611412900017,23.73456452],[35.50766301700011,23.717832194000053],[35.50851582700008,23.70627165300003],[35.51022072200013,23.683921913000162],[35.50554446700019,23.642482815],[35.50367272200012,23.555650132000025],[35.50147545700022,23.539943752000127],[35.49170983200011,23.51215241100006],[35.489431186000125,23.497015692000062],[35.49333743600019,23.482367255000057],[35.50261478000007,23.46723053600006],[35.52418053500017,23.438950914000102],[35.541351759000094,23.409572658000013],[35.54753665500007,23.393988348000036],[35.551442905000066,23.377508856000034],[35.550303582000225,23.33022695500007],[35.55817014500005,23.282088772000137],[35.56739342500006,23.24542877800009],[35.5746804230001,23.212565219000012],[35.62108710600015,23.139292914000134],[35.63517065500011,23.110925449000106],[35.65464215500012,23.073749597000116],[35.6678166020001,22.98261139500012],[35.675059441000165,22.96662018400012],[35.695305231000106,22.932126497000084],[35.737071160000106,22.883978583000143],[35.76368248800023,22.870428778000175],[35.751638217000014,22.88597239799999],[35.72339928500017,22.931870835000055],[35.74293053500017,22.931301174000097],[35.7557072270001,22.922308661000088],[35.76441491000017,22.90766022300006],[35.77116946700019,22.890285549000097],[35.781911655000016,22.841131903000147],[35.78492272200012,22.833197333],[35.80128014400023,22.82257721600014],[35.80958092500012,22.811346747000144],[35.81666100400016,22.79889557500003],[35.82960045700011,22.784816799000094],[35.84754720600009,22.762989315000098],[35.88596381200014,22.735694864000106],[35.922171626000164,22.722115922000125],[35.94019616000011,22.716620184000178],[35.94312584700012,22.712795315000065],[35.95582116000017,22.704494533000073],[35.96949303500011,22.697984117000185],[35.98438561300006,22.69379303600006],[36.04004967500006,22.69017161700019],[36.120616082000225,22.675685940000147],[36.19776451900012,22.65167877800009],[36.226084832000225,22.635443427000055],[36.27466881600017,22.592352606000034],[36.290537957000225,22.568182684000035],[36.29636814800003,22.52199929400011],[36.31341564000016,22.491612729000067],[36.343176963000104,22.467129410000084],[36.37452233200011,22.44525788000008],[36.38989783400021,22.438751525000058],[36.40475469500004,22.432883726000128],[36.401555560000105,22.44857057700007],[36.406859273000094,22.448576942000056],[36.42809962300012,22.426045101000067],[36.42282334400008,22.39760544100001],[36.43982291600011,22.35644297600011],[36.507698276000184,22.328047585000075],[36.54057227200005,22.31040480500012],[36.56283906200005,22.296676577000042],[36.623303064000226,22.24956790600011],[36.71371504000009,22.169134833000086],[36.732758009000094,22.15961334800009],[36.747569207000225,22.160956122000172],[36.7513126960001,22.16693756700009],[36.753265821000156,22.17316315300006],[36.75684655000012,22.176906643000066],[36.764903191000116,22.174953518000123],[36.78223717500012,22.164455471000068],[36.790375196000156,22.15761953300013],[36.79566491000011,22.150783596000124],[36.80941816500015,22.12075429900007],[36.8182072270001,22.10883209800012],[36.833262566000116,22.09585195500013],[36.87193987500009,22.074111979000108],[36.89538277300008,22.06613256700014],[36.89918053500017,22.02985260600012],[36.89844811300023,22.017482815000065],[36.89185631600017,22.006740627000156],[36.88379967500012,21.99664948100009],[36.88363691500015,21.99571360900002],[36.64988651500019,21.995712789000137],[36.41723921700006,21.99566111300011],[36.184591919000155,21.995609436],[35.95184126800021,21.995609436],[35.71919396900009,21.995609436],[35.486443318000084,21.995557760000096],[35.25379602000007,21.995557760000096],[35.02114872200016,21.995557760000096],[34.788501424000145,21.995557760000096],[34.555750773000085,21.99550608300008],[34.32310347500018,21.995454407000167],[34.09045617700005,21.995454407000167],[34.08417936900011,21.995454407000167],[33.8577055260001,21.995454407000167],[33.6250582280002,21.995454407000167],[33.39235925300008,21.995454407000167],[33.181138266322165,21.995407469401112],[33.159815307000116,21.995402731000137],[33.15976042200012,21.995402731000137],[33.05739261800008,21.995402731000137],[32.95507328300019,21.995402731000137],[32.852650594000146,21.995402731000137],[32.75033125800016,21.995402731000137],[32.647856893000125,21.995402731000137],[32.54543420400009,21.995402731000137],[32.524518790000144,21.995402731000137],[32.443063192000096,21.995402731000137],[32.34074385600016,21.995402731000137],[32.23832116700012,21.995402731000137],[32.136001831000016,21.995402731000137],[32.033579142000086,21.995402731000137],[31.931259806000213,21.995402731000137],[31.828837118000166,21.995402731000137],[31.726517782000055,21.995402731000137],[31.62409509300008,21.995402731000137],[31.521775757000142,21.995402731000137],[31.494719176000128,21.995386529000044],[31.435476115000114,21.99535105400004],[31.467412150000058,22.084131165000073],[31.490563192000053,22.148209941000072],[31.49180342600019,22.17322133400016],[31.482915080000083,22.195442200000016],[31.46090091900012,22.21549265600005],[31.442504110000215,22.224174296000015],[31.42328047700019,22.226964823000074],[31.404056844000163,22.223760885],[31.385349976000185,22.21445912700007],[31.35951175900007,22.188104146000015],[31.314388101000162,22.102273188000126],[31.310935913000066,22.0957066860001],[31.261636597000145,22.001758932000158],[31.24840743000007,21.994369202000158],[31.21011519400005,21.994369202000158],[31.112911825000168,21.994369202000158],[31.01555342600008,21.99442087900009],[30.91814335100011,21.994472555000087],[30.82073327600008,21.994472555000087],[30.72347823100003,21.994472555000087],[30.626119832000114,21.994472555000087],[30.528761434000128,21.994472555000087],[30.431506389000134,21.994472555000087],[30.33425134300009,21.994524232000014],[30.236892944000118,21.994524232000014],[30.13937951700015,21.994524232000014],[30.04217614800021,21.994524232000014],[29.944817749000062,21.994524232000014],[29.847562703000136,21.994575907000023],[29.750307658000136,21.994627584000128],[29.652949259000163,21.994627584000128],[29.55559086100001,21.994627584000128],[29.458232463000087,21.994627584000128],[29.360822387000127,21.994679260000154],[29.26361901800007,21.994679260000154],[29.16636397300007,21.994679260000154],[29.069005575000116,21.994679260000154],[28.971647176000143,21.994679260000154],[28.874392130000043,21.994730937000057],[28.777033732000096,21.994782613],[28.679675334000105,21.994782613],[28.58231693500008,21.994782613],[28.48490686000011,21.994782613],[28.38770349100008,21.994782613],[28.29034509300004,21.994782613],[28.19293501800007,21.9948342900001],[28.095731649000072,21.9948342900001],[27.9983732500001,21.9948342900001],[27.90101485200006,21.994885966000098],[27.803656453000116,21.994937643000025],[27.70640140800009,21.994937643000025],[27.609043009000118,21.994937643000025],[27.511684611000078,21.994937643000025],[27.414326212000105,21.994937643000025],[27.316967814000066,21.994937643000025],[27.219712768000136,21.99498932000013],[27.122354370000096,21.99498932000013],[27.024995972000056,21.99498932000013],[26.927740926000098,21.99498932000013],[26.83038252700007,21.99498932000013],[26.733127482000043,21.995040995000135],[26.63576908400009,21.99509267200007],[26.538410685000116,21.99509267200007],[26.441052286000083,21.99509267200007],[26.343797241000058,21.99509267200007],[26.24654219600012,21.995144348000068],[26.14918379700006,21.995144348000068],[26.051928752000062,21.995144348000068],[25.954467,21.995196025],[25.857108602,21.99524770100011],[25.75985355600008,21.99524770100011],[25.662598511000056,21.99524770100011],[25.56524011200011,21.99524770100011],[25.46793339000007,21.995299378000126],[25.37067834500004,21.995299378000126],[25.273216593000058,21.995299378000126],[25.1758581950001,21.995299378000126],[25.078499797000063,21.995299378000126],[24.981244751000133,21.99535105400004],[24.981244751000133,22.28716786700012],[24.981244751000133,22.57898468000012],[24.981244751000133,22.870801494000105],[24.981244751000133,23.162669983000015],[24.981244751000133,23.454435120000156],[24.981244751000133,23.746277771000063],[24.981244751000133,24.03814626100008],[24.981244751000133,24.329963074000162],[24.981244751000133,24.621728211000132],[24.981244751000133,24.913570862000043],[24.981244751000133,25.20543935200014],[24.981244751000133,25.497256165000024],[24.981244751000133,25.788969625000092],[24.981244751000133,26.080838115000073],[24.981244751000133,26.372706604000186],[24.981244751000133,26.664523418000087],[24.981244751000133,26.859963685000178],[24.981244751000133,27.049239432000103],[24.981244751000133,27.138034567000048],[24.981244751000133,27.4754558310001],[24.981244751000133,27.62782379200003],[24.981244751000133,27.666502794000152],[24.981244751000133,28.018549296000074],[24.981244751000133,28.096700613000152],[24.981244751000133,28.49154368100001],[24.981244751000133,28.890175680000098],[24.981244751000133,29.057917379000074],[24.981244751000133,29.181372376000024],[24.974320109000047,29.238939922000085],[24.956646769000145,29.29268341100008],[24.87375777200012,29.468331604000085],[24.86383589700003,29.502903137000192],[24.86156213400011,29.541557109000095],[24.870553833000145,29.614007467000175],[24.870657185000084,29.638347066000094],[24.85618778400007,29.679481506000073],[24.80492476400013,29.754799907000134],[24.798206827000115,29.79642527300014],[24.814949992000066,29.8485667930001],[24.81619022600009,29.86841054300002],[24.811642701000068,29.89088979100002],[24.725549764000075,30.07837188800015],[24.697334432000105,30.122606913000155],[24.688342732000137,30.14415598600012],[24.68865279200014,30.1827582800001],[24.70467248500009,30.217898254000076],[24.74611698400014,30.282752177000173],[24.7628601480001,30.31706532800011],[24.77236861200009,30.3310179650001],[24.799447062000127,30.36083526599999],[24.829729452000066,30.38755198200006],[24.888123820000118,30.464343160000038],[24.90765751100014,30.498656312000048],[24.91706262200009,30.53245269800011],[24.9203699140001,30.552348125000133],[24.950652303000112,30.62123280800013],[24.961194296000087,30.67626821],[24.973596639000046,30.716265768000152],[24.988582804000117,30.750578919000088],[24.994887329000047,30.78509877600008],[24.981244751000133,30.82540639200012],[24.937629842000092,30.905763245000156],[24.92460738100004,30.956767883],[24.88957076000011,31.018831279000082],[24.882646118000135,31.039088440000068],[24.859495076000144,31.14595530300012],[24.858564900000086,31.227914124000094],[24.848643025000115,31.31204335500014],[24.8489530840001,31.348630270000104],[24.86125207500004,31.380359599000098],[25.023722778000092,31.4944094850001],[25.06041304500013,31.57936553899999],[25.08842167100005,31.61352366100006],[25.150889519000085,31.65648021000008],[25.14942467500012,31.648871161000145],[25.161794467000078,31.583563544000143],[25.17286217500012,31.551581122000144],[25.19092858200014,31.531480210000115],[25.21257571700002,31.526353257],[25.263438347000143,31.52366771000011],[25.3020939460001,31.506537177000084]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Eritrea","sov_a3":"ERI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Eritrea","adm0_a3":"ERI","geou_dif":0,"geounit":"Eritrea","gu_a3":"ERI","su_dif":0,"subunit":"Eritrea","su_a3":"ERI","brk_diff":0,"name":"Eritrea","name_long":"Eritrea","brk_a3":"ERI","brk_name":"Eritrea","brk_group":null,"abbrev":"Erit.","postal":"ER","formal_en":"State of Eritrea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Eritrea","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":2,"mapcolor13":12,"pop_est":5647168,"gdp_md_est":3945,"pop_year":-99,"lastcensus":1984,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"ER","iso_a2":"ER","iso_a3":"ERI","iso_n3":"232","un_a3":"232","wb_a2":"ER","wb_a3":"ERI","woe_id":23424806,"woe_id_eh":23424806,"woe_note":"Exact WOE match as country","adm0_a3_is":"ERI","adm0_a3_us":"ERI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ERI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[40.026215040000096,15.882635809000119],[40.06267337300008,15.868841864000117],[40.08480879000015,15.854315497000172],[40.091563347000175,15.849839585000112],[40.10100345100008,15.835638739],[40.105642123000194,15.828680731000121],[40.10556074300021,15.828640041000128],[40.10059655000006,15.814154364000059],[40.090179884000094,15.803127346000124],[40.08814537900017,15.792141018000065],[40.095713738000114,15.784613348],[40.105153842000014,15.784247137000094],[40.114593946000156,15.787787177000084],[40.12281334700006,15.792141018000065],[40.12110436300023,15.795803127000013],[40.116221550000056,15.80255768400015],[40.11540774800008,15.809027411000057],[40.12598717500012,15.811957098000091],[40.12598717500012,15.8119164080001],[40.136485222000175,15.806219794000114],[40.13876386800004,15.793321031000104],[40.13892662900011,15.79222239800005],[40.13306725400017,15.711167710000025],[40.13591556100019,15.695868231000064],[40.14128665500007,15.684108791000154],[40.1424259770001,15.681463934000176],[40.16016686300011,15.652411200000088],[40.16382897200006,15.64435455900015],[40.173594597000175,15.643622137000035],[40.23210696700008,15.627020575000174],[40.2474064460001,15.655015367000189],[40.25318444100017,15.66111888199999],[40.2615666020001,15.663234768],[40.24805748800023,15.668117580000072],[40.227793816000116,15.674017645],[40.219167514000134,15.685329494000184],[40.21908613400014,15.685370184000178],[40.22657311300023,15.696478583],[40.24447675900009,15.702093817],[40.2669376960001,15.703517971000066],[40.28736412900017,15.702093817],[40.29859459700006,15.700018622000087],[40.30762780000006,15.697211005000142],[40.31145267000008,15.69525788],[40.315114780000016,15.693426825000117],[40.321543816000116,15.68842194200006],[40.325450066000116,15.680853583000115],[40.32691491000011,15.671820380000113],[40.3299259770001,15.664252020000065],[40.33855228000013,15.66111888199999],[40.35271243600002,15.65802643400009],[40.37354576900012,15.64435455900015],[40.38640384200002,15.641262111000072],[40.40113366000011,15.6407738300001],[40.40626061300023,15.638128973],[40.414235873000194,15.598293361000044],[40.408050977000094,15.580023505000055],[40.3938908210001,15.572333075000031],[40.39356530000006,15.572495835],[40.37289472700016,15.582586981000146],[40.36589603000019,15.584133205000017],[40.35661868600002,15.586167710000142],[40.30811608200017,15.574530341000028],[40.28736412900017,15.57298411700016],[40.26596113400009,15.579982815000063],[40.23113040500007,15.596421617000075],[40.208262566000165,15.599676825000115],[40.15870201900023,15.589544989000144],[40.14877363400015,15.59125397300015],[40.14332116000011,15.592230536000116],[40.13933353000013,15.5958519550001],[40.13339277400009,15.603257554000079],[40.12940514400012,15.608303127000012],[40.127045118000034,15.610337632000137],[40.1228947270001,15.613877671000026],[40.12281334700006,15.613959052],[40.11378014400023,15.59756094],[40.10222415500019,15.589056708000058],[40.08529707100009,15.58763255399999],[40.06080162900011,15.592230536000116],[40.02035566500015,15.60757070500007],[40.01514733200017,15.608587958000143],[40.001475457000225,15.611273505000113],[39.97901451900012,15.606512762000122],[39.97885175900015,15.606512762000122],[39.97038821700019,15.61766185100005],[39.96387780000012,15.626288153000145],[39.93734785200016,15.702093817],[39.948741082000225,15.701849677000057],[39.95573978000019,15.69969310100005],[39.95671634200008,15.695949611000046],[39.95687910200016,15.695379950000145],[39.950938347,15.68842194200006],[39.95899498800023,15.683905341000113],[39.9650985040001,15.677923895],[39.96729576900023,15.673732815000063],[39.96900475400011,15.670396226000136],[39.97144616000016,15.66111888199999],[39.97152754000015,15.66111888199999],[39.97885175900015,15.66111888199999],[39.98829186300006,15.66469961100016],[40.001475457000225,15.659613348000121],[40.01539147200012,15.651922919000112],[40.026621941000116,15.647447007000054],[40.0267033210001,15.647487697000043],[40.03931725400017,15.64809804900001],[40.081309441000116,15.66111888199999],[40.06299889400006,15.692857164000044],[40.038584832000225,15.71898021],[40.00879967500012,15.736558335000112],[39.97510826900012,15.74306875200004],[39.94214928500017,15.736395575000145],[39.93043053500017,15.739569403000031],[39.92359459700006,15.757310289000129],[39.92497806100002,15.77704498900006],[39.933767123000194,15.788234768000065],[39.946787957000055,15.789862372000087],[39.97055097700016,15.774847723000065],[39.976735873000024,15.77098216400016],[39.990000847000175,15.76992422100001],[39.993907097000175,15.777899481000148],[39.981944207000225,15.795233466000141],[39.9764103520001,15.811957098000091],[39.97527103000019,15.815334377000099],[39.97527103000019,15.815375067000092],[39.994965040000096,15.824693101000134],[40.021250847000054,15.827053127000097],[40.032155795000136,15.826320705000155],[40.0334578790001,15.826239325000174],[40.037445509000094,15.838405666000154],[40.037445509000094,15.838446356000148],[40.03077233200022,15.854315497000172],[40.01937910200016,15.868109442000089],[40.009369337000095,15.873968817000119],[40.00928795700011,15.87400950700011],[39.974375847000175,15.87177155200014],[39.96314537900011,15.877101955000017],[39.9510197270001,15.893866278000033],[39.950938347,15.893947658000016],[39.987478061000076,15.891058661000088],[40.026215040000096,15.882635809000119]]],[[[40.114512566000165,15.985907294000029],[40.09669030000006,15.981024481000148],[40.06739342500006,15.990464585000083],[40.042979363000114,16.00340403900016],[40.00001061300017,16.007757880000057],[39.990000847000175,16.017726955000157],[39.990244988000114,16.034247137000037],[39.99822024800008,16.049627997000172],[40.01587975400017,16.05613841400016],[40.03834069100017,16.057928778000147],[40.04721113400015,16.063462632000082],[40.043793165000096,16.07184479400003],[40.04175866000011,16.08161041900017],[40.041351759000094,16.09210846600014],[40.04322350400017,16.10309479400011],[40.050466342000185,16.107245184000035],[40.075694207000225,16.08808014500009],[40.08301842500006,16.083970445000134],[40.092946811000076,16.081732489000146],[40.11101321700008,16.073960679000052],[40.11882571700008,16.061997789000102],[40.11198978000007,16.052883205000043],[40.09538821700019,16.047349351000104],[40.08057701900011,16.034165757000054],[40.077403191000116,16.019029039000074],[40.08366946700019,16.01333242400007],[40.09229576900012,16.00877513200014],[40.099375847000175,16.00210195500007],[40.10962975400011,15.99510325699999],[40.114512566000165,15.985907294000029]]],[[[38.78972415500007,17.668890692000147],[38.85962975400017,17.513251044000143],[38.9290470710001,17.39712148600013],[38.95329837300019,17.31224192900008],[38.96469160200016,17.292303778000086],[38.952647332000225,17.25348541900017],[38.97120201900023,17.223334052000055],[38.99854576900011,17.195949611000103],[39.01246178500011,17.165350653000175],[39.017588738000114,17.12669505400011],[39.026133660000106,17.09308502800009],[39.055918816000116,17.034125067000147],[39.06031334700006,17.014837958],[39.063649936000076,16.974269924000097],[39.06885826900023,16.953924872000087],[39.08448326900022,16.924872137000122],[39.09001712300008,16.884222723000118],[39.094981316000116,16.867743231000063],[39.12794030000006,16.794867255000113],[39.149668816000116,16.71694570500013],[39.135996941000116,16.723781643000066],[39.15593509200019,16.679144598000093],[39.161387566000116,16.65717194200009],[39.16334069100017,16.62815989800019],[39.14486738400015,16.60936107000005],[39.16098066500015,16.56378815300009],[39.15650475400017,16.53815338700012],[39.149668816000116,16.544989325000028],[39.150889519000174,16.52944570500013],[39.16065514400012,16.525132554000134],[39.171641472000175,16.524847723],[39.177012566000116,16.521429755],[39.17554772200006,16.48663971600014],[39.177012566000116,16.477362372000087],[39.18067467500006,16.468207098],[39.18506920700017,16.460516669000086],[39.188975457000225,16.451808986000103],[39.190603061000076,16.43943919500016],[39.189219597000175,16.399888414000102],[39.190603061000076,16.387355861000017],[39.19410241000017,16.378119208000058],[39.20313561300006,16.362209377000127],[39.20484459700017,16.349798895],[39.20337975400011,16.337551174000126],[39.19727623800023,16.31281159100017],[39.197438998000194,16.29857005400008],[39.22803795700011,16.168036200000174],[39.23218834700006,16.123846747000087],[39.23560631600017,16.10871002800009],[39.258962436000076,16.05898672100001],[39.29411868600013,15.928778387000037],[39.31348717500006,15.893947658000016],[39.373220248000194,15.858465887000122],[39.38249759200008,15.842962958],[39.39039147200006,15.836330471000123],[39.42701256600017,15.820379950000031],[39.437022332000225,15.811957098000091],[39.43751061300023,15.799017645000065],[39.43262780000006,15.788153387000179],[39.42644290500019,15.778143622000115],[39.42335045700011,15.76756419500005],[39.42652428500017,15.755804755000083],[39.440684441000116,15.740912177000112],[39.44385826900017,15.733140367000104],[39.44532311300023,15.70652903900016],[39.45085696700008,15.690497137000179],[39.4778751960001,15.66111888199999],[39.460622592000185,15.659613348000121],[39.448741082000225,15.649807033000016],[39.444590691000116,15.63523997600008],[39.45069420700011,15.619574286],[39.4549259770001,15.628119208000113],[39.46404056100019,15.638332424000152],[39.47494550900009,15.642645575000143],[39.48487389400006,15.633856512000094],[39.48275800900015,15.614935614000087],[39.46338951900023,15.605902411000057],[39.440928582000225,15.603176174000097],[39.43018639400023,15.603094794000114],[39.432465040000096,15.59365469],[39.45069420700011,15.565578518],[39.455251498000024,15.531887111000103],[39.45753014400012,15.524603583000086],[39.47169030000012,15.519435940000063],[39.49488366000017,15.517523505000113],[39.51685631600017,15.520086981000032],[39.526377800000056,15.528021552],[39.53394616000011,15.539780992000159],[39.55176842500012,15.542303778000175],[39.57203209700012,15.538397528000088],[39.587168816000116,15.531398830000015],[39.611338738000114,15.49998607000016],[39.66358483200011,15.336167710000083],[39.66773522200006,15.332505601000136],[39.68653405000012,15.325628973000121],[39.6907658210001,15.322211005000112],[39.69304446700019,15.304673570000162],[39.698985222,15.288031317000119],[39.70769290500019,15.273871161000102],[39.71827233200016,15.263902085000112],[39.70337975400011,15.209377346000123],[39.69825280000012,15.123602606000176],[39.70045006600017,15.119533596000123],[39.709808790000096,15.113023179000123],[39.71208743600019,15.109320380000085],[39.71558678500017,15.094061591000113],[39.72510826900006,15.08616771000014],[39.73812910200016,15.085638739000073],[39.752289259000094,15.092596747000142],[39.76221764400012,15.073919989000075],[39.77369225400011,15.071030992000148],[39.789398634000094,15.075588283000087],[39.81128991000011,15.078924872000115],[39.8182072270001,15.083970445000146],[39.823741082000225,15.09564850500014],[39.826182488000114,15.108221747000128],[39.82471764400022,15.116522528000118],[39.8196720710001,15.125799872000156],[39.82349694100011,15.132269598000079],[39.83562259200019,15.140366929000093],[39.85466556100019,15.173488674000126],[39.8567814460001,15.192938544000127],[39.83676191500015,15.226792710000097],[39.82593834700006,15.266913153000116],[39.817718946000156,15.28123607000019],[39.804453972,15.281439520000147],[39.796397332000055,15.266017971000124],[39.789724155,15.257473049000096],[39.78093509200008,15.278143622000114],[39.77849368600001,15.29759349200012],[39.78093509200008,15.349269924000152],[39.77963300900015,15.360419012000165],[39.77458743600001,15.379380601000094],[39.773448113000114,15.390529690000106],[39.77572675900015,15.40273672100008],[39.78126061300006,15.406724351000063],[39.78793379000015,15.408677476000108],[39.793793165000096,15.414740302000098],[39.80046634200002,15.448919989],[39.80713951900011,15.458889065000093],[39.82129967500011,15.448879299000012],[39.82813561300023,15.448879299000012],[39.82911217500012,15.456854559000147],[39.83562259200019,15.476141669000084],[39.8416447270001,15.476141669000084],[39.84205162900011,15.472967841000026],[39.8416447270001,15.463120835000112],[39.852712436000076,15.471584377000156],[39.86597741000017,15.492987372000087],[39.8752547540001,15.504095770000122],[39.8899845710001,15.478216864000116],[39.9100041020001,15.457424221000123],[40.00513756600017,15.381008205000114],[40.01978600400017,15.373765367000175],[40.04281660200016,15.368882554000109],[40.050791863000114,15.366115627000156],[40.06080162900011,15.360093492000146],[40.072438998000194,15.350734768000107],[40.07992597700016,15.340725002000127],[40.08318118600018,15.330226955000155],[40.081309441000116,15.319159247000114],[40.0740666020001,15.30727773600016],[40.056162957000055,15.293402411000086],[40.04721113400015,15.284369208000072],[40.04175866000011,15.27484772300008],[40.026621941000116,15.237209377000084],[40.03777103,15.238185940000148],[40.046234571000156,15.235785223000121],[40.052012566000116,15.229559637000149],[40.05396569100017,15.219224351000049],[40.05152428500011,15.216253973000136],[40.04127037900011,15.212469794000114],[40.03972415500007,15.209295966000141],[40.04151451900023,15.204982815000134],[40.046234571000156,15.200995184000163],[40.04721113400015,15.198431708000072],[40.052500847,15.190130927000082],[40.075938347000175,15.173163153000104],[40.081309441000116,15.164536851000108],[40.084157748000194,15.151800848000148],[40.097178582000055,15.125881252000141],[40.1018172540001,15.113023179000123],[40.101247592000014,15.101874091000113],[40.09848066500015,15.088812567000131],[40.0975041020001,15.075832424000124],[40.1018172540001,15.06464264500012],[40.11426842500012,15.069037177000114],[40.12794030000006,15.066229559000147],[40.13892662900011,15.058661200000103],[40.14332116000011,15.048529364000144],[40.14527428500011,15.04018789300008],[40.149668816000116,15.038316148000119],[40.15430748800023,15.037298895000147],[40.157074415000096,15.031154690000077],[40.15650475400011,15.022040106000174],[40.15088951900023,15.007066148000149],[40.149587436000076,15.000067450000158],[40.15943444100017,14.982245184000176],[40.18262780000012,14.970851955000127],[40.25660241000017,14.94525788000014],[40.272634311000076,14.937567450000131],[40.27995853000007,14.931830145000148],[40.28679446700019,14.9134789080001],[40.30176842500012,14.916896877000111],[40.32455488400015,14.935532945000189],[40.34717858200011,14.944077867000116],[40.36296634200008,14.964097398000177],[40.37574303500011,14.986721096000153],[40.389821811000076,15.00324127800013],[40.38851972700016,14.987372137000108],[40.392100457000225,14.973578192000103],[40.40137780000006,14.96613190300012],[40.417735222000175,14.96906159100014],[40.423024936000076,14.977850653000106],[40.420746290000096,14.989243882000082],[40.42269941500015,14.999009507000109],[40.44068444100017,15.00324127800013],[40.45142662900011,15.003851630000097],[40.4544376960001,15.004461981000148],[40.46485436300006,14.997015692000074],[40.46322675900014,14.993597723000066],[40.46111087300008,14.986558335000097],[40.46314537900017,14.979681708000086],[40.47535241000017,14.976507880000113],[40.48259524800008,14.973578192000103],[40.48560631600017,14.967678127000154],[40.48951256600017,14.96255117400014],[40.49903405000006,14.962225653000118],[40.50562584700006,14.965277411000116],[40.511485222000175,14.970526434000105],[40.51636803500017,14.976629950000088],[40.52019290500019,14.98273346600017],[40.515147332000225,14.99079010600012],[40.51295006600017,14.998765367000159],[40.51270592500012,15.017482815000136],[40.51832116000011,15.012518622000172],[40.52312259200019,15.001695054000095],[40.52702884200019,14.997015692000074],[40.55420983200011,14.990179755000055],[40.55665123800023,14.98167552300012],[40.55583743600002,14.97296784100014],[40.555918816000116,14.964097398000177],[40.56104576900012,14.955389716000111],[40.56869550900015,14.950506903000132],[40.57374108200011,14.951483466000111],[40.57935631600017,14.954413153000134],[40.58838951900012,14.955389716000111],[40.60670006600017,14.952948309000163],[40.61638431100013,14.948675848000148],[40.620616082000225,14.939276434000135],[40.62427819100017,14.900091864000101],[40.62769616000011,14.891994533000087],[40.656586134000094,14.880316473000079],[40.65202884200008,14.897121486000088],[40.66041100400011,14.902573960000124],[40.687673373000194,14.90082428600013],[40.69450931100002,14.896226304000093],[40.697438998000074,14.887396552000142],[40.692718946000156,14.881903387000106],[40.677093946000156,14.887152411000102],[40.67090905000012,14.880316473000079],[40.71876061300023,14.831854559000092],[40.71924889400012,14.834173895000147],[40.722666863000114,14.835923570000146],[40.727386915000096,14.834133205000155],[40.73243248800017,14.82566966400013],[40.733734571000156,14.818182684000151],[40.73243248800017,14.79096100500007],[40.724131707000055,14.768255927000112],[40.723887566000116,14.75706614800019],[40.73243248800017,14.743719794000098],[40.757985873000024,14.726019598000091],[40.76636803500011,14.714585679000137],[40.766449415000096,14.69529857000019],[40.777028842000014,14.701808986000087],[40.78663170700011,14.706040757000109],[40.79688561300023,14.706773179000137],[40.808116082000225,14.702826239000148],[40.808116082000225,14.722072658000101],[40.83106530000011,14.712225653000175],[40.88445071700008,14.714544989000146],[40.91391035200016,14.699123440000108],[40.944672071000156,14.677313544000157],[40.97266686300017,14.669623114000132],[41.04021243600001,14.66742584800015],[41.1560978520001,14.641587632000125],[41.16749108200005,14.636948960000096],[41.1795353520001,14.62177155200011],[41.19564863400015,14.585109768000095],[41.20875084700006,14.568101304000136],[41.253184441000116,14.537665106000176],[41.282969597000054,14.517564195000134],[41.306813998000024,14.488918361000158],[41.32252037900011,14.45453522300012],[41.32829837300008,14.417629299000156],[41.335948113000114,14.402004299000083],[41.352386915000096,14.39215729400014],[41.36898847700016,14.384751695000162],[41.37663821700008,14.376288153000118],[41.38103274800008,14.368801174000154],[41.399668816000116,14.34666575700008],[41.41277103000013,14.306545315000065],[41.433604363000114,14.282131252000113],[41.47966556100002,14.242865302000096],[41.50586998800006,14.213446356000103],[41.51449629000015,14.19920482000019],[41.5213322270001,14.181382554000123],[41.528981967000135,14.148830471000151],[41.53345787900017,14.136948960000112],[41.54175866000017,14.126166083000115],[41.55543053500011,14.115912177000084],[41.58863366000011,14.096177476000049],[41.60596764400012,14.08177317900008],[41.62094160200016,14.06362539300008],[41.65723717500006,13.996486721000124],[41.6678166020001,13.955145575000174],[41.67652428500017,13.94025299700013],[41.74008222700016,13.921535549000154],[41.75342858200005,13.920721747000144],[41.78565514400012,13.932806708000058],[41.798106316000116,13.934393622000087],[41.8060001960001,13.929673570000176],[41.825450066000116,13.896795966000097],[41.841563347000175,13.880316473000107],[41.848968946000156,13.876166083000072],[41.86329186300022,13.872951565000108],[41.874278191000116,13.87319570500014],[41.89649498800005,13.87881094000015],[41.90430748800017,13.879787502000125],[41.92156009200008,13.873114325000158],[41.956797722,13.850531317000103],[41.96973717500012,13.845648505000128],[41.98096764400012,13.837795315000136],[41.98601321700008,13.81948476800008],[41.98894290500007,13.798773505000083],[41.993662957000055,13.783596096000096],[42.03492272200006,13.752264716000141],[42.04135175900014,13.73916250200007],[42.045746290000096,13.738999742000102],[42.068695509000094,13.708441473000079],[42.075531446000156,13.694769598000136],[42.077810092000185,13.693426825000145],[42.08676191500015,13.68952057500016],[42.089203321000156,13.687974351000122],[42.09359785200015,13.676459052000084],[42.09961998800017,13.654364325000103],[42.10661868600002,13.643540757000096],[42.116953972000054,13.640773830000143],[42.129242384000094,13.645575262000122],[42.13949629000015,13.65119049700013],[42.143809441000116,13.65037669500012],[42.147308790000096,13.644110419000157],[42.16456139400023,13.632391669000171],[42.17115319100011,13.626532294000128],[42.1751408210001,13.617254950000174],[42.180837436000076,13.594142971000124],[42.184825066000116,13.585598049000112],[42.208018425000056,13.568548895000148],[42.212168816000116,13.567572333000086],[42.21599368600002,13.553859768000152],[42.223887566000116,13.553941148000135],[42.23023522200006,13.560003973000136],[42.22950280000011,13.56386953300013],[42.22429446700019,13.567613023000161],[42.20997155000012,13.585760809000162],[42.20655358200011,13.591742255000085],[42.204600457000055,13.59349192900008],[42.20142662900011,13.595160223000093],[42.198741082000225,13.598700262000165],[42.19849694100017,13.606024481000176],[42.20167076900023,13.606390692000105],[42.21558678500011,13.605658270000077],[42.2190047540001,13.606024481000176],[42.21973717500006,13.632554429000137],[42.20630944100017,13.643866278000116],[42.189219597,13.652736721000082],[42.167735222000175,13.653794664000129],[42.15992272200011,13.656561591000084],[42.16236412900011,13.662298895000147],[42.171641472000175,13.667181708000129],[42.184825066000116,13.66746653900016],[42.2190047540001,13.640204169000171],[42.25586998800011,13.591986395000134],[42.27035566500015,13.585598049000112],[42.28842207100015,13.574611721000151],[42.2947697270001,13.549953518000152],[42.294688347,13.509222723000093],[42.305918816000116,13.476141669000143],[42.31478925900014,13.461004950000145],[42.32545006600011,13.45457591400013],[42.335215691000116,13.4435082050001],[42.34253991000011,13.418117580000157],[42.35808353000007,13.302476304000123],[42.37232506600011,13.278631903000147],[42.37769616000011,13.2300479190001],[42.3768009770001,13.22549062700014],[42.37940514400012,13.222642320000189],[42.41016686300011,13.204575914000173],[42.43132571700019,13.198391018000121],[42.47681725400017,13.194525458000115],[42.49594160200016,13.197902736000131],[42.50749759200008,13.206976630000128],[42.51441491000017,13.220038153000104],[42.520681186000125,13.235500393000123],[42.53394616000011,13.232570705000114],[42.53777103000007,13.226263739000075],[42.53809655000006,13.217718817000145],[42.541758660000106,13.208197333000143],[42.547699415000146,13.203273830000086],[42.55445397200012,13.19965241100013],[42.559906446000156,13.194322007000068],[42.56218509200019,13.183986721000153],[42.570078972000175,13.170965887000165],[42.6204533210001,13.129339911000102],[42.65544681100002,13.072333075000088],[42.66830488400015,13.064154364000089],[42.68824303500011,13.06134674700013],[42.704600457000225,13.054022528000132],[42.71827233200011,13.044012762000136],[42.729746941000116,13.033148505000069],[42.7376408210001,13.017726955000128],[42.74724368600018,12.961737372000172],[42.76368248800006,12.925238348000136],[42.76758873800006,12.906480210000083],[42.77019290500007,12.87815989800012],[42.77393639400012,12.86212799700013],[42.781260613000114,12.851874091000113],[42.79542076900023,12.848374742000116],[42.8084416020001,12.852280992000118],[42.821543816000165,12.859320380000085],[42.8357853520001,12.864935614000089],[42.84929446700008,12.83783600500007],[42.86890709700006,12.821356512000165],[42.89625084700012,12.813177802000068],[42.93213951900012,12.810939846000082],[42.92741946700019,12.805853583000072],[42.91846764400023,12.79047272300012],[42.92798912900017,12.789740302000096],[42.93572024800008,12.791937567000089],[42.94564863400015,12.79730866100013],[42.944590691000116,12.798488674000154],[42.963226759000094,12.810451565000093],[42.96631920700011,12.810939846000082],[42.978037957000055,12.82396067900008],[42.98731530000012,12.83820221600017],[42.989919467000135,12.847357489000146],[42.989512566000116,12.854071356000105],[42.99146569100017,12.859605210000126],[43.00098717500006,12.864935614000089],[42.99488366000017,12.87490469000008],[42.99350019600009,12.884588934000135],[42.99586022200006,12.893296617000116],[43.00098717500006,12.900295315000108],[43.02947024800008,12.87885163000007],[43.043142123000194,12.865627346000123],[43.048838738000114,12.855292059000119],[43.05323326900006,12.844875393000123],[43.06364993600007,12.836371161000102],[43.07618248800017,12.82876211100016],[43.08643639400006,12.820868231000176],[43.09327233200011,12.807766018000123],[43.09457441500009,12.77753327000012],[43.09717858200011,12.762518622000087],[43.123871290000096,12.715318101000108],[43.11768639400022,12.707912502000125],[42.9003577070001,12.616388652000111],[42.89012577300011,12.615406800000128],[42.87772342900021,12.62507029200016],[42.86883508300022,12.626155498000157],[42.852091919000166,12.61173777200014],[42.82883752400008,12.557632548000143],[42.78522261500021,12.51722157800016],[42.78873661300017,12.487455953000165],[42.7980383710001,12.456088358000143],[42.79225061000008,12.429164937000136],[42.77974491400019,12.422602031000151],[42.74987593600011,12.417072652000144],[42.74140100100007,12.408080953000193],[42.7277584230001,12.388805644000158],[42.69618712600018,12.380125786000164],[42.69148156800023,12.378832093000156],[42.67825240100015,12.360021871000143],[42.52156945800007,12.49624094700016],[42.47568078700007,12.516343079000123],[42.44849898300012,12.523371074000124],[42.430928995000016,12.520322164000104],[42.37945926900014,12.465906880000205],[42.331710246000085,12.51546457900018],[42.2501648360002,12.623985087000163],[42.184949178000096,12.733048197000187],[42.13730350800009,12.773329977000145],[42.08169966700004,12.803922424000149],[42.024648886000165,12.826970113000115],[41.94661747300003,12.876166077000093],[41.894320922000105,12.947970480000095],[41.81659956900009,13.11279246000008],[41.784766887000075,13.164572246000148],[41.75076379400011,13.20831634600013],[41.71179976400006,13.247926330000096],[41.63552535000022,13.309343770000083],[41.53072554500014,13.393783061000121],[41.35709273300009,13.5022777300001],[41.222217244,13.586613668000126],[41.19203820800012,13.615862529000166],[41.121344848,13.73818064400011],[41.0436234950001,13.872487691000103],[40.93779016100015,13.989922384000108],[40.83319706200021,14.105961812000132],[40.77232222500018,14.14836232500015],[40.70441939300022,14.173218689000107],[40.61408899000017,14.185801901000119],[40.58587365700012,14.194690247000137],[40.47983361800013,14.244402974000138],[40.421645955000116,14.273755188000123],[40.35368741900006,14.335240904000157],[40.27705529800019,14.404574076000157],[40.237677857000136,14.427440898000086],[40.19437300700022,14.444649150000146],[40.104559367000064,14.465965678000144],[40.08688602700013,14.465758972000087],[40.03748335800012,14.451522115000115],[40.02322066300016,14.451160380000118],[39.999839471000115,14.455238171000188],[39.97981246000003,14.458730977000174],[39.96151900300018,14.454209289000147],[39.93071984900021,14.428784485000136],[39.91118615700012,14.423410136000172],[39.892272583000164,14.426562399000131],[39.87707971200015,14.433616232000148],[39.82447310400008,14.478135478000153],[39.796877889000115,14.495111186000159],[39.766905558000104,14.504774679000093],[39.735072876000146,14.50371531200011],[39.722985,14.501717001000143],[39.67771203600009,14.49423268600013],[39.65094364400008,14.496583965000154],[39.59947391700021,14.51164764400015],[39.59378951000005,14.514567362000152],[39.58769169200011,14.520277609000102],[39.56733117700017,14.544307149000131],[39.55213830600016,14.556683655000185],[39.53229455600015,14.567587382000154],[39.515034627000176,14.567819926000126],[39.50717981000011,14.547821147000093],[39.489403117000194,14.524489238000141],[39.44857873500021,14.505110575000172],[39.366619914000154,14.482915548000149],[39.347602986000055,14.481804504000152],[39.29344608600016,14.49030527800015],[39.26853804500009,14.486429545000192],[39.25499882000011,14.47441477500014],[39.23319136600017,14.440437520000117],[39.208179973000114,14.440179138000133],[39.187509400000096,14.477205302000186],[39.15846724500008,14.560145976000127],[39.144721313000076,14.581565857000157],[39.12746138500009,14.602210592000162],[39.107307576000174,14.620116476000135],[39.08550012200007,14.633474834000152],[39.07547489400022,14.63740224200012],[39.046949504000196,14.643758444000156],[39.011189412000164,14.647763367000138],[39.009742472000056,14.651225688000181],[38.9968233650001,14.638900859000131],[38.99527307100007,14.622261048000112],[38.9968233650001,14.60358001700014],[38.99382613100008,14.585157369000129],[38.97966678800012,14.567122295000134],[38.95920292100006,14.554642436000137],[38.917551717,14.535703023000094],[38.88458215300008,14.506247457000185],[38.86608199000014,14.49366424600008],[38.82153690600015,14.489478454000134],[38.76190230300003,14.465448914000191],[38.74288537600008,14.461056417000107],[38.72438521400013,14.459402771000159],[38.706195109000106,14.461159770000135],[38.688005005000065,14.467102559000153],[38.66847131300008,14.467722677000125],[38.60656294800023,14.436484273000133],[38.569355916000205,14.426820781000117],[38.492978150000084,14.418294169000191],[38.44367883300018,14.41865590400009],[38.435203898000076,14.416304627000146],[38.426832316000194,14.417183126000097],[38.414429973000125,14.426304016000158],[38.40905562300017,14.435269877000108],[38.40233768800013,14.456870626000166],[38.39427616400016,14.464312032000095],[38.3406360270001,14.492682394000113],[38.32502974400015,14.504593812000136],[38.313350871000154,14.51934743300015],[38.30518599500013,14.536917420000123],[38.295677531000166,14.57487375900014],[38.289269654000094,14.587741191000134],[38.27883101400019,14.595466818000133],[38.26715214000009,14.601771342000147],[38.25764367700012,14.610427144000182],[38.25268273900011,14.620219829000147],[38.24782515400008,14.647711691000124],[38.24584072200011,14.6524743290002],[38.23955692600011,14.667555440000115],[38.22932499200013,14.679725240000124],[38.213925415000034,14.685874736000187],[38.1902576090001,14.687321676000181],[38.13331018000022,14.67776153600009],[38.11522342900011,14.681017151000077],[38.00670292100003,14.72439951600016],[37.99843469300018,14.73091074700014],[37.992750285000085,14.740755107000114],[37.99202681500017,14.74951426200009],[37.98985640400005,14.757317403000116],[37.98003788200012,14.764552104000172],[37.96877242000002,14.766386617000164],[37.96443160000015,14.771192525000172],[37.96226119000008,14.777858785000179],[37.95843713300022,14.785093485000145],[37.95781701700016,14.788194072000094],[37.958127075000135,14.798761902000164],[37.957610311000195,14.802844340000176],[37.95409631400017,14.806254985000107],[37.94438114400012,14.807340189000099],[37.94004032400002,14.81088002500016],[37.920920044000155,14.847518616000118],[37.90882775900016,14.86472686800009],[37.89146447800013,14.879532166000118],[37.85064009600015,14.783879090000127],[37.78563114400018,14.632182923000116],[37.721242310000065,14.481752828000138],[37.65850712100021,14.335172628000109],[37.601042928000226,14.200917257000127],[37.564972778000225,14.116684672000146],[37.55370731600007,14.10549672400019],[37.53572391800017,14.11683970200009],[37.525285278000155,14.128828634000142],[37.5206343990001,14.145442607000149],[37.519497518000065,14.170996603000106],[37.51650028500015,14.180556742000192],[37.50874882000008,14.18812734000015],[37.49851688600009,14.193088277000099],[37.48818160000005,14.194896952000192],[37.475365845000084,14.199573670000163],[37.46937137900014,14.210813294000118],[37.46430708900007,14.235824687000118],[37.45696903400008,14.254609070000114],[37.4526282150002,14.260577698000132],[37.41221724400012,14.293598938000116],[37.39774784300019,14.301737976000126],[37.39495731600002,14.312383321000112],[37.39547408000007,14.335172628000109],[37.39402714000007,14.350081279000149],[37.39020308400015,14.358168640000159],[37.374906860000095,14.373025615000188],[37.337079712000076,14.426355693000177],[37.31816613700008,14.437130228000116],[37.29377486200022,14.457439067000122],[37.2800289310002,14.455449524000185],[37.25822147700009,14.448111470000185],[37.18422082500015,14.449558411000098],[37.14970096900018,14.441936137000113],[37.121072225,14.42082631500017],[37.10587935400011,14.399225566000112],[37.097817831000185,14.379511007000145],[37.094407186000154,14.359150492000126],[37.093787068000125,14.335172628000109],[37.09099654100007,14.314217835000122],[37.083451782000196,14.297733053000128],[37.072703084000096,14.28530487100015],[37.06019738700016,14.276829936000155],[37.05244592300008,14.275331320000147],[37.03425581900009,14.27750173000014],[37.02609094200008,14.276829936000155],[37.011518188000224,14.26507354800016],[37.00562707500015,14.263161519000136],[36.99539514200015,14.264091695000102],[36.986713501000196,14.266830546000135],[36.97885868300008,14.27111969000019],[36.97090051200021,14.276829936000155],[36.9528137610001,14.300962830000117],[36.946922649000186,14.30473521000013],[36.91374637900017,14.309024353000112],[36.848530721000174,14.327782898000109],[36.81638798000014,14.332072042000165],[36.748071737000174,14.332072042000165],[36.73835656800023,14.329798279000144],[36.722130168,14.32005727100011],[36.713655233000196,14.31778350800009],[36.66859338400016,14.31778350800009],[36.648542928000126,14.314579570000205],[36.61764042100012,14.30044606600016],[36.60379113800016,14.29731964100013],[36.58250044700017,14.296751200000159],[36.565653930000195,14.292927144000132],[36.55304488100008,14.28277272600016],[36.54570682800008,14.263161519000136],[36.526379842000125,14.263523254000132],[36.50426232900023,14.447336324000092],[36.48917281100014,14.571230571000141],[36.47397994000019,14.696804301000158],[36.46219903300013,14.793766434000188],[36.45547977700008,14.849068909000138],[36.43511926300002,15.016629741000157],[36.42364709500012,15.111507671000139],[36.425094035000114,15.133444316000109],[36.43315555800021,15.15085927400014],[36.5067427970001,15.22033823700012],[36.52493290200002,15.247907613000109],[36.5755758060001,15.393428447000147],[36.59510949700021,15.424330953000137],[36.62787235500011,15.445621643000138],[36.61412642500008,15.489262390000176],[36.61671024600017,15.531533712000067],[36.6709705000002,15.723124085000123],[36.683269491000175,15.745189921000035],[36.73267216000008,15.794747620000079],[36.75954390500007,15.83748403],[36.80749963400009,15.969310608000013],[36.85266483500018,16.09364410400009],[36.88594445800001,16.184853008000076],[36.90217085700012,16.211001282],[36.94402876800021,16.252859192000145],[36.9542607020002,16.278283997000173],[36.95157352700008,16.299574687000145],[36.933383423000095,16.340089010000057],[36.928215780000215,16.361121317000155],[36.9296627200002,16.38246368400017],[36.933176717000066,16.400395406000044],[36.93369348200011,16.418068747000135],[36.9273130720002,16.435393330000167],[36.926252075000065,16.438274231000136],[36.91209273300015,16.45661936400002],[36.896383098000086,16.472742412000017],[36.883360637000095,16.490415752],[36.87653934700009,16.51356679300001],[36.87726281800005,16.527312724000026],[36.889561808000195,16.56720693000007],[36.89255904100022,16.58653391500003],[36.890698690000214,16.61914174400009],[36.89235233500008,16.63686676000019],[36.90144738800015,16.655728658000115],[36.91664025800017,16.66895782500002],[36.9496098230002,16.691850485000046],[36.960358521000124,16.705648092000086],[36.98495650200002,16.765696106000107],[36.98878055800017,16.825537415000056],[36.99064091000017,16.829981588000166],[36.99787561100007,16.83799143500015],[36.999735962000074,16.842125549000073],[36.99849572700012,16.84796498700014],[36.9926046140001,16.856956686],[36.99126102700015,16.86078074100014],[36.99312137900003,16.900933330000143],[36.99064091000017,16.91364573200009],[36.9819592700002,16.925996399000056],[36.971520630000185,16.93581492100013],[36.96810998500004,16.94661529600016],[36.99239790800007,16.980204977000184],[36.997048787000125,16.999531963000138],[36.99343143700011,17.018652243000034],[36.97358768800015,17.045213929000155],[36.9713139240001,17.05410227500006],[36.97337042000018,17.06208343400006],[36.97348433500011,17.062525533000056],[36.98009891800021,17.07001861600018],[37.000459432000156,17.0726024370001],[37.01637577300008,17.065832825000044],[37.03146529200015,17.055807597000026],[37.04934533700012,17.048779602000124],[37.07508020000008,17.044542135000157],[37.08541548600013,17.040873108000156],[37.12406945800014,17.01803212500006],[37.13399133300001,17.016430155000037],[37.18825158700005,17.024905090000132],[37.203134399000106,17.022786357000072],[37.23341678900013,17.02464670900015],[37.280959107000086,17.05296539300015],[37.309794555000195,17.05534250900011],[37.403432251000105,17.029917705000102],[37.459759562000016,17.0947199510001],[37.468027792000186,17.11466705300002],[37.47278202300018,17.13699127200009],[37.49469283100021,17.174611715000097],[37.50099735500007,17.19507558200017],[37.50564823400012,17.236778463000107],[37.504718058000066,17.254968567000148],[37.493555949000125,17.300753886000095],[37.496036418000095,17.31217437800008],[37.5067851160002,17.318478902],[37.63918013500009,17.358011374000128],[37.67959110500007,17.36343739900012],[37.72041548700016,17.38384958900015],[37.76392704300011,17.459090474],[37.798860311000084,17.477125550000025],[37.81922082500008,17.471699524000126],[37.849193156000155,17.444000957000114],[37.87203413900008,17.437283020000066],[37.895908651000155,17.44255401700012],[37.91554569500008,17.457023418000134],[37.946861613000095,17.49572906500005],[38.01442444300008,17.53934428500004],[38.01538456300008,17.53996409100007],[38.03884566200006,17.548180644000112],[38.06178999800014,17.548077291000183],[38.07119510900017,17.538103739000164],[38.072228638000155,17.52146392900015],[38.07078169800016,17.501465149000026],[38.076466105000094,17.479864401000142],[38.09145227100018,17.480019430000183],[38.10798872800015,17.49381703700014],[38.11842736800011,17.512937317000038],[38.11873742600019,17.523427633],[38.116153605000164,17.530300598000153],[38.11491337100003,17.53665679900017],[38.119460897000096,17.545596822],[38.12535201000017,17.54652699800006],[38.16059533700016,17.557327372000188],[38.17682173600005,17.54756052700004],[38.19201460800011,17.5327293910001],[38.209687948000095,17.52229075100017],[38.23335575300021,17.525701396],[38.25020227000019,17.541824442000078],[38.25278609200021,17.561616516000143],[38.25154585700008,17.58280385400012],[38.25661014800008,17.602544250000093],[38.273870077000225,17.61778879800012],[38.32347945100011,17.6408881630001],[38.34373661300012,17.655926005000182],[38.371331828000194,17.69881744400014],[38.43158654800018,17.85198639000005],[38.459285116000125,17.890743714000095],[38.601573113000114,18.004828192],[38.603688998000194,17.99437083500011],[38.61304772200006,17.983465887000037],[38.620371941000116,17.952582098000093],[38.662933790000096,17.894964911000116],[38.66627037900011,17.88495514500012],[38.667491082000225,17.864447333000086],[38.6697697270001,17.853989976000108],[38.68783613400014,17.82941315300009],[38.69092858200011,17.82363515800013],[38.69581139400006,17.806626695000162],[38.78972415500007,17.668890692000147]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Ethiopia","sov_a3":"ETH","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ethiopia","adm0_a3":"ETH","geou_dif":0,"geounit":"Ethiopia","gu_a3":"ETH","su_dif":0,"subunit":"Ethiopia","su_a3":"ETH","brk_diff":0,"name":"Ethiopia","name_long":"Ethiopia","brk_a3":"ETH","brk_name":"Ethiopia","brk_group":null,"abbrev":"Eth.","postal":"ET","formal_en":"Federal Democratic Republic of Ethiopia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ethiopia","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":1,"mapcolor13":13,"pop_est":85237338,"gdp_md_est":68770,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"ET","iso_a2":"ET","iso_a3":"ETH","iso_n3":"231","un_a3":"231","wb_a2":"ET","wb_a3":"ETH","woe_id":23424808,"woe_id_eh":23424808,"woe_note":"Exact WOE match as country","adm0_a3_is":"ETH","adm0_a3_us":"ETH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ETH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[38.13331018000014,14.67776153600005],[38.19025760900013,14.687321676000137],[38.21392541500006,14.685874736000143],[38.22932499200004,14.679725240000081],[38.239556926000034,14.667555440000074],[38.24584072200008,14.652474329000142],[38.24782515400005,14.647711691000083],[38.25268273900008,14.620219829000106],[38.25764367700014,14.610427144000141],[38.26715214000012,14.60177134200009],[38.27883101400016,14.595466818000077],[38.28926965400012,14.587741191000076],[38.29567753100014,14.574873759000084],[38.305185995000045,14.536917420000078],[38.31335087100007,14.51934743300009],[38.32502974400012,14.504593812000095],[38.34063602700007,14.492682394000056],[38.39427616400013,14.464312032000052],[38.402337688000046,14.456870626000125],[38.40905562300014,14.435269877000055],[38.41442997300004,14.426304016000117],[38.42683231600017,14.41718312600004],[38.435203898000054,14.4163046270001],[38.44367883300009,14.418655904000046],[38.492978150000056,14.418294169000134],[38.56935591600012,14.42682078100006],[38.606562948000196,14.436484273000088],[38.668471313000055,14.467722677000067],[38.688005005000036,14.467102559000097],[38.70619510900008,14.461159770000094],[38.72438521400005,14.459402771000114],[38.74288537600006,14.461056417000066],[38.761902303000056,14.465448914000149],[38.82153690600012,14.489478454000077],[38.866081990000055,14.493664246000023],[38.88458215300005,14.506247457000129],[38.91755171700004,14.535703023000053],[38.95920292100004,14.554642436000092],[38.97966678800009,14.567122295000075],[38.99382613100005,14.585157369000084],[38.99682336500007,14.603580017000084],[38.99527307100004,14.622261048000068],[38.99682336500007,14.638900859000087],[39.009742472000084,14.651225688000125],[39.01118941200008,14.647763367000097],[39.04694950400011,14.643758444000097],[39.07547489400014,14.637402242000078],[39.08550012200004,14.633474834000111],[39.107307576000096,14.620116476000078],[39.12746138500006,14.602210592000105],[39.14472131300005,14.5815658570001],[39.15846724500011,14.560145976000086],[39.18750940000007,14.477205302000142],[39.208179973000085,14.440179138000088],[39.233191366000085,14.44043752000006],[39.25499882000008,14.474414775000087],[39.26853804500007,14.486429545000151],[39.293446086000074,14.490305278000108],[39.34760298600008,14.481804504000095],[39.366619914000125,14.482915548000092],[39.448578735000126,14.505110575000131],[39.48940311700011,14.5244892380001],[39.50717981000014,14.547821147000036],[39.51503462700015,14.56781992600007],[39.53229455600007,14.567587382000097],[39.552138306000124,14.55668365500014],[39.567331177000085,14.544307149000074],[39.58769169200008,14.520277609000061],[39.59378951000008,14.514567362000093],[39.599473917000125,14.511647644000107],[39.6509436440001,14.496583965000113],[39.67771203600006,14.494232686000077],[39.722985,14.501717001000086],[39.73507287600006,14.503715312000054],[39.766905558000076,14.504774679000048],[39.79687788900014,14.495111186000115],[39.82447310400005,14.478135478000096],[39.87707971200012,14.433616232000103],[39.89227258300008,14.42656239900009],[39.91118615700009,14.423410136000127],[39.93071984900012,14.428784485000092],[39.96151900300009,14.454209289000104],[39.97981246000006,14.458730977000128],[39.99983947100009,14.455238171000147],[40.02322066300013,14.451160380000076],[40.03748335800009,14.451522115000074],[40.08688602700005,14.465758972000046],[40.104559367000036,14.465965678000087],[40.19437300700014,14.444649150000101],[40.23767785700011,14.427440898000029],[40.27705529800011,14.404574076000117],[40.35368741900004,14.335240904000116],[40.42164595500009,14.273755188000067],[40.4798336180001,14.244402974000096],[40.58587365700003,14.194690247000082],[40.614088990000084,14.185801901000076],[40.70441939300013,14.173218689000052],[40.772322225000096,14.148362325000093],[40.833197062000124,14.105961812000075],[40.937790161000116,13.989922384000053],[41.04362349500008,13.872487691000046],[41.121344848000035,13.738180644000053],[41.19203820800004,13.615862529000111],[41.222217244000035,13.586613668000068],[41.35709273300005,13.50227773000006],[41.53072554500005,13.393783061000077],[41.635525350000194,13.309343770000039],[41.711799764000034,13.247926330000055],[41.750763794000136,13.208316346000089],[41.784766887000046,13.164572246000091],[41.81659956900012,13.112792460000035],[41.894320922000134,12.94797048000005],[41.94661747300006,12.876166077000036],[42.024648886000136,12.826970113000073],[42.081699667000066,12.803922424000106],[42.13730350800006,12.773329977000088],[42.184949178000124,12.733048197000144],[42.250164836000124,12.623985087000108],[42.33171024600006,12.515464579000124],[42.379459269000044,12.465906880000162],[42.319204549000055,12.386376852000055],[42.2887154550001,12.3210061650001],[42.15549361200009,12.142257386000038],[42.14030074000004,12.105825501000126],[42.132342570000105,12.093474833000073],[42.1087781170001,12.08210601900008],[42.09771936000009,12.070168762000051],[42.0573083910001,11.99627146400006],[41.97468025400008,11.88090987400008],[41.93638553800008,11.827444560000089],[41.92532678200006,11.816437480000102],[41.91147749900011,11.805947164000145],[41.89752486200018,11.79938425700007],[41.88625940000014,11.796025289000056],[41.87778446500005,11.790134176000052],[41.87220341000011,11.775871481000081],[41.862281535000136,11.7630557250001],[41.82300744600008,11.746105856000083],[41.808227987000116,11.736235657000108],[41.79241499800013,11.704454651000075],[41.77866906800011,11.628645325000079],[41.74911014800006,11.537953186000037],[41.74983361900007,11.4833828740001],[41.77567183400009,11.36842865000007],[41.78797082500006,11.259727275000046],[41.78559370900007,11.067387594000081],[41.77928918500009,11.02467702300008],[41.761305786000094,10.996203308000132],[41.76652309800011,10.989466077000117],[41.77381148300009,10.980054423000055],[41.798719523000045,10.970675151000094],[41.916851847000146,10.94705902200009],[41.92026249200006,10.941943055000095],[41.92284631300009,10.936026103000088],[41.92884078000009,10.931065165000135],[41.93752242000005,10.929824931000098],[41.94279341700007,10.933545634000112],[41.94734094200004,10.938532410000064],[41.95416223100011,10.94127126100011],[42.01079960100009,10.943596700000043],[42.03839481600011,10.950443828000104],[42.0694006760001,10.981501363000048],[42.096272420000105,10.990260518000113],[42.1513594970001,10.996203308000132],[42.20272587100004,10.984550273000067],[42.22163944500005,10.98434356700011],[42.23517867000004,10.98770253500004],[42.27083540900014,11.003515523000118],[42.27941369600006,11.00439402200007],[42.297293742000136,11.003773906000092],[42.305872030000046,11.004600729000115],[42.33853153500012,11.015504456000087],[42.36116581300007,11.011887105000099],[42.37666874100012,11.00666778600008],[42.391758260000074,11.005892639000066],[42.41325565600005,11.015943705000097],[42.47971154800007,11.059119364000125],[42.56973189300004,11.086146139000078],[42.60814508900012,11.089087690000099],[42.61562056500008,11.08966013600012],[42.68652063000007,11.073046163000114],[42.71039514100005,11.07211598700006],[42.72961877400007,11.065010478000133],[42.754836873000045,11.010543518000134],[42.771786743000064,10.996461691000105],[42.794110962000104,10.991604106000082],[42.83545210800014,10.987444153000055],[42.86015344200007,10.980416159000143],[42.873279256000046,10.978245748000063],[42.888058716000046,10.9835684210001],[42.898083944000064,10.995686544000094],[42.908109171000085,11.004187317000103],[42.923715454000046,10.99878713000004],[42.91131311100013,10.977367248000121],[42.90118452900009,10.936594544000044],[42.89353641800011,10.919670512000053],[42.876793253000066,10.905743714000067],[42.834831990000055,10.888406270000146],[42.81943241400012,10.872567444000138],[42.81157759600006,10.852620341000119],[42.80765018700009,10.836109721000126],[42.801242310000134,10.820787659000075],[42.78563602700012,10.804406230000026],[42.74987593600008,10.775829162000065],[42.73809370900011,10.7597836300001],[42.72858524600008,10.735495707000096],[42.71897342900007,10.694852194000061],[42.71163537600012,10.675163473000111],[42.699646443000056,10.658549500000092],[42.680216105000056,10.647671611000135],[42.66026900300005,10.64162546900009],[42.647246541000186,10.63222035800004],[42.64859012900006,10.611033020000079],[42.66853723200012,10.5662295540001],[42.695202271000134,10.524707540000122],[42.750392700000134,10.471635844000104],[42.765792277000116,10.451947123000153],[42.776644328000145,10.42461029000013],[42.78946008300005,10.33332387300004],[42.808166951000146,10.269115906000081],[42.83627893100015,10.208086040000097],[42.862323852000145,10.177157694000101],[42.958235311000124,10.11555938700006],[42.98190311700006,10.091633199000057],[42.99988651500013,10.061970927000104],[43.012598918000094,10.029285583000117],[43.020763794000175,9.996419373000094],[43.0398840730001,9.949988098000077],[43.06768599500003,9.922522075000101],[43.10427290900009,9.907923482000044],[43.14985152200006,9.89999115000009],[43.1872135820002,9.883325501000058],[43.20633386200012,9.851208598000127],[43.23527266400009,9.691786804000115],[43.24881188900014,9.652331848000102],[43.27067102100011,9.628353984000086],[43.29769779500003,9.621532695000042],[43.3059660240001,9.617553610000144],[43.3155778410001,9.607657572000065],[43.32508630400008,9.585901795000055],[43.33175256400011,9.575075582000109],[43.34136438000012,9.566393941000058],[43.36151818800016,9.553164774000052],[43.37066491700005,9.544224752000034],[43.393350871000045,9.498930359000028],[43.3994486900001,9.48094696000004],[43.40198083500007,9.447408956000118],[43.406321655000056,9.42865041100012],[43.41903405700003,9.413018290000082],[43.47122725500009,9.382012431000149],[43.548225139000124,9.33607208300016],[43.56682865400006,9.334315084000096],[43.59121993000008,9.343591003000114],[43.607239624000044,9.344624532000097],[43.621502319000115,9.336898906000087],[43.69844852700004,9.267161560000133],[43.78759037300005,9.186701355000082],[43.91492110200005,9.071488749000082],[43.98478763900004,9.008314311000106],[44.02385502100014,8.985525004000124],[44.104056845000116,8.959221701000073],[44.19221683800009,8.930282899000105],[44.280376831000126,8.901395772000072],[44.36853682500009,8.872456970000101],[44.45669681800007,8.843544007000048],[44.54475345900004,8.814605205000078],[44.63301680500007,8.78571807800013],[44.72107344500006,8.756779276000074],[44.80923343900014,8.727840474000104],[44.89729007900007,8.69892751100015],[44.98555342700013,8.670040385000107],[45.07355839000007,8.641153259000149],[45.1617700610002,8.612136943000067],[45.24987837700007,8.583275655000122],[45.33809004700004,8.554414368000081],[45.426146688000074,8.525475566000125],[45.514410034000036,8.49653676400007],[45.51446171100014,8.49653676400007],[45.59843591300005,8.468424784000119],[45.6823584390001,8.44031280500009],[45.76638431800018,8.412226664000059],[45.85020349200005,8.384114685000114],[45.9341260170001,8.356002706000083],[46.01804854400007,8.327890726000135],[46.10191939300006,8.299727072000081],[46.185893595000096,8.27164093000006],[46.269816122000066,8.243554790000118],[46.353842,8.215468648000098],[46.43771285000008,8.187356670000055],[46.52168705200012,8.159244690000023],[46.60571293100014,8.131132711000078],[46.689532105000126,8.102969055000115],[46.773557983000046,8.074908752000098],[46.85737715700014,8.046745097000056],[46.920525757000064,8.0256094370001],[46.97923018400013,7.996567281000111],[47.068113648000065,7.996515605000099],[47.21058557100008,7.996515605000099],[47.366079956000135,7.996515605000099],[47.523589721000064,7.996515605000099],[47.653917684000135,7.996515605000099],[47.83669722500014,7.996515605000099],[47.97916914900014,7.996567281000111],[47.93059330300014,7.949696757000082],[47.88181075000006,7.902826233000056],[47.83318322800005,7.855955709000114],[47.784659058000095,7.809136862000088],[47.73603153500005,7.762214661000129],[47.6875073650001,7.71539581300003],[47.638931519000096,7.668525289000087],[47.59025232000004,7.621654765000144],[47.54167647300005,7.574835917000128],[47.5323881060001,7.565863750000104],[47.49310062700005,7.527913717000075],[47.44452478000005,7.481043193000048],[47.395948934000046,7.434172669000105],[47.34737308700005,7.387302144000074],[47.298797241000045,7.340379944000119],[47.250118042000054,7.293509420000091],[47.20143884300012,7.246690572000162],[47.15286299700011,7.199820048000036],[47.10428715000012,7.153001201000109],[47.05560795100007,7.106079],[47.007032105000064,7.059208476000038],[46.95855961100011,7.012286276000082],[46.9099837650001,6.965467428000068],[46.86140791800011,6.918596903000122],[46.81272871900012,6.87167470400007],[46.76410119600007,6.824881694000069],[46.71557702600012,6.77798533100011],[46.66700118000011,6.731114807000083],[46.61842533400011,6.684244284000059],[46.59806482000004,6.664633077000119],[46.553209676000165,6.62145741800009],[46.5084062090001,6.578307597000062],[46.48804569500009,6.558644715000113],[46.46696287700007,6.538292406000052],[46.423915242000135,6.496736348000098],[46.36293705300016,6.43425954200012],[46.302062215000035,6.371731059000126],[46.24098067300014,6.309228414000059],[46.179899129000034,6.246725769000079],[46.11881758600003,6.184223124000083],[46.05783939600007,6.121720480000107],[45.99680953000012,6.059191996000024],[45.93598636900009,5.996689352000132],[45.82870609600013,5.879513042000099],[45.72142582200007,5.762336731000062],[45.61414554900006,5.645057068000099],[45.51847745300006,5.5405640970001],[45.506865275000166,5.527880758000066],[45.39958500200004,5.410704448000118],[45.29235640400009,5.293476461000068],[45.18502445500013,5.176248474000118],[45.07774418100007,5.059072164000085],[45.020900106000056,4.996879578000075],[45.020641724000086,4.996879578000075],[44.941525106000086,4.911484273000084],[44.91258630400011,4.89939198800009],[44.85837772700006,4.902544251000052],[44.80654626500012,4.905541484000068],[44.754766479000125,4.908564555000083],[44.70288334100013,4.9115617880001],[44.651103556000066,4.914507345000104],[44.599220418000066,4.917504578000106],[44.596807717000104,4.917643031000111],[44.54744063300012,4.920475972000119],[44.495557495000185,4.92347320600004],[44.44372603400012,4.926444601000142],[44.391997925000055,4.929467672000072],[44.34011478700006,4.932439067000075],[44.28833500100012,4.935487977000093],[44.236451863000184,4.938485209000106],[44.18467207800012,4.94143076600011],[44.132788940000125,4.944479675000139],[44.08100915500006,4.94745107100006],[44.02912601700007,4.950448303000157],[43.96897465000011,4.953962301000118],[43.93228438300008,4.94520314600004],[43.84515791900009,4.914352316000063],[43.81518558800013,4.907479350000088],[43.71648360200004,4.884793396000119],[43.64051924600017,4.867352600000089],[43.52848474100005,4.841566060000076],[43.459341675000076,4.808829041000081],[43.346997111000114,4.755653991000131],[43.232792196000105,4.701497091000121],[43.11925907400007,4.647701924000103],[43.03543990100007,4.578894755000106],[42.960405721000086,4.517373962000093],[42.952550903000144,4.507581279000134],[42.945936320000044,4.49685841900012],[42.93250044700011,4.46321706100008],[42.91472375500007,4.393298849000089],[42.89963423700009,4.361104432000047],[42.8701948640001,4.328170991000135],[42.86893843600006,4.326765442000109],[42.8316280520001,4.302322490000066],[42.789770142000116,4.285605164000117],[42.718663371000105,4.27348704000012],[42.568284952000056,4.247855530000066],[42.41501265400012,4.221707255000069],[42.297293742000136,4.201734314000134],[42.221846151000136,4.200959167000121],[42.135339803000136,4.200080668000084],[42.10288700300009,4.191889954000146],[42.06836714700012,4.174552511000059],[42.01183313000007,4.129490662000109],[41.941243123000156,4.086211650000052],[41.923466431000065,4.070553691000086],[41.91664514200011,4.051097514000105],[41.91747196500012,4.020453389000082],[41.91220096800009,4.007973532000094],[41.898455038000066,3.996914774000089],[41.885019165000124,3.977226054000127],[41.83592655400008,3.949449971000092],[41.79138147000015,3.958157450000058],[41.74735315000009,3.981411845000068],[41.69981083200008,3.996914774000089],[41.65743615700006,3.972704367000105],[41.64296675600013,3.969448751000115],[41.62870406100006,3.972084249000133],[41.60224572700008,3.983065491000118],[41.58632938600004,3.984150696000114],[41.506230917000096,3.964384460000133],[41.47977258300011,3.962937520000139],[41.42954309100014,3.94888153100004],[41.3174052330001,3.94242197700008],[41.215292602000034,3.936608378000102],[41.16299605300014,3.942680359000051],[41.114523560000066,3.962343241000084],[41.07008182800007,3.996914774000089],[41.005899699000054,4.086676737000076],[40.97975142400014,4.110757955000111],[40.96362837800006,4.120369771000128],[40.915879354000076,4.136647847000049],[40.89768925000004,4.14592376700007],[40.88735396300012,4.156052348000116],[40.870610799000076,4.186980693000123],[40.84601281700009,4.21498931900004],[40.78575809700004,4.255839539000135],[40.76374393700013,4.284933370000132],[40.700698690000195,4.243514710000085],[40.617499634000126,4.211604512000108],[40.51187300600009,4.171064352000101],[40.38268192600009,4.121377462000098],[40.37699751800005,4.116080627000158],[40.371106404000045,4.099931742000081],[40.36573205600018,4.094867452000102],[40.286873820000096,4.067453104000052],[40.18558801200003,4.032158102000068],[40.182797485000094,4.032003072000109],[40.17980025300016,4.032829895000134],[40.17680301900009,4.034535218000102],[40.16719120300007,4.035465393000067],[40.16626102700013,4.031486308000083],[40.1669844970001,4.02525929800008],[40.16243697100009,4.019394023000089],[40.11716841700007,3.996914774000089],[40.02022342900011,3.950121765000076],[39.934130493000055,3.908703105000114],[39.848450969000055,3.867284444000063],[39.82829716000009,3.842583110000148],[39.808660116000055,3.790286560000126],[39.78075484200008,3.716570130000107],[39.76421838400005,3.685745138000129],[39.74509810400008,3.660578715000099],[39.66644657400008,3.588722636000071],[39.600817505000066,3.52890716600011],[39.574979289000055,3.497901306000088],[39.553171834000125,3.431316223000096],[39.536325317000035,3.405012920000061],[39.50438928200009,3.403333435000092],[39.488472941000055,3.413901266000067],[39.48092818200007,3.427259624000101],[39.47565718600015,3.440798849000075],[39.46697554500008,3.452012635000116],[39.43617639200005,3.462373759000045],[39.311326131000094,3.466094462000058],[39.32052453600011,3.484542948000069],[39.315873657000054,3.494904073000086],[39.30274784300008,3.495679220000085],[39.296337554000104,3.491990003000112],[39.2575826420001,3.469685975000118],[39.219445434000136,3.468704122000062],[39.18048140500008,3.476998190000117],[39.09044144500007,3.518334305000081],[39.07754195100011,3.524256287000057],[39.0679301350001,3.526581726000088],[39.0104659430001,3.514463603000095],[38.994963013000074,3.514256897000038],[38.97997684800009,3.519812114000047],[38.963233684000045,3.522085877000066],[38.92127242000004,3.513998515000068],[38.895227498000054,3.513585103000153],[38.82071008300011,3.533738912000032],[38.722008098000174,3.560403951000083],[38.70371464000004,3.570429179000101],[38.68810835700009,3.58629384400011],[38.66102990700011,3.621950582000096],[38.661443318000124,3.615335999000095],[38.66009973100006,3.601305847000091],[38.660306437000145,3.594458720000119],[38.601912069000086,3.598670349000074],[38.596641073000114,3.602132670000117],[38.59560754400013,3.607507019000082],[38.59374719200014,3.610840149000083],[38.57958784900018,3.605310771000077],[38.5741101480001,3.604561462000078],[38.561087687000054,3.606008403000075],[38.547135051000055,3.609522400000117],[38.54320764100004,3.615387676000111],[38.54124393700016,3.623294170000065],[38.533182414000066,3.632828471000053],[38.51426883900007,3.648512269000107],[38.50899784300009,3.650811869000051],[38.499386027000185,3.646910299000083],[38.49731896900005,3.638590393000115],[38.49814579300005,3.629676208000092],[38.49690555800004,3.623940125000047],[38.4459525960001,3.601667582000089],[38.38993534300005,3.596887512000094],[38.28306848200015,3.608902283000063],[38.17692509000011,3.620917054000116],[38.14560917200009,3.618436585000054],[38.11408654700011,3.610607605000026],[38.10189091000012,3.612648824000075],[38.07884322100006,3.632673442000111],[38.0489742430002,3.641846009000104],[38.036158488000126,3.648925680000033],[38.020758911000144,3.667167461000091],[37.99533410600014,3.707914327000154],[37.97673059100009,3.726440328000095],[37.94593143700012,3.746232402000075],[37.84619592300004,3.810337016000091],[37.751007934000086,3.871521912000105],[37.647758423000084,3.937874451000141],[37.556084432000084,3.996888937000079],[37.4750557860001,4.048978780000127],[37.36095422400007,4.122204285000123],[37.26349247200011,4.184887798000148],[37.16603072100014,4.24754547100008],[37.111873820000085,4.282297872000115],[37.105982706000134,4.283848165000052],[37.09998824000007,4.283693136000096],[37.09482059700008,4.28488169400012],[37.091616659000124,4.290256043000085],[37.086449015000085,4.312476909000125],[37.08252160600006,4.322166239000055],[37.07590702300013,4.331080424000078],[37.06846561700013,4.333457540000026],[37.04841516100015,4.331958924000119],[37.041077108000074,4.336816508000126],[37.02536747300013,4.363274842000123],[37.01565230400007,4.370587057000108],[36.97482792200008,4.379940491000056],[36.90372115100007,4.415778097000086],[36.844086548000064,4.432237041000064],[36.6513334550001,4.430583394000108],[36.64885675900007,4.431179636000152],[36.642961873000104,4.432598775000159],[36.628182414000094,4.44146128400007],[36.61950077300014,4.443373312000091],[36.46302453600003,4.440169372000113],[36.27719608600012,4.4364486690001],[36.26427697700012,4.438205669000084],[36.24608687300008,4.446990662000076],[36.23626835100009,4.449651998000093],[36.225726359000134,4.44960032200008],[36.19130985500009,4.44492360400011],[36.045324767000125,4.44371628500005],[36.04134484800005,4.443683370000073],[36.01840051200008,4.449135234000053],[35.99710982300013,4.462958680000114],[35.95835249900016,4.49685841900012],[35.94047245300004,4.508046367000062],[35.93375451600008,4.522179871000105],[35.93406457600008,4.539207255000122],[35.937061808000124,4.559257711000072],[35.93602827900014,4.578533020000108],[35.92279911300005,4.602071635000101],[35.920835409000176,4.619331563000102],[35.784512981000034,4.764180603000057],[35.7600183510001,4.80572845500005],[35.75164676900005,4.854355977000054],[35.75588423700008,5.06343882300007],[35.76094852700004,5.076332093000076],[35.79918908700006,5.124623718000095],[35.80735396300008,5.144674174000045],[35.80714725700011,5.165267232000133],[35.79825891100012,5.189270936000057],[35.77841516100011,5.227149760000144],[35.77531457500004,5.246580099000127],[35.78203251100007,5.26986033200005],[35.809110962000034,5.309108581000117],[35.80415002500007,5.318022767000045],[35.7493730060001,5.339158427000086],[35.683640584000045,5.379595235000068],[35.65831913300008,5.386416525000115],[35.639818970000135,5.382075704000044],[35.62193892400006,5.373781636000089],[35.59816776500014,5.368743185000113],[35.57387984200011,5.375331930000101],[35.53078169800011,5.410084330000145],[35.50804406700012,5.423416850000081],[35.490164021000055,5.428041890000131],[35.46928674300011,5.430754903000164],[35.44820275900008,5.430754903000164],[35.43021936100007,5.427215068000109],[35.408205200000104,5.412564799000123],[35.36748417200005,5.36804555300013],[35.344953247000035,5.352361756000064],[35.320768677000046,5.348718567000077],[35.30237186700003,5.357374369000127],[35.287489054000105,5.374091696000079],[35.254622843000156,5.425923157000057],[35.250695435000125,5.435147400000062],[35.25183231600005,5.447368876000084],[35.25896366400008,5.458143412000112],[35.26764530400004,5.468556214000046],[35.273639771000035,5.479873352000112],[35.26929895000006,5.491784769000049],[35.26196089700005,5.511886902000113],[35.223410278000074,5.542996114000061],[35.143311808000135,5.58965993300005],[35.0986633710001,5.62247446700006],[35.08822473100008,5.6417497770001],[35.07954309100012,5.699782409000065],[35.06528039500006,5.726447449000105],[34.98435510300004,5.841014099000134],[34.974433228000066,5.863105774000132],[34.97267622900006,5.876257426000109],[34.97453658100011,5.887238668000094],[34.977740519000065,5.898659159000104],[34.97991092900014,5.912844340000063],[34.976810344000114,5.924032288000092],[34.960377238000035,5.94170562700009],[34.95531294800014,5.952557678000048],[34.955726359000145,5.964210714000103],[34.95924035600012,5.975502014000085],[34.96978234900007,5.996689352000132],[34.967963999000176,6.00813131700005],[34.959447062000095,6.061724142000102],[34.95148889200004,6.081180319000097],[34.934435669000095,6.102367656000055],[34.915522095000135,6.119705099000057],[34.898882283000034,6.138670349000108],[34.87996870900008,6.187633769000114],[34.844725382000036,6.248689474000102],[34.83976444500007,6.26868825300005],[34.839040975000046,6.327599386000145],[34.83263309700004,6.353540955000099],[34.7927388920001,6.421676330000111],[34.784263957000064,6.441830139000089],[34.77609908000005,6.499449361000131],[34.75387821500004,6.556422628000121],[34.743542928000124,6.59680776000009],[34.73351770000011,6.637606303000084],[34.726593058000105,6.641947124000055],[34.71450077300011,6.655667216000083],[34.709643188000086,6.674012349000066],[34.70354536900004,6.684916077000125],[34.63553918500008,6.72982289600013],[34.61848596200013,6.736540833000063],[34.596678507000036,6.739202169000079],[34.553993774000105,6.739253845000093],[34.53632043400012,6.743077901000035],[34.52474491400005,6.7528705860001],[34.51792362500004,6.79382415800012],[34.51668339000008,6.798061626000077],[34.51213586400013,6.808267720000046],[34.511102335000146,6.814313863000095],[34.51327274600004,6.815295715000062],[34.52257450400009,6.821781108000025],[34.52474491400005,6.824571635000082],[34.52329797400006,6.844182841000105],[34.51906050600013,6.861649475000149],[34.5123425700001,6.876842346000074],[34.503660929000034,6.890019836000064],[34.439168742000106,6.934874979000142],[34.29757531700005,6.968568013000095],[34.29447473200008,6.972237040000095],[34.287653442000135,6.975285950000128],[34.28072880000008,6.980091858000037],[34.27566451000007,6.997403463000126],[34.270806925000095,7.003397929000073],[34.229879191000066,7.033370260000112],[34.21995731600003,7.046134338000073],[34.21375614400006,7.051973776000068],[34.206004679000046,7.054505920000054],[34.19825321500008,7.06437611900013],[34.1957727460001,7.086958720000069],[34.1957727460001,7.097739748000094],[34.1957727460001,7.129023336000103],[34.19091516100008,7.14953888000008],[34.181406698000096,7.167212219000079],[34.16776412000007,7.175377096000091],[34.151124308000135,7.167470602000051],[34.13241743900005,7.163388163000135],[34.11319380700013,7.177547506000082],[34.085908651000125,7.211498922000104],[34.04001997900008,7.247259013000118],[34.03361210100013,7.250256247000038],[34.03113163200004,7.25537221300003],[34.0306148680001,7.348699850000088],[34.02369022600004,7.382444560000053],[34.0065336510001,7.40993642200003],[33.88240686000006,7.536078593000099],[33.852537882000036,7.553545228000132],[33.842099243000064,7.555922344000095],[33.8214286700001,7.558402812000067],[33.81150679500007,7.560986634000074],[33.761070597000064,7.598141988000066],[33.729444621000084,7.642118632000106],[33.71606042500014,7.657156474000089],[33.70655196200005,7.661859029000069],[33.675029338000115,7.670850729000108],[33.647744181000064,7.688627422000138],[33.63720218900011,7.691314596000083],[33.572296590000064,7.685216777000122],[33.55085087100014,7.691314596000083],[33.54036055500012,7.698911032000139],[33.52651127100006,7.717101136000082],[33.516796102000114,7.726092835000117],[33.506822551000084,7.730950419000052],[33.48847741700013,7.736169739000061],[33.47953739400009,7.743146057000061],[33.4623291420001,7.749502258000092],[33.43649092600008,7.748572082000122],[33.39328942900005,7.739735412000129],[33.384401083000114,7.735446269000064],[33.35980310000013,7.719271545000069],[33.34714237500009,7.718961487000087],[33.29159021000004,7.733069153000115],[33.273503459000096,7.749192200000095],[33.257793824000146,7.767433980000063],[33.24239424700005,7.780714824000071],[33.233919312000126,7.783195292000129],[33.20146651200014,7.788156230000084],[33.172941121000065,7.79962839800011],[33.164517863000064,7.801127014000116],[33.13211674000007,7.79394399000006],[33.12694909700007,7.791566874000111],[33.120851278000146,7.783298645000072],[33.10751875800008,7.785210673000093],[33.08540124500007,7.794977519000042],[33.05832279400005,7.797974752000059],[33.05129480000011,7.801127014000116],[33.04767744900005,7.807276510000078],[33.04462854000019,7.816423238000069],[33.04075280800003,7.824846497000066],[33.02349287900006,7.835078430000138],[33.01501794400008,7.85063303600016],[32.98979984500011,7.917243958000157],[32.99357222500004,7.928147685000127],[33.00680139200006,7.942462057000113],[33.00756888300015,7.944057830000076],[33.01202071100005,7.953314107000067],[33.016774943000144,7.958326722000038],[33.021632528000055,7.965251363000106],[33.02607670000009,7.986283671000124],[33.031140992000125,7.996308899000056],[33.04385339300011,8.013465475000103],[33.100594116000195,8.071033020000144],[33.10658858200014,8.08048980700012],[33.111342814000125,8.09064422600008],[33.11340987200009,8.099093322000073],[33.117543986000044,8.104157614000144],[33.147516317000054,8.109066874000078],[33.16477624500004,8.117050883000061],[33.177281942000036,8.127101949000078],[33.1851367590001,8.14108042400008],[33.1878239340001,8.160898336000074],[33.18472334800009,8.16624684600012],[33.17108077000006,8.175962016000156],[33.167980184000044,8.181362203000033],[33.168290242000126,8.195392355000138],[33.16994388900008,8.205495097000082],[33.17397465000005,8.21459014900006],[33.18162276200013,8.225726420000086],[33.190511109000056,8.232418518000102],[33.199864543000096,8.235519105000051],[33.20689253800008,8.240738423000067],[33.20828780200008,8.253683370000074],[33.19485192800005,8.259238587000084],[33.185756877000074,8.26450958300012],[33.17841882300007,8.27567169200006],[33.171390829000075,8.283113099000076],[33.164362834000144,8.292776591000091],[33.161158894000096,8.304584656000102],[33.16312259900013,8.312051901000132],[33.171804240000085,8.330887960000053],[33.17407800300009,8.343057760000065],[33.172321005000185,8.346520081000094],[33.16332930500005,8.352953797000055],[33.161158894000096,8.356106059000098],[33.16188236500005,8.361506246000076],[33.16684330200013,8.368275859000107],[33.167980184000044,8.372823385000046],[33.167876831000115,8.389721579000138],[33.16953047700014,8.397421366000131],[33.17407800300009,8.404475200000135],[33.1878239340001,8.411038107000122],[33.20291345200013,8.414112854000066],[33.21035485800012,8.420779114000082],[33.2073576260002,8.426592712000058],[33.20642745000009,8.43057179800013],[33.23515954600009,8.455634867000143],[33.252729533000036,8.458167013000136],[33.36135339300006,8.434292501000144],[33.370861857000136,8.437393087000089],[33.384607788000096,8.448012594000076],[33.39210087000003,8.451862488000117],[33.40016239400011,8.45263763500013],[33.41313317800012,8.44971791600004],[33.48051924600014,8.457650249000096],[33.48992435700012,8.462921245000118],[33.490337768000124,8.466512756000098],[33.48475671400007,8.474005839000128],[33.50511722800013,8.47488433800008],[33.52196374500011,8.46532419900008],[33.53705326300013,8.453206075000082],[33.55214278200008,8.446824036000052],[33.571159708000096,8.45013132700005],[33.58537072800004,8.45811533600012],[33.60009851000012,8.463954773000111],[33.620407349000054,8.460699158000125],[33.651671590000035,8.434499206000098],[33.67130863400007,8.400289409000107],[33.69554488100004,8.372875062000062],[33.74102014200014,8.367087301000083],[33.751872193000054,8.368792623000061],[33.756213012000046,8.370136211000116],[33.797657512000114,8.405612081000056],[33.80809615000004,8.41261423800006],[33.8241158450001,8.419487203000116],[33.84085900900004,8.423983052000054],[33.87517216000009,8.427936299000123],[33.93170617700014,8.428143006000084],[33.950309692000076,8.433207296000148],[33.970773559000065,8.445377096000058],[34.06957889800009,8.533614604000135],[34.09024947100011,8.556507263000057],[34.10316857900011,8.579322408000053],[34.1072506590001,8.601530867000136],[34.111850219000075,8.626554667000093],[34.0974733220001,8.91583601900008],[34.083096425000065,9.205117371000071],[34.070697863000134,9.454592111000082],[34.06689172400007,9.531176453000086],[34.09820764200009,9.67972035800004],[34.22192102100007,10.026029968000046],[34.280832153000176,10.080109355000033],[34.30346643000013,10.113544006000112],[34.3050167240001,10.124602763000027],[34.30160607900012,10.148994039000044],[34.301812785000095,10.160285340000115],[34.30460331200004,10.165633850000063],[34.31421512800006,10.175452372000038],[34.31741906800005,10.181265971000116],[34.32589400200004,10.223563131000105],[34.32486047400005,10.268650818000154],[34.276181275000056,10.488714905000052],[34.27173710100004,10.530081889000087],[34.279488566000055,10.565506083000116],[34.36558150200011,10.685782980000099],[34.40423547400013,10.759835307000117],[34.42004846200012,10.780815938000117],[34.437308390000105,10.795672913000146],[34.55781783000015,10.877786763000058],[34.57476770000005,10.884142965000095],[34.587066691000075,10.87928538000007],[34.708092896000096,10.774072164000088],[34.73744510900008,10.755391134000106],[34.75067427600004,10.743944804000094],[34.75697880000007,10.728803609000082],[34.7529480390001,10.698727925000114],[34.7543949790001,10.684129334000133],[34.76483361800018,10.68025360100009],[34.772895142000095,10.688263448000072],[34.78622766100011,10.718985087000107],[34.79852665200008,10.72965627100011],[34.815373169000054,10.731309916000072],[34.827568807000034,10.727770080000097],[34.83852421100005,10.72913950600008],[34.851339966000126,10.745753479000086],[34.85733443200013,10.763556010000116],[34.85743778500006,10.775674134000027],[34.86157189900007,10.787585551000062],[34.87976200300005,10.804612936000083],[34.933815552000105,10.845308126000134],[34.95066206900009,10.869182638000026],[34.95831018000006,10.903418274000032],[34.952832479000165,10.9184302780001],[34.923170207000105,10.939927674000046],[34.913558390000105,10.95297597200009],[34.91428186100012,10.963957214000073],[34.98032434100014,11.155263367000144],[34.98414839700007,11.186398417000104],[34.971435994000046,11.206888123000084],[34.95396936100008,11.226111756000108],[34.94425419100014,11.253241883000072],[34.94714807100013,11.274868470000058],[35.07313521400004,11.548960266000122],[35.0768559170001,11.568648987000074],[35.07437544800012,11.587355855000055],[35.053498169000136,11.628076884000123],[35.04626346800006,11.64864410400011],[35.04812382000006,11.689520163000111],[35.04057906100013,11.7273989870001],[35.04119917800011,11.747604472000091],[35.0482271730001,11.77137563000015],[35.05907922400007,11.795870260000115],[35.072721802000046,11.818866272000065],[35.0880180260001,11.838193258000103],[35.12667199700013,11.862946269000131],[35.14855575200005,11.871229016000129],[35.21555546100006,11.896587627000073],[35.24573449700005,11.92986724800012],[35.247801554000034,11.93963409400007],[35.248378775000106,11.957857794000049],[35.248525024000116,11.962475078000082],[35.251418904000104,11.971725159000087],[35.26041060400007,11.98040679900005],[35.29782434100014,12.001594137000112],[35.31735803200013,12.023711650000108],[35.326039673000075,12.047482809000071],[35.33596154800006,12.102311503000081],[35.3537382400001,12.146029765000051],[35.361283,12.157346904000121],[35.37110152200012,12.165511780000145],[35.39290897600006,12.176725566000087],[35.40334761500009,12.185097148000068],[35.41254602000009,12.198636373000054],[35.41543990000008,12.21114207000005],[35.41812707600013,12.238995667000111],[35.42877242000009,12.266952616000111],[35.61687463300012,12.575150859000145],[35.62586633300015,12.585124410000063],[35.63444462100006,12.588586731000092],[35.653771606000134,12.590033671000086],[35.66245324700009,12.59365102100007],[35.67237512300011,12.60429636600007],[35.675992473000065,12.614528300000146],[35.67743941300006,12.62522532200006],[35.68426070100014,12.650753479000088],[35.684053996000046,12.656076152000125],[35.68767134600006,12.659228414000097],[35.70137031500008,12.66542109800008],[35.70276086500013,12.666049703000056],[35.72839237500011,12.674369608000106],[36.02997603300014,12.717157695000125],[36.03845096800006,12.717467753000106],[36.05064660600004,12.715452373000076],[36.05726119000008,12.712145081000074],[36.06304895000005,12.70790761400012],[36.072144002000186,12.703050029000096],[36.099429159000124,12.695660299000096],[36.11503544100014,12.701809795000159],[36.12361372900011,12.721446839000093],[36.143250773000034,12.83255116800008],[36.14304406800005,12.85694244400011],[36.13870324700007,12.871851094000064],[36.115345500000046,12.911719463000097],[36.1144153240001,12.933888652000121],[36.12599084500005,12.950967712000065],[36.1408736570001,12.965540467000023],[36.149865356000134,12.980242411000106],[36.14955529800005,12.988820700000133],[36.14635135900005,12.997373149000069],[36.13839318800012,13.013315328000104],[36.13694624900012,13.0324356080001],[36.233581177000076,13.361640320000047],[36.38209924300014,13.571033224000132],[36.391297648000034,13.599351909000118],[36.39481164600011,13.655937602000108],[36.398428996000064,13.67603973400007],[36.439941586000145,13.776176290000123],[36.45816695100007,13.820139466000114],[36.45537642400012,13.87000722200007],[36.4380131420001,13.919952495000132],[36.43253544100014,13.944498799000101],[36.43212203000012,13.969923604000115],[36.43656620300004,13.991214295000104],[36.52637984200004,14.263523254000091],[36.54570682800011,14.263161519000093],[36.55304488100006,14.282772726000118],[36.56565393000011,14.292927144000073],[36.582500447000086,14.296751200000115],[36.603791138000076,14.29731964100007],[36.61764042100015,14.30044606600012],[36.64854292800004,14.314579570000149],[36.668593384000076,14.317783508000034],[36.71365523300011,14.317783508000034],[36.72213016800003,14.320057271000053],[36.7383565680002,14.3297982790001],[36.74807173700014,14.332072042000107],[36.816387980000115,14.332072042000107],[36.84853072100014,14.327782898000052],[36.91374637900009,14.309024353000055],[36.9469226490001,14.30473521000009],[36.95281376100007,14.30096283000006],[36.97090051200018,14.276829936000096],[36.978858683000055,14.271119690000148],[36.98671350100011,14.266830546000094],[36.99539514200006,14.264091695000047],[37.00562707500006,14.263161519000093],[37.01151818800014,14.265073548000101],[37.02609094200011,14.276829936000096],[37.03425581900012,14.27750173000008],[37.05244592300005,14.275331320000092],[37.060197387000066,14.276829936000096],[37.07270308400007,14.285304871000108],[37.08345178200017,14.297733053000087],[37.09099654100004,14.314217835000065],[37.09378706800009,14.335172628000064],[37.09440718600007,14.359150492000069],[37.0978178310001,14.379511007000104],[37.10587935400008,14.39922556600007],[37.121072225000034,14.420826315000127],[37.149700969000094,14.441936137000068],[37.18422082500007,14.44955841100004],[37.25822147700006,14.448111470000141],[37.28002893100012,14.455449524000128],[37.29377486200013,14.457439067000081],[37.31816613700005,14.437130228000058],[37.337079712000104,14.426355693000133],[37.37490686000006,14.373025615000131],[37.39020308400011,14.358168640000102],[37.39402714000005,14.350081279000108],[37.39547408000004,14.335172628000064],[37.394957316000045,14.312383321000068],[37.397747843000104,14.301737976000068],[37.41221724400009,14.293598938000057],[37.452628215000175,14.260577698000091],[37.45696903400005,14.254609070000072],[37.464307089000044,14.235824687000061],[37.46937137900005,14.210813294000076],[37.475365845000056,14.199573670000106],[37.48818160000007,14.194896952000136],[37.49851688600006,14.193088277000056],[37.50874882000005,14.188127340000108],[37.516500285000056,14.180556742000135],[37.519497518000094,14.170996603000049],[37.52063439900007,14.145442607000106],[37.525285278000126,14.128828634000087],[37.53572391800009,14.116839702000036],[37.55370731600004,14.105496724000147],[37.56497277800019,14.11668467200009],[37.6010429280002,14.200917257000086],[37.65850712100013,14.335172628000064],[37.72124231000009,14.481752828000081],[37.78563114400009,14.632182923000059],[37.85064009600012,14.78387909000007],[37.89146447800004,14.879532166000061],[37.90882775900013,14.864726868000046],[37.92092004400013,14.847518616000073],[37.94004032400005,14.810880025000102],[37.94438114400003,14.807340189000058],[37.95409631400014,14.80625498500005],[37.9576103110001,14.802844340000123],[37.95812707500005,14.798761902000107],[37.95781701700014,14.788194072000053],[37.958437133000125,14.785093485000104],[37.96226119000005,14.777858785000134],[37.96443160000007,14.771192525000115],[37.96877242000005,14.766386617000123],[37.98003788200009,14.764552104000115],[37.98985640400008,14.757317403000059],[37.992026815000145,14.749514262000046],[37.99275028500006,14.740755107000055],[37.99843469300009,14.730910747000081],[38.006702921000056,14.724399516000107],[38.11522342900014,14.681017151000033],[38.13331018000014,14.67776153600005]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Gabon","sov_a3":"GAB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Gabon","adm0_a3":"GAB","geou_dif":0,"geounit":"Gabon","gu_a3":"GAB","su_dif":0,"subunit":"Gabon","su_a3":"GAB","brk_diff":0,"name":"Gabon","name_long":"Gabon","brk_a3":"GAB","brk_name":"Gabon","brk_group":null,"abbrev":"Gabon","postal":"GA","formal_en":"Gabonese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Gabon","name_alt":null,"mapcolor7":6,"mapcolor8":2,"mapcolor9":5,"mapcolor13":5,"pop_est":1514993,"gdp_md_est":21110,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"GB","iso_a2":"GA","iso_a3":"GAB","iso_n3":"266","un_a3":"266","wb_a2":"GA","wb_a3":"GAB","woe_id":23424822,"woe_id_eh":23424822,"woe_note":"Exact WOE match as country","adm0_a3_is":"GAB","adm0_a3_us":"GAB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1,"filename":"GAB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.02100670700014,-0.755547783999901],[9.006602410000085,-0.762139580999886],[8.992930535000141,-0.761163018999909],[8.977305535000141,-0.750583591999856],[8.96851647200009,-0.737399997999901],[8.968435092000107,-0.72486744599999],[8.971202019000144,-0.711521091999899],[8.971202019000144,-0.695896091999913],[8.96664472700013,-0.687269789999903],[8.95289147200009,-0.672784112999949],[8.94947350400008,-0.661716404],[8.94947350400008,-0.650648695999891],[8.951670769000087,-0.642998955999943],[8.963145379000139,-0.627618096999825],[8.974375847000118,-0.616957289999888],[8.996104363000113,-0.603692315999851],[9.004649285000113,-0.592868747999944],[9.010020379000082,-0.602797132999868],[9.010427280000101,-0.611016533999944],[9.005869988000141,-0.616957289999888],[8.997243686000047,-0.62021249799993],[8.997243686000047,-0.627618096999825],[9.033457879000139,-0.63543059699991],[9.041514519000087,-0.669854424999841],[9.037852410000141,-0.71209075299987],[9.03874759200005,-0.743747653999847],[9.02100670700014,-0.755547783999901]]],[[[9.384085597000107,0.809628532000104],[9.379642662000037,0.806971468000171],[9.376785597000065,0.809985597000164],[9.384085597000107,0.809628532000104]]],[[[11.752749878000145,2.281877340000136],[11.768149455000042,2.280172017000083],[11.802152547000077,2.284822896000136],[11.889795776000113,2.28208404500019],[11.966173543000139,2.288750305000107],[12.041931193000039,2.283996073000125],[12.10073897300012,2.288491923000137],[12.118825724000118,2.287820130000071],[12.159236694000098,2.281412252000123],[12.202644897000113,2.279551901000119],[12.222592000000134,2.28332428000013],[12.261039266000067,2.296191712000137],[12.280779663000118,2.299033915000024],[12.291218303000079,2.301772766000141],[12.312095581000051,2.312934875000082],[12.321604045000127,2.314071757000178],[12.334006388000091,2.309575907000081],[12.366769246000104,2.289577128000133],[12.384855997000102,2.285908102000136],[12.43994307400007,2.298517151000155],[12.478390340000116,2.295881653000151],[12.53420088700008,2.277691549000025],[12.551460816000088,2.272265523000129],[12.574818563000122,2.277691549000025],[12.590734904000044,2.265702616000141],[12.614609416000121,2.256917623000163],[12.74989831500011,2.236712138000172],[12.770155477000088,2.240691224000145],[12.784108113000087,2.249527893000149],[12.795580282000117,2.258777975000072],[12.808189331000051,2.264048971000108],[12.825242554000084,2.259243062000095],[12.848083537000065,2.249321187000106],[12.867823934000057,2.244980368000113],[12.876402222000081,2.257176005000048],[12.890458211000094,2.251388245000072],[12.903170613000041,2.250354716000089],[12.914539429000115,2.254540507000115],[12.924771362000113,2.264048971000108],[12.954847046000083,2.253248596000077],[12.972210327000113,2.250354716000089],[12.98316573100007,2.25345530200012],[12.996911662000116,2.260018209000023],[13.012931355000148,2.256297505000191],[13.040939982000081,2.244205220000196],[13.083521362000054,2.249527893000149],[13.093029826000134,2.25345530200012],[13.113080281000066,2.272730611000071],[13.12465580200012,2.281050517000125],[13.133337443000071,2.284512838000154],[13.16382653800008,2.283169251000103],[13.191731812000057,2.277691549000025],[13.205684448000056,2.266891175000083],[13.212299032000118,2.264048971000108],[13.22160078900015,2.263945618000164],[13.235966837000149,2.269888407000095],[13.242891479000065,2.27149037700012],[13.254156941000105,2.266891175000083],[13.269659871000016,2.255729066000143],[13.284646037000101,2.242241516000163],[13.294154500000076,2.230510967000086],[13.298391968000118,2.215834859000097],[13.294257854000108,2.185759175000044],[13.294567912000076,2.161057841000115],[13.294877970000073,2.101087342000127],[13.291363973000102,2.068944601000098],[13.281132040000045,2.044966736000077],[13.245475301000056,2.025303854000128],[13.239480835000107,2.020730489000186],[13.221290731000066,2.000835062000092],[13.216019735000145,1.997166036000095],[13.206924682000079,1.993574524000109],[13.206614624000082,1.985151266000116],[13.212299032000118,1.966418559000047],[13.210231974000067,1.956315816000185],[13.205064331000074,1.9493394980001],[13.198449748000087,1.943112488000097],[13.191731812000057,1.935076803000115],[13.184910523000099,1.923449606000147],[13.17819258600008,1.907791646000191],[13.166307006000125,1.904381002000164],[13.162172892000113,1.899833476000055],[13.17509200000012,1.88210846000004],[13.183153523000101,1.864047546000123],[13.188321167000112,1.856580302000097],[13.192455281000036,1.844746399000172],[13.191008341000042,1.828726705000036],[13.180673055000057,1.792010600000139],[13.173024943000142,1.776946920000142],[13.162793010000087,1.763640239000139],[13.150183960000048,1.756302186000056],[13.157522013000062,1.73914560900009],[13.154628133000072,1.721653137000132],[13.147806844000113,1.702868754000121],[13.143982788000072,1.681810608000191],[13.149977254000106,1.636283671000129],[13.146773315000132,1.61225413000011],[13.129616740000072,1.59246205700012],[13.14594649300011,1.563419902000049],[13.16444665500012,1.537840068000094],[13.171267945000094,1.545255636000107],[13.182636759000076,1.536548157000126],[13.189664754000091,1.52474009200013],[13.190904989000018,1.511071676000199],[13.184910523000099,1.496886495000069],[13.205477743000074,1.486370341000097],[13.223461141000058,1.438001200000159],[13.239480835000107,1.42797597300013],[13.238447306000126,1.419630229000077],[13.239790893000105,1.372346293000035],[13.239170776000035,1.364181417000097],[13.239584188000066,1.356507467000114],[13.242891479000065,1.349789531000098],[13.251263062000106,1.337645569000188],[13.249092651000126,1.332374573000152],[13.242994832000079,1.32886057600011],[13.233589721000016,1.308810120000146],[13.219327026000144,1.299198303000139],[13.202377156000123,1.293410543000163],[13.188321167000112,1.29144683900013],[13.18036299600007,1.284832255000055],[13.176642293000043,1.270879619000141],[13.169200887000045,1.258580628000104],[13.150183960000048,1.256616923000166],[13.16031254000012,1.24772857700016],[13.172301473000061,1.242870993000054],[13.181809936000064,1.236463114000017],[13.184885479000057,1.222623178000106],[13.184910523000099,1.222510478000103],[13.195452515000056,1.221115214000122],[13.215813028000099,1.224370829000108],[13.250229533000038,1.221787008000206],[13.270900106000054,1.226024476000163],[13.289193562000037,1.233982646000129],[13.307797079000096,1.256720276000109],[13.325987183000109,1.2593040980002],[13.342937052000138,1.263851624000054],[13.349344930000084,1.281576640000068],[13.357406453000067,1.289069723000182],[13.376940145000077,1.294444071000143],[13.398747599000103,1.29692454000012],[13.413940470000112,1.295529277000142],[13.448873739000106,1.283075257000164],[13.479776245000096,1.27713246600014],[13.509955281000115,1.277287496000099],[13.543441609000098,1.283488668000174],[13.556360718000121,1.29279042600011],[13.579201701000043,1.323486226000057],[13.615065145000072,1.337438863000131],[13.628087605000104,1.348135884000143],[13.64224694800015,1.357385966000066],[13.662090699000146,1.359194641000059],[13.671495808000088,1.358781230000048],[13.680694214000113,1.359401347000102],[13.699091023000108,1.362786154000119],[13.705550578000071,1.365990092000089],[13.717539510000108,1.375369364000136],[13.724360799000067,1.377953187000145],[13.72942508900013,1.376919658000162],[13.741103963000114,1.371312764000052],[13.744101196000116,1.370279236000158],[13.754849894000131,1.374335836000071],[13.75815718600006,1.376506246000062],[13.77035282400007,1.400432435000141],[13.779757935000104,1.426270650000163],[13.780584757000042,1.431024882000074],[13.794744100000088,1.43443552700009],[13.983569784000082,1.416839702000104],[14.000829712000098,1.413015645000158],[14.01901981600011,1.402137757000119],[14.033799275000147,1.387642517000174],[14.049508911000117,1.376402893000119],[14.070696248000074,1.37511098300017],[14.10645634000008,1.388934428000042],[14.124439738000147,1.39358530700018],[14.14449019300011,1.391621603000146],[14.183867635000126,1.380847066000044],[14.19254927600008,1.374955953000125],[14.198957153000038,1.368315532000039],[14.206501913000068,1.362837830000132],[14.218387491000101,1.360564066000123],[14.219938873000103,1.35501787800014],[14.22148807800005,1.349479472000112],[14.230066365000084,1.343950093000103],[14.241435181000071,1.339195862000111],[14.252183878000066,1.33082428000013],[14.2581783440001,1.3196621700001],[14.273061157000143,1.257237040000134],[14.27574833200009,1.231088766000141],[14.274714803000109,1.155641174000053],[14.282879679000104,1.130113017000099],[14.298485962000141,1.109235739000127],[14.34644169100008,1.087118225000125],[14.360084269000083,1.06675771000009],[14.375690552000037,1.015598043000097],[14.386749308000049,0.992240296000133],[14.400805298000051,0.970329489],[14.417548462000099,0.95058909100004],[14.436565389000066,0.933277486000037],[14.46043990000007,0.921236878000144],[14.468088013000056,0.913227031000162],[14.466227661000117,0.899636129],[14.457029256000055,0.890334371000066],[14.445143676000098,0.883254700000123],[14.43759891700006,0.875141500000041],[14.44100956200009,0.862790833000162],[14.447624146000095,0.816230367000117],[14.413414347000097,0.775044251000125],[14.367318970000069,0.735511780000095],[14.3383801680001,0.693912252000175],[14.33538293400008,0.642597555000137],[14.328768351000093,0.621203512000122],[14.254664348000063,0.557124736000034],[14.250943644000131,0.551853739000094],[14.245259237000084,0.547719625000155],[14.231823365000139,0.542551982000148],[14.181593872000093,0.539864808000132],[14.12547326600014,0.546169332000133],[14.075967244000111,0.539451396000032],[14.04558150200006,0.49728342700007],[14.056846964000101,0.476406149000184],[14.063048137000093,0.45594228100012],[14.059120727000106,0.435271709000105],[14.040413859000125,0.413774313000161],[13.966516561000077,0.373053284000193],[13.945225871000076,0.350419006000067],[13.909775838000144,0.270940653000153],[13.875772745000091,0.2202977500001],[13.871225220000069,0.196423239000111],[13.87618615700012,0.171308492000179],[13.885901327000056,0.140302633000076],[13.890655559000066,0.11591135700013],[13.8948930250001,0.043667704000114],[13.901404257000081,0.036846415000156],[13.913083130000132,0.036536357000074],[13.925072062000112,0.034365946000179],[13.932926880000137,0.022066956000131],[13.931376586000113,0.011628316000099],[13.917217245000073,-0.006665140999871],[13.912979777000118,-0.01658701599986],[13.91494348200004,-0.031263121999856],[13.920111125000062,-0.042425230999967],[13.921144653000026,-0.052967223999858],[13.910706014000082,-0.065886331999863],[13.900474081000112,-0.07560150099998],[13.888053549000063,-0.092088146999856],[13.84269982900011,-0.152289325999931],[13.832157837000068,-0.177094013999877],[13.8312276610001,-0.205412699999954],[13.877426392000046,-0.260499775999932],[13.883420858000079,-0.264943948999843],[13.889828735000036,-0.263703714999821],[13.903057902000114,-0.258846129999881],[13.907295369000082,-0.254401956999885],[13.909982544000087,-0.247167255999912],[13.913806600000042,-0.240552672999826],[13.921558064000038,-0.237865497999891],[13.95731815600007,-0.24199961299999],[13.967033325000102,-0.245823668999847],[13.9750948490001,-0.25254160599988],[13.982329549000069,-0.262256774999827],[14.018709758000057,-0.252644958999895],[14.058810669000138,-0.258846129999881],[14.095397583000077,-0.276622822999826],[14.121442505000061,-0.30215098099994],[14.138289022000038,-0.336360778999847],[14.150588012000071,-0.376461689999843],[14.157926066000073,-0.417699482999936],[14.159683065000136,-0.455113219999816],[14.176529582000114,-0.446121520999867],[14.193066040000105,-0.440437112999916],[14.210222616000067,-0.440333759999902],[14.228516073000065,-0.447775166999833],[14.244742472000068,-0.451599222999945],[14.260038696,-0.446431578999864],[14.27554162600012,-0.439093525999866],[14.292698201000093,-0.436406350999931],[14.32060347500007,-0.44446787499983],[14.35863732900009,-0.461314391999892],[14.39233036300007,-0.482398375999836],[14.414447876000082,-0.512164000999817],[14.454238729000082,-0.539552510999854],[14.466537719000115,-0.552678324999832],[14.489998820000096,-0.600944111999837],[14.49899051900013,-0.630916441999887],[14.492169230000087,-0.663369241999902],[14.451551554000046,-0.751219176999953],[14.445970499000026,-0.775713805999914],[14.446177205000083,-0.800311787999817],[14.4528951420001,-0.825736591999913],[14.457132609000068,-0.856122333999878],[14.445867147000115,-0.877516377999967],[14.42819380600011,-0.89694671599986],[14.412794230000115,-0.921544697999934],[14.40752323400008,-0.944489032999883],[14.402562296000044,-0.987690530999828],[14.392020304000084,-1.008981220999985],[14.391813598000113,-1.023347269999817],[14.420338989000072,-1.101792093999919],[14.430984334000073,-1.123392842999891],[14.434394979000075,-1.13507171699986],[14.433568156000149,-1.143650003999895],[14.42798710100004,-1.160909931999967],[14.428297160000113,-1.169488219999906],[14.435325154000054,-1.181683857999829],[14.439434821000077,-1.18573308799985],[14.456409139000073,-1.202457782999957],[14.464160604000083,-1.215376891999966],[14.465814250000106,-1.224368592],[14.464780721000123,-1.255581155999906],[14.460749959000053,-1.278008727999804],[14.457132609000068,-1.287620543999822],[14.451551554000046,-1.298162536999882],[14.444316854000077,-1.306327412999806],[14.436048625000124,-1.312735290999925],[14.429123982000133,-1.319969990999894],[14.426333455000105,-1.331028746999905],[14.432327922000127,-1.350149026999901],[14.447004028,-1.365341897999841],[14.48214400200007,-1.388596292999935],[14.487725057000093,-1.409370218999896],[14.480593709000033,-1.420842386999908],[14.467881307000084,-1.429007262999917],[14.456305786000144,-1.440169372999947],[14.452688436000072,-1.449574482999907],[14.451034790000108,-1.473655699999867],[14.438425741000087,-1.502594501999823],[14.451551554000046,-1.515616962999857],[14.462713664000091,-1.533600361999845],[14.463127075000102,-1.548689880999845],[14.43036421700009,-1.554891051999931],[14.423956340000132,-1.563572692999884],[14.419925578000061,-1.575148212999835],[14.413207642000119,-1.585276793999881],[14.403699178000037,-1.592201436999872],[14.394294067000088,-1.596852314999921],[14.373830200000045,-1.604087014999891],[14.364838501000094,-1.612045185999946],[14.37145308400008,-1.619486591999888],[14.390883422000057,-1.630338642999931],[14.402975708000042,-1.670852965999927],[14.420028931000076,-1.676123961999878],[14.441112915000103,-1.679637959999837],[14.448761027000105,-1.686252542999824],[14.425196574000095,-1.700515237999809],[14.413104289000103,-1.713951110999858],[14.40669641100007,-1.735551859999831],[14.403595825000112,-1.815236917999954],[14.397498006000149,-1.840971780999865],[14.396877889000079,-1.849446715999861],[14.404526001000077,-1.893061624999816],[14.397291301000108,-1.906807555999847],[14.370729614000084,-1.921276956999876],[14.368570502000068,-1.92212027199993],[14.252183878000066,-1.967579039999947],[14.245052531000056,-1.974813740999835],[14.240091593000102,-1.982255146999847],[14.237611124000125,-1.991143492999867],[14.238127889000054,-2.002615660999965],[14.232856892000115,-2.012020771999843],[14.233477010000085,-2.018221943999919],[14.238644653000108,-2.023389586999826],[14.246809530000121,-2.029384052999859],[14.251667114000043,-2.037858987999854],[14.25063358500006,-2.047780862999858],[14.244019002000073,-2.067521260999825],[14.238437947000136,-2.120231221999844],[14.233787068000083,-2.134493915999911],[14.226965780000114,-2.141315205999874],[14.209705851000136,-2.147413024999835],[14.204331502000088,-2.152167256999817],[14.20319462100008,-2.161985778999877],[14.209395793000056,-2.179865823999847],[14.209189087000084,-2.187203877999835],[14.195856568000067,-2.201776630999888],[14.161543416000143,-2.214282328999886],[14.14800419100007,-2.224824319999854],[14.151208130000041,-2.25903411899985],[14.226965780000114,-2.323112894999866],[14.234407186000055,-2.354945576999825],[14.230066365000084,-2.352155049999851],[14.18231734200009,-2.363317158999891],[14.172395467000086,-2.36786468499983],[14.163300415000037,-2.373962503999792],[14.144180135000026,-2.390188902999881],[14.136015259000118,-2.398767191999909],[14.13146773200009,-2.408895771999866],[14.13188114400009,-2.435147399999906],[14.124853149000074,-2.443829039999869],[14.115241333000085,-2.45137379899991],[14.106766398000076,-2.460262145999834],[14.1005534600001,-2.478064601999861],[14.096017700000061,-2.49106129899981],[14.090023234000114,-2.498606057999851],[14.080928181000047,-2.499949644999901],[14.071006307000061,-2.495815530999892],[14.055606730000079,-2.486927184999956],[14.04558150200006,-2.486100361999846],[14.039276978000117,-2.487237243999942],[13.993284953000028,-2.501603291999857],[13.985636840000069,-2.501499938999842],[13.979228963000109,-2.495608825999838],[13.976231730000109,-2.477315368999868],[13.967033325000102,-2.470597431999835],[13.95731815600007,-2.470597431999835],[13.947706339000149,-2.474938252999905],[13.930446411000077,-2.485376891999848],[13.909465779000072,-2.48971771199993],[13.884971151000116,-2.488477477999893],[13.862130168000107,-2.480932718999853],[13.84580041500007,-2.466566670999839],[13.846937296000078,-2.461605732999885],[13.847660767000065,-2.423055115],[13.855102173000091,-2.41427012099993],[13.875876098000047,-2.403831481999887],[13.890035441000093,-2.373652445999895],[13.901921020000115,-2.366314391999893],[13.90615848700014,-2.359803160999832],[13.892515910000071,-2.341199645999879],[13.882180624000057,-2.333861592999966],[13.871638631000081,-2.328797302999817],[13.863887166000069,-2.321459247999911],[13.860579875000068,-2.293657327999866],[13.853861938000136,-2.283838805999892],[13.835568481000081,-2.265235290999925],[13.823269491000133,-2.246838480999926],[13.800531860000149,-2.200433043999837],[13.791436808000098,-2.15909189899989],[13.782755167000118,-2.138007913999871],[13.770662882000039,-2.119094339999918],[13.756916952000097,-2.105865173999845],[13.746374959000065,-2.098320413999886],[13.74317102000009,-2.097080178999846],[13.740897257000142,-2.1024545289999],[13.720019979000085,-2.133563740999946],[13.70947798600011,-2.153510843999882],[13.706790812000094,-2.164569599999879],[13.705240519000085,-2.184309997999847],[13.701571492000085,-2.194748635999886],[13.693509969000075,-2.20591074599983],[13.617442261000122,-2.279601338999839],[13.610724324000103,-2.289936624999854],[13.607830445000104,-2.311123961999897],[13.60338627100009,-2.320012307999917],[13.593361044000062,-2.326833597999879],[13.569486532000099,-2.33448170899986],[13.557600952000143,-2.340476175999882],[13.547679077000053,-2.349364522999807],[13.533106323000112,-2.367657978999873],[13.524631389000092,-2.376029561999928],[13.492178589000076,-2.398457132999923],[13.482256713000083,-2.408068948999855],[13.476779012000094,-2.417680764999943],[13.47398848500012,-2.426982523999968],[13.469440959000108,-2.435044046999877],[13.45889896600005,-2.441038512999895],[13.453731323000028,-2.439384866999859],[13.44535974100006,-2.427085875999822],[13.438951864000103,-2.425432230999859],[13.4248958740001,-2.429773050999842],[13.419728231000107,-2.429669697999912],[13.398024130000094,-2.426155699999867],[13.378800497000071,-2.43090993199985],[13.361023804000126,-2.428842874999972],[13.18666752100006,-2.364143981999902],[13.1768489990001,-2.361973571999911],[13.165273478000072,-2.36352386399993],[13.14615319800015,-2.374685973999959],[13.135197795000096,-2.376959736999893],[13.114320516000106,-2.371895445999826],[13.049828329000093,-2.342646585999873],[13.025023641000132,-2.338202412999948],[13.012104533000127,-2.342026467999816],[12.994008157000025,-2.360122844999822],[12.982442261000074,-2.371688740999858],[12.969006388000139,-2.372412210999855],[12.966112508000036,-2.366417744999836],[12.971280152000134,-2.357115986999901],[12.982442261000074,-2.347710875999852],[12.987093140000127,-2.340682880999836],[12.991123901000035,-2.332311298999869],[12.993914428000096,-2.323526305999877],[12.99463789900008,-2.314948017999853],[12.996704956000144,-2.304819437999896],[13.002286010000063,-2.296654560999869],[13.010657592000143,-2.287766213999944],[13.00817712400007,-2.276500752999979],[13.003422892000088,-2.275467224],[12.997325073000127,-2.275673928999879],[12.990193725000097,-2.268025817999899],[12.987506551000138,-2.259964293999815],[12.982442261000074,-2.232989196999881],[12.973037150000037,-2.221517028999855],[12.954330282000058,-2.190924580999933],[12.945648640000087,-2.182449645999853],[12.921360717000082,-2.194851988999815],[12.907098022000097,-2.195368753999858],[12.902757202000117,-2.177592060999913],[12.90203373200012,-2.167256774999913],[12.898209676000107,-2.160228779999898],[12.885083862000043,-2.147413024999835],[12.882706746000082,-2.140798441999834],[12.884463745000062,-2.134493915999911],[12.888701212000115,-2.12694915699987],[12.890561564000109,-2.122194925999878],[12.89448897300008,-2.115580342999877],[12.895109091000052,-2.109792581999983],[12.876298869000038,-2.104934997999876],[12.874128458000143,-2.099767354999884],[12.875161987000126,-2.093772887999847],[12.875161987000126,-2.08912200899988],[12.876918986000106,-2.088708596999879],[12.87299157700005,-2.06586761399987],[12.868547403000036,-2.059873147999838],[12.85294112200009,-2.044576924999888],[12.84715336100004,-2.037238870999971],[12.838161661000072,-2.016051533999843],[12.816147502000092,-1.943497822999831],[12.804571980000048,-1.919106546999885],[12.787725463000072,-1.907531025999844],[12.745454142000085,-1.893888447999927],[12.741014228000067,-1.890672439999932],[12.674967489000037,-1.84283213199987],[12.632386109000064,-1.825158792999872],[12.583190145000088,-1.826502379999838],[12.572441447000074,-1.830429788999979],[12.523452189000066,-1.863295999999835],[12.517354370000106,-1.868980406999867],[12.512393432000067,-1.875491637999929],[12.506295613000106,-1.888204039999976],[12.504538615000115,-1.896885680999858],[12.503815145000118,-1.907737731999902],[12.49947432400006,-1.917866312999862],[12.486555217000044,-1.924894307999949],[12.468985229000083,-1.919416604999881],[12.450009333000109,-1.899298347999903],[12.438082722000075,-1.886653747999958],[12.42692061300005,-1.884069925999867],[12.423096557000093,-1.897609150999855],[12.431468140000078,-2.005406188999928],[12.440046427000112,-2.04581715899991],[12.460820353000143,-2.077856546999925],[12.499784383000131,-2.095529886999827],[12.495340210000052,-2.112789814999829],[12.47735681100005,-2.141108499999902],[12.470225464000093,-2.156301370999927],[12.46836511300009,-2.17108083099994],[12.475496460000045,-2.212421976999792],[12.468571818000072,-2.241154072999976],[12.455135946000098,-2.275570576999854],[12.44790124500014,-2.307920022999923],[12.45927006000005,-2.329934182999907],[12.062291707000071,-2.414993590999828],[12.031285848000039,-2.411582945999982],[12.000693400000046,-2.390602314999811],[11.966793661000109,-2.348537698999877],[11.948706909000094,-2.335205179999846],[11.938371623000108,-2.329107360999885],[11.90705570500009,-2.344610290999896],[11.864887736000126,-2.358149515999884],[11.828817586000127,-2.365280863999828],[11.806596720000101,-2.374169209999835],[11.772696981000081,-2.405381774999825],[11.756057170000076,-2.415096943999941],[11.739520711000068,-2.413753356999891],[11.721330607000112,-2.404141539999884],[11.687534220000146,-2.37768320699989],[11.67988610900008,-2.36879486099987],[11.675855346000077,-2.360423278999804],[11.66965417500009,-2.352671813999976],[11.655908244000045,-2.345643818999889],[11.605368693000116,-2.330347594999835],[11.568368367000062,-2.329107360999885],[11.566197957000071,-2.329727477999867],[11.558239787000105,-2.349364522999807],[11.579737183000047,-2.407655537999844],[11.583354533000147,-2.429669697999912],[11.576119833000062,-2.485066832999863],[11.576533244000075,-2.502533467999825],[11.584284708000098,-2.52361745199984],[11.609606160000084,-2.564028421999822],[11.619011271000119,-2.586455992999916],[11.624385620000083,-2.611984150999859],[11.624385620000083,-2.632758076999977],[11.619528036000077,-2.653532002999839],[11.61032963000008,-2.67885345499991],[11.537465861000072,-2.797709247999904],[11.535565759000065,-2.804995726999906],[11.525580282000135,-2.843287861999897],[11.530747925000128,-2.866748962999878],[11.5479045000001,-2.863855081999887],[11.588418823000012,-2.835433044999859],[11.616840861000126,-2.826751402999903],[11.636787964000062,-2.83326263399988],[11.6531177170001,-2.851659443999878],[11.687637573000073,-2.901785583999896],[11.763705281000057,-2.98260752399986],[11.778381388000128,-3.005655211999823],[11.778381388000128,-3.027152607999852],[11.753680054000114,-3.042345478999877],[11.730632365000048,-3.04472259499984],[11.716886433000127,-3.043585712999828],[11.706447795000088,-3.049890238999921],[11.693218628000096,-3.074694925999879],[11.688257691000047,-3.092264912999852],[11.687327515000078,-3.161511331999947],[11.68567386900014,-3.167195739999897],[11.687534220000146,-3.171019795999854],[11.696112508000084,-3.179598082999959],[11.703863973000097,-3.185385843999853],[11.760501343000072,-3.209053649999873],[11.781585327000101,-3.221662698999808],[11.821892944000068,-3.254838967999916],[11.858273153000141,-3.272098896999821],[11.905712117000121,-3.285121357999856],[11.944366089000113,-3.303208109999858],[11.954908081000099,-3.335454202999912],[11.94147220900004,-3.356951598999871],[11.898374064000052,-3.389197692999915],[11.884834839000062,-3.413278909999875],[11.827784057000144,-3.548051045999969],[11.824993530000086,-3.57120208699996],[11.834915405000089,-3.592079365999936],[11.855585978000107,-3.604378355999884],[11.879253784000126,-3.612026468999872],[11.898477417000066,-3.622361754999872],[11.905505412000082,-3.643549092999833],[11.89765059400014,-3.666080016999942],[11.879977254000039,-3.687164000999886],[11.85837650600007,-3.70328704799995],[11.840807756000117,-3.709988529999862],[11.83832605000012,-3.710935159999849],[11.819722534000078,-3.710418395999894],[11.762154989000123,-3.693985290999848],[11.74210453200007,-3.691711527999828],[11.687637573000073,-3.69873952299983],[11.665933471000073,-3.691401468999842],[11.649190307000111,-3.673314717999829],[11.569815307000056,-3.544950459999853],[11.53271162900009,-3.516528421999823],[11.482585490000076,-3.509293721999853],[11.454990275000057,-3.528207294999888],[11.436283407000076,-3.559006448999866],[11.41395918800012,-3.587635191999852],[11.375821981000058,-3.600347594999889],[11.33468754000009,-3.608615823999841],[11.30244144700012,-3.628459573999834],[11.272675822000108,-3.652954202999893],[11.238569377000147,-3.675071715999891],[11.212524455000079,-3.697292581999847],[11.196091349000113,-3.728815205999894],[11.129622713000089,-3.907856984999867],[11.114016304062915,-3.93685618990304],[11.09463743800012,-3.924303667999894],[11.070161256000091,-3.908805891999947],[11.021289032000084,-3.857816384999821],[11.00570722700013,-3.793145440999837],[10.996267123000107,-3.775485934999921],[10.989756707000112,-3.757419528999904],[10.986013217000078,-3.737562757999811],[10.98462975400011,-3.714613539999903],[10.963780198000107,-3.69148859299986],[10.9303528,-3.667124891999975],[10.807659947000076,-3.562935150999849],[10.646433931000075,-3.451913638999883],[10.63835696700005,-3.40691497199991],[10.639496290000096,-3.391534112999963],[10.645355665000125,-3.374200127999885],[10.648936394000089,-3.351739190999893],[10.64486738400012,-3.332452080999857],[10.635427280000044,-3.313653252999984],[10.620938035000052,-3.301916576999844],[10.598723272000086,-3.288806890999965],[10.569980576000091,-3.266523421999821],[10.553011443000088,-3.258689177999897],[10.549107478000108,-3.239092446999905],[10.511566602000102,-3.197360934999907],[10.49823125800009,-3.181594201999829],[10.479974548000143,-3.162001725999843],[10.452593535000117,-3.133278856999979],[10.346978523000104,-3.044487688999851],[10.219143369000108,-2.945247356999872],[10.1682518800001,-2.903445676999851],[10.038814667000054,-2.809258049999954],[9.978548995000068,-2.758172937999817],[9.902437516000106,-2.70043104599992],[9.725108269000089,-2.481377862999821],[9.703461134000094,-2.443047783999887],[9.721690300000091,-2.456801039999903],[9.750254754000082,-2.487237237999864],[9.771820509000094,-2.498304945999976],[9.794932488000141,-2.500909112999892],[9.808604363000084,-2.492282809999892],[9.821136915000068,-2.476169528999918],[9.840098504000082,-2.456719658999916],[9.837575717000078,-2.470798434999864],[9.832855665000068,-2.482028903999946],[9.830088738000086,-2.49277109199987],[9.833262566000142,-2.505140882999825],[9.838552280000044,-2.503350518999838],[9.842539910000113,-2.50058359199987],[9.845469597000147,-2.4965145809999],[9.847504102000073,-2.491469007999882],[9.84717858200014,-2.509698174999855],[9.850271030000044,-2.528415622999916],[9.85873457100007,-2.538832289999916],[9.874278191000087,-2.532484632999967],[9.9100041020001,-2.545017184999878],[9.915782097000147,-2.549574476999837],[9.917816602000102,-2.549981377999842],[9.932627800000148,-2.572849216999842],[9.936289910000113,-2.594496351999922],[9.943125847000147,-2.594496351999922],[9.944997592000107,-2.584730726999894],[9.94857832100007,-2.580254815999837],[9.954437696000127,-2.581149998],[9.963633660000085,-2.587090752999856],[9.964854363000113,-2.583428643999894],[9.964854363000113,-2.581719658999972],[9.965830925000091,-2.580987237999864],[9.970469597000118,-2.580254815999837],[9.973643425000091,-2.616875908999859],[9.977305535000113,-2.62867604],[9.984141472000147,-2.621026299999897],[9.99203535200013,-2.61638762799987],[10.001231316000087,-2.614353122999844],[10.01140384200005,-2.615004164999888],[10.00806725400011,-2.629082940999836],[10.01197350400011,-2.632419528999861],[10.020762566000087,-2.628513278999946],[10.0319116550001,-2.621270440999837],[10.039561394000117,-2.613213799999983],[10.047129754000082,-2.594821872999944],[10.05298912900011,-2.587090752999856],[10.067393425000091,-2.581801039999874],[10.089366082000083,-2.578545830999914],[10.110118035000085,-2.577894789999959],[10.12126712300011,-2.580254815999837],[10.147471550000148,-2.577569268999937],[10.156586134000122,-2.572930596999825],[10.162282748000107,-2.560316664999931],[10.143239780000044,-2.548923434999963],[10.135508660000113,-2.54615650799991],[10.137461785000056,-2.52743905999985],[10.117930535000085,-2.517510674999855],[10.093597852000102,-2.5082333309999],[10.080332879000082,-2.491469007999882],[10.073496941000059,-2.491469007999882],[10.080332879000082,-2.509209893999866],[10.09400475400011,-2.560316664999931],[10.07984459700009,-2.558200778999932],[10.072032097000118,-2.55087656],[10.067230665000125,-2.542901299999869],[10.062836134000122,-2.539320570999905],[10.05486087300008,-2.535088799999883],[10.043630405000071,-2.516289971999839],[10.035655144000117,-2.511976820999919],[10.028086785000085,-2.51091887799987],[10.015798373000107,-2.506280205999857],[10.008311394000144,-2.505140882999825],[10.004649285000111,-2.507745049999912],[10.005056186000104,-2.51360442499994],[10.006195509000037,-2.520196221999839],[10.00521894600007,-2.525079033999901],[9.998383009000065,-2.532647393999852],[9.991953972000147,-2.542168877999842],[9.9869897800001,-2.551934502999885],[9.984141472000147,-2.560316664999931],[9.970062696000099,-2.554294528999932],[9.957367384000037,-2.54615650799991],[9.961273634000122,-2.535902601999894],[9.95533287900011,-2.51523202899996],[9.957367384000037,-2.505140882999825],[9.966563347000118,-2.500420830999985],[9.97828209700009,-2.500746351999837],[9.988129102000128,-2.499932549999826],[9.991547071000127,-2.491469007999882],[9.979746941000142,-2.481703382999925],[9.954112175000091,-2.473239841999899],[9.926524285000085,-2.468519789999888],[9.908946160000141,-2.470391533999859],[9.886403842000078,-2.424248955999843],[9.884776238000141,-2.416436455999929],[9.874522332000112,-2.409356377999885],[9.869639519000145,-2.409356377999885],[9.867442254000139,-2.419528904],[9.863780144000087,-2.420179945999877],[9.84929446700005,-2.427911065999879],[9.847504102000073,-2.429457289999917],[9.822032097000147,-2.424248955999843],[9.79818769600007,-2.442152601999894],[9.775401238000143,-2.464043877999913],[9.751963738000084,-2.470391533999859],[9.74236087300011,-2.465020440999979],[9.733246290000094,-2.455824476999837],[9.72673587300011,-2.444512627999842],[9.72396894600007,-2.432549737999821],[9.726410352000102,-2.429375908999845],[9.73804772200009,-2.418715101999823],[9.741465691000116,-2.416436455999929],[9.74708092500012,-2.413344007999854],[9.73926842500012,-2.407159112999892],[9.728200717000078,-2.402032158999958],[9.72396894600007,-2.40211353999986],[9.72234134200005,-2.393812757999882],[9.723887566000085,-2.385837498],[9.72396894600007,-2.379082940999879],[9.717784050000091,-2.374769789999888],[9.709320509000065,-2.373467705999886],[9.70281009200005,-2.374118747999929],[9.698415561000076,-2.377536716999842],[9.696625196000099,-2.38445403399993],[9.709239129000082,-2.408135674999869],[9.71265709700009,-2.42294687299993],[9.703461134000094,-2.435723565999879],[9.687673373000052,-2.428887627999856],[9.645843946000127,-2.378838799999841],[9.628428582000083,-2.367364190999979],[9.63770592500012,-2.381768487999949],[9.659841342000107,-2.408461195999891],[9.668793165000125,-2.422621351999823],[9.646494988000086,-2.407647393999881],[9.619802280000073,-2.381768487999949],[9.597015821000127,-2.352227471999981],[9.586761915000094,-2.326429945999877],[9.586761915000094,-2.320896091999856],[9.579112175000091,-2.298028252999842],[9.57325280000012,-2.207207940999865],[9.56576582100007,-2.192559502999856],[9.466563347000118,-2.094903252999856],[9.43978925900012,-2.079766533999859],[9.409434441000144,-2.043715101999808],[9.395192905000044,-2.03232187299993],[9.397959832000112,-2.028415622999844],[9.402028842000078,-2.018487237999835],[9.380381707000083,-2.012627862999892],[9.368011915000125,-1.995212498],[9.354177280000044,-1.957126559999935],[9.312266472000118,-1.915948174999869],[9.305674675000148,-1.905531507999882],[9.301117384000122,-1.903985283999844],[9.291677280000101,-1.895440362999821],[9.283213738000143,-1.885918877999913],[9.281911655000073,-1.881442966999856],[9.271250847000118,-1.876641533999859],[9.273610873000079,-1.866957289999902],[9.280935092000078,-1.860446872999901],[9.285329623000079,-1.864353122999986],[9.292735222000147,-1.882582289999888],[9.311045769000117,-1.89674244599999],[9.333750847000147,-1.903985283999844],[9.354177280000044,-1.901788018999852],[9.351817254000082,-1.905857028999904],[9.350596550000148,-1.906670830999914],[9.349375847000147,-1.906996351999837],[9.346690300000148,-1.909356377999884],[9.359711134000065,-1.914727471999853],[9.366872592000107,-1.909356377999884],[9.374522332000112,-1.888278903999875],[9.3807072270001,-1.888278903999875],[9.388194207000055,-1.909356377999884],[9.382334832000112,-1.91139088299991],[9.37794030000012,-1.914157809999963],[9.375498894000089,-1.918633721999853],[9.374522332000112,-1.925713799999897],[9.37794030000012,-1.931817315999893],[9.384776238000143,-1.927422783999901],[9.389903191000059,-1.919691664999903],[9.388194207000055,-1.915622653999847],[9.439463738000086,-1.915622653999847],[9.467295769000144,-1.922458591999856],[9.481293165000125,-1.939141533999901],[9.47877037900011,-1.959567966999956],[9.45655358200014,-1.977634372999972],[9.46851647200009,-1.990817966999927],[9.474945509000092,-1.99602629999984],[9.480723504000139,-1.99814218499985],[9.502452019000115,-2.000095309999892],[9.50806725400011,-2.001560153999861],[9.510590040000125,-2.007500908999873],[9.510508660000141,-2.024834893999952],[9.51189212300005,-2.03232187299993],[9.53223717500012,-2.045830987999906],[9.532888217000078,-2.050551039999917],[9.537852410000113,-2.062758070999891],[9.543223504000082,-2.070896091999899],[9.545909050000148,-2.063246351999879],[9.549082879000139,-2.058200778999932],[9.563161655000073,-2.052911065999865],[9.566416863000114,-2.049574476999851],[9.563731316000142,-2.031670830999886],[9.557139519000144,-2.011651299999826],[9.548513217000078,-1.997735283999844],[9.539073113000143,-1.99814218499985],[9.528168165000068,-1.985446872999887],[9.503672722000147,-1.968519789999902],[9.498057488000143,-1.957126559999935],[9.509776238000114,-1.939548434999906],[9.519297722000118,-1.933038018999909],[9.51775149800008,-1.926446221999925],[9.485199415000125,-1.870375257999825],[9.466644727000102,-1.851332289999917],[9.45655358200014,-1.86093515399989],[9.441172722000088,-1.851983330999872],[9.436045769000087,-1.847263278999947],[9.432465040000125,-1.856622002999899],[9.432383660000141,-1.866143487999892],[9.436045769000087,-1.888278903999875],[9.417328321000127,-1.872979424999912],[9.391937696000099,-1.826348565999893],[9.374522332000112,-1.81926848799985],[9.367198113000114,-1.825860283999916],[9.362478061000104,-1.837579033999901],[9.35954837300008,-1.848890882999967],[9.357188347000147,-1.854099216999884],[9.347666863000143,-1.85719166499986],[9.342133009000122,-1.865329684999963],[9.340017123000107,-1.87615325299987],[9.340505405000101,-1.888278903999875],[9.333262566000087,-1.880954684999949],[9.32553144600007,-1.87615325299987],[9.31666100400011,-1.873955987999878],[9.305674675000148,-1.873955987999878],[9.317230665000096,-1.854099216999884],[9.314952019000117,-1.842868747999873],[9.292165561000076,-1.826104424999855],[9.270192905000073,-1.840427341999842],[9.255381707000112,-1.835219007999854],[9.246918165000068,-1.815524997999987],[9.244313998000052,-1.785821221999882],[9.245127800000063,-1.774102471999896],[9.249359571000099,-1.756605726999851],[9.250336134000065,-1.748223565999965],[9.250336134000065,-1.706963799999841],[9.248545769000089,-1.696058851999851],[9.239756707000112,-1.673760674999912],[9.236827019000089,-1.662286065999865],[9.23796634200005,-1.631280205999843],[9.236827019000089,-1.621270440999865],[9.22006269600007,-1.579766533999873],[9.197276238000141,-1.548272393999852],[9.141856316000087,-1.490980726999823],[9.016612175000148,-1.315850518999852],[9.007090691000144,-1.298516533999859],[8.996918165000125,-1.273695570999891],[8.988291863000114,-1.251722914999888],[8.983571811000104,-1.230889580999985],[8.996918165000125,-1.257582289999917],[9.007090691000144,-1.287367445999934],[9.019379102000102,-1.304782809999907],[9.03874759200005,-1.326429945999976],[9.05420983200014,-1.324883721999939],[9.06983483200014,-1.331719658999873],[9.082286004000139,-1.343519790000016],[9.092539910000085,-1.375095309999921],[9.115977410000141,-1.399509372999887],[9.12134850400011,-1.419040622999859],[9.127614780000073,-1.428887627999885],[9.159190300000148,-1.468031507999825],[9.172618035000141,-1.476739190999908],[9.178721550000148,-1.483330987999878],[9.22681725400011,-1.522067967],[9.235199415000068,-1.526543877999885],[9.264659050000148,-1.535332940999936],[9.274180535000141,-1.659600518999895],[9.28028405000012,-1.675062757999825],[9.292165561000076,-1.66969166499986],[9.295095248000107,-1.659437757999839],[9.285980665000125,-1.645765882999896],[9.288747592000078,-1.638360283999986],[9.297536655000044,-1.634535414999974],[9.30502363400012,-1.638441664999888],[9.310394727000073,-1.646661065999879],[9.312510613000084,-1.655450127999856],[9.327484571000099,-1.638360283999986],[9.350922071000099,-1.624769789999945],[9.377696160000085,-1.616469007999868],[9.402028842000078,-1.614434502999842],[9.396250847000088,-1.630059502999828],[9.395030144000089,-1.646905205999829],[9.400645379000082,-1.661390882999882],[9.41553795700014,-1.66969166499986],[9.422618035000085,-1.635918877999956],[9.42212975400011,-1.619398695999976],[9.41553795700014,-1.607598565999837],[9.446787957000112,-1.603285415],[9.529551629000139,-1.614434502999842],[9.559580925000091,-1.607598565999837],[9.518321160000141,-1.591729424999897],[9.502452019000115,-1.579847914999945],[9.490570509000065,-1.559828382999882],[9.481293165000125,-1.522556247999986],[9.480153842000078,-1.500746351999851],[9.484385613000114,-1.484144789999888],[9.476247592000078,-1.481622002999885],[9.45655358200014,-1.470472914999945],[9.452159050000148,-1.469903252999884],[9.439463738000086,-1.470472914999945],[9.432302280000073,-1.473077080999943],[9.431813998000079,-1.479424737999892],[9.436045769000087,-1.494317315999851],[9.43458092500012,-1.504571221999953],[9.431162957000112,-1.509698174999883],[9.426931186000104,-1.513116143999895],[9.402028842000078,-1.546482028999876],[9.37907962300008,-1.562920830999871],[9.351898634000063,-1.570977471999981],[9.319346550000091,-1.573500257999825],[9.312673373000052,-1.574883721999896],[9.306325717000107,-1.576918226999837],[9.29981530000012,-1.577406507999825],[9.292165561000076,-1.573500257999825],[9.286631707000083,-1.56609465899983],[9.285411004000139,-1.549981377999856],[9.278330925000091,-1.535332940999936],[9.27751712300008,-1.526136976999879],[9.278330925000091,-1.507989190999879],[9.274180535000141,-1.503024997999916],[9.26498457100007,-1.500664971999868],[9.255381707000112,-1.499444268999852],[9.250336134000065,-1.497735283999859],[9.248545769000089,-1.48202890399989],[9.256602410000113,-1.471449476999922],[9.271250847000118,-1.46550872199991],[9.288747592000078,-1.463636976999851],[9.297129754000139,-1.457696221999825],[9.298838738000141,-1.444105726999865],[9.294769727000073,-1.429945570999934],[9.285329623000079,-1.42205169099995],[9.285329623000079,-1.415785414999917],[9.294281446000099,-1.413344007999882],[9.318207227000073,-1.411065362999906],[9.326182488000114,-1.408379815999837],[9.33415774800008,-1.398614190999893],[9.33863366000014,-1.379652601999879],[9.354502800000148,-1.350518487999821],[9.351247592000107,-1.333265882999825],[9.33301842500012,-1.298516533999859],[9.338389519000089,-1.292413018999951],[9.339366082000055,-1.287774346999839],[9.335459832000083,-1.283379815999865],[9.326182488000114,-1.278008721999981],[9.325694207000112,-1.297946872999887],[9.33301842500012,-1.350192966999899],[9.330251498000079,-1.360935153999989],[9.322927280000071,-1.370863539999903],[9.312998894000145,-1.378187757999825],[9.30225670700014,-1.381117445999933],[9.293223504000139,-1.378024997999859],[9.284922722000147,-1.364190362999864],[9.278330925000091,-1.360609632999967],[9.262054884000063,-1.366143487999906],[9.251963738000086,-1.380303643999838],[9.243988477000128,-1.394952080999843],[9.233653191000116,-1.401625257999896],[9.18572024800011,-1.410577080999829],[9.169118686000076,-1.408379815999837],[9.157969597000147,-1.395196221999882],[9.154795769000089,-1.374200127999927],[9.156504754000082,-1.354750257999839],[9.159190300000148,-1.346368096999882],[9.156911655000101,-1.344984632999811],[9.150075717000078,-1.338636976999865],[9.146494988000086,-1.332289320999934],[9.141774936000104,-1.334079684999921],[9.135996941000114,-1.337985934999921],[9.126231316000085,-1.342054945999962],[9.124278191000142,-1.345961195999877],[9.119883660000141,-1.348565362999878],[9.107106967000107,-1.346368096999882],[9.092539910000085,-1.338067315999893],[9.057383660000113,-1.311700127999984],[9.042165561000047,-1.305922132999839],[9.030039910000141,-1.299086195999919],[9.02125084700009,-1.282484632999868],[9.018809441000144,-1.262139580999957],[9.025726759000063,-1.243910414999974],[9.022471550000091,-1.240329684999921],[9.020762566000087,-1.237562757999868],[9.018321160000141,-1.230889580999985],[9.037771030000073,-1.216729424999883],[9.033050977000045,-1.193454684999864],[9.01579837300005,-1.169854424999841],[8.997243686000047,-1.155205987999821],[9.009776238000143,-1.185316664999945],[9.003916863000086,-1.21233489399998],[9.000498894000089,-1.22136809699991],[8.994151238000141,-1.220391533999845],[8.990896030000101,-1.20964934699991],[8.983571811000104,-1.148370049999983],[8.96664472700013,-1.104424737999878],[8.867442254000082,-0.976983330999872],[8.893402540000068,-1.001560153999961],[8.90772545700014,-1.008558851999865],[8.922699415000096,-1.003676039999888],[8.908457879000082,-0.997491143999909],[8.914398634000122,-0.984063408999916],[8.922699415000096,-0.972588799999883],[8.930674675000148,-0.965101820999905],[8.935720248000079,-0.963474216999884],[8.924001498000079,-0.958265882999896],[8.89470462300008,-0.978122653999904],[8.877452019000145,-0.973728122999916],[8.87086022200009,-0.957696221999839],[8.864512566000142,-0.933038018999923],[8.856944207000112,-0.915948174999883],[8.847015821000099,-0.922458591999884],[8.839610222000118,-0.922458591999884],[8.831065300000091,-0.886814059999921],[8.825856967000107,-0.874607028999861],[8.810720248000107,-0.848809502999828],[8.784353061000104,-0.789157809999921],[8.762950066000142,-0.752618096999882],[8.74968509200005,-0.699965101999879],[8.718923373000052,-0.660251559999949],[8.695567254000139,-0.58660247199991],[8.709157748000107,-0.56560637799987],[8.71656334700009,-0.572930596999868],[8.707692905000044,-0.5922177059999],[8.71859785200013,-0.600844007999825],[8.750824415000068,-0.607110283999859],[8.746429884000094,-0.616143487999878],[8.745453321000099,-0.622247002999856],[8.74708092500012,-0.62721119599999],[8.750824415000068,-0.633884372999873],[8.772308790000096,-0.633233330999914],[8.78736412900011,-0.657647393999952],[8.795746290000068,-0.691827080999943],[8.800303582000112,-0.733656507999882],[8.806000196000099,-0.748304945999891],[8.815684441000144,-0.760023695999877],[8.82960045700014,-0.764743747999887],[8.837412957000112,-0.771579684999892],[8.83952884200005,-0.786309502999885],[8.844411655000101,-0.800225518999866],[8.860687696000127,-0.805108330999929],[8.851898634000065,-0.788018487999977],[8.852875196000042,-0.771254164999959],[8.857676629000139,-0.753594658999859],[8.860687696000127,-0.733656507999882],[8.866058790000096,-0.719496351999851],[8.879405144000117,-0.718357028999918],[8.896983269000145,-0.722263278999904],[8.914561394000089,-0.72323984199997],[8.914561394000089,-0.716403903999876],[8.904795769000115,-0.711846612999835],[8.894541863000113,-0.703789971999882],[8.887705925000091,-0.693291924999826],[8.887950066000114,-0.68157317499984],[8.895274285000141,-0.675062757999925],[8.9049585300001,-0.675876559999935],[8.929047071000127,-0.687269789999903],[8.938975457000112,-0.701348565999851],[8.946462436000104,-0.718438408999901],[8.94947350400008,-0.733656507999882],[8.957041863000143,-0.753513278999876],[8.993174675000091,-0.787204684999878],[9.004649285000113,-0.805108330999929],[9.005137566000116,-0.825290622999873],[8.99822024800011,-0.86044687299993],[9.004649285000113,-0.874607028999861],[9.011485222000147,-0.874607028999861],[9.01579837300005,-0.855889580999971],[9.018321160000141,-0.795179945999934],[9.023773634000092,-0.776299737999906],[9.047618035000085,-0.750176690999851],[9.052989129000139,-0.733656507999882],[9.052012566000144,-0.719984632999839],[9.05054772200009,-0.714288018999866],[9.052012566000144,-0.710625908999987],[9.059336785000085,-0.702732028999932],[9.065196160000113,-0.698988539999902],[9.081716342000078,-0.693291924999826],[9.087168816000116,-0.68962981599995],[9.089854363000114,-0.679294528999861],[9.087901238000143,-0.668715101999808],[9.089121941000087,-0.659926040000016],[9.100840691000142,-0.654880466999899],[9.114512566000087,-0.68157317499984],[9.112478061000076,-0.658298434999906],[9.100840691000142,-0.642347914999988],[9.092539910000085,-0.625664971999953],[9.100840691000142,-0.599704684999878],[9.160004102000073,-0.546807549999826],[9.17798912900011,-0.51083749799993],[9.267425977000102,-0.412367445999919],[9.292165561000076,-0.373711846999882],[9.306488477000073,-0.332289320999948],[9.305674675000148,-0.203057549999954],[9.313161655000043,-0.182061455999829],[9.335703972000118,-0.13730234199997],[9.340505405000101,-0.117120049999855],[9.341563347000147,-0.106133721999981],[9.345957879000139,-0.084730726999851],[9.346690300000148,-0.072686455999929],[9.3444116550001,-0.063490492999875],[9.33301842500012,-0.037896416999885],[9.33415774800008,-0.025404554999966],[9.33725019600007,-0.013482354999937],[9.342784050000063,-0.002740166999928],[9.350352410000113,0.00678131699999],[9.355316602000073,0.016180731000091],[9.353526238000086,0.024847723],[9.348968946000127,0.032904364000117],[9.346690300000148,0.040594794000057],[9.345388217000078,0.061957098000107],[9.310231967000107,0.251288153000175],[9.298838738000141,0.283514716000042],[9.302012566000116,0.292547919000128],[9.307139519000117,0.318996486000032],[9.30909264400006,0.324530341000127],[9.313487175000148,0.327460028000147],[9.345388217000078,0.355780341000099],[9.356211785000056,0.358628648000135],[9.365896030000044,0.351548570000091],[9.374522332000112,0.33201732000019],[9.378672722000147,0.307562567000062],[9.37663821700005,0.287298895000063],[9.367035352000073,0.250067450000159],[9.368907097000118,0.238430080000072],[9.373383009000092,0.227443752000099],[9.373871290000066,0.219183661000031],[9.363617384000063,0.215969143000152],[9.358409050000148,0.211655992000146],[9.35645592500012,0.201727606000148],[9.357269727000128,0.190130927000141],[9.360199415000123,0.181097723000121],[9.368907097000118,0.189113674000083],[9.374278191000085,0.198065497000101],[9.380381707000083,0.205389716000113],[9.391612175000063,0.208441473000107],[9.424327019000087,0.208197333000058],[9.429209832000083,0.205023505000099],[9.43458092500012,0.192124742000175],[9.460785352000071,0.166489976000108],[9.470062696000127,0.147040106000105],[9.473480665000125,0.109198309000078],[9.47982832100007,0.103583075000159],[9.488047722000147,0.098334052000084],[9.494965040000068,0.098456122000144],[9.498057488000143,0.109198309000078],[9.492523634000122,0.152004299000154],[9.49366295700014,0.169989325000017],[9.504242384000094,0.187974351000051],[9.553721550000148,0.174058335000069],[9.566416863000114,0.167466539000173],[9.571787957000083,0.156480210000041],[9.58025149800011,0.121771552000069],[9.586761915000094,0.112290757000054],[9.591156446000099,0.119208075000145],[9.61931399800008,0.147202867000161],[9.628428582000083,0.15379466400006],[9.643565300000148,0.153021552000041],[9.652354363000114,0.146877346000139],[9.662608269000145,0.126532294000157],[9.71241295700014,0.134833075000131],[9.748871290000096,0.097845770000092],[9.779551629000082,0.049465236000088],[9.81218509200005,0.023504950000017],[9.77556399800011,0.090399481000034],[9.76124108200014,0.109198309000078],[9.758555535000141,0.125555731000091],[9.77808678500014,0.134466864000117],[9.803884311000076,0.133246161000102],[9.819590691000116,0.119086005],[9.831879102000073,0.126776434000107],[9.850352410000113,0.150783596000139],[9.861175977000102,0.161281643000109],[9.896332227000073,0.18349844],[9.908946160000141,0.187974351000051],[9.925059441000114,0.187689520000021],[9.954274936000076,0.176947333000086],[9.970469597000118,0.173651434000064],[9.985199415000096,0.174953518000152],[10.025645379000139,0.187974351000051],[10.025645379000139,0.1954613300001],[9.975433790000068,0.194322007000068],[9.955821160000113,0.200018622000144],[9.936289910000113,0.215969143000152],[9.920909050000091,0.205796617000118],[9.902354363000086,0.196844794000086],[9.88266035200013,0.190415757000082],[9.805430535000113,0.185695705000157],[9.792246941000144,0.181097723000121],[9.747243686000076,0.19643789300008],[9.734629754000082,0.205023505000099],[9.719574415000068,0.218573309000149],[9.711436394000145,0.223211981000091],[9.679698113000114,0.222154039000131],[9.668955925000091,0.227240302000055],[9.621104363000143,0.263088283000144],[9.586436394000089,0.283636786000017],[9.5721134770001,0.298325914000188],[9.566416863000114,0.318304755000085],[9.559580925000091,0.318304755000085],[9.553884311000104,0.306138414000188],[9.548187696000127,0.302557684000035],[9.535655144000145,0.304673570000134],[9.52751712300011,0.302232164000102],[9.505056186000104,0.29230377800009],[9.498057488000143,0.290961005000099],[9.490082227000073,0.302435614000061],[9.484141472000147,0.338080145000106],[9.473480665000125,0.345648505000142],[9.459320509000094,0.359930731000134],[9.411387566000087,0.469916083000086],[9.398692254000139,0.48871491100013],[9.37086022200009,0.520086981000176],[9.352224155000101,0.529242255000071],[9.334646030000071,0.527899481000162],[9.319021030000073,0.528631903000019],[9.305674675000148,0.544256903000175],[9.304860873000052,0.558905341000013],[9.30884850400011,0.613999742000146],[9.315928582000083,0.626166083000044],[9.337657097000147,0.628363348000036],[9.360199415000123,0.63304271000014],[9.371429884000037,0.637640692000076],[9.391774936000047,0.649359442000062],[9.402028842000078,0.653509833000101],[9.41537519600007,0.655218817000105],[9.424082879000139,0.65281810100015],[9.432953321000099,0.649155992000104],[9.446543816000144,0.647284247000144],[9.45476321700005,0.649400132000054],[9.46827233200014,0.65884023600016],[9.486582879000082,0.665961005000113],[9.502289259000065,0.675848700000046],[9.520030144000145,0.683539130000057],[9.539073113000143,0.681463934000135],[9.555430535000141,0.665228583000086],[9.562836134000065,0.642157294000043],[9.559255405000071,0.621527411000102],[9.54249108200014,0.612494208000101],[9.49903405000012,0.621771552000141],[9.477793816000116,0.619086005000071],[9.464040561000104,0.598863023000149],[9.487152540000068,0.605943101000108],[9.516449415000096,0.604152736000117],[9.539886915000068,0.591253973000107],[9.545909050000148,0.564764716000141],[9.557790561000104,0.568548895000063],[9.566579623000079,0.575506903000147],[9.571787957000083,0.585679429000095],[9.57325280000012,0.598863023000149],[9.585297071000042,0.582831122000158],[9.587087436000047,0.553697007000096],[9.581879102000128,0.525091864000117],[9.57325280000012,0.510077216000013],[9.582774285000141,0.481634833000086],[9.590830925000148,0.472886460000097],[9.607920769000117,0.469183661000059],[9.603526238000114,0.485012111000103],[9.60368899800008,0.505357164000173],[9.608571811000076,0.523138739000075],[9.617523634000094,0.530585028000061],[9.623871290000125,0.539496161000088],[9.634125196000042,0.582912502000141],[9.642100457000112,0.598863023000149],[9.628428582000083,0.618719794000143],[9.625010613000143,0.639308986000088],[9.628428582000083,0.688299872000144],[9.618174675000148,0.806789455000043],[9.582774285000141,0.900702216000013],[9.579925977000102,0.924750067000133],[9.575531446000099,0.940822658000116],[9.567067905000073,0.951117255000042],[9.561534050000148,0.962795315000122],[9.566416863000114,0.983099677000041],[9.578949415000125,1.004380601000108],[9.592051629000082,1.014349677000012],[9.606700066000087,1.017279364000032],[9.624766472000118,1.017279364000032],[9.64242597700013,1.022284247000158],[9.65211022200009,1.034328518000081],[9.658946160000113,1.048000393000024],[9.668793165000125,1.058172919000143],[9.686778191000142,1.061265367000132],[9.745127800000148,1.059719143000095],[9.76124108200014,1.054754950000145],[9.774668816000116,1.032863674000026],[9.783050977000073,0.990057684000121],[9.792246941000144,0.968817450000046],[9.80046634200005,0.985825914000102],[9.804371181182091,0.998353939876537],[9.83410730000014,0.994927470000164],[9.849610230000081,0.989243062000042],[9.866146688000072,0.977564189000148],[9.892088257000097,0.947901917000181],[9.908624715000114,0.935086161000029],[9.926298055000103,0.927541402000074],[9.94407474700003,0.924854228000129],[9.959991088000066,0.928368226000174],[9.971773315000064,0.939840393000111],[9.975390665000134,0.952966207000159],[9.975494018000063,0.982576803000114],[9.980765015000117,0.997201233000098],[10.000383932000146,0.999742112000177],[10.029444214000137,1.003505758000102],[10.1385848380001,1.003092347000091],[10.41504549800004,1.002233773000114],[10.438101440000082,1.002162171000051],[10.737411336000093,1.001128642000069],[10.96383408100013,1.000425223000121],[11.036824584000044,1.000198466000199],[11.336341187000128,0.999164937000117],[11.334790894000093,1.261164449000205],[11.333240600000096,1.52313812300018],[11.332000870000087,1.732611267000152],[11.331690308000077,1.785085958000153],[11.33014001500004,2.047137146000154],[11.32972660300004,2.127442322000093],[11.322078491000042,2.165760396000096],[11.328486368000085,2.176302389000071],[11.332413778000074,2.188032938000148],[11.33417077600012,2.200280253000173],[11.33417077600012,2.212785950000082],[11.335927775000101,2.229167378000128],[11.34223230000012,2.240587870000041],[11.349983764000115,2.251129862000099],[11.355978231000051,2.265185852000115],[11.354324585000112,2.278466695000034],[11.349777059000075,2.291489156000068],[11.35163741000008,2.300584209000121],[11.618597860000108,2.310402731000096],[11.644642781000101,2.319652812000115],[11.65725183100011,2.32249501600009],[11.671204468000099,2.320996399000165],[11.681022990000088,2.315415345000147],[11.70138350500011,2.298723857000127],[11.752749878000145,2.281877340000136]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ghana","sov_a3":"GHA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ghana","adm0_a3":"GHA","geou_dif":0,"geounit":"Ghana","gu_a3":"GHA","su_dif":0,"subunit":"Ghana","su_a3":"GHA","brk_diff":0,"name":"Ghana","name_long":"Ghana","brk_a3":"GHA","brk_name":"Ghana","brk_group":null,"abbrev":"Ghana","postal":"GH","formal_en":"Republic of Ghana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ghana","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":1,"mapcolor13":4,"pop_est":23832495,"gdp_md_est":34200,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"GH","iso_a2":"GH","iso_a3":"GHA","iso_n3":"288","un_a3":"288","wb_a2":"GH","wb_a3":"GHA","woe_id":23424824,"woe_id_eh":23424824,"woe_note":"Exact WOE match as country","adm0_a3_is":"GHA","adm0_a3_us":"GHA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"GHA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-0.16610917099996,11.134980367000137],[-0.158667764999961,11.118443908000144],[-0.142079630999945,11.103328552000049],[-0.121744954999912,11.092192282000028],[-0.103348144999927,11.08754140300006],[-0.085028849999929,11.089401754000065],[-0.051077432999932,11.098264262000072],[-0.032267211999908,11.098574320000054],[0.001115763000058,11.085991110000123],[0.016205282000072,11.062581686000073],[0.019409221000046,11.031627502000061],[0.016567017000057,10.996203308000132],[0.014189901000123,10.983671774000129],[0.007187744000106,10.97679880800007],[-0.001571410999873,10.971295268000077],[-0.009581257999855,10.963001201000111],[-0.014438842999965,10.953596090000062],[-0.03609126799995,10.853137105000158],[-0.035316120999937,10.843447774000126],[-0.030200154999932,10.823784892000091],[-0.032060505999937,10.813165385000104],[-0.040690470999891,10.805026347000094],[-0.06110266099995,10.791357931000078],[-0.075210326999894,10.773658753000078],[-0.082806762999951,10.75621795700003],[-0.0881294349999,10.714411723000069],[-0.091564479999903,10.700253768000053],[-0.09768957599988,10.675008443000067],[-0.098335530999861,10.654157003000094],[-0.0881294349999,10.63348643000009],[-0.079344441999893,10.62625173000012],[-0.068363199999908,10.62105824800011],[-0.056451781999982,10.618009338000078],[-0.033352416999918,10.615063782000078],[-0.026221069999877,10.610361226000093],[-0.019968220999971,10.604340922000063],[-0.01092484499992,10.598268941000114],[0.020339396000082,10.588037008000128],[0.029434448000046,10.582533468000134],[0.0373409420001,10.573180034000103],[0.049019816000083,10.55095916800006],[0.057262207000122,10.541114808000087],[0.110178874000098,10.508248596000058],[0.126017700000091,10.491608786000128],[0.176970663000134,10.397686869000026],[0.179864542000132,10.39417287200007],[0.187512654000102,10.394948019000068],[0.191750122000144,10.40083913200007],[0.194437296000075,10.407376201000147],[0.197072795000111,10.410270081000135],[0.223608642000016,10.399960632000045],[0.233220459000023,10.398617045000066],[0.244563436000107,10.401536763000067],[0.253942708000068,10.406084290000095],[0.263011922000118,10.408926493000067],[0.273243856000107,10.406601054000133],[0.283114054000094,10.396808370000073],[0.283553304000094,10.385775452000074],[0.280220174000107,10.375181784000105],[0.2788249110001,10.366629333000075],[0.290038696000067,10.348490906000052],[0.307066081000102,10.33327219600011],[0.317582235000145,10.317330017000089],[0.30879724100015,10.297098694000084],[0.322749878000138,10.29725372300004],[0.366597330000076,10.304488424000098],[0.376183308000066,10.29994089800006],[0.396595500000018,10.28322357200011],[0.372049194000056,10.265136821000098],[0.367294962000045,10.249814759000046],[0.364426920000085,10.23340749100008],[0.357192220000115,10.219997457000133],[0.358845866000053,10.186330261000094],[0.353600708000045,10.115507711000134],[0.363393392000091,10.089669495000123],[0.376079956000041,10.08158213300004],[0.387087036000139,10.078946635000108],[0.395148560000024,10.07235789000012],[0.398145792000122,10.052126566000124],[0.394570260000137,10.035557027000053],[0.393908325000098,10.032489522000091],[0.382746215000054,10.029595643000107],[0.367294962000045,10.032127787000093],[0.349776652000088,10.028820496000094],[0.355719441000105,10.01897613600012],[0.355125163000139,10.012619934000083],[0.35174035700004,10.006418763000099],[0.349776652000088,9.99716868100009],[0.351430297000149,9.99045074500016],[0.363393392000091,9.966782938000037],[0.370188842000033,9.947016703000159],[0.369568726000068,9.938825989000135],[0.362592407000079,9.932676493000073],[0.349776652000088,9.918956400000141],[0.341715128000089,9.903789368000119],[0.339673909000055,9.88983673100013],[0.344195597000066,9.849761658000133],[0.34388553800008,9.838392843000051],[0.322439819000067,9.760671489000131],[0.323886759000061,9.742067973000074],[0.329131918000087,9.731293437000147],[0.336289103000126,9.72349029600012],[0.342955363000044,9.713542583000034],[0.347606242000097,9.698840638000135],[0.349880005000017,9.680650534000094],[0.347089478000072,9.663158061000047],[0.336650838000111,9.650833231000092],[0.318719116000068,9.648611145000089],[0.30192427500009,9.657835388000093],[0.275285075000056,9.68558563300013],[0.260970703000055,9.65716359400011],[0.261694173000052,9.627940572000071],[0.277636352000087,9.606985779000084],[0.30879724100015,9.603678488000085],[0.349363241000077,9.613910421000055],[0.369155314000068,9.610138041000127],[0.377733602000092,9.589415792000096],[0.370808960000119,9.575644023000065],[0.354608398000011,9.571096497000028],[0.336159912000085,9.574197082000069],[0.322439819000067,9.583137105000091],[0.304559774000012,9.571561585000055],[0.280530233000093,9.570166321000073],[0.230197388000107,9.575747376000095],[0.227742757000044,9.569339498000147],[0.223066040000077,9.5411758420001],[0.223401937000062,9.534793803000069],[0.225908244000038,9.531925761000082],[0.233220459000023,9.525595398000064],[0.243116496000113,9.51869659400009],[0.253503459000029,9.514252422000084],[0.279005778000055,9.519006653000076],[0.293139282000112,9.51828318300008],[0.30192427500009,9.507456971000124],[0.298100219000048,9.497095845000118],[0.285310302000084,9.488362529000142],[0.269729858000062,9.482342224000107],[0.228052816000115,9.47397064200004],[0.227949463000101,9.459733785000068],[0.234977458000088,9.44376576700013],[0.226812581000075,9.43234527600012],[0.231360108000018,9.418961080000088],[0.249886109000045,9.416945699000053],[0.268489624000011,9.420640564000053],[0.314223267000045,9.436479391000148],[0.321819702000084,9.442835591000074],[0.325747111000055,9.451336365000087],[0.328796021000102,9.471567688000079],[0.33378279600015,9.479474182000033],[0.348949829000077,9.486037089000106],[0.371429077000073,9.490016175000093],[0.4116591800001,9.492238261000097],[0.430443562000107,9.489189351000078],[0.483515259000029,9.470017395000069],[0.489923136000073,9.461129049000135],[0.491680135000138,9.451284689000076],[0.489406372000133,9.441026916000082],[0.482791788000043,9.429838969000043],[0.482585083000089,9.428857117000078],[0.482791788000043,9.427875265000111],[0.483515259000029,9.426841736000128],[0.513280884000039,9.416790670000095],[0.531367635000038,9.401106873000046],[0.537568807000127,9.377645772000063],[0.528267049000078,9.326951193000085],[0.526613403000056,9.29765065600013],[0.522479288000113,9.285067444000106],[0.512350708000071,9.274706320000092],[0.501085245000098,9.268195089000116],[0.492920370000093,9.258609111000112],[0.491990194000039,9.238894551000072],[0.504392537000115,9.203108622000045],[0.504702595000083,9.187166443000109],[0.492610310000089,9.166754253000065],[0.469976034000069,9.146729635000028],[0.463645671000052,9.137091980000108],[0.463749023000076,9.121459859000154],[0.458478027000126,9.089239604000099],[0.441553996000039,9.058182068000065],[0.431270386000051,9.027589620000057],[0.444680419000093,8.99655792200012],[0.44488712600014,8.99655792200012],[0.44488712600014,8.996454570000097],[0.493127075000132,8.915219218000118],[0.505632771000137,8.866333313000041],[0.483629270000051,8.834973182000113],[0.483515259000029,8.83481068900008],[0.47845096900005,8.822330832000077],[0.477004029000057,8.806750386000147],[0.473490031000011,8.793547058000058],[0.462482951000112,8.788301901000125],[0.44951216600009,8.790368957000098],[0.439409424000047,8.79344370500013],[0.430133504000111,8.794735617000084],[0.419591512000068,8.79124745700004],[0.424965861000118,8.787320048000069],[0.418299601000115,8.77060272200012],[0.40780928600006,8.759053039000092],[0.397112264000071,8.78153228700009],[0.385278361000132,8.786079814000132],[0.37266931100001,8.7837543750001],[0.365873861000068,8.774271749000121],[0.368083532000099,8.76148102500008],[0.374426310000104,8.724765727000074],[0.403726847000144,8.662082214000137],[0.443517700000058,8.60686594700013],[0.483515259000029,8.57978749600008],[0.500568481000073,8.560176290000058],[0.524753052000051,8.538032939000132],[0.550797974000119,8.519326070000147],[0.616323690000115,8.488759460000054],[0.633790324000074,8.452017517000073],[0.64670943200008,8.414164530000079],[0.685053345000085,8.382564392000091],[0.687223755000076,8.372203267000073],[0.686913697000108,8.360731100000066],[0.689394165000067,8.346054993000081],[0.688567342000056,8.336029765000148],[0.68918745900001,8.331301371000066],[0.693114868000094,8.327890726000135],[0.705103801000035,8.325978699000117],[0.708824504000063,8.32256805500009],[0.712751912000016,8.297970072000112],[0.70520715300006,8.282751363000074],[0.68918745900001,8.272855326000084],[0.645055786000114,8.253424988000106],[0.628312622000067,8.242469584000034],[0.595032999000125,8.212729797000051],[0.586661417000073,8.208750712000068],[0.579013305000075,8.207820537000117],[0.573845662000082,8.20394480400006],[0.572708781000074,8.190999857000051],[0.576842895000084,8.180483703000093],[0.584594360000096,8.173068136000069],[0.591519002000069,8.16448984800013],[0.593276001000049,8.150666402000084],[0.58779829900007,8.137721456000065],[0.579943481000043,8.131701152000133],[0.574982544000079,8.124621481000103],[0.580253540000115,8.100075175000129],[0.583974243000029,8.05304962200006],[0.59317264800012,8.015739238000036],[0.59368941200006,7.996567281000111],[0.592862590000038,7.959308574000089],[0.602687912000135,7.893132132000076],[0.603404581000092,7.888305155000097],[0.60257775900007,7.828412171000124],[0.611672811000062,7.771258037000095],[0.609502400000054,7.718961487000087],[0.612292928000016,7.699427796000081],[0.583354126000074,7.704285380000102],[0.570538371000083,7.683924866000069],[0.567437785000038,7.652919006000046],[0.56774784300012,7.625737203000155],[0.562063436000074,7.612301331000111],[0.548524211000085,7.605376689000124],[0.532504517000035,7.601035868000054],[0.519378703000086,7.595196432000066],[0.509250122000111,7.585377910000091],[0.50304895000005,7.574680888000088],[0.49943160000015,7.562381897000136],[0.495607544000109,7.504297587000067],[0.500568481000073,7.455049947000077],[0.516691528000138,7.411021627000109],[0.548214152000099,7.383271383000078],[0.566404256000055,7.380790914000101],[0.586248006000062,7.384356588000074],[0.623041626000145,7.397895813000062],[0.629656209000132,7.389162496000083],[0.645675903000097,7.32358510400006],[0.644435668000142,7.301932678000085],[0.631103149000126,7.265242412000106],[0.621801392000094,7.218836975000102],[0.597720174000074,7.158892314000113],[0.594309530000118,7.119721578000068],[0.598753702000039,7.07471140500013],[0.598030233000145,7.031199849000117],[0.57890995300005,6.996783346000072],[0.565990844000055,6.989651998000127],[0.523822876000082,6.978696595000144],[0.509146769000097,6.977611389000059],[0.494574015000126,6.973115540000038],[0.506046183000052,6.957819316000083],[0.534468221000083,6.935908508000125],[0.54625044800008,6.914772847000079],[0.543873332000118,6.897926330000104],[0.522789347000099,6.862838033000074],[0.51607141100007,6.841805725000157],[0.519275350000044,6.832245585000067],[0.52888716700005,6.826535340000106],[0.541082805000087,6.817181906000073],[0.570021607000029,6.763515930000082],[0.576636190000045,6.754730937000105],[0.593792765000103,6.75111358700012],[0.611259399000033,6.741527609000116],[0.62583215300009,6.727755839000067],[0.634307088000099,6.711606954000089],[0.635340617000082,6.695380554000081],[0.626658976000044,6.644892680000054],[0.632240031000038,6.62398956300008],[0.645365844000111,6.612026469000128],[0.659421834000028,6.601717021000127],[0.668206828000109,6.585826518000104],[0.677611938000069,6.58489634200015],[0.705517212000046,6.585774842000092],[0.714612264000039,6.583914490000083],[0.727428019000115,6.571434632000091],[0.726807902000132,6.562107035000068],[0.719779907000117,6.552727763000106],[0.713475383000116,6.539989523000145],[0.713075710000084,6.533935652000096],[0.711718383000033,6.513376160000121],[0.717919555000123,6.488829854000059],[0.729908488000092,6.465084534000098],[0.745721476000085,6.440899963000034],[0.766805461000104,6.419350891000079],[0.81620813000012,6.395062968000076],[0.841322876000049,6.379224142000069],[0.87387902800009,6.340130921000139],[0.88679813600001,6.330389913000103],[0.907262003000056,6.324912211000111],[0.983536418000085,6.324602153000129],[1.009684692000093,6.24445200600006],[1.025187622000118,6.222334493000048],[1.033145793000074,6.216546733000072],[1.0405871990001,6.213471985000126],[1.048131958000056,6.209389547000129],[1.055780070000111,6.200630392000051],[1.068905883000099,6.180347392000044],[1.079654581000113,6.167919210000149],[1.093400513000034,6.160917053000062],[1.176186157000132,6.151511942000098],[1.187968384000044,6.135647278000093],[1.185395714380661,6.100490848286995],[1.185394727000073,6.100490627000084],[1.184825066000116,6.100327867000118],[1.178396030000101,6.09796784100007],[1.133067254000082,6.073635158000101],[1.098806186000019,6.047023830000071],[1.048024936000076,5.992661851000136],[1.036387566000059,5.975165106000091],[1.011729363000086,5.926255601000108],[1.007090691000144,5.906683661000045],[1.00562584700009,5.886053778000118],[0.995290561000075,5.839341539000117],[0.986582879000082,5.820746161000031],[0.954844597000118,5.791083075000088],[0.914398634000094,5.777085679000038],[0.723480665000068,5.755438544000043],[0.36491946700005,5.781480210000026],[0.321950717000107,5.779201565000051],[0.298106316000116,5.773667710000026],[0.285980665000125,5.768866278000132],[0.280935092000107,5.76300690300009],[0.27588951900006,5.760158596000053],[0.251719597000147,5.75910065300009],[0.243337436000104,5.75617096600007],[0.22437584700009,5.742621161000017],[0.157399936000075,5.724554755000085],[0.142100457000112,5.714260158000072],[0.114593946000099,5.688666083000101],[0.075694207000083,5.677557684000064],[0.061696811000047,5.662827867000075],[0.050629102000102,5.644761460000054],[0.034515821000127,5.62836334800005],[-0.045033331999974,5.601629950000046],[-0.049672003999888,5.598863023000078],[-0.062733527999882,5.585842190000093],[-0.06859290299991,5.581203518000066],[-0.077381964999887,5.578070380000085],[-0.093251105999911,5.576646226000122],[-0.307850714999859,5.507391669000057],[-0.35309811099998,5.501695054000066],[-0.359283006999931,5.49868398600006],[-0.371571417999888,5.492743231000134],[-0.44505774599989,5.431382554000038],[-0.45287024599989,5.420111395000049],[-0.458119269999884,5.404730536000017],[-0.471587693999936,5.390814520000035],[-0.507435675999943,5.368841864000018],[-0.577381964999887,5.351629950000088],[-0.589344855999911,5.351507880000028],[-0.596669074999909,5.344305731000091],[-0.612863735999952,5.332017320000134],[-0.629465298999918,5.326727606000063],[-0.637766079999892,5.340887762000079],[-0.689523891999926,5.304754950000046],[-0.702300584999875,5.299994208000043],[-0.760731574999852,5.252183335000011],[-0.784494594999927,5.224269924000069],[-0.799549933999856,5.214829820000147],[-0.873890753999945,5.204006252000056],[-0.896839972999942,5.205023505000028],[-0.911488410999936,5.218003648000121],[-0.918283657999979,5.209418036000017],[-0.927723761999886,5.206122137000065],[-0.952463344999956,5.20441315300006],[-0.976551886999886,5.198309637000079],[-0.988392706999946,5.198797919000071],[-0.993478969999956,5.20774974200009],[-0.997059699999852,5.216782945000104],[-1.005034959999904,5.214544989000031],[-1.017323370999861,5.20441315300006],[-1.033802863999938,5.202948309000107],[-1.049794074999852,5.198675848000092],[-1.154123501999891,5.153876044000057],[-1.164702928999958,5.139227606000048],[-1.173654751999891,5.130560614000061],[-1.194081183999856,5.118597723000036],[-1.233631964999887,5.100734768000066],[-1.254139777999853,5.096502997000044],[-1.319243943999879,5.094549872000087],[-1.329986131999902,5.091538804000081],[-1.353138800999943,5.077785549000069],[-1.364003058999913,5.073431708000071],[-1.374134894999884,5.072658596000053],[-1.39476477799991,5.073919989000061],[-1.404937303999958,5.073431708000071],[-1.423451300999972,5.067450262000064],[-1.459706183999884,5.049750067000062],[-1.529286261999885,5.039862372000044],[-1.551869269999941,5.031398830000099],[-1.568796352999925,5.019273179000024],[-1.569488084999875,5.01878489800012],[-1.583851691999939,5.025376695000091],[-1.601470506999874,5.02667877800009],[-1.618478969999927,5.022447007000082],[-1.630848761999885,5.012640692000048],[-1.632435675999915,5.004543361000117],[-1.625477667999917,4.989488023000106],[-1.627756313999896,4.981594143000038],[-1.634022589999944,4.974432684000092],[-1.638172980999883,4.970689195000148],[-1.706654425999915,4.936916408000073],[-1.718820766999926,4.927679755000014],[-1.747670050999943,4.895900783000059],[-1.749908006999931,4.888576565000065],[-1.748117641999926,4.881903387000094],[-1.748605923999918,4.877183335000097],[-1.757435675999886,4.875433661000102],[-1.766753709999932,4.874701239000074],[-1.835438605999911,4.855129299000097],[-1.912098761999886,4.820868231000119],[-1.928089972999885,4.806789455000085],[-1.952259894999884,4.772447007000039],[-1.967274542999917,4.758124091000056],[-1.981434699999852,4.752427476000065],[-2.050363735999895,4.743638414000102],[-2.06383216099988,4.738185940000065],[-2.090565558999884,4.737127997000101],[-2.096587693999879,4.738470770000092],[-2.103871222999913,4.745062567000076],[-2.106678839999859,4.755357164000088],[-2.105620897999898,4.76654694200009],[-2.107980923999946,4.775580145000106],[-2.120961066999939,4.779201565000065],[-2.129017706999889,4.780340887000108],[-2.144154425999886,4.784979559000121],[-2.155384894999884,4.786078192000076],[-2.154367641999926,4.790676174000112],[-2.163726365999935,4.800523179000038],[-2.206288214999915,4.834458726000079],[-2.227406378999916,4.843410549000112],[-2.237049933999884,4.849188544000071],[-2.241118943999936,4.858058986000117],[-2.24282792899993,4.865383205000029],[-2.247222459999932,4.873032945000148],[-2.252756313999953,4.87913646000004],[-2.356597459999903,4.919623114000074],[-2.525786912999877,4.954413153000118],[-2.69041907499988,5.010199286000017],[-2.820871548999975,5.020086981000119],[-2.964995897999927,5.045314846000081],[-3.10374915299991,5.087713934000078],[-3.119600953008359,5.091331396963113],[-3.115281436038742,5.107820910151872],[-3.108306443999936,5.109605210000012],[-3.098988410999908,5.11322663000007],[-3.087635870999947,5.114976304000066],[-3.016102667999888,5.114447333000086],[-2.994496222999885,5.108140367000132],[-2.988514777999881,5.102240302000013],[-2.97630774599989,5.084621486000088],[-2.970936652999853,5.080877997000059],[-2.957753058999884,5.082668361000046],[-2.937245245999947,5.091294664000131],[-2.926340298999946,5.094549872000087],[-2.929025844999927,5.122015692000033],[-2.901234503999888,5.133612372000059],[-2.865305141999897,5.139308986000032],[-2.843698696999894,5.14911530200007],[-2.843658006999902,5.14911530200007],[-2.803855142999879,5.147568054000118],[-2.780884968999914,5.15087534600012],[-2.766622272999939,5.16102976500008],[-2.75701045699995,5.179865825000093],[-2.762488158999929,5.18629954000005],[-2.775665648999904,5.197539164000105],[-2.77881791199988,5.201001486000052],[-2.779644734999891,5.210122376000115],[-2.775407267999924,5.2310254920001],[-2.774890502999909,5.239577942000025],[-2.779334675999905,5.25107594800005],[-2.793287312999894,5.271100566000086],[-2.79612951599995,5.284975688000145],[-2.789566608999877,5.346858216000072],[-2.755873575999942,5.340708720000094],[-2.742592732999924,5.343137512000069],[-2.732670857999921,5.355720724000079],[-2.730138712999945,5.37316152000011],[-2.734427855999911,5.391144918000109],[-2.761713012999905,5.454913636000128],[-2.77943802899992,5.526485494000084],[-2.781815144999882,5.578885397000107],[-2.785587524999897,5.5950342820001],[-2.793442341999934,5.60813425700006],[-2.806258097999915,5.618495382000077],[-2.877494059999975,5.636814677000061],[-2.893746296999893,5.630355123000101],[-2.926302449999923,5.610718078000062],[-2.945861978999858,5.608289287000105],[-2.969503946999879,5.621440938000077],[-2.974904133999928,5.647279155000091],[-2.964801390999895,5.709781799000083],[-3.029758666999953,5.704252421000078],[-3.019965982999878,5.818353984000082],[-3.022523966999898,5.854501648000095],[-3.034719604999907,5.890700989000038],[-3.073244384999953,5.960955099000032],[-3.087765462999897,5.996689352000132],[-3.118073689999931,6.163475037000055],[-3.139364379999932,6.219285584000119],[-3.168794107999929,6.246053976000083],[-3.171721890999976,6.249584688000098],[-3.183599405999956,6.26390818300014],[-3.262509317999985,6.617142436000107],[-3.261114053999904,6.633937277000086],[-3.253905191999934,6.644427592000127],[-3.23548254399995,6.654582011000088],[-3.230056518999959,6.661119080000063],[-3.210419474999924,6.715999451000072],[-3.21274491399987,6.722665711000089],[-3.226232462999917,6.748581441000126],[-3.238738158999922,6.764626974000095],[-3.243078979999922,6.774755554000137],[-3.241683715999926,6.810903219000068],[-3.224940551999879,6.849402161000114],[-3.10959875499995,7.046392721000146],[-3.097274113999901,7.054053375000095],[-3.096592622999935,7.054476971000057],[-3.095465249999904,7.055177714000124],[-3.045933390999949,7.071249085000104],[-3.040869099999952,7.078328755000115],[-3.032600870999914,7.128351542000118],[-3.027536579999946,7.138428447000152],[-2.981699584999888,7.195530905000069],[-2.972811237999878,7.214961243000046],[-2.97208776899987,7.228603821000149],[-2.976531941999894,7.236717021000061],[-2.983224039999897,7.244985250000099],[-2.989528564999915,7.258937887000101],[-2.990458739999951,7.270668437000083],[-2.941521158999876,7.577161357000065],[-2.928162800999928,7.617675679000072],[-2.855944986999929,7.771568095000077],[-2.852069254999975,7.778131002000065],[-2.84201818799994,7.790274963000073],[-2.838168294999889,7.796837870000046],[-2.83790991199993,7.802263896000112],[-2.840829630999905,7.815234681000049],[-2.840002806999905,7.820247294000111],[-2.831398680999939,7.828360494000022],[-2.809151976999914,7.841693014000042],[-2.801193806999947,7.85021962500015],[-2.797886515999949,7.861278381000148],[-2.793545694999864,7.935950826000052],[-2.790625976999877,7.943288880000139],[-2.784347289999886,7.944012349000047],[-2.777681030999958,7.939619853000139],[-2.772616739999875,7.933935446000092],[-2.771221476999898,7.930731507000118],[-2.754891723999947,7.944374084000131],[-2.70926143399987,7.996722310000067],[-2.690864624999961,8.00974477200009],[-2.631178344999852,8.029588521000093],[-2.610559447999947,8.040001322000109],[-2.600689249999959,8.05294626900013],[-2.599759073999905,8.070387064000073],[-2.606218627999879,8.094313253000081],[-2.619447793999967,8.123097026000096],[-2.621876586999917,8.135731913000129],[-2.617639118999875,8.15149322500011],[-2.610662800999876,8.164851583000129],[-2.604254923999946,8.170794373000149],[-2.59598669499988,8.170277609000022],[-2.583274291999941,8.164334818000098],[-2.571750446999914,8.163120422000075],[-2.558107869999901,8.167693787000104],[-2.513201049999907,8.194022929000068],[-2.506328083999932,8.209267477000111],[-2.552345946999935,8.489366659000112],[-2.598363809999938,8.76946584100011],[-2.60311804199992,8.785149638000078],[-2.612161417999886,8.780963847000137],[-2.612381685999906,8.781321221000042],[-2.617225707999864,8.789180400000077],[-2.614641886999948,8.80191864000004],[-2.607252155999959,8.808559062000128],[-2.596658487999974,8.814398499000035],[-2.595573282999879,8.828066915000136],[-2.615933796999911,8.897830099000089],[-2.617174031999951,8.915012513000065],[-2.619447793999967,8.923616639000102],[-2.625028848999875,8.925993754000046],[-2.631746785999894,8.926975607000116],[-2.637689574999911,8.93147145600004],[-2.653295857999865,8.978393657000083],[-2.654329386999933,8.998831685000127],[-2.660788940999907,9.014903056000106],[-2.686058715999962,9.028261414000042],[-2.711328491999922,9.033894145000161],[-2.736960001999904,9.035134379000098],[-2.750809284999946,9.037408142000118],[-2.758664102999887,9.042860006000097],[-2.76507198099992,9.049474589000098],[-2.774838826999882,9.054978129000089],[-2.765433715999932,9.069111633000134],[-2.761299601999894,9.084795431000089],[-2.759387572999884,9.134818217000088],[-2.755201781999858,9.143138123000142],[-2.733911091999857,9.164842225000143],[-2.716496134999943,9.20026641800007],[-2.70481726099996,9.218404847000102],[-2.67308793199993,9.234889628000076],[-2.661150674999902,9.253906556000047],[-2.659807087999923,9.2728976450001],[-2.675516722999902,9.281501771000137],[-2.692983357999935,9.285325826000076],[-2.707142700999895,9.29563527500008],[-2.714997517999933,9.31106068900007],[-2.713343871999882,9.329922587000098],[-2.70306026199998,9.343255107000118],[-2.689417683999892,9.349533794000124],[-2.677532104999954,9.35700103800015],[-2.67241613799996,9.37402842200008],[-2.67241613799996,9.401003519000113],[-2.677377074999896,9.417772522000064],[-2.678668986999867,9.425549825000076],[-2.674586547999951,9.457485861000066],[-2.675671752999932,9.471722718000121],[-2.68921097799992,9.488724263000051],[-2.725281127999921,9.533863627000102],[-2.761092894999933,9.5662389120001],[-2.766260538999859,9.576522522000104],[-2.768017536999935,9.592800599000029],[-2.766467244999915,9.60889780700009],[-2.761506306999962,9.62525339800004],[-2.752928019999927,9.639903666000123],[-2.740163940999963,9.650833231000092],[-2.743404468999926,9.653325351000149],[-2.751015991999907,9.659178976000064],[-2.754219929999891,9.668351542000051],[-2.755460163999913,9.677498270000044],[-2.76052445499991,9.68558563300013],[-2.769257771999975,9.689926453000112],[-2.774838826999882,9.689306336000143],[-2.780316527999958,9.690236512000098],[-2.788481404999885,9.699254049000047],[-2.795302693999929,9.720002136000089],[-2.79158199099993,9.740931091000078],[-2.774838826999882,9.774339905000147],[-2.740267293999892,9.812606303000052],[-2.733911091999857,9.822786560000111],[-2.736753295999932,9.832579245000076],[-2.76052445499991,9.87053558400008],[-2.764865274999892,9.895753683000137],[-2.755563516999956,9.941151428000069],[-2.754374959999922,9.966782938000037],[-2.760886189999894,9.984766337000124],[-2.783572143999947,10.018511048000093],[-2.788481404999885,10.038768209000096],[-2.788481404999885,10.124447734000071],[-2.798920043999914,10.169612935000146],[-2.798454955999915,10.189534200000153],[-2.785380818999954,10.210101420000058],[-2.765123657999936,10.225836894000125],[-2.75768225199991,10.234647726000118],[-2.754374959999922,10.247954407000123],[-2.754943399999888,10.260796000000113],[-2.758354044999919,10.266118673000065],[-2.764865274999892,10.269115906000081],[-2.774838826999882,10.275239563000142],[-2.7844506429999,10.278805237000114],[-2.793183959999879,10.27854685400014],[-2.799669351999938,10.280923970000089],[-2.802098144999889,10.292318624000089],[-2.805689656999959,10.299010722000105],[-2.814216267999882,10.301077779000067],[-2.824448201999871,10.302214661000079],[-2.833181518999936,10.305987041000094],[-2.841294718999933,10.322290954000039],[-2.841294718999933,10.343271586000128],[-2.836282103999878,10.363657939000078],[-2.829460815999937,10.37828236900013],[-2.822329467999879,10.387584127000066],[-2.814629679999911,10.393707784000128],[-2.804940347999946,10.397118429000058],[-2.791995401999941,10.398151957000053],[-2.781039998999887,10.402415263000094],[-2.771893269999879,10.411820373000053],[-2.767552448999908,10.421199646000105],[-2.771428181999851,10.425488790000074],[-2.795871134999913,10.426108907000128],[-2.812149210999933,10.428821920000075],[-2.824448201999871,10.435023092000066],[-2.859562336999915,10.465615540000071],[-2.867391316999942,10.47825042800011],[-2.870440225999857,10.497784119000116],[-2.873385782999947,10.502486674000094],[-2.886899169999936,10.515793356000103],[-2.891524210999904,10.521658631000093],[-2.89421138499992,10.531425476000052],[-2.895865030999886,10.55276784300014],[-2.898293823999921,10.562612204000116],[-2.92826615499996,10.615218811000119],[-2.932503621999928,10.634313253000101],[-2.929661417999853,10.644209290000092],[-2.916251383999906,10.66808380100008],[-2.91015356499986,10.684491068000042],[-2.907337198999898,10.688315125000088],[-2.905115111999891,10.692733459000081],[-2.905140950999879,10.699193013000126],[-2.908034829999878,10.70363718700014],[-2.912634033999922,10.705807597000046],[-2.916949015999904,10.706608582000058],[-2.918912719999923,10.706608582000058],[-2.919959289999923,10.711088218000071],[-2.922323363999851,10.721207174000112],[-2.919274454999936,10.727201640000146],[-2.908577433999909,10.737666118000092],[-2.903099730999941,10.747148743000068],[-2.899482380999956,10.769989726000077],[-2.882661702999883,10.797068176000039],[-2.871628784999899,10.843447774000126],[-2.864239054999871,10.864273377000089],[-2.850803181999936,10.879543763000129],[-2.834861002999901,10.89161020900012],[-2.821399291999938,10.906260478000092],[-2.815766560999918,10.929153137000114],[-2.821761026999923,10.948299256000027],[-2.832716430999909,10.966024272000126],[-2.838710896999942,10.985118714000121],[-2.835946207999882,10.992224223000065],[-2.837341471999877,10.99801198400013],[-2.75111934499995,10.996461691000105],[-2.75070593299992,10.98584218400012],[-2.7287975939999,10.98605735500007],[-2.634950723999879,10.986979065000128],[-2.439768839999942,10.98894276900006],[-2.197871459999931,10.991294047000096],[-1.972872273999883,10.993516134000103],[-1.754074259999925,10.995634868000081],[-1.598683226999924,10.997133484000088],[-1.58700435399993,11.003670553000061],[-1.579821329999987,11.021214702000123],[-1.562406371999941,11.026589050000098],[-1.436057494999915,11.022713318000044],[-1.423584092999931,11.017911405000104],[-1.413553084999876,11.014049746000069],[-1.380350300999907,11.001267599000116],[-1.355287231999881,10.996720072000073],[-1.228059854999913,10.995479838000051],[-1.107550414999878,10.994342956000125],[-1.098713744999969,11.009561666000067],[-1.070343383999955,11.013902486000049],[-0.93247066299989,11.003102112000105],[-0.924047403999907,11.001422628000057],[-0.916450968999953,10.996203308000132],[-0.909474649999936,10.982689921000159],[-0.904358683999874,10.979485983000089],[-0.893920043999913,10.979899394000098],[-0.900586303999944,10.966230978000096],[-0.883171345999898,10.968633932000046],[-0.860795450999916,10.992921855000134],[-0.839401407999901,10.996461691000105],[-0.833665323999867,11.003412171000093],[-0.827774210999962,11.005840963000152],[-0.822141479999914,11.003618876000147],[-0.816973836999921,10.996461691000105],[-0.816973836999921,10.996203308000132],[-0.703017494999955,10.99415881200008],[-0.695999308999944,10.994032898000057],[-0.69465572099989,10.982741598000075],[-0.690211547999894,10.981811422000119],[-0.683235229999894,10.98434356700011],[-0.673933471999959,10.983516744000083],[-0.667990682999942,10.976514588000086],[-0.672279825999908,10.968504741000103],[-0.679772907999933,10.960572408000061],[-0.682770141999868,10.953596090000062],[-0.634762735999914,10.90796580000007],[-0.617244424999853,10.91863698300007],[-0.607115844999896,10.941219584000095],[-0.599829467999911,10.965765890000071],[-0.590579385999916,10.982431539000089],[-0.576213337999917,10.98775421200014],[-0.555439411999942,10.989950460000045],[-0.516475382999971,10.988632711000077],[-0.512961384999926,10.989743754000088],[-0.509705769999925,10.991449077000139],[-0.506708536999923,10.993671163000059],[-0.504228067999946,10.996203308000132],[-0.504228067999946,10.996358337000075],[-0.494822956999883,11.007804667000087],[-0.46851965299993,11.020129496000038],[-0.456685750999924,11.029612122000115],[-0.451259724999943,11.04020579100009],[-0.449037637999936,11.062891744000055],[-0.444386759999901,11.077438660000112],[-0.42521480299996,11.101468201000046],[-0.405887816999922,11.101468201000046],[-0.386922566999971,11.086404521000134],[-0.368939167999883,11.065217183000087],[-0.318813028999955,11.101364848000102],[-0.30612646499992,11.113534648000025],[-0.298297485999882,11.128391622000052],[-0.300545409999899,11.137409160000104],[-0.304472818999955,11.146788432000049],[-0.301682291999924,11.162937317000043],[-0.16610917099996,11.134980367000137]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Gambia","sov_a3":"GMB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Gambia","adm0_a3":"GMB","geou_dif":0,"geounit":"Gambia","gu_a3":"GMB","su_dif":0,"subunit":"Gambia","su_a3":"GMB","brk_diff":0,"name":"Gambia","name_long":"The Gambia","brk_a3":"GMB","brk_name":"Gambia","brk_group":null,"abbrev":"Gambia","postal":"GM","formal_en":"Republic of the Gambia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Gambia, The","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":1782893,"gdp_md_est":2272,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"GA","iso_a2":"GM","iso_a3":"GMB","iso_n3":"270","un_a3":"270","wb_a2":"GM","wb_a3":"GMB","woe_id":23424821,"woe_id_eh":23424821,"woe_note":"Exact WOE match as country","adm0_a3_is":"GMB","adm0_a3_us":"GMB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":10,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"GMB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-14.740930134999957,13.615449117000095],[-14.728579467999907,13.619324850000053],[-14.667187866999909,13.652888692000076],[-14.626673542999894,13.663508199000148],[-14.585539102999915,13.660459290000134],[-14.542595987999961,13.640822246000097],[-14.523243163999894,13.625655213000071],[-14.50972977799992,13.609092917000083],[-14.500221313999958,13.589972636000084],[-14.486862955999925,13.546538595000085],[-14.480377562999962,13.533128561000126],[-14.470274820999919,13.522354025000112],[-14.462134595999883,13.516656128000108],[-14.3895820729999,13.465871684000149],[-14.365552530999963,13.454838766000064],[-14.347284912999896,13.452358297000089],[-14.329947468999876,13.4564407350001],[-14.271217203999925,13.476956278000074],[-14.215794229999887,13.510752665000055],[-14.196828979999905,13.518788350000136],[-14.139132242999949,13.5315524290001],[-14.092881835999975,13.554729309000109],[-14.072598836999958,13.559690247000063],[-14.061850138999944,13.560051982000061],[-14.044461018999925,13.558605042000067],[-14.034022379999982,13.560207011000086],[-14.022265990999898,13.565322978000081],[-14.001905476999951,13.577027690000065],[-13.98849544299992,13.57914642300004],[-13.967488972999915,13.575580750000071],[-13.942090006999905,13.56692494800012],[-13.918086303999871,13.554987691000077],[-13.901343139999938,13.541629333000044],[-13.896175495999927,13.532921855000083],[-13.889793456999882,13.513956604000029],[-13.884599975999976,13.505533346000048],[-13.882503706999898,13.503781507000042],[-13.87547908499991,13.497911072000065],[-13.852793131999931,13.484811096000099],[-13.842690388999898,13.47664622000009],[-13.81871252499988,13.429362284000135],[-13.82256241899992,13.37820261700004],[-13.851036132999866,13.335750428000111],[-13.900567992999925,13.31456309000015],[-13.976118936999853,13.308206889000118],[-14.016271524999864,13.297639059000062],[-14.056579141999917,13.29717397100012],[-14.099496419999866,13.28195526100009],[-14.116808024999955,13.282161968000139],[-14.131794189999937,13.275573222000062],[-14.1798274329999,13.24012319000012],[-14.201686564999932,13.22955535900006],[-14.230625366999902,13.228573507000092],[-14.284911457999954,13.238547058000094],[-14.3417813719999,13.233637797000156],[-14.368833984999952,13.235704855000122],[-14.394982259999948,13.24296539300009],[-14.431439981999857,13.261439718000117],[-14.442033650999946,13.268545227000047],[-14.451490437999922,13.276865132000111],[-14.45913854999989,13.286916199000132],[-14.470326496999915,13.298259176000029],[-14.483633178999952,13.301928203000116],[-14.515104125999898,13.303168437000053],[-14.529573526999911,13.307276713000078],[-14.542854370999919,13.314666443000077],[-14.552109139999885,13.32309421700009],[-14.580733195999926,13.349160462000057],[-14.59215368699992,13.353139547000124],[-14.624554809999921,13.34518137600007],[-14.661606811999887,13.340918071000104],[-14.698142048999927,13.34518137600007],[-14.73157670099991,13.359004822000117],[-14.759481973999895,13.38337026000005],[-14.779635782999975,13.410887960000123],[-14.790332803999974,13.417347514000085],[-14.810796670999935,13.421171570000112],[-14.829141804999919,13.427011007000104],[-14.862576456999903,13.447061463000054],[-14.877614297999884,13.451376445000122],[-14.91590653499989,13.45442535400015],[-14.949702921999886,13.4630811560001],[-15.015073607999938,13.495740662000074],[-15.015228637999883,13.495844014000099],[-15.01543534399994,13.495999044000143],[-15.015590372999982,13.49605072100006],[-15.065251423999968,13.531268209000132],[-15.110158243999877,13.572480163000122],[-15.137650105999855,13.589972636000084],[-15.160491088999947,13.58098093700005],[-15.181331441999873,13.559843218000097],[-15.203950967999956,13.536900940000065],[-15.217955281999961,13.514680075000113],[-15.221727660999903,13.452823385000116],[-15.227773803999924,13.425176493000109],[-15.248341023999926,13.398976542000085],[-15.277073120999916,13.380295513000107],[-15.309835978999928,13.368435770000088],[-15.342392130999968,13.362570496000089],[-15.379237426999877,13.362518820000076],[-15.488326375999916,13.385256450000057],[-15.519538940999894,13.386600037000122],[-15.54294836499986,13.377995911000085],[-15.5660477299999,13.365671082000134],[-15.596123412999901,13.355826721000156],[-15.612453165999854,13.354224752000036],[-15.679890909999868,13.360658468000082],[-15.692499959999907,13.360348409000096],[-15.73740677899991,13.346344096000081],[-15.807118286999952,13.339781189000105],[-15.818693806999901,13.333528341000104],[-15.822672891999957,13.319420675000075],[-15.824367246999913,13.2485119480001],[-15.824739949999922,13.232914327000072],[-15.826600300999926,13.161678365000114],[-15.833318237999947,13.156846619000092],[-15.870783650999927,13.157156677000089],[-15.897441198999983,13.157399018000149],[-15.961734171999948,13.1579835000001],[-16.092062133999946,13.15912038200011],[-16.313288940999968,13.161084087000049],[-16.46521765199995,13.162427674000114],[-16.63001379399992,13.163900452000107],[-16.67352534999995,13.164313863000118],[-16.708406941999925,13.156691590000065],[-16.723186401999953,13.132248637000117],[-16.72633866399991,13.122636821000098],[-16.742151651999905,13.107392273000059],[-16.74850785399991,13.099227397000048],[-16.752125203999896,13.088039449000107],[-16.75365149599989,13.065008856000134],[-16.768869594999952,13.077826239000075],[-16.784331834999904,13.082993882000068],[-16.786732550999943,13.09007396000004],[-16.7825414699999,13.098334052000027],[-16.775502081999946,13.112738348000093],[-16.777333136999914,13.127834377000099],[-16.79674231699991,13.17723216400006],[-16.797474738999938,13.189113674000112],[-16.795033331999917,13.235907294000084],[-16.79735266799989,13.24892812700007],[-16.80296790299988,13.262193101],[-16.820057745999918,13.281317450000072],[-16.82445227799991,13.294582424000097],[-16.81663977799991,13.310614325000088],[-16.820301886999886,13.315822658000085],[-16.829701300999886,13.338527736000046],[-16.820708787999877,13.349107164000088],[-16.80996660099987,13.379868882000068],[-16.799549933999884,13.386297919000086],[-16.787342902999907,13.389146226000022],[-16.774322068999908,13.396185614000087],[-16.76292883999986,13.404974677000055],[-16.70445716099988,13.475409247000059],[-16.678822394999912,13.496161200000058],[-16.67674719999988,13.485907294000128],[-16.671131964999887,13.4786644550001],[-16.662505662999877,13.47313060100008],[-16.652251756999874,13.468247789000117],[-16.63463294199994,13.4773623720001],[-16.616851365999935,13.478176174000026],[-16.60138912699992,13.472235419000086],[-16.590728318999908,13.461371161000015],[-16.585316535999933,13.443345445000077],[-16.59630286399991,13.440252997000087],[-16.61278235599988,13.439154364000046],[-16.62425696499994,13.427232164000102],[-16.608713344999927,13.41372304900004],[-16.59552975199989,13.38507721600007],[-16.588368292999856,13.355292059000064],[-16.590728318999908,13.338527736000046],[-16.553863084999932,13.295803127000028],[-16.545765753999916,13.290106512000136],[-16.49518795499992,13.287909247000057],[-16.480824347999942,13.283880927000084],[-16.467762824999852,13.275864976000037],[-16.45995032499988,13.268866278000061],[-16.44969641799994,13.264064846000066],[-16.429351365999935,13.262193101],[-16.41966712099989,13.255560614000046],[-16.41392981699991,13.239976304000052],[-16.41348222599993,13.222072658000087],[-16.419422980999855,13.2081973330001],[-16.39976966099988,13.224310614000075],[-16.390858527999853,13.224798895000063],[-16.377797003999888,13.21503327000002],[-16.383656378999916,13.225165106000077],[-16.401926235999895,13.243353583000058],[-16.40575110599991,13.246039130000042],[-16.408273891999926,13.258734442000105],[-16.415272589999915,13.267035223000079],[-16.426014777999907,13.27073802300012],[-16.43993079299989,13.269598700000087],[-16.43993079299989,13.276434637000106],[-16.410511847999913,13.275864976000037],[-16.39679928299998,13.277899481000063],[-16.384632941999882,13.283880927000084],[-16.37474524599989,13.263861395000019],[-16.363270636999943,13.268296617000088],[-16.349680141999983,13.282171942000076],[-16.333404100999957,13.290106512000136],[-16.314808722999942,13.295558986000074],[-16.277943488999878,13.319484768000052],[-16.2579646479999,13.324896552000084],[-16.230132615999935,13.316392320000062],[-16.225900844999927,13.296576239000045],[-16.230213995999915,13.273627020000063],[-16.22760982999992,13.256008205000043],[-16.209706183999884,13.251166083000056],[-16.1854548819999,13.258286851],[-16.151275193999908,13.276434637000106],[-16.151275193999908,13.283880927000084],[-16.16226152299987,13.28270091400006],[-16.172515428999873,13.279282945000134],[-16.181752081999946,13.273749091000125],[-16.189808722999885,13.265936591000042],[-16.199289516999897,13.259100653000118],[-16.203521287999905,13.26496002800006],[-16.20807857999995,13.292385158000114],[-16.208607550999915,13.30353424700013],[-16.21076412699992,13.313299872000073],[-16.21703040299988,13.317368882000038],[-16.222035285999908,13.319769598000079],[-16.225249803999873,13.325832424000067],[-16.227121548999946,13.33368561400006],[-16.22760982999992,13.341945705000043],[-16.224436001999948,13.36029694200009],[-16.21621660099987,13.372748114000018],[-16.176177537999934,13.40542226800005],[-16.168690558999884,13.41331614800012],[-16.16551673099991,13.42381419500009],[-16.161203579999892,13.428697007000066],[-16.15143795499995,13.426947333000072],[-16.135121222999942,13.420477606000077],[-15.994862433999884,13.413031317000089],[-15.9413142569999,13.425441799000026],[-15.922230597999913,13.427232164000102],[-15.911284959999932,13.426703192000032],[-15.905629035999937,13.425767320000134],[-15.90062415299991,13.425523179],[-15.891224738999881,13.427232164000102],[-15.883778449999907,13.430405992000075],[-15.878407355999855,13.434800523000149],[-15.874379035999878,13.438869533000114],[-15.87132727799988,13.440904039000129],[-15.849517381999929,13.442206122000044],[-15.785023566999937,13.434759833000072],[-15.764475063999924,13.436916408000073],[-15.706206834999904,13.454575914000072],[-15.696766730999883,13.459865627000056],[-15.678049282999922,13.473049221000096],[-15.668690558999886,13.47573476800008],[-15.658924933999856,13.472398179000052],[-15.644683397999927,13.457912502000099],[-15.634917772999897,13.454575914000072],[-15.620838995999861,13.454820054000024],[-15.610422329999949,13.456447658000044],[-15.600900844999954,13.460435289000117],[-15.58958899599989,13.468247789000117],[-15.58092200399989,13.478176174000026],[-15.565052863999966,13.502508856000091],[-15.555409308999884,13.509222723000036],[-15.54344641799986,13.509670315000037],[-15.530995245999861,13.505845445000105],[-15.519642706999973,13.499660549000055],[-15.510731574999852,13.492743231000048],[-15.500396287999932,13.488185940000092],[-15.4896541009999,13.489935614000089],[-15.479359503999888,13.493963934000064],[-15.470041469999956,13.496161200000058],[-15.45107988199993,13.49091217700007],[-15.43887285099987,13.478583075000117],[-15.429432745999861,13.464748440000037],[-15.418853318999906,13.454575914000072],[-15.384429490999878,13.443508205000043],[-15.340565558999913,13.440822658000059],[-15.304798956999889,13.455308335000012],[-15.294748501999921,13.496161200000058],[-15.299956834999904,13.496161200000058],[-15.301909959999875,13.496161200000058],[-15.302154100999898,13.496161200000058],[-15.304066535999963,13.481146552000041],[-15.311390753999971,13.467840887000106],[-15.321848110999952,13.45823802300012],[-15.33287512899989,13.454575914000072],[-15.351673956999946,13.456732489000075],[-15.385975714999914,13.466131903000102],[-15.401478644999912,13.468247789000117],[-15.415760870999918,13.47321198100006],[-15.43224036399991,13.484767971000096],[-15.456450975999898,13.506089585000055],[-15.465240037999877,13.510158596000025],[-15.474110480999911,13.50853099200009],[-15.482818162999905,13.505031643000093],[-15.490834113999936,13.502997137000078],[-15.49986731699994,13.505113023000078],[-15.507557745999861,13.509833075000088],[-15.513579881999872,13.514553127000099],[-15.517893032999979,13.516669012000108],[-15.531727667999887,13.519761460000097],[-15.543039516999954,13.525539455000057],[-15.55614173099991,13.528306382000025],[-15.575835740999876,13.522894598000065],[-15.586008266999926,13.515041408000087],[-15.600697394999912,13.4955101580001],[-15.610666469999899,13.489325262000134],[-15.627756313999953,13.488511460000026],[-15.654652472999913,13.500962632000054],[-15.672108527999882,13.502997137000078],[-15.690174933999915,13.498968817000105],[-15.73420162699992,13.47573476800008],[-15.769886847999944,13.465073960000055],[-16.090240037999934,13.440497137000136],[-16.121896938999896,13.451605536000073],[-16.141590949999852,13.454575914000072],[-16.16038977799988,13.4505882830001],[-16.178456183999913,13.440985419000114],[-16.206532355999908,13.420477606000077],[-16.248443162999905,13.378973700000074],[-16.2579646479999,13.37201569200009],[-16.265614386999943,13.368719794000057],[-16.273019985999923,13.362616278000061],[-16.280588344999956,13.359767971000025],[-16.289133266999897,13.3658714860001],[-16.289702928999873,13.373236395000106],[-16.286732550999943,13.383612372000101],[-16.28490149599989,13.395331122000087],[-16.289133266999897,13.406805731000134],[-16.30601966099988,13.391669012000136],[-16.30809485599991,13.383368231000063],[-16.30211341099988,13.37201569200009],[-16.312123175999886,13.366929429000065],[-16.316395636999886,13.3658714860001],[-16.316395636999886,13.359035549000081],[-16.31163489499988,13.35761139500002],[-16.306996222999942,13.35455963700012],[-16.30211341099988,13.352769273000133],[-16.321888800999915,13.342840887000134],[-16.355946417999917,13.337958075000072],[-16.39053300699993,13.336859442000032],[-16.411976691999968,13.338527736000046],[-16.489491339999915,13.357123114000032],[-16.521839972999942,13.359035549000081],[-16.515777147999927,13.367865302000055],[-16.503529425999886,13.39256419500012],[-16.50133216099988,13.403062242000104],[-16.503529425999886,13.41693756700009],[-16.51341712099989,13.436753648000106],[-16.51569576699995,13.444322007000054],[-16.51976477799991,13.451320705000043],[-16.53819739499994,13.464829820000105],[-16.544504360999895,13.475897528000047],[-16.55443274599989,13.481838283000073],[-16.556548631999902,13.485581773000106],[-16.556548631999902,13.506089585000055],[-16.548003709999875,13.548081773000135],[-16.549143032999922,13.563869533000085],[-16.554798956999914,13.577053127000042],[-16.561390753999888,13.586900132000052],[-16.561399170083547,13.586914158949881],[-16.498755655999958,13.586665345000085],[-16.43664058499988,13.586458639000128],[-16.37457718999991,13.586200257000144],[-16.312462117999956,13.5859935510001],[-16.250295369999947,13.585735169000131],[-16.188231973999905,13.585528463000074],[-16.12611690299991,13.585270081000104],[-16.085382943999946,13.58516833100012],[-16.06405350799986,13.585115052000063],[-16.001938435999875,13.584908345000102],[-15.93977168799998,13.584649964000036],[-15.877708292999927,13.584443258000078],[-15.815593221999848,13.584184876000108],[-15.75342647399995,13.583978170000151],[-15.69136307799988,13.583719788000082],[-15.6291963299999,13.583513082000122],[-15.567132934999847,13.583254700000055],[-15.518195353999943,13.58309967000011],[-15.502485717999974,13.58826731400012],[-15.50047033699991,13.627980652000105],[-15.4980300899999,13.641522305000107],[-15.496801310999928,13.648341166000137],[-15.488946491999881,13.670329489000025],[-15.478611206999885,13.691258444000098],[-15.46750077299987,13.708285828000028],[-15.43633988499991,13.74117787700007],[-15.394068562999905,13.771511943000107],[-15.347766479999935,13.788642680000066],[-15.304461628999974,13.781873067000118],[-15.295108194999925,13.773191427000157],[-15.275729532999947,13.74805084200004],[-15.267254597999852,13.741797995000127],[-15.24596390799988,13.746733094000078],[-15.170619669999894,13.793784485000058],[-15.0977042239999,13.819984436000084],[-15.076310180999883,13.81895090800009],[-15.016778930999891,13.796885071000105],[-14.915803181999962,13.792440898000095],[-14.879267944999924,13.780581156000068],[-14.86031381199993,13.76559545800005],[-14.843972940999947,13.752675883000094],[-14.831312214999912,13.735622660000061],[-14.822372192999893,13.717200012000147],[-14.802941853999897,13.652320252000024],[-14.796017211999922,13.644697978000053],[-14.754934448999876,13.620384217000051],[-14.740930134999957,13.615449117000095]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Guinea","sov_a3":"GIN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guinea","adm0_a3":"GIN","geou_dif":0,"geounit":"Guinea","gu_a3":"GIN","su_dif":0,"subunit":"Guinea","su_a3":"GIN","brk_diff":0,"name":"Guinea","name_long":"Guinea","brk_a3":"GIN","brk_name":"Guinea","brk_group":null,"abbrev":"Gin.","postal":"GN","formal_en":"Republic of Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guinea","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":7,"mapcolor13":2,"pop_est":10057975,"gdp_md_est":10600,"pop_year":-99,"lastcensus":1996,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"GV","iso_a2":"GN","iso_a3":"GIN","iso_n3":"324","un_a3":"324","wb_a2":"GN","wb_a3":"GIN","woe_id":23424835,"woe_id_eh":23424835,"woe_note":"Exact WOE match as country","adm0_a3_is":"GIN","adm0_a3_us":"GIN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GIN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-13.338612630999933,12.639229635000063],[-13.332773192999952,12.639643047000078],[-13.330034342999909,12.642071839000039],[-13.327708902999888,12.644914042000096],[-13.322877156999965,12.646516012000134],[-13.292930663999924,12.652717184000023],[-13.28414567099992,12.65333730000009],[-13.275722411999936,12.65106353700007],[-13.263397582999884,12.643208720000132],[-13.254690103999932,12.641813456000065],[-13.24600846399997,12.643157043000116],[-13.229084432999883,12.647807922000084],[-13.22153967299991,12.648376363000137],[-13.216010294999933,12.64574086600004],[-13.206450154999912,12.635663961000091],[-13.201902628999989,12.633390198000072],[-13.19787186699989,12.634061992000055],[-13.185211140999854,12.637782695000068],[-13.17627111899992,12.637731018000053],[-13.169217284999915,12.638764547000036],[-13.162628540999917,12.638144430000068],[-13.154696207999876,12.632821757000116],[-13.145316935999915,12.643932191000133],[-13.127307698999912,12.634837138000066],[-13.108988402999927,12.63540557900012],[-13.091702636999855,12.63819610600008],[-13.076458089999903,12.635922343000061],[-13.063642333999923,12.622279765000144],[-13.059327351999855,12.603469544000049],[-13.06041255699995,12.583367411000083],[-13.064210774999879,12.566159160000097],[-13.079093586999932,12.532156067000072],[-13.082710936999916,12.515671285000082],[-13.07826676499991,12.496240947000103],[-13.066742919999882,12.480117900000039],[-13.051989297999853,12.472263082000097],[-13.034626017999926,12.47055776000012],[-13.01524735499987,12.472676494000098],[-12.997418985999929,12.465855205000139],[-12.981037556999894,12.466992086000062],[-12.969513712999854,12.476810608000035],[-12.966232258999865,12.496085917000073],[-12.949489094999905,12.535928447000089],[-12.913134724999933,12.5363418580001],[-12.874041503999903,12.516394755000077],[-12.84921097799986,12.495000712000163],[-12.849650227999888,12.491073304000096],[-12.851252196999923,12.484355367000076],[-12.849133463999948,12.47582875600007],[-12.838617309999876,12.46637196800009],[-12.82905716899998,12.462754618000105],[-12.799420735999917,12.460635885000043],[-12.78347855699991,12.45309112600009],[-12.779163574999927,12.443272604000112],[-12.77327246099992,12.435056050000085],[-12.752653563999928,12.43242055300007],[-12.68805802499989,12.435986226000123],[-12.667516641999896,12.433660787000106],[-12.648008788999988,12.425754293000054],[-12.631549845999928,12.412680155000102],[-12.603412027999866,12.381932678000053],[-12.598063517999917,12.372424215000066],[-12.597314208999904,12.365447896000163],[-12.59367102099992,12.361572164000108],[-12.57940832599985,12.361158753000097],[-12.578129722999932,12.361528379000047],[-12.570649169999882,12.363690898000087],[-12.54145198599994,12.379452209000078],[-12.521918293999931,12.386893616000094],[-12.505071776999955,12.390252584000109],[-12.487760172999856,12.3894774380001],[-12.466753702999938,12.384464824000133],[-12.423397175999867,12.369116924000066],[-12.405517130999897,12.35645619800003],[-12.377120930999894,12.313668111000098],[-12.360920369999889,12.305606588000101],[-12.192041788999916,12.348756409000131],[-12.155041462999861,12.369013571000037],[-12.1219168699999,12.398727519000104],[-12.103985148999868,12.407357483000055],[-12.07918046099985,12.408132630000068],[-12.018874063999958,12.388443909000117],[-11.997583373999873,12.386376852000055],[-11.984302530999855,12.389012350000073],[-11.946268676999921,12.409424540000117],[-11.93520992099991,12.417020976000089],[-11.930869099999938,12.418726298000138],[-11.923944457999966,12.418777974000065],[-11.921980753999918,12.417692770000157],[-11.920637166999967,12.416039124000108],[-11.860175739999931,12.391079407000133],[-11.839608519999926,12.386686910000051],[-11.757804727999911,12.383327942000037],[-11.720029255999862,12.3894774380001],[-11.643083048999955,12.417641093000057],[-11.601535196999862,12.425237528000109],[-11.51539058399996,12.431645407000062],[-11.481645873999895,12.42823476200003],[-11.41601680599996,12.404980367000107],[-11.38842159099994,12.403895162000111],[-11.388628295999922,12.384464824000133],[-11.407593546999863,12.381932678000053],[-11.431674763999894,12.382966207000038],[-11.447229369999915,12.374542949000045],[-11.451466837999874,12.352115377000144],[-11.444903930999912,12.312531230000088],[-11.444593872999917,12.289483541000038],[-11.463249064999985,12.249951070000094],[-11.491671101999913,12.220908916000099],[-11.507794148999892,12.191608378000126],[-11.48960404499985,12.151197408000144],[-11.470793822999923,12.134609273000137],[-11.40955725099991,12.107892558000088],[-11.391728881999938,12.093733216000132],[-11.351317911999956,12.040403138000059],[-11.334678100999952,12.026192118000097],[-11.315144408999856,12.013324687000093],[-11.294680541999893,12.003092754000106],[-11.27499182099993,11.99627146400006],[-11.255509805999848,11.99616811100013],[-11.223315388999907,12.009293925000094],[-11.206985636999946,12.010172425000135],[-11.191172648999952,12.014409892000089],[-11.176341511999937,12.029499410000085],[-11.1656444899999,12.048619690000079],[-11.159391642999934,12.077506815000035],[-11.152725382999904,12.080865784000137],[-11.144250447999923,12.08133087200008],[-11.136292276999939,12.085103251000092],[-11.122081258999884,12.107272441000118],[-11.11747712499988,12.112701843000108],[-11.116603555999887,12.11373199500008],[-11.084305785999929,12.136572978000089],[-11.072781941999892,12.149492086000095],[-11.059811157999974,12.19243520200007],[-11.052318074999931,12.2025121060001],[-11.038778849999858,12.205250956000043],[-11.015472778999905,12.20442413400012],[-10.972012898999905,12.218583476000063],[-10.952117471999912,12.219461976000105],[-10.927674519999869,12.212950745000043],[-10.909794474999899,12.200134990000052],[-10.869641886999887,12.138433329000094],[-10.846387491999877,12.121380107000064],[-10.822926391999914,12.110476380000094],[-10.804942992999912,12.09595530200005],[-10.798535115999869,12.068101706000078],[-10.801222289999913,12.059213359000069],[-10.811040811999874,12.041540019000067],[-10.812436075999955,12.033426819000056],[-10.807785196999902,12.022833150000082],[-10.78101680499992,11.996219787000143],[-10.740347452999885,11.91989369800011],[-10.711356973999898,11.890386455000097],[-10.669964151999947,11.89204010000013],[-10.655081339999896,11.898964742000118],[-10.645159464999892,11.908369853000082],[-10.634152384999908,11.925423076000115],[-10.625264038999887,11.943871562000126],[-10.621543334999984,11.95766916900007],[-10.613791869999886,11.9676943970001],[-10.595653442999946,11.97989003500011],[-10.574982869999928,11.990328675000056],[-10.5594799399999,11.995186260000068],[-10.566507934999919,12.01725209500006],[-10.555449177999918,12.029344381000058],[-10.535398722999986,12.038697815000091],[-10.515089883999876,12.052908834000048],[-10.514883178999895,12.060143535000108],[-10.517673706999858,12.070737203000093],[-10.517311970999884,12.08034901900011],[-10.50795853699992,12.084586487000152],[-10.5044445399999,12.088358866000078],[-10.512661091999917,12.108460999000044],[-10.511627563999923,12.118072815000062],[-10.493489135999907,12.124429016000079],[-10.445688435999896,12.12070831300008],[-10.435973266999952,12.135177714000108],[-10.42894527199985,12.143394267000133],[-10.394580443999928,12.171609599000107],[-10.381402953999924,12.180136210000114],[-10.37484004699985,12.17481353800008],[-10.368225463999863,12.171506246000078],[-10.353394327999922,12.166493632000112],[-10.354117797999919,12.180859680000111],[-10.348433390999986,12.184787089000082],[-10.33933833799992,12.185458883000067],[-10.329881550999943,12.190419820000116],[-10.325592407999892,12.199773255000151],[-10.323577026999914,12.201995341000057],[-10.31649735499991,12.196879374000076],[-10.313603474999923,12.191143290000111],[-10.31101965399992,12.191039938000088],[-10.304973510999957,12.202873840000095],[-10.266939656999853,12.21780832900015],[-10.258981485999868,12.213777568000069],[-10.254123901999947,12.20721466100008],[-10.247819376999928,12.201065165000102],[-10.214849812999887,12.194605611000057],[-10.179761515999955,12.178224182000093],[-10.160227823999946,12.174503479000094],[-10.13583654799993,12.175485332000065],[-10.128653523999958,12.174503479000094],[-10.118835001999912,12.170162659000113],[-10.105192422999892,12.158638815000074],[-10.097285928999952,12.153677877000119],[-10.090340013999878,12.151583631000037],[-10.08700231899985,12.15057729100009],[-10.07036250899992,12.149853821000091],[-10.060182251999947,12.147528382000061],[-10.048089965999877,12.141378886000084],[-10.027677774999916,12.12566925000003],[-10.015533813999923,12.119881490000054],[-9.996413533999942,12.114145406000091],[-9.961583617999878,12.096006979000066],[-9.941533161999928,12.092751363000076],[-9.923188028999931,12.087583720000069],[-9.888771524999896,12.06055694600012],[-9.870736450999885,12.052082011000039],[-9.861124633999879,12.051875305000067],[-9.840660766999918,12.055027568000128],[-9.833684447999929,12.055130920000053],[-9.823039102999928,12.0508934530001],[-9.806812703999924,12.038439433000121],[-9.796632445999961,12.03234161400006],[-9.778649047999862,12.026657206000024],[-9.7229935299999,12.025416972000086],[-9.69880896,12.050996806000128],[-9.686303262999957,12.068153381000087],[-9.681549031999879,12.080814107000037],[-9.683667764999967,12.101484680000056],[-9.682272501999876,12.118537903000089],[-9.675141153999931,12.133989157000087],[-9.659999959999936,12.14980214500008],[-9.628167276999875,12.170162659000113],[-9.51561600799991,12.207059631000035],[-9.495875610999944,12.224681295000025],[-9.479597534999925,12.235843405000153],[-9.438876505999957,12.254756978000088],[-9.421513223999938,12.257082418000037],[-9.360173298999968,12.246643779000093],[-9.336815551999905,12.269846497000087],[-9.331906290999882,12.282765605000108],[-9.335006876999927,12.306536763000068],[-9.321829385999933,12.310205791000058],[-9.312889362999925,12.326070455000163],[-9.308496866999917,12.345035706000118],[-9.309168659999898,12.35774810800008],[-9.314801390999946,12.362657369000102],[-9.331647907999923,12.366326396000105],[-9.339166829999954,12.37061553900007],[-9.343946899999963,12.380124003000061],[-9.344463663999903,12.389012350000073],[-9.34715083799992,12.3964537560001],[-9.374694376999912,12.411129863000083],[-9.39278112799991,12.428028056000073],[-9.407250528999953,12.445132955000119],[-9.41257320199989,12.455364889000094],[-9.398155476999873,12.473244935000153],[-9.350871540999947,12.484613749000047],[-9.334180053999916,12.496292623000029],[-9.32730708899993,12.497532858000056],[-9.321519327999878,12.4966026820001],[-9.308186807999931,12.488954570000118],[-9.29407914299992,12.48378692600012],[-9.286379353999905,12.488127747000107],[-9.278937947999907,12.494432271000106],[-9.265863809999928,12.495207418000119],[-9.189486042999903,12.479239400000083],[-9.14731807499993,12.465493469000151],[-9.027765492999919,12.404751097000144],[-8.99383907099994,12.387513733000063],[-8.97590734799985,12.368703511000149],[-8.964745238999908,12.346275940000067],[-8.963091593999875,12.324210104000159],[-8.972134968999939,12.301989238000116],[-8.985260782999887,12.282093812000113],[-8.995906127999888,12.261009827000093],[-8.997559773999853,12.234809876000071],[-8.994278320999854,12.224836324000066],[-8.98453731299989,12.208919983000044],[-8.981178344999904,12.198946432000126],[-8.97384029199989,12.187577617000045],[-8.9616963299999,12.187991028000054],[-8.942007608999859,12.195845845000093],[-8.927021443999877,12.187370910000084],[-8.9138956299999,12.169852600000125],[-8.906040811999958,12.147735087000115],[-8.906970987999927,12.125359192000131],[-8.921957153999898,12.086033427000146],[-8.92629797399988,12.064277649000132],[-8.922112182999852,12.045364075000094],[-8.903715372999926,12.030377909000038],[-8.88164953599994,12.029189352000103],[-8.858756876999934,12.031824849000117],[-8.837982950999987,12.02815582300012],[-8.819792845999928,12.012652893000109],[-8.815452026999964,11.995703023000104],[-8.81643387899993,11.976841126000082],[-8.81490942399992,11.955395407000154],[-8.809974323999882,11.944440002000078],[-8.803204711999939,11.934931539000088],[-8.797830362999974,11.925113017000127],[-8.797003539999935,11.91322743800009],[-8.847233032999895,11.657945862000133],[-8.828526163999925,11.659186096000068],[-8.81167964699992,11.651744690000058],[-8.795194864999957,11.641926168000083],[-8.777211466999885,11.635931702000065],[-8.756540893999954,11.638825582000052],[-8.740366169999959,11.646163635000036],[-8.726516886999889,11.649470927000039],[-8.712874307999897,11.640065816000075],[-8.690705118999858,11.568028870000106],[-8.687346150999957,11.550019633000103],[-8.679026245999893,11.529839986000127],[-8.667967488999892,11.510874736000076],[-8.656753702999936,11.496431173000147],[-8.602183389999908,11.472091573000043],[-8.57520829299989,11.47028289800005],[-8.549576782999907,11.490126648000043],[-8.543995727999913,11.477646790000051],[-8.539424991999908,11.456312043000153],[-8.535520792999904,11.438088481000094],[-8.527562622999936,11.423386536000109],[-8.51578039599994,11.418968201000098],[-8.488133503999933,11.418193055000089],[-8.427723754999903,11.400080465000073],[-8.397648071999924,11.385895285000116],[-8.37532385199998,11.367653504000158],[-8.393358927999884,11.36300262500009],[-8.414132852999925,11.3534683230001],[-8.42607010899988,11.34047170000008],[-8.41795690899994,11.325511373000111],[-8.39956009999986,11.322152405000095],[-8.38126664299989,11.325097961000097],[-8.3710347089999,11.320550436000062],[-8.376719115999947,11.29466054300012],[-8.3883979899999,11.28140553800013],[-8.4066914469999,11.275281881000069],[-8.426896931999892,11.274196676000074],[-8.44457027199988,11.27626373300012],[-8.4832242439999,11.28491953600009],[-8.492577677999918,11.277788188000045],[-8.503119669999904,11.255412293000063],[-8.50234452399988,11.251639913000133],[-8.499243936999932,11.246704814000097],[-8.497021850999943,11.240710348000079],[-8.498778848999903,11.233501486000108],[-8.502137817999937,11.231176046000087],[-8.512059692999912,11.230297547000134],[-8.51562536599991,11.229057312000108],[-8.52410030099989,11.223760478000157],[-8.544615844999953,11.214975485000082],[-8.551798868999924,11.21073801700004],[-8.563942830999935,11.19342641200012],[-8.569678914999884,11.15779551200005],[-8.578153848999875,11.14206003900007],[-8.586990518999897,11.137460836000116],[-8.607221842999877,11.137150777000045],[-8.6154125569999,11.134050191000085],[-8.624610961999906,11.12203542100012],[-8.624921019999901,11.112191061000146],[-8.622388875999917,11.102605083000142],[-8.623112344999896,11.091262106000073],[-8.63368017599987,11.071289165000039],[-8.679801391999916,11.025193786000116],[-8.688689737999908,11.012558899000084],[-8.696906290999946,10.996048279000092],[-8.700730346999904,10.978452454000106],[-8.696234496999864,10.962742819000141],[-8.680938272999924,10.952304179000109],[-8.665228637999945,10.956955058000077],[-8.64796870899994,10.965817566000084],[-8.62822831199989,10.967832947000119],[-8.611381794999915,10.965145773000103],[-8.593346720999904,10.964706522000085],[-8.5756217039999,10.966747742000038],[-8.559550333999937,10.971605326000143],[-8.541566935999953,10.983775127000056],[-8.531645059999931,10.999045512000109],[-8.505755167999922,11.052789001000107],[-8.489063679999958,11.052737325000095],[-8.46901322499994,11.046381124000076],[-8.448704385999918,11.047104595000064],[-8.438162393999932,11.049740092000079],[-8.42906734199988,11.048293152000083],[-8.410463825999926,11.041911113000154],[-8.40064530399985,11.043332215000135],[-8.381318318999917,11.053925883000117],[-8.369329385999947,11.054235941000101],[-8.347315225999862,11.043125509000092],[-8.326592976999848,11.023850199000051],[-8.311141723999924,11.000802511000089],[-8.305095581999893,10.978245748000063],[-8.303648640999908,10.874892883000072],[-8.305870727999917,10.856289368000118],[-8.311813516999905,10.847245993000072],[-8.318893188999937,10.839520366000073],[-8.339822142999935,10.78386484800005],[-8.341940877999917,10.763245952000133],[-8.315585896999949,10.753091532000084],[-8.311141723999924,10.735289002000044],[-8.295535440999885,10.537445780000084],[-8.284425007999886,10.511245830000078],[-8.25388423699988,10.469827169000027],[-8.22887284399988,10.423421733000112],[-8.21057938699991,10.414068299000064],[-8.189030313999865,10.413629048000146],[-8.165982624999884,10.41809906000016],[-8.150583047999902,10.424532776000106],[-8.142056436999894,10.4296487430001],[-8.135441853999907,10.427323303000065],[-8.125416625999973,10.411665345000117],[-8.122109333999958,10.399495544000104],[-8.120920776999952,10.373037212000028],[-8.115494750999886,10.360247295000136],[-8.096116088999906,10.34673390700007],[-8.070071166999924,10.341876322000147],[-8.01570756099997,10.339344178000161],[-7.996277220999986,10.328259583000145],[-7.981549438999877,10.307020569000088],[-7.971214151999959,10.28180247000013],[-7.964599568999888,10.258935649000108],[-7.962584187999936,10.233252462000038],[-7.968010213999918,10.209998068000118],[-7.989662638999988,10.161990662000079],[-7.999842895999961,10.150699361000108],[-8.007232625999961,10.138322856000043],[-8.012348591999853,10.124861145000082],[-8.01570756099997,10.11036590600014],[-8.034879516999865,10.085793763000067],[-8.057875529999931,10.073081360000115],[-8.108776814999942,10.05419362400009],[-8.127535359999854,10.037114563000046],[-8.14774084499993,10.010036113000083],[-8.15848954299986,9.98492136700007],[-8.148877726999954,9.973888449000071],[-8.136268676999919,9.969444275000058],[-8.14009273299996,9.959703268000112],[-8.152391722999909,9.949988098000077],[-8.17383744299994,9.94187489900007],[-8.174715942999882,9.93303822900016],[-8.17151200299989,9.9228321330001],[-8.167894652999905,9.91469309500009],[-8.16453568499989,9.912677714000038],[-8.158954629999895,9.912367656000058],[-8.153218546999938,9.910920716000064],[-8.149549519999937,9.905339661000141],[-8.147224079999887,9.88792470300011],[-8.145673787999982,9.882498678000047],[-8.14732743299993,9.880121562000085],[-8.152133341999928,9.878829651000045],[-8.155078898999932,9.87523813900016],[-8.15099645999993,9.866143087000097],[-8.146862344999903,9.8646961460001],[-8.128103799999906,9.866246440000111],[-8.123504597999952,9.84485239700011],[-8.160292859999856,9.584813799000088],[-8.161590128999904,9.575644023000065],[-8.161021687999948,9.55360402400008],[-8.157611042999918,9.53086639500009],[-8.152856810999936,9.513115540000072],[-8.145363728999882,9.497147522000134],[-8.087176065999898,9.415395406000115],[-8.070432901999936,9.397541199000074],[-8.054051472999987,9.389092102000077],[-8.03229569499996,9.384647929000066],[-8.009868122999876,9.383614400000084],[-7.991574665999906,9.385319723000052],[-7.971059122999918,9.392967835000121],[-7.933025268999898,9.414258525000022],[-7.911889607999854,9.418651021000102],[-7.870600137999929,9.41859934500009],[-7.86538081799992,9.409917705000039],[-7.891735798999889,9.33023264500008],[-7.894939737999949,9.307133281000105],[-7.930648152999935,9.220291036000106],[-7.929562947999954,9.18388499000011],[-7.878713337999926,9.163912049000087],[-7.866310993999974,9.166030782000062],[-7.8562340899999,9.170216573000104],[-7.847914184999865,9.168562928000142],[-7.834219929999961,9.142983093000097],[-7.823367878999903,9.131976013000113],[-7.801043660999937,9.114793599000052],[-7.759392455999915,9.09166839600006],[-7.746783406999896,9.076449687000121],[-7.748202714999906,9.07540310500012],[-7.764198364999913,9.063608093000127],[-7.788072875999915,9.060042420000073],[-7.807813273999982,9.060042420000073],[-7.827036905999905,9.057820333000066],[-7.916747192999877,9.012345073000105],[-7.931785033999859,8.99655792200012],[-7.93183671099996,8.99655792200012],[-7.93183671099996,8.996454570000097],[-7.931888386999986,8.996454570000097],[-7.941603555999933,8.972218323000105],[-7.946461140999957,8.948602193000085],[-7.950698608999914,8.899535421000067],[-7.968940388999953,8.812848205000108],[-7.958915160999937,8.781997375000117],[-7.913129841999904,8.768225606000087],[-7.890960652999865,8.765693462000087],[-7.831015990999987,8.747658386000097],[-7.826571817999877,8.748226827000053],[-7.816055663999919,8.753523661000088],[-7.810190388999928,8.753368633000136],[-7.803679157999852,8.749053650000079],[-7.795695149999887,8.736470439000058],[-7.790915079999877,8.730941061000053],[-7.772053181999865,8.714533793000086],[-7.765128539999893,8.706084697000092],[-7.741202351999959,8.662909038000066],[-7.7318230799999,8.652082825000122],[-7.703943644999867,8.633479309000066],[-7.696812296999923,8.624849346000119],[-7.691592976999914,8.606142477000049],[-7.693970092999848,8.567772725000111],[-7.691696329999928,8.546662903000083],[-7.6792423099999,8.50508921300009],[-7.679293986999965,8.487725932000075],[-7.686477009999919,8.462585348000133],[-7.689577596999953,8.438659160000043],[-7.683221394999918,8.41731679300004],[-7.662447469999961,8.374864604000095],[-7.720738484999913,8.368534241000077],[-7.748333699999904,8.372306621000106],[-7.771019652999883,8.38651763900016],[-7.802438923999914,8.449201151000096],[-7.823832966999929,8.477855734000087],[-7.845743773999885,8.474315898000029],[-7.84941280199996,8.459200541000115],[-7.846777302999953,8.442689921000124],[-7.84858597799996,8.428633931000107],[-7.865587524999881,8.420882467000096],[-7.882330687999911,8.421450908000068],[-7.89858292699995,8.426282654000076],[-7.912871459999934,8.434189148000115],[-7.923826862999903,8.443775126000032],[-7.931578328999905,8.457030131000124],[-7.93695267699988,8.471422018000041],[-7.943877318999853,8.484625346000115],[-7.956279662999918,8.494366354000078],[-7.970542357999903,8.49695017500008],[-7.985890258999859,8.49493479500012],[-8.01570756099997,8.487209168000035],[-8.02490596499996,8.488604432000102],[-8.042475952999922,8.487157492000108],[-8.05066666699986,8.487674256000062],[-8.057203735999849,8.490852356000119],[-8.068107462999905,8.500464173000125],[-8.076634073999912,8.503254700000085],[-8.09689123499993,8.501704407000162],[-8.130119180999941,8.488604432000102],[-8.150531371999904,8.486485698000124],[-8.186343139999932,8.493694560000092],[-8.200295776999923,8.491834208000085],[-8.248871622999928,8.453567811000084],[-8.254401000999906,8.446513977000066],[-8.254297647999891,8.434499206000098],[-8.24907832899987,8.423776347000086],[-8.242102009999883,8.412769267000101],[-8.236882690999948,8.400082703000052],[-8.235280720999924,8.379515483000162],[-8.247631388999878,8.32256805500009],[-8.247631388999878,8.303835347000103],[-8.245305949999931,8.28507680300011],[-8.248251504999955,8.273578797000084],[-8.264581257999879,8.256499736000135],[-8.26597652199996,8.245983582000079],[-8.182932494999903,8.191671652000124],[-8.085522419999933,8.16203521800007],[-8.07596228099993,8.163378805000136],[-8.01570756099997,8.18389434800011],[-8.003305215999887,8.184049378000054],[-8.002426716999963,8.174308370000105],[-8.008266153999926,8.160433248000047],[-8.01570756099997,8.148160095000106],[-8.02170202699989,8.117722677000131],[-8.02128861499989,8.102658997000049],[-8.01570756099997,8.08847381600009],[-7.997052368999903,8.077337545000148],[-7.98041255699988,8.058992411000077],[-7.968216918999873,8.03702992800011],[-7.965637541999881,8.026927369000077],[-7.962635863999936,8.015170797000067],[-7.980360879999863,8.016566061000049],[-7.99250484199996,8.024162496000116],[-8.00216833499988,8.032430725000069],[-8.011986857999942,8.035557150000102],[-8.05384476699993,8.028761699000157],[-8.069089314999871,8.029278463000097],[-8.067228963999867,8.020751852000089],[-8.0688826089999,7.996567281000111],[-8.07911454299989,7.957654928000139],[-8.128878946999919,7.882569072000138],[-8.131204386999855,7.842416484000124],[-8.123762980999913,7.832029521000109],[-8.10143876099994,7.812805888000084],[-8.096322793999972,7.801902161000029],[-8.098260660999896,7.791876933000097],[-8.103919229999917,7.786347555000091],[-8.110482136999906,7.782420146000035],[-8.115133015999959,7.776890768000029],[-8.119008748999931,7.760819397000147],[-8.122626098999916,7.727488098000109],[-8.127380330999898,7.713018697000081],[-8.159523070999851,7.676328430000098],[-8.160194864999909,7.672194316000087],[-8.157404337999964,7.662375794000112],[-8.158024454999916,7.658241679000084],[-8.162106893999947,7.654159240000083],[-8.173424030999909,7.647803040000057],[-8.177868204999925,7.643875630000082],[-8.197866983999859,7.6185541790001],[-8.202621215999955,7.607185364000117],[-8.20303462699988,7.59958892800006],[-8.19977901199988,7.583362529000055],[-8.200244099999907,7.576334534000124],[-8.228976195999905,7.544295146000123],[-8.26535640499989,7.560056458000106],[-8.303235229999899,7.589305318000058],[-8.336773233999907,7.597831930000083],[-8.372274942999951,7.587289937000023],[-8.390878458999907,7.585791321000102],[-8.414804646999896,7.61292144800008],[-8.440022745999954,7.599898987000131],[-8.485446329999888,7.557989400000054],[-8.51562536599991,7.577161357000065],[-8.547819782999852,7.600777487000072],[-8.566526651999936,7.623411763000121],[-8.572779500999928,7.65074859700006],[-8.567405150999946,7.688214010000124],[-8.686571003999944,7.694363505000098],[-8.694477498999987,7.674416402000091],[-8.720677449999895,7.642738750000077],[-8.727576252999881,7.622016500000142],[-8.73003088399986,7.587444967000052],[-8.731477823999853,7.581760559000101],[-8.737368937999946,7.571425272000098],[-8.739177612999924,7.565689189000138],[-8.738040730999927,7.559488017000149],[-8.734009968999942,7.557679342000071],[-8.72951411999992,7.556387431000118],[-8.726826944999884,7.55183990500008],[-8.725741739999876,7.528533834000142],[-8.729617471999944,7.50869008400015],[-8.73953934699992,7.490551656000121],[-8.756489216999853,7.472413228000094],[-8.784394490999915,7.455721741000062],[-8.790388956999948,7.450812480000124],[-8.793954630999906,7.441510722000103],[-8.795453246999926,7.421098531000055],[-8.799225625999952,7.41221018500005],[-8.807700560999962,7.404510397000138],[-8.824030313999884,7.399807842000071],[-8.833409586999949,7.393865051000147],[-8.851625528999904,7.371489156000081],[-8.860617227999937,7.357639873000024],[-8.8653714599999,7.346891175000096],[-8.863304402999859,7.329889628000076],[-8.855914672999859,7.311854554000077],[-8.851367146999905,7.29288930200012],[-8.85782670099988,7.27304555300013],[-8.868885456999891,7.266637675000084],[-8.912190307999936,7.250152893000105],[-8.925419473999852,7.248602600000083],[-8.944384724999907,7.278678284000065],[-8.957200479999868,7.286481425000075],[-8.96257482899992,7.262968648000097],[-8.973116820999905,7.267671203000077],[-8.977716023999932,7.266224263000082],[-8.98102331499993,7.25056630500012],[-8.98546748899986,7.250049540000076],[-9.00763667799987,7.243486633000103],[-9.015698200999879,7.238887431000136],[-9.032854777999916,7.240282695000118],[-9.046652384999959,7.232737936000077],[-9.059261433999893,7.221369120000091],[-9.07311071799995,7.211343893000062],[-9.086391560999886,7.207209778000049],[-9.100447550999888,7.2048326620001],[-9.106085323999906,7.202975005000043],[-9.113935098999946,7.20038848900009],[-9.125407267999975,7.190208232000117],[-9.116053833999928,7.224676412000093],[-9.119619506999896,7.237957255000097],[-9.139153197999917,7.247879131000089],[-9.14690466399992,7.254080302000077],[-9.147473103999886,7.271391907000079],[-9.153079996999907,7.275474345000092],[-9.175430053999975,7.274595846000053],[-9.18147619699991,7.275681051000049],[-9.206280883999852,7.298367005000102],[-9.219871784999953,7.360998841000124],[-9.234341185999881,7.381307678000057],[-9.249714924999864,7.383064677000121],[-9.283795532999903,7.374072978000086],[-9.299505167999882,7.376605123000076],[-9.305499633999915,7.383478089000036],[-9.312424274999898,7.403321838000124],[-9.319400593999887,7.411951803000079],[-9.327772176999872,7.41706777000006],[-9.335006876999927,7.41965159100006],[-9.349217895999885,7.421563619000081],[-9.365961059999933,7.421098531000055],[-9.375159464999937,7.419289856000161],[-9.379241901999933,7.415827535000119],[-9.38141231299994,7.40497548500008],[-9.38647660299992,7.401668193000076],[-9.392264363999885,7.399859518000086],[-9.407353881999882,7.378052063000069],[-9.418722696999879,7.387767232000101],[-9.438101358999944,7.421563619000081],[-9.449263468999959,7.405078837000104],[-9.478357299999885,7.376915182000062],[-9.486625528999923,7.372832743000045],[-9.487098760999913,7.373204140000041],[-9.490707966999935,7.376036682000105],[-9.47970088699995,7.385390116000052],[-9.473499715999964,7.39557037400003],[-9.470864216999928,7.407352600000124],[-9.470244099999974,7.420995178000125],[-9.466213337999875,7.433449199000108],[-9.456704874999899,7.443061015000125],[-9.436085978999897,7.458563945000036],[-9.413400023999912,7.492256979000089],[-9.40492508999992,7.513599345000088],[-9.408697468999947,7.527448629000062],[-9.390817423999891,7.548222555000095],[-9.383660237999948,7.55953969400008],[-9.378776814999924,7.586256409000043],[-9.372989054999948,7.601345927000124],[-9.364410766999924,7.61426503500013],[-9.353507039999954,7.622429911000068],[-9.374694376999912,7.646924540000113],[-9.3762446699999,7.680565898000054],[-9.366374470999858,7.716170960000127],[-9.355470743999886,7.741905823000123],[-9.38099890199993,7.774410299000052],[-9.38968054199998,7.791463522000086],[-9.415673787999935,7.824433085000051],[-9.4386698,7.8662393190001],[-9.44843664499993,7.907838847000108],[-9.446007853999987,7.950058492000082],[-9.433092532999922,7.993468319000029],[-9.431745157999899,7.996567281000111],[-9.42456213399987,8.00581736300012],[-9.422340046999864,8.015790914000135],[-9.424148721999956,8.026177877000066],[-9.429264688999922,8.036900737000082],[-9.440943562999903,8.050569153000083],[-9.451537231999879,8.051757711000107],[-9.46218257699988,8.043463644000054],[-9.474223184999857,8.028813375000084],[-9.472776244999862,8.04036305800011],[-9.461872517999893,8.05842397000012],[-9.459805460999945,8.068785096000042],[-9.4780472409999,8.141287130000137],[-9.478098917999914,8.152785137000066],[-9.481406209999903,8.1646965540001],[-9.491328084999905,8.169967550000123],[-9.51561600799991,8.174876811000061],[-9.530137085999854,8.185496318000048],[-9.53189408399993,8.21231638600004],[-9.52543452999987,8.24079010000007],[-9.51561600799991,8.256603088000077],[-9.5108100999999,8.261047262000076],[-9.509156453999935,8.265594788000115],[-9.510758422999885,8.270064799000124],[-9.51561600799991,8.27440562000011],[-9.52124873899993,8.284405009000125],[-9.525124470999884,8.295437928000112],[-9.530188761999852,8.30597991900008],[-9.539387166999859,8.314584045000117],[-9.5284834389999,8.325720317000048],[-9.522282266999923,8.330681254000098],[-9.51561600799991,8.334376119000098],[-9.511481892999882,8.336133118000078],[-9.499131225999918,8.34347117200008],[-9.504350545999927,8.346158346000093],[-9.511481892999882,8.353780619000077],[-9.5290518799999,8.366312155000074],[-9.579178019999887,8.387292786000074],[-9.592045450999876,8.405095317000118],[-9.600158650999958,8.410883077000094],[-9.60734167499993,8.402924907000127],[-9.612147582999938,8.396336161000136],[-9.619537312999938,8.392718811000051],[-9.628063923999944,8.39163360700006],[-9.636125447999945,8.39256378200011],[-9.653385375999932,8.392098694000083],[-9.668371541999903,8.388739726000066],[-9.677259887999924,8.39153025400013],[-9.675916300999859,8.409642843000142],[-9.666511189999909,8.422381084000108],[-9.653385375999932,8.431450297000083],[-9.645117146999894,8.443413392000124],[-9.650543171999857,8.464807434000134],[-9.663513956999878,8.477855734000087],[-9.683512735999926,8.48705413800009],[-9.703253132999889,8.487260844000048],[-9.715500447999913,8.473334046000062],[-9.71798091699989,8.452689310000054],[-9.718187621999931,8.438271586000042],[-9.722115030999902,8.435636088000109],[-9.735912637999945,8.450493063000053],[-9.74629960099989,8.468063049000122],[-9.750898803999917,8.485865580000064],[-9.757306681999864,8.532710267000084],[-9.763042764999936,8.549970195000085],[-9.773584757999885,8.563018493000115],[-9.790586303999902,8.565395609000078],[-9.790017863999964,8.553070780000027],[-9.79482377099987,8.544544169000105],[-9.802006795999915,8.537180278000108],[-9.808853922999958,8.528472799000042],[-9.808828083999884,8.52046295200006],[-9.80546911699986,8.512789002000076],[-9.806812703999924,8.5062519330001],[-9.831617391999941,8.49901723300013],[-9.849704142999883,8.489689636000094],[-9.858644164999902,8.48705413800009],[-9.863501749999926,8.493539531000053],[-9.868152627999876,8.498087057000077],[-9.872803506999958,8.500360820000097],[-9.886911172999874,8.496640117000084],[-9.89187211199993,8.495916646000097],[-9.911354125999933,8.495658264000028],[-9.928148966999885,8.49343617800011],[-9.944168660999933,8.488346049000128],[-9.961118529999851,8.479561056000136],[-10.000185912999967,8.449304504000125],[-10.040390177999882,8.425662537000107],[-10.06168086699995,8.422174377000147],[-10.075013386999899,8.426644389000074],[-10.07935420799987,8.439951070000092],[-10.069277302999922,8.486873271000135],[-10.07609859199988,8.501497701000105],[-10.091084756999862,8.510101828000145],[-10.147980509999911,8.524287008000101],[-10.164878702999914,8.5246487430001],[-10.181828571999915,8.519584453000121],[-10.2156249599999,8.486589051000067],[-10.232419799999946,8.477054749000075],[-10.240274616999898,8.493746236000106],[-10.260841837999891,8.485917257000082],[-10.271332153999936,8.48410858200009],[-10.282235879999888,8.484625346000115],[-10.293708048999918,8.483075053000107],[-10.302234659999925,8.485865580000064],[-10.310244506999908,8.490361430000078],[-10.337581339999929,8.498552145000104],[-10.344299275999958,8.499068909000144],[-10.374736694999939,8.49477976500009],[-10.389774535999917,8.48909535700004],[-10.402383584999939,8.48100799600013],[-10.414062458999922,8.4701817830001],[-10.423777628999858,8.456565043000097],[-10.447962198999932,8.407627462000107],[-10.460209513999956,8.392150370000095],[-10.519275674999903,8.334789530000108],[-10.554363972999935,8.311845194000085],[-10.572657429999907,8.304584656000102],[-10.583251097999891,8.306910095000134],[-10.61187984199995,8.32525522900012],[-10.626710977999892,8.331508077000123],[-10.659783894999888,8.333265076000103],[-10.688154255999876,8.324066671000097],[-10.707894653999858,8.303137715000103],[-10.7151810299999,8.269599711000097],[-10.735283161999888,8.2872988900001],[-10.7249995519999,8.319855042000142],[-10.70200353999985,8.353573914000023],[-10.683813435999895,8.374864604000095],[-10.669085652999911,8.399075013000086],[-10.654667928999885,8.485503845000068],[-10.64386755399994,8.486873271000135],[-10.641077026999909,8.49477976500009],[-10.641180378999934,8.506639506000099],[-10.638854939999902,8.519894511000103],[-10.631878620999885,8.5320126350001],[-10.616479043999902,8.546507874000042],[-10.600511026999868,8.575653382000056],[-10.584646361999944,8.596840719000113],[-10.565422729999852,8.612782898000134],[-10.54516556799993,8.616761983000117],[-10.522117878999978,8.618570659000113],[-10.50330765799987,8.63156728100006],[-10.489665079999952,8.651049296000053],[-10.481861937999923,8.672469177000067],[-10.524753377999986,8.729545797000071],[-10.53023107899989,8.739157613000089],[-10.545320597999876,8.750035502000046],[-10.586300007999908,8.804089051000119],[-10.589090535999958,8.80659535800011],[-10.59627355999993,8.81124623700016],[-10.599684203999857,8.815380351000087],[-10.600200967999882,8.819023540000089],[-10.5991157629999,8.829617208000059],[-10.599374145999946,8.834035543000155],[-10.60846919699992,8.86230255200013],[-10.610122843999875,8.87230194100006],[-10.61187984199995,8.945139872000139],[-10.607125609999883,8.979840597000077],[-10.591777709999889,9.039061788000069],[-10.592179110999894,9.041657513000075],[-10.593100657999855,9.047616856000047],[-10.59410314899992,9.054099630000053],[-10.605988728999959,9.063763123000086],[-10.629346476999899,9.07035186700007],[-10.669085652999911,9.074434306000086],[-10.71042679799993,9.072987366000092],[-10.746341918999889,9.083813578000033],[-10.753473266999919,9.12011627200009],[-10.742569539999863,9.163291931000117],[-10.724741170999918,9.194504496000107],[-10.714974324999957,9.201351624000068],[-10.703760538999916,9.206312561000104],[-10.693166869999857,9.212849630000093],[-10.685208698999901,9.224502666000149],[-10.683916788999937,9.233752747000068],[-10.687947549999931,9.250702617000073],[-10.688050902999862,9.259280904000107],[-10.68345170099991,9.2718124390001],[-10.677663939999945,9.282897034000115],[-10.673839884999893,9.293981628000038],[-10.675131795999931,9.30646148700012],[-10.717764851999931,9.343332622000048],[-10.728203490999874,9.348190206000154],[-10.74153601099988,9.357052714000075],[-10.753473266999919,9.36756886800012],[-10.765462199999888,9.385216370000123],[-10.77476395699992,9.387335103000098],[-10.78540930199992,9.387231750000069],[-10.79522782399988,9.388523662000111],[-10.80168737799994,9.387283427000085],[-10.819360717999928,9.388058574000096],[-10.831763061999908,9.392141012000096],[-10.822151244999901,9.400900167000088],[-10.811454223999903,9.408264058000086],[-10.813417927999922,9.413896789000106],[-10.829075886999874,9.42394785500005],[-10.843958699999915,9.440251770000074],[-10.854862426999887,9.455263773000055],[-10.85909989399994,9.472988790000073],[-10.853673868999863,9.497870993000035],[-10.852588663999967,9.51208201100009],[-10.860185099999939,9.518541565000135],[-10.870572062999939,9.523399150000074],[-10.877703409999894,9.532675070000082],[-10.882819376999889,9.560166931000154],[-10.886333373999918,9.568409323000095],[-10.896048542999976,9.578305359000083],[-10.921680053999921,9.59590118400007],[-10.92906978399995,9.605693868000117],[-10.93578771999995,9.63189381900014],[-10.940128539999932,9.63969696100007],[-10.946639770999923,9.64483876500016],[-10.962917846999943,9.650781556000084],[-10.96849890099986,9.654243876000109],[-10.974596719999909,9.6637781780001],[-10.986327270999908,9.697755432000136],[-11.010098428999868,9.74273976600007],[-11.04492834499993,9.787129822000125],[-11.085959431999868,9.82617136600004],[-11.160270141999945,9.872757670000084],[-11.167659871999973,9.88446238300007],[-11.181250772999874,9.950375672000078],[-11.188537149999945,9.972596538000118],[-11.199595906999946,9.982156677000106],[-11.21344519099992,9.983371074000047],[-11.247293253999914,9.993396301000075],[-11.272666381999898,9.99600596100008],[-11.484874922999893,9.994844706000094],[-11.910095174999896,9.992517802000123],[-11.914952758999902,9.931487936000053],[-11.921774047999861,9.922212016000117],[-12.109807050999933,9.881675836000085],[-12.141347208999916,9.874876404000062],[-12.15834875499985,9.87559987400006],[-12.174833536999927,9.879191386000045],[-12.193643757999922,9.886064351000101],[-12.2173890789999,9.900559591000047],[-12.235605020999941,9.916760152000052],[-12.253588419999915,9.928413188000107],[-12.27673946099992,9.929265849000046],[-12.426988687999936,9.897614034000142],[-12.47233475799996,9.881258443000092],[-12.508327392999945,9.86038116500012],[-12.51432185899995,9.851311951000069],[-12.51499365299986,9.84511077900008],[-12.513727579999907,9.838341167000138],[-12.513624226999893,9.82782501300008],[-12.527266804999982,9.753617656000115],[-12.526646687999914,9.7506204230001],[-12.522874308999889,9.739432475000072],[-12.522460896999887,9.734471537000116],[-12.525561482999933,9.73206858400006],[-12.530729125999926,9.73284373000007],[-12.535690063999878,9.732792053000153],[-12.537653767999899,9.727934469000047],[-12.537472900999944,9.715712992000121],[-12.538764810999908,9.711914775000082],[-12.542020426999896,9.711320496000027],[-12.573077962999918,9.69256195100013],[-12.582250528999936,9.683363546000123],[-12.598580281999942,9.654863994000081],[-12.60155167699986,9.651711732000123],[-12.602766072999913,9.609362895000118],[-12.606822671999907,9.600707093000068],[-12.614858357999879,9.600086975000094],[-12.624599364999938,9.60127553300012],[-12.633849446999932,9.597864889000093],[-12.638552001999926,9.589415792000096],[-12.647285318999906,9.5566270960001],[-12.649920816999922,9.552105408000074],[-12.652065388999887,9.549444071000053],[-12.65526932799986,9.547738749000075],[-12.660953734999907,9.546033427000111],[-12.668627685999894,9.54236440000011],[-12.669273640999874,9.538230285000097],[-12.667309936999942,9.53370859800016],[-12.667516641999896,9.528695984000109],[-12.70159724999985,9.420227152000038],[-12.706196451999915,9.413948466000122],[-12.713121093999888,9.40816070600006],[-12.716454222999886,9.404414164000045],[-12.719038045999895,9.3983680220001],[-12.722939615999849,9.392089335000094],[-12.7278488769999,9.393122864000077],[-12.732939005999867,9.39650767000009],[-12.737228149999936,9.397231141000091],[-12.754074666999912,9.387800191000125],[-12.759759073999959,9.382839254000073],[-12.76779475899994,9.372323100000115],[-12.767562214999884,9.36439076700016],[-12.763557291999886,9.355347392000098],[-12.764151570999957,9.347673442000115],[-12.777923339999887,9.343849386000088],[-12.79526078299989,9.335090231000095],[-12.819135294999882,9.29579030400012],[-12.835826781999913,9.281966858000159],[-12.856884927999943,9.278504537000117],[-12.876108560999882,9.279848124000097],[-12.89564225199996,9.278504537000117],[-12.917527221999933,9.267006531000106],[-12.93700923599991,9.287082825000155],[-12.957912352999898,9.272432557000073],[-12.973751179999908,9.241581727000096],[-12.978350382999848,9.212849630000093],[-12.973932047999938,9.202798564000148],[-12.960211954999918,9.186081238000114],[-12.959152588999928,9.177838847000075],[-12.962795775999922,9.176701966000067],[-12.97847957399989,9.175203349000057],[-12.984163980999938,9.17230946900007],[-12.993801635999944,9.158692729000078],[-13.002044026999982,9.144119975000109],[-13.01524735499987,9.112752380000089],[-13.02886409499996,9.095983379000131],[-13.04700252299989,9.084537049000119],[-13.085578979999894,9.06598520900009],[-13.115913045999918,9.043945211000093],[-13.131054239999939,9.041464742000116],[-13.153843546999923,9.049319560000056],[-13.191774047999928,9.072987366000092],[-13.207535359999923,9.076708069000091],[-13.233631957999904,9.072057190000121],[-13.277376057999902,9.058595479000074],[-13.301096157999893,9.04148997600008],[-13.312367316999882,9.048325914000086],[-13.321603969999956,9.056626695000077],[-13.325795050999886,9.067775783000085],[-13.32217363199993,9.083075262000051],[-13.31944739499994,9.083563544000043],[-13.30451412699992,9.083075262000051],[-13.300648566999909,9.084621486000087],[-13.300933397999925,9.08820221600007],[-13.302154100999957,9.092515367000061],[-13.301096157999893,9.09613678600003],[-13.273793097999913,9.124009507000082],[-13.254872199999909,9.154933986000117],[-13.243072068999936,9.169745184000092],[-13.225941535999878,9.179266669000086],[-13.208241339999885,9.180080471000096],[-13.176136847999912,9.173651434000092],[-13.157704230999883,9.179266669000086],[-13.157704230999883,9.185492255000057],[-13.218495245999918,9.183254299000069],[-13.247303839999859,9.186021226000037],[-13.259510870999918,9.196356512000122],[-13.25767981699994,9.200262762000122],[-13.248890753999888,9.20831940300006],[-13.24583899599989,9.213446356000077],[-13.24583899599989,9.226467190000065],[-13.237904425999913,9.246649481000091],[-13.232818162999905,9.267401434000092],[-13.254872199999909,9.244818427000027],[-13.264556443999936,9.220445054000065],[-13.270375128999916,9.19403717700007],[-13.280629035999937,9.165025132000082],[-13.30492102799991,9.17548248900006],[-13.315297003999916,9.182074286000045],[-13.32217363199993,9.192938544000114],[-13.313588019999912,9.19794342700007],[-13.31163489499994,9.20722077000002],[-13.314686652999853,9.233303127000084],[-13.313588019999912,9.233140367000118],[-13.311187303999873,9.237982489000103],[-13.308949347999885,9.24477773600003],[-13.307932094999927,9.250311591000056],[-13.310047980999911,9.253810940000037],[-13.319650844999899,9.259263414000074],[-13.32217363199993,9.261216539000117],[-13.325062628999945,9.281317450000072],[-13.325347459999875,9.311021226],[-13.31867428299992,9.32949453300003],[-13.301096157999893,9.315863348000079],[-13.303822394999967,9.337795315000093],[-13.303374803999871,9.34711334800005],[-13.301096157999893,9.356838283000087],[-13.307932094999927,9.356838283000087],[-13.313954230999911,9.349554755000085],[-13.32217363199993,9.345404364000046],[-13.332834438999953,9.343573309000064],[-13.345773891999954,9.343166408000059],[-13.352853969999927,9.33877187700007],[-13.357818162999877,9.32843659100007],[-13.367909308999941,9.282171942000076],[-13.374501105999911,9.272772528000047],[-13.397531704999892,9.283840236000088],[-13.407785610999895,9.28701406500005],[-13.411976691999937,9.293402411000073],[-13.404123501999948,9.308417059000092],[-13.414051886999857,9.317206122000073],[-13.423817511999886,9.332912502000042],[-13.430816209999875,9.352036851],[-13.431996222999913,9.37107982000009],[-13.42516028599988,9.389878648000135],[-13.403309699999852,9.418158270000106],[-13.396636522999898,9.439357815000093],[-13.404123501999948,9.439357815000093],[-13.42837480399993,9.4207217470001],[-13.465402798999975,9.418158270000106],[-13.499175584999959,9.428778387000051],[-13.513986782999922,9.449611721000025],[-13.520863410999937,9.479478257000025],[-13.520741339999859,9.495103257000096],[-13.510243292999888,9.511053778000104],[-13.50064042899993,9.521795966000113],[-13.493234829999919,9.534857489000089],[-13.488392706999946,9.55060455900005],[-13.486683722999942,9.569077867000075],[-13.49351966099988,9.569077867000075],[-13.515614386999857,9.524481512000094],[-13.529042120999861,9.50568268400005],[-13.547474738999881,9.50018952000002],[-13.561390753999945,9.508978583000085],[-13.575266079999949,9.527248440000065],[-13.58551998599998,9.549139716000084],[-13.58844967399989,9.569077867000075],[-13.61900794199991,9.556382554000024],[-13.64325924399992,9.542547919000114],[-13.677967902999882,9.522691148000106],[-13.705799933999854,9.514471747000115],[-13.707102016999926,9.51215241100006],[-13.714344855999855,9.507635809000092],[-13.72240149599989,9.505804755000028],[-13.726226365999905,9.511053778000104],[-13.724110480999911,9.519517320000134],[-13.718902147999897,9.5222842470001],[-13.712310350999926,9.523667710000083],[-13.705799933999854,9.528062242000075],[-13.673329230999855,9.573797919000084],[-13.652658657999922,9.597154039000074],[-13.640777147999897,9.623724677000041],[-13.625803188999953,9.647284247000071],[-13.623036261999886,9.662909247000059],[-13.62437903599988,9.720282294000084],[-13.62319902299987,9.727362372000044],[-13.618560350999928,9.732082424000055],[-13.6048884759999,9.73737213700012],[-13.602162238999908,9.74380117400004],[-13.59544837099989,9.75503164300005],[-13.580718553999901,9.762030341000113],[-13.566517706999974,9.771063544000128],[-13.561105923999918,9.788234768000065],[-13.581776495999947,9.77716705900012],[-13.594309048999945,9.774237372000101],[-13.604115363999881,9.780178127000028],[-13.647775844999956,9.83148834800005],[-13.65119381399998,9.842840887000122],[-13.655181443999936,9.84174225500007],[-13.658111131999872,9.840521552000055],[-13.664784308999941,9.83661530200007],[-13.653797980999881,9.80524323100012],[-13.650542772999925,9.777004299000055],[-13.661284959999932,9.75454336100006],[-13.692128058999911,9.740383205000043],[-13.728911912999905,9.74408600500007],[-13.747181769999969,9.767767645000092],[-13.749826626999948,9.799872137000065],[-13.739898240999935,9.82916901200008],[-13.698312954999977,9.88076406500005],[-13.68199622299994,9.913478908000071],[-13.68529212099989,9.946478583000044],[-13.693959113999881,9.953802802000041],[-13.697499152999852,9.94041575700004],[-13.699208136999856,9.921332098000065],[-13.702015753999916,9.911688544000086],[-13.71275794199994,9.905178127000099],[-13.732492641999954,9.876776434000064],[-13.746693488999881,9.870754299000069],[-13.745432094999956,9.866522528000047],[-13.74974524599986,9.863470770000049],[-13.784657355999883,9.8502464860001],[-13.788685675999941,9.85004303600006],[-13.809681769999912,9.851629950000088],[-13.827707485999923,9.855373440000022],[-13.842844204999919,9.860785223000065],[-13.849191860999952,9.867621161000088],[-13.855051235999893,9.878851630000085],[-13.869130011999856,9.896226304000065],[-13.886097785999908,9.912176825000072],[-13.900624152999853,9.919134833000072],[-13.927642381999902,9.935939846000082],[-13.933176235999923,9.943345445000062],[-13.945383266999897,9.9669457050001],[-13.954253709999932,9.970933335000083],[-13.971099412999934,9.971828518000066],[-13.979481574999909,9.974351304000079],[-13.987049933999854,9.980414130000085],[-14.006743943999908,10.001044012000108],[-14.021717902999939,10.007269598000065],[-14.032297329999892,10.008978583000072],[-14.042958136999914,10.012844143000079],[-14.058338995999861,10.025295315000093],[-14.061879035999937,10.050116278000061],[-14.046131964999887,10.079494533000059],[-14.020334438999953,10.094427802000098],[-13.993763800999885,10.07615794500012],[-14.001088019999912,10.088202216000042],[-14.014800584999932,10.10480377800009],[-14.028187628999916,10.116603908000071],[-14.03408769399988,10.113999742000075],[-14.041615363999908,10.10130442900001],[-14.056752081999917,10.10659414300008],[-14.06834876199994,10.11810944200002],[-14.065500454999892,10.124579169000112],[-14.043812628999914,10.133246161000017],[-14.026966925999913,10.153957424000026],[-13.999908006999874,10.199693101000037],[-14.014515753999888,10.192775783000044],[-14.024891730999883,10.183742580000029],[-14.044667120999918,10.162176825000117],[-14.055490688999924,10.155340887000094],[-14.082834438999896,10.142889716000084],[-14.089344855999883,10.138251044000057],[-14.091175910999935,10.12604401200008],[-14.089344855999883,10.079901434000064],[-14.092274542999887,10.068589585000083],[-14.10057532499988,10.05829498900006],[-14.113433397999897,10.051011460000055],[-14.130279100999898,10.048895575000131],[-14.153187628999916,10.055650132000068],[-14.17048092399989,10.070786851000065],[-14.179798956999946,10.090277411000057],[-14.178781704999892,10.110296942000033],[-14.162749803999901,10.126613674000055],[-14.138172980999883,10.144476630000028],[-14.123646613999938,10.162583726000037],[-14.137766079999977,10.179185289000088],[-14.141672329999949,10.16453685100008],[-14.153146938999924,10.156317450000074],[-14.168609178999928,10.152736721000094],[-14.184925910999965,10.151922919000086],[-14.182484503999916,10.129543361000074],[-14.200184699999937,10.112738348000065],[-14.22240149599989,10.106105861000088],[-14.23338782499985,10.113999742000075],[-14.23656165299991,10.120917059000064],[-14.243560350999898,10.129380601000022],[-14.250599738999965,10.140529690000037],[-14.2538142569999,10.155340887000094],[-14.250477667999887,10.162583726000037],[-14.244048631999872,10.168890692000062],[-14.24006100199989,10.175116278000118],[-14.243885870999918,10.182318427000055],[-14.249256964999887,10.184271552000013],[-14.254750128999888,10.182847398000135],[-14.259022589999915,10.179592190000093],[-14.260650193999934,10.175767320000077],[-14.270130988999938,10.159735419000084],[-14.29210364499994,10.171779690000093],[-14.352365688999894,10.226223049000097],[-14.362700975999928,10.231187242000146],[-14.37669837099989,10.234442450000088],[-14.391835089999887,10.23338450700004],[-14.405506964999915,10.22939687700007],[-14.418568488999881,10.227972723000093],[-14.431955532999892,10.234442450000088],[-14.452544725999928,10.214585679000095],[-14.46263587099989,10.225165106000048],[-14.465891079999922,10.24970123900006],[-14.466135219999986,10.272040106000091],[-14.458241339999915,10.304266669000043],[-14.458607550999915,10.316961981000091],[-14.463042772999897,10.33002350500007],[-14.46861731699991,10.336249091000042],[-14.475331183999858,10.340318101000092],[-14.537261522999927,10.403631903000045],[-14.5480037099999,10.425604559000064],[-14.550892706999944,10.446600653000088],[-14.550526495999861,10.472113348000093],[-14.545521613999908,10.495021877000084],[-14.535593227999897,10.507473049000112],[-14.53502356699994,10.50820547100004],[-14.53543046799993,10.508164781000048],[-14.55142167899993,10.506781317000076],[-14.5624080069999,10.49933502800009],[-14.571603969999956,10.489447333000085],[-14.582834438999953,10.480861721000066],[-14.596424933999913,10.4759789080001],[-14.613514777999882,10.473374742000104],[-14.628977016999896,10.476263739000032],[-14.63744055899994,10.487738348000079],[-14.644276495999861,10.487738348000079],[-14.651193813999953,10.475083726],[-14.657785610999921,10.479559637000065],[-14.66270911399988,10.49412669500009],[-14.66470292899993,10.51162344000005],[-14.663807745999918,10.52920156500008],[-14.661122199999852,10.542629299000069],[-14.650461391999924,10.570257880000085],[-14.639393683999883,10.566636460000026],[-14.625965949999879,10.57737864800012],[-14.611398891999954,10.59296295800003],[-14.596424933999913,10.60374583500004],[-14.62059485599994,10.6043154970001],[-14.628651495999861,10.617254950000103],[-14.627430792999858,10.63548411700009],[-14.615223761999887,10.691310940000065],[-14.60728919199991,10.705389716000099],[-14.596424933999913,10.6993675800001],[-14.590240037999964,10.6993675800001],[-14.588286912999905,10.71430084800005],[-14.580718553999871,10.722072658000044],[-14.572417772999897,10.726304429000066],[-14.5685115229999,10.731024481000077],[-14.555490688999894,10.775702216000042],[-14.531320766999897,10.823472398000078],[-14.51744544199991,10.82904694200009],[-14.509673631999902,10.842474677000084],[-14.508371548999916,10.85846588700008],[-14.513905402999908,10.871893622000073],[-14.509999152999937,10.876450914000117],[-14.500233527999882,10.891099351000037],[-14.519927537999934,10.885402736000046],[-14.522572394999912,10.877630927000055],[-14.519154425999913,10.866522528000118],[-14.521351691999913,10.850816148000147],[-14.554921027999937,10.827622789000117],[-14.558908657999922,10.823472398000078],[-14.573475714999942,10.81240469000005],[-14.590402798999918,10.787258205000057],[-14.604359503999888,10.76044342700007],[-14.615956183999911,10.728013414000072],[-14.629709438999924,10.706447658000059],[-14.657866990999906,10.672674872000071],[-14.686105923999973,10.648179429000052],[-14.699818488999908,10.643133856000105],[-14.70571855399993,10.655259507000011],[-14.703724738999908,10.670843817000105],[-14.698109503999888,10.681830145000063],[-14.689442511999912,10.688950914000102],[-14.67833411399988,10.693101304000052],[-14.685780402999853,10.694728908000073],[-14.691761847999969,10.694484768000038],[-14.697865363999936,10.691839911000045],[-14.70571855399993,10.686346747000115],[-14.719349738999881,10.6993675800001],[-14.706898566999966,10.739203192000076],[-14.699086066999882,10.75625234600004],[-14.688384568999936,10.771958726],[-14.68219967399989,10.777777411000057],[-14.668080206999946,10.78709544500009],[-14.661284959999902,10.792792059000078],[-14.655995245999945,10.800604559000078],[-14.65330969999988,10.807603257000054],[-14.651356574999909,10.809963283000101],[-14.65656490799992,10.81195709800005],[-14.66470292899993,10.816636460000069],[-14.677967902999852,10.799627997000101],[-14.723133917999917,10.765122789000088],[-14.734771287999903,10.748114325000117],[-14.746449347999913,10.710760809000064],[-14.76032467399989,10.6993675800001],[-14.770008917999858,10.718817450000103],[-14.782704230999911,10.731268622000115],[-14.792836066999882,10.745021877000042],[-14.795074022999872,10.768255927000055],[-14.781605597999887,10.767767645000077],[-14.770008917999858,10.776922919000057],[-14.760812954999894,10.79043203300003],[-14.75413977799994,10.802964585000026],[-14.749256964999859,10.816107489000089],[-14.746083136999886,10.831203518000095],[-14.744984503999943,10.844061591000113],[-14.746693488999936,10.850816148000147],[-14.743885870999888,10.856594143000024],[-14.742421027999852,10.860988674000097],[-14.74046790299988,10.871893622000073],[-14.7589005199999,10.85846588700008],[-14.765288865999935,10.850327867000061],[-14.767730272999898,10.840887762000051],[-14.77257239499997,10.836493231000063],[-14.801258917999917,10.823472398000078],[-14.808705206999889,10.823472398000078],[-14.809681769999884,10.834784247000059],[-14.809071417999915,10.845607815000065],[-14.80650794199991,10.855454820000077],[-14.801258917999917,10.8644473330001],[-14.807281053999928,10.873602606000077],[-14.807972785999878,10.882473049000025],[-14.803822394999939,10.890814520000092],[-14.795074022999872,10.898586330000098],[-14.8138728509999,10.900336005000085],[-14.819732225999955,10.912014065000093],[-14.816761847999942,10.927191473000079],[-14.808705206999889,10.9396019550001],[-14.796131964999915,10.947577216000056],[-14.778635219999956,10.954087632000054],[-14.759917772999898,10.95844147300005],[-14.743560350999871,10.96002838700008],[-14.731760219999899,10.966457424000083],[-14.724964972999885,10.980536200000131],[-14.7206111319999,10.994574286000088],[-14.716297980999883,11.000962632000011],[-14.699452277999882,11.005519924000055],[-14.680775519999912,11.027492580000072],[-14.66470292899993,11.035793361000044],[-14.672230597999883,11.041449286000045],[-14.67723548099991,11.047593492000104],[-14.685170050999886,11.063666083000085],[-14.687001105999883,11.054266669000071],[-14.690093553999956,11.045233466000056],[-14.694976365999905,11.03847890800003],[-14.70225989499994,11.035793361000044],[-14.707875128999945,11.034491278000045],[-14.723540818999906,11.02826569200009],[-14.726796027999853,11.025824286000057],[-14.730824347999913,11.005845445000077],[-14.741525844999954,10.989081122000057],[-14.756825324999907,10.981187242000074],[-14.774566209999902,10.987982489000016],[-14.779449022999868,10.983303127000084],[-14.784575975999898,10.981105861000103],[-14.791411912999905,10.980373440000065],[-14.801258917999917,10.980536200000131],[-14.795480923999945,10.999701239000089],[-14.801258917999917,11.011908270000077],[-14.810658331999946,11.014471747000073],[-14.815541144999912,11.004706122000044],[-14.843495245999861,10.967474677000055],[-14.874623175999941,10.973293361000103],[-14.894439256999874,11.030259507000023],[-14.918568488999881,11.028957424000025],[-14.90147864499994,11.011664130000028],[-14.89879309799994,10.993231512000094],[-14.90412350199992,10.975490627000099],[-14.911122199999907,10.96002838700008],[-14.931955532999979,10.975653387000065],[-14.943918423999918,10.980047919000043],[-14.959584113999881,10.980536200000131],[-14.92638098899988,10.955552476000022],[-14.914418097999944,10.942328192000076],[-14.911122199999907,10.925930080000072],[-14.92088782499985,10.907660223000093],[-14.93980872299994,10.889105536000086],[-14.9581192699999,10.876206773000078],[-14.966420050999913,10.874986070000062],[-14.968495245999916,10.87787506700009],[-14.973215298999918,10.87885163000007],[-14.977894660999937,10.87787506700009],[-14.980051235999952,10.874986070000062],[-14.978993292999888,10.868841864000075],[-14.974232550999885,10.859279690000093],[-14.973215298999918,10.85419342700007],[-14.973215298999918,10.820054429000065],[-14.96898352799991,10.814357815000093],[-14.959584113999881,10.809963283000101],[-14.950184699999852,10.803778387000136],[-14.945912238999936,10.792792059000078],[-14.947661912999934,10.78758372600008],[-14.959584113999881,10.768255927000055],[-14.977528449999935,10.777044989000032],[-15.01390540299991,10.782619533000043],[-15.031564907999922,10.792792059000078],[-15.05260169199994,10.814398505000085],[-15.069447394999939,10.837144273000106],[-15.079457160999935,10.858710028000118],[-15.081125454999947,10.878241278000104],[-15.074330206999916,10.896877346000096],[-15.058908657999895,10.91596100500007],[-15.051625128999888,10.91962311400003],[-15.031890428999956,10.925482489000075],[-15.027821417999888,10.929348049000083],[-15.026682094999956,10.936672268000079],[-15.023589647999868,10.943589585000083],[-15.019398566999937,10.949530341000099],[-15.014800584999904,10.953802802000027],[-15.014800584999904,10.96002838700008],[-15.01927649599986,10.959702867000146],[-15.020334438999924,10.961371161000073],[-15.02013098899988,10.964178778000118],[-15.020985480999883,10.967474676500103],[-14.992594359999941,10.996203308000132],[-14.992594359999941,10.996358337000075],[-14.959056355999904,11.035761617000091],[-14.863144896999954,11.218644511000079],[-14.843249470999949,11.29719268800011],[-14.828211628999954,11.334787293000133],[-14.728992878999918,11.47800852500005],[-14.711061157999923,11.497568055000059],[-14.686773234999947,11.510719706000131],[-14.645380411999893,11.515060527000115],[-14.562258870999896,11.50560374000014],[-14.520943562999975,11.51289011600012],[-14.432267985999886,11.56057546100007],[-14.339223388999898,11.610610250000079],[-14.32648514899995,11.62058380100008],[-14.3197930499999,11.630505677000087],[-14.308217528999874,11.654535217000102],[-14.30038854999995,11.663165182000055],[-14.289691527999935,11.668849589000104],[-14.284472208999915,11.668177795000119],[-14.278736124999881,11.665077210000076],[-14.195020304999927,11.659702860000024],[-14.171972615999948,11.662751770000042],[-14.161844034999916,11.66094309500005],[-14.153084879999938,11.654845276000088],[-14.144480753999886,11.647403870000074],[-14.134920612999906,11.641771139000141],[-14.11856502299986,11.63799875900011],[-14.104664062999888,11.638567200000066],[-14.074640055999907,11.643734843000075],[-14.058827066999925,11.644044902000061],[-14.015134643999943,11.637120260000074],[-13.996453612999886,11.643838196000104],[-13.95335546899986,11.669676412000115],[-13.94542313699992,11.675670878000062],[-13.923744872999919,11.665025533000062],[-13.903642740999942,11.665387268000059],[-13.886408650999954,11.675567525000117],[-13.873515380999976,11.694532776000074],[-13.8706731769999,11.704144592000091],[-13.86852860499991,11.727037252000102],[-13.873050292999949,11.738354391000087],[-13.870053059999918,11.74367706300012],[-13.855041055999946,11.743418681000064],[-13.84628190099997,11.737269185000088],[-13.84297461,11.717270406000054],[-13.834551350999986,11.712102763000146],[-13.820133625999858,11.70807200100006],[-13.819513509999892,11.701664124000118],[-13.82168391899998,11.694222718000091],[-13.815766967999878,11.686832987000088],[-13.795690673999928,11.684042460000128],[-13.77000748699993,11.688693339000096],[-13.745771240999943,11.698201803000075],[-13.729932413999876,11.709829000000127],[-13.724764770999855,11.723109843000131],[-13.719571289999948,11.766104635000119],[-13.719364582999987,11.7840363560001],[-13.734634968999927,11.901858622000105],[-13.731327677999928,11.9434064740001],[-13.722594360999949,11.983869121000097],[-13.723937947999927,12.002782694000132],[-13.734919189999914,12.019267477000113],[-13.744427652999887,12.023918355000077],[-13.779645141999964,12.029344381000058],[-13.795897378999882,12.036269023000031],[-13.807757120999895,12.044278870000099],[-13.829642089999936,12.068101706000078],[-13.835197306999959,12.077765198000108],[-13.837729450999944,12.085413310000078],[-13.84240616899993,12.09130442300008],[-13.869717162999848,12.100709534000131],[-13.879768228999865,12.10768585200013],[-13.899301920999958,12.126237691000071],[-13.918396362999971,12.137761536000099],[-13.93865352399996,12.144272767000075],[-13.964853474999897,12.147890117000145],[-13.972527424999951,12.151559143000057],[-13.968367472999942,12.162566223000056],[-13.968264119999901,12.183960267000145],[-13.965731973999937,12.194243877000147],[-13.94392451999991,12.218635152000074],[-13.883153035999982,12.246437073000038],[-13.858968464999919,12.265970764000128],[-13.840003213999864,12.27713287300007],[-13.812640543999919,12.28359242800012],[-13.795690673999928,12.278734843000109],[-13.808558104999918,12.256100565000068],[-13.740836141999921,12.256927389000083],[-13.711819823999944,12.267521057000067],[-13.695024983999872,12.292945862000066],[-13.691020059999886,12.31930084200013],[-13.683010212999903,12.338679505000101],[-13.682028360999936,12.350306702000054],[-13.685154784999895,12.379193828000096],[-13.684147094999929,12.392009583000089],[-13.682028360999936,12.400329489000057],[-13.664432535999964,12.441515605000134],[-13.660711832999937,12.458672180000091],[-13.663399007999885,12.475777079000054],[-13.674690307999953,12.496085917000073],[-13.725074828999935,12.558149312000126],[-13.734634968999927,12.585331116000106],[-13.736314453999881,12.607603658000073],[-13.72827876799991,12.673387757000043],[-13.404758463999912,12.661760559000086],[-13.359801389999914,12.649736595000148],[-13.356647704999943,12.648893128000083],[-13.352048502999876,12.646981100000062],[-13.343444376999855,12.640986634000043],[-13.338612630999933,12.639229635000063]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Equatorial Guinea","sov_a3":"GNQ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Equatorial Guinea","adm0_a3":"GNQ","geou_dif":0,"geounit":"Equatorial Guinea","gu_a3":"GNQ","su_dif":0,"subunit":"Equatorial Guinea","su_a3":"GNQ","brk_diff":0,"name":"Eq. Guinea","name_long":"Equatorial Guinea","brk_a3":"GNQ","brk_name":"Eq. Guinea","brk_group":null,"abbrev":"Eq. G.","postal":"GQ","formal_en":"Republic of Equatorial Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Equatorial Guinea","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":650702,"gdp_md_est":14060,"pop_year":0,"lastcensus":2002,"gdp_year":0,"economy":"7. Least developed region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"EK","iso_a2":"GQ","iso_a3":"GNQ","iso_n3":"226","un_a3":"226","wb_a2":"GQ","wb_a3":"GNQ","woe_id":23424804,"woe_id_eh":23424804,"woe_note":"Exact WOE match as country","adm0_a3_is":"GNQ","adm0_a3_us":"GNQ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":17,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"GNQ.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.642751498000052,-1.462823174999841],[5.628916863000143,-1.475681247999858],[5.611989780000073,-1.463636976999851],[5.617035352000102,-1.462090752999899],[5.62134850400011,-1.458265882999967],[5.626231316000058,-1.456231377999941],[5.619965040000125,-1.444594007999854],[5.618662957000112,-1.433038018999824],[5.622813347000147,-1.422946872999944],[5.633067254000081,-1.415785414999917],[5.646250847000118,-1.438409112999963],[5.642751498000052,-1.462823174999841]]],[[[9.970739786000081,2.168912659000142],[9.990996948000088,2.165605367000154],[10.12556237800004,2.165605367000154],[10.189982611000062,2.165616497000187],[10.409685690000117,2.165654455000123],[10.424665568000108,2.165657043000166],[10.72376875800009,2.165657043000166],[11.022975301000088,2.165708720000083],[11.322078491000042,2.165760396000096],[11.32972660300004,2.127442322000093],[11.33014001500004,2.047137146000154],[11.331690308000077,1.785085958000153],[11.332000870000087,1.732611267000152],[11.333240600000096,1.52313812300018],[11.334790894000093,1.261164449000205],[11.336341187000128,0.999164937000117],[11.036824584000044,1.000198466000199],[10.96383408100013,1.000425223000121],[10.737411336000093,1.001128642000069],[10.438101440000082,1.002162171000051],[10.41504549800004,1.002233773000114],[10.1385848380001,1.003092347000091],[10.029444214000137,1.003505758000102],[10.000383932000146,0.999742112000177],[9.980765015000117,0.997201233000098],[9.975494018000063,0.982576803000114],[9.975390665000134,0.952966207000159],[9.971773315000064,0.939840393000111],[9.959991088000066,0.928368226000174],[9.94407474700003,0.924854228000129],[9.926298055000103,0.927541402000074],[9.908624715000114,0.935086161000029],[9.892088257000097,0.947901917000181],[9.866146688000072,0.977564189000148],[9.849610230000081,0.989243062000042],[9.83410730000014,0.994927470000164],[9.804371181182091,0.998353939876537],[9.80437259200005,0.998358466000013],[9.805918816000087,1.003607489000089],[9.804535352000102,1.020738023000121],[9.796885613000086,1.046291408000101],[9.799082879000082,1.058172919000143],[9.80681399800008,1.064398505000028],[9.819834832000083,1.068915106000077],[9.834727410000113,1.071600653000147],[9.847504102000073,1.072455145000148],[9.841481967000078,1.077704169000128],[9.829274936000074,1.081854559000163],[9.814789259000122,1.084540106000062],[9.80250084700009,1.085516669000128],[9.792246941000144,1.088690497000087],[9.76726321700005,1.102850653000118],[9.755137566000142,1.105943101000193],[9.714121941000144,1.097113348000136],[9.703461134000094,1.099798895000035],[9.699392123000052,1.109808661000102],[9.703786655000044,1.120591539000102],[9.711599155000016,1.129339911],[9.717784050000091,1.133286851000079],[9.699229363000086,1.125474351000165],[9.676442905000073,1.105414130000113],[9.657074415000125,1.083197333000072],[9.648936394000115,1.06875234600011],[9.642100457000112,1.06159088700015],[9.609141472000118,1.053452867000146],[9.584320509000065,1.042954820000162],[9.575368686000047,1.054754950000145],[9.559743686000076,1.102769273000135],[9.55160566500004,1.115423895000021],[9.540782097000147,1.125067450000159],[9.52475019600007,1.133286851000079],[9.506521030000073,1.13760000200007],[9.493500196000099,1.134588934000078],[9.481781446000099,1.129299221000011],[9.449961785000085,1.123277085000083],[9.420420769000117,1.109198309000135],[9.40528405000012,1.105943101000193],[9.396494988000143,1.111476955000114],[9.373057488000057,1.137681382000054],[9.360199415000123,1.146958726000193],[9.362152540000096,1.156968492000175],[9.359629754000082,1.164862372000073],[9.346690300000148,1.181708075000074],[9.362315300000148,1.188137111000074],[9.374034050000148,1.199896552000055],[9.382497592000078,1.214504299000083],[9.398773634000122,1.265692450000131],[9.40756269600007,1.283840236000131],[9.418955925000148,1.291571356000134],[9.4342554050001,1.299750067000147],[9.448252800000148,1.319077867000161],[9.458994988000084,1.341742255000042],[9.464040561000104,1.359849351000051],[9.461436394000117,1.398138739000075],[9.465342644000117,1.414536851000179],[9.492849155000043,1.426581122000101],[9.53223717500012,1.46230703300013],[9.549571160000113,1.484808661000116],[9.552744988000086,1.486476955000128],[9.554942254000082,1.491848049000097],[9.559580925000091,1.49673086100016],[9.564219597000118,1.503404039000031],[9.566416863000114,1.514064846000139],[9.578135613000114,1.542669989000131],[9.594248894000089,1.572170315000108],[9.61475670700014,1.588039455000043],[9.627777540000125,1.583726304000123],[9.640310092000107,1.571966864000061],[9.659190300000148,1.565334377000084],[9.685883009000065,1.568833726000165],[9.704763217000107,1.577704169000114],[9.722178582000083,1.589016018000109],[9.74447675900012,1.600043036000145],[9.724294467000078,1.599025783000087],[9.683441602000128,1.571356512000179],[9.66570071700005,1.575588283000116],[9.622325066000085,1.616766669000171],[9.607269727000071,1.644435940000079],[9.617523634000094,1.671454169000128],[9.676280144000089,1.729722398000135],[9.678965691000085,1.733465887000165],[9.684825066000116,1.744614976000179],[9.689789259000065,1.750230210000012],[9.710297071000127,1.763902085000126],[9.718109571000099,1.771795966000098],[9.722422722000118,1.778876044000157],[9.730967644000145,1.798732815000079],[9.735199415000068,1.804836330000157],[9.739756707000112,1.809027411000088],[9.743011915000068,1.815741278000047],[9.746755405000073,1.839911200000131],[9.751312696000127,1.846584377000013],[9.756032748000052,1.851467190000065],[9.758148634000063,1.856675523000149],[9.763682488000057,1.866115627000084],[9.799082879000082,1.901109117000175],[9.809743686000104,1.934963283000144],[9.805837436000104,1.976385809000149],[9.77808678500014,2.05809153900006],[9.76856530000012,2.076849677000112],[9.765472852000045,2.085394598000121],[9.764414910000085,2.096340236000103],[9.766612175000091,2.106878973000149],[9.771250847000118,2.113592841000099],[9.775889519000145,2.118597723000135],[9.77808678500014,2.123968817000019],[9.786387566000116,2.248114325000159],[9.78345787900008,2.270656643000066],[9.774912957000083,2.288072007000039],[9.766937696000099,2.310492255000128],[9.779795769000145,2.327866929000109],[9.799571159500116,2.341742255000099],[9.811059611000104,2.324872132000124],[9.811886434000115,2.306165263000139],[9.808682495000141,2.285494690000121],[9.810852905000047,2.264875794000119],[9.823668660000124,2.24901112900011],[9.846819702000118,2.228547262000149],[9.872141154000104,2.211235657000145],[9.890124552000088,2.204569397000142],[9.907487834000108,2.200486959000045],[9.970739786000081,2.168912659000142]]],[[[8.768239780000044,3.751695054000024],[8.781911655000071,3.750962632],[8.791758660000085,3.758205471000096],[8.814300977000073,3.751288153000019],[8.846690300000091,3.746405341000127],[8.880625847000118,3.747300523000121],[8.908457879000082,3.758205471000096],[8.911468946000099,3.753810940000122],[8.914561394000089,3.752142645000021],[8.922699415000096,3.750718492000046],[8.949229363000141,3.717922268000038],[8.95915774800005,3.700832424],[8.963145379000139,3.679673570000162],[8.961599155000101,3.660467841000112],[8.957530144000117,3.643011786000059],[8.951182488000086,3.627427476000165],[8.943125847000147,3.614203192000119],[8.906993035000113,3.582098700000145],[8.89673912900011,3.554429428999981],[8.863536004000082,3.515122789000145],[8.860687696000127,3.511786200000131],[8.840668165000068,3.45807526200015],[8.823415561000076,3.444403387000037],[8.818695509000065,3.420884507000067],[8.815928582000112,3.415513414000102],[8.813649936000047,3.412176825000088],[8.78492272200009,3.395086981000048],[8.78142337300008,3.378973700000074],[8.780935092000107,3.332912502000127],[8.774668816000142,3.316555080000114],[8.729746941000142,3.264797268000095],[8.69548587300008,3.208563544000099],[8.686208530000016,3.197333075000017],[8.676605665000125,3.203802802000097],[8.65365644600007,3.213568427000055],[8.648448113000143,3.220038153000147],[8.642100457000112,3.217352606000077],[8.627614780000073,3.222601630000057],[8.59986412900011,3.238023179000081],[8.592621290000068,3.235541083000057],[8.569672071000099,3.230414130000057],[8.55958092500012,3.230617580000015],[8.548838738000114,3.235296942000119],[8.527679884000094,3.248846747000087],[8.51465905000012,3.251695054000123],[8.493174675000091,3.25242747600015],[8.469411655000101,3.257961330000072],[8.45020592500012,3.272935289000102],[8.442230665000096,3.3023135440001],[8.437673373000052,3.313137111000017],[8.428558790000038,3.326239325000159],[8.422048373000052,3.339300848000136],[8.425303582000112,3.350409247000172],[8.429209832000083,3.35960521000014],[8.435394727000071,3.401922919000143],[8.442149285000113,3.421332098000064],[8.45525149800008,3.446519273000135],[8.473887566000144,3.463080145000106],[8.497569207000083,3.456529039000031],[8.510264519000145,3.463812567000133],[8.527110222000147,3.463039455000114],[8.562754754000082,3.456529039000031],[8.579600457000083,3.463324286000145],[8.585134311000104,3.479315497000144],[8.582286004000082,3.497748114000075],[8.573252800000148,3.511786200000131],[8.58570397200009,3.518459377000084],[8.601410352000128,3.529730536000073],[8.615244988000143,3.543117580000085],[8.621104363000086,3.555853583000044],[8.627940300000091,3.648342190000121],[8.640961134000092,3.68353913],[8.667165561000047,3.726263739000089],[8.702403191000087,3.760931708000072],[8.743418816000085,3.772406317000119],[8.741221550000091,3.768622137000179],[8.737152540000125,3.758205471000096],[8.768239780000044,3.751695054000024]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Guinea Bissau","sov_a3":"GNB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guinea Bissau","adm0_a3":"GNB","geou_dif":0,"geounit":"Guinea Bissau","gu_a3":"GNB","su_dif":0,"subunit":"Guinea Bissau","su_a3":"GNB","brk_diff":0,"name":"Guinea-Bissau","name_long":"Guinea-Bissau","brk_a3":"GNB","brk_name":"Guinea-Bissau","brk_group":null,"abbrev":"GnB.","postal":"GW","formal_en":"Republic of Guinea-Bissau","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guinea-Bissau","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":4,"pop_est":1533964,"gdp_md_est":904.2,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"PU","iso_a2":"GW","iso_a3":"GNB","iso_n3":"624","un_a3":"624","wb_a2":"GW","wb_a3":"GNB","woe_id":23424929,"woe_id_eh":23424929,"woe_note":"Exact WOE match as country","adm0_a3_is":"GNB","adm0_a3_us":"GNB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":13,"long_len":13,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"GNB.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-15.901600714999887,11.142279364000146],[-15.89484615799992,11.098863023000192],[-15.887806769999882,11.089341539000188],[-15.880767381999902,11.082180080000157],[-15.877552863999938,11.07363515800013],[-15.88267981699994,11.060614325000145],[-15.894642706999889,11.054348049000097],[-15.908273891999924,11.053371486000131],[-15.918446417999887,11.056219794000157],[-15.926380988999938,11.051418361000088],[-15.936879035999906,11.051947333000058],[-15.963246222999913,11.056219794000157],[-15.965565558999883,11.053941148000192],[-15.971791144999939,11.049790757000068],[-15.978179490999933,11.048081773000149],[-15.981190558999856,11.052883205000143],[-15.981434699999909,11.060939846000082],[-15.98102779899989,11.06622955900015],[-15.97789466099991,11.069037177000098],[-15.970326300999886,11.0698916690001],[-15.95995032499988,11.07257721600017],[-15.93187415299988,11.085516669000086],[-15.925933397999925,11.090399481000146],[-15.930490688999894,11.101629950000158],[-15.941761847999885,11.105373440000093],[-15.951893683999856,11.099920966000155],[-15.953277147999927,11.083563544000143],[-15.960560675999913,11.090277411000088],[-15.966949022999872,11.097845770000134],[-15.95807857999989,11.112697658000101],[-15.953480597999887,11.124457098000077],[-15.952381964999914,11.136419989000103],[-15.953277147999927,11.15180084800015],[-15.958648240999876,11.174302476000136],[-15.957142706999917,11.187241929000137],[-15.946400519999914,11.200262762000136],[-15.926991339999889,11.185858466000155],[-15.911691860999923,11.166327216000084],[-15.901600714999887,11.142279364000146]]],[[[-15.973784959999875,11.159247137000122],[-15.971669074999854,11.129868882000125],[-15.97447669199991,11.116197007000094],[-15.984283006999929,11.101263739000146],[-16.005482550999943,11.075832424000126],[-16.017079230999855,11.068670966000083],[-16.022124803999873,11.080471096000153],[-16.0255427729999,11.096258856000105],[-16.031361456999946,11.108587958000143],[-16.032460089999887,11.121486721000153],[-16.022124803999873,11.138820705000143],[-16.044992641999894,11.13873932500016],[-16.05614173099991,11.1485863300001],[-16.056996222999913,11.163560289000129],[-16.048898891999897,11.179144598000121],[-16.034535285999908,11.190497137000179],[-15.981190558999856,11.207098700000145],[-15.97712154899989,11.198797919000171],[-15.974924282999893,11.185370184000178],[-15.973784959999875,11.159247137000122]]],[[[-16.06582597599987,11.17291901200015],[-16.06940670499995,11.162746486000117],[-16.067697719999927,11.14789459800015],[-16.063303188999953,11.1386172550001],[-16.048898891999897,11.118312893000095],[-16.0631404289999,11.118312893000095],[-16.0631404289999,11.11082591400013],[-16.053334113999966,11.091538804000095],[-16.05728105399993,11.073309637000108],[-16.06224524599989,11.05841705900015],[-16.05565344999991,11.049465236000131],[-16.076161261999886,11.036118882000123],[-16.09386145699989,11.035345770000106],[-16.111561652999878,11.036566473000121],[-16.131988084999875,11.028957424000083],[-16.13536536399988,11.037665106000162],[-16.136586066999882,11.045843817000074],[-16.135487433999856,11.05418528900013],[-16.131988084999875,11.063666083000143],[-16.138295050999886,11.063666083000143],[-16.151275193999908,11.042547919000128],[-16.14500891799986,11.028957424000083],[-16.157582160999933,11.032700914000117],[-16.160878058999884,11.03546784100017],[-16.16551673099991,11.042547919000128],[-16.18846594999988,11.039618231000105],[-16.21312415299988,11.055568752000113],[-16.234730597999885,11.080633856000118],[-16.248036261999914,11.104681708000143],[-16.23497473899991,11.117865302000098],[-16.21861731699991,11.129584052000098],[-16.20164954299994,11.135646877000084],[-16.186675584999904,11.131984768000137],[-16.200347459999932,11.126288153000147],[-16.206532355999908,11.125148830000114],[-16.205637173999918,11.120754299000126],[-16.204579230999855,11.11762116100006],[-16.202788865999878,11.114691473000136],[-16.19969641799989,11.11082591400013],[-16.190785285999937,11.119574286000102],[-16.17943274599989,11.124660549000124],[-16.16974850199992,11.132269598000079],[-16.16185462099986,11.16620514500012],[-16.15343176999988,11.172186591000127],[-16.144276495999918,11.17576732000019],[-16.138295050999886,11.186590887000094],[-16.133168097999885,11.181382554000109],[-16.117746548999946,11.17291901200015],[-16.115101691999882,11.19745514500009],[-16.099964972999885,11.2081973330001],[-16.079986131999902,11.206244208000143],[-16.0631404289999,11.19281647300015],[-16.056630011999886,11.185207424000112],[-16.059559699999905,11.179510809000135],[-16.06582597599987,11.17291901200015]]],[[[-15.846506313999924,11.200995184000163],[-15.87132727799988,11.200262762000136],[-15.89606686099995,11.218207098000079],[-15.896473761999857,11.248724677000112],[-15.880767381999902,11.280585028000147],[-15.857085740999878,11.302679755000128],[-15.831166144999884,11.302964585000067],[-15.825835740999906,11.292669989000146],[-15.836537238999938,11.25551992400014],[-15.837554490999908,11.21401601800015],[-15.846506313999924,11.200995184000163]]],[[[-15.661529100999926,11.284613348000107],[-15.65648352799991,11.251695054000123],[-15.658436652999853,11.233791408000073],[-15.663441535999882,11.229885158000087],[-15.669545050999885,11.241156317000076],[-15.678822394999939,11.254136460000069],[-15.69318600199992,11.25551992400014],[-15.69318600199992,11.248032945000176],[-15.685699022999927,11.248032945000176],[-15.685699022999927,11.241197007000068],[-15.6932673819999,11.227728583000086],[-15.69863847599993,11.220851955000157],[-15.706206834999904,11.214504299000138],[-15.711781378999916,11.222398179000109],[-15.714507615999878,11.224920966000127],[-15.726796027999937,11.220770575000174],[-15.721343553999901,11.210150458000143],[-15.720326300999915,11.195624091000113],[-15.722523566999909,11.179999091000127],[-15.726796027999937,11.166083075000145],[-15.72883053299995,11.170355536000145],[-15.732045050999917,11.175116278000145],[-15.73420162699992,11.179144598000121],[-15.740223761999916,11.178615627000141],[-15.742543097999885,11.177923895000106],[-15.744211391999897,11.177923895000106],[-15.747873501999946,11.179144598000121],[-15.754017706999917,11.179144598000121],[-15.763824022999872,11.167914130000113],[-15.773304816999882,11.17308177300012],[-15.780018683999915,11.186590887000094],[-15.781971808999856,11.200262762000136],[-15.775013800999886,11.20673248900013],[-15.763539191999909,11.214504299000138],[-15.75951087099986,11.221869208000129],[-15.775135870999861,11.227525132000123],[-15.775135870999861,11.233791408000073],[-15.754017706999917,11.25551992400014],[-15.753081834999932,11.259833075000143],[-15.754994269999912,11.271714585000097],[-15.754017706999917,11.27594635600012],[-15.749256964999914,11.277085679000066],[-15.742543097999885,11.275864976000136],[-15.736683722999942,11.275539455000114],[-15.73420162699992,11.279038804000109],[-15.72354081899988,11.299017645000076],[-15.699533657999922,11.305812893000109],[-15.673939581999944,11.304999091000097],[-15.658436652999853,11.302679755000128],[-15.661529100999926,11.284613348000107]]],[[[-16.206532355999908,11.310126044000114],[-16.19749915299991,11.298407294000114],[-16.1861873039999,11.297267971000082],[-16.173166469999927,11.299139716000141],[-16.158762173999946,11.296454169000171],[-16.154408331999974,11.289211330000143],[-16.151519334999932,11.276190497000158],[-16.150380011999914,11.263088283000101],[-16.151275193999908,11.25551992400014],[-16.16307532499988,11.25067780200007],[-16.172840949999905,11.244574286000088],[-16.17731686099995,11.235174872000144],[-16.172963019999884,11.220770575000174],[-16.23851477799991,11.21527741100006],[-16.251454230999908,11.217678127000099],[-16.278228318999908,11.230373440000065],[-16.282826300999943,11.230658270000104],[-16.281646287999934,11.24262116100013],[-16.27790279899989,11.252427476000065],[-16.271148240999935,11.259182033000101],[-16.26113847599987,11.261664130000128],[-16.26252193899995,11.278631903000102],[-16.248687303999958,11.294419664000145],[-16.229318813999924,11.304103908000101],[-16.213978644999884,11.302679755000128],[-16.206532355999908,11.310126044000114]]],[[[-15.665272589999857,11.49445221600014],[-15.66319739499994,11.492173570000176],[-15.661366339999885,11.489447333000115],[-15.658029751999946,11.487697658000116],[-15.651600714999915,11.4882266300001],[-15.652333136999857,11.48354726800008],[-15.653431769999914,11.48053620000016],[-15.658436652999853,11.473944403000104],[-15.652658657999892,11.46605052300012],[-15.657582160999937,11.457993882000096],[-15.679554816999968,11.440415757000068],[-15.684437628999916,11.449774481000174],[-15.685699022999927,11.453517971000124],[-15.69318600199992,11.453517971000124],[-15.704660610999952,11.442694403000132],[-15.720855272999897,11.442694403000132],[-15.735096808999915,11.44985586100016],[-15.7403865229999,11.460353908000144],[-15.735463019999912,11.469427802000139],[-15.727284308999913,11.470404364000117],[-15.718902147999872,11.46816640800013],[-15.713693813999953,11.467759507000125],[-15.706206834999904,11.475246486000103],[-15.700510219999899,11.48338450700011],[-15.69627844999988,11.49225495000016],[-15.69318600199992,11.501898505000128],[-15.685699022999927,11.49445221600014],[-15.680531378999945,11.49872467700007],[-15.665272589999857,11.508734442000147],[-15.660267706999916,11.504706122000172],[-15.660064256999874,11.501857815000136],[-15.665272589999857,11.49445221600014]]],[[[-16.205555792999917,11.450262762000165],[-16.208607550999915,11.444647528000173],[-16.213978644999884,11.440415757000068],[-16.22248287699992,11.440090236000131],[-16.25487219999991,11.447251695000162],[-16.27586829299986,11.447007554000123],[-16.287831183999884,11.44871653900013],[-16.30211341099988,11.453517971000124],[-16.29002844999988,11.46157461100016],[-16.27183997299988,11.470892645000106],[-16.25536048099991,11.482733466000155],[-16.248036261999914,11.498195705000084],[-16.236683722999913,11.50800202000012],[-16.211008266999954,11.515366929000109],[-16.18309485599994,11.518500067000089],[-16.16551673099991,11.51557038000007],[-16.160633917999917,11.505560614000089],[-16.164173956999917,11.496079820000162],[-16.19383704299986,11.465033270000147],[-16.19969641799989,11.460353908000144],[-16.203114386999886,11.455959377000156],[-16.205555792999917,11.450262762000165]]],[[[-16.242583787999873,11.577826239000144],[-16.24128170499995,11.570217190000122],[-16.244536912999905,11.552150783000101],[-16.252186652999853,11.537339585000124],[-16.26862545499992,11.51557038000007],[-16.272572394999912,11.506822007000096],[-16.27354895699989,11.500921942000147],[-16.275542772999927,11.495510158000101],[-16.281727667999917,11.493150132000054],[-16.291981574999852,11.493109442000062],[-16.30211341099988,11.4882266300001],[-16.306711391999926,11.486639716000155],[-16.30996660099987,11.482652085000081],[-16.31383216099988,11.48053620000016],[-16.31981360599988,11.484523830000143],[-16.33283443899998,11.499172268000152],[-16.336822068999936,11.501898505000128],[-16.339100714999915,11.501288153000159],[-16.391468878999913,11.501898505000128],[-16.400502081999917,11.493963934000163],[-16.40851803299995,11.489243882000068],[-16.419422980999855,11.4882266300001],[-16.41633053299995,11.495062567000103],[-16.411976691999968,11.501898505000128],[-16.418324347999885,11.514390367000132],[-16.41698157499991,11.517238674000083],[-16.411976691999968,11.52240631700009],[-16.421945766999954,11.527980861000088],[-16.42625891799986,11.5292422550001],[-16.38914954299986,11.54767487200013],[-16.34788977799988,11.548529364000132],[-16.30996660099987,11.553452867000189],[-16.282826300999943,11.583807684000163],[-16.278146938999924,11.582424221000094],[-16.27725175699993,11.581854559000119],[-16.277333136999914,11.580633856000105],[-16.275380011999886,11.576971747000144],[-16.267933722999885,11.57689036700016],[-16.260487433999913,11.57794830900012],[-16.253773566999882,11.5802269550001],[-16.248036261999914,11.583807684000163],[-16.244374152999853,11.580877997000144],[-16.242583787999873,11.577826239000144]]],[[[-15.930897589999885,11.578680731000148],[-15.922434048999945,11.578029690000108],[-15.918446417999887,11.59125397300015],[-15.906076626999946,11.578436591000113],[-15.909291144999882,11.551703192000103],[-15.898019985999897,11.542873440000136],[-15.910389777999852,11.52269114800012],[-15.913441535999935,11.498358466000141],[-15.90880286399991,11.47386302300012],[-15.898019985999897,11.453517971000124],[-15.91779537699992,11.446600653000116],[-15.943714972999913,11.43211497600008],[-15.965687628999943,11.426703192000131],[-15.973784959999875,11.447251695000162],[-15.981190558999856,11.447251695000162],[-15.982533331999946,11.442572333000058],[-15.985463019999884,11.4376488300001],[-15.987416144999912,11.433010158000158],[-15.990589972999885,11.436712958000115],[-15.997873501999889,11.443508205000143],[-16.00108801999994,11.447251695000162],[-16.006947394999884,11.436346747000101],[-16.015858527999853,11.42829010600016],[-16.025868292999917,11.422919012000108],[-16.035227016999954,11.419989325000174],[-16.04478919199994,11.43305084800015],[-16.079213019999884,11.456976630000128],[-16.083607550999943,11.467759507000125],[-16.048898891999897,11.4882266300001],[-16.026275193999908,11.51227448100012],[-16.022124803999873,11.512152411000145],[-16.019113735999895,11.528753973000105],[-16.011382615999878,11.55027903900013],[-16.001332160999905,11.569037177000098],[-15.991118943999965,11.576971747000144],[-15.974924282999893,11.58344147300015],[-15.952259894999939,11.60675690300016],[-15.93960527299987,11.604925848000093],[-15.938384568999878,11.589056708000058],[-15.930897589999885,11.578680731000148]]],[[[-15.473500128999943,11.63226959800015],[-15.473947719999927,11.618597723000121],[-15.48493404899989,11.607082424000083],[-15.487782355999853,11.594671942000145],[-15.482045050999886,11.583563544000128],[-15.472645636999859,11.573431708000072],[-15.47166907499988,11.566148179000066],[-15.490834113999936,11.563381252000099],[-15.503407355999911,11.565171617000175],[-15.512074347999913,11.571478583000129],[-15.521311001999893,11.570217190000122],[-15.522816535999937,11.56745026200015],[-15.542347785999908,11.549709377000156],[-15.54735266799986,11.548529364000132],[-15.56969153599988,11.549709377000156],[-15.56969153599988,11.542873440000136],[-15.548410610999923,11.535142320000132],[-15.55223548099991,11.519517320000148],[-15.566314256999874,11.510484117000132],[-15.575835740999876,11.52240631700009],[-15.587147589999859,11.519354559000178],[-15.600697394999912,11.520738023000163],[-15.612049933999884,11.523871161000145],[-15.616932745999861,11.525824286000088],[-15.621734178999928,11.522447007000082],[-15.630279100999871,11.528998114000146],[-15.632964647999925,11.538234768000123],[-15.62059485599991,11.542873440000136],[-15.607411261999859,11.55011627800016],[-15.598255988999881,11.565171617000175],[-15.58568274599989,11.577541408000116],[-15.562245245999918,11.576971747000144],[-15.56029212099986,11.592189846000123],[-15.550282355999883,11.603216864000087],[-15.537912563999924,11.613023179000109],[-15.52871660099987,11.624823309000178],[-15.511830206999889,11.620428778000104],[-15.496734178999873,11.62490469000015],[-15.483876105999855,11.631089585000126],[-15.473500128999943,11.63226959800015]]],[[[-15.985585089999859,11.887437242000187],[-15.989084438999924,11.861517645000104],[-15.996937628999916,11.84926992400014],[-16.006906704999892,11.838039455000128],[-16.014719204999892,11.824042059000163],[-16.023508266999954,11.78522370000016],[-16.02940833199989,11.769191799000067],[-16.041411912999905,11.755113023000119],[-16.051665818999936,11.762193101000094],[-16.063384568999936,11.760687567000133],[-16.074574347999942,11.756415106000118],[-16.083607550999943,11.755113023000119],[-16.096262173999918,11.76292552300012],[-16.121164516999954,11.799790757000096],[-16.132801886999886,11.805487372000158],[-16.14500891799986,11.805487372000158],[-16.15477454299989,11.807766018000137],[-16.158762173999946,11.820298570000134],[-16.15916907499988,11.848089911000116],[-16.16112219999991,11.861151434000178],[-16.16551673099991,11.871242580000143],[-16.148060675999943,11.877264716000155],[-16.12873287699992,11.876613674000112],[-16.093251105999908,11.871242580000143],[-16.079945441999907,11.87323639500009],[-16.065052863999938,11.878404039000188],[-16.035227016999954,11.892971096000124],[-16.039051886999854,11.896958726000108],[-16.038929816999882,11.897650458000143],[-16.03697669199994,11.899237372000172],[-16.022572394999884,11.899644273000177],[-16.009429490999906,11.900295315000122],[-15.994862433999884,11.899115302000096],[-15.987538214999887,11.890448309000107],[-15.985585089999859,11.887437242000187]]],[[[-13.664432535999964,12.441515605000175],[-13.682028360999936,12.4003294890001],[-13.6841470949999,12.392009583000132],[-13.685154784999895,12.379193828000155],[-13.682028360999936,12.350306702000111],[-13.683010212999903,12.338679505000144],[-13.691020059999886,12.319300842000175],[-13.695024983999872,12.292945862000124],[-13.711819823999916,12.26752105700011],[-13.740836141999921,12.25692738900014],[-13.808558104999918,12.25610056500011],[-13.795690673999928,12.278734843000151],[-13.812640543999919,12.283592428000176],[-13.840003213999864,12.277132873000125],[-13.858968464999919,12.265970764000187],[-13.883153035999982,12.246437073000095],[-13.94392451999991,12.218635152000132],[-13.965731973999908,12.194243877000188],[-13.968264119999901,12.183960267000202],[-13.968367472999942,12.162566223000098],[-13.972527424999951,12.151559143000114],[-13.964853474999897,12.147890117000202],[-13.93865352399996,12.144272767000132],[-13.918396362999943,12.137761536000156],[-13.899301920999958,12.126237691000128],[-13.879768228999865,12.107685852000174],[-13.869717162999848,12.100709534000188],[-13.8424061689999,12.091304423000139],[-13.837729450999944,12.085413310000135],[-13.835197306999959,12.077765198000149],[-13.829642089999936,12.068101706000135],[-13.807757120999895,12.044278870000156],[-13.795897378999882,12.036269023000088],[-13.779645141999964,12.0293443810001],[-13.744427652999887,12.02391835500012],[-13.734919189999914,12.019267477000156],[-13.723937947999927,12.002782694000173],[-13.722594360999949,11.98386912100014],[-13.731327677999928,11.943406474000142],[-13.734634968999927,11.901858622000162],[-13.719364582999987,11.784036356000144],[-13.719571289999948,11.766104635000175],[-13.724764770999855,11.723109843000188],[-13.729932413999846,11.709829000000182],[-13.745771240999943,11.698201803000131],[-13.77000748699993,11.688693339000139],[-13.795690673999928,11.684042460000171],[-13.815766967999878,11.686832987000129],[-13.82168391899998,11.694222718000146],[-13.819513509999892,11.701664124000159],[-13.820133625999858,11.708072001000104],[-13.83455135099996,11.712102763000189],[-13.84297461,11.717270406000111],[-13.84628190099997,11.737269185000144],[-13.855041055999946,11.743418681000108],[-13.870053059999918,11.743677063000176],[-13.873050292999949,11.73835439100013],[-13.86852860499991,11.727037252000159],[-13.8706731769999,11.704144592000134],[-13.873515380999947,11.694532776000129],[-13.886408650999954,11.675567525000176],[-13.903642740999942,11.665387268000117],[-13.923744872999919,11.665025533000117],[-13.945423136999892,11.675670878000105],[-13.95335546899986,11.669676412000172],[-13.996453612999886,11.643838196000145],[-14.015134643999943,11.637120260000131],[-14.058827066999925,11.644044902000118],[-14.074640055999907,11.64373484300013],[-14.104664062999888,11.638567200000125],[-14.11856502299986,11.637998759000169],[-14.134920612999906,11.641771139000184],[-14.144480753999886,11.647403870000119],[-14.153084879999938,11.654845276000145],[-14.161844034999916,11.660943095000107],[-14.171972615999948,11.6627517700001],[-14.195020304999927,11.659702860000067],[-14.278736124999881,11.66507721000012],[-14.284472208999915,11.668177795000162],[-14.289691527999935,11.668849589000144],[-14.30038854999995,11.663165182000114],[-14.308217528999874,11.65453521700016],[-14.3197930499999,11.63050567700013],[-14.32648514899995,11.620583801000137],[-14.339223388999898,11.610610250000121],[-14.432267985999886,11.560575461000113],[-14.520943562999975,11.512890116000165],[-14.562258870999896,11.505603740000183],[-14.645380411999893,11.51506052700016],[-14.686773234999919,11.510719706000174],[-14.711061157999923,11.497568055000114],[-14.728992878999918,11.478008525000105],[-14.828211628999954,11.334787293000176],[-14.843249470999949,11.297192688000166],[-14.863144896999954,11.218644511000122],[-14.959056355999904,11.035761617000132],[-14.992594359999913,10.996358337000132],[-14.992594359999913,10.996203308000176],[-15.020985480999883,10.967474676500146],[-15.059803839999887,10.940415757000068],[-15.085194464999915,10.927639065000122],[-15.096750454999922,10.929348049000126],[-15.093983527999882,10.94253164300008],[-15.087025519999884,10.949286200000117],[-15.078195766999924,10.953762111000088],[-15.069447394999939,10.960028387000122],[-15.054676886999886,10.982570705000114],[-15.048329230999855,10.98798248900006],[-15.048329230999855,10.994818427000084],[-15.055775519999912,10.994818427000084],[-15.059966600999957,10.98541901200015],[-15.065093553999873,10.977362372000115],[-15.072336391999897,10.97113678600006],[-15.08307857999989,10.967474677000112],[-15.094838019999882,10.96698639500012],[-15.105824347999942,10.969427802000055],[-15.114003058999854,10.97516510600012],[-15.117176886999912,10.984279690000122],[-15.099354620999918,11.057684637000122],[-15.093332485999921,11.0698916690001],[-15.082753058999886,11.07542552300012],[-15.076486782999922,11.088446356000105],[-15.071685350999926,11.10325755400008],[-15.065744594999899,11.11456940300016],[-15.059925910999965,11.117417710000112],[-15.047434048999945,11.116644598000093],[-15.042103644999884,11.118312893000095],[-15.041411912999934,11.122137762000108],[-15.0428767569999,11.135443427000126],[-15.042103644999884,11.138820705000143],[-15.000559048999888,11.142238674000154],[-15.00243079299986,11.150580145000133],[-15.00755774599989,11.157375393000152],[-15.014149542999858,11.162502346000082],[-15.020985480999883,11.166083075000145],[-15.00767981699994,11.18008047100011],[-14.99974524599989,11.198960679000137],[-15.000884568999908,11.216782945000105],[-15.014800584999904,11.227525132000123],[-15.023833787999903,11.20148346600014],[-15.038726365999878,11.182603257000123],[-15.058705206999946,11.170843817000133],[-15.08307857999989,11.166083075000145],[-15.077504035999882,11.150051174000154],[-15.08185787699989,11.140204169000128],[-15.091786261999884,11.138128973000107],[-15.102894660999906,11.14565664300008],[-15.105091925999913,11.140448309000163],[-15.107818162999877,11.136460679000095],[-15.109852667999917,11.131984768000137],[-15.11034094999988,11.125148830000114],[-15.114328579999949,11.127671617000132],[-15.124623175999888,11.131984768000137],[-15.125070766999896,11.112738348000093],[-15.130848761999857,11.103664455000084],[-15.141102667999888,11.097398179000137],[-15.154774542999917,11.08698151200015],[-15.166249152999852,11.072455145000104],[-15.180978969999927,11.044256903000132],[-15.20689856699994,11.00958893400015],[-15.217884894999912,10.99917226800008],[-15.23013261599988,10.994818427000084],[-15.243031378999886,11.000433661000088],[-15.2584529289999,11.013617255000128],[-15.269927537999878,11.028469143000095],[-15.271107550999886,11.0392113300001],[-15.260121222999912,11.047064520000092],[-15.230213995999861,11.061835028000159],[-15.219593878999914,11.0698916690001],[-15.214507615999876,11.08144765800013],[-15.206613735999923,11.125148830000114],[-15.217355923999918,11.209418036000116],[-15.206613735999923,11.233791408000073],[-15.22911536399991,11.230373440000065],[-15.234974738999938,11.215562242000189],[-15.231678839999914,11.196275132000068],[-15.226470506999902,11.179144598000121],[-15.225087042999945,11.163967190000136],[-15.226185675999886,11.139797268000123],[-15.233509894999882,11.122544664000117],[-15.259348110999895,11.132635809000178],[-15.294748501999921,11.131984768000137],[-15.305287238999881,11.135077216000111],[-15.312896287999905,11.139349677000126],[-15.318470831999916,11.143377997000101],[-15.322621222999969,11.14565664300008],[-15.34593665299988,11.142320054000137],[-15.358225063999924,11.144232489000103],[-15.363636847999885,11.155503648000177],[-15.366363084999932,11.166489976000049],[-15.373524542999887,11.173773505000069],[-15.383452928999901,11.177883205000114],[-15.394683397999898,11.179144598000121],[-15.409535285999937,11.1896019550001],[-15.41307532499985,11.213812567000103],[-15.412017381999874,11.261664130000128],[-15.409535285999937,11.272447007000123],[-15.41006425699993,11.279201565000065],[-15.415435350999898,11.282171942000074],[-15.42174231699991,11.28229401200015],[-15.424956834999874,11.283392645000092],[-15.426136847999913,11.286525783000158],[-15.426340298999945,11.292710679000137],[-15.425160285999937,11.303412177000068],[-15.420033331999917,11.316555080000114],[-15.418853318999906,11.327134507000082],[-15.41392981699994,11.336411851000122],[-15.388579881999902,11.369940497000158],[-15.37791907499988,11.378363348000121],[-15.371449347999969,11.376939195000146],[-15.351307745999916,11.367621161000102],[-15.339751756999902,11.365383205000114],[-15.329701300999913,11.368475653000102],[-15.315581834999902,11.382066148000149],[-15.305572068999906,11.38519928600013],[-15.29539954299986,11.390814520000134],[-15.28351803299992,11.404201565000136],[-15.273182745999918,11.419989325000174],[-15.268055792999888,11.433010158000158],[-15.323068813999953,11.389146226000122],[-15.343129035999908,11.378363348000121],[-15.358469204999949,11.387355861000131],[-15.361683722999913,11.399115302000112],[-15.356760219999956,11.42959219000015],[-15.350819464999857,11.439357815000108],[-15.339100714999859,11.451727606000132],[-15.331044074999909,11.462632554000109],[-15.336293097999913,11.467759507000125],[-15.35338294199994,11.463324286000145],[-15.366444464999914,11.450751044000157],[-15.374908006999872,11.4337425800001],[-15.37791907499988,11.41624583500014],[-15.384185350999926,11.404730536000116],[-15.398589647999898,11.397447007000096],[-15.414865688999924,11.391831773000192],[-15.426340298999945,11.38519928600013],[-15.435699022999898,11.36945221600017],[-15.440744594999925,11.35614655200007],[-15.44945227799991,11.347072658000158],[-15.470041469999956,11.34365469000015],[-15.483143683999913,11.339544989000103],[-15.494292772999925,11.333889065000108],[-15.502674933999884,11.336655992000159],[-15.507069464999885,11.357896226000065],[-15.504017706999887,11.368557033000087],[-15.489003058999856,11.404689846000124],[-15.484038865999905,11.412543036000102],[-15.481027798999918,11.419378973000121],[-15.453033006999874,11.460353908000144],[-15.47052975199992,11.461086330000072],[-15.476714647999897,11.467962958000086],[-15.47630774599989,11.479559637000094],[-15.473500128999943,11.49445221600014],[-15.465646938999953,11.489650783000158],[-15.456776495999918,11.489081122000101],[-15.447743292999917,11.493109442000062],[-15.438710089999885,11.501898505000128],[-15.437977667999862,11.495510158000101],[-15.432484503999945,11.480780341000113],[-15.42804928299995,11.493963934000163],[-15.420643683999886,11.505275783000144],[-15.412342902999908,11.50771719000008],[-15.405262824999852,11.49445221600014],[-15.397816535999878,11.49445221600014],[-15.398752407999948,11.504339911000073],[-15.401356574999852,11.513373114000075],[-15.405873175999886,11.521673895000147],[-15.412017381999874,11.5292422550001],[-15.407297329999949,11.530015367000116],[-15.406564907999922,11.530951239000103],[-15.40684973899988,11.532660223000107],[-15.405262824999852,11.536037502000125],[-15.396066860999952,11.532131252000127],[-15.385161912999903,11.530015367000116],[-15.371083136999857,11.5292422550001],[-15.354359503999914,11.525051174000069],[-15.348866339999885,11.528265692000117],[-15.356760219999956,11.542873440000136],[-15.353423631999929,11.55052317900008],[-15.34996497299994,11.563381252000099],[-15.343129035999908,11.563381252000099],[-15.335072394999884,11.552435614000132],[-15.321115688999923,11.554266669000114],[-15.30955969999988,11.553859768000109],[-15.308990037999905,11.536037502000125],[-15.289865688999953,11.542792059000163],[-15.290394660999908,11.55634186400013],[-15.302113410999906,11.571722723000079],[-15.316477016999897,11.583807684000163],[-15.320668097999915,11.58120351800008],[-15.32428951699998,11.57998281500015],[-15.336293097999913,11.576971747000144],[-15.336293097999913,11.583807684000163],[-15.314523891999926,11.59125397300015],[-15.304188605999938,11.596909898000135],[-15.294748501999921,11.604925848000093],[-15.287342902999939,11.59247467700007],[-15.274769660999937,11.578111070000174],[-15.2584529289999,11.570257880000113],[-15.24010169199997,11.576971747000144],[-15.25226803299995,11.578802802000126],[-15.253163214999857,11.585516669000171],[-15.25104732999992,11.594956773000177],[-15.25377356699991,11.604925848000093],[-15.261708136999857,11.608832098000077],[-15.270130988999908,11.608710028000104],[-15.277251756999874,11.611639716000127],[-15.281117316999882,11.624823309000178],[-15.269683397999925,11.621079820000148],[-15.247914191999937,11.616522528000102],[-15.24010169199997,11.611761786000102],[-15.226470506999902,11.618597723000121],[-15.228627081999916,11.612046617000132],[-15.231312628999888,11.597805080000128],[-15.233876105999913,11.59125397300015],[-15.209136522999927,11.573960679000052],[-15.20164954299986,11.575425523000105],[-15.192290818999934,11.59125397300015],[-15.197417772999929,11.600043036000116],[-15.210194464999885,11.616848049000126],[-15.212757941999882,11.621730861000103],[-15.210031704999922,11.628566799000112],[-15.203114386999912,11.636379299000112],[-15.194447394999912,11.642808335000112],[-15.186146613999938,11.645900783000101],[-15.183990037999932,11.643703518000109],[-15.176380988999908,11.638983466000099],[-15.165842251999946,11.634344794000171],[-15.154774542999917,11.63226959800015],[-15.148426886999886,11.62881094000015],[-15.144886847999883,11.62018463700015],[-15.143544074999907,11.609076239000117],[-15.143950975999898,11.598089911000073],[-15.124623175999888,11.604925848000093],[-15.126576300999941,11.608303127000099],[-15.128895636999886,11.615383205000157],[-15.130848761999857,11.618597723000121],[-15.115874803999901,11.61774323100012],[-15.105539516999897,11.61225006700009],[-15.09752356699994,11.603013414000129],[-15.089914516999926,11.59125397300015],[-15.129383917999887,11.583644924000112],[-15.143950975999898,11.583807684000163],[-15.139312303999901,11.578436591000113],[-15.137033657999922,11.574652411000088],[-15.133290167999888,11.572088934000178],[-15.124623175999888,11.570217190000122],[-15.128895636999886,11.55442942900008],[-15.123280402999908,11.545477606000134],[-15.114735480999883,11.546332098000136],[-15.105091925999913,11.572902736000103],[-15.093332485999921,11.574042059000135],[-15.081532355999853,11.571682033000087],[-15.076283331999889,11.573553778000147],[-15.044504360999921,11.575425523000105],[-15.035267706999946,11.576971747000144],[-15.023752407999922,11.582668361000131],[-15.01577714799987,11.589178778000132],[-15.010609503999888,11.598334052000112],[-15.007313605999855,11.611761786000102],[-15.01984615799992,11.607733466000125],[-15.028879360999952,11.602850653000159],[-15.039173956999946,11.599066473000136],[-15.072499152999853,11.59552643400015],[-15.07994544199991,11.597967841000097],[-15.08307857999989,11.608343817000089],[-15.08104407499988,11.612860419000143],[-15.075917120999861,11.61615631700009],[-15.069162563999923,11.618109442000131],[-15.062001105999881,11.618597723000121],[-15.065907355999883,11.627630927000125],[-15.066151495999918,11.633002020000092],[-15.062001105999881,11.645900783000101],[-15.073353644999939,11.648504950000103],[-15.082386847999942,11.643255927000112],[-15.08820553299992,11.632513739000103],[-15.089914516999926,11.618597723000121],[-15.103627081999946,11.633978583000072],[-15.112294074999852,11.638657945000176],[-15.124623175999888,11.63849518400012],[-15.124623175999888,11.645900783000101],[-15.117502407999922,11.649807033000101],[-15.102894660999906,11.666408596000153],[-15.102894660999906,11.673244533000073],[-15.11034094999988,11.686835028000132],[-15.117176886999912,11.686835028000132],[-15.130848761999857,11.652736721000124],[-15.14281165299988,11.649888414000173],[-15.157866990999906,11.658351955000114],[-15.171864386999857,11.65957265800013],[-15.161447719999956,11.674872137000094],[-15.147287563999924,11.681626695000132],[-15.135161912999932,11.689520575000103],[-15.130848761999857,11.707953192000131],[-15.13927161399991,11.699286200000143],[-15.148671027999908,11.694525458000143],[-15.157826300999915,11.694769598000093],[-15.165638800999886,11.701117255000128],[-15.171864386999857,11.701117255000128],[-15.172759568999934,11.690822658000101],[-15.175770636999857,11.684475002000083],[-15.181996222999913,11.68109772300015],[-15.192290818999934,11.680080471000096],[-15.18932044199991,11.665472723000077],[-15.1966853509999,11.661525783000087],[-15.20689856699994,11.666815497000158],[-15.212757941999882,11.680080471000096],[-15.228016730999855,11.658596096000151],[-15.236317511999857,11.66429271000014],[-15.23135331899988,11.681301174000112],[-15.206613735999923,11.693670966000141],[-15.215443488999881,11.700018622000172],[-15.219105597999913,11.708156643000095],[-15.218088344999954,11.717515367000132],[-15.212757941999882,11.72785065300013],[-15.206613735999923,11.72785065300013],[-15.202259894999912,11.72508372600008],[-15.198394334999902,11.723863023000149],[-15.186146613999938,11.721625067000074],[-15.19054114499994,11.735419012000179],[-15.199452277999882,11.744533596000082],[-15.219593878999914,11.755113023000119],[-15.226470506999902,11.755113023000119],[-15.229237433999884,11.738836981000091],[-15.23607337099989,11.725816148000192],[-15.241444464999859,11.712103583000086],[-15.24010169199997,11.693670966000141],[-15.25047766799986,11.689520575000103],[-15.259348110999895,11.676825262000136],[-15.268055792999888,11.673244533000073],[-15.274159308999884,11.676581122000101],[-15.271473761999912,11.685858466000155],[-15.261219855999881,11.701117255000128],[-15.272938605999855,11.706203518000137],[-15.275013800999886,11.718491929000109],[-15.268055792999888,11.748358466000099],[-15.277821417999915,11.742580471000124],[-15.284087693999878,11.734116929000095],[-15.287505662999905,11.723456122000144],[-15.288563605999853,11.711086330000114],[-15.292591925999915,11.710272528000104],[-15.31346594999988,11.710598049000124],[-15.322621222999969,11.707953192000131],[-15.308990037999905,11.701117255000128],[-15.308990037999905,11.693670966000141],[-15.297515428999873,11.685777085000081],[-15.285959438999953,11.678778387000179],[-15.281117316999882,11.669826565000065],[-15.285023566999882,11.656439520000063],[-15.293934699999907,11.65314362200013],[-15.303374803999928,11.657294012000165],[-15.308990037999905,11.666408596000153],[-15.313791469999899,11.65851471600017],[-15.317616339999917,11.650132554000123],[-15.320546027999853,11.64142487200013],[-15.322621222999969,11.63226959800015],[-15.330230272999898,11.670884507000125],[-15.336415167999888,11.684393622000101],[-15.341379360999921,11.682806708000072],[-15.34996497299994,11.680080471000096],[-15.343129035999908,11.666408596000153],[-15.356760219999956,11.666408596000153],[-15.352853969999954,11.64008209800015],[-15.348052537999877,11.62881094000015],[-15.336293097999913,11.618597723000121],[-15.343129035999908,11.604925848000093],[-15.358143683999854,11.615464585000138],[-15.371571417999943,11.629706122000144],[-15.391590949999907,11.65957265800013],[-15.394683397999898,11.641913153000118],[-15.387684699999907,11.625311591000155],[-15.377552863999936,11.608791408000087],[-15.371083136999857,11.59125397300015],[-15.375803188999953,11.59341054900014],[-15.391590949999907,11.598089911000073],[-15.396066860999952,11.584621486000088],[-15.40453040299991,11.584458726000122],[-15.411610480999883,11.594631252000156],[-15.412017381999874,11.611761786000102],[-15.418853318999906,11.611761786000102],[-15.423085089999915,11.602606512000122],[-15.425892706999944,11.592433986000074],[-15.427072719999899,11.581488348000107],[-15.426340298999945,11.570217190000122],[-15.435170050999915,11.574530341000111],[-15.438710089999885,11.576971747000144],[-15.438710089999885,11.55711497600005],[-15.449126756999902,11.563788153000104],[-15.453033006999874,11.572699286000145],[-15.455799933999856,11.583319403000175],[-15.463246222999912,11.594671942000145],[-15.468861456999917,11.605780341000084],[-15.464588995999916,11.61359284100017],[-15.453033006999874,11.621730861000103],[-15.448109503999914,11.6368675800001],[-15.437855597999883,11.65232982000012],[-15.428456183999883,11.67047760600012],[-15.426340298999945,11.693670966000141],[-15.45885169199994,11.662990627000141],[-15.476144985999921,11.654364325000143],[-15.49396725199992,11.666408596000153],[-15.489165818999906,11.675034898000149],[-15.48932857999989,11.696112372000172],[-15.487782355999853,11.707953192000131],[-15.500884568999908,11.7085635440001],[-15.508941209999932,11.704535223000136],[-15.514800584999902,11.698675848000091],[-15.521311001999893,11.693670966000141],[-15.521555141999926,11.690415757000096],[-15.529164191999882,11.681586005000142],[-15.538075324999909,11.676214911000088],[-15.542347785999908,11.683417059000119],[-15.545806443999908,11.700140692000147],[-15.551258917999858,11.7163760440001],[-15.55138098899991,11.733140367000116],[-15.532866990999906,11.76032135600012],[-15.52476966099988,11.782456773000192],[-15.517893032999979,11.79266998900013],[-15.480336066999882,11.830267645000134],[-15.469309048999918,11.837713934000107],[-15.463124152999852,11.839992580000086],[-15.460438605999883,11.843451239000089],[-15.459828253999916,11.854722398000163],[-15.457386847999887,11.864650783000087],[-15.451527472999942,11.873358466000155],[-15.438710089999885,11.88544342700007],[-15.432484503999945,11.88544342700007],[-15.429758266999954,11.878973700000158],[-15.42666581899988,11.876166083000115],[-15.423085089999915,11.874416408000116],[-15.418853318999906,11.871242580000143],[-15.415028449999879,11.88051992400011],[-15.41006425699993,11.884182033000158],[-15.404204881999872,11.883246161000073],[-15.397816535999878,11.88544342700007],[-15.374745245999888,11.884751695000118],[-15.334624803999901,11.873928127000125],[-15.312733527999853,11.871242580000143],[-15.189198370999861,11.871242580000143],[-15.183990037999932,11.874660549000154],[-15.167225714999914,11.889553127000113],[-15.161854620999861,11.892971096000124],[-15.135609503999943,11.899155992000187],[-15.119007941999882,11.913478908000087],[-15.105824347999942,11.929266669000128],[-15.089914516999926,11.940130927000112],[-15.066965298999916,11.940130927000112],[-15.062855597999885,11.924994208000115],[-15.069691535999908,11.90468984600011],[-15.079701300999888,11.889227606000174],[-15.087147589999859,11.870347398000149],[-15.086415167999917,11.845404364000132],[-15.079701300999888,11.820868231000105],[-15.069447394999939,11.803615627000099],[-15.050119594999927,11.794989325000103],[-15.024769660999908,11.79083893400015],[-15.002552863999938,11.783514716000155],[-14.993031378999943,11.765692450000172],[-14.982411261999884,11.754136460000055],[-14.959136522999897,11.748928127000154],[-14.935902472999944,11.752997137000122],[-14.925404425999885,11.769435940000108],[-14.951405402999882,11.76064687700014],[-14.969471808999884,11.776434637000179],[-14.983265753999888,11.798976955000086],[-14.996815558999854,11.810370184000135],[-15.026356574999935,11.813910223000121],[-15.035267706999946,11.816595770000104],[-15.046701626999921,11.823472398000192],[-15.05247962099989,11.830511786000088],[-15.057362433999856,11.838324286000073],[-15.065744594999899,11.847886460000069],[-15.070220506999874,11.860744533000087],[-15.061187303999871,11.872748114000103],[-15.04857337099989,11.884344794000114],[-15.042103644999884,11.896063544000114],[-15.023752407999922,11.944891669000114],[-15.023060675999886,11.95107656500008],[-15.018666144999912,11.953762111000145],[-15.003895636999912,11.954413153000102],[-14.993763800999885,11.957220770000148],[-14.99400794199991,11.963690497000158],[-15.000152147999897,11.97060781500015],[-15.007313605999855,11.974839585000083],[-15.00723222599987,11.978338934000163],[-15.017567511999857,11.981512762000136],[-15.028920050999943,11.98216380400008],[-15.038685675999885,11.97797272300015],[-15.046620245999947,11.976467190000108],[-15.068755662999903,11.985337632000139],[-15.079701300999888,11.98794179900014],[-15.093861456999916,11.983710028000118],[-15.124745245999861,11.965399481000162],[-15.140777147999955,11.96116771000014],[-15.149403449999852,11.954535223000079],[-15.177845831999973,11.923407294000171],[-15.192290818999934,11.913397528000104],[-15.215077277999852,11.909613348000079],[-15.233998175999886,11.913234768000136],[-15.274240688999951,11.926459052000084],[-15.31305904899989,11.9328067080001],[-15.325428839999914,11.938625393000152],[-15.339751756999902,11.950995184000092],[-15.35850989499994,11.96320221600017],[-15.380970831999944,11.968207098000105],[-15.404408331999944,11.96723053600013],[-15.426340298999945,11.96116771000014],[-15.433705206999946,11.95648834800012],[-15.450062628999886,11.942938544000157],[-15.456450975999898,11.940130927000112],[-15.478016730999911,11.941229559000147],[-15.489125128999918,11.940578518000109],[-15.497385219999927,11.93699778900013],[-15.52871660099987,11.905951239000116],[-15.534738735999978,11.902411200000131],[-15.54918372299994,11.896633205000086],[-15.555409308999884,11.892971096000124],[-15.584950324999852,11.851263739000075],[-15.593251105999855,11.84454987200013],[-15.613270636999912,11.839016018000109],[-15.657704230999911,11.812689520000106],[-15.676787889999899,11.804754950000131],[-15.679554816999968,11.803615627000099],[-15.744252081999887,11.791937567000105],[-15.754017706999917,11.786200262000136],[-15.7635798819999,11.777655341000111],[-15.811268683999883,11.753159898000177],[-15.830393032999948,11.748358466000099],[-15.80992591099988,11.829535223000107],[-15.79149329299986,11.863226630000113],[-15.767201300999886,11.864691473000079],[-15.761586066999882,11.861029364000116],[-15.753977016999924,11.858587958000086],[-15.744781053999873,11.857611395000106],[-15.73420162699992,11.858140367000175],[-15.73420162699992,11.864976304000109],[-15.75304114499994,11.866115627000141],[-15.77635657499985,11.885687567000105],[-15.795562303999903,11.88544342700007],[-15.811594204999892,11.873683986000088],[-15.815825975999926,11.85651276200015],[-15.81777910099987,11.83759186400013],[-15.85016842399989,11.775336005000142],[-15.860463019999882,11.769435940000108],[-15.880034959999874,11.774359442000076],[-15.884103969999927,11.78709544500012],[-15.877552863999938,11.824042059000163],[-15.89427649599986,11.816229559000178],[-15.898264126999948,11.79995351800015],[-15.89875240799992,11.780178127000127],[-15.905506964999885,11.761948960000138],[-15.911610480999855,11.75873444200009],[-15.933745897999927,11.750881252000111],[-15.943023240999878,11.744859117000189],[-15.953114386999856,11.736273505000083],[-15.958973761999886,11.73480866100013],[-15.962961391999954,11.739325262000179],[-15.966949022999872,11.748358466000099],[-15.969553188999951,11.768255927000084],[-15.963775193999878,11.788275458000143],[-15.946400519999914,11.824042059000163],[-15.93199622299994,11.879584052000126],[-15.925933397999925,11.892971096000124],[-15.921864386999887,11.896918036000116],[-15.915598110999923,11.901190497000115],[-15.90843665299988,11.90452708500014],[-15.901722785999937,11.905951239000116],[-15.897816535999937,11.909572658000087],[-15.891224738999881,11.93390534100014],[-15.865345831999946,11.972235419000171],[-15.857085740999878,11.981105861000131],[-15.84292558499996,11.9894473330001],[-15.821766730999855,11.99787018400015],[-15.7994685539999,12.003363348000077],[-15.781971808999856,12.002834377000099],[-15.776600714999914,11.996975002000156],[-15.77281653599988,11.987534898000135],[-15.767567511999884,11.978745835000081],[-15.757801886999857,11.974839585000083],[-15.737945115999935,11.973700262000136],[-15.729237433999856,11.97142161700016],[-15.72052975199989,11.967433986000088],[-15.717355923999918,11.981594143000109],[-15.710072394999912,11.996039130000069],[-15.706288214999885,12.008286851000136],[-15.713693813999953,12.015814520000092],[-15.719471808999911,12.01203034100017],[-15.728911912999934,12.002834377000099],[-15.742787238999938,11.99494049700013],[-15.761463995999916,11.995306708000143],[-15.76740475199992,11.999335028000102],[-15.774240688999953,12.010931708000129],[-15.781971808999856,12.015814520000092],[-15.790760870999918,12.018377997000101],[-15.794911261999856,12.01805247600008],[-15.799224412999877,12.016669012000092],[-15.837066209999904,12.013861395000148],[-15.849964972999913,12.017482815000108],[-15.857085740999878,12.029486395000133],[-15.86388098899991,12.029486395000133],[-15.871001756999872,12.013006903000147],[-15.889556443999881,12.002590236000145],[-15.912505662999934,11.997056382000139],[-15.932769334999875,11.995306708000143],[-15.930287238999938,11.988185940000093],[-15.928781704999892,11.985174872000172],[-15.925933397999925,11.981105861000131],[-15.929351365999933,11.980169989000146],[-15.931711391999896,11.98029205900012],[-15.932972785999906,11.979234117000159],[-15.932769334999875,11.974839585000083],[-15.940785285999906,11.979152736000088],[-15.946400519999914,11.983628648000135],[-15.946156378999943,11.978989976000122],[-15.942860480999911,11.965480861000144],[-15.9447322259999,11.953070380000113],[-15.953277147999927,11.940130927000112],[-15.967884894999942,11.926988023000149],[-15.981597459999875,11.921291408000158],[-16.05565344999991,11.920233466000113],[-16.06533769399988,11.916978257000068],[-16.085275844999956,11.907904364000075],[-16.093251105999908,11.905951239000116],[-16.098540818999908,11.90265534100017],[-16.10488847599993,11.895331122000172],[-16.113270636999886,11.888251044000114],[-16.12458248599995,11.88544342700007],[-16.13426673099994,11.888861395000077],[-16.14305579299989,11.896144924000097],[-16.158762173999946,11.913397528000104],[-16.183176235999923,11.907904364000075],[-16.215199347999913,11.913804429000109],[-16.243031378999945,11.92544179900011],[-16.25487219999991,11.93699778900013],[-16.275380011999886,11.981105861000131],[-16.284982876999948,11.986558335000069],[-16.31175696499986,11.990627346000124],[-16.32323157499991,11.995306708000143],[-16.331776495999918,12.004624742000175],[-16.33800208199989,12.016994533000116],[-16.341786261999914,12.031236070000118],[-16.345285610999895,12.061835028000147],[-16.355132615999906,12.087347723000136],[-16.35728919199991,12.101141669000143],[-16.330067511999914,12.159165757000125],[-16.31956946499986,12.17169830900012],[-16.308013475999925,12.181219794000114],[-16.295725063999953,12.188421942000147],[-16.282826300999943,12.19399648600016],[-16.282297329999977,12.182114976000108],[-16.27745520699989,12.17328522300015],[-16.269886847999942,12.171332098000105],[-16.26113847599987,12.180324611000117],[-16.260161912999905,12.188625393000109],[-16.269032355999855,12.20343659100017],[-16.26862545499992,12.214422919000128],[-16.25739498599992,12.230169989000089],[-16.240345831999885,12.240464585000112],[-16.22179114499988,12.248195705000114],[-16.148426886999857,12.290676174000083],[-16.131988084999875,12.303859768000137],[-16.12425696499986,12.31321849200016],[-16.11302649599986,12.330226955000128],[-16.10411536399991,12.337958075000145],[-16.095082160999908,12.341945705000112],[-16.073109503999888,12.3472354190001],[-16.0631404289999,12.351019598000121],[-16.08975175699993,12.351996161000102],[-16.107533331999917,12.34467194200009],[-16.121245897999927,12.331203518000109],[-16.135121222999942,12.31378815300013],[-16.15538489499994,12.30003489800012],[-16.20677649599986,12.28949616100006],[-16.22760982999992,12.28270091400013],[-16.262074347999942,12.260931708000072],[-16.27196204299986,12.252346096000153],[-16.305816209999932,12.214422919000128],[-16.324574347999885,12.222154039000143],[-16.323109503999916,12.24070872600005],[-16.31566321499986,12.263169664000145],[-16.316395636999886,12.28270091400013],[-16.321522589999887,12.267889716000155],[-16.334339972999913,12.248114325000131],[-16.340402798999918,12.21165599200016],[-16.350209113999938,12.197211005000112],[-16.365345831999946,12.192328192000145],[-16.384632941999882,12.200832424000083],[-16.391468878999913,12.19399648600016],[-16.394357876999948,12.19830963700015],[-16.40575110599991,12.207668361000103],[-16.407785610999923,12.194403387000165],[-16.415679490999906,12.188462632000139],[-16.428089972999942,12.186997789000172],[-16.44326738199993,12.18716054900014],[-16.445668097999967,12.183417059000107],[-16.451568162999905,12.176255601000065],[-16.457630988999906,12.171942450000158],[-16.46035722599987,12.176581122000087],[-16.462066209999872,12.180568752000156],[-16.466297980999883,12.183905341000097],[-16.471913214999887,12.186265367000146],[-16.491200324999937,12.189764716000141],[-16.50064042899993,12.196600653000147],[-16.506337042999917,12.206488348000077],[-16.508168097999913,12.217840887000136],[-16.514393683999856,12.223049221000137],[-16.538319464999915,12.249823309000135],[-16.538929816999882,12.256048895000104],[-16.54588782499988,12.259751695000134],[-16.56700598899988,12.27732982000016],[-16.57640540299991,12.28270091400013],[-16.58112545499992,12.281683661000073],[-16.596180792999917,12.27606842700007],[-16.60374915299988,12.276516018000152],[-16.60960852799991,12.281317450000145],[-16.61888587099989,12.296942450000131],[-16.62425696499994,12.303859768000137],[-16.661488410999908,12.332342841000141],[-16.672678188999924,12.337958075000145],[-16.687570766999897,12.337958075000145],[-16.698882615999878,12.333238023000135],[-16.70921790299988,12.327378648000177],[-16.721058722999942,12.32367584800015],[-16.72842363199993,12.332505601000108],[-16.728436777140104,12.332530836973064],[-16.705616413999877,12.348032939000177],[-16.668874470999896,12.35671457900014],[-16.533327188999863,12.347826233000134],[-16.51487870299985,12.348549704000135],[-16.462685505999957,12.361313782000195],[-16.412300984999973,12.361727193000206],[-16.382018595999853,12.373819478000186],[-16.301920124999896,12.416194153000106],[-16.23288041199993,12.452884420000174],[-16.222390095999884,12.455054830000165],[-16.211693074999857,12.453142802000144],[-16.1900923259999,12.444771220000163],[-16.181875772999945,12.4433759570001],[-16.177173217999893,12.445236308000105],[-16.172832396999894,12.448543600000107],[-16.16606278499995,12.451437479000091],[-16.090511840999852,12.464304912000088],[-16.055010131999893,12.461204326000143],[-15.9924816489999,12.440688782000166],[-15.973258015999875,12.437226461000122],[-15.893883015999906,12.442755839000128],[-15.883964190999905,12.44218246400011],[-15.711516885999856,12.432213847000156],[-15.677048705999908,12.439293518000085],[-15.42460933399991,12.555048727000141],[-15.421730781999939,12.557121923000167],[-15.368643757999903,12.595356344000095],[-15.307820597999893,12.622693176000112],[-15.249736286999903,12.663620910000134],[-15.223794718999953,12.675196432000176],[-15.195114298999952,12.679433900000134],[-15.146228393999875,12.679227193000171],[-14.872159687999952,12.678108545000155],[-14.79172806799994,12.677780253000092],[-14.437305256999934,12.67628163600017],[-14.343107647999942,12.675897212000166],[-14.082753255999904,12.674834696000174],[-13.72827876799991,12.6733877570001],[-13.736314453999881,12.607603658000114],[-13.734634968999927,12.585331116000162],[-13.725074828999935,12.558149312000168],[-13.674690307999953,12.496085917000116],[-13.663399007999885,12.475777079000096],[-13.660711832999937,12.45867218000015],[-13.664432535999964,12.441515605000175]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Kenya","sov_a3":"KEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kenya","adm0_a3":"KEN","geou_dif":0,"geounit":"Kenya","gu_a3":"KEN","su_dif":0,"subunit":"Kenya","su_a3":"KEN","brk_diff":0,"name":"Kenya","name_long":"Kenya","brk_a3":"KEN","brk_name":"Kenya","brk_group":null,"abbrev":"Ken.","postal":"KE","formal_en":"Republic of Kenya","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kenya","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":7,"mapcolor13":3,"pop_est":39002772,"gdp_md_est":61510,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"KE","iso_a2":"KE","iso_a3":"KEN","iso_n3":"404","un_a3":"404","wb_a2":"KE","wb_a3":"KEN","woe_id":23424863,"woe_id_eh":23424863,"woe_note":"Exact WOE match as country","adm0_a3_is":"KEN","adm0_a3_us":"KEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"KEN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[41.162771030000066,-2.090915622999958],[41.15528405000012,-2.112074476999879],[41.13689212300008,-2.115492445999891],[41.123383009000094,-2.093682549999841],[41.12427819100017,-2.104668877999885],[41.122813347,-2.115899346999896],[41.118907097,-2.124281507999939],[41.11255944100017,-2.127699476999865],[41.10962975400017,-2.129001559999864],[41.107758009000094,-2.131524346999882],[41.1048283210001,-2.134047132999896],[41.09888756600017,-2.135349216999884],[41.09197024800008,-2.132989190999837],[41.08643639400022,-2.128350518999909],[41.08285566500015,-2.123711846999967],[41.081797722,-2.121514580999886],[41.06861412900016,-2.123467705999929],[41.05079186300006,-2.129489841999856],[41.0135197270001,-2.148858330999872],[41.00440514400011,-2.142185153999989],[40.995616082000225,-2.143812757999839],[40.98894290500019,-2.152276299999869],[40.98617597700016,-2.165948174999912],[40.9915470710001,-2.173760674999983],[41.002289259000094,-2.180108330999843],[41.009938998000024,-2.187188408999887],[41.00611412900011,-2.197360934999935],[40.99366295700011,-2.197198174999883],[40.98585045700011,-2.191338799999841],[40.98145592500012,-2.181573174999897],[40.97950280000006,-2.169366143999909],[40.9572860040001,-2.174004815999851],[40.957367384000094,-2.151299737999892],[40.96924889400023,-2.119805596999882],[40.98292076900011,-2.097344658999887],[41.001149936000076,-2.087172132999839],[41.024668816000116,-2.080173434999864],[41.04517662900017,-2.069756768999866],[41.053965691000116,-2.049574476999851],[41.065684441000116,-2.036309502999913],[41.09278405000006,-2.038018487999906],[41.12273196700002,-2.047784112999864],[41.14332116000016,-2.05950286299985],[41.162771030000066,-2.090915622999958]]],[[[35.4337146859954,5.003836203996187],[35.39611689296228,4.926428983045696],[35.495640462755794,4.926428983045696],[35.57083604882192,4.904312634202725],[35.52218008136728,4.780461080682002],[35.56260657344873,4.707137060193701],[35.6106412682092,4.620013573553962],[35.612139971790356,4.619497383034471],[35.70036487866085,4.589110530793363],[35.70584560485437,4.619447080679663],[35.70593871350573,4.619962448315063],[35.71151833893899,4.661608022601584],[35.73940198963456,4.681126578088396],[35.7784391006081,4.678338213018804],[35.78122154735806,4.61992201408151],[35.85653615027101,4.619603495646416],[35.920835409000205,4.619331563000145],[35.92279911300013,4.602071635000158],[35.936028279000226,4.578533020000165],[35.93706180800021,4.559257711000129],[35.93406457600011,4.539207255000179],[35.93375451600011,4.522179871000148],[35.94047245300012,4.508046367000119],[35.9583524990002,4.496858419000162],[35.997109823000216,4.462958680000156],[36.01840051200011,4.44913523400011],[36.041344848000136,4.443683370000129],[36.045324767000096,4.443716285000093],[36.19130985500007,4.444923604000152],[36.22572635900021,4.449600322000137],[36.23626835100012,4.449651998000149],[36.24608687300005,4.446990662000118],[36.264276977000094,4.438205669000141],[36.277196086000146,4.436448669000157],[36.463024536,4.44016937200017],[36.61950077300011,4.443373312000134],[36.628182414000065,4.441461284000127],[36.64296187300013,4.432598775000201],[36.64885675900004,4.431179636000195],[36.65133345500007,4.430583394000166],[36.844086548000035,4.432237041000121],[36.90372115100015,4.415778097000143],[36.97482792200017,4.379940491000113],[37.015652304000156,4.370587057000165],[37.025367473000216,4.363274842000166],[37.04107710800005,4.336816508000183],[37.04841516100018,4.331958924000162],[37.0684656170001,4.333457540000083],[37.075907023000156,4.331080424000135],[37.08252160600014,4.322166239000111],[37.08644901500011,4.312476909000168],[37.091616659000096,4.290256043000142],[37.09482059700011,4.284881694000177],[37.099988240000094,4.283693136000153],[37.10598270600022,4.283848165000094],[37.11187382000011,4.282297872000171],[37.166030721000226,4.247545471000137],[37.26349247200019,4.184887798000204],[37.360954224000096,4.122204285000166],[37.47505578600007,4.048978780000169],[37.55608443200012,3.996888937000122],[37.64775842300011,3.937874451000184],[37.75100793400006,3.871521912000162],[37.846195923000124,3.810337016000133],[37.945931437000155,3.746232402000118],[37.97673059100012,3.726440328000137],[37.99533410600023,3.707914327000196],[38.02075891100017,3.667167461000133],[38.036158488000154,3.64892568000009],[38.04897424300023,3.641846009000147],[38.07884322100003,3.632673442000154],[38.10189091000021,3.612648824000118],[38.1140865470002,3.610607605000069],[38.14560917200017,3.618436585000097],[38.17692509000019,3.620917054000159],[38.28306848200023,3.608902283000106],[38.389935343000076,3.596887512000137],[38.44595259600007,3.601667582000132],[38.49690555800012,3.62394012500009],[38.49814579300008,3.629676208000063],[38.49731896900008,3.638590393000171],[38.49938602700021,3.646910299000126],[38.50899784300012,3.650811869000094],[38.51426883900015,3.648512269000079],[38.53318241400009,3.632828471000025],[38.54124393700019,3.623294170000122],[38.54320764100012,3.615387676000168],[38.54713505100008,3.609522400000173],[38.56108768700008,3.606008403000117],[38.57411014800013,3.60456146200012],[38.579587849000205,3.605310771000134],[38.593747192000166,3.610840149000126],[38.59560754400016,3.607507019000124],[38.59664107300014,3.602132670000159],[38.60191206900018,3.59867034900013],[38.660306437000116,3.594458720000091],[38.66009973100009,3.601305847000134],[38.66144331800015,3.615335999000066],[38.66102990700014,3.621950582000153],[38.688108357000175,3.586293844000152],[38.703714640000015,3.570429179000143],[38.722008098000195,3.560403951000126],[38.82071008300014,3.533738912],[38.89522749800008,3.513585103000195],[38.92127242000006,3.513998515000125],[38.96323368400013,3.522085877000123],[38.979976848000064,3.519812114000018],[38.994963013000046,3.51425689700001],[39.01046594300007,3.514463603000138],[39.06793013500007,3.526581726000131],[39.0775419510002,3.524256287000114],[39.090441445000096,3.518334305000124],[39.180481405000165,3.47699819000016],[39.219445434000164,3.468704122000119],[39.25758264200013,3.46968597500009],[39.29633755400013,3.491990003000154],[39.302747843000105,3.495679220000056],[39.31587365700014,3.494904073000129],[39.320524536000136,3.484542948000112],[39.31132613100013,3.4660944620001],[39.436176392000135,3.462373759000101],[39.4669755450001,3.452012635000088],[39.47565718600018,3.440798849000046],[39.4809281820001,3.427259624000143],[39.48847294100008,3.413901266000039],[39.504389282000176,3.403333435000064],[39.53632531700006,3.405012920000104],[39.5531718340002,3.431316223000067],[39.57497928900014,3.497901306000059],[39.600817505000094,3.528907166000081],[39.666446574000105,3.588722636000128],[39.745098104000164,3.660578715000141],[39.76421838400009,3.685745138000172],[39.78075484200005,3.71657013000015],[39.80866011600003,3.790286560000098],[39.82829716000017,3.842583110000191],[39.84845096900008,3.86728444400012],[39.93413049300014,3.908703105000157],[40.02022342900014,3.950121765000119],[40.11716841700016,3.996914774000131],[40.162436971000176,4.019394023000146],[40.166984497000186,4.025259298000137],[40.166261027000104,4.031486308000126],[40.16719120300016,4.035465393000109],[40.17680301900006,4.034535218000157],[40.179800253000195,4.032829895000191],[40.182797485000116,4.032003072000165],[40.18558801200007,4.03215810200011],[40.28687382000007,4.067453104000109],[40.36573205600021,4.094867452000144],[40.371106404000074,4.099931742000123],[40.376997518000074,4.116080627000201],[40.38268192600012,4.121377462000154],[40.511873006000116,4.171064352000143],[40.61749963400021,4.211604512000164],[40.70069869000022,4.243514710000142],[40.76374393700016,4.284933370000189],[40.78575809700012,4.255839539000178],[40.84601281700011,4.214989319000097],[40.870610799000104,4.186980693000166],[40.88735396300015,4.156052348000173],[40.89768925000007,4.145923767000127],[40.91587935400017,4.136647847000105],[40.96362837800004,4.120369771000171],[40.97975142400011,4.110757955000167],[41.00589969900013,4.086676737000118],[41.0700818280001,3.996914774000131],[41.11452356000004,3.962343241000141],[41.162996053000114,3.942680359000107],[41.21529260200006,3.936608378000145],[41.31740523300019,3.942421977000123],[41.42954309100017,3.948881531000083],[41.479772583000084,3.962937520000196],[41.50623091700018,3.96438446000019],[41.586329386000074,3.984150696000157],[41.60224572700005,3.983065491000161],[41.62870406100015,3.972084249000176],[41.64296675600022,3.969448751000172],[41.657436157000085,3.972704367000147],[41.69981083200016,3.996914774000131],[41.74735315000012,3.981411845000124],[41.79138147000017,3.958157450000101],[41.83592655400017,3.949449971000135],[41.8850191650001,3.977226054000183],[41.80130334400005,3.857181702000162],[41.71738081900017,3.737163188000068],[41.63356164500007,3.617092998000047],[41.549639120000194,3.497022807000107],[41.49796268700006,3.423073832000114],[41.446182902000174,3.349047343000109],[41.394506470000145,3.275150045000117],[41.34272668500009,3.201149394000111],[41.260664510000055,3.119810690000122],[41.17839563000021,3.038420309000102],[41.09612674900009,2.957081604000109],[41.01396122200006,2.875794576000203],[40.97975142400011,2.841894836000023],[40.96538537600023,2.814144593000066],[40.96590214000017,2.760607808000117],[40.96714237500012,2.631726786000101],[40.96848596200019,2.497109680000122],[40.96848596200019,2.422954000000175],[40.96848596200019,2.316500550000143],[40.96848596200019,2.210047099000121],[40.96848596200019,2.103619487000117],[40.96848596200019,1.997166036000095],[40.96848596200019,1.87213490800012],[40.96848596200019,1.747181295000075],[40.96848596200019,1.6221501670001],[40.96848596200019,1.497144877000125],[40.96848596200019,1.372191264000165],[40.96848596200019,1.247211812000117],[40.96848596200019,1.230295056000017],[40.96848596200019,1.122206523000145],[40.96848596200019,0.997201233000098],[40.96848596200019,0.872247620000053],[40.96848596200019,0.747242330000162],[40.96848596200019,0.62234039300013],[40.96848596200019,0.49728342700007],[40.96848596200019,0.372329814000025],[40.96848596200019,0.247272848000122],[40.96848596200019,0.122319234000088],[40.96848596200019,-0.002737730999812],[40.9696228440001,-0.084696552999873],[40.970449666,-0.152185973999821],[40.97117313700019,-0.21967539399985],[40.972620076000084,-0.328299254999862],[40.97406701600019,-0.436716409999818],[40.97551395600007,-0.545236917999901],[40.97696089700016,-0.653860777999824],[40.97789107200006,-0.724347431999874],[40.978821248000166,-0.794834085999909],[40.97975142400011,-0.870798440999863],[41.0052795820001,-0.903768004999918],[41.03060103300007,-0.936737568999959],[41.05612919100011,-0.969603779999986],[41.08155399500012,-1.00257334399987],[41.13106001800022,-1.06644541399983],[41.18221968600008,-1.132694600999827],[41.237306763000134,-1.203904723999869],[41.28298872800022,-1.262815855999875],[41.3321846920002,-1.326377867999852],[41.38375777200011,-1.39304046599986],[41.43419397000011,-1.458049417999831],[41.484526815000066,-1.523161721999912],[41.522870727000196,-1.57277109799989],[41.53496301200019,-1.594785257999874],[41.53858036300008,-1.613698831999912],[41.535943705000165,-1.676312018999795],[41.53510332100009,-1.696268761999818],[41.53510482597747,-1.696283164977643],[41.53508548300013,-1.69630299299989],[41.534515821000156,-1.696872653999861],[41.45834394600015,-1.774834893999824],[41.42237389400012,-1.829766533999901],[41.41765384200019,-1.847263278999947],[41.39600670700011,-1.860609632999868],[41.33912194100017,-1.912367445999976],[41.30347741000011,-1.956149997999859],[41.28272545700011,-1.968519789999902],[41.267344597000175,-1.949639580999872],[41.24870853000018,-1.957289320999891],[41.23145592500006,-1.955498955999914],[41.219981316000116,-1.944024346999953],[41.21900475400017,-1.922458591999856],[41.198985222000175,-1.943129164999959],[41.195078972000175,-1.967054945999934],[41.18580162900011,-1.990166924999883],[41.156911655000016,-1.987481377999913],[41.11784915500007,-1.978285415000016],[41.109141472000175,-1.977634372999972],[41.09685306100002,-1.985284112999821],[41.076996290000096,-2.007094007999868],[41.049978061000076,-2.018487237999835],[41.03956139400006,-2.031996351999823],[41.0286564460001,-2.04322682099999],[41.012950066000116,-2.04241301899998],[40.999766472000175,-2.035577080999886],[40.99024498800011,-2.028903904],[40.983653191000116,-2.019301039999945],[40.97950280000006,-2.004978122999859],[40.980235222,-1.990166924999883],[40.9900822270001,-1.962497653999975],[40.98943118600019,-1.950290622999915],[40.98698978000007,-1.936455987999821],[40.991058790000096,-1.924086195999877],[41.00611412900011,-1.901788018999852],[40.970713738000114,-1.928969007999939],[40.96664472700016,-2.046563408999845],[40.945323113000114,-2.073174737999963],[40.92676842500006,-2.059258721999981],[40.90821373800005,-1.997735283999844],[40.8899845710001,-1.983819268999866],[40.87956790500019,-1.977797132999939],[40.870371941000116,-1.9672177059999],[40.86101321700019,-1.96347421699987],[40.849131707000225,-1.977634372999972],[40.85564212300002,-1.992608330999914],[40.858571811000076,-2.005791924999869],[40.85596764400006,-2.018487237999835],[40.87224368600019,-2.011407158999958],[40.88510175900015,-2.014825127999885],[40.893809441000116,-2.026055596999967],[40.896820509000094,-2.04241301899998],[40.89470462300019,-2.049086195999948],[40.88542728000007,-2.054457289999903],[40.883148634000094,-2.060153903999975],[40.886485222,-2.069756768999866],[40.893809441000116,-2.072035414999931],[40.90113366000011,-2.073663018999952],[40.90430748800005,-2.080336195999919],[40.906016472000175,-2.153252862999935],[40.9119572270001,-2.191989841999884],[40.924815300000056,-2.217217705999843],[40.93376712300008,-2.219659112999963],[40.944672071000156,-2.218357028999876],[40.9568791020001,-2.218926690999936],[40.96949303500011,-2.227715752999913],[40.97925866000011,-2.242120049999883],[40.98072350400011,-2.253024997999944],[40.96949303500011,-2.278985283999859],[40.94483483200011,-2.309340101999837],[40.92261803500011,-2.313734632999811],[40.91944420700005,-2.302422783999916],[40.95215905000012,-2.286065362999821],[40.9349064460001,-2.279880466999842],[40.92107181100018,-2.270603122999972],[40.896820509000094,-2.245049737999906],[40.89307701900005,-2.237074476999936],[40.8943791020001,-2.232028903999918],[40.89372806100002,-2.228204033999901],[40.883148634000094,-2.224053643999866],[40.88445071700008,-2.226332289999931],[40.877696160000106,-2.228692315999893],[40.86304772200006,-2.231377862999863],[40.838063998000194,-2.245049737999906],[40.815684441000165,-2.271905205999971],[40.79468834700006,-2.290459893999894],[40.77393639400022,-2.279229424999897],[40.77458743600019,-2.287774346999825],[40.7771916020001,-2.296807549999826],[40.782562696000156,-2.304294528999975],[40.79078209700006,-2.307224216999913],[40.79558353000007,-2.309991143999881],[40.79371178500017,-2.316501559999864],[40.78695722700016,-2.32732512799987],[40.79346764400023,-2.341973565999879],[40.821787957000055,-2.360772393999824],[40.82862389400012,-2.374769789999888],[40.81690514400012,-2.397881768999923],[40.78931725400011,-2.42498137799987],[40.758148634000094,-2.44744231599995],[40.71176191500015,-2.466566665000016],[40.650563998000194,-2.539320570999905],[40.615896030000016,-2.552504164999945],[40.585215691000116,-2.545830987999977],[40.55543053500011,-2.532403252999984],[40.523610873000194,-2.525079033999901],[40.49089603000007,-2.528497002999899],[40.389821811000076,-2.560316664999931],[40.34831790500007,-2.590101820999948],[40.32309004000009,-2.598077080999985],[40.29371178500017,-2.61638762799987],[40.243907097,-2.656670830999843],[40.23210696700008,-2.669040622999887],[40.22331790500019,-2.683038018999852],[40.20484459700006,-2.724867445999947],[40.174978061000076,-2.762627862999835],[40.17066491000017,-2.779473565999837],[40.17261803500011,-2.787204684999935],[40.18751061300006,-2.807061455999929],[40.18864993600019,-2.813571872999929],[40.18482506600017,-2.828871351999894],[40.183767123000024,-2.837579033999873],[40.16488691500009,-2.901462497999887],[40.16260826900022,-2.934258721999896],[40.183767123000024,-2.950290622999887],[40.17855879000015,-2.97649504999984],[40.190684441000116,-2.98805103999986],[40.21127363400015,-2.986016533999916],[40.23210696700008,-2.970635674999969],[40.23292076900023,-2.981866143999881],[40.225108269000174,-2.993747653999932],[40.19011478000007,-3.027032158999845],[40.169200066000116,-3.054945570999877],[40.16382897200006,-3.06698984199997],[40.159515821000156,-3.117771091999841],[40.153168165000096,-3.135186455999985],[40.119151238000114,-3.183526299999826],[40.118418816000165,-3.196954033999901],[40.12924238400014,-3.233330987999892],[40.12907962300019,-3.251885674999897],[40.1228947270001,-3.267347914999917],[40.11402428500017,-3.281670830999985],[40.10238691500015,-3.294203382999896],[40.08814537900017,-3.303643487999821],[40.03980553500016,-3.325616143999923],[40.026621941000116,-3.3344052059999],[40.00261478000007,-3.362481377999984],[39.989105665000096,-3.373223565999908],[39.97144616000016,-3.376071872999944],[39.97925866000017,-3.359063408999887],[39.99008222700016,-3.320896091999927],[39.991953972,-3.307061455999829],[39.9739689460001,-3.311455987999821],[39.966075066000116,-3.32122161299985],[39.96436608200011,-3.334242445999933],[39.96461022200006,-3.348321221999882],[39.96363366000017,-3.357598565999921],[39.95777428500011,-3.382256768999838],[39.95964603000019,-3.387790622999844],[39.96338951900023,-3.393243096999967],[39.965179884000094,-3.399183851999823],[39.947601759000094,-3.427992446000019],[39.92725670700011,-3.481377862999892],[39.90056399800008,-3.524183851999965],[39.89014733200011,-3.581719658999873],[39.87867272200006,-3.605075778999947],[39.86597741000017,-3.616469007999825],[39.8572697270001,-3.618259372999901],[39.83562259200019,-3.608819268999895],[39.83082116000011,-3.605889580999956],[39.817718946000156,-3.590752862999878],[39.81299889400023,-3.589776299999983],[39.786387566000116,-3.587579033999901],[39.790537957000225,-3.578871351999837],[39.79127037900017,-3.574883721999853],[39.78093509200008,-3.566582940999865],[39.77312259200008,-3.584893487999921],[39.77588951900023,-3.600192966999884],[39.78793379000015,-3.609144789999916],[39.808116082000055,-3.608819268999895],[39.79607181100007,-3.622979424999826],[39.8001408210001,-3.634698174999897],[39.81421959700006,-3.639336846999839],[39.8489689460001,-3.625176690999908],[39.860118035000106,-3.633233330999843],[39.866465691000165,-3.648532809999906],[39.868988477000094,-3.663344007999882],[39.8670353520001,-3.694919528999876],[39.786387566000116,-3.917168877999842],[39.76075280000012,-3.941827080999829],[39.73210696700008,-3.946384372999958],[39.71192467500012,-3.931329033999944],[39.71208743600019,-3.897393487999821],[39.68995201900012,-3.90960051899988],[39.68376712300002,-3.917168877999842],[39.6873478520001,-3.927178643999909],[39.69410241000017,-3.937269789999888],[39.69752037900017,-3.94670989399998],[39.701996290000096,-3.955824476999893],[39.71208743600019,-3.965020440999865],[39.73422285200016,-3.963311455999943],[39.74529056100018,-3.968682549999911],[39.74244225400017,-3.985935153999919],[39.721364780000066,-4.009209893999923],[39.71827233200016,-4.016289971999896],[39.71550540500019,-4.025160414999931],[39.708343946000156,-4.037530205999886],[39.69947350400011,-4.048435153999861],[39.6907658210001,-4.053155205999872],[39.681162957000225,-4.047946872999873],[39.67448978000019,-4.024997653999876],[39.66667728000018,-4.019707940999908],[39.65984134200019,-4.007582289999903],[39.6619572270001,-3.984633070999834],[39.66049238400015,-3.970798434999921],[39.643077019000174,-3.985528252999913],[39.617360873000194,-3.971449476999879],[39.6057235040001,-3.969659112999892],[39.594737175000056,-3.978692315999978],[39.604665561000076,-3.988213799999897],[39.616465691000116,-3.99285247199991],[39.643077019000174,-3.999200127999856],[39.635590040000096,-4.017022393999838],[39.62614993600019,-4.025485934999864],[39.594737175000056,-4.032647393999909],[39.58448326900011,-4.032891533999859],[39.57325280000011,-4.031833591999899],[39.564219597,-4.032891533999859],[39.56055748800017,-4.039808851999851],[39.56128991000017,-4.060967705999943],[39.56324303500011,-4.070896091999855],[39.56739342500006,-4.081149997999887],[39.5818791020001,-4.061618747999987],[39.61508222700016,-4.059340101999922],[39.65007571700002,-4.069594007999868],[39.66968834700012,-4.087985934999907],[39.6658634770001,-4.112074476999837],[39.61589603000007,-4.197849216999884],[39.58383222700016,-4.279392184999907],[39.55111738400015,-4.402113539999988],[39.54004967500012,-4.430433851999851],[39.53109785200016,-4.417413018999952],[39.52247155000006,-4.418145440999978],[39.51400800900015,-4.426853122999887],[39.50603274800008,-4.438083591999884],[39.50440514400023,-4.443536065999822],[39.505381707000225,-4.45598723799985],[39.50220787900017,-4.461602471999839],[39.48796634200008,-4.474541924999855],[39.48487389400006,-4.478936455999828],[39.45069420700011,-4.581963799999969],[39.44434655000006,-4.563409112999963],[39.447438998000024,-4.534274998],[39.44385826900017,-4.519952080999843],[39.431000196000156,-4.52996184699991],[39.423838738000114,-4.543877862999892],[39.4178166020001,-4.559502862999878],[39.40967858200005,-4.57447682099982],[39.40479576900011,-4.573907158999859],[39.397715691000116,-4.570082289999931],[39.39136803500011,-4.571058851999823],[39.38868248800023,-4.585137627999855],[39.39063561300006,-4.59343840899983],[39.40626061300006,-4.615166924999983],[39.396169467000185,-4.629001559999891],[39.36247806100019,-4.633965752999856],[39.324392123000194,-4.624607028999918],[39.30046634200008,-4.594984632999868],[39.29965254000015,-4.600762627999842],[39.29371178500011,-4.615492445999834],[39.26433353000012,-4.606622002999885],[39.24268639400011,-4.627373955999872],[39.22437584700006,-4.65585702899989],[39.20484459700017,-4.670098565999893],[39.200694207000225,-4.671482028999876],[39.19711347700016,-4.671807549999897],[39.19385826900012,-4.673272393999852],[39.190603061000076,-4.677504164999959],[39.10575728400008,-4.616306253999838],[39.02038781700017,-4.554914652999854],[38.93501835100008,-4.493419697999855],[38.84964888500011,-4.431924743999929],[38.76427941900019,-4.370533141999857],[38.67880660000017,-4.30903818799986],[38.59354048700018,-4.247543232999931],[38.508274373000205,-4.186151631999947],[38.422801554000074,-4.124760029999877],[38.41617485900005,-4.119980776999867],[38.33753544100014,-4.06326507599988],[38.25206262200012,-4.001873473999893],[38.16679650900002,-3.940378519999797],[38.081530395000094,-3.878986917999895],[37.99605757700007,-3.817491962999895],[37.91079146300009,-3.755997008999969],[37.82542199700018,-3.694502054999873],[37.770955038000096,-3.65543467199987],[37.75720910600015,-3.637451273999873],[37.74718387800013,-3.616987405999907],[37.729820598000195,-3.555389098999882],[37.72227583900005,-3.539989521999899],[37.70832320200006,-3.527173766999823],[37.68940962700012,-3.51807871499993],[37.66832564300009,-3.512497659999923],[37.6469316000001,-3.510637308999918],[37.59907922300007,-3.513427835999963],[37.59618534300009,-3.499681904999932],[37.60414351400007,-3.480148212999836],[37.608174276000085,-3.46361175599985],[37.60310998600019,-3.455756936999819],[37.58667688000011,-3.453689879999857],[37.57944217900015,-3.446351826999859],[37.57789188700022,-3.435809834999972],[37.58047570800014,-3.424130960999918],[37.58522994000011,-3.412968851999878],[37.59029423000018,-3.404080504999953],[37.60486698400003,-3.387957457999889],[37.62719120300013,-3.370284117999887],[37.65096236100007,-3.357571715999839],[37.66987593600001,-3.356124775999845],[37.66842899600013,-3.338244730999875],[37.6719429930001,-3.324292093999972],[37.68186486800019,-3.315713805999863],[37.70005497200023,-3.314370218999897],[37.67999554300016,-3.192147645999867],[37.67783410700011,-3.17897796699981],[37.660160767000065,-3.070560811999854],[37.64486454200002,-3.045962828999862],[37.56228560400009,-2.999867451999847],[37.42421187500011,-2.922753572999824],[37.34762170400009,-2.879978128999952],[37.1328544520002,-2.760088805999885],[36.9181905520002,-2.640302835999933],[36.70352665200008,-2.520413512999866],[36.48886275300006,-2.400627542999914],[36.27409550000018,-2.280841572999961],[36.05953495300017,-2.160952249999895],[35.844871053000155,-2.041062926999828],[35.630207154000146,-1.921173603999861],[35.41564660700013,-1.80128428099988],[35.24636655100008,-1.706823238999931],[35.20098270700012,-1.681498310999842],[34.98621545400007,-1.561608987999861],[34.771551554000126,-1.441823017999823],[34.718893345000225,-1.412413522999898],[34.55688765400012,-1.321933694999842],[34.34212040200006,-1.20214772499989],[34.12745650200022,-1.082258402999827],[34.052525675000055,-1.040400491999847],[34.01542199700006,-1.037506611999859],[34.00198612400007,-1.028721617999864],[34.00002242100018,-1.00257334399987],[33.9845194910001,-1.002056578999913],[33.980385376000044,-1.00257334399987],[33.904214315000075,-1.00257334399987],[33.898529907000096,-0.799071553999866],[33.89480920400009,-0.66274912499992],[33.911345662000116,-0.519295348999862],[33.93511682100009,-0.313106383999838],[33.95351363100005,-0.154356383999897],[33.95248010200007,-0.115702412999894],[33.921577596000105,-0.012969664999886],[33.89046838400022,0.090073140000115],[33.893568969000086,0.109813538000168],[33.95175663300009,0.187328186000144],[33.9602659240002,0.198677206000184],[34.04064009600014,0.305873921000142],[34.07660689300022,0.333779196000137],[34.085185180000025,0.347008362000125],[34.08797570800019,0.367368876000072],[34.07671024600015,0.403852438000172],[34.075676717000164,0.422249247000082],[34.080120890000074,0.431344300000134],[34.097380818000175,0.451808166000191],[34.10440881300005,0.462246806000053],[34.10750940000011,0.470721741000133],[34.1315877480001,0.569432983000127],[34.13241743900008,0.572834371000084],[34.14957401600023,0.603633524000145],[34.17913293400008,0.623890686000152],[34.21975061100008,0.638566793000138],[34.25210005700009,0.654999898000199],[34.27618127500014,0.680838114000125],[34.292304321000216,0.723729553000084],[34.29625187600007,0.746745807000124],[34.29840214000009,0.75928293800014],[34.30667037000009,0.768067932000136],[34.37085249800023,0.800210673000066],[34.38800907400022,0.815816955000102],[34.40237512200022,0.856072896000057],[34.43121057100004,0.893538310000039],[34.45715214100019,0.957617086000127],[34.46304325400021,0.978080953000102],[34.46366337100008,1.02293609600018],[34.46883101400019,1.044226787000156],[34.47720259600007,1.064587301000188],[34.487021118000115,1.082467347000147],[34.507484985000104,1.102517802000193],[34.52402144400017,1.098642069000064],[34.540351197000206,1.089391988000131],[34.56006493200019,1.093149310000072],[34.56122847500009,1.093371074000117],[34.56688291800012,1.103021686000147],[34.57197717300019,1.1117162070002],[34.57363081800017,1.134247131000123],[34.58045210800012,1.152540589000097],[34.62892460100007,1.163599345000108],[34.66303104600016,1.196362203000191],[34.68380497300009,1.209074606000158],[34.76607385300022,1.217497864000137],[34.79790653500018,1.231915588000163],[34.81051558500021,1.272533264000017],[34.800076945000086,1.312324117000117],[34.78271366400017,1.352993469000154],[34.78074667700011,1.371789122000109],[34.77899296100023,1.388546855000115],[34.8384208580002,1.437174378000137],[34.85950484200012,1.517918803000072],[34.8825525300002,1.552231954000192],[34.89257775900009,1.557270406000157],[34.91355839000013,1.561559550000126],[34.92348026500011,1.566107076000165],[34.9337121990001,1.575693054000169],[34.94094689900007,1.587036031000153],[34.972676229000086,1.654241231000029],[34.97867069500009,1.675945333000115],[34.97970422400007,1.870300395000114],[34.98404504400017,1.882470194000121],[35.00275191200014,1.906138001000144],[35.00647261500015,1.916860860000071],[35.001408325000085,1.927997132000101],[34.97794722500012,1.949907939000141],[34.96916223100001,1.960294902000072],[34.9620308830001,1.977813212000043],[34.95789676900008,1.99783783000008],[34.95665653500012,2.018508403000084],[34.95820682800016,2.037964580000164],[34.96761193800009,2.082561340000098],[34.96750858600009,2.101914164000149],[34.92234338300008,2.210718893000205],[34.90428407400023,2.25425531600014],[34.86560266100017,2.347506409000175],[34.8590914310001,2.386780497000061],[34.867876424000116,2.411481832000149],[34.885963175000114,2.425434469000151],[34.90611698400019,2.436906637000078],[34.9208964430002,2.454631653000092],[34.92358361900003,2.47731760700006],[34.91438521300003,2.49437082900009],[34.88710005700014,2.522379456000181],[34.881312296000175,2.54144805900016],[34.87562788900013,2.591212464000179],[34.86560266100017,2.604855042000096],[34.85650760900009,2.603459778000115],[34.84989302500011,2.595139872000161],[34.84183150300012,2.587750142000147],[34.828085571000116,2.588783671000129],[34.81868046100013,2.597982076000136],[34.77651249200007,2.685625306000148],[34.76131962100007,2.772493388000143],[34.74095910600013,2.835538635000177],[34.73692834500011,2.84437530500017],[34.730107056000094,2.852850240000179],[34.724836060000115,2.854142151000048],[34.69651737400014,2.867733053000123],[34.69465702300013,2.870420227000067],[34.692693319000085,2.872228903000149],[34.69103967300006,2.875691223000089],[34.68886926300016,2.879153545000122],[34.68504520700023,2.880962220000114],[34.68256473800013,2.87936025],[34.67812056500023,2.871557109000165],[34.67564009600008,2.869800110000185],[34.67150598100014,2.867784729000135],[34.66034387200014,2.858638001000145],[34.65414270000022,2.856519267000166],[34.640500122000134,2.860136617000151],[34.63140507000017,2.869541728000115],[34.61641890500019,2.893416239000188],[34.58468957500017,2.928711243000095],[34.57466434700015,2.946126200000123],[34.54562219200013,3.097383118000039],[34.54555634300013,3.097500953000107],[34.53383996600016,3.118467102000153],[34.51285933400007,3.132368063000044],[34.465730428000114,3.145855611000101],[34.44485315000017,3.159136455000109],[34.4340010990002,3.182029114000116],[34.424079223,3.30481231700017],[34.411160116000104,3.344706523000127],[34.4038220620001,3.355403544000126],[34.39441695200017,3.365661316000114],[34.38656213400022,3.376384176000045],[34.38397831200021,3.388347270000082],[34.386975546000116,3.399664409000067],[34.39700077300009,3.424159037000109],[34.39855106600006,3.433641662000184],[34.39441695200017,3.44462290400017],[34.382117960000215,3.466042786000088],[34.381291138000186,3.476868998000128],[34.3868721920002,3.485628153000107],[34.395967244000104,3.489607239000094],[34.40619917800009,3.492294414000127],[34.4155009360002,3.497022807000107],[34.43451786300008,3.526219991000132],[34.44392297400011,3.566295065000133],[34.446403443000094,3.646703593],[34.439685506000075,3.667735901000099],[34.425009399000174,3.677192688000161],[34.40630253100019,3.682928772000125],[34.387492310000056,3.692747294000185],[34.35503951000007,3.727370504000191],[34.33705611200017,3.734579366000148],[34.309874309000094,3.726698710000107],[34.299435669000076,3.716931864000159],[34.295094848000105,3.707345886000155],[34.29044396900011,3.703160095000115],[34.27886844900016,3.709723002000189],[34.263778930000086,3.750056457000071],[34.24155806500002,3.778736878000146],[34.240937947000155,3.78362030000008],[34.230395956000194,3.782741801000142],[34.210552205000084,3.777134908000122],[34.19091516100016,3.775842997000069],[34.17365523300006,3.771398824000158],[34.16518029800008,3.770830383000188],[34.15246789500023,3.775636292000116],[34.159082479000205,3.783361919000114],[34.17902958200014,3.796100159000161],[34.166523885000025,3.811318868000114],[34.15081425000008,3.817209981000104],[34.14895389800009,3.822687683000182],[34.19670292200013,3.847389018000114],[34.2075549730001,3.860876567000162],[34.204971151000194,3.874544983000177],[34.18285363700008,3.886094666000119],[34.16342329900007,3.886198019000147],[34.123735799000116,3.872038676000102],[34.10802616400022,3.86893809100016],[34.08477176900013,3.877335510000137],[34.086218709,3.894672953000153],[34.09893111200009,3.91772064200012],[34.109576456000156,3.943352152000088],[34.10709598800011,3.959501037000166],[34.09552046700016,3.970999044000095],[34.080844361000146,3.980791728000156],[34.06895878100013,3.991876323000156],[34.06110396300019,4.007766825000175],[34.061517375000136,4.017921245000139],[34.065858195000175,4.027429708000128],[34.069785603000156,4.041356506000113],[34.07267948400013,4.064662577000135],[34.07236942600016,4.076418966000133],[34.069268839000216,4.088020325000087],[34.06089725700022,4.099259949000142],[34.04973514800011,4.109466044000115],[34.040950155000104,4.120421448000101],[34.039709921000195,4.134038187000101],[34.04105350800014,4.164811503000152],[34.02854781100004,4.188014221000159],[34.00601688700013,4.20571339900016],[33.97707808500016,4.219691875000166],[34.07815718600014,4.319840800000165],[34.17913293400008,4.419912212000156],[34.28010868300012,4.52006113700017],[34.381187785000094,4.62015838600017],[34.459673937667134,4.660608951185679],[34.529156018317195,4.696418955078627],[34.598159026707236,4.730920459273648],[34.6662773811436,4.76497963649193],[34.76358931605276,4.800365794640683],[34.84475119572434,4.830894575067603],[34.92082934837319,4.859511127898799],[35.00272001408652,4.890314038855208],[35.09429820157399,4.924760880020216],[35.17618886728749,4.955563790976626],[35.24572572083005,4.981719855153216],[35.26341879990437,4.948545331888666],[35.33356251052041,4.987281410885615],[35.411598337152355,5.030375822607752],[35.4337146859954,5.003836203996187]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Liberia","sov_a3":"LBR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Liberia","adm0_a3":"LBR","geou_dif":0,"geounit":"Liberia","gu_a3":"LBR","su_dif":0,"subunit":"Liberia","su_a3":"LBR","brk_diff":0,"name":"Liberia","name_long":"Liberia","brk_a3":"LBR","brk_name":"Liberia","brk_group":null,"abbrev":"Liberia","postal":"LR","formal_en":"Republic of Liberia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Liberia","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":4,"mapcolor13":9,"pop_est":3441790,"gdp_md_est":1526,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"LI","iso_a2":"LR","iso_a3":"LBR","iso_n3":"430","un_a3":"430","wb_a2":"LR","wb_a3":"LBR","woe_id":23424876,"woe_id_eh":23424876,"woe_note":"Exact WOE match as country","adm0_a3_is":"LBR","adm0_a3_us":"LBR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"LBR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-9.722115030999902,8.435636088000109],[-9.718187621999931,8.438271586000042],[-9.71798091699989,8.452689310000054],[-9.715500447999913,8.473334046000062],[-9.703253132999889,8.487260844000048],[-9.683512735999926,8.48705413800009],[-9.663513956999878,8.477855734000087],[-9.650543171999857,8.464807434000134],[-9.645117146999894,8.443413392000124],[-9.653385375999932,8.431450297000083],[-9.666511189999909,8.422381084000108],[-9.675916300999859,8.409642843000142],[-9.677259887999924,8.39153025400013],[-9.668371541999903,8.388739726000066],[-9.653385375999932,8.392098694000083],[-9.636125447999945,8.39256378200011],[-9.628063923999944,8.39163360700006],[-9.619537312999938,8.392718811000051],[-9.612147582999938,8.396336161000136],[-9.60734167499993,8.402924907000127],[-9.600158650999958,8.410883077000094],[-9.592045450999876,8.405095317000118],[-9.579178019999887,8.387292786000074],[-9.5290518799999,8.366312155000074],[-9.511481892999882,8.353780619000077],[-9.504350545999927,8.346158346000093],[-9.499131225999918,8.34347117200008],[-9.511481892999882,8.336133118000078],[-9.51561600799991,8.334376119000098],[-9.522282266999923,8.330681254000098],[-9.5284834389999,8.325720317000048],[-9.539387166999859,8.314584045000117],[-9.530188761999852,8.30597991900008],[-9.525124470999884,8.295437928000112],[-9.52124873899993,8.284405009000125],[-9.51561600799991,8.27440562000011],[-9.510758422999885,8.270064799000124],[-9.509156453999935,8.265594788000115],[-9.5108100999999,8.261047262000076],[-9.51561600799991,8.256603088000077],[-9.52543452999987,8.24079010000007],[-9.53189408399993,8.21231638600004],[-9.530137085999854,8.185496318000048],[-9.51561600799991,8.174876811000061],[-9.491328084999905,8.169967550000123],[-9.481406209999903,8.1646965540001],[-9.478098917999914,8.152785137000066],[-9.4780472409999,8.141287130000137],[-9.459805460999945,8.068785096000042],[-9.461872517999893,8.05842397000012],[-9.472776244999862,8.04036305800011],[-9.474223184999857,8.028813375000084],[-9.46218257699988,8.043463644000054],[-9.451537231999879,8.051757711000107],[-9.440943562999903,8.050569153000083],[-9.429264688999922,8.036900737000082],[-9.424148721999956,8.026177877000066],[-9.422340046999864,8.015790914000135],[-9.42456213399987,8.00581736300012],[-9.431745157999899,7.996567281000111],[-9.433092532999922,7.993468319000029],[-9.446007853999987,7.950058492000082],[-9.44843664499993,7.907838847000108],[-9.4386698,7.8662393190001],[-9.415673787999935,7.824433085000051],[-9.38968054199998,7.791463522000086],[-9.38099890199993,7.774410299000052],[-9.355470743999886,7.741905823000123],[-9.366374470999858,7.716170960000127],[-9.3762446699999,7.680565898000054],[-9.374694376999912,7.646924540000113],[-9.353507039999954,7.622429911000068],[-9.364410766999924,7.61426503500013],[-9.372989054999948,7.601345927000124],[-9.378776814999924,7.586256409000043],[-9.383660237999948,7.55953969400008],[-9.390817423999891,7.548222555000095],[-9.408697468999947,7.527448629000062],[-9.40492508999992,7.513599345000088],[-9.413400023999912,7.492256979000089],[-9.436085978999897,7.458563945000036],[-9.456704874999899,7.443061015000125],[-9.466213337999875,7.433449199000108],[-9.470244099999974,7.420995178000125],[-9.470864216999928,7.407352600000124],[-9.473499715999964,7.39557037400003],[-9.47970088699995,7.385390116000052],[-9.490707966999935,7.376036682000105],[-9.487098760999913,7.373204140000041],[-9.486625528999923,7.372832743000045],[-9.478357299999885,7.376915182000062],[-9.449263468999959,7.405078837000104],[-9.438101358999944,7.421563619000081],[-9.418722696999879,7.387767232000101],[-9.407353881999882,7.378052063000069],[-9.392264363999885,7.399859518000086],[-9.38647660299992,7.401668193000076],[-9.38141231299994,7.40497548500008],[-9.379241901999933,7.415827535000119],[-9.375159464999937,7.419289856000161],[-9.365961059999933,7.421098531000055],[-9.349217895999885,7.421563619000081],[-9.335006876999927,7.41965159100006],[-9.327772176999872,7.41706777000006],[-9.319400593999887,7.411951803000079],[-9.312424274999898,7.403321838000124],[-9.305499633999915,7.383478089000036],[-9.299505167999882,7.376605123000076],[-9.283795532999903,7.374072978000086],[-9.249714924999864,7.383064677000121],[-9.234341185999881,7.381307678000057],[-9.219871784999953,7.360998841000124],[-9.206280883999852,7.298367005000102],[-9.18147619699991,7.275681051000049],[-9.175430053999975,7.274595846000053],[-9.153079996999907,7.275474345000092],[-9.147473103999886,7.271391907000079],[-9.14690466399992,7.254080302000077],[-9.139153197999917,7.247879131000089],[-9.119619506999896,7.237957255000097],[-9.116053833999928,7.224676412000093],[-9.125407267999975,7.190208232000117],[-9.113935098999946,7.20038848900009],[-9.106085323999906,7.202975005000043],[-9.100447550999888,7.2048326620001],[-9.086391560999886,7.207209778000049],[-9.07311071799995,7.211343893000062],[-9.059261433999893,7.221369120000091],[-9.046652384999959,7.232737936000077],[-9.032854777999916,7.240282695000118],[-9.015698200999879,7.238887431000136],[-9.00763667799987,7.243486633000103],[-8.98546748899986,7.250049540000076],[-8.98102331499993,7.25056630500012],[-8.977716023999932,7.266224263000082],[-8.973116820999905,7.267671203000077],[-8.96257482899992,7.262968648000097],[-8.957200479999868,7.286481425000075],[-8.944384724999907,7.278678284000065],[-8.925419473999852,7.248602600000083],[-8.912190307999936,7.250152893000105],[-8.868885456999891,7.266637675000084],[-8.85782670099988,7.27304555300013],[-8.851367146999905,7.29288930200012],[-8.855914672999859,7.311854554000077],[-8.863304402999859,7.329889628000076],[-8.8653714599999,7.346891175000096],[-8.860617227999937,7.357639873000024],[-8.851625528999904,7.371489156000081],[-8.833409586999949,7.393865051000147],[-8.824030313999884,7.399807842000071],[-8.807700560999962,7.404510397000138],[-8.799225625999952,7.41221018500005],[-8.795453246999926,7.421098531000055],[-8.793954630999906,7.441510722000103],[-8.790388956999948,7.450812480000124],[-8.784394490999915,7.455721741000062],[-8.756489216999853,7.472413228000094],[-8.73953934699992,7.490551656000121],[-8.729617471999944,7.50869008400015],[-8.725741739999876,7.528533834000142],[-8.726826944999884,7.55183990500008],[-8.72951411999992,7.556387431000118],[-8.734009968999942,7.557679342000071],[-8.738040730999927,7.559488017000149],[-8.739177612999924,7.565689189000138],[-8.737368937999946,7.571425272000098],[-8.731477823999853,7.581760559000101],[-8.73003088399986,7.587444967000052],[-8.727576252999881,7.622016500000142],[-8.720677449999895,7.642738750000077],[-8.694477498999987,7.674416402000091],[-8.686571003999944,7.694363505000098],[-8.567405150999946,7.688214010000124],[-8.572779500999928,7.65074859700006],[-8.566526651999936,7.623411763000121],[-8.547819782999852,7.600777487000072],[-8.51562536599991,7.577161357000065],[-8.485446329999888,7.557989400000054],[-8.443640095999939,7.537112122000081],[-8.425605021999928,7.501920471000118],[-8.405141154999882,7.431278788000028],[-8.393048868999898,7.334333802000089],[-8.387674519999933,7.31495513900012],[-8.381059936999916,7.303017884000069],[-8.364006713999913,7.278884989000118],[-8.357547159999854,7.265707500000134],[-8.349692341999912,7.234701640000111],[-8.344989786999918,7.226795146000157],[-8.33300085499988,7.211860657000101],[-8.32897009299998,7.204005839000075],[-8.328453328999927,7.197391256000073],[-8.330572061999902,7.184730530000124],[-8.32974523999988,7.17832265200009],[-8.32623124199992,7.172069804000088],[-8.311503458999937,7.157290344000074],[-8.305353962999959,7.146903382000062],[-8.302615112999915,7.137601624000126],[-8.30121984899995,7.113210348000095],[-8.28411494999989,7.017867330000101],[-8.286647094999893,6.993786112000052],[-8.294140177999907,6.984381002000092],[-8.31455236799988,6.968568013000095],[-8.319978393999946,6.959989726000074],[-8.321218627999883,6.94226471000006],[-8.319978393999946,6.925831604000095],[-8.320908569999887,6.910173645000043],[-8.333672647999947,6.882578430000137],[-8.328763386999922,6.875085347000095],[-8.320598510999899,6.869659322000118],[-8.315715087999877,6.863819885000041],[-8.314965779999879,6.850280660000067],[-8.316619425999932,6.836276347000151],[-8.324991007999898,6.8062523400001],[-8.337496703999904,6.777261862000031],[-8.351759399999878,6.755351054000073],[-8.441645673999943,6.655310175000124],[-8.461313435999925,6.633420512000043],[-8.53355708899997,6.576343892000125],[-8.547147989999871,6.560039978000106],[-8.549473429999892,6.56014333100012],[-8.566113240999925,6.550919088000113],[-8.567198445999907,6.550609029000043],[-8.566113240999925,6.549058737000109],[-8.570609090999938,6.535131938000134],[-8.572727823999912,6.530842794000066],[-8.577327025999864,6.528026429000107],[-8.589367634999917,6.52606272400007],[-8.594121866999927,6.523892314000079],[-8.618719848999916,6.492834778000129],[-8.601847492999923,6.491749572000046],[-8.59210648699988,6.489682516000086],[-8.56807694499986,6.490405985000081],[-8.556501424999908,6.487021179000067],[-8.545339314999863,6.477202657000092],[-8.51562536599991,6.437592672000036],[-8.497228556999884,6.431365662000132],[-8.484774535999918,6.441571757000105],[-8.47691971899988,6.460149435000061],[-8.472372192999927,6.478649597000086],[-8.46751460799993,6.487072856000083],[-8.461210083999902,6.482887065000043],[-8.449634561999858,6.467926737000069],[-8.418266967999926,6.451209412000125],[-8.405089477999866,6.436326599000083],[-8.406484741999947,6.430538839000107],[-8.413874470999957,6.42418263800009],[-8.419042114999854,6.407646179000096],[-8.417233439999961,6.398189392000119],[-8.408241739999909,6.379921774000067],[-8.405967976999902,6.372247824000084],[-8.41098059099997,6.363178610000105],[-8.420153157999948,6.358088481000038],[-8.423692992999918,6.351990662000077],[-8.411807413999895,6.340027568000024],[-8.40105871599988,6.350440369000053],[-8.38881140199993,6.355091247000118],[-8.376564086999906,6.354729513000108],[-8.365970417999932,6.350078634000056],[-8.352947956999884,6.361059876000126],[-8.342612670999898,6.356951599000112],[-8.332949177999863,6.345970357000041],[-8.32235550999988,6.336461894000152],[-8.31749792499997,6.336978659000095],[-8.314190632999953,6.341526184000131],[-8.310004841999927,6.344626770000076],[-8.302718465999929,6.340647685000093],[-8.297705850999876,6.332586161000094],[-8.296568969999981,6.324395447000071],[-8.296568969999981,6.317496643000098],[-8.295070352999886,6.313362529000074],[-8.285975301999912,6.310055237000086],[-8.208486490999945,6.292536927000114],[-8.196575073999895,6.288144430000031],[-8.185723022999866,6.281839905000112],[-8.179056762999949,6.276853130000063],[-8.170581827999854,6.274010926000088],[-8.154355427999946,6.274217631000042],[-8.140609497999888,6.277576599000056],[-8.118285277999945,6.289901428000107],[-8.106606403999962,6.294681499000106],[-8.060097615999922,6.301141053000066],[-8.033019164999871,6.301761169000116],[-8.01570756099997,6.297782084000047],[-7.999377807999934,6.286697489000133],[-7.934885620999893,6.271427104000082],[-7.929511270999853,6.270755310000098],[-7.925222126999869,6.272512309000078],[-7.920545409999903,6.273804219000127],[-7.914370076999915,6.271737163000068],[-7.912664753999876,6.268429871000066],[-7.910029255999859,6.256776835000096],[-7.906566934999915,6.251996765000101],[-7.86212520299992,6.216391703000127],[-7.846622273999913,6.197478130000093],[-7.844141804999936,6.183964742000114],[-7.857370971999927,6.145388286000126],[-7.862021850999895,6.124381815000035],[-7.864502318999883,6.101695862000071],[-7.861815144999952,6.08149037700008],[-7.850911416999878,6.06756357800009],[-7.850498005999981,6.072240296000061],[-7.840886189999963,6.07735626200015],[-7.828380493999872,6.08071523100007],[-7.819388793999933,6.080095113000098],[-7.809673624999987,6.071206767000078],[-7.805694538999916,6.062034200000085],[-7.802438923999914,6.039244893000102],[-7.799234985999931,6.035679220000119],[-7.793860635999891,6.034077250000095],[-7.788744668999897,6.031493429000093],[-7.786470905999891,6.025111390000063],[-7.788589640999959,6.019788717000111],[-7.797736368999949,6.014750265000131],[-7.799958454999853,6.010151062000091],[-7.800681925999924,5.981729024000074],[-7.799648396999942,5.974468486000092],[-7.786625935999922,5.958164572000071],[-7.747145140999891,5.937597352000083],[-7.734949503999871,5.92563425800013],[-7.717172810999954,5.900752055000068],[-7.703220173999853,5.907883403000098],[-7.691541299999898,5.927727153000092],[-7.680482543999886,5.94093048100008],[-7.674022989999912,5.935737],[-7.66311926299997,5.923102112000052],[-7.648339802999942,5.911294047000126],[-7.630614786999928,5.908606873000096],[-7.629116169999919,5.904937846000109],[-7.608497273999915,5.893698222000054],[-7.605758422999883,5.893129781000098],[-7.584157673999897,5.883698832000036],[-7.579093383999918,5.877187602000063],[-7.587206583999943,5.866774801000133],[-7.579506794999928,5.860341085000086],[-7.566277627999852,5.843727112000082],[-7.559146280999926,5.839851379000023],[-7.547570759999871,5.845432434000131],[-7.535194253999919,5.855845235000075],[-7.527778686999881,5.858842468000077],[-7.531085978999897,5.842021790000103],[-7.515583048999873,5.839231263000059],[-7.50881343599994,5.826182963000107],[-7.503904174999917,5.812101136000081],[-7.494395710999925,5.806184184000074],[-7.486644246999901,5.813806458000045],[-7.481683308999947,5.830213725000107],[-7.478582722999931,5.85987599700006],[-7.446543335999905,5.845949198000085],[-7.442047484999904,5.811274312000151],[-7.448558715999866,5.769054668000081],[-7.44948889199992,5.732364400000108],[-7.431040405999909,5.653971253000108],[-7.417962620999901,5.627756685000136],[-7.396675577999871,5.585086568000094],[-7.384118204999965,5.568963522000118],[-7.405098835999866,5.572400004000144],[-7.411920125999898,5.560359396000081],[-7.407114216999901,5.541394145000126],[-7.393626668999929,5.523979187000093],[-7.413470417999917,5.522816468000087],[-7.419981648999907,5.52312652600007],[-7.409851859999947,5.513416970000051],[-7.408147745999885,5.511783550000088],[-7.413470417999917,5.503489482000119],[-7.425149291999901,5.494161885000096],[-7.432383992999888,5.47956329400013],[-7.43171219899989,5.441917013000093],[-7.436208048999902,5.43132334400012],[-7.450212361999916,5.43871307400012],[-7.449953978999928,5.422770895000099],[-7.446026570999975,5.404916687000139],[-7.439101928999889,5.387811788000093],[-7.429696818999928,5.374298401000118],[-7.414865681999912,5.365978495000164],[-7.404375366999943,5.367993877000116],[-7.396933959999927,5.366443583000091],[-7.391456257999948,5.347685038000094],[-7.3888207599999,5.328383891000057],[-7.389750935999898,5.317144267000103],[-7.395590372999976,5.306783142000086],[-7.407682657999942,5.289859111000084],[-7.410111449999931,5.283167013000067],[-7.413780476999903,5.266708069000089],[-7.418793090999885,5.2604552210001],[-7.428508259999916,5.256140239000032],[-7.430833699999936,5.259990133000072],[-7.430885375999963,5.267534892000114],[-7.434089314999937,5.2740719600001],[-7.435174519999918,5.279291280000109],[-7.430110229999854,5.284252217000059],[-7.428508259999916,5.28815378900012],[-7.439928751999929,5.290169169000066],[-7.442409219999887,5.287378642000106],[-7.468247436999917,5.27345184400012],[-7.475688842999944,5.264227600000112],[-7.479926309999883,5.255158387000066],[-7.490468302999942,5.222188822000092],[-7.482251749999931,5.175059916000095],[-7.483026895999927,5.158239238000121],[-7.488918009999935,5.140669251000148],[-7.515841430999956,5.09180918400007],[-7.529923258999871,5.097390238000088],[-7.546847289999959,5.097700298000078],[-7.56322871899991,5.090155538000118],[-7.575786091999929,5.072068786000102],[-7.578163207999892,5.054731344000103],[-7.570360066999854,4.996879578000075],[-7.570205037999926,4.996879578000075],[-7.571600300999904,4.975382182000132],[-7.564623982999905,4.961584575000089],[-7.555322224999884,4.948432922000109],[-7.549586140999907,4.929054261000147],[-7.54953446399989,4.91388722800012],[-7.553461873999879,4.914248963000119],[-7.561781778999914,4.920165914000037],[-7.574959269999908,4.921561178000118],[-7.605500039999895,4.897428284000057],[-7.605965127999923,4.887997335000094],[-7.59883378099991,4.857094828000101],[-7.600229044999877,4.845803528000133],[-7.605861775999897,4.825132955000114],[-7.605996506999957,4.817363425000124],[-7.606016804999854,4.816192932000091],[-7.601004190999986,4.804643250000139],[-7.59340775499993,4.797434387000095],[-7.585552937999893,4.791543274000091],[-7.579558471999861,4.784282735000119],[-7.576871297999929,4.77529103600007],[-7.572478800999932,4.723356222000064],[-7.576871297999929,4.509338277000111],[-7.575424356999946,4.500346578000076],[-7.572737182999901,4.491122335000071],[-7.570928506999905,4.480709534000127],[-7.572840534999926,4.455388082000056],[-7.565709187999885,4.435208435000078],[-7.564313924999908,4.425829163000117],[-7.567414509999963,4.415933126000127],[-7.577853149999897,4.397277934000073],[-7.57919673699996,4.387149353000112],[-7.573770710999894,4.375392965000117],[-7.540666124138936,4.352844581561129],[-7.541005011999914,4.352769273000149],[-7.59325110599994,4.347235419000043],[-7.608225063999953,4.34943268400012],[-7.631662563999924,4.359279690000051],[-7.644439256999874,4.361517645000035],[-7.71271725199989,4.361517645000035],[-7.72101803299995,4.364691473000092],[-7.725412563999954,4.371771552000055],[-7.728627081999888,4.378810940000037],[-7.733225063999924,4.382025458000086],[-7.749501105999884,4.383246161000102],[-7.788726365999906,4.398911851000079],[-7.801014777999853,4.40631745000006],[-7.812326626999918,4.416083075000103],[-7.818267381999958,4.427191473000036],[-7.823801235999979,4.44074127800009],[-7.832875128999888,4.452215887000136],[-7.862904425999914,4.461371161000031],[-7.886830206999888,4.480169989000074],[-7.898019985999895,4.484442450000088],[-7.914540167999888,4.486517645000106],[-7.92442786399988,4.491685289000102],[-7.932199673999889,4.49835846600007],[-7.94200598899991,4.504868882000054],[-7.959868943999879,4.512030341000098],[-8.003163214999857,4.523504950000046],[-8.037505662999905,4.528753973000036],[-8.100331183999884,4.553290106000048],[-8.222035285999908,4.568060614000032],[-8.257313605999855,4.579982815000079],[-8.300200975999928,4.627264716000127],[-8.316029425999943,4.635199286000088],[-8.3353572259999,4.638820705000056],[-8.43854732999992,4.67617422100011],[-8.549956834999932,4.754868882000011],[-8.607533331999889,4.786932684000078],[-8.747059699999909,4.837713934000121],[-8.778146938999924,4.854315497000087],[-8.848296678999873,4.913560289000074],[-8.874338344999954,4.930121161000045],[-8.905100063999924,4.944322007000054],[-8.915516730999911,4.946275132000011],[-8.936105923999946,4.955389716000099],[-8.966786261999856,4.960109768000095],[-8.991322394999884,4.96751536700009],[-9.014800584999932,4.978461005000056],[-9.031971808999884,4.991441148000149],[-9.028716600999928,4.993638414000131],[-9.028065558999883,4.994289455000086],[-9.027821417999945,4.995428778000118],[-9.025786912999905,4.998928127000028],[-9.069650844999956,5.010972398000121],[-9.104969855999883,5.031561591000069],[-9.162261522999927,5.080877997000059],[-9.178089972999942,5.091009833000015],[-9.21275794199994,5.107407945000105],[-9.24396725199992,5.130560614000061],[-9.261952277999853,5.137274481000105],[-9.278716600999871,5.145738023000135],[-9.291981574999909,5.163478908000044],[-9.278960740999906,5.163478908000044],[-9.292144334999875,5.181626695000133],[-9.312245245999918,5.192613023000092],[-9.334462042999888,5.200995184000064],[-9.354074673999918,5.211167710000012],[-9.470814581999917,5.3204613300001],[-9.47793535099987,5.335353908000059],[-9.48851477799991,5.371649481000063],[-9.497466600999957,5.38939036700006],[-9.50804602799991,5.399603583000085],[-9.524281378999945,5.410793361000103],[-9.541818813999896,5.419826565000022],[-9.556507941999882,5.423488674000069],[-9.559396938999924,5.425034898000106],[-9.58763587099989,5.430731512000094],[-9.593658006999902,5.430324611000088],[-9.594960089999887,5.440008856000048],[-9.583078579999919,5.454901434000091],[-9.580718553999873,5.464504299000069],[-9.596994594999925,5.48834870000006],[-9.696766730999911,5.546372789000117],[-9.842111782999893,5.685451565000051],[-9.979644334999875,5.798081773000077],[-10.015207485999923,5.838120835000011],[-10.022613084999904,5.844224351000094],[-10.039947068999908,5.854315497000058],[-10.046213344999954,5.861721096000053],[-10.04906165299991,5.871771552000027],[-10.044789191999882,5.884466864000089],[-10.046213344999954,5.896429755000028],[-10.055531378999886,5.911769924000069],[-10.071278449999852,5.924790757000054],[-10.089100714999915,5.933986721000025],[-10.104237433999913,5.937445380000028],[-10.114979620999947,5.943304755000071],[-10.18569902299987,5.999090887000065],[-10.226551886999912,6.04360586100006],[-10.279896613999881,6.07697174700013],[-10.298166469999956,6.084906317000089],[-10.336008266999897,6.092230536000102],[-10.353667772999898,6.102362372000059],[-10.364125128999888,6.115668036000073],[-10.361480272999897,6.129217841000042],[-10.352284308999913,6.123521226000065],[-10.34447180899994,6.122707424000054],[-10.33812415299991,6.126776434000107],[-10.333566860999952,6.136053778000061],[-10.353627081999917,6.140611070000105],[-10.367990688999896,6.151800848000022],[-10.380604620999861,6.165350653000075],[-10.395619269999884,6.176988023000092],[-10.428130662999877,6.197007554000052],[-10.444691535999937,6.203843492000075],[-10.46393795499989,6.204982815000108],[-10.46393795499989,6.19749583500004],[-10.412180141999954,6.171047268000066],[-10.38939368399994,6.15216705900012],[-10.38194739499994,6.129217841000042],[-10.39712480399993,6.14785390800003],[-10.42487545499992,6.164618231000048],[-10.456695115999961,6.177476304000081],[-10.659413214999859,6.227484442000105],[-10.788319464999915,6.292954820000148],[-10.807850714999885,6.310858466000099],[-10.800363735999923,6.327826239000074],[-10.79556230399993,6.319647528000075],[-10.790353969999927,6.313910223000092],[-10.78307044199994,6.310003973000107],[-10.772368943999908,6.307359117000118],[-10.789051886999857,6.334947007000039],[-10.792347785999878,6.359035549000054],[-10.7823380199999,6.381415106000077],[-10.759388800999913,6.404201565000108],[-10.77367102799991,6.404201565000108],[-10.784087693999908,6.401271877000084],[-10.792347785999878,6.396226304000052],[-10.800363735999923,6.389878648000121],[-10.824330206999889,6.437730210000055],[-10.85732988199993,6.472845770000021],[-10.895904100999928,6.499009507000068],[-11.053618943999908,6.584173895000063],[-11.233062303999901,6.648098049000069],[-11.353179490999906,6.701157945000077],[-11.374867316999882,6.726874091000127],[-11.375721808999884,6.766669012000122],[-11.369943813999924,6.788885809000078],[-11.368641730999911,6.798244533000116],[-11.3682755199999,6.811346747000087],[-11.38194739499994,6.836818752000084],[-11.385609503999886,6.841782945000134],[-11.404408331999946,6.847072658000116],[-11.424224412999934,6.859320380000084],[-11.441070115999935,6.873277085000054],[-11.450795050999915,6.883368231000105],[-11.476185675999915,6.919419664000074],[-11.444490519999903,6.933944804000092],[-11.436739053999872,6.938544007000131],[-11.43885778799995,6.963865458000029],[-11.434671996999924,6.980815328000119],[-11.407283487999877,6.996369934000143],[-11.397723347999886,7.012803040000122],[-11.39152217599991,7.031768290000073],[-11.389300089999892,7.046702779000042],[-11.392917439999877,7.066856588000107],[-11.389713500999903,7.073522848000024],[-11.367906046999877,7.075951640000085],[-11.36046464099985,7.078638815000105],[-11.355141967999913,7.084064840000082],[-11.353126586999878,7.092798157000061],[-11.356433878999951,7.105355530000068],[-11.370593220999922,7.12840321800013],[-11.373228718999911,7.138841858000163],[-11.370128132999895,7.142614238000093],[-11.352041381999868,7.159254049000111],[-11.317211466999908,7.213565979000065],[-11.300209919999899,7.217079977000124],[-11.217889363999916,7.254080302000077],[-11.20925939999998,7.262193502000087],[-11.144213025999932,7.345193486000141],[-11.126318725999852,7.368026836000126],[-10.977904011999925,7.484918925000101],[-10.937027953999916,7.5077599090001],[-10.898994099999866,7.516493225000076],[-10.885713256999878,7.522177633000111],[-10.874602823999851,7.530859273000075],[-10.864025142999964,7.543683809000086],[-10.730580606999922,7.705473939000115],[-10.6925984289999,7.737565003000042],[-10.645417845999873,7.763041483000067],[-10.638131469999905,7.765521952000128],[-10.615187133999967,7.769035950000089],[-10.617667602999944,8.010778300000084],[-10.61622066299995,8.022508850000063],[-10.612138224999939,8.031862284000098],[-10.603146524999886,8.0392261760001],[-10.5778250729999,8.053152975000089],[-10.567179728999916,8.06320404100012],[-10.543977009999907,8.106069642000065],[-10.529249226999921,8.12428558400012],[-10.505736449999915,8.135835266000058],[-10.485737670999896,8.138858338000077],[-10.405070760999875,8.139271749000088],[-10.3845552169999,8.142113953000148],[-10.364918172999865,8.14821177200011],[-10.345539509999895,8.159348043000136],[-10.320941528999922,8.1831192020001],[-10.318151001999865,8.20164520300004],[-10.326005818999903,8.221540629000044],[-10.333292195999974,8.249755962000108],[-10.33127681499991,8.272286885000128],[-10.313655150999919,8.310346578000079],[-10.282907673999885,8.432948914000079],[-10.282235879999888,8.484625346000115],[-10.271332153999936,8.48410858200009],[-10.260841837999891,8.485917257000082],[-10.240274616999898,8.493746236000106],[-10.232419799999946,8.477054749000075],[-10.2156249599999,8.486589051000067],[-10.181828571999915,8.519584453000121],[-10.164878702999914,8.5246487430001],[-10.147980509999911,8.524287008000101],[-10.091084756999862,8.510101828000145],[-10.07609859199988,8.501497701000105],[-10.069277302999922,8.486873271000135],[-10.07935420799987,8.439951070000092],[-10.075013386999899,8.426644389000074],[-10.06168086699995,8.422174377000147],[-10.040390177999882,8.425662537000107],[-10.000185912999967,8.449304504000125],[-9.961118529999851,8.479561056000136],[-9.944168660999933,8.488346049000128],[-9.928148966999885,8.49343617800011],[-9.911354125999933,8.495658264000028],[-9.89187211199993,8.495916646000097],[-9.886911172999874,8.496640117000084],[-9.872803506999958,8.500360820000097],[-9.868152627999876,8.498087057000077],[-9.863501749999926,8.493539531000053],[-9.858644164999902,8.48705413800009],[-9.849704142999883,8.489689636000094],[-9.831617391999941,8.49901723300013],[-9.806812703999924,8.5062519330001],[-9.80546911699986,8.512789002000076],[-9.808828083999884,8.52046295200006],[-9.808853922999958,8.528472799000042],[-9.802006795999915,8.537180278000108],[-9.79482377099987,8.544544169000105],[-9.790017863999964,8.553070780000027],[-9.790586303999902,8.565395609000078],[-9.773584757999885,8.563018493000115],[-9.763042764999936,8.549970195000085],[-9.757306681999864,8.532710267000084],[-9.750898803999917,8.485865580000064],[-9.74629960099989,8.468063049000122],[-9.735912637999945,8.450493063000053],[-9.722115030999902,8.435636088000109]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Libya","sov_a3":"LBY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Libya","adm0_a3":"LBY","geou_dif":0,"geounit":"Libya","gu_a3":"LBY","su_dif":0,"subunit":"Libya","su_a3":"LBY","brk_diff":0,"name":"Libya","name_long":"Libya","brk_a3":"LBY","brk_name":"Libya","brk_group":null,"abbrev":"Libya","postal":"LY","formal_en":"Libya","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Libya","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":11,"pop_est":6310434,"gdp_md_est":88830,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"LY","iso_a2":"LY","iso_a3":"LBY","iso_n3":"434","un_a3":"434","wb_a2":"LY","wb_a3":"LBY","woe_id":23424882,"woe_id_eh":23424882,"woe_note":"Exact WOE match as country","adm0_a3_is":"LBY","adm0_a3_us":"LBY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"LBY.geojson"},"geometry":{"type":"Polygon","coordinates":[[[19.291677280000073,30.287054755000042],[19.3385522800001,30.29881419500003],[19.41895592500009,30.33323802300006],[19.530528191000087,30.39679596600004],[19.55103600400014,30.40493398600006],[19.596039259000122,30.41201406500002],[19.616384311000104,30.42137278900006],[19.748871290000068,30.51093170800004],[19.914317254000053,30.68292877800013],[19.958181186000104,30.749701239000075],[19.982188347000147,30.778631903000075],[20.0187280610001,30.803778387000055],[20.036468946000095,30.819077867000114],[20.09986412900011,30.93500397300008],[20.14665774800008,31.04555898600012],[20.152354363000086,31.088202216000038],[20.14665774800008,31.21678294500009],[20.128103061000076,31.242987372000098],[20.10328209700012,31.308742580000086],[20.08220462300011,31.33661530200004],[20.038340691000144,31.375881252000053],[20.022227410000085,31.396795966000127],[19.95484459700009,31.559475002000084],[19.94890384200005,31.60101959800005],[19.948008660000056,31.645086981000073],[19.94434655000012,31.661444403000072],[19.926931186000047,31.69916413000004],[19.920664910000085,31.717718817000048],[19.917246941000084,31.75922272300005],[19.91968834700012,31.80467357000003],[19.934336785000113,31.888413804000066],[19.948008660000056,31.925970770000045],[19.94581139400009,31.93598053600004],[19.941742384000122,31.946926174000108],[19.9401147800001,31.957749742000086],[19.944590691000144,31.967515367000143],[19.957204623000052,31.982733466000127],[20.04802493600002,32.14606354400013],[20.071543816000087,32.17641836100009],[20.261729363000057,32.339544989000046],[20.277191602000073,32.36082591400012],[20.325450066000116,32.40981679900008],[20.345713738000114,32.41990794500006],[20.385508660000113,32.434637762000136],[20.403330925000088,32.4473330750001],[20.416758660000085,32.459458726],[20.56267337300011,32.557847398000035],[20.796560092000075,32.64301178600002],[20.934092644000145,32.72260163000009],[21.05095462300011,32.7722842470001],[21.09669030000012,32.78107330900008],[21.28679446700005,32.771144924000055],[21.331879102000098,32.774644273000064],[21.41480553500011,32.79340241100002],[21.454600457000108,32.812567450000074],[21.608653191000144,32.930731512000136],[21.62322024800008,32.936753648000035],[21.67172285200007,32.93988678600001],[21.71631920700014,32.95038483300007],[21.74366295700011,32.930853583000015],[21.787445509000065,32.91596100500004],[21.83611087300011,32.90656159100013],[21.877452019000142,32.903225002000084],[22.096202019000117,32.923081773],[22.10132897200012,32.92641836100003],[22.111827019000117,32.94090403900009],[22.116709832000083,32.94415924700012],[22.13884524800005,32.94757721600004],[22.149587436000076,32.94794342700004],[22.161387566000144,32.94415924700012],[22.169444207000083,32.93821849200008],[22.171071811000104,32.93292877800013],[22.171071811000104,32.926255601000065],[22.175059441000087,32.9162458350001],[22.20679772200012,32.88812897300007],[22.247325066000144,32.88084544500009],[22.33961022200009,32.882147528000075],[22.37916100400014,32.870347398],[22.477305535000113,32.807074286000045],[22.496755405000044,32.79730866100002],[22.51384524800008,32.79096100500007],[22.53223717500012,32.78754303600007],[22.578868035000113,32.78461334800005],[22.812510613000143,32.72451406500005],[22.86670983200011,32.69415924700007],[22.88453209700009,32.6897647160001],[22.89584394600007,32.68817780200007],[22.92920983200014,32.67670319200001],[22.942637566000144,32.675034898],[22.976898634000094,32.67670319200001],[22.99968509200005,32.67055898600006],[23.041351759000094,32.65253327000002],[23.086436394000145,32.646470445000034],[23.1061304050001,32.639837958000044],[23.11866295700011,32.62933991100007],[23.120941602000073,32.61522044500006],[23.115244988000086,32.60492584800005],[23.09791100400011,32.58665599200006],[23.0944116550001,32.577378648],[23.10385175900012,32.51634349200012],[23.113291863000143,32.50079987200013],[23.12867272200009,32.48847077000008],[23.14893639400009,32.47809479400007],[23.140961134000037,32.4585635440001],[23.12842858200014,32.39549388200001],[23.108653191000116,32.402329820000034],[23.112152540000096,32.41193268400011],[23.109873894000117,32.42031484600005],[23.10336347700013,32.428168036000045],[23.0944116550001,32.43646881700002],[23.079112175000148,32.354437567000105],[23.080577019000117,32.3340518250001],[23.095550977000045,32.32355377800004],[23.15650475400014,32.30353424700007],[23.178965691000144,32.29995351800011],[23.19507897200012,32.29165273600003],[23.214528842000107,32.272406317000076],[23.230804884000065,32.25063711100003],[23.2435001960001,32.22060781500008],[23.257334832000108,32.213771877000056],[23.27320397200012,32.20970286700009],[23.28541100400011,32.20376211100005],[23.29322350400011,32.19232819200002],[23.302500847000143,32.1707217470001],[23.312185092000107,32.16274648600006],[23.31039472700013,32.17926666900004],[23.29908287900014,32.22418854400004],[23.318369988000086,32.21784088700011],[23.3619897800001,32.21710846600007],[23.37086022200012,32.21401601800011],[23.398936394000145,32.19403717700004],[23.405284050000063,32.190659898],[23.531097852000045,32.181382554000066],[23.66968834700009,32.183254299000026],[23.84034264400009,32.14911530200001],[23.998708530000044,32.093898830000086],[23.975271030000073,32.07420482000006],[23.970713738000114,32.06659577000002],[23.97877037900014,32.06224192900004],[24.00489342500009,32.05292389500008],[24.067881707000108,32.01117584800005],[24.090668165000068,32.00576406500008],[24.28093509200002,32.007554429000066],[24.546071811000076,31.991441148],[24.63624108200008,32.01487864800009],[24.658539259000037,32.0286319030001],[24.670258009000122,32.032416083000044],[24.710622592000078,32.0255801450001],[24.71859785200013,32.02753327000005],[24.726328972000147,32.031317450000074],[24.733734571000127,32.03314850500007],[24.741872592000046,32.02899811400002],[24.745860222000115,32.02619049700007],[24.75806725400011,32.01996491100002],[24.77198326900009,32.01675039300005],[24.791758660000113,32.00775788000004],[24.824392123000052,32.002997137000136],[24.86540774800005,31.989325262000108],[24.981700066000144,31.967922268000056],[25.017914259000065,31.949042059000103],[25.03337649800008,31.9163272160001],[25.024424675000148,31.87661367400008],[25.02222741000008,31.854681708000072],[25.029551629000082,31.836900132000064],[25.06373131600006,31.804103908000055],[25.116872592000078,31.73798248900007],[25.122080925000148,31.720851955000025],[25.136729363000086,31.692572333000072],[25.156260613000143,31.66307200700001],[25.15251712300011,31.659816799000055],[25.150889519000085,31.656480210000044],[25.08842167100005,31.6135236610001],[25.06041304500013,31.579365539000037],[25.023722778000064,31.49440948500003],[24.86125207500004,31.38035959900014],[24.8489530840001,31.348630270000026],[24.848643025000115,31.3120433550001],[24.858564900000086,31.227914124000048],[24.859495076000144,31.145955303000076],[24.882646118000135,31.03908844000003],[24.88957076000011,31.018831279000036],[24.92460738100004,30.95676788300005],[24.937629842000092,30.905763245000085],[24.981244751000133,30.825406392000072],[24.994887329000047,30.785098776000012],[24.988582804000117,30.750578919000134],[24.973596639000046,30.716265768000117],[24.961194296000087,30.676268210000046],[24.950652303000112,30.621232808000084],[24.9203699140001,30.552348125000066],[24.91706262200009,30.532452698000068],[24.90765751100014,30.498656312000094],[24.888123820000118,30.464343160000052],[24.829729452000066,30.3875519820001],[24.799447062000127,30.360835266000034],[24.77236861200009,30.331017965000058],[24.7628601480001,30.317065328000037],[24.74611698400014,30.282752177000134],[24.70467248500009,30.217898254000087],[24.68865279200014,30.182758280000055],[24.688342732000137,30.144155986000072],[24.697334432000105,30.122606913000112],[24.725549764000046,30.078371888000106],[24.811642701000068,29.890889791000063],[24.81619022600009,29.868410543000035],[24.814949992000066,29.848566793000145],[24.798206827000087,29.796425273000096],[24.80492476400013,29.754799907000088],[24.85618778400007,29.679481506000112],[24.870657185000084,29.63834706600005],[24.870553833000145,29.614007467000107],[24.86156213400011,29.54155710900005],[24.86383589700003,29.502903137000114],[24.87375777200012,29.46833160400004],[24.956646769000145,29.292683411],[24.974320109000047,29.238939922000014],[24.981244751000133,29.18137237600007],[24.981244751000133,29.057917379000028],[24.981244751000133,28.890175680000056],[24.981244751000133,28.49154368100005],[24.981244751000133,28.09670061300011],[24.981244751000133,28.018549296000028],[24.981244751000133,27.66650279400011],[24.981244751000133,27.627823792000072],[24.981244751000133,27.475455831000062],[24.981244751000133,27.13803456700009],[24.981244751000133,27.049239432000064],[24.981244751000133,26.85996368500011],[24.981244751000133,26.664523418000044],[24.981244751000133,26.372706604000143],[24.981244751000133,26.080838115000034],[24.981244751000133,25.78896962500005],[24.981244751000133,25.497256165000064],[24.981244751000133,25.205439352000067],[24.981244751000133,24.913570862000086],[24.981244751000133,24.62172821100009],[24.981244751000133,24.32996307400012],[24.981244751000133,24.038146261000122],[24.981244751000133,23.746277771000024],[24.981244751000133,23.454435120000113],[24.981244751000133,23.162669983000058],[24.981244751000133,22.870801494000144],[24.981244751000133,22.578984680000048],[24.981244751000133,22.28716786700008],[24.981244751000133,21.995351054000082],[24.981244751000133,21.870810852000144],[24.98114139800009,21.746167298000074],[24.98114139800009,21.621575419000123],[24.98114139800009,21.497035218000093],[24.98114139800009,21.372443339000114],[24.981038045000073,21.247851461000067],[24.980934692000062,21.123311260000037],[24.980934692000062,20.998719381000086],[24.980934692000062,20.874127503000036],[24.98083134000012,20.74953562400009],[24.98083134000012,20.624943746000042],[24.98083134000012,20.50035186800008],[24.98072798700008,20.405318909000073],[24.980624634000062,20.31023427300002],[24.980624634000062,20.215097962000073],[24.98052128100005,20.12001332600005],[24.98052128100005,20.008390827000085],[24.98052128100005,20.00206187000009],[24.979591105000083,20.000511576000065],[24.97866092900003,19.999012960000073],[24.97773075300009,19.997462667000036],[24.97680057800002,19.995964050000026],[24.974526815000104,19.995653992000143],[24.972356405000113,19.995421448000087],[24.970185994000133,19.995188904000116],[24.968015584000057,19.99495636000006],[24.867246542000146,19.99495636000006],[24.72131229700011,19.995033875000075],[24.59914921000012,19.995059713000074],[24.47460900900009,19.995188904000116],[24.340870402000036,19.995292257000045],[24.22790572100004,19.995318095000073],[24.14243290200011,19.995421448000087],[23.981305786000036,19.995421448000087],[23.981305786000036,19.87059702500008],[23.981305786000036,19.74582428000008],[23.981305786000036,19.62102569600006],[23.981305786000036,19.496123759000024],[23.857799113000084,19.557179464000114],[23.734292440000047,19.618131816000073],[23.610785767000067,19.679110006000144],[23.487279093000012,19.740165710000042],[23.363772420000146,19.801169739000017],[23.240162394000066,19.86209625300006],[23.11675907400013,19.923151958000062],[22.993149047000145,19.984104309000116],[22.869642375000097,20.04510833800009],[22.746135702000032,20.106060690000046],[22.62262902800009,20.167090556000034],[22.49912235500011,20.228094584000104],[22.37561568200007,20.289124451000077],[22.252109009,20.350076803000064],[22.128602335000064,20.411054992000114],[22.005095662000084,20.472033183000093],[21.88148563700011,20.533063049000077],[21.75808231600007,20.593989563000036],[21.634472290000105,20.654967754000097],[21.510965617000124,20.71604929600008],[21.387458944000084,20.777027486000065],[21.263952270000118,20.838005677000123],[21.140342244000124,20.89903554300011],[21.0169389240001,20.95996205700007],[20.893328898000107,21.020940247000024],[20.769925578000084,21.081970113000096],[20.646418904000114,21.142896627000056],[20.522808879000134,21.20392649300004],[20.399405558000126,21.265008036000037],[20.275795532000128,21.325934550000085],[20.152288859000066,21.38691274100006],[20.028782186000115,21.44794260700004],[19.90527551300005,21.50886912100009],[19.781665486000065,21.56989898700007],[19.658262166000043,21.63087717800005],[19.53465214000005,21.6918553670001],[19.411145467000097,21.752885234000104],[19.287638793000042,21.813915100000088],[19.185837030000073,21.86417705900007],[19.16413212100008,21.874893290000045],[19.040728801000057,21.93587148100002],[18.917118774000073,21.996849671000092],[18.79361210100012,22.057879537000076],[18.670105428000056,22.118806051000035],[18.546598755000105,22.179835917000105],[18.422988728000117,22.24086578400008],[18.29958540800007,22.301843974000064],[18.175975383000093,22.36282216500012],[18.05246870900004,22.42385203100011],[17.928962036000087,22.48477854500007],[17.805455363000107,22.545756734000037],[17.68194869000007,22.606786601000096],[17.5584420160001,22.66776479100008],[17.434831991000124,22.728794658000055],[17.3114286710001,22.78979868600004],[17.187921997000046,22.850751038000084],[17.064311971000052,22.911755067000087],[16.94090865000004,22.97273325600014],[16.81729862500012,23.0336597700001],[16.693791951000065,23.094663799000074],[16.570285278000114,23.155719503000057],[16.446778605000073,23.21672353200003],[16.323168579000082,23.277727560000102],[16.19976525900006,23.338705750000088],[16.076155233000065,23.399632264000047],[15.985101359000112,23.44471995100008],[15.964637492000065,23.442213644000105],[15.920195760000098,23.422033997000113],[15.862524862000015,23.39593739800003],[15.80485396300014,23.369789124000107],[15.747183064000069,23.343640849000025],[15.689615520000132,23.317518412000112],[15.63194462100006,23.29134430000002],[15.574273722000099,23.265196025000108],[15.516499471000088,23.23904775000011],[15.458828572000128,23.212899476000104],[15.401157674000073,23.186751201000078],[15.343486775000088,23.160577087000092],[15.285815878000106,23.13445465200007],[15.228144979000149,23.108358052000085],[15.170370728000135,23.082261454000104],[15.112906535000034,23.056113180000096],[15.055235636000077,23.0299649050001],[14.997461385000063,23.003816630000074],[14.979909027000131,22.9956637600001],[14.97927128000012,22.99536753400008],[14.979167928000093,22.995315857000065],[14.808015584000087,22.90888702400008],[14.637069947000041,22.82253570600002],[14.46602095600008,22.73618438800008],[14.294868612000073,22.649833069000096],[14.231720011000107,22.617948711000054],[14.2162170820001,22.6162950640001],[14.201644328000043,22.62321970600007],[14.156169067000091,22.660736796000066],[14.03100874800009,22.76370208700004],[13.906055135000116,22.866615703],[13.780894816000112,22.969632671000085],[13.655786173000136,23.07262379900007],[13.599562215000049,23.119029236000102],[13.482256713000083,23.17967153000006],[13.380660848000076,23.20238332200003],[13.292397502000084,23.22209788],[13.204134155000105,23.241709087000032],[13.115870809000029,23.261449483000092],[13.027607462000049,23.28113820400003],[12.9394474690001,23.30082692500008],[12.85118412300011,23.320489808000048],[12.763024129000144,23.340178528000077],[12.674657430000138,23.359893087000046],[12.586497437000105,23.379581808000097],[12.498337443000139,23.399244690000046],[12.409970744000134,23.418881734000053],[12.32181075000008,23.43862213200012],[12.233650757000133,23.45828501400007],[12.145284058000101,23.477947897],[12.057020711000119,23.49761077900007],[11.96886071700007,23.51735117600012],[11.892379598000105,23.660055644000096],[11.82230635600007,23.790641989000076],[11.710140444000075,24.000137321000096],[11.708618205000079,24.00298044800007],[11.636477905000078,24.13764923100007],[11.56712813300004,24.266840312000056],[11.541393270000128,24.29751027500009],[11.508630412000029,24.313814189000112],[11.467240356000048,24.32633855800006],[11.149995971000095,24.422334697000107],[10.911354207000045,24.49450083400012],[10.720668172000046,24.552300924000118],[10.69906742300006,24.55612498000005],[10.677363322000076,24.553851217000044],[10.56677575700013,24.51646331800009],[10.450193726000066,24.476930848000052],[10.410506225000063,24.47328765900005],[10.391799357000082,24.47997975700008],[10.260334513000144,24.57664052400014],[10.242247762000146,24.595114848000065],[10.229742065000067,24.629944763000108],[10.212172079000082,24.72285898900006],[10.19336185700007,24.749937440000025],[10.044533732000048,24.829622498000077],[10.032028035000023,24.856339213000126],[10.029960978000076,24.995064596000105],[10.025516805000052,25.13639963800003],[10.02138269000005,25.26801951100009],[10.007946818000079,25.331426493],[9.969499552000059,25.3954019170001],[9.816744019000055,25.58846506800006],[9.693960816000072,25.74349436400007],[9.541308634000103,25.936350810000075],[9.401162150000118,26.113394267000075],[9.377804403000084,26.16894643200007],[9.402505737000098,26.21617869100001],[9.416458374000086,26.232250062000077],[9.434751831000142,26.27198923800006],[9.468858276000105,26.301031393000073],[9.477643269000112,26.31555247000011],[9.48136397200011,26.332605693000033],[9.482604207000065,26.352552795000065],[9.83576094500009,26.504223125000067],[9.854571167000103,26.524376933000042],[9.896325725000054,26.652792867000045],[9.894051961000057,26.673980205000106],[9.882579793000017,26.701782125000047],[9.88547367400011,26.736612041000114],[9.910588419000135,26.843117168000045],[9.906661010000079,26.85748321600005],[9.890848022000084,26.869575501000043],[9.846096232000122,26.89195139600011],[9.835140828000133,26.90099477200007],[9.825529012000118,26.920580139],[9.806098674000054,27.025121562],[9.7213493240001,27.291875306000094],[9.72186608900006,27.308463440000082],[9.726516968000112,27.324689840000104],[9.743053426000102,27.36411895800012],[9.756282592000105,27.423030091000015],[9.77054528800008,27.444217428000087],[9.813643432000104,27.48648874900007],[9.821601603000147,27.505686544000067],[9.811679728000058,27.52653798500006],[9.797106974000087,27.54891388000004],[9.793903036000131,27.569739482000074],[9.818501017000102,27.585733337000136],[9.846612996000147,27.599298401000112],[9.863356160000109,27.619245504000045],[9.931273724000022,27.818641968000094],[9.93425622500007,27.82739817300009],[9.93590987100012,27.86672393900008],[9.789872273000128,28.209442037000088],[9.77695316600011,28.267578023000084],[9.827275804000065,28.618646663000018],[9.851263875000114,28.785995992000036],[9.848266642000112,28.975726013000095],[9.8261491290001,29.128533224000105],[9.746929158500109,29.368428141500146],[9.66770918800006,29.60832305900007],[9.54968021600007,29.802316386000086],[9.42172937,29.96871449800011],[9.369486582000093,30.022793757000077],[9.310004923000065,30.08436635400003],[9.286543823000073,30.11712921200012],[9.519707885000114,30.228905335000093],[9.743466838000131,30.331328024000126],[9.772922404000042,30.33809763600007],[9.845786174000125,30.342283427000098],[9.871314331000065,30.35515085900011],[9.995647827000141,30.494522196000077],[10.101171101000118,30.641696676000063],[10.192224976000148,30.73125193300009],[10.25392663600013,30.84178782100011],[10.269739624000124,30.882147115000095],[10.270153036000124,30.915633443000072],[10.245038289000092,30.98570668600013],[10.240594116000096,31.02115671900015],[10.246175171000118,31.059552307000075],[10.244831584000053,31.078155823000145],[10.213205607000049,31.135361633000084],[10.18271651200007,31.240781556000027],[10.10809574400011,31.411830547000108],[10.106235392000087,31.42919382800002],[10.116880737000088,31.49440948500003],[10.132590373000141,31.51756052700003],[10.196462442000097,31.578590393000095],[10.263951863000045,31.68049631800011],[10.315421590000113,31.71584299700001],[10.427766154000068,31.71460276300007],[10.482543172000135,31.73310292500008],[10.498872924000068,31.744316711000035],[10.513549031000053,31.75702911400009],[10.525537963000119,31.772066956000085],[10.542384480000095,31.80663848900008],[10.584552449000057,31.840279846000012],[10.597574910000105,31.873507792000055],[10.605946492000072,31.953606263],[10.628477417000084,31.974121806000085],[10.647287638000108,31.971951396000094],[10.665271036000092,31.963218079000114],[10.683564493000063,31.957016907000135],[10.703098185000073,31.96218455000013],[10.736584513000054,31.98538726900006],[10.77286136900011,32.00450754900004],[10.805624227000123,32.03236114500001],[10.845931844000063,32.11178782200008],[10.873217,32.13669586200007],[11.182341254000079,32.26222336900008],[11.44403487100007,32.36849049900013],[11.513901408000066,32.40799713100005],[11.52608543700009,32.41786270300011],[11.54635420700009,32.434274598000115],[11.564130900000121,32.46548716300009],[11.560616903000067,32.50757761600002],[11.537362508000058,32.54351857500009],[11.47038985200004,32.599277446000144],[11.449925985000078,32.63795725500006],[11.449202514000092,32.693018494000114],[11.463775268000063,32.798464254000066],[11.456540567000076,32.902101339000126],[11.474420613000033,32.96987498000004],[11.474937378000078,33.02584055600005],[11.47741784700014,33.04121429500012],[11.506046590000038,33.13637644500008],[11.505111802985226,33.181225314728124],[11.505137566000144,33.18121979400007],[11.525889519000145,33.176947333000044],[11.560231967000107,33.16592031500011],[11.574961785000085,33.15794505400006],[11.587657097000147,33.13231028900009],[11.603037957000083,33.121486721000075],[11.63575280000012,33.10871002800005],[11.756602410000141,33.09251536700008],[11.793467644000117,33.08075592700001],[11.772959832000083,33.09935130400001],[11.707774285000141,33.11717357000009],[11.691091342000107,33.135972398000035],[11.739268425000148,33.112982489000046],[11.847015821000127,33.08283112200013],[12.080739780000044,32.95783112200007],[12.122406446000099,32.92133209800011],[12.160655144000144,32.91168854400004],[12.224864129000082,32.87592194200002],[12.303884311000104,32.843085028000104],[12.348317905000016,32.83266836100003],[12.729828321000127,32.79857005400004],[12.82439212300005,32.80434804900008],[13.074473504000082,32.866359768000024],[13.115489129000082,32.882147528000075],[13.147715691000114,32.90399811400002],[13.164724155000071,32.91274648600009],[13.187754754000139,32.9162458350001],[13.257090691000116,32.91864655200004],[13.351735873000107,32.904242255000064],[13.363129102000073,32.89956289300005],[13.373545769000145,32.89203522300008],[13.571462436000045,32.802801825000046],[13.616953972000118,32.79340241100002],[13.787119988000143,32.79962799700007],[13.830332879000139,32.79409414300005],[13.915293816000085,32.772772528000075],[13.99122155000012,32.74457428600002],[14.175547722000147,32.717678127000056],[14.185313347000088,32.71450429900008],[14.20337975400011,32.70034414300005],[14.209320509000122,32.69721100500007],[14.22632897200009,32.69090403900012],[14.26246178500014,32.660305080000114],[14.317149285000085,32.63043854400013],[14.404063347000063,32.566839911000045],[14.449392123000083,32.525376695000034],[14.469493035000113,32.51902903900012],[14.631602410000111,32.4956729190001],[14.647634311000104,32.488267320000034],[14.66293379000007,32.476752020000106],[14.706716342000021,32.456284898000035],[14.726817254000082,32.4507510440001],[14.91114342500012,32.443915106000105],[15.114756707000083,32.4127871770001],[15.160004102000128,32.39866771000007],[15.181976759000037,32.39549388200001],[15.195974155000101,32.389797268000024],[15.233246290000066,32.3471133480001],[15.26970462300005,32.32884349200012],[15.283050977000045,32.317287502000084],[15.292165561000045,32.280910549000026],[15.300791863000143,32.26080963700008],[15.322601759000094,32.22418854400004],[15.364512566000085,32.174709377000084],[15.370453321000126,32.15908437700011],[15.368662957000138,32.138006903000075],[15.35962975400011,32.1021182310001],[15.356862826000084,32.061672268000045],[15.355235222000145,32.03851959800002],[15.36109459700009,31.965318101000065],[15.370453321000126,31.929388739000075],[15.49040774800005,31.66486237200007],[15.514414910000111,31.628363348000047],[15.622813347000116,31.49725983300007],[15.687510613000143,31.437811591000127],[15.761485222000116,31.388128973000022],[16.044606967000107,31.275539455000082],[16.358653191000116,31.227118231000073],[16.72803795700014,31.223822333000044],[16.941905144000145,31.183294989000046],[17.16032962300011,31.11880117400006],[17.33057701900009,31.08649323100013],[17.365896030000044,31.086615302000013],[17.375010613000114,31.083075262000108],[17.3820093110001,31.07876211100003],[17.418630405000044,31.06216054900005],[17.447276238000086,31.03872304900008],[17.457774285000056,31.03335195500003],[17.466807488000086,31.029974677],[17.613942905000044,30.9924990910001],[17.691742384000122,30.959662177000094],[17.7760522800001,30.935207424000055],[17.84864342500012,30.923651434000107],[17.861664259000094,30.91364166900004],[17.889170769000117,30.877915757],[17.907481316000087,30.863511460000037],[17.92676842500012,30.855169989000075],[18.016856316000087,30.837876695000062],[18.17530358200011,30.786078192000048],[18.20834394600007,30.769232489000043],[18.235687696000127,30.746812242000146],[18.324229363000143,30.65688711100006],[18.568369988000143,30.500067450000042],[18.62330162900014,30.445746161000013],[18.653168165000125,30.42230866100004],[18.719248894000117,30.391506252000084],[18.76099694100006,30.384222723000054],[18.780528191000144,30.375921942000073],[18.92595462300008,30.29336172100008],[18.96802819100014,30.27773672100011],[19.05681399800011,30.266180731000077],[19.146006707000083,30.264715887000104],[19.239756707000083,30.27399323100008],[19.291677280000073,30.287054755000042]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Lesotho","sov_a3":"LSO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lesotho","adm0_a3":"LSO","geou_dif":0,"geounit":"Lesotho","gu_a3":"LSO","su_dif":0,"subunit":"Lesotho","su_a3":"LSO","brk_diff":0,"name":"Lesotho","name_long":"Lesotho","brk_a3":"LSO","brk_name":"Lesotho","brk_group":null,"abbrev":"Les.","postal":"LS","formal_en":"Kingdom of Lesotho","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lesotho","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":8,"pop_est":2130819,"gdp_md_est":3293,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"LT","iso_a2":"LS","iso_a3":"LSO","iso_n3":"426","un_a3":"426","wb_a2":"LS","wb_a3":"LSO","woe_id":23424880,"woe_id_eh":23424880,"woe_note":"Exact WOE match as country","adm0_a3_is":"LSO","adm0_a3_us":"LSO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"LSO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[28.980845581000064,-28.90903533899998],[28.995418335000096,-28.9083118689999],[29.018982788000102,-28.913996275999935],[29.040531861000062,-28.92298797599997],[29.04967858900005,-28.933013203999906],[29.049988647000134,-28.952650248999944],[29.0557764080001,-28.9653626499999],[29.06900557500009,-28.97332082099996],[29.091536499000114,-28.97859181699989],[29.12595300300009,-28.992441100999955],[29.208428589000103,-29.068922220999937],[29.241398153000034,-29.077707213999915],[29.28139571100013,-29.078637389999884],[29.311781453000094,-29.089799498999913],[29.316845744000148,-29.14736704499994],[29.328059530000072,-29.159355976999905],[29.343717489000138,-29.169794616999933],[29.3574634200001,-29.18333384199992],[29.36500817800004,-29.200283711999926],[29.37596358200011,-29.235527037999905],[29.4038688550001,-29.26870330799991],[29.41399743700003,-29.290304056999968],[29.41492761300009,-29.29640187599993],[29.41399743700003,-29.311698098999894],[29.415030965000142,-29.31893279999987],[29.41947513800005,-29.325030618999918],[29.43280765700007,-29.336606139999958],[29.43590824400007,-29.342393900999937],[29.43223921700007,-29.356966654999894],[29.413739054000075,-29.38011769599998],[29.411878703000074,-29.395827330999865],[29.41255049700004,-29.410296732999896],[29.4078996180001,-29.42145884199992],[29.399528036000106,-29.43034718899993],[29.38815922000003,-29.437788594999855],[29.361804240000083,-29.447917174999915],[29.332038615000155,-29.455978698999896],[29.303823282000106,-29.46683074999994],[29.28273929800008,-29.48564097099995],[29.27550459800011,-29.506621601999953],[29.27519872500011,-29.52829489199989],[29.275142863000042,-29.53225311299993],[29.282015828000112,-29.556127623999913],[29.29627852400006,-29.571630553999924],[29.279948771000132,-29.581449075999984],[29.278398478000096,-29.597055358999924],[29.27860518400007,-29.613591817999914],[29.2673397210001,-29.62609751399992],[29.19034183700006,-29.646871438999966],[29.161299682000077,-29.666921894999913],[29.14507328300007,-29.691933288999905],[29.132412557000123,-29.7202519729999],[29.11375736500005,-29.75012095099991],[29.11359944400004,-29.752850734999924],[29.11231042500006,-29.775132344999918],[29.10631595900014,-29.801590677999908],[29.105799194000095,-29.825568541999914],[29.12037194800007,-29.843448587999973],[29.13298099800008,-29.852026874999908],[29.135771525000052,-29.859158222999937],[29.13515140800007,-29.868046569999958],[29.137321818000064,-29.88210255899989],[29.148277221000058,-29.9013261919999],[29.150654337000077,-29.911144713999875],[29.144246460000144,-29.9197230029999],[29.132774292000136,-29.924683939999852],[29.10631595900014,-29.931505227999907],[29.094120321000048,-29.9362594599999],[29.01578602900011,-29.97858746299995],[28.976298055000115,-29.999924824999894],[28.860026082000015,-30.066380716999944],[28.795637248000045,-30.089428404999907],[28.72949141400005,-30.101830749999888],[28.63967777500005,-30.131493020999937],[28.605881389000075,-30.131286315999887],[28.55730554200008,-30.11495656299985],[28.540562377000125,-30.1133029169999],[28.524335978000124,-30.11671356199993],[28.48092777500011,-30.139347839999886],[28.456226441000098,-30.146995950999955],[28.40796065300009,-30.140898131999904],[28.383879436000143,-30.14420542399989],[28.364087362000078,-30.1592949419999],[28.355596048000052,-30.173240026999892],[28.338662557000077,-30.201049499999936],[28.323004598000097,-30.21469207699994],[28.313702840000076,-30.220789895999896],[28.30130049600012,-30.23649953199988],[28.294375854000123,-30.242493997999897],[28.284712362000107,-30.24621470099991],[28.25530847200011,-30.249935403999924],[28.237015015000054,-30.25634328199996],[28.216034383000135,-30.26740203899996],[28.200634807000057,-30.28249155599987],[28.198464396000077,-30.301095072999928],[28.209419800000063,-30.314634297999902],[28.224095907000045,-30.320525410999906],[28.2357747800001,-30.32941375699991],[28.238461955000048,-30.35225473999992],[28.231433960000118,-30.373855488999894],[28.21820479300004,-30.387394713999882],[28.133248739000067,-30.445375670999923],[28.125393921000125,-30.457261250999945],[28.127564331000112,-30.465116068999887],[28.13924320500007,-30.48268605499996],[28.142447143000137,-30.492607930999952],[28.141206909000115,-30.500772805999887],[28.1242570390001,-30.54728159599992],[28.120846394000097,-30.553379414999966],[28.112836548000104,-30.562474466999944],[28.104878378000137,-30.56836557999993],[28.096351766000026,-30.572396341999934],[28.088031861000076,-30.57756398499994],[28.08157230600011,-30.586865742999876],[28.075836223000067,-30.607019551999937],[28.076508016000044,-30.62324595099994],[28.07898848500011,-30.63926564499991],[28.078781779000053,-30.658799335999912],[28.054700562000107,-30.649704284999938],[27.93656823800012,-30.64081593899992],[27.915587606000116,-30.634924824999924],[27.895640503000095,-30.626243183999872],[27.88613204000012,-30.619731953999903],[27.878277221000076,-30.612910663999937],[27.869802287000084,-30.60712290499988],[27.85822676600011,-30.603712259999938],[27.849545125000077,-30.60495249399989],[27.830424846000085,-30.613117370999905],[27.820399617000135,-30.614564310999892],[27.77843835400006,-30.609706725999967],[27.7436084390001,-30.60030161499992],[27.71353275600012,-30.583765156999927],[27.65953088300006,-30.530538431999958],[27.59860437000009,-30.490334167999933],[27.592299845000067,-30.481859232999938],[27.590646200000034,-30.4728675329999],[27.59012943500008,-30.46387583399986],[27.586822144000077,-30.454987486999936],[27.562740926000057,-30.425531920999926],[27.536592651000035,-30.40320770199987],[27.53336382400005,-30.393424839999923],[27.529668009000144,-30.38222707099996],[27.493184448000136,-30.367654316999904],[27.47747481300007,-30.35628550199992],[27.466726115000142,-30.341092630999892],[27.459388062000073,-30.31659800199994],[27.452101684000066,-30.31008677099996],[27.436030314000103,-30.309880065999906],[27.414842977000063,-30.317528176999883],[27.407814982000048,-30.318561705999866],[27.39763472500007,-30.3172181189999],[27.377707729000118,-30.31232376899996],[27.377015829000072,-30.31215382899992],[27.366163778000043,-30.311016946999914],[27.367817424000094,-30.295410664999878],[27.345544881000137,-30.241563821999947],[27.34368452900011,-30.212935078999877],[27.365543660000068,-30.165806172999865],[27.380529825000053,-30.152577005999955],[27.38135664900005,-30.14265513099988],[27.3719515380001,-30.13593719499994],[27.356655314000136,-30.132216491999937],[27.33443444800011,-30.132216491999937],[27.32203210400013,-30.134800312999943],[27.312782023000125,-30.13159637399987],[27.30043135600007,-30.11495656299985],[27.29371341900014,-30.10090057399992],[27.280174194000065,-30.053461607999935],[27.26591149900008,-30.033307800999864],[27.21795577000006,-29.998064472999886],[27.19883549000008,-29.978530781999975],[27.171350065000098,-29.92149529799991],[27.088764690000062,-29.75012095099991],[27.088661336000115,-29.75012095099991],[27.088661336000115,-29.75001759899989],[27.080134725000104,-29.735134785999946],[27.050989217000105,-29.696790873999927],[27.037656698000063,-29.686455586999926],[27.024530884000114,-29.68004770899998],[27.01021651200011,-29.66991912799993],[27.002154989000132,-29.666508483999905],[27.01445398000007,-29.641703795999955],[27.01486739100008,-29.62558074999988],[27.022412150000036,-29.61617563899992],[27.032954142000104,-29.61617563899992],[27.04235925300014,-29.628061218999857],[27.049180542000098,-29.620516458999898],[27.05682865400007,-29.60439341199992],[27.062203002000047,-29.600155944999884],[27.07202152500011,-29.599949238999912],[27.07512211100007,-29.60511688299992],[27.077705932000068,-29.611318053999906],[27.085870809000085,-29.614418639999936],[27.09041833500001,-29.61162811299989],[27.122767782000096,-29.581759134999885],[27.128142130000068,-29.57855519599991],[27.15635746300012,-29.568633320999904],[27.1857096760001,-29.565946145999888],[27.195838257000048,-29.562638854999886],[27.2137183020001,-29.55406056699985],[27.241830281000144,-29.54899627699997],[27.263120972000138,-29.541141459999935],[27.295677124000093,-29.524398294999894],[27.300306527000146,-29.5201196039999],[27.302498413000134,-29.518093769999965],[27.30911299600012,-29.509205423999955],[27.314073934000078,-29.498663430999898],[27.316037638000097,-29.48719126399989],[27.32141198700006,-29.4835739139999],[27.344873088000043,-29.48450408999994],[27.350247436000103,-29.480266621999903],[27.35448490400006,-29.462283222999915],[27.365543660000068,-29.44667694099988],[27.407091512000136,-29.406886087999865],[27.413706095000066,-29.40254526799988],[27.417633504000037,-29.396550801999947],[27.419080444000116,-29.3838383989999],[27.416186564000043,-29.37598358199996],[27.410295451000106,-29.369782408999882],[27.406264689000125,-29.363994649999906],[27.408641805000087,-29.35707000699992],[27.417633504000037,-29.35066212999989],[27.426831909000015,-29.347974954999955],[27.436133667000036,-29.343530781999856],[27.445848837000085,-29.331955260999905],[27.448329305000073,-29.322963561999952],[27.450293009000088,-29.299709166999932],[27.453290243000108,-29.291647643999852],[27.4698783770001,-29.28244923899986],[27.510686378000088,-29.270752951999953],[27.518919311000047,-29.268393248999924],[27.52889286300004,-29.260951842999916],[27.5272392170001,-29.24937632299986],[27.520986369000095,-29.22612192799994],[27.521503133000124,-29.21651011099993],[27.528169393000038,-29.207621764999914],[27.538246297000082,-29.202350768999892],[27.54847823100007,-29.198940124999865],[27.555712932000116,-29.195426126999905],[27.612970418000085,-29.133827819999876],[27.635604696000144,-29.096620788999953],[27.634479067000086,-29.091040540999913],[27.63074711100012,-29.072539570999925],[27.63751672400005,-29.06571828199986],[27.644389689000036,-29.072539570999925],[27.649350626000082,-29.070885925999875],[27.65860070800008,-29.06675181099985],[27.664956909000125,-29.06571828199986],[27.65627526800006,-29.055796406999956],[27.643769572000053,-29.044530944999902],[27.639170369000112,-29.035332539999914],[27.655035034000036,-29.031508483999875],[27.6674890540001,-29.02665089899995],[27.679736369000125,-29.015075377999903],[27.699063355000078,-28.990580749999953],[27.70288741100012,-28.989340514999906],[27.707641642000112,-28.99068410199988],[27.711672404000097,-28.99099416099996],[27.713326049000074,-28.986860045999933],[27.713377726000058,-28.97952199299993],[27.71446293100007,-28.9764214069999],[27.716685018000078,-28.97321746899993],[27.71901045700011,-28.967843118999962],[27.720043986000093,-28.95978159499988],[27.720147339000107,-28.945932311999908],[27.72831221500013,-28.937974140999952],[27.744073527000097,-28.933219908999956],[27.75477054900011,-28.925468444999947],[27.747432495000112,-28.908621927999974],[27.861327352000075,-28.91544321699993],[27.887992391000125,-28.90490122499996],[27.89729414900006,-28.88981170599996],[27.903598673000147,-28.873998717999964],[27.91166019700006,-28.860769550999876],[27.926232951000117,-28.853431497999892],[27.945043173000016,-28.85549855599994],[27.956928751000135,-28.865110371999947],[27.96623050900007,-28.875652363999915],[27.977495972000042,-28.880716654999986],[28.00467777500012,-28.880716654999986],[28.013566121000053,-28.878442890999874],[28.014806355000076,-28.872551777999973],[28.01449629700008,-28.864800313999883],[28.018733765000036,-28.856842142999906],[28.056560913000112,-28.812503763999953],[28.100899292000065,-28.770852559999938],[28.104103231000124,-28.765064798999973],[28.13169844500004,-28.72930470799986],[28.145030965000046,-28.7147319539999],[28.154952840000135,-28.702329609999918],[28.164047892000042,-28.705430195999966],[28.218116094000067,-28.700652075999955],[28.230710490000035,-28.699539082999962],[28.250864298000096,-28.707393899999904],[28.273911987000076,-28.70956431099989],[28.297063029000068,-28.706877135999957],[28.317216837000046,-28.700055846999913],[28.336440470000067,-28.684656269999916],[28.363518921000033,-28.643625182999884],[28.38294926000009,-28.626468607999907],[28.40341312700005,-28.618923848999955],[28.542629435000094,-28.610758971999942],[28.562473185000073,-28.6065215039999],[28.619420614000063,-28.572415058999923],[28.634303426000084,-28.57076141399997],[28.653217,-28.583060403999923],[28.666549520000046,-28.59721974699997],[28.675644572000124,-28.613756204999955],[28.681742391000085,-28.633393249999894],[28.68897709200004,-28.674424336999948],[28.699519083000013,-28.68848032599996],[28.743857462000047,-28.689513854999944],[28.75863692200008,-28.700469257999927],[28.787679077000064,-28.748735045999933],[28.7959473060001,-28.75431610099986],[28.827159871000102,-28.759277037999908],[28.827936586000135,-28.75953432499996],[28.84369633000009,-28.76475474099989],[28.858785848000082,-28.772816262999882],[28.859013629000113,-28.7729904479999],[28.8728418370001,-28.783564960999893],[28.885657593000076,-28.7972075399999],[28.92586185700012,-28.859529316999936],[28.980845581000064,-28.90903533899998]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Morocco","sov_a3":"MAR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Morocco","adm0_a3":"MAR","geou_dif":0,"geounit":"Morocco","gu_a3":"MAR","su_dif":0,"subunit":"Morocco","su_a3":"MAR","brk_diff":0,"name":"Morocco","name_long":"Morocco","brk_a3":"MAR","brk_name":"Morocco","brk_group":null,"abbrev":"Mor.","postal":"MA","formal_en":"Kingdom of Morocco","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Morocco","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":9,"pop_est":34859364,"gdp_md_est":136600,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"MO","iso_a2":"MA","iso_a3":"MAR","iso_n3":"504","un_a3":"504","wb_a2":"MA","wb_a3":"MAR","woe_id":23424893,"woe_id_eh":23424893,"woe_note":"Exact WOE match as country","adm0_a3_is":"MAR","adm0_a3_us":"MAR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MAR.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-5.405490480999902,35.926519149000015],[-5.399322068999936,35.92446523600016],[-5.398858678935312,35.924503852782905],[-5.389717976999862,35.90204742499999],[-5.378400837999891,35.881686910000056],[-5.362897908999884,35.863806865000086],[-5.340725500097989,35.84736567903393],[-5.340728318999908,35.84735748900003],[-5.340809699999909,35.847113348000065],[-5.345692511999857,35.832586981000034],[-5.342355923999946,35.807684637000094],[-5.327381964999915,35.75584544499999],[-5.322621222999913,35.71377187700013],[-5.318755662999905,35.70172760600012],[-5.312652147999898,35.69245026200015],[-5.304798956999917,35.68520742400012],[-5.298898891999897,35.68431224200005],[-5.28189042899993,35.68650950700014],[-5.276763475999928,35.68520742400012],[-5.275380011999857,35.67938873900009],[-5.277455206999946,35.6642113300001],[-5.276763475999928,35.65790436400005],[-5.25999915299991,35.60472239800008],[-5.249419725999928,35.58462148600002],[-5.228423631999902,35.56850820500013],[-5.186187303999872,35.54376862200017],[-5.150786912999876,35.51609935100008],[-5.066273566999939,35.41746653900019],[-5.050852016999897,35.40753815300009],[-5.02635657499988,35.40399811400012],[-5.008208787999877,35.399237372000115],[-4.98851477799991,35.38788483300014],[-4.954701300999943,35.36245351800012],[-4.926503058999884,35.33030833500008],[-4.909331834999932,35.31452057500003],[-4.864979620999918,35.301988023000106],[-4.810617641999897,35.25999583500014],[-4.77049719999988,35.24103424700003],[-4.62828528599988,35.20538971600017],[-4.495432094999927,35.180772203000075],[-4.494252081999917,35.18056875200004],[-4.376047329999949,35.15184153900016],[-4.347645636999857,35.15013255400008],[-4.327056443999908,35.15477122599999],[-4.269398566999939,35.18488190300003],[-4.130604620999861,35.20477936400011],[-4.046701626999891,35.235907294000114],[-3.961293097999941,35.25043366100006],[-3.919341600999871,35.26683177300005],[-3.909413214999859,35.25527578300013],[-3.91253041899995,35.250918294000094],[-3.924672585999872,35.24755584700015],[-3.92952945299993,35.243819796000125],[-3.925046190999893,35.23784211400006],[-3.918467005999986,35.23089340100013],[-3.90390101899996,35.214172586000146],[-3.889257349999895,35.20840659900004],[-3.868560350999899,35.20734284100003],[-3.8408910799999,35.20538971600017],[-3.821929490999906,35.20677317900005],[-3.787464972999885,35.209214585],[-3.764800584999932,35.21845123900006],[-3.755523240999878,35.23639557500008],[-3.747141079999921,35.26365794499999],[-3.726226365999935,35.28229401200018],[-3.699574347999913,35.29083893400009],[-3.673573370999918,35.28790924700017],[-3.654204881999902,35.27700429900001],[-3.612212693999936,35.245347398000135],[-3.590972459999932,35.23330312700001],[-3.516021287999905,35.22353750200007],[-3.489328579999977,35.211004950000174],[-3.477406378999916,35.21067942900005],[-3.464751756999874,35.2118187520001],[-3.453846808999884,35.21161530200014],[-3.442860480999911,35.208644924000126],[-3.423247850999871,35.200832424000126],[-3.412912563999953,35.197943427],[-3.362049933999913,35.194525458],[-3.319243943999936,35.20180898600002],[-3.195139126999948,35.23822663000008],[-3.173939581999946,35.24909088700015],[-3.128651495999861,35.28856028900013],[-3.118031378999887,35.29413483300014],[-3.109730597999913,35.293646552000055],[-3.100412563999981,35.28953685100011],[-3.089670376999948,35.28628164300015],[-3.077056443999879,35.28790924700017],[-3.045399542999916,35.31443919500005],[-3.006255662999877,35.39354075700014],[-2.980824347999942,35.424505927000084],[-2.982818162999905,35.43500397300012],[-2.977935350999928,35.44330475500011],[-2.968576626999891,35.446437893000095],[-2.956654425999943,35.44122955900009],[-2.952219204999977,35.43305084800009],[-2.957590298999917,35.41583893400018],[-2.952951626999891,35.40399811400012],[-2.96304277299987,35.37348053600009],[-2.949777798999946,35.334947007],[-2.948109503999916,35.33026764500009],[-2.947824673999889,35.329779364],[-2.947817735929419,35.32976812504365],[-2.966920125999877,35.313866272000084],[-2.963767862999902,35.28621938100015],[-2.943045613999885,35.26787424800007],[-2.912906597796621,35.27691564016676],[-2.899037238999881,35.25999583500014],[-2.907948370999918,35.25096263200014],[-2.91234290299991,35.23578522300015],[-2.913319464999887,35.219061591000106],[-2.909820115999878,35.186712958],[-2.905140753999973,35.17357005400014],[-2.896392381999902,35.16181061400005],[-2.881988084999932,35.146714585000055],[-2.85606848899991,35.13129303600011],[-2.820952928999958,35.12189362200009],[-2.748117641999897,35.11595286700016],[-2.791818813999896,35.14516836100001],[-2.868275519999912,35.21735260600012],[-2.883168097999942,35.23851146000011],[-2.878407355999855,35.246323960000026],[-2.864857550999886,35.23761627800012],[-2.816395636999914,35.194525458],[-2.808664516999897,35.18378327000009],[-2.761097785999908,35.143255927000055],[-2.718332485999895,35.12299225500014],[-2.666737433999856,35.108221747000144],[-2.563221808999884,35.09613678600006],[-2.517486131999874,35.09935130400011],[-2.493316209999875,35.104396877000156],[-2.477202928999901,35.11261627800015],[-2.456125454999892,35.132473049000154],[-2.437123175999886,35.145086981000034],[-2.416737433999884,35.14915599200019],[-2.321441209999932,35.118841864],[-2.299061652999939,35.11595286700016],[-2.275257941999939,35.10956452000015],[-2.248687303999901,35.097235419000114],[-2.222564256999931,35.08930084800015],[-2.22112585499994,35.049954733000064],[-2.211669067999878,35.02344472300014],[-2.193789021999919,35.00360097300016],[-2.163299926999912,34.994040833000085],[-2.126041218999887,34.97192332000016],[-2.094932006999954,34.94768707300007],[-2.061238972999888,34.929703674000095],[-2.016280476999981,34.92624135400014],[-2.003619750999945,34.91817983000006],[-1.999692341999975,34.90634592700006],[-1.998400430999908,34.89270334900014],[-1.993491170999988,34.878854065000084],[-1.979745238999954,34.86526316400007],[-1.926725218999934,34.83808136],[-1.892825479999942,34.81167470400011],[-1.787715616999975,34.75669097900008],[-1.769525512999848,34.741343079000025],[-1.773142862999919,34.73405670200013],[-1.786113646999922,34.72584014900009],[-1.810504923999872,34.68072662400014],[-1.862956502999907,34.613598938],[-1.871121377999941,34.596649069000094],[-1.750663614999894,34.494174703000155],[-1.714231729999909,34.48505381300008],[-1.702966267999955,34.479679464000114],[-1.80962642399993,34.37245086700007],[-1.771334187999912,34.33470123300013],[-1.746064412999942,34.29031117800015],[-1.674750935999981,34.105955506000086],[-1.672085147999951,34.09202070500014],[-1.669634968999901,34.079212952000105],[-1.672115437999878,34.05918833400006],[-1.718727579999921,33.89808705600008],[-1.722086547999936,33.85116485700014],[-1.713043172999988,33.80199473000009],[-1.702501179999928,33.77282338500005],[-1.703224650999914,33.76181630500015],[-1.710821084999878,33.74706268300015],[-1.720949666999928,33.73636566200007],[-1.732576863999896,33.72786488900014],[-1.742240355999911,33.71776214700019],[-1.746787881999865,33.70238840800012],[-1.740741739999919,33.68660125700005],[-1.725393838999935,33.677712911000114],[-1.69071895299993,33.66732594900018],[-1.67325232,33.65649973600016],[-1.662400268999932,33.64469167100005],[-1.617338418999879,33.554438782000105],[-1.612739216999927,33.521469218000064],[-1.625399942999877,33.49423573800006],[-1.640386107999859,33.475528870000076],[-1.659144653999931,33.41977000000013],[-1.67283890799996,33.3946035770001],[-1.683225869999887,33.369230449],[-1.683380899999918,33.27083852100016],[-1.674234171999927,33.23797231100003],[-1.62359126799987,33.196605327],[-1.605607869999886,33.16802826000013],[-1.592068643999909,33.136608989000095],[-1.571398071999908,33.11198516900011],[-1.545508178999881,33.09183136000003],[-1.516362670999854,33.07397715300008],[-1.499516153999878,33.060205384000035],[-1.493056599999903,33.03948313400009],[-1.493366658999889,33.01615122500005],[-1.496518920999961,32.99429209500012],[-1.498844360999897,32.984008485000125],[-1.502978474999907,32.97462921200018],[-1.508869587999896,32.96630930600013],[-1.516362670999854,32.95948801700017],[-1.558789021999871,32.93364980100013],[-1.423345092999881,32.742395325000174],[-1.390530558999956,32.71877919600017],[-1.327020223999909,32.69890960700015],[-1.047502400999861,32.51700856600014],[-1.031999470999949,32.494400127000105],[-1.089980428999894,32.439442241000066],[-1.123156697999917,32.41794484500004],[-1.160260375999883,32.40494822200018],[-1.201704874999933,32.399858093000105],[-1.217982950999954,32.392623393000136],[-1.23415767399996,32.374614156000135],[-1.244131225999894,32.35691497800006],[-1.257515420999908,32.32084482800006],[-1.273423460999879,32.22944217200002],[-1.2754988199999,32.21751780200016],[-1.275188760999924,32.20906870600008],[-1.276635700999918,32.20085215300004],[-1.282991902999925,32.19018096900014],[-1.289193074999929,32.184858297000105],[-1.305677855999903,32.17372202600016],[-1.309553588999961,32.16744333900006],[-1.305161091999963,32.151165263000124],[-1.288986368999872,32.150906881000154],[-1.251831013999976,32.163515931000106],[-1.23271073399988,32.16372263600006],[-1.211833455999908,32.158348288000084],[-1.195607055999886,32.14604929600016],[-1.190594440999917,32.1252236940001],[-1.210334838999898,32.08967030900014],[-1.249557250999942,32.08166046200016],[-1.324953165999943,32.08470937100019],[-1.333428100999924,32.085071106000086],[-1.357405965999959,32.08605295800005],[-1.395388142999877,32.08755157500014],[-1.445617634999934,32.08951528000009],[-1.506337442999921,32.091944072000146],[-1.575790567999888,32.094734599],[-1.652375039999896,32.097835185000136],[-1.734333861999886,32.10109080000014],[-1.819961710999934,32.104501445000054],[-1.907553262999926,32.10796376500009],[-1.995454873999904,32.11147776300005],[-2.081857869999908,32.11494008400011],[-2.165108601999918,32.11829905200001],[-2.243398396999879,32.12139963900016],[-2.315176960999878,32.12429351800013],[-2.378635620999915,32.12677398700011],[-2.516146605999893,32.132200013],[-2.695567178999852,32.08967030900014],[-2.881188923999957,32.07628611299999],[-2.938730631999903,32.04863922100018],[-2.869768686121859,31.892430122662986],[-2.827835693118061,31.794586472320713],[-3.002556497300333,31.773619975819013],[-3.219210294486487,31.71770931848063],[-3.511563883999941,31.67274485300005],[-3.548745076999865,31.669954326],[-3.591378132999949,31.678274232000046],[-3.659506721025934,31.64782099680774],[-3.673484385360553,31.389234206617868],[-3.747466796999959,31.385165507000025],[-3.802502197999899,31.35064565100014],[-3.815188761999934,31.337158102000057],[-3.81921952299993,31.318864645000087],[-3.812914998999929,31.243365377000185],[-3.814982054999888,31.220524394000094],[-3.836169392999863,31.18977691700003],[-3.842835652999952,31.17019154900011],[-3.839321654999907,31.15282826800008],[-3.827461913999883,31.14383656800014],[-3.810796263999862,31.142906393000185],[-3.792967895999908,31.14967600600012],[-3.763719034999951,31.173447164],[-3.748862059999936,31.18021677600002],[-3.73142126499988,31.17634104500017],[-3.717106892999908,31.16326690700011],[-3.689718383999945,31.125594788000097],[-3.671941690999915,31.110867005000088],[-3.635871541999932,31.095674133000056],[-3.624140991999951,31.086527405000155],[-3.614529174999916,31.06802724200004],[-3.61008500199992,31.050302226000113],[-3.60874141499994,31.030871888000053],[-3.554674238516554,30.955926612245616],[-3.610584895854856,30.879049458405444],[-3.659506721025934,30.837116465401735],[-3.652517888858654,30.77421697589604],[-3.645529056691345,30.711317486390453],[-3.834227525208235,30.627451500382858],[-4.001959497223311,30.592507339546458],[-4.155713804903684,30.585518507379174],[-4.274523951747767,30.557563178709884],[-4.372367602089838,30.508641353538973],[-4.484188916766527,30.382842374527694],[-4.62396556011231,30.2849987241856],[-4.770731035625488,30.229088066847126],[-4.875563518134896,30.180166241676133],[-4.959429504142378,30.124255584337746],[-5.071250818819067,30.040389598330346],[-5.176083301328532,29.977490108824565],[-5.273926951670632,29.886635290649863],[-5.343815273343522,29.76782514380589],[-5.434670091518313,29.642026164794583],[-5.539502574027694,29.523216017950613],[-5.637346224369792,29.49526068928141],[-5.721212210377359,29.523216017950613],[-5.756156371213876,29.614070836125403],[-5.881955350225155,29.600093171790817],[-6.00076549706904,29.579126675289004],[-6.126564476080318,29.579126675289004],[-6.273329951593496,29.579126675289004],[-6.413106594939393,29.56514901095441],[-6.55987207045257,29.530204850117816],[-6.699648713798354,29.516227185783304],[-6.78351469980592,29.44633886411033],[-6.95823550398822,29.509238353615945],[-7.070056818664909,29.516227185783304],[-7.146933972505082,29.509238353615945],[-7.258755287181771,29.46730536061223],[-7.349610105356646,29.38343937460463],[-7.463286498999877,29.389137472000172],[-7.484060424999909,29.382445374000053],[-7.506126260999906,29.38022328700005],[-7.528502156999878,29.38094675700016],[-7.572685506999989,29.387613017000074],[-7.619452677999902,29.389421692000052],[-7.653610798999892,29.37619252500015],[-7.714666503999865,29.32182891800009],[-7.729988565999918,29.311157736],[-7.777995970999882,29.28932444300015],[-7.839129191999887,29.239043275000096],[-7.945014200999934,29.176230570000133],[-8.03632645699986,29.099852804000175],[-8.069657754999923,29.07933726],[-8.18231237799992,29.03554148400009],[-8.250473591999935,28.994768779000122],[-8.316774454999859,28.9390615840001],[-8.333259235999947,28.930379944000133],[-8.36845088699991,28.916530661000152],[-8.383488728999879,28.90578196300005],[-8.4178018799999,28.85234853100003],[-8.430410929999937,28.841005555000052],[-8.475834512999882,28.818758851000023],[-8.520818847999891,28.787081198000106],[-8.648847208999882,28.725947978000175],[-8.66760575399988,28.711685283000023],[-8.678767862999905,28.692823385000096],[-8.68238521299989,28.66589996400008],[-8.68238521299989,28.620217998000058],[-8.68238521299989,28.56027333600015],[-8.68238521299989,28.500406189],[-8.68238521299989,28.440487366000028],[-8.68238521299989,28.38054270400012],[-8.68238521299989,28.320623881000145],[-8.68238521299989,28.260679220000085],[-8.68238521299989,28.20076039700008],[-8.68238521299989,28.140893250000133],[-8.68238521299989,28.080948588000055],[-8.68238521299989,28.02102976600015],[-8.68238521299989,27.961085104000162],[-8.68238521299989,27.90114044200008],[-8.68238521299989,27.84122161900011],[-8.68238521299989,27.78135447200013],[-8.68238521299989,27.721435649000156],[-8.68238521299989,27.661439311000052],[-8.752561807999882,27.661439311000052],[-8.816537230999955,27.66146514900005],[-8.817033869999904,27.661465340000078],[-8.817034779999915,27.66146401100015],[-8.818449258999863,27.659398092000103],[-8.812919880999885,27.613354391000183],[-8.783619343999902,27.530362040000128],[-8.77338741099993,27.460030416000123],[-8.7880118409999,27.41605377200007],[-8.801706094999929,27.36042409200014],[-8.795840819999938,27.30768829400013],[-8.77338741099993,27.25006907200016],[-8.752871866999953,27.190486146000083],[-8.752871866999953,27.15046274900011],[-8.79390295399989,27.120180359000088],[-8.888109089999885,27.103566386000168],[-9.000918741999953,27.089923808000076],[-9.083446003999882,27.089923808000076],[-9.207469441999876,27.099690654000128],[-9.284622354999925,27.09772694900009],[-9.352008422999859,27.09772694900009],[-9.41205643699996,27.087960104000118],[-9.486315469999852,27.049874573000082],[-9.56884273299994,26.990291647],[-9.672350625999881,26.910219015000123],[-9.734362345999926,26.860428773000095],[-9.81686376999994,26.84968007499999],[-9.89936519399987,26.84968007499999],[-9.979928751999864,26.88972930900017],[-10.031708536999929,26.910219015000123],[-10.06586665799989,26.908281148000114],[-10.122038939999868,26.87996246400003],[-10.18844315599992,26.860428773000095],[-10.250454873999956,26.860428773000095],[-10.353962768999878,26.900478007000103],[-10.477986206999958,26.96003509500015],[-10.550281534999925,26.990291647],[-10.653272664999918,27.00005849200015],[-10.756780557999917,27.019592184000043],[-10.829075886999874,27.009825338],[-10.921835082999877,27.009825338],[-11.045858520999957,26.96980194100003],[-11.1493664139999,26.94050140400016],[-11.262641153999878,26.910219015000123],[-11.391573852999896,26.88290802100012],[-11.360309610999906,26.7930427050001],[-11.315867878999939,26.74420847600014],[-11.315867878999939,26.68364369699999],[-11.336900186999856,26.632897441000082],[-11.39891190599991,26.58308136000015],[-11.469708618999931,26.519596863000015],[-11.510688028999878,26.469806620000085],[-11.552210042999945,26.400456849000037],[-11.582983356999904,26.360407614000152],[-11.636210083999885,26.29498525000015],[-11.68354569499985,26.21297475199999],[-11.698221801999921,26.162176819000095],[-11.717238728999888,26.10357574500007],[-11.7538773199999,26.0860057580001],[-11.879864460999983,26.070399475000055],[-11.959911254999923,26.04988393200007],[-12.029751952999902,26.03035024100008],[-12.055822713999902,25.995830384],[-12.055823329999953,25.995829570000026],[-12.060008504999928,25.990301005],[-12.080058959999889,25.919969381000083],[-12.080058959999889,25.87020497600015],[-12.100057738999908,25.830155742000088],[-12.129849202999907,25.730549419000013],[-12.169872599999877,25.63972808800004],[-12.200154988999913,25.519580384],[-12.229946451999893,25.419999899000132],[-12.269969848999978,25.25980295800009],[-12.310019083999862,25.11043223000003],[-12.35983516399989,24.969794821],[-12.399884399999877,24.879955343000105],[-12.430140949999895,24.83016510100016],[-12.499981648999947,24.7696003220001],[-12.560029662999879,24.730532939000014],[-12.62984452399985,24.67976084400003],[-12.709942992999913,24.629970602000085],[-12.819781249999949,24.570387675000077],[-12.910137491999905,24.519589742000093],[-12.946879434999886,24.496748759000084],[-12.946880247999957,24.496748253000035],[-12.990184285999874,24.46979950000015],[-13.060024983999938,24.400475566000026],[-13.120098836999944,24.299861552],[-13.160122233999942,24.21981475800014],[-13.229962931999921,24.089900207000042],[-13.279753173999922,24.019594421000036],[-13.310009724999873,23.980552877000136],[-13.390108194999925,23.940503642000138],[-13.479947671999922,23.910221253000103],[-13.580044921999926,23.870197856000132],[-13.660117553999982,23.83012278200006],[-13.76998164899993,23.79012522400008],[-13.83979650899991,23.75007598900011],[-13.890129353999981,23.69049306300012],[-13.930126912999953,23.620187277000028],[-13.97994299299998,23.51959910099999],[-14.019992227999863,23.410251771000063],[-14.039991007999902,23.33992014600007],[-14.100064860999908,23.099676412000075],[-14.120089477999954,22.960046692000148],[-14.140088256999887,22.870181376000133],[-14.169905558999886,22.75985219300007],[-14.189904337999932,22.589914246000163],[-14.189904337999932,22.450258687000044],[-14.209954793999882,22.37018605500016],[-14.220186726999941,22.309647115000033],[-14.270002806999884,22.24029734300008],[-14.310052042999871,22.19050710100005],[-14.379841064999937,22.120201315000074],[-14.439914916999951,22.08015207900017],[-14.459913695999887,22.040102844],[-14.519987548999922,21.990338440000173],[-14.580035563999928,21.910239970000116],[-14.62985164399987,21.86042388900007],[-14.620084797999908,21.82037465400019],[-14.609827025999918,21.750068868000184],[-14.640109415999857,21.679763082000093],[-14.669875040999925,21.599664612000126],[-14.749973510999892,21.500084127000076],[-14.83981298899991,21.45026804600003],[-14.970166788999848,21.440501201000174],[-15.149871581999946,21.440501201000174],[-15.289992227999932,21.45026804600003],[-15.459930175999913,21.45026804600003],[-15.609817667999918,21.46980173700014],[-15.749964151999905,21.490317281000117],[-15.919876260999956,21.500084127000076],[-16.04002396599992,21.500084127000076],[-16.189885620999945,21.48055043500007],[-16.58004268399995,21.48055043500007],[-16.729956013999896,21.46980173700014],[-16.950149291999907,21.429752503000074],[-17.01374332534519,21.419971097581723],[-17.013742641999894,21.419989325000145],[-17.012806769999912,21.44521719],[-16.971058722999885,21.592596747000087],[-16.966908331999946,21.636542059000035],[-16.97032630099994,21.674465236000156],[-16.968006964999887,21.697251695000162],[-16.9510798819999,21.724758205000015],[-16.947661912999905,21.736029364],[-16.946400519999884,21.748277085000083],[-16.94701087099986,21.759995835000055],[-16.950266079999892,21.76536692900011],[-16.963246222999885,21.775620835000055],[-16.966908331999946,21.781154690000065],[-16.96153723899988,21.79580312700007],[-16.95693925699993,21.82566966400016],[-16.93781490799995,21.8666039080001],[-16.929798956999917,21.90794505400011],[-16.92100989499994,21.931301174],[-16.81663977799991,22.130560614],[-16.78066972599993,22.16571686400006],[-16.775054490999935,22.174953518000123],[-16.773426886999914,22.180975653000033],[-16.762074347999942,22.205023505000085],[-16.75633704299986,22.21019114799999],[-16.739898240999878,22.221136786000145],[-16.734120245999918,22.22675202000015],[-16.717884894999884,22.260972398000106],[-16.706776495999947,22.275458075000174],[-16.682606574999852,22.28408437700007],[-16.6771541009999,22.289536851000104],[-16.670318162999873,22.29441966400016],[-16.659006313999896,22.295070705000125],[-16.65025794199991,22.291693427000112],[-16.642648891999983,22.285956122000055],[-16.631703253999916,22.273911851000136],[-16.521839972999942,22.314886786000145],[-16.50218665299988,22.32990143400015],[-16.482167120999918,22.35228099200019],[-16.46662350199992,22.377386786000088],[-16.43150794199994,22.493068752000013],[-16.429351365999935,22.510443427],[-16.419545050999915,22.52179596600014],[-16.36978105399993,22.568264065],[-16.35728919199991,22.58307526200018],[-16.3443904289999,22.64695872599999],[-16.341379360999895,22.732001044000025],[-16.336822068999936,22.75372955900009],[-16.32485917899993,22.78949616100003],[-16.316477016999954,22.806057033000073],[-16.296457485999895,22.832098700000145],[-16.296254035999937,22.84218984600001],[-16.299956834999875,22.850165106000148],[-16.30211341099988,22.85675690300006],[-16.30215410099987,22.868312893000066],[-16.30060787699992,22.875067450000113],[-16.291737433999884,22.893459377000156],[-16.28962154899989,22.899807033000073],[-16.284779425999886,22.90338776200015],[-16.262603318999936,22.905585028000058],[-16.238636847999885,22.911566473000065],[-16.20645097599993,22.93797435100005],[-16.172963019999884,22.97345612200003],[-16.163238084999932,22.99323151200015],[-16.156483527999878,23.01349518400015],[-16.15257727799988,23.035223700000056],[-16.151275193999908,23.059068101000108],[-16.15953528599988,23.08246491100003],[-16.17906653599988,23.086127020000063],[-16.220204230999855,23.075873114000117],[-16.21312415299988,23.09442780200014],[-16.196034308999856,23.126166083],[-16.186675584999904,23.13792552299999],[-16.13927161399988,23.178534247000172],[-16.135121222999942,23.185126044000143],[-16.06041419199991,23.344549872000144],[-16.049143032999922,23.358099677000112],[-16.03831946499994,23.363918361000074],[-16.0255427729999,23.374945380000113],[-15.981190558999856,23.445786851000136],[-15.967193162999907,23.51292552299999],[-15.95645097599987,23.531724351000047],[-15.941314256999872,23.55133698100009],[-15.905506964999885,23.610296942000062],[-15.857085740999878,23.661810614000117],[-15.853871222999913,23.667914130000113],[-15.837391730999855,23.67934804900007],[-15.830393032999948,23.685980536000145],[-15.825062628999888,23.696722723000065],[-15.820057745999861,23.71723053600003],[-15.81607011599988,23.72760651200009],[-15.80064856699994,23.75063711100007],[-15.784820115999906,23.76898834800012],[-15.772613084999932,23.78782786700016],[-15.767689581999944,23.81264883000013],[-15.76545162699989,23.856756903000033],[-15.769154425999915,23.87567780200014],[-15.781971808999856,23.89826080900012],[-15.778675910999906,23.903713283000158],[-15.775135870999861,23.91193268400015],[-15.786773240999935,23.903876044000025],[-15.787953253999886,23.89215729400003],[-15.786000128999914,23.87836334800012],[-15.788197394999912,23.864162502000013],[-15.795318162999875,23.856634833000058],[-15.820871548999946,23.840277411000116],[-15.830393032999948,23.83624909100017],[-15.843576626999889,23.835882880000057],[-15.852202928999901,23.838120835000137],[-15.861724412999903,23.83616771],[-15.877552863999938,23.823187567],[-15.888172980999883,23.810736395000063],[-15.895334438999924,23.798773505000142],[-15.910389777999852,23.76532623900009],[-15.923329230999855,23.743597723],[-15.925933397999925,23.73725006700009],[-15.928089972999944,23.725165106000176],[-15.937489386999886,23.7052269550001],[-15.93960527299987,23.696234442000062],[-15.948231574999879,23.684312242000132],[-15.994862433999884,23.645005601000108],[-16.009755011999857,23.655422268],[-16.003163214999887,23.672105210000055],[-15.981190558999856,23.696234442000062],[-15.975819464999885,23.710760809000092],[-15.93960527299987,23.774807033000073],[-15.877552863999938,23.853583075000145],[-15.871245897999898,23.869208075000028],[-15.856800910999937,23.88694896000014],[-15.8409317699999,23.902655341000084],[-15.768137173999945,23.959865627000156],[-15.735747850999871,23.97117747600005],[-15.692616339999859,23.995794989000146],[-15.679554816999968,24.007513739000117],[-15.64663652299987,24.01040273600016],[-15.620106574999909,24.026271877000095],[-15.599232550999941,24.048325914000184],[-15.583322719999927,24.070257880000113],[-15.542347785999908,24.11424388200014],[-15.514393683999883,24.15216705900015],[-15.476063605999855,24.17780182500003],[-15.459706183999856,24.19188060100008],[-15.453033006999874,24.210191148000135],[-15.444691535999906,24.221869208000115],[-15.35338294199994,24.291083075000117],[-15.298247850999898,24.345160223],[-15.229562954999892,24.440741278000175],[-15.203968878999914,24.467474677],[-15.171864386999857,24.494126695000105],[-15.153553839999887,24.50560130400005],[-15.133412238999936,24.514634507000082],[-15.11270097599993,24.520575262000094],[-15.069406704999949,24.527289130000142],[-15.048329230999855,24.538275458],[-15.014800584999904,24.562445380000028],[-15.01537024599986,24.585679429000137],[-15.012237107999908,24.59153880400008],[-14.999989386999912,24.614488023000078],[-14.976226365999935,24.64142487200003],[-14.952137824999909,24.659247137000094],[-14.926991339999915,24.67177969],[-14.907826300999943,24.685492255000113],[-14.895619269999882,24.70571523600013],[-14.885853644999942,24.770738023000106],[-14.86192786399988,24.830145575000145],[-14.853423631999929,24.876613674000012],[-14.83967037699992,24.90534088700015],[-14.836048956999974,24.91868724200016],[-14.837961391999926,24.93512604400014],[-14.842030402999882,24.95026276200015],[-14.843169725999926,24.965277411000088],[-14.836048956999974,24.981390692000062],[-14.843495245999861,24.987616278000118],[-14.837228969999897,25.00169505400005],[-14.832590298999975,25.017564195000162],[-14.829741990999933,25.03424713700012],[-14.82921301999994,25.05023834800012],[-14.83189856699994,25.065741278000033],[-14.841420050999915,25.087551174000097],[-14.843495245999861,25.10053131700009],[-14.842437303999901,25.189032294000082],[-14.849720831999917,25.214178778000175],[-14.819243943999965,25.330226955000043],[-14.812123175999913,25.34609609600015],[-14.782053188999953,25.446926174],[-14.736195441999882,25.50551992400015],[-14.723133917999887,25.51581452000006],[-14.714914516999896,25.525580145000035],[-14.685170050999886,25.590887762000094],[-14.67833411399988,25.635565497000144],[-14.676258917999858,25.64191315300009],[-14.666859503999916,25.65973541900017],[-14.661366339999887,25.691310940000065],[-14.62096106699994,25.78359609600001],[-14.546457485999893,25.87921784100017],[-14.519520636999914,25.923773505000057],[-14.513905402999908,25.936957098],[-14.511057094999986,25.95685455900009],[-14.494984503999888,26.00161367400015],[-14.486561652999853,26.015448309000064],[-14.490345831999889,26.03148021000014],[-14.480376756999872,26.087795315],[-14.483306443999908,26.102484442],[-14.4928279289999,26.13271719],[-14.490061001999946,26.1427269550001],[-14.482289191999937,26.15387604400011],[-14.471791144999884,26.183050848000065],[-14.466135219999957,26.194240627000067],[-14.41014563699994,26.260077216000028],[-14.400746222999912,26.266302802],[-14.353179490999905,26.275946356000148],[-14.298939581999974,26.302232164000156],[-14.215931769999884,26.375474351000136],[-14.20205644399988,26.392238674000154],[-14.192779100999928,26.409491278000147],[-14.180246548999945,26.424383856000116],[-14.157053188999896,26.43378327000012],[-14.046864386999912,26.44440338700018],[-14.027740037999934,26.45237864800013],[-13.923736131999902,26.500881252000013],[-13.742014126999948,26.61810944200009],[-13.619984503999888,26.688910223],[-13.561105923999918,26.74909088700015],[-13.500884568999965,26.8583031270001],[-13.48033606699991,26.91168854400003],[-13.461048956999889,26.992743231000176],[-13.431996222999913,27.05076732000005],[-13.402455206999946,27.177191473],[-13.383656378999888,27.215277411000088],[-13.301096157999893,27.32444896000011],[-13.300770636999886,27.330023505000113],[-13.307769334999932,27.339341539000156],[-13.307932094999899,27.344956773000078],[-13.294260219999956,27.35175202],[-13.240834113999938,27.46539948100009],[-13.207590298999918,27.56745026200018],[-13.205433722999942,27.588568427],[-13.200795050999915,27.606512762000033],[-13.180978969999897,27.64484284100017],[-13.17825448768886,27.662490981041415],[-13.178252732999908,27.662502346000096],[-13.178212042999915,27.662787177000112],[-13.17756100199989,27.667141018],[-13.171254035999937,27.68500397300006],[-13.160511847999913,27.69464752800006],[-13.130360480999911,27.708075262000037],[-13.097971157999893,27.732245184000035],[-13.061431443999965,27.74290599200016],[-13.04515540299991,27.759833075000145],[-13.003000454999892,27.82103099200019],[-12.979562954999892,27.893703518000066],[-12.968088344999956,27.91461823100003],[-12.952381964999887,27.928615627000095],[-12.933094855999855,27.938706773000078],[-12.838937954999947,27.970404364000117],[-12.657826300999943,27.998032945000134],[-12.51353919199994,27.995428778000033],[-12.335031704999949,28.047267971000124],[-12.06143144399988,28.089016018000066],[-12.050404425999943,28.09601471600014],[-12.027902798999945,28.116888739000114],[-12.023101365999933,28.119574286],[-12.00560462099989,28.12319570500007],[-11.782378709999875,28.21010976800015],[-11.485585089999857,28.32562897300012],[-11.452788865999935,28.348456122000027],[-11.428822394999884,28.37592194200009],[-11.38931230399993,28.434881903000033],[-11.37401282499988,28.44977448100009],[-11.35594641799986,28.46385325700014],[-11.340972459999904,28.479681708000058],[-11.334706183999856,28.49974192900011],[-11.32591712099989,28.515204169000143],[-11.266468878999945,28.551581122000027],[-11.219634568999906,28.602484442000147],[-11.211822068999908,28.616766669000143],[-11.170318162999905,28.639715887000037],[-11.162464972999913,28.647406317000147],[-11.15420488199993,28.66107819200009],[-11.149159308999913,28.66766998900006],[-11.114979620999918,28.69183991100006],[-11.11156165299991,28.69574616100006],[-11.091053839999857,28.72630442899999],[-11.06309973899991,28.75238678600006],[-11.047596808999913,28.761704820000187],[-10.76260331899988,28.890204169000143],[-10.694203253999888,28.93056875200004],[-10.612416144999912,28.96771881700012],[-10.573801235999952,28.990423895000063],[-10.45091712099989,29.09218984600004],[-10.347889777999853,29.22939687700007],[-10.32087154899989,29.257961330000157],[-10.301991339999857,29.271877346000124],[-10.264027472999942,29.284125067],[-10.248402472999942,29.299383856000148],[-10.224354620999918,29.333075262000147],[-10.199126756999874,29.36127350500014],[-10.187570766999926,29.378973700000145],[-10.18272864499994,29.397284247000115],[-10.17764238199993,29.40582916900003],[-10.141753709999932,29.428615627000156],[-10.137033657999922,29.4349632830001],[-10.128163214999887,29.455959377000127],[-10.08698482999992,29.509955145000124],[-10.080922003999916,29.521144924000154],[-10.078684048999945,29.542303778000147],[-10.072621222999942,29.56468333500008],[-10.0636287099999,29.584947007],[-10.052967902999882,29.599920966000024],[-10.005279100999928,29.638413804000106],[-9.997792120999861,29.650824286000148],[-9.991688605999883,29.666815497000027],[-9.94994055899994,29.71600983300006],[-9.82022050699996,29.838934637000094],[-9.717925584999932,29.996568101000104],[-9.655140753999945,30.126898505000057],[-9.645253058999856,30.164007880000085],[-9.628407355999855,30.291408596000096],[-9.610015428999901,30.357814846000124],[-9.60732988199993,30.37763092700014],[-9.611643032999922,30.404364325000145],[-9.622710740999878,30.417425848000118],[-9.638172980999883,30.426662502000095],[-9.655140753999945,30.442206122000087],[-9.666249152999882,30.459295966000056],[-9.691761847999885,30.509588934000092],[-9.700062628999945,30.542710679000134],[-9.708404100999928,30.547512111000014],[-9.719553188999953,30.548529364000085],[-9.730824347999942,30.552069403000147],[-9.739816860999952,30.559881903000147],[-9.758168097999913,30.586818752000124],[-9.829660610999952,30.628607489000064],[-9.850941535999937,30.629624742000104],[-9.874012824999909,30.633978583000115],[-9.88853919199994,30.648260809000092],[-9.886708136999857,30.686672268000038],[-9.865630662999934,30.724269924000012],[-9.839019334999904,30.75983307500009],[-9.82022050699996,30.792303778000175],[-9.813710089999859,30.814683335],[-9.812896287999934,30.82713450700011],[-9.816802537999934,30.8366559920001],[-9.823841925999913,30.845648505000113],[-9.824370897999898,30.851955471000068],[-9.821888800999972,30.85911692900011],[-9.82022050699996,30.871079820000045],[-9.827707485999923,31.067450262000094],[-9.831450975999871,31.085353908000158],[-9.84752356699994,31.121283270000117],[-9.83503170499992,31.144761460000026],[-9.808949347999942,31.28620026200015],[-9.806630011999886,31.343451239000117],[-9.810902472999913,31.366848049000012],[-9.821522589999859,31.379461981000087],[-9.834787563999896,31.388820705000043],[-9.84752356699994,31.40241120000017],[-9.816232876999889,31.436835028000115],[-9.792958136999857,31.471340236000046],[-9.769642706999946,31.531480210000115],[-9.758168097999913,31.5458031270001],[-9.739613410999908,31.560003973],[-9.733265753999888,31.567368882000025],[-9.727650519999884,31.585150458],[-9.713612433999913,31.597845770000145],[-9.70763098899991,31.60932038],[-9.694203253999916,31.625718492000185],[-9.689279751999946,31.635199286],[-9.6752009759999,31.71539948100006],[-9.667307094999927,31.73114655199999],[-9.575795050999913,31.816107489000146],[-9.535389777999882,31.864488023000046],[-9.527943488999881,31.871242580000068],[-9.513295050999886,31.880845445000045],[-9.504953579999919,31.888413804000106],[-9.497425910999937,31.898138739000057],[-9.488677537999877,31.91535065300017],[-9.4837947259999,31.922552802000023],[-9.366118943999936,32.026312567],[-9.354074673999918,32.04669830900017],[-9.346424933999913,32.06150950700005],[-9.334828253999888,32.10162995000014],[-9.333078579999892,32.118068752000156],[-9.328114386999856,32.130438544000086],[-9.291981574999909,32.168931382],[-9.277740037999905,32.196600653000175],[-9.270008917999888,32.22748444200012],[-9.264759894999912,32.33063385600015],[-9.268950975999928,32.33551666900003],[-9.287749803999873,32.343491929],[-9.291981574999909,32.35081614799999],[-9.289662238999938,32.37246328300007],[-9.283355272999898,32.38776276200004],[-9.256255662999877,32.43256256700009],[-9.248850063999896,32.45254140800015],[-9.246937628999916,32.47231679900007],[-9.254790818999908,32.48826732],[-9.263661261999857,32.498480536000116],[-9.272368943999936,32.51292552299999],[-9.27830969999988,32.52952708500014],[-9.278960740999906,32.54633209800015],[-9.259917772999927,32.57689036700016],[-9.112172003999916,32.68284739800005],[-8.998524542999917,32.797105210000105],[-8.901682094999927,32.85480377800015],[-8.867787238999881,32.88190338700018],[-8.754709438999924,33.01064687700009],[-8.62913977799991,33.12763092700011],[-8.621490037999877,33.13934967700011],[-8.620350714999914,33.15200429900007],[-8.621001756999874,33.173529364],[-8.61188717399989,33.18626536700005],[-8.52916419199994,33.268703518000066],[-8.521148240999878,33.27252838700018],[-8.512521938999896,33.27049388200005],[-8.502797003999945,33.261542059000035],[-8.494130011999856,33.259507554000024],[-8.469797329999977,33.26064687700013],[-8.451649542999888,33.26422760600011],[-8.415028449999852,33.28001536700005],[-8.37877356699994,33.30467357000005],[-8.320220506999902,33.3653832050001],[-8.284657355999911,33.38983795800014],[-8.243153449999909,33.40452708500014],[-8.10655676999994,33.43085358300014],[-8.011545376999917,33.46641673400001],[-7.962554490999878,33.48480866100006],[-7.916249152999881,33.494574286],[-7.891428188999924,33.503363348000065],[-7.869740363999938,33.526556708],[-7.844797329999921,33.53595612200003],[-7.777984178999873,33.55329010600012],[-7.738189256999874,33.57062409100011],[-7.719471808999912,33.57420482000008],[-7.70099850199989,33.58274974200019],[-7.684437628999916,33.59992096600002],[-7.667551235999922,33.61269765800016],[-7.6478572259999,33.60834381700006],[-7.636219855999884,33.61456940300003],[-7.626616990999906,33.61322663000014],[-7.617258266999955,33.60936107000013],[-7.60619055899994,33.60834381700006],[-7.596669074999851,33.61155833500011],[-7.579253709999874,33.62075429900001],[-7.549956834999932,33.625555731000084],[-7.529123501999947,33.63263580900015],[-7.510243292999944,33.64154694200009],[-7.49705969999988,33.64996979400005],[-7.463286912999905,33.686509507],[-7.434315558999913,33.69822825700008],[-7.406361456999889,33.726996161000116],[-7.387115037999933,33.73248932500006],[-7.393950975999957,33.72504303600006],[-7.373850063999896,33.71930573100009],[-7.3526098299999,33.724676825000145],[-7.341135219999955,33.73110586100016],[-7.267486131999902,33.772406317],[-7.229318813999954,33.800930080000015],[-7.192941860999951,33.81769440300003],[-7.15257727799991,33.83006419500007],[-7.117014126999948,33.834865627000156],[-7.116566535999937,33.83490631700014],[-7.099476691999911,33.840277411],[-7.067860480999911,33.863674221000096],[-7.031809048999946,33.874253648000135],[-6.927357550999915,33.94415924700014],[-6.82209225199989,34.03961823100015],[-6.733754035999937,34.16258372600011],[-6.667795376999891,34.280503648000106],[-6.557932094999927,34.41771067900008],[-6.547759568999879,34.434719143000116],[-6.530913865999877,34.47402578300013],[-6.507923956999888,34.50478750200001],[-6.292103644999941,34.88080475499999],[-6.205393032999921,35.12457916900017],[-6.023915167999917,35.501166083000115],[-6.018544074999852,35.52020905200011],[-6.016672329999892,35.54462311400006],[-6.012318488999881,35.55882396],[-5.990834113999881,35.59853750200009],[-5.970041469999955,35.65253327],[-5.968251105999883,35.660956122000144],[-5.965240037999877,35.67023346600011],[-5.952056443999935,35.685492255000085],[-5.949045376999919,35.695379950000174],[-5.943104620999918,35.74237702],[-5.936187303999901,35.76561107000013],[-5.927235480999882,35.78074778900013],[-5.908029751999918,35.79734935099999],[-5.873402472999942,35.801988023000106],[-5.781402147999927,35.790920315000065],[-5.769276495999946,35.792792059000035],[-5.74233964799987,35.814886786000116],[-5.729888475999871,35.822658596000124],[-5.711740688999952,35.83063385600017],[-5.69351152299987,35.83429596600003],[-5.680897589999887,35.82916901200012],[-5.663441535999937,35.83588288000006],[-5.639719204999921,35.83637116100006],[-5.615956183999913,35.83152903900016],[-5.598988410999937,35.82233307500008],[-5.54002844999988,35.85097890800007],[-5.523264126999976,35.86326732000013],[-5.487456834999875,35.896958726000136],[-5.468861456999946,35.91034577000012],[-5.448109503999945,35.918524481000034],[-5.440027099999923,35.91810638300008],[-5.435451735999891,35.914416573000054],[-5.42349675299991,35.90895565500013],[-5.414198431999892,35.90939843200009],[-5.410361029999905,35.917073236000064],[-5.407999551999922,35.924748041000115],[-5.405490480999902,35.926519149000015]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Madagascar","sov_a3":"MDG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Madagascar","adm0_a3":"MDG","geou_dif":0,"geounit":"Madagascar","gu_a3":"MDG","su_dif":0,"subunit":"Madagascar","su_a3":"MDG","brk_diff":0,"name":"Madagascar","name_long":"Madagascar","brk_a3":"MDG","brk_name":"Madagascar","brk_group":null,"abbrev":"Mad.","postal":"MG","formal_en":"Republic of Madagascar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Madagascar","name_alt":null,"mapcolor7":6,"mapcolor8":5,"mapcolor9":2,"mapcolor13":3,"pop_est":20653556,"gdp_md_est":20130,"pop_year":-99,"lastcensus":1993,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"MA","iso_a2":"MG","iso_a3":"MDG","iso_n3":"450","un_a3":"450","wb_a2":"MG","wb_a3":"MDG","woe_id":23424883,"woe_id_eh":23424883,"woe_note":"Exact WOE match as country","adm0_a3_is":"MDG","adm0_a3_us":"MDG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MDG.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[49.84449303500011,-17.072198174999855],[49.82618248800022,-17.09441497199999],[49.81739342500006,-17.067152601999823],[49.82252037900011,-17.0412736959999],[49.84652754000015,-16.991387627999856],[49.850840691000116,-16.977715752999913],[49.853037957000225,-16.9647763],[49.85401451900012,-16.936781507999967],[49.85726972700016,-16.919691665000016],[49.86557050900015,-16.90634531],[49.888194207000105,-16.881524346999967],[49.95582116000011,-16.779717705999843],[49.95948326900012,-16.765313408999873],[49.96119225400011,-16.749607028999904],[49.964610222,-16.734144789999974],[49.97315514400005,-16.721123955999985],[49.98536217500012,-16.71184661299985],[50.02409915500007,-16.69036223799999],[50.019867384000094,-16.714532158999912],[49.9837345710001,-16.786716404],[49.95736738400009,-16.864027601999922],[49.90845787900011,-16.96697356599998],[49.87281334700006,-17.01311614399991],[49.84449303500011,-17.072198174999855]]],[[[48.32374108200022,-13.251885674999954],[48.33375084700006,-13.27239348799999],[48.3411564460001,-13.294691664999943],[48.34205162900011,-13.305271091999984],[48.35417728000019,-13.312269789999888],[48.348806186000076,-13.328789971999868],[48.33765709700006,-13.34726327899989],[48.33204186300023,-13.36044687299993],[48.339366082000225,-13.368340753],[48.353282097,-13.377373955999914],[48.36500084700012,-13.387953382999953],[48.36622155000012,-13.40064869599992],[48.35954837300008,-13.40797291499993],[48.34961998800017,-13.41236744599992],[48.33863366000011,-13.414483330999929],[48.32837975400017,-13.415134372999972],[48.323496941000116,-13.412774346999925],[48.320160352000094,-13.407891533999859],[48.318369988000114,-13.403008721999967],[48.318369988000114,-13.40064869599992],[48.3123478520001,-13.40178801899995],[48.29802493600019,-13.408135674999897],[48.261729363000114,-13.40243906],[48.249278191000165,-13.3969052059999],[48.23585045700011,-13.387139580999943],[48.22901451900006,-13.387139580999943],[48.22901451900006,-13.40064869599992],[48.224619988000114,-13.400485934999963],[48.221934441000116,-13.39861419099999],[48.21949303500017,-13.396254164999943],[48.21599368600019,-13.39462655999992],[48.20630944100011,-13.38258229],[48.19971764400023,-13.361504815999893],[48.19499759200002,-13.318780205999971],[48.19890384200002,-13.299411716999956],[48.204437696000156,-13.282321872999916],[48.203868035000106,-13.269789320999905],[48.18873131600011,-13.264255466999899],[48.19890384200002,-13.251071872999942],[48.21363366000011,-13.25530364399995],[48.229340040000096,-13.262302341999856],[48.24284915500007,-13.256768487999835],[48.249522332000225,-13.262953382999896],[48.259043816000116,-13.267347914999974],[48.26921634200008,-13.26832447699995],[48.27686608200011,-13.264255466999899],[48.27816816500009,-13.256524346999967],[48.273285352000094,-13.248955987999935],[48.26710045700017,-13.24114348799985],[48.26384524800019,-13.23308684699991],[48.26465905000012,-13.212579033999859],[48.26929772200006,-13.20110442499991],[48.280446811000076,-13.196384372999901],[48.3010360040001,-13.19540781],[48.318369988000114,-13.200290622999901],[48.3264266290001,-13.212823174999896],[48.32545006600017,-13.229587497999916],[48.31495201900006,-13.246758721999853],[48.32374108200022,-13.251885674999954]]],[[[49.351735873000024,-12.09050872199984],[49.34896894600009,-12.11638762799984],[49.353037957000225,-12.146254164999915],[49.370860222,-12.183282158999859],[49.37305748800011,-12.198174737999821],[49.36719811300006,-12.198663018999895],[49.3294376960001,-12.157159112999906],[49.32016035200016,-12.155368747999916],[49.31275475400017,-12.163995049999826],[49.305918816000116,-12.175469658999873],[49.29851321700008,-12.181735934999905],[49.284922722,-12.178399346999882],[49.27369225400011,-12.16773853999986],[49.266286655000016,-12.15357838299984],[49.263845248000194,-12.140232028999918],[49.25318444100017,-12.145196221999868],[49.24529056100019,-12.153090101999851],[49.240000847,-12.16285572699988],[49.23707116000017,-12.174248955999857],[49.249196811000076,-12.180271091999856],[49.2463485040001,-12.192071221999825],[49.22966556100019,-12.222100518999879],[49.24480228000019,-12.221774997999859],[49.26539147200006,-12.22478606599985],[49.28370201900012,-12.230889580999843],[49.29175866000011,-12.239434502999869],[49.28834069100011,-12.246026299999839],[49.27393639400023,-12.258070570999848],[49.271250847000175,-12.263604424999869],[49.272959832000055,-12.27223072699988],[49.27637780000006,-12.281345309999864],[49.28150475400011,-12.284844658999859],[49.28834069100011,-12.277276299999896],[49.29900149800008,-12.259372653999847],[49.30713951900006,-12.25514088299984],[49.31519616000011,-12.2621395809999],[49.32585696700002,-12.277276299999896],[49.32447350400017,-12.282403252999828],[49.32007897200017,-12.289239190999837],[49.31950931100019,-12.29517994599986],[49.3294376960001,-12.297784112999864],[49.349375847000175,-12.298516533999887],[49.35906009200008,-12.296807549999883],[49.36687259200002,-12.291599216999884],[49.372569207000225,-12.274346612999878],[49.35840905000012,-12.246189059999892],[49.3631291020001,-12.232842705999886],[49.38135826900012,-12.222832940999908],[49.392751498000074,-12.229750257999811],[49.42172285200016,-12.274346612999878],[49.42457116000011,-12.285902601999823],[49.425059441000165,-12.297539971999823],[49.42823326900023,-12.311455987999892],[49.43775475400011,-12.326918226999823],[49.44800866000017,-12.338067315999837],[49.45541425900015,-12.35149504999984],[49.456228061000076,-12.373467705999843],[49.462901238000114,-12.360446872999859],[49.47152754000009,-12.351983330999829],[49.482432488000114,-12.347426039999874],[49.49659264400012,-12.346123955999872],[49.511729363000114,-12.348728122999873],[49.517914259000094,-12.354261976999894],[49.52214603000013,-12.361911716999913],[49.539398634000094,-12.378187757999854],[49.54517662900017,-12.39072030999985],[49.54574629000015,-12.402032158999845],[49.53809655000012,-12.40699635199988],[49.52418053500011,-12.403741143999838],[49.51205488400015,-12.398370049999883],[49.50098717500012,-12.397393487999821],[49.49040774800008,-12.40699635199988],[49.51482181100019,-12.426853122999887],[49.52767988400015,-12.44264088299984],[49.53907311300011,-12.444105726999808],[49.55860436300006,-12.420668226999823],[49.58643639400023,-12.482028903999918],[49.59278405000006,-12.503187757999825],[49.59498131600017,-12.529717705999886],[49.59245853,-12.542657158999887],[49.58277428500017,-12.540785414999915],[49.57471764400023,-12.529717705999886],[49.571787957000225,-12.517266533999873],[49.57211347700016,-12.489515882999882],[49.566091342000014,-12.516696872999901],[49.580902540000096,-12.57366301899999],[49.575531446000156,-12.595798434999892],[49.56763756600017,-12.606215101999965],[49.56324303500011,-12.616794528999932],[49.56251061300006,-12.627862237999878],[49.56544030000006,-12.639825127999984],[49.57471764400023,-12.656670830999985],[49.581797722,-12.655531507999953],[49.58936608200016,-12.648532809999892],[49.600271030000016,-12.647230726999894],[49.61524498800006,-12.656996351999837],[49.63550866000017,-12.674574476999865],[49.65333092500006,-12.694756768999893],[49.660980665000096,-12.712090752999883],[49.663259311000076,-12.724867445999832],[49.673106316000165,-12.746270440999965],[49.675303582000055,-12.757094007999868],[49.672699415000146,-12.769952080999971],[49.659841342000014,-12.791924737999906],[49.65479576900012,-12.804864190999908],[49.66374759200002,-12.800225518999966],[49.67261803500017,-12.798435153999987],[49.681000196000156,-12.799737237999977],[49.688812696000156,-12.804864190999908],[49.694834832000225,-12.793715101999894],[49.70142662900011,-12.785251559999935],[49.707041863000114,-12.776136976999865],[49.712168816000116,-12.748630467000012],[49.71949303500011,-12.739922783999845],[49.730479363000114,-12.738051039999874],[49.74415123800023,-12.743422132999838],[49.73943118600001,-12.753350518999838],[49.73666425900015,-12.757094007999868],[49.75025475400011,-12.76051197699988],[49.763682488000114,-12.767022393999952],[49.77564537900011,-12.775485934999907],[49.800547722000175,-12.798272393999923],[49.80494225400017,-12.804864190999908],[49.800547722000175,-12.83017343499995],[49.801931186000076,-12.839288018999852],[49.8147078790001,-12.865817966999984],[49.82406660200016,-12.876234632999894],[49.83668053500011,-12.880547783999987],[49.85043379000015,-12.879652601999894],[49.86426842500006,-12.880466404],[49.87378991000011,-12.888360283999887],[49.874522332000055,-12.908461195999934],[49.86744225400011,-12.913832289999974],[49.85629316500009,-12.916924737999878],[49.85254967500006,-12.924411716999941],[49.8670353520001,-12.942071221999953],[49.88054446700008,-12.949395440999865],[49.894053582000225,-12.953708591999868],[49.904470248000024,-12.96233489399995],[49.908539259000094,-12.98267994599986],[49.913828972000175,-12.997165622999987],[49.936859571000156,-13.024102471999965],[49.94214928500011,-13.03386809699991],[49.94410241000017,-13.087497653999904],[49.935313347000175,-13.168064059999864],[49.93628991000016,-13.183282158999845],[49.94109134200008,-13.203545830999943],[49.94214928500011,-13.21949635199995],[49.945974155000016,-13.232110283999845],[49.97315514400005,-13.271091404],[49.976247592000135,-13.288506768999964],[49.97266686300023,-13.331312757999882],[49.976898634000094,-13.346123955999857],[49.9904891290001,-13.353936455999929],[50.00261478,-13.350355726999965],[50.01368248800017,-13.344821872999859],[50.02409915500007,-13.346123955999857],[50.032888217000185,-13.360528252999913],[50.03174889400006,-13.378024997999873],[50.02409915500007,-13.411553643999909],[50.02613366000016,-13.438409112999892],[50.040537957000225,-13.49700286299992],[50.05201256600017,-13.524183851999851],[50.056407097000175,-13.529554945999891],[50.068369988000114,-13.538750908999873],[50.07252037900011,-13.544122002999927],[50.073903842000135,-13.551934503],[50.0721134770001,-13.570000908999845],[50.07252037900011,-13.578301690999908],[50.07642662900011,-13.59905364399999],[50.079356316000165,-13.606133721999882],[50.08187910200016,-13.609958591999984],[50.085215691000116,-13.612074476999894],[50.089121941000116,-13.61337656],[50.093272332000225,-13.613702080999914],[50.09929446700002,-13.615166924999967],[50.100271030000016,-13.61923593500002],[50.10010826900006,-13.624688408999887],[50.103282097,-13.630466403999932],[50.105479363000114,-13.641696872999944],[50.097422722000175,-13.675713799999969],[50.103282097,-13.691827080999943],[50.11085045700005,-13.703057549999855],[50.13396243600002,-13.75017669099985],[50.14291425900015,-13.783135674999912],[50.15349368600019,-13.982517184999878],[50.17351321700007,-14.05681731599988],[50.17628014400012,-14.085625909],[50.17530358200016,-14.121189059999963],[50.166026238000114,-14.14910247199991],[50.16325931100001,-14.167087497999944],[50.161875847000054,-14.202325127999984],[50.164235873000194,-14.2230770809999],[50.17107181100001,-14.234795830999971],[50.19605553500017,-14.257256768999895],[50.21290123800023,-14.287204684999864],[50.21363366000017,-14.315850518999838],[50.20118248800006,-14.39267343499995],[50.191579623000194,-14.423597914999988],[50.18921959700006,-14.439141533999901],[50.190928582000225,-14.456638278999947],[50.20346113400015,-14.504327080999913],[50.21078535200015,-14.61516692499987],[50.23804772200006,-14.66961028399996],[50.24089603000007,-14.705987237999848],[50.23226972700015,-14.738213799999967],[50.20972741000017,-14.750664972],[50.21892337300008,-14.762872002999885],[50.245616082000055,-14.776136976999823],[50.25749759200002,-14.784844658999985],[50.26531009200002,-14.79778411299999],[50.27173912900011,-14.81536223799992],[50.28370201900006,-14.87916432099996],[50.355235222,-15.03313567499984],[50.37354576900006,-15.060479425],[50.42204837300008,-15.118096612999878],[50.43213951900012,-15.134209893999852],[50.44044030000012,-15.168064059999905],[50.45101972700016,-15.178480726999979],[50.46412194100011,-15.185804945999905],[50.47657311300022,-15.195082290000029],[50.490000847,-15.219496351999908],[50.49830162900011,-15.252048434999876],[50.503916863000114,-15.316176039999933],[50.50294030000012,-15.322198174999926],[50.49708092500006,-15.33806731599995],[50.48755944100017,-15.353610934999963],[50.487152540000096,-15.36052825299987],[50.489431186000076,-15.367608330999927],[50.490896030000016,-15.37761809699991],[50.4895939460001,-15.384698174999969],[50.479991082000225,-15.408623955999843],[50.47803795700011,-15.41863372199991],[50.479991082000225,-15.428480726999851],[50.48267662900011,-15.437188408999916],[50.483409050000056,-15.443454684999878],[50.479177280000016,-15.451267184999962],[50.46705162900011,-15.463555596999926],[50.46290123800011,-15.47014739399998],[50.45606530000006,-15.504978123000015],[50.43824303500011,-15.554945570999879],[50.43628991000017,-15.573418877999897],[50.429860873000024,-15.600274346999967],[50.34099368600019,-15.763604424999969],[50.33318118600013,-15.792250257999951],[50.343272332000055,-15.798028253],[50.336761915000096,-15.811293226999934],[50.26441491000011,-15.902113539999933],[50.2415470710001,-15.958265882999925],[50.23015384200008,-15.970961195999893],[50.21404056100019,-15.975030205999943],[50.198090040000096,-15.972832940999949],[50.182871941000116,-15.973321221999937],[50.168142123000194,-15.984633070999932],[50.147959832000055,-15.935316664999947],[50.13086998800023,-15.91936614399994],[50.106700066000116,-15.92253997199999],[50.05746504000009,-15.881036065999908],[50.0389103520001,-15.85947031],[50.03150475400011,-15.829766533999958],[50.026703321000156,-15.778497002999927],[50.024668816000116,-15.771172783999845],[50.01270592500006,-15.766534112999906],[49.99854576900005,-15.755629164999931],[49.985524936000076,-15.742445570999974],[49.976898634000094,-15.73137786299985],[49.97022545700011,-15.71803150799984],[49.96501712300014,-15.702243747999887],[49.96216881600017,-15.685479424999869],[49.962657097000175,-15.669366143999893],[49.9681095710001,-15.653008721999882],[49.974619988000114,-15.639743747999859],[49.975840691000116,-15.626641533999887],[49.96607506600017,-15.611423434999905],[49.95972741000011,-15.605645440999849],[49.953949415000096,-15.602634373000015],[49.94752037900016,-15.601332290000016],[49.938731316000116,-15.601006769],[49.93409264400005,-15.59791432099992],[49.90560957100015,-15.56161874799993],[49.90308678500017,-15.548760675],[49.908539259000094,-15.517836195999946],[49.909027540000096,-15.500258070999918],[49.90113366000011,-15.449639580999941],[49.90251712300008,-15.44361744599985],[49.90609785200016,-15.437758070999976],[49.907399936000076,-15.430922132999882],[49.90113366000011,-15.422295830999957],[49.89625084700006,-15.420668226999936],[49.87761478000007,-15.418877862999949],[49.851410352000094,-15.432061455999914],[49.81495201900005,-15.435967706],[49.750336134000094,-15.435967706],[49.717784050000056,-15.446709893999923],[49.695485873000194,-15.466485283999944],[49.63843834700012,-15.544610283999873],[49.63941491000017,-15.57048919099988],[49.660980665000096,-15.627699476999936],[49.662119988000114,-15.641778252999885],[49.660980665000096,-15.655694268999866],[49.650563998000194,-15.683038018999838],[49.64795983200011,-15.683038018999838],[49.65455162900017,-15.695489190999934],[49.666188998000074,-15.706231377999869],[49.67725670700011,-15.719333591999925],[49.68531334700006,-15.752862237999878],[49.69947350400016,-15.785739841999868],[49.70630944100017,-15.83619557099989],[49.716319207000055,-15.86736419099988],[49.73113040500007,-15.894219658999944],[49.733734571000156,-15.90569426899999],[49.730479363000114,-15.92253997199999],[49.72315514400012,-15.939385675],[49.69263756600017,-15.991469007999939],[49.68360436300023,-16.02027760199998],[49.68311608200016,-16.05364348799995],[49.689789259000094,-16.086846612999963],[49.702647332000225,-16.11500416499996],[49.72877037900011,-16.139418226999823],[49.79395592500012,-16.162041924999883],[49.82276451900006,-16.17986419099995],[49.84571373800023,-16.2120907529999],[49.84986412900017,-16.240817966999856],[49.82862389400006,-16.33440520599997],[49.82691491000017,-16.37330494599989],[49.832367384000094,-16.40797291499996],[49.85035241000017,-16.4229468729999],[49.86060631600017,-16.429375909],[49.8631291020001,-16.444512628],[49.8592228520001,-16.483086846999882],[49.854991082000055,-16.497491143999852],[49.85401451900012,-16.505140882999882],[49.85401451900012,-16.539646091999984],[49.84945722700016,-16.552422783999845],[49.796641472000175,-16.64104583099991],[49.76775149800008,-16.673435154000018],[49.72315514400012,-16.708103122999987],[49.724945509000094,-16.754001559999978],[49.732106967000135,-16.775079033999987],[49.747325066000116,-16.796807549999883],[49.76832116000011,-16.815606377999927],[49.78988691500015,-16.826429945999834],[49.813649936000076,-16.830173434999864],[49.84034264400005,-16.827569268999866],[49.810069207000055,-16.843926690999876],[49.77833092500011,-16.855564059999963],[49.71973717500006,-16.864027601999922],[49.694834832000225,-16.87712981599989],[49.64454186300006,-16.881524346999967],[49.62452233200011,-16.88567473799999],[49.60840905000006,-16.896579684999892],[49.59571373800006,-16.91204192499991],[49.52898196700002,-17.04168059699991],[49.482432488000114,-17.167575778999876],[49.43132571700002,-17.283868096999868],[49.421397332000225,-17.355157158999955],[49.42595462300008,-17.370212497999972],[49.456228061000076,-17.417168877999913],[49.50407962300019,-17.663018487999906],[49.5096134770001,-17.72771575299994],[49.49773196700007,-17.7968075499999],[49.462657097000175,-17.915704033999845],[49.41391035200016,-18.06707122199991],[49.412608269000174,-18.084567966999856],[49.41391035200016,-18.101820570999863],[49.417979363000114,-18.115492445999806],[49.42261803500011,-18.122735283999916],[49.43376712300008,-18.135511976999865],[49.43848717500006,-18.142836195999877],[49.440765821000156,-18.154229424999926],[49.43474368600002,-18.159926039999917],[49.42457116000011,-18.163832289999917],[49.41456139400012,-18.17009856599995],[49.384125196000156,-18.22551848799985],[49.359222852000094,-18.424004815999908],[49.352224155000016,-18.436781507999854],[49.333262566000116,-18.45956796699987],[49.32585696700002,-18.471856377999842],[49.301931186000076,-18.54013437299993],[49.243174675000056,-18.65683359199991],[49.191172722,-18.84254322699985],[49.113454623000194,-19.012465101999823],[49.076914910000106,-19.065606377999913],[48.985850457000225,-19.37883879999984],[48.85962975400011,-19.684665622999958],[48.8255314460001,-19.8422177059999],[48.82325280000006,-19.865492445999905],[48.82374108200022,-19.90276458099997],[48.79135175900015,-19.993096612999977],[48.7850041020001,-19.980726820999934],[48.772715691000116,-19.964450779],[48.75953209700011,-19.955498955999882],[48.75049889400006,-19.965752862999988],[48.75464928500011,-19.977308851999936],[48.77898196700019,-20.00920989399995],[48.78451582100009,-20.024346612999945],[48.78174889400023,-20.037204684999878],[48.69922936300023,-20.19988372199984],[48.641774936000076,-20.345391533999855],[48.61622155000006,-20.41977304499993],[48.562266472000054,-20.57708098799993],[48.46241295700017,-20.932224216999856],[48.45183353000019,-20.948337497999916],[48.43848717500012,-20.96404387799988],[48.43018639400012,-20.97918059699988],[48.43441816500015,-20.993584893999852],[48.44752037900011,-20.980889580999886],[48.4549259770001,-20.984551690999936],[48.457367384000094,-20.997816664999874],[48.45557701900022,-21.0140927059999],[48.44906660200015,-21.028903903999876],[48.43132571700008,-21.0585263],[48.4275822270001,-21.075860283999987],[48.424164259000094,-21.110039971999896],[48.41480553500017,-21.143975518999852],[48.37859134200008,-21.223890882999854],[48.37501061300006,-21.237562757999967],[48.37305748800023,-21.26799895599993],[48.356700066000116,-21.353692315999908],[48.34205162900011,-21.389825127999856],[48.32813561300023,-21.41464609199998],[48.20183353000007,-21.796156507999825],[48.07463626400008,-22.07219817499984],[47.947438998000024,-22.348239841999856],[47.93360436300023,-22.414157809999892],[47.90064537900017,-22.481133721999896],[47.85865319100017,-22.74602629999998],[47.839366082000225,-22.80657317499988],[47.8338322270001,-22.900974216999927],[47.799978061000076,-23.012139580999985],[47.762380405000066,-23.110121351999837],[47.738047722000175,-23.255466403999975],[47.61947675900015,-23.590590101999936],[47.60792076900011,-23.57683684699991],[47.602224155000016,-23.565362237999878],[47.59652754000015,-23.563164971999967],[47.58545983200011,-23.57691822699989],[47.57496178500011,-23.59872812299986],[47.5818791020001,-23.6045874979999],[47.598317905000016,-23.606052341999956],[47.616058790000096,-23.614434503],[47.62012780000006,-23.64039479],[47.568695509000094,-23.852634372999987],[47.514333530000066,-23.98699309699998],[47.496755405,-24.016371351999894],[47.48975670700016,-24.022637627999856],[47.473887566000116,-24.032159112999935],[47.468760613000114,-24.03630950299997],[47.4666447270001,-24.03630950299997],[47.456228061000125,-24.039808851999876],[47.45508873800006,-24.03997161299985],[47.448496941000116,-24.04509856599995],[47.45053144600009,-24.048028252999966],[47.454844597000054,-24.05120208099993],[47.45508873800006,-24.056735934999864],[47.454844597000054,-24.059340101999865],[47.44825280000006,-24.08464934699998],[47.43083743600018,-24.117852472],[47.42807050900015,-24.124769789999917],[47.37077884200019,-24.27011484199988],[47.363047722000175,-24.276543877999984],[47.3509220710001,-24.272881768999937],[47.32960045700011,-24.26360442499997],[47.32471764400023,-24.269626559999892],[47.33838951900005,-24.324314059999935],[47.31226647200006,-24.485935153999932],[47.22836347700016,-24.68035247199994],[47.20337975400011,-24.716485283999972],[47.2005314460001,-24.73137786299992],[47.20118248800023,-24.762465101999936],[47.19410241000017,-24.778252862999974],[47.14283287900011,-24.814060153999986],[47.12891686300017,-24.844903252999956],[47.13746178500017,-24.909274997999958],[47.12614993600019,-24.934340101999865],[47.115896030000066,-24.923028252999885],[47.10906009200008,-24.909763278999947],[47.10572350400011,-24.89495208099997],[47.105642123000024,-24.87916432099992],[47.09685306100018,-24.89332447699995],[47.09595787900011,-24.907891533999887],[47.09831790500007,-24.923435153999886],[47.09880618600002,-24.940606377999913],[47.094574415000096,-24.96013762799998],[47.0872501960001,-24.968357028999886],[47.057871941000116,-24.97869231599998],[47.04086347700016,-24.98853932099992],[47.01270592500006,-25.012465101999965],[46.96469160200015,-25.065687757999868],[46.95484459700006,-25.07097747199994],[46.951508009000094,-25.066664320999845],[46.941172722,-25.044203382999925],[46.9295353520001,-25.042657158999987],[46.92660566500009,-25.043715101999936],[46.92579186300005,-25.046644789999874],[46.867360873000194,-25.085219007999854],[46.84546959700006,-25.103936455999914],[46.83472741000011,-25.110772393999834],[46.805511915000096,-25.12118905999992],[46.79411868600002,-25.127862237999878],[46.780039910000106,-25.145765882999836],[46.76978600400016,-25.153497002999938],[46.76172936300023,-25.15300872199995],[46.7518009770001,-25.14950937299987],[46.741465691000116,-25.149590752999856],[46.73170006600017,-25.160332940999865],[46.72217858200011,-25.166680596999896],[46.653656446000156,-25.18385182099992],[46.63803144600015,-25.18336353999993],[46.60474694100017,-25.174574476999947],[46.50220787900011,-25.161797784],[46.38656660200016,-25.164808851999837],[46.2376408210001,-25.198174737999903],[46.039724155000016,-25.277764580999886],[45.914073113000114,-25.33733489399998],[45.77418053500017,-25.40813567499991],[45.67400149800008,-25.494398695999948],[45.65495853000007,-25.50701262799984],[45.63396243600001,-25.51482512799991],[45.61158287900011,-25.516534112999835],[45.56120853000007,-25.559991143999966],[45.49219811300023,-25.57366301899991],[45.20769290500019,-25.584893487999906],[45.19239342500012,-25.588067315999876],[45.177744988000114,-25.594333592000012],[45.16260826900012,-25.59856536299985],[45.14551842500006,-25.595391533999972],[45.136078321000156,-25.58416106599988],[45.126638217000014,-25.545830987999935],[45.11817467500012,-25.529554945999905],[45.08765709700006,-25.508233330999857],[44.98096764400023,-25.47185637799987],[44.95101972700016,-25.45183684699998],[44.93799889400012,-25.438164971999868],[44.925547722000175,-25.40781015399989],[44.90870201900006,-25.393731377999856],[44.83472741000017,-25.344008070999863],[44.767344597000175,-25.31438567499991],[44.727793816000116,-25.303643487999977],[44.62208092500012,-25.289727472],[44.51693769600015,-25.28443775799994],[44.36947675900015,-25.25676848799985],[44.35108483200011,-25.247491143999895],[44.33619225400016,-25.208916925],[44.303721550000056,-25.17538827899996],[44.296397332000055,-25.153497002999938],[44.3157658210001,-25.160902601999837],[44.333181186000076,-25.175062757999935],[44.36402428500011,-25.20777760199996],[44.38404381600017,-25.220879815999936],[44.40088951900012,-25.221449476999908],[44.409434441000116,-25.210544529000018],[44.404958530000066,-25.18816497199991],[44.38900800900014,-25.191013278999943],[44.375336134000094,-25.183770440999936],[44.349782748000194,-25.160332940999865],[44.333262566000116,-25.15032317499988],[44.31804446700007,-25.144219658999972],[44.30193118600019,-25.14120859199997],[44.282725457000225,-25.14039478999996],[44.247569207000055,-25.12721119599983],[44.18718509200008,-25.06698984199987],[44.151703321000156,-25.050469658999887],[44.119883660000106,-25.05071379999984],[44.10857181100002,-25.048028252999853],[44.028819207000105,-24.998955987999906],[44.01734459700006,-24.97722747199992],[44.01091556100002,-24.898614190999837],[44.00098717500006,-24.86541106599999],[43.92847741000011,-24.774590752999842],[43.91830488400009,-24.74195728999989],[43.92798912900011,-24.65243906],[43.91830488400009,-24.61907317499991],[43.908213738000114,-24.602146091999927],[43.865407748000194,-24.559177341999884],[43.860524936000076,-24.55559661299999],[43.85547936300011,-24.55120208099993],[43.85010826900023,-24.54338958099984],[43.84734134200019,-24.53443775799991],[43.84424889400011,-24.51392994599986],[43.83985436300023,-24.505791924999922],[43.806651238000114,-24.47926197699988],[43.737152540000096,-24.43572356599995],[43.706716342000014,-24.406182549999983],[43.67286217500006,-24.334893487999892],[43.656260613000114,-24.185316664999903],[43.66960696700002,-24.013278903999918],[43.652110222000175,-23.91643645599993],[43.654063347,-23.90691497199984],[43.66285241000017,-23.888441664999988],[43.665212436000076,-23.878594658999887],[43.664073113000114,-23.8671200499999],[43.652110222000175,-23.837579033999972],[43.64372806100013,-23.797784112999892],[43.63721764400012,-23.77971770599987],[43.62476647200012,-23.761895440999893],[43.639008009000094,-23.741306247999944],[43.63697350400017,-23.67050546699994],[43.64161217500012,-23.638929945999948],[43.66374759200019,-23.619398695999877],[43.73096764400023,-23.592054945999887],[43.74830162900011,-23.57008228999989],[43.74642988400015,-23.553887627999842],[43.73292076900005,-23.52776458099997],[43.73462975400017,-23.509209893999966],[43.750010613000114,-23.49570077899999],[43.754567905000066,-23.488864841999884],[43.76075280000011,-23.472100518999866],[43.761241082000225,-23.463799737999963],[43.75798587300008,-23.45403411299985],[43.747243686000076,-23.44019947699985],[43.72055097700016,-23.419610283999987],[43.70142662900017,-23.39544036299999],[43.65894616000011,-23.3578427059999],[43.652110222000175,-23.35409921699987],[43.645762566000116,-23.35320403399996],[43.639008009000094,-23.351495049999954],[43.63103274800008,-23.344821872999916],[43.628591342000135,-23.339288018999895],[43.62476647200012,-23.316827080999985],[43.61426842500012,-23.281996351999947],[43.61003665500013,-23.192315362999903],[43.596853061000076,-23.1176083309999],[43.58318118600002,-23.075860283999944],[43.555918816000116,-23.04827239399985],[43.48755944100017,-23.00156015399986],[43.47673587300008,-22.987074476999908],[43.46029707100015,-22.95566171699997],[43.44605553500017,-22.94312916499996],[43.42774498800011,-22.930596612999878],[43.39340254000015,-22.89511484199997],[43.372569207000055,-22.864841403999975],[43.3611759770001,-22.84319426899999],[43.356700066000116,-22.829685154000014],[43.351328972000175,-22.788506768999863],[43.33871504000009,-22.761325778999947],[43.33350670700011,-22.70907968499993],[43.321625196000156,-22.68084075299997],[43.315684441000116,-22.645277601999908],[43.31080162900017,-22.636651299999983],[43.297211134000094,-22.61972421699999],[43.29175866000017,-22.610772393999895],[43.284922722000054,-22.587497653999957],[43.28443444100017,-22.564060153999904],[43.28834069100017,-22.517998955999957],[43.27800540500007,-22.425876559999963],[43.26400800900009,-22.377699476999837],[43.240244988000114,-22.33228932099985],[43.24000084700006,-22.322360934999935],[43.24089603000007,-22.312188408999972],[43.240570509000094,-22.302666924999897],[43.23389733200016,-22.27800872199998],[43.22291100400011,-22.254815362999963],[43.225433790000096,-22.233819268999838],[43.24683678500017,-22.218357028999904],[43.27409915500007,-22.215997002999856],[43.29517662900017,-22.234470309999878],[43.30176842500006,-22.218845309999892],[43.30005944100011,-22.20183684699984],[43.296071811000076,-22.184177341999913],[43.29517662900017,-22.166110934999978],[43.26091556100018,-22.16562265399999],[43.24724368600007,-22.125583591999966],[43.24683678500017,-22.0350888],[43.24903405000006,-22.024021091999884],[43.25879967500012,-22.004082940999893],[43.26099694100017,-21.993829033999873],[43.26099694100017,-21.969984632999967],[43.26270592500012,-21.95989348799992],[43.26661217500006,-21.95517343499999],[43.271250847,-21.951836846999967],[43.27466881600011,-21.946384372999944],[43.27662194100017,-21.945896091999956],[43.28093509200008,-21.9444312479999],[43.28549238400009,-21.94198984199987],[43.28834069100017,-21.93889739399988],[43.28093509200008,-21.911716403999876],[43.282481316000116,-21.898370049999954],[43.28687584700012,-21.886325778999932],[43.293630405000016,-21.874932549999883],[43.3020939460001,-21.86443450299991],[43.313812696000156,-21.878838799999883],[43.315277540000096,-21.895765882999868],[43.30884850400011,-21.932061455999957],[43.32927493600018,-21.905043226999823],[43.33318118600018,-21.858168226999865],[43.33155358200017,-21.807549737999878],[43.33619225400017,-21.76881275799994],[43.34734134200019,-21.75025807099993],[43.41431725400011,-21.674899997999955],[43.431488477000094,-21.662286065999893],[43.45069420700011,-21.659844658999944],[43.472666863000114,-21.672051690999922],[43.472666863000114,-21.405205987999892],[43.48023522200006,-21.380303643999937],[43.50123131600017,-21.334161065999837],[43.50749759200002,-21.309502862999935],[43.51531009200002,-21.326592705999886],[43.5232853520001,-21.32675546699994],[43.542246941000116,-21.309502862999935],[43.56959069100017,-21.295993747999958],[43.58277428500011,-21.277764580999886],[43.58692467500006,-21.274834893999866],[43.64258873800006,-21.276055596999882],[43.680023634000094,-21.266045830999985],[43.69874108200011,-21.270440362999878],[43.71648196700008,-21.277764580999886],[43.73462975400017,-21.281670830999968],[43.759532097,-21.272719007999854],[43.78858483200011,-21.251153252999927],[43.81275475400011,-21.224297783999855],[43.82276451900005,-21.199395440999908],[43.827891472000175,-21.170017185],[43.86378014400012,-21.07626718499999],[43.90154056100007,-20.882907809999864],[43.964610222000054,-20.767347914999903],[43.985606316000116,-20.74797942499997],[44.01832116000011,-20.740411065999933],[44.036387566000116,-20.725518487999977],[44.09034264400023,-20.63054778399996],[44.10279381600017,-20.590101820999834],[44.11207116000011,-20.54273853999989],[44.125824415000146,-20.498304945999962],[44.151703321000156,-20.465997002999938],[44.151866082000225,-20.475030205999854],[44.153493686000076,-20.48113372199994],[44.158539259000094,-20.493340752999913],[44.182871941000116,-20.43889739399999],[44.19678795700022,-20.421644789999988],[44.24073326900023,-20.389336846999967],[44.254730665000096,-20.37607187299986],[44.25131269600009,-20.343926690999893],[44.26124108200011,-20.30754973799999],[44.33423912900011,-20.169610283999845],[44.35572350400011,-20.138116143999923],[44.415375196000156,-20.083184502999842],[44.438975457000055,-20.05535247199988],[44.457774285000106,-20.023614190999922],[44.473887566000116,-19.98626067499987],[44.47901451900012,-19.955661716999856],[44.47934004000015,-19.912774346999964],[44.471853061000076,-19.87948984199997],[44.45337975400011,-19.877048434999935],[44.44459069100017,-19.849216403999975],[44.439789259000094,-19.8422177059999],[44.43262780000006,-19.838311455999985],[44.41830488400015,-19.83757903399996],[44.41179446700008,-19.835381768999966],[44.398285352000094,-19.824151299999883],[44.38502037900017,-19.808689059999864],[44.3748478520001,-19.791192315999908],[44.370860222000054,-19.774021091999884],[44.37476647200006,-19.76051197699982],[44.3938908210001,-19.72616952899986],[44.401621941000116,-19.715590101999908],[44.40967858200017,-19.701429945999976],[44.412933790000096,-19.68474700299994],[44.41179446700008,-19.650485934999878],[44.40951582100009,-19.640313408999916],[44.405935092000135,-19.631280205999914],[44.40357506600017,-19.62175872199991],[44.404958530000066,-19.610121351999823],[44.40967858200017,-19.605564059999963],[44.4270939460001,-19.59514739399988],[44.432953321000156,-19.589043877999984],[44.43799889400012,-19.5702450499999],[44.440440300000056,-19.55486419099999],[44.44841556100019,-19.544366143999834],[44.470469597000175,-19.540622653999986],[44.4837345710001,-19.523207290000016],[44.479746941000116,-19.483982028999904],[44.45964603000019,-19.41765715899986],[44.444672071000156,-19.385837497999916],[44.425547722000175,-19.356215101999865],[44.378103061000076,-19.31259530999995],[44.370860222000054,-19.300957940999865],[44.36304772200006,-19.268161716999852],[44.34400475400017,-19.2355282529999],[44.2518009770001,-19.121270440999847],[44.23438561300023,-19.088799737999864],[44.22754967500012,-19.05462004999987],[44.23438561300023,-18.99627044099986],[44.2478947270001,-18.965101820999877],[44.2478947270001,-18.903741143999966],[44.24708092500006,-18.901299737999935],[44.24284915500007,-18.893975518999852],[44.241709832000225,-18.890069268999852],[44.2435001960001,-18.88323333099983],[44.25196373800023,-18.875176690999893],[44.254730665000096,-18.86972421699994],[44.26091556100019,-18.8449032529999],[44.261566602000094,-18.835137627999856],[44.25733483200011,-18.803887627999885],[44.23340905000006,-18.73414478999993],[44.18588300900015,-18.610772393999966],[44.11443118600019,-18.51588307099985],[44.049652540000096,-18.426527601999823],[44.04175866000011,-18.39690520599987],[44.041840040000096,-18.19801197699981],[44.002614780000066,-18.003676039999974],[44.00098717500006,-17.937920830999897],[44.0306095710001,-17.81389739399998],[44.03565514400012,-17.769463799999883],[44.03028405000006,-17.75457122199984],[44.00635826900012,-17.73308684699998],[43.99244225400011,-17.68743254999987],[43.929209832000225,-17.60165781],[43.92359459700006,-17.577569268999895],[43.92400149800008,-17.54648202899989],[43.93262780000006,-17.484958592000012],[43.943125847000054,-17.455743096999967],[43.994151238000114,-17.375664972],[44.012054884000094,-17.334079684999935],[44.01832116000011,-17.3312313779999],[44.030121290000096,-17.337009372999958],[44.0364689460001,-17.329522393999895],[44.04566491000011,-17.300551039999903],[44.12183678500017,-17.186618747999873],[44.13819420700011,-17.1705054669999],[44.145518425000056,-17.15593840899987],[44.14861087300008,-17.14177825299994],[44.151703321000156,-17.09441497199999],[44.17969811300006,-17.095147393999923],[44.20411217500012,-17.05689869599989],[44.238047722000175,-16.970961195999877],[44.24496504000009,-16.96054452899989],[44.27222741000017,-16.93336353999996],[44.27759850400011,-16.924981377999913],[44.285817905000016,-16.902276299999954],[44.29297936300017,-16.892185153999904],[44.30925540500019,-16.874281507999854],[44.32129967500012,-16.855564059999963],[44.340505405000066,-16.813897393999923],[44.366709832000105,-16.77678801899991],[44.401621941000116,-16.739841403999947],[44.43067467500012,-16.7003720029999],[44.439789259000094,-16.655531507999967],[44.43425540500007,-16.63616301899995],[44.41618899800008,-16.59351979],[44.41179446700008,-16.573011976999965],[44.416840040000096,-16.54892343500002],[44.42847741000011,-16.537692966999938],[44.4388126960001,-16.542575779],[44.439789259000094,-16.56698984199987],[44.45557701900023,-16.540948174999983],[44.46338951900023,-16.51336028399996],[44.46290123800023,-16.48544687299993],[44.45337975400011,-16.457696221999953],[44.41578209700006,-16.40300872199991],[44.40064537900016,-16.372816664999903],[44.398203972,-16.3404273419999],[44.40259850400011,-16.327813408999916],[44.41041100400017,-16.313571873],[44.419769727000094,-16.29998137799994],[44.429209832000225,-16.28972747199984],[44.43604576900023,-16.278985283999916],[44.43848717500006,-16.265720309999978],[44.44141686300011,-16.209405205999914],[44.444672071000156,-16.195733330999886],[44.45281009200008,-16.186700127999956],[44.469411655000016,-16.182224217],[44.50269616000011,-16.182061455999943],[44.5369572270001,-16.176527601999837],[44.75505618600002,-16.1969540339999],[44.782074415000096,-16.19085051899991],[44.794444207000105,-16.191664320999834],[44.818695509000094,-16.211114190999922],[44.83619225400017,-16.22063567499999],[44.85425866000017,-16.225355726999837],[44.86833743600019,-16.220879815999865],[44.877777540000096,-16.20916106599988],[44.88396243600019,-16.199476820999905],[44.89136803500017,-16.19117603999993],[44.90528405000006,-16.183282158999955],[44.919118686000076,-16.17962004999991],[44.94792728000019,-16.175225518999838],[44.96111087300002,-16.169610283999916],[44.9529728520001,-16.16277434699991],[45.011241082000225,-16.136000257999896],[45.04021243600002,-16.118096612999935],[45.059825066000116,-16.09392669099985],[45.093923373000194,-16.038832289999974],[45.11638431100019,-16.011651299999883],[45.13868248800023,-15.990899346999969],[45.165782097000175,-15.97551848799985],[45.227305535000106,-15.949883721999884],[45.26636803500011,-15.923923434999978],[45.27344811300017,-15.930108330999856],[45.27572675900015,-15.94459400799998],[45.2771916020001,-15.976332290000032],[45.294688347000054,-16.031914971999896],[45.295664910000106,-16.03679778399996],[45.2962345710001,-16.046075127999913],[45.295664910000106,-16.053155205999968],[45.29004967500012,-16.07341887799997],[45.288747592000135,-16.090427341999852],[45.290375196000156,-16.103448174999926],[45.29786217500012,-16.111993096999868],[45.313649936000076,-16.11500416499996],[45.328949415000096,-16.110121351999894],[45.33887780000011,-16.099216403999918],[45.34734134200008,-16.086358330999982],[45.35808353000007,-16.076836846999896],[45.39210045700011,-16.064385674999883],[45.40626061300023,-16.054864190999965],[45.41293379000009,-16.039239190999975],[45.41041100400017,-16.03053150799982],[45.390798373000194,-16.023370049999954],[45.37891686300022,-16.011407158999845],[45.37077884200002,-15.994561455999843],[45.370290561000076,-15.98186614399988],[45.37940514400023,-15.973809502999925],[45.542735222000054,-15.956719658999985],[45.549652540000146,-15.95468515399996],[45.55697675900014,-15.951348565999936],[45.570078972,-15.943047783999944],[45.5774845710001,-15.970961195999893],[45.58513431100002,-15.981377862999892],[45.58887780000006,-15.983819268999921],[45.59034264400012,-15.987562757999955],[45.59058678500017,-16.001722914999974],[45.57976321700007,-16.03069426899988],[45.580414259000094,-16.040785415000016],[45.59791100400016,-16.032403252999885],[45.60474694100017,-16.051853122999972],[45.612071160000106,-16.049574476999908],[45.62183678500011,-16.032403252999885],[45.61158287900011,-15.980889580999898],[45.6145939460001,-15.96982187299996],[45.630544467000135,-15.954278252999954],[45.63835696700019,-15.943047783999944],[45.63746178500011,-15.94052499799993],[45.63835696700019,-15.915215752999899],[45.64039147200006,-15.90642669099992],[45.64380944100011,-15.899021091999856],[45.64625084700017,-15.89120859199994],[45.645762566000116,-15.881036065999908],[45.637950066000116,-15.868340752999856],[45.62720787900011,-15.859633070999946],[45.62142988400015,-15.850762627999911],[45.628672722000054,-15.837009372999901],[45.66089928500011,-15.803806247999887],[45.693858269000174,-15.783135674999869],[45.704274936000076,-15.782484632999823],[45.720876498000194,-15.788832289999945],[45.73585045700022,-15.792575778999973],[45.75114993600019,-15.792575778999973],[45.76587975400011,-15.794203382999894],[45.80201256600011,-15.816582940999837],[45.8244735040001,-15.813409112999862],[45.885427280000016,-15.778985283999916],[45.897959832000225,-15.774590752999941],[45.9114689460001,-15.772067966999927],[45.92693118600002,-15.771172783999845],[45.9485783210001,-15.774183851999936],[45.95606530000006,-15.782972914999903],[45.95427493600019,-15.816094658999845],[45.95508873800011,-15.831801039999903],[45.958750847000175,-15.83993905999992],[45.966970248000074,-15.843682549999938],[45.98145592500012,-15.846856378],[45.98991946700008,-15.847588799999853],[46.007334832000225,-15.846286716999854],[46.01579837300008,-15.846856378],[46.04297936300006,-15.861097915],[46.066091342000135,-15.861911717000012],[46.066091342000135,-15.855726820999962],[46.05632571700019,-15.843438409],[46.04981530000006,-15.82634856599995],[46.0540470710001,-15.815606377999856],[46.06316165500019,-15.80689869599996],[46.07081139400023,-15.796075127999954],[46.07097415500019,-15.778578382999909],[46.04688561300006,-15.790622653999932],[46.023448113000114,-15.808200778999959],[46.00993899800019,-15.814385674999839],[46.01579837300008,-15.792250257999951],[46.03028405000012,-15.769463799999839],[46.05095462300014,-15.74871184699984],[46.07447350400017,-15.730889580999943],[46.09750410200016,-15.717054945999863],[46.12029056100019,-15.708184502999913],[46.144216342000014,-15.703708591999856],[46.19385826900023,-15.703545830999884],[46.21900475400011,-15.706719658999857],[46.230642123000024,-15.710707290000016],[46.23552493600019,-15.717461846999866],[46.23560631600017,-15.729180596999937],[46.23698978000007,-15.739678643999923],[46.24097741000017,-15.749281507999981],[46.24903405000006,-15.75807057099996],[46.237478061000076,-15.776136976999977],[46.23275800900014,-15.792087497999985],[46.225840691000165,-15.8063290339999],[46.20736738400015,-15.819512627999856],[46.22917728000019,-15.836846612999935],[46.245127800000056,-15.85247161299992],[46.25782311300023,-15.870782158999887],[46.29297936300011,-15.940687757999896],[46.30909264400006,-15.95956796700001],[46.33106530000011,-15.977227471999852],[46.33204186300006,-15.96746184699991],[46.331309441000116,-15.95468515399996],[46.332204623000024,-15.94280364399999],[46.337901238000114,-15.936211846999939],[46.34595787900017,-15.938653252999968],[46.35718834700006,-15.957696221999955],[46.3650822270001,-15.96355559699991],[46.384938998000024,-15.959161065999835],[46.39332116000011,-15.941827080999929],[46.39258873800017,-15.920098565999963],[46.385590040000096,-15.902113539999933],[46.4119572270001,-15.899672132999898],[46.431162957000225,-15.917657158999843],[46.44849694100011,-15.94150156],[46.46876061300023,-15.956719658999985],[46.479177280000016,-15.948907158999901],[46.468272332000225,-15.922458592000012],[46.44434655000006,-15.881036065999908],[46.42457116000017,-15.87249114399998],[46.38314863400015,-15.83489348799989],[46.35824629000009,-15.82634856599995],[46.32601972700016,-15.82822031000002],[46.317230665000096,-15.82634856599995],[46.29900149800014,-15.815687757999838],[46.300791863000114,-15.80901458099997],[46.31267337300008,-15.80250416499989],[46.32471764400005,-15.792250257999951],[46.35124759200002,-15.752048434999864],[46.355642123000194,-15.732517184999963],[46.34473717500006,-15.717054945999863],[46.333750847000175,-15.715915623],[46.32007897200006,-15.717705987999906],[46.308604363000114,-15.717705987999906],[46.30372155000012,-15.710219007999937],[46.306976759000094,-15.69402434699998],[46.321543816000116,-15.666680597],[46.332692905000016,-15.630140882999967],[46.35157311300023,-15.61093515399992],[46.39616946700002,-15.57659270599987],[46.45923912900011,-15.507745049999897],[46.48243248800006,-15.491143487999848],[46.48414147200017,-15.49627044099995],[46.48633873800006,-15.500420830999984],[46.48812910200016,-15.505059503],[46.48861738400015,-15.511651299999897],[46.49976647200006,-15.505547783999985],[46.526866082000105,-15.480645440999965],[46.56934655000006,-15.450616143999907],[46.58122806100019,-15.439711195999848],[46.60474694100017,-15.424248956],[46.63135826900012,-15.42164479],[46.65772545700011,-15.422051690999837],[46.68043053500017,-15.41545989399995],[46.667246941000116,-15.406833591999856],[46.636241082000055,-15.398532809999878],[46.632578972,-15.38884856599999],[46.643321160000106,-15.378024997999914],[46.700938347,-15.364353122999887],[46.80396569100017,-15.291924737999848],[46.87940514400012,-15.225030205999913],[46.92164147200006,-15.213067315999892],[46.9494735040001,-15.198418877999883],[46.965017123000194,-15.195082290000029],[46.97144616000011,-15.198418877999883],[46.9744572270001,-15.206149997999985],[46.97575931100019,-15.215427341999854],[46.97559655000006,-15.24179452899993],[46.97722415500007,-15.247247002999883],[46.98943118600001,-15.272067966999925],[46.997325066000116,-15.282159112999905],[47.00806725400011,-15.290704033999916],[47.02369225400011,-15.299411716999911],[47.057871941000116,-15.313083591999856],[47.07471764400012,-15.32398854],[47.07488040500007,-15.336358330999957],[47.06495201900017,-15.349379164999947],[47.04981530000006,-15.374769789999874],[47.03736412900017,-15.385023695999893],[47.02182050900015,-15.394952080999898],[47.011566602000094,-15.405450127999954],[46.96705162900011,-15.492282809999878],[46.955088738000114,-15.525974216999883],[46.95826256600017,-15.549574476999908],[46.96900475400017,-15.551853122999972],[46.97641035200016,-15.537855726999835],[46.98552493600007,-15.504978123000015],[46.99724368600002,-15.494724216999913],[47.015472852000094,-15.488946221999853],[47.05103600400017,-15.483819268999921],[47.08497155000012,-15.471449476999979],[47.11654707100009,-15.45517343499995],[47.14763431100001,-15.446465752999883],[47.18002363400015,-15.45712656],[47.216319207000225,-15.443780205999898],[47.23210696700008,-15.43328215899993],[47.23536217500012,-15.41545989399995],[47.23145592500012,-15.409763278999876],[47.22494550900014,-15.40829843499999],[47.21680748800011,-15.407647393999866],[47.20801842500006,-15.405205987999835],[47.19947350400011,-15.400160414999988],[47.19581139400006,-15.39568450299984],[47.179047071000156,-15.365492445999918],[47.16521243600007,-15.302015882999912],[47.16553795700011,-15.295668226999878],[47.162282748000024,-15.292657158999958],[47.149668816000165,-15.291924737999848],[47.140798373000194,-15.293633721999853],[47.11182701900011,-15.306247654000016],[47.10906009200008,-15.293552341999868],[47.11036217500006,-15.282159112999905],[47.11988366000017,-15.25790781],[47.10629316500009,-15.259698174999983],[47.095388217000135,-15.259372653999963],[47.08790123800023,-15.254652601999965],[47.081716342000185,-15.234307549999885],[47.0647078790001,-15.224786065999965],[47.057871941000116,-15.216241143999865],[47.055918816000165,-15.193617445999976],[47.0647078790001,-15.172051690999979],[47.09197024800019,-15.134942315999877],[47.12525475400011,-15.10621510199992],[47.16830488400015,-15.078708591999968],[47.20573978000019,-15.046644789999986],[47.227386915000096,-14.987481377999897],[47.24138431100001,-14.969659112999835],[47.29175866000017,-14.923435153999918],[47.3127547540001,-14.911553643999964],[47.3352970710001,-14.904066664999903],[47.358897332000225,-14.901543877999968],[47.37183678500011,-14.890557549999839],[47.37484785200016,-14.86728281],[47.368337436000076,-14.84661223799999],[47.35206139400012,-14.843519789999917],[47.34107506600017,-14.85247161299985],[47.335215691000116,-14.86858489399999],[47.324066602000094,-14.874281507999896],[47.30860436300006,-14.875176690999892],[47.29916425900015,-14.869561455999971],[47.28370201900022,-14.846937757999923],[47.289886915000096,-14.846937757999923],[47.31999759200002,-14.800225518999923],[47.444834832000225,-14.671563409],[47.4588322270001,-14.661553643999838],[47.46534264400012,-14.665459893999923],[47.46924889400012,-14.676527601999863],[47.47559655000012,-14.688653252999941],[47.49610436300006,-14.711602471999855],[47.49740644600009,-14.722100519],[47.493011915000096,-14.78337981599992],[47.496755405,-14.79851653399993],[47.50098717500006,-14.802422783999914],[47.50757897200006,-14.80462005],[47.51392662900016,-14.80917734199987],[47.517100457000225,-14.819594007999939],[47.514496290000096,-14.82236093499999],[47.50342858200011,-14.846937757999923],[47.44597415500018,-14.91220468499992],[47.43083743600018,-14.93572356599988],[47.42066491000011,-14.965590101999949],[47.41041100400011,-15.087823174999883],[47.41374759200002,-15.09986744599989],[47.427744988000114,-15.10759856599999],[47.43962649800008,-15.105157158999871],[47.47242272200017,-15.087579033999843],[47.48243248800023,-15.080254815999835],[47.50049889400005,-15.052992445999848],[47.50993899800008,-15.025079033999901],[47.52295983200005,-14.998711846999981],[47.55128014400012,-14.976657809999907],[47.562510613000114,-14.985039971999868],[47.565928582000225,-14.975844007999898],[47.56495201900023,-14.949965101999965],[47.57056725400017,-14.93328215899993],[47.64210045700011,-14.80038827899999],[47.64747155000006,-14.771254165000018],[47.65186608200022,-14.7588843729999],[47.684418165000096,-14.7264950499999],[47.68726647200006,-14.718194268999909],[47.68718509200008,-14.70012786299999],[47.69092858200011,-14.692478122999871],[47.69857832100009,-14.686700128],[47.715668165000096,-14.678643487999876],[47.72136478000007,-14.674981378],[47.74390709700006,-14.649590752999897],[47.75294030000006,-14.634860934999907],[47.75668379000009,-14.6210263],[47.76368248800017,-14.605726820999932],[47.77849368600002,-14.597588799999839],[47.79265384200008,-14.587579033999944],[47.79712975400011,-14.566338799999869],[47.839610222000175,-14.624200127999954],[47.859141472000175,-14.640801690999837],[47.87224368600002,-14.64592864399985],[47.90357506600017,-14.654392184999976],[47.914398634000094,-14.662041924999912],[47.91960696700007,-14.67400481599985],[47.91846764400023,-14.697198174999881],[47.92066491000011,-14.709730726999878],[47.93523196700008,-14.69378020599987],[47.93628991000011,-14.671563409],[47.928070509000094,-14.65129973799999],[47.914398634000094,-14.640801690999837],[47.94214928500017,-14.61923593499992],[47.96859785200016,-14.622165622999928],[47.9885360040001,-14.643161716999884],[47.996267123000024,-14.675388279],[47.99480228000007,-14.743340752999899],[48.00025475400011,-14.762302341999911],[48.01685631600017,-14.737074476999936],[48.02247155000006,-14.707696221999853],[48.02214603000007,-14.666599216999956],[48.013031446000156,-14.630059502999911],[47.99293053500011,-14.614190362999892],[47.97950280000012,-14.609795830999985],[47.966970248000194,-14.599297783999845],[47.944834832000225,-14.57634856599985],[47.92603600400011,-14.566501559999919],[47.910980665000096,-14.5687802059999],[47.87964928500011,-14.586846612999905],[47.86670983200011,-14.591973565999837],[47.85377037900011,-14.594496351999851],[47.840017123000194,-14.591403903999947],[47.82496178500017,-14.579359632999854],[47.81690514400023,-14.565362237999892],[47.81072024800008,-14.550876559999933],[47.803884311000076,-14.545586846999866],[47.77564537900011,-14.583591403999876],[47.762950066000116,-14.595391533999845],[47.75294030000006,-14.600518487999949],[47.74683678500016,-14.592705987999864],[47.726084832000055,-14.556573174999913],[47.72136478000007,-14.545342706],[47.72339928500017,-14.541273695999948],[47.73357181100001,-14.531345309999864],[47.735606316000165,-14.524834893999952],[47.733653191000116,-14.515232028999888],[47.7298283210001,-14.509535414999986],[47.725352410000106,-14.50481536299999],[47.708343946000156,-14.470147393999921],[47.708750847000175,-14.464125257999825],[47.71290123800011,-14.460870049999953],[47.7146916020001,-14.457940362999935],[47.70337975400011,-14.449395440999835],[47.70150800900015,-14.446384373],[47.70313561300006,-14.403252862999905],[47.70948326900012,-14.3695614559999],[47.721934441000116,-14.338067315999893],[47.74244225400017,-14.312595309999978],[47.766286655000066,-14.29851653399993],[47.77369225400011,-14.290297132999854],[47.77654056100019,-14.274346612999935],[47.77784264400006,-14.244561455999929],[47.78199303500011,-14.23381926899999],[47.79086347700016,-14.22323984199987],[47.814463738000114,-14.215997002999927],[47.86101321700002,-14.248793226999936],[47.89356530000012,-14.247002862999949],[47.90691165500013,-14.243584893999952],[47.92676842500012,-14.246270440999922],[47.93482506600017,-14.243584893999952],[47.943532748000024,-14.232517185],[47.949880405000066,-14.216241143999966],[47.95386803500011,-14.19898853999996],[47.95533287900011,-14.185235283999944],[47.95167076900023,-14.162367445999946],[47.94174238400015,-14.134860935],[47.92652428500016,-14.111016533999845],[47.90699303500011,-14.09970468499995],[47.92009524800008,-14.08603281],[47.941579623000194,-14.091892184999864],[47.98267662900017,-14.120782158999958],[47.99073326900012,-14.1249325499999],[47.9993595710001,-14.128187757999866],[48.00749759200002,-14.13258229000003],[48.013682488000114,-14.140557549999897],[48.01498457100009,-14.153578382999967],[48.00855553500011,-14.163181247999956],[48.00025475400011,-14.172539971999896],[47.996267123000024,-14.185235283999944],[47.993011915000096,-14.21070728999996],[47.97852623800023,-14.26238372199999],[47.97527103000019,-14.288262627999911],[47.97510826900023,-14.297295830999914],[47.976573113000114,-14.312920831],[47.98275800900015,-14.325372002999925],[47.996267123000024,-14.325616143999964],[48.002940300000056,-14.317559502999842],[48.003428582000055,-14.306247653999861],[48.002126498000074,-14.29452890399996],[48.00310306100007,-14.28525156],[48.010915561000076,-14.27906666500003],[48.023773634000094,-14.271172783999873],[48.03394616000011,-14.26238372199999],[48.03394616000011,-14.253838799999883],[48.02605228000007,-14.24488697699995],[48.01832116000011,-14.233493747999972],[48.01246178500017,-14.221123955999857],[48.01050866000011,-14.209567966999927],[48.01775149800008,-14.18759531],[48.0447697270001,-14.151625257999925],[48.05095462300008,-14.130303643999966],[48.05095462300008,-14.107110283999845],[48.0481876960001,-14.084079684999963],[48.03931725400017,-14.066338799999967],[47.99968509200002,-14.053155205999914],[47.977549675000056,-14.038018487999835],[47.941091342000185,-14.004082940999965],[48.01710045700011,-13.965427341999927],[48.01710045700011,-13.952813408999944],[47.96900475400011,-13.922133070999934],[47.92872155000006,-13.90634531],[47.917491082000055,-13.897637627999913],[47.891286655000016,-13.849704684999905],[47.875824415000096,-13.784274997999859],[47.88379967500006,-13.728448174999953],[47.92750084700006,-13.709242445999905],[47.916840040000096,-13.693780205999985],[47.90455162900017,-13.688083591999913],[47.895192905000016,-13.67896900799991],[47.89323978000019,-13.653985283999901],[47.89633222700016,-13.632989190999865],[47.904307488000114,-13.603204033999859],[47.9178166020001,-13.582614842],[47.93799889400012,-13.589125257999823],[47.95297285200015,-13.590264580999857],[47.96119225400017,-13.565524997999958],[47.96558678500011,-13.520765882999838],[47.97413170700017,-13.51311614399999],[47.98487389400006,-13.506768487999878],[47.995371941000116,-13.506768487999878],[48.00310306100007,-13.517347915],[47.99887129000015,-13.52361419099988],[47.98878014400005,-13.531914971999937],[47.982595248000194,-13.543145440999949],[47.989512566000116,-13.558363539999931],[47.99512780000012,-13.55535247199984],[48.00489342500006,-13.553399346999882],[48.01050866000011,-13.551527601999823],[48.005137566000165,-13.563653253],[48.007334832000055,-13.574802341999927],[48.01531009200002,-13.580173434999978],[48.02711022200012,-13.575127862999949],[48.031016472000175,-13.566827080999957],[48.03126061300023,-13.558038018999909],[48.035329623000194,-13.549981377999956],[48.05095462300008,-13.544122002999927],[48.03256269600015,-13.524590752999854],[48.03126061300023,-13.517185153999947],[48.06836998800023,-13.517347915],[48.08366946700019,-13.52874114399998],[48.09058678500011,-13.554294528999876],[48.094248894000174,-13.581801039999988],[48.099375847000175,-13.599379165000016],[48.12712649800008,-13.587009372999901],[48.1424259770001,-13.595391533999956],[48.150075717000014,-13.615899347],[48.15455162900011,-13.640313408999873],[48.171885613000114,-13.685642184999878],[48.17448978000019,-13.702406507999896],[48.17448978000019,-13.709242445999905],[48.17530358200011,-13.715997002999854],[48.17839603000019,-13.72136809699991],[48.194021030000066,-13.726983331],[48.19166100400011,-13.734633070999848],[48.18132571700019,-13.74675872199984],[48.19239342500006,-13.76685963299988],[48.21851647200012,-13.785821221999896],[48.248220248000024,-13.799981377999913],[48.270355665000096,-13.805352471999967],[48.29867597700016,-13.798272393999907],[48.327403191000116,-13.779961846999853],[48.3411564460001,-13.755547783999901],[48.32455488400015,-13.72966887799997],[48.331553582000225,-13.714125257999967],[48.33204186300023,-13.66139088299998],[48.33765709700006,-13.645196221999923],[48.35596764400012,-13.612969658999987],[48.35954837300008,-13.599379165000016],[48.3377384770001,-13.564141533999987],[48.3333439460001,-13.546319268999909],[48.352712436000076,-13.53785572699988],[48.36426842500006,-13.543552341999956],[48.39356530000006,-13.585707289999903],[48.39869225400011,-13.567152601999979],[48.40739993600019,-13.549248955999929],[48.417653842000135,-13.534274997999987],[48.4275822270001,-13.524183851999851],[48.44044030000006,-13.519626559999978],[48.4592391290001,-13.51653411299999],[48.47771243600013,-13.51572031],[48.489756707000225,-13.517347915],[48.48951256600017,-13.512383721999967],[48.49008222700016,-13.50204843499995],[48.489756707000225,-13.49700286299992],[48.51286868600018,-13.516778252999941],[48.524668816000116,-13.523044528999902],[48.53419030000006,-13.520765882999838],[48.53199303500017,-13.511976820999962],[48.514496290000096,-13.476983330999872],[48.50660241000011,-13.4491513],[48.48902428500011,-13.426527601999851],[48.48226972700016,-13.415134372999972],[48.47925866000017,-13.401625257999896],[48.478688998000194,-13.387790622999987],[48.48226972700016,-13.36044687299993],[48.49789472700016,-13.363946221999923],[48.50700931100002,-13.373142184999978],[48.514008009000094,-13.384454033999972],[48.52393639400012,-13.39462655999992],[48.52442467500012,-13.410902601999865],[48.542735222000175,-13.422946872999873],[48.595713738000114,-13.44345468499992],[48.60499108200005,-13.44548919099995],[48.61500084700006,-13.444024346999894],[48.62696373800006,-13.438653252999842],[48.63941491000011,-13.43572356599999],[48.65202884200008,-13.437676690999865],[48.66382897200006,-13.441094658999873],[48.67465254000015,-13.442315362999892],[48.71094811300023,-13.432305597],[48.7474064460001,-13.411553643999909],[48.78012129000015,-13.383884373],[48.805023634000094,-13.352959893999952],[48.78760826900012,-13.333103122999958],[48.80193118600019,-13.3046200499999],[48.839203321000156,-13.260430596999882],[48.835948113000114,-13.24814218499992],[48.82129967500012,-13.22486744599982],[48.81812584700006,-13.209242445999832],[48.818695509000094,-13.176364842000012],[48.82097415500019,-13.15960051899999],[48.84351647200006,-13.080824476999851],[48.8567814460001,-13.052992445999891],[48.884532097000175,-13.016534112999835],[48.89226321700008,-13.001071872999901],[48.898203972,-12.984958591999927],[48.90064537900011,-12.972426039999931],[48.905528191000116,-12.961114190999936],[48.917246941000116,-12.946221612999977],[48.930837436000076,-12.933363539999874],[48.94166100400017,-12.92839934699991],[48.937266472000175,-12.90309010199988],[48.953135613000114,-12.838474216999927],[48.95533287900016,-12.811700127999927],[48.949554884000094,-12.798923434999978],[48.929453972000175,-12.775485934999907],[48.921153191000116,-12.763360283999916],[48.91472415500019,-12.74960702899999],[48.91081790500019,-12.738376559999978],[48.9056095710001,-12.69353606599988],[48.90186608200017,-12.68238697699995],[48.8869735040001,-12.660821221999853],[48.88070722700015,-12.656996351999837],[48.87525475400011,-12.658461195999891],[48.870290561000076,-12.65764739399988],[48.86589603000018,-12.647230726999894],[48.86622155000012,-12.637139580999914],[48.87110436300006,-12.631280205999886],[48.876719597000175,-12.626397393999907],[48.88013756600017,-12.619317315999936],[48.87940514400023,-12.611016533999873],[48.873708530000066,-12.598809502999899],[48.87330162900017,-12.59197356599988],[48.884532097000175,-12.567478122999844],[48.8869735040001,-12.564629815999908],[48.87940514400023,-12.552666924999869],[48.86793053500011,-12.551446221999853],[48.85385175900009,-12.556817315999822],[48.839203321000156,-12.564629815999908],[48.83871504000009,-12.535251559999907],[48.829844597,-12.518487237999878],[48.79761803500017,-12.489515882999882],[48.782074415000096,-12.448825778999904],[48.77369225400011,-12.435235283999859],[48.7708439460001,-12.45476653399983],[48.72999108200022,-12.434991143999907],[48.74203535200016,-12.425388278999918],[48.7596134770001,-12.398125908999845],[48.7708439460001,-12.397067966999884],[48.78288821700019,-12.402601820999806],[48.79363040500018,-12.40569426899988],[48.818532748000024,-12.40699635199988],[48.85271243600002,-12.41375090899983],[48.87387129000015,-12.431735934999862],[48.90406334700006,-12.488946221999823],[48.91504967500012,-12.494805596999868],[48.93067467500006,-12.49016692499984],[48.94581139400006,-12.479913018999824],[48.95533287900016,-12.4691708309999],[48.95948326900011,-12.454196872999859],[48.962168816000116,-12.400811455999829],[48.964366082000105,-12.394952080999872],[48.975759311000076,-12.373467705999843],[48.97584069100011,-12.368340752999842],[48.973968946000156,-12.35418059699991],[48.975759311000076,-12.346123955999872],[48.98462975400011,-12.333428643999824],[48.997406446000156,-12.323663018999866],[49.01156660200016,-12.32000090899983],[49.02418053500017,-12.325778903999876],[49.030772332000225,-12.307875257999825],[49.041188998000194,-12.299411716999884],[49.05339603000019,-12.291924737999821],[49.06519616000017,-12.277276299999896],[49.07992597700016,-12.29517994599986],[49.09294681100002,-12.281508070999834],[49.10572350400017,-12.257012627999899],[49.119802280000016,-12.242608330999829],[49.13624108200011,-12.256117445999806],[49.151215040000146,-12.250746351999851],[49.16260826900012,-12.234470309999907],[49.16822350400011,-12.215915622999901],[49.16700280000012,-12.208184502999899],[49.16358483200011,-12.200941664999874],[49.16065514400005,-12.192803643999852],[49.161387566000116,-12.181735934999905],[49.16684004000015,-12.170586846999894],[49.17448978000007,-12.164320570999848],[49.182465040000096,-12.159763278999902],[49.18921959700006,-12.153741143999893],[49.1990666020001,-12.152032158999887],[49.201508009000094,-12.146661065999837],[49.195485873000194,-12.133396091999899],[49.18685957100009,-12.12363046699987],[49.18018639400023,-12.12200286299985],[49.17261803500011,-12.12265390399989],[49.161387566000116,-12.1195614559999],[49.156423373000024,-12.115329684999876],[49.15308678500011,-12.10947030999985],[49.14877363400009,-12.10344817499984],[49.14087975400011,-12.098565362999864],[49.12989342500006,-12.096774997999873],[49.093028191000116,-12.098565362999864],[49.10645592500011,-12.080254815999893],[49.146657748000194,-12.067559502999842],[49.161387566000116,-12.05071379999984],[49.17652428500011,-12.061130466999927],[49.209157748000024,-12.106052341999842],[49.215993686000076,-12.098565362999864],[49.22339928500011,-12.106052341999842],[49.2244572270001,-12.086683851999823],[49.21680748800006,-12.065036716999913],[49.20199629000009,-12.04810963299984],[49.18189537900016,-12.043877862999821],[49.18580162900017,-12.033786716999856],[49.19206790500019,-12.026950778999845],[49.19849694100011,-12.021579684999878],[49.202891472000175,-12.016696872999901],[49.213063998000024,-12.012302341999927],[49.215993686000076,-12.009698174999839],[49.21469160200015,-12.006524346999868],[49.21127363400015,-12.000420830999872],[49.20948326900006,-11.993259372999844],[49.21257571700008,-11.985935153999918],[49.242523634000094,-11.953708591999884],[49.26002037900017,-11.943617445999834],[49.278086785000106,-11.947686455999886],[49.28834069100011,-11.954847914999915],[49.31592858200022,-11.985935153999918],[49.322601759000094,-12.00009530999985],[49.32276451900023,-12.02890390399989],[49.3294376960001,-12.040785414999931],[49.349131707000225,-12.06617603999986],[49.351735873000024,-12.09050872199984]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mali","sov_a3":"MLI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mali","adm0_a3":"MLI","geou_dif":0,"geounit":"Mali","gu_a3":"MLI","su_dif":0,"subunit":"Mali","su_a3":"MLI","brk_diff":0,"name":"Mali","name_long":"Mali","brk_a3":"MLI","brk_name":"Mali","brk_group":null,"abbrev":"Mali","postal":"ML","formal_en":"Republic of Mali","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mali","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":7,"pop_est":12666987,"gdp_md_est":14590,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"ML","iso_a2":"ML","iso_a3":"MLI","iso_n3":"466","un_a3":"466","wb_a2":"ML","wb_a3":"MLI","woe_id":23424891,"woe_id_eh":23424891,"woe_note":"Exact WOE match as country","adm0_a3_is":"MLI","adm0_a3_us":"MLI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MLI.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-4.821225545999908,24.99475453700003],[-4.744925292999881,24.947057190000066],[-4.668676716999954,24.8993340050001],[-4.592350626999917,24.85168833400007],[-4.516024536999879,24.803990987000105],[-4.404946044999889,24.73130808500005],[-4.325235148999923,24.6792182420001],[-4.245498412999979,24.627076721000037],[-4.165865030999925,24.574986878000086],[-4.086154134999958,24.52289703400004],[-4.006494913999944,24.470807190000073],[-3.926732340999962,24.41871734700004],[-3.846995604999904,24.36657582600006],[-3.767336384999851,24.314434306000095],[-3.687625487999896,24.262344462000044],[-3.608017943999868,24.21020294200008],[-3.528281209999903,24.158113098000115],[-3.448544473999931,24.106023255000053],[-3.368807738999863,24.053959249000116],[-3.289122680999924,24.001843567000066],[-3.209489298999898,23.949702047000102],[-3.129649210999986,23.89761220300005],[-3.043065347999857,23.84092315700013],[-2.956403971999919,23.78423411000003],[-2.869768432999876,23.72762257900004],[-2.78310705599992,23.670985209000065],[-2.696445678999879,23.61434783900006],[-2.609835977999864,23.557684632000072],[-2.523226277999924,23.500995585000084],[-2.436513224999942,23.444358216000097],[-2.349851846999911,23.387746684],[-2.263190470999859,23.331109314000116],[-2.176632446999861,23.274446106000113],[-2.089919392999889,23.217757060000025],[-2.003309692999949,23.16104217500009],[-1.916648315999907,23.104456482000042],[-1.830038614999893,23.047819112000038],[-1.74332556199991,22.991181743000052],[-1.656715860999981,22.93457021100008],[-1.570054484999929,22.877881165000076],[-1.483496459999912,22.821166280000057],[-1.39678340599994,22.76455474900007],[-1.310122029999917,22.707969055],[-1.223512328999959,22.651280009000086],[-1.136902627999859,22.594642640000103],[-1.050189575999894,22.53795359300011],[-0.963579874999937,22.48126454700011],[-0.876918497999895,22.42462717700002],[-0.790308796999881,22.36804148300004],[-0.703647419999925,22.31140411400005],[-0.616934366999971,22.25476674400008],[-0.530324665999927,22.198077698000077],[-0.443663289999989,22.141388651000057],[-0.357027749999958,22.08475128200007],[-0.270392211999905,22.028113913000084],[-0.183730834999949,21.97147654300008],[-0.097043619999909,21.914839173000104],[-0.010408080999866,21.85815012600011],[0.003734557000115,21.848898800000086],[0.07625329600009,21.8014610810001],[0.162966350000119,21.744823711],[0.249498535000043,21.68823801700003],[0.336159912000085,21.631600647000138],[0.422795451000127,21.57496327700005],[0.509456827000093,21.518274231000046],[0.596066528000108,21.461585185000047],[0.682676229000151,21.404896139000044],[0.769389282000105,21.348310445000067],[0.855998983000035,21.29167307500009],[0.94260868300006,21.235035706000104],[1.029321737000117,21.178346660000102],[1.146523885000079,21.10171051100008],[1.15933964000007,21.08150502500007],[1.177943156000111,21.017322896000053],[1.180113566000102,20.995308736000055],[1.167504516000065,20.88601308200006],[1.145283651000057,20.795889384000077],[1.144560180000042,20.776252340000042],[1.147247355000076,20.75144765200011],[1.154585408000059,20.73878692600007],[1.168538045000048,20.733464254000125],[1.191275675000043,20.730570374000134],[1.212463012000086,20.73088043200002],[1.252253865000114,20.7389936320001],[1.273337850000132,20.739407044000128],[1.296695597000081,20.733464254000125],[1.310544881000055,20.72271555600008],[1.331525512000042,20.68793731700015],[1.346925089000109,20.669127095000135],[1.363978312000057,20.657706605000044],[1.407179810000088,20.645045879000094],[1.447487426000066,20.638741353000086],[1.465780884000111,20.633522034000062],[1.483454223000109,20.62261830700001],[1.520351196000149,20.616985576000076],[1.559728637000148,20.59750356100008],[1.623704060000136,20.551253154000108],[1.643961222000115,20.522676087000036],[1.650059041000077,20.487019348000047],[1.649232219000055,20.4120885210001],[1.659154093000069,20.397515767000044],[1.778113241000085,20.304291484000117],[1.799197225000114,20.29488637300005],[1.820901326000097,20.29359446300009],[1.838884725000099,20.295919902000037],[1.855007771000089,20.294834697000056],[1.870614054000015,20.283543396000084],[1.880329223000046,20.26305369100001],[1.88384322100012,20.244140117000057],[1.891387980000075,20.231789449000104],[1.91340214000013,20.23109181700002],[1.924254191000102,20.236130270000075],[1.941204061000093,20.251116435000053],[1.955260050000106,20.2549146530001],[1.967145629000044,20.25341603600009],[1.975620564000053,20.248429260000137],[1.983372030000055,20.24191803000005],[1.993397257000084,20.235949402000042],[2.056339152000077,20.215046285000057],[2.07122196500012,20.213263448000074],[2.097473592000142,20.224193013000047],[2.138194620000121,20.260728251000074],[2.161345662000116,20.27493927100005],[2.182429647000049,20.278504944000105],[2.200826456000129,20.273905742000068],[2.218189738000149,20.26408722000008],[2.279581339000031,20.21794016600006],[2.316478312000072,20.18016469300008],[2.348207641000073,20.137634989000016],[2.388721964000097,20.067406718000143],[2.400400838000053,20.056554667000086],[2.415697062000021,20.051283671000075],[2.439881632000095,20.046090190000058],[2.459311970000073,20.038777975000073],[2.495382120000073,20.0200969440001],[2.514812459000041,20.015936992000064],[2.525664510000098,20.01516184500005],[2.616925089000091,19.998367004000073],[2.671805461000105,19.9962224330001],[2.946000610000112,19.94165212000007],[3.072607869000109,19.88889048300004],[3.130485473000135,19.845223898000086],[3.147021932000115,19.837937520000082],[3.183195435000044,19.82773142500011],[3.198801717000094,19.820522562000065],[3.212754353000093,19.807758484000086],[3.216785116000068,19.794064230000085],[3.198284952000051,19.592396953000076],[3.199421834000077,19.553768819000084],[3.21223758900004,19.517156067000144],[3.217508585000076,19.51116160100011],[3.222882935000143,19.508061015000067],[3.228050578000136,19.50415944400001],[3.232288046000093,19.495477804000046],[3.231667928000121,19.4890440880001],[3.226190226000142,19.469200338000093],[3.225983520000085,19.459691874000043],[3.23476851400008,19.441346741000046],[3.247480916000114,19.426463928000086],[3.258229614000129,19.410392558000122],[3.260813436000149,19.388326722000045],[3.250994914000074,19.365459900000104],[3.232701457000104,19.35184316100012],[3.211514119000043,19.340861919000133],[3.192910604000105,19.32579823800006],[3.183815551000123,19.307504782000077],[3.178854614000073,19.268721619000132],[3.174410441000077,19.2516425580001],[3.152706340000066,19.230196839000058],[3.139270467000102,19.221928610000106],[3.134206176000134,19.212859396000056],[3.126558065000069,19.193351543000063],[3.11177860500004,19.171337382000075],[3.102683553000076,19.153560690000063],[3.104130493000071,19.135525615000063],[3.120873657000118,19.112813823000067],[3.138753703000077,19.096044820000117],[3.158597452000066,19.081549581000075],[3.179784790000042,19.069999899000038],[3.225983520000085,19.051060486000097],[3.284894653000094,18.995740866000062],[3.308355754000075,18.981684876000145],[3.318380981000075,18.977705790000073],[3.33305708800006,18.97556121800008],[3.358688598000128,18.976853129000034],[3.439717245000054,18.995637513000133],[3.439820598000068,18.995637513000133],[3.544620402000049,19.01506785100011],[3.715566040000112,19.04690053300007],[3.790290968000078,19.06077027500004],[3.886511678000147,19.0786298620001],[4.057560669000026,19.110436707000133],[4.228609660000103,19.142243551000064],[4.229023071000114,19.01858184900007],[4.22943648200004,18.89494598400009],[4.22984989400004,18.771284281000078],[4.230263305000051,18.647648417000084],[4.230270912000066,18.645373847000087],[4.230676717000051,18.524038392000108],[4.23109012900008,18.400325012000078],[4.231503540000091,18.276740824000115],[4.231916952000091,18.15310496000012],[4.232227010000088,18.0294432580001],[4.232408236000055,17.975233873],[4.232640421000099,17.905781556000107],[4.233053832000109,17.78211985300001],[4.233363892000085,17.65845815100002],[4.233777303000096,17.534796448000122],[4.234294067000036,17.411186422000128],[4.234707479000065,17.287524719000118],[4.235017537000147,17.16391469400014],[4.235327596000019,17.100817770000106],[4.235637655000119,16.995862935000076],[4.222305135000084,16.986561177000052],[4.211659790000083,16.986044413000116],[4.203701619000128,16.98278879800003],[4.197810506000025,16.965218811000057],[4.196570272000088,16.947132060000058],[4.202047974000095,16.848895162000048],[4.197603800000081,16.838508199000042],[4.184581339000117,16.818509420000083],[4.181997518000031,16.80962107400009],[4.182307576000113,16.74647247300004],[4.18303104600011,16.612682190000072],[4.183444458000025,16.526537578000074],[4.183961222000079,16.41605336500004],[4.175899699000069,16.39264394100007],[4.161740356000023,16.37998321500004],[4.118228800000111,16.358330790000053],[4.094767700000119,16.340812480000096],[4.075647420000053,16.321072083000047],[4.060557902000141,16.298334453000052],[3.97115767400004,16.086099345],[3.9669202070001,16.058504130000102],[3.970847615000053,16.030857239000085],[3.983249959000119,16.001349996000073],[3.98397342900003,16.000109762000136],[3.984490193000084,15.998766175000071],[3.984696899000113,15.997370911000075],[3.984593546000099,15.99592397100008],[3.984800253000059,15.98982615200012],[3.984180135000088,15.986880595000029],[3.983249959000119,15.983986715000043],[3.925062296000107,15.927607727000035],[3.909869425000096,15.904766744000112],[3.903461548000053,15.886318258000102],[3.894469849000103,15.788649801000075],[3.886511678000147,15.75009918300009],[3.873849402000075,15.720881837000093],[3.871215454000093,15.714804179000112],[3.846100708000079,15.6852969360001],[3.808376912000113,15.665582377000135],[3.728898559000129,15.650880432000035],[3.69220829300005,15.631450094000058],[3.61407352700013,15.54773427400002],[3.526533651000136,15.49595448900004],[3.516508423000118,15.46918609700009],[3.507103312000055,15.353973491000074],[3.488809855000085,15.357539164000045],[3.483332153000106,15.35929616300011],[3.380392700000129,15.376323547000139],[3.192290486000018,15.407510274000117],[3.07302128000012,15.427198995000069],[3.033540487000096,15.426449687000074],[3.017520792000141,15.422832337000088],[3.010286092000086,15.417664693000077],[3.00780562300011,15.407665304000147],[3.005841919000062,15.389294332000077],[3.005738566000047,15.352319844000121],[3.000157511000111,15.339116516000045],[2.95065148900008,15.337462871000085],[2.854119914000137,15.334207256000099],[2.757484985000076,15.33108083100005],[2.660953410000047,15.327825216000067],[2.564215128000086,15.324595439000092],[2.467683553000142,15.321417338000115],[2.371048624000081,15.31823923800006],[2.274517049000053,15.314983623000073],[2.177882121000096,15.311831360000028],[2.081350545000078,15.30857574400004],[1.984612264000077,15.305397645000072],[1.888080689000077,15.302193706000095],[1.791445760000101,15.298989766000131],[1.694914185000073,15.295734151000145],[1.598382608000065,15.292607728000092],[1.501747680000079,15.289352112000117],[1.405216105000079,15.286148173000143],[1.331525512000042,15.283616028000052],[1.297832478000089,15.275735372000115],[1.27085738100007,15.259896546000107],[1.203161255000055,15.198789165000107],[1.123062784000098,15.12631296800002],[1.057537069000091,15.067117615000129],[0.973717895000021,14.991256612000115],[0.949326619000089,14.979551900000047],[0.922144816000099,14.973970845000123],[0.769182577000066,14.96906158500009],[0.73993371600011,14.958338725000074],[0.71140832500015,14.947460836000118],[0.683813110000045,14.94087209100013],[0.670067180000018,14.939735209000121],[0.514831177000133,14.993556213000133],[0.483515259000029,14.992109274000141],[0.418790527000056,14.969888408000116],[0.387035359000038,14.96324798600011],[0.353187297000119,14.963428854000156],[0.221257365000071,14.995933329000096],[0.213195841000072,14.985417175000121],[0.212782430000061,14.960715841000123],[0.218466838000012,14.910977275000109],[-0.033197387999962,14.995933329000096],[-0.033404092999916,14.995933329000096],[-0.166987670999902,15.049676819000098],[-0.236699177999867,15.065618999000035],[-0.29917598499992,15.054741110000064],[-0.361471923999943,15.017740784000113],[-0.3976712649999,15.002134501000072],[-0.425731567999918,15.002599589000097],[-0.435601765999905,15.015156962000106],[-0.458649454999943,15.075463359000096],[-0.46789953699988,15.079907532000107],[-0.500343259999852,15.07972111200013],[-0.719718790999906,15.078460592000111],[-0.752895059999901,15.069727274000043],[-0.771271818999935,15.056619155000122],[-0.782815714999941,15.048384908000044],[-0.836249145999943,14.99608835900004],[-0.836404174999899,14.995985006000097],[-1.04313815399999,14.818061606000127],[-1.0433166099999,14.817908020000118],[-1.078559936999909,14.79635894800016],[-1.116697143999943,14.780442606000136],[-1.307744913999954,14.734657287000104],[-1.350274617999929,14.71496856700014],[-1.696920124999906,14.496118877000086],[-1.766683308999859,14.483173930000078],[-1.836963256999866,14.479582418000092],[-1.919128784999884,14.485861104000092],[-1.967032836999891,14.483742371000119],[-1.997056843999957,14.470694072000086],[-2.005015014999913,14.44423573900009],[-2.023411824999926,14.198643494000066],[-2.02728755699988,14.188127340000108],[-2.035917520999902,14.181228536000035],[-2.085007889999929,14.159668076000116],[-2.104337116999914,14.151178691000068],[-2.119840046999911,14.148775736000104],[-2.151879435999916,14.156139628000103],[-2.385611938999915,14.264711813000105],[-2.461679646999897,14.28091237400011],[-2.516146605999893,14.267864075000162],[-2.597381958999961,14.222311300000086],[-2.619757853999943,14.203604431000102],[-2.676264864999893,14.141729055000068],[-2.693190063999907,14.123195903000067],[-2.840855468999933,14.04299408000007],[-2.8672879639999,14.000541891000125],[-2.86155188,14.00173044900015],[-2.858606323999936,14.000231832000054],[-2.857030191999911,13.997777201000089],[-2.855376545999973,13.996175232000056],[-2.89446976699989,13.866570740000041],[-2.912168945999895,13.837941996000055],[-2.928059447999914,13.799623922000135],[-2.923382731999936,13.74603546200008],[-2.895244913999903,13.651648458000139],[-2.930473113999966,13.63852269200008],[-2.965008096999952,13.625655213000071],[-2.972320312999926,13.624466655000063],[-2.979322468999953,13.627567241000092],[-2.986402139999967,13.632063090000116],[-2.994773721999934,13.634982808000103],[-3.019113321999953,13.637514954000094],[-3.02696813899999,13.6353445430001],[-3.038621174999946,13.629582621000054],[-3.05601029399989,13.61084991500006],[-3.067508300999918,13.606767477000046],[-3.074510457999907,13.622141215000113],[-3.07730098499988,13.636791483000096],[-3.082210245999903,13.646222433000062],[-3.100038614999931,13.662733053000053],[-3.125101683999958,13.677279968000107],[-3.146030639999935,13.676659851000124],[-3.16794144699989,13.6721123250001],[-3.195820882999953,13.674902852000058],[-3.240417642999887,13.707975769000143],[-3.26705684399991,13.71704498400011],[-3.286952269999915,13.69776967400007],[-3.266281696999925,13.682344258000084],[-3.259718789999937,13.658314718000057],[-3.263904581999952,13.602659200000119],[-3.269175577999903,13.579094747000125],[-3.283955037999903,13.542197774000101],[-3.248634195999927,13.292781474000037],[-3.26240596599996,13.28391896600003],[-3.426530314999866,13.274229635000097],[-3.448544473999931,13.26578053900009],[-3.45226517699993,13.237513530000115],[-3.440586303999879,13.202838643000092],[-3.439475259999881,13.184855245000108],[-3.449474649999985,13.168809713000144],[-3.461592773999882,13.16576080300011],[-3.473921513999898,13.16760134900008],[-3.516111408999989,13.173899841000036],[-3.538487304999876,13.173408916000099],[-3.54505021099996,13.17449412000009],[-3.553912719999857,13.180256043000057],[-3.569958251999935,13.196766663000048],[-3.576598672999921,13.199298808000037],[-3.589802001999913,13.197386780000114],[-3.596881673999945,13.199402161000066],[-3.678711303999876,13.261749776000102],[-3.724419108999882,13.288828227000067],[-3.798626464999955,13.347145081000107],[-3.81710078999987,13.354689840000063],[-3.858080199999903,13.365516052000089],[-3.892600056999896,13.378926087000139],[-3.908878133999906,13.381974996000068],[-3.928825235999938,13.380269674000104],[-3.948410603999946,13.38083811500006],[-3.971613321999939,13.386755066000163],[-3.984041503999919,13.396470235000109],[-3.971613321999939,13.408329977000037],[-3.963009195999916,13.41316172300013],[-3.94272619599991,13.431946107000044],[-3.934923054999985,13.434891663000142],[-3.925543781999949,13.436312765000125],[-3.918593302999853,13.440317689000025],[-3.91797318499988,13.45106638600005],[-3.923399210999946,13.45375356100007],[-3.947480427999892,13.458197733000075],[-3.956058715999916,13.461660055000024],[-3.959288492999917,13.467938741000124],[-3.964481974999927,13.487808329000117],[-3.965467786999852,13.48921725500007],[-3.970321410999901,13.496154074000088],[-3.974093790999916,13.498944601000048],[-3.977736979999918,13.499926453000114],[-3.981250976999973,13.498970439000061],[-3.984480753999947,13.49605072100006],[-3.997968302999908,13.480521953000048],[-3.992232217999856,13.476232809000079],[-3.97946813999988,13.475380147000052],[-3.971613321999939,13.469954122000075],[-3.976910155999889,13.460626526000041],[-3.990216837999923,13.449128520000116],[-4.005358031999918,13.439516704000098],[-4.016029215999936,13.43577016200008],[-4.028199014999927,13.43153269400004],[-4.043495239999885,13.414453634000097],[-4.052538614999946,13.409001771000106],[-4.079307006999926,13.402128804000142],[-4.087549397999851,13.397994690000118],[-4.104266723999899,13.382698466000065],[-4.114653685999912,13.364534200000037],[-4.131577718999921,13.323839010000071],[-4.147106485999927,13.29960276300008],[-4.16602005999988,13.278157044000068],[-4.176872110999938,13.272369283000089],[-4.186458088999927,13.272834371000116],[-4.195837361999878,13.274694723000025],[-4.205500854999912,13.27298940100006],[-4.220667887999923,13.262834982000099],[-4.238780476999949,13.246789450000037],[-4.253508259999933,13.229090271000118],[-4.258107461999913,13.214129944000149],[-4.251208658999929,13.204750671000113],[-4.230021321999885,13.19314931200006],[-4.227773396999851,13.184441834000097],[-4.234801391999952,13.175605164000089],[-4.246170206999864,13.172478740000143],[-4.310197306999953,13.175553488000077],[-4.327043823999928,13.168551331000074],[-4.339601195999933,13.13529754700005],[-4.345905720999951,13.127132670000037],[-4.351073363999944,13.118321839000131],[-4.351073363999944,13.106074524000107],[-4.345363117999909,13.097056987000142],[-4.316398478999928,13.070857036000135],[-4.289733439999907,13.013470358000049],[-4.276917683999898,12.996236267000157],[-4.247849690999914,12.971948344000069],[-4.229323689999887,12.948952331000115],[-4.221313842999905,12.921253764000085],[-4.224646971999903,12.864513041000066],[-4.211882893999927,12.819192810000061],[-4.213278157999923,12.807178039000092],[-4.234129597999896,12.74234995500008],[-4.243973957999856,12.729921774000104],[-4.245471962999915,12.728936319000098],[-4.257642373999971,12.720930074000151],[-4.276297565999926,12.714677226000063],[-4.297226521999931,12.712145081000074],[-4.310920775999932,12.716020813000114],[-4.339446166999892,12.732789816000079],[-4.368850056999889,12.738990988000067],[-4.402026325999913,12.736562195000104],[-4.435254271999924,12.728423157000094],[-4.464296426999908,12.717261048000069],[-4.464370141999893,12.717250671000086],[-4.474941771999909,12.715762431000142],[-4.481711384999954,12.717416077000095],[-4.485251220999913,12.714677226000063],[-4.491323200999972,12.662794088000068],[-4.48253820799988,12.646257630000065],[-4.43907832799988,12.61328806600011],[-4.422490193999863,12.597216695000043],[-4.401406209999918,12.55039784800003],[-4.392647053999951,12.537427063000095],[-4.387246866999902,12.533964742000151],[-4.38688513199989,12.530192363000126],[-4.393448038999878,12.516446431000091],[-4.407607380999906,12.497946269000067],[-4.426624308999891,12.479652812000097],[-4.443677530999906,12.459447327000104],[-4.451635700999873,12.435314433000144],[-4.415358845999918,12.350306702000054],[-4.406134602999913,12.307466939000108],[-4.435822712999879,12.301730856000063],[-4.444814412999932,12.309430644000143],[-4.452669229999856,12.320282695000103],[-4.46248775199993,12.328189189000057],[-4.477189696999915,12.327310690000104],[-4.4881709389999,12.320696106000113],[-4.490703084999893,12.313823141000043],[-4.49049637899995,12.305761617000144],[-4.49401037699991,12.290103659000094],[-4.492253376999912,12.278838196000038],[-4.493545288999968,12.272843730000105],[-4.497421019999932,12.268709615000091],[-4.585529337999958,12.197241109000075],[-4.560466267999857,12.149492086000095],[-4.570233113999905,12.138898417000107],[-4.600308796999883,12.137554830000056],[-4.636120564999914,12.117556051000108],[-4.646662556999956,12.098022360000101],[-4.648677937999906,12.081950989000049],[-4.652736852999851,12.07162677500007],[-4.653716389999886,12.069135233000068],[-4.673585977999892,12.059730123000108],[-4.683714558999924,12.059058330000113],[-4.704023396999957,12.061487122000088],[-4.714617065999931,12.059006653000111],[-4.72513321999989,12.05011830700009],[-4.732280930999963,12.037263094000124],[-4.73898250299996,12.025210266000029],[-4.7468889969999,12.015081686000073],[-4.761280883999916,12.006606751000078],[-4.789522053999889,12.001800842000065],[-4.806807819999988,11.99627146400006],[-4.826238159999946,12.01270457000004],[-4.847244628999873,12.01306630400012],[-4.889955199999889,11.99792511000011],[-4.910677449999895,11.998131816000068],[-4.93207149199992,12.00314443000012],[-4.953749755999922,12.005108134000068],[-4.975453857999895,11.99627146400006],[-4.984523070999956,11.988571676000078],[-4.994238239999902,11.983249003000125],[-5.004702717999862,11.980665182000124],[-5.016045694999945,11.981285299000092],[-5.034313313999888,11.979269918000043],[-5.073768269999931,11.980510152000079],[-5.089322875999954,11.979269918000043],[-5.103947306999913,11.972758688000068],[-5.136994383999905,11.953121644000134],[-5.167819376999972,11.943664856000067],[-5.182908894999883,11.930900777000105],[-5.209470580999891,11.901496887000107],[-5.248227904999908,11.870439351000073],[-5.268226684999945,11.843050842000125],[-5.275151325999928,11.837418111000105],[-5.2824893799999,11.836436259000038],[-5.288018757999936,11.839123433000069],[-5.293444782999899,11.84320587200007],[-5.300162719999918,11.846358134000127],[-5.306518920999878,11.846048076000045],[-5.311066446999887,11.842895813000084],[-5.314838825999914,11.839330139000111],[-5.319024616999855,11.837418111000105],[-5.35380285699992,11.831733704000058],[-5.357058471999892,11.82961497000008],[-5.364551553999917,11.82176015300014],[-5.369874226999883,11.820158183000101],[-5.375610310999917,11.822225241000067],[-5.387909301999883,11.830803528000102],[-5.392301798999966,11.832353821000126],[-5.405944376999884,11.830441793000105],[-5.412352254999917,11.828529765000084],[-5.412197224999971,11.823568828000132],[-5.405996052999882,11.812303365000076],[-5.400414997999889,11.810184631000098],[-5.374525105999851,11.795250142000041],[-5.370649373999896,11.7910643510001],[-5.353286091999877,11.79452667300005],[-5.344656127999912,11.793906555000078],[-5.33426916499991,11.790805970000136],[-5.314787150999905,11.78248606400008],[-5.298974161999921,11.772667542000107],[-5.287140258999898,11.758921611000076],[-5.279543822999926,11.739026185000071],[-5.278561970999874,11.721456197000093],[-5.280680704999924,11.699493713000038],[-5.289258992999862,11.66042633100011],[-5.294788370999868,11.650297750000064],[-5.302281452999921,11.63985911100012],[-5.307810831999916,11.629007060000077],[-5.307604125999944,11.617638244000089],[-5.299956013999889,11.606424459000037],[-5.29096431499994,11.604460755000105],[-5.28073238099995,11.605752666000058],[-5.269466918999882,11.604099019000103],[-5.233913533999925,11.575987040000072],[-5.22466345199993,11.540769551000096],[-5.224611775999904,11.458009746000114],[-5.219185749999923,11.435142924000102],[-5.218307250999885,11.422197978000085],[-5.22642045099991,11.413490499000119],[-5.24817622899991,11.403181051000118],[-5.263472452999878,11.390184428000083],[-5.267864949999961,11.372020162000055],[-5.260940307999874,11.267737122000113],[-5.262852335999895,11.25158823700012],[-5.275254678999971,11.230710958000145],[-5.306725626999906,11.199395040000141],[-5.316182413999883,11.176321513000074],[-5.322331908999956,11.135548808000095],[-5.332512166999919,11.121570333000093],[-5.356283325999897,11.106894227000112],[-5.373026488999926,11.099762879000082],[-5.390131387999872,11.094698589000103],[-5.48976354999985,11.082115377000079],[-5.504232950999977,11.072684428000116],[-5.507333536999909,11.056948954000049],[-5.505602479999964,11.047984824000068],[-5.495602986999927,10.996203308000132],[-5.501804157999913,10.970210063000081],[-5.47911820499985,10.975532736000119],[-5.46557897999989,10.94788584400011],[-5.44702714099992,10.87799347000012],[-5.435089883999893,10.856909485000088],[-5.431420857999909,10.844688009000066],[-5.445321817999883,10.786991273000098],[-5.445011759999886,10.7785680140001],[-5.44645869999988,10.768697815000124],[-5.452969929999938,10.763969421000127],[-5.461186482999892,10.760042013000074],[-5.467956095999909,10.752678121000073],[-5.473072061999914,10.737872823000146],[-5.482632201999905,10.684232687000074],[-5.48211543799988,10.675215149000124],[-5.477154499999926,10.658807882000062],[-5.47591426599999,10.650384623000079],[-5.46056636599991,10.6445710240001],[-5.470488239999924,10.635605164000154],[-5.477412882999886,10.619559632000103],[-5.478549763999894,10.604237569000134],[-5.471056680999965,10.597364604000077],[-5.46811112499995,10.587830302000086],[-5.481650349999938,10.535327047000107],[-5.505163126999918,10.499179383000097],[-5.508987182999874,10.490936992000059],[-5.517100382999956,10.439984029000101],[-5.522578084999878,10.425488790000074],[-5.549708211999927,10.43564320900012],[-5.571722371999925,10.449880066000091],[-5.584383097999961,10.45424672500009],[-5.594046589999891,10.453936666000104],[-5.621796834999913,10.44693451000009],[-5.677555704999889,10.441508484000124],[-5.80628169799985,10.413474020000109],[-5.878060261999849,10.376060283000129],[-5.893304809999989,10.365027364000142],[-5.904828653999914,10.348284201000098],[-5.908962767999952,10.330068258000054],[-5.9047253009999,10.275291239000069],[-5.916404174999883,10.266635437000105],[-5.963016316999926,10.282732645000081],[-5.974746866999908,10.273637594000107],[-5.978312540999895,10.248626200000118],[-5.985237182999867,10.227283834000119],[-5.997122762999908,10.208189392000122],[-6.015932982999914,10.189870097000053],[-6.105333210999902,10.189275818000084],[-6.180884154999916,10.215837504000106],[-6.194320027999879,10.224183248000074],[-6.21400874899993,10.247851054000108],[-6.224809122999972,10.255034078000064],[-6.240001993999897,10.251933492000106],[-6.243309285999885,10.28901133300009],[-6.240673787999867,10.302576396000077],[-6.228323119999914,10.316089783000052],[-6.225894327999868,10.314487813000113],[-6.221140095999971,10.310353699000089],[-6.214370483999914,10.307795716000086],[-6.206153929999886,10.310818787000116],[-6.203983520999913,10.31603810700004],[-6.20537878399989,10.322626851000123],[-6.207807576999954,10.328517965000117],[-6.208324340999894,10.331980286000158],[-6.183933064999877,10.358852031000067],[-6.198764200999989,10.370815125000105],[-6.195663614999944,10.389211934000116],[-6.180574096999948,10.420217794000036],[-6.196903848999881,10.439157207000079],[-6.200366170999928,10.448769023000096],[-6.198195759999919,10.457398987000133],[-6.187498737999931,10.475408224000134],[-6.185793416999957,10.481325176000041],[-6.190289265999894,10.491143698000101],[-6.196128702999971,10.494683533000071],[-6.204190226999855,10.494373474000085],[-6.215662393999878,10.492616476000109],[-6.222432006999924,10.494631857000059],[-6.228168090999873,10.500574646000073],[-6.233490763999924,10.507576802000074],[-6.238658406999917,10.512744446000085],[-6.247650105999866,10.513829651000078],[-6.256021687999947,10.511607565000077],[-6.261292683999983,10.51408803300005],[-6.260930948999885,10.529151714000136],[-6.256228392999901,10.537239075000128],[-6.237934935999931,10.551941020000129],[-6.231372028999942,10.560235088000084],[-6.230028441999877,10.572043152000091],[-6.232870645999867,10.584109599000072],[-6.238658406999917,10.597984721000046],[-6.230700235999961,10.606924744000068],[-6.219796508999906,10.611859843000103],[-6.209771280999888,10.61775095700011],[-6.204448607999922,10.62961069800012],[-6.207807576999954,10.637543030000089],[-6.216902627999929,10.645087789000044],[-6.227754678999872,10.650849711000106],[-6.246616576999884,10.65761932400005],[-6.249458780999873,10.665603332000101],[-6.244446166999893,10.706866964000113],[-6.245841430999889,10.720742086000087],[-6.255970011999921,10.72647817000005],[-6.279999551999964,10.723274231000076],[-6.303564005999874,10.713171489000047],[-6.322219197999942,10.700484925000083],[-6.341701211999919,10.691441549000032],[-6.367539428999947,10.692268372000056],[-6.388054971999907,10.695523987000044],[-6.409810750999924,10.69438710600012],[-6.427019002999913,10.686093038000081],[-6.433995320999912,10.667928772000053],[-6.435855671999917,10.62870636000008],[-6.430688028999896,10.61496042900005],[-6.419060831999928,10.60769989100008],[-6.406658487999977,10.601860453000086],[-6.39921708199995,10.592481181000053],[-6.402782755999908,10.56912343400009],[-6.421489623999918,10.556591899000097],[-6.445984252999948,10.552251078000111],[-6.466964883999964,10.553542990000068],[-6.521380167999951,10.564214172000064],[-6.537554890999928,10.569691874000057],[-6.578069213999953,10.591137594000072],[-6.59858475799993,10.604909363000118],[-6.6136226,10.618474426000105],[-6.633983113999932,10.653020122000086],[-6.647108927999909,10.66134002700005],[-6.669174763999905,10.654157003000094],[-6.667882853999856,10.650901387000118],[-6.681938842999955,10.627388611000129],[-6.684212605999988,10.626561788000103],[-6.688966836999981,10.607854919000118],[-6.691085571999849,10.589432271000106],[-6.689225219999855,10.580931498000096],[-6.685607869999956,10.574006857000114],[-6.682817342999897,10.565971171000044],[-6.687778279999861,10.52047007200008],[-6.69754512499992,10.48830149400004],[-6.695788126999929,10.47119659400009],[-6.683075723999877,10.451688741000083],[-6.675634317999965,10.44786468600006],[-6.664627237999865,10.444557394000057],[-6.653981892999866,10.440035706000117],[-6.647780721999879,10.432697653000034],[-6.647935749999931,10.42187144000009],[-6.653051716999926,10.413060608000094],[-6.659614623999914,10.405360820000096],[-6.663955444999885,10.397996928000097],[-6.668270003999907,10.36583997700005],[-6.668916381999934,10.36102244100006],[-6.677391316999945,10.349033509000094],[-6.700335652999883,10.341669617000093],[-6.722556518999909,10.344046733000141],[-6.760228637999944,10.366112570000041],[-6.782087768999872,10.373037212000028],[-6.803895222999898,10.370866801000119],[-6.862754679999909,10.343840027000084],[-6.882029987999942,10.341256206000082],[-6.938719034999848,10.34833587700011],[-6.961249959999861,10.344873556000067],[-6.973135537999894,10.332290344000057],[-6.9971134029999,10.252760316000135],[-6.994891316999912,10.239401958000101],[-6.984297648999927,10.230384420000064],[-6.97117183499995,10.222064514000095],[-6.961611693999942,10.211031596000097],[-6.959389607999867,10.185503439000072],[-6.971636922999892,10.16441945400004],[-6.992410847999935,10.149097392000073],[-7.015768594999884,10.14088083900013],[-7.040521605999913,10.14005401700011],[-7.058246622999916,10.155970358000046],[-7.073129434999942,10.17852712000007],[-7.089459187999893,10.197569886000053],[-7.106357380999895,10.20725921600008],[-7.204749308999907,10.234492696000075],[-7.28402095499996,10.246559143000056],[-7.346962850999943,10.24790273100011],[-7.363395954999929,10.252191875000078],[-7.371819213999913,10.26451670400013],[-7.372697713999855,10.288597921000076],[-7.366341511999934,10.329448141000071],[-7.372335977999853,10.344770203000039],[-7.395021931999906,10.346217143000032],[-7.422203735999916,10.336088562000084],[-7.431402140999892,10.333737284000051],[-7.444424600999951,10.334202372000064],[-7.445768187999903,10.34037770600014],[-7.443287719999943,10.349963685000148],[-7.44468298399991,10.360815735000102],[-7.461477823999871,10.38864349300006],[-7.465456908999954,10.398617045000066],[-7.466180379999855,10.407479554000076],[-7.46535355599994,10.417995708000134],[-7.466180379999855,10.429493713000056],[-7.471606404999931,10.44109507200011],[-7.480236368999954,10.4502934770001],[-7.489848184999886,10.456107076000094],[-7.501475382999928,10.458639221000084],[-7.515841430999956,10.457812399000147],[-7.539612588999915,10.427633362000051],[-7.547415730999915,10.42050201500011],[-7.556381591999866,10.417272237000134],[-7.574339151999936,10.417530620000107],[-7.584416056999885,10.416522929000038],[-7.607773803999918,10.418719177000128],[-7.643688924999878,10.440474955000141],[-7.664411172999905,10.437141825000124],[-7.670043903999954,10.428770244000063],[-7.673971313999915,10.416393738000096],[-7.679035603999893,10.405929261000052],[-7.687923949999912,10.403087057000079],[-7.699809529999925,10.404533997000073],[-7.708646199999919,10.402466939000107],[-7.722288777999949,10.391330669000084],[-7.722288777999949,10.384483541000122],[-7.726784626999858,10.382881571000098],[-7.736034708999881,10.37828236900013],[-7.723994099999913,10.36360626200006],[-7.735337076999883,10.34709564200007],[-7.757428750999877,10.334047343000123],[-7.777582559999871,10.32986155200008],[-7.764405069999982,10.312911682000077],[-7.776342325999934,10.292732036000103],[-7.778254353999955,10.278340149000085],[-7.783835408999948,10.270433655000133],[-7.79122513799996,10.265782776000078],[-7.797736368999949,10.260279236000088],[-7.801250366999909,10.249453024000047],[-7.805074421999933,10.241830749000073],[-7.829000609999923,10.211651713000064],[-7.838664103999861,10.203719381000111],[-7.847423257999934,10.197931621000137],[-7.857215942999914,10.194417623000092],[-7.882847452999953,10.190826111000106],[-7.892252563999932,10.184831644000084],[-7.910959431999912,10.169406230000092],[-7.929046182999911,10.160957133000094],[-7.94987178599996,10.15542775500009],[-7.970904093999905,10.155066020000092],[-7.989662638999988,10.161990662000079],[-7.968010213999918,10.209998068000118],[-7.962584187999936,10.233252462000038],[-7.964599568999888,10.258935649000108],[-7.971214151999959,10.28180247000013],[-7.981549438999877,10.307020569000088],[-7.996277220999986,10.328259583000145],[-8.01570756099997,10.339344178000161],[-8.070071166999924,10.341876322000147],[-8.096116088999906,10.34673390700007],[-8.115494750999886,10.360247295000136],[-8.120920776999952,10.373037212000028],[-8.122109333999958,10.399495544000104],[-8.125416625999973,10.411665345000117],[-8.135441853999907,10.427323303000065],[-8.142056436999894,10.4296487430001],[-8.150583047999902,10.424532776000106],[-8.165982624999884,10.41809906000016],[-8.189030313999865,10.413629048000146],[-8.21057938699991,10.414068299000064],[-8.22887284399988,10.423421733000112],[-8.25388423699988,10.469827169000027],[-8.284425007999886,10.511245830000078],[-8.295535440999885,10.537445780000084],[-8.311141723999924,10.735289002000044],[-8.315585896999949,10.753091532000084],[-8.341940877999917,10.763245952000133],[-8.339822142999935,10.78386484800005],[-8.318893188999937,10.839520366000073],[-8.311813516999905,10.847245993000072],[-8.305870727999917,10.856289368000118],[-8.303648640999908,10.874892883000072],[-8.305095581999893,10.978245748000063],[-8.311141723999924,11.000802511000089],[-8.326592976999848,11.023850199000051],[-8.347315225999862,11.043125509000092],[-8.369329385999947,11.054235941000101],[-8.381318318999917,11.053925883000117],[-8.40064530399985,11.043332215000135],[-8.410463825999926,11.041911113000154],[-8.42906734199988,11.048293152000083],[-8.438162393999932,11.049740092000079],[-8.448704385999918,11.047104595000064],[-8.46901322499994,11.046381124000076],[-8.489063679999958,11.052737325000095],[-8.505755167999922,11.052789001000107],[-8.531645059999931,10.999045512000109],[-8.541566935999953,10.983775127000056],[-8.559550333999937,10.971605326000143],[-8.5756217039999,10.966747742000038],[-8.593346720999904,10.964706522000085],[-8.611381794999915,10.965145773000103],[-8.62822831199989,10.967832947000119],[-8.64796870899994,10.965817566000084],[-8.665228637999945,10.956955058000077],[-8.680938272999924,10.952304179000109],[-8.696234496999864,10.962742819000141],[-8.700730346999904,10.978452454000106],[-8.696906290999946,10.996048279000092],[-8.688689737999908,11.012558899000084],[-8.679801391999916,11.025193786000116],[-8.63368017599987,11.071289165000039],[-8.623112344999896,11.091262106000073],[-8.622388875999917,11.102605083000142],[-8.624921019999901,11.112191061000146],[-8.624610961999906,11.12203542100012],[-8.6154125569999,11.134050191000085],[-8.607221842999877,11.137150777000045],[-8.586990518999897,11.137460836000116],[-8.578153848999875,11.14206003900007],[-8.569678914999884,11.15779551200005],[-8.563942830999935,11.19342641200012],[-8.551798868999924,11.21073801700004],[-8.544615844999953,11.214975485000082],[-8.52410030099989,11.223760478000157],[-8.51562536599991,11.229057312000108],[-8.512059692999912,11.230297547000134],[-8.502137817999937,11.231176046000087],[-8.498778848999903,11.233501486000108],[-8.497021850999943,11.240710348000079],[-8.499243936999932,11.246704814000097],[-8.50234452399988,11.251639913000133],[-8.503119669999904,11.255412293000063],[-8.492577677999918,11.277788188000045],[-8.4832242439999,11.28491953600009],[-8.44457027199988,11.27626373300012],[-8.426896931999892,11.274196676000074],[-8.4066914469999,11.275281881000069],[-8.3883979899999,11.28140553800013],[-8.376719115999947,11.29466054300012],[-8.3710347089999,11.320550436000062],[-8.38126664299989,11.325097961000097],[-8.39956009999986,11.322152405000095],[-8.41795690899994,11.325511373000111],[-8.42607010899988,11.34047170000008],[-8.414132852999925,11.3534683230001],[-8.393358927999884,11.36300262500009],[-8.37532385199998,11.367653504000158],[-8.397648071999924,11.385895285000116],[-8.427723754999903,11.400080465000073],[-8.488133503999933,11.418193055000089],[-8.51578039599994,11.418968201000098],[-8.527562622999936,11.423386536000109],[-8.535520792999904,11.438088481000094],[-8.539424991999908,11.456312043000153],[-8.543995727999913,11.477646790000051],[-8.549576782999907,11.490126648000043],[-8.57520829299989,11.47028289800005],[-8.602183389999908,11.472091573000043],[-8.656753702999936,11.496431173000147],[-8.667967488999892,11.510874736000076],[-8.679026245999893,11.529839986000127],[-8.687346150999957,11.550019633000103],[-8.690705118999858,11.568028870000106],[-8.712874307999897,11.640065816000075],[-8.726516886999889,11.649470927000039],[-8.740366169999959,11.646163635000036],[-8.756540893999954,11.638825582000052],[-8.777211466999885,11.635931702000065],[-8.795194864999957,11.641926168000083],[-8.81167964699992,11.651744690000058],[-8.828526163999925,11.659186096000068],[-8.847233032999895,11.657945862000133],[-8.797003539999935,11.91322743800009],[-8.797830362999974,11.925113017000127],[-8.803204711999939,11.934931539000088],[-8.809974323999882,11.944440002000078],[-8.81490942399992,11.955395407000154],[-8.81643387899993,11.976841126000082],[-8.815452026999964,11.995703023000104],[-8.819792845999928,12.012652893000109],[-8.837982950999987,12.02815582300012],[-8.858756876999934,12.031824849000117],[-8.88164953599994,12.029189352000103],[-8.903715372999926,12.030377909000038],[-8.922112182999852,12.045364075000094],[-8.92629797399988,12.064277649000132],[-8.921957153999898,12.086033427000146],[-8.906970987999927,12.125359192000131],[-8.906040811999958,12.147735087000115],[-8.9138956299999,12.169852600000125],[-8.927021443999877,12.187370910000084],[-8.942007608999859,12.195845845000093],[-8.9616963299999,12.187991028000054],[-8.97384029199989,12.187577617000045],[-8.981178344999904,12.198946432000126],[-8.98453731299989,12.208919983000044],[-8.994278320999854,12.224836324000066],[-8.997559773999853,12.234809876000071],[-8.995906127999888,12.261009827000093],[-8.985260782999887,12.282093812000113],[-8.972134968999939,12.301989238000116],[-8.963091593999875,12.324210104000159],[-8.964745238999908,12.346275940000067],[-8.97590734799985,12.368703511000149],[-8.99383907099994,12.387513733000063],[-9.027765492999919,12.404751097000144],[-9.14731807499993,12.465493469000151],[-9.189486042999903,12.479239400000083],[-9.265863809999928,12.495207418000119],[-9.278937947999907,12.494432271000106],[-9.286379353999905,12.488127747000107],[-9.29407914299992,12.48378692600012],[-9.308186807999931,12.488954570000118],[-9.321519327999878,12.4966026820001],[-9.32730708899993,12.497532858000056],[-9.334180053999916,12.496292623000029],[-9.350871540999947,12.484613749000047],[-9.398155476999873,12.473244935000153],[-9.41257320199989,12.455364889000094],[-9.407250528999953,12.445132955000119],[-9.39278112799991,12.428028056000073],[-9.374694376999912,12.411129863000083],[-9.34715083799992,12.3964537560001],[-9.344463663999903,12.389012350000073],[-9.343946899999963,12.380124003000061],[-9.339166829999954,12.37061553900007],[-9.331647907999923,12.366326396000105],[-9.314801390999946,12.362657369000102],[-9.309168659999898,12.35774810800008],[-9.308496866999917,12.345035706000118],[-9.312889362999925,12.326070455000163],[-9.321829385999933,12.310205791000058],[-9.335006876999927,12.306536763000068],[-9.331906290999882,12.282765605000108],[-9.336815551999905,12.269846497000087],[-9.360173298999968,12.246643779000093],[-9.421513223999938,12.257082418000037],[-9.438876505999957,12.254756978000088],[-9.479597534999925,12.235843405000153],[-9.495875610999944,12.224681295000025],[-9.51561600799991,12.207059631000035],[-9.628167276999875,12.170162659000113],[-9.659999959999936,12.14980214500008],[-9.675141153999931,12.133989157000087],[-9.682272501999876,12.118537903000089],[-9.683667764999967,12.101484680000056],[-9.681549031999879,12.080814107000037],[-9.686303262999957,12.068153381000087],[-9.69880896,12.050996806000128],[-9.7229935299999,12.025416972000086],[-9.778649047999862,12.026657206000024],[-9.796632445999961,12.03234161400006],[-9.806812703999924,12.038439433000121],[-9.823039102999928,12.0508934530001],[-9.833684447999929,12.055130920000053],[-9.840660766999918,12.055027568000128],[-9.861124633999879,12.051875305000067],[-9.870736450999885,12.052082011000039],[-9.888771524999896,12.06055694600012],[-9.923188028999931,12.087583720000069],[-9.941533161999928,12.092751363000076],[-9.961583617999878,12.096006979000066],[-9.996413533999942,12.114145406000091],[-10.015533813999923,12.119881490000054],[-10.027677774999916,12.12566925000003],[-10.048089965999877,12.141378886000084],[-10.060182251999947,12.147528382000061],[-10.07036250899992,12.149853821000091],[-10.08700231899985,12.15057729100009],[-10.090340013999878,12.151583631000037],[-10.097285928999952,12.153677877000119],[-10.105192422999892,12.158638815000074],[-10.118835001999912,12.170162659000113],[-10.128653523999958,12.174503479000094],[-10.13583654799993,12.175485332000065],[-10.160227823999946,12.174503479000094],[-10.179761515999955,12.178224182000093],[-10.214849812999887,12.194605611000057],[-10.247819376999928,12.201065165000102],[-10.254123901999947,12.20721466100008],[-10.258981485999868,12.213777568000069],[-10.266939656999853,12.21780832900015],[-10.304973510999957,12.202873840000095],[-10.31101965399992,12.191039938000088],[-10.313603474999923,12.191143290000111],[-10.31649735499991,12.196879374000076],[-10.323577026999914,12.201995341000057],[-10.325592407999892,12.199773255000151],[-10.329881550999943,12.190419820000116],[-10.33933833799992,12.185458883000067],[-10.348433390999986,12.184787089000082],[-10.354117797999919,12.180859680000111],[-10.353394327999922,12.166493632000112],[-10.368225463999863,12.171506246000078],[-10.37484004699985,12.17481353800008],[-10.381402953999924,12.180136210000114],[-10.394580443999928,12.171609599000107],[-10.42894527199985,12.143394267000133],[-10.435973266999952,12.135177714000108],[-10.445688435999896,12.12070831300008],[-10.493489135999907,12.124429016000079],[-10.511627563999923,12.118072815000062],[-10.512661091999917,12.108460999000044],[-10.5044445399999,12.088358866000078],[-10.50795853699992,12.084586487000152],[-10.517311970999884,12.08034901900011],[-10.517673706999858,12.070737203000093],[-10.514883178999895,12.060143535000108],[-10.515089883999876,12.052908834000048],[-10.535398722999986,12.038697815000091],[-10.555449177999918,12.029344381000058],[-10.566507934999919,12.01725209500006],[-10.5594799399999,11.995186260000068],[-10.574982869999928,11.990328675000056],[-10.595653442999946,11.97989003500011],[-10.613791869999886,11.9676943970001],[-10.621543334999984,11.95766916900007],[-10.625264038999887,11.943871562000126],[-10.634152384999908,11.925423076000115],[-10.645159464999892,11.908369853000082],[-10.655081339999896,11.898964742000118],[-10.669964151999947,11.89204010000013],[-10.711356973999898,11.890386455000097],[-10.740347452999885,11.91989369800011],[-10.78101680499992,11.996219787000143],[-10.807785196999902,12.022833150000082],[-10.812436075999955,12.033426819000056],[-10.811040811999874,12.041540019000067],[-10.801222289999913,12.059213359000069],[-10.798535115999869,12.068101706000078],[-10.804942992999912,12.09595530200005],[-10.822926391999914,12.110476380000094],[-10.846387491999877,12.121380107000064],[-10.869641886999887,12.138433329000094],[-10.909794474999899,12.200134990000052],[-10.927674519999869,12.212950745000043],[-10.952117471999912,12.219461976000105],[-10.972012898999905,12.218583476000063],[-11.015472778999905,12.20442413400012],[-11.038778849999858,12.205250956000043],[-11.052318074999931,12.2025121060001],[-11.059811157999974,12.19243520200007],[-11.072781941999892,12.149492086000095],[-11.084305785999929,12.136572978000089],[-11.116603555999887,12.11373199500008],[-11.11747712499988,12.112701843000108],[-11.122081258999884,12.107272441000118],[-11.136292276999939,12.085103251000092],[-11.144250447999923,12.08133087200008],[-11.152725382999904,12.080865784000137],[-11.159391642999934,12.077506815000035],[-11.1656444899999,12.048619690000079],[-11.176341511999937,12.029499410000085],[-11.191172648999952,12.014409892000089],[-11.206985636999946,12.010172425000135],[-11.223315388999907,12.009293925000094],[-11.255509805999848,11.99616811100013],[-11.27499182099993,11.99627146400006],[-11.294680541999893,12.003092754000106],[-11.315144408999856,12.013324687000093],[-11.334678100999952,12.026192118000097],[-11.351317911999956,12.040403138000059],[-11.391728881999938,12.093733216000132],[-11.40955725099991,12.107892558000088],[-11.470793822999923,12.134609273000137],[-11.48960404499985,12.151197408000144],[-11.507794148999892,12.191608378000126],[-11.491671101999913,12.220908916000099],[-11.463249064999985,12.249951070000094],[-11.444593872999917,12.289483541000038],[-11.444903930999912,12.312531230000088],[-11.451466837999874,12.352115377000144],[-11.447229369999915,12.374542949000045],[-11.431674763999894,12.382966207000038],[-11.407593546999863,12.381932678000053],[-11.388628295999922,12.384464824000133],[-11.38842159099994,12.403895162000111],[-11.386561238999946,12.430456848000132],[-11.3797916259999,12.456863505000099],[-11.37777624499995,12.480221253000153],[-11.3904369709999,12.497532858000056],[-11.39260738199988,12.491848450000106],[-11.400513875999932,12.479549459000069],[-11.402374226999939,12.488541158000118],[-11.408678750999854,12.504922587000067],[-11.410849161999948,12.513345846000064],[-11.416998657999926,12.529313864000086],[-11.42475012199992,12.526368307000098],[-11.430382852999855,12.515722962000098],[-11.4298144119999,12.508333232000098],[-11.437875935999896,12.5153612270001],[-11.449451456999924,12.535204976000086],[-11.456686157999911,12.539752502000127],[-11.46779658999992,12.543524882000057],[-11.460613565999948,12.549829407000074],[-11.439839640999935,12.559286194000038],[-11.437359171999958,12.570758362000063],[-11.438599405999895,12.577993063000122],[-11.440924844999925,12.584866028000093],[-11.441803344999869,12.595511373000079],[-11.436635701999961,12.627085674000057],[-11.436842406999915,12.637472636000084],[-11.441751668999927,12.647756246000071],[-11.449554809999967,12.653182272000052],[-11.457151245999937,12.65597279900011],[-11.460975300999875,12.658401592000075],[-11.461905476999931,12.67312937400007],[-11.455755981999857,12.680622457000098],[-11.447952839999914,12.68594513000005],[-11.437359171999958,12.712248433000097],[-11.42418168099988,12.716382549000116],[-11.410332397999895,12.718811340000087],[-11.402167520999882,12.731730449000096],[-11.404027872999903,12.741213074000072],[-11.41456986499986,12.759713236000096],[-11.41456986499986,12.764209087000026],[-11.407593546999863,12.771469625000092],[-11.405423135999882,12.782347514000051],[-11.406353311999936,12.79428477000009],[-11.4084720459999,12.804490865000062],[-11.411675984999874,12.812888286000131],[-11.41601680599996,12.820071309000099],[-11.419685831999857,12.82467051200014],[-11.420977742999895,12.825574850000095],[-11.423458211999957,12.826401672000117],[-11.428160766999952,12.827021790000089],[-11.432088174999903,12.829347229000106],[-11.432501586999933,12.835522563000097],[-11.430021118999946,12.841051941000089],[-11.427023884999926,12.845237732000044],[-11.425473591999918,12.849552715000101],[-11.428625854999979,12.865804952000119],[-11.424905151999951,12.876166077000036],[-11.419324096999956,12.88650136400014],[-11.415138305999903,12.896655782000096],[-11.417308715999894,12.901952617000049],[-11.423096476999973,12.907068584000129],[-11.427954060999895,12.912494609000106],[-11.427230590999896,12.918618266000067],[-11.420667683999909,12.922028910000092],[-11.413588012999895,12.919703471000062],[-11.407283487999877,12.91629282600013],[-11.402890991999897,12.916396179000072],[-11.394209349999926,12.923320821000047],[-11.387801472999882,12.927119039000074],[-11.384442504999866,12.933113505000108],[-11.386561238999946,12.959106750000075],[-11.38883500199995,12.970553080000087],[-11.393434203999902,12.980810852000076],[-11.401805785999898,12.989492493000128],[-11.404234578999931,12.972103373000095],[-11.41152095499993,12.960708720000099],[-11.423096476999973,12.956006165000119],[-11.43870275899991,12.958900045000107],[-11.435963907999875,12.968847758000024],[-11.433535115999916,12.98835561200012],[-11.433431761999884,12.996959738000058],[-11.430124470999885,13.000990499000054],[-11.424543415999949,13.005202129000097],[-11.42299312399993,13.009413757000047],[-11.431674763999894,13.013470358000049],[-11.43565384999988,13.01672597300012],[-11.439529581999949,13.023004659000037],[-11.445162312999884,13.035226135000059],[-11.458959920999916,13.05468231200014],[-11.456944538999977,13.060444234000101],[-11.451415160999971,13.068066509000076],[-11.45027827899986,13.075094503000088],[-11.460820271999921,13.079176941000098],[-11.477098347999856,13.083285218000112],[-11.489707397999977,13.090778300000053],[-11.50154130099989,13.099589132000048],[-11.51539058399996,13.107754008000157],[-11.533063923999862,13.111810608000068],[-11.538076538999915,13.128011169000061],[-11.538541625999926,13.162970276000067],[-11.547843383999862,13.176199443000142],[-11.559728962999912,13.18692230200007],[-11.56934077999992,13.199195456000098],[-11.572338012999921,13.217101339000067],[-11.568565632999906,13.227901714000097],[-11.555801554999931,13.245910950000095],[-11.554251261999923,13.256866353000078],[-11.558540405999878,13.266504008000098],[-11.581174681999926,13.286141052000119],[-11.60582434099993,13.31965321900013],[-11.613007364999872,13.33905771900011],[-11.613110717999916,13.360813497000024],[-11.620345418999875,13.357532044000038],[-11.632902791999896,13.354379782000066],[-11.64396154799988,13.3555941770001],[-11.646597045999897,13.365516052000089],[-11.645253458999946,13.379752909000059],[-11.649800984999956,13.384119568000145],[-11.674967407999901,13.383215231000108],[-11.694501098999922,13.379184468000103],[-11.704009561999895,13.380373027000132],[-11.714034789999914,13.388098653000043],[-11.71977087399989,13.39789133700009],[-11.72690222199992,13.405797832000133],[-11.741216593999923,13.407813212000093],[-11.756512816999873,13.39980336500011],[-11.766589721999907,13.38316355400009],[-11.772532511999913,13.362673848000027],[-11.775116332999913,13.343346863000079],[-11.817077596999923,13.312341004000146],[-11.822555297999912,13.306708272000023],[-11.828136352999932,13.307276713000078],[-11.840021931999956,13.316888529000082],[-11.844569457999881,13.323839010000071],[-11.850770629999886,13.343140157000107],[-11.854594685999928,13.350555726000037],[-11.862346150999912,13.356085104000044],[-11.888804483999905,13.368875021000106],[-11.897589476999912,13.371174622000126],[-11.89996659299993,13.382181702000125],[-11.88565222199986,13.43577016200008],[-11.883481811999957,13.453546855000111],[-11.89040645399993,13.465148214000067],[-11.898467976999939,13.46850718200008],[-11.907718058999933,13.469644063000088],[-11.918156696999887,13.474708354000157],[-11.923841104999923,13.481142069000114],[-11.932729451999933,13.49605072100006],[-11.939033976999951,13.50294952400013],[-11.996808227999848,13.544161479000124],[-12.015153360999932,13.564444478000055],[-12.03732254999997,13.598266703000135],[-12.04982824799987,13.634362691000133],[-12.070395467999958,13.673249207000111],[-12.083883015999902,13.692963766000062],[-12.097628946999862,13.704410095000071],[-12.012311157999875,13.751177267000088],[-11.978824829999951,13.784818624000124],[-11.962908488999858,13.829467062000063],[-11.95696569799992,13.87000722200007],[-11.956810669999896,13.890341898000086],[-11.962908488999858,13.909152120000101],[-11.980375121999883,13.929641826000077],[-11.999030313999867,13.94356862400015],[-12.015308389999888,13.959304097000128],[-12.025333617999905,13.985245667000086],[-12.025230264999976,14.026741842000149],[-12.002751016999866,14.103455505000099],[-11.995412963999883,14.144021505000111],[-11.997583373999873,14.166164856000137],[-12.034480345999896,14.250268249000086],[-12.04429886899996,14.264918518000073],[-12.058354857999888,14.274091085000066],[-12.097783975999988,14.288069560000066],[-12.1099796149999,14.298146464000098],[-12.119591430999918,14.310574646000076],[-12.127807983999956,14.324294739000097],[-12.11302852399993,14.329591573000128],[-12.108687703999863,14.34201975500011],[-12.11561234599992,14.355119731000073],[-12.208836628999874,14.388761088000109],[-12.221729898999882,14.391241557000084],[-12.21986954699986,14.43459808400007],[-12.222427530999964,14.454932760000089],[-12.23418391999985,14.49857350700006],[-12.236431843999867,14.519450785000116],[-12.230385700999932,14.53668487600011],[-12.211472127999883,14.547976176000077],[-12.204185749999908,14.554254862000077],[-12.201446898999876,14.565184428000052],[-12.20046504699988,14.577354228000061],[-12.198397989999933,14.587560324000037],[-12.191008260999922,14.597998962000077],[-12.171526244999939,14.616421610000073],[-12.165945189999917,14.625180766000142],[-12.165015014999966,14.641872253000088],[-12.172611449999918,14.647918396000122],[-12.182791706999893,14.650243835000067],[-12.189819701999909,14.655954082000108],[-12.192196817999928,14.66688364700009],[-12.190284789999934,14.673653259000034],[-12.18584061699991,14.680810446000066],[-12.180311237999916,14.69282521600013],[-12.191421671999933,14.693445333000097],[-12.207648071999927,14.696597595000055],[-12.222815103999949,14.703289693000071],[-12.230489053999861,14.714555155000127],[-12.236612711999925,14.728456116000116],[-12.25650813799993,14.745793559000033],[-12.2641304119999,14.774939067000048],[-12.246792968999983,14.767006734000091],[-12.2247788089999,14.763441061000023],[-12.203255573999854,14.76617991200007],[-12.160209105999854,14.781011047000092],[-12.138866739999855,14.784525045000054],[-12.12367386899993,14.776644389000111],[-12.081454223999856,14.740031637000058],[-12.070395467999958,14.734398906000123],[-12.062333943999958,14.746258647000063],[-12.057062947999924,14.76194244400011],[-12.049673217999922,14.767213440000134],[-12.031069702999957,14.76282094300005],[-12.01107092299992,14.762743429000125],[-11.991485554999912,14.768040263000074],[-11.973967244999955,14.779848328000085],[-11.950299438999906,14.811551819000087],[-11.935985066999931,14.823618266000068],[-11.895729125999905,14.832067363000062],[-11.87748734499985,14.841524150000039],[-11.862604532999882,14.854081523000046],[-11.854698038999857,14.867310690000139],[-11.850822305999884,14.876483256000128],[-11.845602986999978,14.883227031000073],[-11.840487019999983,14.888498027000095],[-11.837076375999857,14.893097229000146],[-11.833097289999955,14.894699199000087],[-11.826069294999883,14.896559550000092],[-11.820384887999921,14.899970195000021],[-11.82043656399992,14.906403910000066],[-11.82736120699991,14.915576477000057],[-11.830100056999868,14.920330709000055],[-11.830926879999877,14.926428528000102],[-11.825810912999884,14.962472839000098],[-11.820591593999978,14.980275371000133],[-11.81320186399995,14.995933329000096],[-11.81320186399995,14.99608835900004],[-11.8110831299999,15.014304302000085],[-11.813770304999935,15.028541159000056],[-11.821160034999934,15.039754944000094],[-11.8328389079999,15.049005026000101],[-11.839195108999915,15.049005026000101],[-11.844466104999867,15.044328308000047],[-11.851029011999856,15.0419511920001],[-11.860899210999918,15.049005026000101],[-11.859142212999954,15.054069316000083],[-11.856765096999908,15.084248352000087],[-11.845137898999951,15.124555969000125],[-11.844207723999887,15.134839579000129],[-11.847308308999942,15.1487405390001],[-11.848186807999866,15.158145650000066],[-11.845654662999891,15.17907460600014],[-11.826792765999869,15.232559713000086],[-11.821056680999902,15.280102030000094],[-11.816922566999978,15.296095887000135],[-11.78348791499991,15.36588490800011],[-11.767674926999888,15.437198385000073],[-11.754859171999925,15.469082744000046],[-11.729434366999897,15.496057841000066],[-11.727057250999877,15.506987406000063],[-11.727057250999877,15.54117136700003],[-11.701739990999954,15.537424767000116],[-11.69755000799995,15.536804708000147],[-11.670833292999902,15.528407288000068],[-11.644116577999938,15.526443583000031],[-11.614867715999878,15.54117136700003],[-11.579210978999896,15.577964986000039],[-11.562571166999874,15.587240906000147],[-11.53595780399985,15.594914856000031],[-11.524278930999884,15.600289205000108],[-11.51539058399996,15.610081889000071],[-11.513116821999944,15.61504282600009],[-11.51234167499993,15.620184632000104],[-11.513116821999944,15.62527476000008],[-11.51539058399996,15.630261536000148],[-11.5195763749999,15.632742005000125],[-11.522987019999903,15.6352483120001],[-11.52562251799992,15.638348897000045],[-11.5273278409999,15.642560527000086],[-11.524382283999898,15.643464864000038],[-11.51539058399996,15.644420878000089],[-11.4582364499999,15.632948710000079],[-11.434827025999965,15.623388570000087],[-11.40955725099991,15.602201233000102],[-11.316901407999922,15.471666565000048],[-11.2981945399999,15.451047669000047],[-11.045393432999958,15.27020599400002],[-11.012733927999875,15.239587708000085],[-10.985190388999882,15.187497864000134],[-10.9480350339999,15.151996155000093],[-10.915168822999872,15.102903544000057],[-10.906228799999923,15.119775900000048],[-10.890880899999956,15.17674916600002],[-10.882250935999933,15.192846375000087],[-10.855327514999914,15.21765106200013],[-10.844062051999856,15.234549255000035],[-10.834398559999926,15.271394552000132],[-10.827215534999878,15.287698466000066],[-10.811040811999874,15.30312388200015],[-10.80018876099993,15.306844585000064],[-10.790111856999886,15.306844585000064],[-10.781740275999908,15.3084207160001],[-10.770681517999918,15.324672953000102],[-10.75450679499991,15.333638815000143],[-10.746807006999916,15.34113189700008],[-10.738900511999873,15.362164205000097],[-10.740140747999902,15.40358286600015],[-10.736368367999887,15.422625630000125],[-10.725361286999885,15.433064270000074],[-10.709186563999907,15.433865255000084],[-10.64888016799992,15.424873556000136],[-10.607125609999883,15.424434306000109],[-10.587385213999909,15.427250672000085],[-10.584746267999975,15.42812715200003],[-10.551521768999862,15.439162089000119],[-10.534985310999955,15.441694235000114],[-10.515503295999878,15.437740988000115],[-10.500413777999881,15.440350647000058],[-10.398404500999959,15.438697001000094],[-10.370757608999952,15.433503520000073],[-10.322646850999973,15.437095032000059],[-10.308745890999887,15.435208842000035],[-10.223221394999968,15.402032573000042],[-10.214488077999903,15.401980896000111],[-10.19609126799989,15.405288188000114],[-10.188391478999904,15.404719747000057],[-10.167979288999959,15.395185445000065],[-10.131599080999877,15.372628683000132],[-10.108293009999926,15.36588490800011],[-10.067623657999889,15.3647480260001],[-9.951403360999903,15.381206971000067],[-9.83559647599995,15.371104228000119],[-9.797355916999948,15.380302633000028],[-9.740718546999858,15.4126004030001],[-9.720823120999853,15.420920309000067],[-9.672118082999928,15.43066131600011],[-9.423890339999957,15.440531515000089],[-9.435879271999937,15.495902812000054],[-9.435879271999937,15.49595448900004],[-9.451847289999876,15.559206441000043],[-9.4516922599999,15.588326111000045],[-9.437016153999934,15.614887798000069],[-9.375934610999934,15.685917053000054],[-9.35645259599994,15.697854310000109],[-9.332423055999925,15.6875707],[-9.32932246899989,15.65524709100012],[-9.342965046999893,15.586930847000074],[-9.349217895999885,15.495644430000056],[-9.17584346599989,15.495592753000066],[-9.141378708999923,15.495581427000104],[-9.018592081999941,15.495541076000052],[-9.003215638999933,15.49552628400005],[-8.911156778999953,15.49543772400011],[-8.843408976999854,15.49543772400011],[-8.76925329699992,15.49543772400011],[-8.68930985599988,15.49543772400011],[-8.603940388999888,15.495386048000084],[-8.470201781999947,15.495282695000071],[-8.327006388999848,15.495282695000071],[-8.175801146999959,15.495205180000141],[-8.017826293999946,15.495127665000041],[-7.85452876799988,15.495075989000014],[-7.687200480999905,15.4950243130001],[-7.517236693999933,15.494972636000083],[-7.34587764499986,15.494920960000059],[-7.174518595999898,15.494817607000046],[-7.004503132999901,15.494817607000046],[-6.837174844999936,15.494740093000104],[-6.673928995999887,15.494662577000097],[-6.516005818999901,15.49461090100007],[-6.364748900999899,15.494559225000073],[-6.320144864999889,15.494543123000085],[-6.221605183999883,15.494507549000048],[-6.087814900999944,15.49445587200006],[-6.010817015999919,15.49437835700013],[-5.938211629999898,15.494352519000103],[-5.870257120999923,15.494352519000103],[-5.807315226999918,15.494352519000103],[-5.673163207999977,15.494300842000087],[-5.515963500999874,15.49424916600009],[-5.515601765999861,15.494145813000074],[-5.515291707999893,15.49404246100005],[-5.514981648999907,15.493913269000101],[-5.514671589999921,15.493835755000077],[-5.514361531999924,15.493732401000045],[-5.514051472999938,15.49362904900002],[-5.513741414999856,15.493525696000091],[-5.513379679999957,15.493422343000075],[-5.513121296999884,15.493422343000075],[-5.512966267999957,15.493422343000075],[-5.5127595619999,15.493422343000075],[-5.512552855999927,15.493422343000075],[-5.512294473999873,15.493422343000075],[-5.512191120999944,15.493422343000075],[-5.511932739999878,15.493422343000075],[-5.511726033999906,15.493422343000075],[-5.511622679999988,15.493525696000091],[-5.511519327999878,15.493680725000047],[-5.511364298999922,15.493732401000045],[-5.511312621999906,15.493887431000076],[-5.511260945999879,15.493990784000117],[-5.511105916999952,15.49404246100005],[-5.510950886999893,15.49419748900007],[-5.510950886999893,15.494300842000087],[-5.510950886999893,15.494507549000048],[-5.510950886999893,15.494662577000097],[-5.510950886999893,15.494817607000046],[-5.510950886999893,15.495075989000014],[-5.510950886999893,15.495282695000071],[-5.510950886999893,15.49543772400011],[-5.510950886999893,15.495670268000081],[-5.510950886999893,15.495902812000054],[-5.509917358999928,15.500812073000075],[-5.508987182999874,15.5056954960001],[-5.508761370999935,15.506899828000087],[-5.508057006999906,15.510656434000055],[-5.507075154999939,15.515539857000078],[-5.488368285999882,15.612665710000075],[-5.469558064999944,15.709791565000046],[-5.450799519999862,15.806839905000118],[-5.431989298999952,15.903939922000093],[-5.41379919499991,15.998559469000014],[-5.395454060999924,16.093179017000125],[-5.377212279999867,16.187798564000047],[-5.358918822999897,16.28236643500011],[-5.353286091999877,16.311977031000083],[-5.354267943999929,16.318384908000013],[-5.355301472999912,16.324792786000046],[-5.36010738199991,16.32990875200005],[-5.364913288999929,16.334921367000106],[-5.404962524999917,16.361689758000068],[-5.445941934999951,16.38902659100009],[-5.485371053999955,16.415433248000085],[-5.529709431999891,16.444992167000095],[-5.566503051999888,16.46948679700006],[-5.605880493999904,16.495893453000036],[-5.614562133999868,16.51186147100009],[-5.623347126999931,16.527829489000027],[-5.627687947999931,16.568137106000076],[-5.637609822999906,16.658364156000086],[-5.647583373999936,16.748642883000116],[-5.657453571999923,16.8388182570001],[-5.6673237709999,16.929096985000058],[-5.67729732299989,17.019324036000057],[-5.687167521999896,17.10949941000007],[-5.697037719999884,17.19972646100007],[-5.706959594999944,17.289953512000096],[-5.716933145999889,17.380180562000106],[-5.726803344999951,17.470355937000107],[-5.736673543999927,17.560582988000107],[-5.746647094999929,17.650758362000115],[-5.756465616999918,17.74103708900006],[-5.766387491999922,17.83126414000006],[-5.776361042999922,17.92143951400007],[-5.786179565999902,18.011666565000095],[-5.79635982299996,18.104374085000075],[-5.806540079999905,18.19708160400006],[-5.816772013999895,18.28989247700008],[-5.826952270999868,18.38254832000007],[-5.837080850999911,18.47533335400007],[-5.847364460999898,18.568066712000075],[-5.857544717999872,18.66080007000005],[-5.867673299999922,18.753585104000077],[-5.877801879999878,18.846318462000056],[-5.888033813999868,18.93905181900007],[-5.898214070999927,19.031785177000074],[-5.9083943279999,19.124570211000073],[-5.914802205999933,19.182887065000017],[-5.921210082999977,19.24122975700007],[-5.927566283999909,19.29954661100001],[-5.934025838999958,19.35794098000008],[-5.949115355999964,19.495477804000046],[-5.949115355999964,19.495529480000073],[-5.949115355999964,19.49558115700009],[-5.949115355999964,19.495632833000084],[-5.963533080999866,19.620612285000046],[-5.977847452999868,19.745617574000022],[-5.992161823999936,19.87059702500008],[-6.006579548999866,19.995524801000016],[-6.020945597999884,20.12053009100009],[-6.035363321999881,20.245483704000033],[-6.049677693999882,20.370488993000095],[-6.064095417999908,20.495442607000143],[-6.076756143999944,20.603342997000055],[-6.083577433999892,20.66189239500008],[-6.098615274999872,20.790721741000084],[-6.113704792999982,20.919551087000087],[-6.12052608299993,20.978203837000105],[-6.13463374799997,21.09886830700009],[-6.148741413999886,21.21953277600008],[-6.162900756999932,21.34019724600006],[-6.177008422999961,21.46086171500005],[-6.191116088999905,21.581577861000056],[-6.205223754999849,21.702242330000043],[-6.219383096999906,21.822855123000096],[-6.233490763999924,21.943571269000103],[-6.247598429999869,22.064235738],[-6.261706095999897,22.1849518840001],[-6.275865437999926,22.30561635400008],[-6.289973103999954,22.42628082300007],[-6.304132446999915,22.546996969000073],[-6.318188435999928,22.667661438000067],[-6.332296101999873,22.788300070000044],[-6.346455443999929,22.908964539000124],[-6.360563109999958,23.0296548470001],[-6.371634199999903,23.123981336000014],[-6.37472245299989,23.150293477000073],[-6.388778442999921,23.270957947000085],[-6.402937784999949,23.39167409300006],[-6.417045450999893,23.51233856300007],[-6.431204793999939,23.633028870000143],[-6.445312459999883,23.75371917700005],[-6.459420125999912,23.874409485000026],[-6.466603148999865,23.93624033700013],[-6.48257116699989,24.072304383000102],[-6.498435831999899,24.20836842800008],[-6.505670532999886,24.270276795000086],[-6.50633795899995,24.275966855000064],[-6.515850789999944,24.35706736300008],[-6.525514281999961,24.436726583000024],[-6.535177774999909,24.51635996500005],[-6.544789591999916,24.5959933470001],[-6.55445308399993,24.675549215000018],[-6.564168252999877,24.75523427400006],[-6.573780069999884,24.834867656000082],[-6.583391885999902,24.91442352300001],[-6.593107055999923,24.99413442000008],[-6.371673542999872,24.994237773000094],[-6.150188354999898,24.994341125000034],[-5.928754841999932,24.994444479000066],[-5.707321329999957,24.994599508000107],[-5.485939493999922,24.99470286100012],[-5.26445430499993,24.99480621300006],[-5.043072468999895,24.994909566000075],[-4.821613117999902,24.995064596000105],[-4.821535603999876,24.994961243000088],[-4.821354736999922,24.99480621300006],[-4.821225545999908,24.99475453700003]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mozambique","sov_a3":"MOZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mozambique","adm0_a3":"MOZ","geou_dif":0,"geounit":"Mozambique","gu_a3":"MOZ","su_dif":0,"subunit":"Mozambique","su_a3":"MOZ","brk_diff":0,"name":"Mozambique","name_long":"Mozambique","brk_a3":"MOZ","brk_name":"Mozambique","brk_group":null,"abbrev":"Moz.","postal":"MZ","formal_en":"Republic of Mozambique","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mozambique","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":1,"mapcolor13":4,"pop_est":21669278,"gdp_md_est":18940,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"MZ","iso_a2":"MZ","iso_a3":"MOZ","iso_n3":"508","un_a3":"508","wb_a2":"MZ","wb_a3":"MOZ","woe_id":23424902,"woe_id_eh":23424902,"woe_note":"Exact WOE match as country","adm0_a3_is":"MOZ","adm0_a3_us":"MOZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MOZ.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[32.97510826900012,-26.00945403399986],[32.96452884200002,-26.03801848799985],[32.961273634000094,-26.044122002999842],[32.95191491000017,-26.05299244599996],[32.949392123000024,-26.053969007999935],[32.946136915000096,-26.049899997999987],[32.93474368600002,-26.044122002999842],[32.93083743600002,-26.039483330999985],[32.93034915500007,-26.03264739399998],[32.926768425000056,-26.028252862999906],[32.913584832000225,-26.0304501279999],[32.91382897200017,-26.034600518999923],[32.90674889400012,-26.05779387799987],[32.89535566500015,-26.02841562299987],[32.91830488400014,-26.00139739399991],[32.95435631600017,-25.980564059999935],[32.98259524800008,-25.9690080709999],[32.981944207000105,-25.980157158999845],[32.97510826900012,-26.00945403399986]]],[[[35.45533287900011,-21.781345309999935],[35.434906446000156,-21.782891533999887],[35.427093946000156,-21.76881275799994],[35.426605665000146,-21.74895598799993],[35.43751061300023,-21.67294687300001],[35.469574415000096,-21.54908619599989],[35.48096764400006,-21.52955494599982],[35.490000847000175,-21.530205987999864],[35.4954533210001,-21.545505467],[35.49683678500011,-21.569594007999854],[35.49073326900012,-21.64185963299991],[35.45533287900011,-21.781345309999935]]],[[[39.90330170100012,-16.40980557099989],[39.87847556400018,-16.416889710999925],[39.85639148800007,-16.40986933599993],[39.83245484900013,-16.39051682199998],[39.817701677000024,-16.356180194999894],[39.821337247000116,-16.317412411999968],[39.832347012000156,-16.299772692999824],[39.8608238140001,-16.286503206999868],[39.90953714000008,-16.27582713599999],[39.94357681400006,-16.27927203499983],[39.94637217800007,-16.30219231899983],[39.94180063700016,-16.32247913599997],[39.91514753600015,-16.348977068999872],[39.9069234880001,-16.378073930999946],[39.90879609900017,-16.395697743999847],[39.90330170100012,-16.40980557099989]]],[[[40.46485436300006,-10.495863539999874],[40.4837345710001,-10.500095309999892],[40.51050866000011,-10.47771575299987],[40.52702884200019,-10.48845794099988],[40.532074415000096,-10.50945403399983],[40.52149498800006,-10.526136976999865],[40.50660241000011,-10.539320570999818],[40.49903405000006,-10.55046965899983],[40.50660241000011,-10.566338799999853],[40.5247501960001,-10.572930596999838],[40.54558353000019,-10.576918226999823],[40.56104576900012,-10.584649346999825],[40.568125847000175,-10.599786065999822],[40.570485873000024,-10.633884372999916],[40.57781009200002,-10.649834893999838],[40.59213300900015,-10.657891533999873],[40.63135826900023,-10.662855726999823],[40.64673912900011,-10.670342705999886],[40.65495853000019,-10.686944268999852],[40.64039147200006,-10.691338799999839],[40.60206139400023,-10.68767669099988],[40.56983483200011,-10.69670989399988],[40.48536217500006,-10.762139580999843],[40.49219811300023,-10.796970309999876],[40.50001061300023,-10.791599216999927],[40.50562584700006,-10.78541432099986],[40.5096134770001,-10.778415622999873],[40.51270592500012,-10.769626559999907],[40.53199303500011,-10.785821221999866],[40.60206139400023,-10.82048919099985],[40.62029056100019,-10.840915622999916],[40.60157311300022,-10.859958591999899],[40.54672285200016,-10.885674737999864],[40.528575066000116,-10.90195077899989],[40.50831139400023,-10.927666924999839],[40.49610436300023,-10.95574309699984],[40.50660241000011,-10.99277109199987],[40.498383009000094,-11.027276299999881],[40.50652103000007,-11.037204684999892],[40.517914259000094,-11.03443775799984],[40.53101647200017,-11.009535414999887],[40.540537957000055,-11.003106377999885],[40.56609134200008,-11.013929945999877],[40.5657658210001,-11.04241301899988],[40.552012566000116,-11.074314059999892],[40.536875847,-11.09514739399988],[40.50489342500012,-11.128594658999845],[40.49903405000006,-11.139580987999892],[40.498383009000094,-11.152520440999893],[40.505869988000114,-11.177504164999915],[40.50652103000007,-11.187432549999825],[40.49415123800011,-11.204766533999901],[40.4275822270001,-11.252862237999878],[40.420095248000024,-11.265883070999863],[40.40544681100002,-11.300713799999897],[40.39722741000011,-11.310804945999877],[40.384450717000185,-11.315199476999851],[40.36052493600001,-11.315199476999851],[40.34880618600002,-11.317071221999825],[40.35906009200008,-11.332126559999935],[40.36768639400006,-11.351250908999901],[40.375498894000174,-11.358656507999811],[40.382985873000024,-11.338148695999847],[40.39812259200002,-11.346856377999828],[40.413828972000175,-11.361504815999837],[40.427500847000054,-11.37786223799985],[40.436859571000156,-11.392185153999847],[40.46583092500006,-11.385186455999857],[40.47136478000019,-11.416761976999851],[40.46509850400011,-11.450372002999869],[40.45801842500006,-11.489027601999837],[40.44752037900011,-11.520114841999842],[40.43946373800017,-11.53378671699987],[40.4275822270001,-11.547295830999843],[40.42335045700011,-11.563164971999866],[40.435069207000055,-11.578708591999868],[40.450450066000116,-11.592868747999887],[40.45801842500006,-11.605075778999876],[40.451996290000146,-11.616306247999873],[40.429453972000175,-11.641534112999835],[40.4275822270001,-11.650079033999859],[40.438324415000096,-11.664646091999884],[40.44157962300008,-11.67636484199987],[40.44434655000012,-11.708754164999872],[40.448985222000054,-11.728448174999825],[40.46745853000019,-11.745863539999888],[40.47071373800023,-11.751234632999852],[40.4720158210001,-11.757582289999874],[40.47380618600019,-11.806247653999904],[40.47950280000012,-11.82341887799984],[40.49219811300023,-11.839043877999828],[40.50082441500015,-11.834242445999832],[40.506195509000094,-11.833265882999868],[40.52019290500019,-11.839043877999828],[40.49301191500015,-11.866143487999848],[40.48617597700016,-11.89519622199984],[40.49301191500015,-11.925062757999825],[40.50652103000007,-11.954522393999895],[40.536875847,-11.996840101999808],[40.536875847,-12.00603606599988],[40.521820509000094,-12.021742445999848],[40.51547285200015,-12.032159112999835],[40.51270592500012,-12.064385674999867],[40.50082441500015,-12.112481377999842],[40.49903405000006,-12.126560153999888],[40.50294030000006,-12.144301039999874],[40.5213322270001,-12.171807549999826],[40.52702884200019,-12.187920830999886],[40.52491295700011,-12.204522393999852],[40.517344597000054,-12.2250302059999],[40.505869988000114,-12.242608330999829],[40.49219811300023,-12.25009530999989],[40.477875196000156,-12.245782158999887],[40.46371504000015,-12.239922783999859],[40.45362389400006,-12.242608330999829],[40.45118248800023,-12.263604424999869],[40.475840691000116,-12.258070570999848],[40.49781334700006,-12.274183851999823],[40.51368248800006,-12.300551039999917],[40.52019290500019,-12.325778903999876],[40.51710045700011,-12.339613539999872],[40.51075280000006,-12.35173919099988],[40.50652103000007,-12.364353122999859],[40.50953209700006,-12.380303643999866],[40.51832116000011,-12.388441664999874],[40.532074415000096,-12.39072030999985],[40.56104576900012,-12.387139580999886],[40.55811608200011,-12.397556247999873],[40.55225670700016,-12.40593840899983],[40.54411868600001,-12.411797783999873],[40.52116946700008,-12.417575778999847],[40.51465905000006,-12.426690362999835],[40.50652103000007,-12.447930596999825],[40.4803166020001,-12.484307549999897],[40.478200717000185,-12.501071872999916],[40.49219811300023,-12.516859632999866],[40.50277754000009,-12.521416924999897],[40.514903191000116,-12.523370049999855],[40.55689537900017,-12.525323174999896],[40.56202233200011,-12.530043226999823],[40.56104576900012,-12.598565362999949],[40.56478925900015,-12.613051039999903],[40.57374108200011,-12.619398695999918],[40.585134311000076,-12.622247002999956],[40.614105665000146,-12.63681406],[40.61963951900017,-12.645114841999884],[40.6126408210001,-12.657484632999825],[40.60271243600019,-12.65894947699988],[40.58562259200002,-12.639825127999984],[40.57471764400023,-12.639825127999984],[40.568044467000185,-12.649590752999941],[40.56869550900015,-12.662286065999908],[40.57813561300006,-12.706312757999825],[40.58643639400023,-12.706638279000016],[40.59742272200012,-12.700941664999945],[40.608897332000225,-12.701836846999939],[40.616058790000096,-12.712172132999868],[40.624522332000225,-12.73821379999984],[40.62940514400012,-12.743422132999838],[40.641449415000096,-12.746840101999936],[40.64682050900009,-12.75530364399988],[40.64682050900009,-12.766289971999923],[40.64307701900023,-12.777520440999934],[40.62696373800006,-12.79363372199991],[40.60547936300022,-12.798272393999923],[40.583994988000114,-12.792657158999845],[40.567881707000225,-12.777520440999934],[40.567067905000016,-12.785577080999957],[40.56885826900012,-12.795586846999953],[40.57195071700019,-12.803399346999852],[40.57471764400023,-12.804864190999908],[40.560069207000225,-12.813897393999909],[40.53199303500011,-12.811455987999977],[40.52702884200019,-12.818942966999854],[40.53321373800017,-12.827325127999913],[40.54558353000019,-12.835219007999967],[40.55445397200006,-12.846856377999984],[40.55054772200006,-12.866387627999956],[40.53931725400017,-12.892998955999914],[40.53321373800017,-12.901055596999853],[40.52442467500012,-12.909356377999927],[40.52173912900011,-12.91025155999992],[40.51937910200015,-12.906426690999908],[40.51270592500012,-12.901055596999853],[40.51368248800006,-12.892673434999892],[40.51026451900006,-12.88600025799984],[40.49903405000006,-12.880547783999987],[40.490244988000114,-12.879652601999894],[40.48406009200002,-12.881280205999914],[40.45533287900017,-12.89617278399997],[40.4349064460001,-12.91033294099999],[40.41797936300023,-12.926853122999972],[40.41089928500017,-12.942071221999953],[40.41260826900006,-12.961032809999963],[40.417735222000175,-12.971856377999869],[40.46827233200011,-13.017022393999909],[40.48340905000006,-13.021905205999886],[40.49903405000006,-13.016534112999835],[40.51238040500019,-12.998955987999892],[40.507090691000116,-12.984795830999872],[40.496267123000194,-12.970961195999875],[40.49219811300023,-12.955010674999867],[40.500173373000194,-12.948011976999965],[40.51547285200015,-12.94744231599999],[40.532074415000096,-12.951592705999857],[40.54371178500011,-12.958428643999966],[40.55811608200011,-12.96233489399995],[40.575043165000096,-12.957777601999922],[40.5892033210001,-12.957940362999977],[40.59522545700011,-12.975681247999972],[40.589610222,-13.008070570999976],[40.565684441000116,-13.066013278999876],[40.56104576900012,-13.099053643999838],[40.56348717500006,-13.116875908999901],[40.57276451900011,-13.150567315999908],[40.57471764400023,-13.168064059999864],[40.567881707000225,-13.24334075299984],[40.56226647200006,-13.262872002999911],[40.54948978000019,-13.274509373],[40.53549238400014,-13.284356377999941],[40.52702884200019,-13.298272393999923],[40.529633009000094,-13.310235283999859],[40.54281660200016,-13.305271091999984],[40.567881707000225,-13.284763278999945],[40.567881707000225,-13.36663176899999],[40.57252037900016,-13.364841403999916],[40.583750847000175,-13.36223723799992],[40.58838951900012,-13.36044687299993],[40.58448326900012,-13.383233330999957],[40.55420983200011,-13.415134372999972],[40.54672285200016,-13.431817315999908],[40.544688347,-13.474704684999892],[40.53874759200019,-13.495538018999966],[40.52702884200019,-13.510511976999908],[40.52702884200019,-13.510593356999891],[40.544444207000055,-13.52467213299984],[40.55909264400006,-13.542901299999912],[40.574554884000094,-13.558526299999897],[40.59522545700011,-13.565199476999936],[40.59644616000011,-13.571709893999852],[40.583343946000156,-13.587009372999901],[40.55054772200006,-13.61679452899999],[40.53939863400015,-13.636407158999873],[40.54265384200008,-13.658868096999967],[40.56999759200008,-13.71640390399986],[40.57496178500011,-13.734551690999865],[40.59058678500017,-13.853285414999974],[40.603526238000114,-13.880140882999866],[40.60417728000007,-13.891045830999929],[40.60621178500017,-13.902032158999901],[40.62175540500007,-13.916680596999909],[40.628428582000225,-13.925062757999953],[40.63396243600007,-13.934502862999977],[40.636241082000225,-13.942559503],[40.6385197270001,-13.967461846999953],[40.64869225400011,-14.011325778999904],[40.650563998000194,-14.031914971999939],[40.64568118600002,-14.05868906000002],[40.634287957000055,-14.070733330999943],[40.59522545700011,-14.085381768999952],[40.60670006600017,-14.092054945999834],[40.616465691000116,-14.101495049999924],[40.62159264400012,-14.113376559999892],[40.619476759000094,-14.127211195999891],[40.60962975400017,-14.138604424999853],[40.59669030000006,-14.143161716999899],[40.567881707000225,-14.147393487999906],[40.538584832000225,-14.164483330999957],[40.54542076900023,-14.181329033999956],[40.560069207000225,-14.201836847],[40.55420983200011,-14.230075778999973],[40.567881707000225,-14.225762627999885],[40.57911217500006,-14.206638278999904],[40.58806399800008,-14.206149997999916],[40.59489993600019,-14.214613539999945],[40.591807488000114,-14.22470468499992],[40.590179884000094,-14.234795830999971],[40.60206139400023,-14.243584893999952],[40.58708743600019,-14.254489841999927],[40.580902540000096,-14.257256768999895],[40.59148196700008,-14.263278903999987],[40.60189863400015,-14.263116143999923],[40.612152540000096,-14.258233330999872],[40.62256920700011,-14.250420830999957],[40.622325066000116,-14.221286716999913],[40.64714603000019,-14.202569268999852],[40.69629967500012,-14.182549737999963],[40.70850670700011,-14.190687757999896],[40.72071373800006,-14.204766533999845],[40.726247592000185,-14.219821872999859],[40.724131707000055,-14.250176690999837],[40.72934004000009,-14.26140715899993],[40.74610436300011,-14.270928643999838],[40.735036655000066,-14.28525156],[40.730235222000175,-14.304131768999852],[40.729991082000225,-14.323663018999923],[40.73243248800017,-14.339939059999862],[40.71876061300023,-14.344333591999925],[40.6951603520001,-14.362725518999968],[40.68458092500012,-14.36712004999987],[40.67074629000015,-14.363051039999988],[40.65162194100017,-14.343519790000018],[40.636241082000225,-14.339939059999862],[40.656586134000094,-14.449151299999881],[40.638845248000194,-14.443536065999965],[40.629649285000106,-14.44988372199991],[40.630625847,-14.46111419099999],[40.64307701900023,-14.470147393999921],[40.62256920700011,-14.490655205999971],[40.624522332000225,-14.496189059999976],[40.629079623000074,-14.501560153999861],[40.633799675000056,-14.50481536299999],[40.636241082000225,-14.504327080999913],[40.62875410200016,-14.550713799999883],[40.62940514400012,-14.566338799999869],[40.650563998000194,-14.547051690999837],[40.665293816000116,-14.523858330999985],[40.69263756600017,-14.439711195999962],[40.700531446000156,-14.432061455999841],[40.76075280000012,-14.403741143999893],[40.7732853520001,-14.401299737999864],[40.80144290500019,-14.410739841999954],[40.82837975400017,-14.434258721999838],[40.84253991000017,-14.464450779000018],[40.832041863000114,-14.494073174999967],[40.819021030000016,-14.502536716999925],[40.7884220710001,-14.509372653999932],[40.7732853520001,-14.514825127999885],[40.76002037900017,-14.52613697699995],[40.760996941000116,-14.53492603999993],[40.77173912900017,-14.53972747199991],[40.78695722700016,-14.539157809999947],[40.79712975400017,-14.532159112999878],[40.80616295700011,-14.522230726999965],[40.816091342000185,-14.517185153999934],[40.82862389400012,-14.524834893999952],[40.833750847,-14.538750908999944],[40.83220462300008,-14.555840752999984],[40.811371290000096,-14.612969658999871],[40.81324303500017,-14.623711846999965],[40.821787957000055,-14.640801690999837],[40.825043165000096,-14.644138278999863],[40.83090254000015,-14.648125908999845],[40.83716881600011,-14.653741143999921],[40.84229576900022,-14.662041924999912],[40.84351647200006,-14.668552342],[40.8435978520001,-14.682305596999923],[40.84571373800023,-14.689222915],[40.847992384000094,-14.705010674999953],[40.834157748000194,-14.76360442499991],[40.83220462300008,-14.769138279000016],[40.83269290500007,-14.774021091999897],[40.83887780000012,-14.781426690999977],[40.84245853000018,-14.787204684999935],[40.84253991000017,-14.79290129999984],[40.84009850400011,-14.79827239399998],[40.83545983200011,-14.802341403999932],[40.78760826900012,-14.821954033999987],[40.780121290000096,-14.82952239399995],[40.775157097000175,-14.838067315999877],[40.73926842500006,-14.874281507999896],[40.726247592000185,-14.886895440999877],[40.70972741000011,-14.895277601999936],[40.69166100400011,-14.900079033999916],[40.67408287900017,-14.901543877999968],[40.66570071700019,-14.89544036299999],[40.65455162900017,-14.865166925],[40.64307701900023,-14.853773695999848],[40.64698326900023,-14.872653903999876],[40.64812259200008,-14.891534112999906],[40.6536564460001,-14.908461195999891],[40.67090905000012,-14.92205169099985],[40.6868595710001,-14.924574476999863],[40.734385613000114,-14.924493096999882],[40.74610436300011,-14.92205169099985],[40.75635826900011,-14.938083591999927],[40.767100457000225,-14.960381768999966],[40.77442467500006,-14.98235442499997],[40.77393639400022,-14.997735283999916],[40.759043816000116,-14.985609632999838],[40.74887129000015,-14.98455169099988],[40.73926842500006,-14.988376559999892],[40.726247592000185,-14.990980726999892],[40.67090905000012,-14.976657809999907],[40.66195722700016,-14.994886976999979],[40.67457116000017,-15.023614190999936],[40.71192467500012,-15.072930596999925],[40.68083743600019,-15.083672783999843],[40.649668816000116,-15.087660414999915],[40.622243686000076,-15.098077080999984],[40.60206139400023,-15.12810637799994],[40.587657097000175,-15.122816664999975],[40.56739342500006,-15.118340752999913],[40.547211134000094,-15.11695728999993],[40.53321373800017,-15.120700778999876],[40.52800540500007,-15.131036065999877],[40.519704623000194,-15.167250257999896],[40.51270592500012,-15.182061455999872],[40.54835045700017,-15.187432549999926],[40.56609134200008,-15.19353606599999],[40.580902540000096,-15.203220309999878],[40.58952884200002,-15.173028252999956],[40.60962975400017,-15.161309502999954],[40.63542728000019,-15.164646091999899],[40.66041100400011,-15.178969007999967],[40.67416425900015,-15.20110442499987],[40.681651238000114,-15.233005466999883],[40.677500847000175,-15.260918878],[40.656586134000094,-15.27157968499995],[40.669281446000156,-15.286716403999947],[40.66684004000015,-15.299248955999856],[40.62940514400012,-15.339043877999925],[40.62484785200016,-15.345635674999913],[40.62663821700002,-15.361423434999862],[40.62354576900023,-15.369805596999909],[40.618337436000076,-15.378350518999852],[40.6126408210001,-15.385023695999893],[40.59343509200002,-15.4022763],[40.58838951900012,-15.408623955999843],[40.58668053500017,-15.416110934999905],[40.58822675900015,-15.432305596999953],[40.58464603000007,-15.439711195999848],[40.57634524800008,-15.4530575499999],[40.57276451900011,-15.468194268999937],[40.576182488000114,-15.478610934999933],[40.58838951900012,-15.477634372999873],[40.581797722,-15.492120049999912],[40.57325280000012,-15.504978123000015],[40.561859571000156,-15.515883070999903],[40.54672285200016,-15.525323174999839],[40.53337649800014,-15.530938408999928],[40.524261915000146,-15.531670830999957],[40.49903405000006,-15.525323174999839],[40.4959416020001,-15.551527601999949],[40.48072350400011,-15.569105726999979],[40.44068444100017,-15.597344658999956],[40.42579186300022,-15.615004164999958],[40.363617384000094,-15.714776299999969],[40.16456139400006,-15.915622653999906],[40.122243686000076,-15.939629815999934],[40.116058790000096,-15.948418877999913],[40.11394290500019,-15.961032809999976],[40.109711134000094,-15.97226327899999],[40.09839928500017,-15.977227471999852],[40.089121941000116,-15.978610935],[40.07618248800023,-15.982517184999919],[40.06495201900023,-15.989190362999963],[40.06080162900011,-15.998304945999877],[40.072032097000175,-16.009535414999874],[40.093516472,-15.997979424999855],[40.12907962300019,-15.96355559699991],[40.13477623800006,-15.98650481599999],[40.1268009770001,-16.004082940999922],[40.115244988000114,-16.02027760199998],[40.1092228520001,-16.039239190999975],[40.104746941000116,-16.06406015399986],[40.093028191000116,-16.07952239399988],[40.06080162900011,-16.108168226999847],[40.019297722000175,-16.18499114399995],[39.992360873000024,-16.222426039999903],[39.95777428500011,-16.238539320999877],[39.893728061000076,-16.239678643999905],[39.8752547540001,-16.244805596999925],[39.81332441500015,-16.27695077899989],[39.783376498000194,-16.301934502999984],[39.78093509200008,-16.306247653999904],[39.7825626960001,-16.314873956],[39.789398634000094,-16.318454684999963],[39.800629102000094,-16.319919529000018],[39.80128014400023,-16.331719659],[39.799815300000056,-16.356377862999906],[39.800629102000094,-16.36825937299986],[39.8079533210001,-16.388929945999873],[39.82064863400015,-16.406670830999868],[39.837087436000076,-16.42050546699987],[39.85596764400012,-16.42978281],[39.810557488000114,-16.45761484199997],[39.793793165000096,-16.46379973799985],[39.79265384200008,-16.456719658999887],[39.78760826900012,-16.443617445999905],[39.786387566000116,-16.436455987999878],[39.77686608200011,-16.44085051899995],[39.7669376960001,-16.443291924999983],[39.75668379000015,-16.444105726999894],[39.746104363000114,-16.443291924999983],[39.7513126960001,-16.447930597],[39.76075280000012,-16.459079684999935],[39.765961134000094,-16.46379973799985],[39.73910566500015,-16.473077080999897],[39.72901451900006,-16.479180596999967],[39.71827233200016,-16.491143487999906],[39.71957441500015,-16.492933851999894],[39.720713738000114,-16.499200127999856],[39.71989993600019,-16.50725676899998],[39.71509850400011,-16.51506926899988],[39.69825280000012,-16.532159112999835],[39.67839603000019,-16.546075127999984],[39.63746178500017,-16.56829192499987],[39.60767662900017,-16.59189218499999],[39.56739342500006,-16.60442473799999],[39.55779056100019,-16.610935153999975],[39.532562696000156,-16.63583749799993],[39.35621178500017,-16.72389088299994],[39.20435631600017,-16.816989842],[39.187510613000114,-16.830987237999963],[39.16146894600009,-16.867852471999925],[39.14747155000006,-16.8766415339999],[39.12916100400011,-16.867852471999925],[39.129079623000194,-16.871840101999823],[39.12891686300023,-16.888116143999852],[39.11793053500011,-16.901788018999966],[39.100433790000146,-16.91041432099989],[39.08073978000018,-16.91570403399996],[39.098317905000016,-16.921807549999855],[39.11329186300006,-16.917250257999893],[39.122325066000165,-16.91741301899995],[39.122325066000165,-16.936781507999967],[39.11622155000006,-16.954766534],[39.10499108200011,-16.970961195999877],[39.09050540500007,-16.98381926899998],[39.07455488400015,-16.991387627999856],[39.03858483200017,-16.995293877999938],[39.003672722000054,-16.993259372999916],[38.970469597,-16.996270440999908],[38.91260826900012,-17.033868097],[38.87549889400012,-17.045586847],[38.71827233200011,-17.059665622999944],[38.703135613000114,-17.054131768999838],[38.679453972000175,-17.03020598799995],[38.662933790000096,-17.025567315999936],[38.6849064460001,-17.054131768999838],[38.666758660000106,-17.075372002999913],[38.62989342500006,-17.088962497999873],[38.59546959700012,-17.09441497199999],[38.599782748000194,-17.07610442499994],[38.553070509000094,-17.121758721999882],[38.53744550900015,-17.121514580999843],[38.526621941000116,-17.114190362999835],[38.51880944100011,-17.1065406229999],[38.51221764400006,-17.104668877999842],[38.504242384000094,-17.110935153999975],[38.500336134000094,-17.118584893999905],[38.500824415000096,-17.127129815999922],[38.505381707000225,-17.13543059699991],[38.222829623000024,-17.243584893999966],[38.20980879000015,-17.25269947699988],[38.187022332000225,-17.278008722],[38.17286217500012,-17.287530205999914],[38.155935092000135,-17.286797783999887],[38.13770592500006,-17.263848565999893],[38.136241082000055,-17.196465752999966],[38.121755405,-17.176934503],[38.12859134200008,-17.197442315999865],[38.11670983200011,-17.201918226999833],[38.10401451900023,-17.20110442499991],[38.09180748800017,-17.196709893999838],[38.080821160000106,-17.190687757999925],[38.09473717500006,-17.211114190999975],[38.11817467500006,-17.23455169099988],[38.12964928500011,-17.256605726999965],[38.10808353000019,-17.273207290000013],[38.12794030000011,-17.2863095029999],[38.10474694100017,-17.303643487999977],[38.039886915000096,-17.327813408999972],[37.90886478000018,-17.355157158999955],[37.853688998000074,-17.38347747199991],[37.72445722700016,-17.46835702899996],[37.71436608200011,-17.46998463299998],[37.71705162900011,-17.456963799999983],[37.69206790500007,-17.46705494599996],[37.655121290000096,-17.497816664999945],[37.61524498800023,-17.523858331],[37.58057701900006,-17.518975518999937],[37.55591881600017,-17.54566822699988],[37.427419467000135,-17.618747653999947],[37.40064537900011,-17.64446379999991],[37.385590040000096,-17.654880466999895],[37.37110436300023,-17.658461195999877],[37.360850457000225,-17.649997654000018],[37.343923373000024,-17.67310963299988],[37.33399498800022,-17.681084893999923],[37.31983483200011,-17.68417734199999],[37.293142123000194,-17.68474700299997],[37.28296959700012,-17.690606377999842],[37.27898196700008,-17.70427825299987],[37.26783287900017,-17.72039153399984],[37.24219811300006,-17.736504815999908],[37.212412957000055,-17.74504973799992],[37.189463738000114,-17.7387020809999],[37.18506920700011,-17.775648695999948],[37.15658613400009,-17.810235283999944],[37.08643639400023,-17.86907317499984],[37.0135197270001,-17.985528252999885],[36.984060092000135,-18.012383721999868],[36.98365319100011,-18.00465260199995],[36.97722415500019,-17.98512135199988],[36.97038821700019,-17.991957289999974],[36.96143639400023,-17.97909921699987],[36.95264733200011,-17.969496351999894],[36.94239342500006,-17.962009373],[36.92920983200011,-17.955336195999962],[36.91504967500012,-17.94491952899996],[36.9114689460001,-17.93254973799985],[36.91163170700011,-17.918633721999868],[36.908376498000024,-17.90325286299992],[36.88795006600017,-17.881036065999865],[36.85914147200012,-17.871270440999922],[36.83277428500011,-17.87761809699994],[36.81959069100017,-17.90325286299992],[36.851735873000024,-17.88290781],[36.87354576900012,-17.8990210919999],[36.88746178500017,-17.93254973799985],[36.89527428500017,-17.964613539999917],[36.90007571700008,-18.001641533999855],[36.907481316000116,-18.014418226999894],[36.94092858200011,-18.02223072699998],[36.9524845710001,-18.02922942499987],[36.96355228000007,-18.03826262799987],[36.97722415500019,-18.046563408999855],[36.9466251960001,-18.101820570999863],[36.93287194100017,-18.11882903399983],[36.90699303500017,-18.14470794099985],[36.89844811300023,-18.158868096999868],[36.89527428500017,-18.176934502999885],[36.88738040500019,-18.18906015399996],[36.868418816000165,-18.186211846999925],[36.84555097700015,-18.178969007999825],[36.82642662900011,-18.177504164999945],[36.811208530000016,-18.186944268999948],[36.80103600400017,-18.201348565999922],[36.78541100400011,-18.232110283999916],[36.804209832000225,-18.225355726999876],[36.833506707000055,-18.20476653399993],[36.8475041020001,-18.19801197699981],[36.83570397200017,-18.219008070999934],[36.766286655000016,-18.300225518999937],[36.72559655000006,-18.332940362999963],[36.63168379000015,-18.43767669099985],[36.58497155000006,-18.478936455999886],[36.552012566000116,-18.48601653399986],[36.5447697270001,-18.52629973799992],[36.53834069100017,-18.5407040339999],[36.53191165500007,-18.53622812299993],[36.5110783210001,-18.52703215899986],[36.51441491000011,-18.54680754999997],[36.517914259000094,-18.553643487999906],[36.505056186000076,-18.552422783999887],[36.48666425900015,-18.55291106599988],[36.47291100400011,-18.556410414999856],[36.473480665000096,-18.56422291499986],[36.47950280000006,-18.57642994599992],[36.47445722700016,-18.58814869599982],[36.45655358200011,-18.60898202899989],[36.417491082000225,-18.68873463299984],[36.40186608200017,-18.711358330999985],[36.403656446000156,-18.69817473799986],[36.40162194100011,-18.689385674999883],[36.396250847000175,-18.686455987999864],[36.388194207000225,-18.690850518999937],[36.384287957000225,-18.69866301899985],[36.38111412900017,-18.72047291499989],[36.372406446000156,-18.741794528999947],[36.38054446700019,-18.74456145599983],[36.389903191000116,-18.740411065999965],[36.388194207000225,-18.732517184999907],[36.39185631600017,-18.73463307099982],[36.398773634000094,-18.737399997999873],[36.40186608200017,-18.739353122999916],[36.40300540500018,-18.74244557099982],[36.40316816500015,-18.752129815999865],[36.41618899800002,-18.77499765399996],[36.40748131600017,-18.7848446589999],[36.390798373000194,-18.790785415],[36.37769616000017,-18.797295830999914],[36.35889733200011,-18.804131768999923],[36.33627363400015,-18.797295830999914],[36.31373131600017,-18.786065362999906],[36.29542076900012,-18.780205987999878],[36.27222741000016,-18.75847747199998],[36.23812910200015,-18.69410572699981],[36.23682701900023,-18.725030205999925],[36.25855553500011,-18.794366143999895],[36.26417076900012,-18.830254815999893],[36.250336134000094,-18.862888278999932],[36.259043816000116,-18.86541106599985],[36.2654728520001,-18.87021249799993],[36.2693791020001,-18.877211195999834],[36.2708439460001,-18.886407158999887],[36.2669376960001,-18.890883070999863],[36.258148634000094,-18.889336846999825],[36.244313998000194,-18.88323333099983],[36.21143639400023,-18.888278903999947],[36.18213951900012,-18.89690520599987],[36.14673912900011,-18.90048593499993],[36.13184655000006,-18.886325778999904],[36.12696373800005,-18.828708591999856],[36.129079623000194,-18.821221612999963],[36.13306725400017,-18.811944268999838],[36.13306725400017,-18.804131768999923],[36.12378991000011,-18.800713799999823],[36.11426842500012,-18.80217864399988],[36.10857181100002,-18.80592213299991],[36.078461134000094,-18.837823174999926],[36.030609571000156,-18.905694268999838],[36.00953209700012,-18.920830987999835],[35.976735873000024,-18.924899997999887],[35.98275800900015,-18.904554945999806],[35.97885175900015,-18.8937313779999],[35.96892337300008,-18.89299895599987],[35.956797722000175,-18.903741143999966],[35.95093834700012,-18.91822682099992],[35.946787957000055,-18.93613046699997],[35.940765821000156,-18.95322030999992],[35.928965691000116,-18.965101820999877],[35.90748131600017,-18.969821872999972],[35.89551842500006,-18.961358330999857],[35.88640384200008,-18.94947682099989],[35.87354576900012,-18.94410572699985],[35.863942905000066,-18.946384372999916],[35.85531660200016,-18.95134856599995],[35.84937584700012,-18.959079684999878],[35.84693444100017,-18.968926690999975],[35.85027103000019,-18.978692315999837],[35.857758009000094,-18.976820570999877],[35.86687259200008,-18.971937757999807],[35.87354576900012,-18.972588799999855],[35.86744225400011,-18.98845794099988],[35.72339928500017,-19.082452080999914],[35.71436608200017,-19.092380466999927],[35.69898522200012,-19.114190362999963],[35.68873131600017,-19.12281666499989],[35.676117384000094,-19.119805596999882],[35.662282748000194,-19.132989190999833],[35.64087975400017,-19.170668226999823],[35.64812259200019,-19.167087497999844],[35.653819207000055,-19.165704033999944],[35.66822350400011,-19.163832289999974],[35.66822350400011,-19.170668226999823],[35.64047285200016,-19.185479424999883],[35.61402428500017,-19.205743096999896],[35.56519616000017,-19.252618096999853],[35.58570397200012,-19.252618096999853],[35.577321811000076,-19.266371351999865],[35.53272545700011,-19.315199476999865],[35.525401238000114,-19.32008228999993],[35.51392662900017,-19.322035414999874],[35.50521894600015,-19.3253720029999],[35.50147545700022,-19.333265882999882],[35.49870853000007,-19.343194268999966],[35.493174675000056,-19.35247161299983],[35.44166100400017,-19.41765715899986],[35.33985436300023,-19.52068450299991],[35.2225041020001,-19.610121351999823],[35.12680097700016,-19.70501067499994],[35.09213300900015,-19.71941497199991],[35.06706790500007,-19.726006768999895],[35.012543165000096,-19.779473565999922],[34.9822697270001,-19.80136484199994],[34.97315514400012,-19.79094817499987],[34.96176191500015,-19.798435153999932],[34.93458092500012,-19.8292782529999],[34.88005618600002,-19.863376559999907],[34.84848066500015,-19.85165781],[34.840017123000194,-19.844414971999896],[34.83277428500017,-19.8292782529999],[34.827403191000116,-19.80055104000003],[34.82309004000009,-19.786716403999932],[34.815684441000116,-19.780857028999904],[34.80730228000019,-19.775567315999837],[34.764984571000156,-19.739841403999975],[34.71713300900015,-19.723077080999957],[34.70582116000017,-19.715590101999908],[34.666351759000094,-19.659274998000015],[34.6580509770001,-19.650485934999878],[34.642914259000094,-19.643812757999825],[34.636241082000055,-19.628350518999895],[34.63257897200012,-19.610121351999823],[34.626719597000175,-19.595879815999908],[34.61695397200012,-19.58945077899999],[34.60108483200011,-19.582940362999906],[34.583506707000055,-19.577894789999874],[34.56861412900011,-19.575941665],[34.55323326900006,-19.582289320999863],[34.54273522200012,-19.610121351999823],[34.530446811000076,-19.616306247999884],[34.530446811000076,-19.623711846999953],[34.54607181100002,-19.622735283999987],[34.565114780000016,-19.606703382999896],[34.582041863000114,-19.602715752999927],[34.59961998800023,-19.60491301899991],[34.613780144000174,-19.611586195999873],[34.62322024800008,-19.623304945999948],[34.630218946000156,-19.654229425],[34.63884524800008,-19.66952890399996],[34.69190514400006,-19.74293385199988],[34.69809004000015,-19.746677341999913],[34.70818118600013,-19.75009530999992],[34.7259220710001,-19.753513279000018],[34.73503665500018,-19.756768487999878],[34.74122155000006,-19.76474374799993],[34.750173373000194,-19.780857028999904],[34.77361087300008,-19.806084893999866],[34.77759850400016,-19.81503671699998],[34.772959832000225,-19.841485283999873],[34.757578972000175,-19.86907317499997],[34.73511803500017,-19.886895440999865],[34.70923912900016,-19.88388437299994],[34.71176191500009,-19.901055596999967],[34.72120201900012,-19.901055596999967],[34.73316491000011,-19.893975518999923],[34.74333743600019,-19.890069268999838],[34.76107832100015,-19.89519622199994],[34.76482181100019,-19.903252862999874],[34.75700931100013,-19.931735934999978],[34.757578972000175,-19.947930596999925],[34.76417076900023,-19.980238539999945],[34.764984571000156,-19.993096612999977],[34.763845248000024,-20.001397393999866],[34.76197350400017,-20.00676848799992],[34.75879967500012,-20.011407158999944],[34.75359134200019,-20.017266533999972],[34.748871290000096,-20.02678801899998],[34.75074303500017,-20.035332940999908],[34.75473066500015,-20.04338958099994],[34.75700931100013,-20.051446221999882],[34.75562584700012,-20.073337497999916],[34.75700931100013,-20.08310312299986],[34.7600203790001,-20.090590101999922],[34.76880944100017,-20.10523853999993],[34.77198326900023,-20.120293877999856],[34.776866082000225,-20.13502369599985],[34.77759850400016,-20.143812757999896],[34.774912957000055,-20.15211353999989],[34.766856316000116,-20.16155364399998],[34.764984571000156,-20.168389580999914],[34.756521030000016,-20.180352471999853],[34.737152540000096,-20.175062757999967],[34.70582116000017,-20.15748463299994],[34.68921959700012,-20.16155364399998],[34.675140821000156,-20.167657158999887],[34.663828972000175,-20.167087497999916],[34.65528405000006,-20.15146249799993],[34.656423373000194,-20.158949476999894],[34.65626061300022,-20.164646091999884],[34.65528405000006,-20.171807549999926],[34.670746290000096,-20.188571872999944],[34.74333743600019,-20.226495049999954],[34.74333743600019,-20.23267994599985],[34.73511803500017,-20.24081796699994],[34.72754967500012,-20.252862237999963],[34.72095787900017,-20.267022393999895],[34.7102970710001,-20.30055103999993],[34.70573978000019,-20.310967706],[34.68531334700012,-20.33228932099989],[34.67994225400017,-20.346937757999896],[34.703461134000094,-20.3624813779999],[34.69874108200011,-20.37322356599999],[34.68327884200008,-20.383884372999944],[34.6701766290001,-20.388360284],[34.65691165500019,-20.386163018999905],[34.640310092000135,-20.37607187299986],[34.6438908210001,-20.39080169099985],[34.64926191500015,-20.405531507999925],[34.65626061300022,-20.418552342000012],[34.66456139400012,-20.428480726999837],[34.6775822270001,-20.437107029000018],[34.69890384200008,-20.440850518999866],[34.70923912900016,-20.445570570999873],[34.712250196000156,-20.45240650799998],[34.716319207000225,-20.466973565999908],[34.71753991000017,-20.483656507999953],[34.712657097000175,-20.49716562299993],[34.673106316000116,-20.52890390399989],[34.66830488400015,-20.541110934999864],[34.70337975400011,-20.523858330999857],[34.72429446700019,-20.519138278999932],[34.73991946700008,-20.52434661299985],[34.74244225400017,-20.550225518999937],[34.74968509200019,-20.56015390399986],[34.764984571000156,-20.548597915000016],[34.773122592000185,-20.56951262799997],[34.78646894600009,-20.57887135199992],[34.80372155000012,-20.585870049999983],[34.82211347700016,-20.599786065999965],[34.83253014400023,-20.612074476999933],[34.84009850400017,-20.62493254999987],[34.84473717500012,-20.640720309999907],[34.84644616000011,-20.66155364399998],[34.85181725400017,-20.670830987999846],[34.88038170700005,-20.65113697699998],[34.89356530000012,-20.658461195999905],[34.89258873800023,-20.674248955999857],[34.87940514400012,-20.68377044099985],[34.868011915000096,-20.69443124799997],[34.8724064460001,-20.71306731599995],[34.87810306100018,-20.70452239399985],[34.886078321000156,-20.698825778999947],[34.89616946700019,-20.695082290000016],[34.90788821700019,-20.69255950299991],[34.955577019000174,-20.69597747199991],[34.960703972000175,-20.704278252999895],[34.99333743600002,-20.730157159],[34.997325066000116,-20.73992278399986],[34.99805748800023,-20.75408294099988],[34.99659264400006,-20.78069426899999],[35.00749759200007,-20.774590752999927],[35.01612389400023,-20.775160414999988],[35.02198326900012,-20.78191497199984],[35.02393639400023,-20.794366143999937],[35.02068118600019,-20.801364841999927],[35.00660241000017,-20.814873955999985],[35.00342858200011,-20.825453382999953],[35.00961347700016,-20.842868748000015],[35.04021243600007,-20.869724216999913],[35.051931186000076,-20.88388437299993],[35.045095248000024,-20.895765882999967],[35.03980553500017,-20.909112237999977],[35.037119988000114,-20.92327239399991],[35.03760826900006,-20.938409112999903],[35.06560306100019,-20.916924737999892],[35.079763217000135,-20.913750909],[35.09961998800023,-20.924737237999963],[35.10645592500006,-20.930433851999865],[35.10816491000017,-20.932875257999896],[35.10914147200012,-20.93645598799996],[35.11329186300017,-20.945896091999884],[35.112478061000076,-20.95265064899992],[35.112478061000076,-20.952813408999884],[35.10792076900012,-20.959242445999976],[35.10775800900015,-20.964125257999868],[35.12012780000006,-20.966403903999932],[35.11329186300017,-20.988457940999922],[35.10767662900017,-20.998711846999868],[35.09961998800023,-21.00790781000002],[35.088715040000146,-21.001234632999882],[35.077647332000105,-21.00017669099992],[35.06902103000018,-21.005547783999972],[35.065440300000056,-21.017836195999934],[35.06853274800014,-21.025079033999944],[35.07536868600002,-21.026788018999866],[35.08228600400011,-21.02662525799998],[35.085948113000114,-21.02776458099984],[35.086924675000056,-21.033868096999925],[35.08570397200012,-21.04192473799986],[35.0857853520001,-21.07000090899996],[35.07878665500007,-21.085056247999972],[35.06568444100017,-21.09384531000002],[35.048106316000116,-21.096612237999903],[35.041351759000094,-21.092705987999906],[35.033213738000114,-21.086195570999905],[35.02491295700011,-21.084893487999906],[35.017751498000074,-21.096612237999903],[35.016449415000096,-21.111097914999945],[35.022308790000096,-21.117933851999965],[35.03174889400023,-21.121758721999967],[35.046641472000175,-21.131280205999886],[35.05079186300023,-21.13193124799993],[35.05437259200019,-21.132907809999903],[35.057953321000156,-21.137627862999988],[35.058604363000114,-21.14283619599982],[35.05665123800006,-21.148695570999948],[35.05396569100017,-21.152601820999934],[35.051931186000076,-21.15195077899999],[35.053558790000096,-21.163344007999868],[35.053233269000174,-21.17229583099997],[35.05543053500017,-21.179375908999855],[35.065440300000056,-21.18613046699997],[35.05941816500015,-21.197930596999953],[35.066172722000175,-21.20330169099999],[35.077647332000105,-21.206801039999903],[35.085948113000114,-21.2133114559999],[35.08855228000019,-21.227308851999865],[35.08155358200011,-21.232598565999922],[35.069672071000156,-21.23503997199995],[35.057953321000156,-21.24065520599987],[35.04753665500018,-21.25286223799985],[35.05144290500019,-21.256768487999846],[35.062266472000175,-21.259454033999916],[35.07227623800023,-21.26799895599993],[35.07488040500007,-21.279392184999907],[35.07227623800023,-21.32195403399986],[35.09717858200011,-21.29713307099989],[35.126963738000114,-21.17864348799992],[35.12842858200017,-21.196058851999894],[35.12134850400011,-21.260674737999935],[35.11182701900012,-21.289646091999927],[35.12012780000006,-21.377211195999962],[35.15162194100017,-21.453871351999837],[35.212250196000156,-21.551446221999853],[35.22681725400011,-21.568617445999877],[35.24000084700011,-21.575860283999987],[35.271006707000055,-21.644138278999975],[35.273448113000114,-21.686781507999925],[35.26856530000012,-21.773614190999837],[35.27784264400006,-21.81666432099996],[35.307790561000076,-21.878187757999836],[35.3118595710001,-21.89462655999992],[35.316579623000194,-21.95810312299993],[35.32691491000011,-22.00554778399986],[35.33578535200015,-22.089125257999825],[35.30591881600017,-22.345961195999877],[35.30567467500006,-22.388604425],[35.31153405000006,-22.413018487999864],[35.325694207000105,-22.42473723799985],[35.34359785200016,-22.43124765399993],[35.360362175000056,-22.43987395599993],[35.37964928500011,-22.47275156000002],[35.394053582000105,-22.48772551899995],[35.40064537900017,-22.477146091999913],[35.39779707100009,-22.433363539999945],[35.405121290000096,-22.418552341999966],[35.42798912900011,-22.405694268999937],[35.40463300900015,-22.369398695999944],[35.391123894000174,-22.320570570999948],[35.39087975400011,-22.27157968499989],[35.40805097700016,-22.234470309999878],[35.40398196700019,-22.22535572699998],[35.40455162900017,-22.2179501279999],[35.40845787900017,-22.211602471999953],[35.41488691500015,-22.20647551899995],[35.426605665000146,-22.236016533999912],[35.435883009000094,-22.24277109199994],[35.44906660200016,-22.226820570999934],[35.42408287900011,-22.184747002999885],[35.41488691500015,-22.179131768999966],[35.419932488000114,-22.167168877999856],[35.44166100400017,-22.138278903999932],[35.442556186000076,-22.132500908999955],[35.44141686300023,-22.125583591999966],[35.44141686300023,-22.11956145599987],[35.445485873000194,-22.11712004999984],[35.44971764400012,-22.115817967000012],[35.45557701900023,-22.112969658999987],[35.46062259200019,-22.10979583099993],[35.4627384770001,-22.107517184999864],[35.46713300900009,-22.095798434999963],[35.47738691500009,-22.09148528399987],[35.488942905000016,-22.092543226999922],[35.49683678500011,-22.096612237999963],[35.500824415000096,-22.1060523419999],[35.50049889400022,-22.117771091999884],[35.49683678500011,-22.141534112999974],[35.517344597000175,-22.310153903999947],[35.52515709700012,-22.29306406],[35.52906334700012,-22.275811456],[35.53288821700008,-22.21998463299984],[35.54175866000011,-22.195896091999984],[35.54468834700012,-22.179131768999966],[35.551442905000066,-22.179131768999966],[35.53785241000011,-22.302666924999897],[35.53785241000011,-22.322849217000012],[35.54468834700012,-22.388604425],[35.542246941000165,-22.409926039999874],[35.492686394000174,-22.564873955999914],[35.489431186000125,-22.690036716999856],[35.520762566000165,-22.90764739399998],[35.53785241000011,-22.946954033999972],[35.54761803500017,-22.934502862999878],[35.55046634200019,-22.928643487999835],[35.551442905000066,-22.919610283999916],[35.56885826900023,-22.92685312299993],[35.585134311000076,-22.92717864399995],[35.59327233200011,-22.92180754999991],[35.58570397200012,-22.91220468500002],[35.58570397200012,-22.905938408999887],[35.60613040500019,-22.914727471999853],[35.6009220710001,-22.943617445999948],[35.564626498000194,-23.012465101999837],[35.542491082000225,-23.04216887799994],[35.50367272200012,-23.131280205999843],[35.48552493600013,-23.160902601999876],[35.47852623800023,-23.176853122999884],[35.47584069100017,-23.197035414999913],[35.478037957000225,-23.218031507999953],[35.48780358200011,-23.25481536299985],[35.489431186000125,-23.275323174999897],[35.482188347000175,-23.317315362999963],[35.42408287900011,-23.480645440999965],[35.40805097700016,-23.611016534],[35.40805097700016,-23.697035414999903],[35.405772332000055,-23.717217705999843],[35.399261915000096,-23.739190362999935],[35.39039147200012,-23.74797942499991],[35.380137566000116,-23.727715752999984],[35.38111412900017,-23.708672784],[35.38550866000017,-23.690850518999923],[35.38160241000017,-23.67766692499997],[35.356944207000055,-23.672539971999967],[35.34034264400012,-23.676202080999914],[35.34359785200016,-23.684258721999868],[35.35450280000006,-23.69158294099995],[35.360362175000056,-23.693617445999976],[35.36638431100019,-23.716729424999855],[35.367198113000114,-23.727715752999984],[35.36500084700012,-23.746677341999913],[35.35572350400017,-23.785902601999936],[35.35352623800006,-23.80657317499994],[35.355235222000175,-23.839532158999916],[35.35352623800006,-23.851820570999976],[35.35010826900023,-23.86199309699984],[35.342458530000016,-23.875909112999906],[35.33985436300023,-23.886000257999967],[35.34050540500019,-23.89202239399988],[35.344981316000116,-23.911309502999913],[35.346039259000094,-23.923272393999852],[35.343923373000194,-23.934665623],[35.334646030000016,-23.953708591999984],[35.33236738400015,-23.9645321589999],[35.3411564460001,-23.963636976999908],[35.38770592500006,-23.9126929669999],[35.37159264400005,-23.878187757999882],[35.36996504000015,-23.859795830999843],[35.380137566000116,-23.844414971999896],[35.39478600400011,-23.841892184999963],[35.40919030000006,-23.849867445999934],[35.4353947270001,-23.87175872199995],[35.454356316000116,-23.879978122999873],[35.466075066000116,-23.88014088299984],[35.472504102000094,-23.87118906],[35.47999108200011,-23.80103932099993],[35.47584069100017,-23.789808851999922],[35.47584069100017,-23.782403252999853],[35.51677493600019,-23.791761976999965],[35.52735436300023,-23.802992445999976],[35.53199303500016,-23.847344658999916],[35.53500410200016,-23.855075779000018],[35.54127037900011,-23.85808684699984],[35.54322350400016,-23.863213799999855],[35.4856876960001,-24.03639088299995],[35.48324629000015,-24.056735934999864],[35.48536217500006,-24.069756768999852],[35.49480228000007,-24.09010182099985],[35.49683678500011,-24.101332290000013],[35.493500196000156,-24.110528252999913],[35.48633873800022,-24.117364190999837],[35.47901451900023,-24.12297942499984],[35.47584069100017,-24.12810637799994],[35.4705509770001,-24.14788176899995],[35.45875084700012,-24.166599217000012],[35.30437259200002,-24.375746351999922],[35.19117272200012,-24.489027601999904],[35.188324415000096,-24.49895598799992],[35.18799889400006,-24.51197682099982],[35.18580162900017,-24.521905206],[35.180674675000056,-24.53069426899988],[35.10645592500006,-24.59791432099992],[34.81226647200011,-24.741387627999913],[34.64893639400023,-24.81275807099989],[34.48267662900011,-24.851250908999972],[34.48015384200019,-24.852227471999868],[34.34937584700012,-24.903090101999894],[34.32325280000012,-24.91008879999997],[34.21216881600011,-24.952732028999904],[34.15650475400017,-24.96087004999991],[33.93384850400011,-25.036228122999887],[33.72917728000019,-25.105075778999947],[33.585215691000116,-25.174574476999947],[33.4646916020001,-25.21314869599985],[33.317637566000116,-25.287041924999926],[33.2771916020001,-25.296807549999883],[33.2771916020001,-25.289971612999864],[33.29346764400011,-25.283298434999907],[33.310069207000055,-25.273125908999944],[33.3240666020001,-25.261163018999838],[33.33253014400006,-25.24846770599987],[33.31918379000015,-25.252373955999957],[33.27857506600017,-25.270765882999896],[33.26978600400011,-25.280043226999865],[33.25757897200012,-25.288344007999925],[33.23292076900023,-25.290785414999874],[33.214610222000175,-25.29729583099987],[33.22144616000017,-25.31804778399996],[33.22730553500011,-25.314548434999878],[33.24195397200012,-25.309828382999868],[33.22730553500011,-25.3319638],[33.204356316000116,-25.34531015399986],[33.15308678500011,-25.365817967],[33.13200931100019,-25.37916432099992],[32.87273196700019,-25.54387786299999],[32.84473717500006,-25.572686455999843],[32.7923283210001,-25.640069268999937],[32.76954186300017,-25.681735934999978],[32.7513126960001,-25.745863539999856],[32.73731530000012,-25.767347914999885],[32.74463951900023,-25.8169898419999],[32.739919467000135,-25.82586028399993],[32.74073326900023,-25.820082289999974],[32.73878014400006,-25.813083591999895],[32.734711134000094,-25.80396900799991],[32.72852623800023,-25.80396900799991],[32.721527540000096,-25.812188408999987],[32.71225019600009,-25.817803643999905],[32.704274936000076,-25.824151299999926],[32.70069420700011,-25.83464934699991],[32.69971764400012,-25.848890882999825],[32.69703209700012,-25.862399997999887],[32.69288170700011,-25.874688408999926],[32.68702233200016,-25.88591887799994],[32.639984571000156,-25.926934502999853],[32.63233483200011,-25.938083591999956],[32.62696373800017,-25.944024346999896],[32.60059655000006,-25.96404387799987],[32.59148196700008,-25.9690080709999],[32.579600457000225,-25.969821873000015],[32.57105553500011,-25.967054945999962],[32.55054772200012,-25.955336195999962],[32.53370201900023,-25.950372002999927],[32.51661217500011,-25.949965101999922],[32.500173373000194,-25.954766534],[32.48519941500015,-25.96542734199994],[32.47681725400011,-25.984551690999908],[32.480804884000094,-26.003187757999896],[32.49138431100002,-26.014092705999886],[32.501963738000114,-26.00945403399986],[32.50098717500012,-26.004571221999967],[32.501963738000114,-25.97210051899998],[32.50879967500012,-25.968519789999913],[32.52361087300008,-25.97079843499999],[32.538828972000175,-25.975274346999868],[32.54712975400011,-25.978936455999914],[32.5520939460001,-25.98658619599993],[32.559418165000096,-26.003187757999896],[32.56413821700019,-26.00945403399986],[32.573903842000014,-26.014906507999896],[32.59538821700007,-26.02239348799986],[32.60572350400017,-26.0304501279999],[32.612803582000225,-26.041436455999854],[32.621755405000066,-26.064222914999974],[32.628916863000114,-26.075290622999916],[32.63754316500009,-26.082614842000012],[32.64527428500011,-26.08757903399996],[32.65072675900015,-26.093357028999932],[32.656586134000094,-26.123955987999864],[32.674652540000096,-26.166680596999953],[32.68083743600019,-26.188164971999896],[32.698090040000096,-26.1734351539999],[32.723480665000096,-26.17831796699997],[32.74805748800023,-26.191501559999917],[32.76286868600019,-26.20183684699984],[32.784434441000116,-26.225681247999916],[32.79737389400011,-26.24846770599993],[32.81169681100019,-26.268487237999906],[32.83106530000012,-26.28378671699987],[32.84245853000019,-26.288669528999932],[32.852793816000116,-26.28460051899988],[32.86451256600017,-26.27874114399992],[32.87940514400023,-26.277520440999908],[32.87012780000006,-26.24578215899996],[32.86882571700019,-26.219414971999864],[32.874196811000076,-26.192803643999923],[32.88559004000009,-26.160821221999925],[32.89478600400017,-26.11467864399999],[32.90308678500017,-26.10263437299997],[32.915293816000116,-26.094414971999896],[32.954437696000156,-26.07887135199989],[32.95508873800023,-26.105645440999893],[32.929453972000175,-26.266045830999957],[32.91822350400017,-26.54420338299998],[32.904633009000094,-26.61988697699998],[32.89551842500012,-26.64251067499985],[32.89307701900006,-26.654229424999926],[32.89926191500015,-26.695245049999855],[32.89307701900006,-26.77434661299985],[32.89087975400017,-26.784356377999913],[32.87940514400023,-26.811944268999937],[32.881195509000094,-26.822035414999817],[32.889903191000116,-26.83660247199984],[32.89307701900006,-26.84612395599993],[32.73844567900014,-26.85024627699994],[32.598092488000106,-26.853966979999864],[32.46890140800011,-26.857377624999984],[32.35221602400006,-26.860271503999883],[32.29583703600005,-26.85200327499993],[32.22302494300018,-26.84135793099985],[32.194086141000206,-26.84032440199986],[32.1431848550001,-26.84569875099983],[32.11388431800011,-26.84001434299988],[32.11739831600019,-26.582252298999848],[32.1070630290001,-26.500293477999875],[32.05983077000022,-26.41482065799985],[32.05233768700012,-26.386812031999924],[32.03988366700011,-26.283665872999816],[32.04474125200014,-26.254520364999806],[32.07781416800012,-26.175455423999907],[32.08143151900012,-26.14879038499987],[32.07455855300023,-26.114167175999953],[32.062724650000206,-26.077166849999813],[32.05745365400011,-26.041200052999926],[32.07057946800015,-26.009780781999893],[32.004020223000076,-25.99438120499991],[31.975288127000084,-25.980428568999827],[31.94924320400011,-25.958104349999857],[31.909969116000212,-25.842969258999872],[31.9058350010001,-25.812996927999833],[31.911932820000033,-25.7852983599999],[31.95441084800009,-25.684942728999843],[31.96226566600015,-25.672850443999934],[31.97508142100011,-25.6616883339999],[31.98479659000023,-25.65631398499994],[31.99161788000012,-25.65021616599998],[31.995751994000127,-25.636883646999877],[31.995648641000088,-25.61517954499996],[31.986398560000083,-25.552444356999928],[31.980559122000184,-25.531567076999863],[31.97012048400009,-25.51089650400003],[31.966399781000035,-25.47968393899987],[31.96764001500017,-25.44681772899993],[31.971670776000078,-25.42149627699986],[31.988723999000197,-25.372610371999954],[31.98722538200011,-25.1553626499999],[31.986295207000154,-24.996302590999832],[31.985623413000187,-24.876930032999894],[31.984589885000073,-24.708464864],[31.983763062000175,-24.56914520199996],[31.99192793800009,-24.50041554699989],[31.986553589000124,-24.42310760499988],[31.961335490000096,-24.34631642599983],[31.926310767000164,-24.276739754999937],[31.869454793000127,-24.163795268000015],[31.863046916000172,-24.121420592999822],[31.856491137000067,-23.962958052999866],[31.855812215000096,-23.94654754599999],[31.85043786600014,-23.93063120499997],[31.83865564000015,-23.917815449999893],[31.774060099000195,-23.87409718799999],[31.755198202000173,-23.85776743499997],[31.741193888000083,-23.83678680399997],[31.700627889000234,-23.749091898999932],[31.662025594000088,-23.624034931999873],[31.642285197000064,-23.587861429999847],[31.5462703860002,-23.492363382999898],[31.52761519300023,-23.456809996999922],[31.52146569900017,-23.41557220399993],[31.542446330000047,-23.187265726999897],[31.53634851100011,-23.156983337999876],[31.467618856000147,-22.95895924799987],[31.426381063000147,-22.840103454999873],[31.374911336000224,-22.691585387999908],[31.323338257000017,-22.542860616],[31.279103231000107,-22.41532318199995],[31.288921753000093,-22.397339782999964],[31.368710164000074,-22.345043232999956],[31.433822469000148,-22.302048441999972],[31.48580896000007,-22.24830495199997],[31.538208862000115,-22.193941344999985],[31.59071211700009,-22.139577738999932],[31.643112019000085,-22.085214131999948],[31.695511922000065,-22.03074717199995],[31.747808471000074,-21.976383565999896],[31.800311727000146,-21.92201995799992],[31.852711629000083,-21.86755299900001],[31.905214885000216,-21.813189391999853],[31.95761478600016,-21.758825784999885],[32.0100146890002,-21.704462177999897],[32.062414591000135,-21.64999521899999],[32.11481449400017,-21.59563161199985],[32.167317749000034,-21.541268005999953],[32.21971765200007,-21.486904398999812],[32.272220906000115,-21.432540790999923],[32.324517456000166,-21.378177184999938],[32.37298995000011,-21.327947693],[32.40854333500007,-21.29032725099998],[32.447197306000106,-21.313684997999843],[32.44584926100011,-21.308993799999907],[32.444613485000076,-21.304693297999805],[32.37174971500011,-21.187904561999943],[32.37298995000011,-21.183977151999983],[32.3768656820001,-21.17849945099999],[32.38053470900016,-21.17219492599989],[32.3806380610001,-21.16547698999996],[32.3777441820001,-21.16340993199999],[32.37335168500013,-21.163616637999866],[32.36885583500012,-21.16299652099998],[32.359864136000084,-21.151421],[32.34534305800011,-21.142842712],[32.339813680000105,-21.134057718999927],[32.417121622000224,-21.04093678799992],[32.46766117300015,-20.98016530299982],[32.49101892100012,-20.936343689],[32.497220093000095,-20.898103129],[32.483474161000146,-20.794233499999805],[32.46910811300003,-20.68684987399992],[32.47107181800018,-20.645508727999967],[32.48161381000014,-20.603030700999852],[32.51313643400013,-20.56458343499999],[32.55654463700009,-20.559312438999868],[32.6036735430001,-20.56479014099986],[32.64646163000023,-20.5579688509999],[32.6717830810002,-20.531820576999806],[32.7044425870001,-20.471772562999973],[32.73586185700012,-20.414205016999844],[32.80076745600016,-20.338550719999887],[32.8452091870001,-20.28666758199998],[32.852960653000224,-20.273851826999902],[32.85843835400013,-20.259485778999903],[32.86556970200016,-20.22889333099998],[32.86505293800022,-20.220935161000014],[32.858335001000086,-20.207499287999877],[32.85709476700006,-20.20057464599989],[32.85926517700013,-20.19085947699986],[32.87290775500017,-20.167191671000012],[32.877868693000124,-20.151688741],[32.885310100000225,-20.103009541999963],[32.894405151000086,-20.09401784199993],[32.910683227000135,-20.09112396199994],[32.92654789200011,-20.08647308299997],[32.93429935700013,-20.07210703499989],[32.94008711700022,-20.041514586999877],[32.953729695000135,-20.030249124999912],[33.007266480000084,-20.032006123999807],[33.00437259900016,-20.02425465899998],[32.99837813300016,-20.000896910999927],[33.00199548300023,-19.926999612999865],[33.02132246900007,-19.8680884799999],[33.022872762000105,-19.826850687999936],[33.029642375000066,-19.80338958699997],[33.032794637000194,-19.78416595399986],[33.02276940900017,-19.773107197999934],[33.000600220000166,-19.764322204999957],[32.979051147000206,-19.751403095999947],[32.96241133700008,-19.735383401999812],[32.95414310700002,-19.717813414999924],[32.96241133700008,-19.679056090999893],[32.960964396000094,-19.658798929999886],[32.94318770400017,-19.649290466999986],[32.92458418800018,-19.65528493299993],[32.8947152100001,-19.684327087999833],[32.87218428600008,-19.690218200999837],[32.849136597000125,-19.689081318999825],[32.831049846000184,-19.685153909999855],[32.81962935400006,-19.67430185899981],[32.816270385000074,-19.652080993999956],[32.81947432400014,-19.641952412999913],[32.82536543800015,-19.63327077199986],[32.82960290500009,-19.62365895499994],[32.82815596500021,-19.61063649499999],[32.825675496000116,-19.60081797199993],[32.82536543800015,-19.591619567999842],[32.83249678600006,-19.519272562999973],[32.832186727000106,-19.500875752999974],[32.82536543800015,-19.479171651999962],[32.81130944800012,-19.47452077299999],[32.79311934400019,-19.476691181999897],[32.77394738800015,-19.475864359999875],[32.763353719000094,-19.46397877999985],[32.76221683800006,-19.44341155999986],[32.7685213620002,-19.402793884],[32.7664543050001,-19.373441670999938],[32.7688314210001,-19.363623148999878],[32.80614180500001,-19.323418883999864],[32.820714559000095,-19.301301370999937],[32.828672730000136,-19.284558206999804],[32.832186727000106,-19.266678160999927],[32.83322025500016,-19.24197682699983],[32.862262411000046,-19.118056741999865],[32.85590621000003,-19.08374359199985],[32.84748295100016,-19.073925068999955],[32.838129517000105,-19.066897074999858],[32.83022302200007,-19.05914560899994],[32.82526208500022,-19.04684661899999],[32.8229883220001,-19.03516774499984],[32.81999108800008,-19.02834645599988],[32.81420332900021,-19.023798929999852],[32.803351278000065,-19.0195614619999],[32.78598799600015,-19.017701110999894],[32.72387292500016,-19.0265894569999],[32.710282023000076,-19.025969339999847],[32.698964884000105,-19.02224863699992],[32.69105839000022,-19.014290465999863],[32.688629598000176,-19.000957946999932],[32.69028324400002,-18.988245543999895],[32.688629598000176,-18.977290139999823],[32.68108483900002,-18.954965921999857],[32.68253177900013,-18.94266693099982],[32.69224694900018,-18.93429534899984],[32.70506270300004,-18.92747405999988],[32.71575972500008,-18.91982594799998],[32.703202352000034,-18.911867776999923],[32.69679447400019,-18.89719167099986],[32.68986983300013,-18.843241474999886],[32.691420125000064,-18.834249775999936],[32.78764164300017,-18.791254983999863],[32.81792403200021,-18.787017516999825],[32.85885176600007,-18.790014749999926],[32.885206747000126,-18.78784433999985],[32.90251835100011,-18.77451181999983],[32.91326704900021,-18.753014423999872],[32.92024336800014,-18.726246032999892],[32.92231042400019,-18.693173115999826],[32.914558960000164,-18.665887959999807],[32.88448327600011,-18.609043883999945],[32.871667521000205,-18.573180439999817],[32.86825687700011,-18.552613219999927],[32.870737346000084,-18.535766702999936],[32.88313968900016,-18.52212412499985],[32.90029626500021,-18.51530283599989],[32.91931319200009,-18.510031839999854],[32.93714156100012,-18.501040139999816],[32.95662357600011,-18.489878030999876],[32.97858606000008,-18.480059508999915],[32.99641442900011,-18.467140400999895],[33.00302901200021,-18.446883238999902],[32.99951501400008,-18.43665130599983],[32.9868026120001,-18.422285257999818],[32.985355673000214,-18.412466735999857],[32.98819787600009,-18.413190205999854],[33.009230184000074,-18.383941344999897],[33.03806563300022,-18.363064066999822],[33.04276818900021,-18.3520053099999],[33.0349650470001,-18.332885029999915],[33.0168782960001,-18.313661396999805],[32.9701628010001,-18.27748789499988],[32.95496993000003,-18.25630055699982],[32.950525757000065,-18.24131439199985],[32.95228275500014,-18.233046162999898],[32.95817386900015,-18.225398051],[32.96592533400021,-18.212168883999837],[32.97486535600015,-18.19077484099999],[32.97553715000006,-18.183333434999895],[32.97228153500006,-18.150260517999897],[32.93708988500012,-18.04711435999988],[32.93491947400011,-18.024583434999954],[32.940293823000076,-18.004843037999972],[32.94122399900012,-17.996264749999867],[32.928976684000105,-17.982312112999878],[32.92737471600017,-17.972907001999914],[32.93243900600012,-17.964948831999862],[32.940397176000175,-17.959987895],[32.948148641000074,-17.953269957999964],[32.95212772700009,-17.94024749699993],[32.950267375000095,-17.922574157999847],[32.93843347200007,-17.894565530999927],[32.93688317800016,-17.87503183999983],[32.93967370600009,-17.85549814899983],[32.946081584000154,-17.834724222999967],[32.957036987,-17.817981058999834],[32.97357344600019,-17.810643004999918],[32.99910160300007,-17.794313251999895],[33.00318404100008,-17.757726338999856],[33.00023848500004,-17.71390472399993],[33.004062541000195,-17.675560810999926],[33.0205989990001,-17.638457132999932],[33.024526408000064,-17.619233499999922],[33.02039229400023,-17.598562926999904],[33.00664636200011,-17.58099293999993],[32.96912927200011,-17.56455983499987],[32.95166263900015,-17.55143402099999],[32.94721846500013,-17.543165791999936],[32.936676473000176,-17.509369404999873],[32.93657312000007,-17.49831064899996],[32.942980997000205,-17.491592711999928],[32.95166263900015,-17.486218363999882],[32.95817386900015,-17.47846689799988],[32.997447958000095,-17.404983011],[33.011650990000106,-17.38399061599999],[33.016258178000186,-17.377181090999937],[33.022459350000105,-17.36147145599989],[33.02163252800008,-17.34555511499987],[33.014656209000094,-17.336666768999933],[32.9923836670001,-17.324677835999893],[32.983598673000216,-17.31775319399982],[32.97321171100012,-17.297909443999824],[32.969439331000075,-17.276101989999972],[32.96908967500022,-17.26611492799992],[32.967785685000216,-17.228869729999943],[32.95414310700002,-17.167168069999974],[32.92851159600016,-17.10949717199983],[32.886757040000106,-17.038183694999944],[32.830119670000016,-16.941548766999972],[32.828776083000065,-16.935140889999857],[32.900502970000076,-16.867754821999938],[32.916212606000016,-16.847911070999857],[32.933369182000064,-16.815768330999916],[32.961584513000076,-16.710348408999877],[32.968509156000124,-16.68161631199996],[32.95621016400011,-16.683063252999943],[32.939570353000164,-16.689781188999888],[32.90959802300014,-16.708074645999858],[32.8933716220001,-16.71241546599984],[32.8620040280002,-16.710451760999902],[32.80066410300022,-16.69732594799993],[32.7693481850001,-16.69546559599983],[32.75384525600012,-16.69794606499998],[32.73989261900013,-16.703217060999933],[32.73131433100011,-16.708798115999855],[32.73095033900009,-16.708656220999927],[32.72521651200023,-16.706421],[32.698654826000194,-16.68678395599987],[32.688629598000176,-16.64730316200003],[32.68790612800009,-16.624255472999963],[32.68310021900018,-16.609889424999874],[32.6717830810002,-16.599760844],[32.55210046400012,-16.553355407999916],[32.39366052300013,-16.491757099999973],[32.2904626870002,-16.45175954199999],[32.21175948100019,-16.44018402099995],[32.01414880400014,-16.444938251999943],[31.910279175000113,-16.428918559],[31.89436283400019,-16.421477152999884],[31.88562951600008,-16.406284280999937],[31.88072025600016,-16.36804372099995],[31.871935262000108,-16.350370381999866],[31.860049682000042,-16.34075856499986],[31.818088420000063,-16.319571227999987],[31.798761434000113,-16.303654886999965],[31.738196655000166,-16.239782815999916],[31.710704794000065,-16.217872008999947],[31.6861068110002,-16.207226663999876],[31.519191935000062,-16.196477965999946],[31.48064131700008,-16.177977803999923],[31.465655151000103,-16.167745869999848],[31.445708049000164,-16.16495534299989],[31.4241073000002,-16.164748637000017],[31.40457360900021,-16.16226816799994],[31.402713257000105,-16.15937428699996],[31.404056844000163,-16.154516702999857],[31.404315226000133,-16.14986582399989],[31.399612671000142,-16.14728200199988],[31.39558190900007,-16.147695413999898],[31.38772709200012,-16.149555764999903],[31.38400638900012,-16.148832295999895],[31.37775354000021,-16.142217711999905],[31.374601278000142,-16.132915953999884],[31.370260457000057,-16.12371754999988],[31.360338582000086,-16.116896259999834],[31.34090824400019,-16.106664326999933],[31.328350871000197,-16.092815042999888],[31.30959232600011,-16.05901865599999],[31.29532963000022,-16.041655374999973],[31.278896525000075,-16.030286559999894],[31.259982951000122,-16.02346527099985],[31.158490438000026,-16.00021087599991],[31.11410038200009,-15.996903584999911],[31.08903731300009,-16.01188974999981],[31.080872436000078,-16.02594573999991],[31.073327677000204,-16.025532327999983],[31.06542118300015,-16.01964121499999],[31.056894572000118,-16.017574157999842],[31.04221846500016,-16.02491221099993],[31.023718303000095,-16.045169372999936],[31.012039429000225,-16.054884541999883],[30.989766886000066,-16.064289652999932],[30.973075399000066,-16.062015889999913],[30.958295940000227,-16.051060485999923],[30.94217289200017,-16.03452402799985],[30.90186527500012,-16.00713551799998],[30.857423543000124,-15.998143818999864],[30.749729859000098,-15.998867288999861],[30.586587362000074,-16.00000416999987],[30.514808797000143,-16.000417582999972],[30.402567587000163,-16.001244404999895],[30.40132735200021,-15.931687927999818],[30.39926029500023,-15.81200530999989],[30.39771000200014,-15.716817320999922],[30.396263061000155,-15.635995380999958],[30.410370728000174,-15.630414326999855],[30.41269616700012,-15.627933857999876],[30.401223999000106,-15.598478291999953],[30.39595300300007,-15.590623473999841],[30.3674276130001,-15.561271259999955],[30.365257202000205,-15.547421976999898],[30.371768432000092,-15.525407816999914],[30.390165242000105,-15.49078460699991],[30.392852417000118,-15.480759378999977],[30.38964847800011,-15.471147562999873],[30.374920695000153,-15.451303811999964],[30.371768432000092,-15.43983164499987],[30.369184611000183,-15.374719339999956],[30.364947143000137,-15.354152119999966],[30.357919149000193,-15.335651956999952],[30.347480509000068,-15.317875264999927],[30.334871460000073,-15.304749450999863],[30.320505412000074,-15.29947845399984],[30.28794926000009,-15.27891123399985],[30.26314457200007,-15.231265563999898],[30.225834188000103,-15.106311950999851],[30.2209766030002,-15.06300709999988],[30.2209766030002,-15.018358662999942],[30.213845255000166,-14.988489684999921],[30.214420897000114,-14.981965750999962],[30.214465373000028,-14.981461690999922],[30.230898478000114,-14.977224222999963],[30.318438355000094,-14.966992289999892],[30.39249068200022,-14.931025493],[30.4855599370002,-14.885963642999966],[30.59180668200005,-14.848136494999977],[30.676969441000125,-14.817647399999911],[30.815772339000116,-14.76824473099998],[30.915094442000196,-14.746023863999937],[31.05658451300016,-14.714397887999864],[31.074464559000116,-14.713054300999985],[31.178024129000075,-14.688559671999924],[31.306801799000112,-14.658173928999886],[31.410878133000125,-14.633575947999901],[31.496661011000096,-14.602570087999881],[31.5896785890001,-14.554821064999897],[31.65840824400007,-14.519577737999922],[31.80134525600013,-14.473585712999833],[31.932913452000065,-14.431107685999889],[32.03326908400001,-14.39875823899999],[32.10876835100012,-14.364858499999968],[32.14706058700003,-14.353386331999872],[32.227365763000165,-14.339020283999874],[32.32038334100011,-14.30801442499994],[32.425493204000105,-14.272977802999918],[32.57680179900021,-14.222541604999918],[32.744956909000194,-14.166420999999872],[32.917142782000184,-14.109060159999885],[33.04292321700004,-14.067098896999966],[33.13004968300001,-14.038056741999895],[33.202706747000065,-14.013872171999921],[33.25779382400012,-14.043637796999818],[33.28022139500009,-14.060794371999876],[33.29128015100011,-14.089216410999896],[33.28621586100004,-14.13892913799998],[33.29055668200013,-14.156912536999966],[33.31556807400014,-14.197116800999908],[33.32393965600008,-14.206315206],[33.33825402900018,-14.215410257999963],[33.34714237500012,-14.218820901999905],[33.354325399000146,-14.225332131999876],[33.35710549200016,-14.230565247999962],[33.371016886000085,-14.256751403999914],[33.38858687400008,-14.280625914999902],[33.43917810100001,-14.380671487999976],[33.457368205000165,-14.40433929399991],[33.47028731300006,-14.414467874999872],[33.512455282000104,-14.432968037999984],[33.525787801000064,-14.44433685299988],[33.53235070800022,-14.456222431999988],[33.537466674000115,-14.468728129],[33.545941610000135,-14.481647236999917],[33.557413778000154,-14.49043223],[33.58428552200016,-14.502627867999918],[33.59575769100016,-14.511412861999988],[33.60423262500015,-14.524021910999918],[33.61840558200018,-14.561840566999917],[33.62448978700015,-14.578075459999907],[33.63296472200008,-14.59140797899994],[33.644850302000094,-14.601743265999858],[33.66242028800016,-14.607014261999964],[33.67223881000015,-14.600192972000016],[33.6754427490001,-14.582312927999965],[33.67554610200014,-14.547793069999983],[33.684072714000166,-14.5187509159999],[33.699213908000075,-14.49621999099996],[33.720401245000204,-14.489708760999816],[33.77419641100008,-14.530016377999956],[33.802411743000135,-14.532806904999829],[33.83083378100011,-14.522678323999868],[33.8889180900002,-14.488158466999892],[33.91630660000007,-14.481337178999922],[33.94555546000012,-14.481440530999945],[34.05076867700009,-14.495186461999976],[34.0586234940001,-14.490122171999827],[34.0701990150001,-14.46490407299987],[34.077537069000044,-14.454672139999971],[34.109576456000156,-14.441442972999894],[34.18244022600006,-14.439479267999955],[34.28134891800002,-14.404959410999963],[34.288893677000175,-14.404029235999928],[34.30491337000015,-14.405786233999903],[34.31287154100019,-14.404235941999886],[34.320519653000105,-14.39937835699996],[34.327754353000074,-14.393590595999898],[34.3352991130001,-14.388836364999904],[34.34408410600011,-14.38738942499991],[34.37209273300019,-14.401962178999952],[34.38043631000008,-14.413643186999847],[34.39379683400019,-14.43234792099983],[34.42645633900005,-14.497563577999939],[34.44971073400009,-14.525468850999916],[34.50180057800011,-14.575698343999875],[34.518130330000105,-14.607427672999803],[34.51937056400013,-14.64081064799987],[34.50583133900014,-14.700341897999849],[34.51533980300022,-14.734551696999842],[34.53208296700009,-14.766797790999986],[34.54283166500019,-14.796253356999898],[34.54841271900008,-14.82777597999987],[34.54872277900009,-14.901569925999823],[34.551099895000135,-14.918313089999868],[34.55699100800021,-14.938260192999975],[34.565982707000074,-14.954279886999842],[34.57693811000015,-14.969266051999908],[34.584172811000116,-14.984458922999933],[34.58231246000011,-15.001305439999909],[34.57497440600022,-15.016084899999923],[34.554613892000106,-15.0435767619999],[34.54872277900009,-15.057632751999918],[34.55099654200009,-15.07179209299987],[34.557301066,-15.084297790999868],[34.5598848880002,-15.095666604999948],[34.5506864820002,-15.106622008999834],[34.54830936700009,-15.123675230999867],[34.55908512000022,-15.200177714000018],[34.5690832930002,-15.271159769999839],[34.56515588400006,-15.297308043999847],[34.546759074000164,-15.323249612999888],[34.533323202000105,-15.333068134999861],[34.52030074000007,-15.339786071999882],[34.508001750000204,-15.348054300999834],[34.49663293400013,-15.362730408],[34.49198205600007,-15.375132750999967],[34.487021118000115,-15.400454202999866],[34.480406535000014,-15.412856546999933],[34.460252726000164,-15.424845478999984],[34.44061568200013,-15.455541279999919],[34.42263228300013,-15.464532978999967],[34.410126587000065,-15.481276143],[34.41002323400019,-15.514969176999884],[34.4191182860001,-15.57532724999997],[34.415914348000086,-15.61511810299997],[34.404028768000074,-15.646847432],[34.34221782200021,-15.73032301099988],[34.34181034300016,-15.73087331099994],[34.33095829300012,-15.737074483000015],[34.310287720000105,-15.74327565499999],[34.29333785000019,-15.75113047299993],[34.275561157000055,-15.7643596399999],[34.24713912000007,-15.794125264000014],[34.23639042200014,-15.81924000999986],[34.23132613100003,-15.854173277999847],[34.23318648300008,-15.889830017],[34.24403853400011,-15.917631937999884],[34.256440877000074,-15.928173929999856],[34.28972050000013,-15.943470152999907],[34.3042932540001,-15.952151794999951],[34.38769901500015,-16.037004496],[34.40454553200013,-16.05974212699998],[34.40898970600019,-16.08785410499993],[34.389249308000075,-16.15244964599998],[34.385218546000175,-16.186452739],[34.42645633900005,-16.273889260999965],[34.44599003100009,-16.29321624699993],[34.480406535000014,-16.29445648099995],[34.52474491400008,-16.300761006999977],[34.54706913200002,-16.323085224999858],[34.57507775900015,-16.39233164499987],[34.58582645600009,-16.407834573999878],[34.598332154000076,-16.419720152999986],[34.630681600000145,-16.443387959999924],[34.63739953600006,-16.45051930799997],[34.642670533000086,-16.459717711999957],[34.65496952300006,-16.48937998399984],[34.66117069500015,-16.49392751099995],[34.66871545400008,-16.496614684999898],[34.7320707600002,-16.52917083699985],[34.744989868000204,-16.542916767999884],[34.76286991400016,-16.57640309599988],[34.77299849500011,-16.589735615999896],[34.81950728300015,-16.627769469999933],[34.82756880700006,-16.641515400999964],[34.83480350800013,-16.663116149999937],[34.84462203000007,-16.678412373999976],[34.859918254000064,-16.687197366999882],[34.87748824000013,-16.694432067999855],[34.88661311100017,-16.700848911999913],[34.89350793500009,-16.7056975299999],[34.8977454020002,-16.713965758999862],[34.900949341000086,-16.733292744999815],[34.905496867000096,-16.74083750399994],[34.912318156000055,-16.74455820699987],[34.92761438000011,-16.74724538199999],[34.93443566900007,-16.749725849999873],[34.9480782470001,-16.75933766699988],[34.95665653500012,-16.768329365999833],[34.975053345000134,-16.792100524999967],[35.004508911000094,-16.814631448999904],[35.033034301000185,-16.819178975999847],[35.06279992700016,-16.816388447999884],[35.09576949000021,-16.817318623999924],[35.118300415000164,-16.833441669999914],[35.12749882000011,-16.86444752999985],[35.12811893700021,-16.90072438499999],[35.12512170400012,-16.932867127],[35.11344283000014,-16.960255635999957],[35.09142867000011,-16.975345153999967],[35.06610721900009,-16.98733408599992],[35.04440311700009,-17.004697366999935],[35.036548299000145,-17.03590993199984],[35.069104451000186,-17.084072366999905],[35.066003866000216,-17.109807230999905],[35.08130008900011,-17.124069924999887],[35.133906698000175,-17.132028095999942],[35.234779094000174,-17.13533538799993],[35.29167287300018,-17.129368228999862],[35.2919332280002,-17.129340921999827],[35.299477986000085,-17.117972107000014],[35.304955689000074,-17.104226175999983],[35.30753951000017,-17.087586364999964],[35.3061959230001,-17.067329202999872],[35.29741093000021,-17.02970875999985],[35.29865116400006,-17.01358571399996],[35.30929650800013,-16.995292256999974],[35.31436080000012,-16.98226979599994],[35.308366333000066,-16.973691508],[35.276016887000104,-16.95519134499999],[35.27136600800023,-16.95054046699984],[35.270952596000114,-16.94423594099983],[35.27581018100014,-16.939171650999853],[35.28190800000018,-16.934727478000013],[35.28511193800008,-16.930076598999875],[35.28283817500008,-16.89214609799987],[35.28521529100007,-16.871062113999926],[35.31022668400007,-16.850598246999876],[35.305162394,-16.82569020599999],[35.28511193800008,-16.786726176],[35.281081177000175,-16.76688242599984],[35.27818729700019,-16.700736591999956],[35.27508671100023,-16.69546559599983],[35.25100549300012,-16.670040792],[35.24821496600006,-16.66818043999991],[35.23974003100014,-16.664563089999927],[35.23663944500018,-16.662599385999897],[35.23271203600021,-16.657225035999843],[35.2275443930001,-16.64688974999993],[35.22299686700009,-16.642135518999932],[35.216588990000076,-16.63872487399999],[35.194678182000104,-16.630559996999892],[35.1854797770001,-16.629009704999874],[35.174317667000054,-16.62549570699983],[35.16852990800006,-16.617124124999844],[35.16439579200008,-16.606788837999844],[35.14837609900022,-16.582087504],[35.13194299300008,-16.537645771999934],[35.144655396000104,-16.529067484],[35.21441857900007,-16.484212340999914],[35.2281645100002,-16.470259703999844],[35.23364221200009,-16.45237965899997],[35.23333215300008,-16.412588805999874],[35.237253459000186,-16.39909046299998],[35.238706502000156,-16.394088642999847],[35.26227095500005,-16.366596780999956],[35.266198365000065,-16.356468200999828],[35.254209432000174,-16.328356221999883],[35.251935669000055,-16.317814228999907],[35.25875695800019,-16.271512145999935],[35.277153768000204,-16.23399505599994],[35.29915613900019,-16.20872095699997],[35.304955689000074,-16.20205902099987],[35.374615520000106,-16.140977477999954],[35.39342574000008,-16.128575133999902],[35.41606001800008,-16.12289072699994],[35.435800415000216,-16.123924254999935],[35.45636763500008,-16.129401958],[35.47290409300009,-16.14015065499994],[35.48013879400017,-16.156893818999976],[35.48871708200007,-16.164645283999903],[35.50204960100021,-16.17084645599998],[35.51455529800009,-16.171363219999833],[35.52106652800009,-16.162164814999926],[35.524063762000104,-16.146661886],[35.529024699000075,-16.14077077199991],[35.553209269,-16.138393655999963],[35.64860396300011,-16.110591736],[35.65893924900015,-16.110074970999875],[35.6778528240001,-16.11348561599999],[35.687051229000105,-16.11265879299988],[35.69759322100006,-16.107491148999955],[35.770043580000134,-16.058811950999853],[35.78513309700023,-16.04227549199986],[35.79464156100019,-16.020674742999887],[35.79567509000017,-16.004965107999823],[35.79009403500018,-15.97447601299993],[35.78968062400017,-15.958663024999922],[35.796591428000085,-15.93319775899995],[35.806733846000185,-15.895824482999954],[35.8167590740002,-15.751957295999873],[35.823063598000225,-15.663383890999896],[35.83195194500016,-15.53843027699986],[35.83755828300011,-15.45919853300002],[35.83762321100008,-15.45828093799986],[35.84053023300007,-15.417197366999913],[35.81200484200022,-15.304852803999891],[35.788582505000164,-15.21142761299994],[35.78451298100006,-15.195195413999896],[35.78420292100005,-15.171837665999943],[35.79081750500009,-15.146826273999947],[35.83928999800011,-15.036342060999843],[35.86678186100019,-14.973090108999855],[35.90429895000008,-14.886893818999837],[35.88280155400017,-14.887513936999895],[35.86988244600016,-14.885550231999956],[35.863267863000175,-14.87666188599985],[35.853035929000185,-14.66747568699982],[35.84724816900021,-14.650422464999878],[35.83556929500011,-14.635849711],[35.78689009600012,-14.587893981999967],[35.75053940900008,-14.543142707999877],[35.714439738000095,-14.498700459999938],[35.609433227000096,-14.369406025999922],[35.522823527000156,-14.262745869000026],[35.45574751800021,-14.136965433999961],[35.370067993000156,-14.03722991899987],[35.27870406100013,-13.930879820999877],[35.1711137290001,-13.80571950199996],[35.08409061700016,-13.70422698899989],[34.99655074100005,-13.625988871000018],[34.894438110000095,-13.534728292000011],[34.86389759600016,-13.51628303],[34.863122192000134,-13.515814716999897],[34.829635865000085,-13.503929137999961],[34.79542606600008,-13.498761494999869],[34.66747522000017,-13.50093190499986],[34.65135217300005,-13.497831319],[34.64060347500006,-13.49235361799991],[34.637606242000146,-13.488219502999897],[34.63646936000012,-13.482225035999875],[34.63171512800014,-13.471166279999949],[34.61145796700012,-13.435819600999862],[34.59977909300008,-13.42021331799991],[34.58275973300019,-13.403625920999886],[34.57941857900002,-13.400369567999917],[34.57817834500011,-13.398405863999898],[34.54531213400017,-13.325748798999939],[34.54283166500019,-13.243789977999967],[34.54934289500008,-13.159092305999877],[34.53776737500013,-13.059356790999956],[34.52391809100007,-12.939674173999862],[34.507484985000104,-12.799424335999943],[34.49446252500016,-12.687389831999909],[34.439168742000135,-12.495050149999855],[34.380360962000026,-12.29113494899984],[34.355581017000105,-12.204939612999823],[34.354005981000086,-12.199460957999833],[34.35876021300018,-12.154399108999883],[34.380050904000164,-12.103859557999854],[34.4876412350001,-11.944076028999845],[34.56381229600018,-11.830904641999892],[34.60442997200013,-11.732616068999889],[34.611974731000174,-11.693135273999857],[34.61393843600021,-11.652724303999873],[34.60722050000018,-11.60931610099989],[34.60711714700008,-11.591125995999846],[34.616728963000156,-11.578310241999858],[34.65124882000006,-11.57004201299982],[34.964614706000106,-11.573556009999876],[35.38174686600021,-11.577690123999886],[35.42350142400008,-11.576553242999879],[35.42525842300003,-11.582030944999872],[35.431873006000075,-11.588438821999915],[35.44117476400018,-11.591436055999836],[35.46577274600017,-11.592572936999844],[35.47011356600015,-11.592159524999827],[35.48344608600004,-11.586888528999808],[35.483652791000196,-11.585958352999839],[35.49016402100008,-11.584098001999832],[35.49409143100016,-11.581824238999912],[35.4987423100001,-11.582341002999854],[35.50763065600014,-11.589058939999887],[35.51300500500011,-11.596603698999928],[35.5155888260002,-11.603528340999915],[35.520136352000144,-11.609109394999834],[35.53150516800022,-11.612726744999819],[35.532745402000074,-11.595570169999858],[35.543700806000146,-11.594743346999834],[35.55982385200011,-11.601047871999839],[35.57625695800019,-11.605181985999863],[35.59971805800015,-11.592159524999827],[35.60085494000006,-11.592262877999856],[35.6548051350002,-11.578310241999858],[35.66483036300022,-11.572005716999854],[35.67185835800015,-11.55143849599986],[35.680229940000146,-11.53758921299989],[35.6912886960001,-11.52425669299987],[35.703380981000095,-11.516505227999872],[35.69562951700013,-11.494594420999817],[35.71402632600021,-11.483845722999888],[35.76425581900017,-11.474854023999852],[35.78192915800017,-11.46121144599985],[35.81314172300002,-11.42235076899989],[35.826370890000106,-11.41346242299987],[35.867298625000075,-11.420903828999897],[35.895617310000056,-11.432789407999834],[35.90202518700019,-11.434546406999814],[35.939748983000214,-11.4341329949998],[35.953081502000174,-11.440644225999861],[35.97034143100004,-11.46121144599985],[35.96083296700007,-11.48353566499982],[35.96982466600011,-11.502449238999858],[35.98853153500008,-11.51216440799989],[36.007858521000145,-11.506583352999868],[36.02222456900003,-11.505653176999829],[36.043101847000145,-11.514851582999825],[36.07958540800021,-11.536969094999916],[36.08940393000009,-11.540896504999806],[36.11152144400009,-11.54658091199984],[36.12113326000022,-11.550611673999839],[36.1295048420001,-11.557122903999812],[36.13601607300009,-11.56384084099983],[36.14283736200022,-11.569008483999838],[36.151932414000186,-11.5710755409998],[36.16805546100008,-11.57872365299987],[36.173636515000084,-11.597430521999854],[36.1759102780002,-11.62006479899982],[36.18262821500011,-11.640011901999827],[36.1762203370001,-11.654998066999894],[36.17921757000008,-11.675565286999884],[36.18820926900017,-11.693652037999811],[36.199681437000066,-11.701506855999837],[36.24091923000017,-11.69458221399985],[36.25290816200001,-11.696649271999917],[36.26841109200015,-11.705951029999852],[36.27874637800008,-11.70884490999984],[36.293422486000026,-11.707294616999903],[36.32980269400022,-11.697062682999928],[36.36122196500017,-11.69241180399986],[36.36814660700023,-11.687760925999896],[36.373314250000156,-11.683110046999843],[36.378068482000145,-11.680939635999849],[36.49485721900007,-11.680939635999849],[36.50271203600019,-11.686313984999813],[36.50870650200013,-11.70977508599988],[36.515011027000156,-11.715046080999826],[36.52059208200015,-11.717113138999878],[36.54570682800008,-11.729412129999915],[36.56296675600018,-11.731272481999923],[36.6257019450002,-11.721350605999831],[36.640584757000084,-11.716286315999852],[36.66724979700021,-11.713392435999864],[36.6745878500001,-11.70884490999984],[36.679962199000066,-11.70243703199989],[36.68967736800019,-11.69458221399985],[36.7265743410002,-11.680732930999795],[36.73804650900016,-11.674738464999862],[36.74703820800019,-11.66647023499982],[36.77484012900007,-11.626265970999896],[36.82010868300003,-11.573556009999876],[36.837058553000155,-11.567974954999855],[36.84656701600014,-11.572729186999851],[36.86630741400009,-11.574176126999843],[36.89111210100023,-11.589989114999838],[36.90589156000007,-11.592779642999801],[36.998392375000066,-11.584614765999873],[37.007797485000225,-11.580584004999878],[37.01668583100015,-11.573969420999887],[37.0323954670001,-11.564874369999812],[37.04438439900016,-11.595673522999874],[37.071566203000174,-11.629159850999883],[37.10649947100015,-11.65809865299984],[37.141639445000095,-11.674738464999862],[37.22659549900018,-11.69375539099984],[37.27021040900016,-11.698406269999808],[37.30607385200008,-11.69458221399985],[37.31578902100014,-11.69024139399987],[37.323643840000074,-11.68528045599983],[37.33139530400015,-11.681559752999817],[37.340800415000125,-11.680939635999849],[37.35237593600007,-11.686313984999813],[37.37015262800017,-11.704814147999839],[37.378317505000126,-11.70884490999984],[37.42782352700007,-11.722590839999867],[37.45066451000016,-11.722590839999867],[37.46968143700022,-11.719490254999826],[37.47639937400007,-11.715976256999866],[37.48477095600006,-11.70884490999984],[37.490352010000066,-11.698923034999837],[37.496036418000095,-11.685073749999871],[37.503787882000125,-11.672671406999896],[37.51588016700006,-11.667297057999846],[37.536757447000156,-11.662956237999865],[37.57293094900009,-11.644146015999851],[37.59463505100009,-11.640011901999827],[37.62636438000018,-11.639701842999841],[37.64775842300011,-11.635981139999927],[37.666361938000165,-11.625542500999899],[37.71090702300009,-11.590402526999853],[37.78366743900003,-11.558879902999877],[37.80444136600008,-11.544513854999877],[37.816947062000196,-11.53355845199981],[37.82511193900021,-11.520225931999875],[37.8232515870001,-11.507926939999846],[37.817257121000154,-11.4956279499998],[37.81322635900008,-11.48229542999988],[37.81849735500012,-11.459867858999885],[37.842475220000125,-11.41780324299985],[37.84102828000001,-11.399819844999866],[37.85043339000018,-11.38762420699986],[37.86583296800009,-11.342459003999878],[37.86841678900018,-11.327782897999896],[37.875238077000205,-11.319101256999842],[37.9380766190001,-11.283961283999886],[37.95461307800011,-11.280033873999825],[37.99533410600023,-11.277553404999848],[38.00422245300015,-11.27527964199983],[38.01362756300014,-11.265461119999856],[38.07078169800016,-11.255849303999852],[38.09335726900022,-11.256310029999867],[38.101167440000125,-11.25646942099982],[38.101167440000125,-11.254919128999802],[38.10426802500015,-11.25202524799991],[38.10933231700014,-11.249648131999862],[38.11543013500008,-11.249544778999834],[38.11718713400015,-11.25202524799991],[38.12245813000018,-11.261223652999902],[38.125662069000064,-11.26318735699985],[38.13537723800019,-11.26639129599991],[38.15501428200011,-11.280550638999856],[38.166899861000076,-11.283754576999838],[38.17837203000008,-11.281790872999807],[38.2004895430002,-11.272695820999914],[38.21041141700019,-11.270008645999894],[38.25661014800008,-11.277139993999839],[38.29247359200011,-11.301634622999883],[38.34766402200009,-11.358788756999914],[38.38311405500022,-11.376668802999873],[38.46238570100015,-11.396305846999908],[38.49168788800009,-11.413136860999842],[38.49225467900007,-11.41346242299987],[38.51716272000012,-11.383076680999821],[38.615657999000206,-11.317240904999835],[38.638188924000104,-11.289232278999819],[38.65420861800018,-11.275796406999874],[38.68397424300005,-11.267838235999903],[38.70423140500017,-11.258536478999872],[38.71508345600009,-11.25646942099982],[38.727072388000096,-11.25770965599986],[38.748673137000225,-11.26277394599984],[38.759731893000065,-11.26318735699985],[38.77802535000009,-11.253678893999862],[38.81781620300014,-11.216265156999896],[38.83104536900012,-11.207996927999844],[38.85192264800011,-11.202829283999845],[38.86949263500017,-11.190736998999853],[38.896261027000065,-11.167689309999885],[38.93005741400023,-11.16004119899982],[39.06079878800003,-11.16014455199985],[39.09542199700015,-11.153426614999914],[39.126221151000124,-11.139680683999885],[39.149785604,-11.144331562999852],[39.190506632000194,-11.166242369999805],[39.21159061700021,-11.173890481999877],[39.238152303000135,-11.174200540999863],[39.263267049000056,-11.166759133999847],[39.286624797000194,-11.154150084999827],[39.48268518000006,-10.999224141999917],[39.4984981690001,-10.990645852999888],[39.51565474500015,-10.985064798999872],[39.592755982000114,-10.979380390999836],[39.76049768100009,-10.943103535999866],[39.78581913300016,-10.93256154299982],[39.885968058000145,-10.864452005999807],[39.98911421700009,-10.820940449999881],[40.008131144000146,-10.81112192799982],[40.13318811000013,-10.714590351999888],[40.16109338400011,-10.704358418999902],[40.172772258000094,-10.693092956999848],[40.19158247900012,-10.668805032999842],[40.25070031700013,-10.610927428999913],[40.28852746600015,-10.583022154999838],[40.35332971100016,-10.56069793699987],[40.389193156000175,-10.535273131999858],[40.42102583900012,-10.503750508999898],[40.436859571000156,-10.47478606599985],[40.453949415000096,-10.469008070999875],[40.469411655,-10.472588799999855],[40.47543379000015,-10.482679945999818],[40.46485436300006,-10.495863539999874]],[[34.59605839000008,-12.071923522999882],[34.61114790800016,-12.07254363999985],[34.63171512800014,-12.0524931839999],[34.64122359200021,-12.017869973999893],[34.627477661000086,-11.987277526999875],[34.59843550600007,-11.970534362999928],[34.56257206200016,-11.977975768999853],[34.561641886000096,-11.978595885999823],[34.54179813600021,-11.994615579999873],[34.544071900000205,-12.011358743999919],[34.57073693900006,-12.041021015999888],[34.583552694000076,-12.058901061999848],[34.59605839000008,-12.071923522999882]],[[34.66241092900006,-12.052803242999884],[34.655899699000116,-12.076264342999863],[34.65620975800019,-12.097244974999867],[34.669025512000104,-12.117812194999857],[34.6889726160002,-12.124530130999872],[34.71160689300015,-12.120809427999859],[34.73248417200014,-12.109027200999861],[34.74819380700009,-12.09042368499982],[34.7592525630001,-12.065618997999863],[34.76235315000022,-12.040297545999891],[34.75418827300021,-12.020143737999902],[34.73827193200012,-12.009498391999912],[34.71563765500011,-12.001643574999889],[34.69414025900019,-12.000403340999853],[34.680911092000116,-12.009395039999887],[34.66241092900006,-12.052803242999884]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mauritania","sov_a3":"MRT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mauritania","adm0_a3":"MRT","geou_dif":0,"geounit":"Mauritania","gu_a3":"MRT","su_dif":0,"subunit":"Mauritania","su_a3":"MRT","brk_diff":0,"name":"Mauritania","name_long":"Mauritania","brk_a3":"MRT","brk_name":"Mauritania","brk_group":null,"abbrev":"Mrt.","postal":"MR","formal_en":"Islamic Republic of Mauritania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mauritania","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":2,"mapcolor13":1,"pop_est":3129486,"gdp_md_est":6308,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"MR","iso_a2":"MR","iso_a3":"MRT","iso_n3":"478","un_a3":"478","wb_a2":"MR","wb_a3":"MRT","woe_id":23424896,"woe_id_eh":23424896,"woe_note":"Exact WOE match as country","adm0_a3_is":"MRT","adm0_a3_us":"MRT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MRT.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-16.394520636999914,19.59992096600014],[-16.39769446499986,19.59992096600014],[-16.392730272999927,19.617132880000085],[-16.358550584999932,19.677435614000117],[-16.320912238999934,19.728501695000187],[-16.309559699999877,19.73078034100017],[-16.301625128999888,19.722601630000057],[-16.31338456899988,19.70465729400003],[-16.32982337099989,19.689927476000108],[-16.342193162999905,19.67641836100013],[-16.3587133449999,19.64789459800015],[-16.394520636999914,19.59992096600014]]],[[[-16.477894660999908,19.68553294500005],[-16.484242316999936,19.67772044500005],[-16.491851365999878,19.68406810099999],[-16.496896938999896,19.705511786000113],[-16.491118943999936,19.72508372599999],[-16.47716223899988,19.731512762000094],[-16.469593878999916,19.729966539000074],[-16.46898352799988,19.71971263200014],[-16.471547003999888,19.699652411000088],[-16.477894660999908,19.68553294500005]]],[[[-16.336822068999936,19.855698960000055],[-16.36705481699994,19.72109609600001],[-16.392323370999918,19.658351955000125],[-16.432484503999916,19.601263739000146],[-16.449696417999913,19.622788804000052],[-16.45295162699989,19.62921784100017],[-16.452748175999915,19.637274481000116],[-16.450306769999884,19.646470445000162],[-16.45018469999991,19.656480210000055],[-16.456654425999915,19.66673411700019],[-16.463978644999912,19.684637762000065],[-16.457142706999917,19.70335521000011],[-16.42833411399988,19.744614976000076],[-16.42625891799986,19.748968817000062],[-16.427398240999906,19.77798086100013],[-16.42625891799986,19.786851304],[-16.41820227799991,19.805609442000062],[-16.405384894999884,19.821112372000144],[-16.390939907999922,19.826117255000028],[-16.377797003999888,19.813544012000122],[-16.35838782499988,19.853176174000122],[-16.345936652999853,19.868353583000115],[-16.336822068999936,19.855698960000055]]],[[[-16.448109503999888,20.574530341000113],[-16.454172329999892,20.571112372000083],[-16.46727454299986,20.576239325000113],[-16.474232550999943,20.59418366100006],[-16.469105597999942,20.609076239000032],[-16.459299282999922,20.614691473],[-16.45067298099991,20.612534898000106],[-16.44640051999988,20.607326565000033],[-16.448109503999888,20.574530341000113]]],[[[-6.148741413999886,21.21953277600012],[-6.134633747999941,21.098868307000046],[-6.12052608299993,20.97820383700015],[-6.113704792999954,20.91955108700013],[-6.098615274999872,20.79072174100004],[-6.083577433999892,20.661892395000123],[-6.076756143999944,20.603342997000123],[-6.064095417999908,20.495442607000097],[-6.049677693999882,20.370488993000052],[-6.035363321999881,20.24548370399999],[-6.020945597999884,20.120530091000134],[-6.006579548999866,19.995524801000055],[-5.992161823999936,19.870597025000123],[-5.977847452999868,19.745617574000065],[-5.963533080999866,19.620612285],[-5.949115355999936,19.49563283300013],[-5.949115355999936,19.49558115700013],[-5.949115355999936,19.49552948000003],[-5.949115355999936,19.49547780400009],[-5.934025838999958,19.357940980000038],[-5.927566283999909,19.299546611000082],[-5.921210082999977,19.241229757000113],[-5.914802205999933,19.18288706500006],[-5.9083943279999,19.12457021100012],[-5.898214070999927,19.031785177000113],[-5.888033813999868,18.939051819000113],[-5.877801879999878,18.846318462000042],[-5.867673299999922,18.753585104000038],[-5.857544717999872,18.660800070000036],[-5.847364460999898,18.56806671200003],[-5.837080850999911,18.475333354000114],[-5.826952270999868,18.382548320000026],[-5.816772013999895,18.289892477000034],[-5.806540079999905,18.19708160400002],[-5.796359822999932,18.104374085000032],[-5.786179565999873,18.01166656500014],[-5.776361042999922,17.921439514000113],[-5.766387491999892,17.83126414000013],[-5.756465616999918,17.7410370890001],[-5.746647094999929,17.65075836200016],[-5.736673543999927,17.560582988000178],[-5.726803344999951,17.47035593700015],[-5.71693314599986,17.38018056200015],[-5.706959594999944,17.28995351200014],[-5.697037719999855,17.199726461000026],[-5.687167521999896,17.109499410000026],[-5.67729732299989,17.01932403600001],[-5.6673237709999,16.9290969850001],[-5.657453571999895,16.83881825700017],[-5.647583373999936,16.74864288300007],[-5.637609822999906,16.658364156000133],[-5.627687947999931,16.568137106000123],[-5.623347126999931,16.52782948900007],[-5.614562133999868,16.51186147100013],[-5.605880493999904,16.495893453000107],[-5.566503051999888,16.469486797000016],[-5.529709431999891,16.444992167000162],[-5.485371053999955,16.415433248000124],[-5.445941934999922,16.38902659100016],[-5.404962524999917,16.361689758000026],[-5.364913288999929,16.334921367000064],[-5.36010738199991,16.329908752],[-5.355301472999912,16.324792786],[-5.354267943999929,16.318384908000056],[-5.353286091999877,16.311977031000122],[-5.358918822999897,16.282366435000156],[-5.377212279999867,16.18779856400009],[-5.395454060999924,16.093179017000168],[-5.41379919499991,15.998559469000057],[-5.431989298999952,15.903939922000163],[-5.450799519999862,15.806839905000073],[-5.469558064999944,15.709791565],[-5.488368285999882,15.612665710000115],[-5.507075154999939,15.515539857000034],[-5.508057006999906,15.510656434000012],[-5.508761370999935,15.506899828000044],[-5.508987182999874,15.505695496000058],[-5.509917358999928,15.500812073000034],[-5.510950886999893,15.495902812000095],[-5.510950886999893,15.495670268000126],[-5.510950886999893,15.49543772400007],[-5.510950886999893,15.495282695000027],[-5.510950886999893,15.495075989000055],[-5.510950886999893,15.494817607000087],[-5.510950886999893,15.494662577000057],[-5.510950886999893,15.494507549000033],[-5.510950886999893,15.49430084200007],[-5.510950886999893,15.494197489000115],[-5.511105916999952,15.49404246100009],[-5.511260945999879,15.493990784000076],[-5.511312621999906,15.49388743100006],[-5.511364298999922,15.493732401],[-5.511519327999849,15.493680725000088],[-5.511622679999988,15.493525696000132],[-5.511726033999906,15.49342234300012],[-5.511932739999878,15.49342234300012],[-5.512191120999944,15.49342234300012],[-5.512294473999873,15.49342234300012],[-5.512552855999927,15.49342234300012],[-5.5127595619999,15.49342234300012],[-5.512966267999957,15.49342234300012],[-5.513121296999884,15.49342234300012],[-5.513379679999957,15.49342234300012],[-5.513741414999856,15.493525696000132],[-5.514051472999938,15.493629049000063],[-5.514361531999924,15.493732401],[-5.514671589999921,15.493835755000033],[-5.514981648999907,15.493913269000146],[-5.515291707999893,15.49404246100009],[-5.515601765999861,15.494145813000115],[-5.515963500999874,15.494249166000044],[-5.673163207999977,15.49430084200007],[-5.807315226999918,15.494352519000172],[-5.870257120999923,15.494352519000172],[-5.938211629999898,15.494352519000172],[-6.010817015999919,15.494378357000173],[-6.087814900999944,15.494455872000103],[-6.221605183999883,15.494507549000033],[-6.320144864999889,15.494543123000128],[-6.364748900999899,15.494559225000117],[-6.516005818999872,15.494610901000144],[-6.673928995999887,15.494662577000057],[-6.837174844999936,15.494740093000175],[-7.004503132999901,15.494817607000087],[-7.174518595999898,15.494817607000087],[-7.34587764499986,15.494920960000044],[-7.517236693999933,15.49497263600013],[-7.687200480999905,15.495024313000059],[-7.85452876799988,15.495075989000055],[-8.017826293999946,15.495127665000082],[-8.175801146999959,15.495205180000097],[-8.327006388999848,15.495282695000027],[-8.470201781999947,15.495282695000027],[-8.603940388999888,15.495386048000157],[-8.68930985599988,15.49543772400007],[-8.76925329699989,15.49543772400007],[-8.843408976999854,15.49543772400007],[-8.911156778999953,15.49543772400007],[-9.003215638999933,15.495526284000034],[-9.018592081999941,15.495541076000093],[-9.141378708999923,15.495581427000147],[-9.17584346599989,15.49559275300011],[-9.349217895999885,15.495644430000127],[-9.342965046999893,15.586930847000033],[-9.32932246899989,15.655247091000163],[-9.332423055999925,15.68757070000008],[-9.35645259599994,15.697854310000153],[-9.375934610999934,15.685917053000123],[-9.437016153999934,15.61488779800011],[-9.4516922599999,15.588326111000114],[-9.451847289999876,15.559206441000084],[-9.435879271999937,15.495954489000027],[-9.435879271999937,15.495902812000095],[-9.423890339999957,15.440531515000044],[-9.672118082999928,15.43066131600007],[-9.720823120999853,15.420920309000111],[-9.740718546999858,15.412600403000154],[-9.797355916999948,15.380302633000085],[-9.835596475999921,15.371104228000176],[-9.951403360999903,15.381206971000124],[-10.067623657999889,15.364748026000145],[-10.108293009999926,15.365884908000154],[-10.131599080999877,15.372628683000185],[-10.16797928899993,15.395185445000122],[-10.188391478999904,15.404719747000113],[-10.19609126799989,15.405288188000156],[-10.214488077999873,15.401980896000167],[-10.223221394999939,15.402032573000087],[-10.308745890999887,15.43520884200011],[-10.322646850999973,15.437095032000016],[-10.370757608999952,15.433503520000144],[-10.398404500999959,15.43869700100005],[-10.500413777999881,15.440350647000102],[-10.515503295999878,15.437740988000185],[-10.534985310999955,15.441694235000154],[-10.551521768999862,15.439162089000163],[-10.584746267999947,15.4281271520001],[-10.587385213999909,15.427250672000126],[-10.607125609999883,15.424434306000165],[-10.64888016799992,15.424873556000179],[-10.709186563999907,15.433865255000129],[-10.725361286999885,15.433064270000115],[-10.736368367999887,15.42262563000017],[-10.740140747999902,15.403582866000194],[-10.738900511999873,15.362164205000141],[-10.746807006999916,15.341131897000139],[-10.75450679499991,15.333638815000183],[-10.770681517999918,15.32467295300016],[-10.781740275999908,15.30842071600014],[-10.790111856999886,15.306844585000121],[-10.80018876099993,15.306844585000121],[-10.811040811999874,15.303123882000191],[-10.827215534999878,15.287698466000124],[-10.834398559999926,15.271394552000173],[-10.844062051999856,15.234549255000076],[-10.855327514999914,15.21765106200017],[-10.882250935999906,15.192846375000144],[-10.890880899999956,15.176749166000077],[-10.906228799999923,15.119775900000093],[-10.915168822999872,15.102903544000112],[-10.9480350339999,15.151996155000147],[-10.985190388999882,15.187497864000179],[-11.012733927999875,15.239587708000144],[-11.04539343299993,15.270205994000065],[-11.2981945399999,15.451047669],[-11.316901407999922,15.471666565000092],[-11.40955725099988,15.602201233000171],[-11.434827025999965,15.623388570000131],[-11.4582364499999,15.63294871000012],[-11.515390583999931,15.644420878000133],[-11.524382283999898,15.643464864000078],[-11.5273278409999,15.642560527000127],[-11.52562251799992,15.638348897000085],[-11.522987019999903,15.635248312000058],[-11.5195763749999,15.63274200500017],[-11.515390583999931,15.63026153600019],[-11.513116821999915,15.625274760000039],[-11.51234167499993,15.620184632000147],[-11.513116821999915,15.615042826000078],[-11.515390583999931,15.610081889000112],[-11.524278930999856,15.600289205000152],[-11.53595780399985,15.5949148560001],[-11.562571166999874,15.587240906000106],[-11.579210978999896,15.577964986],[-11.614867715999878,15.541171367000103],[-11.644116577999908,15.5264435830001],[-11.670833292999871,15.528407288000109],[-11.69755000799995,15.536804708000103],[-11.701739990999954,15.53742476700016],[-11.727057250999877,15.541171367000103],[-11.727057250999877,15.506987406000107],[-11.729434366999897,15.496057841000138],[-11.754859171999925,15.469082744],[-11.767674926999888,15.437198385000144],[-11.783487914999881,15.365884908000154],[-11.816922566999978,15.296095887000192],[-11.821056680999902,15.280102030000151],[-11.826792765999869,15.232559713000128],[-11.845654662999891,15.179074606000198],[-11.848186807999866,15.15814565000012],[-11.847308308999942,15.148740539000158],[-11.844207723999887,15.13483957900017],[-11.845137898999951,15.124555969000184],[-11.856765096999908,15.084248352000131],[-11.859142212999954,15.054069316000136],[-11.860899210999918,15.049005026000158],[-11.851029011999856,15.041951192000141],[-11.844466104999867,15.044328308000088],[-11.839195108999915,15.049005026000158],[-11.8328389079999,15.049005026000158],[-11.821160034999934,15.039754944000153],[-11.813770304999906,15.028541159000099],[-11.8110831299999,15.014304302000127],[-11.81320186399995,14.996088359000082],[-11.81320186399995,14.995933329000136],[-11.820591593999978,14.980275371000173],[-11.825810912999884,14.962472839000142],[-11.830926879999877,14.926428528000159],[-11.830100056999868,14.920330709000098],[-11.82736120699991,14.915576477000114],[-11.82043656399992,14.906403910000124],[-11.820384887999921,14.899970195000078],[-11.826069294999854,14.896559550000134],[-11.833097289999955,14.89469919900013],[-11.837076375999857,14.89309722900019],[-11.840487019999983,14.888498027000153],[-11.84560298699995,14.883227031000118],[-11.850822305999884,14.876483256000187],[-11.854698038999857,14.867310690000181],[-11.862604532999882,14.854081523000103],[-11.87748734499985,14.841524150000096],[-11.895729125999878,14.83206736300012],[-11.935985066999931,14.823618266000125],[-11.950299438999906,14.811551819000144],[-11.973967244999955,14.779848328000128],[-11.991485554999912,14.768040263000115],[-12.01107092299992,14.762743429000182],[-12.031069702999957,14.762820943000106],[-12.049673217999922,14.76721344000019],[-12.057062947999924,14.761942444000155],[-12.062333943999958,14.746258647000104],[-12.07039546799993,14.73439890600018],[-12.081454223999856,14.740031637000115],[-12.12367386899993,14.776644389000154],[-12.138866739999855,14.784525045000107],[-12.160209105999854,14.781011047000149],[-12.203255573999854,14.76617991200011],[-12.2247788089999,14.76344106100008],[-12.246792968999955,14.767006734000134],[-12.2641304119999,14.774939067000105],[-12.319579223999938,14.817184550000079],[-12.382495279999942,14.846019999000106],[-12.400091104999916,14.86038604700012],[-12.433835815999885,14.899427592000123],[-12.447633422999928,14.90743743900019],[-12.448201863999913,14.918211976000123],[-12.47150793399993,14.998000387000104],[-12.476262165999913,15.007741395000153],[-12.484892130999867,15.017275696000139],[-12.495563313999867,15.023011780000102],[-12.518972736999928,15.028282776000125],[-12.529592244999918,15.034354757000173],[-12.547058878999877,15.047170512000063],[-12.60214595599993,15.07877065000015],[-12.615065062999946,15.094609477000146],[-12.622945719999874,15.102257589000132],[-12.632273314999907,15.105435689000103],[-12.64764705399989,15.103161927000171],[-12.679273029999877,15.093782654000123],[-12.689585456999879,15.092478506000132],[-12.690305948999878,15.092387390000141],[-12.717048502999944,15.103420308000139],[-12.746639016999922,15.131135942000157],[-12.754565591999949,15.138560282000183],[-12.779757852999891,15.146389262000127],[-12.78092057299989,15.149076436000142],[-12.78399532099985,15.15814565000012],[-12.784667113999916,15.166026306000147],[-12.779266926999867,15.19139943500015],[-12.779473632999895,15.19961598700017],[-12.7819799399999,15.20728993700007],[-12.787225096999917,15.21416290300013],[-12.796320149999898,15.220286560000188],[-12.806397053999916,15.223077088000151],[-12.816964883999901,15.223077088000151],[-12.838333088999889,15.218762106000087],[-12.847893229999897,15.218942973000138],[-12.856781575999918,15.221991882000154],[-12.86548905399988,15.22868398000017],[-12.888355875999906,15.250879008000197],[-12.894376180999927,15.263358866000187],[-12.884195922999965,15.270826111000135],[-12.850037801999889,15.26738962900019],[-12.833449666999881,15.269999288000108],[-12.828049478999901,15.283874410000164],[-12.83453487199995,15.300230001000118],[-12.847273111999925,15.313278300000079],[-12.906830199999916,15.352681580000166],[-12.918974161999898,15.365368144000115],[-12.927216552999937,15.380741883000098],[-12.931014769999877,15.397045797000132],[-12.931169799999935,15.430532125000028],[-12.933055988999854,15.438283590000042],[-12.937551839999855,15.445776673000168],[-12.9476029059999,15.458618266000158],[-12.9509101969999,15.465413717],[-12.954940958999885,15.49306060800002],[-12.95801570699993,15.501742249000172],[-12.964320230999931,15.509157817000087],[-12.980184895999855,15.516289165000115],[-12.995842854999893,15.514222107000151],[-13.010544799999906,15.506289774000109],[-13.023773966999897,15.495954489000027],[-13.038889322999893,15.486885274000045],[-13.053229532999893,15.485102438000142],[-13.083845013999849,15.492750019000184],[-13.089583902999946,15.49703969300019],[-13.093097900999908,15.50621226],[-13.094958251999913,15.514713033000092],[-13.095087442999954,15.523420512000158],[-13.08945471199985,15.56104095500008],[-13.091805989999955,15.575122782000037],[-13.099014851999923,15.58687917100012],[-13.109711873999942,15.596413473],[-13.122217569999917,15.603493143000108],[-13.145239419999882,15.609539287000146],[-13.152551635999885,15.612407329000135],[-13.171051798999912,15.625352275000168],[-13.178234821999865,15.628194479000129],[-13.192807576999911,15.628969625000039],[-13.22280574499996,15.62385365800007],[-13.237843586999958,15.62344024700006],[-13.247300373999906,15.648296611000191],[-13.248747314999918,15.656719870000087],[-13.247662108999917,15.665608216000107],[-13.243993082999907,15.673721415],[-13.22887772599992,15.696614075000028],[-13.227120727999932,15.703952128000125],[-13.228257608999854,15.711290182000099],[-13.232546752999923,15.719610087000163],[-13.243941405999918,15.735784810000085],[-13.250659342999938,15.742761129000156],[-13.25866918999992,15.748807272000093],[-13.27396541399986,15.757488912000056],[-13.28096756999986,15.762811585000021],[-13.28613521299988,15.769632874000152],[-13.287452961999918,15.778159485000074],[-13.285230875999929,15.78663442],[-13.281897745999913,15.795109355000179],[-13.279675658999905,15.803532613000172],[-13.279959879999893,15.822859599000125],[-13.284765787999902,15.839912822000159],[-13.293654133999922,15.855312399000141],[-13.311766723999938,15.875776266000017],[-13.316030028999903,15.881770732000133],[-13.318174601999885,15.88848866800005],[-13.318174601999885,15.896705221],[-13.314350544999854,15.913603414000178],[-13.313730427999872,15.922130026],[-13.315926675999947,15.930449931000155],[-13.321766113999956,15.938149719000151],[-13.34701004999991,15.956753235000107],[-13.355795043999903,15.965538229000103],[-13.36333980299986,15.97509836800019],[-13.369773518999892,15.985485331000021],[-13.383674478999865,16.019178365000172],[-13.385043904999861,16.02687815400016],[-13.386051594999913,16.044396464000116],[-13.388557901999889,16.052096253000016],[-13.394578206999938,16.059279276000055],[-13.422095906999914,16.07721099900014],[-13.427031005999936,16.083050435000033],[-13.435066690999946,16.096537985000097],[-13.440027628999898,16.10186065700013],[-13.455091308999982,16.102222392000115],[-13.491549031999881,16.088424785000186],[-13.501703450999855,16.095142721000016],[-13.499868936999945,16.11064565000011],[-13.483099935999888,16.141031392000073],[-13.484934447999875,16.15498402900006],[-13.491549031999881,16.156275940000015],[-13.497259276999927,16.156069234000157],[-13.502788654999932,16.15441558900001],[-13.516405395999925,16.149041239000056],[-13.569063679999942,16.138189188000112],[-13.599397745999878,16.125476787000068],[-13.606968343999938,16.123254700000146],[-13.610482340999909,16.122892965000133],[-13.629266723999905,16.122789612000116],[-13.635028645999881,16.12160105400001],[-13.6624171549999,16.10744171100005],[-13.668954222999986,16.105736390000075],[-13.675930541999888,16.10692494700011],[-13.67812678999988,16.108216859000052],[-13.684689696999953,16.113797913000084],[-13.687454386999917,16.115244853000164],[-13.693578043999878,16.11751861599999],[-13.696006835999924,16.11891388000008],[-13.697298746999877,16.12036082000016],[-13.698849039999914,16.123926494000116],[-13.69996008299992,16.12563181600008],[-13.704481770999848,16.12883575400015],[-13.714842894999945,16.13276316300012],[-13.719571289999948,16.135605367000025],[-13.722775227999904,16.146095683000155],[-13.718305709999925,16.159288152000116],[-13.712620808999956,16.17606801300009],[-13.710579589999893,16.188883769000153],[-13.720139729999886,16.189968974000166],[-13.729415649999908,16.18950388600014],[-13.738226481999902,16.18712677000009],[-13.74670141699991,16.1823725390001],[-13.754246174999963,16.17534454399999],[-13.77199702999988,16.150436503000137],[-13.778818318999924,16.143201803000167],[-13.794941365999904,16.131212870000113],[-13.811322794999882,16.122066142000122],[-13.819203449999918,16.119275615000063],[-13.827316649999915,16.118500469000153],[-13.835765746999897,16.120567525000023],[-13.84483496199988,16.12604522700009],[-13.852767292999914,16.133486634000022],[-13.85907181899995,16.14227162700011],[-13.863826049999943,16.151831767000104],[-13.872275146999925,16.178755189000025],[-13.877236083999975,16.186868388000118],[-13.883824829999867,16.19374135400001],[-13.899586140999958,16.20531687500015],[-13.907828531999883,16.210019430000116],[-13.947050943999955,16.221129863000144],[-13.96407832899996,16.23006988600015],[-13.967799031999986,16.246037903000015],[-13.962683064999908,16.263969625000172],[-13.96304479999989,16.272392883000165],[-13.967437296999888,16.281384583000104],[-13.977281656999963,16.293838602],[-13.97932287599991,16.300349833000055],[-13.977462523999918,16.30882476800015],[-13.971157999999889,16.324224345000133],[-13.971855631999885,16.331200663000132],[-13.97785009799992,16.337970276000178],[-13.987048501999908,16.342879537000115],[-14.006711385999948,16.350269267000115],[-14.01559973199997,16.35585032200005],[-14.033066364999911,16.376055807000125],[-14.039835977999957,16.38210195000009],[-14.073038085999883,16.400653789000117],[-14.132440144999919,16.45264028000004],[-14.166391560999926,16.490880839000127],[-14.190085204999889,16.50710723900015],[-14.197190713999902,16.513463440000162],[-14.21416642199992,16.53496083600011],[-14.222279622999935,16.539611715000163],[-14.233674275999931,16.541575419000093],[-14.257652140999937,16.543177389000146],[-14.268064941999882,16.547879944000115],[-14.273258422999959,16.555631409000124],[-14.274576171999938,16.573511454000183],[-14.277960977999953,16.581262919],[-14.287650308999986,16.58570709300001],[-14.325968383999907,16.582399801000108],[-14.335321818999944,16.58648223900012],[-14.337027139999918,16.59413035100009],[-14.331756143999883,16.613147278000056],[-14.331342732999872,16.624102682000125],[-14.335528523999898,16.631544088000155],[-14.343254149999893,16.63666005500015],[-14.406635294999916,16.660792948],[-14.426246500999952,16.659604391000173],[-14.435832478999941,16.655987041000103],[-14.462058267999877,16.64079416900016],[-14.471954304999969,16.636401672000158],[-14.482392944999901,16.63366282100013],[-14.493089965999898,16.63247426400001],[-14.503916177999939,16.632680969000077],[-14.544456338999879,16.64084584600009],[-14.555127522999951,16.64058746400012],[-14.597011271999946,16.629166972000107],[-14.608070027999958,16.628805237],[-14.61907710799994,16.630665589000117],[-14.647189086999957,16.64353302000002],[-14.655974080999952,16.645910136000154],[-14.665895954999966,16.645651754000184],[-14.699692341999935,16.63712514300006],[-14.711216185999973,16.635781556000026],[-14.882006794999883,16.64766713400003],[-14.912495890999962,16.640639140000033],[-14.930944375999957,16.64337799100015],[-14.941331339999891,16.656038717000015],[-14.948934022999934,16.670552930000113],[-14.949857950999926,16.672316793000117],[-14.962932088999878,16.685804342],[-14.97430090399996,16.691385397000104],[-14.996625121999925,16.682445374000096],[-15.006908731999912,16.675830790000177],[-15.013368285999972,16.666580709000172],[-15.016520547999932,16.652576396000157],[-15.018742634999937,16.646116842000097],[-15.023651895999876,16.639967347000134],[-15.029853068999955,16.635471497000125],[-15.036932739999884,16.632577617000138],[-15.04437414599991,16.63190582300014],[-15.051557169999853,16.63417958600017],[-15.061995808999882,16.643791403000176],[-15.069850626999909,16.65526357],[-15.07889400299996,16.66497873900012],[-15.0933117269999,16.66916453000009],[-15.107574421999885,16.665392151000148],[-15.116256062999923,16.65552195300016],[-15.118271443999959,16.642602844000137],[-15.11232865399995,16.629218649000123],[-15.096153930999947,16.613974101000068],[-15.092846638999957,16.60761790000005],[-15.093208373999856,16.600176494000138],[-15.097497517999924,16.594492086000074],[-15.104008748999888,16.59035797100016],[-15.125092732999917,16.58270985900016],[-15.232476358999916,16.566380107000143],[-15.248599405999897,16.5658116660001],[-15.295935017999854,16.573046367000146],[-15.328026082999967,16.57196116100006],[-15.343632364999905,16.56870554600009],[-15.385748656999851,16.551755677000173],[-15.399804646999966,16.548345032000142],[-15.41453243099997,16.548034974000146],[-15.426883096999914,16.55315094100014],[-15.433704386999894,16.562504375000103],[-15.439440469999852,16.57268463200016],[-15.448845580999887,16.5801777140001],[-15.463986775999897,16.58146962500014],[-15.478507853999956,16.57516510000012],[-15.490910196999918,16.56451975500015],[-15.515198119999923,16.53093007400012],[-15.52480993699993,16.52219675700006],[-15.536695515999952,16.5165123500001],[-15.55147497599998,16.515117086000103],[-15.594418090999852,16.52364369800013],[-15.609662637999888,16.521318258000107],[-15.621496541999905,16.51423858700018],[-15.643614054999915,16.494653219000057],[-15.657411661999959,16.48617828400016],[-15.672191120999884,16.481372376000067],[-15.687539021999953,16.480545553000027],[-15.703196980999904,16.484421286000085],[-15.726813110999927,16.495273336000125],[-15.735288044999919,16.497702128000086],[-15.767740844999933,16.49945912700015],[-15.812957722999926,16.513773499000152],[-15.828925740999862,16.514548645000062],[-15.85357539899988,16.510259501000107],[-15.861998656999958,16.510259501000107],[-15.89693192599995,16.51842437800012],[-15.911039590999877,16.516874084],[-15.950675415999854,16.499820862000078],[-15.958065144999862,16.498425599000186],[-15.964369669999966,16.49899403900004],[-15.977288777999973,16.503954977000163],[-15.98560868399994,16.5058670050001],[-15.993101765999882,16.504626770000172],[-16.000181437999885,16.5010610960001],[-16.007312784999925,16.49615183600015],[-16.031187295999928,16.492896220000162],[-16.053769897999956,16.495428365000166],[-16.074027058999945,16.504885153000046],[-16.09097692899988,16.52219675700006],[-16.10306921399996,16.53956003900005],[-16.11045894399996,16.54694976800006],[-16.11965734899985,16.552375793000138],[-16.132266397999985,16.5547529090001],[-16.144307006999952,16.55268585300003],[-16.15577917499988,16.54751820900013],[-16.18518306499996,16.527312724000026],[-16.195363321999935,16.522713522000075],[-16.20673213799992,16.520749817000066],[-16.217945922999945,16.52152496300006],[-16.25101883999986,16.52762278200011],[-16.27380814599985,16.523178610000016],[-16.295098836999927,16.51062123700011],[-16.313547322999852,16.49330963200019],[-16.327396606999912,16.47455108700011],[-16.33494136499985,16.455792542],[-16.340160684999972,16.415898336000154],[-16.38108841999988,16.246658020000083],[-16.385377563999953,16.234927470000102],[-16.391682087999868,16.224747213000043],[-16.407288370999908,16.214825338000125],[-16.44418534399992,16.20629872700003],[-16.45875809799989,16.19415476500002],[-16.465992797999945,16.174052633000045],[-16.470436970999884,16.106356507000058],[-16.487800251999886,16.06604889],[-16.50159785999992,16.02186553900019],[-16.50754064899985,16.01039337200008],[-16.509917764999898,15.901511129000099],[-16.51973628799996,15.846372376000103],[-16.542345658985056,15.80884783523966],[-16.527333136999857,15.977362372000085],[-16.529286261999914,16.06582265800013],[-16.539214647999927,16.267238674000012],[-16.529286261999914,16.332709052000055],[-16.522206183999856,16.350531317000147],[-16.49449622299997,16.401597398000106],[-16.48615475199989,16.45172760600012],[-16.47769120999996,16.466498114],[-16.467152472999885,16.492865302],[-16.467193162999873,16.60024648600013],[-16.45921790299994,16.643947658000126],[-16.379139777999853,16.841009833000115],[-16.357818162999905,16.874660549000126],[-16.343088344999895,16.9422875020001],[-16.325998501999948,16.97524648600016],[-16.278065558999856,17.040716864000117],[-16.192534959999932,17.219305731000176],[-16.186675584999904,17.243841864],[-16.172596808999856,17.262355861000014],[-16.078968878999916,17.54482656500015],[-16.04898027299987,17.667181708000143],[-16.041411912999905,17.799994208],[-16.024159308999913,17.960150458000143],[-16.035227016999954,18.141424872000087],[-16.06940670499995,18.484035549],[-16.08055579299986,18.51972077000012],[-16.131988084999875,18.628648179000137],[-16.15566972599987,18.752508856000148],[-16.172963019999884,18.79311758000007],[-16.16397050699987,18.816839911000088],[-16.165598110999895,18.84418366100006],[-16.204579230999855,18.982733466000084],[-16.21035722599993,18.995876369000044],[-16.2389216789999,19.06102122600008],[-16.28278561099995,19.130438544000114],[-16.341867641999897,19.195746161],[-16.360707160999933,19.21246979400003],[-16.36473548099988,19.214585679000137],[-16.368275519999884,19.221502997000027],[-16.376576300999943,19.223578192000147],[-16.38646399599986,19.224595445000105],[-16.394886847999913,19.228501695000105],[-16.411854620999886,19.23924388200011],[-16.45091712099986,19.25018952],[-16.467193162999873,19.259263414000188],[-16.474598761999886,19.270819403000118],[-16.49128170499992,19.313055731000034],[-16.49449622299997,19.330959377000013],[-16.504750128999888,19.350002346000096],[-16.52407792899993,19.365912177000112],[-16.535471157999893,19.380804755000057],[-16.521839972999942,19.396429755000057],[-16.463734503999888,19.38153717699999],[-16.407785610999923,19.38922760600012],[-16.35920162699989,19.415838934000146],[-16.32323157499991,19.45791250200001],[-16.299549933999884,19.496649481000148],[-16.293853318999908,19.51609935100005],[-16.28490149599986,19.529282945000105],[-16.282826300999943,19.536078192000115],[-16.285878058999856,19.542710679],[-16.292551235999895,19.546576239],[-16.29914303299998,19.547023830000096],[-16.30211341099988,19.54319896],[-16.3072810539999,19.543605861000074],[-16.362904425999915,19.485825914000074],[-16.391468878999913,19.464056708],[-16.35049394399988,19.546616929],[-16.3646541009999,19.53925202],[-16.405181443999936,19.507147528000033],[-16.419422980999855,19.492010809000035],[-16.42625891799986,19.48248932500003],[-16.43224036399988,19.47138092699999],[-16.434193488999906,19.459540106000034],[-16.429351365999935,19.447943427000112],[-16.428944464999944,19.44171784100017],[-16.437489386999857,19.422796942000147],[-16.43993079299989,19.413234768000066],[-16.44245357999992,19.41034577000012],[-16.44835364499994,19.408636786000116],[-16.455067511999886,19.408270575000117],[-16.46035722599987,19.409491278000033],[-16.46507727799988,19.412543036000113],[-16.465728318999908,19.414496161000056],[-16.465402798999886,19.417303778000118],[-16.467193162999873,19.423163153000147],[-16.46886145699989,19.431219794000086],[-16.46849524599989,19.455715236000046],[-16.467193162999873,19.464056708],[-16.457753058999884,19.479681708000086],[-16.431630011999914,19.505926825000117],[-16.42625891799986,19.523016669000143],[-16.42251542899993,19.543850002000127],[-16.412831183999856,19.554185289000046],[-16.39948482999995,19.56175364799999],[-16.384632941999882,19.57391998900006],[-16.289133266999897,19.71112702000012],[-16.283111131999874,19.716376044000114],[-16.276356574999852,19.720445054000052],[-16.270822719999927,19.725897528000086],[-16.26862545499992,19.73533763200011],[-16.26740475199992,19.755275783000016],[-16.264271613999938,19.76284414300015],[-16.2579646479999,19.765692450000085],[-16.25601152299987,19.769517320000105],[-16.238433397999927,19.78766510600009],[-16.2337947259999,19.793646552000112],[-16.23350989499997,19.804348049000126],[-16.235951300999886,19.813299872000172],[-16.240956183999856,19.820990302],[-16.248036261999914,19.82782623900003],[-16.240223761999914,19.83445872599999],[-16.23517818899998,19.84243398600013],[-16.233062303999873,19.85162995000009],[-16.2337947259999,19.861965236000017],[-16.24962317599994,19.85346100500008],[-16.25487219999991,19.848293361000074],[-16.257801886999857,19.86416250200001],[-16.243478969999956,19.888739325000117],[-16.248036261999914,19.902899481000034],[-16.266509568999936,19.913723049000126],[-16.27916419199991,19.905218817],[-16.2865291009999,19.890448309000117],[-16.289133266999897,19.88247304900007],[-16.30557206899988,19.873032945000045],[-16.312733527999935,19.87763092699999],[-16.313303188999896,19.889715887000094],[-16.309559699999877,19.902899481000034],[-16.304025844999927,19.914007880000057],[-16.29796301999994,19.922512111000103],[-16.23908443899995,19.979193427],[-16.22248287699992,20.003566799000126],[-16.213978644999884,20.03327057500014],[-16.21837317599997,20.057928778000147],[-16.248605923999975,20.10846588700015],[-16.26113847599987,20.135687567000062],[-16.253244594999895,20.135158596000096],[-16.246083136999857,20.135728257000054],[-16.239613410999937,20.138128973],[-16.2337947259999,20.143133856000034],[-16.21165930899991,20.175604559000035],[-16.203114386999886,20.19550202000012],[-16.19969641799989,20.21515534100017],[-16.202259894999884,20.23330312700007],[-16.208973761999857,20.248358466000084],[-16.2376195949999,20.289984442000062],[-16.243723110999895,20.29311758000013],[-16.2579646479999,20.293931382000054],[-16.267486131999902,20.29824453300013],[-16.27212480399993,20.307603257],[-16.275135870999915,20.317043361000103],[-16.27916419199991,20.32123444200012],[-16.295074022999927,20.330552476000076],[-16.32323157499991,20.396389065000122],[-16.332427537999873,20.405462958000115],[-16.34121660099993,20.411322333000086],[-16.34788977799988,20.41754791900003],[-16.35049394399988,20.427435614000146],[-16.347727016999926,20.430853583000058],[-16.342030402999853,20.432806708],[-16.33800208199989,20.435492255],[-16.339955206999917,20.441066799000094],[-16.34276282499988,20.44513580900015],[-16.349232550999886,20.45742422100001],[-16.353505011999886,20.476385809000117],[-16.39118404899989,20.569484768000066],[-16.4010310539999,20.58323802299999],[-16.415679490999906,20.588771877000013],[-16.423898891999897,20.601263739000117],[-16.4252009759999,20.626125393000066],[-16.429554816999882,20.64423248900009],[-16.44668535099993,20.63654205900015],[-16.467193162999873,20.649603583000115],[-16.467193162999873,20.657049872000115],[-16.421945766999954,20.66913483300011],[-16.408680792999917,20.67503489800005],[-16.429351365999935,20.677557684000146],[-16.464670376999948,20.671942450000145],[-16.480824347999913,20.67511627800003],[-16.49449622299997,20.69114817900011],[-16.487049933999884,20.697984117000047],[-16.50133216099988,20.725978908000158],[-16.50804602799994,20.73061758000007],[-16.529286261999914,20.738959052000055],[-16.536284959999904,20.69537995000003],[-16.528431769999912,20.59861888200014],[-16.54234778599988,20.56085846600017],[-16.55247962099986,20.576402085000083],[-16.56550045499992,20.58734772300012],[-16.590728318999908,20.602443752000127],[-16.59898841099988,20.611070054000052],[-16.611805792999917,20.634466864000114],[-16.621164516999954,20.64647044500005],[-16.633656378999945,20.654974677],[-16.66502844999991,20.670558986000074],[-16.672678188999924,20.677557684000146],[-16.673451300999943,20.68895091400013],[-16.668690558999856,20.693670966000028],[-16.66234290299991,20.69537995000003],[-16.659006313999896,20.697984117000047],[-16.659291144999912,20.706529039000074],[-16.66502844999991,20.714748440000065],[-16.666411912999877,20.722154039000046],[-16.671131964999887,20.737127997000172],[-16.682525193999936,20.749212958000086],[-16.71019446499986,20.77000560100008],[-16.713978644999884,20.777655341000084],[-16.71369381399992,20.79621002800009],[-16.71735592399989,20.804144598000065],[-16.734120245999918,20.82151927300005],[-16.7454320949999,20.86859772300015],[-16.751535610999895,20.879868882000054],[-16.76203365799995,20.89203522300012],[-16.768950975999957,20.90680573100012],[-16.773101365999878,20.922552802000055],[-16.775054490999935,20.93764883000007],[-16.779408331999914,20.932806708],[-16.785755988999966,20.92796458500011],[-16.788685675999886,20.92397695500013],[-16.803212042999917,20.937445380000113],[-16.808990037999877,20.952582098000036],[-16.811634894999884,20.96889883000013],[-16.81663977799991,20.98602936400009],[-16.822987433999852,20.993150132000107],[-16.832142706999917,21.000148830000015],[-16.840402798999918,21.009507554000052],[-16.84398352799988,21.023871161000116],[-16.84935462099986,21.03363678600006],[-16.87328040299991,21.06464264500009],[-16.878732876999948,21.078517971000068],[-16.880767381999874,21.092596747000115],[-16.885812954999892,21.108587958000115],[-16.898548956999946,21.13686758000007],[-16.917591925999943,21.15916575700011],[-16.931223110999895,21.151516018000063],[-16.95726477799988,21.105861721000124],[-17.000070766999954,21.05097077000015],[-17.010121222999942,21.042954820000105],[-17.01585852799991,21.031236070000105],[-17.008412238999938,21.013373114000146],[-16.99718176999994,21.018500067000062],[-16.99596106699991,21.001410223000036],[-17.00226803299995,20.964911200000145],[-17.00438391799986,20.932440497000172],[-17.008412238999938,20.92397695500013],[-17.01805579299989,20.917914130000142],[-17.041249152999853,20.91136302300005],[-17.049427863999938,20.903509833000086],[-17.050119594999984,20.89476146],[-17.045521613999938,20.88719310100005],[-17.03575598899991,20.87677643400015],[-17.028553839999887,20.860825914000046],[-17.027902798999914,20.854234117000157],[-17.028920050999886,20.842027085],[-17.03844153599988,20.799790757000082],[-17.046945766999926,20.77781810100005],[-17.05687415249986,20.76691315300009],[-17.081174885999896,20.874747620000065],[-17.077428344999902,20.904513245000047],[-17.054018920999937,20.995463766000157],[-17.047378499999922,21.02739980100013],[-17.004926309999888,21.141914775000046],[-16.985702677999967,21.237826233000117],[-16.968339395999863,21.32459096300009],[-16.958830932999973,21.33285919200013],[-16.84281734299995,21.33285919200013],[-16.801424519999898,21.33285919200013],[-16.684635782999862,21.332910868000127],[-16.503148152999955,21.332910868000127],[-16.26771032699989,21.332910868000127],[-15.989019327999868,21.333014222000156],[-15.67808223499989,21.333065898000186],[-15.345544392999924,21.333065898000186],[-15.002257853999934,21.333169251000026],[-14.658971312999881,21.333169251000026],[-14.32648514899995,21.333220927000028],[-14.295597564999923,21.333226059000097],[-14.015496378999927,21.33327260300014],[-13.73690873199993,21.333324280000156],[-13.501419229999954,21.33337595600007],[-13.31985408599985,21.33337595600007],[-13.203091186999899,21.33337595600007],[-13.161724202999949,21.333427633],[-13.01524735499987,21.333427633],[-13.026176920999944,21.495329896000086],[-13.032092883999951,21.581939241000086],[-13.060335041999906,21.995402731000137],[-13.076832743499862,22.24543914850012],[-13.093330444999879,22.49547556600011],[-13.106352904999907,22.560226135000036],[-13.15498042799993,22.688797099000155],[-13.16549658199989,22.752695008000032],[-13.152293253999915,22.820003560000103],[-13.119892130999915,22.883539734000166],[-13.034341796999854,22.995160828000095],[-13.034341796999854,22.995212504],[-13.01524735499987,23.01800181100019],[-12.915098428999954,23.082054749000108],[-12.789938109999866,23.161868998],[-12.68221858699988,23.230753683],[-12.619431721999916,23.270828756000085],[-12.558376017999933,23.29028493300008],[-12.389910847999943,23.312531637000017],[-12.353892374999873,23.32247935000011],[-12.1345775959999,23.419346822000037],[-12.032723347999905,23.444978333],[-12.019339151999873,23.46099802700014],[-12.015308389999888,23.49518198600005],[-12.015308389999888,23.5759264120001],[-12.015308389999888,23.651477356000115],[-12.015308389999888,23.727105815000144],[-12.015308389999888,23.802734274000116],[-12.015308389999888,23.878311056000044],[-12.015308389999888,23.953939514000083],[-12.015308389999888,24.029542135000142],[-12.015308389999888,24.105093079000156],[-12.015308389999888,24.18069569900011],[-12.015308389999888,24.25629831900015],[-12.015308389999888,24.331900941000086],[-12.015308389999888,24.40747772200002],[-12.015308389999888,24.483080343000083],[-12.015308389999888,24.558631287000097],[-12.015308389999888,24.634259746000126],[-12.015308389999888,24.709862366],[-12.015308389999888,24.785464986000036],[-12.015308389999888,24.861015931000154],[-12.015308389999888,24.936618551],[-12.015308389999888,25.01224700900006],[-12.015308389999888,25.087797954000067],[-12.015308389999888,25.16332306],[-12.015308389999888,25.238925680000037],[-12.015308389999888,25.314579977],[-12.015308389999888,25.390182597000134],[-12.015308389999888,25.465733541000148],[-12.015308389999888,25.541336162],[-12.015308389999888,25.616938782000048],[-12.015308389999888,25.692489726000176],[-12.015308389999888,25.76809234700003],[-12.015308389999888,25.843694967000047],[-12.015308389999888,25.919245910000182],[-12.015308389999888,25.994900208000143],[-11.914591023999916,25.99495188400006],[-11.813821980999933,25.99495188400006],[-11.713207966999903,25.99495188400006],[-11.612438923999916,25.99495188400006],[-11.511721557999863,25.99495188400006],[-11.410952514999876,25.99495188400006],[-11.310235147999919,25.99495188400006],[-11.209517781999947,25.99495188400006],[-11.108748738999878,25.99495188400006],[-11.008083047999918,25.99495188400006],[-10.907314005999922,25.99495188400006],[-10.80659663999995,25.99495188400006],[-10.705879272999907,25.99495188400006],[-10.605161905999921,25.99495188400006],[-10.5044445399999,25.99495188400006],[-10.40367549699988,25.99495188400006],[-10.302958129999922,25.99495188400006],[-10.202292439999951,25.99495188400006],[-10.101523396999879,25.99495188400006],[-10.000806030999911,25.99495188400006],[-9.90003698699985,25.99495188400006],[-9.799371297999897,25.99495188400006],[-9.698653930999939,25.99495188400006],[-9.597884887999953,25.99495188400006],[-9.49716752099988,25.99495188400006],[-9.39645015499991,25.99495188400006],[-9.295732787999953,25.99495188400006],[-9.195015421999898,25.99495188400006],[-9.094246378999912,25.99495188400006],[-8.993580688999941,25.99495188400006],[-8.892863321999897,25.99495188400006],[-8.792042602999885,25.995003560000058],[-8.707215738999935,25.995003560000058],[-8.687656208999925,26.000016175000113],[-8.680809081999882,26.013141989000086],[-8.680809081999882,26.05841054299999],[-8.68086075799988,26.07220815000015],[-8.68086075799988,26.111120504000112],[-8.680938272999894,26.171633606000157],[-8.681041625999853,26.250181783000084],[-8.681144978999953,26.342992656000106],[-8.681300008999896,26.44660390200006],[-8.681455036999864,26.55744985000008],[-8.681558389999879,26.671913147000097],[-8.681661742999893,26.786324768000085],[-8.681816772999952,26.897170715000087],[-8.681920124999891,27.000833638000145],[-8.682075154999922,27.093696188000095],[-8.682230183999962,27.17214101200001],[-8.682230183999962,27.232705790000168],[-8.682281860999865,27.271669821000142],[-8.68238521299989,27.285415751000087],[-8.484412800999904,27.168988750000054],[-8.2864403899999,27.05266510000014],[-8.088623006999882,26.936238099000104],[-7.890753946999922,26.81991444900011],[-7.692781534999909,26.703487447000054],[-7.494912475999854,26.587163798000162],[-7.297043415999894,26.470736796000107],[-7.099122680999925,26.354361471000015],[-6.901201944999855,26.23793446900008],[-6.703332885999884,26.12155914400016],[-6.505412149999898,26.005183818000134],[-6.30749141499993,25.888808493000013],[-6.139904743999892,25.790209859000026],[-5.972266397999931,25.69161122600003],[-5.804628051999885,25.592960918000028],[-5.661524745999969,25.508881108000153],[-5.636989704999848,25.494465637000147],[-5.515963500999874,25.42325551400002],[-5.34233068899988,25.31618194600013],[-5.168749552999912,25.20916005500005],[-4.995194254999973,25.102086487000136],[-4.821613117999902,24.995064596000176],[-5.043072468999867,24.994909566000114],[-5.26445430499993,24.994806213000018],[-5.485939493999894,24.99470286100008],[-5.707321329999957,24.99459950800015],[-5.928754841999932,24.994444479000105],[-6.150188354999898,24.994341125000076],[-6.371673542999872,24.994237773000137],[-6.593107055999923,24.994134420000037],[-6.583391885999902,24.914423523000078],[-6.573780069999884,24.834867656000043],[-6.564168252999877,24.7552342740001],[-6.55445308399993,24.67554921500006],[-6.544789591999916,24.595993347000146],[-6.53517777499988,24.516359965],[-6.525514281999961,24.436726583000066],[-6.515850789999944,24.357067363000127],[-6.50633795899995,24.275966855000107],[-6.505670532999886,24.27027679500004],[-6.498435831999899,24.208368428000128],[-6.48257116699989,24.072304383000144],[-6.466603148999865,23.936240337000086],[-6.459420125999912,23.8744094850001],[-6.445312459999883,23.753719177],[-6.431204793999939,23.633028870000103],[-6.417045450999893,23.512338563000114],[-6.402937784999949,23.39167409300002],[-6.388778442999921,23.270957947000127],[-6.37472245299989,23.150293477000147],[-6.371634199999903,23.123981336000085],[-6.3605631099999,23.029654847000145],[-6.346455443999901,22.908964539000163],[-6.332296101999873,22.78830007000009],[-6.318188435999928,22.667661438000106],[-6.304132446999915,22.546996969000034],[-6.289973103999954,22.426280823000027],[-6.275865437999926,22.305616354000122],[-6.261706095999897,22.184951884000057],[-6.247598429999869,22.06423573800005],[-6.233490763999924,21.943571269000145],[-6.219383096999877,21.822855123000167],[-6.205223754999849,21.70224233],[-6.191116088999905,21.5815778610001],[-6.177008422999961,21.46086171500012],[-6.162900756999932,21.34019724600004],[-6.148741413999886,21.21953277600012]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Malawi","sov_a3":"MWI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malawi","adm0_a3":"MWI","geou_dif":0,"geounit":"Malawi","gu_a3":"MWI","su_dif":0,"subunit":"Malawi","su_a3":"MWI","brk_diff":0,"name":"Malawi","name_long":"Malawi","brk_a3":"MWI","brk_name":"Malawi","brk_group":null,"abbrev":"Mal.","postal":"MW","formal_en":"Republic of Malawi","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malawi","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":4,"mapcolor13":5,"pop_est":14268711,"gdp_md_est":11810,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"MI","iso_a2":"MW","iso_a3":"MWI","iso_n3":"454","un_a3":"454","wb_a2":"MW","wb_a3":"MWI","woe_id":23424889,"woe_id_eh":23424889,"woe_note":"Exact WOE match as country","adm0_a3_is":"MWI","adm0_a3_us":"MWI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"MWI.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[34.71160689300015,-12.120809427999859],[34.6889726160002,-12.124530130999872],[34.669025512000104,-12.117812194999857],[34.65620975800019,-12.097244974999867],[34.655899699000116,-12.076264342999863],[34.66241092900006,-12.052803242999884],[34.680911092000116,-12.009395039999887],[34.69414025900019,-12.000403340999853],[34.71563765500011,-12.001643574999889],[34.73827193200012,-12.009498391999912],[34.75418827300021,-12.020143737999902],[34.76235315000022,-12.040297545999891],[34.7592525630001,-12.065618997999863],[34.74819380700009,-12.09042368499982],[34.73248417200014,-12.109027200999861],[34.71160689300015,-12.120809427999859]]],[[[34.63171512800014,-12.0524931839999],[34.61114790800016,-12.07254363999985],[34.59605839000008,-12.071923522999882],[34.583552694000076,-12.058901061999848],[34.57073693900006,-12.041021015999888],[34.544071900000205,-12.011358743999919],[34.54179813600021,-11.994615579999873],[34.561641886000096,-11.978595885999823],[34.56257206200016,-11.977975768999853],[34.59843550600007,-11.970534362999928],[34.627477661000086,-11.987277526999875],[34.64122359200021,-12.017869973999893],[34.63171512800014,-12.0524931839999]]],[[[33.0423031010001,-9.44066294299985],[33.10390140800021,-9.487895201999875],[33.11299646000012,-9.491512552999865],[33.13991988100011,-9.497403665999867],[33.16922041800015,-9.50887583399988],[33.17294112100009,-9.511046243999871],[33.18203617400016,-9.507945657999839],[33.19578210400019,-9.496680195999872],[33.202396688000164,-9.493476256999898],[33.21634932400016,-9.493372904999873],[33.23712325000022,-9.49957407599986],[33.249112182000054,-9.50071095799987],[33.2576904700002,-9.498023783999841],[33.27350345900018,-9.487688496999837],[33.28239180500012,-9.486034850999872],[33.30027185100007,-9.492236022999862],[33.356495809000165,-9.531820169999918],[33.37499597200011,-9.549080097999905],[33.39220422400015,-9.586183776999889],[33.4042448320001,-9.60489064499987],[33.41964440900019,-9.615639342999884],[33.43897139500004,-9.621530455999888],[33.48051924600023,-9.624424335999876],[33.5116284590002,-9.616982929999864],[33.53519291200021,-9.603340351999847],[33.55948083500019,-9.593315124999833],[33.59338057500011,-9.596829120999885],[33.62386966900007,-9.606337584999864],[33.65013541400012,-9.610901131999896],[33.65063806100008,-9.610988463999831],[33.67606286600008,-9.607681171999928],[33.702521199000074,-9.592901712999904],[33.734612264000106,-9.584116719999827],[33.76200077300021,-9.600963235999814],[33.78752893000015,-9.626491393999842],[33.813470500000136,-9.643337910999916],[33.8369316000001,-9.652846373999806],[33.86525028500009,-9.669589538999858],[33.88933150200015,-9.689743346999833],[33.900183553000176,-9.709587096999824],[33.911862426000226,-9.717958678999892],[33.928295532000135,-9.700285338999889],[33.928295532000135,-9.693464050999836],[33.943074992000135,-9.68385223399983],[33.95134322100009,-9.673620299999854],[33.954857218000114,-9.660597838999905],[33.955580689000016,-9.642304381999834],[33.96260868400023,-9.612125345999843],[33.96446903500006,-9.594658711999884],[33.94586551900019,-9.55001027399986],[33.96074833200012,-9.524895527999846],[33.984312785000014,-9.505568542999882],[33.996508423000165,-9.491822610999847],[34.01273482200017,-9.477456562999848],[34.047461385000105,-9.489962259999842],[34.078490688000066,-9.510185830999916],[34.07981083200016,-9.511046243999871],[34.08931929600007,-9.522208353999815],[34.10316857900014,-9.529856465999885],[34.13706831800002,-9.57057749399985],[34.144613078000106,-9.57491831399983],[34.16187300600009,-9.593625182999816],[34.19081180800006,-9.606750996999878],[34.288066853000174,-9.708450215999903],[34.317935831000085,-9.719198912999929],[34.3242403560001,-9.732428079999835],[34.32672082600007,-9.75030812599988],[34.33168176300009,-9.769221699999918],[34.33746952300007,-9.777179869999884],[34.35969038900012,-9.799917500999868],[34.364237915000075,-9.80239796899984],[34.38232466700018,-9.819657897999832],[34.3834615480001,-9.823792012999846],[34.483300415000116,-9.9461618039999],[34.494669230000085,-9.96672902399989],[34.52474491400008,-10.008793639999823],[34.53642378700013,-10.043003437999815],[34.53776737500013,-10.053855488999856],[34.53570031800004,-10.06532765699987],[34.526811971000114,-10.084861347999876],[34.52474491400008,-10.09478322299988],[34.532393026000165,-10.128889668999847],[34.56556929600018,-10.20268361399981],[34.57507775900015,-10.255806985999838],[34.5834493400001,-10.277614440999855],[34.58561975100011,-10.290016783999832],[34.58530969200015,-10.300662128999818],[34.56505253100013,-10.409802754999873],[34.5694967040001,-10.431403503999844],[34.58872033700006,-10.463132832999861],[34.59295780400012,-10.481736347999828],[34.59078739500009,-10.491244811999891],[34.58148563700009,-10.51367238399989],[34.57941857900002,-10.526488137999875],[34.58008816300011,-10.531844811999889],[34.5810722250001,-10.539717304999867],[34.58572310400015,-10.553566588999928],[34.59233768700002,-10.566692402999891],[34.60039921100022,-10.578061217999888],[34.60887414600015,-10.581988626999857],[34.61755578600011,-10.58147186299982],[34.6208589230001,-10.582422765999809],[34.62437707500007,-10.583435566999853],[34.62716760300012,-10.595114439999833],[34.626340780000106,-10.614338072999841],[34.62902795400012,-10.620229186999849],[34.65052535000004,-10.645343932999864],[34.66003381400011,-10.665497741999843],[34.66086063700007,-10.687305195999869],[34.64763147000005,-10.708389179999898],[34.65393599500018,-10.717587584999889],[34.655692993000144,-10.722031758999904],[34.65993046100019,-10.727716165999851],[34.666441691000074,-10.732367044999819],[34.67243615700008,-10.739498392999849],[34.67501997800011,-10.752417500999869],[34.662824341000174,-10.761409199999903],[34.65672652200013,-10.769884134999813],[34.66055057700018,-10.7960324099999],[34.64763147000005,-10.858560892999902],[34.64763147000005,-10.902899271999857],[34.64546106000009,-10.913234557999857],[34.627064250000075,-10.95405893899985],[34.61783828200012,-10.9657386209999],[34.597918741000086,-10.990955911999876],[34.59295780400012,-11.016174011999835],[34.59729862500009,-11.036637878999883],[34.61063114400011,-11.077668965999834],[34.6135250240001,-11.102163594999894],[34.62106978400006,-11.119733580999863],[34.66871545400008,-11.16014455199985],[34.673986451000104,-11.16996307399991],[34.677087036000074,-11.178748066999901],[34.68184126800017,-11.18505259199982],[34.69992801900017,-11.189496764999916],[34.7078861900002,-11.19497446699991],[34.71408736200013,-11.202725930999819],[34.716567831000106,-11.211717630999857],[34.719771769000175,-11.234558613999866],[34.7286601160001,-11.253988952999846],[34.74168257700009,-11.26866505899983],[34.757495565000085,-11.277553404999848],[34.757495565000085,-11.283754576999838],[34.75160445200012,-11.287061868999928],[34.7430261640001,-11.293676452999833],[34.73703169800015,-11.296777037999874],[34.759149210000174,-11.337498066999927],[34.76555708800012,-11.345146178999812],[34.7721716720001,-11.344422708999913],[34.784884073000086,-11.333467305999847],[34.79232548000019,-11.330883483999841],[34.8004903560001,-11.33191701199982],[34.84369185400013,-11.34628305999982],[34.867876424000116,-11.358788756999914],[34.886583293000086,-11.375428567999847],[34.89412805200007,-11.395995788999826],[34.89836552000011,-11.40354054799988],[34.91707238800009,-11.41883677099983],[34.925650675000185,-11.445915221999883],[34.93505578600016,-11.456457214999858],[34.944460897000084,-11.464415384999825],[34.94869836400008,-11.471753437999908],[34.950972127000085,-11.477747903999841],[34.95572635900018,-11.48673960399988],[34.9606872960002,-11.498521830999875],[34.96296105900015,-11.513094583999845],[34.96296105900015,-11.564874369999812],[34.964614706000106,-11.573556009999876],[34.65124882000006,-11.57004201299982],[34.616728963000156,-11.578310241999858],[34.60711714700008,-11.591125995999846],[34.60722050000018,-11.60931610099989],[34.61393843600021,-11.652724303999873],[34.611974731000174,-11.693135273999857],[34.60442997200013,-11.732616068999889],[34.56381229600018,-11.830904641999892],[34.4876412350001,-11.944076028999845],[34.380050904000164,-12.103859557999854],[34.35876021300018,-12.154399108999883],[34.354005981000086,-12.199460957999833],[34.355581017000105,-12.204939612999823],[34.380360962000026,-12.29113494899984],[34.439168742000135,-12.495050149999855],[34.49446252500016,-12.687389831999909],[34.507484985000104,-12.799424335999943],[34.52391809100007,-12.939674173999862],[34.53776737500013,-13.059356790999956],[34.54934289500008,-13.159092305999877],[34.54283166500019,-13.243789977999967],[34.54531213400017,-13.325748798999939],[34.57817834500011,-13.398405863999898],[34.57941857900002,-13.400369567999917],[34.58275973300019,-13.403625920999886],[34.59977909300008,-13.42021331799991],[34.61145796700012,-13.435819600999862],[34.63171512800014,-13.471166279999949],[34.63646936000012,-13.482225035999875],[34.637606242000146,-13.488219502999897],[34.64060347500006,-13.49235361799991],[34.65135217300005,-13.497831319],[34.66747522000017,-13.50093190499986],[34.79542606600008,-13.498761494999869],[34.829635865000085,-13.503929137999961],[34.863122192000134,-13.515814716999897],[34.86389759600016,-13.51628303],[34.894438110000095,-13.534728292000011],[34.99655074100005,-13.625988871000018],[35.08409061700016,-13.70422698899989],[35.1711137290001,-13.80571950199996],[35.27870406100013,-13.930879820999877],[35.370067993000156,-14.03722991899987],[35.45574751800021,-14.136965433999961],[35.522823527000156,-14.262745869000026],[35.609433227000096,-14.369406025999922],[35.714439738000095,-14.498700459999938],[35.75053940900008,-14.543142707999877],[35.78689009600012,-14.587893981999967],[35.83556929500011,-14.635849711],[35.84724816900021,-14.650422464999878],[35.853035929000185,-14.66747568699982],[35.863267863000175,-14.87666188599985],[35.86988244600016,-14.885550231999956],[35.88280155400017,-14.887513936999895],[35.90429895000008,-14.886893818999837],[35.86678186100019,-14.973090108999855],[35.83928999800011,-15.036342060999843],[35.79081750500009,-15.146826273999947],[35.78420292100005,-15.171837665999943],[35.78451298100006,-15.195195413999896],[35.788582505000164,-15.21142761299994],[35.81200484200022,-15.304852803999891],[35.84053023300007,-15.417197366999913],[35.83762321100008,-15.45828093799986],[35.83755828300011,-15.45919853300002],[35.83195194500016,-15.53843027699986],[35.823063598000225,-15.663383890999896],[35.8167590740002,-15.751957295999873],[35.806733846000185,-15.895824482999954],[35.796591428000085,-15.93319775899995],[35.78968062400017,-15.958663024999922],[35.79009403500018,-15.97447601299993],[35.79567509000017,-16.004965107999823],[35.79464156100019,-16.020674742999887],[35.78513309700023,-16.04227549199986],[35.770043580000134,-16.058811950999853],[35.69759322100006,-16.107491148999955],[35.687051229000105,-16.11265879299988],[35.6778528240001,-16.11348561599999],[35.65893924900015,-16.110074970999875],[35.64860396300011,-16.110591736],[35.553209269,-16.138393655999963],[35.529024699000075,-16.14077077199991],[35.524063762000104,-16.146661886],[35.52106652800009,-16.162164814999926],[35.51455529800009,-16.171363219999833],[35.50204960100021,-16.17084645599998],[35.48871708200007,-16.164645283999903],[35.48013879400017,-16.156893818999976],[35.47290409300009,-16.14015065499994],[35.45636763500008,-16.129401958],[35.435800415000216,-16.123924254999935],[35.41606001800008,-16.12289072699994],[35.39342574000008,-16.128575133999902],[35.374615520000106,-16.140977477999954],[35.304955689000074,-16.20205902099987],[35.29915613900019,-16.20872095699997],[35.277153768000204,-16.23399505599994],[35.25875695800019,-16.271512145999935],[35.251935669000055,-16.317814228999907],[35.254209432000174,-16.328356221999883],[35.266198365000065,-16.356468200999828],[35.26227095500005,-16.366596780999956],[35.238706502000156,-16.394088642999847],[35.237253459000186,-16.39909046299998],[35.23333215300008,-16.412588805999874],[35.23364221200009,-16.45237965899997],[35.2281645100002,-16.470259703999844],[35.21441857900007,-16.484212340999914],[35.144655396000104,-16.529067484],[35.13194299300008,-16.537645771999934],[35.14837609900022,-16.582087504],[35.16439579200008,-16.606788837999844],[35.16852990800006,-16.617124124999844],[35.174317667000054,-16.62549570699983],[35.1854797770001,-16.629009704999874],[35.194678182000104,-16.630559996999892],[35.216588990000076,-16.63872487399999],[35.22299686700009,-16.642135518999932],[35.2275443930001,-16.64688974999993],[35.23271203600021,-16.657225035999843],[35.23663944500018,-16.662599385999897],[35.23974003100014,-16.664563089999927],[35.24821496600006,-16.66818043999991],[35.25100549300012,-16.670040792],[35.27508671100023,-16.69546559599983],[35.27818729700019,-16.700736591999956],[35.281081177000175,-16.76688242599984],[35.28511193800008,-16.786726176],[35.305162394,-16.82569020599999],[35.31022668400007,-16.850598246999876],[35.28521529100007,-16.871062113999926],[35.28283817500008,-16.89214609799987],[35.28511193800008,-16.930076598999875],[35.28190800000018,-16.934727478000013],[35.27581018100014,-16.939171650999853],[35.270952596000114,-16.94423594099983],[35.27136600800023,-16.95054046699984],[35.276016887000104,-16.95519134499999],[35.308366333000066,-16.973691508],[35.31436080000012,-16.98226979599994],[35.30929650800013,-16.995292256999974],[35.29865116400006,-17.01358571399996],[35.29741093000021,-17.02970875999985],[35.3061959230001,-17.067329202999872],[35.30753951000017,-17.087586364999964],[35.304955689000074,-17.104226175999983],[35.299477986000085,-17.117972107000014],[35.2919332280002,-17.129340921999827],[35.29167287300018,-17.129368228999862],[35.234779094000174,-17.13533538799993],[35.133906698000175,-17.132028095999942],[35.08130008900011,-17.124069924999887],[35.066003866000216,-17.109807230999905],[35.069104451000186,-17.084072366999905],[35.036548299000145,-17.03590993199984],[35.04440311700009,-17.004697366999935],[35.06610721900009,-16.98733408599992],[35.09142867000011,-16.975345153999967],[35.11344283000014,-16.960255635999957],[35.12512170400012,-16.932867127],[35.12811893700021,-16.90072438499999],[35.12749882000011,-16.86444752999985],[35.118300415000164,-16.833441669999914],[35.09576949000021,-16.817318623999924],[35.06279992700016,-16.816388447999884],[35.033034301000185,-16.819178975999847],[35.004508911000094,-16.814631448999904],[34.975053345000134,-16.792100524999967],[34.95665653500012,-16.768329365999833],[34.9480782470001,-16.75933766699988],[34.93443566900007,-16.749725849999873],[34.92761438000011,-16.74724538199999],[34.912318156000055,-16.74455820699987],[34.905496867000096,-16.74083750399994],[34.900949341000086,-16.733292744999815],[34.8977454020002,-16.713965758999862],[34.89350793500009,-16.7056975299999],[34.88661311100017,-16.700848911999913],[34.87748824000013,-16.694432067999855],[34.859918254000064,-16.687197366999882],[34.84462203000007,-16.678412373999976],[34.83480350800013,-16.663116149999937],[34.82756880700006,-16.641515400999964],[34.81950728300015,-16.627769469999933],[34.77299849500011,-16.589735615999896],[34.76286991400016,-16.57640309599988],[34.744989868000204,-16.542916767999884],[34.7320707600002,-16.52917083699985],[34.66871545400008,-16.496614684999898],[34.66117069500015,-16.49392751099995],[34.65496952300006,-16.48937998399984],[34.642670533000086,-16.459717711999957],[34.63739953600006,-16.45051930799997],[34.630681600000145,-16.443387959999924],[34.598332154000076,-16.419720152999986],[34.58582645600009,-16.407834573999878],[34.57507775900015,-16.39233164499987],[34.54706913200002,-16.323085224999858],[34.52474491400008,-16.300761006999977],[34.480406535000014,-16.29445648099995],[34.44599003100009,-16.29321624699993],[34.42645633900005,-16.273889260999965],[34.385218546000175,-16.186452739],[34.389249308000075,-16.15244964599998],[34.40898970600019,-16.08785410499993],[34.40454553200013,-16.05974212699998],[34.38769901500015,-16.037004496],[34.3042932540001,-15.952151794999951],[34.28972050000013,-15.943470152999907],[34.256440877000074,-15.928173929999856],[34.24403853400011,-15.917631937999884],[34.23318648300008,-15.889830017],[34.23132613100003,-15.854173277999847],[34.23639042200014,-15.81924000999986],[34.24713912000007,-15.794125264000014],[34.275561157000055,-15.7643596399999],[34.29333785000019,-15.75113047299993],[34.310287720000105,-15.74327565499999],[34.33095829300012,-15.737074483000015],[34.34181034300016,-15.73087331099994],[34.34221782200021,-15.73032301099988],[34.404028768000074,-15.646847432],[34.415914348000086,-15.61511810299997],[34.4191182860001,-15.57532724999997],[34.41002323400019,-15.514969176999884],[34.410126587000065,-15.481276143],[34.42263228300013,-15.464532978999967],[34.44061568200013,-15.455541279999919],[34.460252726000164,-15.424845478999984],[34.480406535000014,-15.412856546999933],[34.487021118000115,-15.400454202999866],[34.49198205600007,-15.375132750999967],[34.49663293400013,-15.362730408],[34.508001750000204,-15.348054300999834],[34.52030074000007,-15.339786071999882],[34.533323202000105,-15.333068134999861],[34.546759074000164,-15.323249612999888],[34.56515588400006,-15.297308043999847],[34.5690832930002,-15.271159769999839],[34.55908512000022,-15.200177714000018],[34.54830936700009,-15.123675230999867],[34.5506864820002,-15.106622008999834],[34.5598848880002,-15.095666604999948],[34.557301066,-15.084297790999868],[34.55099654200009,-15.07179209299987],[34.54872277900009,-15.057632751999918],[34.554613892000106,-15.0435767619999],[34.57497440600022,-15.016084899999923],[34.58231246000011,-15.001305439999909],[34.584172811000116,-14.984458922999933],[34.57693811000015,-14.969266051999908],[34.565982707000074,-14.954279886999842],[34.55699100800021,-14.938260192999975],[34.551099895000135,-14.918313089999868],[34.54872277900009,-14.901569925999823],[34.54841271900008,-14.82777597999987],[34.54283166500019,-14.796253356999898],[34.53208296700009,-14.766797790999986],[34.51533980300022,-14.734551696999842],[34.50583133900014,-14.700341897999849],[34.51937056400013,-14.64081064799987],[34.518130330000105,-14.607427672999803],[34.50180057800011,-14.575698343999875],[34.44971073400009,-14.525468850999916],[34.42645633900005,-14.497563577999939],[34.39379683400019,-14.43234792099983],[34.38043631000008,-14.413643186999847],[34.37209273300019,-14.401962178999952],[34.34408410600011,-14.38738942499991],[34.3352991130001,-14.388836364999904],[34.327754353000074,-14.393590595999898],[34.320519653000105,-14.39937835699996],[34.31287154100019,-14.404235941999886],[34.30491337000015,-14.405786233999903],[34.288893677000175,-14.404029235999928],[34.28134891800002,-14.404959410999963],[34.18244022600006,-14.439479267999955],[34.109576456000156,-14.441442972999894],[34.077537069000044,-14.454672139999971],[34.0701990150001,-14.46490407299987],[34.0586234940001,-14.490122171999827],[34.05076867700009,-14.495186461999976],[33.94555546000012,-14.481440530999945],[33.91630660000007,-14.481337178999922],[33.8889180900002,-14.488158466999892],[33.83083378100011,-14.522678323999868],[33.802411743000135,-14.532806904999829],[33.77419641100008,-14.530016377999956],[33.720401245000204,-14.489708760999816],[33.699213908000075,-14.49621999099996],[33.684072714000166,-14.5187509159999],[33.67554610200014,-14.547793069999983],[33.6754427490001,-14.582312927999965],[33.67223881000015,-14.600192972000016],[33.66242028800016,-14.607014261999964],[33.644850302000094,-14.601743265999858],[33.63296472200008,-14.59140797899994],[33.62448978700015,-14.578075459999907],[33.61840558200018,-14.561840566999917],[33.60423262500015,-14.524021910999918],[33.59575769100016,-14.511412861999988],[33.58428552200016,-14.502627867999918],[33.557413778000154,-14.49043223],[33.545941610000135,-14.481647236999917],[33.537466674000115,-14.468728129],[33.53235070800022,-14.456222431999988],[33.525787801000064,-14.44433685299988],[33.512455282000104,-14.432968037999984],[33.47028731300006,-14.414467874999872],[33.457368205000165,-14.40433929399991],[33.43917810100001,-14.380671487999976],[33.38858687400008,-14.280625914999902],[33.371016886000085,-14.256751403999914],[33.35710549200016,-14.230565247999962],[33.354325399000146,-14.225332131999876],[33.34714237500012,-14.218820901999905],[33.33825402900018,-14.215410257999963],[33.32393965600008,-14.206315206],[33.31556807400014,-14.197116800999908],[33.29055668200013,-14.156912536999966],[33.28621586100004,-14.13892913799998],[33.29128015100011,-14.089216410999896],[33.28022139500009,-14.060794371999876],[33.25779382400012,-14.043637796999818],[33.202706747000065,-14.013872171999921],[33.18565352400012,-13.993821715999957],[33.15454431200007,-13.936564228999913],[33.140281616000124,-13.924988707999873],[33.130256389000095,-13.93056976299998],[33.12064457200009,-13.955891214999951],[33.11160119600012,-13.964572854999915],[33.0769263110001,-13.974494729999918],[33.06297367300007,-13.981729430999891],[33.0494344480002,-13.99661224400002],[33.018170206,-14.046221618999907],[32.99982507400014,-14.050459085999947],[32.976467326000176,-14.02110687199989],[32.97129968300006,-14.005914000999866],[32.97481368000015,-13.95547780399994],[32.97667403100016,-13.949793395999817],[32.97626062000015,-13.944522399999883],[32.97057621200011,-13.936047464999959],[32.96251468900018,-13.932016702999974],[32.944427938000075,-13.932946878999843],[32.936159709000066,-13.92622894199991],[32.93006189000019,-13.910519307000015],[32.92789148000011,-13.895636494999806],[32.92391239400009,-13.880443622999962],[32.87414799000007,-13.820602314999817],[32.859420207000106,-13.808096617999823],[32.828776083000065,-13.797037861999897],[32.791879110000224,-13.789803160999936],[32.76304366000007,-13.777194111999902],[32.757359253000146,-13.750219013999967],[32.768107950000086,-13.739056904999856],[32.80484989400017,-13.722003681999908],[32.81337650600008,-13.711151631999954],[32.80779545000004,-13.699162698999913],[32.769864950000084,-13.64686615],[32.74340661600015,-13.635393981999968],[32.70671635000011,-13.635083922999812],[32.67509037200008,-13.628055927999895],[32.66330814700021,-13.596326598999966],[32.66764896600009,-13.575552673999837],[32.67726078300021,-13.56780120799992],[32.69162683100021,-13.569144794999884],[32.710230346000145,-13.575345966999876],[32.72283939600018,-13.573382262999843],[32.749814494000105,-13.550851338999905],[32.76319869000022,-13.54247975599985],[32.80004398600008,-13.537105407999972],[32.81306644700012,-13.52821706099995],[32.81751062000009,-13.505582783999913],[32.816890503000224,-13.487392678999967],[32.819060913000015,-13.471683043999816],[32.82743249500018,-13.46083099299986],[32.845829305000194,-13.4580404659999],[32.87425134200012,-13.44315765399986],[32.89213138800008,-13.404813740999842],[32.905487180000165,-13.351390573999879],[32.91962325000023,-13.294846292999862],[32.937865031000086,-13.255882262999874],[32.96272139500016,-13.224979756999955],[32.99279707900021,-13.216401468999846],[32.998171427000074,-13.202448831999858],[32.99507084200016,-13.190873311999908],[32.979051147000206,-13.167877298999954],[32.97129968300006,-13.15092742899995],[32.96711389200007,-13.1341842649999],[32.96592533400021,-13.116820983999887],[32.98153161600007,-13.00613006599991],[33.00892012500012,-12.945048522999825],[33.01357100400017,-12.917246601999864],[33.00504439200009,-12.892958678999946],[32.980498088000076,-12.870737813999922],[32.95352299000015,-12.8540980019999],[32.947011760000095,-12.843245950999856],[32.9411206460002,-12.769865417],[32.94463464400016,-12.752398782999876],[32.958070516000106,-12.725216979999885],[32.994140666000106,-12.672507018999864],[33.02483646600015,-12.612665710999906],[33.0353784590001,-12.599126485000014],[33.04953780100007,-12.586827493999976],[33.05770267800008,-12.58341684899986],[33.06462731900015,-12.584967142999972],[33.07000166800012,-12.590444843999961],[33.07423913500017,-12.598299661999903],[33.08126713000016,-12.604810892999964],[33.08994877100022,-12.60078013099988],[33.099043823000066,-12.593235370999835],[33.10700199400017,-12.58868784599997],[33.122814982000165,-12.58455373099987],[33.13035974100009,-12.58372690899985],[33.13991988100011,-12.586310729999852],[33.1468962000001,-12.593235370999835],[33.158781779000066,-12.615352884999922],[33.16301924600006,-12.620417175],[33.17325118000005,-12.62000376399999],[33.17800541100004,-12.615042826999852],[33.181312703000145,-12.608221536999805],[33.18730716900009,-12.602330423999987],[33.192371460000146,-12.599023131999898],[33.19681563300017,-12.595405781999913],[33.20291345200022,-12.59178843099984],[33.212990357000166,-12.588584492999956],[33.22699467000009,-12.579076029999882],[33.2436344810001,-12.544762877999858],[33.25510664800012,-12.531947122999867],[33.263168172000086,-12.528536478999854],[33.28972985800013,-12.524195657999867],[33.302235555000124,-12.525125833999823],[33.31195072400007,-12.529880065999818],[33.32032230600012,-12.535047708999826],[33.328280477000106,-12.537631529999913],[33.350397990000175,-12.532670592999864],[33.3732389730001,-12.518511249999918],[33.393754517000076,-12.498254089999818],[33.40941247500021,-12.475206400999852],[33.42078129100011,-12.464974466999877],[33.45111535600009,-12.452985533999822],[33.45995202600008,-12.4410999549998],[33.46077884900009,-12.41650197299981],[33.46532637600009,-12.409060566999884],[33.48051924600023,-12.40637339199985],[33.48775394700013,-12.389836934999863],[33.51388714300012,-12.37428145999985],[33.518139689000094,-12.371750182999847],[33.52713138800013,-12.355627135999868],[33.52558109600008,-12.335266621999834],[33.51410892700008,-12.331029153999793],[33.497365763000204,-12.331545917999918],[33.45829838100022,-12.318110045999873],[33.38460778800018,-12.340020852999826],[33.349467814000064,-12.327928567999848],[33.3301408290001,-12.29826629599988],[33.31246748900017,-12.22860646599986],[33.29996179200012,-12.195946959999873],[33.288386271000064,-12.182201029999844],[33.260274292000105,-12.155742695999862],[33.252729533000064,-12.139516295999854],[33.25128259300006,-12.105823261999888],[33.25489994300002,-12.072646992999879],[33.29422570800014,-11.981283060999855],[33.303579143000064,-11.930226745999875],[33.30931522600022,-11.914310403999863],[33.31267419400015,-11.898704120999824],[33.30874678600017,-11.884441426999842],[33.2974813230002,-11.862530618999884],[33.2973779700001,-11.846510924999833],[33.310607137000176,-11.808787129999885],[33.31401778100022,-11.772200215999845],[33.302648967000124,-11.609729512999891],[33.296757853000116,-11.593606464999823],[33.28321862800013,-11.578413594999802],[33.266888875000205,-11.575623067999842],[33.24931888900002,-11.577793476999828],[33.2326790770002,-11.577690123999886],[33.21593591300003,-11.57159230499984],[33.212628621000164,-11.56384084099983],[33.227304728000064,-11.53273162799988],[33.23381595900011,-11.514024758999895],[33.23495284100014,-11.501725768999862],[33.23030196100015,-11.416563008999915],[33.23970707200013,-11.40240366599987],[33.26518355300007,-11.423074238999888],[33.27360681200011,-11.409431660999871],[33.273813517000086,-11.39661590599981],[33.27184981300016,-11.383696796999885],[33.27350345900018,-11.369640807999872],[33.27805098400014,-11.364266458999806],[33.293347209000075,-11.357755228999835],[33.298928264000125,-11.353104349999867],[33.30027185100007,-11.34700653099982],[33.296809529000114,-11.33574106899985],[33.29830814600015,-11.32922983799989],[33.36848474100012,-11.222673034999929],[33.382230672000134,-11.194664408999827],[33.3909123130002,-11.164795430999902],[33.35887292400011,-11.109398294999863],[33.336600382000114,-11.08738413499988],[33.318100220000105,-11.062269388999852],[33.30368249500012,-11.034570820999832],[33.29396732600017,-11.004495137999854],[33.290960199000125,-10.975086452999918],[33.28786950700012,-10.944860533999858],[33.28032474700015,-10.913337910999886],[33.26585534600022,-10.901142272999877],[33.252109416000195,-10.903105976999896],[33.23960371900009,-10.903105976999896],[33.23169722500003,-10.897628274999818],[33.23257572500009,-10.883262226999818],[33.24141239400009,-10.865692240999849],[33.25076582900013,-10.86248830099987],[33.26120446700017,-10.86527882799983],[33.27340010600008,-10.86558888799982],[33.288127889000094,-10.856700540999896],[33.30688643400018,-10.828588561999865],[33.3190820720001,-10.818149921999833],[33.33262129800008,-10.813602396999883],[33.35783939700022,-10.80874481199987],[33.37174035700011,-10.80326710999988],[33.385537964000065,-10.800889993999832],[33.41866255700003,-10.807297870999875],[33.43401045800013,-10.80812469499989],[33.44713627200011,-10.802233580999896],[33.46532637600009,-10.784353535999841],[33.48051924600023,-10.781563008999882],[33.50098311300022,-10.769160664999902],[33.5119901940001,-10.751797382999897],[33.52826827000009,-10.711593118999872],[33.57694746900003,-10.657642923999902],[33.59027998800016,-10.64896128299985],[33.60309574400017,-10.643276874999813],[33.642266479000085,-10.615268248999897],[33.65776940900011,-10.601315612999898],[33.674202515000076,-10.57702768899982],[33.673849293000075,-10.573048058999873],[33.673522574000145,-10.569367024999863],[33.67265222200015,-10.559561054999861],[33.66557255000012,-10.54137095099982],[33.66541752200007,-10.515119323999883],[33.63818404200018,-10.511605325999838],[33.62273278800009,-10.494035339999854],[33.6031990970001,-10.449180195999872],[33.59555098500019,-10.440601907999849],[33.56764571200019,-10.416003926999863],[33.559170776000116,-10.404325052999878],[33.532919149000094,-10.342623392999826],[33.52930179900008,-10.318645527999905],[33.53560632300011,-10.262731628999816],[33.5332808840001,-10.231209004999855],[33.518966512000105,-10.214982604999847],[33.49912276200021,-10.201236673999816],[33.48051924600023,-10.177052103999841],[33.454577678000106,-10.168060403999887],[33.436490926000175,-10.153280944999878],[33.42016117300014,-10.135607604999876],[33.39918054200004,-10.117934264999873],[33.31753177900006,-10.082070820999832],[33.30409590700012,-10.063777363999861],[33.30471602300011,-10.037939147999836],[33.309987020000136,-10.012721048999879],[33.32879724100022,-9.965488789999853],[33.3584595130001,-9.919910175999858],[33.36559086100013,-9.898826191999845],[33.35918298400006,-9.870920918999857],[33.34347334800012,-9.831440123999826],[33.33696211700007,-9.823688659999915],[33.29996179200012,-9.810252786999868],[33.28776615400008,-9.803844908999835],[33.27577722100014,-9.793302916999863],[33.267198934000106,-9.781210631999883],[33.252729533000064,-9.754028828999893],[33.241774129000106,-9.74234995499991],[33.216711060000044,-9.72705373099987],[33.207254273000075,-9.712894388999828],[33.20456709800007,-9.6981149289999],[33.20782271400017,-9.688709818999854],[33.212990357000166,-9.680648294999855],[33.215780884000225,-9.66989959699984],[33.21428226700013,-9.654706725999816],[33.209838094000105,-9.641374205999796],[33.19542036900006,-9.616259460999856],[33.17542159000007,-9.602306823999868],[33.1214713950001,-9.599516296999823],[33.098320353000105,-9.588457539999807],[33.09253259300013,-9.614399108999862],[33.08922530100014,-9.643958027999886],[33.080440307000146,-9.662251484999857],[33.05832279400013,-9.654293313999801],[33.0530517990002,-9.644784850999912],[33.05077803600008,-9.632692565999832],[33.04674727400018,-9.622047219999928],[33.03574019400011,-9.616982929999864],[33.02225264500012,-9.620290221999852],[33.01119388800012,-9.627834980999806],[33.000135132000224,-9.632795917999855],[32.98690596500015,-9.62845509899988],[32.97471032700011,-9.601273294999885],[32.9923836670001,-9.529132994999884],[32.99197025500021,-9.501847839999868],[32.983081909000106,-9.497713723999851],[32.968612508000064,-9.484381204999835],[32.96189457200014,-9.48035044399984],[32.950267375000095,-9.480867206999873],[32.943601115000064,-9.485724791999885],[32.93750329600019,-9.487791849999851],[32.92778812700007,-9.479833678999796],[32.92303389500009,-9.466294453999822],[32.92086348500018,-9.407900085999856],[32.93626306200005,-9.391673684999843],[32.955279989000154,-9.382061868999827],[32.97471032700011,-9.381235046999805],[32.99228031400011,-9.391363626999862],[33.0423031010001,-9.44066294299985]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Namibia","sov_a3":"NAM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Namibia","adm0_a3":"NAM","geou_dif":0,"geounit":"Namibia","gu_a3":"NAM","su_dif":0,"subunit":"Namibia","su_a3":"NAM","brk_diff":0,"name":"Namibia","name_long":"Namibia","brk_a3":"NAM","brk_name":"Namibia","brk_group":null,"abbrev":"Nam.","postal":"NA","formal_en":"Republic of Namibia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Namibia","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":1,"mapcolor13":7,"pop_est":2108665,"gdp_md_est":13250,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"WA","iso_a2":"NA","iso_a3":"NAM","iso_n3":"516","un_a3":"516","wb_a2":"NA","wb_a3":"NAM","woe_id":23424987,"woe_id_eh":23424987,"woe_note":"Exact WOE match as country","adm0_a3_is":"NAM","adm0_a3_us":"NAM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"NAM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[13.184910523000099,-16.964183044999896],[13.198139689000072,-16.957361754999937],[13.205477743000074,-16.963046162999888],[13.21209232500007,-16.972761331999916],[13.222841023000084,-16.977928974999926],[13.245268595000084,-16.981339619999858],[13.25715417500004,-16.98164967799994],[13.26748946100011,-16.977928974999926],[13.26748946100011,-16.98537038099994],[13.293017619000068,-16.973794860999902],[13.308417195000061,-16.970177510999918],[13.315238485000094,-16.97441497799987],[13.32154300900001,-16.974931742999914],[13.345946539000096,-16.96871123499993],[13.363710978000084,-16.964183044999896],[13.382004435000056,-16.97038421599997],[13.417247762000017,-16.99374196299992],[13.43512780700007,-16.999012959999945],[13.45889896600005,-17.00180348699992],[13.479776245000096,-17.010278421999914],[13.494659058000137,-17.024024352999945],[13.507784872000116,-17.063505146999972],[13.522254273000044,-17.07694101899993],[13.530935913000093,-17.09327077199987],[13.521324097000104,-17.12189951599994],[13.60648685700005,-17.167374775999903],[13.694130086000142,-17.236621195999916],[13.790403279000117,-17.288090921999892],[13.884351033000113,-17.3385271199999],[13.896856730000138,-17.349069111999967],[13.9427454020001,-17.408186950999934],[13.95731815600007,-17.4191423539999],[13.98057255000009,-17.423586527999916],[13.992974894000042,-17.421312763999893],[14.008891236000066,-17.411494241999932],[14.017882934000113,-17.40922047899991],[14.029148396000066,-17.41046071399994],[14.047441854000056,-17.41604176899996],[14.069145956000055,-17.418625589999877],[14.085372355000061,-17.423586527999916],[14.097257935000073,-17.423586527999916],[14.10821333800007,-17.420485940999882],[14.123922973000019,-17.411597594999947],[14.130744263000082,-17.40922047899991],[14.174979288000088,-17.416248473999914],[14.197096802000118,-17.412941181999923],[14.206501913000068,-17.393097432999923],[14.207432088000104,-17.388033141999955],[14.218800903000101,-17.388136494999884],[14.219111804000077,-17.388136494999884],[14.287427206000046,-17.388136494999884],[14.543949015000065,-17.38823984699991],[14.800574178000089,-17.38834320099994],[15.057199341000114,-17.38834320099994],[15.313721151000095,-17.38844655399987],[15.559114346000086,-17.388545422999883],[15.570242961000103,-17.3885499069999],[15.826764770000095,-17.388653258999923],[16.08338993300012,-17.388653258999923],[16.339808390000087,-17.388653258999923],[16.596330200000097,-17.388756611999952],[16.852852010000106,-17.388756611999952],[17.10947717300013,-17.38885996499988],[17.278972034000105,-17.388928226999937],[17.36610233600004,-17.38896331799991],[17.622624146000135,-17.38896331799991],[17.87914595500004,-17.38906666999993],[18.000482986000094,-17.389115556999897],[18.13566776500005,-17.389170022999863],[18.392292928000074,-17.389273375999892],[18.445726359000076,-17.389273375999892],[18.453581177000018,-17.389893493999864],[18.455028117,-17.39599131299991],[18.45864546700011,-17.405293070999946],[18.465156697000083,-17.40922047899991],[18.471667928000045,-17.414284769999895],[18.488101033000106,-17.452111917999957],[18.489858032000086,-17.46244720399997],[18.492751912000074,-17.464514261999938],[18.516626424000066,-17.471335549999893],[18.550939575000086,-17.53531097399987],[18.554143514000145,-17.546369730999885],[18.567476033000077,-17.553294371999954],[18.619669230000056,-17.594842223999947],[18.622873169000115,-17.60218027699993],[18.627937459000094,-17.619853617999937],[18.633311808000144,-17.62894866899991],[18.64282027200005,-17.63804372199989],[18.66132043400006,-17.646725361999938],[18.670932251000067,-17.65313323999989],[18.72829309100007,-17.710907490999887],[18.74824019400009,-17.736332294999983],[18.761986124000117,-17.747701110999884],[18.80084680200008,-17.75658945699989],[18.89004032400001,-17.799274189999892],[19.020574992000093,-17.822321878999944],[19.105117635000056,-17.81818776399993],[19.139327433000062,-17.805268655999924],[19.16082482900009,-17.800927835999943],[19.172090292000064,-17.80123789499993],[19.201855916000028,-17.80712900799992],[19.246607706000106,-17.804028421999888],[19.26242069500009,-17.813950296999877],[19.421274048000043,-17.859425556999934],[19.59283980300006,-17.857255146999947],[19.64978723200005,-17.84495615599991],[19.67262821500014,-17.84268239299989],[19.69319543500012,-17.847746683999958],[19.70218713400007,-17.865730081999857],[19.711282186000062,-17.87296478199991],[19.73205611200009,-17.88205983499998],[19.75520715300007,-17.889087829999895],[19.771020141000093,-17.89032806399993],[19.775981079000132,-17.885057067999895],[19.787659953000087,-17.86645355199994],[19.793964477000113,-17.862319437999915],[19.95199100700006,-17.862319437999915],[19.989508097000055,-17.882783304999887],[20.024544719000062,-17.89456553099997],[20.034259888000093,-17.89590911899994],[20.09255090300013,-17.89032806399993],[20.119939413000083,-17.890741474999942],[20.132961873000113,-17.88877777099991],[20.147121216000073,-17.882783304999887],[20.1545626220001,-17.89032806399993],[20.169238729000085,-17.878132425999922],[20.19311324000006,-17.872137959999886],[20.219881633000053,-17.873378193999926],[20.24344608500013,-17.882783304999887],[20.278172648000062,-17.8548780309999],[20.28892134600011,-17.86159596699993],[20.302770630000055,-17.860769143999903],[20.33615360500005,-17.8548780309999],[20.347729126000075,-17.858908792999895],[20.386796509000078,-17.89032806399993],[20.412634725000117,-17.884126891999937],[20.437542765000074,-17.894462177999856],[20.460073690000087,-17.91368581099988],[20.479504028000093,-17.934356383999898],[20.48952925600011,-17.942107848999896],[20.52394576000006,-17.958540953999957],[20.552884562000116,-17.979108174999865],[20.565493611000136,-17.985205993999912],[20.590711710000107,-17.978798115999965],[20.630089152000096,-17.97693776499996],[20.66626265500011,-17.98024505599996],[20.68217899600006,-17.98861663799994],[20.68962040200006,-17.996988219999906],[20.70615686000008,-18.003809508999964],[20.722486613000086,-18.006496682999895],[20.729928020000017,-18.00236256899997],[20.73747277800007,-17.993474221999858],[20.754422648000087,-17.997918395999957],[20.78460168500007,-18.012594501999942],[20.806202433000035,-18.03140472399987],[20.83193729600012,-18.029337666999908],[20.861599569000106,-18.018795673999932],[20.894465780000132,-18.012594501999942],[20.90831506300009,-17.98613616899986],[20.986454526000074,-17.965770962999898],[21.000712524000107,-17.962054951999917],[21.093109986000087,-17.93807708699991],[21.10943973800005,-17.945001728999983],[21.126079549000053,-17.941074319999913],[21.143132772000087,-17.933736266999926],[21.161322876000042,-17.93063568099997],[21.175792277000056,-17.933219501999886],[21.21661665800005,-17.93063568099997],[21.23273970600013,-17.934459736999926],[21.27811161300008,-17.958540953999957],[21.335059041000136,-17.97797129299994],[21.364824666000118,-17.992027281999867],[21.38115441900007,-18.012594501999942],[21.386838826000115,-18.01445485399995],[21.405545695000082,-18.009287210999943],[21.477582642000073,-17.996058044999955],[21.72852339700006,-17.94985931399991],[21.979464152000048,-17.90376393599989],[22.230508260000136,-17.857565205999933],[22.481449015000123,-17.81136647499997],[22.68567427500011,-17.77281585599991],[22.889796183000072,-17.734058531999963],[23.09391809100012,-17.695404560999876],[23.298039998000093,-17.656853942999902],[23.381652466000105,-17.64114430699992],[23.422373494000084,-17.63349619499985],[23.4574101150001,-17.62677825899992],[23.476220337000115,-17.62636484799991],[23.505985962000096,-17.620473733999916],[23.548774048000038,-17.6119988],[23.591768840000096,-17.6035238649999],[23.634556925000112,-17.595048929999905],[23.677241659000117,-17.586677347999924],[23.720029744000044,-17.57820241299993],[23.762817831000092,-17.56972747799992],[23.805605916000104,-17.561355895999935],[23.848497355000063,-17.552880960999943],[23.891388794000108,-17.544406025999933],[23.934176880000052,-17.536034443999966],[23.976964965000064,-17.527559508999957],[24.01964969900007,-17.519084573999862],[24.06254113700001,-17.510712991999895],[24.105329224000055,-17.502238056999886],[24.14811730900007,-17.49376312199989],[24.19090539600009,-17.48528818799988],[24.220464314000107,-17.479500426999905],[24.238757771000078,-17.4781568399999],[24.257361287000066,-17.480844013999967],[24.310277954000128,-17.48260101299985],[24.32133671100013,-17.488698831999912],[24.32939823400011,-17.485081481999927],[24.371256144000085,-17.473712665999923],[24.3889294840001,-17.471335549999893],[24.4070162350001,-17.474539489999955],[24.449287557000105,-17.489112242999923],[24.47925988800006,-17.494486592999877],[24.498173462000068,-17.503478291999926],[24.523598267000096,-17.507819111999904],[24.531659790000077,-17.51340016599991],[24.537860962000053,-17.520324808999902],[24.54654260300012,-17.52652597999989],[24.56245894400004,-17.532210387999925],[24.571243937000133,-17.533450622999865],[24.580752401000012,-17.53283050499989],[24.591294393000084,-17.528386331999897],[24.606487264000094,-17.515157165999895],[24.61744266800008,-17.509162698999955],[24.622817017000045,-17.502341409999914],[24.629741659000047,-17.49552012099987],[24.63945682800008,-17.49241953499991],[24.68441532400007,-17.49241953499991],[24.769784790000074,-17.50544199599994],[24.77505578600011,-17.507612405999847],[24.78001672300007,-17.512263284999904],[24.786838013000104,-17.51691416399997],[24.797380005000065,-17.519084573999862],[24.829522745000105,-17.517740986999897],[24.898252400000075,-17.531073506999917],[24.924917439000126,-17.54295908599994],[24.937629842000092,-17.560735778999884],[24.95799035600001,-17.551744078999928],[24.969987330000038,-17.559962478999935],[24.971116170000073,-17.560735778999884],[24.982588338000085,-17.576548766999878],[24.998504680000107,-17.58802093499989],[25.00801314200009,-17.58853769999993],[25.026720011000094,-17.582749938999953],[25.036951945000084,-17.58119964599993],[25.04056929500007,-17.58450693699993],[25.033851359000035,-17.601560159999877],[25.033851359000035,-17.608484801999865],[25.0400525310001,-17.616132913999934],[25.04532352700005,-17.619956969999876],[25.052558227000105,-17.62140390999987],[25.06423710100009,-17.621507262999984],[25.06702762800003,-17.625331318999926],[25.085217732000075,-17.640937601999966],[25.088525024000088,-17.642694600999945],[25.096896606000143,-17.67215016699994],[25.098756958000052,-17.67680104599991],[25.107955363000144,-17.678868102999967],[25.1150867100001,-17.684242451999935],[25.120047648000135,-17.691063740999894],[25.122631469000055,-17.697885029999938],[25.13141646300005,-17.686516214999955],[25.13854781100008,-17.686102803999944],[25.15332727100008,-17.700985615999883],[25.15642785600005,-17.706670023999934],[25.155290975000128,-17.719382425999882],[25.15684126800005,-17.725170185999954],[25.161182088000118,-17.72940765299991],[25.172447551000086,-17.735092060999946],[25.177821899000037,-17.73881276399996],[25.190741007000067,-17.755349222999953],[25.198182414000087,-17.758449808999895],[25.215132283000088,-17.75927663099992],[25.22887821500012,-17.762480570999898],[25.242417440000082,-17.770335387999918],[25.253476196000094,-17.781497497999865],[25.259780721000112,-17.794106546999984],[25.19415165200007,-17.782324319999887],[25.153947387000073,-17.781807555999947],[25.120874471000064,-17.813536884999877],[25.087904907000105,-17.826766051999865],[25.05700240100012,-17.82769622799991],[25.047493937000127,-17.80712900799992],[25.01969201600008,-17.823768818999937],[25.007082967000144,-17.825732522999886],[24.998504680000107,-17.813950296999877],[24.98331180800008,-17.82046152699985],[24.975146932000087,-17.81632741299992],[24.968635702000114,-17.807645771999958],[24.95809370900014,-17.800927835999943],[24.964294881000114,-17.786665140999958],[24.95333947700004,-17.788422138999934],[24.94858524600005,-17.79327972399996],[24.945174601000133,-17.79999765999989],[24.937629842000092,-17.80712900799992],[24.93111861200012,-17.81053965299995],[24.8574280200001,-17.833587340999912],[24.838101033000044,-17.835034280999906],[24.820841105000056,-17.839271748999863],[24.797380005000065,-17.858081969999958],[24.776916138000104,-17.862319437999915],[24.770714966000128,-17.8655233759999],[24.76451379300005,-17.87968271899993],[24.756038859000057,-17.882783304999887],[24.746840454000047,-17.884230244999884],[24.738158814000087,-17.8876408899999],[24.73071740700007,-17.891878356999953],[24.725343058000107,-17.89590911899994],[24.698471314000102,-17.92887868299991],[24.66405480900005,-17.94985931399991],[24.64917199700011,-17.962778421999914],[24.598632446000064,-18.02075937899987],[24.59501509600008,-18.02282643599993],[24.591811157000105,-18.02840749099994],[24.577755168000095,-18.044427184999904],[24.574551229000118,-18.05042165099992],[24.56442264800009,-18.05279876699997],[24.518430623000086,-18.057346292999906],[24.505614868000094,-18.060343525999926],[24.471508422000024,-18.029957783999876],[24.469751424000066,-18.01445485399995],[24.465100545000098,-18.00866709399989],[24.458485962000083,-18.005773213999902],[24.451044556000085,-17.998951924999943],[24.433887980000122,-17.967222594999924],[24.42158898900007,-17.95647389699991],[24.399471476000144,-17.952339781999882],[24.365261678000078,-17.950789489999863],[24.350585571000064,-17.956060484999895],[24.334255819000134,-17.971563414999906],[24.30583378100002,-18.019415791999904],[24.29642867000007,-18.026237080999863],[24.28743697100012,-18.024480081999883],[24.270073689000096,-18.01579844199992],[24.259221639000142,-18.012594501999942],[24.238241007000056,-18.009907327999926],[24.21829390400012,-18.012594501999942],[24.18305057800006,-18.029441018999933],[24.135094848000023,-18.08545827199994],[24.101608521000117,-18.108816019999892],[24.065124959000116,-18.115223896999936],[24.05696008300009,-18.119047953999882],[24.02812463400008,-18.145816344999943],[24.020269816000024,-18.151604105999922],[23.991744426000082,-18.163386331999916],[23.979652141000088,-18.171861266999926],[23.974897909000106,-18.17702891099992],[23.97117720600008,-18.183850198999977],[23.966733032000093,-18.180646260999904],[23.961978800000082,-18.177855732999944],[23.956604451000118,-18.176615498999922],[23.950816691000057,-18.1776490269999],[23.915986776000096,-18.201213480999893],[23.91288619000005,-18.235733336999886],[23.89696984900013,-18.250202737999913],[23.86751428300002,-18.269426370999938],[23.855215291000093,-18.280071715999924],[23.83723189200009,-18.305806578999917],[23.825553019000036,-18.317072041999978],[23.809843384000146,-18.321722920999946],[23.715792277000105,-18.419081318999897],[23.700909464000063,-18.42796966599991],[23.6801355390001,-18.431483662999966],[23.656467733000085,-18.45825205499993],[23.649853149000077,-18.46341969799994],[23.64540897600008,-18.466003518999855],[23.609855591000013,-18.477682392999924],[23.592182251000107,-18.47819915699995],[23.57915979000009,-18.467863870999864],[23.571304972000036,-18.426005960999888],[23.555491984000042,-18.383114522999918],[23.546603637000118,-18.36947194399991],[23.560762980000078,-18.34849131299991],[23.551461222000057,-18.32751068099992],[23.518801717000088,-18.293714293999926],[23.52727665200007,-18.27769459999989],[23.521695597000072,-18.2681861369999],[23.511256958000047,-18.26033131899996],[23.5056759040001,-18.24937591599989],[23.5015417890001,-18.23749033599995],[23.49130985500011,-18.233149515999884],[23.477770630000123,-18.230875751999857],[23.464128052000035,-18.2255014039999],[23.45875370300007,-18.217646585999958],[23.444284302000113,-18.200696715999868],[23.4294014890001,-18.188501077999945],[23.41885949700011,-18.198422952999934],[23.41028120900009,-18.19738942499987],[23.40128951000014,-18.194288838999924],[23.395811808000076,-18.191394958999933],[23.394468221000096,-18.186227314999925],[23.396328573000087,-18.169380797999864],[23.395811808000076,-18.163386331999916],[23.389713989000114,-18.15325775099997],[23.359534952000104,-18.119151305999907],[23.34806278500008,-18.09444997099989],[23.33659061700007,-18.079360453999897],[23.333800090000096,-18.07398610399993],[23.332559855000085,-18.067061461999856],[23.333800090000096,-18.043290303999896],[23.330596150000133,-18.039983011999894],[23.32325809700006,-18.03915618899987],[23.315920044000052,-18.037089131999906],[23.312716105000078,-18.029957783999876],[23.312819458,-18.016521911999916],[23.311475870000038,-18.009803974999897],[23.30568811100008,-18.005463154999916],[23.292769002000057,-17.998951924999943],[23.25494185400009,-17.99740163199992],[23.185798787000095,-18.003086038999868],[23.09960249900007,-18.010217386999912],[22.981366822000066,-18.020035908999972],[22.894033650000036,-18.03615895599995],[22.8096977130001,-18.051868590999916],[22.72525842300007,-18.06747487399987],[22.640922485000146,-18.083184508999935],[22.556483195000112,-18.098790791999875],[22.472147257000103,-18.11450042699994],[22.387811320000083,-18.130210062999907],[22.303475383000148,-18.145816344999943],[22.219036092000124,-18.16152598099991],[22.13459680100007,-18.17723561599989],[22.05026086500007,-18.19284189899993],[21.966028280000074,-18.208551533999895],[21.88148563700011,-18.224157816999934],[21.7971496990001,-18.2398674519999],[21.712710409000067,-18.255577087999963],[21.62847782400007,-18.271183369999918],[21.544038534000038,-18.286789652999857],[21.52698531100009,-18.289993590999927],[21.509828735000042,-18.2931975299999],[21.492878865000108,-18.29640146899996],[21.47572229000005,-18.299502054999905],[21.456808715000104,-18.300225524999902],[21.437895142000087,-18.301052347999928],[21.3908695880001,-18.302912698999933],[21.34394738800006,-18.30477305099994],[21.29681848200005,-18.306633401999946],[21.2498962810001,-18.30849375399994],[21.193465617000072,-18.310767516999874],[21.13693160000011,-18.31293792699995],[21.0806042880001,-18.31521169],[21.02417362500006,-18.317382099999875],[20.993436476000085,-18.318611585999903],[20.975081014000125,-18.319345804999898],[20.975081014000125,-18.347767841999925],[20.975081014000125,-18.388592223999908],[20.975081014000125,-18.429313252999876],[20.975081014000125,-18.47013763399987],[20.975081014000125,-18.511065368999894],[20.975081014000125,-18.551993102999916],[20.975081014000125,-18.592714130999877],[20.975081014000125,-18.633538512999877],[20.975081014000125,-18.67436289499996],[20.975081014000125,-18.715187275999952],[20.975081014000125,-18.756011657999935],[20.975081014000125,-18.796836038999928],[20.975081014000125,-18.837660420999924],[20.975081014000125,-18.87838144899999],[20.975081014000125,-18.919205830999886],[20.975081014000125,-18.96003021199988],[20.975081014000125,-19.000957946999904],[20.975494425000136,-19.12591155999985],[20.97560905200004,-19.172106009999908],[20.975804484000037,-19.250865172999895],[20.97632124800006,-19.37581878699994],[20.976734660000087,-19.50087575299993],[20.97704471800006,-19.625829365999977],[20.977561483000102,-19.750782978999936],[20.977974894000113,-19.875839944999907],[20.9782849530001,-20.00079355899996],[20.97869836400011,-20.125850524999933],[20.979111775000035,-20.25080413799989],[20.979360470000103,-20.35102810699989],[20.979421834000107,-20.375757750999938],[20.97983524600002,-20.5007113649999],[20.980248657000033,-20.62576832999987],[20.980662068000044,-20.75072194399992],[20.981075480000072,-20.87577890999991],[20.98148632900012,-20.999958183999922],[20.981488891000083,-21.000732522999954],[20.981592244000097,-21.058403421999927],[20.981902303000084,-21.116074319999896],[20.982109009000055,-21.173641865999926],[20.98221236200007,-21.23120941199997],[20.98241906700011,-21.28888030999994],[20.98262577300008,-21.34644785499998],[20.982832479000137,-21.404118753999867],[20.98303918400009,-21.461789652999926],[20.98314253800004,-21.519357197999867],[20.98345259600009,-21.577028095999932],[20.98365930200015,-21.63469899499991],[20.983866007000103,-21.692369892999878],[20.984072713000074,-21.750040791999936],[20.984279418000114,-21.807608337999895],[20.984486125000075,-21.86517588299992],[20.98469283100013,-21.922846780999905],[20.98479618300007,-21.963981220999884],[20.97198042800008,-22.00067148899994],[20.914722941000036,-22.00067148899994],[20.68062870300011,-22.00067148899994],[20.446534465000127,-22.00067148899994],[20.212440226000126,-22.00067148899994],[19.978345988000115,-22.00067148899994],[19.978449340000054,-22.086764424999924],[19.978656046000083,-22.237246195999916],[19.97886275300004,-22.38762461399997],[19.97896610500007,-22.53810638399996],[19.979172811000126,-22.688588154999948],[19.97927616400005,-22.86067067499991],[19.979586222000137,-23.03254648799991],[19.97979292800011,-23.20452565499994],[19.979855443000133,-23.30855112099988],[19.979896281000034,-23.37650482199996],[19.98010298700009,-23.548587340999916],[19.980309692000045,-23.720566507999944],[19.980482728000055,-23.86448870199987],[19.980516398000105,-23.89249399799986],[19.98072310400005,-24.064473164999896],[19.980826456000074,-24.23655568399994],[19.981136516000078,-24.408431497999942],[19.981343221000113,-24.580410664999874],[19.981446574000046,-24.75249318399993],[19.981756632000042,-24.764998880999922],[19.981756632000042,-24.821016132999944],[19.981756632000042,-24.87713673899989],[19.981756632000042,-24.93325734399994],[19.981859985000057,-24.989274596999877],[19.9819633380001,-25.045395201999906],[19.9819633380001,-25.101412455999935],[19.9819633380001,-25.157429707999952],[19.9819633380001,-25.213550313999903],[19.9819633380001,-25.26967091899986],[19.9819633380001,-25.32568817199997],[19.9819633380001,-25.38170542399989],[19.982066691000114,-25.4378260299999],[19.982066691000114,-25.493843281999958],[19.982066691000114,-25.54996388799991],[19.982066691000114,-25.60608449299987],[19.982066691000114,-25.618988071999922],[19.982066691000114,-25.662101745999877],[19.982066691000114,-25.718118997999895],[19.982066691000114,-25.774136250999916],[19.982066691000114,-25.830256855999963],[19.982170044000043,-25.886274108999885],[19.982273396000068,-25.94239471399993],[19.982273396000068,-25.998515319999882],[19.982273396000068,-26.0545325719999],[19.982273396000068,-26.11054982499992],[19.982273396000068,-26.166670429999968],[19.9823767500001,-26.22268768299989],[19.9823767500001,-26.278808287999937],[19.9823767500001,-26.334825541999862],[19.9823767500001,-26.390946146999905],[19.9823767500001,-26.446963399999927],[19.9823767500001,-26.503084004999977],[19.982480103000025,-26.5591012579999],[19.98258345600007,-26.615118509999917],[19.98258345600007,-26.671239115999867],[19.98258345600007,-26.727256367999882],[19.98258345600007,-26.783376973999932],[19.98258345600007,-26.839394225999868],[19.982686808000096,-26.895514831999904],[19.982686808000096,-26.95153208399992],[19.982686808000096,-27.007652689999873],[19.982686808000096,-27.06366994199989],[19.982686808000096,-27.11968719399991],[19.982686808000096,-27.175807799999873],[19.98279016100011,-27.23192840599991],[19.982893514000036,-27.287945657999924],[19.982893514000036,-27.344066262999974],[19.982893514000036,-27.400186868999924],[19.982893514000036,-27.456100768999917],[19.982893514000036,-27.51211802199994],[19.982893514000036,-27.568238626999886],[19.982893514000036,-27.624359232999936],[19.982996867000082,-27.680376484999954],[19.982996867000082,-27.736497090999904],[19.982996867000082,-27.79261769599995],[19.982996867000082,-27.848531595999944],[19.982996867000082,-27.90465220099989],[19.982996867000082,-27.96077280699994],[19.982996867000082,-28.01679005899996],[19.982996867000082,-28.07291066499991],[19.983100219000107,-28.129031269999956],[19.983203572000036,-28.185048522999878],[19.983203572000036,-28.241065774999896],[19.983203572000036,-28.29718638099986],[19.983203572000036,-28.35320363299988],[19.983203572000036,-28.392684427999892],[19.981653280000103,-28.42234669999995],[19.950544067000067,-28.429271340999932],[19.940208781000138,-28.430201516999883],[19.90785933400005,-28.426480813999973],[19.89669722500011,-28.427721048999913],[19.870342245000074,-28.44084686299989],[19.825590454000093,-28.47671030699992],[19.796341593000047,-28.48415171299986],[19.748075805000042,-28.487148945999962],[19.725338175000076,-28.49417694099988],[19.70559777800011,-28.508026224999938],[19.68833785000001,-28.515984394999904],[19.58798221900014,-28.522702331999923],[19.579197225000144,-28.525182799999893],[19.568758586000115,-28.53117726599993],[19.56235070800008,-28.538101908999902],[19.556459594000074,-28.546163430999894],[19.547571248000082,-28.555878600999932],[19.542196900000107,-28.564043476999956],[19.533721965000097,-28.582440286999955],[19.52741743900009,-28.58595428399991],[19.517805623000072,-28.589364928999924],[19.51170780400011,-28.59804656899989],[19.482872355000097,-28.67824839299989],[19.47243371600007,-28.69271779399992],[19.45507043400005,-28.70522348999991],[19.43460656700009,-28.713491718999958],[19.353474569000124,-28.73188852899996],[19.339005168000085,-28.737469583999967],[19.328359822000095,-28.73581593899992],[19.304485310000103,-28.718659361999865],[19.29001590900009,-28.71969289099985],[19.277303508000042,-28.729408059999884],[19.26593469200014,-28.74263722699989],[19.248571411000114,-28.771576028999846],[19.244954061000044,-28.792453307999924],[19.251568645000134,-28.814260762999936],[19.288879028000082,-28.871001484999862],[19.288362264000057,-28.883093769999846],[19.27658003700014,-28.88950164799989],[19.243713826000118,-28.891878763999927],[19.237616007000042,-28.89559946699994],[19.226660604000074,-28.91151580799996],[19.21849572700006,-28.918853860999956],[19.16154829900009,-28.945415547999882],[19.120207154000042,-28.957507832999866],[19.081656535000064,-28.95936818399987],[19.064706665000074,-28.939834492999868],[19.060055786000106,-28.935700377999936],[19.048997030000095,-28.932393086999934],[19.013960408000088,-28.928465676999878],[19.00693241400006,-28.92629526799989],[18.996390422000104,-28.91554656999996],[18.971172323000047,-28.880509948999944],[18.95453251100014,-28.866660664999884],[18.74565637200007,-28.8398922729999],[18.55393680800009,-28.864696960999932],[18.517659953000134,-28.88226694699992],[18.496162557000105,-28.888261412999938],[18.491615031000062,-28.886297708999916],[18.479419393000057,-28.876272480999884],[18.47497521900004,-28.873998717999964],[18.46939416500004,-28.87492889399992],[18.460712525000076,-28.879889830999968],[18.45523482200008,-28.881440123999894],[18.43570113100006,-28.884230651999943],[18.42474572800009,-28.887227884999955],[18.416994262000088,-28.89167205799988],[18.39756392400011,-28.898906758999942],[18.37306929500005,-28.89518605599993],[18.331004679000017,-28.881440123999894],[18.30868046100005,-28.879993183999897],[18.220727173000057,-28.891258646999873],[18.185070434000068,-28.90221405099993],[18.166466919000097,-28.90190399099995],[18.082441040000077,-28.8759624229999],[18.04409712700007,-28.858392434999928],[17.983325643000057,-28.813743997999904],[17.94952925600006,-28.794727070999926],[17.913252401000108,-28.78129119799989],[17.74633752400007,-28.748631692999908],[17.71409143000011,-28.751112161999885],[17.703239379000138,-28.755556334999895],[17.68339563000006,-28.767545267999946],[17.673783813000053,-28.771576028999846],[17.660968058000066,-28.772299499999928],[17.628721965000096,-28.764134622999915],[17.607121216000053,-28.75565968799992],[17.6025736900001,-28.73540252699992],[17.60340051300011,-28.710804544999935],[17.59802616300007,-28.689617206999884],[17.582936646000064,-28.680212097999913],[17.565986776000074,-28.68351938899991],[17.546969849000078,-28.691374206999853],[17.526609334000057,-28.69581837999995],[17.485164836000106,-28.700159199999934],[17.440929810000085,-28.70956431099989],[17.40361942500004,-28.70429331499987],[17.40175907300005,-28.67421763099989],[17.414264771000116,-28.632669778999897],[17.420569295000064,-28.593395690999927],[17.409613892000067,-28.5713815299999],[17.37302697800004,-28.55939259799989],[17.365275512000036,-28.54254608099991],[17.359487752000064,-28.519808451999932],[17.332409302000087,-28.488595885999956],[17.324244425000074,-28.470509134999944],[17.328171834000045,-28.45614308699993],[17.341194295000093,-28.44281056699991],[17.358557577000084,-28.432785338999892],[17.37540409400009,-28.42896128299995],[17.391320435000097,-28.418832702999907],[17.399692017000064,-28.395268248999898],[17.40206913300011,-28.36777638699992],[17.400002075000145,-28.346382344999906],[17.394834432000067,-28.335116881999866],[17.378918090000127,-28.31630666099994],[17.37199344900006,-28.30607472699995],[17.368066040000087,-28.293775735999915],[17.367032512000094,-28.283543802999944],[17.364138631000117,-28.273311868999954],[17.35504357900004,-28.261012877999917],[17.351219523000108,-28.251401061999914],[17.349772583000117,-28.238688658999944],[17.345741821000104,-28.22762990299995],[17.334476359000064,-28.222875670999954],[17.308638143000053,-28.22411590499989],[17.24517948400009,-28.23744842499991],[17.213140096000075,-28.232074075999947],[17.191952758000127,-28.20881968199994],[17.18709517400012,-28.16200083399991],[17.18978234900004,-28.139366556999875],[17.189989054000108,-28.116835631999948],[17.180894002000116,-28.09947235099993],[17.155779256000102,-28.09254770899994],[17.136348917000106,-28.084692891999904],[17.123223103000072,-28.066502787999877],[17.111750936000135,-28.046038919999916],[17.097798299000146,-28.03115610699996],[17.086532837000078,-28.027021992999934],[17.076404256000046,-28.02681528699989],[17.056663859000082,-28.03115610699996],[17.0453983970001,-28.036323750999966],[17.012015421000058,-28.058337910999853],[16.985350382000092,-28.05224009199989],[16.97377486200014,-28.055030618999947],[16.959512167000067,-28.06856984399992],[16.9475232340001,-28.072703958999867],[16.937498006000084,-28.0710503129999],[16.927472778000066,-28.060198261999854],[16.919617961000142,-28.058337910999853],[16.913520142000067,-28.062678730999934],[16.896466919000147,-28.079938659999925],[16.892952921000102,-28.08262583399994],[16.885511515000076,-28.16200083399991],[16.878173462000063,-28.172026061999944],[16.87383264200008,-28.171509297999904],[16.8686649980001,-28.16789194799992],[16.852025188000084,-28.16830535899993],[16.847787720000014,-28.165411478999943],[16.843756958000114,-28.163861184999913],[16.837659139000067,-28.168202005999902],[16.83569543400003,-28.17419647199993],[16.838382609000064,-28.179467467999956],[16.855952596000122,-28.199414570999892],[16.85636600700013,-28.20664927199995],[16.841069783000076,-28.209853210999924],[16.819779094000097,-28.20974985699989],[16.81430139100013,-28.21347056099991],[16.81027063000002,-28.222875670999954],[16.813267863000135,-28.229903665999867],[16.82081262200009,-28.240032246999917],[16.826600382000063,-28.251917825999936],[16.824636678000047,-28.264526875999877],[16.81523156700007,-28.270831399999892],[16.805102987000108,-28.267730814999936],[16.79518111100012,-28.261219583999974],[16.78649947100007,-28.25760223399989],[16.76872277800004,-28.2653536989999],[16.764381958000058,-28.28323374399986],[16.76841271900014,-28.30369761099992],[16.775544067000084,-28.3190971879999],[16.79683475800007,-28.347829284999904],[16.803862753000086,-28.366122741999888],[16.7932174070001,-28.374287617999897],[16.778541301000104,-28.38296925899995],[16.77337365700009,-28.402916361999882],[16.77213342300007,-28.42575734499988],[16.769342895000108,-28.442603861999956],[16.758387492000026,-28.459657083999986],[16.740404093000052,-28.480947773999972],[16.720456990000116,-28.496037292999887],[16.7038171800001,-28.494487],[16.699683065000073,-28.48518524199993],[16.696789185000085,-28.472472838999877],[16.69234501100007,-28.46110402399998],[16.68345666500008,-28.456246439999873],[16.673121378000076,-28.459760436999915],[16.59736372800009,-28.52621632899988],[16.559123169000088,-28.537068379999923],[16.531527954000097,-28.549677428999942],[16.50537967900007,-28.56538706399992],[16.487071160000113,-28.5729305964999],[16.46851647200009,-28.585137627999927],[16.45850670700011,-28.600518487999878],[16.445811394000145,-28.610528252999956],[16.419444207000055,-28.60702890399996],[16.40788821700005,-28.600518487999878],[16.346853061000072,-28.55608489399995],[16.315928582000108,-28.524346612999906],[16.301036004000053,-28.5044898419999],[16.193369988000082,-28.40878671699994],[16.175791863000143,-28.402113539999885],[16.16797936300014,-28.395765882999868],[16.107676629000107,-28.323337497999916],[16.043630405000044,-28.25709400799994],[15.911143425000091,-28.17131926899989],[15.884287957000112,-28.147637627999885],[15.833181186000045,-28.08928801899988],[15.761485222000116,-28.03834400799988],[15.74781334700009,-28.024590752999956],[15.716807488000057,-27.980401299999883],[15.6842554050001,-27.94988372199994],[15.678884311000045,-27.94280364399988],[15.677989129000137,-27.931247653999947],[15.68458092500012,-27.910821221999882],[15.685801629000137,-27.901299737999892],[15.673024936000102,-27.869886976999865],[15.646006707000138,-27.83660247199995],[15.546234571000127,-27.747816664999903],[15.533539259000092,-27.7301571589999],[15.528656446000097,-27.70614999799994],[15.529063347000116,-27.654229424999954],[15.52686608200011,-27.64617278399993],[15.520681186000045,-27.633721612999903],[15.425059441000087,-27.496514580999957],[15.408946160000113,-27.46453215899996],[15.39682050900012,-27.448663018999937],[15.380381707000112,-27.44198984199997],[15.371755405000014,-27.43303801899995],[15.342458530000103,-27.3805477839999],[15.301605665000066,-27.333103122999972],[15.295258009000122,-27.32244231599995],[15.281748894000144,-27.243340752999956],[15.276215040000123,-27.233575127999913],[15.269541863000084,-27.22633228999989],[15.263682488000114,-27.218357028999932],[15.261241082000081,-27.20574309699995],[15.268077019000117,-27.164808851999922],[15.254161004000137,-27.10019296699997],[15.261241082000081,-27.085625908999944],[15.241221550000118,-27.048760674999883],[15.235362175000091,-27.02947356599995],[15.233246290000066,-27.006931247999958],[15.234222852000045,-26.96542734199997],[15.228526238000056,-26.945570570999877],[15.21273847700013,-26.927992445999934],[15.205739780000044,-26.9255510399999],[15.187510613000143,-26.9242489559999],[15.178558790000126,-26.92115650799991],[15.176605665000096,-26.916761976999936],[15.169688347000088,-26.906182549999883],[15.16236412900008,-26.897067966999895],[15.158864780000101,-26.897067966999895],[15.155935092000078,-26.875095309999963],[15.148936394000087,-26.856377862999906],[15.116872592000105,-26.796156507999935],[15.111664259000122,-26.779229424999954],[15.116221550000148,-26.75204843499995],[15.105723504000082,-26.73235442499991],[15.091563347000147,-26.712172132999882],[15.083018425000146,-26.695245049999894],[15.08082116000014,-26.672133070999948],[15.08350670700011,-26.65211353999989],[15.091807488000113,-26.637953382999868],[15.106618686000077,-26.6325822899999],[15.11695397200009,-26.630303643999923],[15.127126498000054,-26.62672291499986],[15.1346134770001,-26.62712981599995],[15.13770592500009,-26.636651299999954],[15.13770592500009,-26.6748999979999],[15.144541863000114,-26.6748999979999],[15.148448113000086,-26.655043226999904],[15.168142123000052,-26.602797132999896],[15.168711785000113,-26.592217705999943],[15.16228274800011,-26.579034112999892],[15.141937696000099,-26.517998955999914],[15.128754102000073,-26.4576148419999],[15.105642123000107,-26.420586846999953],[15.07252037900008,-26.389743747999898],[15.03467858200011,-26.366306247999916],[14.975271030000073,-26.344170830999943],[14.966319207000138,-26.33521900799991],[14.958832227000071,-26.257012627999913],[14.96265709700009,-26.18132903399993],[14.942556186000047,-26.153903903999975],[14.939138217000048,-26.14714934699994],[14.943125847000116,-26.135349216999966],[14.949066602000132,-26.135023695999944],[14.956879102000128,-26.137627862999935],[14.966319207000138,-26.133558851999894],[14.979828321000127,-26.101657809999963],[14.979014519000117,-26.058770440999893],[14.968272332000081,-26.015801690999936],[14.952647332000112,-25.982679945999905],[14.907725457000112,-25.915297132999896],[14.902110222000116,-25.882500908999887],[14.918630405000071,-25.84547291499986],[14.91114342500012,-25.84547291499986],[14.859873894000089,-25.790297132999925],[14.842784050000118,-25.763604424999897],[14.840342644000089,-25.75172291499986],[14.840342644000089,-25.7433407529999],[14.842784050000118,-25.729424737999906],[14.842784050000118,-25.65032317499991],[14.846934441000085,-25.629815362999963],[14.876963738000114,-25.578057549999937],[14.879730665000096,-25.561455987999892],[14.879567905000043,-25.538669528999947],[14.875336134000094,-25.51848723799992],[14.853282097000116,-25.49871184699991],[14.84701582100007,-25.473321221999882],[14.842784050000118,-25.427829684999907],[14.818044467000078,-25.366957289999984],[14.812510613000144,-25.320082289999945],[14.802419467000076,-25.282891533999944],[14.801280144000144,-25.262790622999898],[14.83228600400008,-25.188164971999882],[14.829356316000144,-25.176446221999882],[14.849619988000143,-25.105075778999904],[14.853282097000116,-25.06422291499994],[14.843272332000112,-25.026055596999896],[14.829437696000126,-25.00009531],[14.808767123000111,-24.961114190999922],[14.796153191000117,-24.921970309999963],[14.792979363000057,-24.841892184999907],[14.780772332000083,-24.80339934699991],[14.72348066500004,-24.70354583099993],[14.69947350400011,-24.673028252999885],[14.650157097000116,-24.62883879999991],[14.636078321000069,-24.59889088299994],[14.601898634000094,-24.562432549999883],[14.59587649800008,-24.53720468499992],[14.599619988000114,-24.52654387799988],[14.613780144000117,-24.511651299999926],[14.61695397200009,-24.505791924999897],[14.61695397200009,-24.464776299999883],[14.612315300000065,-24.445733330999886],[14.59009850400011,-24.408379815999936],[14.568125847000088,-24.357679945999877],[14.513926629000137,-24.26148853999993],[14.493174675000148,-24.192315362999935],[14.473643425000146,-24.15911223799992],[14.466807488000143,-24.113213799999937],[14.45923912900011,-24.098321221999893],[14.464203321000042,-24.078220309999935],[14.464121941000057,-24.044691664999988],[14.459646030000101,-24.010430596999925],[14.451914910000083,-23.988457940999904],[14.45923912900011,-23.974541924999926],[14.465830925000063,-23.947198174999954],[14.472911004000139,-23.933851820999863],[14.479177280000073,-23.931084893999895],[14.488291863000086,-23.929620049999926],[14.496592644000145,-23.92595794099988],[14.50025475400011,-23.916436455999886],[14.513926629000137,-23.892266533999972],[14.50603274800008,-23.8800595029999],[14.507090691000114,-23.823907158999898],[14.489512566000085,-23.776055596999967],[14.48658287900008,-23.75847747199994],[14.50025475400011,-23.61443450299997],[14.495290561000047,-23.578545830999886],[14.48406009200005,-23.551039320999934],[14.446950717000048,-23.46038176899992],[14.434336785000054,-23.415215752999885],[14.435069207000083,-23.40553150799991],[14.443125847000118,-23.39666106599988],[14.4674585300001,-23.356052341999952],[14.479746941000146,-23.344821872999958],[14.479502800000118,-23.365817966999913],[14.484385613000084,-23.374932549999897],[14.49040774800008,-23.3697242169999],[14.493418816000087,-23.34783294099988],[14.49195397200012,-23.309177341999913],[14.473480665000096,-23.192803643999937],[14.4627384770001,-23.15740325299994],[14.445567254000052,-23.131280205999886],[14.43132571700005,-23.10328541499996],[14.420664910000113,-23.070977471999935],[14.413828972000118,-23.03622812299997],[14.410166863000141,-22.970798434999917],[14.411387566000087,-22.961195570999948],[14.416026238000084,-22.951592705999957],[14.429047071000097,-22.932549737999878],[14.43189537900011,-22.923028252999885],[14.43189537900011,-22.88176848799992],[14.435069207000083,-22.879815362999874],[14.44092858200014,-22.879815362999874],[14.443858269000144,-22.883477471999925],[14.438161655000073,-22.8922665339999],[14.442718946000127,-22.89853280999995],[14.448090040000068,-22.908135674999922],[14.451914910000083,-22.912204684999978],[14.445974155000071,-22.932386976999908],[14.444346550000148,-22.952813408999887],[14.451670769000145,-22.963311455999957],[14.472911004000139,-22.953789971999953],[14.471446160000085,-22.965101820999934],[14.45923912900011,-22.995293877999956],[14.474294467000107,-22.982191664999974],[14.496836785000083,-22.941827080999925],[14.510508660000141,-22.9332821589999],[14.521983269000089,-22.923435153999975],[14.529307488000084,-22.90016041499996],[14.534353061000104,-22.85418059699991],[14.52751712300011,-22.679457289999945],[14.508555535000085,-22.548028252999956],[14.485118035000113,-22.51238372199991],[14.474294467000107,-22.467868747999916],[14.438161655000073,-22.398858330999886],[14.418711785000085,-22.339776299999954],[14.386485222000116,-22.276462497999916],[14.380381707000138,-22.26848723799995],[14.315196160000141,-22.20029062299993],[14.29428144600007,-22.167413018999937],[14.293467644000145,-22.143324476999922],[14.291351759000065,-22.134454033999972],[14.137217644000117,-21.946384372999898],[14.062022332000112,-21.880954684999935],[14.05420983200014,-21.86467864399991],[13.97169030000012,-21.792738539999945],[13.952321811000102,-21.783949476999894],[13.952159050000148,-21.7733700499999],[13.95639082100007,-21.76295338299994],[13.958994988000057,-21.758396091999895],[13.965179884000122,-21.733168226999936],[13.965830925000091,-21.726739190999922],[13.962657097000118,-21.714043877999956],[13.958262566000142,-21.704847914999988],[13.87794030000012,-21.592217705999957],[13.862803582000112,-21.52800872199992],[13.83171634200002,-21.45647551899988],[13.729258660000141,-21.330254815999893],[13.666840040000066,-21.23235442499994],[13.628103061000045,-21.187595309999907],[13.602712436000019,-21.15813567499991],[13.513356967000107,-21.007907809999978],[13.471934441000087,-20.955010674999926],[13.459157748000052,-20.918064059999963],[13.44483483200014,-20.904066664999917],[13.417735222000116,-20.883884372999972],[13.397634311000076,-20.849297783999887],[13.387217644000089,-20.816094658999972],[13.376719597000118,-20.73357512799997],[13.34945722700013,-20.644463799999897],[13.262705925000091,-20.48512135199988],[13.239024285000085,-20.397149346999925],[13.233571811000045,-20.354668877999956],[13.21306399800008,-20.273370049999883],[13.177744988000057,-20.189222914999945],[13.154633009000122,-20.15422942499994],[13.11442526500008,-20.14257271599993],[13.070880462000048,-20.114228533999963],[13.037345391000116,-20.05946463499991],[13.00538170700014,-19.93547942499997],[12.927744988000114,-19.794691664999945],[12.918467644000058,-19.765557549999897],[12.875987175000091,-19.712009372999972],[12.802500847000118,-19.584730726999936],[12.793955925000091,-19.56170012799997],[12.7830509770001,-19.546970309999978],[12.75757897200009,-19.49684010199988],[12.749278191000116,-19.486016533999887],[12.704600457000055,-19.410821221999882],[12.691091342000078,-19.37900155999995],[12.686045769000145,-19.3597958309999],[12.679698113000114,-19.314060153999975],[12.668304884000065,-19.29241301899989],[12.636241082000083,-19.252618096999893],[12.615733269000117,-19.217543226999908],[12.56739342500012,-19.10230885199988],[12.5467228520001,-19.07146575299991],[12.516449415000094,-19.03753020599987],[12.480316602000071,-19.01100025799991],[12.470388217000078,-18.997653903999904],[12.458669467000078,-18.925551039999974],[12.450043165000066,-18.90455494599985],[12.286875847000118,-18.697686455999914],[12.17473093400011,-18.62793892399992],[12.125743035000113,-18.574802341999956],[12.119639519000145,-18.569512627999885],[12.102061394000117,-18.54599374799993],[12.091644727000102,-18.540704033999944],[12.082041863000141,-18.534356377999913],[12.031889371000148,-18.505350000999954],[12.015961134000122,-18.45289478999996],[12.012461785000141,-18.43450286299992],[11.99952233200014,-18.4034970029999],[11.998220248000052,-18.391859632999896],[11.998545769000145,-18.381768487999935],[11.997569207000083,-18.372002862999892],[11.99952233200014,-18.361911716999927],[11.976084832000053,-18.32976653399996],[11.937347852000128,-18.232110283999955],[11.93116295700014,-18.225355726999922],[11.849081614000085,-18.14318324199986],[11.833639844000059,-18.098044690999956],[11.826524356000107,-18.03922016399993],[11.808498804000095,-17.991541785999928],[11.796911021000085,-17.956088842999932],[11.784036598000057,-17.859645117999975],[11.760941181000135,-17.786424401999938],[11.74555201000004,-17.68394836199994],[11.734030611000037,-17.632720661999898],[11.72673587300008,-17.59986744599989],[11.717621290000066,-17.546319268999877],[11.72169030000012,-17.46786874799993],[11.755137566000087,-17.26669687299997],[11.766123894000144,-17.252699476999922],[11.766183862000048,-17.252750745999904],[11.77951826900005,-17.254914651999883],[11.796881551000068,-17.263802998999907],[11.807630249000082,-17.26587005599987],[11.822409709000084,-17.264423115999875],[11.827473999000063,-17.260082294999886],[11.829644409000139,-17.253467712999893],[11.835535523000146,-17.245406188999908],[11.853932332000054,-17.233417256999942],[11.894963419000106,-17.214607035999933],[11.942092326000108,-17.180500589999966],[11.983020060000115,-17.16189707399991],[12.028908732000104,-17.148977965999904],[12.075210816000066,-17.14298349999997],[12.082238810000092,-17.14132985399992],[12.08812992300008,-17.13915944399993],[12.09526127100011,-17.13967620799988],[12.10559655800003,-17.146084085999913],[12.139909708000062,-17.156005960999906],[12.151278524000134,-17.153628844999957],[12.156652873000098,-17.149081318999933],[12.161510457000134,-17.14629079199996],[12.170708862000112,-17.149184671999947],[12.17711674000006,-17.154765726999884],[12.179493856000107,-17.161587015999928],[12.181147501000055,-17.16923512799991],[12.185074911000129,-17.177089944999935],[12.190655965000133,-17.182567646999928],[12.200474487000122,-17.189285583999947],[12.211739950000066,-17.195176695999862],[12.222281942000052,-17.197657164999924],[12.231790405000112,-17.20189463299988],[12.236544637000122,-17.21129974399993],[12.239335165000083,-17.220704854999894],[12.242642456000084,-17.22483896899992],[12.314679402000138,-17.218121031999885],[12.379481649000041,-17.220394794999905],[12.393951050000084,-17.214710387999958],[12.407593628000086,-17.204065042999957],[12.417928914000099,-17.203444925999904],[12.441700073000048,-17.216984150999874],[12.460510294000072,-17.223081970999925],[12.5192147220001,-17.22783620099993],[12.554561401000115,-17.235587666999933],[12.567170451000038,-17.23455413799986],[12.591458374000041,-17.2225652059999],[12.63621016400009,-17.18515146899993],[12.660704793000065,-17.177089944999935],[12.685922892000121,-17.17357594799998],[12.704733114000106,-17.164274189999958],[12.739873088000081,-17.135542093999945],[12.784314820000134,-17.1150782269999],[12.818317912000083,-17.10484629299991],[12.824932495000068,-17.096371357999914],[12.833097371000093,-17.081798603999854],[12.84229577700009,-17.074047138999944],[12.849943888000068,-17.0708432],[12.867720581000098,-17.06557220499994],[12.876402222000081,-17.05978444399996],[12.880536336000091,-17.05079274499992],[12.882293335000071,-17.039527281999952],[12.887150920000096,-17.02981211299992],[12.91102543100007,-17.023507588999905],[12.930455770000064,-17.014205830999884],[12.961668335000127,-17.007384541999926],[13.014274943000117,-16.977928974999926],[13.121761922000132,-16.959842223999914],[13.144499552000097,-16.952400817999887],[13.166307006000125,-16.951057230999922],[13.184910523000099,-16.964183044999896]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Nigeria","sov_a3":"NGA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nigeria","adm0_a3":"NGA","geou_dif":0,"geounit":"Nigeria","gu_a3":"NGA","su_dif":0,"subunit":"Nigeria","su_a3":"NGA","brk_diff":0,"name":"Nigeria","name_long":"Nigeria","brk_a3":"NGA","brk_name":"Nigeria","brk_group":null,"abbrev":"Nigeria","postal":"NG","formal_en":"Federal Republic of Nigeria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nigeria","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":2,"pop_est":149229090,"gdp_md_est":335400,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"NI","iso_a2":"NG","iso_a3":"NGA","iso_n3":"566","un_a3":"566","wb_a2":"NG","wb_a3":"NGA","woe_id":23424908,"woe_id_eh":23424908,"woe_note":"Exact WOE match as country","adm0_a3_is":"NGA","adm0_a3_us":"NGA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"NGA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[7.451914910000055,4.475531317000105],[7.469574415000067,4.471380927000069],[7.487803582000139,4.473374742000189],[7.523773634000121,4.482367255000113],[7.541026238000142,4.484442450000131],[7.574229363000144,4.487860419000143],[7.584483269000089,4.484605210000097],[7.578868035000085,4.471380927000069],[7.56999759200005,4.45941803600013],[7.552582227000073,4.455552476000122],[7.514414910000114,4.457098700000159],[7.499034050000148,4.454494533000158],[7.449229363000086,4.436590887000108],[7.431813998000109,4.434800523000121],[7.358164910000141,4.439276434000178],[7.34278405000012,4.447088934000178],[7.336924675000091,4.460150458000058],[7.346202019000117,4.478176174000083],[7.356211785000114,4.483303127000099],[7.404551629000109,4.498032945000175],[7.416351759000093,4.493841864000061],[7.451914910000055,4.475531317000105]]],[[[7.258555535000112,4.497544664000188],[7.274180535000085,4.491888739000117],[7.31967207100007,4.49652741100013],[7.332530144000089,4.491888739000117],[7.320485873000081,4.481024481000119],[7.314300977000102,4.469142971000082],[7.312266472000089,4.455633856000105],[7.31202233200014,4.440008856000119],[7.307790561000104,4.424505927000111],[7.298350457000111,4.41474030200007],[7.284841342000049,4.406195380000142],[7.270681186000103,4.400376695000176],[7.181651238000113,4.382025458000129],[7.147715691000144,4.385077216000127],[7.138031446000099,4.397040106000162],[7.147715691000144,4.415920315000093],[7.179698113000144,4.449774481000148],[7.202159050000147,4.484442450000131],[7.221446160000114,4.506659247000101],[7.225596550000147,4.516180731000175],[7.22950280000012,4.532782294000143],[7.243174675000063,4.524400132000096],[7.258555535000112,4.497544664000188]]],[[[5.837348673500145,13.763747559000151],[6.120380493000113,13.654077251000146],[6.129475545000076,13.649064637000093],[6.135780069000106,13.643664450000117],[6.142394653000082,13.640822246000141],[6.152833293000128,13.643561097000187],[6.210607543000037,13.675264587000115],[6.229831176000062,13.679191996000085],[6.284207679000133,13.667656410000149],[6.302178181000102,13.663844096000103],[6.368944133000042,13.626275330000096],[6.509297322000093,13.496050721000117],[6.672543172000132,13.321177673000193],[6.753879129000096,13.174899667000119],[6.778686564000083,13.130284933000125],[6.83790775500006,13.063493144000176],[6.874184611000118,13.030497742000122],[6.906637410000144,13.006855774000186],[6.937126505000037,12.995409444000174],[6.970509481000107,12.99184377100012],[7.044923543000038,12.992205506000117],[7.062920948000112,12.995139865000167],[7.068694702000073,12.996081238000158],[7.090088745000088,13.00639068600016],[7.137424357000043,13.04724090600017],[7.198195841000142,13.117391663000134],[7.220520061000115,13.121577454000159],[7.324803100000053,13.102844747000177],[7.3606665450001,13.102638042000123],[7.39198246300012,13.112534078000108],[7.755577840000115,13.327146302000116],[7.789684286000067,13.341977437000153],[7.823997436000098,13.345284729000142],[8.077522013000078,13.310015564000167],[8.105117228000069,13.299654440000154],[8.116589396000109,13.291050314000115],[8.14005049600007,13.269113668000145],[8.167645711000148,13.252370504000112],[8.201442098000143,13.226377258000142],[8.216014852000114,13.2196076460001],[8.24567712400008,13.211778666000086],[8.24672782800013,13.211291661000104],[8.25983646600011,13.205215759000097],[8.273065633000101,13.193872783000117],[8.297973673000087,13.16462392200016],[8.397812541000091,13.075404562000116],[8.405150594000105,13.070857036000175],[8.415175822000036,13.067058817000145],[8.418999877000147,13.06669708300015],[8.423133993000079,13.06948761000011],[8.434502807000085,13.07509450300013],[8.445974976000088,13.078711853000115],[8.470779663000116,13.081657410000119],[8.482665242000053,13.08155405700009],[8.50964034000009,13.075921326000156],[8.533514851000092,13.064630025000097],[8.577233114000137,13.032435608000142],[8.596766805000073,13.011403300000124],[8.62549890200006,12.964791158000168],[8.642655477000119,12.944353129000206],[8.679345743000113,12.923579204000163],[8.942792196000084,12.847201436000205],[8.977871813000093,12.843182822000145],[9.269387248000015,12.809787699000152],[9.306490926000095,12.809839376000156],[9.359821004000082,12.824592997000167],[9.377907756000099,12.825781555000106],[9.590297892000109,12.801390280000163],[9.611485229000067,12.802940572000182],[9.618409871000068,12.805782776000157],[9.629261922000097,12.81278493300016],[9.640734090000109,12.82252594000012],[9.647657343000075,12.830537962000093],[9.819327840000142,13.029205831000167],[9.852814169000055,13.060444234000157],[9.872037801000147,13.07256235800014],[9.882683146000147,13.076231384000138],[9.88774743600004,13.075507915000145],[9.891778198000111,13.076231384000138],[9.899736368000077,13.084318746000134],[9.904387247000045,13.094343974000168],[9.908211303000087,13.118786927000201],[9.912448771000127,13.129199728000131],[9.93012211100006,13.145968729000103],[10.119774618000063,13.25009674100009],[10.161529175000112,13.267201640000138],[10.647881836000067,13.369406184000141],[10.674986206000113,13.37510203000015],[10.771311076000103,13.382698466000122],[10.953005412000065,13.36189870200016],[11.440004110000103,13.364430848000154],[11.742311238000127,13.289448344000077],[11.852795451000134,13.245394186000112],[11.99190840600005,13.162091777000171],[12.038003784000066,13.126357524000156],[12.057640828000103,13.116771546000152],[12.116448609000088,13.102844747000177],[12.149624878000111,13.105583598000123],[12.163784220000137,13.107960714000157],[12.18476485100004,13.1220942180002],[12.201404663000062,13.125427348000116],[12.251840861000062,13.10801239000017],[12.263209676000145,13.101862895000108],[12.267033732000101,13.095170797000094],[12.267447143000112,13.089641419000186],[12.26920414200009,13.085869039000158],[12.277162313000133,13.084473775000092],[12.280883016000075,13.086850891000125],[12.285327189000071,13.092018535000134],[12.291528361000047,13.096824443000145],[12.30103682500004,13.098116354000183],[12.310958699000139,13.092638652000105],[12.318400105000137,13.083853658000123],[12.325738159000139,13.078815206000144],[12.335246622000028,13.084473775000092],[12.351576375000148,13.079797058000109],[12.386741699000083,13.07858046500017],[12.414311564000114,13.07762664800012],[12.437255900000139,13.074009298000135],[12.456376180000063,13.067420553000147],[12.472705932000082,13.064164937000156],[12.48665856900007,13.070805359000161],[12.491206096000097,13.082639262000086],[12.499784383000131,13.135969340000173],[12.504331909000086,13.13961252900016],[12.526966186000037,13.143643290000156],[12.53451094500008,13.145917054000078],[12.542572469000078,13.154779561000097],[12.547946818000128,13.165450745000086],[12.554251343000146,13.1875424200001],[12.53833500200011,13.19335601800016],[12.54515629000008,13.208212993000103],[12.5581787510001,13.226532288000087],[12.561072631000087,13.24275868700009],[12.597556193000116,13.276503398000159],[12.60272383600011,13.279991557000116],[12.60613448100014,13.27422963500014],[12.613265829000085,13.276503398000159],[12.620190471000058,13.281438497000108],[12.626805054000044,13.288259786000154],[12.628768758000092,13.294176737000157],[12.630008993000018,13.310377299000066],[12.640654337000115,13.302393291000099],[12.649232626000128,13.293608297000105],[12.659154500000056,13.286606140000103],[12.674347371000067,13.283712260000115],[12.683132365000063,13.288931580000138],[12.690057006000131,13.311979269000105],[12.701735880000115,13.317250264000137],[12.724370158000056,13.322288717000104],[12.740803264000135,13.334820252000114],[12.766538127000103,13.365671082000176],[12.773256062000144,13.38223337800018],[12.774599650000113,13.382698466000122],[12.777390177000058,13.386703390000108],[12.783281291000065,13.382336731000123],[12.788965698000112,13.375463765000148],[12.791136108000103,13.371846415000164],[12.805192098000106,13.372983297000175],[12.804778687000095,13.376859029000128],[12.798474161000087,13.384274597000143],[12.794546753000134,13.39605682400014],[12.797337280000079,13.399648336000125],[12.810669799000095,13.404299215000094],[12.815010620000095,13.4066246550002],[12.817594441000097,13.407296448000096],[12.82627608200005,13.406056214000158],[12.829273315000078,13.4066246550002],[12.829996786000066,13.409363505000158],[12.828549845000083,13.417450867000156],[12.829273315000078,13.420293071000131],[12.857075236000126,13.450652975000166],[12.870201050000075,13.461246643000152],[12.863896525000085,13.469282328000133],[12.857592,13.475328471000182],[12.850564006000042,13.47938507100018],[12.84229577700009,13.481684673000117],[12.84229577700009,13.48912607900013],[12.857798706000011,13.484914449000186],[12.870614461000088,13.47886830700014],[12.87970951300008,13.479695129000163],[12.88384362800008,13.495999044000186],[12.911748901000067,13.489901225000139],[12.939344116000086,13.495068868000144],[13.029261109000087,13.539174703000128],[13.05489261900007,13.548373108000133],[13.08248783400006,13.55062103300014],[13.08248783400006,13.544394023000152],[13.077010131000065,13.534678854000104],[13.088275594000038,13.530596415000103],[13.107085815000062,13.531552429000158],[13.123518921000112,13.536952617000125],[13.123828979000107,13.53343861900008],[13.123518921000112,13.522664083000135],[13.130960327000137,13.529821269000179],[13.138401733000135,13.54653859500013],[13.143982788000072,13.55062103300014],[13.153697957000105,13.548760681000132],[13.155868368000114,13.540776673000067],[13.153697957000105,13.530699768000131],[13.150183960000048,13.522664083000135],[13.176952352000114,13.534472148000148],[13.203927450000066,13.539381409000086],[13.22811202000014,13.548037212000137],[13.24640547700011,13.571084900000187],[13.23224613400015,13.57289357500018],[13.230179077000088,13.577751160000119],[13.239480835000107,13.591574605000162],[13.243821655000088,13.59325409000013],[13.250849650000104,13.592763163000186],[13.257257528000137,13.594235942000182],[13.260048055000112,13.602142436000136],[13.258601115000118,13.60780100500017],[13.253536825000138,13.614880676000098],[13.253846883000108,13.6189114390001],[13.259221232000073,13.628962505000132],[13.266145874000074,13.63803171900018],[13.306040079000098,13.674644471000136],[13.321232951000125,13.685108948000092],[13.320716186000084,13.702291362000153],[13.32991459100009,13.70942270900018],[13.358919718000038,13.714231979000203],[13.359990275000143,13.714409485000147],[13.607313680000061,13.704100037000146],[13.836111084000121,13.39104421000009],[14.0649084880001,13.077988383000116],[14.121132446000075,12.811790161500141],[14.177356404000136,12.545591940000165],[14.178699992000105,12.468335673000167],[14.180216224000077,12.463530383000133],[14.18541792800005,12.44704498300018],[14.185107870000138,12.427873027000174],[14.179113403000116,12.39728057900008],[14.179836873000113,12.385601705000099],[14.188931925000103,12.370408834000157],[14.202161092000095,12.36250234000012],[14.217560669000079,12.35929840200015],[14.423129516000131,12.353148906000172],[14.487104939000117,12.337801006000106],[14.514390096000112,12.323538310000131],[14.517594035000085,12.313358053000156],[14.512426391000075,12.298630269000155],[14.514390096000112,12.289380188000152],[14.521521444000143,12.282352193000136],[14.551183715000034,12.260441386000181],[14.562139120000097,12.255842184000144],[14.562139120000097,12.248400778000118],[14.558315063000066,12.246902161000108],[14.548496541000077,12.241579488000154],[14.568133585000112,12.22773020400011],[14.588287394000103,12.217188213000142],[14.604100382000098,12.204320781000135],[14.610611613000058,12.183546855000188],[14.616296020000108,12.178947652000147],[14.629318481000043,12.183495179000174],[14.643167765000099,12.190626526000115],[14.651539348000084,12.193778789000177],[14.663424927000106,12.187577617000102],[14.668282512000134,12.178069153000195],[14.66993615700008,12.167423808000121],[14.650609172000118,12.148096822000156],[14.648128703000053,12.141843974000068],[14.643167765000099,12.135849508000135],[14.637173299000098,12.12422231100008],[14.619913370000093,12.052495423000096],[14.622187133000097,12.042005106000133],[14.60430708800007,12.030429586000182],[14.606270792000089,12.011257629000085],[14.625184367000116,11.96810780900016],[14.626941365000109,11.957204082000189],[14.62714807100005,11.950072734000159],[14.623427368000137,11.916534729000148],[14.612058553000054,11.884960429000158],[14.590664510000037,11.783157857000106],[14.583223104000126,11.766363017000145],[14.546532837000141,11.718613993000162],[14.541881958000088,11.709829000000182],[14.543328898000082,11.70109568300012],[14.552423950000048,11.689003398000123],[14.556454712000061,11.687504781000115],[14.573507935000094,11.687711487000172],[14.580949341000093,11.683267314000162],[14.585083456000119,11.676807760000202],[14.588597452000073,11.669676412000172],[14.593868449000126,11.663010152000155],[14.610198201000058,11.646835429000163],[14.621360311000075,11.629782206000128],[14.62714807100005,11.609680074000082],[14.627561483000079,11.584358623000185],[14.62384078000005,11.563481344000124],[14.616192667000092,11.538676656000177],[14.605754029000137,11.514724630000075],[14.593765096000082,11.49643117300019],[14.57660852100011,11.487336121000126],[14.5249320880001,11.468835958000113],[14.503951456000094,11.456304424000109],[14.467261190000102,11.423851624000179],[14.446280558000126,11.41168182400017],[14.38705936600013,11.393388367000114],[14.36824914600001,11.383001404000183],[14.279158976000105,11.301843567000134],[14.271304158000078,11.29863962800016],[14.244329061000144,11.29543569000019],[14.23213342300005,11.290293884000093],[14.204641561000072,11.262130229000135],[14.186761515000114,11.249236959000143],[14.165470826000101,11.238333232000173],[14.143249959000087,11.232726338000147],[14.12257938600007,11.235723572000069],[14.05250614400012,11.265153300000163],[14.01312870300012,11.276367086000105],[13.982329549000069,11.276263733000178],[13.943882284000097,11.245722962000173],[13.906261841000088,11.208025004000135],[13.87318892400009,11.166502991000158],[13.849211059000083,11.124567566000167],[13.83205448400011,11.084802551000152],[13.820065552000074,11.069273783000142],[13.78203169800014,11.047518006000132],[13.765908650000142,11.033901265000125],[13.754849894000131,11.016718852000153],[13.75040572100005,10.996203308000176],[13.757020304000037,10.958246969000172],[13.749838822000129,10.942441823000195],[13.744411254000113,10.930496725000138],[13.566282593000011,10.67901336700011],[13.538790730000128,10.62141998300015],[13.501273641000067,10.496337179000164],[13.467167196000077,10.307589010000184],[13.444842976000103,10.245473938000202],[13.44453291800005,10.232477315000082],[13.451354207000094,10.21211680100015],[13.453007853000145,10.200515442000095],[13.45083744300004,10.187157084000162],[13.434921102000116,10.153412374000183],[13.423242229000067,10.138477886000132],[13.401951538000077,10.122380677000166],[13.392671966000108,10.11695741800014],[13.378387085000071,10.108608907000118],[13.359783569000115,10.100547384000137],[13.281338745000085,10.092098287000141],[13.247955770000118,10.079411723000177],[13.230179077000088,10.045331116000128],[13.230489136000074,10.025358175000108],[13.242478068000139,9.992672831000121],[13.24640547700011,9.973475037000114],[13.242271362000082,9.949755554000163],[13.218706909000074,9.913039449000095],[13.211058798000096,9.892756449000075],[13.212712443000044,9.870148010000134],[13.222944376000044,9.854128316000171],[13.251986531000114,9.824233500000148],[13.262941936000088,9.801728415000142],[13.26046146700011,9.785708720000088],[13.251056356000078,9.769249777000113],[13.241341187000044,9.745323588000119],[13.228422078000108,9.677911682000099],[13.223461141000058,9.613135275000104],[13.195452515000056,9.542209371000126],[13.130340210000071,9.516526184000142],[13.051688680000096,9.504511414000177],[12.982442261000074,9.474590759000149],[12.969006388000139,9.464074605000107],[12.940067586000083,9.427100119000144],[12.929008830000072,9.416118877000159],[12.920740601000118,9.410486146000139],[12.862036173000147,9.382890931000134],[12.855421590000077,9.378110860000135],[12.848393595000061,9.35994659500011],[12.853147827000043,9.356639303000106],[12.881569865000072,9.35222096800011],[12.891285034000106,9.331989645000107],[12.899346557000115,9.302017314000167],[12.898416382000049,9.262433166000108],[12.894592326000122,9.243958842000097],[12.888391154000118,9.22672475200011],[12.842192424000075,9.144430033000148],[12.82214196800004,9.09681020100011],[12.821005086000127,9.056425070000131],[12.828239787000085,9.01996734600013],[12.805708862000074,8.83150339700012],[12.794546753000134,8.788611959000164],[12.772946004000062,8.759053039000136],[12.759613484000056,8.753420309000205],[12.747211141000065,8.753627014000159],[12.734498738000099,8.755900777000178],[12.720236043000057,8.756469218000134],[12.708867228000143,8.750914001000126],[12.70163252800009,8.739157613000131],[12.692847534000094,8.710890605000145],[12.678171428000098,8.678696187000114],[12.660394735000068,8.659317526000137],[12.557972046000145,8.605677389000164],[12.542572469000078,8.602008362000163],[12.52779300900005,8.604850565000135],[12.49554691500009,8.619552510000133],[12.482524454000043,8.623247376000135],[12.464334350000115,8.621154480000172],[12.45182865400011,8.614694926000112],[12.440253133000056,8.606607565000118],[12.424440145000062,8.599786275000156],[12.410590861000115,8.598494365000121],[12.396328166000046,8.600768128000126],[12.36883630400007,8.609578960000121],[12.377001180000093,8.595109559000193],[12.400462280000056,8.538420512000187],[12.403252808000104,8.524235332000131],[12.403872925000087,8.496536764000112],[12.395191284000106,8.487338359000205],[12.365115601000042,8.466564433000158],[12.357570842000086,8.456358338000184],[12.35116296300015,8.444240214000104],[12.343204793000096,8.432742208000178],[12.331319214000075,8.424293112000086],[12.310235229000057,8.421347555000182],[12.271787964000081,8.427781271000129],[12.249980510000057,8.418763733000091],[12.227036173000045,8.386310934000164],[12.219284709000133,8.343161112000132],[12.221765177000094,8.297660014000172],[12.237681518000045,8.216889750000135],[12.236751343000066,8.19699432400013],[12.233713188000138,8.188454644000089],[12.229103231000094,8.17549692800017],[12.188278849000113,8.117774353000186],[12.182594442000065,8.093486430000098],[12.18269779500008,8.054651591000152],[12.18817549600007,8.016256002000205],[12.195100138000072,7.991709696000142],[12.197787313000077,7.975173239000156],[12.19210290600006,7.960652161000113],[12.154275757000079,7.921326396000126],[12.054953654000087,7.783918763000186],[12.018986857000101,7.718858134000115],[12.012165568000057,7.698342591000142],[12.009064982000098,7.676328430000154],[12.010718628000063,7.655244446000125],[12.024981323000132,7.596591696000188],[12.021053915000067,7.576231181000153],[12.008548217000083,7.56486236600017],[11.992838582000102,7.554010315000127],[11.966173543000139,7.514426168000156],[11.903545283000085,7.453556830000139],[11.84473392700005,7.396397197000098],[11.782722209000097,7.304516500000133],[11.762465047000092,7.285551249000178],[11.744585001000132,7.272167054000136],[11.736626831000079,7.263278707000126],[11.742414592000074,7.257439270000134],[11.766185750000117,7.252943421000125],[11.780241740000122,7.241057841000099],[11.82995446800004,7.1693826300002],[11.868918497000038,7.127111308000123],[11.881320842000092,7.102048239000126],[11.87222578900011,7.079362284000155],[11.862613973000123,7.075434876000188],[11.854139038000111,7.077811992000136],[11.845147339000079,7.081946106000159],[11.833985230000053,7.082979635000143],[11.820342651000118,7.078793843000199],[11.808870484000124,7.071920878000128],[11.766392456000062,7.03352528900011],[11.751509643000134,7.023965149000105],[11.748615764000135,7.014973450000156],[11.74685876400008,7.005361634000153],[11.741071004000103,6.997506815000122],[11.734249715000145,6.995078024000151],[11.718643433000095,6.994457906000179],[11.70748132400007,6.991822408000161],[11.697249389000092,6.992855937000144],[11.6924951580001,6.991615703000207],[11.688464396000086,6.986913147000138],[11.684847046000101,6.973839010000177],[11.681126343000102,6.968619690000167],[11.623248739000076,6.932291158000098],[11.561753784000075,6.876067200000122],[11.543667033000048,6.85069407100012],[11.53808597800014,6.823899841000141],[11.544597209000102,6.808939515000176],[11.566611369000098,6.784186504000146],[11.571468954000096,6.766228943000087],[11.568885132000105,6.739098816000194],[11.562373901000058,6.712485454000074],[11.533435099000087,6.645099386000155],[11.50976729400014,6.612310689000154],[11.482585490000076,6.597169495000144],[11.443104695000043,6.593267924000173],[11.416749715000066,6.572003073000189],[11.401763550000112,6.53818084800011],[11.395665731000035,6.496736348000154],[11.389361206000046,6.473921204000149],[11.369827515000111,6.455756938000206],[11.344196004000139,6.443122050000085],[11.31949467000004,6.437282613000193],[11.308539266000082,6.437902731000165],[11.28683516500007,6.443225403000113],[11.275879761000082,6.44420725500008],[11.272159058000083,6.442036845000189],[11.261513713000085,6.432554220000114],[11.25551924700008,6.429970398000108],[11.248284546000093,6.431003927000091],[11.237122437000068,6.438057759000117],[11.231748087000113,6.439814759000085],[11.202276467000104,6.436739242000086],[11.140384155000078,6.430280456000105],[11.113512410000082,6.434001160000193],[11.097079305000108,6.44911651700012],[11.077442261000073,6.496736348000154],[11.060595744000096,6.573966777000137],[11.057391804000133,6.613008321000136],[11.059045451000088,6.652721659000136],[11.055944865000129,6.700367330000176],[11.036721232000104,6.740545757000106],[11.002614787000141,6.767262471000151],[10.909390503000111,6.784264018000087],[10.877454467000035,6.816096700000131],[10.857404012000103,6.859789124000187],[10.848205607000097,6.905316061000164],[10.831875854000145,6.945210266000103],[10.799112996000048,6.967327779000115],[10.716947469000047,6.998126933000094],[10.646977580000112,7.035075582000117],[10.620622599000056,7.043757222000181],[10.602535848000059,7.058071595000172],[10.597161499000094,7.107267558000132],[10.578661336000067,7.130832011000137],[10.564191935000109,7.10266835500009],[10.551789591000073,7.066339824000123],[10.543314656000064,7.028719381000186],[10.537423543000045,6.952134908000176],[10.533186076000106,6.948827617000177],[10.52750166800007,6.947484029000123],[10.521197144000041,6.942781474000142],[10.508898153000104,6.926348369000081],[10.500733276000089,6.912809144000107],[10.496599161000063,6.897151184000151],[10.495979045000096,6.874671936000141],[10.238423706000106,6.871002910000144],[10.210828491000115,6.879167786000152],[10.1898478600001,6.895445862000173],[10.179409220000082,6.914927877000166],[10.165043172000082,6.988515117000162],[10.156878296000059,7.00474151600018],[10.14292565900007,7.00768707300017],[10.119464559000079,6.994406230000081],[9.874621623000081,6.787700500000199],[9.8511605220001,6.777881978000138],[9.831730184,6.783566386000174],[9.81229984500004,6.793049011000164],[9.788528686000063,6.794754334000132],[9.76982181800008,6.7737220260002],[9.69397999000006,6.534304786000135],[9.693030640000131,6.531307882000149],[9.680524943000137,6.521437683000158],[9.644805968000128,6.521225530000109],[9.632672567000043,6.521153463000175],[9.603010294000057,6.515184835000155],[9.588127482000118,6.502730814000173],[9.564769735000084,6.458599142000181],[9.54895674700009,6.443173726000097],[9.52859623200004,6.43301930800014],[9.488590226000099,6.418208095000168],[9.482604207000065,6.415991923000206],[9.453148641000041,6.397672628000137],[9.42286625200012,6.339355774000182],[9.394960978000142,6.322535095000205],[9.379147990000149,6.321604920000169],[9.366538940000112,6.322690125000165],[9.354756713000114,6.32150156700014],[9.341010783000085,6.313982646000099],[9.327368205000084,6.298505554000186],[9.298842814000125,6.238431701000167],[9.273314657000098,6.20277496400017],[9.136165405000042,6.09252329500012],[9.043871297000038,5.99684438100013],[9.043871297000038,5.996689352000174],[9.022477254000137,5.965812683000195],[9.0098682040001,5.952350973000136],[8.993848511000067,5.94408274300018],[8.988474162000102,5.93728729200015],[8.98630375200011,5.908813578000206],[8.982686401000109,5.895765280000163],[8.965013061000121,5.893594869000168],[8.943205607000095,5.901423849000196],[8.921708211000066,5.904472758000125],[8.904654988000118,5.888117167000174],[8.891219116000059,5.871115621000158],[8.855872437000073,5.847499492000153],[8.845227091000083,5.831040548000175],[8.847087443000078,5.810757548000169],[8.857836141000092,5.794892883000159],[8.866621135000088,5.777452087000114],[8.862176961000074,5.752337342000189],[8.8446069740001,5.730865783000154],[8.826933635000103,5.717817485000111],[8.819285522000115,5.703451437000112],[8.832411336000092,5.678155823000139],[8.852565145000057,5.658673808000145],[8.874889363000134,5.641439718000156],[8.89369958500015,5.621750997000119],[8.90393151900011,5.595085958000169],[8.899487345000125,5.570953064000207],[8.884294474000084,5.551445211000114],[8.86548425300009,5.533461813000129],[8.85049808700009,5.514005636000135],[8.844296915000115,5.492353210000147],[8.845743855000109,5.472793681000141],[8.849257853000069,5.453466695000188],[8.849774618000112,5.432356873000145],[8.843160034000107,5.409980977000174],[8.821662638000078,5.36768381700017],[8.81525476100012,5.343499247000111],[8.816391642000042,5.330295919000207],[8.82465987100008,5.306137187000161],[8.825693400000148,5.29549184200016],[8.798925008000081,5.159634502000145],[8.791690307000124,5.146741232000153],[8.781251668000095,5.141987000000157],[8.769469442000087,5.139945781000108],[8.758307332000072,5.134881490000126],[8.748282104000026,5.124210307000126],[8.728851765000057,5.094548035000159],[8.722650594000072,5.08118967700014],[8.707871134000044,5.03754893000017],[8.698569376000108,5.017808533000121],[8.683686564000084,4.997034607000074],[8.683686564000084,4.996879578000133],[8.64441247500011,4.934867859000178],[8.638314656000148,4.916781108000165],[8.611029501000132,4.896653137000101],[8.602244506000147,4.881331075000134],[8.60544844500012,4.860040385000147],[8.608445679000056,4.846216939000101],[8.612166382000055,4.8318767290001],[8.595113159000107,4.815314433000196],[8.594185680000123,4.815299377000187],[8.59417866654718,4.815299263178261],[8.594574415000125,4.815497137000122],[8.592458530000101,4.820217190000122],[8.58570397200009,4.824896552000141],[8.57667076900006,4.82705312700014],[8.568614129000139,4.823187567000133],[8.558116082000055,4.814439195000161],[8.54916425900012,4.804185289000131],[8.545258009000122,4.796291408000158],[8.543304884000094,4.787502346000096],[8.534434441000144,4.768296617000146],[8.531748894000144,4.758124091000099],[8.53256269600007,4.748236395000091],[8.539073113000086,4.73379140800013],[8.538584832000083,4.724595445000147],[8.529795769000117,4.708889065000093],[8.518321160000085,4.704046942000119],[8.504893425000091,4.706122137000136],[8.490000847000118,4.711004950000103],[8.485524936000076,4.709784247000171],[8.475840691000116,4.708929755000085],[8.469004754000082,4.711655992000146],[8.473317905000101,4.72117747600015],[8.47754967500012,4.727769273000121],[8.482269727000102,4.738348700000174],[8.484385613000114,4.7481957050001],[8.480153842000107,4.752508856000105],[8.471202019000089,4.750230210000126],[8.451833530000073,4.740545966000155],[8.43881269600007,4.73826732000019],[8.40919030000012,4.749335028000132],[8.407399936000047,4.776841539000159],[8.417246941000144,4.812445380000128],[8.421885613000086,4.847479559000121],[8.415700717000107,4.847479559000121],[8.409027540000068,4.813381252000113],[8.386973504000082,4.795803127000084],[8.358409050000091,4.797349351000122],[8.332367384000094,4.820868231000175],[8.33562259200005,4.824693101000179],[8.339854363000086,4.834458726000136],[8.332041863000086,4.836411851000179],[8.312022332000112,4.847479559000121],[8.316579623000052,4.860988674000097],[8.308360222000147,4.872137762000108],[8.281260613000143,4.892482815000108],[8.257334832000083,4.905829169000114],[8.25619550900012,4.906724351000193],[8.250498894000145,4.923244533000087],[8.239268425000148,4.944769598000107],[8.232106967000107,4.953680731000134],[8.219737175000063,4.957342841000098],[8.208750847000118,4.962103583000101],[8.196625196000127,4.972845770000105],[8.186696811000104,4.984361070000133],[8.181651238000086,4.991441148000192],[8.175466342000107,4.991441148000192],[8.175466342000107,4.985296942000119],[8.230235222000147,4.933661200000174],[8.24366295700014,4.916408596000067],[8.269704623000107,4.8687197940001],[8.27361087300011,4.845445054000095],[8.257334832000083,4.834458726000136],[8.26384524800008,4.820746161000102],[8.273936394000115,4.804836330000086],[8.28532962300008,4.791571356000148],[8.294932488000086,4.786078192000133],[8.304942254000139,4.777329820000148],[8.319997592000078,4.73436107000019],[8.332367384000094,4.717759507000139],[8.328949415000096,4.711493231000176],[8.320974155000043,4.68915436400006],[8.319509311000076,4.679917710000097],[8.323496941000142,4.665594794000114],[8.333181186000104,4.659979559000106],[8.344493035000113,4.656561591000099],[8.353526238000113,4.648871161000087],[8.35645592500012,4.625555731000176],[8.341075066000087,4.611558335000112],[8.321543816000116,4.599839585000126],[8.312022332000112,4.583685614000075],[8.298350457000083,4.553290106000105],[8.28858483200014,4.548570054000095],[8.279063347000147,4.546820380000099],[8.235524936000104,4.546861070000176],[8.178558790000096,4.553290106000105],[8.092946811000104,4.553290106000105],[8.051280144000145,4.559393622000087],[8.031993035000113,4.558783270000134],[7.998708530000044,4.541408596000153],[7.979340040000096,4.539007880000113],[7.93531334700009,4.539007880000113],[7.764496290000125,4.519191799000097],[7.755056186000103,4.524807033000101],[7.742360873000051,4.526312567000146],[7.730479363000086,4.522365627000156],[7.722911004000139,4.511704820000119],[7.733653191000144,4.512193101000108],[7.742930535000112,4.511216539000131],[7.750661655000044,4.50877513200011],[7.757090691000144,4.50486888200011],[7.735524936000046,4.499212958000115],[7.703135613000113,4.497544664000188],[7.673838738000114,4.502183335000126],[7.660899285000114,4.515448309000149],[7.646983269000117,4.519110419000114],[7.558441602000101,4.525336005000071],[7.561778191000144,4.529527085000097],[7.563649936000103,4.532782294000143],[7.566416863000057,4.535711981000162],[7.572032097000147,4.539007880000113],[7.559336785000114,4.542914130000098],[7.547618035000114,4.541164455000114],[7.539317254000138,4.541815497000157],[7.537364129000082,4.553290106000105],[7.54078209700009,4.559149481000148],[7.547618035000114,4.563625393000109],[7.554535352000102,4.569484768000152],[7.558441602000101,4.579982815000122],[7.555511915000096,4.58490631700009],[7.537364129000082,4.607896226000165],[7.540293816000116,4.611761786000073],[7.544769727000074,4.621568101000193],[7.529633009000094,4.638861395000106],[7.533050977000101,4.664292710000112],[7.551036004000109,4.711004950000103],[7.544769727000074,4.711004950000103],[7.533539259000065,4.702704169000128],[7.527842644000089,4.698553778000175],[7.52051842500009,4.689764716000113],[7.517425977000102,4.679917710000097],[7.519704623000081,4.665106512000122],[7.52279707100007,4.654120184000163],[7.522715691000087,4.644110419000171],[7.514414910000114,4.632147528000147],[7.514170769000145,4.62592194200009],[7.527842644000089,4.609564520000077],[7.531097852000129,4.601141669000128],[7.527842644000089,4.59861888200011],[7.511241082000139,4.579982815000122],[7.501963738000085,4.572699286000116],[7.490489129000139,4.566310940000093],[7.479177280000073,4.565171617000146],[7.469574415000067,4.573797919000157],[7.462738477000073,4.573797919000157],[7.454112175000148,4.55316803600013],[7.432383660000085,4.555405992000118],[7.397715691000116,4.573797919000157],[7.372731967000077,4.575140692000147],[7.34669030000012,4.58030833500014],[7.324554884000121,4.590765692000133],[7.31202233200014,4.607896226000165],[7.305918816000144,4.604152736000131],[7.299082879000139,4.602036851000122],[7.281016472000118,4.601141669000128],[7.277842644000145,4.598049221000139],[7.276621941000115,4.591050523000163],[7.273203972000118,4.583929755000113],[7.263682488000113,4.579982815000122],[7.263682488000113,4.573797919000157],[7.270274285000112,4.569728908000101],[7.277354363000143,4.566351630000084],[7.271169467000106,4.560044664000131],[7.284027540000125,4.555405992000118],[7.301036004000082,4.541815497000157],[7.328379754000139,4.53620026200015],[7.333262566000115,4.529364325000131],[7.331797722000146,4.520493882000096],[7.325694207000083,4.511704820000119],[7.281016472000118,4.50486888200011],[7.276133660000142,4.510158596000081],[7.253672722000146,4.542710679000052],[7.190440300000091,4.611639716000099],[7.181651238000113,4.632147528000147],[7.181651238000113,4.659409898000135],[7.178884311000047,4.668850002000155],[7.172373894000145,4.668890692000147],[7.158213738000143,4.662014065000136],[7.136403842000077,4.661810614000089],[7.133148634000121,4.663153387000165],[7.124847852000073,4.67234935100015],[7.106781446000127,4.687079169000143],[7.099131707000112,4.697251695000176],[7.082692905000101,4.742743231000148],[7.071787957000139,4.758124091000099],[7.070485873000052,4.748358466000155],[7.06544030000009,4.738674221000096],[7.060231967000107,4.731919664000159],[7.057627800000119,4.73086172100011],[7.060394727000073,4.720689195000162],[7.065684441000144,4.718939520000077],[7.072276238000113,4.718085028000161],[7.078623894000145,4.711004950000103],[7.088633660000141,4.676459052000098],[7.097911004000081,4.661810614000089],[7.116221550000148,4.655707098000107],[7.147227410000084,4.64004140800013],[7.16968834700009,4.605943101000122],[7.173350457000139,4.57290273600016],[7.14747155000012,4.560044664000131],[7.160329623000052,4.550930080000143],[7.175547722000117,4.536444403000104],[7.18458092500012,4.519029039000131],[7.178233269000089,4.501450914000188],[7.150645379000082,4.470607815000136],[7.133555535000141,4.463039455000085],[7.11280358200014,4.471380927000069],[7.112315300000148,4.455877997000144],[7.11280358200014,4.450873114000102],[7.094248894000145,4.459377346000139],[7.080577019000089,4.470445054000081],[7.074554884000094,4.485256252000141],[7.078623894000145,4.50486888200011],[7.065277540000125,4.492987372000158],[7.062673373000052,4.476263739000132],[7.06812584700009,4.458482164000145],[7.078623894000145,4.443426825000131],[7.051442905000044,4.436590887000108],[7.043955925000091,4.436590887000108],[7.031911655000073,4.459906317000119],[7.025889519000145,4.484930731000119],[7.023285352000073,4.535874742000132],[7.007009311000047,4.563137111000117],[7.002207879000139,4.579901434000134],[7.013438347000147,4.587388414000117],[7.017832879000109,4.595607815000108],[7.02295983200014,4.614243882000096],[7.025726759000094,4.634914455000114],[7.023285352000073,4.648871161000087],[7.028493686000047,4.646429755000142],[7.037771030000101,4.644720770000133],[7.043955925000091,4.642645575000117],[7.03736412900011,4.65375397300015],[7.01726321700005,4.676214911000145],[7.013031446000127,4.687201239000117],[7.008067254000081,4.708807684000107],[7.003591342000107,4.717759507000139],[6.984873894000144,4.692084052000084],[6.978526238000114,4.69236888200011],[6.974457227000073,4.70864492400014],[6.96265709700009,4.73086172100011],[6.957774285000113,4.71552155200007],[6.960215691000144,4.691717841000155],[6.955821160000084,4.683661200000131],[6.96697024800008,4.667466539000173],[6.98926842500012,4.607896226000165],[6.978851759000036,4.607896226000165],[6.971853061000076,4.609076239000088],[6.966644727000073,4.612982489000089],[6.96265709700009,4.621568101000193],[6.958669467000107,4.61880117400014],[6.948985222000147,4.614732164000173],[6.940196160000085,4.634100653000104],[6.929535352000073,4.651068427000083],[6.900563998000051,4.683661200000131],[6.902598504000082,4.666937567000105],[6.907481316000144,4.653631903000175],[6.921560092000106,4.629055080000157],[6.929860873000081,4.618638414000173],[6.933604363000114,4.612494208000101],[6.935313347000117,4.604559637000136],[6.931488477000102,4.595933335000126],[6.924571160000113,4.591050523000163],[6.92123457100007,4.585191148000121],[6.928477410000113,4.573797919000157],[6.938487175000091,4.589260158000087],[6.957041863000086,4.594061591000155],[6.974945509000065,4.589667059000178],[6.983083530000073,4.576849677000141],[6.973480665000096,4.508002020000092],[6.97559655000009,4.484442450000131],[7.010996941000116,4.414129950000102],[7.023692254000082,4.398138739000103],[7.022146030000044,4.388495184000134],[7.016286655000072,4.378892320000162],[7.006602410000113,4.374579169000157],[6.99350019600007,4.376288153000161],[6.982758009000122,4.381048895000063],[6.964121941000144,4.389553127000098],[6.964691602000129,4.38499583500014],[6.966075066000086,4.3804385440001],[6.969493035000113,4.374579169000157],[6.947438998000109,4.38149648600016],[6.925466342000107,4.391546942000133],[6.903086785000085,4.396551825000174],[6.880056186000104,4.388169664000117],[6.868662957000139,4.399847723000107],[6.86085045700014,4.415716864000132],[6.85922285200013,4.433539130000113],[6.866384311000076,4.450873114000102],[6.849294467000021,4.45970286700016],[6.833832227000102,4.4859072940001],[6.822927280000044,4.517523505000085],[6.81861412900011,4.542710679000052],[6.82048587300008,4.56085846600014],[6.825450066000144,4.570746161000073],[6.832286004000053,4.577785549000126],[6.83969160200013,4.587388414000117],[6.844248894000089,4.597479559000163],[6.848399285000141,4.613592841000141],[6.845469597000118,4.628607489000075],[6.828868035000141,4.635199286000144],[6.803233269000089,4.649807033000158],[6.785492384000094,4.683294989000117],[6.770192905000044,4.745062567000119],[6.767263217000107,4.769680080000128],[6.770681186000103,4.782416083000086],[6.781016472000118,4.796291408000158],[6.787852410000141,4.808417059000149],[6.785329623000024,4.81704336100016],[6.776215040000124,4.817816473000093],[6.763926629000082,4.806545315000093],[6.754405144000089,4.817938544000157],[6.751231316000116,4.825100002000099],[6.749685092000078,4.834458726000136],[6.741058790000068,4.83014557500013],[6.732758009000094,4.828680731000162],[6.72429446700005,4.83014557500013],[6.715586785000085,4.834458726000136],[6.719981316000144,4.817531643000152],[6.721934441000087,4.799465236000131],[6.726817254000081,4.785101630000057],[6.739512566000115,4.779201565000122],[6.748383009000094,4.771673895000063],[6.755625847000089,4.753851630000085],[6.763926629000082,4.717759507000139],[6.767832879000082,4.680365302000098],[6.772227410000141,4.663031317000105],[6.781016472000118,4.655707098000107],[6.793711785000085,4.648993231000148],[6.806813998000052,4.633246161000102],[6.825450066000144,4.601141669000128],[6.802989129000139,4.581976630000071],[6.798106316000087,4.573797919000157],[6.796153191000116,4.559719143000108],[6.816091342000107,4.461371161000073],[6.826019727000101,4.43195221600017],[6.83969160200013,4.416083075000145],[6.83757571700005,4.392889716000127],[6.857920769000117,4.375311591000099],[6.87077884200005,4.36078522300015],[6.84595787900011,4.347235419000086],[6.814626498000052,4.341620184000178],[6.774587436000104,4.338934637000108],[6.737559441000087,4.342230536000144],[6.715586785000085,4.354681708000072],[6.712575717000078,4.369086005000128],[6.716319207000112,4.428127346000068],[6.72120201900006,4.435370184000178],[6.722422722000089,4.440008856000119],[6.720225457000082,4.445257880000099],[6.710948113000143,4.453070380000099],[6.708750847000147,4.457098700000159],[6.708750847000147,4.491888739000117],[6.712412957000111,4.508002020000092],[6.734873894000117,4.567816473000136],[6.737071160000085,4.578558661000144],[6.736094597000118,4.607896226000165],[6.717133009000122,4.584621486000145],[6.701833530000044,4.542547919000086],[6.695078972000118,4.497219143000081],[6.701914910000141,4.463934637000179],[6.697520379000139,4.455633856000105],[6.697032097000146,4.435980536000145],[6.695078972000118,4.422919012000165],[6.685720248000081,4.445461330000157],[6.68262780000009,4.459214585000083],[6.679860873000052,4.520575262000165],[6.674571160000141,4.532782294000143],[6.670746290000039,4.526027736000117],[6.666188998000108,4.520249742000146],[6.660817905000044,4.515570380000128],[6.654063347000118,4.511704820000119],[6.659434441000144,4.497544664000188],[6.660329623000052,4.450873114000102],[6.664317254000139,4.43463776200015],[6.676442905000044,4.412909247000087],[6.684418165000096,4.393703518000137],[6.694509311000046,4.359076239000146],[6.695078972000118,4.347235419000086],[6.687673373000023,4.336574611000145],[6.677500847000089,4.333075262000165],[6.646657748000109,4.333563544000143],[6.618500196000127,4.330755927000098],[6.612640821000098,4.336737372000115],[6.601735873000109,4.369045315000136],[6.598806186000104,4.399969794000171],[6.600108269000089,4.445502020000148],[6.595876498000081,4.482082424000083],[6.580821160000141,4.507879950000117],[6.550466342000078,4.50486888200011],[6.578379754000109,4.482855536000102],[6.588389519000117,4.447658596000139],[6.584727410000141,4.406927802000084],[6.571543816000116,4.368353583000101],[6.569590691000144,4.334906317000133],[6.519867384000065,4.323146877000156],[6.461761915000095,4.328680731000176],[6.434336785000141,4.347235419000086],[6.420909050000148,4.344875393000137],[6.407725457000112,4.341009833000129],[6.415293816000144,4.322251695000162],[6.398936394000144,4.315985419000114],[6.373871290000067,4.314398505000085],[6.355479363000114,4.309637762000179],[6.336273634000065,4.30121491100013],[6.290293816000087,4.299953518000122],[6.270518425000148,4.292629299000126],[6.246836785000141,4.320502020000077],[6.26710045700014,4.362982489000146],[6.332530144000116,4.436590887000108],[6.319509311000047,4.437689520000148],[6.311371290000125,4.439601955000114],[6.305186394000145,4.439927476000136],[6.297211134000094,4.436590887000108],[6.263031446000099,4.395656643000081],[6.258474155000073,4.449530341000112],[6.242523634000065,4.498032945000175],[6.236338738000086,4.498032945000175],[6.235199415000124,4.478176174000083],[6.236989780000044,4.452785549000154],[6.24170983200014,4.42792389500012],[6.24935957100007,4.409898179000094],[6.239593946000126,4.419623114000132],[6.231211785000056,4.430487372000115],[6.219899936000075,4.439398505000071],[6.201670769000089,4.443426825000131],[6.212412957000112,4.420111395000119],[6.223317905000101,4.404608466000112],[6.230153842000107,4.388006903000147],[6.228851759000122,4.361517645000092],[6.222341342000106,4.341945705000114],[6.215179884000065,4.327337958000101],[6.208994988000114,4.32273997600015],[6.200694207000111,4.320054429000081],[6.194672071000126,4.314195054000137],[6.194834832000083,4.300034898000106],[6.202810092000049,4.303900458000115],[6.209157748000081,4.303900458000115],[6.222666863000143,4.300034898000106],[6.217051629000139,4.2905947940001],[6.188731316000086,4.280991929000123],[6.151621941000087,4.278998114000089],[6.126475457000111,4.285793361000103],[6.123057488000086,4.280951239000132],[6.116547071000099,4.276353257000096],[6.112803582000083,4.27216217700007],[6.096690300000091,4.278143622000172],[6.087738477000073,4.288234768000136],[6.084320509000065,4.302313544000171],[6.08497155000012,4.320502020000077],[6.089121941000144,4.337144273000121],[6.102549675000148,4.360907294000128],[6.105316602000102,4.374579169000157],[6.100759311000047,4.372626044000114],[6.089691602000102,4.370021877000113],[6.08497155000012,4.368353583000101],[6.085134311000075,4.384100653000147],[6.088715040000124,4.41111888200011],[6.077810092000077,4.412298895000134],[6.067393425000091,4.414984442000105],[6.055430535000141,4.419867255000085],[6.043304884000065,4.416083075000145],[6.040293816000144,4.405910549000112],[6.042165561000104,4.391180731000119],[6.046560092000107,4.377020575000103],[6.050791863000114,4.368353583000101],[6.046560092000107,4.355210679000137],[6.051931186000046,4.344224351000178],[6.060069207000083,4.33242422100011],[6.064463738000143,4.316799221000124],[6.061778191000087,4.295233466000127],[6.053965691000087,4.296291408000087],[6.042165561000104,4.306626695000175],[6.027028842000107,4.313055731000105],[6.004893425000148,4.314113674000153],[5.996918165000096,4.319403387000122],[5.995453321000127,4.354681708000072],[6.001475457000139,4.356268622000101],[6.003265821000126,4.359198309000121],[5.990244988000113,4.37856679900014],[5.988617384000094,4.382025458000129],[5.987478061000076,4.398911851000122],[5.988617384000094,4.416083075000145],[5.982595248000109,4.416083075000145],[5.975108269000117,4.382025458000129],[5.969981316000116,4.386419989000117],[5.954600457000083,4.395656643000081],[5.969737175000091,4.361517645000092],[5.972829623000052,4.34479401200015],[5.961436394000089,4.333563544000143],[5.946299675000091,4.335191148000163],[5.930918816000144,4.345119533000087],[5.918142123000109,4.356187242000118],[5.910166863000142,4.361517645000092],[5.889903191000144,4.368841864000089],[5.867523634000122,4.387274481000119],[5.855642123000081,4.411607164000188],[5.865896030000101,4.436590887000108],[5.854665561000104,4.43748607000019],[5.847504102000073,4.434393622000115],[5.844493035000141,4.427191473000093],[5.84538821700005,4.416083075000145],[5.839121941000086,4.416083075000145],[5.822764519000089,4.432847398000163],[5.782399936000046,4.455959377000126],[5.770274285000141,4.471380927000069],[5.77719160200013,4.466986395000077],[5.79037519600007,4.461167710000126],[5.797536655000044,4.457098700000159],[5.789805535000113,4.469712632000139],[5.777679884000122,4.475531317000105],[5.763682488000142,4.478949286000102],[5.74976647200009,4.484442450000131],[5.72836347700013,4.507635809000163],[5.720713738000114,4.518255927000112],[5.694021030000073,4.545599677000084],[5.687673373000052,4.549872137000179],[5.594899936000019,4.636460679000066],[5.566905144000089,4.675238348000078],[5.557302280000016,4.717759507000139],[5.561534050000148,4.716376044000157],[5.564626498000024,4.715033270000077],[5.571543816000116,4.711004950000103],[5.571462436000047,4.729559637000108],[5.527679884000065,4.756496486000074],[5.516368035000085,4.77578359600011],[5.511485222000118,4.791815497000101],[5.486338738000143,4.835028387000108],[5.475433790000068,4.847479559000121],[5.50953209700009,4.82705312700014],[5.500987175000148,4.850897528000132],[5.469004754000139,4.886786200000116],[5.441254102000072,4.964178778000118],[5.432383660000113,5.010891018000108],[5.427012566000087,5.026271877000141],[5.414235873000023,5.052435614000089],[5.408864780000073,5.067572333000086],[5.406504754000109,5.084295966000113],[5.403330925000148,5.091864325000159],[5.39625084700009,5.099514065000093],[5.389333530000101,5.109767971000124],[5.385996941000059,5.125555731000161],[5.390879754000139,5.137681382000067],[5.40284264400006,5.142401434000163],[5.418467644000144,5.14126211100013],[5.433848504000082,5.136135158000116],[5.444672071000099,5.127101955000114],[5.462738477000102,5.102280992000146],[5.475433790000068,5.094549872000143],[5.460215691000087,5.133775132000068],[5.454274936000076,5.149115302000112],[5.47559655000012,5.147040106000091],[5.495860222000147,5.142320054000094],[5.488536004000139,5.154201565000136],[5.461192254000053,5.184149481000105],[5.45085696700005,5.190130927000125],[5.44711347700013,5.185939846000096],[5.448008660000113,5.167629299000126],[5.444346550000148,5.163478908000087],[5.434906446000042,5.163153387000165],[5.427907748000081,5.162054755000113],[5.413340691000143,5.156642971000082],[5.40015709700009,5.162339585000055],[5.376149936000046,5.158189195000119],[5.365570509000094,5.163478908000087],[5.363617384000037,5.171576239000117],[5.365570509000094,5.207749742000146],[5.361094597000118,5.253973700000145],[5.340179884000065,5.343939520000119],[5.345713738000086,5.357163804000066],[5.368988477000102,5.362046617000132],[5.435313347000147,5.363348700000131],[5.454274936000076,5.368841864000075],[5.45679772200009,5.359564520000106],[5.459483269000145,5.352972723000136],[5.468028191000087,5.340887762000136],[5.476084832000112,5.34731679900014],[5.483653191000059,5.362290757000081],[5.489105665000096,5.368841864000075],[5.494883660000056,5.372870184000135],[5.529633009000122,5.386379299000112],[5.546071811000019,5.389471747000087],[5.561289910000085,5.388861395000133],[5.571543816000116,5.381984768000122],[5.577891472000147,5.381984768000122],[5.570323113000114,5.394680080000086],[5.54639733200014,5.415513414000159],[5.536875847000147,5.430324611000131],[5.533213738000086,5.444240627000113],[5.531911655000101,5.460638739000117],[5.533946160000113,5.476385809000163],[5.540293816000144,5.488348700000103],[5.553558790000096,5.49689362200013],[5.568695509000094,5.499904690000135],[5.602061394000145,5.499253648000177],[5.614024285000085,5.504950262000165],[5.625743035000085,5.51788971600017],[5.639903191000115,5.540187893000108],[5.623871290000125,5.533596096000139],[5.610524936000104,5.52191803600013],[5.596202019000117,5.514227606000119],[5.577891472000147,5.519720770000148],[5.575205925000091,5.514837958000086],[5.568858269000145,5.510443427000098],[5.56413821700005,5.505438544000143],[5.541026238000085,5.510484117000175],[5.517100457000112,5.498602606000133],[5.503184441000144,5.47646719000015],[5.50953209700009,5.450751044000114],[5.498057488000114,5.426418361000131],[5.484873894000089,5.411525783000087],[5.468597852000045,5.407782294000143],[5.447438998000052,5.416693427000097],[5.441579623000109,5.423488674000112],[5.439952019000089,5.429877020000134],[5.436045769000089,5.434637762000136],[5.423594597000146,5.43650950700011],[5.418304884000094,5.430812893000123],[5.421071811000046,5.417792059000135],[5.427500847000147,5.40395742400014],[5.433848504000082,5.395575262000165],[5.375987175000091,5.398830471000124],[5.263194207000083,5.43650950700011],[5.258474155000073,5.441839911000073],[5.253916863000114,5.452785549000139],[5.250173373000109,5.458197333000086],[5.218597852000102,5.487127997000087],[5.198008660000084,5.501450914000173],[5.190603061000076,5.522853908000116],[5.188487175000063,5.544134833000101],[5.191172722000147,5.553859768000137],[5.197927280000101,5.55756256700009],[5.214203321000126,5.575140692000119],[5.222829623000023,5.581203518000123],[5.230235222000118,5.582505601000122],[5.328135613000143,5.578436591000155],[5.365244988000057,5.572333075000159],[5.385996941000059,5.560614325000174],[5.392832879000082,5.560614325000174],[5.40259850400011,5.574774481000105],[5.419200066000087,5.610541083000129],[5.427012566000087,5.622137762000136],[5.439952019000089,5.627671617000161],[5.455821160000112,5.627386786000129],[5.471039259000094,5.622788804000095],[5.481700066000116,5.615301825000131],[5.484385613000085,5.607977606000119],[5.49000084700009,5.585842190000136],[5.492523634000122,5.581203518000123],[5.502940300000091,5.581773179000094],[5.508067254000109,5.584540106000148],[5.509613477000073,5.59064362200013],[5.50953209700009,5.601629950000088],[5.50212649800008,5.617254950000174],[5.485118035000113,5.634344794000114],[5.464854363000114,5.648627020000119],[5.447438998000052,5.656236070000148],[5.428477410000141,5.655829169000143],[5.418955925000119,5.645900783000144],[5.406504754000109,5.615301825000131],[5.39600670700014,5.605902411000101],[5.379649285000141,5.597967841000141],[5.361501498000052,5.593654690000136],[5.344981316000144,5.594794012000165],[5.32601972700013,5.605414130000113],[5.317881707000112,5.61957428600013],[5.318207227000045,5.636664130000084],[5.33692467500012,5.691148179000081],[5.339203321000099,5.705877997000158],[5.337575717000078,5.724554755000142],[5.331390821000099,5.724554755000142],[5.304047071000126,5.650051174000083],[5.293223504000139,5.63031647300015],[5.28028405000012,5.617499091000113],[5.263031446000127,5.610541083000129],[5.239105665000068,5.608465887000108],[5.228282097000147,5.605617580000157],[5.204925977000072,5.591986395000119],[5.179698113000114,5.582586981000105],[5.173594597000118,5.58539459800015],[5.160166863000114,5.594794012000165],[5.144867384000065,5.608628648000163],[5.12916100400011,5.628119208000072],[5.116709832000083,5.648830471000067],[5.107269727000073,5.676988023000149],[5.097829623000051,5.690863348000136],[5.088633660000085,5.708726304000109],[5.08497155000012,5.732001044000114],[5.087412957000054,5.752101955000157],[5.093435092000078,5.774725653000132],[5.102712436000019,5.793198960000069],[5.11500084700009,5.800930080000157],[5.126475457000112,5.797023830000072],[5.146494988000085,5.781073309000163],[5.15398196700005,5.779201565000093],[5.159190300000148,5.785589911000115],[5.156993035000056,5.794501044000157],[5.153086785000056,5.804632880000113],[5.15398196700005,5.814520575000117],[5.185394727000102,5.842027085000069],[5.267425977000102,5.871893622000143],[5.290375196000099,5.910101630000099],[5.269541863000113,5.906398830000157],[5.23536217500012,5.875921942000119],[5.195811394000088,5.863999742000161],[5.119965040000124,5.824164130000099],[5.105479363000086,5.813666083000115],[5.055023634000065,5.766587632000109],[5.044688347000147,5.767482815000108],[5.007334832000082,5.8491885440001],[4.885915561000104,6.006537177000084],[4.865489129000109,6.025620835000069],[4.826182488000114,6.042547919000143],[4.807953321000127,6.063055731000105],[4.782725457000083,6.102525132000082],[4.747813347000147,6.138861395000063],[4.717051629000082,6.163641669000128],[4.641856316000087,6.210882880000098],[4.608734571000127,6.231756903000161],[4.547373894000145,6.289048570000189],[4.509043816000116,6.313544012000136],[4.493011915000125,6.320542710000112],[4.405528191000059,6.358872789000145],[4.341970248000081,6.370591539000131],[4.125824415000096,6.410345770000134],[3.870290561000047,6.431626695000105],[3.443614129000082,6.410345770000134],[3.421153191000087,6.414007880000084],[3.408864780000016,6.422919012000122],[3.399099155000073,6.434027411000145],[3.384938998000052,6.444525458000128],[3.39429772200009,6.4493675800001],[3.401052280000044,6.45099518400012],[3.406911655000073,6.449448960000082],[3.412852410000085,6.444525458000128],[3.428477410000085,6.458726304000137],[3.434255405000044,6.453355210000083],[3.436289910000085,6.438299872000158],[3.440196160000085,6.423407294000114],[3.475352410000141,6.455552476000165],[3.481211785000084,6.454779364000145],[3.484629754000082,6.446844794000086],[3.492442254000082,6.446478583000072],[3.505381707000083,6.451361395000134],[3.524424675000091,6.451808986000131],[3.541351759000065,6.454820054000137],[3.556813998000081,6.462958075000159],[3.57056725400011,6.47870514500012],[3.572438998000081,6.489569403000104],[3.570160352000102,6.500677802000126],[3.570811394000145,6.509344794000128],[3.580821160000113,6.512844143000109],[3.621348504000139,6.512844143000109],[3.64275149800008,6.517075914000131],[3.686778191000115,6.531073309000091],[3.700205925000091,6.527085679000122],[3.722666863000085,6.535956122000157],[3.74268639400006,6.547796942000119],[3.756846550000091,6.563788153000118],[3.762217644000145,6.585150458000086],[3.774668816000059,6.59007396000014],[3.857920769000089,6.602199611000131],[3.850271030000072,6.60809967700007],[3.84400475400011,6.610825914000131],[3.837901238000114,6.610988674000097],[3.830577019000117,6.609035549000154],[3.773692254000081,6.622381903000161],[3.717458530000101,6.601141669000171],[3.663828972000118,6.570217190000135],[3.615244988000143,6.554388739000103],[3.59701582100007,6.554266669000128],[3.586680535000084,6.552883205000143],[3.551524285000113,6.534165757000081],[3.540049675000148,6.530096747000115],[3.528330925000063,6.527777411000059],[3.515310092000078,6.527085679000122],[3.512950066000116,6.529445705000072],[3.500254754000082,6.533921617000132],[3.48804772200009,6.533270575000174],[3.481618686000076,6.538316148000121],[3.478526238000086,6.541449286000101],[3.474375847000147,6.554388739000103],[3.473317905000101,6.566636460000069],[3.48023522200009,6.588080145000106],[3.481211785000084,6.602199611000131],[3.464040561000047,6.592230536000145],[3.451914910000141,6.581773179000066],[3.429942254000139,6.557806708000115],[3.421885613000114,6.554754950000116],[3.411306186000047,6.554348049000112],[3.402354363000114,6.552150783000116],[3.39861087300008,6.543850002000141],[3.40007571700005,6.536810614000074],[3.40560957100007,6.52212148600016],[3.40601647200009,6.512844143000109],[3.402028842000107,6.502183335000083],[3.387950066000144,6.480698960000055],[3.384938998000052,6.468695380000127],[3.381114129000138,6.46161530200007],[3.373871290000125,6.456122137000136],[3.369802280000073,6.450018622000144],[3.375010613000143,6.441107489000117],[3.37989342500012,6.435858466000127],[3.382578972000089,6.430731512000122],[3.384125196000042,6.424790757000096],[3.389496290000096,6.419989325000102],[3.384532097000147,6.397691148000163],[3.326182488000143,6.391424872000115],[3.21420332100007,6.396714585000097],[3.082367384000094,6.381496486000116],[2.927744988000057,6.389105536000145],[2.703868035000085,6.368353583000143],[2.703841289345064,6.368351672639562],[2.704258260000131,6.429298605000128],[2.71192043500011,6.474047835000149],[2.715420369000071,6.494488424000138],[2.718803181000084,6.504297780000157],[2.737331177000101,6.558024597000113],[2.739398234000078,6.579186096000157],[2.730819946000054,6.621354065000119],[2.731130005000125,6.641843771000168],[2.742602172000147,6.663341167000127],[2.76068892400005,6.679386699000176],[2.772987915000101,6.68747406000017],[2.778568969000105,6.698765361000142],[2.775261677000117,6.744886576000169],[2.773297974000087,6.75504099500013],[2.767406860000079,6.759562683000155],[2.755004517000117,6.76072540300008],[2.744772583000042,6.763774312000109],[2.736297648000118,6.769846293000157],[2.728649536000148,6.780000713000121],[2.723585246000084,6.799715271000167],[2.7262724200001,6.821367697000156],[2.736917765000101,6.863303121000143],[2.731956828000136,6.905212708000135],[2.718417602000073,6.943556621000155],[2.715110311000075,6.979833476000109],[2.741051880000043,7.015800273000181],[2.752730754000083,7.021329651000187],[2.765546508000085,7.025102030000198],[2.775778442000075,7.030528056000094],[2.779705851000131,7.041328431000125],[2.773918090000052,7.050785217000097],[2.747666463000115,7.072230937000114],[2.739088175000091,7.082979635000143],[2.735264119000135,7.096002096000177],[2.736297648000118,7.10292673800015],[2.7406384680001,7.109592998000081],[2.749836873000106,7.128558248000118],[2.757795044000062,7.138893535000135],[2.761102336000079,7.148350322000098],[2.762135864000044,7.162199606000158],[2.741155232000068,7.408179424000195],[2.74363570100013,7.419238180000193],[2.751283814000089,7.423630677000104],[2.761722452000129,7.423527324000162],[2.783323201000115,7.419238180000193],[2.786527140000089,7.421253561000142],[2.787250610000086,7.426886292000176],[2.78962772600002,7.435826315000114],[2.792314901000054,7.477632548000158],[2.770197387000052,7.51427113900013],[2.7406384680001,7.549359437000149],[2.720588012000064,7.586566467000168],[2.715317017000132,7.625788879000126],[2.717641139000136,7.658548898000163],[2.727202596000069,7.793323873000148],[2.724412068000106,7.807689921000147],[2.715523722000086,7.822055969000147],[2.691545858000069,7.848669332000084],[2.680280396000114,7.877349752000086],[2.672218872000116,7.88959706700011],[2.671694505000062,7.893434477000184],[2.671081990000118,7.897916972000162],[2.673355753000124,7.905565084000145],[2.683587687000113,7.924633688000128],[2.687101684000055,7.933522034000133],[2.690925741000115,7.996567281000168],[2.703534790000048,8.059896749000174],[2.705705200000125,8.119686381000122],[2.708392375000045,8.137979838000177],[2.716143839000068,8.154903870000098],[2.726582479000086,8.171595357000129],[2.734437297000113,8.189966329000114],[2.734954061000082,8.211902975000086],[2.728132771000105,8.233193665000158],[2.70849572700007,8.274819031000163],[2.700744263000075,8.296884868000163],[2.69712691300009,8.320707703000139],[2.698367147000113,8.339853821000133],[2.706015259000111,8.381272481000096],[2.706015259000111,8.390548401000117],[2.703534790000048,8.409022726000131],[2.703741495000088,8.417885233000135],[2.709012492000113,8.430390931000133],[2.728959595000049,8.452740987000197],[2.736917765000101,8.46452321400011],[2.744772583000042,8.498293762000088],[2.742438669000109,8.527481443000141],[2.722948943000091,8.771217938000177],[2.722861776000087,8.772308045000145],[2.723171834000055,8.782927551000128],[2.72885624200012,8.790472310000082],[2.745702759000096,8.79814626000015],[2.751077107000043,8.803417257000191],[2.752317342000083,8.812279765000198],[2.74714969900009,8.827653503000178],[2.745909464000135,8.836516012000175],[2.749630167000049,8.851941427000085],[2.762135864000044,8.880415141000114],[2.762549276000072,8.895685527000154],[2.758725220000116,8.902661845000154],[2.753764282000077,8.90441884300013],[2.74952681500011,8.906615092000138],[2.747769816000044,8.91480580600016],[2.750250285000021,8.916872864000126],[2.76151574700009,8.933693542000185],[2.764719686000149,8.939765524000137],[2.770197387000052,8.967154032000082],[2.772367798000118,9.030535177000104],[2.769163859000059,9.05704518600011],[2.846265096000109,9.050766500000108],[2.859700969000073,9.052626851000113],[2.869312784000073,9.05970652300013],[2.877787720000072,9.068543192000135],[2.888433064000083,9.075364482000083],[2.899181762000097,9.077379862000129],[2.929877564000122,9.078361715000185],[2.940729614000077,9.077069804000146],[2.951685018000148,9.07190216100014],[2.961400187000094,9.065313416000151],[2.971425415000112,9.060507508000143],[2.983104289000096,9.060610861000086],[3.051420533000055,9.078206686000158],[3.076018514000054,9.095156555000159],[3.091314738000079,9.126420796000147],[3.124594360000031,9.228998515000129],[3.145161580000121,9.267859192000174],[3.151362752000097,9.288633117000131],[3.151466105000054,9.35356455500016],[3.148055461000098,9.370256042000108],[3.135343058000046,9.401675313000139],[3.12862512200013,9.429580587000132],[3.132552531000101,9.45727915500015],[3.151776164000125,9.488155823000142],[3.159010864000095,9.493478495000174],[3.175133911000074,9.498878683000157],[3.1825753170001,9.505338236000114],[3.243553507000058,9.584403178000102],[3.244690389000056,9.589570821000095],[3.23941939200003,9.602309062000158],[3.238179158000094,9.609052836000089],[3.245723918000039,9.633702495000179],[3.261846964000113,9.638611755000127],[3.281380656000124,9.634994405000143],[3.299053996000055,9.633960877000149],[3.331610148000095,9.652021790000163],[3.338638143000082,9.678221741000172],[3.330679972000041,9.70863332100015],[3.318380981000075,9.739432475000115],[3.314866984000048,9.759095358000152],[3.317140747000053,9.781729634000115],[3.325925740000031,9.801728415000142],[3.342048788000113,9.813588156000066],[3.413982381000068,9.842837016000203],[3.452946411000141,9.853094788000192],[3.513097778000088,9.84660939500013],[3.530771118000104,9.862964987000169],[3.557126099000072,9.910558981000108],[3.589475545000141,9.948825378000109],[3.599604126000088,9.968694966000115],[3.605805297000074,10.054116110000123],[3.612316528000065,10.070290833000115],[3.627819458000146,10.084992778000114],[3.642392212000118,10.091891582000173],[3.654897908000123,10.101115825000178],[3.663992961000105,10.123052470000147],[3.664830075000082,10.12865375000014],[3.667506957000057,10.14656524700014],[3.664613078000059,10.162197368000179],[3.65562137900011,10.174780578000194],[3.587615193000147,10.24418202700015],[3.573352498000077,10.26699717300015],[3.572422323000097,10.285704041000145],[3.592989543000101,10.330946757000135],[3.618207642000044,10.369342346000167],[3.62213505000011,10.381227926000093],[3.623168579000093,10.400916647000145],[3.625959106000067,10.407272848000162],[3.632573689000139,10.416652120000123],[3.652107381000064,10.435798238000118],[3.671744425000099,10.442076925000123],[3.692828409000129,10.43838205900012],[3.75690718600012,10.405257467000126],[3.772513469000074,10.40763458200017],[3.787706339000096,10.426367290000156],[3.7943209230001,10.444867452000096],[3.795354451000094,10.49649220800012],[3.804346151000118,10.523157248000159],[3.829874308000058,10.573076681000115],[3.837419067000014,10.59989674900011],[3.83724571500008,10.630609017000081],[3.83710900900013,10.654828797000134],[3.832148071000091,10.683922628000133],[3.822949666000085,10.703249613000182],[3.810237264000136,10.710484314000155],[3.79607792100009,10.713119812000171],[3.783262166000099,10.716969706000114],[3.773857056000054,10.728054301000126],[3.764451945000075,10.760868836000142],[3.759491008000055,10.771591696000158],[3.751946248000081,10.780169983000178],[3.743161255000103,10.787456360000164],[3.735099731000105,10.795776266000132],[3.730035441000041,10.807713521000082],[3.731275675000063,10.82502512600017],[3.752979777000064,10.877683411000177],[3.754116658000072,10.907138977000088],[3.733549438000097,10.996203308000176],[3.733549438000097,10.99646169100015],[3.723317505000097,11.013540751000107],[3.715876099000099,11.031885885000179],[3.711845337000085,11.051858826000114],[3.711845337000085,11.073511251000184],[3.722077271000074,11.112346090000145],[3.713705689000108,11.120304260000111],[3.705583311000055,11.120732942000146],[3.704403930000069,11.12079518700014],[3.694998820000109,11.119115703000176],[3.686730590000082,11.120485128000155],[3.662546020000093,11.14314524400011],[3.483332153000106,11.392303162000118],[3.468449340000063,11.419484965000095],[3.466692342000073,11.442480978000148],[3.486742798000137,11.496276144000163],[3.493047323000041,11.511494853000102],[3.504932902000064,11.556556702000135],[3.57438602700006,11.673035380000085],[3.596400187000114,11.695773010000067],[3.647766561000082,11.726003723000174],[3.659858846000077,11.73809600900016],[3.666990194000106,11.759696757000128],[3.662029256000067,11.779488831000108],[3.649730265000102,11.797833964000105],[3.626269165000053,11.822535299000108],[3.622031698000086,11.82501576800017],[3.618621053000055,11.828374736000098],[3.612936645000019,11.838968405000173],[3.609732707000148,11.848786927000134],[3.603944946000069,11.905579325000161],[3.608492473000098,11.921960754000125],[3.619551229000109,11.936275127000116],[3.636604452000142,11.953586732000117],[3.653554321000058,11.98681467700014],[3.64890344200009,12.02102447500013],[3.623995402000019,12.094249980000129],[3.624512166000073,12.137658183000127],[3.651487264000081,12.26901967400012],[3.641565389000107,12.51799672500016],[3.645699503000116,12.528538716000128],[3.864394165000135,12.68966583300012],[3.92909305800012,12.750385641000108],[4.088773234000115,12.9962362670002],[4.120324552000056,13.210607869000114],[4.12370650200009,13.233586121000187],[4.125773559000066,13.472977194000137],[4.190472453000041,13.475018413000099],[4.220548136000104,13.480625305000117],[4.248453409000091,13.494138692000192],[4.405756470000142,13.641235657000152],[4.452575318000072,13.673765971000194],[4.506732218000082,13.694669088000168],[4.625844677000088,13.723150820000157],[4.824852335000116,13.77073679700014],[4.856891724000121,13.774095765000155],[4.879836060000059,13.764018860000121],[4.902366984000082,13.742986552000103],[4.925104614000133,13.733090516000118],[4.983188924000046,13.729679871000187],[5.084371378000128,13.747534078000141],[5.227618449000147,13.741332907000157],[5.262034953000096,13.747740784000184],[5.273507120000119,13.752520854000094],[5.304202922000059,13.773940735000124],[5.3180522050001,13.789934591000161],[5.334795369000062,13.826702372000156],[5.346267538000092,13.8415593470001],[5.374069458000122,13.855253601000115],[5.521760701000061,13.880290832000112],[5.554316854000092,13.873417867000143],[5.837348673500145,13.763747559000151]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Niger","sov_a3":"NER","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Niger","adm0_a3":"NER","geou_dif":0,"geounit":"Niger","gu_a3":"NER","su_dif":0,"subunit":"Niger","su_a3":"NER","brk_diff":0,"name":"Niger","name_long":"Niger","brk_a3":"NER","brk_name":"Niger","brk_group":null,"abbrev":"Niger","postal":"NE","formal_en":"Republic of Niger","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Niger","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":3,"mapcolor13":13,"pop_est":15306252,"gdp_md_est":10040,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"NG","iso_a2":"NE","iso_a3":"NER","iso_n3":"562","un_a3":"562","wb_a2":"NE","wb_a3":"NER","woe_id":23424906,"woe_id_eh":23424906,"woe_note":"Exact WOE match as country","adm0_a3_is":"NER","adm0_a3_us":"NER","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"NER.geojson"},"geometry":{"type":"Polygon","coordinates":[[[14.2162170820001,22.6162950640001],[14.231720011000107,22.617948711000054],[14.294868612000073,22.649833069000096],[14.46602095600008,22.73618438800008],[14.637069947000041,22.82253570600002],[14.808015584000087,22.90888702400008],[14.979167928000093,22.995315857000065],[14.97927128000012,22.99536753400008],[14.979909027000131,22.9956637600001],[14.991983683000086,22.933097433000086],[15.003972616000055,22.870439758000142],[15.015858195000078,22.807782084000024],[15.02795048000007,22.745176087000118],[15.039939413000099,22.68254425100008],[15.051928345000078,22.619860739000075],[15.064020630000073,22.557177226000135],[15.075906210000083,22.49459706700011],[15.087998495000077,22.43191355400009],[15.099987427000116,22.369281718000078],[15.11207971200011,22.306598206000047],[15.12406864500008,22.243966370000038],[15.13605757600004,22.181334534000115],[15.148149861000036,22.11865102200008],[15.156314738000047,22.076172994000046],[15.164479614000044,22.033694967000088],[15.172024373000111,21.993387350000148],[15.172437785000113,21.97364695200008],[15.173264607000133,21.921557109000045],[15.174608195000102,21.847918193000027],[15.176055135000098,21.76342722600006],[15.177502075000092,21.678987936000027],[15.17884566200007,21.605297343000103],[15.179775838000097,21.553207500000042],[15.180085897000083,21.53346710200009],[15.180395955000078,21.507267151000065],[15.184530070000108,21.49119578000008],[15.200239706000074,21.476467998000086],[15.2474719650001,21.453265280000096],[15.266592245000085,21.44065623000006],[15.301008748000044,21.401330465000086],[15.324779907000107,21.36670725500008],[15.341419719000042,21.342160950000107],[15.358266235000116,21.317717998000063],[15.375009400000065,21.293223369000117],[15.391752564000114,21.268728739000068],[15.408495727000059,21.244234111000083],[15.42534224400012,21.21979115800005],[15.44198205500007,21.19519317700008],[15.458828572000128,21.17075022400013],[15.475571737000081,21.14625559500007],[15.492211548000085,21.121760966000124],[15.50905806500009,21.097266337000065],[15.525801229000109,21.072771709000104],[15.54254439300007,21.04827707900006],[15.559287556000127,21.023782450000084],[15.576134073000103,20.99933949800007],[15.592773885000044,20.974793192000078],[15.609310343000118,20.950660299000045],[15.569002727000052,20.92890452100002],[15.544301391000147,20.89030222600013],[15.536033162000109,20.84405181900007],[15.544198039000037,20.798989970000036],[15.55608361800006,20.773668519000037],[15.570242961000103,20.751912740000137],[15.588123006000073,20.73279246000004],[15.669461711000052,20.671865946000082],[15.697263631000112,20.642875468000113],[15.755554647000054,20.582000631000057],[15.813845663000079,20.521074117000094],[15.872033325000103,20.460199280000065],[15.93032434100013,20.399324443000125],[15.953992147000065,20.37457143200001],[15.968151490000109,20.352815654000096],[15.970321899000112,20.33633087100011],[15.9629838460001,20.319225973000073],[15.942519979000053,20.28395680800008],[15.902419067000068,20.214942932000042],[15.862318156000073,20.14595489600009],[15.822320598000088,20.076992697000065],[15.78232303800013,20.008030498],[15.767233521000035,19.982037252000055],[15.736020955000127,19.903540751000037],[15.732403605000059,19.86183787100009],[15.72837284400015,19.816259257000098],[15.724342081000058,19.77057729100008],[15.720207967000135,19.724998678000105],[15.716177206000054,19.679316712000087],[15.712146443000051,19.63376393700011],[15.708115682000056,19.588107808000103],[15.70408492100006,19.542529196000114],[15.700054158000084,19.496873068000127],[15.696023397000092,19.451242778000022],[15.69209598800012,19.405638327000133],[15.68796187300009,19.36000803600004],[15.683931112000094,19.314403585000065],[15.679900349000093,19.268747457000043],[15.675869588000097,19.223168844000067],[15.6718388270001,19.17753855400005],[15.667808064000099,19.131882426000058],[15.663777303000103,19.086303813000082],[15.659746541000118,19.040647685000067],[15.655715779000019,18.995069072000092],[15.651581665000093,18.94938710600007],[15.647550904000097,18.9038343310001],[15.643520141000096,18.85817820300008],[15.639592733000141,18.812599589000115],[15.635561971000046,18.766943462000086],[15.631531209000057,18.721313171000105],[15.627500447000072,18.675708720000017],[15.623469686000076,18.63007843000011],[15.619438924000063,18.584473979000023],[15.615304810000055,18.53881785100012],[15.611274048000041,18.49323923800003],[15.60724328600014,18.447583110000036],[15.60321252400007,18.402004496000043],[15.599181763000074,18.356348369000045],[15.59515100100006,18.31071807900014],[15.591120239000075,18.265087789000034],[15.587192831000095,18.219483338000146],[15.583162068000119,18.173878886000068],[15.579027954000082,18.128248597000066],[15.574997192000097,18.08264414500007],[15.570966430000084,18.03703969400007],[15.567697927000012,18.000038560000064],[15.566935669000088,17.991409403000088],[15.562904907000103,17.945779114000086],[15.558874145000116,17.900148825000084],[15.554843384000037,17.854570211000095],[15.550812622000107,17.808888245000077],[15.546781860000122,17.763309631000112],[15.542647746000114,17.71767934200011],[15.5386169840001,17.672049052000116],[15.53468957500013,17.6263670860001],[15.530658814000047,17.58073679600011],[15.526628051000046,17.53510650700011],[15.52259729000005,17.489527893000115],[15.518566529000053,17.443845927],[15.51453576600008,17.398267313000105],[15.510505005000084,17.352637024000018],[15.50637089100013,17.30705841100004],[15.502340128000041,17.261376444000035],[15.498309367000045,17.21574615500012],[15.494278605000147,17.17011586600003],[15.490247843000077,17.12453725200004],[15.486217082000081,17.078906963000065],[15.482289673000109,17.033276672000056],[15.478258911000095,16.98769805900008],[15.474124797000087,16.94206777000008],[15.471954386000107,16.916746318000094],[15.468517058000089,16.90490971200012],[15.465546509000148,16.89468048100008],[15.452420695000086,16.87623199400008],[15.418417603000135,16.840885315000065],[15.362400350000113,16.78264597600005],[15.306279745000067,16.724199931000072],[15.25015913900012,16.665908915000045],[15.19403853400007,16.607566223000077],[15.137917928000121,16.54927520800004],[15.081797322000083,16.490880839000084],[15.02578007000008,16.43253814800002],[14.969659464000102,16.37424713100009],[14.913538859000084,16.315904439000033],[14.857418253000018,16.257613424000084],[14.8014010010001,16.199219056000032],[14.745383748000078,16.140876364000093],[14.689263143000119,16.082533671000135],[14.633142537000081,16.02424265500008],[14.57691857900011,15.96579661000001],[14.520797973000072,15.907557272000078],[14.48214400200007,15.86724965400012],[14.423542928000131,15.80632314100009],[14.368972615000104,15.749634095000088],[14.340447225000046,15.710721741000016],[14.310681600000066,15.669949036000022],[14.280709269000111,15.629253846000067],[14.250943644000131,15.588455303000075],[14.221178019000149,15.54773427400002],[14.19120568800011,15.507039083000052],[14.161440063000015,15.466292216000083],[14.131571085000104,15.425545350000121],[14.101702108000097,15.384875997000066],[14.071833130000073,15.344180806000109],[14.04206750500009,15.303433940000046],[14.012198527000066,15.262687073000064],[13.982329549000069,15.22199188200011],[13.95256392400006,15.18121917700013],[13.922591593000021,15.140498149000065],[13.892825968000125,15.099699605000085],[13.862956991000118,15.059056092000047],[13.833914836000133,15.019601136000118],[13.808076619000104,14.965573426000049],[13.77541711400005,14.89743804900013],[13.760534302000082,14.866354675000082],[13.755159952000042,14.847208558000077],[13.753919718000105,14.825943706000102],[13.75795048000009,14.805531514000064],[13.772006469000104,14.762872620000067],[13.773246704000144,14.742512106000033],[13.764358358000036,14.71907684300007],[13.749165486000093,14.71124786400013],[13.730045206000113,14.709645895000106],[13.709994751000067,14.705124207000082],[13.700021199000048,14.697734477000067],[13.668085165000065,14.66287872300009],[13.648344767000111,14.649417013000045],[13.644727417000126,14.644249369000136],[13.64627770900006,14.639055888000115],[13.657026407000075,14.629650777000064],[13.660333699000148,14.623733826000148],[13.666741577000096,14.585519104000085],[13.665604695000098,14.566889751000117],[13.657853231000102,14.548725484000085],[13.62426355000008,14.521311137000042],[13.608052035000128,14.518266228000073],[13.584369344000038,14.5138180540001],[13.543855021000127,14.510562439000111],[13.507784872000116,14.495963847000056],[13.482256713000083,14.483587341000089],[13.44949385500007,14.439042257000082],[13.449183797000101,14.380131124000075],[13.468304077000084,14.310677999000104],[13.482256713000083,14.259776713000079],[13.492695353000016,14.213862204000094],[13.499723348000117,14.181977845000134],[13.506958048000087,14.150119324000073],[13.514192749000074,14.118234965000113],[13.521324097000104,14.086428121000067],[13.528455444000116,14.054517924000095],[13.535690145000103,14.022736918000064],[13.542821493000133,13.990852559000102],[13.549952840000088,13.958994039000046],[13.557187541000133,13.927161357000102],[13.564318889000075,13.895225321000112],[13.571450236000118,13.863418478000085],[13.578581583000044,13.83153411900011],[13.585816284000117,13.79972727500008],[13.59294763200006,13.767842916000106],[13.600182332000117,13.735984396000063],[13.607313680000061,13.704100037000087],[13.359990275000143,13.71440948500009],[13.358919718000038,13.714231979000147],[13.32991459100009,13.709422709000137],[13.320716186000084,13.702291362000095],[13.321232951000125,13.685108948000034],[13.306040079000098,13.674644471000093],[13.266145874000074,13.63803171900014],[13.259221232000073,13.628962505000073],[13.253846883000108,13.618911439000044],[13.253536825000138,13.614880676000055],[13.258601115000118,13.607801005000127],[13.260048055000112,13.602142436000094],[13.257257528000137,13.59423594200014],[13.250849650000104,13.592763163000129],[13.243821655000088,13.593254090000073],[13.239480835000107,13.591574605000117],[13.230179077000088,13.57775116000006],[13.23224613400015,13.572893575000135],[13.24640547700011,13.571084900000143],[13.228112020000111,13.548037212000082],[13.203927450000066,13.539381409000042],[13.176952352000114,13.534472148000106],[13.150183960000048,13.522664083000095],[13.153697957000105,13.530699768000076],[13.155868368000085,13.540776673000023],[13.153697957000105,13.548760681000088],[13.143982788000072,13.550621033000084],[13.138401733000135,13.546538595000085],[13.130960327000137,13.529821269000138],[13.123518921000112,13.522664083000095],[13.12382897900008,13.533438619000023],[13.123518921000112,13.536952617000082],[13.107085815000062,13.5315524290001],[13.088275594000038,13.530596415000048],[13.077010131000065,13.534678854000063],[13.08248783400006,13.544394023000095],[13.08248783400006,13.550621033000084],[13.05489261900007,13.548373108000078],[13.029261109000087,13.539174703000086],[12.939344116000058,13.49506886800009],[12.911748901000067,13.489901225000095],[12.88384362800008,13.495999044000143],[12.87970951300008,13.479695129000119],[12.870614461000088,13.478868307000099],[12.857798706000011,13.484914449000128],[12.84229577700009,13.489126079000087],[12.84229577700009,13.48168467300006],[12.850564006000042,13.479385071000122],[12.857592,13.475328471000125],[12.863896525000058,13.46928232800009],[12.870201050000075,13.46124664300011],[12.857075236000098,13.450652975000125],[12.829273315000052,13.420293071000073],[12.828549845000053,13.417450867000099],[12.829996786000066,13.409363505000101],[12.829273315000052,13.406624655000158],[12.82627608200005,13.406056214000102],[12.817594441000097,13.407296448000054],[12.815010620000095,13.406624655000158],[12.810669799000095,13.404299215000037],[12.797337280000079,13.39964833600007],[12.794546753000134,13.396056824000098],[12.798474161000087,13.384274597000084],[12.804778687000095,13.376859029000073],[12.805192098000106,13.372983297000118],[12.791136108000103,13.371846415000107],[12.788965698000112,13.375463765000092],[12.783281291000065,13.382336731000064],[12.777390177000058,13.38670339000005],[12.774599650000113,13.382698466000065],[12.773256062000144,13.382233378000137],[12.766538127000103,13.365671082000134],[12.740803264000107,13.334820252000055],[12.724370158000056,13.322288717000049],[12.701735880000115,13.31725026400008],[12.690057006000131,13.311979269000048],[12.683132365000063,13.288931580000082],[12.674347371000067,13.283712260000073],[12.659154500000056,13.28660614000006],[12.649232626000128,13.293608297000063],[12.640654337000115,13.302393291000044],[12.630008993000018,13.310377299000024],[12.628768758000092,13.294176737000114],[12.626805054000044,13.288259786000095],[12.620190471000058,13.281438497000053],[12.613265829000085,13.2765033980001],[12.60613448100014,13.274229635000097],[12.60272383600011,13.27999155700006],[12.597556193000088,13.2765033980001],[12.561072631000087,13.242758687000046],[12.5581787510001,13.226532288000044],[12.54515629000008,13.20821299300006],[12.53833500200011,13.193356018000117],[12.554251343000118,13.187542420000042],[12.547946818000128,13.165450745000044],[12.542572469000078,13.15477956100004],[12.53451094500008,13.145917054000037],[12.526966186000037,13.143643290000114],[12.504331909000086,13.139612529000118],[12.499784383000131,13.135969340000116],[12.491206096000097,13.082639262000043],[12.48665856900007,13.070805359000119],[12.472705932000082,13.064164937000115],[12.456376180000035,13.067420553000103],[12.437255900000139,13.074009298000092],[12.414311564000114,13.077626648000077],[12.386741699000083,13.07858046500013],[12.351576375000148,13.079797058000068],[12.335246622000028,13.084473775000035],[12.325738159000139,13.078815206000101],[12.318400105000137,13.083853658000066],[12.310958699000139,13.092638652000062],[12.30103682500004,13.09811635400014],[12.291528361000047,13.096824443000086],[12.285327189000071,13.09201853500008],[12.280883016000075,13.086850891000083],[12.277162313000133,13.084473775000035],[12.26920414200009,13.085869039000116],[12.267447143000112,13.089641419000131],[12.267033732000101,13.095170797000051],[12.263209676000145,13.101862895000068],[12.251840861000062,13.108012390000127],[12.201404663000062,13.12542734800006],[12.18476485100004,13.122094218000143],[12.163784220000137,13.107960714000114],[12.149624878000083,13.105583598000067],[12.116448609000088,13.10284474700012],[12.057640828000103,13.116771546000109],[12.038003784000066,13.126357524000113],[11.99190840600005,13.162091777000114],[11.852795451000134,13.245394186000055],[11.742311238000127,13.289448344000034],[11.440004110000075,13.364430848000097],[10.953005412000065,13.361898702000104],[10.771311076000103,13.382698466000065],[10.674986206000113,13.375102030000093],[10.647881836000067,13.369406184000084],[10.161529175000112,13.267201640000081],[10.119774618000063,13.250096741000036],[9.93012211100006,13.145968729000044],[9.912448771000127,13.129199728000088],[9.908211303000087,13.118786927000144],[9.904387247000045,13.09434397400011],[9.899736368000077,13.084318746000093],[9.891778198000111,13.076231384000096],[9.88774743600004,13.075507915000102],[9.882683146000147,13.076231384000096],[9.872037801000147,13.072562358000098],[9.852814169000055,13.060444234000101],[9.819327840000142,13.029205831000112],[9.647657343000075,12.83053796200005],[9.640734090000109,12.822525940000062],[9.629261922000097,12.812784933000117],[9.61840987100004,12.805782776000115],[9.611485229000067,12.802940572000137],[9.590297892000109,12.801390280000119],[9.377907756000099,12.825781555000049],[9.359821004000082,12.824592997000124],[9.306490926000095,12.809839376000111],[9.269387248000015,12.809787699000097],[8.977871813000093,12.8431828220001],[8.942792196000084,12.847201436000162],[8.679345743000082,12.92357920400012],[8.642655477000119,12.944353129000149],[8.62549890200006,12.96479115800011],[8.596766805000073,13.011403300000083],[8.577233114000137,13.0324356080001],[8.533514851000064,13.064630025000042],[8.50964034000009,13.075921326000113],[8.482665242000053,13.081554057000046],[8.470779663000116,13.081657410000076],[8.445974976000088,13.078711853000073],[8.434502807000085,13.075094503000088],[8.423133993000079,13.069487610000067],[8.418999877000147,13.066697083000108],[8.415175822000036,13.0670588170001],[8.405150594000105,13.070857036000135],[8.397812541000091,13.075404562000074],[8.297973673000087,13.164623922000102],[8.273065633000101,13.19387278300006],[8.25983646600011,13.20521575900004],[8.24672782800013,13.211291661000061],[8.24567712400008,13.21177866600003],[8.216014852000114,13.219607646000057],[8.201442098000143,13.226377258000085],[8.167645711000148,13.252370504000055],[8.14005049600007,13.269113668000102],[8.11658939600008,13.29105031400006],[8.105117228000069,13.299654440000097],[8.077522013000078,13.31001556400011],[7.823997436000098,13.345284729000099],[7.789684286000067,13.341977437000097],[7.755577840000115,13.327146302000074],[7.39198246300012,13.112534078000067],[7.3606665450001,13.102638042000065],[7.324803100000053,13.10284474700012],[7.220520061000115,13.121577454000118],[7.198195841000142,13.117391663000078],[7.137424357000043,13.04724090600011],[7.090088745000088,13.006390686000115],[7.068694702000073,12.996081238000116],[7.062920948000112,12.995139865000112],[7.04492354300001,12.992205506000062],[6.970509481000107,12.991843771000063],[6.937126505000037,12.995409444000131],[6.906637410000144,13.006855774000144],[6.874184611000118,13.030497742000065],[6.83790775500006,13.063493144000134],[6.778686564000083,13.130284933000084],[6.753879129000069,13.174899667000075],[6.672543172000132,13.321177673000136],[6.509297322000093,13.49605072100006],[6.368944133000042,13.626275330000055],[6.302178181000102,13.663844096000062],[6.284207679000104,13.667656410000092],[6.229831176000062,13.679191996000027],[6.210607543000037,13.675264587000058],[6.152833293000128,13.64356109700013],[6.142394653000082,13.640822246000097],[6.135780069000106,13.643664450000074],[6.129475545000076,13.649064637000038],[6.120380493000113,13.654077251000102],[5.837348673500145,13.763747559000095],[5.554316854000092,13.8734178670001],[5.521760701000061,13.880290832000071],[5.374069458000122,13.855253601000056],[5.346267538000062,13.841559347000041],[5.334795369000062,13.8267023720001],[5.3180522050001,13.789934591000105],[5.304202922000059,13.773940735000068],[5.27350712000009,13.752520854000053],[5.262034953000096,13.747740784000143],[5.227618449000119,13.741332907000098],[5.0843713780001,13.747534078000086],[4.983188924000018,13.72967987100013],[4.925104614000133,13.733090516000074],[4.902366984000053,13.742986552000062],[4.879836060000059,13.764018860000078],[4.856891724000093,13.77409576500011],[4.824852335000088,13.770736797000097],[4.62584467700006,13.723150820000114],[4.506732218000082,13.694669088000126],[4.452575318000044,13.673765971000137],[4.405756470000114,13.64123565700011],[4.248453409000091,13.494138692000135],[4.220548136000104,13.480625305000075],[4.190472453000041,13.475018413000058],[4.125773559000066,13.472977194000094],[4.12370650200009,13.233586121000144],[4.120324552000056,13.210607869000057],[4.088773234000115,12.996236267000157],[3.92909305800012,12.750385641000065],[3.864394165000135,12.689665833000063],[3.645699503000116,12.528538716000085],[3.641565389000107,12.517996725000115],[3.651487264000081,12.269019674000077],[3.624512166000073,12.137658183000084],[3.623995402000019,12.094249980000086],[3.64890344200009,12.02102447500009],[3.653554321000058,11.986814677000098],[3.636604452000142,11.953586732000062],[3.619551229000109,11.936275127000059],[3.608492473000098,11.921960754000068],[3.603944946000069,11.905579325000119],[3.609732707000148,11.848786927000091],[3.612936645000019,11.838968405000116],[3.618621053000055,11.828374736000043],[3.622031698000086,11.825015768000128],[3.626269165000053,11.822535299000064],[3.649730265000102,11.797833964000048],[3.662029256000067,11.779488831000066],[3.666990194000106,11.759696757000084],[3.659858846000077,11.738096009000115],[3.647766561000082,11.726003723000119],[3.596400187000114,11.695773010000025],[3.589372193000117,11.701509095000077],[3.580070435000096,11.717373759000083],[3.571698852000111,11.721869608000103],[3.568184855000055,11.729517721000079],[3.566221150000018,11.738354391000087],[3.562500447000104,11.74600250300007],[3.557436157000041,11.761815491000064],[3.553715454000042,11.769670309000091],[3.549271280000113,11.773752746000099],[3.543690226000109,11.777060038000101],[3.536972290000079,11.782899476000082],[3.503485961000081,11.829976705000078],[3.495424439000089,11.837521464000119],[3.484262329000046,11.845169577000107],[3.447675415000106,11.857985331000094],[3.402820272000042,11.885270488000103],[3.391658163000102,11.888836161000071],[3.380909465000087,11.895037334000065],[3.369127238000061,11.897311096000081],[3.355071248000058,11.889042868000033],[3.341635376000113,11.882893372000053],[3.327786092000053,11.88640736900011],[3.315487102000105,11.894572246000038],[3.307012166000106,11.902375387000047],[3.292749471000121,11.918653463000068],[3.269908488000112,11.956532288000062],[3.262570435000015,11.974722392000103],[3.257609497000061,11.997408346000071],[3.255129028000084,12.01875071200007],[3.252028442000067,12.024125062000039],[3.238489217000079,12.034201965000065],[3.23538863100012,12.039524638000117],[3.063409464000102,12.19377878900012],[3.022895142000095,12.252483215000083],[3.013076620000049,12.271086731000123],[3.009355917000022,12.276306051000049],[3.000984334000037,12.278889873000137],[2.967808064000025,12.282558899000051],[2.95602583800013,12.286848043000106],[2.944967081000129,12.292480774000138],[2.936802205000106,12.300852357000108],[2.930394328000062,12.323331604000117],[2.92264286300005,12.335630595000067],[2.912617635000032,12.346327616000082],[2.892257121000114,12.357076314000096],[2.844301392000062,12.399244283000144],[2.832415812000136,12.384051413000122],[2.808644653000073,12.383224589000093],[2.798412720000101,12.381209209000147],[2.778155558000094,12.381932678000053],[2.768543742000077,12.38007232700005],[2.757484985000076,12.372940979000106],[2.741465291000026,12.354130758000096],[2.732266886000048,12.346792704000093],[2.721828247000104,12.344260560000109],[2.711286254000129,12.351236878000108],[2.700434204000089,12.34710276300008],[2.695059855000125,12.34121165000009],[2.692165975000137,12.334028626000132],[2.6902022700001,12.326173808000092],[2.686894979000101,12.318422343000094],[2.672942342000113,12.296718241000093],[2.663847290000149,12.291550598000084],[2.628603963000074,12.300800680000108],[2.621679321000073,12.299508769000056],[2.609690389000122,12.290775452000076],[2.603592570000075,12.287829895000085],[2.598631632000121,12.288346659000112],[2.590053345000086,12.293307597000066],[2.586125936000116,12.294031067000063],[2.550572550000055,12.284522604000088],[2.54602502400013,12.2816287240001],[2.536929972000053,12.273050436000062],[2.53124556500012,12.269691467000142],[2.523700806000079,12.269174703000104],[2.52060021900013,12.273670553000045],[2.519049927000111,12.279148255000123],[2.516259400000138,12.28142201700014],[2.504477173000055,12.281835429000054],[2.495072062000076,12.283230692000132],[2.488044067000089,12.280388489000059],[2.483393188000122,12.268037822000094],[2.477708781000075,12.257599182000163],[2.472644491000096,12.259252829000118],[2.46696008300006,12.26504058800009],[2.459518677000119,12.266745911000058],[2.454351033000108,12.263025208000045],[2.446082805000088,12.251811422000088],[2.443705689000126,12.249227600000097],[2.43088993300006,12.24798736600006],[2.407945597000122,12.2489175420001],[2.394199666000077,12.247212219000048],[2.370015096000117,12.236256816000065],[2.361230102000121,12.218893535000047],[2.362056925000047,12.196155905000069],[2.371875447000122,12.140448711000133],[2.405568481000074,12.046707662000072],[2.411149536000095,12.036785788000074],[2.418280883000108,12.028672587000074],[2.428616170000026,12.020352682000109],[2.439261515000112,12.015598450000113],[2.448769979000105,12.01337636400011],[2.455281209000077,12.008673808000125],[2.457348267000043,11.996219787000143],[2.456728149000071,11.979063212000085],[2.449390096000087,11.97751291900006],[2.438951457000144,11.981285299000092],[2.428926228000108,11.980355123000038],[2.422001587000125,11.973172099000081],[2.414146769000098,11.958702698000153],[2.407428832000079,11.951209616000114],[2.398747192000116,11.948780823000062],[2.389342081000052,11.950072734000102],[2.380867146000071,11.947902324000026],[2.37518273900011,11.935034892000118],[2.376526327000079,11.92407948900005],[2.388205201000062,11.906767884000132],[2.390168904000092,11.896535950000072],[2.338079061000116,11.940099182000097],[2.258807413000085,12.048774720000038],[2.188527466000096,12.145461324000095],[2.113803345000093,12.24798736600006],[2.070911905000031,12.30689849900007],[2.051791626000039,12.341935120000088],[2.054168741000097,12.370925599000145],[2.069258260000083,12.383327942000037],[2.126929159000071,12.39511016900012],[2.131476685000081,12.398520814000065],[2.13871138500005,12.408339336000026],[2.145015910000069,12.411749980000138],[2.148013142000082,12.41076812700008],[2.158761840000096,12.405652160000086],[2.163826131000093,12.404773661000148],[2.223254028000042,12.409734599000103],[2.237930135000113,12.413455302000116],[2.244958130000043,12.424152324000119],[2.242994425000091,12.446166484000102],[2.243097778000021,12.451179098000068],[2.24630171700008,12.461669414000113],[2.24630171700008,12.465906880000162],[2.242270955000095,12.473451640000107],[2.229558553000061,12.487145895000126],[2.22387414500011,12.494845683000037],[2.215709269000087,12.51034861200013],[2.210851684000147,12.523061015000096],[2.203203572000092,12.58331573500007],[2.199999633000118,12.59592478400009],[2.193281698000078,12.609464009000078],[2.184289998000054,12.620626119000107],[2.165996541000084,12.63173655200012],[2.155454549000098,12.640004781000073],[2.144809204000126,12.650753479000088],[2.140985148000084,12.656127828000137],[2.135197388000108,12.675609843000132],[2.109049113000111,12.705633851000101],[2.068948202000115,12.716279196000087],[1.971693156000071,12.724237366000054],[1.962494750000076,12.719121399000073],[1.945544881000074,12.700827942000089],[1.934486124000074,12.693541565000118],[1.926631307000122,12.694988505000111],[1.919603312000021,12.698347473000112],[1.911438436000111,12.696642151000061],[1.906994262000097,12.691836243000054],[1.900172974000043,12.678452047000107],[1.883223104000137,12.65395741800006],[1.872681112000066,12.634217021000097],[1.860692179000125,12.617060445000035],[1.843742309000106,12.606105042000152],[1.826068969000119,12.604193014000131],[1.699461710000122,12.614890035000144],[1.597039021000086,12.623675029000125],[1.563862752000063,12.632149964000135],[1.535854126000061,12.647497864000101],[1.467124471000091,12.704393616000061],[1.412037394000037,12.749868876000122],[1.330595336000101,12.817177429000111],[1.304806449000068,12.838507989000107],[1.230756470000074,12.899756368000055],[1.170915161000096,12.949210714000086],[1.113967733000038,12.996236267000157],[1.083788696000028,13.010989888000069],[1.012268513000095,13.016881002000076],[0.983536418000085,13.03235809300007],[0.974648071000075,13.048326111000108],[0.971754191000087,13.067317200000074],[0.971661196000127,13.085782453000135],[0.971340779000087,13.14940521300008],[0.970824015000033,13.243533834000061],[0.970410604000023,13.328334859000092],[0.983536418000085,13.36840993300008],[1.004723755000043,13.364844259000108],[1.084718872000082,13.33358001800012],[1.13846236100008,13.320376689000128],[1.160683228000039,13.311307475000163],[1.167607869000108,13.31342620900004],[1.17763309800003,13.347610169000118],[1.182387329000022,13.358694764000049],[1.187658325000143,13.364120789000111],[1.205745076000056,13.358901469000102],[1.222074829000093,13.344612935000114],[1.241505168000089,13.33554372100015],[1.268686971000079,13.346059875000108],[1.249566691000069,13.367066346000113],[1.234270467000016,13.377582500000074],[1.21742395000004,13.381768290000108],[1.175049275000021,13.386910095000104],[1.157169230000079,13.392646179000067],[1.04823531100007,13.44194549600006],[1.015265747000115,13.465664978000106],[0.996558878000116,13.49605072100006],[0.991391235000122,13.541112569000106],[0.950980266000045,13.583203024000042],[0.896926717000071,13.614932353000157],[0.85072798600001,13.628600769000071],[0.813107544000076,13.6250350950001],[0.795330852000063,13.62596527100007],[0.775693807000039,13.63529286700009],[0.763704874000069,13.646429138000116],[0.762878052000133,13.65304372200012],[0.766288696000061,13.65717783600013],[0.767012166000058,13.660872701000145],[0.766185343000132,13.666970520000104],[0.766392049000103,13.675109558000115],[0.763498169000115,13.682034200000087],[0.753369588000055,13.684101258000055],[0.620664510000097,13.679967143000042],[0.594309530000118,13.688881328000065],[0.580460245000069,13.713789368000121],[0.584801066000068,13.729008077000058],[0.5945162350001,13.749859517000118],[0.600510701000104,13.768721415000142],[0.59368941200006,13.77810068700009],[0.57446577900015,13.785025330000082],[0.563200317000081,13.796781718000076],[0.55296838400011,13.810036723000081],[0.519275350000044,13.83163747200014],[0.504082479000118,13.845357564000068],[0.499925937000114,13.85101508000011],[0.491990194000039,13.861816508000047],[0.483515259000029,13.880342509000073],[0.475660441000088,13.88894663500011],[0.454809001000029,13.902356669000156],[0.448633666000148,13.909617208000043],[0.448065227000086,13.920107524000086],[0.456255941000023,13.938142599000088],[0.456695190000062,13.946850078000054],[0.445920654000105,13.958580628000036],[0.428376506000063,13.967494812000055],[0.411865886000072,13.978424377000124],[0.403933553000115,13.99607187900011],[0.401866495000149,14.013796895000041],[0.391376180000094,14.022581889000037],[0.378353719000074,14.028808900000115],[0.369155314000068,14.0390666710001],[0.369051961000139,14.047851664000092],[0.377320190000091,14.063948873000072],[0.378457072000089,14.070434265000117],[0.374219605000036,14.078883362000113],[0.368741902000039,14.084154358000147],[0.362463216000123,14.088856913000129],[0.356262044000061,14.09570404100009],[0.343575480000112,14.11433339500006],[0.339157145000115,14.125779725000157],[0.343472127000069,14.137536113000067],[0.367398315000088,14.173787130000107],[0.37215254700007,14.18564687100013],[0.377423543000106,14.216601054000135],[0.381118408000106,14.225670268000101],[0.390601034000099,14.237633362000054],[0.391634562000064,14.245927430000108],[0.388792358000103,14.251611837000054],[0.346366007000057,14.307577414000065],[0.202382348000128,14.43554454100014],[0.188649536000099,14.447749736000047],[0.158832234000016,14.496118877000086],[0.152941121000111,14.546710103000123],[0.219707072000062,14.731220805000063],[0.213092488000143,14.761632386000128],[0.184102010000089,14.81956166600007],[0.185755656000111,14.848190409000052],[0.198002971000051,14.863796692000093],[0.211852254000121,14.874803772000078],[0.22084395400006,14.888213806000126],[0.218466838000012,14.910977275000109],[0.212782430000061,14.960715841000123],[0.213195841000072,14.985417175000121],[0.221257365000071,14.995933329000096],[0.353187297000119,14.963428854000156],[0.387035359000038,14.96324798600011],[0.418790527000056,14.969888408000116],[0.483515259000029,14.992109274000141],[0.514831177000133,14.993556213000133],[0.670067180000018,14.939735209000121],[0.683813110000045,14.94087209100013],[0.71140832500015,14.947460836000118],[0.73993371600011,14.958338725000074],[0.769182577000066,14.96906158500009],[0.922144816000099,14.973970845000123],[0.949326619000089,14.979551900000047],[0.973717895000021,14.991256612000115],[1.057537069000091,15.067117615000129],[1.123062784000098,15.12631296800002],[1.203161255000055,15.198789165000107],[1.27085738100007,15.259896546000107],[1.297832478000089,15.275735372000115],[1.331525512000042,15.283616028000052],[1.405216105000079,15.286148173000143],[1.501747680000079,15.289352112000117],[1.598382608000065,15.292607728000092],[1.694914185000073,15.295734151000145],[1.791445760000101,15.298989766000131],[1.888080689000077,15.302193706000095],[1.984612264000077,15.305397645000072],[2.081350545000078,15.30857574400004],[2.177882121000096,15.311831360000028],[2.274517049000053,15.314983623000073],[2.371048624000081,15.31823923800006],[2.467683553000142,15.321417338000115],[2.564215128000086,15.324595439000092],[2.660953410000047,15.327825216000067],[2.757484985000076,15.33108083100005],[2.854119914000137,15.334207256000099],[2.95065148900008,15.337462871000085],[3.000157511000111,15.339116516000045],[3.005738566000047,15.352319844000121],[3.005841919000062,15.389294332000077],[3.00780562300011,15.407665304000147],[3.010286092000086,15.417664693000077],[3.017520792000141,15.422832337000088],[3.033540487000096,15.426449687000074],[3.07302128000012,15.427198995000069],[3.192290486000018,15.407510274000117],[3.380392700000129,15.376323547000139],[3.483332153000106,15.35929616300011],[3.488809855000085,15.357539164000045],[3.507103312000055,15.353973491000074],[3.516508423000118,15.46918609700009],[3.526533651000136,15.49595448900004],[3.61407352700013,15.54773427400002],[3.69220829300005,15.631450094000058],[3.728898559000129,15.650880432000035],[3.808376912000113,15.665582377000135],[3.846100708000079,15.6852969360001],[3.871215454000093,15.714804179000112],[3.873849402000075,15.720881837000093],[3.886511678000147,15.75009918300009],[3.894469849000103,15.788649801000075],[3.903461548000053,15.886318258000102],[3.909869425000096,15.904766744000112],[3.925062296000107,15.927607727000035],[3.983249959000119,15.983986715000043],[3.984180135000088,15.986880595000029],[3.984800253000059,15.98982615200012],[3.984593546000099,15.99592397100008],[3.984696899000113,15.997370911000075],[3.984490193000084,15.998766175000071],[3.98397342900003,16.000109762000136],[3.983249959000119,16.001349996000073],[3.970847615000053,16.030857239000085],[3.9669202070001,16.058504130000102],[3.97115767400004,16.086099345],[4.060557902000141,16.298334453000052],[4.075647420000053,16.321072083000047],[4.094767700000119,16.340812480000096],[4.118228800000111,16.358330790000053],[4.161740356000023,16.37998321500004],[4.175899699000069,16.39264394100007],[4.183961222000079,16.41605336500004],[4.183444458000025,16.526537578000074],[4.18303104600011,16.612682190000072],[4.182307576000113,16.74647247300004],[4.181997518000031,16.80962107400009],[4.184581339000117,16.818509420000083],[4.197603800000081,16.838508199000042],[4.202047974000095,16.848895162000048],[4.196570272000088,16.947132060000058],[4.197810506000025,16.965218811000057],[4.203701619000128,16.98278879800003],[4.211659790000083,16.986044413000116],[4.222305135000084,16.986561177000052],[4.235637655000119,16.995862935000076],[4.235327596000019,17.100817770000106],[4.235017537000147,17.16391469400014],[4.234707479000065,17.287524719000118],[4.234294067000036,17.411186422000128],[4.233777303000096,17.534796448000122],[4.233363892000085,17.65845815100002],[4.233053832000109,17.78211985300001],[4.232640421000099,17.905781556000107],[4.232408236000055,17.975233873],[4.232227010000088,18.0294432580001],[4.231916952000091,18.15310496000012],[4.231503540000091,18.276740824000115],[4.23109012900008,18.400325012000078],[4.230676717000051,18.524038392000108],[4.230270912000066,18.645373847000087],[4.230263305000051,18.647648417000084],[4.22984989400004,18.771284281000078],[4.22943648200004,18.89494598400009],[4.229023071000114,19.01858184900007],[4.228609660000103,19.142243551000064],[4.417228637000051,19.178417054000107],[4.605847616000091,19.21461639400013],[4.794466593000038,19.250764059000062],[4.983188924000018,19.286963399000083],[5.082821085000091,19.30600616500007],[5.301825806000096,19.34799326600009],[5.520830525000092,19.389902853000052],[5.62046268700007,19.408997294000045],[5.749343709000101,19.433698629000077],[5.794302205000093,19.449795838000025],[5.837607055000063,19.47863128700007],[5.91636193800008,19.546275737000144],[5.979407186000117,19.6005359910001],[6.04255578600015,19.654744568000126],[6.105601033000084,19.709004822000054],[6.168646281000121,19.76321339900008],[6.231691528000056,19.817473653000036],[6.294736775000074,19.87168223100008],[6.357782023000112,19.925916646000104],[6.420930623000061,19.980176900000057],[6.483769165000041,20.034385478000072],[6.546917765000103,20.088645732000113],[6.60996301300014,20.142854309000143],[6.672956583000143,20.197114563000095],[6.73610518400011,20.251323140000125],[6.799047078000115,20.30553171800005],[6.862092326000038,20.35974029500008],[6.925137574000074,20.414000549000033],[6.982808471000055,20.463609925000096],[7.020532267000077,20.495442607000143],[7.098046916000044,20.558746236000047],[7.169463745000143,20.616985576000076],[7.240880574000073,20.67517323800007],[7.312297404000077,20.733464254000125],[7.383610881000038,20.79165191700011],[7.482726278000057,20.872577210000117],[7.613777710000078,20.94973012300008],[7.681887247000077,20.989831034000076],[7.749790079000121,21.02998362200009],[7.817899617000136,21.070084534000074],[7.886009155000039,21.110237122000086],[7.953911987000083,21.1503897100001],[8.022021525000099,21.19049062100009],[8.090131063000113,21.23059153300008],[8.158033895000045,21.270744120000103],[8.226143432000072,21.31084503200009],[8.29425297000006,21.3509459440001],[8.36225915500006,21.3910468550001],[8.430265340000119,21.431147766000095],[8.498374878000021,21.47130035400008],[8.566381063000108,21.511349589000076],[8.634490600000106,21.55150217700009],[8.702496786000095,21.5916547650001],[8.770606323000095,21.631807353000113],[8.838612508000068,21.671908265000095],[8.906722046000084,21.712060852],[8.974831583000082,21.75211008700009],[9.042837769000073,21.7922626750001],[9.110843953000142,21.83236358700009],[9.178953491000128,21.872516175000012],[9.246959676000131,21.9125654100001],[9.314965860000086,21.952717997],[9.38307539900009,21.99281890900008],[9.451081583000075,22.032919820000075],[9.519087769000066,22.073072408000087],[9.587197306000064,22.113224997000117],[9.655203491000037,22.153325908000113],[9.723313029000051,22.19342681900011],[9.791319214000026,22.233579407],[9.859325399000113,22.273680318000086],[9.927434936000111,22.313781230000103],[9.995441122000102,22.35388214200009],[10.063447306000057,22.39403472900011],[10.131556844000073,22.434135641000093],[10.199563029000046,22.474236552],[10.267569213000113,22.51433746300009],[10.33567875200012,22.554541728000117],[10.403788289000147,22.594642640000103],[10.471691122000095,22.63474355100001],[10.539800659000093,22.674896139000026],[10.607806844000066,22.714945374000106],[10.675813029000068,22.755046285000105],[10.74392256700014,22.79519887300009],[10.812032104000052,22.8353256230001],[10.88003828900014,22.875374857000082],[10.948147827000042,22.915527446000084],[11.016257364000069,22.955654195000108],[11.084366903000074,22.9957551060001],[11.1522697340001,23.035881857000106],[11.220379273000106,23.076060283000114],[11.288488810000018,23.116161194000114],[11.356391642000062,23.156262106000014],[11.424501180000078,23.19641469300012],[11.492610717000076,23.236515605000108],[11.560513550000024,23.276590678000105],[11.62862308700005,23.31671742800009],[11.696732626000141,23.356844177000113],[11.764738810000038,23.396945089000013],[11.832744995000096,23.43704600100008],[11.900854533000114,23.477172750000104],[11.96886071700007,23.51735117600012],[12.057020711000119,23.49761077900007],[12.145284058000101,23.477947897],[12.233650757000133,23.45828501400007],[12.32181075000008,23.43862213200012],[12.409970744000134,23.418881734000053],[12.498337443000139,23.399244690000046],[12.586497437000105,23.379581808000097],[12.674657430000138,23.359893087000046],[12.763024129000144,23.340178528000077],[12.85118412300011,23.320489808000048],[12.9394474690001,23.30082692500008],[13.027607462000049,23.28113820400003],[13.115870809000029,23.261449483000092],[13.204134155000105,23.241709087000032],[13.292397502000084,23.22209788],[13.380660848000076,23.20238332200003],[13.482256713000083,23.17967153000006],[13.599562215000049,23.119029236000102],[13.655786173000136,23.07262379900007],[13.780894816000112,22.969632671000085],[13.906055135000116,22.866615703],[14.03100874800009,22.76370208700004],[14.156169067000091,22.660736796000066],[14.201644328000043,22.62321970600007],[14.2162170820001,22.6162950640001]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Rwanda","sov_a3":"RWA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Rwanda","adm0_a3":"RWA","geou_dif":0,"geounit":"Rwanda","gu_a3":"RWA","su_dif":0,"subunit":"Rwanda","su_a3":"RWA","brk_diff":0,"name":"Rwanda","name_long":"Rwanda","brk_a3":"RWA","brk_name":"Rwanda","brk_group":null,"abbrev":"Rwa.","postal":"RW","formal_en":"Republic of Rwanda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Rwanda","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":3,"mapcolor13":10,"pop_est":10473282,"gdp_md_est":9706,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"RW","iso_a2":"RW","iso_a3":"RWA","iso_n3":"646","un_a3":"646","wb_a2":"RW","wb_a3":"RWA","woe_id":23424937,"woe_id_eh":23424937,"woe_note":"Exact WOE match as country","adm0_a3_is":"RWA","adm0_a3_us":"RWA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"RWA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[30.47178584300013,-1.066836591999916],[30.463855835000118,-1.075127054999925],[30.45615604700009,-1.086082457999908],[30.453003785000135,-1.097347919999962],[30.45631107600013,-1.108096617999891],[30.470883829000112,-1.118121845999909],[30.4741911210001,-1.131764424999915],[30.472072388000125,-1.137655537999919],[30.46830000800008,-1.143339944999866],[30.46561283400007,-1.149334410999899],[30.467266479000042,-1.155328876999917],[30.476051473000094,-1.161219990999925],[30.484009643000093,-1.159979755999885],[30.49052087400014,-1.156465758999929],[30.494654989000086,-1.155328876999917],[30.506953979000116,-1.164217223999927],[30.511191447000044,-1.170418395999917],[30.51511885600013,-1.196256611999942],[30.521216675000062,-1.210829365999899],[30.539406779000046,-1.241008401999906],[30.54529789200012,-1.261368915999924],[30.554599650000053,-1.273461201999922],[30.55661503100009,-1.281626077999931],[30.555633179000036,-1.284726663999876],[30.55335941600003,-1.289067483999858],[30.550982300000097,-1.294958597999951],[30.549948771000118,-1.302400003999878],[30.55532312000014,-1.318419697999929],[30.568242228000145,-1.328134867999964],[30.597697795000045,-1.340330504999883],[30.608239787000112,-1.347771911999913],[30.623225952000098,-1.362034606999885],[30.6324243570001,-1.367615660999903],[30.698466837000126,-1.392110290999952],[30.718103881000165,-1.394900817999911],[30.737534220000043,-1.406683043999919],[30.74321862800008,-1.432831318999916],[30.741358277000074,-1.458876240999899],[30.738257690000065,-1.470658467999897],[30.732935018000035,-1.476446227999872],[30.73887780800004,-1.489468687999903],[30.755414266000116,-1.511586201999918],[30.767816610000068,-1.52481536899991],[30.772260783000096,-1.53246347999989],[30.781975952000035,-1.568430276999962],[30.791587768000053,-1.590961201999974],[30.80724572800011,-1.603260192999926],[30.831016887000143,-1.594165139999859],[30.838303263000057,-1.615352477999906],[30.8374764400001,-1.641087340999902],[30.824557333000087,-1.719945576999933],[30.824247273000196,-1.730694273999859],[30.826521037000134,-1.735861917999955],[30.83540938300007,-1.749504495999872],[30.837889852000043,-1.75870290099995],[30.826417684000035,-1.786194762999926],[30.829931681000062,-1.796736754999898],[30.837889852000043,-1.836837666999898],[30.83241215000004,-1.853787536999903],[30.82223189300009,-1.868773701999956],[30.81659916200005,-1.884173278999853],[30.824247273000196,-1.902053324999912],[30.808020874000135,-1.914765725999871],[30.80192305500014,-1.921276956999932],[30.796962118000128,-1.929338479999928],[30.826934449000134,-1.934092711999909],[30.829931681000062,-1.960551044999903],[30.816754191000086,-2.018738707999916],[30.835461059000064,-2.014707946999919],[30.853496135000057,-2.023699644999865],[30.868740682000123,-2.038995869999923],[30.879437703000118,-2.053465270999951],[30.887809285000117,-2.082507425999935],[30.853392782000128,-2.193818460999893],[30.84471114100006,-2.23784678099986],[30.848948608000114,-2.306266377999933],[30.84471114100006,-2.326626891999879],[30.834375855000072,-2.345333759999946],[30.821353394000138,-2.35473887099991],[30.804558553000046,-2.362180276999922],[30.78910730000007,-2.371068623999847],[30.77515466300008,-2.374479267999959],[30.76791996300011,-2.378613382999902],[30.758824910000044,-2.381093851999879],[30.75066003400013,-2.379130146999927],[30.698466837000126,-2.353395283999944],[30.68771813900014,-2.349984638999913],[30.67479903100019,-2.351741637999893],[30.663326864000112,-2.360733336999928],[30.649064168000105,-2.387605081999936],[30.637850382000067,-2.3970101929999],[30.61692142700008,-2.398147073999908],[30.59521732500008,-2.391945901999918],[30.57392663600012,-2.389258727999973],[30.554599650000053,-2.400627542999885],[30.52173344000005,-2.399387308999849],[30.488453817000163,-2.383781025999895],[30.434141886000134,-2.339235940999899],[30.428405802000043,-2.331381123999961],[30.42323815900005,-2.317325133999944],[30.418483927000068,-2.311847431999865],[30.415073283000137,-2.313087665999888],[30.383447306000047,-2.305542906999932],[30.37858972200013,-2.303062438999873],[30.362518351000062,-2.307816670999955],[30.35275150500013,-2.316911722999933],[30.348610082000107,-2.322351935999919],[30.344018189000053,-2.328383890999945],[30.331150756000056,-2.340269469999967],[30.316784709000046,-2.347607522999879],[30.297974487000204,-2.353705341999927],[30.278854207000048,-2.357632750999898],[30.262731161000147,-2.358356220999895],[30.250328816000092,-2.355565693999935],[30.219116252000106,-2.34037282299991],[30.207489054000064,-2.339235940999899],[30.203923381000095,-2.345953877999917],[30.203406617000045,-2.355358988999882],[30.201339559000072,-2.362386982999894],[30.15617435700011,-2.419024352999884],[30.13912113400005,-2.430806578999877],[30.11679691600011,-2.431530049999878],[30.093852580000142,-2.422641702999953],[30.0729753010001,-2.408792418999894],[30.05654219600012,-2.394426370999895],[30.02553633600013,-2.357736104999915],[30.013340698000093,-2.348330993999866],[30.001920207000065,-2.344300230999877],[29.992308390000062,-2.343990172999895],[29.98388513100008,-2.344816995999906],[29.976133667000056,-2.343680114999898],[29.958519715000136,-2.328532809999913],[29.956781101000047,-2.327037670999928],[29.949933716000142,-2.321149189999886],[29.941923869000103,-2.316601663999947],[29.931691935000117,-2.316911722999933],[29.92879805500013,-2.322492776999937],[29.92890140800006,-2.331794534999872],[29.922390177000068,-2.382954202999883],[29.929573202000142,-2.459848733999877],[29.907920776000136,-2.535399678999894],[29.903725678000054,-2.637946527999887],[29.903269898000076,-2.649087828999882],[29.89789554800012,-2.671101988999865],[29.888387085000144,-2.692909443999895],[29.87619144700011,-2.713580016999913],[29.862858927000104,-2.731666768999915],[29.842395060000054,-2.752440693999873],[29.823584839000034,-2.763499450999873],[29.803379354000132,-2.767323505999911],[29.77852299000017,-2.766600036999918],[29.75619877100013,-2.759882099999885],[29.74472660300012,-2.759985452999913],[29.737285197000062,-2.769287210999934],[29.733977905000074,-2.790267841999935],[29.729637085000093,-2.79956959999987],[29.719921916000143,-2.805460713999878],[29.697546021000107,-2.808251240999923],[29.67868412200005,-2.805357360999934],[29.637086889000102,-2.791628628999916],[29.626387573000045,-2.788097431999859],[29.61925622500013,-2.787684020999933],[29.5894906000002,-2.798432718999962],[29.582049194000092,-2.802980244999901],[29.574091024000037,-2.806080829999942],[29.563755737000122,-2.805667418999931],[29.54184493000008,-2.808561298999919],[29.52313806100011,-2.820446878999846],[29.504121135000048,-2.826854756999893],[29.48086674000012,-2.813728942999916],[29.444674800000087,-2.806989288999957],[29.425366251000124,-2.803393655999912],[29.407434530000046,-2.805460713999878],[29.364284709000064,-2.824167581999859],[29.339686727000068,-2.826441344999878],[29.330850057000134,-2.807424417999911],[29.32966149900005,-2.794918720999902],[29.320359741000118,-2.774144795999873],[29.318085978000113,-2.762569274999919],[29.321496623000087,-2.75213063599989],[29.335345907000086,-2.735180765999885],[29.33751631600006,-2.723811949999885],[29.331418497000183,-2.711409606999922],[29.309714396000118,-2.69104909299989],[29.309480544000106,-2.690126857999871],[29.30604537000011,-2.676579690999858],[29.307337280000066,-2.66479746499995],[29.30661381000004,-2.660146585999897],[29.294418172000064,-2.651051533999919],[29.276124716000083,-2.640612893999971],[29.25498905400013,-2.635548603999907],[29.212769409000085,-2.630277608999961],[29.1904451900001,-2.623456318999914],[29.129725383000107,-2.596997985999835],[29.113447307000087,-2.594620869999886],[29.055259643000085,-2.598444925999928],[29.032573690000106,-2.620665791999954],[29.015365438000114,-2.720711364999943],[29.000120890000087,-2.70365814199991],[28.9796053470001,-2.693529560999949],[28.949736369000103,-2.690325621999889],[28.936403849000072,-2.685054625999953],[28.89909346500013,-2.660663350999926],[28.891342000000126,-2.652705179999955],[28.89805993700014,-2.576327412999916],[28.891342000000126,-2.553073017999893],[28.88105839000013,-2.542634378999949],[28.869844605000083,-2.537260029999899],[28.86095625800007,-2.531162210999937],[28.857235555000074,-2.518346455999961],[28.860852905000055,-2.505220641999898],[28.87821618700008,-2.489717711999972],[28.874702189000118,-2.477522073999879],[28.864573608000057,-2.459435322999866],[28.860852905000055,-2.439591572999873],[28.85883752400011,-2.418197529999944],[28.866330607000123,-2.391945901999918],[28.880386596000047,-2.379853616999924],[28.907258342000063,-2.370551858999903],[28.92813562000003,-2.364454039999941],[28.94544722500012,-2.354222106999956],[28.95965824400008,-2.339752705999928],[28.971233765000136,-2.321665954999915],[28.97877852400009,-2.306783141999887],[28.982189168000104,-2.296034443999857],[28.983377726000125,-2.287352802999905],[28.99366133600003,-2.277740986999973],[29.00213627100004,-2.274743753999871],[29.030920044000144,-2.275673928999922],[29.075413452000134,-2.263891702999928],[29.109829956000084,-2.236709899999937],[29.134841349000084,-2.197745869999949],[29.150550984000063,-2.150410257999894],[29.15633874500014,-2.108655700999847],[29.15427168700006,-2.072688903999961],[29.127710001000136,-1.915695901999911],[29.125539592000077,-1.879108988999874],[29.130500529000102,-1.843348896999956],[29.14931075000004,-1.7993205759999],[29.18664003500004,-1.739618238999881],[29.212252645000035,-1.698654886999847],[29.233336629000068,-1.658657327999876],[29.24542891400006,-1.640983987999974],[29.293694702000035,-1.600986429999906],[29.303823282000106,-1.587860615999944],[29.331211792000147,-1.531429951999911],[29.342787313000088,-1.516547138999954],[29.3584969480001,-1.509932555999868],[29.434926392000133,-1.506831969999922],[29.437406861000113,-1.506211852999868],[29.439628947000188,-1.504764912999875],[29.44169600400005,-1.50259450199988],[29.445065226000054,-1.497286823999929],[29.464330282000105,-1.466937764999884],[29.49874678500009,-1.431074319999937],[29.538640991000133,-1.402342223999938],[29.577915080000082,-1.388389587999939],[29.618119344000092,-1.390559996999926],[29.639099976000125,-1.389009703999918],[29.657703491000063,-1.383945413999939],[29.67832238800008,-1.372369892999899],[29.693773641000064,-1.361207783999859],[29.710516805000108,-1.352526142999906],[29.734804728000082,-1.348185322999925],[29.74669030800004,-1.350872496999941],[29.767980997000105,-1.36379160499996],[29.77490563900011,-1.366272073999937],[29.78317386900005,-1.361414488999912],[29.789168335000053,-1.341674092999952],[29.798211711000132,-1.330925394999923],[29.807461792000137,-1.325137633999859],[29.816143432000104,-1.322553812999956],[29.825024114000087,-1.323880810999881],[29.825135132000067,-1.323897399999922],[29.836090536000146,-1.329478454999929],[29.864202514000052,-1.370302835999922],[29.86864668800007,-1.391283466999923],[29.871023804000114,-1.432417906999902],[29.88073897300006,-1.453605244999963],[29.89789554800012,-1.469624938999914],[29.917429240000047,-1.475205993999836],[29.938461548000134,-1.472932230999916],[29.960424032000105,-1.464767353999903],[30.02832686300008,-1.427146911999969],[30.03866215000005,-1.42497650099989],[30.047757202000124,-1.403169046999949],[30.06077966300006,-1.389733174999904],[30.065984343000135,-1.386944953999958],[30.095506226000108,-1.371129658999948],[30.1363306070001,-1.355213317999926],[30.147182658000077,-1.34508473699988],[30.152350301000066,-1.329891865999855],[30.158448120000116,-1.291134541999923],[30.165579468000146,-1.277491963999907],[30.173434286000084,-1.272841084999939],[30.18139245600014,-1.271497497999889],[30.18935062700012,-1.270877379999916],[30.196740356000134,-1.268706969999925],[30.212191610000104,-1.259508564999919],[30.2566850180001,-1.217237243999932],[30.269759156000074,-1.200494079999899],[30.28050785300007,-1.182407327999968],[30.28241988200011,-1.175792744999882],[30.284641968000127,-1.161426695999879],[30.287535848000115,-1.15543222999986],[30.290949658000102,-1.152620856999945],[30.294563843000102,-1.149644469999885],[30.31130700700004,-1.142099710999929],[30.317404826000086,-1.137035419999947],[30.322572469000136,-1.121842549999926],[30.32903202300008,-1.080501402999886],[30.337455282000064,-1.066238707999915],[30.35275150500013,-1.060761006999925],[30.36928796400008,-1.063241474999899],[30.386341186000035,-1.068202412999937],[30.40318770300013,-1.070372822999929],[30.41889733900007,-1.066445413999872],[30.432023153000046,-1.060554300999868],[30.445614054000142,-1.058693948999874],[30.460828623000108,-1.063427549999929],[30.47178584300013,-1.066836591999916]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":7,"sovereignt":"Western Sahara","sov_a3":"SAH","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Western Sahara","adm0_a3":"SAH","geou_dif":0,"geounit":"Western Sahara","gu_a3":"SAH","su_dif":0,"subunit":"Western Sahara","su_a3":"SAH","brk_diff":1,"name":"W. Sahara","name_long":"Western Sahara","brk_a3":"B28","brk_name":"W. Sahara","brk_group":null,"abbrev":"W. Sah.","postal":"WS","formal_en":"Sahrawi Arab Democratic Republic","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Morocco","name_sort":"Western Sahara","name_alt":null,"mapcolor7":4,"mapcolor8":7,"mapcolor9":4,"mapcolor13":4,"pop_est":-99,"gdp_md_est":-99,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"WI","iso_a2":"EH","iso_a3":"ESH","iso_n3":"732","un_a3":"732","wb_a2":"-99","wb_a3":"-99","woe_id":23424990,"woe_id_eh":23424990,"woe_note":"Exact WOE match as country","adm0_a3_is":"MAR","adm0_a3_us":"SAH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":9,"long_len":14,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"ESH.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-8.752561807999882,27.661439311000095],[-8.682385212999918,27.661439311000095],[-8.682385212999918,27.567414042000053],[-8.682385212999918,27.473466288000026],[-8.682385212999918,27.379466858000082],[-8.682385212999918,27.28541575100013],[-8.682281860999893,27.271669821000103],[-8.682230183999962,27.232705790000097],[-8.682230183999962,27.17214101200005],[-8.682075154999922,27.093696188000138],[-8.681920124999891,27.000833638000103],[-8.681816772999952,26.897170715000044],[-8.681661742999921,26.78632476800001],[-8.681558389999879,26.671913147000026],[-8.681455036999864,26.55744985000004],[-8.681300008999896,26.44660390200002],[-8.681144978999953,26.342992656000064],[-8.681041625999853,26.250181783000045],[-8.680938272999924,26.171633606000114],[-8.68086075799988,26.11112050400007],[-8.68086075799988,26.07220815000008],[-8.680809081999882,26.058410543000036],[-8.680809081999882,26.013141989000047],[-8.687656208999925,26.00001617500007],[-8.707215738999935,25.99500356000001],[-8.792042602999913,25.99500356000001],[-8.892863321999897,25.994951884000102],[-8.993580688999941,25.994951884000102],[-9.094246378999912,25.994951884000102],[-9.195015421999898,25.994951884000102],[-9.295732787999953,25.994951884000102],[-9.39645015499991,25.994951884000102],[-9.49716752099988,25.994951884000102],[-9.597884887999953,25.994951884000102],[-9.698653930999939,25.994951884000102],[-9.799371297999897,25.994951884000102],[-9.90003698699985,25.994951884000102],[-10.00080603099994,25.994951884000102],[-10.101523396999909,25.994951884000102],[-10.202292439999978,25.994951884000102],[-10.302958129999922,25.994951884000102],[-10.40367549699988,25.994951884000102],[-10.5044445399999,25.994951884000102],[-10.605161905999921,25.994951884000102],[-10.705879272999907,25.994951884000102],[-10.80659663999995,25.994951884000102],[-10.907314005999922,25.994951884000102],[-11.008083047999918,25.994951884000102],[-11.108748738999878,25.994951884000102],[-11.209517781999947,25.994951884000102],[-11.310235147999919,25.994951884000102],[-11.410952514999876,25.994951884000102],[-11.511721557999863,25.994951884000102],[-11.612438923999916,25.994951884000102],[-11.713207966999903,25.994951884000102],[-11.813821980999933,25.994951884000102],[-11.914591023999916,25.994951884000102],[-12.015308389999888,25.994900208000075],[-12.015308389999888,25.919245910000114],[-12.015308389999888,25.84369496700009],[-12.015308389999888,25.76809234700005],[-12.015308389999888,25.692489726000105],[-12.015308389999888,25.61693878200009],[-12.015308389999888,25.54133616200005],[-12.015308389999888,25.465733541000105],[-12.015308389999888,25.39018259700009],[-12.015308389999888,25.31457997700005],[-12.015308389999888,25.23892568000008],[-12.015308389999888,25.16332306000004],[-12.015308389999888,25.08779795400002],[-12.015308389999888,25.012247009000077],[-12.015308389999888,24.936618551000038],[-12.015308389999888,24.86101593100011],[-12.015308389999888,24.78546498600008],[-12.015308389999888,24.70986236600004],[-12.015308389999888,24.634259746000083],[-12.015308389999888,24.558631287000136],[-12.015308389999888,24.483080343],[-12.015308389999888,24.407477722000067],[-12.015308389999888,24.33190094100004],[-12.015308389999888,24.25629831900008],[-12.015308389999888,24.18069569900007],[-12.015308389999888,24.105093079000113],[-12.015308389999888,24.02954213500007],[-12.015308389999888,23.95393951400004],[-12.015308389999888,23.878311056000086],[-12.015308389999888,23.802734274000073],[-12.015308389999888,23.727105815000098],[-12.015308389999888,23.65147735600007],[-12.015308389999888,23.57592641200003],[-12.015308389999888,23.49518198600009],[-12.019339151999873,23.4609980270001],[-12.032723347999905,23.444978333000048],[-12.1345775959999,23.41934682200008],[-12.353892374999873,23.322479350000066],[-12.389910847999971,23.312531637000063],[-12.558376017999933,23.290284933000123],[-12.619431721999916,23.270828756000043],[-12.68221858699988,23.230753683000046],[-12.789938109999866,23.161868998000045],[-12.915098428999954,23.082054749000033],[-13.01524735499987,23.018001811000147],[-13.034341796999854,22.995212504000047],[-13.034341796999854,22.995160828000053],[-13.119892130999915,22.88353973400009],[-13.152293253999915,22.820003560000146],[-13.16549658199989,22.752695008000046],[-13.15498042799993,22.688797099000084],[-13.106352904999936,22.56022613500005],[-13.093330444999879,22.495475566000067],[-13.076832743499862,22.245439148500083],[-13.060335041999934,21.995402731000098],[-13.032092883999951,21.581939241000015],[-13.026176920999944,21.495329896000012],[-13.01524735499987,21.333427633000042],[-13.161724202999977,21.333427633000042],[-13.203091186999899,21.333375956000026],[-13.31985408599985,21.333375956000026],[-13.501419229999954,21.333375956000026],[-13.73690873199996,21.333324280000113],[-14.015496378999956,21.333272603000097],[-14.295597564999923,21.333226059000054],[-14.32648514899995,21.33322092700007],[-14.658971312999881,21.333169251000072],[-15.002257853999962,21.333169251000072],[-15.345544392999924,21.333065898000115],[-15.67808223499989,21.333065898000115],[-15.989019327999868,21.333014222000116],[-16.26771032699989,21.33291086800008],[-16.503148152999955,21.33291086800008],[-16.684635782999862,21.33291086800008],[-16.801424519999898,21.332859192000086],[-16.84281734299995,21.332859192000086],[-16.958830932999973,21.332859192000086],[-16.968339395999863,21.32459096300005],[-16.985702677999967,21.23782623300005],[-17.004926309999888,21.14191477500009],[-17.047378499999922,21.027399801000083],[-17.054018920999937,20.99546376600011],[-17.077428344999902,20.90451324500009],[-17.081174885999896,20.874747620000104],[-17.056874152499887,20.766913153000132],[-17.068348761999857,20.792466539000113],[-17.10020911399988,20.837591864000075],[-17.104644334999875,20.862494208000015],[-17.10138912699992,20.876166083000044],[-17.092274542999917,20.89988841400006],[-17.090402798999946,20.9140078800001],[-17.090402798999946,20.961818752000028],[-17.086293097999913,20.979315497000073],[-17.067860480999883,21.030910549000026],[-17.0267634759999,21.32892487200007],[-17.01744544199994,21.365057684000107],[-17.015248175999943,21.379828192000076],[-17.01374332534519,21.41997109758168],[-16.950149291999907,21.42975250300009],[-16.729956013999896,21.469801737000097],[-16.58004268399995,21.480550435000108],[-16.189885620999945,21.480550435000108],[-16.04002396599992,21.500084127],[-15.919876260999985,21.500084127],[-15.749964151999905,21.490317281000074],[-15.609817667999918,21.469801737000097],[-15.459930175999913,21.450268046000076],[-15.289992227999932,21.450268046000076],[-15.149871581999946,21.44050120100013],[-14.970166788999848,21.44050120100013],[-14.83981298899991,21.450268046000076],[-14.74997351099992,21.500084127],[-14.669875040999953,21.599664612000083],[-14.640109415999857,21.679763082000136],[-14.609827025999918,21.75006886800014],[-14.620084797999908,21.820374654000116],[-14.62985164399987,21.860423889000117],[-14.580035563999928,21.91023997000005],[-14.519987548999922,21.9903384400001],[-14.459913695999887,22.040102844000046],[-14.439914916999951,22.08015207900013],[-14.379841064999937,22.120201315000084],[-14.310052042999871,22.190507101],[-14.270002806999912,22.240297343000034],[-14.22018672699997,22.309647115000075],[-14.209954793999882,22.37018605500012],[-14.189904337999932,22.450258687000087],[-14.189904337999932,22.589914246000117],[-14.169905558999913,22.759852193000086],[-14.140088256999887,22.87018137600009],[-14.120089477999954,22.960046692000105],[-14.100064860999936,23.099676412000036],[-14.039991007999902,23.33992014600011],[-14.019992227999863,23.41025177100002],[-13.97994299299998,23.51959910100004],[-13.930126912999953,23.62018727700007],[-13.890129353999981,23.690493063000076],[-13.83979650899991,23.750075989000067],[-13.76998164899993,23.790125224000036],[-13.660117553999982,23.830122782000103],[-13.580044921999926,23.87019785600009],[-13.479947671999922,23.91022125300006],[-13.390108194999925,23.940503642000092],[-13.310009724999873,23.980552877000065],[-13.27975317399995,24.01959442100008],[-13.229962931999921,24.089900207000085],[-13.160122233999942,24.21981475800007],[-13.120098836999944,24.29986155200004],[-13.060024983999938,24.40047556600007],[-12.990184285999874,24.469799500000107],[-12.946880247999957,24.496748253000078],[-12.946879434999886,24.496748759000127],[-12.910137491999905,24.51958974200005],[-12.819781249999949,24.570387675000035],[-12.709942992999913,24.629970602000128],[-12.62984452399985,24.679760844000043],[-12.560029662999879,24.730532939000057],[-12.499981648999977,24.769600322000056],[-12.430140949999895,24.83016510100012],[-12.399884399999877,24.87995534300006],[-12.35983516399989,24.96979482100005],[-12.310019083999862,25.11043223000007],[-12.269969848999978,25.25980295800005],[-12.229946451999893,25.41999989900009],[-12.200154988999913,25.51958038400005],[-12.169872599999877,25.63972808800008],[-12.129849202999907,25.730549419000052],[-12.100057738999908,25.830155742000017],[-12.080058959999889,25.87020497600011],[-12.080058959999889,25.919969381000044],[-12.060008504999928,25.99030100500005],[-12.055823329999953,25.99582957000007],[-12.055822713999902,25.995830384000044],[-12.029751952999902,26.03035024100012],[-11.959911254999923,26.04988393200003],[-11.879864460999983,26.0703994750001],[-11.753877319999958,26.086005758000056],[-11.717238728999888,26.103575745000114],[-11.698221801999921,26.162176819000138],[-11.68354569499985,26.212974752000036],[-11.636210083999885,26.29498525000011],[-11.582983356999904,26.36040761400008],[-11.552210042999945,26.400456849000076],[-11.510688028999878,26.46980662000001],[-11.469708618999931,26.51959686300006],[-11.39891190599991,26.583081360000104],[-11.336900186999856,26.63289744100004],[-11.315867878999939,26.683643697000036],[-11.315867878999939,26.74420847600007],[-11.360309610999906,26.79304270500006],[-11.391573852999896,26.882908021000073],[-11.262641153999878,26.91021901500008],[-11.1493664139999,26.940501404000113],[-11.045858520999957,26.969801941000068],[-10.921835082999877,27.00982533800004],[-10.829075886999874,27.00982533800004],[-10.756780557999917,27.01959218400009],[-10.653272664999918,27.000058492000075],[-10.550281534999925,26.99029164700005],[-10.477986206999987,26.96003509500011],[-10.353962768999878,26.900478007000032],[-10.250454873999956,26.860428773000052],[-10.18844315599992,26.860428773000052],[-10.122038939999868,26.879962464000073],[-10.06586665799992,26.908281148000068],[-10.031708536999929,26.91021901500008],[-9.979928751999864,26.889729309000103],[-9.89936519399987,26.849680075000038],[-9.81686376999994,26.849680075000038],[-9.734362345999926,26.860428773000052],[-9.672350625999881,26.91021901500008],[-9.568842732999968,26.99029164700005],[-9.486315469999852,27.04987457300012],[-9.41205643699996,27.087960104000075],[-9.352008422999859,27.097726949000048],[-9.284622354999925,27.097726949000048],[-9.207469441999876,27.099690654000057],[-9.083446003999882,27.089923808],[-9.000918741999953,27.089923808],[-8.888109089999915,27.103566386000125],[-8.793902953999918,27.12018035900013],[-8.752871866999953,27.15046274900007],[-8.752871866999953,27.19048614600004],[-8.77338741099993,27.250069072000116],[-8.795840819999938,27.307688294000087],[-8.801706094999929,27.360424092000102],[-8.7880118409999,27.416053772000026],[-8.77338741099993,27.46003041600008],[-8.783619343999902,27.530362040000085],[-8.812919880999885,27.613354391000115],[-8.818449258999891,27.659398092000057],[-8.817034779999915,27.661464011000103],[-8.817033869999932,27.66146534000012],[-8.816537230999955,27.661465149],[-8.752561807999882,27.661439311000095]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sudan","sov_a3":"SDN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sudan","adm0_a3":"SDN","geou_dif":0,"geounit":"Sudan","gu_a3":"SDN","su_dif":0,"subunit":"Sudan","su_a3":"SDN","brk_diff":0,"name":"Sudan","name_long":"Sudan","brk_a3":"SDN","brk_name":"Sudan","brk_group":null,"abbrev":"Sudan","postal":"SD","formal_en":"Republic of the Sudan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sudan","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":4,"mapcolor13":1,"pop_est":25946220,"gdp_md_est":88080,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"SU","iso_a2":"SD","iso_a3":"SDN","iso_n3":"729","un_a3":"729","wb_a2":"SD","wb_a3":"SDN","woe_id":-90,"woe_id_eh":23424952,"woe_note":"Almost all FLickr photos are in the north.","adm0_a3_is":"SDN","adm0_a3_us":"SDN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"SDN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[37.264496290000096,20.749986070000105],[37.25440514400022,20.749823309000035],[37.24415123800022,20.772650458000058],[37.243418816000116,20.803981838000098],[37.243418816000116,20.80402252800009],[37.250824415000096,20.834662177000027],[37.265310092000014,20.855047919000086],[37.27564537900011,20.84804922100001],[37.2791447270001,20.845648505000057],[37.283539259000094,20.832749742000047],[37.27182050900015,20.76609935100008],[37.264496290000096,20.749986070000105]]],[[[31.467412150000058,22.084131165000073],[31.435476115000114,21.99535105400004],[31.494719176000128,21.995386529000044],[31.521775757000142,21.995402731000137],[31.62409509300008,21.995402731000137],[31.726517782000055,21.995402731000137],[31.828837118000166,21.995402731000137],[31.931259806000213,21.995402731000137],[32.033579142000086,21.995402731000137],[32.136001831000016,21.995402731000137],[32.23832116700012,21.995402731000137],[32.34074385600016,21.995402731000137],[32.443063192000096,21.995402731000137],[32.524518790000144,21.995402731000137],[32.54543420400009,21.995402731000137],[32.647856893000125,21.995402731000137],[32.75033125800016,21.995402731000137],[32.852650594000146,21.995402731000137],[32.95507328300019,21.995402731000137],[33.05739261800008,21.995402731000137],[33.15976042200012,21.995402731000137],[33.159815307000116,21.995402731000137],[33.181138266322165,21.995407469401112],[33.39235925300008,21.995454407000167],[33.6250582280002,21.995454407000167],[33.8577055260001,21.995454407000167],[34.08417936900011,21.995454407000167],[34.09045617700005,21.995454407000167],[34.32310347500018,21.995454407000167],[34.555750773000085,21.99550608300008],[34.788501424000145,21.995557760000096],[35.02114872200016,21.995557760000096],[35.25379602000007,21.995557760000096],[35.486443318000084,21.995557760000096],[35.71919396900009,21.995609436],[35.95184126800021,21.995609436],[36.184591919000155,21.995609436],[36.41723921700006,21.99566111300011],[36.64988651500019,21.995712789000137],[36.88363691500015,21.99571360900002],[36.880625847000175,21.98069896],[36.87794030000006,21.976019598000065],[36.87370853000007,21.97406647300012],[36.85775800900014,21.97199127800009],[36.84009850400011,21.966131903000147],[36.863942905000016,21.94936758000013],[36.87354576900012,21.93610260600009],[36.874196811000076,21.815252997000172],[36.896820509000094,21.67788320500007],[36.88786868600019,21.650132554],[36.90202884200019,21.641058661],[36.90528405000006,21.62938060099999],[36.90593509200019,21.61709219000012],[36.91211998800006,21.606105861000074],[36.9231876960001,21.595526434000035],[36.930430535000106,21.585923570000045],[36.984060092000135,21.465806382000054],[37.11361738400015,21.278062242000185],[37.19898522200017,21.202134507000054],[37.30543053500017,21.07444896000011],[37.31299889400012,21.057684637000094],[37.310883009000094,21.038153387000122],[37.30396569100017,21.020900783000013],[37.291351759000094,21.01264069200012],[37.27214603000007,21.020168361000074],[37.25196373800023,21.00604889500015],[37.23389733200011,21.020249742000047],[37.206553582000225,21.064886786000116],[37.19971764400012,21.073553778000033],[37.19223066500015,21.08608633000001],[37.1893009770001,21.097235419000057],[37.19629967500012,21.102118231000116],[37.209320509000094,21.09861888200011],[37.21648196700002,21.090399481000034],[37.22103925900009,21.080389716000052],[37.22706139400006,21.071682033000158],[37.25001061300006,21.054999091000028],[37.26351972700016,21.04975006700012],[37.27214603000007,21.054266669000086],[37.27003014400023,21.062567450000145],[37.245371941000116,21.089056708000115],[37.22974694100017,21.127834377000156],[37.21892337300008,21.141750393000123],[37.20313561300023,21.13686758000007],[37.1751408210001,21.15672435100008],[37.16700280000006,21.146185614000032],[37.15919030000012,21.148016669000086],[37.152679884000094,21.15778229400003],[37.148610873000024,21.17096588700018],[37.15105228000019,21.183050848000093],[37.157562696000156,21.19464752800009],[37.1595158210001,21.206447658000073],[37.148610873000024,21.218736070000105],[37.12142988400015,21.224269924000126],[37.104991082000225,21.207505601000104],[37.09839928500017,21.18089427299999],[37.10075931100013,21.15672435100008],[37.10580488400014,21.15110911700016],[37.118174675000056,21.150336005000057],[37.120616082000225,21.143703518000095],[37.117198113000114,21.131781317000147],[37.11378014400012,21.12323639500012],[37.118174675000056,21.09784577],[37.11784915500007,21.08612702],[37.11378014400012,21.074774481000034],[37.1037703790001,21.065334377000042],[37.09359785200015,21.06240469],[37.08668053500017,21.057114976000108],[37.08643639400023,21.040594794000143],[37.09156334700012,21.03164297100004],[37.120616082000225,20.99970123900003],[37.14730879000015,20.940863348000118],[37.1600041020001,20.87824127800003],[37.16911868600019,20.746405341000024],[37.18360436300023,20.684393622000083],[37.22803795700017,20.56500885600012],[37.23047936300011,20.49998607000005],[37.22771243600002,20.484076239000146],[37.222422722000175,20.4682477890001],[37.2127384770001,20.458685614000117],[37.18230228000007,20.462836005000057],[37.17888431100002,20.449937242000047],[37.182627800000056,20.420233466000028],[37.1751408210001,20.349188544000143],[37.18230228000007,20.308742580000015],[37.182627800000056,20.293931382000054],[37.20623351600014,20.235370890000112],[37.21424811500012,20.20011567600004],[37.219579672000094,20.16742867700016],[37.224891937000194,20.119531530000117],[37.20964603000013,20.081610419000086],[37.20997155000006,20.074855861000128],[37.206309441000165,20.063869533000073],[37.19410241000011,20.04950592700011],[37.189463738000114,20.04010651200018],[37.188812696000156,20.013169664000102],[37.19613691500015,19.979152736000103],[37.25945071700019,19.820705471000068],[37.265310092000014,19.786851304],[37.265310092000014,19.721665757],[37.26335696700019,19.703762111000017],[37.2580672540001,19.692857164000046],[37.241384311000076,19.670477606000034],[37.238291863000114,19.655259507000054],[37.245371941000116,19.59503815300009],[37.24382571700019,19.57615794500005],[37.245371941000116,19.5677757830001],[37.249278191000116,19.558294989],[37.265310092000014,19.532375393000095],[37.28581790500019,19.475287177],[37.32545006600011,19.262844143000066],[37.333506707000225,19.159654039000046],[37.337168816000116,19.147691148000106],[37.34555097700016,19.14081452],[37.354746941000116,19.135484117000047],[37.360850457000225,19.1283226580001],[37.360850457000225,19.121649481000034],[37.355642123000024,19.108547268000066],[37.35523522200012,19.101629950000174],[37.37956242200019,19.069300759000058],[37.39157622900004,19.01945252000003],[37.41236412900011,18.95526764500015],[37.425954623000074,18.913478908000016],[37.43433678500011,18.861721096000096],[37.44760175900014,18.843573309000092],[37.46917665800012,18.80542418900002],[37.49228602000019,18.767509544000077],[37.525238477000094,18.738511460000026],[37.53077233200011,18.726874091000084],[37.53980553500011,18.715887762000037],[37.55103600400011,18.70994700700011],[37.56316165500019,18.713690497000144],[37.574392123000194,18.71991608300003],[37.581797722000175,18.718166408000016],[37.641512333000065,18.72674401600007],[37.674724823000105,18.740953414],[37.67937080300007,18.722502233000128],[37.70167076900023,18.71116771000014],[37.72022545700017,18.707831122000115],[37.74073326900012,18.709173895],[37.74712498900006,18.697680403],[37.74946852100006,18.68138920100013],[37.76557256700008,18.66729473500014],[37.7580672540001,18.628648179000137],[37.773610873000194,18.63666413000008],[37.78515923000012,18.640160489],[37.796397332000225,18.631740627000013],[37.81275475400011,18.615627346000124],[37.92550470300014,18.585043620000036],[37.966936264000104,18.546963529000024],[37.99488366000011,18.50202057500003],[38.03819766,18.461086012000077],[38.06571591500003,18.443710184000096],[38.10925101400008,18.42742548800005],[38.12185765000006,18.41330100400013],[38.109275090000125,18.395923966000154],[38.08295699200008,18.382879332000144],[38.076119386000094,18.348119337000085],[38.1036242590001,18.291662560000034],[38.151674166000106,18.24933088400003],[38.20541725600012,18.237394462000154],[38.245433883000175,18.243905645000112],[38.25116077200019,18.280824595000084],[38.27125084700012,18.286607164000188],[38.30616295700017,18.30654531500006],[38.312347852000094,18.29596588700012],[38.30388431100018,18.287543036000056],[38.28980553500011,18.280218817000062],[38.279470248000024,18.27301666900003],[38.27800540500007,18.26496002800009],[38.27881920700011,18.25397370000003],[38.276215040000096,18.242010809000092],[38.264496290000096,18.230780341000113],[38.2493595710001,18.226629950000145],[38.23601321700019,18.22744375200007],[38.22486412900016,18.226548570000162],[38.21729576900012,18.21771881700012],[38.2303166020001,18.217840887000094],[38.265147332000225,18.22394440300009],[38.27833092500012,18.221665757000107],[38.28736412900011,18.21629466400007],[38.29566491000017,18.209784247000144],[38.30616295700017,18.20408763199999],[38.31934655000012,18.200873114000114],[38.3475041020001,18.197577216000084],[38.36109459700012,18.193182684000092],[38.376231316000116,18.190619208],[38.38656660200016,18.195257880000113],[38.3880314460001,18.20319245000009],[38.37566165500007,18.21035390800013],[38.391449415000096,18.22418854400003],[38.41114342500006,18.204901434000092],[38.44320722700016,18.155707098000093],[38.4338485040001,18.14227936400009],[38.450450066000165,18.13239166900017],[38.47559655000006,18.130560614],[38.49170983200011,18.141424872000087],[38.50228925900015,18.126044012000037],[38.50570722700016,18.086371161000116],[38.51221764400006,18.073716539000046],[38.53199303500011,18.070705471000153],[38.54167728000007,18.085882880000142],[38.54004967500012,18.108710028000147],[38.52588951900012,18.128363348],[38.5428166020001,18.118394273000106],[38.58448326900022,18.077134507000054],[38.591075066000116,18.061753648000106],[38.59099368600002,18.045965887000175],[38.59343509200008,18.036200262000037],[38.60385175900015,18.013861395],[38.601573113000114,18.004828192],[38.459285116000125,17.890743714000095],[38.43158654800018,17.85198639000005],[38.371331828000194,17.69881744400014],[38.34373661300012,17.655926005000182],[38.32347945100011,17.6408881630001],[38.273870077000225,17.61778879800012],[38.25661014800008,17.602544250000093],[38.25154585700008,17.58280385400012],[38.25278609200021,17.561616516000143],[38.25020227000019,17.541824442000078],[38.23335575300021,17.525701396],[38.209687948000095,17.52229075100017],[38.19201460800011,17.5327293910001],[38.17682173600005,17.54756052700004],[38.16059533700016,17.557327372000188],[38.12535201000017,17.54652699800006],[38.119460897000096,17.545596822],[38.11491337100003,17.53665679900017],[38.116153605000164,17.530300598000153],[38.11873742600019,17.523427633],[38.11842736800011,17.512937317000038],[38.10798872800015,17.49381703700014],[38.09145227100018,17.480019430000183],[38.076466105000094,17.479864401000142],[38.07078169800016,17.501465149000026],[38.072228638000155,17.52146392900015],[38.07119510900017,17.538103739000164],[38.06178999800014,17.548077291000183],[38.03884566200006,17.548180644000112],[38.01538456300008,17.53996409100007],[38.01442444300008,17.53934428500004],[37.946861613000095,17.49572906500005],[37.91554569500008,17.457023418000134],[37.895908651000155,17.44255401700012],[37.87203413900008,17.437283020000066],[37.849193156000155,17.444000957000114],[37.81922082500008,17.471699524000126],[37.798860311000084,17.477125550000025],[37.76392704300011,17.459090474],[37.72041548700016,17.38384958900015],[37.67959110500007,17.36343739900012],[37.63918013500009,17.358011374000128],[37.5067851160002,17.318478902],[37.496036418000095,17.31217437800008],[37.493555949000125,17.300753886000095],[37.504718058000066,17.254968567000148],[37.50564823400012,17.236778463000107],[37.50099735500007,17.19507558200017],[37.49469283100021,17.174611715000097],[37.47278202300018,17.13699127200009],[37.468027792000186,17.11466705300002],[37.459759562000016,17.0947199510001],[37.403432251000105,17.029917705000102],[37.309794555000195,17.05534250900011],[37.280959107000086,17.05296539300015],[37.23341678900013,17.02464670900015],[37.203134399000106,17.022786357000072],[37.18825158700005,17.024905090000132],[37.13399133300001,17.016430155000037],[37.12406945800014,17.01803212500006],[37.08541548600013,17.040873108000156],[37.07508020000008,17.044542135000157],[37.04934533700012,17.048779602000124],[37.03146529200015,17.055807597000026],[37.01637577300008,17.065832825000044],[37.000459432000156,17.0726024370001],[36.98009891800021,17.07001861600018],[36.97348433500011,17.062525533000056],[36.97337042000018,17.06208343400006],[36.9713139240001,17.05410227500006],[36.97358768800015,17.045213929000155],[36.99343143700011,17.018652243000034],[36.997048787000125,16.999531963000138],[36.99239790800007,16.980204977000184],[36.96810998500004,16.94661529600016],[36.971520630000185,16.93581492100013],[36.9819592700002,16.925996399000056],[36.99064091000017,16.91364573200009],[36.99312137900003,16.900933330000143],[36.99126102700015,16.86078074100014],[36.9926046140001,16.856956686],[36.99849572700012,16.84796498700014],[36.999735962000074,16.842125549000073],[36.99787561100007,16.83799143500015],[36.99064091000017,16.829981588000166],[36.98878055800017,16.825537415000056],[36.98495650200002,16.765696106000107],[36.960358521000124,16.705648092000086],[36.9496098230002,16.691850485000046],[36.91664025800017,16.66895782500002],[36.90144738800015,16.655728658000115],[36.89235233500008,16.63686676000019],[36.890698690000214,16.61914174400009],[36.89255904100022,16.58653391500003],[36.889561808000195,16.56720693000007],[36.87726281800005,16.527312724000026],[36.87653934700009,16.51356679300001],[36.883360637000095,16.490415752],[36.896383098000086,16.472742412000017],[36.91209273300015,16.45661936400002],[36.926252075000065,16.438274231000136],[36.9273130720002,16.435393330000167],[36.93369348200011,16.418068747000135],[36.933176717000066,16.400395406000044],[36.9296627200002,16.38246368400017],[36.928215780000215,16.361121317000155],[36.933383423000095,16.340089010000057],[36.95157352700008,16.299574687000145],[36.9542607020002,16.278283997000173],[36.94402876800021,16.252859192000145],[36.90217085700012,16.211001282],[36.88594445800001,16.184853008000076],[36.85266483500018,16.09364410400009],[36.80749963400009,15.969310608000013],[36.75954390500007,15.83748403],[36.73267216000008,15.794747620000079],[36.683269491000175,15.745189921000035],[36.6709705000002,15.723124085000123],[36.61671024600017,15.531533712000067],[36.61412642500008,15.489262390000176],[36.62787235500011,15.445621643000138],[36.59510949700021,15.424330953000137],[36.5755758060001,15.393428447000147],[36.52493290200002,15.247907613000109],[36.5067427970001,15.22033823700012],[36.43315555800021,15.15085927400014],[36.425094035000114,15.133444316000109],[36.42364709500012,15.111507671000139],[36.43511926300002,15.016629741000157],[36.45547977700008,14.849068909000138],[36.46219903300013,14.793766434000188],[36.47397994000019,14.696804301000158],[36.48917281100014,14.571230571000141],[36.50426232900023,14.447336324000092],[36.526379842000125,14.263523254000132],[36.43656620300012,13.991214295000148],[36.432122030000215,13.969923604000158],[36.432535441000105,13.944498799000156],[36.43801314200012,13.919952495000187],[36.45537642400015,13.870007222000126],[36.458166951000095,13.820139466000171],[36.439941586000174,13.776176290000166],[36.39842899600015,13.676039734000113],[36.39481164600008,13.655937602000149],[36.39129764800012,13.599351909000177],[36.382099243000226,13.571033224000175],[36.23358117700016,13.361640320000092],[36.136946249000204,13.032435608000142],[36.138393188000094,13.013315328000145],[36.14635135900008,12.997373149000126],[36.14955529800013,12.98882070000019],[36.14986535600022,12.980242411000162],[36.140873657000185,12.965540467000082],[36.125990845000075,12.950967712000105],[36.11441532400008,12.933888652000164],[36.115345500000075,12.91171946300014],[36.13870324700011,12.871851094000121],[36.14304406800008,12.856942444000154],[36.14325077300012,12.832551168000135],[36.12361372900008,12.721446839000151],[36.115035441000174,12.701809795000202],[36.099429159000096,12.695660299000137],[36.072144002000215,12.703050029000153],[36.063048950000024,12.707907614000161],[36.05726119000005,12.712145081000116],[36.05064660600007,12.715452373000119],[36.03845096800015,12.717467753000165],[36.02997603300017,12.717157695000182],[35.728392375000084,12.674369608000148],[35.70276086500016,12.666049703000098],[35.7013703150001,12.665421098000138],[35.687671346000144,12.659228414000138],[35.684053996000074,12.656076152000182],[35.68426070100022,12.650753479000144],[35.67743941300009,12.625225322000105],[35.67599247300009,12.614528300000188],[35.672375123000194,12.604296366000112],[35.662453247000116,12.593651021000126],[35.65377160600022,12.59003367100014],[35.634444621000085,12.588586731000149],[35.62586633300023,12.585124410000105],[35.61687463300021,12.575150859000189],[35.428772420000115,12.266952616000154],[35.418127076000104,12.238995667000154],[35.415439900000166,12.211142070000093],[35.41254602000018,12.198636373000099],[35.403347615000115,12.185097148000123],[35.392908976000086,12.176725566000144],[35.371101522000146,12.165511780000188],[35.361283,12.157346904000178],[35.353738240000126,12.146029765000106],[35.335961548000085,12.102311503000124],[35.32603967300011,12.04748280900013],[35.3173580320001,12.023711650000166],[35.29782434100011,12.001594137000154],[35.26041060400004,11.980406799000107],[35.25141890400013,11.971725159000144],[35.248525024000145,11.962475078000125],[35.24837877500008,11.957857794000105],[35.24780155400006,11.939634094000127],[35.245734497000086,11.929867248000164],[35.21555546100009,11.89658762700013],[35.14855575200008,11.871229016000186],[35.1266719970001,11.862946269000176],[35.08801802600013,11.83819325800016],[35.072721802000075,11.818866272000106],[35.05907922400016,11.795870260000155],[35.04822717300013,11.771375630000193],[35.0411991780002,11.747604472000148],[35.0405790610001,11.727398987000157],[35.048123820000086,11.689520163000168],[35.04626346800009,11.648644104000155],[35.0534981690001,11.628076884000164],[35.07437544800021,11.587355855000112],[35.076855917000074,11.568648987000131],[35.073135214000075,11.548960266000163],[34.94714807100016,11.2748684700001],[34.94425419100017,11.253241883000129],[34.953969361000105,11.22611175600015],[34.97143599400013,11.206888123000127],[34.9841483970001,11.186398417000163],[34.98032434100017,11.155263367000202],[34.914281861000205,10.963957214000132],[34.91355839000013,10.952975972000146],[34.92317020700014,10.939927674000103],[34.95283247900019,10.918430278000159],[34.9583101800001,10.903418274000089],[34.95066206900011,10.869182638000083],[34.9338155520002,10.845308126000177],[34.87976200300014,10.804612936000126],[34.8615718990001,10.787585551000106],[34.85743778500009,10.77567413400007],[34.85733443200016,10.763556010000173],[34.85133996600021,10.745753479000143],[34.83852421100002,10.729139506000124],[34.82756880700006,10.727770080000155],[34.815373169000026,10.731309916000114],[34.79852665200005,10.729656271000165],[34.78622766100014,10.718985087000164],[34.77289514200018,10.688263448000114],[34.76483361800021,10.680253601000146],[34.75439497900018,10.68412933400019],[34.752948039000074,10.698727925000156],[34.7569788000001,10.728803609000138],[34.75067427600007,10.74394480400015],[34.73744510900005,10.75539113400015],[34.70809289600018,10.774072164000131],[34.5870666910001,10.879285380000127],[34.57476770000008,10.884142965000137],[34.55781783000023,10.877786763000117],[34.43730839000014,10.795672913000189],[34.42004846200021,10.780815938000158],[34.40423547400022,10.75983530700016],[34.36558150200014,10.685782980000141],[34.279488566000026,10.565506083000159],[34.27173710100013,10.530081889000144],[34.27618127500014,10.488714905000109],[34.324860474000076,10.268650818000195],[34.32589400200007,10.223563131000148],[34.31741906800002,10.181265971000157],[34.31421512800008,10.175452372000095],[34.30460331200007,10.16563385000012],[34.30181278500018,10.160285340000158],[34.30160607900015,10.1489940390001],[34.30501672400007,10.12460276300007],[34.30346643000016,10.113544006000154],[34.280832153000205,10.08010935500009],[34.2219210210001,10.026029968000088],[34.098207642000176,9.679720358000097],[34.06689172400016,9.531176453000128],[34.07069786300022,9.454592111000139],[33.90085534700009,9.455289612000115],[33.89775476000014,9.456581523000152],[33.89480920400009,9.459475403000141],[33.89201867700015,9.464281312000153],[33.888711385000164,9.470818380000125],[33.88142500800009,9.499214580000142],[33.877704305000094,9.543423768000151],[33.88390547700007,9.61985321000013],[33.90488610800017,9.710700379000116],[33.96911991400011,9.83834116700018],[33.97237552900017,9.848883158000149],[33.973254028000014,9.854851787000172],[33.973254028000014,9.861776428000155],[33.96725956200012,9.884514058000134],[33.95981815600007,9.90420277900017],[33.95609745300007,9.933994242000082],[33.96725956200012,10.000269267000178],[33.9683447670001,10.020810648000163],[33.96679447500017,10.047268982000148],[33.961781860000116,10.064037984000109],[33.91697839300011,10.17452219700013],[33.90209558100011,10.192040507000101],[33.6855454915001,10.367972921000188],[33.468995402000104,10.54390533500019],[33.389827108000105,10.639248353000198],[33.38130049600008,10.64578542100017],[33.370603475000195,10.650901387000161],[33.15072025600014,10.73097401900013],[33.14002323400021,10.739035543000114],[33.141418498000085,10.75081777000011],[33.14823978700005,10.76603647900015],[33.17464644400016,10.812286886000123],[33.17836714700016,10.824534200000144],[33.18208785000016,10.843241069000129],[33.132504313500164,11.213903198500091],[33.08292077700011,11.584565328000153],[33.08323083500008,11.599163920000123],[33.08772668500015,11.608853251000141],[33.09144738800014,11.614796041000162],[33.10457320100008,11.630583191000154],[33.1159936930002,11.646938782000106],[33.12901615400003,11.67549001100015],[33.13242679900006,11.686212871000166],[33.14601770000016,11.81865956600015],[33.144984172000164,11.934673157000175],[33.20301680500003,12.128098043000136],[33.20921797700012,12.210366923000095],[32.73177941900022,12.21615468400016],[32.72883386200013,12.211917216000101],[32.728523804000105,12.206852926000124],[32.72971236200007,12.20106516500016],[32.73038415500011,12.194863993000169],[32.73007409700003,12.181893209000151],[32.72619836400011,12.157941183000133],[32.72526818800023,12.145254619000182],[32.72573327600016,12.132335510000173],[32.73301965300007,12.085981750000187],[32.74557702700016,12.051125997000113],[32.74759240700021,12.03952463800016],[32.74821252400008,12.02681223600011],[32.746662231000045,12.002731018000162],[32.414434448000094,12.001271159000169],[32.08220666500019,11.999811300000175],[32.34523970500018,11.709105530000087],[32.34834029100014,11.70316274000008],[32.35299117100007,11.687375591000176],[32.354851522000075,11.675774231000132],[32.35981245900015,11.573480733000139],[32.345704793000124,11.411630148000155],[32.34875370300003,11.307579651000182],[32.364153280000124,11.240012716000136],[32.43536340300008,11.107023418000097],[32.430712524000086,11.082192891000146],[32.414072713000195,11.05085113500013],[32.17847985850014,10.853201700500179],[31.94288700400008,10.655552266000129],[31.929864543000146,10.636922913000163],[31.86418379700009,10.472126770000102],[31.80196537300017,10.37624115000014],[31.774215129000112,10.348775126000177],[31.6648161210002,10.214235535000128],[31.44981632450006,10.003279419500146],[31.2348165280001,9.792323304000178],[31.16438155100016,9.7640046180001],[30.950234416000086,9.752454936000149],[30.94990985100011,9.752446052000124],[30.836959676000077,9.749354350000202],[30.82409224500006,9.746176249000143],[30.80481693500022,9.738941549000174],[30.793034709000068,9.728011984000204],[30.779082072000083,9.719872946000109],[30.765284465000118,9.724291281000191],[30.749264771000153,9.735763448000112],[30.48457808400022,9.97202809700012],[30.24877852350019,10.121256714500106],[30.012978963000105,10.270485332000192],[29.96781376200013,10.243329366000125],[29.700956665,10.115016785000165],[29.645869589000224,10.081711325000114],[29.615432170000105,10.058146871000119],[29.613881877000065,9.914460551000161],[29.567321412000208,9.84136423800011],[29.483088827000213,9.761679179000152],[29.252353556000145,9.711165467000129],[29.132257527000093,9.667731425000127],[29.009474324000053,9.603239237000196],[28.989475545000086,9.587090352000118],[28.91383284900013,9.52903105100016],[28.849330486000067,9.465901079000147],[28.828744626000113,9.427474139000182],[28.82737223500007,9.384930027000095],[28.83148940700002,9.349247868000132],[28.843840924000062,9.324544836000172],[28.842550174000106,9.324555925000197],[28.443829853500116,9.327981357000198],[28.04510953300013,9.331406789000198],[27.99707585900006,9.384930027000095],[27.895072062000054,9.595410258000172],[27.884788452000066,9.591379496000087],[27.86835534700009,9.588511455000114],[27.76960168500005,9.583317973000192],[27.641495809000048,9.601947327000161],[27.63591475400011,9.601378886000191],[27.61508915200008,9.595797831000183],[27.609301392000106,9.595177714000116],[27.528066040000112,9.605357972000178],[27.38512902800008,9.604789531000135],[27.339240357000108,9.612799378000204],[27.080393107000077,9.606830750000183],[26.694318482000085,9.476942037000185],[26.683621460000097,9.476011861000146],[26.62574385600007,9.480662740000113],[26.600887491000094,9.491979879000084],[26.556859172000145,9.520453593000111],[26.36816267900008,9.739716695000098],[26.1794661860001,9.958979797000069],[26.10262333200012,9.987841085000113],[26.102313341000126,9.988163298000131],[26.088205607000106,10.002827251000085],[26.076423381000097,10.017710063000123],[26.016685424000087,10.11486175500012],[26.010794312000083,10.122690735000148],[26.0072286380001,10.12599802700015],[26.000872436000066,10.13106231700013],[25.99808190900012,10.13245758100011],[25.970900105000027,10.140312398000134],[25.95570723500009,10.146901144000125],[25.919688761000117,10.167855937000127],[25.911937296000104,10.174212138000144],[25.905426066000132,10.181265971000157],[25.902790568000114,10.185529276000125],[25.90093021600012,10.19105865500012],[25.894884074000085,10.345829569000088],[25.893643840000035,10.351333110000082],[25.89162845900009,10.355983988000133],[25.886512492000094,10.364303894000102],[25.843052612000093,10.41781483900013],[25.839331909000094,10.42055369100018],[25.828479858000037,10.419546000000196],[25.78377974500009,10.407892965000144],[25.762799113000085,10.39773854600017],[25.75396244300009,10.395335592000121],[25.74590092000011,10.394405416000083],[25.7057483320001,10.39595570900019],[25.699960571000105,10.395025533000137],[25.68414758300011,10.390684713000155],[25.66135827700012,10.387015686000069],[25.629060506000144,10.386705628000172],[25.62332442200008,10.385852966000144],[25.580329631000097,10.375310974000087],[25.50648400900013,10.349627788000104],[25.503383423000116,10.349162700000177],[25.490826049000102,10.345597025000117],[25.47950891100004,10.343814189000128],[25.439304647000085,10.345209453000107],[25.42721236200012,10.34412424700011],[25.415843547000122,10.342031352000147],[25.40096073400008,10.336992899000165],[25.391503947000103,10.3326520800001],[25.381272013000114,10.329448141000126],[25.369334757000075,10.328207906000088],[25.362926880000146,10.328130392000162],[25.351144653000034,10.326812642000107],[25.346028686000068,10.325262349000184],[25.3274251710001,10.316580709000135],[25.32199914600011,10.315650533000166],[25.316211385000145,10.315573019000155],[25.305359334000087,10.317123311000087],[25.299778279000094,10.316658223000145],[25.290166463000073,10.313092550000178],[25.284740437000096,10.311852316000142],[25.27869429500006,10.312007344000092],[25.272803182000047,10.313015036000152],[25.267067098000094,10.314797872000142],[25.25699019400014,10.319216207000139],[25.251512492000074,10.320999044000132],[25.23957523600012,10.323014425000167],[25.232753947000077,10.322316793000184],[25.225622599000133,10.32061147000013],[25.216630900000094,10.316968283000136],[25.209964640000095,10.316115621000106],[25.19828576600011,10.317588399000101],[25.192549683000067,10.317433370000158],[25.16836511200009,10.308131613000128],[25.156892944000077,10.306245422000117],[25.13126143400009,10.308286641000166],[25.120564413000096,10.306090393000176],[25.10599165900004,10.300354310000117],[25.09028202300007,10.295755107000161],[25.084080851000063,10.29322296200017],[25.07694950400014,10.286866761000155],[25.06702762800006,10.274929504000113],[25.01705651800006,10.168010966000152],[25.014421021000146,10.157365621000165],[25.013645874000133,10.149071554000116],[25.01581628400004,10.138038635000115],[25.017366577000132,10.13300018300015],[25.025583130000086,10.114164124000126],[25.028683716000046,10.103906352000138],[25.029303833000085,10.098247782000115],[25.028993775000117,10.092046610000125],[25.027753540000077,10.086155497000119],[25.016901489000134,10.056751607000137],[24.990701538000106,10.003059794000137],[24.984965454000132,9.985593160000107],[24.976283813000094,9.967351379000135],[24.9678605550001,9.955956726000139],[24.954373006000136,9.942236634000125],[24.926932821000094,9.905210470000156],[24.913858683000115,9.890715230000126],[24.87928715000004,9.869915466000165],[24.844818970000063,9.841674296000093],[24.836292358000065,9.836635844000128],[24.827610717000084,9.832682597000142],[24.816758667000045,9.830744731000124],[24.807301880000065,9.83004709900014],[24.80368453000008,9.829168600000102],[24.79980879700014,9.825215353000116],[24.79639815200011,9.818859151000181],[24.792677449000106,9.798369446000123],[24.794382772000063,9.532184143000109],[24.79252242000007,9.5204019170001],[24.78523604300008,9.49750925700009],[24.72394779400011,9.429218852000133],[24.694957316000057,9.40291554800018],[24.6869991450001,9.391365866000143],[24.680177857000047,9.373356629000142],[24.660954224000108,9.182283020000128],[24.65986901800011,9.176986186000192],[24.65599328600007,9.16729685500016],[24.56535282400003,9.014851379000135],[24.559306681000095,8.999865214000167],[24.558376505000126,8.993353984000109],[24.558376505000126,8.886745504000132],[24.552795450000133,8.880079244000129],[24.54287357600012,8.874653219000152],[24.493832642000115,8.858349304000114],[24.40288212100009,8.84889251800014],[24.380092814000108,8.84421580000017],[24.270848837000102,8.775718689000158],[24.240566446000084,8.761533508000113],[24.182998902000065,8.717918599000157],[24.176952759000102,8.709857076000162],[24.17478234800012,8.695646057000204],[24.170328031000054,8.689327330000168],[24.114010864000104,8.681641744000103],[24.009624471000052,8.698875835000178],[23.981305786000064,8.694173279000111],[23.96208215300004,8.697015483000172],[23.922291300000097,8.713448588000148],[23.866687459000104,8.707790019000115],[23.803435506000113,8.722130229000115],[23.768915650000054,8.721251730000162],[23.737496379000106,8.70685984300016],[23.721269979000084,8.702002258000135],[23.68912723800014,8.710683899000102],[23.657087850000067,8.710012105000203],[23.644065389000104,8.715153911000115],[23.629079224000034,8.725592550000142],[23.61336958800007,8.732232972000148],[23.596419719000068,8.734145000000169],[23.578022908000065,8.730475973000168],[23.56407027200009,8.722698670000156],[23.54050581800007,8.704792786000098],[23.525726359000142,8.7014854950001],[23.5052624920001,8.710735576000118],[23.49006962100009,8.732594706000143],[23.481801392000136,8.759363099000126],[23.482318156000073,8.783392639000155],[23.495443970000053,8.809437562000127],[23.536681762000057,8.855610453000168],[23.553631632000133,8.883153991000157],[23.5659306230001,8.940023905000203],[23.567480917000097,8.974827982000164],[23.560142863000124,8.99645457000014],[23.54257287600012,8.99728139300008],[23.505469197000135,8.961082052000135],[23.478080689000105,8.95891164100014],[23.451415650000087,8.974182027000097],[23.43828983600011,8.994542542000119],[23.435706014000086,9.018933817000146],[23.457720174000087,9.146161194000113],[23.462821145000078,9.153724977000138],[23.474256632000078,9.170681661000174],[23.489449503000117,9.176701966000124],[23.52179895000009,9.175358379000144],[23.53792199700007,9.178148906000118],[23.549497518000123,9.185254415000145],[23.57140832500008,9.207294413000128],[23.610062296000077,9.255456848000122],[23.623291463000072,9.265637106000083],[23.63217980900009,9.27757436100012],[23.6307328690001,9.29217295300019],[23.620500936000095,9.32286875500013],[23.621844523000078,9.340619609000157],[23.646855917000067,9.418392640000178],[23.646339152000053,9.425033061000178],[23.640861450000045,9.433120422000087],[23.634970337000137,9.435394185000106],[23.62752893100011,9.435084127000122],[23.619984171000084,9.447719015000146],[23.61719364400011,9.45717580200012],[23.61853723100009,9.488310852000081],[23.616470174000114,9.501462504000159],[23.606755005000082,9.526241354000177],[23.6061348880001,9.537170919000161],[23.61853723100009,9.566083883000204],[23.655537557000116,9.622462870000135],[23.669076782000104,9.652021790000163],[23.674037720000058,9.690339864000165],[23.6447888590001,9.863068339000108],[23.62401493400006,9.907768453000145],[23.457616822000062,10.173747050500168],[23.291218710000038,10.439725648000175],[23.10942102100006,10.614495342000168],[23.005551392000115,10.68681650800012],[22.863234497000064,10.89181691500012],[22.86106408700007,10.919153747000152],[22.9002348220001,11.059894511000095],[22.90653934800011,11.069893901000114],[22.922352336000127,11.08707631500009],[22.925142863000072,11.097954204000132],[22.92565962700013,11.11813385000012],[22.928966919000118,11.1379259240001],[22.935168090000104,11.155883484000169],[22.95201460700008,11.19104929600013],[22.956458781000094,11.208800151000148],[22.954535630000123,11.237843295000133],[22.953668254000036,11.250942281000107],[22.928346802000135,11.325149638000156],[22.914807576000072,11.396101379000141],[22.900441529000144,11.408245341000137],[22.87698042800008,11.408839621000197],[22.781792440000117,11.398891907000106],[22.771870565000143,11.40318105100016],[22.771560506000043,11.433308411000155],[22.76876997800008,11.442325948000189],[22.743035115000108,11.466097107000152],[22.66252323400002,11.4930722040001],[22.628106730000066,11.50984120700015],[22.59234663900014,11.54366343200013],[22.561754191000148,11.586012268000147],[22.541703735000084,11.632986145000103],[22.537052856000116,11.680890198000128],[22.59286340300011,11.988933411000119],[22.610536743000097,12.039627991000188],[22.613533977000117,12.057249655000177],[22.61239709500009,12.072804261000114],[22.607332804000123,12.077713522000138],[22.598857869000113,12.063244121000196],[22.585525350000093,12.071357321000121],[22.546457967000094,12.06443267800013],[22.481449015000123,12.044278870000156],[22.47049361200004,12.036113994000132],[22.464499145000104,12.03296173100017],[22.45809126800009,12.030429586000182],[22.483826131000086,12.140345357000156],[22.48475630700011,12.15254099600017],[22.484032837000115,12.164736634000178],[22.481449015000123,12.176673889000128],[22.407965128000058,12.399761048000144],[22.374892212000077,12.450869039000125],[22.372825155000097,12.463116353000158],[22.395872843000063,12.496085917000116],[22.44568892400011,12.61106597900016],[22.432459757000117,12.623830058000124],[22.330140422000113,12.661450501000147],[22.204876750000064,12.743357646000105],[22.176248006000094,12.701499735000127],[22.144105265000064,12.671269023000121],[22.105864706000087,12.650391744000144],[22.05873580000008,12.636697490000115],[22.01966841600006,12.631426493000092],[21.9771903890001,12.631839905000106],[21.935952596000106,12.639539693000188],[21.90081262200007,12.656437887000095],[21.880142049000142,12.67628163600017],[21.84086796100007,12.748938701000114],[21.813686157000088,12.78229583800008],[21.80944869000012,12.793664653000164],[21.811825806000083,12.799969177000094],[21.827845500000137,12.831104228000143],[21.852960246000066,12.905724996000117],[21.935125773000095,13.05915232300019],[21.964064575000066,13.098348898000152],[21.998377726000086,13.130594991000123],[22.016051066000074,13.140232646000127],[22.123434692000046,13.182168071000135],[22.139971151000054,13.193511048000119],[22.23226525800004,13.289034933000066],[22.26761193900012,13.33456186900014],[22.275983521000082,13.376316427000177],[22.26399458800006,13.3991832480001],[22.228647908000138,13.441118672000187],[22.21562544800011,13.464993184000079],[22.211181274000097,13.484190979000088],[22.21056115700011,13.541732686000131],[22.19588505000013,13.580464173000152],[22.132116333000113,13.63865183500016],[22.114339641000072,13.677383321000093],[22.114339641000072,13.699707540000148],[22.1163033440001,13.715184632000145],[22.11289270000009,13.729834900000126],[22.097079712000095,13.74975616500015],[22.07372196400013,13.771356913000202],[22.07496219900008,13.780322775000142],[22.0993534750001,13.819415996000172],[22.180762493000145,13.92055494600011],[22.190614054000093,13.93279408800008],[22.214695272000142,13.956616923000153],[22.24353072100007,13.975427145000154],[22.402280721000125,14.049298604000127],[22.421607706000145,14.06214019800012],[22.45871138500013,14.096117452000158],[22.481449015000123,14.108545634000135],[22.5082174070001,14.113635763000117],[22.531471802000112,14.122627462000153],[22.546354614000048,14.139706523000186],[22.547698201000117,14.169032898000168],[22.540876912000073,14.201175639000098],[22.531885213000123,14.220631816000093],[22.514108520000093,14.231458028000134],[22.457677856000146,14.241147359000152],[22.44103804600013,14.24985483800013],[22.429049113000072,14.264608460000133],[22.419954061000112,14.286235046000115],[22.417060181000124,14.298094787000139],[22.418093710000107,14.30594960600017],[22.426982056000043,14.323002828000199],[22.43132287600011,14.327214458000142],[22.444862101000098,14.333363952000111],[22.449926392000062,14.33837656700017],[22.450959920000056,14.34579213400019],[22.44734257000007,14.351631572000175],[22.44238163300011,14.35692840600012],[22.439074341,14.36292287200014],[22.424914998000077,14.470435690000159],[22.41716353400005,14.484104106000174],[22.38636438000009,14.506531678000156],[22.36352339600009,14.543532003000124],[22.382333618000104,14.57911122600018],[22.422744588000086,14.609083557000131],[22.46542932100007,14.629289043000128],[22.666347290000147,14.681740622000163],[22.676579224000136,14.688975322000132],[22.681436808000058,14.702927958000132],[22.679679809000078,14.71181630500014],[22.66459029100008,14.743752340000128],[22.65900923600006,14.76127065000017],[22.650844361000054,14.816151022000097],[22.650844361000054,14.841937561000107],[22.658905883000045,14.857414653000191],[22.69549279800009,14.881470032000138],[22.715336548000067,14.899427592000123],[22.721020956000103,14.915938212000114],[22.721951132000072,14.934670919000098],[22.72722212700009,14.959036357000116],[22.738901001000073,14.979810283000162],[22.82902469900006,15.071639302000106],[22.848765096000136,15.087503967000115],[22.871606079000117,15.099699605000138],[22.90550581900004,15.112567037000133],[22.913257283000064,15.121687928000199],[22.958009074000103,15.201631368000136],[22.9656571860001,15.223903910000088],[22.978369588000135,15.340201722000174],[22.976405884000116,15.373636373000165],[22.966484008000123,15.404823100000142],[22.944986613000083,15.433115947000132],[22.923592570000068,15.455569356000026],[22.906849406000106,15.48140757200015],[22.899511353000037,15.51019134600007],[22.90674605300009,15.541403911000048],[22.92565962700013,15.563934835000069],[23.004517863000046,15.611425476000178],[23.06849328600012,15.68669219900012],[23.094641561000117,15.704262187000026],[23.119249041000103,15.70722354500016],[23.16678186000013,15.71294382700016],[23.320570923000105,15.681317851000172],[23.395811808000076,15.688345846000077],[23.52706994600004,15.735164694],[23.59269901600007,15.749013977000159],[23.707524048000067,15.74885894800012],[23.829067017000085,15.731030579000091],[23.945545695000135,15.692221579000133],[23.9726241460001,15.69108469700002],[23.98440637200008,15.721160381000104],[23.98440637200008,15.721939934000103],[23.98440637200008,15.779658102],[23.984303019000066,16.011943665],[23.98399296000008,16.244229228000037],[23.98378625500004,16.476514791000128],[23.983682902000083,16.70880035500015],[23.983476196000137,16.941137594000068],[23.983269491000073,17.173371481000075],[23.983062784000108,17.40565704400008],[23.982856079000072,17.637942607000085],[23.982752726000058,17.870228170000118],[23.982442668000143,18.102513733000123],[23.982235962000086,18.334799297000032],[23.982132609000075,18.56703318300005],[23.981925903000104,18.799292908000055],[23.981719197000075,19.03155263300006],[23.981512492000093,19.263838196000062],[23.981305786000064,19.49612375900007],[23.981305786000064,19.621025696000018],[23.981305786000064,19.745824280000036],[23.981305786000064,19.870597025000123],[23.981305786000064,19.99542144800013],[24.14243290200011,19.99542144800013],[24.22790572100004,19.995318095000115],[24.340870402000036,19.995292257000116],[24.47460900900009,19.99518890400016],[24.59914921000012,19.995059713000146],[24.72131229700011,19.995033875000114],[24.867246542000146,19.994956360000018],[24.968015584000057,19.994956360000018],[24.970185994000133,19.99518890400016],[24.972356405000113,19.99542144800013],[24.974526815000104,19.995653992000097],[24.97680057800002,19.995964050000097],[24.97773075300009,19.99746266699999],[24.97866092900003,19.99901296000003],[24.979591105000083,20.000511576000022],[24.98052128100005,20.00206187000005],[24.98052128100005,20.008390827000042],[24.98052128100005,20.120013326],[24.980624634000062,20.21509796200003],[24.980624634000062,20.31023427300009],[24.980727987000108,20.405318909000115],[24.98083134000012,20.500351868000124],[24.98083134000012,20.624943746],[24.98083134000012,20.749535624000043],[24.980934692000062,20.874127503000082],[24.980934692000062,20.99871938100013],[24.980934692000062,21.12331126],[24.981038045000073,21.247851461000135],[24.98114139800012,21.372443339000185],[24.98114139800012,21.497035218000136],[24.98114139800012,21.62157541900008],[24.98114139800012,21.746167298000117],[24.981244751000133,21.87081085200019],[24.981244751000133,21.99535105400004],[25.078499797000063,21.995299378000126],[25.1758581950001,21.995299378000126],[25.273216593000058,21.995299378000126],[25.37067834500004,21.995299378000126],[25.46793339000007,21.995299378000126],[25.56524011200011,21.99524770100011],[25.662598511000056,21.99524770100011],[25.75985355600008,21.99524770100011],[25.857108602,21.99524770100011],[25.954467,21.995196025],[26.051928752000062,21.995144348000068],[26.14918379700006,21.995144348000068],[26.24654219600012,21.995144348000068],[26.343797241000058,21.99509267200007],[26.441052286000083,21.99509267200007],[26.538410685000116,21.99509267200007],[26.63576908400009,21.99509267200007],[26.733127482000043,21.995040995000135],[26.83038252700007,21.99498932000013],[26.927740926000098,21.99498932000013],[27.024995972000056,21.99498932000013],[27.122354370000096,21.99498932000013],[27.219712768000136,21.99498932000013],[27.316967814000066,21.994937643000025],[27.414326212000105,21.994937643000025],[27.511684611000078,21.994937643000025],[27.609043009000118,21.994937643000025],[27.70640140800009,21.994937643000025],[27.803656453000116,21.994937643000025],[27.90101485200006,21.994885966000098],[27.9983732500001,21.9948342900001],[28.095731649000072,21.9948342900001],[28.19293501800007,21.9948342900001],[28.29034509300004,21.994782613],[28.38770349100008,21.994782613],[28.48490686000011,21.994782613],[28.58231693500008,21.994782613],[28.679675334000105,21.994782613],[28.777033732000096,21.994782613],[28.874392130000043,21.994730937000057],[28.971647176000143,21.994679260000154],[29.069005575000116,21.994679260000154],[29.16636397300007,21.994679260000154],[29.26361901800007,21.994679260000154],[29.360822387000127,21.994679260000154],[29.458232463000087,21.994627584000128],[29.55559086100001,21.994627584000128],[29.652949259000163,21.994627584000128],[29.750307658000136,21.994627584000128],[29.847562703000136,21.994575907000023],[29.944817749000062,21.994524232000014],[30.04217614800021,21.994524232000014],[30.13937951700015,21.994524232000014],[30.236892944000118,21.994524232000014],[30.33425134300009,21.994524232000014],[30.431506389000134,21.994472555000087],[30.528761434000128,21.994472555000087],[30.626119832000114,21.994472555000087],[30.72347823100003,21.994472555000087],[30.82073327600008,21.994472555000087],[30.91814335100011,21.994472555000087],[31.01555342600008,21.99442087900009],[31.112911825000168,21.994369202000158],[31.21011519400005,21.994369202000158],[31.24840743000007,21.994369202000158],[31.261636597000145,22.001758932000158],[31.310935913000066,22.0957066860001],[31.314388101000162,22.102273188000126],[31.35951175900007,22.188104146000015],[31.385349976000185,22.21445912700007],[31.404056844000163,22.223760885],[31.42328047700019,22.226964823000074],[31.442504110000215,22.224174296000015],[31.46090091900012,22.21549265600005],[31.482915080000083,22.195442200000016],[31.49180342600019,22.17322133400016],[31.490563192000053,22.148209941000072],[31.467412150000058,22.084131165000073]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"South Sudan","sov_a3":"SDS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Sudan","adm0_a3":"SDS","geou_dif":0,"geounit":"South Sudan","gu_a3":"SDS","su_dif":0,"subunit":"South Sudan","su_a3":"SDS","brk_diff":0,"name":"S. Sudan","name_long":"South Sudan","brk_a3":"SDS","brk_name":"S. Sudan","brk_group":null,"abbrev":"S. Sud.","postal":"SS","formal_en":"Republic of South Sudan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"South Sudan","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":3,"mapcolor13":5,"pop_est":10625176,"gdp_md_est":13227,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"-99","iso_a2":"SS","iso_a3":"SSD","iso_n3":"728","un_a3":"728","wb_a2":"SS","wb_a3":"SSD","woe_id":-99,"woe_id_eh":-99,"woe_note":"Includes states of 20069899, 20069897, 20069898, 20069901, 20069909, and 20069908 but maybe more?","adm0_a3_is":"SSD","adm0_a3_us":"SDS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":11,"abbrev_len":7,"tiny":-99,"homepart":1,"filename":"SSD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[33.96911991400011,9.83834116700018],[33.90488610800017,9.710700379000116],[33.88390547700007,9.61985321000013],[33.877704305000094,9.543423768000151],[33.88142500800009,9.499214580000142],[33.888711385000164,9.470818380000125],[33.89201867700015,9.464281312000153],[33.89480920400009,9.459475403000141],[33.89775476000014,9.456581523000152],[33.90085534700009,9.455289612000115],[34.07069786300022,9.454592111000139],[34.08309642500015,9.205117371000126],[34.097473322000184,8.915836019000125],[34.111850219000104,8.626554667000136],[34.10725065900013,8.601530867000179],[34.10316857900014,8.57932240800011],[34.09024947100013,8.556507263000114],[34.06957889800011,8.533614604000178],[33.97077355900015,8.445377096000115],[33.950309692000104,8.433207296000191],[33.93170617700011,8.428143006000127],[33.87517216000017,8.427936299000166],[33.84085900900007,8.423983052000096],[33.82411584500019,8.419487203000173],[33.80809615000007,8.412614238000117],[33.79765751200014,8.405612081000115],[33.756213012000075,8.370136211000158],[33.75187219300008,8.368792623000104],[33.74102014200011,8.36708730100014],[33.695544881000075,8.37287506200012],[33.67130863400009,8.400289409000152],[33.65167159000006,8.434499206000154],[33.62040734900009,8.460699158000168],[33.60009851000015,8.463954773000154],[33.58537072800007,8.458115336000162],[33.57115970800007,8.450131327000108],[33.55214278200012,8.446824036000109],[33.53705326300022,8.45320607500014],[33.521963745000136,8.465324199000136],[33.5051172280001,8.474884338000123],[33.4847567140001,8.474005839000185],[33.4903377680001,8.466512756000157],[33.489924357000206,8.462921245000175],[33.48051924600023,8.457650249000139],[33.41313317800015,8.449717916000095],[33.400162394000205,8.45263763500017],[33.39210087,8.451862488000174],[33.38460778800018,8.448012594000131],[33.370861857000165,8.437393087000146],[33.36135339300009,8.434292501000185],[33.252729533000064,8.458167013000178],[33.23515954600006,8.455634867000185],[33.206427450000064,8.430571798000186],[33.207357626000224,8.426592712000115],[33.21035485800016,8.420779114000126],[33.20291345200022,8.414112854000123],[33.187823934000136,8.41103810700018],[33.17407800300006,8.404475200000192],[33.169530477000166,8.397421366000174],[33.1678768310002,8.389721579000181],[33.167980184000015,8.372823385000103],[33.16684330200022,8.368275859000164],[33.16188236500008,8.361506246000118],[33.16115889400006,8.356106059000155],[33.16332930500007,8.352953797000097],[33.172321005000214,8.34652008100015],[33.17407800300006,8.343057760000105],[33.17180424000017,8.330887960000112],[33.16312259900022,8.312051901000174],[33.16115889400006,8.30458465600016],[33.164362834000116,8.292776591000147],[33.171390829000046,8.283113099000118],[33.17841882300016,8.275671692000103],[33.18575687700016,8.264509583000162],[33.19485192800001,8.25923858700014],[33.20828780200006,8.253683370000132],[33.20689253800012,8.24073842300011],[33.199864543000075,8.235519105000094],[33.19051110900014,8.232418518000145],[33.18162276200022,8.225726420000129],[33.17397465000007,8.214590149000102],[33.169943889000166,8.205495097000139],[33.1682902420001,8.19539235500018],[33.167980184000015,8.181362203000077],[33.17108077000009,8.175962016000199],[33.184723348000176,8.166246846000163],[33.187823934000136,8.160898336000114],[33.18513675900007,8.141080424000137],[33.177281942000064,8.127101949000135],[33.16477624500007,8.117050883000104],[33.14751631700008,8.109066874000135],[33.11754398600013,8.104157614000187],[33.11340987200012,8.09909332200013],[33.111342814000146,8.090644226000123],[33.10658858200023,8.080489807000163],[33.100594116000224,8.071033020000186],[33.043853393000205,8.01346547500016],[33.03114099200016,7.996308899000099],[33.02607670000006,7.986283671000165],[33.02163252800008,7.965251363000149],[33.01677494300022,7.958326722000081],[33.012020711000076,7.95331410700011],[33.00756888300023,7.944057830000118],[33.00680139200003,7.942462057000156],[32.99357222500006,7.92814768500017],[32.989799845000135,7.917243958000199],[33.01501794400005,7.850633036000203],[33.02349287900009,7.835078430000181],[33.040752808000065,7.824846497000109],[33.04462854000022,7.816423238000127],[33.047677449000076,7.807276510000135],[33.051294800000136,7.801127014000159],[33.05832279400013,7.797974752000116],[33.08540124500009,7.794977519000099],[33.10751875800011,7.785210673000136],[33.12085127800012,7.783298645000115],[33.12694909700011,7.791566874000167],[33.1321167400001,7.793943990000115],[33.1645178630001,7.801127014000159],[33.17294112100009,7.799628398000152],[33.20146651200011,7.788156230000141],[33.233919312000154,7.783195292000187],[33.242394247000135,7.780714824000114],[33.25779382400012,7.767433980000106],[33.27350345900018,7.749192200000152],[33.29159021000012,7.733069153000173],[33.34714237500012,7.718961487000144],[33.359803100000164,7.719271545000127],[33.38440108300014,7.735446269000121],[33.393289429000134,7.739735412000172],[33.436490926000175,7.74857208200018],[33.462329142000186,7.749502258000136],[33.47953739400006,7.743146057000117],[33.4884774170001,7.736169739000118],[33.50682255100011,7.730950419000095],[33.5167961020002,7.726092835000173],[33.52651127100014,7.717101136000138],[33.54036055500009,7.698911032000183],[33.550850871000165,7.691314596000125],[33.57229659000009,7.685216777000164],[33.637202189000135,7.691314596000125],[33.64774418100009,7.688627422000195],[33.6750293380002,7.670850729000165],[33.70655196200008,7.661859029000126],[33.716060425000165,7.657156474000145],[33.72944462100011,7.642118632000162],[33.7610705970001,7.598141988000109],[33.8115067950001,7.560986634000116],[33.82142867000019,7.558402812000111],[33.84209924300009,7.555922344000138],[33.85253788200012,7.55354522800019],[33.88240686000003,7.53607859300014],[34.00653365100018,7.409936422000087],[34.02369022600013,7.38244456000011],[34.03061486800012,7.348699850000131],[34.03113163200007,7.255372213000086],[34.033612101000095,7.250256247000095],[34.040019979000164,7.247259013000174],[34.08590865100015,7.21149892200016],[34.11319380700016,7.177547506000137],[34.13241743900008,7.163388163000178],[34.151124308000156,7.167470602000093],[34.1677641200001,7.175377096000148],[34.18140669800019,7.16721221900012],[34.19091516100016,7.149538880000121],[34.195772746000074,7.129023336000144],[34.195772746000074,7.097739748000151],[34.195772746000074,7.086958720000126],[34.198253215000165,7.064376119000172],[34.206004679000074,7.054505920000111],[34.21375614400008,7.051973776000111],[34.21995731600006,7.04613433800013],[34.22987919100015,7.033370260000154],[34.27080692500007,7.003397929000116],[34.2756645100001,6.997403463000182],[34.28072880000016,6.980091858000094],[34.28765344200016,6.97528595000017],[34.294474732000104,6.972237040000151],[34.29757531700013,6.968568013000151],[34.439168742000135,6.934874979000185],[34.50366092900006,6.890019836000107],[34.51234257000013,6.876842346000132],[34.519060506000216,6.861649475000192],[34.52329797400009,6.844182841000147],[34.52474491400008,6.824571635000126],[34.52257450400006,6.821781108000081],[34.51327274600007,6.815295715000104],[34.511102335000174,6.814313863000137],[34.51213586400016,6.808267720000103],[34.51668339000016,6.79806162600012],[34.51792362500012,6.793824158000163],[34.52474491400008,6.752870586000142],[34.53632043400009,6.743077901000092],[34.55399377400013,6.739253845000149],[34.59667850700012,6.739202169000137],[34.618485962000165,6.736540833000105],[34.635539185000056,6.729822896000171],[34.70354536900007,6.684916077000181],[34.709643188000115,6.674012349000122],[34.71450077300013,6.65566721600014],[34.726593058000134,6.641947124000112],[34.73351770000008,6.637606303000126],[34.743542928000096,6.596807760000146],[34.75387821500013,6.556422628000163],[34.77609908000008,6.499449361000187],[34.78426395700009,6.441830139000131],[34.792738892000074,6.421676330000152],[34.83263309700013,6.353540955000141],[34.839040975000074,6.327599386000187],[34.83976444500016,6.268688253000093],[34.84472538200012,6.248689474000159],[34.87996870900011,6.187633769000158],[34.898882283000056,6.138670349000164],[34.91552209500017,6.119705099000115],[34.93443566900007,6.102367656000098],[34.951488892000015,6.08118031900014],[34.959447062000066,6.061724142000159],[34.967963999000204,6.008131317000093],[34.9697823490001,5.996689352000174],[34.95924035600015,5.975502014000128],[34.95572635900018,5.964210714000159],[34.95531294800016,5.952557678000104],[34.96037723800006,5.941705627000147],[34.976810344000086,5.924032288000148],[34.979910929000226,5.912844340000106],[34.97774051900015,5.898659159000147],[34.974536581000194,5.887238668000151],[34.972676229000086,5.876257426000166],[34.97443322800004,5.863105774000188],[34.98435510300007,5.841014099000176],[35.06528039500003,5.726447449000162],[35.07954309100009,5.699782409000122],[35.088224731000054,5.641749777000143],[35.09866337100013,5.622474467000117],[35.14331180800016,5.589659933000092],[35.2234102780001,5.542996114000118],[35.26196089700007,5.511886902000157],[35.26929895000009,5.491784769000104],[35.27363977100006,5.479873352000154],[35.267645304000126,5.468556214000088],[35.25896366400016,5.458143412000154],[35.25183231600013,5.447368876000127],[35.2506954350001,5.435147400000119],[35.25462284300019,5.425923157000113],[35.28748905400013,5.374091696000121],[35.30237186700006,5.357374369000168],[35.320768677000075,5.348718567000134],[35.34495324700006,5.352361756000121],[35.367484172000076,5.368045553000172],[35.40820520000014,5.412564799000165],[35.4302193610001,5.427215068000152],[35.44820275900011,5.430754903000206],[35.469286743000076,5.430754903000206],[35.49016402100008,5.428041890000173],[35.50804406700016,5.423416850000123],[35.5307816980002,5.410084330000188],[35.57387984200014,5.375331930000158],[35.59816776500023,5.36874318500017],[35.62193892400009,5.373781636000132],[35.63981897000021,5.382075704000101],[35.65831913300005,5.386416525000172],[35.683640584000074,5.379595235000123],[35.74937300600013,5.339158427000129],[35.8041500250001,5.318022767000087],[35.80911096200006,5.30910858100016],[35.7820325110001,5.269860332000107],[35.77531457500007,5.24658009900017],[35.77841516100008,5.227149760000188],[35.798258911000204,5.189270936000113],[35.80714725700008,5.165267232000175],[35.807353963000054,5.144674174000087],[35.79918908700003,5.124623718000136],[35.76094852700007,5.076332093000119],[35.755884237000174,5.063438823000112],[35.75164676900013,4.854355977000111],[35.76001835100013,4.805728455000092],[35.78451298100006,4.764180603000113],[35.920835409000205,4.619331563000145],[35.85653615027101,4.619603495646416],[35.78122154735806,4.61992201408151],[35.7784391006081,4.678338213018804],[35.73940198963456,4.681126578088396],[35.71151833893899,4.661608022601584],[35.70593871350573,4.619962448315063],[35.70584560485437,4.619447080679663],[35.70036487866085,4.589110530793363],[35.612139971790356,4.619497383034471],[35.6106412682092,4.620013573553962],[35.56260657344873,4.707137060193701],[35.52218008136728,4.780461080682002],[35.57083604882192,4.904312634202725],[35.495640462755794,4.926428983045696],[35.39611689296228,4.926428983045696],[35.4337146859954,5.003836203996187],[35.411598337152355,5.030375822607752],[35.33356251052041,4.987281410885615],[35.26341879990437,4.948545331888666],[35.24572572083005,4.981719855153216],[35.17618886728749,4.955563790976626],[35.09429820157399,4.924760880020216],[35.00272001408652,4.890314038855208],[34.92082934837319,4.859511127898799],[34.84475119572434,4.830894575067603],[34.76358931605276,4.800365794640683],[34.6662773811436,4.76497963649193],[34.598159026707236,4.730920459273648],[34.529156018317195,4.696418955078627],[34.459673937667134,4.660608951185679],[34.381187785000094,4.62015838600017],[34.28010868300012,4.52006113700017],[34.17913293400008,4.419912212000156],[34.07815718600014,4.319840800000165],[33.97707808500016,4.219691875000166],[33.896049438000055,4.138353170000158],[33.813677205000175,4.056032614000102],[33.701901082000205,3.944075623000174],[33.606196329000085,3.848086650000184],[33.53260909000019,3.774292705000136],[33.52771634900009,3.771430572000114],[33.49064782700012,3.749746399000173],[33.44734297700014,3.744372051000112],[33.28652591900007,3.752536926000047],[33.19542036900006,3.757058614000072],[33.16446618600017,3.763053080000176],[33.14348555500018,3.774085999000178],[33.01724003100017,3.87718048100011],[32.99724125100013,3.885526225000163],[32.97956791200013,3.879195862000145],[32.91889978100008,3.834159851000109],[32.84035160300013,3.794291484000083],[32.756429077000085,3.76902170800011],[32.59928104700012,3.756283468000063],[32.415571330000176,3.741297303000166],[32.3718013910001,3.731065369000106],[32.187781616000194,3.61916005400019],[32.17594771300017,3.605594991000203],[32.17486250800019,3.592650045000098],[32.17920332800006,3.556864115000167],[32.17899662300013,3.541361185000156],[32.17592855800021,3.527233818000184],[32.17455244900012,3.520897318000095],[32.16798954200013,3.512241516000145],[32.155845581000136,3.511776428000033],[32.09300704000023,3.524462993000157],[32.076160523000084,3.533170471000133],[32.0608642990002,3.548957621000113],[32.05422597800012,3.559571835000028],[32.04153731300008,3.579860128000121],[32.030168497000055,3.585932109000154],[32.02223590700012,3.58642019500013],[31.943662150000165,3.591254781000117],[31.930019572000077,3.598360290000144],[31.923094930000186,3.615284323000054],[31.920046021000047,3.661302185000139],[31.91627364100023,3.680267436000093],[31.90190759300023,3.704296977000041],[31.83069746900017,3.78387868300014],[31.807029663000066,3.803722433000146],[31.801106597000082,3.80647242800012],[31.78098474100008,3.815814718000127],[31.777884155000063,3.816434835000095],[31.775713745000218,3.810698751000131],[31.69613203900022,3.721272685000131],[31.6868302820001,3.712823589000138],[31.66853682500013,3.705020447000038],[31.564770549000144,3.689801737000095],[31.547200562000086,3.68099090600019],[31.535521688000102,3.666443990000132],[31.534519828000068,3.665562968000159],[31.523739461000076,3.656082866000119],[31.505446004000106,3.659855245000145],[31.37770186300011,3.729308370000126],[31.295019572000143,3.774189352000121],[31.255745483000084,3.786669210000113],[31.21481774900022,3.792353617000145],[31.167585490000107,3.792405294000162],[31.141488892000122,3.785118917000176],[31.104408487000086,3.756175184000156],[31.077668498000065,3.735302836000144],[31.068676798000208,3.731737162000172],[31.049659871000156,3.727990621000075],[31.040358114000156,3.724218242000134],[31.009558960000074,3.699775289000015],[30.995968058000102,3.693522440000094],[30.9857878010001,3.692127177000117],[30.96599572700015,3.692618103000143],[30.955505412000065,3.689000753000159],[30.944446655000064,3.679285583000123],[30.939382365000114,3.668407695000084],[30.936281779000037,3.656858012000129],[30.931734253000144,3.645101624000134],[30.865691773000066,3.548957621000113],[30.84378096600014,3.505911153000127],[30.839543498000097,3.490201518000148],[30.82765791800014,3.511104635000137],[30.837683147000092,3.56267771400006],[30.823213746000217,3.580428569000162],[30.79210453300018,3.592701721000111],[30.779082072000083,3.602597758000101],[30.77226078300012,3.617558085000069],[30.769160197000158,3.651845398000162],[30.765129435000087,3.661715597000068],[30.74693933100022,3.674867248000126],[30.731333048000096,3.663498434000132],[30.71464156100015,3.64380971300001],[30.693350870000156,3.631949972000158],[30.665393921000174,3.632053324000182],[30.65376672400012,3.630606384000188],[30.636455119000203,3.62409515400013],[30.604932496000146,3.606680197000102],[30.592426798000105,3.60352793400014],[30.572634725000086,3.601047465000164],[30.562247762000226,3.60135752400015],[30.55346276900016,3.604509786000108],[30.543024129000198,3.612907207000191],[30.54343754100014,3.617868144000056],[30.549328654000217,3.62409515400013],[30.554909709000157,3.636394145000168],[30.562247762000226,3.675332336000068],[30.56286788000008,3.694866028000163],[30.538890015000074,3.841549581000123],[30.525247436000058,3.867542827000178],[30.51553226700011,3.870850118000178],[30.505507039000094,3.869764913000097],[30.495481812000126,3.867077739000151],[30.485869995000172,3.865579122000141],[30.46571618600009,3.866095887000185],[30.4568278400001,3.867594502000187],[30.41894901500021,3.879712626000185],[30.33792037000009,3.927875061000166],[30.270947713000194,3.949449971000135],[30.205887085000114,3.950380147000188],[30.18935062700021,3.956090394000142],[30.182115926000076,3.965521342000102],[30.18046228000011,3.975649923000148],[30.18035892700018,3.986217753000133],[30.17808516500017,3.997095642000176],[30.17157393400006,4.00818023700019],[30.147492716000126,4.036653951000133],[30.1385010180002,4.059701640000185],[30.133023315000205,4.082801005000164],[30.122688029000102,4.102463888000115],[30.099795369000187,4.115098775000149],[30.057782430000174,4.12365122500016],[30.042899617000128,4.133108012000136],[30.027913452000146,4.154450379000139],[30.004762411000083,4.199279683000114],[29.989362834000104,4.217779847000145],[29.966005087000127,4.231809998000159],[29.954171183000113,4.233825379000109],[29.942647339000104,4.233773702000178],[29.932157023000144,4.236150818000141],[29.924147176000158,4.245581767000189],[29.923217000000108,4.257751567000113],[29.92931481900004,4.268371073000182],[29.936859578000195,4.278318787000103],[29.940115194000075,4.288344014000116],[29.930348348000024,4.30865285300014],[29.90848921700021,4.329194234000113],[29.88270267800007,4.344025371000143],[29.860688517000114,4.347280986000129],[29.81485152200017,4.34676422200009],[29.787824748000133,4.368804220000172],[29.77619755100008,4.405623678000083],[29.776765991000133,4.449341939000163],[29.785654337000125,4.479365947000119],[29.786997925000176,4.48967539500012],[29.785447632000086,4.49856374100014],[29.778522990000198,4.51510019900013],[29.77769616700007,4.523859355000113],[29.783690633000077,4.533832906000114],[29.788295252000154,4.539365877000151],[29.79330244900021,4.545382589000155],[29.796713094000125,4.556027934000141],[29.78462080900007,4.563288472000124],[29.77449222800007,4.567500102000167],[29.751754598000133,4.581271871000112],[29.74514001400021,4.58390736900013],[29.72291914900009,4.578197123000166],[29.715322713000116,4.579669901000074],[29.700801636000076,4.588299866000114],[29.671862834000105,4.613983053000183],[29.66028731300017,4.622122091000108],[29.618532755000132,4.641578268000103],[29.606750529000095,4.643903707000121],[29.576674846000028,4.644446309000074],[29.546392456,4.657365418000083],[29.53502364100021,4.660698547000094],[29.528822469000122,4.659871725000158],[29.51326786300009,4.652146098000159],[29.508461955000115,4.655350037000133],[29.498126669000182,4.665607809000122],[29.49409590600013,4.668294983000152],[29.472598510000154,4.672196554000109],[29.45761234500011,4.669535217000188],[29.449240763,4.657055359000196],[29.44676029500007,4.622122091000108],[29.443659708000126,4.604707133000176],[29.444589884000063,4.5944751990001],[29.442729533000172,4.583442281000188],[29.423919311000216,4.566053162000173],[29.41730472900022,4.555485331000099],[29.41089685000011,4.532282613000106],[29.402628621000044,4.512077128000115],[29.390226278000085,4.493757833000132],[29.33885990400014,4.449548645000121],[29.328938029000113,4.434924215000137],[29.31870609600017,4.411075542000161],[29.30392663600011,4.387149353000154],[29.28739017800015,4.383583679000182],[29.267443074000223,4.387872823000151],[29.242845093000113,4.387356059000126],[29.23157963100019,4.375547994000115],[29.228685750000096,4.356711935000192],[29.221296021000196,4.340692240000138],[29.196129598000137,4.337074890000153],[29.173495320000086,4.348004456000126],[29.109829956000116,4.412367452000112],[29.098564494000126,4.420532328000135],[29.05887699300007,4.437688904000183],[29.055983114000075,4.436500346000173],[29.053192587000098,4.450788879000157],[29.04234053600007,4.455336405000182],[28.994074748000056,4.487453308000113],[28.986219930000118,4.495928243000122],[28.925551799000115,4.480812887000112],[28.903640992000074,4.478590800000106],[28.85620202600009,4.48246653200016],[28.825712931000112,4.478384094000148],[28.81527429200008,4.47828074100012],[28.789952840000097,4.488590190000124],[28.785095255000073,4.507994690000189],[28.783648315000075,4.53037058500017],[28.769178914000037,4.549775086000153],[28.75543298400009,4.553986714000189],[28.74685469600007,4.549309998000125],[28.738173055000118,4.540886739000129],[28.724530477000112,4.533987935000155],[28.70406661000007,4.533987935000155],[28.695178264000045,4.532592672000177],[28.65373376400007,4.452700907000164],[28.638644247000087,4.432082011000162],[28.623658081000112,4.42236684200013],[28.582420288000094,4.412625834000096],[28.570534708000082,4.405106914000143],[28.56671065200004,4.394125672000158],[28.56428186100007,4.382601828000134],[28.55730554200008,4.373532613000165],[28.548210490000116,4.370819601000122],[28.538495321000056,4.371827291000102],[28.52878015200011,4.373842672000151],[28.51927168800006,4.374411113000107],[28.496844116000148,4.369010926000129],[28.482426392000036,4.358985698000197],[28.443927449000086,4.308497823000095],[28.425427287000048,4.290824483000094],[28.404136596000054,4.277827860000158],[28.381502320000095,4.275295716000173],[28.357421102000075,4.282866313000127],[28.349101196000102,4.292348938000202],[28.345845581000106,4.306379090000121],[28.33685388200007,4.327488912000149],[28.303160848000118,4.352241923000179],[28.26104455500007,4.350381572000174],[28.216964559000104,4.342035827000103],[28.17758711700011,4.347229310000116],[28.158725219000075,4.360794373000189],[28.140225057000066,4.37932037400013],[28.112371460000077,4.414641215000131],[28.10834069800009,4.433994039000183],[28.101726115000105,4.442133077000108],[28.085551392000095,4.443321635000132],[28.076301310000076,4.437688904000183],[28.059764852000086,4.420067240000108],[28.04973962400007,4.419137064000154],[28.019043823000118,4.462751974000113],[28.01418623900011,4.472208761000075],[28.011240682000103,4.480141093000128],[28.00958703600014,4.488383484000166],[28.008915243000075,4.499080505000165],[28.01211918100006,4.521766460000137],[28.01708011800008,4.539052226000138],[28.01403120900008,4.550033467000119],[27.96250980600007,4.557449036000135],[27.951244344000116,4.555950419000126],[27.944526408000087,4.557294006000092],[27.934294475000083,4.568171896000152],[27.92923018400012,4.569980571000144],[27.92034183700011,4.565278016000163],[27.91610437000014,4.562151591000202],[27.917861369000036,4.560756328000139],[27.91703454600011,4.558430888000188],[27.91641442900004,4.553573303000178],[27.914037313000104,4.549309998000125],[27.907939494000033,4.548689880000154],[27.890989624000042,4.555847066000098],[27.88551192200006,4.556673890000126],[27.856934855000077,4.552462260000169],[27.849131714000062,4.553211568000094],[27.837659546000054,4.559981181000126],[27.819469441000106,4.579566549000148],[27.80923750800011,4.587989808000131],[27.80138269000008,4.590573629000133],[27.776888061000133,4.59574127200014],[27.77244388800011,4.595818786000152],[27.765209187000067,4.612071025000176],[27.760765015000057,4.635997213000167],[27.758801310000106,4.677157491000159],[27.766862834000108,4.7354485070001],[27.76314213100011,4.757100932000171],[27.759214722000138,4.766273499000164],[27.752600138000048,4.77766815200016],[27.744228556000053,4.787848409000134],[27.734823445000103,4.793196920000184],[27.72583174700014,4.79278350800017],[27.706504761000105,4.787434997000119],[27.699063355000078,4.787434997000119],[27.685937541000015,4.797899475000164],[27.679736369000125,4.814487610000171],[27.671881551000098,4.855906271000123],[27.658755737000032,4.879651592000172],[27.64097904400009,4.89094289200014],[27.55271569800004,4.900528870000144],[27.53256189000004,4.90758270200017],[27.514578492000055,4.922439677000114],[27.5092041420001,4.932439067000118],[27.505018351000075,4.953858948000146],[27.501349325000064,4.963289897000109],[27.492822713000066,4.973030904000154],[27.461558472000064,4.996879578000133],[27.45453047700005,4.999799297000123],[27.44786421700013,5.003468323000121],[27.441818074000082,5.007964172000143],[27.436340373000093,5.013157654000153],[27.443058309000037,5.057780253000175],[27.441301310000142,5.070725199000094],[27.43117272900011,5.083618469000101],[27.402130574000097,5.104495748000161],[27.385800822000075,5.143847351000161],[27.35851566500014,5.166765849000099],[27.301309855000113,5.205187277000135],[27.280897664000065,5.23056040400013],[27.26446455900009,5.260145162000156],[27.237799520000067,5.323190410000095],[27.23366540600003,5.338279927000187],[27.228239380000076,5.387605082000093],[27.220126180000133,5.413081564000123],[27.218059123000103,5.425509746000102],[27.220126180000133,5.440883484000082],[27.26074385600009,5.550256653000176],[27.258883505000085,5.559971822000122],[27.261053914000087,5.577593485000121],[27.257126505000116,5.586068420000117],[27.2475146890001,5.592605490000096],[27.240073283000072,5.591985372000124],[27.234595581000093,5.588833110000166],[27.231081584000037,5.587592875000126],[27.227309204000107,5.586714376000188],[27.222606649000113,5.584363098000154],[27.217335653000106,5.585396627000137],[27.211341186000084,5.594879252000112],[27.21066939300007,5.601623027000144],[27.215165242000097,5.616144104000099],[27.216715536000038,5.633455709000188],[27.21919600400011,5.63999277700016],[27.21836918100007,5.645315450000112],[27.201109253000084,5.656968486000081],[27.1964066970001,5.661464335000105],[27.194287964000125,5.667303772000182],[27.193822876000098,5.676321310000133],[27.19077396600008,5.691824239000154],[27.182350708000083,5.707456360000108],[27.170413452000048,5.7203496300001],[27.156254109000084,5.72748097700014],[27.136307007000084,5.73401804700012],[27.13144942200006,5.741459453000132],[27.13093265700013,5.752130635000142],[27.12380131100008,5.768744608000148],[27.114809611000055,5.775281678000127],[27.072744995000107,5.791223857000161],[27.06354659100012,5.790862122000163],[27.045356486000056,5.784919332000143],[27.036054728000124,5.785126037000111],[27.029543497000073,5.789880269000193],[27.021998738000036,5.805098979000135],[27.003498576000084,5.819284159000175],[26.991819702000043,5.847706197000193],[26.981071004000114,5.859204203000132],[26.937456095000044,5.848507182000119],[26.916475464000143,5.84964406400013],[26.90376306100009,5.866981506000144],[26.894254598000117,5.889667461000116],[26.88205896000011,5.891941224000121],[26.86531579600006,5.885972595000112],[26.842164754000066,5.884267273000133],[26.81891036000013,5.894628398000151],[26.810848836000048,5.912379253000082],[26.805061076000072,5.957182719000143],[26.794364054000084,5.970489401000165],[26.776328979000084,5.981884054000162],[26.705015503000084,6.009789327000149],[26.634322144000095,6.006482035000147],[26.602179403000065,6.01061615000016],[26.543578328000137,6.030847474000069],[26.527972045000098,6.043172303000119],[26.518050171000084,6.061155701000189],[26.50988529400007,6.082678935000146],[26.49882653800009,6.099835510000118],[26.481049846000133,6.1049514770001],[26.440638875000072,6.076994528000113],[26.424825887000083,6.07244700200016],[26.42131189000011,6.093660177000132],[26.429270061000068,6.11309051500011],[26.445599813000115,6.130221253000158],[26.465340209000086,6.1443030800001],[26.48353031400012,6.154457499000145],[26.50006677200011,6.167970887000124],[26.50947188300006,6.186393535000136],[26.50895511900012,6.2054621380002],[26.495829305000143,6.221145935000081],[26.479499552000107,6.225073344000137],[26.464926798000075,6.224401551000156],[26.455625040000143,6.2304735310002],[26.45531498200006,6.254451396000205],[26.452007690000045,6.280289612000145],[26.436194702000137,6.291710103000141],[26.39464685100006,6.300546774000139],[26.375836629000048,6.312587382000117],[26.351755411000113,6.344368388000148],[26.335218954000112,6.360594788000157],[26.31578861400004,6.371576030000142],[26.300699097000034,6.377828878000145],[26.28964034000012,6.387208150000092],[26.282819051000075,6.407852885000111],[26.28509281400011,6.42588796000011],[26.290673869000102,6.444672343000192],[26.289123575000104,6.459425964000118],[26.270210002000056,6.465652974000193],[26.27703129000011,6.477357687000094],[26.28643640100006,6.484178975000133],[26.296461629000078,6.4895274860001],[26.305039917000016,6.496917216000099],[26.324366903000083,6.537198995000139],[26.356096232000084,6.579496155000143],[26.372322631000088,6.609804382000164],[26.37986739100006,6.619777934000183],[26.37922433500006,6.631361872000113],[26.37800703900004,6.653290100000092],[26.32974125200013,6.680575256000111],[26.270623413000067,6.702486064000155],[26.236206909000117,6.720030213000128],[26.219463745000066,6.737522685000087],[26.17874271700009,6.765918884000186],[26.147633504000055,6.804702047000133],[26.13182051600006,6.811730042000136],[26.113733765000035,6.816458435000128],[26.091202840000108,6.830333557000188],[26.08097090700005,6.842348328000156],[26.077353557000066,6.853329570000142],[26.075699910000107,6.864646709000112],[26.071565796000073,6.877462463000184],[26.07115238500006,6.883560282000147],[26.07311608900011,6.889709778000124],[26.07363285300005,6.895135803000187],[26.06918868000014,6.899063212000158],[26.06340091900006,6.899063212000158],[26.056889689000087,6.89740956600012],[26.050585165000086,6.896686096000124],[26.045417521000076,6.899683330000129],[26.03580570400007,6.92226593000008],[26.032291707000095,6.974097392000147],[26.026090535000037,6.9966799930001],[25.9811320390001,7.000297343000169],[25.969453165000033,7.003552958000157],[25.966765991000102,7.009857483000161],[25.966249227000077,7.017453919000133],[25.9604614670001,7.024481914000148],[25.950436238000066,7.028564352000146],[25.930385783000133,7.03150990900015],[25.920257202000073,7.034145406000163],[25.88873457800011,7.051870423000182],[25.884083699000143,7.061068827000085],[25.881706583000096,7.079827372000182],[25.877469116000043,7.087733866000136],[25.86072595200011,7.095537008000149],[25.815767456000085,7.099774476000107],[25.800781290000117,7.10494211800011],[25.791686239000057,7.121116842000105],[25.7915828860001,7.13439768500011],[25.78620853600006,7.142665914000148],[25.76130049700009,7.143751119000142],[25.750241739000074,7.146541646000117],[25.73442875100008,7.162406312000115],[25.724506876000078,7.16669545500018],[25.7050765380001,7.166385396000109],[25.6970150140001,7.168607483000101],[25.672727091000127,7.187831116000126],[25.654020223000117,7.195375875000167],[25.592421916000088,7.211240540000176],[25.57660892700011,7.219818828000115],[25.531650431000088,7.260694885000119],[25.516767619000035,7.269944966000139],[25.50033451300007,7.272787170000115],[25.481162557000058,7.266172587000198],[25.45511763500008,7.278213196000181],[25.41615360500009,7.307772115000205],[25.360032999000055,7.335574036000168],[25.346803833000052,7.345030823000144],[25.335951782000105,7.359603577000186],[25.33057743300014,7.374124655000145],[25.3241695560001,7.402908427000155],[25.316211385000145,7.417222799000157],[25.309700155000087,7.422028707000152],[25.29295699100004,7.427196350000159],[25.285102173000098,7.431588847000157],[25.27921105900009,7.438358460000187],[25.269599243000073,7.454223124000108],[25.263294718000083,7.461044414000157],[25.249962199000063,7.469984436000089],[25.190430949000074,7.501197002000167],[25.169036906000144,7.551168112000141],[25.164592732000045,7.567342834000145],[25.165212850000017,7.579900207000152],[25.1865035400001,7.600105693000144],[25.252546020000068,7.62242991100011],[25.274973592000038,7.641963603000121],[25.279417765000062,7.659481913000178],[25.276420532000145,7.674261373000191],[25.270632772000052,7.688162334000168],[25.266808716000128,7.703096823000124],[25.270632772000052,7.746143291000124],[25.26990930200006,7.760767720000104],[25.264534953000094,7.777717590000108],[25.24965214000008,7.804330953000132],[25.23942020600009,7.835956929000132],[25.229705037000144,7.851614889000175],[25.216889283000057,7.864068909000166],[25.19156783100007,7.872388814000131],[25.18547001200011,7.877918193000127],[25.180509073000078,7.884016012000173],[25.173171020000098,7.888563538000128],[25.148573039000098,7.892594299000122],[25.134413696000138,7.89254262300011],[25.103407837000134,7.885773011000154],[25.089558553000074,7.884894511000127],[25.059172811000106,7.896108297000169],[25.029303833000085,7.918845927000149],[24.981244751000133,7.972331035000181],[24.97266646300011,7.976981914000148],[24.964811646000072,7.982614645000169],[24.95809370900014,7.989177552000158],[24.952616007000074,7.996567281000168],[24.950548950000098,8.014395651000198],[24.93008508300005,8.035453796000127],[24.9278113200001,8.070955505000171],[24.917992798000057,8.087026876000138],[24.832106568000114,8.165730082000124],[24.80017053200004,8.180276998000181],[24.742292928000097,8.186839905000156],[24.710563599000096,8.204306539000115],[24.6904097900001,8.206631978000145],[24.67087609900011,8.206838684000104],[24.61485884600009,8.21714813200019],[24.54468225100004,8.206115214000192],[24.51284956900008,8.207148743000175],[24.481326945000088,8.226656596000083],[24.471508422000053,8.228930359000103],[24.464273722000083,8.233193665000158],[24.458899373000122,8.239756572000147],[24.454868612000013,8.248670756000166],[24.43109745300006,8.271408386000147],[24.396577596000068,8.267816874000161],[24.332085409000054,8.245725199000162],[24.326814412000118,8.248567403000138],[24.310277954000128,8.261564026000158],[24.302733195000087,8.265439759000117],[24.295498495000118,8.266524963000123],[24.281029094000075,8.266524963000123],[24.263185621000048,8.268505435000108],[24.25705122900007,8.269186300000143],[24.22242801900006,8.277196147000112],[24.20661503100007,8.283268127000154],[24.179949992000104,8.297711690000185],[24.152871541000053,8.317891337000162],[24.13137414500011,8.343057760000105],[24.121555623000063,8.372306621000149],[24.125172973000133,8.404888611000118],[24.137161906000102,8.438865865000139],[24.193179159000124,8.532426046000154],[24.20320438600004,8.543458965000156],[24.243718710000053,8.570175680000204],[24.250539998000107,8.579632467000181],[24.245579061000058,8.591802267000103],[24.218397258000063,8.613041280000159],[24.211265910000122,8.62707143200008],[24.21508996600008,8.641359965000161],[24.233486776000063,8.66776662200013],[24.235760539000097,8.6820034790001],[24.21767378700008,8.69151194300018],[24.18046675600007,8.690710958000167],[24.170328031000054,8.689327330000168],[24.17478234800012,8.695646057000204],[24.176952759000102,8.709857076000162],[24.182998902000065,8.717918599000157],[24.240566446000084,8.761533508000113],[24.270848837000102,8.775718689000158],[24.380092814000108,8.84421580000017],[24.40288212100009,8.84889251800014],[24.493832642000115,8.858349304000114],[24.54287357600012,8.874653219000152],[24.552795450000133,8.880079244000129],[24.558376505000126,8.886745504000132],[24.558376505000126,8.993353984000109],[24.559306681000095,8.999865214000167],[24.56535282400003,9.014851379000135],[24.65599328600007,9.16729685500016],[24.65986901800011,9.176986186000192],[24.660954224000108,9.182283020000128],[24.680177857000047,9.373356629000142],[24.6869991450001,9.391365866000143],[24.694957316000057,9.40291554800018],[24.72394779400011,9.429218852000133],[24.78523604300008,9.49750925700009],[24.79252242000007,9.5204019170001],[24.794382772000063,9.532184143000109],[24.792677449000106,9.798369446000123],[24.79639815200011,9.818859151000181],[24.79980879700014,9.825215353000116],[24.80368453000008,9.829168600000102],[24.807301880000065,9.83004709900014],[24.816758667000045,9.830744731000124],[24.827610717000084,9.832682597000142],[24.836292358000065,9.836635844000128],[24.844818970000063,9.841674296000093],[24.87928715000004,9.869915466000165],[24.913858683000115,9.890715230000126],[24.926932821000094,9.905210470000156],[24.954373006000136,9.942236634000125],[24.9678605550001,9.955956726000139],[24.976283813000094,9.967351379000135],[24.984965454000132,9.985593160000107],[24.990701538000106,10.003059794000137],[25.016901489000134,10.056751607000137],[25.027753540000077,10.086155497000119],[25.028993775000117,10.092046610000125],[25.029303833000085,10.098247782000115],[25.028683716000046,10.103906352000138],[25.025583130000086,10.114164124000126],[25.017366577000132,10.13300018300015],[25.01581628400004,10.138038635000115],[25.013645874000133,10.149071554000116],[25.014421021000146,10.157365621000165],[25.01705651800006,10.168010966000152],[25.06702762800006,10.274929504000113],[25.07694950400014,10.286866761000155],[25.084080851000063,10.29322296200017],[25.09028202300007,10.295755107000161],[25.10599165900004,10.300354310000117],[25.120564413000096,10.306090393000176],[25.13126143400009,10.308286641000166],[25.156892944000077,10.306245422000117],[25.16836511200009,10.308131613000128],[25.192549683000067,10.317433370000158],[25.19828576600011,10.317588399000101],[25.209964640000095,10.316115621000106],[25.216630900000094,10.316968283000136],[25.225622599000133,10.32061147000013],[25.232753947000077,10.322316793000184],[25.23957523600012,10.323014425000167],[25.251512492000074,10.320999044000132],[25.25699019400014,10.319216207000139],[25.267067098000094,10.314797872000142],[25.272803182000047,10.313015036000152],[25.27869429500006,10.312007344000092],[25.284740437000096,10.311852316000142],[25.290166463000073,10.313092550000178],[25.299778279000094,10.316658223000145],[25.305359334000087,10.317123311000087],[25.316211385000145,10.315573019000155],[25.32199914600011,10.315650533000166],[25.3274251710001,10.316580709000135],[25.346028686000068,10.325262349000184],[25.351144653000034,10.326812642000107],[25.362926880000146,10.328130392000162],[25.369334757000075,10.328207906000088],[25.381272013000114,10.329448141000126],[25.391503947000103,10.3326520800001],[25.40096073400008,10.336992899000165],[25.415843547000122,10.342031352000147],[25.42721236200012,10.34412424700011],[25.439304647000085,10.345209453000107],[25.47950891100004,10.343814189000128],[25.490826049000102,10.345597025000117],[25.503383423000116,10.349162700000177],[25.50648400900013,10.349627788000104],[25.580329631000097,10.375310974000087],[25.62332442200008,10.385852966000144],[25.629060506000144,10.386705628000172],[25.66135827700012,10.387015686000069],[25.68414758300011,10.390684713000155],[25.699960571000105,10.395025533000137],[25.7057483320001,10.39595570900019],[25.74590092000011,10.394405416000083],[25.75396244300009,10.395335592000121],[25.762799113000085,10.39773854600017],[25.78377974500009,10.407892965000144],[25.828479858000037,10.419546000000196],[25.839331909000094,10.42055369100018],[25.843052612000093,10.41781483900013],[25.886512492000094,10.364303894000102],[25.89162845900009,10.355983988000133],[25.893643840000035,10.351333110000082],[25.894884074000085,10.345829569000088],[25.90093021600012,10.19105865500012],[25.902790568000114,10.185529276000125],[25.905426066000132,10.181265971000157],[25.911937296000104,10.174212138000144],[25.919688761000117,10.167855937000127],[25.95570723500009,10.146901144000125],[25.970900105000027,10.140312398000134],[25.99808190900012,10.13245758100011],[26.000872436000066,10.13106231700013],[26.0072286380001,10.12599802700015],[26.010794312000083,10.122690735000148],[26.016685424000087,10.11486175500012],[26.076423381000097,10.017710063000123],[26.088205607000106,10.002827251000085],[26.102313341000126,9.988163298000131],[26.10262333200012,9.987841085000113],[26.1794661860001,9.958979797000069],[26.36816267900008,9.739716695000098],[26.556859172000145,9.520453593000111],[26.600887491000094,9.491979879000084],[26.62574385600007,9.480662740000113],[26.683621460000097,9.476011861000146],[26.694318482000085,9.476942037000185],[27.080393107000077,9.606830750000183],[27.339240357000108,9.612799378000204],[27.38512902800008,9.604789531000135],[27.528066040000112,9.605357972000178],[27.609301392000106,9.595177714000116],[27.61508915200008,9.595797831000183],[27.63591475400011,9.601378886000191],[27.641495809000048,9.601947327000161],[27.76960168500005,9.583317973000192],[27.86835534700009,9.588511455000114],[27.884788452000066,9.591379496000087],[27.895072062000054,9.595410258000172],[27.99707585900006,9.384930027000095],[28.04510953300013,9.331406789000198],[28.443829853500116,9.327981357000198],[28.842550174000106,9.324555925000197],[28.843840924000062,9.324544836000172],[28.83148940700002,9.349247868000132],[28.82737223500007,9.384930027000095],[28.828744626000113,9.427474139000182],[28.849330486000067,9.465901079000147],[28.91383284900013,9.52903105100016],[28.989475545000086,9.587090352000118],[29.009474324000053,9.603239237000196],[29.132257527000093,9.667731425000127],[29.252353556000145,9.711165467000129],[29.483088827000213,9.761679179000152],[29.567321412000208,9.84136423800011],[29.613881877000065,9.914460551000161],[29.615432170000105,10.058146871000119],[29.645869589000224,10.081711325000114],[29.700956665,10.115016785000165],[29.96781376200013,10.243329366000125],[30.012978963000105,10.270485332000192],[30.24877852350019,10.121256714500106],[30.48457808400022,9.97202809700012],[30.749264771000153,9.735763448000112],[30.765284465000118,9.724291281000191],[30.779082072000083,9.719872946000109],[30.793034709000068,9.728011984000204],[30.80481693500022,9.738941549000174],[30.82409224500006,9.746176249000143],[30.836959676000077,9.749354350000202],[30.94990985100011,9.752446052000124],[30.950234416000086,9.752454936000149],[31.16438155100016,9.7640046180001],[31.2348165280001,9.792323304000178],[31.44981632450006,10.003279419500146],[31.6648161210002,10.214235535000128],[31.774215129000112,10.348775126000177],[31.80196537300017,10.37624115000014],[31.86418379700009,10.472126770000102],[31.929864543000146,10.636922913000163],[31.94288700400008,10.655552266000129],[32.17847985850014,10.853201700500179],[32.414072713000195,11.05085113500013],[32.430712524000086,11.082192891000146],[32.43536340300008,11.107023418000097],[32.364153280000124,11.240012716000136],[32.34875370300003,11.307579651000182],[32.345704793000124,11.411630148000155],[32.35981245900015,11.573480733000139],[32.354851522000075,11.675774231000132],[32.35299117100007,11.687375591000176],[32.34834029100014,11.70316274000008],[32.34523970500018,11.709105530000087],[32.08220666500019,11.999811300000175],[32.414434448000094,12.001271159000169],[32.746662231000045,12.002731018000162],[32.74821252400008,12.02681223600011],[32.74759240700021,12.03952463800016],[32.74557702700016,12.051125997000113],[32.73301965300007,12.085981750000187],[32.72573327600016,12.132335510000173],[32.72526818800023,12.145254619000182],[32.72619836400011,12.157941183000133],[32.73007409700003,12.181893209000151],[32.73038415500011,12.194863993000169],[32.72971236200007,12.20106516500016],[32.728523804000105,12.206852926000124],[32.72883386200013,12.211917216000101],[32.73177941900022,12.21615468400016],[33.20921797700012,12.210366923000095],[33.20301680500003,12.128098043000136],[33.144984172000164,11.934673157000175],[33.14601770000016,11.81865956600015],[33.13242679900006,11.686212871000166],[33.12901615400003,11.67549001100015],[33.1159936930002,11.646938782000106],[33.10457320100008,11.630583191000154],[33.09144738800014,11.614796041000162],[33.08772668500015,11.608853251000141],[33.08323083500008,11.599163920000123],[33.08292077700011,11.584565328000153],[33.132504313500164,11.213903198500091],[33.18208785000016,10.843241069000129],[33.17836714700016,10.824534200000144],[33.17464644400016,10.812286886000123],[33.14823978700005,10.76603647900015],[33.141418498000085,10.75081777000011],[33.14002323400021,10.739035543000114],[33.15072025600014,10.73097401900013],[33.370603475000195,10.650901387000161],[33.38130049600008,10.64578542100017],[33.389827108000105,10.639248353000198],[33.468995402000104,10.54390533500019],[33.6855454915001,10.367972921000188],[33.90209558100011,10.192040507000101],[33.91697839300011,10.17452219700013],[33.961781860000116,10.064037984000109],[33.96679447500017,10.047268982000148],[33.9683447670001,10.020810648000163],[33.96725956200012,10.000269267000178],[33.95609745300007,9.933994242000082],[33.95981815600007,9.90420277900017],[33.96725956200012,9.884514058000134],[33.973254028000014,9.861776428000155],[33.973254028000014,9.854851787000172],[33.97237552900017,9.848883158000149],[33.96911991400011,9.83834116700018]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Senegal","sov_a3":"SEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Senegal","adm0_a3":"SEN","geou_dif":0,"geounit":"Senegal","gu_a3":"SEN","su_dif":0,"subunit":"Senegal","su_a3":"SEN","brk_diff":0,"name":"Senegal","name_long":"Senegal","brk_a3":"SEN","brk_name":"Senegal","brk_group":null,"abbrev":"Sen.","postal":"SN","formal_en":"Republic of Senegal","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Senegal","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":5,"mapcolor13":5,"pop_est":13711597,"gdp_md_est":21980,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"SG","iso_a2":"SN","iso_a3":"SEN","iso_n3":"686","un_a3":"686","wb_a2":"SN","wb_a3":"SEN","woe_id":23424943,"woe_id_eh":23424943,"woe_note":"Exact WOE match as country","adm0_a3_is":"SEN","adm0_a3_us":"SEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SEN.geojson"},"geometry":{"type":"Polygon","coordinates":[[[-14.912495890999962,16.640639140000076],[-14.882006794999883,16.647667134000073],[-14.711216185999973,16.63578155600004],[-14.699692341999935,16.63712514300002],[-14.665895954999966,16.645651754000113],[-14.655974080999952,16.645910136000108],[-14.647189086999985,16.643533020000064],[-14.61907710799994,16.630665589000074],[-14.608070027999958,16.628805237000048],[-14.597011271999946,16.629166972000064],[-14.555127522999951,16.64058746400005],[-14.544456338999879,16.64084584600002],[-14.503916177999939,16.63268096900009],[-14.493089965999898,16.632474264000052],[-14.482392944999901,16.633662821000083],[-14.471954304999969,16.63640167200012],[-14.462058267999877,16.640794169000117],[-14.435832478999941,16.65598704100003],[-14.426246500999952,16.65960439100013],[-14.406635294999916,16.66079294800005],[-14.343254149999893,16.63666005500008],[-14.335528523999898,16.631544088000084],[-14.331342732999872,16.624102682000085],[-14.331756143999883,16.6131472780001],[-14.337027139999918,16.594130351000047],[-14.335321818999944,16.58648223900005],[-14.325968383999907,16.582399801000033],[-14.287650308999986,16.585707093000053],[-14.277960977999953,16.58126291900004],[-14.274576171999938,16.573511454000112],[-14.273258422999987,16.555631409000085],[-14.268064941999882,16.54787994400007],[-14.257652140999937,16.54317738900008],[-14.233674275999931,16.541575419000054],[-14.222279622999935,16.53961171500012],[-14.21416642199992,16.534960836000067],[-14.197190713999902,16.513463440000123],[-14.190085204999889,16.507107239000074],[-14.166391560999955,16.490880839000084],[-14.132440144999919,16.45264028000008],[-14.073038085999883,16.400653789000074],[-14.039835977999957,16.38210195000002],[-14.033066364999911,16.376055807000085],[-14.01559973199997,16.35585032200009],[-14.006711385999948,16.350269267000073],[-13.987048501999908,16.342879537000073],[-13.97785009799992,16.337970276000135],[-13.971855631999885,16.33120066300009],[-13.971157999999889,16.32422434500009],[-13.977462523999918,16.308824768000107],[-13.97932287599991,16.300349833000013],[-13.977281656999963,16.29383860200005],[-13.967437296999888,16.28138458300006],[-13.96304479999989,16.272392883000123],[-13.962683064999908,16.26396962500013],[-13.967799031999986,16.246037903000058],[-13.96407832899996,16.23006988600011],[-13.947050943999955,16.221129863000073],[-13.907828531999883,16.210019430000074],[-13.899586140999958,16.20531687500008],[-13.883824829999867,16.19374135400005],[-13.877236083999975,16.18686838800008],[-13.872275146999925,16.17875518900007],[-13.863826049999943,16.15183176700006],[-13.85907181899995,16.14227162700007],[-13.852767292999943,16.13348663400006],[-13.84483496199988,16.12604522700005],[-13.835765746999925,16.12056752500007],[-13.827316649999915,16.11850046900011],[-13.819203449999918,16.11927561500002],[-13.811322794999882,16.122066142000076],[-13.79494136599993,16.13121287000007],[-13.778818318999924,16.143201803000096],[-13.77199702999988,16.150436503000066],[-13.754246174999963,16.17534454400004],[-13.74670141699991,16.182372539000056],[-13.738226481999902,16.18712677000005],[-13.729415649999908,16.189503886000097],[-13.720139729999886,16.189968974000124],[-13.710579589999893,16.188883769000114],[-13.712620808999956,16.176068013000048],[-13.718305709999953,16.15928815200007],[-13.722775227999904,16.146095683000084],[-13.719571289999948,16.13560536700004],[-13.714842894999945,16.132763163000078],[-13.704481770999848,16.128835754000107],[-13.69996008299992,16.125631816000038],[-13.698849039999914,16.123926494000074],[-13.697298746999905,16.120360820000116],[-13.696006835999924,16.11891388],[-13.693578043999878,16.11751861600004],[-13.687454386999917,16.11524485300012],[-13.684689696999953,16.11379791300004],[-13.67812678999988,16.108216859],[-13.675930541999888,16.106924947000067],[-13.668954222999986,16.105736390000033],[-13.6624171549999,16.10744171100009],[-13.635028645999881,16.121601054000052],[-13.629266723999905,16.122789612000076],[-13.610482340999909,16.12289296500009],[-13.606968343999938,16.123254700000103],[-13.599397745999878,16.12547678700008],[-13.569063679999942,16.13818918800004],[-13.516405395999925,16.1490412390001],[-13.502788654999932,16.154415589000052],[-13.497259276999927,16.156069234000114],[-13.491549031999881,16.156275940000057],[-13.484934447999905,16.15498402900002],[-13.483099935999888,16.14103139200003],[-13.499868936999945,16.110645650000063],[-13.501703450999855,16.095142721000055],[-13.491549031999881,16.088424785000115],[-13.455091308999982,16.102222392000073],[-13.440027628999898,16.10186065700009],[-13.435066690999946,16.096537985000026],[-13.427031005999964,16.083050435000075],[-13.422095906999914,16.077210999000073],[-13.394578206999938,16.059279276000012],[-13.388557901999917,16.05209625300006],[-13.386051594999913,16.044396464000073],[-13.385043904999861,16.026878154000112],[-13.383674478999893,16.0191783650001],[-13.369773518999892,15.985485331000062],[-13.36333980299986,15.975098368000117],[-13.355795043999903,15.96553822900003],[-13.34701004999991,15.956753235000063],[-13.321766113999956,15.93814971900011],[-13.315926675999975,15.93044993100011],[-13.313730427999872,15.922130026000046],[-13.314350544999854,15.913603414000134],[-13.318174601999885,15.896705221000046],[-13.318174601999885,15.888488668],[-13.316030028999903,15.881770732000092],[-13.311766723999938,15.875776266000058],[-13.293654133999922,15.855312399000097],[-13.284765787999902,15.839912822000116],[-13.279959879999893,15.822859599000083],[-13.279675658999905,15.803532613000128],[-13.281897745999913,15.795109355000134],[-13.285230875999929,15.78663442000004],[-13.287452961999918,15.77815948500003],[-13.28613521299988,15.76963287400011],[-13.280967569999886,15.762811585000065],[-13.27396541399986,15.757488912000012],[-13.25866918999992,15.748807272000048],[-13.250659342999938,15.742761129000115],[-13.243941405999918,15.73578481000001],[-13.232546752999923,15.719610087000119],[-13.228257608999854,15.711290182000054],[-13.227120727999932,15.703952128000054],[-13.22887772599992,15.696614075000069],[-13.243993082999935,15.673721415000044],[-13.247662108999917,15.665608216000038],[-13.248747314999918,15.656719870000131],[-13.247300373999934,15.648296611000147],[-13.237843586999958,15.623440247000076],[-13.22280574499996,15.623853658000087],[-13.192807576999911,15.62896962500008],[-13.178234821999865,15.628194479000088],[-13.171051798999912,15.625352275000095],[-13.152551635999885,15.61240732900009],[-13.145239419999882,15.609539287000104],[-13.122217569999945,15.603493143000064],[-13.109711873999942,15.59641347300004],[-13.099014851999923,15.586879171000048],[-13.091805989999955,15.575122782000049],[-13.08945471199985,15.561040955000038],[-13.095087442999954,15.523420512000113],[-13.094958251999941,15.514713033000048],[-13.093097900999936,15.50621226000004],[-13.089583902999976,15.497039693000145],[-13.083845013999849,15.49275001900011],[-13.053229532999893,15.485102438000098],[-13.038889322999893,15.486885274000086],[-13.023773966999897,15.49595448900004],[-13.010544799999906,15.506289774000065],[-12.995842854999893,15.514222107000107],[-12.980184895999855,15.516289165000074],[-12.964320230999931,15.509157817000043],[-12.95801570699993,15.50174224900013],[-12.954940958999885,15.493060608000064],[-12.9509101969999,15.465413717000045],[-12.9476029059999,15.458618266000116],[-12.937551839999855,15.445776673000124],[-12.933055988999854,15.438283590000083],[-12.931169799999935,15.430532125000068],[-12.931014769999877,15.397045797000073],[-12.927216552999937,15.380741883000056],[-12.918974161999927,15.36536814400007],[-12.906830199999916,15.352681580000123],[-12.847273111999925,15.31327830000002],[-12.834534871999978,15.300230001000074],[-12.828049478999901,15.283874410000124],[-12.833449666999881,15.269999288000065],[-12.850037801999889,15.267389629000135],[-12.884195922999965,15.270826111000076],[-12.894376180999927,15.263358866000146],[-12.888355875999906,15.250879008000155],[-12.86548905399988,15.228683980000127],[-12.856781575999918,15.22199188200011],[-12.847893229999897,15.21894297300008],[-12.838333088999917,15.21876210600004],[-12.816964883999901,15.22307708800011],[-12.806397053999916,15.22307708800011],[-12.796320149999898,15.220286560000147],[-12.787225096999917,15.214162903000089],[-12.7819799399999,15.207289937000025],[-12.779473632999924,15.19961598700013],[-12.779266926999867,15.191399435000093],[-12.784667113999916,15.166026306000106],[-12.78399532099985,15.158145650000066],[-12.780920572999918,15.149076436000101],[-12.779757852999891,15.146389262000069],[-12.754565591999949,15.138560282000142],[-12.746639016999922,15.131135942000114],[-12.717048502999944,15.103420308000098],[-12.690305948999878,15.092387390000098],[-12.689585456999879,15.092478506000091],[-12.679273029999877,15.093782654000078],[-12.64764705399989,15.103161927000114],[-12.632273314999907,15.105435689000046],[-12.622945719999874,15.102257589000075],[-12.615065062999946,15.094609477000105],[-12.60214595599993,15.078770650000093],[-12.547058878999877,15.047170512000022],[-12.529592244999918,15.034354757000129],[-12.518972736999928,15.028282776000083],[-12.495563313999867,15.023011780000045],[-12.484892130999867,15.017275696000082],[-12.476262165999913,15.007741395000096],[-12.47150793399993,14.99800038700006],[-12.448201863999913,14.918211976000078],[-12.447633422999957,14.907437439000134],[-12.433835815999913,14.899427592000066],[-12.400091104999916,14.860386047000063],[-12.382495279999942,14.846019999000063],[-12.319579223999938,14.817184550000036],[-12.2641304119999,14.774939067000048],[-12.25650813799993,14.745793559000033],[-12.236612711999925,14.728456116000116],[-12.230489053999861,14.714555155000127],[-12.222815103999949,14.703289693000071],[-12.207648071999927,14.696597595000055],[-12.191421671999933,14.693445333000097],[-12.180311237999916,14.69282521600013],[-12.18584061699991,14.680810446000066],[-12.190284789999934,14.673653259000034],[-12.192196817999928,14.66688364700009],[-12.189819701999909,14.655954082000108],[-12.182791706999893,14.650243835000067],[-12.172611449999918,14.647918396000122],[-12.165015014999966,14.641872253000088],[-12.165945189999917,14.625180766000142],[-12.171526244999939,14.616421610000073],[-12.191008260999922,14.597998962000077],[-12.198397989999933,14.587560324000037],[-12.20046504699988,14.577354228000061],[-12.201446898999876,14.565184428000052],[-12.204185749999908,14.554254862000077],[-12.211472127999883,14.547976176000077],[-12.230385700999932,14.53668487600011],[-12.236431843999867,14.519450785000116],[-12.23418391999985,14.49857350700006],[-12.222427530999964,14.454932760000089],[-12.21986954699986,14.43459808400007],[-12.221729898999882,14.391241557000084],[-12.208836628999874,14.388761088000109],[-12.11561234599992,14.355119731000073],[-12.108687703999863,14.34201975500011],[-12.11302852399993,14.329591573000128],[-12.127807983999956,14.324294739000097],[-12.119591430999918,14.310574646000076],[-12.1099796149999,14.298146464000098],[-12.097783975999988,14.288069560000066],[-12.058354857999888,14.274091085000066],[-12.04429886899996,14.264918518000073],[-12.034480345999896,14.250268249000086],[-11.997583373999873,14.166164856000137],[-11.995412963999883,14.144021505000111],[-12.002751016999866,14.103455505000099],[-12.025230264999976,14.026741842000149],[-12.025333617999905,13.985245667000086],[-12.015308389999888,13.959304097000128],[-11.999030313999867,13.94356862400015],[-11.980375121999883,13.929641826000077],[-11.962908488999858,13.909152120000101],[-11.956810669999896,13.890341898000086],[-11.95696569799992,13.87000722200007],[-11.962908488999858,13.829467062000063],[-11.978824829999951,13.784818624000124],[-12.012311157999875,13.751177267000088],[-12.097628946999862,13.704410095000071],[-12.083883015999902,13.692963766000062],[-12.070395467999958,13.673249207000111],[-12.04982824799987,13.634362691000133],[-12.03732254999997,13.598266703000135],[-12.015153360999932,13.564444478000055],[-11.996808227999848,13.544161479000124],[-11.939033976999951,13.50294952400013],[-11.932729451999933,13.49605072100006],[-11.923841104999923,13.481142069000114],[-11.918156696999887,13.474708354000157],[-11.907718058999933,13.469644063000088],[-11.898467976999939,13.46850718200008],[-11.89040645399993,13.465148214000067],[-11.883481811999957,13.453546855000111],[-11.88565222199986,13.43577016200008],[-11.89996659299993,13.382181702000125],[-11.897589476999912,13.371174622000126],[-11.888804483999905,13.368875021000106],[-11.862346150999912,13.356085104000044],[-11.854594685999928,13.350555726000037],[-11.850770629999886,13.343140157000107],[-11.844569457999881,13.323839010000071],[-11.840021931999956,13.316888529000082],[-11.828136352999932,13.307276713000078],[-11.822555297999912,13.306708272000023],[-11.817077596999923,13.312341004000146],[-11.775116332999913,13.343346863000079],[-11.772532511999913,13.362673848000027],[-11.766589721999907,13.38316355400009],[-11.756512816999873,13.39980336500011],[-11.741216593999923,13.407813212000093],[-11.72690222199992,13.405797832000133],[-11.71977087399989,13.39789133700009],[-11.714034789999914,13.388098653000043],[-11.704009561999895,13.380373027000132],[-11.694501098999922,13.379184468000103],[-11.674967407999901,13.383215231000108],[-11.649800984999956,13.384119568000145],[-11.645253458999946,13.379752909000059],[-11.646597045999897,13.365516052000089],[-11.64396154799988,13.3555941770001],[-11.632902791999896,13.354379782000066],[-11.620345418999875,13.357532044000038],[-11.613110717999916,13.360813497000024],[-11.613007364999872,13.33905771900011],[-11.60582434099993,13.31965321900013],[-11.581174681999926,13.286141052000119],[-11.558540405999878,13.266504008000098],[-11.554251261999923,13.256866353000078],[-11.555801554999931,13.245910950000095],[-11.568565632999906,13.227901714000097],[-11.572338012999921,13.217101339000067],[-11.56934077999992,13.199195456000098],[-11.559728962999912,13.18692230200007],[-11.547843383999862,13.176199443000142],[-11.538541625999926,13.162970276000067],[-11.538076538999915,13.128011169000061],[-11.533063923999862,13.111810608000068],[-11.51539058399996,13.107754008000157],[-11.50154130099989,13.099589132000048],[-11.489707397999977,13.090778300000053],[-11.477098347999856,13.083285218000112],[-11.460820271999921,13.079176941000098],[-11.45027827899986,13.075094503000088],[-11.451415160999971,13.068066509000076],[-11.456944538999977,13.060444234000101],[-11.458959920999916,13.05468231200014],[-11.445162312999884,13.035226135000059],[-11.439529581999949,13.023004659000037],[-11.43565384999988,13.01672597300012],[-11.431674763999894,13.013470358000049],[-11.42299312399993,13.009413757000047],[-11.424543415999949,13.005202129000097],[-11.430124470999885,13.000990499000054],[-11.433431761999884,12.996959738000058],[-11.433535115999916,12.98835561200012],[-11.435963907999875,12.968847758000024],[-11.43870275899991,12.958900045000107],[-11.423096476999973,12.956006165000119],[-11.41152095499993,12.960708720000099],[-11.404234578999931,12.972103373000095],[-11.401805785999898,12.989492493000128],[-11.393434203999902,12.980810852000076],[-11.38883500199995,12.970553080000087],[-11.386561238999946,12.959106750000075],[-11.384442504999866,12.933113505000108],[-11.387801472999882,12.927119039000074],[-11.394209349999926,12.923320821000047],[-11.402890991999897,12.916396179000072],[-11.407283487999877,12.91629282600013],[-11.413588012999895,12.919703471000062],[-11.420667683999909,12.922028910000092],[-11.427230590999896,12.918618266000067],[-11.427954060999895,12.912494609000106],[-11.423096476999973,12.907068584000129],[-11.417308715999894,12.901952617000049],[-11.415138305999903,12.896655782000096],[-11.419324096999956,12.88650136400014],[-11.424905151999951,12.876166077000036],[-11.428625854999979,12.865804952000119],[-11.425473591999918,12.849552715000101],[-11.427023884999926,12.845237732000044],[-11.430021118999946,12.841051941000089],[-11.432501586999933,12.835522563000097],[-11.432088174999903,12.829347229000106],[-11.428160766999952,12.827021790000089],[-11.423458211999957,12.826401672000117],[-11.420977742999895,12.825574850000095],[-11.419685831999857,12.82467051200014],[-11.41601680599996,12.820071309000099],[-11.411675984999874,12.812888286000131],[-11.4084720459999,12.804490865000062],[-11.406353311999936,12.79428477000009],[-11.405423135999882,12.782347514000051],[-11.407593546999863,12.771469625000092],[-11.41456986499986,12.764209087000026],[-11.41456986499986,12.759713236000096],[-11.404027872999903,12.741213074000072],[-11.402167520999882,12.731730449000096],[-11.410332397999895,12.718811340000087],[-11.42418168099988,12.716382549000116],[-11.437359171999958,12.712248433000097],[-11.447952839999914,12.68594513000005],[-11.455755981999857,12.680622457000098],[-11.461905476999931,12.67312937400007],[-11.460975300999875,12.658401592000075],[-11.457151245999937,12.65597279900011],[-11.449554809999967,12.653182272000052],[-11.441751668999927,12.647756246000071],[-11.436842406999915,12.637472636000084],[-11.436635701999961,12.627085674000057],[-11.441803344999869,12.595511373000079],[-11.440924844999925,12.584866028000093],[-11.438599405999895,12.577993063000122],[-11.437359171999958,12.570758362000063],[-11.439839640999935,12.559286194000038],[-11.460613565999948,12.549829407000074],[-11.46779658999992,12.543524882000057],[-11.456686157999911,12.539752502000127],[-11.449451456999924,12.535204976000086],[-11.437875935999896,12.5153612270001],[-11.4298144119999,12.508333232000098],[-11.430382852999855,12.515722962000098],[-11.42475012199992,12.526368307000098],[-11.416998657999926,12.529313864000086],[-11.410849161999948,12.513345846000064],[-11.408678750999854,12.504922587000067],[-11.402374226999939,12.488541158000118],[-11.400513875999932,12.479549459000069],[-11.39260738199988,12.491848450000106],[-11.3904369709999,12.497532858000056],[-11.37777624499995,12.480221253000153],[-11.3797916259999,12.456863505000099],[-11.386561238999946,12.430456848000132],[-11.38842159099994,12.403895162000111],[-11.41601680599996,12.404980367000107],[-11.481645873999895,12.42823476200003],[-11.51539058399996,12.431645407000062],[-11.601535196999862,12.425237528000109],[-11.643083048999955,12.417641093000057],[-11.720029255999862,12.3894774380001],[-11.757804727999911,12.383327942000037],[-11.839608519999926,12.386686910000051],[-11.860175739999931,12.391079407000133],[-11.920637166999967,12.416039124000108],[-11.921980753999918,12.417692770000157],[-11.923944457999966,12.418777974000065],[-11.930869099999938,12.418726298000138],[-11.93520992099991,12.417020976000089],[-11.946268676999921,12.409424540000117],[-11.984302530999855,12.389012350000073],[-11.997583373999873,12.386376852000055],[-12.018874063999958,12.388443909000117],[-12.07918046099985,12.408132630000068],[-12.103985148999868,12.407357483000055],[-12.1219168699999,12.398727519000104],[-12.155041462999861,12.369013571000037],[-12.192041788999916,12.348756409000131],[-12.360920369999889,12.305606588000101],[-12.377120930999894,12.313668111000098],[-12.405517130999897,12.35645619800003],[-12.423397175999867,12.369116924000066],[-12.466753702999938,12.384464824000133],[-12.487760172999856,12.3894774380001],[-12.505071776999955,12.390252584000109],[-12.521918293999931,12.386893616000094],[-12.54145198599994,12.379452209000078],[-12.570649169999882,12.363690898000087],[-12.578129722999932,12.361528379000047],[-12.57940832599985,12.361158753000097],[-12.59367102099992,12.361572164000108],[-12.597314208999904,12.365447896000163],[-12.598063517999917,12.372424215000066],[-12.603412027999866,12.381932678000053],[-12.631549845999928,12.412680155000102],[-12.648008788999988,12.425754293000054],[-12.667516641999896,12.433660787000106],[-12.68805802499989,12.435986226000123],[-12.752653563999928,12.43242055300007],[-12.77327246099992,12.435056050000085],[-12.779163574999927,12.443272604000112],[-12.78347855699991,12.45309112600009],[-12.799420735999917,12.460635885000043],[-12.82905716899998,12.462754618000105],[-12.838617309999876,12.46637196800009],[-12.849133463999948,12.47582875600007],[-12.851252196999923,12.484355367000076],[-12.849650227999888,12.491073304000096],[-12.84921097799986,12.495000712000163],[-12.874041503999903,12.516394755000077],[-12.913134724999933,12.5363418580001],[-12.949489094999905,12.535928447000089],[-12.966232258999865,12.496085917000073],[-12.969513712999854,12.476810608000035],[-12.981037556999894,12.466992086000062],[-12.997418985999929,12.465855205000139],[-13.01524735499987,12.472676494000098],[-13.034626017999926,12.47055776000012],[-13.051989297999853,12.472263082000097],[-13.066742919999882,12.480117900000039],[-13.07826676499991,12.496240947000103],[-13.082710936999916,12.515671285000082],[-13.079093586999932,12.532156067000072],[-13.064210774999879,12.566159160000097],[-13.06041255699995,12.583367411000083],[-13.059327351999855,12.603469544000049],[-13.063642333999923,12.622279765000144],[-13.076458089999903,12.635922343000061],[-13.091702636999855,12.63819610600008],[-13.108988402999927,12.63540557900012],[-13.127307698999912,12.634837138000066],[-13.145316935999915,12.643932191000133],[-13.154696207999876,12.632821757000116],[-13.162628540999917,12.638144430000068],[-13.169217284999915,12.638764547000036],[-13.17627111899992,12.637731018000053],[-13.185211140999854,12.637782695000068],[-13.19787186699989,12.634061992000055],[-13.201902628999989,12.633390198000072],[-13.206450154999912,12.635663961000091],[-13.216010294999933,12.64574086600004],[-13.22153967299991,12.648376363000137],[-13.229084432999883,12.647807922000084],[-13.24600846399997,12.643157043000116],[-13.254690103999932,12.641813456000065],[-13.263397582999884,12.643208720000132],[-13.275722411999936,12.65106353700007],[-13.28414567099992,12.65333730000009],[-13.292930663999924,12.652717184000023],[-13.322877156999965,12.646516012000134],[-13.327708902999888,12.644914042000096],[-13.330034342999909,12.642071839000039],[-13.332773192999952,12.639643047000078],[-13.338612630999933,12.639229635000063],[-13.343444376999855,12.640986634000043],[-13.352048502999876,12.646981100000062],[-13.356647704999943,12.648893128000083],[-13.359801389999914,12.649736595000148],[-13.404758463999912,12.661760559000086],[-13.72827876799991,12.673387757000043],[-14.082753255999933,12.674834696000133],[-14.343107647999942,12.675897212000109],[-14.437305256999963,12.676281636000127],[-14.79172806799994,12.677780253000037],[-14.872159687999952,12.678108545000114],[-15.146228393999875,12.679227193000116],[-15.195114298999952,12.679433900000076],[-15.223794718999953,12.67519643200012],[-15.249736286999903,12.663620910000091],[-15.307820597999893,12.62269317600007],[-15.368643757999903,12.595356344000038],[-15.421730781999939,12.55712192300011],[-15.42460933399991,12.555048727000084],[-15.677048705999908,12.439293518000042],[-15.711516885999886,12.432213847000114],[-15.883964190999905,12.44218246400007],[-15.893883015999906,12.442755839000071],[-15.973258015999875,12.43722646100008],[-15.9924816489999,12.440688782000109],[-16.055010131999893,12.461204326000086],[-16.090511840999852,12.464304912000031],[-16.16606278499995,12.451437479000033],[-16.172832396999922,12.44854360000005],[-16.177173217999893,12.445236308000048],[-16.181875772999973,12.443375957000043],[-16.1900923259999,12.44477122000012],[-16.211693074999886,12.4531428020001],[-16.222390095999884,12.455054830000106],[-16.23288041199993,12.452884420000117],[-16.301920124999896,12.416194153000063],[-16.382018595999853,12.373819478000144],[-16.412300984999973,12.36172719300015],[-16.462685505999957,12.361313782000138],[-16.51487870299985,12.348549704000076],[-16.533327188999863,12.347826233000077],[-16.668874470999896,12.356714579000098],[-16.705616413999877,12.348032939000134],[-16.728436777140104,12.332530836973007],[-16.7350154289999,12.345160223000036],[-16.73973548099991,12.358384507000066],[-16.744130011999886,12.378851630000028],[-16.750477667999917,12.385646877000056],[-16.76549231699994,12.395982164000058],[-16.78848222599993,12.417954820000077],[-16.798736131999874,12.430894273000078],[-16.80296790299988,12.4437930360001],[-16.80296790299988,12.485419012000065],[-16.800770636999886,12.49445221600007],[-16.790923631999874,12.503241278000047],[-16.788685675999886,12.512396552000027],[-16.781361456999885,12.522935289000088],[-16.731678839999887,12.552069403000047],[-16.709868943999936,12.552801825000074],[-16.678822394999912,12.550238348000065],[-16.645375128999945,12.570746161000029],[-16.634673631999927,12.579494533000087],[-16.628977016999954,12.587632554000024],[-16.624623175999943,12.59601471600007],[-16.618031378999884,12.60545482000009],[-16.579741990999935,12.632798570000062],[-16.561350063999896,12.611802476000022],[-16.54718990799998,12.573879299000097],[-16.533314581999885,12.56533437700007],[-16.53270423099991,12.580877997000073],[-16.52245032499991,12.593085028000047],[-16.504750128999888,12.598049221000094],[-16.485096808999856,12.59373607000009],[-16.451568162999905,12.575018622000128],[-16.42145748599995,12.566880601000022],[-16.388335740999935,12.551581122000059],[-16.370961066999936,12.550238348000065],[-16.351307745999918,12.559515692000017],[-16.327259894999884,12.588690497000071],[-16.309559699999877,12.598049221000094],[-16.28628495999996,12.59707265800003],[-16.266468878999945,12.590033270000063],[-16.24669348899991,12.587958075000131],[-16.223866339999887,12.601752020000049],[-16.2122289699999,12.606350002000084],[-16.20445716099988,12.597601630000014],[-16.198597785999937,12.584906317000048],[-16.192860480999883,12.577582098000036],[-16.11497962099989,12.606105861000046],[-16.09707597599993,12.61025625200007],[-16.073109503999888,12.611721096000037],[-16.05760657499988,12.616197007000011],[-16.04466712099986,12.62547435100005],[-16.029774542999917,12.632961330000029],[-16.007883266999983,12.632147528000102],[-15.990345831999944,12.622870184000064],[-15.96385657499988,12.602240302000041],[-15.947987433999854,12.589829820000105],[-15.939605272999898,12.58063385600012],[-15.927967902999882,12.578599351],[-15.86388098899991,12.577582098000036],[-15.857736782999922,12.573187567000062],[-15.844797329999919,12.559881903000132],[-15.839995897999927,12.557074286000086],[-15.831166144999884,12.558254299000112],[-15.805531378999914,12.56452057500006],[-15.794056769999967,12.571478583000058],[-15.782948370999945,12.584662177000098],[-15.768788214999914,12.592596747000059],[-15.747873501999946,12.583726304000024],[-15.74242102799991,12.58832428600006],[-15.736073370999888,12.591376044000043],[-15.729603644999882,12.591498114000018],[-15.71593176999994,12.581773179000066],[-15.710113084999904,12.582749742000132],[-15.704986131999874,12.585191148000078],[-15.699452277999853,12.583726304000024],[-15.691639777999882,12.574896552000055],[-15.68492591099991,12.55792877800009],[-15.679554816999968,12.550238348000065],[-15.673085089999859,12.544419664000102],[-15.665923631999929,12.540187893000095],[-15.656890428999901,12.537583726000092],[-15.64476477799991,12.537258205000072],[-15.633412238999938,12.539536851000049],[-15.587717251999921,12.558010158000073],[-15.56940670499995,12.576320705000029],[-15.538685675999972,12.615423895000077],[-15.527251756999902,12.623724677000055],[-15.517079230999883,12.62885163000007],[-15.509836391999926,12.635809637000065],[-15.507069464999885,12.649562893000079],[-15.51280676999994,12.655666408000073],[-15.523752407999922,12.660345770000077],[-15.529855923999918,12.665757554000038],[-15.521311001999893,12.67377350500007],[-15.53107662699992,12.696437893000036],[-15.540191209999902,12.726874091000084],[-15.54344641799986,12.758042710000067],[-15.534901495999945,12.783026434000092],[-15.523345506999902,12.7898623720001],[-15.509022589999915,12.790350653000088],[-15.494007941999909,12.78904857000009],[-15.480336066999882,12.790472723000065],[-15.466420050999885,12.796454169000084],[-15.456939256999874,12.80365631700002],[-15.45067298099994,12.812811591000099],[-15.446156378999886,12.824611721000066],[-15.42560787699992,12.804999091000099],[-15.406809048999888,12.799709377000042],[-15.394032355999855,12.810248114000087],[-15.391590949999907,12.838202216000113],[-15.407053188999923,12.822333075000088],[-15.421783006999929,12.822821356000077],[-15.436879035999935,12.829291083000086],[-15.453033006999902,12.831447658000085],[-15.468129035999908,12.824896552000013],[-15.49278723899988,12.807114976000022],[-15.510731574999852,12.803452867000061],[-15.52086341099988,12.80341217700007],[-15.535878058999911,12.801336981000063],[-15.549468553999874,12.794338283000073],[-15.555409308999884,12.779608466000084],[-15.555409308999884,12.721584377000113],[-15.544097459999904,12.684068101000092],[-15.542347785999908,12.67377350500007],[-15.541737433999854,12.657456773000149],[-15.542469855999883,12.649400132000025],[-15.545480923999888,12.642726955000057],[-15.56969153599988,12.6222598330001],[-15.577381964999915,12.612494208000058],[-15.627756313999953,12.567613023000135],[-15.641021287999877,12.559475002000028],[-15.652902798999916,12.558905341000056],[-15.663319464999914,12.563462632],[-15.672108527999882,12.570746161000029],[-15.666411912999905,12.600653387000094],[-15.696766730999883,12.61416250200007],[-15.767689581999973,12.625392971000068],[-15.815825975999926,12.595363674000025],[-15.833485480999855,12.591253973000079],[-15.83690344999985,12.594427802000041],[-15.841297980999942,12.601467190000108],[-15.848500128999971,12.608547268000066],[-15.8604630199999,12.611721096000037],[-15.872670050999885,12.609564520000035],[-15.889556443999881,12.600165106000105],[-15.901722785999937,12.598049221000094],[-15.913319464999857,12.601223049000069],[-15.928374803999873,12.608872789000086],[-15.953277147999927,12.625392971000068],[-15.954457160999935,12.630316473000036],[-15.953195766999924,12.637396552000098],[-15.952707485999952,12.64374420800003],[-15.956450975999898,12.646429755000014],[-15.969715949999907,12.648179429],[-15.976673956999917,12.65021393400012],[-15.981190558999856,12.65265534100007],[-15.987456834999902,12.660956122000044],[-16.00108801999994,12.687445380000014],[-16.004750128999916,12.69082265800003],[-16.009348110999948,12.69269440300009],[-16.013172980999855,12.696193752000084],[-16.01695716099988,12.717515367000146],[-16.022124803999898,12.728989976],[-16.028309699999852,12.728989976],[-16.028309699999852,12.721584377000113],[-16.029774542999917,12.71747467700007],[-16.04051673099994,12.696966864000018],[-16.04515540299985,12.690497137000106],[-16.048898891999897,12.656398830000098],[-16.07681230399993,12.638983466000127],[-16.117746548999946,12.632147528000102],[-16.1283259759999,12.627671617000132],[-16.14891516799986,12.614447333000015],[-16.15501868399994,12.611721096000037],[-16.165598110999895,12.612860419000071],[-16.189808722999885,12.61912669500012],[-16.22760982999992,12.61912669500012],[-16.238840298999914,12.616522528000118],[-16.257923956999917,12.608221747000044],[-16.268625454999945,12.60545482000009],[-16.280669725999957,12.60545482000009],[-16.31297766799989,12.611721096000037],[-16.323841925999943,12.609564520000035],[-16.33775794199994,12.600165106000105],[-16.34679114499994,12.598049221000094],[-16.350209113999966,12.593329169000086],[-16.355132615999906,12.582586981000077],[-16.36196855399993,12.571234442000105],[-16.370961066999936,12.56452057500006],[-16.411976691999968,12.577582098000036],[-16.445179816999882,12.596136786000045],[-16.46068274599989,12.608872789000086],[-16.467193162999873,12.6222598330001],[-16.47118079299986,12.624579169000057],[-16.48033606699994,12.627386786000015],[-16.4895727199999,12.631822007000082],[-16.49449622299997,12.638983466000127],[-16.492827928999954,12.648911851000037],[-16.486480272999927,12.657782294000071],[-16.477284308999856,12.664129950000103],[-16.467193162999873,12.666327216000099],[-16.467193162999873,12.67377350500007],[-16.482574022999927,12.674139716000084],[-16.49229895699989,12.681708075000046],[-16.497914191999882,12.693833726000037],[-16.50133216099988,12.70791250200007],[-16.508168097999913,12.625392971000068],[-16.51569576699995,12.625392971000068],[-16.528920050999915,12.642767645000049],[-16.565663214999887,12.673895575000044],[-16.57022050699993,12.693589585000083],[-16.58193925699993,12.684393622000115],[-16.589670376999948,12.673285223000093],[-16.598784959999932,12.664007880000042],[-16.61461341099988,12.660101630000042],[-16.626576300999915,12.662543036000073],[-16.634673631999927,12.669378973000093],[-16.638661261999914,12.679999091000042],[-16.637928839999887,12.693589585000083],[-16.623768683999856,12.719712632000052],[-16.60383053299995,12.739325262000108],[-16.590728318999908,12.762030341000056],[-16.59691321499986,12.797308661000088],[-16.60138912699992,12.770209052000055],[-16.60374915299988,12.762518622000044],[-16.609120245999947,12.753729559000078],[-16.61375891799986,12.749416408000073],[-16.61851966099988,12.746527411000045],[-16.638417120999858,12.728501695000105],[-16.6468806629999,12.718207098000093],[-16.651031053999926,12.705267645000092],[-16.652251756999874,12.684027411000102],[-16.645090298999914,12.6485863300001],[-16.647206183999913,12.632228908000087],[-16.67731686099995,12.61957428600003],[-16.721058722999942,12.583726304000024],[-16.754628058999884,12.572211005000085],[-16.773101365999906,12.58295319200009],[-16.780873175999886,12.608832098000105],[-16.7825414699999,12.642726955000057],[-16.77708899599986,12.678045966000084],[-16.761219855999855,12.713202216000056],[-16.735463019999912,12.732896226000094],[-16.700550910999876,12.721584377000113],[-16.69896399599986,12.736395575000088],[-16.713246222999942,12.747300523000064],[-16.73395748599995,12.751369533000114],[-16.751535610999895,12.745428778000088],[-16.77212480399993,12.720648505000028],[-16.783558722999885,12.712591864000089],[-16.796213344999927,12.715318101000065],[-16.790272589999915,12.723456122000071],[-16.788238084999904,12.732082424000083],[-16.790272589999915,12.740545966000113],[-16.796213344999927,12.748846747000101],[-16.774484829999977,12.77855052300012],[-16.77013098899988,12.793361721000096],[-16.775054490999935,12.81093984600004],[-16.7825414699999,12.81093984600004],[-16.787220831999917,12.799872137000094],[-16.79405676999994,12.794989325000115],[-16.80028235599991,12.798814195000134],[-16.80296790299988,12.814032294000114],[-16.80052649599986,12.82599518400005],[-16.794545050999915,12.838771877000084],[-16.758859829999892,12.890773830000057],[-16.755238410999937,12.903469143000024],[-16.756255662999905,12.916245835000067],[-16.760975714999887,12.939683335000039],[-16.762074347999942,12.951157945000077],[-16.759836391999954,12.972072658000044],[-16.749989386999857,13.013617255000028],[-16.74779212099986,13.040269273000064],[-16.7493383449999,13.056626695000077],[-16.75365149599989,13.065008856000134],[-16.752125203999896,13.088039449000107],[-16.74850785399991,13.099227397000048],[-16.742151651999905,13.107392273000059],[-16.72633866399991,13.122636821000098],[-16.723186401999953,13.132248637000117],[-16.708406941999925,13.156691590000065],[-16.67352534999995,13.164313863000118],[-16.63001379399992,13.163900452000107],[-16.46521765199995,13.162427674000114],[-16.313288940999968,13.161084087000049],[-16.092062133999946,13.15912038200011],[-15.961734171999948,13.1579835000001],[-15.897441198999983,13.157399018000149],[-15.870783650999927,13.157156677000089],[-15.833318237999947,13.156846619000092],[-15.826600300999926,13.161678365000114],[-15.824739949999922,13.232914327000072],[-15.824367246999913,13.2485119480001],[-15.822672891999957,13.319420675000075],[-15.818693806999901,13.333528341000104],[-15.807118286999952,13.339781189000105],[-15.73740677899991,13.346344096000081],[-15.692499959999907,13.360348409000096],[-15.679890909999868,13.360658468000082],[-15.612453165999854,13.354224752000036],[-15.596123412999901,13.355826721000156],[-15.5660477299999,13.365671082000134],[-15.54294836499986,13.377995911000085],[-15.519538940999894,13.386600037000122],[-15.488326375999916,13.385256450000057],[-15.379237426999877,13.362518820000076],[-15.342392130999968,13.362570496000089],[-15.309835978999928,13.368435770000088],[-15.277073120999916,13.380295513000107],[-15.248341023999926,13.398976542000085],[-15.227773803999924,13.425176493000109],[-15.221727660999903,13.452823385000116],[-15.217955281999961,13.514680075000113],[-15.203950967999956,13.536900940000065],[-15.181331441999873,13.559843218000097],[-15.160491088999947,13.58098093700005],[-15.137650105999855,13.589972636000084],[-15.110158243999877,13.572480163000122],[-15.065251423999968,13.531268209000132],[-15.015590372999982,13.49605072100006],[-15.01543534399994,13.495999044000143],[-15.015228637999883,13.495844014000099],[-15.015073607999938,13.495740662000074],[-14.949702921999886,13.4630811560001],[-14.91590653499989,13.45442535400015],[-14.877614297999884,13.451376445000122],[-14.862576456999903,13.447061463000054],[-14.829141804999919,13.427011007000104],[-14.810796670999935,13.421171570000112],[-14.790332803999974,13.417347514000085],[-14.779635782999975,13.410887960000123],[-14.759481973999895,13.38337026000005],[-14.73157670099991,13.359004822000117],[-14.698142048999927,13.34518137600007],[-14.661606811999887,13.340918071000104],[-14.624554809999921,13.34518137600007],[-14.59215368699992,13.353139547000124],[-14.580733195999926,13.349160462000057],[-14.552109139999885,13.32309421700009],[-14.542854370999919,13.314666443000077],[-14.529573526999911,13.307276713000078],[-14.515104125999898,13.303168437000053],[-14.483633178999952,13.301928203000116],[-14.470326496999915,13.298259176000029],[-14.45913854999989,13.286916199000132],[-14.451490437999922,13.276865132000111],[-14.442033650999946,13.268545227000047],[-14.431439981999857,13.261439718000117],[-14.394982259999948,13.24296539300009],[-14.368833984999952,13.235704855000122],[-14.3417813719999,13.233637797000156],[-14.284911457999954,13.238547058000094],[-14.230625366999902,13.228573507000092],[-14.201686564999932,13.22955535900006],[-14.1798274329999,13.24012319000012],[-14.131794189999937,13.275573222000062],[-14.116808024999955,13.282161968000139],[-14.099496419999866,13.28195526100009],[-14.056579141999917,13.29717397100012],[-14.016271524999864,13.297639059000062],[-13.976118936999853,13.308206889000118],[-13.900567992999925,13.31456309000015],[-13.851036132999866,13.335750428000111],[-13.82256241899992,13.37820261700004],[-13.81871252499988,13.429362284000135],[-13.842690388999898,13.47664622000009],[-13.852793131999931,13.484811096000099],[-13.87547908499991,13.497911072000065],[-13.882503706999898,13.503781507000042],[-13.884599975999976,13.505533346000048],[-13.889793456999882,13.513956604000029],[-13.896175495999927,13.532921855000083],[-13.901343139999938,13.541629333000044],[-13.918086303999871,13.554987691000077],[-13.942090006999905,13.56692494800012],[-13.967488972999915,13.575580750000071],[-13.98849544299992,13.57914642300004],[-14.001905476999951,13.577027690000065],[-14.022265990999898,13.565322978000081],[-14.034022379999982,13.560207011000086],[-14.044461018999925,13.558605042000067],[-14.061850138999944,13.560051982000061],[-14.072598836999958,13.559690247000063],[-14.092881835999975,13.554729309000109],[-14.139132242999949,13.5315524290001],[-14.196828979999905,13.518788350000136],[-14.215794229999887,13.510752665000055],[-14.271217203999925,13.476956278000074],[-14.329947468999876,13.4564407350001],[-14.347284912999896,13.452358297000089],[-14.365552530999963,13.454838766000064],[-14.3895820729999,13.465871684000149],[-14.462134595999883,13.516656128000108],[-14.470274820999919,13.522354025000112],[-14.480377562999962,13.533128561000126],[-14.486862955999925,13.546538595000085],[-14.500221313999958,13.589972636000084],[-14.50972977799992,13.609092917000083],[-14.523243163999894,13.625655213000071],[-14.542595987999961,13.640822246000097],[-14.585539102999915,13.660459290000134],[-14.626673542999894,13.663508199000148],[-14.667187866999909,13.652888692000076],[-14.728579467999907,13.619324850000053],[-14.740930134999957,13.615449117000095],[-14.754934448999876,13.620384217000051],[-14.796017211999922,13.644697978000053],[-14.802941853999897,13.652320252000024],[-14.822372192999893,13.717200012000147],[-14.831312214999912,13.735622660000061],[-14.843972940999947,13.752675883000094],[-14.86031381199993,13.76559545800005],[-14.879267944999924,13.780581156000068],[-14.915803181999962,13.792440898000095],[-15.016778930999891,13.796885071000105],[-15.076310180999883,13.81895090800009],[-15.0977042239999,13.819984436000084],[-15.170619669999894,13.793784485000058],[-15.24596390799988,13.746733094000078],[-15.267254597999852,13.741797995000127],[-15.275729532999947,13.74805084200004],[-15.295108194999925,13.773191427000157],[-15.304461628999974,13.781873067000118],[-15.347766479999935,13.788642680000066],[-15.394068562999905,13.771511943000107],[-15.43633988499991,13.74117787700007],[-15.46750077299987,13.708285828000028],[-15.478611206999885,13.691258444000098],[-15.488946491999881,13.670329489000025],[-15.496801310999928,13.648341166000137],[-15.4980300899999,13.641522305000107],[-15.50047033699991,13.627980652000105],[-15.502485717999974,13.58826731400012],[-15.518195353999943,13.58309967000011],[-15.567132934999847,13.583254700000055],[-15.6291963299999,13.583513082000122],[-15.69136307799988,13.583719788000082],[-15.75342647399995,13.583978170000151],[-15.815593221999848,13.584184876000108],[-15.877708292999927,13.584443258000078],[-15.93977168799998,13.584649964000036],[-16.001938435999875,13.584908345000102],[-16.06405350799986,13.585115052000063],[-16.085382943999946,13.58516833100012],[-16.12611690299991,13.585270081000104],[-16.188231973999905,13.585528463000074],[-16.250295369999947,13.585735169000131],[-16.312462117999956,13.5859935510001],[-16.37457718999991,13.586200257000144],[-16.43664058499988,13.586458639000128],[-16.498755655999958,13.586665345000085],[-16.561399170083547,13.586914158949881],[-16.561512824999852,13.587103583000015],[-16.571359829999892,13.601792710000012],[-16.57640540299991,13.61225006700009],[-16.57575436099995,13.640326239000089],[-16.558664516999926,13.655910549000083],[-16.533518032999922,13.668605861000046],[-16.508168097999913,13.687974351000063],[-16.513498501999976,13.690863348000093],[-16.523793097999885,13.69839101800005],[-16.529286261999914,13.70099518400005],[-16.516590949999852,13.712836005000014],[-16.50723222599993,13.728094794000086],[-16.50890051999994,13.740220445000077],[-16.529286261999914,13.742621161000029],[-16.526600714999944,13.726629950000117],[-16.53148352799991,13.70726146000001],[-16.54210364499994,13.693670966000056],[-16.556548631999902,13.694769598000093],[-16.56371008999986,13.673773505000057],[-16.57925370999996,13.659572658000044],[-16.598866339999915,13.65420156500008],[-16.618031378999884,13.660060940000035],[-16.635568813999924,13.67804596600007],[-16.640004035999908,13.6964785830001],[-16.631703253999916,13.735785223000093],[-16.629750128999973,13.76048411700009],[-16.62710527299987,13.770453192000076],[-16.618031378999884,13.783596096000037],[-16.58250891799989,13.824693101000035],[-16.57640540299991,13.838812567000062],[-16.57054602799988,13.835109768000022],[-16.55492102799988,13.827948309000078],[-16.549143032999922,13.82453034100007],[-16.55138098899991,13.829087632000011],[-16.556548631999902,13.84564850500007],[-16.521839972999942,13.851792710000053],[-16.520130988999938,13.83201732000012],[-16.512928839999912,13.813299872000059],[-16.501576300999915,13.801988023000078],[-16.487049933999884,13.80463288000007],[-16.49461829299994,13.827460028000088],[-16.49632727799985,13.852728583000044],[-16.500599738999934,13.872707424000112],[-16.51569576699995,13.87978750200007],[-16.51036536399991,13.893296617000146],[-16.4886775379999,13.986395575000103],[-16.487049933999884,14.002630927000055],[-16.50890051999994,13.971380927000084],[-16.518055792999913,13.951849677000098],[-16.52594967399989,13.91046784100007],[-16.53620357999992,13.885728257000011],[-16.549427863999938,13.8692894550001],[-16.56281490799995,13.872951565000063],[-16.57022050699993,13.872951565000063],[-16.580230272999927,13.859523830000072],[-16.597889777999853,13.854315497000073],[-16.618641730999855,13.851629950000088],[-16.637928839999887,13.84564850500007],[-16.64867102799988,13.83685944200002],[-16.652251756999874,13.82855866100003],[-16.653920050999886,13.820054429],[-16.659006313999896,13.810858466000127],[-16.664458787999934,13.80597565300006],[-16.67593339799987,13.799546617000132],[-16.682525193999936,13.794094143000109],[-16.69249426999994,13.77570221600007],[-16.700062628999888,13.7690290390001],[-16.71019446499986,13.773627020000049],[-16.713368292999917,13.783351955000086],[-16.713449673999886,13.79572174700013],[-16.71532141799986,13.806341864000075],[-16.72447669199994,13.810858466000127],[-16.737212693999908,13.81964752800009],[-16.742421027999878,13.839422919000114],[-16.741078253999916,13.860419012000065],[-16.734120245999918,13.872951565000063],[-16.740223761999914,13.886623440000093],[-16.744455532999922,13.902167059000092],[-16.74779212099986,13.934393622000044],[-16.746815558999884,13.951361395000019],[-16.74339758999986,13.961086330000057],[-16.737212693999908,13.967678127000042],[-16.714222785999908,13.985581773000092],[-16.702504035999937,13.98997630400008],[-16.68968665299991,13.990545966000042],[-16.660267706999917,13.987250067000105],[-16.64631100199992,13.982977606000091],[-16.636789516999926,13.974920966000056],[-16.637928839999887,13.961655992000118],[-16.623931443999908,13.973944403000088],[-16.61290442599997,13.988714911000072],[-16.59898841099988,13.99681224200009],[-16.57640540299991,13.98895905200001],[-16.576771613999938,14.010972398000106],[-16.568918423999946,14.020819403000132],[-16.556263800999886,14.026922919000114],[-16.542347785999905,14.037339585000026],[-16.554798956999914,14.033107815000093],[-16.568348761999886,14.03034088700012],[-16.580962693999965,14.032782294000071],[-16.590728318999908,14.043605861000058],[-16.545521613999963,14.070990302000027],[-16.529286261999914,14.085191148000133],[-16.50332597599993,14.116278387000051],[-16.489125128999916,14.128241278000075],[-16.457020636999857,14.137355861000074],[-16.441477016999926,14.156561591000113],[-16.429351365999935,14.160956122000101],[-16.421009894999884,14.157131252000084],[-16.412993943999936,14.149807033000085],[-16.404693162999934,14.145412502000099],[-16.394886847999913,14.150376695000148],[-16.388824022999927,14.15485260600012],[-16.37262936099995,14.16242096600007],[-16.36473548099991,14.16779205900012],[-16.427723761999914,14.170111395000092],[-16.454741990999878,14.180161851000065],[-16.45295162699989,14.20184967700004],[-16.468739386999914,14.193833726],[-16.474598761999886,14.179388739000046],[-16.471506313999896,14.164252020000049],[-16.46035722599987,14.154120184000092],[-16.47276770699989,14.147365627000056],[-16.4830623039999,14.148138739000075],[-16.493072068999908,14.151841539000115],[-16.504750128999888,14.154120184000092],[-16.513172980999855,14.151027736000103],[-16.516753709999904,14.143459377000056],[-16.51878821499986,14.134263414000088],[-16.521839972999942,14.126166083000058],[-16.5475154289999,14.081854559000107],[-16.556548631999902,14.071519273000106],[-16.566802537999934,14.066961981000063],[-16.588449673999918,14.061957098000022],[-16.600331183999884,14.054185289000117],[-16.609120245999947,14.043198960000053],[-16.62157141799986,14.019964911000045],[-16.631703253999916,14.010077216000113],[-16.65416419199991,14.002752997000115],[-16.675404425999915,14.006903387000065],[-16.69701087099989,14.01422760600006],[-16.721058722999942,14.016302802000084],[-16.69758053299995,14.057440497000059],[-16.696848110999923,14.064683335000081],[-16.680002407999922,14.069403387000094],[-16.652251756999874,14.099514065000035],[-16.665638800999943,14.095648505000028],[-16.678578253999973,14.076117255000042],[-16.68968665299991,14.071519273000106],[-16.711781378999888,14.070868231000063],[-16.720529751999948,14.068915106000105],[-16.727894660999937,14.064683335000081],[-16.716135219999956,14.051336981000077],[-16.71711178299995,14.042385158000044],[-16.734120245999918,14.023138739000103],[-16.73704993399994,14.015448309000078],[-16.739613410999937,14.001125393000093],[-16.744699673999946,13.992743231000134],[-16.76455644399988,13.970607815000065],[-16.768869594999952,13.961655992000118],[-16.773426886999914,13.93357982000012],[-16.768869594999952,13.838812567000062],[-16.775054490999935,13.838812567000062],[-16.78099524599986,14.03074778900013],[-16.786000128999916,14.059719143000036],[-16.802561001999976,14.107855536000088],[-16.82079016799986,14.143459377000056],[-16.829701300999886,14.154120184000092],[-16.84276282499988,14.160060940000022],[-16.868804490999935,14.165757554000093],[-16.878732876999948,14.174546617000061],[-16.88390051999994,14.188950914000117],[-16.89240475199989,14.242865302000055],[-16.89891516799989,14.259955145000092],[-16.906971808999913,14.27252838700008],[-16.925892706999917,14.291245835000053],[-16.934559699999937,14.29588450700008],[-16.94115149599989,14.297267971000068],[-16.9454646479999,14.3014183610001],[-16.94701087099986,14.314520575000074],[-16.945790167999913,14.32477448100009],[-16.9407445949999,14.344427802000055],[-16.939564581999974,14.355861721000094],[-16.94444739499994,14.372381903000077],[-16.956532355999855,14.390122789000072],[-16.987945115999878,14.421047268000024],[-17.059478318999908,14.4539248720001],[-17.07046464799987,14.465399481000048],[-17.076161261999857,14.478583075000104],[-17.1114802729999,14.530218817000046],[-17.137847459999872,14.59902578300003],[-17.178212042999945,14.653143622000103],[-17.206939256999902,14.678900458000044],[-17.22411048099991,14.69041575700008],[-17.24376380099997,14.699286200000115],[-17.265451626999948,14.702826239000101],[-17.281646287999905,14.707261460000083],[-17.32404537699989,14.728908596000068],[-17.330555792999885,14.736314195000148],[-17.36359615799995,14.735907294000056],[-17.39232337099989,14.739325262000063],[-17.4173884759999,14.737697658000043],[-17.439808722999913,14.722072658000057],[-17.43138587099986,14.712469794000071],[-17.41934160099993,14.708970445000075],[-17.42682857999992,14.694403387000051],[-17.439808722999913,14.68846263200004],[-17.436390753999888,14.685288804000066],[-17.430246548999918,14.678045966000042],[-17.42682857999992,14.67487213700008],[-17.43301347599987,14.66054922100008],[-17.436390753999888,14.659572658000116],[-17.439808722999913,14.653753973000065],[-17.452951626999948,14.66205475500004],[-17.5201716789999,14.743068752000084],[-17.536040818999936,14.757391669000071],[-17.37096106699994,14.800279039000143],[-17.32213294199994,14.83901601800008],[-17.17296301999994,14.900824286000088],[-17.138661261999886,14.92772044500006],[-16.979725714999887,15.111883856000134],[-16.94790605399993,15.157863674000097],[-16.878244594999956,15.233099677000082],[-16.739165818999936,15.47239817900001],[-16.669667120999918,15.561835028000104],[-16.538929816999882,15.77435944200002],[-16.534291144999937,15.784369208000015],[-16.536000128999945,15.79466380400004],[-16.542347785999905,15.808823960000039],[-16.542345658985056,15.808847835239701],[-16.51973628799996,15.846372376000062],[-16.509917764999898,15.90151112900014],[-16.50754064899985,16.010393372000124],[-16.501597859999947,16.021865539000146],[-16.487800251999886,16.066048890000047],[-16.470436970999884,16.1063565070001],[-16.465992797999945,16.174052633000088],[-16.45875809799989,16.194154765000064],[-16.444185343999944,16.206298727000046],[-16.407288370999908,16.214825338000082],[-16.391682087999868,16.224747213000057],[-16.385377563999953,16.234927470000027],[-16.38108841999988,16.24665802000004],[-16.340160684999972,16.41589833600011],[-16.33494136499985,16.45579254200004],[-16.327396606999912,16.474551087000037],[-16.313547322999852,16.49330963200012],[-16.295098836999927,16.510621237000038],[-16.27380814599985,16.52317861000006],[-16.25101883999986,16.527622782000066],[-16.217945922999974,16.521524963000104],[-16.20673213799992,16.52074981700008],[-16.195363321999935,16.522713522000032],[-16.18518306499996,16.52731272400007],[-16.15577917499988,16.54751820900006],[-16.144307006999952,16.55268585300007],[-16.132266397999985,16.55475290900003],[-16.11965734899988,16.552375793000095],[-16.11045894399996,16.54694976800002],[-16.10306921399996,16.539560039],[-16.09097692899988,16.522196757000074],[-16.074027058999945,16.50488515300009],[-16.053769897999956,16.495428365000123],[-16.031187295999928,16.49289622000012],[-16.007312784999925,16.49615183600011],[-16.000181437999913,16.501061096000058],[-15.993101765999882,16.5046267700001],[-15.98560868399994,16.505867005000052],[-15.977288777999973,16.50395497700012],[-15.964369669999966,16.49899403900008],[-15.958065144999862,16.498425599000115],[-15.950675415999854,16.499820862000092],[-15.911039590999877,16.51687408400005],[-15.89693192599995,16.518424378000077],[-15.861998656999958,16.510259501000036],[-15.85357539899988,16.510259501000036],[-15.828925740999862,16.51454864500002],[-15.812957722999926,16.51377349900011],[-15.767740844999933,16.499459127000108],[-15.735288044999919,16.497702128000125],[-15.726813110999927,16.495273336000082],[-15.703196980999904,16.484421286000043],[-15.687539021999953,16.48054555300007],[-15.672191120999884,16.481372376000078],[-15.657411661999959,16.48617828400009],[-15.643614054999915,16.494653219000014],[-15.621496541999905,16.514238587000108],[-15.609662637999888,16.521318258000065],[-15.594418090999852,16.523643698000086],[-15.55147497599998,16.515117086000057],[-15.536695515999952,16.51651235000014],[-15.52480993699993,16.522196757000074],[-15.515198119999923,16.530930074000054],[-15.490910196999918,16.564519755000077],[-15.478507853999956,16.575165100000078],[-15.463986775999897,16.581469625000096],[-15.448845580999887,16.580177714000058],[-15.439440469999852,16.57268463200009],[-15.433704386999894,16.56250437500003],[-15.426883096999914,16.553150941000098],[-15.41453243099997,16.548034974000103],[-15.399804646999966,16.5483450320001],[-15.385748656999851,16.551755677000102],[-15.343632364999905,16.568705546000018],[-15.328026082999967,16.571961161000015],[-15.295935017999854,16.573046367000103],[-15.248599405999897,16.56581166600003],[-15.232476358999916,16.5663801070001],[-15.125092732999917,16.58270985900012],[-15.104008748999917,16.590357971000117],[-15.097497517999924,16.59449208600003],[-15.093208373999886,16.600176494000067],[-15.092846638999957,16.6076179],[-15.096153930999975,16.613974101000025],[-15.11232865399995,16.62921864900008],[-15.118271443999959,16.642602844000095],[-15.116256062999923,16.655521953000115],[-15.107574421999885,16.665392151000102],[-15.0933117269999,16.669164530000018],[-15.07889400299996,16.664978739000077],[-15.069850626999909,16.655263570000045],[-15.061995808999882,16.643791403000108],[-15.051557169999853,16.6341795860001],[-15.04437414599991,16.631905823000096],[-15.036932739999884,16.632577617000067],[-15.029853068999955,16.635471497000054],[-15.023651895999876,16.639967347000095],[-15.018742634999937,16.646116842000055],[-15.016520547999932,16.652576396000114],[-15.013368285999972,16.666580709000097],[-15.006908731999912,16.675830790000134],[-14.996625121999925,16.682445374000025],[-14.97430090399996,16.69138539700006],[-14.962932088999878,16.68580434200004],[-14.949857950999926,16.67231679300008],[-14.948934022999934,16.67055293000007],[-14.941331339999891,16.656038717000058],[-14.930944375999985,16.643377991000108],[-14.912495890999962,16.640639140000076]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Somaliland","sov_a3":"SOL","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Somaliland","adm0_a3":"SOL","geou_dif":0,"geounit":"Somaliland","gu_a3":"SOL","su_dif":0,"subunit":"Somaliland","su_a3":"SOL","brk_diff":1,"name":"Somaliland","name_long":"Somaliland","brk_a3":"B30","brk_name":"Somaliland","brk_group":null,"abbrev":"Solnd.","postal":"SL","formal_en":"Republic of Somaliland","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Somalia","name_sort":"Somaliland","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":5,"mapcolor13":2,"pop_est":3500000,"gdp_md_est":12250,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"-99","iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"woe_id_eh":-99,"woe_note":"Includes old states of 2347021, 2347020, 2347017 and portion of 2347016.","adm0_a3_is":"SOM","adm0_a3_us":"SOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"somaliland.geojson"},"geometry":{"type":"Polygon","coordinates":[[[48.939111999908164,11.249129976335054],[48.93911055500007,11.13673736600012],[48.93911055500007,11.024366964000095],[48.93911055500007,10.912022401000073],[48.93911055500007,10.799600322000117],[48.93911055500007,10.687333272000117],[48.93911055500007,10.57493703200008],[48.93911055500007,10.462566631000144],[48.93911055500007,10.350118713000086],[48.93911055500007,10.237799988000077],[48.93911055500007,10.125429586000052],[48.93911055500007,10.0130333460001],[48.93911055500007,9.900714620000088],[48.93911055500007,9.788421733000078],[48.93911055500007,9.675999655000126],[48.93911055500007,9.563603414000085],[48.93911055500007,9.56270099300012],[48.93911055500007,9.451233012000058],[48.87911421700005,9.360308329000146],[48.81932458500012,9.269383647000055],[48.759224895000095,9.17851064100006],[48.699228556000094,9.087689311000075],[48.63933557100012,8.99666127500005],[48.57918420400006,8.905839946000071],[48.51918786600004,8.814915263000074],[48.459243205000064,8.723887227000134],[48.39929854400008,8.633117574000067],[48.33914717600004,8.54208953900013],[48.279099162000136,8.451164856000034],[48.219154500000116,8.360317689000055],[48.15900313300011,8.269418844000143],[48.09905847200008,8.17851999900006],[48.03911381000012,8.087491964000023],[47.97916914900014,7.996567281000111],[47.83669722500014,7.996515605000099],[47.653917684000135,7.996515605000099],[47.523589721000064,7.996515605000099],[47.366079956000135,7.996515605000099],[47.21058557100008,7.996515605000099],[47.068113648000065,7.996515605000099],[46.97923018400013,7.996567281000111],[46.920525757000064,8.0256094370001],[46.85737715700014,8.046745097000056],[46.773557983000046,8.074908752000098],[46.689532105000126,8.102969055000115],[46.60571293100014,8.131132711000078],[46.52168705200012,8.159244690000023],[46.43771285000008,8.187356670000055],[46.353842,8.215468648000098],[46.269816122000066,8.243554790000118],[46.185893595000096,8.27164093000006],[46.10191939300006,8.299727072000081],[46.01804854400007,8.327890726000135],[45.9341260170001,8.356002706000083],[45.85020349200005,8.384114685000114],[45.76638431800018,8.412226664000059],[45.6823584390001,8.44031280500009],[45.59843591300005,8.468424784000119],[45.51446171100014,8.49653676400007],[45.514410034000036,8.49653676400007],[45.426146688000074,8.525475566000125],[45.33809004700004,8.554414368000081],[45.24987837700007,8.583275655000122],[45.1617700610002,8.612136943000067],[45.07355839000007,8.641153259000149],[44.98555342700013,8.670040385000107],[44.89729007900007,8.69892751100015],[44.80923343900014,8.727840474000104],[44.72107344500006,8.756779276000074],[44.63301680500007,8.78571807800013],[44.54475345900004,8.814605205000078],[44.45669681800007,8.843544007000048],[44.36853682500009,8.872456970000101],[44.280376831000126,8.901395772000072],[44.19221683800009,8.930282899000105],[44.104056845000116,8.959221701000073],[44.02385502100014,8.985525004000124],[43.98478763900004,9.008314311000106],[43.91492110200005,9.071488749000082],[43.78759037300005,9.186701355000082],[43.69844852700004,9.267161560000133],[43.621502319000115,9.336898906000087],[43.607239624000044,9.344624532000097],[43.59121993000008,9.343591003000114],[43.56682865400006,9.334315084000096],[43.548225139000124,9.33607208300016],[43.47122725500009,9.382012431000149],[43.41903405700003,9.413018290000082],[43.406321655000056,9.42865041100012],[43.40198083500007,9.447408956000118],[43.3994486900001,9.48094696000004],[43.393350871000045,9.498930359000028],[43.37066491700005,9.544224752000034],[43.36151818800016,9.553164774000052],[43.34136438000012,9.566393941000058],[43.33175256400011,9.575075582000109],[43.32508630400008,9.585901795000055],[43.3155778410001,9.607657572000065],[43.3059660240001,9.617553610000144],[43.29769779500003,9.621532695000042],[43.27067102100011,9.628353984000086],[43.24881188900014,9.652331848000102],[43.23527266400009,9.691786804000115],[43.20633386200012,9.851208598000127],[43.1872135820002,9.883325501000058],[43.14985152200006,9.89999115000009],[43.10427290900009,9.907923482000044],[43.06768599500003,9.922522075000101],[43.0398840730001,9.949988098000077],[43.020763794000175,9.996419373000094],[43.012598918000094,10.029285583000117],[42.99988651500013,10.061970927000104],[42.98190311700006,10.091633199000057],[42.958235311000124,10.11555938700006],[42.862323852000145,10.177157694000101],[42.83627893100015,10.208086040000097],[42.808166951000146,10.269115906000081],[42.78946008300005,10.33332387300004],[42.776644328000145,10.42461029000013],[42.765792277000116,10.451947123000153],[42.750392700000134,10.471635844000104],[42.695202271000134,10.524707540000122],[42.66853723200012,10.5662295540001],[42.64859012900006,10.611033020000079],[42.647246541000186,10.63222035800004],[42.66026900300005,10.64162546900009],[42.680216105000056,10.647671611000135],[42.699646443000056,10.658549500000092],[42.71163537600012,10.675163473000111],[42.71897342900007,10.694852194000061],[42.72858524600008,10.735495707000096],[42.73809370900011,10.7597836300001],[42.74987593600008,10.775829162000065],[42.78563602700012,10.804406230000026],[42.801242310000134,10.820787659000075],[42.80765018700009,10.836109721000126],[42.81157759600006,10.852620341000119],[42.81943241400012,10.872567444000138],[42.834831990000055,10.888406270000146],[42.876793253000066,10.905743714000067],[42.89353641800011,10.919670512000053],[42.90118452900009,10.936594544000044],[42.91131311100013,10.977367248000121],[42.923715454000046,10.99878713000004],[43.18881468300009,11.40776399400005],[43.24073326900009,11.487860419000112],[43.252696160000085,11.473089911000045],[43.26693769600013,11.462347723000036],[43.288340691000144,11.460353908000087],[43.28272545700013,11.49892812700007],[43.29712975400014,11.48224518400012],[43.32007897200003,11.446112372000087],[43.33961022200009,11.426174221000094],[43.352386915000125,11.419745184000092],[43.37598717500009,11.391587632],[43.39421634200005,11.385199286000086],[43.41382897200003,11.380926825000074],[43.443369988000086,11.35956452000002],[43.459727410000085,11.351060289000088],[43.466319207000076,11.36790599200009],[43.4782007170001,11.379950262000094],[43.48943118600005,11.380926825000074],[43.49439537900008,11.364732164000117],[43.47901451900014,11.271795966000127],[43.48812910200013,11.238918361000044],[43.50635826900009,11.208970445000062],[43.529307488000086,11.186590887000051],[43.535655144000145,11.1837425800001],[43.55193118600005,11.1798363300001],[43.55909264400009,11.176011460000097],[43.56299889400009,11.17031484600011],[43.56820722700007,11.155422268000066],[43.58318118600004,11.135158596000052],[43.59164472700007,11.107489325000058],[43.61744225400008,11.07078685100005],[43.658946160000085,10.987982489000016],[43.75562584700003,10.894232489000101],[43.82960045700008,10.802964585000026],[43.92212975400008,10.724188544000057],[44.02816816500007,10.65216705900012],[44.09750410200007,10.589260158000085],[44.14958743600005,10.559149481000048],[44.27426191500007,10.456732489000059],[44.30372155000009,10.439846096000068],[44.34755429100011,10.414511414000046],[44.389199603000066,10.397206508000066],[44.46525798500011,10.401480570000032],[44.541423242000064,10.392743398000093],[44.58614884900004,10.383584652000094],[44.627328970000065,10.390612546000085],[44.661857276000035,10.40241116200012],[44.72106328700005,10.419384066000077],[44.7506624290001,10.42786549600008],[44.79032435500011,10.423484075000118],[44.854784437000035,10.414529096000093],[44.899365643000124,10.411813712000125],[44.96200868800008,10.415799432000128],[44.994151238000086,10.442694403000104],[44.98796634200005,10.460394598000107],[45.00147545700008,10.460394598000107],[45.111338738000086,10.52558014500002],[45.12671959700003,10.531968492000132],[45.157237175000034,10.541083075000131],[45.252289259000065,10.600531317000076],[45.32056725400014,10.66209544500012],[45.33725019600007,10.670843817000105],[45.354746941000144,10.66885000200007],[45.37322024800005,10.662420966000056],[45.39242597700013,10.658392645000077],[45.40919030000003,10.659491278000118],[45.445323113000086,10.667792059000107],[45.48707116000014,10.684719143000095],[45.51661217500009,10.701971747000101],[45.542979363000086,10.72166575700004],[45.57300866000014,10.758124091000099],[45.58611087300011,10.765855210000025],[45.66228274800005,10.790594794000086],[45.67310631600009,10.79621002800009],[45.68490644600013,10.808905341000056],[45.69459069100009,10.822251695000062],[45.70639082100007,10.832831122000115],[45.72461998800014,10.837144273000106],[45.73796634200005,10.84357330900012],[45.75359134200005,10.871730861000103],[45.76929772200003,10.878119208000044],[45.78736412900014,10.877752997000115],[45.802744988000086,10.875311591000084],[45.81690514400009,10.869208075000087],[45.831309441000144,10.857611395000077],[45.84017988400012,10.844671942000076],[45.84669030000009,10.832261460000055],[45.85564212300011,10.823960679000066],[45.872325066000144,10.823472398000078],[45.868174675000034,10.841376044000043],[45.88445071700005,10.841213283000073],[45.97754967500003,10.799139716000113],[46.012543165000125,10.79474518400012],[46.047618035000085,10.785305080000112],[46.06373131600009,10.778794664000117],[46.102224155000044,10.770656643000095],[46.137217644000145,10.77631256700009],[46.20736738400012,10.79621002800009],[46.237559441000144,10.792425848000065],[46.26319420700008,10.776841539000074],[46.307139519000145,10.731024481000077],[46.33513431100005,10.709702867000104],[46.370127800000034,10.696844794000086],[46.40870201900014,10.691595770000092],[46.44776451900009,10.693101304000052],[46.482432488000086,10.701361395000049],[46.49984785200013,10.708482164000088],[46.52767988400012,10.726223049000083],[46.56072024800005,10.73167552300012],[46.58871504000007,10.743312893000038],[46.62916100400008,10.745062567000033],[46.64625084700003,10.747748114000103],[46.65967858200014,10.754339911000072],[46.694102410000085,10.781927802000098],[46.782237175000084,10.821722723000079],[46.82195071700011,10.852606512000134],[46.865977410000085,10.871893622000073],[46.871836785000134,10.878078518000052],[46.881358269000145,10.893133856000063],[46.88648522200009,10.898586330000098],[46.893565300000034,10.901556708000015],[46.90739993600005,10.903143622000044],[46.913828972000026,10.905462958000015],[47.00806725400014,10.93895091400006],[47.08277428500014,10.995266018000022],[47.13233483200008,11.035793361000044],[47.16765384200011,11.07208893400005],[47.18067467500009,11.080471096000096],[47.2267358730001,11.093817450000115],[47.238780144000145,11.101263739000089],[47.26335696700005,11.120794989000073],[47.36687259200011,11.172796942000048],[47.38624108200008,11.180121161000045],[47.40593509200005,11.184637762000094],[47.43702233200014,11.1798363300001],[47.48951256600008,11.192816473000107],[47.522715691000144,11.186957098000065],[47.67774498800014,11.107977606000134],[47.71045983200008,11.101263739000089],[47.76734459700003,11.13019440300009],[47.89283287900008,11.132554429000052],[47.948252800000034,11.125148830000072],[48.13038170700008,11.1366641300001],[48.160817905000044,11.145656643000024],[48.17351321700011,11.15713125200007],[48.195811394000145,11.18683502800009],[48.215586785000085,11.196234442000017],[48.21729576900008,11.203680731000091],[48.219899936000104,11.211127020000063],[48.22934004000007,11.214504299000083],[48.24659264400009,11.214260158000044],[48.25513756600014,11.215073960000053],[48.273610873000045,11.220404364000032],[48.29420006600009,11.222601630000014],[48.30420983200008,11.227525132000068],[48.310557488000086,11.234767971000094],[48.31332441500007,11.24201080900012],[48.31495201900009,11.249009507000011],[48.31836998800008,11.255519924000097],[48.33130944100009,11.268703518000052],[48.34278405000003,11.275458075000072],[48.37305748800014,11.282171942000033],[48.444346550000034,11.289252020000092],[48.47852623800014,11.29633209800005],[48.50684655000009,11.313544012000065],[48.52198326900009,11.319281317000048],[48.585948113000086,11.316961981000077],[48.63689212300005,11.32941315300009],[48.654795769000145,11.330633856000105],[48.723887566000144,11.315252997000071],[48.76246178500008,11.301011460000069],[48.80062910200007,11.279038804000052],[48.88884524800005,11.250555731000048],[48.90406334700003,11.247748114000089],[48.92115319100009,11.24803294500012],[48.939111999908164,11.249129976335054]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Sierra Leone","sov_a3":"SLE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sierra Leone","adm0_a3":"SLE","geou_dif":0,"geounit":"Sierra Leone","gu_a3":"SLE","su_dif":0,"subunit":"Sierra Leone","su_a3":"SLE","brk_diff":0,"name":"Sierra Leone","name_long":"Sierra Leone","brk_a3":"SLE","brk_name":"Sierra Leone","brk_group":null,"abbrev":"S.L.","postal":"SL","formal_en":"Republic of Sierra Leone","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sierra Leone","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":7,"pop_est":6440053,"gdp_md_est":4285,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"SL","iso_a2":"SL","iso_a3":"SLE","iso_n3":"694","un_a3":"694","wb_a2":"SL","wb_a3":"SLE","woe_id":23424946,"woe_id_eh":23424946,"woe_note":"Exact WOE match as country","adm0_a3_is":"SLE","adm0_a3_us":"SLE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SLE.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-12.595855272999898,7.612738348000079],[-12.586048956999889,7.607611395000148],[-12.547515428999901,7.608954169000143],[-12.529652472999913,7.603827216000127],[-12.515370245999918,7.594875393000109],[-12.503529425999886,7.582586981000148],[-12.492990688999896,7.568019924000126],[-12.504383917999888,7.561021226000136],[-12.505360480999855,7.549546617000188],[-12.499134894999884,7.520209052000084],[-12.501820441999882,7.502386786000116],[-12.508656378999888,7.49184804900014],[-12.517567511999914,7.481756903000175],[-12.526437954999949,7.465562242000132],[-12.527455206999917,7.449693101000194],[-12.518869594999927,7.416571356000161],[-12.519642706999946,7.404120184000149],[-12.532338019999912,7.392482815000135],[-12.549672003999888,7.389634507000109],[-12.56578528599988,7.39565664300011],[-12.574859178999873,7.410345770000105],[-12.55443274599989,7.410345770000105],[-12.568023240999935,7.43537018400012],[-12.585560675999885,7.459906317000132],[-12.605539516999954,7.4786644550001],[-12.626088019999912,7.486029364000103],[-12.640614386999856,7.487290757000109],[-12.731800910999937,7.511297919000142],[-12.764393683999913,7.527980861000088],[-12.849232550999972,7.540676174000139],[-12.95164954299986,7.568019924000126],[-12.95164954299986,7.575425523000192],[-12.91429602799991,7.584418036000131],[-12.910308397999927,7.598089911000074],[-12.898060675999972,7.61074453300013],[-12.883290167999888,7.616400458000128],[-12.844797329999892,7.622503973000107],[-12.735666469999956,7.622544664000187],[-12.718902147999927,7.62490469000015],[-12.681141730999883,7.634670315000093],[-12.621408657999892,7.639715887000122],[-12.600697394999884,7.638169664000173],[-12.581125454999919,7.630072333000071],[-12.595855272999898,7.612738348000079]]],[[[-11.167659871999973,9.884462383000127],[-11.160270141999945,9.872757670000139],[-11.085959431999868,9.826171366000082],[-11.04492834499993,9.787129822000168],[-11.010098428999868,9.742739766000113],[-10.986327270999908,9.697755432000179],[-10.974596719999909,9.663778178000156],[-10.96849890099986,9.654243876000164],[-10.962917846999943,9.650781556000126],[-10.946639770999923,9.6448387650002],[-10.940128539999932,9.639696961000112],[-10.93578771999995,9.631893819000183],[-10.92906978399995,9.605693868000174],[-10.921680053999921,9.595901184000112],[-10.89604854299995,9.578305359000138],[-10.886333373999918,9.56840932300014],[-10.882819376999889,9.560166931000195],[-10.877703409999894,9.532675070000137],[-10.870572062999939,9.523399150000117],[-10.8601851,9.518541565000191],[-10.852588663999967,9.512082011000146],[-10.853673868999863,9.497870993000092],[-10.85909989399994,9.472988790000116],[-10.854862426999887,9.455263773000112],[-10.843958699999915,9.440251770000131],[-10.829075886999874,9.423947855000094],[-10.813417927999922,9.413896789000162],[-10.811454223999874,9.408264058000128],[-10.822151244999901,9.400900167000131],[-10.831763061999908,9.392141012000153],[-10.819360717999928,9.38805857400014],[-10.80168737799994,9.387283427000128],[-10.79522782399988,9.388523662000168],[-10.78540930199992,9.387231750000126],[-10.77476395699992,9.38733510300014],[-10.765462199999888,9.385216370000165],[-10.753473266999919,9.367568868000177],[-10.74153601099988,9.357052714000119],[-10.728203490999874,9.348190206000197],[-10.717764851999931,9.34333262200009],[-10.675131795999931,9.306461487000162],[-10.673839884999893,9.293981628000083],[-10.677663939999917,9.282897034000172],[-10.68345170099991,9.271812439000158],[-10.688050902999862,9.25928090400015],[-10.687947549999931,9.25070261700013],[-10.683916788999937,9.233752747000125],[-10.68520869899987,9.22450266600019],[-10.693166869999857,9.212849630000134],[-10.703760538999916,9.20631256100016],[-10.714974324999957,9.201351624000111],[-10.724741170999918,9.194504496000148],[-10.742569539999863,9.163291931000174],[-10.753473266999919,9.120116272000146],[-10.746341918999889,9.083813578000088],[-10.71042679799993,9.072987366000135],[-10.669085652999911,9.074434306000128],[-10.629346476999899,9.070351867000127],[-10.605988728999959,9.063763123000129],[-10.59410314899992,9.05409963000011],[-10.593100657999855,9.04761685600009],[-10.592179110999894,9.04165751300013],[-10.591777709999889,9.039061788000126],[-10.607125609999883,8.979840597000134],[-10.61187984199995,8.945139872000198],[-10.610122843999875,8.872301941000117],[-10.60846919699992,8.862302552000187],[-10.599374145999946,8.834035543000198],[-10.5991157629999,8.829617208000116],[-10.600200967999882,8.819023540000131],[-10.599684203999857,8.815380351000142],[-10.59627355999993,8.811246237000205],[-10.589090535999958,8.806595358000152],[-10.586300007999908,8.804089051000176],[-10.545320597999876,8.750035502000088],[-10.53023107899989,8.739157613000131],[-10.524753377999986,8.729545797000128],[-10.481861937999923,8.67246917700011],[-10.489665079999952,8.651049296000096],[-10.50330765799987,8.631567281000102],[-10.52211787899995,8.61857065900017],[-10.54516556799993,8.616761983000174],[-10.565422729999852,8.61278289800019],[-10.584646361999944,8.596840719000156],[-10.600511026999868,8.575653382000112],[-10.616479043999902,8.546507874000097],[-10.631878620999885,8.532012635000143],[-10.638854939999902,8.51989451100016],[-10.641180378999906,8.506639506000155],[-10.641077026999879,8.494779765000132],[-10.64386755399994,8.486873271000178],[-10.654667928999885,8.48550384500011],[-10.669085652999911,8.399075013000129],[-10.683813435999895,8.374864604000152],[-10.70200353999985,8.35357391400008],[-10.7249995519999,8.3198550420002],[-10.735283161999888,8.287298890000159],[-10.715181029999911,8.269599711000154],[-10.707894653999858,8.303137715000162],[-10.688154255999876,8.324066671000153],[-10.659783894999888,8.333265076000146],[-10.626710977999892,8.331508077000166],[-10.61187984199995,8.325255229000163],[-10.583251097999891,8.306910095000177],[-10.572657429999907,8.30458465600016],[-10.554363972999935,8.311845194000128],[-10.519275674999903,8.334789530000164],[-10.460209513999956,8.392150370000152],[-10.447962198999932,8.40762746200015],[-10.423777628999858,8.456565043000154],[-10.414062458999922,8.470181783000143],[-10.402383584999939,8.481007996000187],[-10.389774535999917,8.489095357000094],[-10.37473669499991,8.494779765000132],[-10.344299275999958,8.499068909000187],[-10.337581339999929,8.498552145000161],[-10.310244506999908,8.490361430000135],[-10.302234659999925,8.485865580000109],[-10.293708048999918,8.48307505300015],[-10.282235879999888,8.484625346000172],[-10.282907673999885,8.432948914000134],[-10.313655150999919,8.31034657800012],[-10.33127681499991,8.27228688500017],[-10.333292195999945,8.249755962000151],[-10.326005818999874,8.221540629000103],[-10.318151001999865,8.201645203000098],[-10.320941528999896,8.183119202000157],[-10.345539509999895,8.159348043000193],[-10.364918172999865,8.148211772000167],[-10.3845552169999,8.142113953000205],[-10.405070760999875,8.139271749000144],[-10.485737670999896,8.138858338000134],[-10.505736449999915,8.135835266000115],[-10.529249226999895,8.124285584000162],[-10.543977009999907,8.106069642000122],[-10.567179728999916,8.063204041000162],[-10.5778250729999,8.053152975000145],[-10.603146524999886,8.039226176000156],[-10.612138224999939,8.031862284000155],[-10.616220662999922,8.022508850000122],[-10.617667602999916,8.010778300000124],[-10.615187133999939,7.769035950000144],[-10.638131469999905,7.765521952000185],[-10.645417845999873,7.763041483000122],[-10.6925984289999,7.737565003000099],[-10.730580606999922,7.705473939000172],[-10.864025142999935,7.543683809000129],[-10.874602823999851,7.530859273000131],[-10.885713256999878,7.522177633000169],[-10.898994099999866,7.516493225000132],[-10.937027953999916,7.507759909000157],[-10.977904011999897,7.484918925000144],[-11.126318725999852,7.368026836000182],[-11.144213025999932,7.345193486000184],[-11.20925939999995,7.262193502000129],[-11.217889363999916,7.254080302000133],[-11.300209919999872,7.217079977000168],[-11.317211466999908,7.213565979000123],[-11.352041381999868,7.159254049000153],[-11.370128132999895,7.142614238000134],[-11.373228718999911,7.138841858000205],[-11.370593220999892,7.128403218000173],[-11.356433878999951,7.105355530000125],[-11.353126586999878,7.092798157000103],[-11.355141967999913,7.084064840000138],[-11.36046464099985,7.078638815000161],[-11.367906046999877,7.075951640000127],[-11.389713500999903,7.073522848000081],[-11.392917439999877,7.066856588000149],[-11.389300089999892,7.046702779000086],[-11.391522175999881,7.03176829000013],[-11.397723347999886,7.012803040000165],[-11.407283487999877,6.996369934000199],[-11.434671996999924,6.980815328000176],[-11.43885778799995,6.963865458000085],[-11.436739053999872,6.938544007000189],[-11.444490519999874,6.933944804000149],[-11.476185675999915,6.919419664000116],[-11.492787238999881,6.932766018000137],[-11.533924933999856,6.942124742000161],[-11.553944464999915,6.952541408000158],[-11.57290605399993,6.965806382000096],[-11.588002081999946,6.978949286000144],[-11.578968878999945,6.980414130000113],[-11.574289516999924,6.982611395000106],[-11.571278449999909,6.986314195000134],[-11.567494269999884,6.992621161000087],[-11.59552975199989,6.993312893000122],[-11.607736782999892,6.991400458000072],[-11.615874803999901,6.985785223000064],[-11.622141079999947,6.985785223000064],[-11.63121497299994,7.008246161000073],[-11.6451716789999,7.022772528000103],[-11.698150193999936,7.067043361000159],[-11.839588995999918,7.148993231000091],[-12.073719855999855,7.233587958000114],[-12.314849412999934,7.329006252000127],[-12.506581183999856,7.389837958000058],[-12.476185675999886,7.415106512000108],[-12.43960527299987,7.416489976000179],[-12.40217037699992,7.40460846600014],[-12.369455532999893,7.389837958000058],[-12.371083136999914,7.398627020000119],[-12.375884568999908,7.405015367000146],[-12.383412238999881,7.409002997000115],[-12.393299933999884,7.410345770000105],[-12.401031053999901,7.412543036000102],[-12.409169074999909,7.424709377000084],[-12.417225714999859,7.430812893000081],[-12.435902472999913,7.438177802000069],[-12.446522589999859,7.439113674000153],[-12.46426347599987,7.429632880000141],[-12.472767706999889,7.433986721000138],[-12.480946417999887,7.441229559000163],[-12.48924719999988,7.445054429000081],[-12.492421027999853,7.453599351000192],[-12.483631964999887,7.47235748900006],[-12.470773891999954,7.491156317000105],[-12.451975063999896,7.507513739000117],[-12.441517706999917,7.522853908000073],[-12.428334113999881,7.533596096000096],[-12.41038977799991,7.527655341000155],[-12.39940344999988,7.532863674000154],[-12.38780676999994,7.534572658000157],[-12.36266028599988,7.534409898000192],[-12.357533331999946,7.535549221000138],[-12.345448370999861,7.539740302000069],[-12.338734503999916,7.540676174000139],[-12.3314509759999,7.53856028900013],[-12.319325324999909,7.529527085000126],[-12.314808722999942,7.527655341000155],[-12.295074022999898,7.533107815000108],[-12.278065558999856,7.543402411000115],[-12.258859829999892,7.552394924000139],[-12.232248501999948,7.553697007000138],[-12.234283006999874,7.557114976000135],[-12.236561652999853,7.564520575000132],[-12.238433397999927,7.568019924000126],[-12.220204230999855,7.573472398000148],[-12.20177161399991,7.575995184000163],[-12.188099738999881,7.583075262000136],[-12.183827277999853,7.602728583000086],[-12.19127356699994,7.602728583000086],[-12.197499152999882,7.60122304900014],[-12.204253709999932,7.600816148000135],[-12.211293097999913,7.599758205000085],[-12.218006964999857,7.595892645000077],[-12.223866339999887,7.604966539000158],[-12.225453253999916,7.608954169000143],[-12.235340949999852,7.607082424000083],[-12.246734178999901,7.606756903000146],[-12.256255662999903,7.605169989000117],[-12.260161912999905,7.599310614000089],[-12.262766079999892,7.590643622000173],[-12.26927649599989,7.586371161000073],[-12.286854620999918,7.581610419000171],[-12.29865475199989,7.575995184000163],[-12.317860480999855,7.575425523000192],[-12.327707485999952,7.573187567000118],[-12.34825598899991,7.563421942000089],[-12.370025193999878,7.55927155200014],[-12.391346808999941,7.550482489000088],[-12.403553839999915,7.54751211100016],[-12.41002356699991,7.548163153000117],[-12.430083787999877,7.552679755000071],[-12.441070115999933,7.553697007000138],[-12.463734503999888,7.561997789000116],[-12.471058722999885,7.581122137000179],[-12.47630774599986,7.602199611000117],[-12.492990688999896,7.616400458000128],[-12.492990688999896,7.622544664000187],[-12.488026495999861,7.627142645000134],[-12.485218878999916,7.633002020000092],[-12.484486456999889,7.640692450000103],[-12.485503709999932,7.650539455000128],[-12.493031378999888,7.643744208000101],[-12.500355597999912,7.639105536000073],[-12.506988084999875,7.638576565000093],[-12.512806769999912,7.64427317900008],[-12.519642706999946,7.64427317900008],[-12.519642706999946,7.630072333000071],[-12.543934699999909,7.65355052300012],[-12.531402147999927,7.687079169000157],[-12.492990688999896,7.739935614000131],[-12.476633266999897,7.731268622000143],[-12.471262173999946,7.726263739000104],[-12.464995897999898,7.733099677000112],[-12.47093665299991,7.746161200000103],[-12.47179114499991,7.759955145000105],[-12.465931769999884,7.770575262000136],[-12.451975063999896,7.774074611000132],[-12.47215735599994,7.787665106000175],[-12.490142381999874,7.77191803600013],[-12.519642706999946,7.726263739000104],[-12.569488084999904,7.695542710000111],[-12.601877407999922,7.683783270000134],[-12.616444464999859,7.695217190000093],[-12.624175584999932,7.694769598000093],[-12.68838456899988,7.706935940000079],[-12.69481360599991,7.707098700000131],[-12.701242641999924,7.708075262000108],[-12.71141516799986,7.711981512000107],[-12.751210089999859,7.739976304000124],[-12.765736456999889,7.746568101000108],[-12.778065558999856,7.755804755000071],[-12.787180141999926,7.774074611000132],[-12.790516730999855,7.792385158000101],[-12.787505662999934,7.804592190000079],[-12.777455206999889,7.813421942000133],[-12.759836391999954,7.821844794000171],[-12.77790279899989,7.818996486000132],[-12.82872473899991,7.798285223000135],[-12.875884568999906,7.828680731000105],[-12.889312303999901,7.854803778000147],[-12.898589647999927,7.865708726000122],[-12.913726365999933,7.870266018000081],[-12.924631313999924,7.874945380000099],[-12.93785559799994,7.88637929900014],[-12.959095831999946,7.911200262000108],[-12.939442511999886,7.915106512000093],[-12.905506964999857,7.934149481000175],[-12.886708136999884,7.938544012000165],[-12.87100175699993,7.93650950700014],[-12.854481574999852,7.931586005000085],[-12.821278449999852,7.91742584800015],[-12.841460740999878,7.937974351000108],[-12.866851365999878,7.955471096000153],[-12.88841712099989,7.97528717700007],[-12.905262824999909,8.024074611000088],[-12.907215949999852,8.027289130000128],[-12.911773240999906,8.030666408000144],[-12.910064256999902,8.0382754580001],[-12.903797980999855,8.051499742000132],[-12.901478644999882,8.065659898000149],[-12.895171678999928,8.07957591400013],[-12.886301235999895,8.092352606000176],[-12.875884568999906,8.103013414000117],[-12.90807044199994,8.10740794500019],[-12.921498175999941,8.119940497000101],[-12.929432745999918,8.139349677000098],[-12.944813605999855,8.164496161000088],[-12.956206834999904,8.172186591000099],[-12.969715949999879,8.177801825000103],[-12.981068488999938,8.186224677000055],[-12.98570716099988,8.202337958000129],[-12.985096808999913,8.216701565000108],[-12.982980923999918,8.22980377800016],[-12.978749152999882,8.242010809000135],[-12.972075975999928,8.2538516300001],[-12.98110917899993,8.252101955000114],[-12.986887173999916,8.248236395000106],[-12.99205481699991,8.243841864000117],[-12.9994197259999,8.24017975500007],[-13.006337042999917,8.238714911000102],[-13.010609503999916,8.23891836100016],[-13.015370245999918,8.239691473000079],[-13.023589647999927,8.24017975500007],[-13.067697719999899,8.233343817000147],[-13.090443488999938,8.224595445000162],[-13.117909308999883,8.20880768400012],[-13.142730272999925,8.189764716000127],[-13.157704230999883,8.171291408000116],[-13.163929816999937,8.171291408000116],[-13.161732550999943,8.18716054900014],[-13.163929816999937,8.229641018000109],[-13.168283657999922,8.25071849200013],[-13.168812628999916,8.263006903000175],[-13.163929816999937,8.274359442000147],[-13.17564856699991,8.283758856000176],[-13.210275844999899,8.339056708000086],[-13.212269660999935,8.339504299000083],[-13.214466925999941,8.343085028000147],[-13.219146287999877,8.343695380000113],[-13.223866339999859,8.34564850500007],[-13.225941535999878,8.35317617400011],[-13.231027798999918,8.363836981000148],[-13.256418423999918,8.39720286700013],[-13.263661261999857,8.40167877800009],[-13.26805579299986,8.411444403000132],[-13.274159308999913,8.420884507000139],[-13.286773240999905,8.424505927000112],[-13.272938605999911,8.441880601000094],[-13.268544074999937,8.449896552000125],[-13.266957160999908,8.462713934000163],[-13.269683397999868,8.472113348000093],[-13.282704230999855,8.490952867000132],[-13.286773240999905,8.500230210000083],[-13.265492316999937,8.497015692000131],[-13.259510870999918,8.493394273000163],[-13.252674933999911,8.497544664000102],[-13.250355597999942,8.495103257000082],[-13.24583899599989,8.48655833500014],[-13.228911912999905,8.4937197940001],[-13.21076412699989,8.493394273000163],[-13.192982550999913,8.48777903900016],[-13.17756100199989,8.47915273600016],[-13.164865688999924,8.464992580000143],[-13.14439856699994,8.431219794000157],[-13.1100154289999,8.413234768000123],[-13.085682745999861,8.390448309000178],[-13.06037350199989,8.372707424000097],[-13.042429165999861,8.375392971000082],[-13.033558722999913,8.37669505400008],[-13.033558722999913,8.383530992000189],[-13.045765753999888,8.38621653900016],[-13.056263800999941,8.39118073100012],[-13.063832160999908,8.399155992000175],[-13.067697719999899,8.41087474200016],[-13.05406653599988,8.41087474200016],[-13.05406653599988,8.417669989000089],[-13.08336341099988,8.424383856000134],[-13.110951300999886,8.433823960000055],[-13.12559973899991,8.449042059000135],[-13.116118943999908,8.472967841000099],[-13.104359503999916,8.481634833000086],[-13.074330206999889,8.493150132000125],[-13.06151282499985,8.500230210000083],[-13.054025844999954,8.510199286000088],[-13.047922329999892,8.521063544000157],[-13.039947068999936,8.526760158000144],[-13.02672278599988,8.520697333000143],[-13.027088995999918,8.532212632000082],[-13.024159308999884,8.54319896000014],[-13.019154425999943,8.553127346000139],[-13.013050910999937,8.561712958000058],[-13.003285285999908,8.55906810100008],[-12.937123175999915,8.554348049000152],[-12.918324347999883,8.549221096000137],[-12.907215949999852,8.548041083000115],[-12.898996548999946,8.550970770000134],[-12.878977016999897,8.564846096000124],[-12.869699673999918,8.56915924700013],[-12.888050910999878,8.57306549700013],[-12.909331834999875,8.570502020000118],[-12.928089972999912,8.572170315000136],[-12.9303279289999,8.583441473000121],[-12.931141730999911,8.582831122000158],[-12.911936001999946,8.606838283000116],[-12.875884568999906,8.685207424000083],[-12.900868292999917,8.654852606000105],[-12.916900193999908,8.627630927000098],[-12.93643144399988,8.607001044000171],[-12.972075975999928,8.596421617000118],[-12.989857550999913,8.597316799000112],[-13.00487219999985,8.600165106000146],[-13.018055792999888,8.600165106000146],[-13.043934699999909,8.584702867000132],[-13.061838344999956,8.583197333000086],[-13.078480597999913,8.589016018000137],[-13.088775193999934,8.60268789300008],[-13.06627356699994,8.606838283000116],[-13.05443274599989,8.618963934000107],[-13.0443416009999,8.63336823100016],[-13.02672278599988,8.64423248900006],[-13.02672278599988,8.651068427000084],[-13.035633917999917,8.652492580000143],[-13.041086391999954,8.654282945000134],[-13.044667120999945,8.658026434000163],[-13.047840949999909,8.66474030200011],[-13.05406653599988,8.66474030200011],[-13.063547329999947,8.633937893000137],[-13.07062740799992,8.621975002000113],[-13.0819392569999,8.61692942900008],[-13.098011847999883,8.62189362200013],[-13.112172003999916,8.633937893000137],[-13.130360480999911,8.657904364000103],[-13.140614386999943,8.652248440000108],[-13.148426886999914,8.653387762000136],[-13.154042120999918,8.660101630000085],[-13.157704230999883,8.670965887000165],[-13.16258704299986,8.653998114000103],[-13.154286261999886,8.643052476000136],[-13.139149542999888,8.636053778000147],[-13.12291419199994,8.630560614000117],[-13.136586066999882,8.623765367000189],[-13.109038865999935,8.60333893400012],[-13.107492641999897,8.58100006700009],[-13.122141079999919,8.559556382000068],[-13.143422003999886,8.541815497000158],[-13.139230923999946,8.533392645000106],[-13.139271613999938,8.524481512000165],[-13.144113735999923,8.517401434000107],[-13.154286261999886,8.51455312700007],[-13.162424282999892,8.517645575000145],[-13.168527798999888,8.525213934000107],[-13.195057745999918,8.56915924700013],[-13.202504035999906,8.584947007000082],[-13.20885169199994,8.614325262000179],[-13.216908331999889,8.632554429000066],[-13.22716223899991,8.649644273000192],[-13.236561652999939,8.6613223330001],[-13.24120032499985,8.672186591000099],[-13.242014126999948,8.688625393000095],[-13.240223761999886,8.71938711100016],[-13.235218878999945,8.719916083000143],[-13.240223761999886,8.825832424000124],[-13.212269660999935,8.857123114000089],[-13.20091712099989,8.859808661000073],[-13.196522589999885,8.856350002000068],[-13.193186001999946,8.849798895000092],[-13.18496660099987,8.843491929000137],[-13.108143683999854,8.844061591000113],[-13.092193162999934,8.846625067000117],[-13.071848110999952,8.85553620000016],[-13.043080206999917,8.858343817000103],[-12.98570716099988,8.857123114000089],[-13.026966925999943,8.869696356000176],[-13.033558722999913,8.866766669000157],[-13.041086391999954,8.861232815000136],[-13.058216925999913,8.86115143400015],[-13.07677161399991,8.864732164000129],[-13.088775193999934,8.870184637000165],[-13.099842902999882,8.865423895000076],[-13.115834113999881,8.862372137000165],[-13.130360480999911,8.864081122000172],[-13.136586066999882,8.873928127000099],[-13.13975989499994,8.88141510600016],[-13.14671790299991,8.883449611000103],[-13.153920050999943,8.883286851000136],[-13.157704230999883,8.884466864000075],[-13.15843665299991,8.892279364000146],[-13.155873175999915,8.895331122000144],[-13.152577277999882,8.897121486000131],[-13.142648891999954,8.916734117000189],[-13.122629360999893,8.92601146000014],[-13.097767706999946,8.930487372000115],[-13.075103318999908,8.931626695000148],[-13.075103318999908,8.93911367400011],[-13.092518683999856,8.94464752800013],[-13.11510169199994,8.940619208000072],[-13.157704230999883,8.925441799000083],[-13.180978969999897,8.923041083000129],[-13.206125454999977,8.928371486000103],[-13.225738084999932,8.942531643000123],[-13.232818162999905,8.966376044000114],[-13.236683722999913,8.961900132000137],[-13.238921678999873,8.961371161000073],[-13.239979620999947,8.95978424700013],[-13.240223761999886,8.952093817000119],[-13.25487219999988,8.966376044000114],[-13.260487433999884,8.965277411000073],[-13.262318488999881,8.961249091000099],[-13.264556443999936,8.957912502000156],[-13.266957160999908,8.952093817000119],[-13.288441535999908,8.969468492000189],[-13.28502356699991,9.017035223000093],[-13.301096157999893,9.035305080000157],[-13.301096157999893,9.041489976000122],[-13.277376057999902,9.058595479000132],[-13.233631957999904,9.07205719000018],[-13.207535359999923,9.076708069000148],[-13.191774047999928,9.072987366000135],[-13.153843546999923,9.049319560000114],[-13.131054239999939,9.041464742000173],[-13.115913045999918,9.043945211000148],[-13.085578979999894,9.065985209000132],[-13.04700252299989,9.084537049000176],[-13.02886409499996,9.095983379000174],[-13.01524735499987,9.112752380000146],[-13.002044026999982,9.144119975000166],[-12.993801635999944,9.158692729000123],[-12.98416398099991,9.172309469000126],[-12.97847957399989,9.175203349000114],[-12.962795775999922,9.176701966000124],[-12.959152588999928,9.177838847000132],[-12.960211954999918,9.186081238000156],[-12.973932047999938,9.202798564000204],[-12.978350382999848,9.212849630000134],[-12.973751179999908,9.241581727000138],[-12.957912352999898,9.27243255700013],[-12.93700923599991,9.287082825000198],[-12.917527221999903,9.267006531000149],[-12.89564225199996,9.278504537000174],[-12.876108560999882,9.27984812400014],[-12.856884927999943,9.278504537000174],[-12.835826781999913,9.281966858000203],[-12.819135294999882,9.295790304000164],[-12.79526078299989,9.335090231000152],[-12.777923339999887,9.34384938600013],[-12.764151570999928,9.347673442000172],[-12.763557291999886,9.355347392000155],[-12.767562214999884,9.364390767000202],[-12.76779475899994,9.372323100000159],[-12.759759073999959,9.382839254000132],[-12.754074666999912,9.387800191000167],[-12.737228149999936,9.397231141000134],[-12.732939005999867,9.396507670000133],[-12.727848876999872,9.39312286400012],[-12.722939615999849,9.392089335000136],[-12.719038045999895,9.398368022000142],[-12.716454222999886,9.404414164000087],[-12.713121093999888,9.408160706000102],[-12.706196451999887,9.413948466000178],[-12.70159724999985,9.420227152000095],[-12.667516641999896,9.52869598400015],[-12.667309936999942,9.533708598000203],[-12.669273640999874,9.53823028500014],[-12.668627685999894,9.542364400000167],[-12.660953734999907,9.546033427000168],[-12.65526932799986,9.547738749000132],[-12.652065388999887,9.549444071000096],[-12.649920816999895,9.552105408000116],[-12.647285318999906,9.556627096000142],[-12.638552001999926,9.589415792000153],[-12.633849446999932,9.59786488900015],[-12.624599364999938,9.601275533000177],[-12.614858357999879,9.600086975000153],[-12.606822671999907,9.600707093000125],[-12.602766072999884,9.609362895000174],[-12.60155167699986,9.65171173200018],[-12.598580281999942,9.654863994000138],[-12.582250528999907,9.683363546000178],[-12.573077962999918,9.692561951000172],[-12.542020426999896,9.711320496000084],[-12.538764810999908,9.711914775000139],[-12.537472900999944,9.715712992000162],[-12.537653767999899,9.72793446900009],[-12.535690063999878,9.732792053000194],[-12.530729125999926,9.732843730000125],[-12.525561482999905,9.732068584000118],[-12.522460896999887,9.73447153700016],[-12.522874308999889,9.739432475000115],[-12.526646687999914,9.750620423000155],[-12.527266804999982,9.75361765600016],[-12.513624226999866,9.827825013000135],[-12.513727579999907,9.83834116700018],[-12.51499365299986,9.845110779000123],[-12.51432185899995,9.851311951000113],[-12.508327392999945,9.860381165000177],[-12.47233475799996,9.88125844300015],[-12.426988687999936,9.897614034000185],[-12.27673946099992,9.929265849000101],[-12.253588419999915,9.928413188000164],[-12.235605020999941,9.916760152000094],[-12.2173890789999,9.900559591000103],[-12.193643757999922,9.886064351000158],[-12.174833536999927,9.879191386000088],[-12.15834875499985,9.875599874000116],[-12.141347208999916,9.87487640400012],[-12.109807050999933,9.881675836000127],[-11.921774047999861,9.922212016000174],[-11.914952758999902,9.931487936000096],[-11.910095174999896,9.99251780200018],[-11.484874922999893,9.994844706000151],[-11.272666381999898,9.996005961000122],[-11.247293253999914,9.993396301000118],[-11.21344519099992,9.983371074000104],[-11.199595906999946,9.982156677000162],[-11.188537149999945,9.972596538000161],[-11.181250772999874,9.950375672000135],[-11.167659871999973,9.884462383000127]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Somalia","sov_a3":"SOM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Somalia","adm0_a3":"SOM","geou_dif":0,"geounit":"Somalia","gu_a3":"SOM","su_dif":0,"subunit":"Somalia","su_a3":"SOM","brk_diff":0,"name":"Somalia","name_long":"Somalia","brk_a3":"SOM","brk_name":"Somalia","brk_group":null,"abbrev":"Som.","postal":"SO","formal_en":"Federal Republic of Somalia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Somalia","name_alt":null,"mapcolor7":2,"mapcolor8":8,"mapcolor9":6,"mapcolor13":7,"pop_est":9832017,"gdp_md_est":5524,"pop_year":-99,"lastcensus":1987,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"SO","iso_a2":"SO","iso_a3":"SOM","iso_n3":"706","un_a3":"706","wb_a2":"SO","wb_a3":"SOM","woe_id":-90,"woe_id_eh":23424949,"woe_note":"Includes Somaliland (2347021, 2347020, 2347017 and portion of 2347016)","adm0_a3_is":"SOM","adm0_a3_us":"SOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SOM.geojson"},"geometry":{"type":"Polygon","coordinates":[[[50.79786358500021,11.989118646000163],[50.86705530800012,11.942890981000133],[50.9700825890001,11.932322507000094],[51.029307488000114,11.885077216000141],[51.04883873800011,11.878648179000137],[51.12769616000011,11.878648179000137],[51.14722741000011,11.873602606000105],[51.181162957000055,11.855373440000122],[51.19971764400006,11.851304429000066],[51.22291100400011,11.850775458000086],[51.24708092500012,11.847560940000136],[51.26734459700006,11.839422919000114],[51.29269816200011,11.833107906000121],[51.277354363000114,11.800604559000107],[51.2663805660002,11.759286141000173],[51.24935901000006,11.728775444000092],[51.25570771500006,11.681654547000122],[51.2478009820002,11.652391025000114],[51.22954044100018,11.635896993000173],[51.21252904600007,11.607946950000127],[51.18124454700009,11.578828739000144],[51.148122592000135,11.536037502000125],[51.124766472,11.511786200000131],[51.12086022200006,11.505316473000136],[51.121918165000096,11.49412669500012],[51.12663821700019,11.478827216000155],[51.12769616000011,11.470892645000106],[51.12501061300006,11.447984117000187],[51.11841881600011,11.426255601000136],[51.08619225400017,11.357163804000123],[51.08130944100017,11.341498114000144],[51.079356316000116,11.27594635600012],[51.0725203790001,11.233791408000073],[51.085948113000114,11.18797435100008],[51.13094468600016,11.160751984000115],[51.17443966300007,11.158763644000173],[51.189504078000105,11.138306071000116],[51.16439863400015,11.116766669000157],[51.14226321700008,11.068426825000143],[51.13135826900012,11.052883205000143],[51.12378991000017,11.038763739000103],[51.11833743600013,11.016913153000159],[51.11508222700016,10.993353583000115],[51.12452233200005,10.854559637000136],[51.13819420700011,10.676743882000094],[51.16065514400012,10.598456122000101],[51.154307488000114,10.587713934000178],[51.13135826900012,10.58392975500007],[51.10743248800023,10.576564846000082],[51.101898634000094,10.558579820000134],[51.107188347000175,10.515041408000116],[51.102224155000066,10.494696356000118],[51.09229576900006,10.482163804000123],[51.07691491000011,10.475816148000177],[51.05567467500012,10.474066473000093],[51.03581790500013,10.467515367000104],[51.01832116000016,10.452093817000076],[51.01010175900014,10.43402741100006],[51.01840254000015,10.41941966400013],[51.03809655000006,10.416083075000115],[51.19044030000012,10.446112372000158],[51.20093834700012,10.444769598000079],[51.21192467500006,10.441839911000145],[51.22038821700019,10.442043361000103],[51.22388756600017,10.449855861000103],[51.219574415000096,10.461004950000117],[51.210215691000116,10.467108466000099],[51.200856967000135,10.471502997000172],[51.196543816000116,10.477443752000111],[51.19581139400005,10.500311591000113],[51.19304446700002,10.521185614000089],[51.18677819100017,10.541571356000162],[51.17611738400015,10.562811591000155],[51.191742384000094,10.548976955000157],[51.20733970800015,10.538096169000127],[51.220646888000175,10.524928378000155],[51.23796593500017,10.515024253000107],[51.246619897000045,10.509089677000162],[51.25794208900001,10.503801198000104],[51.28055649500001,10.4873300510001],[51.29253239700009,10.480075168000141],[51.3112001760002,10.476054565000183],[51.325879153000045,10.472679851000123],[51.33587133100011,10.474614266000117],[51.3458748570001,10.480493886000147],[51.35720966700009,10.483740236000173],[51.37785594100009,10.481689558000141],[51.39517347200015,10.47902281600011],[51.403077385000216,10.456707060000127],[51.41703781100014,10.447485379000156],[51.410964965000204,10.42981365700011],[51.39750890200011,10.39579316700015],[51.38502037900011,10.391506252000099],[51.38015423800018,10.387339056000187],[51.37256920700005,10.381415106000132],[51.37608015300006,10.367693175000126],[51.3674191920002,10.367725742000161],[51.34945834900023,10.375001636000164],[51.33613051300003,10.374395207000177],[51.320078972,10.378485419000114],[51.30083143900018,10.372565974000082],[51.27287252700009,10.377904658000105],[51.265391472000175,10.396877346000151],[51.262950066000116,10.408596096000137],[51.25660241000011,10.420314846000123],[51.240977410000106,10.425604559000107],[51.09009880800008,10.407313042000112],[51.01712538900008,10.381916048000106],[50.92738876300015,10.327844449000125],[50.909879876000076,10.295634720000152],[50.90170332100015,10.234442450000143],[50.91281386200009,10.176853487000116],[50.88379967500006,10.101263739000075],[50.88868248800017,10.055650132000123],[50.90040123800022,10.024074611000131],[50.90170332100015,10.0116641300001],[50.8997501960001,10.000718492000132],[50.89079837300008,9.986029364000132],[50.87769616000011,9.916652736000088],[50.88119550900009,9.905462958000086],[50.86963951900006,9.884466864000132],[50.86312910200016,9.866034247000101],[50.85401451900005,9.81610748900006],[50.84058678500011,9.77977122600008],[50.83326256600017,9.768784898000106],[50.838633660000106,9.74091217700007],[50.83692467500006,9.730780341000113],[50.831716342000014,9.712062893000137],[50.8244735040001,9.651068427000055],[50.80616295700017,9.624457098000107],[50.80551191500009,9.593939520000077],[50.81299889400006,9.541164455000086],[50.836761915000096,9.477036851000122],[50.84034264400006,9.456122137000165],[50.837412957000225,9.437201239000144],[50.83033287900017,9.419623114000117],[50.76832116000011,9.319281317000131],[50.74830162900017,9.303534247000172],[50.70630944100017,9.285711981000105],[50.68946373800005,9.274847723000121],[50.67676842500012,9.259182033000144],[50.64698326900012,9.211371161000116],[50.64112389400006,9.196356512000179],[50.64918053500017,9.13251373900006],[50.64844811300017,9.110419012000165],[50.633636915000096,9.073187567000089],[50.60450280000012,9.037909247000144],[50.49488366000011,8.951971747000144],[50.46412194100011,8.920558986000117],[50.43970787900016,8.888169664000102],[50.42204837300008,8.857123114000089],[50.407969597,8.816351630000128],[50.38982181100019,8.733547268000095],[50.37427819100011,8.698879299000112],[50.32650800900015,8.641099351000094],[50.31959069100017,8.620347398000177],[50.32260175900015,8.559759833000115],[50.31959069100017,8.541815497000158],[50.30347741000011,8.504584052000084],[50.290212436000076,8.486761786000102],[50.27491295700011,8.47915273600016],[50.25619550900015,8.472560940000093],[50.24610436300006,8.456447658000116],[50.239105665000096,8.436346747000158],[50.23015384200008,8.417669989000089],[50.166026238000114,8.33336009300011],[50.15642337300014,8.320624091000141],[50.141368035000106,8.287990627000099],[50.11304772200006,8.19953034100017],[50.091075066000116,8.161037502000084],[50.05827884200002,8.130316473000093],[49.92937259200007,8.051743882000082],[49.84205162900017,7.962713934000177],[49.824229363000114,7.93390534100014],[49.812510613000114,7.897528387000165],[49.80323326900006,7.826890367000118],[49.80860436300011,7.815008856000162],[49.82341556100019,7.805324611000103],[49.82764733200011,7.78290436400009],[49.825043165000096,7.757757880000113],[49.81934655000012,7.739935614000131],[49.79078209700006,7.699530341000083],[49.76091556100007,7.667303778000147],[49.75220787900017,7.650295315000079],[49.74830162900017,7.606634833000085],[49.74415123800023,7.589056708000143],[49.640798373000074,7.409125067000089],[49.58659915500019,7.314764716000126],[49.52051842500006,7.239650783000116],[49.3670353520001,7.025702216000127],[49.2932235040001,6.88092682500013],[49.247325066000116,6.810614325000103],[49.19792728000007,6.673570054000122],[49.07471764400023,6.415269273000192],[49.07203209700017,6.393296617000175],[49.0740666020001,6.370794989000089],[49.083506707000225,6.329046942000147],[49.08562259200002,6.307359117000161],[49.07129967500006,6.219916083000101],[49.03614342500006,6.144232489000117],[48.95149109298748,5.998720092007446],[48.85010826900023,5.824448960000126],[48.69581139400023,5.587347723000092],[48.64673912900011,5.480047919000128],[48.62012780000006,5.443996486000159],[48.54810631600011,5.375067450000117],[48.448008660000106,5.208726304000122],[48.32886803500016,5.079657294000086],[48.202403191000116,4.908921617000188],[48.05567467500006,4.612941799000097],[47.94849694100017,4.457098700000159],[47.84058678500016,4.341376044000143],[47.57797285200016,4.059881903000175],[47.48926842500006,3.936346747000172],[47.33562259200002,3.778753973000136],[47.20671634200008,3.644598700000088],[47.03980553500017,3.469265041000156],[47.01295006600011,3.441066799000012],[46.83423912900016,3.232489325000074],[46.70004316500009,3.113267320000148],[46.625743035000106,3.023911851000136],[46.487803582000225,2.908840236000074],[46.41431725400011,2.833441473000107],[46.35157311300023,2.788641669000171],[46.349619988000114,2.780178127000141],[46.34489993600019,2.770086981000162],[46.3392033210001,2.761704820000119],[46.33448326900012,2.758246161000031],[46.317637566000116,2.751898505000085],[46.30762780000012,2.736029364000061],[46.29981530000012,2.715765692000147],[46.28939863400015,2.696234442000076],[46.27540123800006,2.685858466000155],[46.23650149800019,2.667629299000083],[46.14234459700017,2.568915106000134],[46.13086998800023,2.554022528000175],[46.11451256600011,2.523260809000092],[46.104991082000225,2.510565497000129],[46.06299889400023,2.484035549000083],[46.04761803500011,2.455064195000176],[46.02702884200008,2.438137111000103],[45.82634524800019,2.308823960000126],[45.71192467500006,2.244330145000148],[45.60564212300008,2.183050848000121],[45.26620527400021,1.987290757000124],[45.232188347,1.96767812700007],[45.210703972000175,1.963120835000041],[45.19971764400012,1.959621486000131],[45.00147545700011,1.866359768000123],[44.831553582000225,1.749701239000032],[44.823985222000175,1.740301825000088],[44.81218509200019,1.735581773000092],[44.67628014400023,1.63760000200007],[44.55005944100017,1.559068101000136],[44.33277428500017,1.389960028000161],[44.221364780000016,1.275620835000126],[44.198415561000076,1.265692450000131],[44.15788821700002,1.240790106000091],[44.145518425000056,1.229559637000179],[44.142100457000055,1.221380927000084],[44.13965905000006,1.21116771000014],[44.1380314460001,1.191595770000077],[44.133962436000076,1.187567450000103],[44.11500084700006,1.182033596000096],[44.11085045700011,1.178290106000148],[44.10377037900017,1.168361721000153],[44.03288821700008,1.097479559000149],[44.01254316500015,1.084214585000041],[43.99097741000017,1.078599351000122],[43.97877037900017,1.068670966000127],[43.93262780000006,1.009833075000131],[43.81983483200016,0.949448960000112],[43.781911655000016,0.921616929000066],[43.73422285200016,0.854966539000088],[43.71729576900012,0.845282294000114],[43.703461134000094,0.840521552000126],[43.65894616000011,0.804917709999984],[43.46762129000015,0.620550848000121],[43.28549238400009,0.414984442000019],[43.1849064460001,0.316270249000141],[43.090179884000094,0.223374742000146],[42.89112389400006,0.003078518000123],[42.77027428500017,-0.129327080999843],[42.71208743600013,-0.176690362999878],[42.6477970710001,-0.228936455999886],[42.58033287900011,-0.297539971999896],[42.55591881600017,-0.332126559999892],[42.553558790000096,-0.342380466999927],[42.553965691000116,-0.351250908999958],[42.55079186300023,-0.357598565999908],[42.526621941000116,-0.362725518999909],[42.519297722000054,-0.369317315999893],[42.479746941000165,-0.422051690999893],[42.4744572270001,-0.438653252999856],[42.48650149800014,-0.449395440999865],[42.47641035200016,-0.465997002999828],[42.47282962300019,-0.469903252999913],[42.47291100400017,-0.463799737999835],[42.47242272200017,-0.458672783999916],[42.47046959700006,-0.454034112999892],[42.465993686000076,-0.449395440999865],[42.41260826900023,-0.490980726999837],[42.40455162900011,-0.50090911299985],[42.39795983200011,-0.517347914999931],[42.38266035200016,-0.535251559999892],[42.34986412900017,-0.56560637799987],[42.25025475400011,-0.685642184999892],[42.24675540500019,-0.694268487999892],[42.24675540500019,-0.701918226999823],[42.245290561000076,-0.707452080999929],[42.236338738000114,-0.709567966999856],[42.232595248000194,-0.713067315999851],[42.19223066500009,-0.776136976999851],[42.16651451900006,-0.802666924999897],[42.151621941000116,-0.813897393999909],[42.13550866000016,-0.82170989399998],[42.11646569100017,-0.82626718499985],[42.086599155000066,-0.825616143999895],[42.07154381600017,-0.828708591999884],[42.06251061300023,-0.839288018999838],[42.08171634200019,-0.843438408999873],[42.08090254000009,-0.862888278999876],[42.07195071700008,-0.884454033999873],[42.065684441000116,-0.894463799999869],[42.05144290500019,-0.902032158999901],[42.03695722700016,-0.920017184999935],[42.025563998000194,-0.941582940999865],[42.0208439460001,-0.960056247999887],[42.01636803500011,-0.968031507999925],[41.98316491000011,-0.994073174999912],[41.971934441000116,-0.999769789999974],[41.96794681100002,-0.992852471999896],[41.96363366000011,-0.950860283999902],[41.964691602000094,-0.911553643999909],[41.95883222700016,-0.894463799999869],[41.952810092000014,-0.894463799999869],[41.95541425900014,-0.909600518999866],[41.952403191000116,-0.920830987999864],[41.94752037900017,-0.930840752999842],[41.9451603520001,-0.942966403999932],[41.94646243600019,-0.954766533999987],[41.95142662900017,-0.969414971999825],[41.952810092000014,-0.980401299999869],[41.95557701900012,-0.992933851999879],[41.962250196000156,-0.998955987999963],[41.96924889400023,-1.003187757999811],[41.97315514400023,-1.011163018999852],[41.97169030000006,-1.023614190999879],[41.96143639400023,-1.044122002999828],[41.95883222700016,-1.055840752999913],[41.953461134000094,-1.068617445999863],[41.930023634000094,-1.089939059999921],[41.92465254000015,-1.097100518999952],[41.92302493600002,-1.110121351999851],[41.918304884000094,-1.121026299999841],[41.91163170700005,-1.130954684999921],[41.873871290000096,-1.176039320999891],[41.86947675900009,-1.186211846999853],[41.8728947270001,-1.195489190999979],[41.8807072270001,-1.194919528999918],[41.890147332000225,-1.189385674999912],[41.89747155000006,-1.183200778999847],[41.88542728,-1.20964934699991],[41.862803582000055,-1.21233489399998],[41.841970248000194,-1.196954033999944],[41.8352970710001,-1.168877862999864],[41.82911217500006,-1.168877862999864],[41.830251498000194,-1.189222914999945],[41.841970248000194,-1.224867445999891],[41.84278405000012,-1.243910414999974],[41.836599155000016,-1.262302341999842],[41.73226972700016,-1.43108489399988],[41.708750847,-1.460056247999873],[41.68970787900011,-1.489515882999939],[41.652110222,-1.565118096999853],[41.63331139400006,-1.580336195999934],[41.610606316000116,-1.593194268999866],[41.57504316500015,-1.65260182099999],[41.554860873000024,-1.66969166499986],[41.56104576900012,-1.66969166499986],[41.53510482597747,-1.696283164977643],[41.53510332100009,-1.696268761999818],[41.535943705000165,-1.676312018999795],[41.53858036300008,-1.613698831999912],[41.53496301200019,-1.594785257999874],[41.522870727000196,-1.57277109799989],[41.484526815000066,-1.523161721999912],[41.43419397000011,-1.458049417999831],[41.38375777200011,-1.39304046599986],[41.3321846920002,-1.326377867999852],[41.28298872800022,-1.262815855999875],[41.237306763000134,-1.203904723999869],[41.18221968600008,-1.132694600999827],[41.13106001800022,-1.06644541399983],[41.08155399500012,-1.00257334399987],[41.05612919100011,-0.969603779999986],[41.03060103300007,-0.936737568999959],[41.0052795820001,-0.903768004999918],[40.97975142400011,-0.870798440999863],[40.978821248000166,-0.794834085999909],[40.97789107200006,-0.724347431999874],[40.97696089700016,-0.653860777999824],[40.97551395600007,-0.545236917999901],[40.97406701600019,-0.436716409999818],[40.972620076000084,-0.328299254999862],[40.97117313700019,-0.21967539399985],[40.970449666,-0.152185973999821],[40.9696228440001,-0.084696552999873],[40.96848596200019,-0.002737730999812],[40.96848596200019,0.122319234000088],[40.96848596200019,0.247272848000122],[40.96848596200019,0.372329814000025],[40.96848596200019,0.49728342700007],[40.96848596200019,0.62234039300013],[40.96848596200019,0.747242330000162],[40.96848596200019,0.872247620000053],[40.96848596200019,0.997201233000098],[40.96848596200019,1.122206523000145],[40.96848596200019,1.230295056000017],[40.96848596200019,1.247211812000117],[40.96848596200019,1.372191264000165],[40.96848596200019,1.497144877000125],[40.96848596200019,1.6221501670001],[40.96848596200019,1.747181295000075],[40.96848596200019,1.87213490800012],[40.96848596200019,1.997166036000095],[40.96848596200019,2.103619487000117],[40.96848596200019,2.210047099000121],[40.96848596200019,2.316500550000143],[40.96848596200019,2.422954000000175],[40.96848596200019,2.497109680000122],[40.96714237500012,2.631726786000101],[40.96590214000017,2.760607808000117],[40.96538537600023,2.814144593000066],[40.97975142400011,2.841894836000023],[41.01396122200006,2.875794576000203],[41.09612674900009,2.957081604000109],[41.17839563000021,3.038420309000102],[41.260664510000055,3.119810690000122],[41.34272668500009,3.201149394000111],[41.394506470000145,3.275150045000117],[41.446182902000174,3.349047343000109],[41.49796268700006,3.423073832000114],[41.549639120000194,3.497022807000107],[41.63356164500007,3.617092998000047],[41.71738081900017,3.737163188000068],[41.80130334400005,3.857181702000162],[41.8850191650001,3.977226054000183],[41.89845503800004,3.996914774000131],[41.91220096800012,4.007973532000136],[41.917471965000146,4.020453389000124],[41.91664514200008,4.051097514000148],[41.92346643100004,4.070553691000143],[41.94124312300019,4.086211650000095],[42.011833130000156,4.129490662000151],[42.06836714700014,4.174552511000101],[42.10288700300012,4.191889954000203],[42.13533980300022,4.20008066800014],[42.22184615100011,4.200959167000164],[42.29729374200022,4.201734314000177],[42.41501265400021,4.221707255000112],[42.56828495200014,4.247855530000123],[42.71866337100013,4.273487040000177],[42.78977014200015,4.285605164000174],[42.83162805200013,4.302322490000122],[42.86893843600015,4.326765442000152],[42.87019486400018,4.328170991000192],[42.89963423700007,4.36110443200009],[42.91472375500009,4.393298849000131],[42.93250044700019,4.463217061000137],[42.94593632000007,4.496858419000162],[42.952550903000166,4.507581279000178],[42.960405721000114,4.517373962000149],[43.0354399010001,4.578894755000164],[43.11925907400004,4.64770192400016],[43.23279219600013,4.701497091000164],[43.34699711100015,4.755653991000187],[43.45934167500016,4.808829041000138],[43.52848474100003,4.841566060000133],[43.640519246000196,4.867352600000132],[43.716483602,4.884793396000177],[43.81518558800016,4.907479350000145],[43.84515791900017,4.914352316000105],[43.932284383000166,4.945203146000097],[43.96897465000015,4.953962301000161],[44.029126017000095,4.950448303000201],[44.08100915500009,4.947451071000103],[44.132788940000154,4.944479675000181],[44.18467207800015,4.941430766000167],[44.23645186300021,4.938485209000163],[44.288335001000206,4.93548797700015],[44.34011478700008,4.932439067000118],[44.391997925000084,4.929467672000114],[44.44372603400021,4.926444601000185],[44.49555749500021,4.923473206000097],[44.54744063300021,4.920475972000162],[44.596807717000125,4.917643031000154],[44.5992204180001,4.917504578000162],[44.651103556000095,4.914507345000146],[44.702883341000216,4.911561788000141],[44.754766479000146,4.90856455500014],[44.8065462650002,4.905541484000111],[44.85837772700009,4.902544251000108],[44.91258630400014,4.899391988000147],[44.94152510600006,4.911484273000127],[45.020641724000164,4.996879578000133],[45.02090010600014,4.996879578000133],[45.0777441810001,5.059072164000128],[45.18502445500022,5.17624847400016],[45.29235640400012,5.293476461000125],[45.39958500200006,5.41070444800016],[45.506865275000195,5.527880758000109],[45.51847745300003,5.540564097000157],[45.61414554900014,5.645057068000141],[45.7214258220001,5.762336731000119],[45.828706096000104,5.879513042000141],[45.935986369000176,5.996689352000174],[45.9968095300002,6.059191996000081],[46.057839396000105,6.12172048000015],[46.11881758600006,6.184223124000141],[46.179899129000056,6.246725769000122],[46.24098067300016,6.309228414000103],[46.302062215000056,6.371731059000183],[46.362937053000195,6.434259542000176],[46.42391524200016,6.496736348000154],[46.46696287700016,6.53829240600011],[46.48804569500007,6.55864471500017],[46.50840620900013,6.578307597000119],[46.55320967600019,6.621457418000134],[46.598064820000076,6.66463307700016],[46.61842533400008,6.6842442840001],[46.66700118000019,6.731114807000139],[46.71557702600008,6.777985331000167],[46.7641011960001,6.824881694000112],[46.81272871900009,6.871674704000128],[46.86140791800013,6.918596903000164],[46.909983765000135,6.96546742800011],[46.95855961100014,7.012286276000125],[47.00703210500009,7.05920847600008],[47.05560795100009,7.106079000000122],[47.10428715000009,7.153001201000166],[47.15286299700019,7.199820048000091],[47.20143884300008,7.246690572000204],[47.250118042000025,7.293509420000134],[47.298797241000074,7.340379944000176],[47.34737308700008,7.387302144000131],[47.395948934000074,7.434172669000162],[47.44452478000008,7.481043193000104],[47.493100627000075,7.527913717000131],[47.53238810600007,7.565863750000148],[47.541676473000074,7.574835917000171],[47.590252320000076,7.621654765000186],[47.638931519000174,7.668525289000129],[47.687507365000066,7.715395813000071],[47.73603153500008,7.762214661000185],[47.784659058000074,7.809136862000145],[47.83318322800008,7.855955709000156],[47.881810750000085,7.902826233000098],[47.93059330300011,7.949696757000125],[47.97916914900022,7.996567281000168],[48.03911381000009,8.08749196400008],[48.0990584720001,8.178519999000102],[48.1590031330002,8.2694188440002],[48.21915450000014,8.360317689000098],[48.27909916200022,8.45116485600009],[48.33914717600007,8.542089539000187],[48.39929854400006,8.633117574000124],[48.45924320500009,8.723887227000176],[48.51918786600006,8.814915263000117],[48.579184204000086,8.905839946000127],[48.6393355710002,8.996661275000108],[48.699228556000065,9.087689311000133],[48.759224895000074,9.178510641000116],[48.81932458500009,9.269383647000097],[48.87911421700007,9.36030832900019],[48.93911055500004,9.451233012000117],[48.93911055500004,9.562700993000162],[48.93911055500004,9.563603414000141],[48.93911055500004,9.675999655000167],[48.93911055500004,9.78842173300012],[48.93911055500004,9.90071462000013],[48.93911055500004,10.013033346000155],[48.93911055500004,10.125429586000095],[48.93911055500004,10.23779998800012],[48.93911055500004,10.350118713000143],[48.93911055500004,10.462566631000186],[48.93911055500004,10.574937032000122],[48.93911055500004,10.68733327200016],[48.93911055500004,10.79960032200016],[48.93911055500004,10.912022401000115],[48.93911055500004,11.024366964000137],[48.93911055500004,11.136737366000162],[48.939111999908135,11.249129976335098],[48.93913821700002,11.249131578000117],[48.9768172540001,11.251410223000093],[49.10840905000006,11.276597398000163],[49.2395939460001,11.300279039000173],[49.278086785000106,11.316961981000118],[49.293304884000094,11.337958075000158],[49.303477410000106,11.345445054000137],[49.31592858200022,11.340521552000084],[49.325450066000116,11.335109768000123],[49.33570397200006,11.334621486000131],[49.40007571700008,11.340521552000084],[49.419200066000116,11.344794012000179],[49.43506920700005,11.35106028900013],[49.488617384000094,11.381740627000127],[49.507334832000225,11.38519928600013],[49.52173912900011,11.393784898000149],[49.544444207000225,11.436712958000115],[49.55860436300006,11.453517971000124],[49.57683353000007,11.460028387000122],[49.59961998800006,11.461737372000115],[49.64454186300006,11.460353908000144],[49.65007571700019,11.462144273000119],[49.666026238000114,11.471136786000145],[49.675303582000055,11.473944403000104],[49.686778191000116,11.474351304000109],[49.716319207000055,11.467759507000125],[49.80486087300008,11.458400783000101],[49.85124759200008,11.464911200000174],[49.8807072270001,11.4882266300001],[49.8885197270001,11.487290757000109],[49.90642337300008,11.49872467700007],[49.917979363000114,11.501898505000128],[49.921885613000114,11.503851630000085],[49.934418165000096,11.512884833000086],[49.94214928500011,11.51557038000007],[49.94947350400011,11.514960028000102],[49.956309441000116,11.512518622000158],[49.96111087300014,11.509955145000063],[49.962657097000175,11.508734442000147],[50.053884311000076,11.511379299000126],[50.07252037900011,11.508734442000147],[50.13152103000019,11.539943752000127],[50.15113366000011,11.557928778000159],[50.161875847000054,11.563381252000099],[50.197601759000094,11.562648830000157],[50.206553582000225,11.56679922100011],[50.21436608200011,11.572658596000153],[50.22543379000015,11.578111070000174],[50.26832116000011,11.589300848000107],[50.28891035200016,11.602443752000154],[50.37232506600017,11.668931382000082],[50.41814212300008,11.678045966000155],[50.43702233200011,11.690619208000143],[50.47038821700008,11.72785065300013],[50.500824415000096,11.754828192000089],[50.51270592500006,11.771226304000095],[50.51758873800023,11.79266998900013],[50.518890821000156,11.815252997000115],[50.52295983200011,11.837958075000145],[50.529470248000194,11.859523830000157],[50.53858483200005,11.878648179000137],[50.56120853000007,11.907904364000075],[50.57593834700006,11.920965887000136],[50.589854363000114,11.926459052000084],[50.60206139400011,11.927964585000126],[50.62745201900011,11.940130927000112],[50.632090691000116,11.946763414000173],[50.636485222,11.951605536000145],[50.64112389400006,11.954413153000102],[50.64714603000007,11.95404694200009],[50.65593509200002,11.948431708000086],[50.661468946000156,11.947577216000083],[50.682953321000156,11.953355210000138],[50.72486412900017,11.97113678600013],[50.7615666020001,11.978745835000081],[50.77198326900006,11.985785223000136],[50.79786358500021,11.989118646000163]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Sao Tome and Principe","sov_a3":"STP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sao Tome and Principe","adm0_a3":"STP","geou_dif":0,"geounit":"Sao Tome and Principe","gu_a3":"STP","su_dif":0,"subunit":"Sao Tome and Principe","su_a3":"STP","brk_diff":0,"name":"São Tomé and Principe","name_long":"São Tomé and Principe","brk_a3":"STP","brk_name":"Sao Tome and Principe","brk_group":null,"abbrev":"S.T.P.","postal":"ST","formal_en":"Democratic Republic of São Tomé and Principe","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"São Tomé and Principe","name_alt":null,"mapcolor7":1,"mapcolor8":6,"mapcolor9":1,"mapcolor13":7,"pop_est":212679,"gdp_md_est":276.5,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"TP","iso_a2":"ST","iso_a3":"STP","iso_n3":"678","un_a3":"678","wb_a2":"ST","wb_a3":"STP","woe_id":23424966,"woe_id_eh":23424966,"woe_note":"Exact WOE match as country","adm0_a3_is":"STP","adm0_a3_us":"STP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":21,"long_len":21,"abbrev_len":6,"tiny":3,"homepart":1,"filename":"STP.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.616221550000148,0.078111070000162],[6.582855665000096,0.077337958000143],[6.578379754000109,0.078111070000162],[6.567718946000098,0.042141018000095],[6.557302280000101,0.028265692000105],[6.544200066000116,0.043931382000082],[6.536957227000102,0.026434637000037],[6.526621941000086,0.02411530200007],[6.516368035000084,0.033636786000059],[6.510101759000122,0.051418361000131],[6.511729363000143,0.052720445000134],[6.51661217500012,0.06997304900014],[6.516937696000127,0.078111070000162],[6.513682488000086,0.088283596000025],[6.50961347700013,0.092678127000099],[6.50570722700013,0.094875393000081],[6.502696160000141,0.098578192000119],[6.467295769000117,0.212469794000157],[6.461680535000113,0.222154039000131],[6.46631920700014,0.231024481000162],[6.468109571000127,0.239813544000143],[6.468516472000147,0.259955145000077],[6.470876498000109,0.267889716000056],[6.490244988000114,0.290961005000099],[6.494313998000081,0.29999420800003],[6.495371941000116,0.306382554000137],[6.497813347000147,0.312689520000077],[6.533050977000101,0.348130601000165],[6.540782097000117,0.351874091000113],[6.578298373000052,0.364569403000161],[6.609548373000109,0.390366929000095],[6.641856316000116,0.410793361000074],[6.68140709700009,0.407131252000113],[6.703868035000085,0.391831773000149],[6.727061394000116,0.366929429000038],[6.746104363000114,0.338080145000106],[6.756521030000101,0.310858466000099],[6.760915561000075,0.284165757],[6.760508660000085,0.268296617000061],[6.756521030000101,0.250067450000159],[6.748545769000144,0.230698960000055],[6.740082227000102,0.218573309000149],[6.715586785000085,0.1954613300001],[6.703135613000143,0.180405992000175],[6.674571160000141,0.133368231000162],[6.668467644000089,0.131008205000114],[6.65919030000012,0.128851630000113],[6.653330925000091,0.124579169000114],[6.66000410200013,0.107326565000108],[6.652598504000139,0.103216864000146],[6.641449415000124,0.101019598000065],[6.633636915000125,0.098578192000119],[6.618174675000119,0.081203518000137],[6.616221550000148,0.078111070000162]]],[[[7.434418165000124,1.615220445000134],[7.435557488000143,1.592596747000172],[7.430511915000125,1.572739976000079],[7.425547722000147,1.562730210000083],[7.418223504000053,1.558498440000065],[7.40577233200014,1.556463934000049],[7.402110222000089,1.550726629999986],[7.402517123000108,1.542059637000079],[7.401377800000148,1.531195380000085],[7.398773634000065,1.534979559000107],[7.395681186000075,1.542385158000101],[7.39405358200014,1.545396226000193],[7.387380405000101,1.542466539000173],[7.38103274800008,1.537990627000028],[7.372243686000103,1.55414459799999],[7.358409050000091,1.55890534100017],[7.343760613000085,1.559881903000146],[7.332530144000089,1.565334377000084],[7.329356316000116,1.596258856000119],[7.330088738000142,1.614650783000073],[7.339366082000112,1.613104559000121],[7.355967644000059,1.620021877000042],[7.364024285000113,1.62938060100015],[7.366465691000143,1.641791083000086],[7.366547071000126,1.658107815000108],[7.371836785000084,1.677191473000093],[7.385264519000088,1.69232819200009],[7.403005405000073,1.699774481000162],[7.42123457100007,1.69570547100011],[7.448741082000112,1.693182684000092],[7.459727410000141,1.68829987200013],[7.462738477000073,1.674546617000104],[7.457367384000094,1.669989325000074],[7.446136915000095,1.665472723000107],[7.434825066000115,1.658880927000126],[7.428721550000119,1.647853908000087],[7.443532748000109,1.645453192000133],[7.45671634200005,1.638332424000097],[7.461761915000096,1.630804755000128],[7.452647332000083,1.627346096000124],[7.438243035000112,1.623928127000127],[7.434418165000124,1.615220445000134]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Swaziland","sov_a3":"SWZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Swaziland","adm0_a3":"SWZ","geou_dif":0,"geounit":"Swaziland","gu_a3":"SWZ","su_dif":0,"subunit":"Swaziland","su_a3":"SWZ","brk_diff":0,"name":"Swaziland","name_long":"Swaziland","brk_a3":"SWZ","brk_name":"Swaziland","brk_group":null,"abbrev":"Swz.","postal":"SW","formal_en":"Kingdom of Swaziland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Swaziland","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":1123913,"gdp_md_est":5702,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"WZ","iso_a2":"SZ","iso_a3":"SWZ","iso_n3":"748","un_a3":"748","wb_a2":"SZ","wb_a3":"SWZ","woe_id":23424993,"woe_id_eh":23424993,"woe_note":"Exact WOE match as country","adm0_a3_is":"SWZ","adm0_a3_us":"SWZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"SWZ.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.86335697400005,-25.989937031999943],[31.89188236500013,-25.983839212999893],[31.949243204000084,-25.958104349999896],[31.975288127000052,-25.98042856899987],[32.004020223000055,-25.994381204999865],[32.07057946800006,-26.009780781999936],[32.05745365400008,-26.041200052999965],[32.06272465000012,-26.077166849999855],[32.074558553000145,-26.114167175999906],[32.08143151900009,-26.148790384999913],[32.077814168000145,-26.175455423999946],[32.04474125200005,-26.25452036499985],[32.03988366700014,-26.283665872999862],[32.05233768700009,-26.38681203199989],[32.05983077000013,-26.414820657999897],[32.10706302900007,-26.500293477999918],[32.117398316000106,-26.58225229899989],[32.113884318000146,-26.840014342999922],[32.09776127200013,-26.83350311299995],[32.073163289000036,-26.811385599999937],[32.05714359600012,-26.80859507199989],[31.990067586000066,-26.808285013999907],[31.992237996000085,-26.838257344999946],[31.975288127000052,-26.926624042999947],[31.959681844000045,-27.00878957099988],[31.942111857000043,-27.10067026799994],[31.944204309000096,-27.162338388999984],[31.944850708000104,-27.18138885499988],[31.94738285300008,-27.25549285899991],[31.952963907000083,-27.270168964999897],[31.959785197000144,-27.28102101599994],[31.964849487000034,-27.29166636099994],[31.967743368000125,-27.30303517599992],[31.968260132000065,-27.31626434299993],[31.87860152200011,-27.315230814999936],[31.78253503400009,-27.313990580999914],[31.63691084800013,-27.31223358099993],[31.526529989000036,-27.310889993999865],[31.4594539790001,-27.29869435599994],[31.35666955500011,-27.26706837999995],[31.280136759000072,-27.24350392599986],[31.244706612000186,-27.232586323999897],[31.157043497000128,-27.20557342599994],[31.141953980000036,-27.196478372999877],[31.12650272700006,-27.18262908999992],[31.078753703000075,-27.11824025399991],[30.976072632000065,-27.035041197999917],[30.953645060000103,-27.000314635999885],[30.949407593000046,-26.97540659599991],[30.959742879000142,-26.93613250699994],[30.9609831140001,-26.91122446699997],[30.955092,-26.891380716999976],[30.94444665500009,-26.87660125699996],[30.91581791100009,-26.849419453999886],[30.902588745000116,-26.831332701999955],[30.885294444000124,-26.78564059999991],[30.88021285000013,-26.772214863999906],[30.868740682000123,-26.784927266999954],[30.853392782000128,-26.796606139999923],[30.836442912000052,-26.805081074999933],[30.819803101000105,-26.80797495499992],[30.802439819000085,-26.80890513099987],[30.795670207000054,-26.78554738299992],[30.785696655000038,-26.716921080999967],[30.784146362000115,-26.578841654999863],[30.782906128000096,-26.47238820399994],[30.804558553000046,-26.39745737699988],[30.89731774900008,-26.291727396999946],[30.897333504000127,-26.291709464999883],[30.969871460000093,-26.209148457999916],[31.03777429200005,-26.100111185999893],[31.09162113400015,-25.98363250699994],[31.106865682000034,-25.930922546999923],[31.11983646700014,-25.91004526699994],[31.208409871000068,-25.83862843799994],[31.309282268000118,-25.75739308699987],[31.337394246000144,-25.744680683999917],[31.372017456000034,-25.73641245499996],[31.401473022000058,-25.73599904399995],[31.426897827000058,-25.74364715499993],[31.53283451300007,-25.80555552199986],[31.638771200000118,-25.867463887999875],[31.730600220000095,-25.921207377999878],[31.746966320000183,-25.930789517999923],[31.83457320200011,-25.982082213999917],[31.86335697400005,-25.989937031999943]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Chad","sov_a3":"TCD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Chad","adm0_a3":"TCD","geou_dif":0,"geounit":"Chad","gu_a3":"TCD","su_dif":0,"subunit":"Chad","su_a3":"TCD","brk_diff":0,"name":"Chad","name_long":"Chad","brk_a3":"TCD","brk_name":"Chad","brk_group":null,"abbrev":"Chad","postal":"TD","formal_en":"Republic of Chad","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Chad","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":8,"mapcolor13":6,"pop_est":10329208,"gdp_md_est":15860,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"CD","iso_a2":"TD","iso_a3":"TCD","iso_n3":"148","un_a3":"148","wb_a2":"TD","wb_a3":"TCD","woe_id":23424777,"woe_id_eh":23424777,"woe_note":"Exact WOE match as country","adm0_a3_is":"TCD","adm0_a3_us":"TCD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TCD.geojson"},"geometry":{"type":"Polygon","coordinates":[[[23.981305786000036,19.496123759000024],[23.981512492000093,19.26383819600011],[23.981719197000047,19.031552633000103],[23.981925903000104,18.799292908000094],[23.982132609000075,18.567033183000092],[23.982235962000086,18.33479929700007],[23.982442668000143,18.10251373300008],[23.98275272600003,17.870228170000047],[23.982856079000072,17.637942607000042],[23.983062784000108,17.405657044000034],[23.983269491000073,17.173371481000117],[23.983476196000137,16.941137594000026],[23.983682902000083,16.70880035500008],[23.983786255,16.476514791000085],[23.98399296000008,16.24422922800005],[23.984303019000066,16.011943665000047],[23.98440637200008,15.779658102000042],[23.98440637200008,15.721939934000062],[23.98440637200008,15.721160381000033],[23.972624146000072,15.691084697000065],[23.945545695000135,15.692221579000089],[23.829067017000085,15.73103057900002],[23.707524048000067,15.748858948000075],[23.59269901600007,15.749013977000118],[23.52706994600004,15.735164694000046],[23.395811808000076,15.688345846000031],[23.320570923000105,15.681317851000102],[23.16678186000013,15.712943827000116],[23.119249041000103,15.707223545000119],[23.094641561000117,15.704262187000039],[23.06849328600012,15.68669219900008],[23.004517863000046,15.611425476000106],[22.9256596270001,15.563934835000024],[22.90674605300009,15.541403911000089],[22.899511353,15.510191346000028],[22.906849406000106,15.481407572000109],[22.923592570000068,15.455569356000067],[22.944986613000083,15.433115947000088],[22.966484008000094,15.404823100000085],[22.976405884000116,15.373636373000108],[22.978369588000135,15.340201722000131],[22.965657186000072,15.223903910000034],[22.958009074000103,15.201631368000077],[22.913257283000064,15.121687928000156],[22.90550581900004,15.112567037000074],[22.871606079000117,15.099699605000085],[22.848765096000108,15.087503967000075],[22.82902469900006,15.071639302000065],[22.738901001000073,14.979810283000106],[22.72722212700009,14.959036357000072],[22.721951132000072,14.934670919000055],[22.721020956000103,14.915938212000057],[22.715336548000067,14.899427592000066],[22.69549279800009,14.881470032000095],[22.658905883000045,14.857414653000147],[22.650844361000054,14.84193756100005],[22.650844361000054,14.816151022000042],[22.65900923600006,14.761270650000126],[22.66459029100008,14.743752340000071],[22.679679809000078,14.711816305000099],[22.681436808000058,14.702927958000075],[22.676579224000136,14.688975322000088],[22.666347290000147,14.681740622000119],[22.46542932100007,14.629289043000071],[22.422744588000086,14.609083557000075],[22.382333618000104,14.579111226000135],[22.36352339600009,14.543532003000067],[22.38636438000009,14.506531678000115],[22.41716353400005,14.484104106000116],[22.424914998000077,14.4704356900001],[22.439074341,14.362922872000096],[22.44238163300011,14.356928406000067],[22.447342570000046,14.35163157200013],[22.45095992000003,14.345792134000133],[22.449926392000062,14.338376567000125],[22.44486210100007,14.33336395200007],[22.43132287600011,14.3272144580001],[22.426982056000043,14.323002828000142],[22.418093710000107,14.30594960600011],[22.417060181000124,14.298094787000082],[22.419954061000112,14.286235046000058],[22.429049113000072,14.26460846000009],[22.44103804600013,14.249854838000076],[22.457677856000146,14.24114735900011],[22.514108520000093,14.231458028000075],[22.531885213000123,14.220631816000036],[22.540876912000073,14.201175639000056],[22.547698201000117,14.169032898000111],[22.546354614000048,14.139706523000143],[22.531471802000112,14.12262746200011],[22.5082174070001,14.113635763000062],[22.481449015000123,14.10854563400008],[22.45871138500013,14.096117452000101],[22.421607706000145,14.06214019800008],[22.402280721000096,14.049298604000084],[22.24353072100007,13.975427145000111],[22.214695272000142,13.956616923000098],[22.190614054000093,13.932794088000037],[22.180762493000145,13.920554946000067],[22.0993534750001,13.819415996000117],[22.07496219900008,13.7803227750001],[22.07372196400013,13.77135691300016],[22.097079712000095,13.749756165000093],[22.11289270000009,13.729834900000085],[22.1163033440001,13.715184632000103],[22.114339641000072,13.699707540000091],[22.114339641000072,13.677383321000034],[22.132116333000113,13.638651835000102],[22.19588505000013,13.580464173000093],[22.21056115700011,13.541732686000072],[22.211181274000097,13.484190979000047],[22.215625448000083,13.464993184000035],[22.228647908000138,13.44111867200013],[22.26399458800003,13.399183248000043],[22.275983521000082,13.37631642700012],[22.26761193900012,13.334561869000082],[22.232265258000012,13.289034933000025],[22.139971151000054,13.193511048000062],[22.123434692000046,13.182168071000078],[22.016051066000074,13.140232646000086],[21.998377726000058,13.130594991000065],[21.964064575000037,13.098348898000097],[21.935125773000095,13.059152323000148],[21.852960246000066,12.905724996000075],[21.827845500000137,12.831104228000086],[21.811825806000083,12.799969177000037],[21.80944869000012,12.79366465300012],[21.813686157000088,12.782295838000039],[21.84086796100007,12.74893870100007],[21.880142049000142,12.676281636000127],[21.90081262200007,12.656437887000038],[21.935952596000106,12.63953969300013],[21.9771903890001,12.63183990500005],[22.01966841600006,12.631426493000049],[22.05873580000008,12.636697490000074],[22.10586470600006,12.650391744000089],[22.144105265000064,12.671269023000065],[22.176248006000094,12.701499735000082],[22.204876750000064,12.74335764600005],[22.330140422000113,12.66145050100009],[22.432459757000117,12.623830058000081],[22.44568892400011,12.611065979000102],[22.395872843000063,12.496085917000073],[22.372825155000097,12.463116353000103],[22.374892212000077,12.450869039000082],[22.407965128000058,12.399761048000087],[22.481449015000123,12.176673889000083],[22.484032837000115,12.164736634000135],[22.48475630700011,12.152540996000111],[22.483826131000058,12.1403453570001],[22.45809126800009,12.030429586000139],[22.464499145000104,12.032961731000128],[22.47049361200004,12.03611399400009],[22.481449015000123,12.044278870000099],[22.546457967000094,12.064432678000088],[22.585525350000093,12.071357321000065],[22.598857869000113,12.063244121000153],[22.607332804000123,12.077713522000094],[22.61239709500009,12.072804261000059],[22.613533977000117,12.05724965500012],[22.610536743000097,12.039627991000131],[22.59286340300008,11.988933411000076],[22.537052856000116,11.680890198000071],[22.541703735000084,11.63298614500006],[22.561754191000148,11.58601226800009],[22.59234663900014,11.543663432000088],[22.628106730000066,11.509841207000092],[22.66252323400002,11.493072204000043],[22.743035115000083,11.46609710700011],[22.76876997800008,11.442325948000146],[22.771560506000043,11.433308411000096],[22.771870565000114,11.403181051000118],[22.781792440000117,11.39889190700005],[22.87698042800008,11.40883962100014],[22.900441529000144,11.408245341000097],[22.914807576000072,11.396101379000086],[22.928346802000135,11.325149638000113],[22.953668254000036,11.250942281000048],[22.954535630000123,11.23784329500009],[22.956458781000094,11.208800151000105],[22.95201460700008,11.191049296000074],[22.935168090000104,11.155883484000114],[22.928966919000118,11.137925924000044],[22.9256596270001,11.118133850000063],[22.925142863000072,11.09795420400009],[22.9223523360001,11.087076315000033],[22.90653934800011,11.069893901000057],[22.9002348220001,11.059894511000053],[22.86106408700007,10.919153747000095],[22.805977010000106,10.92450225800006],[22.74510217300005,10.9438034060001],[22.719884074000102,10.964654846000158],[22.682677043000098,10.974137472000052],[22.673168579000105,10.975067648000092],[22.63833866300004,10.974137472000052],[22.628210083000084,10.976127014000085],[22.609089803000103,10.98522206600006],[22.600821574000065,10.987805888000153],[22.577050415000087,10.985118714000121],[22.555759725000115,10.978969218000145],[22.534675740000097,10.980519511000082],[22.511938110000102,11.000828349000088],[22.502843058000053,10.992172547000052],[22.49075077300006,10.993154399000103],[22.4762813720001,10.997960307000113],[22.46046838400011,11.000828349000088],[22.447135865000092,10.998270366000098],[22.437627401000015,10.99155242900008],[22.41923059,10.970726827000107],[22.40703495200009,10.963052877000038],[22.391842082000068,10.958505351000097],[22.364690321000097,10.954208607000112],[22.36114628100003,10.953647766000074],[22.33944217900003,10.947730815000071],[22.31877160600004,10.93935923300009],[22.305955852000125,10.932563782000045],[22.287248983000065,10.91594980900004],[22.276500285000054,10.908534241000027],[22.268438761000137,10.908999329000054],[22.253039185000148,10.915303854000058],[22.240120076000068,10.905898743000094],[22.229371378000025,10.891971944000119],[22.20063928200011,10.868665873000083],[22.189787231000082,10.837298279000066],[22.17635135900011,10.81621429500012],[22.148239380000092,10.830761210000091],[22.1324263920001,10.828539124000088],[22.048607218000114,10.83698822000008],[22.02948693800002,10.828745829000127],[22.018324829000075,10.809883932000105],[22.011400187000106,10.789290873000112],[22.00488895700005,10.775519104000082],[22.01460412600008,10.754564310000077],[22.003855428000062,10.74327301000011],[21.943083944000136,10.728261007000128],[21.925617309000103,10.720121969000033],[21.8950248620001,10.699193013000126],[21.872080526000044,10.677592265000072],[21.86835982300005,10.67622283900009],[21.863605591000066,10.667928772000053],[21.852753540000094,10.670150859000046],[21.832909790000116,10.679943543000107],[21.8225745040001,10.678754985000083],[21.80355757700005,10.673664856000102],[21.795392700000036,10.672476299000081],[21.784850708000135,10.66932403600012],[21.77875288900009,10.662270203000105],[21.77420536300005,10.655164694000078],[21.768417603000074,10.651986593000103],[21.7534314370001,10.650720520000064],[21.736481567000112,10.646172994000038],[21.72263228400004,10.636716207000063],[21.716844523000074,10.621006572000098],[21.714674113000086,10.601395365000158],[21.70547570800008,10.57181060800012],[21.70330529800009,10.552406108000056],[21.70547570800008,10.532019755000105],[21.714674113000086,10.493701681000104],[21.716844523000074,10.47732025200014],[21.720461873000147,10.46801849400012],[21.738031861000138,10.448019714000097],[21.744233032000125,10.439105530000075],[21.744439738000068,10.432439270000145],[21.74278609300012,10.425773010000057],[21.743612915000142,10.418977559000098],[21.751054321000083,10.411820373000053],[21.720461873000147,10.360815735000102],[21.716844523000074,10.339809265000083],[21.71777469900013,10.328983053000059],[21.722115519000113,10.314177755000117],[21.723045695000053,10.305987041000094],[21.718808228000114,10.296633606000057],[21.708886352,10.293533020000027],[21.6974141850001,10.292421977000117],[21.68893925000009,10.288907980000147],[21.67695031700012,10.269167582000094],[21.668888794000054,10.249194641000074],[21.65627974500012,10.23366587300005],[21.630648234000148,10.227438864000064],[21.625273885000095,10.22449330700006],[21.593441203000054,10.214545594000057],[21.589720500000027,10.216612650000114],[21.57928186000009,10.212271831000137],[21.566672810000085,10.214493917000139],[21.55447717200005,10.218653870000068],[21.544968709000074,10.219997457000133],[21.513239380000044,10.200515442000054],[21.48543745900011,10.16431610100011],[21.43334761600005,10.04605458600008],[21.406889282000066,10.00556610100007],[21.37433313000011,9.973113301000055],[21.339503214000047,9.959909973000066],[21.3260673420001,9.96275217700014],[21.285139608000065,9.978591004000052],[21.271290323000102,9.987246806000101],[21.256924276000117,9.975748800000074],[21.20566125500008,9.916837667000067],[21.198426554000037,9.902988383000107],[21.195429322000106,9.88730458600014],[21.187264445000096,9.88513417600005],[21.13197066200007,9.849425761000148],[21.121738728000082,9.831907451000092],[21.1067525630001,9.79544972800008],[21.10592574000009,9.791884054000107],[21.1067525630001,9.778060608000146],[21.10520227100008,9.774029847000065],[21.101584920000107,9.774236552000119],[21.097037394000065,9.77537343400013],[21.093109986000087,9.774339905000147],[21.080294230000106,9.762609355000066],[21.073162882000073,9.757648417000112],[21.065824829000093,9.754496155000155],[21.062207479000108,9.756201477000118],[21.052905721000087,9.765890809000055],[21.04835819500005,9.76816457100007],[21.042673787000098,9.767079366000074],[21.040089966000096,9.764753927000143],[21.039056437000113,9.762170105000052],[21.03781620300009,9.760671489000131],[21.032338501000083,9.75801015200011],[21.025620565000054,9.753255920000113],[21.0199361570001,9.74793324800008],[21.017352336000016,9.743592428000099],[21.014251749000067,9.724472148000103],[21.000092408000114,9.697393697000052],[20.996888468000066,9.6821749880001],[20.996061645000026,9.648301087000107],[20.989963826000064,9.635614522000154],[20.975804484000037,9.630963643000086],[20.975804484000037,9.624168193000045],[20.980145304000104,9.61993072600009],[20.98179895000007,9.616778463000045],[20.98314253800004,9.603678488000085],[20.9676396080001,9.610603129000154],[20.96226525900005,9.606934103000071],[20.96050826000007,9.598123271000077],[20.955960734000143,9.589415792000096],[20.934256632000142,9.577065125000047],[20.925058227000136,9.569597880000117],[20.921234171000094,9.55897837300013],[20.91265588400006,9.544328105000147],[20.874208618000125,9.502496033000085],[20.863769979000097,9.493788554000119],[20.841445760000113,9.484409282000072],[20.834314412000083,9.462472636000115],[20.83266076700005,9.437254537000058],[20.82614953600006,9.418082580000146],[20.82025842200008,9.41622222900014],[20.81388430900006,9.41884686400006],[20.81323042800005,9.419116109000129],[20.806719197000092,9.423327739000072],[20.8019649660001,9.425549825000076],[20.798244262000082,9.423379415000085],[20.792353149000093,9.414000142000134],[20.788322388000093,9.411881409000074],[20.7765401610001,9.407798970000059],[20.77106246000011,9.398057963000113],[20.766618286000096,9.386559957000088],[20.757936646000132,9.377129008000125],[20.750495240000106,9.384544576000037],[20.7408834230001,9.377129008000125],[20.695821574000064,9.36346059200011],[20.654893839000124,9.342970887000135],[20.667916300000087,9.302017314000109],[20.616653280000037,9.302017314000109],[20.609728638000064,9.30279246000012],[20.592882121000084,9.308218485000097],[20.592262003000116,9.30806345700006],[20.57355513500005,9.30914866100005],[20.572314901000084,9.308218485000097],[20.550920858000094,9.320259095000067],[20.541825806000105,9.321628520000047],[20.53820845600012,9.311939189000114],[20.537278280000066,9.299200948000149],[20.53366093000008,9.289640809000062],[20.526426229000037,9.283620504000112],[20.514230591000114,9.281501771000137],[20.496143840000087,9.270882264000148],[20.50265507000006,9.247421163000084],[20.512990357000092,9.223882548000091],[20.5072025960001,9.213263041000102],[20.481777792000088,9.204658915000067],[20.467618449000042,9.184143372000094],[20.455422811000034,9.159312846000134],[20.435165649000027,9.13812550900009],[20.42307336400006,9.143241476000071],[20.41242801900006,9.142052918000061],[20.402919555000064,9.136988627000079],[20.384419393000144,9.123578593000033],[20.378321574000097,9.120064596000077],[20.35940799900004,9.11642140700009],[20.276829061000115,9.120736390000062],[20.256985311000108,9.11642140700009],[20.234454387000085,9.134559835000118],[20.222982218000084,9.141949565000118],[20.21264693200007,9.144972636000132],[20.197970825000084,9.140502625000124],[20.16954878800007,9.120891418000099],[20.1545626220001,9.11642140700009],[20.13761275200008,9.121821594000053],[20.12572717200007,9.133784688000105],[20.11714888500012,9.145747782000058],[20.10960412600008,9.151173808000124],[20.10102583800005,9.148073222000093],[20.09957889800006,9.141174418000105],[20.100509074000115,9.134146423000104],[20.099372193000107,9.130709941000077],[20.090587199000108,9.131123352000088],[20.07694462100011,9.136730245000107],[20.068676391000054,9.13812550900009],[20.060511515000144,9.134353129000147],[20.031159302000077,9.110220236000103],[20.028368775000104,9.104561666000066],[20.029919067000034,9.098980611000059],[20.030332478000048,9.093864644000064],[20.024338012000097,9.089756368000053],[20.017930135000057,9.091048279000091],[20.014416137000097,9.10634450300006],[20.006871379000074,9.110220236000103],[20.002943970000103,9.108514913000134],[19.999533325000073,9.104303284000096],[19.99715620900011,9.09861887600006],[19.9963293860001,9.092831116000085],[19.993022094000107,9.084588725000046],[19.98547733500004,9.083193461000063],[19.976485637000106,9.084175313000117],[19.969044231000083,9.082883403000082],[19.943412719000037,9.065881856000146],[19.932091369000148,9.06333056600009],[19.928736613000126,9.062574565000148],[19.914473917000066,9.069266663000079],[19.902174927000118,9.051800029000034],[19.889462525000056,9.046374004000143],[19.805539998000143,9.051128235000135],[19.784662720000085,9.048751120000105],[19.758411092000046,9.04198150600007],[19.746835571000105,9.041309713000075],[19.738153931000056,9.039371847000053],[19.71396936000008,9.02913991300008],[19.70900842300003,9.024566548000038],[19.70001672300009,9.020587464000144],[19.65640181400005,9.02125925700004],[19.640072062000087,9.013998718000066],[19.61361372900012,9.031672059000059],[19.583124633000125,9.02534169600004],[19.553772420000143,9.013326925000072],[19.53082808400012,9.013998718000066],[19.521319621000117,9.00883107500006],[19.515841919000138,9.009451192000114],[19.511811157000068,9.012293396000087],[19.50664351400013,9.013998718000066],[19.430162394000064,9.01286183700006],[19.420963989000054,9.017435202000087],[19.382620076000137,9.00319834500003],[19.36939091000005,9.000381978000064],[19.352234334000087,9.002061463000118],[19.33332076000005,9.00655731200004],[19.316267537000016,9.013120219000115],[19.304795370000107,9.02084584500011],[19.295493612000087,9.00950286900013],[19.285778442000034,9.012810160000129],[19.27523645000008,9.021982727000122],[19.2632475180001,9.028261414000042],[19.25342899600014,9.027951356000145],[19.23286177600005,9.02229278600002],[19.192037394000067,9.02017405200013],[19.179635051000105,9.015264791000106],[19.17457076000011,9.003766784000078],[19.168783000000133,9.00221649200006],[19.14211796100011,9.008676046000103],[19.1336430260001,9.007177429000109],[19.126718384000124,9.007177429000109],[19.100570109000103,9.015264791000106],[19.06067590300009,9.004180196000092],[19.021918579000044,8.985214946000042],[18.999491007000046,8.969634501000101],[18.98481490000006,8.956431173000112],[18.97851037600014,8.949454855000113],[18.97592655400004,8.941987610000098],[18.971895793000044,8.938215230000068],[18.952052042000076,8.931988220000079],[18.93644576000011,8.923358256000128],[18.928590943000074,8.921678772000078],[18.92290653500004,8.918216451000132],[18.920736124000143,8.90785532700012],[18.917738892000045,8.898811951000155],[18.910607544000097,8.894238586000114],[18.901409139000094,8.893980205000048],[18.892727498000053,8.897933452000117],[18.869679810000093,8.864111227000123],[18.869783162000118,8.849409282000138],[18.88652632700007,8.835844218000148],[18.902959432000017,8.844810079000084],[18.909677368000132,8.835327454000023],[18.912467895000106,8.818403422000117],[18.917325480000045,8.805148418000115],[18.929107707000128,8.796544292000076],[19.04868697100011,8.74566884400015],[19.0577820230001,8.729700826000112],[19.07349165900007,8.720528259000119],[19.10387740100012,8.698049011000109],[19.12413456200011,8.675078837000072],[19.09147505700014,8.652857972000035],[19.081656535000064,8.637225851000082],[19.072261297000125,8.631872473000087],[19.061296021000146,8.625624492000043],[19.02047163900005,8.545577698000088],[18.920529419000104,8.432122090000064],[18.910400839000143,8.412975973000059],[18.90130578600008,8.388636373000052],[18.887456503000095,8.370963033000137],[18.854900350000065,8.339802144000075],[18.81304244000009,8.27642100100006],[18.791234986000063,8.257378235000076],[18.773768351000115,8.248619080000097],[18.715063924000077,8.228671977000076],[18.672585896000044,8.207510478000131],[18.638582804000094,8.177641500000107],[18.618635702000063,8.13865163200012],[18.617912231000076,8.09012746200004],[18.589283488000092,8.047881979000065],[18.50825484200007,8.030673727000078],[18.07045210800004,8.019201558000061],[17.977227824000096,7.997187398000078],[17.89785282400004,7.967473450000113],[17.858785441000123,7.960445455000097],[17.817237589000115,7.962099101000149],[17.679778280000075,7.985198466000027],[17.661794881000077,7.986283671000124],[17.639884074000122,7.985043437000086],[17.620660441000012,7.978738912000068],[17.599989868000108,7.950368551000067],[17.580766235000084,7.940601706000108],[17.55978560300008,7.9347105920001],[17.52381880700011,7.930989889000101],[17.50366499800012,7.926235657000106],[17.487231893000057,7.914453430000107],[17.478343547000037,7.891819153000142],[17.466354614000096,7.88411936400007],[17.41912235500007,7.898227030000101],[17.405996541000093,7.883034160000065],[17.38573938000007,7.870476787000143],[17.25086389100005,7.822831116000102],[17.234637492000047,7.811617330000061],[17.233790206000094,7.810801425000149],[17.22068485500003,7.798181457000111],[17.21448368300014,7.786812643000119],[17.211073038000023,7.76831248000009],[17.20456180800005,7.763816630000078],[17.19639693200014,7.765160218000047],[17.18864546700013,7.764126689000065],[17.1705587160001,7.74753855400006],[17.135522095000084,7.705112203000127],[17.11629846200009,7.686870422000069],[17.101932414000057,7.677723694000078],[17.095524536000113,7.678240458000118],[17.090253540000106,7.68382151300004],[17.07909143100008,7.689919332000102],[17.059351033000098,7.696533916000092],[17.04560510200008,7.684700012000079],[17.041057576000128,7.675501608000075],[17.04209110500011,7.66702667300008],[17.038990519000066,7.662479147000042],[17.008294718000116,7.667646790000048],[16.997546020000097,7.666716614000094],[16.988967733000067,7.660773824000073],[16.98193973800008,7.648733215000106],[16.96271610500014,7.650696920000129],[16.919617961000142,7.644082337000043],[16.88065393000005,7.632868551000101],[16.865461060000115,7.624445292000103],[16.854815715000115,7.611474508000086],[16.84716760300006,7.591579081000076],[16.848097778000092,7.584706116000106],[16.852438599000095,7.580261943000096],[16.855849243000108,7.575404358000084],[16.853885539000085,7.56749786400013],[16.85037154100013,7.565895894000092],[16.839622843000086,7.567446188000118],[16.836728963000013,7.56749786400013],[16.815071257000056,7.549543532000143],[16.812854451000135,7.547705790000065],[16.80551639800012,7.54367502900007],[16.782365357000057,7.541142883000077],[16.76861942500011,7.550237936000144],[16.74670861800007,7.58656646700011],[16.70981164600005,7.627752584000107],[16.686867310000082,7.645787659000105],[16.663199504000147,7.657414856000074],[16.624545532000067,7.668680318000027],[16.614210245000066,7.679584046000087],[16.609869426000074,7.70159820600007],[16.611833129000104,7.713897197000107],[16.616173950000075,7.723870748000125],[16.618137655000112,7.734309387000067],[16.61307336400006,7.74821034700004],[16.605218547000106,7.757202047000078],[16.596433553000107,7.761129456000049],[16.586821737,7.763558248000109],[16.576383097000075,7.767795715000148],[16.56015669700008,7.779732972000104],[16.54930464600011,7.794719137000071],[16.544860474000103,7.813012594000043],[16.55023482200008,7.843501689000035],[16.550751587,7.852700094000128],[16.550131469000036,7.861691793000162],[16.54868453000006,7.870011699000131],[16.509203735000114,7.858281149000049],[16.49173710100007,7.849237773000083],[16.47571740700002,7.835801901000123],[16.469412882000114,7.825828349000119],[16.457217244000105,7.79962839800011],[16.450912720000076,7.792083638000065],[16.437373495000116,7.788362935000052],[16.427244913000067,7.791463522000086],[16.418149862000092,7.795856018000079],[16.407401164000074,7.796062724000136],[16.39220829200013,7.783608703000141],[16.387040649000113,7.762628072000055],[16.387144002000067,7.694673564000084],[16.383009888000032,7.680669251000083],[16.37081424900012,7.672504374000069],[16.2827576090001,7.660102031000093],[16.26188033000011,7.651885478000068],[16.227257120000104,7.625582174000115],[16.207206665000058,7.613541565000047],[16.1856059160001,7.610751037000085],[16.162661580000076,7.611112773000087],[16.12876184100014,7.599485575000116],[16.06519982900008,7.591217346000079],[16.042978964000042,7.583930970000096],[16.02633915200002,7.574887594000131],[16.012283162000102,7.560314840000088],[15.990372355000147,7.529412333000081],[15.975696248000077,7.515201315000127],[15.943140096000036,7.495305888000118],[15.925260050000077,7.488174541000078],[15.79389855900007,7.45799550400008],[15.758345174000112,7.455566711000117],[15.720001262000096,7.468640849000081],[15.668531535000113,7.516286519000118],[15.624813273000115,7.519748841000065],[15.551949503000117,7.509878642000075],[15.515569295000148,7.512204081000107],[15.481049439000058,7.523262838000107],[15.521977173000096,7.576076151000066],[15.548952271000102,7.630801493000136],[15.562181437000106,7.690177714000071],[15.562904907000103,7.792445374000053],[15.540787394000093,7.796837870000046],[15.509368123000057,7.804020895000093],[15.487870727000114,7.804951071000063],[15.4407418210001,7.839419251000024],[15.406532023000125,7.921584778000137],[15.34534712700008,8.135990296000102],[15.21070621600009,8.421822448000071],[15.183703247000068,8.479147644000136],[15.168510376000143,8.498603821000117],[15.11073612400014,8.555137838000078],[15.068568155000092,8.623867493000146],[15.051928345000078,8.64378875800007],[15.03125777200006,8.658749085000125],[15.005832967000059,8.66662974100008],[14.968522583000011,8.672159119000085],[14.955086710000073,8.676215719000083],[14.951469360000088,8.682830302000085],[14.951469360000088,8.692106222000092],[14.949092244000042,8.704276022000101],[14.940100545000092,8.729649149000096],[14.93441613700014,8.739002584000048],[14.927284790000101,8.745074565000095],[14.919946736000098,8.747710063000099],[14.91333215300011,8.752438457000096],[14.908267863000047,8.764840800000059],[14.899379516000124,8.774323425000132],[14.85989872200008,8.803313904000104],[14.846049438000135,8.810987854000103],[14.836747680000116,8.813003235000053],[14.827962687000108,8.813158265000084],[14.819177694000132,8.811607971000072],[14.80987593600011,8.80861073800014],[14.79385624200006,8.813623353000109],[14.571699259500035,8.990989787000103],[14.349542277000124,9.168356221000096],[14.331145467000027,9.20021474300006],[14.321326945000067,9.243157858000117],[14.03648645000007,9.568771057000092],[13.947602987000039,9.637759094000046],[13.945949340000084,9.652641907000088],[14.006720825000087,9.739277446000116],[14.088472941000104,9.809634909000138],[14.119788859000096,9.852009583000052],[14.168364705000101,9.94774017400006],[14.170638468000105,9.957842916000104],[14.171155232000073,9.967609762000066],[14.173532348000094,9.975025329000076],[14.181697225000022,9.97817759300004],[14.196340538000072,9.979146894000039],[14.440492798000038,9.995308329000082],[14.732464640000074,9.923813985000066],[14.77256555200006,9.921746928000104],[14.898139282000074,9.960478414000121],[14.944131307000077,9.95882476800007],[15.002422323000102,9.94505299900004],[15.033014770000134,9.942856751000136],[15.06123010200011,9.949238790000065],[15.071668742000043,9.955956726000096],[15.089445435000075,9.972183126000104],[15.100710897000111,9.97890106200012],[15.109599244000037,9.981536560000052],[15.155487915,9.986523336000104],[15.214915812000072,9.98409454300014],[15.382967570000119,9.9301960250001],[15.439398234000066,9.931694641000105],[15.663777303000103,9.98610992400009],[15.681243937000147,9.991277568000086],[15.63793908700009,10.029957378000104],[15.602799113000058,10.040990296000103],[15.536136515000122,10.080522766000044],[15.490144490000118,10.1201069130001],[15.490661255000077,10.124447734000071],[15.476398560000092,10.13274180100012],[15.439191528000094,10.185245057000088],[15.301422160000072,10.311748963000069],[15.2905701090001,10.328983053000059],[15.284265584000108,10.349291891000064],[15.282198527000046,10.374587504000132],[15.278374471000092,10.394276225000084],[15.268762655000073,10.406342672000065],[15.255636841000126,10.417039693000076],[15.241167440000083,10.432904358000087],[15.227214803000093,10.470137228000096],[15.218326457000073,10.487216288000141],[15.19817264800011,10.496492208000063],[15.193315063000083,10.501194764000047],[15.186597127000054,10.50587148000011],[15.176055135000098,10.507990214000088],[15.1646863200001,10.509075419000084],[15.1536275630001,10.51196930000016],[15.144429158000094,10.516310120000142],[15.138227986000118,10.521658631000093],[15.13171675600006,10.540701396000074],[15.132336873000014,10.565402731000091],[15.138434692000088,10.58969065400008],[15.148459920000105,10.607338155000077],[15.1499068600001,10.623125305000073],[15.142258749000119,10.647206523000108],[15.065880981000078,10.793114929000053],[15.063090454000102,10.830761210000091],[15.075596150000107,10.873497620000094],[15.079006795000028,10.898147278000096],[15.072702270000036,10.915768941000081],[15.062470336000047,10.930703430000051],[15.035185181000115,10.994627177000112],[15.028830281000124,11.080218266000145],[15.021232544000043,11.182548523000063],[15.028260539000144,11.24448272700009],[15.033324829000037,11.260269877000084],[15.056372517000087,11.293420309000096],[15.063090454000102,11.309930929000075],[15.062263631000093,11.320033671000118],[15.057819458000068,11.32535634400007],[15.052548462000033,11.32980051700008],[15.0494478760001,11.33726776200011],[15.0494478760001,11.348714091000119],[15.054305461000125,11.364087829000098],[15.060609985000042,11.416125997000035],[15.067017863000075,11.435556335000115],[15.076112915000037,11.453307190000132],[15.122311645000082,11.503226624000092],[15.135644165000114,11.530821838000094],[15.123861938000118,11.56317128500008],[15.095749959000074,11.598156230000086],[15.085207967000114,11.6158812460001],[15.069394979000037,11.660788066000109],[15.066501099000048,11.680631816000101],[15.068258097000097,11.700113831000095],[15.076112915000037,11.721456197000093],[15.079833618000066,11.722593079000106],[15.086344848000124,11.722179668000095],[15.093062785000141,11.722903137000088],[15.097196899000068,11.727657369000083],[15.09595666500013,11.734116923000045],[15.08531132000013,11.744038798000119],[15.083554321000065,11.748172913000147],[15.089135376000087,11.757629700000123],[15.10536177600008,11.772719219000122],[15.110942831000104,11.782899476000082],[15.086344848000124,11.840467021000038],[15.079833618000066,11.851215719000052],[15.062780396000107,11.853489482000072],[15.05099816900011,11.861602681000079],[15.044176880000066,11.877312317000131],[15.042006469000086,11.902375387000047],[15.046967408000114,11.910178528000074],[15.056579224000131,11.918446757000112],[15.063400512000102,11.92728342700012],[15.059369751000105,11.936791891000098],[15.05554569500015,11.942476298000145],[15.050584758000099,11.952863261000076],[15.048310995000094,11.962785136000065],[15.052548462000033,11.967229309000075],[15.0811772050001,11.971673483000075],[15.076836385000123,11.982835592000113],[15.059679809000071,11.997304993000043],[15.0494478760001,12.011929423000112],[15.051204875000082,12.024228414000063],[15.053685343000039,12.031876526000131],[15.053065226000085,12.03802602200011],[15.045727173000074,12.046087545000091],[15.040559529000092,12.055647685000094],[15.040869589000067,12.067584941000135],[15.044590292000064,12.07838531600008],[15.0494478760001,12.084586487000152],[15.03043094900005,12.1009162390001],[15.011827433000065,12.108616028000085],[14.993844035000079,12.106704000000162],[14.976790812000047,12.094146627000057],[14.964801879000106,12.092441305000094],[14.950745890000093,12.103345032000064],[14.928731730000093,12.128614807000119],[14.903100219000121,12.14587473600011],[14.898035929000057,12.152799377000093],[14.894831990000084,12.167372131000148],[14.899896281000053,12.171764629000052],[14.90744104,12.17346995000011],[14.911575154000047,12.180136210000114],[14.910128214000054,12.190368144000104],[14.905890747000088,12.195639140000125],[14.900929809000047,12.20003163600012],[14.898035929000057,12.207473043000048],[14.898035929000057,12.219461976000105],[14.903100219000121,12.236256816000065],[14.90485721900012,12.248400778000075],[14.906304159000115,12.317957255000065],[14.908267863000047,12.326897278000088],[14.891214640000099,12.402654928000075],[14.877468709000084,12.427201233000046],[14.876848592000101,12.431593730000131],[14.878502238000065,12.443065897000068],[14.877468709000084,12.44704498300014],[14.872404419000105,12.450403952000059],[14.865893188000113,12.452574361000131],[14.861862427000117,12.45200592000009],[14.863826131000053,12.44704498300014],[14.855454549000084,12.454538066000083],[14.851010376000088,12.455158183000052],[14.849563436000096,12.457018534000056],[14.850183553000049,12.468128968000073],[14.852043905000075,12.474691875000147],[14.860105428000054,12.490091451000126],[14.863826131000053,12.49546580000009],[14.830753214000081,12.61824900300006],[14.819177694000132,12.638816223000049],[14.786208130000063,12.631219788000081],[14.76884484900006,12.633235168000125],[14.761403443000118,12.64935821600011],[14.758716268000114,12.658815003000086],[14.75210168400011,12.668943583000043],[14.743316691000103,12.677160136000067],[14.734118286000124,12.680415751000055],[14.72884729000009,12.677211812000081],[14.713654419000052,12.652510478000067],[14.70207889800011,12.668995260000145],[14.716755005000095,12.701809795000159],[14.709933716000137,12.718242900000119],[14.694017375000044,12.723720602000114],[14.6644584550001,12.71596913600011],[14.648128703000053,12.725115865000092],[14.641720826000011,12.730903626000071],[14.62425419100006,12.741884867000053],[14.62074019400012,12.747853495000072],[14.620326782000092,12.754054667000062],[14.618363078000073,12.759196472000056],[14.610611613000058,12.762348735000103],[14.603997029000054,12.760798442000095],[14.584876749000074,12.746354879000064],[14.57526493300014,12.744907939000072],[14.570717407000132,12.750385641000065],[14.569373820000067,12.759609884000069],[14.569373820000067,12.769402568000118],[14.560692179000085,12.766224467000157],[14.554801066000094,12.766896261000056],[14.551080363000096,12.771572978000107],[14.54901330600012,12.780461324000044],[14.54901330600012,12.818210958000094],[14.53102990700003,12.836246033000092],[14.500437459000125,12.859112854000102],[14.490102173000109,12.873608094000133],[14.49061893700005,12.886346334000095],[14.506121867000074,12.932079977000129],[14.507672159000094,12.952440491000061],[14.504674927000082,12.969002788000068],[14.496303345000113,12.983808085000078],[14.48214400200007,12.998820089000061],[14.481040720000065,13.000507963000102],[14.435428507000069,13.07028859500008],[14.41816857900008,13.081140646000035],[14.0649084880001,13.077988383000076],[13.836111084000121,13.391044210000032],[13.607313680000061,13.704100037000087],[13.600182332000117,13.735984396000063],[13.59294763200006,13.767842916000106],[13.585816284000117,13.79972727500008],[13.578581583000044,13.83153411900011],[13.571450236000118,13.863418478000085],[13.564318889000075,13.895225321000112],[13.557187541000133,13.927161357000102],[13.549952840000088,13.958994039000046],[13.542821493000133,13.990852559000102],[13.535690145000103,14.022736918000064],[13.528455444000116,14.054517924000095],[13.521324097000104,14.086428121000067],[13.514192749000074,14.118234965000113],[13.506958048000087,14.150119324000073],[13.499723348000117,14.181977845000134],[13.492695353000016,14.213862204000094],[13.482256713000083,14.259776713000079],[13.468304077000084,14.310677999000104],[13.449183797000101,14.380131124000075],[13.44949385500007,14.439042257000082],[13.482256713000083,14.483587341000089],[13.507784872000116,14.495963847000056],[13.543855021000127,14.510562439000111],[13.584369344000038,14.5138180540001],[13.608052035000128,14.518266228000073],[13.62426355000008,14.521311137000042],[13.657853231000102,14.548725484000085],[13.665604695000098,14.566889751000117],[13.666741577000096,14.585519104000085],[13.660333699000148,14.623733826000148],[13.657026407000075,14.629650777000064],[13.64627770900006,14.639055888000115],[13.644727417000126,14.644249369000136],[13.648344767000111,14.649417013000045],[13.668085165000065,14.66287872300009],[13.700021199000048,14.697734477000067],[13.709994751000067,14.705124207000082],[13.730045206000113,14.709645895000106],[13.749165486000093,14.71124786400013],[13.764358358000036,14.71907684300007],[13.773246704000144,14.742512106000033],[13.772006469000104,14.762872620000067],[13.75795048000009,14.805531514000064],[13.753919718000105,14.825943706000102],[13.755159952000042,14.847208558000077],[13.760534302000082,14.866354675000082],[13.77541711400005,14.89743804900013],[13.808076619000104,14.965573426000049],[13.833914836000133,15.019601136000118],[13.862956991000118,15.059056092000047],[13.892825968000125,15.099699605000085],[13.922591593000021,15.140498149000065],[13.95256392400006,15.18121917700013],[13.982329549000069,15.22199188200011],[14.012198527000066,15.262687073000064],[14.04206750500009,15.303433940000046],[14.071833130000073,15.344180806000109],[14.101702108000097,15.384875997000066],[14.131571085000104,15.425545350000121],[14.161440063000015,15.466292216000083],[14.19120568800011,15.507039083000052],[14.221178019000149,15.54773427400002],[14.250943644000131,15.588455303000075],[14.280709269000111,15.629253846000067],[14.310681600000066,15.669949036000022],[14.340447225000046,15.710721741000016],[14.368972615000104,15.749634095000088],[14.423542928000131,15.80632314100009],[14.48214400200007,15.86724965400012],[14.520797973000072,15.907557272000078],[14.57691857900011,15.96579661000001],[14.633142537000081,16.02424265500008],[14.689263143000119,16.082533671000135],[14.745383748000078,16.140876364000093],[14.8014010010001,16.199219056000032],[14.857418253000018,16.257613424000084],[14.913538859000084,16.315904439000033],[14.969659464000102,16.37424713100009],[15.02578007000008,16.43253814800002],[15.081797322000083,16.490880839000084],[15.137917928000121,16.54927520800004],[15.19403853400007,16.607566223000077],[15.25015913900012,16.665908915000045],[15.306279745000067,16.724199931000072],[15.362400350000113,16.78264597600005],[15.418417603000135,16.840885315000065],[15.452420695000086,16.87623199400008],[15.465546509000148,16.89468048100008],[15.468517058000089,16.90490971200012],[15.471954386000107,16.916746318000094],[15.474124797000087,16.94206777000008],[15.478258911000095,16.98769805900008],[15.482289673000109,17.033276672000056],[15.486217082000081,17.078906963000065],[15.490247843000077,17.12453725200004],[15.494278605000147,17.17011586600003],[15.498309367000045,17.21574615500012],[15.502340128000041,17.261376444000035],[15.50637089100013,17.30705841100004],[15.510505005000084,17.352637024000018],[15.51453576600008,17.398267313000105],[15.518566529000053,17.443845927],[15.52259729000005,17.489527893000115],[15.526628051000046,17.53510650700011],[15.530658814000047,17.58073679600011],[15.53468957500013,17.6263670860001],[15.5386169840001,17.672049052000116],[15.542647746000114,17.71767934200011],[15.546781860000122,17.763309631000112],[15.550812622000107,17.808888245000077],[15.554843384000037,17.854570211000095],[15.558874145000116,17.900148825000084],[15.562904907000103,17.945779114000086],[15.566935669000088,17.991409403000088],[15.567697927000012,18.000038560000064],[15.570966430000084,18.03703969400007],[15.574997192000097,18.08264414500007],[15.579027954000082,18.128248597000066],[15.583162068000119,18.173878886000068],[15.587192831000095,18.219483338000146],[15.591120239000075,18.265087789000034],[15.59515100100006,18.31071807900014],[15.599181763000074,18.356348369000045],[15.60321252400007,18.402004496000043],[15.60724328600014,18.447583110000036],[15.611274048000041,18.49323923800003],[15.615304810000055,18.53881785100012],[15.619438924000063,18.584473979000023],[15.623469686000076,18.63007843000011],[15.627500447000072,18.675708720000017],[15.631531209000057,18.721313171000105],[15.635561971000046,18.766943462000086],[15.639592733000141,18.812599589000115],[15.643520141000096,18.85817820300008],[15.647550904000097,18.9038343310001],[15.651581665000093,18.94938710600007],[15.655715779000019,18.995069072000092],[15.659746541000118,19.040647685000067],[15.663777303000103,19.086303813000082],[15.667808064000099,19.131882426000058],[15.6718388270001,19.17753855400005],[15.675869588000097,19.223168844000067],[15.679900349000093,19.268747457000043],[15.683931112000094,19.314403585000065],[15.68796187300009,19.36000803600004],[15.69209598800012,19.405638327000133],[15.696023397000092,19.451242778000022],[15.700054158000084,19.496873068000127],[15.70408492100006,19.542529196000114],[15.708115682000056,19.588107808000103],[15.712146443000051,19.63376393700011],[15.716177206000054,19.679316712000087],[15.720207967000135,19.724998678000105],[15.724342081000058,19.77057729100008],[15.72837284400015,19.816259257000098],[15.732403605000059,19.86183787100009],[15.736020955000127,19.903540751000037],[15.767233521000035,19.982037252000055],[15.78232303800013,20.008030498],[15.822320598000088,20.076992697000065],[15.862318156000073,20.14595489600009],[15.902419067000068,20.214942932000042],[15.942519979000053,20.28395680800008],[15.9629838460001,20.319225973000073],[15.970321899000112,20.33633087100011],[15.968151490000109,20.352815654000096],[15.953992147000065,20.37457143200001],[15.93032434100013,20.399324443000125],[15.872033325000103,20.460199280000065],[15.813845663000079,20.521074117000094],[15.755554647000054,20.582000631000057],[15.697263631000112,20.642875468000113],[15.669461711000052,20.671865946000082],[15.588123006000073,20.73279246000004],[15.570242961000103,20.751912740000137],[15.55608361800006,20.773668519000037],[15.544198039000037,20.798989970000036],[15.536033162000109,20.84405181900007],[15.544301391000147,20.89030222600013],[15.569002727000052,20.92890452100002],[15.609310343000118,20.950660299000045],[15.592773885000044,20.974793192000078],[15.576134073000103,20.99933949800007],[15.559287556000127,21.023782450000084],[15.54254439300007,21.04827707900006],[15.525801229000109,21.072771709000104],[15.50905806500009,21.097266337000065],[15.492211548000085,21.121760966000124],[15.475571737000081,21.14625559500007],[15.458828572000128,21.17075022400013],[15.44198205500007,21.19519317700008],[15.42534224400012,21.21979115800005],[15.408495727000059,21.244234111000083],[15.391752564000114,21.268728739000068],[15.375009400000065,21.293223369000117],[15.358266235000116,21.317717998000063],[15.341419719000042,21.342160950000107],[15.324779907000107,21.36670725500008],[15.301008748000044,21.401330465000086],[15.266592245000085,21.44065623000006],[15.2474719650001,21.453265280000096],[15.200239706000074,21.476467998000086],[15.184530070000108,21.49119578000008],[15.180395955000078,21.507267151000065],[15.180085897000083,21.53346710200009],[15.179775838000097,21.553207500000042],[15.17884566200007,21.605297343000103],[15.177502075000092,21.678987936000027],[15.176055135000098,21.76342722600006],[15.174608195000102,21.847918193000027],[15.173264607000133,21.921557109000045],[15.172437785000113,21.97364695200008],[15.172024373000111,21.993387350000148],[15.164479614000044,22.033694967000088],[15.156314738000047,22.076172994000046],[15.148149861000036,22.11865102200008],[15.13605757600004,22.181334534000115],[15.12406864500008,22.243966370000038],[15.11207971200011,22.306598206000047],[15.099987427000116,22.369281718000078],[15.087998495000077,22.43191355400009],[15.075906210000083,22.49459706700011],[15.064020630000073,22.557177226000135],[15.051928345000078,22.619860739000075],[15.039939413000099,22.68254425100008],[15.02795048000007,22.745176087000118],[15.015858195000078,22.807782084000024],[15.003972616000055,22.870439758000142],[14.991983683000086,22.933097433000086],[14.979909027000131,22.9956637600001],[14.997461385000063,23.003816630000074],[15.055235636000077,23.0299649050001],[15.112906535000034,23.056113180000096],[15.170370728000135,23.082261454000104],[15.228144979000149,23.108358052000085],[15.285815878000106,23.13445465200007],[15.343486775000088,23.160577087000092],[15.401157674000073,23.186751201000078],[15.458828572000128,23.212899476000104],[15.516499471000088,23.23904775000011],[15.574273722000099,23.265196025000108],[15.63194462100006,23.29134430000002],[15.689615520000132,23.317518412000112],[15.747183064000069,23.343640849000025],[15.80485396300014,23.369789124000107],[15.862524862000015,23.39593739800003],[15.920195760000098,23.422033997000113],[15.964637492000065,23.442213644000105],[15.985101359000112,23.44471995100008],[16.076155233000065,23.399632264000047],[16.19976525900006,23.338705750000088],[16.323168579000082,23.277727560000102],[16.446778605000073,23.21672353200003],[16.570285278000114,23.155719503000057],[16.693791951000065,23.094663799000074],[16.81729862500012,23.0336597700001],[16.94090865000004,22.97273325600014],[17.064311971000052,22.911755067000087],[17.187921997000046,22.850751038000084],[17.3114286710001,22.78979868600004],[17.434831991000124,22.728794658000055],[17.5584420160001,22.66776479100008],[17.68194869000007,22.606786601000096],[17.805455363000107,22.545756734000037],[17.928962036000087,22.48477854500007],[18.05246870900004,22.42385203100011],[18.175975383000093,22.36282216500012],[18.29958540800007,22.301843974000064],[18.422988728000117,22.24086578400008],[18.546598755000105,22.179835917000105],[18.670105428000056,22.118806051000035],[18.79361210100012,22.057879537000076],[18.917118774000073,21.996849671000092],[19.040728801000057,21.93587148100002],[19.16413212100008,21.874893290000045],[19.185837030000073,21.86417705900007],[19.287638793000042,21.813915100000088],[19.411145467000097,21.752885234000104],[19.53465214000005,21.6918553670001],[19.658262166000043,21.63087717800005],[19.781665486000065,21.56989898700007],[19.90527551300005,21.50886912100009],[20.028782186000115,21.44794260700004],[20.152288859000066,21.38691274100006],[20.275795532000128,21.325934550000085],[20.399405558000126,21.265008036000037],[20.522808879000134,21.20392649300004],[20.646418904000114,21.142896627000056],[20.769925578000084,21.081970113000096],[20.893328898000107,21.020940247000024],[21.0169389240001,20.95996205700007],[21.140342244000124,20.89903554300011],[21.263952270000118,20.838005677000123],[21.387458944000084,20.777027486000065],[21.510965617000124,20.71604929600008],[21.634472290000105,20.654967754000097],[21.75808231600007,20.593989563000036],[21.88148563700011,20.533063049000077],[22.005095662000084,20.472033183000093],[22.128602335000064,20.411054992000114],[22.252109009,20.350076803000064],[22.37561568200007,20.289124451000077],[22.49912235500011,20.228094584000104],[22.62262902800009,20.167090556000034],[22.746135702000032,20.106060690000046],[22.869642375000097,20.04510833800009],[22.993149047000145,19.984104309000116],[23.11675907400013,19.923151958000062],[23.240162394000066,19.86209625300006],[23.363772420000146,19.801169739000017],[23.487279093000012,19.740165710000042],[23.610785767000067,19.679110006000144],[23.734292440000047,19.618131816000073],[23.857799113000084,19.557179464000114],[23.981305786000036,19.496123759000024]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Togo","sov_a3":"TGO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Togo","adm0_a3":"TGO","geou_dif":0,"geounit":"Togo","gu_a3":"TGO","su_dif":0,"subunit":"Togo","su_a3":"TGO","brk_diff":0,"name":"Togo","name_long":"Togo","brk_a3":"TGO","brk_name":"Togo","brk_group":null,"abbrev":"Togo","postal":"TG","formal_en":"Togolese Republic","formal_fr":"République Togolaise","note_adm0":null,"note_brk":null,"name_sort":"Togo","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":5,"pop_est":6019877,"gdp_md_est":5118,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"TO","iso_a2":"TG","iso_a3":"TGO","iso_n3":"768","un_a3":"768","wb_a2":"TG","wb_a3":"TGO","woe_id":23424965,"woe_id_eh":23424965,"woe_note":"Exact WOE match as country","adm0_a3_is":"TGO","adm0_a3_us":"TGO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TGO.geojson"},"geometry":{"type":"Polygon","coordinates":[[[0.487649373000067,10.93323557600013],[0.612602987000116,10.976566264000098],[0.675338175000149,10.988529358000049],[0.771559692000096,10.99036387200006],[0.901474243000081,10.99274098700009],[0.875842732000137,10.931168518000064],[0.872948853000139,10.91129893000007],[0.875325968000084,10.900524394000044],[0.883697551000068,10.880215556000124],[0.885144490000073,10.869389344000083],[0.869538208000108,10.839907938000067],[0.867574503000071,10.829210917000069],[0.866024210000148,10.806369934000145],[0.862923625000121,10.796086324000072],[0.850004517000116,10.777689514000157],[0.795640910000145,10.72647817000005],[0.781274862000117,10.693043519000069],[0.789233032000084,10.602945659000085],[0.788509562000087,10.563852438000069],[0.773833456000119,10.508145243000127],[0.759880818000113,10.40515411400014],[0.760707642000057,10.382158102000089],[0.768769164000048,10.367094421000104],[0.844423462000094,10.317174988000133],[0.939508097000043,10.254517314000111],[0.997105905000097,10.216553226000087],[1.082238403000105,10.160440369000057],[1.225485473000049,10.0660533650001],[1.331008748000102,9.996471049000107],[1.343824503000093,9.962442119000059],[1.34394169300009,9.95475642000008],[1.345064737000115,9.881103414000066],[1.346925089000109,9.771833598000072],[1.348165324000149,9.694163920000063],[1.356020141000101,9.647474264000081],[1.354573201000107,9.63530446400007],[1.35219608500006,9.625356751000067],[1.352506144000131,9.605280456000116],[1.351265910000109,9.595074362000048],[1.345064737000115,9.582387797000095],[1.327288045000103,9.555309346000044],[1.323153930000075,9.542312724000098],[1.326357869000049,9.521952209000077],[1.33648645000008,9.497509257000033],[1.351265910000109,9.482548930000064],[1.368422485000082,9.490842998000119],[1.379894653000093,9.462472636000115],[1.386715942000137,9.361135152000074],[1.401185343000066,9.321266785000134],[1.4201460190001,9.292317169000071],[1.425266561000115,9.284499003000064],[1.50515832500011,9.201454977000097],[1.567273397000093,9.136730245000107],[1.587840617000097,9.100892639000065],[1.595798787000149,9.076811422000034],[1.601173136000114,9.049526266000115],[1.602826782000051,8.924391785000111],[1.604273722000045,8.815225321000057],[1.605513956000095,8.722491964000142],[1.607204026000119,8.588617302000046],[1.607581014000061,8.558755188000063],[1.609027954000055,8.546972961000066],[1.614092245000109,8.535785014000126],[1.639930461000034,8.503254700000085],[1.644167928000087,8.493487855000126],[1.64044722400007,8.47581451400012],[1.607581014000061,8.421864319000079],[1.60603072100011,8.41338938400007],[1.60603072100011,8.396026103000054],[1.601069784000089,8.371634827000037],[1.603944873000017,8.36747621500011],[1.603963663000059,8.36744903600008],[1.609854777000066,8.365485331000059],[1.61491906700013,8.356261089000057],[1.625564412000131,8.270478210000135],[1.623807414000055,8.155885722000107],[1.621326945000078,7.996567281000111],[1.621947062000061,7.838282369000112],[1.622773885000072,7.640051575000143],[1.622854912000122,7.622459699000046],[1.623251367000051,7.536384757000121],[1.623704060000136,7.438100078000075],[1.624324178000109,7.288806865000113],[1.624944296000081,7.143647767000076],[1.62566776500006,6.996783346000072],[1.607477661000104,6.991408996000103],[1.53192671700009,6.991925761000047],[1.551357055000068,6.920870666000042],[1.562622518000126,6.904282532000124],[1.56422344300006,6.903089389000087],[1.579055623000102,6.8920352170001],[1.58804732300004,6.881234843000072],[1.590114380000102,6.8673338830001],[1.582569620000044,6.825346781000092],[1.583189738000016,6.808267720000046],[1.587530558000111,6.791033631000062],[1.595178670000081,6.770569763000097],[1.601069784000089,6.746436869000135],[1.597039021000086,6.730959778000042],[1.589182290000082,6.720460328000044],[1.574301392000109,6.700574036000091],[1.566033163000071,6.678146465000097],[1.572441040000086,6.666906840000138],[1.58536014800012,6.656442363000095],[1.596315552000078,6.636417745000059],[1.596522257000061,6.628640443000052],[1.59476525800008,6.620268860000067],[1.594145141000098,6.611044617000061],[1.597349081000061,6.600812684000076],[1.603343547000094,6.592596130000046],[1.611198364000131,6.584689636000093],[1.619569946000098,6.577997539000079],[1.62742476400004,6.573346660000111],[1.636829874000085,6.572261454000113],[1.646648397000149,6.573191630000082],[1.653883098000023,6.570659485000093],[1.655226685000088,6.559213156000083],[1.657810506000089,6.552262675000094],[1.674450318000112,6.538594259000077],[1.680754842000027,6.530067648000056],[1.681995077000067,6.520016581000036],[1.67951460800009,6.498570862000093],[1.681685018000081,6.489837545000128],[1.688299601000068,6.48443735800015],[1.709796997000126,6.473404440000066],[1.71837528500015,6.466996561000116],[1.744110148000061,6.425732930000109],[1.763540486000124,6.350647075000111],[1.782350708000138,6.277266541000074],[1.761576782000077,6.276026306000134],[1.633109171000086,6.245692240000096],[1.612438598000068,6.234762675000113],[1.619662500047014,6.21389923179639],[1.619639519000089,6.213893947000144],[1.619313998000052,6.213812567000062],[1.429535352000073,6.181952216000042],[1.271006707000083,6.13373444200009],[1.199554884000094,6.102525132000025],[1.191579623000052,6.10187409100007],[1.185395714380661,6.100490848286995],[1.187968384000044,6.135647278000093],[1.176186157000132,6.151511942000098],[1.093400513000034,6.160917053000062],[1.079654581000113,6.167919210000149],[1.068905883000099,6.180347392000044],[1.055780070000111,6.200630392000051],[1.048131958000056,6.209389547000129],[1.0405871990001,6.213471985000126],[1.033145793000074,6.216546733000072],[1.025187622000118,6.222334493000048],[1.009684692000093,6.24445200600006],[0.983536418000085,6.324602153000129],[0.907262003000056,6.324912211000111],[0.88679813600001,6.330389913000103],[0.87387902800009,6.340130921000139],[0.841322876000049,6.379224142000069],[0.81620813000012,6.395062968000076],[0.766805461000104,6.419350891000079],[0.745721476000085,6.440899963000034],[0.729908488000092,6.465084534000098],[0.717919555000123,6.488829854000059],[0.711718383000033,6.513376160000121],[0.713075710000084,6.533935652000096],[0.713475383000116,6.539989523000145],[0.719779907000117,6.552727763000106],[0.726807902000132,6.562107035000068],[0.727428019000115,6.571434632000091],[0.714612264000039,6.583914490000083],[0.705517212000046,6.585774842000092],[0.677611938000069,6.58489634200015],[0.668206828000109,6.585826518000104],[0.659421834000028,6.601717021000127],[0.645365844000111,6.612026469000128],[0.632240031000038,6.62398956300008],[0.626658976000044,6.644892680000054],[0.635340617000082,6.695380554000081],[0.634307088000099,6.711606954000089],[0.62583215300009,6.727755839000067],[0.611259399000033,6.741527609000116],[0.593792765000103,6.75111358700012],[0.576636190000045,6.754730937000105],[0.570021607000029,6.763515930000082],[0.541082805000087,6.817181906000073],[0.52888716700005,6.826535340000106],[0.519275350000044,6.832245585000067],[0.51607141100007,6.841805725000157],[0.522789347000099,6.862838033000074],[0.543873332000118,6.897926330000104],[0.54625044800008,6.914772847000079],[0.534468221000083,6.935908508000125],[0.506046183000052,6.957819316000083],[0.494574015000126,6.973115540000038],[0.509146769000097,6.977611389000059],[0.523822876000082,6.978696595000144],[0.565990844000055,6.989651998000127],[0.57890995300005,6.996783346000072],[0.598030233000145,7.031199849000117],[0.598753702000039,7.07471140500013],[0.594309530000118,7.119721578000068],[0.597720174000074,7.158892314000113],[0.621801392000094,7.218836975000102],[0.631103149000126,7.265242412000106],[0.644435668000142,7.301932678000085],[0.645675903000097,7.32358510400006],[0.629656209000132,7.389162496000083],[0.623041626000145,7.397895813000062],[0.586248006000062,7.384356588000074],[0.566404256000055,7.380790914000101],[0.548214152000099,7.383271383000078],[0.516691528000138,7.411021627000109],[0.500568481000073,7.455049947000077],[0.495607544000109,7.504297587000067],[0.49943160000015,7.562381897000136],[0.50304895000005,7.574680888000088],[0.509250122000111,7.585377910000091],[0.519378703000086,7.595196432000066],[0.532504517000035,7.601035868000054],[0.548524211000085,7.605376689000124],[0.562063436000074,7.612301331000111],[0.56774784300012,7.625737203000155],[0.567437785000038,7.652919006000046],[0.570538371000083,7.683924866000069],[0.583354126000074,7.704285380000102],[0.612292928000016,7.699427796000081],[0.609502400000054,7.718961487000087],[0.611672811000062,7.771258037000095],[0.60257775900007,7.828412171000124],[0.603404581000092,7.888305155000097],[0.602687912000135,7.893132132000076],[0.592862590000038,7.959308574000089],[0.59368941200006,7.996567281000111],[0.59317264800012,8.015739238000036],[0.583974243000029,8.05304962200006],[0.580253540000115,8.100075175000129],[0.574982544000079,8.124621481000103],[0.579943481000043,8.131701152000133],[0.58779829900007,8.137721456000065],[0.593276001000049,8.150666402000084],[0.591519002000069,8.16448984800013],[0.584594360000096,8.173068136000069],[0.576842895000084,8.180483703000093],[0.572708781000074,8.190999857000051],[0.573845662000082,8.20394480400006],[0.579013305000075,8.207820537000117],[0.586661417000073,8.208750712000068],[0.595032999000125,8.212729797000051],[0.628312622000067,8.242469584000034],[0.645055786000114,8.253424988000106],[0.68918745900001,8.272855326000084],[0.70520715300006,8.282751363000074],[0.712751912000016,8.297970072000112],[0.708824504000063,8.32256805500009],[0.705103801000035,8.325978699000117],[0.693114868000094,8.327890726000135],[0.68918745900001,8.331301371000066],[0.688567342000056,8.336029765000148],[0.689394165000067,8.346054993000081],[0.686913697000108,8.360731100000066],[0.687223755000076,8.372203267000073],[0.685053345000085,8.382564392000091],[0.64670943200008,8.414164530000079],[0.633790324000074,8.452017517000073],[0.616323690000115,8.488759460000054],[0.550797974000119,8.519326070000147],[0.524753052000051,8.538032939000132],[0.500568481000073,8.560176290000058],[0.483515259000029,8.57978749600008],[0.443517700000058,8.60686594700013],[0.403726847000144,8.662082214000137],[0.374426310000104,8.724765727000074],[0.368083532000099,8.76148102500008],[0.365873861000068,8.774271749000121],[0.37266931100001,8.7837543750001],[0.385278361000132,8.786079814000132],[0.397112264000071,8.78153228700009],[0.40780928600006,8.759053039000092],[0.418299601000115,8.77060272200012],[0.424965861000118,8.787320048000069],[0.419591512000068,8.79124745700004],[0.430133504000111,8.794735617000084],[0.439409424000047,8.79344370500013],[0.44951216600009,8.790368957000098],[0.462482951000112,8.788301901000125],[0.473490031000011,8.793547058000058],[0.477004029000057,8.806750386000147],[0.47845096900005,8.822330832000077],[0.483515259000029,8.83481068900008],[0.483629270000051,8.834973182000113],[0.505632771000137,8.866333313000041],[0.493127075000132,8.915219218000118],[0.44488712600014,8.996454570000097],[0.44488712600014,8.99655792200012],[0.444680419000093,8.99655792200012],[0.431270386000051,9.027589620000057],[0.441553996000039,9.058182068000065],[0.458478027000126,9.089239604000099],[0.463749023000076,9.121459859000154],[0.463645671000052,9.137091980000108],[0.469976034000069,9.146729635000028],[0.492610310000089,9.166754253000065],[0.504702595000083,9.187166443000109],[0.504392537000115,9.203108622000045],[0.491990194000039,9.238894551000072],[0.492920370000093,9.258609111000112],[0.501085245000098,9.268195089000116],[0.512350708000071,9.274706320000092],[0.522479288000113,9.285067444000106],[0.526613403000056,9.29765065600013],[0.528267049000078,9.326951193000085],[0.537568807000127,9.377645772000063],[0.531367635000038,9.401106873000046],[0.513280884000039,9.416790670000095],[0.483515259000029,9.426841736000128],[0.482791788000043,9.427875265000111],[0.482585083000089,9.428857117000078],[0.482791788000043,9.429838969000043],[0.489406372000133,9.441026916000082],[0.491680135000138,9.451284689000076],[0.489923136000073,9.461129049000135],[0.483515259000029,9.470017395000069],[0.430443562000107,9.489189351000078],[0.4116591800001,9.492238261000097],[0.371429077000073,9.490016175000093],[0.348949829000077,9.486037089000106],[0.33378279600015,9.479474182000033],[0.328796021000102,9.471567688000079],[0.325747111000055,9.451336365000087],[0.321819702000084,9.442835591000074],[0.314223267000045,9.436479391000148],[0.268489624000011,9.420640564000053],[0.249886109000045,9.416945699000053],[0.231360108000018,9.418961080000088],[0.226812581000075,9.43234527600012],[0.234977458000088,9.44376576700013],[0.227949463000101,9.459733785000068],[0.228052816000115,9.47397064200004],[0.269729858000062,9.482342224000107],[0.285310302000084,9.488362529000142],[0.298100219000048,9.497095845000118],[0.30192427500009,9.507456971000124],[0.293139282000112,9.51828318300008],[0.279005778000055,9.519006653000076],[0.253503459000029,9.514252422000084],[0.243116496000113,9.51869659400009],[0.233220459000023,9.525595398000064],[0.225908244000038,9.531925761000082],[0.223401937000062,9.534793803000069],[0.223066040000077,9.5411758420001],[0.227742757000044,9.569339498000147],[0.230197388000107,9.575747376000095],[0.280530233000093,9.570166321000073],[0.304559774000012,9.571561585000055],[0.322439819000067,9.583137105000091],[0.336159912000085,9.574197082000069],[0.354608398000011,9.571096497000028],[0.370808960000119,9.575644023000065],[0.377733602000092,9.589415792000096],[0.369155314000068,9.610138041000127],[0.349363241000077,9.613910421000055],[0.30879724100015,9.603678488000085],[0.277636352000087,9.606985779000084],[0.261694173000052,9.627940572000071],[0.260970703000055,9.65716359400011],[0.275285075000056,9.68558563300013],[0.30192427500009,9.657835388000093],[0.318719116000068,9.648611145000089],[0.336650838000111,9.650833231000092],[0.347089478000072,9.663158061000047],[0.349880005000017,9.680650534000094],[0.347606242000097,9.698840638000135],[0.342955363000044,9.713542583000034],[0.336289103000126,9.72349029600012],[0.329131918000087,9.731293437000147],[0.323886759000061,9.742067973000074],[0.322439819000067,9.760671489000131],[0.34388553800008,9.838392843000051],[0.344195597000066,9.849761658000133],[0.339673909000055,9.88983673100013],[0.341715128000089,9.903789368000119],[0.349776652000088,9.918956400000141],[0.362592407000079,9.932676493000073],[0.369568726000068,9.938825989000135],[0.370188842000033,9.947016703000159],[0.363393392000091,9.966782938000037],[0.351430297000149,9.99045074500016],[0.349776652000088,9.99716868100009],[0.35174035700004,10.006418763000099],[0.355125163000139,10.012619934000083],[0.355719441000105,10.01897613600012],[0.349776652000088,10.028820496000094],[0.367294962000045,10.032127787000093],[0.382746215000054,10.029595643000107],[0.393908325000098,10.032489522000091],[0.394570260000137,10.035557027000053],[0.398145792000122,10.052126566000124],[0.395148560000024,10.07235789000012],[0.387087036000139,10.078946635000108],[0.376079956000041,10.08158213300004],[0.363393392000091,10.089669495000123],[0.353600708000045,10.115507711000134],[0.358845866000053,10.186330261000094],[0.357192220000115,10.219997457000133],[0.364426920000085,10.23340749100008],[0.367294962000045,10.249814759000046],[0.372049194000056,10.265136821000098],[0.396595500000018,10.28322357200011],[0.376183308000066,10.29994089800006],[0.366597330000076,10.304488424000098],[0.322749878000138,10.29725372300004],[0.30879724100015,10.297098694000084],[0.317582235000145,10.317330017000089],[0.307066081000102,10.33327219600011],[0.290038696000067,10.348490906000052],[0.2788249110001,10.366629333000075],[0.280220174000107,10.375181784000105],[0.283553304000094,10.385775452000074],[0.283114054000094,10.396808370000073],[0.273243856000107,10.406601054000133],[0.263011922000118,10.408926493000067],[0.253942708000068,10.406084290000095],[0.244563436000107,10.401536763000067],[0.233220459000023,10.398617045000066],[0.223608642000016,10.399960632000045],[0.197072795000111,10.410270081000135],[0.194437296000075,10.407376201000147],[0.191750122000144,10.40083913200007],[0.187512654000102,10.394948019000068],[0.179864542000132,10.39417287200007],[0.176970663000134,10.397686869000026],[0.126017700000091,10.491608786000128],[0.110178874000098,10.508248596000058],[0.057262207000122,10.541114808000087],[0.049019816000083,10.55095916800006],[0.0373409420001,10.573180034000103],[0.029434448000046,10.582533468000134],[0.020339396000082,10.588037008000128],[-0.01092484499992,10.598268941000114],[-0.019968220999971,10.604340922000063],[-0.026221069999877,10.610361226000093],[-0.033352416999918,10.615063782000078],[-0.056451781999982,10.618009338000078],[-0.068363199999908,10.62105824800011],[-0.079344441999893,10.62625173000012],[-0.0881294349999,10.63348643000009],[-0.098335530999861,10.654157003000094],[-0.09768957599988,10.675008443000067],[-0.091564479999903,10.700253768000053],[-0.0881294349999,10.714411723000069],[-0.082806762999951,10.75621795700003],[-0.075210326999894,10.773658753000078],[-0.06110266099995,10.791357931000078],[-0.040690470999891,10.805026347000094],[-0.032060505999937,10.813165385000104],[-0.030200154999932,10.823784892000091],[-0.035316120999937,10.843447774000126],[-0.03609126799995,10.853137105000158],[-0.014438842999965,10.953596090000062],[-0.009581257999855,10.963001201000111],[-0.001571410999873,10.971295268000077],[0.007187744000106,10.97679880800007],[0.014189901000123,10.983671774000129],[0.016567017000057,10.996203308000132],[0.019409221000046,11.031627502000061],[0.016205282000072,11.062581686000073],[0.001115763000058,11.085991110000123],[-0.032267211999908,11.098574320000054],[-0.051077432999932,11.098264262000072],[-0.085028849999929,11.089401754000065],[-0.103348144999927,11.08754140300006],[-0.121744954999912,11.092192282000028],[-0.142079630999945,11.103328552000049],[-0.158667764999961,11.118443908000144],[-0.16610917099996,11.134980367000137],[-0.115062219999885,11.124658279000073],[-0.0631180419999,11.11415476500008],[0.05958764600004,11.089401754000065],[0.28755822700009,11.043435567000074],[0.374779215000075,11.025807961000126],[0.486615844000084,11.003205465000136],[0.488786254000075,11.001784363000054],[0.490129842000044,10.999510600000136],[0.49064660600007,10.996358337000075],[0.48930301900009,10.991914165000066],[0.488579549000093,10.98775421200014],[0.487132609000099,10.983671774000129],[0.483618612000072,10.979692688000055],[0.499741658000033,10.975687764000071],[0.487649373000067,10.93323557600013]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Tunisia","sov_a3":"TUN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tunisia","adm0_a3":"TUN","geou_dif":0,"geounit":"Tunisia","gu_a3":"TUN","su_dif":0,"subunit":"Tunisia","su_a3":"TUN","brk_diff":0,"name":"Tunisia","name_long":"Tunisia","brk_a3":"TUN","brk_name":"Tunisia","brk_group":null,"abbrev":"Tun.","postal":"TN","formal_en":"Republic of Tunisia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tunisia","name_alt":null,"mapcolor7":4,"mapcolor8":3,"mapcolor9":3,"mapcolor13":2,"pop_est":10486339,"gdp_md_est":81710,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"TS","iso_a2":"TN","iso_a3":"TUN","iso_n3":"788","un_a3":"788","wb_a2":"TN","wb_a3":"TUN","woe_id":23424967,"woe_id_eh":23424967,"woe_note":"Exact WOE match as country","adm0_a3_is":"TUN","adm0_a3_us":"TUN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"TUN.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[10.929942254000082,33.896307684000035],[10.959727410000085,33.86611562700001],[10.991465691000116,33.841701565000065],[11.010996941000116,33.831610419000114],[11.031097852000073,33.8238792990001],[11.048513217000021,33.81476471600011],[11.06031334700009,33.80072663000006],[10.99398847700013,33.74974192900005],[10.977305535000113,33.74315013200008],[10.971039259000065,33.738714911],[10.966481967000107,33.73041413000011],[10.956716342000078,33.69773997599999],[10.950450066000114,33.69773997599999],[10.953623894000089,33.72418854400014],[10.956716342000078,33.73248932500006],[10.941091342000078,33.72821686400012],[10.92848441600006,33.69663033400012],[10.910529617000122,33.67387880000013],[10.89370934900009,33.65824746900016],[10.887785649000078,33.64014151000008],[10.871056089000092,33.65433343700015],[10.870746171000121,33.67184023500012],[10.876920793000124,33.688217790000024],[10.858994649000065,33.71106080200012],[10.842133009000094,33.717962958],[10.826182488000086,33.72980377800015],[10.808929884000065,33.73432038000011],[10.790349198000058,33.718572065000146],[10.781921657000055,33.70369624300015],[10.76341962400005,33.700162711000175],[10.74015379800008,33.71547769199999],[10.73379115500006,33.730665753000046],[10.727803848000091,33.758180719000094],[10.72831424500012,33.784568203000056],[10.747592736000058,33.81274840200017],[10.735479486000115,33.85375440000017],[10.73601321700005,33.884751695000105],[10.772959832000083,33.896307684000035],[10.854258660000085,33.88165924700003],[10.897797071000099,33.87933991100006],[10.929942254000082,33.896307684000035]]],[[[11.095889400000146,34.64698075100016],[11.0557084000001,34.62096231500006],[11.036498549000072,34.62431056500016],[11.01661217500012,34.63251373900006],[10.98349878600007,34.64591741800011],[10.964121941000144,34.65668366100006],[10.973837248000109,34.66301031900004],[10.987152540000125,34.671779690000065],[11.10132897200009,34.67096588700015],[11.110841855000103,34.659505685000155],[11.095889400000146,34.64698075100016]]],[[[11.280528191000116,34.762884833000086],[11.304795511000123,34.742294447000134],[11.297035294000095,34.72869316500008],[11.199657131000093,34.69471998800013],[11.149096441000097,34.669286710000115],[11.130745834000095,34.66329127900012],[11.122306398000092,34.68042576800012],[11.136155401000053,34.69388767200008],[11.152686646000062,34.70687737000016],[11.170646589000057,34.72859226900009],[11.173119716000144,34.742432779000026],[11.172251904000092,34.7488013590001],[11.173024936000104,34.758002020000035],[11.180948085000097,34.76178175200012],[11.183116082000083,34.752183335000055],[11.19818877500012,34.74401980400016],[11.222110581000093,34.747645010000085],[11.224303473000077,34.77005737600014],[11.217501767000073,34.781615365000064],[11.225252312000066,34.79522196200013],[11.237124579000065,34.80418958600002],[11.245264696000078,34.81496621800015],[11.254270067000107,34.82582242200009],[11.270762566000087,34.81785716400016],[11.299484176000107,34.814178588000075],[11.30417118300005,34.80528897000015],[11.278086785000085,34.79767487200003],[11.274424675000148,34.791734117000104],[11.268239780000073,34.785345770000085],[11.265798373000052,34.77338288000006],[11.274848702000043,34.77037578300012],[11.280528191000116,34.762884833000086]]],[[[9.861175977000102,37.31635163000006],[9.861664259000094,37.271185614],[9.830739780000043,37.251206773000135],[9.792735222000147,37.23802317900008],[9.771820509000094,37.213324286],[9.77507571700005,37.20579661700013],[9.790700717000107,37.178412177000084],[9.795664910000056,37.17234935100008],[9.801524285000113,37.169134833000115],[9.807790561000076,37.15501536700019],[9.815928582000083,37.15184153900013],[9.859711134000037,37.147040106000034],[9.879893425000063,37.15009186400012],[9.902110222000118,37.164862372000115],[9.91431725400011,37.17829010600009],[9.925303582000055,37.19676341400013],[9.924978061000047,37.21312083500013],[9.861175977000102,37.23383209800015],[9.851573113000114,37.23285553600009],[9.831065300000063,37.22772858300006],[9.819590691000116,37.22760651200018],[9.819590691000116,37.23383209800015],[9.84392337300011,37.2474632830001],[9.853526238000084,37.24949778900013],[9.859629754000053,37.254136460000055],[9.863942905000071,37.2590192730001],[9.867442254000139,37.26170482000002],[9.882497592000078,37.263576565000065],[9.979828321000127,37.24603913000011],[9.99781334700009,37.2474632830001],[10.051280144000117,37.26658763200008],[10.059825066000114,37.264837958000086],[10.075856967000107,37.24494049700017],[10.146250847000118,37.23651764500012],[10.17872155000012,37.212713934000035],[10.253103061000104,37.19139232000007],[10.272146030000101,37.178534247000144],[10.240082227000102,37.17177969],[10.225271030000043,37.16673411700016],[10.211273634000094,37.158677476000136],[10.205821160000141,37.17511627800003],[10.17798912900008,37.17796458500008],[10.146006707000083,37.17121002800003],[10.128103061000047,37.158677476000136],[10.135427280000043,37.14232005400011],[10.161631707000083,37.13434479400017],[10.191905144000145,37.133246161000116],[10.211273634000094,37.13760000200001],[10.218190951000082,37.128933010000125],[10.227061394000117,37.117661851000136],[10.230316602000073,37.10809967700014],[10.224375847000147,37.095933335000055],[10.21753991000014,37.11029694200012],[10.174327019000117,37.07623932500012],[10.182383660000085,37.027044989],[10.220062696000042,36.976629950000174],[10.265879754000139,36.938910223],[10.303233269000087,36.92438385600015],[10.313731316000087,36.918443101000136],[10.33700605600009,36.89183177299999],[10.34717858200014,36.88027578300007],[10.341970248000052,36.868597723000065],[10.319021030000044,36.85024648600002],[10.309336785000085,36.82977936400005],[10.298838738000114,36.8217634140001],[10.285166863000086,36.819973049000126],[10.272146030000101,36.82908763200011],[10.279551629000082,36.84430573100009],[10.270192905000043,36.84845612200003],[10.252940300000148,36.84634023600002],[10.220469597000147,36.837795315],[10.210703972000118,36.83185455900018],[10.193614129000082,36.81232330900009],[10.188487175000148,36.797593492000104],[10.202891472000118,36.792629299000154],[10.234222852000073,36.79189687700004],[10.247243686000076,36.78628164300012],[10.253916863000114,36.791449286000116],[10.257009311000104,36.79385000200006],[10.272146030000101,36.816066799000126],[10.293630405000043,36.77773672100001],[10.320078972000088,36.748765367000104],[10.35531660200013,36.73118724200015],[10.4030054050001,36.726711330000015],[10.416758660000113,36.729559637000065],[10.436995327000119,36.72883941200014],[10.487727274000092,36.749651543000155],[10.518713489000078,36.75579672600013],[10.538232868000136,36.772025910000096],[10.546049949000064,36.799921159000135],[10.552598455000094,36.8229206540001],[10.566905144000089,36.86322663000011],[10.584971550000091,36.876166083000115],[10.6061304050001,36.87970612200009],[10.652598504000139,36.87689850500006],[10.694672071000099,36.88344961100013],[10.733465667000132,36.895812251],[10.783205036000112,36.92441792600012],[10.813975457000112,36.950384833000136],[10.823090040000096,36.95392487200003],[10.826914910000113,36.96320221600017],[10.830088738000086,36.9682477890001],[10.887543165000068,37.00600820500007],[10.89584394600007,37.014105536],[10.898448113000141,37.025213934000035],[10.894704623000107,37.03217194200011],[10.89291425900012,37.03864166900003],[10.902110222000118,37.04881419500008],[10.923675977000102,37.05703359600006],[10.97413170700014,37.06126536700016],[11.01270592500012,37.08478424700006],[11.033376498000024,37.08746979400003],[11.051036004000139,37.080308335000076],[11.06031334700009,37.062486070000105],[11.058929884000122,37.053900458],[11.048594597000118,37.04197825700005],[11.046071811000104,37.03143952000009],[11.048350457000055,37.020331122000144],[11.058116082000112,37.00600820500007],[11.06031334700009,36.99701569200015],[11.06397545700014,36.99005768400015],[11.081309441000144,36.96938711100013],[11.08773847700013,36.95941803600006],[11.09009850400011,36.949611721000124],[11.091807488000113,36.92820872600007],[11.094493035000085,36.918443101000136],[11.099131707000112,36.91058991100006],[11.105967644000117,36.90159739800013],[11.113129102000073,36.894232489000146],[11.118418816000142,36.891180731000055],[11.124278191000087,36.88568756700012],[11.136226578000077,36.8705301210001],[11.130545149000113,36.854038798000104],[11.11676691200006,36.83841187700013],[11.076735226000011,36.82518839800015],[11.022139533000114,36.78827607500001],[10.992547829000046,36.74406445600009],[10.949929815000047,36.69387774100004],[10.879519360000103,36.58847499400015],[10.825662358000045,36.479810783000104],[10.799928575000138,36.451885235000034],[10.717153534000118,36.43455123600013],[10.620440907000045,36.39028039700018],[10.58556436900011,36.398132016000105],[10.550928289000126,36.37725579600014],[10.519085115000081,36.33747245900004],[10.504844912000124,36.29935472200019],[10.491067929000081,36.25806564200009],[10.479266895000137,36.2169619970001],[10.476855707000112,36.16552186000017],[10.474694877000102,36.11248595799999],[10.479527532000105,36.07932730400002],[10.49239345400008,36.04534081400011],[10.499847852000102,36.027289130000085],[10.504730665000068,36.02094147300012],[10.50912519600007,36.011175848],[10.514821811000047,35.989081122000115],[10.518565300000148,35.97996653900013],[10.540537957000083,35.952826239],[10.556488477000102,35.937974351000136],[10.570323113000086,35.93158600500011],[10.582286004000109,35.921820380000085],[10.608571811000047,35.855861721000124],[10.62208092500012,35.842596747000115],[10.691335483000072,35.789618231000176],[10.693695509000122,35.787787177],[10.713063998000052,35.779242255000085],[10.74361966300006,35.76967207600013],[10.803721550000091,35.78693268400009],[10.813812696000127,35.784979559000064],[10.823090040000096,35.780462958],[10.841420439000101,35.76654761700017],[10.830339690000045,35.75323354400017],[10.824522355000113,35.73338913400012],[10.829600457000083,35.71312083500008],[10.841156446000099,35.698797919000086],[10.881521030000073,35.68301015800013],[10.971815894000116,35.6541381140001],[11.01197350400008,35.65790436400005],[11.040998050000042,35.63773038300009],[11.05502162400012,35.6144763220001],[11.017100457000083,35.60228099200013],[11.01197350400008,35.579046942],[11.013926629000139,35.562892971000124],[11.014903191000116,35.555161851000136],[11.023936394000115,35.533758856000176],[11.03923587300008,35.51850006700012],[11.085057411000093,35.50678542100012],[11.057689731000096,35.48673347200012],[11.050666014000086,35.45978174600016],[11.045530315000063,35.434754664000124],[11.049412181000065,35.39125527200012],[11.037187780000068,35.37082139200005],[11.042232667000064,35.33443539400004],[11.06589055200007,35.3032683660001],[11.10132897200009,35.26683177300005],[11.122080925000091,35.25364817900011],[11.147103928000092,35.24400540100011],[11.160781762000084,35.23823213999999],[11.15915960600006,35.21875708700004],[11.131352161000079,35.21795904300011],[11.111577776000047,35.20559467000008],[11.09231553000012,35.17393878500009],[11.062912201000103,35.15363892500001],[11.04883026400006,35.13122335900012],[11.03499027400008,35.107055576000114],[11.015879754000082,35.09284088700012],[11.022452540000074,35.06450230800009],[11.018105253000101,35.034190914000064],[10.984366015000148,34.999413969000116],[10.945862975000097,34.983531199000126],[10.917653842000107,34.95742422100007],[10.924951137000106,34.934121989000076],[10.916514519000089,34.91331614800008],[10.916335641000101,34.87356914000004],[10.875498894000144,34.84906647300012],[10.866709832000112,34.84125397300015],[10.860362175000148,34.83681875200007],[10.856293165000096,34.830877997000144],[10.86735762800015,34.81103313700005],[10.871421001000071,34.797366971000045],[10.834884905000079,34.78339816000014],[10.811262290000059,34.76888012300019],[10.779042135000111,34.739501375000046],[10.763468906000128,34.71344816],[10.7439884770001,34.69867584800015],[10.734711134000065,34.68085358300005],[10.717295769000089,34.664740302],[10.701182488000114,34.65595123900012],[10.634287957000083,34.637884833000115],[10.625254754000082,34.63324616100009],[10.621429884000065,34.62628815300009],[10.619883660000113,34.61587148600002],[10.615000847000147,34.60358307500014],[10.607432488000113,34.59332916900003],[10.605709539000088,34.57366825200016],[10.598751836000133,34.56245346500013],[10.597023266000093,34.544713234000184],[10.58161459900009,34.532679159000125],[10.559376362000107,34.52349048900014],[10.465993686000047,34.51194896000005],[10.43189537900011,34.49632396000008],[10.378723611000082,34.42308031500009],[10.33041425900012,34.41258372600005],[10.320485873000107,34.413234768],[10.311289910000141,34.416815497000165],[10.300059441000144,34.41771067900008],[10.288096550000091,34.41400788000011],[10.281993035000113,34.40888092700011],[10.278005405000044,34.402736721000124],[10.256602410000085,34.37909577],[10.247243686000076,34.37213776200012],[10.234222852000073,34.36933014500006],[10.186778191000144,34.35195547100009],[10.1666772800001,34.33881256700012],[10.126719597000147,34.325628973000065],[10.102161376000083,34.30407494400005],[10.08977840300011,34.27297450300004],[10.054033834000052,34.21316323500015],[10.032777141000109,34.184654922],[10.018809441000116,34.18056875200012],[10.010264519000087,34.17316315300015],[10.010101759000122,34.17308177299999],[10.00521894600007,34.17064036700005],[10.014659050000091,34.15338776200003],[10.018402540000125,34.13349030200014],[10.018239780000073,34.09153880400005],[10.021494988000113,34.07330963700015],[10.03614342500012,34.03449127800015],[10.039317254000082,34.01609935100011],[10.048838738000086,33.98346588700015],[10.071299675000091,33.94623444200008],[10.16309655000012,33.83624909100003],[10.172699415000094,33.82807038000011],[10.186859571000127,33.82176341400016],[10.330251498000052,33.702826239],[10.367686394000089,33.684068101000044],[10.446055535000141,33.655422268000066],[10.460215691000087,33.65269603100002],[10.489268425000148,33.6471214860001],[10.558372869000037,33.655721120000024],[10.634071727000048,33.67362765800014],[10.697618425000087,33.70259674300003],[10.71664472700013,33.70693594000015],[10.739991963000106,33.671578426000124],[10.736923596000052,33.60285031400012],[10.707530144000145,33.581691799000126],[10.691416863000057,33.57611725500011],[10.679047071000127,33.562567450000145],[10.674082879000082,33.54559967699999],[10.67994225400011,33.529852606000034],[10.703623894000145,33.49603913000006],[10.717133009000122,33.48354726800015],[10.738129102000073,33.47801341400013],[10.780528191000142,33.48574453300013],[10.856211785000113,33.52431875200001],[10.892263217000078,33.533270575000145],[10.909434441000116,33.539618231000176],[10.92514082100007,33.55508047100001],[10.932790561000104,33.57404205900012],[10.926280144000117,33.59125397300012],[10.909190300000148,33.60785553600009],[10.906504754000082,33.616441148000014],[10.936208530000101,33.636297919000114],[10.947927280000101,33.629461981000176],[10.960622592000078,33.62767161700019],[10.971446160000141,33.63190338700012],[10.97787519600007,33.64313385600012],[10.98462975400011,33.64313385600012],[11.0006616550001,33.6341820330001],[11.04281660200013,33.617865302000084],[11.06031334700009,33.60834381700006],[11.073578321000127,33.59446849200016],[11.108164910000113,33.549627997000144],[11.111582879000139,33.54002513199999],[11.116621178000088,33.48997283000013],[11.089929354000049,33.45414871200016],[11.110783424000147,33.39297046800006],[11.10207367500007,33.36408087500017],[11.13111412900011,33.37152741100009],[11.150889519000117,33.353949286000145],[11.170664910000141,33.33177317900008],[11.193858269000087,33.320990302000084],[11.217784050000148,33.31631094000015],[11.269053582000083,33.29425690300015],[11.293711785000085,33.28681061400009],[11.287364129000139,33.28204987200009],[11.284434441000116,33.28082916900017],[11.280039910000141,33.28001536700005],[11.181895379000139,33.30678945500016],[11.133636915000125,33.3114281270001],[11.121836785000141,33.28001536700005],[11.131521030000101,33.26805247600011],[11.147715691000059,33.256903387000094],[11.163340691000142,33.242621161000024],[11.170176629000082,33.22101471600011],[11.179535352000102,33.211086330000015],[11.201508009000122,33.21116771],[11.245371941000059,33.21792226800012],[11.28785241000014,33.21010976800012],[11.372243686000104,33.18378327000011],[11.416758660000113,33.18378327000011],[11.433116082000112,33.19354889500006],[11.427582227000102,33.20701732000005],[11.410655144000117,33.21893952000009],[11.392751498000052,33.22410716400019],[11.381358269000089,33.23069896000008],[11.36744225400011,33.245266018],[11.351898634000122,33.25885651200015],[11.442393425000061,33.204657294000086],[11.497813347000147,33.18268463700018],[11.504567905000073,33.181341864],[11.505111802985226,33.18122531472808],[11.506046590000038,33.13637644500012],[11.47741784700014,33.04121429500016],[11.474937378000078,33.025840556],[11.474420613000033,32.96987498],[11.456540567000076,32.90210133900016],[11.463775268000063,32.798464254000024],[11.449202514000092,32.69301849400007],[11.449925985000078,32.63795725500002],[11.47038985200004,32.59927744600019],[11.537362508000058,32.543518575000135],[11.560616903000067,32.50757761600009],[11.564130900000121,32.46548716300005],[11.54635420700009,32.43427459800016],[11.52608543700009,32.41786270300015],[11.513901408000066,32.407997131000045],[11.444034871000099,32.36849049900009],[11.182341254000107,32.262223369000125],[10.873217,32.13669586200011],[10.845931844000091,32.111787822000124],[10.805624227000123,32.03236114500005],[10.77286136900011,32.00450754899999],[10.736584513000082,31.985387269000096],[10.703098185000073,31.96218455000009],[10.683564493000063,31.95701690700018],[10.665271036000092,31.96321807900007],[10.647287638000108,31.971951396000136],[10.628477417000084,31.97412180600004],[10.605946492000072,31.95360626300005],[10.597574910000105,31.873507792],[10.584552449000057,31.840279846000083],[10.542384480000095,31.806638489000033],[10.525537963000119,31.77206695600013],[10.513549031000082,31.757029114000044],[10.498872924000068,31.744316711000106],[10.482543172000135,31.73310292500007],[10.427766154000068,31.71460276300003],[10.315421590000142,31.715842997000053],[10.263951863000045,31.680496318000152],[10.196462442000097,31.578590393000166],[10.132590373000141,31.5175605270001],[10.116880737000088,31.4944094850001],[10.106235392000087,31.429193828000066],[10.10809574400011,31.411830547000147],[10.18271651200007,31.240781556000073],[10.213205607000077,31.13536163300013],[10.244831584000053,31.07815582300019],[10.246175171000118,31.059552307000143],[10.240594116000096,31.021156719000103],[10.24503828900012,30.985706686000167],[10.270153036000124,30.915633443000143],[10.269739624000124,30.882147115000137],[10.25392663600013,30.841787821000153],[10.192224976000148,30.731251933000138],[10.101171101000118,30.64169667600011],[9.995647827000141,30.49452219600012],[9.871314331000065,30.355150859000144],[9.845786174000125,30.34228342700005],[9.772922404000042,30.338097636000114],[9.743466838000131,30.33132802400017],[9.519707885000114,30.22890533500005],[9.491389201000032,30.33897613500015],[9.46307051600013,30.44904693700006],[9.434751831000142,30.55906606000015],[9.406329793000111,30.669085185000043],[9.377907756000099,30.77915598500006],[9.34958907000012,30.889175110000153],[9.321270386000037,30.99924591100016],[9.292951701000106,31.10931671200016],[9.26442631100008,31.219335836000155],[9.236210978000116,31.329406637000165],[9.207788941000075,31.439425761000148],[9.179470255000098,31.549496562000158],[9.1511515710001,31.65956736300016],[9.122729533000069,31.76953481000005],[9.094514201000095,31.87960561100006],[9.065988810000135,31.989676412000062],[9.063303822000137,32.00019151300002],[9.045008179000149,32.071841940000084],[9.033742716000091,32.09075551400004],[9.01989343300005,32.104863180000066],[8.851531616000074,32.20824188200005],[8.642345419000065,32.33665781700013],[8.482665242000053,32.43479136200001],[8.35998539200011,32.5010147090001],[8.33262728000011,32.52635540700008],[8.331253296000112,32.52762807200013],[8.31957442200013,32.56059763600008],[8.309962606000056,32.66387298600013],[8.296423381000068,32.80440704300004],[8.28288415600008,32.836368917000115],[8.181391642000108,32.96982330300007],[8.086823771000097,33.094285991],[8.064499552000143,33.10578399700001],[8.043622274000084,33.10183074900014],[8.022641642000082,33.10304514600007],[8.00217777500012,33.10836781900012],[7.982747437000113,33.11681691500011],[7.871953166000111,33.184125468],[7.835469604000109,33.194538269000034],[7.787513875000087,33.19831064900016],[7.750720255000089,33.20766408300001],[7.724985392000092,33.23140940400005],[7.709689168000125,33.27815073700005],[7.708286223000131,33.410703984000165],[7.70824222800013,33.41486073800009],[7.693152709000059,33.45410898900015],[7.616568237000139,33.56596262600006],[7.553006225000075,33.65874766100016],[7.544427938000125,33.684249980000104],[7.534196004000136,33.73623647100011],[7.505463908000137,33.78284861300007],[7.49853926600008,33.79997935000013],[7.484896688000077,33.85501475000008],[7.479832398000098,33.89390126500014],[7.500606323000113,33.99425689800002],[7.503706909000073,34.06797332800015],[7.517452840000118,34.0950259400001],[7.539228219000051,34.113757839000115],[7.579567911000083,34.14845937200012],[7.604062541000132,34.17548614500008],[7.631451049000077,34.19910227500015],[7.670311727000126,34.21530283599999],[7.733873738000113,34.22377777100009],[7.752787313000057,34.23214935300014],[7.765293009000061,34.244706726000075],[7.774284709000086,34.260958964000096],[7.811905151000104,34.37927215600003],[7.831542195000053,34.41438629200017],[7.870609579000075,34.43789906800007],[7.957322632000114,34.469421692000125],[7.999077189000076,34.494174703000155],[8.094058472000086,34.53014150000003],[8.102483160000105,34.53635470800013],[8.143667846000142,34.56672841400017],[8.167232300000137,34.57856231699999],[8.175190470000103,34.58528025300011],[8.179531291000103,34.59215321900016],[8.186559286000119,34.60956817600011],[8.19286381000012,34.61773305300012],[8.228830607000106,34.63643992200009],[8.236478719000075,34.647653708000135],[8.21064050300015,34.68119171200006],[8.213431030000095,34.69674631800008],[8.22521325700012,34.71168080700015],[8.257355997000047,34.73974111000016],[8.258714460000107,34.7412980000001],[8.266554403000043,34.75028310200004],[8.269344930000102,34.763874003000026],[8.25074141400006,34.86474639900014],[8.248881062000123,34.90195343100005],[8.259009644000088,34.94065907900007],[8.28288415600008,34.994040833000085],[8.300454142000147,35.06767974899999],[8.313683309000055,35.10307810500011],[8.360915568000081,35.14591786800004],[8.42137699300011,35.22208892900012],[8.431298869000102,35.24172597300016],[8.396882365000067,35.26368845700013],[8.35523116100012,35.27433380200013],[8.317404012000054,35.28947499600003],[8.294356323000102,35.325080058000125],[8.287948446000144,35.36605946900015],[8.2900155020001,35.40259470600007],[8.300867553000074,35.437476299000146],[8.336730997000103,35.508376363000124],[8.33704105600009,35.53793528300007],[8.327225481000113,35.62140542800002],[8.323605184000144,35.652191874],[8.30655196100011,35.684903056000095],[8.257666057000023,35.75032541900005],[8.245780477000094,35.78531036400007],[8.241439656000125,35.827736715000086],[8.24722741700009,35.90731842100011],[8.268423401000064,35.96986394800008],[8.272445516000062,35.98173248300013],[8.27564945500012,36.0368195600001],[8.296733439000148,36.11040680000009],[8.307998901000104,36.12699493400002],[8.317093953000066,36.14590850900014],[8.314510132000066,36.16394358300015],[8.307068726000068,36.18249542299999],[8.302314494000143,36.20233917200006],[8.307068726000068,36.24362864200019],[8.354404338000109,36.35090891500015],[8.355423113000114,36.35611598600012],[8.358125041000108,36.369925843000104],[8.35967533300004,36.411215312000124],[8.357711629000107,36.43038726800013],[8.349236695000116,36.44878407800003],[8.333837118000133,36.456380514],[8.314923543000077,36.460617982000045],[8.295596557000124,36.46867950400003],[8.208780151000042,36.47782623300013],[8.16785241700012,36.49136545900011],[8.167890169000145,36.49199497900004],[8.169919474000096,36.52583363900008],[8.1934839270001,36.54898468100005],[8.222319376000113,36.56376414000009],[8.286914917000075,36.583401184000095],[8.40794112100005,36.64262237600009],[8.430368693000048,36.66262115500005],[8.453209676000142,36.69765777600007],[8.461787964000079,36.732797750000096],[8.441634155000115,36.753209941000065],[8.406700887000113,36.767989400000154],[8.41310876500006,36.7839057420001],[8.444011271000049,36.79620473300003],[8.482665242000053,36.79997711300014],[8.520078979000116,36.797910055],[8.554495483000066,36.80364613900015],[8.623845255000106,36.82607371100015],[8.641725301000093,36.836357321000136],[8.642552124000105,36.84850128200004],[8.608238973000084,36.89072092700012],[8.604828329000071,36.900978699000106],[8.605655151000093,36.91304514600007],[8.602510428642177,36.93951076347061],[8.602549675000091,36.939520575000145],[8.621104363000086,36.94578685100011],[8.692149285000141,36.96938711100013],[8.71656334700009,36.973089911],[8.802012566000116,36.973089911],[8.82439212300005,36.97947825700011],[8.865733269000089,37.00763580900009],[8.896006707000083,37.01886627800009],[8.903656446000099,37.02167389500015],[8.925791863000086,37.03888580900015],[8.956879102000073,37.06928131700012],[8.98764082100007,37.11684804900004],[9.000987175000063,37.12396881700006],[9.01075280000012,37.12783437700007],[9.03874759200005,37.15184153900013],[9.049327019000089,37.156968492000125],[9.079437696000127,37.166815497000144],[9.159190300000148,37.19281647300012],[9.17139733200014,37.19879791900014],[9.192393425000091,37.22614166900003],[9.210703972000147,37.23383209800015],[9.342539910000113,37.23533763199999],[9.3807072270001,37.2474632830001],[9.40512129000004,37.26850006700012],[9.419118686000104,37.275824286000116],[9.432627800000091,37.27138906500015],[9.442881707000112,37.26654694200009],[9.453868035000056,37.26829661700016],[9.464528842000107,37.27244700700011],[9.49390709700009,37.27814362200009],[9.51734459700009,37.286688544000114],[9.53858483200014,37.298000393],[9.552744988000086,37.30951569200012],[9.573090040000068,37.30023834800009],[9.591481967000107,37.30292389500006],[9.628428582000083,37.32314687700007],[9.64926191500004,37.33185455900015],[9.66627037900011,37.335435289000124],[9.710297071000127,37.336167710000055],[9.732432488000086,37.343329169000114],[9.744639519000089,37.34520091400016],[9.755137566000142,37.33991120000009],[9.763194207000083,37.333644924000154],[9.773448113000113,37.33051178600009],[9.85889733200014,37.32880280200008],[9.859060092000105,37.325873114000146],[9.861175977000102,37.31635163000006]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"United Republic of Tanzania","sov_a3":"TZA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"United Republic of Tanzania","adm0_a3":"TZA","geou_dif":0,"geounit":"Tanzania","gu_a3":"TZA","su_dif":0,"subunit":"Tanzania","su_a3":"TZA","brk_diff":0,"name":"Tanzania","name_long":"Tanzania","brk_a3":"TZA","brk_name":"Tanzania","brk_group":null,"abbrev":"Tanz.","postal":"TZ","formal_en":"United Republic of Tanzania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tanzania","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":2,"pop_est":41048532,"gdp_md_est":54250,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"TZ","iso_a2":"TZ","iso_a3":"TZA","iso_n3":"834","un_a3":"834","wb_a2":"TZ","wb_a3":"TZA","woe_id":23424973,"woe_id_eh":23424973,"woe_note":"Exact WOE match as country","adm0_a3_is":"TZA","adm0_a3_us":"TZA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"TZA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[39.74916454600012,-8.065492432999873],[39.71943949300007,-8.092571979999931],[39.70279590600009,-8.091392800999884],[39.696852745000086,-8.074907909999894],[39.7027999900001,-8.049004459999892],[39.71469191500009,-8.0278092719999],[39.74203958200005,-7.994825358999905],[39.774144289000134,-7.991282750999886],[39.79673735700007,-7.992453303999837],[39.801492398000136,-8.006587496999842],[39.790786252000174,-8.019550418999842],[39.74916454600012,-8.065492432999873]]],[[[39.89340254000015,-7.754082940999879],[39.864919467000135,-7.819024346999853],[39.851573113000114,-7.83709075299987],[39.84961998800017,-7.844496351999864],[39.84978274800014,-7.850844007999883],[39.84848066500009,-7.857354424999883],[39.8416447270001,-7.877862237999834],[39.838633660000106,-7.883233330999885],[39.8299259770001,-7.894952080999885],[39.82813561300023,-7.902032158999844],[39.82325280000006,-7.913995049999869],[39.811371290000096,-7.913995049999869],[39.78370201900012,-7.905857028999861],[39.75464928500011,-7.915297132999868],[39.741953972000175,-7.936944268999866],[39.73585045700011,-7.95989348799985],[39.726328972000175,-7.973402601999837],[39.686778191000116,-7.988864841999856],[39.66651451900022,-7.993422132999896],[39.649912957000055,-7.993910414999873],[39.62973066500015,-7.985772393999867],[39.603282097000175,-7.957696221999867],[39.587168816000116,-7.945489190999879],[39.596527540000146,-7.943291924999897],[39.613454623000194,-7.942640882999853],[39.621918165000146,-7.939222914999931],[39.62208092500012,-7.936455987999878],[39.624685092000135,-7.929294528999932],[39.62794030000006,-7.922784112999849],[39.62940514400023,-7.922539971999895],[39.631683790000096,-7.91497161299985],[39.63738040500019,-7.913181247999859],[39.644216342000185,-7.913669528999846],[39.649912957000055,-7.911879164999861],[39.69304446700019,-7.870293877999885],[39.70753014400023,-7.847426039999873],[39.69825280000012,-7.836195570999877],[39.70386803500011,-7.819431247999859],[39.71534264400023,-7.811618747999874],[39.73096764400012,-7.809502862999863],[39.74927819100017,-7.809665622999916],[39.765961134000094,-7.806329033999887],[39.797211134000094,-7.791924737999835],[39.81430097700016,-7.788506768999823],[39.80876712300019,-7.780450127999885],[39.79932701900012,-7.778985283999829],[39.773448113000114,-7.781670830999899],[39.773448113000114,-7.77548593499992],[39.785492384000094,-7.772556247999901],[39.79607181100007,-7.767022393999881],[39.81430097700016,-7.754327080999829],[39.835703972000175,-7.745538018999866],[39.844899936000076,-7.737725518999867],[39.85181725400017,-7.712090752999899],[39.85987389400012,-7.697198174999855],[39.86980228000019,-7.684177341999856],[39.87867272200006,-7.67864348799985],[39.88355553500011,-7.673435153999847],[39.893728061000076,-7.647637627999828],[39.89568118600019,-7.637627862999835],[39.91098066500015,-7.654473565999837],[39.90935306100002,-7.686700127999869],[39.89340254000015,-7.754082940999879]]],[[[39.23786221900011,-5.856047416999871],[39.22547944700008,-5.858786935999873],[39.214469664,-5.858106438999882],[39.212396425000094,-5.843742043999924],[39.21444891500019,-5.825955824999909],[39.21718089700019,-5.797906566999828],[39.21441173400015,-5.777379968999824],[39.22610377300012,-5.769169180999924],[39.22542619900011,-5.782854045999868],[39.23025897300013,-5.800642367999885],[39.23852092200016,-5.812955063999893],[39.23164807400022,-5.82321674299986],[39.2378484380001,-5.836211856999853],[39.23786221900011,-5.856047416999871]]],[[[39.35743248800006,-5.912041924999869],[39.36622155000012,-5.940524997999887],[39.368011915000096,-5.955254815999878],[39.372569207000055,-5.970798434999877],[39.39177493600013,-6.00221119599982],[39.40284264400023,-6.048028252999898],[39.40894616000011,-6.051527601999808],[39.43018639400023,-6.054864190999822],[39.432383660000106,-6.068291924999826],[39.429860873000194,-6.080498955999886],[39.42554772200012,-6.092868747999916],[39.42335045700011,-6.106377862999892],[39.423838738000114,-6.12232838299981],[39.42579186300023,-6.134454033999901],[39.429860873000194,-6.145603122999915],[39.437022332000225,-6.157891533999873],[39.425059441000116,-6.172621351999865],[39.419932488000114,-6.180759372999886],[39.41651451900012,-6.192071221999868],[39.431000196000156,-6.185967705999886],[39.43995201900006,-6.192071221999868],[39.4475203790001,-6.203301690999865],[39.45753014400012,-6.212009372999859],[39.458262566000116,-6.197198174999883],[39.464854363000114,-6.187432549999841],[39.47291100400011,-6.186700127999913],[39.4778751960001,-6.198907158999886],[39.48243248800023,-6.198337497999916],[39.48365319100017,-6.197686455999872],[39.48365319100017,-6.195977471999868],[39.48487389400006,-6.192071221999868],[39.50098717500006,-6.19622161299982],[39.50114993600018,-6.175388278999918],[39.496429884000094,-6.145684502999899],[39.49854576900012,-6.123793226999865],[39.515961134000094,-6.146661065999878],[39.52491295700011,-6.175062757999811],[39.54346764400012,-6.321221612999878],[39.54712975400017,-6.330254815999893],[39.574066602000094,-6.377618096999839],[39.56950931100019,-6.420830987999834],[39.5442814460001,-6.450860283999873],[39.50847415500013,-6.462823174999912],[39.47169030000012,-6.452080987999892],[39.457204623000074,-6.439141533999887],[39.443695509000094,-6.421563408999859],[39.43392988400015,-6.401543877999885],[39.41423587300014,-6.316338799999912],[39.41651451900012,-6.301364841999869],[39.39405358200011,-6.30820077899989],[39.39421634200008,-6.319024346999882],[39.40357506600017,-6.332207940999837],[39.40967858200005,-6.345798434999892],[39.40845787900017,-6.368259372999887],[39.40357506600017,-6.373711846999838],[39.37566165500007,-6.363376559999921],[39.38005618600002,-6.344170830999872],[39.374359571000156,-6.328789971999839],[39.34831790500019,-6.301364841999869],[39.31690514400023,-6.253024997999859],[39.308116082000055,-6.245700778999861],[39.30046634200008,-6.239353122999916],[39.286875847000175,-6.246758721999825],[39.286875847000175,-6.254082940999822],[39.29273522200006,-6.254978122999901],[39.29346764400005,-6.257907809999921],[39.29265384200008,-6.262302341999913],[39.29371178500011,-6.267754815999851],[39.28028405000012,-6.258477471999896],[39.27605228000019,-6.274102471999882],[39.27955162900011,-6.296644789999874],[39.290293816000116,-6.30820077899989],[39.28785241000017,-6.309502862999892],[39.28630618600002,-6.311700127999885],[39.282481316000116,-6.312188408999873],[39.273203972000054,-6.30820077899989],[39.26417076900022,-6.30242278399983],[39.260752800000056,-6.298597914999917],[39.25847415500007,-6.294528903999861],[39.20801842500006,-6.236504815999879],[39.1985783210001,-6.220798434999921],[39.18580162900017,-6.175876559999907],[39.177012566000116,-6.157891533999873],[39.212901238000114,-6.114190362999892],[39.20476321700019,-6.056410414999859],[39.18620853000019,-5.994317315999837],[39.190603061000076,-5.938164971999839],[39.18946373800023,-5.925957940999851],[39.19044030000012,-5.914239190999865],[39.19320722700016,-5.904066664999917],[39.197438998000194,-5.896661065999837],[39.200450066000116,-5.901950778999904],[39.20818118600019,-5.912204684999935],[39.211110873000024,-5.91773853999986],[39.22779381600017,-5.890720309999907],[39.2635197270001,-5.86109791499986],[39.28003991000017,-5.841973565999893],[39.288259311000076,-5.810479424999883],[39.29525800900014,-5.736504815999893],[39.31348717500006,-5.718438408999873],[39.32520592500011,-5.748955987999821],[39.35572350400017,-5.803806247999916],[39.36182701900023,-5.838962497999887],[39.35474694100017,-5.881036065999851],[39.354340040000096,-5.896661065999837],[39.35743248800006,-5.912041924999869]]],[[[39.65981088400022,-5.475969573999819],[39.63289955500008,-5.477751745999839],[39.61533097700012,-5.46379925499987],[39.600097264000084,-5.445766500999881],[39.591303891000194,-5.432965909999908],[39.57958481000011,-5.42074789499982],[39.569028737000195,-5.406201067999874],[39.57545756500011,-5.394548057999899],[39.584243339000096,-5.399198032999877],[39.59888730400004,-5.408500949999919],[39.60943741800011,-5.423046716999863],[39.62116135100004,-5.441083279999901],[39.636967106000185,-5.446886161999885],[39.65218105900007,-5.45094311999982],[39.66213833400016,-5.463739503999889],[39.65981088400022,-5.475969573999819]]],[[[39.711110873000194,-4.927015882999839],[39.71208743600019,-4.931410414999917],[39.72315514400023,-4.929864190999878],[39.72689863400015,-4.92245859199997],[39.72901451900006,-4.914239190999893],[39.73519941500015,-4.910332940999893],[39.74024498800006,-4.913832289999888],[39.75635826900022,-4.929864190999878],[39.75977623800023,-4.934502862999892],[39.80591881600017,-4.960870049999897],[39.81430097700016,-4.968682549999883],[39.81495201900006,-4.980157158999845],[39.81739342500011,-4.990166924999826],[39.82154381600017,-4.993829033999873],[39.82813561300023,-4.986016533999873],[39.82740319100011,-4.977959893999852],[39.8235783210001,-4.968357028999861],[39.823741082000225,-4.957207940999851],[39.83562259200019,-4.94508228999986],[39.83668053500017,-4.952406507999854],[39.84017988400015,-4.959893487999835],[39.8416447270001,-4.965590101999808],[39.8498641290001,-4.949151299999911],[39.85572350400017,-4.929131768999852],[39.85792076900023,-4.91025156],[39.85596764400012,-4.897230726999837],[39.86947675900015,-4.906019789999974],[39.86947675900015,-4.926446221999868],[39.86687259200008,-4.950290622999844],[39.87818444100017,-4.987725518999881],[39.86695397200006,-5.005791924999897],[39.849131707000055,-5.019789320999863],[39.83562259200019,-5.026462497999916],[39.84058678500017,-5.044203382999825],[39.83741295700011,-5.06357187299993],[39.831309441000116,-5.083184502999885],[39.82813561300023,-5.102146091999899],[39.8377384770001,-5.132094007999868],[39.838633660000106,-5.137465101999837],[39.84782962300008,-5.1332333309999],[39.84864342500006,-5.123711846999825],[39.84685306100019,-5.113946221999868],[39.84848066500009,-5.108982028999918],[39.8611759770001,-5.114515882999839],[39.86280358200011,-5.132094007999868],[39.85596764400012,-5.170505466999884],[39.85564212300008,-5.22942473799985],[39.84848066500009,-5.245538018999824],[39.85596764400012,-5.253024997999887],[39.84400475400017,-5.267022393999852],[39.81430097700016,-5.355401299999897],[39.806651238000114,-5.366143487999821],[39.802500847000175,-5.370375257999839],[39.80103600400011,-5.37672291499986],[39.800629102000094,-5.393649997999844],[39.79607181100007,-5.406833591999884],[39.78728274800019,-5.409112237999864],[39.7815047540001,-5.401055596999839],[39.786387566000116,-5.383233330999857],[39.78093509200008,-5.383233330999857],[39.774180535000106,-5.399509372999887],[39.77068118600002,-5.405450127999913],[39.765961134000094,-5.410577080999829],[39.769297722000054,-5.421156507999882],[39.764008009000094,-5.432305596999896],[39.752777540000096,-5.442640882999811],[39.73861738400015,-5.451592705999843],[39.72901451900006,-5.45419687299993],[39.726328972000175,-5.450453382999811],[39.729746941000116,-5.444105726999865],[39.73861738400015,-5.438571872999844],[39.73861738400015,-5.43108489399988],[39.72437584700006,-5.434665622999859],[39.71363366000011,-5.441338799999897],[39.70541425900015,-5.442966403999918],[39.69825280000012,-5.43108489399988],[39.663422071000156,-5.432224216999913],[39.64893639400011,-5.427504164999903],[39.643077019000174,-5.413995049999841],[39.64356530000006,-5.379001559999921],[39.64747155000006,-5.363051039999917],[39.65674889400012,-5.349216403999918],[39.650563998000024,-5.338474216999913],[39.66309655000011,-5.3363583309999],[39.69825280000012,-5.342380466999898],[39.69019616000017,-5.328220309999877],[39.6692814460001,-5.302666924999897],[39.66358483200011,-5.287204684999878],[39.67920983200011,-5.291192315999851],[39.698903842000014,-5.292657158999916],[39.71656334700006,-5.289646091999913],[39.726328972000175,-5.280368747999859],[39.71485436300023,-5.277764580999857],[39.705088738000114,-5.27410247199991],[39.69703209700017,-5.268487237999821],[39.6907658210001,-5.259860934999907],[39.7063908210001,-5.260023695999862],[39.73031660200016,-5.253838799999897],[39.746104363000114,-5.253024997999887],[39.76417076900023,-5.262383721999825],[39.77409915500007,-5.259535414999874],[39.78093509200008,-5.239353122999859],[39.76075280000012,-5.246840101999823],[39.73633873800005,-5.240004164999903],[39.6907658210001,-5.211358330999828],[39.680918816000116,-5.217705987999864],[39.66871178500011,-5.213962497999916],[39.657399936000076,-5.203789971999882],[39.649912957000055,-5.190850518999881],[39.66065514400012,-5.195245049999855],[39.66773522200006,-5.20037200299987],[39.67448978000019,-5.202325127999828],[39.683929884000094,-5.197686455999886],[39.693532748000194,-5.200616143999824],[39.72754967500011,-5.205743096999839],[39.746104363000114,-5.205173434999863],[39.73861738400015,-5.197686455999886],[39.74626712300008,-5.17831796699987],[39.74252363400015,-5.161797783999901],[39.731781446000156,-5.156508070999834],[39.71827233200016,-5.170505466999884],[39.72348066500015,-5.150160414999888],[39.726328972000175,-5.143731377999885],[39.72046959700006,-5.13632577899989],[39.71265709700006,-5.131442966999913],[39.702647332000055,-5.131036065999822],[39.6907658210001,-5.137465101999837],[39.69304446700019,-5.126397393999895],[39.694590691000116,-5.121840101999851],[39.69825280000012,-5.115817966999842],[39.69418379000015,-5.103936455999886],[39.695485873000024,-5.089776299999869],[39.700694207000225,-5.079196872999916],[39.708262566000165,-5.078301690999822],[39.720062696000156,-5.083916924999826],[39.725433790000096,-5.080498955999914],[39.724619988000114,-5.071872653999904],[39.71827233200016,-5.061781507999854],[39.70964603000007,-5.056735934999907],[39.677256707000225,-5.044366143999881],[39.68018639400006,-5.034844658999873],[39.69402103000007,-5.023695570999862],[39.69825280000012,-5.013360283999859],[39.683929884000094,-5.020196221999868],[39.675791863000114,-5.001722914999931],[39.681162957000225,-4.987237237999892],[39.6946720710001,-4.982517184999892],[39.71208743600019,-4.992852471999896],[39.71599368600019,-4.97682057099982],[39.70476321700019,-4.967461846999868],[39.688487175000056,-4.958754164999888],[39.677256707000225,-4.94508228999986],[39.67676842500006,-4.933526299999826],[39.68287194100017,-4.905531507999896],[39.68409264400006,-4.890313408999916],[39.686371290000146,-4.89544036299985],[39.688731316000116,-4.899590752999885],[39.691579623000024,-4.902520440999893],[39.694590691000116,-4.90349700299987],[39.702321811000076,-4.907891533999944],[39.70777428500017,-4.917413018999852],[39.711110873000194,-4.927015882999839]]],[[[30.812465048,-0.994718525999829],[30.828381388000164,-1.00257334399987],[30.892976928000195,-1.00257334399987],[31.07611820400004,-1.00257334399987],[31.259156128000114,-1.00257334399987],[31.28049269100003,-1.00257334399987],[31.442245727000138,-1.00257334399987],[31.6253353270001,-1.00257334399987],[31.80837325100001,-1.00257334399987],[31.986192661000107,-1.00257334399987],[31.99141117300016,-1.00257334399987],[32.17455244900012,-1.00257334399987],[32.35764205000007,-1.00257334399987],[32.54083500200014,-1.00257334399987],[32.7222677180001,-1.00257334399987],[32.72387292500016,-1.00257334399987],[32.84722537600007,-1.00257334399987],[32.90696252400019,-1.00257334399987],[33.08994877100022,-1.00257334399987],[33.27309004700007,-1.00257334399987],[33.42641484600014,-1.00257334399987],[33.4561279700001,-1.00257334399987],[33.63177697100011,-1.00257334399987],[33.63926924600017,-1.00257334399987],[33.8222554930002,-1.00257334399987],[33.904214315000075,-1.00257334399987],[33.980385376000044,-1.00257334399987],[33.9845194910001,-1.002056578999913],[34.00002242100018,-1.00257334399987],[34.00198612400007,-1.028721617999864],[34.01542199700006,-1.037506611999859],[34.052525675000055,-1.040400491999847],[34.12745650200022,-1.082258402999827],[34.34212040200006,-1.20214772499989],[34.55688765400012,-1.321933694999842],[34.718893345000225,-1.412413522999898],[34.771551554000126,-1.441823017999823],[34.98621545400007,-1.561608987999861],[35.20098270700012,-1.681498310999842],[35.24636655100008,-1.706823238999931],[35.41564660700013,-1.80128428099988],[35.630207154000146,-1.921173603999861],[35.844871053000155,-2.041062926999828],[36.05953495300017,-2.160952249999895],[36.27409550000018,-2.280841572999961],[36.48886275300006,-2.400627542999914],[36.70352665200008,-2.520413512999866],[36.9181905520002,-2.640302835999933],[37.1328544520002,-2.760088805999885],[37.34762170400009,-2.879978128999952],[37.42421187500011,-2.922753572999824],[37.56228560400009,-2.999867451999847],[37.64486454200002,-3.045962828999862],[37.660160767000065,-3.070560811999854],[37.67783410700011,-3.17897796699981],[37.67999554300016,-3.192147645999867],[37.70005497200023,-3.314370218999897],[37.68186486800019,-3.315713805999863],[37.6719429930001,-3.324292093999972],[37.66842899600013,-3.338244730999875],[37.66987593600001,-3.356124775999845],[37.65096236100007,-3.357571715999839],[37.62719120300013,-3.370284117999887],[37.60486698400003,-3.387957457999889],[37.59029423000018,-3.404080504999953],[37.58522994000011,-3.412968851999878],[37.58047570800014,-3.424130960999918],[37.57789188700022,-3.435809834999972],[37.57944217900015,-3.446351826999859],[37.58667688000011,-3.453689879999857],[37.60310998600019,-3.455756936999819],[37.608174276000085,-3.46361175599985],[37.60414351400007,-3.480148212999836],[37.59618534300009,-3.499681904999932],[37.59907922300007,-3.513427835999963],[37.6469316000001,-3.510637308999918],[37.66832564300009,-3.512497659999923],[37.68940962700012,-3.51807871499993],[37.70832320200006,-3.527173766999823],[37.72227583900005,-3.539989521999899],[37.729820598000195,-3.555389098999882],[37.74718387800013,-3.616987405999907],[37.75720910600015,-3.637451273999873],[37.770955038000096,-3.65543467199987],[37.82542199700018,-3.694502054999873],[37.91079146300009,-3.755997008999969],[37.99605757700007,-3.817491962999895],[38.081530395000094,-3.878986917999895],[38.16679650900002,-3.940378519999797],[38.25206262200012,-4.001873473999893],[38.33753544100014,-4.06326507599988],[38.41617485900005,-4.119980776999867],[38.422801554000074,-4.124760029999877],[38.508274373000205,-4.186151631999947],[38.59354048700018,-4.247543232999931],[38.67880660000017,-4.30903818799986],[38.76427941900019,-4.370533141999857],[38.84964888500011,-4.431924743999929],[38.93501835100008,-4.493419697999855],[39.02038781700017,-4.554914652999854],[39.10575728400008,-4.616306253999838],[39.190603061000076,-4.677504164999959],[39.197438998000194,-4.683770440999837],[39.21509850400011,-4.688653252999899],[39.221527540000096,-4.716729424999897],[39.216075066000165,-4.7491187479999],[39.197438998000194,-4.766289971999839],[39.17017662900011,-4.779961846999868],[39.192230665000096,-4.788832289999903],[39.20728600400011,-4.790134372999901],[39.21599368600019,-4.795668226999837],[39.218516472,-4.817803643999909],[39.21729576900012,-4.839043877999885],[39.21355228000007,-4.856377862999963],[39.20704186300006,-4.872328382999882],[39.175140821000156,-4.926446221999868],[39.162282748000024,-4.938653252999842],[39.15650475400017,-4.924004815999837],[39.159922722000175,-4.904229424999897],[39.166351759000094,-4.884860934999892],[39.16960696700002,-4.865899346999882],[39.16334069100017,-4.848321221999853],[39.14568118600007,-4.899834893999824],[39.13038170700011,-4.918145440999879],[39.108653191000116,-4.916599216999841],[39.12598717500012,-4.943454684999921],[39.128672722,-4.953383070999834],[39.1321720710001,-5.010186455999886],[39.12916100400011,-5.020196221999868],[39.122325066000165,-5.024509372999873],[39.106781446000156,-5.019626559999892],[39.09815514400006,-5.023370049999841],[39.094411655000016,-5.028415622999873],[39.08448326900022,-5.047784112999878],[39.08277428500011,-5.061455987999821],[39.09717858200011,-5.060642184999907],[39.12916100400011,-5.047539971999839],[39.12989342500012,-5.062595309999864],[39.14087975400017,-5.086602471999896],[39.14275149800008,-5.095879815999851],[39.138682488000114,-5.103204033999859],[39.10059655000012,-5.136407158999873],[39.09408613400009,-5.1449520809999],[39.074229363000114,-5.186293226999837],[39.04363040500019,-5.232191664999903],[39.040375196000156,-5.239353122999859],[39.048187696000156,-5.246677341999856],[39.05909264400012,-5.238376559999877],[39.07455488400015,-5.218845309999892],[39.08057701900022,-5.231133721999853],[39.03728274800008,-5.356540622999929],[39.02637780000006,-5.378513278999847],[39.01246178500011,-5.397067966999856],[39.00196373800022,-5.403985283999859],[38.990407748000194,-5.409600518999851],[38.981293165000096,-5.417413018999852],[38.978282097,-5.43108489399988],[38.982595248000194,-5.439548434999921],[38.99048912900016,-5.443291924999855],[38.9974064460001,-5.449395440999851],[38.99878991000017,-5.465264580999872],[38.98536217500006,-5.504978122999873],[38.956553582000225,-5.563653252999898],[38.921641472,-5.616306247999915],[38.88892662900011,-5.637139580999886],[38.90259850400011,-5.643324476999865],[38.896006707000225,-5.663995049999883],[38.89519290500007,-5.710544528999904],[38.88550866000017,-5.729099216999913],[38.872813347,-5.74504973799982],[38.85466556100013,-5.782159112999835],[38.83253014400022,-5.815606377999885],[38.82536868600019,-5.837172132999811],[38.821625196000156,-5.860528252999899],[38.82129967500006,-5.924981377999884],[38.817067905000016,-5.934747002999828],[38.81055748800023,-5.94166432099982],[38.80494225400011,-5.950372002999899],[38.80103600400011,-5.959730726999837],[38.80030358200011,-5.963067315999865],[38.79493248800023,-5.988539320999877],[38.78541100400017,-6.008884372999859],[38.77800540500007,-6.030694268999823],[38.779063347,-6.054864190999822],[38.782725457000055,-6.061293226999837],[38.79517662900017,-6.075616143999823],[38.79957116000016,-6.082207940999893],[38.809092644000174,-6.12070077899989],[38.81324303500011,-6.130629164999888],[38.81910241000017,-6.136407158999859],[38.84115644600015,-6.150485934999891],[38.8567814460001,-6.163669528999847],[38.85857181100013,-6.169854424999912],[38.86247806100019,-6.20761484199987],[38.86003665500019,-6.231622002999827],[38.85303795700011,-6.253187757999825],[38.84115644600015,-6.267754815999851],[38.848806186000076,-6.292657158999887],[38.85222415500019,-6.348728122999915],[38.86475670700011,-6.373630466999856],[38.87566165500007,-6.381524346999825],[38.887950066000116,-6.387872002999855],[38.898285352000094,-6.394707940999878],[38.90259850400011,-6.404392184999921],[38.90414472700016,-6.415134372999844],[38.90853925900015,-6.426364841999855],[38.91504967500006,-6.436700127999856],[38.92310631600017,-6.445245049999883],[38.928884311000076,-6.449395440999822],[38.933929884000094,-6.451429945999848],[38.94703209700006,-6.452080987999892],[38.95386803500016,-6.455010674999826],[38.95728600400017,-6.461521091999913],[38.96013431100019,-6.468519789999888],[38.96469160200016,-6.473239841999899],[38.97730553500011,-6.475518487999878],[39.005056186000125,-6.476983330999843],[39.0158797540001,-6.483168226999808],[39.02605228000007,-6.486993096999824],[39.03687584700006,-6.483168226999808],[39.03589928500017,-6.475192966999856],[39.0271916020001,-6.471368096999839],[39.0110783210001,-6.465101820999876],[38.99138431100019,-6.452080987999892],[39.02003014400023,-6.460870049999868],[39.0408634770001,-6.470147393999823],[39.09620201900012,-6.522393487999835],[39.12916100400011,-6.561944268999866],[39.15552819100017,-6.580743096999825],[39.16334069100017,-6.589288018999852],[39.17839603000019,-6.615004164999888],[39.187266472000054,-6.624200127999869],[39.20427493600019,-6.634372653999904],[39.21273847700016,-6.641778252999899],[39.21941165500019,-6.653090101999879],[39.22339928500017,-6.666110934999864],[39.22478274800008,-6.678806247999916],[39.23096764400023,-6.70370859199987],[39.245860222000175,-6.731052341999841],[39.2639266290001,-6.744398695999848],[39.28003991000017,-6.727146091999842],[39.284434441000165,-6.756117445999834],[39.27979576900023,-6.795098565999822],[39.28028405000012,-6.830498955999829],[39.30046634200008,-6.84937916499986],[39.29981530000011,-6.831149997999873],[39.2981876960001,-6.823418877999856],[39.29371178500011,-6.815199476999865],[39.312022332000055,-6.816338799999897],[39.326508009000094,-6.821954033999901],[39.35499108200022,-6.839125257999825],[39.37029056100019,-6.843194268999881],[39.400563998000194,-6.845879815999864],[39.41309655000006,-6.852797132999867],[39.42790774800008,-6.858086846999838],[39.464528842000185,-6.857679945999834],[39.47169030000012,-6.863376559999907],[39.475922071000156,-6.877129815999837],[39.494313998000194,-6.901299737999835],[39.50269616000017,-6.930840752999899],[39.550547722000175,-6.99382903399983],[39.55372155000006,-7.000746351999823],[39.552582227000094,-7.010430596999882],[39.54769941500015,-7.016534112999863],[39.542491082000225,-7.021742445999863],[39.54004967500012,-7.028090101999808],[39.54859459700006,-7.091892184999921],[39.54753665500007,-7.118259372999916],[39.532562696000156,-7.116875908999845],[39.52247155000006,-7.12957122199991],[39.514903191000116,-7.156670830999843],[39.50904381600017,-7.168389580999829],[39.49789472700016,-7.177178643999894],[39.488454623000024,-7.176934502999856],[39.481293165000096,-7.168064059999891],[39.4778751960001,-7.151055596999838],[39.435883009000094,-7.18027109199987],[39.434743686000076,-7.181735934999935],[39.42676842500012,-7.192315362999892],[39.42115319100011,-7.21013762799987],[39.41879316500015,-7.22616952899986],[39.414398634000094,-7.240899346999853],[39.40284264400023,-7.254652601999865],[39.38990319100017,-7.264825127999899],[39.383636915000096,-7.267347914999916],[39.3752547540001,-7.268324476999808],[39.36744225400017,-7.271416924999883],[39.368418816000116,-7.278903903999847],[39.372894727000094,-7.287774346999896],[39.37566165500007,-7.295586846999881],[39.36980228000019,-7.306898695999877],[39.35596764400012,-7.309502862999864],[39.34009850400017,-7.308526299999897],[39.327810092000135,-7.309258721999824],[39.33757571700008,-7.325372002999898],[39.34750410200015,-7.336521091999913],[39.35425866000011,-7.349297783999858],[39.354340040000096,-7.370782158999886],[39.349945509000094,-7.385430596999896],[39.34107506600017,-7.405938408999858],[39.330414259000094,-7.424248955999914],[39.303965691000116,-7.448500257999812],[39.292328321000156,-7.486260674999869],[39.2747501960001,-7.596449476999864],[39.27588951900023,-7.616957289999916],[39.28003991000017,-7.637627862999835],[39.2928166020001,-7.669691664999903],[39.2962345710001,-7.688409112999878],[39.290293816000116,-7.70338307099982],[39.286875847000175,-7.717543226999837],[39.302012566000165,-7.754082940999879],[39.29712975400011,-7.771661065999822],[39.252614780000016,-7.823337497999859],[39.28321373800023,-7.816582940999822],[39.305023634000094,-7.791761976999865],[39.31934655000006,-7.758558851999851],[39.327810092000135,-7.726332289999903],[39.343272332000225,-7.738946221999882],[39.355235222000175,-7.752536716999842],[39.356700066000116,-7.766859632999824],[39.34083092500012,-7.781670830999899],[39.37842858200011,-7.778008721999853],[39.39551842500006,-7.779880466999912],[39.41309655000006,-7.79216887799987],[39.440277540000096,-7.818536065999865],[39.443532748000024,-7.832614841999899],[39.437022332000225,-7.857354424999883],[39.422211134000094,-7.889743747999888],[39.42090905000006,-7.902032158999844],[39.431651238000114,-7.936944268999866],[39.43262780000006,-7.976006768999824],[39.437022332000225,-7.993910414999873],[39.45240319100017,-7.984470309999864],[39.45753014400012,-7.979668877999869],[39.454356316000116,-8.010430596999853],[39.44190514400012,-8.038669528999918],[39.40967858200005,-8.089532158999859],[39.37647545700017,-8.17945728999993],[39.36182701900023,-8.206801039999903],[39.35499108200022,-8.203545830999872],[39.35189863400015,-8.203789971999909],[39.34864342500012,-8.205498955999914],[39.34083092500012,-8.206801039999903],[39.347829623000194,-8.221612237999878],[39.3455509770001,-8.25741952899989],[39.34831790500019,-8.275079033999901],[39.333994988000114,-8.268812757999866],[39.3338322270001,-8.276788018999824],[39.327810092000135,-8.295586846999866],[39.31153405000006,-8.277764580999886],[39.30323326900012,-8.271661065999893],[39.29371178500011,-8.268812757999866],[39.301605665000096,-8.283379815999893],[39.302093946000156,-8.29509856599988],[39.29493248800023,-8.303806247999859],[39.28003991000017,-8.309258721999896],[39.29273522200006,-8.334893487999864],[39.300954623000024,-8.3610979149999],[39.305349155000016,-8.388929945999863],[39.306651238000114,-8.419366143999824],[39.29997806100007,-8.477308851999823],[39.30307050900015,-8.50546640399989],[39.33643639400023,-8.539483330999829],[39.3489689460001,-8.562595309999878],[39.3576766290001,-8.588311455999829],[39.36182701900023,-8.610935153999888],[39.36003665500007,-8.694431247999859],[39.354340040000096,-8.713962497999844],[39.38933353000019,-8.72380950299987],[39.39527428500011,-8.730075778999904],[39.39812259200008,-8.738051039999874],[39.4021916020001,-8.74504973799985],[39.41309655000006,-8.74814218499992],[39.433116082000225,-8.74960702899989],[39.43913821700008,-8.755466403999847],[39.43962649800002,-8.767836195999877],[39.44385826900017,-8.788995049999883],[39.452647332000225,-8.805352471999896],[39.46363366000017,-8.812758070999877],[39.47559655000012,-8.817966403999876],[39.48853600400011,-8.826918226999808],[39.49708092500006,-8.840915622999859],[39.50855553500011,-8.875909112999864],[39.51954186300022,-8.892022393999838],[39.54769941500015,-8.913181247999844],[39.55372155000006,-8.922295830999829],[39.53972415500019,-8.926202080999829],[39.52784264400023,-8.925469658999887],[39.52068118600019,-8.923028252999856],[39.50603274800008,-8.91187916499993],[39.50407962300002,-8.909763278999918],[39.48487389400006,-8.892022393999838],[39.464610222000175,-8.867445570999834],[39.44939212300019,-8.858656507999854],[39.43018639400023,-8.861260674999855],[39.41895592500012,-8.865817966999899],[39.41309655000006,-8.86736419099985],[39.40894616000011,-8.870212497999887],[39.38868248800023,-8.898858330999857],[39.403819207000225,-8.904554945999832],[39.464203321000156,-8.898858330999857],[39.45093834700006,-8.915134372999887],[39.447601759000094,-8.925551039999872],[39.45533287900011,-8.931329033999845],[39.47486412900011,-8.933038018999852],[39.49187259200008,-8.938409112999892],[39.4920353520001,-8.952325127999885],[39.48617597700016,-8.972100518999895],[39.48487389400006,-8.994398695999847],[39.48731530000012,-8.998142184999878],[39.496267123000024,-9.004978122999887],[39.49854576900012,-9.008721612999835],[39.49878991000017,-9.027601820999863],[39.49854576900012,-9.029229424999883],[39.49317467500006,-9.039320570999847],[39.492360873000024,-9.042901299999826],[39.49447675900015,-9.045342705999857],[39.499196811000076,-9.047133070999848],[39.5037541020001,-9.050225518999824],[39.50603274800008,-9.056247653999918],[39.503103061000076,-9.065850518999907],[39.49732506600017,-9.072360934999892],[39.49333743600013,-9.079522393999852],[39.495371941000116,-9.09059010199988],[39.50269616000017,-9.10662200299987],[39.50269616000017,-9.114190362999821],[39.49854576900012,-9.124200127999899],[39.51270592500012,-9.121189059999892],[39.52995853000007,-9.113051039999888],[39.54607181100019,-9.102959893999824],[39.55713951900023,-9.09384530999992],[39.56918379000015,-9.093031507999825],[39.58366946700019,-9.106215101999865],[39.62671959700006,-9.16033294099985],[39.643809441000165,-9.18906015399989],[39.64861087300008,-9.219903252999856],[39.63282311300023,-9.251397393999866],[39.632090691000116,-9.25847747199984],[39.637950066000116,-9.266696872999916],[39.64551842500012,-9.274997653999902],[39.649912957000055,-9.282484632999868],[39.649912957000055,-9.293633721999896],[39.64437910200016,-9.31373463299984],[39.643077019000174,-9.323418877999899],[39.64625084700006,-9.356622002999828],[39.64283287900011,-9.368584893999852],[39.62940514400023,-9.385511976999837],[39.615977410000106,-9.39714934699984],[39.60718834700017,-9.39910247199988],[39.59742272200006,-9.397637627999828],[39.58155358200011,-9.399183851999865],[39.56910241000017,-9.40496184699984],[39.56397545700005,-9.41423919099988],[39.564219597,-9.428155205999857],[39.56739342500006,-9.447523695999877],[39.576345248000194,-9.443129164999887],[39.58773847700016,-9.441094658999873],[39.60840905000006,-9.440118096999896],[39.610850457000225,-9.429131768999838],[39.61589603000007,-9.424899997999916],[39.62574303500017,-9.429864190999865],[39.632090691000116,-9.43645598799985],[39.63550866000011,-9.43914153399983],[39.63965905000006,-9.440118096999896],[39.650726759000094,-9.444756768999824],[39.652354363000114,-9.455173434999907],[39.650157097,-9.466566664999872],[39.649912957000055,-9.474297783999887],[39.65674889400012,-9.483493747999859],[39.68067467500006,-9.505303643999907],[39.68913821700019,-9.524997653999845],[39.70093834700017,-9.579522393999838],[39.71143639400023,-9.594659112999835],[39.724945509000094,-9.604099216999842],[39.722341342000135,-9.610528252999856],[39.714366082000055,-9.616794528999904],[39.71208743600019,-9.625095309999878],[39.7170516290001,-9.635918877999885],[39.721934441000116,-9.642836195999877],[39.73519941500015,-9.655857028999861],[39.740896030000016,-9.666761976999851],[39.73747806100013,-9.687107028999932],[39.74659264400012,-9.706475518999852],[39.738454623000194,-9.71298593499985],[39.71827233200016,-9.720635674999867],[39.70142662900017,-9.73642343499992],[39.69695071700019,-9.744886976999865],[39.705088738000114,-9.748630466999899],[39.744802280000016,-9.747735283999901],[39.752289259000094,-9.748630466999899],[39.75554446700002,-9.755791924999839],[39.763438347,-9.782810153999888],[39.769704623000074,-9.793064059999907],[39.78614342500006,-9.80494557099986],[39.79395592500006,-9.812432549999839],[39.800629102000094,-9.82382577899989],[39.807302280000066,-9.852227471999825],[39.800059441000116,-9.872653903999888],[39.78126061300006,-9.88241952899993],[39.752289259000094,-9.87900155999992],[39.76075280000012,-9.892510674999897],[39.789235873000024,-9.914239190999865],[39.79021243600019,-9.923028252999842],[39.779470248000194,-9.9301083309999],[39.744965040000096,-9.944594007999854],[39.7142033210001,-9.952080987999821],[39.713715040000096,-9.963555596999852],[39.726328972000175,-9.988864841999899],[39.72437584700006,-10.007500908999887],[39.7170516290001,-10.02157968499992],[39.70541425900015,-10.032891533999901],[39.6907658210001,-10.043389580999886],[39.71648196700007,-10.038750908999859],[39.763194207000055,-9.982842705999886],[39.78370201900012,-9.98503997199988],[39.797048373000024,-9.992445570999877],[39.82691491000011,-9.990329684999864],[39.84815514400012,-10.011407158999887],[39.86133873800022,-10.01311614399988],[39.87598717500006,-10.012465101999837],[39.88941491000017,-10.014906507999868],[39.91431725400011,-10.033868096999882],[39.97494550900015,-10.133396091999856],[39.97681725400011,-10.191013278999918],[39.98511803500011,-10.220961195999891],[39.995371941000116,-10.209079684999935],[40.00049889400023,-10.19264088299984],[40.00066165500019,-10.175225518999866],[39.99561608200005,-10.15984465899983],[39.98658287900016,-10.139743747999887],[39.98878014400023,-10.131280205999843],[40.00066165500019,-10.130140882999811],[40.01978600400017,-10.132907809999864],[40.03435306100019,-10.137139580999886],[40.06527754000015,-10.150485934999892],[40.08480879000015,-10.155043226999851],[40.12476647200017,-10.169366143999838],[40.12964928500016,-10.168226820999804],[40.13266035200016,-10.16969166499986],[40.13591556100019,-10.180596612999835],[40.134043816000116,-10.193536065999837],[40.127452019000174,-10.206963799999825],[40.124278191000116,-10.221612237999835],[40.13249759200019,-10.238376559999864],[40.13550866000011,-10.247653903999904],[40.12810306100013,-10.252699476999851],[40.118418816000165,-10.256931247999859],[40.11540774800008,-10.263116143999838],[40.12061608200022,-10.271172783999873],[40.12582441500015,-10.271742445999834],[40.13111412900011,-10.269463799999869],[40.13591556100019,-10.26873137799984],[40.15259850400017,-10.278903903999874],[40.16041100400011,-10.280450127999826],[40.16382897200006,-10.272556247999844],[40.16456139400006,-10.262139580999857],[40.16765384200008,-10.256280205999914],[40.17383873800022,-10.255140882999882],[40.18433678500011,-10.259454033999873],[40.19654381600017,-10.267754815999865],[40.21973717500012,-10.288181247999928],[40.23210696700008,-10.296644789999874],[40.23194420700011,-10.287530205999886],[40.23365319100017,-10.281182549999855],[40.23633873800006,-10.275811455999886],[40.238942905000066,-10.26873137799984],[40.24683678500011,-10.274102471999882],[40.25277754000015,-10.27556731599985],[40.25879967500006,-10.273695570999877],[40.266856316000116,-10.26873137799984],[40.24984785200015,-10.263848565999865],[40.198008660000106,-10.242120049999883],[40.23210696700008,-10.20045338299984],[40.24537194100017,-10.204685153999861],[40.25114993600002,-10.215997002999842],[40.25416100400011,-10.229913018999824],[40.259450717000135,-10.242120049999883],[40.26823978000019,-10.249200127999856],[40.29070071700019,-10.259942315999865],[40.30103600400011,-10.26873137799984],[40.3064884770001,-10.277601820999875],[40.338715040000096,-10.348809502999899],[40.34880618600002,-10.358086846999852],[40.35132897200006,-10.35637786299985],[40.38502037900017,-10.363051039999903],[40.389821811000076,-10.364922783999873],[40.42212975400017,-10.355645440999822],[40.42676842500012,-10.335870049999897],[40.41480553500017,-10.320407809999878],[40.39722741000011,-10.323907158999859],[40.392588738000114,-10.312107028999888],[40.39600670700011,-10.303480726999894],[40.405121290000096,-10.298435153999861],[40.417735222000175,-10.296644789999874],[40.427012566000116,-10.300062757999882],[40.431407097,-10.308282158999873],[40.43482506600011,-10.31845468499992],[40.44068444100017,-10.32732512799987],[40.449392123000074,-10.345391533999887],[40.44019616000017,-10.361423434999878],[40.4236759770001,-10.376560153999876],[40.41089928500017,-10.392266533999845],[40.417246941000116,-10.391696872999873],[40.430511915000146,-10.392754815999837],[40.436859571000156,-10.392266533999845],[40.42603600400017,-10.426202080999886],[40.424571160000106,-10.437188408999845],[40.42725670700011,-10.444756768999895],[40.43287194100017,-10.452325127999842],[40.437510613000114,-10.461602471999896],[40.436859571000156,-10.47478606599985],[40.42102583900012,-10.503750508999898],[40.389193156000175,-10.535273131999858],[40.35332971100016,-10.56069793699987],[40.28852746600015,-10.583022154999838],[40.25070031700013,-10.610927428999913],[40.19158247900012,-10.668805032999842],[40.172772258000094,-10.693092956999848],[40.16109338400011,-10.704358418999902],[40.13318811000013,-10.714590351999888],[40.008131144000146,-10.81112192799982],[39.98911421700009,-10.820940449999881],[39.885968058000145,-10.864452005999807],[39.78581913300016,-10.93256154299982],[39.76049768100009,-10.943103535999866],[39.592755982000114,-10.979380390999836],[39.51565474500015,-10.985064798999872],[39.4984981690001,-10.990645852999888],[39.48268518000006,-10.999224141999917],[39.286624797000194,-11.154150084999827],[39.263267049000056,-11.166759133999847],[39.238152303000135,-11.174200540999863],[39.21159061700021,-11.173890481999877],[39.190506632000194,-11.166242369999805],[39.149785604,-11.144331562999852],[39.126221151000124,-11.139680683999885],[39.09542199700015,-11.153426614999914],[39.06079878800003,-11.16014455199985],[38.93005741400023,-11.16004119899982],[38.896261027000065,-11.167689309999885],[38.86949263500017,-11.190736998999853],[38.85192264800011,-11.202829283999845],[38.83104536900012,-11.207996927999844],[38.81781620300014,-11.216265156999896],[38.77802535000009,-11.253678893999862],[38.759731893000065,-11.26318735699985],[38.748673137000225,-11.26277394599984],[38.727072388000096,-11.25770965599986],[38.71508345600009,-11.25646942099982],[38.70423140500017,-11.258536478999872],[38.68397424300005,-11.267838235999903],[38.65420861800018,-11.275796406999874],[38.638188924000104,-11.289232278999819],[38.615657999000206,-11.317240904999835],[38.51716272000012,-11.383076680999821],[38.49225467900007,-11.41346242299987],[38.49168788800009,-11.413136860999842],[38.46238570100015,-11.396305846999908],[38.38311405500022,-11.376668802999873],[38.34766402200009,-11.358788756999914],[38.29247359200011,-11.301634622999883],[38.25661014800008,-11.277139993999839],[38.21041141700019,-11.270008645999894],[38.2004895430002,-11.272695820999914],[38.17837203000008,-11.281790872999807],[38.166899861000076,-11.283754576999838],[38.15501428200011,-11.280550638999856],[38.13537723800019,-11.26639129599991],[38.125662069000064,-11.26318735699985],[38.12245813000018,-11.261223652999902],[38.11718713400015,-11.25202524799991],[38.11543013500008,-11.249544778999834],[38.10933231700014,-11.249648131999862],[38.10426802500015,-11.25202524799991],[38.101167440000125,-11.254919128999802],[38.101167440000125,-11.25646942099982],[38.09335726900022,-11.256310029999867],[38.07078169800016,-11.255849303999852],[38.01362756300014,-11.265461119999856],[38.00422245300015,-11.27527964199983],[37.99533410600023,-11.277553404999848],[37.95461307800011,-11.280033873999825],[37.9380766190001,-11.283961283999886],[37.875238077000205,-11.319101256999842],[37.86841678900018,-11.327782897999896],[37.86583296800009,-11.342459003999878],[37.85043339000018,-11.38762420699986],[37.84102828000001,-11.399819844999866],[37.842475220000125,-11.41780324299985],[37.81849735500012,-11.459867858999885],[37.81322635900008,-11.48229542999988],[37.817257121000154,-11.4956279499998],[37.8232515870001,-11.507926939999846],[37.82511193900021,-11.520225931999875],[37.816947062000196,-11.53355845199981],[37.80444136600008,-11.544513854999877],[37.78366743900003,-11.558879902999877],[37.71090702300009,-11.590402526999853],[37.666361938000165,-11.625542500999899],[37.64775842300011,-11.635981139999927],[37.62636438000018,-11.639701842999841],[37.59463505100009,-11.640011901999827],[37.57293094900009,-11.644146015999851],[37.536757447000156,-11.662956237999865],[37.51588016700006,-11.667297057999846],[37.503787882000125,-11.672671406999896],[37.496036418000095,-11.685073749999871],[37.490352010000066,-11.698923034999837],[37.48477095600006,-11.70884490999984],[37.47639937400007,-11.715976256999866],[37.46968143700022,-11.719490254999826],[37.45066451000016,-11.722590839999867],[37.42782352700007,-11.722590839999867],[37.378317505000126,-11.70884490999984],[37.37015262800017,-11.704814147999839],[37.35237593600007,-11.686313984999813],[37.340800415000125,-11.680939635999849],[37.33139530400015,-11.681559752999817],[37.323643840000074,-11.68528045599983],[37.31578902100014,-11.69024139399987],[37.30607385200008,-11.69458221399985],[37.27021040900016,-11.698406269999808],[37.22659549900018,-11.69375539099984],[37.141639445000095,-11.674738464999862],[37.10649947100015,-11.65809865299984],[37.071566203000174,-11.629159850999883],[37.04438439900016,-11.595673522999874],[37.0323954670001,-11.564874369999812],[37.01668583100015,-11.573969420999887],[37.007797485000225,-11.580584004999878],[36.998392375000066,-11.584614765999873],[36.90589156000007,-11.592779642999801],[36.89111210100023,-11.589989114999838],[36.86630741400009,-11.574176126999843],[36.84656701600014,-11.572729186999851],[36.837058553000155,-11.567974954999855],[36.82010868300003,-11.573556009999876],[36.77484012900007,-11.626265970999896],[36.74703820800019,-11.66647023499982],[36.73804650900016,-11.674738464999862],[36.7265743410002,-11.680732930999795],[36.68967736800019,-11.69458221399985],[36.679962199000066,-11.70243703199989],[36.6745878500001,-11.70884490999984],[36.66724979700021,-11.713392435999864],[36.640584757000084,-11.716286315999852],[36.6257019450002,-11.721350605999831],[36.56296675600018,-11.731272481999923],[36.54570682800008,-11.729412129999915],[36.52059208200015,-11.717113138999878],[36.515011027000156,-11.715046080999826],[36.50870650200013,-11.70977508599988],[36.50271203600019,-11.686313984999813],[36.49485721900007,-11.680939635999849],[36.378068482000145,-11.680939635999849],[36.373314250000156,-11.683110046999843],[36.36814660700023,-11.687760925999896],[36.36122196500017,-11.69241180399986],[36.32980269400022,-11.697062682999928],[36.293422486000026,-11.707294616999903],[36.27874637800008,-11.70884490999984],[36.26841109200015,-11.705951029999852],[36.25290816200001,-11.696649271999917],[36.24091923000017,-11.69458221399985],[36.199681437000066,-11.701506855999837],[36.18820926900017,-11.693652037999811],[36.17921757000008,-11.675565286999884],[36.1762203370001,-11.654998066999894],[36.18262821500011,-11.640011901999827],[36.1759102780002,-11.62006479899982],[36.173636515000084,-11.597430521999854],[36.16805546100008,-11.57872365299987],[36.151932414000186,-11.5710755409998],[36.14283736200022,-11.569008483999838],[36.13601607300009,-11.56384084099983],[36.1295048420001,-11.557122903999812],[36.12113326000022,-11.550611673999839],[36.11152144400009,-11.54658091199984],[36.08940393000009,-11.540896504999806],[36.07958540800021,-11.536969094999916],[36.043101847000145,-11.514851582999825],[36.02222456900003,-11.505653176999829],[36.007858521000145,-11.506583352999868],[35.98853153500008,-11.51216440799989],[35.96982466600011,-11.502449238999858],[35.96083296700007,-11.48353566499982],[35.97034143100004,-11.46121144599985],[35.953081502000174,-11.440644225999861],[35.939748983000214,-11.4341329949998],[35.90202518700019,-11.434546406999814],[35.895617310000056,-11.432789407999834],[35.867298625000075,-11.420903828999897],[35.826370890000106,-11.41346242299987],[35.81314172300002,-11.42235076899989],[35.78192915800017,-11.46121144599985],[35.76425581900017,-11.474854023999852],[35.71402632600021,-11.483845722999888],[35.69562951700013,-11.494594420999817],[35.703380981000095,-11.516505227999872],[35.6912886960001,-11.52425669299987],[35.680229940000146,-11.53758921299989],[35.67185835800015,-11.55143849599986],[35.66483036300022,-11.572005716999854],[35.6548051350002,-11.578310241999858],[35.60085494000006,-11.592262877999856],[35.59971805800015,-11.592159524999827],[35.57625695800019,-11.605181985999863],[35.55982385200011,-11.601047871999839],[35.543700806000146,-11.594743346999834],[35.532745402000074,-11.595570169999858],[35.53150516800022,-11.612726744999819],[35.520136352000144,-11.609109394999834],[35.5155888260002,-11.603528340999915],[35.51300500500011,-11.596603698999928],[35.50763065600014,-11.589058939999887],[35.4987423100001,-11.582341002999854],[35.49409143100016,-11.581824238999912],[35.49016402100008,-11.584098001999832],[35.483652791000196,-11.585958352999839],[35.48344608600004,-11.586888528999808],[35.47011356600015,-11.592159524999827],[35.46577274600017,-11.592572936999844],[35.44117476400018,-11.591436055999836],[35.431873006000075,-11.588438821999915],[35.42525842300003,-11.582030944999872],[35.42350142400008,-11.576553242999879],[35.38174686600021,-11.577690123999886],[34.964614706000106,-11.573556009999876],[34.96296105900015,-11.564874369999812],[34.96296105900015,-11.513094583999845],[34.9606872960002,-11.498521830999875],[34.95572635900018,-11.48673960399988],[34.950972127000085,-11.477747903999841],[34.94869836400008,-11.471753437999908],[34.944460897000084,-11.464415384999825],[34.93505578600016,-11.456457214999858],[34.925650675000185,-11.445915221999883],[34.91707238800009,-11.41883677099983],[34.89836552000011,-11.40354054799988],[34.89412805200007,-11.395995788999826],[34.886583293000086,-11.375428567999847],[34.867876424000116,-11.358788756999914],[34.84369185400013,-11.34628305999982],[34.8004903560001,-11.33191701199982],[34.79232548000019,-11.330883483999841],[34.784884073000086,-11.333467305999847],[34.7721716720001,-11.344422708999913],[34.76555708800012,-11.345146178999812],[34.759149210000174,-11.337498066999927],[34.73703169800015,-11.296777037999874],[34.7430261640001,-11.293676452999833],[34.75160445200012,-11.287061868999928],[34.757495565000085,-11.283754576999838],[34.757495565000085,-11.277553404999848],[34.74168257700009,-11.26866505899983],[34.7286601160001,-11.253988952999846],[34.719771769000175,-11.234558613999866],[34.716567831000106,-11.211717630999857],[34.71408736200013,-11.202725930999819],[34.7078861900002,-11.19497446699991],[34.69992801900017,-11.189496764999916],[34.68184126800017,-11.18505259199982],[34.677087036000074,-11.178748066999901],[34.673986451000104,-11.16996307399991],[34.66871545400008,-11.16014455199985],[34.62106978400006,-11.119733580999863],[34.6135250240001,-11.102163594999894],[34.61063114400011,-11.077668965999834],[34.59729862500009,-11.036637878999883],[34.59295780400012,-11.016174011999835],[34.597918741000086,-10.990955911999876],[34.61783828200012,-10.9657386209999],[34.627064250000075,-10.95405893899985],[34.64546106000009,-10.913234557999857],[34.64763147000005,-10.902899271999857],[34.64763147000005,-10.858560892999902],[34.66055057700018,-10.7960324099999],[34.65672652200013,-10.769884134999813],[34.662824341000174,-10.761409199999903],[34.67501997800011,-10.752417500999869],[34.67243615700008,-10.739498392999849],[34.666441691000074,-10.732367044999819],[34.65993046100019,-10.727716165999851],[34.655692993000144,-10.722031758999904],[34.65393599500018,-10.717587584999889],[34.64763147000005,-10.708389179999898],[34.66086063700007,-10.687305195999869],[34.66003381400011,-10.665497741999843],[34.65052535000004,-10.645343932999864],[34.62902795400012,-10.620229186999849],[34.626340780000106,-10.614338072999841],[34.62716760300012,-10.595114439999833],[34.62437707500007,-10.583435566999853],[34.6208589230001,-10.582422765999809],[34.61755578600011,-10.58147186299982],[34.60887414600015,-10.581988626999857],[34.60039921100022,-10.578061217999888],[34.59233768700002,-10.566692402999891],[34.58572310400015,-10.553566588999928],[34.5810722250001,-10.539717304999867],[34.58008816300011,-10.531844811999889],[34.57941857900002,-10.526488137999875],[34.58148563700009,-10.51367238399989],[34.59078739500009,-10.491244811999891],[34.59295780400012,-10.481736347999828],[34.58872033700006,-10.463132832999861],[34.5694967040001,-10.431403503999844],[34.56505253100013,-10.409802754999873],[34.58530969200015,-10.300662128999818],[34.58561975100011,-10.290016783999832],[34.5834493400001,-10.277614440999855],[34.57507775900015,-10.255806985999838],[34.56556929600018,-10.20268361399981],[34.532393026000165,-10.128889668999847],[34.52474491400008,-10.09478322299988],[34.526811971000114,-10.084861347999876],[34.53570031800004,-10.06532765699987],[34.53776737500013,-10.053855488999856],[34.53642378700013,-10.043003437999815],[34.52474491400008,-10.008793639999823],[34.494669230000085,-9.96672902399989],[34.483300415000116,-9.9461618039999],[34.3834615480001,-9.823792012999846],[34.38232466700018,-9.819657897999832],[34.364237915000075,-9.80239796899984],[34.35969038900012,-9.799917500999868],[34.33746952300007,-9.777179869999884],[34.33168176300009,-9.769221699999918],[34.32672082600007,-9.75030812599988],[34.3242403560001,-9.732428079999835],[34.317935831000085,-9.719198912999929],[34.288066853000174,-9.708450215999903],[34.19081180800006,-9.606750996999878],[34.16187300600009,-9.593625182999816],[34.144613078000106,-9.57491831399983],[34.13706831800002,-9.57057749399985],[34.10316857900014,-9.529856465999885],[34.08931929600007,-9.522208353999815],[34.07981083200016,-9.511046243999871],[34.078490688000066,-9.510185830999916],[34.047461385000105,-9.489962259999842],[34.01273482200017,-9.477456562999848],[33.996508423000165,-9.491822610999847],[33.984312785000014,-9.505568542999882],[33.96074833200012,-9.524895527999846],[33.94586551900019,-9.55001027399986],[33.96446903500006,-9.594658711999884],[33.96260868400023,-9.612125345999843],[33.955580689000016,-9.642304381999834],[33.954857218000114,-9.660597838999905],[33.95134322100009,-9.673620299999854],[33.943074992000135,-9.68385223399983],[33.928295532000135,-9.693464050999836],[33.928295532000135,-9.700285338999889],[33.911862426000226,-9.717958678999892],[33.900183553000176,-9.709587096999824],[33.88933150200015,-9.689743346999833],[33.86525028500009,-9.669589538999858],[33.8369316000001,-9.652846373999806],[33.813470500000136,-9.643337910999916],[33.78752893000015,-9.626491393999842],[33.76200077300021,-9.600963235999814],[33.734612264000106,-9.584116719999827],[33.702521199000074,-9.592901712999904],[33.67606286600008,-9.607681171999928],[33.65063806100008,-9.610988463999831],[33.65013541400012,-9.610901131999896],[33.62386966900007,-9.606337584999864],[33.59338057500011,-9.596829120999885],[33.55948083500019,-9.593315124999833],[33.53519291200021,-9.603340351999847],[33.5116284590002,-9.616982929999864],[33.48051924600023,-9.624424335999876],[33.43897139500004,-9.621530455999888],[33.41964440900019,-9.615639342999884],[33.4042448320001,-9.60489064499987],[33.39220422400015,-9.586183776999889],[33.37499597200011,-9.549080097999905],[33.356495809000165,-9.531820169999918],[33.30027185100007,-9.492236022999862],[33.28239180500012,-9.486034850999872],[33.27350345900018,-9.487688496999837],[33.2576904700002,-9.498023783999841],[33.249112182000054,-9.50071095799987],[33.23712325000022,-9.49957407599986],[33.21634932400016,-9.493372904999873],[33.202396688000164,-9.493476256999898],[33.19578210400019,-9.496680195999872],[33.18203617400016,-9.507945657999839],[33.17294112100009,-9.511046243999871],[33.16922041800015,-9.50887583399988],[33.13991988100011,-9.497403665999867],[33.11299646000012,-9.491512552999865],[33.10390140800021,-9.487895201999875],[33.0423031010001,-9.44066294299985],[32.99228031400011,-9.391363626999862],[32.97471032700011,-9.381235046999805],[32.955279989000154,-9.382061868999827],[32.93626306200005,-9.391673684999843],[32.92086348500018,-9.407900085999856],[32.90546390800009,-9.398184915999906],[32.83073978600012,-9.37017628999989],[32.78433435100007,-9.339687194999911],[32.776996297000125,-9.338240254999915],[32.759633016000095,-9.339997252999808],[32.75229496200009,-9.337413430999888],[32.74650720300022,-9.329972024999876],[32.74340661600015,-9.314985859999808],[32.73968591300016,-9.307337747999924],[32.7258366290001,-9.29255828799991],[32.71322758000005,-9.285840352999884],[32.64160404500009,-9.279845885999862],[32.55561446100015,-9.26124236999989],[32.51804569500015,-9.258245137999879],[32.504454793000065,-9.249253437999839],[32.49008874500006,-9.227342630999885],[32.47065840700017,-9.181867369999836],[32.4597030030001,-9.168018086999865],[32.42342614800023,-9.143833516999806],[32.38301517700003,-9.133911641999902],[32.25273889200017,-9.136495462999902],[32.231448202000166,-9.13380828799987],[32.21129439300009,-9.126780293999872],[32.191605672000065,-9.112207539999815],[32.15481205300014,-9.07520721399986],[32.1455744790002,-9.07026511199986],[32.13414148000001,-9.064148457999847],[32.12504642700017,-9.063735045999834],[32.10582279400015,-9.068282571999873],[32.0964176840001,-9.069109394999899],[32.08603072100007,-9.066112161999882],[32.05724694800002,-9.049575703999892],[32.03171879100008,-9.045958353999907],[32.015802450000166,-9.052676289999837],[32.00138472500006,-9.063321634999824],[31.980559122000184,-9.071899921999858],[31.938081095000168,-9.061771341999899],[31.91772058100011,-9.02249725299984],[31.91782393400015,-8.97309458399981],[31.936634155000064,-8.932580260999899],[31.787599324000066,-8.892169290999915],[31.764344930000075,-8.894132995999854],[31.730238485000115,-8.912426452999824],[31.70977461800012,-8.919661152999893],[31.68962080900016,-8.919557799999865],[31.672670939000138,-8.913046568999889],[31.576449422000085,-8.839666035999855],[31.55335005700013,-8.809073587999848],[31.545856974000085,-8.766285501999917],[31.54596032700013,-8.72897511799988],[31.539035685000016,-8.703550312999866],[31.519088583000123,-8.687013854999876],[31.48064131700008,-8.676161803999833],[31.464724976000152,-8.666136576999817],[31.443227580000126,-8.641538593999826],[31.42751794500023,-8.633477070999929],[31.4124284260001,-8.632340189999823],[31.39883752400013,-8.633787129999817],[31.385970093000225,-8.632546894999791],[31.372637573000105,-8.623865254999828],[31.369226928000074,-8.616837259999912],[31.36591963700019,-8.59864715599987],[31.36219893400019,-8.592342630999852],[31.35331058700009,-8.587174987999859],[31.350106648000207,-8.588518574999824],[31.34752282700012,-8.59244598399988],[31.340391479000143,-8.59523651099984],[31.328815959000192,-8.597716979999817],[31.277087850000072,-8.616010436999886],[31.269388062000044,-8.621074726999865],[31.260913127000066,-8.623968607999856],[31.24804569500006,-8.62190154999989],[31.23734867400017,-8.613943378999835],[31.21843509900023,-8.588725279999878],[31.206756226000063,-8.580767109999911],[31.18267500800019,-8.580767109999911],[31.161384318000014,-8.591722513999798],[31.14102380400018,-8.606191914999911],[31.11983646700011,-8.616630553999855],[31.07782352700022,-8.616320494999869],[31.033640177000194,-8.600300800999918],[30.992350708000203,-8.57590952599989],[30.959536174000192,-8.550484720999876],[30.891891724000203,-8.479171244999819],[30.828278036000114,-8.388117369999861],[30.77825524900001,-8.289105325999868],[30.752106975000203,-8.194124042999858],[30.728129110000197,-8.104103698999893],[30.6549552820002,-7.927370299999878],[30.441634969000148,-7.596331074999838],[30.414711548000156,-7.501969908999798],[30.40494470200011,-7.436030780999871],[30.369598022000076,-7.310250345999805],[30.29446049000009,-7.149433288999901],[30.234670858000214,-7.057139179999837],[30.090855346000154,-6.890017598999832],[30.012720581000135,-6.825215351999816],[29.96911280500015,-6.80304026599984],[29.873090861000183,-6.754211933999912],[29.73862878400004,-6.652409362999862],[29.70700280800017,-6.619336445999878],[29.68436853000011,-6.581509297999901],[29.633932332000114,-6.446943867999835],[29.566029500000155,-6.359507344999884],[29.537710815000167,-6.312378438999872],[29.52551517700007,-6.273104349999812],[29.508823690000128,-6.153731790999871],[29.478696330000016,-6.041800637999855],[29.476112508000227,-6.002113137999871],[29.49605961100022,-5.93865447999984],[29.570887085000063,-5.837988789999883],[29.603029826000096,-5.781661478999879],[29.61243493600008,-5.704353534999868],[29.593521363,-5.620327656999933],[29.496369669000018,-5.391711119999826],[29.455648641000064,-5.229963886999868],[29.37782393400013,-5.087543639999879],[29.34423425300011,-5.005998229999832],[29.342792981000144,-4.999952894999851],[29.32377038600012,-4.920163675999902],[29.321031535000117,-4.836344502999836],[29.34082360800008,-4.751698506999915],[29.401336711000084,-4.586850686999924],[29.41089685000011,-4.502308043999861],[29.40727950000021,-4.462620543999875],[29.404178915000184,-4.449804788999899],[29.638273153000085,-4.446807555999968],[29.687469117000063,-4.458383076999837],[29.72829349800023,-4.461587014999893],[29.732841023000073,-4.463344014999961],[29.74436486800019,-4.454455667999866],[29.747413777000162,-4.443190205999983],[29.747930542000095,-4.430271096999974],[29.751651245000087,-4.41611175599985],[29.757955770000105,-4.410220641999842],[29.775008992000068,-4.402262470999887],[29.78017663600022,-4.393684183999937],[29.782295370000128,-4.377354430999915],[29.78410404500019,-4.373840432999856],[29.80033044400014,-4.363918557999867],[29.810975789000196,-4.365262145999836],[29.821827840000164,-4.370739847999829],[29.838571004000215,-4.373530374999959],[29.847355997000104,-4.370533141999857],[29.900479370000223,-4.345625101999886],[29.936342814000085,-4.312035419999873],[29.97065596500008,-4.292605081999881],[29.980784546000134,-4.284440204999953],[30.00300541100009,-4.271934508999877],[30.015614461000123,-4.256018167999855],[30.041142619000226,-4.195039977999883],[30.051477906000084,-4.18015716599993],[30.119587443000082,-4.123519795999854],[30.149766479000075,-4.086829527999882],[30.173227579000155,-4.046315205999875],[30.175852307000156,-4.039991996999916],[30.191417684000182,-4.002493591999865],[30.2087809650001,-3.930456644999893],[30.220769898000043,-3.909992777999918],[30.27327315200014,-3.856249287999915],[30.31172041800008,-3.789896748999809],[30.336990194000148,-3.77377370199983],[30.38158695400014,-3.788346455999871],[30.384997599000172,-3.770776467999894],[30.381897014000145,-3.755170185999858],[30.37621260600011,-3.73977060999988],[30.371975138000067,-3.722924092999903],[30.373068378000056,-3.704339017999871],[30.37311202000015,-3.703597106999936],[30.38014001500008,-3.685613708999867],[30.42137780700008,-3.620811461999864],[30.428870890000066,-3.602207946999983],[30.429232625000196,-3.583914488999838],[30.426855510000138,-3.563864033999877],[30.432281535000097,-3.551875101999826],[30.4601351310001,-3.531927997999986],[30.462615600000078,-3.52789723699982],[30.46633630400018,-3.516115009999822],[30.468920126000082,-3.513014424999952],[30.4855599370002,-3.510533955999974],[30.48752364100002,-3.510740661999847],[30.48804040600018,-3.512601012999852],[30.507160685000173,-3.511050719999929],[30.508245890000154,-3.508880309999853],[30.509951213000107,-3.500198668999885],[30.511501505000155,-3.497718200999913],[30.538114869000054,-3.491620381999851],[30.544987834000068,-3.489139912999875],[30.552946004000123,-3.482215270999802],[30.56596846500022,-3.466712340999891],[30.612890666000084,-3.444904886999864],[30.639142293000216,-3.41948008199985],[30.640434204000172,-3.392815042999899],[30.61025015400011,-3.376358647999879],[30.603278849000187,-3.372557880999806],[30.621675659000086,-3.350440368999898],[30.6405375570001,-3.332870380999821],[30.662603393000182,-3.319227803999823],[30.689940227000225,-3.308892516999904],[30.70223921700008,-3.307342223999797],[30.712006063000132,-3.301864521999889],[30.71841394100008,-3.292872822999939],[30.72146285000011,-3.280987242999913],[30.747921184000095,-3.29411305699989],[30.775671427000102,-3.291012470999846],[30.79975264500015,-3.274579365999884],[30.814842163000066,-3.247707621999965],[30.814325399000012,-3.2419198609999],[30.80988122500011,-3.224143167999884],[30.809364461000055,-3.216805114999886],[30.823523804000015,-3.196651305999822],[30.832205444000095,-3.172776794],[30.83396244300016,-3.160271097999924],[30.832928915000167,-3.14766204899989],[30.828794800000164,-3.140530700999946],[30.81582401500023,-3.131022236999882],[30.812258341000046,-3.123477477999828],[30.813085164000114,-3.117689717999852],[30.817839396000096,-3.104357197999831],[30.817684366000066,-3.09908620199981],[30.80781416800008,-3.085236917999836],[30.78321618600009,-3.062085876999844],[30.77825524900001,-3.047409768999856],[30.784869833000098,-3.031493427999834],[30.81582401500023,-2.995836689999933],[30.818814624000225,-2.99049517499985],[30.825487508000066,-2.978576760999943],[30.8021297610002,-2.978370055999903],[30.755414266000148,-2.991392516999838],[30.732056519000167,-2.993459573999899],[30.718879029000192,-2.989532164999929],[30.695986369000167,-2.974546],[30.683687378000144,-2.969998473999837],[30.671336711000063,-2.970825296999848],[30.661363159000047,-2.974752705999919],[30.650924520000128,-2.97733652699982],[30.637592001000115,-2.974442646999833],[30.634904825000177,-2.970101826999851],[30.63211429800012,-2.953772073999829],[30.62953047700009,-2.947674254999867],[30.625189656000227,-2.94478037499988],[30.61196049000014,-2.939199320999861],[30.547003215000103,-2.900338642999898],[30.538890015000074,-2.898995055999833],[30.524937378000203,-2.904162699999844],[30.513051798000074,-2.913981221999904],[30.493259725000172,-2.94126637699982],[30.488453817000188,-2.943540139999925],[30.488325079000077,-2.943160057999918],[30.484112996000103,-2.930724385999852],[30.47543135600003,-2.922146097999914],[30.469643595000065,-2.914187926999858],[30.474191121000132,-2.90323252399989],[30.45600101700009,-2.898271585999836],[30.440808146000133,-2.884008890999866],[30.415796753000137,-2.851659443999878],[30.41362634300017,-2.834399515999876],[30.42509851000008,-2.812178648999932],[30.446905965000184,-2.782723082999851],[30.447267700000083,-2.757298278999841],[30.450523315000083,-2.74179534899983],[30.45858483900005,-2.728669534999852],[30.516100708000092,-2.668311461999863],[30.52256026200004,-2.649397888],[30.499615926000132,-2.657872822999821],[30.463752482000157,-2.674202575999942],[30.44266849800013,-2.681127217999844],[30.423238159000075,-2.680920511999886],[30.412127726000133,-2.670171813999858],[30.416003459000105,-2.645573831999882],[30.42416833500013,-2.633171487999988],[30.448042846000103,-2.610537210999865],[30.457654663000113,-2.598031514999946],[30.461995483000095,-2.587489521999899],[30.47016036000011,-2.55576019299987],[30.50809086100011,-2.46346608399989],[30.52147505700023,-2.44227874799985],[30.554599650000142,-2.400627542999914],[30.573926636000095,-2.38925872799993],[30.595217325000103,-2.391945901999861],[30.616921427000104,-2.398147073999937],[30.637850382000092,-2.397010192999929],[30.649064168000137,-2.38760508199988],[30.663326864000194,-2.360733336999886],[30.674799031000216,-2.35174163799985],[30.687718139000108,-2.349984638999871],[30.69846683700015,-2.353395283999973],[30.750660034000106,-2.379130146999884],[30.758824910000072,-2.381093851999907],[30.767919963000192,-2.37861338299993],[30.775154663000105,-2.374479267999916],[30.7891073000001,-2.371068623999804],[30.804558553000078,-2.362180276999879],[30.821353394000226,-2.354738870999853],[30.834375855000104,-2.345333759999903],[30.844711141000086,-2.326626891999908],[30.84894860800014,-2.30626637799989],[30.844711141000086,-2.237846780999888],[30.853392782000153,-2.193818460999921],[30.88780928500009,-2.082507425999893],[30.879437703000093,-2.053465270999979],[30.868740682000208,-2.038995869999951],[30.853496135000082,-2.023699644999823],[30.835461059000096,-2.014707946999863],[30.81675419100011,-2.018738707999859],[30.82993168100009,-1.96055104499986],[30.82693444900016,-1.934092711999867],[30.796962118000096,-1.929338479999956],[30.80192305500023,-1.921276956999876],[30.80802087400011,-1.914765725999814],[30.82424727300022,-1.902053324999855],[30.81659916200013,-1.88417327899981],[30.822231893000065,-1.868773701999914],[30.832412150000064,-1.853787536999931],[30.83788985200013,-1.836837666999927],[30.82993168100009,-1.796736754999841],[30.826417684,-1.786194762999884],[30.83788985200013,-1.758702900999907],[30.835409383000037,-1.7495044959999],[30.826521037000163,-1.735861917999983],[30.82424727300022,-1.730694273999802],[30.82455733300011,-1.719945576999961],[30.83747644000013,-1.64108734099986],[30.838303263000025,-1.615352477999863],[30.831016887000175,-1.594165139999816],[30.80724572800008,-1.603260192999869],[30.791587768000145,-1.590961201999931],[30.781975952000067,-1.56843027699999],[30.77226078300012,-1.532463479999848],[30.7678166100001,-1.524815368999867],[30.755414266000148,-1.511586201999862],[30.738877808000122,-1.48946868799986],[30.732935018,-1.47644622799983],[30.73825769000004,-1.470658467999854],[30.7413582770001,-1.458876240999842],[30.743218628000104,-1.432831318999874],[30.73753422000007,-1.406683043999948],[30.71810388100019,-1.394900817999868],[30.69846683700015,-1.392110290999895],[30.632424357000076,-1.367615660999846],[30.623225952000123,-1.362034606999842],[30.608239787000144,-1.347771911999942],[30.597697795000077,-1.340330504999841],[30.568242228000177,-1.328134867999921],[30.555323120000164,-1.318419697999886],[30.54994877100009,-1.302400003999836],[30.550982300000072,-1.294958597999909],[30.553359416,-1.289067483999816],[30.555633179000125,-1.284726663999834],[30.55661503100012,-1.281626077999888],[30.554599650000142,-1.27346120199995],[30.545297892000146,-1.261368915999881],[30.539406779000014,-1.241008401999935],[30.52121667500009,-1.210829365999857],[30.51511885600021,-1.19625661199997],[30.51119144700007,-1.170418395999874],[30.506953979000198,-1.164217223999884],[30.494654989000054,-1.155328876999874],[30.49052087400017,-1.156465758999872],[30.484009643000174,-1.159979755999842],[30.476051473000126,-1.161219990999953],[30.467266479000017,-1.155328876999874],[30.465612834000094,-1.149334410999927],[30.468300008000114,-1.143339944999823],[30.472072388000157,-1.137655537999862],[30.474191121000132,-1.131764424999872],[30.4708838290002,-1.118121845999866],[30.456311076000162,-1.108096617999834],[30.45300378500016,-1.097347919999905],[30.45615604700012,-1.086082457999851],[30.463855835000086,-1.075127054999882],[30.471785843000163,-1.066836591999945],[30.472950887000167,-1.065618590999804],[30.48101241100008,-1.059107360999832],[30.493414754000153,-1.060244241999839],[30.500856160000154,-1.065205179999793],[30.506023803000087,-1.070786233999812],[30.511656535000185,-1.073370055999902],[30.523697143000074,-1.072439880999852],[30.542300660000105,-1.068099059999952],[30.59273685700012,-1.063448180999984],[30.614544311000113,-1.065825296999847],[30.638625529000105,-1.073370055999902],[30.65133793100003,-1.062828063999845],[30.68709802300023,-1.025000914999864],[30.701567424000103,-1.01745615599981],[30.739497925000105,-1.005467223999858],[30.777118367000213,-0.985830179999823],[30.812465048,-0.994718525999829]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Uganda","sov_a3":"UGA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uganda","adm0_a3":"UGA","geou_dif":0,"geounit":"Uganda","gu_a3":"UGA","su_dif":0,"subunit":"Uganda","su_a3":"UGA","brk_diff":0,"name":"Uganda","name_long":"Uganda","brk_a3":"UGA","brk_name":"Uganda","brk_group":null,"abbrev":"Uga.","postal":"UG","formal_en":"Republic of Uganda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uganda","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":4,"pop_est":32369558,"gdp_md_est":39380,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"UG","iso_a2":"UG","iso_a3":"UGA","iso_n3":"800","un_a3":"800","wb_a2":"UG","wb_a3":"UGA","woe_id":23424974,"woe_id_eh":23424974,"woe_note":"Exact WOE match as country","adm0_a3_is":"UGA","adm0_a3_us":"UGA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"UGA.geojson"},"geometry":{"type":"Polygon","coordinates":[[[34.10802616400014,3.868938091000103],[34.12373579900009,3.87203867600006],[34.1634232990001,3.886198019000105],[34.18285363700004,3.886094666000076],[34.204971151000166,3.874544983000135],[34.20755497300007,3.860876567000119],[34.19670292200004,3.847389018000058],[34.14895389800006,3.82268768300014],[34.15081425000005,3.817209981000061],[34.16652388500006,3.811318868000057],[34.179029582000055,3.796100159000119],[34.15908247900012,3.783361919000057],[34.15246789500014,3.775636292000058],[34.16518029800005,3.770830383000146],[34.17365523300009,3.771398824000102],[34.19091516100008,3.775842997000026],[34.21055220500011,3.777134908000064],[34.2303959560001,3.782741801000086],[34.24093794700008,3.783620300000039],[34.24155806500005,3.778736878000103],[34.26377893000005,3.750056457000098],[34.27886844900007,3.709723002000146],[34.29044396900008,3.703160095000072],[34.295094848000076,3.707345886000098],[34.29943566900005,3.716931864000102],[34.309874309000065,3.726698710000065],[34.337056112000084,3.734579366000105],[34.35503951000004,3.727370504000135],[34.38749231000008,3.692747294000128],[34.40630253100011,3.682928772000067],[34.42500939900009,3.677192688000105],[34.43968550600004,3.667735901000128],[34.446403443000065,3.646703593000026],[34.44392297400009,3.566295065000077],[34.43451786300005,3.52621999100009],[34.415500936000115,3.497022807000064],[34.406199178000065,3.492294414000071],[34.39596724400007,3.489607239000051],[34.38687219200011,3.485628153000064],[34.38129113800011,3.476868998000086],[34.38211796000013,3.466042786000045],[34.39441695200014,3.444622904000113],[34.398551066000095,3.433641662000127],[34.39700077300006,3.424159037000067],[34.386975546000144,3.399664409000095],[34.383978312000124,3.38834727000004],[34.3865621340002,3.376384176000073],[34.39441695200014,3.365661316000071],[34.40382206200013,3.355403544000083],[34.41116011600013,3.34470652300007],[34.424079223000035,3.304812317000128],[34.43400109900011,3.182029114000073],[34.44485315000014,3.159136455000052],[34.46573042800014,3.145855611000044],[34.51285933400004,3.132368063000072],[34.53383996600013,3.118467102000096],[34.545556343000094,3.09750095300005],[34.54562219200005,3.097383118000067],[34.57466434700012,2.94612620000008],[34.58468957500014,2.928711243000052],[34.61641890500016,2.893416239000146],[34.63140507000014,2.869541728000073],[34.640500122000105,2.860136617000109],[34.654142700000136,2.856519267000124],[34.66034387200011,2.858638001000102],[34.67150598100005,2.867784729000093],[34.67564009600005,2.869800110000128],[34.678120565000135,2.871557109000108],[34.68256473800005,2.879360250000033],[34.6850452070002,2.880962220000072],[34.68886926300007,2.879153545000079],[34.691039673000034,2.875691223000047],[34.692693319000114,2.872228903000092],[34.69465702300005,2.870420227000096],[34.69651737400005,2.86773305300008],[34.72483606000014,2.854142151000076],[34.73010705600006,2.852850240000123],[34.73692834500014,2.844375305000128],[34.740959106000105,2.83553863500012],[34.76131962100004,2.7724933880001],[34.77651249200005,2.685625306000091],[34.818680461000035,2.597982076000079],[34.82808557100009,2.588783671000087],[34.84183150300004,2.587750142000104],[34.849893025000085,2.595139872000104],[34.85650760900011,2.603459778000072],[34.86560266100008,2.604855042000054],[34.8756278890001,2.591212464000137],[34.88131229600015,2.541448059000118],[34.88710005700011,2.522379456000138],[34.91438521300006,2.494370829000033],[34.923583619000055,2.477317607000089],[34.92089644300012,2.454631653000121],[34.9061169840001,2.436906637000106],[34.885963175000086,2.425434469000094],[34.86787642400009,2.411481832000106],[34.85909143100014,2.386780497000089],[34.86560266100008,2.347506409000118],[34.904284074000145,2.254255316000098],[34.92234338300011,2.210718893000148],[34.96750858600006,2.101914164000092],[34.96761193800012,2.082561340000041],[34.95820682800013,2.037964580000121],[34.956656535000036,2.018508403000041],[34.95789676900006,1.997837830000108],[34.96203088300007,1.977813212000072],[34.96916223100004,1.96029490200003],[34.977947225000094,1.949907939000099],[35.00140832500006,1.927997132000129],[35.006472615000064,1.916860860000028],[35.002751912000065,1.906138001000101],[34.984045044000084,1.882470194000078],[34.9797042240001,1.870300395000072],[34.97867069500012,1.675945333000058],[34.97267622900006,1.654241231000057],[34.94094689900004,1.587036031000096],[34.93371219900007,1.575693054000112],[34.92348026500008,1.566107076000108],[34.913558390000105,1.561559550000084],[34.89257775900012,1.557270406000114],[34.88255253000017,1.552231954000135],[34.859504842000035,1.517918803000029],[34.83842085800018,1.43717437800008],[34.77899296100014,1.388546855000072],[34.78074667700014,1.371789122000067],[34.78271366400014,1.352993469000111],[34.80007694500006,1.31232411700006],[34.81051558500013,1.272533264000046],[34.797906535000095,1.231915588000106],[34.76607385300014,1.217497864000094],[34.683804973000065,1.209074606000101],[34.66303104600013,1.196362203000149],[34.62892460100005,1.163599345000137],[34.58045210800009,1.152540589000054],[34.57363081800014,1.13424713100008],[34.57197717300011,1.111716207000143],[34.56688291800015,1.103021686000091],[34.56122847500006,1.093371074000075],[34.5600649320001,1.093149310000101],[34.54035119700012,1.089391988000088],[34.524021444000084,1.098642069000093],[34.507484985000076,1.10251780200015],[34.48702111800014,1.082467347000104],[34.47720259600004,1.064587301000145],[34.46883101400016,1.044226787000113],[34.46366337100005,1.022936096000123],[34.463043254000176,0.978080953000131],[34.4571521410001,0.957617086000084],[34.431210571000065,0.893538310000068],[34.40237512200013,0.856072896000086],[34.388009074000195,0.815816955000059],[34.37085249800015,0.800210673000024],[34.30667037000012,0.768067932000079],[34.298402140000064,0.759282938000098],[34.29625187600004,0.746745807000067],[34.29230432100013,0.723729553000041],[34.276181275000056,0.680838114000082],[34.252100057000064,0.654999898000156],[34.2197506110001,0.638566793000095],[34.17913293400005,0.623890686000109],[34.149574016000145,0.603633524000102],[34.13241743900005,0.572834371000042],[34.13158774800007,0.56943298300007],[34.10750940000008,0.470721741000091],[34.10440881300008,0.462246806000081],[34.09738081800015,0.451808166000149],[34.080120890000046,0.431344300000092],[34.075676717000135,0.42224924700011],[34.07671024600012,0.403852438000115],[34.0879757080001,0.3673688760001],[34.08518518000005,0.347008362000082],[34.07660689300013,0.33377919600008],[34.04064009600012,0.305873921000099],[33.96026592400017,0.198677206000127],[33.95175663300006,0.187328186000087],[33.89356896900006,0.109813538000125],[33.890468384000144,0.090073140000072],[33.92157759600008,-0.012969664999929],[33.95248010200009,-0.115702412999937],[33.95351363100008,-0.154356383999939],[33.935116821000065,-0.31310638399988],[33.91134566200009,-0.519295348999904],[33.894809204000126,-0.662749124999891],[33.898529907000125,-0.799071553999923],[33.90421431500005,-1.002573343999913],[33.822255493000114,-1.002573343999913],[33.63926924600008,-1.002573343999913],[33.631776971000136,-1.002573343999913],[33.456127970000125,-1.002573343999913],[33.426414846000114,-1.002573343999913],[33.273090047000096,-1.002573343999913],[33.08994877100014,-1.002573343999913],[32.90696252400011,-1.002573343999913],[32.84722537600004,-1.002573343999913],[32.72387292500008,-1.002573343999913],[32.722267718000126,-1.002573343999913],[32.54083500200005,-1.002573343999913],[32.35764205000003,-1.002573343999913],[32.17455244900008,-1.002573343999913],[31.991411173000127,-1.002573343999913],[31.986192661000075,-1.002573343999913],[31.808373251000035,-1.002573343999913],[31.62533532700007,-1.002573343999913],[31.442245727000056,-1.002573343999913],[31.280492691000063,-1.002573343999913],[31.259156128000082,-1.002573343999913],[31.076118204000064,-1.002573343999913],[30.892976928000106,-1.002573343999913],[30.82838138800014,-1.002573343999913],[30.812465048000032,-0.994718525999886],[30.77711836700013,-0.985830179999866],[30.73949792500008,-1.005467223999901],[30.70156742400007,-1.017456155999866],[30.68709802300015,-1.025000914999907],[30.65133793100006,-1.062828063999888],[30.63862552900008,-1.073370055999945],[30.614544311000145,-1.065825296999904],[30.592736857000034,-1.063448180999956],[30.542300660000137,-1.068099059999923],[30.52369714300005,-1.072439880999894],[30.511656535000096,-1.073370055999945],[30.506023803000062,-1.070786233999854],[30.500856160000065,-1.065205179999836],[30.493414754000128,-1.060244241999882],[30.48101241100005,-1.059107360999874],[30.472950887000078,-1.065618590999847],[30.47178584300013,-1.066836591999916],[30.460828623000108,-1.063427549999929],[30.445614054000142,-1.058693948999874],[30.432023153000046,-1.060554300999868],[30.41889733900007,-1.066445413999872],[30.40318770300013,-1.070372822999929],[30.386341186000035,-1.068202412999937],[30.36928796400008,-1.063241474999899],[30.35275150500013,-1.060761006999925],[30.337455282000064,-1.066238707999915],[30.32903202300008,-1.080501402999886],[30.322572469000136,-1.121842549999926],[30.317404826000086,-1.137035419999947],[30.31130700700004,-1.142099710999929],[30.294563843000102,-1.149644469999885],[30.290949658000102,-1.152620856999945],[30.287535848000115,-1.15543222999986],[30.284641968000127,-1.161426695999879],[30.28241988200011,-1.175792744999882],[30.28050785300007,-1.182407327999968],[30.269759156000074,-1.200494079999899],[30.2566850180001,-1.217237243999932],[30.212191610000104,-1.259508564999919],[30.196740356000134,-1.268706969999925],[30.18935062700012,-1.270877379999916],[30.18139245600014,-1.271497497999889],[30.173434286000084,-1.272841084999939],[30.165579468000146,-1.277491963999907],[30.158448120000116,-1.291134541999923],[30.152350301000066,-1.329891865999855],[30.147182658000077,-1.34508473699988],[30.1363306070001,-1.355213317999926],[30.095506226000108,-1.371129658999948],[30.065984343000135,-1.386944953999958],[30.06077966300006,-1.389733174999904],[30.047757202000124,-1.403169046999949],[30.03866215000005,-1.42497650099989],[30.02832686300008,-1.427146911999969],[29.960424032000105,-1.464767353999903],[29.938461548000134,-1.472932230999916],[29.917429240000047,-1.475205993999836],[29.89789554800012,-1.469624938999914],[29.88073897300006,-1.453605244999963],[29.871023804000114,-1.432417906999902],[29.86864668800007,-1.391283466999923],[29.864202514000052,-1.370302835999922],[29.836090536000146,-1.329478454999929],[29.825135132000067,-1.323897399999922],[29.825024114000087,-1.323880810999881],[29.816143432000104,-1.322553812999956],[29.807461792000137,-1.325137633999859],[29.798211711000132,-1.330925394999923],[29.789168335000053,-1.341674092999952],[29.78317386900005,-1.361414488999912],[29.77490563900011,-1.366272073999937],[29.767980997000105,-1.36379160499996],[29.74669030800004,-1.350872496999941],[29.734804728000082,-1.348185322999925],[29.710516805000108,-1.352526142999906],[29.693773641000064,-1.361207783999859],[29.67832238800008,-1.372369892999899],[29.657703491000063,-1.383945413999939],[29.639099976000125,-1.389009703999918],[29.618119344000092,-1.390559996999926],[29.577915080000082,-1.388389587999939],[29.58732019100006,-1.329685159999897],[29.5871134840001,-1.310564879999902],[29.583186076000118,-1.299299417999933],[29.571507202000134,-1.279248961999897],[29.57099043800008,-1.268603616999897],[29.580447225000054,-1.243282164999911],[29.581429077000053,-1.234807229999916],[29.575537964000034,-1.213206480999943],[29.565254354000047,-1.197910257999894],[29.557037801000032,-1.181787210999914],[29.55693444800016,-1.157705992999865],[29.56913008700008,-1.095900979999968],[29.570060262000137,-1.077917581999884],[29.56592614800013,-1.058590595999931],[29.55119836400013,-1.020143330999886],[29.54845951300007,-1.002573343999913],[29.551353394000046,-0.990584411999862],[29.55151757200008,-0.99030530899995],[29.556521037000152,-0.981799417999881],[29.56034509300008,-0.97208424799993],[29.559156535000113,-0.95730478899992],[29.555280802000137,-0.938494567999911],[29.554660686000148,-0.928572691999903],[29.556004273000042,-0.919477640999929],[29.56716638200004,-0.901907653999956],[29.596725301000106,-0.891882425999938],[29.607990764000135,-0.878446553999893],[29.610781291000137,-0.863977152999951],[29.61336511200011,-0.803825784999916],[29.611091349000105,-0.782741799999883],[29.602203003000056,-0.743777770999898],[29.60302982600012,-0.722900491999923],[29.615535522000126,-0.644145608999921],[29.618842814000118,-0.638977965999928],[29.624423868000118,-0.634843851999904],[29.629281453000146,-0.629779560999921],[29.630573364000096,-0.622028095999923],[29.62824792500004,-0.61603362999989],[29.62049646000014,-0.605388284999904],[29.618842814000118,-0.599393818999957],[29.622873576000075,-0.588438414999899],[29.632175334000124,-0.585751240999869],[29.642820679000124,-0.585027770999957],[29.6508822020001,-0.579550068999879],[29.653052612000124,-0.56559743199989],[29.649745320000083,-0.504309182999933],[29.64509444200013,-0.48890960699994],[29.634614925000108,-0.46696811899993],[29.631865275000052,-0.46121103899992],[29.629384806000076,-0.442400817999911],[29.650980745000084,-0.316454752999903],[29.65398278800006,-0.298947041999938],[29.670569225000175,-0.200867429999903],[29.676617066000123,-0.165105081999869],[29.694032023000148,-0.063095804999946],[29.70901818800013,-0.026302184999864],[29.71434086100004,-0.007491962999936],[29.713462362000087,0.011628316000056],[29.701628458000073,0.055243226000101],[29.70307539900017,0.072503154000088],[29.711808715000075,0.099581604000136],[29.75578535900013,0.160869853000094],[29.761263062000122,0.172135315000062],[29.77304528800011,0.167484436000095],[29.780383342000107,0.16117991100009],[29.787204630000133,0.15849273700006],[29.79712650600004,0.164797261000075],[29.800640502000075,0.172445374000048],[29.83262821500017,0.33698313400015],[29.839604533000113,0.358480530000094],[29.851076701000178,0.377187399000078],[29.903908655000063,0.43822920900007],[29.92290694200011,0.460179748000115],[29.92608285600011,0.46707335100011],[29.940476928000063,0.498316956000082],[29.937996460000132,0.537280985000081],[29.91949629700008,0.61810292500013],[29.920013061000134,0.638670145000034],[29.93231205300009,0.723161113000074],[29.92683435000009,0.774889221000123],[29.928281290000086,0.785017802000084],[29.947298218000125,0.824601950000044],[29.96021732600008,0.832095032000083],[29.982194040000135,0.84901710200009],[29.99639082900006,0.859948629000144],[30.038352092000082,0.878913879000095],[30.14511560000011,0.903150126000085],[30.154830770000046,0.90867950500008],[30.165682820000086,0.921443583000055],[30.183769572000074,0.955136617000107],[30.186870158000147,0.958753968000096],[30.191521037000086,0.974877014000072],[30.21405196100011,0.998544820000106],[30.22097660300011,1.01709666000005],[30.215602255000135,1.057766012000087],[30.215292195000075,1.077092997000136],[30.228004598000037,1.089030253000089],[30.231518596000058,1.097763570000069],[30.234102417000088,1.108098857000073],[30.236169475000054,1.129492900000088],[30.23885664900007,1.13600413000006],[30.269345744000134,1.167268371000134],[30.2779757080001,1.171609192000119],[30.28650231900013,1.174296366000064],[30.295700724000085,1.172642721000102],[30.306552775000053,1.163909404000123],[30.32381270300004,1.155847880000053],[30.33606001800007,1.168870341000087],[30.348203980000047,1.189024150000066],[30.364947143000105,1.2020466110001],[30.376626017000092,1.203080140000083],[30.399260295000147,1.200599670000102],[30.41269616700009,1.2020466110001],[30.43160974100005,1.207007548000135],[30.445562378000204,1.212795309000114],[30.458274780000064,1.221683655000035],[30.478273560000105,1.238633525000125],[30.553704453000076,1.335632478000107],[30.597284383000044,1.391673279000116],[30.68172367300008,1.500348816000056],[30.817012573000056,1.609515279000107],[30.954420207000165,1.720671285000108],[31.025837036000098,1.778238831000053],[31.0960175470002,1.866363001000067],[31.119112996000123,1.89536346400007],[31.183295125000086,1.976211243000137],[31.24282637600004,2.05116790800011],[31.27145511900005,2.102999370000092],[31.280095681000088,2.151441144000103],[31.280446818000083,2.153409729000089],[31.27873986900005,2.156021156000065],[31.267476033000037,2.173253479000081],[31.21089034000005,2.205344543000095],[31.190116415000034,2.22151926700009],[31.182468302000128,2.238727519000065],[31.179057658000147,2.259759827000082],[31.17755904100011,2.30290964800011],[31.12924157700007,2.284667868000057],[31.112601766000065,2.282084045000147],[31.099062540000094,2.282704163000119],[31.05524092600007,2.290248922000075],[31.040668172000036,2.29789703300014],[31.035500529000103,2.306940409000106],[31.038807820000105,2.310971171000091],[31.04438887500004,2.313916728000094],[31.04593916800007,2.319652812000058],[31.04356205200008,2.327042542000072],[31.041288289000075,2.331228333000098],[30.98485762600006,2.39463531500013],[30.968011109000088,2.405435689000072],[30.930907430000104,2.405590719000102],[30.91447432400014,2.378150534000056],[30.900573364000138,2.345956116000095],[30.87178959200014,2.33205515500012],[30.854943075000048,2.339703268000108],[30.836339559000123,2.356343078000123],[30.819803101000105,2.375980123000147],[30.80967452000004,2.392361552000111],[30.80698734500004,2.40698598200008],[30.80714237500007,2.422178853000105],[30.80492028800006,2.434374491000128],[30.794998413000084,2.440110575000091],[30.724925171000052,2.440782369000075],[30.710559123000053,2.445123189000057],[30.707665243000065,2.462279765000104],[30.71676029400004,2.483105367000064],[30.72936934400013,2.5034658820001],[30.7370174560001,2.519537252000063],[30.737844279000058,2.537468974000134],[30.734020223000126,2.574469300000089],[30.73526045800014,2.593072815000141],[30.73939457200009,2.603304749000117],[30.758928263000083,2.63379384400011],[30.76125370300008,2.64159698500012],[30.762013299000042,2.645781198000122],[30.76430261300004,2.658391825000095],[30.797685587000103,2.748360495000043],[30.798925822000054,2.753528138000135],[30.799132528000086,2.763450012000135],[30.801612997000063,2.769082743000069],[30.805850464000116,2.771873271000118],[30.817942749000107,2.774198710000064],[30.82187015700009,2.776162415000087],[30.82869144700004,2.78608429000009],[30.853392782000128,2.853367005000067],[30.854839722000122,2.893209534000093],[30.843987671000093,2.932793681000149],[30.820939982000198,2.973152975000118],[30.80362837700011,2.989069316000041],[30.75706791200008,3.021470439000055],[30.745078980000184,3.036301575000081],[30.743838745000062,3.055473531000089],[30.747869507000075,3.076712545000063],[30.763415783000138,3.123436950000083],[30.804196818000097,3.246004537000147],[30.82212854000005,3.281402893000077],[30.82574589000012,3.283676656000082],[30.837786499000117,3.286415507000129],[30.842437377000063,3.288740946000061],[30.845641317000112,3.293908589000068],[30.846881551000077,3.304398906000116],[30.848690226000144,3.309256490000038],[30.86848230000004,3.343337097000102],[30.89731774900008,3.375014750000105],[30.904932931000072,3.386035094000121],[30.910030152000044,3.393411560000104],[30.916334676000133,3.414805603000119],[30.91447432400014,3.426484477000088],[30.90444909700011,3.447465108000088],[30.90289880400007,3.458911438000101],[30.909616740000104,3.487178447000076],[30.909306681000146,3.496144307000108],[30.896387573000194,3.519967143000088],[30.880161174000136,3.514411927000083],[30.86124759900008,3.498211365000074],[30.83954349800007,3.490201518000106],[30.843780966000107,3.50591115300007],[30.86569177300009,3.548957621000071],[30.93173425300012,3.645101624000091],[30.93628177900007,3.656858012000086],[30.939382365000085,3.668407695000028],[30.94444665500009,3.67928558300008],[30.95550541200009,3.689000753000116],[30.965995727000116,3.6926181030001],[30.98578780100013,3.692127177000074],[30.99596805800007,3.693522440000052],[31.00955896000005,3.699775289000044],[31.040358114000124,3.724218242000092],[31.049659871000074,3.727990621000103],[31.068676798000126,3.731737162000129],[31.07766849800009,3.735302836000102],[31.10440848700011,3.756175184000114],[31.14148889200004,3.785118917000133],[31.167585490000075,3.792405294000118],[31.21481774900013,3.792353617000103],[31.25574548300005,3.786669210000057],[31.29501957200011,3.774189352000064],[31.377701863000084,3.729308370000069],[31.505446004000074,3.659855245000102],[31.5237394610001,3.656082866000077],[31.534519828000043,3.665562968000117],[31.53552168800007,3.66644399000009],[31.547200562000054,3.680990906000133],[31.564770549000112,3.689801737000039],[31.668536825000103,3.705020447000066],[31.686830282000074,3.712823589000095],[31.69613203900013,3.721272685000088],[31.775713745000136,3.810698751000089],[31.777884155000038,3.816434835000052],[31.780984741000054,3.815814718000084],[31.801106597000057,3.806472428000078],[31.807029663000037,3.803722433000089],[31.830697469000082,3.783878683000097],[31.901907593000203,3.70429697700007],[31.916273641000142,3.680267436000051],[31.920046021000072,3.661302185000096],[31.923094930000104,3.615284323000083],[31.930019572000045,3.598360290000087],[31.943662150000076,3.591254781000146],[32.022235907000095,3.586420195000087],[32.03016849700009,3.585932109000111],[32.04153731300005,3.579860128000064],[32.05422597800009,3.559571835000057],[32.06086429900011,3.548957621000071],[32.076160523000055,3.533170471000076],[32.093007040000145,3.524462993000114],[32.15584558100011,3.511776428000061],[32.16798954200004,3.512241516000088],[32.17455244900008,3.520897318000053],[32.17592855800018,3.527233818000127],[32.1789966230001,3.541361185000099],[32.17920332800008,3.55686411500011],[32.1748625080001,3.592650045000127],[32.17594771300008,3.605594991000145],[32.18778161600011,3.619160054000133],[32.371801391000076,3.731065369000135],[32.41557133000009,3.741297303000124],[32.59928104700009,3.756283468000091],[32.75642907700012,3.769021708000068],[32.8403516030001,3.794291484000041],[32.91889978100005,3.834159851000067],[32.97956791200005,3.879195862000103],[32.99724125100004,3.88552622500012],[33.017240031000085,3.877180481000053],[33.14348555500015,3.774085999000135],[33.164466186000084,3.763053080000134],[33.19542036900009,3.757058614000101],[33.28652591900004,3.752536926000075],[33.44734297700012,3.74437205100007],[33.49064782700009,3.749746399000117],[33.527716349000116,3.771430572000071],[33.53260909000011,3.774292705000093],[33.60619632900011,3.848086650000141],[33.70190108200018,3.944075623000117],[33.81367720500015,4.056032614000046],[33.896049438000034,4.138353170000116],[33.97707808500007,4.219691875000108],[34.00601688700004,4.205713399000118],[34.02854781100006,4.188014221000103],[34.04105350800006,4.164811503000095],[34.03970992100011,4.134038187000044],[34.04095015500013,4.120421448000045],[34.04973514800008,4.109466044000072],[34.060897257000136,4.099259949000086],[34.06926883900013,4.088020325000045],[34.07236942600014,4.076418966000091],[34.07267948400005,4.064662577000092],[34.06978560300007,4.041356506000056],[34.06585819500009,4.027429708000071],[34.0615173750001,4.017921245000096],[34.06110396300011,4.007766825000132],[34.06895878100005,3.991876323000113],[34.08084436100006,3.980791728000099],[34.09552046700014,3.970999044000052],[34.107095988000076,3.959501037000109],[34.10957645600007,3.943352152000032],[34.09893111200006,3.917720642000063],[34.086218709000036,3.894672953000097],[34.08477176900004,3.877335510000094],[34.10802616400014,3.868938091000103]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"South Africa","sov_a3":"ZAF","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Africa","adm0_a3":"ZAF","geou_dif":0,"geounit":"South Africa","gu_a3":"ZAF","su_dif":0,"subunit":"South Africa","su_a3":"ZAF","brk_diff":0,"name":"South Africa","name_long":"South Africa","brk_a3":"ZAF","brk_name":"South Africa","brk_group":null,"abbrev":"S.Af.","postal":"ZA","formal_en":"Republic of South Africa","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"South Africa","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":4,"mapcolor13":2,"pop_est":49052489,"gdp_md_est":491000,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10_":"SF","iso_a2":"ZA","iso_a3":"ZAF","iso_n3":"710","un_a3":"710","wb_a2":"ZA","wb_a3":"ZAF","woe_id":23424942,"woe_id_eh":23424942,"woe_note":"Exact WOE match as country","adm0_a3_is":"ZAF","adm0_a3_us":"ZAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ZAF.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[37.86378014400023,-46.94085051899984],[37.836436394000174,-46.95867278399998],[37.8064884770001,-46.96575286299996],[37.798106316000116,-46.96453215899986],[37.78109785200016,-46.959405205999836],[37.67017662900011,-46.955987237999835],[37.65503991000011,-46.95826588299998],[37.618825717000135,-46.954359632999896],[37.60206139400012,-46.94866301899992],[37.58741295700011,-46.93840911299998],[37.58253014400012,-46.930759372999866],[37.57667076900006,-46.91676197699991],[37.57536868600019,-46.90349700299997],[37.59359785200016,-46.89202239399983],[37.615407748000194,-46.86874765399992],[37.6248478520001,-46.863376559999864],[37.63111412900017,-46.858575127999956],[37.65235436300017,-46.836114190999965],[37.66244550900015,-46.82854583099999],[37.694834832000225,-46.82203541499992],[37.72852623800023,-46.82529062299996],[37.82105553500011,-46.844170830999985],[37.86841881600017,-46.88209400799983],[37.895762566000116,-46.8899065079999],[37.884938998000024,-46.916436455999886],[37.86378014400023,-46.94085051899984]]],[[[37.97641035200016,-46.64470794099995],[37.93864993600019,-46.65439218499992],[37.89112389400011,-46.649672132999825],[37.861094597000175,-46.63616301899985],[37.86491946700008,-46.614190362999835],[37.90040123800017,-46.59970468499996],[37.94556725400011,-46.59832122199998],[37.977793816000116,-46.61565520599997],[37.97641035200016,-46.64470794099995]]],[[[29.661424194000087,-22.12645192499987],[29.67961429800013,-22.138337503999978],[29.691448201000213,-22.13410003599985],[29.758885946000163,-22.13089609799988],[29.779246460000106,-22.136373798999866],[29.83733077000008,-22.17244394899987],[29.871488892000144,-22.179265238999918],[29.896035197000202,-22.191357523999983],[29.9321053470002,-22.194354756],[29.94667810100006,-22.198282165999885],[29.97396325700018,-22.21399180099995],[29.983781779000168,-22.217712503999948],[30.005279175000197,-22.2222600299999],[30.015511109000187,-22.227014260999894],[30.034528035000132,-22.24613454199998],[30.035871623000133,-22.250578714999804],[30.038145385000146,-22.253782653999945],[30.06791101100012,-22.257089944999947],[30.082587117000088,-22.262877705999838],[30.111112508000165,-22.282308044],[30.135090373000168,-22.293573506999877],[30.15266035900007,-22.294813740999913],[30.196998738000186,-22.28912933399995],[30.221700073000104,-22.290886331999943],[30.240406942000188,-22.29615732799988],[30.25528975500006,-22.304735615999984],[30.269345744000166,-22.316414488999882],[30.300765014000177,-22.336981709999876],[30.33497481300017,-22.34473317499996],[30.372078491000167,-22.343492939999848],[30.41269616700012,-22.33687835599993],[30.431713094000173,-22.3311939499999],[30.469230184000168,-22.315070901999917],[30.488453817000188,-22.310213316999977],[30.507367391000148,-22.309593200999927],[30.572169637000144,-22.316621195999844],[30.601108439000114,-22.316414488999882],[30.610306844000117,-22.3186882519999],[30.625551391000013,-22.328610127999895],[30.632424357000076,-22.330677184999942],[30.6474105230001,-22.32643971799982],[30.67428226700005,-22.308559671999944],[30.6939193110002,-22.30277191099988],[30.80528202300016,-22.294503681999927],[30.83788985200013,-22.282308044],[30.867087036000072,-22.289646096999988],[30.92718672700019,-22.29574391599995],[31.03612064600011,-22.319618427999856],[31.070330444000064,-22.333674417999873],[31.087642049000095,-22.33687835599993],[31.097047967000123,-22.334922386000017],[31.104540243000056,-22.33336435999989],[31.13771651200008,-22.31848154699985],[31.152599325000125,-22.316414488999882],[31.163348023000168,-22.32261566199996],[31.183656860000184,-22.3455599979999],[31.19068485500011,-22.350624287999878],[31.19786787900014,-22.35258799199991],[31.213474162000097,-22.361889749999843],[31.221535685000074,-22.36488698299995],[31.229597209000048,-22.36395680699981],[31.24572025600011,-22.357548929999865],[31.25564213000021,-22.357962340999876],[31.26561568200023,-22.365507099999917],[31.288921753000093,-22.397339782999964],[31.279103231000107,-22.41532318199995],[31.323338257000017,-22.542860616],[31.374911336000224,-22.691585387999908],[31.426381063000147,-22.840103454999873],[31.467618856000147,-22.95895924799987],[31.53634851100011,-23.156983337999876],[31.542446330000047,-23.187265726999897],[31.52146569900017,-23.41557220399993],[31.52761519300023,-23.456809996999922],[31.5462703860002,-23.492363382999898],[31.642285197000064,-23.587861429999847],[31.662025594000088,-23.624034931999873],[31.700627889000234,-23.749091898999932],[31.741193888000083,-23.83678680399997],[31.755198202000173,-23.85776743499997],[31.774060099000195,-23.87409718799999],[31.83865564000015,-23.917815449999893],[31.85043786600014,-23.93063120499997],[31.855812215000096,-23.94654754599999],[31.856491137000067,-23.962958052999866],[31.863046916000172,-24.121420592999822],[31.869454793000127,-24.163795268000015],[31.926310767000164,-24.276739754999937],[31.961335490000096,-24.34631642599983],[31.986553589000124,-24.42310760499988],[31.99192793800009,-24.50041554699989],[31.983763062000175,-24.56914520199996],[31.984589885000073,-24.708464864],[31.985623413000187,-24.876930032999894],[31.986295207000154,-24.996302590999832],[31.98722538200011,-25.1553626499999],[31.988723999000197,-25.372610371999954],[31.971670776000078,-25.42149627699986],[31.96764001500017,-25.44681772899993],[31.966399781000035,-25.47968393899987],[31.97012048400009,-25.51089650400003],[31.980559122000184,-25.531567076999863],[31.986398560000083,-25.552444356999928],[31.995648641000088,-25.61517954499996],[31.995751994000127,-25.636883646999877],[31.99161788000012,-25.65021616599998],[31.98479659000023,-25.65631398499994],[31.97508142100011,-25.6616883339999],[31.96226566600015,-25.672850443999934],[31.95441084800009,-25.684942728999843],[31.911932820000033,-25.7852983599999],[31.9058350010001,-25.812996927999833],[31.909969116000212,-25.842969258999872],[31.94924320400011,-25.958104349999857],[31.891882365000097,-25.983839212999854],[31.86335697400014,-25.989937031999897],[31.834573202000144,-25.982082213999874],[31.746966320000208,-25.93078951799997],[31.730600220000184,-25.92120737799983],[31.63877120000015,-25.86746388799983],[31.53283451300015,-25.805555521999906],[31.42689782700009,-25.743647154999977],[31.401473022000147,-25.735999044],[31.372017456000066,-25.736412455],[31.337394246000112,-25.74468068399996],[31.3092822680002,-25.757393086999826],[31.2084098710001,-25.838628437999972],[31.11983646700011,-25.910045266999987],[31.106865682,-25.930922546999952],[31.091621134000174,-25.98363250699998],[31.037774292000133,-26.100111185999932],[30.969871460000174,-26.20914845799996],[30.89733350400016,-26.29170946499984],[30.89731774900005,-26.2917273969999],[30.804558553000078,-26.397457376999835],[30.782906128000178,-26.47238820399997],[30.784146362000143,-26.57884165499982],[30.785696655000063,-26.716921080999924],[30.795670207000086,-26.78554738299988],[30.802439819000114,-26.808905130999833],[30.81980310100013,-26.807974954999963],[30.83644291200002,-26.805081074999975],[30.853392782000153,-26.79660613999988],[30.868740682000208,-26.784927266999983],[30.880212850000106,-26.77221486399995],[30.885294444000095,-26.785640599999866],[30.902588745000084,-26.831332701999912],[30.915817911000115,-26.84941945399993],[30.944446655000064,-26.876601257],[30.95509200000018,-26.89138071700002],[30.96098311400007,-26.91122446700001],[30.959742879000117,-26.936132506999982],[30.949407593000014,-26.975406595999956],[30.95364506000007,-27.000314635999928],[30.976072632000097,-27.03504119799996],[31.078753703000107,-27.118240253999872],[31.12650272700014,-27.18262908999995],[31.141953980000068,-27.196478372999835],[31.15704349700016,-27.2055734259999],[31.24470661200022,-27.232586323999854],[31.280136759000097,-27.243503925999818],[31.35666955500019,-27.26706838],[31.45945397900013,-27.298694355999896],[31.526529989000124,-27.31088999399982],[31.636910848000213,-27.312233580999973],[31.782535034000173,-27.313990580999942],[31.878601522000196,-27.31523081499989],[31.96826013200004,-27.316264342999958],[31.9677433680001,-27.30303517599988],[31.964849487000066,-27.291666360999983],[31.959785197000226,-27.281021015999897],[31.952963907000107,-27.27016896499985],[31.947382853000104,-27.255492858999958],[31.94485070800007,-27.181388854999838],[31.944204309000185,-27.162338389000013],[31.942111857000068,-27.100670267999988],[31.959681844000134,-27.008789570999838],[31.975288127000084,-26.926624042999904],[31.992237996000057,-26.838257344999985],[31.99006758600009,-26.80828501399995],[32.0571435960002,-26.808595071999843],[32.073163289000064,-26.811385599999895],[32.097761272000156,-26.833503112999903],[32.11388431800011,-26.84001434299988],[32.1431848550001,-26.84569875099983],[32.194086141000206,-26.84032440199986],[32.22302494300018,-26.84135793099985],[32.29583703600005,-26.85200327499993],[32.35221602400006,-26.860271503999883],[32.46890140800011,-26.857377624999984],[32.598092488000106,-26.853966979999864],[32.73844567900014,-26.85024627699994],[32.89307701900006,-26.84612395599993],[32.88054446700008,-26.886895440999893],[32.865244988000114,-27.017347914999817],[32.84693444100017,-27.080987237999878],[32.844574415000096,-27.102715752999856],[32.83936608200011,-27.123630467],[32.80372155000006,-27.16822682099989],[32.80103600400017,-27.176853122999972],[32.79688561300023,-27.205743097],[32.79468834700012,-27.214288018999838],[32.78541100400011,-27.22966887799987],[32.78101647200011,-27.255954684999978],[32.67652428500017,-27.520684503],[32.60718834700012,-27.81373463299998],[32.60572350400017,-27.836114190999922],[32.60377037900011,-27.846368096999853],[32.59441165500019,-27.870049737999963],[32.59148196700008,-27.88079192499988],[32.59131920700011,-27.892998955999943],[32.596934441000116,-27.911797783999987],[32.59831790500019,-27.922458591999927],[32.55054772200012,-28.171563408999972],[32.54395592500006,-28.190118096999896],[32.45997155000012,-28.306735934999907],[32.45427493600002,-28.322686455999914],[32.45036868600002,-28.34563567499999],[32.43921959700012,-28.36663176899985],[32.42204837300008,-28.381931247999987],[32.39966881600017,-28.387872002999842],[32.40333092500012,-28.397556247999972],[32.40699303500017,-28.40032317499985],[32.41211998800006,-28.398695570999834],[32.42017662900011,-28.394707940999936],[32.42823326900023,-28.429375908999916],[32.41724694100017,-28.466485283999845],[32.40072675900009,-28.502699476999865],[32.39210045700011,-28.535332940999908],[32.37940514400023,-28.552829684999864],[32.293142123000194,-28.630954684999878],[32.28003991000011,-28.64006926899995],[32.247894727000094,-28.65390390399996],[32.23511803500011,-28.661553643999895],[32.225433790000096,-28.672621351999922],[32.206797722000175,-28.70134856599998],[32.19361412900017,-28.716241143999934],[32.083750847000175,-28.799493096999967],[32.056325717000135,-28.779473565999908],[32.01685631600017,-28.78492603999993],[31.99398847700016,-28.806247653999986],[32.01612389400012,-28.83359140399997],[32.02409915500019,-28.824965101999883],[32.03736412900011,-28.814711195999948],[32.05339603000019,-28.807061456],[32.07007897200012,-28.80559661299986],[32.05103600400011,-28.837823174999983],[32.01205488400015,-28.866469007999964],[31.888356967000192,-28.924737237999892],[31.852061394000113,-28.93132903399996],[31.813731316000172,-28.930108330999946],[31.76905358200011,-28.922295830999854],[31.770355665000096,-28.930840752999966],[31.772308790000153,-28.93661874800002],[31.77605228000019,-28.94052499799993],[31.782725457000225,-28.943454684999864],[31.782725457000225,-28.949639580999914],[31.752126498000194,-28.966241143999962],[31.557465040000153,-29.161879164999814],[31.51026451900012,-29.19898853999983],[31.494476759000147,-29.20566171699997],[31.48845462300002,-29.209649346999942],[31.486094597000175,-29.215752862999846],[31.482188347000175,-29.233330987999878],[31.478200717000192,-29.236993096999925],[31.46534264400006,-29.244886976999975],[31.42701256600017,-29.292168877999938],[31.412608269000117,-29.30315520599991],[31.378591342000078,-29.32187265399997],[31.365000847000115,-29.3326148419999],[31.36003665500007,-29.34246184699999],[31.35466556100019,-29.363376559999875],[31.342133009000094,-29.370049737999917],[31.333994988000057,-29.37639739399987],[31.32650800900009,-29.38420989399995],[31.31861412900011,-29.402032158999926],[31.186859571000156,-29.560316664999903],[31.05551191500015,-29.78980885199989],[31.045258009000097,-29.829522393999977],[31.055837436000076,-29.86825937299993],[31.015798373000138,-29.868096612999878],[31.006114129000167,-29.876153253],[31.001231316000172,-29.90243905999992],[31.01636803500017,-29.895196221999978],[31.050466342000192,-29.88518645599991],[31.063324415000093,-29.87444426899999],[31.063324415000093,-29.88193124799987],[31.06153405000006,-29.888929945999948],[31.058278842000192,-29.89592864399984],[31.04957116000011,-29.908623955999985],[31.02377363400009,-29.9358049459999],[30.919932488000114,-30.018487237999963],[30.890635613000114,-30.050062757999864],[30.842539910000113,-30.12330494599982],[30.786468946000095,-30.23748137799997],[30.64161217500012,-30.459567966999987],[30.62142988400009,-30.50009531],[30.61768639400023,-30.51531340899997],[30.609548373000024,-30.529554945999973],[30.562347852000155,-30.573907158999926],[30.39234459700012,-30.84710051899991],[30.36402428500017,-30.882256768999962],[30.34815514400023,-30.89657968499986],[30.33375084700017,-30.902276299999926],[30.320323113000057,-30.912286065999922],[30.288747592000078,-30.971123955999982],[30.19597415500007,-31.077894789999885],[30.12338300900015,-31.161553643999923],[30.095062696000102,-31.178643487999963],[30.062754754000167,-31.238702080999882],[30.00993899800019,-31.29225025799998],[29.864105665000153,-31.41155364399988],[29.846202019000113,-31.419610283999916],[29.784515821000156,-31.434747002999913],[29.761729363000228,-31.443942966999884],[29.7420353520001,-31.45745208099994],[29.7337345710001,-31.474867445999834],[29.672373894000117,-31.53972747199999],[29.650401238000114,-31.54778411299995],[29.64136803500011,-31.553317966999956],[29.634613477000155,-31.57244231599985],[29.62769616000017,-31.580254815999933],[29.61988366000017,-31.58603281],[29.61443118600002,-31.58814869599982],[29.59205162900011,-31.59303150799988],[29.574066602000155,-31.6054013],[29.54200280000012,-31.635918877999938],[29.526052280000183,-31.64397551899989],[29.486664259000094,-31.65642669099991],[29.4607853520001,-31.672295830999843],[29.452159050000063,-31.67400481599985],[29.442718946000156,-31.67473723799988],[29.432139519000117,-31.677504164999927],[29.427256707000222,-31.67799244599992],[29.416188998000198,-31.676527601999865],[29.411631707000055,-31.677504164999927],[29.405528191000176,-31.68417734199997],[29.406911655000073,-31.68938567499988],[29.410655144000117,-31.693780205999875],[29.411631707000055,-31.69801197699998],[29.391856316000112,-31.73552825299998],[29.36247806100002,-31.749769789999814],[29.356944207000225,-31.755791924999908],[29.352875196000156,-31.78036874800001],[29.34205162900017,-31.793552341999966],[29.309255405000073,-31.814060154000018],[29.276703321000095,-31.84465911299993],[29.26124108200006,-31.863539320999962],[29.25456790500013,-31.879571221999953],[29.251963738000114,-31.889092705999868],[29.234141472000115,-31.9165992169999],[29.22339928500011,-31.92197030999986],[29.22046959700012,-31.924004815999975],[29.21876061300011,-31.927911065999965],[29.215505405000073,-31.94011809699995],[29.21363366000017,-31.943780206],[29.147634311000044,-31.969821872999887],[29.137950066000087,-31.98202890399986],[29.133799675000066,-31.99846770599986],[29.123789910000085,-32.017022393999866],[29.096364780000012,-32.05364348799998],[28.9733179050001,-32.166680596999925],[28.87037194100012,-32.287041924999954],[28.81714928500014,-32.31511809699997],[28.80836022200006,-32.3248837219999],[28.67408287900014,-32.430596612999935],[28.651215040000125,-32.459079684999864],[28.64275149800011,-32.46550872199995],[28.626231316000116,-32.47234465899989],[28.617198113000114,-32.47820403399993],[28.58033287900014,-32.51116301899999],[28.56267337300002,-32.531996351999965],[28.555023634000094,-32.55046965899999],[28.54859459700009,-32.562432549999926],[28.437510613000086,-32.636000257999825],[28.4119572270001,-32.647637628],[28.379405144000145,-32.670993747999916],[28.363291863000082,-32.67815520599994],[28.360118035000113,-32.693942966999984],[28.33692467500006,-32.709405205999914],[28.28760826900009,-32.73211028399987],[28.240570509000065,-32.760918877999984],[28.210785352000073,-32.77467213299991],[28.155528191000144,-32.78850676899991],[28.130137566000116,-32.80885182099981],[28.110850457000083,-32.836521092],[28.103282097000143,-32.86614348799995],[28.094004754000082,-32.88746510199991],[28.072276238000114,-32.90829843499998],[27.969899936000104,-32.98056405999988],[27.93962649800011,-32.989841404],[27.930674675000088,-32.99765390399992],[27.917653842000103,-33.013848565999965],[27.903981967000078,-33.02068450299997],[27.902354363000143,-33.02434661299985],[27.902110222000086,-33.02947356599995],[27.901133660000113,-33.034926039999974],[27.897146030000044,-33.039971612999835],[27.84929446700002,-33.05852629999984],[27.82984459700012,-33.0772437479999],[27.818695509000094,-33.081638278999975],[27.79932701900009,-33.08424244599996],[27.74984785200013,-33.099786065999965],[27.73267662900011,-33.108819268999895],[27.6432397800001,-33.18865325299991],[27.609873894000117,-33.211846612999935],[27.53923587300008,-33.23455169099989],[27.527842644000117,-33.24293385199995],[27.523285352000073,-33.244398695999905],[27.500010613000143,-33.27337004999991],[27.492360873000024,-33.27703215899996],[27.484711134000094,-33.278985284],[27.476328972000115,-33.27809010199991],[27.465668165000093,-33.27337004999991],[27.458506707000055,-33.29892343499998],[27.434580925000088,-33.32073333099986],[27.38021894600007,-33.35735442499997],[27.355804884000122,-33.36956145599986],[27.35173587300008,-33.36956145599986],[27.347504102000045,-33.36712004999991],[27.34424889400009,-33.36443450299984],[27.342295769000145,-33.36337655999996],[27.338877800000148,-33.366387627999885],[27.334808790000096,-33.377048435],[27.228282097000147,-33.43889739399999],[27.218760613000143,-33.448663018999845],[27.143077019000145,-33.479424737999835],[27.12745201900009,-33.489841404],[27.119802280000044,-33.4967587219999],[27.116384311000047,-33.50359465899992],[27.114431186000076,-33.51116301899988],[27.108897332000083,-33.51913827899993],[27.1009220710001,-33.52532317499998],[27.091807488000114,-33.52776458099984],[27.071299675000063,-33.53085702899992],[26.98462975400011,-33.57024505],[26.96534264400009,-33.57431405999995],[26.941254102000073,-33.575616143999866],[26.919118686000072,-33.5814755189999],[26.863047722000143,-33.622735283999944],[26.842784050000148,-33.627373955999886],[26.794606967000107,-33.63225676899995],[26.76124108200011,-33.64902109199997],[26.6653751960001,-33.68368905999994],[26.65333092500009,-33.68482838299998],[26.645518425000088,-33.68914153399997],[26.63892662900014,-33.70777760199988],[26.63257897200009,-33.71217213299987],[26.61085045700011,-33.71493905999992],[26.515147332000083,-33.75530364399988],[26.47608483200011,-33.76425546699999],[26.43482506600006,-33.766045830999985],[26.34986412900011,-33.755547784],[26.323415561000047,-33.75644296699991],[26.30420983200008,-33.76376718499992],[26.286631707000055,-33.76637135199991],[26.263194207000083,-33.757989190999865],[26.22559655000009,-33.739434502999856],[26.092539910000085,-33.71705494599991],[25.955251498000052,-33.71087004999987],[25.86744225400008,-33.721856378],[25.78541100400014,-33.743584893999895],[25.711110873000052,-33.77418385199982],[25.67904707100007,-33.79517994599995],[25.65308678500008,-33.822686455999886],[25.634043816000087,-33.85515715899987],[25.617523634000094,-33.91139088299995],[25.614919467000107,-33.934991143999895],[25.61939537900008,-33.945896091999956],[25.638926629000135,-33.95378997199985],[25.643402540000125,-33.962579034],[25.648203972000115,-33.9686825499999],[25.677012566000144,-33.98650481599988],[25.69564863400012,-34.01181406],[25.704356316000116,-34.02068450299987],[25.702891472000147,-34.02849700299994],[25.701019727000073,-34.031670831],[25.697520379000082,-34.034926039999874],[25.666026238000086,-34.026543878],[25.64429772200012,-34.03248463299984],[25.624196811000076,-34.04306405999998],[25.59815514400009,-34.048516534],[25.566905144000117,-34.045505467],[25.513926629000082,-34.03150807099986],[25.485199415000125,-34.027520440999965],[25.43539472700007,-34.032891533999845],[25.410492384000122,-34.03297291499983],[25.38355553500014,-34.01962655999991],[25.347992384000094,-34.01441822699982],[25.3138126960001,-33.993340752999984],[25.27751712300008,-33.981133722],[25.192637566000144,-33.962172132999896],[25.10108483200011,-33.960544528999975],[25.011485222000147,-33.97096119599988],[24.95289147200012,-33.985121351999894],[24.929047071000127,-33.99586353999981],[24.913340691000087,-34.01132577900002],[24.927419467000107,-34.05234140399993],[24.916351759000065,-34.07236093499991],[24.899261915000125,-34.0896135399999],[24.888682488000086,-34.09636809699985],[24.841075066000087,-34.13250090899989],[24.83415774800011,-34.147637627999885],[24.838226759000065,-34.159763278999954],[24.847666863000082,-34.16627369599988],[24.857106967000078,-34.17115650799994],[24.861338738000114,-34.178317966999884],[24.857920769000085,-34.18694426899998],[24.840830925000144,-34.19801197699984],[24.83415774800011,-34.20566171699994],[24.827321811000076,-34.20566171699994],[24.81470787900011,-34.19068775799991],[24.793711785000138,-34.1847470029999],[24.725352410000085,-34.183282158999845],[24.670258009000122,-34.170830987999906],[24.64722741000014,-34.16822682099992],[24.583994988000086,-34.178317966999884],[24.564952019000085,-34.176934502999984],[24.478526238000086,-34.15781015400002],[24.435231967000107,-34.13892994599989],[24.40015709700012,-34.11256275799998],[24.380869988000086,-34.10637786299992],[24.25912519600007,-34.09417083099994],[24.24170983200011,-34.08611419099992],[24.227875196000095,-34.07789478999983],[24.16309655000009,-34.05478280999988],[23.9842228520001,-34.041110934999935],[23.96265709700009,-34.03687916499992],[23.91960696700005,-34.02353280999991],[23.812998894000117,-34.01441822699982],[23.635508660000085,-33.979668877999934],[23.588552280000073,-33.98121510199998],[23.427582227000098,-34.01238372199997],[23.40609785200007,-34.02044036299992],[23.386892123000024,-34.03118254999984],[23.370860222000143,-34.044854424999954],[23.36117597700007,-34.066664320999834],[23.367930535000113,-34.08660247199991],[23.385590040000125,-34.10027434699985],[23.408376498000052,-34.10320403399987],[23.408376498000052,-34.11003997199997],[23.062836134000122,-34.0826962219999],[23.057465040000068,-34.07626718499999],[23.05152428500014,-34.04762135199984],[23.04900149800011,-34.041110934999935],[23.0188908210001,-34.03915780999989],[23.006521030000073,-34.03508879999984],[22.99805748800011,-34.027520440999965],[23.001638217000078,-34.04257577899998],[23.009043816000087,-34.048516534],[23.018728061000044,-34.05169036299989],[23.028819207000083,-34.0585263],[23.038747592000107,-34.07244231599998],[23.038910352000073,-34.07976653399997],[23.03223717500009,-34.08611419099992],[23.026215040000096,-34.080987237999906],[23.012217644000145,-34.077406507999925],[22.984548373000052,-34.075290623000015],[22.971690300000116,-34.07773202899995],[22.962087436000047,-34.08131275799983],[22.951508009000094,-34.08391692499984],[22.936045769000145,-34.0826962219999],[22.856211785000138,-34.06178150799994],[22.824229363000143,-34.045179945999976],[22.811371290000125,-34.04176197699998],[22.800140821000127,-34.035577080999914],[22.792002800000088,-34.02068450299987],[22.78980553500011,-34.01132577900002],[22.79053795700014,-34.00432708099986],[22.797211134000094,-34.00058359199991],[22.812510613000143,-34.00074635199988],[22.796722852000098,-33.98951588299988],[22.774587436000047,-33.983575127999856],[22.730479363000143,-33.979668877999934],[22.73991946700005,-33.994724216999956],[22.753184441000087,-34.00953541499993],[22.768890821000042,-34.0214169249999],[22.785166863000086,-34.027520440999965],[22.766774936000047,-34.032891533999845],[22.742523634000065,-34.02890390399995],[22.62989342500012,-33.995782158999916],[22.609873894000145,-33.993340752999984],[22.583669467000107,-33.994073174999905],[22.563975457000083,-33.99724700299997],[22.54769941500012,-34.003594658999916],[22.49586022200012,-34.039239190999965],[22.455414259000094,-34.05706145599994],[22.410492384000094,-34.06560637799987],[22.3170679050001,-34.056898695999976],[22.27515709700012,-34.05771249799998],[22.18921959700009,-34.075290623000015],[22.169200066000112,-34.0831845029999],[22.152842644000117,-34.09368254999995],[22.12354576900009,-34.12053801899995],[22.111013217000107,-34.14153411299998],[22.115407748000077,-34.15781015400002],[22.12989342500012,-34.169691664999974],[22.147715691000116,-34.178317966999884],[22.13404381600006,-34.18808359200001],[22.114105665000096,-34.19394296699987],[21.984060092000078,-34.210137628],[21.946950717000075,-34.22372812299996],[21.9217228520001,-34.24667734199987],[21.918711785000113,-34.262953382999896],[21.923838738000114,-34.29566822699984],[21.91431725400011,-34.30681731599985],[21.894541863000082,-34.33603280999997],[21.888682488000143,-34.33961353999986],[21.82960045700011,-34.36858489399994],[21.788747592000075,-34.381280205999914],[21.746104363000143,-34.38836028399996],[21.702647332000108,-34.39055754999986],[21.59717858200011,-34.37265390399999],[21.559743686000076,-34.35344817499994],[21.53760826900009,-34.34889088299991],[21.515879754000107,-34.352227471999925],[21.474131707000083,-34.36679452899996],[21.43897545700011,-34.37232838299997],[21.43189537900005,-34.377862237999906],[21.42750084700009,-34.38453541499994],[21.42212975400011,-34.39055754999986],[21.41553795700014,-34.39495208099986],[21.34896894600007,-34.419203382999925],[21.305918816000116,-34.424574476999894],[21.262461785000085,-34.42156340899997],[21.098399285000138,-34.37078215899993],[21.05836022200012,-34.363376559999864],[20.961273634000065,-34.35605234199985],[20.913422071000042,-34.36044687299993],[20.87354576900009,-34.37688567499984],[20.880869988000082,-34.37688567499984],[20.823741082000108,-34.390313409],[20.80518639400009,-34.39804452899993],[20.83220462300005,-34.40178801899995],[20.8561304050001,-34.41692473799995],[20.86817467500012,-34.437920830999985],[20.859873894000145,-34.45875416499989],[20.841075066000084,-34.465020440999915],[20.66431725400011,-34.43840911299989],[20.524424675000063,-34.454278253],[20.48267662900014,-34.470472914999874],[20.44800866000014,-34.493340752999885],[20.393239780000044,-34.554782809999864],[20.37452233200005,-34.569756768999895],[20.355479363000086,-34.576104424999926],[20.3411564460001,-34.57870859200001],[20.33432050900006,-34.585219007999825],[20.328868035000113,-34.59400807099997],[20.31861412900011,-34.6034481749999],[20.310069207000083,-34.60719166499993],[20.277598504000082,-34.617771091999884],[20.261485222000115,-34.627048434999935],[20.24333743600002,-34.6410458309999],[20.228526238000143,-34.65781015399992],[20.222422722000147,-34.675062757999925],[20.21168053500014,-34.67205169099992],[20.18726647200009,-34.67742278399997],[20.14665774800011,-34.692152601999965],[20.072601759000122,-34.736911716999906],[20.04444420700014,-34.76832447699985],[20.057871941000144,-34.795179945999834],[20.057871941000144,-34.80144622199988],[20.04175866000008,-34.80510833099993],[20.015635613000114,-34.81894296699993],[19.999278191000116,-34.82195403399993],[19.983571811000047,-34.82008228999995],[19.967946811000047,-34.815199476999894],[19.953461134000094,-34.80868906],[19.89047285200007,-34.76970794099992],[19.87598717500012,-34.75741952899996],[19.85840905000009,-34.74968840899986],[19.698090040000096,-34.753676039999924],[19.68360436300014,-34.75660572699995],[19.66700280000009,-34.77044036299995],[19.653168165000096,-34.77410247199999],[19.6424259770001,-34.77206796699997],[19.635752800000116,-34.76588307099982],[19.63111412900011,-34.758884373000015],[19.626475457000083,-34.753676039999924],[19.57601972700007,-34.72795989399996],[19.499685092000107,-34.66423919099984],[19.44849694100006,-34.64006926899992],[19.43295332100007,-34.629978122999944],[19.41732832100007,-34.614027601999936],[19.398692254000082,-34.60182057099988],[19.37476647200012,-34.599297783999944],[19.350759311000076,-34.604913018999866],[19.331716342000103,-34.617771091999884],[19.323008660000113,-34.612481378],[19.314219597000143,-34.61093515399996],[19.305511915000064,-34.61272551899994],[19.296885613000143,-34.617771091999884],[19.3006291020001,-34.60662200299987],[19.360118035000113,-34.53866952899989],[19.365082227000073,-34.527764580999914],[19.360199415000096,-34.50042083099993],[19.344411655000073,-34.46843840899993],[19.323903842000107,-34.43865325299984],[19.304372592000107,-34.417901299999926],[19.29037519600007,-34.40911223799988],[19.277679884000094,-34.40650807099988],[19.20777428500008,-34.41855234199997],[19.146494988000143,-34.414971612999906],[19.133067254000082,-34.411716403999876],[19.11931399800005,-34.400567315999936],[19.101084832000083,-34.37232838299997],[19.085215691000144,-34.363376559999864],[19.085215691000144,-34.356540623000015],[19.111013217000078,-34.35263437299992],[19.12289472700013,-34.33798593500002],[19.129567905000073,-34.31707122199997],[19.139903191000087,-34.29436614399984],[19.122569207000083,-34.302666925],[19.09896894600007,-34.33554452899999],[19.088389519000117,-34.34270598799985],[19.011973504000082,-34.338555596999974],[18.99903405000009,-34.33928801899983],[18.97022545700014,-34.348239841999956],[18.872894727000073,-34.3619117169999],[18.851898634000122,-34.373467706],[18.84791100400014,-34.381605726999936],[18.838226759000094,-34.383884373],[18.826996290000096,-34.38176848799999],[18.817637566000144,-34.37688567499984],[18.80827884200005,-34.36467864399995],[18.809418165000068,-34.35491301899999],[18.817637566000144,-34.34270598799985],[18.810883009000122,-34.30974700299986],[18.810313347000147,-34.30185312299999],[18.813731316000055,-34.29078541499986],[18.818369988000086,-34.286065362999935],[18.824229363000143,-34.28240325299989],[18.83139082100007,-34.27385833099996],[18.839691602000073,-34.254327080999985],[18.838226759000094,-34.239678643999966],[18.823903842000107,-34.20566171699994],[18.82252037900014,-34.18499114399994],[18.83139082100007,-34.175876559999935],[18.845062696000127,-34.16765715899986],[18.858164910000085,-34.15032317499987],[18.81617272200009,-34.09710051899988],[18.800059441000116,-34.08953215899992],[18.740733269000145,-34.077406507999925],[18.647227410000113,-34.07000090899986],[18.555023634000122,-34.07382577899996],[18.540293816000144,-34.07903411299986],[18.531748894000117,-34.08391692499984],[18.495616082000083,-34.09636809699985],[18.478363477000073,-34.10686614399991],[18.4700626960001,-34.114027601999865],[18.46078535200013,-34.12428150799998],[18.44605553500014,-34.137139580999914],[18.441661004000082,-34.14421965899996],[18.440277540000096,-34.15781015400002],[18.442718946000127,-34.168145440999936],[18.447764519000145,-34.17359791499996],[18.454356316000144,-34.17791106599988],[18.46078535200013,-34.18450286299995],[18.474457227000073,-34.22616952899998],[18.475922071000127,-34.23593515399995],[18.476573113000086,-34.24504973799985],[18.467621290000068,-34.31129322699982],[18.47169030000012,-34.33171965899989],[18.48878014400006,-34.34270598799985],[18.4700626960001,-34.347426039999945],[18.445160352000073,-34.336521091999956],[18.421397332000055,-34.31845468499995],[18.406260613000057,-34.30185312299999],[18.382172071000127,-34.262139580999886],[18.378916863000082,-34.250258070999934],[18.380056186000047,-34.24391041499981],[18.384613477000073,-34.23015715899989],[18.38575280000012,-34.22234465899998],[18.383799675000148,-34.21868254999993],[18.379567905000044,-34.216403903999876],[18.374766472000147,-34.2145321589999],[18.37208092500009,-34.212497653999876],[18.362478061000104,-34.18621184699995],[18.354340040000096,-34.17538827899995],[18.32545006600006,-34.16716887799987],[18.3162541020001,-34.157484632999896],[18.31381269600007,-34.144626559999956],[18.316905144000142,-34.130547783999845],[18.324229363000143,-34.12265390399996],[18.33350670700011,-34.11988697699991],[18.341319207000083,-34.11467864399991],[18.34473717500009,-34.099786065999865],[18.34522545700008,-34.08611419099992],[18.34717858200014,-34.075453382999974],[18.351410352000073,-34.06560637799987],[18.358409050000148,-34.05478280999988],[18.343760613000114,-34.056573174999954],[18.337901238000086,-34.05828215899996],[18.330414259000122,-34.062188408999944],[18.31617272200012,-34.043552341999956],[18.314789259000122,-34.029066664999824],[18.323090040000125,-34.01588307099988],[18.337901238000086,-34.00074635199988],[18.351817254000082,-33.982191664999874],[18.362559441000087,-33.94646575299992],[18.37208092500009,-33.925062757999896],[18.404551629000053,-33.90325286299985],[18.44304446700005,-33.90406666499986],[18.475352410000085,-33.89983489399984],[18.48878014400006,-33.86296965899996],[18.484385613000086,-33.843926690999965],[18.46509850400014,-33.817966403999954],[18.46078535200013,-33.80494557099989],[18.458343946000095,-33.785251559999935],[18.431813998000052,-33.69670989399994],[18.405609571000127,-33.652927341999956],[18.400075717000107,-33.633396091999984],[18.390961134000094,-33.6294898419999],[18.34473717500009,-33.582452080999886],[18.32829837300011,-33.573418877999956],[18.320323113000143,-33.567478122999944],[18.316905144000142,-33.5585263],[18.316905144000142,-33.51726653399987],[18.31430097700013,-33.49651458099987],[18.30738366000014,-33.479261976999865],[18.28272545700014,-33.44524504999984],[18.254161004000082,-33.41936614399992],[18.14616946700005,-33.355889580999914],[18.15601647200009,-33.33904387799991],[18.15015709700012,-33.31926848799989],[18.125010613000143,-33.28004322699995],[18.111989780000073,-33.253513278999904],[18.08773847700007,-33.22584400799991],[18.084727410000085,-33.215264580999936],[18.07520592500009,-33.20224374799987],[18.029307488000114,-33.16497161299998],[18.012380405000016,-33.15732187299987],[17.99170983200011,-33.15032317499997],[17.977793816000116,-33.13420989399999],[17.9666447270001,-33.115817966999956],[17.9549259770001,-33.10198333099996],[17.980479363000114,-33.091241143999866],[17.995290561000076,-33.08814869599988],[18.005869988000114,-33.091729424999855],[18.013682488000114,-33.10320403399997],[18.01921634200005,-33.11402760199998],[18.026052280000073,-33.1234677059999],[18.037445509000122,-33.12997812299999],[18.032969597000147,-33.14088307099988],[18.040212436000076,-33.14910247199995],[18.067637566000112,-33.167575778999975],[18.086110873000052,-33.18938567499985],[18.09913170700014,-33.200941664999874],[18.111989780000073,-33.20501067499984],[18.12745201900009,-33.197360934999985],[18.12338300900012,-33.1861304669999],[18.10181725400011,-33.167575778999975],[18.09652754000004,-33.15911223799995],[18.094493035000113,-33.14226653399986],[18.09156334700009,-33.135511976999815],[18.087168816000116,-33.13307057099996],[18.075938347000115,-33.13201262799991],[18.07105553500014,-33.12997812299999],[18.04908287900011,-33.11142343499989],[18.04086347700013,-33.101657809999935],[18.037445509000122,-33.091729424999855],[18.04053795700011,-33.048516533999944],[18.037445509000122,-33.03378671699994],[18.02320397200012,-33.01433684699995],[17.999522332000083,-33.00448984200001],[17.9705509770001,-33.002373955999914],[17.940684441000116,-33.006442966999884],[17.949717644000117,-33.02223072699984],[17.9549259770001,-33.02752044099991],[17.942718946000127,-33.02996184699994],[17.932302280000044,-33.03435637799991],[17.912771030000073,-33.047458591999984],[17.901866082000083,-33.036879164999846],[17.895843946000095,-33.02646249799986],[17.893402540000068,-33.01718515399999],[17.892832879000082,-33.010186455999914],[17.889008009000065,-33.001560154],[17.882090691000087,-32.99260833099988],[17.878591342000078,-32.981540622999944],[17.885508660000085,-32.966078382999925],[17.8807072270001,-32.958184502999856],[17.868500196000127,-32.92929452899993],[17.862478061000104,-32.90715911299986],[17.861664259000094,-32.89902109199994],[17.8650822270001,-32.89055754999998],[17.87525475400014,-32.87981536299989],[17.88103274800011,-32.867608330999914],[17.87549889400009,-32.855889580999914],[17.85238691500004,-32.82968515399989],[17.846853061000047,-32.82708098799989],[17.843028191000116,-32.823337497999944],[17.84392337300011,-32.81462981599988],[17.84782962300011,-32.813409112999864],[17.855153842000107,-32.81471119599986],[17.861827019000145,-32.81519947699985],[17.86500084700012,-32.81121184699986],[17.86817467500009,-32.80820077899995],[17.88355553500014,-32.796644789999846],[17.889170769000117,-32.794122003],[17.897308790000068,-32.792738539999846],[17.899099155000044,-32.789239190999936],[17.899424675000144,-32.78394947699988],[17.90284264400006,-32.77703215899996],[17.903575066000087,-32.76921965899989],[17.902679884000094,-32.73837655999992],[17.90593509200005,-32.72584400799991],[17.91968834700006,-32.716566664999874],[17.943369988000086,-32.70826588299998],[17.9674585300001,-32.703545830999886],[17.9822697270001,-32.7047665339999],[17.97486412900011,-32.71217213299996],[17.986582879000082,-32.72698333099994],[18.037445509000122,-32.76677825299985],[18.080577019000145,-32.78134530999988],[18.118825717000078,-32.77304452899999],[18.15211022200009,-32.751234632999854],[18.273122592000075,-32.647556248000015],[18.296397332000083,-32.608575127999956],[18.31080162900014,-32.57284921699993],[18.334157748000052,-32.4913062479999],[18.337901238000086,-32.45159270599997],[18.333181186000076,-32.382012627999984],[18.327403191000116,-32.36614348799995],[18.31544030000009,-32.34368254999987],[18.321055535000085,-32.327325127999856],[18.34473717500009,-32.3007138],[18.34937584700012,-32.26034921699985],[18.31072024800008,-32.12948984199993],[18.29948978000007,-32.022637627999956],[18.28174889400009,-31.979180597],[18.275889519000145,-31.95745208099994],[18.278330925000063,-31.913750908999944],[18.276866082000108,-31.89267343499993],[18.26563561300011,-31.87232838299985],[18.253103061000104,-31.858330987999977],[18.24170983200014,-31.8414039039999],[18.235687696000127,-31.82805754999998],[18.234873894000117,-31.81910572699986],[18.23585045700011,-31.811130467],[18.234873894000117,-31.80046965899996],[18.213715040000125,-31.730645440999922],[18.19678795700014,-31.697360934999935],[18.172862175000088,-31.66326262799993],[18.126231316000087,-31.612237237999935],[18.118825717000078,-31.598077080999914],[18.116709832000083,-31.59059010199985],[18.07105553500014,-31.533461195999962],[18.0232853520001,-31.49041106599984],[18.01579837300002,-31.474867445999834],[18.009450717000107,-31.456638278999932],[17.994151238000143,-31.44133879999997],[17.961192254000082,-31.416192315999904],[17.922211134000094,-31.3639462219999],[17.893728061000076,-31.344821873],[17.88379967500009,-31.320082289999945],[17.87183678500014,-31.272881768999966],[17.85938561300011,-31.260349216999952],[17.818614129000053,-31.232110283999983],[17.8097436860001,-31.22161223799994],[17.80437259200005,-31.208591403999943],[17.750254754000082,-31.131931247999972],[17.745290561000044,-31.1288388],[17.7350366550001,-31.104261976999894],[17.731211785000085,-31.097832940999965],[17.718272332000083,-31.08066171699994],[17.697113477000073,-31.03582122199984],[17.686778191000087,-31.018975518999838],[17.617198113000086,-30.934014580999985],[17.5616968110001,-30.838067315999975],[17.55648847700013,-30.823825778999975],[17.548187696000127,-30.78720468499996],[17.535980665000068,-30.752129815999975],[17.477224155000073,-30.682386976999833],[17.450368686000076,-30.639092705999943],[17.45411217500012,-30.601250908999898],[17.4295353520001,-30.576755466999952],[17.373545769000145,-30.487237237999892],[17.364593946000127,-30.464043877999938],[17.34620201900009,-30.444512627999966],[17.28199303500014,-30.347751559999963],[17.27751712300008,-30.337579034],[17.27442467500009,-30.31170012799991],[17.265879754000082,-30.279961846999953],[17.261729363000143,-30.271661065999876],[17.259450717000075,-30.24504973799993],[17.20687910200013,-30.165297132999896],[17.193369988000143,-30.1320126279999],[17.18962649800011,-30.093031507999825],[17.166351759000122,-30.01287200299987],[17.10368899800011,-29.88494231599988],[17.09717858200011,-29.850844007999868],[17.094981316000116,-29.84587981599999],[17.09034264400009,-29.84075286299999],[17.085703972000086,-29.833754164999835],[17.08350670700008,-29.823337497999926],[17.08277428500014,-29.81275807099996],[17.056325717000075,-29.730401299999926],[17.062510613000143,-29.730401299999926],[17.057627800000063,-29.71746184699984],[17.057790561000047,-29.690606377999853],[17.056325717000075,-29.67644622199992],[17.031586134000094,-29.61882903399994],[17.032074415000096,-29.608168226999837],[17.018809441000144,-29.598728123],[17.01197350400014,-29.57708098799992],[17.007823113000086,-29.53923919099988],[16.97828209700012,-29.467868747999983],[16.970876498000052,-29.45671965899996],[16.933929884000094,-29.357679945999973],[16.929698113000086,-29.351250908999887],[16.91032962300005,-29.332777601999865],[16.906016472000147,-29.322930596999925],[16.903168165000125,-29.318291924999908],[16.884938998000052,-29.29900481599988],[16.863780144000117,-29.238702080999925],[16.85808353000004,-29.229587498000015],[16.847666863000143,-29.219903252999888],[16.843272332000083,-29.21135833099994],[16.844248894000145,-29.188409112999963],[16.84058678500011,-29.178887627999952],[16.831228061000076,-29.163832289999856],[16.8229272800001,-29.1407203099999],[16.819183790000068,-29.11728281],[16.82406660200013,-29.101006768999895],[16.80876712300008,-29.078301690999933],[16.744965040000125,-29.02874114399991],[16.73568769600007,-29.01620859199999],[16.72046959700009,-28.977634372999944],[16.7127384770001,-28.963962498],[16.66773522200009,-28.908623955999914],[16.600352410000085,-28.857517185000017],[16.589528842000107,-28.8358700499999],[16.579437696000127,-28.800388278999957],[16.573903842000107,-28.765069268999937],[16.576996290000096,-28.74423593499986],[16.572927280000044,-28.737562757999896],[16.56430097700013,-28.72031015399999],[16.56275475400011,-28.712823174999844],[16.558929884000094,-28.707614842],[16.55054772200012,-28.705824476999936],[16.54118899800008,-28.70525481599996],[16.53484134200005,-28.70322030999995],[16.5135197270001,-28.66090260199985],[16.49708092500009,-28.64934661299992],[16.471853061000047,-28.625420830999943],[16.469981316000055,-28.620049737999988],[16.480316602000073,-28.61353932099982],[16.486664259000094,-28.598809502999913],[16.488942905000073,-28.582940362999892],[16.487071160000113,-28.57293059649986],[16.5053796790001,-28.56538706399996],[16.531527954000097,-28.549677428999896],[16.559123169000088,-28.53706837999988],[16.59736372800009,-28.526216328999833],[16.673121378000076,-28.45976043699987],[16.68345666500008,-28.456246439999912],[16.6923450110001,-28.461104024000022],[16.696789185000085,-28.472472838999835],[16.699683065000073,-28.48518524199997],[16.7038171800001,-28.494487],[16.720456990000116,-28.49603729299991],[16.740404093000052,-28.480947774000015],[16.758387492000026,-28.459657084000025],[16.769342895000108,-28.442603862],[16.77213342300007,-28.425757344999838],[16.77337365700009,-28.40291636199991],[16.778541301000104,-28.382969258999903],[16.7932174070001,-28.374287617999855],[16.803862753000086,-28.366122741999916],[16.79683475800007,-28.34782928499986],[16.775544067000084,-28.319097187999855],[16.76841271900014,-28.30369761099996],[16.764381958000058,-28.283233743999812],[16.76872277800004,-28.265353698999945],[16.78649947100007,-28.257602233999844],[16.79518111100012,-28.261219584],[16.805102987000108,-28.267730814999894],[16.81523156700007,-28.270831399999935],[16.824636678000047,-28.26452687599983],[16.826600382000063,-28.251917825999897],[16.82081262200009,-28.240032246999874],[16.813267863000135,-28.229903665999828],[16.810270630000048,-28.222875671],[16.81430139100013,-28.213470560999937],[16.819779094000097,-28.20974985699985],[16.84106978300011,-28.209853210999952],[16.85636600700013,-28.20664927199998],[16.855952596000122,-28.199414570999917],[16.838382609000064,-28.179467467999913],[16.83569543400003,-28.17419647199996],[16.837659139000067,-28.16820200599986],[16.843756958000114,-28.163861184999874],[16.847787720000042,-28.165411478999985],[16.852025188000084,-28.168305358999973],[16.8686649980001,-28.167891947999962],[16.87383264200011,-28.171509297999947],[16.878173462000092,-28.172026061999972],[16.885511515000076,-28.16200083399987],[16.892952921000102,-28.0826258339999],[16.896466919000147,-28.079938659999954],[16.913520142000095,-28.062678730999963],[16.919617961000142,-28.05833791099981],[16.927472778000066,-28.060198261999815],[16.937498006000084,-28.071050312999855],[16.947523234000126,-28.072703958999895],[16.959512167000067,-28.06856984399988],[16.97377486200014,-28.05503061899999],[16.985350382000092,-28.052240091999845],[17.012015421000058,-28.05833791099981],[17.0453983970001,-28.03632375099999],[17.056663859000082,-28.031156106999916],[17.076404256000046,-28.026815286999934],[17.086532837000078,-28.02702199299989],[17.097798299000146,-28.031156106999916],[17.111750936000135,-28.046038919999944],[17.123223103000072,-28.066502787999905],[17.13634891700013,-28.084692891999865],[17.155779256000102,-28.092547708999987],[17.180894002000116,-28.099472350999957],[17.189989054000108,-28.116835631999976],[17.18978234900004,-28.139366556999917],[17.18709517400012,-28.16200083399987],[17.191952758000127,-28.20881968199997],[17.213140096000103,-28.232074075999904],[17.24517948400009,-28.237448424999865],[17.308638143000053,-28.224115904999845],[17.334476359000064,-28.222875671],[17.345741821000104,-28.22762990299998],[17.349772583000117,-28.238688658999905],[17.351219523000108,-28.251401061999942],[17.35504357900004,-28.261012877999875],[17.364138631000117,-28.273311868999908],[17.367032512000094,-28.283543802999972],[17.368066040000087,-28.29377573599987],[17.37199344900006,-28.30607472699991],[17.378918090000127,-28.316306660999985],[17.394834432000067,-28.335116881999895],[17.400002075000145,-28.346382344999867],[17.40206913300011,-28.36777638699988],[17.399692017000092,-28.395268248999855],[17.391320435000097,-28.418832702999936],[17.37540409400009,-28.42896128299999],[17.358557577000113,-28.432785338999846],[17.341194295000093,-28.442810566999864],[17.328171834000045,-28.456143086999884],[17.324244425000074,-28.470509134999972],[17.332409302000087,-28.488595885999985],[17.359487752000064,-28.519808451999978],[17.365275512000036,-28.54254608099987],[17.37302697800004,-28.559392597999846],[17.409613892000067,-28.571381529999897],[17.420569295000064,-28.593395690999884],[17.414264771000116,-28.632669778999855],[17.40175907300005,-28.67421763099985],[17.40361942500004,-28.7042933149999],[17.440929810000085,-28.709564310999852],[17.485164836000106,-28.700159199999888],[17.526609334000057,-28.695818379999906],[17.546969849000106,-28.691374206999807],[17.565986776000074,-28.68351938899987],[17.582936646000064,-28.68021209799987],[17.59802616300007,-28.68961720699991],[17.60340051300011,-28.71080454499997],[17.6025736900001,-28.735402526999945],[17.607121216000053,-28.75565968799995],[17.628721965000096,-28.764134622999876],[17.660968058000066,-28.772299499999885],[17.673783813000053,-28.771576028999803],[17.68339563000006,-28.767545267999978],[17.703239379000138,-28.755556334999937],[17.71409143000011,-28.751112161999842],[17.74633752400007,-28.74863169299986],[17.913252401000108,-28.781291197999916],[17.94952925600006,-28.794727070999883],[17.983325643000057,-28.813743997999936],[18.04409712700007,-28.858392434999885],[18.082441040000077,-28.875962422999866],[18.166466919000097,-28.901903990999983],[18.185070434000068,-28.902214050999884],[18.220727173000057,-28.891258646999898],[18.30868046100005,-28.87999318399986],[18.331004679000017,-28.88144012399985],[18.37306929500005,-28.895186055999968],[18.39756392400011,-28.89890675899997],[18.416994262000088,-28.891672057999912],[18.42474572800009,-28.887227884999916],[18.43570113100006,-28.8842306519999],[18.45523482200008,-28.88144012399985],[18.460712525000076,-28.879889831],[18.46939416500004,-28.874928893999876],[18.47497521900004,-28.873998718],[18.479419393000057,-28.876272480999848],[18.491615031000062,-28.886297708999948],[18.496162557000105,-28.888261412999896],[18.517659953000134,-28.88226694699996],[18.55393680800009,-28.864696960999893],[18.7456563720001,-28.83989227299986],[18.95453251100014,-28.866660664999923],[18.971172323000076,-28.880509948999975],[18.996390422000104,-28.915546569999986],[19.00693241400009,-28.92629526799992],[19.013960408000088,-28.928465676999917],[19.048997030000095,-28.93239308699998],[19.060055786000106,-28.935700377999982],[19.064706665000074,-28.93983449299982],[19.081656535000093,-28.959368183999825],[19.12020715400007,-28.957507832999823],[19.16154829900009,-28.945415547999914],[19.21849572700006,-28.918853860999988],[19.226660604000074,-28.911515808],[19.23761600700007,-28.895599466999982],[19.243713826000118,-28.89187876399988],[19.27658003700014,-28.88950164799992],[19.288362264000057,-28.883093769999803],[19.288879028000082,-28.87100148499991],[19.251568645000134,-28.81426076299989],[19.244954061000044,-28.79245330799995],[19.248571411000114,-28.771576028999803],[19.26593469200014,-28.742637226999914],[19.277303508000042,-28.72940805999984],[19.29001590900009,-28.71969289099981],[19.304485310000132,-28.718659361999826],[19.328359822000095,-28.735815938999874],[19.33900516800011,-28.737469583999925],[19.353474569000124,-28.731888528999985],[19.43460656700009,-28.71349171899999],[19.45507043400005,-28.705223489999867],[19.47243371600007,-28.692717793999964],[19.482872355000097,-28.67824839299993],[19.51170780400011,-28.598046568999848],[19.517805623000072,-28.589364928999885],[19.52741743900009,-28.58595428399995],[19.533721965000097,-28.582440286999983],[19.542196900000107,-28.564043476999984],[19.547571248000082,-28.55587860099989],[19.556459594000074,-28.546163430999854],[19.56235070800008,-28.538101908999863],[19.568758586000115,-28.531177265999958],[19.579197225000144,-28.525182799999854],[19.58798221900014,-28.522702331999966],[19.68833785000004,-28.515984394999933],[19.70559777800011,-28.508026224999963],[19.725338175000076,-28.49417694099992],[19.748075805000042,-28.48714894599999],[19.796341593000076,-28.48415171299989],[19.82559045400012,-28.476710306999877],[19.870342245000074,-28.44084686299992],[19.89669722500014,-28.427721048999867],[19.90785933400008,-28.426480814000016],[19.940208781000138,-28.430201516999844],[19.950544067000067,-28.42927134099989],[19.981653280000103,-28.422346699999903],[19.983203572000036,-28.392684427999853],[19.983203572000036,-28.353203632999907],[19.983203572000036,-28.29718638099989],[19.983203572000036,-28.24106577499985],[19.983203572000036,-28.185048522999836],[19.983100219000107,-28.12903127],[19.982996867000082,-28.072910664999863],[19.982996867000082,-28.016790059],[19.982996867000082,-27.960772806999984],[19.982996867000082,-27.904652200999845],[19.982996867000082,-27.848531595999983],[19.982996867000082,-27.79261769599999],[19.982996867000082,-27.73649709099986],[19.982996867000082,-27.680376485],[19.982893514000068,-27.624359232999975],[19.982893514000068,-27.568238626999843],[19.982893514000068,-27.512118021999978],[19.982893514000068,-27.456100768999875],[19.982893514000068,-27.40018686899988],[19.982893514000068,-27.344066263000016],[19.982893514000068,-27.287945657999884],[19.98279016100011,-27.231928405999867],[19.982686808000096,-27.1758077999999],[19.982686808000096,-27.119687193999866],[19.982686808000096,-27.063669941999848],[19.982686808000096,-27.00765268999983],[19.982686808000096,-26.95153208399988],[19.982686808000096,-26.89551483199986],[19.98258345600007,-26.839394225999897],[19.98258345600007,-26.783376973999978],[19.98258345600007,-26.727256367999843],[19.98258345600007,-26.671239115999825],[19.98258345600007,-26.615118509999874],[19.982480103000054,-26.559101257999856],[19.9823767500001,-26.503084005],[19.9823767500001,-26.446963399999973],[19.9823767500001,-26.390946146999866],[19.9823767500001,-26.33482554199982],[19.9823767500001,-26.27880828799989],[19.9823767500001,-26.222687682999847],[19.982273396000096,-26.16667043],[19.982273396000096,-26.110549824999875],[19.982273396000096,-26.054532571999854],[19.982273396000096,-25.99851531999984],[19.982273396000096,-25.94239471399989],[19.98217004400007,-25.88627410899984],[19.982066691000114,-25.830256856],[19.982066691000114,-25.77413625099987],[19.982066691000114,-25.718118997999852],[19.982066691000114,-25.66210174599983],[19.982066691000114,-25.618988071999965],[19.982066691000114,-25.606084492999898],[19.982066691000114,-25.549963887999862],[19.982066691000114,-25.493843282],[19.982066691000114,-25.43782602999998],[19.9819633380001,-25.381705423999847],[19.9819633380001,-25.325688172],[19.9819633380001,-25.269670918999893],[19.9819633380001,-25.21355031399986],[19.9819633380001,-25.157429708],[19.9819633380001,-25.101412455999974],[19.9819633380001,-25.045395201999867],[19.981859985000085,-24.989274596999905],[19.981756632000042,-24.933257343999898],[19.981756632000042,-24.87713673899985],[19.981756632000042,-24.8210161329999],[19.981756632000042,-24.764998880999883],[19.981446574000074,-24.752493183999974],[19.986407511000095,-24.768822936999825],[19.992918742000086,-24.775850931999926],[20.010488729000144,-24.788046569999846],[20.029298950000054,-24.815228372999925],[20.08107873500012,-24.852642109999888],[20.10784712800009,-24.880340677999826],[20.118905884000096,-24.887368672999926],[20.128414348000092,-24.889745787999953],[20.149084920000092,-24.89098602299991],[20.15931685300009,-24.893673196999927],[20.23569462100005,-24.936047870999857],[20.364885702000034,-25.033199564999947],[20.375531047000035,-25.046118672999864],[20.406846965000057,-25.10782033299992],[20.43392541500009,-25.14678436299991],[20.444777466000062,-25.168385110999964],[20.44322717300011,-25.183061217999963],[20.434442179000143,-25.199804381999826],[20.443847290000093,-25.2133436069999],[20.46245080600005,-25.223678893999903],[20.481674439000074,-25.23050018299986],[20.48353479000008,-25.25664845699987],[20.485498495000115,-25.26315968799993],[20.491803019000116,-25.26905080199984],[20.509889770000143,-25.277525736999934],[20.5164010010001,-25.283623555999892],[20.518571411000096,-25.293028666999945],[20.514850708000097,-25.2991264849999],[20.510406534000083,-25.3047075399999],[20.510509888000115,-25.312252298999965],[20.514644002000125,-25.31928029299996],[20.525082642000058,-25.33219940199997],[20.529216756000096,-25.340054220000013],[20.5358313400001,-25.37116343099997],[20.542239217000116,-25.382222188999975],[20.55877567600004,-25.392040710999936],[20.588024536000148,-25.404029642999987],[20.593605590000095,-25.41322804699982],[20.596912882000083,-25.43286509199993],[20.612002401000098,-25.431004739999935],[20.611382283000125,-25.439376322],[20.60590458200002,-25.45177866599988],[20.606628051000115,-25.462010599999957],[20.616549927000108,-25.466144713999967],[20.625644979000096,-25.462734069999954],[20.634429972000078,-25.457669778999886],[20.643525024000038,-25.45735972099999],[20.656547486000076,-25.467798359999932],[20.626885213000037,-25.484748229999937],[20.620373983000064,-25.50056121899993],[20.61851363100007,-25.528466492],[20.66336877400005,-25.564743346999876],[20.671430298000132,-25.59120168099996],[20.665229126000042,-25.60102020299992],[20.643318319000084,-25.613215840999942],[20.637943969000048,-25.620347187999883],[20.641044556000082,-25.631199238999926],[20.651379842000097,-25.634609883999943],[20.663058716000137,-25.63626352899982],[20.67081018100006,-25.642257994999923],[20.671430298000132,-25.653316751999938],[20.662748657000066,-25.67491750099991],[20.66285201000011,-25.685252786999826],[20.671016887000118,-25.6954847209999],[20.69654504400006,-25.70706024199994],[20.706880330000075,-25.71481170599993],[20.71669885300014,-25.73258839899988],[20.737782837000054,-25.798940937999987],[20.727137492000082,-25.818164570999926],[20.7265173750001,-25.827362975999918],[20.740056600000088,-25.82312550799996],[20.749978475000063,-25.818474628999823],[20.75576623500004,-25.81899139399995],[20.766928344000092,-25.830670266999917],[20.767135050000036,-25.83439097099985],[20.794110148000073,-25.893922220999826],[20.802791789000107,-25.980531921999855],[20.800518026000105,-26.052465514999895],[20.80392867000012,-26.071275735999905],[20.841445760000113,-26.131323750999826],[20.837931763000082,-26.146826680999837],[20.794730265000023,-26.2019137569999],[20.776230103000103,-26.240567727999903],[20.75328576700008,-26.276224466999892],[20.695511515000078,-26.341956887999853],[20.665952596000125,-26.391772969999973],[20.652103312000094,-26.407792663999842],[20.622544392000066,-26.427533059999902],[20.618203573000073,-26.43972869899991],[20.60528446400005,-26.49326548299994],[20.602287232000034,-26.52220428499983],[20.60528446400005,-26.547732441999955],[20.611485636000054,-26.559928079999878],[20.627712036000048,-26.58080535899985],[20.6323629150001,-26.59527475999988],[20.63070926900008,-26.618322448999848],[20.608901815000138,-26.686121927999864],[20.60921187300002,-26.716197611999927],[20.614689575000114,-26.753197936999964],[20.624818156000057,-26.789371438999822],[20.63866744000012,-26.81696665399991],[20.644868612,-26.824511413999957],[20.650553019000142,-26.82967905699995],[20.665642537000053,-26.839084168],[20.67546105900004,-26.85003957099981],[20.685692993000117,-26.8817689],[20.690757283000092,-26.89179412800003],[20.693547810000037,-26.889003600999885],[20.714941854000045,-26.875050964999986],[20.779434042000076,-26.848075866999945],[20.82604618300013,-26.818827006],[20.851884400000074,-26.806528014999966],[20.90769494600002,-26.800016783999904],[20.950172973000065,-26.816036478999862],[20.99037723800009,-26.838567402999885],[21.12246219900007,-26.86533579499995],[21.1534680580001,-26.864508971999925],[21.240594523000084,-26.841978047999987],[21.25485721800007,-26.84177134199986],[21.28286584500006,-26.844975280999833],[21.296921834000074,-26.844458515999975],[21.38084436000008,-26.82399464899983],[21.426629679000115,-26.822651061999863],[21.449470662000124,-26.826371764999962],[21.4986666260001,-26.846422220999912],[21.583932739000144,-26.848385924999945],[21.643360636000093,-26.862751972999856],[21.664547974000072,-26.863062031999846],[21.68718225100011,-26.855207213999904],[21.743819620000092,-26.820480651999873],[21.762319784000027,-26.80446095799999],[21.773378540000124,-26.78678761799999],[21.777512654000077,-26.76849416099985],[21.776479126000083,-26.749167174999982],[21.76748742700005,-26.704312031999905],[21.76872766100007,-26.688705748999865],[21.78061324100011,-26.67816375699998],[21.807278280000048,-26.66958546899987],[21.838800903000102,-26.664521178999806],[21.935849243000092,-26.66390106199992],[21.99899784300004,-26.650258484],[22.057702271000096,-26.61759897899985],[22.108138469000096,-26.57191701199993],[22.14617232200004,-26.51920705099991],[22.17831506400006,-26.439935404999872],[22.197435344000066,-26.404071959999925],[22.237742961000095,-26.366761575999885],[22.248284953000077,-26.3469178269999],[22.257276652000115,-26.340923360999952],[22.303165324000076,-26.333585305999875],[22.31877160600004,-26.328831074999883],[22.342852824000147,-26.31735890699987],[22.395046020000052,-26.271883645999903],[22.428842407000044,-26.226511738999974],[22.45085656800012,-26.21007863399991],[22.482585897000035,-26.204807637999977],[22.527957805000142,-26.213695983999813],[22.545114380000115,-26.207391458999975],[22.563821248000096,-26.18113983099994],[22.58025435400006,-26.14651662199985],[22.59151981600013,-26.13318410199983],[22.61115686100007,-26.120575052999897],[22.62086310300009,-26.111532484999913],[22.62324914600015,-26.109309590000024],[22.665003702000092,-26.05143198599991],[22.665830526000033,-26.03985646599996],[22.662109823,-26.029831237999925],[22.66159305800008,-26.020942891],[22.67223840300008,-26.012881367999924],[22.700660441000082,-26.00326955199992],[22.71047896300007,-25.996861673999884],[22.719367309000063,-25.984252624999954],[22.724224894000088,-25.967509459999818],[22.72722212700009,-25.943945006999897],[22.72680871600008,-25.921620788999842],[22.721641072000097,-25.90901173899999],[22.70882531800009,-25.891028339999835],[22.719470662000106,-25.874285176999962],[22.73952111800014,-25.858472187999965],[22.754713989000066,-25.843382669999883],[22.76546268700008,-25.826536152999907],[22.76411910000013,-25.82033498099983],[22.75791792800004,-25.805968932999917],[22.750889934000043,-25.796047058],[22.744998820000117,-25.79408335399998],[22.741174764000103,-25.790879413999917],[22.74045129400011,-25.77703013099986],[22.746445760000114,-25.75532602899986],[22.75977828000015,-25.7348621619999],[22.80442671700007,-25.68721649099986],[22.810214478000148,-25.677397968999884],[22.812798299000065,-25.66706268299997],[22.81496871000013,-25.652799987999813],[22.81341841600002,-25.641947936999852],[22.80959436000009,-25.633266296999892],[22.810834594000113,-25.625308125999837],[22.824373819000098,-25.615799661999944],[22.833365519000036,-25.606084492999898],[22.828714640000072,-25.59554249999985],[22.819206177000098,-25.584897155999855],[22.81341841600002,-25.575078632999976],[22.814038534000105,-25.56660369799988],[22.816829061000135,-25.558438822999946],[22.824683879000077,-25.543039245999875],[22.844630981000105,-25.481130879999952],[22.851348918000042,-25.47131235699989],[22.876773722000053,-25.462010599999957],[22.88762577300008,-25.450228372999945],[22.903645467000043,-25.4113676959999],[22.91191369600008,-25.399068704999863],[22.92049198400011,-25.39049041699984],[22.93093062300005,-25.384289244999845],[22.94477990700011,-25.378708190999916],[22.95614872200011,-25.372093606999922],[22.960282837000136,-25.36434214299983],[22.96255660000014,-25.355763854999807],[22.968034302000035,-25.346875507999883],[23.00699833200011,-25.310805358999968],[23.030666138000043,-25.29943654399989],[23.054540649000046,-25.30253712899993],[23.061155233000132,-25.310702005999858],[23.065496053000118,-25.3208305869999],[23.071697225000094,-25.32599823],[23.083892863000102,-25.319693705999896],[23.093401327000095,-25.312459004999834],[23.16853885900011,-25.280006204999907],[23.216081176000046,-25.267190449999916],[23.26569055100012,-25.263986510999942],[23.320364217000076,-25.273391621999817],[23.36594283100004,-25.289307962999843],[23.381445760000076,-25.292615253999838],[23.39922245300008,-25.29137502],[23.4319853100001,-25.280316263999804],[23.444904419000096,-25.278145852999984],[23.459270467000096,-25.2821766159999],[23.468158813000116,-25.290238138999978],[23.483455037000084,-25.31152882899997],[23.496580851000147,-25.324241230999913],[23.506606079000075,-25.33095916699986],[23.535854940000036,-25.343258157999898],[23.56107303800007,-25.357314147999915],[23.666699666000053,-25.432658385999886],[23.674244425000012,-25.442580261999964],[23.68675012200003,-25.454362486999884],[23.7426640220001,-25.469968769999923],[23.752069133000077,-25.477616882999982],[23.762301066000134,-25.498494160999968],[23.76901900200008,-25.50738250699989],[23.7783207600001,-25.51255015099998],[23.79857792100009,-25.518544616999833],[23.8074662680001,-25.523608906999897],[23.845396769000104,-25.569084166999854],[23.89066532400011,-25.59884979199994],[23.905754842000107,-25.61848683599996],[23.92477176900007,-25.62923553399999],[23.976448202000114,-25.617556660999924],[23.98802372300008,-25.61952036499994],[23.99825565600014,-25.625308125999837],[24.008694296000098,-25.63316294399995],[24.009624471000052,-25.641327818999883],[24.004250122000087,-25.649906107999826],[24.00569706200008,-25.65466033899982],[24.027091105000096,-25.65176645899983],[24.130960734000098,-25.626238301999972],[24.183463990000064,-25.62592824299999],[24.2276990150001,-25.648975931999956],[24.29673872900014,-25.72349334799982],[24.3389066980001,-25.751812031999904],[24.389239542000098,-25.759460143999974],[24.416731405000064,-25.753052265999926],[24.4367818610001,-25.745300801999928],[24.456728963000018,-25.743027038999827],[24.50085111700011,-25.757848433999925],[24.576721639000112,-25.78333465599995],[24.62963830600009,-25.816097512999875],[24.664984985000103,-25.823332213999933],[24.737952107000126,-25.81589080799999],[24.770714966000128,-25.822608743999936],[24.798620239000115,-25.829223326999923],[24.82890262900014,-25.826019388999867],[24.888537231000043,-25.811653340999865],[24.90838098200004,-25.804108580999824],[24.9679122310001,-25.762870787999987],[25.013284139000035,-25.743027038999827],[25.05173140500008,-25.737859395],[25.09028202300007,-25.743647154999977],[25.13596399000008,-25.756566263999986],[25.177821899000065,-25.76328419999983],[25.386491333000038,-25.743543802999948],[25.458424927000095,-25.711194355999947],[25.58725427200008,-25.61952036499994],[25.608855021000068,-25.559265644999968],[25.652837702000085,-25.46331855],[25.663528687000106,-25.439996438999884],[25.69546472200008,-25.30997853599986],[25.782901245000062,-25.131384784999838],[25.804915405000116,-25.064825540999845],[25.835197795000056,-25.016353047999953],[25.837058146000057,-24.97914601599996],[25.866203654000085,-24.918167826999976],[25.87674564600013,-24.886025084999957],[25.87726241100009,-24.845717468999823],[25.866927124000085,-24.77264699299995],[25.86837406400008,-24.748152363999893],[25.874058472000115,-24.7433981329999],[25.881706583000096,-24.74215789799987],[25.91467614800007,-24.73182261099987],[25.966042521000105,-24.73357961099994],[25.9811320390001,-24.72634490999988],[26.013584839000117,-24.704537455999855],[26.16591061700009,-24.66084619499989],[26.27878829000008,-24.62846974599996],[26.32571049000012,-24.62237192799992],[26.344520711000143,-24.62402557399996],[26.36353763800011,-24.62805633499995],[26.381624390000127,-24.629503274999948],[26.404001092000073,-24.63275806799987],[26.404362020000093,-24.632810566999865],[26.469474325000107,-24.571418965999882],[26.47681237800009,-24.55994679799987],[26.506061238000143,-24.488840026999853],[26.531175985000058,-24.45866099099993],[26.558357788000137,-24.438197122999966],[26.623470093000037,-24.399439798999946],[26.684086547000103,-24.34145884199998],[26.692923218000118,-24.32657602899995],[26.714007202000033,-24.315930683999866],[26.802270549000127,-24.289679055999926],[26.82325118000011,-24.278827005999883],[26.83916752200014,-24.26559783899998],[26.849709513000107,-24.24813120499985],[26.86893314600013,-24.16038462299981],[26.870896851000083,-24.11583953799999],[26.941176798000072,-23.850222676999834],[26.945000854000114,-23.823247578999897],[26.938127889000043,-23.80288706499995],[26.966601603000072,-23.755189718],[26.964542365000057,-23.747139969999818],[26.962054077000115,-23.73741302499988],[26.967170044000113,-23.718706155999897],[26.986548706000093,-23.686976826999967],[27.00417037000008,-23.645842386999988],[27.013833862000094,-23.638504333999904],[27.02427250200014,-23.6425350949999],[27.029853557000138,-23.65473073299991],[27.037605021000076,-23.66568613599989],[27.05476159600002,-23.666409606999977],[27.070057821000088,-23.65607431999996],[27.06943770300012,-23.641708272999878],[27.0631331780001,-23.624241638000015],[27.061531209000066,-23.604397887999923],[27.068404175000126,-23.607291767999907],[27.075225464000084,-23.61121917699998],[27.078326050000044,-23.60202077299989],[27.08411381100009,-23.596026305999956],[27.10251062000009,-23.583830667999933],[27.095792684000084,-23.583830667999933],[27.103750855000044,-23.571738382999868],[27.11336267100006,-23.564296975999937],[27.124421427000044,-23.56316009499993],[27.136720418000095,-23.570188089999842],[27.14116459100009,-23.55830250999982],[27.135686889000112,-23.551894632999876],[27.127418661000064,-23.545280049999874],[27.123077840000093,-23.53298105799992],[27.127418661000064,-23.525022887999953],[27.137650594000064,-23.523369241999916],[27.149122762000076,-23.52750335699993],[27.15718428500014,-23.53670176199985],[27.161525106000028,-23.529880472999892],[27.168966512000054,-23.52161224399994],[27.171446981000116,-23.515617777],[27.178681681000086,-23.523575947999955],[27.18663985200007,-23.527296650999887],[27.1956315510001,-23.52708994599992],[27.205656779000037,-23.523059183999933],[27.191497437000066,-23.503835550999906],[27.202504516000143,-23.49205332399991],[27.239711548000088,-23.48140797999983],[27.27810713700012,-23.46363128699997],[27.295573771000136,-23.451745706999944],[27.312006877000016,-23.437069599999873],[27.335571330000104,-23.40244639099987],[27.349989055000034,-23.39149098699997],[27.36120284000009,-23.42249684699999],[27.371331421000033,-23.417019143999923],[27.380839885000114,-23.405340270999858],[27.383733765000102,-23.399552510999882],[27.395826050000093,-23.394074808999804],[27.410502156000092,-23.389320576999978],[27.418460327000048,-23.39128428099984],[27.411122274000064,-23.405753681999865],[27.425178263000074,-23.41267832499993],[27.434996786000053,-23.40658050599997],[27.443161661000147,-23.395108336999954],[27.45267012500005,-23.385289814999894],[27.465692586000074,-23.380432230999887],[27.507240438000082,-23.379088643999903],[27.528841186000133,-23.37309417699997],[27.548891642000083,-23.360795186999848],[27.563671102000086,-23.342811787999864],[27.569355509000047,-23.32038421599995],[27.567753540000098,-23.31376963299996],[27.564911336000137,-23.30581146199991],[27.5633093670001,-23.299196878999823],[27.565893189000093,-23.296509703999973],[27.56961389200012,-23.29485605899984],[27.573076212000046,-23.290515237999855],[27.575246623000055,-23.284830830999905],[27.576073446000066,-23.279146422999958],[27.580414266000044,-23.263850198999904],[27.599224487000072,-23.244626565999965],[27.60800948100004,-23.21672129299999],[27.619171590000093,-23.21703135099989],[27.633434285000135,-23.223439229999922],[27.647128540000068,-23.227573343999936],[27.658755737000032,-23.223439229999922],[27.698443237000106,-23.193466898999887],[27.725728394000043,-23.221682229999857],[27.739164266000074,-23.227573343999936],[27.753633667000116,-23.220752053999988],[27.75942142800008,-23.21145029699987],[27.77420088700009,-23.173003030999922],[27.775751180000043,-23.172486266999883],[27.78329593900008,-23.166905212999946],[27.784587850000037,-23.165561624999977],[27.789290405000088,-23.163804626],[27.787378377000095,-23.159773864999835],[27.783037557000114,-23.155433043999935],[27.781022176000135,-23.152539163999947],[27.779058472000113,-23.1476815799999],[27.774614298000103,-23.140756936999864],[27.771720418000115,-23.133005472999937],[27.77420088700009,-23.12515065499983],[27.784949585000106,-23.127011006999833],[27.80644698100008,-23.128354593999973],[27.82225996900007,-23.122980245],[27.81574873800008,-23.104686787999867],[27.853782593000115,-23.095591735999804],[27.89553715000008,-23.079468688999906],[27.93005700700013,-23.057041117999912],[27.946076700000106,-23.029032491],[27.937911825000068,-22.98665781599989],[27.93749841300007,-22.963816832999964],[27.94917728700005,-22.953894957999893],[27.96840092000008,-22.951001077999905],[27.989381551000065,-22.943766377999935],[28.008295125000103,-22.934774677999897],[28.02183435000009,-22.926609802999877],[28.03744063300013,-22.911416930999934],[28.04973962400007,-22.891366474999895],[28.053977091000036,-22.869145609999947],[28.045398804000083,-22.847751565999857],[28.047155802000077,-22.836899515999903],[28.06575931800012,-22.82883799199999],[28.08880700700007,-22.822636820000014],[28.10368981900012,-22.81674570699992],[28.10772058100011,-22.810647887999963],[28.113198283000116,-22.79535166399991],[28.117435751000073,-22.78946055099999],[28.12560062600008,-22.78553314199985],[28.135625855000114,-22.78336273199986],[28.145857788000086,-22.779745381999874],[28.154952840000135,-22.77199391599987],[28.162497599000087,-22.758971455999927],[28.162704305000144,-22.75101328499987],[28.15970707200006,-22.7432618199999],[28.15774336700011,-22.73106618199985],[28.15970707200006,-22.718147074999933],[28.164668010000096,-22.708638610999856],[28.19619063300007,-22.6716382849999],[28.205492391000092,-22.665953876999946],[28.216344442000036,-22.663163349999977],[28.240684041000065,-22.66088958699997],[28.250554240000042,-22.65561859099985],[28.28683109500008,-22.615827738999837],[28.301817261000053,-22.60383880599997],[28.338559204000035,-22.58461517299986],[28.376851441000042,-22.57500335700003],[28.459378703000084,-22.569629006999975],[28.5224756260001,-22.584821878999986],[28.538495321000056,-22.58027435299988],[28.559837687000055,-22.563014424999977],[28.57756270300007,-22.560017191999872],[28.597199747000104,-22.56270436599999],[28.62386478700006,-22.562807718999835],[28.65900476100012,-22.551955667999962],[28.731351766000074,-22.513921813999943],[28.77475996900006,-22.501416116999934],[28.79677412900014,-22.49821217799996],[28.81682458500009,-22.492941181999853],[28.831190634000077,-22.48229583699994],[28.836771688000113,-22.46317555699994],[28.846590210000073,-22.44994639099987],[28.869379517000084,-22.448912861999887],[28.9125293380001,-22.453667093999968],[28.930409383000068,-22.440851338999888],[28.953457072000102,-22.400750426999977],[28.96337894700011,-22.392172138999868],[28.967926473000148,-22.38038991299996],[28.960226685000062,-22.310213316999977],[28.98373946100014,-22.281997985999837],[29.002756388000105,-22.26339447099997],[29.018052612000076,-22.2550228879999],[29.0178459060001,-22.250372008999847],[29.038723186000084,-22.22391367599985],[29.047818237000058,-22.220296325999865],[29.168844442000132,-22.21399180099995],[29.186621134000063,-22.207687275999845],[29.202795858000087,-22.194458108999854],[29.22207116700011,-22.182159117999902],[29.248219441000202,-22.179265238999918],[29.30289310700007,-22.190220641999986],[29.33152185000003,-22.192804463999977],[29.350073689000084,-22.186706645000015],[29.35694665600013,-22.190944111999983],[29.363251180000162,-22.19228769999995],[29.378030640000162,-22.192907816],[29.39952803600013,-22.182159117999902],[29.436114949000086,-22.163142190999935],[29.456888875000086,-22.158801370999953],[29.50691166200008,-22.170066832999908],[29.531819703000078,-22.17244394899987],[29.54251672400008,-22.16252207399995],[29.551043335000173,-22.145985615999873],[29.5701636150001,-22.141954853999962],[29.603960001000157,-22.145055439999922],[29.64106368000014,-22.129242451999914],[29.661424194000087,-22.12645192499987]],[[28.336440470000067,-28.684656269999874],[28.317216837000046,-28.700055846999945],[28.297063029000068,-28.706877136],[28.273911987000076,-28.709564310999852],[28.250864298000124,-28.707393899999857],[28.230710490000035,-28.69953908299992],[28.218116094000067,-28.70065207599998],[28.164047892000042,-28.705430196],[28.154952840000135,-28.70232960999988],[28.14503096500007,-28.714731953999948],[28.13169844500004,-28.729304707999813],[28.104103231000124,-28.765064799],[28.100899292000065,-28.770852559999895],[28.056560913000112,-28.812503763999914],[28.018733765000036,-28.856842142999866],[28.01449629700008,-28.86480031399992],[28.014806355000076,-28.872551778000016],[28.013566121000053,-28.878442890999832],[28.00467777500012,-28.880716654999944],[27.977495972000042,-28.880716654999944],[27.96623050900007,-28.875652363999876],[27.956928751000135,-28.8651103719999],[27.945043173000016,-28.855498555999986],[27.926232951000117,-28.85343149799992],[27.91166019700006,-28.86076955099983],[27.903598673000147,-28.873998718],[27.89729414900006,-28.889811705999918],[27.887992391000125,-28.904901224999918],[27.861327352000075,-28.915443216999975],[27.747432495000112,-28.908621928000013],[27.75477054900011,-28.925468444999904],[27.744073527000126,-28.933219909],[27.72831221500013,-28.937974140999984],[27.720147339000107,-28.945932311999865],[27.720043986000093,-28.95978159499984],[27.71901045700011,-28.967843119],[27.716685018000078,-28.973217468999962],[27.71446293100007,-28.976421406999947],[27.71337772600009,-28.979521992999896],[27.713326049000074,-28.98686004599989],[27.711672404000097,-28.99099416099999],[27.707641642000112,-28.990684101999832],[27.70288741100012,-28.989340514999867],[27.699063355000078,-28.990580749999978],[27.679736369000125,-29.015075377999946],[27.6674890540001,-29.026650898999986],[27.655035034000036,-29.03150848399983],[27.639170369000112,-29.03533253999994],[27.643769572000053,-29.04453094499986],[27.65627526800006,-29.055796406999917],[27.664956909000125,-29.06571828199982],[27.65860070800008,-29.066751810999804],[27.649350626000082,-29.07088592599992],[27.644389689000036,-29.07253957099995],[27.63751672400008,-29.06571828199982],[27.63074711100012,-29.07253957099995],[27.634479067000086,-29.09104054099987],[27.635604696000144,-29.096620789],[27.612970418000085,-29.133827819999908],[27.555712932000116,-29.195426126999863],[27.54847823100007,-29.198940124999822],[27.538246297000082,-29.20235076899993],[27.52816939300007,-29.20762176499987],[27.521503133000124,-29.216510110999977],[27.520986369000095,-29.2261219279999],[27.5272392170001,-29.24937632299982],[27.528892863000067,-29.260951842999944],[27.518919311000047,-29.268393248999885],[27.510686378000088,-29.270752952],[27.4698783770001,-29.2824492389999],[27.453290243000108,-29.291647643999806],[27.450293009000088,-29.299709166999886],[27.448329305000073,-29.322963562],[27.445848837000085,-29.331955260999944],[27.436133667000064,-29.34353078199989],[27.426831909000015,-29.34797495499998],[27.417633504000037,-29.350662129999932],[27.408641805000087,-29.357070006999876],[27.406264689000125,-29.36399464999995],[27.410295451000106,-29.369782408999836],[27.416186564000043,-29.375983582],[27.419080444000116,-29.383838398999856],[27.417633504000037,-29.39655080199999],[27.413706095000066,-29.402545267999837],[27.407091512000136,-29.40688608799982],[27.365543660000068,-29.446676940999918],[27.35448490400006,-29.462283222999954],[27.350247436000103,-29.48026662199995],[27.344873088000043,-29.484504089999902],[27.32141198700009,-29.483573913999933],[27.316037638000125,-29.487191263999915],[27.314073934000078,-29.498663430999855],[27.30911299600012,-29.509205424],[27.302498413000134,-29.518093769999922],[27.300306527000146,-29.520119603999945],[27.295677124000093,-29.524398294999926],[27.263120972000138,-29.541141459999892],[27.241830281000144,-29.548996277],[27.2137183020001,-29.55406056699981],[27.195838257000048,-29.562638854999918],[27.1857096760001,-29.565946145999913],[27.15635746300012,-29.568633320999865],[27.128142130000068,-29.578555195999936],[27.122767782000096,-29.581759134999917],[27.09041833500001,-29.611628112999938],[27.085870809000085,-29.6144186399999],[27.077705932000068,-29.611318053999952],[27.07512211100007,-29.605116882999962],[27.07202152500011,-29.599949238999866],[27.062203002000047,-29.600155944999912],[27.056828654000096,-29.60439341199988],[27.049180542000098,-29.62051645899986],[27.04235925300014,-29.628061218999814],[27.032954142000104,-29.616175638999877],[27.022412150000036,-29.616175638999877],[27.01486739100008,-29.62558074999984],[27.01445398000007,-29.641703796],[27.002154989000132,-29.666508483999948],[27.01021651200011,-29.66991912799996],[27.024530884000114,-29.680047709],[27.03765669800009,-29.686455586999955],[27.050989217000105,-29.69679087399997],[27.080134725000104,-29.735134785999985],[27.088661336000143,-29.750017598999847],[27.088661336000143,-29.75012095099987],[27.088764690000062,-29.75012095099987],[27.171350065000098,-29.921495297999936],[27.19883549000008,-29.978530782],[27.21795577000006,-29.99806447299984],[27.26591149900008,-30.033307800999822],[27.280174194000065,-30.053461607999893],[27.29371341900014,-30.10090057399988],[27.30043135600007,-30.114956562999804],[27.312782023000125,-30.131596373999823],[27.32203210400013,-30.134800312999968],[27.33443444800011,-30.13221649199997],[27.356655314000136,-30.13221649199997],[27.3719515380001,-30.135937194999894],[27.38135664900005,-30.142655130999913],[27.380529825000053,-30.15257700599992],[27.365543660000068,-30.165806172999822],[27.34368452900011,-30.21293507899992],[27.345544881000137,-30.241563821999986],[27.367817424000094,-30.295410664999835],[27.366163778000043,-30.31101694699987],[27.377015829000072,-30.312153828999886],[27.377707729000118,-30.31232376899999],[27.39763472500007,-30.31721811899986],[27.407814982000048,-30.318561705999826],[27.414842977000063,-30.317528176999843],[27.436030314000103,-30.30988006599986],[27.452101684000095,-30.310086770999913],[27.459388062000073,-30.316598001999974],[27.466726115000142,-30.34109263099994],[27.47747481300007,-30.356285501999963],[27.493184448000136,-30.367654316999857],[27.529668009000144,-30.382227070999917],[27.53336382400005,-30.393424839999966],[27.536592651000035,-30.403207701999918],[27.562740926000057,-30.425531920999887],[27.586822144000077,-30.45498748699997],[27.59012943500008,-30.463875833999893],[27.590646200000034,-30.472867532999942],[27.592299845000067,-30.481859232999977],[27.59860437000009,-30.49033416799989],[27.65953088300006,-30.53053843199991],[27.71353275600012,-30.58376515699996],[27.7436084390001,-30.600301614999964],[27.77843835400006,-30.609706726000013],[27.820399617000135,-30.61456431099985],[27.830424846000085,-30.61311737099986],[27.849545125000077,-30.604952493999928],[27.85822676600011,-30.603712259999895],[27.869802287000084,-30.607122904999912],[27.878277221000076,-30.612910663999898],[27.88613204000012,-30.619731953999942],[27.895640503000095,-30.626243183999915],[27.915587606000116,-30.63492482499997],[27.93656823800012,-30.64081593899988],[28.054700562000107,-30.649704284999984],[28.078781779000053,-30.65879933599996],[28.07898848500011,-30.639265644999952],[28.076508016000044,-30.623245950999898],[28.075836223000067,-30.607019551999898],[28.08157230600011,-30.58686574299992],[28.088031861000076,-30.57756398499998],[28.096351766000026,-30.572396341999887],[28.104878378000137,-30.56836557999989],[28.112836548000104,-30.562474466999973],[28.120846394000097,-30.553379415],[28.1242570390001,-30.547281595999948],[28.141206909000115,-30.50077280599991],[28.142447143000137,-30.492607930999906],[28.1392432050001,-30.482686055],[28.127564331000112,-30.465116068999844],[28.125393921000125,-30.457261250999906],[28.133248739000067,-30.44537567099988],[28.21820479300004,-30.387394713999907],[28.231433960000118,-30.37385548899985],[28.238461955000048,-30.352254739999875],[28.2357747800001,-30.329413756999873],[28.224095907000045,-30.32052541099995],[28.209419800000063,-30.314634297999856],[28.198464396000077,-30.30109507299996],[28.200634807000057,-30.282491555999826],[28.216034383000135,-30.267402038999915],[28.237015015000054,-30.256343282],[28.25530847200011,-30.249935403999956],[28.284712362000107,-30.246214700999957],[28.294375854000123,-30.24249399799986],[28.30130049600012,-30.23649953199991],[28.313702840000076,-30.220789895999857],[28.323004598000125,-30.214692076999892],[28.338662557000077,-30.20104949999998],[28.355596048000052,-30.173240026999917],[28.364087362000078,-30.15929494199993],[28.383879436000143,-30.144205423999853],[28.40796065300009,-30.14089813199993],[28.456226441000098,-30.14699595099999],[28.48092777500011,-30.1393478399999],[28.524335978000124,-30.116713561999955],[28.540562377000125,-30.113302916999853],[28.55730554200008,-30.114956562999804],[28.605881389000075,-30.13128631599984],[28.63967777500005,-30.131493020999983],[28.72949141400005,-30.1018307499999],[28.795637248000045,-30.08942840499986],[28.860026082000047,-30.066380716999902],[28.976298055000115,-29.99992482499985],[29.01578602900011,-29.97858746299991],[29.094120321000048,-29.93625945999993],[29.10631595900014,-29.93150522799995],[29.132774292000136,-29.92468393999981],[29.144246460000144,-29.919723002999863],[29.150654337000105,-29.91114471399983],[29.148277221000058,-29.901326191999857],[29.137321818000064,-29.882102558999915],[29.13515140800007,-29.86804657],[29.135771525000052,-29.859158222999895],[29.13298099800008,-29.85202687499986],[29.12037194800007,-29.843448588000015],[29.105799194000095,-29.82556854199987],[29.10631595900014,-29.80159067799994],[29.112310425000086,-29.77513234499996],[29.113599444000073,-29.75285073499995],[29.113757365000083,-29.75012095099987],[29.132412557000123,-29.720251972999865],[29.14507328300007,-29.69193328899986],[29.161299682000077,-29.666921894999955],[29.19034183700009,-29.64687143899999],[29.26733972100013,-29.626097513999966],[29.27860518400004,-29.613591817999875],[29.278398478000128,-29.597055358999878],[29.279948771000107,-29.581449076000023],[29.296278524000083,-29.571630553999967],[29.282015828000084,-29.556127623999952],[29.275142863000013,-29.532253112999964],[29.275198725000134,-29.528294891999934],[29.275504598000136,-29.506621601999907],[29.282739298000163,-29.485640970999906],[29.303823282000195,-29.466830749999897],[29.332038615000187,-29.455978698999857],[29.36180424000005,-29.447917174999947],[29.388159220000063,-29.43778859499982],[29.39952803600013,-29.430347188999885],[29.40789961800007,-29.42145884199996],[29.412550497000066,-29.41029673299992],[29.4118787030001,-29.395827330999907],[29.413739054000104,-29.380117696000013],[29.432239217000102,-29.356966654999848],[29.435908244000103,-29.34239390099998],[29.43280765700015,-29.336606139999915],[29.419475138000024,-29.325030618999875],[29.41503096500011,-29.318932799999914],[29.413997437000063,-29.31169809899985],[29.414927613000117,-29.29640187599989],[29.413997437000063,-29.290304056999926],[29.40386885500018,-29.268703307999868],[29.375963582000193,-29.23552703799986],[29.365008178000064,-29.20028371199996],[29.357463420000183,-29.183333841999954],[29.34371748900017,-29.169794616999898],[29.328059530000104,-29.15935597699986],[29.316845744000116,-29.147367044999896],[29.311781453000062,-29.089799498999948],[29.28139571100021,-29.07863738999991],[29.24139815300006,-29.07770721399987],[29.208428589000192,-29.06892222099997],[29.12595300300009,-28.992441100999983],[29.091536499000114,-28.978591816999938],[29.069005575000116,-28.973320820999984],[29.0557764080001,-28.965362649999932],[29.049988647000134,-28.95265024899997],[29.04967858900005,-28.93301320399986],[29.040531861000062,-28.92298797599993],[29.018982788000102,-28.913996275999892],[28.99541833500012,-28.90831186899993],[28.980845581000064,-28.909035339000027],[28.92586185700012,-28.859529316999982],[28.8856575930001,-28.79720753999986],[28.8728418370001,-28.78356496099985],[28.859013629000113,-28.77299044799986],[28.858785848000082,-28.772816262999836],[28.84369633000009,-28.764754740999845],[28.827936586000135,-28.759534324999915],[28.827159871000102,-28.759277037999933],[28.7959473060001,-28.754316100999816],[28.787679077000064,-28.74873504599998],[28.75863692200008,-28.700469257999952],[28.74385746200008,-28.689513854999984],[28.699519083000013,-28.688480326],[28.68897709200004,-28.674424336999973],[28.681742391000085,-28.633393249999855],[28.675644572000124,-28.613756205],[28.66654952000008,-28.597219747],[28.653217,-28.583060403999966],[28.634303426000084,-28.570761414000017],[28.619420614000063,-28.57241505899988],[28.562473185000073,-28.606521503999943],[28.542629435000094,-28.6107589719999],[28.40341312700008,-28.61892384899991],[28.38294926000009,-28.62646860799987],[28.363518921000033,-28.643625182999926],[28.336440470000067,-28.684656269999874]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Zambia","sov_a3":"ZMB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Zambia","adm0_a3":"ZMB","geou_dif":0,"geounit":"Zambia","gu_a3":"ZMB","su_dif":0,"subunit":"Zambia","su_a3":"ZMB","brk_diff":0,"name":"Zambia","name_long":"Zambia","brk_a3":"ZMB","brk_name":"Zambia","brk_group":null,"abbrev":"Zambia","postal":"ZM","formal_en":"Republic of Zambia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Zambia","name_alt":null,"mapcolor7":5,"mapcolor8":8,"mapcolor9":5,"mapcolor13":13,"pop_est":11862740,"gdp_md_est":17500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10_":"ZA","iso_a2":"ZM","iso_a3":"ZMB","iso_n3":"894","un_a3":"894","wb_a2":"ZM","wb_a3":"ZMB","woe_id":23425003,"woe_id_eh":23425003,"woe_note":"Exact WOE match as country","adm0_a3_is":"ZMB","adm0_a3_us":"ZMB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1,"filename":"ZMB.geojson"},"geometry":{"type":"Polygon","coordinates":[[[31.11983646700014,-8.616630553999912],[31.1410238040001,-8.606191914999968],[31.161384318000046,-8.59172251399984],[31.182675008000103,-8.580767109999952],[31.20675622600004,-8.580767109999952],[31.218435099000143,-8.5887252799999],[31.237348674000145,-8.613943378999878],[31.248045695000084,-8.621901549999933],[31.260913127000094,-8.623968607999899],[31.269388062000075,-8.621074726999908],[31.27708785000004,-8.616010436999929],[31.32881595900011,-8.597716979999873],[31.34039147900006,-8.595236510999896],[31.34752282700009,-8.592445983999937],[31.350106648000175,-8.588518574999867],[31.353310587000067,-8.587174987999902],[31.362198934000105,-8.592342630999909],[31.3659196370001,-8.598647155999913],[31.369226928000103,-8.616837259999954],[31.372637573000134,-8.62386525499987],[31.385970093000136,-8.632546894999832],[31.39883752400004,-8.633787129999874],[31.412428426000133,-8.63234018999988],[31.427517945000147,-8.633477070999973],[31.443227580000094,-8.641538593999883],[31.464724976000127,-8.666136576999861],[31.48064131700005,-8.67616180399989],[31.519088583000098,-8.687013854999933],[31.53903568500004,-8.703550312999923],[31.545960327000103,-8.728975117999921],[31.54585697400006,-8.76628550199996],[31.553350057000046,-8.80907358799989],[31.57644942200011,-8.839666035999912],[31.672670939000056,-8.913046568999945],[31.68962080900013,-8.919557799999907],[31.70977461800004,-8.919661152999936],[31.730238485000083,-8.912426452999881],[31.76434493000005,-8.894132995999911],[31.787599324000098,-8.89216929099996],[31.93663415500009,-8.932580260999941],[31.91782393400007,-8.973094583999865],[31.91772058100014,-9.022497252999884],[31.938081095000143,-9.061771341999943],[31.980559122000102,-9.0718999219999],[32.00138472500004,-9.06332163499988],[32.01580245000008,-9.05267628999988],[32.03171879100012,-9.04595835399995],[32.057246948000056,-9.049575703999935],[32.08603072100004,-9.066112161999923],[32.096417684000066,-9.069109394999941],[32.10582279400012,-9.068282571999916],[32.12504642700014,-9.063735045999891],[32.13414148000003,-9.064148457999906],[32.145574479000175,-9.070265111999916],[32.15481205300005,-9.075207213999903],[32.19160567200003,-9.112207539999858],[32.21129439300011,-9.126780293999914],[32.23144820200008,-9.133808287999925],[32.25273889200014,-9.136495462999946],[32.383015177000054,-9.133911641999944],[32.423426148000196,-9.143833516999862],[32.45970300300007,-9.16801808699992],[32.470658407000144,-9.181867369999893],[32.49008874500004,-9.227342630999942],[32.504454793000036,-9.249253437999897],[32.518045695000126,-9.258245137999936],[32.55561446100006,-9.261242369999948],[32.64160404500012,-9.279845885999904],[32.71322758000008,-9.285840352999926],[32.72583662900007,-9.292558287999952],[32.73968591300007,-9.307337747999966],[32.74340661600007,-9.314985859999865],[32.746507203000135,-9.329972024999918],[32.752294962000065,-9.337413430999945],[32.759633016000066,-9.33999725299985],[32.776996297000096,-9.33824025499996],[32.7843343510001,-9.339687194999954],[32.83073978600009,-9.370176289999947],[32.905463908000115,-9.398184915999948],[32.9208634850001,-9.407900085999898],[32.92303389500006,-9.466294453999865],[32.92778812700004,-9.479833678999853],[32.9375032960001,-9.487791849999908],[32.94360111500009,-9.485724791999942],[32.95026737500007,-9.480867206999918],[32.96189457200012,-9.480350443999882],[32.968612508000035,-9.484381204999877],[32.98308190900008,-9.497713723999908],[32.99197025500018,-9.501847839999925],[32.99238366700013,-9.52913299499994],[32.97471032700014,-9.60127329499994],[32.98690596500012,-9.62845509899992],[33.00013513200014,-9.6327959179999],[33.01119388800004,-9.627834980999864],[33.02225264500004,-9.620290221999909],[33.035740194000084,-9.616982929999907],[33.0467472740001,-9.62204722],[33.05077803600011,-9.632692565999875],[33.05305179900011,-9.644784850999955],[33.05832279400005,-9.654293313999858],[33.08044030700006,-9.662251484999913],[33.089225301000106,-9.643958027999927],[33.092532593000044,-9.614399108999903],[33.09832035300008,-9.588457539999865],[33.12147139500007,-9.599516296999866],[33.17542159000004,-9.602306823999925],[33.19542036900009,-9.616259460999913],[33.20983809400008,-9.641374205999838],[33.2142822670001,-9.654706725999858],[33.21578088400014,-9.669899596999883],[33.21299035700014,-9.680648294999912],[33.207822714000145,-9.688709818999897],[33.2045670980001,-9.698114928999942],[33.2072542730001,-9.712894388999871],[33.21671106000008,-9.727053730999913],[33.24177412900008,-9.742349954999966],[33.252729533000036,-9.754028828999935],[33.26719893400008,-9.781210631999926],[33.27577722100011,-9.79330291699992],[33.28776615400005,-9.803844908999878],[33.29996179200009,-9.810252786999923],[33.33696211700004,-9.82368865999996],[33.34347334800009,-9.831440123999881],[33.359182984000086,-9.8709209189999],[33.365590861000044,-9.898826191999888],[33.35845951300007,-9.919910175999917],[33.32879724100013,-9.965488789999894],[33.30998702000011,-10.012721048999936],[33.30471602300008,-10.037939147999893],[33.30409590700008,-10.063777363999904],[33.31753177900009,-10.082070820999872],[33.39918054200007,-10.117934264999917],[33.420161173000054,-10.135607604999919],[33.43649092600008,-10.153280944999919],[33.45457767800008,-10.168060403999931],[33.48051924600014,-10.177052103999884],[33.49912276200013,-10.201236673999858],[33.51896651200008,-10.21498260499989],[33.53328088400008,-10.231209004999897],[33.53560632300014,-10.262731628999873],[33.52930179900011,-10.318645527999948],[33.532919149000065,-10.342623392999869],[33.55917077600009,-10.404325052999937],[33.567645712000115,-10.416003926999906],[33.5955509850001,-10.440601907999891],[33.60319909700007,-10.449180195999915],[33.622732788000064,-10.494035339999911],[33.63818404200009,-10.511605325999879],[33.66541752200009,-10.515119323999938],[33.665572550000036,-10.541370950999877],[33.67265222200006,-10.559561054999918],[33.67352257400012,-10.569367024999906],[33.673849293000046,-10.573048058999929],[33.67420251500005,-10.577027688999863],[33.65776940900008,-10.601315612999954],[33.642266479000114,-10.61526824899994],[33.60309574400014,-10.643276874999868],[33.59027998800008,-10.648961282999906],[33.57694746900006,-10.657642923999957],[33.528268270000126,-10.711593118999915],[33.51199019400008,-10.75179738299994],[33.500983113000125,-10.769160664999958],[33.48051924600014,-10.781563008999925],[33.46532637600012,-10.784353535999896],[33.44713627200008,-10.802233580999939],[33.4340104580001,-10.808124694999947],[33.41866255700006,-10.807297870999916],[33.38553796400004,-10.800889993999888],[33.37174035700008,-10.803267109999922],[33.35783939700019,-10.808744811999915],[33.33262129800005,-10.81360239699994],[33.31908207200007,-10.818149921999876],[33.30688643400009,-10.828588561999908],[33.288127889000066,-10.856700540999938],[33.273400106000054,-10.865588887999863],[33.261204467000134,-10.865278827999887],[33.250765829000045,-10.862488300999914],[33.241412394000065,-10.865692240999891],[33.23257572500005,-10.883262226999875],[33.23169722500006,-10.897628274999875],[33.239603719000115,-10.903105976999953],[33.25210941600016,-10.903105976999953],[33.26585534600014,-10.90114227299992],[33.280324747000066,-10.913337910999928],[33.287869507000096,-10.944860533999899],[33.29096019900004,-10.975086452999959],[33.29396732600014,-11.00449513799991],[33.30368249500009,-11.034570820999875],[33.31810022000013,-11.062269388999908],[33.33660038200014,-11.087384134999922],[33.35887292400008,-11.109398294999906],[33.390912313000115,-11.164795430999959],[33.38223067200004,-11.194664408999884],[33.36848474100009,-11.222673034999971],[33.29830814600012,-11.329229837999932],[33.29680952900014,-11.335741068999909],[33.30027185100005,-11.347006530999876],[33.2989282640001,-11.353104349999924],[33.2933472090001,-11.35775522899989],[33.27805098400012,-11.364266458999865],[33.273503459000096,-11.369640807999913],[33.27184981300013,-11.383696796999928],[33.273813517000065,-11.396615905999852],[33.27360681200014,-11.409431660999928],[33.26518355300004,-11.423074238999929],[33.2397070720001,-11.402403665999913],[33.230301961000066,-11.416563008999958],[33.23495284100011,-11.501725768999904],[33.23381595900013,-11.514024758999938],[33.227304728000036,-11.532731627999922],[33.21262862100008,-11.563840840999887],[33.21593591300007,-11.571592304999895],[33.232679077000114,-11.577690123999943],[33.24931888900005,-11.577793476999872],[33.26688887500012,-11.575623067999885],[33.28321862800004,-11.578413594999844],[33.29675785300009,-11.59360646499988],[33.30264896700004,-11.609729512999948],[33.31401778100013,-11.772200215999902],[33.31060713700009,-11.808787129999926],[33.29737797000007,-11.84651092499989],[33.29748132300011,-11.862530618999939],[33.308746786000086,-11.8844414269999],[33.312674194000124,-11.898704120999867],[33.30931522600014,-11.914310403999906],[33.30357914300009,-11.930226745999931],[33.29422570800011,-11.9812830609999],[33.254899943000055,-12.072646992999921],[33.25128259300004,-12.105823261999944],[33.252729533000036,-12.139516295999897],[33.26027429200008,-12.155742695999905],[33.288386271000036,-12.182201029999902],[33.29996179200009,-12.195946959999928],[33.312467489000085,-12.228606465999903],[33.33014082900007,-12.298266295999921],[33.349467814000036,-12.32792856799989],[33.384607788000096,-12.340020852999885],[33.458298381000134,-12.318110045999916],[33.49736576300011,-12.331545917999959],[33.51410892700005,-12.331029153999836],[33.52558109600011,-12.335266621999892],[33.5271313880001,-12.35562713599991],[33.518139689000066,-12.371750182999904],[33.51388714300008,-12.374281459999906],[33.4877539470001,-12.389836934999906],[33.48051924600014,-12.406373391999907],[33.46532637600012,-12.409060566999926],[33.46077884900006,-12.416501972999868],[33.45995202600005,-12.441099954999842],[33.45111535600006,-12.452985533999879],[33.42078129100014,-12.46497446699992],[33.40941247500012,-12.475206400999909],[33.39375451700005,-12.498254089999874],[33.37323897300007,-12.51851125],[33.35039799000009,-12.53267059299992],[33.32828047700008,-12.537631529999956],[33.32032230600004,-12.535047708999867],[33.311950724000035,-12.529880065999862],[33.302235555000095,-12.52512583399988],[33.2897298580001,-12.524195657999911],[33.263168172000064,-12.528536478999897],[33.255106648000094,-12.531947122999922],[33.24363448100007,-12.5447628779999],[33.22699467000007,-12.579076029999925],[33.21299035700014,-12.588584492999912],[33.20291345200013,-12.591788430999884],[33.19681563300014,-12.595405781999958],[33.19237146000006,-12.599023131999942],[33.187307169000064,-12.602330423999945],[33.18131270300006,-12.60822153699985],[33.178005411000065,-12.615042826999897],[33.17325118000008,-12.620003763999947],[33.16301924600009,-12.620417174999957],[33.15878177900004,-12.615352884999893],[33.14689620000007,-12.593235370999878],[33.13991988100008,-12.586310729999894],[33.13035974100012,-12.58372690899989],[33.122814982000136,-12.584553730999914],[33.10700199400014,-12.58868784599994],[33.0990438230001,-12.593235370999878],[33.08994877100014,-12.600780130999922],[33.08126713000007,-12.604810892999922],[33.07423913500014,-12.598299661999945],[33.07000166800009,-12.590444843999919],[33.06462731900007,-12.584967142999927],[33.057702678000055,-12.583416848999903],[33.04953780100004,-12.586827493999934],[33.035378459000064,-12.599126484999971],[33.024836466000124,-12.612665710999863],[32.99414066600008,-12.672507018999909],[32.95807051600008,-12.725216979999928],[32.94463464400013,-12.752398782999917],[32.941120646000115,-12.769865416999963],[32.947011760000066,-12.8432459509999],[32.95352299000007,-12.854098001999944],[32.980498088000104,-12.870737813999881],[33.00504439200006,-12.892958678999918],[33.013571004000084,-12.917246601999906],[33.00892012500009,-12.945048522999869],[32.9815316160001,-13.006130065999868],[32.96592533400013,-13.116820983999927],[32.96711389200004,-13.134184264999945],[32.9712996830001,-13.150927428999907],[32.97905114700012,-13.167877298999912],[32.99507084200013,-13.190873311999951],[32.9981714270001,-13.202448831999902],[32.99279707900012,-13.21640146899989],[32.962721395000074,-13.224979756999929],[32.937865031000115,-13.255882262999918],[32.91962325000014,-13.294846292999907],[32.90548718000008,-13.35139057399992],[32.89213138800005,-13.404813740999883],[32.874251342000036,-13.443157653999904],[32.84582930500011,-13.458040465999943],[32.827432495000096,-13.460830992999902],[32.819060913000044,-13.47168304399986],[32.81689050300013,-13.487392678999925],[32.81751062000012,-13.505582783999953],[32.8130664470001,-13.528217060999921],[32.80004398600005,-13.537105407999931],[32.76319869000014,-13.542479755999892],[32.749814494000134,-13.550851338999877],[32.7228393960001,-13.573382262999885],[32.71023034600005,-13.575345966999919],[32.69162683100018,-13.569144794999929],[32.67726078300012,-13.567801207999878],[32.66764896600005,-13.57555267399988],[32.66330814700012,-13.596326598999923],[32.67509037200011,-13.628055927999938],[32.70671635000008,-13.635083922999852],[32.74340661600007,-13.63539398199994],[32.769864950000056,-13.6468661499999],[32.80779545000007,-13.699162698999956],[32.813376506000054,-13.711151631999925],[32.804849894000135,-13.72200368199988],[32.76810795000006,-13.739056904999899],[32.75735925300006,-13.750219013999937],[32.76304366000011,-13.777194111999874],[32.79187911000014,-13.789803160999895],[32.82877608300009,-13.797037861999868],[32.859420207000085,-13.808096617999865],[32.8741479900001,-13.82060231499986],[32.923912394000126,-13.88044362299992],[32.92789148000008,-13.895636494999849],[32.930061890000104,-13.910519306999985],[32.93615970900004,-13.926228941999867],[32.9444279380001,-13.932946878999884],[32.9625146890001,-13.932016702999931],[32.97057621200008,-13.93604746499993],[32.97626062000012,-13.944522399999926],[32.97667403100013,-13.949793395999862],[32.974813680000125,-13.955477803999912],[32.9712996830001,-14.005914000999908],[32.97646732600009,-14.021106871999848],[32.99982507400006,-14.050459085999917],[33.018170206000036,-14.046221618999951],[33.04943444800011,-13.996612243999976],[33.0629736730001,-13.981729430999849],[33.07692631100008,-13.97449472999996],[33.111601196000095,-13.964572854999886],[33.12064457200006,-13.955891214999923],[33.13025638900007,-13.930569762999935],[33.140281616000095,-13.924988707999916],[33.1545443120001,-13.936564228999956],[33.185653524000145,-13.993821715999928],[33.20270674700009,-14.013872171999878],[33.13004968300004,-14.038056741999938],[33.042923217000066,-14.067098896999937],[32.917142782000155,-14.109060159999927],[32.7449569090001,-14.166421],[32.57680179900018,-14.22254160499996],[32.42549320400008,-14.27297780299996],[32.32038334100014,-14.308014424999895],[32.22736576300014,-14.339020283999915],[32.147060587000055,-14.353386331999912],[32.10876835100004,-14.3648585],[32.03326908400004,-14.398758238999946],[31.932913452000033,-14.431107685999848],[31.801345256000104,-14.473585712999878],[31.65840824400004,-14.519577737999967],[31.58967858900007,-14.554821064999942],[31.49666101100013,-14.602570087999922],[31.410878133000093,-14.633575947999942],[31.306801799000137,-14.658173928999927],[31.17802412900005,-14.688559671999895],[31.07446455900009,-14.713054300999943],[31.05658451300013,-14.714397887999908],[30.91509444200011,-14.746023863999909],[30.815772339000034,-14.768244730999939],[30.676969441000093,-14.817647399999956],[30.591806682000083,-14.848136494999947],[30.485559937000176,-14.885963642999926],[30.392490682000187,-14.931025492999964],[30.31843835500007,-14.966992289999936],[30.230898478000082,-14.977224222999922],[30.214465373000053,-14.981461690999877],[30.214420897000082,-14.981965750999933],[30.213845255000077,-14.988489684999891],[30.22097660300011,-15.018358662999901],[30.22097660300011,-15.0630071],[30.225834188000135,-15.106311950999896],[30.263144572000044,-15.231265563999939],[30.287949260000115,-15.27891123399989],[30.32050541200005,-15.29947845399988],[30.33487146000004,-15.304749450999907],[30.347480509000093,-15.317875264999882],[30.35791914900011,-15.33565195699991],[30.364947143000105,-15.354152119999938],[30.369184611000094,-15.374719339999928],[30.371768432000067,-15.439831644999911],[30.374920695000128,-15.451303811999933],[30.389648478000137,-15.471147562999917],[30.392852417000086,-15.480759378999933],[30.39016524200008,-15.490784606999869],[30.371768432000067,-15.525407816999873],[30.365257202000123,-15.547421976999942],[30.367427613000075,-15.561271259999911],[30.395953003000045,-15.590623473999885],[30.40122399900008,-15.598478291999925],[30.41269616700009,-15.62793385799992],[30.410370728000146,-15.630414326999896],[30.396263061000123,-15.635995380999914],[30.35667891500009,-15.651498310999926],[30.328050171000086,-15.652428486999966],[30.296196212000094,-15.639041585999891],[30.280094442000063,-15.6322746779999],[30.254876343000035,-15.628864033999973],[30.24609134900004,-15.632067972999947],[30.23100183100013,-15.64467702299987],[30.223147013000077,-15.64974131299995],[30.20723067200009,-15.653151956999878],[30.195551798000107,-15.649121194999877],[30.16992028800013,-15.632171324999975],[30.13012943500013,-15.623696390999967],[30.090028523000115,-15.629380797999914],[30.05023767000011,-15.640129495999927],[30.010653524000077,-15.64622731499989],[29.967503702000045,-15.641473083999896],[29.881772502000043,-15.618838805999943],[29.83733077000005,-15.61480804499986],[29.8142830810001,-15.619665628999883],[29.773251994000077,-15.638062438999969],[29.7300504960001,-15.64467702299987],[29.67279300900014,-15.663280537999924],[29.64850508600006,-15.666587829999926],[29.627989543000073,-15.663590595999906],[29.608559204000183,-15.658422952999913],[29.587216838000188,-15.655735778999881],[29.563445679000036,-15.66214365599991],[29.52623864700013,-15.692839456999947],[29.508461955000083,-15.703588154999878],[29.42205896000013,-15.711029561999908],[29.406969442000044,-15.714233499999878],[29.186311076000063,-15.812832132999873],[29.150964396000063,-15.848798929999928],[29.141869344000096,-15.85448333799988],[29.12171553500014,-15.8593409219999],[29.102181844000114,-15.87091644299994],[29.086162150000064,-15.88455901999994],[29.076343628000103,-15.895411070999897],[29.055052938000102,-15.93437510199989],[29.04234053600007,-15.946260680999911],[29.018052612000076,-15.950601500999895],[28.972784058000055,-15.951428323999918],[28.95128666200011,-15.955252379999948],[28.9468615990001,-15.957235194999967],[28.932373087000084,-15.96372731499987],[28.898886760000092,-15.995456643999889],[28.87718265800009,-16.022018329999895],[28.874082072000135,-16.028942972999882],[28.86033614100012,-16.049406839999847],[28.857235555000074,-16.060465595999943],[28.859302612000135,-16.06956064899991],[28.86385013900008,-16.076588643999926],[28.868501017000114,-16.082169697999944],[28.870981486000087,-16.087233988999913],[28.865400431000097,-16.121237080999947],[28.85248132300006,-16.162784931999852],[28.84710697500012,-16.20267913799998],[28.86416019700005,-16.23120452899994],[28.840285685000058,-16.28474131199988],[28.836771688000113,-16.306342060999953],[28.840492391000115,-16.323601989999943],[28.8570288490001,-16.36545989999992],[28.857235555000074,-16.388197529999985],[28.83305098500009,-16.426438089999888],[28.82912357600011,-16.434602966999904],[28.822508992000024,-16.47077646899993],[28.808866414000107,-16.48627939799985],[28.76928226700008,-16.515218199999907],[28.76111739100014,-16.532271423999926],[28.741376994000092,-16.55066823299994],[28.732850382000066,-16.55810963899995],[28.718794393000053,-16.560280049999946],[28.69073409000003,-16.560280049999946],[28.64329512600005,-16.56875498499994],[28.28011316000007,-16.70652435299989],[28.212520385000087,-16.74858896899991],[28.113921753000113,-16.82755055799987],[28.022992543000072,-16.865393042999884],[27.86856205200013,-16.929663186999917],[27.816885620000107,-16.959635517999857],[27.777301473000133,-17.001183369999932],[27.64118575100005,-17.198483987999865],[27.624855998000015,-17.233313903999914],[27.60449548300008,-17.312792256999913],[27.57731368000009,-17.363125101999884],[27.524293661000087,-17.415111592999903],[27.422077677000118,-17.50482187899989],[27.157080932000042,-17.769301859999942],[27.146952352000085,-17.783874613999913],[27.14529870600012,-17.794106546999984],[27.14653894000014,-17.81891123499993],[27.149019409000115,-17.84247568699993],[27.115429728000095,-17.882163186999918],[27.07817102000007,-17.916993102999882],[27.048457072000105,-17.94427825999989],[27.02127526900011,-17.958540953999957],[27.006289103000142,-17.962675068999886],[26.95916019700013,-17.96474212699985],[26.948669881000086,-17.968876240999876],[26.912031291000034,-17.992027281999867],[26.888260132000084,-17.98458587599994],[26.79400231900007,-18.026237080999863],[26.76971439600007,-18.029027607999918],[26.75359135000008,-18.032955016999978],[26.740568889000144,-18.040499775999933],[26.71194014500008,-18.06582122799992],[26.70000288900013,-18.06923187199993],[26.685688517000127,-18.06675140399996],[26.628844442000087,-18.049181416999897],[26.612721395000108,-18.04122324599993],[26.598872111000045,-18.029957783999876],[26.583369181000137,-18.013214619999914],[26.570243367000074,-18.00287933299991],[26.553603557000145,-17.996471455999966],[26.527145223000076,-17.992027281999867],[26.485494018000054,-17.979314880999908],[26.40859948700006,-17.93900726299995],[26.362710815000096,-17.93063568099997],[26.325503785000077,-17.936010029999935],[26.31826908400012,-17.934356383999898],[26.311964559000103,-17.928361917999965],[26.303799683000076,-17.922780863999947],[26.294291219000087,-17.9185433959999],[26.24829919400011,-17.913375752999897],[26.239204142000116,-17.910171813999924],[26.23393314600008,-17.903970641999933],[26.228248739000065,-17.89466888399991],[26.221117391000117,-17.886297302999935],[26.211918986000114,-17.882783304999887],[26.203030640000094,-17.887227477999886],[26.167477254000033,-17.91358245799995],[26.158588908000127,-17.918336689999933],[26.13543786600013,-17.92257415799989],[26.11859134900007,-17.93156585699994],[26.101228068000125,-17.935803324999895],[26.09523360200012,-17.93807708699991],[26.094200073000135,-17.941901143999942],[26.09616377700007,-17.9546135449999],[26.09523360200012,-17.958540953999957],[26.08117761200009,-17.962365010999903],[26.062470743000116,-17.962881774999943],[26.046554402000083,-17.966292418999966],[26.04055993600005,-17.978488056999893],[26.03373864800011,-17.971563414999906],[25.9785482180001,-17.998951924999943],[25.966972697000074,-18.000502216999873],[25.924494670000115,-17.998951924999943],[25.86361983200007,-17.971563414999906],[25.85349125200011,-17.959987894999955],[25.846153198000135,-17.943658141999915],[25.84749678500009,-17.929395445999944],[25.86361983200007,-17.923814391999926],[25.849667196000098,-17.90665781599996],[25.80439864100009,-17.88815765399994],[25.794683471000038,-17.87265472399993],[25.78600183100008,-17.8622160849999],[25.76595137500004,-17.84981374099992],[25.743833862000116,-17.83937510199989],[25.70642012500008,-17.8298666379999],[25.69422448700007,-17.81942799899987],[25.681408732000076,-17.8114698279999],[25.657017456000062,-17.813950296999877],[25.603997436000043,-17.836171162999918],[25.536818074000077,-17.848676858999905],[25.530926962000077,-17.850950621999928],[25.522141967000096,-17.860149027999924],[25.516457561000063,-17.862319437999915],[25.510153035000144,-17.861182555999918],[25.5007479250001,-17.856014911999903],[25.495580281000088,-17.8548780309999],[25.420287719000044,-17.8548780309999],[25.409539021000114,-17.853017679999894],[25.376466105000105,-17.841235452999896],[25.345253540000044,-17.842579039999862],[25.335538371000094,-17.841235452999896],[25.315901327000063,-17.83214040099992],[25.285412231000066,-17.809299417999906],[25.266705363000085,-17.800927835999943],[25.259780721000112,-17.794106546999984],[25.253476196000094,-17.781497497999865],[25.242417440000082,-17.770335387999918],[25.22887821500012,-17.762480570999898],[25.215132283000088,-17.75927663099992],[25.198182414000087,-17.758449808999895],[25.190741007000067,-17.755349222999953],[25.177821899000037,-17.73881276399996],[25.172447551000086,-17.735092060999946],[25.161182088000118,-17.72940765299991],[25.15684126800005,-17.725170185999954],[25.155290975000128,-17.719382425999882],[25.15642785600005,-17.706670023999934],[25.15332727100008,-17.700985615999883],[25.13854781100008,-17.686102803999944],[25.13141646300005,-17.686516214999955],[25.122631469000055,-17.697885029999938],[25.120047648000135,-17.691063740999894],[25.1150867100001,-17.684242451999935],[25.107955363000144,-17.678868102999967],[25.098756958000052,-17.67680104599991],[25.096896606000143,-17.67215016699994],[25.088525024000088,-17.642694600999945],[25.085217732000075,-17.640937601999966],[25.06702762800003,-17.625331318999926],[25.06423710100009,-17.621507262999984],[25.052558227000105,-17.62140390999987],[25.04532352700005,-17.619956969999876],[25.0400525310001,-17.616132913999934],[25.033851359000035,-17.608484801999865],[25.033851359000035,-17.601560159999877],[25.04056929500007,-17.58450693699993],[25.036951945000084,-17.58119964599993],[25.026720011000094,-17.582749938999953],[25.00801314200009,-17.58853769999993],[24.998504680000107,-17.58802093499989],[24.982588338000085,-17.576548766999878],[24.971116170000073,-17.560735778999884],[24.969987330000038,-17.559962478999935],[24.95799035600001,-17.551744078999928],[24.937629842000092,-17.560735778999884],[24.924917439000126,-17.54295908599994],[24.898252400000075,-17.531073506999917],[24.829522745000105,-17.517740986999897],[24.797380005000065,-17.519084573999862],[24.786838013000104,-17.51691416399997],[24.78001672300007,-17.512263284999904],[24.77505578600011,-17.507612405999847],[24.769784790000074,-17.50544199599994],[24.68441532400007,-17.49241953499991],[24.63945682800008,-17.49241953499991],[24.629741659000047,-17.49552012099987],[24.622817017000045,-17.502341409999914],[24.61744266800008,-17.509162698999955],[24.606487264000094,-17.515157165999895],[24.591294393000084,-17.528386331999897],[24.580752401000012,-17.53283050499989],[24.571243937000133,-17.533450622999865],[24.56245894400004,-17.532210387999925],[24.54654260300012,-17.52652597999989],[24.537860962000053,-17.520324808999902],[24.531659790000077,-17.51340016599991],[24.523598267000096,-17.507819111999904],[24.498173462000068,-17.503478291999926],[24.47925988800006,-17.494486592999877],[24.449287557000105,-17.489112242999923],[24.4070162350001,-17.474539489999955],[24.3889294840001,-17.471335549999893],[24.371256144000085,-17.473712665999923],[24.32939823400011,-17.485081481999927],[24.32133671100013,-17.488698831999912],[24.310277954000128,-17.48260101299985],[24.257361287000066,-17.480844013999967],[24.238757771000078,-17.4781568399999],[24.220464314000107,-17.479500426999905],[24.19090539600009,-17.48528818799988],[24.14811730900007,-17.49376312199989],[24.105329224000055,-17.502238056999886],[24.06254113700001,-17.510712991999895],[24.01964969900007,-17.519084573999862],[23.976964965000064,-17.527559508999957],[23.934176880000052,-17.536034443999966],[23.891388794000108,-17.544406025999933],[23.848497355000063,-17.552880960999943],[23.805605916000104,-17.561355895999935],[23.762817831000092,-17.56972747799992],[23.720029744000044,-17.57820241299993],[23.677241659000117,-17.586677347999924],[23.634556925000112,-17.595048929999905],[23.591768840000096,-17.6035238649999],[23.548774048000038,-17.6119988],[23.505985962000096,-17.620473733999916],[23.476220337000115,-17.62636484799991],[23.4574101150001,-17.62677825899992],[23.422373494000084,-17.63349619499985],[23.381652466000105,-17.64114430699992],[23.37596805800007,-17.628225199999918],[23.375141235000058,-17.615409443999937],[23.382272583000088,-17.601043395999923],[23.35943160000008,-17.582853291999896],[23.340621379000055,-17.560735778999884],[23.320157512000094,-17.546369730999885],[23.305378051000073,-17.539548441999923],[23.290805298000123,-17.5354143269999],[23.258352498000107,-17.53283050499989],[23.241299275000074,-17.535104267999913],[23.22424605300006,-17.53934173599987],[23.20698612500007,-17.541202086999874],[23.189726196000066,-17.536551207999903],[23.177530558000058,-17.524045511999915],[23.176910441000075,-17.509782815999927],[23.179080852000084,-17.49417653399989],[23.176186971000078,-17.4781568399999],[23.165748332000135,-17.467408141999925],[23.121513306000026,-17.45087168299993],[23.097638794000147,-17.43216481499985],[23.073040812000073,-17.405086363999885],[23.054127238000035,-17.375320739999907],[23.046375773000108,-17.348448993999895],[23.040381307000075,-17.337080179999916],[22.998626750000142,-17.293775328999942],[22.9841573490001,-17.28581715899989],[22.936511678000073,-17.27331146199988],[22.876153605000066,-17.248093362999924],[22.84917850700012,-17.231040140999895],[22.80938765500011,-17.196416930999888],[22.778278442000072,-17.180397236999937],[22.765152628000095,-17.169648538999922],[22.75585087100009,-17.154869079999898],[22.74479211400006,-17.108256936999936],[22.73073612500005,-17.0815918979999],[22.710478963000043,-17.055443623999892],[22.665623820000064,-17.008624775999877],[22.651671183000076,-16.99870290099996],[22.59203658100006,-16.975448505999864],[22.579324178000036,-16.975345153999925],[22.573433064000113,-16.97100433299994],[22.569195597000146,-16.962426044999916],[22.569298950000103,-16.94495941199996],[22.567231893000038,-16.936897887999873],[22.554519491000065,-16.924185485999928],[22.52289351400009,-16.914677021999935],[22.50852746600009,-16.90620208799993],[22.499742472000094,-16.893489684999892],[22.489097127000093,-16.865377705999947],[22.41664676900012,-16.754480081999915],[22.40889530400011,-16.745798441999867],[22.39959354600009,-16.7404240919999],[22.383573853000115,-16.73753021199991],[22.377992798,-16.734843037999966],[22.372618449000043,-16.728848571999947],[22.36579716000008,-16.716859639999896],[22.350087524000116,-16.696292419999907],[22.34347294100013,-16.68316660599993],[22.33365441900005,-16.673658141999866],[22.306989379000125,-16.66921396899994],[22.303061971000147,-16.66694020599992],[22.295620565000036,-16.659188740999923],[22.290762980000096,-16.656398213999864],[22.287352335000094,-16.65825856499987],[22.28373498500011,-16.661359150999914],[22.27412316900009,-16.663632914999923],[22.259033651000095,-16.66921396899994],[22.251282186000083,-16.670040791999966],[22.237742961000095,-16.665493265999928],[22.151650025,-16.597693786999912],[22.145138794000047,-16.58405120899991],[22.14245161900001,-16.567101338999905],[22.13811079900003,-16.552631937999877],[22.127258748000088,-16.546430764999883],[22.108138469000096,-16.54395029699991],[22.104004354000068,-16.536715595999848],[22.10658817500007,-16.525966897999922],[22.107311646000056,-16.51232431999992],[22.10173059100015,-16.497958271999916],[22.0845740150001,-16.47015635199996],[22.07992313600002,-16.457754007999895],[22.08074995900006,-16.44101084399993],[22.08602095500009,-16.422303974999863],[22.094289184000047,-16.40473398799989],[22.103590943000142,-16.3919182329999],[22.105554646000087,-16.379412536999908],[22.089121542000044,-16.37197113099998],[22.055841919000073,-16.364633076999894],[22.054188273000136,-16.35863861099996],[22.053671508000093,-16.33652109699994],[22.05201786300006,-16.326805927999914],[22.048607218000114,-16.322361755999907],[22.03661828600005,-16.312233173999857],[22.03217411300005,-16.306342060999953],[22.027729940000143,-16.291665953999953],[22.025972941000074,-16.27895355299991],[22.022355590000075,-16.266344502999882],[22.011710246000092,-16.252288512999954],[22.019875122000116,-16.25311533599989],[22.0451965740001,-16.252288512999954],[22.010366658000123,-16.19813161199994],[21.98380497200011,-16.165885518999886],[21.9815312100001,-16.144284769999913],[21.9815312100001,-16.12816172199993],[21.9815312100001,-16.067493590999945],[21.9815312100001,-16.004034932999915],[21.98060103400013,-16.001244404999866],[21.980807739000085,-15.95607920299989],[21.980911092000042,-15.853966572999937],[21.981221150000092,-15.751957295999913],[21.981427856000067,-15.649948017999904],[21.9815312100001,-15.547835387999953],[21.9815312100001,-15.503807067999901],[21.9815312100001,-15.47352467899988],[21.9815312100001,-15.452337340999916],[21.9815312100001,-15.412546487999904],[21.981427856000067,-15.261858011999948],[21.981324503000053,-15.111169534999915],[21.981221150000092,-14.960481058999962],[21.98111779800007,-14.809792581999929],[21.98101444500014,-14.659104104999885],[21.980911092000042,-14.50841562899994],[21.980807739000085,-14.357623798999965],[21.98070438600007,-14.206935322999923],[21.98060103400013,-14.056350198999908],[21.980497681000116,-13.905558369999936],[21.980394328000074,-13.75497324599992],[21.98035310000006,-13.694822054999904],[21.98029097400007,-13.604181415999946],[21.980187622000127,-13.453492939999919],[21.980084269000088,-13.302701109999944],[21.97998091600007,-13.152167663999933],[21.97987756300006,-13.001479186999902],[22.104211059000107,-13.001479186999902],[22.2285445550001,-13.001479186999902],[22.352774698000072,-13.001479186999902],[22.477004842000014,-13.001479186999902],[22.601234985000076,-13.001479186999902],[22.72546512800011,-13.001479186999902],[22.84979862500009,-13.001479186999902],[22.974028768000068,-13.001479186999902],[23.09836226400006,-13.001479186999902],[23.222695760000107,-13.001479186999902],[23.346925903000084,-13.001479186999902],[23.471259399000076,-13.001479186999902],[23.595592895000035,-13.001479186999902],[23.71982303900009,-13.001479186999902],[23.84415653500008,-13.001479186999902],[23.9682833250001,-13.001479186999902],[24.000632772000102,-13.001479186999902],[23.988850545000105,-12.965098978999919],[23.971797322000068,-12.93336964999989],[23.94957645700012,-12.904637552999887],[23.895109497000107,-12.849757181999875],[23.874748983000103,-12.821748554999957],[23.86565393100011,-12.789709166999955],[23.872268514000012,-12.750125020999901],[23.891698853000094,-12.70506317099995],[23.91071577900007,-12.631269225999914],[23.928699178000045,-12.561609394999891],[23.94079146300004,-12.53277394599985],[23.986060018000046,-12.46766164099995],[24.019856405000013,-12.419189147999887],[24.028021281000118,-12.402135924999854],[24.030811808000095,-12.385082702999924],[24.020993286000135,-12.340020852999885],[24.016859171000107,-12.278939310999887],[24.006627238000107,-12.253721211999931],[23.981305786000036,-12.227676289999863],[23.959601685000052,-12.19667043099993],[23.954330689000102,-12.151918639999876],[23.961048624000057,-12.011668802999864],[23.96704309100008,-11.882891132999873],[23.988540487000108,-11.834211933999939],[23.990194132000056,-11.824083353999896],[23.98554325300009,-11.799485371999907],[23.981305786000036,-11.724761250999904],[23.972727498000012,-11.700576679999926],[23.96228885900007,-11.681559752999874],[23.9546407470001,-11.66223276699992],[23.9546407470001,-11.636911315999939],[23.959911743000134,-11.617170918999875],[23.97768843600005,-11.577276712999932],[24.005387004000085,-11.5352120969999],[24.009727824000063,-11.523429869999902],[24.00983117700008,-11.507203470999896],[24.00724735500009,-11.483122252999863],[24.007557414000075,-11.470513203999928],[24.00993453000012,-11.459454446999914],[24.020786581000067,-11.444571634999875],[24.052102499000082,-11.420490416999925],[24.061714315000103,-11.406951191999951],[24.061094197000017,-11.3949622599999],[24.016962525000025,-11.298430684999872],[24.011174764000142,-11.272902525999925],[24.01530887800007,-11.130482278999935],[23.995775187000078,-11.127381693999892],[23.990090779000123,-11.11353240899993],[23.99453495300014,-11.074981790999857],[23.9937081300001,-11.019584654999901],[23.997325480000086,-11.001704609999946],[24.003733358000115,-10.982480977999927],[24.000012654000045,-10.967804869999938],[23.980582316000035,-10.938349303999928],[23.974277791000134,-10.921399433999923],[23.96745650200009,-10.872306822999889],[24.001459595000114,-10.873443704999898],[24.048381796000058,-10.88233205199991],[24.091479939000067,-10.897834980999917],[24.11421757000005,-10.919229023999932],[24.114320923000093,-10.927910663999896],[24.10873986800007,-10.945790709999855],[24.108016398000075,-10.954989114999947],[24.11049686700005,-10.965944518999933],[24.117524862000067,-10.98609832799991],[24.119385213000072,-10.99757049499992],[24.117731567000106,-11.030850117999876],[24.124242797000075,-11.043252461999925],[24.144396606000072,-11.04035858199994],[24.16455041500012,-11.033950703999906],[24.181293579000084,-11.034467467999946],[24.21829390400012,-11.045216165999875],[24.238034302000102,-11.04800669299992],[24.275137980000068,-11.047903340999895],[24.293844848000077,-11.05028045699994],[24.31637577300009,-11.060098978999918],[24.345314575000145,-11.078289082999945],[24.37053267400009,-11.100199889999912],[24.38179813600007,-11.120560403999932],[24.3782841390001,-11.132135924999886],[24.369912557000134,-11.140920918999882],[24.362471151000108,-11.150532734999969],[24.36174768000012,-11.16469207799993],[24.367432088000072,-11.176267597999882],[24.384381958000063,-11.191253763999939],[24.391306600000036,-11.199832051999877],[24.396577596000068,-11.217402037999946],[24.39781783000012,-11.238279316999922],[24.396060832000046,-11.259673359999852],[24.39223677600009,-11.279103698999918],[24.384485311000077,-11.295226745999898],[24.35244592300009,-11.345042825999924],[24.339940226000092,-11.358065286999874],[24.298289022000063,-11.37057098299988],[24.285473266000082,-11.38121632899987],[24.293948201000088,-11.399199726999939],[24.31007124900006,-11.40664113299988],[24.351722453000093,-11.40705454499988],[24.370222615000102,-11.410155130999925],[24.392546834000086,-11.423384296999911],[24.426446574000096,-11.45408009899995],[24.446497030000046,-11.463588561999941],[24.469648071000023,-11.465552265999875],[24.490938762000013,-11.46152150499988],[24.53269331800007,-11.446121927999897],[24.542511840000117,-11.4453984579999],[24.5541907140001,-11.44632863299995],[24.564732707000076,-11.444674987999903],[24.571243937000133,-11.436406757999862],[24.574447876000107,-11.425141296999897],[24.578581990000114,-11.415632832999918],[24.58457645600006,-11.407364603999966],[24.593258097000103,-11.399613138999953],[24.60224979700007,-11.395685729999897],[24.624677369000064,-11.390828144999873],[24.635219360000118,-11.385867207999922],[24.64503788200008,-11.376048685999947],[24.66333134000007,-11.3516574099999],[24.674080037000067,-11.341632180999909],[24.712527303000112,-11.326025899999877],[24.787974894000115,-11.325819192999916],[24.826732218000046,-11.317550963999864],[24.901042928000038,-11.281274107999906],[24.942900838000096,-11.268561706999947],[24.981244751000133,-11.271868997999945],[25.124285116000095,-11.259156595999896],[25.184023071000126,-11.246650898999903],[25.27879764800008,-11.1999354039999],[25.31032027200004,-11.194767760999909],[25.32251591000005,-11.205413105999895],[25.32458296700011,-11.227840677999893],[25.32334273300009,-11.253472187999945],[25.325409790000037,-11.273936054999908],[25.324893025000108,-11.283651223999854],[25.317141561000085,-11.290472513999902],[25.29626428200004,-11.298430684999872],[25.28468876100007,-11.307319030999892],[25.290166463000073,-11.315897317999912],[25.30132857300009,-11.32447560599985],[25.306496216000113,-11.333053893999873],[25.298021281000103,-11.351450703999873],[25.286342407000117,-11.360649108999965],[25.277970825000068,-11.371811217999905],[25.27900435400005,-11.396305846999951],[25.286652465000117,-11.416563008999958],[25.309286743000058,-11.455423685999918],[25.316728149000085,-11.4729936719999],[25.315384562000105,-11.482502135999878],[25.301741984000103,-11.498418476999902],[25.297711223000107,-11.50792693999989],[25.29750451600006,-11.517228698999915],[25.300398397000066,-11.535005390999856],[25.327373494000085,-11.616654154999933],[25.336778605000116,-11.633500671999911],[25.344943482000044,-11.642182311999875],[25.35197147700006,-11.646109720999931],[25.36044641100005,-11.647246601999939],[25.373158813000117,-11.647143249999914],[25.386387980000105,-11.649830423999942],[25.392795858000056,-11.656445007999935],[25.39755008900005,-11.664919942999857],[25.406335083000045,-11.673084817999964],[25.46359257000009,-11.700059915999901],[25.481162557000058,-11.715252786999926],[25.482816203000112,-11.720420430999923],[25.48328129100014,-11.725794778999884],[25.482816203000112,-11.731169128999852],[25.474134562000042,-11.756180520999933],[25.480439087000065,-11.769823099999938],[25.495580281000088,-11.776541035999882],[25.515217326000112,-11.775817565999887],[25.524519083000143,-11.770959981999866],[25.5306169020001,-11.764242044999932],[25.537644897000117,-11.758350931999928],[25.550253947000044,-11.756593932999863],[25.561002645000144,-11.753286640999944],[25.56493005400011,-11.743984882999925],[25.567823934000103,-11.73375294999994],[25.575678752000044,-11.727345071999906],[25.621464071000077,-11.728895365999932],[25.655777222000097,-11.750496113999901],[25.687403198000112,-11.778711445999875],[25.725643758000103,-11.800518899999886],[25.744040568000088,-11.803826191999889],[25.801608114000118,-11.8042396029999],[25.812666870000044,-11.802999368999863],[25.832510620000022,-11.793800963999956],[25.839848674000105,-11.791940612999952],[25.850700724000063,-11.793800963999956],[25.85576501500014,-11.797211608999886],[25.85958907000008,-11.801965839999879],[25.91415938300011,-11.845580748999836],[25.935553426000126,-11.85364227299992],[25.94981612100011,-11.863977559999924],[25.963562052000043,-11.895086770999882],[25.9811320390001,-11.903044941999937],[25.99405114800004,-11.904801940999917],[26.166650431000107,-11.902424824999883],[26.189078003000105,-11.910899759999877],[26.209335164,-11.923612161999927],[26.229592326000017,-11.93312062599992],[26.265559123000088,-11.9308468629999],[26.286229696000106,-11.940562031999931],[26.29801192200011,-11.941182148999914],[26.309174032000044,-11.936531269999946],[26.32881107600008,-11.923302103999944],[26.339146362000093,-11.918961282999874],[26.37635339400009,-11.912863463999912],[26.414593953000093,-11.911829934999929],[26.438365112000042,-11.9190646359999],[26.455418335000076,-11.931983743999908],[26.47071455900004,-11.946969908999975],[26.489111369000028,-11.960819192999848],[26.524871460000043,-11.972291360999861],[26.60590010600006,-11.97776906299994],[26.643520548000083,-11.985520527999952],[26.662744181000107,-11.996579284999951],[26.679797404000052,-12.009601744999898],[26.697057333000117,-12.017456562999925],[26.717417847000064,-12.013012389999929],[26.732559042000076,-11.99833628299993],[26.744186239000044,-11.98117970799997],[26.75937910900006,-11.968674010999877],[26.785010620000037,-11.96836395199989],[26.831726115000038,-11.973324889999944],[26.874204143000068,-11.964333190999893],[26.912754761000144,-11.942525736999883],[26.94768802900012,-11.909142760999899],[26.96732507300007,-11.870385436999882],[26.971355835000054,-11.788529967999935],[26.981071004000086,-11.749049173999907],[26.99636722800005,-11.727035013999922],[27.011146688000082,-11.713185729999864],[27.021481975000086,-11.69788950599991],[27.023238973000044,-11.671121113999929],[27.010836629000092,-11.628849792999858],[27.010268189000044,-11.609832864999888],[27.02375573800009,-11.595570169999903],[27.032437378000054,-11.594329935999966],[27.054451538000134,-11.59753387499994],[27.064373413000027,-11.597120462999925],[27.102200562000117,-11.584924824999916],[27.144988647000044,-11.581307473999928],[27.173617391000107,-11.570558775999913],[27.18012862100008,-11.569628600999863],[27.197181844000113,-11.593709818999898],[27.20762048300014,-11.63939178399991],[27.211961304000027,-11.688277689999893],[27.209997599000104,-11.721970722999856],[27.23418216900006,-11.809097187999923],[27.42073409000005,-11.921958516999894],[27.467552938000065,-12.001643574999932],[27.471790405000036,-12.041641133999901],[27.520469605000073,-12.179617206999893],[27.536075887000095,-12.200081074999943],[27.589836216000062,-12.242957985999865],[27.59529707900009,-12.247313333999884],[27.63818851700006,-12.293615416999955],[27.666197143000147,-12.302710469999852],[27.710742228000072,-12.306327819999922],[27.756734252000058,-12.30426076299996],[27.788308553000036,-12.296509296999943],[27.807273803000072,-12.281419778999862],[27.818280884000075,-12.267777201999948],[27.831406698000137,-12.259922383999907],[27.856676473000107,-12.262402851999893],[27.877036987000054,-12.26994761099985],[27.933881062000097,-12.303330586999905],[27.94845381600004,-12.321417337999918],[27.95222619600008,-12.346532083999946],[27.958685750000114,-12.36782277499992],[27.981009969000098,-12.374540709999863],[27.998993367000082,-12.371440124999905],[28.014031209000052,-12.370509948999953],[28.087670125000074,-12.377537943999869],[28.09686853100007,-12.383015644999958],[28.10043420400012,-12.391490579999868],[28.102449585000073,-12.401205748999898],[28.106997111000112,-12.410197448999938],[28.131285034000115,-12.429214374999916],[28.1459611410001,-12.423116555999854],[28.160740601000043,-12.408750507999855],[28.18575199400001,-12.40244598399994],[28.204975626000135,-12.410817565999904],[28.220065145000035,-12.425390319999877],[28.23753177900008,-12.43706919299994],[28.26388675900006,-12.436965840999918],[28.28383386300007,-12.434071959999926],[28.303677612000055,-12.435415547999893],[28.32248783400007,-12.441099954999842],[28.33974776200006,-12.450505065999891],[28.4227401120001,-12.521301777999922],[28.436434367000114,-12.542799173999882],[28.455916382000108,-12.592098489999955],[28.468267049000076,-12.614629414999897],[28.502011760000045,-12.649562682999886],[28.51229537000006,-12.668372904999984],[28.511623575000073,-12.694417825999963],[28.500151408000132,-12.710954284999957],[28.48397668400014,-12.722219745999922],[28.47400313300005,-12.736482441999897],[28.48092777500011,-12.76211395199995],[28.50159834800013,-12.788468932999919],[28.523612508000014,-12.810173033999916],[28.53942549700011,-12.83384084099994],[28.542836141000038,-12.885620625999918],[28.55337813300011,-12.89492238399994],[28.568467652000095,-12.895542500999909],[28.583970581000102,-12.888721210999861],[28.593685751000063,-12.8767322799999],[28.608155152000077,-12.847896829999868],[28.621177612000025,-12.839421895999877],[28.66789310700011,-12.849343769999862],[28.707994018000107,-12.889754739999944],[28.775690144000095,-12.976571145999927],[28.793363485000096,-12.991557311999898],[28.800598185000066,-13.002409362999856],[28.809434855000088,-13.038376159999926],[28.813620646000118,-13.042820331999934],[28.827056518000067,-13.047574563999916],[28.830880574000105,-13.051812031999871],[28.830260458000055,-13.056876321999951],[28.82550622600013,-13.067831725999923],[28.825299520000097,-13.072379251999863],[28.8260229900001,-13.076823424999873],[28.82462772700009,-13.087262063999901],[28.825816284000044,-13.092843118999923],[28.829743693000093,-13.097183938999905],[28.835428101000048,-13.098940937999883],[28.840905803000023,-13.100077819999896],[28.844213094000025,-13.102351582999901],[28.853669881000087,-13.137078144999933],[28.863230021000106,-13.14265919999987],[28.8827120360001,-13.143589375999909],[28.89185876500008,-13.147310078999922],[28.903434285000113,-13.16229624399989],[28.934130086000067,-13.309625752999919],[28.95035648600006,-13.350966897999868],[28.980845581000064,-13.3802157599999],[28.993971395000102,-13.395925394999963],[29.01030114700006,-13.39943939199992],[29.0284912510001,-13.395511982999947],[29.046681356000132,-13.388897399999863],[29.06538614700011,-13.38867647799988],[29.072932983000072,-13.38858734199988],[29.098047730000104,-13.384659931999904],[29.122128947000135,-13.384349873999922],[29.1444531650001,-13.39447845399988],[29.15339318800005,-13.406984150999973],[29.160162801000066,-13.422073668999886],[29.16894779500006,-13.433855895999969],[29.184140665000086,-13.436853128999898],[29.19478601100008,-13.430962015999896],[29.2140096440001,-13.40832773799994],[29.227445516000042,-13.400782979999889],[29.25018314600004,-13.391584573999891],[29.30826745600012,-13.353654072999888],[29.449550822000102,-13.3003239949999],[29.470014689000095,-13.287818297999905],[29.527995646000132,-13.234074807999903],[29.551043335000085,-13.224152933999902],[29.574401082000122,-13.225393167999938],[29.592797892000135,-13.235625101999915],[29.60985111500014,-13.249474384999886],[29.629074748000164,-13.26146331799994],[29.64106368000006,-13.262806904999906],[29.649745320000083,-13.259913024999916],[29.65749678600008,-13.260119730999875],[29.666591837000055,-13.271178486999887],[29.66917565900007,-13.2812037139999],[29.66752201300005,-13.291952411999915],[29.66359460500007,-13.301874287999922],[29.658892049000084,-13.30952239999989],[29.651502319000084,-13.314586689999969],[29.633622274000114,-13.318927510999854],[29.626594279000184,-13.326368916999881],[29.625043986000094,-13.334843851999961],[29.627007691000134,-13.354894307999926],[29.625147339000193,-13.364196064999945],[29.618946167000043,-13.36729665099989],[29.60943770300014,-13.36905364999997],[29.601686239000063,-13.374427998999934],[29.601686239000063,-13.388380634999917],[29.6055102950001,-13.399956155999874],[29.61067793800009,-13.411014912999875],[29.617395874000124,-13.421246846999862],[29.626077515000073,-13.429825133999882],[29.64147709200006,-13.438506774999937],[29.6630778400002,-13.446878356999918],[29.702868693000138,-13.457627054999932],[29.767154175000083,-13.458350523999925],[29.78224369300011,-13.455663349999908],[29.797643270000094,-13.424244078999962],[29.79774662300014,-13.313759866999945],[29.797953328000066,-13.16436330099995],[29.798211711000132,-13.022769876999888],[29.798470093000102,-12.873011575999897],[29.798676799000077,-12.698345234999934],[29.798986857000045,-12.548690286999872],[29.799141887000076,-12.382292175999865],[29.799400268000053,-12.26581349699991],[29.799606975000128,-12.159463398999918],[29.79958231400013,-12.159035937999903],[29.799396783000134,-12.15582007899991],[29.799296915000124,-12.154089049999868],[29.756095419000076,-12.15760304699991],[29.73490808100013,-12.164837747999883],[29.701266724000103,-12.18902231799994],[29.648918498000057,-12.212793476999906],[29.631865275000052,-12.215997415999878],[29.621116577000123,-12.210209655999904],[29.603184855000052,-12.192846373999885],[29.59031742300004,-12.188092141999903],[29.576726522000055,-12.188092141999903],[29.56757979300005,-12.191709491999887],[29.55305871600012,-12.205145365999924],[29.533473348000083,-12.216720885999877],[29.489548381000073,-12.231500344999885],[29.47425215700019,-12.242662454999916],[29.46794763200012,-12.25527150399995],[29.455907023000123,-12.29433888799987],[29.451824585000107,-12.317799987999933],[29.448155559000043,-12.32679168599988],[29.44655358900007,-12.33505991599992],[29.450377645000117,-12.34291473399986],[29.48045332800018,-12.380535175999881],[29.49605961100013,-12.386322936999946],[29.511459188000114,-12.387356465999929],[29.523448120000065,-12.392524108999849],[29.52820235200005,-12.41050750699992],[29.524688355000137,-12.429214374999916],[29.51466312600007,-12.443890482999905],[29.499676961000038,-12.453088886999893],[29.48045332800018,-12.454949238999902],[29.47301192200007,-12.452468770999928],[29.46877445400014,-12.448438007999926],[29.465260457000056,-12.444200540999887],[29.459886108000035,-12.441306659999896],[29.453323202000032,-12.440789896999945],[29.439215536000173,-12.442030130999896],[29.432600952000087,-12.441306659999896],[29.40593591300006,-12.431694843999892],[29.364388062000042,-12.409267272999898],[29.356533244000047,-12.407613626999932],[29.316432332000147,-12.406683450999893],[29.30485681100009,-12.404823099999888],[29.295503377000045,-12.400999043999944],[29.283049357000092,-12.390457050999883],[29.265065958000093,-12.370923359999964],[29.25498905400013,-12.366169127999882],[29.17339196700007,-12.367616067999876],[29.148949016000127,-12.373713886999923],[29.128123413000083,-12.382808939999904],[29.11107019100012,-12.39345428499989],[29.100218140000095,-12.374023945999909],[29.084405152000098,-12.376401061999955],[29.067248576000026,-12.384772643999938],[29.0527791750001,-12.383842467999967],[29.042650594000037,-12.378778177999903],[29.03510583500008,-12.378881530999934],[29.030351603000096,-12.376194355999898],[29.02859460400012,-12.36306854299994],[29.026114136000043,-12.353043313999919],[28.944672079000043,-12.20607554099989],[28.918730509000085,-12.174346211999861],[28.85950931800008,-12.141790058999916],[28.85041426600011,-12.130007831999919],[28.84597009300009,-12.111300963999923],[28.835014689000047,-12.092180683999928],[28.82147546300004,-12.07574757899988],[28.808866414000107,-12.064585468999937],[28.77362308800014,-12.045878600999856],[28.7598771560001,-12.03523325599987],[28.754192749000083,-12.020143737999959],[28.751092163000123,-11.992238463999882],[28.741997111000043,-11.984280292999912],[28.707063843000068,-11.989447936999921],[28.68603153500004,-11.984073587999958],[28.63688724700009,-11.957615253999876],[28.62386478700006,-11.9477967319999],[28.60619144700007,-11.91027964299991],[28.592652222000083,-11.900461120999934],[28.569191121000102,-11.913690286999937],[28.566090536000075,-11.904491881999931],[28.554204956000035,-11.885061543999953],[28.549450724000053,-11.879583841999874],[28.540562377000125,-11.872039081999915],[28.531570679000083,-11.866458027999911],[28.521132039000037,-11.865734557999913],[28.507851196000047,-11.872762552999916],[28.49715417500005,-11.857362975999933],[28.488885946000096,-11.808683776999912],[28.476793661000098,-11.79824513699988],[28.460670613000104,-11.793387552999945],[28.45250573700011,-11.780778503999926],[28.442687215000035,-11.711635436999941],[28.439586629000075,-11.701506855999895],[28.425117228000147,-11.688070983999935],[28.418399292000114,-11.678872578999929],[28.42211999500006,-11.674738464999919],[28.4227401120001,-11.664713235999898],[28.405480183000122,-11.60518198599992],[28.399589071000037,-11.596086933999855],[28.38491296300012,-11.581307473999928],[28.37741988100009,-11.571075540999857],[28.36558597800007,-11.541619973999943],[28.360314982000148,-11.533558451999866],[28.355664103000095,-11.51815887499987],[28.354423869000044,-11.464725443999951],[28.357007690000046,-11.44694875099992],[28.40858077000007,-11.372431334999874],[28.411991414000084,-11.368400573999876],[28.434212280000022,-11.351243997999916],[28.439586629000075,-11.348246764999898],[28.431990194000033,-11.311039733999891],[28.436175985000148,-11.289128926999936],[28.445581096000126,-11.27455617299988],[28.4550895590001,-11.263704121999936],[28.473693074000067,-11.225670266999899],[28.472452840000102,-11.191977232999946],[28.473693074000067,-11.181228534999917],[28.47622522000006,-11.175440775999945],[28.484751831000068,-11.162831725999922],[28.48733565200007,-11.153426614999958],[28.48692224100006,-11.140920918999882],[28.47617354300013,-11.087694193999909],[28.476793661000098,-11.077979023999958],[28.49095300300013,-11.058652038999924],[28.504078816000117,-11.03436411599992],[28.507851196000047,-11.023615417999906],[28.50862634300006,-11.013486835999856],[28.50666263800011,-10.99209279399993],[28.507851196000047,-10.982067565999913],[28.513793986000053,-10.972869160999906],[28.53136397300011,-10.95509246799989],[28.535084676000054,-10.94444712299989],[28.53735843900006,-10.93411183699989],[28.54717696100002,-10.913751322999943],[28.549450724000053,-10.9028992719999],[28.549450724000053,-10.858560892999947],[28.554411662000092,-10.834996438999951],[28.56350671400014,-10.811948750999887],[28.576529174000086,-10.790658060999903],[28.593479044000105,-10.772881367999972],[28.600920451000032,-10.763166198999924],[28.608051798000076,-10.741358744999914],[28.623244670000076,-10.716864114999863],[28.627585490000058,-10.711696471999858],[28.633476604000066,-10.708905944999898],[28.64618900500011,-10.709836120999853],[28.651873413000065,-10.70838917999994],[28.665877726000076,-10.697433776999972],[28.68153568500011,-10.681930846999862],[28.6943514400001,-10.663327330999905],[28.699622436000137,-10.64317352299993],[28.694248088000084,-10.636765644999898],[28.670890341000128,-10.619092304999896],[28.665515991000063,-10.608963724999839],[28.667169637000118,-10.597388203999898],[28.672699016000106,-10.576097513999912],[28.672337280000132,-10.5643152869999],[28.64804935700005,-10.537650247999863],[28.63492354300007,-10.519460143999922],[28.634716838000116,-10.50571421299989],[28.638747599000112,-10.496205748999898],[28.630479370000046,-10.481012878999877],[28.634716838000116,-10.471607767999913],[28.640607950000117,-10.462616067999875],[28.644535360000077,-10.451040547999922],[28.646085653000085,-10.4384314979999],[28.644948771000085,-10.426545918999878],[28.637714071000115,-10.407012226999953],[28.628619019000038,-10.391095885999931],[28.620867554000142,-10.373319192999915],[28.617766968000097,-10.348307799999915],[28.620712524000112,-10.327327167999911],[28.62644860900005,-10.31141082699989],[28.629239136000106,-10.295907897999882],[28.62386478700006,-10.276374205999957],[28.62210778800008,-10.275857441999932],[28.6133227950001,-10.270689798999923],[28.610842326000125,-10.26882944799992],[28.608051798000076,-10.263558450999893],[28.605984741000096,-10.252913106999898],[28.60402103700008,-10.24836557999987],[28.56991459200009,-10.219633483999942],[28.57931970200005,-10.20113332099993],[28.60402103700008,-10.172711282999899],[28.6196273190001,-10.141912129999938],[28.62851566500012,-10.102741393999892],[28.63125451600007,-10.023056334999936],[28.62386478700006,-9.951019388999967],[28.62794722400008,-9.929418639999895],[28.65869470200002,-9.864823099999853],[28.668461548000067,-9.821621601999908],[28.678073364000085,-9.803844908999878],[28.696521851000085,-9.796506855999894],[28.698485555000047,-9.79195932999994],[28.672337280000132,-9.765500995999957],[28.669960165000077,-9.750928242999905],[28.66365564000006,-9.745037128999897],[28.654973999000106,-9.741936543999955],[28.644948771000085,-9.735115253999908],[28.63125451600007,-9.715581562999901],[28.625156697000108,-9.695634459999965],[28.62386478700006,-9.649125670999936],[28.62179773000008,-9.638273620999897],[28.612909383000073,-9.61749969499995],[28.610842326000125,-9.607887878999932],[28.60650150500004,-9.594348652999953],[28.587587931000087,-9.573161315999897],[28.583557169000102,-9.563756204999947],[28.58862146000007,-9.558278503999858],[28.611100708000095,-9.5510438029999],[28.617766968000097,-9.543292337999972],[28.586296021000067,-9.544015807999884],[28.574100383000143,-9.539158223999962],[28.569191121000102,-9.525929056999871],[28.568726033000075,-9.508979186999866],[28.56686568200007,-9.495956725999918],[28.56278324400006,-9.48489796999992],[28.555600219000095,-9.474459329999888],[28.531570679000083,-9.456889342999915],[28.519685099000043,-9.445623880999946],[28.514724162000107,-9.430017597999907],[28.51627445400004,-9.415548196999879],[28.518134806000035,-9.397461445999866],[28.51596439600013,-9.37834116599987],[28.49539717600007,-9.3532264199999],[28.460463908000065,-9.335036314999897],[28.411371297000127,-9.324907734999938],[28.36853153500007,-9.308577981999917],[28.352460165000107,-9.271991067999878],[28.3723039140001,-9.235094094999852],[28.41509200000013,-9.207085468999935],[28.5061975510001,-9.164400736999935],[28.599060099000013,-9.09639455099996],[28.765406534000107,-8.934027200999935],[28.893098999000102,-8.765768736999929],[28.930461059000063,-8.679882506999888],[28.935473673000022,-8.590792337999886],[28.892788941000017,-8.501908873999938],[28.889171590000043,-8.483098652999928],[28.915268189000127,-8.472866718999853],[29.03510583500008,-8.454779967999926],[29.20811853000009,-8.428528340999904],[29.365938354000093,-8.404550475999883],[29.57584432400006,-8.372729113999895],[29.59228112800008,-8.370237324999948],[29.858104695000122,-8.32982635499988],[30.123618204000135,-8.289518736999923],[30.32494958500007,-8.2589262899999],[30.58178145300013,-8.219962259999932],[30.752106975000114,-8.194124042999903],[30.778255249000043,-8.289105325999913],[30.82827803600009,-8.388117369999918],[30.891891724000114,-8.479171244999861],[30.959536174000103,-8.550484720999933],[30.99235070800017,-8.575909525999931],[31.033640177000105,-8.60030080099996],[31.077823527000135,-8.616320494999925],[31.11983646700014,-8.616630553999912]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Zimbabwe","sov_a3":"ZWE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Zimbabwe","adm0_a3":"ZWE","geou_dif":0,"geounit":"Zimbabwe","gu_a3":"ZWE","su_dif":0,"subunit":"Zimbabwe","su_a3":"ZWE","brk_diff":0,"name":"Zimbabwe","name_long":"Zimbabwe","brk_a3":"ZWE","brk_name":"Zimbabwe","brk_group":null,"abbrev":"Zimb.","postal":"ZW","formal_en":"Republic of Zimbabwe","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Zimbabwe","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":3,"mapcolor13":9,"pop_est":12619600,"gdp_md_est":9323,"pop_year":0,"lastcensus":2002,"gdp_year":0,"economy":"5. Emerging region: G20","income_grp":"5. Low income","wikipedia":-99,"fips_10_":"ZI","iso_a2":"ZW","iso_a3":"ZWE","iso_n3":"716","un_a3":"716","wb_a2":"ZW","wb_a3":"ZWE","woe_id":23425004,"woe_id_eh":23425004,"woe_note":"Exact WOE match as country","adm0_a3_is":"ZWE","adm0_a3_us":"ZWE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1,"filename":"ZWE.geojson"},"geometry":{"type":"Polygon","coordinates":[[[30.010653524000077,-15.64622731499989],[30.05023767000011,-15.640129495999927],[30.090028523000115,-15.629380797999914],[30.13012943500013,-15.623696390999967],[30.16992028800013,-15.632171324999975],[30.195551798000107,-15.649121194999877],[30.20723067200009,-15.653151956999878],[30.223147013000077,-15.64974131299995],[30.23100183100013,-15.64467702299987],[30.24609134900004,-15.632067972999947],[30.254876343000035,-15.628864033999973],[30.280094442000063,-15.6322746779999],[30.296196212000094,-15.639041585999891],[30.328050171000086,-15.652428486999966],[30.35667891500009,-15.651498310999926],[30.396263061000123,-15.635995380999914],[30.39771000200011,-15.716817320999967],[30.399260295000147,-15.812005309999845],[30.401327352000123,-15.931687927999858],[30.40256758700013,-16.001244404999866],[30.514808797000057,-16.00041758299993],[30.586587362000042,-16.00000416999991],[30.749729859000073,-15.998867288999904],[30.85742354300004,-15.998143818999905],[30.90186527500003,-16.007135517999956],[30.942172892000144,-16.034524027999893],[30.958295940000138,-16.051060485999898],[30.97307539900004,-16.062015889999955],[30.989766886000098,-16.064289652999886],[31.012039429000136,-16.054884541999925],[31.023718303000127,-16.045169372999894],[31.042218465000136,-16.02491221099997],[31.056894572000147,-16.01757415799989],[31.06542118300007,-16.01964121499995],[31.073327677000123,-16.025532327999954],[31.080872436000046,-16.025945739999955],[31.08903731300006,-16.011889749999852],[31.114100382000064,-15.996903584999883],[31.158490438000058,-16.000210875999883],[31.259982951000097,-16.023465270999893],[31.27889652500005,-16.030286559999933],[31.29532963000014,-16.041655374999934],[31.309592326000086,-16.05901865599995],[31.328350871000165,-16.09281504299993],[31.340908244000104,-16.106664326999905],[31.360338582000054,-16.116896259999876],[31.370260457000082,-16.123717549999924],[31.374601278000057,-16.132915953999927],[31.37775354000013,-16.142217711999947],[31.384006389000035,-16.148832295999867],[31.38772709200003,-16.149555764999945],[31.39558190900004,-16.147695413999937],[31.399612671000053,-16.147282001999926],[31.40431522600005,-16.14986582399993],[31.404056844000138,-16.1545167029999],[31.402713257000073,-16.15937428699992],[31.404573609000124,-16.162268167999912],[31.424107300000117,-16.164748636999974],[31.44570804900007,-16.16495534299993],[31.465655151000078,-16.167745869999887],[31.48064131700005,-16.17797780399988],[31.519191935000038,-16.196477965999904],[31.68610681100017,-16.207226663999915],[31.71070479400009,-16.217872008999915],[31.738196655000138,-16.23978281599996],[31.79876143400008,-16.303654886999922],[31.818088420000038,-16.319571227999944],[31.860049682000067,-16.340758564999902],[31.87193526200008,-16.35037038199991],[31.880720256000078,-16.36804372099992],[31.885629516000105,-16.40628428099991],[31.894362834000102,-16.421477152999927],[31.910279175000085,-16.428918558999953],[32.014148804000115,-16.444938251999915],[32.211759481000115,-16.440184020999922],[32.29046268700011,-16.451759541999962],[32.39366052300005,-16.4917571],[32.55210046400009,-16.55335540799996],[32.671783081000115,-16.599760843999974],[32.683100219000096,-16.60988942499992],[32.687906128000066,-16.624255472999934],[32.68862959800009,-16.647303161999986],[32.69865482600011,-16.686783955999914],[32.7252165120002,-16.70642099999986],[32.73095033900006,-16.70865622099997],[32.73131433100007,-16.708798115999898],[32.7398926190001,-16.703217060999886],[32.75384525600009,-16.697946064999954],[32.769348185000126,-16.695465595999877],[32.8006641030002,-16.697325947999968],[32.86200402800017,-16.710451760999945],[32.89337162200013,-16.712415465999882],[32.909598023000115,-16.7080746459999],[32.93957035300008,-16.68978118899993],[32.95621016400008,-16.683063252999915],[32.96850915600004,-16.681616311999917],[32.96158451300005,-16.71034840899992],[32.93336918200009,-16.81576833099996],[32.916212606000045,-16.8479110709999],[32.90050297000005,-16.867754821999895],[32.82877608300009,-16.9351408899999],[32.830119670000045,-16.941548766999944],[32.886757040000134,-17.0381836949999],[32.92851159600008,-17.109497171999877],[32.95414310700005,-17.167168069999946],[32.96778568500014,-17.228869729999914],[32.969089675000134,-17.26611492799988],[32.9694393310001,-17.276101989999944],[32.97321171100009,-17.29790944399987],[32.983598673000124,-17.317753193999863],[32.99238366700013,-17.324677835999935],[33.014656209000066,-17.336666768999905],[33.021632528000055,-17.34555511499991],[33.02245935000008,-17.361471455999933],[33.0162581780001,-17.37718109099991],[33.011650990000135,-17.383990615999963],[32.997447958000066,-17.404983010999956],[32.95817386900012,-17.478466897999922],[32.95166263900006,-17.48621836399992],[32.94298099700012,-17.4915927119999],[32.93657312000005,-17.49831064899992],[32.93667647300009,-17.509369404999916],[32.94721846500005,-17.543165791999908],[32.95166263900006,-17.55143402099995],[32.96912927200009,-17.564559834999912],[33.00664636200008,-17.580992939999888],[33.0203922940002,-17.598562926999946],[33.02452640800004,-17.619233499999964],[33.02059899900007,-17.6384571329999],[33.0040625410001,-17.675560810999883],[33.00023848500007,-17.713904723999903],[33.003184041000054,-17.757726338999902],[32.99910160300004,-17.794313251999938],[32.9735734460001,-17.81064300499989],[32.95703698700003,-17.817981058999877],[32.946081584000126,-17.834724222999924],[32.93967370600012,-17.85549814899987],[32.93688317800013,-17.875031839999878],[32.93843347200004,-17.89456553099997],[32.95026737500007,-17.92257415799989],[32.95212772700006,-17.940247496999902],[32.9481486410001,-17.953269957999936],[32.94039717600008,-17.959987894999955],[32.93243900600004,-17.964948831999905],[32.927374716000145,-17.972907001999957],[32.92897668400008,-17.98231211299992],[32.9412239990001,-17.99626474999991],[32.94029382300005,-18.004843037999947],[32.93491947400008,-18.02458343499991],[32.93708988500009,-18.047114359999924],[32.972281535000036,-18.150260517999953],[32.97553715000004,-18.183333434999938],[32.974865356000066,-18.190774840999964],[32.96592533400013,-18.21216888399988],[32.95817386900012,-18.22539805099997],[32.952282755000105,-18.23304616299994],[32.95052575700004,-18.241314391999893],[32.95496993000006,-18.256300556999875],[32.97016280100007,-18.277487894999922],[33.01687829600007,-18.313661396999862],[33.034965047000064,-18.33288502999997],[33.042768189000185,-18.352005309999882],[33.038065633000144,-18.363064066999883],[33.0092301840001,-18.38394134499994],[32.98819787600007,-18.413190205999896],[32.985355673000186,-18.4124667359999],[32.986802612000076,-18.422285257999874],[32.99951501400005,-18.436651305999874],[33.00302901200013,-18.446883238999945],[32.996414429000076,-18.467140400999952],[32.978586060000055,-18.480059508999954],[32.956623576000084,-18.489878030999932],[32.93714156100009,-18.50104013999987],[32.91931319200006,-18.51003183999991],[32.90029626500012,-18.515302835999933],[32.88313968900013,-18.52212412499989],[32.870737346000055,-18.535766702999908],[32.86825687700007,-18.55261321999997],[32.87166752100012,-18.573180439999874],[32.88448327600008,-18.609043883999917],[32.91455896000008,-18.665887959999864],[32.92231042400016,-18.69317311599987],[32.920243368000115,-18.726246032999953],[32.913267049000126,-18.75301442399993],[32.90251835100008,-18.774511819999873],[32.8852067470001,-18.787844339999893],[32.85885176600004,-18.79001474999997],[32.81792403200012,-18.787017516999864],[32.787641643000086,-18.791254983999917],[32.691420125000036,-18.834249775999908],[32.68986983300004,-18.843241474999942],[32.696794474000114,-18.897191670999902],[32.70320235200006,-18.911867776999895],[32.715759725000055,-18.919825947999954],[32.70506270300007,-18.927474059999923],[32.69224694900015,-18.934295348999882],[32.682531779000044,-18.942666930999863],[32.68108483900005,-18.9549659219999],[32.68862959800009,-18.977290139999866],[32.69028324400006,-18.988245543999938],[32.68862959800009,-19.000957946999904],[32.69105839000014,-19.01429046599992],[32.69896488400007,-19.02224863699989],[32.71028202300005,-19.02596933999989],[32.72387292500008,-19.026589456999957],[32.78598799600013,-19.017701110999933],[32.80335127800003,-19.019561461999942],[32.81420332900012,-19.0237989299999],[32.81999108800005,-19.028346455999934],[32.82298832200007,-19.035167744999892],[32.82526208500013,-19.046846618999965],[32.83022302200004,-19.059145608999913],[32.838129517000084,-19.066897074999915],[32.84748295100013,-19.073925068999927],[32.85590621000006,-19.083743591999887],[32.862262411000074,-19.118056741999908],[32.83322025500007,-19.24197682699989],[32.83218672700008,-19.266678160999987],[32.828672730000044,-19.28455820699986],[32.820714559000066,-19.30130137099991],[32.80614180500004,-19.323418883999906],[32.76883142100007,-19.363623148999935],[32.76645430500014,-19.37344167099991],[32.768521362000165,-19.402793883999976],[32.762216838000086,-19.443411559999916],[32.763353719000065,-19.463978779999906],[32.77394738800007,-19.47586435999993],[32.793119344000104,-19.47669118199987],[32.81130944800009,-19.474520772999963],[32.82536543800012,-19.479171651999934],[32.83218672700008,-19.50087575299993],[32.83249678600009,-19.51927256299993],[32.82536543800012,-19.591619567999885],[32.825675496000144,-19.60081797199997],[32.82815596500012,-19.61063649499995],[32.829602905000115,-19.623658954999897],[32.82536543800012,-19.633270771999904],[32.81947432400005,-19.641952412999956],[32.81627038500005,-19.652080993999917],[32.819629354000085,-19.674301858999854],[32.8310498460001,-19.685153909999897],[32.8491365970001,-19.689081318999868],[32.87218428600005,-19.690218200999876],[32.89471521000007,-19.684327087999876],[32.9245841880001,-19.65528493299989],[32.94318770400013,-19.649290466999958],[32.960964396000065,-19.658798929999932],[32.96241133700005,-19.679056090999936],[32.95414310700005,-19.71781341499988],[32.96241133700005,-19.735383401999854],[32.97905114700012,-19.751403095999905],[33.00060022000014,-19.764322204999914],[33.02276940900009,-19.773107197999906],[33.03279463700011,-19.7841659539999],[33.02964237500004,-19.803389586999927],[33.02287276200008,-19.826850687999908],[33.02132246900009,-19.868088479999912],[33.001995483000144,-19.926999612999907],[32.99837813300013,-20.0008969109999],[33.00437259900008,-20.024254658999936],[33.007266480000055,-20.03200612399985],[32.953729695000106,-20.030249124999955],[32.94008711700013,-20.041514586999924],[32.93429935700004,-20.07210703499993],[32.926547892000144,-20.086473082999944],[32.9106832270001,-20.091123961999912],[32.89440515100011,-20.0940178419999],[32.88531010000014,-20.10300954199994],[32.877868693000096,-20.15168874099996],[32.87290775500014,-20.16719167099997],[32.859265177000054,-20.190859476999904],[32.857094767000035,-20.200574645999936],[32.858335001000114,-20.207499287999923],[32.86505293800013,-20.22093516099997],[32.86556970200007,-20.228893330999938],[32.858438354000036,-20.259485778999945],[32.85296065300014,-20.273851826999945],[32.84520918700014,-20.286667581999932],[32.800767456000074,-20.3385507199999],[32.73586185700009,-20.414205016999887],[32.704442587000074,-20.47177256299993],[32.671783081000115,-20.53182057699985],[32.6464616300002,-20.55796885099994],[32.60367354300013,-20.564790140999904],[32.556544637000115,-20.559312438999907],[32.5131364340001,-20.564583434999946],[32.481613810000056,-20.603030700999895],[32.471071818000155,-20.64550872799994],[32.46910811300006,-20.686849873999876],[32.48347416100005,-20.794233499999848],[32.49722009300007,-20.898103128999963],[32.49101892100009,-20.936343688999955],[32.46766117300007,-20.980165302999865],[32.41712162200014,-21.040936787999968],[32.339813680000134,-21.13405771899997],[32.34534305800008,-21.14284271199996],[32.359864136000056,-21.151421],[32.36885583500009,-21.16299652099994],[32.373351685000046,-21.163616637999908],[32.37774418200013,-21.16340993199995],[32.38063806100012,-21.165476989999913],[32.380534709000074,-21.17219492599993],[32.37686568200007,-21.17849945099995],[32.37298995000015,-21.18397715199994],[32.37174971500008,-21.187904561999915],[32.444613485000104,-21.304693297999847],[32.44584926100009,-21.308993799999953],[32.44719730600008,-21.313684997999886],[32.408543335000104,-21.290327250999937],[32.37298995000015,-21.327947692999956],[32.32451745600014,-21.37817718499991],[32.27222090600014,-21.432540790999965],[32.21971765200009,-21.486904398999854],[32.167317749000055,-21.541268005999925],[32.114814494000086,-21.59563161199989],[32.06241459100005,-21.649995218999962],[32.010014689000116,-21.70446217799987],[31.95761478600008,-21.758825784999928],[31.905214885000134,-21.8131893919999],[31.85271162900005,-21.86755299899997],[31.80031172700012,-21.92201995799988],[31.74780847100004,-21.976383565999935],[31.695511922000033,-22.03074717199992],[31.64311201900011,-22.08521413199992],[31.590712117000066,-22.13957773899997],[31.53820886200009,-22.193941344999956],[31.485808960000096,-22.248304951999927],[31.43382246900006,-22.30204844199993],[31.36871016400005,-22.345043232999913],[31.288921753000068,-22.39733978299992],[31.265615682000146,-22.36550709999996],[31.255642130000123,-22.35796234099992],[31.24572025600014,-22.357548929999908],[31.229597209000076,-22.363956806999852],[31.22153568500005,-22.364886982999906],[31.213474162000065,-22.36188974999989],[31.197867879000057,-22.352587991999954],[31.190684855000086,-22.35062428799992],[31.183656860000156,-22.345559997999942],[31.163348023000136,-22.32261566199992],[31.152599325000036,-22.316414488999925],[31.13771651200011,-22.31848154699989],[31.104540243000088,-22.333364359999933],[31.097047967000037,-22.334922385999974],[31.087642049000063,-22.3368783559999],[31.070330444000092,-22.333674417999916],[31.036120646000086,-22.3196184279999],[30.9271867270001,-22.29574391599992],[30.867087036000044,-22.28964609699996],[30.837889852000043,-22.28230804399996],[30.80528202300007,-22.294503681999885],[30.693919311000112,-22.302771910999923],[30.67428226700008,-22.3085596719999],[30.647410523000076,-22.326439717999857],[30.6324243570001,-22.330677184999914],[30.625551391000045,-22.328610127999937],[30.610306844000092,-22.31868825199994],[30.601108439000082,-22.316414488999925],[30.572169637000112,-22.316621195999886],[30.507367391000116,-22.30959320099988],[30.488453817000163,-22.31021331699995],[30.46923018400014,-22.315070901999956],[30.43171309400014,-22.33119394999994],[30.41269616700009,-22.3368783559999],[30.372078491000078,-22.34349293999989],[30.334974813000088,-22.34473317499993],[30.30076501400009,-22.336981709999918],[30.269345744000134,-22.316414488999925],[30.255289755000035,-22.30473561599996],[30.240406942000106,-22.296157327999918],[30.22170007300008,-22.290886331999985],[30.196998738000104,-22.289129333999924],[30.152660359000038,-22.294813740999956],[30.13509037300008,-22.29357350699992],[30.111112508000073,-22.28230804399996],[30.08258711700012,-22.262877705999884],[30.06791101100003,-22.25708994499992],[30.03814538500012,-22.25378265399992],[30.0358716230001,-22.250578714999847],[30.03452803500005,-22.246134541999936],[30.0155111090001,-22.227014260999933],[30.00527917500011,-22.222260029999944],[29.98378177900014,-22.21771250399992],[29.97396325700009,-22.213991800999906],[29.946678101000085,-22.198282165999927],[29.932105347000117,-22.194354755999967],[29.896035197000113,-22.191357523999955],[29.871488892000055,-22.179265238999875],[29.83733077000005,-22.17244394899991],[29.77924646000008,-22.136373798999912],[29.75888594600013,-22.130896097999923],[29.691448201000124,-22.134100035999893],[29.679614298000104,-22.13833750399995],[29.661424194000062,-22.126451924999913],[29.64106368000006,-22.129242451999886],[29.603960001000075,-22.14505543999988],[29.57016361500007,-22.141954853999934],[29.551043335000085,-22.14598561599992],[29.54251672400005,-22.162522073999924],[29.531819703000053,-22.17244394899991],[29.506911662000107,-22.17006683299988],[29.456888875000118,-22.15880137099991],[29.436114949000054,-22.163142190999892],[29.399528036000106,-22.182159117999944],[29.378030640000073,-22.192907815999973],[29.363251180000074,-22.192287699999905],[29.356946656000048,-22.19094411199994],[29.35007368900006,-22.186706644999987],[29.273644246000114,-22.125108336999855],[29.2673397210001,-22.115806578999923],[29.259588257000075,-22.096066182999962],[29.25411055500018,-22.087074482999924],[29.244395386000065,-22.075705667999927],[29.239331095000065,-22.072605081999892],[29.1448665770001,-22.075292256999912],[29.107969604000086,-22.06919443699986],[29.07076257300008,-22.051004332999923],[29.040531861000062,-22.02092864899994],[29.0215666090001,-21.982791442999883],[29.013815145000112,-21.94041676899988],[29.01794925900012,-21.89814544699989],[29.02890466300011,-21.876648050999844],[29.045441121000092,-21.8525668339999],[29.057636759000104,-21.829209085999945],[29.055259643000085,-21.809985453999925],[29.038723186000084,-21.797893167999945],[28.99872562600009,-21.786007588999922],[28.980845581000064,-21.774845478999893],[28.951906779000094,-21.76833424899992],[28.89103194200004,-21.764923603999886],[28.860852905000055,-21.757378844999934],[28.714195190000115,-21.693506774999975],[28.668409872000066,-21.6799675499999],[28.629704224000136,-21.651338805999924],[28.615699911000036,-21.647101337999885],[28.585934285000064,-21.644414163999937],[28.55399825100008,-21.636559346999917],[28.54293949300006,-21.638316344999893],[28.532500855000137,-21.643070576999975],[28.497309204000057,-21.651545511999885],[28.481392863000053,-21.657436624999974],[28.464598023000093,-21.660330504999962],[28.443100627000035,-21.655782979999927],[28.361761922000138,-21.61630218499991],[28.321919393000115,-21.60348642999992],[28.284867391000063,-21.596871846999928],[28.16570153800006,-21.595218199999877],[28.09077071100012,-21.581265563999892],[28.032893107000092,-21.57785491899996],[28.016563355000045,-21.572893981999908],[28.00255904100004,-21.56421234199986],[27.99041507900006,-21.551913349999907],[27.984730673000087,-21.542921650999872],[27.975738973000144,-21.52256113699994],[27.97057133000007,-21.514396259999913],[27.963698365000084,-21.510468851999946],[27.958065633000047,-21.511502379999925],[27.953208048000135,-21.510468851999946],[27.94928063900008,-21.50075368199991],[27.95444828200007,-21.487834573999905],[27.950417521000077,-21.48204681399993],[27.94333785000006,-21.47987640399994],[27.93987552900012,-21.478016051999926],[27.941942586000064,-21.468507587999852],[27.94964237500008,-21.456518655999986],[27.953001343000064,-21.448663838999945],[27.95021081500002,-21.438328551999945],[27.920548543000052,-21.381174417999915],[27.904218791000115,-21.36474131199995],[27.897810913000086,-21.355439554999933],[27.89615726700003,-21.34789479499997],[27.896674032000078,-21.332391865999867],[27.894400269000073,-21.324330342999886],[27.884995158000095,-21.310171],[27.849131714000062,-21.269656676999915],[27.82360355600011,-21.23172617599991],[27.79383793100004,-21.197413023999985],[27.72438480700006,-21.14966400099992],[27.709191935000035,-21.13447113],[27.674775431000086,-21.090132751999946],[27.666610555000144,-21.071219176999904],[27.666817261000116,-21.05375254299986],[27.67896122200011,-21.000732522999954],[27.680356486000107,-20.979648538999925],[27.672656697,-20.923527932999974],[27.672605021000095,-20.913709410999914],[27.675085490000072,-20.8912818399999],[27.674775431000086,-20.879913024999922],[27.676015666000122,-20.86668385799993],[27.6818034260001,-20.857588805999868],[27.68903812600007,-20.849010518999933],[27.69441247600011,-20.837745055999875],[27.709605346000043,-20.756716409999854],[27.70733158300004,-20.716718851999886],[27.68247521900008,-20.637343851999912],[27.690381713000107,-20.60148040699997],[27.702629028000047,-20.56613372799997],[27.705574585000132,-20.526652932999937],[27.698133179000134,-20.509082946999868],[27.68376713100011,-20.496060485999934],[27.665990438000104,-20.489135843999946],[27.625786174000066,-20.488619079999907],[27.590852905000077,-20.473322855999953],[27.534112183000076,-20.4830380249999],[27.453910359000073,-20.473322855999953],[27.340738973000043,-20.473012796999864],[27.306012411000097,-20.47735361699995],[27.26839196700007,-20.495750427999937],[27.283998250000106,-20.351469827999935],[27.266014852000126,-20.234164326999874],[27.214906861000117,-20.11045094799995],[27.201781047000082,-20.092984313999906],[27.183745971000064,-20.08233896899992],[27.16292037000011,-20.07655120799994],[27.141888062000106,-20.073347268999967],[27.12969242300008,-20.072933857999956],[27.119770548000076,-20.073864033999907],[27.109641968000115,-20.073243916999942],[27.097342977000096,-20.068903096999872],[27.08649092600004,-20.060531514999894],[27.069230997000147,-20.03738047199991],[27.060135946000088,-20.027561949999935],[27.02664961700009,-20.010095316999895],[26.994300171000106,-20.006788024999892],[26.961072225000066,-20.007201435999903],[26.92505375200008,-20.0008969109999],[26.811882365000116,-19.94642995199999],[26.77446862800008,-19.939815368999902],[26.750800822000116,-19.939608662999927],[26.730957072000137,-19.935887958999928],[26.713903850000094,-19.92741302499992],[26.698607625000136,-19.91253021199988],[26.684758341000077,-19.894546813999895],[26.67716996900009,-19.88681526499994],[26.67380293700012,-19.88338470499987],[26.65943688900012,-19.87573659199998],[26.614064982000087,-19.863437600999944],[26.59556481900006,-19.855582783999907],[26.581922241000143,-19.842146911999862],[26.574790893000113,-19.819512633999906],[26.566315958000104,-19.80080576499992],[26.549262736000085,-19.784062600999974],[26.508851766000106,-19.75925791399993],[26.489731486000096,-19.751919860999934],[26.45025069200008,-19.74334157299991],[26.43185388200007,-19.73652028399995],[26.412836955000103,-19.719570413999946],[26.38524174000011,-19.679056090999936],[26.362710815000096,-19.667583922999924],[26.33232507300005,-19.662416279999917],[26.324366903000083,-19.659108988999918],[26.312171264000142,-19.651357522999916],[26.31248132300004,-19.64960052499994],[26.319095906000143,-19.646293232999938],[26.3263306070001,-19.633890889999876],[26.333461955000132,-19.6130136109999],[26.33098148600007,-19.604952086999916],[26.321059611000067,-19.592032978999892],[26.313204793000125,-19.584178161999958],[26.303489624000093,-19.577253519999886],[26.292637573000064,-19.57249928799989],[26.239100789000105,-19.571465758999906],[26.19445235200007,-19.560200296999948],[26.155488322000082,-19.537152608999886],[26.13027022300014,-19.50108245899989],[26.034358765000064,-19.24373382499995],[26.011414429000123,-19.199808857999926],[25.9811320390001,-19.161775003999892],[25.95653405800004,-19.122087503999907],[25.94857588700006,-19.103277282999898],[25.944855184000062,-19.079196064999863],[25.94805912300012,-19.058732197999902],[25.96438887500005,-19.021628519999908],[25.96779952000008,-19.000957946999904],[25.967448582000088,-18.999925225999988],[25.940721069000116,-18.921272887999947],[25.81525069100013,-18.813992614999904],[25.779490601000106,-18.738751728999944],[25.77339278200006,-18.665577900999963],[25.761920613000143,-18.63033457499989],[25.736909220000143,-18.60873382599992],[25.698255249000052,-18.590233662999907],[25.669523153000053,-18.56604909199993],[25.622084188000144,-18.501143492999898],[25.608441610000057,-18.48770762099994],[25.574438518000107,-18.465693460999958],[25.508499390000082,-18.39913421599988],[25.495580281000088,-18.378877054999876],[25.49051599100011,-18.365544534999856],[25.481162557000058,-18.323376565999894],[25.473204386000106,-18.303429462999873],[25.440854939000104,-18.25319997199992],[25.408815552000107,-18.17599538199994],[25.387524861000117,-18.138995055999896],[25.357449178000135,-18.115844013999904],[25.323446086000104,-18.096620381999884],[25.296367635000138,-18.068611755999967],[25.255026489000016,-18.001122334999934],[25.22608768700007,-17.93187591499992],[25.219369751000045,-17.90800140399993],[25.219369751000045,-17.87978607199996],[25.259780721000112,-17.794106546999984],[25.266705363000085,-17.800927835999943],[25.285412231000066,-17.809299417999906],[25.315901327000063,-17.83214040099992],[25.335538371000094,-17.841235452999896],[25.345253540000044,-17.842579039999862],[25.376466105000105,-17.841235452999896],[25.409539021000114,-17.853017679999894],[25.420287719000044,-17.8548780309999],[25.495580281000088,-17.8548780309999],[25.5007479250001,-17.856014911999903],[25.510153035000144,-17.861182555999918],[25.516457561000063,-17.862319437999915],[25.522141967000096,-17.860149027999924],[25.530926962000077,-17.850950621999928],[25.536818074000077,-17.848676858999905],[25.603997436000043,-17.836171162999918],[25.657017456000062,-17.813950296999877],[25.681408732000076,-17.8114698279999],[25.69422448700007,-17.81942799899987],[25.70642012500008,-17.8298666379999],[25.743833862000116,-17.83937510199989],[25.76595137500004,-17.84981374099992],[25.78600183100008,-17.8622160849999],[25.794683471000038,-17.87265472399993],[25.80439864100009,-17.88815765399994],[25.849667196000098,-17.90665781599996],[25.86361983200007,-17.923814391999926],[25.84749678500009,-17.929395445999944],[25.846153198000135,-17.943658141999915],[25.85349125200011,-17.959987894999955],[25.86361983200007,-17.971563414999906],[25.924494670000115,-17.998951924999943],[25.966972697000074,-18.000502216999873],[25.9785482180001,-17.998951924999943],[26.03373864800011,-17.971563414999906],[26.04055993600005,-17.978488056999893],[26.046554402000083,-17.966292418999966],[26.062470743000116,-17.962881774999943],[26.08117761200009,-17.962365010999903],[26.09523360200012,-17.958540953999957],[26.09616377700007,-17.9546135449999],[26.094200073000135,-17.941901143999942],[26.09523360200012,-17.93807708699991],[26.101228068000125,-17.935803324999895],[26.11859134900007,-17.93156585699994],[26.13543786600013,-17.92257415799989],[26.158588908000127,-17.918336689999933],[26.167477254000033,-17.91358245799995],[26.203030640000094,-17.887227477999886],[26.211918986000114,-17.882783304999887],[26.221117391000117,-17.886297302999935],[26.228248739000065,-17.89466888399991],[26.23393314600008,-17.903970641999933],[26.239204142000116,-17.910171813999924],[26.24829919400011,-17.913375752999897],[26.294291219000087,-17.9185433959999],[26.303799683000076,-17.922780863999947],[26.311964559000103,-17.928361917999965],[26.31826908400012,-17.934356383999898],[26.325503785000077,-17.936010029999935],[26.362710815000096,-17.93063568099997],[26.40859948700006,-17.93900726299995],[26.485494018000054,-17.979314880999908],[26.527145223000076,-17.992027281999867],[26.553603557000145,-17.996471455999966],[26.570243367000074,-18.00287933299991],[26.583369181000137,-18.013214619999914],[26.598872111000045,-18.029957783999876],[26.612721395000108,-18.04122324599993],[26.628844442000087,-18.049181416999897],[26.685688517000127,-18.06675140399996],[26.70000288900013,-18.06923187199993],[26.71194014500008,-18.06582122799992],[26.740568889000144,-18.040499775999933],[26.75359135000008,-18.032955016999978],[26.76971439600007,-18.029027607999918],[26.79400231900007,-18.026237080999863],[26.888260132000084,-17.98458587599994],[26.912031291000034,-17.992027281999867],[26.948669881000086,-17.968876240999876],[26.95916019700013,-17.96474212699985],[27.006289103000142,-17.962675068999886],[27.02127526900011,-17.958540953999957],[27.048457072000105,-17.94427825999989],[27.07817102000007,-17.916993102999882],[27.115429728000095,-17.882163186999918],[27.149019409000115,-17.84247568699993],[27.14653894000014,-17.81891123499993],[27.14529870600012,-17.794106546999984],[27.146952352000085,-17.783874613999913],[27.157080932000042,-17.769301859999942],[27.422077677000118,-17.50482187899989],[27.524293661000087,-17.415111592999903],[27.57731368000009,-17.363125101999884],[27.60449548300008,-17.312792256999913],[27.624855998000015,-17.233313903999914],[27.64118575100005,-17.198483987999865],[27.777301473000133,-17.001183369999932],[27.816885620000107,-16.959635517999857],[27.86856205200013,-16.929663186999917],[28.022992543000072,-16.865393042999884],[28.113921753000113,-16.82755055799987],[28.212520385000087,-16.74858896899991],[28.28011316000007,-16.70652435299989],[28.64329512600005,-16.56875498499994],[28.69073409000003,-16.560280049999946],[28.718794393000053,-16.560280049999946],[28.732850382000066,-16.55810963899995],[28.741376994000092,-16.55066823299994],[28.76111739100014,-16.532271423999926],[28.76928226700008,-16.515218199999907],[28.808866414000107,-16.48627939799985],[28.822508992000024,-16.47077646899993],[28.82912357600011,-16.434602966999904],[28.83305098500009,-16.426438089999888],[28.857235555000074,-16.388197529999985],[28.8570288490001,-16.36545989999992],[28.840492391000115,-16.323601989999943],[28.836771688000113,-16.306342060999953],[28.840285685000058,-16.28474131199988],[28.86416019700005,-16.23120452899994],[28.84710697500012,-16.20267913799998],[28.85248132300006,-16.162784931999852],[28.865400431000097,-16.121237080999947],[28.870981486000087,-16.087233988999913],[28.868501017000114,-16.082169697999944],[28.86385013900008,-16.076588643999926],[28.859302612000135,-16.06956064899991],[28.857235555000074,-16.060465595999943],[28.86033614100012,-16.049406839999847],[28.874082072000135,-16.028942972999882],[28.87718265800009,-16.022018329999895],[28.898886760000092,-15.995456643999889],[28.932373087000084,-15.96372731499987],[28.9468615990001,-15.957235194999967],[28.95128666200011,-15.955252379999948],[28.972784058000055,-15.951428323999918],[29.018052612000076,-15.950601500999895],[29.04234053600007,-15.946260680999911],[29.055052938000102,-15.93437510199989],[29.076343628000103,-15.895411070999897],[29.086162150000064,-15.88455901999994],[29.102181844000114,-15.87091644299994],[29.12171553500014,-15.8593409219999],[29.141869344000096,-15.85448333799988],[29.150964396000063,-15.848798929999928],[29.186311076000063,-15.812832132999873],[29.406969442000044,-15.714233499999878],[29.42205896000013,-15.711029561999908],[29.508461955000083,-15.703588154999878],[29.52623864700013,-15.692839456999947],[29.563445679000036,-15.66214365599991],[29.587216838000188,-15.655735778999881],[29.608559204000183,-15.658422952999913],[29.627989543000073,-15.663590595999906],[29.64850508600006,-15.666587829999926],[29.67279300900014,-15.663280537999924],[29.7300504960001,-15.64467702299987],[29.773251994000077,-15.638062438999969],[29.8142830810001,-15.619665628999883],[29.83733077000005,-15.61480804499986],[29.881772502000043,-15.618838805999943],[29.967503702000045,-15.641473083999896],[30.010653524000077,-15.64622731499989]]]}},{"type":"Feature","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"French Southern and Antarctic Lands","adm0_a3":"ATF","geou_dif":0,"geounit":"French Southern and Antarctic Lands","gu_a3":"ATF","su_dif":0,"subunit":"French Southern and Antarctic Lands","su_a3":"ATF","brk_diff":0,"name":"Fr. S. Antarctic Lands","name_long":"French Southern and Antarctic Lands","brk_a3":"ATF","brk_name":"Fr. S. and Antarctic Lands","brk_group":null,"abbrev":"Fr. S.A.L.","postal":"TF","formal_en":"Territory of the French Southern and Antarctic Lands","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"French Southern and Antarctic Lands","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":140,"gdp_md_est":16,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"FS","iso_a2":"TF","iso_a3":"ATF","iso_n3":"260","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":28289406,"woe_id_eh":28289406,"woe_note":"Exact WOE match as country","adm0_a3_is":"ATF","adm0_a3_us":"ATF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Seven seas (open ocean)","region_un":"Seven seas (open ocean)","subregion":"Seven seas (open ocean)","region_wb":"Sub-Saharan Africa","name_len":22,"long_len":35,"abbrev_len":10,"tiny":2,"homepart":-99,"filename":"ATF.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[70.01612389400012,-49.564222914999824],[70.00709069099999,-49.5763485659999],[69.99301191500015,-49.57463958099999],[69.9456486340001,-49.54216887799983],[69.9284774100001,-49.541273695999834],[69.91675866000011,-49.53630950299988],[69.9056095710001,-49.528985283999866],[69.89112389400006,-49.52174244599994],[69.8753361340001,-49.517836195999855],[69.84782962300008,-49.51433684699995],[69.83578535200016,-49.50798919099984],[69.83578535200016,-49.50115325299999],[69.87964928500011,-49.492445570999834],[69.92058353000002,-49.49700286299996],[69.9729923840001,-49.5353329409999],[70.00456790500017,-49.551446221999875],[70.01612389400012,-49.564222914999824]]],[[[68.74187259200018,-49.328708592],[68.75953209699999,-49.32984791499985],[68.79135175900014,-49.32366301899989],[68.79835045700023,-49.327325127999934],[68.79509524800018,-49.3435197899998],[68.78614342500006,-49.35702890399987],[68.77320397200005,-49.36370208099983],[68.75733483200023,-49.36353932099986],[68.73975670700011,-49.356622002999856],[68.68921959700018,-49.356622002999856],[68.66553795700004,-49.35247161299983],[68.6434025400001,-49.3435197899998],[68.66277103000013,-49.322442315999865],[68.673594597,-49.31682708099987],[68.6912541020001,-49.315606377999856],[68.70875084700018,-49.318536065999965],[68.74187259200018,-49.328708592]]],[[[69.64177493600008,-49.191664320999834],[69.62403405000006,-49.20826588299998],[69.58952884200002,-49.19963958099997],[69.57504316500008,-49.20435963299989],[69.56023196700014,-49.206231377999956],[69.54623457100016,-49.20289478999993],[69.53419030000006,-49.19280364399987],[69.64161217500006,-49.154066664999924],[69.67807050900015,-49.151788018999866],[69.67807050900015,-49.15862395599997],[69.65544681100017,-49.1688778629999],[69.64177493600008,-49.191664320999834]]],[[[69.32764733200023,-48.92392343499998],[69.31511478000007,-48.93889739399984],[69.3977970710001,-48.928480726999936],[69.41130618600019,-48.92864348799999],[69.40626061300023,-48.94312916499994],[69.394297722,-48.95875416499993],[69.38062584700016,-48.97234465899998],[69.37037194100004,-48.98056405999998],[69.33521569100017,-48.99797942499986],[69.32178795700011,-49.010349216999984],[69.32536868600008,-49.02483489399994],[69.3348087900001,-49.04363372199998],[69.32203209700006,-49.05364348799988],[69.29981530000006,-49.06031666499984],[69.31128991000011,-49.069431248],[69.22250410200016,-49.09433359199986],[69.20582116000011,-49.08660247199985],[69.20582116000011,-49.03508879999996],[69.202891472,-49.02190520599982],[69.19361412900017,-48.99374765399993],[69.19214928500011,-48.986586195999806],[69.19874108200005,-48.9757626279999],[69.20899498800011,-48.96868254999993],[69.22006269600016,-48.96282317499998],[69.2293400400001,-48.95598723799988],[69.26392662900011,-48.921807549999976],[69.28484134200008,-48.906019789999846],[69.31275475400011,-48.89251067499987],[69.34294681100019,-48.88420989399989],[69.37037194100004,-48.88420989399989],[69.35889733200011,-48.90536874799998],[69.32764733200023,-48.92392343499998]]],[[[69.22632897200018,-48.85702890399997],[69.23096764400012,-48.87786223799995],[69.24195397200018,-48.87672291499991],[69.24683678500011,-48.88079192499997],[69.243907097,-48.89006926899984],[69.2366642590001,-48.89462655999988],[69.22771243600006,-48.89837005],[69.2189233730002,-48.904717705999936],[69.20932050900015,-48.918877862999956],[69.19459069100006,-48.94817473799988],[69.1779077480002,-48.96917083099992],[69.1661889980002,-48.978285414999824],[69.15357506600006,-48.98316822699989],[69.14380944100017,-48.98056405999998],[69.13705488400015,-48.971123955999964],[69.13990319100016,-48.968194268999945],[69.15162194100017,-48.9333635399999],[69.15064537900011,-48.932061456],[69.16277103000019,-48.906508070999834],[69.18083743600012,-48.88103606599983],[69.20281009200002,-48.86223723799996],[69.22632897200018,-48.85702890399997]]],[[[69.48365319100006,-48.882745049999826],[69.46599368600002,-48.88420989399989],[69.4466251960001,-48.87623463299984],[69.42839603000002,-48.864434502999956],[69.41358483200017,-48.84880950299996],[69.40447024800008,-48.82903411299995],[69.43767337300008,-48.8292782529999],[69.48601321700018,-48.855645440999986],[69.51986738400015,-48.85702890399997],[69.5122176440001,-48.870049737999956],[69.49952233200005,-48.87835051899993],[69.48365319100006,-48.882745049999826]]],[[[68.98292076900012,-48.79851653399991],[68.90821373800011,-48.89397551899992],[68.92310631600017,-48.88396575299985],[68.93726647200018,-48.87330494599982],[68.96045983200023,-48.86874765399987],[68.98609459700018,-48.87737395599987],[68.97364342500006,-48.84335702899985],[69.00749759200002,-48.83277760199998],[69.02027428500017,-48.85702890399997],[69.0742293630001,-48.79045989399997],[69.15064537900011,-48.75457122199989],[69.17432701900012,-48.75660572699991],[69.18881269600016,-48.773044528999904],[69.15357506600006,-48.79257577899998],[69.10906009200002,-48.8085263],[69.13656660200016,-48.83147551899998],[69.16431725400011,-48.8085263],[69.16374759200008,-48.84612395599989],[69.1307072270001,-48.88079192499997],[69.08057701900012,-48.90642669099985],[69.05445397200018,-48.94638437299999],[69.08228600400011,-48.93124765399999],[69.11150149800007,-48.919122002999906],[69.08375084700018,-48.97340260199985],[69.0222274100001,-49.01018645599993],[69.00749759200002,-49.04753997199989],[68.99976647199999,-49.090427341999956],[69.03435306100013,-49.10035572699995],[69.0681258470001,-49.11077239399986],[69.05689537900011,-49.03915781000001],[69.1057235040001,-48.99342213299991],[69.14372806100019,-49.00839609199994],[69.16911868600002,-49.043552342],[69.17367597700016,-49.07952239399989],[69.17847741000017,-49.11060963299998],[69.21452884200014,-49.12127044099992],[69.24659264400012,-49.10963307099983],[69.35206139400012,-49.080987237999935],[69.43799889400012,-49.014580987999906],[69.450938347,-49.02988046699988],[69.4573673840001,-49.048516533999866],[69.44874108200023,-49.06894296699984],[69.43767337300008,-49.078871351999844],[69.45248457100016,-49.0889624979999],[69.47152754000015,-49.08123137799989],[69.5213322270001,-48.995375257999946],[69.58952884200002,-48.95256926899996],[69.58912194100006,-48.97975025799997],[69.59791100400011,-49.00603606599989],[69.6160587900001,-49.014580987999906],[69.58204186300006,-49.02825286299986],[69.56820722700016,-49.0487606749999],[69.61801191500015,-49.047946872999894],[69.65772545700017,-49.06243254999985],[69.62614993600008,-49.07577890399995],[69.58204186300006,-49.090427341999956],[69.64405358200023,-49.100274346999974],[69.64405358200023,-49.12444426899998],[69.58716881600017,-49.133396092],[69.53077233200023,-49.13811614399992],[69.5079858730002,-49.13103606599996],[69.48487389400006,-49.124200127999934],[69.39991295700023,-49.11370208099988],[69.3398543630001,-49.15032317499999],[69.31226647200012,-49.166924737999864],[69.28248131600012,-49.184258721999846],[69.29704837300014,-49.195245049999905],[69.32406660200016,-49.184258721999846],[69.35181725400017,-49.17083098799995],[69.41993248800011,-49.13689544099991],[69.47217858200011,-49.151788018999866],[69.42725670700011,-49.16920338299984],[69.3810327480002,-49.18254973799985],[69.44548587300008,-49.19622161299997],[69.43775475400017,-49.21510182099981],[69.47217858200011,-49.21998463299988],[69.4959416020001,-49.23967864399983],[69.53419030000006,-49.23992278399996],[69.53419030000006,-49.24374765399988],[69.53419030000006,-49.247328382999946],[69.47193444100006,-49.2538388],[69.41130618600019,-49.27467213299983],[69.49610436300017,-49.26978932099994],[69.58082116000017,-49.26482512799999],[69.65650475400011,-49.25400155999991],[69.72592207100016,-49.247328382999946],[69.66382897200006,-49.2842749979999],[69.58204186300006,-49.302015882999896],[69.6489363940001,-49.30885182099991],[69.71225019600016,-49.306817315999886],[69.75098717500006,-49.28134530999997],[69.7879337900001,-49.25416432099996],[69.7923283210001,-49.27223072699998],[69.80176842500012,-49.28826262799997],[69.8294376960001,-49.258721612999906],[69.86085045700023,-49.24041106599986],[69.85743248800023,-49.22323984200001],[69.85377037900017,-49.20907968499999],[69.8752547540001,-49.20452239399995],[69.8977970710001,-49.20574309699997],[69.89747155000006,-49.18743254999991],[69.9181421230002,-49.180271091999956],[69.94125410200016,-49.174899998],[69.95573978000019,-49.15943775799998],[69.99293053500016,-49.14706796699994],[70.03174889400012,-49.134698174999826],[70.0900171230002,-49.12102629999988],[70.15113366000017,-49.13811614399992],[70.14730879000015,-49.149021091999984],[70.14307701900006,-49.159356378],[70.19402103000007,-49.15691497199997],[70.2351994150001,-49.13241952899994],[70.27295983200005,-49.07642994599981],[70.33594811300011,-49.05396900799981],[70.40821373800006,-49.05632903399986],[70.47706139400006,-49.073337497999916],[70.52198326900006,-49.0958798159999],[70.52857506599999,-49.14495208099984],[70.54883873800023,-49.183200778999975],[70.56853274800008,-49.21941497199991],[70.5560001960001,-49.26685963299984],[70.52369225400017,-49.30754973799991],[70.4638778000001,-49.356622002999856],[70.39177493600017,-49.34872812299989],[70.35938561300006,-49.33806731599986],[70.33594811300011,-49.35182057099996],[70.33130944100017,-49.36907317499997],[70.31153405000006,-49.37851327899998],[70.393809441,-49.40406666499988],[70.46648196700019,-49.43914153399986],[70.37566165500013,-49.430352471999896],[70.288340691,-49.43914153399986],[70.243418816,-49.35995859199998],[70.13990319100016,-49.338799737999885],[70.10132897200012,-49.34758879999985],[70.06275475400011,-49.35849374799992],[70.01636803500017,-49.36003997199996],[69.96998131600012,-49.353204033999944],[69.89535566500015,-49.34148528399986],[69.82227623800004,-49.349786065999936],[69.8748478520001,-49.367120049999926],[69.92530358200023,-49.39128997199993],[69.91285241000011,-49.39568450299983],[69.90040123800011,-49.4000790339999],[69.92253665500007,-49.41659921699997],[69.9456486340001,-49.43230559699994],[69.92139733200023,-49.438897393999916],[69.89844811300023,-49.443129164999846],[69.86890709700018,-49.421807549999876],[69.84066816500008,-49.39723072699986],[69.81544030000006,-49.39153411299996],[69.79493248800011,-49.404473565999886],[69.79737389400006,-49.42131926899989],[69.81544030000006,-49.45338307099987],[69.75619550900015,-49.423028252999885],[69.69190514400006,-49.404473565999886],[69.71452884200019,-49.427666924999826],[69.74415123800023,-49.44198984199999],[69.7659611340001,-49.45663827899991],[69.77409915500002,-49.47161223799994],[69.78858483200005,-49.47893645599986],[69.80176842500012,-49.48756275799986],[69.80543053500016,-49.511407158999845],[69.81381269600016,-49.53248463299995],[69.89283287900017,-49.560235283999845],[69.97771243600019,-49.57057057099994],[70.05697675900014,-49.59465911299996],[70.13697350400015,-49.6178524719999],[70.06527754000015,-49.57350025799996],[70.04908287900011,-49.52044036299994],[70.0926212900001,-49.51043059699987],[70.13835696700002,-49.50562916499997],[70.1800236340001,-49.51344166499996],[70.21998131600006,-49.52597421699987],[70.29590905000005,-49.53036874799994],[70.32398522200018,-49.57447682099985],[70.25668379000015,-49.61484140399998],[70.16480553500011,-49.6178524719999],[70.22836347700009,-49.63030364399983],[70.27605228000007,-49.65406666499983],[70.2443139980002,-49.68547942499995],[70.19239342500012,-49.6848283829999],[70.1536564460001,-49.69264088299989],[70.12322024800002,-49.71355559699986],[70.06804446700018,-49.715020440999915],[70.01270592500012,-49.69890715899985],[69.92872155000005,-49.70159270599992],[69.85564212300007,-49.67913176899983],[69.82064863400015,-49.64080169099989],[69.7879337900001,-49.60369231599997],[69.78296959700016,-49.561618747999916],[69.77857506600017,-49.52027760199988],[69.73853600400017,-49.49879322699995],[69.69190514400006,-49.50115325299999],[69.7072046230002,-49.51531340899993],[69.70557701900006,-49.5353329409999],[69.67310631600012,-49.51262786299994],[69.63721764400012,-49.50457122199991],[69.67212975400011,-49.544528903999876],[69.7150171230002,-49.58171965899996],[69.71241295700011,-49.63697682099997],[69.66391035200009,-49.6649716129999],[69.6268009770001,-49.65683359199988],[69.59229576900012,-49.64397551899995],[69.53093509200019,-49.64080169099989],[69.46973717500006,-49.63144296699986],[69.41895592500012,-49.60165780999986],[69.37338300900015,-49.56609465899997],[69.32585696700008,-49.56316497199995],[69.28101647200006,-49.562676690999965],[69.25806725400017,-49.52206796699996],[69.22738691500015,-49.488457940999936],[69.20362389400006,-49.496270440999936],[69.21225019600016,-49.517266533999965],[69.20533287900017,-49.519463799999876],[69.19841556100008,-49.52174244599994],[69.21810957100008,-49.54566822699991],[69.23194420700011,-49.57301197699997],[69.18409264400006,-49.55535247199996],[69.14380944100017,-49.51433684699995],[69.15577233200023,-49.541761976999815],[69.16724694100017,-49.56959400799987],[69.17798912900017,-49.58375416499989],[69.15381920700004,-49.598809503],[69.15064537900011,-49.62411874799986],[69.11451256600017,-49.603122653999904],[69.1058048840001,-49.56031666499992],[69.08545983200011,-49.540297132999946],[69.07227623800023,-49.58171965899996],[69.10401451900012,-49.644301039999974],[69.06657962300008,-49.69101327899987],[69.02564537900011,-49.70989348799999],[68.98194420700023,-49.721612237999885],[68.97095787900011,-49.71738046699996],[68.96290123800023,-49.71266041499987],[68.94703209700006,-49.7137997379999],[68.92823326900006,-49.71542734199992],[68.87956790500007,-49.71648528399987],[68.83171634200019,-49.71721770599991],[68.79102623800023,-49.71005624799996],[68.76449629000015,-49.674981377999885],[68.76563561300011,-49.651136976999894],[68.77662194100017,-49.63054778399996],[68.7781681650001,-49.592461846999875],[68.79883873800023,-49.56471119599981],[68.82390384200014,-49.535088799999855],[68.84278405000006,-49.50798919099984],[68.82243899800008,-49.48447030999996],[68.86524498800023,-49.46233489399989],[68.9017033210001,-49.431084893999916],[68.8752547540001,-49.39690520599984],[68.86915123800021,-49.367933851999936],[68.84693444100017,-49.363376559999985],[68.80648847700016,-49.36581796699993],[68.857188347,-49.32830169099982],[68.92408287900011,-49.322442315999865],[68.92066491000011,-49.30527109199985],[68.92408287900011,-49.28826262799997],[68.89185631600012,-49.29648202899997],[68.8361108730002,-49.30339934699997],[68.81478925900015,-49.281426690999865],[68.83204186300023,-49.276625257999875],[68.84961998800006,-49.27467213299983],[68.7928166020001,-49.248142184999956],[68.7737736340001,-49.20574309699997],[68.76433353000017,-49.188897393999966],[68.7703556650001,-49.17571379999983],[68.7859806650001,-49.19011809699998],[68.80860436300017,-49.20574309699997],[68.8577580090001,-49.17376067499997],[68.93091881600006,-49.14495208099984],[68.8543400400001,-49.149021091999984],[68.8011173840001,-49.13128020599991],[68.82398522200012,-49.11793385199981],[68.84961998800006,-49.11077239399986],[68.81055748800011,-49.110446873],[68.77198326900005,-49.11077239399986],[68.77621504000015,-49.09685637799988],[68.78060957100016,-49.082940362999985],[68.7487899100001,-49.07675546700001],[68.75554446700002,-49.04762135199987],[68.79468834700018,-49.040785414999945],[68.827403191,-49.05413176899986],[68.81299889400006,-49.01669687299992],[68.81324303500016,-48.96510182099987],[68.86060631600006,-48.96575286299991],[68.90308678500011,-48.97470468499985],[68.87867272200006,-48.94459400799991],[68.85035241000011,-48.916436455999836],[68.82292728000007,-48.88909270599995],[68.79810631600017,-48.86451588299994],[68.79175866000017,-48.846286716999956],[68.8152775400001,-48.837985934999885],[68.85572350400017,-48.82170989399994],[68.89682050900015,-48.82284921699998],[68.89812259200008,-48.80136484199986],[68.90300540500013,-48.78134530999989],[68.93132571700008,-48.766208591999984],[68.93474368600008,-48.73642343499997],[68.92066491000011,-48.72283294099993],[68.93832441500014,-48.69866301899992],[68.95679772200018,-48.671482029],[69.01563561300023,-48.65455494599984],[69.075450066,-48.658379815999936],[69.06072024800018,-48.67107512799999],[69.08228600400011,-48.69247812299995],[69.075450066,-48.712985935],[69.116465691,-48.72665780999994],[68.98292076900012,-48.79851653399991]]],[[[68.66797936300011,-48.64527760199997],[68.64405358200023,-48.64861419099991],[68.62305748800011,-48.64413827899994],[68.61011803500011,-48.63762786299985],[68.62598717500012,-48.629815362999864],[68.65235436300023,-48.62420012799986],[68.67074629000015,-48.62420012799986],[68.6814884770001,-48.63640715899993],[68.66797936300011,-48.64527760199997]]],[[[68.80860436300017,-48.603692315999986],[68.79004967500006,-48.61589934699988],[68.78003991000017,-48.60475025799995],[68.78101647200005,-48.58456796699992],[68.79509524800018,-48.56902434699983],[68.81861412900017,-48.56666432099996],[68.83082116000011,-48.57740650799989],[68.82862389400012,-48.59270598799994],[68.80860436300017,-48.603692315999986]]],[[[51.86817467500006,-46.41025155999992],[51.823496941000116,-46.45126718500002],[51.78874759200008,-46.44589609199997],[51.77214603000019,-46.445245049999926],[51.75831139400012,-46.45126718500002],[51.728526238000114,-46.44744231599991],[51.70557701900011,-46.43759530999998],[51.68677819100017,-46.42245859199989],[51.66960696700002,-46.40398528399996],[51.65650475400017,-46.3783505189999],[51.667491082000225,-46.363539320999934],[51.73601321700008,-46.327406507999896],[51.759532097,-46.32935963299985],[51.77808678500011,-46.342868747999916],[51.78565514400006,-46.36614348799992],[51.79297936300005,-46.37232838299998],[51.80909264400006,-46.375258070999834],[51.83415774800008,-46.3766415339999],[51.84457441500015,-46.38274504999998],[51.852793816000116,-46.390557549999876],[51.86817467500006,-46.41025155999992]]],[[[50.27767988400015,-46.12704843499995],[50.26075280000006,-46.12712981599985],[50.22331790500007,-46.11598072699984],[50.20118248800006,-46.11345794099991],[50.186371290000096,-46.10320403399989],[50.178070509000094,-46.086602471999925],[50.17554772200012,-46.06471119599989],[50.18970787900011,-46.05681731599991],[50.26807701900005,-46.04371510199993],[50.281423373000194,-46.05803801899992],[50.29314212300008,-46.07634856599998],[50.29835045700005,-46.096449476999844],[50.29224694100017,-46.11598072699984],[50.27767988400015,-46.12704843499995]]],[[[77.54468834700006,-38.737481377999885],[77.53614342500012,-38.738457940999865],[77.51636803500017,-38.73544687299986],[77.51246178500016,-38.729913018999916],[77.50652103000007,-38.7131486959999],[77.51091556100008,-38.70574309699984],[77.51905358200017,-38.70240650799998],[77.5275171230002,-38.70574309699984],[77.53288821700008,-38.709161065999936],[77.54525800900008,-38.723402601999844],[77.54932701900006,-38.73113372199994],[77.54468834700006,-38.737481377999885]]],[[[77.56527754000015,-37.893161716999884],[77.53663170700011,-37.90113697699992],[77.50464928500011,-37.88241952899996],[77.48755944100004,-37.85165780999997],[77.5037541020001,-37.82350025799998],[77.54395592500012,-37.8202450499999],[77.57471764400006,-37.843519789999874],[77.58521569100006,-37.87420012799987],[77.56527754000015,-37.893161716999884]]],[[[40.385996941000116,-22.339450778999975],[40.36866295700022,-22.36256275799984],[40.348887566000116,-22.365492445999863],[40.33912194100017,-22.35963307099982],[40.331797722000175,-22.348077080999886],[40.329600457000105,-22.331231377999885],[40.33643639400012,-22.320489190999965],[40.34799238400015,-22.317071221999868],[40.35865319100017,-22.316013278999904],[40.364268425000056,-22.318942966999924],[40.36719811300006,-22.329685154000018],[40.36345462300008,-22.33489348799993],[40.35857181100019,-22.338636976999965],[40.355235222000054,-22.344984632999978],[40.361094597000175,-22.350844007999854],[40.37403405000012,-22.349704684999903],[40.38168379000015,-22.33904387799997],[40.379730665000096,-22.32390715899997],[40.37916100400011,-22.31487395599987],[40.38550866000011,-22.317803643999895],[40.385996941000116,-22.339450778999975]]],[[[39.73113040500019,-21.444187106999962],[39.72828209700012,-21.444594007999967],[39.72909589900016,-21.441908460999898],[39.73113040500019,-21.444187106999962]]],[[[42.75879967500012,-17.06064218499992],[42.751800977000094,-17.07610442499994],[42.724375847000175,-17.06357187299993],[42.7381291020001,-17.057305596999896],[42.75879967500012,-17.06064218499992]]],[[[54.520925326000075,-15.885186455999856],[54.521332227000094,-15.894056898999978],[54.514496290000146,-15.88958098799992],[54.520925326000075,-15.885186455999856]]],[[[47.29957116000017,-11.550632419999786],[47.306407097000175,-11.569919528999904],[47.28793379000015,-11.565524997999916],[47.29957116000017,-11.550632419999786]]]]}},{"type":"Feature","properties":{"scalerank":0,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Antarctica","sov_a3":"ATA","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Antarctica","adm0_a3":"ATA","geou_dif":0,"geounit":"Antarctica","gu_a3":"ATA","su_dif":0,"subunit":"Antarctica","su_a3":"ATA","brk_diff":0,"name":"Antarctica","name_long":"Antarctica","brk_a3":"ATA","brk_name":"Antarctica","brk_group":null,"abbrev":"Ant.","postal":"AQ","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Multiple claims held in abeyance","name_sort":"Antarctica","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":-99,"pop_est":3802,"gdp_md_est":760.4,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10_":"AY","iso_a2":"AQ","iso_a3":"ATA","iso_n3":"010","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":28289409,"woe_id_eh":28289409,"woe_note":"Exact WOE match as country","adm0_a3_is":"ATA","adm0_a3_us":"ATA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Antarctica","region_un":"Antarctica","subregion":"Antarctica","region_wb":"Antarctica","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1,"filename":"ATA.geojson"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-162.40904700399986,-82.89641692499995],[-162.33983313699989,-82.92376067499993],[-162.3397924469999,-82.92376067499993],[-162.26740475199995,-82.94654713299994],[-161.92159990149992,-82.98544687299986],[-161.5757950509999,-83.02434661299995],[-161.81330318899992,-83.03866952899993],[-161.84418697799987,-83.04550546699994],[-161.8731176419999,-83.05828215899997],[-161.93732662699995,-83.10051848799992],[-161.97004146999996,-83.11630624799987],[-162.0126846999999,-83.126071873],[-162.4024145169999,-83.14837004999985],[-162.83185787649995,-83.11467864399984],[-163.26130123599992,-83.08098723799985],[-163.28388424399992,-83.06308359199997],[-163.28107662699992,-83.05771249800001],[-163.27021236899986,-83.05120208099984],[-163.26862545499995,-83.04566822699991],[-163.2956029939999,-83.02662525799991],[-163.50706946499994,-83.01091887799996],[-163.60155188699986,-82.99016692499995],[-163.61945553299995,-82.98170338299991],[-163.6295873689999,-82.97063567499988],[-163.62511145699995,-82.95281340899999],[-163.60521399599995,-82.94036223799996],[-163.56232662699986,-82.92408619599995],[-163.57848059799994,-82.91383228999983],[-163.6024063789999,-82.9078915339999],[-163.73041744699987,-82.88982512799988],[-163.7527563139999,-82.87997812299994],[-163.72114010299993,-82.87322356599992],[-163.6887914699999,-82.87151458099991],[-163.7100317049999,-82.86142343499994],[-163.8113907539999,-82.84693775799991],[-163.7497045559999,-82.83359140399998],[-163.32697506399992,-82.84794144733324],[-162.90424557199995,-82.86229149066668],[-162.48151607999986,-82.87664153399993],[-162.40904700399986,-82.89641692499995]]],[[[-168.78734290299988,-83.2137997379999],[-168.8471573559999,-83.22682057099989],[-169.32469641849985,-83.20541757599995],[-169.8022354809999,-83.1840145809999],[-169.8161108059999,-83.18027109199987],[-169.8282364569999,-83.17294687299994],[-169.84996497299986,-83.15447356599992],[-169.8631485669999,-83.14739348799988],[-170.35511227124988,-83.07640960124984],[-170.84707597549985,-83.00542571449988],[-171.33903967974993,-82.93444182774982],[-171.8310033839999,-82.86345794099998],[-171.9013565749999,-82.84205494599993],[-171.82050533799992,-82.82463958099987],[-171.3554784824999,-82.87957122166652],[-170.89045162699986,-82.93450286233326],[-170.42542477149993,-82.98943450299993],[-169.9603979159999,-83.04436614366658],[-169.49537106049988,-83.09929778433332],[-169.03034420499995,-83.15422942499998],[-168.8986303379999,-83.18889739399995],[-168.8101700509999,-83.20183684699997],[-168.78734290299988,-83.2137997379999]]],[[[-157.99091549399992,-82.09783294099995],[-158.06720943899987,-82.10222747199985],[-158.09850012899994,-82.095798435],[-158.08507239499994,-82.08709075299986],[-158.06928463399984,-82.08147551899995],[-158.03697669199988,-82.075616144],[-158.0670059889999,-82.04859791499996],[-158.10968990799995,-82.03533294099992],[-158.3936661449999,-81.99374765399995],[-158.6971125969999,-81.90610116949998],[-159.0005590489999,-81.818454685],[-159.0191544259999,-81.78769296700003],[-159.00304114499986,-81.78036874799993],[-158.97858639199995,-81.77800872199988],[-158.89220130099994,-81.78183359199998],[-158.63896643799984,-81.83123137850001],[-158.38573157499985,-81.88062916499993],[-158.37144934799986,-81.88648853999996],[-158.34683183499988,-81.901462498],[-158.34679114499988,-81.90154387799997],[-158.30414791599992,-81.92994557099992],[-158.24653072799987,-81.95452239399991],[-157.91490637899992,-82.01824309699998],[-157.8566381499999,-82.01978932099983],[-157.82746334499993,-82.0246721329999],[-157.8085831369999,-82.03915781000003],[-157.92076575399986,-82.084730727],[-157.99091549399992,-82.09783294099995]]],[[[-160.48766028599994,-81.59710051899985],[-160.5711156889999,-81.59889088299984],[-161.02217130657132,-81.58213818585708],[-161.47322692414275,-81.56538548871423],[-161.92428254171412,-81.54863279157138],[-162.37533815928566,-81.53188009442852],[-162.82639377685706,-81.51512739728565],[-163.27744939442846,-81.49837470014282],[-163.72850501199989,-81.48162200299996],[-163.75316321499992,-81.47047291499995],[-163.74860592399995,-81.46868254999995],[-163.67100989499988,-81.465427342],[-163.65819251199989,-81.461602472],[-163.6701554029999,-81.45435963299995],[-163.94884192599991,-81.41887786299996],[-163.9900610019999,-81.40349700299986],[-163.96983801999986,-81.39316171699993],[-163.9492081369999,-81.37835051899995],[-163.9321182929999,-81.36101653399997],[-163.92267818899984,-81.34335702899996],[-163.85118567599991,-81.318942967],[-163.41753089099987,-81.29461028449998],[-162.98387610599994,-81.27027760199996],[-162.52224687419988,-81.30878671659994],[-162.06061764239993,-81.34729583119992],[-161.59898841059987,-81.38580494579998],[-161.13735917879995,-81.42431406039994],[-160.6757299469999,-81.462823175],[-160.63227291599995,-81.49089934699992],[-160.62852942599991,-81.49675872199995],[-160.67149817599986,-81.50798919099996],[-160.68512936099992,-81.514743748],[-160.6472061839999,-81.51783619599989],[-160.44220943899995,-81.56023528399997],[-160.4138891269999,-81.57366301899997],[-160.4453832669999,-81.59050872199997],[-160.48766028599994,-81.59710051899985]]],[[[-153.91820227799994,-80.00603606599995],[-153.8946020169999,-80.02092864399991],[-153.94257564999992,-80.03875090899989],[-154.1141251289999,-80.03704192499988],[-154.11424719999988,-80.03704192499988],[-154.3618871739999,-80.03053150799997],[-154.3353979159999,-80.02532317499998],[-154.30980383999992,-80.01669687299996],[-154.36766516799992,-80.00701262799991],[-154.4097387359999,-80.00920989399992],[-154.42320716099985,-80.00465260199996],[-154.4304906889999,-79.99895598799996],[-154.4429418609999,-79.98642343499998],[-154.45262610599985,-79.981215102],[-154.51390540299988,-79.964288019],[-154.9878637359999,-79.92937590899999],[-155.02863521999996,-79.91570403399996],[-155.01829993399986,-79.89617278399997],[-155.47874915299988,-79.85759856599991],[-155.66527258999992,-79.81682708099993],[-155.66185462099992,-79.816094659],[-155.6482641269999,-79.80999114399992],[-155.6135147779999,-79.80282968499998],[-155.57697506399987,-79.80038827899995],[-155.16228186749987,-79.85180022575001],[-154.7475886709999,-79.90321217249999],[-154.33289547449994,-79.95462411924997],[-153.91820227799994,-80.00603606599995]]],[[[-155.6541235019999,-79.80388762799993],[-155.79308020699995,-79.82008228999987],[-155.82787024599992,-79.81552499799994],[-155.85541744699992,-79.797458592],[-155.82359778599988,-79.77825286299996],[-155.79047604099995,-79.77011484199994],[-155.7193497389999,-79.76913827899998],[-155.5816544259999,-79.78289153399999],[-155.61644446499992,-79.7953427059999],[-155.6541235019999,-79.80388762799993]]],[[[-163.1629125639999,-79.73992278399993],[-163.09972083199992,-79.74529387799998],[-163.0996801419999,-79.74529387799998],[-162.7342423169999,-79.79387786299995],[-162.70763098899988,-79.80201588299997],[-162.68736731699985,-79.81487395599997],[-162.73200436099992,-79.83505624799999],[-162.78266354099992,-79.84172942499988],[-163.06582597599996,-79.81975676899995],[-163.34898841099994,-79.79778411299995],[-163.40013587099992,-79.78289153399999],[-163.30915279899995,-79.77898528399999],[-163.24799557199992,-79.76832447699996],[-163.15160071499992,-79.76775481599996],[-163.06566321499992,-79.78199635199991],[-163.0380753249999,-79.77711353999993],[-163.04877682199992,-79.76832447699996],[-163.06248938699994,-79.76490650799995],[-163.07734127499987,-79.763848566],[-163.1467992829999,-79.74822356599992],[-163.1629125639999,-79.73992278399993]]],[[[-60.0744522779999,-79.69410572699994],[-60.082102016999954,-79.69548919099991],[-60.099598761999914,-79.69443124799987],[-60.107655402999946,-79.69524504999988],[-60.14940344999988,-79.70566171699987],[-60.22687740799995,-79.70614999799994],[-60.48656165299985,-79.73772551899985],[-60.403146938999946,-79.75725676899992],[-60.11188717349992,-79.76323821399994],[-59.82062740799996,-79.76921965899996],[-59.79914303299992,-79.77434661299986],[-59.810658331999974,-79.78769296699997],[-59.823638475999864,-79.79941171699997],[-59.838002081999946,-79.80925872199998],[-59.853627081999925,-79.81715260199996],[-59.83714758999994,-79.82293059699992],[-59.81810462099995,-79.82634856599994],[-59.79906165299985,-79.82642994599992],[-59.74998938699991,-79.81812916499993],[-59.71784420499995,-79.82626718499995],[-59.65640214799987,-79.85035572699996],[-59.783192511999914,-79.83367278399993],[-59.83580481699993,-79.83416106599992],[-59.854400193999936,-79.83757903399992],[-59.87450110599991,-79.84587981599992],[-59.88483639199989,-79.85881926899991],[-59.874419725999935,-79.87639739399995],[-59.87629146999989,-79.87802499799997],[-59.880482550999915,-79.88225676899998],[-59.883168097999885,-79.88396575299998],[-59.86278235599992,-79.90325286299985],[-59.8265681629999,-79.906833592],[-59.78758704299991,-79.90105559699985],[-59.75910396999989,-79.89299895599991],[-59.74746660099989,-79.88632577899995],[-59.73094641799992,-79.88404713299997],[-59.67772376199994,-79.88648853999983],[-59.65518144399993,-79.89072030999994],[-59.62555904899992,-79.90634531],[-59.71800696499991,-79.906833592],[-59.73216712099995,-79.913750909],[-59.727406378999945,-79.92205169099996],[-59.719878709999875,-79.92685312299997],[-59.702015753999916,-79.93352629999993],[-59.69444739499997,-79.93906015399995],[-59.684396938999896,-79.95142994599989],[-59.67760169199997,-79.95720794099995],[-59.70864824099987,-79.96119557099993],[-59.7193904289999,-79.96005624799999],[-59.72935950399989,-79.95623137799988],[-59.75763912699994,-79.94068775799997],[-59.77403723899994,-79.93645598799995],[-59.791005011999914,-79.93531666499982],[-59.84666907499994,-79.9436174459999],[-59.85269120999993,-79.94963958099999],[-59.851307745999854,-79.96119557099993],[-59.86270097599992,-79.96819426899991],[-59.85496985599991,-79.97861093499999],[-59.82787024599989,-79.99684010199996],[-59.82209225199992,-80.00188567499991],[-59.79112708199989,-80.0227190079999],[-59.77993730399987,-80.03329843500002],[-59.77594967399991,-80.04517994599998],[-59.78433183499996,-80.05779387799997],[-59.799387173999975,-80.06389739399995],[-59.93541419199991,-80.07577890399999],[-59.961333787999905,-80.08391692499993],[-59.92015540299994,-80.10857512799993],[-59.909413214999915,-80.11305103999989],[-59.897938605999876,-80.11581796699994],[-59.51988684799996,-80.11191171699994],[-59.43333899599989,-80.12867603999996],[-59.42162024599991,-80.13616301899994],[-59.43297278599988,-80.14714934699998],[-59.44786536399994,-80.15601978999993],[-59.47996985599991,-80.16952890399999],[-59.366078253999945,-80.16090260199991],[-59.34947669199991,-80.16171640399999],[-59.33486894399987,-80.1661109349999],[-59.332915818999936,-80.16855234199994],[-59.33238684799994,-80.17506275799994],[-59.33116614499994,-80.177341404],[-59.32795162699997,-80.17831796699997],[-59.286366339999915,-80.17945728999983],[-59.287953253999945,-80.18450286299995],[-59.290679490999906,-80.18889739399992],[-59.29442298099993,-80.192478123],[-59.29873613199993,-80.19548919099991],[-59.286773240999906,-80.20964934699992],[-59.280384894999884,-80.2154273419999],[-59.30060787699992,-80.21851978999997],[-59.31818600199995,-80.21624114399991],[-59.35326087099991,-80.20525481599995],[-59.37938391799988,-80.20208098799998],[-59.58039303299994,-80.21135833099993],[-59.592640753999916,-80.21396249799993],[-59.599964972999935,-80.21738046699994],[-59.60509192599994,-80.22340260199994],[-59.61042232999992,-80.23381926899992],[-59.61961829299988,-80.24651458099999],[-59.62319902299996,-80.25351327899998],[-59.62262936099999,-80.25969817499985],[-59.61656653599987,-80.26376718499989],[-59.59886633999988,-80.26506926899991],[-59.591786261999914,-80.26653411299996],[-59.586008266999954,-80.27117278399999],[-59.5802302729999,-80.28134530999994],[-59.574574347999906,-80.285821222],[-59.597157355999876,-80.28915781000002],[-59.63731848899988,-80.28460051899998],[-59.657704230999876,-80.29241301899988],[-59.66974850199997,-80.30315520599997],[-59.68809973899994,-80.32390715899999],[-59.69969641799986,-80.33066171699993],[-59.71886145699992,-80.33261484199997],[-59.73884029899989,-80.33180103999996],[-59.75743567599988,-80.33570728999996],[-59.7725317049999,-80.35165780999996],[-59.773345506999895,-80.354913019],[-59.77424068899989,-80.36402760199991],[-59.77525794199996,-80.36809661299993],[-59.77741451699995,-80.37102629999998],[-59.78331458199989,-80.37615325299998],[-59.785227016999954,-80.3791643209999],[-59.7840876939999,-80.3982072899999],[-59.76988684799991,-80.40699635199985],[-59.730865037999926,-80.4141578099999],[-59.77440344999987,-80.41920338299994],[-59.785878058999906,-80.42392343500003],[-59.79259192599994,-80.42937590899989],[-59.79434160099995,-80.43377044099995],[-59.79161536399988,-80.447849217],[-59.795643683999856,-80.469414972],[-59.8088272779999,-80.49456145599999],[-59.82725989499994,-80.51637135199994],[-59.846831834999904,-80.52825286299998],[-59.8092341789999,-80.53264739399998],[-59.68154863199996,-80.51506926899994],[-59.670074022999906,-80.51116301899995],[-59.65965735599991,-80.50546640399988],[-59.65221106699994,-80.49716562299999],[-59.65892493399988,-80.49065520599997],[-59.66673743399988,-80.48479583099994],[-59.647287563999974,-80.47942473799999],[-59.62633216099994,-80.47698333099996],[-59.58519446499985,-80.47869231599995],[-59.574086066999904,-80.48162200299997],[-59.552805141999954,-80.49016692499991],[-59.54185950399997,-80.49309661299993],[-59.53551184799994,-80.49358489399992],[-59.519602016999926,-80.48967864399992],[-59.506255662999905,-80.48845794099991],[-59.46654212099992,-80.49089934699985],[-59.47614498599997,-80.49578215899992],[-59.490223761999914,-80.50725676899994],[-59.50186113199993,-80.52019622199995],[-59.50389563699986,-80.52947356599992],[-59.564361131999874,-80.541599217],[-59.58185787699992,-80.53883228999986],[-59.58462480399987,-80.53679778400002],[-59.590931769999905,-80.52971770599996],[-59.591704881999924,-80.52841562299996],[-59.60024980399987,-80.52727629999991],[-59.610585089999894,-80.52760182099993],[-59.620594855999855,-80.5295549459999],[-59.62852942599991,-80.53346119599998],[-59.64122473899988,-80.54599374799997],[-59.647206183999906,-80.55046965899996],[-59.74132239499991,-80.57626718499996],[-59.8333227199999,-80.58326588299997],[-59.847564256999924,-80.58709075299998],[-59.85924231699994,-80.59498463299995],[-59.868397589999915,-80.60881926899995],[-59.88426673099993,-80.64592864399997],[-59.79381262899997,-80.6556942689999],[-59.7149958979999,-80.64120859199996],[-59.690174933999856,-80.64104583099999],[-59.66592363199988,-80.64641692499995],[-59.684722459999904,-80.66423919099992],[-59.69180253799987,-80.66912200299998],[-59.699289516999954,-80.67229583099994],[-59.72345943899995,-80.67913176899998],[-59.755604620999925,-80.69459400799991],[-59.785227016999954,-80.714043878],[-59.80915279899991,-80.73821379999991],[-59.81899980399993,-80.74488697699996],[-60.09019934799988,-80.83049895599996],[-60.36139889199992,-80.91611093500003],[-60.65265865799993,-80.96038176899998],[-61.120015021999905,-80.9365170227499],[-61.58737138599989,-80.91265227649998],[-62.0547277499999,-80.88878753024997],[-62.52208411399988,-80.86492278399999],[-62.958485480999876,-80.77532317499991],[-62.98363196499989,-80.75969817499994],[-62.98810787699992,-80.73699309699997],[-62.97996985599991,-80.72673919099995],[-62.96971594999988,-80.718357029],[-62.96507727799988,-80.70916106599994],[-62.97362219999987,-80.69687265399998],[-62.98827063699988,-80.68857187299989],[-63.0401098299999,-80.67449309699995],[-63.051625128999945,-80.66863372200001],[-63.05597896999993,-80.66253020599993],[-63.056507941999904,-80.64055754999991],[-63.06114661399993,-80.62517669099995],[-63.07184811099996,-80.61467864399998],[-63.08629309799991,-80.60751718499995],[-63.14110266799991,-80.59246184699994],[-63.46672522699987,-80.59929778449991],[-63.79234778599991,-80.60613372199988],[-63.80504309799996,-80.60979583099993],[-63.816029425999936,-80.61614348799993],[-63.83682206899991,-80.63144296700001],[-63.8502091139999,-80.63860442499995],[-63.8636775379999,-80.64283619599998],[-63.878000454999885,-80.64519622199992],[-64.12751217399995,-80.653578383],[-64.16563880099991,-80.664808852],[-64.1588028639999,-80.66643645600001],[-64.15233313699991,-80.66920338299997],[-64.14659583199995,-80.67310963299997],[-64.14220130099994,-80.67839934699994],[-64.17731686099992,-80.69646575299996],[-64.18374589799991,-80.70769622199997],[-64.17080644399994,-80.72682057099995],[-64.17609615799991,-80.73316822699995],[-64.21833248599992,-80.744724217],[-64.28477942599994,-80.75115325300001],[-64.76800696499987,-80.68339609159997],[-65.25123450399995,-80.61563893019996],[-65.7344620429999,-80.54788176879995],[-66.2176895819999,-80.48012460739984],[-66.7009171209999,-80.41236744599992],[-66.75137285099993,-80.39381275799991],[-66.75885982999989,-80.38909270599997],[-66.76724199099996,-80.37932708099996],[-66.77635657499985,-80.35759856599998],[-66.78286699099993,-80.34742603999995],[-66.78872636599988,-80.34303150799987],[-66.7955623039999,-80.33953215899994],[-66.8015844389999,-80.33521900799997],[-66.80475826699995,-80.32854583099991],[-66.79645748599988,-80.308200779],[-66.76911373599992,-80.28972747199998],[-66.57664954299986,-80.22730885199994],[-66.33096269399991,-80.21917083099993],[-66.27696692599991,-80.2115210919999],[-66.26622473899991,-80.21249765399988],[-66.27009029899992,-80.19988372199998],[-66.25788326699993,-80.19491952900003],[-66.2398982409999,-80.19443124799994],[-66.21056067599989,-80.19719817499991],[-66.19440670499992,-80.20110442499991],[-66.17955481699997,-80.20777760199996],[-66.16722571499992,-80.21819426899995],[-66.1697891919999,-80.2274716129999],[-66.18468176999997,-80.23756275799997],[-66.21178137899992,-80.24993254999991],[-66.20710201699998,-80.25628020599993],[-66.18932044199991,-80.27255624799996],[-66.21263587099992,-80.29436614399992],[-66.22386633999992,-80.31389739399991],[-66.22883053299995,-80.31959400799998],[-66.20348059799991,-80.34368254999991],[-66.16535396999984,-80.35735442499985],[-65.91844641799989,-80.39495208099986],[-65.45532521577772,-80.39199526677777],[-64.99220401355544,-80.3890384525555],[-64.52908281133324,-80.38608163833324],[-64.06596160911107,-80.38312482411106],[-63.60284040688879,-80.38016800988888],[-63.13971920466662,-80.37721119566662],[-62.67659800244433,-80.37425438144444],[-62.21347680022216,-80.37129756722217],[-61.75035559799988,-80.368340753],[-61.4864599274999,-80.32073333099993],[-61.22256425699993,-80.27312590899992],[-61.194569464999915,-80.25505950299991],[-61.1845596999999,-80.25261809699998],[-61.447255011999914,-80.25115325299993],[-61.515858527999846,-80.24187590899996],[-61.53526770699994,-80.23560963299992],[-61.54454505099991,-80.2300757789999],[-61.55589758999989,-80.21672942499998],[-61.56297766799994,-80.21005624800003],[-61.57677161399994,-80.20354583099993],[-61.65807044199993,-80.17945728999983],[-61.66307532499988,-80.17555103999983],[-61.66266842399997,-80.17017994599996],[-61.65835527299987,-80.1661109349999],[-61.65290279899992,-80.162204685],[-61.6486710279999,-80.15789153399999],[-61.65013587099989,-80.143649998],[-61.667795376999884,-80.13534921699993],[-61.70645097599993,-80.12493254999993],[-61.714466925999886,-80.1172828099999],[-61.72765051999993,-80.09905364399992],[-61.73607337099989,-80.09156666499996],[-61.74998938699985,-80.08440520599991],[-61.795765753999966,-80.06658294099985],[-61.80785071499988,-80.05754973799992],[-61.806141730999876,-80.05087655999988],[-61.795480923999946,-80.04607512799997],[-61.780100063999896,-80.04241301899992],[-61.749867316999875,-80.03899504999993],[-61.65884355399995,-80.03801848799995],[-61.669789191999904,-80.03590260199994],[-61.700754360999944,-80.01539478999989],[-61.290516730999904,-80.01490650799998],[-61.266753709999904,-80.00847747199998],[-61.258941209999904,-80.00335051899988],[-61.23810787699991,-79.98495859199993],[-61.235585089999915,-79.97966887799994],[-61.24445553299995,-79.9738908829999],[-61.30870520699988,-79.94589609199996],[-61.468006964999915,-79.91334400799991],[-61.51528886599987,-79.89446379999997],[-61.52269446499986,-79.89299895599991],[-61.49474036399993,-79.8856747379999],[-61.46605383999988,-79.88160572699994],[-61.12075761599987,-79.87346770599993],[-61.094838019999884,-79.83245208099993],[-61.026926235999895,-79.80608489399992],[-60.551787889499906,-79.73105234199997],[-60.07664954299991,-79.65601978999986],[-60.04076087099992,-79.66008879999991],[-60.04450436099995,-79.66985442499994],[-60.0533341139999,-79.67986419099994],[-60.06419837099988,-79.68840911299995],[-60.0744522779999,-79.69410572699994]]],[[[-31.134510870999918,-79.797539972],[-31.115142381999902,-79.8057593729999],[-31.09544837099986,-79.81072356599995],[-30.65412350199989,-79.84612395599996],[-30.492298956999942,-79.84189218499994],[-30.357899542999945,-79.85540129999991],[-30.290516730999936,-79.85320403400002],[-30.225575324999877,-79.83749765399995],[-30.522877570999867,-79.79290129999988],[-30.820179816999968,-79.7483049459999],[-30.847482876999944,-79.74065520599994],[-30.87071692599997,-79.72722747199988],[-30.877837693999908,-79.7196591129999],[-30.890492316999882,-79.70281340899993],[-30.898182745999918,-79.69597747199991],[-30.905751105999855,-79.69255950299998],[-30.921498175999915,-79.688571873],[-30.928944464999887,-79.68425872199992],[-30.888579881999927,-79.66480885199992],[-30.843373175999886,-79.65252044099995],[-30.797352667999945,-79.65007903399993],[-30.754872199999877,-79.66033294099995],[-30.74058997299988,-79.67099374799997],[-30.72203528599988,-79.69890715899993],[-30.707020636999857,-79.71160247199998],[-30.662831183999884,-79.73455169099996],[-30.647084113999906,-79.73967864399998],[-30.276661750499898,-79.77735768050002],[-29.906239386999886,-79.81503671699994],[-29.76512610599991,-79.85198333099999],[-29.61286373599995,-79.91025156],[-29.618316209999904,-79.91122812299999],[-29.679798956999974,-79.9279924459999],[-29.701242641999894,-79.93132903399992],[-29.779611782999982,-79.92962004999993],[-29.861724412999877,-79.91904062299997],[-29.877797003999945,-79.91236744599992],[-29.889556443999936,-79.90178801899988],[-29.909291144999965,-79.87769947699995],[-29.923695441999943,-79.86980559699988],[-30.008900519999912,-79.853610935],[-30.053456183999913,-79.85198333099999],[-30.09544837099989,-79.85621510199984],[-30.163400844999956,-79.87688567499993],[-30.252349412999873,-79.88616301899998],[-30.1459041009999,-79.93108489399998],[-30.034657355999855,-79.94085051899994],[-30.02196204299989,-79.94345468499994],[-30.014475063999924,-79.947849217],[-29.994618292999917,-79.96266041499999],[-29.989084438999896,-79.96559010199991],[-30.184722459999932,-80.0049781229999],[-30.36644446499986,-80.01775481599985],[-30.42552649599989,-80.01091887799993],[-30.471669074999905,-79.98870208099994],[-30.324208136999943,-79.98479583099996],[-30.2872615229999,-79.97584400799992],[-30.27798417899993,-79.97584400799992],[-30.31090247299991,-79.96721770599993],[-30.482655402999878,-79.94500090899996],[-30.496001756999874,-79.93759530999998],[-30.501616990999874,-79.92913176899995],[-30.505482550999886,-79.91961028399984],[-30.513661261999886,-79.90894947699992],[-30.521473761999886,-79.90406666499986],[-30.529204881999902,-79.90260182099989],[-30.63117428299989,-79.90642669099991],[-30.65249589799987,-79.91692473799988],[-30.646066860999948,-79.9193661439999],[-30.635975714999883,-79.92742278399994],[-30.63243567599991,-79.93889739399998],[-30.64565995999993,-79.95142994599989],[-30.661122199999877,-79.955661717],[-30.67894446499994,-79.95631275799987],[-30.887684699999934,-79.92555103999996],[-31.214711066999854,-79.912041925],[-31.541737433999884,-79.89853281000002],[-31.751942511999914,-79.85914478999993],[-31.851714647999923,-79.85263437299994],[-31.87242591099994,-79.84710051899992],[-31.855824347999885,-79.83798593500003],[-31.835804816999907,-79.83245208099993],[-31.737172003999945,-79.81682708099993],[-31.718902147999867,-79.80950286299993],[-31.80968176999997,-79.800957941],[-31.99819902299993,-79.82024504999985],[-32.04478919199993,-79.81902434699992],[-32.089466925999915,-79.80925872199998],[-31.916330532999975,-79.77214934699988],[-31.896717902999907,-79.76482512799997],[-31.878773566999882,-79.75448984199987],[-31.924387173999918,-79.74765390399995],[-31.939320441999964,-79.74374765399995],[-31.95079505099991,-79.73772551899985],[-31.97166907499988,-79.72307708099993],[-31.98314368399991,-79.71754322699991],[-31.998036261999886,-79.71396249799994],[-32.16177324099988,-79.70964934699985],[-31.996693488999878,-79.69703541499996],[-31.96776282499988,-79.69011809699995],[-31.984608527999885,-79.685153904],[-32.03722083199992,-79.68132903399999],[-32.07725989499994,-79.666599217],[-32.06387285099993,-79.66383228999995],[-32.02440344999988,-79.64967213299992],[-31.78770911399994,-79.63079192499998],[-31.64476477799994,-79.63689544099998],[-31.59166419199991,-79.64869557099995],[-31.44395911399991,-79.70859140399998],[-31.189279751999948,-79.76572030999996],[-31.134510870999918,-79.797539972]]],[[[-67.65729732999998,-79.53679778399993],[-67.68114173099985,-79.55136484199997],[-67.61725826699991,-79.54420338299984],[-67.56265214799987,-79.55144622199995],[-67.51964270699992,-79.54876067499988],[-67.45006262899994,-79.56698984199996],[-67.18407141799989,-79.56654225049999],[-66.91808020699995,-79.56609465899996],[-66.91075598899994,-79.56519947699996],[-66.92516028599991,-79.57268645599993],[-66.97516842399995,-79.58318450299991],[-66.88825436099995,-79.58603280999995],[-66.87096106699994,-79.58855559699995],[-66.8334854809999,-79.60149504999997],[-66.75096594999991,-79.61679452899993],[-66.45002193949992,-79.62249114349996],[-66.1490779289999,-79.62818775799988],[-65.85781816299989,-79.60214609200001],[-65.81940670499992,-79.60800546699987],[-65.78856360599994,-79.624607029],[-65.81338456899991,-79.62753671699994],[-65.93789628799988,-79.65894947699996],[-65.96564693899995,-79.65976327899998],[-65.99181067599991,-79.65536874799999],[-65.99242102799988,-79.65422942499995],[-65.99840247299989,-79.64837004999993],[-66.00206458199995,-79.64617278399993],[-66.00975501199984,-79.6454403629999],[-66.25649980399996,-79.67327239399995],[-66.65623938699994,-79.66041432099993],[-66.67870032499985,-79.66285572699996],[-66.70075436099995,-79.66806405999996],[-66.64586341099994,-79.69019947699994],[-66.58409583199995,-79.70183684699995],[-66.27179928299991,-79.72144947699991],[-66.11457271999988,-79.76685963299991],[-66.01659094999988,-79.77483489399995],[-65.69127356699997,-79.75188567499995],[-65.65103105399987,-79.75896575299991],[-65.60094153599997,-79.77654387799996],[-65.57111568899995,-79.782810154],[-65.55406653599991,-79.77743905999995],[-65.55858313699989,-79.78289153399999],[-65.57945716099994,-79.79461028399989],[-65.56045488199993,-79.79876067499993],[-65.5515030589999,-79.802666925],[-65.54478919199997,-79.8083635399999],[-65.56578528599991,-79.812676691],[-65.86851966099994,-79.83098723799995],[-65.89549719999991,-79.83912525799997],[-65.90127519399996,-79.83953215899989],[-65.87498938699993,-79.84921640399993],[-65.53038489499988,-79.88274504999998],[-65.5169978509999,-79.88640715899993],[-65.50584876199989,-79.89332447699994],[-65.49974524599989,-79.9042294249999],[-65.50121008999994,-79.91399504999995],[-65.50389563699991,-79.92343515399988],[-65.50161699099993,-79.93352629999993],[-65.49229895699992,-79.94060637799998],[-65.47785396999987,-79.94597747199995],[-65.45010331899996,-79.95240650799987],[-65.46336829299992,-79.95273202899998],[-65.51158606699994,-79.96453215899996],[-65.72740637899989,-79.99041106599996],[-65.74168860599988,-79.99553801899998],[-65.75377356699991,-80.00212981599995],[-65.77676347599987,-80.01848723799988],[-65.79474850199992,-80.02743905999998],[-66.22272701699995,-80.08635833099996],[-66.31045488199996,-80.08074309699995],[-66.39537512899992,-80.05982838299991],[-66.3858943349999,-80.05201588299991],[-66.38206946499989,-80.05006275799985],[-66.38585364499991,-80.04216887799998],[-66.39513098899997,-80.03728606599991],[-66.40615800699993,-80.03362395599996],[-66.41527258999992,-80.02947356599991],[-66.35440019399991,-80.0162085919999],[-66.3358455069999,-80.01628997199987],[-66.34203040299985,-80.00066497199997],[-66.35777747299991,-79.98658619599985],[-66.37669837099995,-79.97551848799992],[-66.39244544199988,-79.96851978999993],[-66.41930091099988,-79.96038176899992],[-66.72203528599991,-79.936618748],[-66.76943925699992,-79.91961028399984],[-66.97301184799994,-79.92164478999989],[-67.00894120999993,-79.91326262799993],[-67.02574622299994,-79.89837004999995],[-67.00072180899991,-79.87623463299988],[-66.84626217399996,-79.82203541499993],[-66.83763587099986,-79.81536223799998],[-66.81920325399992,-79.7966447899999],[-66.81183834499983,-79.7919247379999],[-66.87157141799992,-79.79810963299997],[-66.93333899599992,-79.79257577899995],[-67.31187903549986,-79.71542734149995],[-67.69041907499991,-79.63827890399995],[-67.76012122299997,-79.59368254999988],[-67.77647864499988,-79.58847421699997],[-67.80577551999991,-79.58660247199992],[-67.83210201699993,-79.5793596329999],[-67.83983313699994,-79.55877044099995],[-67.82803300699995,-79.545993748],[-67.80540930899991,-79.53850676899995],[-67.7073461579999,-79.52564869599983],[-67.68008378799989,-79.52743906],[-67.65392005099994,-79.53411223799996],[-67.65729732999998,-79.53679778399993]]],[[[-32.19131425699993,-79.62037525799991],[-32.20555579299986,-79.62704843499995],[-32.208648240999935,-79.64275481599992],[-32.19880123599992,-79.65715911299998],[-32.18101966099994,-79.66253020599986],[-32.143299933999856,-79.66106536299998],[-32.168690558999884,-79.66912200299993],[-32.49665279899989,-79.67327239399995],[-32.60122636599988,-79.66106536299998],[-32.529652472999935,-79.654473566],[-32.48546301999997,-79.64511484199997],[-32.494496222999885,-79.64177825299986],[-32.521148240999906,-79.64039478999996],[-32.55589758999989,-79.62769947699991],[-32.56460527299995,-79.62688567499998],[-32.53990637899997,-79.62322356599984],[-32.4896541009999,-79.62542083099993],[-32.464751756999874,-79.62363046699994],[-32.45030676999991,-79.61956145599999],[-32.447255011999914,-79.61492278399996],[-32.44823157499988,-79.60719166499986],[-32.44546464799993,-79.59441497199991],[-32.44172115799989,-79.59002044099992],[-32.43053137899989,-79.58212655999995],[-32.4278865229999,-79.57805754999998],[-32.43024654899994,-79.5676408829999],[-32.437611456999946,-79.56170012799988],[-32.44684811099992,-79.55706145599996],[-32.45474199099988,-79.55071379999993],[-32.4244685539999,-79.54794687299987],[-32.36070716099994,-79.53150807099996],[-32.294178839999944,-79.52190520599999],[-32.22227942599988,-79.52019622199998],[-31.933338995999943,-79.56308359199987],[-31.913482225999932,-79.572849217],[-31.924549933999884,-79.59978606599996],[-31.96442623599995,-79.61093515399998],[-32.19131425699993,-79.62037525799991]]],[[[-67.04820716099994,-79.26482512799998],[-67.06908118399991,-79.28264739399995],[-67.09732011599996,-79.294122003],[-67.19823157499991,-79.31861744599993],[-67.21275794199994,-79.31926848799998],[-67.2232966789999,-79.31764088299987],[-67.25206458199995,-79.30828215899993],[-67.27147376199986,-79.30820077899995],[-67.33446204299989,-79.32488372199997],[-67.51105709499993,-79.39723072699994],[-67.4990128249999,-79.40545012799994],[-67.48232988199996,-79.4099260399999],[-67.3395076159999,-79.42197031],[-67.3128149079999,-79.42742278399996],[-67.28941809799991,-79.43824635199995],[-67.29320227799994,-79.44166432099996],[-67.30650794199994,-79.44980234199996],[-67.29259192599997,-79.4548479149999],[-67.24217688699994,-79.45582447699998],[-67.2578832669999,-79.46135833099999],[-67.33128821499992,-79.47405364399995],[-67.37734941299996,-79.49041106599998],[-67.42320716099994,-79.50090911299995],[-67.46788489499991,-79.50603606599995],[-67.93028723849994,-79.4884172504999],[-68.39268958199989,-79.47079843499999],[-68.45449785099989,-79.4475236959999],[-68.55028235599991,-79.44296640399995],[-68.57213294199997,-79.43661874799993],[-68.56224524599995,-79.425469659],[-68.53669186099995,-79.41472747199998],[-68.50401770699992,-79.40536874799996],[-68.00892086499991,-79.36516692499995],[-67.51382402299987,-79.32496510199996],[-67.46934973899997,-79.30803801899998],[-67.50357011599993,-79.301853123],[-67.67601477799994,-79.30339934699995],[-67.69664466099997,-79.30046965899993],[-67.70555579299992,-79.29705169099992],[-67.71007239499997,-79.292413019],[-67.70958411399997,-79.28655364399995],[-67.70348059799989,-79.27996184699998],[-67.71068274599992,-79.28191497199992],[-67.79979407499991,-79.28997161299995],[-67.85334225199992,-79.28093840899996],[-68.26915442599997,-79.32773202900002],[-68.43297278599997,-79.32773202900002],[-68.44701087099992,-79.32382577899993],[-68.4159236319999,-79.312676691],[-68.23306230399993,-79.28590260199991],[-68.23302161399994,-79.28590260199991],[-68.13829505099993,-79.26881275799987],[-68.12238521999984,-79.26140715899996],[-68.09361731699991,-79.2421200499999],[-68.07754472599993,-79.23503997199988],[-68.01768958199996,-79.2258440079999],[-67.61310787699989,-79.21152109200001],[-67.33608964749996,-79.2364234355],[-67.0590714179999,-79.26132577899999],[-67.04820716099994,-79.26482512799998]]],[[[-67.68814042899993,-79.12517669099991],[-67.71222896999987,-79.13681406],[-67.70225989499997,-79.13437265399998],[-67.60252844999985,-79.13665129999985],[-67.89293372299994,-79.15996672949998],[-68.18333899599995,-79.18328215899996],[-68.22594153599988,-79.16814544099995],[-68.03473873599991,-79.13396575299996],[-67.72032630099989,-79.11891041499986],[-67.68814042899993,-79.12517669099991]]],[[[-34.02086341099994,-79.26848723799985],[-33.91649329299989,-79.31259531000002],[-33.98753821499986,-79.34823984199997],[-34.070871548999975,-79.361504816],[-34.513457811999956,-79.35093895216653],[-34.95604407499991,-79.34037308833318],[-35.39863033799988,-79.3298072244999],[-35.84121660099996,-79.31924136066661],[-36.28380286399994,-79.30867549683325],[-36.72638912699992,-79.29810963299995],[-36.84479732999992,-79.25986093499994],[-36.93846594999985,-79.18124765400002],[-36.88316809799994,-79.19264088299988],[-36.72325598899994,-79.26531340899996],[-36.61107337099992,-79.27060312299994],[-36.59007727799988,-79.275567316],[-36.60407467399992,-79.25937265399995],[-36.62205969999988,-79.24382903399994],[-36.64146887899997,-79.23113372199997],[-36.6595759759999,-79.22307708099986],[-36.251861131999924,-79.19585540149998],[-35.844146287999905,-79.16863372199985],[-35.78783118399991,-79.15349700299986],[-35.68407141799994,-79.10784270599991],[-35.62865149599986,-79.09392669099994],[-35.503407355999855,-79.09010182099982],[-35.00922604099992,-79.1495636266665],[-34.51504472599987,-79.20902543233318],[-34.02086341099994,-79.26848723799985]]],[[[-75.49128170499989,-78.86305103999996],[-75.51235917899993,-78.8667945289999],[-75.55174719999991,-78.86467864399998],[-75.60301673099985,-78.854668878],[-75.62865149599992,-78.84547291499993],[-75.64989173099991,-78.83318450299988],[-75.66055253799993,-78.80974700299998],[-75.6433813139999,-78.787692967],[-75.61392167899993,-78.76946379999993],[-75.58836829299995,-78.75790781],[-75.50584876199994,-78.73512135199996],[-75.44692949099996,-78.73007577900003],[-75.39366614499987,-78.74098072699991],[-75.39557857999993,-78.74195728999999],[-75.39635169199997,-78.74285247199998],[-75.39614824099989,-78.74374765399996],[-75.39488684799991,-78.74456145599999],[-75.44343014199987,-78.76140715899999],[-75.46507727799987,-78.77206796700001],[-75.47378495999996,-78.78508879999991],[-75.49705969999988,-78.79013437299994],[-75.51439368399986,-78.79705169099985],[-75.5249731109999,-78.80592213299998],[-75.52794348899991,-78.8171526019999],[-75.52000891799986,-78.82447682099999],[-75.48753821499989,-78.84002044099998],[-75.48119055899994,-78.85230885199994],[-75.49128170499989,-78.86305103999996]]],[[[-160.29487057199992,-79.26580169099994],[-160.1140844389999,-79.29290129999998],[-159.99335689999992,-79.32732512799993],[-159.84215247299989,-79.3485653629999],[-159.5663956369999,-79.43254973799986],[-159.56025143099993,-79.43572356599994],[-159.55573482999986,-79.44003671699994],[-159.54893958199986,-79.44988372199995],[-159.54474850199995,-79.45435963299992],[-159.53917395699992,-79.45769622199995],[-159.52647864499988,-79.46233489399988],[-159.5211075509999,-79.46559010199984],[-159.5076798169999,-79.48219166499989],[-159.5020645819999,-79.48650481599996],[-159.49413001199994,-79.48886484199994],[-159.46605383999994,-79.49089934699995],[-159.33495032499988,-79.52825286299992],[-159.32164466099988,-79.53679778399993],[-159.32380123599995,-79.54713307099986],[-159.33478756399992,-79.55169036299999],[-159.34959876199989,-79.55266692499997],[-159.3771866529999,-79.55055103999996],[-159.25316321499992,-79.58163827899988],[-159.2351781889999,-79.58904387799996],[-159.2150365879999,-79.6018205709999],[-159.20478268099993,-79.61785247199998],[-159.2165014309999,-79.63445403399994],[-159.20445716099988,-79.64421965899987],[-159.18915768099993,-79.652764581],[-158.9748429029999,-79.72234465899997],[-158.9584447909999,-79.73992278399993],[-158.96202551999988,-79.7457007789999],[-158.9766739569999,-79.75514088299991],[-158.97846432199987,-79.76197682099993],[-158.97431393099993,-79.76539478999992],[-158.96662350199992,-79.767673435],[-158.95307369699995,-79.76970794099985],[-158.99042721299992,-79.79021575299998],[-159.00328528599994,-79.79509856599995],[-159.0280655589999,-79.79949309699995],[-159.0359594389999,-79.802666925],[-159.05072994699995,-79.81292083099994],[-159.05797278599988,-79.81633879999995],[-159.06981360599994,-79.81878020599999],[-159.48058020749994,-79.82773202899999],[-159.8913468089999,-79.83668385199994],[-160.3021134104999,-79.84563567499997],[-160.7128800119999,-79.8545874979999],[-161.17431935666656,-79.7937693556666],[-161.6357587013333,-79.73295121333331],[-162.09719804599993,-79.67213307100002],[-162.55863739066658,-79.61131492866663],[-163.02007673533322,-79.55049678633333],[-163.48151607999986,-79.48967864399995],[-163.5708715489999,-79.45468515399995],[-163.93663489499994,-79.41171640399998],[-164.16095943899992,-79.33342864399991],[-164.30089270699995,-79.30193450299998],[-164.3265274729999,-79.28736744599996],[-164.3184301419999,-79.28801848799992],[-164.2764379549999,-79.28101978999993],[-164.22264563699994,-79.28573984199994],[-164.23395748599992,-79.27361419099994],[-164.24726314999992,-79.26279062299994],[-164.29784094999985,-79.23007577900002],[-164.3053686189999,-79.22014739399992],[-164.30077063699989,-79.20956796699997],[-164.28880774599995,-79.20256926899998],[-164.28062903599994,-79.19939544099991],[-164.27647864499988,-79.19378020599993],[-164.2768448559999,-79.17888762799997],[-164.28831946499994,-79.14267343499995],[-164.2892960279999,-79.13567473799988],[-164.2858780589999,-79.13225676899995],[-164.27513587099992,-79.12615325299988],[-164.27159583199992,-79.12078215900002],[-164.27086341099988,-79.11541106599995],[-164.2717179029999,-79.1101213519999],[-164.27546139199993,-79.09954192499991],[-164.23615475199992,-79.09937916499996],[-164.21532141799995,-79.09514739399994],[-164.20262610599988,-79.084079685],[-164.20470130099991,-79.07105885199984],[-164.21690833199986,-79.05868905999998],[-164.2327774729999,-79.04876067499998],[-164.24567623599992,-79.04322682099996],[-164.23851477799988,-79.03972747199988],[-164.21479244699987,-79.03142669099998],[-164.20148678299995,-79.02271900799991],[-164.1778051419999,-79.00351327899995],[-164.16315670499992,-78.99627044099994],[-164.14806067599991,-78.99212004999997],[-163.99242102799994,-78.96803150799997],[-163.98412024599995,-78.96542734199997],[-163.97728430899994,-78.96152109199997],[-163.96479244699992,-78.95183684699992],[-163.95787512899992,-78.94833749799993],[-163.94037838399987,-78.94353606599985],[-163.79405676999994,-78.93401458099994],[-163.7786759109999,-78.93035247199998],[-163.7752172519999,-78.92107512799993],[-163.8336075509999,-78.90691497200001],[-163.81830807199992,-78.89853280999995],[-163.77167721299992,-78.88738372199992],[-163.7366837229999,-78.87200286299998],[-163.72447669199994,-78.86858489399998],[-163.6910294259999,-78.86467864399998],[-163.6797989569999,-78.8620744769999],[-163.63849850199995,-78.84482187299996],[-163.4839574859999,-78.81121184699995],[-163.47069251199989,-78.80250416499997],[-163.3002823559999,-78.77337004999993],[-163.26500403599988,-78.75725676899995],[-163.27277584499987,-78.75302499799992],[-163.31098385299993,-78.72096119599995],[-163.24299068899987,-78.70631275799994],[-162.7981054349999,-78.72946542749992],[-162.35322018099987,-78.75261809699992],[-162.3418676419999,-78.75497812299997],[-162.33385169199988,-78.75994231599992],[-162.3216039699999,-78.77337004999993],[-162.3142797519999,-78.7790666649999],[-162.2964981759999,-78.78386809699998],[-162.1441137359999,-78.792413019],[-161.76301022049992,-78.87582773249996],[-161.3819067049999,-78.9592424459999],[-161.35614986899992,-78.9743791649999],[-161.3532608709999,-78.97771575299993],[-161.36668860599988,-78.98211028399992],[-161.3725072909999,-78.98577239399995],[-161.37336178299995,-78.99114348799992],[-161.3640844389999,-78.99684010199991],[-160.9430028959999,-79.09177011499985],[-160.52192135299987,-79.18670012799996],[-160.29487057199992,-79.26580169099994]]],[[[-66.83360755099987,-78.43661874799994],[-66.79405676999994,-78.44101327899993],[-66.77855383999994,-78.43962981599995],[-66.76349850199992,-78.43645598799998],[-66.74885006399992,-78.43572356599994],[-66.73436438699986,-78.44182708099986],[-66.76866614499991,-78.45029062299997],[-66.87507076699988,-78.45875416499993],[-67.05675208199995,-78.49529387799997],[-67.05215410099993,-78.49863046699998],[-67.02269446499994,-78.51433684699994],[-67.0561417309999,-78.52792734200001],[-67.15941321499989,-78.55348072699991],[-67.26455644399996,-78.60515715899986],[-67.30199133999992,-78.61834075299998],[-67.34203040299994,-78.62493254999997],[-67.35472571499989,-78.62900156000002],[-67.36803137899992,-78.63689544099991],[-67.38817298099985,-78.65593840899999],[-67.39952551999994,-78.66423919099988],[-67.78625444249994,-78.77249521299993],[-68.17298336499994,-78.88075123499995],[-68.55971228749993,-78.989007257],[-68.94644120999993,-79.09726327899996],[-68.96312415299988,-79.10849374799986],[-68.96442623599998,-79.11321379999995],[-68.95938066299993,-79.121677342],[-68.9596248039999,-79.125583592],[-68.97606360599988,-79.13811614399991],[-68.99860592399995,-79.14666106599992],[-69.29600989499994,-79.21770598799998],[-69.3077693349999,-79.22454192499991],[-69.31493079299986,-79.23154062299997],[-69.32433020699997,-79.24586353999996],[-69.33047441299996,-79.25310637799998],[-69.36009680899991,-79.27117278399992],[-69.46446692599994,-79.29802825299998],[-69.59821529899988,-79.37420012799997],[-69.6037491529999,-79.37932708099997],[-69.61310787699995,-79.391778253],[-69.61913001199984,-79.39706796699997],[-69.62975012899992,-79.40227629999988],[-69.66478430899988,-79.41179778399996],[-69.64745032499991,-79.41594817499991],[-69.60627193899992,-79.41765715899992],[-69.52424068899991,-79.41179778399996],[-69.50332597599994,-79.4151343729999],[-69.78050696499992,-79.44247812299997],[-69.82201087099992,-79.45842864399998],[-69.8008520169999,-79.46884530999988],[-69.66795813699986,-79.48691171699998],[-69.64683997299994,-79.49334075299998],[-69.58731035099993,-79.52019622199998],[-69.56305904899995,-79.52605559699991],[-69.49156653599988,-79.53264739399991],[-69.69188391799992,-79.54119231599991],[-69.70409094999991,-79.54509856599992],[-69.71593176999994,-79.55103932099995],[-69.72679602799994,-79.55852630000001],[-69.73615475199998,-79.56715260199992],[-69.64655514199993,-79.60377369599993],[-69.99417070199988,-79.65032317499997],[-70.3417862619999,-79.6968726539999],[-70.70924502933326,-79.68222421666664],[-71.07670379666658,-79.6675757793333],[-71.4441625639999,-79.65292734199997],[-71.55890865799995,-79.62330494599983],[-71.67039954299995,-79.58114999799997],[-71.78107662699992,-79.524021092],[-71.80516516799986,-79.50042083099994],[-71.81330318899998,-79.4885393209999],[-71.81566321499992,-79.47918059699988],[-71.81480872299991,-79.45330169099995],[-71.80337480399987,-79.42782968499995],[-71.78624426999994,-79.40422942499993],[-71.76838131399995,-79.38502369599996],[-71.75291907499985,-79.32512786299992],[-71.68846594999988,-79.260430597],[-71.59959876199994,-79.199965102],[-71.39541581899988,-79.10173919099992],[-70.99408932199987,-78.99382903449995],[-70.59276282499994,-78.88591887799997],[-70.41124426999993,-78.88258228999995],[-70.36611894399988,-78.87297942499995],[-70.27594967399995,-78.84059010199996],[-69.83336341099988,-78.79973723799992],[-69.6966853509999,-78.75286223799996],[-69.60850989499991,-78.745700779],[-69.5775447259999,-78.73943450299997],[-69.47321529899992,-78.70273202899988],[-69.45189368399986,-78.69150155999996],[-69.43724524599995,-78.68710702899998],[-69.01046708849987,-78.62041594824994],[-68.5836889309999,-78.5537248675],[-68.15691077349989,-78.48703378674993],[-67.7301326159999,-78.42034270600001],[-67.62637285099993,-78.38347747199995],[-67.5776261059999,-78.37184010199994],[-67.28526770749991,-78.33928801849993],[-66.99290930899994,-78.30673593499999],[-66.73086503799988,-78.32146575299998],[-66.66392981699997,-78.33668385199996],[-66.60553951699998,-78.36370208099993],[-66.62905839799993,-78.37957122199995],[-66.65929114499994,-78.38909270599986],[-66.83568274599992,-78.41415780999995],[-66.87254798099988,-78.42799244599995],[-66.83360755099987,-78.43661874799994]]],[[[167.57911217500012,-78.18726978999996],[167.49683678500006,-78.22698333099994],[167.40552819100017,-78.24920012799993],[167.29127037900005,-78.25269947699991],[166.94727623800023,-78.22226327899995],[166.90316816500015,-78.22747161299995],[166.72974694100017,-78.27703215899989],[166.31511478000002,-78.31031666499989],[166.19418379000004,-78.29924895599994],[166.1411238940001,-78.28720468500002],[166.09782962300014,-78.2678361959999],[166.0348413420002,-78.19654713299991],[165.98609459700018,-78.10955169099984],[166.04542076900023,-78.09002044099995],[166.09343509200002,-78.08318450299986],[166.13233483200023,-78.09050872199995],[166.16431725400003,-78.11288827899988],[166.31031334700006,-78.11239999799997],[166.65267988400004,-78.16139088299994],[166.77361087300002,-78.20142994599998],[166.79566491000006,-78.21160247199992],[167.06788170700023,-78.15496184699992],[167.348399285,-78.05877044099998],[167.41114342500006,-78.011163019],[167.45606530000006,-77.99627044099995],[167.51172936300011,-77.99244557099993],[167.56527754000004,-78.00269947699996],[167.60328209699998,-78.0302059879999],[167.60987389400012,-78.05632903399994],[167.6241968110002,-78.08196379999993],[167.66374759200002,-78.12737395600001],[167.66187584700006,-78.12867603999983],[167.66146894600016,-78.12981536299995],[167.66277103000007,-78.13054778399989],[167.66570071700008,-78.13095468499998],[167.57911217500012,-78.18726978999996]]],[[[-45.349964972999906,-78.69329192499995],[-45.22459876199994,-78.73560963299987],[-45.37047278599988,-78.78606536299998],[-45.2981664699999,-78.81072356599988],[-45.21898352799994,-78.81894296699997],[-44.72565670499989,-78.81281232466662],[-44.23232988199987,-78.80668168233328],[-43.739003058999934,-78.80055103999993],[-43.71231035099993,-78.80877044099992],[-43.553456183999884,-78.8805477839999],[-43.5006404289999,-78.91383228999992],[-43.459868943999936,-78.95549895599996],[-43.44432532499994,-78.98853932099983],[-43.43081620999996,-79.03785572699991],[-43.43004309799994,-79.08489348799992],[-43.45254472599992,-79.11077239399994],[-43.4055883449999,-79.10035572699994],[-43.38158118399985,-79.09832122199991],[-43.35777747299997,-79.10076262799996],[-43.34357662699995,-79.10767994599986],[-43.305531378999945,-79.136000258],[-43.1998591789999,-79.1584611959999],[-43.148833787999905,-79.17945728999993],[-43.13353430899985,-79.18189869599996],[-43.18834387899997,-79.189060154],[-43.348459438999924,-79.23919036299992],[-43.30980383999986,-79.26751067499995],[-43.15094967399992,-79.31511809699985],[-43.10667883999989,-79.33424244599983],[-43.06965084499993,-79.35572682099993],[-43.0702205069999,-79.36288827899998],[-43.065744594999956,-79.37151458099999],[-43.059396938999924,-79.38079192499985],[-43.05459550699993,-79.38958098799992],[-43.04149329299986,-79.40056731599988],[-42.98965410099996,-79.42017994599993],[-42.97154700399994,-79.42994557099996],[-42.96157792899996,-79.44085051899995],[-42.953521287999905,-79.45256926899994],[-42.94713294199991,-79.46542734199986],[-42.94237219999991,-79.4790992169999],[-42.93907630099994,-79.492933852],[-42.936431443999965,-79.52206796699994],[-42.9622289699999,-79.71607838299995],[-42.98151607999995,-79.78655364399984],[-43.01573645699992,-79.849786066],[-43.07282467399992,-79.90894947699992],[-43.13744055899985,-79.951755467],[-43.20714270699992,-79.978122654],[-43.281239386999886,-79.98796965899993],[-43.59618079299988,-79.963474217],[-43.856678839999915,-79.99602629999995],[-43.853138800999915,-79.996270441],[-43.851958787999905,-79.996677342],[-43.85309811099992,-79.99700286299985],[-43.85651607999995,-79.99749114399992],[-43.477121548999946,-80.09465911299985],[-43.43797766799992,-80.10947031],[-43.42341061099997,-80.13152434699991],[-43.45238196499989,-80.16448333099987],[-43.53156490799994,-80.19996510199996],[-44.00753896646142,-80.23732487761532],[-44.48351302492301,-80.2746846532306],[-44.959487083384516,-80.31204442884606],[-45.435461141846076,-80.34940420446151],[-45.91143520030758,-80.38676398007688],[-46.38740925876917,-80.42412375569214],[-46.86338331723064,-80.46148353130769],[-47.33935737569223,-80.49884330692305],[-47.81533143415382,-80.53620308253832],[-48.29130549261532,-80.57356285815379],[-48.7672795510768,-80.61092263376923],[-49.243253609538385,-80.6482824093846],[-49.71922766799989,-80.68564218499998],[-49.742665167999945,-80.69508228999999],[-49.756255662999905,-80.7069638],[-49.75910396999993,-80.72185637799998],[-49.75047766799994,-80.740329685],[-49.74156653599991,-80.74236419099995],[-49.69953365799992,-80.76197682099989],[-49.69595292899996,-80.76799895600001],[-49.79800370999993,-80.790948175],[-50.28284890677773,-80.80052391288885],[-50.767694103555414,-80.81009965077777],[-51.2525393003333,-80.81967538866662],[-51.73738449711097,-80.82925112655556],[-52.22222969388878,-80.8388268644444],[-52.70707489066655,-80.84840260233334],[-53.19192008744434,-80.85797834022209],[-53.676765284222114,-80.86755407811103],[-54.16161048099991,-80.87712981599995],[-54.25841223899991,-80.85507577899996],[-54.29002844999988,-80.83855559699998],[-54.34911048099991,-80.78248463299997],[-54.36318925699993,-80.77206796699997],[-54.396555141999926,-80.7525367169999],[-54.407826300999915,-80.7400041649999],[-54.412953253999916,-80.717461847],[-54.41100012899989,-80.68938567499991],[-54.40465247299994,-80.66139088299998],[-54.39639238199995,-80.63941822699995],[-54.38329016799989,-80.6233049459999],[-54.36896725199991,-80.61012135199995],[-54.363636847999935,-80.59612395599999],[-54.3775935539999,-80.57740650799992],[-54.273101365999906,-80.53606536299998],[-54.217518683999856,-80.52174244599989],[-54.16380774599989,-80.53004322699998],[-54.14614824099988,-80.545017185],[-54.13442949099988,-80.56121184699997],[-54.12067623599995,-80.56894296699997],[-54.09650631399995,-80.55836353999993],[-54.081654425999915,-80.54322682099993],[-54.06383216099994,-80.50847747199988],[-54.05101477799988,-80.4919572899999],[-54.01935787699992,-80.47063567499993],[-53.78941809799994,-80.3606096329999],[-53.589466925999915,-80.23211028399993],[-53.423654751999976,-80.19304778399996],[-53.43016516799989,-80.18230559699994],[-53.43691972599989,-80.17359791499996],[-53.44546464799993,-80.16668059699988],[-53.45763098899991,-80.16090260199991],[-53.407053188999924,-80.10767994599993],[-53.342640753999916,-80.10719166499993],[-53.21320553299998,-80.161390883],[-53.15147864499997,-80.17595794099992],[-53.088002081999946,-80.18181731599988],[-52.89024817599991,-80.17701588299997],[-52.69432532499988,-80.14373137799998],[-52.60667883999994,-80.10759856599995],[-52.409331834999904,-80.05510833099997],[-52.351551886999886,-80.05299244599988],[-52.30235755099997,-80.06121184699997],[-52.27989661399996,-80.07830169099992],[-52.28758704299989,-80.10165781],[-52.32900956899991,-80.12835051899984],[-52.476104295999875,-80.19272226399994],[-52.52281653599994,-80.1989885399999],[-52.51878821499989,-80.20012786299993],[-52.396351691999904,-80.18499114399994],[-51.9397069979999,-80.05559661249993],[-51.48306230399987,-79.92620208099993],[-51.33897864499991,-79.86500416499999],[-51.06257076699998,-79.79941171699997],[-50.91616777299987,-79.73300546699994],[-50.541371222999906,-79.63787200299996],[-50.40306555899991,-79.57097747199992],[-50.35334225199991,-79.55437590899997],[-50.28213456899991,-79.54485442499988],[-50.263661261999886,-79.53573984199998],[-50.25365149599989,-79.52263762799993],[-50.24038652299987,-79.49472421699997],[-50.22630774599992,-79.48040129999997],[-50.24543209499989,-79.46591562299994],[-50.253488735999916,-79.4626604149999],[-50.25177975199992,-79.45777760199994],[-50.25104732999989,-79.45322030999998],[-50.249623175999915,-79.44841887799998],[-50.24620520699992,-79.44329192499998],[-50.28075110599991,-79.42669036299992],[-50.324086066999875,-79.41521575299988],[-50.35016842399994,-79.39853281000003],[-50.33307857999991,-79.36614348799984],[-50.38923092399992,-79.33082447699991],[-50.46007239499991,-79.31210702899995],[-50.71312415299985,-79.28167083099999],[-50.73973548099991,-79.28443775799994],[-50.65103105399992,-79.24325937299997],[-50.54430091099994,-79.16171640399995],[-50.49791419199996,-79.13836028399986],[-50.484364386999914,-79.12932708099994],[-50.480458136999914,-79.11598072699994],[-50.49242102799994,-79.09563567499994],[-50.48037675699993,-79.07968515399992],[-50.45547441299988,-79.02214934699985],[-50.45299231699997,-79.00383879999998],[-50.474680141999926,-78.98357512799997],[-50.54067949099996,-78.97486744599988],[-50.56135006399998,-78.95956796699993],[-50.51866614499997,-78.94573333099993],[-50.37905839799987,-78.92986419099991],[-50.33429928299992,-78.91383228999992],[-50.29088294199988,-78.89153411299988],[-50.25035559799994,-78.86402760199994],[-50.21442623599995,-78.83294036299993],[-50.32469641799986,-78.83831145599999],[-50.3802791009999,-78.83171965899992],[-50.43053137899994,-78.81259531000003],[-50.26732337099992,-78.72323984200001],[-50.28172766799989,-78.72128671699997],[-50.30947831899988,-78.72185637799994],[-50.323475714999944,-78.71998463299997],[-50.36351477799988,-78.69622161299986],[-50.36742102799988,-78.69052499799999],[-50.341949022999955,-78.68303801899992],[-50.288685675999886,-78.67937590899996],[-50.26390540299991,-78.67131926899994],[-50.24974524599989,-78.65748463299994],[-50.232818162999905,-78.62070077899995],[-50.22109941299993,-78.60442473799992],[-50.20409094999988,-78.59303150799995],[-50.0565486319999,-78.53411223799998],[-50.04210364499994,-78.52337004999988],[-50.01707923099994,-78.49871184699998],[-50.003081834999875,-78.48796965899996],[-49.97105872299988,-78.47332122199995],[-49.89488684799991,-78.45322031],[-49.58647620349993,-78.327040297],[-49.278065558999884,-78.20086028399992],[-49.250721808999884,-78.17945728999996],[-49.247670050999915,-78.17205169099998],[-49.2460017569999,-78.15243906],[-49.234445766999954,-78.13982512799993],[-49.22081458199992,-78.13160572699994],[-49.11558997299997,-78.09465911299998],[-49.10301673099988,-78.07976653399993],[-49.1387426419999,-78.06975676899995],[-49.11099199099993,-78.05291106599995],[-49.07233639199998,-78.04216887799993],[-48.609883185749936,-77.97478606549988],[-48.147429979499975,-77.90740325299993],[-47.68497677324993,-77.84002044049996],[-47.22252356699997,-77.77263762799991],[-46.7930395173332,-77.78744882599997],[-46.36355546766663,-77.80226002399986],[-45.934071417999945,-77.81707122199992],[-45.89517167899996,-77.82854583099997],[-45.43496660066663,-77.89975351333332],[-44.974761522333296,-77.97096119566658],[-44.514556443999965,-78.04216887799993],[-44.1666967434999,-78.14523691199997],[-43.81883704299986,-78.24830494599993],[-43.7685440749999,-78.27418385199994],[-43.731068488999966,-78.31178150799994],[-43.71825110599994,-78.36744557099996],[-43.72508704299986,-78.39495208099997],[-43.74014238199987,-78.41448333099997],[-43.78258216099994,-78.44736093499995],[-43.799387173999946,-78.46461353999996],[-43.82774817599991,-78.50400155999995],[-43.89981035099993,-78.58424244599989],[-43.920277472999885,-78.596286717],[-43.96312415299988,-78.60328541499989],[-44.36066647066653,-78.62281666499996],[-44.75820878833321,-78.64234791499993],[-45.15575110599988,-78.66187916499983],[-45.30272376199985,-78.68035247199985],[-45.349964972999906,-78.69329192499995]]],[[[-49.25865637899994,-77.87249114399991],[-49.39122473899988,-77.88054778399993],[-49.41519120999993,-77.87802499800001],[-49.44505774599992,-77.864678644],[-49.450795050999886,-77.86305103999997],[-49.43089758999989,-77.85312265399998],[-49.33641516799986,-77.82976653399999],[-48.989003058999856,-77.784274998],[-48.846913214999944,-77.74423593499996],[-48.81419837099992,-77.73886484199993],[-48.781605597999935,-77.73919036299995],[-48.750355597999885,-77.74765390399999],[-48.77090410099993,-77.750176691],[-49.24547278599991,-77.86565520599997],[-49.25865637899994,-77.87249114399991]]],[[[-148.9699600899999,-77.47893645599987],[-149.0186661449999,-77.480075779],[-149.20771236899986,-77.45671965899993],[-149.17467200399992,-77.44833749799986],[-149.19286048099988,-77.44654713299997],[-149.20160885299987,-77.44410572699994],[-149.20885169199988,-77.43987395599993],[-149.0947159499999,-77.42310963299991],[-149.0558568999999,-77.42156340899996],[-148.8320206369999,-77.44833749799986],[-148.87804114499988,-77.46233489399992],[-148.9699600899999,-77.47893645599987]]],[[[-149.23619544199988,-77.3051083309999],[-149.2252091139999,-77.3155249979999],[-149.22496497299989,-77.3194312479999],[-149.22850501199994,-77.32724374799997],[-149.22797604099983,-77.33074309699987],[-149.2148331369999,-77.33953215899994],[-148.92988033799986,-77.37509531],[-148.9188533189999,-77.38486093499995],[-148.9188940089999,-77.38486093499995],[-148.93590247299986,-77.393324477],[-148.95893307199992,-77.39739348799995],[-149.3916723299999,-77.38225676899995],[-149.57994544199994,-77.33993905999995],[-149.66978919199994,-77.30437590899989],[-149.64008541599992,-77.29485442499998],[-149.6250707669999,-77.295586847],[-149.58153235599983,-77.30486419099996],[-149.5397843089999,-77.3042945289999],[-149.52802486899992,-77.30706145599996],[-149.54780025899996,-77.29802825299986],[-149.59715735599994,-77.28289153399986],[-149.4926244779999,-77.27337004999995],[-149.3364151679999,-77.28346119599983],[-149.25279700399994,-77.29843515399995],[-149.23619544199988,-77.3051083309999]]],[[[-150.48379472599993,-77.34319426899998],[-150.45136471299995,-77.3479143209999],[-150.3499649729999,-77.34547291499996],[-150.36164303299992,-77.3557268209999],[-150.3751114569999,-77.363864842],[-150.3897598949999,-77.36939869599993],[-150.40448971299992,-77.37232838299995],[-150.49848385299993,-77.375583592],[-150.8307321169999,-77.3482940953333],[-151.1629803809999,-77.32100459866663],[-151.49522864499988,-77.29371510199994],[-151.51227779899995,-77.2852515599999],[-151.51146399599992,-77.27076588299987],[-151.4990942049999,-77.26311614399992],[-151.47992916599992,-77.2580705709999],[-151.1308487619999,-77.217380467],[-150.9851781889999,-77.22234465899996],[-150.54511471299995,-77.31487395599986],[-150.49982662699995,-77.33806731599998],[-150.48379472599993,-77.34319426899998]]],[[[-153.08128821499992,-77.26197682099999],[-153.10875403599988,-77.26490650799991],[-153.41633053299986,-77.23162200300001],[-153.46760006399992,-77.21111419099995],[-153.4365942049999,-77.20281340899989],[-153.11628170499992,-77.206149998],[-153.0750626289999,-77.2165666649999],[-153.0549210279999,-77.22682057099992],[-153.0472305979999,-77.24000416499997],[-153.0481664699999,-77.24325937300001],[-153.05028235599988,-77.24651458099996],[-153.0536596339999,-77.24993254999988],[-153.05842037699992,-77.25335051899998],[-153.08128821499992,-77.26197682099999]]],[[[-147.34410559799994,-77.25595468499998],[-147.38337154899983,-77.25904713299997],[-147.46076412699995,-77.24976978999982],[-147.45645097599993,-77.24830494599986],[-147.45278886599988,-77.24635182099989],[-147.4463598299999,-77.24138762799994],[-147.47594153599994,-77.23544687299993],[-147.48477128799988,-77.23186614399995],[-147.48884029899995,-77.228204034],[-147.49453691299993,-77.22144947699996],[-147.4975479809999,-77.21542734199986],[-147.4934789699999,-77.21363697699996],[-147.5911352199999,-77.19312916499993],[-147.60163326699995,-77.18434010199987],[-147.5665177069999,-77.16562265399998],[-147.51524817599994,-77.16130950299998],[-147.24958248599992,-77.18857187299997],[-147.18773352799994,-77.21021900799997],[-147.20376542899993,-77.21591562299994],[-147.32725989499994,-77.23235442499985],[-147.3235570949999,-77.23650481599996],[-147.31895911399988,-77.24000416499997],[-147.3136287099999,-77.24293385199991],[-147.3076879549999,-77.24472421699997],[-147.34410559799994,-77.25595468499998]]],[[[167.11312910200016,-77.28191497199988],[167.06576582100004,-77.31633879999991],[167.06885826900012,-77.31585051899992],[167.07064863399998,-77.31601327899998],[167.07097415500013,-77.31658294099995],[167.06967207100004,-77.3176408829999],[167.13900800900015,-77.34189218499998],[167.56812584700006,-77.41326262799988],[167.89385013100016,-77.39279550549988],[168.21957441499998,-77.37232838299995],[168.68181399850008,-77.40203215899987],[169.14405358200023,-77.4317359349999],[169.27344811300011,-77.45452239399992],[169.30933678499997,-77.465427342],[169.33961022200018,-77.47966887799991],[169.35938561300011,-77.49822356599992],[169.36443118600008,-77.522067967],[169.31820722700016,-77.53720468499999],[169.05030358200023,-77.56991952900002],[168.91228274800017,-77.63030364399995],[168.87256920700005,-77.64039478999983],[168.40088951900023,-77.69622161299998],[168.08741295700005,-77.645603123],[167.7477319670002,-77.64478932099999],[167.408050977,-77.64397551899998],[167.3449813160001,-77.66692473799998],[167.28370201900006,-77.70671965899996],[167.25766035199996,-77.71591562299994],[167.06885826900012,-77.74537525799992],[166.89356530000018,-77.79371510199992],[166.77865644600016,-77.844821873],[166.67725670700023,-77.859958592],[166.664805535,-77.85784270599999],[166.61451256600003,-77.83635833099996],[166.65170332100004,-77.80901458099999],[166.7893172540001,-77.76995208099993],[166.86540774800008,-77.71868254999998],[166.8906356130002,-77.71249765399993],[166.51107832099996,-77.72177499799997],[166.45337975400005,-77.7100562479999],[166.51050866,-77.70419687299994],[166.6277775400001,-77.70671965899996],[166.68311608200005,-77.69646575299993],[166.81421959700006,-77.69158294099988],[166.88038170700008,-77.6763648419999],[166.89568118600008,-77.67571379999984],[166.875254754,-77.67034270599999],[166.38868248800011,-77.61337655999988],[166.3654077480002,-77.60702890400003],[166.34839928500006,-77.59856536299999],[166.31690514400012,-77.57773202899999],[166.29981530000003,-77.56951262799993],[166.2784936860002,-77.56585051899997],[166.23511803500006,-77.56731536299992],[166.21371503999998,-77.56365325299987],[166.17660566499998,-77.53679778399999],[166.16553795700023,-77.53484465899994],[166.21648196700008,-77.52092864399995],[166.3706160820001,-77.49822356599992],[166.401621941,-77.48544687299997],[166.47681725399997,-77.431247654],[166.65447024800017,-77.36256275799991],[166.67611738399998,-77.359958592],[166.60189863400015,-77.33652109199994],[166.57585696700016,-77.33212655999995],[166.54786217500003,-77.31340911299998],[166.40007571700008,-77.26653411299985],[166.45191491000017,-77.21233489399998],[166.52442467500012,-77.18303801899995],[166.679453972,-77.16334400799991],[166.82715905000023,-77.16090260199998],[166.97331790500013,-77.18222421699994],[167.029063347,-77.20378997199995],[167.08814537900005,-77.24065520599993],[167.11312910200016,-77.28191497199988]]],[[[-154.04816646999996,-77.13746510199991],[-154.1871231759999,-77.15439218499996],[-154.5124405589999,-77.13551197699987],[-154.54173743399994,-77.12688567499995],[-154.54987545499995,-77.12346770599986],[-154.55577551999988,-77.12004973799985],[-154.55976314999987,-77.11687590899996],[-154.56187903599988,-77.11353932099993],[-154.5529679029999,-77.10051848799993],[-154.52464758999992,-77.08961353999989],[-154.43354244699987,-77.07252369599992],[-154.2840063139999,-77.06414153399997],[-154.12824459499993,-77.07822031],[-154.05512447799995,-77.097263279],[-154.04942786399985,-77.10027434700001],[-154.04523678299992,-77.10466887799998],[-154.04023189999992,-77.11207447699998],[-154.0357559889999,-77.13005950299993],[-154.04816646999996,-77.13746510199991]]],[[[166.97730553500017,-76.96266041499996],[166.8722436860002,-76.97291432099988],[166.87232506600017,-76.96266041499996],[166.86646569100006,-76.94793059699995],[166.85328209700018,-76.93621184699998],[166.85466556100008,-76.92913176899992],[166.87403405000006,-76.92644622199985],[166.91504967500012,-76.93132903399992],[166.9565535820001,-76.93840911299988],[166.97730553500017,-76.95061614399995],[166.97730553500017,-76.96266041499996]]],[[[-148.4811905589999,-77.00115325299996],[-148.9399307929999,-77.02800872199994],[-149.2390030589999,-76.99635182099996],[-149.26264400899993,-76.98723723799988],[-149.2749731109999,-76.97014739399992],[-149.27183997299994,-76.96559010199998],[-149.27009029899995,-76.95696379999988],[-149.2676488919999,-76.950778904],[-149.28339596299995,-76.94101327899988],[-149.2957657539999,-76.93092213299991],[-149.30341549399992,-76.92115650799997],[-149.3047989569999,-76.91204192499987],[-149.2158910799999,-76.89763762799991],[-148.87472490149986,-76.92363860449994],[-148.53355872299989,-76.94963958099997],[-148.4457494779999,-76.97291432099988],[-148.43517005099994,-76.9737281229999],[-148.45380611899992,-76.99163176899994],[-148.4811905589999,-77.00115325299996]]],[[[-149.7732641269999,-76.89430103999987],[-149.75865637899986,-76.92538827899998],[-149.6946508449999,-76.93621184699998],[-149.44286048099994,-77.02499765399993],[-149.4455053379999,-77.029880467],[-149.4488012359999,-77.03427499799997],[-149.4568578769999,-77.04241301899991],[-149.4512426419999,-77.04989999799997],[-149.4430639309999,-77.05510833099994],[-149.4248754549999,-77.0622697899999],[-149.43464107999995,-77.070896092],[-149.4448136059999,-77.07822031],[-149.33149166599992,-77.08513762800001],[-149.2740372389999,-77.097263279],[-149.2243546209999,-77.11809661299998],[-149.24998938699989,-77.13201262799996],[-149.30805416599992,-77.13958098799992],[-149.72866777299987,-77.12948984199994],[-149.72874915299988,-77.12948984199994],[-149.83735104099995,-77.123142185],[-149.80512447799993,-77.11012135199994],[-149.79539954299986,-77.10442473799995],[-149.80964107999986,-77.10654062299986],[-149.87201900899993,-77.09840260199994],[-150.1467992824999,-77.09408945099993],[-150.42157955599993,-77.08977629999985],[-150.58263098899988,-77.03736744599996],[-150.7826635409999,-77.006931248],[-150.8011368479999,-76.99000416499993],[-150.79625403599994,-76.97869231599995],[-150.7825414699999,-76.97079843499998],[-150.64622962099995,-76.94247812299993],[-150.41901607999995,-76.92205169099994],[-150.4282934239999,-76.91179778399992],[-150.44395911399988,-76.90007903399994],[-150.46100826699993,-76.89137135199985],[-150.4748429029999,-76.89080169099998],[-150.45612545499995,-76.88486093499996],[-150.39476477799982,-76.87753671699987],[-150.3924047519999,-76.88152434699992],[-150.39293372299989,-76.90715911299989],[-149.96259518099995,-76.87070077899995],[-149.8400365879999,-76.87802499799994],[-149.7732641269999,-76.89430103999987]]],[[[-146.2410782539999,-76.88632577900002],[-146.23668372299994,-76.89324309699992],[-146.2290746739999,-76.89609140399988],[-146.2120255199999,-76.89763762799991],[-146.20250403599994,-76.901543878],[-146.19465084499993,-76.90642669099988],[-146.16478430899986,-76.93132903399992],[-146.15420488199993,-76.93792083099999],[-146.1429337229999,-76.942966404],[-146.11904863199987,-76.94963958099997],[-146.13768469999994,-76.95777760199988],[-146.15819251199989,-76.95867278399989],[-146.27245032499985,-76.94060637799996],[-146.2969864569999,-76.93254973799992],[-146.3328751289999,-76.91326262799998],[-146.32848059799989,-76.91179778399992],[-146.32428951699995,-76.90976327899989],[-146.3167211579999,-76.90496184700001],[-146.3223363919999,-76.90488046700003],[-146.3461807929999,-76.89478932099996],[-146.3687638009999,-76.8912085919999],[-146.3862198559999,-76.89088307099995],[-146.39565995999993,-76.89218515399988],[-146.40469316299988,-76.89495208099993],[-146.41331946499992,-76.89999765399996],[-146.4096573559999,-76.90829843500003],[-146.40713456899988,-76.91179778399992],[-146.40367591099988,-76.91480885199994],[-146.41380774599992,-76.92262135199984],[-146.41734778599994,-76.92449309699998],[-146.41551673099994,-76.92603932099993],[-146.41250566299993,-76.93027109199996],[-146.41112219999985,-76.931735935],[-146.4792374339999,-76.94988372199992],[-146.9648331369999,-77.00709400799997],[-147.0314835279999,-77.00530364399998],[-147.09479732999995,-76.98992278399986],[-147.05142167899987,-76.97926197699992],[-147.0405167309999,-76.97478606599995],[-147.00934811099992,-76.95663827899995],[-147.03254146999996,-76.92945728999995],[-147.04381262899994,-76.92148202899996],[-147.13019771999996,-76.88176848799998],[-147.1006567049999,-76.86101653399989],[-147.09007727799994,-76.85523853999983],[-147.12608801999988,-76.83945077899998],[-147.10399329299992,-76.82854583099999],[-147.07213294199988,-76.82390715899994],[-146.66093909399984,-76.85243092199997],[-146.24974524599992,-76.88095468499988],[-146.2410782539999,-76.88632577900002]]],[[[-149.0552262034999,-76.72539641699996],[-148.80064856699988,-76.73674895599994],[-148.7879532539999,-76.73447030999988],[-148.77912350199995,-76.73072682099992],[-148.76325436099992,-76.7209611959999],[-148.7546280589999,-76.7170549459999],[-148.74705969999988,-76.71599700299986],[-148.40937252499992,-76.73870208099999],[-148.3264867829999,-76.756768488],[-148.30890865799986,-76.76555754999988],[-148.3567602199999,-76.79412200299996],[-148.4137670559999,-76.80185312299997],[-148.5295304029999,-76.79656340899997],[-148.71625729099992,-76.80535247199995],[-148.73033606699994,-76.80917734199997],[-148.73993893099993,-76.81487395599994],[-148.75654049399986,-76.82976653399992],[-148.76585852799988,-76.83562590899996],[-148.77717037699986,-76.83904387799996],[-148.9271134109999,-76.84978606599998],[-149.1544897129999,-76.83619557099993],[-149.49071204299986,-76.76685963299995],[-149.40379798099988,-76.73186614399988],[-149.3523656889999,-76.71941497199995],[-149.30980383999992,-76.71404387799998],[-149.0552262034999,-76.72539641699996]]],[[[-150.23261471299986,-76.77752044099991],[-150.60179602799994,-76.79664478999989],[-150.81554114499988,-76.7697893209999],[-150.87547766799992,-76.74049244599996],[-150.8677465489999,-76.72942473799985],[-150.85118567599994,-76.71892669099996],[-150.82762610599988,-76.71038176899985],[-150.51681474499992,-76.69858163849992],[-150.20600338399993,-76.68678150799991],[-150.09178626199986,-76.70875416499983],[-150.09398352799985,-76.71428801899985],[-150.0972794259999,-76.71965911299999],[-150.1050919259999,-76.72926197699996],[-150.0989884109999,-76.73259856599991],[-150.07807369699992,-76.73845794099995],[-150.11302649599995,-76.75660572699994],[-150.15253658799992,-76.76702239399994],[-150.23257402299987,-76.77752044099991],[-150.23261471299986,-76.77752044099991]]],[[[-148.51813717399995,-76.69597747199988],[-148.57770748599995,-76.70549895599997],[-148.71743730399993,-76.70720794099998],[-148.71747799399992,-76.70720794099998],[-148.73741614499986,-76.70330169099998],[-148.77399654899995,-76.7001278629999],[-148.78986568899995,-76.70191822699991],[-148.94379635299993,-76.68523528399996],[-149.1356908839999,-76.63811614399997],[-149.14850826699995,-76.63697682099992],[-148.99693762899994,-76.60751718499995],[-148.81147213399996,-76.61191171700003],[-148.46788489499988,-76.67717864399991],[-148.4707738919999,-76.67742278399996],[-148.47203528599994,-76.67766692500001],[-148.47162838399993,-76.67815520599999],[-148.4694718089999,-76.67880624799994],[-148.51813717399995,-76.69597747199988]]],[[[-147.62169348899988,-76.62102629999993],[-147.55980383999992,-76.66285572699994],[-147.63634192599991,-76.66659921699997],[-147.72972571499992,-76.65447356599996],[-147.7297664049999,-76.65447356599996],[-147.99233964799993,-76.59905364399991],[-147.99087480399996,-76.59758879999984],[-147.98778235599988,-76.593438409],[-147.9860733709999,-76.59189218499996],[-147.9946996739999,-76.58066171699987],[-148.0007218089999,-76.57512786299995],[-148.00617428299992,-76.57366301899998],[-147.94684811099992,-76.55982838299997],[-147.88402258999992,-76.55868905999995],[-147.73159745999988,-76.58440520599999],[-147.62169348899988,-76.62102629999993]]],[[[-147.09805253799988,-76.530368748],[-147.10895748599987,-76.533298435],[-147.1192113919999,-76.53215911299998],[-147.0860082669999,-76.54802825300001],[-147.0660294259999,-76.55217864399995],[-147.0452367829999,-76.552341404],[-146.93960527299996,-76.54168059699998],[-146.9197891919999,-76.54583098799992],[-146.95750891799992,-76.56308359200001],[-146.97044837099992,-76.5670712219999],[-146.94823157499985,-76.56511809699995],[-146.8158259759999,-76.58074309699985],[-146.79841061099995,-76.58831145599999],[-146.8103328119999,-76.59596119599983],[-146.81041419199988,-76.59596119599983],[-146.81981360599988,-76.60222747199988],[-146.79710852799994,-76.60963307099996],[-146.77599036399994,-76.62118905999998],[-146.7592667309999,-76.63339609199987],[-146.74986731699988,-76.6384416649999],[-146.7403458319999,-76.63990650799995],[-146.7857966789999,-76.64885833099987],[-146.8010961579999,-76.65007903399999],[-147.0638321609999,-76.62810637799998],[-147.04987545499995,-76.63420989399988],[-146.93492591099994,-76.65545012799996],[-146.9518936839999,-76.65862395599993],[-147.0051977199999,-76.65992603999983],[-146.99575761599988,-76.66415781000003],[-146.96556555899994,-76.66936614399994],[-146.91966712099986,-76.68434010199996],[-146.83971106699988,-76.70110442499998],[-146.89329993399988,-76.71453215899989],[-146.95128333199995,-76.71697356599992],[-147.0646866529999,-76.70517343499995],[-147.2736710279999,-76.660902602],[-147.28441321499986,-76.65496184699997],[-147.3024796209999,-76.639255467],[-147.31261145699995,-76.63209400799987],[-147.32506262899992,-76.62664153399993],[-147.3654679029999,-76.61744557099986],[-147.34316972599996,-76.605075779],[-147.33039303299992,-76.60003020599989],[-147.31981360599985,-76.60027434699991],[-147.3434138659999,-76.58668385199996],[-147.3521215489999,-76.58318450299988],[-147.34162350199992,-76.58074309699985],[-147.31021074099988,-76.57984791499985],[-147.2696020169999,-76.57048919099992],[-147.2600805329999,-76.57244231599996],[-147.27940833199992,-76.55584075299991],[-147.27074133999992,-76.54753997199992],[-147.26134192599986,-76.541192316],[-147.31956946499992,-76.53191497199985],[-147.29800370999993,-76.51718515399995],[-147.27013098899988,-76.50896575299996],[-147.24063066299988,-76.50546640399988],[-147.16002356699994,-76.50465260199987],[-147.0932511059999,-76.51409270599996],[-147.0799047519999,-76.518649998],[-147.08796139199993,-76.52499765399995],[-147.09805253799988,-76.530368748]]],[[[-147.07140051999986,-76.07594166499996],[-146.9083145819999,-76.10702890399998],[-146.89464270699986,-76.11443450299996],[-146.8857315749999,-76.12395598799995],[-146.8777970039999,-76.1345354149999],[-146.8672989569999,-76.14519622199985],[-146.8577367829999,-76.15113697699996],[-146.7030330069999,-76.20468515399998],[-146.70107988199987,-76.21949635199992],[-146.6710505849999,-76.25847747199991],[-146.66128495999988,-76.27556731599988],[-146.70929928299995,-76.2927385399999],[-146.76016191299988,-76.29802825299997],[-146.81183834499993,-76.2948544249999],[-147.0620011059999,-76.24675872199994],[-147.0860489569999,-76.23560963299991],[-147.0754288399999,-76.237399998],[-147.0595596999999,-76.234795831],[-147.03209387899994,-76.22682057099986],[-147.07355709499996,-76.20964934699992],[-147.38194739499988,-76.16057708099989],[-147.40412350199995,-76.15007903399992],[-147.3974503249999,-76.15032317499995],[-147.3714493479999,-76.14251067499995],[-147.3269750639999,-76.14128997199985],[-147.43809973899988,-76.09775156],[-147.46047929599987,-76.09775156],[-147.4387914699999,-76.07870859199993],[-147.40758216099988,-76.06853606599998],[-147.34508216099994,-76.06226978999992],[-147.07140051999986,-76.07594166499996]]],[[[162.80347741,-75.69573333099996],[162.7421981130001,-75.70183684699985],[162.63510175900007,-75.69003671699997],[162.60271243600008,-75.67962004999998],[162.57650800900015,-75.66277434699998],[162.71778405000023,-75.603448175],[162.73552493600002,-75.58660247200001],[162.76783287900017,-75.57610442499985],[162.9170028000002,-75.55828215899994],[162.9171655610002,-75.55828215899994],[162.95671634200008,-75.55315520599996],[162.97234134200002,-75.55486419099995],[162.97754967500012,-75.56503671699998],[162.97193444100006,-75.57317473799992],[162.89861087300017,-75.61980559699992],[162.88721764400023,-75.63005950299996],[162.8837996750001,-75.63632577899999],[162.88086998800011,-75.64902109199997],[162.878184441,-75.654392185],[162.87183678500017,-75.65886809699998],[162.85474694100006,-75.66399504999998],[162.8471785820001,-75.66725025799994],[162.84050540500007,-75.67278411299988],[162.82886803500006,-75.684665623],[162.822113477,-75.68962981599988],[162.8134871750001,-75.69329192499993],[162.80347741,-75.69573333099996]]],[[[-145.72423255099991,-75.51832447699991],[-145.4403783839999,-75.58001067499994],[-145.44033769399994,-75.58001067499994],[-145.40876217399995,-75.58993906000003],[-145.34862219999985,-75.61630624799994],[-145.2637833319999,-75.66814544099985],[-145.23070227799994,-75.68141041499996],[-145.2007950509999,-75.68580494599986],[-145.21898352799985,-75.70452239399992],[-145.24453691299993,-75.71477629999995],[-145.27285722599987,-75.7193335919999],[-145.38304602799988,-75.718031508],[-145.69939124249993,-75.66944752399993],[-146.0157364569999,-75.62086353999989],[-146.1240128249999,-75.58896249799987],[-146.15477454299986,-75.57447682099982],[-146.15977942599994,-75.569756769],[-146.13735917899993,-75.55462005000001],[-146.1111547519999,-75.54273853999996],[-145.9697159499999,-75.50945403399996],[-145.87075761599993,-75.50457122199998],[-145.72423255099991,-75.51832447699991]]],[[[162.57227623800011,-75.48113372199992],[162.53370201900023,-75.48406340899994],[162.50464928500017,-75.47405364399995],[162.48796634200002,-75.45720794099995],[162.53150475400005,-75.42652760199987],[162.57081139400023,-75.42294687299996],[162.6012475920002,-75.43678150799998],[162.61784915500007,-75.45916106599991],[162.57227623800011,-75.48113372199992]]],[[[163.69516035200016,-74.89226653399999],[163.65870201900012,-74.91497161299995],[163.62647545700023,-74.91375090899993],[163.60352623800014,-74.89690520599993],[163.59506269600004,-74.87273528400002],[163.603770379,-74.86256275799997],[163.61296634200008,-74.85751718500002],[163.61768639400006,-74.85271575299996],[163.61426842500006,-74.84343840899999],[163.6508895190001,-74.84661223799996],[163.67367597700004,-74.85857512799998],[163.68702233200023,-74.87517669099995],[163.69516035200016,-74.89226653399999]]],[[[164.23780358200005,-74.6187476539999],[164.24040774800008,-74.62566497199998],[164.24431399800008,-74.63128020599999],[164.087657097,-74.62542083099994],[164.03809655000006,-74.63632577899993],[164.05909264400023,-74.64820728999989],[164.05909264400023,-74.66920338299992],[164.04639733200005,-74.68816497199992],[164.03028405000012,-74.6939429669999],[164.06723066500015,-74.70533619599996],[164.09839928500006,-74.7190080709999],[164.10718834700012,-74.73609791499992],[164.07740319100012,-74.75750090899999],[164.0402124360002,-74.76490650799995],[163.92603600400005,-74.77223072699995],[163.9879663420002,-74.78785572699996],[164.03777103000007,-74.80632903399999],[163.98096764400012,-74.84026458099993],[163.98707116,-74.84026458099993],[163.99293053500006,-74.84148528399986],[163.99854576900023,-74.84351978999989],[164.00375410200002,-74.84644947699991],[163.97828209700006,-74.86101653399993],[163.96338951900003,-74.86638762799998],[163.95053144600016,-74.86638762799998],[163.94410241000003,-74.86223723799995],[163.94336998800011,-74.85702890399995],[163.94459069100006,-74.851169529],[163.94418379000004,-74.84482187299997],[163.94044030000006,-74.83367278399996],[163.93718509200002,-74.83074309699994],[163.92920983200008,-74.82675546699987],[163.89177493600008,-74.81991952899995],[163.86963951900006,-74.81926848799998],[163.8605249360002,-74.82447682099989],[163.86182701900006,-74.82634856599994],[163.8686629570001,-74.83342864399992],[163.83659915500002,-74.83375416499993],[163.80486087300008,-74.82838307099989],[163.77125084700006,-74.8127580709999],[163.75993899800008,-74.809665623],[163.76563561300023,-74.80828215899992],[163.77125084700006,-74.805759373],[163.77613365999997,-74.801934503],[163.77930748800006,-74.79697030999995],[163.7511499360002,-74.79355234199994],[163.73707116000003,-74.78948333099999],[163.72673587300002,-74.78248463299991],[163.723399285,-74.775974217],[163.71794681100016,-74.75847747199995],[163.7140405610002,-74.75066497199997],[163.69263756600006,-74.72861093499988],[163.68775475400017,-74.72551848799998],[163.71778405000012,-74.7164039039999],[163.81324303500006,-74.70094166499997],[163.80347741000017,-74.689548435],[164.016368035,-74.60320403399999],[164.27328535200016,-74.55055103999987],[164.30241946700014,-74.55266692499997],[164.29330488400004,-74.55917734199997],[164.26270592500012,-74.57146575299994],[164.25326582099996,-74.57927825299993],[164.24488366000006,-74.58993905999996],[164.238047722,-74.60165780999995],[164.23308353000007,-74.61288827899995],[164.23780358200005,-74.6187476539999]]],[[[-132.34227454299992,-74.40447356599998],[-132.36953691299993,-74.416436456],[-132.3773087229999,-74.42180754999988],[-132.36754309799997,-74.42734140399999],[-132.36367753799988,-74.42831796699997],[-132.37584387899994,-74.43816497199998],[-132.43781490799992,-74.45745208099993],[-132.4772029289999,-74.48650481599991],[-132.5318497389999,-74.49895598799992],[-132.58975175699993,-74.50107187299993],[-132.85753333199997,-74.4709611959999],[-132.88353430899986,-74.45989348799995],[-132.86628170499986,-74.45029062299997],[-132.85594641799995,-74.44687265399998],[-132.84776770699995,-74.44687265399998],[-132.88585364499994,-74.42962004999995],[-132.8985082669999,-74.426364842],[-132.8658341139999,-74.42839934699995],[-132.83702551999994,-74.426364842],[-132.81554114499988,-74.42099374799986],[-132.80516516799992,-74.41269296699997],[-132.7460017569999,-74.41545989399984],[-132.57115637899994,-74.3884416649999],[-132.49657141799992,-74.38502369599989],[-132.42170162699983,-74.39853280999995],[-132.3578181629999,-74.40195077899988],[-132.34227454299992,-74.40447356599998]]],[[[-131.67125403599994,-74.32122161299993],[-131.64248613199987,-74.3318010399999],[-131.63231360599988,-74.33375416499986],[-131.5814509759999,-74.32976653399997],[-131.56411699099988,-74.33123137799993],[-131.57428951699987,-74.33766041499986],[-131.61237545499984,-74.34889088299994],[-131.58836829299992,-74.36500416499983],[-131.55321204299992,-74.37509530999998],[-131.12755286399994,-74.42791106599995],[-130.98375403599994,-74.41082122199991],[-130.96898352799994,-74.41277434699995],[-130.95954342399992,-74.41659921699997],[-130.95738684799994,-74.4208309879999],[-130.95669511599988,-74.426446222],[-130.9518123039999,-74.43434010199996],[-130.94517981699994,-74.43873463299985],[-130.92048092399995,-74.44426848799998],[-130.92747962099995,-74.44890715899999],[-130.93561764199987,-74.45289478999989],[-130.9523005849999,-74.45891692499997],[-130.9514054029999,-74.47014739399998],[-130.95775305899994,-74.49928150799994],[-130.95665442599986,-74.51376718499998],[-130.96475175699993,-74.51930103999992],[-130.96861731699994,-74.52019622199991],[-130.97183183499988,-74.52044036299995],[-130.97801673099994,-74.5236955709999],[-130.97695878799988,-74.52597421699997],[-130.9734594389999,-74.53045012799993],[-130.9727270169999,-74.53248463299985],[-131.03856360599994,-74.5691057269999],[-131.08088131399984,-74.58220794099995],[-131.07896887899997,-74.58326588299991],[-131.08067786399988,-74.58863697699996],[-131.08429928299986,-74.594903253],[-131.0882462229999,-74.59905364399995],[-131.09805253799993,-74.60230885199991],[-131.20592200399986,-74.60711028399997],[-131.46729488849996,-74.57219817499997],[-131.7286677729999,-74.53728606599995],[-131.76667232999984,-74.53972747199998],[-131.81847083199995,-74.55234140399988],[-131.84605872299994,-74.554294529],[-131.8670955069999,-74.54469166499993],[-131.8714086579999,-74.53655364399992],[-131.88341223899994,-74.527927342],[-131.89753170499986,-74.52076588299997],[-131.9080704419999,-74.51751067499993],[-132.0283096999999,-74.50465260199991],[-132.08275305899988,-74.49114348799992],[-132.08055579299992,-74.48886484199996],[-132.0576065749999,-74.4782854149999],[-132.02204342399995,-74.46998463299984],[-132.01207434799994,-74.46542734199997],[-132.0287166009999,-74.467868748],[-132.04991614499988,-74.46160247199995],[-132.1070043609999,-74.43629322699984],[-132.15908769399994,-74.42392343499998],[-132.1812638009999,-74.42376067499993],[-132.01675370999996,-74.38152434699997],[-132.0143936839999,-74.37859465899997],[-132.0035701159999,-74.37037525799997],[-131.9816788399999,-74.35955169099998],[-131.80626380099997,-74.32195403399989],[-131.72191321499992,-74.32439544099992],[-131.68370520699995,-74.32048919099992],[-131.67125403599994,-74.32122161299993]]],[[[-127.5040177069999,-74.40471770599991],[-127.43419348899997,-74.41106536299995],[-127.36856035099994,-74.40374114399995],[-127.33796139199984,-74.40455494599996],[-127.23599199099995,-74.4234351539999],[-127.22435462099993,-74.42750416499996],[-127.21727454299987,-74.43271249799993],[-127.20714270699992,-74.44540781],[-127.20059160099991,-74.45045338299992],[-127.1851293609999,-74.45387135199985],[-127.15184485599993,-74.45256926899995],[-127.1371964179999,-74.45818450299996],[-127.13385982999988,-74.46103281],[-127.13125566299988,-74.463962498],[-127.12954667899989,-74.46672942499988],[-127.12848873599992,-74.46941497199995],[-127.1290177069999,-74.47665780999996],[-127.13385982999988,-74.48308684699998],[-127.14142818899992,-74.48821379999991],[-127.1904190749999,-74.51148853999983],[-127.22667395699989,-74.52271900799992],[-127.23395748599992,-74.53093840900002],[-127.17381751199991,-74.554294529],[-127.17935136599993,-74.56113046700003],[-127.20425370999989,-74.57350025799997],[-127.20348059799994,-74.57447682099993],[-127.20075436099991,-74.57732512799998],[-127.21593176999988,-74.58814869599998],[-127.4158829419999,-74.63551197699992],[-127.5062556629999,-74.64617278399986],[-127.55174719999988,-74.64364999800003],[-127.90562903599995,-74.55299244599992],[-127.89964758999984,-74.54859791499993],[-127.89582271999984,-74.54192473799998],[-127.8951309889999,-74.53443775799991],[-127.89850826699991,-74.52760182099999],[-127.91063391799992,-74.52157968499998],[-127.94326738199995,-74.51425546699996],[-127.95417232999986,-74.50497812299993],[-127.97765051999993,-74.49928150799994],[-127.98884029899992,-74.49488697699996],[-127.9929093089999,-74.49114348799992],[-127.99522864499993,-74.48772551899992],[-128.0187068349999,-74.4821916649999],[-128.0882462229999,-74.48853932099993],[-128.1091202459999,-74.4777971329999],[-128.10220292899987,-74.47714609199997],[-128.0733129549999,-74.46738046699993],[-128.06590735599988,-74.46233489399998],[-128.0692439439999,-74.45045338299992],[-128.08324133999986,-74.44068775799991],[-128.09968014199987,-74.43271249799993],[-128.11070716099988,-74.4255510399999],[-128.10838782499985,-74.42180754999988],[-128.10142981699994,-74.41765715899993],[-128.09874426999997,-74.41204192499991],[-128.10899817599991,-74.40447356599998],[-128.1392716139999,-74.40203215899984],[-128.13255774599995,-74.39397551899992],[-128.1328832669999,-74.3884416649999],[-128.1487524079999,-74.36736419099988],[-128.15542558499993,-74.35035572699991],[-128.1595352859999,-74.34441497199998],[-128.1824845039999,-74.32398853999992],[-128.18919837099995,-74.31609465899993],[-128.17540442599994,-74.30510833099987],[-128.13784745999993,-74.30348072699987],[-127.75804602799992,-74.34270598799998],[-127.5040177069999,-74.40471770599991]]],[[[-117.28213456899991,-74.37737395599994],[-117.33869381399991,-74.37753671700001],[-117.39557857999986,-74.36614348799995],[-117.36123613199989,-74.32878997199998],[-117.31151282499991,-74.30925872199992],[-117.02505449099992,-74.28093840899997],[-116.99396725199989,-74.2829729149999],[-116.96812903599997,-74.29192473799993],[-117.06607011599989,-74.33025481599994],[-117.1685277989999,-74.35637786299992],[-117.28213456899991,-74.37737395599994]]],[[[-132.1440323559999,-74.167575779],[-132.17467200399992,-74.17310963299984],[-132.23497473899994,-74.16708749800001],[-132.27440344999994,-74.15764739399991],[-132.2951554029999,-74.14788176899997],[-132.3005264959999,-74.13494231599995],[-132.27692623599984,-74.12981536299995],[-132.22866777299993,-74.12590911299995],[-132.18488521999984,-74.12932708099994],[-132.13902747299994,-74.14080169099991],[-132.12189693899992,-74.14959075299997],[-132.1440323559999,-74.167575779]]],[[[-116.64964758999989,-74.06560637799991],[-116.50426184799993,-74.08196379999993],[-116.4857478509999,-74.08147551899994],[-116.52212480399987,-74.10540129999998],[-116.5993546209999,-74.14177825299987],[-116.78506425699992,-74.17424895599996],[-117.19640051999993,-74.20029062299994],[-117.29723059799991,-74.18417734199997],[-117.33218339799991,-74.17441171699993],[-117.3733617829999,-74.15789153399986],[-117.40025794199997,-74.13250090899992],[-117.39273027299991,-74.096286717],[-117.3710831369999,-74.07976653399993],[-116.88723710849983,-73.97352467200001],[-116.40339107999986,-73.8672828099999],[-116.31517493399987,-73.86484140399988],[-116.14069576699987,-73.90252044099994],[-116.19810950399999,-73.93840911299995],[-116.33495032499991,-73.973565363],[-116.49030514199984,-74.03378671699997],[-116.6192520819999,-74.05592213299994],[-116.64964758999989,-74.06560637799991]]],[[[-119.50007076699991,-74.10662200300001],[-119.69570878799993,-74.12558359199993],[-119.82103430899994,-74.12078215899993],[-119.88914954299987,-74.1119117169999],[-119.92292232999986,-74.10133228999993],[-119.92955481699993,-74.084649347],[-119.9114884109999,-74.07097747199995],[-119.88658606699997,-74.06503671699994],[-119.83702551999994,-74.05950286299992],[-119.83739173099987,-74.05722421699994],[-119.83551998599991,-74.05144622199998],[-119.83071855399989,-74.04143645599997],[-119.82721920499989,-74.03834400799991],[-119.8186742829999,-74.03435637799994],[-119.80150305899986,-74.02874114399985],[-119.78823808499992,-74.0262997379999],[-119.69660396999986,-74.02044036299995],[-119.66421464799993,-74.0145809879999],[-119.63609778599994,-74.00123463299991],[-119.64785722599991,-73.98935312299994],[-119.66567949099988,-73.9792619769999],[-119.76105709499991,-73.94719817499991],[-119.77668209499993,-73.93922291499996],[-119.78351803299982,-73.92986419099991],[-119.79067949099995,-73.90667083099999],[-119.79747473899988,-73.8966610659999],[-119.81163489499991,-73.88795338299992],[-119.85814368399984,-73.87656015399995],[-119.83576412699992,-73.86907317499997],[-119.78905188699994,-73.86199309699992],[-119.76768958199987,-73.85116952899993],[-119.88939368399993,-73.833103123],[-119.9035538399999,-73.82496510199991],[-119.69847571499989,-73.81829192499984],[-119.58088131399991,-73.78630950299986],[-119.49494381399991,-73.77255624799993],[-119.12340247299989,-73.780857029],[-118.97443600199996,-73.80486419099995],[-118.91413326699991,-73.82740650799994],[-118.90542558499993,-73.8327776019999],[-118.89972896999987,-73.83945077899995],[-118.89806067599994,-73.84807708099986],[-118.90192623599984,-73.86484140399988],[-118.9007869129999,-73.87322356599992],[-118.89517167899992,-73.8798153629999],[-118.8874405589999,-73.88258228999996],[-118.87083899599992,-73.88567473799995],[-118.94786536399991,-73.92156340899994],[-118.96349036399988,-73.93092213299997],[-118.96328691299995,-73.93710702899995],[-118.94566809799993,-73.94988372199998],[-118.9724828769999,-73.9686825499999],[-119.00377356699995,-73.98357512799998],[-119.22313391799992,-74.04412200299988],[-119.43138587099992,-74.06731536299992],[-119.44758053299986,-74.07236093499995],[-119.45860755099991,-74.08066171699991],[-119.46849524599992,-74.09026458099999],[-119.48106848899992,-74.099704685],[-119.50007076699991,-74.10662200300001]]],[[[-121.14287946933321,-73.75009531033325],[-120.68643144399996,-73.76726653399986],[-120.54015051999991,-73.75335051899988],[-120.42906653599991,-73.77255624799993],[-120.37580318899987,-73.79648202899998],[-120.37804114499994,-73.8309872379999],[-120.3946020169999,-73.840915623],[-120.41510982999985,-73.84685637799993],[-120.69570878799992,-73.86809661299992],[-120.72716223899992,-73.87883879999993],[-120.7351781889999,-73.87948984199997],[-120.6473689439999,-73.89674244599989],[-120.2857152989999,-73.91741301899991],[-120.26121985599988,-73.92782968499998],[-120.26756751199989,-73.93010833099996],[-120.29051673099988,-73.9463843729999],[-120.29588782499984,-73.95232512799993],[-120.2584529289999,-73.95875416499993],[-120.2407934239999,-73.96672942499998],[-120.23729407499991,-73.98154062299987],[-120.24364173099993,-73.98919036299998],[-120.25426184799987,-73.99537525799987],[-120.27554277299996,-74.00318775799995],[-120.63978023999996,-74.07577890399995],[-121.00401770699996,-74.14837004999995],[-121.0272110669999,-74.155857029],[-121.0471085279999,-74.16708749800001],[-121.0540665359999,-74.1766903629999],[-121.0518692699999,-74.1944312479999],[-121.05724036399995,-74.20338307099983],[-121.03864498599987,-74.21648528399999],[-121.03359941299992,-74.22307708099994],[-121.03966223899991,-74.23040129999997],[-121.04954993399993,-74.23308684699995],[-121.07445227799988,-74.23267994599992],[-121.08543860599991,-74.23463307099999],[-121.08018958199993,-74.24480559699994],[-121.05772864499994,-74.25676848799986],[-121.04942786399994,-74.26555754999993],[-121.06017005099997,-74.27117278399993],[-121.07188880099996,-74.27556731599992],[-121.05882727799988,-74.28362395599994],[-120.97004146999984,-74.2981096329999],[-120.9489639959999,-74.30738697699987],[-120.94424394399991,-74.30868905999995],[-121.09902910099989,-74.34807708099993],[-121.48051239066652,-74.36980559666658],[-121.8619956803332,-74.39153411233322],[-122.24347896999983,-74.41326262799996],[-122.46068274599988,-74.37916432099993],[-122.57209225199996,-74.38648853999986],[-122.6263728509999,-74.38209400799997],[-122.68732662699993,-74.36532968499995],[-122.90379798099991,-74.3370093729999],[-122.93643144399995,-74.32561614399994],[-122.98875891799986,-74.29778411299998],[-123.01109778599988,-74.27841562299996],[-123.00511633999987,-74.26344166499993],[-123.02818762899993,-74.24830494599993],[-122.99453691299992,-74.23463307099999],[-122.95514889199985,-74.22877369599995],[-122.76219641799989,-74.22625090899992],[-122.72915605399993,-74.21575286299995],[-122.73619544199991,-74.20745208099989],[-122.74657141799989,-74.20370859199994],[-122.76939856699993,-74.200860284],[-122.79694576699984,-74.19329192499995],[-122.80955969999991,-74.18670012799997],[-122.8308813139999,-74.16708749800001],[-122.93956458199992,-74.14023202900003],[-122.94635982999988,-74.13518645599999],[-122.94481360599991,-74.12867603999992],[-122.9457087879999,-74.11467864399995],[-122.94530188699991,-74.11028411299988],[-122.92418372299991,-74.0915666649999],[-122.90990149599989,-74.08717213299991],[-122.89468339799994,-74.08570728999996],[-122.86436926999994,-74.08652109199996],[-122.8204646479999,-74.07927825299986],[-122.81525631399991,-74.07537200299984],[-122.81753495999988,-74.06373463299994],[-122.8040258449999,-74.05852629999985],[-122.75674394399994,-74.05689869599983],[-122.74901282499994,-74.05559661299992],[-122.74429277299991,-74.05169036299992],[-122.74474036399991,-74.04607512799993],[-122.75202389199984,-74.03346119599995],[-122.75283769399995,-74.02613697699994],[-122.75104732999986,-74.0236955709999],[-122.7444555329999,-74.02044036299995],[-122.74250240799984,-74.01881275799994],[-122.74242102799987,-74.01620859199994],[-122.7430313789999,-74.01230234199994],[-122.74404863199987,-74.00896575300001],[-122.74510657499984,-74.00823333099999],[-122.74107825399997,-74.00359465899996],[-122.73656165299992,-74.00017669099995],[-122.7310684889999,-73.99773528399992],[-122.60765540299985,-73.96428801899995],[-122.55256100199992,-73.96160247199988],[-122.34984290299991,-73.92498137799996],[-122.33169511599992,-73.9165992169999],[-122.3273819649999,-73.91570403399999],[-122.3646134109999,-73.90740325299991],[-122.4363500639999,-73.89967213299991],[-122.59129798099995,-73.90732187299994],[-122.93407141799992,-73.87932708100001],[-122.94359290299991,-73.875909113],[-122.95018469999988,-73.86980559699992],[-122.95360266799989,-73.86321379999985],[-122.95636959499984,-73.856052342],[-122.96092688699989,-73.84832122199998],[-122.97223873599987,-73.83977629999997],[-122.98696855399987,-73.8348934879999],[-123.01695716099991,-73.83082447699994],[-123.34927324099992,-73.84840260199995],[-123.34923255099993,-73.84539153399996],[-123.34976152299991,-73.83879973799998],[-123.34951738199986,-73.83611419099991],[-123.3372696609999,-73.83123137799986],[-123.24889075399994,-73.82333749799996],[-123.23737545499992,-73.82024504999998],[-123.23078365799985,-73.81511809699987],[-123.23424231699993,-73.80494557099992],[-123.2486059239999,-73.79656340899994],[-123.27692623599987,-73.78573984199997],[-123.28913326699984,-73.77450937299997],[-123.28677324099989,-73.76392994599983],[-123.27538001199991,-73.75383879999995],[-123.1930232409999,-73.70680103999995],[-123.12022864499993,-73.68279387799998],[-123.06558183499988,-73.675388279],[-122.6689753894999,-73.67880624800001],[-122.27236894399992,-73.68222421700003],[-122.05577551999997,-73.71575286299988],[-121.59932749466662,-73.73292408666666],[-121.14287946933321,-73.75009531033325]]],[[[-20.669016079999892,-74.08066171699991],[-20.6810603509999,-74.0928687479999],[-20.69286048099988,-74.10198333099997],[-20.66173255099997,-74.12851327899995],[-20.609527147999955,-74.19264088299991],[-20.57990475199992,-74.22096119599985],[-20.42564856699991,-74.30901458099989],[-20.39948482999995,-74.33171965899993],[-20.378651495999886,-74.360772394],[-20.366688605999855,-74.39299895599994],[-20.36656653599988,-74.42538827899993],[-20.369130011999886,-74.43368906],[-20.372710740999963,-74.44166432099998],[-20.377674933999913,-74.44939544099998],[-20.40367591099988,-74.47633228999996],[-20.414784308999913,-74.48381926899992],[-20.428456183999852,-74.48919036299998],[-20.47809811099995,-74.49871184699988],[-20.528553839999887,-74.50261809699988],[-20.806630011999943,-74.47519296700001],[-20.843006964999915,-74.46282317499998],[-20.86571204299986,-74.43906015399998],[-20.867014126999948,-74.431573175],[-20.864979620999918,-74.41806406000003],[-20.86571204299986,-74.41033294099992],[-20.869618292999856,-74.40162525799994],[-20.88744055899994,-74.37525807099995],[-20.959828253999888,-74.23853932099989],[-20.981190558999856,-74.21103280999995],[-21.01195227799991,-74.18718840899996],[-21.062652147999895,-74.16318124799993],[-21.122425910999937,-74.14283619599993],[-21.299468553999873,-74.10588958099999],[-21.71344967399989,-74.088474217],[-22.021148240999878,-74.11402760199991],[-22.040150519999884,-74.10556405999995],[-21.8939509759999,-74.04168059699985],[-21.614999966499905,-74.0226783184999],[-21.336048956999917,-74.00367603999993],[-21.234852667999945,-73.98064544099988],[-21.14537512899994,-73.95012786299993],[-21.069569464999887,-73.91301848799992],[-21.009510870999886,-73.87053801899995],[-21.01073157499991,-73.82594166499996],[-20.94090735599985,-73.75107187299989],[-20.92438717399989,-73.70435963299991],[-20.89037024599986,-73.67896900799998],[-20.853586391999954,-73.66008879999995],[-20.81419837099989,-73.64641692499993],[-20.64879309799997,-73.61939869599996],[-20.640736456999917,-73.615817967],[-20.637603318999936,-73.61003997199994],[-20.635324673999886,-73.60084400799997],[-20.635609503999916,-73.5920549459999],[-20.640248175999943,-73.58749765399993],[-20.611154751999976,-73.59465911299999],[-20.582875128999913,-73.60572682099993],[-20.556630011999886,-73.62078215899986],[-20.533111131999927,-73.63958098799989],[-20.51585852799994,-73.65976327899993],[-20.50918535099987,-73.67766692499998],[-20.51268469999988,-73.69557057099993],[-20.525461391999897,-73.71575286299988],[-20.535023566999882,-73.73951588299997],[-20.528187628999888,-73.75920989399992],[-20.49583899599986,-73.79371510199994],[-20.54320227799991,-73.8189429669999],[-20.566273566999968,-73.83603280999994],[-20.58311926999997,-73.85409921699996],[-20.58446204299986,-73.86516692499998],[-20.57872473899988,-73.87607187299997],[-20.575835740999935,-73.88746510199994],[-20.599924282999975,-73.91765715899986],[-20.600087042999945,-73.93417734199993],[-20.594349738999966,-73.95134856599995],[-20.591216600999896,-73.97128671699994],[-20.59862219999988,-73.99049244599999],[-20.61432857999995,-74.00025807099993],[-20.632476365999935,-74.00758228999993],[-20.647368943999908,-74.01946379999998],[-20.650786912999905,-74.02776458099996],[-20.650990363999938,-74.04509856599995],[-20.652251756999874,-74.05388762799993],[-20.658762173999946,-74.06715260199995],[-20.669016079999892,-74.08066171699991]]],[[[-73.77342688699986,-73.3933244769999],[-73.78758704299989,-73.39641692499987],[-73.79503333199995,-73.39609140399995],[-73.82192949099993,-73.39169687299987],[-73.82384192599989,-73.38746510199994],[-73.80357825399997,-73.372491144],[-73.7793676419999,-73.3591447899999],[-73.75523841099997,-73.355645441],[-73.73509680899991,-73.37004973799998],[-73.74616451699985,-73.37908294099996],[-73.75926673099994,-73.38730234199997],[-73.77342688699986,-73.3933244769999]]],[[[169.83814537900005,-73.6122372379999],[169.66618899800017,-73.63103606599998],[169.64942467500012,-73.62908294099992],[169.65121503999998,-73.61646900799994],[169.65088951900023,-73.60588958099997],[169.64649498800006,-73.59685637799998],[169.6364038420002,-73.5886369769999],[169.62281334700006,-73.58277760199994],[169.60816491000006,-73.5790341129999],[169.50684655000012,-73.56747812299997],[169.458750847,-73.55494557099989],[169.54200280000023,-73.49700286299998],[169.66675866000014,-73.43035247199992],[169.67750084700012,-73.42180754999998],[169.65113366,-73.40715911299998],[169.63705488400012,-73.3954403629999],[169.63697350400017,-73.38551197699991],[169.6705835300002,-73.3643531229999],[169.67221113400004,-73.341403904],[169.70525149800008,-73.325778904],[169.75163821700002,-73.32008228999993],[169.793711785,-73.32724374799996],[169.81373131600017,-73.34856536299995],[169.81470787900005,-73.37566497199988],[169.81918379000004,-73.40081145599996],[169.85027103000013,-73.416110935],[169.8615014980002,-73.44158294099992],[169.89576256600017,-73.47128671699994],[169.96168053500006,-73.51441822699995],[169.94353274800002,-73.53191497199992],[169.91797936300023,-73.54387786299995],[169.85840905000023,-73.56308359199998],[169.86646569100017,-73.56536223799998],[169.8698022800002,-73.57626718499995],[169.8693139980002,-73.58928801899985],[169.86597741000017,-73.59823984199997],[169.8540145190002,-73.60686614399988],[169.83814537900005,-73.6122372379999]]],[[[-126.08438066299993,-73.30413176899992],[-126.00259355399987,-73.35173919099992],[-125.9424942699999,-73.37590911299992],[-125.5992732409999,-73.42937590899986],[-125.56578528599995,-73.44378020599991],[-125.57144120999996,-73.46119557099989],[-125.59870357999985,-73.47909921699994],[-125.62970943899988,-73.49456145599996],[-125.6257218089999,-73.50318775799997],[-125.60606848899994,-73.517266534],[-125.52179928299984,-73.56080494599993],[-125.46996008999994,-73.57887135199995],[-125.24632727799988,-73.61052825299993],[-125.22598222599991,-73.62167734199994],[-125.21279863199997,-73.63982512799986],[-125.21019446499986,-73.66057708099994],[-125.22175045499989,-73.67994557099996],[-125.24347896999987,-73.69215260199994],[-125.2700089179999,-73.69882577899998],[-125.7307836579999,-73.716403904],[-125.82583574099988,-73.70370859199987],[-125.8780411449999,-73.70476653399992],[-125.91226152299988,-73.7234026019999],[-125.90713456899988,-73.75505950299988],[-125.86530514199984,-73.78101978999996],[-125.77643795499993,-73.81031666499999],[-125.68350175699992,-73.82610442499993],[-125.5894262359999,-73.82390715899994],[-125.37002519399987,-73.79176197699998],[-125.26056881399991,-73.79192473799995],[-125.23985755099989,-73.79705169099995],[-125.20348059799991,-73.81414153399999],[-125.18382727799985,-73.82057057099992],[-125.1265763009999,-73.82463958099997],[-125.0821020169999,-73.8327776019999],[-125.06012936099988,-73.84295012799993],[-125.05719967399996,-73.85833098799998],[-125.06289628799995,-73.86142343499995],[-125.09007727799987,-73.86541106599985],[-125.07005774599989,-73.87607187299997],[-125.04328365799988,-73.88095468500003],[-124.99242102799985,-73.88225676899985],[-124.9260961579999,-73.87021249799993],[-124.91295325399994,-73.86988697699991],[-124.92992102799992,-73.85963307099996],[-124.93517005099991,-73.85426197699992],[-124.93960527299988,-73.84514739399991],[-124.93594316299993,-73.83245208099996],[-124.93541419199995,-73.82854583099996],[-124.93748938699987,-73.82586028399999],[-124.94884192599993,-73.81438567499985],[-124.90274003799992,-73.795505467],[-124.75816809799997,-73.774834894],[-124.62950598899995,-73.73072682099989],[-124.5795792309999,-73.72437916499997],[-124.53429114499988,-73.72763437300001],[-124.51577714799987,-73.73658619599986],[-124.50845292899994,-73.75318775799991],[-124.11217200399996,-73.83269622199991],[-124.09626217399995,-73.84295012799993],[-124.06041419199993,-73.84734465900002],[-124.02745520699996,-73.8552385399999],[-124.01992753799992,-73.87574635199992],[-124.03652910099989,-73.88958098799995],[-124.20881100199989,-73.9343401019999],[-124.17707271999986,-73.96062590899999],[-124.13219153599995,-73.976169529],[-123.93106035099987,-74.00269947699996],[-123.93932044199995,-74.01051197699987],[-123.9725235669999,-74.02385833099996],[-123.9490453769999,-74.02402109200003],[-123.8946427069999,-74.03118254999988],[-123.87295488199993,-74.0388322899999],[-123.86607825399993,-74.04412200299988],[-123.85558020699995,-74.05641041499993],[-123.84886633999989,-74.06145598799988],[-123.83950761599986,-74.06487395599989],[-123.75438391799987,-74.07252369599989],[-123.77700761599993,-74.08757903399993],[-123.77643795499988,-74.08993905999998],[-123.77733313699987,-74.09661223799993],[-123.77961178299984,-74.10426197699995],[-123.78302975199993,-74.10963307099983],[-123.78770911399994,-74.11077239399995],[-123.8087458979999,-74.11028411299988],[-123.83714758999992,-74.1144345029999],[-123.85204016799987,-74.11980559699995],[-123.86021887899997,-74.12851327899995],[-123.85924231699991,-74.137302342],[-123.85293535099986,-74.14267343499988],[-123.84581458199992,-74.14666106599995],[-123.84215247299994,-74.15162525799991],[-123.84829667899993,-74.1639950499999],[-123.86432857999984,-74.17205169099988],[-123.88353430899987,-74.17652760199994],[-123.89928137899994,-74.17815520599996],[-123.80626380099996,-74.21502044099992],[-123.83348548099985,-74.23121510199998],[-123.86510169199994,-74.24456145599999],[-123.92829342399992,-74.2618140599999],[-124.0074356759999,-74.26344166499993],[-124.24498450399992,-74.21477629999998],[-124.51461747949989,-74.22039153449994],[-124.78425045499985,-74.22600676899997],[-125.20343990799984,-74.16301848799996],[-125.23924719999994,-74.15162525799991],[-125.2372940749999,-74.15105559699992],[-125.23680579299989,-74.15056731599994],[-125.2377823559999,-74.15016041499993],[-125.24022376199991,-74.15007903399996],[-125.1092830069999,-74.12281666499996],[-125.41409257749993,-74.08155689899992],[-125.71890214799993,-74.04029713299997],[-125.74913489499994,-74.02467213299997],[-125.75324459499988,-74.01848723799992],[-125.75454667899987,-74.00628020599993],[-125.75812740799985,-74.00066497199994],[-125.76952063699991,-73.99456145599986],[-125.79893958199992,-73.98821379999993],[-125.81139075399993,-73.9831682269999],[-125.80504309799989,-73.98186614399998],[-125.7989802729999,-73.97966887799998],[-125.79352779899995,-73.97665780999998],[-125.78892981699991,-73.97291432099996],[-125.81273352799991,-73.96656666499992],[-125.92784583199997,-73.95680103999999],[-125.93834387899993,-73.9528947899999],[-125.96642005099993,-73.93694426899998],[-126.01134192599994,-73.921319269],[-126.47545325399993,-73.842217706],[-126.45177161399992,-73.8348934879999],[-126.42178300699986,-73.8215471329999],[-126.40119381399985,-73.8025041649999],[-126.40550696499992,-73.77841562299997],[-126.42910722599989,-73.76734791499993],[-126.49616451699985,-73.75750090899992],[-126.51463782499988,-73.74260833099996],[-126.51183020699993,-73.73064544099992],[-126.49885006399983,-73.7238908829999],[-126.47199459499986,-73.71599700300001],[-126.46349036399992,-73.705661717],[-126.46816972599993,-73.70029062299994],[-126.56110592399995,-73.68466562299986],[-126.55060787699986,-73.67327239399991],[-126.5465388659999,-73.67034270599989],[-126.72516842399995,-73.66521575299996],[-126.83543860599993,-73.64617278399997],[-126.87267005099993,-73.64674244599993],[-126.91323808499993,-73.65439218499986],[-126.95213782499994,-73.66765715899999],[-126.98424231699993,-73.68547942499988],[-126.95466061099984,-73.71990325299991],[-126.95254472599994,-73.72665780999995],[-127.00523841099994,-73.74041106599996],[-127.22940019399995,-73.73267994599986],[-127.25121008999992,-73.72893645599991],[-127.2621150379999,-73.72454192499994],[-127.26886959499993,-73.71786874799997],[-127.26866614499997,-73.70769622199994],[-127.26056881399987,-73.67864348799993],[-127.26121985599991,-73.66562265399998],[-127.25426184799991,-73.64413827899995],[-127.22508704299986,-73.6261532529999],[-127.16600501199993,-73.60263437299993],[-127.1881404289999,-73.59449635199994],[-127.36733964799996,-73.56275807099996],[-127.42210852799988,-73.56275807099996],[-127.45055091099988,-73.55982838299987],[-127.47317460799985,-73.54957447699994],[-127.4388321609999,-73.54225025799983],[-127.4182022779999,-73.53460051899998],[-127.41519120999996,-73.52556731599998],[-127.42080644399995,-73.517673435],[-127.42129472599996,-73.509860935],[-127.42027747299989,-73.50188567499995],[-127.42137610599993,-73.49325937299987],[-127.42516028599997,-73.48593515399995],[-127.42943274599986,-73.48284270599997],[-127.44322669199988,-73.47844817499998],[-127.47183183499997,-73.46233489399992],[-127.48648027299988,-73.45126718499998],[-127.4949438139999,-73.44011809699995],[-127.49543209499988,-73.42962004999998],[-127.48912512899994,-73.42441171699988],[-127.42609615799985,-73.39853280999998],[-127.37409420499989,-73.35719166499986],[-127.3032120429999,-73.31812916499989],[-127.22638912699986,-73.29216887799998],[-127.14899654899997,-73.27727629999985],[-127.1070043609999,-73.27760182099996],[-127.0745743479999,-73.29070403399993],[-127.08458411399987,-73.29534270599996],[-127.10513261599992,-73.30152760199994],[-127.11400305899987,-73.30559661299998],[-127.02989661399992,-73.30925872199985],[-126.77853349549986,-73.28879159949985],[-126.52717037699989,-73.26832447699992],[-126.1040746739999,-73.29615650799997],[-126.08438066299993,-73.30413176899992]]],[[[-71.85448157499985,-73.24553801899998],[-71.9202774729999,-73.25855885199996],[-71.98737545499989,-73.258396092],[-72.04906165299991,-73.243747654],[-72.09618079299992,-73.21453215899994],[-72.08092200399994,-73.19459400799997],[-72.03254146999984,-73.1836890599999],[-71.98082434799991,-73.18108489399991],[-71.88565019399994,-73.188897394],[-71.8404434889999,-73.2001278629999],[-71.79653886599996,-73.21982187299994],[-71.85448157499985,-73.24553801899998]]],[[[-73.60240637899994,-73.10914478999995],[-73.5386449859999,-73.130140883],[-73.52253170499992,-73.130140883],[-73.67357337099986,-73.20427825299994],[-73.69212805899988,-73.21697356599991],[-73.70567786399994,-73.23650481599998],[-73.70152747299987,-73.2385393209999],[-73.69448808499993,-73.24822356599988],[-73.68846594999991,-73.26116301899988],[-73.68773352799988,-73.27304452900002],[-73.69530188699994,-73.28281015399988],[-73.70836341099991,-73.29159921700003],[-73.7606095039999,-73.31438567499994],[-73.83893795499989,-73.33464934699997],[-73.89167232999989,-73.36549244599993],[-73.91038977799984,-73.37314218499995],[-73.93390865799992,-73.37371184699992],[-73.9573461579999,-73.36923593499996],[-73.9798070949999,-73.36834075299997],[-74.00055904899989,-73.38030364399991],[-73.99958248599992,-73.39788176899994],[-74.01471920499992,-73.40634530999998],[-74.03587805899991,-73.40699635199984],[-74.05308997299994,-73.40154387799998],[-74.06200110599988,-73.39185963299984],[-74.06680253799996,-73.37916432099996],[-74.06729081899994,-73.36565520599997],[-74.0631404289999,-73.35320403399997],[-74.14561926999991,-73.32350025799994],[-74.15916907499988,-73.30803801899992],[-74.15794837099986,-73.30055103999996],[-74.15453040299985,-73.29550546699993],[-74.15143795499998,-73.28932057099996],[-74.15086829299992,-73.27922942499998],[-74.12999426999994,-73.27206796699994],[-74.00291907499985,-73.2515601539999],[-74.01748613199987,-73.24814218499998],[-74.04784094999985,-73.22625090899996],[-74.06358801999991,-73.22031015399992],[-74.04576575399992,-73.21770598799993],[-73.99010169199991,-73.21803150799987],[-73.91124426999997,-73.20525481599992],[-73.88731848899991,-73.19646575299986],[-73.87486731699988,-73.1897111959999],[-73.86790930899987,-73.18222421699993],[-73.86636308499993,-73.16887786299993],[-73.87328040299985,-73.16253020599999],[-73.88512122299991,-73.15764739399992],[-73.89830481699994,-73.1491838519999],[-73.88683020699992,-73.12004973799993],[-73.69815019399988,-73.09880950299986],[-73.65001380099991,-73.10133228999996],[-73.60240637899994,-73.10914478999995]]],[[[-104.6304825509999,-73.21135833099999],[-104.74693762899994,-73.21851978999995],[-104.8594864569999,-73.20671965899997],[-104.94566809799996,-73.18621184699992],[-104.99889075399992,-73.16448333099986],[-105.03766842399996,-73.14039478999993],[-105.0988663399999,-73.08668385199987],[-105.1195369129999,-73.06259531],[-105.14073645699992,-73.02060312299994],[-105.15538489499993,-73.00530364399998],[-105.06102454299986,-72.954196873],[-105.01414954299989,-72.94052499799997],[-104.95860755099996,-72.9426408829999],[-104.93569902299987,-72.95086028399999],[-104.88182532499992,-72.98943450299996],[-104.68712317599989,-73.096449477],[-104.68712317599989,-73.09653085699998],[-104.63760331899995,-73.11646900799987],[-104.59105383999992,-73.12965260199991],[-104.55394446499992,-73.14576588299997],[-104.53270423099993,-73.17449309699992],[-104.6304825509999,-73.21135833099999]]],[[[-89.47874915299988,-72.97576262799991],[-89.50772050699996,-72.99716562299997],[-89.55524654899997,-73.05071379999988],[-89.58507239499997,-73.07040781],[-89.6332901679999,-73.08375416499993],[-89.68911699099988,-73.09059010199995],[-89.79637610599988,-73.09238046699994],[-89.99567623599995,-73.06764088299987],[-90.13247636599988,-73.09441497199995],[-90.21914628799993,-73.08424244599983],[-90.29596920499993,-73.04949309699995],[-90.3362930979999,-72.98739999799993],[-90.28246008999989,-72.94133879999998],[-90.21568762899992,-72.94451262799996],[-90.0939021479999,-72.98650481599985],[-90.05085201699987,-72.98626067499998],[-90.00552324099996,-72.976739191],[-89.96336829299992,-72.95826588299997],[-89.92935136599989,-72.93157317499995],[-89.89244544199994,-72.884616795],[-89.89244544199994,-72.88453541499993],[-89.88206946499994,-72.87411874799994],[-89.8692113919999,-72.86549244599993],[-89.85216223899992,-72.85881926899998],[-89.82917232999998,-72.85409921699997],[-89.78551184799997,-72.85027434699995],[-89.5715225899999,-72.86296965899993],[-89.40562903599991,-72.89568450299996],[-89.33067786399992,-72.92799244599998],[-89.35936438699991,-72.94597747199992],[-89.47874915299988,-72.97576262799991]]],[[[-74.94640051999991,-72.86541106599995],[-74.84679114499994,-72.86663176899997],[-74.84675045499995,-72.86663176899997],[-74.5039770169999,-72.88209400799991],[-74.30955969999987,-72.92107512799988],[-74.21857662699995,-72.99081796699994],[-74.2398982409999,-73.02011484199987],[-74.38609778599997,-73.10271575299986],[-74.39509029899989,-73.11825937299994],[-74.40575110599991,-73.15243905999994],[-74.41470292899996,-73.16765715899992],[-74.43297278599991,-73.18189869599983],[-74.50023352799984,-73.20794036299998],[-74.50841223899997,-73.25237395599991],[-74.69469153599992,-73.27654387800001],[-74.75804602799988,-73.30315520599996],[-74.71703040299988,-73.30934010199982],[-74.59190833199995,-73.30877044099995],[-74.55459550699987,-73.31666432099993],[-74.5323787099999,-73.33171965899986],[-74.53010006399995,-73.35491301899998],[-74.55235755099989,-73.38738372199995],[-74.50194251199986,-73.39324309699991],[-74.4745173819999,-73.40195077899999],[-74.4585668609999,-73.41529713299991],[-74.44123287699992,-73.43377044099991],[-74.3609106109999,-73.46038176899988],[-74.38194739499994,-73.48015715899999],[-74.40322831899991,-73.52532317499985],[-74.41844641799989,-73.54827239399992],[-74.43956458199987,-73.56666432099996],[-74.46532141799993,-73.582940363],[-74.51939856699991,-73.60605234199986],[-74.59312903599997,-73.6145158829999],[-75.02028018599992,-73.52521466799993],[-75.44743133599991,-73.43591345299996],[-75.8745824859999,-73.3466122379999],[-76.03099524599989,-73.28386809699992],[-76.05211341099991,-73.26213958099986],[-76.11432857999992,-73.17962004999985],[-76.12612870999988,-73.15878671699997],[-76.1031388009999,-73.1228166649999],[-76.07412675699993,-73.09880950299986],[-76.03917395699992,-73.08424244599983],[-75.85822506399997,-73.047621352],[-75.74815833199995,-73.05771249799996],[-75.52452551999991,-73.11337655999998],[-75.41681881399991,-73.10670338299992],[-75.46092688699991,-73.07350025799991],[-75.43321692599994,-73.05478280999994],[-75.37279212099992,-73.04631926899997],[-75.09630286399991,-73.05584075299998],[-75.03819739499994,-73.04143645599993],[-75.03978430899987,-73.03997161299996],[-75.04002844999994,-73.03899504999997],[-75.03892981699988,-73.03875090899986],[-75.03644771999987,-73.03899504999997],[-75.21104895699995,-73.00554778399993],[-75.40672766799989,-73.00253671699993],[-75.50108801999993,-72.98935312299997],[-75.70441646999987,-72.92278411299998],[-75.76154537699995,-72.89641692499998],[-75.77574622299997,-72.89364999799992],[-75.69664466099988,-72.87859465899992],[-75.57323157499994,-72.86956145599997],[-75.55532792899987,-72.87151458099986],[-75.54108639199987,-72.86142343499998],[-75.44733639199985,-72.82838307099993],[-75.40387936099992,-72.82203541499989],[-75.29580644399994,-72.81951262799998],[-74.94640051999991,-72.86541106599995]]],[[[-93.81354732999989,-72.92620208099999],[-93.86204993399988,-72.92815520599994],[-94.0001114569999,-72.91904062299993],[-94.07038326699987,-72.90276458100001],[-94.12816321499989,-72.8729794249999],[-94.06834876199991,-72.82586028399992],[-93.98289954299992,-72.81902434699998],[-93.81822669199991,-72.85637786299995],[-93.77306067599997,-72.87322356599995],[-93.75926673099985,-72.88111744599992],[-93.75080318899992,-72.88860442499998],[-93.74998938699991,-72.90553150799997],[-93.77354895699995,-72.91822682099993],[-93.81354732999989,-72.92620208099999]]],[[[-97.83128821499989,-72.71697356599992],[-97.94123287699995,-72.72503020599984],[-98.05044511599988,-72.7144507789999],[-98.1307673819999,-72.69231536299992],[-98.04234778599994,-72.66228606599988],[-97.94025631399987,-72.65740325299998],[-97.7486873039999,-72.68328215899992],[-97.83128821499989,-72.71697356599992]]],[[[-90.91812089799986,-72.83359140400002],[-90.93053137899987,-72.8479143209999],[-90.90562903599997,-72.8384742169999],[-90.86107337099985,-72.83562590899996],[-90.78587805899988,-72.84099700299991],[-90.75918535099994,-72.85068124799997],[-90.7398982409999,-72.86443450299998],[-90.7282608709999,-72.88445403399996],[-90.72447669199988,-72.912774347],[-90.73534094999988,-72.94540780999995],[-90.76105709499993,-72.98007577900002],[-90.8194880849999,-73.0363095029999],[-90.91771399599986,-73.10125090899989],[-91.02538001199994,-73.14983489399985],[-91.20579993399987,-73.194431248],[-91.39037024599989,-73.21282317499995],[-91.50633704299995,-73.19784921699993],[-91.52464758999992,-73.19255950299996],[-91.48631751199989,-73.12460702899998],[-91.47752844999991,-73.08375416499993],[-91.4766739569999,-73.07301197699991],[-91.4779353509999,-73.06210702899995],[-91.46544348899991,-73.03411223799992],[-91.45807857999992,-72.97535572699992],[-91.44908606699987,-72.95183684699995],[-91.4161677729999,-72.94215260199991],[-91.38670813699991,-72.92913176899992],[-91.33340410099996,-72.89755624800001],[-91.5284724599999,-72.783135675],[-91.5562231109999,-72.75725676899998],[-91.62047278599994,-72.66936614399992],[-91.66624915299994,-72.63250090899996],[-91.68651282499992,-72.60995859199997],[-91.39004472599996,-72.55006275799994],[-91.04417883999989,-72.54314544099985],[-90.91519120999993,-72.56218840899993],[-90.8638809889999,-72.57903411299985],[-90.81639563699991,-72.60344817499998],[-90.77961178299992,-72.63616301899992],[-90.75796464799993,-72.69744231599992],[-90.78766842399995,-72.74456145599993],[-90.90160071499989,-72.81975676899992],[-90.91812089799986,-72.83359140400002]]],[[[-93.23631751199989,-72.63551197699996],[-93.27448482999995,-72.63697682099993],[-93.31468665299994,-72.63046640399992],[-93.35383053299998,-72.61809661299999],[-93.38878333199989,-72.60247161299992],[-93.35936438699991,-72.57976653399996],[-93.32681230399993,-72.56023528399999],[-93.27651933499988,-72.54558684699988],[-93.21910559799997,-72.54176197699996],[-93.16148841099991,-72.54729583099989],[-93.11058508999989,-72.55982838299997],[-93.12987219999991,-72.59270598799988],[-93.16079667899996,-72.6141903629999],[-93.19798743399986,-72.627536717],[-93.23631751199989,-72.63551197699996]]],[[[-60.827015753999945,-72.58440520599999],[-60.946685350999864,-72.59807708099993],[-60.968861456999946,-72.59197356599984],[-60.95555579299992,-72.57170989399992],[-60.917958136999914,-72.54509856599998],[-60.909291144999905,-72.541110935],[-60.84068762899989,-72.54615650799994],[-60.775135870999854,-72.56243254999988],[-60.798166469999835,-72.57626718499998],[-60.827015753999945,-72.58440520599999]]],[[[-94.85299638549989,-72.65504322699994],[-95.20124264199987,-72.67734140399998],[-95.27428137899994,-72.65178801899998],[-95.26927649599992,-72.63600025799994],[-95.24413001199991,-72.61565520599994],[-95.19782467399995,-72.58863697699991],[-95.16616777299987,-72.58098723799998],[-94.81045488199989,-72.53460051899992],[-94.58088131399992,-72.46892669099992],[-94.55016028599994,-72.465915623],[-94.52208411399991,-72.46941497199991],[-94.50206458199993,-72.47926197699982],[-94.49380449099996,-72.49146900799991],[-94.49144446499992,-72.52239348799995],[-94.48900305899988,-72.533786717],[-94.48668372299991,-72.53964609199994],[-94.48326575399992,-72.54558684699988],[-94.40953528599995,-72.597263279],[-94.39981035099993,-72.60735442499998],[-94.50475012899994,-72.63274504999991],[-94.85299638549989,-72.65504322699994]]],[[[-16.102772589999915,-72.68743254999995],[-16.198841925999886,-72.7092424459999],[-16.296254035999937,-72.70761484199997],[-16.381581183999884,-72.69003671699994],[-16.441558397999927,-72.66375090899993],[-16.487538214999887,-72.6223283829999],[-16.517201300999915,-72.57024504999997],[-16.516346808999913,-72.5191382789999],[-16.470692511999886,-72.48064544099991],[-16.40957597599993,-72.45663827899996],[-16.390980597999913,-72.45354583099989],[-16.36351477799988,-72.45525481599996],[-16.33800208199989,-72.46062590899993],[-16.314035610999923,-72.47047291499996],[-16.291249152999907,-72.48528411299993],[-16.186146613999906,-72.59050872199998],[-16.131703253999916,-72.63258228999995],[-16.10985266799989,-72.65837981599987],[-16.102772589999915,-72.68743254999995]]],[[[-70.5384822259999,-72.27825286299995],[-70.60118567599989,-72.28004322699994],[-70.65355383999989,-72.25074635199991],[-70.60895748599998,-72.23170338299991],[-70.58446204299986,-72.22503020599996],[-70.55028235599988,-72.22185637799998],[-70.44652258999989,-72.22812265399995],[-70.41763261599996,-72.23837655999988],[-70.5384822259999,-72.27825286299995]]],[[[-60.12677975199991,-72.25253671699988],[-60.18138587099989,-72.25579192499985],[-60.23643958199995,-72.23837655999988],[-60.25845292899992,-72.20403411299992],[-60.23843339799987,-72.17742278399989],[-60.188059048999925,-72.17595794099992],[-60.134877081999946,-72.19353606599995],[-60.10655676999988,-72.22405364399998],[-60.12677975199991,-72.25253671699988]]],[[[68.76921634200008,-72.11345794099998],[68.77873782600007,-72.11646900799998],[68.77881920700017,-72.11646900799998],[68.78484134200006,-72.11858489399998],[68.80494225400011,-72.12883879999993],[68.8400171230002,-72.15536874799996],[68.85417728000012,-72.17017994599986],[68.86255944100017,-72.19345468499988],[68.85230553500017,-72.21257903399994],[68.83171634200019,-72.22795989399998],[68.80909264400006,-72.23984140399993],[68.74203535200016,-72.264580988],[68.45191491000011,-72.31414153399993],[68.41765384200002,-72.31243254999993],[68.39470462300008,-72.29705169099998],[68.44996178500017,-72.24968840899996],[68.60499108200011,-72.17164478999983],[68.62614993600019,-72.14967213299991],[68.63184655000006,-72.1220028629999],[68.64747155000006,-72.10930754999985],[68.6849064460001,-72.09644947699992],[68.725840691,-72.08855559699985],[68.7518009770001,-72.090427342],[68.75554446700002,-72.0948218729999],[68.7586369150001,-72.10515715899999],[68.76099694100017,-72.10881926899995],[68.76482181100019,-72.11150481599994],[68.76921634200008,-72.11345794099998]]],[[[-12.724964972999912,-72.02800872199995],[-12.659494594999954,-72.05950286299988],[-12.659413214999887,-72.05950286299988],[-12.565541144999912,-72.10149504999995],[-12.522694464999944,-72.12835051899994],[-12.489654100999871,-72.16708749799997],[-12.566639777999882,-72.19638437299999],[-12.653960740999961,-72.19931406],[-12.742298956999917,-72.18515390399998],[-12.877593553999901,-72.14381275799987],[-12.921050584999932,-72.12118905999998],[-12.951324022999925,-72.09295012799993],[-12.967355923999918,-72.05632903399999],[-12.897328253999945,-72.00212981599995],[-12.810210740999906,-72.00066497199998],[-12.724964972999912,-72.02800872199995]]],[[[69.78736412900017,-72.0554338519999],[69.76840254000015,-72.06031666499989],[69.75953209700018,-72.060153904],[69.7332462900001,-72.05657317499985],[69.72689863400015,-72.05641041499989],[69.74919681100019,-72.04143645599986],[69.7029728520001,-71.9880510399999],[69.68279056100008,-71.97503020600001],[69.69874108200005,-71.96754322699994],[69.72201582100008,-71.95208098799992],[69.72584069100017,-71.94850025799987],[69.7278751960001,-71.943942967],[69.7275496750001,-71.94133880000001],[69.72584069100017,-71.93328215899989],[69.72478274800002,-71.9318986959999],[69.7537541020001,-71.91611093499995],[69.76246178500011,-71.909763279],[69.76531009200008,-71.905938409],[69.7663680350001,-71.90300872199998],[69.76840254000015,-71.89999765399996],[69.77409915500002,-71.89657968499988],[69.79346764400006,-71.89137135199996],[69.81723066500015,-71.88933684699995],[69.86207116000017,-71.89023202899995],[69.92448978000002,-71.90894947699991],[69.91358483200023,-71.93035247199995],[69.89991295700011,-71.9483374979999],[69.80616295700011,-72.0243466129999],[69.796153191,-72.04216887799988],[69.79867597700016,-72.04306405999988],[69.8009546230002,-72.04404062299994],[69.80298912900011,-72.04534270599986],[69.80486087300018,-72.04705169099995],[69.796641472,-72.05193450299991],[69.78736412900017,-72.0554338519999]]],[[[-98.28148352799991,-72.079196873],[-98.3087458979999,-72.12867603999996],[-98.31843014199987,-72.13681405999998],[-98.35260982999995,-72.15642669099985],[-98.29784094999991,-72.15536874799996],[-98.27354895699995,-72.14950937299994],[-98.16250566299993,-72.09319426899988],[-98.13239498599992,-72.08342864399991],[-98.06908118399986,-72.07822030999994],[-97.99364173099991,-72.08505624799994],[-97.85252844999988,-72.11695728999995],[-97.8697810539999,-72.12249114399997],[-97.95197506399985,-72.16399504999998],[-97.8255916009999,-72.16179778399999],[-97.7643123039999,-72.14251067499994],[-97.75373287699993,-72.09400807099989],[-97.77306067599997,-72.071384373],[-97.79987545499995,-72.06462981599998],[-97.82872473899987,-72.06170012799996],[-97.85423743399988,-72.05006275799995],[-97.86392167899993,-72.020440363],[-97.85602779899997,-71.9807268209999],[-97.84089107999998,-71.94646575299993],[-97.82884680899984,-71.93336353999996],[-97.8920792309999,-71.91073984199988],[-97.84349524599986,-71.89544036299985],[-97.73973548099987,-71.88339609199993],[-97.60277258999989,-71.88811614399992],[-97.49254309799989,-71.90927499800003],[-97.47232011599996,-71.90797291499993],[-97.62267005099997,-71.95045338299991],[-97.40786699099986,-71.98658619599993],[-97.36497962099992,-71.97991301899998],[-97.38963782499991,-72.01425546699994],[-97.41250566299989,-72.03460051899992],[-97.44139563699991,-72.04713307099993],[-97.59093176999991,-72.08407968499998],[-97.61831620999988,-72.09612395599999],[-97.58812415299988,-72.10621510199987],[-97.56810462099989,-72.12086353999996],[-97.5305883449999,-72.15943775799994],[-97.51720130099989,-72.16855234200003],[-97.47325598899992,-72.1911760399999],[-97.39411373599987,-72.20842864399991],[-97.30565344999994,-72.176853123],[-97.22313391799995,-72.12029387799998],[-97.16161048099988,-72.06324635199991],[-97.13707434799994,-72.03289153399993],[-97.11583411399997,-71.99895598799998],[-97.08446204299992,-71.92766692499988],[-97.04820716099991,-71.87639739399985],[-96.99010169199997,-71.84734465899996],[-96.92210852799991,-71.83489348799995],[-96.85651607999998,-71.83359140399993],[-96.82494055899988,-71.83806731599992],[-96.73623613199989,-71.860935154],[-96.36046301999988,-71.835056248],[-96.28233801999994,-71.84254322699996],[-96.20881100199998,-71.860609633],[-96.06533769399987,-71.91383228999989],[-96.0958145819999,-71.96965911299995],[-96.11506100199998,-71.99578215899992],[-96.13947506399992,-72.01360442499998],[-96.16869055899984,-72.02166106599992],[-96.20026607999995,-72.02369557099986],[-96.42284094999984,-72.00457122199998],[-96.50959225199995,-72.01376718499995],[-96.40729732999995,-72.05510833099999],[-96.38215084499987,-72.05689869599996],[-96.44005286399997,-72.0783830709999],[-96.49893144399994,-72.09197356599995],[-96.62010657499988,-72.10662200299996],[-96.99998938699989,-72.21428801899995],[-96.91600501199991,-72.24911874799996],[-96.82070878799996,-72.26539478999983],[-96.7237849599999,-72.26409270599993],[-96.44127356699988,-72.19345468499988],[-95.9532771479999,-72.14381275799987],[-95.73717200399992,-72.05632903399999],[-95.65811113199993,-72.04762135199992],[-95.59316972599996,-72.07683684699995],[-95.6893611319999,-72.09335702899993],[-95.71910559799991,-72.10328541499993],[-95.71715247299994,-72.10279713299994],[-95.71593176999994,-72.10279713299994],[-95.71548417899993,-72.10361093499995],[-95.71593176999994,-72.10458749800003],[-95.50291907499994,-72.15162525799994],[-95.5410050119999,-72.176853123],[-95.58983313699991,-72.19443124799994],[-95.64098059799987,-72.20663827899999],[-95.93628902899994,-72.22039153449998],[-96.23159745999989,-72.23414478999986],[-96.33617102799991,-72.25514088299988],[-96.37783769399996,-72.26970794099992],[-96.41576087099989,-72.28980885199996],[-96.41372636599993,-72.28932057099989],[-96.41246497299994,-72.28932057099989],[-96.41201738199993,-72.28980885199996],[-96.41242428299994,-72.29111093499988],[-96.34919186099988,-72.29566822699991],[-96.03880774599992,-72.25750090899986],[-95.97618567599991,-72.25920989399995],[-95.92198645699993,-72.27743905999994],[-95.86327063699994,-72.31780364399998],[-95.83849036399995,-72.32683684699998],[-95.81037350199996,-72.33171965899996],[-95.75328528599991,-72.33294036299998],[-95.55565344999994,-72.31267669099998],[-95.49921627499988,-72.31560637799998],[-95.4991755849999,-72.31560637799998],[-95.42886308499986,-72.33424244599989],[-95.4374080069999,-72.35523853999993],[-95.48094641799992,-72.37802499799994],[-95.51549231699991,-72.40203215899999],[-95.75527910099993,-72.43775807099993],[-96.02257239499997,-72.43645598799993],[-96.09679114499991,-72.46111419099992],[-96.0517471999999,-72.45566171699998],[-95.99063066299996,-72.47031015399989],[-95.94440670499995,-72.50156015399988],[-95.94391842399997,-72.54615650799994],[-95.98794511599986,-72.57431406000002],[-96.05475826699993,-72.58367278399996],[-96.3295385404999,-72.57223886499992],[-96.60431881399984,-72.56080494599986],[-96.65469316299988,-72.54534270599993],[-96.68932044199997,-72.52711353999986],[-96.71483313699987,-72.51702239399998],[-96.73997962099993,-72.51978932099995],[-96.77334550699993,-72.54045989399995],[-96.78750566299993,-72.56650155999994],[-96.85594641799992,-72.577813409],[-96.93610592399995,-72.58017343499988],[-97.12604732999988,-72.56121184699994],[-97.16881262899992,-72.54664478999992],[-97.1935115229999,-72.53264739399988],[-97.21190344999992,-72.51946379999993],[-97.23127193899987,-72.50994231599991],[-97.25902258999992,-72.50709400799998],[-97.59935462099986,-72.55722421699997],[-98.08975175649994,-72.56503671699997],[-98.5801488919999,-72.57284921699996],[-98.6730037099999,-72.54216887799996],[-98.62437903599994,-72.52971770599986],[-98.59178626199989,-72.51100025799997],[-98.53547115799992,-72.46412525799983],[-98.9660131499999,-72.48117441199997],[-99.39655514199985,-72.49822356599984],[-99.4680883449999,-72.46135833099994],[-99.40127519399995,-72.42782968500002],[-99.25104732999992,-72.409763279],[-99.18643144399988,-72.37542083099994],[-99.47553463449992,-72.37444426849993],[-99.76463782499988,-72.37346770599991],[-99.89195716099991,-72.33269622199985],[-99.98037675699995,-72.3212216129999],[-100.1404923169999,-72.27996184699995],[-100.2053116529999,-72.27125416499996],[-100.32803300699989,-72.28655364399992],[-100.37718665299991,-72.28484465900002],[-100.41576087099989,-72.25953541499997],[-100.81358801966658,-72.23593515433328],[-101.21141516833328,-72.21233489366664],[-101.60924231699988,-72.18873463299985],[-101.68834387899997,-72.16659921699997],[-101.72520911399992,-72.16301848799992],[-101.89932206899995,-72.1924781229999],[-101.96727454299993,-72.19329192499991],[-102.1826065749999,-72.16497161299993],[-102.29222571499993,-72.12672291499992],[-102.32371985599994,-72.064060154],[-102.3040258449999,-72.03573984199997],[-102.27358964799994,-72.0178361959999],[-102.08702551999991,-71.97389088299997],[-101.67461096924987,-71.95024993249999],[-101.26219641849994,-71.92660898199992],[-100.84978186774991,-71.90296803149994],[-100.43736731699988,-71.87932708099994],[-100.23989824099989,-71.82577890399993],[-100.13255774599992,-71.82187265399996],[-100.02879798099993,-71.84270598799985],[-99.94440670499995,-71.89381275799991],[-99.99327551999995,-71.93279387799998],[-100.0531306629999,-71.94329192499995],[-100.32164466099997,-71.95468515400002],[-100.3914688789999,-71.96746184699997],[-100.45197506399991,-71.99830494599993],[-100.02358964799993,-71.97275155999994],[-99.94538326699985,-71.97861093499998],[-99.86831620999986,-71.99627044099991],[-99.90269934799991,-72.0300432269999],[-99.89537512899992,-72.04607512799987],[-99.86115475199993,-72.04941171699998],[-99.74950110599987,-72.0402971329999],[-99.71760006399987,-72.03232187299996],[-99.69139563699991,-72.0149065079999],[-99.63109290299988,-71.95525481599998],[-99.5968318349999,-71.93873463299991],[-99.5480037099999,-71.93075937299987],[-99.49901282499985,-71.93043385199994],[-99.40135657499985,-71.94329192499995],[-99.20470130099993,-71.99749114399991],[-99.04137122299993,-72.07154713299997],[-99.00039628799993,-72.08391692499993],[-98.82282467399993,-72.09140390399998],[-98.73595130099994,-72.10588958099993],[-98.68553626199991,-72.10735442499998],[-98.63402258999992,-72.09807708099994],[-98.74876868399988,-72.01930103999996],[-98.78547115799998,-72.00237395599999],[-98.95970618399986,-71.96982187300001],[-99.10407467399993,-71.92164478999996],[-99.15257727799991,-71.91619231599994],[-99.1266983709999,-71.88827890399999],[-99.08971106699994,-71.87118905999995],[-99.01138261599989,-71.85312265399993],[-98.97028561099991,-71.83863697699998],[-98.88052324099988,-71.77418385199991],[-98.85627193899988,-71.76523202899988],[-98.8281143869999,-71.76051197699995],[-98.5316462879999,-71.7567684879999],[-98.25702877499987,-71.80820077949997],[-97.98241126199991,-71.85963307099983],[-98.04019120999993,-71.91562265399986],[-98.11522376199989,-71.9465471329999],[-98.29088294199994,-71.974216404],[-98.26646887899989,-72.00807057099996],[-98.25283769399994,-72.01653411299992],[-98.24323482999993,-72.02548593500003],[-98.22862708199995,-72.045017185],[-98.24250240799992,-72.05234140400002],[-98.26585852799991,-72.07048919099992],[-98.28148352799991,-72.079196873]]],[[[-3.228098110999923,-71.05282968499994],[-3.17906653599988,-71.11012135199996],[-2.986398891999954,-71.18434010199991],[-2.944569464999859,-71.22503020599999],[-3.036610480999855,-71.237399998],[-3.132720506999902,-71.23853932099996],[-3.224476691999882,-71.22893645599989],[-3.304188605999911,-71.20859140399998],[-3.337717251999948,-71.192966404],[-3.37083899599989,-71.17205169099995],[-3.39834550699993,-71.14999765399993],[-3.41502844999988,-71.12997812299997],[-3.400705532999893,-71.12265390399998],[-3.389556443999879,-71.11451588299987],[-3.370350714999915,-71.09384530999995],[-3.372385219999927,-71.09433359200003],[-3.373524542999888,-71.0940080709999],[-3.373890753999888,-71.09319426899998],[-3.373280402999939,-71.09156666499996],[-3.409291144999884,-71.06650155999988],[-3.368031378999945,-71.05291106599992],[-3.293202277999853,-71.04892343500003],[-3.228098110999923,-71.05282968499994]]],[[[-60.53066972599992,-71.05103932099986],[-60.61742102799988,-71.06308359199987],[-60.75658118399985,-71.04998137799998],[-60.889475063999896,-71.01881275799991],[-60.95734615799989,-70.97730885199991],[-60.914296027999875,-70.94158294099998],[-60.813343878999916,-70.91708749799993],[-60.69176184799996,-70.90943775799992],[-60.58702551999991,-70.92506275799991],[-60.53888912699995,-70.95427825299986],[-60.5165909499999,-70.99163176899998],[-60.51545162699995,-71.02743906],[-60.53066972599992,-71.05103932099986]]],[[[-2.899423794499938,-70.68287525799995],[-2.618072068999908,-70.69768645599993],[-2.559559699999852,-70.71062590899992],[-2.504628058999856,-70.73154062299999],[-2.568267381999931,-70.75758228999996],[-2.734364386999886,-70.7924130189999],[-2.717681443999936,-70.82008228999989],[-2.61156165299991,-70.84091562299997],[-2.298451300999886,-70.79273853999992],[-2.126942511999857,-70.81072356599996],[-2.080718553999872,-70.82561614399991],[-2.091297980999911,-70.83025481599995],[-2.131825324999852,-70.86679452899998],[-2.147328253999945,-70.8741187479999],[-2.196603969999927,-70.88779062299993],[-2.215931769999884,-70.89625416499996],[-2.234038865999878,-70.9069963519999],[-2.250884568999879,-70.91969166499986],[-2.265736456999946,-70.93450286299992],[-2.290598110999895,-70.96843840899996],[-2.297963019999884,-70.98853932099992],[-2.293120897999898,-71.00514088299997],[-2.303863084999904,-71.01637135199995],[-2.564320441999939,-71.13258228999989],[-2.734486456999946,-71.17099374799997],[-2.799956834999904,-71.16773853999993],[-2.817738410999908,-71.15618254999993],[-2.822336391999926,-71.12664153399996],[-2.843617316999911,-71.11207447699984],[-2.839100714999859,-71.094414972],[-2.840891079999921,-71.08001067499985],[-2.848784959999904,-71.06698984199987],[-2.862172003999916,-71.0534807269999],[-2.843617316999911,-71.05559661299999],[-2.818023240999935,-71.04501718499995],[-2.775705532999922,-71.020114842],[-2.752756313999924,-71.01132577899995],[-2.690825975999871,-70.995049738],[-2.667307094999899,-70.993747654],[-2.984974738999881,-70.93580494599983],[-2.963286912999905,-70.93328215899999],[-2.948394334999875,-70.91936614399992],[-2.942779100999871,-70.899509373],[-2.948597785999908,-70.87908294099995],[-2.964588995999918,-70.86532968500002],[-2.987294074999852,-70.85605234199997],[-3.011463995999861,-70.8498674459999],[-3.187733527999882,-70.82463958099986],[-3.440337693999908,-70.75188567499998],[-3.585560675999915,-70.73837656],[-3.571034308999856,-70.69280364399995],[-3.52570553299995,-70.68157317499995],[-3.410715298999946,-70.69247812299993],[-3.180775519999884,-70.66806405999998],[-2.899423794499938,-70.68287525799995]]],[[[2.145192905000073,-70.65007903399993],[2.115570509000122,-70.67555103999986],[2.05404707100007,-70.67351653400002],[1.989431186000104,-70.65447356599991],[1.950450066000116,-70.62900156],[1.951345248000024,-70.62322356599995],[1.953135613000114,-70.617852472],[1.953868035000142,-70.61191171699997],[1.951345248000024,-70.60426197699994],[1.999359571000099,-70.59742603999993],[2.065277540000068,-70.601006769],[2.122813347000147,-70.61760833099996],[2.145192905000073,-70.65007903399993]]],[[[-73.88390051999988,-70.57057057099993],[-73.61790930899986,-70.66961028399993],[-73.54747473899994,-70.71624114399992],[-73.55923417899993,-70.74968840899997],[-73.61888587099992,-70.77499765399993],[-74.00969397649993,-70.87513600049999],[-74.40050208199995,-70.97527434699998],[-74.65658525299997,-70.99932219849997],[-74.91266842399992,-71.02337004999995],[-75.31859290299997,-71.0615373676665],[-75.72451738199993,-71.09970468533331],[-76.13044186099997,-71.13787200299996],[-76.34557044199991,-71.122979425],[-76.40587317599994,-71.10751718499998],[-76.43268795499995,-71.09612395600001],[-76.45099850199988,-71.08440520599993],[-76.46556555899994,-71.07073333099999],[-76.53209387899994,-70.97332122199994],[-76.54255123599992,-70.96559010199982],[-76.46910559799991,-70.91920338299987],[-76.38206946499986,-70.888278904],[-76.10899817599994,-70.83766041499993],[-75.65440833249991,-70.80714283649993],[-75.19981848899992,-70.77662525799987],[-75.13158118399986,-70.75562916499983],[-75.07721920499992,-70.727146092],[-75.03929602799991,-70.69117603999993],[-75.0323787099999,-70.67034270599996],[-75.03278561099992,-70.62200286299985],[-75.0294490229999,-70.60808684699995],[-74.99974524599986,-70.59286874799997],[-74.95445716099994,-70.584567967],[-74.90392005099993,-70.5837541649999],[-74.85806230399993,-70.59172942499985],[-74.82087154899993,-70.60702890399999],[-74.67430579299987,-70.70240650799994],[-74.59609941299988,-70.79412200299991],[-74.56720943899995,-70.7924130189999],[-74.48908443899992,-70.76311614399998],[-74.46987870999988,-70.75139739399998],[-74.46515865799998,-70.65683359199996],[-74.4835505849999,-70.59343840899986],[-74.46336829299989,-70.57683684699998],[-74.38996334499987,-70.57545338299991],[-74.31883704299995,-70.58684661299998],[-74.24844316299993,-70.606540623],[-74.1751195949999,-70.64324309699992],[-74.15632076699984,-70.64983489399998],[-74.1006973949999,-70.65862395599996],[-74.14818274599992,-70.59482187299993],[-74.15754146999986,-70.58587005],[-74.13084876199994,-70.56511809699991],[-74.10155188699991,-70.55331796699994],[-74.06989498599995,-70.54827239399991],[-74.03612219999987,-70.54810963299994],[-73.88390051999988,-70.57057057099993]]],[[[-60.71654212099992,-70.71062590899992],[-60.81289628799993,-70.7146135399999],[-60.85753333199989,-70.70916106599988],[-60.885568813999924,-70.70012786299995],[-60.90680904899988,-70.68670012799996],[-60.982248501999955,-70.6208635399999],[-60.9811091789999,-70.61003997199991],[-60.975209113999966,-70.59661223799992],[-60.96825110599989,-70.58611419099995],[-60.96336829299992,-70.5837541649999],[-60.97093665299985,-70.57089609199996],[-60.97370357999991,-70.55877044099988],[-60.969390428999894,-70.54762135199987],[-60.95567786399988,-70.53777434699992],[-60.90046139199995,-70.52076588299997],[-60.83454342399992,-70.51238372199991],[-60.56997636599993,-70.50725676899998],[-60.50487219999991,-70.51751067499993],[-60.45335852799994,-70.54127369599983],[-60.44762122299997,-70.55046965899999],[-60.43675696499989,-70.58359140399993],[-60.43529212099992,-70.59677499799997],[-60.446888800999936,-70.62175872199998],[-60.46914628799987,-70.63982512800001],[-60.543527798999975,-70.67115650799997],[-60.71654212099992,-70.71062590899992]]],[[[-5.939849412999876,-70.42262135199998],[-5.978423631999931,-70.46510182099986],[-5.965972459999904,-70.49846770599993],[-5.88491777299987,-70.54941171699994],[-5.921701626999948,-70.56503671699993],[-6.119252081999946,-70.61288827899995],[-6.150054490999906,-70.6148414039999],[-6.174387173999889,-70.60605234200003],[-6.193104620999861,-70.58342864399995],[-6.190052863999966,-70.57887135199984],[-6.182728644999941,-70.57545338299991],[-6.1791072259999,-70.57154713299991],[-6.41624915299991,-70.47161223799993],[-6.45376542899993,-70.44443124800003],[-6.350819464999859,-70.45956796700003],[-6.29588782499988,-70.46021900799997],[-6.086903449999852,-70.40634530999995],[-6.012318488999881,-70.4035783829999],[-5.939849412999876,-70.42262135199998]]],[[[2.957855665000096,-70.61345794099992],[2.743662957000055,-70.62932708099984],[2.682383660000141,-70.62297942500001],[2.631602410000085,-70.602715753],[2.596039259000122,-70.56951262799998],[2.580821160000141,-70.52434661299985],[2.648448113000086,-70.493747654],[3.04981530000012,-70.38543059699998],[3.139170769000117,-70.37395598799995],[3.219899936000047,-70.39234791499999],[3.262380405000016,-70.43759531],[3.252614780000073,-70.48674895599993],[3.210948113000114,-70.53134531],[3.157888217000107,-70.56275807099986],[3.063243035000113,-70.59343840899986],[2.957855665000096,-70.61345794099992]]],[[[163.51563561300011,-70.37818775799997],[163.34620201900012,-70.39527760199991],[163.30958092500006,-70.38640715899996],[163.3193465500001,-70.38420989399987],[163.32715905000012,-70.38152434699998],[163.33399498800023,-70.37818775799997],[163.34017988400004,-70.37395598799995],[163.34888756600017,-70.36695728999996],[163.39568118600008,-70.34539153399996],[163.45533287900017,-70.33912525799991],[163.51628665500007,-70.34596119599983],[163.5666610040001,-70.36394622199995],[163.51563561300011,-70.37818775799997]]],[[[-3.130116339999915,-70.53110116999997],[-3.430409308999913,-70.53850676899995],[-3.476185675999915,-70.53045012799993],[-3.494536912999877,-70.52385833099996],[-3.509917772999898,-70.51441822699992],[-3.492502407999922,-70.48105234199987],[-3.461822068999936,-70.45875416499983],[-3.392486131999874,-70.42376067499993],[-3.296498175999886,-70.34970468499995],[-3.260487433999941,-70.33123137799993],[-3.144154425999943,-70.30071379999998],[-2.98859615799995,-70.28053150799997],[-2.833811001999891,-70.28142669099995],[-2.719390428999873,-70.31389739399985],[-2.696034308999856,-70.34319426899995],[-2.680572068999936,-70.38836028399992],[-2.67613684799997,-70.43596770599999],[-2.685047980999911,-70.47234465899997],[-2.711252407999922,-70.49724700299991],[-2.747059699999852,-70.51181406000003],[-2.82982337099989,-70.52369557099999],[-3.130116339999915,-70.53110116999997]]],[[[-71.66763261599988,-70.29583098799992],[-71.58836829299992,-70.29810963299998],[-71.5003555979999,-70.27678801899992],[-71.40876217399989,-70.26555754999993],[-71.31859290299988,-70.29876067499985],[-71.33934485599985,-70.32439544099992],[-71.37002519399996,-70.35222747199988],[-71.40558834499993,-70.378024998],[-71.53453528599988,-70.43621184699994],[-71.60163326699987,-70.45077890399988],[-71.64195716099994,-70.45273202899999],[-71.68089758999992,-70.44695403399986],[-71.71100826699987,-70.42978281],[-71.71104895699995,-70.42742278399996],[-71.71031653599991,-70.42498137799993],[-71.70995032499991,-70.42229583099996],[-71.71108964799991,-70.41969166499996],[-71.72622636599993,-70.40862395599993],[-71.74380449099996,-70.39902109199994],[-71.75894120999996,-70.38730234199996],[-71.76667232999995,-70.36972421699993],[-71.7659805979999,-70.36256275799997],[-71.76134192599991,-70.35100676899995],[-71.76162675699993,-70.34319426899995],[-71.7647598949999,-70.336521092],[-71.76984615799992,-70.33082447699984],[-71.81651770699992,-70.29583098799992],[-71.73167883999986,-70.27011484199997],[-71.68285071499986,-70.26482512799998],[-71.66763261599988,-70.29583098799992]]],[[[72.16456139400012,-70.65105559699992],[72.08448326900006,-70.65398528399993],[71.82691491000017,-70.62493254999995],[71.7869572270001,-70.60784270600001],[71.67359459700006,-70.5171851539999],[71.66049238400008,-70.50310637799996],[71.65137780000006,-70.48748137799997],[71.63689212300002,-70.4530575499999],[71.63135826900012,-70.42864348799998],[71.63086998800023,-70.37883880000001],[71.62330162900017,-70.3547502579999],[71.63428795700023,-70.34124114399992],[71.64177493600019,-70.3357072899999],[71.65381920700011,-70.33114999799994],[71.67611738400015,-70.30437590899986],[71.7146916020001,-70.2790666649999],[71.76124108200017,-70.26360442499998],[71.80836022200006,-70.26588307099986],[71.81910241000017,-70.27678801899992],[71.82341556100008,-70.295017185],[71.82984459700018,-70.31438567499991],[71.84791100400011,-70.32903411299985],[71.8475041020001,-70.36174895599996],[71.8620711600001,-70.38941822699996],[71.88599694100017,-70.41228606599988],[71.91325931100006,-70.42986419099991],[71.94654381600017,-70.44605885199987],[71.98170006600006,-70.45769622199995],[72.0177514980002,-70.46168385199994],[72.03541100400011,-70.46607838299984],[72.04932701900006,-70.47665780999998],[72.05827884200019,-70.49244557099983],[72.06462649800002,-70.50847747200001],[72.07300866000011,-70.52271900799991],[72.08814537900011,-70.53313567499991],[72.10474694100006,-70.537041925],[72.18620853000017,-70.53769296699994],[72.20085696700014,-70.54119231599985],[72.2111922540001,-70.54949309699992],[72.21404056100008,-70.56324635199994],[72.20866946700019,-70.57512786299998],[72.20085696700014,-70.58635833099997],[72.19703209700012,-70.59791432099992],[72.1974389980002,-70.60035572699995],[72.19800866000017,-70.602715753],[72.1990666020001,-70.60491301899998],[72.20036868600002,-70.60702890399999],[72.21680748800011,-70.62379322699982],[72.22022545700023,-70.63046640399998],[72.1936141290001,-70.6438127579999],[72.16456139400012,-70.65105559699992]]],[[[-70.70343990799992,-70.33424244599993],[-70.74010169199994,-70.33440520599999],[-70.77611243399991,-70.32756926899998],[-70.76891028599997,-70.30348072699987],[-70.7649633449999,-70.28240325299993],[-70.75885982999989,-70.2639299459999],[-70.74616451699984,-70.24976978999989],[-70.72227942599997,-70.24081796699996],[-70.69871985599991,-70.23853932099989],[-70.67617753799993,-70.24081796699996],[-70.65420488199993,-70.24651458099993],[-70.63243567599994,-70.25497812299997],[-70.6416723299999,-70.261325779],[-70.64928137899994,-70.26848723799995],[-70.65355383999989,-70.27678801899992],[-70.65249589799993,-70.2868791649999],[-70.64826412699989,-70.29314544099994],[-70.63890540299985,-70.30136484199994],[-70.63817298099993,-70.3067359349999],[-70.64834550699986,-70.31861744599986],[-70.66710364499994,-70.32683684699995],[-70.70343990799992,-70.33424244599993]]],[[[4.466807488000086,-70.50123463299988],[4.331390821000127,-70.50448984199993],[4.204844597000118,-70.46949635199994],[4.104665561000104,-70.40081145599993],[4.048838738000114,-70.30299244599996],[4.132660352000101,-70.25603606599994],[4.297211134000122,-70.23723723799998],[4.468760613000143,-70.24456145599999],[4.574392123000081,-70.27613697699998],[4.621755405000044,-70.35271575299996],[4.604746941000059,-70.42058684699995],[4.545583530000073,-70.47258879999993],[4.466807488000086,-70.50123463299988]]],[[[5.825856967000078,-70.30396900799994],[5.747325066000144,-70.34091562299997],[5.642914259000094,-70.32952239399991],[5.539886915000067,-70.29314544099994],[5.465586785000141,-70.25530364399991],[5.560069207000083,-70.22926197699994],[5.654633009000094,-70.22568124799996],[5.744802280000044,-70.24879322699991],[5.825856967000078,-70.30396900799994]]],[[[161.88803144600016,-70.25725676899995],[161.85572350400005,-70.26116301899995],[161.8287866550002,-70.25514088299994],[161.81185957099999,-70.24146900799991],[161.83448326900023,-70.22210051899998],[161.86768639400003,-70.21746184699994],[161.90007571700008,-70.22454192499993],[161.92042076900006,-70.24065520599999],[161.88803144600016,-70.25725676899995]]],[[[6.503672722000118,-70.22258879999988],[6.468109571000127,-70.22332122199991],[6.432465040000096,-70.21453215899992],[6.32911217500012,-70.16920338299984],[6.294606967000107,-70.14763762799993],[6.272715691000144,-70.12273528399989],[6.34327233200014,-70.12297942499993],[6.451670769000145,-70.13697682099989],[6.536468946000127,-70.164971613],[6.536468946000127,-70.20720794099994],[6.503672722000118,-70.22258879999988]]],[[[26.850433790000096,-70.39641692499984],[26.839854363000114,-70.41204192499993],[26.817881707000108,-70.42408619599993],[26.775726759000065,-70.43059661299985],[26.7376408210001,-70.42815520599999],[26.663422071000067,-70.41318124799987],[26.62330162900014,-70.411228123],[26.56544030000012,-70.42009856599995],[26.507823113000086,-70.44540781],[26.45777428500014,-70.45012786299992],[26.057302280000044,-70.39104583099999],[25.988047722000147,-70.36825937299987],[25.975352410000085,-70.34661223799988],[25.95020592500012,-70.332614842],[25.93238366000014,-70.3166643209999],[25.920258009000065,-70.30046965899986],[25.91228274800008,-70.28492603999985],[25.93962649800008,-70.26295338299994],[25.93767337300011,-70.24781666499993],[25.94092858200005,-70.23455169099991],[25.948903842000107,-70.22258879999988],[25.96029707100007,-70.21111419099992],[25.98731530000012,-70.19500090899994],[26.115082227000073,-70.15309010199987],[26.1365666020001,-70.14299895599999],[26.18816165500004,-70.10979583099989],[26.221934441000116,-70.09441497199994],[26.269216342000078,-70.07887135199994],[26.327403191000116,-70.06658294099998],[26.458262566000144,-70.05999114399991],[26.58969160200013,-70.07480234199996],[26.65015709700012,-70.09270598799993],[26.673106316000116,-70.10263437300003],[26.69157962300005,-70.11435312300001],[26.70606530000009,-70.12965260199998],[26.73747806100002,-70.18718840899994],[26.765635613000114,-70.22429778399989],[26.817230665000068,-70.27654387799998],[26.866953972000143,-70.30478280999994],[26.879893425000148,-70.31894296699997],[26.881683790000064,-70.33131275799991],[26.87671959700009,-70.34644947699991],[26.850433790000096,-70.39641692499984]]],[[[1.448903842000107,-70.0953915339999],[1.465017123000081,-70.15048593499994],[1.463226759000094,-70.149834894],[1.462168816000116,-70.14999765399998],[1.461761915000125,-70.15048593499994],[1.461761915000125,-70.15154387800001],[1.369883660000085,-70.20322030999995],[1.275726759000094,-70.27385833099991],[1.256846550000148,-70.3028296849999],[1.223480665000068,-70.37916432099993],[1.197764519000117,-70.40642669099991],[1.16382897200009,-70.41708749799986],[1.150726759000094,-70.39804452899988],[1.14161217500012,-70.36093515399995],[1.119313998000081,-70.317478123],[1.060394727000102,-70.26873137799997],[1.001638217000107,-70.23658619599993],[0.95679772200009,-70.19166432099993],[0.939707879000139,-70.10491301899991],[0.979502800000119,-70.065606378],[1.04249108200014,-70.04599374799994],[1.299571160000056,-70.02337004999988],[1.360850457000083,-70.02507903399989],[1.410980665000068,-70.04021575299988],[1.43539472700013,-70.06438567499998],[1.448903842000107,-70.0953915339999]]],[[[11.000824415000068,-70.0764299459999],[10.921885613000114,-70.08294036299998],[10.81202233200014,-70.07586028399993],[10.576182488000143,-70.0315080709999],[10.539805535000141,-70.01148853999993],[10.634613477000102,-70.00457122199992],[10.89421634200005,-70.01783619599996],[10.988047722000118,-70.04599374799994],[11.000824415000068,-70.0764299459999]]],[[[72.639903191,-69.99570077899998],[72.66130618600008,-70.00652434699988],[72.7181095710001,-70.00074635199991],[72.73015384200002,-70.00481536299988],[72.73113040500019,-70.02255624799987],[72.56072024800002,-70.09026458099997],[72.4593205090001,-70.10865650799994],[72.41195722700016,-70.07480234199996],[72.4355574880001,-70.06047942499998],[72.45606530000006,-70.05185312299997],[72.47193444100017,-70.05087656],[72.481700066,-70.05885182099996],[72.50554446700018,-70.05315520599999],[72.52662194100004,-70.04363372199998],[72.546153191,-70.03085702899995],[72.5979923840001,-69.98796965899996],[72.61597741000011,-69.97828541499992],[72.6370548840001,-69.96982187299997],[72.635915561,-69.97795989399998],[72.6360783210001,-69.98503997199995],[72.63746178500017,-69.99089934699998],[72.639903191,-69.99570077899998]]],[[[-61.17617753799996,-69.98113372199995],[-61.24669348899993,-69.98707447699996],[-61.288482225999864,-69.98430754999993],[-61.32966061099992,-69.97649504999993],[-61.36925208199997,-69.96282317499998],[-61.40599524599988,-69.94280364399992],[-61.39976966099991,-69.90593840899996],[-61.39435787699995,-69.89470794099995],[-61.384836391999954,-69.88307057099995],[-61.373402472999906,-69.8733049459999],[-61.36058508999989,-69.86532968499995],[-61.34683183499996,-69.85914478999989],[-61.30919348899988,-69.85125090899992],[-61.26821855399996,-69.85198333099994],[-61.190012173999946,-69.86785247199997],[-61.155018683999856,-69.87997812299987],[-61.138335740999906,-69.88860442499995],[-61.124175584999904,-69.89983489399997],[-61.115874803999894,-69.90984465899986],[-61.112945115999906,-69.91545989399995],[-61.11115475199991,-69.92180754999998],[-61.11164303299989,-69.92636484199993],[-61.11583411399991,-69.93401458099996],[-61.11656653599994,-69.93816497199998],[-61.114898240999935,-69.94475676899988],[-61.105376756999924,-69.96379973799996],[-61.17617753799996,-69.98113372199995]]],[[[-74.71792558499988,-69.76295338299992],[-74.7177628249999,-69.80380624799999],[-74.54792232999992,-69.85491301899995],[-74.5354711579999,-69.86101653399986],[-74.5241593089999,-69.86980559699992],[-74.50401770699997,-69.89039478999986],[-74.49290930899986,-69.89959075299993],[-74.47691809799994,-69.90813567499985],[-74.42690995999993,-69.92498137799986],[-74.41437740799991,-69.9312476539999],[-74.40713456899991,-69.937676691],[-74.40233313699991,-69.94703541499995],[-74.39708411399994,-69.96184661299992],[-74.40819251199986,-69.96249765399988],[-74.44448808499996,-69.97389088299984],[-74.57335364499994,-69.98601653399993],[-74.6094457669999,-69.983493748],[-74.62767493399986,-69.98455169099994],[-74.64244544199994,-69.99187590899996],[-74.6499731109999,-70.005466404],[-74.64830481699987,-70.01995208099996],[-74.64077714799993,-70.03394947699994],[-74.6309301419999,-70.04599374799994],[-74.6197810539999,-70.05478281],[-74.57925370999988,-70.073337498],[-74.5890193349999,-70.09107838299991],[-74.60216223899997,-70.10426197699987],[-74.61823482999995,-70.11435312300001],[-74.63683020699995,-70.12224700299998],[-74.71149654899995,-70.14153411299993],[-74.75731360599985,-70.16545989399998],[-74.77611243399991,-70.170993748],[-74.87315833199995,-70.18352630000001],[-75.1782730784999,-70.15862395649992],[-75.48338782499994,-70.13372161299985],[-75.48350989499991,-70.13372161299985],[-75.69310462099988,-70.11305103999993],[-75.78571529899995,-70.07968515399995],[-75.83169511599993,-70.01637135199991],[-75.80304928299995,-69.99358489399988],[-75.79491126199994,-69.95989348799988],[-75.77879798099988,-69.92327239399985],[-75.72622636599993,-69.89088307099993],[-75.60431881399995,-69.86492278399986],[-75.23013261599993,-69.84172942500001],[-75.23916581899994,-69.83668385199998],[-75.26988684799994,-69.80095794099995],[-75.2847387359999,-69.79306405999998],[-75.29938717399992,-69.78932057099993],[-75.38882402299991,-69.79208749799999],[-75.41755123599995,-69.78630950299994],[-75.43553626199991,-69.7688127579999],[-74.9627986319999,-69.7168921849999],[-74.78701738199989,-69.73601653399989],[-74.71792558499988,-69.76295338299992]]],[[[16.17156009200005,-70.07293059699991],[16.122243686000047,-70.07350025799997],[15.897227410000111,-69.98935312299994],[15.688243035000085,-69.96404387799991],[15.589121941000114,-69.9320614559999],[15.554942254000139,-69.87273528399992],[15.585703972000118,-69.83709075299998],[15.6307072270001,-69.80510833099999],[15.679453972000118,-69.77971770599996],[15.721853061000102,-69.76392994599983],[15.972178582000083,-69.71795012799996],[16.246836785000113,-69.70598723799992],[16.55209394600007,-69.71803150799994],[16.637217644000145,-69.74285247199998],[16.590179884000065,-69.77662525799997],[16.330414259000065,-69.8288713519999],[16.30844160200004,-69.83863697699992],[16.288747592000103,-69.84986744599993],[16.27173912900014,-69.8624813779999],[16.258799675000148,-69.87574635199994],[16.247243686000104,-69.89788176899992],[16.248871290000125,-69.91521575299991],[16.254079623000052,-69.93474700299997],[16.252207879000082,-69.96363697699991],[16.2395939460001,-69.987399998],[16.189626498000052,-70.05510833099993],[16.17156009200005,-70.07293059699991]]],[[[-71.94969641799992,-69.68279387799998],[-72.0184626939999,-69.71103280999995],[-72.0101619129999,-69.71599700299991],[-71.97036699099993,-69.75172291499995],[-72.00255286399988,-69.75172291499995],[-72.03465735599985,-69.740655206],[-72.10912024599992,-69.701267185],[-72.14150956899991,-69.68840911299999],[-72.15851803299998,-69.68474700299986],[-72.16759192599989,-69.6840145809999],[-72.17894446499986,-69.6845028629999],[-72.18993079299992,-69.68645598799995],[-72.19774329299992,-69.69085051899992],[-72.20311438699986,-69.70045338299991],[-72.19904537699992,-69.70623137799997],[-72.19098873599995,-69.71135833099999],[-72.18472245999992,-69.71917083099989],[-72.18517005099991,-69.72926197699994],[-72.19347083199989,-69.73365650799984],[-72.20531165299985,-69.73447030999994],[-72.4885554679999,-69.69215260199994],[-72.77179928299995,-69.64983489399992],[-72.79893958199997,-69.63982512799994],[-72.82721920499992,-69.61980559699988],[-72.83608964799986,-69.611911717],[-72.84007727799985,-69.60735442499995],[-72.84300696499987,-69.60214609199987],[-72.84552975199989,-69.58562590899989],[-72.87889563699989,-69.56861744599983],[-72.95677649599995,-69.54029713299997],[-72.98192298099993,-69.51392994599996],[-72.96800696499986,-69.48544687299986],[-72.92943274599989,-69.46005624799994],[-72.8334041009999,-69.42555103999993],[-72.74762936099995,-69.41350676899992],[-72.66185462099989,-69.416110935],[-72.39854895699995,-69.46526458099993],[-72.30870520699992,-69.50212981599991],[-72.29426021999987,-69.5207658829999],[-72.27122962099988,-69.53875090899992],[-72.23517818899995,-69.56064218499996],[-72.19261633999987,-69.57333749799993],[-72.18114173099985,-69.58017343499995],[-72.17503821499986,-69.58855559699991],[-72.1671036449999,-69.60670338299991],[-72.16038977799985,-69.614515883],[-72.15160071499989,-69.6197242169999],[-72.14037024599989,-69.62411874799997],[-72.0080460279999,-69.64999765399998],[-71.95734615799994,-69.66985442499998],[-71.94969641799992,-69.68279387799998]]],[[[-61.80231686099995,-69.50660572699996],[-61.79621334499986,-69.52743905999995],[-61.82506262899989,-69.53069426899997],[-61.88658606699994,-69.5241838519999],[-61.88634192599991,-69.52434661299996],[-61.91974850199997,-69.53777434699995],[-61.90123450399994,-69.57048919099998],[-61.88780676999996,-69.5881486959999],[-61.87621008999985,-69.59335702899999],[-61.88565019399996,-69.59880950299993],[-61.90990149599986,-69.61760833099987],[-61.93712317599995,-69.63014088299997],[-61.94505774599991,-69.6374651019999],[-61.92520097599992,-69.65829843499996],[-61.91893469999988,-69.66090260199996],[-61.94102942599994,-69.66432057099996],[-61.95840410099992,-69.67131926899995],[-61.966297980999904,-69.68499114399998],[-61.95995032499988,-69.70842864399995],[-61.978382941999904,-69.71941497199992],[-62.013335740999906,-69.72877369599986],[-62.05540930899989,-69.73316822699994],[-62.0951228509999,-69.72966887799984],[-62.12865149599992,-69.71795012799996],[-62.132069464999944,-69.70826588299991],[-62.12352454299991,-69.6991512999999],[-62.12083899599994,-69.68889739399998],[-62.137277798999946,-69.66912200299996],[-62.183583136999914,-69.62721119599996],[-62.19920813699991,-69.60613372199994],[-62.20018469999988,-69.59726327899998],[-62.194813605999904,-69.59197356599992],[-62.18712317599992,-69.58798593499994],[-62.18126380099994,-69.58269622199995],[-62.17882239499991,-69.5735002579999],[-62.18228105399992,-69.56804778399986],[-62.18785559799994,-69.56340911299992],[-62.1914770169999,-69.55641041499995],[-62.19090735599991,-69.54900481599994],[-62.185617641999954,-69.53533294099992],[-62.18569902299993,-69.52711353999992],[-62.198841925999886,-69.50807057099993],[-62.267974412999905,-69.45989348799996],[-62.311675584999875,-69.415704034],[-62.46865800699993,-69.32252369599996],[-62.51036536399991,-69.27459075299996],[-62.53929602799992,-69.22918059699988],[-62.57917233,-69.18914153399993],[-62.533518032999915,-69.15878671699987],[-62.46304277299996,-69.14641692499993],[-62.37954667899987,-69.14861419099991],[-62.19204667899996,-69.18621184699992],[-62.093251105999904,-69.22568124799997],[-62.04971269399991,-69.25221119599993],[-62.01797441299993,-69.28199635199995],[-61.85973059799997,-69.35979583099986],[-61.81940670499989,-69.37029387800001],[-61.830922003999945,-69.38396575299996],[-61.83039303299994,-69.39706796700001],[-61.82127844999987,-69.4092749979999],[-61.80695553299998,-69.42066822699987],[-61.77643795499994,-69.43694426899998],[-61.76720130099988,-69.44304778399989],[-61.755482550999886,-69.45427825299987],[-61.74624589799992,-69.464532159],[-61.73851477799991,-69.47535572699991],[-61.73420162699991,-69.48552825299986],[-61.73542232999991,-69.49325937299996],[-61.74860592399989,-69.50123463299991],[-61.76744544199991,-69.50457122199985],[-61.80231686099995,-69.50660572699996]]],[[[-70.02183997299997,-69.19158294099988],[-70.03099524599995,-69.19426848799995],[-70.04466712099989,-69.19264088299984],[-70.05671139199988,-69.19695403399992],[-70.05797278599991,-69.201836847],[-70.05451412699989,-69.21363697699996],[-70.05459550699987,-69.21933359199994],[-70.05821692599994,-69.22486744599996],[-70.06383216099994,-69.22975025799994],[-70.07591712099995,-69.23699309699995],[-70.09186764199987,-69.2429338519999],[-70.10899817599987,-69.24529387799986],[-70.12612870999993,-69.24334075299998],[-70.14195716099995,-69.23699309699995],[-70.10448157499994,-69.26930103999999],[-70.0917048819999,-69.2774390599999],[-70.09479732999998,-69.28069426899995],[-70.10826575399994,-69.30095794099994],[-70.07721920499995,-69.29111093500003],[-70.0440974599999,-69.28915780999998],[-69.86969967399997,-69.30413176899992],[-69.7671606109999,-69.28728606599992],[-69.73900305899991,-69.29371510199994],[-69.7027888659999,-69.31609465899996],[-69.56338456899996,-69.43670012799986],[-69.54621334499984,-69.4455705709999],[-69.53799394399994,-69.45142994599992],[-69.53490149599995,-69.45891692499991],[-69.53734290299987,-69.46306731599994],[-69.55215410099996,-69.47478606599994],[-69.51329505099994,-69.5069312479999],[-69.48200436099988,-69.52271900799994],[-69.47520911399995,-69.52898528399999],[-69.47370357999992,-69.53866952899995],[-69.47671464799993,-69.54713307099999],[-69.47838294199993,-69.5557593729999],[-69.47272701699984,-69.56519947699991],[-69.46003170499998,-69.57293059699992],[-69.41380774599989,-69.58570728999996],[-69.31712805899986,-69.62590911299995],[-69.32823645699997,-69.64690520599999],[-69.32974199099992,-69.65471770599999],[-69.3284805979999,-69.66179778399996],[-69.3147680329999,-69.69508228999986],[-69.31379146999993,-69.701755467],[-69.3147680329999,-69.70826588299991],[-69.31786048099988,-69.712985935],[-69.32388261599988,-69.71941497199992],[-69.33023027299993,-69.72470468499999],[-69.33438066299996,-69.72519296699997],[-69.32266191299996,-69.74504973799998],[-69.31818600199992,-69.76287200299996],[-69.32127844999988,-69.77809010199992],[-69.3321020169999,-69.79045989399998],[-69.3312068349999,-69.80559661299998],[-69.3138728509999,-69.8283830709999],[-69.27961178299992,-69.86288827899999],[-69.26545162699992,-69.88054778399992],[-69.26329505099991,-69.89381275799987],[-69.27057857999992,-69.90683359199994],[-69.28477942599994,-69.92310963299995],[-69.25645911399988,-69.93482838299997],[-69.24315344999988,-69.94231536299985],[-69.23277747299997,-69.95354583099993],[-69.22850501199986,-69.96453215899999],[-69.22581946499989,-69.97665780999998],[-69.22154700399997,-69.98796965899996],[-69.21251380099994,-69.99700286299998],[-69.14118404899997,-70.04859791499992],[-69.02745520699989,-70.159763279],[-68.72036699099995,-70.36907317499987],[-68.65982011599996,-70.43035247199998],[-68.63585364499991,-70.46453215899989],[-68.60472571499992,-70.52874114399992],[-68.58478756399992,-70.55282968499994],[-68.55955969999988,-70.56780364399998],[-68.50397701699993,-70.58945077899998],[-68.4785863919999,-70.60418059699995],[-68.4700414699999,-70.61052825299997],[-68.46629798099985,-70.61451588299997],[-68.46450761599996,-70.61939869599993],[-68.46629798099985,-70.62525807099989],[-68.47545325399994,-70.63502369599993],[-68.47663326699995,-70.63941822699991],[-68.47061113199996,-70.64478932099996],[-68.44001217399993,-70.65178801899995],[-68.42650305899986,-70.66863372199995],[-68.42739824099996,-70.7072893209999],[-68.41006425699995,-70.72291432099989],[-68.40269934799997,-70.72454192499991],[-68.39533443899998,-70.72527434699985],[-68.38902747299994,-70.72730885199996],[-68.38467363199993,-70.73316822699991],[-68.38560950399992,-70.73853932099996],[-68.39273027299987,-70.753513279],[-68.39391028599991,-70.75709400799997],[-68.38589433499996,-70.76287200299994],[-68.35708574099993,-70.77499765399993],[-68.3350723949999,-70.796319269],[-68.33018958199995,-70.799737238],[-68.4700414699999,-70.81096770599991],[-68.48119055899991,-70.80950286299995],[-68.45409094999988,-70.82317473799998],[-68.34569251199986,-70.835544529],[-68.30866451699993,-70.85418059699991],[-68.29918372299991,-70.86907317499995],[-68.3080134759999,-70.90300872199991],[-68.29385331899995,-70.9903296849999],[-68.29649817599994,-70.99667734200003],[-68.30996660099993,-71.01653411299985],[-68.28075110599987,-71.05673593499994],[-68.27257239499988,-71.07439544099995],[-68.27379309799991,-71.08025481599998],[-68.27916419199995,-71.08709075299991],[-68.28697669199994,-71.09343840899993],[-68.29572506399992,-71.09783294099992],[-68.28355872299994,-71.11565520599999],[-68.23810787699995,-71.16887786299998],[-68.24327551999997,-71.19670989399985],[-68.24339758999994,-71.23560963299994],[-68.23639889199995,-71.30022551899998],[-68.23737545499992,-71.309177342],[-68.23729407499985,-71.31755950299997],[-68.2344457669999,-71.327732029],[-68.22679602799988,-71.34124114399998],[-68.25812740799992,-71.35084400799997],[-68.26732337099989,-71.36785247199992],[-68.26341712099992,-71.38844166499996],[-68.25560462099992,-71.40886809699985],[-68.26500403599994,-71.41529713299995],[-68.26878821499984,-71.42205169099998],[-68.27049719999987,-71.42913176899995],[-68.27391516799989,-71.436618748],[-68.25352942599987,-71.4582658829999],[-68.23696855399993,-71.48105234199994],[-68.22378495999988,-71.50562916499986],[-68.20665442599993,-71.55193450299993],[-68.19737708199989,-71.56959400799994],[-68.18932044199994,-71.58001067499991],[-68.16124426999994,-71.60637786299993],[-68.19220943899998,-71.63339609199997],[-68.20734615799998,-71.66366952899998],[-68.21174068899995,-71.69931406],[-68.20864824099988,-71.82105885199995],[-68.2205297519999,-71.85833098799992],[-68.24974524599986,-71.88307057099989],[-68.30736243399994,-71.89527760199996],[-68.42552649599989,-71.890801691],[-68.48314368399986,-71.89690520599999],[-68.46471106699991,-71.909763279],[-68.44513912699995,-71.92782968500003],[-68.4288223949999,-71.94841887799988],[-68.42052161399994,-71.96892669099992],[-68.41869055899987,-71.98202890399989],[-68.41612708199995,-71.98894622199998],[-68.40982011599993,-71.99358489399992],[-68.36717688699989,-72.01425546699994],[-68.35863196499989,-72.02117278399993],[-68.34943600199989,-72.03199635199994],[-68.3438207669999,-72.04404062299994],[-68.34186764199994,-72.05706145599993],[-68.34365800699992,-72.071058852],[-68.35098222599993,-72.08342864399991],[-68.39028886599993,-72.12029387799998],[-68.40884355399994,-72.15398528399999],[-68.41413326699993,-72.21965911299989],[-68.43610592399995,-72.240817967],[-68.49669348899991,-72.25164153399999],[-68.55540930899994,-72.2439104149999],[-68.66869055899991,-72.21672942499998],[-68.71642005099997,-72.21396249800001],[-68.74107825399994,-72.21640390399995],[-68.76276607999995,-72.22340260199994],[-68.77407792899993,-72.23455169099994],[-68.77269446499994,-72.24675872199991],[-68.76325436099992,-72.25750090899986],[-68.75059973899997,-72.26482512799996],[-68.77017167899992,-72.27434661299995],[-68.85423743399988,-72.29363372199997],[-68.9128311839999,-72.29306406],[-68.91075598899991,-72.29859791499992],[-68.90461178299992,-72.30982838299994],[-68.90294348899991,-72.31536223799995],[-68.90387936099998,-72.31959400799997],[-68.90868079299987,-72.32708098799995],[-68.90953528599988,-72.33212655999998],[-68.90762285099993,-72.33587004999991],[-68.90046139199987,-72.345798435],[-68.90005449099995,-72.348890883],[-68.91539466099991,-72.36109791499996],[-68.93187415299991,-72.36809661299995],[-68.94969641799989,-72.37053801899997],[-69.00609290299994,-72.3661434879999],[-69.13878333199992,-72.37542083099994],[-69.14647376199994,-72.37810637799993],[-69.15294348899994,-72.38323333099986],[-69.15737870999992,-72.39137135199996],[-69.15746008999992,-72.39869557099996],[-69.15636145699995,-72.4061825499999],[-69.1575414699999,-72.414483331],[-69.17027747299994,-72.42180754999993],[-69.19408118399991,-72.42571379999993],[-69.22744706899991,-72.42669036299998],[-69.21336829299986,-72.4694963519999],[-69.19180253799996,-72.47527434699994],[-69.14028886599988,-72.50212981599994],[-69.21816972599996,-72.54290129999997],[-69.64399166599992,-72.58879973749993],[-70.06981360599985,-72.63469817499995],[-70.25649980399994,-72.63054778399992],[-70.5238337879999,-72.66757577899995],[-70.64614824099988,-72.66708749799996],[-70.67088782499985,-72.65976327899995],[-70.69005286399991,-72.64275481599996],[-70.69554602799985,-72.619805597],[-70.69823157499994,-72.59490325299996],[-70.70929928299994,-72.57219817499991],[-70.72484290299988,-72.56178150799984],[-70.7433162099999,-72.55877044099992],[-70.76256262899994,-72.56072356599988],[-70.78058834499987,-72.56552499799987],[-70.80528723899994,-72.57626718499998],[-70.81354732999995,-72.578708592],[-70.83934485599988,-72.57903411299985],[-70.84788977799991,-72.58098723799998],[-70.86168372299991,-72.59156666499993],[-70.86510169199991,-72.60515715899997],[-70.86636308499993,-72.619805597],[-70.87385006399998,-72.63372161299996],[-70.89468339799987,-72.646091404],[-70.92308508999989,-72.65097421699998],[-71.1915583974999,-72.640069269],[-71.46003170499992,-72.62916432099993],[-71.46007239499991,-72.62916432099993],[-71.93417314349995,-72.65182870899999],[-72.4082738919999,-72.67449309699985],[-72.51475989499994,-72.63933684699998],[-72.51089433499993,-72.62517669099995],[-72.50495357999992,-72.612399998],[-72.49689693899997,-72.60076262799991],[-72.48680579299992,-72.59026458099993],[-72.43211829299986,-72.55348072699995],[-72.50792395699992,-72.55510833099997],[-72.54621334499987,-72.56178150799984],[-72.64712480399989,-72.59929778399986],[-72.68126380099991,-72.60613372199995],[-72.71776282499988,-72.60751718499995],[-72.79971269399991,-72.59417083099993],[-73.10924231699997,-72.47340260199998],[-73.14671790299987,-72.45273202899988],[-73.16417395699995,-72.43124765400003],[-73.15428626199993,-72.42278411299999],[-73.09162350199995,-72.383396092],[-72.81956946499992,-72.29216887799993],[-72.67674719999985,-72.27125416499996],[-72.45392818899992,-72.27695077899995],[-72.32062740799995,-72.29599374799994],[-72.29259192599994,-72.30331796699994],[-72.27208411399991,-72.31560637799998],[-72.25816809799991,-72.33228932099993],[-72.25072180899994,-72.33945077899998],[-72.23985755099994,-72.34563567499995],[-72.23045813699993,-72.34937916499989],[-72.17967688699989,-72.36248137799996],[-72.1187231109999,-72.36003997199992],[-72.13512122299991,-72.34693775799994],[-72.13833574099996,-72.33953215899996],[-72.13337154899992,-72.330254816],[-72.12389075399989,-72.32431405999998],[-72.11204993399994,-72.32089609199997],[-72.09972083199989,-72.3191057269999],[-72.06493079299995,-72.31812916499983],[-71.87108313699991,-72.34880950300001],[-71.48395748599988,-72.36467864366652],[-71.09683183499988,-72.3805477843333],[-70.70970618399988,-72.39641692499998],[-70.65074622299991,-72.38884856599994],[-70.62804114499997,-72.38323333099986],[-70.62462317599997,-72.38103606599995],[-70.6218969389999,-72.375664972],[-70.62246660099996,-72.37078215899993],[-70.62376868399986,-72.36598072699994],[-70.6231990229999,-72.36142343499999],[-70.61473548099985,-72.35328541499989],[-70.60265051999994,-72.35027434699988],[-70.57453365799995,-72.34880950300001],[-70.18333899599989,-72.27385833099996],[-70.17398027299996,-72.26832447699994],[-70.15062415299985,-72.24822356599998],[-70.14248613199993,-72.244724217],[-70.12486731699991,-72.2413062479999],[-70.11632239499991,-72.23853932099993],[-70.18297278599997,-72.22226327899989],[-70.30223548099988,-72.2102190079999],[-70.31920325399994,-72.19898853999999],[-70.32795162699992,-72.17506275799984],[-70.36351477799988,-72.15642669099985],[-70.41161048099985,-72.14421965899996],[-70.45767167899989,-72.14023202899996],[-70.73619544199993,-72.17848072699994],[-71.04377193899995,-72.25758228999993],[-71.36717688699991,-72.28785572699984],[-71.5526423819999,-72.278415623],[-71.6952205069999,-72.23447030999998],[-71.68993079299992,-72.23267994599999],[-71.66397050699993,-72.21868254999993],[-72.05524654899997,-72.15813567499984],[-72.04295813699991,-72.13445403399993],[-72.01158606699988,-72.11972421700003],[-71.5492854484999,-72.08464934699995],[-71.08698482999995,-72.04957447699996],[-70.76976477799988,-71.98967864399991],[-70.74185136599993,-71.98105234199993],[-70.73444576699985,-71.96795012799996],[-70.73949133999989,-71.962497654],[-70.75377356699997,-71.95419687299994],[-70.75894120999988,-71.94939544099995],[-70.76268469999991,-71.93230559699991],[-70.75291907499988,-71.9201799459999],[-70.73631751199991,-71.91171640399988],[-70.71971594999985,-71.90569426899995],[-70.73525956899996,-71.89568450299988],[-70.8050837879999,-71.87216562300001],[-70.83714758999989,-71.85084400799987],[-70.85651607999989,-71.84563567499995],[-70.87975012899992,-71.84636809699998],[-71.06578528599995,-71.88201262799986],[-71.11636308499996,-71.88453541499996],[-71.16657467399995,-71.87981536299995],[-71.30540930899991,-71.84091562299993],[-71.39419511599996,-71.83342864399998],[-71.48428300699993,-71.84059010199994],[-71.78844153599994,-71.89861419099991],[-71.82974199099996,-71.89861419099991],[-71.85594641799992,-71.88713958099996],[-71.85350501199989,-71.88144296699997],[-71.85806230399992,-71.87232838299997],[-71.85704505099994,-71.86736419099992],[-71.85094153599997,-71.86321379999998],[-71.83458411399994,-71.85955169099985],[-71.82787024599992,-71.85515715899994],[-71.8236384759999,-71.84498463299991],[-71.82404537699989,-71.8329403629999],[-71.83055579299989,-71.80282968499988],[-71.8321833979999,-71.79908619599993],[-71.83674068899995,-71.7979468729999],[-71.86949622299997,-71.79957447699984],[-71.87755286399991,-71.7979468729999],[-71.88560950399993,-71.793552342],[-71.8995662099999,-71.78142669099992],[-71.90713456899996,-71.77613697699994],[-71.91690019399991,-71.77223072699995],[-72.00133216099997,-71.75416432099993],[-72.0049942699999,-71.75164153399992],[-72.0067032539999,-71.74684010199984],[-72.01252193899995,-71.73845794099996],[-72.01622473899991,-71.73479583099991],[-72.01862545499995,-71.733493748],[-72.13719641799992,-71.70175546699987],[-72.16612708199992,-71.69988372199998],[-72.18879146999987,-71.70777760199996],[-72.18374589799996,-71.7011044249999],[-72.17528235599991,-71.68238697699994],[-72.16958574099992,-71.67498137799996],[-72.26305091099991,-71.64202239399998],[-72.25926673099988,-71.63795338299984],[-72.25206458199995,-71.628106378],[-72.24771074099993,-71.62411874799993],[-72.33893795499992,-71.61345794099998],[-72.34447180899986,-71.61492278399994],[-72.35016842399992,-71.62086353999989],[-72.35594641799987,-71.63355885199994],[-72.36363684799991,-71.63933684699991],[-72.37482662699992,-71.64324309699998],[-72.4102677069999,-71.650974217],[-72.4272354809999,-71.65764739399997],[-72.4410701159999,-71.66643645599993],[-72.44725501199986,-71.67888762799996],[-72.44098873599992,-71.69654713299997],[-72.54063880099994,-71.73154062299987],[-72.54930579299995,-71.74822356599991],[-72.63817298099988,-71.73259856599992],[-72.67129472599993,-71.73333098799995],[-72.68309485599988,-71.73984140399993],[-72.68887285099996,-71.75351327899998],[-72.69029700399992,-71.76921965899986],[-72.68907630099991,-71.78248463299997],[-72.68700110599988,-71.78394947699994],[-72.67503821499986,-71.79062265399999],[-72.68268795499998,-71.80429452899993],[-72.69933020699992,-71.82683684700001],[-72.71149654899992,-71.85898202899998],[-72.71153723899991,-71.860935154],[-72.74152584499987,-71.88543059699994],[-72.77989661399988,-71.90243906],[-72.85936438699987,-71.920993748],[-72.94701087099992,-71.92896900799997],[-73.03506425699993,-71.92644622199995],[-73.22370357999998,-71.89763762799991],[-73.40843665299991,-71.8492977839999],[-73.50462805899986,-71.8355445289999],[-73.78905188699994,-71.838555597],[-73.87889563699984,-71.86419036299988],[-73.50133216099994,-72.01246510199987],[-73.78522701699993,-72.09490325299988],[-73.80626380099994,-72.13144296700001],[-73.89256751199989,-72.15683359199994],[-74.00475012899992,-72.17351653399989],[-74.12132727799985,-72.17245859199993],[-74.22077389199984,-72.14446379999991],[-74.31212317599989,-72.06568775799994],[-74.3578181629999,-72.04436614399988],[-74.3967992829999,-72.0402971329999],[-74.6582738919999,-72.0749651019999],[-74.81598873599998,-72.06487395599993],[-75.08600826749995,-71.99423593549992],[-75.35602779899992,-71.92359791499983],[-75.39976966099987,-71.902520441],[-75.42870032499988,-71.87493254999998],[-75.43834387899994,-71.83684661299998],[-75.40241451699987,-71.80103932099989],[-75.34707597599987,-71.78948333099996],[-75.28709876199986,-71.78704192499993],[-75.23717200399992,-71.77874114399985],[-75.24998938699993,-71.76051197699995],[-75.1771541009999,-71.75261809699998],[-75.18846594999988,-71.74212004999993],[-75.20759029899995,-71.73430754999991],[-75.24469967399997,-71.72437916499993],[-75.24071204299989,-71.71965911299992],[-75.2359106109999,-71.71559010199987],[-75.23033606699987,-71.71249765399996],[-75.22423255099991,-71.71054452900002],[-75.24351966099994,-71.69833749799994],[-75.26891028599997,-71.69304778399997],[-75.31891842399989,-71.69133879999997],[-75.40371660099987,-71.6708309879999],[-75.41413326699985,-71.66090260199991],[-75.3819880849999,-71.63600025799997],[-75.33202063699986,-71.6224911439999],[-75.19945227799994,-71.60491301899988],[-75.19123287699995,-71.58896249799986],[-75.17015540299991,-71.57105885199991],[-75.14500891799995,-71.55527109199987],[-75.12466386599993,-71.54534270599996],[-75.07876542899986,-71.533949477],[-75.0164281889999,-71.52654387799991],[-74.88585364499991,-71.52841562299997],[-74.79344641799987,-71.55364348799985],[-74.64403235599988,-71.62656015399996],[-74.39024817599991,-71.66814544099984],[-74.35440019399991,-71.66725025799994],[-74.28954016799992,-71.65789153399992],[-74.27863521999983,-71.65081145599986],[-74.27879798099991,-71.63600025799997],[-74.29588782499985,-71.62525807099996],[-74.33592688699989,-71.61272551899995],[-74.39704342399995,-71.58367278399999],[-74.38463294199991,-71.56113046699998],[-74.38874264199987,-71.53826262799998],[-74.40656490799991,-71.51580169099998],[-74.43545488199993,-71.49391041499996],[-74.4115291009999,-71.47486744599996],[-74.43663489499997,-71.4509416649999],[-74.42275956899988,-71.42831796699993],[-74.36815344999991,-71.40846119599993],[-74.22248287699992,-71.38193124799997],[-74.12218176999994,-71.38298919099992],[-73.85220292899993,-71.455661717],[-73.78848222599987,-71.48674895600001],[-73.75690670499998,-71.51034921699996],[-73.58067786399997,-71.56804778399999],[-73.52521725199988,-71.60621510199996],[-73.45881100199995,-71.59531015399999],[-73.33641516799989,-71.53679778399993],[-73.40444902299996,-71.498467706],[-73.58307857999992,-71.45631275799987],[-73.6600642569999,-71.41057708099986],[-73.6725154289999,-71.38884856599988],[-73.66930091099994,-71.36793385199991],[-73.6539607409999,-71.34954192499997],[-73.63048255099994,-71.33521900799998],[-73.58531653599988,-71.32293059699991],[-73.40794837099995,-71.31536223799998],[-73.08267167849996,-71.35995859199987],[-72.7573949859999,-71.40455494599993],[-72.64590410099989,-71.403415623],[-72.62718665299991,-71.39967213299997],[-72.6100154289999,-71.37476978999992],[-72.56745357999995,-71.36419036299998],[-72.18895423099994,-71.373142185],[-72.20807857999992,-71.35995859199987],[-72.21690833199997,-71.35149504999993],[-72.21873938699994,-71.3420549459999],[-72.21133378799996,-71.33619557099996],[-72.1974177729999,-71.33180103999997],[-72.18297278599994,-71.32968515399988],[-72.17381751199994,-71.33025481599994],[-72.3152970039999,-71.28883228999983],[-72.60558020749997,-71.25961679499997],[-72.89586341099994,-71.23040129999985],[-73.05353756399995,-71.1817359349999],[-73.12458248599992,-71.14397551899985],[-73.10081946499992,-71.11565520599999],[-73.06493079299992,-71.10279713299997],[-72.91649329299989,-71.10165780999994],[-72.85997473899994,-71.09498463299995],[-72.85016842399992,-71.09107838299998],[-72.82673092399995,-71.07268645599994],[-72.81700598899991,-71.068454685],[-72.78612219999985,-71.06275807099993],[-72.5321345689999,-71.075778904],[-72.39541581899996,-71.06511809699998],[-72.04273434149994,-71.11199309699985],[-71.69005286399991,-71.15886809699998],[-71.54629472599987,-71.1366513],[-71.35968990799995,-71.06910572699996],[-71.34455318899995,-71.05934010199994],[-71.3353572259999,-71.05071379999993],[-71.31969153599991,-71.0318335919999],[-71.30992591099997,-71.0232072899999],[-71.3292130199999,-71.01775481599995],[-71.35073808499993,-71.00603606599996],[-71.36363684799994,-70.99000416499997],[-71.35704505099997,-70.97136809699998],[-71.34357662699998,-70.96607838299991],[-71.32461503799996,-70.96607838299991],[-71.18663489499991,-70.99521249799997],[-71.15172278599988,-70.99749114399985],[-71.11961829299992,-70.99114348799992],[-71.05483964799988,-70.966892185],[-71.02550208199989,-70.9621721329999],[-70.80451412699992,-70.99781666499996],[-70.71788489499988,-70.99846770600001],[-70.41120357999995,-70.94540781],[-70.29918372299996,-70.95240650799997],[-70.20848548099988,-70.98796965899986],[-70.13341223899994,-71.04013437299997],[-70.01195227799985,-71.14478932099986],[-69.99681555899986,-71.15178801899994],[-69.93321692599997,-71.16025155999998],[-69.88744055899988,-71.15935637799998],[-69.87897701699993,-71.15683359199997],[-69.87889563699994,-71.14837004999993],[-69.86607825399992,-71.14739348799993],[-69.83800208199992,-71.1519507789999],[-69.83910071499986,-71.14519622199995],[-69.83861243399987,-71.12444426899995],[-69.83739173099985,-71.12078215899992],[-69.83336341099988,-71.11370208099986],[-69.83299719999988,-71.10947031000002],[-69.83438066299993,-71.106540623],[-69.83918209499983,-71.1005184879999],[-69.84019934799991,-71.09840260199988],[-69.8363337879999,-71.08228932099983],[-69.82628333199992,-71.06462981599991],[-69.81224524599986,-71.05006275799997],[-69.79674231699994,-71.04363372199995],[-69.82388261599988,-71.00579192499993],[-69.83336341099988,-70.98414478999993],[-69.83653723899992,-70.96184661299998],[-69.83161373599998,-70.94247812299997],[-69.82013912699995,-70.92571379999995],[-69.78917395699992,-70.89934661299993],[-69.80504309799993,-70.88884856599998],[-69.80968176999997,-70.884372654],[-69.78913326699993,-70.87493254999991],[-69.78014075399989,-70.86760833099999],[-69.77627519399991,-70.85808684699991],[-69.78669186099998,-70.85344817499988],[-69.83657792899993,-70.83798593499995],[-69.8536677729999,-70.835544529],[-69.86485755099989,-70.83863697699991],[-69.87450110599985,-70.8438453099999],[-69.90953528599994,-70.87265390399993],[-69.91930091099991,-70.87835051899992],[-69.93032792899993,-70.88152434699998],[-69.9525447259999,-70.8788388],[-69.99673417899987,-70.85686614399998],[-70.0199275379999,-70.84978606599992],[-70.15392005099989,-70.85800546699993],[-70.17027747299991,-70.85605234199997],[-70.21263587099992,-70.84010182099996],[-70.40269934799991,-70.81910572699984],[-70.70128333199992,-70.83180103999997],[-70.78693600199989,-70.82008228999989],[-71.00218665299988,-70.76555754999993],[-71.16608639199987,-70.75595468500003],[-71.19920813699987,-70.74480559699992],[-71.20982825399993,-70.73845794099998],[-71.2164607409999,-70.73121510199996],[-71.22105872299994,-70.72275156],[-71.23037675699986,-70.69850025799994],[-71.23395748599995,-70.6934546849999],[-71.2402237619999,-70.68824635199991],[-71.26650956899991,-70.68010833099997],[-71.2523494129999,-70.64885833099993],[-71.22134355399987,-70.6260718729999],[-71.07632402299993,-70.56064218500003],[-71.06590735599993,-70.54762135199987],[-71.05772864499994,-70.54013437299997],[-71.01598059799989,-70.51767343499998],[-71.00308183499988,-70.51376718499998],[-71.02212480399987,-70.48447030999988],[-70.99860592399992,-70.46575286299989],[-70.55805416599998,-70.39775969849998],[-70.11750240799992,-70.32976653399996],[-70.07819576699993,-70.33245208099986],[-69.69456946499992,-70.42058684699995],[-69.59605872299991,-70.42343515399999],[-69.57648678299992,-70.41708749799986],[-69.58849036399992,-70.39348723799992],[-69.61400305899994,-70.37558359199997],[-69.6695043609999,-70.35393645599989],[-70.11119544199988,-70.242771092],[-70.23180091099997,-70.23512135199996],[-70.2420548169999,-70.22975025799991],[-70.23741614499997,-70.22405364399994],[-70.2364802729999,-70.22332122199991],[-70.24400794199994,-70.19207122199994],[-70.21776282499991,-70.17913176899992],[-70.18399003799992,-70.17473723799995],[-70.16926021999984,-70.16863372199995],[-70.17308508999986,-70.15886809699992],[-70.17833411399994,-70.15056731599985],[-70.18565833199995,-70.14413827899993],[-70.19566809799994,-70.14006926899988],[-70.23070227799994,-70.13632577900003],[-70.47362219999991,-70.16790129999993],[-70.54088294199994,-70.16619231599991],[-70.57140051999988,-70.15862395599989],[-70.65217037699989,-70.12029387799986],[-70.67422441299988,-70.11581796699997],[-70.69806881399995,-70.114841404],[-70.77977454299986,-70.12566497199991],[-70.79653886599986,-70.13437265399998],[-70.80101477799994,-70.14910247199998],[-70.79930579299995,-70.15146249800003],[-70.79303951699988,-70.15748463299994],[-70.79173743399988,-70.15927499799993],[-70.82111568899998,-70.16480885199994],[-70.93927975199995,-70.216403904],[-70.9636938139999,-70.22031015399989],[-70.97956295499992,-70.212497654],[-70.99986731699991,-70.21184661299995],[-71.05919348899991,-70.22405364399994],[-71.07673092399995,-70.22226327899995],[-71.09040279899997,-70.21575286299995],[-71.11823482999992,-70.19850025799994],[-71.15184485599985,-70.18816497199985],[-71.31688391799986,-70.17734140399995],[-71.33486894399991,-70.17083098799995],[-71.3473201159999,-70.1623674459999],[-71.36949622299989,-70.14169687299989],[-71.38194739499991,-70.13347747199998],[-71.39964758999992,-70.12786223799999],[-71.54816646999984,-70.1106096329999],[-71.69749915299988,-70.07545338299984],[-71.78449459499984,-70.04225025799991],[-71.81110592399997,-70.0276018209999],[-71.81932532499988,-70.01970794099992],[-71.83332271999984,-70.00172291499997],[-71.84178626199989,-69.99439869599989],[-71.85033118399991,-69.99041106599991],[-71.8797094389999,-69.98064544099996],[-71.91222083199997,-69.96591562299996],[-71.9276423819999,-69.95419687299997],[-71.93211829299989,-69.94052499799994],[-71.9259333979999,-69.93271249799994],[-71.89232337099989,-69.91025155999995],[-71.91071529899992,-69.89430103999986],[-71.89395097599989,-69.87997812299987],[-71.86489824099993,-69.86532968499995],[-71.8464249339999,-69.84840260199996],[-71.83897864499994,-69.80380624799999],[-71.83462480399993,-69.79957447699996],[-71.84300696499992,-69.79265715899996],[-71.86359615799992,-69.7847632789999],[-71.87242591099991,-69.7782528629999],[-71.87938391799989,-69.76775481599994],[-71.87954667899993,-69.75986093499995],[-71.87352454299993,-69.754489842],[-71.86143958199995,-69.75164153399996],[-71.87535559799991,-69.7380510399999],[-71.89769446499993,-69.72283294099992],[-71.91161048099991,-69.70826588299991],[-71.89989173099994,-69.69695403400002],[-71.8905330069999,-69.68287525799997],[-71.86148027299993,-69.67156340899997],[-71.74205481699997,-69.64690520599999],[-71.72313391799995,-69.64072030999994],[-71.73302161399994,-69.63665129999988],[-71.74303137899994,-69.63095468499998],[-71.75104732999998,-69.62322356599996],[-71.75475012899992,-69.61321379999998],[-71.75279700399997,-69.607598566],[-71.74339758999986,-69.59295012799997],[-71.74103756399988,-69.59042734199997],[-71.74128170499995,-69.56658294099998],[-71.72288977799991,-69.54615650799991],[-71.67560787699995,-69.51083749799997],[-71.67931067599989,-69.5069312479999],[-71.68358313699989,-69.50359465899996],[-71.68822180899991,-69.50107187299994],[-71.69318600199998,-69.499118748],[-71.68122311099995,-69.48154062299997],[-71.67418372299997,-69.47372812299997],[-71.66535396999993,-69.46770598799988],[-71.65343176999997,-69.46306731599994],[-71.61587480399996,-69.45484791499985],[-71.63646399599989,-69.445977472],[-71.68980872299994,-69.41130950299993],[-71.68224036399991,-69.40471770599986],[-71.67251542899996,-69.39950937299994],[-71.6620173819999,-69.39576588299991],[-71.65192623599992,-69.39430103999996],[-71.67735755099994,-69.386325779],[-71.80329342399989,-69.37493254999985],[-71.82494055899988,-69.36907317499997],[-71.84178626199989,-69.35751718499988],[-71.85260982999996,-69.35182057099999],[-71.92658443899995,-69.34050872199991],[-71.95295162699995,-69.33074309699997],[-71.96198482999995,-69.318942967],[-71.98265540299988,-69.31536223799992],[-72.07998613199995,-69.31780364399995],[-72.0979711579999,-69.31267669099995],[-72.05378170499992,-69.30462005000001],[-72.04185950399997,-69.29599374799999],[-72.05744381399998,-69.27922942499998],[-72.14207923099988,-69.23235442499994],[-72.15876217399992,-69.22665780999994],[-72.14329993399991,-69.21021900799987],[-72.12246660099991,-69.17449309699992],[-72.10435950399992,-69.16171640399998],[-72.11587480399996,-69.15715911299985],[-72.16307532499994,-69.11988697699996],[-72.19033769399991,-69.1071916649999],[-72.19888261599993,-69.09775155999998],[-72.19701087099989,-69.08245208099993],[-72.18545488199996,-69.06796640399998],[-72.16812089799996,-69.055759373],[-72.04613196499989,-68.99187590899999],[-72.01353919199994,-68.96103281000002],[-72.01268469999994,-68.95549895599991],[-71.70824134049994,-68.90776946399995],[-71.40379798099994,-68.860039972],[-71.01085364499988,-68.85906340899993],[-70.9217830069999,-68.84246184699997],[-70.90367591099988,-68.8233374979999],[-70.8724666009999,-68.81406015399993],[-70.59679114499991,-68.80396900799997],[-70.46955318899995,-68.7811825499999],[-70.43496660099994,-68.78004322699991],[-70.40208899599986,-68.78679778399986],[-70.31314042899996,-68.83757903399999],[-70.1603897779999,-68.86353932099999],[-70.10558020699996,-68.8907203099999],[-70.09666907499985,-68.90252044099988],[-70.09357662699995,-68.91326262799998],[-70.09422766799992,-68.93792083099989],[-70.09166419199991,-68.95232512799986],[-70.08507239499994,-68.96477629999995],[-70.06615149599992,-68.98642343499995],[-70.09996497299987,-68.99968840899989],[-70.10651607999995,-69.0009091129999],[-70.07754472599987,-69.04924895599991],[-70.06924394399991,-69.05559661299995],[-70.03189042899993,-69.07122161299992],[-69.99429277299993,-69.09368254999993],[-70.02696692599997,-69.09742603999995],[-70.05939693899995,-69.105889581],[-70.07119706899994,-69.11174895599986],[-70.07941646999983,-69.11842213299991],[-70.09434973899988,-69.13616301899998],[-70.05284583199989,-69.14617278399989],[-70.03490149599993,-69.156833592],[-70.0233455069999,-69.17457447699991],[-70.02183997299997,-69.19158294099988]]],[[[-90.52269446499987,-68.81194426899992],[-90.53368079299995,-68.81243254999993],[-90.55313066299993,-68.81226978999996],[-90.56745357999992,-68.81275807099993],[-90.58177649599992,-68.8142229149999],[-90.59569251199989,-68.81601327899998],[-90.60391191299988,-68.81747812299994],[-90.60692298099987,-68.81747812299994],[-90.61021887899992,-68.815524998],[-90.61497962099992,-68.81113046700001],[-90.62490800699993,-68.80242278399993],[-90.6336156889999,-68.79387786299992],[-90.63857988199996,-68.78508879999985],[-90.63459225199998,-68.77369557099989],[-90.62376868399987,-68.76864999799994],[-90.62328040299991,-68.76140715899993],[-90.62328040299991,-68.75212981599988],[-90.61803137899992,-68.74391041499997],[-90.61497962099992,-68.735528253],[-90.61571204299995,-68.73064544099995],[-90.61229407499994,-68.72795989399997],[-90.60334225199992,-68.72625090899996],[-90.58665930899988,-68.72649504999991],[-90.5762426419999,-68.72722747199994],[-90.55719967399989,-68.72812265399993],[-90.54820716099997,-68.72918059699998],[-90.53502356699991,-68.73259856599998],[-90.52196204299995,-68.74260833099989],[-90.5117081369999,-68.75261809699995],[-90.5117081369999,-68.75709400799984],[-90.50942949099992,-68.76295338299997],[-90.50772050699993,-68.76995208099986],[-90.5057266919999,-68.77841562299999],[-90.50121008999994,-68.78541432099996],[-90.50475012899992,-68.79745859199997],[-90.51244055899986,-68.80917734199996],[-90.51943925699993,-68.81145598799995],[-90.52269446499987,-68.81194426899992]]],[[[-60.675892706999946,-68.79517994599989],[-60.74608313699988,-68.79892343499994],[-60.7835994129999,-68.79363372199997],[-60.89411373599992,-68.75994231599996],[-60.99644934799994,-68.72307708099999],[-61.021148240999935,-68.70671965899989],[-60.968617316999875,-68.68238697699991],[-60.88304602799991,-68.67937590899992],[-60.79051673099991,-68.6919898419999],[-60.71715247299989,-68.715264581],[-60.667836066999904,-68.74716562300001],[-60.652007615999956,-68.77581145599999],[-60.675892706999946,-68.79517994599989]]],[[[-67.16299394399996,-68.15797291499997],[-67.20075436099992,-68.1726213519999],[-67.2355037099999,-68.17164478999992],[-67.25495357999998,-68.14478932099993],[-67.24010169199991,-68.13307057099993],[-67.20201575399994,-68.13160572699996],[-67.13499915299985,-68.13811614399988],[-67.16299394399996,-68.15797291499997]]],[[[-66.87547766799992,-67.88396575299998],[-66.90111243399988,-67.88836028399996],[-66.9986466139999,-67.88209400799991],[-67.02098548099994,-67.87444426899998],[-67.04002844999994,-67.86142343499989],[-66.94554602799987,-67.8488908829999],[-66.8983455069999,-67.85328541499999],[-66.85537675699996,-67.87224700299998],[-66.87547766799992,-67.88396575299998]]],[[[-67.21153723899994,-67.89234791499986],[-67.24640865799995,-67.89397551899988],[-67.27501380099994,-67.88445403399996],[-67.29063880099991,-67.87623463299997],[-67.29255123599998,-67.86882903399999],[-67.25377356699997,-67.84954192499995],[-67.23509680899988,-67.83391692499997],[-67.2337947259999,-67.83082447699988],[-67.33678137899994,-67.81829192499998],[-67.23729407499988,-67.79827239399991],[-67.18594316299996,-67.79412200299988],[-67.15103105399993,-67.79843515399998],[-67.13410396999986,-67.80339934699992],[-67.08307857999995,-67.83269622199995],[-67.10460364499988,-67.85068124799999],[-67.1273494129999,-67.864841404],[-67.17747962099992,-67.88494231599995],[-67.21153723899994,-67.89234791499986]]],[[[-64.58731035099993,-67.610772394],[-64.56371008999992,-67.6203752579999],[-64.65094967399992,-67.66106536299988],[-64.6778865229999,-67.6692033829999],[-64.70714270699992,-67.67424895599993],[-64.73615475199989,-67.673435154],[-64.7625219389999,-67.66448333099989],[-64.74583899599985,-67.65178801899992],[-64.77403723899994,-67.64153411299998],[-64.79987545499995,-67.63779062299996],[-64.8260798819999,-67.64023202899999],[-64.90461178299992,-67.665622654],[-64.93000240799992,-67.66822682099992],[-64.9543350899999,-67.661390883],[-64.94737708199992,-67.65886809699998],[-64.93858801999994,-67.64902109199987],[-64.93101966099991,-67.63730234199996],[-64.92756100199989,-67.62916432099986],[-64.92853756399998,-67.62029387799991],[-64.93224036399991,-67.61248137800001],[-64.94050045499992,-67.59880950299988],[-64.89565995999988,-67.59921640399998],[-64.75609290299987,-67.61541106599985],[-64.76138261599996,-67.61060963299994],[-64.77660071499994,-67.59205494599993],[-64.74974524599995,-67.592217706],[-64.58731035099993,-67.610772394]]],[[[-67.23127193899995,-67.677341404],[-67.25316321499992,-67.71005624800003],[-67.27013098899997,-67.70875416499993],[-67.32054602799991,-67.71103281],[-67.29133053299995,-67.72584400799997],[-67.28819739499988,-67.7300757789999],[-67.33458411399997,-67.76287200299991],[-67.39244544199997,-67.78053150799984],[-67.51048743399986,-67.78948333099996],[-67.64708411399992,-67.77695077899995],[-67.70885169199994,-67.7603492169999],[-67.74205481699997,-67.74651458099999],[-67.75104732999998,-67.73235442499988],[-67.74225826699993,-67.7274716129999],[-67.70392818899998,-67.72454192499998],[-67.69371497299994,-67.72047291499993],[-67.68932044199997,-67.71559010199987],[-67.68614661399991,-67.70940520599999],[-67.68004309799991,-67.70134856599994],[-67.67198645699997,-67.69622161299985],[-67.65233313699991,-67.68954843499998],[-67.64362545499995,-67.68368905999994],[-67.66014563699991,-67.68206145599991],[-67.67747962099992,-67.6851539039999],[-67.72667395699992,-67.69939544099991],[-67.74669348899988,-67.70191822699992],[-67.76463782499994,-67.69890715899992],[-67.77476966099988,-67.68580494599995],[-67.76626542899996,-67.66765715899986],[-67.73997962099995,-67.654880467],[-67.49571692599997,-67.58904387799994],[-67.18370520699997,-67.59978606599995],[-67.1511124339999,-67.610772394],[-67.12218176999991,-67.64251067499995],[-67.23127193899995,-67.677341404]]],[[[47.49293053500011,-67.57268645599993],[47.69752037900017,-67.59343840899993],[47.73503665500019,-67.590508722],[47.77100670700005,-67.58212656000003],[47.83415774800008,-67.55820077899998],[47.84538821700008,-67.5564104149999],[47.860606316000116,-67.55771249799999],[47.86361738400015,-67.5585263],[47.87566165500007,-67.56446705499984],[47.87574303500011,-67.564548435],[47.91472415500019,-67.58587004999988],[47.92335045700011,-67.58660247199991],[47.79167728000019,-67.61972421699994],[47.53248131600017,-67.64169687299994],[47.46941165500007,-67.63738372199995],[47.41130618600019,-67.62175872199997],[47.46013431100019,-67.55901458099999],[47.48487389400006,-67.54070403399993],[47.51742597700016,-67.52711353999996],[47.55884850400017,-67.52092864399991],[47.60971113400009,-67.52418385199995],[47.593109571000156,-67.5407854149999],[47.55762780000006,-67.5564104149999],[47.51905358200005,-67.56804778399999],[47.49293053500011,-67.57268645599993]]],[[[-66.99937903599994,-67.59148528399997],[-67.08360755099994,-67.602146092],[-67.16026770699987,-67.58806731599996],[-67.0815323559999,-67.55754973799992],[-67.02310136599993,-67.54664478999986],[-67.00625566299993,-67.53850676899994],[-66.99058997299997,-67.52548593499995],[-66.98253333199992,-67.52068450299996],[-66.97118079299986,-67.5170223939999],[-66.93358313699984,-67.51148853999999],[-66.8931371739999,-67.51238372199997],[-66.81053626199994,-67.5235328099999],[-66.83088131399992,-67.5339494769999],[-66.85240637899994,-67.54192473799995],[-66.87523352799988,-67.54387786299996],[-66.92585201699995,-67.5689429669999],[-66.99937903599994,-67.59148528399997]]],[[[-67.66869055899994,-67.35711028399992],[-67.70909583199989,-67.3697242169999],[-67.74445553299988,-67.36077239399997],[-67.72801673099991,-67.33961353999996],[-67.69054114499988,-67.31878020599997],[-67.64492753799993,-67.30738697699984],[-67.60415605399987,-67.31462981599995],[-67.63117428299992,-67.33489348799995],[-67.66869055899994,-67.35711028399992]]],[[[164.81983483200005,-67.55022551899991],[164.76042728000002,-67.57040780999995],[164.703786655,-67.56861744599996],[164.65723717500012,-67.53834400799997],[164.65658613400012,-67.52459075299994],[164.65186608200023,-67.511407159],[164.643809441,-67.49928150799991],[164.63282311300017,-67.48870208099996],[164.65919030000023,-67.47323984199994],[164.68213951900023,-67.447849217],[164.69629967500018,-67.41676197699991],[164.69605553500006,-67.385186456],[164.68995201900023,-67.37200286299988],[164.669281446,-67.34319426899992],[164.6595158210001,-67.33359140399995],[164.66016686300023,-67.32724374799993],[164.66228274800002,-67.32138437299997],[164.66570071700008,-67.31633879999995],[164.6704207690002,-67.31210702899993],[164.65699303500017,-67.27874114399995],[164.65723717500012,-67.2608374979999],[164.67457116000008,-67.25774504999991],[164.71216881600012,-67.26848723799992],[164.82374108200003,-67.32561614399991],[164.84034264400023,-67.33928801899985],[164.83692467500012,-67.36272551899992],[164.85718834700006,-67.37590911299996],[164.88770592500003,-67.38689544099991],[164.91391035199996,-67.40439218499988],[164.926036004,-67.43108489399998],[164.91618899800008,-67.45427825299993],[164.8890080090001,-67.47673919099992],[164.84896894600004,-67.50090911299985],[164.8548283210001,-67.50416432099988],[164.85889733200023,-67.50741952899993],[164.86443118600008,-67.51083749799994],[164.87501061300011,-67.51506926899995],[164.81983483200005,-67.55022551899991]]],[[[-67.69334876199994,-67.28427499799997],[-67.7604060539999,-67.29452890399989],[-67.81021074099988,-67.2634416649999],[-67.7008357409999,-67.21363697699991],[-67.67088782499994,-67.20501067500001],[-67.63719641799992,-67.19980234200001],[-67.60407467399989,-67.201592706],[-67.57579505099994,-67.21445077899993],[-67.62608801999991,-67.25139739399998],[-67.69334876199994,-67.28427499799997]]],[[[-67.60863196499994,-67.140232029],[-67.63341223899991,-67.1415341129999],[-67.65786699099993,-67.13746510199994],[-67.68146725199998,-67.12810637799991],[-67.67271887899992,-67.12574635199987],[-67.66295325399997,-67.12200286299992],[-67.65416419199991,-67.11663176899997],[-67.6485082669999,-67.10947031],[-67.64777584499986,-67.10165780999994],[-67.65074622299989,-67.09514739399985],[-67.65660559799994,-67.08879973799999],[-67.65038001199989,-67.08082447699987],[-67.64118404899992,-67.07610442499985],[-67.63109290299994,-67.07244231599998],[-67.62254798099991,-67.06796640399993],[-67.60952714799993,-67.05413176899991],[-67.60265051999991,-67.0490861959999],[-67.5911352199999,-67.04607512799998],[-67.57274329299995,-67.04680754999991],[-67.55817623599992,-67.053806248],[-67.54796301999997,-67.06633879999991],[-67.54259192599991,-67.08375416499997],[-67.54035396999984,-67.09889088299997],[-67.54283606699995,-67.10426197699994],[-67.55036373599992,-67.11207447699984],[-67.55797278599997,-67.11834075299997],[-67.56647701699998,-67.12395598799988],[-67.58433997299994,-67.1329078099999],[-67.60863196499994,-67.140232029]]],[[[120.68978925900002,-66.90837981599995],[120.71176191500004,-66.91057708099996],[120.74317467500016,-66.90837981599995],[120.83863366000016,-66.8879533829999],[120.86638431100006,-66.88681405999995],[120.53199303500004,-66.96900807099993],[120.51197350400015,-66.96933359199996],[120.49244225400011,-66.96233489399987],[120.47999108200004,-66.95012786299989],[120.4785262380001,-66.93515390399988],[120.49138431100002,-66.92001718499988],[120.50001061300023,-66.91236744599993],[120.51498457100008,-66.89495208099996],[120.52369225400017,-66.88779062299993],[120.54004967500006,-66.88128020599993],[120.55884850400005,-66.87859465899996],[120.60743248800006,-66.87957122199992],[120.65113366000016,-66.88713958099989],[120.65658613400004,-66.88974374799997],[120.66504967500023,-66.89657968499998],[120.67042076900012,-66.90064869599986],[120.67847741000004,-66.90520598799999],[120.68409264400023,-66.90715911299995],[120.68978925900002,-66.90837981599995]]],[[[121.02320397200005,-66.84832122199995],[120.93775475400005,-66.85702890399995],[120.88314863400008,-66.846449477],[120.94507897200006,-66.83074309699992],[121.0481063160001,-66.78883228999993],[121.12777754000015,-66.77947356599998],[121.19288170700011,-66.77890390400002],[121.19516035200016,-66.7863908829999],[121.16830488399998,-66.80592213299997],[121.10971113400015,-66.82878997199998],[121.02320397200005,-66.84832122199995]]],[[[-67.38121497299997,-66.90243905999994],[-67.43517005099997,-66.90813567499993],[-67.49339758999992,-66.90447356599995],[-67.60313880099991,-66.87997812300003],[-67.56383216099991,-66.86646900799987],[-67.52757727799991,-66.82105885199996],[-67.49022376199994,-66.79908619599986],[-67.5021052729999,-66.78875090899986],[-67.50837154899995,-66.77947356599998],[-67.5128474599999,-66.7707658829999],[-67.51988684799997,-66.762139581],[-67.48395748599998,-66.74260833099993],[-67.4459529289999,-66.7349585919999],[-67.40664628799988,-66.73650481599985],[-67.3067927729999,-66.76067473799995],[-67.29002844999988,-66.76897551899992],[-67.28522701699998,-66.77353280999988],[-67.28258216099991,-66.77825286299998],[-67.2804255849999,-66.78297291499989],[-67.27700761599988,-66.78801848799992],[-67.27196204299995,-66.79290129999998],[-67.26158606699994,-66.80087656000003],[-67.25690670499992,-66.805759373],[-67.24571692599991,-66.82496510199995],[-67.24071204299987,-66.83082447699991],[-67.27110755099994,-66.85491301899994],[-67.30614173099994,-66.87525807099993],[-67.34361731699997,-66.89128997199992],[-67.38121497299997,-66.90243905999994]]],[[[85.87614993600002,-66.93645598799996],[85.78736412900017,-66.96892669099995],[85.613047722,-66.98658619599996],[85.58985436300006,-66.9817033829999],[85.613047722,-66.95769622199995],[85.62614993600017,-66.94784921699993],[85.64128665500017,-66.93938567499998],[85.61890709700006,-66.94036223799995],[85.37476647200006,-66.87721119599996],[85.33855228000007,-66.85759856599992],[85.30689537900017,-66.83220794099998],[85.28003991000017,-66.8015276019999],[85.25863691500014,-66.76620859199987],[85.27540123800006,-66.73772551899995],[85.30762780000012,-66.7237281229999],[85.34538821700008,-66.71917083099986],[85.48365319100017,-66.72096119599993],[85.56592858200023,-66.73642343499995],[85.62208092500012,-66.73805103999989],[85.65886478000013,-66.743584894],[85.6592716810002,-66.74366627399998],[85.7698673840001,-66.75969817499997],[85.79607181100006,-66.76962655999988],[85.83692467500012,-66.79371510199991],[85.94117272200016,-66.88990650799994],[85.92741946700008,-66.910739842],[85.87614993600002,-66.93645598799996]]],[[[48.80892988400015,-66.7673479149999],[48.76335696700019,-66.783298435],[48.59473717500006,-66.77752044099994],[48.399912957000225,-66.80803801899998],[48.31218509200002,-66.80950286299995],[48.281586134000094,-66.76718515400003],[48.28126061300006,-66.75164153399993],[48.28785241000017,-66.73626067499998],[48.305023634000094,-66.72161223799998],[48.33643639400012,-66.7077776019999],[48.37525475400011,-66.69915129999998],[48.72535241000011,-66.70305754999988],[48.77369225400011,-66.72047291499986],[48.80892988400015,-66.7673479149999]]],[[[163.310394727,-66.78118254999998],[163.31120853000013,-66.78150807099982],[163.31324303500006,-66.78150807099982],[163.31120853000013,-66.783298435],[163.31072024800014,-66.78435637799996],[163.31137129000007,-66.78492603999993],[163.31364993600008,-66.78492603999993],[163.28614342500012,-66.79778411299995],[163.30225670700005,-66.82040781],[163.310394727,-66.82732512799993],[163.30974368600008,-66.82805754999995],[163.30974368600008,-66.828708592],[163.310801629,-66.82878997199998],[163.31251061300011,-66.828708592],[163.29688561300023,-66.8351376279999],[163.29371178500014,-66.83806731599992],[163.29509524800002,-66.8848609349999],[163.24919681100008,-66.87737395599991],[163.19076582099999,-66.84384531],[163.15503991000006,-66.8122697899999],[163.08269290500016,-66.71233489399992],[163.08204186300023,-66.71087004999997],[163.0818791020001,-66.7077776019999],[163.081309441,-66.70647551899998],[163.11475670700005,-66.68726978999992],[163.16993248800011,-66.69019947699987],[163.22559655000012,-66.70378997199991],[163.26050866000006,-66.71624114399992],[163.26205488399998,-66.73211028399996],[163.265472852,-66.74041106599994],[163.26531009200002,-66.74846770599996],[163.25700931100008,-66.76327890399995],[163.29249108200023,-66.77629973799992],[163.31226647200018,-66.77898528399999],[163.310801629,-66.78020598799992],[163.310394727,-66.78118254999998]]],[[[86.58082116000006,-66.71795012799993],[86.61085045700011,-66.72161223799998],[86.67579186300006,-66.71965911299985],[86.61703535200016,-66.74602629999993],[86.49724368600019,-66.78476327899988],[86.40316816500015,-66.79599374799997],[86.3437606130001,-66.79257577899996],[86.3147892590001,-66.78630950299991],[86.26539147200005,-66.76262786299998],[86.23764082100016,-66.74472421699994],[86.23047936300011,-66.73040129999995],[86.25953209700012,-66.70427825299998],[86.29428144600016,-66.68759530999995],[86.33228600400017,-66.67815520599994],[86.51612389400012,-66.66716887799997],[86.53638756600006,-66.66912200299993],[86.53174889400012,-66.67799244599998],[86.53288821700002,-66.68670012799994],[86.53874759200019,-66.69508228999992],[86.548594597,-66.70305754999988],[86.58082116000006,-66.71795012799993]]],[[[-67.98542232999995,-67.06267669099995],[-67.97642981699991,-67.06650155999988],[-67.92210852799988,-67.06340911299998],[-67.8832087879999,-67.06658294099995],[-67.8446345689999,-67.07480234199993],[-67.80614173099993,-67.08766041499996],[-67.79198157499991,-67.09490325299997],[-67.78530839799996,-67.10312265399999],[-67.7867732409999,-67.1130510399999],[-67.79698645699995,-67.12509531],[-67.76756751199986,-67.13307057099996],[-67.70616614499995,-67.13990650799997],[-67.67682857999995,-67.1480445289999],[-67.6817927729999,-67.15129973799995],[-67.73875891799992,-67.173109633],[-67.76854407499994,-67.19019947699994],[-67.78600012899989,-67.19280364399985],[-67.82066809799997,-67.19150156000003],[-67.83226477799988,-67.19345468499998],[-67.8391820949999,-67.19524504999987],[-67.84569251199989,-67.19817473799999],[-67.85098222599996,-67.20240650799991],[-67.85435950399996,-67.20875416499986],[-67.8546443349999,-67.21428801899997],[-67.85301673099987,-67.22527434699991],[-67.85460364499991,-67.2305640599999],[-67.86489824099993,-67.23821379999993],[-67.88158118399988,-67.24407317499988],[-67.9125056629999,-67.25074635199994],[-67.95995032499994,-67.25025807099993],[-67.97398841099988,-67.25465260199984],[-67.98155676999994,-67.26246510199992],[-67.98033606699991,-67.27011484199994],[-67.97581946499986,-67.27800872199992],[-67.97378495999993,-67.28736744599986],[-67.97736568899988,-67.294040623],[-67.9847712879999,-67.29892343499998],[-68.00153561099992,-67.30462004999995],[-68.10655676999991,-67.317803644],[-68.25096594999988,-67.36931731599998],[-68.18765214799993,-67.38420989399984],[-68.12279212099995,-67.38876718499998],[-68.01878821499992,-67.383884373],[-67.96515865799991,-67.39462655999994],[-67.94766191299986,-67.42880624800001],[-67.95714270699997,-67.44996510199982],[-67.97378495999993,-67.46843840899986],[-68.06700598899997,-67.52841562299997],[-68.0996801419999,-67.54029713299991],[-68.10863196499992,-67.54705169099994],[-68.11359615799998,-67.55437590899996],[-68.11766516799993,-67.56218840899996],[-68.12271074099996,-67.56861744599996],[-68.13068600199992,-67.57244231599998],[-68.13902747299989,-67.57146575299991],[-68.21450761599993,-67.545993748],[-68.22769120999988,-67.53826262799998],[-68.23802649599989,-67.530043227],[-68.24901282499994,-67.52369557099996],[-68.26414954299995,-67.52117278399986],[-68.28359941299993,-67.5227190079999],[-68.39000403599991,-67.54924895599986],[-68.4136856759999,-67.55917734199994],[-68.43236243399991,-67.57390715899994],[-68.41608639199995,-67.5822893209999],[-68.39976966099994,-67.5935197899999],[-68.39069576699995,-67.60784270599999],[-68.39582271999987,-67.62517669099998],[-68.41266842399995,-67.641045831],[-68.4763891269999,-67.67750416499995],[-68.54161536399991,-67.73202890399995],[-68.55858313699989,-67.74146900799997],[-68.57518469999985,-67.7439104149999],[-68.59203040299985,-67.74065520599996],[-68.64378821499989,-67.71477629999985],[-68.66299394399992,-67.710219008],[-68.67857825399992,-67.71721770599989],[-68.67357337099989,-67.71949635199995],[-68.65611731699991,-67.723565363],[-68.66600501199994,-67.72991301899985],[-68.67926998599995,-67.73512135199994],[-68.74152584499987,-67.74944426899992],[-68.88459225199995,-67.76246510199991],[-68.89932206899994,-67.76051197699987],[-68.91270911399992,-67.75497812299994],[-68.92137610599994,-67.7478166649999],[-68.93089758999994,-67.73723723799995],[-68.93724524599985,-67.72527434700001],[-68.93663489499991,-67.71453215899999],[-68.93350175699992,-67.71135833099993],[-68.92983964799987,-67.70907968499995],[-68.92735755099994,-67.70598723799998],[-68.92772376199989,-67.70134856599994],[-68.93187415299991,-67.69752369599993],[-68.93883216099991,-67.69557057099989],[-68.95201575399994,-67.69329192500001],[-68.99400794199994,-67.67156340899994],[-69.00999915299994,-67.66806405999995],[-69.03888912699993,-67.66692473799992],[-69.05321204299992,-67.66448333099989],[-69.06627356699991,-67.65927499799997],[-69.07160396999987,-67.65471770599993],[-69.07945716099994,-67.64430103999986],[-69.08385169199994,-67.64006926899992],[-69.10928300699996,-67.62615325299996],[-69.13215084499987,-67.60491301899997],[-69.15322831899988,-67.58977629999997],[-69.16478430899991,-67.57927825299998],[-69.17369544199994,-67.56666432099983],[-69.17894446499992,-67.55169036299998],[-69.17833411399997,-67.52516041499992],[-69.16917883999989,-67.49944426899988],[-69.1548966139999,-67.47568124799997],[-69.11644446499989,-67.43043385199994],[-69.06607011599993,-67.38762786299995],[-68.83747311099995,-67.26677825299993],[-68.79942786399995,-67.23463307099996],[-68.7953181629999,-67.2304013],[-68.79157467399997,-67.22332122199988],[-68.78416907499987,-67.20126718499998],[-68.70702063699994,-67.10963307099989],[-68.37783769399994,-66.82073333099986],[-68.3209529289999,-66.78923919099994],[-67.86046301999994,-66.62566497199998],[-67.83055579299989,-66.62029387799991],[-67.8002009759999,-66.61809661299985],[-67.76968339799987,-66.61923593499998],[-67.7410375639999,-66.62420012799993],[-67.65941321499987,-66.64861419099998],[-67.66193600199989,-66.66155364399998],[-67.6602270169999,-66.670505467],[-67.6537166009999,-66.67717864399997],[-67.64195716099994,-66.68320077899998],[-67.66633053299998,-66.696872654],[-67.67162024599985,-66.70191822699994],[-67.68101966099988,-66.71347421699996],[-67.68667558499988,-66.71819426899988],[-67.74421139199995,-66.733656508],[-67.75218665299991,-66.73967864399991],[-67.74966386599989,-66.74342213299992],[-67.74657141799992,-66.74684010199994],[-67.73936926999988,-66.75261809699991],[-67.76146399599986,-66.76360442499995],[-67.81212317599994,-66.77141692499994],[-67.83421790299994,-66.78240325300001],[-67.83096269399988,-66.78753020599993],[-67.81916256399992,-66.80136484199993],[-67.88414466099988,-66.81072356599995],[-67.9134008449999,-66.81145598799998],[-67.92870032499987,-66.81503671699987],[-67.93854732999998,-66.82341887799993],[-67.94005286399994,-66.83074309699992],[-67.93602454299989,-66.84107838299994],[-67.93757076699993,-66.84791432099985],[-67.94859778599997,-66.85654062299996],[-67.96422278599994,-66.861911717],[-67.97769120999993,-66.86891041499989],[-67.98224850199998,-66.88274504999998],[-67.9864802729999,-66.88591887799996],[-68.0132543609999,-66.90007903399989],[-68.01927649599992,-66.90960051899998],[-68.02306067599991,-66.92994557099996],[-68.02623450399989,-66.940606378],[-68.01211503799996,-66.95029062299987],[-67.9415583979999,-66.98259856599998],[-67.92324785099993,-66.99724700299998],[-67.92552649599989,-67.00644296699997],[-67.93350175699996,-67.01181406],[-67.94029700399996,-67.01767343499988],[-67.93871008999994,-67.02800872199988],[-67.94981848899988,-67.03215911299992],[-67.9942113919999,-67.039971613],[-67.99071204299992,-67.05396900799997],[-67.98542232999995,-67.06267669099995]]],[[[85.2864689460001,-66.63762786299992],[85.20118248800006,-66.6467424459999],[85.11443118600019,-66.63534921699994],[85.0548608730002,-66.6062151019999],[85.07911217500006,-66.57732512799988],[85.09205162900017,-66.54485442499998],[85.11068769600016,-66.52068450299998],[85.15211022200018,-66.51637135199996],[85.16895592500006,-66.52459075299988],[85.18799889400006,-66.55478280999998],[85.20240319100004,-66.56796640399995],[85.233653191,-66.58114999799999],[85.34253990999999,-66.60475025799983],[85.2864689460001,-66.63762786299992]]],[[[98.81495201900006,-66.48398202899998],[98.79118899800008,-66.48739999799997],[98.73072350400017,-66.48235442499995],[98.66814212300008,-66.46249765399993],[98.61622155000006,-66.43010833099986],[98.58855228000007,-66.38795338299991],[98.59717858200005,-66.37851327899998],[98.62029056100002,-66.37078215899996],[98.66000410200016,-66.36345794099987],[98.71168053500017,-66.36402760199994],[98.85938561300011,-66.389255467],[98.95329837300008,-66.41814544099992],[98.93962649800002,-66.43141041499995],[98.837575717,-66.47714609199987],[98.81495201900006,-66.48398202899998]]],[[[97.42432701900012,-66.42310963299997],[97.39372806100019,-66.430271092],[97.06763756600004,-66.40471770599993],[97.03785241000006,-66.39511484199994],[97.01050866000017,-66.38103606599991],[97.04810631600017,-66.34417083099993],[97.10531660200009,-66.32830169099991],[97.16773522200018,-66.32594166499986],[97.28467858200011,-66.34075286299992],[97.34685306100002,-66.36052825299986],[97.36304772200018,-66.36874765399995],[97.37818444100017,-66.37900155999988],[97.40552819100006,-66.403497003],[97.42432701900012,-66.42310963299997]]],[[[-67.09337317599997,-66.38648853999993],[-67.12706458199997,-66.38958098799992],[-67.16104081899991,-66.388767185],[-67.13853919199994,-66.37818775799987],[-67.12718665299984,-66.37053801899992],[-67.1227107409999,-66.36256275799997],[-67.12730872299991,-66.356377863],[-67.14659583199995,-66.34905364399991],[-67.15306555899987,-66.34319426899995],[-67.15412350199992,-66.33196379999995],[-67.14745032499988,-66.325290623],[-67.13683020699992,-66.32203541499996],[-67.12572180899988,-66.320977472],[-67.09764563699989,-66.32252369599993],[-67.0582576159999,-66.32927825299988],[-67.02708899599992,-66.34189218499995],[-67.02383378799986,-66.36126067499988],[-67.03722083199997,-66.37127044099995],[-67.05638587099995,-66.37835051899991],[-67.09337317599997,-66.38648853999993]]],[[[162.5581160820001,-66.53297291499992],[162.5463973320001,-66.53460051899995],[162.53150475400005,-66.53020598799998],[162.51636803500006,-66.52312590900002],[162.47885175900015,-66.51091887799986],[162.47103925900015,-66.50660572699994],[162.34050540500007,-66.41025156000003],[162.3278100920002,-66.405205988],[162.29021243600016,-66.39763762799996],[162.32504316500004,-66.38347747199994],[162.3429468110002,-66.37249114399998],[162.34945722700007,-66.36044687299987],[162.34546959700012,-66.35426197699991],[162.330332879,-66.35125090899999],[162.32447350400014,-66.34677499799993],[162.3234155610002,-66.33855559699992],[162.32976321700002,-66.32170989399992],[162.32886803500006,-66.3127580709999],[162.32154381600006,-66.30510833099997],[162.31023196700008,-66.29973723799992],[162.28760826900012,-66.29404062300003],[162.29786217500012,-66.25481536299992],[162.31470787900005,-66.25139739399991],[162.55632571700016,-66.43661874799994],[162.57341556100008,-66.4458960919999],[162.62614993600008,-66.46249765399993],[162.61597741,-66.46835702899999],[162.5680444670002,-66.52613697699982],[162.5581160820001,-66.53297291499992]]],[[[-67.05125891799992,-66.25408294099998],[-67.02708899599992,-66.25986093499995],[-66.92373613199992,-66.25286223799996],[-66.88463294199988,-66.26287200299986],[-66.87682044199991,-66.26376718500003],[-66.90892493399988,-66.27776458099999],[-66.94269771999987,-66.28573984199996],[-66.97736568899992,-66.28801848799992],[-67.01231848899994,-66.28590260199992],[-67.08177649599986,-66.27361419099995],[-67.10175533799993,-66.26173267999991],[-67.10187740799992,-66.26165129999993],[-67.11969967399989,-66.25139739399991],[-67.12157141799986,-66.25090911299992],[-67.11021887899996,-66.24098072699991],[-67.09162350199998,-66.23609791499995],[-67.07160396999993,-66.234958592],[-67.05638587099995,-66.23626067499991],[-67.05125891799992,-66.25408294099998]]],[[[100.27491295700011,-66.19793059699988],[100.28272545700011,-66.19890715899984],[100.29908287900011,-66.19817473799992],[100.30730228000013,-66.19898853999992],[100.29802493600008,-66.20183684699987],[100.25367272200006,-66.22283294099991],[100.182871941,-66.23267994599993],[100.11654707100016,-66.22991301899988],[100.08073978000007,-66.22112395599991],[100.06478925900015,-66.20427825299991],[100.08008873800011,-66.18401458099999],[100.15512129000015,-66.13860442499991],[100.20582116,-66.11467864399985],[100.23511803500006,-66.10719166499997],[100.2644962900001,-66.10523853999992],[100.28931725400015,-66.11150481599998],[100.29379316500015,-66.11451588299997],[100.29835045700011,-66.11891041499996],[100.3064884770001,-66.13014088299997],[100.3103947270001,-66.13713958099986],[100.31592858200011,-66.15105559699992],[100.31714928500006,-66.15715911299992],[100.31055748800006,-66.17302825299994],[100.29175866,-66.18010833099999],[100.25123131600017,-66.18434010199982],[100.25505618600019,-66.18621184699997],[100.26954186300006,-66.19548919099985],[100.27491295700011,-66.19793059699988]]],[[[-66.84105383999989,-66.32195403399997],[-66.86408443899995,-66.32626718499998],[-66.88866126199986,-66.32577890399998],[-66.89077714799986,-66.32073333099996],[-66.90379798099985,-66.31047942499993],[-66.91079667899993,-66.30193450299991],[-66.89171301999994,-66.28753020599994],[-66.79287675699993,-66.24065520599997],[-66.77403723899988,-66.22698333099996],[-66.77037512899992,-66.22177499799996],[-66.76943925699992,-66.20387135199991],[-66.76618404899989,-66.18482838299991],[-66.76634680899986,-66.17896900799997],[-66.76891028599997,-66.1735979149999],[-66.7770076159999,-66.16448333100001],[-66.77940833199993,-66.15927499800001],[-66.77940833199993,-66.15300872199988],[-66.77769934799994,-66.148044529],[-66.77253170499992,-66.1377906229999],[-66.77822831899991,-66.13437265399998],[-66.78990637899992,-66.129082941],[-66.79539954299995,-66.12574635199998],[-66.7735896479999,-66.10719166499997],[-66.7398168609999,-66.09303150799995],[-66.64028886599993,-66.06853606599992],[-66.60484778599994,-66.066013279],[-66.59080969999988,-66.06747812299987],[-66.57799231699994,-66.07154713299984],[-66.56631425699996,-66.07822030999998],[-66.55557206899994,-66.08700937299994],[-66.56891842399995,-66.09921640399999],[-66.59260006399995,-66.11451588299997],[-66.6175837879999,-66.12623463299997],[-66.63475501199991,-66.12802499799994],[-66.60016842399992,-66.14983489399991],[-66.5872696609999,-66.155857029],[-66.57599850199992,-66.18035247199985],[-66.60045325399994,-66.20623137799996],[-66.60187740799992,-66.20875416499996],[-66.66209876199989,-66.23528411299993],[-66.75145423099991,-66.28923919099994],[-66.84105383999989,-66.32195403399997]]],[[[96.72559655000012,-66.06365325299996],[96.74927819100006,-66.06910572699988],[96.79135175900008,-66.06812916499983],[96.87842858200005,-66.05348072699991],[96.91716556100008,-66.05437590899999],[96.97486412900011,-66.07447682099995],[97.01587975400011,-66.10556405999995],[97.03093509200002,-66.14055754999995],[97.01050866000017,-66.17310963299992],[96.90845787900011,-66.21135833099996],[96.65792890750012,-66.2194963519999],[96.40739993600008,-66.227634373],[96.35596764400006,-66.22161223799999],[96.33863366000016,-66.19719817499985],[96.29656009200019,-66.18352629999991],[96.34652754000015,-66.11882903399989],[96.37582441500015,-66.09140390399993],[96.41797936300011,-66.06707122199995],[96.46762129000008,-66.05071379999984],[96.52930748800006,-66.03980885199996],[96.59644616000011,-66.03582122199998],[96.66146894600016,-66.0401343729999],[96.68392988400015,-66.04607512799993],[96.72559655000012,-66.06365325299996]]],[[[-65.73741614499988,-65.99146900799985],[-65.80199133999994,-65.9926083309999],[-65.78795325399989,-65.97763437299994],[-65.78473873599991,-65.97185637799998],[-65.78404700399989,-65.96502044099988],[-65.78506425699996,-65.95859140399986],[-65.78477942599991,-65.95289478999989],[-65.77985592399993,-65.9480119769999],[-65.76915442599994,-65.94597747199998],[-65.75885982999992,-65.94988372199988],[-65.74925696499994,-65.95810312299989],[-65.74079342399988,-65.96843840899989],[-65.72769120999993,-65.98935312299986],[-65.73741614499988,-65.99146900799985]]],[[[-65.91437740799992,-65.9169247379999],[-65.99840247299989,-65.92929452899995],[-66.01650956899991,-65.92831796699997],[-66.03384355399987,-65.92457447699985],[-66.0051977199999,-65.90545012799996],[-65.97069251199989,-65.88811614399988],[-65.9343969389999,-65.87704843499994],[-65.90009518099993,-65.87672291499989],[-65.90005449099992,-65.87672291499989],[-65.89476477799988,-65.87859465899987],[-65.89102128799993,-65.88144296699998],[-65.88902747299989,-65.88551197699996],[-65.88882402299993,-65.89088307099983],[-65.90074622299989,-65.91106536299995],[-65.91437740799992,-65.9169247379999]]],[[[-65.20010331899994,-65.85613372199988],[-65.19399980399993,-65.88388437299994],[-65.20596269399995,-65.89462655999986],[-65.22126217399992,-65.90032317499985],[-65.23790442599997,-65.90178801899991],[-65.25401770699995,-65.90016041499989],[-65.26813717399997,-65.8962541649998],[-65.28172766799995,-65.89031340899996],[-65.30699622299989,-65.87517669099987],[-65.31773841099991,-65.86589934699983],[-65.3177791009999,-65.86589934699983],[-65.34243730399989,-65.84238046699986],[-65.34434973899994,-65.83953215899992],[-65.30614173099988,-65.8370093729999],[-65.24779212099989,-65.84140390399998],[-65.20010331899994,-65.85613372199988]]],[[[100.7976994150001,-65.77727629999984],[100.97331790500019,-65.78736744599989],[101.00668379000014,-65.79615650799985],[101.02556399800018,-65.81259530999986],[101.01124108200011,-65.83879973799998],[100.9632267590001,-65.86492278399993],[100.90455162900011,-65.87810637799988],[100.75879967500012,-65.88176848799985],[100.70020592500006,-65.87395598799986],[100.67164147200012,-65.8654924459999],[100.63526451900012,-65.85914478999987],[100.52540123800006,-65.87444426899984],[100.46021569100006,-65.87566497199987],[100.42790774800018,-65.86931731599992],[100.39966881600006,-65.85466887799991],[100.53492272200006,-65.79062265399993],[100.55860436300006,-65.78435637799998],[100.607188347,-65.77849700299984],[100.71208743600002,-65.78590260199984],[100.7976994150001,-65.77727629999984]]],[[[92.57886803500017,-65.81755950299998],[92.4344181650001,-65.82439544099984],[92.2991642590001,-65.80291106599998],[92.23585045700023,-65.75066497199997],[92.2853296230002,-65.7121721329999],[92.35027103000007,-65.69475676899984],[92.42335045700023,-65.69329192499994],[92.49626712300008,-65.70313892999997],[92.49634850400015,-65.70322030999995],[92.62110436300006,-65.72600676899998],[92.67164147200018,-65.74920012799993],[92.6689559250001,-65.78484465899996],[92.57886803500017,-65.81755950299998]]],[[[-65.71646074099993,-65.53785572699994],[-65.69054114499994,-65.54265715899982],[-65.63475501199994,-65.53866952899993],[-65.62482662699995,-65.5349260399999],[-65.63255774599995,-65.54949309699984],[-65.65562903599991,-65.57203541499983],[-65.66246497299991,-65.58603280999989],[-65.66417395699992,-65.61272551899991],[-65.66877193899995,-65.62314218499998],[-65.68211829299989,-65.63290780999994],[-65.68049068899995,-65.6339657529999],[-65.67992102799987,-65.63486093499989],[-65.68057206899994,-65.63534921699996],[-65.6824438139999,-65.63534921699996],[-65.66551673099991,-65.66008879999985],[-65.85993404899992,-65.69019947699996],[-65.91295325399994,-65.70582447699987],[-65.8380427729999,-65.7341447899999],[-65.82534745999993,-65.75416432099995],[-65.82017981699994,-65.76490650799988],[-65.81822669199988,-65.77581145599996],[-65.82127844999988,-65.78573984199987],[-65.83336341099988,-65.80242278399999],[-65.83568274599995,-65.81170012799986],[-65.83067786399991,-65.82073333099996],[-65.81973222599993,-65.82537200299998],[-65.79698645699989,-65.83025481599995],[-65.81354732999995,-65.83993906],[-65.83495032499991,-65.84335702899993],[-65.87657630099997,-65.8439266909999],[-66.05150305899988,-65.88103606599982],[-66.10130774599986,-65.88453541499989],[-66.17471269399988,-65.87175872199994],[-66.18590247299989,-65.86516692499998],[-66.17845618399991,-65.84775155999992],[-66.17780514199994,-65.84050872199998],[-66.18187415299991,-65.83082447699994],[-66.18358313699991,-65.82854583099987],[-66.18565833199995,-65.82683684699985],[-66.19009355399993,-65.82382577899995],[-66.19017493399991,-65.82374439899995],[-66.19310462099992,-65.82154713299997],[-66.1953832669999,-65.81902434699995],[-66.19652258999994,-65.81536223799982],[-66.19595292899996,-65.81047942499984],[-66.19237219999991,-65.80266692499984],[-66.17479407499987,-65.78508879999983],[-66.16344153599988,-65.76637135199992],[-66.15977942599994,-65.76246510199985],[-66.14370683499995,-65.76034921699986],[-66.10069739499991,-65.76816171699984],[-66.0821833979999,-65.76832447699981],[-66.07192949099996,-65.7631161439999],[-66.03795325399992,-65.73894622199998],[-66.05361894399991,-65.73316822699994],[-66.07087154899992,-65.72275155999985],[-66.08275305899986,-65.70891692499984],[-66.08234615799995,-65.69280364399988],[-66.07917232999989,-65.68865325299993],[-66.07184811099997,-65.6822242169999],[-66.06924394399988,-65.67750416499982],[-66.06989498599992,-65.67376067499988],[-66.0729874339999,-65.67148202899999],[-66.07542883999986,-65.66887786299982],[-66.07404537699998,-65.66399504999984],[-66.06607011599993,-65.65935637799991],[-66.02940833199992,-65.65398528399996],[-66.01895097599993,-65.64967213299985],[-65.99327551999997,-65.62859465899993],[-65.97728430899988,-65.62249114399985],[-65.96996008999986,-65.61858489399995],[-65.96446692599994,-65.61174895599991],[-65.96304277299987,-65.59905364399987],[-65.96934973899991,-65.59026458099997],[-65.97728430899988,-65.58269622199987],[-65.98070227799988,-65.57341887799998],[-65.97834225199992,-65.57170989399998],[-65.96572831899994,-65.55624765399998],[-65.96003170499995,-65.55331796699994],[-65.79157467399995,-65.51995208099987],[-65.76463782499987,-65.52214934699995],[-65.71646074099993,-65.53785572699994]]],[[[-65.5960180329999,-65.46705494599982],[-65.54234778599994,-65.47519296699984],[-65.52700761599986,-65.47291432099996],[-65.54857337099989,-65.48707447699988],[-65.57738196499992,-65.49716562299994],[-65.65998287699989,-65.51148853999993],[-65.68614661399994,-65.50945403399999],[-65.71068274599986,-65.50123463299983],[-65.73224850199998,-65.48528411299989],[-65.7222387359999,-65.47087981599992],[-65.7053930329999,-65.47323984199996],[-65.68553626199989,-65.48162200299986],[-65.66657467399996,-65.48560963299981],[-65.65355383999989,-65.48308684699991],[-65.61644446499989,-65.468357029],[-65.5960180329999,-65.46705494599982]]],[[[101.02491295700004,-65.6654598939999],[100.96705162900011,-65.68287525799988],[100.55787194100006,-65.70403411299988],[100.51392662900011,-65.69719817499987],[100.5384220710001,-65.686130467],[100.5363875660001,-65.68287525799988],[100.52491295700005,-65.67864348799985],[100.50367272200018,-65.67310963299983],[100.3681746750001,-65.67896900799997],[100.32984459700012,-65.67343515399995],[100.29802493600008,-65.65862395599989],[100.2762150400001,-65.6330705709999],[100.26823978000007,-65.59465911299998],[100.30372155000005,-65.53606536299993],[100.3851017590001,-65.47861093499984],[100.48243248800011,-65.4312476539999],[100.56592858200005,-65.40300872199984],[100.72966556100008,-65.38046640399995],[100.93458092500006,-65.37867603999996],[101.12671959700018,-65.41187916499989],[101.25180097700016,-65.49374765399983],[101.26140384200019,-65.54029713299997],[101.23072350400011,-65.57398853999996],[101.02491295700004,-65.6654598939999]]],[[[103.38135826900012,-65.46355559699991],[103.32252037900011,-65.47161223799995],[103.21273847700009,-65.4688453099999],[103.17221113400008,-65.46062590899999],[103.13965905000006,-65.44475676899988],[103.13013756600006,-65.43092213299997],[103.138438347,-65.38298919099988],[103.14551842500006,-65.36305103999989],[103.13933353000013,-65.33831145599991],[103.10401451900012,-65.30462004999991],[103.08472741000006,-65.29461028399993],[103.03785241,-65.280368748],[102.8269962900001,-65.250583592],[102.77613366000017,-65.23251718499998],[102.77458743600002,-65.2260067689999],[102.75220787900011,-65.17831796699994],[102.7815861340001,-65.14072030999994],[102.83936608200005,-65.12769947699985],[102.91065514400005,-65.13176848799982],[103.0931095710001,-65.17359791499985],[103.15137780000012,-65.19768645599996],[103.18881269600014,-65.22966887799996],[103.19662519600016,-65.26336028399996],[103.16773522200005,-65.30242278399992],[103.17741946700019,-65.33473072699994],[103.19825280000006,-65.3561337219999],[103.22584069100012,-65.37184010199985],[103.29127037900015,-65.39202239399998],[103.38998457100008,-65.415622654],[103.4085392590001,-65.42359791499996],[103.41911868600008,-65.43474700299998],[103.41602623800006,-65.44866301899987],[103.40064537900011,-65.45794036299992],[103.38135826900012,-65.46355559699991]]],[[[-59.4354548819999,-65.23381926899998],[-59.51463782499988,-65.24570077899995],[-59.64875240799994,-65.21990325299991],[-59.777740037999905,-65.17441171699986],[-59.841542120999925,-65.12737395599984],[-59.771392381999966,-65.08611419099988],[-59.64614824099993,-65.12184010199991],[-59.4354548819999,-65.23381926899998]]],[[[-63.01439368399985,-64.86972421699994],[-63.00890051999991,-64.87004973799998],[-62.989491339999915,-64.86288827899993],[-62.97130286399991,-64.85955169099991],[-62.95490475199992,-64.86174895599999],[-62.93871008999985,-64.86793385199988],[-62.92145748599995,-64.87712981599985],[-62.925445115999935,-64.88054778399986],[-62.959095831999946,-64.89495208099991],[-62.98794511599988,-64.89674244599982],[-63.07648678299997,-64.88990650799997],[-63.10806230399987,-64.8829078099999],[-63.1295466789999,-64.86939869599993],[-63.123890753999916,-64.86305103999982],[-63.12144934799996,-64.85173919099992],[-63.11701412699989,-64.84710051899998],[-63.09772701699995,-64.84238046699997],[-63.06993567599988,-64.84140390399999],[-63.0426326159999,-64.84417083099996],[-63.024891730999904,-64.85084400799983],[-63.02090410099992,-64.85637786299985],[-63.01866614499996,-64.86598072699982],[-63.01439368399985,-64.86972421699994]]],[[[-62.84675045499994,-64.80901458099999],[-62.900461391999926,-64.82390715899994],[-63.00523841099996,-64.81666432099985],[-63.01927649599992,-64.81308359199986],[-63.03099524599991,-64.8064104149999],[-62.99461829299991,-64.79713307099986],[-62.95710201699989,-64.79485442499988],[-62.84675045499994,-64.80901458099999]]],[[[-63.25544186099995,-64.79070403399993],[-63.27769934799991,-64.80624765399995],[-63.28237870999993,-64.81568775799985],[-63.29002844999987,-64.84937916499987],[-63.30654863199993,-64.85930754999995],[-63.324940558999884,-64.86638762799984],[-63.381743943999936,-64.87769947699991],[-63.430734829999885,-64.89885833099991],[-63.4532771479999,-64.90471770599996],[-63.53791256399989,-64.91643645599983],[-63.57140051999994,-64.91643645599983],[-63.59447180899991,-64.90740325299993],[-63.58238684799991,-64.89950937299986],[-63.54067949099996,-64.88689544099998],[-63.49034583199992,-64.86345794099991],[-63.44367428299989,-64.83375416499987],[-63.48192298099985,-64.82244231599998],[-63.50226803299995,-64.81894296699991],[-63.52009029899992,-64.8220354149998],[-63.44790605399992,-64.78948333099993],[-63.42210852799991,-64.78492603999987],[-63.40046139199989,-64.7870419249999],[-63.35798092399994,-64.79705169099988],[-63.336781378999945,-64.79534270599996],[-63.32530676999991,-64.79029713299994],[-63.233225063999896,-64.72975025799994],[-63.20514889199989,-64.71746184699998],[-63.17715410099989,-64.712985935],[-63.1571345689999,-64.72454192499995],[-63.154408331999946,-64.73495859199986],[-63.158070441999904,-64.74358489399985],[-63.165638800999936,-64.751071873],[-63.17454993399988,-64.75741952899995],[-63.25544186099995,-64.79070403399993]]],[[[-62.67955481699994,-64.7463518209999],[-62.70482337099989,-64.7476539039999],[-62.7225642569999,-64.7382137999999],[-62.72350012899997,-64.73455169099984],[-62.72081458199988,-64.72779713299981],[-62.722523566999904,-64.72332122199992],[-62.73102779899992,-64.717380467],[-62.76431230399992,-64.70964934699998],[-62.73306230399996,-64.70086028399993],[-62.72044837099989,-64.69378020599996],[-62.70860755099991,-64.68328215899999],[-62.69717363199996,-64.6750627579999],[-62.68285071499989,-64.67050546699986],[-62.66779537699995,-64.6698544249999],[-62.6542048819999,-64.67327239399992],[-62.64468339799989,-64.67880624799984],[-62.64183508999989,-64.6836890599999],[-62.64183508999989,-64.70077890399995],[-62.64110266799994,-64.70501067499987],[-62.639475063999924,-64.70859140399993],[-62.63646399599991,-64.71200937299994],[-62.63149980399996,-64.71550872199984],[-62.63263912699989,-64.71843840899996],[-62.63402258999989,-64.72112395599984],[-62.63752193899995,-64.72616952899998],[-62.65461178299992,-64.73796965899984],[-62.67955481699994,-64.7463518209999]]],[[[-62.02277584499984,-64.65300872199991],[-62.036691860999916,-64.661228123],[-62.0587458979999,-64.65960051899998],[-62.076975063999896,-64.65105559699995],[-62.07909094999991,-64.6387671849999],[-62.068918423999946,-64.63250090899986],[-62.051503058999884,-64.6266415339999],[-62.03380286399988,-64.62346770599984],[-62.02281653599994,-64.6249325499999],[-62.028960740999906,-64.63307057099983],[-62.03209387899997,-64.64104583099987],[-62.03058834499992,-64.64804452899995],[-62.02277584499984,-64.65300872199991]]],[[[-62.064361131999895,-64.61402760199984],[-62.09300696499989,-64.62086353999985],[-62.106312628999916,-64.62078215899996],[-62.11681067599997,-64.61630624799989],[-62.13654537699991,-64.60263437299987],[-62.12726803299994,-64.59734465899999],[-62.123646613999874,-64.59368254999993],[-62.121652798999946,-64.58904387799991],[-62.14244544199994,-64.58310312299997],[-62.14899654899992,-64.58025481599985],[-62.13792883999989,-64.57642994599993],[-62.11188717399991,-64.57537200299987],[-62.10090084499987,-64.57187265399998],[-62.09471594999987,-64.56609465899983],[-62.093495245999854,-64.56072356599995],[-62.09357662699994,-64.55592213299997],[-62.09129798099988,-64.5515276019999],[-62.08722896999993,-64.54924895599981],[-62.078846808999856,-64.54892343499998],[-62.07433020699991,-64.54762135199981],[-62.0604548819999,-64.53972747199984],[-62.05378170499995,-64.53801848799984],[-62.044545050999886,-64.53923919099984],[-62.0146378249999,-64.55291106599988],[-62.01524817599997,-64.5588518209999],[-62.041737433999856,-64.58082447699991],[-62.045806443999915,-64.58863697699982],[-62.051503058999884,-64.60393645599996],[-62.05724036399996,-64.61052825299993],[-62.064361131999895,-64.61402760199984]]],[[[-57.56395423099991,-64.44231536299986],[-57.58751380099994,-64.47096119599993],[-57.65245520699991,-64.450290623],[-57.58458411399994,-64.41765715899996],[-57.56395423099991,-64.44231536299986]]],[[[-61.52562415299988,-64.39592864399988],[-61.54576575399991,-64.39706796699993],[-61.5658259759999,-64.39560312299989],[-61.59886633999994,-64.38827890399986],[-61.61143958199992,-64.3807919249999],[-61.60362708199994,-64.37175872199998],[-61.60850989499991,-64.3674455709998],[-61.626535610999916,-64.35955169099984],[-61.61314856699994,-64.35507577899995],[-61.56769771999987,-64.3492977839999],[-61.54625403599991,-64.35027434699995],[-61.527414516999954,-64.36052825299998],[-61.50914466099991,-64.37379322699984],[-61.48924719999991,-64.38453541499993],[-61.49583899599989,-64.38551197699991],[-61.52562415299988,-64.39592864399988]]],[[[-57.21910559799991,-64.56536223799998],[-57.3047582669999,-64.57496510199988],[-57.39118404899988,-64.56194426899998],[-57.42723548099985,-64.54810963299997],[-57.44758053299995,-64.53435637799996],[-57.45641028599991,-64.51832447699996],[-57.45815995999991,-64.4983049459999],[-57.45791581899993,-64.48723723799988],[-57.45592200399991,-64.47405364399984],[-57.45099850199995,-64.4616024719999],[-57.441965298999946,-64.45224374799987],[-57.416859503999945,-64.44329192499984],[-57.31456458199992,-64.43645598799992],[-57.314523891999926,-64.43645598799992],[-57.2584122389999,-64.42701588299983],[-56.94395911399991,-64.32878997199984],[-56.922678188999924,-64.32789478999985],[-56.90176347599996,-64.33033619599988],[-56.87840735599988,-64.33570728999993],[-56.94635982999995,-64.375583592],[-56.95352128799987,-64.38534921699994],[-56.93781490799992,-64.41912200299993],[-56.96788489499994,-64.45549895599991],[-57.01756751199985,-64.487888279],[-57.06053626199991,-64.50937265399985],[-57.21910559799991,-64.56536223799998]]],[[[-63.263539191999875,-64.27581145599999],[-63.23595130099997,-64.27996184699984],[-63.20734615799989,-64.27760182099989],[-63.179269985999895,-64.27849700299988],[-63.15343176999996,-64.29159921699994],[-63.15770423099989,-64.29745859199988],[-63.1564021479999,-64.30006275799988],[-63.152984178999866,-64.30266692499998],[-63.15099036399994,-64.30828215899989],[-63.19261633999992,-64.31113046699993],[-63.16193600199992,-64.32512786299998],[-63.155262824999845,-64.32634856599991],[-63.17308508999991,-64.33513762799996],[-63.2786352199999,-64.3562151019999],[-63.302154100999964,-64.36402760199988],[-63.3192439439999,-64.37664153399996],[-63.30719967399989,-64.37997812299989],[-63.266184048999975,-64.38054778399987],[-63.27131100199989,-64.38502369599983],[-63.28612219999988,-64.38933684699992],[-63.29332434799991,-64.39275481599984],[-63.298491990999906,-64.39820728999996],[-63.30402584499993,-64.41008879999983],[-63.3085017569999,-64.41611093499992],[-63.31956946499991,-64.42310963299991],[-63.35993404899988,-64.43621184699988],[-63.331695115999906,-64.44508228999993],[-63.30353756399992,-64.44491952899986],[-63.27578691299996,-64.43743254999998],[-63.21996008999988,-64.4097632789999],[-63.18903561099992,-64.39837004999993],[-63.16958574099993,-64.39576588299985],[-63.11119544199994,-64.39804452899992],[-63.14244544199992,-64.40846119599982],[-63.22354081899993,-64.45745208099996],[-63.24229895699992,-64.47820403399987],[-63.2198787099999,-64.47828541499993],[-63.19839433499987,-64.47600676899987],[-63.12205969999994,-64.4559872379999],[-63.103586391999904,-64.45370859199993],[-63.089588995999954,-64.4585914039999],[-63.105132615999935,-64.47682057099988],[-63.1291397779999,-64.49285247199985],[-63.23517818899996,-64.5411923159999],[-63.28498287699991,-64.55388762799986],[-63.29873613199993,-64.563571873],[-63.28010006399995,-64.57683684699992],[-63.270375128999916,-64.58123137799983],[-63.25694739499991,-64.58359140399988],[-63.13076738199993,-64.57756926899995],[-63.115834113999874,-64.58066171699994],[-63.12413489499993,-64.57146575299988],[-63.127430792999895,-64.56650156],[-63.12987219999994,-64.56072356599995],[-63.07603919199989,-64.54558684699995],[-63.02965247299991,-64.52117278399992],[-63.014068162999926,-64.51718515399985],[-62.99547278599994,-64.51588307099992],[-63.01545162699992,-64.53183359199994],[-62.97581946499989,-64.5363908829999],[-62.9662166009999,-64.53460051899991],[-62.92979895699991,-64.52027760199984],[-62.92088782499988,-64.51873137799987],[-62.913319464999944,-64.51913827899998],[-62.90644283799992,-64.52117278399992],[-62.90640214799993,-64.52117278399992],[-62.90025794199997,-64.52450937299984],[-62.84227454299988,-64.56365325299998],[-62.829823370999854,-64.56975676899988],[-62.856556769999884,-64.58220794099998],[-63.023182745999925,-64.61793385199984],[-63.045765753999895,-64.61834075299991],[-63.056507941999904,-64.62078215899996],[-63.064116990999935,-64.62509530999986],[-63.07738196499989,-64.63640715899986],[-63.08458411399991,-64.64080169099991],[-63.09190833199992,-64.64283619599996],[-63.09788977799994,-64.64316171699996],[-63.111561652999875,-64.64169687299992],[-63.15355383999994,-64.64381275799994],[-63.17601477799986,-64.64918385199988],[-63.191558397999955,-64.65943775799991],[-63.19371497299995,-64.66448333099986],[-63.19489498599997,-64.676364842],[-63.19717363199996,-64.68206145599987],[-63.201527472999935,-64.68613046699986],[-63.250843878999916,-64.71038176899991],[-63.284006313999946,-64.72039153399992],[-63.28831946499985,-64.72323984199994],[-63.30288652299989,-64.73935312299992],[-63.31851152299987,-64.75042083099996],[-63.33580481699997,-64.75896575299998],[-63.3517146479999,-64.76360442499991],[-63.374256964999894,-64.76751067499991],[-63.39614824099991,-64.76767343499988],[-63.41014563699986,-64.76083749799994],[-63.41258704299989,-64.74960702899995],[-63.40925045499997,-64.74032968499988],[-63.41002356699989,-64.73259856599998],[-63.424672003999916,-64.72584400799994],[-63.44399980399993,-64.72258879999988],[-63.463693813999946,-64.72226327899989],[-63.55825761599987,-64.73219166499989],[-63.572987433999884,-64.74130624799997],[-63.556223110999944,-64.74578215899993],[-63.523996548999925,-64.75066497199991],[-63.50853430899988,-64.75986093499996],[-63.530018683999906,-64.76181406],[-63.55060787699995,-64.76685963299987],[-63.57054602799985,-64.77450937299997],[-63.65070553299989,-64.81650155999988],[-63.660267706999974,-64.82626718499999],[-63.66563880099994,-64.84775155999994],[-63.68211829299992,-64.85320403399987],[-63.70352128799987,-64.84937916499987],[-63.74087480399992,-64.83863697699994],[-63.74811764199995,-64.83505624799989],[-63.75401770699988,-64.82838307099983],[-63.75812740799992,-64.81878020599984],[-63.75951087099992,-64.81129322699996],[-63.76231848899997,-64.80462004999993],[-63.77065995999993,-64.79762135199994],[-63.778553839999915,-64.7938778629999],[-63.80479895699991,-64.78687916499993],[-63.9837947259999,-64.77206796699994],[-64.01512610599985,-64.77548593499995],[-64.02916419199991,-64.77450937299997],[-64.04369055899986,-64.76726653399996],[-64.08999589799991,-64.735935154],[-64.12970943899995,-64.71640390399993],[-64.28209387899997,-64.70989348799985],[-64.29112708199989,-64.7074520809999],[-64.29759680899988,-64.70419687299984],[-64.30109615799998,-64.69988372199994],[-64.30109615799998,-64.69443124799999],[-64.29503333199997,-64.68840911299992],[-64.28482011599993,-64.68718840899999],[-64.26528886599996,-64.68914153399984],[-64.25007076699998,-64.68580494599982],[-64.24266516799992,-64.67799244599983],[-64.23680579299986,-64.66806406],[-64.22630774599989,-64.65781015399989],[-64.21613521999984,-64.65398528399989],[-64.20588131399992,-64.65227629999988],[-64.19627844999994,-64.64902109199993],[-64.18854732999992,-64.63990650799985],[-64.18724524599992,-64.62932708099999],[-64.1886287099999,-64.61248137799998],[-64.19269771999987,-64.59742603999995],[-64.19953365799998,-64.5920549459999],[-64.15599524599985,-64.57927825299996],[-64.14191646999993,-64.57773202899992],[-64.08592688699989,-64.55559661299986],[-63.90294348899992,-64.53476327899988],[-63.85529537699994,-64.50286223799995],[-63.86620032499991,-64.49553801899995],[-63.93614661399994,-64.46575286299985],[-63.930816209999875,-64.45940520599991],[-63.92243404899992,-64.45745208099996],[-63.912831183999934,-64.45680103999982],[-63.90412350199995,-64.45484791499996],[-63.87051347599993,-64.43808359199994],[-63.85651607999994,-64.435642185],[-63.720855272999955,-64.43621184699988],[-63.68773352799991,-64.42978280999986],[-63.657460089999915,-64.41765715899996],[-63.67686926999994,-64.401950779],[-63.681304490999906,-64.39983489399998],[-63.668039516999976,-64.38787200299996],[-63.66315670499992,-64.38445403399996],[-63.65680904899998,-64.3825822899998],[-63.6498103509999,-64.38160572699991],[-63.643299933999906,-64.37997812299989],[-63.63809160099989,-64.375583592],[-63.639027472999885,-64.3627255189999],[-63.65510006399998,-64.35475025799984],[-63.69098873599995,-64.3492977839999],[-63.68797766799986,-64.34596119599988],[-63.65977942599988,-64.32732512799988],[-63.57628333199992,-64.31658294099995],[-63.563710089999915,-64.31324635199985],[-63.55443274599988,-64.30722421699993],[-63.54922441299987,-64.29371510199987],[-63.55614173099988,-64.28427499799994],[-63.5672908189999,-64.27556731599995],[-63.574940558999906,-64.26523202899986],[-63.3607478509999,-64.25758228999983],[-63.36473548099988,-64.24846770599984],[-63.36095130099994,-64.24285247199992],[-63.35252844999991,-64.240329685],[-63.34288489499994,-64.24000416499989],[-63.33446204299989,-64.24228280999995],[-63.313221808999884,-64.254978123],[-63.284779425999965,-64.26140715899993],[-63.27570553299998,-64.26490650799983],[-63.27253170499992,-64.26734791499996],[-63.26768958199992,-64.2733700499999],[-63.263539191999875,-64.27581145599999]]],[[[-56.71446692599991,-64.30657317499988],[-56.80882727799988,-64.32268645599986],[-56.89854895699992,-64.31731536299998],[-56.88023841099994,-64.31031666499982],[-56.86392167899993,-64.30201588299994],[-56.85277258999989,-64.29192473799986],[-56.84947669199997,-64.27996184699984],[-56.71434485599993,-64.23512135199991],[-56.635243292999945,-64.22161223799985],[-56.582508917999945,-64.23512135199991],[-56.633208787999905,-64.27516041499986],[-56.71446692599991,-64.30657317499988]]],[[[-61.6590876939999,-64.17156340899993],[-61.70042883999994,-64.172458592],[-61.71568762899991,-64.17001718499989],[-61.733062303999866,-64.1648088519999],[-61.74913489499997,-64.157321873],[-61.76040605399995,-64.14714934699988],[-61.75389563699986,-64.13860442499995],[-61.753732876999884,-64.13054778399992],[-61.75523841099994,-64.12265390399995],[-61.753732876999884,-64.1141903629999],[-61.747181769999905,-64.10808684699983],[-61.73619544199993,-64.10182057099988],[-61.72443600199998,-64.09710051899995],[-61.71568762899991,-64.0951473939999],[-61.68956458199994,-64.10271575299987],[-61.67613684799994,-64.12265390399995],[-61.6590876939999,-64.17156340899993]]],[[[-62.266916469999835,-64.09929778399986],[-62.00894120999993,-64.14169687299984],[-62.02603105399988,-64.15520598799982],[-62.053049282999915,-64.16008879999988],[-62.131703253999916,-64.16228606599988],[-62.18602454299985,-64.16985442499993],[-62.21149654899994,-64.17839934699985],[-62.194813605999904,-64.18962981599985],[-62.17186438699995,-64.19353606599985],[-62.10326087099992,-64.19060637799983],[-62.09605872299996,-64.19207122199987],[-62.09137936099995,-64.19557057099996],[-62.08503170499992,-64.20175546699994],[-62.080189581999946,-64.20769622199995],[-62.08031165299991,-64.21013762799998],[-62.056630011999914,-64.21209075299986],[-62.04898027299986,-64.2144507789999],[-62.06037350199991,-64.22730885199984],[-62.16783606699997,-64.28655364399982],[-62.18960527299992,-64.29078541499993],[-62.201039191999875,-64.29436614399991],[-62.20750891799989,-64.30055103999996],[-62.206410285999944,-64.30754973799995],[-62.19395911399991,-64.32008228999986],[-62.191029425999886,-64.32822030999988],[-62.194081183999884,-64.33619557099983],[-62.200347459999925,-64.34270598799984],[-62.205311652999875,-64.34905364399994],[-62.204335089999915,-64.356540623],[-62.197824673999925,-64.3601213519999],[-62.18712317599992,-64.36174895599991],[-62.16746985599986,-64.36207447699985],[-62.24063066299991,-64.39316171699986],[-62.24901282499987,-64.39430103999987],[-62.258046027999875,-64.39316171699986],[-62.27546139199995,-64.38600025799981],[-62.28351803299989,-64.38388437299997],[-62.294300910999915,-64.38372161299992],[-62.33580481699988,-64.394138279],[-62.33096269399991,-64.39625416499993],[-62.32453365799989,-64.40227629999993],[-62.31875566299993,-64.409274998],[-62.31615149599995,-64.4144833309999],[-62.317209438999896,-64.42164478999986],[-62.32091223899994,-64.42644622199983],[-62.32648678299994,-64.42994557099993],[-62.35484778599987,-64.4434546849999],[-62.377756313999974,-64.46347421699996],[-62.385487433999884,-64.46599700299998],[-62.42731686099992,-64.46461353999989],[-62.44200598899991,-64.46640390399998],[-62.45417232999989,-64.47226327899993],[-62.45641028599987,-64.47649504999985],[-62.45360266799992,-64.48447031],[-62.45531165299994,-64.48870208099993],[-62.47667395699989,-64.4952124979999],[-62.49425208199991,-64.48284270599999],[-62.4999080069999,-64.46559010199996],[-62.48542232999994,-64.45761484199993],[-62.515736456999946,-64.45435963299997],[-62.53111731699988,-64.45484791499996],[-62.54434160099993,-64.46021900799983],[-62.551909959999875,-64.46949635199996],[-62.55117753799993,-64.47763437299989],[-62.54808508999986,-64.48552825299996],[-62.54845130099989,-64.49472421699994],[-62.55650794199991,-64.50261809699991],[-62.58751380099995,-64.51962655999988],[-62.59850012899988,-64.52353280999988],[-62.61363684799988,-64.52271900799987],[-62.628529425999936,-64.51726653399983],[-62.65656490799995,-64.503024998],[-62.68976803299997,-64.49871184699983],[-62.72642981699988,-64.50115325299986],[-62.761097785999965,-64.49976978999996],[-62.78848222599992,-64.48381926899995],[-62.761952277999875,-64.46884531],[-62.730295376999884,-64.46803150799991],[-62.69717363199996,-64.47234465899992],[-62.66637122299988,-64.47226327899993],[-62.60338294199997,-64.45232512799984],[-62.585601365999885,-64.45370859199993],[-62.63678951699992,-64.44198984199986],[-62.66079667899987,-64.43173593499992],[-62.67369544199991,-64.41008879999983],[-62.673736131999895,-64.40203215899997],[-62.67096920499992,-64.3964169249999],[-62.66584225199992,-64.39218515399988],[-62.65868079299989,-64.38836028399986],[-62.65379798099991,-64.38665129999985],[-62.642689581999974,-64.38437265399998],[-62.63727779899992,-64.38241952899992],[-62.63296464799992,-64.37948984199991],[-62.625070766999954,-64.3721656229999],[-62.620716925999936,-64.36882903399996],[-62.58983313699991,-64.35767994599986],[-62.5807185539999,-64.35051848799982],[-62.575835740999935,-64.3423804669999],[-62.57054602799988,-64.32634856599991],[-62.56550045499991,-64.3186174459998],[-62.55601966099993,-64.31145598799986],[-62.522287563999924,-64.2970516909999],[-62.50999915299988,-64.28915781],[-62.48741614499991,-64.2697893209998],[-62.46930904899989,-64.24846770599984],[-62.46377519399987,-64.23674895599993],[-62.463612433999906,-64.224704685],[-62.47134355399993,-64.21282317499988],[-62.48302161399992,-64.20680103999996],[-62.510161912999926,-64.20484791499982],[-62.5228572259999,-64.20240650799988],[-62.52721106699991,-64.19947682099988],[-62.54137122299991,-64.18523528399987],[-62.54653886599993,-64.18254973799989],[-62.55752519399987,-64.17864348799998],[-62.562489386999935,-64.17546965899983],[-62.56550045499991,-64.17058684699995],[-62.5738826159999,-64.1522762999999],[-62.609486456999946,-64.14104583099999],[-62.62340247299994,-64.13054778399992],[-62.616688605999876,-64.11744557099985],[-62.609486456999946,-64.11541106599984],[-62.58429928299998,-64.11874765399986],[-62.564442511999886,-64.1159807269999],[-62.51569576699995,-64.10222747199987],[-62.48810787699995,-64.08896249799994],[-62.49474036399991,-64.0857072899999],[-62.52839107999992,-64.06340911299995],[-62.562163865999906,-64.05771249799997],[-62.57209225199991,-64.05242278399999],[-62.56012936099998,-64.04599374799996],[-62.49640865799992,-64.03232187299994],[-62.489857550999936,-64.02857838299991],[-62.478505011999886,-64.01653411299989],[-62.47817949099993,-64.01458098799995],[-62.37132727799988,-64.00994231599992],[-62.31468665299988,-64.01604583099991],[-62.26537024599989,-64.03248463299991],[-62.27306067599992,-64.03850676899992],[-62.27985592399994,-64.05738697699994],[-62.28282630099994,-64.0791968729999],[-62.27944902299993,-64.09368254999985],[-62.266916469999835,-64.09929778399986]]],[[[-61.961822068999936,-64.08513762799984],[-61.982533331999946,-64.09091562299997],[-62.00865637899992,-64.09059010199996],[-62.03490149599992,-64.08603281],[-62.05573482999992,-64.07830169099991],[-62.06403561099998,-64.07097747199988],[-62.06541907499988,-64.06243254999988],[-62.060658331999974,-64.05388762799987],[-62.05064856699988,-64.04664478999993],[-62.04466712099986,-64.045017185],[-62.0328669909999,-64.04485442499985],[-62.02708899599994,-64.04306405999994],[-62.02354895699994,-64.03964609199994],[-62.02155514199992,-64.03557708099999],[-62.01911373599998,-64.03167083099999],[-62.01366126199994,-64.02890390399985],[-62.02061926999993,-64.01946379999984],[-62.02354895699994,-64.01669687299987],[-62.00914466099988,-64.01181405999998],[-61.96519934799994,-64.00448984199988],[-61.957346157999986,-64.0022111959998],[-61.93626868399985,-63.99130624799993],[-61.924916144999884,-63.98650481599986],[-61.91368567599988,-63.984633070999976],[-61.879546678999866,-63.984551690999986],[-61.83348548099993,-63.97820403399996],[-61.836008266999954,-63.9750302059999],[-61.839711066999904,-63.96795012799995],[-61.842274542999924,-63.964532158999845],[-61.82921301999994,-63.95973072699994],[-61.813343878999916,-63.96038176899999],[-61.79735266799991,-63.964288018999895],[-61.78429114499991,-63.96949635199998],[-61.79824785099989,-63.97625090899992],[-61.83429928299995,-64.00204843499995],[-61.8465876939999,-64.00676848799995],[-61.87865149599988,-64.01360442499987],[-61.88760331899991,-64.01775481599984],[-61.912953253999945,-64.03866952899989],[-61.92003333199992,-64.04998137799996],[-61.90672766799989,-64.05486419099992],[-61.92454993399988,-64.05779387799996],[-61.93683834499992,-64.06519947699994],[-61.961822068999936,-64.08513762799984]]],[[[-57.80719967399991,-63.81812916499992],[-57.7704971999999,-63.87997812299999],[-57.7554418609999,-63.89609140399996],[-57.80182857999995,-63.90341562299997],[-57.81578528599993,-63.90992603999997],[-57.82363847599993,-63.91725025799988],[-57.82331295499989,-63.92351653399984],[-57.816517706999946,-63.92937590899996],[-57.805409308999934,-63.936211846999974],[-57.81297766799988,-63.9431291649998],[-57.82359778599994,-63.9491512999999],[-57.887928839999944,-63.97568124799996],[-57.834787563999924,-63.993910414999846],[-57.818226691999975,-64.00416432099988],[-57.82575436099992,-64.01197682099986],[-57.83063717399989,-64.01604583099991],[-57.83438066299993,-64.0173479149998],[-57.82506262899988,-64.02166106599992],[-57.81794186099992,-64.02922942499995],[-57.81476803299995,-64.03866952899989],[-57.81729081899988,-64.04876067499985],[-57.82652747299994,-64.05608489399995],[-57.853098110999895,-64.06226978999983],[-57.864369269999884,-64.06658294099984],[-57.82957923099994,-64.074802342],[-57.79137122299988,-64.07927825299988],[-57.753081834999925,-64.07968515399998],[-57.717681443999936,-64.07537200299997],[-57.74437415299986,-64.02996184699998],[-57.72809811099993,-64.01946379999984],[-57.62523352799993,-63.98235442499991],[-57.5423884759999,-63.93922291499989],[-57.4935196609999,-63.92620208099991],[-57.49937903599996,-63.92880624799999],[-57.50560462099991,-63.93417734199995],[-57.51569576699998,-63.94491952899997],[-57.50743567599988,-63.95354583099997],[-57.49673417899987,-63.959893487999814],[-57.47345943899995,-63.96851978999982],[-57.50479081899991,-63.98365650799991],[-57.51113847599992,-63.98821379999986],[-57.51382402299993,-63.99521249799984],[-57.51178951699999,-63.99993254999993],[-57.5091446609999,-64.00416432099988],[-57.50963294199988,-64.00953541499983],[-57.51366126199985,-64.01360442499987],[-57.52000891799989,-64.01685963299984],[-57.53258216099988,-64.02141692499987],[-57.52122962099989,-64.0209286439999],[-57.15538489499997,-64.08513762799984],[-57.18980872299991,-64.09384531],[-57.19546464799989,-64.09636809699992],[-57.19139563699994,-64.1037736959999],[-57.18346106699997,-64.10857512799998],[-57.17393958199997,-64.11126067499988],[-57.1647029289999,-64.11248137799998],[-57.19603430899985,-64.12509530999998],[-57.22972571499986,-64.12900155999988],[-57.33104407499991,-64.12574635199984],[-57.36375891799994,-64.12948984199987],[-57.37287350199991,-64.13274504999991],[-57.393706834999904,-64.14332447699987],[-57.40038001199988,-64.14560312299993],[-57.34341386599993,-64.14674244599996],[-57.32624264199992,-64.15097421699988],[-57.31997636599988,-64.15813567499993],[-57.30736243399988,-64.1591122379999],[-57.29328365799995,-64.15862395599983],[-57.28278561099998,-64.1617164039999],[-57.31627356699994,-64.17945728999982],[-57.32559160099987,-64.18181731599987],[-57.30125891799992,-64.18238697699982],[-57.25609290299985,-64.17734140399998],[-57.21312415299991,-64.16765715899984],[-57.149566209999904,-64.16399504999988],[-57.13735917899993,-64.16936614399992],[-57.121408657999915,-64.15960051899998],[-57.09203040299994,-64.1539852839999],[-57.070220506999874,-64.15960051899998],[-57.07725989499994,-64.1837704409999],[-57.09312903599988,-64.19768645599989],[-57.11302649599986,-64.20696379999991],[-57.203968878999916,-64.22226327899998],[-57.22842363199996,-64.22161223799985],[-57.2520238919999,-64.21599700299984],[-57.242746548999946,-64.22527434699998],[-57.25255286399988,-64.2347958309999],[-57.264475063999924,-64.240329685],[-57.27745520699992,-64.24260833099989],[-57.291086391999954,-64.24277109199994],[-57.308216925999886,-64.2408179669999],[-57.392201300999936,-64.21803150799988],[-57.423329230999855,-64.2136369769999],[-57.45360266799986,-64.21754322699988],[-57.484486456999925,-64.23267994599988],[-57.47642981699997,-64.23211028399992],[-57.34666907499991,-64.25139739399995],[-57.32575436099993,-64.258884373],[-57.30663001199986,-64.2697893209998],[-57.37043209499989,-64.27800872199998],[-57.512318488999966,-64.25554778399999],[-57.56456458199997,-64.28720468499995],[-57.55117753799988,-64.2922502579999],[-57.38670813699994,-64.30584075299986],[-57.36839758999988,-64.31064218499994],[-57.351429816999904,-64.31780364399998],[-57.29954993399991,-64.34677499799989],[-57.29084225199991,-64.35418059699995],[-57.28429114499994,-64.36191171699988],[-57.29552161399994,-64.37118906],[-57.38410396999993,-64.38876718499995],[-57.414173956999974,-64.38811614399991],[-57.43049068899989,-64.38591887799981],[-57.442250128999966,-64.3807919249999],[-57.44758053299995,-64.37232838299987],[-57.449208136999886,-64.35328541499996],[-57.45457923099991,-64.34547291499987],[-57.467396613999966,-64.33993905999995],[-57.48338782499985,-64.33757903399999],[-57.4996638659999,-64.33806731599998],[-57.513335740999935,-64.34099700299991],[-57.49583899599989,-64.35523853999983],[-57.487131313999896,-64.36679452899993],[-57.492421027999875,-64.37379322699984],[-57.516346808999934,-64.37525807099989],[-57.51622473899996,-64.37102629999995],[-57.52452551999994,-64.36126067499984],[-57.535227016999954,-64.35116952899995],[-57.542307094999934,-64.34563567499984],[-57.555775519999905,-64.34148528399999],[-57.5709529289999,-64.33879973799992],[-57.58641516799992,-64.337985935],[-57.60045325399997,-64.33928801899991],[-57.5721736319999,-64.35686614399985],[-57.587554490999935,-64.356540623],[-57.60069739499992,-64.35369231599988],[-57.639027472999935,-64.33521900799994],[-57.65135657499988,-64.33147551899992],[-57.66405188699986,-64.33123137799987],[-57.67747962099995,-64.33603280999995],[-57.65770423099991,-64.35735442499993],[-57.65233313699985,-64.36939869599993],[-57.65754146999988,-64.38307057099996],[-57.67284094999991,-64.39316171699986],[-57.691029425999915,-64.39421965899997],[-57.70978756399996,-64.39234791499983],[-57.72704016799988,-64.39364999799993],[-57.72752844999985,-64.38111744599993],[-57.726307745999954,-64.36728280999992],[-57.723215298999946,-64.35328541499996],[-57.71800696499986,-64.34172942499985],[-57.706532355999904,-64.3307430969999],[-57.68651282499985,-64.31601327899989],[-57.666167772999955,-64.30396900799995],[-57.65420488199993,-64.30152760199994],[-57.68529212099991,-64.28932057099996],[-57.71979732999995,-64.29517994599982],[-57.75450598899991,-64.30787525799997],[-57.786000128999916,-64.3156063779999],[-57.80296790299991,-64.31259530999998],[-57.83763587099989,-64.2990861959999],[-57.85521399599991,-64.29949309699992],[-57.85252844999994,-64.30388762799998],[-57.84911048099991,-64.30722421699993],[-57.827626105999876,-64.32301197699996],[-57.82457434799991,-64.32773202899998],[-57.82363847599993,-64.33391692499995],[-57.8258357409999,-64.3479143209999],[-57.82526607999994,-64.35466887799986],[-57.821522589999915,-64.36239999799984],[-57.81607011599996,-64.36956145599999],[-57.803130662999955,-64.3812802059999],[-57.817209438999896,-64.39104583099993],[-57.82274329299992,-64.39657968499986],[-57.82664954299992,-64.4050432269999],[-57.839466925999936,-64.40154387799998],[-57.853098110999895,-64.4032528629999],[-57.85997473899991,-64.40862395599996],[-57.85252844999994,-64.41668059699998],[-57.865589972999906,-64.41952890399985],[-57.90147864499991,-64.41716887799998],[-57.95555579299989,-64.40422942499988],[-57.96751868399991,-64.39853280999989],[-57.95653235599985,-64.38844166499993],[-57.951527472999906,-64.3825822899998],[-57.94798743399994,-64.37615325299988],[-57.94688880099989,-64.37029387799991],[-57.94579016799994,-64.35068124799997],[-57.94701087099986,-64.34661223799992],[-57.92593339799993,-64.34449635199982],[-57.91539466099987,-64.34221770599993],[-57.906849738999966,-64.33766041499987],[-57.93309485599988,-64.322849217],[-57.962391730999904,-64.31601327899989],[-58.04881751199991,-64.31796640399995],[-58.06078040299993,-64.32138437299994],[-58.06908118399991,-64.32903411299989],[-58.07103430899986,-64.33863697699987],[-58.06932532499985,-64.3601213519999],[-58.07363847599995,-64.36980559699985],[-58.08804277299993,-64.38103606599995],[-58.106922980999855,-64.3899065079999],[-58.12694251199991,-64.39470794099988],[-58.144602016999926,-64.39381275799988],[-58.13320878799988,-64.38144296699994],[-58.103138800999936,-64.3627255189999],[-58.08967037699994,-64.35198333099994],[-58.11432857999994,-64.3488095029999],[-58.13385982999991,-64.34954192499993],[-58.1524958979999,-64.35613372199991],[-58.18382727799985,-64.37623463299987],[-58.19347083199991,-64.38103606599995],[-58.20376542899992,-64.38372161299992],[-58.214995897999955,-64.38453541499993],[-58.230336066999904,-64.38014088299984],[-58.23228919199994,-64.371677342],[-58.22899329299992,-64.36288827899986],[-58.22850501199991,-64.35808684699994],[-58.313303188999896,-64.32138437299994],[-58.29800370999993,-64.30754973799995],[-58.27818762899991,-64.29843515399986],[-58.236398891999904,-64.288669529],[-58.180531378999916,-64.28199635199987],[-58.16462154899992,-64.2836239559999],[-58.16014563699995,-64.28264739399991],[-58.15587317599991,-64.27922942499991],[-58.154693162999905,-64.27605559699985],[-58.15453040299993,-64.27304452899985],[-58.1529434889999,-64.2697893209998],[-58.137847459999904,-64.262790623],[-58.075835740999935,-64.26002369599986],[-58.04198157499988,-64.25505950299997],[-58.02578691299993,-64.24911874799987],[-58.01268469999987,-64.23902760199991],[-58.051909959999904,-64.22869231599991],[-58.14293372299991,-64.22112395599996],[-58.18321692599991,-64.21306731599984],[-58.17365475199992,-64.18816497199998],[-58.13524329299991,-64.1189104149999],[-58.13109290299988,-64.10222747199987],[-58.19522050699993,-64.0866024719999],[-58.25674394399987,-64.10035572699982],[-58.313303188999896,-64.12428150799995],[-58.36192786399994,-64.13909270599993],[-58.42015540299988,-64.1371395809999],[-58.460764126999976,-64.12948984199987],[-58.4576716789999,-64.127536717],[-58.443959113999966,-64.11353932099986],[-58.43708248599995,-64.11052825299984],[-58.4148656889999,-64.10605234199997],[-58.45384680899988,-64.08945077899992],[-58.46035722599987,-64.0857072899999],[-58.451242641999954,-64.06951262799984],[-58.43431555899988,-64.06064218499998],[-58.41421464799993,-64.05380624799989],[-58.39586341099989,-64.04404062299984],[-58.38255774599987,-64.02890390399985],[-58.37344316299987,-64.01376718499985],[-58.36217200399989,-64.0005835919999],[-58.34178626199992,-63.991794528999925],[-58.312001105999904,-63.99098072699991],[-58.29963131399996,-63.98772551899987],[-58.296986456999974,-63.97747161299984],[-58.303130662999926,-63.9716122379999],[-58.3326309889999,-63.95427825299999],[-58.303944464999866,-63.92498137799989],[-58.25767981699997,-63.906833591999884],[-58.16633053299992,-63.89275481599994],[-58.141468878999945,-63.89381275799991],[-58.128285285999915,-63.897881768999866],[-58.11864173099985,-63.89804452900001],[-58.103911912999955,-63.88730234199999],[-58.103342251999884,-63.88160572699983],[-58.10903886599996,-63.87664153399988],[-58.10903886599996,-63.868340752999906],[-58.0911759109999,-63.852959893999945],[-58.076283331999946,-63.84677499799998],[-58.0233455069999,-63.83684661299998],[-57.95262610599988,-63.859958591999934],[-57.94701087099986,-63.85361093499991],[-57.94318600199994,-63.84685637799996],[-57.94196529899992,-63.8397763],[-57.94448808499993,-63.831719658999965],[-57.94945227799991,-63.827325127999885],[-57.96812903599989,-63.81609465899997],[-57.973540818999936,-63.81462981599983],[-57.95181230399996,-63.80510833099992],[-57.92723548099993,-63.80046965899999],[-57.79466712099991,-63.79143645599998],[-57.793324347999935,-63.79363372199988],[-57.821522589999915,-63.80917734199989],[-57.827951626999926,-63.80974700299986],[-57.82335364499988,-63.812758070999955],[-57.81216386599987,-63.815524998],[-57.80719967399991,-63.81812916499992]]],[[[-57.40249589799986,-63.83912525799995],[-57.36729895699992,-63.84197356599989],[-57.22301184799991,-63.81113046699993],[-57.1848852199999,-63.80917734199989],[-57.171131964999915,-63.810804945999905],[-57.143422003999945,-63.81975676899993],[-57.12059485599991,-63.83025481599982],[-57.089100714999915,-63.839450778999975],[-57.095692511999886,-63.8453915339999],[-57.10728919199991,-63.847832940999844],[-57.148996548999946,-63.85100676899991],[-57.15440833199988,-63.85312265399991],[-57.160064256999874,-63.85719166499988],[-57.16222083199989,-63.860609632999896],[-57.16331946499991,-63.864353123],[-57.17056230399996,-63.876071872999916],[-57.17292232999992,-63.877536716999956],[-57.17955481699997,-63.88005950299998],[-57.20067298099988,-63.88486093499987],[-57.24396725199995,-63.9022763],[-57.2369685539999,-63.883396091999906],[-57.23680579299991,-63.87330494599985],[-57.242909308999906,-63.866875908999845],[-57.24966386599993,-63.866387627999856],[-57.31004798099988,-63.87078215899993],[-57.35289466099996,-63.88396575299988],[-57.36595618399994,-63.88486093499987],[-57.379302537999926,-63.88372161299993],[-57.487131313999896,-63.85458749799997],[-57.50108801999996,-63.85857512799986],[-57.51374264199992,-63.87517669099991],[-57.53233801999994,-63.866794528999854],[-57.54767818899998,-63.86402760199981],[-57.55190995999991,-63.86272551899998],[-57.55821692599994,-63.85898202899987],[-57.562570766999926,-63.85564544099985],[-57.56720943899995,-63.85320403399991],[-57.57433020699992,-63.85173919099993],[-57.61461341099987,-63.85491301899999],[-57.62852942599997,-63.85409921699998],[-57.63609778599991,-63.85214609199994],[-57.64305579299992,-63.84937916499988],[-57.69517981699994,-63.81666432099986],[-57.64769446499995,-63.8047828099999],[-57.36998450399991,-63.78826262799992],[-57.36595618399994,-63.7888322899998],[-57.36196855399996,-63.791273695999834],[-57.35814368399994,-63.79876067499999],[-57.35724850199995,-63.80706145599997],[-57.35480709499993,-63.815118096999825],[-57.34618079299992,-63.821465752999934],[-57.38980058499991,-63.83310312299986],[-57.40249589799986,-63.83912525799995]]],[[[-61.65339107999992,-63.80339934699992],[-61.68419348899988,-63.80787525799998],[-61.684437628999945,-63.80396900799989],[-61.69322669199991,-63.780450127999934],[-61.699859178999866,-63.77214934699995],[-61.708241339999915,-63.76409270599992],[-61.726063605999904,-63.75090911299987],[-61.745961066999904,-63.741794528999975],[-61.80825761599988,-63.72893645599986],[-61.7848201159999,-63.72283294099996],[-61.636382615999956,-63.72616952899999],[-61.62140865799992,-63.73235442499996],[-61.61375891799989,-63.763604424999926],[-61.62718665299988,-63.78785572699992],[-61.65339107999992,-63.80339934699992]]],[[[-60.563628709999904,-63.70208098799987],[-60.61339270699989,-63.7274716129999],[-60.61432857999998,-63.73601653399982],[-60.62409420499991,-63.74049244599997],[-60.64549719999988,-63.74537525799986],[-60.65648352799994,-63.75579192499994],[-60.669829881999924,-63.78289153399996],[-60.679595506999874,-63.794854424999905],[-60.69546464799989,-63.805759372999965],[-60.69884192599992,-63.80966562299989],[-60.69334876199988,-63.825127862999906],[-60.67174231699991,-63.84172942499986],[-60.6458227199999,-63.85458749799997],[-60.62791907499993,-63.85857512799986],[-60.68008378799996,-63.87281666499986],[-60.72887122299997,-63.89470794099998],[-60.73997962099992,-63.903903903999954],[-60.7447810539999,-63.90496184699983],[-60.750721808999906,-63.90406666499984],[-60.7525528639999,-63.901788018999945],[-60.75332597599992,-63.89885833099985],[-60.75597083199992,-63.89625416499984],[-60.768218553999866,-63.89169687299989],[-60.779693162999905,-63.890557549999855],[-60.79059811099989,-63.89316171699995],[-60.80113684799994,-63.89967213299985],[-60.815541144999905,-63.91277434699982],[-60.821156378999916,-63.91350676899985],[-60.88353430899989,-63.903497002999956],[-60.8990372389999,-63.89690520599998],[-60.87022864499996,-63.8860002579999],[-60.864613410999965,-63.87900155999993],[-60.86497962099989,-63.870863539999824],[-60.87035071499994,-63.864841404],[-60.87824459499989,-63.860609632999896],[-60.88658606699989,-63.85857512799986],[-60.910796678999866,-63.856133721999825],[-60.96808834499993,-63.85947030999986],[-60.98452714799989,-63.85588958099998],[-60.98452714799989,-63.84246184699988],[-60.97940019399991,-63.839613539999846],[-60.9720759759999,-63.8397763],[-60.958607550999915,-63.84295012799988],[-60.92308508999991,-63.84726327899996],[-60.84732011599996,-63.84685637799996],[-60.8077693349999,-63.840427341999856],[-60.78746497299991,-63.83473072699987],[-60.777455206999925,-63.830010674999954],[-60.77025305899992,-63.82317473799986],[-60.76667232999992,-63.814548434999935],[-60.76797441299993,-63.80852629999985],[-60.771839972999935,-63.80339934699992],[-60.775380011999914,-63.796970309999914],[-60.79076087099986,-63.79094817499999],[-60.80296790299994,-63.78167083099994],[-60.807525193999886,-63.76946379999988],[-60.79971269399988,-63.754489841999934],[-60.79027258999985,-63.751397393999866],[-60.71328691299988,-63.751071872999844],[-60.69908606699996,-63.74635182099993],[-60.685861782999915,-63.73495859199986],[-60.68455969999994,-63.732679945999806],[-60.68248450399992,-63.73007577899989],[-60.67682857999991,-63.72673919099987],[-60.66515051999991,-63.722263278999904],[-60.69127356699988,-63.715020440999965],[-60.75690670499989,-63.72283294099996],[-60.76878821499994,-63.72185637799989],[-60.778187628999945,-63.71746184699982],[-60.771351691999946,-63.70973072699981],[-60.77285722599989,-63.700127862999835],[-60.77940833199997,-63.69011809699993],[-60.78726152299987,-63.68181731599995],[-60.791411912999905,-63.67937590899983],[-60.80256100199991,-63.674574476999936],[-60.80532792899987,-63.671319268999895],[-60.802235480999904,-63.66578541499997],[-60.79198157499987,-63.66692473799982],[-60.756255662999926,-63.6799455709999],[-60.72451738199987,-63.68767669099991],[-60.59105383999988,-63.690036716999956],[-60.55284583199991,-63.69931405999991],[-60.563628709999904,-63.70208098799987]]],[[[-57.487416144999905,-63.696058851999865],[-57.51154537699995,-63.69833749799994],[-57.53087317599997,-63.693129164999846],[-57.53307044199996,-63.69150155999992],[-57.535145636999886,-63.689141533999866],[-57.538929816999904,-63.68320077899994],[-57.538929816999904,-63.683119398999956],[-57.552316860999895,-63.65593840899985],[-57.56086178299992,-63.64568450299983],[-57.572132941999904,-63.642754815999986],[-57.48631751199988,-63.6237118469999],[-57.440419074999916,-63.619235934999935],[-57.40208899599989,-63.628024998],[-57.41266842399992,-63.63250090899988],[-57.446400519999905,-63.678155206],[-57.46385657499988,-63.68865325299988],[-57.487416144999905,-63.696058851999865]]],[[[-56.57787024599992,-63.611016533999944],[-56.64801998599998,-63.623304945999905],[-56.68919837099986,-63.59286874799994],[-56.662831183999856,-63.56747812299993],[-56.602691209999875,-63.557305596999875],[-56.530425584999904,-63.55828215899986],[-56.46792558499995,-63.56568775799985],[-56.57787024599992,-63.611016533999944]]],[[[-59.79417883999989,-63.59840260199987],[-59.81533769399988,-63.600844007999896],[-59.834706183999906,-63.60035572699992],[-59.85317949099994,-63.59531015399998],[-59.87157141799989,-63.583754164999945],[-59.874419725999935,-63.57268645599982],[-59.862049933999884,-63.563571873],[-59.83751380099994,-63.55462004999998],[-59.83861243399991,-63.553399346999974],[-59.84166419199991,-63.546482028999975],[-59.84235592399994,-63.5442033829999],[-59.81720943899995,-63.546482028999975],[-59.80117753799996,-63.551527601999915],[-59.79735266799986,-63.553399346999974],[-59.79405676999991,-63.556084893999866],[-59.79283606699991,-63.55974700299992],[-59.79482988199993,-63.56650155999985],[-59.79426021999986,-63.56959400799993],[-59.7760310539999,-63.58993906],[-59.777943488999945,-63.59482187299999],[-59.79417883999989,-63.59840260199987]]],[[[-55.93236243399991,-63.57935963299997],[-55.964914516999954,-63.58147551899989],[-56.15778561099992,-63.526299737999956],[-56.23379472599993,-63.4846330709999],[-56.2404679029999,-63.478692315999965],[-56.240142381999874,-63.47258879999997],[-56.23672441299996,-63.46884530999986],[-56.23241126199986,-63.465590101999815],[-56.22948157499985,-63.46152109199994],[-56.21971594999991,-63.443454685],[-56.206654425999915,-63.4362118469999],[-56.01280676999988,-63.41130950299987],[-55.80638587099986,-63.40740325299996],[-55.7469783189999,-63.4283993469999],[-55.719593878999945,-63.47535572699985],[-55.719105597999935,-63.49911874799985],[-55.9237361319999,-63.54924895599984],[-55.93236243399991,-63.57935963299997]]],[[[-62.01178951699998,-63.34514739399989],[-62.08307858,-63.35263437299985],[-62.27749589799989,-63.35230885199983],[-62.26716061099998,-63.34880950299993],[-62.25617428299992,-63.3402645809999],[-62.24689693899995,-63.32935963299983],[-62.2415665359999,-63.319268487999864],[-62.24022376199991,-63.30388762799984],[-62.24469967399997,-63.292168877999934],[-62.25340735599986,-63.2824032529999],[-62.26431230399993,-63.27312590899985],[-62.25552324099988,-63.271905205999836],[-62.211089647999955,-63.25546640400001],[-62.21007239499988,-63.25123463299991],[-62.213612433999884,-63.24456145599994],[-62.21377519399993,-63.23886484199988],[-62.20270748599989,-63.23707447699998],[-62.18700110599993,-63.24016692499988],[-62.154123501999955,-63.25009530999987],[-62.035511847999885,-63.25807057099993],[-62.01952063699988,-63.2616513],[-62.012277798999946,-63.26482512799987],[-62.006499803999894,-63.26978932099982],[-62.002797003999945,-63.27711353999983],[-61.99909420499992,-63.29159921699996],[-61.99388587099991,-63.298516533999866],[-61.9852595689999,-63.303317966999856],[-61.97370357999989,-63.30722421699995],[-61.95173092399997,-63.311781507999804],[-61.97573808499993,-63.33359140399995],[-62.01178951699998,-63.34514739399989]]],[[[-57.02940833199992,-63.2810197899999],[-57.03620357999995,-63.34726327899989],[-57.02782141799989,-63.35035572699996],[-57.01146399599989,-63.359470309999956],[-57.00291907499985,-63.36223723799992],[-57.01634680899994,-63.37395598799982],[-57.02749589799987,-63.38689544099991],[-57.04759680899991,-63.415622653999954],[-56.96580969999994,-63.39527760199988],[-56.94440670499989,-63.39853280999992],[-56.9288630849999,-63.42017994599991],[-56.941802537999905,-63.43889739399997],[-56.96776282499988,-63.452813408999866],[-56.99132239499994,-63.4603817689999],[-56.98005123599995,-63.47063567499993],[-56.96886145699992,-63.473565362999864],[-56.95750891799986,-63.47478606599988],[-56.945708787999905,-63.479750257999925],[-56.93394934799991,-63.49081796699987],[-56.925526495999854,-63.5010718729999],[-56.91608639199995,-63.50986093499986],[-56.901193813999896,-63.51637135199985],[-56.82437089799987,-63.53101978999986],[-56.79963131399989,-63.54306405999987],[-56.77603105399996,-63.56308359199985],[-56.76813717399989,-63.58294036299994],[-56.7757869129999,-63.603773695999834],[-56.79906165299993,-63.626234632999925],[-56.8216039699999,-63.63811614399988],[-56.847808397999955,-63.64373137799997],[-56.87486731699988,-63.642673434999914],[-56.89940344999991,-63.63453541499982],[-56.945423956999946,-63.61296965899998],[-56.968373175999936,-63.61142343499995],[-57.020375128999916,-63.63298919099995],[-57.0959366529999,-63.651788018999824],[-57.12441972599993,-63.65447356599989],[-57.146473761999914,-63.64324309699998],[-57.16331946499991,-63.622491143999895],[-57.17552649599992,-63.596856377999835],[-57.16999264199998,-63.579766533999965],[-57.1466365229999,-63.56707122199991],[-57.11807206899991,-63.55974700299992],[-57.09654700399989,-63.55852629999989],[-57.10415605399993,-63.546482028999975],[-57.11461341099991,-63.53704192499996],[-57.12694251199986,-63.52988046700001],[-57.140288865999956,-63.52450937299987],[-57.13658606699991,-63.51962655999989],[-57.130686001999976,-63.50823333099984],[-57.12677975199989,-63.503513278999925],[-57.14513098899993,-63.498711846999846],[-57.177316860999895,-63.476820570999905],[-57.20128333199994,-63.47307708099996],[-57.29426021999993,-63.48137786299986],[-57.343006964999944,-63.47234465899994],[-57.394683397999906,-63.45419687299993],[-57.44538326699996,-63.44443124799991],[-57.491037563999974,-63.46005624799988],[-57.45791581899993,-63.49236419099991],[-57.45099850199995,-63.51083749799992],[-57.45840410099993,-63.53378671699992],[-57.38609778599989,-63.5416805969999],[-57.42072506399995,-63.56194426899999],[-57.48216712099995,-63.56552499799988],[-57.68639075399997,-63.5525041649998],[-57.715565558999906,-63.55413176899983],[-57.72883053299995,-63.56666432099991],[-57.74058997299994,-63.58074309699985],[-57.765614386999935,-63.58700937299999],[-57.726429816999904,-63.598728122999894],[-57.60440019399994,-63.60247161299983],[-57.61851966099988,-63.60613372199988],[-57.655751105999876,-63.62509530999989],[-57.67324785099992,-63.63046640399985],[-57.69969641799989,-63.63079192499987],[-57.70807857999995,-63.63250090899988],[-57.71597245999993,-63.636651299999826],[-57.727691209999925,-63.647556247999894],[-57.733998175999936,-63.65195077899997],[-57.750884568999936,-63.65634530999987],[-57.76691646999984,-63.65447356599989],[-57.783314581999946,-63.650160414999796],[-57.80182857999995,-63.647556247999894],[-57.84292558499996,-63.64820728999994],[-57.864165818999936,-63.651788018999824],[-57.88133704299986,-63.65943775799994],[-57.877023891999954,-63.66106536299987],[-57.86823482999989,-63.66529713299989],[-57.86367753799993,-63.66676197699995],[-57.865386522999955,-63.669366143999845],[-57.88670813699991,-63.681898695999934],[-57.895375128999916,-63.68377044099982],[-57.905140753999945,-63.68466562299999],[-57.92406165299988,-63.68401458099995],[-57.991118943999965,-63.67099374799987],[-58.03359941299993,-63.67327239399993],[-58.077056443999965,-63.66285572699985],[-58.09772701699998,-63.66399504999988],[-58.117176886999886,-63.67449309699996],[-58.154164191999904,-63.705010674999905],[-58.17528235599993,-63.716403903999954],[-58.29246985599991,-63.753594658999866],[-58.32921301999991,-63.77654387799985],[-58.38121497299988,-63.830661717],[-58.400461391999926,-63.84221770599984],[-58.41978919199994,-63.843438408999866],[-58.439564581999974,-63.84050872199985],[-58.45726477799988,-63.842543226999865],[-58.47069251199988,-63.85865650799985],[-58.46515865799995,-63.861586195999955],[-58.45470130099997,-63.86939869599995],[-58.44908606699996,-63.87200286299986],[-58.49913489499988,-63.91033294099997],[-58.61900794199994,-63.94475676899982],[-58.65908769399987,-63.96404387799985],[-58.70470130099991,-63.99480559699984],[-58.7333064439999,-64.03142669099994],[-58.72305253799988,-64.06764088299997],[-58.707386847999885,-64.08766041499993],[-58.713286912999926,-64.09775155999989],[-58.751779751999926,-64.11467864399998],[-58.77131100199989,-64.13152434699998],[-58.78441321499989,-64.14755624799997],[-58.80650794199994,-64.18694426899995],[-58.80899003799988,-64.1954078099999],[-58.810902472999935,-64.20574309699983],[-58.813832160999965,-64.21477629999984],[-58.819894985999944,-64.21868254999993],[-58.874989386999914,-64.21835702899989],[-58.896717902999875,-64.21404387799998],[-58.93919837099994,-64.20012786299992],[-59.03343665299994,-64.18889739399982],[-59.05479895699989,-64.1919898419999],[-59.06212317599991,-64.19801197699982],[-59.07266191299996,-64.2144507789999],[-59.08165442599988,-64.21786874799992],[-59.093861456999946,-64.22063567499995],[-59.10789954299992,-64.22730885199984],[-59.11628170499994,-64.23650481599998],[-59.11164303299995,-64.24651458099989],[-59.08897864499988,-64.25628020599983],[-58.76992753799993,-64.28240325299987],[-58.75454667899987,-64.29338958099993],[-58.74868730399993,-64.31650155999989],[-58.761382615999906,-64.33220794099995],[-58.79112708199991,-64.33863697699987],[-58.84752356699997,-64.3384742169999],[-58.87340247299997,-64.34156666499989],[-58.92259680899988,-64.35735442499993],[-58.94945227799988,-64.35735442499993],[-58.93317623599995,-64.38062916499993],[-58.905873175999936,-64.40007903399993],[-58.87474524599986,-64.41285572699988],[-58.81065833199988,-64.41741301899992],[-58.77989661399991,-64.43173593499992],[-58.76203365799995,-64.45867278399989],[-58.76402747299988,-64.49863046699983],[-58.783924933999884,-64.52760182099993],[-58.81578528599991,-64.54273853999993],[-58.88988196499986,-64.5515276019999],[-58.91706295499997,-64.54656340899993],[-58.95474199099994,-64.53248463299981],[-58.9908341139999,-64.51433684699998],[-59.01305091099996,-64.49675872199995],[-58.992746548999946,-64.48357512799983],[-58.98607337099988,-64.46347421699996],[-58.99303137899989,-64.4434546849999],[-59.013661261999914,-64.43043385199991],[-59.036244269999884,-64.43027109199994],[-59.17121334499986,-64.45916106599987],[-59.22321529899992,-64.46103280999994],[-59.275298631999874,-64.45484791499996],[-59.330881313999896,-64.4400367169999],[-59.367502407999915,-64.4115536439999],[-59.417632615999935,-64.33082447699988],[-59.46393795499992,-64.31064218499994],[-59.487782355999876,-64.311618748],[-59.51646887899994,-64.31715260199994],[-59.5439346999999,-64.32642994599989],[-59.5637914699999,-64.33879973799992],[-59.60753333199997,-64.37859465899992],[-59.632394985999916,-64.3907203099999],[-59.66218014199992,-64.39153411299984],[-59.649281378999916,-64.40691497199995],[-59.622181769999884,-64.43108489399995],[-59.61066646999987,-64.44801197699994],[-59.61156165299985,-64.46624114399992],[-59.640980597999935,-64.50237395599996],[-59.649240688999924,-64.52027760199984],[-59.6243383449999,-64.5134416649999],[-59.60435950399991,-64.51067473799995],[-59.58556067599997,-64.514255467],[-59.5637914699999,-64.52662525799985],[-59.55089270699989,-64.54469166499996],[-59.55540930899994,-64.56259530999992],[-59.57079016799989,-64.5778134089999],[-59.59105383999988,-64.58798593499995],[-59.63560950399989,-64.59433359199997],[-59.67992102799993,-64.58855559699983],[-59.768910285999944,-64.566989842],[-59.7591446609999,-64.55462004999988],[-59.75544186099995,-64.54216887799987],[-59.74909420499992,-64.49618905999989],[-59.75422115799993,-64.43629322699987],[-59.77017167899992,-64.42473723799984],[-59.78986568899998,-64.41985442499995],[-59.83079993399991,-64.41716887799998],[-59.91759192599991,-64.39348723799986],[-59.95750891799989,-64.38746510199987],[-60.007313605999855,-64.39837004999993],[-59.98912512899997,-64.42848072699988],[-59.98721269399991,-64.44198984199986],[-59.99583899599992,-64.45647551899998],[-60.00951087099986,-64.46803150799991],[-60.024525519999884,-64.4762509089999],[-60.04076087099992,-64.48170338299994],[-60.18228105399987,-64.51336028399993],[-60.223866339999944,-64.51588307099992],[-60.23448645699989,-64.52068450299993],[-60.24571692599988,-64.53606536299988],[-60.25275631399995,-64.55291106599988],[-60.261952277999946,-64.56609465899983],[-60.279286261999914,-64.57073333099986],[-60.3468318349999,-64.53736744599996],[-60.36416581899988,-64.53142669099985],[-60.42198645699989,-64.52483489399987],[-60.38776607999992,-64.5929501279999],[-60.375965949999845,-64.6071916649999],[-60.36286373599998,-64.61760833099999],[-60.355539516999954,-64.62818775799994],[-60.360910610999916,-64.64364999799997],[-60.37462317599994,-64.64804452899995],[-60.39745032499988,-64.64617278399999],[-60.43724524599986,-64.6387671849999],[-60.45665442599997,-64.63909270599984],[-60.46890214799992,-64.64519622199983],[-60.48033606699988,-64.65439218499998],[-60.497181769999884,-64.66399504999995],[-60.63630123599989,-64.69654713299984],[-60.66588294199993,-64.70867278399993],[-60.70262610599985,-64.73154062299993],[-60.72325598899989,-64.7580705709998],[-60.70494544199992,-64.78101978999989],[-60.735178188999924,-64.81096770599986],[-60.81956946499989,-64.84351978999983],[-60.856068488999945,-64.86353932099989],[-61.00829016799992,-64.98748137799998],[-61.051747199999845,-65.01091887799988],[-61.09752356699997,-65.00872161299998],[-61.14513098899993,-64.99879322699988],[-61.19432532499985,-64.99976978999995],[-61.381214972999906,-65.05331796699987],[-61.39000403599988,-65.05169036299985],[-61.39834550699994,-65.04599374799986],[-61.42292232999995,-65.02166106599996],[-61.42804928299994,-65.01474374799989],[-61.43541419199996,-65.00888437299994],[-61.51846269399993,-64.97909921699986],[-61.54141191299993,-64.97421640399988],[-61.72874915299989,-64.96868254999995],[-61.75031490799989,-64.97535572699991],[-61.756214972999906,-64.99293385199994],[-61.74445553299994,-65.07390715899999],[-61.739369269999905,-65.08782317499988],[-61.73265540299988,-65.0925432269999],[-61.72350012899989,-65.09490325299983],[-61.69310462099992,-65.11256275799985],[-61.674631313999896,-65.11907317499984],[-61.634388800999915,-65.12558359199986],[-61.58348548099991,-65.12509530999995],[-61.56847083199997,-65.13209400799994],[-61.55577551999991,-65.15789153399996],[-61.60814368399988,-65.16985442499997],[-61.62621008999991,-65.17017994599983],[-61.60448157499994,-65.19963958099999],[-61.60643469999987,-65.22478606599988],[-61.62755286399992,-65.24138762799984],[-61.66299394399991,-65.24537525799991],[-61.73355058499987,-65.24098072699985],[-61.80370032499994,-65.24675872199998],[-61.83039303299994,-65.24187590899983],[-61.93163001199991,-65.19329192499987],[-61.96117102799988,-65.19133879999984],[-61.99657141799988,-65.19939544099995],[-62.03058834499992,-65.21331145599993],[-62.05573482999992,-65.22926197699994],[-62.02171790299988,-65.24911874799994],[-62.03888912699992,-65.26165129999995],[-62.125070766999954,-65.29273853999996],[-62.14875240799998,-65.29843515399985],[-62.19831295499991,-65.30445728999985],[-62.18732662699994,-65.33033619599986],[-62.17511959499987,-65.3440080709998],[-62.157338019999884,-65.35027434699985],[-62.03209387899997,-65.37224700299987],[-62.045765753999916,-65.38347747199995],[-62.05858313699986,-65.38990650799988],[-62.072417772999955,-65.3928361959998],[-62.089466925999915,-65.39348723799985],[-62.09544837099992,-65.40309010199982],[-62.098255988999966,-65.42489999799997],[-62.09776770699997,-65.44817473799996],[-62.094309048999975,-65.46249765399988],[-62.0673721999999,-65.47730885199994],[-61.99083411399993,-65.48503997199985],[-61.960845506999874,-65.49358489399988],[-61.950062628999945,-65.50497812299994],[-61.93390865799989,-65.53289153399989],[-61.92210852799994,-65.54119231599995],[-61.88145911399993,-65.54876067499991],[-61.839955206999946,-65.54794687299989],[-61.76691646999984,-65.53085702899995],[-61.72996985599991,-65.52947356599988],[-61.70099850199989,-65.54566822699984],[-61.72472083199991,-65.562107029],[-61.75015214799993,-65.57008228999996],[-61.87417558499993,-65.57935963299984],[-61.90550696499989,-65.5764299459999],[-61.93814042899993,-65.56414153399986],[-61.95750891799994,-65.56487395599989],[-62.04637610599988,-65.59050872199985],[-62.065825975999864,-65.59254322699996],[-62.079945441999904,-65.59636809699997],[-62.08690344999991,-65.6062151019999],[-62.08482825399997,-65.62672291499996],[-62.0777888659999,-65.63591887799993],[-62.06700598899991,-65.64080169099991],[-62.05772864499994,-65.64853281],[-62.05492102799991,-65.6662736959999],[-62.066070115999906,-65.69198984199987],[-62.08971106699994,-65.71160247199984],[-62.1192927729999,-65.72576262799986],[-62.148264126999884,-65.73503997199998],[-62.191029425999886,-65.74146900799991],[-62.20628821499986,-65.74667734199991],[-62.21812903599994,-65.7544898419999],[-62.24461829299988,-65.77629973799986],[-62.25352942599995,-65.78118254999991],[-62.313710089999915,-65.78630950299993],[-62.34166419199994,-65.7950985659999],[-62.361887173999946,-65.81422291499996],[-62.36245683499993,-65.82740650799981],[-62.35301673099991,-65.83855559699985],[-62.341297980999904,-65.84872812299997],[-62.33527584499993,-65.85914478999987],[-62.33995520699991,-65.87118905999998],[-62.37242591099991,-65.91570403399999],[-62.2825821609999,-65.92213307099982],[-62.26431230399993,-65.92864348799998],[-62.262359178999894,-65.93889739399982],[-62.266428188999946,-65.971774998],[-62.26618404899991,-65.98414478999986],[-62.25877844999991,-65.99928150799992],[-62.24840247299991,-66.00953541499995],[-62.02277584499984,-66.11150481599998],[-61.914865688999896,-66.133396092],[-61.86119544199994,-66.133396092],[-61.809315558999934,-66.12029387799984],[-61.77594967399994,-66.10654062299993],[-61.75291907499987,-66.10222747199992],[-61.73387610599988,-66.11174895599993],[-61.71214758999991,-66.13958098799998],[-61.694243943999965,-66.14617278399996],[-61.59601803299989,-66.16562265399995],[-61.600453253999966,-66.13860442499991],[-61.61266028599994,-66.11305103999983],[-61.643910285999915,-66.06568775799995],[-61.647124803999866,-66.03362395599999],[-61.61799068899992,-66.02190520599991],[-61.57762610599986,-66.02271900799983],[-61.339344855999904,-66.0876604149999],[-61.30907141799991,-66.08660247199985],[-61.315988735999895,-66.06308359199996],[-61.32013912699995,-66.03980885199996],[-61.316477016999976,-66.01816171699997],[-61.300160285999965,-65.99911874799997],[-61.32188880099994,-65.98113372199985],[-61.346099412999926,-65.95582447699982],[-61.355376756999895,-65.93230559699985],[-61.332753058999906,-65.91969166499996],[-61.27550208199997,-65.91253020599993],[-61.24461829299992,-65.91285572699994],[-61.2239884109999,-65.92213307099982],[-61.20030676999997,-65.94231536299992],[-61.11607825399997,-65.98447030999988],[-61.10684160099989,-65.99537525799994],[-61.09015865799995,-66.02337004999987],[-61.08018958199997,-66.03036874799994],[-61.06334387899998,-66.03362395599999],[-61.031239386999914,-66.03590260199996],[-61.01406816299988,-66.03435637799993],[-61.01683508999994,-66.01392994599986],[-61.01838131399998,-65.92441171699988],[-61.00670325399997,-65.91277434699995],[-60.985666469999835,-65.91171640399992],[-60.932769334999904,-65.91659921699997],[-60.869862433999856,-65.91122812299992],[-60.57750403599991,-65.94011809699983],[-60.54710852799994,-65.95826588299985],[-60.56338456899988,-65.99675872199992],[-60.60187740799995,-66.03573984199998],[-60.63776607999994,-66.05510833099993],[-60.65733801999994,-66.05022551899995],[-60.68130449099988,-66.04127369599993],[-60.6998591789999,-66.04192473799998],[-60.70287024599989,-66.06560637799998],[-60.69823157499987,-66.09140390399993],[-60.69790605399993,-66.11630624799987],[-60.7083634109999,-66.13079192500001],[-60.73595130099994,-66.12493254999997],[-60.79458574099996,-66.09856536299988],[-60.815012173999946,-66.08473072699996],[-60.82066809799994,-66.07659270599996],[-60.82648678299997,-66.05510833099993],[-60.83177649599986,-66.04753997199998],[-60.840199347999906,-66.04534270599999],[-60.90046139199995,-66.03948333099986],[-60.910308397999906,-66.04021575299988],[-60.916411912999884,-66.04664478999999],[-60.92153886599988,-66.059991144],[-60.926991339999915,-66.06609465899999],[-60.93565833199992,-66.06845468500003],[-61.00454667899987,-66.07350025799997],[-61.02407792899996,-66.08277760199984],[-61.038970506999895,-66.10662200299991],[-61.022206183999884,-66.13258228999989],[-60.97061113199994,-66.15618254999993],[-60.875884568999936,-66.18759530999988],[-60.88353430899989,-66.19841887799996],[-60.90615800699993,-66.22112395599991],[-60.90990149599988,-66.227634373],[-60.90387936099997,-66.24529387800001],[-60.90465247299988,-66.25823333099993],[-60.91197669199991,-66.26962655999998],[-60.97077389199989,-66.32586028399996],[-60.99474036399994,-66.34148528399996],[-61.0286352199999,-66.34954192499998],[-61.090240037999926,-66.35222747199997],[-61.11969967399991,-66.34661223799988],[-61.146311001999976,-66.33245208099986],[-61.16763261599993,-66.30478280999995],[-61.163889126999884,-66.28053150799987],[-61.15086829299992,-66.25481536299992],[-61.14395097599993,-66.22283294099991],[-61.157378709999904,-66.20037200299991],[-61.18740800699996,-66.1814104149999],[-61.248768683999856,-66.15878671699994],[-61.284779425999915,-66.15447356599994],[-61.3557022779999,-66.15943775799998],[-61.39150956899993,-66.15545012799991],[-61.41795813699991,-66.14137135199995],[-61.44383704299992,-66.12314218499998],[-61.46865800699987,-66.11435312299999],[-61.49242102799988,-66.12859465899993],[-61.50047766799992,-66.15374114399991],[-61.50365149599989,-66.19255950299991],[-61.50137285099991,-66.23211028399996],[-61.49351966099991,-66.25986093499995],[-61.52196204299994,-66.25107187299997],[-61.57310950399988,-66.22600676899998],[-61.601185675999915,-66.21843840899993],[-61.73127193899989,-66.2004533829999],[-61.76439368399994,-66.20289478999993],[-61.78038489499993,-66.21298593499998],[-61.77855383999986,-66.2302385399999],[-61.75792395699991,-66.25481536299992],[-61.72883053299995,-66.28004322699996],[-61.69676673099988,-66.30095794099994],[-61.682362433999906,-66.31658294099992],[-61.68903561099995,-66.33131275799991],[-61.702707485999895,-66.34417083099993],[-61.70909583199991,-66.35426197699991],[-61.70132402299992,-66.3667945289999],[-61.66930091099994,-66.39234791499989],[-61.68529212099994,-66.44394296699994],[-61.69408118399992,-66.45810312299987],[-61.717884894999884,-66.47234465899996],[-61.75088456899997,-66.47771575299993],[-61.7849014959999,-66.47478606599991],[-61.81163489499991,-66.4644507789999],[-61.83409583199989,-66.44264088299994],[-61.846547003999916,-66.41887786299995],[-61.856312628999945,-66.39251067499985],[-61.892445441999904,-66.32830169099991],[-61.899281378999916,-66.32252369599993],[-61.91738847599992,-66.31894296699997],[-61.92552649599994,-66.31511809699995],[-61.950795050999886,-66.28785572699996],[-61.96418209499989,-66.27654387799998],[-61.98232988199991,-66.26995208099991],[-61.963002081999974,-66.24081796699994],[-61.95498613199993,-66.22283294099991],[-61.955637173999975,-66.20777760199991],[-61.97020423099991,-66.19841887799996],[-61.99266516799991,-66.196872654],[-62.11168372299994,-66.20663827899996],[-62.147084113999966,-66.20387135199991],[-62.18871008999994,-66.18434010199982],[-62.22032630099991,-66.17424895599994],[-62.258046027999875,-66.17538827899999],[-62.33079993399985,-66.18743254999991],[-62.39517167899995,-66.18450286299996],[-62.41612708199992,-66.18629322699996],[-62.47402910099989,-66.20761484199994],[-62.494984503999945,-66.21184661299993],[-62.66828365799994,-66.22747161299984],[-62.70051021999989,-66.23756275799991],[-62.73851477799991,-66.260511977],[-62.76463782499986,-66.28899504999998],[-62.7608943349999,-66.31609465899993],[-62.69408118399988,-66.35523853999996],[-62.61758378799987,-66.37981536299998],[-62.551136847999935,-66.41318124799987],[-62.514475063999946,-66.47820403399992],[-62.63149980399996,-66.49236419099985],[-62.690419074999944,-66.50994231599988],[-62.72199459499993,-66.54290129999985],[-62.703724738999945,-66.58074309699998],[-62.64199785099993,-66.59246184699988],[-62.51968339799993,-66.59392669099994],[-62.547596808999884,-66.62493254999995],[-62.55443274599988,-66.64185963299994],[-62.55549068899995,-66.66472747199995],[-62.505686001999976,-66.66057708099991],[-62.48375403599994,-66.6545549459999],[-62.457915818999936,-66.64332447699991],[-62.46027584499989,-66.67115650799985],[-62.46642005099997,-66.6900367169999],[-62.48058020699988,-66.70273202899995],[-62.506947394999884,-66.71249765399999],[-62.53408769399991,-66.7185197899999],[-62.5890193349999,-66.72454192499991],[-62.6438695949999,-66.72454192499991],[-62.66567949099993,-66.71884531],[-62.788238084999904,-66.66432057099993],[-62.800445115999956,-66.64869557099996],[-62.80101477799993,-66.60898202899995],[-62.80410722599993,-66.59889088299998],[-62.81615149599991,-66.58953215899986],[-62.82868404899991,-66.58652109199994],[-62.83922278599988,-66.58171965899996],[-62.84544837099995,-66.56698984199997],[-62.85147050699996,-66.53720468499995],[-62.86168372299988,-66.5132789039999],[-62.878651495999854,-66.493747654],[-62.905140753999945,-66.47673919099995],[-63.162993943999965,-66.352959894],[-63.17739824099993,-66.33424244599993],[-63.18325761599987,-66.32447682099999],[-63.19766191299993,-66.30575937300001],[-63.20246334499992,-66.29566822699987],[-63.20327714799993,-66.27996184699998],[-63.199574347999885,-66.26962655999998],[-63.199330206999946,-66.260511977],[-63.210845506999895,-66.24871184699992],[-63.23460852799988,-66.23943450299997],[-63.25739498599992,-66.242771092],[-63.302845831999896,-66.26311614399997],[-63.31899980399995,-66.26628997199995],[-63.330433722999906,-66.26311614399997],[-63.34142005099997,-66.25855885199994],[-63.356312628999916,-66.257012628],[-63.40298417899993,-66.25750090899999],[-63.41893469999994,-66.25457122199997],[-63.430572068999936,-66.24993254999985],[-63.4471736319999,-66.23699309699994],[-63.45628821499989,-66.23235442499991],[-63.469471808999934,-66.2302385399999],[-63.49649003799987,-66.23113372199998],[-63.508900519999905,-66.22926197699984],[-63.52183997299991,-66.2224260399999],[-63.546864386999914,-66.20322030999995],[-63.56012936099995,-66.1978492169999],[-63.57335364499989,-66.19841887799996],[-63.61266028599991,-66.212009373],[-63.663197394999905,-66.21445077899993],[-63.81159420499994,-66.18889739399997],[-63.784331834999875,-66.20338307099992],[-63.755767381999874,-66.21461353999982],[-63.78648841099996,-66.23186614399992],[-63.76915442599988,-66.24130624799994],[-63.71214758999989,-66.25042083099993],[-63.752023891999954,-66.26181405999998],[-63.83458411399994,-66.26360442499988],[-63.874134894999884,-66.27263762799998],[-63.83678137899991,-66.29078541499999],[-63.79751542899993,-66.29851653399999],[-63.715240037999955,-66.30022551899991],[-63.72105872299991,-66.30445728999993],[-63.731760219999835,-66.31503671699997],[-63.73753821499989,-66.31943124799996],[-63.63809160099989,-66.33375416499995],[-63.586089647999955,-66.35222747199997],[-63.573719855999904,-66.358982029],[-63.56973222599993,-66.37004973799995],[-63.57335364499989,-66.39120859199994],[-63.58324133999991,-66.39430103999993],[-63.9033097,-66.38160572699996],[-63.886382615999935,-66.40943775799984],[-63.84581458199994,-66.42449309699985],[-63.761301235999895,-66.43499114399992],[-63.85090084499987,-66.44215260199987],[-63.876576300999915,-66.44784921699994],[-63.89183508999989,-66.45940520599996],[-63.901966925999936,-66.47763437299993],[-63.91197669199994,-66.50261809699995],[-63.80479895699991,-66.52971770599999],[-63.82335364499993,-66.54387786299992],[-63.82555091099994,-66.55917734199996],[-63.8153376939999,-66.57415129999991],[-63.79702714799992,-66.5884742169999],[-63.87242591099988,-66.59734465899994],[-63.89683997299994,-66.60320403399999],[-63.9264216789999,-66.60711028399989],[-63.950998501999884,-66.59889088299998],[-63.996245897999934,-66.56658294099995],[-64.02122962099993,-66.55754973799995],[-64.04157467399995,-66.56454843499994],[-64.05760657499994,-66.58131275799995],[-64.06993567599997,-66.60198333099994],[-64.07966061099992,-66.62664153399996],[-64.08653723899994,-66.63160572699991],[-64.11286373599995,-66.63290781],[-64.12608801999988,-66.63616301899995],[-64.13491777299993,-66.64316171699994],[-64.13255774599989,-66.65447356599992],[-64.11115475199995,-66.67799244599998],[-64.09080969999985,-66.68840911299988],[-63.98403886599996,-66.6955705709999],[-63.93618730399992,-66.70419687299999],[-63.841379360999944,-66.73894622199988],[-63.75133216099991,-66.7876929669999],[-63.75617428299998,-66.79241301899998],[-63.7643123039999,-66.80388762799986],[-63.76919511599988,-66.80836353999989],[-63.719838019999884,-66.86207447699996],[-63.755523240999935,-66.89763762799986],[-63.83128821499991,-66.91790129999995],[-64.04442298099988,-66.93621184699992],[-64.11339270699992,-66.92815520599999],[-64.19347083199989,-66.88591887799996],[-64.22545325399987,-66.87330494599998],[-64.25536048099988,-66.84823984199997],[-64.27196204299992,-66.84156666499993],[-64.30882727799988,-66.8365210919999],[-64.33389238199989,-66.85149504999993],[-64.34959876199984,-66.88494231599998],[-64.36851966099988,-66.911228123],[-64.43423417899987,-66.89853281000003],[-64.51598059799994,-66.90496184699995],[-64.54076087099992,-66.89462655999995],[-64.55093339799996,-66.87330494599998],[-64.54869544199988,-66.86248137799998],[-64.54076087099992,-66.85198333099991],[-64.53359941299988,-66.83180103999989],[-64.52692623599992,-66.75676848799995],[-64.59911048099991,-66.77410247199994],[-64.60627193899995,-66.77320728999995],[-64.61221269399988,-66.76978932099993],[-64.61790930899986,-66.76783619599989],[-64.62385006399998,-66.77174244599989],[-64.64903723899997,-66.80242278399989],[-64.67829342399989,-66.82105885199996],[-64.77379309799989,-66.84563567499998],[-64.75731360599991,-66.86687590899996],[-64.71654212099995,-66.90496184699995],[-64.70295162699998,-66.92799244599983],[-64.7015681629999,-66.93914153399994],[-64.70392818899995,-66.97926197699987],[-64.71051998599992,-66.98707447699995],[-64.72760982999998,-66.99130624799997],[-64.76203365799992,-66.992933852],[-64.79088294199993,-66.98699309699997],[-64.81037350199992,-66.97234465899996],[-64.82803300699992,-66.95338307099995],[-64.85167395699995,-66.93523528399986],[-64.90489661399994,-66.9099260399999],[-64.93236243399988,-66.90203215899993],[-64.96377519399991,-66.89666106599988],[-64.9154353509999,-66.92489999799994],[-64.89195716099992,-66.94345468499995],[-64.8822322259999,-66.96314869599989],[-64.89289303299992,-66.98414478999993],[-64.91706295499992,-67.00448984200001],[-64.96629798099993,-67.03386809699992],[-64.95230058499986,-67.04265715899999],[-64.92186438699991,-67.057224217],[-64.90884355399993,-67.06609465899996],[-64.89785722599987,-67.08114999799997],[-64.8890274729999,-67.09734465899993],[-64.87621008999989,-67.10947031],[-64.85334225199998,-67.11223723799998],[-64.83804277299993,-67.10808684699985],[-64.80842037699998,-67.09441497199991],[-64.79124915299985,-67.09050872200001],[-64.77497311099992,-67.09050872200001],[-64.72541256399998,-67.09856536299995],[-64.73131262899992,-67.11695728999989],[-64.72288977799988,-67.12908294099998],[-64.69009355399996,-67.14837004999993],[-64.76512610599987,-67.16253020599986],[-64.85309811099992,-67.169610284],[-64.87336178299995,-67.16594817499995],[-64.89053300699987,-67.19198984199993],[-64.95055091099988,-67.20094166499996],[-65.06590735599988,-67.20208098799996],[-65.00767981699997,-67.23723723799995],[-64.79116777299987,-67.26213958099999],[-64.74913489499988,-67.30730559699984],[-64.83576412699995,-67.32675546699994],[-64.88149980399996,-67.33180103999996],[-64.92145748599992,-67.32463958099993],[-64.95588131399995,-67.30657317499991],[-64.97362219999992,-67.29957447699994],[-64.99323482999989,-67.29745859200001],[-65.01113847599996,-67.30266692500001],[-65.03722083199992,-67.32219817499998],[-65.05565344999985,-67.32691822699991],[-65.02448482999998,-67.34042734199997],[-65.05504309799991,-67.36060963299991],[-65.08893795499995,-67.36402760199991],[-65.12083899599988,-67.35222747199985],[-65.14541581899988,-67.32732512799991],[-65.15851803299995,-67.32317473799988],[-65.17780514199998,-67.33098723799995],[-65.21715247299989,-67.35995859199996],[-65.22288977799985,-67.36337655999996],[-65.22923743399988,-67.36500416499999],[-65.23843339799996,-67.36638762799996],[-65.24425208199992,-67.37102629999998],[-65.24107825399994,-67.38884856599988],[-65.24608313699987,-67.39462655999994],[-65.28506425699996,-67.40105559699985],[-65.32689368399988,-67.39910247199998],[-65.36388098899994,-67.38396575299998],[-65.3884985019999,-67.35076262799998],[-65.38829505099997,-67.33668385199994],[-65.38410396999984,-67.32008228999989],[-65.38341223899991,-67.30429452900003],[-65.39362545499995,-67.2919247379999],[-65.47687740799998,-67.26360442499995],[-65.47012285099993,-67.27703215899984],[-65.44688880099991,-67.29859791499996],[-65.44127356699991,-67.30624765399998],[-65.44322669199997,-67.32187265399988],[-65.45140540299988,-67.335544529],[-65.46361243399993,-67.34587981599992],[-65.4776505199999,-67.35222747199985],[-65.50544186099995,-67.3527971329999],[-65.53526770699995,-67.34303150799997],[-65.56297766799995,-67.32781340899997],[-65.58429928299992,-67.31129322699992],[-65.61595618399988,-67.36891041499989],[-65.57689368399994,-67.38486093499998],[-65.5364477199999,-67.39641692499993],[-65.51846269399994,-67.40748463299985],[-65.51451575399997,-67.44524504999993],[-65.50145423099988,-67.46233489399994],[-65.52538001199986,-67.46941497199992],[-65.57408606699988,-67.47730885199991],[-65.59666907499985,-67.48398202899995],[-65.61497962099992,-67.49504973799998],[-65.62108313699991,-67.50725676899997],[-65.61266028599994,-67.51775481599985],[-65.58763587099995,-67.52361419099998],[-65.58873450399989,-67.55437590899996],[-65.55272376199991,-67.57439544099991],[-65.45376542899993,-67.59978606599995],[-65.43846594999988,-67.602146092],[-65.43053137899992,-67.60711028399996],[-65.42739824099993,-67.6172828099999],[-65.42528235599991,-67.628513279],[-65.42027747299997,-67.63713958099991],[-65.40269934799994,-67.64568450299993],[-65.33747311099992,-67.65797291499997],[-65.34878495999993,-67.6692033829999],[-65.3596899079999,-67.69695403399996],[-65.36587480399996,-67.703301691],[-65.55016028599991,-67.72031015399996],[-65.57673092399997,-67.7287736959999],[-65.59215247299991,-67.75448984199994],[-65.56224524599992,-67.81218840899999],[-65.57607988199993,-67.84441497199985],[-65.60374915299991,-67.85711028399999],[-65.6392716139999,-67.86101653399999],[-65.7066951159999,-67.85947030999995],[-65.67284094999994,-67.88836028399996],[-65.56932532499988,-67.91423919099998],[-65.50177975199992,-67.94817473799992],[-65.47883053299992,-67.95175546699998],[-65.42955481699994,-67.95224374799997],[-65.40404212099992,-67.95769622199992],[-65.32917232999995,-67.98381926899998],[-65.38036048099991,-68.0116513],[-65.52171790299991,-68.0446916649999],[-65.58332271999984,-68.04412200299993],[-65.61644446499989,-68.048435154],[-65.63145911399991,-68.05478280999994],[-65.6500544909999,-68.07642994599995],[-65.66364498599995,-68.08660247199998],[-65.69334876199989,-68.0935197899999],[-65.75108801999991,-68.08709075299988],[-65.7809138659999,-68.09482187299999],[-65.76402747299991,-68.12851327899999],[-65.7601619129999,-68.14560312299993],[-65.76073157499988,-68.16570403399997],[-65.51537024599986,-68.14275481599998],[-65.50670325399997,-68.14690520599993],[-65.49876868399991,-68.15300872199992],[-65.48493404899992,-68.15813567499993],[-65.47130286399997,-68.15878671699998],[-65.37926184799997,-68.13933684699998],[-65.35163326699995,-68.14006926899991],[-65.27513587099986,-68.17107512799986],[-65.22642981699994,-68.163018488],[-65.12926184799991,-68.11337656],[-65.02562415299991,-68.0739885399999],[-65.01561438699991,-68.065362238],[-64.99901282499988,-68.04371510199992],[-64.98863684799997,-68.03671640400003],[-64.93740800699993,-68.0221493469999],[-64.94591223899994,-68.04216887799988],[-64.98908443899995,-68.08912525799991],[-64.95246334499984,-68.10051848799988],[-64.82921301999997,-68.10068124800003],[-64.83088131399998,-68.09343840899992],[-64.83169511599988,-68.07781340899993],[-64.83356686099994,-68.07048919099991],[-64.81118730399993,-68.07683684699995],[-64.79259192599994,-68.08464934699985],[-64.75584876199994,-68.10808684699992],[-64.76642818899998,-68.115980727],[-64.77139238199993,-68.12517669099996],[-64.77017167899993,-68.134860935],[-64.7621150379999,-68.14470794099995],[-64.80077063699994,-68.16375090899993],[-65.00519771999984,-68.22421640399993],[-65.0489802729999,-68.23064544099995],[-65.08926347599987,-68.22551848799995],[-65.12873287699995,-68.21005624800001],[-65.14745032499991,-68.20794036299992],[-65.16661536399988,-68.21502044099988],[-65.20661373599992,-68.23919036299998],[-65.24986731699991,-68.25660572699995],[-65.27049719999994,-68.257256769],[-65.28856360599985,-68.25286223799992],[-65.30394446499989,-68.25310637799996],[-65.31631425699993,-68.26799895599991],[-65.32872473899997,-68.27890390399998],[-65.35106360599988,-68.28826262799991],[-65.3941951159999,-68.29892343499995],[-65.48106848899991,-68.30836353999996],[-65.49388587099995,-68.31707122199995],[-65.4928279289999,-68.33473072699996],[-65.48412024599989,-68.35369231599998],[-65.47394771999987,-68.36589934699995],[-65.43639075399994,-68.38144296699987],[-65.39159094999991,-68.38616301899997],[-65.18163001199991,-68.36296965899993],[-65.1202693349999,-68.36695728999992],[-65.08112545499995,-68.36451588299997],[-65.06114661399988,-68.36785247199991],[-64.97569739499997,-68.40781015399995],[-64.99771074099996,-68.42351653399993],[-65.07713782499988,-68.46184661299995],[-65.17772376199991,-68.48593515399998],[-65.20457923099988,-68.50367603999996],[-65.22996985599991,-68.51653411299999],[-65.33926347599991,-68.525974217],[-65.34740149599993,-68.53378671699998],[-65.34605872299994,-68.54827239399994],[-65.3385310539999,-68.56340911299995],[-65.32799231699994,-68.57252369599993],[-65.31102454299986,-68.57740650799991],[-65.25698808499996,-68.58440520599997],[-65.26260331899996,-68.61834075299993],[-65.2438044909999,-68.62948984199996],[-65.18565833199997,-68.62590911299998],[-65.16649329299992,-68.62859465899996],[-65.15485592399989,-68.63502369599996],[-65.14411373599998,-68.64332447699987],[-65.1275935539999,-68.65203215899993],[-65.11241614499991,-68.65439218499998],[-65.06090247299994,-68.65032317499993],[-64.81615149599989,-68.68962981599985],[-64.78351803299991,-68.68873463299994],[-64.72520911399994,-68.67620208099986],[-64.67422441299993,-68.67107512799993],[-64.66148841099988,-68.67262135199995],[-64.65257727799994,-68.68059661299992],[-64.64338131399995,-68.698825779],[-64.63508053299998,-68.71070728999996],[-64.58726966099994,-68.75172291499996],[-64.57494055899991,-68.7580705709999],[-64.52798417899987,-68.77353281],[-64.51500403599988,-68.77239348799998],[-64.50186113199993,-68.76832447699984],[-64.4824112619999,-68.76474374799994],[-64.45238196499989,-68.76588307099999],[-64.35944576699998,-68.784437758],[-64.36864173099985,-68.76775481599995],[-64.38166256399992,-68.75579192499993],[-64.41388912699998,-68.73756275799994],[-64.37315833199992,-68.73837655999995],[-64.2747289699999,-68.77874114399992],[-64.08486894399991,-68.82952239399995],[-64.03302975199992,-68.83131275799994],[-64.0407608709999,-68.81031666499989],[-64.05288652299993,-68.79900481599992],[-64.13654537699995,-68.770114842],[-64.18016516799986,-68.747653904],[-64.13438880099994,-68.74749114399995],[-64.04670162699995,-68.75872161299995],[-64.00059973899991,-68.75432708099996],[-64.07738196499984,-68.71493905999998],[-64.24547278599994,-68.67229583099986],[-64.32583574099996,-68.642185154],[-64.28160559799989,-68.63290780999996],[-64.18106035099996,-68.64910247199992],[-64.14561926999997,-68.63176848799992],[-64.17495683499988,-68.61874765399995],[-64.20669511599993,-68.608493748],[-64.2357478509999,-68.59539153399986],[-64.25731360599991,-68.57382577900003],[-64.2283829419999,-68.57122161299984],[-64.13963782499985,-68.58538176899995],[-64.14476477799985,-68.55999114399985],[-64.12783769399988,-68.5450171849999],[-64.07640540299988,-68.52996184699997],[-63.98916581899996,-68.49138762800001],[-63.96239173099988,-68.48772551899995],[-63.90591386599993,-68.48894622199998],[-63.61719723199993,-68.45204029749996],[-63.32848059799998,-68.41513437299987],[-62.871734178999866,-68.42066822699998],[-62.85757402299992,-68.43328215899994],[-62.87319902299992,-68.45973072699994],[-62.9056697259999,-68.49586353999989],[-62.92446855399995,-68.50579192499997],[-62.954172329999885,-68.50750090899999],[-62.98216712099992,-68.5022111959999],[-63.119862433999934,-68.45720794099992],[-63.17861894399993,-68.44793059699988],[-63.23790442599991,-68.44646575299991],[-63.29238847599992,-68.45525481599998],[-63.328928188999946,-68.47144947699994],[-63.43146725199992,-68.53866952899996],[-63.465443488999966,-68.54753997199992],[-63.66340084499987,-68.54859791499996],[-63.70152747299994,-68.55738697699994],[-63.74181067599991,-68.57170989399992],[-63.760609503999945,-68.58098723799998],[-63.777577277999946,-68.59246184699992],[-63.80894934799997,-68.619724217],[-63.824045376999976,-68.63982512799996],[-63.820301886999935,-68.6526018209999],[-63.80361894399991,-68.6617164039999],[-63.7798966139999,-68.67009856599995],[-63.79649817599994,-68.67766692499991],[-63.813221808999884,-68.67994557099998],[-63.848500128999916,-68.67742278399996],[-63.81289628799996,-68.71795012799998],[-63.37075761599987,-68.77410247199998],[-63.28579667899992,-68.79973723799995],[-63.21231035099996,-68.83863697699987],[-63.27635657499994,-68.85833098799999],[-63.4380997389999,-68.81715260199984],[-63.51268469999994,-68.81324635199994],[-63.488392706999946,-68.83709075299991],[-63.38857988199995,-68.88046640399996],[-63.40925045499997,-68.89820728999996],[-63.46361243399988,-68.90292734199996],[-63.47712154899994,-68.923923435],[-63.40510006399992,-68.93580494599996],[-63.44652258999994,-68.94654713299997],[-63.65005449099993,-68.96013762799993],[-63.80988521999987,-68.94158294099992],[-63.82921301999988,-68.942559503],[-63.88829505099991,-68.95720794099992],[-63.90249589799993,-68.96697356599994],[-63.89708411399988,-68.98259856599984],[-63.88215084499984,-68.99781666499983],[-63.86754309799991,-69.00701262799998],[-63.8490291009999,-69.01043059699998],[-63.807036912999905,-69.01018645599996],[-63.624623175999915,-69.04387786299995],[-63.320790167999945,-69.05006275799984],[-63.30353756399992,-69.05559661299995],[-63.30508378799988,-69.07154713299995],[-63.329416469999835,-69.09685637799997],[-63.36432857999995,-69.1218401019999],[-63.435536261999886,-69.15797291499986],[-63.39635169199993,-69.18629322699991],[-63.34312903599988,-69.19638437299987],[-63.238677537999926,-69.18865325299996],[-63.213531053999866,-69.17945728999987],[-63.19391842399992,-69.16765715899992],[-63.172678188999924,-69.16253020599999],[-63.14289303299992,-69.17408619599983],[-63.12132727799991,-69.19133879999993],[-63.06037350199991,-69.25351327899995],[-63.059641079999984,-69.26555754999995],[-63.06725012899991,-69.28443775799998],[-63.070546027999846,-69.30641041499989],[-63.056996222999885,-69.32822030999995],[-63.01231848899994,-69.36012135199996],[-62.98631751199986,-69.37363046699994],[-62.962513800999936,-69.3790015599999],[-62.79893958199992,-69.34840260199998],[-62.74522864499993,-69.35222747199998],[-62.69371497299996,-69.36793385199996],[-62.653431769999884,-69.3889299459999],[-62.62157141799985,-69.4205054669999],[-62.59581458199992,-69.46795012800001],[-62.55858313699994,-69.49277109199997],[-62.43960527299987,-69.48723723799995],[-62.39728756399996,-69.51523202899998],[-62.39338131399995,-69.53655364399985],[-62.40221106699991,-69.57935963299994],[-62.39549719999988,-69.60507577899998],[-62.38560950399997,-69.62957122200001],[-62.38182532499985,-69.65504322699992],[-62.3841853509999,-69.68108489399998],[-62.39289303299997,-69.70680103999992],[-62.40094967399991,-69.7199846329999],[-62.41950436099992,-69.740655206],[-62.42804928299994,-69.75237395599999],[-62.43276933499996,-69.76409270599989],[-62.434234178999894,-69.77337004999993],[-62.43761145699992,-69.78297291499992],[-62.456939256999966,-69.807224217],[-62.46125240799994,-69.81552499799997],[-62.46788489499992,-69.82268645599993],[-62.51024329299992,-69.84303150799991],[-62.52086341099997,-69.85165781],[-62.52965247299994,-69.86394622199988],[-62.32725989499997,-69.91155364399995],[-62.31330318899989,-69.91920338299998],[-62.29548092399992,-69.94150156],[-62.28237870999996,-69.95183684699992],[-62.29621334499987,-69.95501067499998],[-62.30817623599997,-69.96168385199987],[-62.31859290299989,-69.97128671700003],[-62.32725989499997,-69.98259856599992],[-62.29548092399992,-69.99480559699998],[-62.26414954299989,-70.00058359199994],[-62.19798743399988,-70.00042083099999],[-62.1703181629999,-70.00676848799992],[-62.07396399599988,-70.05478281],[-62.009266730999855,-70.07586028399993],[-61.985991990999935,-70.09400807099993],[-61.96788489499993,-70.12542083099996],[-61.94835364499994,-70.14478932099998],[-61.88267981699993,-70.18865325299993],[-61.86872311099998,-70.2082658829999],[-61.88361568899992,-70.23170338299995],[-61.917307094999835,-70.25123463299994],[-62.01455644399993,-70.29257577899996],[-62.028309699999845,-70.29176197699996],[-62.052316860999895,-70.26458098799995],[-62.07103430899988,-70.2570940079999],[-62.11416581899987,-70.25042083099993],[-62.183176235999916,-70.24724700299996],[-62.19688880099994,-70.24309661299992],[-62.22508704299991,-70.22527434699995],[-62.23985755099988,-70.21933359199993],[-62.25942949099996,-70.21835702899995],[-62.31932532499991,-70.22454192499993],[-62.37437903599996,-70.21550872200001],[-62.39346269399993,-70.21884531000003],[-62.37889563699991,-70.24032968499988],[-62.361887173999946,-70.25318775799988],[-62.32217363199994,-70.27695077899999],[-62.346913214999915,-70.291599217],[-62.40733801999994,-70.29802825300001],[-62.43639075399992,-70.30478280999994],[-62.43016516799986,-70.31902434699995],[-62.41991126199991,-70.32675546699997],[-62.40957597599993,-70.33171965900002],[-62.40343176999993,-70.33782317499991],[-62.40416419199997,-70.35295989399991],[-62.4127498039999,-70.39088307099993],[-62.40721594999988,-70.40545012799996],[-62.380482550999936,-70.41399504999988],[-62.20278886599988,-70.41594817499993],[-62.17027747299991,-70.42156340899993],[-62.147938605999876,-70.43759531],[-62.13438880099991,-70.46868254999991],[-62.13646399599992,-70.49537525799994],[-62.153797980999904,-70.51816171699997],[-62.185454881999895,-70.53720468499996],[-62.14488684799996,-70.55250416499993],[-62.089833136999914,-70.54762135199987],[-61.935170050999915,-70.49944426899991],[-61.53233801999993,-70.50107187299993],[-61.47411048099991,-70.49309661299988],[-61.445423956999946,-70.49358489399995],[-61.41637122299997,-70.50221119599996],[-61.393381313999896,-70.51799895599991],[-61.35423743399985,-70.56113046699993],[-61.42943274599994,-70.59050872199992],[-61.68114173099991,-70.61882903399997],[-61.64997311099992,-70.633396092],[-61.62755286399992,-70.65007903399993],[-61.625396287999905,-70.670098566],[-61.655018683999934,-70.69475676899991],[-61.687896287999926,-70.70712656000003],[-61.83999589799992,-70.73691171699994],[-61.882232225999964,-70.73805103999989],[-62.00963294199988,-70.71998463299997],[-62.129261847999885,-70.72340260199996],[-62.1175837879999,-70.73691171699994],[-62.1162003249999,-70.74944426899995],[-62.12352454299991,-70.760837498],[-62.13809160099995,-70.77060312299994],[-62.03774980399987,-70.78476327899998],[-62.005767381999874,-70.79314544099994],[-62.01520748599997,-70.80681731599988],[-62.01829993399988,-70.83603281],[-62.0255427729999,-70.84677499800001],[-62.04035396999987,-70.85930754999993],[-62.046538865999935,-70.87224700299993],[-62.04401607999991,-70.88648853999992],[-62.03258216099996,-70.90300872199991],[-62.00377356699994,-70.92131926899988],[-61.97020423099991,-70.92498137799993],[-61.90208899599986,-70.91790129999995],[-61.79303951699989,-70.91961028399996],[-61.758452928999894,-70.90976327899993],[-61.745594855999876,-70.90032317499993],[-61.720529751999976,-70.873142185],[-61.70421301999993,-70.86207447699996],[-61.685170050999965,-70.854587498],[-61.666818813999924,-70.84970468499995],[-61.55443274599992,-70.84124114399991],[-61.30500240799995,-70.85605234199997],[-61.276519334999925,-70.86988697699996],[-61.26170813699985,-70.89421965899994],[-61.26695716099994,-70.93092213299994],[-61.28327389199995,-70.96103280999996],[-61.30728105399993,-70.98845794099994],[-61.337147589999915,-71.00839609200001],[-61.37120520699992,-71.01572031],[-61.35000566299993,-71.03378671699994],[-61.333851691999975,-71.03997161299992],[-61.26105709499992,-71.02800872199997],[-61.23257402299989,-71.02743906],[-61.17658443899995,-71.03337981599985],[-61.1845596999999,-71.0564104149999],[-61.21678626199985,-71.08294036299988],[-61.208607550999936,-71.1005184879999],[-61.18968665299994,-71.10906340899993],[-61.11579342399992,-71.11337656],[-61.02009029899997,-71.13518645599989],[-60.97085527299986,-71.15504322699998],[-60.93455969999988,-71.1822242169999],[-60.925363735999895,-71.22014739399992],[-60.9668676419999,-71.2343075499999],[-61.22533118399988,-71.21795012799993],[-61.27741451699992,-71.22437916499993],[-61.24364173099986,-71.25025807099995],[-61.20091712099991,-71.26148853999986],[-61.112049933999906,-71.26751067499995],[-61.01121985599994,-71.28606536299995],[-60.965402798999946,-71.30608489399992],[-60.92418372299996,-71.338636977],[-60.98375403599988,-71.36679452899998],[-61.038970506999895,-71.36687590899994],[-61.29190019399987,-71.31438567499991],[-61.36188717399997,-71.309177342],[-61.41738847599993,-71.32252369599983],[-61.38267981699996,-71.33277760199995],[-61.36538652299986,-71.34042734199997],[-61.337066209999925,-71.36467864399997],[-61.32005774599986,-71.36980559699997],[-61.279042120999854,-71.3736304669999],[-61.129302537999905,-71.41480885199996],[-61.15538489499997,-71.41806406],[-61.22378495999993,-71.4410132789999],[-61.335804816999904,-71.46591562299994],[-61.39000403599988,-71.46607838299991],[-61.554025844999934,-71.44736093499994],[-61.542225714999944,-71.50554778399996],[-61.593129035999965,-71.52988046699994],[-61.72581946499986,-71.53281015399995],[-61.70689856699994,-71.5861955709999],[-61.710113084999904,-71.59685637799993],[-61.724598761999935,-71.60466887799993],[-61.81362870999993,-71.62704843499995],[-61.87242591099993,-71.63152434700001],[-62.05492102799991,-71.62232838299994],[-62.07030188699994,-71.62517669099996],[-62.0946345689999,-71.63909270599996],[-62.11221269399994,-71.63982512799998],[-62.096831834999904,-71.65960051899992],[-62.08409583199995,-71.66985442499985],[-62.06822669199991,-71.67359791499997],[-61.67349199099996,-71.68108489399985],[-61.59532630099995,-71.69443124799994],[-61.557240363999966,-71.69060637799994],[-61.283802863999945,-71.59335702899995],[-61.27009029899992,-71.58196379999998],[-61.26821855399996,-71.57594166499997],[-61.27009029899992,-71.56926848799992],[-61.2706599599999,-71.56316497199992],[-61.265126105999876,-71.55852629999991],[-61.180531378999945,-71.53329843499995],[-61.16051184799988,-71.53150807099996],[-61.14126542899994,-71.53289153399993],[-61.11904863199987,-71.53932057099986],[-61.111439581999946,-71.54827239399998],[-61.10708574099993,-71.55966562299994],[-61.094838019999884,-71.57366301899991],[-61.062123175999936,-71.58945077899995],[-60.98363196499991,-71.60515715899992],[-60.945790167999895,-71.61907317499997],[-60.95970618399985,-71.62184010199987],[-60.97325598899991,-71.62664153399994],[-60.99852454299989,-71.63982512799998],[-60.98033606699989,-71.66082122199992],[-60.955067511999914,-71.66545989399995],[-60.90038001199988,-71.658786717],[-60.83824622299996,-71.66277434699998],[-60.7779434889999,-71.67701588299998],[-60.78652910099992,-71.69198984200001],[-60.80101477799988,-71.70061614399992],[-60.83527584499987,-71.711521092],[-60.81541907499985,-71.72844817499998],[-60.785878058999884,-71.74358489399998],[-60.7715551419999,-71.76002369599996],[-60.79784094999991,-71.7815080709999],[-60.82799231699993,-71.78899504999997],[-60.86180579299992,-71.7888322899999],[-60.957102016999954,-71.77206796699998],[-61.04865475199998,-71.73984140399993],[-61.061390753999916,-71.73308684699991],[-61.087025519999884,-71.71168385199996],[-61.09703528599987,-71.70810312299999],[-61.16274980399987,-71.71884530999989],[-61.1505427729999,-71.72877369599989],[-61.138335740999906,-71.75351327899998],[-61.129139777999846,-71.76336028399999],[-61.05606035099996,-71.79697031],[-61.103098110999944,-71.80559661299992],[-61.088042772999955,-71.81926848799996],[-61.06871497299991,-71.82610442499998],[-61.02721106699993,-71.83228932099986],[-61.06574459499992,-71.84531015400002],[-61.07331295499995,-71.85149504999991],[-61.08462480399993,-71.86744557099992],[-61.091786261999886,-71.87102629999998],[-61.31965084499987,-71.87509530999995],[-61.49722245999995,-71.85491301899992],[-61.77603105399993,-71.868747654],[-61.8517960279999,-71.891208592],[-61.89045162699995,-71.89763762799991],[-62.1656794914999,-71.90862395599999],[-62.44090735599988,-71.91961028399994],[-62.397368943999936,-71.96062590899986],[-62.297596808999934,-71.98748137799993],[-62.11221269399994,-72.00953541499993],[-62.133127407999886,-72.0282528629999],[-62.16234290299994,-72.03777434699997],[-62.22325598899993,-72.05055103999992],[-62.349110480999904,-72.09758879999995],[-62.312652147999955,-72.13160572699998],[-62.25430253799996,-72.13518645599996],[-62.135406053999866,-72.11126067499998],[-61.908111131999874,-72.09221770599999],[-61.73265540299988,-72.049004816],[-61.67430579299989,-72.04656340899996],[-61.4273982409999,-72.06519947699995],[-61.37621008999986,-72.07805754999988],[-61.28669186099998,-72.13347747199994],[-61.1923721999999,-72.16594817499993],[-61.16698157499988,-72.16985442499993],[-61.14854895699994,-72.15471770599993],[-61.153675910999965,-72.12932708099991],[-61.17662512899995,-72.10751718499995],[-61.191802537999926,-72.08733489399992],[-61.17369544199994,-72.06698984199994],[-61.11701412699994,-72.05006275799995],[-61.05378170499998,-72.04648202899998],[-60.92931067599988,-72.053317967],[-60.87059485599988,-72.04656340899996],[-60.75332597599992,-72.00888437299997],[-60.69383704299989,-71.99781666499993],[-60.668324347999885,-72.01018645599989],[-60.65453040299988,-72.041599217],[-60.65245520699994,-72.07822030999994],[-60.66234290299988,-72.10613372199988],[-60.6886287099999,-72.120212498],[-60.80060787699998,-72.13347747199994],[-60.86864173099993,-72.15016041499999],[-60.93785559799991,-72.15837981599998],[-60.993072068999936,-72.15081145599993],[-61.00938880099994,-72.15357838299998],[-61.071888800999886,-72.19133879999995],[-61.01646887899992,-72.19670989399992],[-60.90046139199995,-72.18645598799998],[-60.84300696499985,-72.1885718729999],[-60.74962317599997,-72.20484791499993],[-60.68724524599991,-72.230889581],[-60.67096920499997,-72.24228280999986],[-60.661773240999906,-72.25579192499985],[-60.66242428299995,-72.2723934879999],[-60.6678767569999,-72.2862281229999],[-60.66844641799986,-72.29892343499995],[-60.65440833199991,-72.31259531],[-60.67438717399988,-72.32537200299994],[-60.6898494129999,-72.33131275799997],[-60.706450975999864,-72.33180103999986],[-60.77163652299987,-72.31796640399995],[-60.814808722999885,-72.313409113],[-60.86139889199989,-72.31698984199997],[-60.998036261999886,-72.35621510199991],[-60.96593176999991,-72.36931731599988],[-60.692209438999946,-72.37468840899993],[-60.65611731699991,-72.38600025799991],[-60.63731848899996,-72.40732187299997],[-60.64256751199986,-72.42994557099993],[-60.6790258449999,-72.44557057099983],[-60.82347571499988,-72.4651018209999],[-61.142079230999855,-72.45419687299993],[-61.464670376999884,-72.40732187299997],[-61.45718339799993,-72.42896900799997],[-61.43285071499985,-72.44231536299998],[-61.37661699099987,-72.45720794099992],[-61.3656306629999,-72.46599700299998],[-61.373036261999914,-72.47421640399999],[-61.388091600999935,-72.48072682099989],[-61.40025794199991,-72.48447031],[-61.471018032999915,-72.49781666499993],[-61.43626868399988,-72.522556248],[-61.40176347599995,-72.53362395599986],[-61.364735480999904,-72.53329843499999],[-61.32168535099991,-72.52402109199997],[-61.27550208199997,-72.52605559699998],[-61.25072180899991,-72.55592213299998],[-61.215443488999966,-72.63811614399995],[-61.25796464799992,-72.65292734199994],[-61.42027747299996,-72.6457658829999],[-61.39289303299989,-72.67001718499998],[-61.25926673099994,-72.69133879999985],[-61.22459876199986,-72.70818450299986],[-61.20848548099988,-72.72063567499995],[-61.20636959499986,-72.73211028399992],[-61.218861456999974,-72.75269947699994],[-61.21532141799989,-72.76392994599995],[-61.20055091099991,-72.769707941],[-61.13658606699991,-72.78329843499996],[-61.11986243399988,-72.78045012799993],[-61.099598761999886,-72.76767343499998],[-61.084095831999974,-72.75212981599998],[-61.05846106699991,-72.71786874799999],[-61.04181881399995,-72.70159270599997],[-61.00438391799992,-72.68661874799994],[-60.863392706999946,-72.68132903399996],[-60.73607337099992,-72.65439218499998],[-60.59679114499994,-72.649997654],[-60.552398240999906,-72.65585702899995],[-60.5204158189999,-72.68271249799994],[-60.50035559799994,-72.72096119599999],[-60.489369269999905,-72.756280206],[-60.49168860599988,-72.79119231599985],[-60.51158606699996,-72.82822030999988],[-60.54320227799985,-72.86199309699995],[-60.57970130099988,-72.89039478999989],[-60.60033118399991,-72.90129973799995],[-60.66441809799988,-72.91562265399995],[-60.65660559799991,-72.92636484199996],[-60.64671790299988,-72.93474700300001],[-60.63512122299997,-72.94019947699987],[-60.622141079999984,-72.94231536299995],[-60.63825436099995,-72.95842864399994],[-60.76992753799987,-73.03541432099983],[-60.7822159499999,-73.04989999799987],[-60.76353919199994,-73.07447682099998],[-60.70750891799992,-73.06438567500001],[-60.604969855999855,-73.02239348799993],[-60.58885657499987,-73.00969817499997],[-60.57144120999991,-72.99244557099996],[-60.552235480999855,-72.98056406],[-60.53038489499991,-72.98357512800001],[-60.50536048099991,-72.99553801899995],[-60.42638098899988,-73.0186499979999],[-60.35676021999989,-73.05201588299997],[-60.333892381999874,-73.05559661299995],[-60.275746222999935,-73.04599374799997],[-60.2469783189999,-73.03394947699985],[-60.22789466099991,-73.01539478999986],[-60.2154434889999,-72.99537525799998],[-60.18374589799993,-72.9572893209999],[-60.107329881999895,-72.8881161439999],[-60.082102016999954,-72.8747697899999],[-60.06045488199995,-72.86939869599993],[-60.03555253799993,-72.86882903399996],[-60.01065019399987,-72.87175872199998],[-59.96580969999989,-72.88323333099993],[-59.954335089999915,-72.88836028399984],[-59.94937089799987,-72.89519622199997],[-59.94855709499986,-72.91090260199994],[-59.94615637899991,-72.92205169099995],[-59.940785285999965,-72.93189869599996],[-59.931141730999876,-72.94443124799997],[-59.90412350199994,-72.99342213299994],[-59.91543535099992,-73.02499765399993],[-59.99718176999991,-73.081638279],[-60.01553300699996,-73.09954192499988],[-60.03010006399998,-73.12127044099995],[-60.03815670499992,-73.14519622200001],[-60.03709876199988,-73.16985442499991],[-60.02798417899987,-73.18767669099998],[-60.01154537699997,-73.20867278399992],[-59.99233964799992,-73.2273088519999],[-59.97520911399988,-73.23821379999998],[-60.02660071499988,-73.27898528399986],[-60.093576626999884,-73.29924895599994],[-60.29076087099986,-73.32219817499995],[-60.378285285999915,-73.32170989399994],[-60.450428839999915,-73.30193450299994],[-60.46934973899993,-73.2273088519999],[-60.49526933499993,-73.21257903400002],[-60.59862219999991,-73.18482838299992],[-60.62466386599991,-73.19548919099988],[-60.63898678299997,-73.22372812299994],[-60.66633053299994,-73.33456796699998],[-60.683664516999926,-73.37127044099998],[-60.70311438699994,-73.39104583100001],[-60.734445766999976,-73.3980445289999],[-60.769520636999886,-73.39934661299999],[-60.804269985999916,-73.39511484199997],[-60.834624803999894,-73.38494231599992],[-60.826893683999884,-73.3629696589999],[-60.819935675999915,-73.34880950299998],[-60.81696529899989,-73.33375416499997],[-60.82066809799994,-73.30917734199987],[-60.87791907499987,-73.24195728999983],[-60.8946833979999,-73.2489559879999],[-60.90367591099991,-73.27019622199998],[-60.90990149599988,-73.295993748],[-60.91832434799995,-73.31633879999991],[-60.93236243399988,-73.33114999799997],[-60.949615037999905,-73.34286874799986],[-60.969064907999886,-73.35035572699994],[-60.98961341099993,-73.35295989399992],[-61.082753058999884,-73.34742603999992],[-61.130686001999884,-73.33766041499996],[-61.16763261599993,-73.31975676899992],[-61.216420050999936,-73.27304452900002],[-61.25544186099992,-73.24439869599986],[-61.262440558999884,-73.22673919099985],[-61.25454667899993,-73.21119557099993],[-61.22964433499987,-73.20183684699991],[-61.28327389199995,-73.19866301899985],[-61.33690344999988,-73.20387135199994],[-61.369984503999916,-73.20370859199997],[-61.39732825399998,-73.194105727],[-61.44709225199995,-73.15813567499993],[-61.45783443899998,-73.16318124799994],[-61.54442298099993,-73.17595794099998],[-62.00169837099992,-73.10418059699991],[-62.01475989499988,-73.10523853999996],[-62.027943488999945,-73.11158619599999],[-62.03799394399991,-73.12053801899992],[-62.04898027299986,-73.12802499799997],[-62.06509355399994,-73.13046640399999],[-61.989084438999924,-73.17351653399996],[-61.961333787999955,-73.18466562299997],[-61.64606686099992,-73.25204843499998],[-61.626535610999916,-73.2850888],[-61.67039954299988,-73.26848723799998],[-61.766102667999945,-73.24618906000003],[-61.95531165299985,-73.22389088299991],[-62.00182044199988,-73.23056405999995],[-61.816314256999895,-73.26018645599999],[-61.711252407999915,-73.30396900799997],[-61.63573157499991,-73.32561614399995],[-61.56847083199997,-73.35312265399998],[-61.53929602799991,-73.39218515399995],[-61.587880011999886,-73.3928361959999],[-61.688099738999874,-73.37509531],[-61.88605709499987,-73.36500416499995],[-61.93480383999988,-73.37216562299997],[-61.92674719999986,-73.39511484199997],[-61.91930091099987,-73.40878671699998],[-61.90689042899995,-73.416192316],[-61.88377844999991,-73.42058684699998],[-61.81444251199986,-73.42457447699987],[-61.72907467399992,-73.450290623],[-61.71288001199985,-73.46013762799993],[-61.71434485599991,-73.47779713299994],[-61.72012285099987,-73.49846770599996],[-61.71760006399995,-73.51718515400002],[-61.68781490799995,-73.535902602],[-61.64268958199988,-73.5437151019999],[-61.59626217399994,-73.54355234199993],[-61.562570766999926,-73.53769296699997],[-61.54938717399988,-73.52874114399995],[-61.52391516799989,-73.49879322699998],[-61.507801886999914,-73.48748137799998],[-61.489328579999885,-73.48105234199998],[-61.470936652999846,-73.47795989399991],[-61.45230058499996,-73.47779713299994],[-61.302113410999915,-73.49529387799998],[-61.2728165359999,-73.51116301899992],[-61.25796464799992,-73.52678801899991],[-61.241810675999965,-73.53582122200001],[-61.222971157999915,-73.53834400799984],[-61.16144771999986,-73.52450937299993],[-61.14427649599995,-73.52304452899988],[-61.12018795499991,-73.52402109199993],[-60.79954993399991,-73.57789478999996],[-60.844960089999915,-73.62135182099983],[-60.90282141799992,-73.64625416499996],[-61.03091386599988,-73.67294687299997],[-61.0243220689999,-73.67937590899999],[-61.012928839999944,-73.694431248],[-61.00649980399993,-73.70110442499995],[-61.14561926999993,-73.73788827899995],[-60.9862361319999,-73.74732838299995],[-60.93333899599986,-73.73544687299999],[-60.8627009759999,-73.70338307099993],[-60.838775193999936,-73.698337498],[-60.78425045499994,-73.69451262799998],[-60.76231848899994,-73.69988372199985],[-60.73473059799991,-73.71575286299988],[-60.775949673999975,-73.74049244599995],[-60.81395423099989,-73.77141692499998],[-60.87995357999991,-73.84286874799993],[-60.886952277999875,-73.85328541499995],[-60.90282141799992,-73.8889299459999],[-60.910796678999866,-73.89983489399987],[-60.96743730399987,-73.94402434699985],[-60.98656165299993,-73.95533619599993],[-61.00772050699993,-73.96200937299997],[-61.031239386999914,-73.96502044099998],[-61.23241126199994,-73.95818450299996],[-61.34829667899993,-73.92644622200001],[-61.359445766999954,-73.92017994599996],[-61.36656653599991,-73.91122812300003],[-61.37083899599991,-73.90081145599986],[-61.37657630099989,-73.89039478999996],[-61.388091600999935,-73.88176848799995],[-61.43773352799994,-73.87322356599992],[-61.540638800999915,-73.892673435],[-61.64464270699994,-73.88250090899989],[-61.69196529899988,-73.88616301899994],[-61.79100501199989,-73.90667083099999],[-61.746978318999965,-73.93084075299998],[-61.58193925699995,-73.96990325299996],[-61.64883378799988,-73.99293385199984],[-61.859283006999874,-74.02988046699997],[-61.77513587099995,-74.04257577900003],[-61.49046790299991,-74.01555754999998],[-61.445912238999945,-74.01995208099997],[-61.40518144399996,-74.03264739399992],[-61.37804114499993,-74.05575937299997],[-61.350453253999916,-74.06617603999996],[-61.08413652299995,-74.06324635199987],[-61.055775519999905,-74.07317473799995],[-61.05540930899991,-74.10312265400002],[-61.08897864499994,-74.13583749799994],[-61.13345292899993,-74.1641578099999],[-61.24156653599994,-74.20973072699987],[-61.404408331999946,-74.24863046699994],[-61.48473059799994,-74.25416432099996],[-61.48062089799989,-74.24374765399996],[-61.47398841099994,-74.23512135199996],[-61.46544348899992,-74.22861093499996],[-61.454986131999924,-74.2242164039999],[-61.47647050699996,-74.22063567499993],[-61.51073157499994,-74.23088958099996],[-61.52977454299992,-74.23211028399996],[-61.55117753799988,-74.22527434699995],[-61.566477016999926,-74.212497654],[-61.56940670499995,-74.19508228999995],[-61.55386308499996,-74.17506275799995],[-61.63829505099991,-74.1818986959999],[-61.66372636599993,-74.1905249979999],[-61.730132615999956,-74.24114348799998],[-61.75694739499994,-74.25123463299994],[-61.813059048999975,-74.25448984199988],[-61.92223059799991,-74.2432593729999],[-61.97809811099998,-74.24423593499986],[-61.950062628999945,-74.25774504999985],[-61.91738847599992,-74.26620859199996],[-61.88801021999993,-74.27760182099995],[-61.86937415299993,-74.29949309699998],[-61.87743079299988,-74.30095794099985],[-61.89342200399998,-74.3067359349999],[-61.90160071499988,-74.30836353999992],[-61.884632941999904,-74.32545338299997],[-61.856597459999904,-74.32870859200001],[-61.644195115999935,-74.29753997199992],[-61.49103756399989,-74.32887135199998],[-61.27871660099993,-74.32984791499996],[-61.06802324099988,-74.30055103999993],[-60.85814368399985,-74.24521249799994],[-60.75133216099988,-74.23552825299998],[-60.69115149599992,-74.23894622199998],[-60.650013800999915,-74.25400156],[-60.64024817599988,-74.29265715899994],[-60.68195553299992,-74.32480234199993],[-60.780140753999916,-74.35914478999997],[-60.88365637899994,-74.37867603999996],[-60.89500891799992,-74.38445403400002],[-60.915842251999926,-74.39820728999993],[-60.92422441299996,-74.40081145599993],[-60.93846594999987,-74.40252044099985],[-60.95213782499991,-74.40764739399994],[-60.97838294199994,-74.42115650799984],[-60.95885169199993,-74.42424895599991],[-60.94001217399991,-74.42978281000002],[-60.92218990799992,-74.43792083099986],[-60.90599524599989,-74.44915129999985],[-60.97789466099994,-74.49716562300003],[-61.067860480999904,-74.51962655999994],[-61.54271399599991,-74.54404062299997],[-61.595611131999895,-74.53728606599995],[-61.642933722999935,-74.4986304669999],[-61.66437740799997,-74.49830494599996],[-61.68732662699995,-74.50351327899988],[-61.707508917999895,-74.50579192499994],[-62.11278235599991,-74.46428801899985],[-62.205148891999926,-74.43141041499986],[-62.36388098899991,-74.40349700299991],[-62.33421790299985,-74.45810312299997],[-62.27745520699989,-74.49212004999998],[-62.21198482999994,-74.51946379999988],[-62.13731848899993,-74.56511809699991],[-62.113840298999946,-74.57000090899989],[-62.06509355399994,-74.57480234199996],[-62.03331458199989,-74.58391692499995],[-62.007883266999976,-74.59612395599993],[-61.95840410099992,-74.63250090899992],[-61.935170050999915,-74.65504322699991],[-61.92320716099988,-74.66041432099986],[-61.89806067599988,-74.66806405999998],[-61.88581295499992,-74.67327239399998],[-61.876942511999886,-74.68092213299991],[-61.86668860599985,-74.69508228999993],[-61.85838782499988,-74.70208098799992],[-61.84772701699995,-74.704278253],[-61.81704667899994,-74.704278253],[-61.80142167899996,-74.70671965899993],[-61.78815670499991,-74.71209075299998],[-61.782134568999936,-74.72177499799994],[-61.792225714999894,-74.77898528399992],[-61.825103318999886,-74.82105885199996],[-61.8729548819999,-74.85149504999993],[-62.13190670499998,-74.95159270599996],[-62.46727454299985,-74.99773528399999],[-62.525990363999874,-74.99724700299998],[-62.57526607999998,-74.97673919099995],[-62.59105383999991,-74.95110442499998],[-62.587147589999915,-74.92498137799993],[-62.57957923099988,-74.89885833099997],[-62.58446204299995,-74.8728166649999],[-62.59874426999994,-74.84832122199997],[-62.60895748599998,-74.82097747199998],[-62.60773678299994,-74.79469166499989],[-62.587757941999875,-74.77385833099999],[-62.61046301999993,-74.76336028399993],[-62.62604732999991,-74.76116301899985],[-62.664865688999924,-74.76181405999998],[-62.689076300999936,-74.753106378],[-62.69908606699991,-74.73658619599993],[-62.6939998039999,-74.71819426899998],[-62.6731664699999,-74.70330169099992],[-62.70128333199991,-74.67799244599989],[-62.73546301999991,-74.67799244599989],[-62.807240363999874,-74.70378997199992],[-62.844390428999894,-74.70842864399985],[-62.881988084999904,-74.70484791499996],[-63.11900794199994,-74.6522763],[-63.13849850199991,-74.6516252579999],[-63.15111243399991,-74.65504322699991],[-63.17454993399988,-74.66562265399993],[-63.18761145699995,-74.66863372199995],[-63.24693762899995,-74.66513437299987],[-63.265695766999904,-74.66814544099996],[-63.263539191999875,-74.67408619599998],[-63.292958136999886,-74.72014739399992],[-63.14842688699994,-74.788506769],[-63.10692298099994,-74.82203541499986],[-63.07017981699993,-74.86809661299998],[-63.06224524599989,-74.89251067499985],[-63.076893683999884,-74.90846119599986],[-63.1023656889999,-74.91448333099996],[-63.181223110999944,-74.91936614399992],[-63.40493730399987,-74.8986955709999],[-63.52009029899992,-74.86777109199997],[-63.573109503999945,-74.87135182099993],[-63.60631262899997,-74.91627369599993],[-63.586496548999946,-74.92229583099986],[-63.60973059799996,-74.936781508],[-63.642567511999886,-74.94378020599989],[-64.0213923819999,-74.97942473799992],[-64.08560136599993,-74.99863046699997],[-64.05479895699997,-75.00725676899998],[-63.99461829299991,-75.00896575299998],[-63.96450761599988,-75.01311614399992],[-63.92003333199997,-75.031833592],[-63.90038001199991,-75.03525156],[-63.62218176999988,-75.02133554449998],[-63.343983527999875,-75.00741952899993],[-63.27790279899997,-75.0153947899999],[-63.243804490999956,-75.02532317499991],[-63.06818600199989,-75.12078215899992],[-63.040923631999895,-75.147230727],[-63.30361894399991,-75.177422784],[-63.39000403599994,-75.17522551899992],[-63.47081458199991,-75.16155364399998],[-63.50963294199994,-75.15935637799998],[-63.834238247999906,-75.19182708099997],[-64.1588435539999,-75.22429778399996],[-64.20506751199991,-75.23626067499998],[-64.24982662699995,-75.23707447699991],[-64.27232825399993,-75.24114348799995],[-64.3571671209999,-75.2798804669999],[-64.40062415299985,-75.29127369599995],[-64.42007402299996,-75.30095794099992],[-64.43443762899992,-75.31755950299988],[-64.4120173819999,-75.32740650799998],[-64.3900447259999,-75.32984791499993],[-64.37169348899994,-75.33489348799996],[-64.36009680899991,-75.35198333099991],[-64.34898841099991,-75.36451588299991],[-64.32994544199991,-75.36638762799988],[-64.22020423099991,-75.33782317499998],[-64.19676673099991,-75.33570728999997],[-64.11143958199997,-75.3498674459999],[-63.7621150379999,-75.32463958099993],[-63.42332923099991,-75.33814869549987],[-63.08454342399991,-75.35165780999998],[-63.10667883999988,-75.38551197699995],[-63.16161048099988,-75.40943775799991],[-63.62392127199985,-75.50389983499994],[-64.0862320629999,-75.59836191199999],[-64.54854285399995,-75.69282398899993],[-65.01085364499991,-75.78728606599988],[-65.26475989499997,-75.7914364559999],[-65.28978430899988,-75.79697031000002],[-65.35562089799991,-75.83367278399993],[-65.37710527299986,-75.842868748],[-65.75959225199995,-75.91423919049994],[-66.14207923099994,-75.98560963299997],[-66.21861731699991,-76.01083749800003],[-66.69004269124989,-76.04509856574998],[-67.16146806549997,-76.07935963349993],[-67.63289343974994,-76.11362070124997],[-68.10431881399992,-76.14788176899992],[-68.12767493399991,-76.15447356599998],[-68.14671790299991,-76.16570403399999],[-68.09894771999987,-76.18206145599991],[-68.08324133999992,-76.18971119599993],[-68.05475826699998,-76.21062590899999],[-68.03954016799992,-76.21819426899995],[-68.01813717399996,-76.22112395599996],[-67.94920813699991,-76.21591562299997],[-68.33061682849988,-76.24718596799993],[-68.71202551999988,-76.27845631299999],[-69.09343421149987,-76.30972665799996],[-69.47484290299985,-76.34099700299993],[-69.48631751199989,-76.33757903400002],[-69.50096594999991,-76.33017343499994],[-69.51500403599997,-76.32675546699993],[-69.5467830069999,-76.3269182269999],[-69.60472571499989,-76.33700937299994],[-69.71548417899996,-76.36931731599988],[-69.79775956899991,-76.37688567499993],[-69.85265051999991,-76.39348723799998],[-69.87706458199997,-76.39544036299992],[-69.9270727199999,-76.39137135199996],[-70.10081946499989,-76.42392343499994],[-70.1538793609999,-76.44402434699998],[-70.18089758999986,-76.45061614399995],[-70.13459225199998,-76.46803150799983],[-70.07384192599991,-76.47323984199993],[-69.85407467399989,-76.45110442499985],[-69.8008520169999,-76.45574309699988],[-69.74632727799991,-76.4694963519999],[-70.04991614499995,-76.49871184699992],[-69.99673417899987,-76.52060312299987],[-69.81615149599986,-76.52223072699988],[-69.85362708199989,-76.533298435],[-69.97838294199991,-76.53460051899992],[-70.05695553299992,-76.54851653399997],[-70.0995173819999,-76.56519947699994],[-70.11925208199992,-76.58904387799993],[-70.0804744129999,-76.61736419099988],[-69.98802649599989,-76.623630467],[-69.82738196499986,-76.61394622199995],[-69.86168372299991,-76.62314218499994],[-69.9654841789999,-76.63225676899992],[-70.03018144399994,-76.64820728999993],[-70.09430904899988,-76.67506275799991],[-69.97813880099997,-76.6630184879999],[-69.94176184799989,-76.66716887799984],[-69.97134355399996,-76.68621184699994],[-70.01402747299997,-76.69361744599983],[-70.33214270699995,-76.67766692500001],[-70.5807999339999,-76.71087004999993],[-70.52892005099991,-76.71933359199997],[-70.36949622299991,-76.7152645809999],[-70.39342200399997,-76.72616952899998],[-70.42031816299993,-76.73064544099995],[-70.50283769399992,-76.73430754999991],[-70.58674068899992,-76.74944426899991],[-70.7748103509999,-76.7334937479999],[-70.78115800699992,-76.7360979149999],[-70.78746497299997,-76.74830494599996],[-70.79381262899992,-76.75139739399994],[-70.96434485599994,-76.73894622199992],[-71.33669999899988,-76.7508684225],[-71.7090551419999,-76.762790623],[-72.05764726449988,-76.72608814899999],[-72.40623938699986,-76.689385675],[-72.57054602799992,-76.704522394],[-72.88141842399989,-76.6721330709999],[-72.89476477799991,-76.67457447699994],[-72.90294348899991,-76.68059661299985],[-72.91047115799995,-76.69475676899995],[-72.91738847599987,-76.70281340899997],[-72.92699133999994,-76.70720794099998],[-72.94253495999993,-76.71062590899999],[-72.97435462099989,-76.71257903399993],[-73.06045488199996,-76.69150156],[-73.49864661349989,-76.67225514099997],[-73.93683834499983,-76.65300872199992],[-73.91950436099995,-76.67148202899995],[-73.89940344999991,-76.680271092],[-73.79381262899994,-76.68572356599995],[-73.77074133999989,-76.69548919099998],[-73.76659094999992,-76.71900807099995],[-73.98155676999988,-76.69451262800001],[-74.08202063699994,-76.69361744599983],[-74.45810570633327,-76.65081145633326],[-74.83419077566651,-76.60800546666651],[-75.21027584499984,-76.56519947699994],[-75.25914466099992,-76.56487395600001],[-75.27155514199987,-76.59677499800003],[-75.33263098899991,-76.60312265399986],[-75.61343339799993,-76.56096770599991],[-75.66673743399991,-76.56129322699992],[-75.60912024599992,-76.57976653399996],[-75.59740149599995,-76.58766041499995],[-75.59260006399995,-76.60816822699991],[-75.60362708199992,-76.62102629999993],[-75.62242591099994,-76.62900155999998],[-75.67992102799985,-76.64478932099983],[-75.81041419199994,-76.63811614399997],[-75.89427649599993,-76.62102629999993],[-76.05382239499991,-76.56170012799996],[-76.13801021999984,-76.54900481599998],[-76.29906165299988,-76.56780364399985],[-76.37706458199992,-76.56812916499996],[-76.49925696499993,-76.52499765399995],[-76.54161536399994,-76.51677825299986],[-76.58397376199991,-76.5204403629999],[-76.62507076699993,-76.53899504999991],[-76.63003495999988,-76.54607512799996],[-76.63023841099991,-76.55364348799992],[-76.63182532499985,-76.56023528399999],[-76.64110266799992,-76.56511809699995],[-76.77049719999988,-76.578708592],[-76.76646887899989,-76.60751718499995],[-76.74986731699994,-76.62957122199985],[-76.72809811099998,-76.65016041499989],[-76.70832271999987,-76.67441171699997],[-76.75177975199989,-76.67009856599996],[-76.92906653599997,-76.6037736959999],[-77.11815344999991,-76.56064218499999],[-77.26451575399994,-76.56373463299997],[-77.3155818349999,-76.55486419099992],[-77.3648982409999,-76.53411223799984],[-77.45689856699991,-76.48007577899995],[-77.44107011599988,-76.497491144],[-77.38487708199996,-76.54501718499999],[-77.41437740799995,-76.55608489399995],[-77.50926673099988,-76.55608489399995],[-77.49229895699992,-76.58025481599994],[-77.4729711579999,-76.59644947699991],[-77.42589270699989,-76.62721119599999],[-77.49681555899988,-76.610284113],[-77.5316462879999,-76.59644947699991],[-77.55996660099996,-76.57708098799996],[-77.59186764199987,-76.54973723799992],[-77.69347083199995,-76.48756275799991],[-77.69701087099995,-76.51628997199995],[-77.67540442599993,-76.53508879999991],[-77.61432857999998,-76.55877044099992],[-77.50845292899987,-76.63046640400003],[-77.52013098899988,-76.63876718499999],[-77.52497311099995,-76.64910247199992],[-77.52521725199989,-76.67546965899993],[-77.5304255849999,-76.68385182099989],[-77.5428767569999,-76.69019947699991],[-77.56908118399986,-76.698825779],[-77.52358964799986,-76.72975025799987],[-77.18687903599991,-76.82659270599986],[-77.03888912699995,-76.92522551899991],[-76.98375403599991,-76.94784921699998],[-76.8679093089999,-76.97356536299985],[-76.83804277299993,-76.98593515399998],[-76.82233639199987,-77.00546640399995],[-76.83189856699994,-77.02605559699998],[-76.86335201699987,-77.02955494599998],[-76.97101803299995,-77.01018645599996],[-76.98452714799993,-77.01165129999991],[-76.99494381399992,-77.01482512799998],[-77.00649980399993,-77.02027760199984],[-77.0110570949999,-77.02760182099993],[-76.99986731699988,-77.036390883],[-76.85912024599986,-77.08562590899999],[-76.75035559799991,-77.07952239399992],[-76.72232011599989,-77.08196379999995],[-76.4739477199999,-77.1639950499999],[-76.32258053299991,-77.26287200299998],[-76.26671301999994,-77.28582122199988],[-76.08828691299993,-77.33171965899986],[-75.9212947259999,-77.33660247199991],[-75.87157141799987,-77.34954192499993],[-75.91055253799986,-77.36467864399992],[-75.81761633999989,-77.41464609199987],[-75.78661048099985,-77.425225519],[-75.6922094389999,-77.43710702899996],[-75.66812089799987,-77.446384373],[-75.5989477199999,-77.48935312299997],[-75.56484941299988,-77.50310637799998],[-75.55768795499992,-77.51091887799988],[-75.54967200399989,-77.52507903399999],[-75.53945878799996,-77.53492603999993],[-75.5266007149999,-77.54119231599988],[-75.45881100199992,-77.55201588299997],[-75.43667558499993,-77.54810963299997],[-75.36424719999991,-77.49960702899989],[-75.30870520699995,-77.47307708099993],[-75.25413977799988,-77.457614842],[-75.0803930329999,-77.43710702899996],[-74.60877031159993,-77.46480885199998],[-74.13714759019993,-77.492510675],[-73.66552486879996,-77.52021249799995],[-73.19390214739987,-77.54791432099998],[-72.72227942599991,-77.5756161439999],[-72.79670162699989,-77.60076262799998],[-72.77350826699987,-77.61980559699998],[-72.75987708199992,-77.63689544099992],[-72.76097571499986,-77.65618254999995],[-72.78180904899995,-77.68157317499998],[-72.80451412699989,-77.69898853999996],[-73.04328365799992,-77.80038827899998],[-73.08983313699986,-77.83001067499993],[-73.10879472599987,-77.84832122199998],[-73.11974036399994,-77.85637786299993],[-73.1311742829999,-77.85963307099998],[-73.15135657499991,-77.86028411299992],[-73.16315670499989,-77.86305103999997],[-73.18651282499988,-77.87664153399994],[-73.21104895699992,-77.88779062299987],[-73.39972896999984,-77.94931406],[-73.43321692599989,-77.96998463299994],[-73.44933020699995,-77.97437916499993],[-73.48127193899995,-77.97918059700001],[-73.49815833199995,-77.98650481599992],[-73.4310603509999,-77.99944426899992],[-73.46564693899998,-78.01474374799996],[-73.47760982999992,-78.01783619599996],[-73.4992569649999,-78.0184872379999],[-73.50548255099997,-78.01213958099999],[-73.5074763659999,-78.00359465899996],[-73.51646887899992,-77.99765390400003],[-73.54255123599998,-77.998630467],[-73.62730872299997,-78.024997654],[-73.94837398999996,-78.07708098749991],[-74.26943925699987,-78.1291643209999],[-74.18687903599988,-78.13494231599996],[-74.01675370999993,-78.11256275799994],[-73.93325761599996,-78.11239999799997],[-74.05565344999985,-78.13713958099996],[-74.47380530549992,-78.15260182050001],[-74.89195716099991,-78.16806405999989],[-74.96153723899991,-78.18222421699993],[-74.99787350199989,-78.18434010199994],[-74.99217688699991,-78.18767669099994],[-74.97618567599991,-78.2009416649999],[-74.99575761599988,-78.21998463299997],[-75.0202530589999,-78.22991301899997],[-75.04735266799995,-78.23162200299997],[-75.07433020699989,-78.22633228999983],[-75.08755449099993,-78.21965911299995],[-75.09386145699997,-78.21152109199993],[-75.0988663399999,-78.201755467],[-75.1080216139999,-78.190524998],[-75.11978105399987,-78.18181731599991],[-75.14903723899991,-78.16716887799991],[-75.21764075399992,-78.14462656],[-75.71119544159995,-78.1016740861999],[-76.20475012919997,-78.05872161239998],[-76.69830481679989,-78.01576913859996],[-77.1918595043999,-77.97281666479995],[-77.68541419199994,-77.92986419099992],[-77.75792395699995,-77.945896092],[-77.78331458199997,-77.94841887799993],[-78.23740258133324,-77.9138322896666],[-78.69149058066654,-77.87924570133328],[-79.14557857999992,-77.84465911299993],[-79.17349199099993,-77.84596119599993],[-79.31525631399994,-77.87656015399996],[-79.42369544199994,-77.87802499800001],[-79.69552568299994,-77.8454729145],[-79.96735592399992,-77.81292083099999],[-80.02245032499988,-77.81560637799996],[-80.22716223899991,-77.79778411299998],[-80.38609778599994,-77.75156015399996],[-80.57640540299988,-77.72372812299993],[-80.76935787699992,-77.66985442499998],[-80.74962317599989,-77.69003671699993],[-80.71930904899992,-77.7048479149999],[-80.65689042899996,-77.72486744599996],[-80.70498613199993,-77.76409270599999],[-80.76227779899997,-77.7899716129999],[-81.15709387899989,-77.85230885199996],[-81.39850826699984,-77.83310312299999],[-81.66746985599987,-77.84148528399989],[-81.61620032499984,-77.86207447699991],[-81.14912314033322,-77.92402289999995],[-80.68204595566655,-77.9859713229999],[-80.21496877099987,-78.04791974599995],[-79.74789158633325,-78.10986816899992],[-79.28081440166659,-78.17181659199997],[-78.81373721699993,-78.23376501499993],[-78.34666003233328,-78.29571343799998],[-77.87958284766653,-78.35766186099994],[-77.41250566299988,-78.41961028399999],[-77.36656653599991,-78.44793059699991],[-77.36432857999992,-78.50172291499989],[-77.35610917899993,-78.51100025799994],[-77.3351130849999,-78.52516041499996],[-77.3307185539999,-78.53378671699987],[-77.33747311099995,-78.55828215899999],[-77.33751380099994,-78.57000090899989],[-77.33088131399998,-78.58806731599991],[-77.32941646999993,-78.59783294099985],[-77.33462480399989,-78.60540129999998],[-77.3480525379999,-78.61646900799984],[-77.36119544199997,-78.62444426899998],[-77.66344153599991,-78.70533619599996],[-77.70140540299994,-78.72535572699992],[-77.7239884109999,-78.73137786299985],[-77.75401770699993,-78.73577239399992],[-78.17755421966658,-78.75427282799997],[-78.60109073233329,-78.77277326199993],[-79.02462724499989,-78.79127369599996],[-79.44816375766659,-78.80977413000002],[-79.87170027033324,-78.82827456399997],[-80.29523678299995,-78.84677499799992],[-80.71706295479996,-78.7715145814],[-81.13888912659993,-78.69625416479998],[-81.56071529839986,-78.62099374819996],[-81.98254147019993,-78.54573333159993],[-82.40436764199987,-78.47047291499983],[-82.46007239499994,-78.46998463299984],[-82.4870499339999,-78.46575286299999],[-82.88388695666657,-78.31433142199997],[-83.28072397933323,-78.16290998099994],[-83.67756100199989,-78.01148853999993],[-83.73570716099992,-77.979587498],[-83.76764889199987,-77.9680315079999],[-83.79987545499988,-77.96738046699994],[-83.81200110599988,-77.96982187299997],[-83.82412675699987,-77.97389088299994],[-83.8313695949999,-77.98219166499983],[-83.82860266799995,-77.99667734199987],[-83.81704667899993,-78.01197682099982],[-83.79010982999995,-78.03484465899993],[-83.78001868399988,-78.04753997199998],[-83.74649003799993,-78.11003997199992],[-83.72508704299992,-78.13567473799999],[-83.69530188699989,-78.15545012799993],[-83.66177324099996,-78.16773853999997],[-83.62946529899992,-78.17424895599996],[-83.55996660099993,-78.17717864399998],[-83.56773841099991,-78.18466562299996],[-83.5966690749999,-78.20208098799992],[-83.59797115799992,-78.21738046699997],[-83.59129798099988,-78.22625090899993],[-83.37970943899984,-78.2985165339999],[-83.30565344999988,-78.30266692499995],[-83.26284745999988,-78.32122161299995],[-83.21788489499988,-78.33456796699997],[-83.18163001199989,-78.36093515399988],[-83.02098548099984,-78.42848072699994],[-83.01366126199994,-78.43775807099989],[-83.00401770699996,-78.46070728999997],[-82.99498450399996,-78.46624114399998],[-82.94493567599993,-78.47332122199995],[-82.98570716099991,-78.49187590899994],[-83.04588782499988,-78.50481536299988],[-83.10533606699994,-78.5051408829999],[-83.14378821499992,-78.48626067499995],[-83.13621985599988,-78.48251718500002],[-83.12157141799989,-78.47283294099988],[-83.11375891799989,-78.46941497199995],[-83.15029863199992,-78.441989842],[-83.19347083199992,-78.41668059699995],[-83.2398168609999,-78.39853280999996],[-83.28579667899987,-78.39218515399993],[-83.37389075399997,-78.40447356599998],[-83.4173884759999,-78.40593840899984],[-83.46182206899992,-78.39275481599991],[-83.44758053299991,-78.37908294099996],[-83.42829342399989,-78.37118905999998],[-83.38687089799987,-78.364678644],[-83.40709387899989,-78.35182057099996],[-83.42886308499996,-78.34840260199996],[-83.4754125639999,-78.35173919099998],[-83.68126380099994,-78.32724374799987],[-83.70213782499991,-78.33424244599993],[-83.71190344999984,-78.34172942499991],[-83.73525956899992,-78.35523853999989],[-83.73997962099986,-78.36093515399988],[-83.73912512899994,-78.37542083099991],[-83.73473059799997,-78.385837498],[-83.7254532539999,-78.39267343499999],[-83.71003170499989,-78.39723072699996],[-83.74425208199997,-78.41814544099992],[-83.79234778599994,-78.42294687299999],[-83.88613847599993,-78.41936614399985],[-83.85635331899994,-78.44443124799993],[-83.80394446499986,-78.50107187300003],[-83.71963456899996,-78.56015390399996],[-83.5410050119999,-78.62916432099999],[-83.44005286399997,-78.69622161299986],[-83.40339107999995,-78.71493906000002],[-83.25352942599994,-78.77271900799997],[-82.91808020699995,-78.85857512799998],[-82.72838294199997,-78.87566497199985],[-82.63247636599996,-78.86394622199995],[-82.58568274599989,-78.86785247199995],[-82.56663977799991,-78.89470794099985],[-82.60716712099992,-78.91139088299997],[-82.60704505099994,-78.92962004999995],[-82.57949785099993,-78.94459400799988],[-82.51744544199988,-78.9553361959999],[-82.47984778599988,-78.9670549459999],[-82.45970618399993,-78.96982187299994],[-82.38902747299991,-78.96933359199997],[-82.06590735599988,-79.01734791499996],[-81.74278723899994,-79.06536223799995],[-81.71837317599991,-79.08074309699998],[-81.70689856699997,-79.09124114399995],[-81.68854732999992,-79.09596119599996],[-81.65111243399987,-79.10076262799996],[-81.4513240229999,-79.16725025799997],[-81.41014563699994,-79.1735979149999],[-81.45335852799994,-79.18857187299993],[-81.41063391799992,-79.20818450299998],[-81.3882543609999,-79.21550872199998],[-81.36782792899993,-79.21559010199996],[-81.3001195949999,-79.19736093499998],[-81.27721106699991,-79.19451262799996],[-81.10570227799988,-79.2033830709999],[-81.22215735599994,-79.23333098799988],[-81.27497311099992,-79.2548153629999],[-81.31932532499985,-79.29851653399999],[-81.30158443899987,-79.32488372199997],[-81.16852779899995,-79.44817473799995],[-81.1173396479999,-79.46990325299993],[-80.80483964799993,-79.52389902149997],[-80.49233964799993,-79.57789478999992],[-80.46816972599993,-79.57463958099999],[-80.43911699099995,-79.5655249979999],[-80.41193600199995,-79.55193450299993],[-80.39317786399988,-79.5352515599999],[-80.38597571499986,-79.50823333099996],[-80.40143795499998,-79.4890276019999],[-80.50706946499992,-79.44597747199995],[-80.53087317599991,-79.43141041499993],[-80.54539954299986,-79.41432057099989],[-80.5468643869999,-79.39234791499996],[-80.53722083199995,-79.32366301899997],[-80.53042558499993,-79.30429452899995],[-80.48656165299987,-79.27361419099994],[-80.4293513659999,-79.25847747199994],[-79.94225521537489,-79.26528289187496],[-79.45515906474989,-79.27208831174997],[-78.96806291412489,-79.27889373162498],[-78.48096676349996,-79.2856991515],[-77.99387061287496,-79.29250457137492],[-77.50677446224995,-79.29930999124984],[-77.01967831162494,-79.30611541112485],[-76.53258216099991,-79.31292083099994],[-76.32730058499993,-79.37721119599996],[-76.2163793609999,-79.391778253],[-76.18000240799992,-79.40162525799983],[-76.13141842399995,-79.42327239399992],[-76.1135147779999,-79.42506275799991],[-76.06627356699994,-79.43531666499993],[-76.03587805899988,-79.46331145599986],[-76.00841223899994,-79.49675872199991],[-75.97020423099988,-79.52337004999995],[-75.95555579299986,-79.52206796699994],[-75.9376521479999,-79.51726653399996],[-75.92463131399992,-79.52027760199996],[-75.92446855399996,-79.54225025799997],[-75.93854732999988,-79.56878020599994],[-75.96129309799994,-79.58904387799996],[-76.01154537699989,-79.62184010199995],[-76.03563391799992,-79.6471493469999],[-76.07469641799989,-79.70631275799991],[-76.09764563699989,-79.733575128],[-76.14940344999991,-79.76881275799994],[-76.26195227799985,-79.80681731599995],[-76.42039954299989,-79.87981536299995],[-76.63219153599997,-79.93922291499992],[-77.02562415299991,-79.97653574049984],[-77.41905676999997,-80.01384856599985],[-77.87271074139991,-80.0075985659999],[-78.32636471279997,-80.00134856599996],[-78.78001868419992,-79.99509856599992],[-79.23367265559989,-79.98884856599992],[-79.68732662699995,-79.98259856599988],[-79.64541581899994,-80.02125416499993],[-79.2211672296666,-80.06427716833326],[-78.7969186403333,-80.10730017166651],[-78.37267005099987,-80.15032317499995],[-78.29625403599997,-80.17546965899993],[-78.27318274599992,-80.17815520600001],[-77.90054277299993,-80.14902109199987],[-77.77904212099986,-80.16187916499987],[-77.7032771479999,-80.17831796699997],[-77.66612708199989,-80.18173593499996],[-77.2022463313333,-80.14820728933327],[-76.73836558066654,-80.11467864366658],[-76.27448482999995,-80.08114999799987],[-76.24657141799992,-80.0896135399999],[-76.2539770169999,-80.10947031],[-76.27188066299996,-80.13323333099991],[-76.27574622299994,-80.154473566],[-76.2539770169999,-80.18417734199993],[-76.23338782499988,-80.20256926899997],[-76.17638098899994,-80.23105234199997],[-76.15245520699989,-80.24627044099995],[-76.11534583199997,-80.28191497199991],[-76.09508216099995,-80.29412200299988],[-76.08165442599997,-80.29469166499986],[-76.06704667899996,-80.28997161299984],[-76.04027258999986,-80.275811456],[-76.02745520699992,-80.27206796699997],[-76.01276607999992,-80.27125416499996],[-75.9652400379999,-80.27483489399984],[-75.95653235599994,-80.27776458099996],[-75.94782467399995,-80.28264739399994],[-75.98717200399994,-80.30315520599997],[-75.96715247299997,-80.31340911299992],[-75.90151933499996,-80.30632903399994],[-75.87205969999988,-80.30771249800003],[-75.57843990799991,-80.40349700299996],[-75.56554114499991,-80.41090260199987],[-75.54613196499992,-80.43474700299991],[-75.53018144399991,-80.44166432099993],[-75.51231848899994,-80.44670989399997],[-75.49673417899993,-80.45484791499989],[-75.46666419199991,-80.47649504999988],[-75.45396887899994,-80.48137786299995],[-75.41405188699989,-80.48853932099988],[-75.40172278599994,-80.51921965899999],[-75.42398027299987,-80.541599217],[-75.4600723949999,-80.55632903399999],[-75.51988684799989,-80.5705705709999],[-75.64753170499995,-80.58635833099996],[-75.67100989499991,-80.59531015399998],[-75.69050045499988,-80.61150481599994],[-75.71198482999992,-80.63811614399988],[-75.64818274599989,-80.66277434699997],[-75.46979732999998,-80.70370859199988],[-75.39142818899991,-80.70484791499993],[-75.37022864499991,-80.71111419099998],[-75.3478083979999,-80.72185637799998],[-75.24714107999989,-80.74114348799993],[-75.13011633999989,-80.74423593499999],[-75.02953040299987,-80.77206796699997],[-74.94945227799991,-80.77019622199991],[-74.98814856699994,-80.79045989399992],[-75.04112708199996,-80.79363372199998],[-75.19245357999995,-80.77125416499996],[-75.34898841099994,-80.800062758],[-75.72508704299989,-80.81853606599992],[-75.7709041009999,-80.83757903399992],[-75.65347245999986,-80.84172942499994],[-75.64232337099995,-80.84490325300001],[-75.63170325399992,-80.85247161299996],[-75.61266028599991,-80.87021249799996],[-75.59992428299995,-80.87810637799993],[-75.58478756399995,-80.88372161299993],[-75.55406653599987,-80.89137135199996],[-75.4986059239999,-80.89657968499995],[-75.38109290299991,-80.880791925],[-75.24103756399992,-80.88201262799993],[-75.14883378799996,-80.86345794099992],[-75.13906816299989,-80.865655206],[-75.0968318349999,-80.88323333099986],[-75.08438066299988,-80.88355885199996],[-75.06118730399993,-80.87916432099999],[-75.04938717399996,-80.8786760399999],[-74.98721269399996,-80.89609140399998],[-74.96214758999986,-80.89397551899995],[-74.93175208199989,-80.88762786299993],[-74.90249589799987,-80.88591887799993],[-74.83828691299993,-80.91936614399998],[-74.78331458199995,-80.90789153399994],[-74.72472083199992,-80.88543059699992],[-74.67149817599991,-80.873467706],[-74.61925208199992,-80.87379322699994],[-74.59422766799992,-80.87078215899993],[-74.47915605399993,-80.83440520599986],[-74.27696692599991,-80.823337498],[-74.16258704299989,-80.800062758],[-74.10423743399991,-80.796156508],[-74.04686438699989,-80.80413176899995],[-73.9906306629999,-80.82659270599994],[-73.95107988199993,-80.83733489399997],[-73.86436926999991,-80.83131275799997],[-73.82262122299997,-80.83562590899994],[-73.77818762899994,-80.8484026019999],[-73.4418567913333,-80.88865867833329],[-73.10552595366653,-80.92891475466666],[-72.76919511599996,-80.96917083099996],[-72.58885657499991,-80.96135833099996],[-72.60374915299985,-80.93141041499989],[-72.61408443899995,-80.91961028399993],[-72.6289770169999,-80.91041432099996],[-72.58372962099989,-80.83228932099993],[-72.55703691299996,-80.79859791499993],[-72.51598059799994,-80.7702776019999],[-72.46231035099987,-80.75042083099999],[-72.41100012899994,-80.74407317499995],[-72.35948645699997,-80.74863046699998],[-72.27757727799994,-80.76555754999998],[-71.95807857999986,-80.73276132599997],[-71.63857988199989,-80.69996510199995],[-71.60716712099989,-80.70175546699994],[-71.54857337099993,-80.71502044099998],[-71.52660071499992,-80.71542734199996],[-71.28180904899997,-80.663506769],[-71.12580318899998,-80.60263437299997],[-71.06773841099991,-80.60182057099996],[-70.97427324099993,-80.62395598799995],[-70.94127356699988,-80.62509530999998],[-70.8206274079999,-80.61012135199995],[-70.43370520699995,-80.65732187299993],[-70.4015193349999,-80.66806406000003],[-70.3756404289999,-80.68434010199996],[-70.36412512899994,-80.70769622199997],[-70.36790930899988,-80.72307708099991],[-70.38801021999993,-80.749444269],[-70.39354407499994,-80.76376718499999],[-70.39069576699988,-80.78118254999995],[-70.38438880099994,-80.794854425],[-70.38353430899986,-80.80803801899995],[-70.39712480399989,-80.823337498],[-70.38817298099988,-80.82724374799999],[-70.32457434799991,-80.84042734199996],[-70.19863847599996,-80.88941822699992],[-70.1568904289999,-80.89527760199996],[-70.03416907499991,-80.89267343499995],[-70.05549068899998,-80.91326262799998],[-70.06175696499992,-80.92913176899992],[-70.05272376199991,-80.943454685],[-70.02822831899988,-80.95964934699995],[-70.00206458199995,-80.97079843499998],[-69.97581946499992,-80.97600676899998],[-69.77843176999988,-80.98528411299992],[-69.6854548819999,-80.97600676899998],[-69.42979895749991,-81.00286223750001],[-69.17414303299995,-81.02971770599986],[-69.11636308499989,-81.025567316],[-68.95250403599994,-80.98479583099994],[-68.68032792899993,-80.96087004999998],[-68.44871985599991,-80.977146092],[-68.30626380099989,-81.00318775799998],[-68.23485266799992,-81.003513279],[-68.17027747299994,-81.02564869599999],[-68.05711829299995,-81.03826262799996],[-68.08771725199995,-81.0510393209999],[-68.29735266799993,-81.08993906],[-68.42100989499994,-81.087823175],[-68.37165279899993,-81.1102841129999],[-67.91488894099993,-81.1677152885714],[-67.45812508299991,-81.2251464641428],[-67.0013612249999,-81.28257763971428],[-66.54459736699997,-81.34000881528567],[-66.08783350899994,-81.39743999085707],[-65.63106965099993,-81.45487116642848],[-65.17430579299989,-81.51230234199997],[-64.92332923049992,-81.51336028449997],[-64.67235266799986,-81.51441822699996],[-64.61847896999993,-81.53036874799996],[-64.58958899599992,-81.53443775799994],[-64.15450598819993,-81.53906015399994],[-63.71942298039997,-81.54368254999987],[-63.284339972599895,-81.54830494599997],[-62.84925696479993,-81.55292734199998],[-62.414173956999946,-81.55754973799999],[-62.28132076699989,-81.58668385199995],[-62.211333787999905,-81.5920549459999],[-62.18919837099992,-81.59937916499992],[-62.180490688999924,-81.607517185],[-62.16173255099997,-81.63111744599996],[-62.1478572259999,-81.64023202899996],[-62.13125566299993,-81.645603123],[-62.116363084999875,-81.64763762799986],[-62.08360755099994,-81.64568450299998],[-62.11449133999991,-81.67131926899997],[-62.15916907499988,-81.68531666499993],[-62.207346157999915,-81.69255950299996],[-62.597808397666626,-81.70056189033326],[-62.98827063733324,-81.70856427766658],[-63.37873287699991,-81.7165666649999],[-63.46125240799992,-81.70077890399995],[-63.29539954299991,-81.64902109199993],[-63.39118404899994,-81.63209400799994],[-63.49299068899989,-81.64072030999995],[-63.73737545499991,-81.68938567499998],[-64.03425045499992,-81.69703541499992],[-64.08438066299993,-81.688897394],[-63.84390214799989,-81.62216562299994],[-63.87816321499985,-81.60084400799997],[-63.93683834499987,-81.60955169099994],[-64.09215247299994,-81.66611093499988],[-64.1986384759999,-81.688409113],[-64.45567786399991,-81.69329192549993],[-64.7127172519999,-81.69817473799995],[-64.66527258999992,-81.67734140399996],[-64.51349850199992,-81.63884856599998],[-64.5593155589999,-81.62175872199994],[-64.61676998599992,-81.619317316],[-64.7784724599999,-81.63697682099992],[-64.97923743399994,-81.69500090899999],[-65.3037817049999,-81.71754322699995],[-65.41722571499989,-81.70110442499997],[-65.69172115799995,-81.71054452899998],[-65.70555579299986,-81.71453215899996],[-65.71304277299993,-81.71998463299991],[-65.71475175699993,-81.72918059699988],[-65.70616614499991,-81.7614885399999],[-65.70152747299989,-81.76995208099994],[-65.69347083199993,-81.77361419099998],[-65.67756100199992,-81.77727629999985],[-65.62486731699994,-81.78411223799996],[-65.26799475849987,-81.79021575349998],[-64.91112219999991,-81.79631926899994],[-64.96483313699989,-81.81511809699998],[-64.91755123599992,-81.81951262799997],[-64.7512914699999,-81.79794687299996],[-64.68553626199991,-81.80022551899994],[-64.63361568899992,-81.79338958100001],[-64.24887719066666,-81.7889407963333],[-63.86413869233328,-81.7844920116666],[-63.47940019399993,-81.78004322699991],[-63.51203365799997,-81.80242278399993],[-63.54088294199991,-81.8292782529999],[-63.5087784499999,-81.83562590899994],[-63.47606360599991,-81.83733489399995],[-63.51789303299993,-81.86207447699992],[-63.577219204999885,-81.87184010199995],[-64.02239335859991,-81.87514413839999],[-64.46756751219992,-81.87844817479993],[-64.91274166579996,-81.88175221119997],[-65.35791581939995,-81.8850562475999],[-65.80308997299989,-81.88836028399993],[-66.25576738199993,-81.94801197699994],[-65.97864742749991,-81.95846933399991],[-65.70152747299989,-81.96892669099998],[-65.62979081899988,-81.9865861959999],[-65.65298417899993,-82.00579192499994],[-65.68179277299996,-82.01588307099993],[-65.74282792899993,-82.02678801899998],[-65.92031816299996,-82.07968515399996],[-65.94371497299994,-82.095798435],[-65.98558508999994,-82.15016041499986],[-66.00576738199987,-82.16814544099998],[-66.06240800699987,-82.19540780999998],[-66.03355872299994,-82.21445077899998],[-65.86685136599993,-82.2098934879999],[-65.89386959499986,-82.22722747200001],[-65.94033769399991,-82.23503997199991],[-66.0281469389999,-82.23967864399994],[-65.98985755099994,-82.24944426899988],[-65.8627009759999,-82.24480559699995],[-65.91344153599994,-82.263116144],[-66.08006751199989,-82.291680597],[-66.03026282499991,-82.31161874799997],[-65.75922604099992,-82.30250416449994],[-65.48818925699996,-82.293389581],[-65.37498938699986,-82.263116144],[-65.23346920499992,-82.25693124799994],[-65.21861731699993,-82.25994231599994],[-65.20763098899988,-82.26580169099996],[-65.20067298099991,-82.27361419099998],[-65.19456946499992,-82.28232187299987],[-65.18610592399997,-82.29070403399993],[-65.17882239499994,-82.29404062299993],[-65.1621801419999,-82.29753997199985],[-65.15440833199992,-82.30120208099999],[-65.14659583199992,-82.30836353999993],[-65.14484615799992,-82.314060154],[-65.14806067599997,-82.31951262799996],[-65.15538489499997,-82.32594166499996],[-65.1673477859999,-82.34026458099994],[-65.16454016799985,-82.34970468499988],[-65.15111243399987,-82.355645441],[-65.10777747299989,-82.36370208099993],[-65.09434973899991,-82.36793385199994],[-65.09190833199997,-82.374118748],[-65.10130774599989,-82.392754816],[-65.09203040299994,-82.40252044099995],[-65.07258053299995,-82.40601978999993],[-64.76475989499997,-82.38022226399991],[-64.4569392569999,-82.35442473799998],[-64.49054928299992,-82.36858489399998],[-64.52574622299989,-82.37786223799993],[-64.48827063699986,-82.40390390400002],[-64.43960527299993,-82.41033294099985],[-64.14069576749995,-82.35625579249991],[-63.84178626199988,-82.30217864399995],[-63.587574836499954,-82.32146575349995],[-63.33336341099993,-82.34075286299995],[-63.286732550999915,-82.33025481599988],[-63.19587154899994,-82.294610284],[-63.234730597999935,-82.269138279],[-63.18883216099988,-82.25758228999999],[-63.041371222999906,-82.25204843499988],[-63.03514563699986,-82.27369557099996],[-63.00987708199988,-82.27971770599996],[-62.740895148499895,-82.2680803365],[-62.47191321499989,-82.25644296699994],[-62.07298743399991,-82.28753020599996],[-61.61823482966661,-82.24526675133333],[-61.16348222533324,-82.20300329666662],[-60.70872962099994,-82.160739842],[-60.64728756399995,-82.16668059699992],[-60.69286048099991,-82.19768645599996],[-60.40123450399988,-82.17017994599992],[-60.506174282999915,-82.21510182099983],[-60.813201463999945,-82.27971770649992],[-61.12022864499991,-82.344333592],[-61.29019120999987,-82.342217706],[-61.75841223899991,-82.40260182099993],[-61.99567623599989,-82.45916106599985],[-62.39535478399992,-82.48943450349998],[-62.79503333199991,-82.51970794099992],[-62.76512610599994,-82.55429452900002],[-62.729074673999975,-82.57781340899987],[-62.49518795499992,-82.68173593500002],[-62.51109778599993,-82.70956796699998],[-62.52208411399988,-82.71819426899998],[-62.53868567599994,-82.72063567499993],[-62.51886959499992,-82.72576262799993],[-62.481678839999944,-82.719414972],[-62.462025519999884,-82.719414972],[-62.44359290299985,-82.72568124799996],[-62.403146938999896,-82.74553801899997],[-62.10069739499991,-82.84970468499995],[-62.093251105999904,-82.85442473799986],[-62.08995520699989,-82.862481378],[-62.09121660099989,-82.87127044099987],[-62.09072831899991,-82.88079192499995],[-62.08238684799994,-82.89120859199996],[-61.932484503999916,-82.97234465899989],[-61.997222459999925,-83.0012346329999],[-62.066395636999935,-83.013278904],[-62.209339972999935,-83.01881275799984],[-62.18077551999996,-83.03411223799989],[-62.13853919199993,-83.03687916499995],[-61.94163977799991,-83.028415623],[-61.90534420499992,-83.02011484199991],[-61.8544001939999,-82.99537525799992],[-61.83348548099993,-82.99244557099992],[-61.81578528599994,-82.99456145599993],[-61.65782630099988,-83.05771249800001],[-61.62022864499988,-83.0634091129999],[-61.601918097999935,-83.05999114399998],[-61.58714758999985,-83.05071379999985],[-61.56358801999991,-83.0232072899999],[-61.54938717399988,-83.01034921699997],[-61.53213456899987,-83.0021298159999],[-61.38499915299994,-82.96640390399995],[-61.36489824099988,-82.9498023419999],[-61.34935462099989,-82.90894947699995],[-61.337066209999925,-82.89812590899994],[-61.31411699099993,-82.89023202899989],[-61.294260219999835,-82.88738372199985],[-61.276519334999925,-82.88982512799988],[-61.26073157499988,-82.89763762799996],[-61.21825110599991,-82.93906015399989],[-61.18468176999988,-82.9592424459999],[-61.14793860599989,-82.96477629999993],[-61.110178188999924,-82.94898853999989],[-61.13288326699998,-82.91790129999988],[-61.09654700399989,-82.90504322699985],[-61.06574459499992,-82.90976327899995],[-61.006581183999906,-82.94605885199996],[-60.97834225199995,-82.97519296700001],[-60.974924282999915,-83.00546640399992],[-61.000233527999875,-83.07301197699998],[-61.04010982999994,-83.11956145599991],[-61.11253821499989,-83.16480885199985],[-61.19249426999988,-83.19850025799984],[-61.25430253799988,-83.21005624799987],[-61.326568162999955,-83.21355559699987],[-61.48473059799994,-83.25465260199994],[-61.62482662699991,-83.31218840899984],[-61.851470506999874,-83.367608331],[-61.82469641799988,-83.37444426899984],[-61.795277472999885,-83.372735284],[-61.73761959499993,-83.36174895599987],[-61.541127081999896,-83.35084400799998],[-61.52961178299994,-83.35759856599984],[-61.524240688999896,-83.37444426899984],[-61.52065995999993,-83.39275481599988],[-61.514475063999946,-83.40398528399999],[-61.48888098899988,-83.40691497199991],[-61.41905676999993,-83.39120859199986],[-61.25523841099997,-83.37574635199984],[-61.18639075399988,-83.37981536299998],[-61.14769446499986,-83.40846119599986],[-61.11042232999998,-83.41326262799994],[-60.89964758999986,-83.387953383],[-61.00503495999996,-83.42400481599987],[-61.113636847999935,-83.44793059699992],[-60.952259894999884,-83.47625090899986],[-60.900135870999954,-83.47421640399993],[-60.667836066999904,-83.430271092],[-60.60806230399992,-83.42839934699994],[-60.44611568899992,-83.46868255000001],[-60.16010494699989,-83.44809335749984],[-59.874094204999885,-83.42750416499995],[-59.86270097599992,-83.43328215899999],[-59.84504146999993,-83.45427825299986],[-59.83360755099994,-83.45867278399984],[-59.46996008999991,-83.4601376279999],[-59.076629198249854,-83.34734465924993],[-58.683298306499914,-83.23455169049986],[-58.28996741474986,-83.12175872174988],[-57.89663652299992,-83.008965753],[-57.69888261599987,-82.91025155999995],[-57.24526933499996,-82.821981161],[-56.79165605399993,-82.73371076199996],[-56.33804277299992,-82.64544036299993],[-56.31920325399997,-82.63681406000002],[-56.296376105999855,-82.62118906000003],[-55.99233964799993,-82.540948175],[-55.93187415299991,-82.51409270599991],[-55.9258520169999,-82.50994231599998],[-55.92491614499991,-82.50457122199992],[-55.928293423999946,-82.48821380000001],[-55.927235480999876,-82.483086847],[-55.916127081999946,-82.47698333100001],[-55.85016842399992,-82.46209075299996],[-55.84365800699993,-82.46721770599997],[-55.840443488999874,-82.47633228999996],[-55.826242641999954,-82.48512135199994],[-55.77692623599998,-82.48756275799997],[-55.68106035099996,-82.46168385199987],[-55.558949347999906,-82.46119557099996],[-55.49779212099989,-82.47429778399993],[-55.440988735999916,-82.47673919099988],[-55.42845618399991,-82.47991301899994],[-55.42491614499994,-82.48601653399993],[-55.423003709999875,-82.49309661299998],[-55.41510982999992,-82.49976978999995],[-55.39293372299994,-82.50652434699998],[-55.22484290299993,-82.51775481599998],[-55.17642167899992,-82.51043059699988],[-55.143869594999984,-82.49065520599996],[-55.187611456999946,-82.45826588299994],[-55.14142818899995,-82.44451262799991],[-55.13011633999986,-82.43906015399999],[-55.121978318999936,-82.4260393209999],[-55.11082923099991,-82.39413827899998],[-55.09976152299989,-82.38437265399995],[-55.015492316999875,-82.35230885199996],[-54.98786373599997,-82.34685637799993],[-54.85757402299992,-82.34791432099989],[-54.848378058999856,-82.34319426899998],[-54.83116614499994,-82.32341887799994],[-54.8205460279999,-82.31633879999998],[-54.76154537699995,-82.29973723799993],[-54.500559048499895,-82.28740813599998],[-54.23957271999995,-82.27507903399994],[-54.173898891999954,-82.26295338299994],[-54.20091712099989,-82.25416432099998],[-54.29320227799985,-82.25351327899992],[-53.924672003999916,-82.20614999799999],[-53.96996008999986,-82.19850025799995],[-54.25767981699997,-82.20159270599986],[-54.303456183999884,-82.19166432099995],[-53.909291144999884,-82.17839934700001],[-53.79963131399995,-82.194024347],[-53.313954230999876,-82.15276458099986],[-53.28758704299986,-82.14714934699995],[-53.275461391999954,-82.14185963299997],[-53.255441860999895,-82.13014088299998],[-53.24034583199989,-82.12639739399995],[-53.22492428299995,-82.12509530999995],[-52.93403072849995,-82.14275481550001],[-52.64313717399992,-82.16041432099998],[-52.18687903599991,-82.11150481549984],[-51.7306433431363,-82.06259771605136],[-51.7306208979999,-82.06259531],[-51.24689693949989,-82.01067473749998],[-50.76317298099988,-81.95875416499995],[-50.73338782499987,-81.95956796699996],[-50.557932094999956,-81.99382903399993],[-50.122417772199924,-81.97312590899998],[-49.68690344939997,-81.95242278399994],[-49.25138912659992,-81.93171965899998],[-48.815874803799886,-81.91101653399994],[-48.380360480999904,-81.89031340899999],[-48.229400193999936,-81.91822682099993],[-48.2200821609999,-81.91562265400002],[-48.20689856699997,-81.89869557099995],[-48.198882615999906,-81.8928361959999],[-48.188221808999884,-81.8915341129999],[-47.88768469999994,-81.92197030999995],[-47.43122311099995,-81.91765715899996],[-47.38044186099992,-81.92351653399999],[-47.34487870999995,-81.95012786299993],[-47.35081946499989,-81.95484791499986],[-47.3619685539999,-81.966241144],[-47.36815344999988,-81.97031015399998],[-47.26378333199991,-81.96998463299994],[-47.4237361319999,-82.00750090899994],[-47.58458411399988,-82.02044036299988],[-47.56200110599991,-82.037530206],[-47.52757727799988,-82.04762135199998],[-47.490589972999935,-82.05234140399998],[-47.46031653599994,-82.05282968499998],[-47.39631100199994,-82.04501718499998],[-47.36310787699992,-82.04469166499996],[-47.295521613999966,-82.06951262800001],[-47.255523240999935,-82.07219817499997],[-47.21519934799997,-82.065687758],[-47.1756892569999,-82.05331796699987],[-47.08702551999991,-82.00367603999985],[-47.05504309799991,-81.99325937299994],[-46.6671239899999,-81.95151132600002],[-46.279204881999874,-81.90976327899998],[-46.22931881399992,-81.91692473799992],[-46.25157630099997,-81.94378020599991],[-46.25340735599994,-81.95533619599993],[-46.24669348899991,-81.9732398419999],[-46.23460852799991,-81.98894622199995],[-46.2169490229999,-82.00318775799997],[-46.196929490999906,-82.01433684699998],[-46.1360570949999,-82.03630950299998],[-46.053944464999915,-82.08326588299994],[-46.01256262899997,-82.09441497199995],[-46.02708899599992,-82.10222747199985],[-46.03819739499994,-82.112725519],[-46.04474850199992,-82.126153253],[-46.04556230399993,-82.14251067499993],[-45.97301184799994,-82.12542083099996],[-45.948841925999915,-82.12574635199991],[-46.02721106699988,-82.15447356599995],[-46.04942786399994,-82.17099374799993],[-46.064442511999886,-82.19182708099999],[-46.074777798999975,-82.21005624799999],[-46.088775193999936,-82.22437916499997],[-46.300770636999886,-82.30592213299991],[-46.688791469999984,-82.40545012799997],[-46.63280188699994,-82.43084075299998],[-46.45299231699994,-82.47079843499995],[-46.46353105399993,-82.487399998],[-46.47948157499994,-82.49618905999988],[-46.51829993399994,-82.503350519],[-46.05361894399987,-82.55486419099998],[-46.0250544909999,-82.552178644],[-46.042225714999915,-82.54078541499986],[-45.94688880099997,-82.49212005000001],[-45.832508917999945,-82.45175546699996],[-45.71939042899993,-82.44361744599993],[-45.579335089999944,-82.52214934699995],[-45.52041581899988,-82.52662525799984],[-45.028818325499884,-82.45346445099996],[-44.53722083199992,-82.38030364399998],[-44.30524654899989,-82.31552499799997],[-44.19859778599988,-82.25546640399998],[-44.13707434799991,-82.24472421699997],[-44.073475714999944,-82.24846770599999],[-44.013539191999904,-82.26295338299994],[-44.019154425999915,-82.27548593499995],[-44.026519334999904,-82.28484465899989],[-44.03587805899994,-82.29265715899997],[-44.046986456999946,-82.29949309699998],[-44.054676886999886,-82.30950286299998],[-44.053863084999875,-82.33733489399994],[-44.05699622299994,-82.34978606599995],[-44.07437089799993,-82.36337656],[-44.10142981699997,-82.374607029],[-44.15298417899993,-82.389336847],[-44.08495032499988,-82.40243905999996],[-44.011097785999965,-82.39120859199997],[-43.682138638499936,-82.30030689899999],[-43.353179490999935,-82.20940520599994],[-43.346424933999884,-82.19931405999998],[-43.34422766799989,-82.17962004999993],[-43.33336341099991,-82.16985442499998],[-43.26423092399992,-82.14226653399997],[-43.159779425999886,-82.12468840899994],[-43.147775844999956,-82.11419036299998],[-43.15538489499991,-82.096774998],[-43.170765753999945,-82.07968515399996],[-43.18175208199988,-82.07024504999985],[-43.19859778599991,-82.06210702900002],[-43.25584876199986,-82.047539972],[-43.2345271479999,-82.02971770599993],[-43.19237219999994,-82.00920989399997],[-43.16901607999995,-81.99285247199995],[-43.21515865799994,-81.96445077900002],[-43.22350012899994,-81.95663827900003],[-43.22256425699996,-81.94117603999992],[-43.21349036399994,-81.92522551899991],[-43.190297003999916,-81.89967213299992],[-43.165638800999915,-81.88600025799998],[-43.13194739499991,-81.878513279],[-42.99632727799991,-81.867364191],[-42.959706183999884,-81.86044687299989],[-42.90636145699992,-81.8301734349999],[-42.79979407499991,-81.81861744599998],[-42.517486131999924,-81.754978123],[-42.23517818899995,-81.69133879999991],[-42.278879360999944,-81.67791106599985],[-42.22305253799996,-81.64316171699997],[-42.206532355999876,-81.63640715899994],[-41.98619544199988,-81.61956145599994],[-41.94139563699994,-81.61142343500002],[-41.899891730999855,-81.58359140399988],[-41.9252009759999,-81.56145598799998],[-41.93932044199994,-81.55380624799996],[-41.95612545499995,-81.55087656000003],[-41.922230597999885,-81.53476327899988],[-41.87621008999994,-81.49285247199997],[-41.84679114499994,-81.477146092],[-41.84113521999995,-81.47144947699992],[-41.841297980999904,-81.46314869599993],[-41.84251868399994,-81.4546851539999],[-41.84007727799991,-81.44850025799994],[-41.83169511599993,-81.44475676899998],[-41.82188880099991,-81.442966404],[-41.78319251199986,-81.44158294099994],[-41.77383378799993,-81.43971119599996],[-41.768910285999965,-81.43434010199991],[-41.766468878999916,-81.41806405999998],[-41.76382402299993,-81.41041432099995],[-41.7584529289999,-81.40691497199995],[-41.724598761999914,-81.39959075299994],[-41.58788001199986,-81.34010182099992],[-41.11949622299994,-81.22616952899998],[-41.10496985599991,-81.22039153400002],[-41.062977667999945,-81.18792083099991],[-41.04670162699989,-81.18141041499995],[-40.87950598899991,-81.15797291499995],[-40.91299394399993,-81.16936614399992],[-40.94798743399994,-81.17538827900003],[-40.91563880099994,-81.18987395599999],[-40.56932532499988,-81.15488046699997],[-40.39801998599992,-81.16985442500001],[-40.14126542849988,-81.12070077899998],[-39.88451087099986,-81.07154713299997],[-39.84919186099992,-81.04802825299991],[-39.8384903639999,-81.04355234199994],[-39.69908606699997,-81.02141692499997],[-39.646555141999926,-81.02263762799998],[-39.61998450399997,-81.02044036299999],[-39.54918372299994,-80.99635182099996],[-39.240956183999884,-80.95151132599993],[-38.93272864499991,-80.90667083099993],[-38.822417772999955,-80.90536874800001],[-38.77228756399995,-80.89226653399996],[-38.82005774599989,-80.88616301899997],[-38.813384568999936,-80.87249114399994],[-38.80357825399991,-80.86321379999998],[-38.79112708199989,-80.85955169099992],[-38.77676347599993,-80.86305103999983],[-38.755360480999876,-80.87102629999997],[-38.54662024599989,-80.91350676899985],[-38.392241990999906,-80.91204192499998],[-38.00751705599993,-80.9540341125],[-37.62279212099989,-80.99602629999985],[-37.63780676999991,-81.00514088299994],[-37.65367591099994,-81.00994231599992],[-37.687896287999905,-81.01344166499992],[-37.471058722999885,-81.03134530999988],[-37.37218176999997,-81.06991952899995],[-37.33690344999994,-81.07805754999995],[-37.23029537699992,-81.08928801899995],[-37.21202551999993,-81.08814869599993],[-37.193999803999894,-81.08416106599995],[-37.13980058499993,-81.05950286299995],[-37.123768683999856,-81.056247654],[-36.978505011999886,-81.05242278399999],[-36.90819251199986,-81.03142669099995],[-36.861236131999895,-80.986260675],[-36.816965298999946,-80.975030206],[-36.5907283189999,-81.00497812299997],[-36.59508216099991,-80.97258879999997],[-36.5541072259999,-80.95134856599998],[-36.45787512899994,-80.93466562299994],[-36.033192511999935,-80.92066822699996],[-36.01451575399997,-80.91130950299994],[-35.99754798099988,-80.892022394],[-35.982411261999886,-80.88453541499995],[-35.88243567599994,-80.86785247199991],[-35.82774817599988,-80.8397763],[-35.792591925999915,-80.83098723799985],[-35.78258216099994,-80.82659270599994],[-35.78058834499989,-80.80803801899995],[-35.778065558999884,-80.80152760199987],[-35.77326412699989,-80.80046965899997],[-35.76707923099994,-80.80103932099996],[-35.75999915299988,-80.79957447699991],[-35.72166907499993,-80.78606536299993],[-35.46831214099987,-80.74073658649996],[-35.21495520699992,-80.69540781],[-35.466786261999914,-80.64812590899994],[-35.35838782499991,-80.61532968499995],[-34.887837287749925,-80.61535003024997],[-34.417286750499954,-80.6153703754999],[-33.94673621324998,-80.61539072075],[-33.476185675999886,-80.61541106599992],[-33.17756100199992,-80.55462004999998],[-33.42552649599992,-80.52361419099988],[-33.46475175699993,-80.49765390399998],[-33.41307532499991,-80.49765390399998],[-33.125111456999946,-80.53199635199994],[-33.06973222599996,-80.53045012799998],[-32.93150794199994,-80.541599217],[-32.481007453499956,-80.48841725049996],[-32.03050696499986,-80.43523528399993],[-31.6493424142499,-80.44597747149999],[-31.26817786349994,-80.45671965899986],[-30.887013312749872,-80.4674618464999],[-30.505848761999914,-80.47820403399989],[-30.387847459999904,-80.49830494599993],[-30.35020911399991,-80.4999325499999],[-30.387115037999877,-80.4690080709999],[-30.456857876999948,-80.45818450299991],[-30.58690344999985,-80.45842864399995],[-30.953195767499917,-80.38364023249991],[-31.319488084999907,-80.30885182099996],[-31.27887936099989,-80.29713307099989],[-30.827314148333212,-80.29287417333327],[-30.375748935666618,-80.28861527566664],[-29.924183722999913,-80.28435637799994],[-29.91551673099991,-80.28142669099992],[-29.895741339999883,-80.26913827899996],[-29.884755011999943,-80.26490650799994],[-29.872670050999943,-80.26344166499989],[-29.720936652999853,-80.26197682099982],[-29.79063880099991,-80.233493748],[-29.863840298999975,-80.2154273419999],[-29.816070115999935,-80.18743254999997],[-29.760812954999917,-80.17555103999983],[-29.27110755128567,-80.16790130042851],[-28.781402147571324,-80.16025156085696],[-28.291696743857102,-80.15260182128566],[-27.80199134014276,-80.14495208171418],[-27.31228593642851,-80.13730234214279],[-26.82258053271417,-80.1296526025714],[-26.332875128999913,-80.1220028629999],[-26.305775519999912,-80.11858489399991],[-26.22826087099986,-80.09636809699985],[-26.19513912699992,-80.09148528399996],[-25.709889289749892,-80.08759937925],[-25.224639452499872,-80.08371347449992],[-24.73938961524993,-80.07982756974994],[-24.25413977799991,-80.07594166499996],[-24.20921790299991,-80.06975676899991],[-24.106190558999856,-80.01970794099998],[-24.06859290299985,-80.00994231599994],[-23.68093828066654,-80.0009091126666],[-23.293283658333195,-79.99187590933326],[-22.90562903599988,-79.98284270600001],[-22.82408606699994,-79.963474217],[-22.828846808999856,-79.959161066],[-22.83690344999988,-79.94866301899992],[-22.841542120999918,-79.94426848799995],[-22.766835089999887,-79.92620208099993],[-22.609242316999882,-79.92913176899995],[-22.532460089999944,-79.91708749800003],[-22.93455969933322,-79.8880618903333],[-23.336659308666583,-79.85903628266661],[-23.73875891799989,-79.83001067499998],[-23.765980597999885,-79.8208960919999],[-23.791330532999893,-79.81560637799993],[-23.820952928999958,-79.81715260199996],[-23.87783769399988,-79.82708098799996],[-23.930816209999932,-79.8303361959999],[-24.08975175699993,-79.819594008],[-24.201486782999893,-79.82642994599992],[-24.26203365799998,-79.82236093499995],[-24.303130662999877,-79.80380624799993],[-24.283111131999902,-79.790134373],[-24.274322068999936,-79.78183359199994],[-24.271148240999874,-79.77255624799997],[-24.272328253999888,-79.7560360659999],[-24.27171790299985,-79.74146900799997],[-24.26707923099991,-79.72820403399986],[-24.256214972999913,-79.71510182099998],[-24.729847785999908,-79.78199635199991],[-25.225131124749876,-79.7658355989999],[-25.72041446349993,-79.74967484599992],[-26.215697802249935,-79.73351409299991],[-26.710981140999905,-79.71735333999993],[-27.20626447974996,-79.70119258699992],[-27.701547818499932,-79.68503183399994],[-28.1968311572499,-79.66887108099993],[-28.69211449599987,-79.65271032799994],[-29.187397834749955,-79.63654957499995],[-29.682681173499926,-79.62038882199997],[-30.177964512249897,-79.60422806899996],[-30.67324785099987,-79.58806731599998],[-30.652088995999858,-79.56316497199985],[-30.28184973833328,-79.46879105699992],[-29.91161048066658,-79.37441714199998],[-29.54137122299991,-79.28004322699995],[-29.585316535999937,-79.267673435],[-29.630360480999908,-79.26816171699998],[-29.788929816999914,-79.313083592],[-29.829172329999892,-79.31943124799994],[-29.84923255099994,-79.30730559699995],[-29.84829667899987,-79.29851653399999],[-29.83381100199992,-79.27605559699998],[-30.059803839999912,-79.26279062299994],[-30.524728969999927,-79.28639088299988],[-30.54149329299986,-79.27507903399992],[-30.556223110999948,-79.24822356599992],[-30.44945227799985,-79.21721770599997],[-30.008656378999973,-79.1444638],[-29.94176184799994,-79.11142343499998],[-29.98965410099987,-79.09148528399999],[-30.19562740799989,-79.1044247379999],[-30.18301347599993,-79.09392669099994],[-30.16934160099987,-79.08513762799996],[-30.15465247299988,-79.07838307099993],[-30.13898678299989,-79.07398853999986],[-30.183827277999935,-79.04420338299992],[-30.239165818999904,-79.03427499799993],[-30.297515428999926,-79.03728606599985],[-30.457834438999924,-79.06536223799995],[-30.468088344999927,-79.07000090899996],[-30.484852667999856,-79.08587004999998],[-30.494862433999852,-79.09156666499989],[-30.510731574999877,-79.09612395599993],[-30.573597785999937,-79.10588958099996],[-30.58287512899997,-79.10507577899993],[-30.58844967399989,-79.09905364399995],[-30.59170488199993,-79.08521900799994],[-30.59813391799994,-79.07781340899996],[-30.61119544199991,-79.07496510199982],[-31.052992316999962,-79.10875416459989],[-31.4947891919999,-79.14254322719984],[-31.93658606699992,-79.17633228979982],[-32.37838294199997,-79.21012135239997],[-32.82017981699991,-79.24391041499992],[-33.286162889999865,-79.20864565799995],[-33.75214596299992,-79.17338090099997],[-34.21812903599991,-79.13811614399991],[-34.18610592399992,-79.12420012799993],[-34.16942298099988,-79.12004973799998],[-34.15184485599994,-79.11760833099996],[-34.20075436099992,-79.0910783829999],[-34.25845292899996,-79.07659270599986],[-34.65702877539988,-79.03160572679985],[-35.05560462179991,-78.98661874759988],[-35.45418046819992,-78.94163176839987],[-35.85275631459993,-78.8966447891999],[-36.251332160999965,-78.8516578099999],[-36.344634568999965,-78.81519947699994],[-36.41128495999993,-78.753513279],[-36.41966712099992,-78.7315406229999],[-36.42528235599991,-78.68417734199987],[-36.44375566299993,-78.63404713299987],[-36.44115149599992,-78.61126067499991],[-36.42711341099988,-78.59099700299993],[-36.40404212099992,-78.57089609199997],[-36.3994034499999,-78.56422291499983],[-36.39561926999997,-78.54762135199996],[-36.391835089999944,-78.54021575299988],[-36.32469641799989,-78.4571265599999],[-36.30724036399991,-78.43962981599995],[-36.28331458199994,-78.42392343499998],[-36.27745520699992,-78.41814544099992],[-36.26699785099992,-78.400079034],[-36.260161912999905,-78.3923479149999],[-36.057850714999944,-78.26506926899995],[-36.03844153599994,-78.24651458099986],[-36.032704230999855,-78.23658619599992],[-36.02769934799991,-78.2255184879999],[-36.02179928299998,-78.21591562299993],[-36.0130916009999,-78.21054452899988],[-35.92747962099992,-78.18572356599992],[-35.850209113999874,-78.18466562299996],[-35.8388565749999,-78.1823869769999],[-35.83250891799989,-78.1766903629999],[-35.823841925999886,-78.15569426899995],[-35.817250128999916,-78.15203215899992],[-35.80601966099991,-78.15276458099994],[-35.783314581999974,-78.157647394],[-35.63239498599989,-78.16139088299994],[-35.60602779899989,-78.15862395599999],[-35.58096269399991,-78.15048593499988],[-35.59557044199991,-78.13974374799994],[-35.61095130099994,-78.12127044099991],[-35.62149003799993,-78.10027434699998],[-35.62120520699989,-78.08171965899989],[-35.6073298819999,-78.07284921699994],[-35.582875128999945,-78.06731536299992],[-35.50080318899995,-78.05852629999995],[-35.49054928299992,-78.05071379999995],[-35.47565670499998,-77.98691171699993],[-35.466460740999906,-77.96795012799991],[-35.416086391999954,-77.92457447699995],[-35.38752193899995,-77.89137135199994],[-35.35619055899991,-77.86199309699992],[-35.31285559799994,-77.84441497199998],[-35.056467251999976,-77.82341887799994],[-34.66429602799994,-77.85361093499986],[-34.59788977799991,-77.84596119599993],[-34.5084529289999,-77.85312265399998],[-34.499663865999935,-77.85198333099986],[-34.48949133999988,-77.84587981599994],[-34.47166907499991,-77.82781340899994],[-34.45909583199991,-77.82195403399999],[-34.650298631999874,-77.79387786299999],[-34.645334438999924,-77.76376718499996],[-34.679798956999946,-77.75172291499985],[-34.759266730999855,-77.74773528399996],[-34.74120032499985,-77.73105234199994],[-34.73888098899988,-77.71217213299991],[-34.750396287999905,-77.69605885199994],[-34.77391516799989,-77.68743254999991],[-34.71149654899992,-77.62948984199993],[-34.68830318899998,-77.61858489399995],[-34.60142981699988,-77.60637786299998],[-34.572661912999926,-77.59889088299991],[-34.521555141999954,-77.5756161439999],[-34.47423255099991,-77.54599374799987],[-34.43480383999986,-77.5293921849999],[-34.42625891799992,-77.52361419099985],[-34.41344153599991,-77.50896575299991],[-34.40135657499988,-77.4987932269999],[-34.36994381399995,-77.48259856599994],[-34.32054602799988,-77.46640390399998],[-34.13540605399993,-77.44255950299998],[-34.08560136599996,-77.42994557099983],[-33.975453253999945,-77.41887786299998],[-33.86359615799995,-77.388116144],[-33.839507615999906,-77.378187758],[-33.721099412999905,-77.31096770599994],[-33.696766730999855,-77.30584075299994],[-33.64513098899991,-77.30527109199997],[-33.62193762899997,-77.29892343500003],[-33.59357662699992,-77.28785572699991],[-33.563710089999944,-77.28248463299994],[-33.53343665299985,-77.28232187299997],[-33.504017706999946,-77.28679778399986],[-33.48228919199988,-77.28687916499993],[-33.407053188999896,-77.26702239399991],[-33.34634355399993,-77.25945403399996],[-33.173817511999886,-77.26132577899995],[-33.12043209499993,-77.25310637799986],[-32.95457923099991,-77.18889739399991],[-32.50064042899996,-77.12615325299993],[-32.11945553299998,-77.17066822699984],[-31.915028449999877,-77.15081145600001],[-31.894276495999886,-77.14324309699997],[-31.88182532499988,-77.127536717],[-31.86864173099991,-77.06764088299997],[-31.85142981699991,-77.05095794099992],[-31.749094204999892,-76.99439869599992],[-31.696115688999953,-76.97665781],[-31.361453145666612,-76.9343672286665],[-31.02679060233322,-76.89207664733328],[-30.692128058999884,-76.84978606599998],[-30.661366339999915,-76.85165780999995],[-30.650705532999975,-76.84734465899986],[-30.642567511999857,-76.83473072699996],[-30.635161912999877,-76.82040780999996],[-30.626861131999902,-76.80999114399997],[-30.614003058999884,-76.80437590899999],[-30.567697719999984,-76.79558684699992],[-30.539173956999885,-76.78541432099998],[-30.456288214999883,-76.74553801899991],[-30.40510006399992,-76.7360979149999],[-30.395863410999965,-76.72991301899992],[-30.3849177729999,-76.70680103999996],[-30.37608801999994,-76.69947682099996],[-30.22647050699996,-76.66708749799987],[-30.15347245999996,-76.635349217],[-29.65807044199991,-76.57691822699994],[-29.62657630099989,-76.56943124799987],[-29.557932094999952,-76.54322682099993],[-29.56139075399997,-76.5381812479999],[-29.566761847999942,-76.526055597],[-29.57042395699989,-76.52092864399998],[-29.55699622299988,-76.515232029],[-29.53697669199991,-76.49732838299994],[-29.5267634759999,-76.49138762799991],[-29.51378333199989,-76.48984140399998],[-29.485340949999877,-76.49163176899997],[-29.47154700399997,-76.49016692499991],[-29.411040818999965,-76.47470468499998],[-29.385243292999945,-76.46347421699997],[-29.35826575399989,-76.44378020599994],[-29.339507615999935,-76.439548435],[-29.15733801999988,-76.4253882789999],[-28.859120245999893,-76.35328541499989],[-28.512630445666584,-76.31134748099996],[-28.166140645333257,-76.26940954699992],[-27.819650844999956,-76.2274716129999],[-27.59764563699994,-76.2274716129999],[-27.337635870999918,-76.17205169099992],[-27.220204230999883,-76.16122812299992],[-26.985178188999953,-76.16969166499996],[-26.889800584999932,-76.14885833099999],[-26.859730597999913,-76.135837498],[-26.85411536399991,-76.13250090899989],[-26.85167395699997,-76.12769947699988],[-26.84996497299997,-76.11296965899997],[-26.847401495999858,-76.10816822699991],[-26.822865363999934,-76.09734465899992],[-26.794056769999912,-76.09205494599993],[-26.626535610999948,-76.09514739399991],[-26.595326300999886,-76.08961353999989],[-26.507435675999943,-76.05494557099992],[-26.404611782999922,-76.04094817499995],[-26.3736873039999,-76.03232187299987],[-26.28770911399988,-75.996677342],[-26.231556769999884,-75.98503997199991],[-26.117176886999857,-75.97389088299998],[-25.94815019399988,-75.93303801899985],[-25.542510545749906,-75.89474863099998],[-25.136870897499875,-75.85645924299996],[-24.731231249249902,-75.818169855],[-24.32559160099987,-75.77988046699996],[-24.213734503999945,-75.756442967],[-23.74154619049989,-75.74720631299994],[-23.26935787699989,-75.73796965899989],[-23.244699673999918,-75.72991301899995],[-23.215199347999942,-75.71599700299996],[-23.18846594999991,-75.71209075299997],[-23.16120357999992,-75.71160247199998],[-23.10509192599991,-75.70468515399998],[-22.84707597599993,-75.707614842],[-22.729603644999912,-75.69003671699997],[-22.65074622299997,-75.69068775799984],[-22.622425910999908,-75.68482838299997],[-22.596018032999922,-75.6747372379999],[-22.560943162999934,-75.64381275799997],[-22.533355272999927,-75.64202239399998],[-22.378529425999943,-75.67815520599993],[-22.365630662999934,-75.67620208099989],[-22.351958787999905,-75.66855234199994],[-22.327626105999855,-75.64999765399995],[-22.31554114499994,-75.64519622199995],[-22.301869269999912,-75.64462655999998],[-22.07396399599986,-75.70582447699984],[-22.06932532499991,-75.68499114399985],[-22.05089270699989,-75.68157317499993],[-21.862782355999908,-75.70956796699996],[-21.81163489499994,-75.70867278399996],[-21.761830206999885,-75.69996510199996],[-21.680531378999888,-75.67115650799994],[-21.26964270699989,-75.71428801899995],[-21.173939581999914,-75.70501067499991],[-21.080148891999926,-75.68035247199992],[-20.993763800999915,-75.64478932099995],[-20.947499152999853,-75.63298919099998],[-20.85968990799995,-75.63665129999993],[-20.816721157999893,-75.62607187299997],[-20.77525794199991,-75.60751718499988],[-20.755848761999886,-75.6052385399999],[-20.731190558999884,-75.60898202899993],[-20.68700110599991,-75.62078215899999],[-20.66527258999986,-75.62127044099998],[-20.64415442599994,-75.61207447699992],[-20.72166907499991,-75.57822030999995],[-20.735829230999908,-75.56357187299994],[-20.730295376999887,-75.54159921699993],[-20.705474412999934,-75.52841562299997],[-20.494455532999893,-75.49667734199993],[-20.44562740799989,-75.48137786299996],[-20.39948482999995,-75.472100519],[-20.08356686099995,-75.51079680799995],[-19.767648891999983,-75.549493097],[-19.74254309799988,-75.54615650799997],[-19.694081183999913,-75.52955494599992],[-19.67218990799998,-75.52752044099998],[-19.59243730399993,-75.5399716129999],[-19.388050910999937,-75.54583098799995],[-19.373890753999916,-75.54314544099988],[-19.34727942599997,-75.53240325299996],[-19.338246222999942,-75.5305315079999],[-19.24046790299988,-75.54843515399995],[-19.23778235599991,-75.52516041499993],[-19.23778235599991,-75.50204843499998],[-19.005970831999946,-75.52068450299996],[-18.967152472999942,-75.51490650799991],[-18.935617641999926,-75.49098072699994],[-19.02847245999993,-75.45427825299993],[-18.987131313999924,-75.44280364399998],[-18.6536352199999,-75.48211028399999],[-18.625477667999917,-75.48235442499994],[-18.578724738999938,-75.46746184699997],[-18.550892706999974,-75.4639624979999],[-18.528146938999924,-75.46607838299991],[-18.460519985999895,-75.48023853999992],[-18.40827389199995,-75.48088958099989],[-18.2513728509999,-75.46021900799987],[-18.50649980399993,-75.41570403399996],[-18.531483527999853,-75.40740325299998],[-18.551177537999905,-75.37672291499989],[-18.573068813999924,-75.358493748],[-18.61481686099998,-75.33066171699994],[-18.638661261999857,-75.31959400799991],[-18.663807745999943,-75.31210702900003],[-18.73770097599993,-75.29998137799986],[-18.774973110999923,-75.28004322699987],[-18.796498175999915,-75.27434661299998],[-18.819813605999936,-75.2711727839999],[-18.85204016799989,-75.26311614399988],[-18.873524542999917,-75.24944426899985],[-18.86485755099991,-75.22893645599999],[-18.845570441999882,-75.22486744599992],[-18.78473873599995,-75.230075779],[-18.76097571499986,-75.22844817499997],[-18.74974524599986,-75.22389088299995],[-18.740142381999874,-75.21884531],[-18.721099412999873,-75.20549895599991],[-18.71475175699993,-75.19597747200001],[-18.710275844999984,-75.17131926899991],[-18.70494544199991,-75.16155364399998],[-18.6829320949999,-75.15129973799995],[-18.654164191999882,-75.15016041499983],[-18.60008704299989,-75.15829843499994],[-18.54629472599993,-75.14690520599994],[-18.536610480999883,-75.10328541499996],[-18.535878058999852,-75.05315520599994],[-18.509429490999878,-75.02255624799993],[-18.484730597999885,-75.02141692499991],[-18.46198482999995,-75.02581145599997],[-18.439808722999885,-75.027520441],[-18.41649329299989,-75.01913827900003],[-18.393381313999924,-75.00554778399989],[-18.369618292999917,-74.99480559699997],[-18.318999803999926,-74.97926197699996],[-18.30882727799988,-74.97926197699996],[-18.273671027999907,-74.98805103999993],[-18.25796464799987,-74.98845794099985],[-18.248117641999926,-74.983819269],[-18.226551886999914,-74.96624114399998],[-18.20494544199994,-74.95598723799995],[-18.180490688999893,-74.94833749800001],[-18.13109290299991,-74.93873463299994],[-18.150502081999917,-74.92424895599999],[-18.146148240999935,-74.90374114399985],[-18.128041144999912,-74.88420989399995],[-18.106271938999953,-74.87265390400002],[-18.055897589999915,-74.85881926899985],[-18.033314581999946,-74.84823984199998],[-18.013783331999974,-74.83163827899993],[-17.996978318999965,-74.82268645599999],[-17.915638800999886,-74.80185312300001],[-17.855824347999913,-74.7981096329999],[-17.826486782999922,-74.79143645599993],[-17.80215410099993,-74.77654387799988],[-17.822092251999916,-74.76775481599992],[-17.837757941999907,-74.75701262799998],[-17.850575324999852,-74.74325937299997],[-17.86168372299997,-74.72503020599999],[-17.87173417899993,-74.71396249799987],[-17.884388800999915,-74.7098934879999],[-17.898182745999915,-74.70818450299997],[-17.91185462099986,-74.70387135199991],[-17.918080206999917,-74.69931405999995],[-17.926340298999918,-74.68808359199994],[-17.9310603509999,-74.68287525799987],[-17.959828253999945,-74.6667619769999],[-17.965199347999913,-74.65894947699998],[-17.965687628999888,-74.63787200299997],[-17.954986131999874,-74.63250090899992],[-17.92137610599985,-74.63445403399994],[-17.810373501999948,-74.6169572899999],[-17.708322719999956,-74.58684661299998],[-17.675770636999886,-74.58635833099999],[-17.641102667999917,-74.59465911299988],[-17.623158331999974,-74.58521900799987],[-17.617339647999927,-74.55152760199987],[-17.604807094999927,-74.51921965899993],[-17.566761847999913,-74.51384856599988],[-17.57591712099989,-74.49911874799996],[-17.58731035099987,-74.486423435],[-17.601063605999883,-74.47665780999996],[-17.617339647999927,-74.47047291499992],[-17.609934048999918,-74.46526458100001],[-17.596547003999916,-74.45224374799993],[-17.589222785999908,-74.44687265399998],[-17.612049933999852,-74.40252044099985],[-17.57079016799989,-74.36956145599996],[-17.505482550999915,-74.34783294099998],[-17.456288214999887,-74.33717213299987],[-17.02678382049993,-74.32227955499991],[-16.597279425999886,-74.30738697699987],[-16.261952277499915,-74.34246184699994],[-15.926625128999886,-74.37753671700001],[-15.753081834999932,-74.43043385199996],[-15.63902747299994,-74.43084075299998],[-15.616688605999911,-74.42302825299998],[-15.616566535999935,-74.40195077899988],[-15.610951300999943,-74.40016041499989],[-15.597889777999852,-74.399997654],[-15.583241339999859,-74.39820728999993],[-15.560536261999916,-74.399672133],[-15.195546027999882,-74.36052825299996],[-15.280873175999917,-74.33847421699987],[-15.319569464999885,-74.31910572699994],[-15.3331599599999,-74.28875090899996],[-15.330230272999898,-74.28093840899997],[-15.324696417999887,-74.27548593499994],[-15.309803839999915,-74.26620859199996],[-15.304351365999905,-74.25676848799986],[-15.305409308999856,-74.23121510199998],[-15.302113410999906,-74.22144947699994],[-15.287098761999886,-74.21591562300001],[-15.223296678999958,-74.2129859349999],[-15.208363410999908,-74.20631275799994],[-15.206288214999889,-74.20029062299994],[-15.207671678999873,-74.193942967],[-15.20287024599989,-74.18670012799997],[-15.19322669199991,-74.18132903399993],[-15.152902798999948,-74.16822682099996],[-15.137928839999914,-74.16668059699992],[-15.130726691999882,-74.16375090899999],[-15.122792120999918,-74.15593840899999],[-15.114084438999923,-74.137302342],[-15.10952714799987,-74.13152434699995],[-15.089995897999897,-74.12615325299997],[-15.01927649599986,-74.12932708099994],[-15.003529425999915,-74.12590911299995],[-14.97020423099991,-74.10906340899986],[-14.953724738999938,-74.10328541499999],[-14.82799231699994,-74.08123137799998],[-14.789051886999857,-74.06503671699994],[-14.734608527999853,-74.02157968499999],[-14.713449673999946,-74.00920989399995],[-14.692982550999886,-74.00164153399992],[-14.611683722999885,-73.98626067499997],[-14.575795050999886,-73.98707447699998],[-14.525054490999935,-73.97568124799999],[-14.517730272999927,-73.97136809699992],[-14.517160610999952,-73.96282317499997],[-14.522206183999911,-73.94011809699995],[-14.518218553999928,-73.93401458099996],[-14.433013475999928,-73.908298435],[-14.396717902999853,-73.8884416649999],[-14.361805792999915,-73.85767994599993],[-14.416330532999893,-73.84197356599995],[-14.595773891999954,-73.84270598799998],[-14.627186652999908,-73.83912525799992],[-14.653675910999878,-73.82870859200003],[-14.676625128999946,-73.81178150799994],[-14.69713294199991,-73.78964609199997],[-14.717640753999888,-73.78053150799997],[-14.745716925999885,-73.78460051899985],[-14.796498175999915,-73.8029110659999],[-15.241383429999871,-73.87570566199994],[-15.686268683999913,-73.94850025799991],[-16.1759333979999,-73.93922291499996],[-16.19912675699993,-73.9312476539999],[-16.243031378999945,-73.90178801899992],[-16.262440558999884,-73.89478932099993],[-16.46214758999986,-73.89462655999998],[-16.51699785099987,-73.88518645599996],[-16.55443274599989,-73.86484140399988],[-16.512277798999946,-73.85702890399998],[-16.43464107999992,-73.87639739399998],[-16.391957160999908,-73.87932708100001],[-16.196400519999937,-73.83407968499998],[-15.909820115999876,-73.81698984199994],[-15.865956183999913,-73.80820077899996],[-15.825754360999923,-73.7886695289999],[-15.875477667999917,-73.76336028399996],[-15.929676886999884,-73.75017669099991],[-16.330799933999856,-73.70924244599998],[-16.376291469999927,-73.7199846329999],[-16.399403449999877,-73.72242603999993],[-16.494699673999918,-73.71379973799992],[-16.558990037999934,-73.69654713299991],[-16.583241339999915,-73.6862932269999],[-16.598255988999938,-73.66773853999989],[-16.6028539699999,-73.633558852],[-16.59862219999988,-73.60149505],[-16.58771725199989,-73.5735002579999],[-16.57022050699993,-73.54941171699997],[-16.546742316999882,-73.52898528399997],[-16.562163865999906,-73.50253671699998],[-16.56012936099998,-73.48406340899999],[-16.54356848899991,-73.4686825499999],[-16.438465949999852,-73.41326262799988],[-15.976185675999915,-73.303806248],[-15.957753058999884,-73.29013437299997],[-15.961659308999886,-73.26580169099991],[-15.980458136999914,-73.23951588299998],[-15.993072068999908,-73.2147762999999],[-15.978871222999883,-73.19459400799997],[-15.897694464999887,-73.1499976539999],[-15.869699673999946,-73.13909270599991],[-15.640126105999883,-73.10182057099986],[-15.566558397999897,-73.07927825299996],[-15.541411912999932,-73.07683684699991],[-15.42674719999988,-73.09107838299994],[-15.256906704999976,-73.07878997199998],[-15.24205481699991,-73.07219817499991],[-15.21540279899989,-73.05315520599991],[-15.202992316999937,-73.04697030999995],[-15.179921027999882,-73.044122003],[-14.984038865999905,-73.05250416499996],[-14.883208787999964,-73.042413019],[-14.612416144999912,-73.08220794099998],[-14.509266730999883,-73.12037525799987],[-14.457875128999886,-73.15894947699994],[-14.441477016999897,-73.16472747199998],[-14.428089972999883,-73.16057708099996],[-14.380970831999889,-73.1314429669999],[-14.36676998599995,-73.130954685],[-14.34015865799992,-73.14544036299995],[-14.32274329299986,-73.14128997199992],[-14.295033331999889,-73.12851327899998],[-14.262806769999939,-73.12070077899998],[-14.229807094999956,-73.11760833099997],[-14.199330206999917,-73.11931731599991],[-14.131703253999888,-73.130954685],[-14.097482876999889,-73.13298919099985],[-14.047596808999856,-73.12476978999993],[-14.016468878999945,-73.12957122199992],[-13.998280402999853,-73.12818775799994],[-13.936390753999888,-73.11370208099999],[-13.916818813999894,-73.1058895809999],[-13.94131425699993,-73.09319426899995],[-13.989979620999861,-73.077813409],[-14.01463782499988,-73.0663388],[-13.980865037999877,-73.04306405999995],[-13.959787563999953,-73.01604583099999],[-13.936390753999888,-72.99431731599992],[-13.895253058999884,-72.98674895599989],[-14.02977454299986,-72.9084611959999],[-14.172963019999912,-72.84693775799994],[-14.206939256999874,-72.83660247199991],[-14.222645636999914,-72.82830169099995],[-14.227162238999881,-72.81633879999993],[-14.226673956999889,-72.79762135199995],[-14.235829230999883,-72.785739842],[-14.251535610999923,-72.77743906],[-14.307484503999888,-72.75872161299995],[-14.3861384759999,-72.74228280999994],[-14.418324347999944,-72.72380950299993],[-14.390736456999916,-72.7131486959999],[-14.364816860999921,-72.70891692499988],[-14.221099412999877,-72.71168385199994],[-14.014027472999913,-72.73870208099999],[-13.899566209999904,-72.77109140399998],[-13.790272589999887,-72.78671640399998],[-13.653065558999856,-72.79168059699992],[-13.630360480999883,-72.79892343499995],[-13.576527472999942,-72.8259416649999],[-13.519398566999882,-72.84539153399997],[-13.491037563999924,-72.84628671699998],[-13.437896287999932,-72.83212655999996],[-13.379383917999888,-72.83611419099985],[-13.34947669199991,-72.83074309699998],[-13.288970506999902,-72.81023528399993],[-13.264027472999885,-72.80575937299987],[-13.181263800999913,-72.80388762799998],[-13.15477454299986,-72.79949309699992],[-13.128488735999923,-72.78923919099998],[-13.05500240799995,-72.74976978999993],[-13.027984178999901,-72.74041106599998],[-13.000396287999877,-72.73447030999996],[-12.973784959999932,-72.732598566],[-12.962757941999882,-72.72893645599986],[-12.945423956999917,-72.71111419099988],[-12.934925910999937,-72.70623137799997],[-12.91592363199993,-72.70378997199995],[-12.902333136999886,-72.70037200299996],[-12.890533006999902,-72.69353606599985],[-12.877105272999927,-72.68059661299993],[-12.869252081999917,-72.668633722],[-12.866444464999887,-72.65984465899993],[-12.861195441999909,-72.653497003],[-12.578968878999916,-72.58464934699994],[-12.537464972999913,-72.58513762799993],[-12.517160610999923,-72.5831031229999],[-12.456044074999852,-72.559665623],[-12.435047980999911,-72.5549455709999],[-12.411732550999915,-72.55527109199994],[-12.341297980999911,-72.56357187299999],[-12.321156378999888,-72.56178150799984],[-12.244374152999853,-72.540704034],[-11.900441047499896,-72.49216073999995],[-11.55650794199994,-72.44361744599995],[-11.505238410999908,-72.44638437300003],[-11.464019334999932,-72.44150155999996],[-11.387521938999924,-72.41806405999998],[-11.37022864499994,-72.40911223799995],[-11.3565567699999,-72.39641692499998],[-11.34788977799991,-72.38014088299997],[-11.335316535999908,-72.34449635199991],[-11.325347459999932,-72.32789478999996],[-11.338286912999934,-72.32805754999993],[-11.380360480999911,-72.3212216129999],[-11.4076228509999,-72.3052710919999],[-11.409738735999893,-72.30193450299996],[-11.377756313999896,-72.29412200299997],[-11.368275519999884,-72.28948333099986],[-11.360340949999852,-72.281426691],[-11.347767706999946,-72.26148853999993],[-11.341420050999915,-72.25652434699988],[-11.299224412999877,-72.24675872199991],[-11.286610480999883,-72.23967864399988],[-11.28156490799995,-72.23219166499989],[-11.274525519999884,-72.21868254999993],[-11.270375128999945,-72.2063127579999],[-11.273426886999857,-72.20224374800001],[-11.249745245999918,-72.19068775799991],[-11.23997962099989,-72.17652760199988],[-11.24697831899988,-72.16545989399995],[-11.273793097999942,-72.16375090899993],[-11.358998175999943,-72.1773414039999],[-11.382964647999898,-72.1721330709999],[-11.361317511999914,-72.16269296699998],[-11.253285285999908,-72.13884856599991],[-11.245716925999943,-72.1340471329999],[-11.245472785999908,-72.12639739399998],[-11.252349412999932,-72.12135182099986],[-11.272043423999946,-72.11419036299992],[-11.250355597999883,-72.10076262799993],[-11.149891730999855,-72.08171965899993],[-11.124745245999861,-72.06812916499996],[-11.113880988999881,-72.0645484349999],[-11.032297329999949,-72.048923435],[-11.05260169199994,-72.03630950299993],[-11.073841925999943,-72.03573984199997],[-11.095814581999946,-72.03875090899996],[-11.117909308999856,-72.03777434699997],[-11.109201626999946,-72.02556731599992],[-11.09593665299991,-72.01864999800001],[-11.036203579999947,-72.00497812299997],[-10.981190558999884,-71.9807268209999],[-10.974110480999911,-71.973402602],[-10.974720831999889,-71.97128671699997],[-10.976551886999857,-71.96705494599996],[-10.978098110999895,-71.96200937299992],[-10.977202928999901,-71.95680103999993],[-10.974354620999861,-71.95354583099999],[-10.936390753999945,-71.922784113],[-10.923817511999857,-71.90992603999989],[-10.91783606699994,-71.89576588299987],[-10.922922329999947,-71.87867603999983],[-10.944162563999953,-71.86541106599998],[-10.93919837099989,-71.85133228999995],[-10.919585740999933,-71.83180103999996],[-10.847157355999883,-71.78085702899995],[-10.888783331999946,-71.75416432099993],[-10.94908606699991,-71.74285247199995],[-11.23825029199989,-71.74907805799991],[-11.527414516999954,-71.75530364399995],[-11.753529425999943,-71.70566171699996],[-11.987904425999885,-71.67945728999983],[-12.150298631999902,-71.63640715899989],[-12.17516028599988,-71.62395598799996],[-12.330922003999916,-71.49480559699995],[-12.367665167999917,-71.45077890399995],[-12.380726691999882,-71.39544036299993],[-12.349232550999885,-71.35637786299998],[-12.295480923999918,-71.32935963299994],[-12.208566860999921,-71.30266692499993],[-12.06432044199991,-71.29705169099992],[-11.879505988999881,-71.260349217],[-11.806507941999882,-71.259860935],[-11.660145636999856,-71.27646249799997],[-11.698068813999953,-71.30494557099999],[-11.716786261999856,-71.32870859199988],[-11.712880011999857,-71.35523853999986],[-11.682606574999852,-71.39226653399989],[-11.651112433999856,-71.40976327899993],[-11.609486456999889,-71.41692473799998],[-11.370594855999855,-71.42343515399988],[-11.29580644399988,-71.43743254999993],[-11.218129035999937,-71.46648528399999],[-11.072092251999948,-71.549004816],[-11.036610480999855,-71.56121184699998],[-10.960682745999918,-71.57634856599998],[-10.83999589799987,-71.5848934879999],[-10.758127407999893,-71.57740650799994],[-10.678089972999913,-71.55828215899996],[-10.600331183999913,-71.52703215899999],[-10.62096106699994,-71.500583592],[-10.64159094999988,-71.48015715899994],[-10.72118079299986,-71.42742278399986],[-10.733143683999884,-71.40960051899988],[-10.72765051999994,-71.38909270600001],[-10.703724738999881,-71.36223723799992],[-10.653472459999904,-71.32496510199987],[-10.595611131999902,-71.29729583099996],[-10.348337368999921,-71.23919036249995],[-10.101063605999855,-71.18108489399995],[-10.036854620999918,-71.15545012799998],[-9.98875891799986,-71.11931731599995],[-10.033070441999882,-71.08587004999998],[-10.094105597999885,-71.0642229149999],[-10.21540279899989,-71.04021575299994],[-10.351185675999886,-71.03232187299997],[-10.425160285999937,-71.0192196589999],[-10.450062628999886,-70.99098072699995],[-10.430816209999932,-70.974704685],[-10.394398566999882,-70.96111419099995],[-10.266835089999885,-70.93141041499993],[-10.069650844999925,-70.91187916499996],[-10.002268032999922,-70.91969166499986],[-9.943104620999918,-70.944512628],[-9.981312628999888,-70.98788827899988],[-9.975819464999857,-71.02857838299992],[-9.939523891999926,-71.06243255000001],[-9.885243292999917,-71.08416106599998],[-9.833607550999941,-71.09286874799997],[-9.45164954299986,-71.0992164039999],[-9.105051235999952,-71.18531666499997],[-9.054514126999948,-71.20671965899992],[-9.011219855999883,-71.23691171699994],[-8.991444464999859,-71.25904713299991],[-8.987945115999878,-71.27654387799996],[-9.00047766799986,-71.29241301899997],[-9.029611782999922,-71.30974700299988],[-9.066029425999886,-71.32252369599983],[-9.129953579999892,-71.35995859199987],[-9.14004472599987,-71.36777109199994],[-9.142933722999883,-71.38079192499994],[-9.140451626999948,-71.39373137799986],[-9.134510870999861,-71.40569426899988],[-9.12682044199991,-71.41562265399998],[-9.113921678999901,-71.42522551899995],[-9.101633266999954,-71.42693450299996],[-9.070708787999905,-71.41920338299994],[-9.046131964999887,-71.41822682099996],[-8.994740363999881,-71.42791106599994],[-8.968861456999889,-71.42831796699993],[-8.911284959999904,-71.42131926899995],[-8.853423631999902,-71.42066822699991],[-8.824208136999857,-71.42750416499993],[-8.750721808999856,-71.47356536299988],[-8.829823370999861,-71.53329843499995],[-8.76740475199989,-71.55242278400002],[-8.735259568999936,-71.56658294099985],[-8.71544348899991,-71.58570728999983],[-8.687123175999885,-71.64006926899994],[-8.684885219999897,-71.65618254999991],[-8.694488084999875,-71.66887786299988],[-8.746490037999934,-71.70077890399998],[-8.71857662699989,-71.70484791499995],[-8.693999803999901,-71.70501067499991],[-8.642201300999886,-71.69947682099989],[-8.614125128999888,-71.69988372199998],[-8.566761847999942,-71.71249765399996],[-8.428618943999908,-71.73040129999993],[-8.409738735999952,-71.72991301899985],[-8.392893032999948,-71.72380950299996],[-8.382476365999878,-71.70916106599995],[-8.38272050699993,-71.70387135199996],[-8.388010219999899,-71.69605885199996],[-8.38849850199989,-71.692071222],[-8.382313605999911,-71.68238697699994],[-8.37205969999988,-71.67595794099992],[-8.350331183999911,-71.666110935],[-8.310129360999923,-71.63469817499987],[-8.29523678299995,-71.62615325299996],[-8.226673956999946,-71.60466887799993],[-8.182850714999887,-71.583103123],[-8.16258704299986,-71.57659270599993],[-8.141835089999887,-71.57594166499997],[-8.117990688999896,-71.58147551899998],[-8.089182094999956,-71.594414972],[-8.072255011999886,-71.61109791499993],[-8.0716853509999,-71.63201262799998],[-8.091175910999908,-71.65764739399997],[-7.816761847999913,-71.67197030999995],[-7.788563605999911,-71.66692473799992],[-7.76382402299987,-71.65545012799988],[-7.739369269999911,-71.64739348799985],[-7.708851691999882,-71.64788176899992],[-7.65135657499988,-71.65789153399992],[-7.629221157999893,-71.65195077899996],[-7.603911912999876,-71.63396575299986],[-7.588693813999896,-71.61199309699992],[-7.596587693999936,-71.5940080709999],[-7.62242591099988,-71.58375416499996],[-7.709787563999953,-71.56292083099999],[-7.733998175999943,-71.55144622199985],[-7.758371548999919,-71.53590260199994],[-7.775786912999876,-71.51669687299997],[-7.779164191999912,-71.49407317499993],[-7.773833787999933,-71.44687265399995],[-7.765207485999923,-71.42839934699992],[-7.635406053999872,-71.35556405999998],[-7.588531053999929,-71.34514739399998],[-7.568511522999869,-71.33464934699992],[-7.563628709999875,-71.31096770599999],[-7.559315558999884,-71.20134856599996],[-7.56419837099986,-71.15056731599991],[-7.594593878999916,-71.11370208099986],[-7.68862871,-71.06316497199984],[-7.804269985999894,-71.02939218499995],[-7.853423631999902,-71.00603606599996],[-7.875640428999873,-70.98992278399999],[-7.892486131999874,-70.97063567499994],[-7.941151495999918,-70.89373137799996],[-7.961903449999909,-70.873142185],[-7.912220831999917,-70.84368254999993],[-7.85578365799995,-70.82586028399996],[-7.492054816999939,-70.78476327899998],[-7.284291144999912,-70.79119231599998],[-6.951283332499941,-70.85759856599992],[-6.618275519999941,-70.92400481599995],[-6.604318813999896,-70.914239191],[-6.572092251999948,-70.83757903399986],[-6.553334113999881,-70.81503671699997],[-6.429758266999896,-70.737888279],[-6.375314907999893,-70.71965911299985],[-6.317860480999883,-70.70794036299995],[-6.013579881999902,-70.67978280999988],[-5.675282355999883,-70.73267994599993],[-5.655629035999937,-70.74325937299997],[-5.57469641799986,-70.80380624799987],[-5.564361131999874,-70.82048919099991],[-5.566639777999853,-70.84172942499998],[-5.577504035999908,-70.8615861959999],[-5.592884894999941,-70.87428150799987],[-5.615712042999888,-70.88469817499985],[-5.630360480999883,-70.89421965899994],[-5.686919725999899,-70.95794036299999],[-5.698557094999899,-70.97568124799999],[-5.712147589999859,-71.01685963299985],[-5.721791144999912,-71.02996184699992],[-5.735707160999908,-71.03883228999997],[-6.019886847999942,-71.10898202899995],[-6.043690558999941,-71.1182593729999],[-6.077300584999961,-71.14674244599989],[-6.099720831999946,-71.15683359199997],[-6.063140428999929,-71.17457447699996],[-6.045399542999944,-71.18816497199992],[-6.042836066999939,-71.20159270599991],[-6.057972785999937,-71.21917083099994],[-6.074533657999893,-71.23137786299992],[-6.193918423999945,-71.29143645600001],[-6.236439581999917,-71.30592213299997],[-6.281117316999882,-71.31064218499986],[-6.179554816999882,-71.35816822699996],[-6.14976966099988,-71.36630624799999],[-6.123402472999885,-71.36296965899996],[-6.068186001999948,-71.34734465899989],[-5.892933722999913,-71.3610979149999],[-5.82005774599989,-71.34107838299984],[-5.592518683999856,-71.35312265399995],[-5.579904751999947,-71.35214609199997],[-5.539662238999881,-71.33977629999993],[-5.527455206999888,-71.34107838299984],[-5.496083136999857,-71.34872812299996],[-5.411610480999911,-71.33993905999998],[-5.298410610999894,-71.35515715899996],[-5.270619269999941,-71.35418059699998],[-5.221058722999913,-71.33489348799995],[-5.193837042999917,-71.33082447699991],[-4.795969204999892,-71.34490325299986],[-4.709136522999869,-71.33473072699991],[-4.599598761999914,-71.34498463299984],[-4.387277798999946,-71.32293059699991],[-4.345448370999861,-71.32610442499998],[-4.173695441999882,-71.37004973799992],[-4.169667120999918,-71.34514739399998],[-4.140370245999918,-71.34221770599996],[-4.075917120999918,-71.35767994599989],[-3.937570766999926,-71.36744557099992],[-3.972320115999906,-71.342868748],[-3.990386522999926,-71.31560637799991],[-3.981922980999883,-71.29599374799987],[-3.937163865999934,-71.29412200299998],[-3.888295050999943,-71.30657317500001],[-3.754546678999901,-71.36516692499995],[-3.729481574999909,-71.37281666499989],[-3.7181697259999,-71.37859465899986],[-3.70958411399991,-71.38762786299995],[-3.706450975999928,-71.39918385199998],[-3.70958411399991,-71.40927499799994],[-3.714019334999876,-71.419366144],[-3.714751756999902,-71.43075937299997],[-3.712228969999899,-71.45338307099992],[-3.707102016999954,-71.45712655999988],[-3.645334438999952,-71.46412525799994],[-3.621896938999896,-71.47144947699987],[-3.591297980999883,-71.49822356599995],[-3.571603969999927,-71.50994231599995],[-3.550689256999874,-71.51539478999997],[-3.492176886999914,-71.5227190079999],[-3.470936652999939,-71.52117278399986],[-3.495961066999939,-71.48479583099996],[-3.499094204999921,-71.46851978999992],[-3.48940996,-71.4509416649999],[-3.468983527999882,-71.43767669099988],[-3.446278449999852,-71.43482838299994],[-3.399891730999883,-71.4436174459999],[-3.375355597999941,-71.44557057099995],[-3.352650519999912,-71.43962981599992],[-3.337798631999931,-71.42522551899995],[-3.334584113999881,-71.32488372199988],[-3.32258053299995,-71.30242278399997],[-3.308990037999905,-71.29021575299998],[-3.290150519999884,-71.28720468499999],[-3.263335740999878,-71.29225025799983],[-3.239247199999852,-71.30152760199998],[-3.171498175999915,-71.34319426899985],[-3.132801886999885,-71.35662200299993],[-2.991200324999852,-71.3610979149999],[-2.998402472999885,-71.33619557099996],[-3.012359178999873,-71.31519947699992],[-3.016102667999888,-71.2971330709999],[-2.992298956999889,-71.28093840899986],[-2.966297980999911,-71.27369557099983],[-2.940297003999916,-71.26978932099993],[-2.887074347999942,-71.26799895599994],[-2.778065558999884,-71.28476327899996],[-2.727650519999941,-71.28394947699995],[-2.677479620999861,-71.25741952899998],[-2.650502081999889,-71.28818124799997],[-2.485259568999936,-71.36939869599996],[-2.436390753999945,-71.382256769],[-2.336822068999879,-71.39006926899998],[-2.273426886999857,-71.37737395599993],[-2.252552863999881,-71.3775367169999],[-2.236724412999962,-71.38730234200003],[-2.21458899599989,-71.42693450299996],[-2.196603969999927,-71.44605885199992],[-2.154367641999926,-71.47323984199994],[-2.131255662999877,-71.48259856599998],[-2.106800910999908,-71.485446873],[-2.087554490999878,-71.48267994599996],[-2.039540167999888,-71.46795012799994],[-2.020985480999883,-71.45794036299998],[-1.986683722999913,-71.42522551899995],[-1.972035285999908,-71.42253997199988],[-1.926340298999889,-71.44060637799997],[-1.903391079999892,-71.44638437299994],[-1.880034959999904,-71.44898853999995],[-1.861073370999889,-71.44695403399993],[-1.785267706999917,-71.41985442499998],[-1.761830206999946,-71.41472747199998],[-1.736236131999874,-71.41545989399992],[-1.615589972999913,-71.44150155999998],[-1.595570441999939,-71.43889739399998],[-1.577788865999935,-71.4279924459999],[-1.560170050999915,-71.42644622199988],[-1.489247199999852,-71.4587541649999],[-1.467437303999901,-71.45842864399988],[-1.395375128999945,-71.44345468499992],[-1.372059699999852,-71.43385182099995],[-1.328724738999881,-71.40862395599999],[-1.306263800999886,-71.40276458099996],[-1.324818488999881,-71.3593075499999],[-1.32453365799995,-71.34002044099988],[-1.31069902299987,-71.31959400799991],[-1.272450324999909,-71.29176197699994],[-1.230376756999931,-71.26799895599994],[-1.186024542999917,-71.25546640399995],[-1.137562628999916,-71.25530364399998],[-0.953968878999916,-71.30046965899992],[-0.912668423999889,-71.31861744599993],[-0.812814907999893,-71.3775367169999],[-0.804269985999952,-71.39478932099989],[-0.806019660999937,-71.42156340899999],[-0.817697719999956,-71.43645598799995],[-0.838002081999946,-71.4441057269999],[-0.865549282999893,-71.44898853999995],[-0.845285610999952,-71.50318775799991],[-0.870757615999878,-71.5451799459999],[-0.915150519999912,-71.582777602],[-0.952137824999852,-71.62363046699994],[-0.899403449999852,-71.63339609199997],[-0.876088019999941,-71.64055754999991],[-0.854603644999912,-71.65650807099993],[-0.836089647999898,-71.66334400799994],[-0.78189042899993,-71.65593840899996],[-0.755970831999946,-71.65650807099993],[-0.621937628999945,-71.68531666499996],[-0.599273240999906,-71.69443124799994],[-0.580922003999945,-71.71013762799993],[-0.560943162999877,-71.73674895599996],[-0.518462693999908,-71.76523202899988],[-0.469309048999889,-71.75400155999988],[-0.226877407999893,-71.62220631299996],[0.015554233000103,-71.49041106599988],[0.035004102000102,-71.4738908829999],[0.059174024000129,-71.43718840899999],[0.078745964000092,-71.42017994599983],[0.23218834700009,-71.3498674459999],[0.291758660000085,-71.33619557099996],[0.410817905000044,-71.32659270599989],[0.43775475400011,-71.31975676899994],[0.517832879000082,-71.27304452899998],[0.547129754000082,-71.26181405999988],[0.635508660000141,-71.25554778399993],[0.650889519000088,-71.25042083099991],[0.691579623000081,-71.22421640399996],[0.710948113000086,-71.21819426899997],[0.796397332000112,-71.21282317499991],[0.933767123000109,-71.17937590899986],[1.192841016500097,-71.14881764099992],[1.451914910000113,-71.1182593729999],[1.459157748000024,-71.11500416499986],[1.472666863000114,-71.09783294099992],[1.484141472000147,-71.09221770599993],[1.531911655000101,-71.090997003],[1.543223504000082,-71.0861955709999],[1.567393425000091,-71.06951262799988],[1.588715040000039,-71.06519947699996],[1.611338738000114,-71.06519947699996],[1.638845248000052,-71.060723566],[1.726735873000109,-71.03337981599985],[1.868825717000021,-71.01816171699987],[1.94857832100007,-70.99114348799992],[2.150157097000118,-70.97828541499999],[2.164724155000044,-70.97380950299991],[2.18506920700014,-70.95916106599992],[2.198741082000083,-70.95435963299984],[2.458343946000099,-70.92034270599999],[2.499196811000047,-70.90439218499998],[2.51970462300008,-70.90056731599988],[2.530121290000096,-70.90211353999982],[2.551524285000113,-70.90960051899998],[2.562022332000111,-70.911228123],[2.574392123000052,-70.90935637799994],[2.611582879000138,-70.89690520599993],[2.632578972000061,-70.89348723799992],[2.691254102000102,-70.89625416499996],[2.714040561000018,-70.89462655999994],[2.75538170700014,-70.8853492169999],[2.823252800000148,-70.89055754999998],[2.978282097000061,-70.88420989399994],[3.074066602000102,-70.89462655999994],[3.187998894000117,-70.87249114399988],[3.203623894000117,-70.86532968500002],[3.222666863000114,-70.85955169099996],[3.260915561000076,-70.86646900799997],[3.281586134000065,-70.86565520599996],[3.32715905000012,-70.85654062299987],[3.574717644000145,-70.85214609199997],[3.622731967000021,-70.84107838299992],[3.692230665000039,-70.83733489399991],[3.775645379000139,-70.81601327899993],[3.821543816000115,-70.817478123],[3.808278842000078,-70.80201588299997],[3.827891472000147,-70.798435154],[3.847178582000083,-70.79851653399999],[3.88624108200014,-70.80339934699995],[3.907399936000047,-70.80380624799987],[4.01075280000012,-70.78289153399999],[4.096527540000068,-70.7751604149999],[4.223968946000098,-70.783786717],[4.271983269000088,-70.77605559699998],[4.319021030000101,-70.76246510199992],[4.336436394000144,-70.75367603999996],[4.341970248000081,-70.74871184699992],[4.351084832000083,-70.73772551899995],[4.357595248000052,-70.73381926899995],[4.37289472700013,-70.73219166499993],[4.389333530000016,-70.732354425],[4.399750196000099,-70.72747161299993],[4.397634311000104,-70.71087004999987],[4.414073113000085,-70.7124976539999],[4.446787957000112,-70.72144947699984],[4.463389519000088,-70.72405364399992],[4.475271030000044,-70.72372812299989],[4.507823113000086,-70.71795012799993],[4.624766472000117,-70.72079843499998],[4.853037957000112,-70.68466562299994],[4.909027540000039,-70.682224217],[4.948578321000099,-70.688734633],[4.962901238000086,-70.68865325300001],[4.976573113000114,-70.68425872199992],[4.991872592000078,-70.67538827899998],[5.000824415000096,-70.66383228999996],[5.0026147800001,-70.65227629999993],[5.006114129000082,-70.64267343499995],[5.020762566000087,-70.63697682099996],[5.073741082000112,-70.63372161299992],[5.209727410000141,-70.65016041499993],[5.217539910000141,-70.6477190079999],[5.224457227000045,-70.64421965899999],[5.234873894000145,-70.64234791499993],[5.314707879000053,-70.64967213299994],[5.341970248000052,-70.64918385199995],[5.417328321000099,-70.63079192499991],[5.441742384000065,-70.62981536299993],[5.587738477000072,-70.64918385199995],[5.61296634200005,-70.640232029],[5.63648522200009,-70.62639739399992],[5.667165561000104,-70.6140276019999],[5.679860873000052,-70.61296965899993],[5.706065300000091,-70.61614348799999],[5.735850457000112,-70.61305103999992],[5.746592644000116,-70.618259373],[5.756521030000015,-70.62574635199996],[5.770762566000116,-70.63201262799991],[5.801117384000094,-70.63355885199996],[5.974457227000073,-70.60995859199993],[5.999278191000143,-70.61305103999992],[6.045664910000113,-70.62574635199996],[6.060394727000102,-70.62525807099989],[6.101328972000117,-70.60979583099996],[6.113291863000142,-70.60865650799983],[6.183360222000147,-70.61728280999994],[6.203135613000142,-70.62704843499988],[6.198985222000118,-70.621677342],[6.188324415000096,-70.60279713299998],[6.224131707000112,-70.60198333099997],[6.297373894000144,-70.62004973799998],[6.334971550000148,-70.61549244599995],[6.340993686000076,-70.61060963299997],[6.351247592000078,-70.59612395599993],[6.357269727000102,-70.591078383],[6.364919467000107,-70.58904387799996],[6.382009311000076,-70.588474217],[6.42904707100007,-70.58123137799988],[6.448008660000085,-70.58245208099999],[6.468516472000147,-70.587579034],[6.483897332000082,-70.58831145599993],[6.51905358200014,-70.57781340899996],[6.536387566000144,-70.57529062299993],[6.559092644000088,-70.57789478999986],[6.625661655000073,-70.59905364399995],[6.645681186000047,-70.60214609199994],[6.705332879000139,-70.59368254999998],[6.724375847000118,-70.59368254999998],[6.761729363000086,-70.5988095029999],[6.780609571000126,-70.59937916499997],[6.785655144000145,-70.59368254999998],[6.792735222000118,-70.58912525799994],[6.807871941000116,-70.58310312299993],[6.795909050000091,-70.55787525799997],[6.810231967000077,-70.53980885199996],[6.837657097000118,-70.53378671699996],[6.865082227000073,-70.54412200299994],[6.884532097000061,-70.55828215899999],[6.898773634000064,-70.56047942499988],[6.968028191000143,-70.52629973799998],[6.985199415000068,-70.52255624799994],[7.00180097700013,-70.524021092],[7.109629754000081,-70.54680754999985],[7.145274285000113,-70.56096770599996],[7.153168165000096,-70.56072356599992],[7.159434441000144,-70.55413176899995],[7.165293816000086,-70.54631926899995],[7.172211134000094,-70.54192473799988],[7.181813998000081,-70.54192473799988],[7.228526238000142,-70.54705169099996],[7.242442254000139,-70.54412200299994],[7.250498894000088,-70.53460051899997],[7.250254754000139,-70.51620859199993],[7.26303144600007,-70.52141692499993],[7.335459832000112,-70.52646249799994],[7.348643425000147,-70.523614191],[7.373789910000141,-70.51360442499993],[7.386892123000109,-70.51034921699997],[7.403005405000073,-70.51034921699997],[7.448903842000079,-70.52174244599993],[7.514414910000114,-70.52092864399992],[7.55372155000009,-70.52849700299988],[7.567393425000148,-70.52434661299985],[7.578868035000085,-70.51295338299997],[7.592784050000148,-70.49602629999998],[7.611827019000145,-70.48601653399992],[7.628672722000147,-70.49570077899986],[7.646332227000074,-70.51100025799984],[7.668304884000094,-70.51816171699997],[7.666188998000081,-70.48788827899998],[7.656993035000113,-70.47356536299998],[7.475108269000088,-70.37688567499995],[7.455332879000082,-70.35865650799997],[7.43921959700009,-70.33749765399998],[7.427500847000118,-70.31218840899993],[7.415049675000091,-70.25359465899997],[7.41423587300008,-70.22144947699994],[7.42351321700005,-70.2043596329999],[7.479014519000089,-70.18987395599986],[7.835297071000127,-70.163669529],[7.893565300000148,-70.17742278399993],[7.91700280000012,-70.19402434699998],[7.925140821000042,-70.21705494599986],[7.921885613000114,-70.24391041499993],[7.895762566000143,-70.30999114399995],[7.888926629000138,-70.31943124799987],[7.877289259000122,-70.32537200299998],[7.846446160000141,-70.33342864399992],[7.836924675000148,-70.33993906],[7.834157748000109,-70.36614348799995],[7.844981316000086,-70.39820728999993],[7.862478061000047,-70.42815520599999],[7.879079623000109,-70.44768645599987],[7.904795769000145,-70.4644507789999],[7.930430535000113,-70.47234465899997],[8.105235222000061,-70.47527434699998],[8.225271030000101,-70.49439869599996],[8.254730665000068,-70.49260833099999],[8.302744988000143,-70.47405364399998],[8.328786655000044,-70.46786874799999],[8.354991082000083,-70.46892669099996],[8.44312584700009,-70.48235442499995],[8.549652540000125,-70.47234465899997],[8.654551629000139,-70.44801197699991],[8.666026238000086,-70.441989842],[8.683441602000071,-70.42522551899998],[8.693858269000145,-70.42107512799994],[8.753672722000118,-70.42156340899993],[8.78467858200014,-70.41757577899995],[8.812754754000139,-70.40488046699998],[8.832041863000086,-70.38347747199985],[8.837168816000087,-70.35393645599989],[8.971853061000104,-70.37249114399998],[8.983571811000104,-70.37232838299992],[8.996918165000125,-70.36874765399995],[9.024180535000113,-70.3576799459999],[9.037771030000073,-70.356866144],[9.115570509000063,-70.37590911299998],[9.136729363000143,-70.375420831],[9.157481316000142,-70.35955169099996],[9.168711785000141,-70.33416106599995],[9.167816602000071,-70.30803801899998],[9.151377800000148,-70.29029713299991],[9.126231316000085,-70.28167083099999],[9.101328972000147,-70.27654387799998],[9.01978600400011,-70.27076588299984],[8.938243035000085,-70.24675872199998],[8.887461785000141,-70.21550872200001],[8.898448113000114,-70.18547942499995],[9.080577019000145,-70.08928801899992],[9.128754102000102,-70.07594166499992],[9.18262780000012,-70.07089609199997],[9.294281446000099,-70.07878997199995],[9.403575066000116,-70.10426197699987],[9.41537519600007,-70.10914478999993],[9.42212975400011,-70.11516692499993],[9.431162957000112,-70.13665129999995],[9.439463738000086,-70.14910247199998],[9.450531446000127,-70.15650807099996],[9.531016472000118,-70.18621184699998],[9.553070509000094,-70.19801197699996],[9.575205925000091,-70.21721770600001],[9.592946811000076,-70.228936456],[9.63624108200014,-70.24000416499995],[9.65577233200014,-70.24781666499993],[9.671885613000113,-70.2678361959999],[9.670664910000085,-70.29143645599994],[9.662119988000084,-70.31698984199993],[9.656504754000082,-70.34303150799991],[9.713389519000117,-70.33896249799994],[9.76498457100007,-70.34856536299992],[9.867198113000114,-70.39202239399995],[9.95533287900011,-70.44426848799988],[9.979258660000085,-70.45354583099993],[10.28687584700009,-70.524021092],[10.322764519000089,-70.53679778399996],[10.33920332100007,-70.53899504999995],[10.392832879000082,-70.539646092],[10.421153191000114,-70.54705169099996],[10.476817254000139,-70.57219817499995],[10.532969597000116,-70.57830169099995],[10.59994550900012,-70.60466887799996],[10.656748894000089,-70.61150481599988],[10.705821160000141,-70.63201262799991],[10.722666863000143,-70.63689544099998],[10.80958092500012,-70.64657968499994],[10.968923373000052,-70.688734633],[11.067393425000148,-70.70126718499999],[11.106700066000142,-70.69703541499997],[11.118174675000091,-70.70045338299997],[11.158539259000065,-70.72877369599993],[11.209483269000089,-70.74968840899997],[11.237559441000087,-70.75701262799998],[11.260427280000071,-70.75652434699991],[11.321055535000141,-70.74041106599985],[11.351573113000086,-70.73658619599983],[11.641368035000113,-70.77320728999986],[11.70085696700005,-70.77174244599988],[11.8229272800001,-70.78313567499994],[11.853526238000114,-70.78150807099993],[11.861175977000071,-70.77605559699998],[11.884043816000142,-70.75237395599996],[11.894379102000071,-70.7443986959999],[11.91423587300008,-70.737888279],[11.993662957000083,-70.72535572699984],[12.00554446700005,-70.72087981599994],[12.01498457100007,-70.71298593499996],[12.032074415000094,-70.68580494599996],[12.046071811000076,-70.67929452899998],[12.081716342000107,-70.67400481599991],[12.074473504000082,-70.65146249800001],[12.091319207000083,-70.60320403399999],[12.08773847700013,-70.54534270599989],[12.107758009000094,-70.53004322699984],[12.167816602000102,-70.51441822699992],[12.14234459700009,-70.48544687299994],[12.163340691000116,-70.47087981599992],[12.184336785000085,-70.4618466129999],[12.23194420700014,-70.45289478999997],[12.25212649800008,-70.44605885199987],[12.26742597700013,-70.43254973799998],[12.279063347000147,-70.41464609199993],[12.28858483200014,-70.39478932099983],[12.32203209700009,-70.37029387799998],[12.380218946000127,-70.358575128],[12.530772332000083,-70.3516578099999],[12.608571811000104,-70.3205705709999],[12.648936394000145,-70.31487395600001],[12.715017123000052,-70.32170989399994],[12.736582879000082,-70.32000090899993],[12.801442905000073,-70.29827239399995],[12.824961785000113,-70.295017185],[12.837901238000113,-70.2639299459999],[12.897146030000101,-70.24822356599984],[13.018321160000056,-70.24179452899993],[13.041026238000113,-70.23447031],[13.029551629000082,-70.21770598799989],[12.969493035000056,-70.17294687299987],[12.939789259000122,-70.164971613],[12.483083530000044,-70.12688567499993],[12.435883009000065,-70.10515715899986],[12.426524285000113,-70.08538176899992],[12.444590691000144,-70.07024504999993],[12.473968946000127,-70.05999114399991],[12.497813347000118,-70.0552710919999],[12.559336785000085,-70.05380624800003],[12.735118035000113,-70.07146575299986],[12.969248894000117,-70.04615650799991],[13.026215040000125,-70.05103932099996],[13.084971550000148,-70.0751278629999],[13.108164910000085,-70.09140390399993],[13.164805535000056,-70.15064869599983],[13.186534050000118,-70.16643645599996],[13.23617597700013,-70.18775807099993],[13.29232832100007,-70.24732838299994],[13.342784050000091,-70.27271900799997],[13.399668816000116,-70.28622812299994],[13.570323113000113,-70.28997161299996],[13.598480665000094,-70.298923435],[13.650401238000086,-70.32341887799994],[13.848806186000076,-70.34783294099998],[14.016774936000104,-70.34148528399996],[14.080577019000117,-70.34596119599983],[14.093272332000081,-70.34351978999997],[14.120941602000102,-70.33033619599993],[14.135264519000087,-70.32626718499998],[14.167816602000128,-70.32732512799993],[14.187998894000089,-70.33220794099991],[14.204925977000071,-70.3278947899999],[14.227793816000142,-70.30144622199992],[14.247569207000083,-70.295017185],[14.340098504000082,-70.30608489399995],[14.344574415000126,-70.30250416499989],[14.346690300000148,-70.296319269],[14.349375847000118,-70.29045989399997],[14.355967644000087,-70.28753020599986],[14.38640384200005,-70.28590260199984],[14.40015709700009,-70.2881812479999],[14.427012566000144,-70.29558684699998],[14.44117272200009,-70.29697030999995],[14.468760613000086,-70.29420338299991],[14.495127800000091,-70.28630950299993],[14.510508660000141,-70.28386809699997],[14.53980553500014,-70.28997161299996],[14.555918816000114,-70.291599217],[14.57325280000012,-70.291110935],[14.585134311000076,-70.29257577899996],[14.595957879000053,-70.29729583099999],[14.60962975400011,-70.30681731599998],[14.618662957000112,-70.30950286299995],[14.62989342500012,-70.30771249799996],[14.652028842000078,-70.30169036299988],[14.683116082000083,-70.30380624799997],[14.74708092500009,-70.32496510199998],[14.780039910000141,-70.32984791499986],[14.83668053500014,-70.32773202899995],[14.86500084700009,-70.32284921699996],[14.88038170700014,-70.31340911299995],[14.897959832000081,-70.29876067499985],[15.036875847000116,-70.29094817499995],[15.144867384000124,-70.31023528399999],[15.534841342000078,-70.33766041499995],[15.599864129000139,-70.33123137799993],[15.630869988000141,-70.33375416499986],[15.702484571000099,-70.36500416499983],[15.766856316000089,-70.37835051899992],[15.826914910000083,-70.37761809699997],[15.857106967000107,-70.35361093499995],[15.862640821000127,-70.32398853999989],[15.859873894000147,-70.31308359200003],[15.849294467000107,-70.30185312299992],[15.845388217000107,-70.29322682099993],[15.846934441000144,-70.28118255000001],[15.85181725400011,-70.2691382789999],[15.857920769000117,-70.2600236959999],[15.905039910000113,-70.216403904],[15.93132571700002,-70.20086028399999],[15.962575717000107,-70.18962981599991],[16.129567905000044,-70.17253997199995],[16.14014733200011,-70.16725025799997],[16.16187584700006,-70.14739348799998],[16.174978061000047,-70.14120859199998],[16.200368686000076,-70.13990650799991],[16.284434441000116,-70.149021092],[16.519867384000122,-70.12672291499996],[16.577321811000047,-70.13144296699997],[16.6263126960001,-70.15178801899995],[16.63843834700009,-70.161553644],[16.647715691000144,-70.17302825299986],[16.65333092500012,-70.18596770599986],[16.654063347000143,-70.20110442499985],[16.65015709700006,-70.22079843499998],[16.64332116000014,-70.231052342],[16.630869988000143,-70.23691171699987],[16.610606316000116,-70.24334075299997],[16.622243686000047,-70.27825286299998],[16.626149936000047,-70.31121184699994],[16.61931399800011,-70.34295012799993],[16.598155144000117,-70.37420012799998],[16.574717644000117,-70.39625416499989],[16.545664910000138,-70.41765715899993],[16.514414910000085,-70.4354794249999],[16.484629754000082,-70.44605885199987],[16.505137566000116,-70.45419687299997],[16.871104363000143,-70.439385675],[16.925954623000052,-70.4636369769999],[16.91000410200013,-70.47698333099999],[16.927012566000087,-70.48447030999988],[16.943695509000122,-70.48398202899998],[16.960948113000143,-70.48056405999986],[17.126800977000073,-70.48088958099999],[17.1940210300001,-70.46550872199994],[17.21697024800011,-70.463962498],[17.484060092000075,-70.4789364565],[17.751149936000076,-70.49391041499989],[17.789398634000122,-70.51083749799987],[17.875824415000125,-70.51726653399987],[17.90837649800008,-70.5140927059999],[18.093760613000086,-70.54241301899995],[18.329844597000147,-70.54013437299997],[18.331879102000073,-70.5350888],[18.331716342000107,-70.52800872199998],[18.339121941000116,-70.520196222],[18.375824415000096,-70.50750090899993],[18.417165561000047,-70.5020484349999],[18.49822024800008,-70.50253671699998],[18.31031334700006,-70.373711847],[18.304698113000086,-70.36614348799995],[18.3006291020001,-70.3576799459999],[18.29590905000009,-70.35019296699994],[18.28809655000012,-70.34531015399998],[18.269216342000078,-70.33798593499988],[18.260996941000087,-70.33294036299984],[18.252777540000096,-70.32594166499996],[18.31617272200012,-70.32439544099992],[18.44703209700012,-70.30006275799994],[18.50684655000009,-70.27874114399998],[18.573008660000085,-70.2639299459999],[18.71461022200012,-70.25986093499995],[18.78296959700009,-70.23894622199998],[18.806488477000126,-70.2194963519999],[18.821055535000085,-70.198663019],[18.838877800000148,-70.18132903399993],[18.871836785000113,-70.17213307099986],[18.941661004000053,-70.170993748],[19.153493686000047,-70.20354583099989],[19.290537957000108,-70.24814218499995],[19.275889519000117,-70.25156015399988],[19.261485222000147,-70.25188567499998],[19.2322697270001,-70.24879322699991],[19.21501712300011,-70.24944426899995],[19.201182488000114,-70.25457122199988],[19.173513217000103,-70.27385833099991],[19.200043165000068,-70.28826262799988],[19.26937910200013,-70.34124114399992],[19.29664147200012,-70.3680966129999],[19.28150475400011,-70.38160572699996],[19.251149936000047,-70.38925546699998],[19.232920769000145,-70.39885833099989],[19.227875196000127,-70.4143205709999],[19.221853061000104,-70.42058684699995],[19.196543816000087,-70.42620208099996],[19.17872155000009,-70.43238697699984],[19.170176629000082,-70.438083592],[19.14747155000012,-70.47429778399993],[19.142914259000094,-70.48503997199994],[19.137217644000117,-70.49504973799992],[19.0162866550001,-70.59677499799997],[18.991465691000144,-70.61060963299997],[18.936534050000144,-70.62330494599992],[18.915212436000076,-70.63404713299994],[18.920664910000113,-70.65260182099996],[18.931813998000052,-70.678317967],[18.930918816000144,-70.73601653399996],[18.94548587300008,-70.75237395599996],[18.959239129000082,-70.75432708100001],[18.982269727000073,-70.74968840899997],[18.995616082000083,-70.74895598799995],[19.0123804050001,-70.75335051899985],[19.028493686000072,-70.76140715899989],[19.057790561000076,-70.78118255],[19.075856967000107,-70.79957447699994],[19.11158287900014,-70.84710051899995],[19.130544467000046,-70.86012135199994],[19.28923587300011,-70.91432057099999],[19.567393425000144,-70.94605885199994],[19.628184441000087,-70.94085051899995],[19.732758009000094,-70.8926734349999],[19.7889103520001,-70.89332447699995],[19.903575066000144,-70.912530206],[20.033213738000143,-70.9190406229999],[20.07634524800008,-70.92929452900002],[20.112315300000148,-70.93092213299994],[20.190114780000044,-70.90878671699997],[20.228526238000143,-70.90536874799986],[20.40398196700005,-70.92343515399998],[20.422618035000138,-70.92253997199998],[20.498545769000145,-70.90243906000003],[20.560313347000147,-70.90439218499998],[20.578868035000085,-70.90211353999982],[20.61793053500014,-70.88933684699987],[20.637705925000148,-70.88591887799994],[20.70525149800011,-70.88307057099983],[20.844248894000145,-70.85662200299986],[20.88689212300008,-70.85556405999998],[21.00538170700008,-70.87086353999986],[21.043142123000024,-70.863702081],[21.201182488000143,-70.81218840899993],[21.172618035000056,-70.78476327899998],[21.1595158210001,-70.75603606599992],[21.16675866000011,-70.72812265399996],[21.198985222000147,-70.70191822699992],[21.17017662900014,-70.67848072699996],[21.158539259000122,-70.66464609199997],[21.1560978520001,-70.64999765399996],[21.166840040000096,-70.63258228999989],[21.18425540500007,-70.62232838299997],[21.224457227000073,-70.61239999799987],[21.202810092000075,-70.59400807099983],[21.20850670700014,-70.57642994599989],[21.28980553500014,-70.50701262799996],[21.317230665000096,-70.490329685],[21.341481967000078,-70.48170338299991],[21.431325717000107,-70.47966887799988],[21.45167076900009,-70.46843840899989],[21.47201582100007,-70.43954843499996],[21.471446160000113,-70.4346656229999],[21.46461022200009,-70.4221330709999],[21.46436608200014,-70.41757577899995],[21.473968946000127,-70.40667083099997],[21.502452019000117,-70.38396575299991],[21.611338738000143,-70.2721493469999],[21.636485222000115,-70.2577450499999],[21.69434655000012,-70.23463307099989],[21.745616082000137,-70.22616952899993],[21.801605665000096,-70.23593515399998],[21.993662957000137,-70.30217864399994],[22.019297722000115,-70.3179664039999],[22.03003991000014,-70.32781340899993],[22.035655144000142,-70.3356259089999],[22.042979363000143,-70.34221770599999],[22.058278842000103,-70.34880950299996],[22.1814884770001,-70.38502369599989],[22.283213738000143,-70.43670012799993],[22.338063998000052,-70.45525481599992],[22.44792728000004,-70.47779713299991],[22.475596550000116,-70.48845794099995],[22.52564537900014,-70.51531340899993],[22.553477410000113,-70.52499765399998],[22.579274936000047,-70.54021575299996],[22.57569420700014,-70.56121184699991],[22.555511915000125,-70.58171965899996],[22.53223717500012,-70.59563567499985],[22.48096764400009,-70.61003997199991],[22.16688073000006,-70.62420012799993],[21.85279381600014,-70.63836028399996],[21.82642662900014,-70.65504322699998],[22.028493686000104,-70.68303801899992],[22.24935957100007,-70.68580494599996],[22.294200066000116,-70.69597747199992],[22.34888756600014,-70.69329192499985],[22.36736087300008,-70.69459400799994],[22.32691491000014,-70.75945403399993],[22.344248894000117,-70.76181405999998],[22.380544467000107,-70.76148853999996],[22.41618899800008,-70.76946380000001],[22.43311608200014,-70.76482512799997],[22.450043165000125,-70.75758228999996],[22.471039259000094,-70.75432708100001],[22.488617384000122,-70.75774504999993],[22.54851321700005,-70.77752044099995],[22.563324415000125,-70.77825286299998],[22.59555097700007,-70.77288176899992],[22.724945509000122,-70.76930103999986],[22.761729363000114,-70.77760182099992],[22.832692905000073,-70.80413176899998],[22.855235222000147,-70.80836353999992],[22.91773522200009,-70.81292083099996],[22.926036004000082,-70.81601327899993],[22.941742384000065,-70.82634856599995],[22.949880405000073,-70.82919687299999],[22.957286004000135,-70.82854583099993],[22.97250410200013,-70.82350025799991],[23.180674675000148,-70.81308359200001],[23.259043816000116,-70.82301197699984],[23.29265384200005,-70.82122161299985],[23.323008660000113,-70.80974700299998],[23.412608269000085,-70.74374765399986],[23.437836134000037,-70.71770598799996],[23.435231967000046,-70.69117603999993],[23.448090040000068,-70.686944269],[23.460948113000086,-70.68466562299994],[23.4876408210001,-70.68320077899998],[23.502289259000122,-70.67929452899998],[23.512868686000072,-70.67083098799985],[23.522471550000148,-70.66008879999993],[23.534922722000058,-70.64950937299996],[23.553070509000065,-70.62916432099989],[23.557790561000072,-70.60556405999995],[23.54786217500009,-70.58513762799997],[23.522146030000044,-70.57488372199984],[23.55241946700002,-70.5681291649999],[23.616872592000107,-70.5651994769999],[23.64356530000012,-70.55136484199998],[23.667328321000127,-70.52385833099996],[23.68620853000007,-70.49358489399995],[23.712412957000083,-70.42669036299984],[23.752452019000113,-70.40260182099992],[24.10889733200014,-70.40943775799994],[24.17546634200005,-70.424248956],[24.277517123000106,-70.460544529],[24.408864780000012,-70.53394947699992],[24.419444207000083,-70.54485442499998],[24.428396030000098,-70.56357187299987],[24.43311608200011,-70.58171965899996],[24.439952019000117,-70.59905364399995],[24.455414259000065,-70.61451588299997],[24.34652754000004,-70.6735979149999],[24.319509311000104,-70.68010833099997],[24.291514519000085,-70.68189869599998],[24.26531009200005,-70.67864348799993],[24.291514519000085,-70.71795012799993],[24.31934655000012,-70.74032968499995],[24.479177280000044,-70.79656340899994],[24.499196811000104,-70.80917734199993],[24.5338647800001,-70.83782317499998],[24.555186394000145,-70.84677499800001],[24.968028191000116,-70.94548919099998],[25.260590040000096,-70.98088958099999],[25.44044030000009,-70.98015715899996],[25.524587436000104,-70.99431731599998],[25.567556186000076,-70.99342213299998],[25.562510613000143,-70.98943450299991],[25.553396030000044,-70.97958749799997],[25.548513217000078,-70.97535572699996],[25.576914910000113,-70.97144947699996],[25.599131707000055,-70.97747161299998],[25.62012780000009,-70.98796965899986],[25.645762566000087,-70.99749114399985],[25.661875847000147,-71.00042083099996],[25.67457116000011,-71.00017669099992],[25.702972852000126,-70.99114348799992],[25.715830925000148,-70.99000416499997],[25.730642123000024,-70.993340753],[25.758555535000085,-71.00269947699994],[25.78272545700008,-71.00660572699994],[25.827891472000115,-71.00823333099996],[25.916026238000114,-71.0343563779999],[25.98267662900011,-71.04192473799995],[26.101328972000147,-71.04265715899999],[26.159353061000104,-71.0343563779999],[26.2159936860001,-71.01555754999995],[26.26783287900011,-71.00839609200001],[26.390310092000078,-71.03045012800001],[26.445648634000065,-71.03240325299996],[26.478851759000065,-71.01897551899988],[26.48975670700014,-71.0193010399999],[26.504405144000145,-71.02263762799993],[26.517832879000135,-71.02263762799993],[26.606618686000104,-71.0080705709999],[26.635264519000085,-70.99920012799986],[26.67400149800011,-70.96550872199985],[26.699229363000086,-70.96135833099999],[26.76775149800011,-70.96103280999996],[26.794118686000104,-70.96461353999986],[26.80486087300002,-70.96379973799985],[26.821950717000078,-70.95476653399993],[26.829925977000126,-70.94654713299994],[26.839366082000137,-70.94198984199998],[26.86150149800011,-70.9436174459999],[26.88884524800008,-70.94198984199998],[26.90756269600007,-70.93157317499998],[26.926280144000117,-70.92392343499988],[26.95337975400005,-70.929375909],[26.9791772800001,-70.93865325299996],[27.275075717000107,-70.98967864399995],[27.2967228520001,-70.98479583099989],[27.303396030000073,-70.96843840899996],[27.298838738000114,-70.95208098799995],[27.298838738000114,-70.93726978999989],[27.31885826900009,-70.9255510399999],[27.30225670700011,-70.91139088299997],[27.28305097700007,-70.90740325299998],[27.24170983200014,-70.90837981599996],[27.217458530000044,-70.90439218499998],[27.19703209700006,-70.89706796699997],[27.178477410000056,-70.88591887799994],[27.159353061000104,-70.87070077899998],[27.182139519000117,-70.85572682099986],[27.20281009200005,-70.84498463299994],[27.224619988000086,-70.83928801899995],[27.2513126960001,-70.83879973799988],[27.297048373000024,-70.84677499800001],[27.31739342500012,-70.84319426899995],[27.328623894000117,-70.82439544099991],[27.351817254000135,-70.83863697699991],[27.371267123000052,-70.83424244599983],[27.389903191000144,-70.82154713299987],[27.412445509000122,-70.81129322699994],[27.44304446700005,-70.80901458099996],[27.471446160000056,-70.81096770599991],[27.50033613400009,-70.80950286299995],[27.54517662900011,-70.79306405999995],[27.574392123000052,-70.78915780999995],[27.585134311000047,-70.78313567499994],[27.604665561000047,-70.75847747199995],[27.61638431100002,-70.7470028629999],[27.628428582000137,-70.74130624799993],[28.02906334700012,-70.72649504999995],[28.055349155000044,-70.72275156],[28.0852970710001,-70.71217213299997],[28.11402428500014,-70.7072893209999],[28.173106316000087,-70.71705494599992],[28.2024845710001,-70.71526458099996],[28.231618686000047,-70.70281340899993],[28.256358269000113,-70.68865325300001],[28.282074415000068,-70.67848072699996],[28.314952019000145,-70.67848072699996],[28.451670769000117,-70.69402434699988],[28.47364342500003,-70.68767669099985],[28.494802280000044,-70.677829685],[28.55250084700009,-70.6589494769999],[28.609873894000117,-70.632989191],[28.641449415000096,-70.62346770599999],[28.721853061000104,-70.6101213519999],[28.77295983200005,-70.59400807099983],[28.833262566000116,-70.5949846329999],[29.021820509000065,-70.57203541499989],[29.034678582000083,-70.56878020599996],[29.04883873800011,-70.561618748],[29.075531446000127,-70.54241301899995],[29.08920332100007,-70.537041925],[29.145030144000145,-70.52906666499986],[29.150726759000037,-70.524021092],[29.163584832000055,-70.50017669099994],[29.174652540000096,-70.49114348799992],[29.20150800900009,-70.48170338299991],[29.294444207000108,-70.46152109199997],[29.331390821000156,-70.46160247199995],[29.34620201900012,-70.45647551899994],[29.364105665000153,-70.43971119599993],[29.376231316000172,-70.43287525799991],[29.440684441000116,-70.410902602],[29.443858269000113,-70.407321873],[29.448252800000063,-70.39568450300001],[29.451426629000167,-70.392266534],[29.459483269000117,-70.39104583099999],[29.47738691500015,-70.39251067499995],[29.486013217000075,-70.39202239399995],[29.602712436000076,-70.37249114399998],[29.74878991000011,-70.3654924459999],[29.763356967000075,-70.36296965899999],[29.771820509000094,-70.35564544099998],[29.778819207000115,-70.33879973799998],[29.78549238400015,-70.32903411299985],[29.795420769000227,-70.32301197699994],[29.812510613000114,-70.3171526019999],[29.841156446000156,-70.31129322699994],[30.165212436000076,-70.28557708099999],[30.170583530000012,-70.28289153400002],[30.180837436000072,-70.27320728999996],[30.186289910000173,-70.27109140399995],[30.192637566000116,-70.27361419099996],[30.205332879000164,-70.28525155999988],[30.211680535000117,-70.28801848799993],[30.239593946000152,-70.28704192499994],[30.295583530000183,-70.27760182099993],[30.35531660200016,-70.2785783829999],[30.439300977000162,-70.26677825299986],[30.631683790000093,-70.261325779],[30.707774285000117,-70.27507903399993],[30.73780358200017,-70.27353280999998],[30.93531334700012,-70.21461353999983],[30.96501712300008,-70.21404387799996],[31.017344597000175,-70.227634373],[31.044118686000072,-70.23162200299998],[31.280446811000072,-70.23707447699984],[31.411631707000108,-70.22332122199991],[31.495778842000018,-70.2043596329999],[31.60906009200002,-70.20012786299988],[31.844411655000073,-70.14690520599999],[31.994395379000167,-70.13445403399996],[32.04517662900011,-70.11842213299997],[32.26636803500011,-70.08652109199987],[32.31348717500012,-70.065524998],[32.339203321000156,-70.05803801899995],[32.36589603000018,-70.05331796699994],[32.56885826900012,-70.05152760199996],[32.62419681100018,-70.04029713299987],[32.671885613000164,-70.02320728999983],[32.695485873000194,-70.01824309699995],[32.722015821000156,-70.01767343499999],[32.745290561000076,-70.01344166499997],[32.75945071700019,-69.99976978999993],[32.77068118600019,-69.98202890399995],[32.78541100400011,-69.96510182099996],[32.80640709700011,-69.95566171699994],[32.85108483200011,-69.9454891909999],[32.868662957000225,-69.93027109199993],[32.87728925900015,-69.904880467],[32.87110436300017,-69.88404713299991],[32.85254967500006,-69.87037525799998],[32.824229363000114,-69.86614348799996],[32.83033287900011,-69.85662200299996],[32.84929446700019,-69.83424244599995],[32.85385175900015,-69.82626718499998],[32.851735873000024,-69.8184546849999],[32.84001712300008,-69.7959937479999],[32.837575717000135,-69.7847632789999],[32.851898634000094,-69.78525155999998],[32.862803582000055,-69.78167083099991],[32.86841881600017,-69.77320728999995],[32.86744225400011,-69.75953541499993],[32.88795006600017,-69.76034921699993],[32.897634311000125,-69.7510718729999],[32.90333092500012,-69.73609791499996],[32.91260826900023,-69.7199846329999],[32.92351321700002,-69.71070728999993],[32.949880405000016,-69.69500090899996],[32.961761915000096,-69.68596770599996],[32.97575931100002,-69.67213307099995],[32.985687696000156,-69.65935637799993],[32.99219811300023,-69.64462656000002],[32.995860222000175,-69.62542083099997],[32.9954533210001,-69.61809661299988],[32.99317467500012,-69.61256275799994],[32.984060092000135,-69.60149504999991],[32.98161868600019,-69.59335702899999],[32.98601321700008,-69.5868466129999],[32.99252363400015,-69.5803361959999],[32.996267123000194,-69.57219817499998],[33.0018009770001,-69.51921965899986],[33.00049889400012,-69.50481536299998],[32.99708092500012,-69.49765390399995],[32.980642123000194,-69.47673919099998],[32.978282097000175,-69.46982187299996],[32.97999108200017,-69.46355559699992],[32.98267662900011,-69.45728932099989],[32.98292076900006,-69.45029062299999],[32.96697024800008,-69.38681405999998],[32.95199629000015,-69.35947031],[32.927907748000194,-69.34368254999988],[32.79078209700012,-69.29094817499987],[32.75220787900017,-69.26262786299993],[32.701345248000024,-69.24358489399985],[32.532481316000116,-69.11882903399992],[32.521006707000055,-69.1071916649999],[32.51343834700012,-69.09449635199992],[32.50440514400012,-69.08464934699992],[32.4876408210001,-69.081638279],[32.52418053500011,-69.05527109200001],[32.530609571000156,-69.04851653399989],[32.52955162900011,-69.03630950299991],[32.51140384200019,-68.99212004999993],[32.50294030000006,-68.96160247199998],[32.498871290000096,-68.930922133],[32.5057072270001,-68.90309010199994],[32.56226647200012,-68.85637786299995],[32.57211347700016,-68.8523088519999],[32.58570397200012,-68.85068124799987],[32.610606316000116,-68.84368254999998],[32.838063998000194,-68.75212981599988],[33.215993686000076,-68.66961028399996],[33.71509850350017,-68.67376067499991],[34.214203321000156,-68.67791106599995],[34.300629102000094,-68.68816497199988],[34.363047722000175,-68.72551848799993],[34.38493899800013,-68.79420338299994],[34.371267123000194,-68.80632903399993],[34.0911564460001,-68.85247161299995],[34.08285566500015,-68.85955169099992],[34.0760197270001,-68.886325779],[34.063975457000105,-68.88909270599989],[34.04908287900017,-68.88697682099996],[34.034353061000076,-68.8993466129999],[34.009450717000135,-68.927422784],[33.97486412900011,-68.94744231599988],[33.83057701900012,-69.00937265399995],[33.60368899800014,-69.05242278399989],[33.62818444100017,-69.06096770599999],[33.77125084700012,-69.05348072699994],[33.78126061300023,-69.05836353999989],[33.800547722000175,-69.0821265599999],[33.81120853000018,-69.09140390399995],[33.86589603000007,-69.11256275799987],[33.92164147200012,-69.12224700299993],[34.361501498000024,-69.13290780999994],[34.387950066000116,-69.12712981599996],[34.45085696700008,-69.08798593499995],[34.46794681100019,-69.081638279],[34.5872501960001,-69.06682708099986],[34.61996504000015,-69.07073333099994],[34.65259850400017,-69.08342864399991],[34.61036217500006,-69.09124114399998],[34.650726759000094,-69.11142343499999],[34.66553795700011,-69.11492278399992],[34.7346297540001,-69.11305103999985],[34.75464928500017,-69.11858489399997],[34.774587436000076,-69.12688567499985],[34.838877800000056,-69.14226653399999],[34.85621178500016,-69.14983489399994],[34.88949629000015,-69.17229583099993],[34.943695509000094,-69.19150155999998],[35.011892123000024,-69.22877369599996],[35.12549889400023,-69.25953541499986],[35.199880405000016,-69.29412200299984],[35.17562910200016,-69.31178150799987],[35.154958530000016,-69.32382577899986],[35.146983269000174,-69.34026458099996],[35.16081790500007,-69.37175872199988],[35.16765384200019,-69.40048593500002],[35.154958530000016,-69.42603932099992],[35.13111412900011,-69.44646575299998],[35.104746941000116,-69.45964934699994],[35.12574303500016,-69.494805597],[35.13795006600017,-69.50807057099993],[35.15674889400012,-69.51653411299988],[35.22877037900011,-69.5367164039999],[35.20411217500006,-69.57976653399993],[35.157725457000055,-69.5954729149999],[35.10816491000017,-69.60572682099992],[35.07349694100017,-69.63193124799987],[35.079356316000116,-69.67058684699992],[35.12330162900017,-69.69939544099995],[35.2439884770001,-69.73560963299995],[35.26856530000012,-69.73691171699997],[35.317718946000156,-69.73414478999992],[35.342621290000096,-69.72966887799984],[35.38599694100017,-69.71575286299988],[35.43482506600017,-69.7116838519999],[35.48340905000012,-69.70134856599991],[35.55958092500006,-69.69947682099992],[35.708343946000156,-69.66611093499995],[35.90455162900017,-69.6672502579999],[36.003184441000116,-69.6534156229999],[36.05250084700012,-69.63884856599996],[36.079600457000225,-69.63665129999988],[36.10157311300023,-69.64495208099996],[36.145681186000076,-69.70077890399993],[36.16065514400006,-69.70452239399997],[36.21208743600007,-69.68840911299999],[36.37061608200011,-69.65797291499993],[36.33253014400012,-69.6192359349999],[36.370371941000116,-69.60556405999988],[36.41627037900011,-69.60654062299994],[36.504079623000194,-69.62151458099989],[36.705739780000016,-69.62981536299995],[36.75098717500006,-69.6374651019999],[36.75660241000017,-69.64226653399997],[36.75733483200011,-69.65064869599993],[36.75660241000017,-69.660739842],[36.75733483200011,-69.67009856599994],[36.769216342000014,-69.69402434699997],[36.78386478000007,-69.70419687299994],[36.91570071700002,-69.75042083099986],[36.97380618600018,-69.79062265399995],[36.99512780000006,-69.79729583099999],[36.971934441000116,-69.8145484349999],[36.96892337300014,-69.838311456],[36.98170006600017,-69.86223723799988],[37.006358269000174,-69.88054778399992],[37.03630618600002,-69.88665129999991],[37.056813998000194,-69.87883879999993],[37.07650800900015,-69.86785247199997],[37.1033634770001,-69.86394622199988],[37.13062584700011,-69.86296965899999],[37.212168816000116,-69.84295012799993],[37.24048912900017,-69.83180103999992],[37.23780358200011,-69.81609465899986],[37.21729576900023,-69.7985979149999],[37.192556186000076,-69.78199635199994],[37.28101647200012,-69.72844817499993],[37.491465691000116,-69.75457122199998],[37.59644616000011,-69.73007577899993],[37.549978061000076,-69.71461353999992],[37.52751712300008,-69.70468515399992],[37.50831139400012,-69.69019947699996],[37.54004967500006,-69.68474700299986],[37.786306186000076,-69.6818986959999],[37.78174889400012,-69.6862932269999],[37.77418053500017,-69.69719817499995],[37.76978600400017,-69.70183684699997],[37.77719160200016,-69.70452239399997],[37.791840040000096,-69.71233489399994],[37.79948978000013,-69.71510182099982],[37.79053795700011,-69.72283294099992],[37.78044681100013,-69.727634373],[37.769379102000094,-69.72966887799984],[37.75757897200012,-69.72909921699997],[37.78565514400012,-69.75709400799991],[37.841563347000175,-69.75904713299994],[38.0384220710001,-69.71746184699987],[38.05958092500011,-69.71803150799994],[38.218109571000156,-69.75611744599993],[38.24073326900012,-69.76653411299992],[38.2502547540001,-69.78167083099991],[38.24463951900012,-69.79566822699996],[38.22152754000015,-69.80266692499995],[38.11915123800023,-69.81861744599996],[38.020192905000016,-69.84937916499995],[38.04297936300017,-69.86272551899995],[38.066579623000194,-69.86793385199995],[38.11695397200012,-69.87297942499998],[38.139333530000066,-69.88144296699991],[38.20622806100019,-69.92571379999988],[38.246267123000194,-69.94166432099988],[38.255869988000114,-69.94915129999995],[38.26531009200019,-69.96721770599997],[38.26172936300022,-69.9774716129999],[38.251963738000114,-69.98503997199995],[38.222829623000024,-70.01409270599993],[38.21973717500006,-70.02402109199993],[38.23658287900017,-70.028415623],[38.29590905000012,-70.03394947699994],[38.32976321700019,-70.03004322699994],[38.35816491000011,-70.02263762799986],[38.38599694100017,-70.018487238],[38.418711785000106,-70.02467213299997],[38.447276238000114,-70.03753020599999],[38.46989993600007,-70.052178644],[38.537933790000096,-70.10857512799996],[38.56275475400016,-70.12037525799983],[38.685069207000055,-70.149834894],[38.71119225400011,-70.16350676899995],[38.71404056100007,-70.18873463299991],[38.78923587300008,-70.18792083099999],[38.940277540000096,-70.20468515399999],[39.0158797540001,-70.19833749799997],[39.05046634200019,-70.18857187299994],[39.06804446700002,-70.18108489399998],[39.07642662900011,-70.17262135199994],[39.07520592500006,-70.15455494599983],[39.065928582000225,-70.14609140399998],[38.921071811000076,-70.10857512799996],[38.81519616000017,-70.05535247199988],[38.79704837300008,-70.02874114399994],[38.80355879000015,-69.98772551899991],[39.079600457000055,-69.90585702899998],[39.158864780000016,-69.90374114399995],[39.192637566000116,-69.89251067499995],[39.194509311000076,-69.8607723939999],[39.20801842500006,-69.86207447699991],[39.22120201900011,-69.86093515399988],[39.23389733200017,-69.85702890399998],[39.245860222000175,-69.85051848799998],[39.17839603000019,-69.8474260399999],[39.15821373800006,-69.8435197899999],[39.13607832100009,-69.82952239399985],[39.12940514400023,-69.8111304669999],[39.13689212300019,-69.76376718499995],[39.16146894600009,-69.72665780999995],[39.20883222700016,-69.70663827899998],[39.49512780000012,-69.6862932269999],[39.53598066500015,-69.66838958099993],[39.56104576900023,-69.62900155999994],[39.58871504000015,-69.59880950299993],[39.63843834700006,-69.60857512799997],[39.62525475400017,-69.63616301899998],[39.644216342000185,-69.65097421699987],[39.67741946700019,-69.65691497199998],[39.70720462300014,-69.65829843499996],[39.692067905000016,-69.64820728999989],[39.64283287900011,-69.62607187300001],[39.66879316500009,-69.60344817499995],[39.70337975400011,-69.60003020599986],[39.7786564460001,-69.611423435],[39.766449415000096,-69.59490325299993],[39.75733483200022,-69.58619557099986],[39.74626712300008,-69.58464934699991],[39.72754967500011,-69.58961353999996],[39.71306399800008,-69.5868466129999],[39.70036868600019,-69.57341887799991],[39.69068444100011,-69.55584075299988],[39.68604576900012,-69.54111093499996],[39.766449415000096,-69.5254859349999],[39.7962345710001,-69.52646249799997],[39.74000084700006,-69.4904924459999],[39.769053582000105,-69.48902760199994],[39.78321373800023,-69.48601653399993],[39.79070071700019,-69.47844817499998],[39.79590905000011,-69.46355559699992],[39.81763756600017,-69.42213307099983],[39.82545006600017,-69.41204192499995],[39.844899936000076,-69.39324309699991],[39.84791100400017,-69.38469817499998],[39.84205162900011,-69.36825937299997],[39.831553582000225,-69.35955169099991],[39.71558678500017,-69.31552499799999],[39.70167076900012,-69.30681731599991],[39.71273847700016,-69.29070403399992],[39.74683678500017,-69.28378671699994],[39.814789259000094,-69.27996184699992],[39.80339603000007,-69.24773528399989],[39.78614342500006,-69.23015715899986],[39.7361759770001,-69.19597747199995],[39.81128991000011,-69.18092213299992],[39.73536217500012,-69.108005467],[39.707367384000094,-69.06796640399998],[39.708994988000114,-69.02117278399992],[39.72315514400023,-68.99342213299992],[39.737803582000225,-68.976250909],[39.80347741000011,-68.92555103999993],[39.81910241000011,-68.9050432269999],[39.84400475400017,-68.85556405999994],[39.85141035200016,-68.833591404],[39.85792076900023,-68.82952239399995],[39.89909915500013,-68.82252369599989],[40.26286868600002,-68.80217864399998],[40.37273196700019,-68.7753231749999],[40.39861087300019,-68.76392994599993],[40.446136915000096,-68.73544687300003],[40.47055097700016,-68.72616952899998],[40.52393639400012,-68.71917083099999],[40.70183353000007,-68.72682057099993],[40.71461022200017,-68.73154062299994],[40.74024498800023,-68.74627044099991],[40.75220787900016,-68.750664972],[40.76042728000019,-68.74797942499993],[40.768809441000116,-68.74146900799994],[40.780772332000055,-68.73463307099983],[40.88884524800008,-68.70940520599996],[40.99195397200012,-68.65146249799997],[41.03825931100019,-68.63420989399994],[41.0389103520001,-68.62135182099993],[41.01482181100019,-68.59644947699991],[41.028493686000076,-68.59238046699994],[41.055511915000096,-68.59002044099998],[41.06861412900016,-68.58749765399998],[41.07878665500019,-68.5829403629999],[41.09766686300022,-68.570896092],[41.107920769000174,-68.56609465899993],[41.11931399800014,-68.56389739399994],[41.20687910200016,-68.5601539039999],[41.23031660200016,-68.55510833099996],[41.27198326900012,-68.53704192499995],[41.356293165000096,-68.51588307099995],[41.45199629000015,-68.506605727],[41.503672722000175,-68.49309661299992],[41.54395592500006,-68.47210051899998],[41.98072350400017,-68.40634531],[42.10914147200006,-68.41090260199994],[42.19410241000011,-68.38762786299992],[42.28923587300008,-68.37769947699984],[42.53614342500006,-68.37957122199998],[42.52605228000007,-68.35116952899988],[42.523203972000054,-68.33619557099993],[42.52759850400011,-68.32756926899992],[42.54265384200002,-68.3191057269999],[42.580414259000094,-68.28557708099984],[42.55241946700008,-68.27898528399994],[42.542735222,-68.26490650799983],[42.547048373000194,-68.24578215899996],[42.56031334700006,-68.22372812299996],[42.57081139400012,-68.214450779],[42.58301842500006,-68.20916106599992],[42.59595787900011,-68.20517343499995],[42.60840905000012,-68.1998023419999],[42.63461347700016,-68.17717864399992],[42.64478600400011,-68.17099374799987],[42.659434441000116,-68.16578541499996],[42.84791100400016,-68.13689544099994],[42.82862389400023,-68.09644947699991],[42.85938561300022,-68.10377369599983],[42.99586022200006,-68.09148528399994],[43.10743248800022,-68.06414153399999],[43.405528191000116,-68.03460051899992],[43.44166100400017,-68.03997161299996],[43.5076603520001,-68.05934010199991],[43.77605228000019,-68.04648202899998],[43.81072024800008,-68.03899504999991],[43.85596764400012,-68.01043059699992],[43.87663821700019,-68.00497812299997],[43.939952019000174,-67.99863046699993],[43.954844597,-67.99114348799998],[43.9685978520001,-67.98137786299995],[43.98747806100007,-67.97193775799984],[44.00220787900017,-67.96851978999982],[44.15503991000017,-67.97844817499993],[44.496429884000094,-67.95940520599993],[44.523203972000175,-67.9629859349999],[44.60075931100002,-68.00335051899995],[44.62989342500012,-68.00937265399988],[44.65495853000019,-68.00497812299997],[44.68946373800011,-67.98267994599993],[44.714366082000225,-67.97616952899993],[44.80323326900006,-67.97633228999992],[44.82862389400012,-67.96591562300001],[44.7810978520001,-67.93320077899999],[44.61801191500015,-67.86044687299993],[44.660492384000094,-67.81145598799988],[44.717133009000094,-67.78362395599991],[44.97315514400023,-67.73113372199995],[45.03956139400006,-67.73186614399998],[45.10401451900006,-67.744724217],[45.13160241000017,-67.74716562299994],[45.16130618600019,-67.741306248],[45.217621290000096,-67.72136809699991],[45.24870853000019,-67.71502044099998],[45.34693444100017,-67.7154273419999],[45.36117597700015,-67.71135833099993],[45.390391472000175,-67.69597747199998],[45.40381920700011,-67.6950822899999],[45.45191491000017,-67.70907968499995],[45.50098717500011,-67.71314869599982],[45.5295516290001,-67.71933359199998],[45.55681399800008,-67.72966887799998],[45.58529707100009,-67.74488697699996],[45.573090040000096,-67.76409270599993],[45.55746504000015,-67.77996184699994],[45.538584832000105,-67.79168059699985],[45.51693769600009,-67.79794687299989],[45.54493248800023,-67.81755950299996],[45.58277428500016,-67.82439544099988],[45.65984134200002,-67.81747812299997],[45.688649936000076,-67.80331796699994],[45.714366082000225,-67.78004322699994],[45.74089603000019,-67.76091887799996],[45.77222741000011,-67.75855885199991],[45.75001061300005,-67.71965911299992],[45.739512566000116,-67.70867278399996],[45.81934655000012,-67.66521575299991],[45.84864342500006,-67.65748463299991],[46.216970248000194,-67.65300872199994],[46.245371941000116,-67.66375090899986],[46.2908634770001,-67.70403411299992],[46.30844160200016,-67.71502044099998],[46.37077884200019,-67.74342213299991],[46.401621941000165,-67.74537525799987],[46.43360436300006,-67.729587498],[46.400726759000094,-67.69736093499988],[46.388438347,-67.67929452899995],[46.38526451900022,-67.65886809699998],[46.392914259000094,-67.63258228999996],[46.40601647200006,-67.61939869599992],[46.425629102000094,-67.61500416499993],[46.55697675900009,-67.61858489399991],[46.61207116000017,-67.61207447699991],[46.62273196700019,-67.59002044099992],[46.59058678500011,-67.57870859200003],[46.35035241000011,-67.56878020599993],[46.3060001960001,-67.55925872199991],[46.29737389400012,-67.55584075299993],[46.29314212300008,-67.54941171699998],[46.28907311300011,-67.52320728999997],[46.28345787900011,-67.51279062299997],[46.27230879000009,-67.50400156],[46.31169681100019,-67.47380950299991],[46.234548373000024,-67.44866301899992],[46.259125196000156,-67.41627369599983],[46.24822024800008,-67.39959075299998],[46.25180097700016,-67.37330494599996],[46.26465905000006,-67.34823984199997],[46.280772332000225,-67.3342424459999],[46.377940300000056,-67.29615650799992],[46.42676842500006,-67.28329843499999],[46.47999108200022,-67.27532317499985],[46.58399498800005,-67.27450937299992],[46.66179446700007,-67.28777434699995],[46.68775475400017,-67.28915781000003],[46.76628665500018,-67.2754859349999],[46.81714928500011,-67.27898528399999],[46.86801191500015,-67.26751067499994],[46.8924259770001,-67.26458098799992],[46.914398634000094,-67.26702239399995],[46.93816165500019,-67.27263762799996],[46.981700066000116,-67.28932057099989],[46.9549259770001,-67.313083592],[46.963552280000016,-67.33269622199995],[46.99170983200011,-67.34644947699996],[47.024261915000096,-67.35271575299993],[47.305674675000056,-67.36980559699988],[47.44109134200013,-67.40943775799991],[47.327159050000056,-67.43385182099986],[47.308767123000024,-67.44036223799995],[47.2791447270001,-67.45891692499995],[47.262868686000076,-67.46648528399999],[47.24903405000006,-67.46786874799996],[47.20240319100017,-67.46266041499999],[46.919606967000185,-67.50652434699992],[46.95753014400012,-67.51458098799988],[46.97291100400017,-67.5233700499999],[46.981293165000096,-67.5386695289999],[46.9744572270001,-67.54615650799997],[46.95687910200016,-67.55299244599989],[46.93897545700011,-67.56340911299988],[46.93034915500013,-67.58163827899995],[46.977793816000116,-67.579685154],[47.12794030000006,-67.54436614399998],[47.22885175900014,-67.54648202899996],[47.327159050000056,-67.56650155999995],[47.30518639400006,-67.58367278399989],[47.270192905000066,-67.59986744599993],[47.23267662900017,-67.61126067499998],[47.203949415000096,-67.61435312299997],[47.167979363000114,-67.61158619599983],[47.13933353000007,-67.61541106599985],[47.11597741000017,-67.62916432099986],[47.09571373800023,-67.65699635199991],[47.19483483200011,-67.658786717],[47.1282658210001,-67.6799455709999],[47.09636478000019,-67.68425872199991],[47.05909264400012,-67.68499114399994],[47.093760613000114,-67.70517343499996],[47.13209069100011,-67.70533619599993],[47.170583530000016,-67.69402434699985],[47.222341342000014,-67.67164478999993],[47.24854576900005,-67.65536874799997],[47.26490319100017,-67.65064869599989],[47.63445071700008,-67.66033294099985],[47.61060631600017,-67.69182708099996],[47.56999759200019,-67.710219008],[47.30689537900017,-67.74342213299991],[47.32276451900012,-67.76197682099983],[47.358653191000116,-67.77312590899993],[47.48267662900011,-67.793552342],[47.50261478000019,-67.79225025799991],[47.545664910000106,-67.78435637799994],[47.5520939460001,-67.77955494599985],[47.55534915500007,-67.77361419099992],[47.55933678500017,-67.76816171699998],[47.646820509000094,-67.74749114399988],[47.87517337300008,-67.65520598799992],[47.91130618600019,-67.64902109199987],[48.13314863400015,-67.65260182099993],[48.1682235040001,-67.65813567499995],[48.30974368600019,-67.71851978999996],[48.38111412900017,-67.72942473799995],[48.454600457000055,-67.73015715899989],[48.44516035200016,-67.74765390399993],[48.42953535200016,-67.75351327899998],[48.41065514400023,-67.75465260199991],[48.391449415000096,-67.75872161299988],[48.17115319100017,-67.88884856599994],[48.20118248800011,-67.90894947699991],[48.227793816000165,-67.93320077899999],[48.21998131600017,-67.93759530999998],[48.20508873800011,-67.94850025799994],[48.197276238000114,-67.95273202899998],[48.21745853000007,-67.9629859349999],[48.23015384200019,-68.00505950299996],[48.249359571000156,-68.02076588299984],[48.2747501960001,-68.02556731599992],[48.3826603520001,-68.02337004999993],[48.40007571700019,-68.01238372199997],[48.41407311300023,-67.996677342],[48.43189537900011,-67.98064544099992],[48.52393639400012,-67.94166432099993],[48.57292728000019,-67.91171640399988],[48.61402428500017,-67.87932708099996],[48.65007571700002,-67.8415666649999],[48.7088322270001,-67.75115325299993],[48.7181095710001,-67.7292619769999],[48.72478274800002,-67.70370859199998],[48.718272332000225,-67.68189869599986],[48.69678795700011,-67.66716887799996],[48.64730879000015,-67.64544036299998],[48.6385197270001,-67.63787200299994],[48.622569207000105,-67.6203752579999],[48.59978274800008,-67.60149504999995],[48.595062696000156,-67.59059010199998],[48.59009850400011,-67.55974700299993],[48.56910241000017,-67.51767343499995],[48.56657962300008,-67.49529387799993],[48.58204186300006,-67.47478606599998],[48.60580488400009,-67.46087004999998],[48.62940514400012,-67.45191822699996],[49.01107832100009,-67.39446379999995],[49.06820722700016,-67.37712981599998],[49.09449303500017,-67.37273528399999],[49.12142988400015,-67.37167734199994],[49.174652540000096,-67.3770484349999],[49.18091881600017,-67.36825937300003],[49.19947350400016,-67.35686614399988],[49.20753014400011,-67.3493791649999],[49.19800866000011,-67.33806731599992],[49.20533287900011,-67.32529062299997],[49.219981316000116,-67.31373463299995],[49.23316491000017,-67.30632903399996],[49.25611412900017,-67.29843515399999],[49.32846113400015,-67.28883228999983],[49.32488040500007,-67.28118254999998],[49.30160566500015,-67.24667734199997],[49.28980553500017,-67.237888279],[49.31299889400012,-67.22234465899999],[49.343760613000114,-67.22177499800003],[49.37663821700019,-67.22576262799991],[49.40528405000006,-67.22332122199988],[49.34961998800023,-67.18238697699995],[49.25733483200011,-67.17351653399997],[49.08741295700011,-67.19410572699994],[49.114512566000116,-67.17148202899998],[49.09009850400011,-67.15667083099999],[49.06804446700019,-67.15081145599996],[49.044688347,-67.15203215899997],[48.731618686000076,-67.22079843499995],[48.64087975400017,-67.21892669099998],[48.58464603000007,-67.20924244599993],[48.53199303500017,-67.19247812299999],[48.475840691000116,-67.18808359200001],[48.448741082000225,-67.1817359349999],[48.39454186300006,-67.1592749979999],[48.37012780000012,-67.14299895599996],[48.35466556100018,-67.12151458099993],[48.34538821700002,-67.09563567499993],[48.33887780000006,-67.06487395599986],[48.34205162900011,-67.03622812299997],[48.361094597,-67.01637135199996],[48.588063998000074,-66.93726978999997],[49.059336785000106,-66.8848609349999],[49.111989780000016,-66.86736419099995],[49.16382897200006,-66.83814869599992],[49.21648196700008,-66.81894296699987],[49.271250847000175,-66.83074309699992],[49.28777103000007,-66.84246184699992],[49.32797285200016,-66.88347747199991],[49.33659915500007,-66.90292734199993],[49.335297071000156,-66.93914153399994],[49.3475041020001,-66.95468515399995],[49.25245201900012,-66.97234465899996],[49.15992272200006,-67.00090911299995],[49.21143639400012,-66.99928150799984],[49.22673587300008,-67.0015601539999],[49.240000847,-67.00953541499986],[49.26417076900012,-67.03427499799992],[49.27767988400009,-67.04241301899985],[49.311534050000056,-67.04615650799997],[49.489105665000146,-67.02288176899995],[49.79330488400015,-67.02809010199987],[49.82683353000019,-67.03728606599992],[49.855642123000024,-67.05348072699998],[49.88282311300023,-67.07822030999995],[49.89307701900006,-67.10662200299998],[49.87232506600017,-67.13404713299994],[49.83033287900011,-67.166110935],[49.79428144600009,-67.20973072699984],[49.78288821700008,-67.218438409],[49.66570071700019,-67.27841562299993],[49.69752037900011,-67.28850676899998],[49.73316491000017,-67.28639088299997],[49.76677493600019,-67.27459075299991],[49.792491082000225,-67.25514088299991],[49.821543816000116,-67.24098072699988],[49.90088951900006,-67.23626067499998],[49.93458092500006,-67.22535572699991],[49.945485873000024,-67.21526458099994],[49.96949303500017,-67.18613046699997],[49.982188347000054,-67.17376067499985],[49.99586022200017,-67.16545989399997],[50.00977623800017,-67.16090260199984],[50.02442467500006,-67.15911223799985],[50.07789147200012,-67.15976327899998],[50.093272332000225,-67.15471770599996],[50.11198978000019,-67.12639739399991],[50.12859134200008,-67.11858489399992],[50.14771569100011,-67.11532968499988],[50.16472415500019,-67.11467864399992],[50.20167076900006,-67.12070077900002],[50.3020939460001,-67.1618791649999],[50.40186608200022,-67.17099374799997],[50.47120201900006,-67.19524504999987],[50.585948113000114,-67.21640390399998],[50.60181725400016,-67.22177499800003],[50.626231316000116,-67.23650481599992],[50.64242597700016,-67.24195728999996],[50.66114342500012,-67.24358489399998],[50.72071373800022,-67.23821379999993],[50.69434655000006,-67.22234465899999],[50.640147332000055,-67.20745208099984],[50.61963951900012,-67.184747003],[50.649912957000105,-67.17766692499985],[50.68262780000006,-67.17652760199991],[50.74724368600019,-67.183038019],[50.764496290000096,-67.18767669099992],[50.81104576900011,-67.21111419099991],[50.82789147200006,-67.21453215899992],[50.88119550900009,-67.21624114399991],[50.818532748000194,-67.1778296849999],[50.8537703790001,-67.16415780999988],[50.896169467000014,-67.16130950299993],[50.97820071700002,-67.16814544099995],[50.960703972000175,-67.15691497199985],[50.94711347700016,-67.14592864399998],[50.94353274800008,-67.132419529],[50.955414259000094,-67.11402760199996],[50.92693118600019,-67.12029387799993],[50.89820397200006,-67.11541106599995],[50.84001712300014,-67.09685637799986],[50.69239342500006,-67.08171965899986],[50.65528405000006,-67.06462981599991],[50.63705488400009,-67.0616187479999],[50.602386915000096,-67.05974700299993],[50.584808790000096,-67.05608489399998],[50.556651238000114,-67.05364348799995],[50.459320509000094,-67.06878020599994],[50.47339928500017,-67.05982838299991],[50.4798283210001,-67.04941171699993],[50.48113040500019,-67.036553644],[50.479665561000125,-67.02117278399996],[50.4822697270001,-67.00725676899997],[50.492198113000114,-67.00066497199991],[50.523610873000024,-66.99488697699994],[50.45101972700016,-66.97869231599998],[50.42774498800023,-66.96257903400002],[50.44581139400006,-66.94011809699992],[50.493825717000014,-66.90203215899993],[50.51246178500011,-66.89226653399999],[50.52784264400006,-66.8887671849999],[50.53931725400011,-66.88746510199991],[50.54851321700019,-66.88339609199994],[50.56690514400012,-66.858086847],[50.57960045700011,-66.85051848799995],[50.76172936300023,-66.82105885199996],[50.78435306100019,-66.80982838299995],[50.82984459700017,-66.77467213299991],[50.775726759000094,-66.7548153629999],[50.764903191000116,-66.75514088299984],[50.74480228000007,-66.7673479149999],[50.73406009200002,-66.76775481599991],[50.70606530000011,-66.76067473799995],[50.67481530000006,-66.75847747199995],[50.61378014400006,-66.76197682099993],[50.585459832000225,-66.76783619599989],[50.537771030000066,-66.78630950299991],[50.51042728000019,-66.79225025799994],[50.50025475400017,-66.79078541499997],[50.46973717500012,-66.77564869599998],[50.45411217500011,-66.7725562479999],[50.3470158210001,-66.77499765399993],[50.28614342500012,-66.76897551899992],[50.239512566000116,-66.74309661299992],[50.22120201900005,-66.6861304669999],[50.2166447270001,-66.66057708099991],[50.19605553500017,-66.61101653399989],[50.19141686300023,-66.58652109199994],[50.19361412900011,-66.57048919099995],[50.19971764400011,-66.55828215899989],[50.220876498000194,-66.534844659],[50.22754967500006,-66.52223072699984],[50.23438561300006,-66.490329685],[50.24097741000017,-66.47535572699996],[50.32203209700012,-66.39381275799994],[50.42448978000019,-66.337823175],[50.53736412900017,-66.30388762799996],[50.79497317800016,-66.27992115649994],[51.0525822270001,-66.25595468499995],[51.10352623800023,-66.24236419099998],[51.155528191000116,-66.22226327899995],[51.181162957000055,-66.21575286299995],[51.208750847000175,-66.21355559699995],[51.32325280000006,-66.22795989399992],[51.35230553500016,-66.22177499799996],[51.36817467500012,-66.20427825299991],[51.38168379000015,-66.18230559699998],[51.403575066000116,-66.16220468499995],[51.478282097,-66.12053801899998],[51.61378014400006,-66.09400807099993],[51.77214603000019,-66.03720468499988],[52.22169030000006,-65.97291432099985],[52.53467858150011,-65.9675025369999],[52.847666863000114,-65.96209075299996],[53.27800540500013,-65.899997654],[53.4002384770001,-65.90195077899988],[53.73454837300008,-65.84587981599995],[53.79021243600018,-65.84539153399987],[53.95785566500009,-65.88437265399985],[54.013356967000014,-65.8897437479999],[54.24105879000015,-65.8763973939999],[54.71225019600009,-65.90365976349992],[55.18344160200016,-65.93092213299997],[55.61158287900017,-66.02792734200001],[55.75082441500015,-66.10784270599991],[55.77051842500006,-66.11565520600001],[55.79078209700011,-66.11907317499993],[55.843272332000225,-66.11687590899992],[55.86133873800006,-66.11980559699994],[55.84473717500012,-66.14910247199988],[55.87175540500007,-66.18132903400002],[55.915049675000056,-66.20907968499999],[55.94727623800006,-66.22478606599995],[56.03614342500012,-66.24700286299992],[56.053965691000165,-66.257012628],[56.10670006600017,-66.30038827899988],[56.12623131600017,-66.30974700299998],[56.14535566500015,-66.31552499799987],[56.165537957000055,-66.31804778399989],[56.1873478520001,-66.31715260199988],[56.210703972,-66.31991952899995],[56.21957441500015,-66.33196379999995],[56.22608483200017,-66.34929778399986],[56.241953972000175,-66.36809661299999],[56.262950066000116,-66.37997812299994],[56.30982506600017,-66.3986955709999],[56.33204186300022,-66.41155364399985],[56.37720787900017,-66.45281340899999],[56.399099155000016,-66.46266041499992],[56.409678582000055,-66.42831796699987],[56.42448978000007,-66.40797291499996],[56.44727623800006,-66.39714934699988],[56.51677493600019,-66.38795338299991],[56.80779056100002,-66.40545012799996],[57.20769290500019,-66.53118254999995],[57.237803582000225,-66.54745859199998],[57.25684655000012,-66.561618748],[57.27605228000007,-66.58123137799997],[57.28695722700016,-66.60369231599988],[57.281423373000024,-66.62639739399991],[57.24952233200011,-66.65341562299986],[57.24805748800023,-66.66497161299998],[57.28370201900012,-66.692966404],[57.28777103000007,-66.70142994599986],[57.281423373000024,-66.70875416499996],[57.26392662900017,-66.71550872199998],[57.24244225400017,-66.71892669099991],[57.014659050000056,-66.72926197699991],[57.00147545700011,-66.72682057099998],[56.966319207000225,-66.71087004999997],[56.95476321700002,-66.70842864399994],[56.796397332000055,-66.71461353999989],[56.74366295700005,-66.70940520599991],[56.62224368600018,-66.681329034],[56.56519616000017,-66.65243905999998],[56.56470787900011,-66.61288827899995],[56.53158613400014,-66.62037525799991],[56.51465905000006,-66.63298919099998],[56.50554446700019,-66.65390390399995],[56.49659264400006,-66.68572356599998],[56.37720787900017,-66.63201262799993],[56.34473717500012,-66.62444426899988],[56.277679884000094,-66.62037525799991],[56.247243686000076,-66.61207447699994],[56.208262566000165,-66.587497654],[56.19336998800023,-66.58294036299998],[56.17505944100017,-66.58171965899996],[56.13990319100011,-66.583672784],[56.05640709700006,-66.57390715899996],[56.02442467500012,-66.57545338299991],[55.99187259200008,-66.58570728999993],[56.07113691500009,-66.60035572699994],[56.08790123800022,-66.61101653399989],[56.087412957000225,-66.63290781],[56.065765821000156,-66.6467424459999],[56.012543165000096,-66.66090260199994],[56.086761915000096,-66.67652760199992],[56.120860222,-66.67717864399997],[56.13453209700006,-66.67962005],[56.15064537900011,-66.69085051899991],[56.159922722000175,-66.7033830709999],[56.1701766290001,-66.71103280999994],[56.20801842500006,-66.70142994599986],[56.2264103520001,-66.70086028399999],[56.35865319100017,-66.723239842],[56.4173283210001,-66.74309661299992],[56.47901451900012,-66.74138762799991],[56.50953209700017,-66.74382903399994],[56.48462975400011,-66.75847747199995],[56.357106967000014,-66.775567316],[56.37159264400006,-66.79697030999995],[56.38054446700019,-66.80608489399994],[56.38982181100007,-66.80787525799992],[56.405528191000116,-66.80429452899993],[56.44434655000006,-66.8049455709999],[56.51644941500015,-66.79078541499997],[56.542328321000156,-66.79168059699997],[56.392100457000225,-66.83228932099995],[56.46615644600009,-66.85849374799999],[56.500824415000096,-66.861504816],[56.619965040000096,-66.84823984199997],[56.65967858200011,-66.85133228999996],[56.69556725400011,-66.86256275799997],[56.65935306100019,-66.89031340899994],[56.706797722,-66.89967213299997],[56.68018639400006,-66.92034270599999],[56.65821373800023,-66.93328215899999],[56.634043816000116,-66.94036223799995],[56.601247592000014,-66.94345468499995],[56.4329533210001,-66.92799244599983],[56.41797936300023,-66.92359791499993],[56.409353061000076,-66.91668059699985],[56.402110222,-66.90829843499998],[56.392344597000175,-66.899509373],[56.36312910200016,-66.88396575299991],[56.33448326900006,-66.87623463299991],[56.271657748000194,-66.87566497199992],[56.32203209700006,-66.90886809699995],[56.29273522200006,-66.92945728999987],[56.19434655000012,-66.93385182099996],[56.154063347000054,-66.95183684699991],[56.272715691000165,-66.96502044099994],[56.30884850400011,-66.97747161299988],[56.29517662900017,-66.98064544099984],[56.28174889400005,-66.98528411299996],[56.256683790000096,-66.99863046699997],[56.342133009000094,-67.001071873],[56.367198113000114,-67.01018645599997],[56.28956139400005,-67.05282968499994],[56.208750847000175,-67.08294036299995],[55.85547936300023,-67.17034270599993],[55.76221764400012,-67.20761484199998],[55.73218834700006,-67.26360442499995],[56.153493686000076,-67.1960588519999],[56.14356530000006,-67.22958749799993],[56.08838951900012,-67.34840260199994],[56.09213300900015,-67.35808684699997],[56.10515384200007,-67.37444426899991],[56.118825717000185,-67.3869768209999],[56.13526451900006,-67.39592864399991],[56.17066491000017,-67.40894947699992],[56.17937259200008,-67.38128020599993],[56.19255618600013,-67.35759856599991],[56.209971550000056,-67.33668385199994],[56.26246178500011,-67.29469166499996],[56.296153191000116,-67.27605559699988],[56.30827884200002,-67.26718515400002],[56.328298373000194,-67.24260833099991],[56.339610222000175,-67.23202890399996],[56.44556725400017,-67.16472747199992],[56.55844160200016,-67.10979583099986],[56.681407097000175,-67.07415129999998],[56.838552280000016,-67.05706145599996],[56.85189863400014,-67.05885182099993],[56.86736087300008,-67.064548435],[56.88477623800023,-67.0681291649999],[56.896250847000175,-67.06226978999986],[56.906586134000094,-67.053399347],[56.92042076900006,-67.0477841129999],[56.96794681100007,-67.04615650799997],[57.277517123000024,-67.08489348799992],[57.34424889400012,-67.08416106599998],[57.35914147200006,-67.08782317499993],[57.30892988400015,-67.042575779],[57.343028191000165,-67.03386809699992],[57.37525475400011,-67.03004322699991],[57.49317467500012,-67.0344377579999],[57.50806725400017,-67.0318335919999],[57.526215040000096,-67.02288176899995],[57.54664147200006,-67.00269947699994],[57.56275475400011,-66.99423593499998],[57.59351647200012,-66.98992278399999],[57.6302189460001,-66.99358489399985],[57.66618899800019,-67.00261809699995],[57.72120201900007,-67.02361419099996],[57.827810092000185,-67.03337981599994],[57.84034264400005,-67.03801848799995],[57.86150149800019,-67.05608489399998],[57.87387129000009,-67.060642185],[57.95704186300005,-67.07431405999995],[57.97193444100011,-67.08131275799994],[57.99463951900005,-67.10198333099996],[58.00513756600011,-67.10833098799998],[58.023610873000074,-67.10947031],[58.07349694100011,-67.0940080709999],[58.12378991000017,-67.09392669099992],[58.13648522200006,-67.0984026019999],[58.14649498800023,-67.11028411299985],[58.1517033210001,-67.12590911299992],[58.14991295700022,-67.14120859199996],[58.138845248000194,-67.15203215899997],[58.07129967500012,-67.17791106599998],[58.03809655000012,-67.1960588519999],[58.020274285000106,-67.21892669099998],[58.04688561300006,-67.22503020599989],[58.069997592000014,-67.22047291499993],[58.27027428500017,-67.1480445289999],[58.42628014400006,-67.14861419099996],[58.42066491000018,-67.18678150799994],[58.45533287900017,-67.19491952899995],[58.68873131600011,-67.15699635199984],[58.870616082000225,-67.16513437299994],[58.9158634770001,-67.17750416499987],[59.04411868600019,-67.23691171700003],[59.093760613000114,-67.24472421699993],[59.045664910000106,-67.28850676899998],[59.019867384000094,-67.30494557099989],[58.98861738400014,-67.31015390399998],[58.722992384000094,-67.27483489399995],[58.58220462300019,-67.23211028399994],[58.548838738000114,-67.23023853999997],[58.56861412900012,-67.2746721329999],[58.59376061300022,-67.29851653399997],[58.67237389400011,-67.32586028399986],[58.677012566000165,-67.33049895599997],[58.6785587900001,-67.33733489399998],[58.681000196000156,-67.34303150799997],[58.688324415000146,-67.34433359199997],[58.72592207100015,-67.3381486959999],[58.75782311300022,-67.3368466129999],[58.79330488400015,-67.34124114399998],[58.939138217000185,-67.3762346329999],[59.05152428500016,-67.42864348799995],[59.093272332000225,-67.43670012799998],[59.12696373800022,-67.4249813779999],[59.1287541020001,-67.4465471329999],[59.11646569100017,-67.459079685],[59.09636478000018,-67.46502044099985],[59.03012129000015,-67.47144947699987],[59.00977623800023,-67.47730885199991],[58.985850457000105,-67.48739999799987],[59.029470248000194,-67.49041106599996],[59.03809655000012,-67.49374765399999],[59.05298912900017,-67.50611744599993],[59.061696811000026,-67.50847747199998],[59.20899498800023,-67.49814218499998],[59.25001061300023,-67.48430754999988],[59.26490319100012,-67.48430754999988],[59.2986759770001,-67.50164153399996],[59.41179446700019,-67.54420338299991],[59.480479363000114,-67.59465911299985],[59.51295006600012,-67.60637786299992],[59.54851321700008,-67.60515715899992],[59.59343509200008,-67.594333592],[59.5490828790001,-67.56226978999993],[59.50912519600009,-67.52434661299992],[59.52613366000017,-67.51458098799988],[59.54135175900015,-67.51344166499993],[59.574880405000066,-67.52174244599992],[59.59498131600011,-67.5233700499999],[59.61508222700016,-67.52076588299994],[59.655039910000106,-67.51083749799994],[59.64535566500015,-67.48601653399989],[59.64014733200005,-67.46111419099994],[59.64527428500017,-67.43873463299984],[59.66667728,-67.42156340899997],[59.648122592000135,-67.41594817499998],[59.646250847000054,-67.40618254999995],[59.65748131600017,-67.39723072699994],[59.67855879000009,-67.39413827899993],[59.916026238000114,-67.40048593499998],[59.916029370062205,-67.40048602045871],[60.094981316000116,-67.40536874799994],[60.23438561300023,-67.381768488],[60.32878665500018,-67.37712981599998],[60.39307701900011,-67.383884373],[60.466644727000094,-67.36980559699988],[60.475922071000156,-67.37216562299993],[60.490000847000175,-67.3856747379999],[60.499196811000076,-67.38884856599988],[60.618907097000054,-67.40056731599995],[60.65739993600008,-67.42009856599985],[60.677500847000175,-67.42750416499993],[60.747731967000014,-67.4431291649999],[60.793304884000094,-67.44353606599992],[60.829274936000076,-67.46200937299994],[60.853363477000094,-67.46965911299988],[60.87468509200008,-67.46949635199991],[60.89454186300006,-67.46599700300001],[60.91407311300022,-67.46477629999998],[60.955739780000194,-67.481215102],[60.974131707000225,-67.48284270600001],[60.99252363400009,-67.47722747199992],[61.01335696700008,-67.46510182099982],[61.01856530000006,-67.48381926899998],[61.03386478,-67.49114348799999],[61.074880405000016,-67.4919572899999],[61.142914259000094,-67.50457122199998],[61.16700280000012,-67.50530364399992],[61.16334069100017,-67.51970794099996],[61.15544681100019,-67.530857029],[61.143890821000156,-67.538181248],[61.12924238400015,-67.54143645599996],[61.14087975400017,-67.55087655999988],[61.15219160200016,-67.5564104149999],[61.1639103520001,-67.55779387799996],[61.177012566000116,-67.55437590899996],[61.18572024800008,-67.55575937299993],[61.21615644600015,-67.57952239399985],[61.24317467500006,-67.590508722],[61.27320397200006,-67.59319426899998],[61.60808353,-67.53964609199997],[61.86276289200012,-67.55095794099995],[62.11744225400017,-67.56226978999993],[62.146250847000175,-67.56812916499989],[62.201508009000094,-67.58611419099992],[62.23064212300008,-67.58953215899993],[62.32943769600009,-67.58928801899998],[62.35726972700016,-67.59807708099986],[62.41065514400011,-67.62525807099996],[62.49219811300023,-67.63355885199994],[62.617360873000074,-67.66008879999998],[62.66716556100002,-67.65300872199994],[62.688975457000105,-67.64723072699996],[62.77084394600015,-67.64299895599996],[63.08716881600006,-67.53850676899994],[63.11264082100015,-67.53378671699993],[63.38176517000008,-67.51856861799986],[63.65088951900006,-67.50335051899988],[63.84327233200017,-67.52743906],[63.960622592000185,-67.52703215899999],[64.42546634200002,-67.590508722],[64.47657311300011,-67.60784270599999],[64.52759850400011,-67.61541106599985],[64.55323326900006,-67.62281666499993],[64.56544030000012,-67.62468840899999],[64.5911564460001,-67.61980559699992],[64.60385175900015,-67.61972421699994],[64.62134850400011,-67.62420012799998],[64.65162194100017,-67.63681405999998],[64.72095787900011,-67.65309010199992],[65.12175540500019,-67.68085702919993],[65.52255293100013,-67.70862395639995],[65.92335045700005,-67.73639088359987],[66.32414798300013,-67.76415781079997],[66.72494550900008,-67.79192473799996],[66.73658287900017,-67.78980885199996],[66.75961347700016,-67.77654387799986],[66.77344811300021,-67.77312590899993],[66.86426842500012,-67.78639088299997],[66.88648522200018,-67.78460051899998],[66.94157962300002,-67.76734791499997],[67.00554446700002,-67.75888437300003],[67.12891686300006,-67.759047133],[67.28581790500007,-67.78679778399997],[67.30014082100016,-67.79208749799994],[67.32642662900017,-67.80632903399996],[67.33961022199999,-67.81080494599983],[67.70521080800003,-67.82935963349996],[68.07081139400012,-67.84791432099993],[68.18165123800023,-67.87656015399989],[68.376719597,-67.89519622199998],[68.71062259200002,-67.87346770600001],[68.77711022200006,-67.88600025799991],[69.10678144600016,-67.846286717],[69.1541447270001,-67.83261484199997],[69.18995201900012,-67.81113046699994],[69.19410241000017,-67.80396900799991],[69.2029728520001,-67.7815080709999],[69.20769290500019,-67.77304452899995],[69.21697024800008,-67.76458098799992],[69.22901451900006,-67.75855885199991],[69.30258222700016,-67.7360979149999],[69.35238691500008,-67.7300757789999],[69.55518639400006,-67.73845794099995],[69.61101321700008,-67.75058359199996],[69.6390080090001,-67.763278904],[69.64861087300008,-67.77996184699994],[69.646250847,-67.80413176899994],[69.65040123800023,-67.8303361959999],[69.6622827480002,-67.85247161299996],[69.6829533210001,-67.86443450299991],[69.63233483200023,-67.93857187299994],[69.60108483200005,-68.01873137799997],[69.59546959700018,-68.04306405999986],[69.6018172540001,-68.06991952899993],[69.63477623800006,-68.12216562299987],[69.81364993600008,-68.28525156],[69.98747806100008,-68.37167734200001],[69.99773196700008,-68.37965260199996],[70.00220787900011,-68.38892994599993],[70.00912519600014,-68.398044529],[70.02662194100017,-68.405368748],[70.03825931100019,-68.41334400799997],[70.04883873800023,-68.42815520599986],[70.06592858200011,-68.45810312299999],[70.08936608200005,-68.48300546699996],[70.11540774800002,-68.49358489399991],[70.17969811300017,-68.49480559699992],[70.12354576900005,-68.50888437299987],[70.10670006600006,-68.51653411299999],[70.09034264400006,-68.52117278399992],[70.05404707100016,-68.51978932099993],[70.03891035200016,-68.52532317499995],[70.00806725400017,-68.54517994599996],[69.97022545700023,-68.56170012799986],[69.9305119150001,-68.57390715900002],[69.89421634200002,-68.58066171699996],[69.86182701900012,-68.58098723799998],[69.79379316500014,-68.57382577900003],[69.66325931100006,-68.57887135199995],[69.63160241000011,-68.58863697699991],[69.65170332100016,-68.59587981599994],[69.6722111340001,-68.60027434699992],[69.60035241000011,-68.61012135199994],[69.57309004000015,-68.62200286299996],[69.6238712900001,-68.63160572699996],[69.67530358200011,-68.63347747199992],[69.65170332100016,-68.65113697699994],[69.6263126960001,-68.70232512799998],[69.60466556100002,-68.71884530999998],[69.62175540500019,-68.720391534],[69.63835696700002,-68.71941497199984],[69.67204837300002,-68.71363697699998],[69.62110436300023,-68.735528253],[69.43604576900006,-68.78240325299994],[69.36133873800023,-68.81308359199997],[69.30632571700006,-68.82138437299993],[69.28126061300006,-68.83131275799994],[69.27116946700019,-68.85068124799987],[69.30827884200002,-68.84970468499998],[69.2920028000001,-68.86541106599995],[69.32585696700008,-68.87004973799996],[69.38591556100008,-68.88494231599985],[69.71802819100012,-68.86239999799994],[69.8575952480002,-68.87249114399992],[69.82545006600006,-68.89495208099993],[69.71208743600008,-68.93808359199994],[69.74024498800017,-68.94280364399995],[69.76905358200011,-68.942966404],[69.71957441500015,-68.96705494599993],[69.66098066500008,-68.98430754999985],[69.30388431100008,-69.04729583099996],[69.32007897200018,-69.05282968499998],[69.37077884200008,-69.057061456],[69.35954837300007,-69.06536223799998],[69.34978274800014,-69.07537200299996],[69.34180748800006,-69.08700937299997],[69.33570397200018,-69.09970468499992],[69.3865666020001,-69.10198333099991],[69.72641035200016,-69.16969166499993],[69.76010175900015,-69.19784921699993],[69.7615666020001,-69.2463518209999],[69.7400822270001,-69.29607512799998],[69.70557701900006,-69.32732512799996],[69.65674889400006,-69.34303150799984],[69.60450280000006,-69.35198333099996],[69.55152428500011,-69.35312265399998],[69.3973087900001,-69.32146575300001],[69.34376061300011,-69.321872654],[69.259532097,-69.36793385199996],[69.21387780000006,-69.36736419099996],[68.9705509770001,-69.30925872199984],[68.92066491000011,-69.30901458099999],[68.89437910200009,-69.31560637799997],[68.87256920700017,-69.32740650799994],[68.83155358200023,-69.36101653399996],[68.81120853000007,-69.37363046699994],[68.78907311300006,-69.38079192499998],[68.74203535200016,-69.38925546699993],[68.778493686,-69.408298435],[68.8616642590001,-69.4338518209999],[68.89771569100006,-69.45468515399998],[68.74708092500012,-69.49244557099995],[68.73340905000006,-69.50261809699998],[68.73096764400012,-69.52027760199991],[68.73340905000006,-69.55087656],[68.88795006600012,-69.54355234200001],[69.04615319100017,-69.55730559699994],[69.35523522200006,-69.61712004999997],[69.30591881600017,-69.65846119599993],[69.25652103000019,-69.68816497199995],[69.20167076900012,-69.70566171699998],[69.13640384200019,-69.71054452899996],[69.00066165500013,-69.70427825299993],[68.93002363400015,-69.71257903399999],[68.8826603520001,-69.74089934699995],[69.026621941,-69.77353281],[69.1740014980002,-69.78622812299996],[69.2068791020001,-69.79794687299994],[69.20484459700018,-69.823174738],[69.18246504000015,-69.85222747199998],[69.15528405000012,-69.87566497199994],[69.0222274100001,-69.94850025799991],[68.89258873800023,-69.99382903399992],[68.75806725400017,-70.01832447699994],[68.6062931650001,-70.02695077899995],[68.57260175900008,-70.02092864399985],[68.52857506600017,-70.00221119599996],[68.4964298840001,-69.97820403399993],[68.4995223320001,-69.95671965899999],[68.36150149800002,-69.89609140399993],[68.31137129000015,-69.86142343499995],[68.28956139400006,-69.85222747199998],[68.28077233200011,-69.84636809699985],[68.2708439460001,-69.83473072699994],[68.22950280000006,-69.77076588299994],[68.21762129000015,-69.74553801899988],[68.20240319100006,-69.72600676899998],[68.17701256600006,-69.71965911299996],[68.14763431100002,-69.72503020599993],[68.1352645190001,-69.73552825299998],[68.13249759200002,-69.75335051899995],[68.13119550900015,-69.7800432269999],[68.12842858200005,-69.79648202899996],[68.12525475400011,-69.808038019],[68.1237899100001,-69.82008228999993],[68.12623131600017,-69.83782317499993],[68.12338300900014,-69.84856536299993],[68.11255944100004,-69.85564544099998],[68.09937584700018,-69.86142343499995],[68.05713951900006,-69.89373137799988],[68.00904381600012,-69.90894947699987],[67.9104923840001,-69.92392343499998],[67.91358483200011,-69.97893645599996],[67.86540774800002,-70.002048435],[67.60547936300011,-70.01482512799996],[67.57129967500012,-70.024509373],[67.55836022200012,-70.039646092],[67.55925540500019,-70.06292083099993],[67.56617272200018,-70.09661223799992],[67.5379337900001,-70.10263437300003],[67.50635826900005,-70.11589934699995],[67.4819442070001,-70.13640715900002],[67.4758406910001,-70.16423919099998],[67.48047936300023,-70.18873463299991],[67.47868899800002,-70.2017554669999],[67.46745853,-70.2082658829999],[67.22461998800023,-70.25261809699992],[67.21794681100017,-70.26279062299997],[67.2169702480002,-70.28069426899992],[67.22095787900017,-70.29762135199991],[67.22917728000019,-70.30445728999993],[67.68067467500012,-70.27312590899989],[67.71273847700016,-70.27548593499994],[67.745860222,-70.28704192499994],[67.72885175900015,-70.30006275799994],[67.65788821700008,-70.32333749799996],[67.67790774800001,-70.34579843499995],[67.70020592500006,-70.34929778399986],[67.72461998800023,-70.3482398419999],[67.75025475400011,-70.35670338299994],[67.75456790500019,-70.3658993469999],[67.7566837900001,-70.37981536299998],[67.76246178500017,-70.39251067499995],[67.77767988400015,-70.39820728999993],[67.87037194100017,-70.39169687299994],[67.87623131600006,-70.39714934699988],[67.8802189460001,-70.40601978999993],[67.88941491000016,-70.41676197699994],[67.90796959700018,-70.43189869599993],[67.91716556100008,-70.43743254999995],[67.96094811300023,-70.45208098799996],[67.97608483200023,-70.45419687299997],[67.99236087300008,-70.45378997199997],[68.00831139400006,-70.44947682099996],[68.02165774800008,-70.44378020599999],[68.03467858200005,-70.44085051899995],[68.07667076900006,-70.45354583099993],[68.0997827480002,-70.45175546699994],[68.14942467500012,-70.43385182099989],[68.38689212300008,-70.40154387799996],[68.42212975400011,-70.40195077899986],[68.44385826900006,-70.41228606599988],[68.48698978000019,-70.45232512799991],[68.51059004000014,-70.46575286299989],[68.53630618600019,-70.47234465899997],[68.56267337300008,-70.47242603999996],[68.5883895190001,-70.46697356599992],[68.6204533210001,-70.4524065079999],[68.63257897200012,-70.448825779],[68.63965905000006,-70.44036223799998],[68.65088951900006,-70.38860442499995],[68.68799889400006,-70.35369231599992],[68.7483830090001,-70.33440520599999],[68.92351321700008,-70.30462004999998],[69.1463322270001,-70.30885182099989],[69.1679793630001,-70.31658294099992],[69.24838300900008,-70.40691497199992],[69.25749759200008,-70.43157317499991],[69.25652103000019,-70.46111419099988],[69.22925866000011,-70.56389739399998],[69.21290123800011,-70.67180755000001],[69.20541425900015,-70.69312916499987],[69.19214928500011,-70.71087004999987],[69.10385175900015,-70.7673479149999],[69.07927493600002,-70.7772762999999],[69.09978274800008,-70.79322682099992],[69.09156334700018,-70.81210702899995],[69.02906334700006,-70.85572682099986],[69.01758873800011,-70.87371184699997],[69.01628665500019,-70.89446379999998],[69.026621941,-70.918552342],[69.0076603520001,-70.94207122199997],[68.8543400400001,-71.02483489399992],[68.8641056650001,-71.03004322699991],[68.87452233200011,-71.03378671699994],[68.88526451900012,-71.03582122199988],[68.89649498800023,-71.03622812299997],[68.80990644600016,-71.079685154],[68.58741295700023,-71.14950937299987],[68.56950931100017,-71.16155364399988],[68.5478621750001,-71.1809221329999],[68.59050540500002,-71.1981747379999],[68.60320071700019,-71.20037200299998],[68.65308678500017,-71.19980234199993],[68.669688347,-71.20370859200001],[68.5223087900001,-71.24773528399993],[68.33912194099999,-71.25750090899996],[68.31910241000011,-71.26441822699995],[68.31234785200009,-71.28004322699985],[68.3230900400001,-71.309177342],[68.25945071700008,-71.32708098799988],[68.05502363400014,-71.35466887799997],[68.06226647200018,-71.35654062299994],[68.08326256600006,-71.365411066],[68.06755618600008,-71.3796526019999],[68.031016472,-71.40048593499998],[67.92318769600016,-71.48056405999995],[67.8621525400001,-71.50937265399998],[67.84400475400011,-71.52214934699992],[67.83253014400006,-71.53850676899985],[67.83570397199999,-71.55185312299994],[67.86011803500017,-71.55575937299994],[67.85401451900006,-71.56853606599998],[67.84457441500015,-71.57830169099991],[67.83253014400006,-71.58538176899998],[67.81918379000015,-71.59042734199993],[67.83619225400011,-71.59929778399996],[67.8548283210001,-71.60295989399992],[67.89421634200008,-71.60369231599995],[67.88917076900006,-71.61980559699992],[67.87907962300007,-71.63005950299996],[67.86475670700011,-71.6355119769999],[67.8479923840001,-71.63665129999993],[67.8763126960001,-71.64934661299998],[67.88233483200023,-71.665297133],[67.87061608200023,-71.68222421699997],[67.84522545700011,-71.69752369599993],[67.78882897200018,-71.71591562299997],[67.7819930350001,-71.72087981599994],[67.77279707100016,-71.73967864399998],[67.76295006600006,-71.748142185],[67.70932050900015,-71.76751067499985],[67.53337649800008,-71.797458592],[67.54786217500012,-71.8156877579999],[67.56625410200016,-71.82415129999993],[67.61117597700016,-71.82683684700001],[67.47266686300023,-71.87232838299997],[67.44906660200009,-71.89592864399992],[67.47331790500019,-71.90496184699991],[67.51002037900017,-71.93629322699998],[67.53191165500002,-71.94548919099995],[67.516856316,-71.95574309699998],[67.5130314460001,-71.96697356599996],[67.51246178500011,-71.97926197699994],[67.50700931100019,-71.99334075299988],[67.49675540500007,-72.00367603999997],[67.48389733200023,-72.01091887799991],[67.45622806100002,-72.02117278399993],[67.44760175900015,-72.02727629999993],[67.43482506600017,-72.04517994599989],[67.42652428500011,-72.05193450299991],[67.39869225400017,-72.0637346329999],[67.36988366000011,-72.07195403399999],[67.28386478000002,-72.07170989399984],[67.26221764400006,-72.08123137799994],[67.2519637380001,-72.10711028399986],[67.27198326900006,-72.12029387799998],[67.33179772200006,-72.12908294099996],[67.32699629000015,-72.13958098799985],[67.32683353000019,-72.14837004999998],[67.32984459700018,-72.15650807099983],[67.33570397200005,-72.16529713299998],[67.33716881600017,-72.1726213519999],[67.33301842500006,-72.18027109200001],[67.32129967500006,-72.19524504999995],[67.31560306100019,-72.21624114399997],[67.31519616000017,-72.26384856599998],[67.30494225400017,-72.30331796699994],[67.30860436300011,-72.31072356599992],[67.3138126960001,-72.31707122199995],[67.31511478000019,-72.32789478999996],[67.3103947270001,-72.34172942499995],[67.30274498800023,-72.35491301899991],[67.29314212300008,-72.36712004999988],[67.22917728000019,-72.4214820289999],[67.2132267590001,-72.43938567499995],[67.23064212300002,-72.45029062299993],[67.2150985040001,-72.46070728999983],[67.20240319100017,-72.47380950299998],[67.193125847,-72.48902760199996],[67.18002363400015,-72.52613697699996],[67.17188561300023,-72.53915780999996],[67.13200931100006,-72.57691822699984],[67.0838322270001,-72.63404713299991],[67.08521569100012,-72.64625416499989],[67.09131920700011,-72.65943775799984],[67.09034264400012,-72.680271092],[67.07878665500019,-72.71965911299996],[67.07081139400012,-72.737725519],[67.04802493600019,-72.7732072899999],[67.03248131600012,-72.83855559699988],[66.99976647200018,-72.90349700299984],[66.97738691500015,-72.92644622199994],[66.94239342500006,-72.94784921699997],[66.86109459700018,-72.97576262799991],[66.6941837900001,-72.99814218499995],[66.55730228000006,-73.03655364399995],[66.54232832100016,-73.04338958099997],[66.50049889400012,-73.08025481599985],[66.48292076900006,-73.09050872199995],[66.34603925900015,-73.12900155999995],[66.325938347,-73.1314429669999],[66.3367619150001,-73.13567473799992],[66.34603925900015,-73.14120859199994],[66.35425866000017,-73.14812590899992],[66.36198978000007,-73.15634530999994],[66.36931399800008,-73.16765715899992],[66.37989342500012,-73.19296640399995],[66.38542728000007,-73.20183684699991],[66.40593509200019,-73.21542734199987],[66.4304305350001,-73.22039153399992],[66.558360222,-73.23154062299993],[66.58448326900006,-73.23056405999995],[66.64112389400006,-73.22014739399997],[66.65349368600017,-73.22161223799992],[66.6643986340001,-73.228122654],[66.675059441,-73.23609791499996],[66.68653405000005,-73.24187590899993],[66.73389733200011,-73.24472421699997],[66.91814212300008,-73.19768645599996],[66.9461369150001,-73.19670989399998],[66.97339928500016,-73.20134856599992],[67.00001061300011,-73.21282317499995],[67.02295983200011,-73.21754322699996],[67.05005944100006,-73.21331145599986],[67.10059655000006,-73.19784921699993],[67.10181725400017,-73.22437916499999],[67.07886803500017,-73.24391041499996],[67.0164494150001,-73.27092864399992],[67.04997806100008,-73.28460051899995],[67.08765709700005,-73.28329843499995],[67.16325931100002,-73.26588307099989],[67.16570071700008,-73.30169036299999],[67.22315514400006,-73.31243254999991],[67.34197024800008,-73.30234140399995],[67.82178795700023,-73.18377044099998],[67.87696373800006,-73.17913176899995],[67.90105228000019,-73.17017994599993],[67.93165123800011,-73.15439218499998],[67.95915774800002,-73.14657968499998],[67.98796634200008,-73.14462655999994],[68.02230879000015,-73.14674244599986],[68.02857506600017,-73.11598072699996],[68.04493248800011,-73.08562590899999],[68.05567467500012,-73.05706145599991],[68.04428144600016,-73.03142669099985],[68.08985436300011,-73.013848566],[68.102793816,-73.00058359199996],[68.11207116000017,-72.97633228999989],[68.11736087300002,-72.95273202899995],[68.11500084700016,-72.94361744599996],[68.10767662900017,-72.92913176899992],[68.10010826900012,-72.92017994599989],[68.08228600400017,-72.90496184699991],[68.07488040500007,-72.87623463299987],[68.05437259200019,-72.86581796699997],[67.99968509200008,-72.8557268209999],[67.97584069100016,-72.84490325299991],[67.95972741000011,-72.82732512799988],[67.95362389400012,-72.80510833100001],[67.96908613400015,-72.75318775799994],[67.96070397200016,-72.73919036299988],[67.9415796230002,-72.72828541499989],[67.91863040500002,-72.71119557099986],[67.92107181100008,-72.69304778399986],[67.94800866000011,-72.67408619599993],[68.01482181100008,-72.64666106599998],[68.0315861340001,-72.6310360659999],[68.04118899800008,-72.62444426899992],[68.05469811300023,-72.620212498],[68.08350670700005,-72.6158993469999],[68.12354576900012,-72.60222747199997],[68.20191491000017,-72.58928801899995],[68.1956486340001,-72.58668385199996],[68.17823326900006,-72.57675546699987],[68.33277428500017,-72.50750090899999],[68.41358483200005,-72.48162200299988],[68.4943139980002,-72.47486744599993],[68.62183678500017,-72.48219166499986],[68.70850670700023,-72.49814218499995],[68.75228925900008,-72.493584894],[69.04216556100019,-72.42034270599996],[69.08383222700016,-72.4162736959999],[69.15503991000016,-72.42595794099995],[69.34717858200021,-72.41643645599996],[69.51514733200023,-72.43189869599989],[69.50831139400006,-72.44150155999996],[69.5001733730002,-72.44988372199992],[69.49089603000006,-72.45696379999997],[69.48064212300002,-72.46298593499998],[69.51758873800011,-72.4694963519999],[69.55925540500006,-72.46396249799987],[69.59913170700011,-72.44980234199994],[69.63184655000006,-72.43075937299993],[69.58985436300017,-72.39714934699992],[69.60914147200012,-72.36988697699992],[69.62029056100013,-72.3596330709999],[69.63656660200016,-72.35556405999995],[69.63013756600006,-72.3536109349999],[69.61744225400017,-72.34685637799996],[69.61101321700008,-72.34441497199992],[69.63868248800017,-72.32073333099991],[69.66879316500008,-72.30315520599987],[69.702321811,-72.29062265399998],[69.73812910200016,-72.28199635199996],[69.78272545700021,-72.278415623],[69.79737389400006,-72.27548593499998],[69.8445744150001,-72.25481536299988],[69.86247806100008,-72.25221119599996],[69.93091881600006,-72.26555754999998],[69.950450066,-72.2580705709999],[69.94019616000017,-72.21982187299987],[69.91602623800006,-72.19988372199997],[69.87916100400011,-72.19304778399996],[69.80494225400017,-72.18767669099991],[69.81983483200023,-72.15618254999998],[69.83529707100016,-72.1340471329999],[69.85694420700023,-72.11931731599992],[69.890391472,-72.10979583099993],[69.90796959700006,-72.11028411299992],[69.91700280000006,-72.11443450299996],[69.92383873800006,-72.11296965899999],[69.94646243600002,-72.08074309699995],[69.95411217500005,-72.07724374799986],[69.96404056100008,-72.07878997199991],[70.17204837300002,-72.06259530999995],[70.27003014400006,-72.07203541499996],[70.36475670700021,-72.05462004999998],[70.49708092500012,-72.05234140400002],[70.53003991000017,-72.04794687299994],[70.65455162900017,-71.99537525799991],[70.70020592500012,-71.9595679669999],[70.72950280000012,-71.94605885199984],[70.72315514400012,-71.94101327899998],[70.7117619150001,-71.92839934699991],[70.7054142590001,-71.92310963299994],[70.71241295700005,-71.92066822699991],[70.72624759200006,-71.91399504999985],[70.73340905000012,-71.91204192499998],[70.71111087300007,-71.90618254999995],[70.64307701900012,-71.90536874799994],[70.62859134200008,-71.9021135399999],[70.59050540500019,-71.88095468499998],[70.56690514400006,-71.87460702899995],[70.44239342500006,-71.86223723799992],[70.43287194100017,-71.85637786299998],[70.43246504000015,-71.838962498],[70.44695071700019,-71.83017343500002],[70.46664472700016,-71.827243748],[70.68726647200012,-71.8316382789999],[70.84913170700023,-71.80348072699992],[70.88054446700006,-71.793145441],[70.97120201900006,-71.75139739399988],[71.036306186,-71.74635182099993],[71.12110436300011,-71.73056405999998],[71.14966881600016,-71.73544687299987],[71.18279056100002,-71.75269947699995],[71.21241295700005,-71.75383879999991],[71.27816816500015,-71.72828541499983],[71.25025475400011,-71.71851978999989],[71.13461347700016,-71.69752369599993],[71.08204186300023,-71.67791106599998],[71.05347741000011,-71.67099374799997],[71.0657658210001,-71.65992603999993],[71.06983483200004,-71.64706796699998],[71.07203209700006,-71.63502369599989],[71.07789147200012,-71.6272111959999],[71.09546959700006,-71.62135182099996],[71.11011803500011,-71.62175872199988],[71.14258873800023,-71.6272111959999],[71.16211998800011,-71.6272111959999],[71.17644290500017,-71.62468840899999],[71.18995201900006,-71.61882903399986],[71.20671634200019,-71.60849374799994],[71.2190047540001,-71.60751718499988],[71.4104923840001,-71.63933684699991],[71.44304446700019,-71.63665129999993],[71.53980553500011,-71.61028411299992],[71.41374759200008,-71.56853606599998],[71.40007571700002,-71.56194426899991],[71.38209069100012,-71.5446916649999],[71.36817467500012,-71.53964609199997],[71.31267337300008,-71.5334611959999],[71.18043053500017,-71.49228280999994],[71.15951582100008,-71.47258879999998],[71.15821373800011,-71.4561499979999],[71.16700280000006,-71.44719817499997],[71.19947350400017,-71.43352629999993],[71.21363366000017,-71.42205169099998],[71.23698978000019,-71.39641692499993],[71.25342858200005,-71.38795338299997],[71.22437584700012,-71.3650041649999],[71.21273847700009,-71.35182057099993],[71.20248457100016,-71.33505624800001],[71.22885175900014,-71.33001067499998],[71.24781334700018,-71.323500258],[71.26417076900006,-71.3122697899999],[71.28370201900006,-71.29363372199991],[71.30062910200016,-71.286309503],[71.43555748800021,-71.27695077899988],[71.49382571700002,-71.25318775799997],[71.51189212300008,-71.24846770599996],[71.53589928500011,-71.24553801899985],[71.52605228000019,-71.22682057099996],[71.53345787900017,-71.22454192499998],[71.54818769600016,-71.21770598799998],[71.55583743600019,-71.2159156229999],[71.53386478000007,-71.20435963299997],[71.509532097,-71.20142994599995],[71.42945397200006,-71.20037200299998],[71.370371941,-71.19158294099992],[71.34156334700018,-71.18206145599993],[71.34896894600016,-71.16676197699996],[71.36068769600014,-71.15699635199994],[71.37549889400012,-71.1519507789999],[71.392344597,-71.15081145599996],[71.39519290500007,-71.11809661299993],[71.54175866000011,-70.96013762799998],[71.5838322270001,-70.95110442499988],[71.6310327480002,-70.9558244769999],[71.68604576900006,-70.95370859199997],[71.65235436300023,-70.91220468499998],[71.6673283210001,-70.90935637799994],[71.69809004000015,-70.90846119599995],[71.70573978000019,-70.90211353999982],[71.71436608200011,-70.89055754999998],[71.73047936300006,-70.88103606599996],[71.7488712900001,-70.87493254999991],[71.79932701900006,-70.87656015399992],[71.82764733200011,-70.86679452899998],[71.84815514400006,-70.84465911299992],[71.85938561300006,-70.809665623],[71.78126061300011,-70.79998137799996],[71.76758873800006,-70.79550546699998],[71.74170983200005,-70.77890390399993],[71.72681725400011,-70.77402109199987],[71.79623457100016,-70.71640390399999],[71.82154381600012,-70.704196873],[71.85035241000011,-70.69850025799994],[71.91114342500006,-70.69451262799996],[71.94011478000007,-70.688734633],[71.95069420700011,-70.68377044099995],[71.97071373800006,-70.67131926899992],[71.9832462900001,-70.6662736959999],[71.99952233200011,-70.66269296699993],[72.01343834700018,-70.66130950299986],[72.04371178500017,-70.66448333099991],[72.07292728000002,-70.6735979149999],[72.1252547540001,-70.69768645599993],[72.155528191,-70.70484791499995],[72.14844811300006,-70.66741301899992],[72.19223066500008,-70.65292734199997],[72.25277754000008,-70.65553150799997],[72.29607181100019,-70.66985442499995],[72.34595787900011,-70.67546965899996],[72.40251712300002,-70.64609140399988],[72.44109134200012,-70.60377369599996],[72.4373478520001,-70.57008228999996],[72.4510197270001,-70.56462981599992],[72.46558678500016,-70.56096770599996],[72.49496504000015,-70.557386977],[72.4773869150001,-70.54631926899995],[72.61207116000017,-70.51165129999988],[72.61882571700019,-70.50595468499999],[72.62232506600017,-70.48552825299993],[72.62647545700011,-70.47730885199984],[72.64576256600004,-70.4675432269999],[72.67058353000013,-70.463962498],[72.69564863400008,-70.4644507789999],[72.74268639400012,-70.47128671700001],[72.76547285200014,-70.46917083099991],[72.85279381600006,-70.44475676899995],[72.86963951900005,-70.4333635399999],[72.86622155000006,-70.41594817499993],[72.85222415500006,-70.39788176899991],[72.84400475400017,-70.38941822699996],[72.82154381600017,-70.37883880000001],[72.81812584700018,-70.37167734199997],[72.81755618600019,-70.36174895599996],[72.8128361340001,-70.3482398419999],[72.78003991000017,-70.31129322699994],[72.69434655000012,-70.26327890399995],[72.6564233730002,-70.22975025799991],[72.62745201900012,-70.19459400799995],[72.62566165500019,-70.17913176899992],[72.6394962900001,-70.1602515599999],[72.65528405000006,-70.14763762799993],[72.69776451900012,-70.12224700299998],[72.72901451900006,-70.10914478999993],[72.73682701900006,-70.103122654],[72.74219811300006,-70.09417083099999],[72.7483830090001,-70.08098723799995],[72.75538170700011,-70.0738257789999],[72.76628665500007,-70.06902434700001],[72.87916100400011,-70.04029713299987],[72.90642337300002,-70.02695077899995],[72.91627037900017,-70.02581145599991],[72.94312584700006,-70.02849700299998],[72.95582116000011,-70.02792734199993],[72.96949303500011,-70.02548593499998],[72.98015384200008,-70.01995208099996],[73.00098717500006,-70.00310637799996],[73.0085555350001,-69.99895598799992],[73.01929772199999,-70.00107187299994],[73.04322350400017,-70.01262786299996],[73.05616295700005,-70.01458098799992],[73.07276451900006,-70.00693124799997],[73.09083092500006,-69.99325937299993],[73.10938561300006,-69.98235442499997],[73.1282658210001,-69.98300546700001],[73.15837649800014,-69.99374765399993],[73.17953535200009,-69.99277109199987],[73.23072350400017,-69.97893645599996],[73.2107853520001,-69.95338307099996],[73.20801842500006,-69.9424781229999],[73.21745853000007,-69.93254973799999],[73.23316491000011,-69.91033294099985],[73.23975670700011,-69.88836028399993],[73.24097741000011,-69.87135182099996],[73.2488712900001,-69.85857512800001],[73.2755639980002,-69.84840260199996],[73.34644616000011,-69.83717213299997],[73.36768639400006,-69.82984791499996],[73.37769616000017,-69.82293059699995],[73.39551842500006,-69.80462004999998],[73.40552819100006,-69.79753997199985],[73.41732832100008,-69.79485442499995],[73.43897545700011,-69.79517994599989],[73.4729923840001,-69.78093840899987],[73.48812910200009,-69.7868791649999],[73.50049889400006,-69.79778411299998],[73.51392662900011,-69.803317967],[73.53736412900011,-69.803317967],[73.56055748800004,-69.806329034],[73.58041425900015,-69.81552499799997],[73.60889733200005,-69.85125090899992],[73.6290796230002,-69.85816822699991],[73.70484459700006,-69.8624813779999],[73.7267358730002,-69.852146092],[73.7465926440001,-69.83757903399997],[73.81283613400015,-69.80266692499995],[73.88404381600017,-69.7458635399999],[73.92798912900011,-69.72991301899998],[73.98650149800007,-69.71892669099994],[74.02833092500012,-69.71843840899986],[74.07488040500002,-69.71266041499989],[74.22136478000002,-69.73357512799986],[74.2351994150001,-69.73756275799992],[74.24105879000014,-69.74431731599995],[74.24488366000016,-69.75383879999995],[74.25326582100016,-69.76555754999985],[74.31690514400012,-69.80681731599998],[74.32829837300008,-69.81975676899998],[74.3226017590001,-69.83798593499998],[74.27458743600017,-69.907403253],[74.30274498800011,-69.91961028399997],[74.33619225400017,-69.91545989399995],[74.40316816500015,-69.89739348799993],[74.41228274800002,-69.92791106599988],[74.46705162900017,-69.92522551899998],[74.57496178500011,-69.89364999799989],[74.67017662900015,-69.84840260199996],[74.71745853000013,-69.83538176899998],[74.77198326900012,-69.84205494599993],[74.72022545700005,-69.88005950299986],[74.75220787900017,-69.90203215899996],[74.77588951900012,-69.90886809699988],[74.80005944100012,-69.90252044099995],[74.86719811300006,-69.868584894],[74.90398196700008,-69.85808684699992],[74.94019616000017,-69.85670338299992],[74.9720158210001,-69.86834075299994],[75.028575066,-69.91122812299993],[75.06072024800008,-69.93010833099996],[75.09107506600006,-69.93710702899995],[75.12354576900006,-69.92449309699995],[75.17994225400017,-69.87737395599996],[75.21729576900006,-69.86785247199997],[75.21062259200019,-69.84124114399992],[75.22413170700017,-69.82252369599996],[75.24887129000015,-69.81226978999993],[75.27523847700009,-69.81047942499985],[75.3016056650001,-69.817966404],[75.31788170700005,-69.83245208099996],[75.34205162900017,-69.88014088299984],[75.351328972,-69.88616301899992],[75.3782658210001,-69.88632577899999],[75.38624108200021,-69.892673435],[75.39470462300008,-69.92278411299995],[75.40267988400014,-69.93523528399997],[75.41684004000015,-69.941989842],[75.43824303500011,-69.93743254999995],[75.5247501960001,-69.90146249799999],[75.55648847700016,-69.89324309699998],[75.58253014400012,-69.89739348799993],[75.59327233200023,-69.89788176899992],[75.6028751960001,-69.89495208099999],[75.63819420700023,-69.86842213299994],[75.66138756600017,-69.86003997199988],[75.71802819100006,-69.84978606599995],[75.7605900400001,-69.83171965899993],[75.77466881600006,-69.83212655999994],[75.79957116000017,-69.837009373],[75.81397545700017,-69.83489348799999],[75.84034264400006,-69.81731536299996],[75.86101321700008,-69.79452890400003],[75.88331139400012,-69.77890390399995],[75.91627037900017,-69.78281015399995],[75.8352970710001,-69.73064544099991],[75.82203209700016,-69.716403904],[75.8146264980002,-69.69109465899997],[75.798594597,-69.66122812299997],[75.77735436300006,-69.63534921699997],[75.75391686300006,-69.62175872199992],[75.7649845710001,-69.61492278399999],[75.78931725400017,-69.603610935],[75.79948978000019,-69.596774998],[75.80396569100017,-69.5868466129999],[75.80372155000012,-69.5764299459999],[75.80795332100016,-69.56715260199987],[75.82545006600012,-69.56072356599995],[75.817637566,-69.55868906],[75.79395592500006,-69.54957447699984],[75.82048587300008,-69.52507903399999],[75.85678144600016,-69.52361419099992],[75.89600670700005,-69.52906666499996],[75.93116295700023,-69.52613697699995],[75.94646243600019,-69.51588307099983],[75.97299238400015,-69.48992278399993],[75.98975670700005,-69.48381926899985],[76.03565514400006,-69.47926197699991],[76.07992597700009,-69.46868254999985],[76.2156681650001,-69.42066822699987],[76.37818444100017,-69.4053687479999],[76.36597741000011,-69.42791106599998],[76.35718834700006,-69.44963958099996],[76.36060631600006,-69.46721770599999],[76.384450717,-69.47779713299994],[76.40601647200006,-69.47503020599989],[76.43262780000006,-69.46428801899994],[76.45777428500017,-69.45045338299997],[76.5177514980002,-69.403985284],[76.55958092500012,-69.380303644],[76.60515384200008,-69.365166925],[76.68295332100016,-69.35312265399998],[76.73316491000011,-69.35076262799993],[76.7566837900001,-69.35507577900003],[76.7835392590001,-69.36353932099998],[76.79566491000017,-69.36435312299999],[76.80958092500006,-69.36060963299987],[76.82813561300004,-69.35198333099996],[76.8323673840001,-69.34628671699997],[76.83082116000011,-69.33717213299997],[76.8323673840001,-69.31951262799996],[76.83187910200009,-69.30559661299998],[76.8274845710001,-69.29656340899989],[76.8274845710001,-69.28972747199995],[76.83985436300006,-69.28297291499993],[76.86833743600008,-69.27483489399991],[76.89771569100004,-69.27206796699994],[76.92676842500012,-69.27483489399991],[76.94483483200023,-69.27857838299994],[76.96127363400015,-69.27597421699994],[76.98658287900017,-69.25953541499986],[76.97999108200011,-69.25505950299998],[76.96778405000005,-69.24358489399985],[76.96119225400017,-69.239353123],[77.00049889400005,-69.21168385199984],[77.06348717500006,-69.201836847],[77.23796634200019,-69.20378997199995],[77.26441491000016,-69.19890715899989],[77.31869550900014,-69.1828752579999],[77.4316512380001,-69.18466562299997],[77.44312584700006,-69.18962981599992],[77.45777428500011,-69.19980234199997],[77.47071373800006,-69.20574309699997],[77.48218834700018,-69.20403411299998],[77.50782311300006,-69.18873463299994],[77.53321373800006,-69.17986419099998],[77.84164472700009,-69.13005950299991],[77.82683353,-69.11174895599986],[77.823496941,-69.09661223799995],[77.83130944100012,-69.08318450299996],[77.84913170700005,-69.0700822899999],[77.87964928500011,-69.05331796699997],[77.88900800900015,-69.04583098799989],[77.91228274800008,-69.01531340899994],[77.92261803500016,-69.00758228999996],[77.94849694100017,-69.00123463299984],[78.04395592500006,-69.00261809699991],[77.94776451900006,-68.97763437299997],[77.96705162900017,-68.95631275799992],[77.98414147200006,-68.94280364399995],[78.00440514400006,-68.93368905999995],[78.03191165500007,-68.92506275799995],[77.93620853000002,-68.9196916649999],[77.94361412900011,-68.89869557099986],[77.9397892590001,-68.87607187299999],[77.93962649800002,-68.85613372199991],[77.95753014400006,-68.84343840899994],[77.96558678500011,-68.83928801899991],[77.97803795700021,-68.82537200299993],[77.98560631600017,-68.82008228999986],[78.11866295700011,-68.76392994599993],[78.1429142590001,-68.75896575299998],[78.35084069100017,-68.75204843499998],[78.37623131600017,-68.74602629999998],[78.41846764400012,-68.72600676899992],[78.44410241000016,-68.71917083099999],[78.66993248800011,-68.69850025799998],[78.62647545700005,-68.67050546699986],[78.57146243600019,-68.65447356599988],[78.5127059250001,-68.64853280999995],[78.45826256599999,-68.65007903399999],[78.4773869150001,-68.64397551899991],[78.53158613400015,-68.61484140399995],[78.54460696700014,-68.60100676899995],[78.54249108200011,-68.59205494599983],[78.52418053500017,-68.57691822699984],[78.51612389400012,-68.56715260199998],[78.51148522200018,-68.551934503],[78.51148522200018,-68.53460051899992],[78.51612389400012,-68.51848723799995],[78.52670332100016,-68.50628020599996],[78.51148522200018,-68.50042083099993],[78.49634850400011,-68.49879322699991],[78.4643660820001,-68.50164153399994],[78.46168053500011,-68.48552825299997],[78.46729576900012,-68.47649504999995],[78.47877037900017,-68.47161223799998],[78.49390709700006,-68.46754322699994],[78.50147545700011,-68.46062590899992],[78.50652103000002,-68.43580494599998],[78.51124108200023,-68.42506275799997],[78.53199303500011,-68.40097421699994],[78.54981530000012,-68.37468840899993],[78.5599064460001,-68.36467864399985],[78.60401451900006,-68.3488095029999],[78.74659264400006,-68.262465102],[79.13135826900006,-68.14771900799994],[79.44422448000014,-68.09295012799993],[79.75709069100006,-68.0381812479999],[79.8670353520001,-68.03191497199995],[80.30205325600011,-67.95830657349993],[80.73707116000011,-67.88469817499993],[80.79493248800006,-67.88201262799994],[80.87623131600006,-67.89234791499986],[81.1928817065001,-67.83302174299997],[81.50953209700016,-67.7736955709999],[81.5686955090001,-67.77337004999998],[81.87671959700018,-67.70012786299993],[81.88819420700023,-67.70045338299987],[81.91553795700011,-67.70777760199996],[81.93018639400012,-67.70924244599983],[81.94304446700002,-67.70631275799991],[81.99805748800011,-67.684665623],[82.0594181650001,-67.67180754999998],[82.12175540500019,-67.66961028399997],[82.23585045700005,-67.68938567499993],[82.24366295700005,-67.69361744599993],[82.25049889400012,-67.69939544099991],[82.26091556100019,-67.70517343499996],[82.27881920700023,-67.710219008],[82.28825931100008,-67.70810312299997],[82.29712975400011,-67.70338307099996],[82.31299889400012,-67.70045338299987],[82.34880618600002,-67.70598723799998],[82.36198978000019,-67.70419687299999],[82.39625084700006,-67.67229583099997],[82.42310631600004,-67.65846119599996],[82.51441491000011,-67.62818775799997],[82.52808678500017,-67.62656015399995],[82.544200066,-67.62232838299994],[82.5710555350001,-67.607354425],[82.5861922540001,-67.6034481749999],[82.6700952480002,-67.60955169099998],[82.78150475400011,-67.59856536299985],[82.80762780000006,-67.60320403399994],[82.85385175900014,-67.62672291499982],[82.87728925900015,-67.63567473799995],[82.90503991,-67.63681405999998],[82.99594160200014,-67.60963307099996],[83.02955162900011,-67.60572682099998],[83.08204186300006,-67.61109791499992],[83.10613040500019,-67.61060963299994],[83.1600041020001,-67.58855559699995],[83.18726647200012,-67.58114999799987],[83.2153426440001,-67.57903411299995],[83.24610436300006,-67.5822893209999],[83.29590905000006,-67.59628671699987],[83.32048587300008,-67.60759856599995],[83.36255944100006,-67.63543059699991],[83.38868248800011,-67.64421965899996],[83.47266686300006,-67.65781015400002],[83.61597741000017,-67.63836028399993],[83.62761478000019,-67.63250090899989],[83.6341251960001,-67.62224700299996],[83.64039147200006,-67.61003997199998],[83.65056399800008,-67.598239842],[83.65642337300014,-67.5935197899999],[83.58179772200018,-67.57089609199993],[83.50196373800006,-67.56552499799997],[83.430918816,-67.54558684699998],[83.38257897200012,-67.47958749799997],[83.38672936300006,-67.4465471329999],[83.41684004000015,-67.42815520599997],[83.58472741,-67.39885833099996],[83.62330162900011,-67.38339609200003],[83.6492619150001,-67.35295989399988],[83.67676842500012,-67.32935963299994],[83.72413170700017,-67.31365325299997],[84.10157311300011,-67.26189544099995],[84.24968509200002,-67.22405364399991],[84.2618921230002,-67.21770598799998],[84.29127037900011,-67.19117603999983],[84.30543053500006,-67.1817359349999],[84.33448326900012,-67.16912200299993],[84.41407311300011,-67.12379322699991],[84.43873131600017,-67.11598072699992],[84.49146569100017,-67.11012135199996],[84.59669030000012,-67.11239999799994],[84.96216881600006,-67.07610442499985],[85.0703231130001,-67.08855559699995],[85.01563561300006,-67.1290015599999],[85.04102623800011,-67.13103606599994],[85.09489993600002,-67.12607187299996],[85.1162215500001,-67.13494231599992],[85.14112389400012,-67.15162525799995],[85.16700280000006,-67.15911223799985],[85.31177819100006,-67.16871510199991],[85.36011803500006,-67.18157317499994],[85.41895592500012,-67.1903622379999],[85.44288170700011,-67.18938567499993],[85.45484459700006,-67.18499114399995],[85.47413170700004,-67.173109633],[85.48747806100008,-67.17156340899996],[85.61646569100006,-67.18816497200001],[85.64234459700006,-67.18328215899994],[85.69727623800011,-67.16513437299994],[85.72632897200012,-67.16033294099995],[85.77881920700021,-67.162204685],[85.88005618600002,-67.13779062299997],[85.89014733200011,-67.1320940079999],[85.90593509200002,-67.11028411299985],[85.9142358730002,-67.10116952899995],[85.92562910200016,-67.09465911299995],[85.97917728000019,-67.07642994599996],[86.00684655000006,-67.07341887799996],[86.01937910200009,-67.06959400799995],[86.03296959700006,-67.061130467],[86.04175866,-67.0529924459999],[86.05128014400012,-67.04607512799998],[86.06714928500006,-67.04094817499998],[86.12281334700006,-67.03753020599996],[86.23511803500006,-67.04827239399998],[86.55827884200008,-67.02809010199987],[86.58716881600017,-67.03394947699991],[86.64380944100017,-67.05828215899996],[86.66814212300001,-67.064548435],[86.69678795700011,-67.06389739399988],[86.91627037900011,-67.01181406],[87.01319420700011,-66.96502044099994],[87.10865319100012,-66.93328215899999],[87.47527103000007,-66.87395598799992],[87.58204186300006,-66.84254322699991],[87.63990319100006,-66.83684661299992],[87.69857832100014,-66.82366301899997],[87.72901451900012,-66.82048919099991],[87.8177189460001,-66.82431406],[87.84473717500006,-66.81902434699985],[87.91431725400017,-66.78394947699987],[87.93930097700014,-66.77507903399992],[87.96566816500015,-66.77027760199984],[88.13510175900015,-66.77263762799988],[88.16325931100002,-66.77792734199994],[88.18669681100019,-66.7863908829999],[88.19825280000006,-66.79265715899994],[88.20753014400012,-66.7997372379999],[88.2156681650001,-66.813083592],[88.22510826900012,-66.844659113],[88.23015384200008,-66.85393645599996],[88.25123131600017,-66.85955169099995],[88.33432050900015,-66.84628671700001],[88.38819420700005,-66.84661223799995],[88.441172722,-66.841241144],[88.61101321700019,-66.79680754999998],[88.68441816500008,-66.79517994599996],[88.7347111340001,-66.78492603999993],[88.74480228000006,-66.78492603999993],[88.89307701900006,-66.80950286299995],[88.92115319100006,-66.80689869599995],[89.0034285820001,-66.78826262799996],[89.03516686300006,-66.78866952899988],[89.1287541020001,-66.80950286299995],[89.18767337300008,-66.81292083099996],[89.305349155,-66.80584075299998],[89.3645939460001,-66.81218840899993],[89.44654381600006,-66.83709075299996],[89.47575931100019,-66.84156666499993],[89.59986412900017,-66.8459611959999],[89.65430748800006,-66.84042734199997],[89.75904381600006,-66.80120208099996],[89.81072024800007,-66.78875090899986],[89.88591556100008,-66.78704192499984],[89.94092858200023,-66.79387786299995],[90.08757571700019,-66.77019622199985],[90.14893639400012,-66.77117278399992],[90.20964603000007,-66.78004322699996],[90.27702884200008,-66.80136484199993],[90.29151451900012,-66.80266692499993],[90.32325280000006,-66.79949309699995],[90.33521569100016,-66.80120208099996],[90.34839928500006,-66.80689869599995],[90.372325066,-66.82073333099986],[90.39869225400011,-66.81959400799991],[90.4270939460001,-66.80038827899995],[90.47103925900015,-66.75367603999995],[90.49170983200005,-66.74285247199997],[90.54444420700005,-66.74407317499998],[90.56641686300011,-66.73951588299994],[90.61841881600006,-66.71819426899988],[90.67383873800011,-66.70517343499998],[90.71119225400017,-66.70867278399989],[90.72242272200016,-66.70623137799986],[90.80128014400006,-66.67343515399993],[91.00342858200023,-66.613946222],[91.059255405,-66.58611419099985],[91.08611087300018,-66.57805754999991],[91.14519290500007,-66.57382577899998],[91.37940514400005,-66.60027434699995],[91.43677819100017,-66.59596119599996],[91.64226321700019,-66.5582007789999],[91.6967879570001,-66.53728606599985],[91.78174889400012,-66.53785572699991],[91.96013431100008,-66.49822356599998],[92.0652775400001,-66.51441822699994],[92.16797936300006,-66.51165129999988],[92.2169702480002,-66.52027760199996],[92.36980228000007,-66.5949846329999],[92.42269941500008,-66.602308852],[92.5068465500001,-66.59758879999998],[92.644216342,-66.62623463299987],[92.76026451900006,-66.63388437299997],[92.81592858200011,-66.62753671699996],[92.87476647200018,-66.61272551899998],[92.97217858200021,-66.57415129999991],[93.02133222700016,-66.56218840899989],[93.07447350400017,-66.56536223799995],[93.1857202480002,-66.58953215899986],[93.2130639980002,-66.59042734199994],[93.29615319100016,-66.58033619599998],[93.45826256600006,-66.58700937300003],[93.56755618600008,-66.57935963299991],[93.62354576900012,-66.58261484199994],[93.73121178500017,-66.60426197699994],[93.7112736340001,-66.632500909],[93.69922936300006,-66.64364999799993],[93.68336022200006,-66.65178801899985],[93.68913821700012,-66.65545012799998],[93.6995548840001,-66.66464609199997],[93.70557701900012,-66.66814544099995],[93.69109134200008,-66.68287525799994],[93.7005314460001,-66.70623137799986],[93.72071373800011,-66.73023853999999],[93.73926842500012,-66.74716562299997],[93.75375410200016,-66.74431731599992],[93.88786868600002,-66.68670012799994],[93.91504967500006,-66.68572356599998],[93.93824303500017,-66.69198984199994],[93.96119225400017,-66.70452239399985],[93.96924889400012,-66.71998463299987],[93.94825280000005,-66.73430754999985],[93.99708092500006,-66.73137786299992],[94.07813561300011,-66.71795012799993],[94.0950626960001,-66.71233489399992],[94.10499108200004,-66.70378997199991],[94.11280358200004,-66.68718840899986],[94.12012780000006,-66.67815520599994],[94.13103274800007,-66.67343515399993],[94.29542076900012,-66.65341562299986],[94.42603600400017,-66.621677342],[94.44556725400017,-66.61003997199991],[94.46509850400011,-66.59042734199994],[94.49097741000004,-66.56975676899992],[94.51905358200005,-66.55250416499983],[94.54509524800001,-66.54314544099998],[94.70394941500015,-66.512790623],[94.78565514400006,-66.50701262799986],[94.90528405000005,-66.47698333099999],[94.91716556100002,-66.47535572699996],[94.93100019600008,-66.478610935],[94.95557701900005,-66.48796965899996],[94.99732506600016,-66.48853932099983],[95.02116946700008,-66.49260833099989],[95.06910241000017,-66.508884373],[95.09587649800008,-66.51433684699995],[95.17465254000015,-66.50725676899998],[95.22681725400017,-66.51116301899997],[95.27865644600016,-66.5271135399999],[95.32105553500004,-66.55673593500003],[95.3450626960001,-66.60076262799994],[95.3445744150001,-66.61321379999997],[95.34245853000019,-66.62623463299987],[95.3450626960001,-66.6373023419999],[95.35914147200006,-66.64234791499993],[95.49317467500012,-66.65398528399993],[95.5213322270001,-66.65154387799998],[95.51197350400017,-66.65992603999996],[95.48194420700011,-66.70818450299998],[95.49675540500019,-66.700290623],[95.517344597,-66.70208098799989],[95.55616295700005,-66.71062590899993],[95.57667076900012,-66.70631275799984],[95.63697350400011,-66.67913176899992],[95.65211022200006,-66.67685312299994],[95.6837671230002,-66.67652760199992],[95.6993921230002,-66.6748999979999],[95.76091556100006,-66.65911223799995],[95.825938347,-66.64999765399993],[95.85889733200004,-66.65081145599996],[95.8907983730002,-66.65740325299986],[95.95020592500006,-66.65748463299984],[96.00424238400015,-66.63005950299997],[96.05600019600014,-66.59441497199992],[96.10865319100017,-66.57008228999986],[96.13461347700014,-66.5733374979999],[96.18051191500015,-66.60588958099996],[96.20720462300008,-66.61353932099989],[96.235524936,-66.61003997199991],[96.29224694100012,-66.59531015399999],[96.40739993600008,-66.58375416499999],[96.43376712300002,-66.58700937300003],[96.55347741000006,-66.61532968499998],[96.61036217500006,-66.61484140399999],[96.97413170700011,-66.50839609199993],[97.08073978,-66.49228280999995],[97.19011478000019,-66.499444269],[97.2351994150001,-66.50798919099992],[97.25562584700006,-66.51653411299995],[97.2705184250001,-66.53167083099994],[97.33708743600019,-66.58131275799995],[97.41773522200006,-66.56731536299998],[97.43881269600016,-66.57195403400002],[97.4480900400001,-66.60247161299995],[97.45191491,-66.61101653399989],[97.4632267590001,-66.62444426899988],[97.47169030000005,-66.63128020599999],[97.4817814460001,-66.63502369599983],[97.49773196700014,-66.63892994599983],[97.52369225400011,-66.64234791499993],[97.57691491000011,-66.64177825299996],[97.60271243600002,-66.64527760199995],[97.67204837300007,-66.67717864399997],[97.6953231130001,-66.67864348799992],[97.74057050900008,-66.65829843499994],[97.80437259200008,-66.591403904],[97.84009850400017,-66.56609465899997],[97.88550866000017,-66.55527109199997],[97.9773869150001,-66.54713307099996],[98.06910241000017,-66.50823333099996],[98.16700280000012,-66.48406340899996],[98.21208743600019,-66.46070728999996],[98.24781334700006,-66.44793059699992],[98.52759850400015,-66.44898853999997],[98.53711998800004,-66.45435963299994],[98.5535587900001,-66.47356536299998],[98.56324303500006,-66.48072682099993],[98.57536868600002,-66.486016534],[98.54249108200005,-66.553480727],[98.52003014400006,-66.584079685],[98.49073326900012,-66.60377369599986],[98.53980553500006,-66.62273528399996],[98.62330162900011,-66.60930754999988],[98.91374759200014,-66.50457122200001],[98.99431399800008,-66.49195728999993],[99.06934655000012,-66.48992278399997],[99.05323326900006,-66.52516041499986],[99.00733483200005,-66.55291106599992],[98.71648196700008,-66.64275481599994],[98.7561955090001,-66.65007903399993],[98.77328535200009,-66.65740325299986],[98.78598066500008,-66.67131926899992],[98.8061629570001,-66.71347421699996],[98.81763756600006,-66.72828541499993],[98.70525149800008,-66.77434661299996],[98.7322697270001,-66.78736744599996],[98.74594160200016,-66.79176197699994],[98.76099694100016,-66.79387786299995],[98.77588951900012,-66.79876067499991],[98.78093509200008,-66.81031666499996],[98.78012129000015,-66.84539153399993],[98.78638756600016,-66.87851327899998],[98.80250084700006,-66.90064869599986],[98.82618248800006,-66.9099260399999],[98.85645592500006,-66.90422942499993],[98.88453209700018,-66.88274504999998],[98.88135826900012,-66.86060963299991],[98.87134850400011,-66.83619557099996],[98.87973066500008,-66.80730559699995],[98.90503991000004,-66.783298435],[98.99138431100008,-66.72429778399996],[99.003672722,-66.70940520599991],[99.00912519600016,-66.69963958099996],[99.01726321700008,-66.69451262799996],[99.03736412900011,-66.69426848799992],[99.04932701900006,-66.69866301899997],[99.06177819100017,-66.70818450299998],[99.08350670700004,-66.72909921699994],[99.09555097700016,-66.73796965899997],[99.10759524800008,-66.74325937299997],[99.1570744150001,-66.75261809699991],[99.16944420700004,-66.75310637799997],[99.17676842500006,-66.74586353999996],[99.18246504000015,-66.7263322899999],[99.19922936300006,-66.71005624799996],[99.23170006600004,-66.70134856599988],[99.29712975400011,-66.69719817499993],[99.33204186300011,-66.70012786299995],[99.34717858200011,-66.69882577899995],[99.363942905,-66.69101327899988],[99.38965905000006,-66.66936614399988],[99.40284264400012,-66.662774347],[99.42253665500007,-66.66220468499994],[99.42286217500012,-66.61874765399998],[99.46851647200006,-66.58228932099993],[99.52955162900011,-66.5573869769999],[99.57618248800011,-66.54851653399994],[99.54525800900008,-66.59596119599996],[99.53630618600008,-66.6221656229999],[99.53956139400012,-66.64820728999996],[99.56023196700019,-66.67205169099995],[99.58399498800011,-66.66904062299994],[99.60767662900011,-66.6506486959999],[99.6272892590001,-66.62908294099998],[99.67839603000007,-66.59221770599993],[99.80713951900006,-66.55282968499995],[99.8675236340001,-66.52646249799994],[99.89918053500017,-66.50823333099996],[99.9231876960001,-66.49968840899994],[99.94890384200008,-66.4981421849999],[99.98536217500012,-66.5002580709999],[100.00123131600004,-66.49871184699997],[100.03646894600008,-66.49065520599993],[100.05030358200011,-66.49089934699988],[100.06983483200005,-66.49529387799996],[100.08545983200005,-66.49521249799997],[100.10132897200018,-66.49130624799997],[100.13607832100014,-66.47763437299993],[100.16627037900017,-66.46021900799997],[100.18132571700008,-66.45484791499982],[100.20045006600006,-66.452732029],[100.21534264400012,-66.45240650799998],[100.22982832100014,-66.45045338299994],[100.2796330090001,-66.43108489399992],[100.30827884200019,-66.43254973799996],[100.32276451900006,-66.4491513],[100.31226647200018,-66.48357512799997],[100.33448326900012,-66.4821916649999],[100.4213973320001,-66.45305754999993],[100.44703209700018,-66.45566171700003],[100.46631920700011,-66.47144947699996],[100.50001061300011,-66.51873137799993],[100.53044681100008,-66.49309661299988],[100.5662541020001,-66.47665780999988],[100.64389082100008,-66.45769622199995],[100.61890709700012,-66.44817473799996],[100.52800540500007,-66.45142994599989],[100.56723066500015,-66.42457447699984],[100.54428144600016,-66.41472747199991],[100.47055097700014,-66.39739348799992],[100.821543816,-66.3845354149999],[100.85499108200005,-66.37965260199984],[100.88770592500012,-66.36663176899994],[101.07146243600008,-66.26702239399998],[101.09986412900011,-66.24529387800001],[101.12232506600012,-66.21933359199993],[101.12989342500006,-66.20191822699987],[101.13445071700019,-66.18718840899996],[101.1425887380001,-66.17693450299993],[101.16138756600017,-66.17351653399993],[101.20142662900011,-66.17213307099995],[101.2195744150001,-66.16790129999993],[101.26579837300018,-66.14690520599997],[101.27491295700011,-66.13844166499993],[101.29444420700005,-66.11199309699994],[101.30616295700005,-66.1001929669999],[101.31902103000019,-66.09002044099995],[101.33106530000012,-66.08391692499995],[101.44011478000007,-66.06894296699993],[101.47624759200019,-66.05836353999997],[101.16871178500017,-66.02947356599995],[101.18287194100017,-66.02361419099992],[101.19752037900011,-66.0193010399998],[101.22779381600017,-66.0145809879999],[101.21851647200006,-66.00741952899986],[101.20818118600002,-66.0025367169999],[101.1966251960001,-66.00017669099985],[101.18482506600006,-66.00009530999995],[101.23943118600019,-65.98406340899996],[101.28728274800012,-65.96135833099993],[101.33643639400005,-65.94402434699992],[101.57422936300011,-65.94898853999989],[101.68311608200011,-65.96721770599996],[102.01050866000006,-65.95924244549987],[102.33790123800011,-65.95126718499995],[102.5110783210001,-65.89120859199986],[102.59986412900017,-65.87102629999993],[102.7137150400001,-65.8612606749999],[102.91065514400005,-65.8793270809999],[102.96705162900015,-65.8776180969999],[103.05095462300008,-65.88884856599991],[103.06576582100016,-65.89299895599984],[103.07129967500006,-65.90252044099985],[103.074961785,-65.91415780999995],[103.08513431100008,-65.92489999799986],[103.09669030000006,-65.92571379999987],[103.14551842500006,-65.91619231599988],[103.1585392590001,-65.91676197699994],[103.20134524800008,-65.92839934699995],[103.278086785,-65.92424895599991],[103.30600019600016,-65.9281552059999],[103.31804446700008,-65.9328752579999],[103.33887780000005,-65.94548919099996],[103.34913170700005,-65.94988372199988],[103.41358483200005,-65.95745208099984],[103.5599064460001,-66.00221119599995],[103.61052493600008,-66.00994231599998],[103.6406356130001,-66.00798919099992],[103.72925866000011,-65.9821916649999],[103.75928795700005,-65.9769833309999],[103.90821373800006,-65.97877369599979],[104.1621199880001,-66.01974863099983],[104.41602623800006,-66.06072356599991],[104.57325280000006,-66.13103606599995],[104.63021894600008,-66.141208592],[104.863047722,-66.14299895599999],[105.29053795700005,-66.21607838299997],[105.35084069099999,-66.208591404],[105.36182701900006,-66.21062590899993],[105.40552819100017,-66.23072682099989],[105.44800866000004,-66.23259856599995],[105.46045983200005,-66.23707447699992],[105.48560631600006,-66.2540015599999],[105.49854576900006,-66.25994231599992],[105.9005639980002,-66.31996021949989],[106.30258222700016,-66.37997812299994],[106.3230900400001,-66.38892994599996],[106.32553144600016,-66.39723072699987],[106.3243921230002,-66.40886809699995],[106.32496178500017,-66.42083098799998],[106.3322860040001,-66.43092213299987],[106.34571373800006,-66.4333635399999],[106.36150149800002,-66.42880624799994],[106.3763126960001,-66.420342706],[106.38697350400004,-66.41179778399989],[106.410411004,-66.40162525799992],[106.59864342500005,-66.41415780999994],[106.64429772200018,-66.426364842],[106.69874108200011,-66.47031015399995],[106.72234134200014,-66.46892669099994],[106.7678328790001,-66.45574309700001],[107.11695397200012,-66.46257903399993],[107.33277428500006,-66.49830494599995],[107.43425540500007,-66.52849700299988],[107.77914472700016,-66.551690363],[107.80111738400015,-66.56178150799995],[107.84652754000015,-66.59295012799996],[107.86988366000006,-66.613946222],[107.87916100399998,-66.63307057099996],[107.8670353520001,-66.65276458100001],[107.84058678500006,-66.66668059699998],[107.78711998800011,-66.68287525799994],[107.76490319100006,-66.69402434699997],[107.70191491000006,-66.73772551899995],[107.71387780000006,-66.7566057269999],[107.71566816500015,-66.78736744599996],[107.7098087900001,-66.84758879999993],[107.72510826900005,-66.842950128],[107.73780358200011,-66.83587004999985],[107.784841342,-66.79729583099996],[107.79297936300004,-66.79208749799996],[107.8005477220001,-66.79094817499994],[107.81812584700006,-66.79355234199994],[107.82536868600008,-66.79208749799996],[107.83838951900006,-66.77947356599998],[107.85914147200006,-66.74684010199994],[107.8714298840001,-66.73414478999989],[107.8855900400001,-66.72771575299997],[108.04322350400005,-66.67896900799995],[108.13575280000012,-66.6247697899999],[108.16504967500006,-66.62135182099989],[108.2070418630001,-66.62672291499995],[108.20215905000006,-66.65341562299986],[108.21306399800002,-66.67066822699996],[108.25294030000012,-66.69695403399999],[108.27003014400006,-66.71697356599994],[108.2827254570001,-66.7383765599999],[108.29818769600016,-66.75644296699993],[108.32341556100019,-66.76628997199985],[108.3523869150001,-66.76702239399988],[108.37720787900005,-66.76474374799999],[108.40186608200005,-66.76555755000001],[108.47657311300004,-66.79461028399999],[108.50066165500019,-66.79957447699994],[108.57642662900004,-66.80584075299998],[108.6219181650001,-66.81804778399996],[108.66187584700018,-66.84221770599997],[108.69629967500012,-66.88298919099985],[108.7088322270001,-66.91912200299988],[108.71387780000012,-66.92742278399994],[108.72315514400006,-66.93254973799988],[108.76172936300006,-66.94150156],[108.832774285,-66.96803150799987],[108.85865319100006,-66.97136809699998],[108.88184655000005,-66.96843840899996],[108.95045006600017,-66.95094166499992],[108.98650149800002,-66.95330169099996],[108.99708092500012,-66.9514299459999],[108.99878991000011,-66.94752369599989],[108.99773196700002,-66.94085051899994],[108.9974064460001,-66.93385182099996],[109.00131269600008,-66.928969008],[109.07984459700006,-66.89674244599986],[109.12501061300011,-66.88469817499985],[109.14958743600019,-66.8853492169999],[109.2234806650001,-66.90471770599991],[109.24830162900017,-66.90398528399989],[109.27084394600014,-66.90097421699997],[109.29297936300011,-66.90056731599988],[109.31690514400005,-66.907321873],[109.36231530000005,-66.92701588299994],[109.38575280000006,-66.93271249799993],[109.60987389400006,-66.91969166499995],[109.60352623800006,-66.91334400799991],[109.59253991000017,-66.89861419099991],[109.58627363400015,-66.892185154],[109.61915123800006,-66.877048435],[109.8478296230002,-66.85442473799995],[109.80518639400005,-66.82927825299996],[109.90552819100004,-66.80771249799996],[109.88217207100016,-66.79924895600001],[110.0997827480002,-66.76604583099999],[110.15609785200016,-66.74797942499998],[110.25391686300006,-66.69695403399999],[110.39031009200006,-66.6597632789999],[110.41765384200002,-66.65593840899989],[110.44516035200014,-66.65829843499994],[110.50318444100006,-66.67164478999986],[110.55518639400012,-66.69019947699987],[110.6053166020001,-66.71697356599994],[110.63054446700008,-66.72576262799993],[110.65739993600008,-66.72795989399992],[110.74415123800004,-66.71453215899993],[110.733571811,-66.69573333099997],[110.71534264400006,-66.68352629999997],[110.67261803500006,-66.66765715899996],[110.70541425900014,-66.62460702899993],[110.67107181100017,-66.61207447699994],[110.65121504000008,-66.59392669099994],[110.64478600400017,-66.56796640399995],[110.6507267590001,-66.53191497199998],[110.6264754570001,-66.52906666499995],[110.6018986340001,-66.52947356599994],[110.68873131599999,-66.48902760199991],[110.7050887380001,-66.47234465899996],[110.7102970710001,-66.42620208099986],[110.72494550900008,-66.40545012799996],[110.635996941,-66.38502369599998],[110.61166425900015,-66.37265390399995],[110.5949813160001,-66.3615861959999],[110.58008873800006,-66.35572682099996],[110.54444420700011,-66.35182057099996],[110.52637780000006,-66.34726327899999],[110.511973504,-66.33717213299995],[110.49984785200009,-66.32382577899995],[110.48902428500006,-66.30877044099991],[110.51856530000006,-66.29566822699987],[110.5486759770001,-66.27507903399993],[110.59986412900017,-66.22779713299995],[110.62330162900005,-66.21697356599988],[110.68409264400006,-66.21062590899993],[110.707286004,-66.19402434699998],[110.71159915500013,-66.18059661299998],[110.710703972,-66.16855234199997],[110.71192467500006,-66.15781015399996],[110.722422722,-66.148044529],[110.76026451900006,-66.12916432099999],[110.80079186300006,-66.11598072699994],[110.92709394600016,-66.05462004999985],[110.95435631600006,-66.048272394],[111.01417076900012,-66.04387786299992],[111.31487063900008,-65.98837656049992],[111.61557050900008,-65.9328752579999],[111.84742272200006,-65.93474700299988],[112.30640709700006,-65.88034433399996],[112.765391472,-65.82594166499987],[112.87867272200012,-65.79843515399992],[113.20362389400012,-65.76539478999996],[113.22217858200011,-65.77255624799999],[113.25342858200005,-65.81511809699995],[113.27564537900005,-65.83212655999992],[113.30616295700005,-65.84238046699986],[113.42359459700016,-65.86012135199985],[113.52833092500023,-65.89657968499992],[113.66260826900005,-65.915134373],[113.77556399800002,-65.9485002579998],[113.79737389400012,-65.96021900799987],[113.84310957100004,-65.99334075299993],[113.89478600400005,-66.02166106599985],[114.00367272200006,-66.06129322699991],[114.06299889400012,-66.06845468500003],[114.08773847699999,-66.07577890399995],[114.13502037900005,-66.11834075299998],[114.16138756600006,-66.12835051899998],[114.19076582100016,-66.12981536299985],[114.22380618600019,-66.12664153399997],[114.25456790500019,-66.13437265399998],[114.29078209700012,-66.17986419099995],[114.3193465500001,-66.18816497199994],[114.34034264400023,-66.18767669099995],[114.35124759200018,-66.19166432099993],[114.36068769600003,-66.19915129999998],[114.37769616000017,-66.20891692499991],[114.39087975400005,-66.21266041499996],[114.403005405,-66.21404387799986],[114.41578209700016,-66.21705494599986],[114.42986087300018,-66.22600676899998],[114.40674889400016,-66.23593515399998],[114.40259850400004,-66.25359465899999],[114.40137780000012,-66.27353280999996],[114.38770592500006,-66.28980885199991],[114.33871504000004,-66.31414153399989],[114.32056725399998,-66.33114999799994],[114.30941816499998,-66.35702890399995],[114.33366946700006,-66.35182057099996],[114.41602623800011,-66.36785247199994],[114.40886478000019,-66.37078215899996],[114.387950066,-66.38241952899998],[114.42953535199999,-66.401788019],[114.42408287900017,-66.40601978999983],[114.41391035200004,-66.41578541499996],[114.40821373800023,-66.41961028399997],[114.48340905000012,-66.41521575299998],[114.35189863400015,-66.47771575299993],[114.32243899800008,-66.50904713299997],[114.67465254000015,-66.47877369599989],[114.76628665500007,-66.49382903399999],[114.81202233200005,-66.49521249799997],[114.89625084700016,-66.47242603999986],[115.03939863400015,-66.48267994599998],[115.08806399800018,-66.47763437299993],[115.11345462300018,-66.47812265399993],[115.13257897200019,-66.48796965899996],[115.15186608200023,-66.50660572699994],[115.17164147200005,-66.51873137799993],[115.19385826900012,-66.52516041499986],[115.26514733200011,-66.53264739399992],[115.34961998800017,-66.55575937299987],[115.43458092500012,-66.55917734199996],[115.59896894600016,-66.59286874799997],[115.64942467500005,-66.61451588299997],[115.68189537900015,-66.64275481599994],[115.66895592500023,-66.67343515399993],[115.68262780000012,-66.68572356599998],[115.69809004000004,-66.69622161299995],[115.70826256600016,-66.70566171699997],[115.70785566500017,-66.71412525799991],[115.70541425900004,-66.72283294099991],[115.70915774800008,-66.731866144],[115.71908613400015,-66.7383765599999],[115.74244225400018,-66.74667734199997],[115.75196373800023,-66.75448984199997],[115.76547285200004,-66.77214934699998],[115.78077233200011,-66.78826262799996],[115.69410241000006,-66.86077239399998],[115.597422722,-66.91952890399998],[115.38738040500002,-67.00383879999997],[115.16016686300011,-67.05396900799997],[114.76539147200018,-67.07170989399995],[114.59815514400005,-67.117364191],[114.482106967,-67.13095468499994],[114.39795983200011,-67.122491144],[114.03012129000004,-67.19068775799984],[114.00456790500006,-67.20273202899995],[113.90528405000012,-67.28337981599998],[113.8789168630001,-67.29827239399992],[113.81641686300006,-67.31829192499998],[113.85027103000006,-67.32610442499998],[113.88493899800014,-67.33001067499998],[113.86841881600006,-67.36223723799992],[113.83594811300017,-67.37900155999994],[113.76140384200018,-67.395114842],[113.74268639400023,-67.40439218499988],[113.71461022200005,-67.42864348799995],[113.69849694100017,-67.43792083099991],[113.6599227220001,-67.45191822699996],[113.64673912900005,-67.464288019],[113.64649498800011,-67.48357512799986],[113.66627037900004,-67.48162200299998],[113.67872155000023,-67.48707447699994],[113.68946373800017,-67.49504973799998],[113.704356316,-67.50017669099991],[113.72299238400002,-67.49968840900002],[113.78256269600004,-67.48601653399989],[113.81226647200006,-67.48365650799984],[113.90007571700014,-67.49041106599996],[114.031504754,-67.47844817499993],[114.35080000100001,-67.41094329199996],[114.67009524800015,-67.34343840899987],[114.60254967500023,-67.39373137799994],[114.58253014400006,-67.41619231599985],[114.62574303500017,-67.42750416499993],[114.66895592500006,-67.42424895599989],[114.75464928500006,-67.40447356599995],[114.7755639980002,-67.39706796699997],[114.79078209700018,-67.37525807099992],[114.81202233200005,-67.36695728999993],[115.06397545700004,-67.32830169099998],[115.21216881600016,-67.32586028399986],[115.25416100400017,-67.313083592],[115.20785566500014,-67.29094817499993],[115.24097740999999,-67.25823333099997],[115.28687584700018,-67.233493748],[115.33790123800006,-67.21949635199996],[115.52849368600008,-67.22380950299996],[115.5888778000001,-67.21135833099986],[115.67188561300006,-67.20956796699987],[115.72364342500012,-67.20126718499998],[115.77670332100004,-67.18157317499994],[115.79965254000004,-67.181247654],[115.80836022200012,-67.20281340899993],[115.81959069100012,-67.22128671699994],[115.84750410200006,-67.22503020599989],[115.96550540500003,-67.19931405999994],[115.98389733200005,-67.18596770599993],[115.99732506600016,-67.15601978999986],[116.01384524800002,-67.14446379999993],[116.044688347,-67.14421965899989],[116.07732181100006,-67.1506486959999],[116.1294051440001,-67.169610284],[116.15699303499999,-67.16513437299994],[116.18034915500013,-67.14967213299992],[116.21461022200018,-67.10426197699994],[116.23259524800014,-67.09596119599985],[116.25310306100009,-67.10051848799999],[116.30941816500015,-67.13836028399993],[116.33334394600004,-67.14918385199994],[116.35889733200011,-67.14967213299992],[116.50001061300023,-67.12428150799998],[116.5312606130001,-67.1132138],[116.58529707099999,-67.0806617169999],[116.69255618600008,-67.04404062299987],[116.79688561300021,-66.98845794099992],[116.94288170700023,-66.94817473799995],[116.94190514400005,-66.976006769],[116.930918816,-67.006280206],[116.90316816500004,-67.06178150799987],[116.86247806100006,-67.10149504999997],[116.85377037900017,-67.12273528399996],[116.88306725400011,-67.13681405999998],[116.99341881600006,-67.14560312299987],[117.09107506600006,-67.13079192499998],[117.15552819100006,-67.13160572699991],[117.23585045700023,-67.11337656],[117.29525800899998,-67.10686614399992],[117.46241295700011,-67.10784270599999],[117.494395379,-67.09937916499996],[117.52084394599997,-67.08652109199994],[117.54493248800011,-67.0831845029999],[117.56934655000016,-67.10442473799998],[117.58725019600003,-67.11484140399998],[117.64519290500012,-67.12444426899995],[117.66830488400015,-67.13616301899995],[117.675059441,-67.1454403629999],[117.68043053500016,-67.15601978999986],[117.68653405000025,-67.16529713299991],[117.69556725400017,-67.170505467],[117.71412194100017,-67.17180754999998],[117.73047936300006,-67.16822682099993],[117.86402428500017,-67.10165780999994],[117.91431725400005,-67.08310312299993],[118.36793053500006,-67.04648202899989],[118.42807050900015,-67.0318335919999],[118.39828535200004,-67.07203541499999],[118.38070722699999,-67.0901018209999],[118.36036217500012,-67.10295989399992],[118.253184441,-67.14771900799997],[118.26929772200018,-67.14967213299992],[118.28239993600008,-67.15520598799985],[118.28988691500004,-67.16545989399997],[118.29004967500006,-67.18157317499994],[118.42448978000007,-67.15837981599991],[118.43482506600017,-67.16139088299991],[118.45997155000023,-67.18425872199992],[118.47169030000022,-67.18320077899996],[118.48462975400004,-67.17603932099983],[118.50269616000017,-67.16985442499995],[118.60482832100003,-67.1631812479999],[118.61996504000004,-67.16545989399997],[118.66553795700005,-67.17896900799994],[118.67904707100016,-67.17945728999993],[118.70932050900015,-67.17197030999995],[118.77979576900023,-67.166110935],[118.80437259200008,-67.16904062299994],[118.84229576900006,-67.184747003],[118.85523522200016,-67.18718840899993],[118.86850019600003,-67.18694426899997],[118.8811955090001,-67.1838518209999],[118.88168379000015,-67.18035247199992],[118.87989342500006,-67.166192316],[118.88038170700004,-67.16253020599986],[118.88917076900022,-67.16033294099995],[118.92017662900004,-67.15976327899998],[119.14975019600004,-67.11638762799991],[119.18148847700009,-67.11394622199998],[119.26677493600002,-67.12965260199987],[119.29769941499998,-67.13054778399986],[119.32837975400017,-67.12761809699992],[119.43832441500015,-67.0953101539999],[119.59831790500012,-67.07708098799992],[119.67204837300007,-67.04705169099987],[119.96159915500006,-67.01327890399998],[120.01791425900004,-66.99260833099996],[120.35173587300008,-66.93482838299994],[120.40162194099999,-66.94500090899999],[120.44597415500007,-66.97771575300001],[120.34131920700005,-67.01238372199998],[119.93903649200016,-67.07901376749993],[119.5367537770001,-67.14564381299986],[119.13447106200006,-67.21227385849997],[118.73218834700006,-67.278903904],[118.74586022200018,-67.28427499799997],[118.76026451900017,-67.28753020600001],[118.78956139400005,-67.28932057099989],[118.7838647800002,-67.29461028399989],[118.77442467500006,-67.30820077899993],[118.76889082100014,-67.31389739399992],[118.81373131600017,-67.35182057099993],[118.82764733200005,-67.35621510199982],[118.86540774800001,-67.35035572699996],[118.88396243600003,-67.34970468500002],[118.90284264400016,-67.35247161299998],[118.89975019600008,-67.3571916649999],[118.89503014400007,-67.3679338519999],[118.89193769599997,-67.372653904],[118.96241295700004,-67.380466404],[118.89047285200003,-67.41969166499993],[118.92359459700005,-67.42294687299997],[118.95671634200018,-67.4224585919999],[119.02222741000006,-67.41179778399996],[119.10320071700018,-67.38290780999995],[119.1287541020001,-67.38209400799994],[119.13363691500015,-67.38420989399984],[119.14332115999999,-67.39128997199991],[119.14869225400017,-67.39373137799994],[119.16504967500006,-67.39544036299995],[119.18311608200011,-67.39324309699995],[119.20053144600016,-67.3882789039999],[119.24439537900004,-67.37029387799996],[119.26978600400004,-67.36345794099995],[119.29615319100006,-67.35995859199996],[119.35645592500006,-67.35865650799987],[119.41439863399998,-67.36500416499999],[119.44353274800002,-67.36443450299991],[119.72738691500017,-67.316989842],[119.80250084700008,-67.32341887799991],[119.93189537899998,-67.29143645599991],[120.21558678500016,-67.26226165150001],[120.49927819099999,-67.23308684699992],[120.55396569100006,-67.21575286299992],[120.61622155000023,-67.20826588299987],[120.92066491000011,-67.13152434699991],[120.94971764400006,-67.13079192499998],[121.00684655000023,-67.14267343500002],[121.03777103000017,-67.14202239399998],[121.40463300899998,-67.08831145599993],[121.51531009200009,-67.09295012799986],[121.66309655000005,-67.05046965899989],[121.67741946700006,-67.04827239399998],[121.70134524800015,-67.05120208099991],[121.716075066,-67.04607512799998],[121.73031660200003,-67.03915781],[121.74447675900016,-67.03492603999996],[121.77540123800006,-67.02988046699994],[121.77320397200018,-67.02434661299992],[121.77084394600004,-67.01213958099986],[121.76872806100002,-67.00660572699992],[121.78419030000023,-67.004978123],[121.79688561300011,-67.007989191],[121.80836022200005,-67.01474374799994],[121.82007897200006,-67.02385833099993],[121.82837975400005,-67.02467213299994],[121.85084069100004,-67.01588307099989],[121.86426842500012,-67.01873137799993],[121.85230553500017,-66.99456145600001],[121.83375084700018,-66.99228280999995],[121.81495201900022,-66.99236419099992],[121.80193118600006,-66.97527434699998],[121.82984459700019,-66.96754322699996],[121.9083764980002,-66.92791106599985],[121.937754754,-66.91757577899993],[122.08204186300011,-66.891778253],[122.18848717500005,-66.8550757789999],[122.24439537900005,-66.84498463299994],[122.43653405000005,-66.83212656],[122.49293053500006,-66.81536223799998],[122.52051842500023,-66.81080494599993],[122.61060631600013,-66.81023528399997],[122.88025963650013,-66.77170175549995],[123.1499129570001,-66.73316822699991],[123.20915774800007,-66.7349585919999],[123.32764733200015,-66.75115325299986],[123.51612389400022,-66.75408294099988],[123.55787194100017,-66.74863046700003],[123.59253991000016,-66.737888279],[123.66374759200008,-66.70501067499991],[123.69353274800018,-66.68417734199994],[123.70240319100006,-66.67376067499995],[123.70655358200005,-66.66529713299991],[123.71322675900002,-66.65797291499992],[123.73031660200016,-66.65032317499998],[123.93148847700004,-66.60816822699994],[123.96241295700017,-66.6101213519999],[123.96762129000015,-66.6070289039999],[123.97193444100004,-66.60198333099994],[123.98161868600013,-66.59677499799997],[123.99976647199999,-66.5910783829999],[124.01514733200018,-66.58879973799992],[124.03044681100012,-66.59091562299993],[124.04867597699997,-66.59872812300001],[124.01954186300021,-66.61321379999997],[124.03663170700011,-66.614353123],[124.05079186300011,-66.60995859199993],[124.09392337300014,-66.59091562299993],[124.1035262380001,-66.58863697699987],[124.26050866000016,-66.5949846329999],[124.26124108200011,-66.62322356599994],[124.28394616000004,-66.636325779],[124.36524498800023,-66.65178801899985],[124.37126712300002,-66.65837981599992],[124.37305748800023,-66.67424895599986],[124.3693139980002,-66.68523528399999],[124.36011803500004,-66.69793059699995],[124.34017988400015,-66.71786874799994],[124.35873457100014,-66.71998463299987],[124.37696373800023,-66.71892669099991],[124.41358483200023,-66.71233489399992],[124.42847740999999,-66.71314869599993],[124.45541425900015,-66.72087981599995],[124.47144616000017,-66.71721770599999],[124.46729576900012,-66.72258879999995],[124.46070397200005,-66.73455169099998],[124.45655358200011,-66.73992278399986],[124.48389733200004,-66.73381926899995],[124.51392662900004,-66.73137786299992],[124.57178795700023,-66.73406340899999],[124.57813561300004,-66.73308684699992],[124.59156334700005,-66.72730885199996],[124.59717858200018,-66.72722747199998],[124.60336347700004,-66.73211028399996],[124.61638431100013,-66.74968840899999],[124.62281334700005,-66.75644296699993],[124.63738040500007,-66.76311614399998],[124.65406334700018,-66.76572030999998],[124.67115319100004,-66.76572030999998],[124.71680748800006,-66.75920989399997],[124.77955162900015,-66.74114348799995],[124.80591881600006,-66.72779713299995],[124.81381269600004,-66.71754322699984],[124.8173934250001,-66.70623137799986],[124.82520592500006,-66.69768645599991],[124.84571373800021,-66.69597747199992],[124.85157311300011,-66.69947682099989],[124.86296634200006,-66.71314869599993],[124.86850019600014,-66.71656666499986],[124.87777754000004,-66.715915623],[125.02475019600004,-66.67945728999993],[125.12208092500006,-66.66765715899996],[125.14812259200008,-66.65960051899992],[125.20036868600008,-66.63128020599999],[125.2247827480002,-66.61223723799999],[125.23812910200003,-66.59010182099983],[125.24878991000017,-66.56226978999996],[125.26587975399998,-66.53948333099993],[125.28956139400023,-66.52369557099989],[125.32007897200018,-66.51702239399992],[125.33472741000017,-66.44890715899999],[125.41041100400017,-66.41765715899993],[125.70484459699999,-66.39137135199991],[125.73658287900015,-66.37802499799989],[125.77003014400022,-66.35808684700001],[125.89779707100016,-66.306247654],[125.91911868600002,-66.30299244599996],[125.94060306100008,-66.302341404],[125.9585067070001,-66.30510833099997],[125.97339928500017,-66.31259531000002],[125.98731530000023,-66.32252369599993],[126.00310306100019,-66.33098723799998],[126.06763756600017,-66.33993906],[126.0937606130001,-66.36101653399993],[126.10816491000016,-66.39495208099989],[126.1163843110002,-66.43906015399998],[126.1759546230002,-66.46998463299991],[126.19483483200021,-66.45956796699991],[126.21509850400004,-66.45338307099996],[126.25847415500019,-66.44817473799996],[126.29721113400004,-66.45354583099993],[126.32837975400005,-66.46990325299993],[126.33277428499999,-66.48805103999993],[126.291270379,-66.49911874799997],[126.30518639400006,-66.51474374799996],[126.35401451900006,-66.55315520599996],[126.37232506600004,-66.561618748],[126.39258873800016,-66.55266692499998],[126.4023543630001,-66.52695077899993],[126.40870201900023,-66.467868748],[126.39991295700005,-66.38892994599996],[126.40308678500006,-66.37200286299996],[126.430430535,-66.354668878],[126.4567977220001,-66.35719166499983],[126.48422285200016,-66.36728280999998],[126.51441491000017,-66.37265390399995],[126.4956160820001,-66.40455494599995],[126.49048912900001,-66.42302825299998],[126.50049889400005,-66.43043385199996],[126.51783287900017,-66.43254973799996],[126.55307050900002,-66.44304778399986],[126.56853274800004,-66.4445940079999],[126.58090254000008,-66.44052499800003],[126.63038170700021,-66.41594817499993],[126.64877363400008,-66.41033294099992],[126.68677819100019,-66.40447356599998],[126.7060653000001,-66.40471770599993],[126.66749108200023,-66.42213307099999],[126.68458092500005,-66.44304778399986],[126.70386803500004,-66.44557057099996],[126.75001061300023,-66.43466562299999],[126.77670332100014,-66.43499114399992],[126.85425865999999,-66.4493140599999],[126.83073978000006,-66.47877369599989],[126.82195071700019,-66.48626067499995],[126.80884850400005,-66.49138762799996],[126.77995853000013,-66.49675872199992],[126.7666121750001,-66.50269947699994],[126.74870853000007,-66.52206796699987],[126.74903405000018,-66.53753020599999],[126.75123131600017,-66.55437590899999],[126.73951256600017,-66.57691822699995],[126.71892337300002,-66.59286874799997],[126.69459069100017,-66.60133228999983],[126.64380944099999,-66.61101653399989],[126.61841881600012,-66.61939869599993],[126.60092207100014,-66.63062916499993],[126.56950931100013,-66.6657854149999],[126.67090905000023,-66.64348723799996],[126.70411217500018,-66.64128997199988],[126.76587975400017,-66.65243905999998],[126.77963300899997,-66.65894947699988],[126.80494225400005,-66.68230559699998],[126.81918379000004,-66.69133879999998],[126.79672285200004,-66.71575286299985],[126.71501712300002,-66.73919036299992],[126.68051191500003,-66.756931248],[126.67465253999997,-66.76978932099993],[126.66456139400012,-66.81666432099989],[126.66570071700008,-66.83180103999989],[126.68213951900023,-66.84539153399993],[126.70386803500004,-66.8459611959999],[126.96827233200021,-66.80787525799992],[126.98178144600003,-66.80982838299995],[127.06275475400015,-66.84872812299987],[127.03565514400023,-66.89511484200003],[127.01889082100003,-66.91643645599997],[126.99870853000019,-66.93279387799991],[127.08285566500004,-66.95631275799997],[127.06592858200023,-66.96933359199996],[127.05876712300018,-66.9833309879999],[127.05730228,-67.00009530999994],[127.05787194100012,-67.02109140399998],[127.05665123800006,-67.0287411439999],[127.05307050900002,-67.03622812299997],[127.04444420700011,-67.04998137799998],[127.04517662900004,-67.05738697699996],[127.05388431100013,-67.06267669099995],[127.06470787899998,-67.06747812299993],[127.07154381600006,-67.07341887799996],[127.06967207100016,-67.087090753],[127.06413821700006,-67.10637786299985],[127.06462649800004,-67.12468840899999],[127.08139082100014,-67.13543059699992],[127.09888756599999,-67.13372161299992],[127.11231530000012,-67.12444426899995],[127.14942467500012,-67.08082447699987],[127.15699303500016,-67.0680477839999],[127.15788821700008,-67.05396900799997],[127.15170332100008,-67.0344377579999],[127.15455162900005,-67.02027760199996],[127.16773522200018,-67.00335051899998],[127.18458092500008,-66.98845794099992],[127.1987410820001,-66.97975025799994],[127.36361738400014,-66.93108489399991],[127.33423912900005,-66.98162200299991],[127.35678144600003,-66.99163176899998],[127.36736087300008,-66.99830494599986],[127.37029056100019,-67.00554778399997],[127.35962975400017,-67.03337981599994],[127.361013217,-67.0438778629999],[127.37134850400005,-67.05437590899997],[127.40113366000017,-67.06755950299993],[127.43238366000004,-67.07040780999995],[127.61548912900007,-67.04900481599992],[127.69450931100006,-67.05673593500002],[127.8364363940001,-67.02117278399996],[127.86573326900022,-67.01978932099998],[127.92261803500017,-67.02906666499992],[128.07455488400004,-67.02239348799996],[128.08187910200004,-67.0261369769999],[128.08814537900017,-67.03573984199998],[128.10303795700023,-67.07586028399999],[128.1093856130002,-67.0831845029999],[128.16391035200002,-67.10125090899992],[128.18531334700018,-67.10418059699994],[128.206716342,-67.10035572699994],[128.29590905000006,-67.07431405999995],[128.33090253999998,-67.07187265400002],[128.35710696700014,-67.07838307099983],[128.36597741000017,-67.08831145599993],[128.37517337300002,-67.11101653399996],[128.38217207100004,-67.11793385199996],[128.49293053500017,-67.14430103999996],[128.52051842500012,-67.14576588299984],[128.62501061300023,-67.12322356599985],[128.682953321,-67.11874765399996],[128.70736738400015,-67.10833098799998],[128.72429446700008,-67.08896249799997],[128.73308353000013,-67.05917734199987],[128.76351972700013,-67.02581145599999],[128.8239038420002,-67.03427499799992],[129.01286868600008,-67.11174895599999],[129.02182050899998,-67.12265390399998],[129.036875847,-67.15553150799997],[129.0646264980002,-67.1744117169999],[129.09961998800011,-67.16773853999993],[129.20264733200023,-67.10035572699994],[129.21119225400017,-67.09254322699992],[129.21371503999998,-67.08521900799992],[129.21387780000023,-67.06747812299993],[129.21599368600008,-67.05966562299993],[129.22217858200023,-67.05022551899994],[129.24659264400006,-67.02418385199996],[129.27279707100004,-67.00741952899995],[129.43409264400006,-66.96721770599986],[129.44450931100008,-66.95924244599999],[129.44467207100004,-66.94426848799995],[129.43637129000015,-66.92766692499998],[129.42432701900023,-66.91326262799993],[129.38461347700004,-66.87786223799992],[129.39291425900004,-66.858086847],[129.42212975400005,-66.84303150799997],[129.47901451900006,-66.82317473799998],[129.4936629570001,-66.81536223799998],[129.50473066500004,-66.80348072699994],[129.51677493600008,-66.78386809699987],[129.52686608200008,-66.77507903399992],[129.57585696700008,-66.75017669099988],[129.58472741000006,-66.72918059699991],[129.54957116000014,-66.71884531],[129.50074303500017,-66.715915623],[129.469004754,-66.71746184699984],[129.47461998800011,-66.69101327899988],[129.50879967500012,-66.65252044099988],[129.51978600400005,-66.62957122199998],[129.53256269599999,-66.61443450299998],[129.55909264400023,-66.60027434699995],[129.63786868600002,-66.57463958099999],[129.65503991000006,-66.56145598799995],[129.67025800900004,-66.54631926899995],[129.6915796230002,-66.53215911299992],[129.71045983200023,-66.51523202899995],[129.72543379000012,-66.487725519],[129.73096764400006,-66.45916106599992],[129.72169030000012,-66.43824635199996],[129.80201256600006,-66.40601978999983],[129.87671959700003,-66.36239999799999],[129.91423587300008,-66.3514950499999],[130.00896243600008,-66.34612395599989],[130.03516686300006,-66.33098723799998],[130.06430097700004,-66.29404062300003],[130.10271243600008,-66.27678801899992],[130.23609459700018,-66.26067473799995],[130.25464928500017,-66.26295338299983],[130.2917586600001,-66.27996184699998],[130.31055748800023,-66.27809010199982],[130.34839928500017,-66.26572030999998],[130.34644616000006,-66.27288176899992],[130.3445744150001,-66.28818124799999],[130.34245853000007,-66.29517994599996],[130.46225019600016,-66.25204843499995],[130.52995853000007,-66.24163176899995],[130.56283613400012,-66.26165129999993],[130.58082116,-66.241875909],[130.60401451900023,-66.19703541499989],[130.62378991000017,-66.18515390399993],[130.70484459700012,-66.14959075299996],[130.72999108200005,-66.14714934699992],[130.840098504,-66.17848072699996],[130.87159264400012,-66.18328215899994],[131.02100670700023,-66.18710702899998],[131.07081139400012,-66.19841887799996],[131.098887566,-66.20134856599998],[131.15723717500012,-66.19524504999998],[131.184825066,-66.19915129999998],[131.19629967500015,-66.20566171699998],[131.21778405000012,-66.223321222],[131.230235222,-66.23007577900003],[131.24317467500012,-66.23398202899993],[131.26929772200018,-66.2379696589999],[131.32422936300017,-66.24041106599995],[131.33838951900003,-66.2379696589999],[131.35238691500015,-66.23202890399998],[131.38160241000017,-66.21502044099991],[131.39454186300011,-66.211683852],[131.75782311300011,-66.24334075299996],[132.0503035820002,-66.21705494599986],[132.14779707100013,-66.17815520599996],[132.47828209700018,-66.15064869599983],[132.50359134200002,-66.1555315079999],[132.5568953790001,-66.17522551899992],[132.60670006600017,-66.18645598799993],[132.82691491,-66.19036223799992],[133.01636803500017,-66.1454403629999],[133.0913192070001,-66.10540129999998],[133.12037194100017,-66.09677499799997],[133.27564537900017,-66.08017343500002],[133.50074303500017,-66.08326588299991],[133.60710696700008,-66.10816822699994],[133.7923283210001,-66.10540129999998],[133.82447350400005,-66.1135393209999],[133.85425866000006,-66.12753671699997],[133.87354576900006,-66.14568450299996],[133.8907983730002,-66.16904062299987],[133.91049238400015,-66.18401458099999],[133.93384850400005,-66.19312916499999],[133.96225019600016,-66.19817473799992],[133.97559655000015,-66.19833749799997],[134.00228925899998,-66.19500090899996],[134.0151473320001,-66.19548919099985],[134.07585696700008,-66.21738046699996],[134.12696373800023,-66.227146092],[134.14893639400023,-66.23723723799998],[134.1910913420002,-66.27947356599991],[134.21143639400012,-66.27996184699998],[134.2330835300002,-66.2746721329999],[134.25945071700008,-66.27955494599989],[134.26465905000006,-66.28606536299998],[134.27149498800011,-66.30608489399995],[134.27808678500017,-66.313571873],[134.29078209700003,-66.31894296699997],[134.30144290500007,-66.32024504999997],[134.37663821700008,-66.30641041499996],[134.40357506600006,-66.30527109199994],[134.426524285,-66.3114559879999],[134.43881269600016,-66.3291968729999],[134.4205835300002,-66.34319426899995],[134.3462020190001,-66.36695728999996],[134.26124108200005,-66.41285572699994],[134.22982832100004,-66.4419898419999],[134.10938561300011,-66.50457122200001],[134.16407311300023,-66.512790623],[134.33904056100008,-66.48308684699998],[134.32715905000012,-66.48919036299988],[134.31641686300011,-66.49716562299993],[134.30697675899998,-66.50660572699994],[134.29883873800017,-66.51734791499996],[134.35010826900012,-66.51995208099996],[134.42066491000017,-66.49651458099989],[134.76677493600008,-66.33766041499993],[134.73926842500023,-66.36728280999998],[134.87370853000002,-66.35702890399995],[134.93580162900017,-66.34172942499997],[134.95753014400023,-66.343357029],[134.986582879,-66.35808684700001],[135.01059004000015,-66.36541106599992],[135.03549238399998,-66.36467864399998],[135.1784774100001,-66.33147551899988],[135.17644290500007,-66.31080494599986],[135.17920983200023,-66.291599217],[135.1784774100001,-66.2746721329999],[135.16651451900017,-66.26132577899999],[135.18726647200006,-66.25888437299997],[135.22836347700016,-66.24716562299997],[135.2885848320001,-66.22283294099991],[135.29761803500006,-66.21575286299995],[135.3024194670002,-66.16269296700003],[135.31934655000012,-66.12664153399997],[135.33171634200002,-66.10816822699994],[135.343028191,-66.10068124799997],[135.48845462300008,-66.11101653399999],[135.4943139980002,-66.11467864399985],[135.497325066,-66.12224700299998],[135.49976647200006,-66.13111744599993],[135.50391686300006,-66.13860442499991],[135.53825931100002,-66.17498137799998],[135.54493248800011,-66.18027109199987],[135.560801629,-66.18523528399992],[135.568125847,-66.190036717],[135.61158287900014,-66.24521249800003],[135.64730878999998,-66.27809010199982],[135.64966881600003,-66.30071379999998],[135.64144941500015,-66.324395441],[135.62964928500017,-66.34742603999987],[135.666270379,-66.35426197699991],[135.69890384200008,-66.3291968729999],[135.72852623800011,-66.29517994599996],[135.75635826900023,-66.275974217],[135.808848504,-66.26767343499994],[135.81723066500015,-66.26864999799999],[135.83301842500012,-66.27727630000001],[135.84099368600008,-66.2790666649999],[135.8621525400001,-66.27548593500002],[135.90528405000012,-66.26140715899999],[135.92709394600016,-66.25693124800001],[135.98072350400005,-66.26091887799998],[135.996836785,-66.25920989399998],[136.08375084700018,-66.23756275799991],[136.12842858200023,-66.23552825299988],[136.15951582100016,-66.245375258],[136.22527103000007,-66.287286066],[136.28435306100005,-66.31658294099992],[136.3022567070002,-66.32805754999995],[136.33415774800002,-66.35702890399995],[136.35206139400012,-66.36809661299999],[136.38851972700016,-66.37965260199984],[136.51124108200017,-66.39544036299988],[136.5267033210001,-66.40007903399999],[136.544688347,-66.40984465899993],[136.55982506599997,-66.422458592],[136.56714928500006,-66.435479425],[136.57211347700016,-66.45696379999991],[136.58090254000015,-66.47332122199985],[136.63900800899995,-66.52947356599994],[136.65674889400006,-66.54078541499993],[136.67164147200006,-66.54062265399988],[136.70622806100002,-66.51287200299998],[136.71924889400012,-66.4973283829999],[136.7319442070001,-66.47722747199985],[136.7076929050002,-66.47454192499995],[136.66089928500006,-66.46038176899984],[136.63648522200018,-66.45647551899985],[136.65626061300011,-66.40007903399999],[136.68962649800005,-66.36638762799998],[136.736013217,-66.34872812299997],[136.94459069100017,-66.32822031],[137.41488691500004,-66.35027434699992],[137.45785566499998,-66.34482187299997],[137.4694930350001,-66.3477515599999],[137.49000084700003,-66.36174895599996],[137.5014754570001,-66.36541106599992],[137.6691186860002,-66.37769947699996],[137.71070397200018,-66.36882903399993],[137.720550977,-66.36809661299999],[137.73194420700017,-66.37420012799998],[137.75513756600017,-66.39560312299993],[137.76758873800011,-66.40309010199991],[137.78101647200012,-66.40667083099996],[137.8224389980002,-66.40960051899998],[137.8463647800002,-66.4156226539999],[137.91138756600006,-66.44231536299992],[137.9213973320001,-66.44793059699992],[137.92709394599999,-66.45476653399993],[137.93392988400004,-66.46103280999998],[137.95899498800011,-66.46575286299998],[137.97071373800011,-66.46949635199994],[137.99268639400012,-66.48040129999991],[138.0187280610002,-66.48853932099983],[138.14161217500023,-66.49871184699997],[138.14877363399998,-66.50400155999995],[138.16293379000004,-66.52532317499991],[138.17188561300023,-66.533135675],[138.18433678500017,-66.538344008],[138.13331139400006,-66.62395598799998],[138.18002363400015,-66.61581796699997],[138.22103925900007,-66.60076262799994],[138.29932701900023,-66.55315520599996],[138.33301842500023,-66.53997161299992],[138.37810306100002,-66.53346119599993],[138.60710696700002,-66.54168059699991],[138.61654707100016,-66.53915781],[138.63347415500002,-66.52532317499991],[138.6413680350001,-66.52288176899988],[138.648692254,-66.52743906],[138.66293379000004,-66.54534270599989],[138.66960696700008,-66.55185312299997],[138.67896569100012,-66.55575937299987],[138.7321069670002,-66.56959400799997],[138.75277754000004,-66.56731536299998],[138.7736108730002,-66.56259530999998],[138.92644290500002,-66.55624765399993],[138.96859785200016,-66.55982838299984],[139.02955162900017,-66.57586028399992],[139.04590905000006,-66.5759416649999],[139.09115644600004,-66.56658294099995],[139.17693118600008,-66.57122161299998],[139.25171959700003,-66.56715260199994],[139.45492597700004,-66.59400807099992],[139.4417423840001,-66.62330494599993],[139.45248457099999,-66.64185963299994],[139.477386915,-66.65056731599991],[139.50700931100008,-66.65032317499998],[139.52491295700023,-66.645928644],[139.57349694100017,-66.62769947699992],[139.59034264400006,-66.62558359199998],[139.677582227,-66.63046640399998],[139.711680535,-66.64080169099998],[139.77702884200008,-66.67017994599989],[139.81218509200002,-66.67937590899994],[139.8413192070001,-66.682224217],[139.86703535200016,-66.69182708099989],[139.891856316,-66.72161223799998],[139.86736087300008,-66.73349374800003],[139.84156334700006,-66.75025807099986],[139.82374108200005,-66.771579685],[139.82276451900012,-66.79697030999995],[139.86451256600006,-66.775974217],[139.91553795700023,-66.75758228999996],[139.96550540500007,-66.75188567499988],[140.02173912900005,-66.77450937299994],[140.04086347700004,-66.76238372199995],[140.060801629,-66.74456145599997],[140.08155358200008,-66.73316822699991],[140.1101994150001,-66.72918059699991],[140.28451582100004,-66.72909921699994],[140.31446373800011,-66.73544687299997],[140.33570397200018,-66.74716562299997],[140.37631269599999,-66.78460051899991],[140.38477623800023,-66.78704192499984],[140.3940535820001,-66.78289153399999],[140.4108179050002,-66.76751067499995],[140.41724694099997,-66.75318775799997],[140.41342207099999,-66.74391041499993],[140.41472415500016,-66.73723723799988],[140.43628991,-66.73088958099993],[140.462738477,-66.726739191],[140.51742597700004,-66.72503020599999],[140.69548587300002,-66.74920012799998],[140.901621941,-66.753024998],[141.003672722,-66.7673479149999],[141.26026451900012,-66.85702890399995],[141.281016472,-66.861504816],[141.29656009200002,-66.8537736959999],[141.30567467500012,-66.82740650799991],[141.3356225920002,-66.83717213299992],[141.36207116000017,-66.839450779],[141.38803144600016,-66.83456796699994],[141.44459069100017,-66.81243254999995],[141.57813561300017,-66.77996184699998],[141.98170006600017,-66.79998137799986],[142.09278405000023,-66.82740650799991],[142.19874108200023,-66.87590911299998],[142.21892337300008,-66.89226653399999],[142.24927819100006,-66.93124765399988],[142.26775149800005,-66.94841887799998],[142.27393639400023,-66.95012786299989],[142.2897241550002,-66.94939544099988],[142.29639733200023,-66.95012786299989],[142.30241946700002,-66.95419687299996],[142.31316165500007,-66.96559010199984],[142.3190210300002,-66.96949635199992],[142.33578535200004,-66.97323984199994],[142.34620201900012,-66.97380950299993],[142.35645592500023,-66.977797133],[142.3725692070001,-66.99187590899993],[142.41537519599996,-67.01425546699987],[142.47706139400023,-67.02597421699994],[142.82203209700018,-67.019707941],[142.88103274800002,-67.00872161299985],[142.99878991000017,-66.96209075299991],[143.47071373800006,-66.84563567499998],[143.50831139400006,-66.844659113],[143.75082441500015,-66.88030364399994],[143.823578321,-66.90113697699994],[143.86101321700008,-66.91969166499995],[143.87614993600008,-66.94036223799995],[143.86345462300008,-66.99586353999983],[143.86524498800006,-67.01392994599992],[143.87501061300011,-67.03281015399988],[143.88412519599999,-67.04143645599996],[143.88721764400003,-67.05136484199997],[143.87859134200008,-67.073663019],[143.85531660200016,-67.09417083099996],[143.78109785200004,-67.12070077900002],[143.75147545700008,-67.13941822699998],[144.04420006600006,-67.08766041499996],[144.0691024100001,-67.0861955709999],[144.07569420700005,-67.09221770600001],[144.07878665500007,-67.10572682099999],[144.08130944100017,-67.13445403399993],[144.0885522800002,-67.15374114399998],[144.10084069100006,-67.17156340899996],[144.11475670700023,-67.17742278399999],[144.12712649800008,-67.16106536299998],[144.14527428500017,-67.0927059879999],[144.15463300899998,-67.07333749799997],[144.18490644599999,-67.04469166499982],[144.2268172540001,-67.02369557099996],[144.27279707100016,-67.00986093499998],[144.31560306100008,-67.00269947699994],[144.414317254,-67.00123463299997],[144.51246178500017,-67.01572031],[144.54590905000023,-67.03134530999989],[144.6455184250001,-67.09539153399987],[144.662364129,-67.11663176899997],[144.63013756600003,-67.16057708099999],[144.59693444100006,-67.18564218499999],[144.55600019600004,-67.19597747199991],[144.5009871750002,-67.19670989399994],[144.45728600400017,-67.18759530999995],[144.40943444100006,-67.17213307099983],[144.36264082100013,-67.16277434699998],[144.3214624360002,-67.17164478999993],[144.34017988400015,-67.19491952899995],[144.3585718110002,-67.20728932099989],[144.38103274800017,-67.21103281],[144.43726647200018,-67.20761484199998],[144.4643660820001,-67.21355559699994],[144.4908960300002,-67.22323984199988],[144.51417076900012,-67.23455169099998],[144.50619550900015,-67.249118748],[144.48438561300006,-67.26873137799996],[144.47559655000012,-67.280694269],[144.45573978000013,-67.32268645599989],[144.44646243600008,-67.33375416499983],[144.43238366,-67.34343840899987],[144.387461785,-67.35914478999995],[144.37647545700017,-67.365329685],[144.32520592500012,-67.40553150799991],[144.301036004,-67.41741301899995],[144.275157097,-67.42131926899995],[144.24805748800006,-67.41383228999999],[144.22510826900006,-67.39234791499996],[144.20183353000007,-67.36386484199994],[144.17709394599999,-67.34710051899992],[144.14966881600006,-67.3610979149999],[144.14356530000023,-67.37411874799996],[144.14551842500012,-67.38323333099996],[144.14633222700004,-67.39283619599995],[144.13705488400015,-67.40699635199995],[144.11784915500013,-67.41708749800003],[144.09880618600013,-67.41904062299997],[144.08570397200003,-67.42473723799996],[144.08448326900023,-67.44548919099995],[144.09156334700018,-67.45077890400003],[144.12330162900003,-67.45387135199984],[144.13754316500015,-67.45745208099999],[144.1554468110002,-67.46803150799994],[144.16456139400012,-67.47844817499993],[144.1667586600001,-67.4919572899999],[144.16391035200016,-67.51262786299992],[144.16456139400012,-67.52605559699992],[144.169688347,-67.53980885199994],[144.18458092500018,-67.56438567499985],[144.19190514400006,-67.58123137799986],[144.18970787900017,-67.59563567500001],[144.180918816,-67.60914478999999],[144.14437910200016,-67.64568450299993],[144.11939537900005,-67.66423919099985],[144.09278405000012,-67.67962004999988],[144.04908287900005,-67.69817473799996],[143.98373457100016,-67.71656666499993],[143.90919030000012,-67.75611744599995],[143.880137566,-67.78101978999992],[143.85670006600006,-67.81194426899995],[143.84058678500017,-67.84726327899998],[143.86939537899997,-67.84758879999991],[143.95476321700008,-67.83326588299992],[143.92017662900017,-67.849704685],[143.91163170700023,-67.86101653399999],[143.91358483200005,-67.8796526019999],[143.9117944670002,-67.89251067499991],[143.90235436300006,-67.90748463299994],[143.88070722699996,-67.93385182099993],[143.95264733200023,-67.94589609199994],[144.0202742850001,-67.935723566],[144.15593509200016,-67.88551197699994],[144.14063561300023,-67.91838958099993],[144.13648522200012,-67.93564218500002],[144.13851972700004,-67.95338307099982],[144.18580162900017,-67.93987395599986],[144.206797722,-67.94019947699996],[144.22950280000006,-67.95037200299993],[144.24870853000002,-67.95435963299998],[144.26921634200008,-67.94687265399993],[144.35173587300008,-67.89999765399998],[144.42579186300023,-67.82488372199995],[144.46908613400004,-67.79436614399992],[144.55583743600005,-67.76132577899988],[144.601817254,-67.75115325299993],[144.64730878999998,-67.74765390399993],[144.80941816500015,-67.75497812299994],[144.86329186300011,-67.74968840899996],[144.90503991000006,-67.73772551899991],[144.94206790500007,-67.71892669099998],[145.05437259200005,-67.63518645599996],[145.23812910200016,-67.528252863],[145.27979576900012,-67.51572031],[145.32300866,-67.51043059699992],[145.42139733200023,-67.50920989399992],[145.44434655000012,-67.51482512800001],[145.46062259200008,-67.53411223799995],[145.484222852,-67.57642994599995],[145.4889429050002,-67.59661223799998],[145.48145592500023,-67.62346770599997],[145.50635826900006,-67.63014088299984],[145.52963300899998,-67.641045831],[145.53663170700005,-67.65129973799993],[145.533457879,-67.66464609199993],[145.52784264400012,-67.67839934699995],[145.52662194100017,-67.69052499799994],[145.54590905000012,-67.71209075299996],[145.57943769600016,-67.72820403399993],[145.61589603000002,-67.73707447699998],[145.64429772200006,-67.736993097],[145.68832441500015,-67.70094166499995],[145.70777428500014,-67.64413827899998],[145.73340905000023,-67.59295012799993],[145.7970483730002,-67.57398853999993],[145.91724694100017,-67.58904387799994],[146.048106316,-67.58660247199991],[146.07504316500015,-67.59205494599993],[146.130137566,-67.61402760199987],[146.190684441,-67.62281666499993],[146.20191491,-67.64397551899991],[146.20801842500012,-67.6692033829999],[146.22885175900007,-67.68710702899995],[146.20240319100012,-67.70574309699992],[146.10971113400015,-67.74960702899998],[146.12647545700005,-67.76482512799996],[146.17530358200003,-67.76913827899996],[146.19727623800006,-67.78248463299997],[146.21306399800002,-67.79794687299989],[146.24919681100008,-67.82146575299996],[146.26343834700018,-67.835056248],[146.3009546230002,-67.85133228999993],[146.34441165500002,-67.83131275799997],[146.38379967500012,-67.79265715900002],[146.40870201900023,-67.75351327899998],[146.44157962300002,-67.73113372199995],[146.48910566500015,-67.74179452899998],[146.52898196700014,-67.7702776019999],[146.53793379000015,-67.80242278399996],[146.5109155610002,-67.84148528400002],[146.47364342500012,-67.87379322699994],[146.43043053500006,-67.89869557099998],[146.38542728000004,-67.91521575299996],[146.41016686300011,-67.95175546699998],[146.4547632170002,-67.94939544099994],[146.50424238400015,-67.93564218500002],[146.54444420700023,-67.93759530999998],[146.53028405000012,-67.94939544099994],[146.52784264400006,-67.96087004999998],[146.53345787900017,-67.97323984199993],[146.54322350400003,-67.98739999799994],[146.55298912900017,-67.98894622199998],[146.56804446700005,-67.98105234200001],[146.59498131600006,-67.96152109199994],[146.61573326900023,-67.95134856599998],[146.64079837300002,-67.94378020599986],[146.66675866000006,-67.93938567499995],[146.68970787900005,-67.93889739399988],[146.68246503999998,-67.94231536299998],[146.66211998800011,-67.95476653399999],[146.71111087300008,-67.95973072699987],[146.8198348320001,-67.92058684700001],[146.87281334700006,-67.93759530999998],[146.80445397200018,-68.00066497199998],[146.6342879570002,-68.08709075299988],[146.55827884200002,-68.14324309699998],[146.58090254000004,-68.15064869599996],[146.60230553500006,-68.17848072699992],[146.6193953790001,-68.18320077900003],[146.70427493600008,-68.16969166499996],[146.79517662899997,-68.13909270599986],[146.97136478000007,-68.05217864399994],[147.024587436,-68.03394947699996],[147.06470787900003,-68.03875090899996],[147.07398522200018,-68.05429452899988],[147.0778100920002,-68.07756926899998],[147.07650800900004,-68.101169529],[147.07129967500012,-68.11744557099986],[147.054942254,-68.13469817499995],[147.0346785820001,-68.14885833099999],[146.9912215500002,-68.17107512799986],[146.8595483730002,-68.20916106599992],[146.80567467500003,-68.24285247199992],[146.74512780000012,-68.27068450299998],[146.72120201900023,-68.28769296699996],[146.71802819100014,-68.30339934699991],[146.73218834700018,-68.3160132789999],[146.76002037900005,-68.32317473799995],[146.80567467500003,-68.319431248],[146.8937280610002,-68.29322682099996],[146.9357202480002,-68.29615650799998],[146.94385826900012,-68.30282968499994],[146.94434655000012,-68.31015390399993],[146.94711347700013,-68.31560637799998],[146.9624129570001,-68.31658294099988],[147.10792076900023,-68.29404062299997],[147.09782962300008,-68.31129322699998],[147.09717858200023,-68.34099700299993],[147.08277428500017,-68.35947030999995],[147.04997806100008,-68.38046640399998],[147.03842207100004,-68.39275481599985],[147.03044681100008,-68.41562265399995],[147.06039472700004,-68.42278411299998],[147.08863366,-68.4196916649999],[147.17448978000002,-68.39470794099998],[147.18620853000002,-68.39511484199988],[147.21485436300011,-68.40984465899999],[147.23047936300003,-68.41204192499988],[147.26246178500017,-68.408949477],[147.38738040500007,-68.37639739399992],[147.4049585300002,-68.37590911299985],[147.42123457100004,-68.3786760399999],[147.45484459700006,-68.38909270599999],[147.46851647200018,-68.38925546699994],[147.5172632170002,-68.375176691],[147.628672722,-68.35605234199994],[147.66236412900005,-68.356622003],[147.72510826900012,-68.37053801899998],[147.75912519600004,-68.37297942499991],[147.82032311300006,-68.36712004999987],[147.84937584700006,-68.37037525799992],[147.88575280000023,-68.40642669099998],[147.91732832100004,-68.41716887799998],[147.98422285200004,-68.42310963299991],[147.9796655610002,-68.43515390399993],[147.97974694100017,-68.44475676899991],[147.9838973320001,-68.45354583099997],[147.99154707100016,-68.46209075299998],[148.00098717500023,-68.46404387799984],[148.01205488400004,-68.457777602],[148.023285352,-68.44882577899988],[148.03345787900005,-68.44247812300003],[148.06104576900015,-68.43824635199991],[148.1149194670002,-68.44638437299992],[148.14112389400023,-68.4460588519999],[148.21485436300006,-68.41912200299994],[148.241465691,-68.41415780999998],[148.26685631600006,-68.417087498],[148.29273522200003,-68.42742278400002],[148.30469811300006,-68.44443124799997],[148.2882593110002,-68.46648528399989],[148.43539472700004,-68.47332122199998],[148.51856530000006,-68.45191822699994],[148.61133873800011,-68.46819426899998],[148.620371941,-68.45720794099992],[148.62045332099999,-68.4473609349999],[148.61939537900005,-68.43840911299998],[148.624278191,-68.43035247199985],[148.64039147200018,-68.41912200299994],[148.65577233200023,-68.4110653629999],[148.67204837300008,-68.40569426899995],[148.69190514400017,-68.40300872199995],[148.72144616000006,-68.405368748],[148.74724368600005,-68.41448333099991],[148.79761803499997,-68.44166432099983],[148.83041425900004,-68.45289478999993],[148.857269727,-68.45370859199994],[148.9183048840001,-68.44646575299991],[148.98047936300006,-68.44573333099987],[149.007660352,-68.43922291499999],[149.06153405000012,-68.41220468500003],[149.09376061300003,-68.40496184699992],[149.12696373800006,-68.4016252579999],[149.154063347,-68.40252044099998],[149.12061608200023,-68.420993748],[149.15919030000012,-68.45012786299996],[149.20753014400023,-68.46038176899998],[149.25538170700005,-68.45077890399999],[149.3100692070001,-68.40683359199996],[149.33725019600004,-68.39568450299996],[149.36646569100006,-68.38787200299996],[149.39031009200002,-68.38437265399996],[149.41439863400012,-68.38713958099994],[149.48178144600016,-68.41814544099995],[149.78492272199998,-68.48691171699994],[149.83578535200016,-68.48430754999995],[149.88363691500015,-68.46363697699994],[149.837657097,-68.43124765399993],[149.81299889400012,-68.41790129999993],[149.78728274800008,-68.41220468500003],[149.75814863400004,-68.409274998],[149.73064212300008,-68.40154387799991],[149.705414259,-68.38836028399996],[149.68360436300017,-68.36931731599996],[149.73568769600004,-68.35247161299996],[149.77833092500023,-68.36451588299997],[149.86475670700023,-68.41277434699991],[149.91334069100012,-68.42343515399995],[150.2739363940002,-68.42766692499995],[150.35181725400005,-68.43971119599996],[150.37794030000006,-68.43987395599993],[150.65137780000012,-68.41082122199995],[150.85287519600016,-68.35076262799996],[150.90650475400017,-68.34270598799992],[150.95655358200005,-68.34295012799996],[151.01286868600002,-68.35068124799997],[151.0628361340001,-68.37037525799992],[151.09424889400012,-68.40699635199994],[151.11410566500004,-68.45614999799997],[151.10954837300008,-68.47356536299985],[151.06576582099999,-68.51482512799997],[151.050629102,-68.53777434699998],[151.0519311860002,-68.55901458099996],[151.08008873800006,-68.5739885399999],[151.00163821700002,-68.68954843499995],[150.97071373800011,-68.71721770599996],[150.99195397200018,-68.72763437299993],[151.00245201900023,-68.74407317499994],[151.01050866000017,-68.7619768209999],[151.02491295700023,-68.77695077899993],[151.1051538420002,-68.82683684699998],[151.14698326900012,-68.86614348799998],[151.16358483200014,-68.87761809699992],[151.1720483730002,-68.87004973799996],[151.23975670700023,-68.83163827899998],[151.28467858200023,-68.82870859199994],[151.32276451900012,-68.84172942499993],[151.39893639400012,-68.88567473799986],[151.41960696700016,-68.89397551899995],[151.43881269600016,-68.89853280999998],[151.50033613400004,-68.90203215899989],[151.56690514400012,-68.91676197699996],[151.57683353000002,-68.84335702899996],[151.57398522200018,-68.80803801899994],[151.55274498800011,-68.78346119599983],[151.55860436300023,-68.78199635199996],[151.56967207100007,-68.77695077899993],[151.57553144600004,-68.7753231749999],[151.55209394600016,-68.72763437299993],[151.55323326900006,-68.70720794099987],[151.57325280000023,-68.69255950299996],[151.58790123800017,-68.69133879999985],[151.61451256599997,-68.698418878],[151.92383873800011,-68.66676197699992],[151.93392988399998,-68.66871510199996],[151.95264733200023,-68.68141041499993],[151.96314537900005,-68.68320077900002],[151.97584069100017,-68.68206145599999],[151.98511803500006,-68.68401458099993],[152.00521894599999,-68.69426848799996],[152.031504754,-68.701918227],[152.091075066,-68.7105445289999],[152.15650475400017,-68.736423435],[152.21485436300006,-68.73503997199992],[152.403086785,-68.69866301899995],[152.4306746750001,-68.70086028399993],[152.44060306100002,-68.70525481599992],[152.45728600400017,-68.71965911299998],[152.467051629,-68.72405364399988],[152.48292076900023,-68.72421640399993],[152.511485222,-68.71599700299991],[152.52637780000006,-68.71493905999998],[152.5546981130002,-68.72242603999986],[152.5953882170002,-68.75139739399985],[152.62134850399997,-68.76572031000002],[152.64877363400012,-68.77019622199997],[152.73519941500015,-68.75660572699994],[152.76124108200023,-68.75945403399989],[152.86353600400005,-68.78997161299992],[152.88526451900012,-68.8016903629999],[152.93018639400023,-68.83318450300001],[152.98340905000012,-68.86158619599992],[153.03728274800002,-68.87590911299992],[153.09302819100006,-68.87916432099996],[153.17750084700018,-68.87330494599993],[153.22754967500012,-68.87883879999995],[153.25066165500007,-68.87818775799991],[153.25855553500003,-68.87460702899993],[153.2639266290001,-68.8682593729999],[153.27027428500006,-68.86239999799994],[153.28142337300002,-68.8596330709999],[153.30779056100002,-68.86126067499993],[153.32032311300023,-68.85930754999997],[153.32715905000023,-68.8522274719999],[153.34009850400017,-68.79119231599994],[153.34009850400017,-68.78655364399991],[153.34359785200016,-68.78386809699992],[153.35743248800023,-68.77678801899997],[153.38184655000012,-68.76881275799991],[153.40674889400023,-68.76913827900003],[153.500254754,-68.79078541499992],[153.54835045700005,-68.79599374800001],[153.59644616000006,-68.79363372199997],[153.69271894600016,-68.766208592],[153.74146569100017,-68.76083749799994],[153.844981316,-68.76043059699995],[153.83025149800002,-68.732517185],[153.79558353000007,-68.64080169099985],[153.77816816499998,-68.61598072699998],[153.70045006600017,-68.54566822699987],[153.7413843110002,-68.53313567499994],[153.788910352,-68.529392185],[153.83350670700005,-68.52068450299993],[153.8652449880002,-68.49374765399988],[153.82146243600008,-68.47551848799998],[153.72925866,-68.4486630189999],[153.69776451900012,-68.4201799459999],[153.68197675900015,-68.376071873],[153.68580162900017,-68.334079685],[153.70826256600017,-68.3000627579999],[153.74903405000012,-68.28036874799994],[153.7931421230002,-68.27402109200001],[153.83594811300011,-68.27361419099992],[153.87842858200005,-68.27898528399994],[153.92188561300023,-68.289239191],[153.99293053500017,-68.31560637799998],[154.05860436300006,-68.3220354149999],[154.07960045700023,-68.32870859199986],[154.11622155000023,-68.34872812299993],[154.13477623800023,-68.35556405999995],[154.171641472,-68.35808684699995],[154.17465254000004,-68.36386484199993],[154.17514082100004,-68.37102629999997],[154.18311608200003,-68.37656015399996],[154.36101321700016,-68.42245859199997],[154.43246504000015,-68.45663827899995],[154.476817254,-68.46998463299997],[154.52247155000023,-68.47861093499988],[154.56031334700018,-68.47975025799991],[154.61312910200016,-68.47429778399996],[154.62142988400004,-68.47722747199998],[154.62818444100017,-68.48552825299997],[154.63428795700017,-68.49521249799993],[154.640961134,-68.50237395599997],[154.6582137380001,-68.51181405999998],[154.69922936300023,-68.52532317499995],[154.71851647200015,-68.52825286299996],[154.71127363400015,-68.55779387799984],[154.7101343110002,-68.57317473799998],[154.71509850400017,-68.582614842],[154.74512780000012,-68.59832122199997],[154.75806725399997,-68.608493748],[154.76921634200002,-68.62184010199982],[154.71420332100013,-68.64251067499984],[154.69711347700004,-68.64625416499997],[154.6764429050002,-68.64397551899991],[154.63550866000017,-68.63014088299991],[154.45036868600013,-68.62574635199984],[154.46404056100008,-68.6526018209999],[154.4967554050002,-68.676364842],[154.5680444670002,-68.70647551899985],[154.58757571700008,-68.72633228999995],[154.57203209700015,-68.75432708099996],[154.5183211600001,-68.80396900799997],[154.56934655000006,-68.8055966129999],[154.61198978000013,-68.78899504999985],[154.69263756600006,-68.73015715899996],[154.742523634,-68.7097307269999],[154.79468834700006,-68.71087004999993],[154.84473717500023,-68.72771575299993],[154.9511824880001,-68.80291106599992],[154.96021569100006,-68.81715260199984],[154.96168053500014,-68.84392669099992],[154.96973717500012,-68.8671200499999],[154.98552493600008,-68.88591887799991],[155.01107832100016,-68.898858331],[155.03711998800023,-68.90178801899985],[155.060883009,-68.89568450299996],[155.10670006600006,-68.8747697899999],[155.13282311300003,-68.87021249799994],[155.30860436300011,-68.89332447699991],[155.33725019600013,-68.90471770599996],[155.34945722700016,-68.91253020599996],[155.36011803500017,-68.92148202899998],[155.36898847700004,-68.93181731599998],[155.37680097700004,-68.944268488],[155.38054446700008,-68.96054452899995],[155.3782658210001,-68.99358489399998],[155.38656660200016,-69.010349217],[155.31226647200006,-69.02499765400002],[155.28882897200018,-69.0359026019999],[155.39210045700005,-69.04070403399999],[155.41081790500007,-69.04363372200001],[155.4313257170002,-69.06438567499991],[155.45590254000004,-69.08114999799993],[155.51050866000017,-69.10654062299994],[155.6375431650001,-69.13420989399995],[155.66260826900006,-69.13225676899991],[155.757090691,-69.1011695289999],[155.74561608200005,-69.08456796699993],[155.73129316499998,-69.0821265599999],[155.71412194100006,-69.08513762799991],[155.69450931100016,-69.0852190079999],[155.68148847700002,-69.07927825299996],[155.64234459700018,-69.04843515399989],[155.57146243600008,-69.02955494599996],[155.5415145190001,-69.0134416649999],[155.5367944670002,-68.98357512799991],[155.5589298840001,-68.9568010399999],[155.5934350920002,-68.94695403399999],[155.73959394600016,-68.94394296699997],[155.77540123800003,-68.946872654],[155.81283613400004,-68.95623137799994],[155.81861412900017,-68.96038176899998],[155.82789147200006,-68.97234465899992],[155.83472741000003,-68.97486744599993],[155.86443118600005,-68.97421640399998],[155.87338300900004,-68.97576262799993],[155.88803144600004,-68.98259856599984],[155.956309441,-69.02809010199991],[155.96697024800002,-69.03948333099997],[155.97087649800002,-69.05413176899998],[155.96778405000023,-69.07659270599999],[155.9718530610002,-69.0881486959999],[155.98462975400017,-69.10076262799998],[156.00098717500015,-69.11142343499999],[156.01441491000014,-69.11663176899992],[156.03158613399998,-69.11679452899998],[156.08171634200016,-69.10125090899989],[156.10206139400003,-69.09880950299986],[156.11703535200002,-69.10271575299994],[156.14893639400023,-69.11646900799987],[156.22689863399998,-69.13543059699997],[156.26246178500014,-69.15292734200001],[156.26490319100014,-69.17685312299997],[156.30437259200008,-69.19247812299987],[156.35010826900003,-69.20191822699996],[156.48414147200006,-69.20663827899998],[156.564300977,-69.19703541499992],[156.65455162900005,-69.17066822699991],[156.67505944100014,-69.17001718499996],[156.722422722,-69.17351653399996],[156.76783287899997,-69.17107512799993],[156.78874759200008,-69.17278411299992],[156.79835045700023,-69.17693450299996],[156.81519616000006,-69.18987395599996],[156.82667076900006,-69.19353606599992],[156.85987389400012,-69.19426848799995],[156.89283287900014,-69.190524998],[157.02320397200012,-69.1447893209999],[157.04444420700008,-69.1447893209999],[157.13982181100013,-69.16130950299988],[157.15772545700005,-69.17058684699992],[157.20948326900012,-69.22047291499999],[157.26286868600002,-69.25579192500001],[157.34359785200016,-69.32317473799992],[157.37354576900023,-69.35466887799993],[157.3888452480002,-69.38795338299984],[157.39470462300002,-69.41122812299993],[157.406016472,-69.43059661299995],[157.4225366550002,-69.43718840899993],[157.46176191500004,-69.40837981599991],[157.47901451900012,-69.41106536299998],[157.4969181650001,-69.42148202899988],[157.51823978000007,-69.43027109199994],[157.53101647200018,-69.412204685],[157.56836998800023,-69.39820728999996],[157.64616946700002,-69.382419529],[157.58790123800011,-69.37086353999989],[157.54037519600004,-69.36760833099993],[157.51905358200023,-69.36248137799993],[157.50473066500015,-69.34954192499993],[157.49878991000006,-69.32415129999998],[157.49447675900015,-69.27947356599994],[157.49870853000007,-69.26132577899993],[157.51441491000006,-69.24472421699997],[157.53345787900005,-69.232028904],[157.56763756599997,-69.21445077899996],[157.6108504570001,-69.19866301899994],[157.62549889400012,-69.19540780999998],[157.70899498800011,-69.1940243469999],[157.72706139400012,-69.19850025799997],[157.74496504000015,-69.21445077899996],[157.76189212300008,-69.22429778399999],[157.7858992850001,-69.22698333099989],[157.81080162900005,-69.22323984199994],[157.83057701900023,-69.21404387799988],[157.8498641290001,-69.19459400799997],[157.85922285200004,-69.18043385199987],[157.87305748800023,-69.17205169099998],[157.90528405000018,-69.16952890399998],[157.99219811300023,-69.17213307099996],[158.01172936300023,-69.17742278399986],[158.08082116000006,-69.20989348799985],[158.126800977,-69.216892185],[158.22193444100017,-69.21705494599998],[158.26832116000006,-69.22503020599993],[158.39820397200018,-69.28329843499995],[158.40170332099999,-69.29070403399992],[158.4038192070001,-69.2990861959999],[158.41138756600006,-69.30877044099994],[158.446543816,-69.3267554669999],[158.49724368600008,-69.34197356599988],[158.54867597700016,-69.35068124799994],[158.58716881600017,-69.34880950299998],[158.581797722,-69.34644947699994],[158.56592858200005,-69.337497654],[158.58375084700003,-69.3270809879999],[158.60206139400012,-69.32586028399999],[158.62110436300011,-69.3270809879999],[158.66667728000007,-69.31764088299991],[158.686778191,-69.31861744599996],[158.73145592500006,-69.3254533829999],[158.7944442070001,-69.31487395599994],[158.81714928500006,-69.3163388],[158.83863366000017,-69.32317473799992],[158.859141472,-69.33261484199993],[158.94117272200006,-69.38176848799995],[158.95997155000003,-69.39812590899997],[158.98292076900006,-69.43499114399985],[159.0105086600001,-69.45818450299988],[159.0407007170002,-69.49065520599996],[159.05787194100006,-69.49765390399995],[159.07691491000006,-69.502048435],[159.10010826900023,-69.51287200299993],[159.11963951900023,-69.51628997199992],[159.1315210300002,-69.50164153400002],[159.14942467500023,-69.46135833099994],[159.18799889400012,-69.43531666499996],[159.23536217500023,-69.42791106599998],[159.2846785820002,-69.43303801899998],[159.51221764400006,-69.499118748],[159.55445397199998,-69.5017229149999],[159.63933353000007,-69.49675872199995],[159.753591342,-69.50188567499995],[159.77328535200016,-69.50652434699998],[159.82300866000017,-69.52752044099992],[159.83765709700018,-69.53720468499998],[159.88070722700004,-69.57447682099996],[159.97510826900017,-69.62265390399999],[159.99610436300011,-69.6291643209999],[160.03923587300014,-69.63616301899998],[160.0587671230002,-69.64364999799994],[160.07545006600006,-69.65797291499993],[160.087657097,-69.67351653399994],[160.10230553500003,-69.68499114399998],[160.12582441499998,-69.68792083099991],[160.143809441,-69.6931291649999],[160.2023218110002,-69.73691171699997],[160.2912703790001,-69.77027760199995],[160.33448326900012,-69.79607512799987],[160.34107506600017,-69.8283830709999],[160.32422936300006,-69.84880950299988],[160.30307050900012,-69.86158619599983],[160.27833092500006,-69.86931731599992],[160.25049889400023,-69.874118748],[160.17286217500012,-69.87517669099988],[160.12134850400005,-69.88591887799998],[160.09302819100017,-69.88762786299996],[159.98471113400015,-69.87224700299996],[159.881114129,-69.88152434699991],[159.80551191500004,-69.87273528399992],[159.78003991,-69.874607029],[159.76124108200017,-69.88518645599996],[159.760996941,-69.90894947699987],[159.77035566500015,-69.91765715899994],[159.78500410200016,-69.92017994599995],[159.80014082100016,-69.92099374799997],[159.8110457690002,-69.92359791499996],[159.8216251960001,-69.93401458099996],[159.83765709700018,-69.95427825299994],[159.85962975400017,-69.96884531],[159.87281334700006,-69.98577239399998],[159.87826582100016,-69.99041106599991],[159.89161217500006,-69.99236419099995],[159.93946373800011,-69.98853932099993],[160.01482181100008,-69.99602629999991],[160.04070071700016,-69.99179452899998],[160.11719811300006,-69.96917083099993],[160.14283287900005,-69.96884531],[160.21680748800023,-69.98772551899991],[160.63648522200012,-70.048760675],[160.64242597700002,-70.054294529],[160.64486738400015,-70.06406015399996],[160.64942467500012,-70.07431405999998],[160.66138756600003,-70.08163827899999],[160.59595787900017,-70.10466887799996],[160.7233179050002,-70.095798435],[160.75977623800006,-70.10198333099999],[160.79363040500002,-70.118259373],[160.82715905000006,-70.13974374799994],[160.85865319100017,-70.164971613],[160.90333092500023,-70.20956796699998],[160.91928144600016,-70.21990325299998],[160.98585045700023,-70.24130624799993],[160.996267123,-70.249607029],[161.00416100399997,-70.26140715899997],[161.0197046230002,-70.279473566],[161.05534915500004,-70.30217864399994],[161.09050540500002,-70.31902434699995],[161.10759524800008,-70.34140390399998],[161.08936608200008,-70.38030364399988],[161.18677819100006,-70.41204192499993],[161.20281009200002,-70.42278411299995],[161.24903405000023,-70.46217213299984],[161.25831139400012,-70.47763437299994],[161.24805748800006,-70.49570077899986],[161.225840691,-70.50945403399997],[161.20167076900012,-70.52076588299997],[161.18539472700016,-70.53199635199996],[161.17505944100014,-70.55632903399992],[161.1792098320001,-70.57529062299993],[161.19385826900012,-70.58147551899992],[161.21420332100004,-70.56796640399993],[161.23031660200016,-70.54851653399986],[161.24683678500006,-70.53289153399996],[161.2638452480002,-70.52825286299985],[161.28174889400006,-70.5417619769999],[161.29070071700016,-70.56666432099995],[161.27393639400006,-70.60222747199992],[161.28150475400005,-70.62566497199997],[161.31421959700006,-70.65007903399993],[161.361094597,-70.66659921700001],[161.45167076900023,-70.68596770599993],[161.38086998800023,-70.75164153399993],[161.32227623800011,-70.78525155999995],[161.30982506600017,-70.79607512799996],[161.31104576900012,-70.8075497379999],[161.32349694099997,-70.82341887799993],[161.33171634200016,-70.84197356599994],[161.32862389400023,-70.85670338299983],[161.30681399800008,-70.86044687299996],[161.32943769600004,-70.87607187299994],[161.34441165500007,-70.89023202899988],[161.361175977,-70.90097421699997],[161.38949629000015,-70.90569426899998],[161.41627037900005,-70.90447356599988],[161.54493248800006,-70.88111744599996],[161.594004754,-70.88201262799996],[161.60678144600016,-70.87932708099999],[161.63412519600004,-70.8650041649999],[161.646332227,-70.86345794099995],[161.65552819100017,-70.87078215899994],[161.67302493600002,-70.89861419099992],[161.68246504000012,-70.90894947699994],[161.72754967500012,-70.9255510399999],[161.77719160200004,-70.92587656],[161.87533613400004,-70.90764739399994],[161.93295332100013,-70.907321873],[161.99008222700016,-70.92253997199998],[162.04460696700002,-70.94744231599992],[162.09408613399998,-70.97682057099993],[162.0867619150001,-70.98739999799997],[162.07797285200004,-70.99675872200001],[162.0680444670002,-71.004978123],[162.05697675900015,-71.0114885399999],[162.09107506600017,-71.04078541499992],[162.1445418630001,-71.064141534],[162.20215905000015,-71.07830169099984],[162.2745874360002,-71.07903411299988],[162.29688561300023,-71.0845679669999],[162.34083092500006,-71.10947031000002],[162.36158287900017,-71.11142343499998],[162.38998457099996,-71.10279713299997],[162.41667728000002,-71.08806731599998],[162.43246504000015,-71.07105885199991],[162.42139733200023,-71.06552499799989],[162.41260826900017,-71.05706145599996],[162.40609785200016,-71.04656340899999],[162.40235436300023,-71.0343563779999],[162.42188561300011,-71.03150807099995],[162.4284774100001,-71.03167083099993],[162.31666100400017,-70.93368906],[162.30762780000023,-70.92986419099998],[162.27361087300002,-70.92896900799991],[162.25570722700016,-70.926364842],[162.2448022800002,-70.91952890399998],[162.23194420700003,-70.89275481599998],[162.22592207100016,-70.86353932099993],[162.21859785200016,-70.85466887799998],[162.20337975400017,-70.84783294099998],[162.1728621750002,-70.83896249799993],[162.14503014400012,-70.83611419099998],[162.09107506600017,-70.84937916499983],[162.06039472700016,-70.84661223799995],[162.04664147200003,-70.839450779],[162.03809655000023,-70.82952239399992],[162.02556399800002,-70.80136484200003],[162.02230878999998,-70.78834400799994],[162.02719160200013,-70.783786717],[162.03484134200016,-70.77996184699997],[162.03939863400012,-70.76970794099995],[162.04070071700002,-70.74260833099993],[162.04281660200016,-70.72893645599999],[162.04802493600002,-70.71868254999995],[162.07203209700018,-70.69329192499985],[162.08301842500023,-70.67693450299993],[162.08562259200002,-70.66228606599991],[162.07740319100006,-70.65520598799995],[162.0455835300002,-70.64446379999984],[162.03532962300005,-70.63836028399996],[162.03101647200018,-70.62566497199997],[162.03288821700002,-70.61516692499993],[162.03248131600006,-70.60466887799996],[162.01221764400023,-70.57919687299994],[162.0161238940001,-70.56910572699998],[162.02475019600004,-70.5608049459999],[162.03028405000023,-70.55282968499994],[162.03003990999997,-70.53525156],[162.02507571700008,-70.51913827899995],[162.0171004570001,-70.50408294099992],[162.00733483200017,-70.49016692499995],[161.99610436300023,-70.46428801899985],[161.99789472700004,-70.43840911299992],[162.02027428500017,-70.38518645599986],[162.02898196700008,-70.37623463299991],[162.04346764400012,-70.36891041499992],[162.0719507170002,-70.35833098799995],[162.081797722,-70.34734465899997],[162.08643639400023,-70.31959400799984],[162.0944116550002,-70.31414153399999],[162.2046004570001,-70.32805754999995],[162.228282097,-70.32415129999997],[162.31885826900017,-70.28394947699996],[162.37281334700015,-70.27581145599996],[162.5952254570001,-70.2691382789999],[162.6557723320001,-70.276462498],[162.6850692070001,-70.28525155999988],[162.70753014400012,-70.29973723799992],[162.78003991000003,-70.37835051899992],[162.80079186300023,-70.39381275799994],[162.82146243600008,-70.40398528399999],[162.84693444100006,-70.40715911299995],[162.87208092500023,-70.40553150799994],[162.89551842500012,-70.40886809699995],[162.91553795700003,-70.42652760199995],[162.9013778000002,-70.43206145599997],[162.88648522200012,-70.43425872199998],[162.87159264400023,-70.43352629999995],[162.85670006600017,-70.42994557099988],[162.878184441,-70.47185637799998],[162.920176629,-70.50253671699998],[162.97087649800008,-70.521905206],[163.01791425899995,-70.52996184699985],[163.07252037900005,-70.52988046699987],[163.10027103000002,-70.53297291499995],[163.1245223320001,-70.54273853999989],[163.13347415500007,-70.55055103999996],[163.15853925900015,-70.5811499979999],[163.17025800900004,-70.587579034],[163.36158287900005,-70.62428150799991],[163.42212975400005,-70.65357838299994],[163.45004316499998,-70.65748463299984],[163.47877037900005,-70.65764739399998],[163.52719160200004,-70.65260182099996],[163.63331139400006,-70.66513437299996],[163.65707441500015,-70.66326262799998],[163.67969811300023,-70.65691497199995],[163.73113040500002,-70.63241952899993],[163.78695722700004,-70.63152434699994],[163.84644616000006,-70.62273528399994],[163.86654707099999,-70.62656015399998],[163.87370853,-70.64177825299996],[163.86426842500012,-70.67107512799998],[163.86182701900006,-70.6900367169999],[163.86524498800011,-70.752699477],[163.8706160820002,-70.76946380000001],[163.89503014400012,-70.78199635199991],[163.919200066,-70.78386809699998],[163.944997592,-70.78183359199994],[163.97437584700006,-70.78289153399999],[163.99935957100016,-70.78964609199994],[164.01205488400004,-70.7911109349999],[164.01921634200008,-70.78655364399995],[164.023610873,-70.77499765399993],[164.02979576900012,-70.76555754999993],[164.03834069100003,-70.75823333099991],[164.04981530000006,-70.75286223799995],[164.05811608200017,-70.745700779],[164.0597436860002,-70.72389088299987],[164.06910241,-70.71306731599996],[164.091481967,-70.696872654],[164.10035241000017,-70.68767669099985],[164.10954837300008,-70.67595794099995],[164.1263126960001,-70.66155364399998],[164.15088951900003,-70.64999765399996],[164.17741946700008,-70.64202239399991],[164.19988040500007,-70.63933684699992],[164.04314212300014,-70.55185312299997],[164.02759850400003,-70.5323218729999],[164.09571373800017,-70.506768488],[164.16732832099996,-70.49382903399999],[164.24040774800008,-70.49114348799992],[164.493907097,-70.52044036299995],[164.56177819100012,-70.54013437299997],[164.59620201900023,-70.54607512799991],[164.700450066,-70.54656340899999],[164.75766035200016,-70.53785572699991],[164.77051842500006,-70.54062265399996],[164.78142337300008,-70.54729583099991],[164.80079186300006,-70.55575937299996],[164.83814537900005,-70.56682708099991],[164.87647545700005,-70.57382577899998],[165.11198978000007,-70.56357187299987],[165.14112389400012,-70.58700937299994],[165.1823022800002,-70.58538176899992],[165.26889082100013,-70.56536223799993],[165.312266472,-70.56031666499982],[165.342133009,-70.5647111959999],[165.36394290500007,-70.56511809699991],[165.37110436300011,-70.56959400799997],[165.3769637380002,-70.57463958099999],[165.38526451900012,-70.57708098799985],[165.3966577480002,-70.57545338299991],[165.41667728000007,-70.56755950299994],[165.42701256600017,-70.56503671699993],[165.436778191,-70.56617603999996],[165.46078535200016,-70.57293059699998],[165.46851647200003,-70.57268645599996],[165.43539472700004,-70.59303150799992],[165.45997155000023,-70.60173919099992],[165.52588951900006,-70.59742603999993],[165.55616295700005,-70.59872812299993],[165.55201256600003,-70.60230885199991],[165.54428144600004,-70.61109791499995],[165.54004967500012,-70.6148414039999],[165.92579186300023,-70.68425872199992],[165.92505944099997,-70.66375090899989],[165.93751061300011,-70.65309010199994],[165.95687910200004,-70.64918385199995],[166.01937910200016,-70.64885833099993],[166.03777103000002,-70.64446379999984],[166.09693444100006,-70.61728280999994],[166.36947675900015,-70.58391692499995],[166.4098413420002,-70.58896249799997],[166.4181421230002,-70.59417083099989],[166.43181399800002,-70.60881926899998],[166.44141686300011,-70.61126067499993],[166.724457227,-70.618259373],[166.76775149800008,-70.63046640399998],[166.80941816500015,-70.65105559699992],[166.829925977,-70.66480885199994],[166.83741295700005,-70.67669036299998],[166.82504316500004,-70.6925595029999],[166.8017684250001,-70.70094166499996],[166.75318444100006,-70.70623137799986],[166.74642988400004,-70.704685154],[166.73585045700005,-70.6960588519999],[166.72974694100017,-70.69361744599996],[166.69629967500012,-70.69963958099997],[166.68620853000007,-70.696872654],[166.66325931100008,-70.68759530999995],[166.64332116000017,-70.68824635199991],[166.5975041020001,-70.70077890399999],[166.5035913420001,-70.70224374799997],[166.45753014400006,-70.70916106599988],[166.42644290500004,-70.73308684699991],[166.447113477,-70.74423593499995],[166.45850670700023,-70.75676848799995],[166.47071373800023,-70.76628997199995],[166.49415123800011,-70.76897551899992],[166.55860436300006,-70.76482512799997],[166.57203209700018,-70.76653411299998],[166.59392337300017,-70.77809010199992],[166.60645592500012,-70.78297291499999],[166.62761478000013,-70.78533294099985],[166.72201582100013,-70.77703215899994],[166.7745874360002,-70.76482512799997],[166.79867597700004,-70.76653411299998],[166.83692467500006,-70.78362395599993],[166.85718834700018,-70.78883228999993],[166.87745201900012,-70.78484465899996],[166.901621941,-70.775485935],[166.92790774800014,-70.77044036299998],[166.9544376960001,-70.76970794099995],[167.00261478000002,-70.77418385199984],[167.07162519600016,-70.76441822699998],[167.41618899800014,-70.75904713299984],[167.46021569100003,-70.7634416649999],[167.55046634200002,-70.78443775799994],[167.700856967,-70.79127369599996],[167.73894290500002,-70.81031666499996],[167.74236087300002,-70.82024504999995],[167.7438257170002,-70.83326588299994],[167.746348504,-70.84441497199997],[167.75375410199996,-70.84783294099998],[167.78101647200018,-70.84441497199997],[167.79346764400012,-70.84531015399996],[167.80787194100017,-70.848565363],[167.83301842500023,-70.86142343499992],[167.84546959700018,-70.87867603999992],[167.85466556100008,-70.89983489399984],[167.87012780000018,-70.92392343499988],[167.82878665500002,-70.94264088299994],[167.4777124360002,-70.94939544099988],[167.41879316500004,-70.9626604149999],[167.21290123800006,-70.97975025799994],[167.16521243600016,-70.99285247199992],[167.139984571,-70.9963518209999],[167.18327884200014,-71.03093840899999],[167.2555444670002,-71.0383440079999],[167.51303144600004,-71.0041643209999],[167.8779403000002,-71.01433684699985],[167.903656446,-71.02459075299997],[167.948985222,-71.0642229149999],[167.97681725400017,-71.07740650799994],[168.10132897200006,-71.10849374799994],[168.08334394600004,-71.12590911299992],[168.06519616000003,-71.13762786299992],[168.04428144600016,-71.14373137799998],[168.01856530000012,-71.14462655999998],[167.9858504570001,-71.13681405999989],[167.974945509,-71.13551197699991],[167.96265709700006,-71.13746510199994],[167.93946373800011,-71.14560312299987],[167.9279077480002,-71.147556248],[167.9088647800002,-71.14299895599996],[167.88786868600008,-71.13502369599992],[167.8683374360002,-71.13225676899994],[167.85352623800011,-71.14364999799999],[167.83643639400017,-71.16171640400003],[167.81299889400006,-71.17156340899996],[167.76002037900005,-71.18377044099992],[167.7433374360002,-71.19451262799986],[167.73617597700016,-71.20964934699985],[167.74105879000004,-71.22283294099996],[167.75993899800008,-71.22795989399991],[168.11231530000012,-71.19548919099992],[168.163340691,-71.20159270599991],[168.18930097699996,-71.19980234199993],[168.26286868600008,-71.18434010199991],[168.35857181100002,-71.19719817499993],[168.381114129,-71.19459400799984],[168.44800866000006,-71.17652760199991],[168.48389733200023,-71.162204685],[168.50025475400005,-71.16106536299998],[168.56185957099999,-71.17066822699995],[168.58716881600006,-71.18279387799996],[168.59546959699998,-71.18523528399997],[168.64503014400023,-71.181247654],[168.66976972700004,-71.18279387799996],[168.69214928500006,-71.19052499799997],[168.73267662900005,-71.22291432099996],[168.75424238400015,-71.23691171699994],[168.7762150400001,-71.23992278399993],[168.76148522200018,-71.27556731599998],[169.0166121750002,-71.32488372199988],[169.03874759200014,-71.33456796699993],[169.060720248,-71.34710051899992],[169.07162519600004,-71.35165780999998],[169.08432050900007,-71.35466887799997],[169.09669030000012,-71.35247161299998],[169.12061608200005,-71.33749765399993],[169.13453209700006,-71.33538176899995],[169.14096113400012,-71.34026458100001],[169.14673912900005,-71.34970468499994],[169.1538192070001,-71.3593075499999],[169.16480553500006,-71.36467864399997],[169.2514754570001,-71.3744442689999],[169.2692163420002,-71.37997812299992],[169.32618248800011,-71.42359791499993],[169.34506269600004,-71.43352629999993],[169.36573326900023,-71.43808359199997],[169.39177493600002,-71.43808359199997],[169.4186304050002,-71.44255950299986],[169.4637150400001,-71.46355559699998],[169.49529056100008,-71.463474217],[169.4860132170002,-71.46868254999998],[169.477793816,-71.47503020599993],[169.470550977,-71.48251718499998],[169.46461022200015,-71.4911434879999],[169.48047936300011,-71.49472421699996],[169.50424238399998,-71.51034921699996],[169.51596113399998,-71.51506926899995],[169.55201256600006,-71.51970794099998],[169.58790123800023,-71.5201148419999],[169.72055097700004,-71.50611744599993],[169.76026451900023,-71.50790781],[169.7915145190001,-71.51946379999985],[169.8694767590001,-71.55974700299993],[169.87924238400004,-71.56829192499984],[169.88949629000015,-71.57512786299996],[169.90479576900012,-71.577569269],[169.97738691499998,-71.56292083099999],[169.97494550900015,-71.58114999799997],[169.98617597700016,-71.59531015399999],[170.02263431100002,-71.61549244599983],[170.04102623800006,-71.62900156],[170.05827884200008,-71.64430103999996],[170.0758569670002,-71.65601978999993],[170.0953882170002,-71.658786717],[170.12012780000018,-71.65764739399997],[170.18279056100008,-71.67441171699998],[170.20508873800011,-71.67400481599998],[170.22877037900003,-71.66887786299988],[170.25147545700005,-71.66073984199994],[170.27173912900014,-71.65081145599986],[170.25359134200005,-71.64169687299996],[170.24903405000023,-71.62656015399996],[170.2570093110002,-71.612969659],[170.27654056100005,-71.60898202899993],[170.26319420700014,-71.59335702899995],[170.31080162900005,-71.56552499799996],[170.36182701900023,-71.54404062299996],[170.31381269600016,-71.44166432099986],[170.29908287900005,-71.42400481599985],[170.2448836600001,-71.38274504999998],[170.2306421230002,-71.36736419099995],[170.22152753999998,-71.35165780999998],[170.20866946700008,-71.31422291499995],[170.21607506600014,-71.30291106599995],[170.23861738400015,-71.29461028399989],[170.2646590500001,-71.29225025799983],[170.2823999360002,-71.29876067499993],[170.3217879570001,-71.34742603999996],[170.33106530000023,-71.35418059699998],[170.35043379000015,-71.35572682099993],[170.36011803500006,-71.35963307099993],[170.37549889400017,-71.37509530999995],[170.4026798840001,-71.40886809699985],[170.45850670700017,-71.45037200299993],[170.49170983200005,-71.481622003],[170.53638756600006,-71.53850676899985],[170.55225670700017,-71.55087655999998],[170.58961022199998,-71.57317473799992],[170.69117272199998,-71.65699635199992],[170.67123457100004,-71.67538827899996],[170.66423587300002,-71.68059661299995],[170.81373131600006,-71.699802342],[170.80730228000002,-71.70191822699984],[170.7892358730002,-71.71209075299996],[170.8087671230002,-71.73365650799997],[170.8309025400001,-71.74684010199984],[170.85613040500002,-71.75448984199996],[170.88477623800011,-71.75896575299993],[170.8654077480002,-71.76824309699988],[170.86451256600012,-71.78248463299997],[170.87452233200005,-71.79778411299985],[170.88754316500015,-71.81031666499992],[170.90357506600006,-71.82000090899999],[170.9254663420002,-71.82887135199994],[170.94800866000017,-71.83464934699991],[170.96607506600017,-71.83464934699991],[170.94581139400006,-71.86077239399995],[170.91700280000023,-71.87835051899998],[170.85328209700018,-71.90545012799993],[170.77361087300002,-71.95086028399992],[170.7443953790001,-71.95859140399999],[170.672536655,-71.96087004999997],[170.638926629,-71.968194269],[170.62086022200018,-71.98796965899993],[170.61378014400012,-71.99797942499991],[170.60059655000006,-72.004489842],[170.58529707100004,-72.007419529],[170.57252037900017,-72.00628020599997],[170.55738366000017,-71.99830494599993],[170.54851321700002,-71.98609791499996],[170.5376082690002,-71.95419687299994],[170.54965254000015,-71.955173435],[170.5612085300002,-71.95273202899998],[170.570974155,-71.9470354149999],[170.57911217500023,-71.93808359199997],[170.49805748800011,-71.89592864399992],[170.44483483200023,-71.88250090899992],[170.44011478000013,-71.87363046699997],[170.43897545700005,-71.8645158829999],[170.43051191500004,-71.85784270599993],[170.3917749360002,-71.84335702899998],[170.37549889400017,-71.83220794099988],[170.3624780610002,-71.81617603999989],[170.33399498800003,-71.80087656],[170.30241946700008,-71.82105885199995],[170.255707227,-71.87216562300001],[170.13843834700006,-71.9318986959999],[170.22966556100013,-71.93938567499995],[170.25635826900023,-71.95077890399993],[170.23829186300011,-71.97714609199991],[170.21851647200018,-72.00009531],[170.19581139400023,-72.02019622199995],[170.16871178500006,-72.03753020599996],[170.13843834700006,-72.04371510199982],[170.07960045700023,-72.02418385199994],[170.0457462900001,-72.01995208099993],[170.05201256600003,-72.03167083099991],[170.05323326900023,-72.04306405999988],[170.0495711600001,-72.05339934699998],[170.04004967500012,-72.06226978999993],[170.08920332100004,-72.084405206],[170.0771590500001,-72.08896249799993],[170.07097415500004,-72.09498463299985],[170.06934655000012,-72.10328541499993],[170.07113691500004,-72.11435312299997],[170.067637566,-72.12363046699993],[170.02930748800006,-72.14381275799987],[170.02084394600016,-72.15520598799992],[170.0197046230002,-72.16366952899996],[170.01636803500014,-72.1708309879999],[170.00180097700016,-72.17880624799996],[169.98951256600017,-72.18084075299998],[169.94988040500004,-72.17831796699997],[169.92554772200015,-72.184665623],[169.87891686300011,-72.20330169099998],[169.85499108200023,-72.20745208099993],[169.79712975399997,-72.20956796699994],[169.77263431100016,-72.22014739399998],[169.76539147200006,-72.24480559699998],[169.78272545700023,-72.24334075299993],[169.79493248800023,-72.248142185],[169.80616295700023,-72.25505950299991],[169.82032311300023,-72.26018645599993],[169.8917749360002,-72.26531340899993],[169.90642337300014,-72.27092864399985],[169.9199324880001,-72.278008722],[169.93409264400012,-72.28248463299997],[169.95045006600003,-72.28045012799993],[169.96461022200006,-72.28036874799994],[169.99154707100004,-72.29119231599995],[170.00993899800008,-72.28777434699985],[169.9917098320001,-72.30689869599992],[169.86670983200008,-72.39706796699994],[169.857676629,-72.41326262799998],[169.88526451900012,-72.42994557099993],[169.94288170700008,-72.426202081],[170.0463973320002,-72.401950779],[170.06348717500006,-72.39299895599999],[170.09937584700018,-72.36394622200001],[170.1181746750001,-72.35328541499989],[170.24447675899998,-72.32048919099988],[170.26628665500007,-72.31861744599989],[170.2823999360002,-72.32634856599992],[170.29216556100008,-72.36500416499995],[170.30209394600016,-72.36834075299998],[170.31299889400023,-72.36939869599986],[170.31918378999998,-72.37810637799993],[170.32593834700006,-72.40642669099998],[170.33155358200023,-72.41806405999998],[170.34050540500007,-72.43124765400003],[170.33961022200018,-72.43889739399997],[170.33090253999998,-72.44793059699988],[170.31137129000004,-72.46249765399999],[170.30225670700008,-72.47356536299993],[170.2985132170002,-72.48552825299988],[170.29525800900012,-72.5139299459999],[170.281993035,-72.56389739399985],[170.27051842500023,-72.58896249799994],[170.25538170700003,-72.602959894],[170.20394941500015,-72.61541106599992],[170.15170332100016,-72.61777109199997],[170.09961998800011,-72.61199309699991],[170.04802493600005,-72.60019296699993],[169.97234134200008,-72.57317473799998],[169.92261803500017,-72.56780364399994],[169.879649285,-72.55429452899996],[169.85743248800017,-72.55087655999995],[169.72730553500014,-72.5520158829999],[169.7002059250002,-72.54827239399995],[169.68726647200006,-72.544528904],[169.67505944100017,-72.53850676899992],[169.63550866,-72.51279062299986],[169.61451256600017,-72.50359465899999],[169.58912194100006,-72.50017669099998],[169.58179772200006,-72.50286223799996],[169.56714928500006,-72.51425546699993],[169.55990644600004,-72.51677825299986],[169.54859459700003,-72.51506926899985],[169.43246504000004,-72.47283294099992],[169.39210045700023,-72.46689218499996],[169.31055748800011,-72.48902760199996],[169.12647545700023,-72.48503997199998],[168.70671634200008,-72.35906340899994],[168.67790774800002,-72.36305103999983],[168.64161217500012,-72.38241952900003],[168.59424889400006,-72.38681406],[168.40788821700014,-72.36882903399989],[168.31617272200006,-72.37363046699997],[168.59176679750013,-72.47478606599995],[168.8673608730002,-72.57594166499986],[168.91879316499998,-72.58326588299987],[169.30176842500023,-72.57732512799993],[169.3486434250001,-72.59547291499993],[169.38640384200008,-72.61785247199995],[169.39625084700018,-72.6267229149999],[169.40235436300003,-72.640069269],[169.40040123800023,-72.64812590899986],[169.40211022200006,-72.65488046699997],[169.41944420700023,-72.66415780999994],[169.47022545700005,-72.68230559699992],[169.49724368600013,-72.687188409],[169.52173912900005,-72.68482838299995],[169.57276451900023,-72.6716447899999],[169.6256616550002,-72.66464609199993],[169.6788843110002,-72.6656226539999],[169.88404381600012,-72.71168385199994],[169.93246503999998,-72.735935154],[169.84880618600008,-72.80022551899994],[169.75684655000023,-72.85271575299998],[169.72087649800008,-72.86744557099999],[169.71404056100005,-72.87420012799993],[169.70215905000012,-72.90154387799998],[169.69434655000012,-72.91228606599991],[169.6823022800002,-72.92115650799987],[169.60987389400023,-72.95549895599991],[169.58448326900023,-72.96217213299997],[169.60816491000006,-72.99334075299996],[169.60035241000006,-72.99724700299996],[169.58513431100008,-73.0074195289999],[169.5773218110002,-73.01116301899992],[169.63119550900004,-73.04371510199991],[169.60718834700018,-73.06454843499998],[169.58228600400005,-73.08049895599999],[169.55502363400015,-73.091241144],[169.40121504000015,-73.11028411299998],[169.38941491000017,-73.11028411299998],[169.37867272200006,-73.10572682099995],[169.36931399800014,-73.09840260199994],[169.36052493600008,-73.09026458099993],[169.34669030000023,-73.07984791499993],[169.33375084700006,-73.07642994599993],[169.26644941500004,-73.07919687299996],[169.17221113400015,-73.10312265399995],[169.2198999360002,-73.13250090899986],[169.24952233200023,-73.19068775799998],[169.25114993600008,-73.24846770599991],[169.214610222,-73.27646249800003],[169.0730900400001,-73.26653411299993],[169.00782311300003,-73.27109140399998],[168.97974694100017,-73.26392994599993],[168.98275800899998,-73.23886484199994],[168.93458092500023,-73.24098072699994],[168.91163170700023,-73.23650481599998],[168.89389082100016,-73.22340260199991],[168.89828535200004,-73.22031015399992],[168.90658613400004,-73.21249765400003],[168.91130618600013,-73.20940520599996],[168.88770592500006,-73.19394296700003],[168.87907962300005,-73.17839934699992],[168.88689212300008,-73.16318124799994],[168.91325931100008,-73.14820728999983],[168.94507897200012,-73.13551197699987],[168.94800866000006,-73.13160572699987],[168.95183353000002,-73.119235935],[168.95484459700006,-73.11541106599991],[168.96583092500012,-73.11272551899992],[169.00570722700016,-73.11044687299994],[168.97510826900023,-73.09148528399994],[168.94117272200012,-73.08798593499995],[168.85108483200023,-73.10271575299986],[168.81470787900017,-73.11874765399993],[168.79460696700014,-73.12330494599998],[168.75464928500017,-73.12395598799992],[168.71452884200005,-73.12004973799993],[168.72461998800011,-73.1110979149999],[168.7358504570001,-73.10418059699991],[168.74854576900006,-73.09954192499988],[168.76172936300023,-73.09742603999996],[168.75261478000002,-73.07691822699991],[168.7282007170002,-73.07170989399992],[168.67269941500004,-73.07447682099998],[168.63892662900005,-73.06780364399992],[168.61426842500023,-73.05592213299997],[168.56625410200016,-73.02068450299993],[168.54053795700008,-73.00855885199994],[168.39405358200008,-72.97193775799991],[168.36744225400017,-72.96900807099989],[168.33497155000003,-72.97031015399998],[168.29761803500003,-72.99032968499994],[168.32488040500002,-73.02654387799997],[168.37427819100012,-73.06780364399992],[168.40251712300008,-73.10295989399998],[168.3979598320001,-73.12900155999995],[168.381114129,-73.14788176899998],[168.35792076900006,-73.1599260399999],[168.33415774800008,-73.16545989399992],[168.3042098320001,-73.16399504999995],[168.25611412900005,-73.14462655999994],[168.22689863400004,-73.13779062299993],[168.21208743600002,-73.13909270599991],[168.18930097699996,-73.1499976539999],[168.1759546230002,-73.15357838299997],[168.16293379000004,-73.15300872199991],[168.06983483200023,-73.12297942499995],[168.04151451900012,-73.11744557099993],[168.01417076900023,-73.12118905999988],[167.97999108200023,-73.13241952899988],[167.95533287900005,-73.13551197699987],[167.89649498800006,-73.128350519],[167.86589603000007,-73.12932708099999],[167.81137129000015,-73.14755624799987],[167.78077233200023,-73.15292734199993],[167.72193444100017,-73.15178801899998],[167.69369550899998,-73.1447893209999],[167.644786004,-73.11467864399988],[167.6167098320001,-73.11793385199984],[167.55795332100004,-73.14039478999993],[167.50407962300008,-73.14861419099992],[167.17139733200005,-73.15300872199991],[167.05844160200004,-73.12908294099985],[167.05103600400005,-73.12330494599998],[167.02833092500006,-73.0897763],[166.99122155000018,-73.05250416499996],[166.97120201900012,-73.03655364399995],[166.94629967500018,-73.02385833099997],[166.8354598320001,-72.99732838299994],[166.61646569100012,-72.97291432099989],[166.5639754570002,-72.95647551899998],[166.52051842500012,-72.92978280999995],[166.56910241000006,-72.89666106599992],[166.5828556650001,-72.88201262799993],[166.54021243600002,-72.88201262799993],[166.45484459700012,-72.89999765399995],[166.3654077480002,-72.90048593499995],[166.34083092500006,-72.90390390399995],[166.33082116,-72.91366952899999],[166.3388778000002,-72.92962005],[166.35621178500006,-72.94768645599993],[166.39421634200002,-72.97763437299999],[166.41407311300023,-72.98674895599989],[166.45850670700023,-72.99504973799993],[166.5491642590001,-73.02849700299993],[166.7667749360002,-73.06487395599999],[166.75782311300006,-73.08700937299997],[166.74634850400003,-73.10540129999993],[166.72974694100017,-73.11777109199987],[166.70557701900006,-73.12086353999995],[166.73845462300008,-73.16187916499986],[166.77637780000006,-73.18914153399994],[166.82064863400015,-73.207452081],[166.87208092500023,-73.22136809699998],[166.739512566,-73.32919687299993],[166.777598504,-73.36532968499988],[166.822520379,-73.35426197699992],[166.91309655000023,-73.29989999799999],[166.97510826900012,-73.27499765399998],[167.0952254570001,-73.25212981599996],[167.31153405000023,-73.27361419099998],[167.30713951900023,-73.28069426899995],[167.30030358200023,-73.29656340899987],[167.29590905000023,-73.30364348799995],[167.33139082100016,-73.31365325299993],[167.44597415500002,-73.30388762799998],[167.92937259200008,-73.35865650799991],[167.75684655000006,-73.36842213299995],[167.6228947270001,-73.3591447899999],[167.64112389400015,-73.3820940079999],[167.67855878999998,-73.40260182099993],[167.75318444100006,-73.43206145599993],[167.716481967,-73.4468726539999],[167.678965691,-73.44719817499993],[167.52003014400006,-73.41969166499999],[167.48267662900005,-73.401462498],[167.464691602,-73.3980445289999],[167.4423934250002,-73.40398528399993],[167.42628014400003,-73.405368748],[167.38282311300023,-73.39519622199995],[167.363129102,-73.39430103999996],[167.24968509200008,-73.40545012799998],[167.23047936300011,-73.41090260199984],[167.22193444100017,-73.41814544099995],[167.22584069100017,-73.43434010199991],[167.23853600400005,-73.44353606599988],[167.27540123800011,-73.45273202899995],[167.22364342500006,-73.47698333099993],[167.25001061300006,-73.48162200299996],[167.30534915500007,-73.47682057099996],[167.32960045700017,-73.481866144],[167.35523522199998,-73.49163176899984],[167.43474368600002,-73.50318775799997],[167.38184655000018,-73.52304452899988],[167.32699629000012,-73.53248463299997],[167.27279707099999,-73.52800872199992],[167.194590691,-73.49195728999996],[167.021739129,-73.46233489399992],[166.9892684250001,-73.46510182099998],[167.05665123800023,-73.499118748],[167.07691491000006,-73.51262786299998],[167.05307050900015,-73.54705169099992],[167.032969597,-73.566094659],[167.00668378999998,-73.57154713299994],[166.92530358200023,-73.56015390399996],[166.88542728000007,-73.56129322699992],[166.87671959700018,-73.56422291499992],[166.87012780000006,-73.57008228999989],[166.85840905000012,-73.58513762799998],[166.84913170700023,-73.59050872199995],[166.83838951900023,-73.5886369769999],[166.81544030000023,-73.577732029],[166.82162519600004,-73.5735002579999],[166.83318118600002,-73.562676691],[166.83961022200006,-73.5583635399999],[166.8273218110002,-73.54827239399992],[166.81299889400012,-73.54208749799987],[166.79769941500015,-73.5393205709999],[166.7817488940002,-73.53948333099996],[166.83277428500006,-73.5220679669999],[166.792165561,-73.49732838299992],[166.747325066,-73.48642343499994],[166.70191490999997,-73.49236419099988],[166.66016686300006,-73.51864999799997],[166.64454186300011,-73.53899504999988],[166.63054446700002,-73.56170012799993],[166.61426842500012,-73.58082447699991],[166.59034264400023,-73.59042734199996],[166.55892988400004,-73.5907528629999],[166.4721785820001,-73.581231378],[166.462168816,-73.58391692499998],[166.45753014400006,-73.58912525799997],[166.4514266290001,-73.59270598799995],[166.43767337300008,-73.59042734199996],[166.42505944100014,-73.58538176899984],[166.39136803500014,-73.56536223799998],[166.19483483200005,-73.48984140399995],[166.1398218110002,-73.48202890399996],[166.09343509200002,-73.49342213299984],[166.11963951900003,-73.51620859199994],[166.21851647200018,-73.56617603999999],[166.1394149100001,-73.573825779],[165.8737085300002,-73.56585051899995],[165.8170679050002,-73.5782203099999],[165.82545006600006,-73.59832122199995],[165.84473717500006,-73.6071916649999],[165.996348504,-73.62273528399999],[166.20085696700008,-73.67180754999985],[166.19117272199998,-73.68336353999996],[166.1792098320001,-73.69158294099996],[166.16521243600002,-73.69719817499995],[166.150645379,-73.70086028400002],[166.22754967500012,-73.70322030999988],[166.26644941499998,-73.70891692499995],[166.29420006600017,-73.72576262799994],[166.27133222700016,-73.73284270600001],[166.23536217500006,-73.75920989399992],[166.21534264400012,-73.764906508],[166.20386803500017,-73.76262786299992],[166.1921492850001,-73.75896575299996],[166.18091881600017,-73.75741952899993],[166.17017662900017,-73.76213958099993],[166.1665145190001,-73.76930103999989],[166.1635848320001,-73.79045989399997],[166.16049238400004,-73.79900481599991],[166.15219160200004,-73.80917734199994],[166.14437910200016,-73.81340911299988],[166.02995853,-73.80917734199994],[166.00489342500012,-73.81389739399995],[165.96461022200003,-73.82976653399999],[165.93775475400017,-73.83342864399984],[165.6702580090001,-73.79697030999998],[165.58301842500023,-73.80510833099999],[165.63160241,-73.83407968499998],[165.6831160820001,-73.85344817499991],[165.79314212300002,-73.872491144],[165.7750757170002,-73.87916432099985],[165.71843509200014,-73.88697682099995],[165.7000431650001,-73.89202239399998],[165.66928144599999,-73.90886809699998],[165.65186608200023,-73.91366952899988],[165.57113691500004,-73.91326262799996],[165.49097741000014,-73.90154387799988],[165.2605900400001,-73.89332447699996],[165.19898522200006,-73.859063409],[165.192149285,-73.83017343499998],[165.24537194100012,-73.77792734199997],[165.25603274800002,-73.74407317499991],[165.25171959700006,-73.73821379999988],[165.23519941500015,-73.72795989399995],[165.2306421230002,-73.72226327899988],[165.23292076900006,-73.716403904],[165.24537194100012,-73.70378997199985],[165.24496503999998,-73.697442316],[165.2159936860002,-73.66106536299992],[165.215098504,-73.64568450299998],[165.22828209700006,-73.62460702899988],[165.23666425900004,-73.60662200299993],[165.23121178500017,-73.59303150799995],[165.21697024800008,-73.58277760199994],[165.19841556100008,-73.5748023419999],[165.18018639400006,-73.56373463299995],[165.16749108200023,-73.549248956],[165.14795983200023,-73.51230234199996],[165.13355553500017,-73.47568124799992],[165.12501061300023,-73.46217213299987],[165.05258222700004,-73.41668059699998],[165.03199303500017,-73.41090260199984],[165.177500847,-73.35100676899998],[165.22185306100002,-73.34246184699995],[165.35816491000008,-73.34002044099991],[165.308848504,-73.32781340899986],[165.252207879,-73.32138437299994],[165.19516035200004,-73.32219817499995],[165.14551842500012,-73.33261484199994],[165.03305097700004,-73.37379322699991],[164.97722415500007,-73.38632577899999],[164.91391035199996,-73.38787200299996],[164.55884850400017,-73.32439544099985],[164.52613366000003,-73.3301734349999],[164.44320722700004,-73.36874765399998],[164.489512566,-73.39788176899994],[164.53874759200002,-73.41716887799996],[164.59115644599999,-73.42571379999998],[164.70240319100006,-73.41904062299994],[164.76661217500012,-73.42376067499985],[164.82911217500023,-73.4377580709999],[164.880137566,-73.46160247199998],[164.89380944100003,-73.48349374800001],[164.8781030610002,-73.52695077899988],[164.91195722700013,-73.57195403399986],[164.91537519600016,-73.60076262799998],[164.90593509200008,-73.65715911299993],[164.88998457100016,-73.682712498],[164.86198978000002,-73.69768645599996],[164.82846113399998,-73.70468515399993],[164.79721113400004,-73.70598723799992],[164.77556399800014,-73.71461353999993],[164.75049889400012,-73.73601653399989],[164.72828209700018,-73.76132577900002],[164.71461022200006,-73.78167083100001],[164.7762150400001,-73.8093401019999],[164.7907820970001,-73.81406015399999],[164.82488040500013,-73.81601327899988],[164.8409936860002,-73.82390715899994],[164.84986412900005,-73.8366838519999],[164.85531660200016,-73.85116952899993],[164.8628035820002,-73.86402760199987],[164.87818444100017,-73.872491144],[164.9524845710001,-73.89088307099992],[164.89291425900015,-73.92506275799994],[164.87086022200018,-73.93157317499993],[164.89039147200006,-73.94687265399998],[164.91138756600014,-73.95419687299999],[165.00001061300006,-73.9748674459999],[165.019786004,-73.97568124799999],[165.04664147200018,-73.97258879999993],[165.019379102,-73.94378020599999],[165.1334741550002,-73.97893645599996],[165.26026451900023,-74.00115325299993],[165.23910566500015,-74.01002369599996],[165.308848504,-74.03036874799987],[165.28248131599997,-74.04265715900002],[165.25521894600004,-74.04607512799993],[165.2003686860001,-74.04680754999995],[165.10987389400023,-74.057875258],[165.07553144599999,-74.05478281],[165.06771894600004,-74.04802825299987],[165.06413821700002,-74.0236955709999],[165.05681399800002,-74.01799895599993],[164.89600670700023,-73.99960702899998],[164.82374108200003,-73.96477629999985],[164.59148196700002,-73.92669036299995],[164.52955162900017,-73.92392343499999],[164.4682723320002,-73.92913176899998],[164.41081790500002,-73.943291925],[164.43702233200005,-73.95045338299985],[164.52125084700018,-73.96013762800001],[164.587738477,-73.97966887799998],[164.5955509770001,-73.98674895599996],[164.5960392590001,-73.99871184699998],[164.5932723320001,-74.01946379999998],[164.67253665500007,-73.99960702899998],[164.66749108200023,-74.017185154],[164.669688347,-74.03329843499998],[164.67904707100016,-74.04436614399992],[164.69548587300008,-74.047458592],[164.71583092500023,-74.04119231599995],[164.7394311860002,-74.02223072699994],[164.75652103000002,-74.01653411299996],[164.78793379000015,-74.02174244599996],[164.81820722700016,-74.04021575299998],[164.84457441500015,-74.06471119599992],[164.86443118600008,-74.08863697699996],[164.81812584700018,-74.10198333099997],[164.83448326900003,-74.11272551899991],[164.85352623800006,-74.11712004999997],[164.89380944100003,-74.12037525799994],[164.87582441500004,-74.13241952899995],[164.85572350400017,-74.13958098799996],[164.812754754,-74.14592864399992],[164.8823348320001,-74.17083098799995],[164.85987389400012,-74.20916106599998],[164.89893639400006,-74.22747161299995],[165.04468834700006,-74.24879322699991],[165.06275475400014,-74.25660572699991],[165.07740319100017,-74.27312590899989],[165.0807397800002,-74.28346119599999],[165.08521569100017,-74.30779387799994],[165.08863366000017,-74.31316497199992],[165.11394290500013,-74.32008228999983],[165.12281334700006,-74.32740650799992],[165.128184441,-74.3409156229999],[165.10743248800011,-74.34286874799994],[165.10059655000012,-74.34246184699994],[165.12191816500015,-74.35466887799991],[165.15381920700008,-74.38982512799987],[165.177012566,-74.40252044099985],[165.20826256600017,-74.41008879999998],[165.22364342500012,-74.41578541499996],[165.23511803500017,-74.42473723799999],[165.24659264400012,-74.43873463299985],[165.25814863400015,-74.44996510199987],[165.2716577480002,-74.45875416499993],[165.28809655000012,-74.46526458100001],[165.40512129000004,-74.4777971329999],[165.45777428500003,-74.49439869599996],[165.4635522800002,-74.52996184699985],[165.4558211600001,-74.5534807269999],[165.44809003999998,-74.60686614399995],[165.43474368600008,-74.62900156],[165.4109806650001,-74.64031340899999],[165.38721764400006,-74.63396575299988],[165.34058678500017,-74.60165780999995],[165.23853600400017,-74.54664478999989],[165.17693118600002,-74.52629973799998],[165.13086998800011,-74.53004322699984],[165.10580488399998,-74.54485442499997],[165.08269290500007,-74.554294529],[165.0582788420002,-74.55828215899999],[165.00310306100008,-74.55673593499995],[164.94922936300023,-74.56560637799998],[164.921722852,-74.56454843500003],[164.89747155000012,-74.56682708099991],[164.84839928500017,-74.58521900799987],[164.81918379000004,-74.58147551899991],[164.79224694100017,-74.57317473799995],[164.76490319100017,-74.56959400799997],[164.58741295700005,-74.57488372199995],[164.55054772200012,-74.56560637799998],[164.5039168630001,-74.56878020599996],[164.48853600400003,-74.5673153629999],[164.46461022200018,-74.55934010199994],[164.36312910200016,-74.50823333099997],[164.34083092500023,-74.50212981599998],[164.31836998800023,-74.50261809699988],[164.11296634200005,-74.54851653399986],[163.92505944100006,-74.55771249800001],[163.96168053500014,-74.58513762799988],[163.84734134200002,-74.61760833099996],[163.78728274800002,-74.62444426899998],[163.72022545700017,-74.61239999799987],[163.69646243600008,-74.61646900799984],[163.68474368600008,-74.61565520599991],[163.6684676440002,-74.607028904],[163.66285241000006,-74.5966122379999],[163.66211998800011,-74.58424244599989],[163.659434441,-74.56975676899994],[163.64991295700023,-74.54452890399998],[163.64283287900017,-74.51580169099992],[163.64714603000004,-74.490329685],[163.67188561300023,-74.4743791649999],[163.60385175899998,-74.45403411299992],[163.5706486340001,-74.44817473799988],[163.5333764980002,-74.45647551899995],[163.53272545700023,-74.43206145599999],[163.55534915500013,-74.38420989399988],[163.5555119150001,-74.36044687299997],[163.53541100400005,-74.34075286299993],[163.50367272200018,-74.3370093729999],[163.46989993600016,-74.34197356599995],[163.39527428500006,-74.36305103999996],[163.30583743600005,-74.40056731599998],[163.25660241000006,-74.413018488],[163.23316491000014,-74.41415780999995],[163.18637128999998,-74.40927499799997],[163.12134850400003,-74.40935637799996],[163.10840905000023,-74.41269296699997],[163.09864342500012,-74.41887786299995],[163.08969160200013,-74.42831796699997],[163.08757571700008,-74.438083592],[163.09750410200016,-74.44508228999999],[163.18197675900004,-74.44703541499993],[163.1967879570001,-74.45574309699992],[163.20834394600004,-74.48064544099995],[163.22722415500004,-74.50261809699988],[163.27076256600014,-74.54176197699991],[163.21517988400004,-74.58660247199994],[163.20215905000023,-74.59441497199992],[163.16684004000004,-74.60735442499993],[163.089121941,-74.65829843499994],[163.0792749360002,-74.67107512799998],[163.07105553500014,-74.68629322699995],[163.06104576900012,-74.69988372199992],[163.04525800900015,-74.707777602],[163.01189212300008,-74.70142994599995],[162.98853600400017,-74.67555103999986],[162.95337975400005,-74.61541106599988],[162.93775475400005,-74.60475025799992],[162.91895592500006,-74.60214609199993],[162.89918053500014,-74.60426197699995],[162.88086998800011,-74.60865650799994],[162.8637801440002,-74.61028411299995],[162.8307397800002,-74.60475025799992],[162.81299889400012,-74.60377369599996],[162.83423912900008,-74.63616301899997],[162.83871504000015,-74.65105559699992],[162.83106530000012,-74.66480885199994],[162.822520379,-74.66985442499997],[162.80323326900017,-74.67595794099995],[162.79460696700008,-74.68084075299993],[162.78777103000007,-74.68857187299994],[162.77662194100006,-74.705987238],[162.77051842500023,-74.71282317499993],[162.73080488400004,-74.73137786299993],[162.59148196700008,-74.75017669099998],[162.5944116550002,-74.76604583099991],[162.60132897200018,-74.77898528399992],[162.61231530000023,-74.78777434699998],[162.62818444100014,-74.79111093499999],[162.60718834700006,-74.82634856599994],[162.58334394600016,-74.85019296699993],[162.55258222700016,-74.86443450299993],[162.51148522200018,-74.87078215899996],[162.47478274800008,-74.86467864399998],[162.40455162900005,-74.83782317499998],[162.36378014400017,-74.84156666499993],[162.38477623800011,-74.855075779],[162.45508873800023,-74.88241952899998],[162.45199629000012,-74.92115650799991],[162.48959394600013,-74.9436174459999],[162.54314212300008,-74.95370859199997],[162.68946373800011,-74.95940520599994],[162.74195397200006,-74.9704729149999],[162.78614342500012,-74.99000416499989],[162.75749759200008,-75.01628997199998],[162.71045983200023,-75.02825286299992],[162.61784915500007,-75.030938409],[162.63184655000023,-75.04241301899995],[162.64861087300008,-75.04729583099993],[162.68572024800008,-75.05071379999993],[162.65805097700016,-75.08098723799992],[162.6237899100001,-75.09303150799994],[162.54623457100016,-75.10116952899993],[162.55787194100006,-75.12184010199996],[162.57911217500023,-75.13746510199985],[162.60417728000002,-75.14788176899985],[162.62777754000015,-75.15349700299984],[162.65560957100004,-75.16741301899992],[162.64600670700023,-75.18889739399995],[162.61915123800003,-75.21038176899997],[162.5952254570001,-75.22372812299999],[162.54346764400006,-75.24016692499998],[162.26254316499998,-75.2711727839999],[162.029551629,-75.25986093500002],[161.920258009,-75.23626067499998],[161.89795983200003,-75.227146092],[161.85401451900023,-75.20305754999988],[161.83139082100016,-75.19443124799997],[161.804453972,-75.18987395599993],[161.77637780000012,-75.18889739399995],[161.66684004000015,-75.1999651019999],[161.61426842500012,-75.21428801899988],[161.590586785,-75.22893645599999],[161.55469811300011,-75.26392994599989],[161.52865644600004,-75.27613697699995],[161.47486412900017,-75.28557708099989],[160.97592207100016,-75.2872046849999],[160.910329623,-75.3014462219999],[160.8784285820001,-75.30396900799992],[160.84848066500015,-75.31023528399994],[160.79957116000017,-75.34042734199997],[160.707774285,-75.36549244599988],[160.58236738400004,-75.37835051899991],[160.63868248800011,-75.39763762799986],[160.92530358200005,-75.42799244599983],[160.97673587300008,-75.42205169099998],[161.087087436,-75.384372654],[161.45508873800003,-75.38551197699995],[161.82309004000007,-75.38665129999998],[162.19109134200002,-75.38779062300001],[162.20875084700006,-75.39771900799984],[162.26221764400006,-75.44166432099986],[162.27344811300006,-75.45671965899996],[162.28353925900015,-75.47820403399999],[162.30111738400015,-75.50505950299998],[162.3066512380001,-75.52939218499995],[162.28077233200005,-75.54265715899989],[162.1445418630001,-75.53655364399998],[162.07357832100004,-75.54273853999996],[162.029551629,-75.57415129999998],[162.05779056100016,-75.58521900799994],[162.08448326900012,-75.59205494599986],[162.11182701900006,-75.59498463299995],[162.21648196700008,-75.59197356599988],[162.22584069100017,-75.59840260199998],[162.2231551440001,-75.6130510399999],[162.21314537900005,-75.62867603999997],[162.20053144600016,-75.63787200299986],[162.2145288420002,-75.63844166499983],[162.22535241,-75.64267343499992],[162.2340600920002,-75.65007903399993],[162.2417098320001,-75.66057708099999],[162.25033613400004,-75.66692473799992],[162.26343834700018,-75.66904062300003],[162.28956139400023,-75.66871510199991],[162.29769941500015,-75.67253997199992],[162.30811608200023,-75.68889739399985],[162.31495201900017,-75.69443124799996],[162.45948326900012,-75.71298593499996],[162.46892337300002,-75.71257903399994],[162.47917728000007,-75.71062590899992],[162.48780358200005,-75.71087004999995],[162.4928491550002,-75.71656666499993],[162.49781334700006,-75.73528411299989],[162.50310306100002,-75.74488697699998],[162.5131942070001,-75.74879322699996],[162.53248131600006,-75.75066497199984],[162.55844160200004,-75.75025807099993],[162.58464603000007,-75.74675872199995],[162.5952254570001,-75.74765390399995],[162.62427819100017,-75.76140715899996],[162.84310957100004,-75.79306405999994],[162.90007571700008,-75.82293059699992],[162.88331139400023,-75.83733489399998],[162.84278405000012,-75.85312265399993],[162.81714928500006,-75.86834075299991],[162.80990644600004,-75.87037525799992],[162.80502363400015,-75.87363046699997],[162.80551191500015,-75.88005950299997],[162.80990644600004,-75.89104583099994],[162.80941816500004,-75.89714934699985],[162.80388431100013,-75.90154387799993],[162.79273522200015,-75.90715911299992],[162.75953209700018,-75.91480885199987],[162.57732181100008,-75.90927499799994],[162.55787194100006,-75.91253020599999],[162.54053795700017,-75.9218075499999],[162.54395592500018,-75.93206145599996],[162.55990644600007,-75.940036717],[162.57992597700016,-75.94304778399993],[162.60718834700006,-75.94296640399995],[162.626800977,-75.94548919099995],[162.70687910200016,-75.98105234199993],[162.70923912900005,-75.99334075299998],[162.69605553500014,-76.01978932099996],[162.71216881600003,-76.02743905999998],[162.72299238400015,-76.04045989399998],[162.7360945970001,-76.07390715899992],[162.6500757170002,-76.09107838299995],[162.39421634200014,-76.059828383],[162.42448978000013,-76.07431405999995],[162.52182050899995,-76.098239842],[162.48340905000006,-76.108982029],[162.44109134200008,-76.10572682099996],[162.39918053500017,-76.09384531],[162.36182701900012,-76.07805754999988],[162.35572350400005,-76.083103123],[162.30111738400015,-76.10051848799998],[162.33350670700003,-76.11394622199988],[162.44760175900015,-76.12818775799997],[162.41407311300023,-76.14812590899996],[162.36304772200006,-76.15162525799994],[162.26465905000012,-76.14723072699996],[162.16578209700018,-76.15496184699998],[162.11557050900004,-76.17017994599996],[162.09229576900012,-76.20224374799994],[162.12549889400012,-76.20208098799998],[162.14861087300008,-76.20501067499998],[162.1622827480002,-76.21851978999996],[162.16627037900017,-76.25025807099993],[162.26254316499998,-76.2564429669999],[162.32943769600004,-76.2762997379999],[162.3458764980002,-76.27564869599986],[162.43490644600004,-76.23430754999993],[162.48226972700013,-76.22063567499997],[162.57154381600017,-76.2147763],[162.58472741000006,-76.21672942499998],[162.59546959700006,-76.221449477],[162.60254967500012,-76.2274716129999],[162.6103621750001,-76.23251718499994],[162.622813347,-76.23430754999993],[162.73080488400004,-76.23154062299996],[162.75147545700023,-76.23512135199994],[162.77279707100004,-76.24374765399993],[162.78728274800008,-76.25945403399999],[162.78728274800008,-76.28484465899993],[162.77247155000006,-76.30185312299997],[162.74805748800023,-76.30852629999985],[162.70045006600006,-76.30771249799993],[162.70590253999998,-76.30934010199985],[162.7223413420002,-76.31755950299994],[162.73878014400003,-76.35857512799996],[162.822520379,-76.39666106599995],[162.8842879570001,-76.43906015399993],[162.83448326900023,-76.49334075299997],[162.72388756600006,-76.54265715899994],[162.68620853000007,-76.55006275799994],[162.56430097700016,-76.53460051899992],[162.53443444100017,-76.54697030999995],[162.54053795700017,-76.54989999799997],[162.55250084700018,-76.55771249799997],[162.55876712300002,-76.56031666499996],[162.540212436,-76.56462981599988],[162.50245201900006,-76.56731536299995],[162.4845483730002,-76.57244231599996],[162.47779381600017,-76.59148528399996],[162.47331790500013,-76.59791432099996],[162.46778405000012,-76.59905364399991],[162.461599155,-76.59921640399988],[162.45508873800023,-76.60247161299992],[162.42318769600004,-76.639255467],[162.453868035,-76.65016041499989],[162.49195397200012,-76.65683359199994],[162.75619550900015,-76.64934661299988],[162.84310957100004,-76.66472747199991],[162.87419681100008,-76.67636484199998],[162.93140709700012,-76.70745208099993],[162.94166100400005,-76.72063567499997],[162.95362389400015,-76.75725676899998],[162.96265709700018,-76.773614191],[162.9746199880001,-76.78972747199998],[162.95508873800023,-76.79094817499998],[162.93848717500018,-76.79892343499995],[162.92481530000023,-76.81145598799995],[162.91277103000013,-76.8272437479999],[162.89958743600008,-76.84107838299998],[162.8839624360002,-76.84807708099989],[162.86597741000003,-76.85003020599993],[162.8458764980002,-76.84856536299996],[162.79859459700006,-76.83424244599998],[162.78288821700008,-76.83245208099999],[162.7404077480002,-76.83261484199996],[162.69857832099999,-76.82659270599986],[162.62614993600008,-76.82488372199985],[162.42253665500004,-76.89918385199995],[162.54542076900023,-76.90439218499995],[162.58562259200002,-76.91806405999998],[162.52019290500007,-76.936944269],[162.3017684250001,-76.95134856599998],[162.52670332100016,-76.96021900799984],[162.50066165500016,-76.97649504999995],[162.461680535,-76.98512135199996],[162.386973504,-76.98845794099996],[162.4293725920002,-77.01165129999991],[162.469004754,-77.01531340899997],[162.61744225400014,-77.00139739399998],[162.64633222700016,-77.00367603999996],[162.69166100400017,-77.02613697699996],[162.71615644600004,-77.02760182099993],[162.81999759200016,-77.01588307099993],[162.92164147200018,-77.02117278400002],[163.02076256600003,-77.01409270599996],[163.06950931100008,-77.01873137799998],[163.16285241000006,-77.04363372199992],[163.14486738400004,-77.064873956],[163.12435957100016,-77.08391692499998],[163.18506920700008,-77.1076799459999],[163.21045983200023,-77.12216562299994],[163.23715254000015,-77.14470794099992],[163.2671004570001,-77.15911223799999],[163.34408613400004,-77.16497161299985],[163.37728925900004,-77.17669036299992],[163.38843834700006,-77.18808359199988],[163.40642337300008,-77.21502044099995],[163.41814212300008,-77.22568124799999],[163.43384850400005,-77.23154062300003],[163.46615644600016,-77.23943450299991],[163.47950280000018,-77.24944426899998],[163.50114993600008,-77.27857838299994],[163.51270592500006,-77.29013437299997],[163.52955162900017,-77.30071379999993],[163.54297936300006,-77.31316497199985],[163.54810631600017,-77.32976653399999],[163.54542076900012,-77.34742603999983],[163.53565514400006,-77.36256275799991],[163.5706486340001,-77.37786223799988],[163.60352623800014,-77.38795338299994],[163.63738040500002,-77.393324477],[163.71583092500006,-77.39657968500003],[163.7295028000001,-77.40398528399993],[163.74512780000006,-77.42107512799997],[163.7597762380001,-77.42864348799992],[163.7819116550002,-77.43108489399995],[163.82406660200004,-77.43084075299991],[163.77426191500015,-77.44784921699996],[163.8182072270001,-77.47665781],[163.83130944100006,-77.49578215899989],[163.82178795700023,-77.51832447699996],[163.80054772200018,-77.52800872199992],[163.54818769600013,-77.54900481599996],[163.50513756600006,-77.56943124799994],[163.66749108200017,-77.59514739399998],[163.7187606130001,-77.6149227839999],[163.65577233200005,-77.64666106599996],[163.58570397200018,-77.66130950299988],[163.4401147800002,-77.66855234199998],[163.53419030000012,-77.71550872199992],[163.55713951900012,-77.719984633],[163.90650475400003,-77.69638437299996],[163.91504967500018,-77.70110442499995],[163.92237389400006,-77.70769622199985],[163.93531334700018,-77.71331145599994],[164.2433374360002,-77.78191497199995],[164.19898522200006,-77.80803801899992],[164.11996504000015,-77.81218840899996],[163.97535241,-77.8025041649999],[163.8375757170002,-77.815850519],[163.70264733200023,-77.84978606599995],[163.72852623800023,-77.87916432099996],[163.78077233200023,-77.87883879999993],[163.8790796230002,-77.85947031],[164.18991132900007,-77.85670338299987],[164.50074303500006,-77.85393645599999],[164.52654056100008,-77.86492278399996],[164.5441186860002,-77.87493254999993],[164.55665123800006,-77.88958098799995],[164.56739342500012,-77.91432057099983],[164.527110222,-77.91912200299991],[164.53370201900012,-77.9870744769999],[164.4835718110002,-78.01897551899991],[164.40845787900017,-78.02857838299997],[164.339528842,-78.02996184699995],[164.35808353000002,-78.043145441],[164.3774520190002,-78.0518531229999],[164.42025800900015,-78.0630835919999],[164.40113366000017,-78.08603280999996],[164.3686629570001,-78.09791432099993],[164.29981530000012,-78.107517185],[164.18311608200023,-78.14364999799994],[164.0307723320001,-78.17083098799995],[163.88266035200016,-78.22096119599996],[163.84205162900017,-78.22698333099994],[163.934336785,-78.23088958099996],[164.11654707100004,-78.21428801899991],[164.20785566500004,-78.22576262799986],[164.37403405000023,-78.27906666499992],[164.44613691500012,-78.28337981599992],[164.46745853000002,-78.28850676899992],[164.53174889400023,-78.3171526019999],[164.55543053500017,-78.321384373],[164.63965905000003,-78.32561614399985],[164.6787215500002,-78.32024504999998],[164.75855553500017,-78.29143645599986],[165.0971785820001,-78.25400156],[165.11394290500013,-78.24724700299987],[165.14576256600006,-78.219903253],[165.16334069100017,-78.208265883],[165.18751061300011,-78.19915129999991],[165.21265709700015,-78.19378020599986],[165.2345483730002,-78.193454685],[165.21615644600016,-78.1832007789999],[165.15560957100016,-78.16562265399988],[165.2268172540001,-78.11760833099989],[165.30600019600016,-78.08782317499997],[165.41618899800008,-78.02532317499993],[165.44467207100007,-78.01873137799996],[165.49439537900017,-78.01864999799997],[165.54273522200018,-78.02646249799997],[165.56185957100016,-78.03337981599988],[165.58521569100006,-78.04485442500001],[165.60613040500013,-78.05934010199996],[165.6186629570001,-78.075127863],[165.61963951900006,-78.10222747199994],[165.60434004000004,-78.12249114399995],[165.58082116000017,-78.13632577899995],[165.33708743600008,-78.19890715899996],[165.3620711600001,-78.21152109199993],[165.45045006600003,-78.2273088519999],[165.50749759200002,-78.24456145599999],[165.56609134200005,-78.25457122199998],[165.65609785200013,-78.25546640399996],[165.6852319670002,-78.26083749799993],[165.7085067070001,-78.27117278399993],[165.73715253999998,-78.28972747199985],[165.751719597,-78.30974700299991],[165.73275800900004,-78.3244768209999],[165.74000084700006,-78.32626718499996],[165.7539168630001,-78.33212655999994],[165.76124108200008,-78.33407968499996],[165.74545332100016,-78.34628671699996],[165.72689863400015,-78.35361093499994],[165.688243035,-78.36443450299996],[165.73023522200018,-78.39959075299993],[165.78687584700018,-78.42066822699994],[166.1290796230002,-78.46998463299984],[166.34587649800017,-78.47258879999993],[166.56519616000017,-78.50709400799994],[167.00147545700008,-78.50107187300003],[167.0581160820001,-78.5090471329999],[167.106293165,-78.52752044099992],[167.21566816500004,-78.60068124799997],[167.23536217500018,-78.62363046699997],[167.24301191499998,-78.648044529],[167.227793816,-78.66920338299984],[167.20215905000023,-78.68141041499989],[167.14649498800023,-78.69573333099999],[167.06820722700016,-78.70671965899993],[166.80746503950004,-78.70936451599994],[166.54672285200004,-78.712009373],[166.41863040500016,-78.68547942499995],[166.37281334700018,-78.65878671699994],[166.19825280000003,-78.58782317499995],[166.08961022199998,-78.56682708100001],[165.7666121755001,-78.56524016699998],[165.44361412900005,-78.56365325299996],[165.45199628999998,-78.57293059699991],[165.46208743600005,-78.57976653399992],[165.47348066500004,-78.5841610659999],[165.48585045700023,-78.58570728999986],[165.3097436860002,-78.60523853999993],[164.85971113400015,-78.60458749799996],[164.40967858200008,-78.60393645599993],[164.0717879570001,-78.68710702899998],[163.986582879,-78.68580494599989],[164.07203209700006,-78.70614999799997],[164.0437117850001,-78.71217213299997],[163.98666425899998,-78.70663827899996],[163.960215691,-78.70810312300001],[163.94418379000004,-78.71493906000002],[163.91732832100004,-78.7323544249999],[163.899750196,-78.73674895599999],[163.85173587300014,-78.73707447699992],[163.6417749360002,-78.71656666499996],[163.57748457099999,-78.72079843499998],[163.58253014400012,-78.72421640399999],[163.59180748800006,-78.73259856599995],[163.59693444100017,-78.73609791499995],[163.58399498800006,-78.74146900799991],[163.5705672540001,-78.74456145599999],[163.55681399800008,-78.745375258],[163.54297936300006,-78.74374765399996],[163.54721113399998,-78.74960702899999],[163.55420983200005,-78.76344166499982],[163.55860436300014,-78.76962655999998],[163.48471113400015,-78.78191497199985],[163.47087649800008,-78.779880467],[163.44459069100006,-78.74260833099993],[163.43474368600002,-78.73381926899988],[163.42652428500006,-78.73455169099991],[163.41700280000012,-78.73967864399992],[163.403656446,-78.74391041499993],[163.35547936300006,-78.74480559699992],[163.2585555350001,-78.73300546699987],[163.21192467500003,-78.73284270599999],[163.13851972700016,-78.74586353999989],[163.11703535200016,-78.7448869769999],[163.08716881600006,-78.7382138],[163.06495201900012,-78.73691171699996],[163.0446069670002,-78.74382903399996],[163.01970462300008,-78.76165129999993],[162.98682701900003,-78.79119231599998],[162.96998131600017,-78.80144622199992],[162.94776451900012,-78.80828215899993],[162.9098413420002,-78.8114559879999],[162.9013778000002,-78.81438567499993],[162.89714603,-78.82301197699994],[162.89730878999998,-78.83464934699994],[162.89478600400017,-78.84685637799991],[162.882090691,-78.85735442499998],[162.90357506600006,-78.87639739399988],[162.91130618600008,-78.88176848799993],[162.88119550900004,-78.88860442499995],[162.80591881600006,-78.92620208099984],[162.74927819100006,-78.940606378],[162.69109134200014,-78.94654713299994],[162.62159264400012,-78.94524504999985],[162.59180748800011,-78.93450286299992],[162.567149285,-78.91025156000003],[162.54346764400006,-78.89511484199994],[162.47974694100006,-78.89251067499985],[162.45281009200005,-78.8780249979999],[162.46461022200006,-78.8654924459999],[162.46241295700023,-78.85100676899995],[162.45687910200004,-78.83782317499998],[162.4585067070002,-78.82984791499985],[162.52442467500006,-78.79631926899991],[162.48194420700023,-78.778985284],[162.4332788420002,-78.78101978999986],[162.33692467500006,-78.79534270599993],[162.12574303500006,-78.75986093499995],[162.10401451900006,-78.74920012799991],[162.06299889400006,-78.71884530999994],[161.97185306100008,-78.67701588299991],[161.95248457100016,-78.67343515399995],[161.90447024800008,-78.67034270599996],[161.852793816,-78.65536874799993],[161.76050866000017,-78.610446873],[161.78101647200006,-78.599704685],[161.82309003999998,-78.55462004999985],[161.86475670700023,-78.53582122199998],[161.87501061300003,-78.52288176899998],[161.86394290500007,-78.50074635199991],[161.82398522200018,-78.48121510199994],[161.78101647200006,-78.49277109199994],[161.7379663420002,-78.513278904],[161.69825280000003,-78.5210914039999],[161.60238691500015,-78.5064429669999],[161.55290774800014,-78.50554778399999],[161.50733483200005,-78.51572030999994],[161.49878991000006,-78.52206796699997],[161.48487389400017,-78.539646092],[161.47445722700016,-78.54599374799994],[161.361582879,-78.57838307099992],[161.33594811300023,-78.58123137799998],[161.37224368600002,-78.59075286299998],[161.39047285200004,-78.6135393209999],[161.40552819100003,-78.64169687299999],[161.43100019600004,-78.66741301899985],[161.4484155610002,-78.67929452899998],[161.4631453790001,-78.69198984199994],[161.4894311860002,-78.72323984200001],[161.50245201900012,-78.73430754999995],[161.556000196,-78.74960702899999],[161.54175866,-78.77532317499995],[161.53239993600008,-78.78639088299991],[161.52076256600017,-78.79534270599993],[161.54639733200023,-78.805840753],[161.63550866,-78.80396900799992],[161.66814212300008,-78.80779387799996],[161.69760175900015,-78.81471119599985],[161.75538170700005,-78.83945077900002],[161.72999108200023,-78.85947030999998],[161.69857832100004,-78.8667945289999],[161.63257897200018,-78.87102629999993],[161.79175866000006,-78.90992603999983],[161.8053491550002,-78.91757577899995],[161.81755618600005,-78.92864348799996],[161.82618248800006,-78.94052499800003],[161.83611087300008,-78.94996510199995],[161.87598717500023,-78.96282317499988],[161.91651451900006,-78.99765390399999],[162.06544030000012,-79.06861744599999],[161.77759850400005,-79.06951262799998],[161.49341881600017,-79.01962656000002],[161.49537194100006,-78.99089934699988],[161.46753991000017,-78.97242603999986],[161.43091881600003,-78.95777760199994],[161.38404381600012,-78.92180754999995],[161.34888756600006,-78.91497161299995],[161.27955162900017,-78.91594817499993],[161.263438347,-78.91838958099996],[161.25131269600004,-78.92489999799994],[161.2397567070001,-78.93287525799991],[161.22527103000007,-78.93971119599983],[161.206797722,-78.94296640399988],[161.00367272200003,-78.93368906],[161.19809004000004,-78.96217213299984],[161.1674910820001,-78.979099217],[161.15552819100017,-78.98943450300001],[161.14625084700006,-79.00432708099994],[161.1303817070001,-79.04941171699993],[161.09848066499998,-79.05999114399998],[161.06104576900023,-79.06340911299999],[160.69507897200006,-79.03753020599997],[160.74724368600008,-79.07488372199985],[160.71013431100008,-79.09726327899996],[160.38697350400005,-79.16814544099995],[160.49512780000012,-79.1994768209999],[160.49203535200004,-79.20566171699997],[160.48804772200006,-79.21949635199995],[160.48487389400012,-79.22535572699992],[160.519786004,-79.24049244599992],[160.51050866000017,-79.25750090899989],[160.4770613940001,-79.27125416499989],[160.4389754570001,-79.27695077899998],[160.46013431100013,-79.30299244599986],[160.49634850400005,-79.31145598799998],[160.57740319100017,-79.31023528399997],[160.65406334700003,-79.32000090899992],[160.72877037900005,-79.34059010199994],[160.70671634200005,-79.35759856599992],[160.680023634,-79.36744557099993],[160.62403405000006,-79.37859465899996],[160.63770592500012,-79.39324309699995],[160.66195722700004,-79.40536874799996],[160.71070397200006,-79.41920338299987],[160.962657097,-79.42766692499998],[161.0275985040001,-79.44215260199994],[161.03419030000018,-79.47478606599998],[161.0124617850001,-79.48316822699985],[160.75586998800006,-79.46770598799993],[160.68751061300011,-79.4501278629999],[160.6235457690001,-79.44996510199994],[160.50586998800023,-79.46526458099997],[160.48406009200008,-79.47649504999998],[160.4645288420002,-79.49749114399985],[160.44507897200012,-79.51327890399996],[160.41724694100006,-79.52320728999999],[160.24561608200017,-79.53980885199994],[160.21656334700018,-79.54827239399998],[160.1676538420002,-79.57138437299994],[160.1407983730002,-79.57854583099989],[160.07764733200023,-79.57968515399999],[159.63502037900017,-79.52564869599983],[159.6469832690001,-79.538262628],[159.66228274800008,-79.54509856599992],[159.69564863400012,-79.55144622199995],[159.7182723320001,-79.56178150799985],[159.72095787900017,-79.57529062300003],[159.71729576900023,-79.58977629999998],[159.71973717500023,-79.602634373],[159.73707116000006,-79.61728281],[159.75684655000006,-79.62574635199987],[159.80152428500006,-79.63551197699991],[159.86117597700004,-79.65911223799985],[159.87549889400012,-79.66204192499994],[160.3580021495002,-79.640232029],[160.8405054050002,-79.61842213299995],[160.76148522200018,-79.65081145599996],[160.4238387380001,-79.71143971149996],[160.08619225400017,-79.7720679669999],[159.78858483200023,-79.77988046699998],[159.6681421230002,-79.80641041499986],[159.49610436300011,-79.81951262800001],[159.5380965500001,-79.82529062299997],[159.62419681100008,-79.82529062299997],[159.66488691500015,-79.83440520599994],[159.63599694100006,-79.85320403400002],[159.59848066500004,-79.86394622199992],[159.52369225400005,-79.87493254999998],[159.67025800900004,-79.9094377579999],[159.8219507170002,-79.9257138],[159.97429446700008,-79.92213307099996],[160.3288680350001,-79.86126067499995],[160.37012780000023,-79.86158619599998],[160.45753014400012,-79.89657968499998],[160.62720787900005,-79.91277434699992],[160.79346764400006,-79.95501067499995],[160.8509220710001,-79.95745208099999],[161.3201603520001,-79.87753671699998],[161.4705509770001,-79.9016252579999],[161.44727623800006,-79.91139088299995],[161.40626061300017,-79.93694426899985],[161.38331139400006,-79.94703541499989],[160.9498261510001,-79.99902380466658],[160.5163409080001,-80.05101219433314],[160.0828556650001,-80.10300058399991],[159.64937042200006,-80.15498897366666],[159.21588517900014,-80.20697736333324],[158.78239993600016,-80.25896575300001],[158.78695722700004,-80.29949309699994],[158.7330835300002,-80.32463958100001],[158.47018476700006,-80.36528899499991],[158.20728600400017,-80.40593840899997],[158.1730249360002,-80.41952890399995],[158.19125410199996,-80.4444312479999],[158.25635826900012,-80.45338307099983],[158.53158613400004,-80.45761484199994],[158.5459090500001,-80.46184661299995],[158.57447350399997,-80.47470468499998],[158.58790123800011,-80.47698333099996],[159.0206649098001,-80.45759856539996],[159.4534285816002,-80.43821379979997],[159.88619225340017,-80.41882903419997],[160.31895592520002,-80.39944426859998],[160.75171959700006,-80.38005950299998],[160.77491295700005,-80.38323333099996],[160.81267337300002,-80.39495208099986],[160.84058678500017,-80.4093563779999],[160.85189863400015,-80.41806406],[160.86695397200018,-80.43808359199987],[160.87427819100017,-80.44353606599991],[160.89307701900012,-80.44817473799992],[160.93336022200012,-80.44548919099994],[160.95264733200023,-80.44801197699996],[160.9757593110002,-80.45818450299991],[161.04004967500012,-80.497979425],[160.9899194670002,-80.52263762799998],[160.93238366000003,-80.52320728999996],[160.62403405000006,-80.47047291499996],[160.55665123800006,-80.47380950299998],[160.60775800900015,-80.50872161299992],[160.63591556100002,-80.5230445289999],[160.66488691500004,-80.52971770599996],[160.61207116000006,-80.54680755],[160.35617109500018,-80.56886158649995],[160.1002710300002,-80.5909156229999],[160.03736412900017,-80.58562590900002],[159.96143639400023,-80.55291106599998],[159.93376712300002,-80.5497372379999],[159.81723066499998,-80.56845468499998],[159.7541610040001,-80.57073333099994],[159.82390384200008,-80.60662200299996],[159.85515384200014,-80.64218515399993],[159.87761478000002,-80.65016041499999],[160.260101759,-80.67880624799996],[160.55876712350002,-80.6446265605],[160.85743248800006,-80.61044687299997],[160.96387780000023,-80.61972421700003],[161.09937584700018,-80.64771900799995],[161.12370853000007,-80.64527760199992],[161.15088951900023,-80.6384416649999],[161.17994225400005,-80.63779062299994],[161.20093834700018,-80.64820728999993],[161.20346113399998,-80.67473723799999],[161.19564863400004,-80.68336353999989],[161.18238366000017,-80.68474700299998],[161.16724694100017,-80.68401458099996],[161.154551629,-80.68678150799991],[161.1460067070001,-80.69638437299999],[161.13379967500012,-80.72242603999996],[161.12549889400023,-80.73235442499995],[161.10173587300002,-80.74195728999995],[161.00928795700023,-80.75855885199991],[161.34644615999997,-80.78435637799993],[161.24097741,-80.8029924459999],[160.88062584733333,-80.79583098766655],[160.52027428466678,-80.78866952933318],[160.15992272200018,-80.78150807099998],[160.04127037900005,-80.79648202900002],[159.74642988399998,-80.79208749799994],[159.5782983730002,-80.76799895600001],[159.52979576900012,-80.78036874799994],[159.547129754,-80.78785572699991],[159.56544030000018,-80.792657159],[159.60279381600006,-80.79810963299994],[159.57618248800006,-80.80624765399995],[159.52564537900017,-80.83318450299993],[159.49756920700005,-80.84303150799995],[159.53174889400015,-80.85393645599991],[159.749847852,-80.82919687299994],[160.17571048250008,-80.84913502399993],[160.60157311300006,-80.86907317499993],[160.59896894599999,-80.87411874799996],[160.59506269599999,-80.88543059699992],[160.59253991000017,-80.89039478999997],[160.87614993600002,-80.91464609199997],[160.71656334700018,-80.94646575300001],[160.69776451900012,-80.943047784],[160.6603296230002,-80.93206145599986],[160.64079837300017,-80.93425872199994],[160.66570071700002,-80.95305754999998],[160.70191491000014,-80.958184503],[160.85840905000023,-80.9478492169999],[160.87696373800023,-80.95086028399999],[160.93392988400015,-80.97226327899995],[160.90748131600017,-80.99285247199997],[160.54737389400023,-81.00676848799995],[160.60523522200006,-81.02581145599996],[160.62281334700018,-81.03883228999993],[160.61605879000004,-81.04062265400002],[160.60303795700023,-81.04558684699988],[160.5963647800002,-81.04705169099994],[160.64918053500017,-81.06731536299995],[160.824473504,-81.09823984199998],[160.77475019600004,-81.12509530999998],[160.54151451900003,-81.11923593500002],[160.75904381600006,-81.157810154],[160.79411868600002,-81.17229583099996],[160.81446373800011,-81.18971119599983],[160.76587975400017,-81.19947682099996],[160.60865319100006,-81.19312916499993],[160.87794030000012,-81.22429778400002],[161.0820418630001,-81.21900807099993],[161.14242597700004,-81.24439869599996],[160.9194442070002,-81.27019622199998],[160.52572675900012,-81.23695240699999],[160.13200931100005,-81.20370859199996],[160.15674889400023,-81.22283294099995],[160.19117272200006,-81.23463307099993],[160.26075280000023,-81.24960702899996],[160.287364129,-81.26043059699994],[160.33521569100006,-81.28679778399996],[160.36329186300023,-81.29363372199995],[160.61312910200004,-81.31755950299993],[160.62623131600017,-81.31666432099993],[160.591075066,-81.32431405999988],[160.40251712300008,-81.32561614399997],[160.36451256600006,-81.33635833099999],[160.36109459700006,-81.36077239399994],[160.30779056100008,-81.3798153629999],[160.34986412900005,-81.39283619599992],[160.40162194100006,-81.39251067499998],[160.49919681100008,-81.37607187299999],[160.88689212300008,-81.35702890399989],[161.07276451900023,-81.38486093499995],[160.99000084700018,-81.41668059699998],[160.95801842500012,-81.42262135199992],[160.84205162900005,-81.42848072699996],[160.88257897200006,-81.43914153399999],[160.8515731130002,-81.459405206],[160.88982181100008,-81.47087981599995],[160.93197675900004,-81.46672942500001],[161.015472852,-81.44841887799996],[161.45411217500006,-81.42351653399992],[161.51921634200014,-81.4520809879999],[161.49439537900017,-81.47698333099994],[161.47144616000014,-81.489678644],[161.011485222,-81.54876067499993],[161.30201256600014,-81.560113214],[161.59253991000006,-81.57146575299997],[161.57146243600002,-81.57781340899999],[161.50586998800011,-81.58416106599992],[161.56397545700017,-81.60466887799998],[161.99732506600017,-81.61858489399997],[161.95582116000017,-81.62851327899998],[161.91374759200016,-81.63388437299993],[161.98080488399998,-81.64723072699994],[162.23007246200004,-81.66818613049995],[162.47934004000004,-81.68914153399994],[162.47771243600016,-81.69426848799993],[162.47592207100004,-81.70549895599996],[162.4742944670002,-81.71054452899998],[162.53052819100017,-81.71900807099993],[162.44581139400006,-81.72722747199992],[162.46762129000004,-81.73113372199992],[162.5068465500002,-81.74675872199991],[162.57422936300017,-81.74830494599995],[162.62037194100017,-81.75432708099996],[162.39014733200005,-81.79802825299994],[162.46973717500023,-81.80754973799985],[162.35434004000015,-81.82268645599993],[162.2374780610002,-81.82480234199994],[162.26978600400005,-81.83798593499999],[162.29810631600017,-81.84612395599991],[162.32715905000023,-81.84978606599996],[162.63648522200006,-81.83603280999995],[162.76791425900012,-81.84840260199998],[162.76441491000006,-81.8444963519999],[162.75855553499997,-81.83521900799994],[162.7552189460001,-81.83114999799997],[162.79151451900006,-81.81292083099999],[162.84253991000017,-81.80445728999996],[162.89372806100002,-81.807224217],[162.94654381600012,-81.82878997199992],[163.01099694100017,-81.83733489399995],[163.05762780000012,-81.85214609200001],[163.10222415500007,-81.87371184699992],[163.04021243600002,-81.88713958100001],[162.97730553500017,-81.89316171699993],[162.72608483200023,-81.887627863],[162.69703209700006,-81.89088307099986],[162.6103621750001,-81.912286066],[162.66065514400017,-81.92294687300003],[162.84473717500023,-81.91480885199992],[162.89820397200018,-81.91985442499994],[162.94971764400017,-81.93474700299998],[163.03484134200005,-81.94019947699994],[163.00473066500004,-81.95086028399997],[162.96998131600017,-81.95338307099998],[162.90219160200016,-81.95012786299993],[163.07300866000006,-81.99993255000001],[163.24854576900012,-82.02353280999994],[163.22754967500006,-82.02955494599996],[163.20728600400017,-82.03850676899998],[163.5973413420002,-82.09042734199997],[163.56560306100002,-82.09921640400003],[163.46607506600017,-82.10279713299991],[163.54102623800023,-82.12249114399995],[163.77654056100002,-82.12859465899993],[163.74170983200005,-82.14218515399999],[163.62281334700012,-82.14755624799993],[163.91675866000017,-82.19011809699998],[163.88363691500004,-82.21648528399999],[163.83871504000004,-82.23105234200003],[163.3817070414286,-82.25846584642845],[162.92469904285727,-82.28587935085706],[162.46769104428583,-82.31329285528567],[162.01068304571433,-82.34070635971428],[161.55367504714297,-82.36811986414278],[161.09666704857156,-82.3955333685714],[160.63965905000018,-82.42294687300001],[160.68881269599999,-82.45077890399998],[160.74439537900005,-82.47454192499998],[160.8020939460001,-82.49195728999986],[160.85767662899997,-82.50090911299998],[161.25381513800002,-82.4992408185],[161.64995364700005,-82.49757252399995],[162.04609215600007,-82.49590422949998],[162.44223066500004,-82.494235935],[162.49878991000006,-82.4792619769999],[162.52865644600004,-82.47665780999998],[162.76856530000006,-82.486993097],[162.93409264400006,-82.53093840899993],[163.0818791020001,-82.54469166499993],[163.09961998800006,-82.54168059699984],[163.12159264400012,-82.52141692499993],[163.14535566499998,-82.51482512799996],[163.43946373800023,-82.54517994599993],[163.40300540500007,-82.51238372199992],[163.3188582690002,-82.483005467],[163.1648055350001,-82.44947682099998],[163.28003991000006,-82.42636484200003],[163.7444225053334,-82.39717647399992],[164.2088051006667,-82.367988106],[164.67318769600004,-82.33879973799999],[164.73096764400023,-82.355645441],[164.8823348320001,-82.38014088299984],[165.23015384200014,-82.39283619599999],[165.35189863400015,-82.434258722],[165.40853925900015,-82.46672942499998],[165.43824303500017,-82.47649504999993],[165.55925540500007,-82.4934221329999],[165.537282748,-82.50758228999993],[165.47836347700007,-82.51580169099994],[165.46452884200005,-82.52532317499993],[165.44044030000023,-82.55706145599999],[165.3957625660001,-82.57366301899985],[165.34538821700008,-82.57968515399995],[165.304942254,-82.57952239399998],[165.3733016290001,-82.60613372199992],[165.74109948050014,-82.629530532],[166.10889733200017,-82.652927342],[166.18751061300006,-82.64202239399992],[166.22681725400014,-82.64364999799993],[166.52979576900023,-82.70273202899998],[166.45630944100006,-82.74187590899992],[166.4301863940001,-82.75042083099993],[166.44654381599997,-82.75074635199996],[166.46485436300006,-82.75652434699983],[166.49781334700006,-82.77125416499983],[166.51823978000002,-82.77776458099991],[166.5382593110002,-82.78150807099993],[166.58008873800011,-82.7829729149999],[166.90577233200023,-82.75758228999989],[167.306488477,-82.81707122200001],[167.34376061300006,-82.82927825299998],[167.35075931100008,-82.84384530999992],[167.333262566,-82.85849374799992],[167.1992293630002,-82.89755624799997],[167.16651451900012,-82.90032317499985],[167.408457879,-82.92498137799994],[167.36597741000003,-82.94540781],[167.34473717500023,-82.95281340899999],[167.062754754,-82.95614999799993],[167.1069442070001,-82.9696591129999],[167.45801842500023,-82.98113372199985],[167.45850670700023,-82.99797942499985],[167.45183353000007,-83.010674738],[167.43995201900012,-83.01978932099989],[167.42416425900007,-83.02605559699995],[167.53809655000012,-83.04013437299999],[167.6154077480002,-83.058200779],[167.65658613399998,-83.06170012799998],[167.73861738400004,-83.0555966129999],[167.89096113400012,-83.024509373],[168.04428144600016,-82.97136809699991],[168.11898847700016,-82.96111419099998],[168.59278405000012,-82.99895598799984],[168.62338300900015,-83.00603606599998],[168.61573326900012,-83.00798919099992],[168.60515384200008,-83.01490650799984],[168.594981316,-83.0232072899999],[168.58969160200002,-83.02955494599993],[168.60084069100017,-83.05543385199995],[168.64527428500017,-83.0720354149999],[168.771657748,-83.093194269],[168.80518639400006,-83.10784270599993],[168.86882571700008,-83.14592864399991],[168.8608504570001,-83.148044529],[168.82683353000007,-83.17115650799997],[168.79623457100016,-83.18377044099994],[168.76392662900005,-83.19133879999998],[168.42042076950003,-83.18759531049983],[168.07691491,-83.18385182099993],[168.18091881600006,-83.22275156000002],[168.53419030000006,-83.23365650799991],[168.5031030610002,-83.24871184699992],[168.41521243600002,-83.26685963299992],[168.15133711050007,-83.25001392999992],[167.88746178500003,-83.23316822699992],[167.86508222700004,-83.23552825299997],[167.80005944100017,-83.25188567499997],[167.74878991000006,-83.25514088299994],[167.49288984500018,-83.22348398199995],[167.2369897800002,-83.19182708099999],[166.99878991,-83.1991512999999],[167.02418053500006,-83.21738046699997],[167.0581160820001,-83.22584400799991],[167.5463973320001,-83.26645273199992],[168.03467858200008,-83.30706145600001],[167.95508873800011,-83.32854583099986],[167.98764082100013,-83.35035572699991],[168.03174889400017,-83.35963307099986],[168.16138756600014,-83.36842213299991],[168.2846785820002,-83.35312265399995],[168.33871504000004,-83.36484140399993],[168.35914147200012,-83.36516692499997],[168.47445722700004,-83.35295989399997],[168.523610873,-83.35800546699993],[168.56739342500012,-83.36777109199996],[168.617930535,-83.39055754999998],[168.63152103000007,-83.39430103999993],[168.66089928500017,-83.39714934699997],[169.02218672000004,-83.36699797999994],[169.38347415500007,-83.33684661299992],[169.39649498800023,-83.33993906],[169.40357506600017,-83.34677499799992],[169.40796959700018,-83.35588958100001],[169.414317254,-83.36484140399993],[169.42709394600016,-83.37078215899996],[169.41211998800011,-83.384860935],[169.37891686300011,-83.40797291499987],[169.364105665,-83.42205169099991],[169.39909915500002,-83.43368906],[169.46615644600004,-83.44736093499995],[169.5431421230002,-83.450127863],[169.56088300899998,-83.44695403399994],[169.57691491000017,-83.43694426899995],[169.58887780000012,-83.42571379999987],[169.59986412900017,-83.418145441],[169.61280358200003,-83.4143205709999],[169.6300561860002,-83.41480885199998],[169.58472741000017,-83.3986955709999],[169.59913170700023,-83.39283619599988],[169.61882571700008,-83.37346770599986],[169.62964928500017,-83.36907317499995],[170.10254967500023,-83.40471770600001],[170.05925540500007,-83.41318124799994],[170.06910241000017,-83.42164478999982],[170.08057701900012,-83.42717864399992],[170.09294681100008,-83.42978280999992],[170.10596764400023,-83.42913176899997],[170.10059655000006,-83.4335263],[170.0914819670002,-83.44402434699991],[170.08643639400017,-83.44850025799998],[170.12761478000002,-83.46331145599996],[170.22348066500015,-83.48398202899998],[170.40333092500012,-83.49163176899991],[170.41285241000006,-83.489841404],[170.42164147200015,-83.48349374799997],[170.43783613400015,-83.46624114399998],[170.44760175899998,-83.46249765399995],[170.73414147200018,-83.45183684700001],[170.74415123800023,-83.44817473799993],[170.74659264400003,-83.43954843499995],[170.74781334700012,-83.43075937299999],[170.75407962300008,-83.42636484199991],[170.81299889400012,-83.42327239399982],[171.19312584700006,-83.44557057099996],[171.26075280000012,-83.46331145599996],[171.38404381600017,-83.47014739399988],[171.47877037900005,-83.4894345029999],[171.5529077480002,-83.49472421699997],[171.57691491000006,-83.5002580709999],[171.5014754570001,-83.51897551899988],[171.4262801440001,-83.52898528399996],[171.1753035815001,-83.53163014099994],[170.92432701900023,-83.53427499800003],[170.9474389980002,-83.54216887799991],[170.97144616000006,-83.54558684699992],[171.02076256600006,-83.54631926899995],[170.9782007170002,-83.56178150799997],[171.00310306100002,-83.56878020599986],[171.33122806100016,-83.55543385199984],[171.70215905000023,-83.58587004999997],[171.7319442070002,-83.59172942499994],[171.7892358730002,-83.61028411299993],[171.95972741000006,-83.62021249799986],[171.93995201900012,-83.63323333099993],[171.915782097,-83.63892994599992],[171.86622155000006,-83.644138279],[172.046722852,-83.6584611959999],[172.01417076900023,-83.6705868469999],[171.98243248800006,-83.67848072699996],[171.91488691500004,-83.68775807099992],[172.00114993600008,-83.71689218499988],[172.09791100400017,-83.71803150799983],[172.368500196,-83.67750416499999],[172.82064863400004,-83.6679012999999],[173.23023522200012,-83.71233489399992],[173.31959069100012,-83.73202890399988],[173.3162541020002,-83.73674895599989],[173.31120852999996,-83.74781666499983],[173.30787194100023,-83.7526180969999],[173.41041100400022,-83.76140715899994],[173.61898847700022,-83.74928150799997],[173.72136478000024,-83.76360442499995],[173.68034915500024,-83.79119231599998],[173.2912703790001,-83.85637786299996],[173.40902753999993,-83.87810637799996],[173.83415774800014,-83.873630467],[173.86841881600023,-83.86288827899998],[173.88200931099996,-83.86126067499994],[173.91211998800028,-83.86394622199985],[173.9259546230002,-83.86744557099993],[173.9509383470002,-83.87916432099983],[173.96216881600012,-83.88176848799992],[174.29940839933343,-83.86467864399987],[174.6366479826667,-83.84758879999984],[174.97388756600017,-83.83049895599989],[175.12281334700023,-83.86923593499992],[175.44312584700012,-83.90325286299995],[175.3774520190003,-83.92799244599983],[175.1617944670002,-83.95728932099993],[175.1893009770002,-83.95761484199987],[175.26823978000021,-83.9804012999999],[175.30103600400003,-83.98447030999995],[175.67774498800028,-83.96160247199984],[176.14210045675,-83.98567066849984],[176.60645592550028,-84.0097388649999],[177.07081139425023,-84.03380706149997],[177.53516686300011,-84.05787525799987],[177.6165470710001,-84.07341887799996],[177.5581160820001,-84.08001067499994],[177.61394290500013,-84.09238046699987],[177.87191816500018,-84.10426197749996],[178.12989342500026,-84.11614348799998],[178.15739993600025,-84.12265390399986],[178.19841556100025,-84.14251067499988],[178.21794681100013,-84.14462655999989],[178.40528405000023,-84.11760833099993],[178.52759850400014,-84.12135182099996],[178.40626061300017,-84.15545012799988],[178.48015384200014,-84.179131769],[178.56739342500023,-84.18377044099992],[178.78003990999994,-84.1713192689999],[178.86882571700005,-84.18328215899992],[179.35499108200028,-84.19736093499998],[179.75049889400017,-84.26921965899986],[179.7878524100001,-84.28394947699994],[179.69564863400004,-84.30364348799989],[179.60157311300028,-84.31129322699991],[179.69825280000023,-84.33131275799997],[180.00000000000017,-84.35279635299985],[180.00000000000017,-84.35338166999996],[180.00000000000017,-84.51523545699993],[180.00000000000017,-85.013850416],[180.00000000000017,-85.51246537399996],[180.00000000000017,-86.011080332],[180.00000000000017,-86.50969529099989],[180.00000000000017,-87.00831024899995],[180.00000000000017,-87.50692520799998],[180.00000000000017,-88.00554016599995],[180.00000000000017,-88.50415512499993],[180.00000000000017,-89.00277008299997],[180.00000000000017,-89.50138504199995],[180.00000000000017,-90],[179.5006934810002,-90],[179.00138696300016,-90],[178.50208044399997,-90],[178.00277392500018,-90],[177.50346740600017,-90],[177.0041608879999,-90],[176.5048543690003,-90],[176.00554785000017,-90],[175.50624133100015,-90],[175.00693481300024,-90],[174.50762829400009,-90],[174.0083217750001,-90],[173.50901525700002,-90],[173.00970873800023,-90],[172.51040221900004,-90],[172.01109570000008,-90],[171.51178918200017,-90],[171.012482663,-90],[170.51317614400003,-90],[170.01386962600023,-90],[169.51456310700016,-90],[169.01525658800009,-90],[168.51595006900018,-90],[168.016643551,-90],[167.51733703200003,-90],[167.0180305130001,-90],[166.51872399400023,-90],[166.01941747600003,-90],[165.52011095700007,-90],[165.02080443800017,-90],[164.52149792000003,-90],[164.02219140100013,-90],[163.52288488200023,-90],[163.02357836300013,-90],[162.52427184500007,-90],[162.02496532600017,-90],[161.5256588070001,-90],[161.026352288,-90],[160.52704577000011,-90],[160.0277392510002,-90],[159.52843273200003,-90],[159.02912621400006,-90],[158.52981969500016,-90],[158.03051317599997,-90],[157.53120665700013,-90],[157.03190013900021,-90],[156.53259362000014,-90],[156.03328710100007,-90],[155.53398058300016,-90],[155.03467406399994,-90],[154.53536754500007,-90],[154.0360610260001,-90],[153.5367545080002,-90],[153.03744798900001,-90],[152.53814147000006,-90],[152.03883495100015,-90],[151.53952843300019,-90],[151.0402219140001,-90],[150.5409153950002,-90],[150.04160887700002,-90],[149.54230235800006,-90],[149.04299583900016,-90],[148.54368932,-90],[148.04438280200006,-90],[147.5450762830001,-90],[147.0457697640002,-90],[146.546463245,-90],[146.04715672700016,-90],[145.5478502080001,-90],[145.04854368900018,-90],[144.5492371710001,-90],[144.0499306520002,-90],[143.55062413299999,-90],[143.05131761400003,-90],[142.55201109600014,-90],[142.05270457700024,-90],[141.55339805800006,-90],[141.0540915400001,-90],[140.55478502100019,-90],[140.055478502,-90],[139.556171983,-90],[139.05686546500024,-90],[138.55755894600017,-90],[138.0582524270001,-90],[137.55894590800017,-90],[137.05963938999997,-90],[136.56033287100004,-90],[136.06102635200014,-90],[135.56171983400023,-90],[135.06241331500004,-90],[134.56310679600008,-90],[134.06380027700015,-90],[133.56449375900004,-90],[133.06518724000014,-90],[132.56588072100024,-90],[132.06657420200017,-90],[131.5672676840001,-90],[131.06796116500018,-90],[130.568654646,-90],[130.06934812800003,-90],[129.57004160900013,-90],[129.07073509000023,-90],[128.57142857100004,-90],[128.0721220530002,-90],[127.57281553400018,-90],[127.07350901500004,-90],[126.57420249700013,-90],[126.07489597800021,-90],[125.57558945900003,-90],[125.07628294000007,-90],[124.57697642200017,-90],[124.07766990299999,-90],[123.57836338400003,-90],[123.07905686500013,-90],[122.5797503470002,-90],[122.08044382800001,-90],[121.58113730900006,-90],[121.08183079100009,-90],[120.58252427200003,-90],[120.08321775300011,-90],[119.58391123400024,-90],[119.08460471600004,-90],[118.58529819700007,-90],[118.08599167800017,-90],[117.58668515999997,-90],[117.08737864100006,-90],[116.5880721220001,-90],[116.0887656030002,-90],[115.58945908500007,-90],[115.09015256600017,-90],[114.59084604700016,-90],[114.09153952800001,-90],[113.59223301000011,-90],[113.0929264910002,-90],[112.59361997200003,-90],[112.09431345400004,-90],[111.59500693500016,-90],[111.09570041600008,-90],[110.59639389700007,-90],[110.09708737900021,-90],[109.5977808600002,-90],[109.09847434100007,-90],[108.59916782200006,-90],[108.09986130400007,-90],[107.60055478500007,-90],[107.10124826600011,-90],[106.60194174800019,-90],[106.10263522900001,-90],[105.60332871000006,-90],[105.10402219100014,-90],[104.60471567300006,-90],[104.1054091540001,-90],[103.6061026350001,-90],[103.10679611700013,-90],[102.60748959800006,-90],[102.10818307900016,-90],[101.60887656000008,-90],[101.10957004200006,-90],[100.61026352300009,-90],[100.1109570040002,-90],[99.61165048500001,-90],[99.11234396700016,-90],[98.61303744800014,-90],[98.11373092900007,-90],[97.6144244110001,-90],[97.1151178920002,-90],[96.61581137300011,-90],[96.11650485400004,-90],[95.61719833600014,-90],[95.11789181700007,-90],[94.61858529800006,-90],[94.1192787790001,-90],[93.61997226100019,-90],[93.120665742,-90],[92.6213592230001,-90],[92.12205270500013,-90],[91.62274618600006,-90],[91.1234396670001,-90],[90.62413314800008,-90],[90.12482663000011,-90],[89.6255201110001,-90],[89.12621359200014,-90],[88.62690707400006,-90],[88.12760055500004,-90],[87.62829403600009,-90],[87.12898751700017,-90],[86.62968099900009,-90],[86.13037448000014,-90],[85.63106796100013,-90],[85.13176144200023,-90],[84.63245492400009,-90],[84.13314840500018,-90],[83.63384188600011,-90],[83.13453536800007,-90],[82.63522884900011,-90],[82.13592233000006,-90],[81.63661581100004,-90],[81.13730929300007,-90],[80.63800277400017,-90],[80.1386962550001,-90],[79.63938973600007,-90],[79.1400832180001,-90],[78.64077669900014,-90],[78.14147018000008,-90],[77.64216366200017,-90],[77.1428571430001,-90],[76.64355062400008,-90],[76.14424410500013,-90],[75.64493758700021,-90],[75.14563106800001,-90],[74.64632454900007,-90],[74.14701803100016,-90],[73.64771151200009,-90],[73.14840499300013,-90],[72.64909847400011,-90],[72.14979195600003,-90],[71.65048543700007,-90],[71.15117891800016,-90],[70.6518723990001,-90],[70.15256588100007,-90],[69.65325936200011,-90],[69.15395284300021,-90],[68.65464632500002,-90],[68.15533980600017,-90],[67.65603328700016,-90],[67.15672676800007,-90],[66.65742025000011,-90],[66.15811373100021,-90],[65.65880721200014,-90],[65.15950069300007,-90],[64.66019417500016,-90],[64.16088765600009,-90],[63.66158113700006,-90],[63.162274619000094,-90],[62.6629681000002,-90],[62.163661581000014,-90],[61.66435506200011,-90],[61.6518746340001,-90],[61.16504854400015,-90],[60.66574202500007,-90],[60.16643550600011,-90],[59.6671289880002,-90],[59.167822469,-90],[58.66851595000011,-90],[58.169209431000155,-90],[57.66990291300007,-90],[57.17059639400006,-90],[56.67128987500009,-90],[56.17198335600019,-90],[55.67267683800011,-90],[55.173370319000156,-90],[54.67406380000014,-90],[54.17475728200006,-90],[53.6754507630001,-90],[53.1761442440002,-90],[52.67683772500012,-90],[52.1775312070001,-90],[51.678224688000135,-90],[51.17891816900007,-90],[50.679611650000055,-90],[50.180305132000086,-90],[49.680998613000185,-90],[49.18169209400011,-90],[48.682385576000144,-90],[48.18307905700007,-90],[47.68377253800016,-90],[47.1844660190001,-90],[46.68515950100018,-90],[46.185852982000114,-90],[45.6865464630001,-90],[45.18723994500013,-90],[44.68793342600023,-90],[44.188626907000035,-90],[43.689320388000084,-90],[43.19001387000017,-90],[42.6907073510001,-90],[42.19140083200014,-90],[41.692094313000126,-90],[41.192787795000044,-90],[40.693481276000085,-90],[40.194174757000184,-90],[39.6948682390001,-90],[39.19556172000008,-90],[38.69625520100013,-90],[38.196948682000226,-90],[37.69764216400009,-90],[37.19833564500007,-90],[36.69902912600017,-90],[36.19972260700009,-90],[35.70041608900013,-90],[35.20110957000023,-90],[34.701803051000155,-90],[34.20249653300007,-90],[33.70319001400017,-90],[33.2038834950001,-90],[32.704576976000084,-90],[32.205270458000115,-90],[31.70596393900021,-90],[31.206657420000028,-90],[30.70735090200017,-90],[30.208044383000104,-90],[29.708737864000085,-90],[29.209431345000127,-90],[28.710124827000126,-90],[28.210818308000025,-90],[27.711511789000042,-90],[27.212205270000055,-90],[26.712898752000086,-90],[26.2135922330001,-90],[25.714285714000113,-90],[25.214979196000115,-90],[24.715672677000043,-90],[24.21636615800014,-90],[23.71705963900007,-90],[23.21775312100007,-90],[22.718446602000085,-90],[22.2191400830001,-90],[21.719833564000112,-90],[21.220527046000143,-90],[20.72122052700007,-90],[20.221914008000084,-90],[19.722607490000087,-90],[19.223300971000096,-90],[18.723994452000113,-90],[18.224687933000038,-90],[17.72538141500013,-90],[17.226074896000057,-90],[16.72676837700007,-90],[16.2274618590001,-90],[15.728155340000114,-90],[15.228848821000042,-90],[14.72954230200014,-90],[14.230235784000056,-90],[13.73092926500007,-90],[13.231622746000085,-90],[12.732316227000098,-90],[12.233009709000099,-90],[11.733703190000114,-90],[11.234396671000127,-90],[10.735090153000073,-90],[10.235783634000086,-90],[9.736477115000097,-90],[9.237170596000112,-90],[8.737864078000115,-90],[8.238557559000126,-90],[7.739251040000056,-90],[7.23994452100007,-90],[6.740638003000072,-90],[6.241331484000084,-90],[5.742024965000098,-90],[5.242718447000101,-90],[4.743411928000029,-90],[4.244105409000042,-90],[3.744798890000055,-90],[3.245492372000086,-90],[2.7461858530001,-90],[2.246879334000113,-90],[1.747572816000115,-90],[1.248266297000043,-90],[0.748959778000142,-90],[0.24965325900007,-90],[-0.249653258999928,-90],[-0.748959777999914,-90],[-1.248266296999901,-90],[-1.747572815999888,-90],[-2.246879333999857,-90],[-2.746185852999929,-90],[-3.245492371999916,-90],[-3.744798889999913,-90],[-4.2441054089999,-90],[-4.743411927999887,-90],[-5.242718446999959,-90],[-5.742024964999871,-90],[-6.241331483999943,-90],[-6.74063800299993,-90],[-7.239944520999898,-90],[-7.739251039999885,-90],[-8.238557558999986,-90],[-8.737864077999859,-90],[-9.237170595999942,-90],[-9.736477114999929,-90],[-10.235783633999915,-90],[-10.7350901529999,-90],[-11.2343966709999,-90],[-11.733703189999886,-90],[-12.233009708999871,-90],[-12.732316226999956,-90],[-13.231622745999942,-90],[-13.73092926499993,-90],[-14.230235783999916,-90],[-14.729542301999883,-90],[-15.228848820999872,-90],[-15.728155339999942,-90],[-16.22746185899993,-90],[-16.726768376999928,-90],[-17.226074895999915,-90],[-17.725381414999898,-90],[-18.2246879329999,-90],[-18.723994451999882,-90],[-19.223300970999958,-90],[-19.72260748999986,-90],[-20.221914007999914,-90],[-20.7212205269999,-90],[-21.220527045999887,-90],[-21.719833563999885,-90],[-22.219140082999957,-90],[-22.718446601999855,-90],[-23.21775312099993,-90],[-23.717059638999928,-90],[-24.216366157999914,-90],[-24.7156726769999,-90],[-25.214979195999888,-90],[-25.714285713999857,-90],[-26.213592232999957,-90],[-26.712898751999944,-90],[-27.2122052699999,-90],[-27.7115117889999,-90],[-28.210818307999887,-90],[-28.710124826999962,-90],[-29.209431344999953,-90],[-29.70873786399994,-90],[-30.20804438299993,-90],[-30.707350901999916,-90],[-31.206657419999914,-90],[-31.705963938999982,-90],[-32.20527045799989,-90],[-32.70457697599994,-90],[-33.20388349499993,-90],[-33.70319001399991,-90],[-34.2024965329999,-90],[-34.70180305099989,-90],[-35.201109569999886,-90],[-35.70041608899987,-90],[-36.199722606999956,-90],[-36.69902912599994,-90],[-37.19833564499993,-90],[-37.697642163999916,-90],[-38.196948681999885,-90],[-38.696255200999865,-90],[-39.195561719999944,-90],[-39.694868238999845,-90],[-40.19417475699993,-90],[-40.693481275999915,-90],[-41.1927877949999,-90],[-41.6920943129999,-90],[-42.19140083199997,-90],[-42.69070735099987,-90],[-43.190013869999945,-90],[-43.68932038799994,-90],[-44.18862690699992,-90],[-44.687933425999915,-90],[-45.1872399449999,-90],[-45.68654646299996,-90],[-46.18585298199986,-90],[-46.68515950099993,-90],[-47.18446601899993,-90],[-47.683772537999914,-90],[-48.183079056999894,-90],[-48.68238557599997,-90],[-49.18169209399988,-90],[-49.68099861299996,-90],[-50.18030513199994,-90],[-50.67961164999991,-90],[-51.1789181689999,-90],[-51.67822468799989,-90],[-52.11771846599987,-90],[-52.177531206999866,-90],[-52.67683772499987,-90],[-53.17614424399994,-90],[-53.675450762999844,-90],[-54.17475728199991,-90],[-54.674063799999914,-90],[-55.17337031899989,-90],[-55.67267683799989,-90],[-56.17198335599994,-90],[-56.67128987499984,-90],[-57.170596393999915,-90],[-57.66990291299991,-90],[-58.1692094309999,-90],[-58.668515949999886,-90],[-59.167822468999866,-90],[-59.667128987999945,-90],[-60.166435505999935,-90],[-60.66574202499992,-90],[-61.165048543999916,-90],[-61.664355061999885,-90],[-62.16366158099987,-90],[-62.66296809999997,-90],[-63.16227461899984,-90],[-63.66158113699992,-90],[-64.16088765599991,-90],[-64.66019417499989,-90],[-65.1595006929999,-90],[-65.65880721199997,-90],[-66.15811373099987,-90],[-66.65742024999994,-90],[-67.15672676799994,-90],[-67.65603328699991,-90],[-68.15533980599992,-90],[-68.6546463249999,-90],[-69.15395284299987,-90],[-69.65325936199986,-90],[-70.15256588099993,-90],[-70.65187239899993,-90],[-71.15117891799991,-90],[-71.65048543699989,-90],[-72.14979195599989,-90],[-72.64909847399989,-90],[-73.14840499299996,-90],[-73.64771151199994,-90],[-74.14701803099993,-90],[-74.6463245489999,-90],[-75.14563106799989,-90],[-75.64493758699986,-90],[-76.14424410499987,-90],[-76.64355062399994,-90],[-77.14285714299984,-90],[-77.64216366199992,-90],[-78.14147017999991,-90],[-78.6407766989999,-90],[-79.14008321799989,-90],[-79.63938973599997,-90],[-80.13869625499984,-90],[-80.63800277399994,-90],[-81.13730929299993,-90],[-81.6366158109999,-90],[-82.13592232999989,-90],[-82.63522884899986,-90],[-83.13453536799994,-90],[-83.63384188599994,-90],[-84.13314840499993,-90],[-84.63245492399992,-90],[-85.13176144199991,-90],[-85.6310679609999,-90],[-86.13037447999997,-90],[-86.62968099899987,-90],[-87.12898751699991,-90],[-87.62829403599991,-90],[-88.1276005549999,-90],[-88.62690707399989,-90],[-89.12621359199989,-90],[-89.62552011099987,-90],[-90.12482662999984,-90],[-90.62413314799993,-90],[-91.12343966699993,-90],[-91.62274618599992,-90],[-92.1220527049999,-90],[-92.62135922299987,-90],[-93.12066574199986,-90],[-93.61997226099996,-90],[-94.11927877899984,-90],[-94.6185852979999,-90],[-95.1178918169999,-90],[-95.61719833599989,-90],[-96.11650485399988,-90],[-96.61581137299996,-90],[-97.11511789199994,-90],[-97.61442441099993,-90],[-98.11373092899993,-90],[-98.61303744799991,-90],[-99.11234396699989,-90],[-99.61165048499987,-90],[-100.11095700399996,-90],[-100.61026352299984,-90],[-101.10957004199993,-90],[-101.6088765599999,-90],[-102.1081830789999,-90],[-102.60748959799989,-90],[-103.10679611699987,-90],[-103.60610263499986,-90],[-104.10540915399993,-90],[-104.60471567299992,-90],[-105.1040221909999,-90],[-105.6033287099999,-90],[-106.10263522899989,-90],[-106.60194174799996,-90],[-107.10124826599986,-90],[-107.60055478499993,-90],[-108.09986130399992,-90],[-108.5991678219999,-90],[-109.09847434099987,-90],[-109.59778085999996,-90],[-110.09708737899986,-90],[-110.59639389699994,-90],[-111.09570041599993,-90],[-111.59500693499992,-90],[-112.0943134539999,-90],[-112.59361997199987,-90],[-113.09292649099986,-90],[-113.59223300999986,-90],[-114.09153952799994,-90],[-114.59084604699993,-90],[-115.09015256599992,-90],[-115.5894590849999,-90],[-116.08876560299989,-90],[-116.58807212199987,-90],[-117.08737864099993,-90],[-117.58668515999992,-90],[-118.08599167799991,-90],[-118.5852981969999,-90],[-119.08460471599992,-90],[-119.58391123399987,-90],[-120.08321775299986,-90],[-120.58252427199994,-90],[-121.08183079099983,-90],[-121.5811373089999,-90],[-122.08044382799989,-90],[-122.57975034699987,-90],[-123.07905686499988,-90],[-123.57836338399996,-90],[-124.07766990299986,-90],[-124.57697642199992,-90],[-125.07628293999991,-90],[-125.5755894589999,-90],[-126.07489597799989,-90],[-126.57420249699987,-90],[-127.07350901499986,-90],[-127.57281553399994,-90],[-128.07212205299993,-90],[-128.5714285709999,-90],[-129.0707350899999,-90],[-129.57004160899987,-90],[-130.06934812799994,-90],[-130.5686546459999,-90],[-131.06796116499993,-90],[-131.56726768399992,-90],[-132.0665742019999,-90],[-132.5658807209999,-90],[-133.06518723999997,-90],[-133.56449375899987,-90],[-134.06380027699993,-90],[-134.56310679599994,-90],[-135.0624133149999,-90],[-135.56171983399992,-90],[-136.06102635199989,-90],[-136.5603328709999,-90],[-137.05963938999986,-90],[-137.5589459079999,-90],[-138.0582524269999,-90],[-138.55755894599992,-90],[-139.0568654649999,-90],[-139.5561719829999,-90],[-140.05547850199986,-90],[-140.55478502099996,-90],[-141.05409153999994,-90],[-141.55339805799989,-90],[-142.05270457699993,-90],[-142.5520110959999,-90],[-143.05131761399988,-90],[-143.55062413299996,-90],[-144.04993065199994,-90],[-144.54923717099993,-90],[-145.0485436889999,-90],[-145.54785020799991,-90],[-146.0471567269999,-90],[-146.54646324499987,-90],[-147.04576976399989,-90],[-147.54507628299996,-90],[-148.04438280199992,-90],[-148.54368931999988,-90],[-149.04299583899987,-90],[-149.5423023579999,-90],[-150.04160887699987,-90],[-150.54091539499996,-90],[-151.04022191399994,-90],[-151.53952843299993,-90],[-152.0388349509999,-90],[-152.5381414699999,-90],[-153.03744798899984,-90],[-153.5367545079999,-90],[-154.03606102599986,-90],[-154.53536754499993,-90],[-155.03467406399994,-90],[-155.5339805829999,-90],[-156.03328710099987,-90],[-156.5325936199999,-90],[-157.03190013899987,-90],[-157.53120665699996,-90],[-158.03051317599994,-90],[-158.52981969499993,-90],[-159.02912621399992,-90],[-159.52843273199989,-90],[-160.0277392509999,-90],[-160.52704576999983,-90],[-161.02635228799994,-90],[-161.52565880699993,-90],[-162.02496532599991,-90],[-162.5242718449999,-90],[-163.02357836299987,-90],[-163.52288488199986,-90],[-164.02219140099987,-90],[-164.52149791999994,-90],[-165.0208044379999,-90],[-165.52011095699993,-90],[-166.0194174759999,-90],[-166.51872399399988,-90],[-167.01803051299984,-90],[-167.51733703199983,-90],[-168.01664355099985,-90],[-168.51595006899993,-90],[-169.01525658799991,-90],[-169.5145631069999,-90],[-170.0138696259999,-90],[-170.51317614399986,-90],[-171.01248266299982,-90],[-171.51178918199994,-90],[-172.0110956999999,-90],[-172.5104022189999,-90],[-173.0097087379999,-90],[-173.50901525699987,-90],[-174.00832177499984,-90],[-174.50762829399994,-90],[-175.00693481299993,-90],[-175.50624133099993,-90],[-176.0055478499999,-90],[-176.5048543689999,-90],[-177.0041608879999,-90],[-177.50346740599986,-90],[-178.00277392499981,-90],[-178.50208044399994,-90],[-179.0013869629999,-90],[-179.5006934809999,-90],[-179.9999999999999,-90],[-179.9999999999999,-89.50138504199995],[-179.9999999999999,-89.00277008299997],[-179.9999999999999,-88.50415512499993],[-179.9999999999999,-88.00554016599995],[-179.9999999999999,-87.50692520799998],[-179.9999999999999,-87.00831024899995],[-179.9999999999999,-86.50969529099989],[-179.9999999999999,-86.011080332],[-179.9999999999999,-85.51246537399996],[-179.9999999999999,-85.013850416],[-179.9999999999999,-84.51523545699993],[-179.9999999999999,-84.352796001],[-179.99999957299994,-84.352796041],[-179.99998448199995,-84.35279754699994],[-179.96910559799994,-84.35540129999991],[-179.55121822824984,-84.34347909949999],[-179.1333308584999,-84.33155689900002],[-178.71544348874994,-84.31963469849993],[-178.2975561189999,-84.30771249799994],[-178.18195553299992,-84.32146575299986],[-178.17157955599993,-84.32382577899992],[-178.18101966099985,-84.3303361959999],[-178.1913956369999,-84.33416106599984],[-178.2023819649999,-84.3355445289999],[-178.21385657499985,-84.33513762799998],[-178.03246008999992,-84.35654062299994],[-178.00304114499994,-84.36663176899991],[-177.99799557199992,-84.38616301899988],[-177.7047013009999,-84.41838958099983],[-177.53954016799992,-84.40016041499986],[-177.32502193899995,-84.40553150799991],[-177.10680091099985,-84.3835588519999],[-176.7593074213332,-84.38768211599991],[-176.41181393166656,-84.39180537999991],[-176.0643204419999,-84.39592864399992],[-176.11603756399992,-84.40781015399998],[-176.45771236899984,-84.4198544249999],[-176.51060950399992,-84.43547942499988],[-176.25466874899985,-84.4614397114999],[-175.9987279939999,-84.48739999799996],[-176.02021236899992,-84.49212004999995],[-176.04222571499992,-84.49342213299997],[-176.01642818899987,-84.49911874799986],[-175.96300208199995,-84.51702239399991],[-175.9121801419999,-84.54257577899996],[-175.88133704299995,-84.54745859199987],[-175.56511389849987,-84.52247486799992],[-175.24889075399992,-84.49749114399984],[-175.18989010299987,-84.48512135199988],[-175.14289303299995,-84.45232512799988],[-175.16327877499992,-84.44500090899996],[-175.18317623599992,-84.44150155999996],[-175.2248022129999,-84.44019947699998],[-175.20722408799992,-84.42001718499986],[-175.1780492829999,-84.41480885199987],[-174.68352500842843,-84.43148016899991],[-174.18900073385703,-84.44815148599997],[-173.6944764592856,-84.46482280299992],[-173.19995218471425,-84.48149411999998],[-172.70542791014282,-84.49816543699994],[-172.21090363557136,-84.5148367539999],[-171.71637936099992,-84.53150807099986],[-171.2218550864285,-84.54817938799982],[-170.72733081185703,-84.56485070499987],[-170.2328065372856,-84.5815220219999],[-169.73828226271422,-84.59819333899996],[-169.24375798814282,-84.61486465599991],[-168.74923371357136,-84.6315359729999],[-168.25470943899992,-84.64820728999995],[-168.2099503249999,-84.65691497199992],[-168.1459854809999,-84.69003671699987],[-168.12364661399988,-84.69508228999989],[-168.16486568899992,-84.72185637799998],[-168.05675208199995,-84.77076588299997],[-168.0186254549999,-84.7810197899999],[-167.76343746649988,-84.79648202949997],[-167.5082494779999,-84.81194426899995],[-167.4800919259999,-84.83635833099997],[-167.55500240799986,-84.84840260199991],[-167.44176184799989,-84.86744557099989],[-167.17648271399983,-84.84384531049992],[-166.91120357999995,-84.82024504999993],[-166.43390865816653,-84.82954952049987],[-165.95661373633322,-84.83885399099998],[-165.47931881449986,-84.84815846149992],[-165.00202389266656,-84.85746293199985],[-164.52472897083322,-84.86676740249989],[-164.0474340489999,-84.87607187299992],[-163.93464107999986,-84.89519622199998],[-163.46436520099994,-84.9046770159999],[-162.99408932199984,-84.91415781],[-162.95750891799992,-84.9094377579999],[-162.84894771999993,-84.88307057099999],[-162.35176042349994,-84.90723032037485],[-161.85457312699992,-84.93139006974997],[-161.35738583049994,-84.95554981912484],[-160.8601985339999,-84.97970956849989],[-160.36301123749988,-85.00386931787492],[-159.86582394099986,-85.02802906724988],[-159.36863664449996,-85.05218881662492],[-158.87144934799994,-85.07634856599995],[-158.67316646999993,-85.13250090899996],[-158.46576900899993,-85.15520598799992],[-158.4844457669999,-85.13420989399988],[-158.50995846299992,-85.11972421699993],[-158.56505286399985,-85.09929778399986],[-158.4974259109999,-85.09124114399992],[-158.42393958199992,-85.09221770599999],[-158.35151119699987,-85.1029598939999],[-158.19676673099988,-85.159112238],[-158.16331946499992,-85.16472747199991],[-157.7323380197999,-85.17616952919985],[-157.30135657459988,-85.18761158639988],[-156.87037512939986,-85.1990536435999],[-156.43939368419984,-85.21049570079994],[-156.00841223899994,-85.22193775799997],[-156.05549068899992,-85.20378997199997],[-156.4914851549999,-85.19951751099987],[-156.92747962099992,-85.19524504999985],[-156.45909583199992,-85.19072844849985],[-155.99071204299992,-85.18621184699994],[-155.94225012899994,-85.17937590900002],[-155.90111243399986,-85.15764739399995],[-155.9445694649999,-85.1434872379999],[-156.0997208319999,-85.14234791499997],[-156.06944739499988,-85.13445403399992],[-155.78671220599992,-85.13026295349994],[-155.50397701699995,-85.12607187299994],[-155.98226206499993,-85.08638545799988],[-156.4605471129999,-85.04669904299999],[-156.93883216099985,-85.00701262799991],[-156.95872962099986,-85.00017669099998],[-157.00914466099994,-84.96892669099984],[-157.04662024599995,-84.95720794099994],[-157.34190833199992,-84.92721933399997],[-157.6371964179999,-84.89723072699991],[-157.58104407499988,-84.882989191],[-157.13282223249985,-84.88838062974985],[-156.68460038999993,-84.89377206849987],[-156.2363785474999,-84.89916350724988],[-155.7881567049999,-84.90455494599983],[-155.7566625639999,-84.90032317499998],[-155.74962317599991,-84.90032317499998],[-155.79047604099995,-84.89104583099986],[-156.10973059799989,-84.88534921699987],[-155.7034399079999,-84.8791643209999],[-155.74030514199987,-84.86598072699994],[-155.8672989569999,-84.8606096329999],[-155.58922278599994,-84.84050872199985],[-155.64264889199987,-84.82781340899987],[-156.0994766914999,-84.82138437266654],[-156.5563044909999,-84.8149553363332],[-157.01313229049995,-84.80852629999985],[-157.4699600899999,-84.80209726366651],[-157.9267878894999,-84.79566822733317],[-158.38361568899995,-84.78923919099991],[-158.27729244699995,-84.78093840899992],[-158.24958248599995,-84.767185154],[-158.71735592349995,-84.74907805766664],[-159.18512936099992,-84.73097096133321],[-159.65290279849992,-84.71286386499989],[-160.12067623599995,-84.69475676866664],[-160.58844967349995,-84.6766496723333],[-161.05622311099995,-84.65854257599995],[-161.52399654849995,-84.64043547966652],[-161.99176998599992,-84.62232838333327],[-162.45954342349992,-84.60422128700002],[-162.92731686099992,-84.58611419066668],[-163.39509029849992,-84.56800709433332],[-163.86286373599992,-84.5498999979999],[-163.8931778639999,-84.54534270599986],[-163.9121801419999,-84.53045012799998],[-163.90949459499993,-84.52776458100001],[-163.90436764199987,-84.52068450299994],[-163.90172278599994,-84.51799895599987],[-163.91083736899992,-84.51327890399988],[-164.09662838399993,-84.48056406000002],[-163.68106035049993,-84.48617929449998],[-163.26549231699988,-84.49179452899995],[-163.3172094389999,-84.47698333099996],[-163.6602270169999,-84.42913176899985],[-164.15038001199989,-84.42603932099996],[-164.64053300699993,-84.42294687299997],[-165.13068600199992,-84.4198544249999],[-165.1765844389999,-84.432712498],[-165.19420325399992,-84.43466562299987],[-165.6039526029999,-84.41320837466654],[-166.01370195199985,-84.39175112633319],[-166.42345130099994,-84.37029387799987],[-165.96403967999996,-84.38445403449992],[-165.50462805899988,-84.39861419099991],[-165.51459713399996,-84.38111744599986],[-165.40973873599992,-84.364515883],[-164.9280085927999,-84.3642066381999],[-164.44627844959996,-84.36389739339992],[-163.96454830639993,-84.36358814859985],[-163.48281816319988,-84.36327890379994],[-163.00108801999994,-84.36296965899996],[-163.0174047519999,-84.35979583099999],[-163.04352779899992,-84.34612395599996],[-163.05797278599988,-84.34050872199995],[-163.42421084999992,-84.32436831399995],[-163.79044891399994,-84.30822790599996],[-164.15668697799993,-84.29208749799996],[-164.17121334499996,-84.28899504999988],[-164.18285071499986,-84.28232187299999],[-164.16380774599986,-84.2720679669999],[-164.11595618399994,-84.27125416499989],[-164.09833736899992,-84.26262786299998],[-164.1104630199999,-84.26425546699998],[-164.22337805899988,-84.25017669099995],[-164.27228756399995,-84.23845794099988],[-164.23082434799986,-84.23455169099988],[-164.19029700399994,-84.22551848799995],[-164.62336178299992,-84.18531666499996],[-164.74022376199986,-84.15618254999991],[-165.1544083319999,-84.13795338299984],[-165.12800045499992,-84.11793385199996],[-165.0919083319999,-84.11256275799991],[-165.01854407499985,-84.11891041499992],[-165.06029212099992,-84.10165781000002],[-165.0789281889999,-84.08896249799987],[-165.09345455599993,-84.07219817499985],[-165.00971432199992,-84.056735935],[-164.57408606666655,-84.05445728933329],[-164.13845781133327,-84.05217864366655],[-163.70282955599995,-84.049899998],[-163.74311275899993,-84.03191497199997],[-164.03901119699992,-83.99065520600001],[-164.02997799399992,-83.98919036299995],[-163.9977514309999,-83.97714609199986],[-163.97431393099993,-83.974216404],[-163.9182836579999,-83.97307708099997],[-163.9005020819999,-83.97047291499997],[-163.8901261059999,-83.9635555969999],[-163.90367591099988,-83.95728932099993],[-163.94859778599988,-83.952243748],[-163.9938858709999,-83.93906015399995],[-164.4526057604999,-83.88103606549993],[-164.91132564999987,-83.82301197699991],[-164.9617813789999,-83.80136484199993],[-164.97960364499988,-83.79648202899995],[-165.4207250639999,-83.76677825299984],[-165.48424231699988,-83.7496070289999],[-165.51439368399988,-83.74570077899999],[-165.9353735019999,-83.78573984199994],[-165.9544164699999,-83.78972747199992],[-165.99042721299995,-83.80282968499989],[-166.06822669199994,-83.81796640399989],[-166.47096717049993,-83.8060035134999],[-166.87370764899993,-83.794040623],[-167.27644812749992,-83.78207773249994],[-167.67918860599988,-83.77011484199994],[-167.62535559799986,-83.79029713299998],[-167.25352942599994,-83.81113046699986],[-167.19517981699994,-83.82545338299992],[-167.29954993399988,-83.83782317499998],[-167.69107011649993,-83.80868906049989],[-168.08259029899986,-83.77955494599996],[-167.98851477799994,-83.76677825299984],[-168.0535782539999,-83.75367603999996],[-168.25951087099992,-83.74358489399998],[-167.96835283099986,-83.74391041449988],[-167.6771947909999,-83.74423593499995],[-167.73334713399987,-83.72258879999995],[-168.2163793609999,-83.71314869599993],[-168.3374731109999,-83.69280364399995],[-168.45527096299992,-83.65447356599992],[-168.60973059799989,-83.62249114399991],[-168.63434811099987,-83.60458749799987],[-168.5586645169999,-83.57838307099993],[-168.53416907499985,-83.57301197699988],[-168.54771887899992,-83.54257577899992],[-168.58263098899994,-83.53036874799994],[-169.01655025899993,-83.51555754999995],[-169.0499161449999,-83.5080705709999],[-169.07567298099994,-83.48919036299988],[-169.0057266919999,-83.47454192499985],[-168.77989661399988,-83.4756812479999],[-169.0626724924999,-83.45907968549996],[-169.34544837099992,-83.44247812299989],[-169.3610326809999,-83.43914153399986],[-169.4180802069999,-83.41334400799992],[-169.43305416599992,-83.40943775799984],[-169.89463456959993,-83.37299570079993],[-170.35621497319988,-83.33655364359988],[-170.8177953767999,-83.30011158639982],[-171.27937578039985,-83.26366952919996],[-171.7409561839999,-83.22722747199998],[-171.69444739499988,-83.21689218499989],[-171.3255509104999,-83.23939381299996],[-170.95665442599994,-83.26189544099988],[-171.39535769057136,-83.21236977128561],[-171.83406095514275,-83.16284410157137],[-172.27276421971416,-83.11331843185711],[-172.71146748428566,-83.06379276214285],[-173.15017074885705,-83.0142670924285],[-173.58887401342847,-82.96474142271424],[-174.02757727799985,-82.91521575299998],[-174.33747311099995,-82.81210702899996],[-174.36961829299992,-82.77890390399995],[-174.33983313699989,-82.75888437299987],[-174.2689916659999,-82.75579192499997],[-173.90633433099984,-82.80934010199991],[-173.54367699599987,-82.862888279],[-173.18101966099988,-82.91643645600001],[-172.74176998599992,-82.91838958099996],[-172.5124405589999,-82.8698869769999],[-172.14439856666655,-82.89785464199997],[-171.77635657433328,-82.92582230699996],[-171.40831458199992,-82.95378997199988],[-170.95539303299992,-83.05527109199998],[-170.92979895699995,-83.06414153399993],[-170.83507239499988,-83.12818775799991],[-170.7934057279999,-83.16887786299999],[-170.76915442599994,-83.18287525799987],[-170.7194718089999,-83.19695403399999],[-170.34620791999993,-83.23479583099994],[-169.97294403099988,-83.27263762799998],[-169.5996801419999,-83.31047942499984],[-169.53534908799983,-83.301934503],[-169.73456783799986,-83.24439869599983],[-169.32237708274994,-83.24718596799988],[-168.9101863274999,-83.24997323999992],[-168.49799557224995,-83.25276051199998],[-168.08580481699994,-83.25554778399993],[-168.06366939999995,-83.24684010199985],[-168.02814693899984,-83.2151018209999],[-168.00938880099991,-83.208103123],[-167.72622636599993,-83.21729908649993],[-167.44306393099987,-83.22649504999995],[-167.42833411399988,-83.22421640399998],[-167.35834713399987,-83.20086028399989],[-167.3332006499999,-83.19801197699987],[-166.88381913959995,-83.19882577919988],[-166.43443762919992,-83.19963958139992],[-165.9850561187999,-83.20045338359995],[-165.53567460839992,-83.20126718579996],[-165.08629309799989,-83.2020809879999],[-164.8541153639999,-83.25025807099996],[-164.87340247299994,-83.26531340899989],[-164.89366614499988,-83.26962655999996],[-164.91515051999988,-83.2707658829999],[-164.93809973899985,-83.27613697699996],[-164.9431860019999,-83.27857838299983],[-164.94770260299993,-83.28134530999988],[-164.95116126199986,-83.28484465899996],[-164.95335852799994,-83.28948333099999],[-164.9532364569999,-83.2942033829999],[-164.94884192599986,-83.30055103999993],[-164.9479467439999,-83.30478280999995],[-164.95555579299995,-83.31796640399999],[-164.98322506399992,-83.34026458099993],[-164.98582923099994,-83.35588958100001],[-164.95282955599987,-83.355075779],[-164.82225501199989,-83.37712981599991],[-164.77961178299995,-83.39088307099983],[-164.7025040359999,-83.43857187299997],[-164.6761368479999,-83.44736093499995],[-164.66808020699986,-83.45208098799995],[-164.67467200399994,-83.45696379999984],[-164.6903783839999,-83.46379973799995],[-164.69652258999986,-83.46819426899991],[-164.69102942599986,-83.48503997199992],[-164.65733801999986,-83.49814218499999],[-164.61725826699993,-83.50693124799987],[-164.17731686099995,-83.5271135399999],[-164.11396236899992,-83.50644296699988],[-164.15973873599987,-83.4804013],[-164.1731664699999,-83.46998463299991],[-164.1951798169999,-83.44654713299994],[-164.20323645699992,-83.43173593499996],[-164.20348059799986,-83.41692473799998],[-164.18976803299992,-83.40357838299997],[-164.1662491529999,-83.39609140399992],[-163.8818049794999,-83.38184986749987],[-163.59736080599993,-83.367608331],[-163.46507727799988,-83.33709075299996],[-163.2841283839999,-83.33855559699992],[-163.1339818999999,-83.31552499799996],[-162.86994381399987,-83.32146575299997],[-162.8279923169999,-83.33326588299995],[-162.80370032499994,-83.36614348799995],[-162.80964107999995,-83.36736419099995],[-162.82123775899987,-83.37184010199984],[-162.82701575399994,-83.37281666499982],[-162.80357825399986,-83.39185963299988],[-162.76878821499992,-83.39861419099991],[-162.37010657499988,-83.42400481599987],[-162.26008053299995,-83.44988372199994],[-162.30829830599987,-83.46257903399993],[-162.4572647779999,-83.47380950299984],[-162.40644283799986,-83.49537525799994],[-162.16905676999988,-83.52467213299987],[-161.74924882719992,-83.51557382579996],[-161.32944088439993,-83.50647551859996],[-160.90963294159994,-83.49737721139996],[-160.48982499879995,-83.48827890419989],[-160.07001705599987,-83.47918059699998],[-159.7771296864999,-83.512383722],[-159.48424231699994,-83.54558684699992],[-159.19343014199993,-83.544366144],[-159.1016739569999,-83.53337981599985],[-159.09129798099985,-83.52695077899993],[-159.06956946499992,-83.49976978999983],[-159.04466712099986,-83.47600676899992],[-158.99986731699994,-83.45712655999998],[-158.51834062433318,-83.43482838299994],[-158.03681393166656,-83.4125302059999],[-157.55528723899994,-83.39023202899988],[-157.52965247299989,-83.38420989399995],[-157.4831436839999,-83.35328541499983],[-157.45270748599987,-83.34172942499998],[-157.18519039599985,-83.285943292],[-156.9176733059999,-83.23015715899992],[-157.02448482999986,-83.20582447699994],[-157.50415334133328,-83.19293927733332],[-157.98382185266652,-83.18005407766661],[-158.46349036399985,-83.1671688779999],[-158.52192135299993,-83.15837981599992],[-158.5579320949999,-83.13274504999987],[-158.49718176999986,-83.1179338519999],[-158.01302378383323,-83.10595739799999],[-157.52886579766655,-83.09398094399998],[-157.04470781149985,-83.0820044899999],[-156.56054982533323,-83.07002803599991],[-156.07639183916663,-83.0580515819999],[-155.5922338529999,-83.046075128],[-155.4363907539999,-83.00774504999998],[-155.4967748689999,-82.95549895599989],[-155.13451087099986,-82.877536717],[-155.10997473899994,-82.86296965899999],[-155.0821427069999,-82.817152602],[-155.05878658799986,-82.80193450300001],[-154.6394750644999,-82.75963035799987],[-154.22016354099986,-82.71732621299991],[-153.80085201749995,-82.67502206799998],[-153.38154049399992,-82.63271792299994],[-152.96222897049992,-82.590413778],[-152.54291744699992,-82.54810963299995],[-152.55540930899988,-82.52654387799984],[-152.5797013009999,-82.51287200299991],[-152.6316625639999,-82.49635182099992],[-152.65473385299993,-82.48447030999998],[-152.69819088399984,-82.45525481599995],[-152.72118079299986,-82.44304778399996],[-152.81366939999995,-82.41318124799997],[-152.89679928299992,-82.374118748],[-153.3361439009999,-82.29130082266667],[-153.7754885189999,-82.20848289733334],[-154.2148331369999,-82.12566497199992],[-154.25560462099986,-82.10149505000001],[-154.11143958199992,-82.07154713299992],[-154.45773271349992,-82.01877206799995],[-154.80402584499996,-81.96599700299997],[-154.83893795499986,-81.94475676899998],[-154.77497311099987,-81.92294687300003],[-154.5320531889999,-81.87908294099998],[-154.4238175119999,-81.83847421699997],[-154.35191809799989,-81.82350025799992],[-154.09085038949993,-81.80787525799997],[-153.82978268099993,-81.79225025799997],[-153.7580460279999,-81.77662525799998],[-153.6923721999999,-81.74700286299995],[-153.71869869699992,-81.73626067499994],[-153.79035396999993,-81.691013279],[-153.8163956369999,-81.68124765399988],[-153.84483801999994,-81.67791106599985],[-153.9832250639999,-81.67693450299996],[-154.00580807199987,-81.66871510199996],[-154.03461666599992,-81.65357838299997],[-154.0648087229999,-81.64324309699995],[-154.29845130099994,-81.60881926899992],[-154.31342525899987,-81.60133228999996],[-154.34215247299994,-81.58245208099993],[-154.3578588529999,-81.57488372199997],[-154.41002356699994,-81.56210702900002],[-154.81920325399994,-81.53362395599993],[-154.9965714179999,-81.48919036299992],[-155.4085994127999,-81.46161874839994],[-155.82062740759994,-81.4340471338],[-156.23265540239993,-81.40647551919994],[-156.6446833971999,-81.37890390459998],[-157.05671139199993,-81.35133228999983],[-157.14586341099988,-81.31902434699998],[-157.14329993399988,-81.30868905999998],[-157.13825436099995,-81.30006275799998],[-157.12291419199988,-81.284356378],[-157.0958145819999,-81.26637135199998],[-157.06391354099995,-81.25579192499993],[-156.75702877499987,-81.20224374799992],[-156.4501440089999,-81.14869557099992],[-155.96002492266655,-81.1360002584999],[-155.46990583633323,-81.12330494599998],[-154.97978674999993,-81.11060963349998],[-154.48966766366652,-81.09791432099996],[-153.9995485773333,-81.08521900849985],[-153.50942949099993,-81.07252369599993],[-153.0193104046666,-81.05982838349993],[-152.52919131833326,-81.04713307099992],[-152.0390722319999,-81.0344377584999],[-151.5489531456666,-81.02174244599999],[-151.05883405933324,-81.00904713349996],[-150.56871497299989,-80.99635182099996],[-150.07859588666656,-80.98365650849996],[-149.5884768003332,-80.97096119599995],[-149.09835771399986,-80.95826588349993],[-148.60823862766662,-80.94557057099983],[-148.11811954133321,-80.9328752584999],[-147.62800045499995,-80.9201799459999],[-147.58478756399995,-80.90740325299996],[-147.54832923099988,-80.886895441],[-147.5827530589999,-80.86060963299998],[-147.62555904899992,-80.84726327899996],[-147.9387914704999,-80.83489348749998],[-148.25202389199993,-80.8225236959999],[-148.29877682199992,-80.81308359199997],[-148.0909317699999,-80.80706145599997],[-148.18016516799986,-80.79192473799998],[-148.45152747299989,-80.78215911299985],[-148.43000240799995,-80.77605559699995],[-148.40876217399986,-80.77288176899998],[-148.36481686099992,-80.77092864399994],[-148.40660559799989,-80.7460263],[-148.7582901683332,-80.73707447699996],[-149.10997473866655,-80.72812265399995],[-149.4616593089999,-80.71917083100001],[-149.1734309559999,-80.70989348750001],[-148.8852026029999,-80.700616144],[-149.16535397049992,-80.69190846149996],[-149.4455053379999,-80.68320077900003],[-149.42247473899988,-80.68222421699996],[-149.37897701699993,-80.66765715899992],[-149.35492916599986,-80.66326262799994],[-149.0355932279999,-80.66122812300001],[-149.24836178299995,-80.64283619599998],[-149.1902563139999,-80.62656015399995],[-148.7239680654999,-80.63144296649988],[-148.25767981699994,-80.63632577899998],[-148.3433324859999,-80.62493254999993],[-148.6160579089999,-80.62306080499987],[-148.8887833319999,-80.62118905999998],[-148.99046790299994,-80.59449635199996],[-149.0187475249999,-80.59148528399996],[-149.3496191069999,-80.59075286249998],[-149.68049068899995,-80.59002044099991],[-149.7270401679999,-80.58245208099996],[-149.50267493399988,-80.56878020600001],[-149.57465572799993,-80.55754973799992],[-149.79454505099986,-80.55380624799997],[-149.62267005099994,-80.53704192499995],[-149.66515051999988,-80.52703215899989],[-149.9505305654999,-80.52752044050001],[-150.2359106109999,-80.52800872199995],[-150.32213294199988,-80.51482512799998],[-150.27167721299992,-80.4958635399999],[-150.08490963399996,-80.496270441],[-150.44867916599986,-80.45614999799997],[-150.4350479809999,-80.44638437299993],[-150.41987057199992,-80.44011809699998],[-150.4036352199999,-80.43718840899996],[-150.3868302069999,-80.43710702899996],[-150.42223059799989,-80.42962004999993],[-150.71690833249994,-80.42953866999994],[-151.0115860669999,-80.42945728999996],[-150.94501705599993,-80.41122812299997],[-150.72325598899994,-80.41277434699992],[-150.89081783799995,-80.39804452899993],[-150.42953447199986,-80.39588795349997],[-149.96825110599985,-80.39373137799993],[-150.0164281889999,-80.37908294099991],[-150.21214758999992,-80.35507577899998],[-150.3013402989999,-80.33066171699993],[-150.39545650899987,-80.3163388],[-150.72577877499992,-80.32040781],[-150.5718888009999,-80.30584075299996],[-150.60912024599995,-80.26970794099992],[-150.67467200399986,-80.25367603999992],[-150.80321204299992,-80.24553801899992],[-150.72626705599993,-80.21648528399986],[-150.6447240879999,-80.21160247199988],[-150.47728430899986,-80.22193775799998],[-150.13373775899996,-80.18572356599996],[-150.15587317599994,-80.16253020599993],[-150.1801651679999,-80.14413827899998],[-150.20763098899985,-80.13054778399993],[-150.3115942049999,-80.10865650799991],[-150.34727942599994,-80.09596119599993],[-150.36969967399995,-80.07463958099997],[-149.9857987134999,-80.08879973724993],[-149.60189775299995,-80.10295989349996],[-149.2179967924999,-80.11712004975001],[-148.83409583199995,-80.13128020599996],[-148.82872473899988,-80.12900155999998],[-148.82457434799994,-80.124200128],[-148.81822669199988,-80.112888279],[-148.81159420499995,-80.10670338299995],[-148.80292721299992,-80.10409921699996],[-148.66303463399993,-80.0935197899999],[-148.54621334499996,-80.0715471329999],[-148.05048580599987,-80.06137460699995],[-147.5547582669999,-80.05120208099999],[-147.60952714799993,-80.04029713299992],[-148.0322973299999,-80.03224049249994],[-148.45506751199994,-80.02418385199994],[-148.51170813699989,-80.007989191],[-148.19536292199984,-80.00550709450002],[-147.87901770699995,-80.00302499799994],[-147.93496660099993,-79.985446873],[-148.2732776903332,-79.9811608486666],[-148.61158877966662,-79.97687482433328],[-148.94989986899992,-79.97258879999998],[-148.9055883449999,-79.96306731599998],[-148.54993648949994,-79.96717701649997],[-148.1942846339999,-79.9712867169999],[-148.24937903599994,-79.96282317499995],[-148.64696204299992,-79.95403411299998],[-148.58027096299986,-79.94963958099999],[-148.51488196499992,-79.93613046699993],[-148.5368139309999,-79.92880624800001],[-148.6089981759999,-79.92327239399991],[-148.58234615799986,-79.91627369599983],[-148.49986731699988,-79.91285572699991],[-148.8477677069999,-79.90056731599995],[-148.8312475249999,-79.89462655999992],[-148.8140356109999,-79.89226653399987],[-148.7787979809999,-79.89185963299997],[-148.88060462099986,-79.87330494599996],[-148.97154700399992,-79.87021249799996],[-148.9997452459999,-79.86077239399997],[-148.70409094999988,-79.86394622199992],[-148.51862545499995,-79.88681406000002],[-148.0437719389999,-79.89023202899995],[-148.07880611899992,-79.90585702899993],[-148.20750891799992,-79.906833592],[-148.1569311189999,-79.917575779],[-147.99404863199993,-79.917250258],[-148.02875729099992,-79.92913176899995],[-147.97691809799989,-79.93767669099987],[-147.56609046149993,-79.94178639149996],[-147.15526282499985,-79.94589609199996],[-147.18179277299993,-79.91741301899995],[-147.06712805899994,-79.90862395599999],[-147.11607825399992,-79.89999765399998],[-147.16856848899988,-79.89666106599995],[-147.27090410099987,-79.9016252579999],[-147.3413793609999,-79.92148202899999],[-147.36803137899992,-79.92498137799991],[-147.39244544199988,-79.925388279],[-147.57013912699995,-79.89999765399998],[-147.8974503249999,-79.90113697699984],[-147.8637589179999,-79.88990650799984],[-147.58519446499994,-79.87460702899988],[-148.05903072799987,-79.83505624799999],[-148.1411840489999,-79.81080494599993],[-148.01463782499988,-79.814385675],[-147.98273678299995,-79.81161874799994],[-147.91978919199994,-79.79892343499998],[-147.88882402299987,-79.80046965899993],[-147.94566809799994,-79.78655364399984],[-147.77310136599988,-79.77947356599998],[-148.1825116309998,-79.7483863263333],[-148.59192189599992,-79.71729908666663],[-149.00133216099994,-79.68621184699994],[-149.07249915299985,-79.666110935],[-149.03974361899992,-79.64910247199995],[-149.09239661399985,-79.63030364399991],[-149.54389400966653,-79.60659487666653],[-149.9953914053332,-79.58288610933324],[-150.4468888009999,-79.55917734199986],[-150.53441321499992,-79.53411223799996],[-151.0241999989999,-79.4702287743332],[-151.51398678299995,-79.40634531066651],[-152.00377356699988,-79.34246184699992],[-151.86656653599994,-79.31340911299985],[-151.7578832669999,-79.27792734199994],[-151.7360326809999,-79.27450937299993],[-151.6952611969999,-79.27337004999991],[-151.65489661399994,-79.267673435],[-151.69798743399986,-79.25164153399993],[-151.74815833199995,-79.24675872199995],[-152.21422278599988,-79.31015390399999],[-152.26488196499986,-79.30917734200001],[-152.31615149599992,-79.29876067499993],[-152.41417395699992,-79.26392994599999],[-152.31196041599986,-79.23642343499995],[-151.98957271999987,-79.20403411299995],[-152.10700436099987,-79.20142994599986],[-151.97508704299992,-79.17034270599986],[-151.98204505099991,-79.16594817499994],[-151.9951065749999,-79.155368748],[-152.0020645819999,-79.15097421700003],[-151.72008216099994,-79.08375416499999],[-151.78551184799986,-79.08098723799992],[-152.07477779899995,-79.10719166499996],[-152.10619055899988,-79.1057268209999],[-152.22211666599995,-79.07480234199987],[-152.2568253249999,-79.07708098799992],[-152.2320043609999,-79.09856536299995],[-152.23424231699985,-79.1109351539999],[-152.33751380099994,-79.14267343499995],[-152.5644425119999,-79.17506275799987],[-152.59162350199995,-79.17245859199987],[-152.61412512899994,-79.15601978999995],[-152.7046606109999,-79.113864842],[-152.93500729099986,-79.17009856599991],[-153.03852291599992,-79.15154387799998],[-153.0793350899999,-79.13941822699991],[-153.55195064999992,-79.11325449],[-154.02456620999993,-79.08709075300001],[-154.49718176999983,-79.06092701599997],[-154.9697973299999,-79.03476327900002],[-155.00800533799992,-79.02068450299998],[-155.0406388009999,-78.99976978999993],[-155.05272376199989,-78.99407317499985],[-155.42161007374995,-78.9114722635],[-155.79049638549992,-78.82887135199996],[-156.15938269724995,-78.74627044049994],[-156.52826900899993,-78.663669529],[-156.54674231699994,-78.65081145599987],[-156.54999752499987,-78.62363046699997],[-156.5295304029999,-78.60523853999993],[-156.49925696499992,-78.59433359199994],[-156.0875951809999,-78.55730559699992],[-156.03937740799995,-78.54208749799994],[-156.05492102799985,-78.52654387799994],[-156.07367916599992,-78.51685963299997],[-156.1160375639999,-78.50758228999993],[-156.05284583199995,-78.49407317499995],[-155.70645097533324,-78.48571814033326],[-155.36005611866662,-78.47736310566665],[-155.0136612619999,-78.46900807099986],[-154.97826087099992,-78.45696379999985],[-155.05028235599985,-78.42587655999994],[-154.89085852799994,-78.42392343499998],[-154.7964981759999,-78.44866301899995],[-154.73033606699988,-78.45468515399988],[-154.52289791599992,-78.43401458099996],[-154.5821427069999,-78.416924738],[-154.50975501199994,-78.40618254999998],[-154.3613988919999,-78.40536874799997],[-154.2908422519999,-78.38892994599989],[-154.33263098899994,-78.374118748],[-154.30353756399987,-78.35222747199998],[-154.18110104099992,-78.33521900799991],[-154.20970618399986,-78.30966562299993],[-154.23530025899996,-78.28101978999996],[-154.1365860669999,-78.24830494599993],[-153.91795813699989,-78.24944426899997],[-153.8150528639999,-78.23316822699994],[-154.20970618399986,-78.22177499799997],[-154.22105872299986,-78.2190080709999],[-154.23652096299986,-78.21135833099989],[-154.24445553299995,-78.20322030999996],[-154.2511693999999,-78.19402434699998],[-154.26313229099992,-78.18417734199996],[-154.27778072799993,-78.17717864399998],[-154.31956946499986,-78.16920338299994],[-154.3327530589999,-78.1628557269999],[-154.35724850199995,-78.14609140399998],[-154.3693741529999,-78.14006926899998],[-154.39618893099993,-78.13591887799994],[-154.5679418609999,-78.1343726539999],[-154.71772213399993,-78.15398528399996],[-154.6505020819999,-78.17522551899985],[-154.66722571499992,-78.18450286299998],[-154.75214596299995,-78.20891692499985],[-154.75951087099995,-78.21412525799992],[-154.7670792309999,-78.22975025799983],[-154.77411861899986,-78.23447030999992],[-155.1199845039999,-78.25701262800001],[-155.21406002499995,-78.24635182099989],[-155.2515763009999,-78.20501067499995],[-155.09198971299992,-78.19353606599991],[-154.97765051999988,-78.20671965899996],[-154.99604244699992,-78.19182708099999],[-155.0264379549999,-78.16033294099996],[-155.04267330599993,-78.15398528399996],[-155.18163001199986,-78.16253020599987],[-155.27363033799986,-78.19231536299998],[-155.32274329299992,-78.19988372199994],[-155.34666907499985,-78.19589609199987],[-155.39610755099991,-78.17685312299987],[-155.42149817599994,-78.17083098799995],[-155.44819088399996,-78.17253997199994],[-155.4942520819999,-78.1892229149999],[-155.51915442599991,-78.19410572699996],[-155.74689693899995,-78.20387135199991],[-155.93321692599991,-78.18873463299991],[-156.0271703769999,-78.19915129999991],[-156.3480118479999,-78.19988372199994],[-156.37328040299988,-78.19451262799988],[-156.4452611969999,-78.16814544099998],[-156.45238196499986,-78.16090260199987],[-156.45295162699995,-78.14568450299988],[-156.56969153599994,-78.15113697699992],[-156.62523352799988,-78.14283619599993],[-156.6485489569999,-78.14544036299985],[-156.67975826699995,-78.15837981599985],[-156.67292232999995,-78.16008879999985],[-156.65949459499996,-78.16643645599989],[-156.6526993479999,-78.16855234199998],[-156.68183346299986,-78.193942967],[-156.74091549399992,-78.21331145599993],[-156.96739661399988,-78.25335051899995],[-157.19957434799989,-78.25269947699991],[-157.25719153599994,-78.24114348799998],[-157.35383053299995,-78.19589609199987],[-157.6687312489999,-78.12440357899997],[-157.98363196499992,-78.05291106599995],[-158.0078018869999,-78.04257577899995],[-158.05797278599988,-78.01433684699988],[-158.08881588399996,-78.00530364399997],[-158.18004309799986,-78.00611744599998],[-158.2532852859999,-77.98170338299983],[-158.31110592399992,-77.98064544099988],[-158.34386145699995,-77.97437916499993],[-158.37507076699993,-77.96314869599983],[-158.4018448559999,-77.94850025799991],[-158.4226781889999,-77.93010833099996],[-158.4373673169999,-77.91285572699996],[-158.45502682199992,-77.89934661299998],[-158.63707434799989,-77.86451588299994],[-158.6399633449999,-77.84856536299985],[-158.6246231759999,-77.82976653399999],[-158.53343665299988,-77.76490650799991],[-158.51105709499996,-77.75693124799994],[-158.45380611899992,-77.74602629999997],[-158.42695064999992,-77.73626067499993],[-158.40082760299995,-77.72226327899988],[-158.3811742829999,-77.70427825299993],[-158.34565182199992,-77.65691497199997],[-158.32489986899992,-77.63648853999983],[-158.27436275899993,-77.615817967],[-158.1573380199999,-77.59010182099986],[-158.11811275899987,-77.55584075299997],[-158.28632564999995,-77.51392994599989],[-158.2533666659999,-77.48398202899999],[-158.21869869699992,-77.46282317499991],[-158.1402074859999,-77.42791106599998],[-158.1815079419999,-77.40048593499994],[-158.2918188139999,-77.375583592],[-158.32945716099988,-77.34286874799997],[-158.32538814999992,-77.29607512799998],[-158.28083248599992,-77.2575822899999],[-158.17747962099995,-77.20582447699988],[-158.20844479099986,-77.18279387800001],[-158.22435462099992,-77.17473723799998],[-158.28217525899993,-77.1539039039999],[-158.30162512899992,-77.14364999799997],[-158.31171627499987,-77.13241952899998],[-158.3008927069999,-77.10564544099988],[-158.2644750639999,-77.08619557099996],[-158.22020423099985,-77.07366301899987],[-157.9254044259999,-77.05632903399989],[-157.84308834499993,-77.07496510199996],[-157.6933080719999,-77.14275481599996],[-157.62787838399993,-77.15203215899992],[-157.6093643869999,-77.15829843499998],[-157.5943090489999,-77.16920338299987],[-157.5845434239999,-77.17929452900002],[-157.57306881399992,-77.187107029],[-157.51166744699992,-77.20183684699991],[-157.39403235599985,-77.2507463519999],[-157.2507218089999,-77.27304452899993],[-157.26353919199988,-77.27825286299992],[-157.27708899599992,-77.28150807099996],[-157.2910050119999,-77.28281015399988],[-157.30492102799988,-77.28199635199987],[-157.25633704299992,-77.30217864399998],[-157.08307857999992,-77.35125090899993],[-157.02183997299989,-77.35865650799991],[-157.00523841099994,-77.35556405999994],[-156.98082434799989,-77.34246184699994],[-156.92988033799986,-77.35393645599991],[-156.9033096999999,-77.3484026019999],[-156.89696204299986,-77.33782317499994],[-156.89924068899995,-77.32708098799992],[-156.8960668609999,-77.31926848799993],[-156.8212784499999,-77.31910572699996],[-156.46711178299986,-77.26067473799996],[-156.51166744699992,-77.24773528399999],[-156.6963598299999,-77.23495859199994],[-156.73668372299986,-77.22551848799992],[-156.81098385299984,-77.1915015599999],[-156.83356686099995,-77.18767669099998],[-156.7823380199999,-77.16578541499986],[-156.65514075399994,-77.15715911299995],[-156.59028072799993,-77.112399998],[-156.5106095039999,-77.10523853999996],[-156.4146622389999,-77.0778947899999],[-156.32384192599991,-77.06609465899992],[-155.8655492829999,-77.05974700299997],[-155.6950170559999,-77.081719659],[-155.5825902989999,-77.11321379999993],[-155.49998938699989,-77.16130950299998],[-155.47504635299995,-77.16790129999995],[-155.35688229099992,-77.16497161299985],[-155.32994544199994,-77.16985442499991],[-155.3157852859999,-77.17017994599993],[-155.3088272779999,-77.1638322899999],[-155.30870520699995,-77.15032317499993],[-155.30585689999992,-77.13648853999993],[-155.29051673099985,-77.1288388],[-154.89439856699994,-77.10369231599991],[-154.83910071499992,-77.112399998],[-154.8163549469999,-77.12249114399988],[-154.77497311099987,-77.14763762799994],[-154.7503149079999,-77.15349700299998],[-154.4052221339999,-77.15292734199993],[-154.19562740799995,-77.17587656],[-154.1686498689999,-77.18425872199988],[-154.12446041599992,-77.20745208099991],[-154.0967911449999,-77.21379973799985],[-153.81541907449989,-77.2339820294999],[-153.53404700399994,-77.25416432099989],[-153.31720943899992,-77.33814869599996],[-153.37901770699992,-77.38079192499998],[-153.45539303299995,-77.39837004999993],[-153.90510006399987,-77.40520598799995],[-153.94184322799987,-77.41594817499995],[-153.90705318899992,-77.43499114399995],[-153.86241614499986,-77.44255950299998],[-153.55522620349987,-77.44451262799986],[-153.2480362619999,-77.44646575299998],[-153.0806371739999,-77.47307708099993],[-152.9963272779999,-77.47242603999999],[-152.93464107999986,-77.48015715899999],[-152.91547604099992,-77.47795989399991],[-152.87242591099988,-77.46786874799994],[-152.8516739569999,-77.46607838299985],[-152.8285619779999,-77.46786874799994],[-152.80882727799988,-77.472344659],[-152.7719620429999,-77.485772394],[-152.75263424399986,-77.49032968499994],[-152.57542883999992,-77.50204843499994],[-152.5795792309999,-77.48284270599989],[-152.58897864499988,-77.46697356599995],[-152.61493893099993,-77.438571873],[-152.58055579299992,-77.42603932099983],[-152.47638912699992,-77.40789153399992],[-152.5023901029999,-77.38746510199995],[-152.46788489499986,-77.34205494599996],[-152.4854630199999,-77.31910572699996],[-152.41856848899988,-77.30437590899989],[-152.35069739499988,-77.30266692499988],[-152.2168676419999,-77.32447682099993],[-152.1856583319999,-77.33318450299991],[-152.1756485669999,-77.33928801899998],[-152.13353430899983,-77.37574635199996],[-152.1192520819999,-77.38355885199987],[-152.09654700399992,-77.39104583099993],[-152.0608617829999,-77.39527760199994],[-151.98761959499993,-77.38795338299994],[-151.5145971339999,-77.41643645599986],[-151.3711645169999,-77.45061614399994],[-151.4167374339999,-77.47470468499995],[-151.44062252499992,-77.48349374799993],[-151.4661352199999,-77.48650481599992],[-151.42088782499988,-77.50896575299991],[-151.0010880199999,-77.55852629999995],[-150.9118139309999,-77.59075286299989],[-150.45405025899993,-77.68059661299992],[-150.4252823559999,-77.68987395599996],[-150.37425696499992,-77.71795012799996],[-150.3183487619999,-77.73601653399999],[-150.27289791599995,-77.76580169099998],[-150.2476700509999,-77.77312590899999],[-150.09906979099986,-77.77922942499998],[-150.05211341099985,-77.79159921699993],[-150.00361080599984,-77.81096770599994],[-149.97496497299989,-77.81617603999993],[-149.85680091099985,-77.82008228999993],[-149.61558997299989,-77.80242278400002],[-149.50243079299986,-77.77255624799993],[-149.24531002499995,-77.75750090899992],[-149.26207434799989,-77.75261809699985],[-149.30353756399987,-77.72771575299991],[-149.3228653639999,-77.72275155999995],[-149.3831274079999,-77.71933359199994],[-149.4011938139999,-77.71363697699996],[-149.4340307279999,-77.69687265399995],[-149.4509171209999,-77.6910132789999],[-149.5083715489999,-77.67717864399991],[-149.52619381399995,-77.66904062299997],[-149.5908096999999,-77.64934661299995],[-149.8142797519999,-77.64788176899997],[-149.8024389309999,-77.64470794099992],[-149.79015051999986,-77.64275481599988],[-149.77790279899986,-77.64234791499995],[-149.76557369699995,-77.64324309699995],[-149.77086341099994,-77.63909270600001],[-149.78547115799995,-77.62460702899988],[-149.64305579299992,-77.60849374799989],[-149.49852454299986,-77.60947030999988],[-149.2276301744999,-77.65846119549998],[-148.95673580599993,-77.70745208099999],[-148.88451087099983,-77.70720794099995],[-148.67369544199994,-77.67489999799993],[-148.80150305899986,-77.58375416499993],[-148.78160559799989,-77.57984791499993],[-148.79002844999988,-77.57577890399988],[-148.80622311099987,-77.56560637799993],[-148.8146866529999,-77.56145598799998],[-148.7521459629999,-77.55201588299997],[-148.55939693899987,-77.55999114399992],[-148.28903154199986,-77.5278866515],[-148.01866614499994,-77.49578215899989],[-147.87173417899993,-77.49895598799995],[-147.79308020699995,-77.49032968499994],[-147.75820878799993,-77.46168385199996],[-148.17909366233317,-77.42039695966665],[-148.59997853666653,-77.37911006733324],[-149.0208634109999,-77.33782317499994],[-149.04100501199994,-77.33310312299992],[-149.0555313789999,-77.32024504999991],[-149.06208248599987,-77.29387786299999],[-149.05011959499993,-77.27564869599993],[-149.0274552069999,-77.26392994599993],[-149.0019018219999,-77.25725676899998],[-148.80272376199989,-77.23430754999998],[-148.97118079299992,-77.22747161299996],[-148.95628821499994,-77.21363697699996],[-148.91352291599995,-77.18645598799988],[-148.86738033799992,-77.13738372199992],[-148.85118567599986,-77.12574635199992],[-148.8118383449999,-77.11207447699998],[-148.76972408799992,-77.10475025799997],[-148.51305091099994,-77.10759856599992],[-148.1799413729999,-77.18568287549999],[-147.8468318349999,-77.26376718499998],[-147.7699275379999,-77.31178150799997],[-147.77794348899994,-77.36972421699996],[-147.7011612619999,-77.40943775799997],[-147.66144771999987,-77.42302825299991],[-147.6213272779999,-77.41741301899992],[-147.69322669199985,-77.372979425],[-147.71426347599987,-77.35556405999994],[-147.68691972599993,-77.34905364399984],[-147.66002356699994,-77.35670338299995],[-147.60651607999992,-77.38404713299992],[-147.57957923099985,-77.38534921699994],[-147.49054928299995,-77.35369231599996],[-147.3917130199999,-77.34099700299998],[-147.29670162699992,-77.31617603999985],[-147.26646887899992,-77.31308359199987],[-147.23302161399988,-77.31373463299991],[-147.26382402299993,-77.28671640399988],[-147.2752172519999,-77.2693010399999],[-147.26414954299995,-77.25953541499996],[-146.9761856759999,-77.23593515399999],[-146.88980058499988,-77.25579192499993],[-146.46898352799988,-77.43987395599993],[-146.39659583199992,-77.495212498],[-146.3751114569999,-77.50310637799998],[-146.3535050119999,-77.50400155999998],[-146.30988521999987,-77.49993254999991],[-146.0255020819999,-77.51921965899996],[-145.9326065749999,-77.50009530999998],[-145.96873938699994,-77.49651458099991],[-145.9853409499999,-77.49130624799999],[-145.99966386599988,-77.480075779],[-145.7869766919999,-77.47812265399988],[-145.49840247299986,-77.52516041499989],[-145.46279863199993,-77.52320728999993],[-145.42983964799996,-77.50660572699996],[-145.43732662699992,-77.50416432099993],[-145.45189368399994,-77.49716562299987],[-145.45938066299993,-77.49480559699991],[-145.4472550119999,-77.48796965899999],[-145.43419348899994,-77.48300546699994],[-145.4205623039999,-77.480075779],[-145.40664628799993,-77.4792619769999],[-145.55817623599995,-77.45126718499998],[-145.56895911399988,-77.44589609199993],[-145.56859290299994,-77.43987395599993],[-145.56566321499992,-77.43336353999993],[-145.56899980399993,-77.427015883],[-145.66535396999996,-77.38567473799996],[-145.73473059799989,-77.36874765399998],[-145.9550675119999,-77.36337656],[-145.93736731699988,-77.36003997199998],[-145.90245520699986,-77.34823984199991],[-145.88565019399988,-77.34596119599986],[-145.8098038399999,-77.3479143209999],[-145.83088131399995,-77.33766041499997],[-145.8535050119999,-77.33261484199994],[-145.90038001199986,-77.32878997199992],[-145.89492753799993,-77.32561614399995],[-145.8846736319999,-77.3176408829999],[-145.87930253799993,-77.31438567499995],[-145.9389542309999,-77.27988046699994],[-145.96446692599994,-77.25448984199991],[-145.9534399079999,-77.23308684699988],[-145.92003333199992,-77.22730885199991],[-145.88573157499985,-77.23398202899988],[-145.85122636599993,-77.24480559699995],[-145.8172094389999,-77.25156015399989],[-145.70909583199995,-77.24342213299998],[-145.5640763009999,-77.25156015399989],[-145.55597896999996,-77.2502580709999],[-145.5502009759999,-77.24700286299995],[-145.54051673099994,-77.23870208099987],[-145.5345759759999,-77.2356096329999],[-145.52538001199994,-77.23455169099985],[-145.42723548099985,-77.24700286299995],[-145.2459610669999,-77.23235442499985],[-145.2750138009999,-77.22112395599986],[-145.60594641849994,-77.14373137799996],[-145.9368790359999,-77.06633879999995],[-145.97325598899988,-77.06340911299995],[-146.0496313139999,-77.06633879999995],[-146.1629125639999,-77.05852629999988],[-146.3090714179999,-77.03020598799992],[-146.38141842399995,-77.00310637799998],[-146.31924394399994,-76.99049244599983],[-145.9276220364999,-77.02280038849999],[-145.5360001289999,-77.05510833099994],[-145.5311173169999,-77.05917734199993],[-145.5273331369999,-77.07333749799994],[-145.52407792899993,-77.07724374799994],[-145.5069473949999,-77.07952239399992],[-145.3453669909999,-77.0570614559999],[-145.3099666009999,-77.05868905999994],[-145.32827714799996,-77.04013437299993],[-145.36168372299994,-77.02841562299994],[-145.56932532499988,-76.98259856599995],[-145.54523678299995,-76.96998463299997],[-145.5467016269999,-76.94784921699998],[-145.5651749339999,-76.92652760199984],[-145.5925186839999,-76.91676197699998],[-145.81037350199986,-76.91985442499995],[-145.88243567599991,-76.90829843500003],[-145.9148656889999,-76.89755624799992],[-145.94774329299992,-76.88014088299987],[-145.9636124339999,-76.85751718499998],[-145.94505774599992,-76.83025481599991],[-145.9135636059999,-76.81796640399995],[-145.8782445949999,-76.81682708099991],[-145.80968176999994,-76.8272437479999],[-145.7394913399999,-76.82822030999988],[-145.52440344999985,-76.79892343499995],[-145.51105709499993,-76.79534270599989],[-145.48790442599991,-76.78150807099989],[-145.47573808499993,-76.77849700299988],[-145.39834550699982,-76.77947356599995],[-145.46263587099986,-76.75164153399999],[-145.5342504549999,-76.73796965899996],[-145.8221125969999,-76.72356536249985],[-146.10997473899988,-76.70916106599992],[-146.12547766799986,-76.70476653399994],[-146.1375219389999,-76.6993140599999],[-146.18512936099992,-76.66253020600001],[-146.31090247299986,-76.63005950299993],[-146.34463456899985,-76.6267229149999],[-146.41661536399988,-76.62737395599994],[-146.45030676999988,-76.61785247199995],[-146.47012285099993,-76.59270598799998],[-146.4326879549999,-76.57024504999987],[-146.41283118399986,-76.56194426899997],[-146.39122473899988,-76.55868905999995],[-146.44644120999988,-76.54778411299988],[-146.61807206899988,-76.53240325299993],[-147.08169511599988,-76.43279387799998],[-147.56061764199984,-76.44064706799988],[-148.03954016799992,-76.44850025799994],[-148.11497962099995,-76.46363697699994],[-148.19542395699995,-76.46550872200001],[-148.45282955599995,-76.50603606599994],[-148.8484730023333,-76.4806725676666],[-149.24411644866655,-76.45530906933317],[-149.63975989499988,-76.42994557099993],[-149.68769283799986,-76.41643645599996],[-149.71406002499987,-76.39771900799991],[-149.70897376199986,-76.37672291499995],[-149.6862686839999,-76.35605234199994],[-149.65977942599994,-76.33814869599989],[-149.60631262899992,-76.313897394],[-149.54576575399994,-76.30038827900002],[-149.48334713399984,-76.29322682099989],[-149.03327389199993,-76.30193450299996],[-148.8740942049999,-76.26572030999995],[-148.53966223899988,-76.22828541499992],[-148.6458227199999,-76.20907968499995],[-148.69029700399986,-76.19150156],[-148.68927975199995,-76.16106536299988],[-148.64867102799994,-76.13469817499997],[-148.5914200509999,-76.11687590899999],[-148.42540442599991,-76.08945077899995],[-148.19709225199995,-76.08709075299998],[-147.85288109733327,-76.1354577236665],[-147.5086699426666,-76.18382469433321],[-147.1644587879999,-76.2321916649999],[-147.17690995999993,-76.23772551899992],[-147.18976803299984,-76.24114348799985],[-147.20295162699992,-76.24228280999988],[-147.2162979809999,-76.24089934699998],[-147.16730709499996,-76.25758228999993],[-146.95665442599991,-76.29892343499996],[-146.76097571499992,-76.31226978999997],[-146.59756425699993,-76.35963307099992],[-146.57160396999993,-76.35523853999993],[-146.54678300699987,-76.34026458099999],[-146.52110755099991,-76.32919687299996],[-146.4944555329999,-76.32675546699993],[-146.46646074099988,-76.33806731599991],[-146.41836503799988,-76.37566497199991],[-146.39305579299995,-76.39023202899993],[-146.25072180899988,-76.42376067499988],[-146.2222387359999,-76.42131926899985],[-146.16917883999994,-76.40862395599989],[-146.00544186099995,-76.416761977],[-145.93407141799986,-76.44280364399995],[-145.7183731759999,-76.46493905999995],[-145.35464433499985,-76.43450286299998],[-145.38174394399988,-76.409763279],[-145.47907467399986,-76.35393645599993],[-145.50462805899994,-76.33025481599992],[-145.51797441299985,-76.32195403399992],[-145.5386449859999,-76.31552499800001],[-145.90908769399994,-76.25920989399995],[-146.2043554349999,-76.17310963349993],[-146.4996231759999,-76.087009373],[-146.46955318899995,-76.06308359199994],[-146.43765214799993,-76.05006275799987],[-146.36339270699986,-76.03785572699998],[-146.36742102799988,-76.03240325299986],[-146.37364661399994,-76.01970794099998],[-146.37759355399993,-76.01433684699992],[-146.29051673099988,-75.99480559699985],[-146.29426021999987,-75.98796965899992],[-146.29954993399988,-75.97234465899994],[-146.30345618399988,-75.96550872199992],[-146.2092179029999,-75.91545989399991],[-145.95083574099988,-75.88258228999983],[-145.56558183499993,-75.89487070149993],[-145.1803279289999,-75.90715911299992],[-145.2136124339999,-75.89348723799998],[-145.18521074099985,-75.88323333099994],[-145.05728105399987,-75.87517669099992],[-144.8912247389999,-75.84091562299996],[-144.59040279899992,-75.84335702899999],[-144.3879288399999,-75.81267669099998],[-144.3204646479999,-75.81422291499992],[-144.27110755099991,-75.82390715899999],[-144.22130286399994,-75.82122161299992],[-144.2047013009999,-75.81764088299994],[-144.17731686099992,-75.8039690079999],[-144.1603897779999,-75.8039690079999],[-144.2047013009999,-75.74944426899992],[-144.21051998599995,-75.73463307099985],[-144.20250403599985,-75.71851978999989],[-144.1878149079999,-75.712823175],[-143.97183183499996,-75.69605885199998],[-143.99559485599988,-75.67489999799997],[-144.04735266799992,-75.66643645599993],[-144.1990453769999,-75.66122812299994],[-144.30760657499985,-75.64234791499992],[-144.3572485019999,-75.62395598799988],[-144.30606035099993,-75.61451588299995],[-144.08897864499988,-75.6141903629999],[-143.74040686749987,-75.57622649549995],[-143.39183508999992,-75.53826262799998],[-143.03563391799992,-75.55002206799998],[-142.67943274599986,-75.56178150799987],[-142.65493730399993,-75.55868905999988],[-142.6399633449999,-75.55242278399992],[-142.6282445949999,-75.54558684699991],[-142.61607825399994,-75.54021575299986],[-142.59968014199993,-75.53801848799995],[-142.5574438139999,-75.542087498],[-142.5449112619999,-75.54045989399998],[-142.53718014199987,-75.53679778399993],[-142.52863521999987,-75.53101978999997],[-142.51402747299994,-75.51881275799991],[-142.53380286399997,-75.50465260199996],[-142.5496313139999,-75.48845794099992],[-142.5782364569999,-75.45126718499994],[-142.5263565749999,-75.43759531],[-142.4670304029999,-75.43173593499995],[-142.13019771999987,-75.46087004999991],[-142.03123938699983,-75.49553801899998],[-141.91185462099992,-75.50359465899993],[-141.8613988919999,-75.52117278399996],[-141.7363175119999,-75.62639739399991],[-141.6905411449999,-75.65374114399987],[-141.67406165299988,-75.67034270599991],[-141.66173255099997,-75.69524504999997],[-141.64745032499988,-75.7068010399999],[-141.59166419199988,-75.73072682099996],[-141.5540258449999,-75.7616513],[-141.52717037699992,-75.76751067499985],[-141.42780514199993,-75.76588307099983],[-141.4162491529999,-75.76409270599993],[-141.3985489569999,-75.75367603999986],[-141.38955644399996,-75.7443986959999],[-141.37950598899985,-75.73951588299984],[-141.3017471999999,-75.75074635199984],[-140.91295325399994,-75.76238372199991],[-140.89736894399996,-75.76702239399995],[-140.8587540359999,-75.79241301899998],[-140.84251868399986,-75.79778411299985],[-140.82607988199987,-75.80103932099988],[-140.64647376199994,-75.80722421699994],[-140.77647864499994,-75.7439104149999],[-140.75373287699992,-75.74114348799993],[-140.68488521999984,-75.74602629999991],[-140.83722896999987,-75.68287525799994],[-141.23843339799993,-75.598728123],[-141.29816646999993,-75.56617603999992],[-141.32652747299994,-75.52678801899995],[-141.29881751199986,-75.50164153399997],[-141.2304581369999,-75.49236419099992],[-140.92747962099992,-75.5114885399999],[-140.86937415299985,-75.52556731599984],[-140.81965084499987,-75.53093840899997],[-140.54832923049992,-75.48174407349993],[-140.27700761599993,-75.43254973799996],[-140.21735592399986,-75.41025156],[-140.1985570949999,-75.39251067499993],[-140.21882076699987,-75.37517669099985],[-140.18932044199994,-75.35515715899997],[-140.1570531889999,-75.34059010199994],[-139.84972083199983,-75.24065520599996],[-139.8148494129999,-75.23544687299997],[-139.7674047519999,-75.23626067499998],[-139.75694739499986,-75.23406340899999],[-139.7366430329999,-75.227146092],[-139.67418372299994,-75.2185197899999],[-139.67699133999992,-75.196384373],[-139.65941321499986,-75.17636484199994],[-139.63353430899986,-75.16130950299993],[-139.61123613199993,-75.15349700299984],[-139.56663977799994,-75.148044529],[-139.35142981699994,-75.14771900799997],[-139.2042537099999,-75.12493254999995],[-139.03425045499984,-75.14072030999989],[-138.6575957239999,-75.12900156],[-138.2809409929999,-75.11728281],[-137.90428626199994,-75.10556405999994],[-137.8487035799999,-75.09587981599998],[-137.78595943899992,-75.06959400799987],[-137.76333574099996,-75.062920831],[-137.7423396479999,-75.06064218499994],[-137.47744706899994,-75.08814869599996],[-137.09487870999996,-75.17986419099985],[-137.07164466099994,-75.17791106599998],[-137.05508378799996,-75.16765715899996],[-137.03921464799993,-75.15520598799995],[-137.01838131399987,-75.14609140399995],[-136.99522864499994,-75.14478932099996],[-136.91893469999985,-75.15618254999991],[-136.63247636649993,-75.16700611749997],[-136.3460180329999,-75.177829685],[-136.36241614499997,-75.15789153399993],[-136.38198808499993,-75.14609140399995],[-136.43008378799993,-75.13388437299997],[-136.40660559799994,-75.12810637799993],[-136.3350317049999,-75.12542083099994],[-136.3743790359999,-75.10808684699995],[-136.62598629499988,-75.07313404749999],[-136.87759355399993,-75.03818124799993],[-136.96475175699987,-75.01360442499993],[-137.00987708199992,-75.00986093499998],[-136.9976293609999,-75.00725676899998],[-136.9585668609999,-74.99309661299996],[-136.88560950399986,-74.98137786299998],[-136.8725479809999,-74.97527434699998],[-136.86432857999992,-74.96461353999995],[-136.8631078769999,-74.94793059699992],[-136.86896725199983,-74.93092213299995],[-136.88719641799992,-74.89983489399995],[-136.89122473899988,-74.88030364399997],[-136.8893936839999,-74.86988697699996],[-136.88540605399993,-74.86256275799997],[-136.88243567599994,-74.85475025799997],[-136.88487708199995,-74.82830169099991],[-136.8817032539999,-74.81666432099989],[-136.86681067599994,-74.79257577899988],[-136.8342992829999,-74.76043059699991],[-136.79430091099994,-74.7499325499999],[-136.56529700399992,-74.75855885199994],[-136.41779537699986,-74.73919036299992],[-136.34927324099993,-74.71770598799999],[-136.2248429029999,-74.70142994599995],[-136.12295488199987,-74.70110442499993],[-135.93614661399994,-74.72356536299985],[-135.87474524599992,-74.7461890599999],[-135.85606848899994,-74.74976978999996],[-135.71605383999986,-74.74920012799991],[-135.70181230399993,-74.74732838299994],[-135.69151770699995,-74.74187590899999],[-135.68150794199994,-74.734551691],[-135.6682022779999,-74.72779713299987],[-135.64781653599994,-74.71347421699997],[-135.6566462879999,-74.69947682099992],[-135.70010331899994,-74.67799244599989],[-135.63377844999988,-74.6405575499999],[-135.4954727859999,-74.58123137799988],[-135.41999264199987,-74.56511809699991],[-135.34239661399994,-74.56015390399995],[-134.9305110344999,-74.60169850049999],[-134.51862545499986,-74.64324309699992],[-134.48892167899993,-74.65748463299994],[-134.50137285099996,-74.67685312299994],[-134.52330481699988,-74.693454685],[-134.57087154899997,-74.71705494599995],[-134.5862524079999,-74.736260675],[-134.56810462099992,-74.7561174459999],[-134.5374649729999,-74.77239348799984],[-134.51524817599994,-74.78085702899998],[-134.39224199099993,-74.8015276019999],[-134.37303626199986,-74.81170012799986],[-134.37755286399994,-74.82919687299989],[-134.39509029899995,-74.84734465899999],[-134.41470292899993,-74.8589820289999],[-134.3556208979999,-74.87037525799997],[-134.23814856699997,-74.85564544099988],[-134.1761368479999,-74.85491301899985],[-134.09040279899995,-74.881036066],[-134.0589900379999,-74.88494231599998],[-133.92918860599988,-74.88420989399995],[-133.94322669199994,-74.88779062300003],[-133.95372473899988,-74.8957658829999],[-133.95661373599984,-74.90715911299995],[-133.9481095039999,-74.92034270599999],[-133.9382218089999,-74.92400481599995],[-133.8655492829999,-74.92831796699996],[-133.59188798749986,-74.88160572749992],[-133.31822669199994,-74.83489348799998],[-133.19981848899997,-74.84026458099993],[-132.79116777299993,-74.768649998],[-132.76121985599988,-74.76848723799995],[-132.7390030589999,-74.77678801899992],[-132.7156469389999,-74.79257577899988],[-132.69001217399995,-74.80348072699994],[-132.6357315749999,-74.81894296699997],[-132.5787247389999,-74.82577890399996],[-132.09312903599988,-74.76327890399995],[-131.77879798099988,-74.78093840899996],[-131.5740860669999,-74.84351978999989],[-131.5554093089999,-74.84596119599992],[-131.28410803949996,-74.83123137799991],[-131.01280676999988,-74.81650155999994],[-130.97484290299988,-74.82830169099991],[-130.95466061099987,-74.83114999799994],[-130.81582597599987,-74.81568775799992],[-130.77041581899988,-74.82333749799994],[-130.7419327459999,-74.835625909],[-130.7319229809999,-74.83863697699991],[-130.35350501199986,-74.87594980249992],[-129.97508704299995,-74.91326262799994],[-129.62486731649994,-74.87700774549997],[-129.27464758999994,-74.84075286299992],[-129.2632543609999,-74.83782317499998],[-129.23912512899994,-74.82390715900002],[-129.2276098299998,-74.82057057099999],[-129.18683834499987,-74.82642994599993],[-128.71149654899995,-74.82252369599993],[-128.65021725199986,-74.81292083099996],[-128.53270423099985,-74.77304452899998],[-128.47301184799994,-74.76344166499992],[-128.00503495999996,-74.74130624800003],[-127.99299068899985,-74.73707447699991],[-127.97126217399997,-74.72144947699994],[-127.9591365229999,-74.71770598799999],[-127.9020889959999,-74.71843840899993],[-127.85049394399992,-74.7263322899999],[-127.83918209499987,-74.72356536299985],[-127.8108617829999,-74.70842864399985],[-127.79596920499985,-74.70387135199991],[-127.74046790299988,-74.70435963299997],[-127.6298721999999,-74.71982187299999],[-127.3523656889999,-74.70680103999983],[-127.32408606699995,-74.7012671849999],[-127.27082271999988,-74.68401458099999],[-127.24474036399991,-74.68010833099999],[-127.12580318899985,-74.68971119599996],[-126.93907630099996,-74.67669036299998],[-126.87804114499997,-74.68238697699996],[-126.7971085279999,-74.70435963299997],[-126.67613684799991,-74.71998463299997],[-126.59463456899996,-74.74244557099996],[-126.11343339799993,-74.76148853999996],[-126.05606035099991,-74.74822356599994],[-126.02529863199993,-74.74716562299996],[-125.96141516799992,-74.75318775799998],[-125.93358313699984,-74.75253671699994],[-125.8214005199999,-74.72812265399998],[-125.76846269399996,-74.707777602],[-125.74006100199985,-74.70476653399999],[-125.33800208249993,-74.70993417749995],[-124.93594316299993,-74.7151018209999],[-124.8543595039999,-74.73316822699992],[-124.8263240229999,-74.73601653399996],[-124.47642981699995,-74.71363697699992],[-124.43610592399989,-74.721123956],[-124.42300370999993,-74.72144947699994],[-124.4085180329999,-74.71835702899995],[-124.38060462099993,-74.70907968499998],[-124.36563066299992,-74.70696379999997],[-124.30736243399988,-74.71233489399985],[-124.19985917899989,-74.74732838299994],[-124.07628333199999,-74.80706145600001],[-124.05134029899995,-74.81113046699997],[-123.7587377594999,-74.7964820295],[-123.4661352199999,-74.78183359199996],[-123.3441462879999,-74.75644296700003],[-123.21784420499984,-74.75562916499983],[-123.2244360019999,-74.77483489399988],[-123.16954505099991,-74.78899504999998],[-123.1182348299999,-74.7963192689999],[-123.00987708199996,-74.79648202899988],[-122.83625240799985,-74.76572030999998],[-122.72337805899987,-74.77605559699998],[-122.45482337099992,-74.75335051899995],[-122.42357337099986,-74.75514088299994],[-122.33311926999987,-74.77662525799987],[-122.30553137899994,-74.77629973799985],[-122.22793535099994,-74.75628020599996],[-122.2000219389999,-74.75383879999991],[-122.00389563699989,-74.7751604149999],[-121.91283118399987,-74.76555754999993],[-121.82941646999986,-74.7841122379999],[-121.80207271999987,-74.78655364399995],[-121.7725317049999,-74.78606536299998],[-121.76504472599996,-74.78199635199992],[-121.75462805899986,-74.76425546699993],[-121.74347896999986,-74.75709400799997],[-121.71568762899997,-74.75107187299997],[-121.70140540299988,-74.75025807099996],[-121.63589433499992,-74.75904713299984],[-121.47492428299988,-74.75579192499998],[-121.4605606759999,-74.75269947699991],[-121.44322669199993,-74.73805103999999],[-121.43382727799991,-74.73503997199998],[-121.25462805899988,-74.72470468499996],[-121.26886959499988,-74.73398202899993],[-121.28441321499987,-74.74081796699994],[-121.30085201699988,-74.74521249799993],[-121.31769771999988,-74.74773528399986],[-121.26211503799992,-74.75652434700001],[-121.2031143869999,-74.75595468499995],[-121.14549719999992,-74.74504973799986],[-121.09410559799991,-74.723239842],[-121.07164466099994,-74.7164039039999],[-121.04336503799996,-74.71607838299997],[-121.01646887899987,-74.72185637799993],[-120.97565670499985,-74.74635182099996],[-120.94664466099994,-74.74781666499993],[-120.8293350899999,-74.73984140399996],[-120.7170304029999,-74.7133114559999],[-120.43549557199995,-74.68670012799997],[-120.15396074099989,-74.66008879999991],[-120.04271399599993,-74.67742278400002],[-119.89732825399987,-74.68189869599989],[-119.54377193899991,-74.64226653399996],[-119.4210505849999,-74.65764739399998],[-119.40143795499985,-74.65496184699992],[-119.3808487619999,-74.64625416499993],[-119.34080969999988,-74.62273528399997],[-119.32115637899993,-74.61663176899998],[-119.13499915299991,-74.59807708099989],[-119.05451412699993,-74.60515715899994],[-118.98228919199993,-74.595310154],[-118.91047115799986,-74.60271575299991],[-118.86705481699991,-74.60247161299995],[-118.6795955069999,-74.56373463299984],[-118.62913977799988,-74.54517994599983],[-118.6165258449999,-74.52223072699994],[-118.64708411399992,-74.50945403399999],[-119.13825436099985,-74.50335051899991],[-119.06965084499993,-74.43962981599995],[-118.97549394399992,-74.40422942499985],[-118.54969234899995,-74.35849374799993],[-118.12389075399989,-74.3127580709999],[-118.03726152299994,-74.28313567499995],[-117.99364173099994,-74.26287200299996],[-117.97081458199993,-74.25807057099996],[-117.94692949099995,-74.2610002579999],[-117.92275956899994,-74.27214934699991],[-117.84919186099987,-74.31633879999998],[-117.84113521999984,-74.33766041499986],[-117.88361568899991,-74.362888279],[-117.97813880099993,-74.39983489399994],[-117.9139298169999,-74.41961028399989],[-117.8915095689999,-74.42009856599988],[-117.83592688699993,-74.41187916499996],[-117.80919348899991,-74.41472747200001],[-117.7928360669999,-74.43141041499986],[-117.88272050699992,-74.46982187299987],[-117.84398352799988,-74.51002369599996],[-117.78575598899995,-74.51751067499993],[-117.66234290299991,-74.50335051899991],[-117.6040746739999,-74.509372654],[-117.4899796209999,-74.53476327899993],[-117.34121660099993,-74.54680754999985],[-117.14244544199991,-74.5348446589999],[-116.69347083199992,-74.55787525799998],[-116.51886959499986,-74.51767343499998],[-116.4628800119999,-74.51116301899998],[-116.2960505849999,-74.51921965899993],[-116.21190344999988,-74.49456145599993],[-116.1867569649999,-74.49627044099985],[-116.15184485599987,-74.50416432099992],[-116.0502009759999,-74.49732838299998],[-116.08486894399987,-74.47966887799998],[-116.09752356699995,-74.46689218500003],[-116.10098222599993,-74.44768645599999],[-116.09536699099995,-74.43010833099996],[-116.08413652299996,-74.41912200299998],[-116.0692439439999,-74.41204192499991],[-116.05239824099989,-74.40650807099992],[-115.98029537699998,-74.39177825299993],[-115.90672766799989,-74.38543059699998],[-115.91844641799989,-74.39820728999993],[-115.9271541009999,-74.41025155999994],[-115.92821204299992,-74.42245859199993],[-115.91710364499991,-74.43596770599999],[-115.88829505099996,-74.45598723799996],[-115.79356848899988,-74.50115325299991],[-115.72667395699997,-74.52174244599995],[-115.64932206899987,-74.53093840900002],[-115.41685950399997,-74.51116301899998],[-115.23717200399996,-74.51506926899998],[-115.0239151679999,-74.482517185],[-114.87433834499994,-74.48162200299993],[-114.83849036399991,-74.4714494769999],[-114.8536677729999,-74.463636977],[-114.86998450399992,-74.45134856599985],[-114.88365637899996,-74.43661874799994],[-114.89110266799995,-74.42115650799984],[-114.89110266799995,-74.39820728999993],[-114.88060462099986,-74.38787200299993],[-114.86314856699991,-74.38502369599989],[-114.84239661399991,-74.38502369599989],[-114.85374915299988,-74.37786223799995],[-114.86554928299986,-74.37371184699991],[-114.89118404899993,-74.36923593500003],[-114.90282141799993,-74.36443450299996],[-114.9230850899999,-74.34807708099993],[-114.93472245999995,-74.3435197899999],[-114.96971594999987,-74.33635833099986],[-114.99449622299993,-74.32463958099996],[-115.0679825509999,-74.25644296699994],[-115.07567298099993,-74.24472421699996],[-115.09146074099986,-74.20582447699985],[-115.12376868399988,-74.17302825299986],[-115.12608801999995,-74.15105559699992],[-115.11095130099994,-74.13103606599996],[-115.08267167899992,-74.11296965899986],[-115.12486731699993,-74.09490325299993],[-115.02220618399991,-74.0466447899999],[-114.91291256399988,-74.01685963299988],[-114.94497636599986,-73.99439869599989],[-114.81334387899994,-73.9636369769999],[-114.79686438699987,-73.93889739399992],[-114.7339981759999,-73.926853123],[-114.50536048099991,-73.9200171849999],[-114.45107988199987,-73.907810154],[-114.37437903599992,-73.8815243469999],[-114.21003170499985,-73.86345794099998],[-114.18224036399988,-73.86695728999987],[-114.10171464799993,-73.89202239399998],[-113.95177161399992,-73.91464609199994],[-113.9774470689999,-73.94833749799994],[-114.01130123599987,-73.96835702899999],[-114.28600012899997,-74.0591773419999],[-114.24233964799988,-74.07830169099987],[-114.18814042899993,-74.07708098799995],[-113.89248613199995,-74.02271900799992],[-113.61119544199994,-74.02516041499996],[-113.58340410099989,-74.02849700299998],[-113.56200110599991,-74.03525155999992],[-113.43960527299996,-74.099704685],[-113.42613684799997,-74.11988697699994],[-113.44554602799988,-74.12664153399987],[-113.44701087099995,-74.14275481599995],[-113.43700110599985,-74.16130950299996],[-113.42202714799993,-74.174899998],[-113.8832087879999,-74.23707447699984],[-113.94782467399995,-74.25644296699994],[-113.91942298099991,-74.26539478999996],[-113.8045548169999,-74.27662525799997],[-113.74990800699995,-74.27320728999996],[-113.73379472599989,-74.27597421699993],[-113.70238196499994,-74.2920874979999],[-113.68517005099993,-74.29656340899996],[-113.78954016799987,-74.33326588299997],[-113.80532792899992,-74.34270598799998],[-113.80919348899992,-74.35540129999985],[-113.80223548099994,-74.392754816],[-113.79491126199991,-74.40056731599998],[-113.7794490229999,-74.40553150799994],[-113.74836178299991,-74.411309503],[-113.80125891799987,-74.45183684699992],[-113.73106848899991,-74.46982187299987],[-113.6574600899999,-74.46640390399995],[-113.51244055899988,-74.43124765399998],[-113.22508704299989,-74.40211353999992],[-113.26301021999993,-74.45086028399986],[-113.31094316299993,-74.48072682099992],[-113.56362870999995,-74.55413176899995],[-113.62193762899996,-74.58114999799989],[-113.64928137899993,-74.587985935],[-114.05923417899996,-74.62835051899988],[-114.12466386599992,-74.65520598799995],[-114.14610755099996,-74.66041432099986],[-114.32579505099996,-74.68189869599989],[-114.35700436099985,-74.69589609199993],[-114.30382239499995,-74.71135833099996],[-114.26573645699996,-74.71607838299997],[-114.15298417899996,-74.71526458099996],[-113.97085527299991,-74.68254973799993],[-113.91535396999986,-74.67994557099993],[-113.86180579299995,-74.68906015400002],[-113.83975175699993,-74.69915129999998],[-113.82673092399996,-74.71298593499998],[-113.82628333199996,-74.72975025799991],[-113.84239661399994,-74.74871184699992],[-113.8605850899999,-74.75937265399993],[-113.91954505099989,-74.7828915339999],[-113.93561764199987,-74.80201588299998],[-113.95421301999995,-74.85963307099986],[-113.9696345689999,-74.884860935],[-114.01903235599985,-74.91220468499998],[-114.1420792309999,-74.93580494599983],[-114.26968339799996,-75.00383879999988],[-114.27806555899991,-75.01970794099991],[-114.26284745999993,-75.04265715899999],[-114.23863684799994,-75.0533993469999],[-114.10578365799988,-75.068942967],[-114.08096269399994,-75.06666432099993],[-113.96442623599991,-75.03777434699992],[-113.88829505099991,-75.03590260199987],[-113.8632706369999,-75.02629973799998],[-113.78966223899994,-74.97747161299996],[-113.7634171209999,-74.96591562299994],[-113.73493404899992,-74.96038176899994],[-113.65489661399994,-74.96550872199995],[-113.5012100899999,-74.94801197699991],[-113.44391842399996,-74.94898853999996],[-113.18085690049988,-74.91106536249998],[-112.91779537699992,-74.873142185],[-112.86717688699993,-74.87590911299998],[-112.72598222599991,-74.89934661299995],[-112.67577063699993,-74.89804452899996],[-112.65664628799995,-74.88982512799994],[-112.6435440749999,-74.87476978999986],[-112.63369706899996,-74.85995859199997],[-112.62433834499993,-74.85214609199997],[-112.57017981699995,-74.84636809699992],[-112.24575761599993,-74.86256275799997],[-112.22980709499984,-74.85393645599996],[-112.21373450399994,-74.83717213299994],[-112.19033769399996,-74.83131275799991],[-112.13902747299994,-74.82659270599999],[-112.09626217399993,-74.81292083099996],[-112.0757543609999,-74.8088518209999],[-111.80919348849993,-74.80518971149989],[-111.54263261599996,-74.8015276019999],[-111.56021074099989,-74.78134530999988],[-111.5576065749999,-74.76230234199996],[-111.54059811099984,-74.74765390399986],[-111.51496334499987,-74.73992278399996],[-111.55011959499991,-74.722832941],[-111.66685950399992,-74.736260675],[-111.71043860599993,-74.72144947699994],[-111.75405839799993,-74.68417734199996],[-111.80630449099993,-74.65642669099998],[-111.91681881399987,-74.61842213299997],[-111.91169186099985,-74.60230885199991],[-111.91612708199993,-74.58700937299993],[-111.92324785099989,-74.57057057099995],[-111.9261368479999,-74.55120208099993],[-111.9179581369999,-74.53508879999995],[-111.90046139199985,-74.52190520599991],[-111.86253821499992,-74.50367603999993],[-111.81818600199989,-74.49089934699998],[-111.48521887899994,-74.50107187299993],[-111.41982988199989,-74.48593515399993],[-111.32555091099991,-74.47551848799995],[-111.3575333319999,-74.4592424459999],[-111.47850501199989,-74.45533619599992],[-111.69709225199992,-74.422946873],[-111.7407934239999,-74.40976327899996],[-111.7822973299999,-74.39080169099995],[-111.88711503799993,-74.315362238],[-111.90477454299986,-74.28240325299993],[-111.87706458199996,-74.25253671699994],[-111.88442949099996,-74.250583592],[-111.8989151679999,-74.24391041499995],[-111.9063207669999,-74.24195728999989],[-111.88703365799986,-74.22861093499996],[-111.86375891799995,-74.22486744599986],[-111.8151749339999,-74.22275156000003],[-111.64981035099996,-74.174899998],[-111.59264075399989,-74.17245859199996],[-111.45311438699987,-74.18596770599996],[-111.40172278599997,-74.18173593499994],[-111.37629146999987,-74.18385182099993],[-111.34658769399992,-74.18971119599989],[-111.23078365799984,-74.19670989399997],[-111.15245520699996,-74.22128671699997],[-111.04637610599991,-74.23943450299988],[-111.03600012899992,-74.24472421699996],[-111.01720130099994,-74.25855885199987],[-111.00625566299988,-74.26344166499993],[-110.94566809799991,-74.26930103999996],[-110.8882950509999,-74.28199635199994],[-110.86180579299992,-74.29436614399997],[-110.8449600899999,-74.3127580709999],[-110.82746334499986,-74.32350025799984],[-110.79662024599989,-74.32675546699996],[-110.76402747299994,-74.32463958099996],[-110.7413630849999,-74.32024504999987],[-110.72264563699991,-74.30413176899991],[-110.68976803299985,-74.25286223799988],[-110.66881262899989,-74.24049244599993],[-110.55492102799994,-74.24407317499991],[-110.44859778599994,-74.27125416499983],[-110.24819902299993,-74.37224700299986],[-110.39891516799993,-74.39519622199992],[-110.44554602799987,-74.40935637799996],[-110.4297989569999,-74.4187151019999],[-110.40953528599988,-74.42717864399991],[-110.37035071499984,-74.43824635199995],[-110.35179602799985,-74.44019947699992],[-110.22663326699991,-74.42717864399991],[-110.19286048099993,-74.43230559699985],[-110.13117428299991,-74.46843840899987],[-110.12218176999987,-74.4782854149999],[-110.12368730399993,-74.48202890400003],[-110.13365637899993,-74.49309661299998],[-110.13532467399995,-74.49684010199991],[-110.13068600199992,-74.50367603999993],[-110.11099199099988,-74.52288176899998],[-110.1031388009999,-74.54859791499993],[-110.11440995999989,-74.577243748],[-110.13670813699993,-74.6001929669999],[-110.16173255099993,-74.60955169099992],[-110.2189021479999,-74.60654062300001],[-110.2435603509999,-74.61142343499998],[-110.31704667899989,-74.65545012799998],[-110.32070878799993,-74.6662736959999],[-110.2927953769999,-74.681735935],[-110.2659805979999,-74.69280364399995],[-110.24840247299997,-74.704685154],[-110.24160722599994,-74.722832941],[-110.24722245999995,-74.75253671699994],[-110.26366126199994,-74.76832447699998],[-110.29442298099991,-74.78191497199994],[-110.47232011599993,-74.82187265399998],[-110.59365800699987,-74.83131275799991],[-110.64736894399995,-74.8278947899999],[-110.67544511599995,-74.82935963299987],[-110.69713294199993,-74.83879973799986],[-110.72313391799992,-74.85800546699993],[-110.85020911399991,-74.93108489399992],[-110.93423417899996,-74.95582447699988],[-110.98912512899996,-74.98105234199994],[-111.0178930329999,-74.9890276019999],[-111.25666256399985,-75.01995208099986],[-111.30085201699991,-75.03346119599983],[-111.38272050699987,-75.07350025799987],[-111.5268448559999,-75.10800546699997],[-111.57835852799988,-75.12883879999995],[-111.60073808499992,-75.15520598799995],[-111.51821855399992,-75.15357838299984],[-111.49083411399995,-75.15764739399998],[-111.51992753799992,-75.17343515399993],[-111.61872311099987,-75.19736093499998],[-111.56110592399989,-75.20037200299998],[-111.48106848899991,-75.19573333099996],[-111.4625138009999,-75.20094166499996],[-111.4240616529999,-75.21786874799994],[-111.36412512899997,-75.23430754999985],[-111.30418860599994,-75.24089934699991],[-111.27391516799995,-75.2383765599999],[-111.18932044199993,-75.20989348799998],[-111.1298721999999,-75.2020809879999],[-110.78789221949988,-75.19752369599986],[-110.44591223899997,-75.192966404],[-110.41828365799986,-75.19963958099996],[-110.36302649599995,-75.22161223799998],[-110.33788001199987,-75.22665781],[-110.17284094999987,-75.23919036299992],[-109.99425208199989,-75.22031015399998],[-109.90021725199993,-75.23211028399984],[-109.8671768869999,-75.23064544099998],[-109.83877519399988,-75.22340260199996],[-109.81566321499992,-75.21314869599993],[-109.71825110599987,-75.15593840899989],[-109.69286048099994,-75.14609140399995],[-109.66234290299991,-75.14714934700001],[-109.63272050699996,-75.15252044099988],[-109.25045732349987,-75.17852141749991],[-108.86819413999987,-75.20452239399992],[-108.4859309564999,-75.23052337049997],[-108.10366777299991,-75.256524347],[-108.06468665299994,-75.26637135199984],[-108.02733313699989,-75.2837867169999],[-107.86607825399989,-75.32350025799991],[-107.38768469999991,-75.31292083099986],[-107.36290442599994,-75.31861744599993],[-107.31627356699994,-75.33684661299992],[-107.29076087099995,-75.34099700299996],[-107.19294186099988,-75.34303150799997],[-107.16405188699987,-75.33668385199995],[-107.1509496739999,-75.32952239399991],[-107.12905839799987,-75.31365325299987],[-107.11432857999996,-75.30885182099999],[-106.90489661399994,-75.30999114399992],[-106.8151749339999,-75.33049895599989],[-106.7145076159999,-75.33359140399988],[-106.65538489499988,-75.37037525799995],[-106.5912979809999,-75.37859465899986],[-106.52521725199989,-75.37281666499999],[-106.48102779899993,-75.35523853999996],[-106.4578751289999,-75.32154713299994],[-106.44912675699992,-75.31682708099984],[-106.08303788999994,-75.28423430749993],[-105.71694902299986,-75.25164153399993],[-105.70225989499995,-75.24480559700001],[-105.67540442599997,-75.22682057099996],[-105.66169186099985,-75.22031015399998],[-105.40172278549987,-75.2008195939999],[-105.14175370999988,-75.18132903399999],[-105.12047278599991,-75.17636484199994],[-105.10415605399989,-75.1670874979999],[-105.09911048099984,-75.160577081],[-105.0997208319999,-75.15699635199994],[-105.10301673099994,-75.15341562299987],[-105.10631262899996,-75.14641692499998],[-105.0963028639999,-75.12411874799994],[-105.06407630099993,-75.11248137799993],[-105.02647864499995,-75.10784270599991],[-104.83625240799988,-75.10662200299998],[-104.81615149599992,-75.11109791499996],[-104.81126868399987,-75.113864842],[-104.79873613199996,-75.1247697899999],[-104.78062903599995,-75.13486093499995],[-104.76085364499993,-75.14128997199997],[-104.6326391269999,-75.15992603999996],[-104.55064856699997,-75.16073984199997],[-104.33482825399992,-75.1247697899999],[-104.10138912699992,-75.12078215899992],[-103.93114173099994,-75.15390390399995],[-103.81216386599988,-75.15300872199994],[-103.55406653549996,-75.11919524549992],[-103.29596920499993,-75.08538176899991],[-102.94625810449992,-75.10719166449998],[-102.59654700399989,-75.12900156],[-102.43887285099989,-75.1091447899999],[-102.34072831899991,-75.13046640399998],[-102.1722305979999,-75.12281666499995],[-102.07750403599992,-75.12957122199998],[-101.85928300699992,-75.10564544099992],[-101.78490149599993,-75.084079685],[-101.76073157499992,-75.08294036299988],[-101.65428626199987,-75.10035572699994],[-101.59862219999984,-75.11882903399996],[-101.5641983709999,-75.1467424459999],[-101.5530492829999,-75.17498137799997],[-101.55443274599988,-75.19670989399985],[-101.56745357999995,-75.2159156229999],[-101.59105383999989,-75.23707447699991],[-101.62230383999987,-75.25554778399993],[-101.63141842399995,-75.26279062299993],[-101.63825436099988,-75.2723934879999],[-101.6493220689999,-75.29509856599988],[-101.65684973899997,-75.305352472],[-101.5344132149999,-75.34832122199995],[-101.1485896479999,-75.37175872199992],[-101.16002356699994,-75.39381275799984],[-101.15477454299986,-75.41366952899993],[-101.13752193899985,-75.42750416499993],[-101.11270097599989,-75.43206145599989],[-101.02489173099991,-75.42050546699994],[-100.9398494129999,-75.42205169099998],[-100.62857011599992,-75.391696873],[-100.54670162699998,-75.36638762799988],[-100.43569902299987,-75.35051848799995],[-100.32388261599995,-75.35003020599996],[-100.22227942599994,-75.36012135199984],[-100.1374405589999,-75.38445403399999],[-100.10993404899996,-75.38640715899994],[-100.09585527299991,-75.38339609199994],[-100.05207271999986,-75.36695728999995],[-100.04015051999991,-75.365817967],[-100.0159805979999,-75.36712004999991],[-100.00454667899994,-75.36467864399988],[-99.97618567599991,-75.35540129999993],[-99.83161373599987,-75.32984791499993],[-99.43138587099989,-75.30339934699995],[-99.01431230399992,-75.33953215899999],[-99.00104732999998,-75.33668385199995],[-98.96031653599991,-75.320489191],[-98.9456680979999,-75.31707122199998],[-98.77204342399997,-75.32097747199998],[-98.64195716099988,-75.30950286299985],[-98.62653561099985,-75.30282968499998],[-98.59626217399995,-75.28199635199991],[-98.57933508999989,-75.27361419099995],[-98.56273352799991,-75.26962655999988],[-98.48119055899988,-75.25888437299994],[-98.40221106699997,-75.23642343499995],[-98.42983964799987,-75.21786874799994],[-98.4785863919999,-75.21559010199996],[-98.57140051999991,-75.22584400799991],[-98.74421139199991,-75.224541925],[-98.43431555899994,-75.1333960919999],[-98.54771887899989,-75.12346770599999],[-98.89907792899987,-75.17498137799997],[-98.92662512899989,-75.17253997199994],[-99.04002844999985,-75.14617278399993],[-99.37970943899985,-75.11272551899998],[-99.35260982999992,-75.09384530999995],[-99.3354386059999,-75.076348566],[-99.32787024599995,-75.05413176899985],[-99.32896887899989,-75.00701262799986],[-99.32310950399994,-74.9743791649999],[-99.32396399599986,-74.96257903399993],[-99.3340958319999,-74.95159270599996],[-99.3834122389999,-74.92669036299993],[-99.43846594999987,-74.91326262799994],[-99.6020401679999,-74.94654713299992],[-99.63048255099991,-74.94597747199997],[-99.74128170499996,-74.92489999799994],[-99.88442949099995,-74.92197031],[-100.10509192599989,-74.94312916499993],[-100.34105383999987,-74.92652760199996],[-100.52228756399984,-74.89088307099983],[-100.53636633999987,-74.88437265400002],[-100.54381262899994,-74.87371184699998],[-100.53693600199993,-74.85800546699993],[-100.52863521999986,-74.85523853999996],[-100.36310787699996,-74.8404273419999],[-100.30744381399985,-74.8430315079999],[-100.20384680899993,-74.86012135199994],[-100.14915930899988,-74.85914478999996],[-100.0833634109999,-74.84612395599989],[-100.05699622299991,-74.83196379999995],[-100.03197180899988,-74.80681731599988],[-100.01231848899995,-74.79566822699985],[-99.91930091099988,-74.76978932099993],[-99.96532141799992,-74.74480559699991],[-100.01060950399993,-74.73186614399992],[-100.11017818899991,-74.71624114399994],[-100.1070857409999,-74.71111419099992],[-100.07713782499985,-74.69117603999993],[-100.05125891799993,-74.67839934699998],[-100.03941809799989,-74.66920338299992],[-100.01789303299995,-74.64364999800003],[-100.0401912099999,-74.63738372199997],[-100.11343339799994,-74.63103606599995],[-100.08507239499991,-74.61077239399985],[-100.05280514199988,-74.60173919099994],[-99.87661699099995,-74.57732512799998],[-99.81578528599994,-74.53785572699992],[-99.8008520169999,-74.53671640399998],[-99.81672115799992,-74.52605559699995],[-99.83315995999992,-74.52223072699994],[-99.85049394399991,-74.52288176899998],[-99.8689672519999,-74.52597421699997],[-99.88194739499993,-74.52459075299998],[-99.9131973949999,-74.51189544099991],[-99.92813066299993,-74.50774504999998],[-100.00621497299996,-74.51116301899998],[-100.03197180899988,-74.50839609199994],[-100.04771887899996,-74.50261809699988],[-100.09260006399988,-74.47966887799998],[-100.11172441299995,-74.47486744599989],[-100.13072669199994,-74.47340260199994],[-100.24640865799996,-74.48967864399997],[-100.33047441299992,-74.48064544099995],[-100.39981035099989,-74.48267994599989],[-100.42247473899992,-74.47722747199994],[-100.43578040299984,-74.475681248],[-100.46532141799992,-74.48211028400002],[-100.47972571499987,-74.48333098799985],[-100.5410050119999,-74.48056405999998],[-100.59951738199996,-74.48455169099994],[-100.9273168609999,-74.55055103999987],[-101.39590410099996,-74.50269947699987],[-101.4626358709999,-74.47625090899997],[-101.41710364499994,-74.45525481599994],[-101.39590410099996,-74.4423153629999],[-101.3771866529999,-74.4255510399999],[-101.40355383999987,-74.42164478999992],[-101.42422441299989,-74.41277434699995],[-101.43431555899987,-74.39723072699996],[-101.42870032499987,-74.37428150799997],[-101.41193600199995,-74.35588958099993],[-101.38947506399985,-74.34392669099998],[-101.34227454299987,-74.32708098799999],[-101.3066300119999,-74.30657317499985],[-101.29832923099994,-74.29729583099999],[-101.29352779899995,-74.28476327899998],[-101.2950333319999,-74.27483489399998],[-101.30565344999985,-74.27288176899985],[-101.36554928299998,-74.28118254999993],[-101.42638098899991,-74.279961847],[-101.4061173169999,-74.268324477],[-101.38048255099993,-74.25807057099996],[-101.35993404899997,-74.24529387799993],[-101.35496985599991,-74.22576262799986],[-101.36546790299988,-74.19890715899994],[-101.38219153599992,-74.17595794099988],[-101.40501868399986,-74.16008879999984],[-101.43370520699989,-74.15447356599985],[-101.42711341099994,-74.12900155999992],[-101.43919837099993,-74.11646900799992],[-101.48713131399985,-74.10279713299991],[-101.51431230399994,-74.08945077899998],[-101.53514563699993,-74.07317473799995],[-101.54942786399992,-74.05193450299997],[-101.55679277299993,-74.02304452899995],[-101.58922278599991,-74.00017669099995],[-101.6583552729999,-73.99529387799988],[-101.7859594389999,-74.00351327899998],[-101.90143795499996,-73.99724700299993],[-102.06371008999992,-73.95745208099993],[-102.22940019399996,-73.96249765399988],[-102.39366614499993,-73.93181731599988],[-102.73326575399996,-73.93718840899993],[-102.84862219999987,-73.92156340899994],[-102.8963923819999,-73.90211353999995],[-102.92332923099987,-73.85751718499996],[-102.88272050699987,-73.81658294099985],[-102.82217363199989,-73.780043227],[-102.78897050699987,-73.74879322699984],[-102.8039444649999,-73.71697356599998],[-102.84609941299995,-73.70110442499995],[-102.96190344999985,-73.6862932269999],[-102.97826087099986,-73.68222421700003],[-102.98688717399995,-73.67498137799991],[-102.9871313139999,-73.65504322699984],[-102.98224850199992,-73.63665129999987],[-102.98265540299985,-73.62102629999997],[-102.99864661399994,-73.60963307099993],[-102.95099850199996,-73.58912525799997],[-102.88975989499993,-73.585544529],[-102.40086829349993,-73.61097584399992],[-101.91197669199993,-73.63640715899992],[-101.80052649599992,-73.66326262799993],[-101.38536536399988,-73.66716887800001],[-101.3603409499999,-73.67017994599983],[-101.27342688699989,-73.69557057099993],[-101.26374264199984,-73.70077890400002],[-101.25918535099989,-73.709161066],[-101.26097571499989,-73.72258879999998],[-101.26085364499991,-73.73853932099989],[-101.25059973899987,-73.74830494599993],[-101.2345271479999,-73.75457122199998],[-101.16392981699994,-73.77068450299996],[-100.89799964099988,-73.77642180799992],[-100.63206946499993,-73.7821591129999],[-100.62059485599988,-73.77898528399993],[-100.61204993399987,-73.77239348799995],[-100.5967504549999,-73.7536760399999],[-100.5872289699999,-73.74749114399992],[-100.57420813699991,-73.74586353999989],[-100.53355872299993,-73.75188567499991],[-100.51817786399988,-73.74911874799994],[-100.49889075399994,-73.73601653399989],[-100.48574785099989,-73.73023853999983],[-100.45860755099996,-73.72616952899996],[-100.16301428949993,-73.72962818799996],[-99.86742102799988,-73.73308684699994],[-99.66860917899989,-73.70240650799985],[-99.58454342399993,-73.70696379999991],[-99.55573482999992,-73.70110442499995],[-99.50059973899988,-73.68206145599996],[-99.47207597599987,-73.67555103999997],[-99.49864661399992,-73.66155364399992],[-99.58592688699991,-73.63486093499998],[-99.4973038399999,-73.61858489399995],[-99.2101130849999,-73.64421965899992],[-98.81436113199987,-73.63225676899998],[-98.85008704299992,-73.60418059699998],[-98.86774654899993,-73.59392669099995],[-98.8912247389999,-73.58847421699993],[-99.18824215399995,-73.56796640449993],[-99.48525956899992,-73.54745859200001],[-99.58771725199992,-73.52263762799996],[-99.55158443899988,-73.49976978999996],[-99.50234941299986,-73.48935312299987],[-99.40558834499987,-73.4865861959999],[-99.60024980399992,-73.44817473799999],[-99.6362198559999,-73.44784921699997],[-99.67174231699995,-73.454196873],[-99.69994055899994,-73.465427342],[-99.71491451699988,-73.46770598799998],[-99.72752844999987,-73.4620093729999],[-99.73045813699989,-73.44841887799994],[-99.71349036399991,-73.41529713299991],[-99.7113337879999,-73.39885833099991],[-99.7200414699999,-73.38339609199998],[-99.73412024599992,-73.37297942499997],[-99.75104732999992,-73.3669572899999],[-99.76805579299989,-73.36419036299992],[-100.21882076699985,-73.35263437333333],[-100.66958574099993,-73.34107838366656],[-101.12035071499993,-73.32952239399995],[-101.21263587099988,-73.31536223799993],[-101.69420325399992,-73.33587004999998],[-101.85659745999993,-73.30445728999996],[-102.22960364499991,-73.31760019349987],[-102.60260982999989,-73.33074309699988],[-102.87364661399997,-73.30820077899998],[-102.88589433499993,-73.30364348799995],[-102.8934220039999,-73.29697030999998],[-102.90021725199992,-73.28915781],[-102.91014563699993,-73.28101978999989],[-102.98688717399995,-73.23796965899994],[-103.04405676999993,-73.22454192499995],[-103.11750240799984,-73.18596770599989],[-103.14777584499983,-73.17734140399998],[-103.24693762899987,-73.17083098799998],[-103.26642818899988,-73.16725025799991],[-103.2883194649999,-73.15935637799993],[-103.30671139199985,-73.14714934699995],[-103.31590735599993,-73.130954685],[-103.30748450399996,-73.1163062479999],[-103.28506425699996,-73.10100676899985],[-103.23957271999987,-73.077813409],[-103.24998938699987,-73.06804778399996],[-103.26162675699989,-73.05966562299999],[-103.27440344999992,-73.05291106599988],[-103.28783118399991,-73.04778411299995],[-103.28294837099993,-73.03655364399995],[-103.27684485599987,-73.02581145599994],[-103.26134192599994,-73.00660572699988],[-103.31200110599993,-72.97877369599993],[-103.33385169199997,-72.96152109200001],[-103.35460364499995,-72.93971119599995],[-103.38565019399988,-72.8873023419999],[-103.40379798099988,-72.8635393209999],[-103.42992102799994,-72.84937916499996],[-103.33433997299994,-72.77459075299988],[-103.29857337099993,-72.75758228999983],[-103.04141191299995,-72.70761484199997],[-102.68500729049988,-72.72283294099995],[-102.3286026679999,-72.73805103999993],[-102.26992753799989,-72.754652602],[-102.09398352799991,-72.77174244599993],[-102.11620032499987,-72.78289153399996],[-102.14964758999992,-72.79469166499992],[-102.16881262899989,-72.80982838299984],[-102.14830481699993,-72.83049895599993],[-102.15855872299996,-72.8410783829999],[-102.17048092399989,-72.84978606599998],[-102.18358313699987,-72.85637786299995],[-102.1976619129999,-72.86060963299997],[-102.16120357999995,-72.88030364399992],[-102.1886287099999,-72.8944638],[-102.25983639199991,-72.90162525799997],[-102.29185950399992,-72.9089494769999],[-102.30736243399993,-72.91765715899996],[-102.3204239569999,-72.92693450299993],[-102.33389238199989,-72.93466562300003],[-102.3511449859999,-72.93840911299988],[-102.42756100199989,-72.94036223799992],[-102.43993079299995,-72.94312916499997],[-102.46979732999992,-72.9576962219999],[-102.48485266799995,-72.96209075299998],[-102.55426998599988,-72.96347421699997],[-102.71690833199995,-72.99773528399993],[-102.67674719999994,-73.00530364399998],[-102.37669837149993,-72.99187590949984],[-102.07664954299992,-72.97844817499998],[-101.98399817599994,-72.98699309699992],[-101.99705969999994,-73.03972747199992],[-101.96031653599994,-73.05559661299995],[-101.6787613599999,-73.03451913899983],[-101.39720618399986,-73.0134416649999],[-101.3101700509999,-72.99081796699994],[-101.03805497949992,-72.98341236799986],[-100.76593990799994,-72.97600676899997],[-100.65868079299987,-73.01051197699998],[-100.37686113199989,-73.06585051899988],[-100.31826738199995,-73.06878020599999],[-100.26227779899989,-73.06064218499998],[-100.14195716099995,-73.02263762799988],[-100.1127823559999,-73.01897551899992],[-100.0232641269999,-73.02402109199996],[-99.85358639199988,-72.99553801899995],[-99.68224036399994,-73.01726653400002],[-99.19103959899996,-73.01928069424997],[-98.69983883399989,-73.02129485449993],[-98.2086380689999,-73.0233090147499],[-97.71743730399993,-73.02532317499995],[-97.80223548099991,-73.09189218499995],[-97.83543860599994,-73.11044687299994],[-97.98119055899991,-73.16936614399991],[-97.92882239499991,-73.18840911299992],[-97.87328040299988,-73.19915129999993],[-97.81663977799987,-73.20126718499994],[-97.76113847599993,-73.194105727],[-97.6026098299999,-73.1361630189999],[-97.45018469999988,-73.12371184699997],[-97.41885331899994,-73.12493255],[-97.33507239499994,-73.14934661299993],[-97.30825761599993,-73.15007903399989],[-97.28392493399988,-73.14763762799986],[-97.2543839179999,-73.14812590899992],[-97.22573808499993,-73.1530901019999],[-97.18065344999988,-73.1802710919999],[-97.15656490799994,-73.18596770599989],[-96.99209550699989,-73.19198984199997],[-96.9632055329999,-73.20134856599992],[-96.91209876199991,-73.22918059699988],[-96.7050675119999,-73.26734791499995],[-96.58828691299995,-73.27605559699992],[-96.47496497299989,-73.2994930969999],[-96.15882320849988,-73.31548430799991],[-95.84268144399991,-73.33147551899991],[-95.83128821499993,-73.32496510199991],[-95.82119706899988,-73.31210702899996],[-95.80524654899997,-73.2844377579999],[-95.79458574099992,-73.27564869599983],[-95.74657141799993,-73.25505950299998],[-95.68858801999997,-73.24439869599986],[-95.51134192599989,-73.24480559699995],[-95.39622962099992,-73.22372812299994],[-95.33861243399986,-73.22014739399997],[-95.27830969999991,-73.22714609199994],[-95.26789303299992,-73.22616952899996],[-95.24547278599991,-73.21493905999988],[-95.23379472599993,-73.21103280999996],[-95.19375566299988,-73.20907968500002],[-95.00316321499989,-73.24407317499993],[-94.57799231699988,-73.23552825299991],[-94.53115800699993,-73.24602629999988],[-94.38703365799998,-73.30934010199982],[-94.33580481699993,-73.32154713299991],[-94.13101152299991,-73.31259530999988],[-93.93590247299997,-73.27947356599985],[-93.79881751199991,-73.22275155999996],[-93.77432206899996,-73.21624114399988],[-93.74860592399992,-73.21257903400002],[-93.69701087099986,-73.21233489399988],[-93.65550696499989,-73.22193775799995],[-93.63426673099987,-73.22380950299991],[-93.61628170499995,-73.2165666649999],[-93.61070716099994,-73.2087541649999],[-93.60464433499993,-73.19068775799998],[-93.59902910099993,-73.18303801899995],[-93.58702551999991,-73.17742278399996],[-93.57164466099988,-73.17522551899995],[-93.2971695629999,-73.1841773419999],[-93.02269446499992,-73.19312916499983],[-92.96971594999988,-73.17962004999985],[-92.91722571499992,-73.17302825299997],[-92.86408443899992,-73.15520598799999],[-92.80138098899994,-73.14275481599998],[-92.78929602799994,-73.14324309699994],[-92.76984615799992,-73.14910247199991],[-92.76183020699987,-73.15740325299998],[-92.7557266919999,-73.16741301899988],[-92.7422989569999,-73.17831796699994],[-92.71833248599987,-73.18377044099998],[-92.53986568899987,-73.16611093499986],[-92.24685624899988,-73.17530689899993],[-91.95384680899988,-73.18450286299992],[-91.93366451699983,-73.19117603999996],[-91.92491614499997,-73.20256926899992],[-91.92308508999989,-73.21404387799988],[-91.91930091099995,-73.22421640400002],[-91.85635331899994,-73.25212981599996],[-91.84361731699988,-73.25505950299998],[-91.66299394399988,-73.24521249799987],[-91.38892574749997,-73.27296314899993],[-91.11485755099994,-73.30071379999993],[-91.10350501199986,-73.30348072699998],[-91.09707597599996,-73.31121184699998],[-91.09434973899988,-73.32724374799996],[-91.0890193349999,-73.33464934699997],[-91.0773819649999,-73.33660247199992],[-90.75991777299987,-73.30820077899998],[-90.64891516799986,-73.27760182099996],[-90.62319902299991,-73.27581145599999],[-90.55955969999985,-73.28378671699994],[-90.53429114499987,-73.28020598799988],[-90.36042232999992,-73.22275155999996],[-90.29505570199984,-73.19174653199991],[-90.2066951159999,-73.14983489399985],[-90.1868383449999,-73.14324309699994],[-90.16079667899993,-73.13974374799997],[-90.07030188699989,-73.14299895599993],[-89.94684811099994,-73.12721119599995],[-89.90074622299991,-73.12761809699998],[-89.7996720039999,-73.14373137799996],[-89.74559485599991,-73.14226653399999],[-89.53673255099994,-73.1042619769999],[-89.51203365799995,-73.10540129999993],[-89.44318600199989,-73.12086353999995],[-89.28380286399987,-73.10662200299994],[-89.23029537699998,-73.11126067499995],[-89.26081295499992,-73.08806731599994],[-89.28172766799986,-73.06259531],[-89.28001868399986,-73.0376929669999],[-89.24258378799992,-73.01677825299993],[-89.0879613919999,-72.96005624799994],[-89.07648678299995,-72.95330169099992],[-89.06175696499989,-72.94133879999998],[-89.05406653599994,-72.92913176899992],[-89.06358801999994,-72.92156340899996],[-89.10631262899994,-72.91334400799997],[-89.11925208199997,-72.90252044099988],[-89.11839758999986,-72.88209400799991],[-89.10680091099994,-72.82634856599991],[-89.09951738199993,-72.80836353999996],[-89.1105037099999,-72.76433684699995],[-89.17137610599991,-72.73056405999986],[-89.35826575399994,-72.67701588299987],[-89.42471269399988,-72.64348723799992],[-89.34850012899992,-72.6345354149999],[-88.97350012899989,-72.66046857466662],[-88.59850012899997,-72.68640173433326],[-88.22350012899997,-72.71233489399997],[-88.17349199099992,-72.73211028399992],[-88.13890540299994,-72.76213958099996],[-88.13121497299991,-72.78329843499996],[-88.12852942599993,-72.80527109199997],[-88.12352454299992,-72.8259416649999],[-88.1087540359999,-72.84335702899988],[-88.1957087879999,-72.87664153399996],[-88.28612219999987,-72.89959075299996],[-88.36485755099994,-72.90886809699991],[-88.40632076699985,-72.91838958099999],[-88.43358313699994,-72.93596770599993],[-88.44123287699998,-72.95614999799987],[-88.43276933499993,-72.96941497199997],[-88.39366614499988,-72.99049244599992],[-88.41930091099994,-73.02109140399993],[-88.4553930329999,-73.03826262799996],[-88.71401933499993,-73.11980559699998],[-88.70421301999991,-73.127048435],[-88.61066646999987,-73.1491838519999],[-88.56639563699991,-73.16529713299987],[-88.53563391799992,-73.187107029],[-88.47834225199989,-73.242933852],[-88.44383704299989,-73.26360442499991],[-88.40689042899993,-73.27060312299999],[-88.36913001199984,-73.26588307099989],[-88.2630509109999,-73.22039153399992],[-88.22972571499992,-73.21282317499995],[-88.18683834499987,-73.20891692499995],[-88.15233313699994,-73.20989348799985],[-88.11807206899996,-73.21453215899994],[-88.10252844999988,-73.22031015399992],[-88.07461503799993,-73.2385393209999],[-88.05776933499993,-73.24342213299997],[-87.92149817599994,-73.25269947699994],[-87.88560950399994,-73.24651458099996],[-87.82477779899995,-73.22112395599994],[-87.64879309799997,-73.19451262799998],[-87.50495357999995,-73.20110442499988],[-87.47044837099995,-73.19605885199994],[-87.36754309799994,-73.16952890399998],[-87.34951738199992,-73.16961028399996],[-87.33210201699987,-73.17400481599995],[-87.32355709499983,-73.18425872199988],[-87.33234615799988,-73.20208098799995],[-87.34561113199993,-73.21282317499995],[-87.3603409499999,-73.21900807099993],[-87.39366614499991,-73.22625090899996],[-87.35830644399991,-73.25611744599993],[-87.31843014199993,-73.26864999799994],[-87.18171139199987,-73.27752044099998],[-87.13451087099989,-73.28720468499995],[-87.11074785099987,-73.30974700299993],[-87.13345292899993,-73.35247161299995],[-87.0899958979999,-73.36712004999995],[-87.04133053299995,-73.37721119599983],[-86.94652258999989,-73.38355885199995],[-86.66661536399997,-73.37200286299992],[-86.59459387899992,-73.34880950299998],[-86.46035722599989,-73.33733489399995],[-86.43370520699995,-73.32773202899986],[-86.41388912699995,-73.31194426899992],[-86.38548743399991,-73.27459075299996],[-86.36774654899992,-73.2627906229999],[-86.34349524599995,-73.257989191],[-86.31700598899997,-73.257989191],[-86.2914119129999,-73.26311614399992],[-86.2701309889999,-73.27361419099998],[-86.24925696499986,-73.27988046699994],[-86.22227942599989,-73.27760182099996],[-86.07119706899996,-73.24732838299997],[-85.98607337099986,-73.20183684699991],[-85.88683020699992,-73.17693450299996],[-85.78258216099994,-73.16912200299988],[-85.6786189439999,-73.17750416499993],[-85.58039303299995,-73.20045338299983],[-85.64395097599993,-73.21355559699998],[-85.65859941299992,-73.22210051899992],[-85.66856848899994,-73.241143488],[-85.66490637899989,-73.25505950299998],[-85.65257727799994,-73.26458098799998],[-85.61042232999989,-73.276625258],[-85.59471594999994,-73.28346119599992],[-85.58458411399997,-73.29631926899985],[-85.57530676999991,-73.32073333099999],[-85.5640763009999,-73.33489348799992],[-85.54531816299995,-73.34295012799986],[-85.50373287699996,-73.35295989399992],[-85.54287675699993,-73.37184010199996],[-85.53160559799994,-73.38534921699994],[-85.51667232999989,-73.38787200299996],[-85.49982662699989,-73.387627863],[-85.48298092399988,-73.39267343500003],[-85.45913652299988,-73.40569426899992],[-85.43984941299996,-73.41008879999991],[-85.41999264199987,-73.40683359199987],[-85.39419511599992,-73.39690520599996],[-85.36717688699989,-73.39202239399998],[-85.33950761599988,-73.39625416499992],[-85.22940019399996,-73.44068775799984],[-85.16930091099988,-73.45663827900003],[-85.10147050699987,-73.48707447699998],[-85.05402584499986,-73.49163176899984],[-85.00942949099988,-73.50269947699996],[-84.91917883999986,-73.51327890399993],[-84.85033118399987,-73.53232187300001],[-84.46690833199992,-73.56943124800003],[-84.17747962099992,-73.55722421699987],[-84.13353430899988,-73.54998137799993],[-84.11302649599992,-73.54957447699994],[-84.04100501199989,-73.56796640399996],[-84.01911373599994,-73.56503671699994],[-83.97264563699991,-73.54989999799994],[-83.94896399599989,-73.54599374799996],[-83.92772376199991,-73.54900481599995],[-83.8858536449999,-73.56275807099996],[-83.86461341099991,-73.56536223799998],[-83.75169837099995,-73.56023528399996],[-83.75202389199987,-73.61256275799995],[-83.75975501199989,-73.63494231599988],[-83.78526770699997,-73.64202239399994],[-83.81183834499993,-73.64120859199993],[-83.83608964799993,-73.64495208099996],[-83.8590388659999,-73.6534156229999],[-83.88158118399988,-73.66668059699991],[-83.86660722599996,-73.67913176899995],[-83.82713782499988,-73.68564218500002],[-83.80874589799993,-73.69378020599996],[-83.81314042899993,-73.6970354149999],[-83.81769771999987,-73.70891692499995],[-83.82038326699987,-73.72283294099994],[-83.81920325399992,-73.73284270600001],[-83.80931555899991,-73.74130624799996],[-83.7967016269999,-73.74358489399992],[-83.69102942599989,-73.72665780999995],[-83.66576087099992,-73.72844817499993],[-83.65733801999987,-73.73398202899995],[-83.64061438699986,-73.75074635199996],[-83.63166256399992,-73.75221119599993],[-83.57835852799985,-73.7346330709999],[-83.55345618399991,-73.73064544099992],[-83.54320227799991,-73.73251718499996],[-83.53026282499987,-73.73837655999994],[-83.51919511599993,-73.73707447699994],[-83.50767981699991,-73.72673919099992],[-83.48863684799991,-73.70191822699996],[-83.45010331899994,-73.68523528399993],[-83.39614824099993,-73.68759530999998],[-83.29576575399993,-73.7061499979999],[-82.93370520699995,-73.71038176899992],[-82.71426347599993,-73.74423593499998],[-82.67398027299996,-73.7701148419999],[-82.64948482999992,-73.77166106599994],[-82.60118567599991,-73.76873137799991],[-82.34829667899993,-73.82634856599998],[-82.27489173099991,-73.85963307099996],[-82.20921790299991,-73.88005950299986],[-82.13707434799991,-73.88974374799999],[-82.06476803299995,-73.88697682099995],[-81.99840247299991,-73.8703752579999],[-81.91515051999997,-73.82626718499998],[-81.89268958199995,-73.81829192499984],[-81.8730362619999,-73.81780364399994],[-81.7884008449999,-73.82756926899998],[-81.7071833979999,-73.82683684699994],[-81.23399817599991,-73.73023853999983],[-81.18468176999991,-73.70419687299994],[-81.14683997299997,-73.66594817499998],[-81.12559973899988,-73.62135182099983],[-81.11164303299992,-73.60442473799985],[-81.0862524079999,-73.59449635199994],[-81.11546790299992,-73.56951262800001],[-81.15501868399987,-73.55510833099986],[-81.23631751199986,-73.53639088299997],[-81.27257239499995,-73.52174244599996],[-81.30626380099997,-73.502129816],[-81.32823645699989,-73.480075779],[-81.3355199859999,-73.45728932099988],[-81.3321020169999,-73.43320077899996],[-81.3109431629999,-73.37737395599989],[-81.30947831899994,-73.35361093499998],[-81.32266191299988,-73.33562590899993],[-81.35545813699989,-73.32382577899998],[-81.31118730399993,-73.27304452900002],[-81.23468990799995,-73.24797942499991],[-81.14928137899992,-73.23992278399999],[-80.81017005099987,-73.26311614399992],[-80.77456620999993,-73.27597421699993],[-80.76056881399987,-73.28557708099993],[-80.73957271999991,-73.30730559699998],[-80.72740637899994,-73.31698984199996],[-80.70929928299992,-73.32439544099985],[-80.61196855399996,-73.33375416499997],[-80.39378821499994,-73.41423919099995],[-80.27139238199986,-73.42253997199992],[-80.23253333199995,-73.41765715899996],[-80.19684811099992,-73.40195077899999],[-80.22545325399992,-73.39959075299994],[-80.32469641799993,-73.36256275799991],[-80.35179602799988,-73.34547291499996],[-80.35692298099988,-73.33416106599998],[-80.35732988199986,-73.32382577899998],[-80.35667883999994,-73.31308359199987],[-80.35814368399988,-73.30095794099996],[-80.36384029899997,-73.28639088299994],[-80.41787675699987,-73.20794036299998],[-80.4367569649999,-73.18816497199997],[-80.46426347599993,-73.173760675],[-80.50694739499994,-73.160332941],[-80.51939856699988,-73.15325286299995],[-80.5521541009999,-73.1163062479999],[-80.56419837099992,-73.109795831],[-80.62376868399991,-73.09823984199997],[-80.6509903639999,-73.08440520599989],[-80.6588028639999,-73.06194426899998],[-80.65859941299996,-73.04599374799997],[-80.66266842399992,-73.03427499799997],[-80.66437740799992,-73.02288176899992],[-80.65709387899992,-73.00807057099995],[-80.64647376199989,-72.99675872199995],[-80.6341853509999,-72.98748137799991],[-80.62071692599991,-72.98007577900002],[-80.60631262899994,-72.97478606599995],[-80.49254309799987,-72.95330169099992],[-80.37767493399988,-72.949965102],[-80.01256262949991,-72.99431731549988],[-79.64745032499987,-73.03866952899988],[-79.62559973899991,-73.04851653399999],[-79.58141028599994,-73.079522394],[-79.23253333199989,-73.19557057099986],[-79.14256751199991,-73.24724700299998],[-79.09227454299993,-73.26531340899992],[-78.99201412699995,-73.28679778399994],[-78.93492591099995,-73.28948333099993],[-78.91860917899993,-73.29273853999996],[-78.88133704299986,-73.31080494599989],[-78.78189042899986,-73.33798593499998],[-78.74404863199993,-73.36492278399996],[-78.7425024079999,-73.41334400799987],[-78.76374264199987,-73.44548919099992],[-78.79308020699987,-73.46697356599995],[-78.8246150379999,-73.48512135199994],[-78.85260982999992,-73.50750090899996],[-78.86050370999986,-73.51962655999995],[-78.86082923099991,-73.52792734199994],[-78.85838782499988,-73.53443775799994],[-78.85814368399994,-73.54159921699997],[-78.87181555899987,-73.58318450299996],[-78.86742102799988,-73.59929778399993],[-78.84496008999989,-73.60881926899992],[-78.78270423099988,-73.61174895599994],[-78.58462480399993,-73.58212656],[-78.52892005099991,-73.56064218499988],[-78.5013728509999,-73.55657317499991],[-78.20124264199987,-73.55632903399996],[-77.9732559889999,-73.52353280999995],[-77.8518774079999,-73.52255624799997],[-77.53115800699993,-73.46746184699992],[-77.50084387899994,-73.46656666499993],[-77.44196529899997,-73.47234465899999],[-77.36046301999994,-73.50359465899996],[-77.3312068349999,-73.50839609199987],[-77.24404863199987,-73.51262786299998],[-77.21458899599989,-73.50920989399988],[-77.16087805899991,-73.49277109199997],[-77.11025956899994,-73.47063567499998],[-77.07921301999991,-73.46249765399998],[-76.87975012899997,-73.45859140399998],[-76.84666907499992,-73.46493906],[-76.78010006399992,-73.48902760199994],[-76.71825110599985,-73.52353280999995],[-76.69871985599988,-73.547539972],[-76.7054744129999,-73.57154713299994],[-76.72817949099996,-73.59172942499988],[-76.94090735599991,-73.66790129999985],[-76.9552302729999,-73.67766692499998],[-76.98184160099996,-73.70045338299991],[-76.99478105399996,-73.70867278399992],[-77.24242102799985,-73.81243254999998],[-77.2058813139999,-73.83424244599986],[-77.12242591099991,-73.87078215899999],[-77.08079993399986,-73.87932708100001],[-77.04849199099993,-73.87835051899985],[-77.01976477799988,-73.870700779],[-76.93130449099993,-73.83269622199991],[-76.77830969999985,-73.79029713299992],[-76.60387122299991,-73.7873674459999],[-76.57860266799989,-73.79021575299994],[-76.53453528599997,-73.81080494599996],[-76.5098363919999,-73.81585051899991],[-76.30284583199989,-73.82341887799996],[-76.27721106699991,-73.82089609199994],[-76.26353919199988,-73.81414153399999],[-76.23810787699998,-73.79363372199995],[-76.22459876199989,-73.78590260199994],[-76.21174068899995,-73.78281015399995],[-75.96605383999992,-73.75164153399996],[-75.95274817599991,-73.74578215899993],[-75.94082597599987,-73.73845794099992],[-75.92393958199997,-73.731215102],[-75.89781653599991,-73.72714609199994],[-75.81607011599993,-73.73064544099992],[-75.70726477799991,-73.71209075299993],[-75.67870032499994,-73.71054452899998],[-75.59337317599997,-73.71591562300003],[-75.56069902299991,-73.71379973799992],[-75.53294837099986,-73.70810312299994],[-75.35667883999986,-73.63551197699994],[-75.31273352799991,-73.62493254999998],[-75.26813717399995,-73.62118905999995],[-74.90762285099987,-73.64234791499996],[-74.78172766799992,-73.66920338299994],[-74.73802649599992,-73.68816497199995],[-74.70152747299997,-73.71477629999997],[-74.66283118399991,-73.73528411299995],[-74.61229407499991,-73.73609791499996],[-74.51280676999994,-73.716892185],[-74.4918513659999,-73.70769622199994],[-74.45372473899991,-73.68499114399998],[-74.43333899599995,-73.6758765599999],[-74.41161048099988,-73.67156340899999],[-74.34113521999987,-73.67351653399986],[-74.27717037699998,-73.66269296699994],[-74.25780188699986,-73.665459894],[-74.10513261599989,-73.716078383],[-74.02529863199987,-73.7238908829999],[-73.9491267569999,-73.70964934699998],[-73.8635147779999,-73.66659921699994],[-73.80264238199989,-73.65862395599999],[-73.76943925699987,-73.64869557099999],[-73.73863684799991,-73.63404713299997],[-73.68651282499988,-73.58904387799998],[-73.65729732999992,-73.58326588299994],[-73.62669837099992,-73.59270598799995],[-73.59203040299994,-73.6110979149999],[-73.59919186099997,-73.62802499799997],[-73.58946692599991,-73.64031340899993],[-73.57286536399995,-73.645196222],[-73.55907141799986,-73.64055754999988],[-73.51520748599992,-73.59392669099995],[-73.49746660099993,-73.58196379999991],[-73.45042883999992,-73.56503671699994],[-73.40518144399988,-73.56259531],[-73.31029212099995,-73.569594008],[-73.22850501199984,-73.55974700299987],[-73.20714270699992,-73.54843515399999],[-73.15819251199994,-73.48406340899999],[-73.13906816299996,-73.46892669099998],[-73.11876380099994,-73.45769622199997],[-73.09683183499993,-73.44980234200001],[-73.07310950399992,-73.44443124799987],[-72.82892818899992,-73.44378020599991],[-72.64342200399997,-73.46965911299992],[-72.51353919199991,-73.46087004999995],[-72.42906653599997,-73.46998463299994],[-72.38451087099989,-73.46982187299997],[-72.35578365799992,-73.45403411299985],[-72.41734778599988,-73.43613046699996],[-72.23924719999991,-73.38884856599992],[-72.0016169909999,-73.37330494599983],[-71.86363684799991,-73.37883879999985],[-71.74933834499987,-73.35165780999994],[-71.54238847599987,-73.36126067499991],[-71.4229630199999,-73.35377369599993],[-71.06200110599994,-73.26637135199995],[-70.88292395699989,-73.25603606599995],[-70.50772050699992,-73.27548593499995],[-70.45287024599992,-73.26873137799993],[-70.42642167899993,-73.2692196589999],[-70.34675045499996,-73.29045989399998],[-70.31843014199993,-73.29485442499988],[-70.29295813699991,-73.29338958100001],[-69.91885331899991,-73.21851978999995],[-69.62791907449997,-73.19931406049994],[-69.33698482999995,-73.18010833099993],[-68.91673743399991,-73.10361093499994],[-68.84154212099992,-73.11223723799985],[-68.77969316299993,-73.10800546700001],[-68.66734778599994,-73.0881486959999],[-68.64488684799991,-73.07976653399996],[-68.62083899599989,-73.06519947699984],[-68.59675045499995,-73.05738697699994],[-68.53750566299986,-73.05380624799987],[-68.46686764199993,-73.01572030999998],[-68.20468095599989,-72.971937758],[-67.94249426999997,-72.92815520599994],[-67.91307532499988,-72.91806405999998],[-67.83690344999991,-72.86956145599997],[-67.78892981699991,-72.85369231599988],[-67.76402747299997,-72.85068124799997],[-67.73875891799992,-72.85214609200003],[-67.7132869129999,-72.8601213519999],[-67.68814042899993,-72.87118906],[-67.66270911399991,-72.87786223799998],[-67.63621985599985,-72.87273528399994],[-67.60952714799993,-72.86077239399992],[-67.58682206899988,-72.85328541499996],[-67.53555253799993,-72.84514739399995],[-67.5110977859999,-72.834079685],[-67.51520748599995,-72.81454843499994],[-67.52896074099986,-72.79094817499997],[-67.53380286399994,-72.76816171699997],[-67.52940833199997,-72.76555754999997],[-67.5072322259999,-72.74098072699987],[-67.50405839799993,-72.736423435],[-67.49278723899992,-72.73023853999995],[-67.45295162699995,-72.71412525799997],[-67.37531490799991,-72.66464609199993],[-67.26642818899992,-72.62102629999993],[-67.22191321499994,-72.59368254999985],[-67.22061113199993,-72.58733489399992],[-67.21841386599993,-72.55396900799994],[-67.21996008999989,-72.518649998],[-67.21841386599993,-72.50025807099996],[-67.20881100199993,-72.48267994599993],[-67.18956458199992,-72.4611955709999],[-67.15127519399988,-72.42888762799998],[-67.13857988199993,-72.42327239399998],[-67.0953669909999,-72.41277434700001],[-67.08381100199989,-72.40691497199997],[-67.05284583199995,-72.38079192500001],[-66.99941972599993,-72.36248137799996],[-66.97826087099992,-72.34954192499985],[-66.97252356699993,-72.30828215899999],[-66.95738684799994,-72.29900481599985],[-66.93919837099986,-72.29143645599999],[-66.92804928299994,-72.27752044099992],[-66.92772376199991,-72.26140715899994],[-66.93024654899992,-72.24830494599996],[-66.92951412699989,-72.23626067499995],[-66.91942298099994,-72.22380950299986],[-66.9027400379999,-72.21331145599997],[-66.81224524599995,-72.17164478999983],[-66.79051673099988,-72.15740325299991],[-66.77171790299991,-72.139255467],[-66.75084387899994,-72.11305103999997],[-66.74795488199993,-72.09205494599993],[-66.76113847599987,-72.06991952899995],[-66.77814693899991,-72.04713307099993],[-66.78648841099991,-72.02532317499988],[-66.77904212099992,-71.985446873],[-66.78164628799993,-71.97437916499996],[-66.7921443349999,-71.96062590899986],[-66.80016028599994,-71.95549895599993],[-66.80968176999994,-71.95338307099993],[-66.82506262899997,-71.94801197699996],[-66.83893795499995,-71.94540780999988],[-66.84870357999989,-71.94670989399988],[-66.85570227799988,-71.94459400799987],[-66.86115475199992,-71.93157317499988],[-66.86546790299991,-71.91472747199988],[-66.86929277299991,-71.90748463299994],[-66.89004472599993,-71.89812590899992],[-66.91657467399989,-71.89031340899993],[-66.97069251199989,-71.88600025799992],[-66.99502519399992,-71.87712981599988],[-67.18126380099994,-71.7668596329999],[-67.16222083199995,-71.76132577899998],[-67.10289466099987,-71.7530249979999],[-67.14216061099998,-71.7225888],[-67.42414303299992,-71.62053801899995],[-67.48131262899992,-71.58709075299998],[-67.50108801999991,-71.54029713299983],[-67.52472896999987,-71.5075822899999],[-67.57848059799991,-71.47437916499989],[-67.6226293609999,-71.43336353999996],[-67.61742102799991,-71.37721119599996],[-67.60114498599995,-71.35320403399993],[-67.59186764199991,-71.34343840899989],[-67.56700598899997,-71.32561614399991],[-67.53624426999988,-71.29615650799984],[-67.49909420499998,-71.28085702899988],[-67.49046790299988,-71.27239348799992],[-67.48192298099985,-71.25807057099993],[-67.47297115799992,-71.2483049459999],[-67.4610896479999,-71.24228280999998],[-67.44395911399994,-71.23894622199995],[-67.45832271999993,-71.22226327900002],[-67.4864802729999,-71.21306731599995],[-67.54458574099996,-71.20745208099996],[-67.52306067599994,-71.19882577899995],[-67.45815995999996,-71.18987395599993],[-67.46727454299995,-71.16725025799987],[-67.50666256399992,-71.13144296699994],[-67.51402747299994,-71.11126067500001],[-67.49840247299994,-71.09075286299995],[-67.46572831899991,-71.07854583099999],[-67.40143795499998,-71.07048919099995],[-67.42088782499988,-71.05535247199994],[-67.42528235599987,-71.03622812299997],[-67.42003333199997,-71.01482512799993],[-67.41112219999985,-70.99285247199992],[-67.51219641799986,-70.95322030999998],[-67.52489173099991,-70.9413388],[-67.55125891799992,-70.90886809699995],[-67.5698949859999,-70.89674244599996],[-67.61310787699989,-70.88005950299991],[-67.63121497299991,-70.86874765400003],[-67.64268958199995,-70.85475025799997],[-67.65998287699995,-70.82244231599995],[-67.67039954299995,-70.80730559699994],[-67.69139563699989,-70.78736744599996],[-67.7012426419999,-70.77532317499995],[-67.70457923099994,-70.76336028399993],[-67.69489498599998,-70.7483049459999],[-67.67813066299996,-70.73479583099993],[-67.66759192599989,-70.71998463299997],[-67.6839900379999,-70.68759530999995],[-67.68008378799989,-70.67408619599989],[-67.67381751199986,-70.6589494769999],[-67.6744685539999,-70.63982512800001],[-67.68358313699987,-70.62615325299987],[-67.75926673099987,-70.55396900799998],[-67.79246985599988,-70.53191497199997],[-67.84634355399992,-70.51034921699997],[-67.85586503799993,-70.50090911299996],[-67.8841039699999,-70.44378020599999],[-67.90050208199989,-70.39039478999992],[-67.92153886599993,-70.34889088299994],[-67.94937089799988,-70.31178150799994],[-67.9803767569999,-70.287692967],[-67.98729407499991,-70.28630950299993],[-68.01276607999992,-70.28622812299994],[-68.02415930899988,-70.28240325299993],[-68.0413305329999,-70.26775481599992],[-68.05138098899997,-70.261325779],[-68.06859290299988,-70.25554778399986],[-68.19066321499994,-70.234958592],[-68.20628821499992,-70.22486744599995],[-68.23542232999998,-70.19019947699996],[-68.25186113199987,-70.17636484199997],[-68.27159583199992,-70.16399504999993],[-68.28579667899993,-70.15203215899999],[-68.30577551999991,-70.12249114399985],[-68.32310950399989,-70.10914478999993],[-68.3434138659999,-70.10084400799994],[-68.42796790299991,-70.08652109199987],[-68.45055091099991,-70.0777320289999],[-68.47130286399991,-70.06585051899995],[-68.48375403599991,-70.05266692499998],[-68.48643958199989,-70.03281015399999],[-68.48322506399992,-70.00611744599996],[-68.47496497299994,-69.98235442499997],[-68.46263587099989,-69.97063567499998],[-68.47720292899993,-69.95175546699994],[-68.48729407499991,-69.93482838299997],[-68.48729407499991,-69.91790129999998],[-68.47191321499986,-69.89861419099995],[-68.45384680899994,-69.88892994599999],[-68.43236243399991,-69.88420989399998],[-68.38951575399992,-69.88014088299984],[-68.38011633999989,-69.86931731599992],[-68.37901770699993,-69.84693775799991],[-68.39297441299993,-69.77353281],[-68.39061438699989,-69.76165129999985],[-68.36241614499987,-69.71697356599998],[-68.35741126199986,-69.70086028399992],[-68.36188717399992,-69.68336353999996],[-68.37604732999995,-69.66920338299992],[-68.39671790299985,-69.65911223799998],[-68.48314368399986,-69.63836028399989],[-68.49828040299985,-69.62835051899998],[-68.50609290299994,-69.60784270599994],[-68.51512610599985,-69.59905364399988],[-68.57201087099989,-69.58635833099991],[-68.58580481699991,-69.57284921699994],[-68.60448157499987,-69.53883228999992],[-68.62193762899994,-69.52353280999995],[-68.63833574099993,-69.51628997199992],[-68.67808997299994,-69.50432708099999],[-68.73180091099991,-69.48113372199995],[-68.74502519399994,-69.4719377579999],[-68.75743567599997,-69.45476653399996],[-68.76878821499994,-69.44622161299995],[-68.82485917899987,-69.43132903399999],[-68.81395423099991,-69.41106536299998],[-68.80695553299992,-69.403985284],[-68.65379798099985,-69.38209400799998],[-68.46666419199995,-69.38339609199997],[-68.36790930899991,-69.403985284],[-68.33462480399993,-69.40683359199987],[-68.30882727799991,-69.403985284],[-68.29556230399996,-69.39983489399998],[-68.28917395699995,-69.39316171699993],[-68.28465735599988,-69.36435312299999],[-68.28587805899991,-69.34986744599993],[-68.29344641799986,-69.340915623],[-68.32526607999988,-69.32170989399995],[-68.33238684799994,-69.303806248],[-68.31639563699994,-69.28932057099986],[-68.27887936099992,-69.28134530999989],[-68.24453691299988,-69.28590260199994],[-68.18203691299993,-69.31365325299993],[-68.15196692599989,-69.31861744599996],[-68.11611894399991,-69.31780364399995],[-68.09959876199991,-69.32122161299988],[-68.08348548099994,-69.32919687299993],[-68.06802324099993,-69.33326588299998],[-68.00877844999994,-69.3270809879999],[-68.00153561099992,-69.36598072699991],[-67.95327714799987,-69.37460702899999],[-67.85578365799995,-69.36353932099998],[-67.80687415299985,-69.36874765399996],[-67.52749589799993,-69.43368905999995],[-67.49327551999994,-69.45378997199997],[-67.4588110019999,-69.48609791499983],[-67.43846594999991,-69.49960702899998],[-67.41787675699987,-69.505954685],[-67.39232337099989,-69.50269947699995],[-67.35326087099995,-69.48113372199995],[-67.30821692599993,-69.46786874800003],[-67.28429114499991,-69.4569638],[-67.27440344999988,-69.44378020599991],[-67.29369055899991,-69.43092213299998],[-67.31794186099992,-69.42205169099985],[-67.33503170499995,-69.41033294099995],[-67.3391820949999,-69.39478932099995],[-67.32437089799993,-69.37468840899999],[-67.31501217399988,-69.370700779],[-67.30431067599997,-69.36939869599983],[-67.29499264199993,-69.36712004999995],[-67.28978430899991,-69.359958592],[-67.27936764199993,-69.30966562299994],[-67.26964270699989,-69.287855727],[-67.25304114499994,-69.273044529],[-67.23204505099989,-69.26384856599995],[-67.20909583199989,-69.25904713299987],[-67.00959225199996,-69.26246510199996],[-66.89403235599991,-69.23235442499994],[-66.87462317599991,-69.22087981599998],[-66.85985266799992,-69.20240650799997],[-66.84455318899994,-69.17546965899997],[-66.87328040299991,-69.16350676899988],[-66.92756100199995,-69.13307057099992],[-66.9563695949999,-69.12249114399995],[-66.93521074099988,-69.10979583099999],[-66.91051184799991,-69.1003557269999],[-66.83397376199991,-69.08928801899995],[-66.7842504549999,-69.07203541499993],[-66.75914466099994,-69.07122161299992],[-66.78929602799985,-69.03606536299996],[-66.84203040299985,-69.03508879999998],[-66.89976966099988,-69.04697031000003],[-66.94497636599993,-69.05038827899995],[-66.92072506399992,-69.03004322699987],[-66.89073645699997,-69.01392994599989],[-66.85850989499994,-69.00286223799995],[-66.82705644399991,-68.99749114399998],[-66.84496008999989,-68.97291432099998],[-66.87816321499989,-68.96445077900003],[-67.27326412699995,-68.94329192499993],[-67.3500056629999,-68.91627369599989],[-67.45563717399993,-68.86581796699987],[-67.47199459499987,-68.85475025799983],[-67.48070227799992,-68.8418921849999],[-67.47769120999993,-68.82390715899996],[-67.46275794199991,-68.81454843500002],[-67.38418535099987,-68.79338958099991],[-67.0565486319999,-68.78582122199987],[-67.03799394399991,-68.78753020599989],[-67.01618404899995,-68.7857398419999],[-66.99640865799992,-68.77597421699994],[-66.95921790299992,-68.74814218499999],[-66.97744706899991,-68.73463307099983],[-66.9839574859999,-68.71965911299998],[-66.98814856699994,-68.70378997199994],[-66.99950110599991,-68.6880835919999],[-67.00572669199997,-68.6716447899999],[-67.00348873599998,-68.62883879999991],[-67.01463782499991,-68.61467864399997],[-67.10301673099985,-68.5818010399999],[-67.14818274599989,-68.55730559699995],[-67.17471269399996,-68.52532317499995],[-67.16315670499992,-68.48984140399998],[-67.11294511599993,-68.47673919099991],[-66.98912512899992,-68.47779713299987],[-66.96768144399995,-68.47210051899998],[-66.95164954299989,-68.46070728999983],[-66.94078528599991,-68.42506275799997],[-66.92149817599994,-68.41806405999998],[-66.87425696499989,-68.41814544099995],[-66.92784583199989,-68.40016041499993],[-66.95384680899988,-68.38616301899997],[-66.95913652299996,-68.36744557099989],[-66.94131425699987,-68.35816822699992],[-66.91112219999985,-68.35881926899997],[-66.86066646999984,-68.36760833099996],[-66.9044490229999,-68.35182057099992],[-67.06065833199995,-68.33863697699996],[-67.12584387899997,-68.34197356599998],[-67.15225175699995,-68.33180103999986],[-67.16136633999994,-68.31707122199995],[-67.15709387899994,-68.30217864399991],[-67.14439856699997,-68.289646092],[-67.12808183499993,-68.28142669099991],[-67.10822506399995,-68.27809010199996],[-66.76561438699994,-68.31357187299986],[-66.73106848899994,-68.30299244599992],[-66.72004146999987,-68.29420338299994],[-66.70396887899989,-68.27499765399999],[-66.69054114499991,-68.26783619599985],[-66.62507076699995,-68.24667734199993],[-66.6759333979999,-68.19817473799988],[-66.68944251199986,-68.19011809699994],[-66.75251217399995,-68.18889739399992],[-66.79674231699994,-68.19703541499993],[-66.83983313699986,-68.21347421700003],[-66.86025956899994,-68.22519296700001],[-66.8789770169999,-68.23007577899998],[-66.94587154899992,-68.22283294099996],[-66.94688880099996,-68.20077890399988],[-66.98013261599988,-68.17620208099994],[-67.10912024599993,-68.11825937299987],[-67.13988196499992,-68.08993906],[-67.16173255099994,-68.08228932099999],[-67.21056067599994,-68.07512786299995],[-67.19395911399991,-68.06389739399995],[-67.17674719999988,-68.06218840899994],[-67.13951575399992,-68.07000090899993],[-67.11876380099991,-68.07024504999988],[-67.1002498039999,-68.064060154],[-67.06501217399995,-68.04143645599986],[-67.1546931629999,-68.02556731599992],[-67.18028723899997,-68.01620859199997],[-67.19017493399988,-68.00514088299994],[-67.18968665299988,-67.99504973799998],[-67.19310462099989,-67.98748137799993],[-67.24254309799994,-67.97958749799996],[-67.26870683499989,-67.96868254999998],[-67.01545162699992,-67.92506275799997],[-66.87376868399991,-67.91806406],[-66.85057532499987,-67.913669529],[-66.83885657499988,-67.90618254999985],[-66.83397376199991,-67.89267343499988],[-66.83153235599988,-67.86988697699994],[-66.89122473899997,-67.8290341129999],[-66.85757402299996,-67.81389739399991],[-66.82652747299994,-67.80877044099998],[-66.79674231699994,-67.80046965899992],[-66.76707923099987,-67.77516041499996],[-66.80272376199994,-67.77849700299998],[-66.9108780589999,-67.768975519],[-67.0803116529999,-67.77988046699997],[-67.03107662699989,-67.74667734199986],[-67.01602128799988,-67.74114348799984],[-66.77953040299991,-67.72210051899995],[-66.73790442599994,-67.73064544099988],[-66.78026282499994,-67.69622161299985],[-66.91441809799989,-67.70574309699992],[-66.96764075399997,-67.69312916499985],[-66.92320716099997,-67.66155364399995],[-66.81920325399992,-67.60458749799994],[-66.76724199099996,-67.58879973799999],[-66.70710201699995,-67.58635833099996],[-66.59235592399992,-67.60662200299997],[-66.53376217399989,-67.60914478999999],[-66.54332434799997,-67.58424244599986],[-66.54222571499992,-67.57439544099991],[-66.53302975199993,-67.56715260199991],[-66.51817786399991,-67.55038827899998],[-66.51024329299992,-67.52792734199997],[-66.51748613199996,-67.51360442499997],[-66.53514563699989,-67.50741952899993],[-66.55817623599992,-67.50872161299992],[-66.5721736319999,-67.514906508],[-66.59780839799987,-67.53525155999998],[-66.61310787699992,-67.542087498],[-66.63206946499994,-67.54355234199997],[-66.73314368399994,-67.52809010199994],[-66.80089270699997,-67.500583592],[-66.83820553299992,-67.49439869599993],[-66.86119544199991,-67.49358489399992],[-66.97423255099993,-67.46900807099983],[-66.99274654899997,-67.46868254999998],[-67.47215735599991,-67.54900481599991],[-67.59268144399994,-67.55087655999988],[-67.61074785099996,-67.54697030999998],[-67.56688391799989,-67.52166106599994],[-67.5447485019999,-67.51360442499997],[-67.5188695949999,-67.50725676899997],[-67.55353756399998,-67.49114348799999],[-67.58726966099988,-67.48267994599986],[-67.6222224599999,-67.48056405999995],[-67.66079667899996,-67.48284270600001],[-67.53587805899988,-67.35808684699997],[-67.48330644399992,-67.32887135199995],[-67.54600989499993,-67.31047942499991],[-67.5624893869999,-67.2932268209999],[-67.55479895699989,-67.264255467],[-67.53294837099995,-67.23992278399993],[-67.50470943899998,-67.22039153399996],[-67.44383704299989,-67.18938567499993],[-67.48395748599998,-67.1817359349999],[-67.57140051999993,-67.19068775799984],[-67.60773678299995,-67.1783179669999],[-67.59260006399995,-67.16594817499995],[-67.54039466099994,-67.13876718499995],[-67.5049942699999,-67.11199309699985],[-67.47496497299997,-67.0793596329999],[-67.47179114499991,-67.06829192499995],[-67.47565670499992,-67.0603166649999],[-67.47618567599989,-67.05413176899991],[-67.46304277299993,-67.04810963299984],[-67.45441646999993,-67.04680754999991],[-67.44473222599987,-67.04705169099987],[-67.43578040299994,-67.04949309699991],[-67.42918860599988,-67.05445728999996],[-67.4112849599999,-67.07252369599996],[-67.39342200399994,-67.08082447699987],[-67.30308997299994,-67.09929778399989],[-67.28970292899993,-67.09335702899995],[-67.24498450399987,-67.05730559699998],[-67.23253333199997,-67.041761977],[-67.2272029289999,-67.02271900799991],[-67.22549394399991,-66.99260833099996],[-67.21654212099989,-66.97340260199991],[-67.19713294199997,-66.97551848799992],[-67.17544511599988,-66.98805103999993],[-67.15973873599992,-67.00090911299995],[-67.1390681629999,-67.01425546699987],[-67.11896725199995,-67.01677825299987],[-67.09776770699995,-67.01116301899988],[-67.07396399599989,-67.00066497199991],[-67.10732988199996,-66.971286717],[-67.12018795499998,-66.95427825299994],[-67.11904863199993,-66.93613046699994],[-67.10399329299992,-66.92782968499995],[-67.0773005849999,-66.92278411299992],[-67.04971269399988,-66.92083098799998],[-67.0318904289999,-66.9216447899999],[-66.95067298099991,-66.938897394],[-66.91730709499993,-66.95680103999996],[-66.92784583199989,-66.98284270599993],[-66.92589270699995,-66.991143488],[-66.90746008999992,-67.03777434699991],[-66.91030839799994,-67.05364348799995],[-66.91763261599992,-67.06764088299991],[-66.93919837099986,-67.09172942499993],[-66.94220943899995,-67.102634373],[-66.93932044199994,-67.11825937299999],[-66.92992102799991,-67.14666106599991],[-66.9238988919999,-67.15789153400002],[-66.91413326699994,-67.16326262799988],[-66.88752193899992,-67.16814544099995],[-66.9390356109999,-67.20387135199996],[-66.95026607999989,-67.21493906],[-66.95881100199992,-67.23821379999993],[-66.96849524599989,-67.25066497199995],[-66.9808650379999,-67.27629973799992],[-66.94977779899992,-67.28427499799997],[-66.87682044199991,-67.28476327899995],[-66.81639563699989,-67.31113046699996],[-66.78563391799989,-67.31145598799998],[-66.7644750639999,-67.28866952899995],[-66.76353919199991,-67.28142669099992],[-66.76573645699992,-67.26799895599993],[-66.76451575399989,-67.26140715899994],[-66.75560462099995,-67.25009530999998],[-66.72996985599988,-67.23259856599991],[-66.72020423099993,-67.22177499800003],[-66.71540279899995,-67.20728932099989],[-66.71377519399994,-67.1960588519999],[-66.70885169199997,-67.19052499799987],[-66.69420325399994,-67.19361744599986],[-66.64757239499993,-67.22063567499998],[-66.60667883999992,-67.23853932099986],[-66.59581458199992,-67.245212498],[-66.5643611319999,-67.27711353999992],[-66.55785071499992,-67.28777434699995],[-66.54246985599988,-67.32756926899995],[-66.53575598899994,-67.34002044099988],[-66.52330481699991,-67.34514739399998],[-66.49742591099991,-67.346774998],[-66.4627986319999,-67.33660247199995],[-66.45103919199994,-67.30852629999995],[-66.45352128799996,-67.21559010199996],[-66.45653235599985,-67.19882577899995],[-66.47435462099995,-67.16139088299991],[-66.48534094999991,-67.14771900799997],[-66.51390540299988,-67.12672291499993],[-66.52684485599988,-67.11394622199998],[-66.44416256399991,-67.085381769],[-66.46580969999991,-67.07740650799992],[-66.52171790299988,-67.04892343499994],[-66.54491126199991,-67.04452890399995],[-66.59080969999988,-67.04355234199997],[-66.61416581899987,-67.03801848799995],[-66.59898841099991,-67.01311614399992],[-66.58315995999996,-66.99439869599986],[-66.49494381399995,-66.91838958099986],[-66.48534094999991,-66.91611093499988],[-66.47496497299989,-66.91570403399996],[-66.46153723899991,-66.91350676899988],[-66.43883216099997,-66.90146249799986],[-66.42031816299992,-66.88193124799997],[-66.41722571499986,-66.8610979149999],[-66.44058183499996,-66.84563567499998],[-66.5519099599999,-66.81064218499998],[-66.53307044199994,-66.775567316],[-66.52798417899993,-66.74480559699992],[-66.5349828769999,-66.71404387799991],[-66.55207271999987,-66.67929452899998],[-66.54792232999992,-66.65016041499983],[-66.51207434799991,-66.63014088299995],[-66.2921443349999,-66.58587004999998],[-66.25682532499988,-66.58318450299993],[-66.09190833199995,-66.591403904],[-66.0760391919999,-66.59636809699997],[-66.07054602799988,-66.60271575299998],[-66.06265214799993,-66.62078215900002],[-66.0570369129999,-66.62672291499995],[-66.04845130099991,-66.62916432099998],[-66.01891028599994,-66.63095468499996],[-66.00047766799992,-66.636000258],[-65.98859615799995,-66.64218515399988],[-65.96141516799995,-66.66326262799998],[-65.94399980399987,-66.67310963299991],[-65.9313044909999,-66.67571379999991],[-65.89549719999991,-66.67571379999991],[-65.83950761599996,-66.68824635199991],[-65.82848059799991,-66.69304778399999],[-65.81395423099988,-66.70875416499996],[-65.80036373599992,-66.71575286299985],[-65.7848201159999,-66.71550872199998],[-65.76488196499992,-66.70916106599996],[-65.74986731699991,-66.70037200299998],[-65.73814856699991,-66.69052499799997],[-65.72545325399994,-66.68352629999997],[-65.6893611319999,-66.68368905999995],[-65.67463131399991,-66.67693450299993],[-65.6461482409999,-66.65300872199995],[-65.76207434799997,-66.6096330709999],[-65.76671301999991,-66.6018205709999],[-65.75169837099989,-66.59441497199992],[-65.73460852799994,-66.59392669099994],[-65.71719316299995,-66.59661223799992],[-65.7010798819999,-66.59596119599996],[-65.68797766799992,-66.58603280999995],[-65.69188391799992,-66.58163827899998],[-65.72069251199986,-66.56438567499997],[-65.72240149599986,-66.55437590899999],[-65.71882076699998,-66.54607512799991],[-65.70543372299989,-66.52809010199996],[-65.6893611319999,-66.49618905999995],[-65.6647029289999,-66.46249765399993],[-65.66075598899991,-66.44988372199997],[-65.66270911399997,-66.43401458099994],[-65.6362198559999,-66.42278411299985],[-65.57803300699996,-66.40984465899993],[-65.55036373599995,-66.40016041499997],[-65.60155188699991,-66.37851327899998],[-65.61188717399992,-66.37688567499995],[-65.63560950399994,-66.37851327899998],[-65.64293372299994,-66.37712981599991],[-65.65762285099996,-66.36028411299989],[-65.66218014199998,-66.34392669099998],[-65.66926021999987,-66.33001067499991],[-65.69163977799988,-66.32048919099992],[-65.74014238199996,-66.31853606599996],[-65.7848201159999,-66.32333749799993],[-65.82811438699987,-66.32122161299995],[-65.87242591099994,-66.2989234349999],[-65.78571529899992,-66.27402109199997],[-65.76512610599988,-66.27166106599992],[-65.74543209499993,-66.27206796700001],[-65.72590084499984,-66.27011484199997],[-65.6405330069999,-66.21477629999988],[-65.63369706899988,-66.20061614399995],[-65.64683997299994,-66.181735935],[-65.66356360599987,-66.17050546699993],[-65.70547441299988,-66.14999765399988],[-65.61294511599986,-66.12566497199998],[-65.60846920499992,-66.12029387799984],[-65.60033118399991,-66.10263437299992],[-65.59581458199995,-66.09840260199991],[-65.5826716789999,-66.10076262799996],[-65.54482988199995,-66.12151458099996],[-65.53038489499988,-66.12346770599991],[-65.50145423099988,-66.1213518209999],[-65.48696855399993,-66.12281666499996],[-65.43561764199991,-66.14495208099993],[-65.41441809799994,-66.14755624800003],[-65.31997636599988,-66.14706796699994],[-65.18740800699996,-66.17253997199995],[-65.13866126199994,-66.16985442499988],[-65.09093176999988,-66.15007903399986],[-65.24986731699991,-66.06658294099988],[-65.30052649599989,-66.04998137800001],[-65.31916256399998,-66.03826262799991],[-65.33202063699991,-66.02117278399989],[-65.33592688699989,-66.0012346329999],[-65.32774817599987,-65.98113372199985],[-65.31407630099994,-65.97014739399998],[-65.29625403599988,-65.96331145599996],[-65.25975501199991,-65.95745208099984],[-65.05215410099986,-65.96266041499983],[-65.03978430899994,-65.96021900799987],[-65.01402747299989,-65.94475676899995],[-65.00084387899994,-65.93938567499991],[-64.91657467399995,-65.9269345029999],[-64.88662675699987,-65.92839934699995],[-64.82335364499991,-65.94036223799989],[-64.81786048099988,-65.94638437299997],[-64.80939693899995,-65.97112395599996],[-64.79971269399988,-65.98056405999998],[-64.78693600199995,-65.98455169099995],[-64.77399654899995,-65.986911717],[-64.76244055899991,-65.9908993469999],[-64.74079342399992,-66.01238372199983],[-64.71263587099995,-66.0171851539999],[-64.70352128799993,-66.03297291499985],[-64.68651282499987,-66.03834400799991],[-64.58409583199989,-66.03346119599993],[-64.57201087099989,-66.02955494599993],[-64.53807532499994,-66.00554778399999],[-64.50837154899992,-65.99098072699988],[-64.49600175699987,-65.98088958099999],[-64.4877009759999,-65.96559010199994],[-64.4877009759999,-65.95045338299994],[-64.49583899599992,-65.93938567499991],[-64.52122962099995,-65.9226213519999],[-64.55638587099989,-65.888767185],[-64.55606035099986,-65.88209400799997],[-64.59504146999987,-65.88339609199987],[-64.63023841099991,-65.87883879999993],[-64.66270911399991,-65.8654924459999],[-64.69367428299992,-65.84050872199998],[-64.67198645699995,-65.8140601539999],[-64.67137610599987,-65.75261809699992],[-64.65794837099989,-65.73723723799998],[-64.62559973899988,-65.73853932099989],[-64.56309973899994,-65.76425546699994],[-64.39639238199993,-65.80934010199982],[-64.37669837099989,-65.80535247199991],[-64.36900794199997,-65.79778411299998],[-64.36827551999994,-65.76474374799992],[-64.37043209499984,-65.7570126279999],[-64.37474524599995,-65.74895598799998],[-64.37718665299988,-65.74179452899993],[-64.3735245429999,-65.73642343499998],[-64.33527584499987,-65.71656666499996],[-64.44420325399994,-65.65732187299997],[-64.4786677729999,-65.63144296699988],[-64.30500240799998,-65.63193124799986],[-64.25096594999988,-65.64218515399998],[-64.22594153599997,-65.65642669099998],[-64.20909583199997,-65.67343515399995],[-64.19058183499996,-65.68466562299994],[-64.13442949099993,-65.68035247199987],[-64.07481848899994,-65.69304778399992],[-64.04507402299993,-65.69312916499982],[-64.06627356699991,-65.66969166499983],[-64.12222245999988,-65.64316171699987],[-64.14513098899997,-65.6239559879999],[-64.12319902299996,-65.61467864399987],[-64.11660722599987,-65.61052825299991],[-64.14037024599989,-65.58668385199992],[-64.16454016799989,-65.56804778399984],[-64.19229081899996,-65.55641041499993],[-64.22687740799995,-65.55331796699994],[-64.08189856699991,-65.51482512799994],[-64.00373287699989,-65.51539478999985],[-63.97447669199996,-65.55592213299994],[-63.97345943899989,-65.57008228999996],[-63.96617591099988,-65.57496510199994],[-63.93883216099991,-65.57935963299984],[-63.88048255099991,-65.59905364399987],[-63.80630449099987,-65.6080054669999],[-63.795155402999875,-65.60572682099983],[-63.79230709499992,-65.59124114399988],[-63.80256100199994,-65.57537200299986],[-63.82868404899991,-65.54753997199998],[-63.79548092399989,-65.53134530999994],[-63.682281053999894,-65.52385833099994],[-63.701161261999914,-65.50465260199991],[-63.75438391799989,-65.49618905999988],[-63.76231848899997,-65.47161223799995],[-63.82998613199991,-65.48414478999987],[-63.827300584999925,-65.4787736959999],[-63.82388261599991,-65.46689218499995],[-63.82140051999989,-65.4615210919999],[-63.9220271479999,-65.46851978999987],[-64.05972245999993,-65.42937590899993],[-64.08995520699995,-65.41334400799994],[-64.06297766799989,-65.40943775799992],[-64.03429114499991,-65.39934661299998],[-64.0071508449999,-65.38534921699993],[-63.984486456999946,-65.36988697699982],[-63.99746660099996,-65.35377369599985],[-64.01329505099989,-65.3430315079999],[-64.04954993399988,-65.32675546699997],[-64.10366777299987,-65.2765438779999],[-64.10985266799995,-65.26775481599985],[-64.07909094999985,-65.2701148419999],[-64.06419837099992,-65.26946379999985],[-64.05492102799985,-65.26246510199996],[-64.05622311099995,-65.24138762799984],[-64.08214270699995,-65.19361744599989],[-64.07970130099991,-65.16529713299994],[-64.0558975899999,-65.1443010399999],[-63.99445553299994,-65.14739348799998],[-63.96959387899989,-65.13355885199981],[-63.969146287999905,-65.12948984199994],[-63.97423255099991,-65.12053801899991],[-63.97435462099988,-65.11679452899998],[-63.970326300999915,-65.11256275799985],[-63.964995897999955,-65.10963307099985],[-63.944488084999904,-65.10182057099993],[-63.92145748599992,-65.0963680969999],[-63.91307532499988,-65.09148528399993],[-63.90599524599992,-65.0817196589999],[-63.89659583199989,-65.06275807099988],[-63.88768469999985,-65.05388762799993],[-63.873890753999945,-65.04599374799986],[-63.82697506399989,-65.03020598799992],[-63.806223110999895,-65.02646249799997],[-63.790638800999915,-65.02874114399987],[-63.75869706899991,-65.04159921699997],[-63.73932857999998,-65.04387786299986],[-63.722279425999915,-65.04119231599988],[-63.706288214999915,-65.0406226539999],[-63.69017493399985,-65.04827239399992],[-63.67296301999994,-65.06682708099993],[-63.66331946499988,-65.07203541499993],[-63.65339107999998,-65.07529062299997],[-63.58995520699995,-65.08375416499983],[-63.556711391999954,-65.08310312299997],[-63.53673255099997,-65.07968515399986],[-63.52660071499992,-65.07976653399983],[-63.49998938699988,-65.092868748],[-63.45173092399994,-65.09319426899984],[-63.42735755099988,-65.09612395599987],[-63.38243567599997,-65.11093515399993],[-63.35973059799994,-65.111423435],[-63.31615149599992,-65.09148528399993],[-63.2881567049999,-65.08269622199995],[-63.261301235999916,-65.0803361959999],[-63.24640865799995,-65.0907528629999],[-63.23717200399989,-65.11736419099985],[-63.224191860999895,-65.13665129999988],[-63.2048233709999,-65.14625416499996],[-63.150746222999885,-65.14283619599985],[-63.107899542999924,-65.1638322899998],[-63.08360755099995,-65.16611093499995],[-63.06041419199991,-65.15748463299985],[-63.01805579299992,-65.13274504999998],[-62.99201412699991,-65.12542083099989],[-63.02301998599995,-65.08521900799997],[-62.99974524599995,-65.07488372199988],[-62.99181067599997,-65.07236093499995],[-62.998768683999884,-65.06853606599985],[-63.011830206999946,-65.05852629999995],[-63.01886959499993,-65.05478281],[-63.0033259759999,-65.04363372199991],[-63.00544186099993,-65.0354143209999],[-63.01716061099992,-65.03036874799989],[-63.030873175999936,-65.02776458099989],[-63.04893958199994,-65.0285783829999],[-63.08580481699991,-65.03679778399999],[-63.10399329299992,-65.03728606599987],[-63.13874264199995,-65.02776458099989],[-63.17369544199988,-65.01018645599986],[-63.23375403599987,-64.96526458099984],[-63.20881100199995,-64.94939544099992],[-63.09862219999986,-64.93401458099987],[-63.08836829299991,-64.93035247199983],[-63.079660610999944,-64.92253997199992],[-63.067128058999856,-64.90683359199986],[-63.056507941999904,-64.90439218499992],[-63.039784308999884,-64.908786717],[-63.0116267569999,-64.92066822699996],[-62.997222459999925,-64.92359791499989],[-62.985991990999935,-64.92115650799992],[-62.97472083199991,-64.91716887799987],[-62.959950324999845,-64.91497161299989],[-62.94334876199988,-64.91757577899988],[-62.91466223899993,-64.92888762799996],[-62.89785722599993,-64.93108489399987],[-62.86790930899985,-64.92099374799997],[-62.82209225199995,-64.87769947699991],[-62.78880774599986,-64.86663176899987],[-62.82477779899992,-64.8547502579999],[-62.83983313699986,-64.84563567499993],[-62.8543188139999,-64.83163827899988],[-62.79409745999993,-64.81267669099995],[-62.74010169199994,-64.82301197699996],[-62.59552975199989,-64.90642669099995],[-62.58397376199986,-64.91073984199987],[-62.56480872299989,-64.9092749979999],[-62.55296790299993,-64.90097421699991],[-62.5423070949999,-64.89031340899997],[-62.52603105399987,-64.88193124799993],[-62.49819902299989,-64.87883879999984],[-62.43740800699988,-64.88152434699984],[-62.40721594999988,-64.87664153399986],[-62.673817511999886,-64.77727629999985],[-62.653146938999946,-64.76311614399992],[-62.63072669199994,-64.75920989399992],[-62.581613735999895,-64.76002369599993],[-62.5591934889999,-64.7533505189999],[-62.518055792999924,-64.73186614399995],[-62.49718176999993,-64.73186614399995],[-62.54088294199993,-64.70175546699993],[-62.557199673999946,-64.68572356599984],[-62.57408606699993,-64.65667083099987],[-62.57201087099992,-64.64959075299998],[-62.563140428999866,-64.64234791499996],[-62.55186926999988,-64.63713958099989],[-62.542795376999884,-64.63632577899986],[-62.52269446499994,-64.64104583099987],[-62.50731360599991,-64.64169687299992],[-62.49205481699994,-64.63836028399999],[-62.47248287699995,-64.63111744599996],[-62.48322506399998,-64.62232838299983],[-62.49494381399995,-64.61614348799985],[-62.50763912699992,-64.61248137799998],[-62.5211482409999,-64.61223723799985],[-62.49551347599993,-64.5985653629999],[-62.470204230999876,-64.59335702899992],[-62.444162563999924,-64.59482187299997],[-62.41649329299992,-64.60125090899989],[-62.42345130099991,-64.60662200299984],[-62.43602454299989,-64.619235935],[-62.44298255099988,-64.62460702899989],[-62.39159094999987,-64.65984465899993],[-62.36632239499994,-64.66912200299988],[-62.365386522999955,-64.645603123],[-62.34276282499987,-64.6473934879999],[-62.32046464799993,-64.65162525799984],[-62.31094316299993,-64.6565080709999],[-62.30418860599991,-64.664646092],[-62.30382239499988,-64.67294687299989],[-62.312855597999906,-64.67799244599983],[-62.3379613919999,-64.687107029],[-62.35362708199997,-64.70256926899984],[-62.36278235599985,-64.72356536299998],[-62.36900794199991,-64.74911874799987],[-62.14183508999988,-64.78484465899999],[-62.159820115999906,-64.77068450299987],[-62.200835740999935,-64.75302499799986],[-62.22008216099988,-64.73805103999993],[-62.196115688999924,-64.73463307099982],[-62.174224412999884,-64.735935154],[-62.128895636999886,-64.74602629999988],[-62.13418535099996,-64.73088958099989],[-62.13703365799989,-64.71526458099999],[-62.136830206999946,-64.68328215899999],[-62.05492102799991,-64.7178687479999],[-62.04482988199993,-64.71453215899996],[-62.02822831899987,-64.70126718499994],[-62.01520748599997,-64.69573333099983],[-61.9845271479999,-64.69508228999996],[-61.970855272999955,-64.69036223799995],[-61.955799933999934,-64.67864348799988],[-61.943348761999914,-64.66659921699987],[-61.92072506399995,-64.63779062299993],[-61.966786261999886,-64.61223723799985],[-61.94570878799988,-64.59978606599992],[-61.93154863199993,-64.585544529],[-61.9156794909999,-64.5748837219999],[-61.890248175999915,-64.57366301899987],[-61.878895636999935,-64.57683684699992],[-61.84463456899997,-64.59303150799988],[-61.83486894399991,-64.59303150799988],[-61.795033331999946,-64.58277760199985],[-61.812570766999976,-64.57284921699986],[-61.82945716099988,-64.53582122199992],[-61.843739386999886,-64.51824309699997],[-61.83039303299994,-64.51384856599982],[-61.814076300999936,-64.49716562299997],[-61.80573482999995,-64.49285247199985],[-61.7849014959999,-64.49293385199985],[-61.77965247299991,-64.49716562299997],[-61.7779841789999,-64.50530364399998],[-61.768788214999915,-64.51824309699997],[-61.721587693999936,-64.56292083099996],[-61.71239173099989,-64.58123137799983],[-61.709055141999926,-64.59693775799997],[-61.70327714799987,-64.60914478999996],[-61.686512824999845,-64.61712004999991],[-61.67210852799988,-64.62053801899984],[-61.661244269999905,-64.62509530999986],[-61.65587317599994,-64.63290780999995],[-61.65733801999991,-64.64576588299995],[-61.65314693899998,-64.65398528399989],[-61.63878333199989,-64.66057708099996],[-61.608306443999936,-64.66757577899993],[-61.578846808999884,-64.66204192499983],[-61.49103756399989,-64.61451588299991],[-61.56899980399996,-64.58424244599983],[-61.60431881399998,-64.56072356599995],[-61.60578365799992,-64.53215911299988],[-61.57420813699994,-64.52223072699996],[-61.52049719999987,-64.52499765399993],[-61.46617591099994,-64.53460051899991],[-61.432281053999894,-64.54558684699995],[-61.445423956999946,-64.53191497199992],[-61.446929490999906,-64.5109188779999],[-61.44420325399992,-64.48723723799988],[-61.4446915359999,-64.46510182099979],[-61.52481035099987,-64.48406340899999],[-61.55931555899989,-64.47795989399992],[-61.582875128999945,-64.4426408829999],[-61.566883917999945,-64.43808359199994],[-61.541615363999874,-64.42058684699998],[-61.52765865799992,-64.41570403399993],[-61.4961645169999,-64.41228606599992],[-61.48546301999988,-64.40789153399993],[-61.47166907499988,-64.39788176899995],[-61.461252407999986,-64.38323333099993],[-61.46076412699989,-64.37314218499986],[-61.45612545499998,-64.36834075299998],[-61.41559811099995,-64.37127044099991],[-61.39854895699989,-64.36923593499998],[-61.36506100199994,-64.35898202899995],[-61.37169348899991,-64.37615325299988],[-61.38621985599985,-64.38445403399996],[-61.42341061099995,-64.39275481599984],[-61.41657467399991,-64.40764739399998],[-61.402577277999875,-64.40935637799997],[-61.384755011999886,-64.40569426899985],[-61.36668860599988,-64.40447356599992],[-61.349842902999875,-64.40960051899984],[-61.29531816299988,-64.43238697699996],[-61.295236782999886,-64.40520598799995],[-61.27131100199994,-64.39470794099988],[-61.14997311099992,-64.39397551899987],[-61.09068762899994,-64.386325779],[-61.113189256999924,-64.38144296699994],[-61.12474524599986,-64.37070077899985],[-61.13044186099996,-64.3544247379999],[-61.13516191299994,-64.33310312299994],[-61.11733964799986,-64.33342864399995],[-61.11050370999996,-64.32480234199987],[-61.10619055899985,-64.31292083099991],[-61.095814581999946,-64.30291106599992],[-61.08023027299986,-64.29802825299987],[-61.064442511999914,-64.29583098799986],[-61.00218665299991,-64.2987606749999],[-60.968658006999874,-64.29566822699982],[-60.941721157999915,-64.2819149719999],[-60.93081620999993,-64.25139739399995],[-60.95384680899991,-64.24781666499987],[-60.9759822259999,-64.24089934699988],[-60.96743730399987,-64.22193775799997],[-60.9559626939999,-64.21306731599984],[-60.94066321499986,-64.21021900799997],[-60.92048092399991,-64.210056248],[-60.962880011999914,-64.15634530999995],[-60.870187954999984,-64.16692473799989],[-60.84080969999988,-64.16423919099984],[-60.847523566999904,-64.1539852839999],[-60.85553951699995,-64.14739348799984],[-60.86506100199995,-64.1434872379999],[-60.87637285099993,-64.14137135199991],[-60.88727779899991,-64.1366512999999],[-60.90444902299993,-64.11777109199988],[-60.91454016799992,-64.11044687299987],[-61.019439256999924,-64.08245208099986],[-60.985666469999835,-64.06454843499998],[-60.924672003999945,-64.05608489399995],[-60.89037024599989,-64.04705169099984],[-60.87718665299985,-64.04745859199994],[-60.8614802729999,-64.0546200499999],[-60.83311926999994,-64.07252369599993],[-60.81867428299989,-64.07545338299997],[-60.80040442599991,-64.07333749799994],[-60.76716061099992,-64.06471119599986],[-60.77285722599989,-64.08505624799986],[-60.74640865799993,-64.0791968729999],[-60.727365688999924,-64.06218840899993],[-60.72020423099989,-64.03826262799987],[-60.72931881399996,-64.01148853999996],[-60.52847245999996,-63.986016533999965],[-60.30646725199991,-63.91545989399989],[-60.25230872299997,-63.92009856599983],[-60.20148678299992,-63.91375090899998],[-60.174224412999926,-63.91611093499985],[-59.99518795499995,-63.95867278399989],[-59.98200436099992,-63.95973072699994],[-59.969960089999915,-63.958103122999916],[-59.956206834999904,-63.95191822699994],[-59.953846808999934,-63.946709893999866],[-59.95636959499986,-63.94036223799992],[-59.957102016999976,-63.930840752999835],[-59.952300584999904,-63.92180754999983],[-59.93700110599993,-63.907159112999906],[-59.93333899599989,-63.898370049999855],[-59.93537350199992,-63.89267343499987],[-59.94517981699994,-63.883396091999906],[-59.94709225199989,-63.87688567499991],[-59.94286048099988,-63.865655205999836],[-59.93390865799995,-63.857028904],[-59.92235266799992,-63.851169528999876],[-59.910878058999884,-63.84791432099984],[-59.88621985599988,-63.84986744599988],[-59.864898240999906,-63.85735442499984],[-59.844471808999856,-63.85947030999986],[-59.82249915299993,-63.845472914999796],[-59.839019334999904,-63.83131275799996],[-59.84845943899992,-63.81894296699993],[-59.84837805899994,-63.805271091999984],[-59.83633378799993,-63.787041924999905],[-59.82249915299993,-63.77597421699988],[-59.80744381399993,-63.77166106599996],[-59.79161536399988,-63.774102472],[-59.775624152999875,-63.78215911299985],[-59.76073157499994,-63.79957447699983],[-59.767811652999875,-63.81178150799989],[-59.78258216099996,-63.82236093499994],[-59.79063880099991,-63.83473072699987],[-59.78490149599992,-63.85271575299991],[-59.77017167899992,-63.859958591999934],[-59.713286912999905,-63.861016533999894],[-59.66295325399995,-63.873467706],[-59.60741126199991,-63.873793226999844],[-59.56647701699998,-63.888278903999975],[-59.5487361319999,-63.89128997199989],[-59.530873175999915,-63.88909270599999],[-59.50999915299985,-63.88152434699985],[-59.48900305899991,-63.87908294099982],[-59.467518683999884,-63.88640715899992],[-59.42910722599987,-63.90992603999997],[-59.401193813999924,-63.86199309699996],[-59.41388912699989,-63.858086846999875],[-59.42495683499993,-63.85125090899986],[-59.43407141799992,-63.84197356599989],[-59.4405818349999,-63.83025481599982],[-59.34520423099988,-63.792413018999866],[-59.33975175699996,-63.7853329409999],[-59.338124152999946,-63.77361419099983],[-59.344105597999935,-63.76189544099992],[-59.36685136599987,-63.733493748],[-59.36888587099991,-63.72323984199997],[-59.35228430899985,-63.70859140399996],[-59.32835852799988,-63.69833749799994],[-59.25381425699993,-63.68181731599995],[-59.231271938999946,-63.68059661299994],[-59.20921790299985,-63.683038018999966],[-59.18643144399994,-63.690036716999956],[-59.14122473899991,-63.710544529],[-59.11546790299985,-63.71843840899998],[-59.096302863999874,-63.71624114399998],[-59.0120336579999,-63.671563408999845],[-58.98766028599993,-63.66765715899994],[-58.96051998599992,-63.67099374799987],[-58.93614661399994,-63.669203382999974],[-58.92076575399992,-63.65097421699999],[-58.92259680899988,-63.631036065999915],[-58.941761847999935,-63.58562590899992],[-58.94033769399987,-63.56438567499984],[-58.92389889199998,-63.548923435],[-58.898548956999946,-63.54021575299984],[-58.57752438049991,-63.49720631299998],[-58.25649980399992,-63.45419687299993],[-58.165191209999875,-63.4629859349999],[-58.14484615799998,-63.458591404],[-58.13170325399991,-63.44443124799991],[-58.126535610999916,-63.41611093499994],[-58.142893032999915,-63.41676197699981],[-58.16510982999989,-63.415215752999956],[-58.18285071499989,-63.407891533999944],[-58.1861466139999,-63.39153411299985],[-58.16991126199988,-63.376560154],[-58.14476477799991,-63.37932708099987],[-58.11961829299991,-63.391208592],[-58.103423631999874,-63.40260182099988],[-58.08918209499987,-63.410332940999886],[-58.06969153599987,-63.41472747199996],[-58.049427863999966,-63.415704033999944],[-58.03294837099989,-63.41318124799993],[-58.022572394999884,-63.40732187299997],[-58.003895636999914,-63.39153411299985],[-57.992787238999966,-63.38762786299994],[-57.9680883449999,-63.385186456],[-57.95856686099989,-63.38111744599995],[-57.88027910099989,-63.31471119599992],[-57.86278235599985,-63.30657317499991],[-57.79710852799985,-63.30722421699995],[-57.491810675999915,-63.25156015399993],[-57.411732550999936,-63.225030205999886],[-57.36872311099989,-63.21786874799992],[-57.28661048099991,-63.214776299999855],[-57.10586503799993,-63.24138762799989],[-57.02940833199992,-63.2810197899999]]],[[[-56.61534583199994,-63.2154273419999],[-56.64671790299988,-63.21949635199995],[-56.67723548099991,-63.2175432269999],[-56.698557094999984,-63.206231377999835],[-56.70287024599989,-63.189222914999874],[-56.69172115799994,-63.175469658999845],[-56.67308508999989,-63.16529713299981],[-56.65485592399989,-63.158298435],[-56.63223222599993,-63.15211353999994],[-56.60985266799992,-63.1505673159999],[-56.587635870999854,-63.15406666499981],[-56.56598873599995,-63.16285572699996],[-56.58495032499988,-63.20126718499987],[-56.59186764199998,-63.20859140399988],[-56.61534583199994,-63.2154273419999]]],[[[-55.575672980999855,-63.12908294099997],[-55.506703253999916,-63.14869557099985],[-55.47785396999998,-63.15252044099995],[-55.49299068899998,-63.154473565999986],[-55.50885982999992,-63.16073984199994],[-55.52342688699994,-63.16952890399991],[-55.53498287699994,-63.17913176899999],[-55.443430141999954,-63.207777601999865],[-55.4298396479999,-63.20745208099984],[-55.42023678299992,-63.20289478999981],[-55.41144771999995,-63.19654713299995],[-55.40070553299995,-63.19068775799983],[-55.384185350999864,-63.187269789999824],[-55.159372524999895,-63.203871351999965],[-55.159331834999904,-63.203871351999965],[-55.12661699099988,-63.20867278399986],[-55.08576412699992,-63.22161223799987],[-55.05247962099991,-63.24537525799995],[-55.04283606699997,-63.28297291499996],[-55.06395423099988,-63.319268487999864],[-55.10912024599992,-63.343682549999826],[-55.172718878999916,-63.35759856599998],[-55.24868730399992,-63.362074476999865],[-55.3119197259999,-63.35686614399996],[-55.42418372299991,-63.332777601999936],[-55.48591061099992,-63.3269182269998],[-55.58324133999988,-63.337823174999876],[-55.62523352799988,-63.33416106599982],[-55.79190019399991,-63.28557708099996],[-55.77839107999992,-63.30217864399983],[-55.77554277299989,-63.309828382999946],[-55.78034420499998,-63.31959400799999],[-55.791737433999856,-63.32496510199995],[-55.80821692599994,-63.325453382999925],[-55.824940558999856,-63.32333749799992],[-55.8373103509999,-63.32000090899999],[-55.84972083199992,-63.313246351999865],[-55.86066646999989,-63.304945570999884],[-55.87214107999995,-63.298028252999885],[-55.8866267569999,-63.29501718499997],[-55.90135657499988,-63.2966447899999],[-55.90656490799997,-63.301446221999974],[-55.90835527299995,-63.3082821589999],[-55.91307532499988,-63.31658294099998],[-55.92235266799992,-63.32488372199995],[-55.94640051999994,-63.341241143999966],[-55.99640865799997,-63.33391692499997],[-56.02236894399987,-63.34661223799993],[-56.047474738999966,-63.368422132999974],[-56.0948787099999,-63.388767184999885],[-56.24201412699995,-63.40667083099993],[-56.28844153599991,-63.41741301899985],[-56.33617102799985,-63.436781507999875],[-56.35513261599996,-63.439711195999806],[-56.392689581999974,-63.43873463299991],[-56.45026607999995,-63.42929452899991],[-56.45909583199991,-63.425876559999985],[-56.46792558499995,-63.42009856599992],[-56.47435462099988,-63.412774346999925],[-56.48473059799997,-63.396742445999934],[-56.493234829999885,-63.39039478999981],[-56.508656378999945,-63.38543059699985],[-56.52476966099991,-63.38201262799994],[-56.54019120999993,-63.37704843499998],[-56.553781704999885,-63.36728280999994],[-56.54751542899993,-63.346368096999896],[-56.5045466789999,-63.330336195999905],[-56.42564856699994,-63.31462981599994],[-56.4708552729999,-63.298028252999885],[-56.47740637899997,-63.29404062299999],[-56.43179277299992,-63.25628020599985],[-56.36953691299993,-63.228122653999954],[-56.245269334999904,-63.192071221999896],[-55.97451738199993,-63.14690520599995],[-55.72305253799993,-63.14755624799999],[-55.63158118399991,-63.13030364399999],[-55.575672980999855,-63.12908294099997]]],[[[-56.468739386999886,-62.97633228999983],[-56.3138728509999,-63.00432708099986],[-56.10423743399991,-63.004164320999884],[-56.04771887899991,-63.017022393999824],[-56.03502356699994,-63.057549737999835],[-56.06834876199994,-63.08684661299994],[-56.21580969999991,-63.16106536299996],[-56.273508266999954,-63.178480726999936],[-56.336048956999974,-63.17457447699985],[-56.40843665299994,-63.15553150799995],[-56.54596920499989,-63.09929778399996],[-56.603586391999954,-63.07024504999989],[-56.618031378999916,-63.05144622199985],[-56.602650519999884,-63.03053150799988],[-56.57762610599988,-63.01921965899999],[-56.524281378999916,-63.00318775799982],[-56.49941972599987,-62.99163176899998],[-56.49315344999991,-62.98650481599988],[-56.48985755099988,-62.98259856599998],[-56.48566646999995,-62.97926197699985],[-56.47679602799991,-62.97665780999995],[-56.468739386999886,-62.97633228999983]]],[[[-60.61925208199994,-62.89666106599987],[-60.54784094999988,-62.92595794099997],[-60.49787350199992,-62.964288018999916],[-60.52599036399994,-62.98105234199993],[-60.56432044199993,-62.97771575299999],[-60.595448370999854,-62.95989348799984],[-60.602040167999924,-62.9336890599999],[-60.62409420499991,-62.926364841999984],[-60.644683397999955,-62.92262135199986],[-60.66470292899993,-62.92262135199986],[-60.68529212099986,-62.926202080999936],[-60.68659420499995,-62.93035247199987],[-60.697621222999906,-62.94931405999989],[-60.700306769999884,-62.95273202899998],[-60.70018469999991,-62.95940520599995],[-60.69798743399991,-62.96363697699987],[-60.693511522999955,-62.966892184999914],[-60.673898891999904,-62.97649504999998],[-60.55748450399994,-63.00758228999981],[-60.58250891799995,-63.01718515399996],[-60.618804490999935,-63.016534112999835],[-60.683664516999926,-63.00335051899988],[-60.70604407499985,-62.99480559699986],[-60.72655188699991,-62.981866143999945],[-60.74156653599993,-62.96404387799988],[-60.74697831899987,-62.9406063779999],[-60.692209438999946,-62.895196222],[-60.61925208199994,-62.89666106599987]]],[[[-62.65684973899991,-63.08464934699987],[-62.68578040299991,-63.090427342],[-62.712310350999964,-63.08928801899997],[-62.68675696499988,-63.07830169099992],[-62.68040930899994,-63.07268645599993],[-62.677561001999884,-63.06666432099983],[-62.67601477799985,-63.05641041499982],[-62.67170162699995,-63.05095794099986],[-62.66047115799996,-63.04566822699988],[-62.63418535099992,-63.03964609199997],[-62.62486731699991,-63.03053150799988],[-62.61583411399988,-63.01482512799991],[-62.60509192599997,-63.0002580709998],[-62.59276282499993,-62.98707447699985],[-62.57884680899985,-62.975681247999965],[-62.550445115999906,-62.962009372999844],[-62.54332434799997,-62.95631275799987],[-62.5397029289999,-62.94931405999989],[-62.53897050699987,-62.934665622999965],[-62.53701738199993,-62.926934502999956],[-62.51927649599992,-62.91253020599998],[-62.48940995999993,-62.90325286299985],[-62.39012610599991,-62.89128997199991],[-62.38019771999993,-62.88795338299998],[-62.36131751199988,-62.878594658999944],[-62.351144985999944,-62.87542083099988],[-62.30626380099991,-62.87517669099993],[-62.35676021999984,-62.93336353999996],[-62.429798956999946,-62.985772393999845],[-62.60122636599996,-63.06560637799996],[-62.601267055999955,-63.06560637799996],[-62.65684973899991,-63.08464934699987]]],[[[-61.40925045499992,-62.82333749799984],[-61.46507727799991,-62.82398853999988],[-61.4969783189999,-62.81755950299988],[-61.50731360599991,-62.81357187299998],[-61.513335740999935,-62.809991143999916],[-61.51817786399991,-62.80559661299984],[-61.52188066299996,-62.80022551899988],[-61.52391516799989,-62.7936337219999],[-61.523589647999955,-62.78378671699989],[-61.52017167899996,-62.774509372999844],[-61.51463782499994,-62.76620859199986],[-61.507720506999924,-62.75920989399988],[-61.48607337099995,-62.745700778999904],[-61.46068274599992,-62.737237237999956],[-61.40880286399991,-62.729424737999956],[-61.198882615999906,-62.72771575299987],[-61.228016730999855,-62.73381926899985],[-61.24705969999985,-62.74236419099987],[-61.255482550999915,-62.75383879999992],[-61.25283769399991,-62.76873137799987],[-61.40925045499992,-62.82333749799984]]],[[[-60.062896287999905,-62.55095794099996],[-60.07957923099994,-62.56365325299985],[-60.070708787999905,-62.57976653399999],[-60.04576575399994,-62.61532968499988],[-60.024525519999884,-62.62704843499995],[-59.9894099599999,-62.630140882999854],[-59.802967902999846,-62.611260674999826],[-60.12755286399993,-62.71648528399996],[-60.146066860999944,-62.727227471999875],[-60.24596106699994,-62.75286223799995],[-60.290598110999895,-62.75758228999985],[-60.31432044199991,-62.74138762799999],[-60.320301886999914,-62.740166924999976],[-60.326283331999946,-62.740166924999976],[-60.33214270699988,-62.739353122999965],[-60.33747311099995,-62.736097914999924],[-60.29816646999986,-62.69133879999997],[-60.29824785099993,-62.681898695999955],[-60.33238684799994,-62.67815520599984],[-60.366810675999965,-62.68938567499993],[-60.400949673999946,-62.70549895599991],[-60.43366451699989,-62.71624114399983],[-60.411203579999885,-62.67693450299983],[-60.40074622299991,-62.66725025799995],[-60.39305579299989,-62.66423919099995],[-60.375803188999974,-62.660821221999846],[-60.36778723899993,-62.65748463299992],[-60.336537238999966,-62.63469817499998],[-60.323597785999965,-62.628513279],[-60.379221157999886,-62.610121351999965],[-60.59959876199988,-62.64039478999996],[-60.67979895699992,-62.61646900799991],[-60.710316535999965,-62.61402760199987],[-60.74469967399992,-62.62184010199987],[-60.75820878799988,-62.633884372999965],[-60.76309160099996,-62.646905205999865],[-60.7715551419999,-62.657403252999934],[-60.81175696499989,-62.67197030999987],[-61.05622311099992,-62.68287525799994],[-61.11042232999998,-62.67831796699989],[-61.1603897779999,-62.66334400799987],[-61.137440558999906,-62.638929945999905],[-61.141753709999925,-62.61907317499999],[-61.163889126999884,-62.603692315999865],[-61.19448808499993,-62.593682549999976],[-61.15086829299992,-62.58464934699996],[-61.017079230999876,-62.60800546699996],[-60.96231035099996,-62.61158619599985],[-60.90184485599986,-62.600844007999925],[-60.84300696499985,-62.583672783999894],[-60.82380123599989,-62.57577890399992],[-60.814564581999946,-62.56951262799996],[-60.81012936099995,-62.56145598799985],[-60.81525631399998,-62.55169036299999],[-60.82750403599993,-62.54208749799992],[-60.840240037999905,-62.5350888],[-60.84666907499991,-62.533135674999905],[-60.81582597599996,-62.50432708099995],[-60.80207271999984,-62.48642343499991],[-60.80182857999989,-62.46892669099995],[-60.79662024599989,-62.46892669099995],[-60.710316535999965,-62.49976978999992],[-60.706450975999864,-62.502129815999965],[-60.70352128799993,-62.50595468499998],[-60.702788865999906,-62.5101864559999],[-60.70287024599989,-62.5166968729999],[-60.70368404899992,-62.52206796699986],[-60.705148891999954,-62.523207289999895],[-60.67479407499987,-62.548597914999924],[-60.64175370999993,-62.564222914999895],[-60.60484778599988,-62.57252369599988],[-60.49107825399991,-62.577080987999835],[-60.4518123039999,-62.569105726999965],[-60.43211829299985,-62.54924895599987],[-60.38117428299995,-62.55266692499996],[-60.32970130099994,-62.54998137799989],[-60.27879798099993,-62.54127369599991],[-60.22996985599994,-62.52646249799994],[-60.19200598899991,-62.50953541499995],[-60.17406165299988,-62.49846770599983],[-60.15843665299988,-62.48528411299996],[-60.13890540299991,-62.46152109199996],[-60.12946529899988,-62.46005624799991],[-60.10362708199997,-62.475844007999854],[-60.080677863999874,-62.49374765399991],[-60.073394334999875,-62.497328382999974],[-60.035755988999874,-62.51189544099982],[-60.01085364499995,-62.52564869599992],[-60.062896287999905,-62.55095794099996]]],[[[-59.72655188699994,-62.503676039999824],[-59.711822068999936,-62.50481536299986],[-59.70091712099986,-62.503187757999925],[-59.64232337099991,-62.48259856599989],[-59.610585089999894,-62.48007577899997],[-59.57982337099989,-62.48560963299989],[-59.55370032499994,-62.50123463299988],[-59.56456458199992,-62.50725676899988],[-59.58999589799992,-62.5101864559999],[-59.60195878799988,-62.51392994599985],[-59.599191860999916,-62.53435637799991],[-59.618234829999885,-62.544691664999824],[-59.67023678299995,-62.549574476999894],[-59.72496497299991,-62.544528903999954],[-59.745676235999916,-62.54501718499994],[-59.75047766799989,-62.544691664999824],[-59.75527910099989,-62.54404062299996],[-59.76012122299996,-62.542575778999904],[-59.76471920499989,-62.54013437299988],[-59.7708227199999,-62.53476327899992],[-59.77839107999995,-62.52174244599984],[-59.78368079299992,-62.516289971999896],[-59.79906165299985,-62.50953541499995],[-59.932199673999946,-62.48943450299999],[-59.99608313699985,-62.45256926899994],[-59.93228105399992,-62.44011809699983],[-59.72248287699997,-62.451918226999894],[-59.76520748599989,-62.472914320999834],[-59.776966925999965,-62.48088958099997],[-59.76911373599998,-62.487237237999835],[-59.76012122299996,-62.49277109199993],[-59.75059973899997,-62.497165623],[-59.72655188699994,-62.503676039999824]]],[[[-59.382313605999904,-62.372735283999916],[-59.3474014959999,-62.406508070999806],[-59.35187740799995,-62.409274997999866],[-59.371490037999905,-62.435967705999886],[-59.376616990999906,-62.441176039999874],[-59.38133704299992,-62.44459400799989],[-59.386870897999955,-62.446872653999954],[-59.39492753799988,-62.44841887799999],[-59.44896399599988,-62.448174737999864],[-59.49819902299989,-62.457207940999865],[-59.50877844999994,-62.45696379999983],[-59.55744381399996,-62.44500090899989],[-59.57530676999994,-62.44353606599992],[-59.5918676419999,-62.428969007999896],[-59.62572180899988,-62.40813567499983],[-59.615549282999915,-62.40056731599987],[-59.61066646999987,-62.393731377999856],[-59.60741126199991,-62.387383721999925],[-59.60216223899991,-62.381524346999974],[-59.61294511599993,-62.38453541499989],[-59.66388912699994,-62.38876718499991],[-59.67149817599997,-62.388116143999945],[-59.68000240799992,-62.38632577899987],[-59.68809973899994,-62.38298919099985],[-59.69416256399992,-62.37851327899988],[-59.69595292899993,-62.37574635199983],[-59.69684811099992,-62.372735283999916],[-59.69664466099996,-62.36931731599991],[-59.69505774599991,-62.36565520599995],[-59.6891983709999,-62.36109791499991],[-59.679676886999886,-62.35800546700001],[-59.60387122299991,-62.347344658999894],[-59.43675696499991,-62.355075778999904],[-59.382313605999904,-62.372735283999916]]],[[[-58.98314368399988,-62.265394789999945],[-58.97362219999989,-62.26921965899996],[-58.92699133999989,-62.261976820999855],[-58.89915930899991,-62.26311614399989],[-58.87189693899992,-62.27092864399988],[-58.84902910099993,-62.28606536299988],[-58.83433997299991,-62.30934010199998],[-59.029855923999975,-62.348077080999914],[-59.06940670499993,-62.34905364399998],[-59.08873450399994,-62.3464494769999],[-59.10431881399992,-62.34140390399996],[-59.14293372299991,-62.323337497999944],[-59.15737870999996,-62.31951262799984],[-59.16421464799986,-62.316989842],[-59.20295162699991,-62.29697030999986],[-59.21776282499988,-62.292087497999965],[-59.1887914699999,-62.272393487999935],[-59.15660559799995,-62.26018645599996],[-59.03294837099987,-62.23349374799994],[-59.00454667899993,-62.233168226999915],[-58.97858639199993,-62.241143487999956],[-58.98257402299989,-62.249769789999974],[-58.984527147999955,-62.256605726999894],[-58.98468990799993,-62.26181405999997],[-58.98314368399988,-62.265394789999945]]],[[[-57.89024817599991,-61.93840911299992],[-57.83580481699991,-61.941989841999984],[-57.70547441299996,-61.91570403399989],[-57.669911261999886,-61.91350676899989],[-57.656320766999926,-61.91708749799995],[-57.64753170499998,-61.92620208099994],[-57.6456599599999,-61.93759531],[-57.649566209999904,-61.9489071589999],[-57.65770423099991,-61.95818450299995],[-57.67039954299989,-61.9644507789999],[-57.680775519999884,-61.96746184699999],[-57.68496660099989,-61.97144947699989],[-57.67857825399989,-61.9808895809999],[-57.66071529899992,-61.99553801899991],[-57.63719641799985,-62.009372654],[-57.61229407499994,-62.0197893209999],[-57.589833136999914,-62.02548593499996],[-57.7657771479999,-62.007094007999925],[-57.78844153599996,-62.00872161299986],[-57.812652147999955,-62.013848565999965],[-57.848378058999884,-62.02857838299987],[-57.918039516999954,-62.06658294099987],[-57.95400956899993,-62.078057549999905],[-57.989084438999924,-62.0798479149998],[-58.13996334499989,-62.056247653999954],[-58.15526282499988,-62.05852629999984],[-58.168039516999926,-62.06389739399998],[-58.171457485999916,-62.07024504999992],[-58.17096920499993,-62.078871351999915],[-58.17259680899985,-62.091241143999866],[-58.177398240999935,-62.099786065999886],[-58.18301347599996,-62.10588958099996],[-58.18586178299989,-62.11191171699998],[-58.18211829299985,-62.119886976999936],[-58.16999264199995,-62.128350518999966],[-58.12315833199989,-62.14006926899987],[-58.13825436099989,-62.15691497199986],[-58.16307532499988,-62.16757577899989],[-58.242827928999894,-62.18157317499986],[-58.27277584499986,-62.180922132999825],[-58.291900193999936,-62.17538827899989],[-58.308461066999904,-62.165215752999856],[-58.33885657499987,-62.140313409],[-58.36790930899985,-62.12395598799989],[-58.37531490799996,-62.116875908999845],[-58.37901770699989,-62.10605234199984],[-58.37222245999996,-62.10182057099992],[-58.32941646999987,-62.1036109349999],[-58.31334387899988,-62.10035572699986],[-58.2792048819999,-62.08261484199986],[-58.30654863199995,-62.07463958099999],[-58.33560136599993,-62.07529062299986],[-58.391468878999916,-62.08489348799992],[-58.40440833199992,-62.08440520599985],[-58.44188391799994,-62.07219817499996],[-58.45864824099996,-62.06975676899992],[-58.476185675999915,-62.070407809999885],[-58.49339758999991,-62.07415129999982],[-58.50890051999994,-62.080987237999835],[-58.47496497299988,-62.0923804669999],[-58.467762824999845,-62.098402601999815],[-58.468129035999965,-62.11419036299985],[-58.48184160099991,-62.1273739559999],[-58.50059973899993,-62.13738372199998],[-58.62124589799992,-62.17107512799997],[-58.633941209999904,-62.17791106599999],[-58.613840298999946,-62.182875257999854],[-58.59239661399991,-62.18450286299996],[-58.55016028599988,-62.181735935],[-58.466908331999946,-62.16041432099994],[-58.44611568899995,-62.188653252999835],[-58.447377081999974,-62.20476653399998],[-58.467518683999906,-62.2155087219999],[-58.584624803999894,-62.248955987999956],[-58.62254798099994,-62.24797942499989],[-58.63337154899992,-62.22714609199999],[-58.676096157999915,-62.2237281229999],[-58.74571692599991,-62.23691171699985],[-58.78311113199987,-62.22503020599989],[-58.76081295499991,-62.21998463299995],[-58.750070766999926,-62.21575286299994],[-58.74087480399993,-62.21005624799996],[-58.75454667899987,-62.20452239399985],[-58.798003709999925,-62.197849216999884],[-58.79588782499991,-62.19548919099984],[-58.79434160099987,-62.18962981599989],[-58.793771938999896,-62.18303801899991],[-58.79405676999993,-62.17888762799997],[-58.79751542899994,-62.1735979149999],[-58.802072719999906,-62.17115650799996],[-58.807362433999856,-62.1701799459998],[-58.82518469999994,-62.169366143999966],[-58.94200598899992,-62.19312916499997],[-58.95571855399993,-62.20029062299992],[-58.95986894399996,-62.21062590899993],[-58.94912675699995,-62.22568124799994],[-58.963449673999946,-62.227471612999835],[-58.980051235999895,-62.22625090899991],[-59.01073157499991,-62.21965911299985],[-58.982818162999955,-62.18450286299996],[-58.946034308999884,-62.15878671699993],[-58.71279863199994,-62.05266692499989],[-58.70132402299989,-62.04045989399983],[-58.70164954299991,-62.034844659],[-58.70445716099988,-62.03045012799993],[-58.70677649599995,-62.02556731599986],[-58.70555579299992,-62.019138278999854],[-58.69908606699991,-62.01238372199991],[-58.68907630099994,-62.00758228999983],[-58.678212042999945,-62.00400155999986],[-58.46532141799992,-61.96648528399992],[-58.45588131399989,-61.96160247199987],[-58.44953365799994,-61.955824476999894],[-58.43980872299992,-61.94215260199996],[-58.434478318999936,-61.93726978999989],[-58.414051886999886,-61.93328215899991],[-58.38760331899991,-61.936618747999844],[-58.339914516999926,-61.94793059699992],[-58.22443600199995,-61.960219007999974],[-58.175770636999914,-61.95126718499995],[-58.05280514199998,-61.91253020599982],[-58.00788326699999,-61.904473565999886],[-57.89024817599991,-61.93840911299992]]],[[[-54.07530676999997,-61.303969007999854],[-54.09801184799991,-61.312107028999876],[-54.12124589799993,-61.30868905999995],[-54.20287024599995,-61.28411223799986],[-54.22740637899997,-61.27011484199989],[-54.207183397999955,-61.25253671699986],[-54.08690344999988,-61.18035247199986],[-54.07408606699994,-61.1676571589999],[-54.069447394999905,-61.1594377579999],[-54.05776933499993,-61.13290780999984],[-54.057362433999906,-61.1270484349999],[-54.023426886999886,-61.13054778399997],[-54.00885982999994,-61.13762786299986],[-54.00645911399991,-61.15211353999981],[-54.016916469999984,-61.16375090899999],[-54.03278561099992,-61.16887786299982],[-54.04820716099994,-61.17571379999993],[-54.05748450399989,-61.19255950299993],[-54.057199673999946,-61.20240650799995],[-54.05296790299993,-61.20728932099993],[-54.0462947259999,-61.21087004999998],[-54.03888912699989,-61.21705494599996],[-54.03425045499998,-61.22372812299993],[-54.03294837099989,-61.22918059699987],[-54.036040818999965,-61.24570077899985],[-54.04381262899994,-61.26873137799999],[-54.057036912999905,-61.28883228999995],[-54.07530676999997,-61.303969007999854]]],[[[-55.07795162699992,-61.09319426899992],[-54.973500128999916,-61.10711028399999],[-54.651519334999925,-61.106540622999844],[-54.66771399599989,-61.111423434999914],[-54.696522589999915,-61.13836028399997],[-54.710560675999936,-61.14804452899984],[-54.72956295499995,-61.15227629999996],[-55.03457597599987,-61.15642669099989],[-55.05370032499985,-61.159763278999925],[-55.06761633999991,-61.16757577899991],[-55.0716446609999,-61.17473723799995],[-55.07315019399993,-61.188571872999866],[-55.077300584999875,-61.19589609199987],[-55.08592688699988,-61.20224374799999],[-55.0957738919999,-61.20468515400001],[-55.13166256399989,-61.206963799999905],[-55.13971920499995,-61.21111419099985],[-55.15233313699991,-61.229668877999856],[-55.17894446499985,-61.25546640399988],[-55.211415167999945,-61.267266533999944],[-55.24669348899988,-61.267022394],[-55.28148352799994,-61.256931247999944],[-55.343739386999914,-61.227471612999864],[-55.369862433999884,-61.20720794099994],[-55.39122473899993,-61.17848072699981],[-55.358957485999895,-61.159763278999925],[-55.34544837099992,-61.15536874799985],[-55.34634355399993,-61.154880466999856],[-55.34666907499985,-61.15439218499996],[-55.346058722999885,-61.15398528399995],[-55.34483801999997,-61.153741143999824],[-55.37340247299994,-61.1403947899999],[-55.43049068899995,-61.12420012799986],[-55.44904537699994,-61.11500416499989],[-55.41405188699986,-61.08359140399986],[-55.378041144999884,-61.070489190999986],[-55.07795162699992,-61.09319426899992]]],[[[-44.50523841099991,-60.67555103999988],[-44.45164954299992,-60.70330169099996],[-44.50865637899991,-60.713636976999965],[-44.51854407499994,-60.71843840899986],[-44.535227016999954,-60.73650481599997],[-44.56627356699988,-60.74504973799999],[-44.64126542899993,-60.74863046699988],[-44.69758053299989,-60.74439869599995],[-44.71971594999987,-60.750420830999865],[-44.71784420499992,-60.772719007999804],[-44.736154751999976,-60.76441822699982],[-44.819935675999886,-60.740004164999874],[-44.82774817599997,-60.73577239399995],[-44.83283443899989,-60.73121510199981],[-44.84308834499993,-60.71900807099993],[-44.847320115999935,-60.71550872199984],[-44.80524654899997,-60.730157158999944],[-44.78302975199992,-60.7338192689999],[-44.76097571499991,-60.733330987999906],[-44.722808397999955,-60.725681247999894],[-44.703846808999856,-60.72470468499999],[-44.69456946499988,-60.722751559999956],[-44.68651282499988,-60.71835702899988],[-44.680775519999884,-60.70859140399985],[-44.68211829299988,-60.69801197699997],[-44.690256313999896,-60.67620208099984],[-44.67658443899995,-60.68474700299987],[-44.60928300699993,-60.70891692499987],[-44.60301673099988,-60.70916106599991],[-44.59850012899991,-60.706638278999975],[-44.59154212099995,-60.69866301899984],[-44.58731035099993,-60.695733330999914],[-44.582753058999884,-60.694919528999904],[-44.57396399599991,-60.696058851999936],[-44.56965084499989,-60.695733330999914],[-44.552723761999914,-60.68808359199998],[-44.539214647999955,-60.679945570999955],[-44.5248103509999,-60.674737237999885],[-44.50523841099991,-60.67555103999988]]],[[[-45.01081295499992,-60.70859140399985],[-45.02562415299988,-60.710219007999875],[-45.0410863919999,-60.70777760199983],[-45.053944464999915,-60.70305754999991],[-45.07811438699994,-60.68621184699991],[-45.08336341099991,-60.68466562299987],[-45.07363847599987,-60.67229583099994],[-45.06899980399993,-60.66025156000001],[-45.067128058999884,-60.63111744599997],[-45.06187903599991,-60.63551197699985],[-45.02961178299995,-60.656833592],[-45.028553839999915,-60.661797783999866],[-45.02769934799991,-60.67131926899996],[-45.02574622299994,-60.68181731599984],[-45.02041581899988,-60.69036223799986],[-45.01569576699998,-60.69345468499985],[-45.00503495999993,-60.69801197699997],[-45.00023352799985,-60.70086028399984],[-45.01081295499992,-60.70859140399985]]],[[[-45.66576087099995,-60.52410247199994],[-45.56753495999987,-60.5536434879999],[-45.545725063999924,-60.55486419099991],[-45.48704993399991,-60.544691664999874],[-45.477162238999874,-60.54558684699987],[-45.44741777299987,-60.553806247999866],[-45.39098059799994,-60.57927825299987],[-45.37238521999993,-60.5972632789999],[-45.38951575399997,-60.612237237999935],[-45.381703253999966,-60.6137020809999],[-45.34943600199995,-60.62859465899985],[-45.32921301999991,-60.63241952899996],[-45.27183997299991,-60.62672291499989],[-45.19066321499988,-60.63290780999995],[-45.21165930899994,-60.652520440999915],[-45.21784420499989,-60.65455494599994],[-45.17808997299991,-60.66668059699985],[-45.15404212099986,-60.682386976999815],[-45.14679928299995,-60.68580494599991],[-45.16502844999991,-60.682386976999815],[-45.17577063699994,-60.68206145599998],[-45.182932094999984,-60.68385182099986],[-45.18732662699995,-60.698907158999965],[-45.17467200399989,-60.71428801899983],[-45.14102128799988,-60.736097914999974],[-45.16242428299992,-60.73748137799994],[-45.18464107999998,-60.733330987999906],[-45.22594153599994,-60.716892185],[-45.2618708979999,-60.692966403999854],[-45.28380286399994,-60.68336353999988],[-45.307484503999945,-60.67888762799991],[-45.355295376999884,-60.675713799999855],[-45.35358639199998,-60.67351653399995],[-45.35655676999991,-60.66838958099984],[-45.363107876999976,-60.660414320999884],[-45.366810675999915,-60.658868096999846],[-45.40851803299998,-60.64804452899995],[-45.42145748599998,-60.64657968499989],[-45.46580969999991,-60.65129973799989],[-45.49791419199988,-60.64934661299986],[-45.54401607999992,-60.641696873],[-45.59056555899994,-60.63925546699998],[-45.68053137899991,-60.64910247199999],[-45.718861456999946,-60.64560312299991],[-45.74258378799996,-60.626234632999804],[-45.752349412999905,-60.614353122999944],[-45.75910396999993,-60.6110979149999],[-45.760121222999906,-60.60808684699999],[-45.75259355399993,-60.5963680969999],[-45.78929602799985,-60.58407968499995],[-45.82469641799986,-60.586114190999886],[-45.9329320949999,-60.622816664999796],[-45.95225989499994,-60.625583591999856],[-45.97207597599996,-60.62542083099997],[-45.99364173099985,-60.62175872199993],[-46.001779751999976,-60.618259372999844],[-46.006988084999875,-60.612725518999916],[-46.00869706899988,-60.60808684699999],[-46.00890051999994,-60.60263437299986],[-46.00747636599996,-60.59579843499985],[-46.004058397999955,-60.58757903399985],[-45.999989386999886,-60.580661716999934],[-45.994618292999945,-60.5739885399998],[-45.98814856699994,-60.56853606599985],[-45.98094641799989,-60.56462981599994],[-45.97179114499991,-60.56292083099986],[-45.95714270699992,-60.56601327899993],[-45.94831295499995,-60.566338799999954],[-45.957102016999926,-60.53411223799982],[-45.95506751199988,-60.52776458099998],[-45.935129360999895,-60.5246721329999],[-45.916737433999856,-60.52613697699995],[-45.85195878799993,-60.54729583099987],[-45.84284420499995,-60.548435153999904],[-45.833973761999914,-60.5466447899999],[-45.80809485599991,-60.53582122199983],[-45.79303951699998,-60.53435637799995],[-45.761219855999855,-60.535577080999964],[-45.746978318999936,-60.53232187299992],[-45.74665279899992,-60.53085702899987],[-45.74437415299985,-60.526788018999824],[-45.74111894399991,-60.522230726999865],[-45.73729407499988,-60.518975518999824],[-45.72972571499994,-60.51677825299993],[-45.72057044199994,-60.516208591999956],[-45.70335852799994,-60.51734791499981],[-45.66576087099995,-60.52410247199994]]]]}}]} \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/resources/polygons_converted/AK-02-alaska-counties.geojson b/GlobalQuakeCore/src/main/resources/polygons_converted/AK-02-alaska-counties.geojson deleted file mode 100644 index ed1fe29..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons_converted/AK-02-alaska-counties.geojson +++ /dev/null @@ -1,36 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "cb_2015_alaska_county_20m", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "230", "COUNTYNS": "02339479", "AFFGEOID": "0500000US02230", "GEOID": "02230", "NAME": "Skagway", "LSAD": "12", "ALAND": 1171510537, "AWATER": 30331285 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.028137620294217, 59.345355306193341 ], [ -135.376301561757145, 59.340370477674895 ], [ -135.722698173567949, 59.729187102113677 ], [ -135.477039351926607, 59.800220908501529 ], [ -135.231380530285264, 59.696785716743776 ], [ -135.213707233764296, 59.664384331373881 ], [ -135.114736773246932, 59.623259496096701 ], [ -135.026370290642149, 59.56344155387535 ], [ -135.026370290642149, 59.474960847672932 ], [ -135.067018872640347, 59.421373941099645 ], [ -135.010464323773277, 59.381495312952076 ], [ -135.028137620294217, 59.345355306193341 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "060", "COUNTYNS": "01419967", "AFFGEOID": "0500000US02060", "GEOID": "02060", "NAME": "Bristol Bay", "LSAD": "04", "ALAND": 1304962195, "AWATER": 993834934 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.11799094184201, 58.866811768422529 ], [ -157.072040370887521, 58.886751082496318 ], [ -156.317390609442526, 58.894228325273986 ], [ -156.317390609442526, 58.610093099722562 ], [ -157.245238676792923, 58.610093099722562 ], [ -157.137431568015074, 58.681126906110421 ], [ -157.063203722627037, 58.740944848331772 ], [ -156.994277866195318, 58.835656590182246 ], [ -157.017253151672548, 58.863073147033695 ], [ -157.11799094184201, 58.866811768422529 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "013", "COUNTYNS": "01419964", "AFFGEOID": "0500000US02013", "GEOID": "02013", "NAME": "Aleutians East", "LSAD": "04", "ALAND": 18082872046, "AWATER": 20793145623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -160.253233744660321, 54.913842753294901 ], [ -160.191377206836961, 55.038463466256047 ], [ -160.186075217880671, 55.118220722551186 ], [ -160.13658998762196, 55.17180762912448 ], [ -160.025248219539918, 55.204209014494381 ], [ -159.869723210155485, 55.285212477919124 ], [ -159.843213265374033, 55.25031867829 ], [ -159.814935990940512, 55.178038664772536 ], [ -159.670014959468631, 55.183023493290982 ], [ -159.521559268692556, 55.254057299678834 ], [ -159.489747334954842, 55.189254528939038 ], [ -159.33952431452667, 55.047186916163334 ], [ -159.203439931315302, 54.915088960424512 ], [ -159.272365787747049, 54.863994468110441 ], [ -159.309479710441053, 54.866486882369664 ], [ -159.449098752956644, 54.941259310146357 ], [ -159.505653301823713, 55.027247602089545 ], [ -159.634668366426723, 55.037217259126436 ], [ -159.751312123465055, 55.067126230237115 ], [ -159.813168661288415, 55.027247602089545 ], [ -160.027015549192015, 55.021016566441489 ], [ -160.099476064927956, 54.963691038479361 ], [ -160.226723799878869, 54.863994468110441 ], [ -160.253233744660321, 54.913842753294901 ] ] ], [ [ [ -160.855893156025047, 55.318860070418637 ], [ -160.808175255418462, 55.37120076986232 ], [ -160.687996839075936, 55.402355948102603 ], [ -160.516565862822603, 55.379924219769599 ], [ -160.33276357900462, 55.436003540602115 ], [ -160.26030306326868, 55.463420097453564 ], [ -160.13658998762196, 55.44971181902784 ], [ -160.154263284142928, 55.378678012639988 ], [ -160.306253634223197, 55.303905584863294 ], [ -160.341600227265104, 55.252811092549223 ], [ -160.468847962216017, 55.288951099307958 ], [ -160.527169840735183, 55.256549713938057 ], [ -160.486521258736985, 55.183023493290982 ], [ -160.525402511083087, 55.130682793847299 ], [ -160.656184905338193, 55.160591764957978 ], [ -160.735714739682521, 55.151868315050699 ], [ -160.820546562983111, 55.118220722551186 ], [ -160.841754518808273, 55.205455221623993 ], [ -160.855893156025047, 55.318860070418637 ] ] ], [ [ [ -161.426740633652059, 55.216671085790495 ], [ -161.357814777220312, 55.22165591430894 ], [ -161.329537502786764, 55.220409707179329 ], [ -161.345443469655635, 55.159345557828367 ], [ -161.451483248781386, 55.178038664772536 ], [ -161.426740633652059, 55.216671085790495 ] ] ], [ [ [ -161.697142070422728, 55.249072471160389 ], [ -161.523943764517327, 55.272750406623011 ], [ -161.561057687211331, 55.207947635883215 ], [ -161.691840081466438, 55.199224185975936 ], [ -161.697142070422728, 55.249072471160389 ] ] ], [ [ [ -162.844139014633043, 54.510071643300783 ], [ -162.584341555774927, 54.44776128682021 ], [ -162.343984723089875, 54.401651623024584 ], [ -162.388167964392267, 54.368004030525071 ], [ -162.465930469084498, 54.343079887932845 ], [ -162.609084170904282, 54.369250237654683 ], [ -162.759307191332425, 54.371742651913905 ], [ -162.861812311153983, 54.424083351357588 ], [ -162.844139014633043, 54.510071643300783 ] ] ], [ [ [ -158.894157242198503, 56.809323797433969 ], [ -158.890622582894309, 56.754490683731063 ], [ -159.028474295757803, 56.754490683731063 ], [ -159.028474295757803, 56.669748598917487 ], [ -159.275900447051242, 56.672241013176709 ], [ -159.275900447051242, 56.581267892715069 ], [ -159.594019784428497, 56.581267892715069 ], [ -159.594019784428497, 56.495279600771873 ], [ -159.898000484589005, 56.491540979383039 ], [ -159.903302473545295, 56.322056809755878 ], [ -159.809634001984222, 56.322056809755878 ], [ -159.804332013027931, 55.981842263371945 ], [ -159.867955880503388, 55.981842263371945 ], [ -159.867955880503388, 55.888376728651082 ], [ -159.565742509994976, 55.888376728651082 ], [ -159.565742509994976, 55.636642888469567 ], [ -159.572811828603363, 55.626673231432669 ], [ -159.696524904250083, 55.573086324859375 ], [ -159.733638826944087, 55.569347703470541 ], [ -159.76014877172554, 55.614211160136556 ], [ -159.678851607729115, 55.655335995413736 ], [ -159.671782289120728, 55.750047737264211 ], [ -159.625831718166239, 55.802388436707894 ], [ -159.678851607729115, 55.838528443466622 ], [ -159.768985419985995, 55.852236721892353 ], [ -159.846747924678226, 55.802388436707894 ], [ -159.936881736935135, 55.802388436707894 ], [ -160.025248219539918, 55.792418779670996 ], [ -160.057060153277661, 55.721384973283143 ], [ -160.129520669013601, 55.681506345135574 ], [ -160.279743689441744, 55.6403815098584 ], [ -160.392852787175883, 55.601749088840442 ], [ -160.463545973259727, 55.533207696711813 ], [ -160.46177864360763, 55.505791139860357 ], [ -160.521867851778893, 55.473389754490455 ], [ -160.654417575686097, 55.512022175508413 ], [ -160.666788883250774, 55.459681476064731 ], [ -160.78166531063701, 55.450958026157451 ], [ -160.836452529851982, 55.472143547360844 ], [ -160.976071572367573, 55.472143547360844 ], [ -161.080344021841228, 55.408586983750659 ], [ -161.253542327746629, 55.356246284306977 ], [ -161.486829841823322, 55.359984905695811 ], [ -161.515107116256843, 55.386155255417655 ], [ -161.477993193562838, 55.439742161990949 ], [ -161.469156545302354, 55.495821482823466 ], [ -161.377255403393349, 55.569347703470541 ], [ -161.39316137026222, 55.62791943856228 ], [ -161.483295182519129, 55.632904267080733 ], [ -161.587567631992783, 55.619195988655001 ], [ -161.658260818076627, 55.55937804643365 ], [ -161.700676729726922, 55.513268382638024 ], [ -161.686538092510148, 55.408586983750659 ], [ -161.778439234419153, 55.330075934585139 ], [ -161.86503838737184, 55.267765578104566 ], [ -161.817320486765254, 55.176792457642925 ], [ -161.720117355899987, 55.154360729309921 ], [ -161.576963654080203, 55.104512444125461 ], [ -161.550453709298779, 55.065880023107503 ], [ -161.691840081466438, 55.078342094403617 ], [ -161.792577871635928, 55.052171744681779 ], [ -161.907454299022163, 55.100773822736627 ], [ -161.955172199628748, 55.111989686903129 ], [ -162.052375330494044, 55.074603473014783 ], [ -162.117766527621569, 55.10326623699585 ], [ -162.19022704335751, 55.067126230237115 ], [ -162.218504317791059, 55.029740016348768 ], [ -162.23441028465993, 54.96244483134975 ], [ -162.236177614311998, 54.881441367925007 ], [ -162.282128185266515, 54.841562739777437 ], [ -162.349286712046165, 54.836577911258992 ], [ -162.427049216738368, 54.895149646350731 ], [ -162.434118535346755, 54.930043445979848 ], [ -162.412910579521622, 55.037217259126436 ], [ -162.471232458040788, 55.052171744681779 ], [ -162.568435588906056, 55.004815873756542 ], [ -162.58787621507912, 54.97241448838664 ], [ -162.708054631421646, 54.958706209960916 ], [ -162.833535036720463, 54.927551031720625 ], [ -162.913064871064762, 54.949982760053636 ], [ -162.962550101323473, 54.99360000959004 ], [ -163.06505522114503, 54.926304824591014 ], [ -163.149887044445649, 54.886426196443452 ], [ -163.254159493919303, 54.839070325518215 ], [ -163.353129954436668, 54.810407561537147 ], [ -163.280669438700755, 54.776759969037641 ], [ -163.185233637487556, 54.77551376190803 ], [ -163.068589880449224, 54.71320340542745 ], [ -163.038545276363607, 54.647154427558043 ], [ -163.224114889833686, 54.677063398668722 ], [ -163.392011206782797, 54.658370291724552 ], [ -163.572278831296586, 54.623476492095428 ], [ -163.803799015721154, 54.635938563391541 ], [ -164.038853859449915, 54.624722699225039 ], [ -164.256235406657737, 54.572381999781356 ], [ -164.337532570654133, 54.523779921726508 ], [ -164.351671207870908, 54.465208186634769 ], [ -164.455943657344562, 54.420344729968754 ], [ -164.639745941162573, 54.390435758858082 ], [ -164.744018390636228, 54.394174380246916 ], [ -164.86066214767456, 54.431560594135256 ], [ -164.903078059324855, 54.498855779134281 ], [ -164.943726641323082, 54.532503371633787 ], [ -164.949028630279372, 54.579859242559024 ], [ -164.864196806978754, 54.619737870706594 ], [ -164.740483731332034, 54.645908220428431 ], [ -164.675092534204481, 54.703233748390559 ], [ -164.576122073687117, 54.82536204709249 ], [ -164.576122073687117, 54.895149646350731 ], [ -164.434735701519429, 54.933782067368689 ], [ -164.342834559610424, 54.89390343922112 ], [ -164.204982846746958, 54.931289653109459 ], [ -164.12015102344634, 54.969922074127417 ], [ -163.994670618147524, 54.983630352553149 ], [ -163.895700157630159, 55.039709673385659 ], [ -163.773754411635537, 55.055910366070613 ], [ -163.528095589994194, 55.040955880515277 ], [ -163.429125129476802, 54.954967588572082 ], [ -163.344293306176212, 54.974906902645863 ], [ -163.280669438700755, 55.033478637737602 ], [ -163.314248702090566, 55.126944172458465 ], [ -163.132213747924681, 55.180531079031759 ], [ -163.031475957755219, 55.173053836254091 ], [ -162.861812311153983, 55.199224185975936 ], [ -162.900693563500113, 55.252811092549223 ], [ -162.812327080895301, 55.30016696347446 ], [ -162.640896104641996, 55.393632498195323 ], [ -162.564900929601862, 55.465912511712787 ], [ -162.365192678915008, 55.604241503099665 ], [ -162.218504317791059, 55.710169109116642 ], [ -162.119533857273666, 55.7488015301346 ], [ -162.050608000841919, 55.791172572541385 ], [ -161.900384980413776, 55.833543614948177 ], [ -161.80848383850477, 55.892115350039916 ], [ -161.7130480372916, 55.904577421336029 ], [ -161.451483248781386, 55.954425706520489 ], [ -161.156339196881362, 56.011751234482617 ], [ -160.965467594454992, 56.022967098649126 ], [ -160.806407925766365, 56.024213305778737 ], [ -160.811709914722655, 55.946948463742821 ], [ -160.794036618201687, 55.885884314391859 ], [ -160.564283763429216, 55.863452586058855 ], [ -160.507729214562119, 55.869683621706912 ], [ -160.45647665465134, 55.917039492632149 ], [ -160.534239159343571, 55.959410535038941 ], [ -160.589026378558543, 55.983088470501556 ], [ -160.488288588389082, 56.07655400522242 ], [ -160.405224094740561, 56.207405753831623 ], [ -160.385783468567524, 56.279685767349086 ], [ -160.223189140574675, 56.346980952348112 ], [ -160.145426635882444, 56.400567858921406 ], [ -159.98459963754172, 56.450416144105866 ], [ -159.827307298505161, 56.543881678826722 ], [ -159.535697905909331, 56.627377556510694 ], [ -159.221113227836241, 56.739536198175728 ], [ -158.973687076542802, 56.842971389933481 ], [ -158.894157242198503, 56.809323797433969 ] ] ], [ [ [ -165.602940601554877, 54.045236383955697 ], [ -165.468623547995577, 54.078883976455209 ], [ -165.281286604873401, 54.115023983213938 ], [ -165.14166756235781, 54.131224675898892 ], [ -165.007350508798538, 54.134963297287726 ], [ -164.883637433151819, 54.196027446638688 ], [ -164.823548224980556, 54.224690210619755 ], [ -164.763459016809293, 54.223444003490137 ], [ -164.816478906372168, 54.158641232750341 ], [ -164.956097948887731, 54.060190869511032 ], [ -165.088647672794934, 54.072652940807153 ], [ -165.288355923481788, 54.037759141178029 ], [ -165.555222700948292, 54.022804655622693 ], [ -165.602940601554877, 54.045236383955697 ] ] ], [ [ [ -166.062446311099848, 54.184811582472186 ], [ -165.959941191278261, 54.220951589230914 ], [ -165.868040049369284, 54.214720553582858 ], [ -165.625915887032136, 54.29821643126683 ], [ -165.479227525908158, 54.295724017007608 ], [ -165.383791724694959, 54.196027446638688 ], [ -165.549920711992002, 54.111285361825104 ], [ -165.784975555720763, 54.068914319418319 ], [ -165.875109367977643, 54.036512934048417 ], [ -165.901619312759095, 54.062683283770255 ], [ -166.046540344230976, 54.043990176826085 ], [ -166.11193154135853, 54.122501225991613 ], [ -166.062446311099848, 54.184811582472186 ] ] ], [ [ [ -166.226807968744765, 53.985418441734346 ], [ -166.17378807918189, 53.997880513030459 ], [ -166.076584948316594, 53.969217749049399 ], [ -166.161416771617212, 53.935570156549886 ], [ -166.17909006813818, 53.941801192197943 ], [ -166.226807968744765, 53.959248092012508 ], [ -166.226807968744765, 53.985418441734346 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "050", "COUNTYNS": "01419966", "AFFGEOID": "0500000US02050", "GEOID": "02050", "NAME": "Bethel", "LSAD": "05", "ALAND": 105075885504, "AWATER": 12779538666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -165.108088298967999, 60.926792153670313 ], [ -164.797038280199104, 60.982871474502829 ], [ -164.616770655685315, 60.979132853113995 ], [ -164.528404173080503, 60.940500432096044 ], [ -164.233260121180479, 60.987856303021275 ], [ -164.155497616488248, 61.022750102650399 ], [ -164.146660968227792, 61.075090802094081 ], [ -164.212052165355317, 61.082568044871749 ], [ -164.203215517094861, 61.151109437000379 ], [ -164.121918353098437, 61.127431501537764 ], [ -164.017645903624782, 61.19223427227756 ], [ -163.922210102411583, 61.210927379221729 ], [ -163.982299310582846, 61.243328764591631 ], [ -163.992903288495427, 61.371688098941618 ], [ -163.786125719200186, 61.366703270423166 ], [ -163.655343324945079, 61.335548092182883 ], [ -163.524560930690001, 61.355487406256664 ], [ -163.53163024929836, 61.40159707005229 ], [ -163.430892459128899, 61.483846740606651 ], [ -163.171095000270782, 61.448952940977527 ], [ -163.061520561840837, 61.480108119217817 ], [ -162.847673673937237, 61.498801226161987 ], [ -162.754005202376135, 61.542418475698383 ], [ -162.504811721430599, 61.556126754124115 ], [ -162.476534446997078, 61.503786054680432 ], [ -162.328078756221004, 61.518740540235768 ], [ -162.013494078147914, 61.477615704958595 ], [ -161.886246343197001, 61.48260053347704 ], [ -161.697142070422728, 61.52995640440227 ], [ -161.449715919129289, 61.568588825420228 ], [ -161.126294592795716, 61.599744003660518 ], [ -160.954863616542411, 61.685732295603707 ], [ -160.774595992028623, 61.739319202177001 ], [ -160.597863026819027, 61.760504723380393 ], [ -160.350436875525588, 61.819076458472139 ], [ -160.201981184749513, 61.81035300856486 ], [ -160.186075217880671, 61.831538529768252 ], [ -160.468847962216017, 61.870170950786211 ], [ -160.534239159343571, 61.94743579282212 ], [ -159.265296469138661, 61.946189585692508 ], [ -159.261761809834468, 62.032177877635704 ], [ -158.5318546635188, 62.032177877635704 ], [ -158.5318546635188, 62.119412376708503 ], [ -157.51564011356362, 62.124397205226948 ], [ -157.075575030191715, 62.129382033745401 ], [ -157.073807700539618, 62.029685463376481 ], [ -155.693523242252638, 62.029685463376481 ], [ -154.656100736472297, 62.029685463376481 ], [ -153.735321987730288, 62.029685463376481 ], [ -153.740623976686578, 62.121904790967726 ], [ -153.394227364875775, 62.12564341235656 ], [ -153.394227364875775, 62.209139290040532 ], [ -153.069038708890105, 62.207893082910921 ], [ -153.067271379238008, 62.295127581983721 ], [ -153.000112852458358, 62.295127581983721 ], [ -153.001880182110455, 61.425275005514905 ], [ -153.470222539915881, 61.427767419774128 ], [ -153.475524528872199, 61.136154951445043 ], [ -153.43664327652607, 60.908099046726143 ], [ -154.422813222395632, 60.906852839596532 ], [ -155.960390019719142, 60.906852839596532 ], [ -156.900609394634216, 60.906852839596532 ], [ -157.169243501752817, 60.911837668114977 ], [ -157.171010831404914, 61.000318374317388 ], [ -157.520942102519911, 61.000318374317388 ], [ -157.520942102519911, 60.910591460985366 ], [ -157.699442397381603, 60.910591460985366 ], [ -157.697675067729506, 60.823356961912559 ], [ -157.879710021895391, 60.82460316904217 ], [ -157.883244681199585, 60.903114218207698 ], [ -158.445255510566113, 60.900621803948475 ], [ -158.945409802109282, 60.903114218207698 ], [ -158.948944461413475, 60.823356961912559 ], [ -159.014335658541029, 60.823356961912559 ], [ -159.016102988193126, 60.731137634321314 ], [ -159.183999305142237, 60.731137634321314 ], [ -159.185766634794334, 60.643903135248507 ], [ -159.367801588960219, 60.643903135248507 ], [ -159.369568918612316, 60.470680344232512 ], [ -159.433192786087773, 60.470680344232512 ], [ -159.438494775044063, 60.38718446654854 ], [ -159.615227740253658, 60.388430673678151 ], [ -159.613460410601562, 60.215207882662156 ], [ -159.78312405720277, 60.213961675532545 ], [ -159.786658716506963, 60.12797338358935 ], [ -159.85028258398242, 60.129219590718961 ], [ -159.853817243286613, 59.963474042480641 ], [ -160.014644241627366, 59.9597354210918 ], [ -160.018178900931531, 59.786512630075805 ], [ -160.24793175570403, 59.785266422946194 ], [ -160.249699085356127, 59.610797424800587 ], [ -160.424664720913626, 59.612043631930199 ], [ -160.424664720913626, 59.436328426654981 ], [ -160.481219269780695, 59.436328426654981 ], [ -160.479451940128598, 59.351586341841397 ], [ -160.650882916381903, 59.349093927582175 ], [ -160.650882916381903, 59.261859428509368 ], [ -160.820546562983111, 59.261859428509368 ], [ -160.818779233331043, 59.084898016104539 ], [ -160.875333782198084, 59.083651808974928 ], [ -160.873566452546015, 59.002648345550185 ], [ -161.034393450886739, 59.002648345550185 ], [ -161.034393450886739, 58.838149004441469 ], [ -161.085646010797518, 58.821948311756515 ], [ -161.368418755132893, 58.823194518886126 ], [ -161.368418755132893, 58.735960019813326 ], [ -161.341908810351441, 58.735960019813326 ], [ -161.371953414437087, 58.666172420555085 ], [ -161.550453709298779, 58.611339306852173 ], [ -161.751929289637701, 58.552767571760434 ], [ -161.80318184954848, 58.612585513981784 ], [ -162.025865385712592, 58.607600685463339 ], [ -162.170786417184445, 58.64872552074052 ], [ -161.99405345197485, 58.689850356017701 ], [ -161.824389805373642, 58.734713812683715 ], [ -161.766067926854475, 58.845626247219137 ], [ -161.804949179200605, 58.991432481383683 ], [ -161.910988958326357, 59.093621466011818 ], [ -161.995820781626946, 59.173378722306957 ], [ -162.047073341537725, 59.2543821857317 ], [ -161.992286122322753, 59.337878063415673 ], [ -161.849132420502997, 59.432589805266147 ], [ -161.790810541983831, 59.467483604895264 ], [ -161.702444059379019, 59.491161540357886 ], [ -161.773137245462863, 59.565933968134573 ], [ -161.875642365284421, 59.649429845818545 ], [ -161.886246343197001, 59.698031923873387 ], [ -162.045306011885657, 59.850069193685989 ], [ -162.107162549709017, 59.919856792944238 ], [ -162.142509142750924, 59.967212663869475 ], [ -162.227340966051543, 60.056939577201497 ], [ -162.372261997523395, 60.167852011736919 ], [ -162.450024502215626, 60.175329254514587 ], [ -162.494207743518018, 60.130465797848572 ], [ -162.495975073170115, 60.079371305534508 ], [ -162.487138424909631, 60.028276813220437 ], [ -162.51541569934318, 59.975936113776754 ], [ -162.621455478468931, 59.97219749238792 ], [ -162.736331905855167, 59.97219749238792 ], [ -162.808792421591107, 59.933565071369962 ], [ -162.928970837933633, 59.908640928777729 ], [ -163.172862329922879, 59.845084365167544 ], [ -163.459169733562447, 59.81019056553842 ], [ -163.77198708198344, 59.795236079983084 ], [ -163.931046750672067, 59.803959529890363 ], [ -164.134289660663114, 59.846330572297155 ], [ -164.208517506051123, 59.934811278499573 ], [ -164.180240231617603, 59.96222783535103 ], [ -164.132522331011018, 59.99089059933209 ], [ -164.272141373526608, 60.046969920164607 ], [ -164.409993086390074, 60.098064412478678 ], [ -164.517800195167922, 60.20025339710682 ], [ -164.618537985337412, 60.235147196735937 ], [ -164.698067819681739, 60.296211346086906 ], [ -164.777597654026039, 60.293718931827684 ], [ -164.98437522332128, 60.351044459789804 ], [ -165.129296254793161, 60.434540337473777 ], [ -165.069207046621898, 60.460710687195615 ], [ -165.014419827406925, 60.470680344232512 ], [ -164.956097948887731, 60.526759665065029 ], [ -164.986142552973376, 60.541714150620365 ], [ -165.093949661751225, 60.531744493583474 ], [ -165.191152792616521, 60.49685069395435 ], [ -165.274217286265014, 60.498096901083962 ], [ -165.362583768869825, 60.506820350991248 ], [ -165.420905647388992, 60.550437600527644 ], [ -165.367885757826116, 60.580346571638323 ], [ -165.207058759485363, 60.610255542749002 ], [ -165.072741705926092, 60.683781763396077 ], [ -164.991444541929667, 60.698736248951413 ], [ -165.010885168102732, 60.744845912747039 ], [ -165.040929772188349, 60.772262469598488 ], [ -165.030325794275768, 60.838311447467902 ], [ -165.085113013490741, 60.913083875244588 ], [ -165.108088298967999, 60.926792153670313 ] ] ], [ [ [ -167.430359461822121, 60.197760982847598 ], [ -167.317250364087982, 60.231408575347103 ], [ -167.112240124444838, 60.231408575347103 ], [ -166.93727448888734, 60.215207882662156 ], [ -166.841838687674169, 60.211469261273322 ], [ -166.811794083588524, 60.25010168229128 ], [ -166.834769369065782, 60.26879478923545 ], [ -166.712823623071159, 60.327366524327189 ], [ -166.615620492205892, 60.319889281549521 ], [ -166.548461965426242, 60.362260323956313 ], [ -166.491907416559172, 60.389676880807762 ], [ -166.373496329868715, 60.356029288308257 ], [ -166.24094660596154, 60.389676880807762 ], [ -166.150812793704631, 60.437032751733 ], [ -166.103094893098046, 60.36849135960437 ], [ -166.037703695970492, 60.319889281549521 ], [ -165.883946016238127, 60.343567217012136 ], [ -165.680703106247108, 60.292472724698072 ], [ -165.723119017897403, 60.236393403865549 ], [ -165.684237765551302, 60.199007189977209 ], [ -165.723119017897403, 60.164113390348085 ], [ -165.666564469030334, 60.124234762200516 ], [ -165.708980380680629, 60.066909234238388 ], [ -165.634752535292591, 60.01955336331315 ], [ -165.532247415471033, 59.953504385443743 ], [ -165.581732645729716, 59.908640928777729 ], [ -165.707213051028532, 59.883716786185502 ], [ -165.770836918503988, 59.901163686000061 ], [ -165.857436071456704, 59.870008507759778 ], [ -165.98291647675552, 59.871254714889389 ], [ -166.085421596577078, 59.840099536649099 ], [ -166.085421596577078, 59.776542973038914 ], [ -166.191461375702829, 59.750372623317077 ], [ -166.272758539699254, 59.811436772668038 ], [ -166.362892351956162, 59.838853329519488 ], [ -166.513115372384306, 59.846330572297155 ], [ -166.665105722464574, 59.878731957667057 ], [ -166.794120787067584, 59.913625757296174 ], [ -166.939041818539437, 59.965966456739864 ], [ -167.064522223838253, 59.988398185072867 ], [ -167.225349222179005, 60.04073888451655 ], [ -167.333156330956854, 60.066909234238388 ], [ -167.343760308869435, 60.126727176459738 ], [ -167.430359461822121, 60.197760982847598 ] ] ], [ [ [ -173.07521037061673, 60.703721077469858 ], [ -172.912616042623881, 60.604024507100938 ], [ -172.847224845496356, 60.516790008028138 ], [ -172.546778804640013, 60.413354816270385 ], [ -172.380649817342999, 60.383445845159706 ], [ -172.239263445175311, 60.33733618136408 ], [ -172.253402082392086, 60.297457553216518 ], [ -172.415996410384935, 60.314904453031076 ], [ -172.629843298288534, 60.334843767104857 ], [ -172.896710075755038, 60.449494823029113 ], [ -173.06460639270415, 60.501835522472803 ], [ -173.115858952614929, 60.658857620803843 ], [ -173.07521037061673, 60.703721077469858 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "180", "COUNTYNS": "01419977", "AFFGEOID": "0500000US02180", "GEOID": "02180", "NAME": "Nome", "LSAD": "05", "ALAND": 59473768672, "AWATER": 13767977491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -164.395854449173328, 66.580833900717622 ], [ -164.395854449173328, 66.476152501830256 ], [ -164.318091944481097, 66.476152501830256 ], [ -164.318091944481097, 66.129706919798267 ], [ -164.243864099093059, 66.129706919798267 ], [ -164.243864099093059, 65.783261337766277 ], [ -163.964626014061878, 65.783261337766277 ], [ -163.964626014061878, 65.610038546750275 ], [ -163.756081115114569, 65.610038546750275 ], [ -163.756081115114569, 65.438061962863884 ], [ -162.78404980646178, 65.438061962863884 ], [ -161.801414519896412, 65.438061962863884 ], [ -161.059136066016094, 65.438061962863884 ], [ -159.800797353723738, 65.438061962863884 ], [ -159.800797353723738, 65.522804047677468 ], [ -159.594019784428497, 65.522804047677468 ], [ -159.387242215133284, 65.522804047677468 ], [ -159.385474885481187, 65.262346757588674 ], [ -159.579881147211722, 65.263592964718285 ], [ -159.578113817559654, 64.923378418334352 ], [ -159.776054738594382, 64.923378418334352 ], [ -159.772520079290189, 64.75015562731835 ], [ -159.977530318933333, 64.748909420188738 ], [ -159.959857022412365, 64.401217631027137 ], [ -159.9563223631082, 64.051033427606313 ], [ -159.730104167639894, 64.052279634735925 ], [ -159.69829223390218, 63.793068551776727 ], [ -159.929812418326748, 63.794314758906339 ], [ -159.928045088674651, 63.704587845574309 ], [ -160.103010724232149, 63.703341638444698 ], [ -160.097708735275859, 63.614860932242287 ], [ -160.493590577345373, 63.613614725112676 ], [ -160.495357906997469, 63.537596090206378 ], [ -160.69153149838013, 63.537596090206378 ], [ -160.693298828032198, 63.359388470671931 ], [ -160.672090872207065, 63.270907764469513 ], [ -160.847056507764563, 63.269661557339901 ], [ -160.850591167068757, 63.012942888639941 ], [ -161.990518792670684, 63.012942888639941 ], [ -161.988751463018559, 63.096438766323907 ], [ -162.176088406140764, 63.096438766323907 ], [ -162.183157724749123, 63.186165679655936 ], [ -162.374029327175492, 63.186165679655936 ], [ -162.377563986479686, 63.273400178728735 ], [ -162.596712863339604, 63.28087742150641 ], [ -162.526019677255761, 63.317017428265139 ], [ -162.421747227782078, 63.409236755856391 ], [ -162.351054041698262, 63.454100212522405 ], [ -162.561366270297668, 63.537596090206378 ], [ -162.708054631421646, 63.57747471835394 ], [ -162.58787621507912, 63.626076796408789 ], [ -162.400539271956944, 63.634800246316068 ], [ -162.252083581180869, 63.542580918724823 ], [ -162.071815956667081, 63.513918154743756 ], [ -161.9816821444102, 63.446622969744737 ], [ -161.677701444249692, 63.465316076688907 ], [ -161.421438644695769, 63.460331248170462 ], [ -161.19168578992327, 63.490240219281134 ], [ -161.07327470323284, 63.562520232798605 ], [ -160.783432640289107, 63.753189923629165 ], [ -160.765759343768138, 63.827962351405851 ], [ -160.900076397327439, 63.997446521033012 ], [ -160.940724979325637, 64.065987913161649 ], [ -160.961932935150799, 64.220517597233467 ], [ -161.177547152706524, 64.343892103065002 ], [ -161.26414630565921, 64.397479009638303 ], [ -161.506270467996359, 64.42240315223053 ], [ -161.469156545302354, 64.505899029914502 ], [ -161.389626710958026, 64.548270072321287 ], [ -161.198755108531657, 64.495929372877612 ], [ -160.993744868888541, 64.540792829543619 ], [ -160.794036618201687, 64.619303878709147 ], [ -160.783432640289107, 64.717754241948455 ], [ -160.935422990369375, 64.82243564083582 ], [ -161.080344021841228, 64.869791511761051 ], [ -161.133363911404103, 64.898454275742111 ], [ -161.214661075400528, 64.883499790186775 ], [ -161.327770173134667, 64.829912883613488 ], [ -161.377255403393349, 64.772587355651353 ], [ -161.518641775561036, 64.753894248707184 ], [ -161.64588951051195, 64.776325977040187 ], [ -161.773137245462863, 64.748909420188738 ], [ -161.879177024588614, 64.709030792041176 ], [ -162.059444649102403, 64.692830099356215 ], [ -162.186692384053316, 64.672890785282434 ], [ -162.23441028465993, 64.619303878709147 ], [ -162.540158314472535, 64.530823172506729 ], [ -162.602014852295895, 64.47972868019265 ], [ -162.632059456381512, 64.385016938342176 ], [ -162.768143839592909, 64.3326762388985 ], [ -162.837069696024656, 64.436111430656254 ], [ -162.858277651849789, 64.499667994266446 ], [ -162.941342145498311, 64.542039036673231 ], [ -163.033243287407316, 64.519607308340227 ], [ -163.027941298451026, 64.477236265933428 ], [ -163.091565165926482, 64.437357637785865 ], [ -163.133981077576777, 64.381278316953342 ], [ -163.248857504963013, 64.456050744730035 ], [ -163.41321916260793, 64.524592136858672 ], [ -163.687155258682822, 64.568209386395068 ], [ -163.830308960502606, 64.574440422043125 ], [ -163.975229991974459, 64.55076248658051 ], [ -164.148428297879889, 64.564470765006234 ], [ -164.305720636916419, 64.561978350747012 ], [ -164.547844799253568, 64.517114894081004 ], [ -164.807642258111684, 64.449819709081979 ], [ -165.002048519842248, 64.433619016397031 ], [ -165.291890582785982, 64.480974887322262 ], [ -165.820322148762671, 64.539546622414008 ], [ -166.237411946657346, 64.583163871950404 ], [ -166.414144911866941, 64.651705264079041 ], [ -166.483070768298688, 64.755140455836795 ], [ -166.479536108994495, 64.79751149824358 ], [ -166.408842922910651, 64.852344611946492 ], [ -166.433585538040006, 64.883499790186775 ], [ -166.585575888120246, 64.955779803704246 ], [ -166.696917656202288, 64.991919810462974 ], [ -166.735798908548418, 65.028059817221703 ], [ -166.910764544105916, 65.126510180461011 ], [ -166.886021928976561, 65.138972251757139 ], [ -166.633293788726832, 65.126510180461011 ], [ -166.481303438646592, 65.167635015738199 ], [ -166.453026164213043, 65.236176407866822 ], [ -166.348753714739388, 65.277301243144009 ], [ -166.440654856648365, 65.319672285550794 ], [ -166.596179866032827, 65.337119185365353 ], [ -166.749937545765164, 65.333380563976519 ], [ -166.898393236541239, 65.360797120827982 ], [ -167.068056883142447, 65.385721263420209 ], [ -167.349062297825725, 65.398183334716322 ], [ -167.474542703124541, 65.413137820271658 ], [ -167.684854931723947, 65.487910248048351 ], [ -167.850983919020962, 65.537758533232804 ], [ -168.047157510403622, 65.568913711473101 ], [ -168.128454674400047, 65.654902003416282 ], [ -167.979998983623972, 65.727182016933753 ], [ -167.64950833868204, 65.79572340906239 ], [ -167.281903771046075, 65.896666186560907 ], [ -166.767610842286132, 66.068642770447298 ], [ -166.039471025622589, 66.269282118314749 ], [ -165.406767010172217, 66.420073180997733 ], [ -164.816478906372168, 66.524754579885098 ], [ -164.399389108477493, 66.580833900717622 ], [ -164.395854449173328, 66.580833900717622 ] ] ], [ [ [ -171.836312284497438, 63.565012647057827 ], [ -171.792129043195047, 63.621091967890344 ], [ -171.802733021107599, 63.71704991687043 ], [ -171.742643812936336, 63.783098894739837 ], [ -171.611861418681258, 63.785591308999059 ], [ -171.581816814595612, 63.715803709740818 ], [ -171.551772210509995, 63.66720163168597 ], [ -171.307880718520721, 63.621091967890344 ], [ -170.950880128797337, 63.569997475576272 ], [ -170.85897898688836, 63.587444375390831 ], [ -170.60625084663863, 63.673432667334026 ], [ -170.487839759948201, 63.697110602796641 ], [ -170.344686058128417, 63.694618188537419 ], [ -170.266923553436186, 63.675925081593249 ], [ -170.176789741179306, 63.626076796408789 ], [ -170.095492577182881, 63.613614725112676 ], [ -170.049542006228393, 63.538842297335989 ], [ -170.007126094578098, 63.475285733725798 ], [ -169.856903074149926, 63.442884348355904 ], [ -169.655427493810976, 63.43042227705979 ], [ -169.567061011206192, 63.38929744178261 ], [ -169.462788561732509, 63.360634677801542 ], [ -169.088114675488157, 63.340695363727761 ], [ -168.936124325407917, 63.334464328079704 ], [ -168.685163514810284, 63.297078114191358 ], [ -168.752322041589935, 63.218567065025837 ], [ -168.840688524194718, 63.153764294286034 ], [ -168.937891655060014, 63.137563601601087 ], [ -169.073976038271411, 63.177442229748657 ], [ -169.229501047655845, 63.173703608359823 ], [ -169.436278616951085, 63.113885666138472 ], [ -169.53524907746845, 63.074007037990903 ], [ -169.575897659466676, 63.026651167065666 ], [ -169.567061011206192, 62.976802881881206 ], [ -169.637754197290036, 62.936924253733636 ], [ -169.757932613632562, 62.960602189196258 ], [ -169.787977217718179, 63.042851859750613 ], [ -169.881645689279281, 63.106408423360804 ], [ -170.049542006228393, 63.163733951322925 ], [ -170.187393719091887, 63.181180851137491 ], [ -170.263388894131992, 63.178688436878268 ], [ -170.304037476130219, 63.238506379099618 ], [ -170.431285211081132, 63.314525014005916 ], [ -170.664572725157797, 63.376835370486489 ], [ -170.896092909582364, 63.41796020576367 ], [ -171.069291215487766, 63.425437448541338 ], [ -171.224816224872228, 63.395528477430666 ], [ -171.284905433043491, 63.366865713449599 ], [ -171.433361123819537, 63.30829397835786 ], [ -171.52702959538064, 63.325740878172425 ], [ -171.66664863789623, 63.356896056412708 ], [ -171.760317109457304, 63.381820199004935 ], [ -171.850450921714213, 63.485255390762688 ], [ -171.836312284497438, 63.565012647057827 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "150", "COUNTYNS": "01419974", "AFFGEOID": "0500000US02150", "GEOID": "02150", "NAME": "Kodiak Island", "LSAD": "04", "ALAND": 16965364377, "AWATER": 14171111659 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -154.779813812119016, 57.366378384370307 ], [ -154.69321465916633, 57.446135640665439 ], [ -154.618986813778292, 57.514677032794069 ], [ -154.521783682912996, 57.576987389274642 ], [ -154.412209244483051, 57.598172910478041 ], [ -154.292030828140526, 57.644282574273667 ], [ -154.196595026927355, 57.664221888347448 ], [ -153.995119446588404, 57.656744645569781 ], [ -153.929728249460851, 57.69662327371735 ], [ -153.935030238417141, 57.812520536771217 ], [ -153.781272558684805, 57.876077100381401 ], [ -153.721183350513513, 57.891031585936737 ], [ -153.648722834777601, 57.879815721770235 ], [ -153.510871121914107, 57.909724692880914 ], [ -153.53207907773924, 57.940879871121197 ], [ -153.484361177132655, 57.977019877879933 ], [ -153.385390716615291, 57.937141249732363 ], [ -153.298791563662576, 57.985743327787212 ], [ -153.365950090442226, 58.039330234360506 ], [ -153.418969980005102, 58.059269548434287 ], [ -153.362415431138032, 58.106625419359524 ], [ -153.316464860183544, 58.140273011859037 ], [ -153.222796388622442, 58.162704740192041 ], [ -153.201588432797308, 58.208814403987667 ], [ -153.100850642627847, 58.258662689172127 ], [ -153.044296093760749, 58.306018560097364 ], [ -152.924117677418224, 58.339666152596877 ], [ -152.881701765767929, 58.400730301947839 ], [ -152.786265964554758, 58.41194616611434 ], [ -152.733246074991882, 58.460548244169189 ], [ -152.641344933082877, 58.47051790120608 ], [ -152.667854877864329, 58.544044121853155 ], [ -152.616602317953522, 58.602615856944894 ], [ -152.561815098738549, 58.620062756759459 ], [ -152.454007989960701, 58.618816549629848 ], [ -152.355037529443337, 58.638755863703629 ], [ -152.337364232922369, 58.590153785648781 ], [ -152.388616792833147, 58.522858600649762 ], [ -152.468146627177475, 58.476748936854136 ], [ -152.512329868479867, 58.428146858799288 ], [ -152.499958560915189, 58.372067537966771 ], [ -152.432800034135539, 58.355866845281824 ], [ -152.388616792833147, 58.359605466670658 ], [ -152.346200881182853, 58.392006852040552 ], [ -152.356804859095433, 58.424408237410454 ], [ -152.302017639880432, 58.429393065928899 ], [ -152.227789794492423, 58.377052366485216 ], [ -152.128819333975031, 58.396991680558997 ], [ -152.089938081628929, 58.368328916577937 ], [ -151.982130972851081, 58.348389602504156 ], [ -151.817769315206135, 58.263647517690572 ], [ -151.796561359381002, 58.211306818246889 ], [ -151.861952556508555, 58.168935775840097 ], [ -152.035150862413957, 58.18389026139544 ], [ -152.11291336710616, 58.148996461766316 ], [ -152.264903717186428, 58.135288183340592 ], [ -152.374478155616373, 58.120333697785249 ], [ -152.484052594046318, 58.130303354822146 ], [ -152.530003165000835, 58.094163348063411 ], [ -152.657250899951748, 58.06176196269351 ], [ -152.765058008729596, 58.029360577323615 ], [ -152.720874767427205, 57.986989534916823 ], [ -152.750919371512822, 57.933402628343529 ], [ -152.803939261075698, 57.899755035844017 ], [ -152.789800623858952, 57.857383993437224 ], [ -152.752686701164919, 57.834952265104221 ], [ -152.681993515081075, 57.876077100381401 ], [ -152.636042944126586, 57.918448142788193 ], [ -152.526468505696641, 57.913463314269748 ], [ -152.432800034135539, 57.975773670750321 ], [ -152.423963385875084, 57.948357113898865 ], [ -152.324992925357691, 57.917201935658582 ], [ -152.351502870139143, 57.834952265104221 ], [ -152.211883827623552, 57.791335015567817 ], [ -152.298482980576239, 57.745225351772191 ], [ -152.441636682396023, 57.726532244828022 ], [ -152.386849463181051, 57.667960509736282 ], [ -152.31438894744511, 57.636805331495992 ], [ -152.16239859736487, 57.623097053070268 ], [ -152.160631267712773, 57.593188081959596 ], [ -152.259601728230137, 57.527139104090182 ], [ -152.324992925357691, 57.467321161868831 ], [ -152.254299739273847, 57.383825284184866 ], [ -152.324992925357691, 57.342700448907685 ], [ -152.475215945785862, 57.433673569369326 ], [ -152.570651746999033, 57.448628054924662 ], [ -152.602463680736776, 57.381332869925643 ], [ -152.630740955170296, 57.322761134833904 ], [ -152.696132152297849, 57.280390092427112 ], [ -152.818077898292472, 57.265435606871776 ], [ -152.943558303591288, 57.256712156964497 ], [ -152.948860292547579, 57.186924557706249 ], [ -152.879934436115832, 57.164492829373245 ], [ -152.899375062288897, 57.132091444003343 ], [ -153.063736719933814, 57.103428680022283 ], [ -153.199821103145212, 57.042364530671321 ], [ -153.266979629924862, 56.999993488264529 ], [ -153.341207475312899, 56.983792795579575 ], [ -153.403064013136259, 57.080996951689272 ], [ -153.486128506784752, 57.085981780207717 ], [ -153.579796978345854, 57.049841773448989 ], [ -153.542683055651821, 56.996254866875695 ], [ -153.540915725999724, 56.887834846599496 ], [ -153.602772263823084, 56.887834846599496 ], [ -153.69997539468838, 56.855433461229595 ], [ -153.775970569728514, 56.830509318637368 ], [ -153.839594437203971, 56.8230320758597 ], [ -153.901450975027331, 56.771937583545622 ], [ -153.972144161111146, 56.745767233823784 ], [ -154.016327402413566, 56.689687912991268 ], [ -154.154179115277032, 56.6822106702136 ], [ -154.129436500147705, 56.74202861243495 ], [ -154.3061694653573, 56.846710011322315 ], [ -154.313238783965687, 56.918990024839779 ], [ -154.408674585178858, 56.968838310024239 ], [ -154.528853001521384, 57.002485902523752 ], [ -154.523551012565122, 57.128352822614509 ], [ -154.596011528301034, 57.256712156964497 ], [ -154.69321465916633, 57.284128713815946 ], [ -154.793952449335791, 57.28786733520478 ], [ -154.779813812119016, 57.366378384370307 ] ] ], [ [ [ -154.841670349942376, 56.420507172995187 ], [ -154.707353296383076, 56.521449950493718 ], [ -154.514714364304638, 56.603699621048072 ], [ -154.210733664144129, 56.609930656696136 ], [ -154.095857236757865, 56.618654106603415 ], [ -154.02516405067405, 56.572544442807789 ], [ -153.878475689550072, 56.566313407159733 ], [ -153.887312337810556, 56.533912021789831 ], [ -154.021629391369856, 56.48281752947576 ], [ -154.267288213011199, 56.496525807901484 ], [ -154.530620331173481, 56.502756843549548 ], [ -154.624288802734583, 56.475340286698092 ], [ -154.742699889425012, 56.401814066051017 ], [ -154.841670349942376, 56.420507172995187 ] ] ], [ [ [ -155.750077791119736, 55.821081543652063 ], [ -155.688221253296376, 55.864698793188467 ], [ -155.605156759647855, 55.928255356798651 ], [ -155.530928914259817, 55.912054664113704 ], [ -155.553904199737076, 55.84600568624429 ], [ -155.566275507301754, 55.788680158282162 ], [ -155.59101812243108, 55.761263601430713 ], [ -155.718265857381994, 55.772479465597215 ], [ -155.750077791119736, 55.821081543652063 ] ] ], [ [ [ -156.734480407337202, 56.077800212352031 ], [ -156.683227847426394, 56.098985733555423 ], [ -156.614301990994676, 56.065338141055918 ], [ -156.617836650298841, 56.01798227013068 ], [ -156.681460517774326, 55.994304334668058 ], [ -156.736247736989299, 56.022967098649126 ], [ -156.734480407337202, 56.077800212352031 ] ] ], [ [ [ -154.3061694653573, 58.647479313610908 ], [ -153.814851822074615, 58.647479313610908 ], [ -153.816619151726712, 58.734713812683715 ], [ -153.452549243394941, 58.735960019813326 ], [ -153.454316573047038, 58.855595904256027 ], [ -153.297024234010479, 58.853103489996805 ], [ -153.36948474974642, 58.820702104626903 ], [ -153.401296683484162, 58.743437262590994 ], [ -153.445479924786554, 58.709789670091482 ], [ -153.553287033564402, 58.687357941758478 ], [ -153.592168285910532, 58.640002070833241 ], [ -153.731787328426094, 58.60884689259295 ], [ -153.85196574476862, 58.612585513981784 ], [ -153.910287623287786, 58.56149102166772 ], [ -153.929728249460851, 58.497934458057529 ], [ -154.002188765196792, 58.492949629539083 ], [ -154.071114621628539, 58.440608930095401 ], [ -153.98628279832792, 58.390760644910941 ], [ -154.074649280932732, 58.353374431022601 ], [ -154.102926555366253, 58.279848210375519 ], [ -154.145342467016576, 58.211306818246889 ], [ -154.223104971708779, 58.132795769081369 ], [ -154.341516058399208, 58.090424726674577 ], [ -154.477600441610605, 58.05303851278623 ], [ -154.581872891084288, 58.019390920286725 ], [ -154.765675174902242, 58.00319022760177 ], [ -154.877016942984312, 58.028114370194004 ], [ -155.025472633760359, 57.999451606212936 ], [ -155.117373775669364, 57.95334194241731 ], [ -155.060819226802295, 57.904739864362462 ], [ -155.096165819844202, 57.8648612362149 ], [ -155.272898785053798, 57.823736400937719 ], [ -155.285270092618475, 57.758933630197923 ], [ -155.354195949050222, 57.71531638066152 ], [ -155.506186299130491, 57.761426044457146 ], [ -155.608691418952048, 57.777626737142093 ], [ -155.613993407908339, 57.687899823810064 ], [ -155.62989937477721, 57.656744645569781 ], [ -155.723567846338284, 57.633066710107158 ], [ -155.732404494598768, 57.549570832423193 ], [ -155.914439448764654, 57.534616346867857 ], [ -156.046989172671857, 57.525892896960571 ], [ -156.013409909282018, 57.451120469183884 ], [ -156.091172413974249, 57.439904605017382 ], [ -156.220187478577259, 57.444889433535828 ], [ -156.361573850744946, 57.400025976869813 ], [ -156.336831235615591, 57.335223206130017 ], [ -156.343900554223978, 57.24798870705721 ], [ -156.335063905963494, 57.181939729187803 ], [ -156.373945158309596, 57.158261793725188 ], [ -156.750386374206045, 57.162000415114022 ], [ -156.750386374206045, 57.235526635761097 ], [ -156.672623869513842, 57.234280428631486 ], [ -156.672623869513842, 57.292852163723225 ], [ -156.617836650298841, 57.333976999000406 ], [ -156.502960222912606, 57.362639762981466 ], [ -156.508262211868896, 57.434919776498937 ], [ -156.370410499005402, 57.522154275571737 ], [ -156.131820995972447, 57.509692204275623 ], [ -156.071731787801184, 57.584464632052317 ], [ -155.953320701110755, 57.598172910478041 ], [ -155.921508767373041, 57.554555660941638 ], [ -155.845513592332907, 57.629328088718324 ], [ -155.898533481895782, 57.667960509736282 ], [ -155.767751087640676, 57.667960509736282 ], [ -155.748310461467639, 57.740240523253746 ], [ -155.69175591260057, 57.738994316124135 ], [ -155.693523242252638, 57.797566051215881 ], [ -155.537998232868205, 57.800058465475104 ], [ -155.446097090959199, 57.827475022326553 ], [ -155.446097090959199, 57.871092271862956 ], [ -155.329453333920867, 57.876077100381401 ], [ -155.331220663572964, 58.048053684267785 ], [ -155.279968103662185, 58.048053684267785 ], [ -155.279968103662185, 58.109117833618747 ], [ -155.331220663572964, 58.193859918432331 ], [ -155.219878895490922, 58.193859918432331 ], [ -155.219878895490922, 58.236230960839123 ], [ -155.057284567498101, 58.236230960839123 ], [ -155.009566666891516, 58.291064074542021 ], [ -154.730328581860334, 58.304772352967753 ], [ -154.730328581860334, 58.333435116948813 ], [ -154.571268913171707, 58.333435116948813 ], [ -154.56950158351961, 58.360851673800269 ], [ -154.466996463698024, 58.36209788092988 ], [ -154.433417200308213, 58.419423408892008 ], [ -154.352120036311788, 58.418177201762397 ], [ -154.304402135705203, 58.460548244169189 ], [ -154.3061694653573, 58.647479313610908 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "122", "COUNTYNS": "01419972", "AFFGEOID": "0500000US02122", "GEOID": "02122", "NAME": "Kenai Peninsula", "LSAD": "04", "ALAND": 41634738098, "AWATER": 22473667447 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -149.753528281558033, 60.999072167187776 ], [ -149.373552406357391, 60.906852839596532 ], [ -149.187982792887311, 60.90560663246692 ], [ -149.03775977245914, 60.849527311634404 ], [ -149.03775977245914, 60.732383841450925 ], [ -148.744383050211212, 60.732383841450925 ], [ -148.654249237954332, 60.733630048580537 ], [ -148.666620545518981, 60.423324473307275 ], [ -148.562348096045326, 60.423324473307275 ], [ -148.564115425697423, 60.12797338358935 ], [ -148.583556051870488, 59.96222783535103 ], [ -148.686061171692046, 59.943534728406853 ], [ -148.68959583099624, 59.944780935536464 ], [ -148.800937599078281, 59.953504385443743 ], [ -148.859259477597448, 59.924841621462683 ], [ -148.937021982289679, 59.953504385443743 ], [ -149.035992442807043, 59.942288521277241 ], [ -149.122591595759758, 59.968458870999086 ], [ -149.221562056277122, 59.938549899888407 ], [ -149.271047286535833, 59.872500922019 ], [ -149.377087065661584, 59.836360915260265 ], [ -149.472522866874755, 59.903656100259283 ], [ -149.573260657044244, 59.852561607945219 ], [ -149.596235942521474, 59.797728494242307 ], [ -149.506102130264594, 59.771558144520469 ], [ -149.527310086089756, 59.706755373780673 ], [ -149.62628054660712, 59.734171930632122 ], [ -149.732320325732871, 59.706755373780673 ], [ -149.746458962949646, 59.638213981652044 ], [ -149.843662093814913, 59.701770545262221 ], [ -149.919657268855048, 59.69180088822533 ], [ -150.002721762503569, 59.630736738874369 ], [ -150.135271486410772, 59.557210518227294 ], [ -150.281959847534722, 59.466237397765653 ], [ -150.297865814403593, 59.425112562488479 ], [ -150.359722352226953, 59.398942212766634 ], [ -150.386232297008405, 59.341616684804507 ], [ -150.4286482086587, 59.342862891934118 ], [ -150.476366109265285, 59.421373941099645 ], [ -150.497574065090447, 59.456267740728762 ], [ -150.58063855873894, 59.44505187656226 ], [ -150.608915833172489, 59.386480141470521 ], [ -150.679609019256333, 59.305476678045771 ], [ -150.722024930906628, 59.291768399620047 ], [ -150.822762721076117, 59.330400820638005 ], [ -150.912896533332997, 59.305476678045771 ], [ -150.888153918203642, 59.268090464157424 ], [ -150.941173807766518, 59.233196664528307 ], [ -151.001263015937809, 59.224473214621028 ], [ -151.126743421236597, 59.209518729065692 ], [ -151.287570419577349, 59.219488386102583 ], [ -151.340590309140225, 59.221980800361806 ], [ -151.471372703395332, 59.241920114435587 ], [ -151.432491451049231, 59.134746301288999 ], [ -151.662244305821702, 59.089882844622984 ], [ -151.858417897204362, 59.143469751196278 ], [ -151.916739775723528, 59.226965628880251 ], [ -151.983898302503178, 59.278060121194322 ], [ -151.962690346678016, 59.345355306193341 ], [ -151.886695171637882, 59.421373941099645 ], [ -151.743541469818126, 59.468729812024876 ], [ -151.515555944697724, 59.523562925727781 ], [ -151.328219001575548, 59.573411210912241 ], [ -151.204505925928828, 59.630736738874369 ], [ -151.296407067837833, 59.696785716743776 ], [ -151.448397417918073, 59.648183638688934 ], [ -151.642803679648637, 59.646937431559323 ], [ -151.74707612912232, 59.686816059706885 ], [ -151.869021875116914, 59.769065730261246 ], [ -151.814234655901942, 59.845084365167544 ], [ -151.757680107034872, 59.917364378685008 ], [ -151.718798854688771, 60.00958370627626 ], [ -151.607457086606729, 60.099310619608289 ], [ -151.42188747313665, 60.213961675532545 ], [ -151.381238891138423, 60.297457553216518 ], [ -151.367100253921677, 60.373476188122815 ], [ -151.305243716098317, 60.388430673678151 ], [ -151.282268430621059, 60.495604486824739 ], [ -151.303476386446221, 60.560407257564535 ], [ -151.349426957400709, 60.633933478211617 ], [ -151.409516165571972, 60.711198320247526 ], [ -151.370634913225871, 60.733630048580537 ], [ -151.261060474795897, 60.769770055339265 ], [ -151.061352224109072, 60.787216955153831 ], [ -150.895223236812029, 60.853265933023238 ], [ -150.70435163438566, 60.938008017836822 ], [ -150.501108724394641, 61.007795617095063 ], [ -150.402138263877248, 61.036458381076123 ], [ -150.342049055705985, 61.02399630978001 ], [ -150.195360694582035, 60.900621803948475 ], [ -150.110528871281417, 60.890652146911577 ], [ -149.985048465982601, 60.878190075615464 ], [ -149.900216642681983, 60.939254224966433 ], [ -149.854266071727494, 60.966670781817882 ], [ -149.753528281558033, 60.999072167187776 ] ] ], [ [ [ -152.065195466499574, 60.41833964478883 ], [ -151.952086368765436, 60.510558972380082 ], [ -151.838977271031297, 60.485634829787848 ], [ -151.891997160594173, 60.440771373121834 ], [ -151.957388357721726, 60.36849135960437 ], [ -152.081101433368445, 60.342321009882525 ], [ -152.065195466499574, 60.41833964478883 ] ] ], [ [ [ -153.597470274866794, 59.386480141470521 ], [ -153.487895836436849, 59.415142905451582 ], [ -153.411900661396714, 59.415142905451582 ], [ -153.346509464269161, 59.377756691563242 ], [ -153.387158046267388, 59.330400820638005 ], [ -153.514405781218301, 59.320431163601114 ], [ -153.546217714956015, 59.331647027767616 ], [ -153.597470274866794, 59.386480141470521 ] ] ], [ [ [ -153.43664327652607, 60.908099046726143 ], [ -153.475524528872199, 61.136154951445043 ], [ -153.470222539915881, 61.427767419774128 ], [ -153.001880182110455, 61.425275005514905 ], [ -151.333520990531838, 61.425275005514905 ], [ -151.333520990531838, 61.254544628758133 ], [ -150.97298574150426, 61.253298421628521 ], [ -150.971218411852163, 61.195972893666394 ], [ -151.047213586892298, 61.161079094037277 ], [ -151.121441432280335, 61.083814252001361 ], [ -151.165624673582727, 61.046428038113021 ], [ -151.252223826535442, 61.040197002464957 ], [ -151.349426957400709, 61.010288031354285 ], [ -151.480209351655816, 61.010288031354285 ], [ -151.600387767998342, 60.965424574688271 ], [ -151.720566184340868, 60.904360425337309 ], [ -151.800096018685196, 60.853265933023238 ], [ -151.777120733207937, 60.809648683486834 ], [ -151.704660217471996, 60.732383841450925 ], [ -151.717031525036674, 60.709952113117915 ], [ -151.897299149550463, 60.721167977284424 ], [ -152.040452851370247, 60.660103827933455 ], [ -152.135888652583418, 60.5778541573791 ], [ -152.261369057882234, 60.537975529231531 ], [ -152.332062243966078, 60.473172758491735 ], [ -152.302017639880432, 60.414601023399996 ], [ -152.234859113100811, 60.394661709326215 ], [ -152.378012814920567, 60.346059631271359 ], [ -152.411592078310406, 60.288734103309238 ], [ -152.540607142913416, 60.242624439513605 ], [ -152.575953735955324, 60.206484432754877 ], [ -152.579488395259517, 60.170344425996142 ], [ -152.551211120825997, 60.114265105163625 ], [ -152.575953735955324, 60.048216127294218 ], [ -152.680226185428978, 59.968458870999086 ], [ -152.70143414125414, 59.921103000073849 ], [ -152.860493809942767, 59.874993336278223 ], [ -152.966533589068547, 59.88122437192628 ], [ -153.008949500718842, 59.83137608674182 ], [ -153.016018819327229, 59.751618830446688 ], [ -153.051365412369137, 59.69180088822533 ], [ -153.153870532190723, 59.654414674336991 ], [ -153.238702355491313, 59.63198294600398 ], [ -153.30762821192306, 59.625751910355923 ], [ -153.408366002092521, 59.636967774522432 ], [ -153.542683055651821, 59.630736738874369 ], [ -153.553287033564402, 59.597089146374863 ], [ -153.578029648693757, 59.555964311097682 ], [ -153.684069427819509, 59.552225689708848 ], [ -153.76183193251174, 59.543502239801569 ], [ -153.698208065036283, 59.46374498350643 ], [ -153.747693295294965, 59.430097391006925 ], [ -153.862569722681201, 59.423866355358868 ], [ -153.926193590156657, 59.405173248414691 ], [ -153.998654105892598, 59.383987727211299 ], [ -154.030466039630312, 59.326662199249171 ], [ -154.122367181539317, 59.286783571101601 ], [ -154.141807807712382, 59.215749764713749 ], [ -154.173619741450096, 59.172132515177346 ], [ -154.180689060058484, 59.122284229992886 ], [ -154.064045303020151, 59.071189737678814 ], [ -153.933262908765045, 59.062466287771535 ], [ -153.793643866249454, 59.071189737678814 ], [ -153.69467340573209, 59.073682151938037 ], [ -153.595702945214725, 59.000155931290962 ], [ -153.479059188176365, 58.995171102772517 ], [ -153.392460035223678, 58.950307646106502 ], [ -153.321766849139834, 58.90793660369971 ], [ -153.266979629924862, 58.866811768422529 ], [ -153.297024234010479, 58.853103489996805 ], [ -153.454316573047038, 58.855595904256027 ], [ -153.452549243394941, 58.735960019813326 ], [ -153.816619151726712, 58.734713812683715 ], [ -153.814851822074615, 58.647479313610908 ], [ -154.3061694653573, 58.647479313610908 ], [ -154.638427439951357, 58.647479313610908 ], [ -154.69321465916633, 58.734713812683715 ], [ -154.69321465916633, 59.07617456619726 ], [ -154.746234548729205, 59.07617456619726 ], [ -154.748001878381302, 59.253135978602089 ], [ -154.410441914830955, 59.2543821857317 ], [ -154.415743903787245, 59.428851183877313 ], [ -154.120599851887221, 59.431343598136536 ], [ -154.124134511191414, 59.519824304338947 ], [ -153.954470864590206, 59.519824304338947 ], [ -153.956238194242303, 59.696785716743776 ], [ -153.783039888336873, 59.696785716743776 ], [ -153.783039888336873, 59.785266422946194 ], [ -153.654024823733891, 59.785266422946194 ], [ -153.65579215338596, 60.121742347941293 ], [ -153.530311748087172, 60.122988555070904 ], [ -153.528544418435075, 60.469434137102901 ], [ -153.394227364875775, 60.471926551362124 ], [ -153.434875946873973, 60.823356961912559 ], [ -153.43664327652607, 60.908099046726143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "164", "COUNTYNS": "01419975", "AFFGEOID": "0500000US02164", "GEOID": "02164", "NAME": "Lake and Peninsula", "LSAD": "04", "ALAND": 60735993529, "AWATER": 24532276414 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.289421918095343, 56.566313407159733 ], [ -157.17277816105701, 56.598714792529627 ], [ -157.091480997060586, 56.581267892715069 ], [ -156.97660456967435, 56.540143057437888 ], [ -157.047297755758194, 56.520203743364107 ], [ -157.169243501752817, 56.530173400400997 ], [ -157.32476851113725, 56.525188571882552 ], [ -157.289421918095343, 56.566313407159733 ] ] ], [ [ [ -158.894157242198503, 56.809323797433969 ], [ -158.853508660200276, 56.793123104749021 ], [ -158.743934221770331, 56.795615519008244 ], [ -158.657335068817645, 56.81057000456358 ], [ -158.646731090905064, 56.847956218451927 ], [ -158.685612343251165, 56.911512782062111 ], [ -158.680310354294875, 56.98877762409802 ], [ -158.5318546635188, 57.132091444003343 ], [ -158.319775105267297, 57.281636299556723 ], [ -158.229641293010388, 57.321514927704293 ], [ -158.082952931886439, 57.35640872733341 ], [ -157.93096258180617, 57.476044611776118 ], [ -157.771902913117543, 57.54707841816397 ], [ -157.678234441556441, 57.563279110848917 ], [ -157.683536430512731, 57.609388774644543 ], [ -157.708279045642087, 57.656744645569781 ], [ -157.683536430512731, 57.753948801679478 ], [ -157.641120518862436, 57.868599857603733 ], [ -157.595169947907948, 58.089178519544966 ], [ -157.556288695561818, 58.148996461766316 ], [ -157.478526190869616, 58.217537853894946 ], [ -157.545684717649237, 58.277355796116296 ], [ -157.540382728692975, 58.377052366485216 ], [ -157.480293520521712, 58.481733765372582 ], [ -157.31416453322467, 58.565229643056554 ], [ -157.245238676792923, 58.610093099722562 ], [ -156.317390609442526, 58.610093099722562 ], [ -156.317390609442526, 58.894228325273986 ], [ -157.072040370887521, 58.886751082496318 ], [ -157.11799094184201, 58.866811768422529 ], [ -157.153337534883946, 58.85808831851525 ], [ -157.16217418314443, 59.06745111628998 ], [ -157.241704017488729, 59.068697323419592 ], [ -157.245238676792923, 59.245658735824421 ], [ -157.075575030191715, 59.244412528694809 ], [ -157.073807700539618, 59.331647027767616 ], [ -156.729178418380911, 59.329154613508393 ], [ -156.730945748033008, 59.416389112581193 ], [ -156.635509946819809, 59.415142905451582 ], [ -156.635509946819809, 59.503623611654 ], [ -156.465846300218601, 59.502377404524388 ], [ -156.465846300218601, 59.589611903597188 ], [ -156.122984347711963, 59.588365696467577 ], [ -156.121217018059895, 59.675600195540383 ], [ -155.955088030762852, 59.676846402669995 ], [ -155.953320701110755, 60.106787862385957 ], [ -155.960390019719142, 60.906852839596532 ], [ -154.422813222395632, 60.906852839596532 ], [ -153.43664327652607, 60.908099046726143 ], [ -153.434875946873973, 60.823356961912559 ], [ -153.394227364875775, 60.471926551362124 ], [ -153.528544418435075, 60.469434137102901 ], [ -153.530311748087172, 60.122988555070904 ], [ -153.65579215338596, 60.121742347941293 ], [ -153.654024823733891, 59.785266422946194 ], [ -153.783039888336873, 59.785266422946194 ], [ -153.783039888336873, 59.696785716743776 ], [ -153.956238194242303, 59.696785716743776 ], [ -153.954470864590206, 59.519824304338947 ], [ -154.124134511191414, 59.519824304338947 ], [ -154.120599851887221, 59.431343598136536 ], [ -154.415743903787245, 59.428851183877313 ], [ -154.410441914830955, 59.2543821857317 ], [ -154.748001878381302, 59.253135978602089 ], [ -154.746234548729205, 59.07617456619726 ], [ -154.69321465916633, 59.07617456619726 ], [ -154.69321465916633, 58.734713812683715 ], [ -154.638427439951357, 58.647479313610908 ], [ -154.3061694653573, 58.647479313610908 ], [ -154.304402135705203, 58.460548244169189 ], [ -154.352120036311788, 58.418177201762397 ], [ -154.433417200308213, 58.419423408892008 ], [ -154.466996463698024, 58.36209788092988 ], [ -154.56950158351961, 58.360851673800269 ], [ -154.571268913171707, 58.333435116948813 ], [ -154.730328581860334, 58.333435116948813 ], [ -154.730328581860334, 58.304772352967753 ], [ -155.009566666891516, 58.291064074542021 ], [ -155.057284567498101, 58.236230960839123 ], [ -155.219878895490922, 58.236230960839123 ], [ -155.219878895490922, 58.193859918432331 ], [ -155.331220663572964, 58.193859918432331 ], [ -155.279968103662185, 58.109117833618747 ], [ -155.279968103662185, 58.048053684267785 ], [ -155.331220663572964, 58.048053684267785 ], [ -155.329453333920867, 57.876077100381401 ], [ -155.446097090959199, 57.871092271862956 ], [ -155.446097090959199, 57.827475022326553 ], [ -155.537998232868205, 57.800058465475104 ], [ -155.693523242252638, 57.797566051215881 ], [ -155.69175591260057, 57.738994316124135 ], [ -155.748310461467639, 57.740240523253746 ], [ -155.767751087640676, 57.667960509736282 ], [ -155.898533481895782, 57.667960509736282 ], [ -155.845513592332907, 57.629328088718324 ], [ -155.921508767373041, 57.554555660941638 ], [ -155.953320701110755, 57.598172910478041 ], [ -156.071731787801184, 57.584464632052317 ], [ -156.131820995972447, 57.509692204275623 ], [ -156.370410499005402, 57.522154275571737 ], [ -156.508262211868896, 57.434919776498937 ], [ -156.502960222912606, 57.362639762981466 ], [ -156.617836650298841, 57.333976999000406 ], [ -156.672623869513842, 57.292852163723225 ], [ -156.672623869513842, 57.234280428631486 ], [ -156.750386374206045, 57.235526635761097 ], [ -156.750386374206045, 57.162000415114022 ], [ -156.373945158309596, 57.158261793725188 ], [ -156.442871014741343, 57.118383165577619 ], [ -156.479984937435376, 57.068534880393159 ], [ -156.550678123519219, 56.985039002709186 ], [ -156.639044606124003, 56.995008659746084 ], [ -156.704435803251556, 56.987531416968409 ], [ -156.826381549246179, 56.897804503636387 ], [ -156.935955987676124, 56.92023623196939 ], [ -157.034926448193517, 56.885342432340273 ], [ -157.073807700539618, 56.839232768544647 ], [ -157.18514946862166, 56.769445169286399 ], [ -157.29118924774744, 56.805585176045135 ], [ -157.411367664089966, 56.778168619193686 ], [ -157.529778750780395, 56.754490683731063 ], [ -157.563358014170205, 56.703396191416992 ], [ -157.452016246088164, 56.643578249195642 ], [ -157.496199487390555, 56.617407899473804 ], [ -157.604006596168404, 56.621146520862638 ], [ -157.674699782252247, 56.609930656696136 ], [ -157.718883023554667, 56.653547906232532 ], [ -157.791343539290608, 56.670994806047098 ], [ -157.918591274241521, 56.643578249195642 ], [ -157.869106043982811, 56.567559614289344 ], [ -157.817853484072032, 56.51397270771605 ], [ -157.869106043982811, 56.456647179753922 ], [ -157.971611163804397, 56.476586493827703 ], [ -158.127136173188831, 56.460385801142756 ], [ -158.24554725987926, 56.466616836790813 ], [ -158.284428512225361, 56.481571322346149 ], [ -158.371027665178076, 56.467863043920424 ], [ -158.438186191957726, 56.427984415772855 ], [ -158.489438751868505, 56.341996123829666 ], [ -158.415210906480468, 56.335765088181603 ], [ -158.287963171529555, 56.315825774107822 ], [ -158.206666007533158, 56.294640252904429 ], [ -158.118299524928347, 56.231083689294238 ], [ -158.282661182573293, 56.173758161332117 ], [ -158.37456232448227, 56.133879533184547 ], [ -158.394002950655334, 56.064091933926306 ], [ -158.431116873349339, 55.994304334668058 ], [ -158.510646707693667, 55.979349849112722 ], [ -158.63789444264458, 55.994304334668058 ], [ -158.653800409513451, 55.95816432790933 ], [ -158.749236210726622, 55.959410535038941 ], [ -158.897691901502697, 55.950687085131655 ], [ -159.097400152189522, 55.914547078372927 ], [ -159.086796174276969, 55.834789822077788 ], [ -159.396078863393768, 55.715153937635087 ], [ -159.533930576257234, 55.676521516617129 ], [ -159.565742509994976, 55.636642888469567 ], [ -159.565742509994976, 55.888376728651082 ], [ -159.867955880503388, 55.888376728651082 ], [ -159.867955880503388, 55.981842263371945 ], [ -159.804332013027931, 55.981842263371945 ], [ -159.809634001984222, 56.322056809755878 ], [ -159.903302473545295, 56.322056809755878 ], [ -159.898000484589005, 56.491540979383039 ], [ -159.594019784428497, 56.495279600771873 ], [ -159.594019784428497, 56.581267892715069 ], [ -159.275900447051242, 56.581267892715069 ], [ -159.275900447051242, 56.672241013176709 ], [ -159.028474295757803, 56.669748598917487 ], [ -159.028474295757803, 56.754490683731063 ], [ -158.890622582894309, 56.754490683731063 ], [ -158.894157242198503, 56.809323797433969 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "020", "COUNTYNS": "01416061", "AFFGEOID": "0500000US02020", "GEOID": "02020", "NAME": "Anchorage", "LSAD": "12", "ALAND": 4420343302, "AWATER": 663023276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -150.220103309711362, 61.197219100796005 ], [ -150.002721762503569, 61.22338945051785 ], [ -149.898449313029886, 61.267006700054253 ], [ -149.792409533904134, 61.389134998756177 ], [ -149.359413769140616, 61.483846740606651 ], [ -149.241002682450187, 61.483846740606651 ], [ -149.180913474278924, 61.426521212644516 ], [ -148.461610305875865, 61.426521212644516 ], [ -148.472214283788446, 60.848281104504792 ], [ -148.737313731602825, 60.848281104504792 ], [ -148.744383050211212, 60.732383841450925 ], [ -149.03775977245914, 60.732383841450925 ], [ -149.03775977245914, 60.849527311634404 ], [ -149.187982792887311, 60.90560663246692 ], [ -149.373552406357391, 60.906852839596532 ], [ -149.753528281558033, 60.999072167187776 ], [ -149.718181688516097, 61.011534238483897 ], [ -149.833058115902361, 61.076337009223693 ], [ -150.006256421807763, 61.138647365704266 ], [ -150.066345629979025, 61.151109437000379 ], [ -150.266053880665879, 61.127431501537764 ], [ -150.228939957971846, 61.162325301166888 ], [ -150.220103309711362, 61.197219100796005 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "261", "COUNTYNS": "01419984", "AFFGEOID": "0500000US02261", "GEOID": "02261", "NAME": "Valdez-Cordova", "LSAD": "05", "ALAND": 88676741086, "AWATER": 15799448122 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -148.461610305875865, 61.426521212644516 ], [ -147.206806252887702, 61.425275005514905 ], [ -147.205038923235605, 61.475123290699365 ], [ -146.945241464377489, 61.473877083569754 ], [ -146.941706805073295, 61.812845422824083 ], [ -146.96114743124636, 62.159291004856073 ], [ -146.982355387071522, 62.24777171105849 ], [ -146.425646546661284, 62.246525503928879 ], [ -146.425646546661284, 62.510721415406508 ], [ -146.427413876313381, 62.863398033086561 ], [ -146.438017854225961, 62.959355982066647 ], [ -146.48396842518045, 63.173703608359823 ], [ -146.328443415795988, 63.191150508174381 ], [ -146.139339143021715, 63.183673265396713 ], [ -146.111061868588195, 63.22105947928506 ], [ -145.149634537847987, 63.222305686414671 ], [ -145.149634537847987, 63.133824980212253 ], [ -144.575252400916781, 63.133824980212253 ], [ -143.875389858686759, 63.113885666138472 ], [ -143.127809415850152, 63.116378080397695 ], [ -143.08892816350405, 63.009204267251107 ], [ -143.002329010551335, 62.994249781695771 ], [ -143.028838955332787, 62.935678046604025 ], [ -143.196735272281899, 62.826011819198214 ], [ -143.007630999507626, 62.766193876976864 ], [ -143.138413393762733, 62.691421449200178 ], [ -143.159621349587894, 62.636588335497272 ], [ -143.104834130372922, 62.61291040003465 ], [ -142.843269341862708, 62.596709707349703 ], [ -142.737229562736957, 62.701391106237068 ], [ -142.62942245395908, 62.68394420642251 ], [ -142.314837775885991, 62.68394420642251 ], [ -142.320139764842281, 62.597955914479314 ], [ -142.127500832763815, 62.595463500220092 ], [ -142.131035492068008, 62.511967622536119 ], [ -141.963139175118897, 62.510721415406508 ], [ -141.977277812335672, 62.164275833374518 ], [ -142.016159064681773, 62.126889619486178 ], [ -141.830589451211694, 62.126889619486178 ], [ -141.828822121559597, 61.901326129026494 ], [ -141.003479174030758, 61.902572336156105 ], [ -141.00171184437869, 60.392169295066985 ], [ -141.212024072978096, 60.393415502196603 ], [ -141.212024072978096, 60.437032751733 ], [ -141.75989626512785, 60.434540337473777 ], [ -141.76519825408414, 60.526759665065029 ], [ -141.963139175118897, 60.520528629416972 ], [ -142.823828715689643, 60.515543800898527 ], [ -143.16845799784835, 60.51803621515775 ], [ -143.889528495903534, 60.043231298775773 ], [ -143.884226506947243, 59.988398185072867 ], [ -143.896597814511921, 59.985905770813645 ], [ -144.006172252941866, 60.013322327665094 ], [ -144.052122823896354, 60.041985091646161 ], [ -144.110444702415521, 60.099310619608289 ], [ -144.186439877455655, 60.116757519422848 ], [ -144.349034205448476, 60.091833376830621 ], [ -144.428564039792803, 60.147912697663138 ], [ -144.555811774743717, 60.179067875903428 ], [ -144.654782235261109, 60.205238225625266 ], [ -144.928718331335972, 60.228916161087881 ], [ -144.958762935421589, 60.288734103309238 ], [ -145.089545329676696, 60.321135488679133 ], [ -145.137263230283281, 60.296211346086906 ], [ -145.255674316973739, 60.312412038771853 ], [ -145.381154722272555, 60.353536874049034 ], [ -145.511937116527633, 60.31864307441991 ], [ -145.639184851478547, 60.302442381734963 ], [ -145.830056453904916, 60.351044459789804 ], [ -145.987348792941475, 60.388430673678151 ], [ -146.088086583110936, 60.365998945345147 ], [ -146.195893691888784, 60.348552045530582 ], [ -146.23124028493072, 60.339828595623302 ], [ -146.392067283271444, 60.328612731456801 ], [ -146.491037743788837, 60.294965138957295 ], [ -146.607681500827169, 60.241378232383994 ], [ -146.650097412477464, 60.243870646643217 ], [ -146.694280653779856, 60.280010653401952 ], [ -146.916964189943968, 60.291226517568461 ], [ -146.992959364984074, 60.240132025254383 ], [ -147.144949715064342, 60.171590633125753 ], [ -147.258058812798481, 60.108034069515568 ], [ -147.37646989948891, 60.017060949053928 ], [ -147.339355976794906, 59.96222783535103 ], [ -147.452465074529044, 59.954750592573355 ], [ -147.470138371050012, 59.907394721648117 ], [ -147.392375866357781, 59.877485750537446 ], [ -147.509019623396114, 59.842591950908322 ], [ -147.646871336259608, 59.817667808316095 ], [ -147.765282422950037, 59.796482287112696 ], [ -147.876624191032079, 59.764080901742801 ], [ -147.929644080594954, 59.784020215816582 ], [ -147.913738113726112, 59.837607122389876 ], [ -147.855416235206917, 59.872500922019 ], [ -147.957921355028503, 59.9597354210918 ], [ -148.102842386500356, 59.953504385443743 ], [ -148.253065406928528, 59.932318864240351 ], [ -148.219486143538717, 59.977182320906365 ], [ -148.313154615099791, 60.034507848868493 ], [ -148.401521097704602, 59.978428528035977 ], [ -148.477516272744708, 59.936057485629185 ], [ -148.634808611781267, 59.916118171555397 ], [ -148.686061171692046, 59.943534728406853 ], [ -148.583556051870488, 59.96222783535103 ], [ -148.564115425697423, 60.12797338358935 ], [ -148.562348096045326, 60.423324473307275 ], [ -148.666620545518981, 60.423324473307275 ], [ -148.654249237954332, 60.733630048580537 ], [ -148.744383050211212, 60.732383841450925 ], [ -148.737313731602825, 60.848281104504792 ], [ -148.472214283788446, 60.848281104504792 ], [ -148.461610305875865, 61.426521212644516 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "070", "COUNTYNS": "01419968", "AFFGEOID": "0500000US02070", "GEOID": "02070", "NAME": "Dillingham", "LSAD": "05", "ALAND": 48093448272, "AWATER": 6077139167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.960390019719142, 60.906852839596532 ], [ -155.953320701110755, 60.106787862385957 ], [ -155.955088030762852, 59.676846402669995 ], [ -156.121217018059895, 59.675600195540383 ], [ -156.122984347711963, 59.588365696467577 ], [ -156.465846300218601, 59.589611903597188 ], [ -156.465846300218601, 59.502377404524388 ], [ -156.635509946819809, 59.503623611654 ], [ -156.635509946819809, 59.415142905451582 ], [ -156.730945748033008, 59.416389112581193 ], [ -156.729178418380911, 59.329154613508393 ], [ -157.073807700539618, 59.331647027767616 ], [ -157.075575030191715, 59.244412528694809 ], [ -157.245238676792923, 59.245658735824421 ], [ -157.241704017488729, 59.068697323419592 ], [ -157.16217418314443, 59.06745111628998 ], [ -157.153337534883946, 58.85808831851525 ], [ -157.388392378612707, 58.804501411941956 ], [ -157.57219466243069, 58.750914505368662 ], [ -157.777204902073834, 58.703558634443425 ], [ -158.139507480753508, 58.615077928241007 ], [ -158.231408622662485, 58.620062756759459 ], [ -158.332146412831975, 58.666172420555085 ], [ -158.376329654134366, 58.74842209110944 ], [ -158.424047554740952, 58.769607612312832 ], [ -158.565433926908639, 58.802008997682734 ], [ -158.521250685606248, 58.856842111385639 ], [ -158.620221146123612, 58.910429017958933 ], [ -158.768676836899687, 58.864319354163307 ], [ -158.78988479272482, 58.804501411941956 ], [ -158.781048144464364, 58.754653126757496 ], [ -158.86234530846076, 58.696081391665757 ], [ -158.82876604507095, 58.627539999537127 ], [ -158.70505296942423, 58.482979972502193 ], [ -158.79518678168111, 58.408207544725506 ], [ -158.881785934633825, 58.390760644910941 ], [ -159.063820888799711, 58.423162030280842 ], [ -159.228182546444629, 58.603862064074505 ], [ -159.410217500610514, 58.773346233701673 ], [ -159.533930576257234, 58.833164175923024 ], [ -159.643505014687207, 58.844380040089526 ], [ -159.602856432688981, 58.884258668237095 ], [ -159.616995069905755, 58.931614539162325 ], [ -159.710663541466829, 58.929122124903103 ], [ -159.747777464160862, 58.875535218329809 ], [ -159.791960705463254, 58.823194518886126 ], [ -159.908604462501586, 58.77957726934973 ], [ -159.97929764858543, 58.834410383052635 ], [ -160.150728624838735, 58.865565561292918 ], [ -160.232025788835159, 58.900459360922042 ], [ -160.322159601092039, 58.954046267495336 ], [ -160.256768403964514, 58.993924895642905 ], [ -160.316857612135777, 59.069943530549203 ], [ -160.516565862822603, 59.011371795457464 ], [ -160.730412750726231, 58.920398674995823 ], [ -160.824081222287305, 58.828179347404571 ], [ -160.871799122893918, 58.878027632589031 ], [ -161.000814187496928, 58.849364868607971 ], [ -161.034393450886739, 58.838149004441469 ], [ -161.034393450886739, 59.002648345550185 ], [ -160.873566452546015, 59.002648345550185 ], [ -160.875333782198084, 59.083651808974928 ], [ -160.818779233331043, 59.084898016104539 ], [ -160.820546562983111, 59.261859428509368 ], [ -160.650882916381903, 59.261859428509368 ], [ -160.650882916381903, 59.349093927582175 ], [ -160.479451940128598, 59.351586341841397 ], [ -160.481219269780695, 59.436328426654981 ], [ -160.424664720913626, 59.436328426654981 ], [ -160.424664720913626, 59.612043631930199 ], [ -160.249699085356127, 59.610797424800587 ], [ -160.24793175570403, 59.785266422946194 ], [ -160.018178900931531, 59.786512630075805 ], [ -160.014644241627366, 59.9597354210918 ], [ -159.853817243286613, 59.963474042480641 ], [ -159.85028258398242, 60.129219590718961 ], [ -159.786658716506963, 60.12797338358935 ], [ -159.78312405720277, 60.213961675532545 ], [ -159.613460410601562, 60.215207882662156 ], [ -159.615227740253658, 60.388430673678151 ], [ -159.438494775044063, 60.38718446654854 ], [ -159.433192786087773, 60.470680344232512 ], [ -159.369568918612316, 60.470680344232512 ], [ -159.367801588960219, 60.643903135248507 ], [ -159.185766634794334, 60.643903135248507 ], [ -159.183999305142237, 60.731137634321314 ], [ -159.016102988193126, 60.731137634321314 ], [ -159.014335658541029, 60.823356961912559 ], [ -158.948944461413475, 60.823356961912559 ], [ -158.945409802109282, 60.903114218207698 ], [ -158.445255510566113, 60.900621803948475 ], [ -157.883244681199585, 60.903114218207698 ], [ -157.879710021895391, 60.82460316904217 ], [ -157.697675067729506, 60.823356961912559 ], [ -157.699442397381603, 60.910591460985366 ], [ -157.520942102519911, 60.910591460985366 ], [ -157.520942102519911, 61.000318374317388 ], [ -157.171010831404914, 61.000318374317388 ], [ -157.169243501752817, 60.911837668114977 ], [ -156.900609394634216, 60.906852839596532 ], [ -155.960390019719142, 60.906852839596532 ] ] ], [ [ [ -161.078576692189131, 58.636263449444407 ], [ -161.057368736363998, 58.702312427313814 ], [ -160.919517023500504, 58.747175883979828 ], [ -160.700368146640585, 58.816963483238069 ], [ -160.679160190815452, 58.77957726934973 ], [ -160.880635771154402, 58.581430335741501 ], [ -160.961932935150799, 58.554013778890045 ], [ -161.075042032884937, 58.550275157501211 ], [ -161.078576692189131, 58.636263449444407 ] ] ], [ [ [ -161.085646010797518, 58.821948311756515 ], [ -161.221730394008915, 58.777084855090507 ], [ -161.338374151047248, 58.743437262590994 ], [ -161.341908810351441, 58.735960019813326 ], [ -161.368418755132893, 58.735960019813326 ], [ -161.368418755132893, 58.823194518886126 ], [ -161.085646010797518, 58.821948311756515 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "130", "COUNTYNS": "01419973", "AFFGEOID": "0500000US02130", "GEOID": "02130", "NAME": "Ketchikan Gateway", "LSAD": "04", "ALAND": 12583284815, "AWATER": 4649397284 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -132.200410176940636, 55.637889095599178 ], [ -132.090835738510691, 55.660320823932182 ], [ -132.05725647512088, 55.710169109116642 ], [ -131.963588003559778, 55.700199452079751 ], [ -131.979493970428649, 55.752540151523434 ], [ -131.937078058778354, 55.798649815319052 ], [ -132.009538574514266, 55.854729136151576 ], [ -131.873454191302869, 55.948194670872432 ], [ -131.831038279652574, 56.056614691148631 ], [ -131.693186566789109, 56.050383655500575 ], [ -131.654305314442979, 56.103970562073869 ], [ -131.527057579492066, 56.052876069759797 ], [ -131.498780305058517, 56.019228477260292 ], [ -131.364463251499245, 56.01798227013068 ], [ -131.369765240455536, 56.070322969574363 ], [ -131.440458426539351, 56.131387118925325 ], [ -131.253121483417203, 56.207405753831623 ], [ -131.238982846200429, 56.171265747072887 ], [ -131.106433122293225, 56.194943682535509 ], [ -130.998626013515377, 56.27345473170103 ], [ -131.012764650732151, 56.31457956697821 ], [ -131.095829144380644, 56.335765088181603 ], [ -131.08699249612016, 56.408045101699074 ], [ -131.085225166468064, 56.406798894569462 ], [ -130.811289070393201, 56.370658887810727 ], [ -130.740595884309357, 56.343242330959278 ], [ -130.622184797618928, 56.268469903182584 ], [ -130.466659788234466, 56.239807139201524 ], [ -130.426011206236268, 56.140110568832604 ], [ -130.342946712587747, 56.127648497536491 ], [ -130.245743581722479, 56.096493319296201 ], [ -130.289926823024871, 56.054122276889409 ], [ -130.219233636941027, 55.999289163186504 ], [ -130.28462483406858, 55.996796748927281 ], [ -130.388897283542235, 55.943209842353987 ], [ -130.233372274157801, 55.813604300874395 ], [ -130.137936472944631, 55.762509808560324 ], [ -130.150307780509308, 55.726369801801589 ], [ -130.111426528163179, 55.681506345135574 ], [ -130.120263176423663, 55.563116667822484 ], [ -130.084916583381755, 55.490836654305021 ], [ -130.038966012427238, 55.428526297824448 ], [ -130.023060045558395, 55.338799384492418 ], [ -129.982411463560169, 55.302659377733683 ], [ -130.001852089733234, 55.265273163845343 ], [ -130.104357209554792, 55.189254528939038 ], [ -130.167981077030248, 55.105758651255073 ], [ -130.221000966593124, 55.026001394959934 ], [ -130.339412053283581, 54.921319996072569 ], [ -130.528516326057826, 54.811653768666758 ], [ -130.636323434835674, 54.778006176167253 ], [ -130.627486786575219, 54.739373755149295 ], [ -130.685808665094385, 54.716942026816291 ], [ -130.737061225005164, 54.753082033575019 ], [ -130.791848444220136, 54.785483418944921 ], [ -130.844868333783012, 54.765544104871132 ], [ -130.866076289608174, 54.769282726259974 ], [ -130.933234816387824, 54.806668940148313 ], [ -130.947373453604598, 54.886426196443452 ], [ -130.959744761169247, 54.933782067368689 ], [ -130.975650728038119, 54.974906902645863 ], [ -131.012764650732151, 54.996092423849262 ], [ -130.99685868386328, 55.044694501904111 ], [ -131.012764650732151, 55.090804165699737 ], [ -131.051645903078253, 55.118220722551186 ], [ -131.08699249612016, 55.163084179217201 ], [ -131.094061814728548, 55.191746943198261 ], [ -131.161220341508198, 55.197977978846318 ], [ -131.191264945593844, 55.108251065514295 ], [ -131.189497615941718, 55.0434482947745 ], [ -131.246052164808816, 54.989861388201206 ], [ -131.246052164808816, 54.941259310146357 ], [ -131.194799604898037, 54.920073788942958 ], [ -131.253121483417203, 54.866486882369664 ], [ -131.327349328805212, 54.859009639591996 ], [ -131.433389107930992, 54.896395853480342 ], [ -131.491710986450158, 54.930043445979848 ], [ -131.595983435923813, 54.931289653109459 ], [ -131.622493380705237, 54.946244138664802 ], [ -131.611889402792684, 54.986122766812372 ], [ -131.380369218368116, 54.992353802460428 ], [ -131.293770065415401, 55.18177728616137 ], [ -131.569473491142389, 55.301413170604071 ], [ -131.624260710357362, 55.276489028011845 ], [ -131.620726051053168, 55.109497272643907 ], [ -131.74974111565615, 55.129436586717688 ], [ -131.829270950000478, 55.199224185975936 ], [ -131.862850213390317, 55.29019730643757 ], [ -131.85578089478193, 55.42104905504678 ], [ -131.845176916869349, 55.455942854675897 ], [ -131.972424651820262, 55.498313897082689 ], [ -132.11381102398795, 55.550654596526371 ], [ -132.182736880419668, 55.588040810414718 ], [ -132.200410176940636, 55.637889095599178 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "220", "COUNTYNS": "01419981", "AFFGEOID": "0500000US02220", "GEOID": "02220", "NAME": "Sitka", "LSAD": "03", "ALAND": 7434275351, "AWATER": 5027235337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -136.371308155887192, 57.831213643715387 ], [ -136.026678873728457, 57.836198472233832 ], [ -135.906500457385931, 58.000697813342548 ], [ -135.719163514263755, 57.930910214084307 ], [ -135.535361230445773, 57.882308136029458 ], [ -135.245519167502039, 57.76516466584598 ], [ -135.068786202292443, 57.763918458716368 ], [ -134.950375115602014, 57.785103979919761 ], [ -134.939771137689434, 57.763918458716368 ], [ -134.824894710303198, 57.499722547238733 ], [ -134.824894710303198, 57.371363212888753 ], [ -134.854939314388815, 57.264189399742165 ], [ -134.738295557350483, 56.976315552801907 ], [ -134.695879645700188, 56.901543125025221 ], [ -134.662300382310349, 56.805585176045135 ], [ -134.628721118920538, 56.709627227065049 ], [ -134.614582481703764, 56.637347213547585 ], [ -134.626953789268441, 56.553851335863612 ], [ -134.669369700918736, 56.523942364752941 ], [ -134.641092426485216, 56.445431315587413 ], [ -134.634023107876828, 56.3457347452185 ], [ -134.634023107876828, 56.265977488923362 ], [ -134.653463734049865, 56.198682303924343 ], [ -134.67290436022293, 56.166280918554442 ], [ -134.763038172479838, 56.209898168090845 ], [ -134.808988743434327, 56.244791967719969 ], [ -134.839033347519944, 56.309594738459765 ], [ -134.915028522560078, 56.360689230773836 ], [ -134.976885060383438, 56.437954072809745 ], [ -135.058182224379863, 56.530173400400997 ], [ -135.123573421507416, 56.603699621048072 ], [ -135.174825981418195, 56.678472048824766 ], [ -135.215474563416421, 56.666009977528645 ], [ -135.305608375673302, 56.727074126879614 ], [ -135.362162924540371, 56.759475512249509 ], [ -135.466435374014026, 56.771937583545622 ], [ -135.551267197314644, 56.84172518280387 ], [ -135.507083956012252, 56.866649325396097 ], [ -135.477039351926607, 56.89157346798833 ], [ -135.441692758884699, 56.942667960302401 ], [ -135.353326276279887, 57.021179009467922 ], [ -135.457598725753542, 57.071027294652382 ], [ -135.572475153139806, 57.104674887151894 ], [ -135.60428708687752, 57.046103152060155 ], [ -135.637866350267359, 57.00996314530142 ], [ -135.825203293389507, 56.990023831227631 ], [ -135.857015227127249, 56.996254866875695 ], [ -135.844643919562571, 57.084735573078106 ], [ -135.754510107305691, 57.123367994096064 ], [ -135.754510107305691, 57.166985243632467 ], [ -135.832272611997894, 57.16947765789169 ], [ -135.871153864344024, 57.220572150205761 ], [ -135.837574600954184, 57.281636299556723 ], [ -135.858782556779346, 57.321514927704293 ], [ -135.892361820169185, 57.407503219647481 ], [ -135.943614380079964, 57.458597711961552 ], [ -136.047886829553619, 57.513430825664457 ], [ -136.088535411551817, 57.554555660941638 ], [ -136.162763256939854, 57.558294282330472 ], [ -136.238758431979988, 57.62558946732949 ], [ -136.251129739544638, 57.68416120242123 ], [ -136.305916958759639, 57.771395701494036 ], [ -136.371308155887192, 57.831213643715387 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "100", "COUNTYNS": "01419970", "AFFGEOID": "0500000US02100", "GEOID": "02100", "NAME": "Haines", "LSAD": "04", "ALAND": 6009021796, "AWATER": 1049986571 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.722698173567949, 59.729187102113677 ], [ -135.376301561757145, 59.340370477674895 ], [ -135.028137620294217, 59.345355306193341 ], [ -134.960979093514595, 59.280552535453545 ], [ -134.701181634656479, 59.248151150083643 ], [ -134.664067711962446, 59.180855965084625 ], [ -134.566864581097178, 59.128515265640942 ], [ -134.480265428144463, 59.127269058511331 ], [ -134.379527637975002, 59.035049730920079 ], [ -134.400735593800164, 58.975231788698729 ], [ -134.326507748412126, 58.962769717402615 ], [ -135.219009222720587, 58.973985581569117 ], [ -135.063484213336153, 58.45182479426191 ], [ -135.104132795334351, 58.449332380002687 ], [ -135.068786202292443, 58.374559952225994 ], [ -135.049345576119379, 58.309757181486198 ], [ -135.100598136030158, 58.292310281671639 ], [ -135.088226828465508, 58.200090954080387 ], [ -135.227845870981071, 58.237477167968734 ], [ -135.305608375673302, 58.243708203616791 ], [ -135.40811349549486, 58.343404773985711 ], [ -135.455831396101473, 58.338419945467258 ], [ -135.448762077493086, 58.403222716207061 ], [ -135.494712648447575, 58.500426872316751 ], [ -135.317979683237979, 58.500426872316751 ], [ -135.41341548445115, 58.585168957130335 ], [ -135.401044176886472, 58.616324135370625 ], [ -135.528291911837385, 58.656202763518188 ], [ -135.54773253801045, 58.69857380592498 ], [ -135.758044766609885, 58.743437262590994 ], [ -135.682049591569751, 58.85808831851525 ], [ -135.522989922881095, 58.88924349675554 ], [ -135.60428708687752, 58.909182810829321 ], [ -135.584846460704455, 58.985201445735619 ], [ -135.689118910178138, 59.016356623975909 ], [ -135.701490217742787, 59.103591123048716 ], [ -135.892361820169185, 59.172132515177346 ], [ -136.053188818509909, 59.177117343695791 ], [ -136.122114674941656, 59.20702631480647 ], [ -136.369540826235095, 59.231950457398696 ], [ -136.487951912925524, 59.261859428509368 ], [ -136.466743957100363, 59.284291156842379 ], [ -136.475580605360847, 59.46374498350643 ], [ -136.358936848322514, 59.450036705080706 ], [ -136.235223772675795, 59.524809132857392 ], [ -136.238758431979988, 59.558456725356905 ], [ -136.351867529714127, 59.599581560634086 ], [ -136.191040531373403, 59.639460188781655 ], [ -135.947149039384158, 59.664384331373881 ], [ -135.722698173567949, 59.729187102113677 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "158", "COUNTYNS": "01419985", "AFFGEOID": "0500000US02158", "GEOID": "02158", "NAME": "Kusilvak", "LSAD": "05", "ALAND": 44240303738, "AWATER": 6712008759 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -162.596712863339604, 63.28087742150641 ], [ -162.377563986479686, 63.273400178728735 ], [ -162.374029327175492, 63.186165679655936 ], [ -162.183157724749123, 63.186165679655936 ], [ -162.176088406140764, 63.096438766323907 ], [ -161.988751463018559, 63.096438766323907 ], [ -161.990518792670684, 63.012942888639941 ], [ -160.850591167068757, 63.012942888639941 ], [ -160.942492308977762, 62.999234610214216 ], [ -160.993744868888541, 62.898291832715685 ], [ -161.04499742879932, 62.550600043554077 ], [ -161.048532088103514, 62.20664687578131 ], [ -160.91068037524002, 62.204154461522087 ], [ -160.914215034544213, 61.949928207081342 ], [ -160.534239159343571, 61.94743579282212 ], [ -160.468847962216017, 61.870170950786211 ], [ -160.186075217880671, 61.831538529768252 ], [ -160.201981184749513, 61.81035300856486 ], [ -160.350436875525588, 61.819076458472139 ], [ -160.597863026819027, 61.760504723380393 ], [ -160.774595992028623, 61.739319202177001 ], [ -160.954863616542411, 61.685732295603707 ], [ -161.126294592795716, 61.599744003660518 ], [ -161.449715919129289, 61.568588825420228 ], [ -161.697142070422728, 61.52995640440227 ], [ -161.886246343197001, 61.48260053347704 ], [ -162.013494078147914, 61.477615704958595 ], [ -162.328078756221004, 61.518740540235768 ], [ -162.476534446997078, 61.503786054680432 ], [ -162.504811721430599, 61.556126754124115 ], [ -162.754005202376135, 61.542418475698383 ], [ -162.847673673937237, 61.498801226161987 ], [ -163.061520561840837, 61.480108119217817 ], [ -163.171095000270782, 61.448952940977527 ], [ -163.430892459128899, 61.483846740606651 ], [ -163.53163024929836, 61.40159707005229 ], [ -163.524560930690001, 61.355487406256664 ], [ -163.655343324945079, 61.335548092182883 ], [ -163.786125719200186, 61.366703270423166 ], [ -163.992903288495427, 61.371688098941618 ], [ -163.982299310582846, 61.243328764591631 ], [ -163.922210102411583, 61.210927379221729 ], [ -164.017645903624782, 61.19223427227756 ], [ -164.121918353098437, 61.127431501537764 ], [ -164.203215517094861, 61.151109437000379 ], [ -164.212052165355317, 61.082568044871749 ], [ -164.146660968227792, 61.075090802094081 ], [ -164.155497616488248, 61.022750102650399 ], [ -164.233260121180479, 60.987856303021275 ], [ -164.528404173080503, 60.940500432096044 ], [ -164.616770655685315, 60.979132853113995 ], [ -164.797038280199104, 60.982871474502829 ], [ -165.108088298967999, 60.926792153670313 ], [ -165.194687451920714, 60.97414802459555 ], [ -165.134598243749451, 61.011534238483897 ], [ -165.05683573905722, 61.060136316538745 ], [ -165.139900232705713, 61.09253770190864 ], [ -165.20352410018117, 61.149863229870768 ], [ -165.325469846175793, 61.169802543944556 ], [ -165.385559054347056, 61.078829423482915 ], [ -165.459786899735093, 61.083814252001361 ], [ -165.555222700948292, 61.09253770190864 ], [ -165.640054524248882, 61.137401158574654 ], [ -165.632985205640495, 61.228374279036295 ], [ -165.624148557380039, 61.278222564220755 ], [ -165.788510215024957, 61.310623949590649 ], [ -165.830926126675251, 61.306885328201815 ], [ -165.92105993893216, 61.402843277181901 ], [ -165.876876697629768, 61.431506041162962 ], [ -165.79204487432915, 61.450199148107139 ], [ -165.746094303374662, 61.490077776254708 ], [ -165.866272719717188, 61.534941232920715 ], [ -165.912223290671676, 61.556126754124115 ], [ -166.000589773276488, 61.539926061439161 ], [ -166.076584948316594, 61.492570190513931 ], [ -166.150812793704631, 61.513755711717323 ], [ -166.212669331527991, 61.608467453567798 ], [ -166.143743475096244, 61.724364716621665 ], [ -166.051842333187267, 61.766735759028457 ], [ -166.094258244837562, 61.814091629953694 ], [ -165.940500565105197, 61.848985429582811 ], [ -165.804416181893828, 61.826553701249807 ], [ -165.640054524248882, 61.8477392224532 ], [ -165.650658502161463, 61.875155779304656 ], [ -165.744326973722565, 61.963636485507067 ], [ -165.754930951635117, 62.05710202022793 ], [ -165.671866457986624, 62.139351690782291 ], [ -165.458019570082996, 62.282665510687607 ], [ -165.268915297308723, 62.427225537722542 ], [ -165.095716991403322, 62.521937279573017 ], [ -165.05153375010093, 62.597955914479314 ], [ -164.961399937844021, 62.657773856700665 ], [ -164.837686862197302, 62.685190413552121 ], [ -164.864196806978754, 62.752485598551139 ], [ -164.874800784891335, 62.806072505124433 ], [ -164.812944247067975, 62.903276661234131 ], [ -164.683929182464965, 63.02166633854722 ], [ -164.606166677772734, 63.112639459008861 ], [ -164.441805020127816, 63.202366372340883 ], [ -164.210284835703249, 63.252214657525343 ], [ -164.067131133883464, 63.262184314562234 ], [ -163.885096179717578, 63.222305686414671 ], [ -163.73310582963731, 63.213582236507392 ], [ -163.616462072598978, 63.141302222989921 ], [ -163.529862919646291, 63.135071187341865 ], [ -163.316016031742663, 63.037867031232167 ], [ -163.05445124323245, 63.057806345305949 ], [ -162.920134189673149, 63.120116701786529 ], [ -162.844139014633043, 63.153764294286034 ], [ -162.821163729155785, 63.206104993729717 ], [ -162.723960598290518, 63.214828443637003 ], [ -162.596712863339604, 63.28087742150641 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "282", "COUNTYNS": "01419986", "AFFGEOID": "0500000US02282", "GEOID": "02282", "NAME": "Yakutat", "LSAD": "03", "ALAND": 19811664933, "AWATER": 4696568493 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -141.00171184437869, 60.392169295066985 ], [ -141.00171184437869, 60.306181003123797 ], [ -140.535136816225332, 60.225177539699047 ], [ -140.473280278401973, 60.311165831642242 ], [ -139.989031953727675, 60.185298911551484 ], [ -139.697422561131845, 60.341074802752914 ], [ -139.085926501506634, 60.358521702567479 ], [ -139.080624512550344, 60.324874110067967 ], [ -139.199035599240773, 60.09058716970101 ], [ -139.045277919508408, 59.998367842109758 ], [ -138.702415967001798, 59.90988713590734 ], [ -138.644094088482632, 59.792743665723862 ], [ -138.585772209963466, 59.752865037576299 ], [ -137.604904253050194, 59.243166321565198 ], [ -137.498864473924414, 58.98644765286523 ], [ -137.525374418705866, 58.906690396570099 ], [ -137.525374418705866, 58.906690396570099 ], [ -137.938929557296319, 58.803255204812345 ], [ -137.924790920079545, 58.843133832959914 ], [ -137.951300864860997, 58.885504875366706 ], [ -138.066177292247232, 58.956538681754559 ], [ -138.225236960935888, 59.031311109531245 ], [ -138.357786684843063, 59.068697323419592 ], [ -138.637024769874245, 59.129761472770554 ], [ -138.808455746127549, 59.208272521936081 ], [ -138.918030184557495, 59.248151150083643 ], [ -139.070020534637763, 59.286783571101601 ], [ -139.269728785324617, 59.336631856286061 ], [ -139.41995180575276, 59.379002898692853 ], [ -139.632031364004291, 59.460006362117596 ], [ -139.861784218776762, 59.547240861190403 ], [ -139.741605802434236, 59.623259496096701 ], [ -139.586080793049803, 59.643198810170489 ], [ -139.587848122701871, 59.709247788039896 ], [ -139.609056078527033, 59.82265263683454 ], [ -139.776952395476144, 59.833868501001042 ], [ -139.870620867037246, 59.802713322760752 ], [ -140.080933095636681, 59.756603658965133 ], [ -140.176368896849851, 59.736664344891345 ], [ -140.243527423629502, 59.688062266836496 ], [ -140.411423740578613, 59.699278131002998 ], [ -140.793166945431352, 59.729187102113677 ], [ -140.923949339686459, 59.751618830446688 ], [ -141.157236853763123, 59.813929186927261 ], [ -141.392291697491885, 59.870008507759778 ], [ -141.48419283940089, 59.924841621462683 ], [ -141.595534607482932, 59.96222783535103 ], [ -141.735153649998523, 59.96222783535103 ], [ -141.911886615208118, 60.00958370627626 ], [ -142.062109635636261, 60.024538191831596 ], [ -142.426179543968033, 60.07189406275684 ], [ -142.744298881345316, 60.094325791089844 ], [ -142.908660538990262, 60.09058716970101 ], [ -143.069487537330986, 60.069401648497617 ], [ -143.269195788017839, 60.05943199146072 ], [ -143.62266171843703, 60.037000263127716 ], [ -143.781721387125685, 60.010829913405871 ], [ -143.884226506947243, 59.988398185072867 ], [ -143.889528495903534, 60.043231298775773 ], [ -143.16845799784835, 60.51803621515775 ], [ -142.823828715689643, 60.515543800898527 ], [ -141.963139175118897, 60.520528629416972 ], [ -141.76519825408414, 60.526759665065029 ], [ -141.75989626512785, 60.434540337473777 ], [ -141.212024072978096, 60.437032751733 ], [ -141.212024072978096, 60.393415502196603 ], [ -141.00171184437869, 60.392169295066985 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "105", "COUNTYNS": "02371430", "AFFGEOID": "0500000US02105", "GEOID": "02105", "NAME": "Hoonah-Angoon", "LSAD": "05", "ALAND": 16966364044, "AWATER": 7799665707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -133.697338392265948, 57.795073636956651 ], [ -133.175976144897618, 58.150242668895928 ], [ -133.077005684380254, 57.999451606212936 ], [ -132.868460785432944, 57.842429507881889 ], [ -132.757119017350874, 57.705346723624629 ], [ -132.654613897529316, 57.601911531866875 ], [ -132.827812203434718, 57.580726010663483 ], [ -132.887901411605981, 57.613127396033377 ], [ -132.840183510999395, 57.662975681217837 ], [ -132.871995444737109, 57.712823966402297 ], [ -132.94975794942934, 57.745225351772191 ], [ -132.978035223862889, 57.721547416309576 ], [ -133.188347452462295, 57.741486730383357 ], [ -133.280248594371301, 57.795073636956651 ], [ -133.35447643975931, 57.772641908623648 ], [ -133.494095482274901, 57.82498260806733 ], [ -133.548882701489902, 57.77513432288287 ], [ -133.647853162007266, 57.767657080105202 ], [ -133.697338392265948, 57.795073636956651 ] ] ], [ [ [ -134.722389590481612, 58.210060611117278 ], [ -134.771874820740322, 58.165197154451263 ], [ -134.777176809696584, 58.10288679797069 ], [ -134.695879645700188, 58.030606784453227 ], [ -134.552725943880404, 58.054284719915842 ], [ -134.531517988055271, 58.096655762322634 ], [ -134.255814562328283, 58.145257840377482 ], [ -134.174517398331858, 58.125318526303701 ], [ -134.185121376244439, 58.077962655378464 ], [ -134.13917080528995, 58.046807477138174 ], [ -134.087918245379171, 57.996959191953714 ], [ -134.001319092426456, 57.914709521399359 ], [ -133.905883291213286, 57.807535708252772 ], [ -133.897046642952802, 57.685407409550841 ], [ -133.80868016034799, 57.609388774644543 ], [ -133.817516808608474, 57.568263939367363 ], [ -133.872304027823446, 57.483521854553786 ], [ -133.867002038867156, 57.367624591499919 ], [ -133.787472204522828, 57.311545270667395 ], [ -133.842259423737829, 57.270420435390221 ], [ -133.87583868712764, 57.266681814001387 ], [ -133.983645795905488, 57.302821820760116 ], [ -134.100289552943821, 57.265435606871776 ], [ -134.193958024504923, 57.184432143447026 ], [ -134.303532462934868, 57.135830065392177 ], [ -134.377760308322905, 57.114644544188785 ], [ -134.384829626931293, 57.08847419446694 ], [ -134.443151505450459, 57.062303844745102 ], [ -134.496171395013334, 57.032394873634424 ], [ -134.565097251445081, 57.024917630856756 ], [ -134.634023107876828, 57.10965971567034 ], [ -134.639325096833119, 57.239265257149931 ], [ -134.554493273532501, 57.407503219647481 ], [ -134.607513163095376, 57.512184618534846 ], [ -134.694112316048091, 57.685407409550841 ], [ -134.708250953264837, 57.780119151401315 ], [ -134.752434194567257, 57.938387456861975 ], [ -134.782478798652903, 58.082947483896909 ], [ -134.863775962649299, 58.180151640006599 ], [ -134.957444434210402, 58.322219252782311 ], [ -134.960979093514595, 58.404468923336673 ], [ -134.863775962649299, 58.357113052411435 ], [ -134.787780787609165, 58.28981786741241 ], [ -134.734760898046289, 58.234984753709512 ], [ -134.722389590481612, 58.210060611117278 ] ] ], [ [ [ -134.950375115602014, 57.785103979919761 ], [ -135.068786202292443, 57.763918458716368 ], [ -135.245519167502039, 57.76516466584598 ], [ -135.535361230445773, 57.882308136029458 ], [ -135.719163514263755, 57.930910214084307 ], [ -135.906500457385931, 58.000697813342548 ], [ -136.026678873728457, 57.836198472233832 ], [ -136.371308155887192, 57.831213643715387 ], [ -136.373075485539289, 57.832459850844998 ], [ -136.459674638491975, 57.853645372048391 ], [ -136.484417253621331, 57.896016414455183 ], [ -136.574551065878211, 57.927171592695473 ], [ -136.56394708796563, 58.035591612971672 ], [ -136.539204472836303, 58.094163348063411 ], [ -136.447303330927298, 58.112856455007581 ], [ -136.366006166930902, 58.148996461766316 ], [ -136.387214122756063, 58.25243165352407 ], [ -136.291778321542864, 58.25243165352407 ], [ -136.176901894156629, 58.264893724820183 ], [ -136.033748192336844, 58.277355796116296 ], [ -135.878223182952411, 58.259908896301738 ], [ -135.782787381739212, 58.287325453153187 ], [ -135.712094195655368, 58.232492339450289 ], [ -135.498247307751768, 58.168935775840097 ], [ -135.275563771587656, 58.096655762322634 ], [ -135.109434784290642, 58.087932312415354 ], [ -134.950375115602014, 58.036837820101283 ], [ -134.925632500472659, 57.922186764177027 ], [ -135.005162334816987, 57.884800550288681 ], [ -134.950375115602014, 57.785103979919761 ] ] ], [ [ [ -137.938929557296319, 58.803255204812345 ], [ -137.525374418705866, 58.906690396570099 ], [ -137.447611914013635, 58.909182810829321 ], [ -137.263809630195652, 59.001402138420573 ], [ -136.862625799169876, 59.138484922677833 ], [ -136.825511876475844, 59.158424236751621 ], [ -136.581620384486598, 59.164655272399678 ], [ -136.487951912925524, 59.261859428509368 ], [ -136.369540826235095, 59.231950457398696 ], [ -136.122114674941656, 59.20702631480647 ], [ -136.053188818509909, 59.177117343695791 ], [ -135.892361820169185, 59.172132515177346 ], [ -135.701490217742787, 59.103591123048716 ], [ -135.689118910178138, 59.016356623975909 ], [ -135.584846460704455, 58.985201445735619 ], [ -135.60428708687752, 58.909182810829321 ], [ -135.522989922881095, 58.88924349675554 ], [ -135.682049591569751, 58.85808831851525 ], [ -135.758044766609885, 58.743437262590994 ], [ -135.54773253801045, 58.69857380592498 ], [ -135.528291911837385, 58.656202763518188 ], [ -135.401044176886472, 58.616324135370625 ], [ -135.41341548445115, 58.585168957130335 ], [ -135.317979683237979, 58.500426872316751 ], [ -135.494712648447575, 58.500426872316751 ], [ -135.448762077493086, 58.403222716207061 ], [ -135.455831396101473, 58.338419945467258 ], [ -135.544197878706257, 58.33094270268959 ], [ -135.650237657832008, 58.324711667041534 ], [ -135.728000162524239, 58.396991680558997 ], [ -135.918871764950609, 58.382037195003662 ], [ -136.042584840597328, 58.38079098787405 ], [ -136.113278026681172, 58.343404773985711 ], [ -136.267035706413509, 58.314742010004643 ], [ -136.438466682666842, 58.30227993870853 ], [ -136.54627379144469, 58.317234424263866 ], [ -136.578085725182405, 58.278602003245908 ], [ -136.569249076921949, 58.244954410746402 ], [ -136.592224362399179, 58.217537853894946 ], [ -136.700031471177027, 58.220030268154169 ], [ -136.715937438045898, 58.273617174727462 ], [ -136.857323810213586, 58.317234424263866 ], [ -136.910343699776462, 58.37082133083716 ], [ -136.986338874816596, 58.404468923336673 ], [ -137.078240016725573, 58.398237887688609 ], [ -137.239067015066325, 58.453071001391521 ], [ -137.355710772104658, 58.492949629539083 ], [ -137.567790330356161, 58.588907578519169 ], [ -137.654389483308876, 58.60884689259295 ], [ -137.680899428090299, 58.657448970647799 ], [ -137.836424437474761, 58.742191055461383 ], [ -137.942464216600513, 58.793285547775454 ], [ -137.938929557296319, 58.803255204812345 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "110", "COUNTYNS": "01419971", "AFFGEOID": "0500000US02110", "GEOID": "02110", "NAME": "Juneau", "LSAD": "03", "ALAND": 6998182120, "AWATER": 1429472851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -134.722389590481612, 58.210060611117278 ], [ -134.699414305004382, 58.161458533062429 ], [ -134.607513163095376, 58.17142819009932 ], [ -134.460824801971398, 58.158966118803207 ], [ -134.328275078064223, 58.135288183340592 ], [ -134.257581891980379, 58.145257840377482 ], [ -134.255814562328283, 58.145257840377482 ], [ -134.531517988055271, 58.096655762322634 ], [ -134.552725943880404, 58.054284719915842 ], [ -134.695879645700188, 58.030606784453227 ], [ -134.777176809696584, 58.10288679797069 ], [ -134.771874820740322, 58.165197154451263 ], [ -134.722389590481612, 58.210060611117278 ] ] ], [ [ [ -134.326507748412126, 58.962769717402615 ], [ -134.328275078064223, 58.919152467866212 ], [ -134.250512573371992, 58.85808831851525 ], [ -133.840492094085732, 58.728482777035659 ], [ -133.700873051570142, 58.607600685463339 ], [ -133.379219054888665, 58.428146858799288 ], [ -133.462283548537187, 58.385775816392496 ], [ -133.343872461846757, 58.27112476046824 ], [ -133.175976144897618, 58.150242668895928 ], [ -133.697338392265948, 57.795073636956651 ], [ -133.709709699830626, 57.797566051215881 ], [ -133.849328742346188, 57.935895042602752 ], [ -134.050804322685138, 58.06176196269351 ], [ -134.079081597118687, 58.15273508315515 ], [ -134.148007453550434, 58.198844746950776 ], [ -134.234606606503121, 58.197598539821165 ], [ -134.374225649018712, 58.208814403987667 ], [ -134.464359461275592, 58.227507510931837 ], [ -134.630488448572635, 58.247446825005625 ], [ -134.750666864915161, 58.392006852040552 ], [ -134.93623647838524, 58.458055829909966 ], [ -135.063484213336153, 58.45182479426191 ], [ -135.219009222720587, 58.973985581569117 ], [ -134.326507748412126, 58.962769717402615 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "068", "COUNTYNS": "01419988", "AFFGEOID": "0500000US02068", "GEOID": "02068", "NAME": "Denali", "LSAD": "04", "ALAND": 33015947847, "AWATER": 66068782 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.996802607374605, 64.34139968880578 ], [ -147.782955719471005, 64.259150018251418 ], [ -147.003563342896655, 64.256657603992196 ], [ -146.971751409158941, 63.918935471867485 ], [ -146.975286068463134, 63.480270562244243 ], [ -148.033916530068637, 63.470300905207353 ], [ -148.037451189372831, 63.33072570669087 ], [ -148.746150379863309, 63.335710535209316 ], [ -149.507869459916691, 63.331971913820482 ], [ -150.002721762503569, 63.22105947928506 ], [ -151.888462501289979, 62.794856640957931 ], [ -151.893764490246269, 62.722576627440461 ], [ -152.4151267376146, 62.722576627440461 ], [ -153.000112852458358, 62.727561455958906 ], [ -152.434567363787636, 63.169964986970989 ], [ -152.434567363787636, 63.305801564098637 ], [ -152.627206295866102, 63.302062942709803 ], [ -152.623671636561909, 63.346926399375818 ], [ -152.811008579684085, 63.351911227894263 ], [ -152.802171931423601, 63.481516769373854 ], [ -152.853424491334408, 63.652247146130634 ], [ -152.241928431709198, 63.657231974649079 ], [ -152.234859113100811, 63.822977522887406 ], [ -152.056358818239119, 63.822977522887406 ], [ -152.047522169978635, 63.999938935292235 ], [ -151.824838633814522, 64.00492376381068 ], [ -151.791259370424712, 64.082188605846596 ], [ -151.57917981217318, 64.084681020105819 ], [ -151.524392592958208, 64.032340320662129 ], [ -151.301709056794124, 64.009908592329126 ], [ -151.135580069497081, 64.133283098160661 ], [ -150.74853487568808, 64.365077624268395 ], [ -149.668696458257415, 64.357600381490727 ], [ -149.119056936455564, 64.358846588620338 ], [ -149.108452958542983, 64.343892103065002 ], [ -147.996802607374605, 64.34139968880578 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "188", "COUNTYNS": "01419979", "AFFGEOID": "0500000US02188", "GEOID": "02188", "NAME": "Northwest Arctic", "LSAD": "04", "ALAND": 92295122743, "AWATER": 12906736753 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -165.396163032259636, 68.035157620974218 ], [ -164.498359568994886, 68.035157620974218 ], [ -164.498359568994886, 68.20838041199022 ], [ -163.616462072598978, 68.20838041199022 ], [ -162.722193268638421, 68.20838041199022 ], [ -162.722193268638421, 68.294368703933415 ], [ -162.022330726408399, 68.294368703933415 ], [ -162.022330726408399, 68.20838041199022 ], [ -161.557523027907166, 68.20838041199022 ], [ -161.557523027907166, 68.294368703933415 ], [ -161.090947999753809, 68.294368703933415 ], [ -161.090947999753809, 68.20838041199022 ], [ -160.159565273099219, 68.20838041199022 ], [ -160.159565273099219, 68.294368703933415 ], [ -159.692990244945889, 68.294368703933415 ], [ -159.692990244945889, 68.20838041199022 ], [ -158.178388733099609, 68.20838041199022 ], [ -157.155104864536042, 68.20838041199022 ], [ -157.155104864536042, 68.121145912917413 ], [ -156.23609344544613, 68.121145912917413 ], [ -156.23609344544613, 68.035157620974218 ], [ -155.318849356008315, 68.035157620974218 ], [ -155.318849356008315, 68.000263821345101 ], [ -155.318849356008315, 67.86193482995823 ], [ -155.368334586266997, 67.774700330885423 ], [ -155.142116390798719, 67.774700330885423 ], [ -155.142116390798719, 67.688712038942228 ], [ -154.91766552498251, 67.688712038942228 ], [ -154.91766552498251, 67.601477539869421 ], [ -154.691447329514233, 67.601477539869421 ], [ -154.691447329514233, 67.51548924792624 ], [ -154.749769208033399, 67.255031957837431 ], [ -154.302634806053106, 67.255031957837431 ], [ -154.302634806053106, 67.169043665894236 ], [ -154.147109796668673, 67.169043665894236 ], [ -154.147109796668673, 66.822598083862246 ], [ -154.210733664144129, 66.822598083862246 ], [ -154.210733664144129, 66.736609791919051 ], [ -154.861110976115441, 66.736609791919051 ], [ -154.861110976115441, 66.563387000903063 ], [ -155.509720958434684, 66.563387000903063 ], [ -155.509720958434684, 66.476152501830256 ], [ -155.553904199737076, 66.302929710814254 ], [ -155.981597975544304, 66.302929710814254 ], [ -155.981597975544304, 66.390164209887061 ], [ -156.195444863447904, 66.390164209887061 ], [ -156.195444863447904, 66.476152501830256 ], [ -156.624905968907228, 66.476152501830256 ], [ -156.624905968907228, 66.302929710814254 ], [ -157.052599744714485, 66.302929710814254 ], [ -157.052599744714485, 66.476152501830256 ], [ -157.906219966676844, 66.476152501830256 ], [ -157.906219966676844, 66.129706919798267 ], [ -158.971919746890705, 66.129706919798267 ], [ -158.971919746890705, 65.956484128782265 ], [ -159.606391091993174, 65.956484128782265 ], [ -159.594019784428497, 65.522804047677468 ], [ -159.800797353723738, 65.522804047677468 ], [ -159.800797353723738, 65.438061962863884 ], [ -161.059136066016094, 65.438061962863884 ], [ -161.801414519896412, 65.438061962863884 ], [ -162.78404980646178, 65.438061962863884 ], [ -163.756081115114569, 65.438061962863884 ], [ -163.756081115114569, 65.610038546750275 ], [ -163.964626014061878, 65.610038546750275 ], [ -163.964626014061878, 65.783261337766277 ], [ -164.243864099093059, 65.783261337766277 ], [ -164.243864099093059, 66.129706919798267 ], [ -164.318091944481097, 66.129706919798267 ], [ -164.318091944481097, 66.476152501830256 ], [ -164.395854449173328, 66.476152501830256 ], [ -164.395854449173328, 66.580833900717622 ], [ -163.825006971546316, 66.592049764884123 ], [ -163.6040907650343, 66.558402172384618 ], [ -163.729571170333116, 66.49858423016326 ], [ -163.798497026764863, 66.437520080812305 ], [ -163.874492201804998, 66.38891800275745 ], [ -163.849749586675642, 66.3079145393327 ], [ -163.844447597719352, 66.259312461277858 ], [ -163.925744761715777, 66.224418661648741 ], [ -163.916908113455293, 66.190771069149221 ], [ -163.803799015721154, 66.099797948687581 ], [ -163.695991906943306, 66.059919320540018 ], [ -163.496283656256452, 66.084843463132245 ], [ -163.372570580609732, 66.084843463132245 ], [ -163.146352385141455, 66.058673113410407 ], [ -162.99789669436538, 66.076120013224966 ], [ -162.750470543071941, 66.08982829165069 ], [ -162.621455478468931, 66.038733799336626 ], [ -162.423514557434203, 66.048703456373516 ], [ -162.3298460858731, 66.031256556558958 ], [ -162.137207153794634, 66.078612427484188 ], [ -161.838528442590416, 66.022533106651679 ], [ -161.776671904767056, 66.073627598965743 ], [ -161.614077576774235, 66.177062790723497 ], [ -161.548686379646682, 66.239373147204077 ], [ -161.485062512171226, 66.261804875537081 ], [ -161.341908810351441, 66.255573839889024 ], [ -161.320700854526279, 66.22317245451913 ], [ -161.198755108531657, 66.210710383223002 ], [ -160.993744868888541, 66.234388318685632 ], [ -161.089180670101712, 66.315391782110368 ], [ -161.322468184178376, 66.368978688683669 ], [ -161.575196324428106, 66.396395245535118 ], [ -161.695374740770632, 66.396395245535118 ], [ -161.916290947282647, 66.349039374609887 ], [ -161.86503838737184, 66.459951809145309 ], [ -161.875642365284421, 66.511046301459373 ], [ -162.10539522005692, 66.623204943124406 ], [ -162.174321076488638, 66.688007713864209 ], [ -162.349286712046165, 66.72664013488216 ], [ -162.501277062126405, 66.742840827567107 ], [ -162.626757467425222, 66.859984297750586 ], [ -162.58257422612283, 66.904847754416608 ], [ -162.465930469084498, 66.950957418212226 ], [ -162.467697798736594, 66.980866389322898 ], [ -162.635594115685706, 66.999559496267082 ], [ -162.842371684980947, 66.992082253489414 ], [ -163.012035331582155, 67.029468467377754 ], [ -163.300110064873792, 67.061869852747648 ], [ -163.591719457469651, 67.093025030987945 ], [ -163.703061225551693, 67.110471930802504 ], [ -163.741942477897794, 67.208922294041813 ], [ -163.879794190761288, 67.415792677557306 ], [ -164.051225167014593, 67.566583740240304 ], [ -164.256235406657737, 67.651325825053888 ], [ -164.533706162036793, 67.724852045700956 ], [ -165.093949661751225, 67.931722429216464 ], [ -165.350212461305148, 68.026434171066938 ], [ -165.396163032259636, 68.035157620974218 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "185", "COUNTYNS": "01419978", "AFFGEOID": "0500000US02185", "GEOID": "02185", "NAME": "North Slope", "LSAD": "04", "ALAND": 230092740514, "AWATER": 15795362153 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -141.003479174030758, 68.498746673189686 ], [ -142.360788346840479, 68.490023223282407 ], [ -143.42648812705437, 68.498746673189686 ], [ -144.2960143158856, 68.507470123096965 ], [ -144.598227686394011, 68.501239087448909 ], [ -145.091312659328793, 68.50248529457852 ], [ -145.999720100506124, 68.490023223282407 ], [ -145.997952770854056, 68.000263821345101 ], [ -147.692821907214096, 68.000263821345101 ], [ -149.232166034189703, 67.999017614215489 ], [ -150.258984562057492, 67.999017614215489 ], [ -151.603922427302535, 67.999017614215489 ], [ -153.001880182110455, 67.999017614215489 ], [ -155.318849356008315, 68.000263821345101 ], [ -155.318849356008315, 68.035157620974218 ], [ -156.23609344544613, 68.035157620974218 ], [ -156.23609344544613, 68.121145912917413 ], [ -157.155104864536042, 68.121145912917413 ], [ -157.155104864536042, 68.20838041199022 ], [ -158.178388733099609, 68.20838041199022 ], [ -159.692990244945889, 68.20838041199022 ], [ -159.692990244945889, 68.294368703933415 ], [ -160.159565273099219, 68.294368703933415 ], [ -160.159565273099219, 68.20838041199022 ], [ -161.090947999753809, 68.20838041199022 ], [ -161.090947999753809, 68.294368703933415 ], [ -161.557523027907166, 68.294368703933415 ], [ -161.557523027907166, 68.20838041199022 ], [ -162.022330726408399, 68.20838041199022 ], [ -162.022330726408399, 68.294368703933415 ], [ -162.722193268638421, 68.294368703933415 ], [ -162.722193268638421, 68.20838041199022 ], [ -163.616462072598978, 68.20838041199022 ], [ -164.498359568994886, 68.20838041199022 ], [ -164.498359568994886, 68.035157620974218 ], [ -165.396163032259636, 68.035157620974218 ], [ -165.687772424855496, 68.08999073467713 ], [ -165.873342038325575, 68.109930048750911 ], [ -165.975847158147133, 68.141085226991194 ], [ -166.090723585533368, 68.220842483286333 ], [ -166.313407121697452, 68.289383875414956 ], [ -166.599714525337021, 68.334247332080977 ], [ -166.838304028369976, 68.337985953469811 ], [ -166.590877877076537, 68.405281138468837 ], [ -166.329313088566323, 68.442667352357176 ], [ -166.283362517611835, 68.521178401522704 ], [ -166.230342628048959, 68.614643936243567 ], [ -166.193228705354926, 68.726802577908586 ], [ -166.225040639092668, 68.872608812073139 ], [ -165.924594598236354, 68.867623983554694 ], [ -165.521643437558453, 68.855161912258581 ], [ -164.966701926800312, 68.88257846911003 ], [ -164.526636843428406, 68.917472268739147 ], [ -164.252700747353543, 68.92993434003526 ], [ -163.927512091367873, 68.999721939293508 ], [ -163.574046160948683, 69.123096445125043 ], [ -163.245322845658819, 69.306288893177936 ], [ -163.151654374097745, 69.42966339900947 ], [ -163.151654374097745, 69.612855847062363 ], [ -163.072124539753418, 69.737476560023509 ], [ -162.989060046104896, 69.825957266225927 ], [ -162.787584465765974, 69.929392457983681 ], [ -162.503044391778502, 70.100122834740446 ], [ -162.301568811439552, 70.204804233627812 ], [ -161.880944354240711, 70.329424946588972 ], [ -161.582265643036493, 70.30325459686712 ], [ -161.288888920788565, 70.297023561219063 ], [ -160.813477244374724, 70.376780817514202 ], [ -160.214352492314191, 70.558727058437483 ], [ -159.867955880503388, 70.705779499731634 ], [ -159.647039673991401, 70.794260205934052 ], [ -159.171627997577559, 70.875263669358787 ], [ -159.11507344871049, 70.816691934267055 ], [ -158.853508660200276, 70.791767791674829 ], [ -158.574270575169123, 70.794260205934052 ], [ -158.365725676221786, 70.819184348526278 ], [ -158.03170037197566, 70.831646419822391 ], [ -157.76836825381335, 70.875263669358787 ], [ -157.42020431235045, 70.976206446857333 ], [ -157.176312820361204, 71.09584233130002 ], [ -156.905911383590507, 71.23915615120535 ], [ -156.810475582377308, 71.28651202213058 ], [ -156.568351420040159, 71.352561 ], [ -156.531237497346154, 71.296481679167471 ], [ -156.310321290834167, 71.260341672408742 ], [ -156.073499117453281, 71.242894772594184 ], [ -156.04522184301976, 71.184323037502438 ], [ -155.894998822591589, 71.194292694539342 ], [ -155.587483463126887, 71.171860966206324 ], [ -155.520324936347237, 71.102073366948076 ], [ -155.532696243911914, 71.067179567318959 ], [ -155.705894549817316, 71.019823696393729 ], [ -155.762449098684385, 70.984929896764612 ], [ -155.951553371458658, 70.964990582690817 ], [ -155.979830645892207, 70.917634711765587 ], [ -155.925043426677234, 70.852831941025784 ], [ -155.730637164946671, 70.83040021269278 ], [ -155.543300221824495, 70.846600905377727 ], [ -155.484978343305329, 70.885233326395678 ], [ -155.513255617738878, 70.94006644009859 ], [ -155.363032597310706, 70.993653346671891 ], [ -155.262294807141245, 71.078395431485461 ], [ -155.059051897150198, 71.145690616484487 ], [ -154.944175469763962, 71.125751302410706 ], [ -154.581872891084288, 71.007361625097616 ], [ -154.608382835865712, 70.942558854357813 ], [ -154.573036242823804, 70.825415384174335 ], [ -154.429882541004019, 70.83040021269278 ], [ -154.290263498488429, 70.821676762785501 ], [ -154.127669170495608, 70.778059513249104 ], [ -153.89084699711475, 70.885233326395678 ], [ -153.666396131298541, 70.882740912136455 ], [ -153.426039298613489, 70.890218154914123 ], [ -153.238702355491313, 70.922619540284032 ], [ -153.047830753064943, 70.912649883247141 ], [ -152.90290972159309, 70.883987119266067 ], [ -152.697899481949946, 70.881494705006844 ], [ -152.423963385875084, 70.857816769544229 ], [ -152.22425513518823, 70.824169177044723 ], [ -152.192443201450487, 70.794260205934052 ], [ -152.349735540487046, 70.744411920749585 ], [ -152.35327019979124, 70.697056049824354 ], [ -152.473448616133766, 70.68334777139863 ], [ -152.434567363787636, 70.616052586399604 ], [ -152.29671565092417, 70.60234430797388 ], [ -152.079334103716349, 70.58365120102971 ], [ -151.976828983894791, 70.562465679826317 ], [ -151.697590898863609, 70.547511194270982 ], [ -151.734704821557642, 70.503893944734571 ], [ -151.740006810513933, 70.436598759735546 ], [ -151.504951966785143, 70.4316139312171 ], [ -151.29817439748993, 70.401704960106429 ], [ -151.174461321843211, 70.375534610384591 ], [ -151.020703642110846, 70.434106345476323 ], [ -150.904059885072513, 70.461522902327786 ], [ -150.785648798382084, 70.464015316587009 ], [ -150.555895943609613, 70.482708423531179 ], [ -150.412742241789829, 70.460276695198175 ], [ -150.303167803359884, 70.419151859920987 ], [ -150.07518227823951, 70.44033738112438 ], [ -149.866637379292172, 70.511371187512239 ], [ -149.741156973993355, 70.498909116216126 ], [ -149.461918888962202, 70.517602223160296 ], [ -149.179146144626827, 70.486447044920013 ], [ -148.928185334029195, 70.427875309828266 ], [ -148.666620545518981, 70.430367724087489 ], [ -148.47574894309264, 70.359333917699644 ], [ -148.465144965180059, 70.314470461033622 ], [ -148.350268537793795, 70.304500803996731 ], [ -148.201812847017749, 70.348118053533142 ], [ -147.961456014332697, 70.314470461033622 ], [ -147.864252883467401, 70.29328493983023 ], [ -147.765282422950037, 70.219758719183147 ], [ -147.431257118703883, 70.188603540942864 ], [ -147.233316197669154, 70.208542855016645 ], [ -147.16262301158531, 70.15620215557297 ], [ -146.991192035332006, 70.147478705665691 ], [ -146.885152256206226, 70.186111126683642 ], [ -146.506943710657708, 70.186111126683642 ], [ -146.128735165109163, 70.158694569832193 ], [ -146.005022089462443, 70.141247670017634 ], [ -145.856566398686368, 70.166171812609861 ], [ -145.623278884609704, 70.085168349185111 ], [ -145.435941941487528, 70.03781247825988 ], [ -145.176144482629411, 69.991702814464247 ], [ -144.902208386554548, 69.964286257612798 ], [ -144.792633948124575, 69.980486950297745 ], [ -144.672455531782049, 69.966778671872021 ], [ -144.455073984574256, 70.035320064000658 ], [ -144.274806360060438, 70.049028342426382 ], [ -143.914271111032861, 70.116323527425408 ], [ -143.516621939311278, 70.138755255758412 ], [ -143.42648812705437, 70.125046977332687 ], [ -143.283334425234614, 70.151217327054525 ], [ -143.000561680899239, 70.088906970573944 ], [ -142.747833540649509, 70.042797306778326 ], [ -142.452689488749485, 69.958055221964742 ], [ -142.404971588142899, 69.916930386687568 ], [ -142.240609930497953, 69.896991072613787 ], [ -142.016159064681773, 69.838419337522041 ], [ -141.712178364521264, 69.789817259467185 ], [ -141.429405620185918, 69.695105517616724 ], [ -141.210256743325999, 69.683889653450223 ], [ -141.003479174030758, 69.645257232432257 ], [ -141.003479174030758, 68.498746673189686 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "090", "COUNTYNS": "01419969", "AFFGEOID": "0500000US02090", "GEOID": "02090", "NAME": "Fairbanks North Star", "LSAD": "04", "ALAND": 19019023800, "AWATER": 275189755 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.060959472156839, 64.682860442319324 ], [ -144.069796120417323, 64.652951471208652 ], [ -144.306618293798181, 64.64173560704215 ], [ -144.311920282754471, 64.616811464449924 ], [ -144.462143303182643, 64.583163871950404 ], [ -144.548742456135329, 64.599364564635351 ], [ -144.739614058561699, 64.593133528987295 ], [ -144.790866618472478, 64.56945559352468 ], [ -144.978203561594654, 64.571948007783902 ], [ -145.071872033155756, 64.51337627269217 ], [ -145.36171409609949, 64.487205922970332 ], [ -145.370550744359974, 64.456050744730035 ], [ -145.531377742700698, 64.417418323712084 ], [ -145.739922641648036, 64.459789366118869 ], [ -145.914888277205534, 64.423649359360141 ], [ -145.999720100506124, 64.383770731212564 ], [ -146.157012439542683, 64.386263145471787 ], [ -146.236542273887011, 64.357600381490727 ], [ -146.233007614582817, 64.310244510565497 ], [ -146.356720690229537, 64.277843125195602 ], [ -146.485735754832547, 64.281581746584436 ], [ -146.644795423521174, 64.256657603992196 ], [ -147.003563342896655, 64.256657603992196 ], [ -147.782955719471005, 64.259150018251418 ], [ -147.996802607374605, 64.34139968880578 ], [ -148.058659145197964, 64.345138310194613 ], [ -148.56058076639323, 64.615565257320313 ], [ -148.661318556562719, 64.588148700468849 ], [ -148.661318556562719, 65.210006058144984 ], [ -147.554970194350602, 65.210006058144984 ], [ -147.335821317490712, 65.273562621755175 ], [ -147.017701980113429, 65.291009521569734 ], [ -146.948776123681682, 65.274808828884787 ], [ -146.568800248481068, 65.345842635272632 ], [ -146.48927041413674, 65.38696747054982 ], [ -146.192359032584591, 65.455508862678442 ], [ -146.119898516848679, 65.406906784623601 ], [ -145.992650781897765, 65.406906784623601 ], [ -146.137571813369618, 65.310948835643515 ], [ -146.077482605198355, 65.246146064903712 ], [ -145.87247236555524, 65.214990886663429 ], [ -145.616209566001316, 65.143957080275584 ], [ -145.750526619560617, 65.099093623609562 ], [ -145.648021499739031, 65.034290852869759 ], [ -145.41826864496656, 65.085385345183838 ], [ -145.209723746019222, 65.072923273887724 ], [ -144.97466890229046, 65.136479837497916 ], [ -144.891604408641967, 65.137726044627527 ], [ -144.444470006661675, 65.062953616850834 ], [ -144.246529085626918, 65.119032937683343 ], [ -143.977894978508346, 65.119032937683343 ], [ -143.884226506947243, 65.090370173702283 ], [ -144.10514271345923, 65.015597745925589 ], [ -143.992033615725092, 64.976965324907638 ], [ -144.119281350676005, 64.798757705373191 ], [ -144.060959472156839, 64.682860442319324 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "198", "COUNTYNS": "01419980", "AFFGEOID": "0500000US02198", "GEOID": "02198", "NAME": "Prince of Wales-Hyder", "LSAD": "05", "ALAND": 13628542078, "AWATER": 14538534959 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -130.245743581722479, 56.096493319296201 ], [ -130.102589879902695, 56.116432633369982 ], [ -130.003619419385331, 55.993058127538447 ], [ -130.012456067645815, 55.915793285502538 ], [ -130.08314925372963, 55.823573957911286 ], [ -130.123797835727856, 55.806127058096727 ], [ -130.137936472944631, 55.762509808560324 ], [ -130.233372274157801, 55.813604300874395 ], [ -130.388897283542235, 55.943209842353987 ], [ -130.28462483406858, 55.996796748927281 ], [ -130.219233636941027, 55.999289163186504 ], [ -130.289926823024871, 56.054122276889409 ], [ -130.245743581722479, 56.096493319296201 ] ] ], [ [ [ -131.620726051053168, 55.109497272643907 ], [ -131.624260710357362, 55.276489028011845 ], [ -131.569473491142389, 55.301413170604071 ], [ -131.293770065415401, 55.18177728616137 ], [ -131.380369218368116, 54.992353802460428 ], [ -131.611889402792684, 54.986122766812372 ], [ -131.606587413836394, 55.004815873756542 ], [ -131.647235995834592, 55.035971051996825 ], [ -131.590681446967523, 55.089557958570119 ], [ -131.606587413836394, 55.108251065514295 ], [ -131.620726051053168, 55.109497272643907 ] ] ], [ [ [ -133.039891761686249, 56.238560932071913 ], [ -133.0116144872527, 56.138864361702993 ], [ -132.887901411605981, 56.064091933926306 ], [ -132.859624137172432, 56.052876069759797 ], [ -132.836648851695202, 56.024213305778737 ], [ -132.617499974835312, 55.910808456984093 ], [ -132.470811613711334, 55.781202915504494 ], [ -132.46197496545085, 55.674029102357906 ], [ -132.382445131106522, 55.665305652450627 ], [ -132.301147967110126, 55.550654596526371 ], [ -132.14208829842147, 55.457189061805508 ], [ -132.256964725807705, 55.416064226528334 ], [ -132.126182331552627, 55.288951099307958 ], [ -132.036048519295719, 55.275242820882234 ], [ -131.977726640776552, 55.18177728616137 ], [ -132.027211871035234, 55.104512444125461 ], [ -131.98479595938494, 55.028493809219157 ], [ -131.98479595938494, 54.897642060609954 ], [ -131.958286014603488, 54.791714454592977 ], [ -132.000701926253782, 54.731896512371627 ], [ -132.028979200687331, 54.700741334131337 ], [ -132.165063583898728, 54.69451029848328 ], [ -132.226920121722088, 54.72566547672357 ], [ -132.306449956066388, 54.719434441075514 ], [ -132.366539164237679, 54.751835826445408 ], [ -132.403653086931683, 54.784237211815309 ], [ -132.509692866057435, 54.781744797556087 ], [ -132.638707930660445, 54.753082033575019 ], [ -132.674054523702353, 54.674570984409499 ], [ -132.75358435804668, 54.673324777279888 ], [ -132.866693455780819, 54.700741334131337 ], [ -132.8772974336934, 54.754328240704631 ], [ -132.917946015691598, 54.782991004685698 ], [ -132.990406531427539, 54.821623425703649 ], [ -133.098213640205415, 54.918827581813346 ], [ -133.165372166985037, 54.977399316905085 ], [ -133.197184100722779, 55.033478637737602 ], [ -133.239600012373103, 55.09329657995896 ], [ -133.214857397243748, 55.136913829495356 ], [ -133.232530693764716, 55.199224185975936 ], [ -133.282015924023398, 55.217917292920106 ], [ -133.342105132194661, 55.206701428753604 ], [ -133.40396167001802, 55.215424878660883 ], [ -133.472887526449767, 55.247826264030778 ], [ -133.467585537493477, 55.282720063659902 ], [ -133.587763953836003, 55.308890413381746 ], [ -133.596600602096487, 55.219163500049717 ], [ -133.658457139919847, 55.232871778475442 ], [ -133.690269073657561, 55.305151791992905 ], [ -133.633714524790491, 55.362477319955033 ], [ -133.631947195138395, 55.416064226528334 ], [ -133.699105721918045, 55.454696647546285 ], [ -133.789239534174953, 55.457189061805508 ], [ -133.753892941133017, 55.543177353748703 ], [ -133.729150326003662, 55.593025638933163 ], [ -133.716779018439013, 55.660320823932182 ], [ -133.644318502703072, 55.728862216060811 ], [ -133.700873051570142, 55.784941536893328 ], [ -133.700873051570142, 55.83728223633701 ], [ -133.861700049910866, 55.848498100503519 ], [ -133.920021928430032, 55.859713964670021 ], [ -133.935927895298903, 55.920778114020983 ], [ -133.817516808608474, 55.964395363557387 ], [ -133.732684985307856, 56.029198134297182 ], [ -133.660224469571915, 56.084031248000088 ], [ -133.644318502703072, 56.127648497536491 ], [ -133.672595777136621, 56.222360239386958 ], [ -133.65668981026775, 56.280931974478705 ], [ -133.65668981026775, 56.327041638274324 ], [ -133.582461964879712, 56.351965780866557 ], [ -133.418100307234795, 56.332026466792769 ], [ -133.197184100722779, 56.33327267392238 ], [ -133.158302848376678, 56.31457956697821 ], [ -133.07877301403235, 56.247284381979192 ], [ -133.039891761686249, 56.238560932071913 ] ] ], [ [ [ -133.317362517065305, 57.003732109653363 ], [ -133.273179275762914, 56.922728646228613 ], [ -133.499397471231191, 56.882850018081044 ], [ -133.497630141579094, 56.747013440953396 ], [ -133.578927305575519, 56.758229305119897 ], [ -133.441075592712025, 56.637347213547585 ], [ -133.414565647930601, 56.456647179753922 ], [ -133.46051621888509, 56.4541547654947 ], [ -133.65668981026775, 56.442938901328191 ], [ -133.822818797564764, 56.391844409014126 ], [ -133.835190105129442, 56.319564395496656 ], [ -133.877606016779737, 56.275947145960252 ], [ -133.88114067608393, 56.22360644651657 ], [ -133.94299721390729, 56.179989196980173 ], [ -133.928858576690516, 56.146341604480661 ], [ -133.960670510428258, 56.091508490777755 ], [ -134.018992388947424, 56.087769869388922 ], [ -134.087918245379171, 56.095247112166589 ], [ -134.123264838421079, 56.029198134297182 ], [ -134.100289552943821, 55.984334677631168 ], [ -134.117962849464789, 55.914547078372927 ], [ -134.209863991373794, 55.875914657354969 ], [ -134.255814562328283, 55.844759479114678 ], [ -134.310601781543255, 55.812358093744784 ], [ -134.344181044933066, 55.84600568624429 ], [ -134.374225649018712, 55.928255356798651 ], [ -134.292928485022287, 55.925762942539428 ], [ -134.202794672765407, 56.035429169945239 ], [ -134.261116551284573, 56.133879533184547 ], [ -134.282324507109706, 56.25476162475686 ], [ -134.294695814674384, 56.335765088181603 ], [ -134.243443254763605, 56.39558303040296 ], [ -134.252279903024089, 56.444185108457802 ], [ -134.199260013461213, 56.531419607530609 ], [ -134.243443254763605, 56.556343750122835 ], [ -134.319438429803739, 56.555097542993224 ], [ -134.301765133282771, 56.621146520862638 ], [ -134.375992978670808, 56.668502391787875 ], [ -134.418408890321103, 56.8230320758597 ], [ -134.39189894553968, 56.864156911136874 ], [ -134.271720529197154, 56.936436924654345 ], [ -134.193958024504923, 56.933944510395122 ], [ -134.148007453550434, 56.957622445857737 ], [ -134.049036993033042, 56.923974853358224 ], [ -134.006621081382747, 56.851694839840761 ], [ -133.94299721390729, 56.805585176045135 ], [ -133.868769368519253, 56.846710011322315 ], [ -133.921789258082129, 56.962607274376182 ], [ -134.049036993033042, 57.029902459375201 ], [ -134.01015574068694, 57.074765916041216 ], [ -133.888209994692318, 57.097197644374219 ], [ -133.739754303916243, 57.072273501781993 ], [ -133.536511393925196, 57.039872116412099 ], [ -133.335035813586273, 57.002485902523752 ], [ -133.317362517065305, 57.003732109653363 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "290", "COUNTYNS": "01419987", "AFFGEOID": "0500000US02290", "GEOID": "02290", "NAME": "Yukon-Koyukuk", "LSAD": "05", "ALAND": 376824381721, "AWATER": 5954833881 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -160.850591167068757, 63.012942888639941 ], [ -160.847056507764563, 63.269661557339901 ], [ -160.672090872207065, 63.270907764469513 ], [ -160.693298828032198, 63.359388470671931 ], [ -160.69153149838013, 63.537596090206378 ], [ -160.495357906997469, 63.537596090206378 ], [ -160.493590577345373, 63.613614725112676 ], [ -160.097708735275859, 63.614860932242287 ], [ -160.103010724232149, 63.703341638444698 ], [ -159.928045088674651, 63.704587845574309 ], [ -159.929812418326748, 63.794314758906339 ], [ -159.69829223390218, 63.793068551776727 ], [ -159.730104167639894, 64.052279634735925 ], [ -159.9563223631082, 64.051033427606313 ], [ -159.959857022412365, 64.401217631027137 ], [ -159.977530318933333, 64.748909420188738 ], [ -159.772520079290189, 64.75015562731835 ], [ -159.776054738594382, 64.923378418334352 ], [ -159.578113817559654, 64.923378418334352 ], [ -159.579881147211722, 65.263592964718285 ], [ -159.385474885481187, 65.262346757588674 ], [ -159.387242215133284, 65.522804047677468 ], [ -159.594019784428497, 65.522804047677468 ], [ -159.606391091993174, 65.956484128782265 ], [ -158.971919746890705, 65.956484128782265 ], [ -158.971919746890705, 66.129706919798267 ], [ -157.906219966676844, 66.129706919798267 ], [ -157.906219966676844, 66.476152501830256 ], [ -157.052599744714485, 66.476152501830256 ], [ -157.052599744714485, 66.302929710814254 ], [ -156.624905968907228, 66.302929710814254 ], [ -156.624905968907228, 66.476152501830256 ], [ -156.195444863447904, 66.476152501830256 ], [ -156.195444863447904, 66.390164209887061 ], [ -155.981597975544304, 66.390164209887061 ], [ -155.981597975544304, 66.302929710814254 ], [ -155.553904199737076, 66.302929710814254 ], [ -155.509720958434684, 66.476152501830256 ], [ -155.509720958434684, 66.563387000903063 ], [ -154.861110976115441, 66.563387000903063 ], [ -154.861110976115441, 66.736609791919051 ], [ -154.210733664144129, 66.736609791919051 ], [ -154.210733664144129, 66.822598083862246 ], [ -154.147109796668673, 66.822598083862246 ], [ -154.147109796668673, 67.169043665894236 ], [ -154.302634806053106, 67.169043665894236 ], [ -154.302634806053106, 67.255031957837431 ], [ -154.749769208033399, 67.255031957837431 ], [ -154.691447329514233, 67.51548924792624 ], [ -154.691447329514233, 67.601477539869421 ], [ -154.91766552498251, 67.601477539869421 ], [ -154.91766552498251, 67.688712038942228 ], [ -155.142116390798719, 67.688712038942228 ], [ -155.142116390798719, 67.774700330885423 ], [ -155.368334586266997, 67.774700330885423 ], [ -155.318849356008315, 67.86193482995823 ], [ -155.318849356008315, 68.000263821345101 ], [ -153.001880182110455, 67.999017614215489 ], [ -151.603922427302535, 67.999017614215489 ], [ -150.258984562057492, 67.999017614215489 ], [ -149.232166034189703, 67.999017614215489 ], [ -147.692821907214096, 68.000263821345101 ], [ -145.997952770854056, 68.000263821345101 ], [ -145.999720100506124, 68.490023223282407 ], [ -145.091312659328793, 68.50248529457852 ], [ -144.598227686394011, 68.501239087448909 ], [ -144.2960143158856, 68.507470123096965 ], [ -143.42648812705437, 68.498746673189686 ], [ -142.360788346840479, 68.490023223282407 ], [ -141.003479174030758, 68.498746673189686 ], [ -141.003479174030758, 65.839340658598786 ], [ -141.003479174030758, 65.839340658598786 ], [ -141.093612986287667, 65.826878587302673 ], [ -141.335737148624816, 65.710981324248806 ], [ -141.386989708535594, 65.613777168139109 ], [ -141.788173539561399, 65.500372319344464 ], [ -141.855332066341049, 65.446785412771163 ], [ -142.065644294940455, 65.465478519715333 ], [ -142.307768457277632, 65.441800584252718 ], [ -142.442085510836904, 65.385721263420209 ], [ -142.602912509177656, 65.391952299068265 ], [ -142.742531551693219, 65.302225385736236 ], [ -142.731927573780638, 65.233683993607599 ], [ -142.86447729768787, 65.14021845888675 ], [ -143.081858844895663, 65.121525351942566 ], [ -143.242685843236387, 65.052983959813943 ], [ -143.373468237491494, 65.036783267128982 ], [ -143.36463158923101, 64.99690463898142 ], [ -143.523691257919666, 64.960764632222691 ], [ -143.504250631746601, 64.858575647594549 ], [ -143.435324775314854, 64.817450812317361 ], [ -143.528993246875956, 64.801250119632414 ], [ -143.507785291050794, 64.753894248707184 ], [ -143.645637003914288, 64.6691521638936 ], [ -143.75167678304004, 64.647966642690207 ], [ -144.060959472156839, 64.682860442319324 ], [ -144.119281350676005, 64.798757705373191 ], [ -143.992033615725092, 64.976965324907638 ], [ -144.10514271345923, 65.015597745925589 ], [ -143.884226506947243, 65.090370173702283 ], [ -143.977894978508346, 65.119032937683343 ], [ -144.246529085626918, 65.119032937683343 ], [ -144.444470006661675, 65.062953616850834 ], [ -144.891604408641967, 65.137726044627527 ], [ -144.97466890229046, 65.136479837497916 ], [ -145.209723746019222, 65.072923273887724 ], [ -145.41826864496656, 65.085385345183838 ], [ -145.648021499739031, 65.034290852869759 ], [ -145.750526619560617, 65.099093623609562 ], [ -145.616209566001316, 65.143957080275584 ], [ -145.87247236555524, 65.214990886663429 ], [ -146.077482605198355, 65.246146064903712 ], [ -146.137571813369618, 65.310948835643515 ], [ -145.992650781897765, 65.406906784623601 ], [ -146.119898516848679, 65.406906784623601 ], [ -146.192359032584591, 65.455508862678442 ], [ -146.48927041413674, 65.38696747054982 ], [ -146.568800248481068, 65.345842635272632 ], [ -146.948776123681682, 65.274808828884787 ], [ -147.017701980113429, 65.291009521569734 ], [ -147.335821317490712, 65.273562621755175 ], [ -147.554970194350602, 65.210006058144984 ], [ -148.661318556562719, 65.210006058144984 ], [ -148.661318556562719, 64.588148700468849 ], [ -148.56058076639323, 64.615565257320313 ], [ -148.058659145197964, 64.345138310194613 ], [ -147.996802607374605, 64.34139968880578 ], [ -149.108452958542983, 64.343892103065002 ], [ -149.119056936455564, 64.358846588620338 ], [ -149.668696458257415, 64.357600381490727 ], [ -150.74853487568808, 64.365077624268395 ], [ -151.135580069497081, 64.133283098160661 ], [ -151.301709056794124, 64.009908592329126 ], [ -151.524392592958208, 64.032340320662129 ], [ -151.57917981217318, 64.084681020105819 ], [ -151.791259370424712, 64.082188605846596 ], [ -151.824838633814522, 64.00492376381068 ], [ -152.047522169978635, 63.999938935292235 ], [ -152.056358818239119, 63.822977522887406 ], [ -152.234859113100811, 63.822977522887406 ], [ -152.241928431709198, 63.657231974649079 ], [ -152.853424491334408, 63.652247146130634 ], [ -152.802171931423601, 63.481516769373854 ], [ -152.811008579684085, 63.351911227894263 ], [ -152.623671636561909, 63.346926399375818 ], [ -152.627206295866102, 63.302062942709803 ], [ -152.434567363787636, 63.305801564098637 ], [ -152.434567363787636, 63.169964986970989 ], [ -153.000112852458358, 62.727561455958906 ], [ -153.000112852458358, 62.295127581983721 ], [ -153.067271379238008, 62.295127581983721 ], [ -153.069038708890105, 62.207893082910921 ], [ -153.394227364875775, 62.209139290040532 ], [ -153.394227364875775, 62.12564341235656 ], [ -153.740623976686578, 62.121904790967726 ], [ -153.735321987730288, 62.029685463376481 ], [ -154.656100736472297, 62.029685463376481 ], [ -155.693523242252638, 62.029685463376481 ], [ -157.073807700539618, 62.029685463376481 ], [ -157.075575030191715, 62.129382033745401 ], [ -157.51564011356362, 62.124397205226948 ], [ -158.5318546635188, 62.119412376708503 ], [ -158.5318546635188, 62.032177877635704 ], [ -159.261761809834468, 62.032177877635704 ], [ -159.265296469138661, 61.946189585692508 ], [ -160.534239159343571, 61.94743579282212 ], [ -160.914215034544213, 61.949928207081342 ], [ -160.91068037524002, 62.204154461522087 ], [ -161.048532088103514, 62.20664687578131 ], [ -161.04499742879932, 62.550600043554077 ], [ -160.993744868888541, 62.898291832715685 ], [ -160.942492308977762, 62.999234610214216 ], [ -160.850591167068757, 63.012942888639941 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "195", "COUNTYNS": "02516404", "AFFGEOID": "0500000US02195", "GEOID": "02195", "NAME": "Petersburg", "LSAD": "04", "ALAND": 7556529587, "AWATER": 2399243232 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -133.317362517065305, 57.003732109653363 ], [ -133.105282958813802, 57.006224523912586 ], [ -132.981569883167083, 56.927713474747058 ], [ -132.903807378474852, 56.804338968915523 ], [ -132.796000269697004, 56.776922412064074 ], [ -132.7429803801341, 56.714612055583501 ], [ -132.61926730448738, 56.6610251490102 ], [ -132.610430656226924, 56.599960999659238 ], [ -132.670519864398159, 56.543881678826722 ], [ -132.806604247609584, 56.505249257808771 ], [ -132.932084652908372, 56.522696157623329 ], [ -133.041659091338317, 56.518957536234495 ], [ -133.183045463506005, 56.4541547654947 ], [ -133.301456550196463, 56.462878215401979 ], [ -133.414565647930601, 56.456647179753922 ], [ -133.441075592712025, 56.637347213547585 ], [ -133.578927305575519, 56.758229305119897 ], [ -133.497630141579094, 56.747013440953396 ], [ -133.499397471231191, 56.882850018081044 ], [ -133.273179275762914, 56.922728646228613 ], [ -133.317362517065305, 57.003732109653363 ] ] ], [ [ [ -133.709709699830626, 57.797566051215881 ], [ -133.697338392265948, 57.795073636956651 ], [ -133.647853162007266, 57.767657080105202 ], [ -133.548882701489902, 57.77513432288287 ], [ -133.494095482274901, 57.82498260806733 ], [ -133.35447643975931, 57.772641908623648 ], [ -133.280248594371301, 57.795073636956651 ], [ -133.188347452462295, 57.741486730383357 ], [ -132.978035223862889, 57.721547416309576 ], [ -132.94975794942934, 57.745225351772191 ], [ -132.871995444737109, 57.712823966402297 ], [ -132.840183510999395, 57.662975681217837 ], [ -132.887901411605981, 57.613127396033377 ], [ -132.827812203434718, 57.580726010663483 ], [ -132.654613897529316, 57.601911531866875 ], [ -132.559178096316145, 57.503461168627567 ], [ -132.366539164237679, 57.34768527742613 ], [ -132.251662736851415, 57.215587321687316 ], [ -132.370073823541873, 57.094705230114997 ], [ -132.050187156512493, 57.052334187708212 ], [ -132.117345683292115, 56.89157346798833 ], [ -132.233989440330475, 56.881603810951432 ], [ -132.322355922935259, 56.739536198175728 ], [ -132.401885757279587, 56.70090377715777 ], [ -132.545039459099371, 56.713365848453883 ], [ -132.555643437011952, 56.758229305119897 ], [ -132.79246561039281, 56.856679668359206 ], [ -132.891436070910174, 56.993762452616473 ], [ -132.937386641864663, 57.048595566319378 ], [ -133.161837507680872, 57.087227987337329 ], [ -133.246669330981462, 57.135830065392177 ], [ -133.322664506021596, 57.112152129929562 ], [ -133.467585537493477, 57.158261793725188 ], [ -133.545348042185708, 57.241757671409154 ], [ -133.490560822970707, 57.305314235019338 ], [ -133.472887526449767, 57.367624591499919 ], [ -133.515303438100062, 57.473552197516895 ], [ -133.520605427056353, 57.530877725479016 ], [ -133.621343217225814, 57.578233596404253 ], [ -133.676130436440786, 57.624343260199879 ], [ -133.654922480615653, 57.714070173531908 ], [ -133.702640381222238, 57.792581222697429 ], [ -133.709709699830626, 57.797566051215881 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "240", "COUNTYNS": "01419983", "AFFGEOID": "0500000US02240", "GEOID": "02240", "NAME": "Southeast Fairbanks", "LSAD": "05", "ALAND": 64147802443, "AWATER": 752268780 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.003563342896655, 64.256657603992196 ], [ -146.644795423521174, 64.256657603992196 ], [ -146.485735754832547, 64.281581746584436 ], [ -146.356720690229537, 64.277843125195602 ], [ -146.233007614582817, 64.310244510565497 ], [ -146.236542273887011, 64.357600381490727 ], [ -146.157012439542683, 64.386263145471787 ], [ -145.999720100506124, 64.383770731212564 ], [ -145.914888277205534, 64.423649359360141 ], [ -145.739922641648036, 64.459789366118869 ], [ -145.531377742700698, 64.417418323712084 ], [ -145.370550744359974, 64.456050744730035 ], [ -145.36171409609949, 64.487205922970332 ], [ -145.071872033155756, 64.51337627269217 ], [ -144.978203561594654, 64.571948007783902 ], [ -144.790866618472478, 64.56945559352468 ], [ -144.739614058561699, 64.593133528987295 ], [ -144.548742456135329, 64.599364564635351 ], [ -144.462143303182643, 64.583163871950404 ], [ -144.311920282754471, 64.616811464449924 ], [ -144.306618293798181, 64.64173560704215 ], [ -144.069796120417323, 64.652951471208652 ], [ -144.060959472156839, 64.682860442319324 ], [ -143.75167678304004, 64.647966642690207 ], [ -143.645637003914288, 64.6691521638936 ], [ -143.507785291050794, 64.753894248707184 ], [ -143.528993246875956, 64.801250119632414 ], [ -143.435324775314854, 64.817450812317361 ], [ -143.504250631746601, 64.858575647594549 ], [ -143.523691257919666, 64.960764632222691 ], [ -143.36463158923101, 64.99690463898142 ], [ -143.373468237491494, 65.036783267128982 ], [ -143.242685843236387, 65.052983959813943 ], [ -143.081858844895663, 65.121525351942566 ], [ -142.86447729768787, 65.14021845888675 ], [ -142.731927573780638, 65.233683993607599 ], [ -142.742531551693219, 65.302225385736236 ], [ -142.602912509177656, 65.391952299068265 ], [ -142.442085510836904, 65.385721263420209 ], [ -142.307768457277632, 65.441800584252718 ], [ -142.065644294940455, 65.465478519715333 ], [ -141.855332066341049, 65.446785412771163 ], [ -141.788173539561399, 65.500372319344464 ], [ -141.386989708535594, 65.613777168139109 ], [ -141.335737148624816, 65.710981324248806 ], [ -141.093612986287667, 65.826878587302673 ], [ -141.003479174030758, 65.839340658598786 ], [ -141.003479174030758, 61.902572336156105 ], [ -141.828822121559597, 61.901326129026494 ], [ -141.830589451211694, 62.126889619486178 ], [ -142.016159064681773, 62.126889619486178 ], [ -141.977277812335672, 62.164275833374518 ], [ -141.963139175118897, 62.510721415406508 ], [ -142.131035492068008, 62.511967622536119 ], [ -142.127500832763815, 62.595463500220092 ], [ -142.320139764842281, 62.597955914479314 ], [ -142.314837775885991, 62.68394420642251 ], [ -142.62942245395908, 62.68394420642251 ], [ -142.737229562736957, 62.701391106237068 ], [ -142.843269341862708, 62.596709707349703 ], [ -143.104834130372922, 62.61291040003465 ], [ -143.159621349587894, 62.636588335497272 ], [ -143.138413393762733, 62.691421449200178 ], [ -143.007630999507626, 62.766193876976864 ], [ -143.196735272281899, 62.826011819198214 ], [ -143.028838955332787, 62.935678046604025 ], [ -143.002329010551335, 62.994249781695771 ], [ -143.08892816350405, 63.009204267251107 ], [ -143.127809415850152, 63.116378080397695 ], [ -143.875389858686759, 63.113885666138472 ], [ -144.575252400916781, 63.133824980212253 ], [ -145.149634537847987, 63.133824980212253 ], [ -145.149634537847987, 63.222305686414671 ], [ -146.111061868588195, 63.22105947928506 ], [ -146.139339143021715, 63.183673265396713 ], [ -146.328443415795988, 63.191150508174381 ], [ -146.48396842518045, 63.173703608359823 ], [ -146.48927041413674, 63.482762976503466 ], [ -146.975286068463134, 63.480270562244243 ], [ -146.971751409158941, 63.918935471867485 ], [ -147.003563342896655, 64.256657603992196 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "275", "COUNTYNS": "02516402", "AFFGEOID": "0500000US02275", "GEOID": "02275", "NAME": "Wrangell", "LSAD": "03", "ALAND": 6582396275, "AWATER": 2384301874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -133.039891761686249, 56.238560932071913 ], [ -132.967431245950308, 56.224852653646181 ], [ -132.887901411605981, 56.172511954202506 ], [ -132.833114192391008, 56.103970562073869 ], [ -132.896738059866465, 56.100231940685035 ], [ -132.859624137172432, 56.052876069759797 ], [ -132.887901411605981, 56.064091933926306 ], [ -133.0116144872527, 56.138864361702993 ], [ -133.039891761686249, 56.238560932071913 ] ] ], [ [ [ -132.545039459099371, 56.713365848453883 ], [ -132.401885757279587, 56.70090377715777 ], [ -132.322355922935259, 56.739536198175728 ], [ -132.233989440330475, 56.881603810951432 ], [ -132.117345683292115, 56.89157346798833 ], [ -132.124415001900502, 56.875372775303376 ], [ -131.871686861650801, 56.805585176045135 ], [ -131.901731465736418, 56.753244476601452 ], [ -131.836340268608865, 56.602453413918461 ], [ -131.581844798707039, 56.61366927808497 ], [ -131.461666382364513, 56.547620300215556 ], [ -131.168289660116585, 56.447923729846636 ], [ -131.08699249612016, 56.408045101699074 ], [ -131.095829144380644, 56.335765088181603 ], [ -131.012764650732151, 56.31457956697821 ], [ -130.998626013515377, 56.27345473170103 ], [ -131.106433122293225, 56.194943682535509 ], [ -131.238982846200429, 56.171265747072887 ], [ -131.253121483417203, 56.207405753831623 ], [ -131.440458426539351, 56.131387118925325 ], [ -131.369765240455536, 56.070322969574363 ], [ -131.364463251499245, 56.01798227013068 ], [ -131.498780305058517, 56.019228477260292 ], [ -131.527057579492066, 56.052876069759797 ], [ -131.654305314442979, 56.103970562073869 ], [ -131.693186566789109, 56.050383655500575 ], [ -131.831038279652574, 56.056614691148631 ], [ -131.873454191302869, 55.948194670872432 ], [ -132.009538574514266, 55.854729136151576 ], [ -131.937078058778354, 55.798649815319052 ], [ -131.979493970428649, 55.752540151523434 ], [ -131.963588003559778, 55.700199452079751 ], [ -132.05725647512088, 55.710169109116642 ], [ -132.090835738510691, 55.660320823932182 ], [ -132.200410176940636, 55.637889095599178 ], [ -132.223385462417895, 55.701445659209362 ], [ -132.264034044416093, 55.761263601430713 ], [ -132.129716990856821, 55.811111886615173 ], [ -132.066093123381336, 55.874668450225357 ], [ -132.168598243202922, 55.919531906891372 ], [ -132.279940011284964, 55.924516735409817 ], [ -132.322355922935259, 55.850990514762742 ], [ -132.396583768323296, 55.878407071614191 ], [ -132.449603657886172, 55.955671913650107 ], [ -132.492019569536467, 56.066584348185529 ], [ -132.594524689358053, 56.021720891519514 ], [ -132.707633787092192, 56.111447804851537 ], [ -132.718237765004773, 56.217375410868513 ], [ -132.843718170303589, 56.238560932071913 ], [ -132.8772974336934, 56.239807139201524 ], [ -132.92678266395211, 56.265977488923362 ], [ -132.960361927341921, 56.295886460034041 ], [ -133.029287783773668, 56.315825774107822 ], [ -133.069936365771866, 56.330780259663157 ], [ -133.069936365771866, 56.346980952348112 ], [ -133.061099717511382, 56.358196816514614 ], [ -132.976267894210793, 56.439200279939357 ], [ -132.896738059866465, 56.457893386883534 ], [ -132.79246561039281, 56.449169936976247 ], [ -132.626336623095767, 56.462878215401979 ], [ -132.527366162578403, 56.528927193271386 ], [ -132.449603657886172, 56.56382099290051 ], [ -132.5291334922305, 56.638593420677196 ], [ -132.543272129447274, 56.702149984287381 ], [ -132.545039459099371, 56.713365848453883 ] ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "170", "COUNTYNS": "01419976", "AFFGEOID": "0500000US02170", "GEOID": "02170", "NAME": "Matanuska-Susitna", "LSAD": "04", "ALAND": 63734631763, "AWATER": 1682661470 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.000112852458358, 62.295127581983721 ], [ -153.000112852458358, 62.727561455958906 ], [ -152.4151267376146, 62.722576627440461 ], [ -151.893764490246269, 62.722576627440461 ], [ -151.888462501289979, 62.794856640957931 ], [ -150.002721762503569, 63.22105947928506 ], [ -149.507869459916691, 63.331971913820482 ], [ -148.746150379863309, 63.335710535209316 ], [ -148.037451189372831, 63.33072570669087 ], [ -148.033916530068637, 63.470300905207353 ], [ -146.975286068463134, 63.480270562244243 ], [ -146.48927041413674, 63.482762976503466 ], [ -146.48396842518045, 63.173703608359823 ], [ -146.438017854225961, 62.959355982066647 ], [ -146.427413876313381, 62.863398033086561 ], [ -146.425646546661284, 62.510721415406508 ], [ -146.425646546661284, 62.246525503928879 ], [ -146.982355387071522, 62.24777171105849 ], [ -146.96114743124636, 62.159291004856073 ], [ -146.941706805073295, 61.812845422824083 ], [ -146.945241464377489, 61.473877083569754 ], [ -147.205038923235605, 61.475123290699365 ], [ -147.206806252887702, 61.425275005514905 ], [ -148.461610305875865, 61.426521212644516 ], [ -149.180913474278924, 61.426521212644516 ], [ -149.241002682450187, 61.483846740606651 ], [ -149.359413769140616, 61.483846740606651 ], [ -149.792409533904134, 61.389134998756177 ], [ -149.898449313029886, 61.267006700054253 ], [ -150.002721762503569, 61.22338945051785 ], [ -150.220103309711362, 61.197219100796005 ], [ -150.205964672494588, 61.259529457276578 ], [ -150.42334621970241, 61.245821178850854 ], [ -150.534687987784451, 61.269499114313476 ], [ -150.679609019256333, 61.265760492924642 ], [ -150.826297380380282, 61.228374279036295 ], [ -150.939406478114449, 61.209681172092118 ], [ -150.971218411852163, 61.195972893666394 ], [ -150.97298574150426, 61.253298421628521 ], [ -151.333520990531838, 61.254544628758133 ], [ -151.333520990531838, 61.425275005514905 ], [ -153.001880182110455, 61.425275005514905 ], [ -153.000112852458358, 62.295127581983721 ] ] ] } }, -{ "type": "Feature", "properties": { "STATEFP": "02", "COUNTYFP": "016", "COUNTYNS": "01419965", "AFFGEOID": "0500000US02016", "GEOID": "02016", "NAME": "Aleutians West", "LSAD": "05", "ALAND": 11370495309, "AWATER": 25190642181 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.480545277752071, 51.975286341671023 ], [ 179.583050397573629, 52.017657384077815 ], [ 179.636070287136533, 52.026380833985094 ], [ 179.773922, 51.971547720282189 ], [ 179.742110066262285, 51.911729778060838 ], [ 179.650208924353308, 51.874343564172491 ], [ 179.544169145227499, 51.89179046398705 ], [ 179.484079937056265, 51.921699435097729 ], [ 179.480545277752071, 51.975286341671023 ] ] ], [ [ [ 178.602182440660329, 51.655011109360871 ], [ 178.660504319179552, 51.683673873341938 ], [ 178.923836437341834, 51.62385593112058 ], [ 179.194237874112503, 51.478049696956042 ], [ 179.294975664281992, 51.419477961864303 ], [ 179.418688739928712, 51.415739340475469 ], [ 179.480545277752071, 51.363398641031786 ], [ 179.252559752631669, 51.337228291309941 ], [ 179.03164354611971, 51.450633140104586 ], [ 178.929138426298096, 51.530390396399724 ], [ 178.869049218126861, 51.557806953251173 ], [ 178.771846087261565, 51.554068331862339 ], [ 178.605717099964522, 51.616378688342913 ], [ 178.602182440660329, 51.655011109360871 ] ] ], [ [ [ 178.464330727796892, 51.988994620096747 ], [ 178.552697210401675, 51.974040134541411 ], [ 178.591578462747805, 51.952854613338019 ], [ 178.540325902836969, 51.90425253528317 ], [ 178.503211980142964, 51.900513913894336 ], [ 178.432518794059149, 51.966562891763743 ], [ 178.464330727796892, 51.988994620096747 ] ] ], [ [ [ 178.204533268938746, 51.830726314636088 ], [ 178.330013674237591, 51.836957350284145 ], [ 178.379498904496245, 51.793340100747749 ], [ 178.374196915539983, 51.748476644081734 ], [ 178.271691795718425, 51.765923543896292 ], [ 178.204533268938746, 51.830726314636088 ] ] ], [ [ [ 178.094958830508801, 52.056289805095766 ], [ 178.155048038680093, 52.061274633614218 ], [ 178.200998609634553, 52.032611869633151 ], [ 178.200998609634553, 51.99148703435597 ], [ 178.121468775290225, 51.977778755930245 ], [ 178.079052863639959, 52.020149798337037 ], [ 178.094958830508801, 52.056289805095766 ] ] ], [ [ [ 177.213061334112922, 51.920453227968117 ], [ 177.310264464978161, 51.934161506393842 ], [ 177.366819013845259, 51.969055306022966 ], [ 177.460487485406361, 52.000210484263249 ], [ 177.520576693577596, 52.062520840743829 ], [ 177.580665901748887, 52.144770511298184 ], [ 177.649591758180634, 52.129816025742848 ], [ 177.676101702962058, 52.09118360472489 ], [ 177.608943176182436, 52.028873248244317 ], [ 177.571829253488374, 52.002702898522472 ], [ 177.612477835486629, 51.951608406208408 ], [ 177.601873857574049, 51.92294564222734 ], [ 177.499368737752434, 51.92294564222734 ], [ 177.409234925495582, 51.931669092134619 ], [ 177.370353673149452, 51.903006328153559 ], [ 177.333239750455448, 51.866866321394824 ], [ 177.312031794630286, 51.826987693247254 ], [ 177.262546564371576, 51.861881492876378 ], [ 177.177714741070986, 51.879328392690937 ], [ 177.213061334112922, 51.920453227968117 ] ] ], [ [ [ 173.863971643390983, 52.792798218696156 ], [ 174.06721455338203, 52.757904419067032 ], [ 174.13967506911797, 52.750427176289364 ], [ 174.157348365638939, 52.705563719623349 ], [ 173.975313411473053, 52.70680992675296 ], [ 173.819788402088591, 52.759150626196643 ], [ 173.863971643390983, 52.792798218696156 ] ] ], [ [ [ 173.439812526887977, 52.470030572126781 ], [ 173.556456283926309, 52.47875402203406 ], [ 173.63952077757483, 52.523617478700075 ], [ 173.773837831134131, 52.50990920027435 ], [ 173.703144645050259, 52.433890565368046 ], [ 173.749095216004775, 52.391519522961261 ], [ 173.726119930527545, 52.356625723332137 ], [ 173.65189208513948, 52.355379516202525 ], [ 173.544084976361603, 52.392765730090872 ], [ 173.487530427494562, 52.367841587498638 ], [ 173.319634110545451, 52.411458837035042 ], [ 173.439812526887977, 52.470030572126781 ] ] ], [ [ [ 172.458944569974676, 52.954805145545649 ], [ 172.642746853792687, 53.004653430730109 ], [ 172.79296987422083, 53.008392052118943 ], [ 173.121693189510665, 52.990945152304384 ], [ 173.252475583765772, 52.944835488508758 ], [ 173.425673889671202, 52.868816853602453 ], [ 173.423906560019077, 52.828938225454891 ], [ 173.284287517503515, 52.82769201832528 ], [ 173.204757683159187, 52.848877539528672 ], [ 173.167643760465182, 52.795290632955378 ], [ 173.096950574381367, 52.786567183048099 ], [ 172.982074146995103, 52.791552011566544 ], [ 172.904311642302901, 52.761643040455866 ], [ 172.808875841089673, 52.789059597307322 ], [ 172.762925270135213, 52.823953396936446 ], [ 172.7540886218747, 52.87754030350974 ], [ 172.669256798574111, 52.912434103138857 ], [ 172.584424975273521, 52.921157553046136 ], [ 172.473083207191451, 52.890002374805853 ], [ 172.458944569974676, 52.954805145545649 ] ] ], [ [ [ -166.226807968744765, 53.985418441734346 ], [ -166.226807968744765, 53.959248092012508 ], [ -166.17909006813818, 53.941801192197943 ], [ -166.161416771617212, 53.935570156549886 ], [ -166.210902001875894, 53.915630842476105 ], [ -166.251550583874092, 53.875752214328536 ], [ -166.320476440305839, 53.869521178680479 ], [ -166.405308263606457, 53.808457029329517 ], [ -166.338149736826807, 53.786025300996506 ], [ -166.198530694311216, 53.835873586180966 ], [ -166.113698871010627, 53.853320485995532 ], [ -166.097792904141755, 53.825903929144076 ], [ -166.138441486139953, 53.731192187293601 ], [ -166.244481265265733, 53.71125287321982 ], [ -166.320476440305839, 53.675112866461085 ], [ -166.445956845604655, 53.641465273961579 ], [ -166.509580713080112, 53.584139745999451 ], [ -166.580273899163956, 53.530552839426157 ], [ -166.65626907420409, 53.486935589889754 ], [ -166.748170216113067, 53.440825926094128 ], [ -166.877185280716077, 53.430856269057237 ], [ -166.993829037754409, 53.429610061927626 ], [ -167.075126201750834, 53.425871440538792 ], [ -167.165260014007742, 53.413409369242672 ], [ -167.290740419306559, 53.36480729118783 ], [ -167.308413715827498, 53.334898320077151 ], [ -167.417988154257444, 53.329913491558706 ], [ -167.488681340341287, 53.268849342207744 ], [ -167.539933900252095, 53.277572792115024 ], [ -167.622998393900588, 53.250156235263574 ], [ -167.748478799199404, 53.27383417072619 ], [ -167.850983919020962, 53.308727970355314 ], [ -167.790894710849727, 53.336144527206763 ], [ -167.693691579984431, 53.388485226650445 ], [ -167.591186460162874, 53.393470055168891 ], [ -167.456869406603573, 53.44331834035335 ], [ -167.370270253650858, 53.450795583131018 ], [ -167.278369111741881, 53.479458347112086 ], [ -167.188235299484973, 53.524321803778101 ], [ -167.135215409922097, 53.55173836062955 ], [ -167.161725354703549, 53.606571474332455 ], [ -167.106938135488576, 53.633988031183911 ], [ -167.07159154244664, 53.666389416553805 ], [ -167.041546938361023, 53.708760458960597 ], [ -167.00443301566699, 53.754870122756223 ], [ -167.098101487228092, 53.799733579422238 ], [ -167.142284728530484, 53.825903929144076 ], [ -167.140517398878387, 53.865782557291645 ], [ -167.030942960448442, 53.944293606457165 ], [ -166.878952610368174, 53.987910855993569 ], [ -166.74110089750468, 54.015327412845025 ], [ -166.643897766639412, 54.014081205715414 ], [ -166.587343217772343, 53.959248092012508 ], [ -166.509580713080112, 53.923108085253773 ], [ -166.437120197344171, 53.955509470623667 ], [ -166.357590362999872, 54.001619134419293 ], [ -166.265689221090867, 53.976694991827067 ], [ -166.226807968744765, 53.985418441734346 ] ] ], [ [ [ -169.286055596522914, 52.784074768788876 ], [ -169.043931434185765, 52.893740996194687 ], [ -168.959099610885175, 52.93735824573109 ], [ -168.860129150367783, 53.015869294896611 ], [ -168.785901304979745, 53.044532058877678 ], [ -168.80534193115281, 53.120550693783976 ], [ -168.764693349154612, 53.182861050264549 ], [ -168.582658394988727, 53.286296242022303 ], [ -168.444806682125233, 53.26511072081891 ], [ -168.421831396647974, 53.322436248781038 ], [ -168.39532145186655, 53.398454883687336 ], [ -168.342301562303675, 53.476965932852863 ], [ -168.238029112829992, 53.521829389518871 ], [ -168.027716884230585, 53.562954224796052 ], [ -167.914607786496447, 53.523075596648482 ], [ -167.789127381197602, 53.519336975259648 ], [ -167.808568007370667, 53.474473518593641 ], [ -167.856285907977252, 53.429610061927626 ], [ -167.842147270760506, 53.387239019520834 ], [ -167.958791027798839, 53.342375562854819 ], [ -168.093108081358139, 53.288788656281525 ], [ -168.296350991349158, 53.227724506930564 ], [ -168.344068891955772, 53.170398978968436 ], [ -168.41299474838749, 53.110581036747085 ], [ -168.45717798968991, 53.05574792304418 ], [ -168.614470328726441, 53.008392052118943 ], [ -168.688698174114478, 52.966021009712151 ], [ -168.755856700894128, 52.907449274620411 ], [ -168.849525172455202, 52.907449274620411 ], [ -169.005050181839664, 52.830184432584502 ], [ -169.169411839484582, 52.776597526011209 ], [ -169.261312981393587, 52.755412004807809 ], [ -169.286055596522914, 52.784074768788876 ] ] ], [ [ [ -169.818021821803825, 56.633608592158751 ], [ -169.613011582160681, 56.623638935121861 ], [ -169.47339253964509, 56.624885142251472 ], [ -169.453951913472054, 56.583760306974291 ], [ -169.582966978075035, 56.537650643178665 ], [ -169.685472097896621, 56.540143057437888 ], [ -169.818021821803825, 56.633608592158751 ] ] ], [ [ [ -170.171487752223015, 52.785320975918488 ], [ -170.091957917878688, 52.919911345916525 ], [ -170.026566720751134, 52.944835488508758 ], [ -169.856903074149926, 52.908695481750023 ], [ -169.763234602588852, 52.978483081008264 ], [ -169.819789151455922, 53.066963787210682 ], [ -169.747328635719981, 53.093134136932527 ], [ -169.680170108940331, 53.034562401840788 ], [ -169.662496812419363, 52.952312731286426 ], [ -169.666031471723556, 52.863832025084008 ], [ -169.703145394417561, 52.776597526011209 ], [ -169.818021821803825, 52.791552011566544 ], [ -169.952338875363097, 52.789059597307322 ], [ -170.077819280661913, 52.720518205178692 ], [ -170.20860167491702, 52.70930234101219 ], [ -170.171487752223015, 52.785320975918488 ] ] ], [ [ [ -170.420681233168551, 57.211848700298482 ], [ -170.304037476130219, 57.23801905002032 ], [ -170.144977807441563, 57.241757671409154 ], [ -170.134373829529011, 57.180693522058192 ], [ -170.286364179609251, 57.127106615484898 ], [ -170.422448562820648, 57.160754207984411 ], [ -170.420681233168551, 57.211848700298482 ] ] ], [ [ [ -170.818330404890133, 52.635776120365108 ], [ -170.671642043766184, 52.698086476845681 ], [ -170.532023001250593, 52.679393369901511 ], [ -170.585042890813469, 52.587174042310259 ], [ -170.685780680982958, 52.580943006662203 ], [ -170.788285800804516, 52.539818171385022 ], [ -170.843073020019489, 52.558511278329199 ], [ -170.818330404890133, 52.635776120365108 ] ] ], [ [ [ -171.311415377824915, 52.493708507589403 ], [ -171.256628158609942, 52.52860230721852 ], [ -171.194771620786582, 52.49993954323746 ], [ -171.226583554524325, 52.433890565368046 ], [ -171.302578729564459, 52.450091258053 ], [ -171.311415377824915, 52.493708507589403 ] ] ], [ [ [ -172.612170001767566, 52.306777438147677 ], [ -172.545011474987916, 52.357871930461748 ], [ -172.447808344122649, 52.391519522961261 ], [ -172.325862598128026, 52.366595380369027 ], [ -172.301119982998671, 52.32920916648068 ], [ -172.414229080732838, 52.276868467037005 ], [ -172.529105508119073, 52.254436738703994 ], [ -172.640447276201115, 52.244467081667104 ], [ -172.612170001767566, 52.306777438147677 ] ] ], [ [ [ -175.302045732257682, 52.056289805095766 ], [ -175.031644295486984, 52.09118360472489 ], [ -174.886723264015103, 52.128569818613236 ], [ -174.715292287761798, 52.127323611483625 ], [ -174.554465289421074, 52.159724996853519 ], [ -174.462564147512069, 52.212065696297202 ], [ -174.455494828903682, 52.313008473795733 ], [ -174.330014423604894, 52.372826416017084 ], [ -174.185093392133012, 52.417689872683098 ], [ -174.06844963509468, 52.390273315831649 ], [ -173.985385141446159, 52.316747095184567 ], [ -174.047241679269518, 52.235743631759824 ], [ -174.022499064140163, 52.133554647131682 ], [ -173.898785988493444, 52.139785682779738 ], [ -173.653127166852101, 52.146016718427795 ], [ -173.529414091205382, 52.158478789723908 ], [ -173.375656411473045, 52.107384297409837 ], [ -173.175948160786191, 52.126077404354014 ], [ -172.947962635665817, 52.107384297409837 ], [ -172.981541899055628, 52.063767047873441 ], [ -173.170646171829901, 52.045073940929264 ], [ -173.39509703764611, 52.028873248244317 ], [ -173.511740794684442, 52.026380833985094 ], [ -173.693775748850328, 52.056289805095766 ], [ -173.819256154149144, 52.043827733799652 ], [ -173.900553318145541, 52.050058769447709 ], [ -174.100261568832394, 52.071244290651109 ], [ -174.278761863694086, 52.088691190465667 ], [ -174.383034313167769, 52.081213947687999 ], [ -174.407776928297096, 52.013918762688981 ], [ -174.556232619073171, 52.037596698151596 ], [ -174.73650024358696, 52.007687727040924 ], [ -174.892025252971393, 52.020149798337037 ], [ -175.015738328618113, 52.007687727040924 ], [ -175.155357371133704, 52.012672555559369 ], [ -175.323253688082815, 52.007687727040924 ], [ -175.302045732257682, 52.056289805095766 ] ] ], [ [ [ -176.950964297663234, 51.687412494730772 ], [ -176.917385034273423, 51.797078722136582 ], [ -176.781300651062026, 51.833218728895311 ], [ -176.761860024888961, 51.868112528524435 ], [ -176.809577925495546, 51.927930470745785 ], [ -176.774231332453638, 51.966562891763743 ], [ -176.698236157413504, 51.965316684634132 ], [ -176.579825070723075, 52.003949105652083 ], [ -176.548013136985361, 51.956593234726853 ], [ -176.55508245559372, 51.910483570931227 ], [ -176.576290411418881, 51.843188385932208 ], [ -176.431369379947, 51.861881492876378 ], [ -176.311190963604474, 51.87309735704288 ], [ -176.173339250741009, 51.883067014079771 ], [ -176.168037261784718, 51.949115991949178 ], [ -176.182175899001464, 51.998964277133638 ], [ -176.210453173435013, 52.063767047873441 ], [ -176.148596635611653, 52.117353954446735 ], [ -176.05492816405058, 52.108630504539448 ], [ -176.007210263443966, 52.065013255003052 ], [ -175.88703184710144, 51.995225655744804 ], [ -175.807502012757141, 51.990240827226359 ], [ -175.664348310937356, 51.993979448615192 ], [ -175.450501423033728, 52.013918762688981 ], [ -175.425758807904401, 51.9727939274118 ], [ -175.641373025460098, 51.934161506393842 ], [ -175.788061386584076, 51.920453227968117 ], [ -175.963027022141574, 51.846927007321042 ], [ -175.998373615183482, 51.802063550655028 ], [ -176.157433283872138, 51.769662165285126 ], [ -176.289983007779341, 51.742245608433677 ], [ -176.466715972988936, 51.727291122878334 ], [ -176.544478477681167, 51.698628358897274 ], [ -176.655820245763209, 51.658749730749705 ], [ -176.715909453934472, 51.620117309731747 ], [ -176.809577925495546, 51.616378688342913 ], [ -176.938592990098556, 51.591454545750686 ], [ -176.988078220357238, 51.607655238435633 ], [ -176.950964297663234, 51.687412494730772 ] ] ], [ [ [ -177.670267466066292, 51.743491815563289 ], [ -177.4917671712046, 51.770908372414738 ], [ -177.313266876342908, 51.778385615192406 ], [ -177.228435053042318, 51.80455596491425 ], [ -177.200157778608769, 51.910483570931227 ], [ -177.180717152435705, 51.944131163430733 ], [ -177.099419988439308, 51.936653920653065 ], [ -177.044632769224336, 51.899267706764725 ], [ -177.099419988439308, 51.829480107506477 ], [ -177.104721977395599, 51.719813880100666 ], [ -177.189553800696189, 51.697382151767663 ], [ -177.276152953648904, 51.681181459082715 ], [ -177.348613469384844, 51.697382151767663 ], [ -177.484697852596213, 51.682427666212327 ], [ -177.652594169545353, 51.653764902231259 ], [ -177.709148718412422, 51.703613187415719 ], [ -177.670267466066292, 51.743491815563289 ] ] ], [ [ [ -178.196931702390913, 51.905498742412782 ], [ -178.089124593613064, 51.920453227968117 ], [ -177.953040210401667, 51.915468399449672 ], [ -177.887649013274114, 51.851911835839488 ], [ -177.758633948671104, 51.846927007321042 ], [ -177.61548024685132, 51.855650457228322 ], [ -177.649059510241159, 51.802063550655028 ], [ -177.75509928936691, 51.77340078667396 ], [ -177.827559805102851, 51.712336637322998 ], [ -177.868208387101049, 51.679935251953097 ], [ -177.910624298751344, 51.596439374269131 ], [ -178.044941352310644, 51.630086966768644 ], [ -178.117401868046585, 51.678689044823486 ], [ -178.053778000571128, 51.704859394545331 ], [ -177.983084814487285, 51.716075258711832 ], [ -177.995456122051962, 51.78212423658124 ], [ -178.085589934308871, 51.808294586303084 ], [ -178.223441647172336, 51.865620114265212 ], [ -178.196931702390913, 51.905498742412782 ] ] ], [ [ [ -178.889724926012548, 51.570269024547287 ], [ -178.677645367761016, 51.62634834537981 ], [ -178.550397632810103, 51.610147652694856 ], [ -178.583976896199943, 51.56403798889923 ], [ -178.734199916628086, 51.542852467695838 ], [ -178.826101058537091, 51.547837296214283 ], [ -178.889724926012548, 51.570269024547287 ] ] ], [ [ [ -178.87735361844787, 51.838203557413756 ], [ -178.780150487582574, 51.851911835839488 ], [ -178.732432586975989, 51.784616650840462 ], [ -178.792521795147252, 51.745984229822511 ], [ -178.895026914968838, 51.779631822322017 ], [ -178.87735361844787, 51.838203557413756 ] ] ], [ [ [ -179.174265, 51.278656556218202 ], [ -178.995764705138299, 51.414493133345857 ], [ -178.926838848706552, 51.383337955105567 ], [ -178.909165552185584, 51.340966912698775 ], [ -179.071759880178433, 51.251239999366753 ], [ -179.126547099393406, 51.220084821126463 ], [ -179.174265, 51.278656556218202 ] ] ] ] } } -] -} diff --git a/GlobalQuakeCore/src/main/resources/polygons_converted/NOTE.txt b/GlobalQuakeCore/src/main/resources/polygons_converted/NOTE.txt deleted file mode 100644 index 9cc61b9..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons_converted/NOTE.txt +++ /dev/null @@ -1,3 +0,0 @@ -All files in this directory were downloaded from https://github.com/deldersveld/topojson -And coverted from topoJSON to geoJSON using this converter: https://mygeodata.cloud/converter/topojson-to-geojson -Some files were also converted using this converter: https://jeffpaine.github.io/geojson-topojson/ \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/resources/polygons_converted/hawaii-countries.geojson b/GlobalQuakeCore/src/main/resources/polygons_converted/hawaii-countries.geojson deleted file mode 100644 index 3c35dc5..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons_converted/hawaii-countries.geojson +++ /dev/null @@ -1,1122 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "STATEFP": "15", - "COUNTYFP": "005", - "COUNTYNS": "01702380", - "AFFGEOID": "0500000US15005", - "GEOID": "15005", - "NAME": "Kalawao", - "LSAD": "06", - "ALAND": 31057602, - "AWATER": 105769486 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -157.01449646605363, - 21.201784780534034 - ], - [ - -156.98445540126534, - 21.213000746415837 - ], - [ - -156.96324994376772, - 21.213000746415837 - ], - [ - -156.9208390287725, - 21.169383101319944 - ], - [ - -156.91730478585623, - 21.169383101319944 - ], - [ - -156.8996335712749, - 21.13199654838061 - ], - [ - -156.91730478585623, - 21.12950411151799 - ], - [ - -156.9420444862701, - 21.160659572300766 - ], - [ - -156.97385267251653, - 21.175614193476502 - ], - [ - -157.01449646605363, - 21.183091504064368 - ], - [ - -157.01449646605363, - 21.201784780534034 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "15", - "COUNTYFP": "003", - "COUNTYNS": "00365281", - "AFFGEOID": "0500000US15003", - "GEOID": "15003", - "NAME": "Honolulu", - "LSAD": "06", - "ALAND": 1555505156, - "AWATER": 4054940027 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -158.2320431507081, - 21.58312762051526 - ], - [ - -158.12601586322006, - 21.586866275809193 - ], - [ - -158.08007070530857, - 21.627991484042465 - ], - [ - -158.05179676197844, - 21.670362910707045 - ], - [ - -157.99348175385998, - 21.70774946364638 - ], - [ - -157.9687420534461, - 21.712734337371625 - ], - [ - -157.92456401699275, - 21.650423415806063 - ], - [ - -157.87685173762313, - 21.57440409149608 - ], - [ - -157.83797506554419, - 21.52954022796888 - ], - [ - -157.8450435513767, - 21.46598308797201 - ], - [ - -157.8132353651303, - 21.439812500914474 - ], - [ - -157.76552308576066, - 21.460998214246764 - ], - [ - -157.72311217076546, - 21.45850577738414 - ], - [ - -157.7248792922236, - 21.403672166406448 - ], - [ - -157.71074232055852, - 21.358808302879247 - ], - [ - -157.6524273124401, - 21.313944439352042 - ], - [ - -157.65596155535636, - 21.31020578405811 - ], - [ - -157.67363276993768, - 21.285281415431886 - ], - [ - -157.70013959180972, - 21.264095702099596 - ], - [ - -157.75668747847, - 21.279050323275328 - ], - [ - -157.77966005742576, - 21.265341920530908 - ], - [ - -157.80970112221402, - 21.257864609943038 - ], - [ - -157.85211203720925, - 21.285281415431886 - ], - [ - -157.8909887092882, - 21.306467128764176 - ], - [ - -157.95107083886478, - 21.31269822092073 - ], - [ - -157.98111190365304, - 21.316436876214667 - ], - [ - -158.0252899401064, - 21.31020578405811 - ], - [ - -158.08890631259925, - 21.29898981817631 - ], - [ - -158.10304328426432, - 21.29898981817631 - ], - [ - -158.12955010613632, - 21.345099900134823 - ], - [ - -158.13131722759445, - 21.35008477386007 - ], - [ - -158.14015283488513, - 21.37500914248629 - ], - [ - -158.1790295069641, - 21.403672166406448 - ], - [ - -158.18256374988036, - 21.429842753463983 - ], - [ - -158.23381027216624, - 21.4871688013043 - ], - [ - -158.2320431507081, - 21.523309135812323 - ], - [ - -158.2779883086196, - 21.578142746790014 - ], - [ - -158.2320431507081, - 21.58312762051526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "15", - "COUNTYFP": "007", - "COUNTYNS": "00365282", - "AFFGEOID": "0500000US15007", - "GEOID": "15007", - "NAME": "Kauai", - "LSAD": "06", - "ALAND": 1605560469, - "AWATER": 1674243566 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - -159.78357579094998, - 22.06416793500138 - ], - [ - -159.74469911887104, - 22.09781583264678 - ], - [ - -159.73056214720597, - 22.140187259311364 - ], - [ - -159.70582244679207, - 22.15888053578103 - ], - [ - -159.61039788805283, - 22.20125196244561 - ], - [ - -159.58035682326454, - 22.223683894209213 - ], - [ - -159.54324727264373, - 22.221191457346592 - ], - [ - -159.50967196493917, - 22.203744399308235 - ], - [ - -159.48669938598343, - 22.22991498636577 - ], - [ - -159.43191862078126, - 22.21994523891528 - ], - [ - -159.401877555993, - 22.23240742322839 - ], - [ - -159.3612337624559, - 22.213714146758722 - ], - [ - -159.31175436162815, - 22.182558685975945 - ], - [ - -159.29231602558866, - 22.122740201273007 - ], - [ - -159.31705572600254, - 22.061675498138758 - ], - [ - -159.3347269405839, - 22.04173600323778 - ], - [ - -159.33119269766763, - 21.9993645765732 - ], - [ - -159.33649406204202, - 21.950762057752062 - ], - [ - -159.38420634141164, - 21.912129286381415 - ], - [ - -159.4442884709882, - 21.868511641285522 - ], - [ - -159.5255760580624, - 21.88346626246126 - ], - [ - -159.57328833743202, - 21.892189791480437 - ], - [ - -159.60332940222028, - 21.892189791480437 - ], - [ - -159.64927456013177, - 21.933314999713705 - ], - [ - -159.7075895682502, - 21.960731805202553 - ], - [ - -159.75530184761985, - 21.97817886324091 - ], - [ - -159.78711003386624, - 22.018057853042865 - ], - [ - -159.78357579094998, - 22.06416793500138 - ] - ] - ], - [ - [ - [ - -160.25009585589743, - 21.814924248739143 - ], - [ - -160.2288903983998, - 21.888451136186504 - ], - [ - -160.19354796923713, - 21.922099033831906 - ], - [ - -160.13700008257683, - 21.94826962088944 - ], - [ - -160.12286311091177, - 21.963224242065174 - ], - [ - -160.11226038216296, - 21.995625921279263 - ], - [ - -160.07161658862586, - 22.003103231867133 - ], - [ - -160.05924673841892, - 21.995625921279263 - ], - [ - -160.05041113112827, - 21.98067130010353 - ], - [ - -160.06984946716773, - 21.963224242065174 - ], - [ - -160.08575356029095, - 21.927083907557147 - ], - [ - -160.0786850744584, - 21.89592844677437 - ], - [ - -160.1246302323699, - 21.87598895187339 - ], - [ - -160.15643841861632, - 21.867265422854214 - ], - [ - -160.17410963319765, - 21.846079709521923 - ], - [ - -160.19001372632087, - 21.82240155932701 - ], - [ - -160.20591781944407, - 21.778783914231116 - ], - [ - -160.23065751985794, - 21.788753661681607 - ], - [ - -160.25009585589743, - 21.814924248739143 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "15", - "COUNTYFP": "001", - "COUNTYNS": "00365280", - "AFFGEOID": "0500000US15001", - "GEOID": "15001", - "NAME": "Hawaii", - "LSAD": "06", - "ALAND": 10433651107, - "AWATER": 2739477691 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -156.04964814991231, - 19.779849550407967 - ], - [ - -156.00723723491708, - 19.8172361033473 - ], - [ - -155.97719617012882, - 19.849637782561395 - ], - [ - -155.9506893482568, - 19.85711509314926 - ], - [ - -155.91711404055226, - 19.88702433550073 - ], - [ - -155.89237434013836, - 19.93188819902793 - ], - [ - -155.85703191097568, - 19.968028533535957 - ], - [ - -155.8322922105618, - 19.98173693628038 - ], - [ - -155.8269908461874, - 20.02535458137627 - ], - [ - -155.8517305466013, - 20.06274113431561 - ], - [ - -155.89060721868023, - 20.123805837449854 - ], - [ - -155.90297706888717, - 20.177393229996238 - ], - [ - -155.89060721868023, - 20.254658772737532 - ], - [ - -155.85349766805942, - 20.270859612344577 - ], - [ - -155.79871690285725, - 20.25341255430622 - ], - [ - -155.73686765182256, - 20.22225709352344 - ], - [ - -155.70505946557614, - 20.191101632740658 - ], - [ - -155.63790885016704, - 20.15246886137001 - ], - [ - -155.5990321780881, - 20.123805837449854 - ], - [ - -155.56015550600912, - 20.131283148037724 - ], - [ - -155.50360761934883, - 20.113836089999367 - ], - [ - -155.3887447245701, - 20.06647978960954 - ], - [ - -155.27034758687512, - 20.01413861549447 - ], - [ - -155.1660874208452, - 19.936873072753176 - ], - [ - -155.1254436273081, - 19.896994082951217 - ], - [ - -155.08656695522916, - 19.854622656286637 - ], - [ - -155.09186831960355, - 19.776110895114034 - ], - [ - -155.08656695522916, - 19.728754594724208 - ], - [ - -155.04592316169206, - 19.739970560606007 - ], - [ - -155.00704648961312, - 19.739970560606007 - ], - [ - -154.9805396677411, - 19.691368041784873 - ], - [ - -154.9752383033667, - 19.634041993944557 - ], - [ - -154.94696436003656, - 19.6053789700244 - ], - [ - -154.85330692275542, - 19.549299140615396 - ], - [ - -154.81443025067648, - 19.530605864145727 - ], - [ - -154.8161973721346, - 19.50069662179426 - ], - [ - -154.87627950171117, - 19.433400826503455 - ], - [ - -154.94343011712027, - 19.382305870819696 - ], - [ - -155.02118346127818, - 19.331210915135937 - ], - [ - -155.11307377710116, - 19.291331925333978 - ], - [ - -155.15901893501265, - 19.26889999357038 - ], - [ - -155.20673121438227, - 19.26142268298251 - ], - [ - -155.2650462225007, - 19.27388486729562 - ], - [ - -155.31452562332848, - 19.251452935532022 - ], - [ - -155.36047078123997, - 19.209081508867442 - ], - [ - -155.39051184602823, - 19.201604198279572 - ], - [ - -155.45412821852108, - 19.151755461027125 - ], - [ - -155.50537474080699, - 19.1380470582827 - ], - [ - -155.55662126309286, - 19.069505044560586 - ], - [ - -155.59196369225555, - 19.007194122995028 - ], - [ - -155.6149362712113, - 18.971053788487 - ], - [ - -155.63790885016704, - 18.941144546135533 - ], - [ - -155.67325127932972, - 18.91746639594062 - ], - [ - -155.72626492307376, - 18.969807570055693 - ], - [ - -155.80755251014793, - 19.013425215151585 - ], - [ - -155.88177161138955, - 19.037103365346496 - ], - [ - -155.9153469190941, - 19.099414286912054 - ], - [ - -155.91357979763598, - 19.179172266515973 - ], - [ - -155.90297706888717, - 19.25893024611989 - ], - [ - -155.89237434013836, - 19.298809235921848 - ], - [ - -155.8888400972221, - 19.348657973174294 - ], - [ - -155.91004555471972, - 19.415953768465098 - ], - [ - -155.9259496478429, - 19.454586539835745 - ], - [ - -155.95245646971495, - 19.486988219049834 - ], - [ - -155.97012768429627, - 19.556776451203262 - ], - [ - -155.97896329158695, - 19.609117625318333 - ], - [ - -155.99840162762644, - 19.642765522963735 - ], - [ - -156.03020981387283, - 19.6502428335516 - ], - [ - -156.03374405678912, - 19.670182328452583 - ], - [ - -156.06555224303554, - 19.73124703158683 - ], - [ - -156.04964814991231, - 19.779849550407967 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "STATEFP": "15", - "COUNTYFP": "009", - "COUNTYNS": "00365283", - "AFFGEOID": "0500000US15009", - "GEOID": "15009", - "NAME": "Maui", - "LSAD": "06", - "ALAND": 3008359138, - "AWATER": 3203293646 - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - -156.69994884650572, - 20.921385633489017 - ], - [ - -156.68051051046623, - 20.97995789976064 - ], - [ - -156.61866125943155, - 21.02856041858178 - ], - [ - -156.56211337277125, - 21.016098234268668 - ], - [ - -156.5179353363179, - 20.95503353113442 - ], - [ - -156.48082578569708, - 20.898953701725418 - ], - [ - -156.40307244153917, - 20.91640075976377 - ], - [ - -156.3323875832138, - 20.94631000211524 - ], - [ - -156.24226438884895, - 20.93758647309606 - ], - [ - -156.19455210947933, - 20.89272260956886 - ], - [ - -156.13270285844462, - 20.86156714878608 - ], - [ - -156.06025087866112, - 20.81047219310232 - ], - [ - -156.00370299200083, - 20.795517571926588 - ], - [ - -155.9860317774195, - 20.74442261624283 - ], - [ - -156.0019358705427, - 20.698312534284316 - ], - [ - -156.04434678553793, - 20.66466463663891 - ], - [ - -156.1309357369865, - 20.627278083699576 - ], - [ - -156.2086890811444, - 20.628524302130888 - ], - [ - -156.28290818238605, - 20.596122622916795 - ], - [ - -156.37656561966716, - 20.57867556487844 - ], - [ - -156.43134638486933, - 20.59861505977942 - ], - [ - -156.44371623507627, - 20.655941107619732 - ], - [ - -156.45785320674133, - 20.736945305654963 - ], - [ - -156.4613874496576, - 20.754392363693317 - ], - [ - -156.4719901784064, - 20.790532698201343 - ], - [ - -156.50556548611095, - 20.79925622722052 - ], - [ - -156.53737367235738, - 20.77807051388823 - ], - [ - -156.55327776548057, - 20.78679404290741 - ], - [ - -156.63103110963849, - 20.821688158984124 - ], - [ - -156.68757899629878, - 20.891476391137548 - ], - [ - -156.69994884650572, - 20.921385633489017 - ] - ] - ], - [ - [ - [ - -156.66990778171743, - 20.559982288408772 - ], - [ - -156.60982565214087, - 20.593630186054174 - ], - [ - -156.5656476156875, - 20.604846151935973 - ], - [ - -156.54267503673177, - 20.57992178330975 - ], - [ - -156.5391407938155, - 20.527580609194683 - ], - [ - -156.585085951727, - 20.511379769587634 - ], - [ - -156.6681406602593, - 20.50514867743108 - ], - [ - -156.70171596796385, - 20.532565482919924 - ], - [ - -156.66990778171743, - 20.559982288408772 - ] - ] - ], - [ - [ - [ - -157.058674502507, - 20.91390832290115 - ], - [ - -157.0091951016792, - 20.930109162508195 - ], - [ - -156.93674312189572, - 20.92512428878295 - ], - [ - -156.87312674940287, - 20.89521504643148 - ], - [ - -156.83601719878206, - 20.864059585648704 - ], - [ - -156.80774325545192, - 20.82044194055281 - ], - [ - -156.8377843202402, - 20.764362111143807 - ], - [ - -156.8890308425261, - 20.74442261624283 - ], - [ - -156.90846917856555, - 20.739437742517584 - ], - [ - -156.96678418668398, - 20.73569908722365 - ], - [ - -156.98975676563973, - 20.775578077025607 - ], - [ - -156.99152388709788, - 20.826673032709365 - ], - [ - -157.01096222313734, - 20.854089838198213 - ], - [ - -157.058674502507, - 20.885245298980994 - ], - [ - -157.058674502507, - 20.91390832290115 - ] - ] - ], - [ - [ - [ - -157.01449646605363, - 21.201784780534034 - ], - [ - -157.01449646605363, - 21.183091504064368 - ], - [ - -156.97385267251653, - 21.175614193476502 - ], - [ - -156.9420444862701, - 21.160659572300766 - ], - [ - -156.91730478585623, - 21.12950411151799 - ], - [ - -156.8996335712749, - 21.13199654838061 - ], - [ - -156.91730478585623, - 21.169383101319944 - ], - [ - -156.84131856315645, - 21.168136882888632 - ], - [ - -156.74235976150095, - 21.17686041190781 - ], - [ - -156.7087844537964, - 21.159413353869454 - ], - [ - -156.7388255185847, - 21.11205705347963 - ], - [ - -156.8024418910775, - 21.067193189952427 - ], - [ - -156.87666099231916, - 21.04974613191407 - ], - [ - -156.9526472150189, - 21.065946971521115 - ], - [ - -157.02509919480244, - 21.08962512171603 - ], - [ - -157.07987996000458, - 21.10208730602914 - ], - [ - -157.17177027582755, - 21.090871340147338 - ], - [ - -157.25305786290176, - 21.088378903284717 - ], - [ - -157.31137287102018, - 21.10208730602914 - ], - [ - -157.27779756331563, - 21.159413353869454 - ], - [ - -157.24952361998547, - 21.18433772249568 - ], - [ - -157.26012634873427, - 21.22670914916026 - ], - [ - -157.20181134061585, - 21.21923183857239 - ], - [ - -157.12759223937422, - 21.201784780534034 - ], - [ - -157.0392361664675, - 21.191815033083547 - ], - [ - -157.01449646605363, - 21.201784780534034 - ] - ] - ] - ] - } - } - ] -} \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/resources/polygons_converted/italy_provinces.geojson b/GlobalQuakeCore/src/main/resources/polygons_converted/italy_provinces.geojson deleted file mode 100644 index df3af06..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons_converted/italy_provinces.geojson +++ /dev/null @@ -1,26629 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 1, - "NAME_1": "Abruzzo", - "ID_2": 1, - "NAME_2": "Chieti", - "HASC_2": "IT.CH", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.779291290638469, - 42.07030290963965 - ], - [ - 14.766835515550568, - 42.01902518957618 - ], - [ - 14.727911218400884, - 42.00421162600229 - ], - [ - 14.669524772676358, - 41.94780613393247 - ], - [ - 14.664853857018397, - 41.917039501894386 - ], - [ - 14.6150307566668, - 41.89026113697235 - ], - [ - 14.571435543859153, - 41.821890843554385 - ], - [ - 14.486580576072841, - 41.76035757947822 - ], - [ - 14.464782969669018, - 41.77801990527786 - ], - [ - 14.446877792980164, - 41.838983416908874 - ], - [ - 14.377592544053726, - 41.88114509784995 - ], - [ - 14.343339162562003, - 41.87088955383726 - ], - [ - 14.325433985873147, - 41.89652841386899 - ], - [ - 14.28573120278047, - 41.90963272010744 - ], - [ - 14.230458700827917, - 41.878296335624206 - ], - [ - 14.183749544248297, - 41.90450494810109 - ], - [ - 14.107457921834914, - 41.8942494040884 - ], - [ - 14.082546371659117, - 42.01902518957618 - ], - [ - 14.105122464005934, - 42.04922206916912 - ], - [ - 14.086438801374086, - 42.0879652354393 - ], - [ - 14.116021267207845, - 42.107906571019534 - ], - [ - 14.11057186560689, - 42.13810345061247 - ], - [ - 14.130034014181732, - 42.15975404352816 - ], - [ - 14.097337604575998, - 42.18710216089534 - ], - [ - 14.118356725036827, - 42.22299656493978 - ], - [ - 14.112128837492879, - 42.29250636324804 - ], - [ - 14.076318484115168, - 42.32612175751187 - ], - [ - 14.112907323435872, - 42.332958786853666 - ], - [ - 14.158059508129504, - 42.418421653626126 - ], - [ - 14.225009299226961, - 42.42810744519367 - ], - [ - 14.253813279117729, - 42.44520001854816 - ], - [ - 14.41028895365946, - 42.36030690422085 - ], - [ - 14.444542335151183, - 42.31073844149283 - ], - [ - 14.50292878087571, - 42.27199527522265 - ], - [ - 14.510713640305646, - 42.25091443475211 - ], - [ - 14.617366214495782, - 42.19963671468864 - ], - [ - 14.717012415198973, - 42.17342810221175 - ], - [ - 14.717790901141967, - 42.10562756123893 - ], - [ - 14.779291290638469, - 42.07030290963965 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 1, - "NAME_1": "Abruzzo", - "ID_2": 2, - "NAME_2": "L'Aquila", - "HASC_2": "IT.AQ", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Aquila" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.76648107880368, - 42.42127041585187 - ], - [ - 13.788278685207505, - 42.39221304114923 - ], - [ - 13.80851931972534, - 42.33352853929882 - ], - [ - 13.845108159046042, - 42.282250819235344 - ], - [ - 13.843551187160056, - 42.257181711648755 - ], - [ - 13.810076291611328, - 42.24806567252636 - ], - [ - 13.811633263497313, - 42.19792745735319 - ], - [ - 13.799177488409416, - 42.15006825196061 - ], - [ - 13.853671504418973, - 42.147219489734866 - ], - [ - 13.899602175055602, - 42.166591072869956 - ], - [ - 13.911279464200506, - 42.14437072750911 - ], - [ - 13.962659536438089, - 42.125568896819175 - ], - [ - 14.010147178960704, - 42.0742911767557 - ], - [ - 14.086438801374086, - 42.0879652354393 - ], - [ - 14.105122464005934, - 42.04922206916912 - ], - [ - 14.082546371659117, - 42.01902518957618 - ], - [ - 14.107457921834914, - 41.8942494040884 - ], - [ - 14.183749544248297, - 41.90450494810109 - ], - [ - 14.230458700827917, - 41.878296335624206 - ], - [ - 14.21800292574002, - 41.85493648537307 - ], - [ - 14.147939190870588, - 41.82815812045103 - ], - [ - 14.194648347450208, - 41.74896253057522 - ], - [ - 14.07009059657122, - 41.738137234117374 - ], - [ - 14.020267496219622, - 41.68344099938301 - ], - [ - 13.995355946043825, - 41.694836048286 - ], - [ - 13.941640415977261, - 41.6891385238345 - ], - [ - 13.92062129551643, - 41.71819589853714 - ], - [ - 13.750132874000812, - 41.761497084368514 - ], - [ - 13.717436464395078, - 41.798530993303245 - ], - [ - 13.66294244838552, - 41.81220505198684 - ], - [ - 13.631803010665774, - 41.78371742972936 - ], - [ - 13.572638078998253, - 41.75522980747187 - ], - [ - 13.522814978646657, - 41.77403163816181 - ], - [ - 13.505688287900796, - 41.802519260419295 - ], - [ - 13.408377545026585, - 41.83841366446373 - ], - [ - 13.367896275990912, - 41.83385564490253 - ], - [ - 13.36088990250397, - 41.87031980139211 - ], - [ - 13.385022966736773, - 41.90507470054624 - ], - [ - 13.323522577240272, - 41.94609687659702 - ], - [ - 13.297054055178487, - 41.949515391267916 - ], - [ - 13.232439721910012, - 41.9825610330866 - ], - [ - 13.199743312304276, - 41.987688805092944 - ], - [ - 13.140578380636756, - 42.01617642735043 - ], - [ - 13.055723412850444, - 42.017315932240734 - ], - [ - 13.01913457352974, - 42.07600043409115 - ], - [ - 13.031590348617641, - 42.11645285769678 - ], - [ - 13.086862850570192, - 42.14551023239942 - ], - [ - 13.087641336513185, - 42.17912562666325 - ], - [ - 13.184173593444402, - 42.15975404352816 - ], - [ - 13.249566412655872, - 42.12841765904493 - ], - [ - 13.30639588649441, - 42.139242955502766 - ], - [ - 13.323522577240272, - 42.162033053308754 - ], - [ - 13.368674761933907, - 42.1808348839987 - ], - [ - 13.321187119411292, - 42.23040334672672 - ], - [ - 13.293161625463519, - 42.23325210895247 - ], - [ - 13.23010426408103, - 42.28794834368684 - ], - [ - 13.226990320309056, - 42.32042423306037 - ], - [ - 13.154591127610642, - 42.358027894440255 - ], - [ - 13.190401480988353, - 42.38195749713654 - ], - [ - 13.190401480988353, - 42.40132908027163 - ], - [ - 13.117223802346945, - 42.444630266103005 - ], - [ - 13.154591127610642, - 42.46343209679295 - ], - [ - 13.178724191843447, - 42.51357031196612 - ], - [ - 13.15848355732561, - 42.52895362798517 - ], - [ - 13.191958452874339, - 42.588207882280734 - ], - [ - 13.262800673686765, - 42.584219615164685 - ], - [ - 13.292383139520524, - 42.57168506137139 - ], - [ - 13.381130537021805, - 42.581940605384084 - ], - [ - 13.395143283995692, - 42.592196149396784 - ], - [ - 13.410713002855566, - 42.53920917199786 - ], - [ - 13.476884308010028, - 42.48394318481834 - ], - [ - 13.526707408361624, - 42.47311788836049 - ], - [ - 13.52592892241863, - 42.45146729544481 - ], - [ - 13.623239665292843, - 42.45203704788995 - ], - [ - 13.67150579375845, - 42.43950249409666 - ], - [ - 13.702645231478197, - 42.44520001854816 - ], - [ - 13.76648107880368, - 42.42127041585187 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 1, - "NAME_1": "Abruzzo", - "ID_2": 3, - "NAME_2": "Pescara", - "HASC_2": "IT.PE", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.145603733041607, - 42.53123263776576 - ], - [ - 14.19931926310817, - 42.48280367992804 - ], - [ - 14.253813279117729, - 42.44520001854816 - ], - [ - 14.225009299226961, - 42.42810744519367 - ], - [ - 14.158059508129504, - 42.418421653626126 - ], - [ - 14.112907323435872, - 42.332958786853666 - ], - [ - 14.076318484115168, - 42.32612175751187 - ], - [ - 14.112128837492879, - 42.29250636324804 - ], - [ - 14.118356725036827, - 42.22299656493978 - ], - [ - 14.097337604575998, - 42.18710216089534 - ], - [ - 14.130034014181732, - 42.15975404352816 - ], - [ - 14.11057186560689, - 42.13810345061247 - ], - [ - 14.116021267207845, - 42.107906571019534 - ], - [ - 14.086438801374086, - 42.0879652354393 - ], - [ - 14.010147178960704, - 42.0742911767557 - ], - [ - 13.962659536438089, - 42.125568896819175 - ], - [ - 13.911279464200506, - 42.14437072750911 - ], - [ - 13.899602175055602, - 42.166591072869956 - ], - [ - 13.853671504418973, - 42.147219489734866 - ], - [ - 13.799177488409416, - 42.15006825196061 - ], - [ - 13.811633263497313, - 42.19792745735319 - ], - [ - 13.810076291611328, - 42.24806567252636 - ], - [ - 13.843551187160056, - 42.257181711648755 - ], - [ - 13.845108159046042, - 42.282250819235344 - ], - [ - 13.80851931972534, - 42.33352853929882 - ], - [ - 13.788278685207505, - 42.39221304114923 - ], - [ - 13.76648107880368, - 42.42127041585187 - ], - [ - 13.806962347839352, - 42.47710615547654 - ], - [ - 13.838880271502093, - 42.49875674839223 - ], - [ - 13.885589428081715, - 42.51015179729522 - ], - [ - 13.953317705122165, - 42.50616353017918 - ], - [ - 13.952539219179172, - 42.530662885320616 - ], - [ - 13.990685030385862, - 42.54262768666876 - ], - [ - 14.058413307426314, - 42.53180239021091 - ], - [ - 14.145603733041607, - 42.53123263776576 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 1, - "NAME_1": "Abruzzo", - "ID_2": 4, - "NAME_2": "Teramo", - "HASC_2": "IT.TE", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.915171893915474, - 42.895874202661574 - ], - [ - 13.937747986262291, - 42.81610886034061 - ], - [ - 13.996912917929812, - 42.70500713353642 - ], - [ - 14.073204540343195, - 42.60302144585462 - ], - [ - 14.145603733041607, - 42.53123263776576 - ], - [ - 14.058413307426314, - 42.53180239021091 - ], - [ - 13.990685030385862, - 42.54262768666876 - ], - [ - 13.952539219179172, - 42.530662885320616 - ], - [ - 13.953317705122165, - 42.50616353017918 - ], - [ - 13.885589428081715, - 42.51015179729522 - ], - [ - 13.838880271502093, - 42.49875674839223 - ], - [ - 13.806962347839352, - 42.47710615547654 - ], - [ - 13.76648107880368, - 42.42127041585187 - ], - [ - 13.702645231478197, - 42.44520001854816 - ], - [ - 13.67150579375845, - 42.43950249409666 - ], - [ - 13.623239665292843, - 42.45203704788995 - ], - [ - 13.52592892241863, - 42.45146729544481 - ], - [ - 13.526707408361624, - 42.47311788836049 - ], - [ - 13.476884308010028, - 42.48394318481834 - ], - [ - 13.410713002855566, - 42.53920917199786 - ], - [ - 13.395143283995692, - 42.592196149396784 - ], - [ - 13.409156030969578, - 42.6440436219054 - ], - [ - 13.370231733819892, - 42.6508806512472 - ], - [ - 13.344541697701102, - 42.702158371310674 - ], - [ - 13.389693882394736, - 42.68848431262708 - ], - [ - 13.452751243777225, - 42.7346342606842 - ], - [ - 13.489340083097929, - 42.7346342606842 - ], - [ - 13.503352830071815, - 42.771668169618934 - ], - [ - 13.529821352133599, - 42.79616752476038 - ], - [ - 13.621682693406854, - 42.816678612785765 - ], - [ - 13.636473926323735, - 42.80414405899247 - ], - [ - 13.700309773649217, - 42.82351564212756 - ], - [ - 13.723664351939028, - 42.85656128394624 - ], - [ - 13.780493825777567, - 42.86168905595259 - ], - [ - 13.817082665098269, - 42.87821187686193 - ], - [ - 13.915171893915474, - 42.895874202661574 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 2, - "NAME_1": "Apulia", - "ID_2": 5, - "NAME_2": "Bari", - "HASC_2": "IT.BB", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.3895546574963, - 40.89319435796037 - ], - [ - 17.3405100430877, - 40.86641599303833 - ], - [ - 17.296136344337057, - 40.81798703520061 - ], - [ - 17.36620007920649, - 40.787790155607674 - ], - [ - 17.399674974755218, - 40.78665065071738 - ], - [ - 17.395004059097257, - 40.751325999118095 - ], - [ - 17.354522790061587, - 40.749616741782646 - ], - [ - 17.305478175652983, - 40.7444889697763 - ], - [ - 17.28368056924916, - 40.768418572472584 - ], - [ - 17.300028774052027, - 40.80089446184612 - ], - [ - 17.243199300213487, - 40.80089446184612 - ], - [ - 17.248648701814442, - 40.766709315137135 - ], - [ - 17.20116105929183, - 40.76215129557594 - ], - [ - 17.160679790256157, - 40.7444889697763 - ], - [ - 17.15055947299724, - 40.71201308040276 - ], - [ - 17.059476617666977, - 40.72226862441546 - ], - [ - 17.022109292403282, - 40.714861842628515 - ], - [ - 16.971507706108692, - 40.7422099599957 - ], - [ - 16.926355521415058, - 40.7376519404345 - ], - [ - 16.913121260384166, - 40.70802481328672 - ], - [ - 16.85784875843161, - 40.72454763419606 - ], - [ - 16.801019284593075, - 40.69606001193857 - ], - [ - 16.787785023562183, - 40.73366367331845 - ], - [ - 16.725506148122687, - 40.714861842628515 - ], - [ - 16.633644806849432, - 40.75474451378899 - ], - [ - 16.57681533301089, - 40.76443030535654 - ], - [ - 16.537891035861207, - 40.753605008898695 - ], - [ - 16.496631280882543, - 40.75930253335019 - ], - [ - 16.43123846167107, - 40.70574580350612 - ], - [ - 16.40087750989432, - 40.708594565731865 - ], - [ - 16.381415361319476, - 40.7376519404345 - ], - [ - 16.347940465770748, - 40.75303525645354 - ], - [ - 16.24518032129558, - 40.83906787567115 - ], - [ - 16.203142080373922, - 40.91826346554696 - ], - [ - 16.252965180725518, - 40.96327390871378 - ], - [ - 16.27476278712934, - 41.049306527931385 - ], - [ - 16.35261138142871, - 41.13590889959414 - ], - [ - 16.338598634454822, - 41.152431720503486 - ], - [ - 16.401655995837313, - 41.18946562943822 - ], - [ - 16.430459975728077, - 41.191174886773666 - ], - [ - 16.46627032910579, - 41.15755949250983 - ], - [ - 16.50441614031248, - 41.152431720503486 - ], - [ - 16.51297948568541, - 41.184907609877015 - ], - [ - 16.54256195151917, - 41.229348300598694 - ], - [ - 16.590828079984778, - 41.20541869790241 - ], - [ - 16.927912493301044, - 41.11197929689786 - ], - [ - 16.962165874792767, - 41.09716573332396 - ], - [ - 17.04546387069309, - 41.08121266485977 - ], - [ - 17.23774989861253, - 40.992901035861564 - ], - [ - 17.305478175652983, - 40.95586712692684 - ], - [ - 17.34907338846063, - 40.90743816908911 - ], - [ - 17.3895546574963, - 40.89319435796037 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 2, - "NAME_1": "Apulia", - "ID_2": 6, - "NAME_2": "Barletta-Andria-Trani", - "HASC_2": "IT.BT", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.02564728537136, - 41.42591289417534 - ], - [ - 16.203142080373922, - 41.359251858092826 - ], - [ - 16.133856831447485, - 41.29088156467486 - ], - [ - 16.061457638749072, - 41.27094022909462 - ], - [ - 16.0209763697134, - 41.23048780548899 - ], - [ - 16.02953971508633, - 41.25156864595953 - ], - [ - 15.984387530392695, - 41.30569512824876 - ], - [ - 15.98283055850671, - 41.36153086787343 - ], - [ - 16.034989116687285, - 41.37577467900217 - ], - [ - 15.974267213133778, - 41.415087597717495 - ], - [ - 16.02564728537136, - 41.42591289417534 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 2, - "NAME_1": "Apulia", - "ID_2": 6, - "NAME_2": "Barletta-Andria-Trani", - "HASC_2": "IT.BT", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.54256195151917, - 41.229348300598694 - ], - [ - 16.51297948568541, - 41.184907609877015 - ], - [ - 16.50441614031248, - 41.152431720503486 - ], - [ - 16.46627032910579, - 41.15755949250983 - ], - [ - 16.430459975728077, - 41.191174886773666 - ], - [ - 16.401655995837313, - 41.18946562943822 - ], - [ - 16.338598634454822, - 41.152431720503486 - ], - [ - 16.35261138142871, - 41.13590889959414 - ], - [ - 16.27476278712934, - 41.049306527931385 - ], - [ - 16.252965180725518, - 40.96327390871378 - ], - [ - 16.203142080373922, - 40.91826346554696 - ], - [ - 16.163439297281244, - 40.929658514449955 - ], - [ - 16.12217954230258, - 40.900031387302164 - ], - [ - 16.094154048354806, - 40.9211122277727 - ], - [ - 15.977381156905754, - 40.95928564159774 - ], - [ - 16.032653658858305, - 40.999168312758215 - ], - [ - 16.038881546402255, - 41.039620736363844 - ], - [ - 15.954026578615942, - 41.11197929689786 - ], - [ - 15.922108654953202, - 41.11197929689786 - ], - [ - 15.870728582715618, - 41.14103667160049 - ], - [ - 15.927558056554158, - 41.18319835254157 - ], - [ - 15.992172389822631, - 41.19630265878001 - ], - [ - 16.0209763697134, - 41.23048780548899 - ], - [ - 16.061457638749072, - 41.27094022909462 - ], - [ - 16.133856831447485, - 41.29088156467486 - ], - [ - 16.203142080373922, - 41.359251858092826 - ], - [ - 16.27631975901533, - 41.32392720649354 - ], - [ - 16.351832895485718, - 41.306834633139054 - ], - [ - 16.41800420064018, - 41.28290503044276 - ], - [ - 16.452257582131903, - 41.26068468508193 - ], - [ - 16.54256195151917, - 41.229348300598694 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 2, - "NAME_1": "Apulia", - "ID_2": 7, - "NAME_2": "Brindisi", - "HASC_2": "IT.BR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.3895546574963, - 40.89319435796037 - ], - [ - 17.47207416745363, - 40.8316610938842 - ], - [ - 17.552258219581983, - 40.80032470940097 - ], - [ - 17.688493259605877, - 40.76556981024684 - ], - [ - 17.841854990375634, - 40.69036248748708 - ], - [ - 17.93838724730685, - 40.68580446792588 - ], - [ - 17.973419114741567, - 40.64421253942995 - ], - [ - 17.993659749259404, - 40.64763105410085 - ], - [ - 18.045039821496985, - 40.59806259137282 - ], - [ - 18.03491950423807, - 40.56843546422504 - ], - [ - 18.09641989373457, - 40.515448486826116 - ], - [ - 18.069951371672783, - 40.461322004536896 - ], - [ - 18.04192587772501, - 40.48980962679438 - ], - [ - 18.0185712994352, - 40.4636010143175 - ], - [ - 17.953956966166725, - 40.45847324231114 - ], - [ - 17.93605178947787, - 40.42941586760851 - ], - [ - 17.887007175069268, - 40.42371834315701 - ], - [ - 17.823171327743786, - 40.40434676002192 - ], - [ - 17.79903826351098, - 40.38041715732564 - ], - [ - 17.768677311734226, - 40.39693997823498 - ], - [ - 17.734423930242507, - 40.39238195867378 - ], - [ - 17.693942661206833, - 40.41289304669917 - ], - [ - 17.683043858004922, - 40.441950421401806 - ], - [ - 17.62621438416638, - 40.4636010143175 - ], - [ - 17.533574556950132, - 40.44821769829845 - ], - [ - 17.51177695054631, - 40.480123835226834 - ], - [ - 17.487643886313506, - 40.48297259745259 - ], - [ - 17.448719589163822, - 40.555900910431745 - ], - [ - 17.474409625282615, - 40.611736650056415 - ], - [ - 17.42770046870299, - 40.6345267478624 - ], - [ - 17.41835863738707, - 40.68238595325498 - ], - [ - 17.354522790061587, - 40.749616741782646 - ], - [ - 17.395004059097257, - 40.751325999118095 - ], - [ - 17.399674974755218, - 40.78665065071738 - ], - [ - 17.36620007920649, - 40.787790155607674 - ], - [ - 17.296136344337057, - 40.81798703520061 - ], - [ - 17.3405100430877, - 40.86641599303833 - ], - [ - 17.3895546574963, - 40.89319435796037 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 2, - "NAME_1": "Apulia", - "ID_2": 8, - "NAME_2": "Foggia", - "HASC_2": "IT.FA", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.02564728537136, - 41.42591289417534 - ], - [ - 15.974267213133778, - 41.415087597717495 - ], - [ - 16.034989116687285, - 41.37577467900217 - ], - [ - 15.98283055850671, - 41.36153086787343 - ], - [ - 15.984387530392695, - 41.30569512824876 - ], - [ - 16.02953971508633, - 41.25156864595953 - ], - [ - 16.0209763697134, - 41.23048780548899 - ], - [ - 15.992172389822631, - 41.19630265878001 - ], - [ - 15.927558056554158, - 41.18319835254157 - ], - [ - 15.870728582715618, - 41.14103667160049 - ], - [ - 15.806892735390136, - 41.11197929689786 - ], - [ - 15.79988636190319, - 41.09317746620792 - ], - [ - 15.75317720532357, - 41.098305238214266 - ], - [ - 15.682334984511144, - 41.08747994175642 - ], - [ - 15.618499137185662, - 41.100014495549715 - ], - [ - 15.564783607119097, - 41.090328703982166 - ], - [ - 15.543764486658269, - 41.05671330971833 - ], - [ - 15.447232229727053, - 41.07893365507917 - ], - [ - 15.397409129375454, - 41.10799102978181 - ], - [ - 15.36860514948469, - 41.08577068442097 - ], - [ - 15.314889619418125, - 41.10514226755606 - ], - [ - 15.268180462838504, - 41.107421277336655 - ], - [ - 15.21057250305697, - 41.16895454141282 - ], - [ - 15.258060145579584, - 41.19858166856061 - ], - [ - 15.246382856434682, - 41.23504582505019 - ], - [ - 15.251053772092643, - 41.27150998153977 - ], - [ - 15.202009157684039, - 41.287463050003964 - ], - [ - 15.149850599503463, - 41.281195773107314 - ], - [ - 15.129609964985626, - 41.310822900255104 - ], - [ - 15.072780491147089, - 41.33361299806109 - ], - [ - 15.059546230116194, - 41.37292591677642 - ], - [ - 15.082122322463011, - 41.38887898524061 - ], - [ - 15.100027499151867, - 41.43502893329774 - ], - [ - 15.03307770805441, - 41.453830763987675 - ], - [ - 15.008166157878613, - 41.48744615825151 - ], - [ - 14.966906402899948, - 41.519922047625045 - ], - [ - 14.941216366781156, - 41.52448006718624 - ], - [ - 14.951336684040072, - 41.593420113049355 - ], - [ - 14.934988479237205, - 41.62019847797139 - ], - [ - 14.960678515355998, - 41.64697684289342 - ], - [ - 15.023735876738485, - 41.62304724019714 - ], - [ - 15.049425912857277, - 41.65666263446097 - ], - [ - 15.101584471037853, - 41.672615702925164 - ], - [ - 15.12182510555569, - 41.721044660762885 - ], - [ - 15.098470527265878, - 41.76662485637486 - ], - [ - 15.116375703954734, - 41.79055445907115 - ], - [ - 15.104698414809828, - 41.84752970358612 - ], - [ - 15.139730282244546, - 41.880005592959655 - ], - [ - 15.137394824415566, - 41.92615554101678 - ], - [ - 15.22536373597385, - 41.91817900678468 - ], - [ - 15.344472085251883, - 41.91533024455894 - ], - [ - 15.36626969165571, - 41.90165618587534 - ], - [ - 15.430884024924183, - 41.901086433430194 - ], - [ - 15.623948538786617, - 41.92786479835223 - ], - [ - 15.676107096967197, - 41.914760492113786 - ], - [ - 15.75706963503854, - 41.916469749449234 - ], - [ - 15.93067200032613, - 41.93356232280372 - ], - [ - 16.011634538397473, - 41.95065489615822 - ], - [ - 16.08481221703888, - 41.94096910459067 - ], - [ - 16.16655324105322, - 41.8874123747466 - ], - [ - 16.193021763115006, - 41.83613465468313 - ], - [ - 16.18990781934303, - 41.77460139060696 - ], - [ - 16.122958028245574, - 41.738706986562526 - ], - [ - 16.06535006846404, - 41.69312679095055 - ], - [ - 15.946241719186006, - 41.64412808066768 - ], - [ - 15.900311048549376, - 41.61621021085534 - ], - [ - 15.893304675062435, - 41.58658308370756 - ], - [ - 15.899532562606385, - 41.53644486853438 - ], - [ - 15.926001084668169, - 41.492573930257855 - ], - [ - 15.964925381817853, - 41.455540021323124 - ], - [ - 16.02564728537136, - 41.42591289417534 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 2, - "NAME_1": "Apulia", - "ID_2": 9, - "NAME_2": "Lecce", - "HASC_2": "IT.LE", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.09641989373457, - 40.515448486826116 - ], - [ - 18.127559331454318, - 40.49208863657498 - ], - [ - 18.201515496038716, - 40.46929853876899 - ], - [ - 18.252117082333307, - 40.433973887169714 - ], - [ - 18.380567262927265, - 40.32059315058492 - ], - [ - 18.424162475734914, - 40.294384538108034 - ], - [ - 18.464643744770584, - 40.22145622512887 - ], - [ - 18.464643744770584, - 40.19239885042624 - ], - [ - 18.517580788894154, - 40.13428410102097 - ], - [ - 18.52069473266613, - 40.10807548854408 - ], - [ - 18.48488437928842, - 40.0784483613963 - ], - [ - 18.477878005801475, - 40.048821234248514 - ], - [ - 18.435061278936825, - 40.023752126661925 - ], - [ - 18.403143355274082, - 39.961649110140606 - ], - [ - 18.391466066129176, - 39.818641246408035 - ], - [ - 18.36888997378236, - 39.793002386376294 - ], - [ - 18.257566483934262, - 39.83630357220767 - ], - [ - 18.201515496038716, - 39.84029183932372 - ], - [ - 18.04581830743998, - 39.92974297321222 - ], - [ - 18.01234341189125, - 39.9719046541533 - ], - [ - 18.017014327549212, - 40.03457742311977 - ], - [ - 17.983539432000484, - 40.054518758700006 - ], - [ - 18.00533703840431, - 40.07332058938995 - ], - [ - 18.010786440005266, - 40.106935983653784 - ], - [ - 17.992102777373415, - 40.13428410102097 - ], - [ - 17.925152986275958, - 40.18328281130384 - ], - [ - 17.908026295530096, - 40.251653104721804 - ], - [ - 17.863652596779456, - 40.28184998431474 - ], - [ - 17.76322791013327, - 40.294954290553186 - ], - [ - 17.792810375967033, - 40.33768572393941 - ], - [ - 17.79903826351098, - 40.38041715732564 - ], - [ - 17.823171327743786, - 40.40434676002192 - ], - [ - 17.887007175069268, - 40.42371834315701 - ], - [ - 17.93605178947787, - 40.42941586760851 - ], - [ - 17.953956966166725, - 40.45847324231114 - ], - [ - 18.0185712994352, - 40.4636010143175 - ], - [ - 18.04192587772501, - 40.48980962679438 - ], - [ - 18.069951371672783, - 40.461322004536896 - ], - [ - 18.09641989373457, - 40.515448486826116 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 2, - "NAME_1": "Apulia", - "ID_2": 10, - "NAME_2": "Taranto", - "HASC_2": "IT.TA", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Ionio|Tarent|Tarente" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.354522790061587, - 40.749616741782646 - ], - [ - 17.41835863738707, - 40.68238595325498 - ], - [ - 17.42770046870299, - 40.6345267478624 - ], - [ - 17.474409625282615, - 40.611736650056415 - ], - [ - 17.448719589163822, - 40.555900910431745 - ], - [ - 17.487643886313506, - 40.48297259745259 - ], - [ - 17.51177695054631, - 40.480123835226834 - ], - [ - 17.533574556950132, - 40.44821769829845 - ], - [ - 17.62621438416638, - 40.4636010143175 - ], - [ - 17.683043858004922, - 40.441950421401806 - ], - [ - 17.693942661206833, - 40.41289304669917 - ], - [ - 17.734423930242507, - 40.39238195867378 - ], - [ - 17.768677311734226, - 40.39693997823498 - ], - [ - 17.79903826351098, - 40.38041715732564 - ], - [ - 17.792810375967033, - 40.33768572393941 - ], - [ - 17.76322791013327, - 40.294954290553186 - ], - [ - 17.660467765658105, - 40.304070329675575 - ], - [ - 17.50554906300236, - 40.294954290553186 - ], - [ - 17.448719589163822, - 40.32799993237187 - ], - [ - 17.39344708721127, - 40.333127704378214 - ], - [ - 17.37476342457942, - 40.348511020397254 - ], - [ - 17.31092757725394, - 40.36560359375174 - ], - [ - 17.23074352512559, - 40.40149799779618 - ], - [ - 17.250984159643426, - 40.4499269556339 - ], - [ - 17.216730778151703, - 40.47385655833019 - ], - [ - 17.12954035253641, - 40.51772749660672 - ], - [ - 17.08750211161475, - 40.52057625883246 - ], - [ - 17.020552320517293, - 40.505762695258575 - ], - [ - 16.94815312781888, - 40.46986829121414 - ], - [ - 16.867190589747537, - 40.399218988015576 - ], - [ - 16.810361115908997, - 40.433973887169714 - ], - [ - 16.79323442516314, - 40.463031261872345 - ], - [ - 16.736404951324598, - 40.468728786323844 - ], - [ - 16.737961923210584, - 40.50462319036827 - ], - [ - 16.70682248549084, - 40.55134289087055 - ], - [ - 16.724727662179692, - 40.60319036337917 - ], - [ - 16.710714915205806, - 40.63395699541726 - ], - [ - 16.72628463406568, - 40.67839768613893 - ], - [ - 16.725506148122687, - 40.714861842628515 - ], - [ - 16.787785023562183, - 40.73366367331845 - ], - [ - 16.801019284593075, - 40.69606001193857 - ], - [ - 16.85784875843161, - 40.72454763419606 - ], - [ - 16.913121260384166, - 40.70802481328672 - ], - [ - 16.926355521415058, - 40.7376519404345 - ], - [ - 16.971507706108692, - 40.7422099599957 - ], - [ - 17.022109292403282, - 40.714861842628515 - ], - [ - 17.059476617666977, - 40.72226862441546 - ], - [ - 17.15055947299724, - 40.71201308040276 - ], - [ - 17.160679790256157, - 40.7444889697763 - ], - [ - 17.20116105929183, - 40.76215129557594 - ], - [ - 17.248648701814442, - 40.766709315137135 - ], - [ - 17.243199300213487, - 40.80089446184612 - ], - [ - 17.300028774052027, - 40.80089446184612 - ], - [ - 17.28368056924916, - 40.768418572472584 - ], - [ - 17.305478175652983, - 40.7444889697763 - ], - [ - 17.354522790061587, - 40.749616741782646 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 3, - "NAME_1": "Basilicata", - "ID_2": 11, - "NAME_2": "Matera", - "HASC_2": "IT.MT", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.725506148122687, - 40.714861842628515 - ], - [ - 16.72628463406568, - 40.67839768613893 - ], - [ - 16.710714915205806, - 40.63395699541726 - ], - [ - 16.724727662179692, - 40.60319036337917 - ], - [ - 16.70682248549084, - 40.55134289087055 - ], - [ - 16.737961923210584, - 40.50462319036827 - ], - [ - 16.736404951324598, - 40.468728786323844 - ], - [ - 16.79323442516314, - 40.463031261872345 - ], - [ - 16.810361115908997, - 40.433973887169714 - ], - [ - 16.867190589747537, - 40.399218988015576 - ], - [ - 16.7854495657332, - 40.304070329675575 - ], - [ - 16.74963921235549, - 40.2493740949412 - ], - [ - 16.730955549723642, - 40.20265439443893 - ], - [ - 16.69047428068797, - 40.14966741704001 - ], - [ - 16.645322095994338, - 40.11947053744707 - ], - [ - 16.586157164326817, - 40.13428410102097 - ], - [ - 16.530884662374266, - 40.11890078500193 - ], - [ - 16.453036068074894, - 40.135993358356416 - ], - [ - 16.40944085526725, - 40.12174954722767 - ], - [ - 16.414890256868205, - 40.081866876067195 - ], - [ - 16.399320538008332, - 40.05679776848061 - ], - [ - 16.351054409542723, - 40.12402855700827 - ], - [ - 16.398542052065338, - 40.1678994952848 - ], - [ - 16.349497437656733, - 40.20664266155498 - ], - [ - 16.37596595971852, - 40.275012954972944 - ], - [ - 16.332370746910875, - 40.30464008212073 - ], - [ - 16.311351626450044, - 40.27444320252779 - ], - [ - 16.196135706886977, - 40.2664666682957 - ], - [ - 16.17355961454016, - 40.30065181500468 - ], - [ - 16.175895072369144, - 40.33939498127486 - ], - [ - 16.107388309385698, - 40.40947453202827 - ], - [ - 16.14164169087742, - 40.455054727640245 - ], - [ - 16.098046478069776, - 40.48297259745259 - ], - [ - 16.117508626644618, - 40.50063492325223 - ], - [ - 16.07624887166595, - 40.54564536641905 - ], - [ - 16.117508626644618, - 40.57869100823773 - ], - [ - 16.04900186366117, - 40.636805757643 - ], - [ - 16.056786723091108, - 40.65617734077809 - ], - [ - 16.149426550307357, - 40.70403654617067 - ], - [ - 16.15020503625035, - 40.73138466353785 - ], - [ - 16.11595165475863, - 40.768418572472584 - ], - [ - 16.12217954230258, - 40.79690619473007 - ], - [ - 16.169667184825194, - 40.80659198629762 - ], - [ - 16.24518032129558, - 40.83906787567115 - ], - [ - 16.347940465770748, - 40.75303525645354 - ], - [ - 16.381415361319476, - 40.7376519404345 - ], - [ - 16.40087750989432, - 40.708594565731865 - ], - [ - 16.43123846167107, - 40.70574580350612 - ], - [ - 16.496631280882543, - 40.75930253335019 - ], - [ - 16.537891035861207, - 40.753605008898695 - ], - [ - 16.57681533301089, - 40.76443030535654 - ], - [ - 16.633644806849432, - 40.75474451378899 - ], - [ - 16.725506148122687, - 40.714861842628515 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 3, - "NAME_1": "Basilicata", - "ID_2": 12, - "NAME_2": "Potenza", - "HASC_2": "IT.PZ", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.203142080373922, - 40.91826346554696 - ], - [ - 16.24518032129558, - 40.83906787567115 - ], - [ - 16.169667184825194, - 40.80659198629762 - ], - [ - 16.12217954230258, - 40.79690619473007 - ], - [ - 16.11595165475863, - 40.768418572472584 - ], - [ - 16.15020503625035, - 40.73138466353785 - ], - [ - 16.149426550307357, - 40.70403654617067 - ], - [ - 16.056786723091108, - 40.65617734077809 - ], - [ - 16.04900186366117, - 40.636805757643 - ], - [ - 16.117508626644618, - 40.57869100823773 - ], - [ - 16.07624887166595, - 40.54564536641905 - ], - [ - 16.117508626644618, - 40.50063492325223 - ], - [ - 16.098046478069776, - 40.48297259745259 - ], - [ - 16.14164169087742, - 40.455054727640245 - ], - [ - 16.107388309385698, - 40.40947453202827 - ], - [ - 16.175895072369144, - 40.33939498127486 - ], - [ - 16.17355961454016, - 40.30065181500468 - ], - [ - 16.196135706886977, - 40.2664666682957 - ], - [ - 16.311351626450044, - 40.27444320252779 - ], - [ - 16.332370746910875, - 40.30464008212073 - ], - [ - 16.37596595971852, - 40.275012954972944 - ], - [ - 16.349497437656733, - 40.20664266155498 - ], - [ - 16.398542052065338, - 40.1678994952848 - ], - [ - 16.351054409542723, - 40.12402855700827 - ], - [ - 16.399320538008332, - 40.05679776848061 - ], - [ - 16.399320538008332, - 40.019763859545876 - ], - [ - 16.338598634454822, - 39.93714975499917 - ], - [ - 16.217933313290803, - 39.929173220767076 - ], - [ - 16.21559785546182, - 39.89726708383869 - ], - [ - 16.159546867566277, - 39.92119668653498 - ], - [ - 16.08403373109589, - 39.897836836283844 - ], - [ - 16.054451265262127, - 39.89897634117414 - ], - [ - 16.02331182754238, - 39.924615201205874 - ], - [ - 15.979716614734734, - 39.983299703056296 - ], - [ - 15.929115028440144, - 40.002101533746234 - ], - [ - 15.89875407666339, - 39.982729950611144 - ], - [ - 15.845038546596825, - 40.00552004841713 - ], - [ - 15.820905482364022, - 40.00267128619139 - ], - [ - 15.771860867955418, - 39.95652133813426 - ], - [ - 15.756291149095546, - 39.92404544876073 - ], - [ - 15.722037767603823, - 39.97475341637905 - ], - [ - 15.644967659247449, - 40.04141445246157 - ], - [ - 15.70646804874395, - 40.11890078500193 - ], - [ - 15.713474422230892, - 40.17929454418779 - ], - [ - 15.774974811727393, - 40.21860746290312 - ], - [ - 15.806114249447141, - 40.252222857166956 - ], - [ - 15.79521544624523, - 40.28811726121138 - ], - [ - 15.750063261551595, - 40.29951231011438 - ], - [ - 15.709581992515925, - 40.33768572393941 - ], - [ - 15.711138964401911, - 40.37813814754504 - ], - [ - 15.603707904268784, - 40.43568314450516 - ], - [ - 15.578796354092983, - 40.47043804365929 - ], - [ - 15.539872056943299, - 40.48923987434923 - ], - [ - 15.54609994448725, - 40.532541060180606 - ], - [ - 15.511068077052535, - 40.58666754246983 - ], - [ - 15.452681631328009, - 40.611736650056415 - ], - [ - 15.46825135018788, - 40.6402242723139 - ], - [ - 15.50406170356559, - 40.664153875010186 - ], - [ - 15.430105538981191, - 40.693781002157976 - ], - [ - 15.382617896458576, - 40.72511738664121 - ], - [ - 15.386510326173543, - 40.792348175168875 - ], - [ - 15.335908739878953, - 40.83564936100025 - ], - [ - 15.379503952686601, - 40.841916637896894 - ], - [ - 15.384953354287557, - 40.877241289496176 - ], - [ - 15.46825135018788, - 40.89034559573462 - ], - [ - 15.527416281855402, - 40.90857767397941 - ], - [ - 15.572568466549036, - 40.99973806520337 - ], - [ - 15.543764486658269, - 41.05671330971833 - ], - [ - 15.564783607119097, - 41.090328703982166 - ], - [ - 15.618499137185662, - 41.100014495549715 - ], - [ - 15.682334984511144, - 41.08747994175642 - ], - [ - 15.75317720532357, - 41.098305238214266 - ], - [ - 15.79988636190319, - 41.09317746620792 - ], - [ - 15.806892735390136, - 41.11197929689786 - ], - [ - 15.870728582715618, - 41.14103667160049 - ], - [ - 15.922108654953202, - 41.11197929689786 - ], - [ - 15.954026578615942, - 41.11197929689786 - ], - [ - 16.038881546402255, - 41.039620736363844 - ], - [ - 16.032653658858305, - 40.999168312758215 - ], - [ - 15.977381156905754, - 40.95928564159774 - ], - [ - 16.094154048354806, - 40.9211122277727 - ], - [ - 16.12217954230258, - 40.900031387302164 - ], - [ - 16.163439297281244, - 40.929658514449955 - ], - [ - 16.203142080373922, - 40.91826346554696 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 4, - "NAME_1": "Calabria", - "ID_2": 13, - "NAME_2": "Catanzaro", - "HASC_2": "IT.CZ", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.89132365398034, - 38.928118174639046 - ], - [ - 16.803354742422055, - 38.90589782927821 - ], - [ - 16.748082240469504, - 38.88424723636252 - ], - [ - 16.604840826958664, - 38.81302818071881 - ], - [ - 16.537891035861207, - 38.72243754194 - ], - [ - 16.558910156322035, - 38.67913635610863 - ], - [ - 16.555796212550064, - 38.653497496076895 - ], - [ - 16.57292290329592, - 38.568034629304435 - ], - [ - 16.582264734611847, - 38.47060696118384 - ], - [ - 16.537891035861207, - 38.467188446512935 - ], - [ - 16.481061562022667, - 38.49339705898983 - ], - [ - 16.42033965846916, - 38.554930323065996 - ], - [ - 16.429681489785086, - 38.58455745021378 - ], - [ - 16.37129504406056, - 38.61019631024551 - ], - [ - 16.33003528908189, - 38.641532694728745 - ], - [ - 16.351054409542723, - 38.73554184817845 - ], - [ - 16.37129504406056, - 38.7429486299654 - ], - [ - 16.344826521998773, - 38.79536585491917 - ], - [ - 16.297338879476158, - 38.822144219841206 - ], - [ - 16.21559785546182, - 38.81131892338336 - ], - [ - 16.221047257062775, - 38.91159535372971 - ], - [ - 16.155654437851307, - 38.95261752978048 - ], - [ - 16.0949325342978, - 39.050045197901085 - ], - [ - 16.156432923794302, - 39.06200999924923 - ], - [ - 16.251408208839532, - 39.100183413074255 - ], - [ - 16.346383493884762, - 39.112148214422405 - ], - [ - 16.382972333205462, - 39.105880937525754 - ], - [ - 16.42501057412712, - 39.06257975169438 - ], - [ - 16.48184004796566, - 39.06030074191378 - ], - [ - 16.480283076079676, - 39.123543263325395 - ], - [ - 16.523099802944326, - 39.16342593448587 - ], - [ - 16.537112549918213, - 39.14576360868623 - ], - [ - 16.61418265827459, - 39.195332071414256 - ], - [ - 16.629752377134462, - 39.163995686931024 - ], - [ - 16.66711970239816, - 39.15715865758923 - ], - [ - 16.659334842968224, - 39.1201247486545 - ], - [ - 16.73484797943861, - 39.059730989468626 - ], - [ - 16.776886220360268, - 39.06485876147497 - ], - [ - 16.8469499552297, - 39.03978965388839 - ], - [ - 16.89521608369531, - 38.99876747783761 - ], - [ - 16.892102139923335, - 38.97540762758647 - ], - [ - 16.920906119814102, - 38.953187282225635 - ], - [ - 16.89132365398034, - 38.928118174639046 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 4, - "NAME_1": "Calabria", - "ID_2": 14, - "NAME_2": "Cosenza", - "HASC_2": "IT.CS", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.645322095994338, - 40.11947053744707 - ], - [ - 16.60561931290166, - 40.079587866286595 - ], - [ - 16.59939142535771, - 40.03628668045522 - ], - [ - 16.629752377134462, - 39.96620712970181 - ], - [ - 16.60406234101567, - 39.92974297321222 - ], - [ - 16.566695015751975, - 39.89954609361929 - ], - [ - 16.493517337110568, - 39.812943721956536 - ], - [ - 16.491181879281587, - 39.750270952990064 - ], - [ - 16.528549204545282, - 39.72463209295833 - ], - [ - 16.524656774830316, - 39.659680314211265 - ], - [ - 16.613404172331595, - 39.62207665283138 - ], - [ - 16.781557136018233, - 39.61466987104444 - ], - [ - 16.815810517509952, - 39.58960076345785 - ], - [ - 16.83838660985677, - 39.55598536919402 - ], - [ - 16.871083019462507, - 39.53604403361378 - ], - [ - 16.97540013582366, - 39.49103359044695 - ], - [ - 17.023666264289268, - 39.48305705621486 - ], - [ - 16.958273445077797, - 39.43804661304803 - ], - [ - 16.957494959134806, - 39.39816394188755 - ], - [ - 16.83605115202779, - 39.34688622182408 - ], - [ - 16.765208931215366, - 39.36283929028827 - ], - [ - 16.730177063780648, - 39.35144424138527 - ], - [ - 16.70682248549084, - 39.32409612401809 - ], - [ - 16.76209498744339, - 39.29275973953486 - ], - [ - 16.74730375452651, - 39.24660979147773 - ], - [ - 16.779221678189252, - 39.197041328749705 - ], - [ - 16.748082240469504, - 39.19077405185306 - ], - [ - 16.681132449372047, - 39.206727120317254 - ], - [ - 16.61418265827459, - 39.195332071414256 - ], - [ - 16.537112549918213, - 39.14576360868623 - ], - [ - 16.523099802944326, - 39.16342593448587 - ], - [ - 16.480283076079676, - 39.123543263325395 - ], - [ - 16.48184004796566, - 39.06030074191378 - ], - [ - 16.42501057412712, - 39.06257975169438 - ], - [ - 16.382972333205462, - 39.105880937525754 - ], - [ - 16.346383493884762, - 39.112148214422405 - ], - [ - 16.251408208839532, - 39.100183413074255 - ], - [ - 16.156432923794302, - 39.06200999924923 - ], - [ - 16.0949325342978, - 39.050045197901085 - ], - [ - 16.066907040350028, - 39.13607781711869 - ], - [ - 16.056786723091108, - 39.27167889906432 - ], - [ - 16.03576760263028, - 39.352013993830425 - ], - [ - 15.995286333594606, - 39.44374413749953 - ], - [ - 15.923665626839188, - 39.52749774693653 - ], - [ - 15.874621012430588, - 39.55313660696827 - ], - [ - 15.831025799622939, - 39.66993585822396 - ], - [ - 15.814677594820072, - 39.67791239245606 - ], - [ - 15.80767122133313, - 39.73773639919678 - ], - [ - 15.785873614929304, - 39.816931989072586 - ], - [ - 15.779645727385358, - 39.894418321612946 - ], - [ - 15.756291149095546, - 39.92404544876073 - ], - [ - 15.771860867955418, - 39.95652133813426 - ], - [ - 15.820905482364022, - 40.00267128619139 - ], - [ - 15.845038546596825, - 40.00552004841713 - ], - [ - 15.89875407666339, - 39.982729950611144 - ], - [ - 15.929115028440144, - 40.002101533746234 - ], - [ - 15.979716614734734, - 39.983299703056296 - ], - [ - 16.02331182754238, - 39.924615201205874 - ], - [ - 16.054451265262127, - 39.89897634117414 - ], - [ - 16.08403373109589, - 39.897836836283844 - ], - [ - 16.159546867566277, - 39.92119668653498 - ], - [ - 16.21559785546182, - 39.89726708383869 - ], - [ - 16.217933313290803, - 39.929173220767076 - ], - [ - 16.338598634454822, - 39.93714975499917 - ], - [ - 16.399320538008332, - 40.019763859545876 - ], - [ - 16.399320538008332, - 40.05679776848061 - ], - [ - 16.414890256868205, - 40.081866876067195 - ], - [ - 16.40944085526725, - 40.12174954722767 - ], - [ - 16.453036068074894, - 40.135993358356416 - ], - [ - 16.530884662374266, - 40.11890078500193 - ], - [ - 16.586157164326817, - 40.13428410102097 - ], - [ - 16.645322095994338, - 40.11947053744707 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 4, - "NAME_1": "Calabria", - "ID_2": 15, - "NAME_2": "Crotone", - "HASC_2": "IT.KR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.023666264289268, - 39.48305705621486 - ], - [ - 17.052470244180036, - 39.439186117938334 - ], - [ - 17.118641549334498, - 39.4055707236745 - ], - [ - 17.153673416769216, - 39.40158245655845 - ], - [ - 17.111635175847557, - 39.317259094676295 - ], - [ - 17.109299718018573, - 39.24660979147773 - ], - [ - 17.147445529225266, - 39.2061573678721 - ], - [ - 17.116306091505518, - 39.142914846460485 - ], - [ - 17.110856689904562, - 39.09619514595821 - ], - [ - 17.134989754137365, - 39.05745197968803 - ], - [ - 17.173135565344058, - 39.03352237699174 - ], - [ - 17.159901304313163, - 38.97939589470252 - ], - [ - 17.169243135629088, - 38.95261752978048 - ], - [ - 17.101514858588637, - 38.90532807683306 - ], - [ - 17.04312841286411, - 38.9195718879618 - ], - [ - 17.021330806460288, - 38.90532807683306 - ], - [ - 16.98396348119659, - 38.937803966206594 - ], - [ - 16.89132365398034, - 38.928118174639046 - ], - [ - 16.920906119814102, - 38.953187282225635 - ], - [ - 16.892102139923335, - 38.97540762758647 - ], - [ - 16.89521608369531, - 38.99876747783761 - ], - [ - 16.8469499552297, - 39.03978965388839 - ], - [ - 16.776886220360268, - 39.06485876147497 - ], - [ - 16.73484797943861, - 39.059730989468626 - ], - [ - 16.659334842968224, - 39.1201247486545 - ], - [ - 16.66711970239816, - 39.15715865758923 - ], - [ - 16.629752377134462, - 39.163995686931024 - ], - [ - 16.61418265827459, - 39.195332071414256 - ], - [ - 16.681132449372047, - 39.206727120317254 - ], - [ - 16.748082240469504, - 39.19077405185306 - ], - [ - 16.779221678189252, - 39.197041328749705 - ], - [ - 16.74730375452651, - 39.24660979147773 - ], - [ - 16.76209498744339, - 39.29275973953486 - ], - [ - 16.70682248549084, - 39.32409612401809 - ], - [ - 16.730177063780648, - 39.35144424138527 - ], - [ - 16.765208931215366, - 39.36283929028827 - ], - [ - 16.83605115202779, - 39.34688622182408 - ], - [ - 16.957494959134806, - 39.39816394188755 - ], - [ - 16.958273445077797, - 39.43804661304803 - ], - [ - 17.023666264289268, - 39.48305705621486 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 4, - "NAME_1": "Calabria", - "ID_2": 16, - "NAME_2": "Reggio Di Calabria", - "HASC_2": "IT.RC", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Reggio Calabria|Reggio de Calabre" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.42033965846916, - 38.554930323065996 - ], - [ - 16.481061562022667, - 38.49339705898983 - ], - [ - 16.537891035861207, - 38.467188446512935 - ], - [ - 16.582264734611847, - 38.47060696118384 - ], - [ - 16.567473501694966, - 38.42331750823641 - ], - [ - 16.49818825276853, - 38.360644739269944 - ], - [ - 16.452257582131903, - 38.33443612679306 - ], - [ - 16.323807401537945, - 38.29398370318743 - ], - [ - 16.16032535350927, - 38.12761598920372 - ], - [ - 16.144755634649396, - 38.03075807352827 - ], - [ - 16.111280739100668, - 37.973782829013295 - ], - [ - 16.063793096578053, - 37.92421436628527 - ], - [ - 15.996064819537601, - 37.915668079608025 - ], - [ - 15.922887140896194, - 37.92934213829162 - ], - [ - 15.764076008525482, - 37.91680758449833 - ], - [ - 15.678442554796177, - 37.95384149343306 - ], - [ - 15.638739771703499, - 38.00170069882563 - ], - [ - 15.65430949056337, - 38.03075807352827 - ], - [ - 15.650417060848405, - 38.06722223001785 - ], - [ - 15.630954912273562, - 38.10311663406228 - ], - [ - 15.656644948392355, - 38.13559252343581 - ], - [ - 15.633290370102543, - 38.19142826306048 - ], - [ - 15.635625827931523, - 38.23245043911126 - ], - [ - 15.7002401612, - 38.25296152713665 - ], - [ - 15.7492847756086, - 38.2569497942527 - ], - [ - 15.79521544624523, - 38.28030964450384 - ], - [ - 15.829468827736953, - 38.324180582780365 - ], - [ - 15.882405871860524, - 38.430724290023356 - ], - [ - 15.90264650637836, - 38.4392705767006 - ], - [ - 15.919773197124218, - 38.507640870118564 - ], - [ - 15.961032952102887, - 38.52644270080851 - ], - [ - 16.005406650853526, - 38.517896414131265 - ], - [ - 16.080919787323914, - 38.56290685729809 - ], - [ - 16.102717393727737, - 38.54182601682755 - ], - [ - 16.136192289276465, - 38.5366982448212 - ], - [ - 16.19457873500099, - 38.498524830996175 - ], - [ - 16.23194606026469, - 38.50194334566707 - ], - [ - 16.254522152611504, - 38.48542052475773 - ], - [ - 16.2677564136424, - 38.4461076060424 - ], - [ - 16.30200979513412, - 38.43186379491366 - ], - [ - 16.353389867371703, - 38.43186379491366 - ], - [ - 16.392314164521387, - 38.4495261207133 - ], - [ - 16.389200220749412, - 38.477443990525636 - ], - [ - 16.355725325200684, - 38.496815573660726 - ], - [ - 16.350275923599728, - 38.53840750215665 - ], - [ - 16.393871136407377, - 38.57487165864623 - ], - [ - 16.42033965846916, - 38.554930323065996 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 4, - "NAME_1": "Calabria", - "ID_2": 17, - "NAME_2": "Vibo Valentia", - "HASC_2": "IT.VV", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.42033965846916, - 38.554930323065996 - ], - [ - 16.393871136407377, - 38.57487165864623 - ], - [ - 16.350275923599728, - 38.53840750215665 - ], - [ - 16.355725325200684, - 38.496815573660726 - ], - [ - 16.389200220749412, - 38.477443990525636 - ], - [ - 16.392314164521387, - 38.4495261207133 - ], - [ - 16.353389867371703, - 38.43186379491366 - ], - [ - 16.30200979513412, - 38.43186379491366 - ], - [ - 16.2677564136424, - 38.4461076060424 - ], - [ - 16.254522152611504, - 38.48542052475773 - ], - [ - 16.23194606026469, - 38.50194334566707 - ], - [ - 16.19457873500099, - 38.498524830996175 - ], - [ - 16.136192289276465, - 38.5366982448212 - ], - [ - 16.102717393727737, - 38.54182601682755 - ], - [ - 16.080919787323914, - 38.56290685729809 - ], - [ - 16.005406650853526, - 38.517896414131265 - ], - [ - 15.961032952102887, - 38.52644270080851 - ], - [ - 15.919773197124218, - 38.507640870118564 - ], - [ - 15.932228972212119, - 38.54068651193725 - ], - [ - 15.828690341793958, - 38.626149378709705 - ], - [ - 15.852823406026761, - 38.662613535199284 - ], - [ - 15.946241719186006, - 38.69110115745677 - ], - [ - 15.985944502278684, - 38.72357704683031 - ], - [ - 16.04199549017423, - 38.72756531394635 - ], - [ - 16.100381935898756, - 38.71161224548216 - ], - [ - 16.134635317390476, - 38.71730976993366 - ], - [ - 16.185236903685066, - 38.74978565930719 - ], - [ - 16.21559785546182, - 38.81131892338336 - ], - [ - 16.297338879476158, - 38.822144219841206 - ], - [ - 16.344826521998773, - 38.79536585491917 - ], - [ - 16.37129504406056, - 38.7429486299654 - ], - [ - 16.351054409542723, - 38.73554184817845 - ], - [ - 16.33003528908189, - 38.641532694728745 - ], - [ - 16.37129504406056, - 38.61019631024551 - ], - [ - 16.429681489785086, - 38.58455745021378 - ], - [ - 16.42033965846916, - 38.554930323065996 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 5, - "NAME_1": "Campania", - "ID_2": 18, - "NAME_2": "Avellino", - "HASC_2": "IT.AV", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.543764486658269, - 41.05671330971833 - ], - [ - 15.572568466549036, - 40.99973806520337 - ], - [ - 15.527416281855402, - 40.90857767397941 - ], - [ - 15.46825135018788, - 40.89034559573462 - ], - [ - 15.384953354287557, - 40.877241289496176 - ], - [ - 15.379503952686601, - 40.841916637896894 - ], - [ - 15.335908739878953, - 40.83564936100025 - ], - [ - 15.296205956786277, - 40.83906787567115 - ], - [ - 15.281414723869396, - 40.80032470940097 - ], - [ - 15.240154968890732, - 40.77525560181438 - ], - [ - 15.247939828320668, - 40.71885010974456 - ], - [ - 15.167755776192319, - 40.70916431817702 - ], - [ - 15.140508768187537, - 40.75759327601474 - ], - [ - 15.02918527833944, - 40.78266238360133 - ], - [ - 14.946665768382111, - 40.78892966049797 - ], - [ - 14.919418760377333, - 40.80203396673642 - ], - [ - 14.835342278534014, - 40.79462718494947 - ], - [ - 14.813544672130192, - 40.805452481407315 - ], - [ - 14.745037909146745, - 40.80488272896217 - ], - [ - 14.734917591887829, - 40.8407771330066 - ], - [ - 14.687429949365214, - 40.842486390342046 - ], - [ - 14.667967800790372, - 40.82368455965211 - ], - [ - 14.60646741129387, - 40.8487536672387 - ], - [ - 14.577663431403103, - 40.88179930905738 - ], - [ - 14.586226776776034, - 40.9347862864563 - ], - [ - 14.572992515745142, - 41.01056336166121 - ], - [ - 14.595568608091957, - 41.05785281460864 - ], - [ - 14.639163820899604, - 41.04588801326049 - ], - [ - 14.663296885132407, - 41.05671330971833 - ], - [ - 14.72713273245789, - 41.04873677548624 - ], - [ - 14.73725304971681, - 41.01797014344815 - ], - [ - 14.770727945265538, - 41.01227261899666 - ], - [ - 14.77773431875248, - 41.041899746144445 - ], - [ - 14.829892876933059, - 41.036202221692946 - ], - [ - 14.869595660025734, - 41.05842256705378 - ], - [ - 14.97624823421587, - 41.094316971098216 - ], - [ - 15.012058587593579, - 41.11881632623965 - ], - [ - 14.996488868733707, - 41.15129221561318 - ], - [ - 14.963013973184978, - 41.17636132319977 - ], - [ - 15.000381298448676, - 41.20086067834121 - ], - [ - 14.981697635816825, - 41.262393942417376 - ], - [ - 15.009723129764598, - 41.272079733984924 - ], - [ - 15.12416056338467, - 41.25726617041103 - ], - [ - 15.149850599503463, - 41.281195773107314 - ], - [ - 15.202009157684039, - 41.287463050003964 - ], - [ - 15.251053772092643, - 41.27150998153977 - ], - [ - 15.246382856434682, - 41.23504582505019 - ], - [ - 15.258060145579584, - 41.19858166856061 - ], - [ - 15.21057250305697, - 41.16895454141282 - ], - [ - 15.268180462838504, - 41.107421277336655 - ], - [ - 15.314889619418125, - 41.10514226755606 - ], - [ - 15.36860514948469, - 41.08577068442097 - ], - [ - 15.397409129375454, - 41.10799102978181 - ], - [ - 15.447232229727053, - 41.07893365507917 - ], - [ - 15.543764486658269, - 41.05671330971833 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 5, - "NAME_1": "Campania", - "ID_2": 19, - "NAME_2": "Benevento", - "HASC_2": "IT.BN", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Bénévent" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.149850599503463, - 41.281195773107314 - ], - [ - 15.12416056338467, - 41.25726617041103 - ], - [ - 15.009723129764598, - 41.272079733984924 - ], - [ - 14.981697635816825, - 41.262393942417376 - ], - [ - 15.000381298448676, - 41.20086067834121 - ], - [ - 14.963013973184978, - 41.17636132319977 - ], - [ - 14.996488868733707, - 41.15129221561318 - ], - [ - 15.012058587593579, - 41.11881632623965 - ], - [ - 14.97624823421587, - 41.094316971098216 - ], - [ - 14.869595660025734, - 41.05842256705378 - ], - [ - 14.829892876933059, - 41.036202221692946 - ], - [ - 14.77773431875248, - 41.041899746144445 - ], - [ - 14.770727945265538, - 41.01227261899666 - ], - [ - 14.73725304971681, - 41.01797014344815 - ], - [ - 14.72713273245789, - 41.04873677548624 - ], - [ - 14.663296885132407, - 41.05671330971833 - ], - [ - 14.639163820899604, - 41.04588801326049 - ], - [ - 14.595568608091957, - 41.05785281460864 - ], - [ - 14.572992515745142, - 41.01056336166121 - ], - [ - 14.531732760766475, - 41.014551628777255 - ], - [ - 14.508378182476665, - 41.05671330971833 - ], - [ - 14.474903286927937, - 41.043609003479894 - ], - [ - 14.421187756861372, - 41.053294795047435 - ], - [ - 14.437535961664238, - 41.09716573332396 - ], - [ - 14.397833178571561, - 41.12223484091055 - ], - [ - 14.467896913440992, - 41.171803303638576 - ], - [ - 14.428972616291308, - 41.2247902810375 - ], - [ - 14.423523214690352, - 41.25213839840468 - ], - [ - 14.4546626524101, - 41.29486983179091 - ], - [ - 14.489694519844816, - 41.30170686113271 - ], - [ - 14.45699811023908, - 41.37292591677642 - ], - [ - 14.504485752761695, - 41.384890718124566 - ], - [ - 14.604131953464888, - 41.364949382544324 - ], - [ - 14.672638716448333, - 41.40768081593055 - ], - [ - 14.717790901141967, - 41.401983291479056 - ], - [ - 14.765278543664582, - 41.41850611238839 - ], - [ - 14.790968579783375, - 41.45326101154253 - ], - [ - 14.856361398994842, - 41.42591289417534 - ], - [ - 14.88516537888561, - 41.44585422975558 - ], - [ - 14.952893655926061, - 41.45895853599402 - ], - [ - 15.008166157878613, - 41.48744615825151 - ], - [ - 15.03307770805441, - 41.453830763987675 - ], - [ - 15.100027499151867, - 41.43502893329774 - ], - [ - 15.082122322463011, - 41.38887898524061 - ], - [ - 15.059546230116194, - 41.37292591677642 - ], - [ - 15.072780491147089, - 41.33361299806109 - ], - [ - 15.129609964985626, - 41.310822900255104 - ], - [ - 15.149850599503463, - 41.281195773107314 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 5, - "NAME_1": "Campania", - "ID_2": 20, - "NAME_2": "Caserta", - "HASC_2": "IT.CE", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Caserte" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.383041945654682, - 41.44414497242013 - ], - [ - 14.456219624296088, - 41.42876165640109 - ], - [ - 14.504485752761695, - 41.384890718124566 - ], - [ - 14.45699811023908, - 41.37292591677642 - ], - [ - 14.489694519844816, - 41.30170686113271 - ], - [ - 14.4546626524101, - 41.29486983179091 - ], - [ - 14.423523214690352, - 41.25213839840468 - ], - [ - 14.428972616291308, - 41.2247902810375 - ], - [ - 14.467896913440992, - 41.171803303638576 - ], - [ - 14.397833178571561, - 41.12223484091055 - ], - [ - 14.437535961664238, - 41.09716573332396 - ], - [ - 14.421187756861372, - 41.053294795047435 - ], - [ - 14.474903286927937, - 41.043609003479894 - ], - [ - 14.508378182476665, - 41.05671330971833 - ], - [ - 14.531732760766475, - 41.014551628777255 - ], - [ - 14.521612443507557, - 40.98834301630037 - ], - [ - 14.478017230699912, - 40.98264549184887 - ], - [ - 14.405618038001498, - 40.98720351141007 - ], - [ - 14.408731981773473, - 41.00258682742911 - ], - [ - 14.298186977868369, - 41.00600534210001 - ], - [ - 14.28573120278047, - 40.96156465137833 - ], - [ - 14.214888981968045, - 40.95016960247534 - ], - [ - 14.157281022186512, - 40.952448612255935 - ], - [ - 14.140932817383645, - 40.98036648206828 - ], - [ - 14.09344517486103, - 40.96099489893319 - ], - [ - 14.018710524333635, - 40.94903009758504 - ], - [ - 14.032723271307521, - 40.89946163485702 - ], - [ - 13.97745076935497, - 40.977517719842524 - ], - [ - 13.921399781459424, - 41.02480717278995 - ], - [ - 13.895709745340632, - 41.090328703982166 - ], - [ - 13.811633263497313, - 41.187186619657616 - ], - [ - 13.762588649088713, - 41.223650776147196 - ], - [ - 13.774265938233619, - 41.24359211172744 - ], - [ - 13.819418122927251, - 41.247010626398335 - ], - [ - 13.828759954243175, - 41.27834701088157 - ], - [ - 13.883253970252735, - 41.29202106956516 - ], - [ - 13.895709745340632, - 41.31139265270025 - ], - [ - 13.874690624879804, - 41.339310522512584 - ], - [ - 13.886367914024708, - 41.386599975460015 - ], - [ - 13.863791821677891, - 41.41109933060145 - ], - [ - 13.979007741240956, - 41.46351655555522 - ], - [ - 14.007033235188729, - 41.453830763987675 - ], - [ - 14.043622074509432, - 41.394006757246956 - ], - [ - 14.108236407777909, - 41.417366607498096 - ], - [ - 14.079432427887143, - 41.448133239536176 - ], - [ - 14.126141584466765, - 41.50852699872205 - ], - [ - 14.168179825388423, - 41.49542269248361 - ], - [ - 14.242135989972823, - 41.4977017022642 - ], - [ - 14.278724829293527, - 41.486876405806356 - ], - [ - 14.32776944370213, - 41.45440051643283 - ], - [ - 14.383041945654682, - 41.44414497242013 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 5, - "NAME_1": "Campania", - "ID_2": 21, - "NAME_2": "Napoli", - "HASC_2": "IT.NA", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Napels|Nápoles|Neapel" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 13.871576681107829, - 40.76158154313079 - ], - [ - 13.954096191065158, - 40.7422099599957 - ], - [ - 13.965773480210064, - 40.71201308040276 - ], - [ - 13.922956753345412, - 40.697199516828874 - ], - [ - 13.872355167050822, - 40.69662976438372 - ], - [ - 13.853671504418973, - 40.73708218798935 - ], - [ - 13.871576681107829, - 40.76158154313079 - ] - ] - ], - [ - [ - [ - 14.60646741129387, - 40.8487536672387 - ], - [ - 14.565986142258197, - 40.8339401036648 - ], - [ - 14.589340720548009, - 40.80659198629762 - ], - [ - 14.545745507740362, - 40.77924386893043 - ], - [ - 14.50759969653367, - 40.77411609692408 - ], - [ - 14.515384555963607, - 40.73936119776995 - ], - [ - 14.54341004991138, - 40.7410704551054 - ], - [ - 14.580777375175078, - 40.71030382306731 - ], - [ - 14.55586582499928, - 40.66871189457139 - ], - [ - 14.576884945460108, - 40.62825947096576 - ], - [ - 14.471010857212967, - 40.62085268917881 - ], - [ - 14.323098528044166, - 40.57014472156049 - ], - [ - 14.339446732847033, - 40.62484095629486 - ], - [ - 14.400168636400542, - 40.63794526253331 - ], - [ - 14.480352688528892, - 40.70916431817702 - ], - [ - 14.453884166467105, - 40.7501864942278 - ], - [ - 14.414181383374428, - 40.751325999118095 - ], - [ - 14.281060287122507, - 40.84134688545175 - ], - [ - 14.232015672713906, - 40.83223084632935 - ], - [ - 14.186085002077277, - 40.79177842272372 - ], - [ - 14.161951937844474, - 40.81570802542001 - ], - [ - 14.082546371659117, - 40.8282425792133 - ], - [ - 14.088774259203067, - 40.78722040316252 - ], - [ - 14.046736018281408, - 40.78949941294312 - ], - [ - 14.046736018281408, - 40.857869706361086 - ], - [ - 14.032723271307521, - 40.89946163485702 - ], - [ - 14.018710524333635, - 40.94903009758504 - ], - [ - 14.09344517486103, - 40.96099489893319 - ], - [ - 14.140932817383645, - 40.98036648206828 - ], - [ - 14.157281022186512, - 40.952448612255935 - ], - [ - 14.214888981968045, - 40.95016960247534 - ], - [ - 14.28573120278047, - 40.96156465137833 - ], - [ - 14.298186977868369, - 41.00600534210001 - ], - [ - 14.408731981773473, - 41.00258682742911 - ], - [ - 14.405618038001498, - 40.98720351141007 - ], - [ - 14.478017230699912, - 40.98264549184887 - ], - [ - 14.521612443507557, - 40.98834301630037 - ], - [ - 14.531732760766475, - 41.014551628777255 - ], - [ - 14.572992515745142, - 41.01056336166121 - ], - [ - 14.586226776776034, - 40.9347862864563 - ], - [ - 14.577663431403103, - 40.88179930905738 - ], - [ - 14.60646741129387, - 40.8487536672387 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 5, - "NAME_1": "Campania", - "ID_2": 22, - "NAME_2": "Salerno", - "HASC_2": "IT.SA", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Salerne" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.335908739878953, - 40.83564936100025 - ], - [ - 15.386510326173543, - 40.792348175168875 - ], - [ - 15.382617896458576, - 40.72511738664121 - ], - [ - 15.430105538981191, - 40.693781002157976 - ], - [ - 15.50406170356559, - 40.664153875010186 - ], - [ - 15.46825135018788, - 40.6402242723139 - ], - [ - 15.452681631328009, - 40.611736650056415 - ], - [ - 15.511068077052535, - 40.58666754246983 - ], - [ - 15.54609994448725, - 40.532541060180606 - ], - [ - 15.539872056943299, - 40.48923987434923 - ], - [ - 15.578796354092983, - 40.47043804365929 - ], - [ - 15.603707904268784, - 40.43568314450516 - ], - [ - 15.711138964401911, - 40.37813814754504 - ], - [ - 15.709581992515925, - 40.33768572393941 - ], - [ - 15.750063261551595, - 40.29951231011438 - ], - [ - 15.79521544624523, - 40.28811726121138 - ], - [ - 15.806114249447141, - 40.252222857166956 - ], - [ - 15.774974811727393, - 40.21860746290312 - ], - [ - 15.713474422230892, - 40.17929454418779 - ], - [ - 15.70646804874395, - 40.11890078500193 - ], - [ - 15.644967659247449, - 40.04141445246157 - ], - [ - 15.618499137185662, - 40.068192817383604 - ], - [ - 15.574903924378017, - 40.0784483613963 - ], - [ - 15.503283217622599, - 40.0636347978224 - ], - [ - 15.46124497670094, - 40.03400767067462 - ], - [ - 15.42154219360826, - 39.99184598973354 - ], - [ - 15.343693599308892, - 40.004380543526835 - ], - [ - 15.32033902101908, - 40.029449651113424 - ], - [ - 15.284528667641371, - 40.03400767067462 - ], - [ - 15.274408350382451, - 40.07104157960935 - ], - [ - 15.204344615513023, - 40.12402855700827 - ], - [ - 15.18099003722321, - 40.12687731923402 - ], - [ - 15.117932675840724, - 40.1770155344072 - ], - [ - 15.06499563171715, - 40.1644809806139 - ], - [ - 15.02918527833944, - 40.17758528685234 - ], - [ - 14.992596439018737, - 40.217467958012826 - ], - [ - 14.916304816605358, - 40.236839541147916 - ], - [ - 14.904627527460452, - 40.25336236205725 - ], - [ - 14.945108796496122, - 40.28014072697929 - ], - [ - 14.94433031055313, - 40.33597646660396 - ], - [ - 14.998824326562687, - 40.3581968119648 - ], - [ - 14.9848115795888, - 40.424288095602165 - ], - [ - 14.937323937066186, - 40.48980962679438 - ], - [ - 14.908519957175422, - 40.54564536641905 - ], - [ - 14.87504506162669, - 40.590655809585876 - ], - [ - 14.824443475332103, - 40.6402242723139 - ], - [ - 14.759050656120632, - 40.67725818124863 - ], - [ - 14.719347873027953, - 40.66643288479079 - ], - [ - 14.69287935096617, - 40.63395699541726 - ], - [ - 14.637606849013618, - 40.648770558991146 - ], - [ - 14.576106459517115, - 40.61686442206276 - ], - [ - 14.523947901336538, - 40.60774838294037 - ], - [ - 14.471010857212967, - 40.62085268917881 - ], - [ - 14.576884945460108, - 40.62825947096576 - ], - [ - 14.55586582499928, - 40.66871189457139 - ], - [ - 14.580777375175078, - 40.71030382306731 - ], - [ - 14.54341004991138, - 40.7410704551054 - ], - [ - 14.515384555963607, - 40.73936119776995 - ], - [ - 14.50759969653367, - 40.77411609692408 - ], - [ - 14.545745507740362, - 40.77924386893043 - ], - [ - 14.589340720548009, - 40.80659198629762 - ], - [ - 14.565986142258197, - 40.8339401036648 - ], - [ - 14.60646741129387, - 40.8487536672387 - ], - [ - 14.667967800790372, - 40.82368455965211 - ], - [ - 14.687429949365214, - 40.842486390342046 - ], - [ - 14.734917591887829, - 40.8407771330066 - ], - [ - 14.745037909146745, - 40.80488272896217 - ], - [ - 14.813544672130192, - 40.805452481407315 - ], - [ - 14.835342278534014, - 40.79462718494947 - ], - [ - 14.919418760377333, - 40.80203396673642 - ], - [ - 14.946665768382111, - 40.78892966049797 - ], - [ - 15.02918527833944, - 40.78266238360133 - ], - [ - 15.140508768187537, - 40.75759327601474 - ], - [ - 15.167755776192319, - 40.70916431817702 - ], - [ - 15.247939828320668, - 40.71885010974456 - ], - [ - 15.240154968890732, - 40.77525560181438 - ], - [ - 15.281414723869396, - 40.80032470940097 - ], - [ - 15.296205956786277, - 40.83906787567115 - ], - [ - 15.335908739878953, - 40.83564936100025 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 6, - "NAME_1": "Emilia-Romagna", - "ID_2": 23, - "NAME_2": "Bologna", - "HASC_2": "IT.BO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Bologne|Bolonha|Bolonia" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.29400972385573, - 44.80397514146792 - ], - [ - 11.247300567276108, - 44.759534450746244 - ], - [ - 11.273769089337893, - 44.75155791651415 - ], - [ - 11.254306940763051, - 44.717372769805166 - ], - [ - 11.276104547166874, - 44.70654747334733 - ], - [ - 11.360181029010192, - 44.77434801432014 - ], - [ - 11.452820856226442, - 44.761813460526845 - ], - [ - 11.593726811908299, - 44.71281475024397 - ], - [ - 11.674689349979642, - 44.63304940792301 - ], - [ - 11.72451245033124, - 44.63703767503906 - ], - [ - 11.7291833659892, - 44.655269753283854 - ], - [ - 11.801582558687613, - 44.63532841770361 - ], - [ - 11.786791325770734, - 44.585759954975586 - ], - [ - 11.789905269542707, - 44.55556307538265 - ], - [ - 11.77978495228379, - 44.50428535531918 - ], - [ - 11.800025586801627, - 44.46155392193295 - ], - [ - 11.782120410112771, - 44.43705456679152 - ], - [ - 11.838171398008317, - 44.41483422143068 - ], - [ - 11.800025586801627, - 44.3795095698314 - ], - [ - 11.786791325770734, - 44.34874293779331 - ], - [ - 11.709721217414359, - 44.29119794083319 - ], - [ - 11.698822414212447, - 44.30999977152313 - ], - [ - 11.641214454430914, - 44.27467511992385 - ], - [ - 11.627201707457028, - 44.24789675500182 - ], - [ - 11.579714064934413, - 44.23308319142792 - ], - [ - 11.550131599100652, - 44.20573507406074 - ], - [ - 11.525998534867849, - 44.158445621113316 - ], - [ - 11.448928426511474, - 44.200607302054394 - ], - [ - 11.421681418506694, - 44.23992022076972 - ], - [ - 11.381200149471024, - 44.20117705449954 - ], - [ - 11.343832824207325, - 44.206304826505885 - ], - [ - 11.28155394876783, - 44.156166611332715 - ], - [ - 11.235623278131204, - 44.15958512600361 - ], - [ - 11.200591410696486, - 44.14135304775882 - ], - [ - 11.26442725802197, - 44.10545864371439 - ], - [ - 11.203705354468461, - 44.10147037659834 - ], - [ - 11.160110141660816, - 44.113435177946485 - ], - [ - 11.050343623698705, - 44.09121483258565 - ], - [ - 11.00285598117609, - 44.11286542550134 - ], - [ - 10.946026507337551, - 44.082668545908405 - ], - [ - 10.849494250406334, - 44.09919136681774 - ], - [ - 10.816019354857605, - 44.11685369261738 - ], - [ - 10.806677523541682, - 44.14192280020397 - ], - [ - 10.823804214287541, - 44.1835147286999 - ], - [ - 10.856500623893277, - 44.208583836286486 - ], - [ - 10.90788069613086, - 44.206304826505885 - ], - [ - 10.95848228242545, - 44.22681591453127 - ], - [ - 10.967824113741376, - 44.303162742181335 - ], - [ - 11.012976298435008, - 44.30031397995559 - ], - [ - 11.041001792382781, - 44.33278986932912 - ], - [ - 11.023096615693927, - 44.3738120453799 - ], - [ - 11.04878665181272, - 44.417113231211275 - ], - [ - 10.997406579575134, - 44.43021753744972 - ], - [ - 11.04878665181272, - 44.4666816939393 - ], - [ - 11.060463940957623, - 44.52308718600912 - ], - [ - 11.108730069423231, - 44.54587728381511 - ], - [ - 11.15076831034489, - 44.58462045008529 - ], - [ - 11.128970703941068, - 44.632479655477866 - ], - [ - 11.079147603589472, - 44.647862971496906 - ], - [ - 11.118071900739157, - 44.71110549290852 - ], - [ - 11.130527675827055, - 44.78403380588769 - ], - [ - 11.209154756069417, - 44.80511464635822 - ], - [ - 11.29400972385573, - 44.80397514146792 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 6, - "NAME_1": "Emilia-Romagna", - "ID_2": 24, - "NAME_2": "Ferrara", - "HASC_2": "IT.FE", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Ferrare" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.39868127696377, - 44.79258009256493 - ], - [ - 12.375326698673963, - 44.79941712190673 - ], - [ - 12.309155393519497, - 44.841578802847806 - ], - [ - 12.25699683533892, - 44.78004553877164 - ], - [ - 12.240648630536054, - 44.68717589021224 - ], - [ - 12.270231096369812, - 44.62963089325211 - ], - [ - 12.238313172707073, - 44.62165435902002 - ], - [ - 12.155015176806748, - 44.54929579848601 - ], - [ - 12.080280526279353, - 44.56240010472445 - ], - [ - 12.028900454041771, - 44.56126059983415 - ], - [ - 12.000874960093999, - 44.601143270994626 - ], - [ - 11.875538723272014, - 44.578353173188646 - ], - [ - 11.861525976298129, - 44.560690847389 - ], - [ - 11.789905269542707, - 44.55556307538265 - ], - [ - 11.786791325770734, - 44.585759954975586 - ], - [ - 11.801582558687613, - 44.63532841770361 - ], - [ - 11.7291833659892, - 44.655269753283854 - ], - [ - 11.72451245033124, - 44.63703767503906 - ], - [ - 11.674689349979642, - 44.63304940792301 - ], - [ - 11.593726811908299, - 44.71281475024397 - ], - [ - 11.452820856226442, - 44.761813460526845 - ], - [ - 11.360181029010192, - 44.77434801432014 - ], - [ - 11.276104547166874, - 44.70654747334733 - ], - [ - 11.254306940763051, - 44.717372769805166 - ], - [ - 11.273769089337893, - 44.75155791651415 - ], - [ - 11.247300567276108, - 44.759534450746244 - ], - [ - 11.29400972385573, - 44.80397514146792 - ], - [ - 11.312693386487577, - 44.82847449660936 - ], - [ - 11.369522860326118, - 44.8438578126284 - ], - [ - 11.348503739865286, - 44.87291518733104 - ], - [ - 11.235623278131204, - 44.907100334040024 - ], - [ - 11.261313314249994, - 44.933878698962054 - ], - [ - 11.247300567276108, - 44.95211077720685 - ], - [ - 11.327484619404458, - 44.96293607366469 - ], - [ - 11.427909306050644, - 44.95097127231655 - ], - [ - 11.46527663131434, - 44.93672746118781 - ], - [ - 11.53300490835479, - 44.937866966078104 - ], - [ - 11.62564473557104, - 44.89000776068553 - ], - [ - 11.670796920264674, - 44.915076868272116 - ], - [ - 11.745531570792068, - 44.937866966078104 - ], - [ - 11.747867028621048, - 44.95894780654864 - ], - [ - 11.801582558687613, - 44.976610132348284 - ], - [ - 11.922247879851636, - 44.97547062745799 - ], - [ - 11.9635076348303, - 44.98800518125128 - ], - [ - 12.0623753495905, - 44.970342855451634 - ], - [ - 12.098964188911202, - 44.972621865232234 - ], - [ - 12.141780915775854, - 44.92932067940086 - ], - [ - 12.169806409723627, - 44.94299473808445 - ], - [ - 12.225857397619173, - 44.92362315494936 - ], - [ - 12.281908385514718, - 44.942424985639306 - ], - [ - 12.287357787115674, - 44.87120592999559 - ], - [ - 12.33718088746727, - 44.8529738517508 - ], - [ - 12.358200007928101, - 44.81480043792577 - ], - [ - 12.39868127696377, - 44.79258009256493 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 6, - "NAME_1": "Emilia-Romagna", - "ID_2": 25, - "NAME_2": "Forli' - Cesena", - "HASC_2": "IT.FO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.383111558103899, - 44.22453690475068 - ], - [ - 12.449282863258361, - 44.16300364067451 - ], - [ - 12.429820714683519, - 44.148190077100615 - ], - [ - 12.453953778916324, - 44.113435177946485 - ], - [ - 12.365206381415042, - 44.04791364675427 - ], - [ - 12.39634581913479, - 44.03139082584493 - ], - [ - 12.370655783015998, - 43.9909384022393 - ], - [ - 12.323946626436378, - 43.96131127509152 - ], - [ - 12.295921132488605, - 43.92940513816313 - ], - [ - 12.169027923780634, - 43.898638506125046 - ], - [ - 12.131660598516937, - 43.82571019314589 - ], - [ - 12.103635104569165, - 43.78924603665631 - ], - [ - 12.108306020227126, - 43.75449113750217 - ], - [ - 11.987640699063105, - 43.763037424179416 - ], - [ - 11.947937915970428, - 43.792094798882054 - ], - [ - 11.856855060640164, - 43.81659415402349 - ], - [ - 11.842842313666278, - 43.80918737223654 - ], - [ - 11.785234353884746, - 43.848500290951876 - ], - [ - 11.711278189300346, - 43.87812741809966 - ], - [ - 11.71828456278729, - 43.92256810882134 - ], - [ - 11.64666385603187, - 43.99036864979415 - ], - [ - 11.695708470440472, - 44.03651859785128 - ], - [ - 11.753316430222005, - 44.12255121706888 - ], - [ - 11.716727590901302, - 44.12369072195918 - ], - [ - 11.721398506559265, - 44.15958512600361 - ], - [ - 11.754094916164998, - 44.19434002515774 - ], - [ - 11.783677381998759, - 44.18180547136445 - ], - [ - 11.83038653857838, - 44.20003754960924 - ], - [ - 11.8895514702459, - 44.171549927351755 - ], - [ - 11.915241506364692, - 44.20915358873164 - ], - [ - 11.978298867747181, - 44.25758254656936 - ], - [ - 12.036685313471708, - 44.33165036443882 - ], - [ - 12.055368976103555, - 44.30658125685223 - ], - [ - 12.10908450617012, - 44.289488683497744 - ], - [ - 12.10441359051216, - 44.2729658625884 - ], - [ - 12.177591269153565, - 44.24618749766637 - ], - [ - 12.207952220930318, - 44.221688142524926 - ], - [ - 12.281129899571726, - 44.23422269631822 - ], - [ - 12.350415148498163, - 44.191491262932 - ], - [ - 12.383111558103899, - 44.22453690475068 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 6, - "NAME_1": "Emilia-Romagna", - "ID_2": 26, - "NAME_2": "Modena", - "HASC_2": "IT.MO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Modène|Módena" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.247300567276108, - 44.95211077720685 - ], - [ - 11.261313314249994, - 44.933878698962054 - ], - [ - 11.235623278131204, - 44.907100334040024 - ], - [ - 11.348503739865286, - 44.87291518733104 - ], - [ - 11.369522860326118, - 44.8438578126284 - ], - [ - 11.312693386487577, - 44.82847449660936 - ], - [ - 11.29400972385573, - 44.80397514146792 - ], - [ - 11.209154756069417, - 44.80511464635822 - ], - [ - 11.130527675827055, - 44.78403380588769 - ], - [ - 11.118071900739157, - 44.71110549290852 - ], - [ - 11.079147603589472, - 44.647862971496906 - ], - [ - 11.128970703941068, - 44.632479655477866 - ], - [ - 11.15076831034489, - 44.58462045008529 - ], - [ - 11.108730069423231, - 44.54587728381511 - ], - [ - 11.060463940957623, - 44.52308718600912 - ], - [ - 11.04878665181272, - 44.4666816939393 - ], - [ - 10.997406579575134, - 44.43021753744972 - ], - [ - 11.04878665181272, - 44.417113231211275 - ], - [ - 11.023096615693927, - 44.3738120453799 - ], - [ - 11.041001792382781, - 44.33278986932912 - ], - [ - 11.012976298435008, - 44.30031397995559 - ], - [ - 10.967824113741376, - 44.303162742181335 - ], - [ - 10.95848228242545, - 44.22681591453127 - ], - [ - 10.90788069613086, - 44.206304826505885 - ], - [ - 10.856500623893277, - 44.208583836286486 - ], - [ - 10.823804214287541, - 44.1835147286999 - ], - [ - 10.806677523541682, - 44.14192280020397 - ], - [ - 10.816019354857605, - 44.11685369261738 - ], - [ - 10.744398648102187, - 44.15730611622301 - ], - [ - 10.642416989570012, - 44.16072463089391 - ], - [ - 10.625290298824153, - 44.121411712178585 - ], - [ - 10.52564409812096, - 44.157875868668164 - ], - [ - 10.524087126234972, - 44.175538194467805 - ], - [ - 10.471150082111402, - 44.22681591453127 - ], - [ - 10.511631351147074, - 44.30145348484589 - ], - [ - 10.529536527835928, - 44.35216145246421 - ], - [ - 10.598043290819373, - 44.3646960062575 - ], - [ - 10.622176355052177, - 44.40685768719858 - ], - [ - 10.654094278714918, - 44.434205804565764 - ], - [ - 10.67122096946078, - 44.4701002086102 - ], - [ - 10.741284704330212, - 44.51055263221583 - ], - [ - 10.767753226391996, - 44.54359827403451 - ], - [ - 10.787993860909832, - 44.606840795446125 - ], - [ - 10.783322945251872, - 44.628491388361816 - ], - [ - 10.816019354857605, - 44.657548763064455 - ], - [ - 10.807456009484675, - 44.69743143422493 - ], - [ - 10.81913329862958, - 44.76124370808169 - ], - [ - 10.843266362862384, - 44.796568359680975 - ], - [ - 10.816019354857605, - 44.80796340858397 - ], - [ - 10.851051222292321, - 44.86721766287954 - ], - [ - 10.880633688126082, - 44.87063617755044 - ], - [ - 10.889197033499013, - 44.915076868272116 - ], - [ - 10.942134077622583, - 44.92305340250421 - ], - [ - 10.998963551461122, - 44.955529291877745 - ], - [ - 11.060463940957623, - 44.9504015198714 - ], - [ - 11.07447668793151, - 44.96407557855499 - ], - [ - 11.153103768173871, - 44.93444845140721 - ], - [ - 11.247300567276108, - 44.95211077720685 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 6, - "NAME_1": "Emilia-Romagna", - "ID_2": 27, - "NAME_2": "Parma", - "HASC_2": "IT.PR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Parme" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.464922194567453, - 44.937866966078104 - ], - [ - 10.505403463603123, - 44.92362315494936 - ], - [ - 10.464922194567453, - 44.89855404736278 - ], - [ - 10.47504251182637, - 44.87690345444709 - ], - [ - 10.42444092553178, - 44.79599860723583 - ], - [ - 10.447017017878597, - 44.72762831381787 - ], - [ - 10.415099094215856, - 44.664955544851395 - ], - [ - 10.403421805070952, - 44.5652488669502 - ], - [ - 10.342699901517443, - 44.52536619578972 - ], - [ - 10.33335807020152, - 44.48605327707439 - ], - [ - 10.255509475902151, - 44.45243788281056 - ], - [ - 10.206464861493549, - 44.39318362851499 - ], - [ - 10.15819873302794, - 44.38007932227654 - ], - [ - 10.14340750011106, - 44.35501021468996 - ], - [ - 10.100590773246406, - 44.34703368045786 - ], - [ - 9.990045769341304, - 44.40514842986313 - ], - [ - 10.007950946030158, - 44.432496547230315 - ], - [ - 9.971362106709455, - 44.465542189049 - ], - [ - 9.931659323616778, - 44.472948970835944 - ], - [ - 9.821114319711674, - 44.46725144638445 - ], - [ - 9.733145408153387, - 44.38007932227654 - ], - [ - 9.687993223459753, - 44.366975016038104 - ], - [ - 9.656075299797012, - 44.41255521165008 - ], - [ - 9.560321528808789, - 44.43933357657212 - ], - [ - 9.494928709597318, - 44.425089765443374 - ], - [ - 9.480137476680438, - 44.41027620186948 - ], - [ - 9.459118356219609, - 44.44332184368817 - ], - [ - 9.471574131307507, - 44.47408847572625 - ], - [ - 9.498042653369293, - 44.483774267293796 - ], - [ - 9.505827512799229, - 44.53106372024122 - ], - [ - 9.494150223654325, - 44.556702580272955 - ], - [ - 9.550979697492863, - 44.589178469646484 - ], - [ - 9.625714348020256, - 44.6569790106193 - ], - [ - 9.687993223459753, - 44.67578084130924 - ], - [ - 9.766620303702116, - 44.68318762309619 - ], - [ - 9.766620303702116, - 44.71110549290852 - ], - [ - 9.815664918110716, - 44.73902336272086 - ], - [ - 9.820335833768679, - 44.762383212972 - ], - [ - 9.88183622326518, - 44.769789994758945 - ], - [ - 9.883393195151168, - 44.804544893913075 - ], - [ - 9.937887211160726, - 44.837590535731756 - ], - [ - 9.987710311512322, - 44.84670657485415 - ], - [ - 10.011843375745126, - 44.87690345444709 - ], - [ - 9.988488797455316, - 44.93672746118781 - ], - [ - 10.032084010262963, - 44.984586666580384 - ], - [ - 10.046875243179842, - 45.03016686219236 - ], - [ - 10.084242568443539, - 45.04498042576625 - ], - [ - 10.107597146733351, - 45.023329832850564 - ], - [ - 10.158977218970934, - 45.04498042576625 - ], - [ - 10.254730989959157, - 45.019341565734514 - ], - [ - 10.274971624476994, - 44.999969982599424 - ], - [ - 10.366054479807254, - 44.966924340780736 - ], - [ - 10.417434552044838, - 44.97831938968373 - ], - [ - 10.43689670061968, - 44.944134242974755 - ], - [ - 10.464922194567453, - 44.937866966078104 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 6, - "NAME_1": "Emilia-Romagna", - "ID_2": 28, - "NAME_2": "Piacenza", - "HASC_2": "IT.PC", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Plaisance" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.084242568443539, - 45.04498042576625 - ], - [ - 10.046875243179842, - 45.03016686219236 - ], - [ - 10.032084010262963, - 44.984586666580384 - ], - [ - 9.988488797455316, - 44.93672746118781 - ], - [ - 10.011843375745126, - 44.87690345444709 - ], - [ - 9.987710311512322, - 44.84670657485415 - ], - [ - 9.937887211160726, - 44.837590535731756 - ], - [ - 9.883393195151168, - 44.804544893913075 - ], - [ - 9.88183622326518, - 44.769789994758945 - ], - [ - 9.820335833768679, - 44.762383212972 - ], - [ - 9.815664918110716, - 44.73902336272086 - ], - [ - 9.766620303702116, - 44.71110549290852 - ], - [ - 9.766620303702116, - 44.68318762309619 - ], - [ - 9.687993223459753, - 44.67578084130924 - ], - [ - 9.625714348020256, - 44.6569790106193 - ], - [ - 9.550979697492863, - 44.589178469646484 - ], - [ - 9.494150223654325, - 44.556702580272955 - ], - [ - 9.420194059069924, - 44.58120193541439 - ], - [ - 9.341566978827561, - 44.57949267807894 - ], - [ - 9.30108570979189, - 44.60855005278158 - ], - [ - 9.273060215844117, - 44.59658525143343 - ], - [ - 9.246591693782332, - 44.62051485412972 - ], - [ - 9.20377496691768, - 44.61424757723307 - ], - [ - 9.201439509088697, - 44.68717589021224 - ], - [ - 9.299528737905902, - 44.682048118205884 - ], - [ - 9.333782119397625, - 44.73617460049511 - ], - [ - 9.287072962818003, - 44.760104203191396 - ], - [ - 9.32210483025272, - 44.79998687435187 - ], - [ - 9.355579725801448, - 44.81309118059032 - ], - [ - 9.342345464770556, - 44.87063617755044 - ], - [ - 9.28240204716004, - 44.89684479002732 - ], - [ - 9.315876942708769, - 44.937866966078104 - ], - [ - 9.348573352314505, - 44.998260725263975 - ], - [ - 9.376598846262278, - 45.02105082306996 - ], - [ - 9.371927930604315, - 45.0489686928823 - ], - [ - 9.44043469358776, - 45.09454888849427 - ], - [ - 9.502713569027256, - 45.10423468006182 - ], - [ - 9.551758183435858, - 45.09625814582972 - ], - [ - 9.549422725606876, - 45.1338618072096 - ], - [ - 9.58834702275656, - 45.10081616539092 - ], - [ - 9.713683259578545, - 45.05979398934014 - ], - [ - 9.779854564733007, - 45.09056062137822 - ], - [ - 9.836684038571548, - 45.07289829557858 - ], - [ - 9.884171681094163, - 45.07517730535918 - ], - [ - 9.902076857783017, - 45.09568839338457 - ], - [ - 9.891956540524099, - 45.131582797429004 - ], - [ - 9.993938199056272, - 45.1304432925387 - ], - [ - 10.030527038376976, - 45.09568839338457 - ], - [ - 10.021963693004045, - 45.07802606758493 - ], - [ - 10.058552532324747, - 45.0421316635405 - ], - [ - 10.084242568443539, - 45.04498042576625 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 6, - "NAME_1": "Emilia-Romagna", - "ID_2": 29, - "NAME_2": "Ravenna", - "HASC_2": "IT.RA", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "R vena|Ravenne" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.270231096369812, - 44.62963089325211 - ], - [ - 12.283465357400706, - 44.58405069764014 - ], - [ - 12.279572927685738, - 44.513971146886725 - ], - [ - 12.288136273058669, - 44.46155392193295 - ], - [ - 12.315383281063447, - 44.40685768719858 - ], - [ - 12.323168140493383, - 44.36070773914146 - ], - [ - 12.357421521985106, - 44.2706868528078 - ], - [ - 12.383111558103899, - 44.22453690475068 - ], - [ - 12.350415148498163, - 44.191491262932 - ], - [ - 12.281129899571726, - 44.23422269631822 - ], - [ - 12.207952220930318, - 44.221688142524926 - ], - [ - 12.177591269153565, - 44.24618749766637 - ], - [ - 12.10441359051216, - 44.2729658625884 - ], - [ - 12.10908450617012, - 44.289488683497744 - ], - [ - 12.055368976103555, - 44.30658125685223 - ], - [ - 12.036685313471708, - 44.33165036443882 - ], - [ - 11.978298867747181, - 44.25758254656936 - ], - [ - 11.915241506364692, - 44.20915358873164 - ], - [ - 11.8895514702459, - 44.171549927351755 - ], - [ - 11.83038653857838, - 44.20003754960924 - ], - [ - 11.783677381998759, - 44.18180547136445 - ], - [ - 11.754094916164998, - 44.19434002515774 - ], - [ - 11.721398506559265, - 44.15958512600361 - ], - [ - 11.716727590901302, - 44.12369072195918 - ], - [ - 11.679360265637605, - 44.123120969514034 - ], - [ - 11.653670229518813, - 44.10147037659834 - ], - [ - 11.598397727566262, - 44.12596973173978 - ], - [ - 11.611631988597154, - 44.16072463089391 - ], - [ - 11.525998534867849, - 44.158445621113316 - ], - [ - 11.550131599100652, - 44.20573507406074 - ], - [ - 11.579714064934413, - 44.23308319142792 - ], - [ - 11.627201707457028, - 44.24789675500182 - ], - [ - 11.641214454430914, - 44.27467511992385 - ], - [ - 11.698822414212447, - 44.30999977152313 - ], - [ - 11.709721217414359, - 44.29119794083319 - ], - [ - 11.786791325770734, - 44.34874293779331 - ], - [ - 11.800025586801627, - 44.3795095698314 - ], - [ - 11.838171398008317, - 44.41483422143068 - ], - [ - 11.782120410112771, - 44.43705456679152 - ], - [ - 11.800025586801627, - 44.46155392193295 - ], - [ - 11.77978495228379, - 44.50428535531918 - ], - [ - 11.789905269542707, - 44.55556307538265 - ], - [ - 11.861525976298129, - 44.560690847389 - ], - [ - 11.875538723272014, - 44.578353173188646 - ], - [ - 12.000874960093999, - 44.601143270994626 - ], - [ - 12.028900454041771, - 44.56126059983415 - ], - [ - 12.080280526279353, - 44.56240010472445 - ], - [ - 12.155015176806748, - 44.54929579848601 - ], - [ - 12.238313172707073, - 44.62165435902002 - ], - [ - 12.270231096369812, - 44.62963089325211 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 6, - "NAME_1": "Emilia-Romagna", - "ID_2": 30, - "NAME_2": "Reggio Nell'Emilia", - "HASC_2": "IT.RE", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Reggio d'Émilie" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.889197033499013, - 44.915076868272116 - ], - [ - 10.880633688126082, - 44.87063617755044 - ], - [ - 10.851051222292321, - 44.86721766287954 - ], - [ - 10.816019354857605, - 44.80796340858397 - ], - [ - 10.843266362862384, - 44.796568359680975 - ], - [ - 10.81913329862958, - 44.76124370808169 - ], - [ - 10.807456009484675, - 44.69743143422493 - ], - [ - 10.816019354857605, - 44.657548763064455 - ], - [ - 10.783322945251872, - 44.628491388361816 - ], - [ - 10.787993860909832, - 44.606840795446125 - ], - [ - 10.767753226391996, - 44.54359827403451 - ], - [ - 10.741284704330212, - 44.51055263221583 - ], - [ - 10.67122096946078, - 44.4701002086102 - ], - [ - 10.654094278714918, - 44.434205804565764 - ], - [ - 10.622176355052177, - 44.40685768719858 - ], - [ - 10.598043290819373, - 44.3646960062575 - ], - [ - 10.529536527835928, - 44.35216145246421 - ], - [ - 10.511631351147074, - 44.30145348484589 - ], - [ - 10.471150082111402, - 44.22681591453127 - ], - [ - 10.43689670061968, - 44.227385666976424 - ], - [ - 10.372282367351204, - 44.270117100362654 - ], - [ - 10.29754771682381, - 44.28720967371714 - ], - [ - 10.254730989959157, - 44.2695473479175 - ], - [ - 10.218920636581448, - 44.305441751961936 - ], - [ - 10.14340750011106, - 44.35501021468996 - ], - [ - 10.15819873302794, - 44.38007932227654 - ], - [ - 10.206464861493549, - 44.39318362851499 - ], - [ - 10.255509475902151, - 44.45243788281056 - ], - [ - 10.33335807020152, - 44.48605327707439 - ], - [ - 10.342699901517443, - 44.52536619578972 - ], - [ - 10.403421805070952, - 44.5652488669502 - ], - [ - 10.415099094215856, - 44.664955544851395 - ], - [ - 10.447017017878597, - 44.72762831381787 - ], - [ - 10.42444092553178, - 44.79599860723583 - ], - [ - 10.47504251182637, - 44.87690345444709 - ], - [ - 10.464922194567453, - 44.89855404736278 - ], - [ - 10.505403463603123, - 44.92362315494936 - ], - [ - 10.574688712529563, - 44.90994909626577 - ], - [ - 10.62918272853912, - 44.92533241228481 - ], - [ - 10.687569174263647, - 44.98743542880613 - ], - [ - 10.732721358957281, - 44.99256320081248 - ], - [ - 10.744398648102187, - 44.94983176742625 - ], - [ - 10.823025728344549, - 44.93729721363295 - ], - [ - 10.889197033499013, - 44.915076868272116 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 6, - "NAME_1": "Emilia-Romagna", - "ID_2": 31, - "NAME_2": "Rimini", - "HASC_2": "IT.RN", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.7528923810259, - 43.96814830443331 - ], - [ - 12.728759316793095, - 43.92484711860193 - ], - [ - 12.72330991519214, - 43.861604597190315 - ], - [ - 12.68360713209946, - 43.85362806295822 - ], - [ - 12.682050160213475, - 43.829128707816785 - ], - [ - 12.624442200431941, - 43.82343118336529 - ], - [ - 12.59018881894022, - 43.8866737047769 - ], - [ - 12.566055754707413, - 43.88154593277056 - ], - [ - 12.492099590123015, - 43.91573107947954 - ], - [ - 12.513897196526838, - 43.94877672129822 - ], - [ - 12.504555365210912, - 43.97441558132996 - ], - [ - 12.467188039947217, - 43.97840384844601 - ], - [ - 12.404909164507721, - 43.94991622618852 - ], - [ - 12.369877297073005, - 43.96359028487211 - ], - [ - 12.323946626436378, - 43.96131127509152 - ], - [ - 12.370655783015998, - 43.9909384022393 - ], - [ - 12.39634581913479, - 44.03139082584493 - ], - [ - 12.365206381415042, - 44.04791364675427 - ], - [ - 12.453953778916324, - 44.113435177946485 - ], - [ - 12.429820714683519, - 44.148190077100615 - ], - [ - 12.449282863258361, - 44.16300364067451 - ], - [ - 12.450839835144349, - 44.16300364067451 - ], - [ - 12.514675682469832, - 44.10659814860469 - ], - [ - 12.57773304385232, - 44.07241300189571 - ], - [ - 12.635341003633853, - 44.022274786722534 - ], - [ - 12.717082027648189, - 43.97270632399451 - ], - [ - 12.7528923810259, - 43.96814830443331 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 7, - "NAME_1": "Friuli-Venezia Giulia", - "ID_2": 32, - "NAME_2": "Gorizia", - "HASC_2": "IT.GO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Görz" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.599885087003031, - 45.82668078051164 - ], - [ - 13.581979910314177, - 45.779961080009365 - ], - [ - 13.54694804287946, - 45.78679810935116 - ], - [ - 13.517365577045702, - 45.74463642841008 - ], - [ - 13.55084047259443, - 45.729822864836194 - ], - [ - 13.433289095202383, - 45.681393906998466 - ], - [ - 13.384244480793779, - 45.675126630101815 - ], - [ - 13.380352051078813, - 45.72754385505559 - ], - [ - 13.404485115311616, - 45.739508656403736 - ], - [ - 13.44107395463232, - 45.78679810935116 - ], - [ - 13.425504235772445, - 45.86770295656242 - ], - [ - 13.39280782616671, - 45.91442265706469 - ], - [ - 13.420833320114482, - 45.928666468193434 - ], - [ - 13.438738496803339, - 45.97424666380542 - ], - [ - 13.469099448580092, - 45.9970367616114 - ], - [ - 13.497124942527865, - 46.05173299634577 - ], - [ - 13.479219765839009, - 45.993048494495355 - ], - [ - 13.54694804287946, - 45.98393245537296 - ], - [ - 13.615454805862905, - 45.99532750427595 - ], - [ - 13.653600617069596, - 45.98393245537296 - ], - [ - 13.630246038779784, - 45.92068993396134 - ], - [ - 13.59365719945908, - 45.86200543211092 - ], - [ - 13.599885087003031, - 45.82668078051164 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 7, - "NAME_1": "Friuli-Venezia Giulia", - "ID_2": 33, - "NAME_2": "Pordenone", - "HASC_2": "IT.PN", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.980210276380056, - 45.83465731474374 - ], - [ - 12.93038717602846, - 45.81813449383439 - ], - [ - 12.891462878878777, - 45.82440177073104 - ], - [ - 12.861880413045016, - 45.851749888098226 - ], - [ - 12.78247484685966, - 45.85459865032398 - ], - [ - 12.72953780273609, - 45.83750607696948 - ], - [ - 12.662588011638633, - 45.793065386247804 - ], - [ - 12.606537023743087, - 45.83921533430493 - ], - [ - 12.583182445453275, - 45.82497152317619 - ], - [ - 12.538030260759642, - 45.86941221389787 - ], - [ - 12.506112337096901, - 45.92410844863224 - ], - [ - 12.423592827139569, - 45.95715409045092 - ], - [ - 12.429042228740526, - 45.99646700916625 - ], - [ - 12.40023824884976, - 46.04204720477823 - ], - [ - 12.429042228740526, - 46.07737185637751 - ], - [ - 12.484314730693077, - 46.10415022129955 - ], - [ - 12.499884449552951, - 46.138335368008526 - ], - [ - 12.457846208631292, - 46.17138100982721 - ], - [ - 12.431377686569506, - 46.21012417609739 - ], - [ - 12.37299124084498, - 46.22493773967128 - ], - [ - 12.324725112379372, - 46.25570437170936 - ], - [ - 12.330174513980328, - 46.28419199396685 - ], - [ - 12.379997614331923, - 46.33262095180457 - ], - [ - 12.412694023937657, - 46.33262095180457 - ], - [ - 12.499884449552951, - 46.412956046570685 - ], - [ - 12.52713145755773, - 46.374212880300504 - ], - [ - 12.587074875168245, - 46.368515355849006 - ], - [ - 12.637676461462835, - 46.34002773359152 - ], - [ - 12.6789362164415, - 46.34857402026877 - ], - [ - 12.707740196332265, - 46.32692342735308 - ], - [ - 12.82295611589533, - 46.35769005939116 - ], - [ - 12.876671645961896, - 46.33319070424972 - ], - [ - 12.962305099691202, - 46.33774872381092 - ], - [ - 12.954520240261264, - 46.30128456732134 - ], - [ - 12.977874818551076, - 46.26880867794781 - ], - [ - 12.976317846665088, - 46.236902541019425 - ], - [ - 12.943621437059353, - 46.211263680987685 - ], - [ - 12.96619752940617, - 46.195880364968644 - ], - [ - 12.91793140094056, - 46.07509284659691 - ], - [ - 12.904697139909668, - 45.96513062468301 - ], - [ - 12.916374429054574, - 45.91613191440014 - ], - [ - 12.975539360722095, - 45.874539985904214 - ], - [ - 12.980210276380056, - 45.83465731474374 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 7, - "NAME_1": "Friuli-Venezia Giulia", - "ID_2": 34, - "NAME_2": "Trieste", - "HASC_2": "IT.TS", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Triest" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.581979910314177, - 45.779961080009365 - ], - [ - 13.599885087003031, - 45.82668078051164 - ], - [ - 13.750911359943807, - 45.77255429822242 - ], - [ - 13.824089038585214, - 45.72868335994589 - ], - [ - 13.852114532532987, - 45.69449821323691 - ], - [ - 13.891817315625664, - 45.66885935320517 - ], - [ - 13.90583006259955, - 45.62669767226409 - ], - [ - 13.870798195164834, - 45.59365203044541 - ], - [ - 13.831095412072155, - 45.57940821931667 - ], - [ - 13.750132874000812, - 45.59251252555511 - ], - [ - 13.774265938233619, - 45.63068593938014 - ], - [ - 13.749354388057819, - 45.68424266922422 - ], - [ - 13.632581496608767, - 45.766856773770925 - ], - [ - 13.581979910314177, - 45.779961080009365 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 7, - "NAME_1": "Friuli-Venezia Giulia", - "ID_2": 35, - "NAME_2": "Udine", - "HASC_2": "IT.UD", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Friuli" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.497124942527865, - 46.05173299634577 - ], - [ - 13.469099448580092, - 45.9970367616114 - ], - [ - 13.438738496803339, - 45.97424666380542 - ], - [ - 13.420833320114482, - 45.928666468193434 - ], - [ - 13.39280782616671, - 45.91442265706469 - ], - [ - 13.425504235772445, - 45.86770295656242 - ], - [ - 13.44107395463232, - 45.78679810935116 - ], - [ - 13.404485115311616, - 45.739508656403736 - ], - [ - 13.380352051078813, - 45.72754385505559 - ], - [ - 13.334421380442183, - 45.741217913739185 - ], - [ - 13.248009440769884, - 45.75033395286158 - ], - [ - 13.222319404651092, - 45.77027528844182 - ], - [ - 13.09075528028516, - 45.73039261728134 - ], - [ - 13.084527392741212, - 45.65689455185703 - ], - [ - 13.045603095591526, - 45.685382174114515 - ], - [ - 13.030033376731652, - 45.73609014173284 - ], - [ - 13.002786368726873, - 45.74919444797128 - ], - [ - 12.975539360722095, - 45.8067394449314 - ], - [ - 12.980210276380056, - 45.83465731474374 - ], - [ - 12.975539360722095, - 45.874539985904214 - ], - [ - 12.916374429054574, - 45.91613191440014 - ], - [ - 12.904697139909668, - 45.96513062468301 - ], - [ - 12.91793140094056, - 46.07509284659691 - ], - [ - 12.96619752940617, - 46.195880364968644 - ], - [ - 12.943621437059353, - 46.211263680987685 - ], - [ - 12.976317846665088, - 46.236902541019425 - ], - [ - 12.977874818551076, - 46.26880867794781 - ], - [ - 12.954520240261264, - 46.30128456732134 - ], - [ - 12.962305099691202, - 46.33774872381092 - ], - [ - 12.876671645961896, - 46.33319070424972 - ], - [ - 12.82295611589533, - 46.35769005939116 - ], - [ - 12.707740196332265, - 46.32692342735308 - ], - [ - 12.6789362164415, - 46.34857402026877 - ], - [ - 12.637676461462835, - 46.34002773359152 - ], - [ - 12.587074875168245, - 46.368515355849006 - ], - [ - 12.52713145755773, - 46.374212880300504 - ], - [ - 12.499884449552951, - 46.412956046570685 - ], - [ - 12.506890823039894, - 46.442013421273316 - ], - [ - 12.570726670365378, - 46.4761985679823 - ], - [ - 12.608093995629073, - 46.465373271524456 - ], - [ - 12.654803152208695, - 46.4853146071047 - ], - [ - 12.631448573918885, - 46.51323247691703 - ], - [ - 12.717860513591184, - 46.546278118735714 - ], - [ - 12.742772063766981, - 46.59641633390889 - ], - [ - 12.736544176223031, - 46.63629900506937 - ], - [ - 12.754449352911887, - 46.64826380641751 - ], - [ - 12.828405517496288, - 46.63003172817272 - ], - [ - 12.851760095786098, - 46.604962620586136 - ], - [ - 12.931165661971454, - 46.61009039259248 - ], - [ - 13.047160067477513, - 46.59641633390889 - ], - [ - 13.09309073811414, - 46.600974353470086 - ], - [ - 13.16704690269854, - 46.59014905701224 - ], - [ - 13.240224581339948, - 46.55710341519356 - ], - [ - 13.311066802152373, - 46.55539415785811 - ], - [ - 13.378795079192823, - 46.57875400810924 - ], - [ - 13.424725749829452, - 46.559952177419305 - ], - [ - 13.563296247682327, - 46.55311514807751 - ], - [ - 13.714322520623103, - 46.522918268484574 - ], - [ - 13.711987062794122, - 46.4761985679823 - ], - [ - 13.666834878100488, - 46.45568747995691 - ], - [ - 13.57653050871322, - 46.44087391638302 - ], - [ - 13.54461258505048, - 46.40099124522254 - ], - [ - 13.459757617264167, - 46.36395733628781 - ], - [ - 13.381909022964798, - 46.29330803308925 - ], - [ - 13.440295468689325, - 46.21411244321344 - ], - [ - 13.462871561036142, - 46.236902541019425 - ], - [ - 13.521258006760668, - 46.219809967664936 - ], - [ - 13.555511388252391, - 46.1964501174138 - ], - [ - 13.652043645183609, - 46.182776058730205 - ], - [ - 13.66060699055654, - 46.15143967424697 - ], - [ - 13.570302621169272, - 46.087627400390204 - ], - [ - 13.497124942527865, - 46.05173299634577 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 8, - "NAME_1": "Lazio", - "ID_2": 36, - "NAME_2": "Frosinone", - "HASC_2": "IT.FR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.941640415977261, - 41.6891385238345 - ], - [ - 13.989128058499876, - 41.65495337712552 - ], - [ - 14.011704150846693, - 41.608803429068395 - ], - [ - 14.002362319530768, - 41.57063001524337 - ], - [ - 14.024938411877585, - 41.56208372856612 - ], - [ - 14.027273869706566, - 41.52675907696684 - ], - [ - 13.97355833964, - 41.494852940038456 - ], - [ - 13.979007741240956, - 41.46351655555522 - ], - [ - 13.863791821677891, - 41.41109933060145 - ], - [ - 13.886367914024708, - 41.386599975460015 - ], - [ - 13.874690624879804, - 41.339310522512584 - ], - [ - 13.764145620974698, - 41.30227661357786 - ], - [ - 13.71587949250909, - 41.33646176028684 - ], - [ - 13.70498068930718, - 41.35982161053798 - ], - [ - 13.655157588955582, - 41.32164819671294 - ], - [ - 13.61856874963488, - 41.320508691822646 - ], - [ - 13.549283500708441, - 41.420785122168994 - ], - [ - 13.429396665487413, - 41.45724927865857 - ], - [ - 13.439516982746332, - 41.42591289417534 - ], - [ - 13.404485115311616, - 41.40312279636935 - ], - [ - 13.304838914608425, - 41.40540180614995 - ], - [ - 13.266693103401733, - 41.45326101154253 - ], - [ - 13.300167998950462, - 41.471493089787316 - ], - [ - 13.272142505002689, - 41.52504981963139 - ], - [ - 13.222319404651092, - 41.53986338320528 - ], - [ - 13.175610248071472, - 41.58430407392696 - ], - [ - 13.151477183838669, - 41.597408380165405 - ], - [ - 13.1600405292116, - 41.63558179399043 - ], - [ - 13.147584754123699, - 41.661220654022166 - ], - [ - 13.092312252171148, - 41.688568771389356 - ], - [ - 13.095426195943123, - 41.70680084963414 - ], - [ - 13.027697918902671, - 41.748392778130075 - ], - [ - 12.996558481182923, - 41.778589657723 - ], - [ - 13.01057122815681, - 41.82644886311558 - ], - [ - 13.06584373010936, - 41.83442539734768 - ], - [ - 13.102432569430064, - 41.86120376226971 - ], - [ - 13.155369613553635, - 41.84468094136037 - ], - [ - 13.24489549699791, - 41.897667918759296 - ], - [ - 13.297054055178487, - 41.949515391267916 - ], - [ - 13.323522577240272, - 41.94609687659702 - ], - [ - 13.385022966736773, - 41.90507470054624 - ], - [ - 13.36088990250397, - 41.87031980139211 - ], - [ - 13.367896275990912, - 41.83385564490253 - ], - [ - 13.408377545026585, - 41.83841366446373 - ], - [ - 13.505688287900796, - 41.802519260419295 - ], - [ - 13.522814978646657, - 41.77403163816181 - ], - [ - 13.572638078998253, - 41.75522980747187 - ], - [ - 13.631803010665774, - 41.78371742972936 - ], - [ - 13.66294244838552, - 41.81220505198684 - ], - [ - 13.717436464395078, - 41.798530993303245 - ], - [ - 13.750132874000812, - 41.761497084368514 - ], - [ - 13.92062129551643, - 41.71819589853714 - ], - [ - 13.941640415977261, - 41.6891385238345 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 8, - "NAME_1": "Lazio", - "ID_2": 37, - "NAME_2": "Latina", - "HASC_2": "IT.LT", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Littoria" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.175610248071472, - 41.58430407392696 - ], - [ - 13.222319404651092, - 41.53986338320528 - ], - [ - 13.272142505002689, - 41.52504981963139 - ], - [ - 13.300167998950462, - 41.471493089787316 - ], - [ - 13.266693103401733, - 41.45326101154253 - ], - [ - 13.304838914608425, - 41.40540180614995 - ], - [ - 13.404485115311616, - 41.40312279636935 - ], - [ - 13.439516982746332, - 41.42591289417534 - ], - [ - 13.429396665487413, - 41.45724927865857 - ], - [ - 13.549283500708441, - 41.420785122168994 - ], - [ - 13.61856874963488, - 41.320508691822646 - ], - [ - 13.655157588955582, - 41.32164819671294 - ], - [ - 13.70498068930718, - 41.35982161053798 - ], - [ - 13.71587949250909, - 41.33646176028684 - ], - [ - 13.764145620974698, - 41.30227661357786 - ], - [ - 13.874690624879804, - 41.339310522512584 - ], - [ - 13.895709745340632, - 41.31139265270025 - ], - [ - 13.883253970252735, - 41.29202106956516 - ], - [ - 13.828759954243175, - 41.27834701088157 - ], - [ - 13.819418122927251, - 41.247010626398335 - ], - [ - 13.774265938233619, - 41.24359211172744 - ], - [ - 13.762588649088713, - 41.223650776147196 - ], - [ - 13.706537661193167, - 41.25327790329498 - ], - [ - 13.68396156884635, - 41.24416186417258 - ], - [ - 13.621682693406854, - 41.26068468508193 - ], - [ - 13.572638078998253, - 41.239034092166236 - ], - [ - 13.571859593055258, - 41.21624399436025 - ], - [ - 13.511916175444746, - 41.22194151881175 - ], - [ - 13.392029340223717, - 41.27549824865582 - ], - [ - 13.292383139520524, - 41.29771859401666 - ], - [ - 13.25735127208581, - 41.28233527799762 - ], - [ - 13.20674968579122, - 41.283474782887915 - ], - [ - 13.154591127610642, - 41.268661219314026 - ], - [ - 13.06506524416637, - 41.22194151881175 - ], - [ - 13.04015369399057, - 41.23048780548899 - ], - [ - 13.030033376731652, - 41.26353344730768 - ], - [ - 12.994223023353943, - 41.319938939377494 - ], - [ - 12.923380802541518, - 41.37976294611821 - ], - [ - 12.834633405040236, - 41.41565735016265 - ], - [ - 12.774689987429724, - 41.416796855052944 - ], - [ - 12.739658119995006, - 41.448133239536176 - ], - [ - 12.745886007538957, - 41.478899871574264 - ], - [ - 12.721752943306152, - 41.506247988941446 - ], - [ - 12.68127167427048, - 41.5090967511672 - ], - [ - 12.654803152208695, - 41.53416585875378 - ], - [ - 12.5925242767692, - 41.54214239298588 - ], - [ - 12.57150515630837, - 41.57860654947546 - ], - [ - 12.542701176417605, - 41.597408380165405 - ], - [ - 12.561384839049452, - 41.62361699264229 - ], - [ - 12.633784031747865, - 41.672615702925164 - ], - [ - 12.654024666265702, - 41.662929911357615 - ], - [ - 12.653246180322707, - 41.60823367662324 - ], - [ - 12.698398365016342, - 41.611082438848996 - ], - [ - 12.763791184227811, - 41.58031580681091 - ], - [ - 12.793373650061572, - 41.62361699264229 - ], - [ - 12.855652525501068, - 41.6925570385054 - ], - [ - 12.896912280479732, - 41.71249837408564 - ], - [ - 12.939729007344384, - 41.71420763142109 - ], - [ - 12.944399923002347, - 41.674894712705765 - ], - [ - 12.982545734209037, - 41.647546595338575 - ], - [ - 13.026140947016684, - 41.6008268948363 - ], - [ - 13.081413448969236, - 41.56208372856612 - ], - [ - 13.11410985857497, - 41.554676946779175 - ], - [ - 13.175610248071472, - 41.58430407392696 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 8, - "NAME_1": "Lazio", - "ID_2": 38, - "NAME_2": "Rieti", - "HASC_2": "IT.RI", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.344541697701102, - 42.702158371310674 - ], - [ - 13.370231733819892, - 42.6508806512472 - ], - [ - 13.409156030969578, - 42.6440436219054 - ], - [ - 13.395143283995692, - 42.592196149396784 - ], - [ - 13.381130537021805, - 42.581940605384084 - ], - [ - 13.292383139520524, - 42.57168506137139 - ], - [ - 13.262800673686765, - 42.584219615164685 - ], - [ - 13.191958452874339, - 42.588207882280734 - ], - [ - 13.15848355732561, - 42.52895362798517 - ], - [ - 13.178724191843447, - 42.51357031196612 - ], - [ - 13.154591127610642, - 42.46343209679295 - ], - [ - 13.117223802346945, - 42.444630266103005 - ], - [ - 13.190401480988353, - 42.40132908027163 - ], - [ - 13.190401480988353, - 42.38195749713654 - ], - [ - 13.154591127610642, - 42.358027894440255 - ], - [ - 13.226990320309056, - 42.32042423306037 - ], - [ - 13.23010426408103, - 42.28794834368684 - ], - [ - 13.293161625463519, - 42.23325210895247 - ], - [ - 13.321187119411292, - 42.23040334672672 - ], - [ - 13.368674761933907, - 42.1808348839987 - ], - [ - 13.323522577240272, - 42.162033053308754 - ], - [ - 13.30639588649441, - 42.139242955502766 - ], - [ - 13.249566412655872, - 42.12841765904493 - ], - [ - 13.184173593444402, - 42.15975404352816 - ], - [ - 13.087641336513185, - 42.17912562666325 - ], - [ - 13.086862850570192, - 42.14551023239942 - ], - [ - 13.031590348617641, - 42.11645285769678 - ], - [ - 12.979431790437062, - 42.131266421270674 - ], - [ - 12.931165661971454, - 42.10961582835498 - ], - [ - 12.867329814645972, - 42.104488056348636 - ], - [ - 12.85020312390011, - 42.14437072750911 - ], - [ - 12.758341782626855, - 42.18482315111474 - ], - [ - 12.717082027648189, - 42.15576577641211 - ], - [ - 12.657138610037677, - 42.15177750929606 - ], - [ - 12.61587885505901, - 42.181974388888996 - ], - [ - 12.638454947405828, - 42.208752753811034 - ], - [ - 12.63456251769086, - 42.24863542497151 - ], - [ - 12.559827867163465, - 42.274274285003244 - ], - [ - 12.52090357001378, - 42.295924877918935 - ], - [ - 12.489764132294034, - 42.29706438280924 - ], - [ - 12.455510750802311, - 42.3585976468854 - ], - [ - 12.445390433543393, - 42.39961982293618 - ], - [ - 12.467188039947217, - 42.39563155582013 - ], - [ - 12.48898564635104, - 42.39961982293618 - ], - [ - 12.519346598127793, - 42.3688531908981 - ], - [ - 12.567612726593403, - 42.38423650691714 - ], - [ - 12.615100369116018, - 42.414433386510076 - ], - [ - 12.62210674260296, - 42.46969937368959 - ], - [ - 12.667258927296594, - 42.44178150387726 - ], - [ - 12.742772063766981, - 42.47140863102504 - ], - [ - 12.728759316793095, - 42.51015179729522 - ], - [ - 12.774689987429724, - 42.51414006441127 - ], - [ - 12.848646152014123, - 42.55402273557175 - ], - [ - 12.893798336707757, - 42.56427827958444 - ], - [ - 12.881342561619858, - 42.603591198299775 - ], - [ - 12.896912280479732, - 42.617265256983366 - ], - [ - 12.932722633857441, - 42.60473070319007 - ], - [ - 12.954520240261264, - 42.62011401920912 - ], - [ - 13.059615842565412, - 42.62353253388002 - ], - [ - 13.145249296294718, - 42.6474621365763 - ], - [ - 13.174831762128477, - 42.66683371971139 - ], - [ - 13.190401480988353, - 42.7346342606842 - ], - [ - 13.25501581425683, - 42.72266945933606 - ], - [ - 13.286933737919568, - 42.741471290026006 - ], - [ - 13.344541697701102, - 42.702158371310674 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 8, - "NAME_1": "Lazio", - "ID_2": 39, - "NAME_2": "Roma", - "HASC_2": "IT.RM", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.031590348617641, - 42.11645285769678 - ], - [ - 13.01913457352974, - 42.07600043409115 - ], - [ - 13.055723412850444, - 42.017315932240734 - ], - [ - 13.140578380636756, - 42.01617642735043 - ], - [ - 13.199743312304276, - 41.987688805092944 - ], - [ - 13.232439721910012, - 41.9825610330866 - ], - [ - 13.297054055178487, - 41.949515391267916 - ], - [ - 13.24489549699791, - 41.897667918759296 - ], - [ - 13.155369613553635, - 41.84468094136037 - ], - [ - 13.102432569430064, - 41.86120376226971 - ], - [ - 13.06584373010936, - 41.83442539734768 - ], - [ - 13.01057122815681, - 41.82644886311558 - ], - [ - 12.996558481182923, - 41.778589657723 - ], - [ - 13.027697918902671, - 41.748392778130075 - ], - [ - 13.095426195943123, - 41.70680084963414 - ], - [ - 13.092312252171148, - 41.688568771389356 - ], - [ - 13.147584754123699, - 41.661220654022166 - ], - [ - 13.1600405292116, - 41.63558179399043 - ], - [ - 13.151477183838669, - 41.597408380165405 - ], - [ - 13.175610248071472, - 41.58430407392696 - ], - [ - 13.11410985857497, - 41.554676946779175 - ], - [ - 13.081413448969236, - 41.56208372856612 - ], - [ - 13.026140947016684, - 41.6008268948363 - ], - [ - 12.982545734209037, - 41.647546595338575 - ], - [ - 12.944399923002347, - 41.674894712705765 - ], - [ - 12.939729007344384, - 41.71420763142109 - ], - [ - 12.896912280479732, - 41.71249837408564 - ], - [ - 12.855652525501068, - 41.6925570385054 - ], - [ - 12.793373650061572, - 41.62361699264229 - ], - [ - 12.763791184227811, - 41.58031580681091 - ], - [ - 12.698398365016342, - 41.611082438848996 - ], - [ - 12.653246180322707, - 41.60823367662324 - ], - [ - 12.654024666265702, - 41.662929911357615 - ], - [ - 12.633784031747865, - 41.672615702925164 - ], - [ - 12.561384839049452, - 41.62361699264229 - ], - [ - 12.542701176417605, - 41.597408380165405 - ], - [ - 12.57150515630837, - 41.57860654947546 - ], - [ - 12.5925242767692, - 41.54214239298588 - ], - [ - 12.654803152208695, - 41.53416585875378 - ], - [ - 12.68127167427048, - 41.5090967511672 - ], - [ - 12.721752943306152, - 41.506247988941446 - ], - [ - 12.745886007538957, - 41.478899871574264 - ], - [ - 12.739658119995006, - 41.448133239536176 - ], - [ - 12.774689987429724, - 41.416796855052944 - ], - [ - 12.667258927296594, - 41.45724927865857 - ], - [ - 12.619771284773979, - 41.44585422975558 - ], - [ - 12.551264521790536, - 41.53644486853438 - ], - [ - 12.439941031942437, - 41.63957006110648 - ], - [ - 12.351193634441156, - 41.69882431540205 - ], - [ - 12.223521939790192, - 41.744404511014025 - ], - [ - 12.224300425733187, - 41.781438419948756 - ], - [ - 12.1978319036714, - 41.843541436470076 - ], - [ - 12.16202155029369, - 41.895388908978695 - ], - [ - 12.118426337486046, - 41.92957405568768 - ], - [ - 12.050698060445594, - 41.95635242060971 - ], - [ - 12.015666193010878, - 41.988258557538096 - ], - [ - 11.916019992307685, - 42.03896652515642 - ], - [ - 11.834278968293349, - 42.02928073358888 - ], - [ - 11.799247100858633, - 42.08625597810385 - ], - [ - 11.733854281647162, - 42.158614538637856 - ], - [ - 11.828829566692391, - 42.16773057776025 - ], - [ - 11.870089321671058, - 42.19963671468864 - ], - [ - 11.895000871846857, - 42.237810128513665 - ], - [ - 11.979855839633167, - 42.20761324892073 - ], - [ - 12.003988903865972, - 42.158614538637856 - ], - [ - 12.118426337486046, - 42.162602805753906 - ], - [ - 12.137110000117893, - 42.14835899462516 - ], - [ - 12.177591269153565, - 42.179695379108395 - ], - [ - 12.216515566303249, - 42.187671913340495 - ], - [ - 12.272566554198795, - 42.18311389377929 - ], - [ - 12.330174513980328, - 42.147219489734866 - ], - [ - 12.376105184616954, - 42.18653240845019 - ], - [ - 12.39868127696377, - 42.23268235650732 - ], - [ - 12.43604860222747, - 42.201345972024086 - ], - [ - 12.463295610232247, - 42.20647374403043 - ], - [ - 12.489764132294034, - 42.270855770332346 - ], - [ - 12.52090357001378, - 42.295924877918935 - ], - [ - 12.559827867163465, - 42.274274285003244 - ], - [ - 12.63456251769086, - 42.24863542497151 - ], - [ - 12.638454947405828, - 42.208752753811034 - ], - [ - 12.61587885505901, - 42.181974388888996 - ], - [ - 12.657138610037677, - 42.15177750929606 - ], - [ - 12.717082027648189, - 42.15576577641211 - ], - [ - 12.758341782626855, - 42.18482315111474 - ], - [ - 12.85020312390011, - 42.14437072750911 - ], - [ - 12.867329814645972, - 42.104488056348636 - ], - [ - 12.931165661971454, - 42.10961582835498 - ], - [ - 12.979431790437062, - 42.131266421270674 - ], - [ - 13.031590348617641, - 42.11645285769678 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 8, - "NAME_1": "Lazio", - "ID_2": 40, - "NAME_2": "Viterbo", - "HASC_2": "IT.VT", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Viterbe" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.895779357789849, - 42.8354804434757 - ], - [ - 11.932368197110552, - 42.779644703851034 - ], - [ - 11.980634325576162, - 42.76540089272229 - ], - [ - 11.960393691058325, - 42.73064599356816 - ], - [ - 11.926918795509597, - 42.70557688598157 - ], - [ - 11.942488514369472, - 42.68449604551103 - ], - [ - 12.030457425927757, - 42.65145040369235 - ], - [ - 12.103635104569165, - 42.663984957485646 - ], - [ - 12.124654225029994, - 42.65031089880205 - ], - [ - 12.16202155029369, - 42.67765901616924 - ], - [ - 12.205616763101338, - 42.661705947705045 - ], - [ - 12.244541060251022, - 42.629230058331515 - ], - [ - 12.239870144593059, - 42.572824566261694 - ], - [ - 12.275680497970768, - 42.560859764913545 - ], - [ - 12.267895638540832, - 42.53351164754636 - ], - [ - 12.317718738892427, - 42.489640709269835 - ], - [ - 12.35197212038415, - 42.47482714569594 - ], - [ - 12.395567333191797, - 42.50046600572768 - ], - [ - 12.412694023937657, - 42.446909275883606 - ], - [ - 12.445390433543393, - 42.39961982293618 - ], - [ - 12.455510750802311, - 42.3585976468854 - ], - [ - 12.489764132294034, - 42.29706438280924 - ], - [ - 12.52090357001378, - 42.295924877918935 - ], - [ - 12.489764132294034, - 42.270855770332346 - ], - [ - 12.463295610232247, - 42.20647374403043 - ], - [ - 12.43604860222747, - 42.201345972024086 - ], - [ - 12.39868127696377, - 42.23268235650732 - ], - [ - 12.376105184616954, - 42.18653240845019 - ], - [ - 12.330174513980328, - 42.147219489734866 - ], - [ - 12.272566554198795, - 42.18311389377929 - ], - [ - 12.216515566303249, - 42.187671913340495 - ], - [ - 12.177591269153565, - 42.179695379108395 - ], - [ - 12.137110000117893, - 42.14835899462516 - ], - [ - 12.118426337486046, - 42.162602805753906 - ], - [ - 12.003988903865972, - 42.158614538637856 - ], - [ - 11.979855839633167, - 42.20761324892073 - ], - [ - 11.895000871846857, - 42.237810128513665 - ], - [ - 11.870089321671058, - 42.19963671468864 - ], - [ - 11.828829566692391, - 42.16773057776025 - ], - [ - 11.733854281647162, - 42.158614538637856 - ], - [ - 11.706607273642383, - 42.21900829782373 - ], - [ - 11.636543538772951, - 42.29250636324804 - ], - [ - 11.550131599100652, - 42.342644578421215 - ], - [ - 11.450485398397461, - 42.3779692300205 - ], - [ - 11.457491771884403, - 42.40246858516193 - ], - [ - 11.517435189494918, - 42.43437472209031 - ], - [ - 11.618638362084097, - 42.437223484316064 - ], - [ - 11.617859876141104, - 42.48850120437954 - ], - [ - 11.562587374188553, - 42.51812833152732 - ], - [ - 11.585163466535368, - 42.543767191559056 - ], - [ - 11.733854281647162, - 42.60700971297067 - ], - [ - 11.786791325770734, - 42.67139173927259 - ], - [ - 11.820266221319462, - 42.7437502998066 - ], - [ - 11.747088542678055, - 42.78648173319283 - ], - [ - 11.775114036625828, - 42.82180638479211 - ], - [ - 11.803918016516594, - 42.80186504921187 - ], - [ - 11.849070201210228, - 42.83946871059175 - ], - [ - 11.895779357789849, - 42.8354804434757 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 9, - "NAME_1": "Liguria", - "ID_2": 41, - "NAME_2": "Genova", - "HASC_2": "IT.GE", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Genoa" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.20377496691768, - 44.61424757723307 - ], - [ - 9.246591693782332, - 44.62051485412972 - ], - [ - 9.273060215844117, - 44.59658525143343 - ], - [ - 9.30108570979189, - 44.60855005278158 - ], - [ - 9.341566978827561, - 44.57949267807894 - ], - [ - 9.420194059069924, - 44.58120193541439 - ], - [ - 9.494150223654325, - 44.556702580272955 - ], - [ - 9.505827512799229, - 44.53106372024122 - ], - [ - 9.498042653369293, - 44.483774267293796 - ], - [ - 9.471574131307507, - 44.47408847572625 - ], - [ - 9.459118356219609, - 44.44332184368817 - ], - [ - 9.480137476680438, - 44.41027620186948 - ], - [ - 9.473131103193495, - 44.38748610406349 - ], - [ - 9.519061773830122, - 44.35614971958026 - ], - [ - 9.500378111198273, - 44.32766209732277 - ], - [ - 9.574334275782675, - 44.2718263576981 - ], - [ - 9.533853006747002, - 44.25359427945331 - ], - [ - 9.511276914400185, - 44.21656037051858 - ], - [ - 9.494928709597318, - 44.235362201208524 - ], - [ - 9.443548637359735, - 44.237641210989125 - ], - [ - 9.389833107293171, - 44.28151214926565 - ], - [ - 9.237249862466408, - 44.34475467067726 - ], - [ - 9.201439509088697, - 44.30373249462649 - ], - [ - 9.14694549307914, - 44.322534325316425 - ], - [ - 9.154730352509077, - 44.34817318534816 - ], - [ - 9.104128766214487, - 44.370963283154154 - ], - [ - 8.934418830641864, - 44.39432313340529 - ], - [ - 8.840222031539627, - 44.41084595431463 - ], - [ - 8.829323228337715, - 44.42395026055307 - ], - [ - 8.74368977460841, - 44.42679902277882 - ], - [ - 8.635480228532288, - 44.38007932227654 - ], - [ - 8.594998959496616, - 44.40457867741799 - ], - [ - 8.60667624864152, - 44.43705456679152 - ], - [ - 8.665841180309041, - 44.44958912058481 - ], - [ - 8.65494237710713, - 44.50485510776433 - ], - [ - 8.577093782807761, - 44.509982879770675 - ], - [ - 8.614461108071458, - 44.54758654115056 - ], - [ - 8.602005332983559, - 44.5686673816211 - ], - [ - 8.668176638138021, - 44.58348094519499 - ], - [ - 8.721892168204587, - 44.58063218296924 - ], - [ - 8.768601324784207, - 44.52479644334457 - ], - [ - 8.825430798622747, - 44.539610006918466 - ], - [ - 8.827766256451728, - 44.5629698571696 - ], - [ - 8.885374216233261, - 44.55328406560206 - ], - [ - 8.922741541496958, - 44.56809762917595 - ], - [ - 8.883817244347274, - 44.639886437264806 - ], - [ - 8.932083372812881, - 44.67692034619954 - ], - [ - 8.973343127791548, - 44.66438579240625 - ], - [ - 9.01382439682722, - 44.66780430707715 - ], - [ - 9.055862637748879, - 44.62222411146517 - ], - [ - 9.104128766214487, - 44.610829062562175 - ], - [ - 9.114249083473405, - 44.58234144030469 - ], - [ - 9.153951866566082, - 44.57493465851775 - ], - [ - 9.20377496691768, - 44.61424757723307 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 9, - "NAME_1": "Liguria", - "ID_2": 42, - "NAME_2": "Imperia", - "HASC_2": "IT.IM", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Porto Maurizio" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.016583903852306, - 44.111725920611036 - ], - [ - 8.036046052427148, - 44.08779631791475 - ], - [ - 8.030596650826192, - 44.051332161425165 - ], - [ - 7.980773550474597, - 44.014868004935586 - ], - [ - 8.018140875738293, - 43.980113105781456 - ], - [ - 8.08509066683575, - 43.98467112534265 - ], - [ - 8.136470739073333, - 43.93966068217583 - ], - [ - 8.074970349576832, - 43.89180147678325 - ], - [ - 7.911488301548158, - 43.83596573715858 - ], - [ - 7.872564004398473, - 43.83596573715858 - ], - [ - 7.833639707248789, - 43.81545464913319 - ], - [ - 7.807171185187004, - 43.82286143092014 - ], - [ - 7.712974386084768, - 43.8006410855593 - ], - [ - 7.674050088935084, - 43.77614173041786 - ], - [ - 7.590752093034759, - 43.7915250464369 - ], - [ - 7.530030189481251, - 43.78411826464996 - ], - [ - 7.498890751761504, - 43.87242989364816 - ], - [ - 7.561169627200998, - 43.89977801101535 - ], - [ - 7.571289944459917, - 43.945358206627326 - ], - [ - 7.653030968474254, - 43.976124838665406 - ], - [ - 7.665486743562153, - 44.02911181606433 - ], - [ - 7.712974386084768, - 44.06329696277331 - ], - [ - 7.740999880032541, - 44.0781105263472 - ], - [ - 7.719980759571711, - 44.10545864371439 - ], - [ - 7.74722776757649, - 44.13622527575247 - ], - [ - 7.927058020408031, - 44.11115616816589 - ], - [ - 8.016583903852306, - 44.111725920611036 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 9, - "NAME_1": "Liguria", - "ID_2": 43, - "NAME_2": "La Spezia", - "HASC_2": "IT.SP", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Spezia" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.687993223459753, - 44.366975016038104 - ], - [ - 9.730809950324405, - 44.32937135465822 - ], - [ - 9.807101572737787, - 44.283791159046245 - ], - [ - 9.855367701203395, - 44.26897759547235 - ], - [ - 9.860038616861358, - 44.23821096343427 - ], - [ - 9.967469676994487, - 44.17041042246146 - ], - [ - 10.003280030372196, - 44.10887715838529 - ], - [ - 10.022742178947038, - 44.12084195973343 - ], - [ - 10.070229821469653, - 44.09919136681774 - ], - [ - 10.01884974923207, - 44.04449513208337 - ], - [ - 9.963577247279517, - 44.03708835029643 - ], - [ - 9.882614709208173, - 44.080959288572956 - ], - [ - 9.853810729317408, - 44.10431913882409 - ], - [ - 9.821892805654667, - 44.09520309970169 - ], - [ - 9.822671291597661, - 44.057599438321816 - ], - [ - 9.774405163132052, - 44.07526176412146 - ], - [ - 9.726139034666444, - 44.111725920611036 - ], - [ - 9.666974102998923, - 44.14249255264912 - ], - [ - 9.635834665279175, - 44.134516018417024 - ], - [ - 9.606252199445414, - 44.171549927351755 - ], - [ - 9.56732790229573, - 44.1823752238096 - ], - [ - 9.55020121154987, - 44.206304826505885 - ], - [ - 9.511276914400185, - 44.21656037051858 - ], - [ - 9.533853006747002, - 44.25359427945331 - ], - [ - 9.574334275782675, - 44.2718263576981 - ], - [ - 9.500378111198273, - 44.32766209732277 - ], - [ - 9.519061773830122, - 44.35614971958026 - ], - [ - 9.473131103193495, - 44.38748610406349 - ], - [ - 9.480137476680438, - 44.41027620186948 - ], - [ - 9.494928709597318, - 44.425089765443374 - ], - [ - 9.560321528808789, - 44.43933357657212 - ], - [ - 9.656075299797012, - 44.41255521165008 - ], - [ - 9.687993223459753, - 44.366975016038104 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 9, - "NAME_1": "Liguria", - "ID_2": 44, - "NAME_2": "Savona", - "HASC_2": "IT.SV", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.577093782807761, - 44.509982879770675 - ], - [ - 8.65494237710713, - 44.50485510776433 - ], - [ - 8.665841180309041, - 44.44958912058481 - ], - [ - 8.60667624864152, - 44.43705456679152 - ], - [ - 8.594998959496616, - 44.40457867741799 - ], - [ - 8.635480228532288, - 44.38007932227654 - ], - [ - 8.50703004793833, - 44.32766209732277 - ], - [ - 8.450979060042783, - 44.287779426162295 - ], - [ - 8.456428461643739, - 44.25986155634996 - ], - [ - 8.418282650437048, - 44.22624616208613 - ], - [ - 8.41672567855106, - 44.20117705449954 - ], - [ - 8.38480775488832, - 44.18066596647415 - ], - [ - 8.274262750983215, - 44.14306230509427 - ], - [ - 8.2267751084606, - 44.07925003123751 - ], - [ - 8.225218136574615, - 44.042216122302776 - ], - [ - 8.168388662736074, - 44.00062419380684 - ], - [ - 8.174616550280025, - 43.95390449330457 - ], - [ - 8.136470739073333, - 43.93966068217583 - ], - [ - 8.08509066683575, - 43.98467112534265 - ], - [ - 8.018140875738293, - 43.980113105781456 - ], - [ - 7.980773550474597, - 44.014868004935586 - ], - [ - 8.030596650826192, - 44.051332161425165 - ], - [ - 8.036046052427148, - 44.08779631791475 - ], - [ - 8.016583903852306, - 44.111725920611036 - ], - [ - 7.979995064531602, - 44.134516018417024 - ], - [ - 8.010356016308357, - 44.15673636377787 - ], - [ - 8.068742462032883, - 44.145911067320014 - ], - [ - 8.095210984094669, - 44.17610794691295 - ], - [ - 8.066407004203901, - 44.21769987540888 - ], - [ - 8.0913185543797, - 44.27467511992385 - ], - [ - 8.060957602602945, - 44.30145348484589 - ], - [ - 8.107666759182568, - 44.33392937421942 - ], - [ - 8.13569225313034, - 44.33278986932912 - ], - [ - 8.15048348604722, - 44.38577684672804 - ], - [ - 8.204199016113785, - 44.405718182308284 - ], - [ - 8.222882678745632, - 44.430787289894866 - ], - [ - 8.196414156683847, - 44.46497243660385 - ], - [ - 8.22443965063162, - 44.48662302951954 - ], - [ - 8.225218136574615, - 44.51511065177702 - ], - [ - 8.25402211646538, - 44.52992421535092 - ], - [ - 8.262585461838311, - 44.520238423783375 - ], - [ - 8.35133285933959, - 44.48605327707439 - ], - [ - 8.39337110026125, - 44.4780767428423 - ], - [ - 8.405048389406156, - 44.509982879770675 - ], - [ - 8.450200574099789, - 44.498587830867685 - ], - [ - 8.484453955591512, - 44.512261889551276 - ], - [ - 8.577093782807761, - 44.509982879770675 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 45, - "NAME_2": "Bergamo", - "HASC_2": "IT.BG", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Bergame" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.170654508115838, - 46.05800027324242 - ], - [ - 10.229040953840364, - 46.048884234120024 - ], - [ - 10.263294335332088, - 46.02153611675284 - ], - [ - 10.207243347436542, - 46.008431810514395 - ], - [ - 10.177660881602781, - 45.97253740646996 - ], - [ - 10.12238837965023, - 45.95715409045092 - ], - [ - 10.098255315417425, - 45.92980597308374 - ], - [ - 10.109932604562331, - 45.886504787252356 - ], - [ - 10.151192359540996, - 45.86428444189152 - ], - [ - 10.109154118619337, - 45.8158554840538 - ], - [ - 10.064780419868697, - 45.78907711913176 - ], - [ - 10.066337391754685, - 45.68994019367571 - ], - [ - 10.045318271293855, - 45.67569638254697 - ], - [ - 9.943336612761682, - 45.666010590979425 - ], - [ - 9.917646576642891, - 45.65119702740553 - ], - [ - 9.888842596752124, - 45.60333782201296 - ], - [ - 9.851475271488427, - 45.603907574458106 - ], - [ - 9.838241010457534, - 45.55092059705918 - ], - [ - 9.8795007654362, - 45.47571327429942 - ], - [ - 9.890399568638111, - 45.428423821352 - ], - [ - 9.825006749426642, - 45.447225652041936 - ], - [ - 9.808658544623775, - 45.4238658017908 - ], - [ - 9.709012343920582, - 45.48312005608637 - ], - [ - 9.68332230780179, - 45.44209788003559 - ], - [ - 9.60936614321739, - 45.476283026744575 - ], - [ - 9.548644239663883, - 45.46260896806098 - ], - [ - 9.52061874571611, - 45.50534040144721 - ], - [ - 9.539302408347957, - 45.58339648643272 - ], - [ - 9.497264167426298, - 45.640371730947685 - ], - [ - 9.477802018851456, - 45.66999885809547 - ], - [ - 9.44666258113171, - 45.76115924931942 - ], - [ - 9.501156597141268, - 45.77369380311272 - ], - [ - 9.473909589136488, - 45.82611102806649 - ], - [ - 9.4723526172505, - 45.859726422330326 - ], - [ - 9.52295420354509, - 45.875109738349366 - ], - [ - 9.507384484685216, - 45.90131835082625 - ], - [ - 9.52918209108904, - 45.91841092418074 - ], - [ - 9.537745436461972, - 45.95829359534122 - ], - [ - 9.504270540913243, - 45.967979386908766 - ], - [ - 9.492593251768337, - 46.012420077630445 - ], - [ - 9.527625119203053, - 46.012420077630445 - ], - [ - 9.578226705497642, - 46.02096636430769 - ], - [ - 9.644398010652106, - 46.060849035468166 - ], - [ - 9.767398789645108, - 46.06540705502937 - ], - [ - 9.832791608856578, - 46.04774472922972 - ], - [ - 9.90908323126996, - 46.047174976784575 - ], - [ - 9.941779640875694, - 46.06768606480996 - ], - [ - 9.985374853683341, - 46.06711631236482 - ], - [ - 10.036754925920924, - 46.0887669052805 - ], - [ - 10.096698343531438, - 46.0921854199514 - ], - [ - 10.093584399759465, - 46.06996507459056 - ], - [ - 10.170654508115838, - 46.05800027324242 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 46, - "NAME_2": "Brescia", - "HASC_2": "IT.BS", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.51708075274803, - 46.34401600070757 - ], - [ - 10.566903853099625, - 46.327493179798225 - ], - [ - 10.586366001674467, - 46.24886734236757 - ], - [ - 10.542770788866822, - 46.189613088072 - ], - [ - 10.566125367156632, - 46.16796249515631 - ], - [ - 10.542770788866822, - 46.10415022129955 - ], - [ - 10.492169202572232, - 46.06768606480996 - ], - [ - 10.487498286914269, - 46.03065215587523 - ], - [ - 10.457915821080508, - 46.00957131540469 - ], - [ - 10.454801877308535, - 45.977665178476315 - ], - [ - 10.485941315028281, - 45.971397901579664 - ], - [ - 10.508517407375098, - 45.9064461228326 - ], - [ - 10.509295893318093, - 45.82440177073104 - ], - [ - 10.533428957550896, - 45.78907711913176 - ], - [ - 10.564568395270644, - 45.78508885201571 - ], - [ - 10.651758820885938, - 45.8135764742732 - ], - [ - 10.655651250600906, - 45.83351780985343 - ], - [ - 10.752183507532123, - 45.83750607696948 - ], - [ - 10.840930905033403, - 45.83351780985343 - ], - [ - 10.703138893123521, - 45.673417372766366 - ], - [ - 10.62918272853912, - 45.60276806956781 - ], - [ - 10.643973961456002, - 45.455202186274036 - ], - [ - 10.655651250600906, - 45.417028772449 - ], - [ - 10.639303045798037, - 45.386831892856065 - ], - [ - 10.54899867641077, - 45.386831892856065 - ], - [ - 10.512409837090068, - 45.41304050533296 - ], - [ - 10.468036138339427, - 45.40734298088146 - ], - [ - 10.45168793353656, - 45.38398313063032 - ], - [ - 10.469593110225414, - 45.360053527934035 - ], - [ - 10.467257652396434, - 45.32586838122505 - ], - [ - 10.432225784961718, - 45.31390357987691 - ], - [ - 10.362940536035278, - 45.24724254379439 - ], - [ - 10.362162050092286, - 45.216475911756305 - ], - [ - 10.318566837284639, - 45.20565061529847 - ], - [ - 10.267186765047056, - 45.25180056335559 - ], - [ - 10.220477608467434, - 45.2255919508787 - ], - [ - 10.1013692591894, - 45.24895180112984 - ], - [ - 10.05076767289481, - 45.28142769050338 - ], - [ - 9.994716684999265, - 45.29168323451607 - ], - [ - 9.96824816293748, - 45.31390357987691 - ], - [ - 9.899741399954035, - 45.338972687463496 - ], - [ - 9.884171681094163, - 45.358344270598586 - ], - [ - 9.890399568638111, - 45.428423821352 - ], - [ - 9.8795007654362, - 45.47571327429942 - ], - [ - 9.838241010457534, - 45.55092059705918 - ], - [ - 9.851475271488427, - 45.603907574458106 - ], - [ - 9.888842596752124, - 45.60333782201296 - ], - [ - 9.917646576642891, - 45.65119702740553 - ], - [ - 9.943336612761682, - 45.666010590979425 - ], - [ - 10.045318271293855, - 45.67569638254697 - ], - [ - 10.066337391754685, - 45.68994019367571 - ], - [ - 10.064780419868697, - 45.78907711913176 - ], - [ - 10.109154118619337, - 45.8158554840538 - ], - [ - 10.151192359540996, - 45.86428444189152 - ], - [ - 10.109932604562331, - 45.886504787252356 - ], - [ - 10.098255315417425, - 45.92980597308374 - ], - [ - 10.12238837965023, - 45.95715409045092 - ], - [ - 10.177660881602781, - 45.97253740646996 - ], - [ - 10.207243347436542, - 46.008431810514395 - ], - [ - 10.263294335332088, - 46.02153611675284 - ], - [ - 10.229040953840364, - 46.048884234120024 - ], - [ - 10.170654508115838, - 46.05800027324242 - ], - [ - 10.183110283203737, - 46.08079037104841 - ], - [ - 10.165205106514883, - 46.107568735970446 - ], - [ - 10.160534190856922, - 46.16055571336936 - ], - [ - 10.295990744937821, - 46.22436798722613 - ], - [ - 10.328687154543557, - 46.2881802610829 - ], - [ - 10.372282367351204, - 46.29387778553439 - ], - [ - 10.421326981759806, - 46.335469714030324 - ], - [ - 10.457915821080508, - 46.353132039829966 - ], - [ - 10.51708075274803, - 46.34401600070757 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 47, - "NAME_2": "Como", - "HASC_2": "IT.CO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Côme" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.415523143411962, - 46.137765615563374 - ], - [ - 9.358693669573423, - 46.15143967424697 - ], - [ - 9.302642681677877, - 46.12751007155068 - ], - [ - 9.290965392532971, - 46.06027928302302 - ], - [ - 9.262939898585199, - 46.02723364120433 - ], - [ - 9.285515990932016, - 45.967979386908766 - ], - [ - 9.269167786129149, - 45.92638745841283 - ], - [ - 9.290186906589978, - 45.893911569039304 - ], - [ - 9.33300363345463, - 45.86542394678182 - ], - [ - 9.28629447687501, - 45.82383201828589 - ], - [ - 9.245034721896344, - 45.76799627866122 - ], - [ - 9.24814866566832, - 45.743496923519785 - ], - [ - 9.195990107487741, - 45.69905623279811 - ], - [ - 9.104128766214487, - 45.69791672790781 - ], - [ - 9.068318412836778, - 45.68595192655967 - ], - [ - 9.056641123691872, - 45.64720876028949 - ], - [ - 8.928969429040908, - 45.65575504696673 - ], - [ - 8.921963055553963, - 45.67227786787607 - ], - [ - 8.952324007330718, - 45.73210187461679 - ], - [ - 8.901722421036128, - 45.78565860446086 - ], - [ - 8.914178196124027, - 45.83522706718888 - ], - [ - 8.953102493273711, - 45.84605236364673 - ], - [ - 8.99280527636639, - 45.822692513395594 - ], - [ - 9.027837143801106, - 45.822692513395594 - ], - [ - 9.073767814437733, - 45.915562161954995 - ], - [ - 9.017716826542188, - 45.93037572552888 - ], - [ - 9.026280171915118, - 45.99418799938565 - ], - [ - 9.009931967112252, - 46.03634968032673 - ], - [ - 9.021609256257156, - 46.05230274879092 - ], - [ - 9.078438730095694, - 46.06597680747451 - ], - [ - 9.073767814437733, - 46.116684775092835 - ], - [ - 9.122033942903341, - 46.13434710089248 - ], - [ - 9.246591693782332, - 46.23348402634853 - ], - [ - 9.33300363345463, - 46.23576303612913 - ], - [ - 9.424864974727885, - 46.188473583181704 - ], - [ - 9.415523143411962, - 46.137765615563374 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 48, - "NAME_2": "Cremona", - "HASC_2": "IT.CR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Crémone" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.890399568638111, - 45.428423821352 - ], - [ - 9.884171681094163, - 45.358344270598586 - ], - [ - 9.899741399954035, - 45.338972687463496 - ], - [ - 9.96824816293748, - 45.31390357987691 - ], - [ - 9.994716684999265, - 45.29168323451607 - ], - [ - 10.05076767289481, - 45.28142769050338 - ], - [ - 10.1013692591894, - 45.24895180112984 - ], - [ - 10.220477608467434, - 45.2255919508787 - ], - [ - 10.267186765047056, - 45.25180056335559 - ], - [ - 10.318566837284639, - 45.20565061529847 - ], - [ - 10.310781977854703, - 45.193685813950324 - ], - [ - 10.366054479807254, - 45.162349429467085 - ], - [ - 10.381624198667128, - 45.138989579215945 - ], - [ - 10.438453672505666, - 45.13671056943535 - ], - [ - 10.464143708624459, - 45.09454888849427 - ], - [ - 10.418213037987831, - 45.092839631158824 - ], - [ - 10.412763636386876, - 45.04725943554685 - ], - [ - 10.447017017878597, - 45.047829187991994 - ], - [ - 10.495283146344207, - 45.07517730535918 - ], - [ - 10.540435331037841, - 45.05580572222409 - ], - [ - 10.503846491717137, - 45.02276008040541 - ], - [ - 10.465700680510446, - 45.01592305106361 - ], - [ - 10.456358849194523, - 44.98344716169008 - ], - [ - 10.508517407375098, - 44.97319161767739 - ], - [ - 10.464922194567453, - 44.937866966078104 - ], - [ - 10.43689670061968, - 44.944134242974755 - ], - [ - 10.417434552044838, - 44.97831938968373 - ], - [ - 10.366054479807254, - 44.966924340780736 - ], - [ - 10.274971624476994, - 44.999969982599424 - ], - [ - 10.254730989959157, - 45.019341565734514 - ], - [ - 10.158977218970934, - 45.04498042576625 - ], - [ - 10.107597146733351, - 45.023329832850564 - ], - [ - 10.084242568443539, - 45.04498042576625 - ], - [ - 10.058552532324747, - 45.0421316635405 - ], - [ - 10.021963693004045, - 45.07802606758493 - ], - [ - 10.030527038376976, - 45.09568839338457 - ], - [ - 9.993938199056272, - 45.1304432925387 - ], - [ - 9.891956540524099, - 45.131582797429004 - ], - [ - 9.87327287789225, - 45.15836116235104 - ], - [ - 9.82889917914161, - 45.154942647680144 - ], - [ - 9.785303966333963, - 45.16747720147343 - ], - [ - 9.709790829863575, - 45.25806784025224 - ], - [ - 9.617151002647327, - 45.295671501632114 - ], - [ - 9.589125508699555, - 45.35720476570829 - ], - [ - 9.552536669378851, - 45.34011219235379 - ], - [ - 9.510498428457192, - 45.34979798392134 - ], - [ - 9.45522592650464, - 45.38740164530122 - ], - [ - 9.484808392338401, - 45.44950466182254 - ], - [ - 9.52061874571611, - 45.50534040144721 - ], - [ - 9.548644239663883, - 45.46260896806098 - ], - [ - 9.60936614321739, - 45.476283026744575 - ], - [ - 9.68332230780179, - 45.44209788003559 - ], - [ - 9.709012343920582, - 45.48312005608637 - ], - [ - 9.808658544623775, - 45.4238658017908 - ], - [ - 9.825006749426642, - 45.447225652041936 - ], - [ - 9.890399568638111, - 45.428423821352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 49, - "NAME_2": "Lecco", - "HASC_2": "IT.LC", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.527625119203053, - 46.012420077630445 - ], - [ - 9.492593251768337, - 46.012420077630445 - ], - [ - 9.504270540913243, - 45.967979386908766 - ], - [ - 9.537745436461972, - 45.95829359534122 - ], - [ - 9.52918209108904, - 45.91841092418074 - ], - [ - 9.507384484685216, - 45.90131835082625 - ], - [ - 9.52295420354509, - 45.875109738349366 - ], - [ - 9.4723526172505, - 45.859726422330326 - ], - [ - 9.473909589136488, - 45.82611102806649 - ], - [ - 9.501156597141268, - 45.77369380311272 - ], - [ - 9.44666258113171, - 45.76115924931942 - ], - [ - 9.477802018851456, - 45.66999885809547 - ], - [ - 9.448219553017697, - 45.650627274960385 - ], - [ - 9.415523143411962, - 45.677405639882416 - ], - [ - 9.369592472775334, - 45.66487108608912 - ], - [ - 9.315098456765776, - 45.66942910565032 - ], - [ - 9.2753956736731, - 45.74292717107463 - ], - [ - 9.24814866566832, - 45.743496923519785 - ], - [ - 9.245034721896344, - 45.76799627866122 - ], - [ - 9.28629447687501, - 45.82383201828589 - ], - [ - 9.33300363345463, - 45.86542394678182 - ], - [ - 9.290186906589978, - 45.893911569039304 - ], - [ - 9.269167786129149, - 45.92638745841283 - ], - [ - 9.285515990932016, - 45.967979386908766 - ], - [ - 9.262939898585199, - 46.02723364120433 - ], - [ - 9.290965392532971, - 46.06027928302302 - ], - [ - 9.302642681677877, - 46.12751007155068 - ], - [ - 9.358693669573423, - 46.15143967424697 - ], - [ - 9.415523143411962, - 46.137765615563374 - ], - [ - 9.416301629354955, - 46.0956039346223 - ], - [ - 9.511276914400185, - 46.06369779769392 - ], - [ - 9.527625119203053, - 46.012420077630445 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 50, - "NAME_2": "Lodi", - "HASC_2": "IT.LO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.532296034861016, - 45.166337696583135 - ], - [ - 9.479358990737445, - 45.162349429467085 - ], - [ - 9.439656207644767, - 45.18855804194398 - ], - [ - 9.471574131307507, - 45.20223210062757 - ], - [ - 9.487143850167381, - 45.2347079900011 - ], - [ - 9.54163786617694, - 45.21761541664661 - ], - [ - 9.516726316001142, - 45.187988289498826 - ], - [ - 9.532296034861016, - 45.166337696583135 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 50, - "NAME_2": "Lodi", - "HASC_2": "IT.LO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.484808392338401, - 45.44950466182254 - ], - [ - 9.45522592650464, - 45.38740164530122 - ], - [ - 9.510498428457192, - 45.34979798392134 - ], - [ - 9.552536669378851, - 45.34011219235379 - ], - [ - 9.589125508699555, - 45.35720476570829 - ], - [ - 9.617151002647327, - 45.295671501632114 - ], - [ - 9.709790829863575, - 45.25806784025224 - ], - [ - 9.785303966333963, - 45.16747720147343 - ], - [ - 9.82889917914161, - 45.154942647680144 - ], - [ - 9.87327287789225, - 45.15836116235104 - ], - [ - 9.891956540524099, - 45.131582797429004 - ], - [ - 9.902076857783017, - 45.09568839338457 - ], - [ - 9.884171681094163, - 45.07517730535918 - ], - [ - 9.836684038571548, - 45.07289829557858 - ], - [ - 9.779854564733007, - 45.09056062137822 - ], - [ - 9.713683259578545, - 45.05979398934014 - ], - [ - 9.58834702275656, - 45.10081616539092 - ], - [ - 9.549422725606876, - 45.1338618072096 - ], - [ - 9.532296034861016, - 45.166337696583135 - ], - [ - 9.516726316001142, - 45.187988289498826 - ], - [ - 9.54163786617694, - 45.21761541664661 - ], - [ - 9.487143850167381, - 45.2347079900011 - ], - [ - 9.471574131307507, - 45.20223210062757 - ], - [ - 9.439656207644767, - 45.18855804194398 - ], - [ - 9.403845854267058, - 45.20451111040816 - ], - [ - 9.371927930604315, - 45.246103038904096 - ], - [ - 9.316655428651764, - 45.26034685003283 - ], - [ - 9.358693669573423, - 45.29339249185152 - ], - [ - 9.340010006941574, - 45.31390357987691 - ], - [ - 9.38126976192024, - 45.319601104328406 - ], - [ - 9.354801239858453, - 45.364041795050085 - ], - [ - 9.408516769925019, - 45.394808427088165 - ], - [ - 9.427200432556868, - 45.4227262969005 - ], - [ - 9.418637087183937, - 45.45235342404828 - ], - [ - 9.452111982732665, - 45.470015749847924 - ], - [ - 9.484808392338401, - 45.44950466182254 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 51, - "NAME_2": "Mantua", - "HASC_2": "IT.MN", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Mantoue|Mantova" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.206819298240436, - 45.110501956958466 - ], - [ - 11.178793804292663, - 45.098537155610316 - ], - [ - 11.202148382582475, - 45.06093349423044 - ], - [ - 11.332934021005414, - 44.99313295325763 - ], - [ - 11.415453530962745, - 44.96806384567104 - ], - [ - 11.427909306050644, - 44.95097127231655 - ], - [ - 11.327484619404458, - 44.96293607366469 - ], - [ - 11.247300567276108, - 44.95211077720685 - ], - [ - 11.153103768173871, - 44.93444845140721 - ], - [ - 11.07447668793151, - 44.96407557855499 - ], - [ - 11.060463940957623, - 44.9504015198714 - ], - [ - 10.998963551461122, - 44.955529291877745 - ], - [ - 10.942134077622583, - 44.92305340250421 - ], - [ - 10.889197033499013, - 44.915076868272116 - ], - [ - 10.823025728344549, - 44.93729721363295 - ], - [ - 10.744398648102187, - 44.94983176742625 - ], - [ - 10.732721358957281, - 44.99256320081248 - ], - [ - 10.687569174263647, - 44.98743542880613 - ], - [ - 10.62918272853912, - 44.92533241228481 - ], - [ - 10.574688712529563, - 44.90994909626577 - ], - [ - 10.505403463603123, - 44.92362315494936 - ], - [ - 10.464922194567453, - 44.937866966078104 - ], - [ - 10.508517407375098, - 44.97319161767739 - ], - [ - 10.456358849194523, - 44.98344716169008 - ], - [ - 10.465700680510446, - 45.01592305106361 - ], - [ - 10.503846491717137, - 45.02276008040541 - ], - [ - 10.540435331037841, - 45.05580572222409 - ], - [ - 10.495283146344207, - 45.07517730535918 - ], - [ - 10.447017017878597, - 45.047829187991994 - ], - [ - 10.412763636386876, - 45.04725943554685 - ], - [ - 10.418213037987831, - 45.092839631158824 - ], - [ - 10.464143708624459, - 45.09454888849427 - ], - [ - 10.438453672505666, - 45.13671056943535 - ], - [ - 10.381624198667128, - 45.138989579215945 - ], - [ - 10.366054479807254, - 45.162349429467085 - ], - [ - 10.310781977854703, - 45.193685813950324 - ], - [ - 10.318566837284639, - 45.20565061529847 - ], - [ - 10.362162050092286, - 45.216475911756305 - ], - [ - 10.362940536035278, - 45.24724254379439 - ], - [ - 10.432225784961718, - 45.31390357987691 - ], - [ - 10.467257652396434, - 45.32586838122505 - ], - [ - 10.469593110225414, - 45.360053527934035 - ], - [ - 10.45168793353656, - 45.38398313063032 - ], - [ - 10.468036138339427, - 45.40734298088146 - ], - [ - 10.512409837090068, - 45.41304050533296 - ], - [ - 10.54899867641077, - 45.386831892856065 - ], - [ - 10.639303045798037, - 45.386831892856065 - ], - [ - 10.655651250600906, - 45.417028772449 - ], - [ - 10.717151640097407, - 45.417028772449 - ], - [ - 10.698467977465558, - 45.381134368404574 - ], - [ - 10.738170760558237, - 45.28826471984517 - ], - [ - 10.784101431194864, - 45.31618258965751 - ], - [ - 10.847937278520346, - 45.257498087807086 - ], - [ - 10.93512770413564, - 45.23413823755595 - ], - [ - 10.947583479223539, - 45.206790120188764 - ], - [ - 10.991178692031184, - 45.19710432862122 - ], - [ - 10.998963551461122, - 45.15950066724134 - ], - [ - 11.0511221096417, - 45.15038462811894 - ], - [ - 11.029324503237877, - 45.12417601564206 - ], - [ - 11.073698201988517, - 45.09967666050062 - ], - [ - 11.13986950714298, - 45.12474576808721 - ], - [ - 11.206819298240436, - 45.110501956958466 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 52, - "NAME_2": "Milano", - "HASC_2": "IT.MA", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Milan" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.054305665862891, - 45.62384891003835 - ], - [ - 9.110356653758437, - 45.62156990025775 - ], - [ - 9.104128766214487, - 45.58909401088421 - ], - [ - 9.171857043254938, - 45.59251252555511 - ], - [ - 9.218566199834559, - 45.57997797176182 - ], - [ - 9.278509617445073, - 45.545792825052835 - ], - [ - 9.325218774024695, - 45.54009530060134 - ], - [ - 9.483251420452412, - 45.60675633668386 - ], - [ - 9.497264167426298, - 45.640371730947685 - ], - [ - 9.539302408347957, - 45.58339648643272 - ], - [ - 9.52061874571611, - 45.50534040144721 - ], - [ - 9.484808392338401, - 45.44950466182254 - ], - [ - 9.452111982732665, - 45.470015749847924 - ], - [ - 9.418637087183937, - 45.45235342404828 - ], - [ - 9.427200432556868, - 45.4227262969005 - ], - [ - 9.408516769925019, - 45.394808427088165 - ], - [ - 9.354801239858453, - 45.364041795050085 - ], - [ - 9.38126976192024, - 45.319601104328406 - ], - [ - 9.340010006941574, - 45.31390357987691 - ], - [ - 9.285515990932016, - 45.332705410566845 - ], - [ - 9.226351059264495, - 45.327007886115354 - ], - [ - 9.159401268167038, - 45.29909001630301 - ], - [ - 9.141496091478185, - 45.31105481765116 - ], - [ - 9.03717897511703, - 45.30421778830936 - ], - [ - 8.98424193099346, - 45.26604437448433 - ], - [ - 8.945317633843775, - 45.292252986961216 - ], - [ - 8.945317633843775, - 45.31447333232206 - ], - [ - 8.867469039544407, - 45.34410045946984 - ], - [ - 8.844114461254595, - 45.394808427088165 - ], - [ - 8.790398931188031, - 45.46317872050613 - ], - [ - 8.788841959302044, - 45.48710832320242 - ], - [ - 8.72889854169153, - 45.503061391666606 - ], - [ - 8.7078794212307, - 45.55946688373643 - ], - [ - 8.807525621933891, - 45.60276806956781 - ], - [ - 8.84956386285555, - 45.570861932639424 - ], - [ - 8.869026011430392, - 45.59308227800026 - ], - [ - 8.923520027439952, - 45.61245386113535 - ], - [ - 8.940646718185812, - 45.64379024561859 - ], - [ - 9.004482565511296, - 45.57883846687152 - ], - [ - 9.06053355340684, - 45.58282673398757 - ], - [ - 9.054305665862891, - 45.62384891003835 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 53, - "NAME_2": "Monza and Brianza", - "HASC_2": "IT.MZ", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Monza e Brianza" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.477802018851456, - 45.66999885809547 - ], - [ - 9.497264167426298, - 45.640371730947685 - ], - [ - 9.483251420452412, - 45.60675633668386 - ], - [ - 9.325218774024695, - 45.54009530060134 - ], - [ - 9.278509617445073, - 45.545792825052835 - ], - [ - 9.218566199834559, - 45.57997797176182 - ], - [ - 9.171857043254938, - 45.59251252555511 - ], - [ - 9.104128766214487, - 45.58909401088421 - ], - [ - 9.110356653758437, - 45.62156990025775 - ], - [ - 9.054305665862891, - 45.62384891003835 - ], - [ - 9.056641123691872, - 45.64720876028949 - ], - [ - 9.068318412836778, - 45.68595192655967 - ], - [ - 9.104128766214487, - 45.69791672790781 - ], - [ - 9.195990107487741, - 45.69905623279811 - ], - [ - 9.24814866566832, - 45.743496923519785 - ], - [ - 9.2753956736731, - 45.74292717107463 - ], - [ - 9.315098456765776, - 45.66942910565032 - ], - [ - 9.369592472775334, - 45.66487108608912 - ], - [ - 9.415523143411962, - 45.677405639882416 - ], - [ - 9.448219553017697, - 45.650627274960385 - ], - [ - 9.477802018851456, - 45.66999885809547 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 54, - "NAME_2": "Pavia", - "HASC_2": "IT.PV", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Pavie" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.340010006941574, - 45.31390357987691 - ], - [ - 9.358693669573423, - 45.29339249185152 - ], - [ - 9.316655428651764, - 45.26034685003283 - ], - [ - 9.371927930604315, - 45.246103038904096 - ], - [ - 9.403845854267058, - 45.20451111040816 - ], - [ - 9.439656207644767, - 45.18855804194398 - ], - [ - 9.479358990737445, - 45.162349429467085 - ], - [ - 9.532296034861016, - 45.166337696583135 - ], - [ - 9.549422725606876, - 45.1338618072096 - ], - [ - 9.551758183435858, - 45.09625814582972 - ], - [ - 9.502713569027256, - 45.10423468006182 - ], - [ - 9.44043469358776, - 45.09454888849427 - ], - [ - 9.371927930604315, - 45.0489686928823 - ], - [ - 9.376598846262278, - 45.02105082306996 - ], - [ - 9.348573352314505, - 44.998260725263975 - ], - [ - 9.315876942708769, - 44.937866966078104 - ], - [ - 9.28240204716004, - 44.89684479002732 - ], - [ - 9.342345464770556, - 44.87063617755044 - ], - [ - 9.355579725801448, - 44.81309118059032 - ], - [ - 9.32210483025272, - 44.79998687435187 - ], - [ - 9.287072962818003, - 44.760104203191396 - ], - [ - 9.333782119397625, - 44.73617460049511 - ], - [ - 9.299528737905902, - 44.682048118205884 - ], - [ - 9.201439509088697, - 44.68717589021224 - ], - [ - 9.21467377011959, - 44.7532671738496 - ], - [ - 9.172635529197931, - 44.77263875698469 - ], - [ - 9.16173672599602, - 44.81480043792577 - ], - [ - 9.110356653758437, - 44.806254151248524 - ], - [ - 9.054305665862891, - 44.84556706996385 - ], - [ - 9.071432356608753, - 44.86607815798924 - ], - [ - 9.031729573516074, - 44.889438008240376 - ], - [ - 8.971007669962567, - 44.9447039954199 - ], - [ - 8.978792529392503, - 44.96806384567104 - ], - [ - 8.902500906979121, - 45.00851626927667 - ], - [ - 8.882260272461286, - 45.05523596977894 - ], - [ - 8.824652312679753, - 45.04725943554685 - ], - [ - 8.769379810727202, - 45.007376764386365 - ], - [ - 8.706322449344713, - 45.03814339642445 - ], - [ - 8.65260691927815, - 45.02446933774086 - ], - [ - 8.635480228532288, - 45.0421316635405 - ], - [ - 8.647157517677194, - 45.07631681024948 - ], - [ - 8.609790192413495, - 45.10936245206817 - ], - [ - 8.58098621252273, - 45.15380314278984 - ], - [ - 8.549068288859988, - 45.16918645880888 - ], - [ - 8.563859521776868, - 45.19710432862122 - ], - [ - 8.526492196513171, - 45.220464178872355 - ], - [ - 8.543618887259033, - 45.253509820691036 - ], - [ - 8.513257935482278, - 45.29168323451607 - ], - [ - 8.514814907368265, - 45.31447333232206 - ], - [ - 8.528049168399159, - 45.34467021191499 - ], - [ - 8.61290413618547, - 45.35549550837284 - ], - [ - 8.656499348993117, - 45.3264381336702 - ], - [ - 8.667398152195029, - 45.29339249185152 - ], - [ - 8.717221252546624, - 45.303648035864214 - ], - [ - 8.727341569805542, - 45.33384491545715 - ], - [ - 8.794291360903, - 45.37999486351427 - ], - [ - 8.844114461254595, - 45.394808427088165 - ], - [ - 8.867469039544407, - 45.34410045946984 - ], - [ - 8.945317633843775, - 45.31447333232206 - ], - [ - 8.945317633843775, - 45.292252986961216 - ], - [ - 8.98424193099346, - 45.26604437448433 - ], - [ - 9.03717897511703, - 45.30421778830936 - ], - [ - 9.141496091478185, - 45.31105481765116 - ], - [ - 9.159401268167038, - 45.29909001630301 - ], - [ - 9.226351059264495, - 45.327007886115354 - ], - [ - 9.285515990932016, - 45.332705410566845 - ], - [ - 9.340010006941574, - 45.31390357987691 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 55, - "NAME_2": "Sondrio", - "HASC_2": "IT.SO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.456358849194523, - 46.53602257472302 - ], - [ - 10.47737796965535, - 46.49670965600769 - ], - [ - 10.552891106125738, - 46.49215163644649 - ], - [ - 10.62295484099517, - 46.44885045061511 - ], - [ - 10.631518186368101, - 46.403270255003136 - ], - [ - 10.608163608078291, - 46.379910404751996 - ], - [ - 10.56768233904262, - 46.3787708998617 - ], - [ - 10.51708075274803, - 46.34401600070757 - ], - [ - 10.457915821080508, - 46.353132039829966 - ], - [ - 10.421326981759806, - 46.335469714030324 - ], - [ - 10.372282367351204, - 46.29387778553439 - ], - [ - 10.328687154543557, - 46.2881802610829 - ], - [ - 10.295990744937821, - 46.22436798722613 - ], - [ - 10.160534190856922, - 46.16055571336936 - ], - [ - 10.165205106514883, - 46.107568735970446 - ], - [ - 10.183110283203737, - 46.08079037104841 - ], - [ - 10.170654508115838, - 46.05800027324242 - ], - [ - 10.093584399759465, - 46.06996507459056 - ], - [ - 10.096698343531438, - 46.0921854199514 - ], - [ - 10.036754925920924, - 46.0887669052805 - ], - [ - 9.985374853683341, - 46.06711631236482 - ], - [ - 9.941779640875694, - 46.06768606480996 - ], - [ - 9.90908323126996, - 46.047174976784575 - ], - [ - 9.832791608856578, - 46.04774472922972 - ], - [ - 9.767398789645108, - 46.06540705502937 - ], - [ - 9.644398010652106, - 46.060849035468166 - ], - [ - 9.578226705497642, - 46.02096636430769 - ], - [ - 9.527625119203053, - 46.012420077630445 - ], - [ - 9.511276914400185, - 46.06369779769392 - ], - [ - 9.416301629354955, - 46.0956039346223 - ], - [ - 9.415523143411962, - 46.137765615563374 - ], - [ - 9.424864974727885, - 46.188473583181704 - ], - [ - 9.33300363345463, - 46.23576303612913 - ], - [ - 9.246591693782332, - 46.23348402634853 - ], - [ - 9.25904746887023, - 46.27393644995416 - ], - [ - 9.297193280076922, - 46.31552837845008 - ], - [ - 9.28006658933106, - 46.36566659362326 - ], - [ - 9.278509617445073, - 46.41922332346733 - ], - [ - 9.249705637554307, - 46.436315896821824 - ], - [ - 9.278509617445073, - 46.464803519079304 - ], - [ - 9.285515990932016, - 46.504116437794636 - ], - [ - 9.37270641654731, - 46.50240718045919 - ], - [ - 9.389833107293171, - 46.475059063092004 - ], - [ - 9.464567757820564, - 46.51437198180733 - ], - [ - 9.453668954618653, - 46.430048619925174 - ], - [ - 9.470795645364515, - 46.3787708998617 - ], - [ - 9.497264167426298, - 46.37079436562961 - ], - [ - 9.548644239663883, - 46.310400606443736 - ], - [ - 9.63894860905115, - 46.29444753797954 - ], - [ - 9.672423504599879, - 46.30812159666314 - ], - [ - 9.714461745521538, - 46.300714814876194 - ], - [ - 9.726139034666444, - 46.34686476293332 - ], - [ - 9.76973424747409, - 46.34116723848182 - ], - [ - 9.868601962234287, - 46.367945603403854 - ], - [ - 9.902076857783017, - 46.385607929203495 - ], - [ - 9.94489358464767, - 46.3821894145326 - ], - [ - 9.990824255284297, - 46.34629501048817 - ], - [ - 9.996273656885252, - 46.28988951841835 - ], - [ - 10.054660102609779, - 46.27108768772841 - ], - [ - 10.047653729122835, - 46.23348402634853 - ], - [ - 10.123166865593223, - 46.22949575923248 - ], - [ - 10.173768451887813, - 46.25912288638026 - ], - [ - 10.152749331426984, - 46.29786605265044 - ], - [ - 10.102926231075388, - 46.33888822870122 - ], - [ - 10.128616267194179, - 46.38275916697775 - ], - [ - 10.165205106514883, - 46.41352579901583 - ], - [ - 10.131730210966154, - 46.434606639486375 - ], - [ - 10.080350138728571, - 46.426060352809124 - ], - [ - 10.039090383749905, - 46.446001688389366 - ], - [ - 10.057774046381754, - 46.548557128516315 - ], - [ - 10.12472383747921, - 46.61009039259248 - ], - [ - 10.183110283203737, - 46.62889222328242 - ], - [ - 10.258623419674125, - 46.61521816459883 - ], - [ - 10.24305370081425, - 46.59641633390889 - ], - [ - 10.295212258994829, - 46.55653366274841 - ], - [ - 10.417434552044838, - 46.55482440541296 - ], - [ - 10.456358849194523, - 46.53602257472302 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 10, - "NAME_1": "Lombardia", - "ID_2": 56, - "NAME_2": "Varese", - "HASC_2": "IT.VA", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.914178196124027, - 45.83522706718888 - ], - [ - 8.901722421036128, - 45.78565860446086 - ], - [ - 8.952324007330718, - 45.73210187461679 - ], - [ - 8.921963055553963, - 45.67227786787607 - ], - [ - 8.928969429040908, - 45.65575504696673 - ], - [ - 9.056641123691872, - 45.64720876028949 - ], - [ - 9.054305665862891, - 45.62384891003835 - ], - [ - 9.06053355340684, - 45.58282673398757 - ], - [ - 9.004482565511296, - 45.57883846687152 - ], - [ - 8.940646718185812, - 45.64379024561859 - ], - [ - 8.923520027439952, - 45.61245386113535 - ], - [ - 8.869026011430392, - 45.59308227800026 - ], - [ - 8.84956386285555, - 45.570861932639424 - ], - [ - 8.807525621933891, - 45.60276806956781 - ], - [ - 8.7078794212307, - 45.55946688373643 - ], - [ - 8.68686030076987, - 45.618721138032 - ], - [ - 8.689974244541846, - 45.64094148339284 - ], - [ - 8.647157517677194, - 45.72241608304925 - ], - [ - 8.603562304869547, - 45.72697410261044 - ], - [ - 8.556853148289925, - 45.775972812893315 - ], - [ - 8.56463800771986, - 45.80844870226685 - ], - [ - 8.594998959496616, - 45.82895979029224 - ], - [ - 8.572422867149799, - 45.90245785571655 - ], - [ - 8.720335196318599, - 46.01185032518529 - ], - [ - 8.729677027634523, - 46.030082403430086 - ], - [ - 8.707100935287706, - 46.08249962838386 - ], - [ - 8.717999738489619, - 46.103010716409244 - ], - [ - 8.74368977460841, - 46.124661309324935 - ], - [ - 8.782614071758093, - 46.0978829444029 - ], - [ - 8.811418051648861, - 46.10073170662865 - ], - [ - 8.851899320684533, - 46.07566259904206 - ], - [ - 8.819981397021792, - 46.027803393649485 - ], - [ - 8.791177417131024, - 46.00957131540469 - ], - [ - 8.859684180114469, - 45.963421367347564 - ], - [ - 8.916513653953007, - 45.915562161954995 - ], - [ - 8.932083372812881, - 45.87397023345906 - ], - [ - 8.914178196124027, - 45.83522706718888 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 11, - "NAME_1": "Marche", - "ID_2": 57, - "NAME_2": "Ancona", - "HASC_2": "IT.AN", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Ancône" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.64192332792469, - 43.474742686933666 - ], - [ - 13.659050018670552, - 43.43486001577319 - ], - [ - 13.58898628380112, - 43.420616204644446 - ], - [ - 13.583536882200164, - 43.443976054895586 - ], - [ - 13.481555223667991, - 43.43713902555379 - ], - [ - 13.448858814062255, - 43.44625506467619 - ], - [ - 13.336756838271164, - 43.39269833483211 - ], - [ - 13.286155251976576, - 43.4268834815411 - ], - [ - 13.275256448774664, - 43.45821986602433 - ], - [ - 13.245673982940904, - 43.46049887580493 - ], - [ - 13.21142060144918, - 43.4177674424187 - ], - [ - 13.154591127610642, - 43.414918680192955 - ], - [ - 13.09309073811414, - 43.43656927310864 - ], - [ - 13.072071617653311, - 43.41150016552206 - ], - [ - 13.041710665876558, - 43.33686259520744 - ], - [ - 12.952963268375278, - 43.27874784580217 - ], - [ - 12.882899533505846, - 43.26792254934433 - ], - [ - 12.897690766422725, - 43.2331676501902 - ], - [ - 12.863437384931004, - 43.21208680971966 - ], - [ - 12.837747348812211, - 43.2183540866163 - ], - [ - 12.826070059667305, - 43.267352796899175 - ], - [ - 12.790259706289596, - 43.28558487514397 - ], - [ - 12.803493967320488, - 43.308374972949956 - ], - [ - 12.747442979424944, - 43.391558829941815 - ], - [ - 12.775468473372715, - 43.402953878844805 - ], - [ - 12.768462099885774, - 43.461068628250075 - ], - [ - 12.800380023548515, - 43.480440211385165 - ], - [ - 12.806607911092463, - 43.5049395665266 - ], - [ - 12.889127421049796, - 43.544252485241934 - ], - [ - 12.91948837282655, - 43.585274661292715 - ], - [ - 12.962305099691202, - 43.598948719976306 - ], - [ - 12.987216649867, - 43.656493716936424 - ], - [ - 13.070514645767325, - 43.69409737831631 - ], - [ - 13.080634963026242, - 43.727712772580134 - ], - [ - 13.11644531640395, - 43.728282525025286 - ], - [ - 13.172496304299496, - 43.75050287038613 - ], - [ - 13.272142505002689, - 43.68669059652936 - ], - [ - 13.42005483417149, - 43.62116906533714 - ], - [ - 13.481555223667991, - 43.60749500665355 - ], - [ - 13.508802231672771, - 43.62971535201439 - ], - [ - 13.56563170551131, - 43.58926292840876 - ], - [ - 13.571081107112265, - 43.57160060260912 - ], - [ - 13.627910580950804, - 43.54881050480313 - ], - [ - 13.624018151235836, - 43.499811794520255 - ], - [ - 13.64192332792469, - 43.474742686933666 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 11, - "NAME_1": "Marche", - "ID_2": 58, - "NAME_2": "Ascoli Piceno", - "HASC_2": "IT.AC", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.849000588761012, - 43.06736968865163 - ], - [ - 13.889481857796683, - 42.942593903163846 - ], - [ - 13.915171893915474, - 42.895874202661574 - ], - [ - 13.817082665098269, - 42.87821187686193 - ], - [ - 13.780493825777567, - 42.86168905595259 - ], - [ - 13.723664351939028, - 42.85656128394624 - ], - [ - 13.700309773649217, - 42.82351564212756 - ], - [ - 13.636473926323735, - 42.80414405899247 - ], - [ - 13.621682693406854, - 42.816678612785765 - ], - [ - 13.529821352133599, - 42.79616752476038 - ], - [ - 13.503352830071815, - 42.771668169618934 - ], - [ - 13.489340083097929, - 42.7346342606842 - ], - [ - 13.452751243777225, - 42.7346342606842 - ], - [ - 13.389693882394736, - 42.68848431262708 - ], - [ - 13.344541697701102, - 42.702158371310674 - ], - [ - 13.286933737919568, - 42.741471290026006 - ], - [ - 13.25501581425683, - 42.72266945933606 - ], - [ - 13.190401480988353, - 42.7346342606842 - ], - [ - 13.217648488993131, - 42.772237922064086 - ], - [ - 13.246452468883898, - 42.76881940739319 - ], - [ - 13.265136131515746, - 42.80927183099882 - ], - [ - 13.236332151624978, - 42.868526085294384 - ], - [ - 13.242560039168929, - 42.89302544043582 - ], - [ - 13.294718597349506, - 42.926640834699654 - ], - [ - 13.381130537021805, - 42.90669949911942 - ], - [ - 13.410713002855566, - 42.92550132980936 - ], - [ - 13.393586312109704, - 42.967663010750435 - ], - [ - 13.426282721715438, - 42.97848830720828 - ], - [ - 13.557068360138379, - 42.989313603666126 - ], - [ - 13.631803010665774, - 43.0337542943878 - ], - [ - 13.682404596960362, - 43.043440085955346 - ], - [ - 13.785943227378523, - 43.08047399489008 - ], - [ - 13.803848404067377, - 43.06509067887103 - ], - [ - 13.849000588761012, - 43.06736968865163 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 11, - "NAME_1": "Marche", - "ID_2": 59, - "NAME_2": "Fermo", - "HASC_2": "IT.FM", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.849000588761012, - 43.06736968865163 - ], - [ - 13.803848404067377, - 43.06509067887103 - ], - [ - 13.785943227378523, - 43.08047399489008 - ], - [ - 13.682404596960362, - 43.043440085955346 - ], - [ - 13.631803010665774, - 43.0337542943878 - ], - [ - 13.557068360138379, - 42.989313603666126 - ], - [ - 13.426282721715438, - 42.97848830720828 - ], - [ - 13.393586312109704, - 42.967663010750435 - ], - [ - 13.410713002855566, - 42.92550132980936 - ], - [ - 13.381130537021805, - 42.90669949911942 - ], - [ - 13.294718597349506, - 42.926640834699654 - ], - [ - 13.242560039168929, - 42.89302544043582 - ], - [ - 13.216870003050136, - 42.952279694731395 - ], - [ - 13.269807047173707, - 42.97506979253738 - ], - [ - 13.332864408556198, - 43.024068502820256 - ], - [ - 13.379573565135818, - 43.043440085955346 - ], - [ - 13.39280782616671, - 43.01267345391726 - ], - [ - 13.460536103207161, - 43.0212197405945 - ], - [ - 13.465985504808117, - 43.08104374733523 - ], - [ - 13.431732123316394, - 43.11238013181846 - ], - [ - 13.462871561036142, - 43.16479735677223 - ], - [ - 13.518922548931688, - 43.17505290078493 - ], - [ - 13.522036492703663, - 43.21037755238421 - ], - [ - 13.59365719945908, - 43.21037755238421 - ], - [ - 13.608448432375962, - 43.23772566975139 - ], - [ - 13.602220544832011, - 43.26849230178948 - ], - [ - 13.684740054789344, - 43.27817809335702 - ], - [ - 13.74312650051387, - 43.294700914266365 - ], - [ - 13.845108159046042, - 43.09870607313486 - ], - [ - 13.849000588761012, - 43.06736968865163 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 11, - "NAME_1": "Marche", - "ID_2": 60, - "NAME_2": "Macerata", - "HASC_2": "IT.MC", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.64192332792469, - 43.474742686933666 - ], - [ - 13.666056392157495, - 43.435999520663486 - ], - [ - 13.718214950338073, - 43.32318853652385 - ], - [ - 13.74312650051387, - 43.294700914266365 - ], - [ - 13.684740054789344, - 43.27817809335702 - ], - [ - 13.602220544832011, - 43.26849230178948 - ], - [ - 13.608448432375962, - 43.23772566975139 - ], - [ - 13.59365719945908, - 43.21037755238421 - ], - [ - 13.522036492703663, - 43.21037755238421 - ], - [ - 13.518922548931688, - 43.17505290078493 - ], - [ - 13.462871561036142, - 43.16479735677223 - ], - [ - 13.431732123316394, - 43.11238013181846 - ], - [ - 13.465985504808117, - 43.08104374733523 - ], - [ - 13.460536103207161, - 43.0212197405945 - ], - [ - 13.39280782616671, - 43.01267345391726 - ], - [ - 13.379573565135818, - 43.043440085955346 - ], - [ - 13.332864408556198, - 43.024068502820256 - ], - [ - 13.269807047173707, - 42.97506979253738 - ], - [ - 13.216870003050136, - 42.952279694731395 - ], - [ - 13.242560039168929, - 42.89302544043582 - ], - [ - 13.236332151624978, - 42.868526085294384 - ], - [ - 13.21297757333517, - 42.8423174728175 - ], - [ - 13.161597501097585, - 42.83263168124996 - ], - [ - 13.113331372631976, - 42.890176678210075 - ], - [ - 13.05494492690745, - 42.92094331024816 - ], - [ - 12.977096332608081, - 42.870805095074985 - ], - [ - 12.977874818551076, - 42.926640834699654 - ], - [ - 12.896912280479732, - 42.965384000969834 - ], - [ - 12.889127421049796, - 43.010394444136665 - ], - [ - 12.907811083681644, - 43.03660305661355 - ], - [ - 12.890684392935782, - 43.05996290686468 - ], - [ - 12.898469252365718, - 43.09471780601882 - ], - [ - 12.876671645961896, - 43.124344933166604 - ], - [ - 12.832297947211256, - 43.142007258966245 - ], - [ - 12.863437384931004, - 43.167076366552834 - ], - [ - 12.863437384931004, - 43.21208680971966 - ], - [ - 12.897690766422725, - 43.2331676501902 - ], - [ - 12.882899533505846, - 43.26792254934433 - ], - [ - 12.952963268375278, - 43.27874784580217 - ], - [ - 13.041710665876558, - 43.33686259520744 - ], - [ - 13.072071617653311, - 43.41150016552206 - ], - [ - 13.09309073811414, - 43.43656927310864 - ], - [ - 13.154591127610642, - 43.414918680192955 - ], - [ - 13.21142060144918, - 43.4177674424187 - ], - [ - 13.245673982940904, - 43.46049887580493 - ], - [ - 13.275256448774664, - 43.45821986602433 - ], - [ - 13.286155251976576, - 43.4268834815411 - ], - [ - 13.336756838271164, - 43.39269833483211 - ], - [ - 13.448858814062255, - 43.44625506467619 - ], - [ - 13.481555223667991, - 43.43713902555379 - ], - [ - 13.583536882200164, - 43.443976054895586 - ], - [ - 13.58898628380112, - 43.420616204644446 - ], - [ - 13.659050018670552, - 43.43486001577319 - ], - [ - 13.64192332792469, - 43.474742686933666 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 11, - "NAME_1": "Marche", - "ID_2": 61, - "NAME_2": "Pesaro E Urbino", - "HASC_2": "IT.PS", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Pesaro-et-Urbino|Pesaro-Urbino|Pésaro y Urbino" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.172496304299496, - 43.75050287038613 - ], - [ - 13.11644531640395, - 43.728282525025286 - ], - [ - 13.080634963026242, - 43.727712772580134 - ], - [ - 13.070514645767325, - 43.69409737831631 - ], - [ - 12.987216649867, - 43.656493716936424 - ], - [ - 12.962305099691202, - 43.598948719976306 - ], - [ - 12.91948837282655, - 43.585274661292715 - ], - [ - 12.889127421049796, - 43.544252485241934 - ], - [ - 12.806607911092463, - 43.5049395665266 - ], - [ - 12.800380023548515, - 43.480440211385165 - ], - [ - 12.768462099885774, - 43.461068628250075 - ], - [ - 12.735765690280038, - 43.465056895366125 - ], - [ - 12.710075654161248, - 43.42574397665079 - ], - [ - 12.664144983524618, - 43.437708777998935 - ], - [ - 12.626777658260922, - 43.42175570953475 - ], - [ - 12.56527726876442, - 43.46049887580493 - ], - [ - 12.500662935495946, - 43.52260189232624 - ], - [ - 12.458624694574286, - 43.51804387276505 - ], - [ - 12.422035855253583, - 43.53741545590014 - ], - [ - 12.40023824884976, - 43.514055605649 - ], - [ - 12.3457442328402, - 43.55450802925463 - ], - [ - 12.374548212730968, - 43.585274661292715 - ], - [ - 12.357421521985106, - 43.618320303111396 - ], - [ - 12.29514264654561, - 43.594390700415104 - ], - [ - 12.226635883562167, - 43.594390700415104 - ], - [ - 12.214958594417261, - 43.6114832737696 - ], - [ - 12.186154614526496, - 43.64281965825283 - ], - [ - 12.369098811130012, - 43.71574797123199 - ], - [ - 12.327839056151348, - 43.75221212772158 - ], - [ - 12.285022329286694, - 43.76588618640517 - ], - [ - 12.24220560242204, - 43.75449113750217 - ], - [ - 12.165135494065666, - 43.763037424179416 - ], - [ - 12.108306020227126, - 43.75449113750217 - ], - [ - 12.103635104569165, - 43.78924603665631 - ], - [ - 12.131660598516937, - 43.82571019314589 - ], - [ - 12.169027923780634, - 43.898638506125046 - ], - [ - 12.295921132488605, - 43.92940513816313 - ], - [ - 12.323946626436378, - 43.96131127509152 - ], - [ - 12.369877297073005, - 43.96359028487211 - ], - [ - 12.404909164507721, - 43.94991622618852 - ], - [ - 12.408801594222691, - 43.9037662781314 - ], - [ - 12.410358566108677, - 43.898638506125046 - ], - [ - 12.48665018852206, - 43.89977801101535 - ], - [ - 12.492099590123015, - 43.91573107947954 - ], - [ - 12.566055754707413, - 43.88154593277056 - ], - [ - 12.59018881894022, - 43.8866737047769 - ], - [ - 12.624442200431941, - 43.82343118336529 - ], - [ - 12.682050160213475, - 43.829128707816785 - ], - [ - 12.68360713209946, - 43.85362806295822 - ], - [ - 12.72330991519214, - 43.861604597190315 - ], - [ - 12.728759316793095, - 43.92484711860193 - ], - [ - 12.7528923810259, - 43.96814830443331 - ], - [ - 12.801936995434502, - 43.96359028487211 - ], - [ - 12.895355308593745, - 43.921428603931034 - ], - [ - 13.072850103596306, - 43.81830341135894 - ], - [ - 13.172496304299496, - 43.75050287038613 - ] - ], - [ - [ - 12.19938887555739, - 43.77158371085666 - ], - [ - 12.239091658650066, - 43.8006410855593 - ], - [ - 12.170584895666622, - 43.805199105120494 - ], - [ - 12.19938887555739, - 43.77158371085666 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 12, - "NAME_1": "Molise", - "ID_2": 62, - "NAME_2": "Campobasso", - "HASC_2": "IT.CB", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.137394824415566, - 41.92615554101678 - ], - [ - 15.139730282244546, - 41.880005592959655 - ], - [ - 15.104698414809828, - 41.84752970358612 - ], - [ - 15.116375703954734, - 41.79055445907115 - ], - [ - 15.098470527265878, - 41.76662485637486 - ], - [ - 15.12182510555569, - 41.721044660762885 - ], - [ - 15.101584471037853, - 41.672615702925164 - ], - [ - 15.049425912857277, - 41.65666263446097 - ], - [ - 15.023735876738485, - 41.62304724019714 - ], - [ - 14.960678515355998, - 41.64697684289342 - ], - [ - 14.934988479237205, - 41.62019847797139 - ], - [ - 14.951336684040072, - 41.593420113049355 - ], - [ - 14.941216366781156, - 41.52448006718624 - ], - [ - 14.966906402899948, - 41.519922047625045 - ], - [ - 15.008166157878613, - 41.48744615825151 - ], - [ - 14.952893655926061, - 41.45895853599402 - ], - [ - 14.88516537888561, - 41.44585422975558 - ], - [ - 14.856361398994842, - 41.42591289417534 - ], - [ - 14.790968579783375, - 41.45326101154253 - ], - [ - 14.765278543664582, - 41.41850611238839 - ], - [ - 14.717790901141967, - 41.401983291479056 - ], - [ - 14.672638716448333, - 41.40768081593055 - ], - [ - 14.604131953464888, - 41.364949382544324 - ], - [ - 14.504485752761695, - 41.384890718124566 - ], - [ - 14.456219624296088, - 41.42876165640109 - ], - [ - 14.383041945654682, - 41.44414497242013 - ], - [ - 14.390826805084618, - 41.506247988941446 - ], - [ - 14.494365435502779, - 41.57347877746911 - ], - [ - 14.510713640305646, - 41.60994293395869 - ], - [ - 14.481131174471885, - 41.63273303176469 - ], - [ - 14.42508018657634, - 41.64469783311283 - ], - [ - 14.434422017892263, - 41.672615702925164 - ], - [ - 14.521612443507557, - 41.699963820292346 - ], - [ - 14.514606070020614, - 41.73243970966588 - ], - [ - 14.486580576072841, - 41.76035757947822 - ], - [ - 14.571435543859153, - 41.821890843554385 - ], - [ - 14.6150307566668, - 41.89026113697235 - ], - [ - 14.664853857018397, - 41.917039501894386 - ], - [ - 14.669524772676358, - 41.94780613393247 - ], - [ - 14.727911218400884, - 42.00421162600229 - ], - [ - 14.766835515550568, - 42.01902518957618 - ], - [ - 14.779291290638469, - 42.07030290963965 - ], - [ - 14.850133511450892, - 42.03611776293067 - ], - [ - 14.999602812505682, - 41.99566533932504 - ], - [ - 15.070445033318109, - 41.94666662904217 - ], - [ - 15.137394824415566, - 41.92615554101678 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 12, - "NAME_1": "Molise", - "ID_2": 63, - "NAME_2": "Isernia", - "HASC_2": "IT.IS", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.486580576072841, - 41.76035757947822 - ], - [ - 14.514606070020614, - 41.73243970966588 - ], - [ - 14.521612443507557, - 41.699963820292346 - ], - [ - 14.434422017892263, - 41.672615702925164 - ], - [ - 14.42508018657634, - 41.64469783311283 - ], - [ - 14.481131174471885, - 41.63273303176469 - ], - [ - 14.510713640305646, - 41.60994293395869 - ], - [ - 14.494365435502779, - 41.57347877746911 - ], - [ - 14.390826805084618, - 41.506247988941446 - ], - [ - 14.383041945654682, - 41.44414497242013 - ], - [ - 14.32776944370213, - 41.45440051643283 - ], - [ - 14.278724829293527, - 41.486876405806356 - ], - [ - 14.242135989972823, - 41.4977017022642 - ], - [ - 14.168179825388423, - 41.49542269248361 - ], - [ - 14.126141584466765, - 41.50852699872205 - ], - [ - 14.079432427887143, - 41.448133239536176 - ], - [ - 14.108236407777909, - 41.417366607498096 - ], - [ - 14.043622074509432, - 41.394006757246956 - ], - [ - 14.007033235188729, - 41.453830763987675 - ], - [ - 13.979007741240956, - 41.46351655555522 - ], - [ - 13.97355833964, - 41.494852940038456 - ], - [ - 14.027273869706566, - 41.52675907696684 - ], - [ - 14.024938411877585, - 41.56208372856612 - ], - [ - 14.002362319530768, - 41.57063001524337 - ], - [ - 14.011704150846693, - 41.608803429068395 - ], - [ - 13.989128058499876, - 41.65495337712552 - ], - [ - 13.941640415977261, - 41.6891385238345 - ], - [ - 13.995355946043825, - 41.694836048286 - ], - [ - 14.020267496219622, - 41.68344099938301 - ], - [ - 14.07009059657122, - 41.738137234117374 - ], - [ - 14.194648347450208, - 41.74896253057522 - ], - [ - 14.147939190870588, - 41.82815812045103 - ], - [ - 14.21800292574002, - 41.85493648537307 - ], - [ - 14.230458700827917, - 41.878296335624206 - ], - [ - 14.28573120278047, - 41.90963272010744 - ], - [ - 14.325433985873147, - 41.89652841386899 - ], - [ - 14.343339162562003, - 41.87088955383726 - ], - [ - 14.377592544053726, - 41.88114509784995 - ], - [ - 14.446877792980164, - 41.838983416908874 - ], - [ - 14.464782969669018, - 41.77801990527786 - ], - [ - 14.486580576072841, - 41.76035757947822 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 13, - "NAME_1": "Piemonte", - "ID_2": 64, - "NAME_2": "Alessandria", - "HASC_2": "IT.AL", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Alejandr¡a|Alexandrie" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.549068288859988, - 45.16918645880888 - ], - [ - 8.58098621252273, - 45.15380314278984 - ], - [ - 8.609790192413495, - 45.10936245206817 - ], - [ - 8.647157517677194, - 45.07631681024948 - ], - [ - 8.635480228532288, - 45.0421316635405 - ], - [ - 8.65260691927815, - 45.02446933774086 - ], - [ - 8.706322449344713, - 45.03814339642445 - ], - [ - 8.769379810727202, - 45.007376764386365 - ], - [ - 8.824652312679753, - 45.04725943554685 - ], - [ - 8.882260272461286, - 45.05523596977894 - ], - [ - 8.902500906979121, - 45.00851626927667 - ], - [ - 8.978792529392503, - 44.96806384567104 - ], - [ - 8.971007669962567, - 44.9447039954199 - ], - [ - 9.031729573516074, - 44.889438008240376 - ], - [ - 9.071432356608753, - 44.86607815798924 - ], - [ - 9.054305665862891, - 44.84556706996385 - ], - [ - 9.110356653758437, - 44.806254151248524 - ], - [ - 9.16173672599602, - 44.81480043792577 - ], - [ - 9.172635529197931, - 44.77263875698469 - ], - [ - 9.21467377011959, - 44.7532671738496 - ], - [ - 9.201439509088697, - 44.68717589021224 - ], - [ - 9.20377496691768, - 44.61424757723307 - ], - [ - 9.153951866566082, - 44.57493465851775 - ], - [ - 9.114249083473405, - 44.58234144030469 - ], - [ - 9.104128766214487, - 44.610829062562175 - ], - [ - 9.055862637748879, - 44.62222411146517 - ], - [ - 9.01382439682722, - 44.66780430707715 - ], - [ - 8.973343127791548, - 44.66438579240625 - ], - [ - 8.932083372812881, - 44.67692034619954 - ], - [ - 8.883817244347274, - 44.639886437264806 - ], - [ - 8.922741541496958, - 44.56809762917595 - ], - [ - 8.885374216233261, - 44.55328406560206 - ], - [ - 8.827766256451728, - 44.5629698571696 - ], - [ - 8.825430798622747, - 44.539610006918466 - ], - [ - 8.768601324784207, - 44.52479644334457 - ], - [ - 8.721892168204587, - 44.58063218296924 - ], - [ - 8.668176638138021, - 44.58348094519499 - ], - [ - 8.602005332983559, - 44.5686673816211 - ], - [ - 8.614461108071458, - 44.54758654115056 - ], - [ - 8.577093782807761, - 44.509982879770675 - ], - [ - 8.484453955591512, - 44.512261889551276 - ], - [ - 8.450200574099789, - 44.498587830867685 - ], - [ - 8.405048389406156, - 44.509982879770675 - ], - [ - 8.39337110026125, - 44.4780767428423 - ], - [ - 8.35133285933959, - 44.48605327707439 - ], - [ - 8.262585461838311, - 44.520238423783375 - ], - [ - 8.303066730873983, - 44.5652488669502 - ], - [ - 8.365345606313477, - 44.574364906072596 - ], - [ - 8.314744020018889, - 44.60399203322038 - ], - [ - 8.353668317168573, - 44.634188912813315 - ], - [ - 8.356782260940546, - 44.67749009864469 - ], - [ - 8.421396594209023, - 44.69344316710888 - ], - [ - 8.422175080152018, - 44.732756085824214 - ], - [ - 8.481340011819537, - 44.7532671738496 - ], - [ - 8.503137618223361, - 44.786882568113434 - ], - [ - 8.47978303993355, - 44.80796340858397 - ], - [ - 8.421396594209023, - 44.82049796237727 - ], - [ - 8.377022895458383, - 44.84784607974445 - ], - [ - 8.384029268945326, - 44.87861271178254 - ], - [ - 8.379358353287364, - 44.98572617147068 - ], - [ - 8.352889831225578, - 44.99883047770912 - ], - [ - 8.303845216816976, - 45.07802606758493 - ], - [ - 8.242344827320474, - 45.06435200890134 - ], - [ - 8.22210419280264, - 45.01421379372816 - ], - [ - 8.190964755082891, - 45.03928290131475 - ], - [ - 8.159825317363143, - 45.02845760485691 - ], - [ - 8.110780702954543, - 45.09511864093942 - ], - [ - 8.130242851529385, - 45.12417601564206 - ], - [ - 8.152818943876202, - 45.16975621125403 - ], - [ - 8.216654791201684, - 45.16519819169284 - ], - [ - 8.270370321268247, - 45.18229076504733 - ], - [ - 8.343547999909655, - 45.17317472592493 - ], - [ - 8.36378863442749, - 45.19824383351152 - ], - [ - 8.402712931577174, - 45.20622036774361 - ], - [ - 8.44163722872686, - 45.19596482373092 - ], - [ - 8.49690973067941, - 45.199383338401816 - ], - [ - 8.508587019824317, - 45.17488398326038 - ], - [ - 8.549068288859988, - 45.16918645880888 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 13, - "NAME_1": "Piemonte", - "ID_2": 65, - "NAME_2": "Asti", - "HASC_2": "IT.AT", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.262585461838311, - 44.520238423783375 - ], - [ - 8.25402211646538, - 44.52992421535092 - ], - [ - 8.24545877109245, - 44.5766439158532 - ], - [ - 8.195635670740854, - 44.62963089325211 - ], - [ - 8.22443965063162, - 44.67407158397379 - ], - [ - 8.267256377496274, - 44.709965988018226 - ], - [ - 8.258693032123343, - 44.72193078936637 - ], - [ - 8.134135281244353, - 44.7475696493981 - ], - [ - 8.13179982341537, - 44.81081217080972 - ], - [ - 8.094432498151674, - 44.82277697215787 - ], - [ - 8.046166369686066, - 44.800556626797025 - ], - [ - 7.995564783391476, - 44.81935845748697 - ], - [ - 7.979216578588609, - 44.8506948419702 - ], - [ - 7.944184711153893, - 44.8472763272993 - ], - [ - 7.893583124859303, - 44.91564662071727 - ], - [ - 7.9029249561752275, - 44.966924340780736 - ], - [ - 7.929393478237013, - 44.98401691413523 - ], - [ - 7.924722562579051, - 45.05580572222409 - ], - [ - 7.894361610802297, - 45.06093349423044 - ], - [ - 7.929393478237013, - 45.10594393739727 - ], - [ - 7.99011538179052, - 45.129873540093556 - ], - [ - 8.047723341572054, - 45.129303787648404 - ], - [ - 8.07652732146282, - 45.098537155610316 - ], - [ - 8.100660385695624, - 45.129873540093556 - ], - [ - 8.130242851529385, - 45.12417601564206 - ], - [ - 8.110780702954543, - 45.09511864093942 - ], - [ - 8.159825317363143, - 45.02845760485691 - ], - [ - 8.190964755082891, - 45.03928290131475 - ], - [ - 8.22210419280264, - 45.01421379372816 - ], - [ - 8.242344827320474, - 45.06435200890134 - ], - [ - 8.303845216816976, - 45.07802606758493 - ], - [ - 8.352889831225578, - 44.99883047770912 - ], - [ - 8.379358353287364, - 44.98572617147068 - ], - [ - 8.384029268945326, - 44.87861271178254 - ], - [ - 8.377022895458383, - 44.84784607974445 - ], - [ - 8.421396594209023, - 44.82049796237727 - ], - [ - 8.47978303993355, - 44.80796340858397 - ], - [ - 8.503137618223361, - 44.786882568113434 - ], - [ - 8.481340011819537, - 44.7532671738496 - ], - [ - 8.422175080152018, - 44.732756085824214 - ], - [ - 8.421396594209023, - 44.69344316710888 - ], - [ - 8.356782260940546, - 44.67749009864469 - ], - [ - 8.353668317168573, - 44.634188912813315 - ], - [ - 8.314744020018889, - 44.60399203322038 - ], - [ - 8.365345606313477, - 44.574364906072596 - ], - [ - 8.303066730873983, - 44.5652488669502 - ], - [ - 8.262585461838311, - 44.520238423783375 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 13, - "NAME_1": "Piemonte", - "ID_2": 66, - "NAME_2": "Biella", - "HASC_2": "IT.BI", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Verceil" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.028261192997212, - 45.40392446621056 - ], - [ - 8.039159996199123, - 45.44209788003559 - ], - [ - 7.9698747472726845, - 45.47571327429942 - ], - [ - 7.88657675137236, - 45.53154901392409 - ], - [ - 7.9029249561752275, - 45.55946688373643 - ], - [ - 7.896697068631278, - 45.59080326821966 - ], - [ - 7.897475554574272, - 45.61245386113535 - ], - [ - 7.940292281438925, - 45.644359998063734 - ], - [ - 7.906038899947202, - 45.683103164333914 - ], - [ - 7.937956823609944, - 45.72526484527499 - ], - [ - 8.00257115687842, - 45.7207068257138 - ], - [ - 8.022811791396256, - 45.73836915151344 - ], - [ - 8.084312180892756, - 45.739508656403736 - ], - [ - 8.12946436558639, - 45.758880239538826 - ], - [ - 8.18240140970996, - 45.75318271508733 - ], - [ - 8.184736867538943, - 45.729822864836194 - ], - [ - 8.32797828104978, - 45.648348265179784 - ], - [ - 8.297617329273027, - 45.62270940514804 - ], - [ - 8.256357574294361, - 45.609605098909604 - ], - [ - 8.27737669475519, - 45.56459465574278 - ], - [ - 8.297617329273027, - 45.55433911173008 - ], - [ - 8.264142433724299, - 45.50249163922146 - ], - [ - 8.18629383942493, - 45.450644166712834 - ], - [ - 8.124014963985434, - 45.377146101288524 - ], - [ - 8.028261192997212, - 45.40392446621056 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 13, - "NAME_1": "Piemonte", - "ID_2": 67, - "NAME_2": "Cuneo", - "HASC_2": "IT.CN", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Coni" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.25402211646538, - 44.52992421535092 - ], - [ - 8.225218136574615, - 44.51511065177702 - ], - [ - 8.22443965063162, - 44.48662302951954 - ], - [ - 8.196414156683847, - 44.46497243660385 - ], - [ - 8.222882678745632, - 44.430787289894866 - ], - [ - 8.204199016113785, - 44.405718182308284 - ], - [ - 8.15048348604722, - 44.38577684672804 - ], - [ - 8.13569225313034, - 44.33278986932912 - ], - [ - 8.107666759182568, - 44.33392937421942 - ], - [ - 8.060957602602945, - 44.30145348484589 - ], - [ - 8.0913185543797, - 44.27467511992385 - ], - [ - 8.066407004203901, - 44.21769987540888 - ], - [ - 8.095210984094669, - 44.17610794691295 - ], - [ - 8.068742462032883, - 44.145911067320014 - ], - [ - 8.010356016308357, - 44.15673636377787 - ], - [ - 7.979995064531602, - 44.134516018417024 - ], - [ - 8.016583903852306, - 44.111725920611036 - ], - [ - 7.927058020408031, - 44.11115616816589 - ], - [ - 7.74722776757649, - 44.13622527575247 - ], - [ - 7.719980759571711, - 44.10545864371439 - ], - [ - 7.740999880032541, - 44.0781105263472 - ], - [ - 7.712974386084768, - 44.06329696277331 - ], - [ - 7.714531357970755, - 44.08779631791475 - ], - [ - 7.669379173277122, - 44.12824874152038 - ], - [ - 7.684170406194001, - 44.177247451803254 - ], - [ - 7.634347305842406, - 44.17610794691295 - ], - [ - 7.6148851572675635, - 44.154457353997266 - ], - [ - 7.50667561119144, - 44.145911067320014 - ], - [ - 7.4623019124408, - 44.127109236630076 - ], - [ - 7.360320253908627, - 44.11685369261738 - ], - [ - 7.345529020991747, - 44.145911067320014 - ], - [ - 7.26378799697741, - 44.14762032465547 - ], - [ - 7.196059719936959, - 44.19775853982864 - ], - [ - 7.141565703927402, - 44.20174680694469 - ], - [ - 7.076172884715931, - 44.231943686537626 - ], - [ - 7.038027073509241, - 44.225676409640975 - ], - [ - 7.010780065504462, - 44.24390848788577 - ], - [ - 7.002995206074525, - 44.27923313948505 - ], - [ - 6.968741824582803, - 44.299174475065286 - ], - [ - 6.932152985262099, - 44.35444046224481 - ], - [ - 6.900235061599358, - 44.36583551114781 - ], - [ - 6.907241435086301, - 44.41996199343703 - ], - [ - 6.9531721057229285, - 44.42907803255942 - ], - [ - 6.9173617523452195, - 44.471239713500495 - ], - [ - 6.889336258397447, - 44.485483524629245 - ], - [ - 6.867538651993623, - 44.53106372024122 - ], - [ - 6.889336258397447, - 44.5538538180472 - ], - [ - 6.9414948165780235, - 44.576074163408045 - ], - [ - 6.961735451095859, - 44.62165435902002 - ], - [ - 6.9531721057229285, - 44.653560495948405 - ], - [ - 6.99988126230255, - 44.686606137767086 - ], - [ - 7.059824679913064, - 44.680338860870435 - ], - [ - 7.064495595571026, - 44.711675245353675 - ], - [ - 7.122103555352559, - 44.727058561372715 - ], - [ - 7.16024936655925, - 44.76124370808169 - ], - [ - 7.193724262107978, - 44.760104203191396 - ], - [ - 7.297262892526138, - 44.782894300997384 - ], - [ - 7.342415077219773, - 44.78403380588769 - ], - [ - 7.351756908535696, - 44.75269742140445 - ], - [ - 7.417149727747167, - 44.76694123253319 - ], - [ - 7.470865257813731, - 44.7566856885205 - ], - [ - 7.530030189481251, - 44.783464053442536 - ], - [ - 7.594644522749727, - 44.835311525951155 - ], - [ - 7.6545879403602415, - 44.83246276372541 - ], - [ - 7.685727378079989, - 44.81138192325487 - ], - [ - 7.765911430208338, - 44.82334672460301 - ], - [ - 7.782259635011206, - 44.8438578126284 - ], - [ - 7.832861221305795, - 44.841009050402654 - ], - [ - 7.903703442118221, - 44.82277697215787 - ], - [ - 7.944184711153893, - 44.8472763272993 - ], - [ - 7.979216578588609, - 44.8506948419702 - ], - [ - 7.995564783391476, - 44.81935845748697 - ], - [ - 8.046166369686066, - 44.800556626797025 - ], - [ - 8.094432498151674, - 44.82277697215787 - ], - [ - 8.13179982341537, - 44.81081217080972 - ], - [ - 8.134135281244353, - 44.7475696493981 - ], - [ - 8.258693032123343, - 44.72193078936637 - ], - [ - 8.267256377496274, - 44.709965988018226 - ], - [ - 8.22443965063162, - 44.67407158397379 - ], - [ - 8.195635670740854, - 44.62963089325211 - ], - [ - 8.24545877109245, - 44.5766439158532 - ], - [ - 8.25402211646538, - 44.52992421535092 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 13, - "NAME_1": "Piemonte", - "ID_2": 68, - "NAME_2": "Novara", - "HASC_2": "IT.NO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Novare" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.594998959496616, - 45.82895979029224 - ], - [ - 8.56463800771986, - 45.80844870226685 - ], - [ - 8.556853148289925, - 45.775972812893315 - ], - [ - 8.603562304869547, - 45.72697410261044 - ], - [ - 8.647157517677194, - 45.72241608304925 - ], - [ - 8.689974244541846, - 45.64094148339284 - ], - [ - 8.68686030076987, - 45.618721138032 - ], - [ - 8.7078794212307, - 45.55946688373643 - ], - [ - 8.72889854169153, - 45.503061391666606 - ], - [ - 8.788841959302044, - 45.48710832320242 - ], - [ - 8.790398931188031, - 45.46317872050613 - ], - [ - 8.844114461254595, - 45.394808427088165 - ], - [ - 8.794291360903, - 45.37999486351427 - ], - [ - 8.727341569805542, - 45.33384491545715 - ], - [ - 8.717221252546624, - 45.303648035864214 - ], - [ - 8.667398152195029, - 45.29339249185152 - ], - [ - 8.656499348993117, - 45.3264381336702 - ], - [ - 8.61290413618547, - 45.35549550837284 - ], - [ - 8.528049168399159, - 45.34467021191499 - ], - [ - 8.514814907368265, - 45.31447333232206 - ], - [ - 8.493795786907436, - 45.34580971680529 - ], - [ - 8.49690973067941, - 45.37486709150792 - ], - [ - 8.456428461643739, - 45.38341337818517 - ], - [ - 8.407383847235137, - 45.419877534674754 - ], - [ - 8.404269903463161, - 45.532118766369244 - ], - [ - 8.39103564243227, - 45.6198606429223 - ], - [ - 8.338098598308699, - 45.66487108608912 - ], - [ - 8.320971907562837, - 45.704753757249605 - ], - [ - 8.36768106414246, - 45.7081722719205 - ], - [ - 8.379358353287364, - 45.739508656403736 - ], - [ - 8.35133285933959, - 45.77312405066757 - ], - [ - 8.375465923572396, - 45.78508885201571 - ], - [ - 8.37857986734437, - 45.83921533430493 - ], - [ - 8.410497791007112, - 45.832378304963136 - ], - [ - 8.460320891358707, - 45.874539985904214 - ], - [ - 8.500802160394379, - 45.83522706718888 - ], - [ - 8.563859521776868, - 45.839785086750084 - ], - [ - 8.594998959496616, - 45.82895979029224 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 13, - "NAME_1": "Piemonte", - "ID_2": 69, - "NAME_2": "Torino", - "HASC_2": "IT.TO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Torino|Turim" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.896697068631278, - 45.59080326821966 - ], - [ - 7.9029249561752275, - 45.55946688373643 - ], - [ - 7.88657675137236, - 45.53154901392409 - ], - [ - 7.9698747472726845, - 45.47571327429942 - ], - [ - 8.039159996199123, - 45.44209788003559 - ], - [ - 8.028261192997212, - 45.40392446621056 - ], - [ - 8.025147249225236, - 45.364041795050085 - ], - [ - 7.964425345671729, - 45.33156590567655 - ], - [ - 7.990893867733514, - 45.30820605542541 - ], - [ - 7.991672353676508, - 45.2301499704399 - ], - [ - 8.046166369686066, - 45.20052284329212 - ], - [ - 8.152818943876202, - 45.16975621125403 - ], - [ - 8.130242851529385, - 45.12417601564206 - ], - [ - 8.100660385695624, - 45.129873540093556 - ], - [ - 8.07652732146282, - 45.098537155610316 - ], - [ - 8.047723341572054, - 45.129303787648404 - ], - [ - 7.99011538179052, - 45.129873540093556 - ], - [ - 7.929393478237013, - 45.10594393739727 - ], - [ - 7.894361610802297, - 45.06093349423044 - ], - [ - 7.924722562579051, - 45.05580572222409 - ], - [ - 7.929393478237013, - 44.98401691413523 - ], - [ - 7.9029249561752275, - 44.966924340780736 - ], - [ - 7.893583124859303, - 44.91564662071727 - ], - [ - 7.944184711153893, - 44.8472763272993 - ], - [ - 7.903703442118221, - 44.82277697215787 - ], - [ - 7.832861221305795, - 44.841009050402654 - ], - [ - 7.782259635011206, - 44.8438578126284 - ], - [ - 7.765911430208338, - 44.82334672460301 - ], - [ - 7.685727378079989, - 44.81138192325487 - ], - [ - 7.6545879403602415, - 44.83246276372541 - ], - [ - 7.594644522749727, - 44.835311525951155 - ], - [ - 7.530030189481251, - 44.783464053442536 - ], - [ - 7.470865257813731, - 44.7566856885205 - ], - [ - 7.417149727747167, - 44.76694123253319 - ], - [ - 7.351756908535696, - 44.75269742140445 - ], - [ - 7.342415077219773, - 44.78403380588769 - ], - [ - 7.297262892526138, - 44.782894300997384 - ], - [ - 7.193724262107978, - 44.760104203191396 - ], - [ - 7.16024936655925, - 44.76124370808169 - ], - [ - 7.122103555352559, - 44.727058561372715 - ], - [ - 7.064495595571026, - 44.711675245353675 - ], - [ - 7.0240143265353545, - 44.74699989695296 - ], - [ - 7.009223093618474, - 44.79314984501008 - ], - [ - 7.021678868706373, - 44.82277697215787 - ], - [ - 6.948501190064967, - 44.86379914820864 - ], - [ - 6.911912350744263, - 44.84556706996385 - ], - [ - 6.825500411071964, - 44.87234543488589 - ], - [ - 6.762443049689476, - 44.91336761093667 - ], - [ - 6.762443049689476, - 44.970912607896786 - ], - [ - 6.739866957342659, - 45.023329832850564 - ], - [ - 6.686151427276094, - 45.02105082306996 - ], - [ - 6.67058170841622, - 45.06093349423044 - ], - [ - 6.630878925323542, - 45.10879269962302 - ], - [ - 6.690822342934056, - 45.1384198267708 - ], - [ - 6.746094844886608, - 45.1384198267708 - ], - [ - 6.772563366948393, - 45.15437289523499 - ], - [ - 6.854304390962731, - 45.12873403520325 - ], - [ - 6.894785659998402, - 45.14012908410625 - ], - [ - 6.901013547542352, - 45.164058686802534 - ], - [ - 6.953950591665922, - 45.176023488150676 - ], - [ - 6.97652668401274, - 45.20849937752421 - ], - [ - 7.051261334540134, - 45.2255919508787 - ], - [ - 7.066052567457014, - 45.21134813974996 - ], - [ - 7.135337816383451, - 45.25464932558134 - ], - [ - 7.113540209979629, - 45.32188011410901 - ], - [ - 7.185160916735048, - 45.40392446621056 - ], - [ - 7.121325069409565, - 45.437539860474395 - ], - [ - 7.10108443489173, - 45.46545773028673 - ], - [ - 7.1228820412955525, - 45.507049658782655 - ], - [ - 7.224863699827726, - 45.47172500718337 - ], - [ - 7.270794370464353, - 45.5155959454599 - ], - [ - 7.375111486825507, - 45.51730520279535 - ], - [ - 7.466194342155768, - 45.57826871442637 - ], - [ - 7.523802301937302, - 45.57769896198122 - ], - [ - 7.558055683429024, - 45.59137302066481 - ], - [ - 7.6468030809303045, - 45.56972242774913 - ], - [ - 7.677942518650052, - 45.55319960683978 - ], - [ - 7.733993506545597, - 45.551490349504334 - ], - [ - 7.797050867928085, - 45.58738475354876 - ], - [ - 7.849987912051657, - 45.60333782201296 - ], - [ - 7.896697068631278, - 45.59080326821966 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 13, - "NAME_1": "Piemonte", - "ID_2": 70, - "NAME_2": "Verbano-Cusio-Ossola", - "HASC_2": "IT.VB", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Verbania" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.717999738489619, - 46.103010716409244 - ], - [ - 8.707100935287706, - 46.08249962838386 - ], - [ - 8.729677027634523, - 46.030082403430086 - ], - [ - 8.720335196318599, - 46.01185032518529 - ], - [ - 8.572422867149799, - 45.90245785571655 - ], - [ - 8.594998959496616, - 45.82895979029224 - ], - [ - 8.563859521776868, - 45.839785086750084 - ], - [ - 8.500802160394379, - 45.83522706718888 - ], - [ - 8.460320891358707, - 45.874539985904214 - ], - [ - 8.410497791007112, - 45.832378304963136 - ], - [ - 8.37857986734437, - 45.83921533430493 - ], - [ - 8.375465923572396, - 45.78508885201571 - ], - [ - 8.35133285933959, - 45.77312405066757 - ], - [ - 8.317857963790862, - 45.77027528844182 - ], - [ - 8.335763140479717, - 45.847761620982176 - ], - [ - 8.303066730873983, - 45.88935354947811 - ], - [ - 8.21587630525869, - 45.924678201077384 - ], - [ - 8.181622923766968, - 45.94974730866397 - ], - [ - 8.155154401705182, - 45.934933745090085 - ], - [ - 8.08742612466473, - 45.92353869618709 - ], - [ - 8.045387883743071, - 45.937212754870686 - ], - [ - 7.963646859728735, - 45.9018881032714 - ], - [ - 7.907595871833189, - 45.926957210857985 - ], - [ - 7.878013405999429, - 45.92752696330314 - ], - [ - 7.874899462227455, - 45.93037572552888 - ], - [ - 7.882684321657392, - 45.977665178476315 - ], - [ - 7.9107098156051645, - 45.9981762665017 - ], - [ - 7.9940078115054884, - 45.999315771392 - ], - [ - 8.037603024313135, - 46.043186709668525 - ], - [ - 8.039938482142116, - 46.09503418217715 - ], - [ - 8.112337674840528, - 46.109277993305895 - ], - [ - 8.147369542275245, - 46.133777348447325 - ], - [ - 8.168388662736074, - 46.18163655383991 - ], - [ - 8.143477112560277, - 46.22265872989068 - ], - [ - 8.094432498151674, - 46.26083214371571 - ], - [ - 8.145034084446264, - 46.29900555754074 - ], - [ - 8.217433277144677, - 46.30698209177284 - ], - [ - 8.264920919667292, - 46.36167832650721 - ], - [ - 8.313965534075894, - 46.3810499096423 - ], - [ - 8.291389441729077, - 46.41010728434493 - ], - [ - 8.374687437629403, - 46.45340847017631 - ], - [ - 8.433073883353929, - 46.46024549951811 - ], - [ - 8.46966272267463, - 46.451699212840865 - ], - [ - 8.456428461643739, - 46.42321159058338 - ], - [ - 8.471219694560618, - 46.36395733628781 - ], - [ - 8.46499180701667, - 46.333760456694876 - ], - [ - 8.426845995809979, - 46.29729630020529 - ], - [ - 8.464213321073675, - 46.22607724456158 - ], - [ - 8.53272008405712, - 46.219809967664936 - ], - [ - 8.54128342943005, - 46.1987291271944 - ], - [ - 8.60667624864152, - 46.15086992180182 - ], - [ - 8.609790192413495, - 46.11383601286709 - ], - [ - 8.717999738489619, - 46.103010716409244 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 13, - "NAME_1": "Piemonte", - "ID_2": 71, - "NAME_2": "Vercelli", - "HASC_2": "IT.VC", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Verceil" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.35133285933959, - 45.77312405066757 - ], - [ - 8.379358353287364, - 45.739508656403736 - ], - [ - 8.36768106414246, - 45.7081722719205 - ], - [ - 8.320971907562837, - 45.704753757249605 - ], - [ - 8.338098598308699, - 45.66487108608912 - ], - [ - 8.39103564243227, - 45.6198606429223 - ], - [ - 8.404269903463161, - 45.532118766369244 - ], - [ - 8.407383847235137, - 45.419877534674754 - ], - [ - 8.456428461643739, - 45.38341337818517 - ], - [ - 8.49690973067941, - 45.37486709150792 - ], - [ - 8.493795786907436, - 45.34580971680529 - ], - [ - 8.514814907368265, - 45.31447333232206 - ], - [ - 8.513257935482278, - 45.29168323451607 - ], - [ - 8.543618887259033, - 45.253509820691036 - ], - [ - 8.526492196513171, - 45.220464178872355 - ], - [ - 8.563859521776868, - 45.19710432862122 - ], - [ - 8.549068288859988, - 45.16918645880888 - ], - [ - 8.508587019824317, - 45.17488398326038 - ], - [ - 8.49690973067941, - 45.199383338401816 - ], - [ - 8.44163722872686, - 45.19596482373092 - ], - [ - 8.402712931577174, - 45.20622036774361 - ], - [ - 8.36378863442749, - 45.19824383351152 - ], - [ - 8.343547999909655, - 45.17317472592493 - ], - [ - 8.270370321268247, - 45.18229076504733 - ], - [ - 8.216654791201684, - 45.16519819169284 - ], - [ - 8.152818943876202, - 45.16975621125403 - ], - [ - 8.046166369686066, - 45.20052284329212 - ], - [ - 7.991672353676508, - 45.2301499704399 - ], - [ - 7.990893867733514, - 45.30820605542541 - ], - [ - 7.964425345671729, - 45.33156590567655 - ], - [ - 8.025147249225236, - 45.364041795050085 - ], - [ - 8.028261192997212, - 45.40392446621056 - ], - [ - 8.124014963985434, - 45.377146101288524 - ], - [ - 8.18629383942493, - 45.450644166712834 - ], - [ - 8.264142433724299, - 45.50249163922146 - ], - [ - 8.297617329273027, - 45.55433911173008 - ], - [ - 8.27737669475519, - 45.56459465574278 - ], - [ - 8.256357574294361, - 45.609605098909604 - ], - [ - 8.297617329273027, - 45.62270940514804 - ], - [ - 8.32797828104978, - 45.648348265179784 - ], - [ - 8.184736867538943, - 45.729822864836194 - ], - [ - 8.18240140970996, - 45.75318271508733 - ], - [ - 8.12946436558639, - 45.758880239538826 - ], - [ - 8.084312180892756, - 45.739508656403736 - ], - [ - 8.022811791396256, - 45.73836915151344 - ], - [ - 8.00257115687842, - 45.7207068257138 - ], - [ - 7.937956823609944, - 45.72526484527499 - ], - [ - 7.885798265429367, - 45.76115924931942 - ], - [ - 7.864000659025543, - 45.79192588135751 - ], - [ - 7.877234920056436, - 45.86257518455607 - ], - [ - 7.86322217308255, - 45.915562161954995 - ], - [ - 7.878013405999429, - 45.92752696330314 - ], - [ - 7.907595871833189, - 45.926957210857985 - ], - [ - 7.963646859728735, - 45.9018881032714 - ], - [ - 8.045387883743071, - 45.937212754870686 - ], - [ - 8.08742612466473, - 45.92353869618709 - ], - [ - 8.155154401705182, - 45.934933745090085 - ], - [ - 8.181622923766968, - 45.94974730866397 - ], - [ - 8.21587630525869, - 45.924678201077384 - ], - [ - 8.303066730873983, - 45.88935354947811 - ], - [ - 8.335763140479717, - 45.847761620982176 - ], - [ - 8.317857963790862, - 45.77027528844182 - ], - [ - 8.35133285933959, - 45.77312405066757 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 14, - "NAME_1": "Sardegna", - "ID_2": 72, - "NAME_2": "Cagliari", - "HASC_2": "IT.CG", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.417858601240944, - 39.61808838571534 - ], - [ - 9.458339870276614, - 39.642587740856776 - ], - [ - 9.505827512799229, - 39.622646405276534 - ], - [ - 9.524511175431078, - 39.58960076345785 - ], - [ - 9.557986070979807, - 39.57421744743881 - ], - [ - 9.604695227559429, - 39.57193843765821 - ], - [ - 9.651404384139049, - 39.55085759718767 - ], - [ - 9.631942235564207, - 39.4973008673436 - ], - [ - 9.642062552823125, - 39.444883642389826 - ], - [ - 9.625714348020256, - 39.429500326370786 - ], - [ - 9.596131882186498, - 39.34745597426923 - ], - [ - 9.605473713502422, - 39.293899244425155 - ], - [ - 9.571998817953693, - 39.24717954392288 - ], - [ - 9.563435472580762, - 39.19077405185306 - ], - [ - 9.56732790229573, - 39.146903113576535 - ], - [ - 9.529960577032034, - 39.12810128288659 - ], - [ - 9.461453814048589, - 39.12696177799629 - ], - [ - 9.392947051065144, - 39.14348459890564 - ], - [ - 9.371149444661322, - 39.17368147849857 - ], - [ - 9.295636308190934, - 39.21356414965905 - ], - [ - 9.216230742005578, - 39.22837771323294 - ], - [ - 9.141496091478185, - 39.18621603229186 - ], - [ - 9.09245147706958, - 39.2129943972139 - ], - [ - 9.04340686266098, - 39.177669745614615 - ], - [ - 9.009153481169257, - 39.121834005989946 - ], - [ - 9.0161598546562, - 39.087079106835816 - ], - [ - 9.04574232048996, - 39.05859148457833 - ], - [ - 9.027058657858111, - 38.99876747783761 - ], - [ - 8.911842738295046, - 38.916723125736056 - ], - [ - 8.841779003425614, - 38.87627070213043 - ], - [ - 8.79662681873198, - 38.891084265704315 - ], - [ - 8.73123399952051, - 38.93039718441965 - ], - [ - 8.666619666252036, - 38.89450278037521 - ], - [ - 8.60667624864152, - 38.89222377059462 - ], - [ - 8.621467481558401, - 38.9195718879618 - ], - [ - 8.61290413618547, - 38.95831505423198 - ], - [ - 8.660391778708085, - 39.003325497398805 - ], - [ - 8.66117026465108, - 39.040359406333536 - ], - [ - 8.696202132085794, - 39.0295341098757 - ], - [ - 8.741354316779429, - 39.05061495034624 - ], - [ - 8.827766256451728, - 39.05346371257198 - ], - [ - 8.854234778513513, - 39.08536984950037 - ], - [ - 8.823095340793767, - 39.119554996209345 - ], - [ - 8.826987770508735, - 39.14975187580228 - ], - [ - 8.771715268556182, - 39.179948755395216 - ], - [ - 8.749139176209365, - 39.23293573279414 - ], - [ - 8.740575830836434, - 39.28136469063186 - ], - [ - 8.70165153368675, - 39.32352637157294 - ], - [ - 8.700094561800764, - 39.37594359652671 - ], - [ - 8.757702521582296, - 39.4055707236745 - ], - [ - 8.837108087767653, - 39.411838000571144 - ], - [ - 8.886152702176254, - 39.39930344677785 - ], - [ - 8.931304886869889, - 39.400442951668154 - ], - [ - 8.979571015335496, - 39.42323304947414 - ], - [ - 8.960108866760654, - 39.46311572063462 - ], - [ - 9.0161598546562, - 39.487615075776056 - ], - [ - 9.000590135796326, - 39.55484586430372 - ], - [ - 9.027058657858111, - 39.619227890605636 - ], - [ - 9.047299292375948, - 39.642017988411624 - ], - [ - 9.082331159810664, - 39.665377838662764 - ], - [ - 9.148502464965127, - 39.6784821449012 - ], - [ - 9.210002854461628, - 39.62663467239258 - ], - [ - 9.296414794133927, - 39.60441432703175 - ], - [ - 9.315876942708769, - 39.57877546700001 - ], - [ - 9.388276135407184, - 39.5878915061224 - ], - [ - 9.417858601240944, - 39.61808838571534 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 14, - "NAME_1": "Sardegna", - "ID_2": 73, - "NAME_2": "Carbonia-Iglesias", - "HASC_2": "IT.CI", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 8.368459550085452, - 39.1132877193127 - ], - [ - 8.42061810826603, - 39.108159947306355 - ], - [ - 8.455649975700746, - 39.084800097055215 - ], - [ - 8.46732726484565, - 39.04662668323019 - ], - [ - 8.454093003814759, - 39.026685347649945 - ], - [ - 8.444751172498833, - 38.970279855580124 - ], - [ - 8.402712931577174, - 38.96173356890288 - ], - [ - 8.36378863442749, - 39.03181311965629 - ], - [ - 8.352111345282585, - 39.07283529570707 - ], - [ - 8.368459550085452, - 39.1132877193127 - ] - ] - ], - [ - [ - [ - 8.309294618417931, - 39.18792528962731 - ], - [ - 8.306180674645958, - 39.10132291796456 - ], - [ - 8.271927293154235, - 39.09562539351306 - ], - [ - 8.229110566289583, - 39.16570494426647 - ], - [ - 8.309294618417931, - 39.18792528962731 - ] - ] - ], - [ - [ - [ - 8.700094561800764, - 39.37594359652671 - ], - [ - 8.70165153368675, - 39.32352637157294 - ], - [ - 8.740575830836434, - 39.28136469063186 - ], - [ - 8.749139176209365, - 39.23293573279414 - ], - [ - 8.771715268556182, - 39.179948755395216 - ], - [ - 8.826987770508735, - 39.14975187580228 - ], - [ - 8.823095340793767, - 39.119554996209345 - ], - [ - 8.854234778513513, - 39.08536984950037 - ], - [ - 8.827766256451728, - 39.05346371257198 - ], - [ - 8.741354316779429, - 39.05061495034624 - ], - [ - 8.696202132085794, - 39.0295341098757 - ], - [ - 8.66117026465108, - 39.040359406333536 - ], - [ - 8.660391778708085, - 39.003325497398805 - ], - [ - 8.61290413618547, - 38.95831505423198 - ], - [ - 8.573979839035786, - 38.97711688492192 - ], - [ - 8.576315296864767, - 39.01984831830815 - ], - [ - 8.53894797160107, - 39.05916123702348 - ], - [ - 8.478226068047562, - 39.06087049435893 - ], - [ - 8.48834638530648, - 39.08423034461006 - ], - [ - 8.43774479901189, - 39.15601915269893 - ], - [ - 8.402712931577174, - 39.17539073583402 - ], - [ - 8.366902578199465, - 39.22837771323294 - ], - [ - 8.424510537980998, - 39.26826038439342 - ], - [ - 8.43774479901189, - 39.28934122486396 - ], - [ - 8.415947192608067, - 39.33549117292108 - ], - [ - 8.394928072147238, - 39.33890968759198 - ], - [ - 8.37235197980042, - 39.375373844081565 - ], - [ - 8.402712931577174, - 39.40500097122935 - ], - [ - 8.391814128375263, - 39.446592899725275 - ], - [ - 8.415168706665074, - 39.46710398775067 - ], - [ - 8.453314517871764, - 39.46368547307977 - ], - [ - 8.49690973067941, - 39.48419656110516 - ], - [ - 8.535834027829095, - 39.48020829398911 - ], - [ - 8.629252340988337, - 39.4089892383454 - ], - [ - 8.651049947392162, - 39.38050161608791 - ], - [ - 8.700094561800764, - 39.37594359652671 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 14, - "NAME_1": "Sardegna", - "ID_2": 74, - "NAME_2": "Medio Campidano", - "HASC_2": "IT.MD", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.047299292375948, - 39.642017988411624 - ], - [ - 9.027058657858111, - 39.619227890605636 - ], - [ - 9.000590135796326, - 39.55484586430372 - ], - [ - 9.0161598546562, - 39.487615075776056 - ], - [ - 8.960108866760654, - 39.46311572063462 - ], - [ - 8.979571015335496, - 39.42323304947414 - ], - [ - 8.931304886869889, - 39.400442951668154 - ], - [ - 8.886152702176254, - 39.39930344677785 - ], - [ - 8.837108087767653, - 39.411838000571144 - ], - [ - 8.757702521582296, - 39.4055707236745 - ], - [ - 8.700094561800764, - 39.37594359652671 - ], - [ - 8.651049947392162, - 39.38050161608791 - ], - [ - 8.629252340988337, - 39.4089892383454 - ], - [ - 8.535834027829095, - 39.48020829398911 - ], - [ - 8.49690973067941, - 39.48419656110516 - ], - [ - 8.453314517871764, - 39.46368547307977 - ], - [ - 8.415168706665074, - 39.46710398775067 - ], - [ - 8.391814128375263, - 39.446592899725275 - ], - [ - 8.384029268945326, - 39.469952749976414 - ], - [ - 8.436187827125902, - 39.52350947982049 - ], - [ - 8.471219694560618, - 39.60099581236084 - ], - [ - 8.451757545985776, - 39.62207665283138 - ], - [ - 8.454093003814759, - 39.698423480481445 - ], - [ - 8.44397268655584, - 39.75141045788037 - ], - [ - 8.45876391947272, - 39.76907278368001 - ], - [ - 8.503137618223361, - 39.71437654894564 - ], - [ - 8.500802160394379, - 39.71038828182959 - ], - [ - 8.506251561995334, - 39.70640001471354 - ], - [ - 8.507808533881322, - 39.70696976715869 - ], - [ - 8.558410120175912, - 39.694435213365395 - ], - [ - 8.609011706470502, - 39.6910166986945 - ], - [ - 8.632366284760312, - 39.65455254220492 - ], - [ - 8.672069067852991, - 39.63233219684408 - ], - [ - 8.689195758598851, - 39.64372724574707 - ], - [ - 8.744468260551404, - 39.62834392972803 - ], - [ - 8.784949529587076, - 39.65512229465007 - ], - [ - 8.862798123886444, - 39.669366105778806 - ], - [ - 8.880703300575298, - 39.700132737816894 - ], - [ - 8.914178196124027, - 39.72292283562288 - ], - [ - 8.925076999325938, - 39.75938699211246 - ], - [ - 8.936754288470844, - 39.78103758502815 - ], - [ - 8.979571015335496, - 39.780467832583 - ], - [ - 8.99903316391034, - 39.762235754338214 - ], - [ - 9.061312039349835, - 39.758817239667316 - ], - [ - 9.06053355340684, - 39.70298150004264 - ], - [ - 9.047299292375948, - 39.642017988411624 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 14, - "NAME_1": "Sardegna", - "ID_2": 75, - "NAME_2": "Nuoro", - "HASC_2": "IT.NR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.626492833963251, - 40.22487473979977 - ], - [ - 9.577448219554649, - 40.19638711754229 - ], - [ - 9.52061874571611, - 40.197526622432584 - ], - [ - 9.47858050479445, - 40.16960875262025 - ], - [ - 9.435763777929798, - 40.10579647876348 - ], - [ - 9.382048247863233, - 40.07901811384144 - ], - [ - 9.337674549112593, - 40.07332058938995 - ], - [ - 9.318212400537751, - 40.03970519512612 - ], - [ - 9.321326344309725, - 39.996404009294736 - ], - [ - 9.296414794133927, - 39.98443920794659 - ], - [ - 9.279288103388067, - 39.94683554656672 - ], - [ - 9.27383870178711, - 39.851686888226716 - ], - [ - 9.293300850361954, - 39.81351347440169 - ], - [ - 9.272281729901124, - 39.791862881486 - ], - [ - 9.251262609440294, - 39.735457389416176 - ], - [ - 9.288629934703991, - 39.71437654894564 - ], - [ - 9.310427541107813, - 39.679051897346355 - ], - [ - 9.385162191635208, - 39.696144470700844 - ], - [ - 9.417858601240944, - 39.61808838571534 - ], - [ - 9.388276135407184, - 39.5878915061224 - ], - [ - 9.315876942708769, - 39.57877546700001 - ], - [ - 9.296414794133927, - 39.60441432703175 - ], - [ - 9.210002854461628, - 39.62663467239258 - ], - [ - 9.148502464965127, - 39.6784821449012 - ], - [ - 9.082331159810664, - 39.665377838662764 - ], - [ - 9.047299292375948, - 39.642017988411624 - ], - [ - 9.06053355340684, - 39.70298150004264 - ], - [ - 9.061312039349835, - 39.758817239667316 - ], - [ - 8.99903316391034, - 39.762235754338214 - ], - [ - 8.979571015335496, - 39.780467832583 - ], - [ - 8.936754288470844, - 39.78103758502815 - ], - [ - 8.925076999325938, - 39.75938699211246 - ], - [ - 8.893937561606192, - 39.774200555686356 - ], - [ - 8.97412161373454, - 39.80268817794384 - ], - [ - 8.988134360708427, - 39.832315305091626 - ], - [ - 8.954659465159699, - 39.84484985888492 - ], - [ - 8.981127987221484, - 39.875616490923 - ], - [ - 8.970229184019573, - 39.89726708383869 - ], - [ - 8.996697706081358, - 39.96107935769545 - ], - [ - 8.946874605729763, - 40.01406633509438 - ], - [ - 8.988912846651422, - 40.05793727337091 - ], - [ - 9.03717897511703, - 40.05166999647426 - ], - [ - 9.036400489174037, - 40.096680439641084 - ], - [ - 9.010710453055244, - 40.137702615691865 - ], - [ - 9.018495312485182, - 40.19467786020684 - ], - [ - 8.983463445050464, - 40.219177215348275 - ], - [ - 8.958551894874667, - 40.212909938451624 - ], - [ - 8.8557917503995, - 40.211200681116175 - ], - [ - 8.79662681873198, - 40.19296860287139 - ], - [ - 8.674404525681972, - 40.21006117622588 - ], - [ - 8.668955124081016, - 40.25051359983151 - ], - [ - 8.62769536910235, - 40.2653271634054 - ], - [ - 8.621467481558401, - 40.32002339813977 - ], - [ - 8.640929630133243, - 40.30122156744983 - ], - [ - 8.738240373007454, - 40.35420854484875 - ], - [ - 8.812975023534849, - 40.36560359375174 - ], - [ - 8.827766256451728, - 40.41403255158947 - ], - [ - 8.858127208228481, - 40.39238195867378 - ], - [ - 8.892380589720204, - 40.40434676002192 - ], - [ - 8.949988549501736, - 40.36902210842264 - ], - [ - 9.028615629744099, - 40.29780305277893 - ], - [ - 9.042628376717985, - 40.327430179926715 - ], - [ - 9.171078557311944, - 40.37358012798384 - ], - [ - 9.228686517093477, - 40.42941586760851 - ], - [ - 9.252041095383287, - 40.46758928143354 - ], - [ - 9.285515990932016, - 40.47727507300109 - ], - [ - 9.28006658933106, - 40.51202997215522 - ], - [ - 9.227908031150484, - 40.50234418058768 - ], - [ - 9.183534332399843, - 40.50975096237462 - ], - [ - 9.190540705886786, - 40.53766883218695 - ], - [ - 9.238806834352395, - 40.540517594412705 - ], - [ - 9.287072962818003, - 40.526843535729114 - ], - [ - 9.373484902490302, - 40.57242373134109 - ], - [ - 9.380491275977246, - 40.611736650056415 - ], - [ - 9.415523143411962, - 40.635096500307554 - ], - [ - 9.422529516898905, - 40.65959585544899 - ], - [ - 9.487922336110374, - 40.6459217967654 - ], - [ - 9.564213958523757, - 40.68124644836468 - ], - [ - 9.584454593041592, - 40.706885308396416 - ], - [ - 9.579005191440636, - 40.7330939208733 - ], - [ - 9.591460966528535, - 40.79690619473007 - ], - [ - 9.643619524709113, - 40.822545054761804 - ], - [ - 9.664638645169942, - 40.85559069658049 - ], - [ - 9.69188565317472, - 40.81058025341366 - ], - [ - 9.660746215454974, - 40.80488272896217 - ], - [ - 9.68955019534574, - 40.76215129557594 - ], - [ - 9.71524023146453, - 40.75303525645354 - ], - [ - 9.71056931580657, - 40.712582832847914 - ], - [ - 9.749493612956254, - 40.68124644836468 - ], - [ - 9.740930267583323, - 40.62825947096576 - ], - [ - 9.760392416158165, - 40.58723729491498 - ], - [ - 9.790753367934919, - 40.57071447400564 - ], - [ - 9.796981255478869, - 40.542226851748154 - ], - [ - 9.827342207255622, - 40.53026205040001 - ], - [ - 9.823449777540654, - 40.50291393303282 - ], - [ - 9.753386042671222, - 40.38098690977079 - ], - [ - 9.691107167231728, - 40.34623201061665 - ], - [ - 9.631163749621214, - 40.275012954972944 - ], - [ - 9.626492833963251, - 40.22487473979977 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 14, - "NAME_1": "Sardegna", - "ID_2": 76, - "NAME_2": "Ogliastra", - "HASC_2": "IT.OG", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.651404384139049, - 39.55085759718767 - ], - [ - 9.604695227559429, - 39.57193843765821 - ], - [ - 9.557986070979807, - 39.57421744743881 - ], - [ - 9.524511175431078, - 39.58960076345785 - ], - [ - 9.505827512799229, - 39.622646405276534 - ], - [ - 9.458339870276614, - 39.642587740856776 - ], - [ - 9.417858601240944, - 39.61808838571534 - ], - [ - 9.385162191635208, - 39.696144470700844 - ], - [ - 9.310427541107813, - 39.679051897346355 - ], - [ - 9.288629934703991, - 39.71437654894564 - ], - [ - 9.251262609440294, - 39.735457389416176 - ], - [ - 9.272281729901124, - 39.791862881486 - ], - [ - 9.293300850361954, - 39.81351347440169 - ], - [ - 9.27383870178711, - 39.851686888226716 - ], - [ - 9.279288103388067, - 39.94683554656672 - ], - [ - 9.296414794133927, - 39.98443920794659 - ], - [ - 9.321326344309725, - 39.996404009294736 - ], - [ - 9.318212400537751, - 40.03970519512612 - ], - [ - 9.337674549112593, - 40.07332058938995 - ], - [ - 9.382048247863233, - 40.07901811384144 - ], - [ - 9.435763777929798, - 40.10579647876348 - ], - [ - 9.47858050479445, - 40.16960875262025 - ], - [ - 9.52061874571611, - 40.197526622432584 - ], - [ - 9.577448219554649, - 40.19638711754229 - ], - [ - 9.626492833963251, - 40.22487473979977 - ], - [ - 9.631163749621214, - 40.18613157352959 - ], - [ - 9.655296813854019, - 40.14340014014336 - ], - [ - 9.736259351925362, - 40.0761693516157 - ], - [ - 9.7066768860916, - 40.035147175564916 - ], - [ - 9.684879279687777, - 39.95709109057941 - ], - [ - 9.684100793744784, - 39.84086159176887 - ], - [ - 9.667752588941916, - 39.77647956546696 - ], - [ - 9.670866532713891, - 39.70127224270719 - ], - [ - 9.651404384139049, - 39.66423833377246 - ], - [ - 9.656853785740005, - 39.56965942787761 - ], - [ - 9.651404384139049, - 39.55085759718767 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 14, - "NAME_1": "Sardegna", - "ID_2": 77, - "NAME_2": "Olbia-Tempio", - "HASC_2": "IT.OT", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 9.471574131307507, - 41.24587112150804 - ], - [ - 9.479358990737445, - 41.19915142100576 - ], - [ - 9.442770151416742, - 41.20256993567666 - ], - [ - 9.471574131307507, - 41.24587112150804 - ] - ] - ], - [ - [ - [ - 9.664638645169942, - 40.85559069658049 - ], - [ - 9.643619524709113, - 40.822545054761804 - ], - [ - 9.591460966528535, - 40.79690619473007 - ], - [ - 9.579005191440636, - 40.7330939208733 - ], - [ - 9.584454593041592, - 40.706885308396416 - ], - [ - 9.564213958523757, - 40.68124644836468 - ], - [ - 9.487922336110374, - 40.6459217967654 - ], - [ - 9.422529516898905, - 40.65959585544899 - ], - [ - 9.415523143411962, - 40.635096500307554 - ], - [ - 9.380491275977246, - 40.611736650056415 - ], - [ - 9.373484902490302, - 40.57242373134109 - ], - [ - 9.287072962818003, - 40.526843535729114 - ], - [ - 9.238806834352395, - 40.540517594412705 - ], - [ - 9.190540705886786, - 40.53766883218695 - ], - [ - 9.195990107487741, - 40.62711996607546 - ], - [ - 9.1765279589129, - 40.66301437011989 - ], - [ - 9.122033942903341, - 40.6470613016557 - ], - [ - 9.06909689877977, - 40.67099090435199 - ], - [ - 9.01382439682722, - 40.68124644836468 - ], - [ - 9.03095108757308, - 40.74676797955689 - ], - [ - 9.026280171915118, - 40.794057432504324 - ], - [ - 8.972564641848553, - 40.863567230812585 - ], - [ - 8.925855485268933, - 40.850462924574146 - ], - [ - 8.89782999132116, - 40.86926475526408 - ], - [ - 8.99046981853741, - 40.91313569354061 - ], - [ - 8.972564641848553, - 40.95586712692684 - ], - [ - 8.875253898974343, - 40.933646781566 - ], - [ - 8.829323228337715, - 40.94959985003019 - ], - [ - 8.873696927088355, - 40.99631955053246 - ], - [ - 8.881481786518293, - 41.028795439906 - ], - [ - 8.933640344698869, - 41.04531826081534 - ], - [ - 9.011488938998237, - 41.1250836031363 - ], - [ - 9.106464224043467, - 41.13362988981354 - ], - [ - 9.15317338062309, - 41.15528048272923 - ], - [ - 9.162515211939013, - 41.23618532994049 - ], - [ - 9.234135918694433, - 41.25840567530133 - ], - [ - 9.28006658933106, - 41.2282087957084 - ], - [ - 9.269946272072144, - 41.19516315388971 - ], - [ - 9.327554231853675, - 41.18946562943822 - ], - [ - 9.364921557117372, - 41.20712795523786 - ], - [ - 9.424086488784893, - 41.171233551193424 - ], - [ - 9.444327123302728, - 41.135339147149 - ], - [ - 9.515947830058147, - 41.14217617649079 - ], - [ - 9.569663360124713, - 41.109130534672104 - ], - [ - 9.534631492689996, - 41.082352169750074 - ], - [ - 9.531517548918021, - 41.02708618257055 - ], - [ - 9.621043432362296, - 41.00201707498396 - ], - [ - 9.56732790229573, - 40.94219306824324 - ], - [ - 9.560321528808789, - 40.91826346554696 - ], - [ - 9.589903994642548, - 40.89889188241187 - ], - [ - 9.65373984196803, - 40.87952029927678 - ], - [ - 9.664638645169942, - 40.85559069658049 - ] - ] - ], - [ - [ - [ - 9.41941557312693, - 41.26923097175917 - ], - [ - 9.443548637359735, - 41.23732483483079 - ], - [ - 9.439656207644767, - 41.21624399436025 - ], - [ - 9.380491275977246, - 41.210546469908756 - ], - [ - 9.41941557312693, - 41.26923097175917 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 14, - "NAME_1": "Sardegna", - "ID_2": 78, - "NAME_2": "Oristano", - "HASC_2": "IT.ON", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.621467481558401, - 40.32002339813977 - ], - [ - 8.62769536910235, - 40.2653271634054 - ], - [ - 8.559188606118905, - 40.23399077892216 - ], - [ - 8.525713710570177, - 40.25678087672815 - ], - [ - 8.477447582104569, - 40.25678087672815 - ], - [ - 8.482896983705524, - 40.28583825143079 - ], - [ - 8.427624481752973, - 40.335406714158815 - ], - [ - 8.385586240831314, - 40.345092505726356 - ], - [ - 8.401155959691188, - 40.40947453202827 - ], - [ - 8.42295356609501, - 40.39580047334468 - ], - [ - 8.514814907368265, - 40.422578838266716 - ], - [ - 8.563081035833875, - 40.383265919551384 - ], - [ - 8.621467481558401, - 40.32002339813977 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 14, - "NAME_1": "Sardegna", - "ID_2": 78, - "NAME_2": "Oristano", - "HASC_2": "IT.ON", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.925076999325938, - 39.75938699211246 - ], - [ - 8.914178196124027, - 39.72292283562288 - ], - [ - 8.880703300575298, - 39.700132737816894 - ], - [ - 8.862798123886444, - 39.669366105778806 - ], - [ - 8.784949529587076, - 39.65512229465007 - ], - [ - 8.744468260551404, - 39.62834392972803 - ], - [ - 8.689195758598851, - 39.64372724574707 - ], - [ - 8.672069067852991, - 39.63233219684408 - ], - [ - 8.632366284760312, - 39.65455254220492 - ], - [ - 8.609011706470502, - 39.6910166986945 - ], - [ - 8.558410120175912, - 39.694435213365395 - ], - [ - 8.503916104166354, - 39.72805060762923 - ], - [ - 8.542061915373045, - 39.771921545905755 - ], - [ - 8.556853148289925, - 39.847128868665514 - ], - [ - 8.540504943487058, - 39.890430054496896 - ], - [ - 8.50703004793833, - 39.90809238029654 - ], - [ - 8.526492196513171, - 39.93430099277342 - ], - [ - 8.497688216622404, - 39.948544803902166 - ], - [ - 8.460320891358707, - 39.94284727945067 - ], - [ - 8.486789413420492, - 39.91094114252228 - ], - [ - 8.3995989878052, - 39.90125535095474 - ], - [ - 8.407383847235137, - 40.02887989866827 - ], - [ - 8.489903357192468, - 40.077878608951146 - ], - [ - 8.484453955591512, - 40.118331032556775 - ], - [ - 8.459542405415714, - 40.15023716948516 - ], - [ - 8.461099377301702, - 40.213479690896776 - ], - [ - 8.477447582104569, - 40.25678087672815 - ], - [ - 8.525713710570177, - 40.25678087672815 - ], - [ - 8.559188606118905, - 40.23399077892216 - ], - [ - 8.62769536910235, - 40.2653271634054 - ], - [ - 8.668955124081016, - 40.25051359983151 - ], - [ - 8.674404525681972, - 40.21006117622588 - ], - [ - 8.79662681873198, - 40.19296860287139 - ], - [ - 8.8557917503995, - 40.211200681116175 - ], - [ - 8.958551894874667, - 40.212909938451624 - ], - [ - 8.983463445050464, - 40.219177215348275 - ], - [ - 9.018495312485182, - 40.19467786020684 - ], - [ - 9.010710453055244, - 40.137702615691865 - ], - [ - 9.036400489174037, - 40.096680439641084 - ], - [ - 9.03717897511703, - 40.05166999647426 - ], - [ - 8.988912846651422, - 40.05793727337091 - ], - [ - 8.946874605729763, - 40.01406633509438 - ], - [ - 8.996697706081358, - 39.96107935769545 - ], - [ - 8.970229184019573, - 39.89726708383869 - ], - [ - 8.981127987221484, - 39.875616490923 - ], - [ - 8.954659465159699, - 39.84484985888492 - ], - [ - 8.988134360708427, - 39.832315305091626 - ], - [ - 8.97412161373454, - 39.80268817794384 - ], - [ - 8.893937561606192, - 39.774200555686356 - ], - [ - 8.925076999325938, - 39.75938699211246 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 14, - "NAME_1": "Sardegna", - "ID_2": 79, - "NAME_2": "Sassari", - "HASC_2": "IT.SX", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 8.829323228337715, - 40.94959985003019 - ], - [ - 8.875253898974343, - 40.933646781566 - ], - [ - 8.972564641848553, - 40.95586712692684 - ], - [ - 8.99046981853741, - 40.91313569354061 - ], - [ - 8.89782999132116, - 40.86926475526408 - ], - [ - 8.925855485268933, - 40.850462924574146 - ], - [ - 8.972564641848553, - 40.863567230812585 - ], - [ - 9.026280171915118, - 40.794057432504324 - ], - [ - 9.03095108757308, - 40.74676797955689 - ], - [ - 9.01382439682722, - 40.68124644836468 - ], - [ - 9.06909689877977, - 40.67099090435199 - ], - [ - 9.122033942903341, - 40.6470613016557 - ], - [ - 9.1765279589129, - 40.66301437011989 - ], - [ - 9.195990107487741, - 40.62711996607546 - ], - [ - 9.190540705886786, - 40.53766883218695 - ], - [ - 9.183534332399843, - 40.50975096237462 - ], - [ - 9.227908031150484, - 40.50234418058768 - ], - [ - 9.28006658933106, - 40.51202997215522 - ], - [ - 9.285515990932016, - 40.47727507300109 - ], - [ - 9.252041095383287, - 40.46758928143354 - ], - [ - 9.228686517093477, - 40.42941586760851 - ], - [ - 9.171078557311944, - 40.37358012798384 - ], - [ - 9.042628376717985, - 40.327430179926715 - ], - [ - 9.028615629744099, - 40.29780305277893 - ], - [ - 8.949988549501736, - 40.36902210842264 - ], - [ - 8.892380589720204, - 40.40434676002192 - ], - [ - 8.858127208228481, - 40.39238195867378 - ], - [ - 8.827766256451728, - 40.41403255158947 - ], - [ - 8.812975023534849, - 40.36560359375174 - ], - [ - 8.738240373007454, - 40.35420854484875 - ], - [ - 8.640929630133243, - 40.30122156744983 - ], - [ - 8.621467481558401, - 40.32002339813977 - ], - [ - 8.563081035833875, - 40.383265919551384 - ], - [ - 8.514814907368265, - 40.422578838266716 - ], - [ - 8.42295356609501, - 40.39580047334468 - ], - [ - 8.401155959691188, - 40.40947453202827 - ], - [ - 8.373908951686408, - 40.49094913168468 - ], - [ - 8.334206168593731, - 40.51373922949067 - ], - [ - 8.295281871444047, - 40.59293481936648 - ], - [ - 8.197971128569835, - 40.57071447400564 - ], - [ - 8.208869931771746, - 40.61515516472731 - ], - [ - 8.149705000104227, - 40.58153977046348 - ], - [ - 8.143477112560277, - 40.62256194651426 - ], - [ - 8.185515353481936, - 40.63794526253331 - ], - [ - 8.20342053017079, - 40.68865323015163 - ], - [ - 8.137249225016328, - 40.72739639642181 - ], - [ - 8.164496233021106, - 40.768418572472584 - ], - [ - 8.163717747078113, - 40.79063891783343 - ], - [ - 8.218211763087671, - 40.86869500281893 - ], - [ - 8.22210419280264, - 40.89205485307007 - ], - [ - 8.176173522166012, - 40.933646781566 - ], - [ - 8.202642044227797, - 40.97238994783618 - ], - [ - 8.237673911662514, - 40.95301836470109 - ], - [ - 8.232224510061558, - 40.906298664198815 - ], - [ - 8.314744020018889, - 40.844195647677495 - ], - [ - 8.417504164494055, - 40.83792837078085 - ], - [ - 8.450200574099789, - 40.820835797426355 - ], - [ - 8.537390999715083, - 40.824824064542405 - ], - [ - 8.623024453444389, - 40.861288221031984 - ], - [ - 8.646379031734199, - 40.88806658595402 - ], - [ - 8.704765477458725, - 40.91142643620516 - ], - [ - 8.791177417131024, - 40.92225173266301 - ], - [ - 8.829323228337715, - 40.94959985003019 - ] - ] - ], - [ - [ - [ - 8.31941493567685, - 41.121095336020254 - ], - [ - 8.338877084251692, - 41.059562071944086 - ], - [ - 8.285161554185128, - 41.06468984395043 - ], - [ - 8.244680285149457, - 41.0276559350157 - ], - [ - 8.254800602408373, - 40.98606400651977 - ], - [ - 8.210426903657734, - 41.003156579874265 - ], - [ - 8.22443965063162, - 41.043609003479894 - ], - [ - 8.2516866586364, - 41.05272504260229 - ], - [ - 8.31941493567685, - 41.121095336020254 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 15, - "NAME_1": "Sicily", - "ID_2": 80, - "NAME_2": "Agrigento", - "HASC_2": "IT.AG", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Agrigente|Girgenti" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 12.53725177481665, - 35.53011459176623 - ], - [ - 12.621328256659966, - 35.52213805753413 - ], - [ - 12.59018881894022, - 35.49763870239269 - ], - [ - 12.53725177481665, - 35.53011459176623 - ] - ] - ], - [ - [ - [ - 13.733006183254952, - 37.6837788344321 - ], - [ - 13.801512946238397, - 37.689476358883596 - ], - [ - 13.824089038585214, - 37.67637205264515 - ], - [ - 13.811633263497313, - 37.64275665838132 - ], - [ - 13.76648107880368, - 37.598315967659644 - ], - [ - 13.668391849986476, - 37.57552586985366 - ], - [ - 13.690967942333293, - 37.55672403916371 - ], - [ - 13.690967942333293, - 37.502027804429346 - ], - [ - 13.657493046784564, - 37.47297042972671 - ], - [ - 13.702645231478197, - 37.443913055024076 - ], - [ - 13.750132874000812, - 37.42909949145018 - ], - [ - 13.775822910119604, - 37.441634045243475 - ], - [ - 13.82720298235719, - 37.433657511011376 - ], - [ - 13.863013335734898, - 37.404600136308744 - ], - [ - 13.908944006371526, - 37.38864706784455 - ], - [ - 13.88247548430974, - 37.36072919803222 - ], - [ - 13.927627669003375, - 37.331671823329586 - ], - [ - 13.961881050495096, - 37.331671823329586 - ], - [ - 14.028830841592553, - 37.27583608370491 - ], - [ - 13.99224200227185, - 37.22170960141569 - ], - [ - 13.98367865689892, - 37.19265222671306 - ], - [ - 14.037394186965484, - 37.14365351643018 - ], - [ - 14.037394186965484, - 37.1071893599406 - ], - [ - 13.976672283411975, - 37.10889861727605 - ], - [ - 13.90349460477057, - 37.094654806147304 - ], - [ - 13.858342420076935, - 37.1117473795018 - ], - [ - 13.82331055264222, - 37.14479302132048 - ], - [ - 13.750132874000812, - 37.14878128843653 - ], - [ - 13.725221323825014, - 37.16986212890707 - ], - [ - 13.66060699055654, - 37.193791731603355 - ], - [ - 13.622461179349848, - 37.234244155208984 - ], - [ - 13.552397444480416, - 37.28723113260791 - ], - [ - 13.44730184217627, - 37.292928657059406 - ], - [ - 13.40526360125461, - 37.331102070884434 - ], - [ - 13.321965605354286, - 37.36357796025796 - ], - [ - 13.214534545221156, - 37.46157538082372 - ], - [ - 13.173274790242491, - 37.48949325063605 - ], - [ - 13.077521019254267, - 37.505446319100244 - ], - [ - 13.039375208047577, - 37.49519077508755 - ], - [ - 12.947513866774322, - 37.570967850292455 - ], - [ - 12.896133794536738, - 37.577235127189105 - ], - [ - 12.91559594311158, - 37.63762888637497 - ], - [ - 12.890684392935782, - 37.64161715349102 - ], - [ - 12.918709886883555, - 37.69061586377389 - ], - [ - 12.964640557520182, - 37.73049853493438 - ], - [ - 13.01290668598579, - 37.743602841172816 - ], - [ - 13.081413448969236, - 37.695173883335094 - ], - [ - 13.12656563366287, - 37.70201091267689 - ], - [ - 13.188844509102363, - 37.69289487355449 - ], - [ - 13.214534545221156, - 37.67523254775485 - ], - [ - 13.21297757333517, - 37.64161715349102 - ], - [ - 13.25501581425683, - 37.61939680813018 - ], - [ - 13.276813420660652, - 37.648454182832815 - ], - [ - 13.321965605354286, - 37.650733192613416 - ], - [ - 13.334421380442183, - 37.609711016562635 - ], - [ - 13.321187119411292, - 37.58919992853725 - ], - [ - 13.359332930617981, - 37.54304998048012 - ], - [ - 13.399814199653655, - 37.55729379160886 - ], - [ - 13.381909022964798, - 37.600594977440245 - ], - [ - 13.385022966736773, - 37.654721459729465 - ], - [ - 13.427061207658433, - 37.64446591571677 - ], - [ - 13.508802231672771, - 37.65984923173581 - ], - [ - 13.517365577045702, - 37.64275665838132 - ], - [ - 13.564074733625322, - 37.63648938148467 - ], - [ - 13.602220544832011, - 37.65700046951006 - ], - [ - 13.655936074898577, - 37.65927947929066 - ], - [ - 13.673062765644438, - 37.69004611132875 - ], - [ - 13.733006183254952, - 37.6837788344321 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 15, - "NAME_1": "Sicily", - "ID_2": 81, - "NAME_2": "Caltanissetta", - "HASC_2": "IT.CL", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 14.07009059657122, - 37.71340596157988 - ], - [ - 14.07865394194415, - 37.688906606438444 - ], - [ - 14.034280243193509, - 37.656430717064914 - ], - [ - 14.007033235188729, - 37.67295353797425 - ], - [ - 14.044400560452427, - 37.72708002026348 - ], - [ - 14.07009059657122, - 37.71340596157988 - ] - ] - ], - [ - [ - [ - 14.135483415782687, - 37.617687550794734 - ], - [ - 14.140154331440652, - 37.582932651640604 - ], - [ - 14.127698556352751, - 37.519120377783835 - ], - [ - 14.142489789269632, - 37.478667954178206 - ], - [ - 14.070869082514212, - 37.42340196699868 - ], - [ - 14.066976652799244, - 37.404600136308744 - ], - [ - 14.084103343545106, - 37.34021811000683 - ], - [ - 14.127698556352751, - 37.34021811000683 - ], - [ - 14.166622853502435, - 37.32483479398778 - ], - [ - 14.232015672713906, - 37.348764396684075 - ], - [ - 14.267826026091615, - 37.333381080665035 - ], - [ - 14.31764912644321, - 37.327683556213536 - ], - [ - 14.35345947982092, - 37.30717246818814 - ], - [ - 14.381484973768693, - 37.284952122827306 - ], - [ - 14.376035572167737, - 37.2068960378418 - ], - [ - 14.402504094229524, - 37.178408415584315 - ], - [ - 14.432865046006278, - 37.184105940035806 - ], - [ - 14.47568177287093, - 37.137955991978686 - ], - [ - 14.45232719458112, - 37.09750356837306 - ], - [ - 14.428972616291308, - 37.092945548811855 - ], - [ - 14.444542335151183, - 37.054202382541675 - ], - [ - 14.414181383374428, - 37.03141228473569 - ], - [ - 14.33866824690404, - 37.00121540514276 - ], - [ - 14.298186977868369, - 37.03540055185174 - ], - [ - 14.242135989972823, - 37.066167183889824 - ], - [ - 14.157281022186512, - 37.09579431103761 - ], - [ - 14.070869082514212, - 37.110607874611496 - ], - [ - 14.037394186965484, - 37.1071893599406 - ], - [ - 14.037394186965484, - 37.14365351643018 - ], - [ - 13.98367865689892, - 37.19265222671306 - ], - [ - 13.99224200227185, - 37.22170960141569 - ], - [ - 14.028830841592553, - 37.27583608370491 - ], - [ - 13.961881050495096, - 37.331671823329586 - ], - [ - 13.927627669003375, - 37.331671823329586 - ], - [ - 13.88247548430974, - 37.36072919803222 - ], - [ - 13.908944006371526, - 37.38864706784455 - ], - [ - 13.863013335734898, - 37.404600136308744 - ], - [ - 13.82720298235719, - 37.433657511011376 - ], - [ - 13.775822910119604, - 37.441634045243475 - ], - [ - 13.750132874000812, - 37.42909949145018 - ], - [ - 13.702645231478197, - 37.443913055024076 - ], - [ - 13.657493046784564, - 37.47297042972671 - ], - [ - 13.690967942333293, - 37.502027804429346 - ], - [ - 13.690967942333293, - 37.55672403916371 - ], - [ - 13.668391849986476, - 37.57552586985366 - ], - [ - 13.76648107880368, - 37.598315967659644 - ], - [ - 13.811633263497313, - 37.64275665838132 - ], - [ - 13.824089038585214, - 37.67637205264515 - ], - [ - 13.801512946238397, - 37.689476358883596 - ], - [ - 13.733006183254952, - 37.6837788344321 - ], - [ - 13.802291432181391, - 37.743602841172816 - ], - [ - 13.814747207269289, - 37.70599917979294 - ], - [ - 13.863791821677891, - 37.69061586377389 - ], - [ - 13.905051576656557, - 37.658709726845515 - ], - [ - 13.900380660998595, - 37.61939680813018 - ], - [ - 13.957210134837133, - 37.58692091875665 - ], - [ - 14.02805235564956, - 37.60344373966599 - ], - [ - 14.04284358856644, - 37.64560542060707 - ], - [ - 14.07865394194415, - 37.64560542060707 - ], - [ - 14.135483415782687, - 37.617687550794734 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 15, - "NAME_1": "Sicily", - "ID_2": 82, - "NAME_2": "Catania", - "HASC_2": "IT.CT", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Catane" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.258838631522579, - 37.80855461991988 - ], - [ - 15.204344615513023, - 37.74075407894707 - ], - [ - 15.2191358484299, - 37.708278189573534 - ], - [ - 15.199673699855058, - 37.654721459729465 - ], - [ - 15.17476214967926, - 37.63250111436862 - ], - [ - 15.17631912156525, - 37.57552586985366 - ], - [ - 15.11559721801174, - 37.530515426686826 - ], - [ - 15.084457780291991, - 37.482656221294256 - ], - [ - 15.090685667835942, - 37.35958969314192 - ], - [ - 14.98247612175982, - 37.37497300916096 - ], - [ - 14.922532704149305, - 37.41371617543114 - ], - [ - 14.843905623906945, - 37.38010078116731 - ], - [ - 14.83923470824898, - 37.35901994069677 - ], - [ - 14.779291290638469, - 37.331102070884434 - ], - [ - 14.804981326757261, - 37.31685825975569 - ], - [ - 14.843905623906945, - 37.325404546432935 - ], - [ - 14.89139326642956, - 37.31286999263964 - ], - [ - 14.88360840699962, - 37.28723113260791 - ], - [ - 14.84701956767892, - 37.26045276768587 - ], - [ - 14.811987700244202, - 37.257604005460124 - ], - [ - 14.773841889037513, - 37.22341885875114 - ], - [ - 14.871931117854718, - 37.19037321693246 - ], - [ - 14.835342278534014, - 37.16359485201042 - ], - [ - 14.837677736362995, - 37.12542143818539 - ], - [ - 14.79486100949834, - 37.133397972417484 - ], - [ - 14.794082523555346, - 37.110607874611496 - ], - [ - 14.725575760571903, - 37.103201092824555 - ], - [ - 14.702999668225086, - 37.118584408843596 - ], - [ - 14.611138326951831, - 37.08724802436036 - ], - [ - 14.564429170372211, - 37.052493125206226 - ], - [ - 14.520833957564562, - 37.07300421323162 - ], - [ - 14.47568177287093, - 37.05306287765138 - ], - [ - 14.444542335151183, - 37.054202382541675 - ], - [ - 14.428972616291308, - 37.092945548811855 - ], - [ - 14.45232719458112, - 37.09750356837306 - ], - [ - 14.47568177287093, - 37.137955991978686 - ], - [ - 14.432865046006278, - 37.184105940035806 - ], - [ - 14.402504094229524, - 37.178408415584315 - ], - [ - 14.376035572167737, - 37.2068960378418 - ], - [ - 14.381484973768693, - 37.284952122827306 - ], - [ - 14.35345947982092, - 37.30717246818814 - ], - [ - 14.432865046006278, - 37.29349840950455 - ], - [ - 14.456219624296088, - 37.31116073530419 - ], - [ - 14.499814837103735, - 37.30945147796874 - ], - [ - 14.494365435502779, - 37.34762489179377 - ], - [ - 14.590897692433995, - 37.37497300916096 - ], - [ - 14.581555861118071, - 37.40346063141845 - ], - [ - 14.615809242609792, - 37.412576670540844 - ], - [ - 14.625151073925718, - 37.43536676834683 - ], - [ - 14.588562234605014, - 37.45131983681102 - ], - [ - 14.554308853113291, - 37.44676181724982 - ], - [ - 14.525504873222527, - 37.46385439060431 - ], - [ - 14.523947901336538, - 37.51798087289354 - ], - [ - 14.544967021797369, - 37.544189485370424 - ], - [ - 14.59790406592094, - 37.53678270358348 - ], - [ - 14.681980547764258, - 37.55900304894431 - ], - [ - 14.787076150068405, - 37.50487656665509 - ], - [ - 14.807316784586241, - 37.58065364186 - ], - [ - 14.826000447218089, - 37.58806042364695 - ], - [ - 14.822108017503119, - 37.63876839126527 - ], - [ - 14.793304037612355, - 37.65415170728431 - ], - [ - 14.79875343921331, - 37.71169670424443 - ], - [ - 14.724797274628909, - 37.6826393295418 - ], - [ - 14.715455443312987, - 37.70542942734779 - ], - [ - 14.728689704343878, - 37.74474234606312 - ], - [ - 14.717012415198973, - 37.76810219631425 - ], - [ - 14.745037909146745, - 37.79089229412024 - ], - [ - 14.742702451317765, - 37.81937991637773 - ], - [ - 14.803424354871272, - 37.81767065904228 - ], - [ - 14.789411607897385, - 37.85413481553186 - ], - [ - 14.760607628006618, - 37.869518131550905 - ], - [ - 14.762943085835602, - 37.93446991029797 - ], - [ - 14.801867382985286, - 37.954411245878205 - ], - [ - 14.857139884937837, - 37.92763288095617 - ], - [ - 14.927203619807269, - 37.96124827522 - ], - [ - 14.956007599698033, - 37.91224956493713 - ], - [ - 15.050204398800272, - 37.89572674402779 - ], - [ - 15.111704788296773, - 37.90712179293078 - ], - [ - 15.150629085446457, - 37.89686624891809 - ], - [ - 15.21057250305697, - 37.86097184487365 - ], - [ - 15.258838631522579, - 37.80855461991988 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 15, - "NAME_1": "Sicily", - "ID_2": 83, - "NAME_2": "Enna", - "HASC_2": "IT.EN", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.742702451317765, - 37.81937991637773 - ], - [ - 14.745037909146745, - 37.79089229412024 - ], - [ - 14.717012415198973, - 37.76810219631425 - ], - [ - 14.728689704343878, - 37.74474234606312 - ], - [ - 14.715455443312987, - 37.70542942734779 - ], - [ - 14.724797274628909, - 37.6826393295418 - ], - [ - 14.79875343921331, - 37.71169670424443 - ], - [ - 14.793304037612355, - 37.65415170728431 - ], - [ - 14.822108017503119, - 37.63876839126527 - ], - [ - 14.826000447218089, - 37.58806042364695 - ], - [ - 14.807316784586241, - 37.58065364186 - ], - [ - 14.787076150068405, - 37.50487656665509 - ], - [ - 14.681980547764258, - 37.55900304894431 - ], - [ - 14.59790406592094, - 37.53678270358348 - ], - [ - 14.544967021797369, - 37.544189485370424 - ], - [ - 14.523947901336538, - 37.51798087289354 - ], - [ - 14.525504873222527, - 37.46385439060431 - ], - [ - 14.554308853113291, - 37.44676181724982 - ], - [ - 14.588562234605014, - 37.45131983681102 - ], - [ - 14.625151073925718, - 37.43536676834683 - ], - [ - 14.615809242609792, - 37.412576670540844 - ], - [ - 14.581555861118071, - 37.40346063141845 - ], - [ - 14.590897692433995, - 37.37497300916096 - ], - [ - 14.494365435502779, - 37.34762489179377 - ], - [ - 14.499814837103735, - 37.30945147796874 - ], - [ - 14.456219624296088, - 37.31116073530419 - ], - [ - 14.432865046006278, - 37.29349840950455 - ], - [ - 14.35345947982092, - 37.30717246818814 - ], - [ - 14.31764912644321, - 37.327683556213536 - ], - [ - 14.267826026091615, - 37.333381080665035 - ], - [ - 14.232015672713906, - 37.348764396684075 - ], - [ - 14.166622853502435, - 37.32483479398778 - ], - [ - 14.127698556352751, - 37.34021811000683 - ], - [ - 14.084103343545106, - 37.34021811000683 - ], - [ - 14.066976652799244, - 37.404600136308744 - ], - [ - 14.070869082514212, - 37.42340196699868 - ], - [ - 14.142489789269632, - 37.478667954178206 - ], - [ - 14.127698556352751, - 37.519120377783835 - ], - [ - 14.140154331440652, - 37.582932651640604 - ], - [ - 14.135483415782687, - 37.617687550794734 - ], - [ - 14.164287395673455, - 37.63819863882012 - ], - [ - 14.162730423787467, - 37.67067452819366 - ], - [ - 14.217224439797025, - 37.67865106242575 - ], - [ - 14.269382997977603, - 37.70542942734779 - ], - [ - 14.2942945481534, - 37.74417259361797 - ], - [ - 14.269382997977603, - 37.77721823543665 - ], - [ - 14.263155110433653, - 37.82222867860347 - ], - [ - 14.280281801179514, - 37.84103050929342 - ], - [ - 14.32776944370213, - 37.83875149951282 - ], - [ - 14.390826805084618, - 37.85356506308671 - ], - [ - 14.407175009887485, - 37.867239121770304 - ], - [ - 14.493586949559784, - 37.82564719327438 - ], - [ - 14.50526423870469, - 37.85128605330611 - ], - [ - 14.558979768771255, - 37.879203923118446 - ], - [ - 14.5535303671703, - 37.84103050929342 - ], - [ - 14.59401163620597, - 37.81368239192623 - ], - [ - 14.679645089935274, - 37.79658981857174 - ], - [ - 14.742702451317765, - 37.81937991637773 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 15, - "NAME_1": "Sicily", - "ID_2": 84, - "NAME_2": "Messina", - "HASC_2": "IT.ME", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Messine" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 15.258838631522579, - 37.80855461991988 - ], - [ - 15.21057250305697, - 37.86097184487365 - ], - [ - 15.150629085446457, - 37.89686624891809 - ], - [ - 15.111704788296773, - 37.90712179293078 - ], - [ - 15.050204398800272, - 37.89572674402779 - ], - [ - 14.956007599698033, - 37.91224956493713 - ], - [ - 14.927203619807269, - 37.96124827522 - ], - [ - 14.857139884937837, - 37.92763288095617 - ], - [ - 14.801867382985286, - 37.954411245878205 - ], - [ - 14.762943085835602, - 37.93446991029797 - ], - [ - 14.760607628006618, - 37.869518131550905 - ], - [ - 14.789411607897385, - 37.85413481553186 - ], - [ - 14.803424354871272, - 37.81767065904228 - ], - [ - 14.742702451317765, - 37.81937991637773 - ], - [ - 14.679645089935274, - 37.79658981857174 - ], - [ - 14.59401163620597, - 37.81368239192623 - ], - [ - 14.5535303671703, - 37.84103050929342 - ], - [ - 14.558979768771255, - 37.879203923118446 - ], - [ - 14.50526423870469, - 37.85128605330611 - ], - [ - 14.493586949559784, - 37.82564719327438 - ], - [ - 14.407175009887485, - 37.867239121770304 - ], - [ - 14.390826805084618, - 37.85356506308671 - ], - [ - 14.32776944370213, - 37.83875149951282 - ], - [ - 14.280281801179514, - 37.84103050929342 - ], - [ - 14.274832399578559, - 37.90541253559533 - ], - [ - 14.214888981968045, - 37.97321307656815 - ], - [ - 14.184528030191291, - 38.01993277707042 - ], - [ - 14.228901728941931, - 38.010246985502874 - ], - [ - 14.313756696728243, - 38.008537728167425 - ], - [ - 14.373700114338757, - 38.016514262399525 - ], - [ - 14.423523214690352, - 38.039874112650665 - ], - [ - 14.474124800984942, - 38.03303708330887 - ], - [ - 14.55197339528431, - 38.05810619089545 - ], - [ - 14.630600475526673, - 38.070640744688745 - ], - [ - 14.674974174277313, - 38.09684935716563 - ], - [ - 14.74581639508974, - 38.1640801456933 - ], - [ - 14.7878546360114, - 38.1515455919 - ], - [ - 14.89139326642956, - 38.173196184815694 - ], - [ - 14.914747844719368, - 38.19199801550563 - ], - [ - 14.969241860728928, - 38.1526850967903 - ], - [ - 15.047090455028297, - 38.15097583945485 - ], - [ - 15.060324716059188, - 38.12818574164886 - ], - [ - 15.114040246125754, - 38.12704623675857 - ], - [ - 15.170869719964294, - 38.15097583945485 - ], - [ - 15.228477679745826, - 38.208520836414976 - ], - [ - 15.291535041128313, - 38.206241826634376 - ], - [ - 15.350699972795834, - 38.21649737064707 - ], - [ - 15.452681631328009, - 38.25296152713665 - ], - [ - 15.521188394311451, - 38.298541722748624 - ], - [ - 15.65197403273439, - 38.26549608092994 - ], - [ - 15.585802727579928, - 38.24840350757545 - ], - [ - 15.55855571957515, - 38.19769553995713 - ], - [ - 15.562448149290116, - 38.18402148127354 - ], - [ - 15.520409908368457, - 38.12590673186827 - ], - [ - 15.476814695560812, - 38.053548171334256 - ], - [ - 15.441004342183103, - 38.02449079663162 - ], - [ - 15.307104759988189, - 37.8797736755636 - ], - [ - 15.258838631522579, - 37.80855461991988 - ] - ] - ], - [ - [ - [ - 14.960678515355998, - 38.43300329980396 - ], - [ - 14.996488868733707, - 38.39824840064983 - ], - [ - 14.977026720158864, - 38.36805152105689 - ], - [ - 14.9357669651802, - 38.403945925101326 - ], - [ - 14.960678515355998, - 38.43300329980396 - ] - ] - ], - [ - [ - [ - 14.960678515355998, - 38.52416369102791 - ], - [ - 14.956007599698033, - 38.438700824255456 - ], - [ - 14.898399639916502, - 38.47801374297078 - ], - [ - 14.906184499346438, - 38.51447789946037 - ], - [ - 14.960678515355998, - 38.52416369102791 - ] - ] - ], - [ - [ - [ - 14.817437101845158, - 38.58455745021378 - ], - [ - 14.873488089740704, - 38.581708687988026 - ], - [ - 14.854804427108856, - 38.533279730150305 - ], - [ - 14.795639495441335, - 38.56119759996264 - ], - [ - 14.817437101845158, - 38.58455745021378 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 15, - "NAME_1": "Sicily", - "ID_2": 85, - "NAME_2": "Palermo", - "HASC_2": "IT.PA", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Palerme" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.184528030191291, - 38.01993277707042 - ], - [ - 14.214888981968045, - 37.97321307656815 - ], - [ - 14.274832399578559, - 37.90541253559533 - ], - [ - 14.280281801179514, - 37.84103050929342 - ], - [ - 14.263155110433653, - 37.82222867860347 - ], - [ - 14.269382997977603, - 37.77721823543665 - ], - [ - 14.2942945481534, - 37.74417259361797 - ], - [ - 14.269382997977603, - 37.70542942734779 - ], - [ - 14.217224439797025, - 37.67865106242575 - ], - [ - 14.162730423787467, - 37.67067452819366 - ], - [ - 14.164287395673455, - 37.63819863882012 - ], - [ - 14.135483415782687, - 37.617687550794734 - ], - [ - 14.07865394194415, - 37.64560542060707 - ], - [ - 14.04284358856644, - 37.64560542060707 - ], - [ - 14.02805235564956, - 37.60344373966599 - ], - [ - 13.957210134837133, - 37.58692091875665 - ], - [ - 13.900380660998595, - 37.61939680813018 - ], - [ - 13.905051576656557, - 37.658709726845515 - ], - [ - 13.863791821677891, - 37.69061586377389 - ], - [ - 13.814747207269289, - 37.70599917979294 - ], - [ - 13.802291432181391, - 37.743602841172816 - ], - [ - 13.733006183254952, - 37.6837788344321 - ], - [ - 13.673062765644438, - 37.69004611132875 - ], - [ - 13.655936074898577, - 37.65927947929066 - ], - [ - 13.602220544832011, - 37.65700046951006 - ], - [ - 13.564074733625322, - 37.63648938148467 - ], - [ - 13.517365577045702, - 37.64275665838132 - ], - [ - 13.508802231672771, - 37.65984923173581 - ], - [ - 13.427061207658433, - 37.64446591571677 - ], - [ - 13.385022966736773, - 37.654721459729465 - ], - [ - 13.381909022964798, - 37.600594977440245 - ], - [ - 13.399814199653655, - 37.55729379160886 - ], - [ - 13.359332930617981, - 37.54304998048012 - ], - [ - 13.321187119411292, - 37.58919992853725 - ], - [ - 13.334421380442183, - 37.609711016562635 - ], - [ - 13.321965605354286, - 37.650733192613416 - ], - [ - 13.276813420660652, - 37.648454182832815 - ], - [ - 13.25501581425683, - 37.61939680813018 - ], - [ - 13.21297757333517, - 37.64161715349102 - ], - [ - 13.214534545221156, - 37.67523254775485 - ], - [ - 13.188844509102363, - 37.69289487355449 - ], - [ - 13.12656563366287, - 37.70201091267689 - ], - [ - 13.081413448969236, - 37.695173883335094 - ], - [ - 13.01290668598579, - 37.743602841172816 - ], - [ - 13.089198308399173, - 37.77152071098515 - ], - [ - 13.056501898793439, - 37.81197313459078 - ], - [ - 12.973203902893113, - 37.82564719327438 - ], - [ - 12.943621437059353, - 37.846158281299765 - ], - [ - 12.954520240261264, - 37.898005753808384 - ], - [ - 13.024583975130696, - 37.90370327825988 - ], - [ - 13.047938553420508, - 37.94016743474946 - ], - [ - 13.004343340612861, - 37.99258465970324 - ], - [ - 12.978653304494069, - 38.04101361754096 - ], - [ - 13.077521019254267, - 38.08830307048839 - ], - [ - 13.055723412850444, - 38.13160425631976 - ], - [ - 13.104768027259047, - 38.19142826306048 - ], - [ - 13.161597501097585, - 38.18516098616384 - ], - [ - 13.193515424760328, - 38.169777670144796 - ], - [ - 13.272920990945682, - 38.19826529240228 - ], - [ - 13.325858035069253, - 38.203962816853775 - ], - [ - 13.359332930617981, - 38.19142826306048 - ], - [ - 13.384244480793779, - 38.10824440606863 - ], - [ - 13.44107395463232, - 38.09514009983018 - ], - [ - 13.490118569040922, - 38.10197712917198 - ], - [ - 13.510359203558757, - 38.11793019763617 - ], - [ - 13.5422771272215, - 38.08830307048839 - ], - [ - 13.54072015533551, - 38.05810619089545 - ], - [ - 13.623239665292843, - 38.010246985502874 - ], - [ - 13.745461958342851, - 37.9703643143424 - ], - [ - 13.834987841787125, - 37.98289886813569 - ], - [ - 13.944754359749236, - 38.02733955885737 - ], - [ - 14.034280243193509, - 38.04044386509581 - ], - [ - 14.06386270902727, - 38.018793272180126 - ], - [ - 14.184528030191291, - 38.01993277707042 - ] - ], - [ - [ - 14.07009059657122, - 37.71340596157988 - ], - [ - 14.044400560452427, - 37.72708002026348 - ], - [ - 14.007033235188729, - 37.67295353797425 - ], - [ - 14.034280243193509, - 37.656430717064914 - ], - [ - 14.07865394194415, - 37.688906606438444 - ], - [ - 14.07009059657122, - 37.71340596157988 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 15, - "NAME_1": "Sicily", - "ID_2": 86, - "NAME_2": "Ragusa", - "HASC_2": "IT.RG", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Raguse" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.001159784391668, - 36.70266512388431 - ], - [ - 14.956007599698033, - 36.69354908476192 - ], - [ - 14.912412386890388, - 36.72374596435485 - ], - [ - 14.853247455222867, - 36.729443488806346 - ], - [ - 14.784740692239424, - 36.70380462877461 - ], - [ - 14.745037909146745, - 36.7208972021291 - ], - [ - 14.687429949365214, - 36.721466954574254 - ], - [ - 14.630600475526673, - 36.76533789285078 - ], - [ - 14.556644310942273, - 36.78243046620527 - ], - [ - 14.493586949559784, - 36.78584898087617 - ], - [ - 14.45855508212507, - 36.81547610802395 - ], - [ - 14.436757475721246, - 36.883846401441915 - ], - [ - 14.379149515939712, - 36.96076298153713 - ], - [ - 14.33866824690404, - 37.00121540514276 - ], - [ - 14.414181383374428, - 37.03141228473569 - ], - [ - 14.444542335151183, - 37.054202382541675 - ], - [ - 14.47568177287093, - 37.05306287765138 - ], - [ - 14.520833957564562, - 37.07300421323162 - ], - [ - 14.564429170372211, - 37.052493125206226 - ], - [ - 14.611138326951831, - 37.08724802436036 - ], - [ - 14.702999668225086, - 37.118584408843596 - ], - [ - 14.725575760571903, - 37.103201092824555 - ], - [ - 14.794082523555346, - 37.110607874611496 - ], - [ - 14.79486100949834, - 37.133397972417484 - ], - [ - 14.817437101845158, - 37.11003812216635 - ], - [ - 14.818994073731147, - 37.06160916432862 - ], - [ - 14.854025941165862, - 37.036540056742034 - ], - [ - 14.88750083671459, - 36.98982035623976 - ], - [ - 14.897621153973507, - 36.926577834828144 - ], - [ - 14.884386892942615, - 36.90093897479641 - ], - [ - 14.939659394895166, - 36.86504457075198 - ], - [ - 14.9233111900923, - 36.849661254732936 - ], - [ - 14.864924744367773, - 36.86618407564227 - ], - [ - 14.854804427108856, - 36.8285804142624 - ], - [ - 14.954450627812047, - 36.804650811566106 - ], - [ - 14.989482495246765, - 36.777872446644075 - ], - [ - 15.001159784391668, - 36.70266512388431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 15, - "NAME_1": "Sicily", - "ID_2": 87, - "NAME_2": "Syracuse", - "HASC_2": "IT.SR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Siracusa|Syrakus" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.090685667835942, - 37.35958969314192 - ], - [ - 15.104698414809828, - 37.31059098285905 - ], - [ - 15.135059366586582, - 37.310021230413895 - ], - [ - 15.16386334647735, - 37.288370637498204 - ], - [ - 15.224585250030856, - 37.27013855925342 - ], - [ - 15.256503173693599, - 37.24279044188623 - ], - [ - 15.191110354482127, - 37.23595341254443 - ], - [ - 15.18488246693818, - 37.195500988938804 - ], - [ - 15.204344615513023, - 37.155048565333175 - ], - [ - 15.237819511061751, - 37.1151658941727 - ], - [ - 15.293870498957297, - 37.10775911238575 - ], - [ - 15.301655358387233, - 37.08041099501857 - ], - [ - 15.280636237926402, - 37.03426104696144 - ], - [ - 15.302433844330224, - 37.01488946382635 - ], - [ - 15.187217924767161, - 36.94708892285353 - ], - [ - 15.157635458933399, - 36.9191710530412 - ], - [ - 15.137394824415566, - 36.86732358053258 - ], - [ - 15.107033872638809, - 36.84054521561054 - ], - [ - 15.094578097550912, - 36.79781378222431 - ], - [ - 15.139730282244546, - 36.68386329319437 - ], - [ - 15.083679294349, - 36.64967814648539 - ], - [ - 15.057989258230208, - 36.661642947833535 - ], - [ - 15.023735876738485, - 36.69981636165856 - ], - [ - 15.001159784391668, - 36.70266512388431 - ], - [ - 14.989482495246765, - 36.777872446644075 - ], - [ - 14.954450627812047, - 36.804650811566106 - ], - [ - 14.854804427108856, - 36.8285804142624 - ], - [ - 14.864924744367773, - 36.86618407564227 - ], - [ - 14.9233111900923, - 36.849661254732936 - ], - [ - 14.939659394895166, - 36.86504457075198 - ], - [ - 14.884386892942615, - 36.90093897479641 - ], - [ - 14.897621153973507, - 36.926577834828144 - ], - [ - 14.88750083671459, - 36.98982035623976 - ], - [ - 14.854025941165862, - 37.036540056742034 - ], - [ - 14.818994073731147, - 37.06160916432862 - ], - [ - 14.817437101845158, - 37.11003812216635 - ], - [ - 14.79486100949834, - 37.133397972417484 - ], - [ - 14.837677736362995, - 37.12542143818539 - ], - [ - 14.835342278534014, - 37.16359485201042 - ], - [ - 14.871931117854718, - 37.19037321693246 - ], - [ - 14.773841889037513, - 37.22341885875114 - ], - [ - 14.811987700244202, - 37.257604005460124 - ], - [ - 14.84701956767892, - 37.26045276768587 - ], - [ - 14.88360840699962, - 37.28723113260791 - ], - [ - 14.89139326642956, - 37.31286999263964 - ], - [ - 14.843905623906945, - 37.325404546432935 - ], - [ - 14.804981326757261, - 37.31685825975569 - ], - [ - 14.779291290638469, - 37.331102070884434 - ], - [ - 14.83923470824898, - 37.35901994069677 - ], - [ - 14.843905623906945, - 37.38010078116731 - ], - [ - 14.922532704149305, - 37.41371617543114 - ], - [ - 14.98247612175982, - 37.37497300916096 - ], - [ - 15.090685667835942, - 37.35958969314192 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 15, - "NAME_1": "Sicily", - "ID_2": 88, - "NAME_2": "Trapani", - "HASC_2": "IT.TP", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 11.953387317571384, - 36.84054521561054 - ], - [ - 12.01410922112489, - 36.824022394701196 - ], - [ - 12.050698060445594, - 36.80066254445006 - ], - [ - 12.055368976103555, - 36.76191937817988 - ], - [ - 12.021894080554826, - 36.73457126081269 - ], - [ - 11.981412811519156, - 36.74482680482539 - ], - [ - 11.926140309566604, - 36.80237180178551 - ], - [ - 11.953387317571384, - 36.84054521561054 - ] - ] - ], - [ - [ - [ - 12.308376907576504, - 37.956120503213654 - ], - [ - 12.369877297073005, - 37.92250510894982 - ], - [ - 12.286579301172681, - 37.91509832716288 - ], - [ - 12.271788068255802, - 37.93617916763342 - ], - [ - 12.308376907576504, - 37.956120503213654 - ] - ] - ], - [ - [ - [ - 12.063932321476486, - 37.99372416459354 - ], - [ - 12.080280526279353, - 37.9578297605491 - ], - [ - 12.045248658844638, - 37.958399512994255 - ], - [ - 12.029678939984764, - 37.993154412148385 - ], - [ - 12.063932321476486, - 37.99372416459354 - ] - ] - ], - [ - [ - [ - 12.978653304494069, - 38.04101361754096 - ], - [ - 13.004343340612861, - 37.99258465970324 - ], - [ - 13.047938553420508, - 37.94016743474946 - ], - [ - 13.024583975130696, - 37.90370327825988 - ], - [ - 12.954520240261264, - 37.898005753808384 - ], - [ - 12.943621437059353, - 37.846158281299765 - ], - [ - 12.973203902893113, - 37.82564719327438 - ], - [ - 13.056501898793439, - 37.81197313459078 - ], - [ - 13.089198308399173, - 37.77152071098515 - ], - [ - 13.01290668598579, - 37.743602841172816 - ], - [ - 12.964640557520182, - 37.73049853493438 - ], - [ - 12.918709886883555, - 37.69061586377389 - ], - [ - 12.890684392935782, - 37.64161715349102 - ], - [ - 12.91559594311158, - 37.63762888637497 - ], - [ - 12.896133794536738, - 37.577235127189105 - ], - [ - 12.780917874973673, - 37.581223394305155 - ], - [ - 12.67270832889755, - 37.559572801389464 - ], - [ - 12.629113116089904, - 37.60116472988539 - ], - [ - 12.614321883173023, - 37.63591962903952 - ], - [ - 12.564498782821428, - 37.66155848907126 - ], - [ - 12.519346598127793, - 37.660418984180964 - ], - [ - 12.471080469662184, - 37.704859674902636 - ], - [ - 12.471858955605178, - 37.743602841172816 - ], - [ - 12.424371313082563, - 37.80228734302324 - ], - [ - 12.462517124289255, - 37.81653115415198 - ], - [ - 12.484314730693077, - 37.85812308264791 - ], - [ - 12.465631068061228, - 37.913958822272576 - ], - [ - 12.49521353389499, - 37.95555075076851 - ], - [ - 12.493656562009, - 37.98118961080024 - ], - [ - 12.560606353106458, - 38.0655129726824 - ], - [ - 12.610429453458055, - 38.0655129726824 - ], - [ - 12.643904349006784, - 38.07747777403054 - ], - [ - 12.662588011638633, - 38.113372178074975 - ], - [ - 12.71085414010424, - 38.10995366340408 - ], - [ - 12.76768361394278, - 38.16237088835785 - ], - [ - 12.791816678175584, - 38.13502277099066 - ], - [ - 12.790259706289596, - 38.10995366340408 - ], - [ - 12.82918400343928, - 38.06494322023725 - ], - [ - 12.894576822650752, - 38.02392104418647 - ], - [ - 12.978653304494069, - 38.04101361754096 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 89, - "NAME_2": "Arezzo", - "HASC_2": "IT.AR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 12.19938887555739, - 43.77158371085666 - ], - [ - 12.170584895666622, - 43.805199105120494 - ], - [ - 12.239091658650066, - 43.8006410855593 - ], - [ - 12.19938887555739, - 43.77158371085666 - ] - ] - ], - [ - [ - [ - 12.108306020227126, - 43.75449113750217 - ], - [ - 12.165135494065666, - 43.763037424179416 - ], - [ - 12.24220560242204, - 43.75449113750217 - ], - [ - 12.285022329286694, - 43.76588618640517 - ], - [ - 12.327839056151348, - 43.75221212772158 - ], - [ - 12.369098811130012, - 43.71574797123199 - ], - [ - 12.186154614526496, - 43.64281965825283 - ], - [ - 12.214958594417261, - 43.6114832737696 - ], - [ - 12.163578522179678, - 43.56248456348672 - ], - [ - 12.154236690863755, - 43.53456669367439 - ], - [ - 12.103635104569165, - 43.531148179003495 - ], - [ - 12.095850245139228, - 43.50038154696541 - ], - [ - 12.145673345490824, - 43.480440211385165 - ], - [ - 12.057704433932537, - 43.43941803533439 - ], - [ - 12.033571369699732, - 43.401244621509356 - ], - [ - 12.078723554393367, - 43.39953536417391 - ], - [ - 12.074052638735404, - 43.37161749436157 - ], - [ - 12.119983309372031, - 43.36535021746493 - ], - [ - 12.137888486060888, - 43.3305953183108 - ], - [ - 12.132439084459932, - 43.29527066671152 - ], - [ - 12.179148241039552, - 43.28387561780852 - ], - [ - 12.149565775205792, - 43.25538799555103 - ], - [ - 12.086508413823303, - 43.23715591730625 - ], - [ - 12.0499195745026, - 43.254248490660736 - ], - [ - 12.028121968098777, - 43.19271522658457 - ], - [ - 11.961950662944314, - 43.16764611899798 - ], - [ - 11.86386143412711, - 43.174483148339775 - ], - [ - 11.835057454236342, - 43.2251911159581 - ], - [ - 11.796911643029652, - 43.2229121061775 - ], - [ - 11.721398506559265, - 43.255957747996185 - ], - [ - 11.679360265637605, - 43.28672438003427 - ], - [ - 11.659898117062763, - 43.32204903163355 - ], - [ - 11.627201707457028, - 43.34369962454924 - ], - [ - 11.568036775789508, - 43.364210712574625 - ], - [ - 11.53066945052581, - 43.39953536417391 - ], - [ - 11.547017655328677, - 43.42745323398624 - ], - [ - 11.529112478639824, - 43.45765011357918 - ], - [ - 11.473839976687271, - 43.48556798339151 - ], - [ - 11.453599342169436, - 43.514055605649 - ], - [ - 11.398326840216884, - 43.54938025724828 - ], - [ - 11.466055117257334, - 43.58242589906696 - ], - [ - 11.522884591095874, - 43.58185614662182 - ], - [ - 11.48863120960415, - 43.62857584712409 - ], - [ - 11.542346739670716, - 43.64452891558828 - ], - [ - 11.540789767784728, - 43.662760993833075 - ], - [ - 11.612410474540148, - 43.695236883206604 - ], - [ - 11.573486177390464, - 43.73568930681223 - ], - [ - 11.58360649464938, - 43.76930470107607 - ], - [ - 11.62564473557104, - 43.81659415402349 - ], - [ - 11.630315651229003, - 43.84679103361643 - ], - [ - 11.661455088948749, - 43.87299964609331 - ], - [ - 11.711278189300346, - 43.87812741809966 - ], - [ - 11.785234353884746, - 43.848500290951876 - ], - [ - 11.842842313666278, - 43.80918737223654 - ], - [ - 11.856855060640164, - 43.81659415402349 - ], - [ - 11.947937915970428, - 43.792094798882054 - ], - [ - 11.987640699063105, - 43.763037424179416 - ], - [ - 12.108306020227126, - 43.75449113750217 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 90, - "NAME_2": "Florence", - "HASC_2": "IT.FI", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Firenze|Florenca|Florencia|Florenz" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.525998534867849, - 44.158445621113316 - ], - [ - 11.611631988597154, - 44.16072463089391 - ], - [ - 11.598397727566262, - 44.12596973173978 - ], - [ - 11.653670229518813, - 44.10147037659834 - ], - [ - 11.679360265637605, - 44.123120969514034 - ], - [ - 11.716727590901302, - 44.12369072195918 - ], - [ - 11.753316430222005, - 44.12255121706888 - ], - [ - 11.695708470440472, - 44.03651859785128 - ], - [ - 11.64666385603187, - 43.99036864979415 - ], - [ - 11.71828456278729, - 43.92256810882134 - ], - [ - 11.711278189300346, - 43.87812741809966 - ], - [ - 11.661455088948749, - 43.87299964609331 - ], - [ - 11.630315651229003, - 43.84679103361643 - ], - [ - 11.62564473557104, - 43.81659415402349 - ], - [ - 11.58360649464938, - 43.76930470107607 - ], - [ - 11.573486177390464, - 43.73568930681223 - ], - [ - 11.612410474540148, - 43.695236883206604 - ], - [ - 11.540789767784728, - 43.662760993833075 - ], - [ - 11.542346739670716, - 43.64452891558828 - ], - [ - 11.48863120960415, - 43.62857584712409 - ], - [ - 11.522884591095874, - 43.58185614662182 - ], - [ - 11.466055117257334, - 43.58242589906696 - ], - [ - 11.398326840216884, - 43.54938025724828 - ], - [ - 11.364851944668155, - 43.527159911887445 - ], - [ - 11.308022470829616, - 43.519183377655345 - ], - [ - 11.2729906033949, - 43.53057842655834 - ], - [ - 11.244186623504135, - 43.49753278473966 - ], - [ - 11.206819298240436, - 43.48157971627547 - ], - [ - 11.194363523152537, - 43.515195110539295 - ], - [ - 11.15076831034489, - 43.486707488281816 - ], - [ - 11.07447668793151, - 43.527159911887445 - ], - [ - 11.016090242206984, - 43.53969446568074 - ], - [ - 10.955368338653475, - 43.498102537184806 - ], - [ - 10.953032880824495, - 43.45309209401798 - ], - [ - 10.91021615395984, - 43.466766152701574 - ], - [ - 10.870513370867164, - 43.46163838069523 - ], - [ - 10.826139672116524, - 43.53627595100984 - ], - [ - 10.849494250406334, - 43.56305431593187 - ], - [ - 10.835481503432447, - 43.6069252542084 - ], - [ - 10.853386680121304, - 43.62971535201439 - ], - [ - 10.914887069617805, - 43.64224990580768 - ], - [ - 10.917222527446786, - 43.66333074627822 - ], - [ - 10.878298230297101, - 43.72030599079319 - ], - [ - 10.799671150054738, - 43.704352922329 - ], - [ - 10.784879917137857, - 43.73284054458648 - ], - [ - 10.73661378867225, - 43.757339899727924 - ], - [ - 10.711702238496452, - 43.78753677932086 - ], - [ - 10.728828929242312, - 43.81488489668804 - ], - [ - 10.788772346852827, - 43.799501580669 - ], - [ - 10.8167978408006, - 43.809757124681695 - ], - [ - 10.883747631898057, - 43.7949435611078 - ], - [ - 10.965488655912393, - 43.81317563935259 - ], - [ - 10.985729290430228, - 43.78582752198541 - ], - [ - 11.057349997185648, - 43.75961890950852 - ], - [ - 11.070584258216542, - 43.82627994559104 - ], - [ - 11.096274294335334, - 43.82115217358469 - ], - [ - 11.149989824401898, - 43.86730212164181 - ], - [ - 11.135198591485018, - 43.884964447441455 - ], - [ - 11.170230458919733, - 43.919719346595585 - ], - [ - 11.180350776178651, - 44.04335562719307 - ], - [ - 11.203705354468461, - 44.10147037659834 - ], - [ - 11.26442725802197, - 44.10545864371439 - ], - [ - 11.200591410696486, - 44.14135304775882 - ], - [ - 11.235623278131204, - 44.15958512600361 - ], - [ - 11.28155394876783, - 44.156166611332715 - ], - [ - 11.343832824207325, - 44.206304826505885 - ], - [ - 11.381200149471024, - 44.20117705449954 - ], - [ - 11.421681418506694, - 44.23992022076972 - ], - [ - 11.448928426511474, - 44.200607302054394 - ], - [ - 11.525998534867849, - 44.158445621113316 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 91, - "NAME_2": "Grosseto", - "HASC_2": "IT.GR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 10.886083089727038, - 42.38936427892349 - ], - [ - 10.907102210187867, - 42.38081799224624 - ], - [ - 10.932013760363665, - 42.338656311305165 - ], - [ - 10.9032097804729, - 42.32555200506672 - ], - [ - 10.882190660012068, - 42.352330369988756 - ], - [ - 10.886083089727038, - 42.38936427892349 - ] - ] - ], - [ - [ - [ - 11.747088542678055, - 42.78648173319283 - ], - [ - 11.820266221319462, - 42.7437502998066 - ], - [ - 11.786791325770734, - 42.67139173927259 - ], - [ - 11.733854281647162, - 42.60700971297067 - ], - [ - 11.585163466535368, - 42.543767191559056 - ], - [ - 11.562587374188553, - 42.51812833152732 - ], - [ - 11.617859876141104, - 42.48850120437954 - ], - [ - 11.618638362084097, - 42.437223484316064 - ], - [ - 11.517435189494918, - 42.43437472209031 - ], - [ - 11.457491771884403, - 42.40246858516193 - ], - [ - 11.450485398397461, - 42.3779692300205 - ], - [ - 11.379643177585034, - 42.39620130826528 - ], - [ - 11.220053559271328, - 42.413863634064924 - ], - [ - 11.188135635608589, - 42.37284145801414 - ], - [ - 11.158553169774828, - 42.3620161615563 - ], - [ - 11.096274294335334, - 42.392782793594385 - ], - [ - 11.089267920848389, - 42.42639818785822 - ], - [ - 11.116514928853169, - 42.44007224654181 - ], - [ - 11.158553169774828, - 42.43437472209031 - ], - [ - 11.187357149665594, - 42.471978383470194 - ], - [ - 11.192028065323557, - 42.51015179729522 - ], - [ - 11.152325282230878, - 42.5637085271393 - ], - [ - 11.122742816397118, - 42.55630174535235 - ], - [ - 11.086153977076414, - 42.627520800996066 - ], - [ - 11.00908386872004, - 42.661705947705045 - ], - [ - 10.987286262316218, - 42.70899540065247 - ], - [ - 10.955368338653475, - 42.73577376557451 - ], - [ - 10.900095836700924, - 42.756854606045046 - ], - [ - 10.782544459308877, - 42.77679594162528 - ], - [ - 10.742063190273205, - 42.799016286986124 - ], - [ - 10.77242414204996, - 42.830352671469356 - ], - [ - 10.77475959987894, - 42.90840875645487 - ], - [ - 10.706252836895494, - 42.942024150718694 - ], - [ - 10.781765973365882, - 43.008685186801216 - ], - [ - 10.78098748742289, - 43.064520926425885 - ], - [ - 10.734278330843267, - 43.068509193541935 - ], - [ - 10.7179301260404, - 43.10953136959271 - ], - [ - 10.797335692225758, - 43.16194859454648 - ], - [ - 10.912551611788823, - 43.163657851881936 - ], - [ - 10.943691049508569, - 43.161378842101335 - ], - [ - 11.019204185978957, - 43.18644794968792 - ], - [ - 11.058128483128641, - 43.178471415455824 - ], - [ - 11.051900595584693, - 43.14428626874684 - ], - [ - 11.08304003330444, - 43.08503201445127 - ], - [ - 11.121964330454125, - 43.09243879623822 - ], - [ - 11.233287820302222, - 43.09129929134792 - ], - [ - 11.297902153570698, - 43.07819498510948 - ], - [ - 11.329041591290444, - 43.09243879623822 - ], - [ - 11.364851944668155, - 43.082183252225526 - ], - [ - 11.36173800089618, - 43.01096419658181 - ], - [ - 11.381200149471024, - 42.99729013789822 - ], - [ - 11.357845571181212, - 42.96880251564073 - ], - [ - 11.459827229713385, - 42.95854697162804 - ], - [ - 11.519770647323899, - 42.98190682187918 - ], - [ - 11.57270769144747, - 42.97108152542133 - ], - [ - 11.624866249628047, - 42.92948959692541 - ], - [ - 11.62564473557104, - 42.86624707551379 - ], - [ - 11.641992940373907, - 42.80072554432157 - ], - [ - 11.698043928269453, - 42.799016286986124 - ], - [ - 11.747088542678055, - 42.78648173319283 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 92, - "NAME_2": "Livorno", - "HASC_2": "IT.LI", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Leghorn|Liorna|Livourne" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 10.413542122329869, - 42.873084104855586 - ], - [ - 10.444681560049617, - 42.8468754923787 - ], - [ - 10.434561242790698, - 42.78306321852193 - ], - [ - 10.402643319127957, - 42.7574243584902 - ], - [ - 10.435339728733693, - 42.717541687329714 - ], - [ - 10.38395965649611, - 42.71355342021367 - ], - [ - 10.343478387460436, - 42.76369163538684 - ], - [ - 10.243832186757245, - 42.7505873291484 - ], - [ - 10.204907889607561, - 42.735204013129355 - ], - [ - 10.13717961256711, - 42.731215746013305 - ], - [ - 10.102147745132394, - 42.76597064516744 - ], - [ - 10.120052921821248, - 42.80243480165702 - ], - [ - 10.206464861493549, - 42.80756257366337 - ], - [ - 10.249281588358201, - 42.80015579187642 - ], - [ - 10.277307082305974, - 42.82294588968241 - ], - [ - 10.31467440756967, - 42.820666879901815 - ], - [ - 10.35671264849133, - 42.799016286986124 - ], - [ - 10.413542122329869, - 42.873084104855586 - ] - ] - ], - [ - [ - [ - 9.825785235369635, - 43.07306721310313 - ], - [ - 9.842133440172503, - 43.025777760155705 - ], - [ - 9.795424283592881, - 43.019510483259054 - ], - [ - 9.80165217113683, - 43.05198637263259 - ], - [ - 9.825785235369635, - 43.07306721310313 - ] - ] - ], - [ - [ - [ - 10.7179301260404, - 43.10953136959271 - ], - [ - 10.734278330843267, - 43.068509193541935 - ], - [ - 10.78098748742289, - 43.064520926425885 - ], - [ - 10.781765973365882, - 43.008685186801216 - ], - [ - 10.706252836895494, - 42.942024150718694 - ], - [ - 10.647866391170968, - 42.95341919962169 - ], - [ - 10.559897479612683, - 42.950570437395946 - ], - [ - 10.545884732638797, - 42.92151306269331 - ], - [ - 10.494504660401212, - 42.931768606706 - ], - [ - 10.482827371256308, - 42.98247657432432 - ], - [ - 10.515523780862042, - 42.99729013789822 - ], - [ - 10.539656845094846, - 43.10668260736696 - ], - [ - 10.537321387265866, - 43.19271522658457 - ], - [ - 10.506181949546118, - 43.285015122698816 - ], - [ - 10.464922194567453, - 43.3169212596272 - ], - [ - 10.42444092553178, - 43.39953536417391 - ], - [ - 10.381624198667128, - 43.44625506467619 - ], - [ - 10.330244126429545, - 43.47360318204337 - ], - [ - 10.293655287108841, - 43.54710124746768 - ], - [ - 10.304554090310752, - 43.58413515640241 - ], - [ - 10.347370817175406, - 43.59951847242145 - ], - [ - 10.438453672505666, - 43.63484312402073 - ], - [ - 10.500732547945162, - 43.62629683734349 - ], - [ - 10.478156455598345, - 43.553938276809475 - ], - [ - 10.465700680510446, - 43.54140372301619 - ], - [ - 10.507738921432106, - 43.43258100599259 - ], - [ - 10.491390716629237, - 43.40409338373511 - ], - [ - 10.533428957550896, - 43.32432804141415 - ], - [ - 10.582473571959499, - 43.292421904485764 - ], - [ - 10.697689491522565, - 43.28216636047307 - ], - [ - 10.668107025688805, - 43.26621329200888 - ], - [ - 10.671999455403773, - 43.2229121061775 - ], - [ - 10.691461603978617, - 43.20923804749391 - ], - [ - 10.664214595973837, - 43.174483148339775 - ], - [ - 10.7179301260404, - 43.10953136959271 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 93, - "NAME_2": "Lucca", - "HASC_2": "IT.LU", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Lucques" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.471150082111402, - 44.22681591453127 - ], - [ - 10.524087126234972, - 44.175538194467805 - ], - [ - 10.52564409812096, - 44.157875868668164 - ], - [ - 10.625290298824153, - 44.121411712178585 - ], - [ - 10.723379527641356, - 44.0838080507987 - ], - [ - 10.72026558386938, - 44.04506488452852 - ], - [ - 10.671999455403773, - 43.981822363116905 - ], - [ - 10.65253730682893, - 43.86844162653212 - ], - [ - 10.675891885118741, - 43.87641816076421 - ], - [ - 10.728828929242312, - 43.81488489668804 - ], - [ - 10.711702238496452, - 43.78753677932086 - ], - [ - 10.692240089921608, - 43.8029200953399 - ], - [ - 10.647087905227975, - 43.7972225708884 - ], - [ - 10.624511812881158, - 43.75790965217307 - ], - [ - 10.501511033888155, - 43.75449113750217 - ], - [ - 10.45402339136554, - 43.766455938850314 - ], - [ - 10.453244905422547, - 43.805199105120494 - ], - [ - 10.419770009873819, - 43.831407717597386 - ], - [ - 10.382402684610122, - 43.81545464913319 - ], - [ - 10.307668034082727, - 43.83026821270708 - ], - [ - 10.25940190561712, - 43.81659415402349 - ], - [ - 10.24071824298527, - 43.871860141203015 - ], - [ - 10.20257243177858, - 43.92256810882134 - ], - [ - 10.144185986054053, - 43.97669459111056 - ], - [ - 10.174546937830808, - 43.9886593924587 - ], - [ - 10.243832186757245, - 44.08779631791475 - ], - [ - 10.233711869498327, - 44.10887715838529 - ], - [ - 10.1877811988617, - 44.12483022684948 - ], - [ - 10.197123030177623, - 44.161864135784214 - ], - [ - 10.1877811988617, - 44.20744433139619 - ], - [ - 10.23215489761234, - 44.22909492431187 - ], - [ - 10.254730989959157, - 44.2695473479175 - ], - [ - 10.29754771682381, - 44.28720967371714 - ], - [ - 10.372282367351204, - 44.270117100362654 - ], - [ - 10.43689670061968, - 44.227385666976424 - ], - [ - 10.471150082111402, - 44.22681591453127 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 94, - "NAME_2": "Massa Carrara", - "HASC_2": "IT.MS", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Apuania|Massa-Carrare|Massa e Carrara" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.14340750011106, - 44.35501021468996 - ], - [ - 10.218920636581448, - 44.305441751961936 - ], - [ - 10.254730989959157, - 44.2695473479175 - ], - [ - 10.23215489761234, - 44.22909492431187 - ], - [ - 10.1877811988617, - 44.20744433139619 - ], - [ - 10.197123030177623, - 44.161864135784214 - ], - [ - 10.1877811988617, - 44.12483022684948 - ], - [ - 10.233711869498327, - 44.10887715838529 - ], - [ - 10.243832186757245, - 44.08779631791475 - ], - [ - 10.174546937830808, - 43.9886593924587 - ], - [ - 10.144185986054053, - 43.97669459111056 - ], - [ - 10.066337391754685, - 44.02740255872888 - ], - [ - 10.01884974923207, - 44.04449513208337 - ], - [ - 10.070229821469653, - 44.09919136681774 - ], - [ - 10.022742178947038, - 44.12084195973343 - ], - [ - 10.003280030372196, - 44.10887715838529 - ], - [ - 9.967469676994487, - 44.17041042246146 - ], - [ - 9.860038616861358, - 44.23821096343427 - ], - [ - 9.855367701203395, - 44.26897759547235 - ], - [ - 9.807101572737787, - 44.283791159046245 - ], - [ - 9.730809950324405, - 44.32937135465822 - ], - [ - 9.687993223459753, - 44.366975016038104 - ], - [ - 9.733145408153387, - 44.38007932227654 - ], - [ - 9.821114319711674, - 44.46725144638445 - ], - [ - 9.931659323616778, - 44.472948970835944 - ], - [ - 9.971362106709455, - 44.465542189049 - ], - [ - 10.007950946030158, - 44.432496547230315 - ], - [ - 9.990045769341304, - 44.40514842986313 - ], - [ - 10.100590773246406, - 44.34703368045786 - ], - [ - 10.14340750011106, - 44.35501021468996 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 95, - "NAME_2": "Pisa", - "HASC_2": "IT.PI", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Pise" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.711702238496452, - 43.78753677932086 - ], - [ - 10.73661378867225, - 43.757339899727924 - ], - [ - 10.784879917137857, - 43.73284054458648 - ], - [ - 10.799671150054738, - 43.704352922329 - ], - [ - 10.878298230297101, - 43.72030599079319 - ], - [ - 10.917222527446786, - 43.66333074627822 - ], - [ - 10.914887069617805, - 43.64224990580768 - ], - [ - 10.853386680121304, - 43.62971535201439 - ], - [ - 10.835481503432447, - 43.6069252542084 - ], - [ - 10.849494250406334, - 43.56305431593187 - ], - [ - 10.826139672116524, - 43.53627595100984 - ], - [ - 10.870513370867164, - 43.46163838069523 - ], - [ - 10.91021615395984, - 43.466766152701574 - ], - [ - 10.953032880824495, - 43.45309209401798 - ], - [ - 11.00052052334711, - 43.401244621509356 - ], - [ - 11.013754784378001, - 43.36535021746493 - ], - [ - 10.973273515342331, - 43.34540888188469 - ], - [ - 10.971716543456342, - 43.29811942893726 - ], - [ - 10.998185065518129, - 43.26621329200888 - ], - [ - 10.989621720145198, - 43.23202814529989 - ], - [ - 10.939798619793603, - 43.22803987818385 - ], - [ - 10.942912563565576, - 43.205819532823014 - ], - [ - 10.912551611788823, - 43.163657851881936 - ], - [ - 10.797335692225758, - 43.16194859454648 - ], - [ - 10.7179301260404, - 43.10953136959271 - ], - [ - 10.664214595973837, - 43.174483148339775 - ], - [ - 10.691461603978617, - 43.20923804749391 - ], - [ - 10.671999455403773, - 43.2229121061775 - ], - [ - 10.668107025688805, - 43.26621329200888 - ], - [ - 10.697689491522565, - 43.28216636047307 - ], - [ - 10.582473571959499, - 43.292421904485764 - ], - [ - 10.533428957550896, - 43.32432804141415 - ], - [ - 10.491390716629237, - 43.40409338373511 - ], - [ - 10.507738921432106, - 43.43258100599259 - ], - [ - 10.465700680510446, - 43.54140372301619 - ], - [ - 10.478156455598345, - 43.553938276809475 - ], - [ - 10.500732547945162, - 43.62629683734349 - ], - [ - 10.438453672505666, - 43.63484312402073 - ], - [ - 10.347370817175406, - 43.59951847242145 - ], - [ - 10.31233894974069, - 43.58869317596361 - ], - [ - 10.311560463797695, - 43.58812342351846 - ], - [ - 10.310003491911708, - 43.58812342351846 - ], - [ - 10.310003491911708, - 43.58755367107331 - ], - [ - 10.289762857393873, - 43.6103437688793 - ], - [ - 10.267965250990049, - 43.678144309852115 - ], - [ - 10.283534969849924, - 43.6906788636454 - ], - [ - 10.25940190561712, - 43.81659415402349 - ], - [ - 10.307668034082727, - 43.83026821270708 - ], - [ - 10.382402684610122, - 43.81545464913319 - ], - [ - 10.419770009873819, - 43.831407717597386 - ], - [ - 10.453244905422547, - 43.805199105120494 - ], - [ - 10.45402339136554, - 43.766455938850314 - ], - [ - 10.501511033888155, - 43.75449113750217 - ], - [ - 10.624511812881158, - 43.75790965217307 - ], - [ - 10.647087905227975, - 43.7972225708884 - ], - [ - 10.692240089921608, - 43.8029200953399 - ], - [ - 10.711702238496452, - 43.78753677932086 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 96, - "NAME_2": "Pistoia", - "HASC_2": "IT.PT", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.816019354857605, - 44.11685369261738 - ], - [ - 10.849494250406334, - 44.09919136681774 - ], - [ - 10.946026507337551, - 44.082668545908405 - ], - [ - 11.00285598117609, - 44.11286542550134 - ], - [ - 11.050343623698705, - 44.09121483258565 - ], - [ - 11.041001792382781, - 44.03537909296098 - ], - [ - 11.012976298435008, - 44.00632171825834 - ], - [ - 11.071362744159535, - 43.984101372897506 - ], - [ - 11.029324503237877, - 43.94023043462098 - ], - [ - 11.013754784378001, - 43.87072063631271 - ], - [ - 11.016090242206984, - 43.83653548960373 - ], - [ - 10.965488655912393, - 43.81317563935259 - ], - [ - 10.883747631898057, - 43.7949435611078 - ], - [ - 10.8167978408006, - 43.809757124681695 - ], - [ - 10.788772346852827, - 43.799501580669 - ], - [ - 10.728828929242312, - 43.81488489668804 - ], - [ - 10.675891885118741, - 43.87641816076421 - ], - [ - 10.65253730682893, - 43.86844162653212 - ], - [ - 10.671999455403773, - 43.981822363116905 - ], - [ - 10.72026558386938, - 44.04506488452852 - ], - [ - 10.723379527641356, - 44.0838080507987 - ], - [ - 10.625290298824153, - 44.121411712178585 - ], - [ - 10.642416989570012, - 44.16072463089391 - ], - [ - 10.744398648102187, - 44.15730611622301 - ], - [ - 10.816019354857605, - 44.11685369261738 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 97, - "NAME_2": "Prato", - "HASC_2": "IT.PO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.203705354468461, - 44.10147037659834 - ], - [ - 11.180350776178651, - 44.04335562719307 - ], - [ - 11.170230458919733, - 43.919719346595585 - ], - [ - 11.135198591485018, - 43.884964447441455 - ], - [ - 11.149989824401898, - 43.86730212164181 - ], - [ - 11.096274294335334, - 43.82115217358469 - ], - [ - 11.070584258216542, - 43.82627994559104 - ], - [ - 11.057349997185648, - 43.75961890950852 - ], - [ - 10.985729290430228, - 43.78582752198541 - ], - [ - 10.965488655912393, - 43.81317563935259 - ], - [ - 11.016090242206984, - 43.83653548960373 - ], - [ - 11.013754784378001, - 43.87072063631271 - ], - [ - 11.029324503237877, - 43.94023043462098 - ], - [ - 11.071362744159535, - 43.984101372897506 - ], - [ - 11.012976298435008, - 44.00632171825834 - ], - [ - 11.041001792382781, - 44.03537909296098 - ], - [ - 11.050343623698705, - 44.09121483258565 - ], - [ - 11.160110141660816, - 44.113435177946485 - ], - [ - 11.203705354468461, - 44.10147037659834 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 16, - "NAME_1": "Toscana", - "ID_2": 98, - "NAME_2": "Siena", - "HASC_2": "IT.SI", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Sienne" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.961950662944314, - 43.16764611899798 - ], - [ - 11.930032739281572, - 43.153402307869236 - ], - [ - 11.916019992307685, - 43.126623942947205 - ], - [ - 11.923804851737621, - 43.08275300467068 - ], - [ - 11.981412811519156, - 43.05711414463894 - ], - [ - 11.933925168996542, - 42.909548261345165 - ], - [ - 11.953387317571384, - 42.90214147955822 - ], - [ - 11.959615205115332, - 42.87536311463619 - ], - [ - 11.933925168996542, - 42.87023534262983 - ], - [ - 11.895779357789849, - 42.8354804434757 - ], - [ - 11.849070201210228, - 42.83946871059175 - ], - [ - 11.803918016516594, - 42.80186504921187 - ], - [ - 11.775114036625828, - 42.82180638479211 - ], - [ - 11.747088542678055, - 42.78648173319283 - ], - [ - 11.698043928269453, - 42.799016286986124 - ], - [ - 11.641992940373907, - 42.80072554432157 - ], - [ - 11.62564473557104, - 42.86624707551379 - ], - [ - 11.624866249628047, - 42.92948959692541 - ], - [ - 11.57270769144747, - 42.97108152542133 - ], - [ - 11.519770647323899, - 42.98190682187918 - ], - [ - 11.459827229713385, - 42.95854697162804 - ], - [ - 11.357845571181212, - 42.96880251564073 - ], - [ - 11.381200149471024, - 42.99729013789822 - ], - [ - 11.36173800089618, - 43.01096419658181 - ], - [ - 11.364851944668155, - 43.082183252225526 - ], - [ - 11.329041591290444, - 43.09243879623822 - ], - [ - 11.297902153570698, - 43.07819498510948 - ], - [ - 11.233287820302222, - 43.09129929134792 - ], - [ - 11.121964330454125, - 43.09243879623822 - ], - [ - 11.08304003330444, - 43.08503201445127 - ], - [ - 11.051900595584693, - 43.14428626874684 - ], - [ - 11.058128483128641, - 43.178471415455824 - ], - [ - 11.019204185978957, - 43.18644794968792 - ], - [ - 10.943691049508569, - 43.161378842101335 - ], - [ - 10.912551611788823, - 43.163657851881936 - ], - [ - 10.942912563565576, - 43.205819532823014 - ], - [ - 10.939798619793603, - 43.22803987818385 - ], - [ - 10.989621720145198, - 43.23202814529989 - ], - [ - 10.998185065518129, - 43.26621329200888 - ], - [ - 10.971716543456342, - 43.29811942893726 - ], - [ - 10.973273515342331, - 43.34540888188469 - ], - [ - 11.013754784378001, - 43.36535021746493 - ], - [ - 11.00052052334711, - 43.401244621509356 - ], - [ - 10.953032880824495, - 43.45309209401798 - ], - [ - 10.955368338653475, - 43.498102537184806 - ], - [ - 11.016090242206984, - 43.53969446568074 - ], - [ - 11.07447668793151, - 43.527159911887445 - ], - [ - 11.15076831034489, - 43.486707488281816 - ], - [ - 11.194363523152537, - 43.515195110539295 - ], - [ - 11.206819298240436, - 43.48157971627547 - ], - [ - 11.244186623504135, - 43.49753278473966 - ], - [ - 11.2729906033949, - 43.53057842655834 - ], - [ - 11.308022470829616, - 43.519183377655345 - ], - [ - 11.364851944668155, - 43.527159911887445 - ], - [ - 11.398326840216884, - 43.54938025724828 - ], - [ - 11.453599342169436, - 43.514055605649 - ], - [ - 11.473839976687271, - 43.48556798339151 - ], - [ - 11.529112478639824, - 43.45765011357918 - ], - [ - 11.547017655328677, - 43.42745323398624 - ], - [ - 11.53066945052581, - 43.39953536417391 - ], - [ - 11.568036775789508, - 43.364210712574625 - ], - [ - 11.627201707457028, - 43.34369962454924 - ], - [ - 11.659898117062763, - 43.32204903163355 - ], - [ - 11.679360265637605, - 43.28672438003427 - ], - [ - 11.721398506559265, - 43.255957747996185 - ], - [ - 11.796911643029652, - 43.2229121061775 - ], - [ - 11.835057454236342, - 43.2251911159581 - ], - [ - 11.86386143412711, - 43.174483148339775 - ], - [ - 11.961950662944314, - 43.16764611899798 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 17, - "NAME_1": "Trentino-Alto Adige", - "ID_2": 99, - "NAME_2": "Bolzano", - "HASC_2": "IT.BZ", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Bozen|Südtirol|Alto Adige" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.478086843149129, - 46.68073969579105 - ], - [ - 12.435270116284475, - 46.66934464688805 - ], - [ - 12.361313951700076, - 46.620345936605176 - ], - [ - 12.262446236939876, - 46.63003172817272 - ], - [ - 12.213401622531276, - 46.61009039259248 - ], - [ - 12.146451831433817, - 46.635159500179064 - ], - [ - 12.069381723077441, - 46.676181676229845 - ], - [ - 12.065489293362473, - 46.62433420372122 - ], - [ - 12.048362602616614, - 46.58673054234134 - ], - [ - 11.99931798820801, - 46.53374356494242 - ], - [ - 11.96740006454527, - 46.54570836629056 - ], - [ - 11.829608052635386, - 46.509813962246135 - ], - [ - 11.744753084849075, - 46.505825695130085 - ], - [ - 11.716727590901302, - 46.51494173425248 - ], - [ - 11.627201707457028, - 46.4727800533114 - ], - [ - 11.620195333970084, - 46.426060352809124 - ], - [ - 11.557916458530588, - 46.35199253493967 - ], - [ - 11.48396029394619, - 46.364527088732956 - ], - [ - 11.455934799998417, - 46.33603946647547 - ], - [ - 11.404554727760832, - 46.32521417001763 - ], - [ - 11.380421663528029, - 46.292738280644095 - ], - [ - 11.324370675632483, - 46.29330803308925 - ], - [ - 11.247300567276108, - 46.23120501656793 - ], - [ - 11.207597784183431, - 46.22094947255523 - ], - [ - 11.175679860520688, - 46.23348402634853 - ], - [ - 11.175679860520688, - 46.260262391270565 - ], - [ - 11.13986950714298, - 46.28419199396685 - ], - [ - 11.179572290235658, - 46.30755184421799 - ], - [ - 11.204483840411456, - 46.34230674337212 - ], - [ - 11.221610531157317, - 46.461385004408406 - ], - [ - 11.209154756069417, - 46.49670965600769 - ], - [ - 11.156217711945846, - 46.48759361688529 - ], - [ - 11.050343623698705, - 46.508104704910686 - ], - [ - 11.076033659817497, - 46.45568747995691 - ], - [ - 11.0511221096417, - 46.45055970795056 - ], - [ - 11.00674841089106, - 46.47790782531775 - ], - [ - 10.9647101699694, - 46.4830355973241 - ], - [ - 10.912551611788823, - 46.44486218349907 - ], - [ - 10.862728511437226, - 46.43688564926697 - ], - [ - 10.79811417816875, - 46.446001688389366 - ], - [ - 10.766974740449003, - 46.48588435954984 - ], - [ - 10.745955619988173, - 46.48588435954984 - ], - [ - 10.685233716434666, - 46.45226896528601 - ], - [ - 10.62295484099517, - 46.44885045061511 - ], - [ - 10.552891106125738, - 46.49215163644649 - ], - [ - 10.47737796965535, - 46.49670965600769 - ], - [ - 10.456358849194523, - 46.53602257472302 - ], - [ - 10.490612230686244, - 46.59128856190254 - ], - [ - 10.489055258800256, - 46.61920643171487 - ], - [ - 10.448573989764585, - 46.64256628196601 - ], - [ - 10.412763636386876, - 46.637438509959665 - ], - [ - 10.39252300186904, - 46.68073969579105 - ], - [ - 10.443903074106622, - 46.7525285038799 - ], - [ - 10.42833335524675, - 46.78557414569859 - ], - [ - 10.44935247570758, - 46.79981795682733 - ], - [ - 10.479713427484333, - 46.8602117160132 - ], - [ - 10.564568395270644, - 46.84197963776841 - ], - [ - 10.66732853974581, - 46.87616478447739 - ], - [ - 10.693018575864603, - 46.852804934226256 - ], - [ - 10.754518965361104, - 46.83514260842661 - ], - [ - 10.756854423190084, - 46.790132165259784 - ], - [ - 10.874405800582132, - 46.76677231500865 - ], - [ - 10.932013760363665, - 46.77417909679559 - ], - [ - 11.00908386872004, - 46.7650630576732 - ], - [ - 11.076033659817497, - 46.82089879729787 - ], - [ - 11.076033659817497, - 46.8579327062326 - ], - [ - 11.098609752164315, - 46.88585057604494 - ], - [ - 11.109508555366226, - 46.92744250454086 - ], - [ - 11.153882254116866, - 46.93484928632781 - ], - [ - 11.164781057318777, - 46.968464680591644 - ], - [ - 11.208376270126424, - 46.96732517570135 - ], - [ - 11.321256731860508, - 46.993533788178226 - ], - [ - 11.357067085238217, - 46.99296403573308 - ], - [ - 11.408447157475802, - 46.969034433036796 - ], - [ - 11.502643956578037, - 47.011196113977874 - ], - [ - 11.537675824012753, - 46.98726651128158 - ], - [ - 11.61708139019811, - 47.01518438109392 - ], - [ - 11.666904490549705, - 46.995243045513675 - ], - [ - 11.715949104958309, - 46.993533788178226 - ], - [ - 11.747867028621048, - 46.97302270015284 - ], - [ - 11.775114036625828, - 46.986127006391285 - ], - [ - 11.85996900441214, - 47.000940569965174 - ], - [ - 11.932368197110552, - 47.035695469119304 - ], - [ - 12.049141088559606, - 47.0539275473641 - ], - [ - 12.128546654744962, - 47.07956640739583 - ], - [ - 12.216515566303249, - 47.09096145629883 - ], - [ - 12.245319546194015, - 47.071020120718586 - ], - [ - 12.211066164702293, - 47.03341645933871 - ], - [ - 12.15112274709178, - 47.02543992510661 - ], - [ - 12.124654225029994, - 47.007207846861824 - ], - [ - 12.135553028231906, - 46.9633369085853 - ], - [ - 12.215737080360256, - 46.877304289367686 - ], - [ - 12.270231096369812, - 46.88869933827068 - ], - [ - 12.304484477861536, - 46.83457285598146 - ], - [ - 12.283465357400706, - 46.78671365058889 - ], - [ - 12.348079690669183, - 46.778737116356794 - ], - [ - 12.382333072160904, - 46.71777360472577 - ], - [ - 12.478086843149129, - 46.68073969579105 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 17, - "NAME_1": "Trentino-Alto Adige", - "ID_2": 100, - "NAME_2": "Trento", - "HASC_2": "IT.TN", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Trente|Trient" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.829608052635386, - 46.509813962246135 - ], - [ - 11.814038333775514, - 46.47904733020805 - ], - [ - 11.879431152986982, - 46.471070795975955 - ], - [ - 11.8895514702459, - 46.44315292616362 - ], - [ - 11.851405659039209, - 46.43517639193152 - ], - [ - 11.832721996407361, - 46.387886938984096 - ], - [ - 11.780563438226785, - 46.35256228738481 - ], - [ - 11.832721996407361, - 46.325783922462776 - ], - [ - 11.838949883951312, - 46.271657440173556 - ], - [ - 11.923026365794628, - 46.24886734236757 - ], - [ - 11.91057059070673, - 46.225507492116435 - ], - [ - 11.940931542483483, - 46.199868632084694 - ], - [ - 11.923026365794628, - 46.15030016935667 - ], - [ - 11.894222385903863, - 46.12181254709918 - ], - [ - 11.814816819718505, - 46.103010716409244 - ], - [ - 11.719063048730284, - 46.10415022129955 - ], - [ - 11.68480966723856, - 46.07737185637751 - ], - [ - 11.707385759585378, - 46.047174976784575 - ], - [ - 11.6676829764927, - 46.039198442552475 - ], - [ - 11.685588153181556, - 45.985071960263255 - ], - [ - 11.67391086403665, - 45.96513062468301 - ], - [ - 11.588277410307343, - 45.969688644244215 - ], - [ - 11.578157093048425, - 46.00729230562409 - ], - [ - 11.511985787893963, - 46.01298983007559 - ], - [ - 11.44814994056848, - 45.98165344559236 - ], - [ - 11.373415290041086, - 45.97424666380542 - ], - [ - 11.38275712135701, - 45.94348003176733 - ], - [ - 11.325149161575478, - 45.91841092418074 - ], - [ - 11.262091800192987, - 45.917271419290444 - ], - [ - 11.240294193789165, - 45.85687766010457 - ], - [ - 11.219275073328337, - 45.84491285875643 - ], - [ - 11.174901374577695, - 45.78793761424146 - ], - [ - 11.175679860520688, - 45.73381113195224 - ], - [ - 11.13986950714298, - 45.69791672790781 - ], - [ - 11.066691828501572, - 45.7093117768108 - ], - [ - 10.999742037404115, - 45.70874202436565 - ], - [ - 10.938241647907613, - 45.67455687765667 - ], - [ - 10.890754005384998, - 45.716148806152596 - ], - [ - 10.844823334748373, - 45.719567320823494 - ], - [ - 10.88452611784105, - 45.81813449383439 - ], - [ - 10.840930905033403, - 45.83351780985343 - ], - [ - 10.752183507532123, - 45.83750607696948 - ], - [ - 10.655651250600906, - 45.83351780985343 - ], - [ - 10.651758820885938, - 45.8135764742732 - ], - [ - 10.564568395270644, - 45.78508885201571 - ], - [ - 10.533428957550896, - 45.78907711913176 - ], - [ - 10.509295893318093, - 45.82440177073104 - ], - [ - 10.508517407375098, - 45.9064461228326 - ], - [ - 10.485941315028281, - 45.971397901579664 - ], - [ - 10.454801877308535, - 45.977665178476315 - ], - [ - 10.457915821080508, - 46.00957131540469 - ], - [ - 10.487498286914269, - 46.03065215587523 - ], - [ - 10.492169202572232, - 46.06768606480996 - ], - [ - 10.542770788866822, - 46.10415022129955 - ], - [ - 10.566125367156632, - 46.16796249515631 - ], - [ - 10.542770788866822, - 46.189613088072 - ], - [ - 10.586366001674467, - 46.24886734236757 - ], - [ - 10.566903853099625, - 46.327493179798225 - ], - [ - 10.51708075274803, - 46.34401600070757 - ], - [ - 10.56768233904262, - 46.3787708998617 - ], - [ - 10.608163608078291, - 46.379910404751996 - ], - [ - 10.631518186368101, - 46.403270255003136 - ], - [ - 10.62295484099517, - 46.44885045061511 - ], - [ - 10.685233716434666, - 46.45226896528601 - ], - [ - 10.745955619988173, - 46.48588435954984 - ], - [ - 10.766974740449003, - 46.48588435954984 - ], - [ - 10.79811417816875, - 46.446001688389366 - ], - [ - 10.862728511437226, - 46.43688564926697 - ], - [ - 10.912551611788823, - 46.44486218349907 - ], - [ - 10.9647101699694, - 46.4830355973241 - ], - [ - 11.00674841089106, - 46.47790782531775 - ], - [ - 11.0511221096417, - 46.45055970795056 - ], - [ - 11.076033659817497, - 46.45568747995691 - ], - [ - 11.050343623698705, - 46.508104704910686 - ], - [ - 11.156217711945846, - 46.48759361688529 - ], - [ - 11.209154756069417, - 46.49670965600769 - ], - [ - 11.221610531157317, - 46.461385004408406 - ], - [ - 11.204483840411456, - 46.34230674337212 - ], - [ - 11.179572290235658, - 46.30755184421799 - ], - [ - 11.13986950714298, - 46.28419199396685 - ], - [ - 11.175679860520688, - 46.260262391270565 - ], - [ - 11.175679860520688, - 46.23348402634853 - ], - [ - 11.207597784183431, - 46.22094947255523 - ], - [ - 11.247300567276108, - 46.23120501656793 - ], - [ - 11.324370675632483, - 46.29330803308925 - ], - [ - 11.380421663528029, - 46.292738280644095 - ], - [ - 11.404554727760832, - 46.32521417001763 - ], - [ - 11.455934799998417, - 46.33603946647547 - ], - [ - 11.48396029394619, - 46.364527088732956 - ], - [ - 11.557916458530588, - 46.35199253493967 - ], - [ - 11.620195333970084, - 46.426060352809124 - ], - [ - 11.627201707457028, - 46.4727800533114 - ], - [ - 11.716727590901302, - 46.51494173425248 - ], - [ - 11.744753084849075, - 46.505825695130085 - ], - [ - 11.829608052635386, - 46.509813962246135 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 18, - "NAME_1": "Umbria", - "ID_2": 101, - "NAME_2": "Perugia", - "HASC_2": "IT.PG", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Pérouse|Perúgia" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.768462099885774, - 43.461068628250075 - ], - [ - 12.775468473372715, - 43.402953878844805 - ], - [ - 12.747442979424944, - 43.391558829941815 - ], - [ - 12.803493967320488, - 43.308374972949956 - ], - [ - 12.790259706289596, - 43.28558487514397 - ], - [ - 12.826070059667305, - 43.267352796899175 - ], - [ - 12.837747348812211, - 43.2183540866163 - ], - [ - 12.863437384931004, - 43.21208680971966 - ], - [ - 12.863437384931004, - 43.167076366552834 - ], - [ - 12.832297947211256, - 43.142007258966245 - ], - [ - 12.876671645961896, - 43.124344933166604 - ], - [ - 12.898469252365718, - 43.09471780601882 - ], - [ - 12.890684392935782, - 43.05996290686468 - ], - [ - 12.907811083681644, - 43.03660305661355 - ], - [ - 12.889127421049796, - 43.010394444136665 - ], - [ - 12.896912280479732, - 42.965384000969834 - ], - [ - 12.977874818551076, - 42.926640834699654 - ], - [ - 12.977096332608081, - 42.870805095074985 - ], - [ - 13.05494492690745, - 42.92094331024816 - ], - [ - 13.113331372631976, - 42.890176678210075 - ], - [ - 13.161597501097585, - 42.83263168124996 - ], - [ - 13.21297757333517, - 42.8423174728175 - ], - [ - 13.236332151624978, - 42.868526085294384 - ], - [ - 13.265136131515746, - 42.80927183099882 - ], - [ - 13.246452468883898, - 42.76881940739319 - ], - [ - 13.217648488993131, - 42.772237922064086 - ], - [ - 13.190401480988353, - 42.7346342606842 - ], - [ - 13.174831762128477, - 42.66683371971139 - ], - [ - 13.145249296294718, - 42.6474621365763 - ], - [ - 13.059615842565412, - 42.62353253388002 - ], - [ - 12.954520240261264, - 42.62011401920912 - ], - [ - 12.932722633857441, - 42.60473070319007 - ], - [ - 12.896912280479732, - 42.617265256983366 - ], - [ - 12.862658898988009, - 42.66512446237594 - ], - [ - 12.793373650061572, - 42.663984957485646 - ], - [ - 12.77624695931571, - 42.63720659256361 - ], - [ - 12.713189597933223, - 42.62353253388002 - ], - [ - 12.663366497581626, - 42.66113619525989 - ], - [ - 12.622885228545954, - 42.67424050149834 - ], - [ - 12.604201565914106, - 42.7426107949163 - ], - [ - 12.574619100080344, - 42.71469292510397 - ], - [ - 12.517011140298813, - 42.71868119222002 - ], - [ - 12.494435047951995, - 42.73577376557451 - ], - [ - 12.463295610232247, - 42.70557688598157 - ], - [ - 12.397124305077785, - 42.67765901616924 - ], - [ - 12.333288457752303, - 42.7505873291484 - ], - [ - 12.298256590317585, - 42.75001757670325 - ], - [ - 12.292028702773637, - 42.781923713631635 - ], - [ - 12.327839056151348, - 42.851433511939895 - ], - [ - 12.321611168607397, - 42.91467603335151 - ], - [ - 12.258553807224908, - 42.91809454802241 - ], - [ - 12.126989682858975, - 42.943163655609 - ], - [ - 12.039020771300688, - 42.93347786404145 - ], - [ - 12.01644467895387, - 42.91011801379032 - ], - [ - 12.018780136782851, - 42.88106063908768 - ], - [ - 11.933925168996542, - 42.87023534262983 - ], - [ - 11.959615205115332, - 42.87536311463619 - ], - [ - 11.953387317571384, - 42.90214147955822 - ], - [ - 11.933925168996542, - 42.909548261345165 - ], - [ - 11.981412811519156, - 43.05711414463894 - ], - [ - 11.923804851737621, - 43.08275300467068 - ], - [ - 11.916019992307685, - 43.126623942947205 - ], - [ - 11.930032739281572, - 43.153402307869236 - ], - [ - 11.961950662944314, - 43.16764611899798 - ], - [ - 12.028121968098777, - 43.19271522658457 - ], - [ - 12.0499195745026, - 43.254248490660736 - ], - [ - 12.086508413823303, - 43.23715591730625 - ], - [ - 12.149565775205792, - 43.25538799555103 - ], - [ - 12.179148241039552, - 43.28387561780852 - ], - [ - 12.132439084459932, - 43.29527066671152 - ], - [ - 12.137888486060888, - 43.3305953183108 - ], - [ - 12.119983309372031, - 43.36535021746493 - ], - [ - 12.074052638735404, - 43.37161749436157 - ], - [ - 12.078723554393367, - 43.39953536417391 - ], - [ - 12.033571369699732, - 43.401244621509356 - ], - [ - 12.057704433932537, - 43.43941803533439 - ], - [ - 12.145673345490824, - 43.480440211385165 - ], - [ - 12.095850245139228, - 43.50038154696541 - ], - [ - 12.103635104569165, - 43.531148179003495 - ], - [ - 12.154236690863755, - 43.53456669367439 - ], - [ - 12.163578522179678, - 43.56248456348672 - ], - [ - 12.214958594417261, - 43.6114832737696 - ], - [ - 12.226635883562167, - 43.594390700415104 - ], - [ - 12.29514264654561, - 43.594390700415104 - ], - [ - 12.357421521985106, - 43.618320303111396 - ], - [ - 12.374548212730968, - 43.585274661292715 - ], - [ - 12.3457442328402, - 43.55450802925463 - ], - [ - 12.40023824884976, - 43.514055605649 - ], - [ - 12.422035855253583, - 43.53741545590014 - ], - [ - 12.458624694574286, - 43.51804387276505 - ], - [ - 12.500662935495946, - 43.52260189232624 - ], - [ - 12.56527726876442, - 43.46049887580493 - ], - [ - 12.626777658260922, - 43.42175570953475 - ], - [ - 12.664144983524618, - 43.437708777998935 - ], - [ - 12.710075654161248, - 43.42574397665079 - ], - [ - 12.735765690280038, - 43.465056895366125 - ], - [ - 12.768462099885774, - 43.461068628250075 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 18, - "NAME_1": "Umbria", - "ID_2": 102, - "NAME_2": "Terni", - "HASC_2": "IT.TR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.896912280479732, - 42.617265256983366 - ], - [ - 12.881342561619858, - 42.603591198299775 - ], - [ - 12.893798336707757, - 42.56427827958444 - ], - [ - 12.848646152014123, - 42.55402273557175 - ], - [ - 12.774689987429724, - 42.51414006441127 - ], - [ - 12.728759316793095, - 42.51015179729522 - ], - [ - 12.742772063766981, - 42.47140863102504 - ], - [ - 12.667258927296594, - 42.44178150387726 - ], - [ - 12.62210674260296, - 42.46969937368959 - ], - [ - 12.615100369116018, - 42.414433386510076 - ], - [ - 12.567612726593403, - 42.38423650691714 - ], - [ - 12.519346598127793, - 42.3688531908981 - ], - [ - 12.48898564635104, - 42.39961982293618 - ], - [ - 12.467188039947217, - 42.39563155582013 - ], - [ - 12.445390433543393, - 42.39961982293618 - ], - [ - 12.412694023937657, - 42.446909275883606 - ], - [ - 12.395567333191797, - 42.50046600572768 - ], - [ - 12.35197212038415, - 42.47482714569594 - ], - [ - 12.317718738892427, - 42.489640709269835 - ], - [ - 12.267895638540832, - 42.53351164754636 - ], - [ - 12.275680497970768, - 42.560859764913545 - ], - [ - 12.239870144593059, - 42.572824566261694 - ], - [ - 12.244541060251022, - 42.629230058331515 - ], - [ - 12.205616763101338, - 42.661705947705045 - ], - [ - 12.16202155029369, - 42.67765901616924 - ], - [ - 12.124654225029994, - 42.65031089880205 - ], - [ - 12.103635104569165, - 42.663984957485646 - ], - [ - 12.030457425927757, - 42.65145040369235 - ], - [ - 11.942488514369472, - 42.68449604551103 - ], - [ - 11.926918795509597, - 42.70557688598157 - ], - [ - 11.960393691058325, - 42.73064599356816 - ], - [ - 11.980634325576162, - 42.76540089272229 - ], - [ - 11.932368197110552, - 42.779644703851034 - ], - [ - 11.895779357789849, - 42.8354804434757 - ], - [ - 11.933925168996542, - 42.87023534262983 - ], - [ - 12.018780136782851, - 42.88106063908768 - ], - [ - 12.01644467895387, - 42.91011801379032 - ], - [ - 12.039020771300688, - 42.93347786404145 - ], - [ - 12.126989682858975, - 42.943163655609 - ], - [ - 12.258553807224908, - 42.91809454802241 - ], - [ - 12.321611168607397, - 42.91467603335151 - ], - [ - 12.327839056151348, - 42.851433511939895 - ], - [ - 12.292028702773637, - 42.781923713631635 - ], - [ - 12.298256590317585, - 42.75001757670325 - ], - [ - 12.333288457752303, - 42.7505873291484 - ], - [ - 12.397124305077785, - 42.67765901616924 - ], - [ - 12.463295610232247, - 42.70557688598157 - ], - [ - 12.494435047951995, - 42.73577376557451 - ], - [ - 12.517011140298813, - 42.71868119222002 - ], - [ - 12.574619100080344, - 42.71469292510397 - ], - [ - 12.604201565914106, - 42.7426107949163 - ], - [ - 12.622885228545954, - 42.67424050149834 - ], - [ - 12.663366497581626, - 42.66113619525989 - ], - [ - 12.713189597933223, - 42.62353253388002 - ], - [ - 12.77624695931571, - 42.63720659256361 - ], - [ - 12.793373650061572, - 42.663984957485646 - ], - [ - 12.862658898988009, - 42.66512446237594 - ], - [ - 12.896912280479732, - 42.617265256983366 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 19, - "NAME_1": "Valle d'Aosta", - "ID_2": 103, - "NAME_2": "Aosta", - "HASC_2": "IT.AO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Aoste|Val d'Aosta, Valle d'Aosta" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.874899462227455, - 45.93037572552888 - ], - [ - 7.878013405999429, - 45.92752696330314 - ], - [ - 7.86322217308255, - 45.915562161954995 - ], - [ - 7.877234920056436, - 45.86257518455607 - ], - [ - 7.864000659025543, - 45.79192588135751 - ], - [ - 7.885798265429367, - 45.76115924931942 - ], - [ - 7.937956823609944, - 45.72526484527499 - ], - [ - 7.906038899947202, - 45.683103164333914 - ], - [ - 7.940292281438925, - 45.644359998063734 - ], - [ - 7.897475554574272, - 45.61245386113535 - ], - [ - 7.896697068631278, - 45.59080326821966 - ], - [ - 7.849987912051657, - 45.60333782201296 - ], - [ - 7.797050867928085, - 45.58738475354876 - ], - [ - 7.733993506545597, - 45.551490349504334 - ], - [ - 7.677942518650052, - 45.55319960683978 - ], - [ - 7.6468030809303045, - 45.56972242774913 - ], - [ - 7.558055683429024, - 45.59137302066481 - ], - [ - 7.523802301937302, - 45.57769896198122 - ], - [ - 7.466194342155768, - 45.57826871442637 - ], - [ - 7.375111486825507, - 45.51730520279535 - ], - [ - 7.270794370464353, - 45.5155959454599 - ], - [ - 7.224863699827726, - 45.47172500718337 - ], - [ - 7.1228820412955525, - 45.507049658782655 - ], - [ - 7.10108443489173, - 45.46545773028673 - ], - [ - 7.056710736141089, - 45.478562036525176 - ], - [ - 7.053596792369115, - 45.50021262944086 - ], - [ - 7.0061091498465, - 45.511037925898705 - ], - [ - 6.992096402872614, - 45.55604836906553 - ], - [ - 6.985868515328663, - 45.62043039536745 - ], - [ - 7.011558551447456, - 45.648348265179784 - ], - [ - 6.9259250977181495, - 45.652336532295834 - ], - [ - 6.906462949143307, - 45.67854514477272 - ], - [ - 6.866760166050629, - 45.68424266922422 - ], - [ - 6.823943439185976, - 45.721846330604095 - ], - [ - 6.812266150041071, - 45.760589496874275 - ], - [ - 6.820829495414002, - 45.82668078051164 - ], - [ - 6.876880483309548, - 45.82383201828589 - ], - [ - 7.010780065504462, - 45.882516520136306 - ], - [ - 7.013115523333443, - 45.9053066179423 - ], - [ - 7.049704362654146, - 45.92581770596769 - ], - [ - 7.122103555352559, - 45.86257518455607 - ], - [ - 7.157913908730269, - 45.882516520136306 - ], - [ - 7.192167290221991, - 45.86314493700122 - ], - [ - 7.223306727941738, - 45.892202311703855 - ], - [ - 7.263009511034417, - 45.89277206414901 - ], - [ - 7.296484406583145, - 45.92581770596769 - ], - [ - 7.391459691628375, - 45.900178845935955 - ], - [ - 7.500447723647491, - 45.96513062468301 - ], - [ - 7.543264450512144, - 45.95943310023152 - ], - [ - 7.590752093034759, - 45.975955921140866 - ], - [ - 7.674828574878077, - 45.973676911360265 - ], - [ - 7.712974386084768, - 45.950317061109125 - ], - [ - 7.801721783586048, - 45.92410844863224 - ], - [ - 7.874899462227455, - 45.93037572552888 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 20, - "NAME_1": "Veneto", - "ID_2": 104, - "NAME_2": "Belluno", - "HASC_2": "IT.BL", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.736544176223031, - 46.63629900506937 - ], - [ - 12.742772063766981, - 46.59641633390889 - ], - [ - 12.717860513591184, - 46.546278118735714 - ], - [ - 12.631448573918885, - 46.51323247691703 - ], - [ - 12.654803152208695, - 46.4853146071047 - ], - [ - 12.608093995629073, - 46.465373271524456 - ], - [ - 12.570726670365378, - 46.4761985679823 - ], - [ - 12.506890823039894, - 46.442013421273316 - ], - [ - 12.499884449552951, - 46.412956046570685 - ], - [ - 12.412694023937657, - 46.33262095180457 - ], - [ - 12.379997614331923, - 46.33262095180457 - ], - [ - 12.330174513980328, - 46.28419199396685 - ], - [ - 12.324725112379372, - 46.25570437170936 - ], - [ - 12.37299124084498, - 46.22493773967128 - ], - [ - 12.431377686569506, - 46.21012417609739 - ], - [ - 12.457846208631292, - 46.17138100982721 - ], - [ - 12.499884449552951, - 46.138335368008526 - ], - [ - 12.484314730693077, - 46.10415022129955 - ], - [ - 12.429042228740526, - 46.07737185637751 - ], - [ - 12.40023824884976, - 46.04204720477823 - ], - [ - 12.392453389419822, - 46.072244084371164 - ], - [ - 12.323168140493383, - 46.083069380829 - ], - [ - 12.235199228935098, - 46.01925710697224 - ], - [ - 12.191604016127451, - 46.00558304828864 - ], - [ - 12.110641478056108, - 46.00387379095319 - ], - [ - 12.063153835533493, - 45.963421367347564 - ], - [ - 12.033571369699732, - 45.97424666380542 - ], - [ - 11.953387317571384, - 45.94917755621883 - ], - [ - 11.951830345685394, - 45.89676033126506 - ], - [ - 11.877095695158001, - 45.88194676769116 - ], - [ - 11.826494108863411, - 45.9087251326132 - ], - [ - 11.80080407274462, - 45.88137701524601 - ], - [ - 11.775892522568821, - 45.889923301923254 - ], - [ - 11.788348297656722, - 45.925247953522536 - ], - [ - 11.728404880046206, - 45.937212754870686 - ], - [ - 11.708164245528371, - 45.97652567358601 - ], - [ - 11.685588153181556, - 45.985071960263255 - ], - [ - 11.6676829764927, - 46.039198442552475 - ], - [ - 11.707385759585378, - 46.047174976784575 - ], - [ - 11.68480966723856, - 46.07737185637751 - ], - [ - 11.719063048730284, - 46.10415022129955 - ], - [ - 11.814816819718505, - 46.103010716409244 - ], - [ - 11.894222385903863, - 46.12181254709918 - ], - [ - 11.923026365794628, - 46.15030016935667 - ], - [ - 11.940931542483483, - 46.199868632084694 - ], - [ - 11.91057059070673, - 46.225507492116435 - ], - [ - 11.923026365794628, - 46.24886734236757 - ], - [ - 11.838949883951312, - 46.271657440173556 - ], - [ - 11.832721996407361, - 46.325783922462776 - ], - [ - 11.780563438226785, - 46.35256228738481 - ], - [ - 11.832721996407361, - 46.387886938984096 - ], - [ - 11.851405659039209, - 46.43517639193152 - ], - [ - 11.8895514702459, - 46.44315292616362 - ], - [ - 11.879431152986982, - 46.471070795975955 - ], - [ - 11.814038333775514, - 46.47904733020805 - ], - [ - 11.829608052635386, - 46.509813962246135 - ], - [ - 11.96740006454527, - 46.54570836629056 - ], - [ - 11.99931798820801, - 46.53374356494242 - ], - [ - 12.048362602616614, - 46.58673054234134 - ], - [ - 12.065489293362473, - 46.62433420372122 - ], - [ - 12.069381723077441, - 46.676181676229845 - ], - [ - 12.146451831433817, - 46.635159500179064 - ], - [ - 12.213401622531276, - 46.61009039259248 - ], - [ - 12.262446236939876, - 46.63003172817272 - ], - [ - 12.361313951700076, - 46.620345936605176 - ], - [ - 12.435270116284475, - 46.66934464688805 - ], - [ - 12.478086843149129, - 46.68073969579105 - ], - [ - 12.559049381220472, - 46.65794959798505 - ], - [ - 12.713189597933223, - 46.651112568643256 - ], - [ - 12.736544176223031, - 46.63629900506937 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 20, - "NAME_1": "Veneto", - "ID_2": 105, - "NAME_2": "Padua", - "HASC_2": "IT.PD", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Padoue|Padova" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.093514787310246, - 45.59934955489691 - ], - [ - 12.084172955994323, - 45.58168722909727 - ], - [ - 12.036685313471708, - 45.57200143752972 - ], - [ - 12.008659819523935, - 45.53154901392409 - ], - [ - 11.983748269348137, - 45.45349292893859 - ], - [ - 12.01410922112489, - 45.4250053066811 - ], - [ - 11.9759634099182, - 45.39765718931392 - ], - [ - 12.035906827528713, - 45.358344270598586 - ], - [ - 12.022672566497821, - 45.323019618999304 - ], - [ - 12.053033518274574, - 45.31276407498661 - ], - [ - 12.080280526279353, - 45.332705410566845 - ], - [ - 12.11531239371407, - 45.30592704564481 - ], - [ - 12.155015176806748, - 45.30250853097391 - ], - [ - 12.155015176806748, - 45.26775363181978 - ], - [ - 12.202502819329363, - 45.26034685003283 - ], - [ - 12.193939473956432, - 45.2347079900011 - ], - [ - 12.155015176806748, - 45.216475911756305 - ], - [ - 11.979077353690174, - 45.187988289498826 - ], - [ - 11.96973552237425, - 45.1350013120999 - ], - [ - 11.92536182362361, - 45.1441173512223 - ], - [ - 11.80936741811755, - 45.121897005861456 - ], - [ - 11.761879775594934, - 45.09682789827487 - ], - [ - 11.614745932369129, - 45.10936245206817 - ], - [ - 11.578157093048425, - 45.12474576808721 - ], - [ - 11.529890964582817, - 45.121897005861456 - ], - [ - 11.494080611205106, - 45.10423468006182 - ], - [ - 11.417788988791726, - 45.1304432925387 - ], - [ - 11.40377624181784, - 45.26604437448433 - ], - [ - 11.487852723661158, - 45.26661412692948 - ], - [ - 11.571150719561482, - 45.26262585981343 - ], - [ - 11.589055896250336, - 45.31390357987691 - ], - [ - 11.620973819913079, - 45.330996153231396 - ], - [ - 11.61708139019811, - 45.389110902636666 - ], - [ - 11.677024807808625, - 45.4238658017908 - ], - [ - 11.711278189300346, - 45.46374847295128 - ], - [ - 11.746310056735062, - 45.47286451207368 - ], - [ - 11.723733964388245, - 45.54522307260768 - ], - [ - 11.659119631119768, - 45.54123480549164 - ], - [ - 11.675467835922635, - 45.59251252555511 - ], - [ - 11.645885370088877, - 45.59707054511631 - ], - [ - 11.647442341974863, - 45.63524395894134 - ], - [ - 11.680917237523591, - 45.64151123583799 - ], - [ - 11.71439213307232, - 45.68253341188876 - ], - [ - 11.822601679148443, - 45.68823093634026 - ], - [ - 11.881766610815964, - 45.66658034342457 - ], - [ - 11.893443899960868, - 45.63524395894134 - ], - [ - 11.933925168996542, - 45.61587237580625 - ], - [ - 12.004767389808965, - 45.62384891003835 - ], - [ - 12.034349855642727, - 45.64777851273463 - ], - [ - 12.075609610621392, - 45.64208098828313 - ], - [ - 12.093514787310246, - 45.59934955489691 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 20, - "NAME_1": "Veneto", - "ID_2": 106, - "NAME_2": "Rovigo", - "HASC_2": "IT.RO", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 12.53725177481665, - 44.966924340780736 - ], - [ - 12.48898564635104, - 44.941855233194154 - ], - [ - 12.466409554004223, - 44.905391076704575 - ], - [ - 12.44227648977142, - 44.91393736338182 - ], - [ - 12.433713144398489, - 44.92647191717511 - ], - [ - 12.437605574113455, - 44.951541024761696 - ], - [ - 12.468745011833203, - 44.96179656877439 - ], - [ - 12.53725177481665, - 44.966924340780736 - ] - ] - ], - [ - [ - [ - 12.39868127696377, - 44.79258009256493 - ], - [ - 12.358200007928101, - 44.81480043792577 - ], - [ - 12.33718088746727, - 44.8529738517508 - ], - [ - 12.287357787115674, - 44.87120592999559 - ], - [ - 12.281908385514718, - 44.942424985639306 - ], - [ - 12.225857397619173, - 44.92362315494936 - ], - [ - 12.169806409723627, - 44.94299473808445 - ], - [ - 12.141780915775854, - 44.92932067940086 - ], - [ - 12.098964188911202, - 44.972621865232234 - ], - [ - 12.0623753495905, - 44.970342855451634 - ], - [ - 11.9635076348303, - 44.98800518125128 - ], - [ - 11.922247879851636, - 44.97547062745799 - ], - [ - 11.801582558687613, - 44.976610132348284 - ], - [ - 11.747867028621048, - 44.95894780654864 - ], - [ - 11.745531570792068, - 44.937866966078104 - ], - [ - 11.670796920264674, - 44.915076868272116 - ], - [ - 11.62564473557104, - 44.89000776068553 - ], - [ - 11.53300490835479, - 44.937866966078104 - ], - [ - 11.46527663131434, - 44.93672746118781 - ], - [ - 11.427909306050644, - 44.95097127231655 - ], - [ - 11.415453530962745, - 44.96806384567104 - ], - [ - 11.332934021005414, - 44.99313295325763 - ], - [ - 11.202148382582475, - 45.06093349423044 - ], - [ - 11.178793804292663, - 45.098537155610316 - ], - [ - 11.206819298240436, - 45.110501956958466 - ], - [ - 11.244965109447127, - 45.09340938360397 - ], - [ - 11.316585816202547, - 45.091130373823376 - ], - [ - 11.36173800089618, - 45.058084732004694 - ], - [ - 11.401440783988859, - 45.05352671244349 - ], - [ - 11.446592968682491, - 45.08144458225583 - ], - [ - 11.417788988791726, - 45.1304432925387 - ], - [ - 11.494080611205106, - 45.10423468006182 - ], - [ - 11.529890964582817, - 45.121897005861456 - ], - [ - 11.578157093048425, - 45.12474576808721 - ], - [ - 11.614745932369129, - 45.10936245206817 - ], - [ - 11.761879775594934, - 45.09682789827487 - ], - [ - 11.80936741811755, - 45.121897005861456 - ], - [ - 11.92536182362361, - 45.1441173512223 - ], - [ - 11.96973552237425, - 45.1350013120999 - ], - [ - 12.02656499621279, - 45.1395593316611 - ], - [ - 12.048362602616614, - 45.106513689842416 - ], - [ - 12.1114199639991, - 45.06492176134649 - ], - [ - 12.141780915775854, - 45.05637547466924 - ], - [ - 12.169027923780634, - 45.09511864093942 - ], - [ - 12.239091658650066, - 45.10708344228757 - ], - [ - 12.281908385514718, - 45.123606263196905 - ], - [ - 12.283465357400706, - 45.1441173512223 - ], - [ - 12.328617542094339, - 45.15893091479619 - ], - [ - 12.26945261042682, - 45.11335071918421 - ], - [ - 12.279572927685738, - 45.07802606758493 - ], - [ - 12.350415148498163, - 45.08087482981068 - ], - [ - 12.382333072160904, - 45.037003891534155 - ], - [ - 12.377662156502943, - 45.011365031502415 - ], - [ - 12.457067722688297, - 44.998260725263975 - ], - [ - 12.455510750802311, - 44.96236632121954 - ], - [ - 12.44227648977142, - 44.95495953943259 - ], - [ - 12.429042228740526, - 44.955529291877745 - ], - [ - 12.434491630341482, - 44.944134242974755 - ], - [ - 12.431377686569506, - 44.92875092695571 - ], - [ - 12.435270116284475, - 44.916786125607565 - ], - [ - 12.466409554004223, - 44.90083305714337 - ], - [ - 12.467188039947217, - 44.843288060183255 - ], - [ - 12.432934658455494, - 44.8518343468605 - ], - [ - 12.441498003828425, - 44.89456578024673 - ], - [ - 12.40023824884976, - 44.889438008240376 - ], - [ - 12.38778247376186, - 44.86607815798924 - ], - [ - 12.39868127696377, - 44.79258009256493 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 20, - "NAME_1": "Veneto", - "ID_2": 107, - "NAME_2": "Treviso", - "HASC_2": "IT.TV", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Trévise" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.40023824884976, - 46.04204720477823 - ], - [ - 12.429042228740526, - 45.99646700916625 - ], - [ - 12.423592827139569, - 45.95715409045092 - ], - [ - 12.506112337096901, - 45.92410844863224 - ], - [ - 12.538030260759642, - 45.86941221389787 - ], - [ - 12.583182445453275, - 45.82497152317619 - ], - [ - 12.606537023743087, - 45.83921533430493 - ], - [ - 12.662588011638633, - 45.793065386247804 - ], - [ - 12.647796778721752, - 45.74805494308098 - ], - [ - 12.671929842954556, - 45.717858063488045 - ], - [ - 12.603423079971112, - 45.680824154553314 - ], - [ - 12.576176071966334, - 45.69791672790781 - ], - [ - 12.49521353389499, - 45.675126630101815 - ], - [ - 12.48665018852206, - 45.640371730947685 - ], - [ - 12.439941031942437, - 45.63695321627679 - ], - [ - 12.439162545999444, - 45.56003663618158 - ], - [ - 12.353529092270138, - 45.588524258439065 - ], - [ - 12.336402401524277, - 45.56288539840733 - ], - [ - 12.294364160602619, - 45.57371069486517 - ], - [ - 12.272566554198795, - 45.53325827125954 - ], - [ - 12.20639524904433, - 45.54237431038194 - ], - [ - 12.213401622531276, - 45.56345515085248 - ], - [ - 12.167470951894646, - 45.574850199755474 - ], - [ - 12.145673345490824, - 45.59593104022601 - ], - [ - 12.093514787310246, - 45.59934955489691 - ], - [ - 12.075609610621392, - 45.64208098828313 - ], - [ - 12.034349855642727, - 45.64777851273463 - ], - [ - 12.004767389808965, - 45.62384891003835 - ], - [ - 11.933925168996542, - 45.61587237580625 - ], - [ - 11.893443899960868, - 45.63524395894134 - ], - [ - 11.881766610815964, - 45.66658034342457 - ], - [ - 11.822601679148443, - 45.68823093634026 - ], - [ - 11.814816819718505, - 45.74406667596493 - ], - [ - 11.835057454236342, - 45.74805494308098 - ], - [ - 11.803918016516594, - 45.8010419204799 - ], - [ - 11.780563438226785, - 45.793065386247804 - ], - [ - 11.750980972393023, - 45.82440177073104 - ], - [ - 11.743974598906082, - 45.855738155214276 - ], - [ - 11.80080407274462, - 45.88137701524601 - ], - [ - 11.826494108863411, - 45.9087251326132 - ], - [ - 11.877095695158001, - 45.88194676769116 - ], - [ - 11.951830345685394, - 45.89676033126506 - ], - [ - 11.953387317571384, - 45.94917755621883 - ], - [ - 12.033571369699732, - 45.97424666380542 - ], - [ - 12.063153835533493, - 45.963421367347564 - ], - [ - 12.110641478056108, - 46.00387379095319 - ], - [ - 12.191604016127451, - 46.00558304828864 - ], - [ - 12.235199228935098, - 46.01925710697224 - ], - [ - 12.323168140493383, - 46.083069380829 - ], - [ - 12.392453389419822, - 46.072244084371164 - ], - [ - 12.40023824884976, - 46.04204720477823 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 20, - "NAME_1": "Veneto", - "ID_2": 108, - "NAME_2": "Venezia", - "HASC_2": "IT.VE", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Venecia|Venedig|Veneza|Venezia|Venise|" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 12.288914759001662, - 45.232428980220504 - ], - [ - 12.312269337291472, - 45.18229076504733 - ], - [ - 12.258553807224908, - 45.183430269937624 - ], - [ - 12.262446236939876, - 45.207359872633916 - ], - [ - 12.288914759001662, - 45.232428980220504 - ] - ] - ], - [ - [ - [ - 12.328617542094339, - 45.15893091479619 - ], - [ - 12.283465357400706, - 45.1441173512223 - ], - [ - 12.281908385514718, - 45.123606263196905 - ], - [ - 12.239091658650066, - 45.10708344228757 - ], - [ - 12.169027923780634, - 45.09511864093942 - ], - [ - 12.141780915775854, - 45.05637547466924 - ], - [ - 12.1114199639991, - 45.06492176134649 - ], - [ - 12.048362602616614, - 45.106513689842416 - ], - [ - 12.02656499621279, - 45.1395593316611 - ], - [ - 11.96973552237425, - 45.1350013120999 - ], - [ - 11.979077353690174, - 45.187988289498826 - ], - [ - 12.155015176806748, - 45.216475911756305 - ], - [ - 12.193939473956432, - 45.2347079900011 - ], - [ - 12.202502819329363, - 45.26034685003283 - ], - [ - 12.226635883562167, - 45.224452445988405 - ], - [ - 12.221186481961212, - 45.193685813950324 - ], - [ - 12.251547433737965, - 45.181721012602175 - ], - [ - 12.30137053408956, - 45.17716299304098 - ], - [ - 12.328617542094339, - 45.15893091479619 - ] - ] - ], - [ - [ - [ - 12.237534686764079, - 45.40791273332661 - ], - [ - 12.25076894779497, - 45.36062328037919 - ], - [ - 12.214958594417261, - 45.364041795050085 - ], - [ - 12.237534686764079, - 45.40791273332661 - ] - ] - ], - [ - [ - [ - 12.980210276380056, - 45.83465731474374 - ], - [ - 12.975539360722095, - 45.8067394449314 - ], - [ - 13.002786368726873, - 45.74919444797128 - ], - [ - 13.030033376731652, - 45.73609014173284 - ], - [ - 13.045603095591526, - 45.685382174114515 - ], - [ - 13.084527392741212, - 45.65689455185703 - ], - [ - 13.096204681886116, - 45.634674206496186 - ], - [ - 12.996558481182923, - 45.62783717715439 - ], - [ - 12.907032597738649, - 45.6141631184708 - ], - [ - 12.860323441159029, - 45.586245248658464 - ], - [ - 12.719417485477171, - 45.52528173702745 - ], - [ - 12.582403959510282, - 45.477992284080024 - ], - [ - 12.476529871263141, - 45.448934909377385 - ], - [ - 12.446168919486386, - 45.470585502293076 - ], - [ - 12.48665018852206, - 45.49907312455056 - ], - [ - 12.530245401329704, - 45.48084104630577 - ], - [ - 12.572283642251364, - 45.49280584765391 - ], - [ - 12.63222705986188, - 45.53382802370469 - ], - [ - 12.54815057801856, - 45.55262985439463 - ], - [ - 12.510783252754862, - 45.57029218019427 - ], - [ - 12.476529871263141, - 45.55946688373643 - ], - [ - 12.439162545999444, - 45.5212934699114 - ], - [ - 12.256218349395926, - 45.46089971072553 - ], - [ - 12.259332293167901, - 45.41531951511355 - ], - [ - 12.215737080360256, - 45.416459020003856 - ], - [ - 12.186154614526496, - 45.34979798392134 - ], - [ - 12.19549644584242, - 45.32814739100565 - ], - [ - 12.155015176806748, - 45.30250853097391 - ], - [ - 12.11531239371407, - 45.30592704564481 - ], - [ - 12.080280526279353, - 45.332705410566845 - ], - [ - 12.053033518274574, - 45.31276407498661 - ], - [ - 12.022672566497821, - 45.323019618999304 - ], - [ - 12.035906827528713, - 45.358344270598586 - ], - [ - 11.9759634099182, - 45.39765718931392 - ], - [ - 12.01410922112489, - 45.4250053066811 - ], - [ - 11.983748269348137, - 45.45349292893859 - ], - [ - 12.008659819523935, - 45.53154901392409 - ], - [ - 12.036685313471708, - 45.57200143752972 - ], - [ - 12.084172955994323, - 45.58168722909727 - ], - [ - 12.093514787310246, - 45.59934955489691 - ], - [ - 12.145673345490824, - 45.59593104022601 - ], - [ - 12.167470951894646, - 45.574850199755474 - ], - [ - 12.213401622531276, - 45.56345515085248 - ], - [ - 12.20639524904433, - 45.54237431038194 - ], - [ - 12.272566554198795, - 45.53325827125954 - ], - [ - 12.294364160602619, - 45.57371069486517 - ], - [ - 12.336402401524277, - 45.56288539840733 - ], - [ - 12.353529092270138, - 45.588524258439065 - ], - [ - 12.439162545999444, - 45.56003663618158 - ], - [ - 12.439941031942437, - 45.63695321627679 - ], - [ - 12.48665018852206, - 45.640371730947685 - ], - [ - 12.49521353389499, - 45.675126630101815 - ], - [ - 12.576176071966334, - 45.69791672790781 - ], - [ - 12.603423079971112, - 45.680824154553314 - ], - [ - 12.671929842954556, - 45.717858063488045 - ], - [ - 12.647796778721752, - 45.74805494308098 - ], - [ - 12.662588011638633, - 45.793065386247804 - ], - [ - 12.72953780273609, - 45.83750607696948 - ], - [ - 12.78247484685966, - 45.85459865032398 - ], - [ - 12.861880413045016, - 45.851749888098226 - ], - [ - 12.891462878878777, - 45.82440177073104 - ], - [ - 12.93038717602846, - 45.81813449383439 - ], - [ - 12.980210276380056, - 45.83465731474374 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 20, - "NAME_1": "Veneto", - "ID_2": 109, - "NAME_2": "Verona", - "HASC_2": "IT.VR", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Vérone" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.13986950714298, - 45.69791672790781 - ], - [ - 11.14843285251591, - 45.652336532295834 - ], - [ - 11.185021691836614, - 45.619290890477146 - ], - [ - 11.23718025001719, - 45.60105881223236 - ], - [ - 11.252749968877065, - 45.54294406282709 - ], - [ - 11.28155394876783, - 45.512177430789 - ], - [ - 11.321256731860508, - 45.49964287699571 - ], - [ - 11.325149161575478, - 45.455202186274036 - ], - [ - 11.355510113352231, - 45.354356003482536 - ], - [ - 11.39521289644491, - 45.34865847903104 - ], - [ - 11.453599342169436, - 45.32472887633475 - ], - [ - 11.441143567081536, - 45.303648035864214 - ], - [ - 11.491745153376126, - 45.28370670028397 - ], - [ - 11.487852723661158, - 45.26661412692948 - ], - [ - 11.40377624181784, - 45.26604437448433 - ], - [ - 11.417788988791726, - 45.1304432925387 - ], - [ - 11.446592968682491, - 45.08144458225583 - ], - [ - 11.401440783988859, - 45.05352671244349 - ], - [ - 11.36173800089618, - 45.058084732004694 - ], - [ - 11.316585816202547, - 45.091130373823376 - ], - [ - 11.244965109447127, - 45.09340938360397 - ], - [ - 11.206819298240436, - 45.110501956958466 - ], - [ - 11.13986950714298, - 45.12474576808721 - ], - [ - 11.073698201988517, - 45.09967666050062 - ], - [ - 11.029324503237877, - 45.12417601564206 - ], - [ - 11.0511221096417, - 45.15038462811894 - ], - [ - 10.998963551461122, - 45.15950066724134 - ], - [ - 10.991178692031184, - 45.19710432862122 - ], - [ - 10.947583479223539, - 45.206790120188764 - ], - [ - 10.93512770413564, - 45.23413823755595 - ], - [ - 10.847937278520346, - 45.257498087807086 - ], - [ - 10.784101431194864, - 45.31618258965751 - ], - [ - 10.738170760558237, - 45.28826471984517 - ], - [ - 10.698467977465558, - 45.381134368404574 - ], - [ - 10.717151640097407, - 45.417028772449 - ], - [ - 10.655651250600906, - 45.417028772449 - ], - [ - 10.643973961456002, - 45.455202186274036 - ], - [ - 10.62918272853912, - 45.60276806956781 - ], - [ - 10.703138893123521, - 45.673417372766366 - ], - [ - 10.840930905033403, - 45.83351780985343 - ], - [ - 10.88452611784105, - 45.81813449383439 - ], - [ - 10.844823334748373, - 45.719567320823494 - ], - [ - 10.890754005384998, - 45.716148806152596 - ], - [ - 10.938241647907613, - 45.67455687765667 - ], - [ - 10.999742037404115, - 45.70874202436565 - ], - [ - 11.066691828501572, - 45.7093117768108 - ], - [ - 11.13986950714298, - 45.69791672790781 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "ITA", - "NAME_0": "Italy", - "ID_1": 20, - "NAME_1": "Veneto", - "ID_2": 110, - "NAME_2": "Vicenza", - "HASC_2": "IT.VI", - "TYPE_2": "Provincia", - "ENGTYPE_2": "Province", - "VARNAME_2": "Vicence" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.685588153181556, - 45.985071960263255 - ], - [ - 11.708164245528371, - 45.97652567358601 - ], - [ - 11.728404880046206, - 45.937212754870686 - ], - [ - 11.788348297656722, - 45.925247953522536 - ], - [ - 11.775892522568821, - 45.889923301923254 - ], - [ - 11.80080407274462, - 45.88137701524601 - ], - [ - 11.743974598906082, - 45.855738155214276 - ], - [ - 11.750980972393023, - 45.82440177073104 - ], - [ - 11.780563438226785, - 45.793065386247804 - ], - [ - 11.803918016516594, - 45.8010419204799 - ], - [ - 11.835057454236342, - 45.74805494308098 - ], - [ - 11.814816819718505, - 45.74406667596493 - ], - [ - 11.822601679148443, - 45.68823093634026 - ], - [ - 11.71439213307232, - 45.68253341188876 - ], - [ - 11.680917237523591, - 45.64151123583799 - ], - [ - 11.647442341974863, - 45.63524395894134 - ], - [ - 11.645885370088877, - 45.59707054511631 - ], - [ - 11.675467835922635, - 45.59251252555511 - ], - [ - 11.659119631119768, - 45.54123480549164 - ], - [ - 11.723733964388245, - 45.54522307260768 - ], - [ - 11.746310056735062, - 45.47286451207368 - ], - [ - 11.711278189300346, - 45.46374847295128 - ], - [ - 11.677024807808625, - 45.4238658017908 - ], - [ - 11.61708139019811, - 45.389110902636666 - ], - [ - 11.620973819913079, - 45.330996153231396 - ], - [ - 11.589055896250336, - 45.31390357987691 - ], - [ - 11.571150719561482, - 45.26262585981343 - ], - [ - 11.487852723661158, - 45.26661412692948 - ], - [ - 11.491745153376126, - 45.28370670028397 - ], - [ - 11.441143567081536, - 45.303648035864214 - ], - [ - 11.453599342169436, - 45.32472887633475 - ], - [ - 11.39521289644491, - 45.34865847903104 - ], - [ - 11.355510113352231, - 45.354356003482536 - ], - [ - 11.325149161575478, - 45.455202186274036 - ], - [ - 11.321256731860508, - 45.49964287699571 - ], - [ - 11.28155394876783, - 45.512177430789 - ], - [ - 11.252749968877065, - 45.54294406282709 - ], - [ - 11.23718025001719, - 45.60105881223236 - ], - [ - 11.185021691836614, - 45.619290890477146 - ], - [ - 11.14843285251591, - 45.652336532295834 - ], - [ - 11.13986950714298, - 45.69791672790781 - ], - [ - 11.175679860520688, - 45.73381113195224 - ], - [ - 11.174901374577695, - 45.78793761424146 - ], - [ - 11.219275073328337, - 45.84491285875643 - ], - [ - 11.240294193789165, - 45.85687766010457 - ], - [ - 11.262091800192987, - 45.917271419290444 - ], - [ - 11.325149161575478, - 45.91841092418074 - ], - [ - 11.38275712135701, - 45.94348003176733 - ], - [ - 11.373415290041086, - 45.97424666380542 - ], - [ - 11.44814994056848, - 45.98165344559236 - ], - [ - 11.511985787893963, - 46.01298983007559 - ], - [ - 11.578157093048425, - 46.00729230562409 - ], - [ - 11.588277410307343, - 45.969688644244215 - ], - [ - 11.67391086403665, - 45.96513062468301 - ], - [ - 11.685588153181556, - 45.985071960263255 - ] - ] - ] - } - } - ] -} \ No newline at end of file diff --git a/GlobalQuakeCore/src/main/resources/polygons_converted/jp-prefectures.geojson b/GlobalQuakeCore/src/main/resources/polygons_converted/jp-prefectures.geojson deleted file mode 100644 index b5e8413..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons_converted/jp-prefectures.geojson +++ /dev/null @@ -1,54 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "JPN_adm1", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1457, "NAME_1": "Aichi", "VARNAME_1": "Aiti", "HASC_1": "JP.AI", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.039387054360134, 34.733258663996843 ], [ 137.051908566723284, 34.728671410181661 ], [ 137.053240642506609, 34.719726265242052 ], [ 137.031661014816905, 34.722478617531159 ], [ 137.039387054360134, 34.733258663996843 ] ] ], [ [ [ 137.565024158456026, 35.284417209891181 ], [ 137.556232458286132, 35.258040500453873 ], [ 137.54903924905625, 35.250012806277304 ], [ 137.554900382502836, 35.238315309048588 ], [ 137.581541898169121, 35.216296490735701 ], [ 137.581009067855774, 35.194736397804334 ], [ 137.593264165062294, 35.195883211258135 ], [ 137.620172095885238, 35.206204532342298 ], [ 137.64494870545488, 35.205745806960778 ], [ 137.666528333144583, 35.224553547603037 ], [ 137.688107960834259, 35.228911438727458 ], [ 137.724873252453762, 35.227535262582904 ], [ 137.729935140430342, 35.218131392261775 ], [ 137.766966847206476, 35.216525853426461 ], [ 137.778156283786331, 35.200241102382563 ], [ 137.80106798725933, 35.20184664121787 ], [ 137.820782708852391, 35.211250511538999 ], [ 137.822914030105693, 35.193360221659781 ], [ 137.80586346007928, 35.181203999049544 ], [ 137.804797799452615, 35.1701945898931 ], [ 137.827709502925615, 35.159185180736664 ], [ 137.830906484805581, 35.149322585034014 ], [ 137.817052896659106, 35.146340870054146 ], [ 137.818917802755749, 35.135790186279223 ], [ 137.801867232729336, 35.12546886519506 ], [ 137.80586346007928, 35.105743673789775 ], [ 137.782152511136275, 35.095881078087125 ], [ 137.7682989229898, 35.069504368649817 ], [ 137.741124577010197, 35.050696628007564 ], [ 137.708089097583979, 35.01239305865078 ], [ 137.704092870234035, 35.000007473349783 ], [ 137.708355512740638, 34.988080613430306 ], [ 137.706490606643996, 34.968126059334253 ], [ 137.678517015194416, 34.942208075278465 ], [ 137.659601539071332, 34.936932733391004 ], [ 137.643350214514896, 34.897941075961946 ], [ 137.641751723574941, 34.887619754877775 ], [ 137.624434738391841, 34.876380983030579 ], [ 137.59939171366554, 34.865371573874135 ], [ 137.589800768025668, 34.846563833231883 ], [ 137.568221140335964, 34.848857460139477 ], [ 137.509609805870127, 34.831425895641779 ], [ 137.501883766326898, 34.823627564155963 ], [ 137.492559235843714, 34.803673010059917 ], [ 137.496289048036999, 34.783259730582344 ], [ 137.480037723480564, 34.771791596044388 ], [ 137.478172817383921, 34.750002140422268 ], [ 137.485099611457144, 34.720873078695845 ], [ 137.49122716006039, 34.711927933756236 ], [ 137.493624896470351, 34.69151465427867 ], [ 137.488296593337111, 34.674771177853245 ], [ 137.461388662514139, 34.671560100182617 ], [ 137.405707894771609, 34.661238779098454 ], [ 137.335374293412599, 34.64610084150835 ], [ 137.26184371017365, 34.626834375484577 ], [ 137.223213512457534, 34.613760702111307 ], [ 137.201900299924489, 34.610320261749919 ], [ 137.141424059362009, 34.589677619581586 ], [ 137.11851235588901, 34.587383992673992 ], [ 137.085210461306133, 34.589906982272346 ], [ 137.038321393733469, 34.57843884773439 ], [ 137.017274596357112, 34.57866821042515 ], [ 137.029263278406944, 34.594494236087527 ], [ 137.035657242166849, 34.611237712512953 ], [ 137.056437624386547, 34.647935743034424 ], [ 137.064962909399753, 34.658715789500107 ], [ 137.081214233956189, 34.662156229861495 ], [ 137.086009706776139, 34.647018292271383 ], [ 137.100396125235932, 34.64610084150835 ], [ 137.102527446489233, 34.637385059259501 ], [ 137.119578016515646, 34.634862069661153 ], [ 137.145686701868613, 34.644724665363796 ], [ 137.149682929218557, 34.653899172994159 ], [ 137.1688648204983, 34.656192799901753 ], [ 137.188046711778014, 34.669954561347303 ], [ 137.197904072574545, 34.66857838520275 ], [ 137.206695772744411, 34.678211618214632 ], [ 137.222414266987528, 34.675229903234765 ], [ 137.236001439977343, 34.687844851226522 ], [ 137.265307107210248, 34.697019358856892 ], [ 137.262642955643628, 34.716744550262177 ], [ 137.283956168176672, 34.730735674398488 ], [ 137.300473907889767, 34.728212684800141 ], [ 137.301006738203085, 34.694037643877024 ], [ 137.28741956521327, 34.685092498937408 ], [ 137.306601456493013, 34.680963970503747 ], [ 137.314593911192901, 34.688303576608043 ], [ 137.308466362589655, 34.701835975362833 ], [ 137.30740070196299, 34.718120726406738 ], [ 137.320188629482828, 34.732799938615322 ], [ 137.323918441676085, 34.748396601586947 ], [ 137.322053535579471, 34.771103507972107 ], [ 137.329779575122672, 34.781195466365517 ], [ 137.310864098999616, 34.804819823513711 ], [ 137.288218810683276, 34.812618154999527 ], [ 137.261577295016991, 34.804590460822951 ], [ 137.224545588240829, 34.819269673031542 ], [ 137.210425584937695, 34.803214284678397 ], [ 137.191243693657981, 34.805278548895231 ], [ 137.189911617874657, 34.776149487168809 ], [ 137.177390105511506, 34.765140078012372 ], [ 137.170196896281595, 34.770644782590594 ], [ 137.175791614571523, 34.784406544036145 ], [ 137.162737271895054, 34.786700170943732 ], [ 137.151015005001881, 34.781424829056277 ], [ 137.135296510758764, 34.788535072469806 ], [ 137.124107074178937, 34.783030367891584 ], [ 137.114782543695725, 34.7908286993774 ], [ 137.087075367402775, 34.775461399096535 ], [ 137.077484421762932, 34.785782720180698 ], [ 137.066561400339737, 34.785553357489938 ], [ 137.043116866553419, 34.775002673715015 ], [ 137.027664787466961, 34.778443114076403 ], [ 136.984771947244241, 34.822022025320649 ], [ 136.957864016421297, 34.832572709095572 ], [ 136.953867789071353, 34.848398734757957 ], [ 136.967987792374487, 34.870876278452357 ], [ 136.977845153170989, 34.896335537126632 ], [ 136.967987792374487, 34.897023625198905 ], [ 136.957864016421297, 34.88119759953652 ], [ 136.941612691864862, 34.88165632491804 ], [ 136.945875334371465, 34.86858265154477 ], [ 136.935218728104928, 34.857114517006806 ], [ 136.926160612778403, 34.816746683433188 ], [ 136.920033064175158, 34.810783253473446 ], [ 136.921098724801794, 34.793351688975747 ], [ 136.915770421668554, 34.769497969136793 ], [ 136.949871561721409, 34.739222093956585 ], [ 136.965590055964498, 34.733717389378363 ], [ 136.964524395337861, 34.721102441386606 ], [ 136.974381756134392, 34.705505778414981 ], [ 136.967188546904481, 34.700230436527519 ], [ 136.943477597961476, 34.700230436527519 ], [ 136.900318342582096, 34.718579451788258 ], [ 136.888329660532264, 34.721102441386606 ], [ 136.861421729709321, 34.737845917812024 ], [ 136.844371159682879, 34.756424295763523 ], [ 136.8414405929596, 34.765369440703125 ], [ 136.855294181106075, 34.791975512831193 ], [ 136.865684372215924, 34.825233102991277 ], [ 136.867016447999248, 34.837389325601514 ], [ 136.856359841732711, 34.856197066243766 ], [ 136.857425502359376, 34.861931133512748 ], [ 136.837710780766315, 34.875922257649059 ], [ 136.824656438089846, 34.894959360982071 ], [ 136.821725871366539, 34.909638573190662 ], [ 136.822525116836545, 34.93555655724645 ], [ 136.82865266543979, 34.961474541302238 ], [ 136.820127380426584, 34.965373707045146 ], [ 136.845170405152885, 34.998860659895989 ], [ 136.84890021734617, 35.010328794433946 ], [ 136.867549278312566, 35.040604669614162 ], [ 136.875008902699136, 35.042210208449475 ], [ 136.893391548508873, 35.066293290979189 ], [ 136.882734942242337, 35.068816280577543 ], [ 136.873143996602494, 35.049779177244531 ], [ 136.864618711589259, 35.050237902626044 ], [ 136.873410411759153, 35.072027358248171 ], [ 136.889661736315588, 35.071568632866651 ], [ 136.890194566628907, 35.089000197364349 ], [ 136.876873808795779, 35.08945892274587 ], [ 136.860356069082655, 35.06744010443299 ], [ 136.852630029539455, 35.045191923429343 ], [ 136.837710780766315, 35.051614078770598 ], [ 136.84890021734617, 35.077532062826393 ], [ 136.815331907606634, 35.081889953950814 ], [ 136.832116062476388, 35.065834565597669 ], [ 136.830517571536433, 35.051155353389085 ], [ 136.839575686862958, 35.029824623148478 ], [ 136.810802849943371, 35.026384182787091 ], [ 136.809470774160047, 35.050237902626044 ], [ 136.801744734616818, 35.04817363840921 ], [ 136.800679073990182, 35.028677809694685 ], [ 136.794285110230277, 35.014686685558374 ], [ 136.774836803793875, 35.022943742425703 ], [ 136.764180197527367, 35.020650115518109 ], [ 136.749527363910914, 35.0353293277267 ], [ 136.736473021234417, 35.029365897766958 ], [ 136.731144718101177, 35.03624677848974 ], [ 136.717291129954702, 35.084183580858408 ], [ 136.710097920724792, 35.094734264633331 ], [ 136.704503202434864, 35.119964160616846 ], [ 136.680259423178541, 35.128679942865688 ], [ 136.670934892695357, 35.145423419291113 ], [ 136.679193762551904, 35.180745273668023 ], [ 136.682124329275183, 35.236709770213267 ], [ 136.702638296338222, 35.262169028887541 ], [ 136.71542622385806, 35.282123582983587 ], [ 136.728480566534529, 35.292215541376997 ], [ 136.749527363910914, 35.333500825713649 ], [ 136.767643594563992, 35.360565623223238 ], [ 136.777500955360495, 35.366529053182973 ], [ 136.795350770856913, 35.365152877038419 ], [ 136.810802849943371, 35.35712518286185 ], [ 136.832382477633075, 35.354143467881975 ], [ 136.847035311249527, 35.357813270934123 ], [ 136.875008902699136, 35.3697401308536 ], [ 136.895789284918834, 35.374786110050302 ], [ 136.916836082295191, 35.375015472741062 ], [ 136.938149294828236, 35.387171695351299 ], [ 136.958130431577956, 35.393364488001801 ], [ 136.963991565024543, 35.412172228644053 ], [ 136.991965156474123, 35.421805461655936 ], [ 136.9850383624009, 35.406438161375071 ], [ 136.99755987476405, 35.389924047640413 ], [ 137.011679878067184, 35.378226550411696 ], [ 137.050842906096648, 35.362171162058544 ], [ 137.049510830313324, 35.335335727239723 ], [ 137.066294985183077, 35.333271463022889 ], [ 137.074553855039625, 35.326619944990874 ], [ 137.06815989127972, 35.318133525432785 ], [ 137.069758382219703, 35.306665390894821 ], [ 137.083345555209519, 35.293362354830791 ], [ 137.099596879765954, 35.287169562180296 ], [ 137.103326691959211, 35.296573432501418 ], [ 137.124906319648915, 35.29267426675851 ], [ 137.151015005001881, 35.277765691859166 ], [ 137.162737271895054, 35.27937123069448 ], [ 137.179255011608149, 35.266985645393483 ], [ 137.180853502548132, 35.255746873546286 ], [ 137.200301808984506, 35.250012806277304 ], [ 137.21442181228764, 35.256434961618559 ], [ 137.232271627784058, 35.25689368700008 ], [ 137.25438408578708, 35.266756282702723 ], [ 137.268504089090214, 35.282811671055867 ], [ 137.278894280200063, 35.287398924871056 ], [ 137.310864098999616, 35.288087012943329 ], [ 137.338837690449225, 35.271343536517911 ], [ 137.34523165420913, 35.258269863144633 ], [ 137.375070151755381, 35.259875401979947 ], [ 137.38785807927519, 35.256434961618559 ], [ 137.386792418648554, 35.243361288245289 ], [ 137.424356955738006, 35.231434428325812 ], [ 137.436878468101156, 35.222718646076956 ], [ 137.446469413741028, 35.231663791016572 ], [ 137.46591772017743, 35.238085946357828 ], [ 137.500018860230256, 35.260792852742988 ], [ 137.511208296810111, 35.263086479650582 ], [ 137.524262639486579, 35.280976769529794 ], [ 137.546375097489602, 35.277765691859166 ], [ 137.565024158456026, 35.284417209891181 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1458, "NAME_1": "Akita", "VARNAME_1": "", "HASC_1": "JP.AK", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.992332650811619, 40.093694109729931 ], [ 139.999259444884842, 40.086125140934882 ], [ 140.015510769441278, 40.081537887119694 ], [ 140.057337949037361, 40.05768416728074 ], [ 140.069326631087193, 40.03383044744178 ], [ 140.066396064363914, 39.984058743547038 ], [ 140.058137194507367, 39.962728013306432 ], [ 140.046414927614194, 39.944608360736453 ], [ 140.035491906190998, 39.936351303869124 ], [ 140.014178693657982, 39.927635521620275 ], [ 139.952370377312178, 39.940709194993552 ], [ 139.928393013212514, 39.952406692222269 ], [ 139.923331125235933, 39.959058210254284 ], [ 139.935319807285765, 39.991857075032854 ], [ 139.944111507455631, 40.000572857281696 ], [ 139.932122825405798, 40.022821038285343 ], [ 139.935319807285765, 40.029472556317359 ], [ 139.953169622782184, 40.037041525112414 ], [ 139.96462547451867, 40.059060343425294 ], [ 139.980077553605128, 40.065023773385036 ], [ 139.985672271895055, 40.092317933585377 ], [ 139.992332650811619, 40.093694109729931 ] ] ], [ [ [ 140.958354008871254, 40.245532211012517 ], [ 140.947164572291427, 40.242321133341889 ], [ 140.938106456964874, 40.223284030008877 ], [ 140.91626041411854, 40.220531677719762 ], [ 140.893082295488853, 40.197824771334609 ], [ 140.889885313608886, 40.184980460652085 ], [ 140.866174364665909, 40.171677424588054 ], [ 140.874966064835775, 40.157227575070223 ], [ 140.886155501415629, 40.152869683945802 ], [ 140.874966064835775, 40.13497939406659 ], [ 140.874966064835775, 40.122823171456346 ], [ 140.882692104379004, 40.112043124990663 ], [ 140.87869587702906, 40.092088570894617 ], [ 140.852320776519434, 40.074198281015398 ], [ 140.850455870422792, 40.063647597240475 ], [ 140.858714740279339, 40.04415176852595 ], [ 140.855251343242713, 40.022591675594583 ], [ 140.859247570592657, 40.012958442582693 ], [ 140.852320776519434, 40.005160111096885 ], [ 140.853919267459418, 39.992545163105127 ], [ 140.849923040109474, 39.969379531338447 ], [ 140.851521531049457, 39.956305857965177 ], [ 140.860846061532641, 39.949883702623922 ], [ 140.856317003869378, 39.935892578487611 ], [ 140.863243797942602, 39.916626112463831 ], [ 140.882425689222345, 39.882680434231474 ], [ 140.88136002859568, 39.871671025075031 ], [ 140.852853606832753, 39.864331418970735 ], [ 140.827810582106451, 39.883139159612995 ], [ 140.819018881936586, 39.877634455034773 ], [ 140.803833218006787, 39.878322543107046 ], [ 140.786516232823686, 39.865478232424536 ], [ 140.791311705643636, 39.843918139493169 ], [ 140.789979629860312, 39.823963585397124 ], [ 140.806763784730066, 39.81249545085916 ], [ 140.817686806153262, 39.814100989694474 ], [ 140.846992473386166, 39.798274964032089 ], [ 140.844328321819546, 39.786348104112612 ], [ 140.814223409116636, 39.756530954313916 ], [ 140.805165293790111, 39.740704928651532 ], [ 140.78545057219705, 39.73520022407331 ], [ 140.786782647980374, 39.724190814916874 ], [ 140.797439254246882, 39.706759250419175 ], [ 140.807829445356731, 39.707906063872969 ], [ 140.819018881936586, 39.689098323230716 ], [ 140.824880015383144, 39.66845568106239 ], [ 140.825412845696491, 39.646895588131024 ], [ 140.810493596923351, 39.629005298251805 ], [ 140.806763784730066, 39.607215842629685 ], [ 140.799570575500184, 39.60010559921615 ], [ 140.785983402510368, 39.601252412669943 ], [ 140.75507924433748, 39.567306734437587 ], [ 140.733766031804436, 39.562948843313158 ], [ 140.730569049924497, 39.553315610301276 ], [ 140.744156222914285, 39.534737232349784 ], [ 140.741492071347665, 39.5228103724303 ], [ 140.731634710551134, 39.517535030542838 ], [ 140.716715461778023, 39.49115832110553 ], [ 140.72231018006795, 39.481983813475168 ], [ 140.715649801151358, 39.472809305844798 ], [ 140.68954111579842, 39.456524554800893 ], [ 140.682614321725168, 39.448496860624324 ], [ 140.688741870328414, 39.426707405002198 ], [ 140.68474564297847, 39.416615446608795 ], [ 140.66210035466213, 39.411798830102853 ], [ 140.659169787938822, 39.386339571428579 ], [ 140.679150924688543, 39.382669768376431 ], [ 140.683679982351833, 39.361797763517345 ], [ 140.694336588618341, 39.35583433355761 ], [ 140.69220526736504, 39.345971737854967 ], [ 140.709255837391453, 39.33335678986321 ], [ 140.699931306908269, 39.318218852273105 ], [ 140.701529797848224, 39.297117484723259 ], [ 140.720445273971308, 39.285419987494535 ], [ 140.720178858814648, 39.274869303719612 ], [ 140.728437728671196, 39.267529697615316 ], [ 140.759075471687424, 39.254226661551286 ], [ 140.785184157040391, 39.236795097053587 ], [ 140.789713214703653, 39.227849952113978 ], [ 140.772396229520552, 39.215923092194501 ], [ 140.768133587013949, 39.195280450026175 ], [ 140.790246045016971, 39.187023393158846 ], [ 140.801435481596826, 39.186564667777326 ], [ 140.811292842393357, 39.177848885528476 ], [ 140.7806550993771, 39.165692662918239 ], [ 140.756677735277464, 39.132893798139676 ], [ 140.770531323423938, 39.124178015890827 ], [ 140.766002265760648, 39.104911549867055 ], [ 140.756144904964117, 39.085645083843282 ], [ 140.775593211400519, 39.075782488140632 ], [ 140.785983402510368, 39.078076115048226 ], [ 140.80543170894677, 39.070736508943931 ], [ 140.803033972536809, 39.059497737096734 ], [ 140.812891333333312, 39.055139845972306 ], [ 140.797705669403541, 39.039084457619168 ], [ 140.7979720845602, 39.028075048462725 ], [ 140.78278642063043, 39.006514955531358 ], [ 140.77266264467724, 39.000780888262383 ], [ 140.76786717185729, 38.984266774527718 ], [ 140.777724532653821, 38.965917759266979 ], [ 140.776658872027156, 38.955137712801303 ], [ 140.759341886844084, 38.955137712801303 ], [ 140.730569049924497, 38.941375951355752 ], [ 140.718580367874665, 38.924173749548807 ], [ 140.687942624858437, 38.913852428464644 ], [ 140.675154697338598, 38.895732775894672 ], [ 140.657571296998867, 38.886099542882782 ], [ 140.635458838995845, 38.884494004047468 ], [ 140.618141853812745, 38.891145522079483 ], [ 140.610415814269516, 38.883576553284428 ], [ 140.568055804360142, 38.871649693364958 ], [ 140.554468631370327, 38.878759936778486 ], [ 140.542213534163835, 38.896650226657705 ], [ 140.520101076160813, 38.897108952039225 ], [ 140.508911639580958, 38.892062972842524 ], [ 140.486266351264618, 38.91293497770161 ], [ 140.464953138731573, 38.917751594207552 ], [ 140.453230871838429, 38.942981490191059 ], [ 140.456427853718367, 38.953532173965982 ], [ 140.449501059645144, 38.973257365371275 ], [ 140.43538105634201, 38.988854028342899 ], [ 140.401812746602474, 38.988624665652139 ], [ 140.381565194696094, 38.992065106013527 ], [ 140.366113115609664, 39.01156093472806 ], [ 140.363715379199675, 39.022799706575263 ], [ 140.351726697149871, 39.022111618502983 ], [ 140.332278390713469, 39.031974214205633 ], [ 140.32188819960362, 39.027845685771965 ], [ 140.317891972253676, 39.016377551234001 ], [ 140.298177250660615, 39.015460100470968 ], [ 140.291250456587392, 39.024405245410577 ], [ 140.259280637787839, 39.029451224607278 ], [ 140.237434594941476, 39.024634608101337 ], [ 140.204399115515287, 39.033350390350186 ], [ 140.204931945828605, 39.055827934044586 ], [ 140.195074585032074, 39.058121560952173 ], [ 140.175093448282354, 39.049405778703331 ], [ 140.152448159966013, 39.049405778703331 ], [ 140.146853441676086, 39.058580286333694 ], [ 140.1353975899396, 39.060644550550528 ], [ 140.101296449886746, 39.080828467337341 ], [ 140.075987010003757, 39.084268907698728 ], [ 140.064797573423931, 39.11110434251755 ], [ 140.065863234050568, 39.130829533922842 ], [ 140.016043599754624, 39.120966938220192 ], [ 139.986471517365032, 39.105599637939328 ], [ 139.906280555209491, 39.115920959023498 ], [ 139.869781678746676, 39.119132036694126 ], [ 139.883102436579833, 39.132435072758156 ], [ 139.88390168204981, 39.147114284966747 ], [ 139.896689609569648, 39.158123694123184 ], [ 139.90414923395619, 39.176702072074676 ], [ 139.904415649112877, 39.198950253078323 ], [ 139.892160551906386, 39.202620056130471 ], [ 139.892693382219704, 39.213170739905394 ], [ 139.903349988486212, 39.225097599824871 ], [ 139.91427300990938, 39.249180682354584 ], [ 139.910543197716123, 39.257896464603434 ], [ 139.915871500849363, 39.276016117173413 ], [ 139.928126598055854, 39.288631065165163 ], [ 139.945709998395614, 39.288860427855923 ], [ 139.966756795771971, 39.294365132434145 ], [ 139.985405856738396, 39.321200567252973 ], [ 140.005386993488088, 39.359733499300518 ], [ 140.016576430067943, 39.389091923717693 ], [ 140.044017191204205, 39.492763859940851 ], [ 140.053608136844076, 39.558132226807217 ], [ 140.056538703567384, 39.567077371746826 ], [ 140.063199082483948, 39.633363189376233 ], [ 140.063998327953925, 39.657675634596707 ], [ 140.060002100603981, 39.69116258744755 ], [ 140.058670024820685, 39.725566991061427 ], [ 140.054673797470741, 39.739787477888498 ], [ 140.046148512457535, 39.749191348209621 ], [ 140.049611909494132, 39.762265021582898 ], [ 140.037889642600987, 39.764788011181253 ], [ 140.041086624480926, 39.786348104112612 ], [ 140.024302469611172, 39.823504860015603 ], [ 140.003788502548133, 39.850110932143672 ], [ 139.965691135145335, 39.881533620777681 ], [ 139.94917339543224, 39.89024940302653 ], [ 139.972351514061899, 39.920525278206739 ], [ 140.0147115239713, 39.910892045194856 ], [ 140.03495907587768, 39.882451071540714 ], [ 140.047214173084171, 39.882680434231474 ], [ 140.054407382314082, 39.920066552825219 ], [ 140.044283606360892, 39.936121941178364 ], [ 140.064264743110584, 39.959516935635804 ], [ 140.071990782653813, 39.987728546599186 ], [ 140.073855688750456, 40.040252602783042 ], [ 140.067461724990551, 40.05768416728074 ], [ 140.056272288410725, 40.069152301818697 ], [ 140.01737567553792, 40.082455337882735 ], [ 139.988070008305016, 40.095758373946765 ], [ 139.979011892978463, 40.078785534830587 ], [ 139.980343968761787, 40.070299115272491 ], [ 139.963293398735374, 40.062500783786682 ], [ 139.951304716685542, 40.037500250493927 ], [ 139.933454901189123, 40.031078095152672 ], [ 139.928393013212514, 40.023050400976103 ], [ 139.942513016515647, 40.006306924550678 ], [ 139.931323579935821, 39.987728546599186 ], [ 139.92173263429595, 39.956535220655937 ], [ 139.948107734805575, 39.941167920375065 ], [ 139.95929717138543, 39.906304791379668 ], [ 139.945443583238955, 39.891625579171084 ], [ 139.927860182899195, 39.898735822584619 ], [ 139.90148508238957, 39.90263498832752 ], [ 139.864719790770096, 39.897359646440066 ], [ 139.850333372310303, 39.879010631179327 ], [ 139.860190733106833, 39.866166320496816 ], [ 139.838078275103811, 39.862955242826182 ], [ 139.825556762740661, 39.86731313395061 ], [ 139.819695629294074, 39.85790926362948 ], [ 139.7906563772178, 39.86708377125985 ], [ 139.771208070781427, 39.864331418970735 ], [ 139.756022406851628, 39.856303724794166 ], [ 139.741902403548494, 39.868230584713643 ], [ 139.736307685258566, 39.879698719251607 ], [ 139.734975609475271, 39.904699252544354 ], [ 139.716326548508874, 39.910433319813336 ], [ 139.701940130049081, 39.941397283065825 ], [ 139.719257115232153, 39.945755174190253 ], [ 139.720855606172137, 39.956305857965177 ], [ 139.701407299735735, 39.961581199852638 ], [ 139.701140884579075, 39.975572323988949 ], [ 139.693947675349193, 39.97947148973185 ], [ 139.695812581445807, 40.000343494590936 ], [ 139.708866924122304, 40.001490308044737 ], [ 139.723786172895416, 39.981306391257931 ], [ 139.765613352491499, 39.975113598607429 ], [ 139.7829303376746, 39.967773992503133 ], [ 139.798648831917689, 39.956535220655937 ], [ 139.814900156474124, 39.958828847563524 ], [ 139.850599787466962, 39.973737422462875 ], [ 139.875109981879945, 39.990939624269814 ], [ 139.907079800679497, 40.021215499450022 ], [ 139.922265464609268, 40.039105789329241 ], [ 139.947308489335597, 40.075574457159959 ], [ 139.967289626085318, 40.112960575753704 ], [ 139.985672271895055, 40.157915663142504 ], [ 139.993931141751602, 40.187044724868926 ], [ 139.996062463004904, 40.213421434306227 ], [ 140.003788502548133, 40.217549962739895 ], [ 140.02217114835787, 40.292551562618151 ], [ 140.025368130237808, 40.320533810890772 ], [ 140.02483529992449, 40.354479489123136 ], [ 140.013113033031317, 40.372369779002355 ], [ 139.981676044545111, 40.385214089684865 ], [ 139.979278308135122, 40.396452861532069 ], [ 139.946509243865592, 40.412966975266727 ], [ 139.936385467912402, 40.427875550166078 ], [ 139.96196132295205, 40.432004078599739 ], [ 139.981676044545111, 40.425352560567724 ], [ 140.000058690354848, 40.431545353218226 ], [ 140.019773411947881, 40.418701042535709 ], [ 140.025900960551155, 40.440719860848588 ], [ 140.032827754624378, 40.452417358077312 ], [ 140.071724367497154, 40.466179119522863 ], [ 140.07252361296716, 40.465949756832103 ], [ 140.099431543790104, 40.453564171531106 ], [ 140.110354565213271, 40.434527068198094 ], [ 140.174827033125695, 40.435444518961127 ], [ 140.226777988674968, 40.428793000929112 ], [ 140.251288183087951, 40.437738145868721 ], [ 140.295246683937336, 40.443701575828456 ], [ 140.316293481313693, 40.434297705507333 ], [ 140.338672354473374, 40.43659133241492 ], [ 140.347197639486581, 40.454022896912619 ], [ 140.364248209513022, 40.475353627153225 ], [ 140.37490481577953, 40.473748088317919 ], [ 140.394619537372591, 40.482463870566761 ], [ 140.414067843808965, 40.473518725627159 ], [ 140.430585583522088, 40.479711518277654 ], [ 140.444172756511875, 40.447142016189844 ], [ 140.463354647791618, 40.453564171531106 ], [ 140.484667860324635, 40.447142016189844 ], [ 140.489196917987897, 40.437967508559481 ], [ 140.509977300207623, 40.426958099403038 ], [ 140.532356173367305, 40.428334275547599 ], [ 140.533155418837282, 40.417554229081915 ], [ 140.543279194790472, 40.40104011534725 ], [ 140.553136555587002, 40.399205213821176 ], [ 140.563793161853511, 40.407920996070025 ], [ 140.557665613250265, 40.416636778318875 ], [ 140.59416448971308, 40.433609617435053 ], [ 140.613346380992823, 40.422141482897096 ], [ 140.625068647885996, 40.420994669443303 ], [ 140.647181105889018, 40.40104011534725 ], [ 140.657571296998867, 40.40104011534725 ], [ 140.691139606738375, 40.416636778318875 ], [ 140.697533570498308, 40.425352560567724 ], [ 140.736163768214396, 40.427187462093798 ], [ 140.739094334937704, 40.437050057796441 ], [ 140.755878489807458, 40.436132607033407 ], [ 140.77266264467724, 40.451041181932752 ], [ 140.79051246017363, 40.454252259603379 ], [ 140.808628690826708, 40.447371378880604 ], [ 140.814489824273295, 40.480858331731447 ], [ 140.8208837880332, 40.489115388598776 ], [ 140.852054361362775, 40.504712051570408 ], [ 140.883224934692322, 40.507923129241036 ], [ 140.875232479992434, 40.494620093177005 ], [ 140.874966064835775, 40.416636778318875 ], [ 140.907735129105305, 40.422141482897096 ], [ 140.929314756795009, 40.418930405226462 ], [ 140.950627969328025, 40.424664472495451 ], [ 140.983130618440924, 40.425581923258484 ], [ 140.989524582200829, 40.381773649323478 ], [ 140.996717791430711, 40.374204680528422 ], [ 140.997517036900717, 40.354250126432376 ], [ 140.990590242827466, 40.345075618802007 ], [ 140.976470239524332, 40.343928805348213 ], [ 140.961284575594561, 40.313882292858757 ], [ 140.961018160437902, 40.303560971774594 ], [ 140.947963817761405, 40.286129407276896 ], [ 140.957821178557936, 40.282000878843228 ], [ 140.950627969328025, 40.259293972458067 ], [ 140.958354008871254, 40.245532211012517 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1459, "NAME_1": "Aomori", "VARNAME_1": "", "HASC_1": "JP.AO", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.354534765760661, 41.52354112392274 ], [ 139.376647223763683, 41.52308239854122 ], [ 139.384906093620231, 41.508632549023389 ], [ 139.373450241883717, 41.501522305609853 ], [ 139.339349101830862, 41.495329512959358 ], [ 139.3348200441676, 41.515054704364644 ], [ 139.342013253397511, 41.525376025448807 ], [ 139.354534765760661, 41.52354112392274 ] ] ], [ [ [ 141.684868141090959, 40.448288829643644 ], [ 141.670748137787825, 40.43269216667202 ], [ 141.638511903831613, 40.418930405226462 ], [ 141.624924730841826, 40.417783591772675 ], [ 141.599348875802178, 40.409297172214579 ], [ 141.584696042185726, 40.392553695789161 ], [ 141.584696042185726, 40.370993602857794 ], [ 141.566846226689307, 40.358608017556797 ], [ 141.539405465553045, 40.344387530729733 ], [ 141.516760177236677, 40.352644587597055 ], [ 141.509300552850135, 40.359754831010591 ], [ 141.476265073423917, 40.374204680528422 ], [ 141.441897518214404, 40.370764240167034 ], [ 141.41232543582484, 40.354938214504656 ], [ 141.396873356738382, 40.358149292175284 ], [ 141.385151089845209, 40.339341551533025 ], [ 141.354513346828981, 40.328102779685821 ], [ 141.339860513212528, 40.347369245709601 ], [ 141.337995607115886, 40.358608017556797 ], [ 141.320145791619467, 40.369846789404001 ], [ 141.301496730653071, 40.362736545990465 ], [ 141.28897521828992, 40.345304981492767 ], [ 141.267928420913535, 40.347139883018841 ], [ 141.227166901944116, 40.320304448200012 ], [ 141.220506523027552, 40.312047391332683 ], [ 141.200791801434491, 40.304937147919148 ], [ 141.179745004058134, 40.307001412135982 ], [ 141.143246127595319, 40.297368179124092 ], [ 141.105948005662498, 40.277872350409567 ], [ 141.113141214892408, 40.258605884385787 ], [ 141.103816684409196, 40.249890102136945 ], [ 141.080105735466191, 40.248972651373904 ], [ 141.060657429029817, 40.230394273422405 ], [ 141.050800068233286, 40.230164910731652 ], [ 141.02948685570027, 40.218696776193696 ], [ 141.00923930379389, 40.215256335832308 ], [ 140.9817985426576, 40.219384864265969 ], [ 140.958354008871254, 40.245532211012517 ], [ 140.950627969328025, 40.259293972458067 ], [ 140.957821178557936, 40.282000878843228 ], [ 140.947963817761405, 40.286129407276896 ], [ 140.961018160437902, 40.303560971774594 ], [ 140.961284575594561, 40.313882292858757 ], [ 140.976470239524332, 40.343928805348213 ], [ 140.990590242827466, 40.345075618802007 ], [ 140.997517036900717, 40.354250126432376 ], [ 140.996717791430711, 40.374204680528422 ], [ 140.989524582200829, 40.381773649323478 ], [ 140.983130618440924, 40.425581923258484 ], [ 140.950627969328025, 40.424664472495451 ], [ 140.929314756795009, 40.418930405226462 ], [ 140.907735129105305, 40.422141482897096 ], [ 140.874966064835775, 40.416636778318875 ], [ 140.875232479992434, 40.494620093177005 ], [ 140.883224934692322, 40.507923129241036 ], [ 140.852054361362775, 40.504712051570408 ], [ 140.8208837880332, 40.489115388598776 ], [ 140.814489824273295, 40.480858331731447 ], [ 140.808628690826708, 40.447371378880604 ], [ 140.79051246017363, 40.454252259603379 ], [ 140.77266264467724, 40.451041181932752 ], [ 140.755878489807458, 40.436132607033407 ], [ 140.739094334937704, 40.437050057796441 ], [ 140.736163768214396, 40.427187462093798 ], [ 140.697533570498308, 40.425352560567724 ], [ 140.691139606738375, 40.416636778318875 ], [ 140.657571296998867, 40.40104011534725 ], [ 140.647181105889018, 40.40104011534725 ], [ 140.625068647885996, 40.420994669443303 ], [ 140.613346380992823, 40.422141482897096 ], [ 140.59416448971308, 40.433609617435053 ], [ 140.557665613250265, 40.416636778318875 ], [ 140.563793161853511, 40.407920996070025 ], [ 140.553136555587002, 40.399205213821176 ], [ 140.543279194790472, 40.40104011534725 ], [ 140.533155418837282, 40.417554229081915 ], [ 140.532356173367305, 40.428334275547599 ], [ 140.509977300207623, 40.426958099403038 ], [ 140.489196917987897, 40.437967508559481 ], [ 140.484667860324635, 40.447142016189844 ], [ 140.463354647791618, 40.453564171531106 ], [ 140.444172756511875, 40.447142016189844 ], [ 140.430585583522088, 40.479711518277654 ], [ 140.414067843808965, 40.473518725627159 ], [ 140.394619537372591, 40.482463870566761 ], [ 140.37490481577953, 40.473748088317919 ], [ 140.364248209513022, 40.475353627153225 ], [ 140.347197639486581, 40.454022896912619 ], [ 140.338672354473374, 40.43659133241492 ], [ 140.316293481313693, 40.434297705507333 ], [ 140.295246683937336, 40.443701575828456 ], [ 140.251288183087951, 40.437738145868721 ], [ 140.226777988674968, 40.428793000929112 ], [ 140.174827033125695, 40.435444518961127 ], [ 140.110354565213271, 40.434527068198094 ], [ 140.099431543790104, 40.453564171531106 ], [ 140.07252361296716, 40.465949756832103 ], [ 140.071724367497154, 40.466179119522863 ], [ 140.032827754624378, 40.452417358077312 ], [ 140.025900960551155, 40.440719860848588 ], [ 140.019773411947881, 40.418701042535709 ], [ 140.000058690354848, 40.431545353218226 ], [ 139.981676044545111, 40.425352560567724 ], [ 139.96196132295205, 40.432004078599739 ], [ 139.936385467912402, 40.427875550166078 ], [ 139.938250374009044, 40.447830104262124 ], [ 139.949706225745558, 40.498289896229146 ], [ 139.946775659022251, 40.529712584863155 ], [ 139.939848864949028, 40.552648853939075 ], [ 139.927860182899195, 40.575814485705756 ], [ 139.918002822102665, 40.585677081408399 ], [ 139.89882093082295, 40.581777915665498 ], [ 139.866851112023397, 40.585218356026886 ], [ 139.859657902793487, 40.614118055062541 ], [ 139.892426967063045, 40.632467070323273 ], [ 139.900952252076252, 40.64508201831503 ], [ 139.924396785862569, 40.644623292933517 ], [ 139.935852637599083, 40.65494461401768 ], [ 139.937717543695726, 40.66801828739095 ], [ 139.950239056058876, 40.670082551607777 ], [ 139.96462547451867, 40.683385587671815 ], [ 139.968355286711954, 40.697835437189646 ], [ 139.980876799075105, 40.704945680603181 ], [ 140.002722841921468, 40.739808809598578 ], [ 140.012846617874658, 40.741873073815412 ], [ 140.035758321347657, 40.757011011405517 ], [ 140.066396064363914, 40.766644244417407 ], [ 140.091172673933556, 40.75815782485931 ], [ 140.108756074273288, 40.743019887269206 ], [ 140.128737211023008, 40.740038172289331 ], [ 140.148718347772729, 40.748295229156668 ], [ 140.195341000188733, 40.778800467027637 ], [ 140.214522891468476, 40.782240907389024 ], [ 140.224380252265007, 40.778112378955363 ], [ 140.242762898074744, 40.784993259678139 ], [ 140.263809695451101, 40.808617616826339 ], [ 140.282192341260838, 40.840728393532622 ], [ 140.293648192997352, 40.868710641805244 ], [ 140.303771968950542, 40.91160146497721 ], [ 140.315760651000375, 40.947611407426407 ], [ 140.322687445073598, 41.033163691079579 ], [ 140.34213575151, 41.003117178590131 ], [ 140.359186321536413, 40.997841836702669 ], [ 140.363182548886357, 41.019172566943269 ], [ 140.374371985466212, 41.028805799955158 ], [ 140.411137277085686, 41.031099426862752 ], [ 140.401812746602474, 41.039356483730081 ], [ 140.349861791053229, 41.039127121039328 ], [ 140.338405939316715, 41.051971431721839 ], [ 140.324285936013581, 41.056329322846267 ], [ 140.320556123820296, 41.090733726460144 ], [ 140.297378005190637, 41.115046171680618 ], [ 140.283790832200822, 41.122385777784913 ], [ 140.256616486221219, 41.120780238949592 ], [ 140.250755352774632, 41.13339518694135 ], [ 140.2789953593809, 41.139129254210332 ], [ 140.304304799263861, 41.131330922724516 ], [ 140.321355369290302, 41.147615673768421 ], [ 140.328282163363525, 41.160001259069418 ], [ 140.336274618063413, 41.189818408868113 ], [ 140.330946314930145, 41.20174526878759 ], [ 140.332811221026788, 41.236837760473747 ], [ 140.340537260570017, 41.239131387381335 ], [ 140.345332733389938, 41.260920843003461 ], [ 140.362649718573039, 41.249911433847018 ], [ 140.39755010409587, 41.2343147708754 ], [ 140.404743313325781, 41.220323646739089 ], [ 140.426589356172144, 41.207938061438085 ], [ 140.432184074462043, 41.196011201518616 ], [ 140.472146347961484, 41.182020077382305 ], [ 140.483602199697998, 41.183625616217611 ], [ 140.507579563797663, 41.195781838827855 ], [ 140.521699567100768, 41.208855512201126 ], [ 140.527294285390695, 41.221011734811363 ], [ 140.539282967440528, 41.218259382522248 ], [ 140.548341082767081, 41.228351340915658 ], [ 140.582708637976594, 41.221011734811363 ], [ 140.607218832389577, 41.211607864490233 ], [ 140.618141853812745, 41.197158014972402 ], [ 140.630929781332554, 41.192341398466468 ], [ 140.643451293695733, 41.174451108587249 ], [ 140.633327517742543, 41.130642834652242 ], [ 140.631462611645901, 41.099449508708986 ], [ 140.63918865118913, 41.060916576661448 ], [ 140.644250539165711, 41.050136530195765 ], [ 140.652775824178917, 40.999906100919503 ], [ 140.67195771545866, 40.929950480237949 ], [ 140.679417339845202, 40.910454651523416 ], [ 140.688209040015096, 40.876508973291052 ], [ 140.704460364571531, 40.852425890761339 ], [ 140.73509810758776, 40.830636435139212 ], [ 140.752148677614173, 40.826737269396311 ], [ 140.766535096073994, 40.830636435139212 ], [ 140.790246045016971, 40.830636435139212 ], [ 140.815289069743301, 40.843710108512489 ], [ 140.840598509626261, 40.86802255373297 ], [ 140.848590964326149, 40.868481279114484 ], [ 140.864575873725926, 40.887977107829016 ], [ 140.860846061532641, 40.896922252768618 ], [ 140.874433234522456, 40.905867397708235 ], [ 140.872301913269155, 40.939813075940592 ], [ 140.852054361362775, 40.943024153611219 ], [ 140.863243797942602, 40.953574837386142 ], [ 140.868305685919211, 40.982015811040284 ], [ 140.880027952812384, 40.991190318670647 ], [ 140.880827198282361, 41.006786981642279 ], [ 140.898410598622121, 41.007016344333039 ], [ 140.925318529445065, 40.990960955979894 ], [ 140.951427214798031, 40.990731593289134 ], [ 140.963149481691204, 40.974676204935989 ], [ 140.983663448754243, 40.961831894253478 ], [ 140.990323827670807, 40.951739935860076 ], [ 140.980732882030935, 40.930638568310229 ], [ 141.01190345536051, 40.931097293691742 ], [ 141.04227478322008, 40.915041905338597 ], [ 141.064653656379761, 40.913436366503291 ], [ 141.080105735466191, 40.895546076624072 ], [ 141.082769887032839, 40.886830294375216 ], [ 141.104083099565855, 40.872151082166631 ], [ 141.133388766798788, 40.872839170238905 ], [ 141.150172921668542, 40.8801787763432 ], [ 141.177880097961491, 40.903803133491401 ], [ 141.19572991345791, 40.926280677185801 ], [ 141.218908032087569, 40.9661897853779 ], [ 141.230896714137401, 40.994401396341281 ], [ 141.239421999150608, 41.029493888027439 ], [ 141.247947284163814, 41.110000192483909 ], [ 141.260468796526993, 41.126743668909334 ], [ 141.271924648263479, 41.135459451158184 ], [ 141.278585027180043, 41.159313170997137 ], [ 141.264465023876937, 41.197616740353922 ], [ 141.250345020573803, 41.220782372120603 ], [ 141.23116312929406, 41.244406729268803 ], [ 141.188803119384659, 41.27789368211964 ], [ 141.160296697621732, 41.2781230448104 ], [ 141.134454427425425, 41.240278200835135 ], [ 141.153902733861827, 41.242342465051969 ], [ 141.1253963120989, 41.220323646739089 ], [ 141.112341969422403, 41.212984040634794 ], [ 141.099554041902593, 41.212984040634794 ], [ 141.072912526236308, 41.199681004570756 ], [ 141.05213214401661, 41.182249440073058 ], [ 141.031085346640225, 41.185919243125205 ], [ 141.014301191770471, 41.195781838827855 ], [ 140.978335145620974, 41.198534191116963 ], [ 140.956755517931299, 41.185460517743692 ], [ 140.947430987448087, 41.174451108587249 ], [ 140.909600035201947, 41.173763020514969 ], [ 140.890151728765574, 41.163212336740045 ], [ 140.87603172546244, 41.166882139792193 ], [ 140.832872470083032, 41.149450575294495 ], [ 140.814756239429954, 41.130642834652242 ], [ 140.782520005473771, 41.131101560033756 ], [ 140.768932832483955, 41.141193518427166 ], [ 140.766002265760648, 41.161377435213971 ], [ 140.768666417327296, 41.172386844370415 ], [ 140.763870944507346, 41.195323113446335 ], [ 140.777191702340502, 41.212295952562513 ], [ 140.784917741883731, 41.229956879750972 ], [ 140.778790193280486, 41.252663786136132 ], [ 140.784651326727044, 41.25633358918828 ], [ 140.79557434815024, 41.2792698582642 ], [ 140.799836990656843, 41.303811666175434 ], [ 140.805698124103429, 41.312986173805797 ], [ 140.800369820970161, 41.328353474086668 ], [ 140.816354730369937, 41.338674795170832 ], [ 140.827277751793133, 41.371014934567874 ], [ 140.826212091166468, 41.385923509467219 ], [ 140.833671715553038, 41.405878063563271 ], [ 140.852587191676093, 41.430419871474506 ], [ 140.866440779822568, 41.436612664125008 ], [ 140.866440779822568, 41.447392710590691 ], [ 140.878962292185719, 41.453814865931946 ], [ 140.884557010475646, 41.467347264686737 ], [ 140.897877768308774, 41.476980497698619 ], [ 140.909600035201947, 41.504733383280481 ], [ 140.898410598622121, 41.52239431046894 ], [ 140.916793244431858, 41.544871854163347 ], [ 140.924785699131746, 41.534779895769937 ], [ 140.952492875424667, 41.521935585087419 ], [ 140.980732882030935, 41.495329512959358 ], [ 141.001513264250661, 41.485925642638229 ], [ 141.0220272313137, 41.482714564967601 ], [ 141.063321580596437, 41.482714564967601 ], [ 141.101685363155894, 41.465053637779143 ], [ 141.114473290675733, 41.456337855530293 ], [ 141.134454427425425, 41.435236487980447 ], [ 141.141914051811995, 41.434548399908167 ], [ 141.159763867308413, 41.415281933884401 ], [ 141.166424246224977, 41.41344703235832 ], [ 141.191733686107966, 41.3877584109933 ], [ 141.213313313797642, 41.374455374929262 ], [ 141.238089923367284, 41.363904691154339 ], [ 141.271924648263479, 41.354271458142449 ], [ 141.310821261136255, 41.351060380471822 ], [ 141.342524664779148, 41.358399986576117 ], [ 141.387015995941852, 41.375372825692295 ], [ 141.410726944884857, 41.390740125973167 ], [ 141.452021294167594, 41.42308026537021 ], [ 141.463477145904108, 41.42353899075173 ], [ 141.461612239807465, 41.404731250109478 ], [ 141.453086954794259, 41.395327379788348 ], [ 141.461345824650806, 41.389134587137846 ], [ 141.456017521517538, 41.375602188383056 ], [ 141.446426575877695, 41.366198318061933 ], [ 141.428310345224588, 41.312986173805797 ], [ 141.404332981124952, 41.235002858947674 ], [ 141.403533735654946, 41.22055300942985 ], [ 141.390745808135136, 41.174909833968769 ], [ 141.388880902038494, 41.148303761840694 ], [ 141.395274865798399, 41.131560285415276 ], [ 141.393676374858416, 41.086605198026476 ], [ 141.388614486881835, 41.052200794412599 ], [ 141.384618259531891, 41.006557618951518 ], [ 141.38754882625517, 40.963437433088785 ], [ 141.387015995941852, 40.936601998269964 ], [ 141.396606941581723, 40.847150548873884 ], [ 141.400070338618349, 40.843710108512489 ], [ 141.412591850981499, 40.75746973678703 ], [ 141.430441666477918, 40.69026646839459 ], [ 141.439233366647784, 40.685449851888649 ], [ 141.437634875707801, 40.672146815824618 ], [ 141.451222048697616, 40.629714718034165 ], [ 141.466674127784074, 40.601044381689263 ], [ 141.485056773593811, 40.560905910806412 ], [ 141.500242437523582, 40.556548019681983 ], [ 141.531413010853157, 40.537969641730484 ], [ 141.529015274443168, 40.528336408718602 ], [ 141.553525468856151, 40.530630035626189 ], [ 141.56604698121933, 40.543244983617953 ], [ 141.582298305775765, 40.538657729802765 ], [ 141.582564720932425, 40.528336408718602 ], [ 141.61906359739524, 40.505858865024202 ], [ 141.637712658361636, 40.479940880968414 ], [ 141.684868141090959, 40.448288829643644 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1460, "NAME_1": "Chiba", "VARNAME_1": "Tiba|Tsiba", "HASC_1": "JP.CH", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.870703422329171, 35.718830146189092 ], [ 140.863243797942602, 35.701398581691393 ], [ 140.847258888542825, 35.696811327876212 ], [ 140.8382007732163, 35.711031814703283 ], [ 140.814489824273295, 35.712866716229357 ], [ 140.782253590317083, 35.70438029667126 ], [ 140.751882262457514, 35.693141524824064 ], [ 140.725240746791229, 35.694058975587097 ], [ 140.715649801151358, 35.701627944382153 ], [ 140.698332815968286, 35.701169219000633 ], [ 140.648513181672314, 35.685343193338255 ], [ 140.61894109928275, 35.66882907960359 ], [ 140.562194670913556, 35.631442961009839 ], [ 140.500119939411093, 35.58212998249661 ], [ 140.454030117308406, 35.532587641292629 ], [ 140.4225931288222, 35.487403191213069 ], [ 140.406341804265764, 35.454145601052986 ], [ 140.394619537372591, 35.417676933222275 ], [ 140.391422555492625, 35.393593850692554 ], [ 140.39248821611929, 35.345886411014646 ], [ 140.395951613155887, 35.332354012259856 ], [ 140.410604446772368, 35.319509701577338 ], [ 140.414334258965653, 35.303683675914954 ], [ 140.401279916289155, 35.277765691859166 ], [ 140.399415010192513, 35.257811137763113 ], [ 140.407141049735742, 35.249783443586544 ], [ 140.405542558795759, 35.236939132904027 ], [ 140.392221800962631, 35.209186247322165 ], [ 140.394086707059273, 35.20276409198091 ], [ 140.374638400622871, 35.179139734832717 ], [ 140.35732141543977, 35.183956351338658 ], [ 140.333876881653453, 35.165148610696406 ], [ 140.326417257266883, 35.145194056600353 ], [ 140.298443665817274, 35.151157486560095 ], [ 140.290184795960727, 35.136248911660743 ], [ 140.272601395620995, 35.138313175877578 ], [ 140.247824786051325, 35.133955284753156 ], [ 140.237168179784817, 35.116982445636971 ], [ 140.207596097395225, 35.113312642584823 ], [ 140.182286657512265, 35.117441171018491 ], [ 140.169765145149114, 35.123633963668986 ], [ 140.126339474613047, 35.119276072544565 ], [ 140.109288904586634, 35.107807938006601 ], [ 140.107157583333333, 35.090376373508903 ], [ 140.09783305285012, 35.084183580858408 ], [ 140.07252361296716, 35.055971969895026 ], [ 140.055206627784059, 35.059412410256414 ], [ 140.034426245564362, 35.050467265316804 ], [ 139.996861708474881, 35.027760358931644 ], [ 139.979278308135122, 35.009870069052425 ], [ 139.97181868374858, 34.987163162667272 ], [ 139.959830001698748, 34.964226893591352 ], [ 139.964891889675329, 34.950235769455041 ], [ 139.96196132295205, 34.940831899133912 ], [ 139.941447355889011, 34.916748816604198 ], [ 139.901218667232911, 34.90367514323092 ], [ 139.871913, 34.902298967086367 ], [ 139.867117527180056, 34.907115583592315 ], [ 139.843672993393739, 34.901840241704846 ], [ 139.824224686957336, 34.910097298572182 ], [ 139.825556762740661, 34.932574842266582 ], [ 139.810371098810862, 34.944272339495299 ], [ 139.78079901642127, 34.956199199414776 ], [ 139.759219388731594, 34.95803410094085 ], [ 139.753091840128349, 34.966291157808186 ], [ 139.754423915911644, 34.977988655036903 ], [ 139.773072976878069, 34.977759292346143 ], [ 139.785860904397879, 34.972483950458681 ], [ 139.819962044450733, 34.978447380418416 ], [ 139.829286574933917, 34.99083296571942 ], [ 139.850333372310303, 34.986016349213472 ], [ 139.85859224216685, 34.996567032988395 ], [ 139.85859224216685, 35.009411343670912 ], [ 139.852731108720263, 35.023402467807223 ], [ 139.843406578237051, 35.024090555879496 ], [ 139.823425441487359, 35.037622954634287 ], [ 139.832749971970543, 35.044733198047822 ], [ 139.821826950547376, 35.072486083629684 ], [ 139.838078275103811, 35.079366964352467 ], [ 139.842607332767074, 35.086477207765995 ], [ 139.825023932427314, 35.11285391720331 ], [ 139.83834469026047, 35.129597393628728 ], [ 139.827954499150621, 35.151157486560095 ], [ 139.819429214137415, 35.153680476158442 ], [ 139.816498647414107, 35.176158019852842 ], [ 139.824491102113996, 35.198176838165722 ], [ 139.847935635900342, 35.212626687683553 ], [ 139.870580924216682, 35.222718646076956 ], [ 139.868183187806721, 35.246113640534396 ], [ 139.847402805586995, 35.271343536517911 ], [ 139.850866202623621, 35.287169562180296 ], [ 139.840209596357113, 35.295197256356865 ], [ 139.798382416761029, 35.313546271617597 ], [ 139.813301665534141, 35.316298623906711 ], [ 139.816232232257448, 35.32386759270176 ], [ 139.83834469026047, 35.333271463022889 ], [ 139.823159026330671, 35.344510234870093 ], [ 139.851665448093627, 35.357354545552603 ], [ 139.839143935730448, 35.366987778564493 ], [ 139.846337144960359, 35.375474198122582 ], [ 139.882303191109855, 35.361712436677031 ], [ 139.889496400339738, 35.371804395070434 ], [ 139.899620176292927, 35.372033757761194 ], [ 139.905747724896173, 35.389465322258893 ], [ 139.896423194412989, 35.422952275109736 ], [ 139.903616403642872, 35.431668057358586 ], [ 139.920134143355966, 35.440154476916675 ], [ 139.948640565118893, 35.442218741133509 ], [ 139.951571131842201, 35.456668590651333 ], [ 139.96169490779539, 35.458732854868167 ], [ 139.966223965458653, 35.468824813261577 ], [ 139.982741705171748, 35.474100155149031 ], [ 139.98940208408834, 35.468595450570817 ], [ 140.007784729898077, 35.479604859727253 ], [ 140.025368130237808, 35.502541128803173 ], [ 140.060534930917328, 35.543138325067552 ], [ 140.09277116487354, 35.555294547677789 ], [ 140.08264738892035, 35.583506158641171 ], [ 140.082380973763691, 35.597497282777482 ], [ 140.013912278501323, 35.657360945065633 ], [ 139.986737932521692, 35.655296680848792 ], [ 139.984340196111731, 35.677315499161679 ], [ 139.975814911098524, 35.682820203739901 ], [ 139.962494153265368, 35.681214664904587 ], [ 139.952370377312178, 35.672269519964978 ], [ 139.941980186202329, 35.688783633699643 ], [ 139.929458673839179, 35.700710493619113 ], [ 139.916670746319369, 35.724564213458073 ], [ 139.894824703473006, 35.746583031770953 ], [ 139.888164324556442, 35.769978026228394 ], [ 139.892426967063045, 35.78121679807559 ], [ 139.874843566723285, 35.794290471448868 ], [ 139.892426967063045, 35.805299880605311 ], [ 139.895623948942983, 35.815621201689474 ], [ 139.892426967063045, 35.837410657311594 ], [ 139.903882818799531, 35.860117563696754 ], [ 139.896689609569648, 35.881907019318881 ], [ 139.878040548603224, 35.909889267591502 ], [ 139.85859224216685, 35.931908085904382 ], [ 139.849534126840297, 35.938100878554877 ], [ 139.825290347583973, 35.984432142088238 ], [ 139.818629968667409, 35.993147924337087 ], [ 139.819962044450733, 36.02571742642489 ], [ 139.816232232257448, 36.035809384818293 ], [ 139.793586943941108, 36.055993301605106 ], [ 139.782663922517912, 36.077782757227226 ], [ 139.779999770951292, 36.093838145580371 ], [ 139.789057886277817, 36.100260300921633 ], [ 139.801046568327649, 36.092691332126577 ], [ 139.818097138354091, 36.0582869285127 ], [ 139.839943181200454, 36.038561737107408 ], [ 139.859657902793487, 36.026634877187931 ], [ 139.873245075783302, 36.01287311574238 ], [ 139.892160551906386, 35.982597240562164 ], [ 139.912141688656078, 35.970670380642687 ], [ 139.937184713382408, 35.965165676064466 ], [ 139.938783204322363, 35.942458769679305 ], [ 139.967556041241977, 35.923192303655533 ], [ 140.000325105511507, 35.906907552611628 ], [ 140.01737567553792, 35.908283728756189 ], [ 140.048812664024155, 35.89039343887697 ], [ 140.070392291713858, 35.883053832772674 ], [ 140.093836825500176, 35.882136382009634 ], [ 140.125007398829723, 35.871356335543958 ], [ 140.154845896375974, 35.841539185745262 ], [ 140.187348545488845, 35.848420066468037 ], [ 140.206530436768588, 35.85851202486144 ], [ 140.217187043035096, 35.859429475624481 ], [ 140.237967425254794, 35.852548594901705 ], [ 140.249956107304627, 35.854154133737019 ], [ 140.280061020007537, 35.870438884780917 ], [ 140.320822538976955, 35.861035014459794 ], [ 140.332544805870128, 35.865851630965736 ], [ 140.350927451679865, 35.879384029720526 ], [ 140.364248209513022, 35.894980692692151 ], [ 140.404743313325781, 35.906219464539355 ], [ 140.425790110702138, 35.90346711225024 ], [ 140.454030117308406, 35.914476521406684 ], [ 140.466285214514897, 35.916540785623518 ], [ 140.485200690637953, 35.907825003374668 ], [ 140.52116673678745, 35.894980692692151 ], [ 140.531556927897299, 35.899338583816579 ], [ 140.567522974046796, 35.896586231527465 ], [ 140.588569771423181, 35.883971283535715 ], [ 140.604821095979617, 35.868603983254843 ], [ 140.625068647885996, 35.856447760644606 ], [ 140.649578842298979, 35.850254967994111 ], [ 140.666629412325392, 35.850254967994111 ], [ 140.687676209701777, 35.84566771417893 ], [ 140.709522252548112, 35.833282128877926 ], [ 140.719646028501302, 35.820667180886176 ], [ 140.727904898357849, 35.799565813336329 ], [ 140.744156222914285, 35.782592974220151 ], [ 140.7979720845602, 35.750711560204621 ], [ 140.870703422329171, 35.718830146189092 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1461, "NAME_1": "Ehime", "VARNAME_1": "", "HASC_1": "JP.EH", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.262829710551159, 33.185289864063051 ], [ 132.275884053227628, 33.171986827999021 ], [ 132.266825937901103, 33.168317024946873 ], [ 132.262829710551159, 33.185289864063051 ] ] ], [ [ [ 132.402964082955833, 33.206391231612898 ], [ 132.418416162042263, 33.195611185147214 ], [ 132.415485595318984, 33.188271579042919 ], [ 132.395238043412604, 33.187583490970646 ], [ 132.402964082955833, 33.206391231612898 ] ] ], [ [ [ 132.517789015477547, 33.240795635226775 ], [ 132.534306755190642, 33.227951324544264 ], [ 132.521252412514144, 33.217859366150861 ], [ 132.510595806247636, 33.227492599162744 ], [ 132.517789015477547, 33.240795635226775 ] ] ], [ [ [ 132.700283397791623, 33.926360717906007 ], [ 132.690692452151751, 33.911681505697416 ], [ 132.674707542751975, 33.900901459231733 ], [ 132.672576221498673, 33.893332490436677 ], [ 132.679503015571896, 33.875442200557458 ], [ 132.664317351642126, 33.872231122886831 ], [ 132.669112824462047, 33.894479303890478 ], [ 132.657656972725562, 33.903195086139327 ], [ 132.660587539448841, 33.910305329552862 ], [ 132.680302261041902, 33.91282831915121 ], [ 132.686163394488489, 33.921314738709299 ], [ 132.700283397791623, 33.926360717906007 ] ] ], [ [ [ 132.673641882125338, 33.956865955776976 ], [ 132.656591312098897, 33.950902525817234 ], [ 132.648598857399008, 33.960994484210644 ], [ 132.661653200075506, 33.974068157583915 ], [ 132.672842636655332, 33.969022178387213 ], [ 132.673641882125338, 33.956865955776976 ] ] ], [ [ [ 132.561214686013585, 33.994252074370721 ], [ 132.555619967723658, 33.978426048708343 ], [ 132.544164115987172, 33.968792815696453 ], [ 132.535372415817278, 33.987600556338705 ], [ 132.561214686013585, 33.994252074370721 ] ] ], [ [ [ 133.368186195545491, 34.006637659671725 ], [ 133.369784686485474, 33.995857613206041 ], [ 133.350336380049072, 33.997004426659835 ], [ 133.354599022555675, 34.005261483527164 ], [ 133.368186195545491, 34.006637659671725 ] ] ], [ [ [ 132.649664518025673, 34.009619374651592 ], [ 132.641139233012439, 34.00342658200109 ], [ 132.644869045205724, 33.98140776368821 ], [ 132.631814702529255, 33.976361784491509 ], [ 132.642471308795763, 33.962600023045958 ], [ 132.632880363155891, 33.953884240797109 ], [ 132.612899226406199, 33.956177867704696 ], [ 132.600910544356367, 33.942645468949905 ], [ 132.590520353246518, 33.951590613889515 ], [ 132.585991295583227, 33.969480903768734 ], [ 132.606505262646266, 33.986683105575672 ], [ 132.622223756889383, 33.992417172844654 ], [ 132.632880363155891, 34.005261483527164 ], [ 132.649664518025673, 34.009619374651592 ] ] ], [ [ [ 133.597303230275571, 34.041271425976362 ], [ 133.614087385145325, 34.029803291438398 ], [ 133.625010406568521, 34.031867555655232 ], [ 133.640196070498291, 34.023839861478663 ], [ 133.662042113344654, 34.024298586860176 ], [ 133.680158343997732, 34.01283045232222 ], [ 133.692946271517542, 34.010078100033112 ], [ 133.680158343997732, 33.991270359390853 ], [ 133.67802702274443, 33.98140776368821 ], [ 133.691880610890905, 33.960765121519884 ], [ 133.695077592770843, 33.941269292805352 ], [ 133.687617968384302, 33.931406697102702 ], [ 133.691880610890905, 33.916727484894118 ], [ 133.678826268214408, 33.901130821922493 ], [ 133.68069117431105, 33.89080950083833 ], [ 133.663107773971319, 33.878423915537333 ], [ 133.642593806908252, 33.877965190155813 ], [ 133.633535691581727, 33.871543034814557 ], [ 133.609558327482063, 33.878423915537333 ], [ 133.585580963382398, 33.864432791401022 ], [ 133.559738693186091, 33.878653278228093 ], [ 133.540290386749717, 33.869249407906963 ], [ 133.529100950169862, 33.851359118027744 ], [ 133.510718304360125, 33.843560786541936 ], [ 133.510185474046807, 33.833010102767012 ], [ 133.500061698093617, 33.826129222044237 ], [ 133.473420182427333, 33.833239465457773 ], [ 133.440384703001115, 33.830945838550178 ], [ 133.420403566251423, 33.83667990581916 ], [ 133.406283562948289, 33.833239465457773 ], [ 133.395094126368434, 33.82291814437361 ], [ 133.365522043978842, 33.828881574333344 ], [ 133.354599022555675, 33.828422848951831 ], [ 133.32822392204605, 33.811450009835646 ], [ 133.317567315779542, 33.812596823289446 ], [ 133.290126554643251, 33.826129222044237 ], [ 133.279736363533402, 33.827734760879551 ], [ 133.269879002736872, 33.820395154775255 ], [ 133.258955981313704, 33.789660554213526 ], [ 133.223522765477526, 33.777045606221769 ], [ 133.206205780294454, 33.7914954557396 ], [ 133.196348419497923, 33.79080736766732 ], [ 133.183027661664767, 33.761448943250144 ], [ 133.16437860069837, 33.749751446021428 ], [ 133.163046524915046, 33.727961990399301 ], [ 133.142532557852007, 33.711218513973883 ], [ 133.144131048791991, 33.699750379435919 ], [ 133.124949157512276, 33.689887783733276 ], [ 133.122018590788969, 33.666722151966596 ], [ 133.111095569365801, 33.654565929356359 ], [ 133.079924996036226, 33.650437400922698 ], [ 133.072465371649685, 33.632776473734239 ], [ 133.074330277746327, 33.613051282328946 ], [ 133.082056317289528, 33.605941038915411 ], [ 133.058345368346551, 33.5919499147791 ], [ 133.048754422706679, 33.572224723373807 ], [ 133.063407256323131, 33.56006850076357 ], [ 133.065272162419774, 33.538049682450691 ], [ 133.047155931766696, 33.526352185221974 ], [ 133.036765740656847, 33.508691258033515 ], [ 133.018116679690451, 33.488966066628223 ], [ 133.017583849377104, 33.477497932090266 ], [ 133.000000449037373, 33.472222590202804 ], [ 132.956841193657965, 33.463277445263195 ], [ 132.946184587391457, 33.468552787150657 ], [ 132.924338544545094, 33.464653621407749 ], [ 132.896364953095514, 33.469011512532177 ], [ 132.873719664779145, 33.467635336387616 ], [ 132.846545318799542, 33.474286854419631 ], [ 132.826031351736503, 33.46947023791369 ], [ 132.809513612023409, 33.456855289921933 ], [ 132.82709701236314, 33.443322891167142 ], [ 132.827629842676487, 33.422450886308056 ], [ 132.836421542846352, 33.416487456348321 ], [ 132.835089467063028, 33.403184420284283 ], [ 132.842815506606257, 33.394927363416954 ], [ 132.852672867402788, 33.394927363416954 ], [ 132.864395134295961, 33.364192762855225 ], [ 132.887040422612301, 33.357999970204723 ], [ 132.90489023810872, 33.333228799602729 ], [ 132.898496274348815, 33.308916354382255 ], [ 132.875051740562469, 33.301118022896446 ], [ 132.857734755379397, 33.289420525667722 ], [ 132.82709701236314, 33.279099204583559 ], [ 132.796459269346911, 33.271530235788511 ], [ 132.781007190260482, 33.249511417475624 ], [ 132.773281150717253, 33.220382355749209 ], [ 132.771949074933929, 33.200886527034676 ], [ 132.750103032087566, 33.199510350890122 ], [ 132.728256989241231, 33.164876584585485 ], [ 132.69841849169498, 33.134600709405269 ], [ 132.664050936485467, 33.152032273902968 ], [ 132.65818980303888, 33.160289330770297 ], [ 132.640872817855779, 33.17084001454522 ], [ 132.63527809956588, 33.182308149083184 ], [ 132.624887908456003, 33.179097071412556 ], [ 132.61796111438278, 33.166711486111559 ], [ 132.632880363155891, 33.140105413983491 ], [ 132.631548287372595, 33.129325367517808 ], [ 132.640872817855779, 33.124279388321106 ], [ 132.655259236315601, 33.107765274586441 ], [ 132.665915842582109, 33.105471647678854 ], [ 132.672309806342014, 33.082764741293694 ], [ 132.666981503208746, 33.061204648362327 ], [ 132.660321124292182, 33.053406316876519 ], [ 132.67577320337864, 33.040103280812481 ], [ 132.68083509135522, 33.028176420893004 ], [ 132.679236600415237, 33.007533778724678 ], [ 132.686163394488489, 32.999964809929622 ], [ 132.688827546055109, 32.963954867480432 ], [ 132.685364149018483, 32.943082862621345 ], [ 132.664850181955444, 32.938724971496924 ], [ 132.662186030388824, 32.922669583143779 ], [ 132.643004139109081, 32.92679811157744 ], [ 132.61529696281616, 32.919229142782385 ], [ 132.608103753586249, 32.914641888967203 ], [ 132.592385259343132, 32.923357671216053 ], [ 132.585991295583227, 32.932990904227943 ], [ 132.591053183559836, 32.941018598404511 ], [ 132.513259957814256, 32.949734380653361 ], [ 132.518055430634206, 32.932073453464902 ], [ 132.497541463571167, 32.918770417400872 ], [ 132.500738445451105, 32.915100614348724 ], [ 132.526847130804072, 32.920375956236185 ], [ 132.517522600320859, 32.903632479810767 ], [ 132.476761081351441, 32.903632479810767 ], [ 132.471166363061513, 32.935055168444777 ], [ 132.495410142317837, 32.943541588002866 ], [ 132.501004860607765, 32.956844624066896 ], [ 132.481290139014732, 32.962578691335878 ], [ 132.484220705738011, 32.980239618524337 ], [ 132.497008633257821, 32.987808587319385 ], [ 132.50180410607777, 32.969230209367893 ], [ 132.526580715647412, 32.959826339046764 ], [ 132.530576942997357, 32.973129375110801 ], [ 132.511128636560954, 32.976569815472189 ], [ 132.50207052123443, 32.991707753062293 ], [ 132.501537690921111, 33.008909954869232 ], [ 132.491147499811234, 33.015790835592007 ], [ 132.483421460268033, 33.033451762780466 ], [ 132.466104475084933, 33.049507151133611 ], [ 132.443192771611933, 33.046984161535264 ], [ 132.418149746885604, 33.05776420800094 ], [ 132.425342956115514, 33.067168078322069 ], [ 132.434667486598698, 33.054553130330312 ], [ 132.455980699131743, 33.056388031856386 ], [ 132.460776171951665, 33.062122099125368 ], [ 132.478892402604743, 33.064415726032962 ], [ 132.478359572291424, 33.078406850169273 ], [ 132.463973153831631, 33.09010434739799 ], [ 132.47436334494148, 33.107306549204928 ], [ 132.46157541742167, 33.121756398722752 ], [ 132.491413914967893, 33.120150859887445 ], [ 132.499406369667781, 33.123361937558073 ], [ 132.497541463571167, 33.137353061694384 ], [ 132.473031269158156, 33.135976885549823 ], [ 132.454648623348419, 33.141710952818805 ], [ 132.433601825972062, 33.15845442924423 ], [ 132.433601825972062, 33.168775750328393 ], [ 132.46423956898829, 33.171528102617501 ], [ 132.425342956115514, 33.205015055468344 ], [ 132.433601825972062, 33.209143583902005 ], [ 132.44692258380519, 33.200198438962403 ], [ 132.457845605228385, 33.186207314826092 ], [ 132.477293911664788, 33.169922563782187 ], [ 132.488749763401273, 33.165105947276246 ], [ 132.510329391090977, 33.185748589444572 ], [ 132.503669012174413, 33.20203334048847 ], [ 132.512460712344279, 33.213501475026433 ], [ 132.540967134107206, 33.216253827315541 ], [ 132.551623740373714, 33.222217257275283 ], [ 132.546828267553792, 33.232767941050206 ], [ 132.528712036900714, 33.245612251732723 ], [ 132.541233549263865, 33.266025531210289 ], [ 132.512727127500938, 33.258685925105993 ], [ 132.501271275764424, 33.269465971571677 ], [ 132.488483348244614, 33.269465971571677 ], [ 132.48182296932805, 33.287814986832409 ], [ 132.508464484994334, 33.306164002093148 ], [ 132.520453167044167, 33.305017188639354 ], [ 132.526314300490753, 33.312356794743643 ], [ 132.510329391090977, 33.317861499321864 ], [ 132.49727504841448, 33.31212743205289 ], [ 132.487417687617977, 33.317173411249584 ], [ 132.467436550868257, 33.318090862012625 ], [ 132.455447868818425, 33.308916354382255 ], [ 132.43893012910533, 33.31189806936213 ], [ 132.430671259248754, 33.318778950084905 ], [ 132.422678804548895, 33.303641012494793 ], [ 132.400832761702532, 33.308686991691502 ], [ 132.399234270762548, 33.31579723510503 ], [ 132.369395773216297, 33.32474238004464 ], [ 132.376855397602867, 33.337816053417917 ], [ 132.391774646375978, 33.340339043016264 ], [ 132.39390596762928, 33.34721992373904 ], [ 132.408558801245761, 33.353412716389542 ], [ 132.412288613439017, 33.374284721248628 ], [ 132.390708985749342, 33.365339576309019 ], [ 132.379253134012828, 33.388505208075699 ], [ 132.394971628255945, 33.396074176870748 ], [ 132.39390596762928, 33.410982751770099 ], [ 132.384048606832749, 33.418322357874388 ], [ 132.404296158739129, 33.431166668556905 ], [ 132.414686349849006, 33.443552253857902 ], [ 132.41415351953566, 33.458919554138767 ], [ 132.39390596762928, 33.457543377994213 ], [ 132.390708985749342, 33.468552787150657 ], [ 132.377921058229504, 33.462589357190915 ], [ 132.366198791336359, 33.477727294781019 ], [ 132.353410863816521, 33.473598766347358 ], [ 132.324371611740276, 33.472451952893564 ], [ 132.317977647980371, 33.45639656454042 ], [ 132.305722550773879, 33.473369403656598 ], [ 132.286540659494136, 33.461901269118641 ], [ 132.281212356360896, 33.44722205691005 ], [ 132.254570840694612, 33.441029264259555 ], [ 132.237253855511511, 33.425432601287923 ], [ 132.221002530955076, 33.42474451321565 ], [ 132.203152715458657, 33.414423192131487 ], [ 132.181839502925641, 33.411441477151612 ], [ 132.166653838995842, 33.396532902252268 ], [ 132.153599496319373, 33.388963933457219 ], [ 132.145607041619485, 33.375890260083942 ], [ 132.12429382908644, 33.365568938999779 ], [ 132.107776089373345, 33.362128498638391 ], [ 132.103779862023401, 33.373596633176348 ], [ 132.120031186579837, 33.381394964662164 ], [ 132.115502128916575, 33.390798834983286 ], [ 132.094455331540189, 33.387587757312659 ], [ 132.073408534163832, 33.374514083939388 ], [ 132.065416079463944, 33.374743446630148 ], [ 132.047832679124184, 33.365798301690539 ], [ 132.045168527557564, 33.355935705987889 ], [ 132.031314939411089, 33.358688058277004 ], [ 132.053160982257452, 33.375890260083942 ], [ 132.077937591827094, 33.387817120003419 ], [ 132.083265894960363, 33.397220990324548 ], [ 132.107509674216686, 33.408230399480985 ], [ 132.122695338146457, 33.420615984781982 ], [ 132.148271193186105, 33.41511128020376 ], [ 132.155730817572675, 33.406854223336431 ], [ 132.165588178369205, 33.411212114460859 ], [ 132.16718666930916, 33.421304072854262 ], [ 132.148004778029446, 33.43414838353678 ], [ 132.157595723669317, 33.438965000042721 ], [ 132.170383651189127, 33.426350052050964 ], [ 132.171715726972451, 33.444240341930183 ], [ 132.181306672612294, 33.448827595745364 ], [ 132.193561769818785, 33.442176077713349 ], [ 132.200488563892037, 33.455249751086626 ], [ 132.209813094375221, 33.445845880765496 ], [ 132.223933097678355, 33.444240341930183 ], [ 132.225798003774997, 33.458231466066493 ], [ 132.239918007078131, 33.464424258716988 ], [ 132.259099898357874, 33.449515683817644 ], [ 132.264694616647773, 33.468323424459896 ], [ 132.295065944507371, 33.486672439720635 ], [ 132.30545613561722, 33.486672439720635 ], [ 132.332896896753482, 33.503874641527574 ], [ 132.35367727897318, 33.510526159559589 ], [ 132.384847852302755, 33.530480713655635 ], [ 132.422412389392207, 33.547453552771813 ], [ 132.442127110985268, 33.573600899518368 ], [ 132.457579190071726, 33.590115013253026 ], [ 132.45677994460172, 33.595160992449728 ], [ 132.474629760098139, 33.607317215059965 ], [ 132.482089384484709, 33.617867898834888 ], [ 132.511128636560954, 33.628418582609811 ], [ 132.533507509720636, 33.638969266384734 ], [ 132.579330916666663, 33.651584214376491 ], [ 132.60037771404302, 33.662134898151415 ], [ 132.617161868912802, 33.677043473050759 ], [ 132.647533196772372, 33.69218141064087 ], [ 132.659255463665517, 33.702961457106554 ], [ 132.674707542751975, 33.730484979997655 ], [ 132.6781709397886, 33.744705466824726 ], [ 132.693356603718371, 33.752733161001295 ], [ 132.700549812948282, 33.761219580559384 ], [ 132.698951322008298, 33.778651145057083 ], [ 132.690159621838433, 33.788972466141246 ], [ 132.697086415911656, 33.802963590277557 ], [ 132.689626791525086, 33.819477704012222 ], [ 132.701615473574918, 33.850900392646231 ], [ 132.713071325311432, 33.8589280868228 ], [ 132.707476607021505, 33.874295387103665 ], [ 132.698684906851639, 33.877277102083539 ], [ 132.711739249528108, 33.906406163809955 ], [ 132.733318877217812, 33.902965723448567 ], [ 132.754898504907516, 33.910993417625136 ], [ 132.757296241317476, 33.925213904452207 ], [ 132.768219262740644, 33.946085909311293 ], [ 132.771949074933929, 33.962141297664438 ], [ 132.769284923367309, 33.974985608346955 ], [ 132.775146056813895, 33.988976732483266 ], [ 132.770883414307292, 33.996316338587555 ], [ 132.781806435730459, 34.006178934290205 ], [ 132.797791345130236, 34.009390011960832 ], [ 132.818838142506593, 34.024986674932457 ], [ 132.853205697716106, 34.044023778265469 ], [ 132.858001170536056, 34.055033187421913 ], [ 132.886774007455642, 34.05870299047406 ], [ 132.90009476528877, 34.06718941003215 ], [ 132.919276656568513, 34.065354508506076 ], [ 132.924871374858441, 34.088978865654269 ], [ 132.931798168931664, 34.093566119469457 ], [ 132.926469865798424, 34.109392145131835 ], [ 132.912083447338603, 34.112832585493223 ], [ 132.898229859192156, 34.109162782441082 ], [ 132.895832122782167, 34.120630916979039 ], [ 132.916346089845206, 34.120172191597518 ], [ 132.936593641751585, 34.127741160392574 ], [ 132.946184587391457, 34.137145030713704 ], [ 132.953644211778027, 34.123841994649666 ], [ 132.982417048697613, 34.10274062709982 ], [ 133.004795921857294, 34.07131793846581 ], [ 133.019448755473746, 34.062831518907721 ], [ 133.025576304076992, 34.050216570915964 ], [ 133.037564986126824, 34.038519073687247 ], [ 133.049553668176657, 34.010307462723866 ], [ 133.057546122876545, 34.000674229711983 ], [ 133.067669898829735, 33.975214971037715 ], [ 133.102303869195907, 33.941498655496112 ], [ 133.107632172329176, 33.947462085455847 ], [ 133.127080478765578, 33.940351842042318 ], [ 133.127879724235555, 33.920397287946265 ], [ 133.18729030417137, 33.944251007785219 ], [ 133.234179371744062, 33.952049339271035 ], [ 133.251496356927134, 33.962829385736711 ], [ 133.248565790203855, 33.975214971037715 ], [ 133.256025414590397, 33.98071967561593 ], [ 133.28266693025671, 33.986683105575672 ], [ 133.286663157606654, 33.978655411399103 ], [ 133.310906936862949, 33.984618841358838 ], [ 133.321829958286145, 33.994710799752241 ], [ 133.328756752359368, 33.9898941832463 ], [ 133.346073737542469, 33.991270359390853 ], [ 133.356463928652317, 33.979343499471376 ], [ 133.387101671668546, 33.985306929431118 ], [ 133.392696389958473, 33.99058227131858 ], [ 133.413743187334831, 33.986224380194152 ], [ 133.429994511891266, 33.987371193647945 ], [ 133.445180175821065, 33.979802224852897 ], [ 133.45423829114759, 33.983013302523524 ], [ 133.465960558040763, 33.974526882965435 ], [ 133.491003582767064, 33.969251541077973 ], [ 133.519776419686679, 33.973150706820874 ], [ 133.528301704699885, 33.982783939832764 ], [ 133.543753783786315, 33.985765654812639 ], [ 133.55201265364289, 33.994481437061481 ], [ 133.541888877689701, 34.00342658200109 ], [ 133.565599826632678, 34.0135185403945 ], [ 133.567731147885979, 34.024757312241697 ], [ 133.590909266515666, 34.033931819872066 ], [ 133.597303230275571, 34.041271425976362 ] ] ], [ [ [ 133.037032155813506, 34.195632516857295 ], [ 133.066604238203098, 34.191962713805147 ], [ 133.075928768686282, 34.185999283845412 ], [ 133.079924996036226, 34.172237522399854 ], [ 133.107898587485835, 34.174760511998208 ], [ 133.100438963099265, 34.15801703557279 ], [ 133.089249526519438, 34.15732894750051 ], [ 133.078859335409589, 34.143796548745719 ], [ 133.061009519913171, 34.133016502280036 ], [ 133.043159704416752, 34.113061948183983 ], [ 133.019981585787093, 34.108704057059562 ], [ 133.019182340317087, 34.137145030713704 ], [ 133.024244228293696, 34.149530616014701 ], [ 133.037831401283484, 34.148842527942421 ], [ 133.040495552850132, 34.159163849026584 ], [ 133.032236682993585, 34.172237522399854 ], [ 133.020248000943752, 34.178889040431876 ], [ 133.037032155813506, 34.195632516857295 ] ] ], [ [ [ 132.876916646659112, 34.194256340712741 ], [ 132.893167971215547, 34.191274625732873 ], [ 132.877183061815771, 34.177283501596563 ], [ 132.861730982729341, 34.192192076495907 ], [ 132.876916646659112, 34.194256340712741 ] ] ], [ [ [ 133.110829154209142, 34.235082899667873 ], [ 133.106832926859198, 34.230954371234212 ], [ 133.126281233295572, 34.195173791475781 ], [ 133.110029908739136, 34.190815900351353 ], [ 133.097774811532645, 34.204118936415384 ], [ 133.082855562759534, 34.192650801877427 ], [ 133.05861178350321, 34.227284568182064 ], [ 133.064472916949796, 34.23485353697712 ], [ 133.080457826349573, 34.229807557780418 ], [ 133.095909905436002, 34.238982065410781 ], [ 133.110829154209142, 34.235082899667873 ] ] ], [ [ [ 133.164911431011689, 34.246092308824316 ], [ 133.167575582578337, 34.2343948115956 ], [ 133.152389918648538, 34.233018635451046 ], [ 133.150525012551896, 34.240816966936855 ], [ 133.164911431011689, 34.246092308824316 ] ] ], [ [ [ 133.153721994431862, 34.27957926167516 ], [ 133.166509921951672, 34.260083432960627 ], [ 133.150525012551896, 34.244945495370523 ], [ 133.132408781898818, 34.241963780390648 ], [ 133.132941612212164, 34.265588137538849 ], [ 133.144663879105309, 34.2793498989844 ], [ 133.153721994431862, 34.27957926167516 ] ] ], [ [ [ 133.171038979614934, 34.285772054325662 ], [ 133.181429170724812, 34.276826909386045 ], [ 133.186491058701392, 34.258936619506834 ], [ 133.178765019158163, 34.255725541836206 ], [ 133.165444261325035, 34.280955437819713 ], [ 133.171038979614934, 34.285772054325662 ] ] ], [ [ [ 133.230449559550777, 34.290818033522356 ], [ 133.236577108154023, 34.276597546695292 ], [ 133.228584653454135, 34.267652401755683 ], [ 133.208603516704414, 34.25664299259924 ], [ 133.213931819837683, 34.243798681916729 ], [ 133.201410307474504, 34.239899516173821 ], [ 133.203541628727805, 34.258019168743793 ], [ 133.199012571064543, 34.269028577900237 ], [ 133.212866159211018, 34.284166515490341 ], [ 133.230449559550777, 34.290818033522356 ] ] ], [ [ [ 133.018116679690451, 34.297010826172858 ], [ 133.0285068708003, 34.294029111192991 ], [ 133.045823855983372, 34.260771521032908 ], [ 133.054615556153266, 34.253890640310132 ], [ 133.050352913646663, 34.213981532118027 ], [ 133.031171022366919, 34.208247464849052 ], [ 133.002931015760652, 34.209623640993605 ], [ 132.993872900434127, 34.202054672198557 ], [ 132.959771760381273, 34.191045263042113 ], [ 132.946983832861463, 34.210082366375126 ], [ 132.955509117874669, 34.223614765129916 ], [ 132.98081855775763, 34.227513930872824 ], [ 132.990143088240842, 34.223844127820676 ], [ 132.994672145904104, 34.249303386494944 ], [ 132.987745351830881, 34.263065147940495 ], [ 132.969629121177803, 34.258248531434553 ], [ 132.970161951491121, 34.27040475404479 ], [ 132.986413276047557, 34.274303919787698 ], [ 132.981084972914289, 34.286460142397935 ], [ 132.995737806530769, 34.288983131996289 ], [ 133.004529506700635, 34.296322738100585 ], [ 133.018116679690451, 34.297010826172858 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1462, "NAME_1": "Fukui", "VARNAME_1": "Hukui", "HASC_1": "JP.FI", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.244137811721401, 36.294530499994664 ], [ 136.273443478954306, 36.262649085979135 ], [ 136.30488046744054, 36.254392029111806 ], [ 136.319266885900333, 36.232831936180446 ], [ 136.329390661853523, 36.229162133128298 ], [ 136.334452549830132, 36.214482920919707 ], [ 136.331521983106825, 36.204161599835544 ], [ 136.342178589373333, 36.177784890398236 ], [ 136.362958971593059, 36.162417590117371 ], [ 136.374414823329545, 36.1667754812418 ], [ 136.408782378539058, 36.167692932004833 ], [ 136.415176342298963, 36.15668352284839 ], [ 136.426365778878818, 36.151637543651688 ], [ 136.442084273121935, 36.136270243370824 ], [ 136.465795222064912, 36.13443534184475 ], [ 136.483645037561331, 36.151178818270168 ], [ 136.499896362117767, 36.146591564454987 ], [ 136.535595993110604, 36.144527300238153 ], [ 136.554777884390319, 36.151866906342448 ], [ 136.593674497263123, 36.128242549194255 ], [ 136.605663179312955, 36.12549019690514 ], [ 136.616586200736123, 36.107141181644408 ], [ 136.648822434692335, 36.091544518672777 ], [ 136.656015643922217, 36.083287461805448 ], [ 136.661077531898826, 36.066085259998509 ], [ 136.699974144771602, 36.07067251381369 ], [ 136.720488111834641, 36.078470845299506 ], [ 136.741534909211026, 36.077324031845713 ], [ 136.756986988297456, 36.085810451403802 ], [ 136.767910009720651, 36.065397171926236 ], [ 136.742600569837663, 36.050488597026884 ], [ 136.730079057474512, 35.993147924337087 ], [ 136.741534909211026, 35.98993684666646 ], [ 136.755388497357501, 35.978009986746983 ], [ 136.752990760947512, 35.955991168434096 ], [ 136.771639821913936, 35.948422199639047 ], [ 136.792953034446953, 35.944523033896139 ], [ 136.786559070687048, 35.924339117109326 ], [ 136.811602095413349, 35.909659904900742 ], [ 136.825189268403165, 35.893145791166077 ], [ 136.825189268403165, 35.881677656628121 ], [ 136.834513798886377, 35.852319232210945 ], [ 136.821992286523198, 35.840621734982221 ], [ 136.802810395243483, 35.833282128877926 ], [ 136.799613413363517, 35.810804585183533 ], [ 136.794018695073618, 35.801171352171643 ], [ 136.782030013023785, 35.795666647593421 ], [ 136.763913782370707, 35.807364144822145 ], [ 136.754322836730836, 35.803923704460757 ], [ 136.725816414967909, 35.802088802934676 ], [ 136.709032260098155, 35.788327041489126 ], [ 136.676529610985256, 35.788327041489126 ], [ 136.668537156285396, 35.781904886147871 ], [ 136.656814889392223, 35.785345326509258 ], [ 136.655216398452239, 35.795437284902661 ], [ 136.631239034352575, 35.792455569922794 ], [ 136.624312240279352, 35.784886601127738 ], [ 136.598203554926386, 35.791996844541274 ], [ 136.573426945356744, 35.774106554662055 ], [ 136.540924296243873, 35.777776357714203 ], [ 136.531866180917319, 35.782822336910911 ], [ 136.515881271517543, 35.769289938156113 ], [ 136.516414101830861, 35.75896861707195 ], [ 136.503626174311051, 35.751170285586142 ], [ 136.499896362117767, 35.762409057433338 ], [ 136.488174095224593, 35.772271653135988 ], [ 136.477517488958085, 35.769748663537634 ], [ 136.456737106738387, 35.773418466589781 ], [ 136.434358233578706, 35.771812927754468 ], [ 136.407183887599075, 35.780299347312557 ], [ 136.385071429596053, 35.79107939377824 ], [ 136.374947653642892, 35.789244492252166 ], [ 136.351236704699886, 35.776629544260409 ], [ 136.329657077010182, 35.769289938156113 ], [ 136.324595189033602, 35.75919797976271 ], [ 136.329124246696864, 35.728922104582495 ], [ 136.31234009182711, 35.700251768237599 ], [ 136.296355182427334, 35.688095545627363 ], [ 136.292092539920731, 35.666535452695996 ], [ 136.279038197244233, 35.661030748117774 ], [ 136.202310632125318, 35.686719369482802 ], [ 136.187124968195548, 35.700022405546839 ], [ 136.16421326472252, 35.693829612896337 ], [ 136.153290243299352, 35.694517700968618 ], [ 136.150626091732732, 35.683967017193694 ], [ 136.137571749056235, 35.666535452695996 ], [ 136.153556658456012, 35.653920504704246 ], [ 136.162881188939224, 35.622727178760989 ], [ 136.179665343808978, 35.593598117034574 ], [ 136.173537795205732, 35.583276795950411 ], [ 136.172738549735755, 35.562863516472845 ], [ 136.142367221876185, 35.572038024103207 ], [ 136.116791366836537, 35.575937189846115 ], [ 136.110663818233292, 35.548643029645774 ], [ 136.098941551340118, 35.531670190529596 ], [ 136.089617020856906, 35.536028081654017 ], [ 136.073898526613817, 35.52364249635302 ], [ 136.054450220177415, 35.530752739766555 ], [ 136.033403422801058, 35.526394848642127 ], [ 136.018484174027918, 35.507357745309122 ], [ 136.01049171932803, 35.490155543502176 ], [ 135.987047185541712, 35.486027015068515 ], [ 135.961737745658723, 35.50116495265862 ], [ 135.947884157512249, 35.517908429084038 ], [ 135.940957363439026, 35.509651372216709 ], [ 135.932698493582478, 35.489008730048383 ], [ 135.924972454039249, 35.482127849325607 ], [ 135.919111320592663, 35.458962217558927 ], [ 135.914049432616082, 35.427080803543404 ], [ 135.895933201963004, 35.416530119768481 ], [ 135.895133956492998, 35.403227083704444 ], [ 135.866361119573412, 35.391529586475727 ], [ 135.848777719233681, 35.408273062901145 ], [ 135.827198091543977, 35.411254777881013 ], [ 135.815209409494145, 35.408502425591905 ], [ 135.812545257927525, 35.387630420732819 ], [ 135.793629781804441, 35.383272529608391 ], [ 135.7709844934881, 35.352537929046662 ], [ 135.749937696111743, 35.354602193263496 ], [ 135.741145995941849, 35.349097488685274 ], [ 135.720365613722151, 35.351391115592868 ], [ 135.701450137599096, 35.341757882580978 ], [ 135.680136925066051, 35.346574499086927 ], [ 135.671345224896186, 35.353455379809702 ], [ 135.639641821253292, 35.360565623223238 ], [ 135.62498898763684, 35.366529053182973 ], [ 135.603142944790477, 35.367905229327526 ], [ 135.592486338523969, 35.365152877038419 ], [ 135.582362562570779, 35.371575032379674 ], [ 135.537338401094758, 35.374327384668788 ], [ 135.529878776708188, 35.381666990773084 ], [ 135.533608588901473, 35.391758949166487 ], [ 135.528013870611545, 35.400245368724576 ], [ 135.530678022178165, 35.410337327117979 ], [ 135.520287831068316, 35.419282472057589 ], [ 135.510164055115126, 35.419282472057589 ], [ 135.482190463665518, 35.44634726956717 ], [ 135.46407423301244, 35.460797119085001 ], [ 135.462209326915797, 35.470659714787644 ], [ 135.477661406002255, 35.489926180811423 ], [ 135.478993481785579, 35.502311766112413 ], [ 135.452351966119295, 35.519972693300872 ], [ 135.473398763495652, 35.557129449203863 ], [ 135.474464424122317, 35.541991511613759 ], [ 135.482723293978864, 35.530752739766555 ], [ 135.502438015571897, 35.525018672497573 ], [ 135.499773864005277, 35.547496216191973 ], [ 135.518156509815014, 35.549560480408807 ], [ 135.516824434031719, 35.525248035188334 ], [ 135.507233488391847, 35.507587107999875 ], [ 135.516025188561713, 35.494742797317365 ], [ 135.534141419214791, 35.489238092739143 ], [ 135.552524065024528, 35.495201522698878 ], [ 135.559983689411098, 35.490384906192936 ], [ 135.576767844280852, 35.493137258482051 ], [ 135.591420677897304, 35.502082403421653 ], [ 135.631915781710063, 35.53717489510781 ], [ 135.660155788316331, 35.545431951975146 ], [ 135.659622958003013, 35.534651905509463 ], [ 135.634579933276711, 35.518367154465558 ], [ 135.642305972819941, 35.509192646835189 ], [ 135.626321063420164, 35.489926180811423 ], [ 135.631649366553404, 35.47845804627346 ], [ 135.654028239713085, 35.480522310490294 ], [ 135.66042220347299, 35.49176108233749 ], [ 135.676140697716107, 35.487173828522309 ], [ 135.700118061815772, 35.493137258482051 ], [ 135.714238065118906, 35.483045300088641 ], [ 135.721164859192129, 35.49221980771901 ], [ 135.735284862495263, 35.492907895791291 ], [ 135.749671280955056, 35.51469735141341 ], [ 135.751269771895039, 35.530752739766555 ], [ 135.739281089845207, 35.535798718963257 ], [ 135.731555050302006, 35.52364249635302 ], [ 135.716902216685526, 35.520660781373152 ], [ 135.716635801528867, 35.540156610087678 ], [ 135.690793531332559, 35.549560480408807 ], [ 135.714504480275565, 35.56951503450486 ], [ 135.741678826255196, 35.570203122577141 ], [ 135.749671280955056, 35.566762682215746 ], [ 135.75846298112495, 35.542679599686032 ], [ 135.775513551151363, 35.549331117718047 ], [ 135.789899969611156, 35.540156610087678 ], [ 135.796560348527748, 35.526394848642127 ], [ 135.817873561060765, 35.53694553241705 ], [ 135.834391300773859, 35.536028081654017 ], [ 135.824800355134016, 35.552542195388682 ], [ 135.80401997291429, 35.56905630912334 ], [ 135.820537712627413, 35.573643562938528 ], [ 135.834924131087206, 35.561716703019044 ], [ 135.847712058607016, 35.577084003299916 ], [ 135.855438098150245, 35.579148267516743 ], [ 135.855704513306904, 35.600478997757349 ], [ 135.829862243110597, 35.611947132295313 ], [ 135.839453188750468, 35.618598650327328 ], [ 135.813344503397502, 35.633965950608193 ], [ 135.815475824650804, 35.642223007475522 ], [ 135.845847152510373, 35.635342126752747 ], [ 135.856503758776881, 35.624562080287063 ], [ 135.859434325500189, 35.610800318841513 ], [ 135.868492440826714, 35.607589241170885 ], [ 135.878349801623244, 35.615616935347454 ], [ 135.896199617119663, 35.615616935347454 ], [ 135.907921884012836, 35.624103354905543 ], [ 135.912717356832758, 35.609424142696959 ], [ 135.940424533125707, 35.61469948458442 ], [ 135.954544536428841, 35.629378696793012 ], [ 135.966000388165327, 35.621580365307196 ], [ 135.983850203661746, 35.633736587917433 ], [ 135.985715109758388, 35.643140458238562 ], [ 135.973460012551897, 35.655755406230313 ], [ 135.963336236598707, 35.656214131611833 ], [ 135.977456239901841, 35.685801918719768 ], [ 135.969996615515271, 35.711719902775556 ], [ 135.954544536428841, 35.719976959642892 ], [ 135.968398124575316, 35.734885534542236 ], [ 135.9777226550585, 35.731674456871609 ], [ 135.993174734144958, 35.748647295987787 ], [ 136.008893228388075, 35.753234549802968 ], [ 136.019549834654583, 35.763785233577892 ], [ 136.032870592487711, 35.750252834823101 ], [ 136.028341534824449, 35.73672043606831 ], [ 136.038731725934298, 35.726399114984147 ], [ 136.03793248046432, 35.708967550486449 ], [ 136.044592859380884, 35.705068384743541 ], [ 136.025677383257829, 35.680755939523067 ], [ 136.042195122970924, 35.670663981129664 ], [ 136.043793613910907, 35.659654571973221 ], [ 136.05551588080408, 35.656214131611833 ], [ 136.073365696300471, 35.660801385427021 ], [ 136.074697772083795, 35.678921037996993 ], [ 136.086420038976968, 35.683508291812174 ], [ 136.079226829747057, 35.701857307072913 ], [ 136.092014757266895, 35.709655638558729 ], [ 136.098675136183459, 35.724334850767313 ], [ 136.101605702906738, 35.756904352855116 ], [ 136.096810230086817, 35.76814312470232 ], [ 136.100273627123443, 35.776858906951169 ], [ 136.087485699603604, 35.798648362573289 ], [ 136.065373241600582, 35.828924237753505 ], [ 136.043527198754248, 35.843603449962096 ], [ 136.031538516704416, 35.856677123335366 ], [ 135.994240394771595, 35.887870449278616 ], [ 135.997970206964879, 35.933513624739696 ], [ 135.983850203661746, 35.952092002691188 ], [ 135.96227057597207, 35.970899743333447 ], [ 135.958274348622126, 35.982826603252924 ], [ 135.973460012551897, 36.005533509638084 ], [ 135.992908318988299, 36.015854830722247 ], [ 136.012090210268013, 36.03512129674602 ], [ 136.011024549641377, 36.042690265541069 ], [ 136.02061549528122, 36.061956731564848 ], [ 136.031005686391097, 36.091315155982024 ], [ 136.03819889562098, 36.104388829355294 ], [ 136.048322671574169, 36.109664171242756 ], [ 136.054183805020756, 36.126866373049694 ], [ 136.071767205360516, 36.133976616463229 ], [ 136.094412493676856, 36.153472445177762 ], [ 136.092814002736873, 36.163564403571165 ], [ 136.135706842959593, 36.220446350879449 ], [ 136.12611589731975, 36.234896200397273 ], [ 136.123185330596442, 36.249575412605864 ], [ 136.153556658456012, 36.253703941039532 ], [ 136.160217037372576, 36.248887324533584 ], [ 136.180731004435643, 36.256226930637879 ], [ 136.210036671668547, 36.271135505537231 ], [ 136.244137811721401, 36.294530499994664 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1463, "NAME_1": "Fukuoka", "VARNAME_1": "Hukuoka", "HASC_1": "JP.FO", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.307875290958862, 33.608693391204525 ], [ 130.294021702812387, 33.616721085381094 ], [ 130.307342460645515, 33.635528826023346 ], [ 130.31373642440542, 33.622684515340836 ], [ 130.307875290958862, 33.608693391204525 ] ] ], [ [ [ 131.035188668648544, 33.819477704012222 ], [ 131.030926026141941, 33.825441133971957 ], [ 131.024265647225377, 33.856863822605966 ], [ 131.035455083805203, 33.857093185296726 ], [ 131.042381877878427, 33.821312605538296 ], [ 131.035188668648544, 33.819477704012222 ] ] ], [ [ [ 130.446677587580211, 33.914663220677284 ], [ 130.429893432710458, 33.886910335095422 ], [ 130.409379465647419, 33.892185676982884 ], [ 130.406182483767452, 33.909617241480582 ], [ 130.432024753963759, 33.914892583368044 ], [ 130.446677587580211, 33.914663220677284 ] ] ], [ [ [ 130.830315413174787, 33.948379536218887 ], [ 130.844169001321262, 33.939663753970038 ], [ 130.825253525198178, 33.931636059793462 ], [ 130.786356912325402, 33.934617774773336 ], [ 130.79195163061533, 33.946315272002053 ], [ 130.830315413174787, 33.948379536218887 ] ] ], [ [ [ 131.184381156379771, 33.606170401606171 ], [ 131.18757813825971, 33.600895059718709 ], [ 131.175323041053218, 33.583234132530251 ], [ 131.180651344186487, 33.56878428301242 ], [ 131.189176629199693, 33.562132764980404 ], [ 131.18757813825971, 33.539425858595244 ], [ 131.170793983389956, 33.527040273294247 ], [ 131.177187947149861, 33.507315081888962 ], [ 131.150280016326917, 33.50158101461998 ], [ 131.080212830124566, 33.502727828073773 ], [ 131.053837729614941, 33.506626993816681 ], [ 131.030926026141941, 33.514195962611737 ], [ 131.012010550018886, 33.506626993816681 ], [ 130.983770543412618, 33.504333366909087 ], [ 130.956063367119668, 33.486901802411388 ], [ 130.933950909116646, 33.476121755945712 ], [ 130.931020342393339, 33.463506807953955 ], [ 130.912904111740261, 33.44653396883777 ], [ 130.902247505473753, 33.445616518074736 ], [ 130.893455805303887, 33.42451515052489 ], [ 130.892922974990569, 33.406395497954918 ], [ 130.886795426387323, 33.375202172011662 ], [ 130.862018816817653, 33.3699268301242 ], [ 130.859088250094374, 33.355018255224856 ], [ 130.838041452718016, 33.340339043016264 ], [ 130.853227116647787, 33.333228799602729 ], [ 130.867879950264239, 33.29309032871987 ], [ 130.855092022744429, 33.275888126912932 ], [ 130.860420325877698, 33.265796168519529 ], [ 130.844435416477921, 33.253869308600052 ], [ 130.834311640524732, 33.254557396672325 ], [ 130.828450507078145, 33.238043282937667 ], [ 130.846566737731223, 33.230015588761091 ], [ 130.842570510381279, 33.214189563098714 ], [ 130.845234661947899, 33.203868242014551 ], [ 130.865215798697619, 33.191253294022793 ], [ 130.884930520290681, 33.183684325227738 ], [ 130.88786108701396, 33.172904278762054 ], [ 130.87773731106077, 33.166711486111559 ], [ 130.877204480747451, 33.145380755870953 ], [ 130.863350892600977, 33.113728704546183 ], [ 130.845767492261217, 33.10317802077126 ], [ 130.831647488958083, 33.10317802077126 ], [ 130.791418800301983, 33.120609585268959 ], [ 130.780229363722157, 33.120150859887445 ], [ 130.758649736032453, 33.129784092899328 ], [ 130.740799920536034, 33.142399040891085 ], [ 130.73413954161947, 33.151114823139935 ], [ 130.693378022650052, 33.149509284304621 ], [ 130.693111607493393, 33.160518693461057 ], [ 130.685119152793504, 33.166711486111559 ], [ 130.669400658550387, 33.144922030489433 ], [ 130.67126556464703, 33.13505943478679 ], [ 130.66380594026046, 33.12634365253794 ], [ 130.658211221970561, 33.105242284988094 ], [ 130.637963670064181, 33.108453362658722 ], [ 130.615318381747812, 33.105242284988094 ], [ 130.605194605794622, 33.110288264184796 ], [ 130.582282902321623, 33.11281125378315 ], [ 130.564166671668545, 33.100655031172913 ], [ 130.566031577765187, 33.089645622016469 ], [ 130.555641386655338, 33.08001238900458 ], [ 130.544451950075484, 33.078406850169273 ], [ 130.528467040675736, 33.063039549888401 ], [ 130.518609679879205, 33.060975285671567 ], [ 130.49996061891278, 33.04881906306133 ], [ 130.509817979709311, 33.021983628242509 ], [ 130.515679113155898, 33.0130384833029 ], [ 130.509285149395993, 33.00317588760025 ], [ 130.469322875896552, 32.999506084548102 ], [ 130.400854180634212, 33.006386965270885 ], [ 130.40671531408077, 33.016708286355048 ], [ 130.422433808323888, 33.029781959728318 ], [ 130.418703996130603, 33.03574538968806 ], [ 130.425097959890508, 33.052718228804238 ], [ 130.413642108154022, 33.085287730892048 ], [ 130.387267007644397, 33.095609051976211 ], [ 130.397124368440927, 33.106618461132648 ], [ 130.372081343714598, 33.119921497196685 ], [ 130.372880589184604, 33.138270512457417 ], [ 130.35396511306152, 33.146986294706267 ], [ 130.362756813231414, 33.199280988199362 ], [ 130.392595310777637, 33.243547987515889 ], [ 130.419769656757268, 33.261438277395101 ], [ 130.438152302567005, 33.268777883499396 ], [ 130.465593063703267, 33.289649888358483 ], [ 130.473585518403155, 33.302494199041 ], [ 130.486373445922993, 33.304329100567074 ], [ 130.512482131275959, 33.341027131088545 ], [ 130.538324401472238, 33.339650954943991 ], [ 130.542853459135529, 33.361899135947631 ], [ 130.543652704605506, 33.416716819039081 ], [ 130.539390062098903, 33.435524559681333 ], [ 130.518609679879205, 33.444240341930183 ], [ 130.508219488769356, 33.443093528476382 ], [ 130.471187781993194, 33.429331767030831 ], [ 130.460797590883345, 33.416946181729834 ], [ 130.449608154303519, 33.414881917513 ], [ 130.430426263023776, 33.393551187272401 ], [ 130.414974183937318, 33.403872508356564 ], [ 130.39898927453757, 33.423827062452617 ], [ 130.387000592487738, 33.42428578783413 ], [ 130.370482852774614, 33.431625393938425 ], [ 130.360092661664766, 33.430937305866145 ], [ 130.332651900528504, 33.449056958436124 ], [ 130.312404348622124, 33.458919554138767 ], [ 130.300415666572292, 33.459148916829527 ], [ 130.273507735749348, 33.476580481327225 ], [ 130.250063201963002, 33.467635336387616 ], [ 130.206104701113617, 33.477956657471779 ], [ 130.188787715930545, 33.465341709480029 ], [ 130.170937900434126, 33.464194896026228 ], [ 130.153088084937707, 33.474516217110391 ], [ 130.144029969611182, 33.46947023791369 ], [ 130.107531093148367, 33.472681315584325 ], [ 130.099272223291791, 33.466488522933822 ], [ 130.075827689505473, 33.465800434861542 ], [ 130.062773346828976, 33.469011512532177 ], [ 130.037197491789357, 33.467635336387616 ], [ 130.050251834465826, 33.494929496587964 ], [ 130.071298631842211, 33.502957190764533 ], [ 130.091546183748591, 33.505709543053641 ], [ 130.099805053605138, 33.510755522250349 ], [ 130.115789963004914, 33.507544444579722 ], [ 130.133639778501305, 33.518783216426918 ], [ 130.12458166317478, 33.525205371768173 ], [ 130.153620915251025, 33.53736159437841 ], [ 130.164543936674221, 33.552728894659282 ], [ 130.156817897130992, 33.56006850076357 ], [ 130.141898648357881, 33.548141640844094 ], [ 130.126446569271423, 33.571995360683047 ], [ 130.108863168931663, 33.57016045915698 ], [ 130.088082786711965, 33.577500065261269 ], [ 130.108863168931663, 33.596537168594281 ], [ 130.131242042091344, 33.590115013253026 ], [ 130.14749336664778, 33.595619717831248 ], [ 130.159215633540953, 33.606399764296931 ], [ 130.156285066817674, 33.627959857228291 ], [ 130.185590734050578, 33.632776473734239 ], [ 130.207436776896941, 33.647685048633583 ], [ 130.212498664873522, 33.666492789275836 ], [ 130.231414140996606, 33.654795292047119 ], [ 130.237275274443192, 33.645620784416749 ], [ 130.225553007550019, 33.636675639477147 ], [ 130.233012631936589, 33.616262359999574 ], [ 130.243935653359756, 33.611904468875153 ], [ 130.274573396375985, 33.610757655421352 ], [ 130.251128862589667, 33.596766531285041 ], [ 130.279901699509253, 33.580252417550383 ], [ 130.30094849688561, 33.581628593694937 ], [ 130.311605103152118, 33.589426925180746 ], [ 130.311871518308806, 33.597454619357322 ], [ 130.327057182238576, 33.598372070120362 ], [ 130.356096434314821, 33.595390355140488 ], [ 130.372347758871257, 33.604106137389337 ], [ 130.395792292657603, 33.609152116586039 ], [ 130.408313805020754, 33.632776473734239 ], [ 130.405383238297475, 33.651354851685731 ], [ 130.422700223480547, 33.660529359316101 ], [ 130.435221735843697, 33.662134898151415 ], [ 130.425630790203854, 33.675208571524685 ], [ 130.430426263023776, 33.686217980681128 ], [ 130.407780974707435, 33.683236265701261 ], [ 130.394993047187626, 33.669703866946463 ], [ 130.369683607304637, 33.665345975822042 ], [ 130.36142473744809, 33.65915318317154 ], [ 130.355830019158162, 33.643327157509162 ], [ 130.325991521611911, 33.658923820480787 ], [ 130.298550760475649, 33.660070633934581 ], [ 130.289226229992437, 33.670162592327983 ], [ 130.290025475462443, 33.687364794134922 ], [ 130.304145478765577, 33.687823519516442 ], [ 130.31586774565875, 33.662822986223688 ], [ 130.333451145998481, 33.660070633934581 ], [ 130.365953795111352, 33.66832769080191 ], [ 130.389664744054357, 33.680713276102907 ], [ 130.416306259720642, 33.703190819797307 ], [ 130.417638335503966, 33.71397086626299 ], [ 130.443214190543586, 33.722457285821079 ], [ 130.459199099943362, 33.737824586101951 ], [ 130.468257215269915, 33.756402964053443 ], [ 130.470654951679876, 33.771082176262027 ], [ 130.46452740307663, 33.786449476542899 ], [ 130.450140984616837, 33.784614575016825 ], [ 130.451206645243474, 33.801128688751483 ], [ 130.446411172423552, 33.808468294855778 ], [ 130.467724384956597, 33.8128261859802 ], [ 130.476249669969803, 33.822459418992089 ], [ 130.485307785296328, 33.851588480718505 ], [ 130.500759864382786, 33.852505931481545 ], [ 130.518609679879205, 33.860304262967354 ], [ 130.530065531615691, 33.882093718589481 ], [ 130.554575726028673, 33.89058013814757 ], [ 130.567097238391852, 33.882323081280241 ], [ 130.591341017648176, 33.877506464774299 ], [ 130.616384042374477, 33.879570728991126 ], [ 130.640361406474142, 33.886451609713902 ], [ 130.663539525103801, 33.899754645777939 ], [ 130.662473864477164, 33.91351640722349 ], [ 130.68112292544356, 33.922461552163099 ], [ 130.687516889203465, 33.934617774773336 ], [ 130.712826329086454, 33.938975665897757 ], [ 130.737070108342778, 33.926360717906007 ], [ 130.758383320875794, 33.930259883648908 ], [ 130.772503324178928, 33.924525816379926 ], [ 130.778364457625514, 33.934617774773336 ], [ 130.807403709701759, 33.931177334411949 ], [ 130.82472069488486, 33.920167925255505 ], [ 130.852960701491128, 33.929342432885875 ], [ 130.862551647130999, 33.919479837183232 ], [ 130.877470895904111, 33.912369593769697 ], [ 130.901981090317094, 33.892415039673644 ], [ 130.915834678463568, 33.895855480035031 ], [ 130.929688266610043, 33.906176801119194 ], [ 130.945140345696473, 33.937599489753204 ], [ 130.963256576349551, 33.947462085455847 ], [ 130.961391670252908, 33.959618308066084 ], [ 130.992029413269165, 33.962600023045958 ], [ 131.002153189222355, 33.969480903768734 ], [ 131.019203759248768, 33.962829385736711 ], [ 131.020802250188751, 33.941728018186872 ], [ 131.002419604379014, 33.922002826781579 ], [ 130.997624131559064, 33.89012141276605 ], [ 130.991230167799159, 33.885304796260108 ], [ 130.985635449509232, 33.869020045216203 ], [ 130.997357716402405, 33.86833195714393 ], [ 130.993894319365779, 33.851817843409265 ], [ 130.983237713099271, 33.84562505075877 ], [ 130.97577808871273, 33.834386278911566 ], [ 130.962190915722914, 33.838514807345234 ], [ 130.956596197432987, 33.829340299714865 ], [ 130.967519218856182, 33.809615108309572 ], [ 130.984036958569277, 33.808927020237299 ], [ 131.000554698282372, 33.815578538269314 ], [ 130.996292055775768, 33.799981875297689 ], [ 131.017338853152125, 33.767871098591399 ], [ 131.002153189222355, 33.755944238671923 ], [ 131.016539607682148, 33.750439534093701 ], [ 131.017871683465444, 33.738283311483464 ], [ 131.02852828973198, 33.708695524375528 ], [ 131.042115462721767, 33.689429058351756 ], [ 131.050907162891662, 33.688970332970243 ], [ 131.066092826821432, 33.660070633934581 ], [ 131.080745660437884, 33.647455685942823 ], [ 131.083942642317851, 33.63736372754942 ], [ 131.098861891090962, 33.619932163051722 ], [ 131.139623410060409, 33.626354318392977 ], [ 131.160936622593425, 33.616721085381094 ], [ 131.179852098716481, 33.619932163051722 ], [ 131.184381156379771, 33.606170401606171 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1464, "NAME_1": "Fukushima", "VARNAME_1": "Hukusima", "HASC_1": "JP.FS", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.93144607804831, 37.891812278441684 ], [ 140.933310984144953, 37.876674340851579 ], [ 140.946898157134768, 37.852591258321866 ], [ 140.950627969328025, 37.840205673020861 ], [ 140.965547218101165, 37.828508175792145 ], [ 140.970875521234404, 37.816581315872668 ], [ 140.966612878727801, 37.786764166073972 ], [ 140.987659676104187, 37.775754756917536 ], [ 141.011370625047164, 37.741120990612892 ], [ 141.01216987051717, 37.680798602943227 ], [ 141.02469138288032, 37.642265670895682 ], [ 141.023092891940337, 37.614971510695341 ], [ 141.027621949603599, 37.602585925394344 ], [ 141.025757043506985, 37.56932833523426 ], [ 141.029753270856929, 37.540428636198598 ], [ 141.038811386183454, 37.503271880295614 ], [ 141.038811386183454, 37.453041451019345 ], [ 141.034548743676851, 37.433086896923299 ], [ 141.036680064930152, 37.361067012024911 ], [ 141.026556288976963, 37.336525204113677 ], [ 141.026289873820303, 37.303267613953594 ], [ 141.014834022083789, 37.264046593833775 ], [ 141.012969115987147, 37.241569050139375 ], [ 141.020961570687035, 37.23377071865356 ], [ 141.007907228010566, 37.215880428774341 ], [ 141.001779679407321, 37.190650532790833 ], [ 141.001246849094002, 37.155787403795436 ], [ 140.997517036900717, 37.120465549418519 ], [ 140.978601560777633, 37.073675560503645 ], [ 140.973539672801053, 37.050509928736965 ], [ 140.972474012174388, 37.023215768536623 ], [ 140.982331372970918, 36.994774794882481 ], [ 140.974072503114371, 36.992251805284127 ], [ 140.948230232918064, 36.955095049381143 ], [ 140.937307211494897, 36.952801422473549 ], [ 140.925584944601724, 36.93582858335737 ], [ 140.909067204888629, 36.945461816369253 ], [ 140.888020407512272, 36.939498386409518 ], [ 140.866973610135886, 36.925048536891687 ], [ 140.852587191676093, 36.919773195004225 ], [ 140.841930585409585, 36.910598687373856 ], [ 140.826478506323127, 36.91289231428145 ], [ 140.800902651283479, 36.894772661711471 ], [ 140.790778875330318, 36.877111734523012 ], [ 140.79291019658362, 36.857845268499247 ], [ 140.763338114194028, 36.864726149222022 ], [ 140.743889807757625, 36.872295118017071 ], [ 140.714317725368062, 36.872065755326311 ], [ 140.698865646281604, 36.884910066008828 ], [ 140.657304881842208, 36.897754376691339 ], [ 140.634926008682498, 36.896607563237545 ], [ 140.618408268969404, 36.900277366289693 ], [ 140.596562226123069, 36.923213635365613 ], [ 140.589369016893158, 36.942021376007865 ], [ 140.579245240939969, 36.939498386409518 ], [ 140.572052031710086, 36.923442998056373 ], [ 140.595496565496404, 36.870230853800237 ], [ 140.585905619856533, 36.864726149222022 ], [ 140.539016552283869, 36.850276299704191 ], [ 140.509977300207623, 36.819541699142462 ], [ 140.499320693941115, 36.815413170708794 ], [ 140.477474651094752, 36.792706264323634 ], [ 140.464953138731573, 36.792935627014394 ], [ 140.443107095885239, 36.816101258781075 ], [ 140.43271690477539, 36.815871896090314 ], [ 140.416731995375613, 36.828945569463585 ], [ 140.385561422046038, 36.833303460588013 ], [ 140.37490481577953, 36.852340563921018 ], [ 140.373572739996206, 36.870689579181757 ], [ 140.368510852019625, 36.8805521748844 ], [ 140.347197639486581, 36.882616439101234 ], [ 140.326950087580201, 36.89064413327781 ], [ 140.325351596640246, 36.901424179743486 ], [ 140.30696895083048, 36.921608096530299 ], [ 140.288586305020743, 36.932388142995983 ], [ 140.260612713571163, 36.933764319140536 ], [ 140.24409497385804, 36.947067355204567 ], [ 140.249956107304627, 36.955324412071903 ], [ 140.249956107304627, 36.986517738015152 ], [ 140.24409497385804, 36.995004157573241 ], [ 140.252087428557928, 37.022757043155103 ], [ 140.219851194601716, 37.017252338576881 ], [ 140.202001379105326, 37.027803022351804 ], [ 140.197472321442035, 37.058996348295054 ], [ 140.176958354378996, 37.067941493234663 ], [ 140.1583092934126, 37.081473891989454 ], [ 140.145787781049449, 37.098676093796399 ], [ 140.135131174782941, 37.100281632631706 ], [ 140.105825507550009, 37.117942559820165 ], [ 140.073322858437137, 37.123447264398386 ], [ 140.062932667327289, 37.122300450944593 ], [ 140.04508285183087, 37.13422731086407 ], [ 140.024302469611172, 37.139273290060771 ], [ 139.98940208408834, 37.140878828896085 ], [ 139.96462547451867, 37.150282699217215 ], [ 139.953702453095502, 37.151200149980248 ], [ 139.911875273499419, 37.145466082711273 ], [ 139.901751497546229, 37.150512061907975 ], [ 139.882036775953168, 37.143860543875959 ], [ 139.869515263590017, 37.14408990656672 ], [ 139.832749971970543, 37.126428979378261 ], [ 139.819695629294074, 37.110832316406629 ], [ 139.823425441487359, 37.089730948856783 ], [ 139.806374871460918, 37.083308793515528 ], [ 139.785328074084561, 37.086749233876915 ], [ 139.757088067478293, 37.070464482833017 ], [ 139.721654851642114, 37.066335954399349 ], [ 139.703272205832377, 37.056473358696707 ], [ 139.681426162986014, 37.054409094479873 ], [ 139.668105405152886, 37.037436255363687 ], [ 139.628143131653445, 37.029408561187118 ], [ 139.616420864760272, 37.01174763399866 ], [ 139.584451045960719, 37.008077830946512 ], [ 139.574860100320876, 36.998215235243869 ], [ 139.546087263401262, 36.984453473798318 ], [ 139.527171787278206, 36.978490043838576 ], [ 139.499997441298603, 36.965187007774546 ], [ 139.490406495658732, 36.969774261589727 ], [ 139.469093283125687, 36.967939360063653 ], [ 139.4555061101359, 36.947296717895327 ], [ 139.445115919026051, 36.944315002915459 ], [ 139.433393652132878, 36.926424713036241 ], [ 139.413146100226498, 36.923901723437893 ], [ 139.385438923933549, 36.908763785847782 ], [ 139.376647223763683, 36.915185941189037 ], [ 139.364658541713851, 36.91358040235373 ], [ 139.339881932144209, 36.923442998056373 ], [ 139.305247961778036, 36.925507262273207 ], [ 139.297255507078148, 36.932158780305222 ], [ 139.242373984805567, 36.929635790706868 ], [ 139.242107569648908, 36.94477372829698 ], [ 139.2543626668554, 36.961517204722398 ], [ 139.256493988108701, 36.992939893356407 ], [ 139.248767948565501, 37.016334887813848 ], [ 139.258092479048685, 37.037206892672934 ], [ 139.257826063892026, 37.058537622913533 ], [ 139.238377757455623, 37.104410161065374 ], [ 139.246370212155512, 37.124135352470667 ], [ 139.250100024348797, 37.144548631948233 ], [ 139.256227572952042, 37.15647549186771 ], [ 139.247169457625517, 37.176659408654523 ], [ 139.232516624009065, 37.194090973152221 ], [ 139.197882653642864, 37.200742491184236 ], [ 139.168044156096641, 37.233311993272039 ], [ 139.180299253303133, 37.253725272749605 ], [ 139.211736241789339, 37.281707521022227 ], [ 139.224790584465836, 37.31152467082093 ], [ 139.227454736032456, 37.336754566804437 ], [ 139.236512851359009, 37.342717996764179 ], [ 139.239443418082288, 37.363590001623265 ], [ 139.234647945262367, 37.385150094554625 ], [ 139.214933223669306, 37.389737348369813 ], [ 139.200280390052853, 37.408086363630545 ], [ 139.219728696489227, 37.440426503027595 ], [ 139.239976248395607, 37.441802679172149 ], [ 139.254629082012059, 37.449601010657958 ], [ 139.263953612495271, 37.445013756842776 ], [ 139.286598900811612, 37.44707802105961 ], [ 139.305780792091355, 37.454876352545419 ], [ 139.325229098527728, 37.457858067525294 ], [ 139.338549856360885, 37.454876352545419 ], [ 139.366523447810494, 37.466573849774136 ], [ 139.378778545016985, 37.460610419814401 ], [ 139.400891003020007, 37.456711254071493 ], [ 139.409416288033214, 37.462674684031235 ], [ 139.410215533503191, 37.483546688890321 ], [ 139.417142327576443, 37.504877419130928 ], [ 139.437656294639481, 37.511299574472183 ], [ 139.461367243582487, 37.512905113307497 ], [ 139.48108196517552, 37.500060802624986 ], [ 139.489074419875408, 37.507400408729275 ], [ 139.522376314458285, 37.510382123709149 ], [ 139.543689526991301, 37.508317859492315 ], [ 139.563937078897681, 37.50097825338802 ], [ 139.588447273310663, 37.510152761018389 ], [ 139.591377840033971, 37.520015356721032 ], [ 139.569265382030949, 37.543180988487713 ], [ 139.573794439694211, 37.575979853266276 ], [ 139.567134060777647, 37.594787593908528 ], [ 139.558075945451094, 37.599374847723709 ], [ 139.550083490751206, 37.627357095996331 ], [ 139.557276699981117, 37.636990329008221 ], [ 139.554346133257809, 37.646852924710863 ], [ 139.574593685164189, 37.652816354670605 ], [ 139.608694825217043, 37.672770908766651 ], [ 139.613756713193652, 37.681716053706261 ], [ 139.631606528690071, 37.688826297119796 ], [ 139.625212564930166, 37.698688892822446 ], [ 139.636934831823311, 37.716579182701658 ], [ 139.661178611079634, 37.739974177159098 ], [ 139.661178611079634, 37.751212949006302 ], [ 139.731512212438645, 37.809241709768372 ], [ 139.741369573235175, 37.820251118924816 ], [ 139.759752219044913, 37.820021756234055 ], [ 139.781598261891276, 37.827590725029111 ], [ 139.791189207531147, 37.823920921976963 ], [ 139.813301665534141, 37.800296564828763 ], [ 139.831950726500565, 37.810847248603686 ], [ 139.842074502453755, 37.811994062057487 ], [ 139.860989978576811, 37.823462196595443 ], [ 139.879905454699866, 37.810388523222173 ], [ 139.891894136749698, 37.807865533623819 ], [ 139.923863955549251, 37.810847248603686 ], [ 139.940648110419033, 37.825067735430757 ], [ 139.957698680445446, 37.81291151282052 ], [ 139.965158304832016, 37.803048917117877 ], [ 139.963293398735374, 37.793186321415234 ], [ 139.989668499244999, 37.757635104347557 ], [ 140.023769639297825, 37.760616819327424 ], [ 140.044017191204205, 37.76726833735944 ], [ 140.068527385617216, 37.764515985070332 ], [ 140.073589273593797, 37.754653389367689 ], [ 140.093836825500176, 37.750066135552501 ], [ 140.104759846923344, 37.73561628603467 ], [ 140.126605889769706, 37.731029032219489 ], [ 140.164436842015846, 37.753506575913889 ], [ 140.199870057852024, 37.750066135552501 ], [ 140.230241385711565, 37.743185254829726 ], [ 140.257682146847856, 37.761304907399705 ], [ 140.27153573499433, 37.777360295752842 ], [ 140.280860265477543, 37.782406274949551 ], [ 140.297910835503956, 37.807865533623819 ], [ 140.270203659211006, 37.824150284667724 ], [ 140.26887158342771, 37.852132532940345 ], [ 140.272867810777655, 37.862224491333748 ], [ 140.267805922801045, 37.904885951814961 ], [ 140.282192341260838, 37.931492023943022 ], [ 140.275265547187615, 37.964749614103106 ], [ 140.283258001887503, 37.973694759042715 ], [ 140.303505553793883, 37.966584515629179 ], [ 140.321621784446961, 37.955116381091223 ], [ 140.353858018403173, 37.947088686914647 ], [ 140.359985567006419, 37.954887018400463 ], [ 140.389291234239323, 37.952364028802108 ], [ 140.390090479709329, 37.963144075267792 ], [ 140.400480670819178, 37.970713044062848 ], [ 140.411137277085686, 37.970024955990567 ], [ 140.414867089278971, 37.960162360287924 ], [ 140.436713132125334, 37.950758489966795 ], [ 140.44790256870516, 37.953969567637422 ], [ 140.468949366081517, 37.942272070408706 ], [ 140.472945593431461, 37.915207272899124 ], [ 140.487598427047942, 37.898463796473699 ], [ 140.499853524254434, 37.897087620329145 ], [ 140.520633906474131, 37.904656589124201 ], [ 140.541414288693829, 37.902133599525847 ], [ 140.563526746696851, 37.907638304104069 ], [ 140.573117692336723, 37.917271537115951 ], [ 140.590701092676483, 37.906262127959515 ], [ 140.60162411409965, 37.904656589124201 ], [ 140.621871666006029, 37.909243842939382 ], [ 140.629864120705918, 37.896170169566105 ], [ 140.663432430445454, 37.897775708401426 ], [ 140.685544888448476, 37.887454387317263 ], [ 140.691938852208381, 37.879197330449927 ], [ 140.686077718761794, 37.870940273582598 ], [ 140.694336588618341, 37.850526994105024 ], [ 140.682614321725168, 37.833324792298086 ], [ 140.68954111579842, 37.811535336675966 ], [ 140.696734325028302, 37.803278279808637 ], [ 140.713252064741397, 37.798232300611929 ], [ 140.728704143827855, 37.783094363021824 ], [ 140.750017356360871, 37.784470539166378 ], [ 140.779323023593804, 37.778507109206643 ], [ 140.790246045016971, 37.772314316556148 ], [ 140.7979720845602, 37.778965834588163 ], [ 140.773994720460536, 37.794562497559788 ], [ 140.788913969233676, 37.800296564828763 ], [ 140.811026427236698, 37.794333134869028 ], [ 140.854185682616077, 37.792039507961434 ], [ 140.8611124766893, 37.800755290210283 ], [ 140.857915494809362, 37.821627295069369 ], [ 140.859247570592657, 37.850985719486545 ], [ 140.864309458569267, 37.860160227116914 ], [ 140.859513985749345, 37.869564097438044 ], [ 140.859513985749345, 37.888142475389536 ], [ 140.896279277368819, 37.899151884545979 ], [ 140.905603807852003, 37.894335268040038 ], [ 140.93144607804831, 37.891812278441684 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1465, "NAME_1": "Gifu", "VARNAME_1": "Gihu", "HASC_1": "JP.GF", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.590067183182327, 36.386504938989106 ], [ 137.58926793771235, 36.372284452162035 ], [ 137.596727562098891, 36.365632934130019 ], [ 137.616975114005271, 36.363568669913185 ], [ 137.638821156851634, 36.339256224692711 ], [ 137.649211347961483, 36.338797499311191 ], [ 137.653740405624745, 36.317008043689071 ], [ 137.649211347961483, 36.284897266982782 ], [ 137.631361532465064, 36.273887857826338 ], [ 137.598858883352193, 36.239024728830941 ], [ 137.578344916289154, 36.210354392486039 ], [ 137.579676992072478, 36.199574346020363 ], [ 137.597793222725556, 36.187876848791646 ], [ 137.595661901472255, 36.16654611855104 ], [ 137.573549443469233, 36.152325631723969 ], [ 137.557564534069456, 36.137187694133857 ], [ 137.563159252359384, 36.12549019690514 ], [ 137.557031703756138, 36.103700741283021 ], [ 137.580209822385797, 36.083287461805448 ], [ 137.605252847112098, 36.073195503412045 ], [ 137.616975114005271, 36.072966140721284 ], [ 137.618040774631936, 36.058975016584974 ], [ 137.604187186485461, 36.043378353613349 ], [ 137.602322280388819, 36.022965074135783 ], [ 137.596727562098891, 36.008285861927192 ], [ 137.576213595035853, 35.992689198955567 ], [ 137.546375097489602, 35.976863173293182 ], [ 137.527459621366546, 35.939247692008678 ], [ 137.505347163363524, 35.93488980088425 ], [ 137.492026405530396, 35.916540785623518 ], [ 137.47843923254058, 35.89108152694925 ], [ 137.457392435164195, 35.888329174660136 ], [ 137.440608280294441, 35.901861573414926 ], [ 137.417163746508095, 35.898421133053539 ], [ 137.382263360985263, 35.887641086587863 ], [ 137.374004491128716, 35.880301480483567 ], [ 137.364679960645532, 35.843832812652849 ], [ 137.343366748112487, 35.840851097672981 ], [ 137.334575047942621, 35.833282128877926 ], [ 137.329246744809353, 35.810804585183533 ], [ 137.343633163269146, 35.794978559521141 ], [ 137.363347884862208, 35.792914295304314 ], [ 137.375070151755381, 35.796584098356462 ], [ 137.396649779445056, 35.794519834139628 ], [ 137.398781100698358, 35.773418466589781 ], [ 137.43554639231786, 35.76791376201156 ], [ 137.450465641090972, 35.755528176710563 ], [ 137.461655077670798, 35.758051166308917 ], [ 137.475508665817273, 35.731903819562369 ], [ 137.490427914590413, 35.71355480430163 ], [ 137.49122716006039, 35.701627944382153 ], [ 137.500551690543602, 35.694976426350138 ], [ 137.502150181483557, 35.684196379884455 ], [ 137.523463394016602, 35.673416333418771 ], [ 137.541846039826339, 35.655296680848792 ], [ 137.545043021706306, 35.644975359764629 ], [ 137.539981133729697, 35.634883401371226 ], [ 137.530123772933166, 35.631901686391359 ], [ 137.519467166666658, 35.61401139651214 ], [ 137.519999996979976, 35.602084536592663 ], [ 137.539448303416378, 35.583276795950411 ], [ 137.541313209513021, 35.572496749484728 ], [ 137.535185660909775, 35.563322241854358 ], [ 137.544776606549647, 35.552542195388682 ], [ 137.536251321536412, 35.538092345870851 ], [ 137.562093591732719, 35.513550537959617 ], [ 137.58180831332578, 35.523183770971499 ], [ 137.606052092582104, 35.528000387477448 ], [ 137.616175868535294, 35.525936123260614 ], [ 137.63482492950169, 35.505752206473801 ], [ 137.628697380898444, 35.489696818120663 ], [ 137.63482492950169, 35.467907362498536 ], [ 137.624967568705159, 35.464237559446389 ], [ 137.603654356172143, 35.448870259165524 ], [ 137.60205586523216, 35.438778300772121 ], [ 137.618840020101914, 35.427080803543404 ], [ 137.621504171668533, 35.416071394386961 ], [ 137.638021911381657, 35.398410467198502 ], [ 137.624168323235182, 35.390612135712686 ], [ 137.594063410532272, 35.386483607279025 ], [ 137.600990204605495, 35.375932923504102 ], [ 137.60711775320874, 35.333271463022889 ], [ 137.564757743299339, 35.306436028204061 ], [ 137.565024158456026, 35.284417209891181 ], [ 137.546375097489602, 35.277765691859166 ], [ 137.524262639486579, 35.280976769529794 ], [ 137.511208296810111, 35.263086479650582 ], [ 137.500018860230256, 35.260792852742988 ], [ 137.46591772017743, 35.238085946357828 ], [ 137.446469413741028, 35.231663791016572 ], [ 137.436878468101156, 35.222718646076956 ], [ 137.424356955738006, 35.231434428325812 ], [ 137.386792418648554, 35.243361288245289 ], [ 137.38785807927519, 35.256434961618559 ], [ 137.375070151755381, 35.259875401979947 ], [ 137.34523165420913, 35.258269863144633 ], [ 137.338837690449225, 35.271343536517911 ], [ 137.310864098999616, 35.288087012943329 ], [ 137.278894280200063, 35.287398924871056 ], [ 137.268504089090214, 35.282811671055867 ], [ 137.25438408578708, 35.266756282702723 ], [ 137.232271627784058, 35.25689368700008 ], [ 137.21442181228764, 35.256434961618559 ], [ 137.200301808984506, 35.250012806277304 ], [ 137.180853502548132, 35.255746873546286 ], [ 137.179255011608149, 35.266985645393483 ], [ 137.162737271895054, 35.27937123069448 ], [ 137.151015005001881, 35.277765691859166 ], [ 137.124906319648915, 35.29267426675851 ], [ 137.103326691959211, 35.296573432501418 ], [ 137.099596879765954, 35.287169562180296 ], [ 137.083345555209519, 35.293362354830791 ], [ 137.069758382219703, 35.306665390894821 ], [ 137.06815989127972, 35.318133525432785 ], [ 137.074553855039625, 35.326619944990874 ], [ 137.066294985183077, 35.333271463022889 ], [ 137.049510830313324, 35.335335727239723 ], [ 137.050842906096648, 35.362171162058544 ], [ 137.011679878067184, 35.378226550411696 ], [ 136.99755987476405, 35.389924047640413 ], [ 136.9850383624009, 35.406438161375071 ], [ 136.991965156474123, 35.421805461655936 ], [ 136.963991565024543, 35.412172228644053 ], [ 136.958130431577956, 35.393364488001801 ], [ 136.938149294828236, 35.387171695351299 ], [ 136.916836082295191, 35.375015472741062 ], [ 136.895789284918834, 35.374786110050302 ], [ 136.875008902699136, 35.3697401308536 ], [ 136.847035311249527, 35.357813270934123 ], [ 136.832382477633075, 35.354143467881975 ], [ 136.810802849943371, 35.35712518286185 ], [ 136.795350770856913, 35.365152877038419 ], [ 136.777500955360495, 35.366529053182973 ], [ 136.767643594563992, 35.360565623223238 ], [ 136.749527363910914, 35.333500825713649 ], [ 136.728480566534529, 35.292215541376997 ], [ 136.71542622385806, 35.282123582983587 ], [ 136.702638296338222, 35.262169028887541 ], [ 136.682124329275183, 35.236709770213267 ], [ 136.679193762551904, 35.180745273668023 ], [ 136.670934892695357, 35.145423419291113 ], [ 136.649088849848994, 35.162625621098051 ], [ 136.648556019535675, 35.148634496961741 ], [ 136.625111485749329, 35.144505968528073 ], [ 136.616319785579464, 35.150469398487814 ], [ 136.608327330879575, 35.166066061459439 ], [ 136.582485060683268, 35.193360221659781 ], [ 136.563036754246866, 35.203452180053191 ], [ 136.560639017836905, 35.214690951900387 ], [ 136.550781657040375, 35.216984578807981 ], [ 136.55184731766704, 35.227764625273664 ], [ 136.539592220460548, 35.246343003225157 ], [ 136.530267689977336, 35.254370697401725 ], [ 136.518279007927504, 35.250012806277304 ], [ 136.513483535107582, 35.236480407522514 ], [ 136.462331825028315, 35.229828889490491 ], [ 136.446613330785198, 35.21560840266342 ], [ 136.426898609192136, 35.220883744550889 ], [ 136.418106909022271, 35.214690951900387 ], [ 136.395994451019249, 35.227076537201384 ], [ 136.381874447716115, 35.243590650936042 ], [ 136.39812577227255, 35.252535795875659 ], [ 136.398925017742528, 35.291298090613957 ], [ 136.415442757455651, 35.312628820854563 ], [ 136.415442757455651, 35.323408867320246 ], [ 136.423968042468857, 35.350703027520588 ], [ 136.416242002925628, 35.357583908243363 ], [ 136.417041248395606, 35.368593317399807 ], [ 136.439420121555287, 35.375932923504102 ], [ 136.445281255001873, 35.386942332660539 ], [ 136.42849710013212, 35.399557280652296 ], [ 136.418106909022271, 35.421805461655936 ], [ 136.426099363722159, 35.441530653061228 ], [ 136.422902381842192, 35.463549471374108 ], [ 136.402921245092472, 35.472494616313725 ], [ 136.390932563042639, 35.490384906192936 ], [ 136.405052566345773, 35.516073527557964 ], [ 136.403187660249131, 35.527082936714407 ], [ 136.384005768969416, 35.535339993581736 ], [ 136.374947653642892, 35.556441361131583 ], [ 136.362159726123053, 35.545661314665907 ], [ 136.359229159399774, 35.535798718963257 ], [ 136.34510915609664, 35.534193180127943 ], [ 136.342445004529992, 35.544285138521346 ], [ 136.319799716213652, 35.547725578882734 ], [ 136.325660849660238, 35.573643562938528 ], [ 136.320598961683658, 35.604378163500257 ], [ 136.325660849660238, 35.6142407592029 ], [ 136.315803488863708, 35.619745463781122 ], [ 136.29235895507739, 35.617222474182768 ], [ 136.281968763967541, 35.635112764061986 ], [ 136.279038197244233, 35.661030748117774 ], [ 136.292092539920731, 35.666535452695996 ], [ 136.296355182427334, 35.688095545627363 ], [ 136.31234009182711, 35.700251768237599 ], [ 136.329124246696864, 35.728922104582495 ], [ 136.324595189033602, 35.75919797976271 ], [ 136.329657077010182, 35.769289938156113 ], [ 136.351236704699886, 35.776629544260409 ], [ 136.374947653642892, 35.789244492252166 ], [ 136.385071429596053, 35.79107939377824 ], [ 136.407183887599075, 35.780299347312557 ], [ 136.434358233578706, 35.771812927754468 ], [ 136.456737106738387, 35.773418466589781 ], [ 136.477517488958085, 35.769748663537634 ], [ 136.488174095224593, 35.772271653135988 ], [ 136.499896362117767, 35.762409057433338 ], [ 136.503626174311051, 35.751170285586142 ], [ 136.516414101830861, 35.75896861707195 ], [ 136.515881271517543, 35.769289938156113 ], [ 136.531866180917319, 35.782822336910911 ], [ 136.540924296243873, 35.777776357714203 ], [ 136.573426945356744, 35.774106554662055 ], [ 136.598203554926386, 35.791996844541274 ], [ 136.624312240279352, 35.784886601127738 ], [ 136.631239034352575, 35.792455569922794 ], [ 136.655216398452239, 35.795437284902661 ], [ 136.656814889392223, 35.785345326509258 ], [ 136.668537156285396, 35.781904886147871 ], [ 136.676529610985256, 35.788327041489126 ], [ 136.709032260098155, 35.788327041489126 ], [ 136.725816414967909, 35.802088802934676 ], [ 136.754322836730836, 35.803923704460757 ], [ 136.763913782370707, 35.807364144822145 ], [ 136.782030013023785, 35.795666647593421 ], [ 136.794018695073618, 35.801171352171643 ], [ 136.799613413363517, 35.810804585183533 ], [ 136.802810395243483, 35.833282128877926 ], [ 136.821992286523198, 35.840621734982221 ], [ 136.834513798886377, 35.852319232210945 ], [ 136.825189268403165, 35.881677656628121 ], [ 136.825189268403165, 35.893145791166077 ], [ 136.811602095413349, 35.909659904900742 ], [ 136.786559070687048, 35.924339117109326 ], [ 136.792953034446953, 35.944523033896139 ], [ 136.771639821913936, 35.948422199639047 ], [ 136.752990760947512, 35.955991168434096 ], [ 136.755388497357501, 35.978009986746983 ], [ 136.741534909211026, 35.98993684666646 ], [ 136.730079057474512, 35.993147924337087 ], [ 136.742600569837663, 36.050488597026884 ], [ 136.767910009720651, 36.065397171926236 ], [ 136.756986988297456, 36.085810451403802 ], [ 136.759118309550757, 36.096131772487965 ], [ 136.768176424877311, 36.103930103973781 ], [ 136.782562843337104, 36.130765538792602 ], [ 136.77110699160059, 36.161041413972818 ], [ 136.801744734616818, 36.170445284293947 ], [ 136.803609640713461, 36.181684056141144 ], [ 136.829984741223086, 36.21195993132136 ], [ 136.849433047659488, 36.239483454212461 ], [ 136.847568141562846, 36.255309479874846 ], [ 136.817463228859935, 36.267006977103563 ], [ 136.808937943846729, 36.272970407063305 ], [ 136.796150016326919, 36.296824126902258 ], [ 136.825722098716483, 36.300035204572886 ], [ 136.833714553416371, 36.307145447986422 ], [ 136.84410474452622, 36.333292794732969 ], [ 136.840374932332963, 36.343843478507893 ], [ 136.860356069082655, 36.34682519348776 ], [ 136.879271545205739, 36.366779747583813 ], [ 136.883267772555683, 36.34728391886928 ], [ 136.892325887882208, 36.342467302363339 ], [ 136.910175703378627, 36.357375877262683 ], [ 136.940547031238196, 36.345907742724727 ], [ 136.956531940637973, 36.336045147022077 ], [ 136.973848925821045, 36.304622458388067 ], [ 136.960794583144576, 36.274575945898619 ], [ 136.978111568327677, 36.271364868227991 ], [ 136.999957611174011, 36.284667904292021 ], [ 137.010880632597207, 36.287190893890369 ], [ 137.030595354190268, 36.314026328709197 ], [ 137.04071913014343, 36.314255691399957 ], [ 137.055105548603251, 36.333292794732969 ], [ 137.052174981879944, 36.342926027744852 ], [ 137.059368191109854, 36.351641809993708 ], [ 137.061233097206497, 36.368614649109887 ], [ 137.079082912702887, 36.380082783647843 ], [ 137.097731973669312, 36.380770871720124 ], [ 137.09560065241601, 36.391321555495047 ], [ 137.126238395432239, 36.416551451478554 ], [ 137.147018777651937, 36.442469435534349 ], [ 137.166733499244998, 36.451414580473951 ], [ 137.176857275198188, 36.448891590875604 ], [ 137.194440675537919, 36.452102668546232 ], [ 137.206962187901098, 36.434441741357773 ], [ 137.242128988580589, 36.447974140112564 ], [ 137.258113897980365, 36.451414580473951 ], [ 137.281558431766712, 36.462653352321155 ], [ 137.301006738203085, 36.455313746216859 ], [ 137.311396929312934, 36.460359725413561 ], [ 137.319655799169482, 36.453249482000025 ], [ 137.309798438372951, 36.434212378667013 ], [ 137.313261835409577, 36.42457914565513 ], [ 137.355888260475638, 36.431689389068666 ], [ 137.368942603152135, 36.447744777421804 ], [ 137.392653552095112, 36.455543108907619 ], [ 137.400113176481682, 36.431460026377906 ], [ 137.406773555398246, 36.42389105758285 ], [ 137.463786398924128, 36.409441208065019 ], [ 137.477639987070575, 36.422285518747536 ], [ 137.500018860230256, 36.423202969510569 ], [ 137.515470939316714, 36.416092726097034 ], [ 137.523729809173261, 36.402789690033003 ], [ 137.542911700453004, 36.389486653968973 ], [ 137.567954725179305, 36.385358125535305 ], [ 137.590067183182327, 36.386504938989106 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1466, "NAME_1": "Gunma", "VARNAME_1": "GunmaGumma", "HASC_1": "JP.GM", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.242107569648908, 36.94477372829698 ], [ 139.242373984805567, 36.929635790706868 ], [ 139.297255507078148, 36.932158780305222 ], [ 139.305247961778036, 36.925507262273207 ], [ 139.339881932144209, 36.923442998056373 ], [ 139.364658541713851, 36.91358040235373 ], [ 139.376647223763683, 36.915185941189037 ], [ 139.385438923933549, 36.908763785847782 ], [ 139.383041187523588, 36.894772661711471 ], [ 139.364392126557192, 36.871607029944798 ], [ 139.355866841543957, 36.845918408579763 ], [ 139.3750487328237, 36.836973263640161 ], [ 139.408084212249889, 36.828028118700544 ], [ 139.390234396753499, 36.802110134644764 ], [ 139.380643451113627, 36.798669694283369 ], [ 139.380110620800281, 36.788348373199206 ], [ 139.356133256700645, 36.770458083319994 ], [ 139.357998162797287, 36.749815441151661 ], [ 139.367322693280471, 36.744540099264199 ], [ 139.370519675160438, 36.72275064364208 ], [ 139.356399671857304, 36.701649276092233 ], [ 139.340414762457527, 36.686740701192889 ], [ 139.342013253397511, 36.676648742799479 ], [ 139.330823816817656, 36.651189484125211 ], [ 139.331356647130974, 36.630546841956885 ], [ 139.348940047470734, 36.622519147780309 ], [ 139.354268350604002, 36.613344640149947 ], [ 139.386238169403555, 36.608986749025519 ], [ 139.405952890996588, 36.600270966776669 ], [ 139.415011006323141, 36.604858220591851 ], [ 139.436857049169475, 36.598665427941356 ], [ 139.446181579652688, 36.602793956375024 ], [ 139.468027622499051, 36.603023319065784 ], [ 139.475487246885621, 36.596371801033762 ], [ 139.48561102283881, 36.575270433483922 ], [ 139.460567998112481, 36.550040537500408 ], [ 139.444050258399386, 36.548893724046607 ], [ 139.443251012929409, 36.528709807259801 ], [ 139.433393652132878, 36.510131429308309 ], [ 139.423536291336347, 36.499580745533386 ], [ 139.429131009626275, 36.481231730272647 ], [ 139.44058686136276, 36.468387419590137 ], [ 139.434992143072861, 36.459671637341287 ], [ 139.4152774214798, 36.451414580473951 ], [ 139.388369490656828, 36.416551451478554 ], [ 139.368654769063795, 36.386963664370619 ], [ 139.370519675160438, 36.365632934130019 ], [ 139.39769402114004, 36.344072841198653 ], [ 139.424069121649666, 36.333292794732969 ], [ 139.426999688372973, 36.321365934813493 ], [ 139.421937800396364, 36.309668437584776 ], [ 139.431795161192895, 36.299576479191373 ], [ 139.452841958569252, 36.285355992364302 ], [ 139.463764979992447, 36.284209178910501 ], [ 139.478684228765559, 36.26975932939267 ], [ 139.529569523688167, 36.281456826621394 ], [ 139.557276699981117, 36.271594230918751 ], [ 139.565535569837664, 36.264025262123695 ], [ 139.607895579747066, 36.265172075577489 ], [ 139.622281998206859, 36.271594230918751 ], [ 139.641197474329942, 36.261731635216101 ], [ 139.636934831823311, 36.250034137987384 ], [ 139.644128041053222, 36.239942179593982 ], [ 139.661178611079634, 36.228244682365258 ], [ 139.662510686862959, 36.217693998590335 ], [ 139.646792192619841, 36.193610916060621 ], [ 139.622015583050199, 36.186500672647085 ], [ 139.605497843337105, 36.201179884855677 ], [ 139.585783121744043, 36.206225864052378 ], [ 139.537295563231396, 36.189941113008473 ], [ 139.494136307852017, 36.188564936863919 ], [ 139.466961961872386, 36.186041947265565 ], [ 139.447247240279353, 36.193610916060621 ], [ 139.420072894299722, 36.214941646301227 ], [ 139.401423833333325, 36.223886791240837 ], [ 139.3750487328237, 36.241318355738535 ], [ 139.363859296243845, 36.243382619955369 ], [ 139.340414762457527, 36.238336640758661 ], [ 139.331356647130974, 36.232831936180446 ], [ 139.30951060428464, 36.23443747501576 ], [ 139.28180342799169, 36.244529433409163 ], [ 139.25169851528878, 36.238336640758661 ], [ 139.214933223669306, 36.255997567947119 ], [ 139.196816993016228, 36.261043547143828 ], [ 139.165646419686652, 36.273658495135578 ], [ 139.130213203850502, 36.275952122043172 ], [ 139.1107648974141, 36.258061832163953 ], [ 139.101706782087575, 36.238566003449421 ], [ 139.076397342204586, 36.201867972927957 ], [ 139.06787205719138, 36.194987092205174 ], [ 139.06041243280481, 36.172738911201535 ], [ 139.066806396564743, 36.15668352284839 ], [ 139.052153562948263, 36.149573279434854 ], [ 139.045493184031699, 36.12549019690514 ], [ 139.026577707908643, 36.130765538792602 ], [ 138.999936192242359, 36.122508481925273 ], [ 138.967966373442806, 36.122508481925273 ], [ 138.960773164212895, 36.105306280118334 ], [ 138.934131648546611, 36.084893000640761 ], [ 138.90429315100036, 36.087645352929876 ], [ 138.867261444224226, 36.073883591484325 ], [ 138.850210874197813, 36.064020995781675 ], [ 138.846214646847869, 36.053240949315992 ], [ 138.832361058701395, 36.038561737107408 ], [ 138.820905206964881, 36.032368944456906 ], [ 138.798792748961858, 36.027781690641724 ], [ 138.779344442525485, 36.033974483292226 ], [ 138.75803122999244, 36.031222131003112 ], [ 138.750038775292552, 36.011496939597819 ], [ 138.730856884012837, 35.992689198955567 ], [ 138.72046669290296, 35.98993684666646 ], [ 138.702084047093223, 35.986267043614312 ], [ 138.690361780200078, 35.990624934738733 ], [ 138.683967816440145, 36.007597773854918 ], [ 138.653063658267257, 36.015625468031487 ], [ 138.640275730747447, 36.03512129674602 ], [ 138.646136864194034, 36.064250358472435 ], [ 138.633615351830883, 36.088333441002149 ], [ 138.650399506700637, 36.10255392782922 ], [ 138.636013088240844, 36.130306813411082 ], [ 138.625090066817648, 36.128930637266528 ], [ 138.603244023971314, 36.133517891081709 ], [ 138.593653078331442, 36.152325631723969 ], [ 138.581131565968292, 36.164940579715719 ], [ 138.58912402066818, 36.171821460438494 ], [ 138.612568554454498, 36.158289061683703 ], [ 138.634947427614179, 36.178014253088996 ], [ 138.628819879010933, 36.196821993731248 ], [ 138.636812333710822, 36.211271843249079 ], [ 138.625090066817648, 36.2117305686306 ], [ 138.60697383616457, 36.250034137987384 ], [ 138.603510439127973, 36.275264033970892 ], [ 138.646669694507352, 36.290631334251756 ], [ 138.655994224990565, 36.303016919552761 ], [ 138.650932337013955, 36.312420789873883 ], [ 138.655194979520559, 36.323659561721087 ], [ 138.653330073423916, 36.343155390435612 ], [ 138.659191206870503, 36.363798032603938 ], [ 138.654129318893922, 36.372743177543555 ], [ 138.653862903737263, 36.393844545093394 ], [ 138.64480478841071, 36.41104674690034 ], [ 138.625090066817648, 36.413111011117167 ], [ 138.602711193657967, 36.420909342602982 ], [ 138.567011562665158, 36.417010176860074 ], [ 138.544632689505477, 36.400725425816177 ], [ 138.533709668082281, 36.399578612362376 ], [ 138.499874943186114, 36.41104674690034 ], [ 138.489484752076237, 36.398431798908582 ], [ 138.467638709229902, 36.40118415119769 ], [ 138.451120969516779, 36.416780814169314 ], [ 138.404231901944115, 36.431689389068666 ], [ 138.406363223197417, 36.463341440393435 ], [ 138.401034920064177, 36.484672170634035 ], [ 138.415687753680629, 36.538343040271684 ], [ 138.431672663080406, 36.552563527098755 ], [ 138.431939078237065, 36.563802298945959 ], [ 138.423946623537176, 36.570453816977974 ], [ 138.4308734176104, 36.593390086053894 ], [ 138.441530023876936, 36.596601163724522 ], [ 138.444727005756874, 36.607610572880965 ], [ 138.455117196866723, 36.608986749025519 ], [ 138.461244745469969, 36.628711940430811 ], [ 138.479360976123047, 36.641556251113329 ], [ 138.490017582389584, 36.638803898824214 ], [ 138.528114949792354, 36.648207769145344 ], [ 138.534508913552287, 36.656923551394186 ], [ 138.52118815571913, 36.673667027819612 ], [ 138.5286477801057, 36.692474768461864 ], [ 138.547829671385415, 36.7007318253292 ], [ 138.592054587391459, 36.703713540309067 ], [ 138.619228933371062, 36.707612706051975 ], [ 138.625090066817648, 36.716787213682338 ], [ 138.675708946583597, 36.727567260148021 ], [ 138.69782140458662, 36.741099658902812 ], [ 138.710609332106458, 36.734448140870796 ], [ 138.725528580879569, 36.749586078460908 ], [ 138.728991977916195, 36.760136762235831 ], [ 138.74071424480934, 36.75898994878203 ], [ 138.767888590788971, 36.74591627540876 ], [ 138.789734633635334, 36.742017109665852 ], [ 138.803055391468462, 36.757155047255957 ], [ 138.824102188844847, 36.760824850308104 ], [ 138.829963322291434, 36.769081907175433 ], [ 138.833426719328031, 36.789724549343759 ], [ 138.824635019158166, 36.809908466130572 ], [ 138.83582445573802, 36.8131195438012 ], [ 138.857404083427696, 36.808761652676779 ], [ 138.884844844563986, 36.82275277681309 ], [ 138.915482587580215, 36.825963854483717 ], [ 138.933065987919974, 36.834220911351046 ], [ 138.920278060400136, 36.852340563921018 ], [ 138.922409381653438, 36.872983206089351 ], [ 138.935197309173276, 36.890873495968563 ], [ 138.957842597489616, 36.892249672113124 ], [ 138.977823734239337, 36.886744967534902 ], [ 138.982619207059258, 36.896836925928305 ], [ 138.968232788599465, 36.943397552152419 ], [ 138.969032034069443, 36.975508328858709 ], [ 139.000469022555677, 36.976196416930989 ], [ 139.021515819932034, 36.983994748416798 ], [ 139.031639595885224, 36.981242396127691 ], [ 139.052153562948263, 36.987205826087425 ], [ 139.058281111551509, 36.995462882954754 ], [ 139.08545545753114, 37.009224644400312 ], [ 139.093714327387687, 37.016793613195361 ], [ 139.093714327387687, 37.038812431508248 ], [ 139.100108291147592, 37.055555907933666 ], [ 139.110232067100782, 37.052574192953799 ], [ 139.129680373537184, 37.03560135383762 ], [ 139.133943016043787, 37.026197483516491 ], [ 139.157387549830105, 37.004866753275884 ], [ 139.177901516893144, 36.992251805284127 ], [ 139.178967177519809, 36.971609163115801 ], [ 139.183496235183071, 36.961517204722398 ], [ 139.209871335692696, 36.952801422473549 ], [ 139.230385302755735, 36.95853548974253 ], [ 139.242107569648908, 36.94477372829698 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1467, "NAME_1": "Hiroshima", "VARNAME_1": "Hirosima", "HASC_1": "JP.HS", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.534573170347301, 34.07131793846581 ], [ 132.539102228010563, 34.066042596578356 ], [ 132.534306755190642, 34.047005493245337 ], [ 132.520453167044167, 34.050445933606724 ], [ 132.534573170347301, 34.07131793846581 ] ] ], [ [ [ 132.389643325122677, 34.175219237379729 ], [ 132.411222952812381, 34.16719154320316 ], [ 132.413620689222341, 34.150218704086974 ], [ 132.400299931389213, 34.146319538344073 ], [ 132.388044834182693, 34.149759978705461 ], [ 132.382982946206113, 34.158934486335824 ], [ 132.389643325122677, 34.175219237379729 ] ] ], [ [ [ 132.783937756983761, 34.161228113243418 ], [ 132.773014735560594, 34.161228113243418 ], [ 132.770616999150604, 34.174072423925935 ], [ 132.782339266043778, 34.188292910752999 ], [ 132.792729457153627, 34.185311195773131 ], [ 132.800189081540196, 34.174989874688968 ], [ 132.783937756983761, 34.161228113243418 ] ] ], [ [ [ 132.849742300679509, 34.190815900351353 ], [ 132.869457022272542, 34.176824776215042 ], [ 132.855603434126067, 34.165127278986319 ], [ 132.819637387976599, 34.150906792159255 ], [ 132.802586817950157, 34.154805957902155 ], [ 132.807382290770107, 34.177971589668836 ], [ 132.846278903642883, 34.195173791475781 ], [ 132.849742300679509, 34.190815900351353 ] ] ], [ [ [ 132.674707542751975, 34.20251339758007 ], [ 132.684564903548505, 34.187834185371486 ], [ 132.67337546696865, 34.172466885090614 ], [ 132.644602630049064, 34.173843061235175 ], [ 132.656324896942238, 34.195861879548055 ], [ 132.674707542751975, 34.20251339758007 ] ] ], [ [ [ 132.711472834371449, 34.204577661796904 ], [ 132.744241898640979, 34.193568252640461 ], [ 132.759960392884096, 34.191045263042113 ], [ 132.765821526330683, 34.177742226978076 ], [ 132.749303786617588, 34.162604289387971 ], [ 132.738114350037733, 34.173384335853655 ], [ 132.717067552661376, 34.172925610472134 ], [ 132.691491697621728, 34.183705656937818 ], [ 132.686429809645148, 34.196320604929575 ], [ 132.700016982634963, 34.204577661796904 ], [ 132.711472834371449, 34.204577661796904 ] ] ], [ [ [ 132.931798168931664, 34.284625240871861 ], [ 132.942188360041513, 34.277744360149086 ], [ 132.932330999244982, 34.251367650711778 ], [ 132.91767816562853, 34.233018635451046 ], [ 132.920875147508497, 34.215128345571827 ], [ 132.892102310588882, 34.21237599328272 ], [ 132.885175516515659, 34.206871288704498 ], [ 132.856402679596073, 34.208018102158292 ], [ 132.842282676292939, 34.223156039748396 ], [ 132.847078149112861, 34.231413096615725 ], [ 132.838819279256313, 34.241734417699895 ], [ 132.877982307285777, 34.248615298422671 ], [ 132.888106083238938, 34.261459609105188 ], [ 132.900894010758776, 34.252514464165571 ], [ 132.907820804831999, 34.264900049466576 ], [ 132.931798168931664, 34.284625240871861 ] ] ], [ [ [ 132.490081839184597, 34.283249064727308 ], [ 132.499139954511122, 34.265129412157329 ], [ 132.49194674528124, 34.247009759587357 ], [ 132.496209387787843, 34.238293977338508 ], [ 132.489815424027938, 34.219486236696255 ], [ 132.491147499811234, 34.204118936415384 ], [ 132.472764854001497, 34.185081833082371 ], [ 132.488216933087955, 34.160081299789624 ], [ 132.490881084654575, 34.149989341396214 ], [ 132.460243341638346, 34.133704590352309 ], [ 132.446123338335212, 34.137145030713704 ], [ 132.443725601925252, 34.169714532801507 ], [ 132.450918811155134, 34.18049457926719 ], [ 132.436798807852028, 34.194944428785021 ], [ 132.43413465628538, 34.178430315050356 ], [ 132.422145974235548, 34.181412030030224 ], [ 132.420014652982246, 34.197696781074129 ], [ 132.406960310305777, 34.203660211033863 ], [ 132.384315021989437, 34.227972656254337 ], [ 132.388311249339381, 34.240816966936855 ], [ 132.380851624952811, 34.252743826856332 ], [ 132.38857766449604, 34.260771521032908 ], [ 132.413087858909023, 34.259624707579107 ], [ 132.425342956115514, 34.254808091073166 ], [ 132.443992017081911, 34.223156039748396 ], [ 132.458112020385045, 34.230495645852692 ], [ 132.465038814458296, 34.216733884407141 ], [ 132.478892402604743, 34.22590839203751 ], [ 132.472232023688179, 34.242651868462929 ], [ 132.460776171951665, 34.250220837257984 ], [ 132.441327865515291, 34.244716132679763 ], [ 132.433335410815403, 34.254349365691652 ], [ 132.445590508021894, 34.266505588301882 ], [ 132.434667486598698, 34.277285634767566 ], [ 132.441327865515291, 34.288753769305529 ], [ 132.463973153831631, 34.287836318542489 ], [ 132.490081839184597, 34.283249064727308 ] ] ], [ [ [ 132.916612505001893, 34.299304453080453 ], [ 132.925670620328418, 34.285542691634902 ], [ 132.915546844375228, 34.278891173602887 ], [ 132.90755438967534, 34.294029111192991 ], [ 132.916612505001893, 34.299304453080453 ] ] ], [ [ [ 132.334495387693465, 34.305038520349427 ], [ 132.346750484899957, 34.294029111192991 ], [ 132.34834897583994, 34.282560976655027 ], [ 132.319842554077013, 34.262147697177461 ], [ 132.303324814363918, 34.244028044607489 ], [ 132.275617638070969, 34.232559910069526 ], [ 132.262563295394472, 34.252514464165571 ], [ 132.276683298697606, 34.262377059868221 ], [ 132.289737641374103, 34.287606955851729 ], [ 132.301992738580594, 34.294029111192991 ], [ 132.334495387693465, 34.305038520349427 ] ] ], [ [ [ 133.13427368799546, 34.316047929505871 ], [ 133.144930294261968, 34.309855136855376 ], [ 133.150258597395236, 34.297928276935892 ], [ 133.14706161551527, 34.288065681233249 ], [ 133.117489533125706, 34.275221370550739 ], [ 133.11136198452246, 34.265588137538849 ], [ 133.093512169026042, 34.256184267217719 ], [ 133.070866880709701, 34.260771521032908 ], [ 133.067936313986394, 34.273157106333905 ], [ 133.084187638542829, 34.307332147257021 ], [ 133.095909905436002, 34.316736017578151 ], [ 133.107365757172516, 34.310313862236896 ], [ 133.13427368799546, 34.316047929505871 ] ] ], [ [ [ 132.445856923178553, 34.313066214526003 ], [ 132.433868241128721, 34.297469551554379 ], [ 132.420813898452252, 34.30320361882336 ], [ 132.433868241128721, 34.313983665289037 ], [ 132.445856923178553, 34.313066214526003 ] ] ], [ [ [ 133.08125707181955, 34.331873955168255 ], [ 133.086851790109478, 34.313983665289037 ], [ 133.082056317289528, 34.303662344204874 ], [ 133.067403483673075, 34.3029742561326 ], [ 133.061808765383148, 34.314901116052077 ], [ 133.065005747263115, 34.32453434906396 ], [ 133.08125707181955, 34.331873955168255 ] ] ], [ [ [ 133.155054070215158, 34.357562576533283 ], [ 133.176900113061521, 34.355268949625696 ], [ 133.177432943374868, 34.343571452396972 ], [ 133.185158982918068, 34.336002483601924 ], [ 133.195549174027917, 34.338296110509511 ], [ 133.210734837957716, 34.313524939907524 ], [ 133.198479740751225, 34.306873421875501 ], [ 133.203008798414487, 34.296093375409825 ], [ 133.192352192147979, 34.273845194406178 ], [ 133.180629925254806, 34.28003798705668 ], [ 133.174768791808219, 34.290359308140843 ], [ 133.156652561155141, 34.298157639626652 ], [ 133.141466897225371, 34.325910525208513 ], [ 133.133474442525483, 34.33439694476661 ], [ 133.137204254718768, 34.345635716613806 ], [ 133.155054070215158, 34.357562576533283 ] ] ], [ [ [ 133.116956702812388, 34.359626840750117 ], [ 133.12681406360889, 34.336919934364957 ], [ 133.11162839967912, 34.316965380268911 ], [ 133.095110659966025, 34.32476371175472 ], [ 133.103902360135891, 34.355957037697969 ], [ 133.116956702812388, 34.359626840750117 ] ] ], [ [ [ 133.319432221876184, 34.369489436452767 ], [ 133.334617885805955, 34.354580861553416 ], [ 133.321829958286145, 34.353434048099622 ], [ 133.301582406379765, 34.341965913561658 ], [ 133.26774768148357, 34.333020768622049 ], [ 133.264550699603632, 34.348388068902921 ], [ 133.29065938495657, 34.358480027296324 ], [ 133.301848821536424, 34.368342622998966 ], [ 133.319432221876184, 34.369489436452767 ] ] ], [ [ [ 133.26241937835033, 34.382563109826037 ], [ 133.278670702906766, 34.374076690267948 ], [ 133.270678248206877, 34.361232379585431 ], [ 133.259488811627023, 34.365819633400619 ], [ 133.26241937835033, 34.382563109826037 ] ] ], [ [ [ 133.168374828048314, 34.386232912878185 ], [ 133.172637470554918, 34.373617964886428 ], [ 133.157718221781806, 34.373617964886428 ], [ 133.152922748961856, 34.385086099424385 ], [ 133.168374828048314, 34.386232912878185 ] ] ], [ [ [ 133.219792953284241, 34.407104917737271 ], [ 133.236044277840676, 34.406416829664991 ], [ 133.237109938467341, 34.39265506821944 ], [ 133.218993707814263, 34.37958139484617 ], [ 133.216063141090984, 34.363067281111505 ], [ 133.189954455738018, 34.357333213842523 ], [ 133.174235961494901, 34.366507721472892 ], [ 133.172371055398258, 34.3928844309102 ], [ 133.185691813231415, 34.395636783199308 ], [ 133.213665404680995, 34.409398544644858 ], [ 133.219792953284241, 34.407104917737271 ] ] ], [ [ [ 133.143864633635332, 35.073174171701964 ], [ 133.144131048791991, 35.062164762545521 ], [ 133.163046524915046, 35.070651182103617 ], [ 133.171571809928281, 35.064687752143875 ], [ 133.215530310777638, 35.070421819412857 ], [ 133.231248805020755, 35.064687752143875 ], [ 133.234712202057381, 35.074091622465005 ], [ 133.250963526613816, 35.075467798609559 ], [ 133.272010323990173, 35.054595793750472 ], [ 133.275740136183458, 35.044733198047822 ], [ 133.294122781993195, 35.031659524674552 ], [ 133.306111464043028, 35.015145410939894 ], [ 133.323162034069469, 35.00367727640193 ], [ 133.322895618912781, 34.987851250739546 ], [ 133.309308445922994, 34.970649048932607 ], [ 133.299983915439782, 34.953217484434909 ], [ 133.311972597489614, 34.933721655720376 ], [ 133.304512973103044, 34.926840774997601 ], [ 133.307177124669693, 34.916519453913438 ], [ 133.301582406379765, 34.907115583592315 ], [ 133.299451085126464, 34.886472941423982 ], [ 133.329289582672715, 34.853903439336179 ], [ 133.34820505879577, 34.826379916445077 ], [ 133.375112989618714, 34.811471341545726 ], [ 133.380707707908641, 34.802984921987637 ], [ 133.36578845913553, 34.755965570382003 ], [ 133.372182422895435, 34.740598270101138 ], [ 133.363390722725541, 34.725460332511034 ], [ 133.371916007738776, 34.718808814479011 ], [ 133.376711480558697, 34.694725731949298 ], [ 133.386568841355228, 34.676606079379326 ], [ 133.405217902321624, 34.666743483676676 ], [ 133.390565068705172, 34.638302510022541 ], [ 133.394827711211775, 34.628898639701411 ], [ 133.386036011041909, 34.618347955926488 ], [ 133.408148469044932, 34.586695904601719 ], [ 133.424666208758026, 34.583255464240331 ], [ 133.431859417987909, 34.564906448979599 ], [ 133.441183948471121, 34.558025568256824 ], [ 133.452106969894288, 34.539676552996085 ], [ 133.452639800207635, 34.522933076570666 ], [ 133.448110742544344, 34.502519797093093 ], [ 133.458500933654193, 34.499996807494746 ], [ 133.453705460834271, 34.476143087655785 ], [ 133.445446590977724, 34.473620098057438 ], [ 133.446512251604361, 34.450683828981518 ], [ 133.436388475651171, 34.442656134804949 ], [ 133.439319042374478, 34.435316528700653 ], [ 133.424932623914685, 34.428435647977878 ], [ 133.394561296055116, 34.425912658379524 ], [ 133.384703935258585, 34.417655601512195 ], [ 133.3809741230653, 34.390590804002613 ], [ 133.384171104945267, 34.382104384444517 ], [ 133.366587704605507, 34.369030711071247 ], [ 133.348471473952429, 34.370865612597321 ], [ 133.336482791902597, 34.380269482918443 ], [ 133.321030712816139, 34.378434581392369 ], [ 133.305578633729709, 34.385774187496665 ], [ 133.290126554643251, 34.383021835207558 ], [ 133.28053560900338, 34.395407420508555 ], [ 133.262952208663648, 34.393801881673241 ], [ 133.253094847867118, 34.388067814404259 ], [ 133.24510239316723, 34.395178057817795 ], [ 133.271743908833514, 34.406646192355751 ], [ 133.274141645243475, 34.418802414965988 ], [ 133.269612587580212, 34.433252264483819 ], [ 133.238708429407325, 34.421325404564342 ], [ 133.234445786900721, 34.411233446170939 ], [ 133.211800498584353, 34.410774720789419 ], [ 133.186757473858052, 34.400453399705256 ], [ 133.148660106455253, 34.39242570552868 ], [ 133.127879724235555, 34.382563109826037 ], [ 133.085786129482813, 34.393113793600961 ], [ 133.090315187146075, 34.383021835207558 ], [ 133.079125750566249, 34.344947628541533 ], [ 133.060210274443193, 34.345176991232293 ], [ 133.046889516610037, 34.335543758220403 ], [ 133.016518188750467, 34.328662877497628 ], [ 132.993872900434127, 34.336919934364957 ], [ 132.983749124480937, 34.331185867095982 ], [ 132.964300818044535, 34.336690571674197 ], [ 132.942188360041513, 34.334855670148123 ], [ 132.928601187051726, 34.32522243713624 ], [ 132.894233631842212, 34.325681162517753 ], [ 132.878515137599095, 34.316506654887391 ], [ 132.861730982729341, 34.297469551554379 ], [ 132.852672867402788, 34.29311166042995 ], [ 132.839352109569631, 34.300451266534246 ], [ 132.836687958003012, 34.312607489144483 ], [ 132.818305312193274, 34.316506654887391 ], [ 132.804718139203459, 34.310084499546136 ], [ 132.78420417214042, 34.275450733241499 ], [ 132.757829071630795, 34.281184800510474 ], [ 132.760226808040755, 34.261459609105188 ], [ 132.773547565873912, 34.255037453763926 ], [ 132.753832844280851, 34.238523340029261 ], [ 132.733318877217812, 34.242422505772169 ], [ 132.696020755285019, 34.2343948115956 ], [ 132.680302261041902, 34.210082366375126 ], [ 132.66831357899207, 34.219256874005495 ], [ 132.659521878822204, 34.206871288704498 ], [ 132.642471308795763, 34.201137221435516 ], [ 132.615030547659501, 34.214898982881067 ], [ 132.596647901849735, 34.228431381635858 ], [ 132.575867519630037, 34.20297212296159 ], [ 132.550824494903736, 34.194715066094261 ], [ 132.556152798036976, 34.174989874688968 ], [ 132.543897700830485, 34.174760511998208 ], [ 132.522318073140809, 34.15732894750051 ], [ 132.533241094563977, 34.1483838025609 ], [ 132.546828267553792, 34.151136154850008 ], [ 132.552955816157038, 34.144255274127232 ], [ 132.546828267553792, 34.129346699227888 ], [ 132.537770152227239, 34.119484103525245 ], [ 132.571338461966775, 34.115814300473097 ], [ 132.568674310400155, 34.099988274810713 ], [ 132.555886382880317, 34.08003372071466 ], [ 132.538036567383926, 34.094942295614011 ], [ 132.524982224707429, 34.094712932923251 ], [ 132.503935427331072, 34.10365807786286 ], [ 132.499139954511122, 34.091731217943384 ], [ 132.485819196677994, 34.091501855252623 ], [ 132.46423956898829, 34.082786073003774 ], [ 132.457312774915067, 34.084162249148328 ], [ 132.447988244431855, 34.109162782441082 ], [ 132.465838059928274, 34.120172191597518 ], [ 132.499672784824469, 34.134163315733829 ], [ 132.507398824367669, 34.140356108384331 ], [ 132.493278821064536, 34.153659144448362 ], [ 132.494344481691201, 34.169255807419987 ], [ 132.506066748584374, 34.188292910752999 ], [ 132.526314300490753, 34.199761045290963 ], [ 132.538036567383926, 34.199761045290963 ], [ 132.544164115987172, 34.209623640993605 ], [ 132.531109773310675, 34.222238588985363 ], [ 132.548693173650435, 34.22522030396523 ], [ 132.558550534446965, 34.237605889266227 ], [ 132.540167888637228, 34.243110593844449 ], [ 132.514325618440921, 34.266964313683403 ], [ 132.518588260947524, 34.281872888582754 ], [ 132.494877312004519, 34.313983665289037 ], [ 132.504201842487731, 34.335543758220403 ], [ 132.496475802944502, 34.34724125544912 ], [ 132.480224478388067, 34.355957037697969 ], [ 132.458911265855022, 34.350681695810508 ], [ 132.44425843223857, 34.355268949625696 ], [ 132.457312774915067, 34.365590270709859 ], [ 132.446123338335212, 34.386691638259705 ], [ 132.437065223008688, 34.360773654203911 ], [ 132.419215407512269, 34.360085566131637 ], [ 132.407493140619096, 34.365131545328339 ], [ 132.380318794639493, 34.360773654203911 ], [ 132.368063697433001, 34.361691104966951 ], [ 132.350480297093242, 34.350222970428987 ], [ 132.339557275670074, 34.337378659746477 ], [ 132.323039535956951, 34.338525473200271 ], [ 132.319043308607007, 34.322928810228646 ], [ 132.299861417327293, 34.304579794967914 ], [ 132.288938395904097, 34.297928276935892 ], [ 132.280146695734231, 34.283019702036547 ], [ 132.238053100981489, 34.261000883723668 ], [ 132.221002530955076, 34.233936086214079 ], [ 132.234323288788232, 34.227513930872824 ], [ 132.217272718761791, 34.219486236696255 ], [ 132.209813094375221, 34.226367117419031 ], [ 132.187167806058881, 34.22476157858371 ], [ 132.152533835692708, 34.232789272760286 ], [ 132.14933685381277, 34.249762111876464 ], [ 132.137614586919597, 34.266734950992642 ], [ 132.140811568799535, 34.277973722839846 ], [ 132.12695798065306, 34.294258473883744 ], [ 132.126425150339742, 34.309396411473855 ], [ 132.130954208003004, 34.320864546011812 ], [ 132.103513446866742, 34.333250131312809 ], [ 132.1016485407701, 34.343112727015452 ], [ 132.084331555586999, 34.353892773481135 ], [ 132.072076458380508, 34.352975322718102 ], [ 132.079802497923737, 34.383709923279831 ], [ 132.073408534163832, 34.39196698014716 ], [ 132.072076458380508, 34.411233446170939 ], [ 132.079802497923737, 34.422701580708896 ], [ 132.080601743393743, 34.444949761712536 ], [ 132.065416079463944, 34.473390735366678 ], [ 132.056624379294078, 34.49265720139045 ], [ 132.040905885050961, 34.499996807494746 ], [ 132.048365509437531, 34.507795138980555 ], [ 132.056091548980731, 34.526832242313567 ], [ 132.086196461683642, 34.534171848417863 ], [ 132.118166280483194, 34.562383459381245 ], [ 132.12695798065306, 34.583255464240331 ], [ 132.119498356266519, 34.605503645243971 ], [ 132.132819114099647, 34.626605012793817 ], [ 132.128822886749703, 34.63715569656874 ], [ 132.150136099282747, 34.65940387757238 ], [ 132.164256102585881, 34.680046519740714 ], [ 132.15706289335597, 34.689909115443356 ], [ 132.136282511136272, 34.694267006567777 ], [ 132.151201759909384, 34.71468028604535 ], [ 132.179441766515652, 34.731882487852289 ], [ 132.189565542468841, 34.730965037089248 ], [ 132.205017621555299, 34.74541488660708 ], [ 132.215407812665148, 34.741745083554932 ], [ 132.242848573801439, 34.776837575241089 ], [ 132.240717252548137, 34.798168305481695 ], [ 132.253771595224606, 34.80390237275067 ], [ 132.28067952604755, 34.793581051666507 ], [ 132.282011601830874, 34.78188355443779 ], [ 132.301193493110588, 34.773626497570461 ], [ 132.311850099377125, 34.792204875521954 ], [ 132.343819918176678, 34.788535072469806 ], [ 132.364333885239716, 34.797021492027895 ], [ 132.385647097772733, 34.79151678744968 ], [ 132.389909740279336, 34.779360564839436 ], [ 132.40136559201585, 34.780278015602477 ], [ 132.417616916572285, 34.794498502429548 ], [ 132.427474277368816, 34.798397668172456 ], [ 132.423744465175531, 34.808718989256619 ], [ 132.444524847395229, 34.814453056525593 ], [ 132.457046359758408, 34.797480217409415 ], [ 132.467170135711569, 34.799315118935489 ], [ 132.509530145620971, 34.792892963594234 ], [ 132.518588260947524, 34.799315118935489 ], [ 132.539635058323881, 34.791975512831193 ], [ 132.558284119290306, 34.804590460822951 ], [ 132.568940725556814, 34.802755559296877 ], [ 132.614497717346154, 34.83624251214772 ], [ 132.624621493299344, 34.838994864436827 ], [ 132.650996593808969, 34.83670123752924 ], [ 132.662452445545483, 34.828902906043425 ], [ 132.684032073235187, 34.847251921304164 ], [ 132.70374679482822, 34.842205942107455 ], [ 132.711472834371449, 34.856426428934526 ], [ 132.703213964514902, 34.878674609938173 ], [ 132.692557358248393, 34.88096823684576 ], [ 132.677904524631941, 34.891518920620683 ], [ 132.668579994148729, 34.887390392187022 ], [ 132.65073017865231, 34.896794262508145 ], [ 132.649131687712327, 34.906886220901555 ], [ 132.658989048508857, 34.919959894274825 ], [ 132.6781709397886, 34.929363764595955 ], [ 132.692290943091734, 34.948859593310488 ], [ 132.730388310494533, 34.953217484434909 ], [ 132.752767183654214, 34.959410277085411 ], [ 132.753832844280851, 34.975006940057028 ], [ 132.766087941487342, 34.977988655036903 ], [ 132.774346811343889, 34.994273406080808 ], [ 132.789532475273688, 35.010099431743186 ], [ 132.808181536240085, 35.023402467807223 ], [ 132.8217687092299, 35.040145944232641 ], [ 132.83189248518309, 35.043815747284789 ], [ 132.830293994243107, 35.0578068714211 ], [ 132.862263813042659, 35.08945892274587 ], [ 132.874518910249151, 35.098633430376239 ], [ 132.89476646215553, 35.101615145356106 ], [ 132.909152880615324, 35.087394658529035 ], [ 132.923006468761798, 35.08074314049702 ], [ 132.953111381464709, 35.072256720938931 ], [ 132.98055214260097, 35.083266130095367 ], [ 132.993073654964121, 35.097945342303959 ], [ 133.018116679690451, 35.083266130095367 ], [ 133.042626874103433, 35.064917114834635 ], [ 133.054881971309925, 35.06721074174223 ], [ 133.061542350226489, 35.076155886681832 ], [ 133.103902360135891, 35.079366964352467 ], [ 133.114558966402399, 35.082578042023094 ], [ 133.143864633635332, 35.073174171701964 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1468, "NAME_1": "Hokkaido", "VARNAME_1": "Ezo|Yeso|Yezo", "HASC_1": "JP.HK", "TYPE_1": "Do", "ENGTYPE_1": "Circuit" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.559674436391077, 42.253143843227733 ], [ 139.561272927331061, 42.229060760698019 ], [ 139.551948396847848, 42.219198164995369 ], [ 139.544755187617966, 42.202225325879184 ], [ 139.522376314458285, 42.186399300216806 ], [ 139.516781596168357, 42.175619253751123 ], [ 139.518380087108341, 42.143279114354073 ], [ 139.505059329275184, 42.097406576202239 ], [ 139.496001213948659, 42.082727363993648 ], [ 139.479749889392224, 42.070571141383411 ], [ 139.467761207342392, 42.071488592146451 ], [ 139.44298459777275, 42.064148986042156 ], [ 139.424335536806325, 42.071488592146451 ], [ 139.424601951962984, 42.106122358451088 ], [ 139.418207988203079, 42.11139770033855 ], [ 139.423003461023029, 42.129517352908522 ], [ 139.419540063986403, 42.143049751663312 ], [ 139.403821569743286, 42.165068569976199 ], [ 139.408350627406548, 42.179977144875551 ], [ 139.433660067289537, 42.215528361943221 ], [ 139.459235922329185, 42.216216450015494 ], [ 139.513584614288391, 42.230895662224086 ], [ 139.536496317761419, 42.233648014513193 ], [ 139.559674436391077, 42.253143843227733 ] ] ], [ [ [ 145.597707546998862, 43.221971848994556 ], [ 145.611294719988678, 43.212109253291914 ], [ 145.599838868252164, 43.204081559115338 ], [ 145.587850186202331, 43.215779056344061 ], [ 145.597707546998862, 43.221971848994556 ] ] ], [ [ [ 145.420275052661367, 43.285734677025616 ], [ 145.459970911004149, 43.273578454415372 ], [ 145.454642607870881, 43.268991200600198 ], [ 145.423738449697993, 43.27816570823056 ], [ 145.420275052661367, 43.285734677025616 ] ] ], [ [ [ 145.270283319460162, 43.610741609831393 ], [ 145.304384459513017, 43.603402003727098 ], [ 145.33395654190258, 43.592851319952175 ], [ 145.343014657229133, 43.585511713847879 ], [ 145.349408620989038, 43.563034170153479 ], [ 145.330226729709324, 43.550648584852482 ], [ 145.303851629199698, 43.553859662523109 ], [ 145.318238047659491, 43.562575444771959 ], [ 145.334222957059268, 43.562116719390445 ], [ 145.344346733012458, 43.569456325494734 ], [ 145.332890881275944, 43.591475143807614 ], [ 145.304917289826335, 43.60019092605647 ], [ 145.284936153076615, 43.593080682642935 ], [ 145.272148225556805, 43.593998133405968 ], [ 145.270283319460162, 43.610741609831393 ] ] ], [ [ [ 141.325740509909394, 44.442410726524223 ], [ 141.335331455549266, 44.430483866604746 ], [ 141.31428465817288, 44.414428478251601 ], [ 141.295902012363143, 44.412822939416287 ], [ 141.294569936579819, 44.42222680973741 ], [ 141.325740509909394, 44.442410726524223 ] ] ], [ [ [ 141.426978269441292, 44.446539254957884 ], [ 141.424580533031332, 44.427502151624878 ], [ 141.394209205171762, 44.430942591986266 ], [ 141.395274865798399, 44.442181363833463 ], [ 141.426978269441292, 44.446539254957884 ] ] ], [ [ [ 141.194397837674586, 45.258712542936188 ], [ 141.218108786617591, 45.249996760687338 ], [ 141.227966147414122, 45.236464361932548 ], [ 141.275121630143445, 45.234170735024954 ], [ 141.283646915156652, 45.223161325868517 ], [ 141.302562391279707, 45.216051082454982 ], [ 141.324142018969411, 45.185316481893246 ], [ 141.328937491789361, 45.150912078279369 ], [ 141.308689939882981, 45.131416249564836 ], [ 141.292172200169858, 45.122241741934474 ], [ 141.286311066723272, 45.109856156633469 ], [ 141.274855214986786, 45.11031488201499 ], [ 141.237557093053965, 45.097470571332479 ], [ 141.201857462061156, 45.116278311974725 ], [ 141.191467270951307, 45.125223456914341 ], [ 141.177347267648145, 45.129122622657249 ], [ 141.159763867308413, 45.147930363299494 ], [ 141.14084839118533, 45.162380212817325 ], [ 141.135253672895431, 45.177747513098197 ], [ 141.142180466968654, 45.190591823780707 ], [ 141.132855936485441, 45.214216180928901 ], [ 141.156300470271788, 45.236005636551027 ], [ 141.169621228104944, 45.238757988840135 ], [ 141.17841292827481, 45.250455486068859 ], [ 141.194397837674586, 45.258712542936188 ] ] ], [ [ [ 140.976470239524332, 45.454817643535293 ], [ 140.999914773310678, 45.434404364057727 ], [ 141.023359307096996, 45.435321814820767 ], [ 141.034282328520192, 45.440367794017469 ], [ 141.044672519630041, 45.45458828084454 ], [ 141.05479629558323, 45.443808234378857 ], [ 141.061456674499794, 45.420642602612176 ], [ 141.056394786523214, 45.406651478475865 ], [ 141.055861956209867, 45.38669692437982 ], [ 141.059858183559811, 45.374999427151096 ], [ 141.059058938089834, 45.351375070002902 ], [ 141.049467992449962, 45.339906935464938 ], [ 141.056394786523214, 45.317429391770546 ], [ 141.0449389347867, 45.298392288437526 ], [ 141.046271010570024, 45.27797900895996 ], [ 141.024957798036979, 45.274079843217052 ], [ 141.015633267553795, 45.283713076228942 ], [ 141.026556288976963, 45.297704200365253 ], [ 141.021227985843694, 45.312154049883077 ], [ 141.003911000660622, 45.327980075545469 ], [ 140.994852885334069, 45.361008303014785 ], [ 140.981265712344282, 45.383027121327672 ], [ 140.991655903454131, 45.408486380001946 ], [ 140.990856657984125, 45.429358384861033 ], [ 140.972207597017729, 45.441973332852783 ], [ 140.976470239524332, 45.454817643535293 ] ] ], [ [ [ 141.937962539920704, 45.522709 ], [ 141.961140658550391, 45.510782140080536 ], [ 141.969665943563598, 45.482341166426401 ], [ 141.998705195639843, 45.459404897350481 ], [ 142.018952747546223, 45.453212104699986 ], [ 142.03200709022272, 45.421560053375217 ], [ 142.0522546421291, 45.39954123506233 ], [ 142.168944480747427, 45.339677572774178 ], [ 142.204111281426947, 45.302750179561954 ], [ 142.224891663646645, 45.284171801610455 ], [ 142.280838846545862, 45.227977942374451 ], [ 142.312275835032068, 45.202748046390944 ], [ 142.377813963571157, 45.145407373701147 ], [ 142.427900013023759, 45.103892726673735 ], [ 142.439888695073591, 45.096553120569439 ], [ 142.480383798886351, 45.062607442337082 ], [ 142.501697011419395, 45.060313815429488 ], [ 142.498766444696116, 45.052974209325193 ], [ 142.507025314552664, 45.040817986714956 ], [ 142.532334754435624, 45.022239608763456 ], [ 142.539527963665535, 45.004119956193485 ], [ 142.538995133352188, 44.991505008201727 ], [ 142.562706082295193, 44.976825795993136 ], [ 142.578957406851629, 44.961458495712279 ], [ 142.579223822008288, 44.948843547720514 ], [ 142.589081182804819, 44.938292863945591 ], [ 142.584019294828238, 44.923384289046254 ], [ 142.600537034541333, 44.904576548403995 ], [ 142.622649492544355, 44.88897988543237 ], [ 142.63144119271422, 44.888062434669337 ], [ 142.658615538693823, 44.840813720372935 ], [ 142.673801202623622, 44.8348502904132 ], [ 142.683392148263493, 44.82131789165841 ], [ 142.700975548603225, 44.807326767522099 ], [ 142.701508378916571, 44.797234809128696 ], [ 142.719358194412962, 44.784849223827692 ], [ 142.727617064269538, 44.770628737000628 ], [ 142.741470652415984, 44.757784426318111 ], [ 142.7723748105889, 44.737829872222065 ], [ 142.793421607965257, 44.715811053909178 ], [ 142.824059350981486, 44.697462038648439 ], [ 142.829920484428072, 44.691039883307184 ], [ 142.859758981974323, 44.67613130840784 ], [ 142.870149173084172, 44.662140184271529 ], [ 142.892528046243854, 44.651818863187366 ], [ 142.9159725800302, 44.629570682183726 ], [ 142.926895601453367, 44.628653231420685 ], [ 142.931691074273289, 44.614662107284374 ], [ 142.954869192902976, 44.598606718931237 ], [ 142.963927308229501, 44.584386232104166 ], [ 142.98897033295583, 44.561220600337485 ], [ 143.020673736598695, 44.541724771622953 ], [ 143.060369594941477, 44.5229170309807 ], [ 143.077686580124578, 44.508925906844389 ], [ 143.15281565430351, 44.469704886724571 ], [ 143.211426988769347, 44.441263913070429 ], [ 143.22581340722914, 44.438511560781315 ], [ 143.230342464892402, 44.423602985881971 ], [ 143.256717565402028, 44.4093824990549 ], [ 143.315861730181183, 44.382547064236071 ], [ 143.348097964137395, 44.370390841625834 ], [ 143.36434928869383, 44.344014132188533 ], [ 143.364882119007177, 44.335986438011957 ], [ 143.41470175330312, 44.308004189739336 ], [ 143.455996102585857, 44.290343262550877 ], [ 143.50048743374856, 44.273829148816219 ], [ 143.487699506228751, 44.254562682792439 ], [ 143.509545549075114, 44.246534988615871 ], [ 143.518337249244979, 44.255938858937 ], [ 143.515673097678359, 44.267865718856477 ], [ 143.539117631464705, 44.258920573916868 ], [ 143.544445934597945, 44.249287340904985 ], [ 143.54098253756132, 44.238277931748542 ], [ 143.557233862117755, 44.238507294439302 ], [ 143.561230089467699, 44.251122242431052 ], [ 143.639556145526598, 44.224516170302991 ], [ 143.742392395998479, 44.192634756287461 ], [ 143.729071638165323, 44.186441963636966 ], [ 143.71921427736882, 44.194240295122775 ], [ 143.688842949509251, 44.195157745885808 ], [ 143.679252003869379, 44.199286274319476 ], [ 143.668328982446184, 44.185065787492405 ], [ 143.685912382785943, 44.169698487211541 ], [ 143.706959180162301, 44.158000989982824 ], [ 143.709889746885608, 44.141028150866646 ], [ 143.720013522838798, 44.135294083597664 ], [ 143.720812768308775, 44.121761684842866 ], [ 143.750118435541708, 44.119926783316799 ], [ 143.759442966024892, 44.112816539903264 ], [ 143.761840702434881, 44.097678602313152 ], [ 143.808463354850886, 44.096761151550119 ], [ 143.841498834277076, 44.107999923397315 ], [ 143.875333559173271, 44.098137327694673 ], [ 143.892384129199684, 44.100660317293027 ], [ 143.944335084748957, 44.085981105084436 ], [ 143.957389427425426, 44.097449239622392 ], [ 143.970177354945264, 44.121073596770593 ], [ 143.971775845885219, 44.131853643236276 ], [ 143.930747911759141, 44.144697953918794 ], [ 143.903573565779539, 44.145844767372587 ], [ 143.8907856382597, 44.154560549621436 ], [ 143.992289812948286, 44.134376632834631 ], [ 144.079673984333709, 44.123137860987427 ], [ 144.097790214986787, 44.127037026730335 ], [ 144.108180406096636, 44.119238695244519 ], [ 144.184907971215551, 44.102724581509861 ], [ 144.171587213382395, 44.097907965003913 ], [ 144.14254796130615, 44.096073063477846 ], [ 144.114574369856541, 44.090797721590377 ], [ 144.098589460456765, 44.027034893559325 ], [ 144.113242294073217, 44.013502494804527 ], [ 144.130292864099658, 44.01166759327846 ], [ 144.151073246319356, 44.016254847093641 ], [ 144.179579668082283, 44.031851510065266 ], [ 144.191301934975456, 44.047218810346138 ], [ 144.197695898735361, 44.067402727132944 ], [ 144.191568350132115, 44.083687478176842 ], [ 144.195031747168741, 44.100660317293027 ], [ 144.216078544545098, 44.10157776805606 ], [ 144.248847608814629, 44.11075227568643 ], [ 144.257905724141182, 44.084834291630642 ], [ 144.252044590694595, 44.061668659863962 ], [ 144.26110270602112, 44.05685204335802 ], [ 144.257106478671176, 44.037126851952728 ], [ 144.272558557757634, 44.023365090507177 ], [ 144.292806109664014, 43.996529655688349 ], [ 144.298933658267259, 43.981621080789004 ], [ 144.317849134390315, 43.971758485086355 ], [ 144.361274804926381, 43.956161822114737 ], [ 144.367402353529627, 43.944923050267533 ], [ 144.394310284352571, 43.925427221553001 ], [ 144.418554063608894, 43.931620014203503 ], [ 144.436936709418632, 43.913729724324284 ], [ 144.444396333805201, 43.92083996773782 ], [ 144.435071803321989, 43.93368427842033 ], [ 144.419619724235559, 43.93460172918337 ], [ 144.367135938372968, 43.948592853319681 ], [ 144.363406126179683, 43.955244371351696 ], [ 144.416156327198934, 43.941711972596906 ], [ 144.491551816534525, 43.927262123079075 ], [ 144.540039375047172, 43.921986781191613 ], [ 144.613037127972802, 43.916482076613391 ], [ 144.702019790298209, 43.917858252757952 ], [ 144.742248478954309, 43.92175741850086 ], [ 144.791801698093622, 43.930014475368182 ], [ 144.804323210456772, 43.940794521833865 ], [ 144.834428123159682, 43.951115842918028 ], [ 144.845883974896168, 43.971299759704841 ], [ 144.875722472442419, 43.982538531552038 ], [ 144.916217576255178, 44.009603329061626 ], [ 144.929804749244994, 44.033227686209827 ], [ 144.942859091921463, 44.038732390788041 ], [ 144.976960231974317, 44.062815473317755 ], [ 144.988948914024149, 44.066944001751423 ], [ 145.009462881087188, 44.084146203558362 ], [ 145.009196465930529, 44.094467524642525 ], [ 145.02171797829368, 44.104100757654415 ], [ 145.037969302850115, 44.107770560706555 ], [ 145.055552703189875, 44.120844234079833 ], [ 145.070471951962986, 44.124514037131981 ], [ 145.080062897602858, 44.136440897051457 ], [ 145.110434225462427, 44.150432021187768 ], [ 145.126419134862203, 44.16556995877788 ], [ 145.191690848244605, 44.194699020504295 ], [ 145.209540663741024, 44.216029750744894 ], [ 145.225259157984141, 44.246764351306631 ], [ 145.281472756039989, 44.290801987932397 ], [ 145.290264456209883, 44.308692277811616 ], [ 145.304917289826335, 44.311215267409963 ], [ 145.313708989996201, 44.33231663495981 ], [ 145.329427484239318, 44.34539030833308 ], [ 145.344346733012458, 44.339426878373345 ], [ 145.341682581445809, 44.325894479618555 ], [ 145.351806357398999, 44.315343795843631 ], [ 145.345945223952413, 44.308692277811616 ], [ 145.349408620989038, 44.294242428293785 ], [ 145.366459191015451, 44.270847433836344 ], [ 145.362196548508848, 44.251351605121812 ], [ 145.34887579067572, 44.243553273636003 ], [ 145.349408620989038, 44.232314501788807 ], [ 145.333690126745921, 44.207772693877573 ], [ 145.329161069082659, 44.191029217452147 ], [ 145.319570123442787, 44.188276865163033 ], [ 145.305982950453, 44.166946134922433 ], [ 145.297457665439765, 44.164423145324079 ], [ 145.284669737919955, 44.149514570424735 ], [ 145.264422186013576, 44.138275798577531 ], [ 145.255364070687051, 44.124055311750467 ], [ 145.240444821913911, 44.08896282006431 ], [ 145.24577312504718, 44.068090815205224 ], [ 145.22286142157418, 44.037585577334248 ], [ 145.206077266704398, 44.029787245848439 ], [ 145.201548209041135, 44.021988914362623 ], [ 145.180501411664778, 44.006850976772512 ], [ 145.178370090411477, 43.997905831832909 ], [ 145.15519197178179, 43.981850443479765 ], [ 145.130681777368807, 43.950657117536508 ], [ 145.119225925632293, 43.923362957336167 ], [ 145.093916485749332, 43.88964664179457 ], [ 145.093383655436014, 43.873361890750665 ], [ 145.098978373725913, 43.859141403923594 ], [ 145.088854597772723, 43.830012342197179 ], [ 145.081661388542841, 43.818544207659215 ], [ 145.06194666694978, 43.806387985048985 ], [ 145.05928251538316, 43.786204068262172 ], [ 145.070471951962986, 43.745377509307033 ], [ 145.09471573121931, 43.724276141757187 ], [ 145.097646297942617, 43.715560359508345 ], [ 145.119225925632293, 43.68895428738027 ], [ 145.136276495658734, 43.658219686818541 ], [ 145.149064423178544, 43.64422856268223 ], [ 145.188760281521326, 43.63161361469048 ], [ 145.195687075594549, 43.59950283798419 ], [ 145.217799533597571, 43.588722791518506 ], [ 145.214336136560945, 43.577713382362063 ], [ 145.223394251887498, 43.5673920612779 ], [ 145.222062176104174, 43.558905641719811 ], [ 145.235382933937331, 43.542391527985146 ], [ 145.24550670989052, 43.513721191640251 ], [ 145.249236522083805, 43.489638109110537 ], [ 145.261491619290297, 43.455463068187413 ], [ 145.262823695073592, 43.436884690235921 ], [ 145.278275774160051, 43.402021561240524 ], [ 145.297724080596424, 43.372204411441828 ], [ 145.322767105322754, 43.344451525859967 ], [ 145.333690126745921, 43.328625500197582 ], [ 145.325431256889374, 43.326102510599227 ], [ 145.306782195922978, 43.333442116703523 ], [ 145.305183704982994, 43.353167308108816 ], [ 145.240444821913911, 43.359360100759318 ], [ 145.22073010032085, 43.340552360117059 ], [ 145.23564934909399, 43.328854862888342 ], [ 145.248703691770459, 43.298120262326606 ], [ 145.277476528690045, 43.32243270754708 ], [ 145.303585214043039, 43.321744619474806 ], [ 145.306515780766318, 43.308900308792289 ], [ 145.302519553416374, 43.283899775499542 ], [ 145.310512008116262, 43.274266542487652 ], [ 145.330759560022642, 43.284817226262575 ], [ 145.357134660532267, 43.27862443361208 ], [ 145.379779948848608, 43.268532475218677 ], [ 145.460237326160808, 43.261651594495902 ], [ 145.476755065873903, 43.272890366343098 ], [ 145.486079596357115, 43.263715858712729 ], [ 145.507392808890131, 43.2554588018454 ], [ 145.515385263590019, 43.239403413492255 ], [ 145.530570927519818, 43.241467677709089 ], [ 145.523910548603226, 43.255229439154647 ], [ 145.50526148763683, 43.280459335138154 ], [ 145.513253942336718, 43.295826635419019 ], [ 145.531103757833137, 43.312570111844437 ], [ 145.540428288316321, 43.311882023772164 ], [ 145.559077349282745, 43.326102510599227 ], [ 145.577459995092482, 43.334359567466564 ], [ 145.593977734805577, 43.353396670799576 ], [ 145.610495474518672, 43.357066473851724 ], [ 145.637403405341615, 43.372663136823348 ], [ 145.650990578331431, 43.391470877465601 ], [ 145.669373224141168, 43.392388328228634 ], [ 145.697879645904095, 43.383672545979792 ], [ 145.7215905948471, 43.383672545979792 ], [ 145.735444182993575, 43.392847053610154 ], [ 145.752228337863329, 43.388259799794973 ], [ 145.765815510853145, 43.391012152084087 ], [ 145.787927968856167, 43.386195535578139 ], [ 145.804179293412602, 43.388030437104213 ], [ 145.811905332955831, 43.369452059152721 ], [ 145.801515141845982, 43.362112453048425 ], [ 145.759687962249899, 43.341928536261619 ], [ 145.705872100603983, 43.334359567466564 ], [ 145.673369451491112, 43.316239914896585 ], [ 145.665909827104542, 43.319680355257972 ], [ 145.634206423461677, 43.319909717948732 ], [ 145.60836415326537, 43.307753495338495 ], [ 145.612360380615314, 43.299267075780406 ], [ 145.587850186202331, 43.279771247065874 ], [ 145.570533201019231, 43.285734677025616 ], [ 145.554814706776142, 43.249266009194898 ], [ 145.549486403642874, 43.230916993934166 ], [ 145.557212443186103, 43.219678222086969 ], [ 145.532435833616432, 43.21073307714736 ], [ 145.527640360796511, 43.20087048144471 ], [ 145.530570927519818, 43.186191269236126 ], [ 145.509524130143433, 43.1880261707622 ], [ 145.508991299830114, 43.180915927348664 ], [ 145.523644133446567, 43.166924803212353 ], [ 145.495936957153617, 43.158667746345017 ], [ 145.50233092091355, 43.174952497388929 ], [ 145.492207144960361, 43.184815093091572 ], [ 145.474623744620601, 43.1880261707622 ], [ 145.425070525481317, 43.187567445380679 ], [ 145.353138433182323, 43.177246124296516 ], [ 145.342481826915815, 43.178392937750317 ], [ 145.31877087797281, 43.166695440521593 ], [ 145.293461438089821, 43.171970782409055 ], [ 145.2428425583239, 43.15614475674667 ], [ 145.223394251887498, 43.140777456465806 ], [ 145.2026138696678, 43.135731477269104 ], [ 145.183431978388057, 43.139860005702772 ], [ 145.169578390241583, 43.149951964096175 ], [ 145.144801780671941, 43.143988534136433 ], [ 145.1221564923556, 43.132291036907716 ], [ 145.113631207342394, 43.122199078514313 ], [ 145.109901395149109, 43.097198545221559 ], [ 145.117094604378991, 43.081601882249934 ], [ 145.144801780671941, 43.081601882249934 ], [ 145.14986366864855, 43.069445659639698 ], [ 145.126152719705544, 43.068069483495137 ], [ 145.128017625802187, 43.076555903053233 ], [ 145.109102149679103, 43.0795376180331 ], [ 145.090453088712707, 43.069216296948937 ], [ 145.084858370422779, 43.054537084740346 ], [ 145.086989691676081, 43.044674489037703 ], [ 145.059815345696478, 43.039399147150242 ], [ 145.049691569743288, 43.030224639519872 ], [ 145.030509678463545, 43.029077826066079 ], [ 145.025181375330305, 43.020132681126469 ], [ 145.031841754246869, 43.010270085423826 ], [ 145.025447790486965, 42.999490038958143 ], [ 145.000937596073982, 42.990544894018534 ], [ 144.995342877784054, 42.993526608998401 ], [ 144.976427401660999, 42.982287837151205 ], [ 144.961774568044518, 42.979994210243611 ], [ 144.929005503774988, 42.990086168637013 ], [ 144.925275691581703, 42.982975925223485 ], [ 144.904495309362005, 42.98939808056474 ], [ 144.877320963382402, 42.985040189440312 ], [ 144.868262848055849, 42.998343225504343 ], [ 144.853876429596056, 43.00155430317497 ], [ 144.856007750849358, 43.010040722733066 ], [ 144.834161708003023, 43.018527142291155 ], [ 144.836293029256296, 43.03412380526278 ], [ 144.849347371932794, 43.045591939800744 ], [ 144.864000205549246, 43.029765914138352 ], [ 144.90076549716872, 43.016462878074321 ], [ 144.950052301151374, 43.047426841326811 ], [ 144.91834889750848, 43.064170317752229 ], [ 144.893572287938838, 43.070133747711978 ], [ 144.881850021045665, 43.068986934258177 ], [ 144.853876429596056, 43.080913794177654 ], [ 144.848814541619475, 43.05683071164794 ], [ 144.821906610796532, 43.059124338555534 ], [ 144.784342073707052, 43.055225172812627 ], [ 144.741182818327673, 43.017609691528122 ], [ 144.723066587674595, 42.986875090966386 ], [ 144.722800172517907, 42.976324407191463 ], [ 144.775283958380498, 42.942149366268339 ], [ 144.781411506983744, 42.933662946710257 ], [ 144.740649988014326, 42.932516133256456 ], [ 144.695625826538304, 42.938020837834678 ], [ 144.674845444318606, 42.938708925906951 ], [ 144.664188838052098, 42.945131081248213 ], [ 144.640477889109093, 42.945589806629727 ], [ 144.63115335862588, 42.950865148517195 ], [ 144.583731460739898, 42.947883433537328 ], [ 144.564283154303496, 42.949947697754155 ], [ 144.551228811627027, 42.946277894702007 ], [ 144.528849938467346, 42.951323873898716 ], [ 144.498745025764435, 42.941002552814552 ], [ 144.484891437617961, 42.939167651288471 ], [ 144.461713318988302, 42.94444299317594 ], [ 144.449458221781782, 42.9435255424129 ], [ 144.439334445828592, 42.951782599280229 ], [ 144.42201746064552, 42.952470687352509 ], [ 144.396974435919219, 42.960727744219838 ], [ 144.391646132785951, 42.968526075705654 ], [ 144.375128393072856, 42.967379262251853 ], [ 144.372197826349549, 42.978159308717537 ], [ 144.353815180539812, 42.996737686669036 ], [ 144.341293668176661, 42.993526608998401 ], [ 144.322378192053606, 42.997425774741309 ], [ 144.315984228293701, 43.005224106227118 ], [ 144.266164593997729, 43.003159842010291 ], [ 144.216877790015076, 42.995590873215235 ], [ 144.168123816345769, 42.983893375986511 ], [ 144.129493618629652, 42.970819702613241 ], [ 144.102852102963368, 42.95614049040465 ], [ 144.079940399490368, 42.952470687352509 ], [ 144.046372089750832, 42.940543827433032 ], [ 143.980567546055113, 42.908433050726742 ], [ 143.930215081445823, 42.881138890526401 ], [ 143.874001483389947, 42.846046398840244 ], [ 143.826846000660623, 42.811641995226367 ], [ 143.803135051717618, 42.791687441130314 ], [ 143.791146369667786, 42.786412099242852 ], [ 143.763972023688183, 42.763017104785419 ], [ 143.759442966024892, 42.762787742094659 ], [ 143.6992331406191, 42.719667556231926 ], [ 143.670726718856173, 42.696501924465252 ], [ 143.648081430539804, 42.683886976473488 ], [ 143.634760672706676, 42.671042665790978 ], [ 143.619841423933565, 42.663014971614402 ], [ 143.599061041713838, 42.668978401574144 ], [ 143.606787081257067, 42.649253210168851 ], [ 143.566025562287649, 42.614160718482694 ], [ 143.550573483201191, 42.603610034707771 ], [ 143.543380273971309, 42.616683708081048 ], [ 143.525264043318231, 42.608656013904479 ], [ 143.537252725368063, 42.598334692820316 ], [ 143.525796873631549, 42.589389547880707 ], [ 143.521001400811627, 42.571040532619975 ], [ 143.490097242638711, 42.536636129006091 ], [ 143.470116105889019, 42.517140300291558 ], [ 143.431752323329533, 42.472185212902758 ], [ 143.379534952623629, 42.402000229530444 ], [ 143.363816458380512, 42.37860523507301 ], [ 143.353159852114004, 42.356357054069363 ], [ 143.323854184881071, 42.309337702463736 ], [ 143.32145644847111, 42.284566531861742 ], [ 143.30893493610796, 42.258419185115187 ], [ 143.308135690637954, 42.243739972906603 ], [ 143.319857957531127, 42.22355605611979 ], [ 143.319591542374468, 42.2111704708188 ], [ 143.335043621460926, 42.202454688569944 ], [ 143.334510791147579, 42.17837160604023 ], [ 143.324387015194418, 42.161628129614812 ], [ 143.316927390807848, 42.119654757205879 ], [ 143.322255693941088, 42.117131767607532 ], [ 143.307336445167977, 42.075617120580119 ], [ 143.311865502831239, 42.054515753030273 ], [ 143.294548517648167, 42.042818255801549 ], [ 143.288420969044921, 42.028368406283718 ], [ 143.266308511041899, 42.015065370219688 ], [ 143.25591831993205, 41.998092531103509 ], [ 143.243396807568899, 41.965293666324939 ], [ 143.240199825688933, 41.948320827208761 ], [ 143.246327374292179, 41.927907547731195 ], [ 143.206897931106056, 41.954972345240776 ], [ 143.16267301510004, 41.983183956204158 ], [ 143.161074524160057, 41.996028266886675 ], [ 143.135765084277068, 42.026304142066891 ], [ 143.095269980464309, 42.049928499215085 ], [ 143.070226955738008, 42.058185556082421 ], [ 143.063832991978103, 42.063919623351396 ], [ 142.999626939222338, 42.086167804355036 ], [ 142.998294863439014, 42.093048685077818 ], [ 142.977248066062657, 42.10199383001742 ], [ 142.964193723386188, 42.118737306442839 ], [ 142.907180879860306, 42.13295779326991 ], [ 142.875211061060782, 42.131810979816116 ], [ 142.853098603057759, 42.138691860538891 ], [ 142.815534065968279, 42.141214850137246 ], [ 142.801414062665145, 42.150389357767608 ], [ 142.773174056058878, 42.160940041542531 ], [ 142.764382355889012, 42.172637538771255 ], [ 142.738273670536046, 42.176307341823403 ], [ 142.722821591449588, 42.183876310618452 ], [ 142.69937705766327, 42.184793761381485 ], [ 142.687921205926756, 42.192133367485781 ], [ 142.673001957153645, 42.190986554031987 ], [ 142.652754405247265, 42.206583217003612 ], [ 142.625047228954315, 42.22378541881055 ], [ 142.57602684012835, 42.245116149051157 ], [ 142.552315891185344, 42.247409775958751 ], [ 142.508890220649278, 42.267134967364044 ], [ 142.49530304765949, 42.265070703147202 ], [ 142.475854741223088, 42.274015848086819 ], [ 142.45267662259343, 42.294199764873625 ], [ 142.44761473461682, 42.302915547122474 ], [ 142.434027561627033, 42.307273438246895 ], [ 142.405254724707419, 42.308878977082216 ], [ 142.401258497357475, 42.313236868206637 ], [ 142.372219245281229, 42.323328826600047 ], [ 142.359697732918079, 42.335026323828757 ], [ 142.33438829303509, 42.344200831459133 ], [ 142.315472816912035, 42.357045142141644 ], [ 142.298688662042281, 42.363237934792139 ], [ 142.277109034352577, 42.376540970856176 ], [ 142.270182240279325, 42.386403566558819 ], [ 142.239810912419784, 42.409339835634739 ], [ 142.19079052359379, 42.449248943826838 ], [ 142.168944480747427, 42.458882176838728 ], [ 142.133511264911277, 42.467368596396817 ], [ 142.076232006228764, 42.471497124830478 ], [ 142.071436533408814, 42.47768991748098 ], [ 142.028277278029435, 42.484112072822235 ], [ 142.014157274726301, 42.49970873579386 ], [ 141.981388210456771, 42.515764124147005 ], [ 141.965936131370313, 42.530443336355589 ], [ 141.939294615704029, 42.54535191125494 ], [ 141.902795739241213, 42.576086511816669 ], [ 141.809017604095885, 42.610032190049033 ], [ 141.800758734239338, 42.600857682418663 ], [ 141.782376088429601, 42.606362386996885 ], [ 141.785839485466198, 42.614160718482694 ], [ 141.763194197149858, 42.619894785751683 ], [ 141.71470663863721, 42.627693117237492 ], [ 141.65929228605134, 42.630445469526606 ], [ 141.590557175632313, 42.624711402257617 ], [ 141.523953386466587, 42.611637728884347 ], [ 141.448824312287655, 42.588013371736153 ], [ 141.383552598905226, 42.55842558462821 ], [ 141.336397116175903, 42.535489315552297 ], [ 141.324674849282729, 42.527002895994201 ], [ 141.280449933276714, 42.503149176155247 ], [ 141.238889168837289, 42.474478839810345 ], [ 141.197594819554524, 42.450625119971392 ], [ 141.189602364854665, 42.452460021497473 ], [ 141.164825755284994, 42.439156985433435 ], [ 141.145910279161939, 42.434111006236733 ], [ 141.083302717346157, 42.388238468084893 ], [ 141.05213214401661, 42.35521024061557 ], [ 141.026822704133622, 42.336402499973318 ], [ 141.013501946300494, 42.322182013146247 ], [ 141.003111755190616, 42.30062192021488 ], [ 140.968744199981131, 42.307502800937655 ], [ 140.968477784824444, 42.31392495627891 ], [ 140.947963817761405, 42.316677308568025 ], [ 140.930646832578333, 42.335485049210277 ], [ 140.947963817761405, 42.344430194149886 ], [ 140.985794770007544, 42.330439070013576 ], [ 140.975670994054354, 42.357274504832404 ], [ 140.934376644771589, 42.363696660173659 ], [ 140.908267959418652, 42.376999696237689 ], [ 140.903738901755361, 42.407734296799426 ], [ 140.896812107682138, 42.424936498606364 ], [ 140.869371346545847, 42.461863891818595 ], [ 140.833405300396379, 42.473332026356559 ], [ 140.803566802850128, 42.497415108886273 ], [ 140.783852081257066, 42.501543637319934 ], [ 140.7806550993771, 42.516681574910038 ], [ 140.770797738580598, 42.52241564217902 ], [ 140.776925287183843, 42.53250760057243 ], [ 140.764670189977352, 42.546498724708741 ], [ 140.744422638070972, 42.557278771174417 ], [ 140.708989422234794, 42.582508667157931 ], [ 140.69220526736504, 42.586866558282352 ], [ 140.645316199792376, 42.586407832900832 ], [ 140.597095056436387, 42.575169061053636 ], [ 140.582175807663248, 42.566682641495547 ], [ 140.566990143733477, 42.570123081856934 ], [ 140.532889003680623, 42.588701459808426 ], [ 140.511575791147607, 42.584114205993245 ], [ 140.468682950924858, 42.586407832900832 ], [ 140.422859543978859, 42.553150242740756 ], [ 140.386893497829362, 42.519892652580666 ], [ 140.358919906379754, 42.486405699729829 ], [ 140.323753105700263, 42.434340368927494 ], [ 140.311231593337084, 42.411862825233086 ], [ 140.287787059550766, 42.358421318286197 ], [ 140.277130453284258, 42.320805837001693 ], [ 140.274999132030956, 42.287318884150849 ], [ 140.284856492827487, 42.25520810744456 ], [ 140.296045929407313, 42.243510610215843 ], [ 140.340537260570017, 42.226537771099665 ], [ 140.384229346262742, 42.22332669342903 ], [ 140.399947840505831, 42.215069636561708 ], [ 140.411137277085686, 42.200619787043877 ], [ 140.436180301811987, 42.188234201742873 ], [ 140.44284068072858, 42.17951841949403 ], [ 140.458559174971668, 42.175619253751123 ], [ 140.477474651094752, 42.15658215041811 ], [ 140.499853524254434, 42.146031466643187 ], [ 140.511842206304266, 42.131352254434603 ], [ 140.546209761513779, 42.114379415318417 ], [ 140.580044486409946, 42.107957259977155 ], [ 140.616276947716102, 42.115067503390691 ], [ 140.655972806058884, 42.128599902145488 ], [ 140.691672437051693, 42.126765000619415 ], [ 140.708456591921475, 42.138462497848131 ], [ 140.742024901660983, 42.120113482587399 ], [ 140.762272453567363, 42.113920689936904 ], [ 140.77532679624386, 42.083874177447441 ], [ 140.79530793299358, 42.074699669817079 ], [ 140.803033972536809, 42.0565800172471 ], [ 140.822215863816524, 42.032955660098906 ], [ 140.852587191676093, 42.013918556765887 ], [ 140.887221162042266, 42.000386158011096 ], [ 140.90880078973197, 41.982495868131878 ], [ 140.910132865515266, 41.975156262027589 ], [ 140.928249096168372, 41.959330236365204 ], [ 140.937307211494897, 41.937082055361557 ], [ 140.949562308701388, 41.93432970307245 ], [ 140.961018160437902, 41.914833874357925 ], [ 141.011637040203851, 41.893273781426558 ], [ 141.034015913363532, 41.895108682952625 ], [ 141.076642338429593, 41.886163538013022 ], [ 141.112874799735749, 41.872172413876712 ], [ 141.127527633352202, 41.860474916647988 ], [ 141.14537744884862, 41.856346388214327 ], [ 141.147242354945263, 41.829969678777019 ], [ 141.163227264345039, 41.82171262190969 ], [ 141.177880097961491, 41.820565808455896 ], [ 141.186138967818039, 41.802216793195157 ], [ 141.165092170441653, 41.793501010946308 ], [ 141.156034055115128, 41.784097140625178 ], [ 141.114739705832392, 41.787537580986566 ], [ 141.096357060022626, 41.773775819541015 ], [ 141.092094417516023, 41.762995773075332 ], [ 141.080638565779537, 41.757949793878637 ], [ 141.074511017176292, 41.741206317453212 ], [ 141.05239855917327, 41.73478416211195 ], [ 141.051865728859923, 41.725839017172348 ], [ 141.035880819460175, 41.727444556007661 ], [ 141.006841567383901, 41.715517696088185 ], [ 140.993520809550773, 41.717581960305012 ], [ 140.967944954511125, 41.709554266128443 ], [ 140.950361554171366, 41.715288333397424 ], [ 140.942635514628137, 41.729279457533735 ], [ 140.924785699131746, 41.739600778617898 ], [ 140.861911722159306, 41.758867244641671 ], [ 140.836602282276317, 41.759555332713944 ], [ 140.789713214703653, 41.773317094159495 ], [ 140.77532679624386, 41.774922632994816 ], [ 140.737495843997721, 41.768271114962801 ], [ 140.723642255851246, 41.757949793878637 ], [ 140.722576595224609, 41.745334845886873 ], [ 140.705259610041509, 41.739830141308659 ], [ 140.693270927991676, 41.753821265444969 ], [ 140.69220526736504, 41.764601311910653 ], [ 140.702595458474889, 41.775610721067089 ], [ 140.723375840694587, 41.770564741870388 ], [ 140.727105652887872, 41.78983120789416 ], [ 140.698865646281604, 41.816896005403748 ], [ 140.661301109192152, 41.821941984600443 ], [ 140.635991669309163, 41.814602378496154 ], [ 140.62426940241599, 41.807262772391859 ], [ 140.620806005379393, 41.787537580986566 ], [ 140.606153171762912, 41.759555332713944 ], [ 140.601890529256309, 41.743270581670046 ], [ 140.549406743393718, 41.720563675284879 ], [ 140.527027870234036, 41.700609121188833 ], [ 140.461489741694976, 41.697398043518206 ], [ 140.441775020101915, 41.680654567092787 ], [ 140.433249735088708, 41.653589769583199 ], [ 140.428987092582105, 41.610240221029713 ], [ 140.428454262268758, 41.583634148901645 ], [ 140.436979547281993, 41.547624206452454 ], [ 140.408473125519066, 41.516201517818445 ], [ 140.362649718573039, 41.515513429746164 ], [ 140.34479990307662, 41.504962745971241 ], [ 140.337606693846737, 41.507027010188075 ], [ 140.308833856927123, 41.492806523361011 ], [ 140.264608940921107, 41.483632015730635 ], [ 140.257682146847856, 41.468264715449777 ], [ 140.246226295111342, 41.462530648180788 ], [ 140.2387666707248, 41.443952270229303 ], [ 140.22384742195166, 41.429273058020712 ], [ 140.215854967251772, 41.409547866615419 ], [ 140.199337227538678, 41.397850369386703 ], [ 140.184417978765566, 41.401749535129611 ], [ 140.154046650905997, 41.425373892277804 ], [ 140.132467023216293, 41.430190508783745 ], [ 140.09277116487354, 41.424227078824003 ], [ 140.074654934220462, 41.424685804205524 ], [ 140.065596818893908, 41.435236487980447 ], [ 140.041619454794244, 41.446933985209171 ], [ 140.028565112117775, 41.462071922799275 ], [ 140.028831527274434, 41.472851969264951 ], [ 140.015244354284619, 41.491430347216451 ], [ 140.01737567553792, 41.498540590629986 ], [ 140.00219001160815, 41.52354112392274 ], [ 139.998193784258206, 41.540055237657398 ], [ 139.985672271895055, 41.55473444986599 ], [ 139.98194245970177, 41.582946060829372 ], [ 139.983540950641753, 41.611845759865027 ], [ 139.998726614571524, 41.641433546972962 ], [ 140.008850390524714, 41.691434613558471 ], [ 140.036557566817663, 41.720334312594126 ], [ 140.057870779350679, 41.745334845886873 ], [ 140.070925122027177, 41.76689493881824 ], [ 140.074654934220462, 41.792354197492514 ], [ 140.070925122027177, 41.807262772391859 ], [ 140.096234561910137, 41.809556399299453 ], [ 140.109821734899953, 41.803822332030471 ], [ 140.126339474613047, 41.832492668375366 ], [ 140.126605889769706, 41.854970212069773 ], [ 140.120478341166461, 41.86643834660773 ], [ 140.131134947432997, 41.872172413876712 ], [ 140.136196835409578, 41.905888729418308 ], [ 140.141525138542846, 41.914604511667164 ], [ 140.134598344469595, 41.949697003353322 ], [ 140.126339474613047, 41.961623863272791 ], [ 140.134331929312935, 41.973550723192275 ], [ 140.127405135239712, 41.97882606507973 ], [ 140.119412680539824, 42.003826598372484 ], [ 140.105559092393349, 42.01185429254906 ], [ 140.099964374103422, 42.027450955520685 ], [ 140.072257197810472, 42.055203841102546 ], [ 140.068527385617216, 42.067360063712783 ], [ 140.057337949037361, 42.082498001302895 ], [ 140.026700206021133, 42.112315151101583 ], [ 139.988869253774993, 42.128599902145488 ], [ 139.959563586542089, 42.128141176763968 ], [ 139.922798294922615, 42.13295779326991 ], [ 139.895623948942983, 42.182729497164658 ], [ 139.880438285013213, 42.193050818248821 ], [ 139.880171869856554, 42.207959393148172 ], [ 139.863387714986771, 42.218968802304609 ], [ 139.813834495847487, 42.221721154593723 ], [ 139.799714492544354, 42.228372672625738 ], [ 139.774405052661365, 42.259107273187468 ], [ 139.784795243771214, 42.270575407725431 ], [ 139.783729583144577, 42.280667366118834 ], [ 139.76534693733484, 42.311631329371323 ], [ 139.774671467818024, 42.325622453507634 ], [ 139.78079901642127, 42.353604701780256 ], [ 139.797583171291052, 42.358880043667718 ], [ 139.814100911004147, 42.373788618567062 ], [ 139.817830723197432, 42.386862291940339 ], [ 139.826089593053979, 42.389385281538694 ], [ 139.83594695385051, 42.403605768365765 ], [ 139.845271484333693, 42.428147576276992 ], [ 139.845005069177034, 42.449248943826838 ], [ 139.853530354190241, 42.464616244107702 ], [ 139.846337144960359, 42.479066093625534 ], [ 139.841275256983749, 42.510030056878023 ], [ 139.846337144960359, 42.528837797520282 ], [ 139.83354921744052, 42.557049408483664 ], [ 139.836213369007169, 42.565306465350986 ], [ 139.827155253680615, 42.57677459988895 ], [ 139.821826950547376, 42.607509200450679 ], [ 139.824757517270655, 42.616454345390295 ], [ 139.8537967693469, 42.641684241373802 ], [ 139.867117527180056, 42.664391147758963 ], [ 139.898288100509603, 42.680217173421347 ], [ 139.928659428369201, 42.689162318360957 ], [ 139.955567359192145, 42.688703592979437 ], [ 139.988336423461675, 42.691914670650064 ], [ 140.009383220838032, 42.686639328762602 ], [ 140.030163603057758, 42.687556779525636 ], [ 140.059469270290663, 42.701777266352707 ], [ 140.07252361296716, 42.725401623500908 ], [ 140.114084377406556, 42.74489745221544 ], [ 140.146320611362768, 42.755906861371884 ], [ 140.146587026519427, 42.770127348198955 ], [ 140.161239860135879, 42.794669156110182 ], [ 140.186282884862209, 42.824486305908877 ], [ 140.205198360985264, 42.809119005628013 ], [ 140.227843649301605, 42.803155575668271 ], [ 140.2387666707248, 42.792146166511827 ], [ 140.240365161664783, 42.775632052777169 ], [ 140.252353843714616, 42.76668690783756 ], [ 140.287254229237448, 42.770586073580468 ], [ 140.305104044733866, 42.777696316994003 ], [ 140.309633102397129, 42.795586606873215 ], [ 140.303505553793883, 42.813935622133954 ], [ 140.304837629577179, 42.824945031290397 ], [ 140.348529715269905, 42.859349434904274 ], [ 140.375970476406167, 42.893295113136631 ], [ 140.375970476406167, 42.900864081931687 ], [ 140.411936522555663, 42.93435103478253 ], [ 140.416465580218926, 42.942378728959099 ], [ 140.446304077765177, 42.953388138115542 ], [ 140.476142575311428, 42.970131614540961 ], [ 140.519301830690807, 42.98939808056474 ], [ 140.527827115704042, 43.001324940484217 ], [ 140.529958436957344, 43.023573121487857 ], [ 140.525429379294053, 43.031371452973673 ], [ 140.511309375990919, 43.03320635449974 ], [ 140.494525221121165, 43.064399680442989 ], [ 140.485999936107959, 43.075179726908672 ], [ 140.464686723574914, 43.083895509157529 ], [ 140.459092005285015, 43.104767514016615 ], [ 140.450300305115121, 43.107519866305722 ], [ 140.441508604945255, 43.127474420401768 ], [ 140.424724450075502, 43.1430710833734 ], [ 140.398349349565876, 43.159585197108058 ], [ 140.360784812476396, 43.178392937750317 ], [ 140.338938769630033, 43.21073307714736 ], [ 140.325351596640246, 43.221513123613036 ], [ 140.336008202906754, 43.254770713773127 ], [ 140.332278390713469, 43.259816692969821 ], [ 140.343734242449983, 43.272661003652345 ], [ 140.359985567006419, 43.316010552205825 ], [ 140.363715379199675, 43.330689764414416 ], [ 140.40767388004906, 43.334818292848084 ], [ 140.430319168365401, 43.329542950960615 ], [ 140.446304077765177, 43.335506380920357 ], [ 140.459358420441674, 43.349268142365915 ], [ 140.46815012061154, 43.365552893409813 ], [ 140.481737293601356, 43.375415489112456 ], [ 140.498521448471109, 43.372663136823348 ], [ 140.515305603340863, 43.357066473851724 ], [ 140.527560700547383, 43.353167308108816 ], [ 140.542213534163835, 43.339176183972505 ], [ 140.569920710456756, 43.32243270754708 ], [ 140.579511656096628, 43.31073521031837 ], [ 140.608284493016214, 43.295367910037498 ], [ 140.630929781332554, 43.295826635419019 ], [ 140.641053557285773, 43.265780122929563 ], [ 140.694603003775001, 43.251100910720979 ], [ 140.717248292091341, 43.249495371885658 ], [ 140.736163768214396, 43.235274885058587 ], [ 140.756411320120776, 43.227476553572778 ], [ 140.776658872027156, 43.225182926665184 ], [ 140.774527550773882, 43.205687097950658 ], [ 140.792110951113614, 43.194677688794215 ], [ 140.813956993959977, 43.193530875340414 ], [ 140.850455870422792, 43.198576854537123 ], [ 140.857382664496015, 43.204310921806098 ], [ 140.895746447055473, 43.211650527910393 ], [ 140.913862677708551, 43.210962439838113 ], [ 140.91892456568516, 43.223806750520637 ], [ 140.951160799641372, 43.227935278954298 ], [ 140.978601560777633, 43.239403413492255 ], [ 141.016698928180432, 43.238256600038461 ], [ 141.014834022083789, 43.212797341364194 ], [ 141.004443830973941, 43.209815626384326 ], [ 141.010304964420527, 43.197659403774082 ], [ 141.039077801340113, 43.179769113894864 ], [ 141.057726862306509, 43.17931038851335 ], [ 141.089696681106062, 43.171512057027535 ], [ 141.130458200075481, 43.153163041766803 ], [ 141.161362358248397, 43.143988534136433 ], [ 141.190668025481301, 43.152016228313002 ], [ 141.251943511513758, 43.177475486987277 ], [ 141.286577481879931, 43.196512590320289 ], [ 141.290573709229875, 43.204310921806098 ], [ 141.308157109569635, 43.211879890601153 ], [ 141.34732013759907, 43.24651365690579 ], [ 141.372895992638718, 43.274954630559932 ], [ 141.40220165987165, 43.301790065378754 ], [ 141.423781287561326, 43.328166774816069 ], [ 141.421117135994706, 43.342845987024653 ], [ 141.426978269441292, 43.353626033490336 ], [ 141.425646193657968, 43.377250390638537 ], [ 141.431773742261214, 43.389635975939527 ], [ 141.426978269441292, 43.421058664573536 ], [ 141.399271093148343, 43.461885223528675 ], [ 141.393942790015103, 43.474500171520432 ], [ 141.371563916855393, 43.495372176379519 ], [ 141.371031086542075, 43.503170507865327 ], [ 141.358775989335584, 43.517390994692398 ], [ 141.360640895432226, 43.536657460716171 ], [ 141.376892219988662, 43.557988190956777 ], [ 141.386216750471874, 43.588952154209267 ], [ 141.380622032181947, 43.606383718706965 ], [ 141.363305046998846, 43.620145480152516 ], [ 141.352914855888997, 43.640100034248562 ], [ 141.349717874009059, 43.666706106376637 ], [ 141.338262022272545, 43.685284484328129 ], [ 141.338794852585863, 43.693082815813938 ], [ 141.329470322102679, 43.713266732600751 ], [ 141.329470322102679, 43.724964229829467 ], [ 141.349717874009059, 43.754322654246643 ], [ 141.36197297121555, 43.762809073804732 ], [ 141.369699010758779, 43.786204068262172 ], [ 141.381154862495265, 43.802030093924557 ], [ 141.397939017365047, 43.81166332693644 ], [ 141.413923926764824, 43.815562492679348 ], [ 141.455751106360879, 43.83459959601236 ], [ 141.477064318893923, 43.833223419867807 ], [ 141.494114888920336, 43.836205134847674 ], [ 141.50823489222347, 43.854095424726893 ], [ 141.524486216779906, 43.859600129305115 ], [ 141.534077162419777, 43.851572435128546 ], [ 141.546598674782928, 43.860517580068148 ], [ 141.557255281049436, 43.857994590469801 ], [ 141.569243963099268, 43.869003999626244 ], [ 141.579900569365805, 43.870838901152311 ], [ 141.597217554548877, 43.884830025288622 ], [ 141.618264351925234, 43.916252713922631 ], [ 141.627588882408446, 43.92106933042858 ], [ 141.634515676481669, 43.940565159143105 ], [ 141.629187373348429, 43.946528589102847 ], [ 141.643307376651563, 43.956161822114737 ], [ 141.650767001038105, 43.997217743760629 ], [ 141.661157192147982, 44.012585044041494 ], [ 141.663554928557943, 44.055017141831947 ], [ 141.659825116364658, 44.103642032272894 ], [ 141.653697567761412, 44.140798788175886 ], [ 141.659558701207999, 44.161900155725732 ], [ 141.657960210268016, 44.204102890825425 ], [ 141.654763228388049, 44.220158279178563 ], [ 141.657960210268016, 44.241947734800689 ], [ 141.648635679784803, 44.293554340221505 ], [ 141.648102849471485, 44.314885070462111 ], [ 141.661423607304641, 44.315573158534391 ], [ 141.678740592487713, 44.331628546887529 ], [ 141.68726587750092, 44.357087805561804 ], [ 141.706714183937322, 44.376812996967089 ], [ 141.71470663863721, 44.397226276444663 ], [ 141.738151172423557, 44.417868918612989 ], [ 141.750139854473389, 44.439199648853588 ], [ 141.759197969799914, 44.462365280620276 ], [ 141.764259857776494, 44.503650564956928 ], [ 141.765325518403159, 44.537825605880045 ], [ 141.768256085126438, 44.558238885357611 ], [ 141.780777597489617, 44.569018931823294 ], [ 141.786105900622857, 44.582321967887324 ], [ 141.791434203756125, 44.624983428368537 ], [ 141.791967034069444, 44.660305282745455 ], [ 141.784507409682874, 44.723609385394994 ], [ 141.77251872763307, 44.77682152965113 ], [ 141.764259857776494, 44.807785492903619 ], [ 141.745610796810098, 44.861685725232022 ], [ 141.738151172423557, 44.897236942299699 ], [ 141.726961735843702, 44.909622527600696 ], [ 141.708046259720646, 44.950219723865075 ], [ 141.68193757436768, 44.999762065069064 ], [ 141.655828889014714, 45.044487789767103 ], [ 141.593221327198933, 45.1428843841028 ], [ 141.570576038882592, 45.192197362616021 ], [ 141.567645472159285, 45.208023388278406 ], [ 141.572174529822576, 45.237840538077101 ], [ 141.61160397300867, 45.276373470124646 ], [ 141.619862842865217, 45.297933563056006 ], [ 141.615333785201955, 45.31054851104777 ], [ 141.641176055398262, 45.331649878597617 ], [ 141.655029643544736, 45.352980608838216 ], [ 141.657160964798038, 45.369265359882121 ], [ 141.636646997734999, 45.391513540885761 ], [ 141.634515676481669, 45.425229856427364 ], [ 141.647303604001507, 45.449083576266318 ], [ 141.680072668271038, 45.421101327993696 ], [ 141.677941347017736, 45.410321281528013 ], [ 141.686733047187602, 45.402522950042197 ], [ 141.705914938467345, 45.401605499279164 ], [ 141.718436450830495, 45.396330157391702 ], [ 141.741880984616841, 45.402064224660684 ], [ 141.745610796810098, 45.412844271126367 ], [ 141.766124763873165, 45.404357851568278 ], [ 141.805021376745941, 45.409403830764973 ], [ 141.835392704605511, 45.420642602612176 ], [ 141.864431956681756, 45.440597156708229 ], [ 141.878285544828231, 45.460781073495042 ], [ 141.872690826538303, 45.469955581125404 ], [ 141.878818375141549, 45.481653078354128 ], [ 141.878818375141549, 45.495644202490439 ], [ 141.892139132974705, 45.503901259357761 ], [ 141.891872717818046, 45.511011502771296 ], [ 141.937962539920704, 45.522709 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1469, "NAME_1": "Hyogo", "VARNAME_1": "Hiogo", "HASC_1": "JP.HG", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.823079366081544, 34.17980649119491 ], [ 134.831338235938091, 34.170631983564547 ], [ 134.823612196394862, 34.15732894750051 ], [ 134.810557853718365, 34.15709958480975 ], [ 134.823079366081544, 34.17980649119491 ] ] ], [ [ [ 135.003708842298977, 34.608944085605359 ], [ 135.023157148735379, 34.588530806127793 ], [ 135.025821300301999, 34.575457132754522 ], [ 135.020226582012072, 34.566970713196426 ], [ 134.994384311815764, 34.544263806811266 ], [ 134.993585066345787, 34.522703713879906 ], [ 134.973337514439407, 34.497244455205632 ], [ 134.959217511136274, 34.489446123719823 ], [ 134.943499016893156, 34.466051129262382 ], [ 134.914992595130229, 34.443573585567982 ], [ 134.917656746696849, 34.439445057134321 ], [ 134.901139006983755, 34.418114326893715 ], [ 134.895544288693827, 34.401141487777529 ], [ 134.898208440260476, 34.368342622998966 ], [ 134.895277873537168, 34.351599146573548 ], [ 134.903536743393715, 34.340589737417105 ], [ 134.915525425443548, 34.336461208983437 ], [ 134.918722407323514, 34.316277292196631 ], [ 134.929379013590022, 34.304809157658667 ], [ 134.943499016893156, 34.298157639626652 ], [ 134.950425810966408, 34.286230779707175 ], [ 134.952290717063022, 34.266734950992642 ], [ 134.898741270573794, 34.251826376093298 ], [ 134.886752588523962, 34.244716132679763 ], [ 134.850520127217806, 34.232330547378766 ], [ 134.832936726878074, 34.223844127820676 ], [ 134.814820496224996, 34.207559376776771 ], [ 134.800434077765203, 34.199531682600202 ], [ 134.775657468195533, 34.200449133363236 ], [ 134.733297458286131, 34.188292910752999 ], [ 134.730100476406193, 34.206871288704498 ], [ 134.719443870139656, 34.215816433644108 ], [ 134.701327639486578, 34.216733884407141 ], [ 134.702393300113243, 34.241734417699895 ], [ 134.676018199603618, 34.255266816454686 ], [ 134.672821217723651, 34.265588137538849 ], [ 134.661098950830507, 34.270863479426311 ], [ 134.662697441770462, 34.287606955851729 ], [ 134.657102723480563, 34.292882297739197 ], [ 134.673354048036998, 34.316965380268911 ], [ 134.694667260570014, 34.323846260991687 ], [ 134.706655942619847, 34.321093908702572 ], [ 134.730100476406193, 34.333479494003569 ], [ 134.734895949226114, 34.340589737417105 ], [ 134.754610670819176, 34.385086099424385 ], [ 134.763402370989041, 34.386691638259705 ], [ 134.775657468195533, 34.411921534243213 ], [ 134.782317847112097, 34.414903249223087 ], [ 134.798036341355214, 34.449766378218484 ], [ 134.815619741694974, 34.462151963519474 ], [ 134.818283893261594, 34.46926220693301 ], [ 134.834535217818029, 34.466280491953142 ], [ 134.84705673018118, 34.477748626491106 ], [ 134.868902773027543, 34.512841118177256 ], [ 134.886219758210643, 34.529125869221161 ], [ 134.913127689033587, 34.536236112634697 ], [ 134.931243919686665, 34.54724552179114 ], [ 134.946962413929782, 34.561236645927451 ], [ 134.974669590222732, 34.597017225685882 ], [ 134.992519405719122, 34.607338546770045 ], [ 135.003708842298977, 34.608944085605359 ] ] ], [ [ [ 134.515902690449224, 34.658945152190867 ], [ 134.513504954039263, 34.63692633387798 ], [ 134.502315517459408, 34.650000007251258 ], [ 134.515902690449224, 34.658945152190867 ] ] ], [ [ [ 134.489794005096257, 34.669954561347303 ], [ 134.500450611362766, 34.64655956688987 ], [ 134.489794005096257, 34.641742950383929 ], [ 134.480735889769733, 34.649541281869737 ], [ 134.467681547093235, 34.641054862311648 ], [ 134.460221922706666, 34.656192799901753 ], [ 134.474608341166459, 34.659174514881627 ], [ 134.489794005096257, 34.669954561347303 ] ] ], [ [ [ 134.576112515855044, 34.675229903234765 ], [ 134.591298179784815, 34.662385592552255 ], [ 134.575313270385038, 34.650688095323531 ], [ 134.562258927708569, 34.66880774789351 ], [ 134.576112515855044, 34.675229903234765 ] ] ], [ [ [ 135.223767761702533, 34.677982255523879 ], [ 135.229362479992432, 34.676376716688566 ], [ 135.244015313608912, 34.653899172994159 ], [ 135.240285501415627, 34.650000007251258 ], [ 135.215775307002644, 34.650229369942011 ], [ 135.20192171885617, 34.658945152190867 ], [ 135.201122473386192, 34.673624364399451 ], [ 135.210979834182695, 34.681422695885267 ], [ 135.223767761702533, 34.677982255523879 ] ] ], [ [ [ 134.537748733295587, 34.684404410865135 ], [ 134.544941942525469, 34.676147353997806 ], [ 134.540945715175525, 34.657798338737067 ], [ 134.513238538882604, 34.671560100182617 ], [ 134.51190646309928, 34.679587794359193 ], [ 134.537748733295587, 34.684404410865135 ] ] ], [ [ [ 135.275985132408437, 34.698624897692206 ], [ 135.288506644771616, 34.696560633475372 ], [ 135.290371550868258, 34.681422695885267 ], [ 135.255471165345398, 34.677752892833119 ], [ 135.252807013778778, 34.69128529158791 ], [ 135.275985132408437, 34.698624897692206 ] ] ], [ [ [ 134.870767679124185, 35.6591958465917 ], [ 134.869968433654208, 35.633048499845152 ], [ 134.874763906474129, 35.62295654145175 ], [ 134.867304282087559, 35.594974293179128 ], [ 134.87183333975085, 35.575478464464595 ], [ 134.888617494620604, 35.557817537276136 ], [ 134.915525425443548, 35.542220874304519 ], [ 134.925915616553425, 35.516761615630244 ], [ 134.940568450169877, 35.509422009525949 ], [ 134.96241449301624, 35.509651372216709 ], [ 134.969607702246122, 35.516990978321004 ], [ 135.007438654492262, 35.532358278601869 ], [ 135.030083942808602, 35.53671616972629 ], [ 135.039941303605133, 35.534651905509463 ], [ 135.046601682521697, 35.51446798872265 ], [ 135.043404700641759, 35.494284071935844 ], [ 135.043671115798418, 35.468366087880057 ], [ 135.052196400811624, 35.448182171093244 ], [ 135.049798664401663, 35.426622078161884 ], [ 135.052729231124943, 35.416530119768481 ], [ 135.046335267365038, 35.405520710612038 ], [ 135.03567866109853, 35.406896886756591 ], [ 135.022624318422032, 35.391300223784967 ], [ 134.999979030105692, 35.383731254989911 ], [ 134.983727705549256, 35.394970026837115 ], [ 134.972538268969402, 35.396804928363188 ], [ 134.963480153642877, 35.405061985230518 ], [ 134.941900525953173, 35.406896886756591 ], [ 134.930178259060028, 35.395199389527875 ], [ 134.929645428746682, 35.374556747359549 ], [ 134.923517880143436, 35.365152877038419 ], [ 134.921652974046793, 35.343822146797812 ], [ 134.928579768120045, 35.333271463022889 ], [ 134.924050710456783, 35.312628820854563 ], [ 134.96028317176291, 35.295655981738385 ], [ 134.999979030105692, 35.287169562180296 ], [ 135.011168466685547, 35.281206132220554 ], [ 135.013566203095507, 35.270884811136391 ], [ 135.041539794545116, 35.257581775072353 ], [ 135.060721685824831, 35.253223883947932 ], [ 135.067382064741395, 35.240150210574654 ], [ 135.080436407417892, 35.241526386719215 ], [ 135.096154901661009, 35.25666432430932 ], [ 135.116935283880707, 35.260563490052228 ], [ 135.157430387693466, 35.258269863144633 ], [ 135.164623596923349, 35.250012806277304 ], [ 135.16675491817665, 35.232351879088846 ], [ 135.158762463476791, 35.225929723747591 ], [ 135.164890012080036, 35.217213941498741 ], [ 135.184604733673069, 35.212626687683553 ], [ 135.198458321819544, 35.200929190454836 ], [ 135.192064358059639, 35.189002330535359 ], [ 135.189933036806337, 35.168589051057793 ], [ 135.207782852302756, 35.158726455355144 ], [ 135.228563234522454, 35.160790719571978 ], [ 135.239752671102309, 35.173635030254495 ], [ 135.258934562382024, 35.173864392945248 ], [ 135.291970041808213, 35.169277139130067 ], [ 135.293568532748196, 35.155974103066036 ], [ 135.286375323518314, 35.14794640888946 ], [ 135.294101363061515, 35.138771901259098 ], [ 135.337260618440922, 35.146340870054146 ], [ 135.342322506417503, 35.136707637042264 ], [ 135.362303643167223, 35.129138668247208 ], [ 135.386813837580206, 35.12569822788582 ], [ 135.396138368063419, 35.107349212625088 ], [ 135.391076480086809, 35.098404067685479 ], [ 135.403065162136642, 35.090835098890423 ], [ 135.401733086353346, 35.073174171701964 ], [ 135.382284779916944, 35.064458389453115 ], [ 135.375091570687033, 35.055971969895026 ], [ 135.373759494903737, 35.042210208449475 ], [ 135.362037228010564, 35.047026824955417 ], [ 135.341789676104185, 35.040604669614162 ], [ 135.336994203284263, 35.031200799293032 ], [ 135.342588921574162, 35.022714379734943 ], [ 135.357241755190643, 35.021108840899629 ], [ 135.355909679407318, 34.98968615226562 ], [ 135.361504397697246, 34.98074100732601 ], [ 135.349515715647414, 34.965603069735906 ], [ 135.363902134107207, 34.951382582908835 ], [ 135.38548176179691, 34.952529396362628 ], [ 135.389744404303514, 34.943354888732259 ], [ 135.412656107776513, 34.941519987206192 ], [ 135.420648562476401, 34.931657391503542 ], [ 135.441961775009418, 34.933951018411136 ], [ 135.469668951302367, 34.92592332423456 ], [ 135.463807817855781, 34.914913915078124 ], [ 135.44116252953944, 34.916519453913438 ], [ 135.423312714043021, 34.904592593993961 ], [ 135.432637244526234, 34.896335537126632 ], [ 135.444892341732725, 34.894271272909798 ], [ 135.43370290515287, 34.853444713954659 ], [ 135.424911204983005, 34.848628097448717 ], [ 135.42118139278972, 34.808948351947379 ], [ 135.445158756889384, 34.786700170943732 ], [ 135.447556493299345, 34.766974979538446 ], [ 135.458479514722541, 34.757112383835796 ], [ 135.462475742072485, 34.733029301306082 ], [ 135.45395045705925, 34.729818223635455 ], [ 135.449687814552647, 34.716744550262177 ], [ 135.421447807946379, 34.705735141105741 ], [ 135.40093384088334, 34.698854260382966 ], [ 135.368964022083787, 34.683486960102101 ], [ 135.355110433937341, 34.695413820021578 ], [ 135.343121751887509, 34.71353347259155 ], [ 135.332731560777631, 34.709175581467129 ], [ 135.323673445451107, 34.717891363715978 ], [ 135.307422120894671, 34.71399219797307 ], [ 135.293834947904855, 34.718808814479011 ], [ 135.288506644771616, 34.703670876888907 ], [ 135.245613804548867, 34.698624897692206 ], [ 135.228030404209136, 34.69174401696943 ], [ 135.218705873725924, 34.694955094640058 ], [ 135.204053040109471, 34.680046519740714 ], [ 135.184604733673069, 34.68165205857602 ], [ 135.188600961023013, 34.671101374801104 ], [ 135.180608506323125, 34.65963324026314 ], [ 135.182206997263108, 34.649082556488217 ], [ 135.143576799546992, 34.644954028054556 ], [ 135.13398585390712, 34.640825499620888 ], [ 135.115070377784065, 34.642201675765442 ], [ 135.060188855511512, 34.625228836649264 ], [ 135.032481679218563, 34.630733541227485 ], [ 135.017562430445452, 34.643348489219235 ], [ 134.981329969139296, 34.641742950383929 ], [ 134.96507864458286, 34.64633020419911 ], [ 134.93230958031333, 34.66949583596579 ], [ 134.913660519346905, 34.675459265925525 ], [ 134.891281646187224, 34.69197337966019 ], [ 134.877960888354096, 34.684633773555895 ], [ 134.840129936107957, 34.696560633475372 ], [ 134.838265030011314, 34.708258130704088 ], [ 134.8268091782748, 34.706193866487254 ], [ 134.809492193091728, 34.717662001025218 ], [ 134.811889929501689, 34.742662534317972 ], [ 134.79883558682522, 34.733029301306082 ], [ 134.768464258965651, 34.750919591185301 ], [ 134.756209161759159, 34.765369440703125 ], [ 134.730100476406193, 34.769956694518314 ], [ 134.710652169969791, 34.776608212550329 ], [ 134.691470278690076, 34.769268606446033 ], [ 134.671222726783697, 34.773397134879701 ], [ 134.661098950830507, 34.763534539177058 ], [ 134.628596301717636, 34.774085222951982 ], [ 134.575046855228379, 34.758029834598837 ], [ 134.541744960645531, 34.770415419899834 ], [ 134.527624957342397, 34.782801005200831 ], [ 134.504713253869369, 34.761011549578704 ], [ 134.500983441676112, 34.774543948333495 ], [ 134.482067965553028, 34.765369440703125 ], [ 134.469812868346537, 34.767663067610719 ], [ 134.469546453189878, 34.783947818654624 ], [ 134.457557771140046, 34.778213751385643 ], [ 134.451696637693459, 34.76812179299224 ], [ 134.434646067667046, 34.766516254156926 ], [ 134.426387197810499, 34.753671943474409 ], [ 134.427186443280476, 34.744726798534799 ], [ 134.41386568544732, 34.729130135563182 ], [ 134.385892093997739, 34.726836508655587 ], [ 134.364046051151377, 34.744268073153286 ], [ 134.347528311438282, 34.735552290904437 ], [ 134.331543402038506, 34.761240912269464 ], [ 134.320087550301992, 34.792892963594234 ], [ 134.307033207625523, 34.809865802710412 ], [ 134.292913204322389, 34.816976046123948 ], [ 134.288117731502439, 34.825921191063557 ], [ 134.277194710079272, 34.824545014919003 ], [ 134.265472443186098, 34.833260797167853 ], [ 134.256414327859574, 34.852985988573138 ], [ 134.268136594752718, 34.869729464998564 ], [ 134.26493961287278, 34.879362698010446 ], [ 134.291581128539065, 34.895647449054351 ], [ 134.292113958852383, 34.907803671664588 ], [ 134.285719995092478, 34.918124992748751 ], [ 134.269735085692702, 34.932116116885062 ], [ 134.259078479426194, 34.933033567648096 ], [ 134.257746403642869, 34.943354888732259 ], [ 134.275596219139288, 34.956657924796296 ], [ 134.272932067572668, 34.977300566964622 ], [ 134.283055843525858, 34.994732131462321 ], [ 134.268669425066065, 35.010328794433946 ], [ 134.273198482729327, 35.019503302064315 ], [ 134.299040752925634, 35.038311042706567 ], [ 134.319821135145332, 35.041980845758715 ], [ 134.317689813892031, 35.051843441461358 ], [ 134.323550947338617, 35.070421819412857 ], [ 134.323018117025299, 35.08074314049702 ], [ 134.352856614571522, 35.091064461581183 ], [ 134.356053596451488, 35.110789652986476 ], [ 134.362181145054734, 35.120193523307599 ], [ 134.365111711778013, 35.136707637042264 ], [ 134.377366808984505, 35.147487683507947 ], [ 134.400012097300873, 35.148863859652501 ], [ 134.411467949037359, 35.144505968528073 ], [ 134.415464176387303, 35.155515377684516 ], [ 134.410935118724041, 35.168130325676273 ], [ 134.415464176387303, 35.177075470615883 ], [ 134.385892093997739, 35.194277672422821 ], [ 134.384027187901097, 35.215379039972667 ], [ 134.40107775792751, 35.227993987964425 ], [ 134.405606815590772, 35.237627220976307 ], [ 134.435178897980364, 35.226847174510624 ], [ 134.454893619573426, 35.23441614330568 ], [ 134.483932871649671, 35.250242168968065 ], [ 134.489794005096257, 35.259416676598434 ], [ 134.518300426859184, 35.274783976879299 ], [ 134.513504954039263, 35.295197256356865 ], [ 134.515636275292565, 35.305977302822548 ], [ 134.504979669026056, 35.323179504629486 ], [ 134.512439293412598, 35.340840431817945 ], [ 134.510840802472615, 35.353455379809702 ], [ 134.499917781049447, 35.364006063584625 ], [ 134.479670229143068, 35.371575032379674 ], [ 134.475674001793124, 35.380749540010044 ], [ 134.483133626179693, 35.400704094106089 ], [ 134.480203059456386, 35.425704627398844 ], [ 134.442904937523593, 35.439695751535154 ], [ 134.437043804077007, 35.47868740896422 ], [ 134.43118267063042, 35.502311766112413 ], [ 134.417861912797264, 35.517449703702525 ], [ 134.427985688750454, 35.538321708561611 ], [ 134.42398946140051, 35.559881801492971 ], [ 134.410402288410722, 35.561946065709805 ], [ 134.404541154964136, 35.59153385281774 ], [ 134.369374354284616, 35.612864583058347 ], [ 134.385359263684393, 35.613093945749107 ], [ 134.4285185190638, 35.620204189162642 ], [ 134.433580407040381, 35.632819137154399 ], [ 134.451696637693459, 35.628919971411491 ], [ 134.460221922706666, 35.638782567114134 ], [ 134.475674001793124, 35.640388105949448 ], [ 134.502049102302749, 35.662177561571575 ], [ 134.51164004794262, 35.658278395828667 ], [ 134.539880054548888, 35.670893343820424 ], [ 134.55213515175538, 35.6591958465917 ], [ 134.563857418648553, 35.656214131611833 ], [ 134.580108743204988, 35.660113297354741 ], [ 134.600356295111368, 35.658278395828667 ], [ 134.62513290468101, 35.639241292495655 ], [ 134.644048380804065, 35.651856240487405 ], [ 134.65790196895054, 35.665847364623716 ], [ 134.696265751509998, 35.654379230085759 ], [ 134.708520848716489, 35.664471188479162 ], [ 134.725571418742902, 35.666535452695996 ], [ 134.737293685636075, 35.659883934663981 ], [ 134.761004634579081, 35.663783100406889 ], [ 134.767931428652304, 35.6591958465917 ], [ 134.795638604945253, 35.669975893057384 ], [ 134.836932954228018, 35.656443494302593 ], [ 134.870767679124185, 35.6591958465917 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1470, "NAME_1": "Ibaraki", "VARNAME_1": "", "HASC_1": "JP.IB", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.79291019658362, 36.857845268499247 ], [ 140.794775102680262, 36.857157180426967 ], [ 140.796107178463558, 36.856469092354686 ], [ 140.802501142223463, 36.839725615929268 ], [ 140.799304160343524, 36.827340030628271 ], [ 140.785716987353709, 36.829633657535865 ], [ 140.768400002170608, 36.818624248379422 ], [ 140.749484526047553, 36.785825383600859 ], [ 140.732167540864452, 36.747292451553314 ], [ 140.728171313514537, 36.719080840589932 ], [ 140.720178858814648, 36.705548441835141 ], [ 140.714051310211403, 36.683529623522254 ], [ 140.716981876934682, 36.663575069426209 ], [ 140.703661119101525, 36.65554737524964 ], [ 140.691672437051693, 36.639721349587248 ], [ 140.687676209701777, 36.620225520872722 ], [ 140.681282245941844, 36.616326355129814 ], [ 140.663166015288766, 36.581921951515938 ], [ 140.653042239335605, 36.573206169267081 ], [ 140.633860348055862, 36.522975739990819 ], [ 140.633327517742543, 36.509443341236029 ], [ 140.617875438656085, 36.491553051356817 ], [ 140.610682229426175, 36.473433398786838 ], [ 140.607751662702896, 36.427331497944238 ], [ 140.613079965836164, 36.393844545093394 ], [ 140.627199969139298, 36.381458959792397 ], [ 140.620539590222705, 36.360586954933311 ], [ 140.610948644582862, 36.354623524973576 ], [ 140.594697320026427, 36.333522157423729 ], [ 140.593898074556421, 36.321595297504253 ], [ 140.585372789543214, 36.310356525657049 ], [ 140.572851277180064, 36.308980349512495 ], [ 140.558997689033589, 36.289943246179483 ], [ 140.558464858720271, 36.268153790557363 ], [ 140.561661840600209, 36.23397874963424 ], [ 140.575249013590025, 36.172050823129254 ], [ 140.601357698942991, 36.10232456513846 ], [ 140.632794687429225, 36.039937913251961 ], [ 140.671424885145314, 35.970670380642687 ], [ 140.682614321725168, 35.969294204498134 ], [ 140.700996967534905, 35.937871515864124 ], [ 140.693270927991676, 35.928008920161474 ], [ 140.706858100981492, 35.924797842490847 ], [ 140.739094334937704, 35.880072117792807 ], [ 140.744422638070972, 35.859888201005994 ], [ 140.804099633163446, 35.783510424983184 ], [ 140.826744921479786, 35.757363078236637 ], [ 140.852054361362775, 35.739472788357418 ], [ 140.861911722159306, 35.744518767554126 ], [ 140.870703422329171, 35.718830146189092 ], [ 140.7979720845602, 35.750711560204621 ], [ 140.744156222914285, 35.782592974220151 ], [ 140.727904898357849, 35.799565813336329 ], [ 140.719646028501302, 35.820667180886176 ], [ 140.709522252548112, 35.833282128877926 ], [ 140.687676209701777, 35.84566771417893 ], [ 140.666629412325392, 35.850254967994111 ], [ 140.649578842298979, 35.850254967994111 ], [ 140.625068647885996, 35.856447760644606 ], [ 140.604821095979617, 35.868603983254843 ], [ 140.588569771423181, 35.883971283535715 ], [ 140.567522974046796, 35.896586231527465 ], [ 140.531556927897299, 35.899338583816579 ], [ 140.52116673678745, 35.894980692692151 ], [ 140.485200690637953, 35.907825003374668 ], [ 140.466285214514897, 35.916540785623518 ], [ 140.454030117308406, 35.914476521406684 ], [ 140.425790110702138, 35.90346711225024 ], [ 140.404743313325781, 35.906219464539355 ], [ 140.364248209513022, 35.894980692692151 ], [ 140.350927451679865, 35.879384029720526 ], [ 140.332544805870128, 35.865851630965736 ], [ 140.320822538976955, 35.861035014459794 ], [ 140.280061020007537, 35.870438884780917 ], [ 140.249956107304627, 35.854154133737019 ], [ 140.237967425254794, 35.852548594901705 ], [ 140.217187043035096, 35.859429475624481 ], [ 140.206530436768588, 35.85851202486144 ], [ 140.187348545488845, 35.848420066468037 ], [ 140.154845896375974, 35.841539185745262 ], [ 140.125007398829723, 35.871356335543958 ], [ 140.093836825500176, 35.882136382009634 ], [ 140.070392291713858, 35.883053832772674 ], [ 140.048812664024155, 35.89039343887697 ], [ 140.01737567553792, 35.908283728756189 ], [ 140.000325105511507, 35.906907552611628 ], [ 139.967556041241977, 35.923192303655533 ], [ 139.938783204322363, 35.942458769679305 ], [ 139.937184713382408, 35.965165676064466 ], [ 139.912141688656078, 35.970670380642687 ], [ 139.892160551906386, 35.982597240562164 ], [ 139.873245075783302, 36.01287311574238 ], [ 139.859657902793487, 36.026634877187931 ], [ 139.839943181200454, 36.038561737107408 ], [ 139.818097138354091, 36.0582869285127 ], [ 139.801046568327649, 36.092691332126577 ], [ 139.789057886277817, 36.100260300921633 ], [ 139.779999770951292, 36.093838145580371 ], [ 139.760285049358231, 36.079388296062547 ], [ 139.74030391260851, 36.083287461805448 ], [ 139.725651078992058, 36.114710150439457 ], [ 139.700341639109098, 36.151866906342448 ], [ 139.694480505662511, 36.177096802325963 ], [ 139.705403527085679, 36.200721159474156 ], [ 139.717125793978852, 36.206455226743138 ], [ 139.742168818705153, 36.203244149072503 ], [ 139.763482031238198, 36.216088459755021 ], [ 139.82582317789732, 36.238795366140181 ], [ 139.841275256983749, 36.26998869208343 ], [ 139.839943181200454, 36.292466235777837 ], [ 139.8537967693469, 36.308521624130975 ], [ 139.879905454699866, 36.310585888347809 ], [ 139.892693382219704, 36.307604173367942 ], [ 139.911342443186101, 36.297053489593019 ], [ 139.917469991789346, 36.333063432042209 ], [ 139.927060937429218, 36.338568136620431 ], [ 139.959563586542089, 36.34682519348776 ], [ 139.968088871555295, 36.352329898065982 ], [ 139.974749250471859, 36.370908276017474 ], [ 140.002456426764809, 36.365632934130019 ], [ 140.019773411947881, 36.373201902925068 ], [ 140.053874552000735, 36.373889990997348 ], [ 140.067195309833892, 36.37916533288481 ], [ 140.069859461400512, 36.400725425816177 ], [ 140.114350792563215, 36.394991358547195 ], [ 140.115150038033221, 36.405312679631358 ], [ 140.125007398829723, 36.409899933446539 ], [ 140.147386271989433, 36.410817384209579 ], [ 140.161772690449226, 36.394991358547195 ], [ 140.18841420611551, 36.394991358547195 ], [ 140.205464776141923, 36.416551451478554 ], [ 140.206530436768588, 36.451414580473951 ], [ 140.216387797565119, 36.46930487035317 ], [ 140.230774216024912, 36.483754719871001 ], [ 140.23397119790485, 36.493387952882884 ], [ 140.244627804171387, 36.500039470914899 ], [ 140.253153089184593, 36.527333631115248 ], [ 140.248091201207984, 36.574352982720882 ], [ 140.252087428557928, 36.601188417539703 ], [ 140.239299501038118, 36.631234930029159 ], [ 140.243828558701381, 36.641097525731809 ], [ 140.234770443374856, 36.666556784406076 ], [ 140.224913082578325, 36.671144038221257 ], [ 140.223314591638342, 36.681235996614667 ], [ 140.237701010098135, 36.696832659586292 ], [ 140.264608940921107, 36.698438198421606 ], [ 140.285655738297464, 36.705548441835141 ], [ 140.288053474707425, 36.728255348220301 ], [ 140.262477619667777, 36.750044803842421 ], [ 140.258214977161174, 36.769999357938474 ], [ 140.268338753114364, 36.791788813560593 ], [ 140.270203659211006, 36.812202093038167 ], [ 140.264875356077766, 36.834220911351046 ], [ 140.256083655907872, 36.852569926611778 ], [ 140.256882901377878, 36.884221977936548 ], [ 140.251821013401269, 36.918167656168912 ], [ 140.260612713571163, 36.933764319140536 ], [ 140.288586305020743, 36.932388142995983 ], [ 140.30696895083048, 36.921608096530299 ], [ 140.325351596640246, 36.901424179743486 ], [ 140.326950087580201, 36.89064413327781 ], [ 140.347197639486581, 36.882616439101234 ], [ 140.368510852019625, 36.8805521748844 ], [ 140.373572739996206, 36.870689579181757 ], [ 140.37490481577953, 36.852340563921018 ], [ 140.385561422046038, 36.833303460588013 ], [ 140.416731995375613, 36.828945569463585 ], [ 140.43271690477539, 36.815871896090314 ], [ 140.443107095885239, 36.816101258781075 ], [ 140.464953138731573, 36.792935627014394 ], [ 140.477474651094752, 36.792706264323634 ], [ 140.499320693941115, 36.815413170708794 ], [ 140.509977300207623, 36.819541699142462 ], [ 140.539016552283869, 36.850276299704191 ], [ 140.585905619856533, 36.864726149222022 ], [ 140.595496565496404, 36.870230853800237 ], [ 140.572052031710086, 36.923442998056373 ], [ 140.579245240939969, 36.939498386409518 ], [ 140.589369016893158, 36.942021376007865 ], [ 140.596562226123069, 36.923213635365613 ], [ 140.618408268969404, 36.900277366289693 ], [ 140.634926008682498, 36.896607563237545 ], [ 140.657304881842208, 36.897754376691339 ], [ 140.698865646281604, 36.884910066008828 ], [ 140.714317725368062, 36.872065755326311 ], [ 140.743889807757625, 36.872295118017071 ], [ 140.763338114194028, 36.864726149222022 ], [ 140.79291019658362, 36.857845268499247 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1471, "NAME_1": "Ishikawa", "VARNAME_1": "Isikawa", "HASC_1": "JP.IS", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.039120639203475, 37.168172989096433 ], [ 137.054039887976586, 37.150970787289495 ], [ 137.041251960456776, 37.138814564679251 ], [ 137.050842906096648, 37.122988539016873 ], [ 137.023135729803698, 37.11152040447891 ], [ 137.004753083993961, 37.11152040447891 ], [ 136.996494214137414, 37.118860010583205 ], [ 136.981042135050956, 37.107162513354481 ], [ 136.945875334371465, 37.101428446085507 ], [ 136.930956085598325, 37.122071088253833 ], [ 136.906445891185342, 37.133539222791796 ], [ 136.902183248678739, 37.151658875361768 ], [ 136.916303251981873, 37.150282699217215 ], [ 136.930956085598325, 37.137438388534697 ], [ 136.945875334371465, 37.143860543875959 ], [ 136.961327413457894, 37.142713730422159 ], [ 136.973316095507727, 37.153035051506322 ], [ 136.987436098810861, 37.150512061907975 ], [ 136.99249798678747, 37.139732015442291 ], [ 137.023135729803698, 37.144548631948233 ], [ 137.025799881370318, 37.158769118775304 ], [ 137.039120639203475, 37.168172989096433 ] ] ], [ [ [ 137.052174981879944, 36.958994215124051 ], [ 137.044715357493374, 36.962205292794678 ], [ 137.013011953850508, 36.958994215124051 ], [ 136.989034589750844, 36.963122743557712 ], [ 136.984505532087582, 36.948902256730641 ], [ 136.973582510664386, 36.94454436560622 ], [ 136.95226929813137, 36.952572059782788 ], [ 136.930423255285007, 36.943856277533939 ], [ 136.917635327765197, 36.927571526490041 ], [ 136.898187021328795, 36.919314469622705 ], [ 136.880870036145723, 36.896836925928305 ], [ 136.884599848338979, 36.871836392635558 ], [ 136.866483617685901, 36.854634190828612 ], [ 136.853962105322751, 36.81289018111044 ], [ 136.853695690166091, 36.783531756693264 ], [ 136.850498708286125, 36.754402694966849 ], [ 136.839042856549639, 36.741329021593572 ], [ 136.825722098716483, 36.737888581232184 ], [ 136.822791531993204, 36.727796622838781 ], [ 136.796416431483578, 36.721145104806766 ], [ 136.797215676953556, 36.710823783722603 ], [ 136.81613115307664, 36.700043737256919 ], [ 136.814532662136656, 36.687887514646683 ], [ 136.826254929029801, 36.66930913669519 ], [ 136.812934171196673, 36.653024385651285 ], [ 136.803076810400142, 36.633987282318273 ], [ 136.787358316157025, 36.618849344728162 ], [ 136.791354543506969, 36.5910964591463 ], [ 136.796949261796897, 36.572976806576328 ], [ 136.819860965269896, 36.549123086737367 ], [ 136.799346998206858, 36.508525890472995 ], [ 136.802011149773477, 36.477561927220506 ], [ 136.792420204133634, 36.451414580473951 ], [ 136.798281337580221, 36.442010710152829 ], [ 136.782030013023785, 36.428019586016518 ], [ 136.783362088807081, 36.409670570755779 ], [ 136.798281337580221, 36.395450083928708 ], [ 136.805208131653444, 36.350724359230668 ], [ 136.794551525386936, 36.344760929270933 ], [ 136.788956807097009, 36.333292794732969 ], [ 136.796150016326919, 36.296824126902258 ], [ 136.808937943846729, 36.272970407063305 ], [ 136.817463228859935, 36.267006977103563 ], [ 136.847568141562846, 36.255309479874846 ], [ 136.849433047659488, 36.239483454212461 ], [ 136.829984741223086, 36.21195993132136 ], [ 136.803609640713461, 36.181684056141144 ], [ 136.801744734616818, 36.170445284293947 ], [ 136.77110699160059, 36.161041413972818 ], [ 136.782562843337104, 36.130765538792602 ], [ 136.768176424877311, 36.103930103973781 ], [ 136.759118309550757, 36.096131772487965 ], [ 136.756986988297456, 36.085810451403802 ], [ 136.741534909211026, 36.077324031845713 ], [ 136.720488111834641, 36.078470845299506 ], [ 136.699974144771602, 36.07067251381369 ], [ 136.661077531898826, 36.066085259998509 ], [ 136.656015643922217, 36.083287461805448 ], [ 136.648822434692335, 36.091544518672777 ], [ 136.616586200736123, 36.107141181644408 ], [ 136.605663179312955, 36.12549019690514 ], [ 136.593674497263123, 36.128242549194255 ], [ 136.554777884390319, 36.151866906342448 ], [ 136.535595993110604, 36.144527300238153 ], [ 136.499896362117767, 36.146591564454987 ], [ 136.483645037561331, 36.151178818270168 ], [ 136.465795222064912, 36.13443534184475 ], [ 136.442084273121935, 36.136270243370824 ], [ 136.426365778878818, 36.151637543651688 ], [ 136.415176342298963, 36.15668352284839 ], [ 136.408782378539058, 36.167692932004833 ], [ 136.374414823329545, 36.1667754812418 ], [ 136.362958971593059, 36.162417590117371 ], [ 136.342178589373333, 36.177784890398236 ], [ 136.331521983106825, 36.204161599835544 ], [ 136.334452549830132, 36.214482920919707 ], [ 136.329390661853523, 36.229162133128298 ], [ 136.319266885900333, 36.232831936180446 ], [ 136.30488046744054, 36.254392029111806 ], [ 136.273443478954306, 36.262649085979135 ], [ 136.244137811721401, 36.294530499994664 ], [ 136.279038197244233, 36.322512748267286 ], [ 136.280903103340876, 36.331916618588416 ], [ 136.30008499462059, 36.352100535375222 ], [ 136.333653304360126, 36.358981416097997 ], [ 136.359761989713093, 36.374807441760382 ], [ 136.393330299452629, 36.400496063125416 ], [ 136.441817857965276, 36.444074974369656 ], [ 136.480980885994711, 36.49178241404757 ], [ 136.500962022744432, 36.508525890472995 ], [ 136.55451146923366, 36.564261024327479 ], [ 136.596871479143061, 36.611051013242353 ], [ 136.603798273216313, 36.628711940430811 ], [ 136.626709976689312, 36.64568477954699 ], [ 136.64509262249905, 36.667474235169109 ], [ 136.690116783975071, 36.730778337818649 ], [ 136.737805097017741, 36.81357826918272 ], [ 136.757519818610803, 36.861515071551388 ], [ 136.767643594563992, 36.900965454361973 ], [ 136.766577933937327, 36.919314469622705 ], [ 136.752457930634193, 36.923901723437893 ], [ 136.750593024537551, 36.933534956449776 ], [ 136.762315291430724, 36.94454436560622 ], [ 136.768176424877311, 36.960141028577844 ], [ 136.770840576443931, 36.982618572272244 ], [ 136.768975670347288, 37.000967587532983 ], [ 136.743932645620987, 37.01174763399866 ], [ 136.734608115137775, 37.047069488375577 ], [ 136.723685093714607, 37.052803555644559 ], [ 136.717557545111362, 37.076198550101992 ], [ 136.729546227161194, 37.097758643033359 ], [ 136.726082830124568, 37.111291041788149 ], [ 136.726882075594546, 37.135832849699383 ], [ 136.716758299641356, 37.146383533474307 ], [ 136.700240559928261, 37.14775970961886 ], [ 136.696510747734976, 37.139502652751531 ], [ 136.674131874575295, 37.139043927370011 ], [ 136.669869232068692, 37.146612896165067 ], [ 136.676263195828597, 37.165879362188839 ], [ 136.679460177708563, 37.206705921143978 ], [ 136.701306220554926, 37.223220034878636 ], [ 136.701039805398267, 37.242027775520889 ], [ 136.721553772461306, 37.25647762503872 ], [ 136.735940190921099, 37.285836049455895 ], [ 136.725283584654591, 37.295928007849298 ], [ 136.727414905907892, 37.305790603551948 ], [ 136.723951508871266, 37.327809421864828 ], [ 136.739403587957725, 37.340883095238105 ], [ 136.754056421574177, 37.34661716250708 ], [ 136.756187742827478, 37.364048727004779 ], [ 136.775369634107193, 37.367030441984653 ], [ 136.812667756040014, 37.386984996080699 ], [ 136.825988513873142, 37.387902446843739 ], [ 136.842506253586265, 37.400288032144729 ], [ 136.879537960362399, 37.406022099413711 ], [ 136.906445891185342, 37.395930141020308 ], [ 136.926160612778403, 37.395930141020308 ], [ 136.95466703454133, 37.409233177084346 ], [ 136.973316095507727, 37.413361705518007 ], [ 136.985837607870877, 37.421618762385336 ], [ 137.019672332767072, 37.43331625961406 ], [ 137.029529693563603, 37.432857534232539 ], [ 137.049510830313324, 37.448912922585684 ], [ 137.065762154869759, 37.451665274874792 ], [ 137.08547687646282, 37.466115124392623 ], [ 137.09080517959606, 37.475060269332232 ], [ 137.111585561815787, 37.487445854633229 ], [ 137.144354626085317, 37.498913989171186 ], [ 137.170196896281595, 37.503271880295614 ], [ 137.181119917704791, 37.499831439934226 ], [ 137.20163388476783, 37.508088496801555 ], [ 137.2090935091544, 37.505565507203201 ], [ 137.227209739807478, 37.517951092504198 ], [ 137.256248991883723, 37.528731138969881 ], [ 137.276762958946762, 37.529877952423675 ], [ 137.299941077576449, 37.526437512062287 ], [ 137.325250517459409, 37.530336677805195 ], [ 137.330845235749337, 37.518409817885718 ], [ 137.351625617969034, 37.502354429532573 ], [ 137.34016976623252, 37.482170512745768 ], [ 137.358019581728939, 37.464968310938829 ], [ 137.360150902982241, 37.450289098730238 ], [ 137.352158448282353, 37.443866943388983 ], [ 137.311396929312934, 37.436756699975447 ], [ 137.299141832106443, 37.442720129935182 ], [ 137.267971258776896, 37.436986062666207 ], [ 137.25198634937712, 37.425976653509764 ], [ 137.244260309833891, 37.409462539775099 ], [ 137.244260309833891, 37.396847591783342 ], [ 137.237866346073986, 37.37872793921337 ], [ 137.2493221978105, 37.353956768611376 ], [ 137.267971258776896, 37.335837116041404 ], [ 137.265040692053589, 37.326433245720274 ], [ 137.233070873254064, 37.295928007849298 ], [ 137.22161502151755, 37.293175655560191 ], [ 137.204564451491109, 37.300973987046007 ], [ 137.177123690354847, 37.300973987046007 ], [ 137.117979525575691, 37.288588401745002 ], [ 137.096932728199306, 37.275744091062492 ], [ 137.08574329161948, 37.248449930862151 ], [ 137.076418761136267, 37.245009490500763 ], [ 137.067094230653083, 37.223449397569397 ], [ 137.069225551906385, 37.217944692991175 ], [ 137.031927429973564, 37.20257739271031 ], [ 137.025533466213659, 37.187439455120199 ], [ 137.005552329463939, 37.183540289377298 ], [ 136.992231571630782, 37.198907589658162 ], [ 136.970918359097766, 37.200971853874996 ], [ 136.956798355794632, 37.209458273433086 ], [ 136.943744013118163, 37.224366848332437 ], [ 136.925094952151738, 37.219320869135728 ], [ 136.929890424971688, 37.206247195762458 ], [ 136.913106270101906, 37.194549698533734 ], [ 136.885132678652326, 37.164273823353525 ], [ 136.875541733012454, 37.140420103514572 ], [ 136.891526642412231, 37.143631181185199 ], [ 136.901117588052102, 37.135603487008623 ], [ 136.893657963665532, 37.118630647892445 ], [ 136.86675003284256, 37.110144228334356 ], [ 136.871279090505851, 37.086519871186155 ], [ 136.859290408456019, 37.078721539700346 ], [ 136.874476072385789, 37.070235120142257 ], [ 136.887796830218946, 37.068400218616183 ], [ 136.901384003208761, 37.073675560503645 ], [ 136.907511551812007, 37.08927222347527 ], [ 136.916036836825214, 37.091795213073624 ], [ 136.938682125141554, 37.086519871186155 ], [ 136.93735004935823, 37.070923208214531 ], [ 136.962393074084559, 37.06725340516239 ], [ 136.956798355794632, 37.056702721387467 ], [ 136.9850383624009, 37.048904389901651 ], [ 136.991965156474123, 37.058766985604294 ], [ 137.011147047753866, 37.073216835122125 ], [ 137.010347802283889, 37.08078580391718 ], [ 137.021270823707056, 37.100969720703986 ], [ 137.05057649093996, 37.108079964117522 ], [ 137.054039887976586, 37.069317669379217 ], [ 137.047645924216681, 37.044087773395709 ], [ 137.051109321253307, 37.018628514721435 ], [ 137.046846678746704, 37.010142095163346 ], [ 137.053773472819927, 36.994545432191721 ], [ 137.049244415156664, 36.986288375324392 ], [ 137.057236869856553, 36.96725127199138 ], [ 137.052174981879944, 36.958994215124051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1472, "NAME_1": "Iwate", "VARNAME_1": "", "HASC_1": "JP.IW", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.632117940071709, 38.971193101154441 ], [ 141.572707360135894, 38.990688929868973 ], [ 141.550594902132872, 38.993211919467328 ], [ 141.530347350226492, 38.98954211641518 ], [ 141.511698289260096, 38.999175349427063 ], [ 141.499443192053604, 38.995734909065675 ], [ 141.487188094847113, 38.975092266897349 ], [ 141.494381304076995, 38.948715557460041 ], [ 141.490118661570392, 38.927384827219441 ], [ 141.492782813137012, 38.904448558143514 ], [ 141.474400167327275, 38.892521698224044 ], [ 141.469338279350694, 38.882429739830634 ], [ 141.458415257927498, 38.876695672561652 ], [ 141.455484691204219, 38.86683307685901 ], [ 141.463477145904108, 38.856511755774847 ], [ 141.454152615420895, 38.83586911360652 ], [ 141.460013748867482, 38.81270348183984 ], [ 141.438167706021119, 38.808116228024659 ], [ 141.43790129086446, 38.779675254370517 ], [ 141.418719399584745, 38.778299078225963 ], [ 141.382486938278589, 38.792978290434547 ], [ 141.375027313892019, 38.80352897420947 ], [ 141.353980516515662, 38.809263041478452 ], [ 141.344389570875791, 38.805363875735551 ], [ 141.313485412702903, 38.819354999871855 ], [ 141.300697485183093, 38.7904553008362 ], [ 141.290307294073216, 38.794125103888348 ], [ 141.267928420913535, 38.784950596257978 ], [ 141.259403135900328, 38.76728966906952 ], [ 141.259136720743669, 38.757197710676117 ], [ 141.232761620234044, 38.749858104571821 ], [ 141.215444635050943, 38.749858104571821 ], [ 141.204255198471117, 38.76820711983256 ], [ 141.184274061721396, 38.780822067824317 ], [ 141.175215946394871, 38.775776088627609 ], [ 141.150439336825201, 38.781968881278111 ], [ 141.14297971243866, 38.78999657545468 ], [ 141.144311788221955, 38.801694072683404 ], [ 141.135253672895431, 38.809721766859973 ], [ 141.119002348338995, 38.833346124008166 ], [ 141.133921597112106, 38.839768279349428 ], [ 141.149107261041905, 38.855135579630293 ], [ 141.149373676198564, 38.865915626095976 ], [ 141.136319333522067, 38.875319496417099 ], [ 141.107546496602481, 38.876925035252412 ], [ 141.099554041902593, 38.883117827902915 ], [ 141.079306489996213, 38.877154397943173 ], [ 141.068916298886364, 38.879677387541527 ], [ 141.038544971026795, 38.874631408344825 ], [ 141.019096664590393, 38.88059483830456 ], [ 140.987659676104187, 38.873255232200265 ], [ 140.968477784824444, 38.898485128183779 ], [ 140.959686084654578, 38.905595371597315 ], [ 140.916526829275199, 38.919815858424386 ], [ 140.908267959418652, 38.92577928838412 ], [ 140.886688331728948, 38.924632474930327 ], [ 140.865375119195903, 38.938623599066638 ], [ 140.843529076349569, 38.948486194769281 ], [ 140.83553662164968, 38.956513888945857 ], [ 140.814756239429954, 38.961559868142558 ], [ 140.776658872027156, 38.955137712801303 ], [ 140.777724532653821, 38.965917759266979 ], [ 140.76786717185729, 38.984266774527718 ], [ 140.77266264467724, 39.000780888262383 ], [ 140.78278642063043, 39.006514955531358 ], [ 140.7979720845602, 39.028075048462725 ], [ 140.797705669403541, 39.039084457619168 ], [ 140.812891333333312, 39.055139845972306 ], [ 140.803033972536809, 39.059497737096734 ], [ 140.80543170894677, 39.070736508943931 ], [ 140.785983402510368, 39.078076115048226 ], [ 140.775593211400519, 39.075782488140632 ], [ 140.756144904964117, 39.085645083843282 ], [ 140.766002265760648, 39.104911549867055 ], [ 140.770531323423938, 39.124178015890827 ], [ 140.756677735277464, 39.132893798139676 ], [ 140.7806550993771, 39.165692662918239 ], [ 140.811292842393357, 39.177848885528476 ], [ 140.801435481596826, 39.186564667777326 ], [ 140.790246045016971, 39.187023393158846 ], [ 140.768133587013949, 39.195280450026175 ], [ 140.772396229520552, 39.215923092194501 ], [ 140.789713214703653, 39.227849952113978 ], [ 140.785184157040391, 39.236795097053587 ], [ 140.759075471687424, 39.254226661551286 ], [ 140.728437728671196, 39.267529697615316 ], [ 140.720178858814648, 39.274869303719612 ], [ 140.720445273971308, 39.285419987494535 ], [ 140.701529797848224, 39.297117484723259 ], [ 140.699931306908269, 39.318218852273105 ], [ 140.709255837391453, 39.33335678986321 ], [ 140.69220526736504, 39.345971737854967 ], [ 140.694336588618341, 39.35583433355761 ], [ 140.683679982351833, 39.361797763517345 ], [ 140.679150924688543, 39.382669768376431 ], [ 140.659169787938822, 39.386339571428579 ], [ 140.66210035466213, 39.411798830102853 ], [ 140.68474564297847, 39.416615446608795 ], [ 140.688741870328414, 39.426707405002198 ], [ 140.682614321725168, 39.448496860624324 ], [ 140.68954111579842, 39.456524554800893 ], [ 140.715649801151358, 39.472809305844798 ], [ 140.72231018006795, 39.481983813475168 ], [ 140.716715461778023, 39.49115832110553 ], [ 140.731634710551134, 39.517535030542838 ], [ 140.741492071347665, 39.5228103724303 ], [ 140.744156222914285, 39.534737232349784 ], [ 140.730569049924497, 39.553315610301276 ], [ 140.733766031804436, 39.562948843313158 ], [ 140.75507924433748, 39.567306734437587 ], [ 140.785983402510368, 39.601252412669943 ], [ 140.799570575500184, 39.60010559921615 ], [ 140.806763784730066, 39.607215842629685 ], [ 140.810493596923351, 39.629005298251805 ], [ 140.825412845696491, 39.646895588131024 ], [ 140.824880015383144, 39.66845568106239 ], [ 140.819018881936586, 39.689098323230716 ], [ 140.807829445356731, 39.707906063872969 ], [ 140.797439254246882, 39.706759250419175 ], [ 140.786782647980374, 39.724190814916874 ], [ 140.78545057219705, 39.73520022407331 ], [ 140.805165293790111, 39.740704928651532 ], [ 140.814223409116636, 39.756530954313916 ], [ 140.844328321819546, 39.786348104112612 ], [ 140.846992473386166, 39.798274964032089 ], [ 140.817686806153262, 39.814100989694474 ], [ 140.806763784730066, 39.81249545085916 ], [ 140.789979629860312, 39.823963585397124 ], [ 140.791311705643636, 39.843918139493169 ], [ 140.786516232823686, 39.865478232424536 ], [ 140.803833218006787, 39.878322543107046 ], [ 140.819018881936586, 39.877634455034773 ], [ 140.827810582106451, 39.883139159612995 ], [ 140.852853606832753, 39.864331418970735 ], [ 140.88136002859568, 39.871671025075031 ], [ 140.882425689222345, 39.882680434231474 ], [ 140.863243797942602, 39.916626112463831 ], [ 140.856317003869378, 39.935892578487611 ], [ 140.860846061532641, 39.949883702623922 ], [ 140.851521531049457, 39.956305857965177 ], [ 140.849923040109474, 39.969379531338447 ], [ 140.853919267459418, 39.992545163105127 ], [ 140.852320776519434, 40.005160111096885 ], [ 140.859247570592657, 40.012958442582693 ], [ 140.855251343242713, 40.022591675594583 ], [ 140.858714740279339, 40.04415176852595 ], [ 140.850455870422792, 40.063647597240475 ], [ 140.852320776519434, 40.074198281015398 ], [ 140.87869587702906, 40.092088570894617 ], [ 140.882692104379004, 40.112043124990663 ], [ 140.874966064835775, 40.122823171456346 ], [ 140.874966064835775, 40.13497939406659 ], [ 140.886155501415629, 40.152869683945802 ], [ 140.874966064835775, 40.157227575070223 ], [ 140.866174364665909, 40.171677424588054 ], [ 140.889885313608886, 40.184980460652085 ], [ 140.893082295488853, 40.197824771334609 ], [ 140.91626041411854, 40.220531677719762 ], [ 140.938106456964874, 40.223284030008877 ], [ 140.947164572291427, 40.242321133341889 ], [ 140.958354008871254, 40.245532211012517 ], [ 140.9817985426576, 40.219384864265969 ], [ 141.00923930379389, 40.215256335832308 ], [ 141.02948685570027, 40.218696776193696 ], [ 141.050800068233286, 40.230164910731652 ], [ 141.060657429029817, 40.230394273422405 ], [ 141.080105735466191, 40.248972651373904 ], [ 141.103816684409196, 40.249890102136945 ], [ 141.113141214892408, 40.258605884385787 ], [ 141.105948005662498, 40.277872350409567 ], [ 141.143246127595319, 40.297368179124092 ], [ 141.179745004058134, 40.307001412135982 ], [ 141.200791801434491, 40.304937147919148 ], [ 141.220506523027552, 40.312047391332683 ], [ 141.227166901944116, 40.320304448200012 ], [ 141.267928420913535, 40.347139883018841 ], [ 141.28897521828992, 40.345304981492767 ], [ 141.301496730653071, 40.362736545990465 ], [ 141.320145791619467, 40.369846789404001 ], [ 141.337995607115886, 40.358608017556797 ], [ 141.339860513212528, 40.347369245709601 ], [ 141.354513346828981, 40.328102779685821 ], [ 141.385151089845209, 40.339341551533025 ], [ 141.396873356738382, 40.358149292175284 ], [ 141.41232543582484, 40.354938214504656 ], [ 141.441897518214404, 40.370764240167034 ], [ 141.476265073423917, 40.374204680528422 ], [ 141.509300552850135, 40.359754831010591 ], [ 141.516760177236677, 40.352644587597055 ], [ 141.539405465553045, 40.344387530729733 ], [ 141.566846226689307, 40.358608017556797 ], [ 141.584696042185726, 40.370993602857794 ], [ 141.584696042185726, 40.392553695789161 ], [ 141.599348875802178, 40.409297172214579 ], [ 141.624924730841826, 40.417783591772675 ], [ 141.638511903831613, 40.418930405226462 ], [ 141.670748137787825, 40.43269216667202 ], [ 141.684868141090959, 40.448288829643644 ], [ 141.702984371744037, 40.424664472495451 ], [ 141.713640978010574, 40.420306581371023 ], [ 141.722432678180439, 40.407003545306992 ], [ 141.721100602397115, 40.398287763058136 ], [ 141.754402496979992, 40.36915870133172 ], [ 141.756000987919947, 40.354479489123136 ], [ 141.769854576066422, 40.347827971091121 ], [ 141.773584388259707, 40.322827437798367 ], [ 141.78530665515288, 40.315258469003311 ], [ 141.791967034069444, 40.30103798217624 ], [ 141.816477228482427, 40.271679557759064 ], [ 141.832462137882203, 40.234522801856073 ], [ 141.829531571158924, 40.220761040410522 ], [ 141.814079492072466, 40.220761040410522 ], [ 141.794897600792751, 40.201265211695997 ], [ 141.801291564552656, 40.184751097961332 ], [ 141.835126289448851, 40.177411491857036 ], [ 141.859370068705175, 40.165025906556039 ], [ 141.873223656851621, 40.144612627078473 ], [ 141.871625165911666, 40.13475003137583 ], [ 141.846582141185337, 40.13429130599431 ], [ 141.8281994953756, 40.113189938444464 ], [ 141.825801758965639, 40.103556705432581 ], [ 141.833527798508868, 40.074886369087679 ], [ 141.849512707908644, 40.059060343425294 ], [ 141.87855195998489, 40.047592208887338 ], [ 141.8857451692148, 40.03383044744178 ], [ 141.915850081917711, 40.008141826076752 ], [ 141.936896879294068, 40.008829914149032 ], [ 141.953681034163822, 39.986811095836146 ], [ 141.958210091827084, 39.954241593748343 ], [ 141.956078770573782, 39.94392027266418 ], [ 141.943557258210632, 39.94414963535494 ], [ 141.940093861174006, 39.920754640897499 ], [ 141.949951221970537, 39.908369055596502 ], [ 141.955812355417123, 39.89047876571729 ], [ 141.971264434503581, 39.884515335757548 ], [ 141.979789719516788, 39.865019507043016 ], [ 141.974461416383519, 39.846899854473037 ], [ 141.991511986409961, 39.820752507726496 ], [ 141.983785946866732, 39.81295417624068 ], [ 141.98911425, 39.798274964032089 ], [ 141.98431877718005, 39.788641731020206 ], [ 141.996573874386542, 39.778320409936043 ], [ 141.988315004529994, 39.762265021582898 ], [ 141.99177840156662, 39.747356446683554 ], [ 141.982453871083408, 39.734053410619516 ], [ 141.985118022650056, 39.712034592306637 ], [ 141.97659273763685, 39.706071162346895 ], [ 141.970198773876916, 39.687034059013882 ], [ 141.986716513590011, 39.687492784395403 ], [ 141.976059907323503, 39.663868427247209 ], [ 141.98165462561343, 39.64529004929571 ], [ 141.968333867780274, 39.63221637592244 ], [ 141.971264434503581, 39.625564857890417 ], [ 141.963538394960352, 39.611344371063353 ], [ 141.945155749150615, 39.598500060380836 ], [ 141.958742922140431, 39.586573200461359 ], [ 141.978457643733464, 39.61317927258942 ], [ 141.986716513590011, 39.617537163713848 ], [ 142.015489350509625, 39.655382007689113 ], [ 142.030142184126078, 39.64574877467723 ], [ 142.025080296149468, 39.616849075641568 ], [ 142.032273505379379, 39.588408101987433 ], [ 142.026945202246111, 39.579692319738584 ], [ 142.038933884295943, 39.573270164397321 ], [ 142.057849360419027, 39.574416977851122 ], [ 142.067706721215529, 39.562719480622398 ], [ 142.071436533408814, 39.542306201144832 ], [ 142.059714266515641, 39.533590418895983 ], [ 142.044262187429212, 39.531296791988389 ], [ 142.030675014439396, 39.5239571858841 ], [ 142.029875768969418, 39.508589885603229 ], [ 142.009894632219698, 39.493910673394645 ], [ 142.012558783786318, 39.479002098495293 ], [ 141.992844062193285, 39.483130626928961 ], [ 141.972596510286905, 39.481525088093647 ], [ 141.956611600887129, 39.475102932752392 ], [ 141.953947449320481, 39.467992689338857 ], [ 141.977924813420145, 39.438863627612434 ], [ 141.986450098433352, 39.448267497933564 ], [ 142.002168592676469, 39.454689653274819 ], [ 142.012558783786318, 39.468222052029617 ], [ 142.035204072102658, 39.483359989619721 ], [ 142.046393508682513, 39.483130626928961 ], [ 142.060513511985647, 39.467992689338857 ], [ 142.049324075405792, 39.456065829419373 ], [ 142.039733129765949, 39.418450348134868 ], [ 142.011226708003022, 39.415927358536521 ], [ 142.000570101736486, 39.410193291267539 ], [ 141.974994246696866, 39.42326696464081 ], [ 141.955545940260464, 39.40056005825565 ], [ 141.939028200547369, 39.386339571428579 ], [ 141.947553485560576, 39.370972271147714 ], [ 141.96433764043033, 39.37877060263353 ], [ 141.96886669809362, 39.372807172673788 ], [ 141.957677261513766, 39.35583433355761 ], [ 141.939827446017347, 39.347806639381034 ], [ 141.915050836447705, 39.35583433355761 ], [ 141.915850081917711, 39.34643046323648 ], [ 141.897201020951286, 39.337714680987631 ], [ 141.904660645337856, 39.326246546449674 ], [ 141.923309706304252, 39.33312742717245 ], [ 141.943290843053973, 39.328998898738782 ], [ 141.95900933729709, 39.337026592915358 ], [ 141.975260661853525, 39.337714680987631 ], [ 141.980322549830106, 39.331521888337136 ], [ 141.96913311325028, 39.312714147694884 ], [ 141.957943676670425, 39.316613313437784 ], [ 141.920911969894291, 39.308585619261216 ], [ 141.907058381747817, 39.309044344642736 ], [ 141.904394230181197, 39.298264298177052 ], [ 141.925973857870872, 39.285878712876055 ], [ 141.925174612400895, 39.26592415878001 ], [ 141.905459890807833, 39.272346314121265 ], [ 141.896135360324649, 39.270740775285951 ], [ 141.902795739241213, 39.253079848097492 ], [ 141.920911969894291, 39.237941910507388 ], [ 141.942225182427308, 39.24734578082851 ], [ 141.953947449320481, 39.222803972917276 ], [ 141.938228955077363, 39.223262698298797 ], [ 141.894004039071348, 39.200326429222876 ], [ 141.868161768875041, 39.206748584564131 ], [ 141.882015357021515, 39.186105942395805 ], [ 141.921711215364269, 39.185188491632772 ], [ 141.920645554737632, 39.176472709383923 ], [ 141.882814602491493, 39.153995165689523 ], [ 141.845782895715359, 39.155371341834076 ], [ 141.836724780388806, 39.147114284966747 ], [ 141.852976104945242, 39.136104875810304 ], [ 141.874022902321627, 39.128306544324488 ], [ 141.872690826538303, 39.116838409786531 ], [ 141.900398002831253, 39.120049487457159 ], [ 141.91611649707437, 39.106746451393128 ], [ 141.892405548131364, 39.096195767618205 ], [ 141.883081017648152, 39.08908552420467 ], [ 141.856972332295186, 39.104682187176294 ], [ 141.839921762268773, 39.103306011031741 ], [ 141.815944398169108, 39.114544782878937 ], [ 141.811948170819164, 39.086791897297076 ], [ 141.824203268025656, 39.075094400068359 ], [ 141.844450819932035, 39.076241213522152 ], [ 141.870026674971683, 39.072342047779244 ], [ 141.874289317478286, 39.062479452076602 ], [ 141.849246292751957, 39.05789219826142 ], [ 141.819674210362393, 39.059039011715214 ], [ 141.816743643639086, 39.051240680229398 ], [ 141.84818063212532, 39.037937644165368 ], [ 141.853242520101901, 39.029909949988799 ], [ 141.837790441015471, 39.024405245410577 ], [ 141.818874964892416, 39.023029069266023 ], [ 141.795963261419388, 39.026010784245891 ], [ 141.793831940166086, 39.038625732237648 ], [ 141.763194197149858, 39.020047354286149 ], [ 141.729625887410322, 39.023946520029057 ], [ 141.733888529916953, 39.054451757900033 ], [ 141.72216626302378, 39.052846219064719 ], [ 141.725096829747059, 39.041378084526755 ], [ 141.710177580973948, 39.025093333482857 ], [ 141.732023623820311, 39.01201966010958 ], [ 141.744278721026802, 38.994817458302641 ], [ 141.73761834211021, 38.988854028342899 ], [ 141.713108147697227, 38.997799173282509 ], [ 141.711776071913931, 38.984266774527718 ], [ 141.698988144394093, 38.975321629588109 ], [ 141.703250786900696, 38.964312220431665 ], [ 141.722699093337098, 38.964082857740905 ], [ 141.712841732540568, 38.945275117098653 ], [ 141.695791162514155, 38.947339381315487 ], [ 141.683536065307663, 38.968440748865333 ], [ 141.672080213571149, 38.972798639989762 ], [ 141.666751910437881, 38.98908339103366 ], [ 141.680339083427697, 38.998028535973269 ], [ 141.670215307474507, 39.004680054005284 ], [ 141.644106622121541, 39.007203043603639 ], [ 141.624391900528508, 39.001010250953136 ], [ 141.632117940071709, 38.971193101154441 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1473, "NAME_1": "Kagawa", "VARNAME_1": "", "HASC_1": "JP.KG", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.629006633918465, 34.278203085530606 ], [ 133.63779833408833, 34.272010292880104 ], [ 133.622346255001872, 34.255954904526959 ], [ 133.617284367025292, 34.265817500229609 ], [ 133.629006633918465, 34.278203085530606 ] ] ], [ [ [ 133.665771925537939, 34.32499307444548 ], [ 133.679891928841073, 34.316965380268911 ], [ 133.668702492261218, 34.309625774164616 ], [ 133.665771925537939, 34.32499307444548 ] ] ], [ [ [ 134.444237013306889, 34.207100651395251 ], [ 134.44130644658361, 34.187834185371486 ], [ 134.432514746413744, 34.176595413524282 ], [ 134.436244558607029, 34.166732817821639 ], [ 134.414664930917326, 34.15732894750051 ], [ 134.406406061060778, 34.163980465532525 ], [ 134.396548700264248, 34.160310662480377 ], [ 134.359516993488114, 34.181870755411744 ], [ 134.34539699018498, 34.169255807419987 ], [ 134.323284532181958, 34.172008159709101 ], [ 134.299573583238953, 34.166732817821639 ], [ 134.294245280105685, 34.175907325452002 ], [ 134.283855088995836, 34.174072423925935 ], [ 134.262541876462819, 34.18003585388567 ], [ 134.231637718289903, 34.177283501596563 ], [ 134.193007520573786, 34.169714532801507 ], [ 134.175956950547373, 34.172466885090614 ], [ 134.152778831917686, 34.162833652078731 ], [ 134.138392413457893, 34.14792507717938 ], [ 134.141322980181201, 34.130034787300168 ], [ 134.125071655624765, 34.115584937782337 ], [ 134.098163724801793, 34.111227046657916 ], [ 134.088839194318609, 34.115584937782337 ], [ 134.061931263495666, 34.109850870513355 ], [ 134.052606733012453, 34.114208761637784 ], [ 134.029695029539454, 34.083244798385294 ], [ 134.008381817006409, 34.0809511714777 ], [ 134.002787098716482, 34.072235389228851 ], [ 134.002254268403163, 34.071547301156571 ], [ 133.978276904303499, 34.071547301156571 ], [ 133.954033125047175, 34.086914601437442 ], [ 133.934851233767461, 34.11260322280247 ], [ 133.924727457814271, 34.110997683967156 ], [ 133.902881414967908, 34.097924010593879 ], [ 133.895421790581338, 34.104575528625894 ], [ 133.874907823518299, 34.097465285212365 ], [ 133.864784047565109, 34.102052539027547 ], [ 133.845868571442054, 34.092419306015657 ], [ 133.825887434692333, 34.08966695372655 ], [ 133.821891207342389, 34.072923477301131 ], [ 133.801377240279351, 34.066271959269109 ], [ 133.782195348999608, 34.076593280353272 ], [ 133.76141496677991, 34.05824426509254 ], [ 133.731310054076999, 34.040812700594842 ], [ 133.724116844847117, 34.019252607663475 ], [ 133.715325144677223, 34.013977265776013 ], [ 133.692946271517542, 34.010078100033112 ], [ 133.680158343997732, 34.01283045232222 ], [ 133.662042113344654, 34.024298586860176 ], [ 133.640196070498291, 34.023839861478663 ], [ 133.625010406568521, 34.031867555655232 ], [ 133.614087385145325, 34.029803291438398 ], [ 133.597303230275571, 34.041271425976362 ], [ 133.623944745941856, 34.049757845534451 ], [ 133.631137955171766, 34.059849803927854 ], [ 133.637265503775012, 34.083932886457568 ], [ 133.636199843148347, 34.107557243605768 ], [ 133.632470030955062, 34.122695181195873 ], [ 133.638863994714995, 34.128658611155615 ], [ 133.645790788788219, 34.159622574408104 ], [ 133.649254185824844, 34.186228646536165 ], [ 133.63513418252171, 34.209394278302845 ], [ 133.612222479048683, 34.220862412840809 ], [ 133.605562100132119, 34.233477360832566 ], [ 133.590376436202348, 34.237835251956987 ], [ 133.579453414779152, 34.24838593573191 ], [ 133.59011002104566, 34.256184267217719 ], [ 133.612488894205342, 34.250679562639505 ], [ 133.622079839845213, 34.235541625049393 ], [ 133.634867767365051, 34.238752702720021 ], [ 133.647655694884861, 34.232789272760286 ], [ 133.65804588599471, 34.239670153483061 ], [ 133.670567398357861, 34.239899516173821 ], [ 133.683088910721011, 34.233477360832566 ], [ 133.707865520290682, 34.239440790792301 ], [ 133.71372665373724, 34.24769784765963 ], [ 133.737171187523586, 34.265129412157329 ], [ 133.731310054076999, 34.278203085530606 ], [ 133.746762133163458, 34.285083966253382 ], [ 133.752623266610044, 34.278891173602887 ], [ 133.76860817600982, 34.287148230470216 ], [ 133.762480627406575, 34.299763178461973 ], [ 133.783261009626273, 34.310313862236896 ], [ 133.793118370422803, 34.306185333803228 ], [ 133.807771204039256, 34.310313862236896 ], [ 133.823223283125714, 34.322699447537886 ], [ 133.819227055775769, 34.350911058501268 ], [ 133.840540268308786, 34.358938752677844 ], [ 133.855459517081925, 34.358938752677844 ], [ 133.85732442317854, 34.344947628541533 ], [ 133.834945550018858, 34.332791405931289 ], [ 133.839208192525462, 34.325451799827 ], [ 133.86718178397507, 34.33462630745737 ], [ 133.891425563231394, 34.351140421192028 ], [ 133.893024054171377, 34.362837918420745 ], [ 133.887962166194797, 34.374535415649461 ], [ 133.894356129954701, 34.382563109826037 ], [ 133.919665569837662, 34.377517130629336 ], [ 133.926325948754254, 34.389443990548813 ], [ 133.938048215647399, 34.381875021753757 ], [ 133.959894258493762, 34.377058405247816 ], [ 133.96522256162703, 34.363755369183785 ], [ 133.976145583050197, 34.373388602195668 ], [ 133.991064831823337, 34.358250664605563 ], [ 134.002787098716482, 34.359168115368604 ], [ 134.038753144865979, 34.352057871955068 ], [ 134.061931263495666, 34.357791939224043 ], [ 134.063796169592308, 34.362837918420745 ], [ 134.091503345885229, 34.365360908019099 ], [ 134.092036176198548, 34.384168648661351 ], [ 134.112283728104927, 34.366737084163653 ], [ 134.1240059949981, 34.380728208299963 ], [ 134.119743352491497, 34.394260607054754 ], [ 134.136261092204592, 34.400453399705256 ], [ 134.160238456304256, 34.389214627858053 ], [ 134.1642346836542, 34.375911591794022 ], [ 134.157574304737636, 34.365360908019099 ], [ 134.159972041147597, 34.355727675007209 ], [ 134.153578077387692, 34.343800815087732 ], [ 134.159972041147597, 34.331415229786735 ], [ 134.17702261117401, 34.32453434906396 ], [ 134.179686762740658, 34.332562043240536 ], [ 134.193007520573786, 34.344947628541533 ], [ 134.220714696866736, 34.34747061813988 ], [ 134.234035454699892, 34.337378659746477 ], [ 134.250819609569646, 34.351828509264308 ], [ 134.256680743016233, 34.339442923963311 ], [ 134.266271688656104, 34.332791405931289 ], [ 134.258279233956216, 34.313983665289037 ], [ 134.246823382219702, 34.307332147257021 ], [ 134.255881497546227, 34.286001417016415 ], [ 134.269202255379383, 34.288983131996289 ], [ 134.291314713382405, 34.274533282478458 ], [ 134.306500377312176, 34.277285634767566 ], [ 134.345929820498299, 34.252514464165571 ], [ 134.369374354284616, 34.249532749185704 ], [ 134.381895866647795, 34.258019168743793 ], [ 134.392552472914304, 34.252743826856332 ], [ 134.393085303227622, 34.239440790792301 ], [ 134.406672476217437, 34.238064614647747 ], [ 134.406672476217437, 34.228202018945098 ], [ 134.419460403737247, 34.216504521716381 ], [ 134.444237013306889, 34.207100651395251 ] ] ], [ [ [ 133.712927408267262, 34.400453399705256 ], [ 133.730777223763681, 34.373847327577188 ], [ 133.722784769063793, 34.362608555729992 ], [ 133.712128162797285, 34.363755369183785 ], [ 133.709197596073977, 34.353434048099622 ], [ 133.699606650434134, 34.351369783882788 ], [ 133.684420986504335, 34.361461742276191 ], [ 133.700139480747453, 34.387150363641219 ], [ 133.707599105133994, 34.386691638259705 ], [ 133.712927408267262, 34.400453399705256 ] ] ], [ [ [ 133.786191576349552, 34.395866145890068 ], [ 133.791253464326161, 34.388067814404259 ], [ 133.763546288033211, 34.368342622998966 ], [ 133.754754587863346, 34.36994816183428 ], [ 133.761148551623251, 34.390132078621093 ], [ 133.777666291336345, 34.400912125086776 ], [ 133.786191576349552, 34.395866145890068 ] ] ], [ [ [ 134.053405978482431, 34.389673353239573 ], [ 134.036888238769336, 34.386691638259705 ], [ 134.05100824207247, 34.408481093881825 ], [ 134.056869375519057, 34.398159772797662 ], [ 134.053405978482431, 34.389673353239573 ] ] ], [ [ [ 133.673764380237827, 34.410315995407899 ], [ 133.668968907417877, 34.386921000950466 ], [ 133.661242867874677, 34.390361441311853 ], [ 133.658578716308028, 34.406646192355751 ], [ 133.673764380237827, 34.410315995407899 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1474, "NAME_1": "Kagoshima", "VARNAME_1": "", "HASC_1": "JP.KS", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.433644663835395, 27.068645626896906 ], [ 128.452560139958479, 27.052819601234521 ], [ 128.456556367308423, 27.023690539508102 ], [ 128.424053718195552, 27.022314363363549 ], [ 128.413130696772356, 27.02781906794177 ], [ 128.406470317855792, 27.046626808584023 ], [ 128.415262018025658, 27.052131513162244 ], [ 128.421389566628903, 27.066351999989315 ], [ 128.433644663835395, 27.068645626896906 ] ] ], [ [ [ 128.696063593148352, 27.442048087452871 ], [ 128.71417982380143, 27.434708481348576 ], [ 128.694465102208369, 27.418653092995434 ], [ 128.676348871555291, 27.41406583918025 ], [ 128.654236413552269, 27.385166140144591 ], [ 128.634788107115895, 27.365211586048542 ], [ 128.624131500849387, 27.362688596450191 ], [ 128.598555645809739, 27.338834876611234 ], [ 128.578574509060019, 27.330348457053145 ], [ 128.55806054199698, 27.328513555527071 ], [ 128.542342047753863, 27.337688063157437 ], [ 128.531419026330695, 27.34823874693236 ], [ 128.519963174594182, 27.372321829462077 ], [ 128.524225817100785, 27.393423197011924 ], [ 128.531685441487355, 27.404661968859124 ], [ 128.559392617780304, 27.395487461228754 ], [ 128.57830809390336, 27.401909616570013 ], [ 128.593760172989818, 27.397551725445588 ], [ 128.612142818799555, 27.408561134602028 ], [ 128.619868858342755, 27.40512069424064 ], [ 128.63372244648923, 27.408561134602028 ], [ 128.655568489335593, 27.424157797573653 ], [ 128.661962453095498, 27.423699072192136 ], [ 128.696063593148352, 27.442048087452871 ] ] ], [ [ [ 128.906797982068696, 27.89366322555772 ], [ 128.925979873348439, 27.887699795597982 ], [ 128.936370064458288, 27.89159896134089 ], [ 128.969405543884477, 27.889075971742535 ], [ 128.975266677331064, 27.874855484915468 ], [ 128.964610071064556, 27.870497593791043 ], [ 128.956084786051349, 27.85994691001612 ], [ 128.970737619667801, 27.857423920417769 ], [ 128.967274222631175, 27.840909806683108 ], [ 128.973401771234421, 27.833340837888052 ], [ 128.965675731691192, 27.82554250640224 ], [ 128.968872713571159, 27.817285449534911 ], [ 128.984058377500929, 27.806505403069227 ], [ 128.997645550490745, 27.802147511944803 ], [ 129.016294611457141, 27.786550848973178 ], [ 129.022422160060387, 27.776917615961292 ], [ 129.036542163363521, 27.77210099945535 ], [ 129.038407069460163, 27.762238403752704 ], [ 129.032279520856918, 27.747100466162596 ], [ 129.022688575217046, 27.734714880861603 ], [ 129.017093856927147, 27.713613513311756 ], [ 129.000043286900706, 27.696411311504814 ], [ 129.000842532370712, 27.683108275440784 ], [ 128.987788189694214, 27.668429063232196 ], [ 128.937169309928265, 27.66086009443714 ], [ 128.920385155058511, 27.673704405119654 ], [ 128.916388927708567, 27.693429596524947 ], [ 128.900137603152132, 27.706273907207461 ], [ 128.89321080907888, 27.707420720661258 ], [ 128.88068929671573, 27.721870570179085 ], [ 128.899338357682154, 27.73746723315071 ], [ 128.905732321442059, 27.764990756041815 ], [ 128.896674206115506, 27.77141291138307 ], [ 128.889214581728965, 27.786780211663938 ], [ 128.888948166572277, 27.818661625679464 ], [ 128.878824390619087, 27.833799563269572 ], [ 128.891612318138925, 27.853066029293345 ], [ 128.888681751415618, 27.864992889212822 ], [ 128.891878733295584, 27.885635531381148 ], [ 128.906797982068696, 27.89366322555772 ] ] ], [ [ [ 129.224631263967524, 28.045730689531066 ], [ 129.234488624764055, 28.031051477322478 ], [ 129.251539194790496, 28.038161720736014 ], [ 129.269655425443574, 28.032198290776272 ], [ 129.269655425443574, 28.016601627804647 ], [ 129.253670516043798, 28.013390550134019 ], [ 129.23315654898073, 28.023711871218183 ], [ 129.211843336447714, 28.022335695073629 ], [ 129.205715787844468, 28.041372798406641 ], [ 129.217438054737642, 28.053529021016878 ], [ 129.224631263967524, 28.045730689531066 ] ] ], [ [ [ 129.170016156851631, 28.05880436290434 ], [ 129.170016156851631, 28.03862044611753 ], [ 129.165753514345027, 28.021647607001352 ], [ 129.146038792751966, 28.01591353973237 ], [ 129.14470671696867, 28.033115741539312 ], [ 129.149768604945251, 28.046877502984863 ], [ 129.162023702151743, 28.059721813667377 ], [ 129.170016156851631, 28.05880436290434 ] ] ], [ [ [ 129.208912769724407, 28.201009231175039 ], [ 129.218503715364278, 28.191146635472393 ], [ 129.203318051434508, 28.18059595169747 ], [ 129.21530673348434, 28.173715070974694 ], [ 129.212376166761032, 28.163623112581291 ], [ 129.227295415534172, 28.155595418404719 ], [ 129.244079570403926, 28.151008164589534 ], [ 129.261396555586998, 28.168439729087233 ], [ 129.274717313420155, 28.157889045312309 ], [ 129.261662970743686, 28.143897921175999 ], [ 129.252338440260473, 28.139081304670057 ], [ 129.249141458380507, 28.129448071658171 ], [ 129.268856179973568, 28.128989346276654 ], [ 129.279779201396764, 28.116603760975657 ], [ 129.295764110796512, 28.107887978726808 ], [ 129.300559583616462, 28.119126750574008 ], [ 129.32133996583616, 28.103071362220863 ], [ 129.341054687429221, 28.114080771377306 ], [ 129.348247896659103, 28.098942833787198 ], [ 129.340521857115903, 28.077153378165075 ], [ 129.315212417232914, 28.071189948205337 ], [ 129.321606380992819, 28.096419844188848 ], [ 129.304555810966406, 28.086098523104685 ], [ 129.286972410626646, 28.085181072341648 ], [ 129.283775428746708, 28.062244803265727 ], [ 129.269389010286886, 28.069125683988503 ], [ 129.261929385900345, 28.078070828928112 ], [ 129.26565919809363, 28.088392150012275 ], [ 129.261662970743686, 28.100089647240996 ], [ 129.25073994932049, 28.111099056397435 ], [ 129.217704469894301, 28.075089113948241 ], [ 129.224364848810865, 28.099172196477959 ], [ 129.215040318327681, 28.114768859449583 ], [ 129.216105978954317, 28.140457480814611 ], [ 129.18786597234805, 28.157200957240033 ], [ 129.184935405624771, 28.173256345593177 ], [ 129.175344459984899, 28.183118941295824 ], [ 129.19053012391467, 28.188394283183285 ], [ 129.192927860324659, 28.194816438524541 ], [ 129.208912769724407, 28.201009231175039 ] ] ], [ [ [ 129.18520182078143, 28.306286706233507 ], [ 129.211843336447714, 28.298259012056938 ], [ 129.218770130520937, 28.287478965591255 ], [ 129.208113524254429, 28.282203623703793 ], [ 129.178807857021525, 28.297112198603141 ], [ 129.18520182078143, 28.306286706233507 ] ] ], [ [ [ 130.02121258238958, 28.378994679204173 ], [ 130.033734094752731, 28.370278896955323 ], [ 130.036131831162692, 28.361563114706474 ], [ 130.016150694412971, 28.335874493341443 ], [ 130.009223900339748, 28.336103856032203 ], [ 130.002030691109837, 28.322112731895892 ], [ 129.989775593903346, 28.309039058522618 ], [ 129.978852572480179, 28.288396416354292 ], [ 129.954875208380514, 28.275322742981018 ], [ 129.941554450547386, 28.274864017599498 ], [ 129.929832183654213, 28.29183685671568 ], [ 129.915179350037761, 28.296194747840104 ], [ 129.912781613627772, 28.312020773502489 ], [ 129.920507653171001, 28.322800819968172 ], [ 129.934894071630794, 28.329222975309428 ], [ 129.951678226500576, 28.329452338000188 ], [ 129.972991439033592, 28.343214099445738 ], [ 129.994304651566637, 28.364774192377102 ], [ 130.013220127689692, 28.378306591131896 ], [ 130.02121258238958, 28.378994679204173 ] ] ], [ [ [ 129.690324957814255, 28.526704252053094 ], [ 129.693521939694222, 28.510878226390709 ], [ 129.690058542657596, 28.501703718760339 ], [ 129.704711376274076, 28.477391273539865 ], [ 129.719364209890529, 28.474409558559998 ], [ 129.722827606927126, 28.458354170206853 ], [ 129.712437415817277, 28.445280496833579 ], [ 129.720163455360506, 28.440234517636878 ], [ 129.71137175519064, 28.422114865066902 ], [ 129.696985336730847, 28.414775258962607 ], [ 129.677004199981127, 28.410646730528942 ], [ 129.664749102774636, 28.396884969083388 ], [ 129.630115132408463, 28.407435652858311 ], [ 129.61359739269534, 28.400784134826296 ], [ 129.602407956115513, 28.385646197236191 ], [ 129.593083425632301, 28.366379731212419 ], [ 129.584824555775754, 28.363627378923308 ], [ 129.562445682616072, 28.332434052980055 ], [ 129.53793548820309, 28.331516602217022 ], [ 129.534738506323151, 28.319819104988301 ], [ 129.545128697433, 28.311332685430209 ], [ 129.520085672706671, 28.300552638964529 ], [ 129.503035102680258, 28.298947100129215 ], [ 129.480656229520577, 28.288625779045049 ], [ 129.475860756700627, 28.29390112093251 ], [ 129.458543771517554, 28.296653473221625 ], [ 129.453748298697633, 28.276469556434812 ], [ 129.459609432144191, 28.268900587639759 ], [ 129.449219241034342, 28.260872893463187 ], [ 129.442292446961119, 28.245046867800802 ], [ 129.432435086164588, 28.239542163222584 ], [ 129.442558862117778, 28.229908930210698 ], [ 129.459343016987532, 28.228991479447661 ], [ 129.475061511230649, 28.217752707600461 ], [ 129.460675092770856, 28.210642464186925 ], [ 129.450018486504348, 28.196651340050614 ], [ 129.434299992261231, 28.198944966958209 ], [ 129.428705273971303, 28.19229344892619 ], [ 129.40925696753493, 28.182430853223543 ], [ 129.405793570498304, 28.159494584147623 ], [ 129.400198852208376, 28.151925615352571 ], [ 129.382615451868617, 28.165228651416605 ], [ 129.375422242638734, 28.163393749890531 ], [ 129.350645633069092, 28.173715070974694 ], [ 129.337324875235936, 28.168669091777993 ], [ 129.357039596828997, 28.154219242260165 ], [ 129.378352809362013, 28.125319543224506 ], [ 129.379152054832019, 28.109493517562122 ], [ 129.3613022393356, 28.120044201337045 ], [ 129.366097712155522, 28.128530620895134 ], [ 129.344784499622506, 28.13839321659778 ], [ 129.32133996583616, 28.13564086430867 ], [ 129.316544493016238, 28.141604294268408 ], [ 129.291501468289908, 28.153531154187888 ], [ 129.297096186579836, 28.171192081376343 ], [ 129.274184483106836, 28.18105467707899 ], [ 129.263527876840328, 28.182430853223543 ], [ 129.264060707153646, 28.193440262379987 ], [ 129.272585992166853, 28.198715604267448 ], [ 129.27338523763683, 28.208807562660851 ], [ 129.286173165156669, 28.21477099262059 ], [ 129.285640334843322, 28.221881236034125 ], [ 129.266991273876926, 28.231055743664491 ], [ 129.254469761513775, 28.233120007881325 ], [ 129.254203346357116, 28.218899521054254 ], [ 129.248342212910529, 28.214082904548313 ], [ 129.219569375990943, 28.223716137560199 ], [ 129.20518295753115, 28.218670158363498 ], [ 129.193993520951295, 28.227844665993864 ], [ 129.177209366081541, 28.224174862941716 ], [ 129.173213138731597, 28.239083437841067 ], [ 129.151899926198553, 28.23747789900575 ], [ 129.140710489618726, 28.257432453101799 ], [ 129.166552759815033, 28.256973727720283 ], [ 129.181205593431486, 28.270506126475077 ], [ 129.186267481408066, 28.262478432298501 ], [ 129.215040318327681, 28.25812054117408 ], [ 129.213708242544357, 28.266606960732169 ], [ 129.226496170064166, 28.273717204145704 ], [ 129.254203346357116, 28.264083971133818 ], [ 129.264593537466965, 28.267524411495206 ], [ 129.274717313420155, 28.262478432298501 ], [ 129.279246371083417, 28.278075095270129 ], [ 129.264327122310306, 28.274175929527221 ], [ 129.250207119007172, 28.276928281816332 ], [ 129.233422964137418, 28.285644064065181 ], [ 129.213708242544357, 28.300782001655289 ], [ 129.226229754907507, 28.310644597357932 ], [ 129.234755039920714, 28.308121607759581 ], [ 129.270721086070211, 28.328076161855634 ], [ 129.303490150339741, 28.329452338000188 ], [ 129.311749020196288, 28.342755374064218 ], [ 129.326668268969428, 28.352388607076108 ], [ 129.331996572102668, 28.361333752015714 ], [ 129.345050914779165, 28.370049534264563 ], [ 129.352510539165706, 28.360645663943437 ], [ 129.370360354662125, 28.355829047437496 ], [ 129.387144509531907, 28.373948700007471 ], [ 129.403928664401661, 28.358352037035846 ], [ 129.408457722064924, 28.383352570328597 ], [ 129.428172443657985, 28.389086637597579 ], [ 129.443358107587756, 28.383123207637837 ], [ 129.45454754416761, 28.397573057155668 ], [ 129.456945280577571, 28.411564181291979 ], [ 129.464138489807482, 28.41362844550881 ], [ 129.479590568893911, 28.400325409444775 ], [ 129.490247175160448, 28.412252269364256 ], [ 129.504100763306894, 28.397802419846428 ], [ 129.510761142223487, 28.409958642456665 ], [ 129.518220766610028, 28.441151968399915 ], [ 129.534738506323151, 28.449409025267244 ], [ 129.545661527746319, 28.462253335949761 ], [ 129.553920397602866, 28.455831180608502 ], [ 129.569106061532636, 28.457436719443816 ], [ 129.57816417685919, 28.467758040527979 ], [ 129.595214746885603, 28.475556372013791 ], [ 129.613064562382021, 28.475785734704552 ], [ 129.614396638165346, 28.464776325548112 ], [ 129.605072107682133, 28.450555838721041 ], [ 129.607736259248782, 28.439546429564601 ], [ 129.597612483295592, 28.435647263821693 ], [ 129.589886443752363, 28.415233984344127 ], [ 129.601075880332189, 28.415233984344127 ], [ 129.602674371272172, 28.430830647315751 ], [ 129.619724941298614, 28.440005154946117 ], [ 129.630115132408463, 28.435876626512453 ], [ 129.618659280671949, 28.424179129283733 ], [ 129.624786829275195, 28.415463347034883 ], [ 129.656223817761429, 28.426014030809807 ], [ 129.65862155417139, 28.435188538440173 ], [ 129.648231363061541, 28.450555838721041 ], [ 129.654625326821446, 28.461335885186724 ], [ 129.665814763401272, 28.446886035668893 ], [ 129.673540802944501, 28.460647797114447 ], [ 129.666347593714619, 28.475327009323031 ], [ 129.644767966024915, 28.498033915708191 ], [ 129.654358911664787, 28.499180729161989 ], [ 129.675405709041144, 28.52463998783626 ], [ 129.690324957814255, 28.526704252053094 ] ] ], [ [ [ 128.994448568610807, 28.807444185542344 ], [ 129.002707438467354, 28.802398206345643 ], [ 128.994448568610807, 28.79161815987996 ], [ 128.985124038127594, 28.796664139076661 ], [ 128.994448568610807, 28.807444185542344 ] ] ], [ [ [ 129.200653899867859, 29.159745278548463 ], [ 129.218770130520937, 29.158827827785426 ], [ 129.221967112400904, 29.131074942203565 ], [ 129.203318051434508, 29.136350284091026 ], [ 129.187066726878072, 29.152176309753411 ], [ 129.200653899867859, 29.159745278548463 ] ] ], [ [ [ 129.596013992355608, 29.476724517177669 ], [ 129.609867580502083, 29.472137263362484 ], [ 129.620524186768591, 29.450347807740361 ], [ 129.614396638165346, 29.444613740471382 ], [ 129.597612483295592, 29.444384377780622 ], [ 129.595214746885603, 29.453329522720232 ], [ 129.58322606483577, 29.462504030350598 ], [ 129.596013992355608, 29.476724517177669 ] ] ], [ [ [ 129.739345346640249, 29.673288343158298 ], [ 129.743874404303511, 29.663884472837168 ], [ 129.738546101170243, 29.650352074082377 ], [ 129.739611761796908, 29.63796648878138 ], [ 129.730020816157037, 29.626039628861903 ], [ 129.697784582200825, 29.602415271713706 ], [ 129.687660806247635, 29.624663452717346 ], [ 129.683398163741032, 29.653563151753005 ], [ 129.697784582200825, 29.658838493640467 ], [ 129.710306094563975, 29.66915981472463 ], [ 129.739345346640249, 29.673288343158298 ] ] ], [ [ [ 129.536603412419765, 29.697142062997251 ], [ 129.54033322461305, 29.684068389623977 ], [ 129.527545297093241, 29.682004125407147 ], [ 129.525413975839939, 29.691407995728273 ], [ 129.536603412419765, 29.697142062997251 ] ] ], [ [ [ 129.853637448848616, 29.883155205202957 ], [ 129.893066892034739, 29.870310894520443 ], [ 129.897329534541342, 29.843934185083135 ], [ 129.918909162231017, 29.823291542914809 ], [ 129.886140097961487, 29.821456641388735 ], [ 129.87788122810494, 29.815722574119754 ], [ 129.860830658078527, 29.821456641388735 ], [ 129.849374806342013, 29.840952470103268 ], [ 129.838984615232164, 29.845769086609209 ], [ 129.833656312098896, 29.861136386890074 ], [ 129.84031669101546, 29.876733049861699 ], [ 129.853637448848616, 29.883155205202957 ] ] ], [ [ [ 129.538468318516408, 29.915036619218483 ], [ 129.546993603529643, 29.911366816166339 ], [ 129.554986058229531, 29.898063780102305 ], [ 129.541665300396375, 29.892329712833323 ], [ 129.531275109286526, 29.895540790503954 ], [ 129.528344542563218, 29.912054904238616 ], [ 129.538468318516408, 29.915036619218483 ] ] ], [ [ [ 129.921306898641006, 29.994166747530407 ], [ 129.932762750377492, 29.975588369578912 ], [ 129.946616338523967, 29.965037685803988 ], [ 129.943685771800688, 29.951275924358438 ], [ 129.931963504907515, 29.948523572069327 ], [ 129.913314443941118, 29.957009991627416 ], [ 129.899993686107962, 29.977193908414225 ], [ 129.914646519724414, 29.99279057138585 ], [ 129.921306898641006, 29.994166747530407 ] ] ], [ [ [ 130.498894958286144, 30.461607911297641 ], [ 130.518876095035864, 30.453350854430312 ], [ 130.526335719422434, 30.444635072181462 ], [ 130.539922892412221, 30.448304875233607 ], [ 130.545517610702149, 30.443029533346145 ], [ 130.571093465741797, 30.434084388406539 ], [ 130.578553090128338, 30.422845616559336 ], [ 130.598800642034718, 30.416882186599597 ], [ 130.59800139656474, 30.411148119330619 ], [ 130.627839894110991, 30.401744249009493 ], [ 130.641160651944119, 30.399909347483419 ], [ 130.659010467440538, 30.390276114471533 ], [ 130.67099914949037, 30.378119891861296 ], [ 130.665937261513761, 30.354266172022339 ], [ 130.663006694790482, 30.317797504191628 ], [ 130.654481409777276, 30.300365939693929 ], [ 130.627040648640985, 30.278576484071806 ], [ 130.605727436107969, 30.253346588088295 ], [ 130.583348562948288, 30.238667375879707 ], [ 130.553776480558696, 30.234080122064523 ], [ 130.546050441015467, 30.229951593630858 ], [ 130.50235835532277, 30.232703945919965 ], [ 130.488771182332954, 30.227199241341747 ], [ 130.440816454133625, 30.23729119973515 ], [ 130.436020981313703, 30.240502277405781 ], [ 130.420302487070586, 30.267796437606123 ], [ 130.413642108154022, 30.273071779493584 ], [ 130.413375692997363, 30.288439079774449 ], [ 130.403518332200832, 30.315274514593277 ], [ 130.393660971404302, 30.317568141500868 ], [ 130.380340213571145, 30.351743182423988 ], [ 130.381938704511128, 30.35977087660056 ], [ 130.376610401377889, 30.3820190576042 ], [ 130.38140587419781, 30.394175280214437 ], [ 130.392861725934324, 30.398074445957345 ], [ 130.419503241600609, 30.395322093668234 ], [ 130.43442249037372, 30.408625129732268 ], [ 130.446411172423552, 30.429497134591355 ], [ 130.464793818233289, 30.439130367603241 ], [ 130.463728157606653, 30.456561932100939 ], [ 130.498894958286144, 30.461607911297641 ] ] ], [ [ [ 130.146960536334461, 30.49073697302406 ], [ 130.154952991034349, 30.485232268445838 ], [ 130.165343182144198, 30.490278247642539 ], [ 130.18026243091731, 30.484773543064321 ], [ 130.191451867497165, 30.472158595072564 ], [ 130.199977152510371, 30.482709278847487 ], [ 130.214629986126823, 30.473076045835601 ], [ 130.235943198659868, 30.47009433085573 ], [ 130.26551528104946, 30.44715806177981 ], [ 130.263383959796158, 30.433625663025019 ], [ 130.245800559456399, 30.438671642221721 ], [ 130.233811877406566, 30.433855025715779 ], [ 130.229815650056622, 30.42490988077617 ], [ 130.204772625330321, 30.426056694229967 ], [ 130.191185452340505, 30.441423994510831 ], [ 130.188521300773886, 30.450598502141201 ], [ 130.177331864194031, 30.455185755956386 ], [ 130.165343182144198, 30.47078241892801 ], [ 130.154153745564372, 30.477433936960026 ], [ 130.146960536334461, 30.49073697302406 ] ] ], [ [ [ 130.863350892600977, 30.749228725509667 ], [ 130.868412780577586, 30.741659756714615 ], [ 130.859887495564351, 30.725604368361473 ], [ 130.841504849754614, 30.72583373105223 ], [ 130.838574283031335, 30.732485249084249 ], [ 130.84230409522462, 30.750604901654224 ], [ 130.854026362117764, 30.761614310810664 ], [ 130.863350892600977, 30.749228725509667 ] ] ], [ [ [ 130.304411893922236, 30.805881310127191 ], [ 130.32119604879199, 30.795559989043024 ], [ 130.314802085032085, 30.780880776834437 ], [ 130.265248865892772, 30.779045875308363 ], [ 130.266314526519437, 30.793266362135434 ], [ 130.276438302472627, 30.792119548681637 ], [ 130.292156796715744, 30.804275771291874 ], [ 130.304411893922236, 30.805881310127191 ] ] ], [ [ [ 130.432024753963759, 30.815743905829834 ], [ 130.445345511796887, 30.809780475870095 ], [ 130.441615699603631, 30.799688517476689 ], [ 130.405649653454134, 30.810009838560855 ], [ 130.410178711117396, 30.818954983500461 ], [ 130.432024753963759, 30.815743905829834 ] ] ], [ [ [ 131.057833956964885, 30.837533361451957 ], [ 131.062895844941494, 30.833634195709053 ], [ 131.06422792072479, 30.816431993902111 ], [ 131.072753205738024, 30.811156652014652 ], [ 131.070888299641382, 30.796936165187581 ], [ 131.080745660437884, 30.795330626352268 ], [ 131.083942642317851, 30.782945041051271 ], [ 131.070888299641382, 30.766430927316609 ], [ 131.072753205738024, 30.719182213020215 ], [ 131.077815093714605, 30.704503000811627 ], [ 131.067691317761415, 30.692805503582907 ], [ 131.063162260098153, 30.674915213703692 ], [ 131.056768296338248, 30.670786685270023 ], [ 131.049841502264997, 30.6489972296479 ], [ 131.059698863061527, 30.640740172780571 ], [ 131.053571314458281, 30.629272038242611 ], [ 131.053837729614941, 30.601977878042266 ], [ 131.033057347395243, 30.587298665833679 ], [ 131.035188668648544, 30.566656023665352 ], [ 131.013609040958841, 30.548307008404617 ], [ 130.998689792185729, 30.546242744187783 ], [ 130.995492810305763, 30.530646081216158 ], [ 130.979241485749327, 30.517113682461364 ], [ 130.978708655436009, 30.497388491056075 ], [ 130.962723746036232, 30.481103740012173 ], [ 130.969916955266143, 30.469635605474213 ], [ 130.960592424782931, 30.453580217121068 ], [ 130.977110164496025, 30.445552522944496 ], [ 130.980307146375992, 30.435001839169573 ], [ 130.967519218856182, 30.423992430013133 ], [ 130.97577808871273, 30.399450622101899 ], [ 130.965920727916199, 30.394175280214437 ], [ 130.963789406662897, 30.37995479338737 ], [ 130.9507350639864, 30.373073912664594 ], [ 130.943009024443171, 30.377202441098259 ], [ 130.903579581257077, 30.364128767724985 ], [ 130.8875946718573, 30.352431270496265 ], [ 130.884664105134021, 30.343256762865899 ], [ 130.871876177614183, 30.344403576319692 ], [ 130.857756174311049, 30.369633472303207 ], [ 130.863617307757636, 30.386147586037865 ], [ 130.866281459324256, 30.408395767041508 ], [ 130.863617307757636, 30.422386891177819 ], [ 130.853227116647787, 30.439359730294001 ], [ 130.851628625707804, 30.460919823225364 ], [ 130.873208253397507, 30.467112615875863 ], [ 130.88253278388072, 30.487755258044189 ], [ 130.897185617497172, 30.494636138766964 ], [ 130.917433169403552, 30.523765200493383 ], [ 130.942476194129853, 30.566197298283832 ], [ 130.95339921555302, 30.5928033704119 ], [ 130.948870157889758, 30.604730230331377 ], [ 130.950468648829741, 30.631106939768685 ], [ 130.940877703189869, 30.650832131173974 ], [ 130.947538082106462, 30.666199431454842 ], [ 130.939012797093227, 30.66941050912547 ], [ 130.956596197432987, 30.690053151293796 ], [ 130.962723746036232, 30.692576140892147 ], [ 130.980573561532651, 30.726980544506027 ], [ 130.993095073895802, 30.72606309374299 ], [ 130.990164507172523, 30.738448679043987 ], [ 131.000554698282372, 30.745788285148279 ], [ 131.00854715298226, 30.766201564625849 ], [ 131.002952434692332, 30.78271567836051 ], [ 131.0311924412986, 30.81390900430376 ], [ 131.032258101925265, 30.824918413460203 ], [ 131.04398036881841, 30.827441403058554 ], [ 131.057833956964885, 30.837533361451957 ] ] ], [ [ [ 129.939955959607403, 30.850607034825231 ], [ 129.964732569177045, 30.829735029966145 ], [ 129.953010302283872, 30.818037532737428 ], [ 129.930365013967531, 30.811615377396169 ], [ 129.917843501604381, 30.816890719283631 ], [ 129.904256328614565, 30.831569931492218 ], [ 129.925303125990922, 30.850377672134471 ], [ 129.939955959607403, 30.850607034825231 ] ] ], [ [ [ 131.030926026141941, 31.377911860880616 ], [ 131.033057347395243, 31.362544560599751 ], [ 131.02106866534541, 31.363003285981268 ], [ 131.021601495658729, 31.374930145900745 ], [ 131.030926026141941, 31.377911860880616 ] ] ], [ [ [ 130.530598361929037, 31.501308988509059 ], [ 130.531930437712333, 31.484106786702121 ], [ 130.515146282842579, 31.494198745095524 ], [ 130.52020817081916, 31.50406134079817 ], [ 130.530598361929037, 31.501308988509059 ] ] ], [ [ [ 129.791829132502841, 31.784571911596665 ], [ 129.801420078142684, 31.766222896335929 ], [ 129.7920955476595, 31.760718191757707 ], [ 129.771581580596461, 31.715533741678147 ], [ 129.759060068233282, 31.709570311718409 ], [ 129.747870631653456, 31.716451192441184 ], [ 129.739345346640249, 31.699248990634246 ], [ 129.743075158833506, 31.686175317260968 ], [ 129.727356664590417, 31.674248457341491 ], [ 129.726024588807093, 31.663009685494291 ], [ 129.737746855700266, 31.654064540554682 ], [ 129.726291003963752, 31.64695429714115 ], [ 129.716433643167221, 31.631357634169522 ], [ 129.700448733767445, 31.636174250675467 ], [ 129.69885024282749, 31.624476753446746 ], [ 129.666081178557931, 31.641220229872168 ], [ 129.657822308701384, 31.658651794369867 ], [ 129.672475142317865, 31.659798607823664 ], [ 129.693255524537562, 31.693056197983744 ], [ 129.688992882030959, 31.70337751906791 ], [ 129.696718921574188, 31.715304378987387 ], [ 129.720429870517165, 31.728607415051421 ], [ 129.742808743676846, 31.736635109227993 ], [ 129.773180071536416, 31.740304912280138 ], [ 129.789164980936192, 31.769892699388073 ], [ 129.791829132502841, 31.784571911596665 ] ] ], [ [ [ 129.84031669101546, 31.816912050993711 ], [ 129.833389896942236, 31.796040046134621 ], [ 129.816605742072483, 31.779067207018443 ], [ 129.813675175349175, 31.796957496897662 ], [ 129.821401214892404, 31.81393033601384 ], [ 129.84031669101546, 31.816912050993711 ] ] ], [ [ [ 129.854703109475281, 31.88205105516932 ], [ 129.868023867308409, 31.873564635611231 ], [ 129.881344625141566, 31.857509247258086 ], [ 129.895464628444699, 31.853610081515178 ], [ 129.906121234711208, 31.843976848503296 ], [ 129.913048028784431, 31.867830568342249 ], [ 129.924770295677604, 31.865766304125419 ], [ 129.930365013967531, 31.849022827699997 ], [ 129.93089784428085, 31.82562783324256 ], [ 129.918642747074358, 31.818058864447504 ], [ 129.903457083144588, 31.820123128664338 ], [ 129.898928025481297, 31.813242247941563 ], [ 129.871487264345035, 31.812783522560043 ], [ 129.857100845885242, 31.823334206334966 ], [ 129.857900091355219, 31.837554693162037 ], [ 129.833922727255555, 31.852463268061385 ], [ 129.819269893639103, 31.851087091916831 ], [ 129.83498838788222, 31.88228041786008 ], [ 129.854703109475281, 31.88205105516932 ] ] ], [ [ [ 130.179463185447332, 32.132744476169115 ], [ 130.193849603907125, 32.147653051068467 ], [ 130.204239795016974, 32.14834113914074 ], [ 130.209834513306902, 32.15728628408035 ], [ 130.205838285956958, 32.147653051068467 ], [ 130.179463185447332, 32.132744476169115 ] ] ], [ [ [ 130.730143314269526, 32.098569435245999 ], [ 130.71868746253304, 32.083202134965134 ], [ 130.708563686579851, 32.076550616933119 ], [ 130.705633119856543, 32.055219886692512 ], [ 130.714691235183096, 32.048339005969737 ], [ 130.738668599282732, 32.045357290989863 ], [ 130.749858035862587, 32.031366166853552 ], [ 130.780495778878816, 32.011182250066746 ], [ 130.785024836542078, 31.978612747978939 ], [ 130.793017291241966, 31.971273141874647 ], [ 130.801542576255173, 31.949942411634041 ], [ 130.813797673461693, 31.941226629385191 ], [ 130.856690513684413, 31.934804474043936 ], [ 130.883065614194038, 31.918290360309271 ], [ 130.899050523593814, 31.887326397056782 ], [ 130.888127502170619, 31.843518123121775 ], [ 130.878003726217429, 31.840307045451148 ], [ 130.881467123254055, 31.811407346415489 ], [ 130.886529011230635, 31.802003476094363 ], [ 130.919564490656853, 31.797645584969938 ], [ 130.934483739429965, 31.78204892199831 ], [ 130.989365261702517, 31.776544217420092 ], [ 130.992828658739143, 31.766910984408206 ], [ 130.980040731219333, 31.749938145292028 ], [ 131.000021867969053, 31.742598539187732 ], [ 131.020269419875433, 31.741681088424695 ], [ 131.020269419875433, 31.702689430995633 ], [ 131.028794704888639, 31.695120462200578 ], [ 131.028261874575321, 31.673560369269214 ], [ 131.036520744431868, 31.658881157060627 ], [ 131.045578859758393, 31.652229639028612 ], [ 131.056235466024901, 31.631357634169522 ], [ 131.08154490590789, 31.656587530153033 ], [ 131.117777367214046, 31.628834644571171 ], [ 131.134295106927141, 31.623559302683709 ], [ 131.166264925726693, 31.633651261077116 ], [ 131.190242289826358, 31.621036313085359 ], [ 131.190508704983017, 31.599017494772475 ], [ 131.199833235466201, 31.591448525977423 ], [ 131.206227199226106, 31.570576521118337 ], [ 131.192906441392978, 31.554291770074435 ], [ 131.199833235466201, 31.540759371319641 ], [ 131.202497387032849, 31.517823102243725 ], [ 131.199300405152883, 31.508189869231835 ], [ 131.178253607776526, 31.499932812364506 ], [ 131.165199265100028, 31.480207620959213 ], [ 131.164932849943369, 31.457730077264813 ], [ 131.154276243676861, 31.465528408750625 ], [ 131.136160013023783, 31.467133947585943 ], [ 131.118576612684024, 31.474702916380995 ], [ 131.077548678557946, 31.45864752802785 ], [ 131.060498108531505, 31.44717939348989 ], [ 131.02852828973198, 31.411857539112976 ], [ 131.017072437995466, 31.384792741603391 ], [ 131.016006777368801, 31.358186669475323 ], [ 131.047710181011695, 31.348782799154197 ], [ 131.062895844941494, 31.341213830359145 ], [ 131.075417357304644, 31.340755104977625 ], [ 131.099394721404309, 31.332727410801056 ], [ 131.10685434579085, 31.313690307468043 ], [ 131.073818866364661, 31.2914421264644 ], [ 131.080745660437884, 31.275845463492775 ], [ 131.091402266704421, 31.279285903854163 ], [ 131.107653591260856, 31.275845463492775 ], [ 131.128966803793872, 31.276074826183532 ], [ 131.111116988297454, 31.261854339356464 ], [ 131.087139624197818, 31.249468754055467 ], [ 131.066359241978091, 31.227679298433344 ], [ 131.049308671951678, 31.224009495381196 ], [ 131.04131621725179, 31.227679298433344 ], [ 131.017072437995466, 31.227449935742584 ], [ 131.006682246885617, 31.217587340039941 ], [ 131.010145643922243, 31.210477096626406 ], [ 131.002952434692332, 31.188687641004282 ], [ 130.986168279822579, 31.181118672209227 ], [ 130.987233940449215, 31.169650537671266 ], [ 130.971781861362786, 31.162310931566974 ], [ 130.980040731219333, 31.155659413534956 ], [ 130.962457330879573, 31.1379984863465 ], [ 130.93315166364664, 31.125154175663987 ], [ 130.921962227066814, 31.125383538354743 ], [ 130.915568263306909, 31.112539227672229 ], [ 130.902780335787099, 31.113686041126027 ], [ 130.873208253397507, 31.095107663174531 ], [ 130.846833152887882, 31.089144233214792 ], [ 130.833512395054726, 31.093502124339217 ], [ 130.811666352208363, 31.088914870524032 ], [ 130.80447314297848, 31.08111653903822 ], [ 130.778630872782173, 31.066437326829632 ], [ 130.752255772272548, 31.061850073014448 ], [ 130.742398411476017, 31.052216840002561 ], [ 130.716289726123051, 31.044647871207509 ], [ 130.710162177519805, 31.031344835143475 ], [ 130.694710098433376, 31.022629052894626 ], [ 130.680856510286901, 31.004738763015411 ], [ 130.668334997923751, 31.008637928758315 ], [ 130.677659528406934, 31.034326550123346 ], [ 130.675528207153633, 31.056804093817746 ], [ 130.678725189033599, 31.062767523777485 ], [ 130.657411976500555, 31.073547570243168 ], [ 130.669134243393728, 31.085933155544161 ], [ 130.700837647036622, 31.100841730443509 ], [ 130.71415840486975, 31.114603491889063 ], [ 130.730942559739532, 31.116438393415137 ], [ 130.74426331757266, 31.131117605623725 ], [ 130.757317660249157, 31.162310931566974 ], [ 130.766375775575682, 31.177678231847839 ], [ 130.762645963382397, 31.193504257510224 ], [ 130.755186338995856, 31.197862148634648 ], [ 130.75438709352585, 31.211853272770959 ], [ 130.76158030275576, 31.215752438513867 ], [ 130.773036154492246, 31.237771256826747 ], [ 130.789820309362028, 31.249927479436984 ], [ 130.787688988108727, 31.2577258109228 ], [ 130.795415027651927, 31.294194478753511 ], [ 130.790619554832006, 31.305662613291467 ], [ 130.803940312665162, 31.334791675017886 ], [ 130.79195163061533, 31.346947897628123 ], [ 130.788488233578704, 31.361627109836711 ], [ 130.77170407870895, 31.391214896944646 ], [ 130.766375775575682, 31.407499647988551 ], [ 130.747193884295967, 31.435023170879653 ], [ 130.727212747546247, 31.453372186140388 ], [ 130.69870632578332, 31.462776056461514 ], [ 130.695775759060012, 31.510483496139429 ], [ 130.699239156096638, 31.525850796420293 ], [ 130.707231610796526, 31.532731677143069 ], [ 130.698972740939979, 31.552227505857601 ], [ 130.685119152793504, 31.545346625134826 ], [ 130.663539525103801, 31.551998143166841 ], [ 130.636098763967539, 31.545805350516343 ], [ 130.624642912231025, 31.552456868548362 ], [ 130.607858757361271, 31.574475686861241 ], [ 130.591873847961494, 31.581356567584017 ], [ 130.592140263118154, 31.590760437905146 ], [ 130.60812517251793, 31.599705582844756 ], [ 130.611854984711215, 31.609109453165882 ], [ 130.628639139580969, 31.621724401157635 ], [ 130.679524434503577, 31.629522732643451 ], [ 130.696841419686677, 31.624706116137506 ], [ 130.700038401566616, 31.617137147342454 ], [ 130.716289726123051, 31.603146023206143 ], [ 130.7189538776897, 31.590301712523626 ], [ 130.717355386749716, 31.5584202985081 ], [ 130.750657281332565, 31.557961573126583 ], [ 130.763178793695744, 31.561631376178727 ], [ 130.78715615779538, 31.585485096017685 ], [ 130.785824082012084, 31.601999209752346 ], [ 130.796214273121933, 31.61254989352727 ], [ 130.796747103435251, 31.622412489229916 ], [ 130.806870879388441, 31.638926602964577 ], [ 130.817793900811637, 31.644660670233556 ], [ 130.823122203944877, 31.66025733320518 ], [ 130.818326731124955, 31.673560369269214 ], [ 130.803141067195156, 31.688239581477802 ], [ 130.792750876085307, 31.70314815637715 ], [ 130.766375775575682, 31.707047322120054 ], [ 130.732807465836174, 31.707735410192335 ], [ 130.715756895809733, 31.728148689669901 ], [ 130.705366704699884, 31.72585506276231 ], [ 130.686451228576828, 31.735029570392676 ], [ 130.674462546526996, 31.727689964288384 ], [ 130.662473864477164, 31.729066140432938 ], [ 130.632901782087572, 31.711175850553722 ], [ 130.627573478954332, 31.713240114770556 ], [ 130.614252721121176, 31.697414089108172 ], [ 130.609457248301254, 31.678835711156676 ], [ 130.615318381747812, 31.661404146658978 ], [ 130.602530454228003, 31.642137680635205 ], [ 130.602530454228003, 31.632045722241799 ], [ 130.575888938561718, 31.615531608507141 ], [ 130.575089693091741, 31.607045188949048 ], [ 130.562035350415243, 31.591677888668183 ], [ 130.569494974801813, 31.585255733326925 ], [ 130.569494974801813, 31.573099510716688 ], [ 130.558838368535305, 31.546034713207103 ], [ 130.548448177425428, 31.544199811681029 ], [ 130.532996098338998, 31.507043055778041 ], [ 130.521273831445825, 31.508877957304115 ], [ 130.51487986768592, 31.495345558549321 ], [ 130.513547791902596, 31.480666346340733 ], [ 130.519408925349182, 31.471721201401124 ], [ 130.513281376745937, 31.458418165337093 ], [ 130.523671567855786, 31.426307388630804 ], [ 130.526335719422434, 31.408875824133105 ], [ 130.534861004435641, 31.396031513450591 ], [ 130.549513838052093, 31.396031513450591 ], [ 130.558305538221958, 31.386168917747945 ], [ 130.545517610702149, 31.379058674334409 ], [ 130.547382516798791, 31.368507990559486 ], [ 130.566830823235193, 31.319195012046261 ], [ 130.59533724499812, 31.294194478753511 ], [ 130.608658002831248, 31.29121276377364 ], [ 130.625175742544343, 31.274469287348218 ], [ 130.658744052283879, 31.271487572368351 ], [ 130.663273109947141, 31.261624976665704 ], [ 130.649952352114013, 31.244422774858766 ], [ 130.649419521800667, 31.236395080682193 ], [ 130.658211221970561, 31.221486505782845 ], [ 130.648620276330689, 31.215752438513867 ], [ 130.640627821630801, 31.189834454458076 ], [ 130.627307063797645, 31.181118672209227 ], [ 130.604661775481304, 31.182724211044544 ], [ 130.594537999528114, 31.178825045301636 ], [ 130.58814403576821, 31.15772367775179 ], [ 130.559104783691964, 31.177907594538599 ], [ 130.531131192242356, 31.163687107711528 ], [ 130.518343264722546, 31.165751371928362 ], [ 130.506088167516054, 31.178366319920116 ], [ 130.508219488769356, 31.193504257510224 ], [ 130.515945528312557, 31.197862148634648 ], [ 130.509018734239334, 31.214146899678553 ], [ 130.488238352019636, 31.235936355300673 ], [ 130.475450424499797, 31.245340225621803 ], [ 130.445345511796887, 31.253138557107615 ], [ 130.434156075217061, 31.24878066598319 ], [ 130.408047389864095, 31.251303655581541 ], [ 130.362756813231414, 31.252450469035338 ], [ 130.316134160815409, 31.25726708554128 ], [ 130.309207366742157, 31.266670955862406 ], [ 130.282832266232532, 31.266212230480889 ], [ 130.277503963099292, 31.24602831369408 ], [ 130.265248865892772, 31.254973458633689 ], [ 130.253260183842968, 31.256349634778243 ], [ 130.216761307380153, 31.251762380963058 ], [ 130.215429231596829, 31.262083702047221 ], [ 130.228483574273298, 31.268276494697723 ], [ 130.227151498490002, 31.282955706906311 ], [ 130.20024356766703, 31.283414432287827 ], [ 130.198645076727075, 31.296029380279585 ], [ 130.225819422706678, 31.305891975982227 ], [ 130.213830740656846, 31.321029913572335 ], [ 130.190652622027187, 31.31621329706639 ], [ 130.176799033880712, 31.329516333130424 ], [ 130.206371116270276, 31.337314664616237 ], [ 130.207969607210259, 31.348782799154197 ], [ 130.190386206870528, 31.367131814414932 ], [ 130.179463185447332, 31.365067550198098 ], [ 130.152821669781048, 31.384104653531114 ], [ 130.143230724141176, 31.40222430610109 ], [ 130.113925056908272, 31.42447248710473 ], [ 130.139767327104551, 31.418279694454235 ], [ 130.158949218384294, 31.440527875457875 ], [ 130.186656394677243, 31.412774989876013 ], [ 130.225020177236701, 31.401306855338053 ], [ 130.233811877406566, 31.409793274896142 ], [ 130.255657920252929, 31.417820969072714 ], [ 130.272175659966024, 31.428830378229158 ], [ 130.287094908739135, 31.445344491963816 ], [ 130.303879063608917, 31.471491838710364 ], [ 130.317466236598705, 31.498556636219952 ], [ 130.329188503491878, 31.531126138307755 ], [ 130.334250391468487, 31.563695640395562 ], [ 130.335316052095123, 31.595347691720328 ], [ 130.3283892580219, 31.633421898386356 ], [ 130.317732651755364, 31.656587530153033 ], [ 130.299616421102286, 31.66966120352631 ], [ 130.29082472093242, 31.690533208385396 ], [ 130.275372641845962, 31.705900508666261 ], [ 130.262851129482812, 31.709111586336888 ], [ 130.261252638542828, 31.721497171637886 ], [ 130.252194523216303, 31.721955897019406 ], [ 130.213031495186868, 31.755901575251762 ], [ 130.188787715930545, 31.757736476777836 ], [ 130.179463185447332, 31.780443383162996 ], [ 130.17226997621745, 31.77998465778148 ], [ 130.166941673084182, 31.794893232680828 ], [ 130.173335636844087, 31.802003476094363 ], [ 130.173868467157405, 31.816682688302951 ], [ 130.180795261230656, 31.820352491355099 ], [ 130.193316773593807, 31.844435573884812 ], [ 130.197845831257069, 31.861637775691751 ], [ 130.208236022366918, 31.869665469868323 ], [ 130.222356025670052, 31.896959630068668 ], [ 130.224487346923354, 31.911180116895736 ], [ 130.215429231596829, 31.940309178622154 ], [ 130.215429231596829, 31.953841577376949 ], [ 130.200509982823689, 31.985264266010958 ], [ 130.178397524820696, 32.000631566291823 ], [ 130.178930355134014, 32.016228229263447 ], [ 130.186922809833902, 32.015769503881927 ], [ 130.203174134390338, 32.038017684885574 ], [ 130.207170361740282, 32.060724591270727 ], [ 130.201042813137036, 32.075862528860839 ], [ 130.184258658267254, 32.071963363117931 ], [ 130.173069221687427, 32.076091891551599 ], [ 130.170405070120808, 32.087330663398795 ], [ 130.157617142600969, 32.089394927615629 ], [ 130.162945445734238, 32.089165564924869 ], [ 130.17759827935069, 32.121046978940399 ], [ 130.179463185447332, 32.108432030948642 ], [ 130.210900173933567, 32.125634232755587 ], [ 130.241537916949795, 32.129762761189248 ], [ 130.274573396375985, 32.124716781992547 ], [ 130.272442075122683, 32.117147813197491 ], [ 130.284697172329174, 32.108890756330162 ], [ 130.308674536428839, 32.108661393639402 ], [ 130.326257936768599, 32.126781046209381 ], [ 130.33371756115514, 32.121046978940399 ], [ 130.361691152604749, 32.154533931791242 ], [ 130.375011910437905, 32.154763294482002 ], [ 130.389131913741039, 32.143524522634799 ], [ 130.405116823140816, 32.116689087815971 ], [ 130.436820226783681, 32.111184383237756 ], [ 130.458133439316725, 32.110037569783955 ], [ 130.478380991223105, 32.118294626651291 ], [ 130.478647406379764, 32.129304035807728 ], [ 130.510350810022658, 32.137331729984304 ], [ 130.52020817081916, 32.132285750787602 ], [ 130.542054213665523, 32.13595555383975 ], [ 130.546050441015467, 32.146506237614673 ], [ 130.577221014345042, 32.151322854120615 ], [ 130.592673093431472, 32.166690154401479 ], [ 130.594005169214796, 32.182516180063864 ], [ 130.614785551434494, 32.179075739702476 ], [ 130.624909327387684, 32.153387118337449 ], [ 130.653948579463957, 32.147882413759227 ], [ 130.657145561343896, 32.132973838859876 ], [ 130.704567459229906, 32.102468600988907 ], [ 130.730143314269526, 32.098569435245999 ] ] ], [ [ [ 130.18239375217064, 32.239856852753661 ], [ 130.182127337013952, 32.227700630143424 ], [ 130.182127337013952, 32.227241904761904 ], [ 130.193583188750466, 32.217149946368501 ], [ 130.209834513306902, 32.223342739019003 ], [ 130.21516281644017, 32.210727791027246 ], [ 130.211166589090226, 32.19329622652954 ], [ 130.203174134390338, 32.187562159260565 ], [ 130.201042813137036, 32.168295693236793 ], [ 130.187189224990561, 32.166002066329199 ], [ 130.190652622027187, 32.199718381870802 ], [ 130.18239375217064, 32.218296759822294 ], [ 130.176266203567366, 32.221278474802162 ], [ 130.176266203567366, 32.24811390962099 ], [ 130.182127337013952, 32.243067930424289 ], [ 130.18239375217064, 32.239856852753661 ] ] ], [ [ [ 130.242869992733091, 32.254077339580732 ], [ 130.241804332106454, 32.253389251508452 ], [ 130.230881310683287, 32.24811390962099 ], [ 130.223954516610036, 32.255453515725286 ], [ 130.224220931766695, 32.267609738335523 ], [ 130.231680556153265, 32.284811940142461 ], [ 130.244734898829734, 32.294215810463591 ], [ 130.26071980822951, 32.288940468576129 ], [ 130.266847356832756, 32.279536598255 ], [ 130.264183205266136, 32.259582044158954 ], [ 130.242869992733091, 32.254077339580732 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1475, "NAME_1": "Kanagawa", "VARNAME_1": "", "HASC_1": "JP.KN", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.695279751132489, 35.468595450570817 ], [ 139.701673714892394, 35.45598050257906 ], [ 139.695812581445807, 35.449328984547044 ], [ 139.676097859852774, 35.457127316032853 ], [ 139.673167293129467, 35.464466922137149 ], [ 139.695279751132489, 35.468595450570817 ] ] ], [ [ [ 139.766945428274823, 35.506669657236841 ], [ 139.778934110324656, 35.499788776514066 ], [ 139.754157500754985, 35.488091279285342 ], [ 139.737106930728572, 35.484880201614715 ], [ 139.740570327765198, 35.475705693984352 ], [ 139.713395981785567, 35.464237559446389 ], [ 139.700341639109098, 35.478228683582699 ], [ 139.718457869762176, 35.489008730048383 ], [ 139.738439006511896, 35.494742797317365 ], [ 139.766945428274823, 35.506669657236841 ] ] ], [ [ [ 139.78799222565118, 35.52387185904378 ], [ 139.77547071328803, 35.509192646835189 ], [ 139.76055146451489, 35.530064651694275 ], [ 139.768277504058119, 35.53671616972629 ], [ 139.78799222565118, 35.52387185904378 ] ] ], [ [ [ 139.731778627595304, 35.540844698159958 ], [ 139.740037497451851, 35.541532786232239 ], [ 139.740570327765198, 35.541532786232239 ], [ 139.742168818705153, 35.541762148922999 ], [ 139.742968064175159, 35.541762148922999 ], [ 139.766146182804817, 35.53717489510781 ], [ 139.759485803888253, 35.526394848642127 ], [ 139.764814107021493, 35.512174361815063 ], [ 139.734975609475271, 35.50093558996786 ], [ 139.705669942242338, 35.486944465831549 ], [ 139.692082769252551, 35.484421476233194 ], [ 139.682491823612679, 35.474100155149031 ], [ 139.669970311249529, 35.47868740896422 ], [ 139.652653326066428, 35.477311232819659 ], [ 139.651054835126445, 35.46928353864309 ], [ 139.634270680256691, 35.465613735590942 ], [ 139.64945634418649, 35.44634726956717 ], [ 139.676097859852774, 35.438778300772121 ], [ 139.689951447999249, 35.439925114225915 ], [ 139.686488050962623, 35.427310166234157 ], [ 139.668105405152886, 35.406438161375071 ], [ 139.643861625896562, 35.411942865953293 ], [ 139.647591438089847, 35.382813804226878 ], [ 139.656915968573031, 35.372263120451954 ], [ 139.651321250283104, 35.365152877038419 ], [ 139.65718238372969, 35.343134058725539 ], [ 139.638799737919953, 35.343134058725539 ], [ 139.628942377123423, 35.329372297279988 ], [ 139.659047289826333, 35.328454846516948 ], [ 139.638533322763294, 35.299784510172046 ], [ 139.64945634418649, 35.288316375634089 ], [ 139.673700123442813, 35.300472598244326 ], [ 139.679294841732712, 35.295426619047625 ], [ 139.679028426576053, 35.278224417240686 ], [ 139.69234918440921, 35.265838831939689 ], [ 139.704071451302354, 35.263315842341335 ], [ 139.728581645715366, 35.265838831939689 ], [ 139.746697876368444, 35.256434961618559 ], [ 139.733909948848606, 35.24703109129743 ], [ 139.724319003208734, 35.21170923692052 ], [ 139.69501333597583, 35.209874335394446 ], [ 139.670503141562847, 35.197947475474969 ], [ 139.655317477633048, 35.184644439410931 ], [ 139.663043517176277, 35.159643906118184 ], [ 139.679028426576053, 35.15712091651983 ], [ 139.676097859852774, 35.139459989331371 ], [ 139.627343886183468, 35.136707637042264 ], [ 139.615621619290295, 35.147717046198707 ], [ 139.619085016326892, 35.177763558688156 ], [ 139.616953695073619, 35.188543605153839 ], [ 139.598837464420512, 35.195424485876615 ], [ 139.620417092110216, 35.220654381860129 ], [ 139.603100106927144, 35.224094822221517 ], [ 139.599370294733859, 35.239003397120861 ], [ 139.579921988297457, 35.253223883947932 ], [ 139.56873255171763, 35.265838831939689 ], [ 139.570863872970932, 35.277077603786886 ], [ 139.545820848244603, 35.308500292420895 ], [ 139.52610612665157, 35.30161941169812 ], [ 139.489873665345414, 35.308041567039382 ], [ 139.474155171102296, 35.314234359689877 ], [ 139.441386106832766, 35.319509701577338 ], [ 139.40781779709323, 35.317904162742025 ], [ 139.366789862967153, 35.313775634308357 ], [ 139.352669859664019, 35.314922447762157 ], [ 139.326827589467712, 35.312170095473043 ], [ 139.31723664382784, 35.305289214750267 ], [ 139.249833609192137, 35.29290362944927 ], [ 139.209604920536037, 35.277995054549926 ], [ 139.181897744243088, 35.258040500453873 ], [ 139.169909062193284, 35.252994521257172 ], [ 139.144066791996977, 35.232810604470366 ], [ 139.142468301056994, 35.208498159249892 ], [ 139.136074337297089, 35.183268263266378 ], [ 139.145931698093619, 35.168130325676273 ], [ 139.140336979803692, 35.162625621098051 ], [ 139.150727170913541, 35.147258320817187 ], [ 139.121687918837296, 35.149781310415534 ], [ 139.109965651944123, 35.137854450496057 ], [ 139.085988287844458, 35.138083813186817 ], [ 139.043894693091715, 35.147258320817187 ], [ 139.032971671668548, 35.146570232744907 ], [ 139.026577707908643, 35.174781843708288 ], [ 139.012724119762169, 35.17982782290499 ], [ 138.990878076915806, 35.197488750093449 ], [ 138.991144492072465, 35.208498159249892 ], [ 138.978889394865973, 35.232122516398086 ], [ 138.978622979709314, 35.260563490052228 ], [ 138.996206380049074, 35.281664857602074 ], [ 139.007662231785559, 35.286481474108015 ], [ 139.021515819932034, 35.326619944990874 ], [ 139.013523365232146, 35.339005530291871 ], [ 139.008994307568884, 35.372263120451954 ], [ 139.004198834748962, 35.390153410331166 ], [ 138.996739210362392, 35.400245368724576 ], [ 138.974893167516029, 35.40185090755989 ], [ 138.941324857776522, 35.395887477600148 ], [ 138.919478814930159, 35.398639829889262 ], [ 138.922409381653438, 35.408731788282665 ], [ 138.933332403076633, 35.417447570531515 ], [ 138.929602590883349, 35.427539528924918 ], [ 138.940259197149857, 35.445659181494896 ], [ 138.958641842959594, 35.457127316032853 ], [ 138.999669777085671, 35.470889077478404 ], [ 139.011392043978844, 35.471347802859924 ], [ 139.030840350415247, 35.480292947799533 ], [ 139.054284884201593, 35.507357745309122 ], [ 139.069736963288022, 35.506210931855321 ], [ 139.09051734550772, 35.511256911052023 ], [ 139.115293955077391, 35.532817003983389 ], [ 139.115027539920732, 35.54657876542894 ], [ 139.132344525103804, 35.561716703019044 ], [ 139.124884900717234, 35.585111697476485 ], [ 139.133143770573781, 35.593139391653054 ], [ 139.137406413080384, 35.61355267113062 ], [ 139.129413958380525, 35.619745463781122 ], [ 139.124884900717234, 35.658278395828667 ], [ 139.13341018573044, 35.669975893057384 ], [ 139.164047928746697, 35.664700551169922 ], [ 139.175237365326524, 35.647039623981463 ], [ 139.187492462533015, 35.641764282094002 ], [ 139.197349823329546, 35.648645162816777 ], [ 139.218663035862591, 35.642911095547802 ], [ 139.225056999622495, 35.622039090688716 ], [ 139.239177002925629, 35.607130515789365 ], [ 139.260223800301986, 35.60070836044811 ], [ 139.272212482351819, 35.606442427717084 ], [ 139.292460034258198, 35.608736054624679 ], [ 139.311375510381254, 35.601625811211143 ], [ 139.338017026047567, 35.60070836044811 ], [ 139.370253260003778, 35.593827479725334 ], [ 139.402755909116649, 35.579377630207503 ], [ 139.430995915722917, 35.548643029645774 ], [ 139.457104601075855, 35.528229750168208 ], [ 139.457637431389202, 35.517679066393285 ], [ 139.471224604379017, 35.50093558996786 ], [ 139.486676683465447, 35.501853040730893 ], [ 139.484545362212145, 35.512862449887336 ], [ 139.489873665345414, 35.52341313366226 ], [ 139.484278947055486, 35.542908962376792 ], [ 139.492004986598715, 35.558734988039177 ], [ 139.489340835032067, 35.573414200247768 ], [ 139.496001213948659, 35.585799785548758 ], [ 139.456038940449218, 35.611488406913793 ], [ 139.467228377029073, 35.621121639925676 ], [ 139.477352152982235, 35.616534386110494 ], [ 139.492004986598715, 35.601855173901903 ], [ 139.499997441298603, 35.614928847275181 ], [ 139.519712162891665, 35.62341526683327 ], [ 139.530635184314832, 35.639470655186415 ], [ 139.541558205737999, 35.634654038680466 ], [ 139.566068400150982, 35.631213598319079 ], [ 139.577524251887496, 35.619516101090362 ], [ 139.624146904303501, 35.609194780006199 ], [ 139.652653326066428, 35.590616402054707 ], [ 139.666506914212903, 35.586946599002559 ], [ 139.683024653925997, 35.559193713420697 ], [ 139.707268433182321, 35.549789843099568 ], [ 139.70753484833898, 35.533734454746423 ], [ 139.731778627595304, 35.540844698159958 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1476, "NAME_1": "Kochi", "VARNAME_1": "Koti", "HASC_1": "JP.KC", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.551890155530373, 32.747665850094513 ], [ 132.56760864977349, 32.740555606680978 ], [ 132.569473555870132, 32.712573358408356 ], [ 132.550291664590418, 32.713261446480637 ], [ 132.539635058323881, 32.726335119853907 ], [ 132.543631285673825, 32.742849233588572 ], [ 132.551890155530373, 32.747665850094513 ] ] ], [ [ [ 133.663107773971319, 33.878423915537333 ], [ 133.66550551038128, 33.86810259445317 ], [ 133.682023250094375, 33.855717009152173 ], [ 133.70093872621743, 33.848377403047877 ], [ 133.733441375330301, 33.847689314975597 ], [ 133.750225530200083, 33.833698190839286 ], [ 133.781928933842948, 33.838744170035994 ], [ 133.790987049169502, 33.833239465457773 ], [ 133.820825546715724, 33.834156916220806 ], [ 133.831215737825602, 33.841725885015862 ], [ 133.842138759248769, 33.840808434252821 ], [ 133.856258762551903, 33.830028387787145 ], [ 133.874907823518299, 33.802734227586797 ], [ 133.898085942147986, 33.799752512606929 ], [ 133.903947075594544, 33.79057800497656 ], [ 133.946040670347287, 33.797688248390095 ], [ 133.952967464420539, 33.805486579875911 ], [ 133.958029352397119, 33.827505398188791 ], [ 133.987335019630052, 33.837597356582194 ], [ 134.000122947149862, 33.817872165176908 ], [ 134.01557502623632, 33.818789615939941 ], [ 134.0358225781427, 33.825211771281204 ], [ 134.036088993299359, 33.806174667948184 ], [ 134.061398433182319, 33.771770264334307 ], [ 134.059533527085676, 33.749980808712181 ], [ 134.070722963665531, 33.726815176945507 ], [ 134.066460321158928, 33.687364794134922 ], [ 134.126403731408061, 33.692640136022384 ], [ 134.145052792374486, 33.684383079155054 ], [ 134.166366004907502, 33.684841804536575 ], [ 134.178088271800675, 33.674979208833932 ], [ 134.172493553510748, 33.666263426585076 ], [ 134.178088271800675, 33.650896126304211 ], [ 134.173026383824066, 33.638281178312454 ], [ 134.153844492544351, 33.628189219919051 ], [ 134.158906380520932, 33.608005303132245 ], [ 134.187945632597206, 33.583004769839491 ], [ 134.198602238863714, 33.557316148474463 ], [ 134.213521487636825, 33.562591490361925 ], [ 134.231904133446591, 33.555022521566869 ], [ 134.258279233956216, 33.549976542370167 ], [ 134.278526785862596, 33.556857423092943 ], [ 134.29024905275574, 33.55616933502067 ], [ 134.305434716685539, 33.548141640844094 ], [ 134.286252825405796, 33.530939439037155 ], [ 134.283855088995836, 33.51488405068401 ], [ 134.271866406946003, 33.504562729599847 ], [ 134.268669425066065, 33.494012045824924 ], [ 134.25747998848621, 33.485525626266835 ], [ 134.242827154869758, 33.464194896026228 ], [ 134.242027909399781, 33.450891859962198 ], [ 134.213787902793513, 33.404101871047324 ], [ 134.215386393733468, 33.388734570766459 ], [ 134.205795448093625, 33.369238742051927 ], [ 134.198868654020373, 33.331852623458175 ], [ 134.189011293223842, 33.299512484061133 ], [ 134.185547896187245, 33.258456562415233 ], [ 134.173559214137413, 33.246070977114236 ], [ 134.164767513967519, 33.265566805828769 ], [ 134.138392413457893, 33.296072043699745 ], [ 134.10882033106833, 33.303411649804033 ], [ 134.105090518875045, 33.322219390446293 ], [ 134.098430139958481, 33.330017721932101 ], [ 134.08111315477538, 33.337127965345637 ], [ 134.068058812098911, 33.355935705987889 ], [ 134.050741826915811, 33.37038555550572 ], [ 134.041950126745945, 33.371991094341034 ], [ 134.03102710532275, 33.413047015986933 ], [ 134.003319929029828, 33.425661963978683 ], [ 133.991064831823337, 33.427955590886278 ], [ 133.980141810400141, 33.435983285062846 ], [ 133.950569728010578, 33.449056958436124 ], [ 133.941511612684025, 33.463277445263195 ], [ 133.944708594563991, 33.473828129038118 ], [ 133.93511764892412, 33.486901802411388 ], [ 133.887695751038109, 33.50135165192922 ], [ 133.843470835032093, 33.505480180362888 ], [ 133.832281398452238, 33.513507874539457 ], [ 133.779797612589647, 33.516718952210084 ], [ 133.76887459116648, 33.51511341337477 ], [ 133.754221757549999, 33.521076843334512 ], [ 133.754754587863346, 33.532774340563229 ], [ 133.734773451113625, 33.538279045141451 ], [ 133.688950044167598, 33.535526692852343 ], [ 133.60236511825218, 33.519471304499191 ], [ 133.581851151189113, 33.512590423776416 ], [ 133.569063223669303, 33.501122289238459 ], [ 133.562402844752739, 33.502727828073773 ], [ 133.5648005811627, 33.530480713655635 ], [ 133.54721718082294, 33.523370470242099 ], [ 133.559472278029432, 33.500204838475426 ], [ 133.56746473272932, 33.494241408515684 ], [ 133.512849625613427, 33.474745579801152 ], [ 133.505656416383545, 33.467635336387616 ], [ 133.48913867667045, 33.462589357190915 ], [ 133.457701688184216, 33.446075243456256 ], [ 133.442516024254417, 33.449515683817644 ], [ 133.430260927047925, 33.437130098516647 ], [ 133.410013375141546, 33.443093528476382 ], [ 133.406549978104948, 33.433230932773739 ], [ 133.390565068705172, 33.426120689360204 ], [ 133.393495635428451, 33.418322357874388 ], [ 133.42146922687806, 33.436442010444367 ], [ 133.42866243610797, 33.430249217793872 ], [ 133.440917533314462, 33.434836471609053 ], [ 133.462763576160796, 33.430707943175392 ], [ 133.440118287844456, 33.412588290605413 ], [ 133.429728096734607, 33.41511128020376 ], [ 133.400688844658362, 33.404560596428837 ], [ 133.366054874292189, 33.400202705304416 ], [ 133.346340152699128, 33.400432067995176 ], [ 133.319432221876184, 33.382541778115957 ], [ 133.309308445922994, 33.37933070044533 ], [ 133.282134099943363, 33.378183886991536 ], [ 133.263485038976967, 33.369238742051927 ], [ 133.264550699603632, 33.343091395305379 ], [ 133.24776654473385, 33.331164535385895 ], [ 133.233113711117397, 33.328870908478308 ], [ 133.246434468950554, 33.31579723510503 ], [ 133.257890320687039, 33.313044882815923 ], [ 133.240306920347308, 33.295154592936704 ], [ 133.243237487070587, 33.275888126912932 ], [ 133.255758999433738, 33.269465971571677 ], [ 133.264017869290285, 33.257768474342953 ], [ 133.248032959890509, 33.242401174062095 ], [ 133.256824660060403, 33.22519897225515 ], [ 133.238175599094006, 33.215565739243267 ], [ 133.23497861721404, 33.20295079125151 ], [ 133.219792953284241, 33.193776283621141 ], [ 133.21206691374104, 33.180931972938623 ], [ 133.220325783597588, 33.167399574183833 ], [ 133.221657859380883, 33.152032273902968 ], [ 133.191819361834661, 33.167399574183833 ], [ 133.170239734144957, 33.150426735067654 ], [ 133.165444261325035, 33.136664973622104 ], [ 133.155320485371846, 33.12519683908414 ], [ 133.143331803322013, 33.098132041574559 ], [ 133.134806518308778, 33.091021798161023 ], [ 133.117489533125706, 33.085746456273561 ], [ 133.104701605605896, 33.073131508281804 ], [ 133.1089642481125, 33.063268912579161 ], [ 133.099639717629287, 33.057305482619427 ], [ 133.094311414496019, 33.023130441696303 ], [ 133.080990656662891, 33.027488332820724 ], [ 133.072198956493025, 33.037121565832614 ], [ 133.037032155813506, 33.037809653904894 ], [ 133.019715170630434, 33.025424068603897 ], [ 132.998668373254048, 32.98092770659661 ], [ 132.992540824650803, 32.952257370251715 ], [ 133.000000449037373, 32.944229676075139 ], [ 132.983482709324278, 32.93574325651705 ], [ 132.997069882314065, 32.928174287722001 ], [ 133.007193658267255, 32.916706153184037 ], [ 133.010124224990562, 32.88138429880712 ], [ 132.994139315590786, 32.867622537361569 ], [ 132.965632893827859, 32.865328910453982 ], [ 132.952312135994703, 32.861200382020314 ], [ 132.956308363344647, 32.851337786317671 ], [ 132.958706099754608, 32.826107890334157 ], [ 132.951512890524725, 32.813034216960887 ], [ 132.965632893827859, 32.799272455515329 ], [ 133.003730261230658, 32.786428144832819 ], [ 133.016784603907126, 32.764638689210692 ], [ 133.01571894328049, 32.749730114311348 ], [ 133.022379322197054, 32.730463648287575 ], [ 133.019981585787093, 32.72335340487404 ], [ 133.004263091543976, 32.721059777966445 ], [ 132.986146860890898, 32.733216000576682 ], [ 132.964567233201194, 32.731610461741369 ], [ 132.97069478180444, 32.744913497805399 ], [ 132.954177042091345, 32.756610995034123 ], [ 132.940856284258217, 32.771290207242714 ], [ 132.938192132691569, 32.786428144832819 ], [ 132.919010241411854, 32.778400450656243 ], [ 132.912349862495262, 32.787345595595852 ], [ 132.888372498395626, 32.790327310575719 ], [ 132.85187362193281, 32.786198782142058 ], [ 132.840151355039637, 32.780923440254597 ], [ 132.833224560966386, 32.765097414592212 ], [ 132.819104557663252, 32.760051435395511 ], [ 132.815374745469995, 32.752482466600455 ], [ 132.792463041996967, 32.747895212785274 ], [ 132.770883414307292, 32.761427611540064 ], [ 132.755697750377493, 32.753629280054255 ], [ 132.746906050207627, 32.767849766881319 ], [ 132.729322649867868, 32.77817108796549 ], [ 132.721596610324639, 32.793079662864834 ], [ 132.698684906851639, 32.796061377844701 ], [ 132.682433582295204, 32.780923440254597 ], [ 132.667780748678751, 32.784134517925224 ], [ 132.648598857399008, 32.776794911820929 ], [ 132.639807157229143, 32.769225943025873 ], [ 132.628884135805947, 32.799731180896849 ], [ 132.649398102869014, 32.801795445113683 ], [ 132.643536969422428, 32.819227009611382 ], [ 132.656591312098897, 32.823814263426563 ], [ 132.660587539448841, 32.840099014470468 ], [ 132.658456218195539, 32.855695677442093 ], [ 132.688561130898449, 32.873815330012071 ], [ 132.688561130898449, 32.880696210734847 ], [ 132.718932458758019, 32.894228609489637 ], [ 132.709874343431466, 32.923128308525293 ], [ 132.684831318705164, 32.919229142782385 ], [ 132.662186030388824, 32.922669583143779 ], [ 132.664850181955444, 32.938724971496924 ], [ 132.685364149018483, 32.943082862621345 ], [ 132.688827546055109, 32.963954867480432 ], [ 132.686163394488489, 32.999964809929622 ], [ 132.679236600415237, 33.007533778724678 ], [ 132.68083509135522, 33.028176420893004 ], [ 132.67577320337864, 33.040103280812481 ], [ 132.660321124292182, 33.053406316876519 ], [ 132.666981503208746, 33.061204648362327 ], [ 132.672309806342014, 33.082764741293694 ], [ 132.665915842582109, 33.105471647678854 ], [ 132.655259236315601, 33.107765274586441 ], [ 132.640872817855779, 33.124279388321106 ], [ 132.631548287372595, 33.129325367517808 ], [ 132.632880363155891, 33.140105413983491 ], [ 132.61796111438278, 33.166711486111559 ], [ 132.624887908456003, 33.179097071412556 ], [ 132.63527809956588, 33.182308149083184 ], [ 132.640872817855779, 33.17084001454522 ], [ 132.65818980303888, 33.160289330770297 ], [ 132.664050936485467, 33.152032273902968 ], [ 132.69841849169498, 33.134600709405269 ], [ 132.728256989241231, 33.164876584585485 ], [ 132.750103032087566, 33.199510350890122 ], [ 132.771949074933929, 33.200886527034676 ], [ 132.773281150717253, 33.220382355749209 ], [ 132.781007190260482, 33.249511417475624 ], [ 132.796459269346911, 33.271530235788511 ], [ 132.82709701236314, 33.279099204583559 ], [ 132.857734755379397, 33.289420525667722 ], [ 132.875051740562469, 33.301118022896446 ], [ 132.898496274348815, 33.308916354382255 ], [ 132.90489023810872, 33.333228799602729 ], [ 132.887040422612301, 33.357999970204723 ], [ 132.864395134295961, 33.364192762855225 ], [ 132.852672867402788, 33.394927363416954 ], [ 132.842815506606257, 33.394927363416954 ], [ 132.835089467063028, 33.403184420284283 ], [ 132.836421542846352, 33.416487456348321 ], [ 132.827629842676487, 33.422450886308056 ], [ 132.82709701236314, 33.443322891167142 ], [ 132.809513612023409, 33.456855289921933 ], [ 132.826031351736503, 33.46947023791369 ], [ 132.846545318799542, 33.474286854419631 ], [ 132.873719664779145, 33.467635336387616 ], [ 132.896364953095514, 33.469011512532177 ], [ 132.924338544545094, 33.464653621407749 ], [ 132.946184587391457, 33.468552787150657 ], [ 132.956841193657965, 33.463277445263195 ], [ 133.000000449037373, 33.472222590202804 ], [ 133.017583849377104, 33.477497932090266 ], [ 133.018116679690451, 33.488966066628223 ], [ 133.036765740656847, 33.508691258033515 ], [ 133.047155931766696, 33.526352185221974 ], [ 133.065272162419774, 33.538049682450691 ], [ 133.063407256323131, 33.56006850076357 ], [ 133.048754422706679, 33.572224723373807 ], [ 133.058345368346551, 33.5919499147791 ], [ 133.082056317289528, 33.605941038915411 ], [ 133.074330277746327, 33.613051282328946 ], [ 133.072465371649685, 33.632776473734239 ], [ 133.079924996036226, 33.650437400922698 ], [ 133.111095569365801, 33.654565929356359 ], [ 133.122018590788969, 33.666722151966596 ], [ 133.124949157512276, 33.689887783733276 ], [ 133.144131048791991, 33.699750379435919 ], [ 133.142532557852007, 33.711218513973883 ], [ 133.163046524915046, 33.727961990399301 ], [ 133.16437860069837, 33.749751446021428 ], [ 133.183027661664767, 33.761448943250144 ], [ 133.196348419497923, 33.79080736766732 ], [ 133.206205780294454, 33.7914954557396 ], [ 133.223522765477526, 33.777045606221769 ], [ 133.258955981313704, 33.789660554213526 ], [ 133.269879002736872, 33.820395154775255 ], [ 133.279736363533402, 33.827734760879551 ], [ 133.290126554643251, 33.826129222044237 ], [ 133.317567315779542, 33.812596823289446 ], [ 133.32822392204605, 33.811450009835646 ], [ 133.354599022555675, 33.828422848951831 ], [ 133.365522043978842, 33.828881574333344 ], [ 133.395094126368434, 33.82291814437361 ], [ 133.406283562948289, 33.833239465457773 ], [ 133.420403566251423, 33.83667990581916 ], [ 133.440384703001115, 33.830945838550178 ], [ 133.473420182427333, 33.833239465457773 ], [ 133.500061698093617, 33.826129222044237 ], [ 133.510185474046807, 33.833010102767012 ], [ 133.510718304360125, 33.843560786541936 ], [ 133.529100950169862, 33.851359118027744 ], [ 133.540290386749717, 33.869249407906963 ], [ 133.559738693186091, 33.878653278228093 ], [ 133.585580963382398, 33.864432791401022 ], [ 133.609558327482063, 33.878423915537333 ], [ 133.633535691581727, 33.871543034814557 ], [ 133.642593806908252, 33.877965190155813 ], [ 133.663107773971319, 33.878423915537333 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1477, "NAME_1": "Kumamoto", "VARNAME_1": "", "HASC_1": "JP.KM", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.209834513306902, 32.223342739019003 ], [ 130.193583188750466, 32.217149946368501 ], [ 130.201842058607014, 32.230223619741778 ], [ 130.209834513306902, 32.223342739019003 ] ] ], [ [ [ 130.176266203567366, 32.24811390962099 ], [ 130.176266203567366, 32.221278474802162 ], [ 130.18239375217064, 32.218296759822294 ], [ 130.190652622027187, 32.199718381870802 ], [ 130.187189224990561, 32.166002066329199 ], [ 130.201042813137036, 32.168295693236793 ], [ 130.209834513306902, 32.15728628408035 ], [ 130.204239795016974, 32.14834113914074 ], [ 130.193849603907125, 32.147653051068467 ], [ 130.179463185447332, 32.132744476169115 ], [ 130.178663939977355, 32.131138937333802 ], [ 130.178131109664008, 32.128386585044694 ], [ 130.177864694507349, 32.123799331229506 ], [ 130.17759827935069, 32.121046978940399 ], [ 130.162945445734238, 32.089165564924869 ], [ 130.157617142600969, 32.089394927615629 ], [ 130.149358272744422, 32.097422621792205 ], [ 130.140300157417897, 32.105909041350294 ], [ 130.128577890524724, 32.114624823599144 ], [ 130.110994490184964, 32.125634232755587 ], [ 130.116322793318233, 32.150176040666814 ], [ 130.108596753775004, 32.166460791710719 ], [ 130.098472977821814, 32.172653584361214 ], [ 130.097673732351836, 32.173341672433494 ], [ 130.096874486881831, 32.176323387413362 ], [ 130.096874486881831, 32.177470200867162 ], [ 130.097940147508496, 32.18068127853779 ], [ 130.103801280955082, 32.189167698095879 ], [ 130.104866941581719, 32.190543874240433 ], [ 130.10699826283502, 32.193066863838787 ], [ 130.109129584088322, 32.196048578818655 ], [ 130.111260905341624, 32.199489019180042 ], [ 130.112592981124948, 32.201323920706116 ], [ 130.112592981124948, 32.216691220986981 ], [ 130.128045060211406, 32.211645241790279 ], [ 130.129643551151361, 32.211874604481039 ], [ 130.139234496791232, 32.213250780625593 ], [ 130.146427706021143, 32.216232495605468 ], [ 130.148026196961126, 32.216920583677741 ], [ 130.153354500094366, 32.220819749420649 ], [ 130.158416388070975, 32.22517764054507 ], [ 130.16214620026426, 32.229994257051018 ], [ 130.163211860890897, 32.231370433195572 ], [ 130.163478276047556, 32.232058521267845 ], [ 130.166941673084182, 32.24880199769327 ], [ 130.176266203567366, 32.24811390962099 ] ] ], [ [ [ 130.143230724141176, 32.276325520584372 ], [ 130.150956763684405, 32.269444639861597 ], [ 130.135238269441288, 32.262563759138821 ], [ 130.133639778501305, 32.272196992150711 ], [ 130.143230724141176, 32.276325520584372 ] ] ], [ [ [ 130.266847356832756, 32.279536598255 ], [ 130.26071980822951, 32.288940468576129 ], [ 130.244734898829734, 32.294215810463591 ], [ 130.231680556153265, 32.284811940142461 ], [ 130.224220931766695, 32.267609738335523 ], [ 130.214097155813505, 32.253159888817692 ], [ 130.213564325500187, 32.281830225162594 ], [ 130.220224704416751, 32.291692820865237 ], [ 130.238607350226488, 32.300867328495606 ], [ 130.254059429312946, 32.301555416567879 ], [ 130.266048111362778, 32.296050711989665 ], [ 130.266847356832756, 32.279536598255 ] ] ], [ [ [ 130.360359076821425, 32.352703296607181 ], [ 130.363556058701391, 32.333895555964929 ], [ 130.357428510098146, 32.321509970663932 ], [ 130.329454918648537, 32.304537131547754 ], [ 130.334516806625146, 32.324491685643807 ], [ 130.329987748961855, 32.333895555964929 ], [ 130.344640582578336, 32.349033493555034 ], [ 130.360359076821425, 32.352703296607181 ] ] ], [ [ [ 130.322261709418655, 32.367153146125013 ], [ 130.337447373348425, 32.354079472751735 ], [ 130.324393030671956, 32.341235162069225 ], [ 130.316400575972068, 32.349262856245794 ], [ 130.303079818138912, 32.350639032390347 ], [ 130.322261709418655, 32.367153146125013 ] ] ], [ [ [ 130.425630790203854, 32.380685544879803 ], [ 130.410445126274055, 32.382979171787397 ], [ 130.407514559550776, 32.391465591345487 ], [ 130.422167393167229, 32.393988580943841 ], [ 130.425630790203854, 32.380685544879803 ] ] ], [ [ [ 130.114990717534909, 32.553625013712235 ], [ 130.131508457248003, 32.545597319535666 ], [ 130.161879785107573, 32.550872661423128 ], [ 130.187189224990561, 32.5476615837525 ], [ 130.192783943280489, 32.537340262668337 ], [ 130.193316773593807, 32.518073796644558 ], [ 130.198645076727075, 32.509587377086469 ], [ 130.194116019063785, 32.497431154476232 ], [ 130.204772625330321, 32.481146403432334 ], [ 130.204772625330321, 32.452017341705911 ], [ 130.247132635239723, 32.468072730059056 ], [ 130.256989996036225, 32.477476600380186 ], [ 130.281500190449208, 32.484128118412201 ], [ 130.316933406285386, 32.517385708572284 ], [ 130.360625491978112, 32.529083205801001 ], [ 130.386467762174391, 32.516697620500004 ], [ 130.391263234994341, 32.50178904560066 ], [ 130.418437580973944, 32.52426658929506 ], [ 130.429094187240452, 32.518532522026078 ], [ 130.442947775386926, 32.528853843110241 ], [ 130.459465515100021, 32.521972962387466 ], [ 130.437619472253687, 32.485045569175242 ], [ 130.437619472253687, 32.46899018082209 ], [ 130.428827772083793, 32.454999056685786 ], [ 130.416306259720642, 32.44720072519997 ], [ 130.409379465647419, 32.434815139898973 ], [ 130.423499468950553, 32.431604062228345 ], [ 130.400587765477525, 32.398117109377502 ], [ 130.383004365137793, 32.386878337530305 ], [ 130.365420964798034, 32.388713239056379 ], [ 130.353698697904861, 32.385731524076505 ], [ 130.339578694601727, 32.404539264718764 ], [ 130.328655673178559, 32.398575834759022 ], [ 130.309473781898816, 32.395135394397634 ], [ 130.278569623725929, 32.402704363192683 ], [ 130.262584714326152, 32.410732057369259 ], [ 130.252460938372963, 32.387795788293339 ], [ 130.234344707719885, 32.384814073313471 ], [ 130.243669238203097, 32.399263922831295 ], [ 130.244468483673074, 32.408667793152425 ], [ 130.216228477066807, 32.419677202308868 ], [ 130.19757941610041, 32.402933725883443 ], [ 130.219159043790114, 32.3930711301808 ], [ 130.219691874103432, 32.365776969980459 ], [ 130.207436776896941, 32.346281141265926 ], [ 130.209035267836924, 32.338253447089357 ], [ 130.199710737353712, 32.322198058736213 ], [ 130.173335636844087, 32.310041836125976 ], [ 130.165876012457517, 32.329537664840501 ], [ 130.156551481974333, 32.330455115603542 ], [ 130.148026196961126, 32.312335463033563 ], [ 130.148559027274445, 32.30270223002168 ], [ 130.166675257927523, 32.296280074680425 ], [ 130.158682803227634, 32.287793655122329 ], [ 130.143763554454495, 32.281830225162594 ], [ 130.134439023971311, 32.288711105885369 ], [ 130.117388453944869, 32.271738266769191 ], [ 130.103268450641735, 32.24788454693023 ], [ 130.100604299075115, 32.231599795886332 ], [ 130.091546183748591, 32.228159355524944 ], [ 130.078758256228753, 32.23481087355696 ], [ 130.078225425915434, 32.21256269255332 ], [ 130.057445043695736, 32.210727791027246 ], [ 130.049186173839189, 32.205223086449024 ], [ 130.029737867402787, 32.210727791027246 ], [ 130.032668434126094, 32.196507304200175 ], [ 130.021745412702899, 32.192149413075747 ], [ 130.040660888825983, 32.18136936661007 ], [ 130.015085033786335, 32.1710480455259 ], [ 130.020946167232921, 32.188708972714359 ], [ 130.013220127689692, 32.196277941509415 ], [ 129.992706160626653, 32.195589853437134 ], [ 129.996968803133257, 32.215544407533187 ], [ 130.014552203473016, 32.222425288255963 ], [ 130.012154467063027, 32.235498961629233 ], [ 129.966331060117028, 32.243526655805809 ], [ 129.993238990939972, 32.284582577451701 ], [ 130.009223900339748, 32.296968162752698 ], [ 130.0238767339562, 32.30224350464016 ], [ 130.045456361645904, 32.300179240423326 ], [ 130.049985419309166, 32.283206401307147 ], [ 130.063039761985664, 32.281142137090313 ], [ 130.067302404492267, 32.304537131547754 ], [ 130.057711458852395, 32.3031609554032 ], [ 130.041193719139301, 32.314399727250397 ], [ 130.037463906946016, 32.305454582310787 ], [ 130.018282015666273, 32.312794188415083 ], [ 130.00123144563986, 32.304766494238514 ], [ 129.978053327010201, 32.329078939458988 ], [ 129.981250308890139, 32.341464524759985 ], [ 129.974589929973575, 32.354996923514776 ], [ 129.997235218289916, 32.39238304210852 ], [ 129.995636727349932, 32.406374166244831 ], [ 130.006293333616469, 32.428851709939238 ], [ 130.036131831162692, 32.464861652388429 ], [ 130.047054852585887, 32.49307326335181 ], [ 130.039861643355977, 32.508440563632675 ], [ 130.01135522159305, 32.529312568491761 ], [ 130.029737867402787, 32.538487076122131 ], [ 130.037197491789357, 32.518761884716838 ], [ 130.046522022272541, 32.513945268210897 ], [ 130.065437498395625, 32.516468257809251 ], [ 130.0870171260853, 32.526330853511894 ], [ 130.103801280955082, 32.538487076122131 ], [ 130.115789963004914, 32.541468791101998 ], [ 130.114990717534909, 32.553625013712235 ] ] ], [ [ [ 130.474118348716502, 32.588029417326112 ], [ 130.487172691392971, 32.571974028972974 ], [ 130.471454197149853, 32.551331386804648 ], [ 130.465326648546608, 32.552248837567682 ], [ 130.459731930256709, 32.573350205117528 ], [ 130.474118348716502, 32.588029417326112 ] ] ], [ [ [ 130.49463231577954, 32.610048235638999 ], [ 130.509285149395993, 32.607066520659131 ], [ 130.511682885805953, 32.594451572667374 ], [ 130.493033824839557, 32.576331920097395 ], [ 130.479713067006401, 32.5914698576875 ], [ 130.483442879199686, 32.607983971422165 ], [ 130.49463231577954, 32.610048235638999 ] ] ], [ [ [ 130.442148529916949, 32.626103623992137 ], [ 130.458399854473384, 32.611424411783553 ], [ 130.445079096640228, 32.598809463791795 ], [ 130.459199099943362, 32.587111966563079 ], [ 130.446411172423552, 32.56945103937462 ], [ 130.453337966496775, 32.554083739093755 ], [ 130.447476833050217, 32.549725847969327 ], [ 130.427495696300497, 32.548120309134013 ], [ 130.405383238297475, 32.550643298732368 ], [ 130.408313805020754, 32.5689923139931 ], [ 130.414441353623999, 32.581607261984857 ], [ 130.39898927453757, 32.581836624675617 ], [ 130.394993047187626, 32.59169922037826 ], [ 130.412310032370698, 32.606607795277611 ], [ 130.408313805020754, 32.611653774474313 ], [ 130.442148529916949, 32.626103623992137 ] ] ], [ [ [ 131.33090949254435, 32.829318968004785 ], [ 131.311461186107948, 32.824731714189603 ], [ 131.287483822008312, 32.827713429169471 ], [ 131.267236270101932, 32.822438087282009 ], [ 131.248054378822189, 32.786428144832819 ], [ 131.238729848339005, 32.779776626800796 ], [ 131.246455887882206, 32.760280798086271 ], [ 131.237131357399022, 32.741243694753251 ], [ 131.218482296432626, 32.727940658689221 ], [ 131.198501159682905, 32.723124042183279 ], [ 131.187844553416369, 32.71349080917139 ], [ 131.179585683559822, 32.693765617766104 ], [ 131.17745436230652, 32.673581700979298 ], [ 131.165465680256688, 32.668306359091829 ], [ 131.147615864760269, 32.673581700979298 ], [ 131.124970576443928, 32.640782836200728 ], [ 131.118310197527364, 32.612112499855826 ], [ 131.123105670347286, 32.601791178771663 ], [ 131.116711706587381, 32.590093681542946 ], [ 131.093267172801063, 32.575414469334362 ], [ 131.056768296338248, 32.584359614273964 ], [ 131.044513199131757, 32.574267655880561 ], [ 131.042381877878427, 32.553166288330715 ], [ 131.021867910815388, 32.545826682226419 ], [ 131.026396968478679, 32.525642765439613 ], [ 131.011477719705539, 32.511422278612542 ], [ 131.009346398452237, 32.486651108010548 ], [ 131.016273192525489, 32.476559149617145 ], [ 131.01867092893545, 32.44788881327225 ], [ 131.022400741128735, 32.4380262175696 ], [ 131.043713953661751, 32.408667793152425 ], [ 131.066092826821432, 32.404768627409524 ], [ 131.072486790581337, 32.396052845160668 ], [ 131.077815093714605, 32.375639565683102 ], [ 131.075683772461304, 32.355455648896296 ], [ 131.096197739524342, 32.3469692293382 ], [ 131.11431397017742, 32.326097224479113 ], [ 131.103657363910912, 32.308436297290662 ], [ 131.082610566534527, 32.281830225162594 ], [ 131.073019620894684, 32.276784245965892 ], [ 131.053837729614941, 32.280683411708793 ], [ 131.053837729614941, 32.261187582994268 ], [ 131.04398036881841, 32.255224153034526 ], [ 131.049042256795019, 32.240544940825941 ], [ 131.065826411664773, 32.238251313918347 ], [ 131.073019620894684, 32.230682345123292 ], [ 131.082344151377868, 32.210039702954965 ], [ 131.102591703284247, 32.197195392272448 ], [ 131.106587930634191, 32.188020884642086 ], [ 131.105788685164214, 32.166690154401479 ], [ 131.111116988297454, 32.15797437215263 ], [ 131.101526042657611, 32.151552216811368 ], [ 131.078880754341242, 32.154763294482002 ], [ 131.056501881181561, 32.154304569100482 ], [ 131.039717726311807, 32.166690154401479 ], [ 131.010145643922243, 32.168754418618313 ], [ 130.991230167799159, 32.142148346490245 ], [ 130.981372807002629, 32.136873004602784 ], [ 130.974446012929405, 32.117606538579011 ], [ 130.954464876179685, 32.112101834000789 ], [ 130.93528298489997, 32.11256055938231 ], [ 130.911305620800306, 32.127239771590894 ], [ 130.880667877784077, 32.117835901269771 ], [ 130.860420325877698, 32.096505171029165 ], [ 130.839107113344653, 32.10315668906118 ], [ 130.821790128161581, 32.091459191832463 ], [ 130.811133521895044, 32.095587720266124 ], [ 130.767441436202347, 32.097193259101445 ], [ 130.740000675066057, 32.10292732637042 ], [ 130.730143314269526, 32.098569435245999 ], [ 130.704567459229906, 32.102468600988907 ], [ 130.657145561343896, 32.132973838859876 ], [ 130.653948579463957, 32.147882413759227 ], [ 130.624909327387684, 32.153387118337449 ], [ 130.614785551434494, 32.179075739702476 ], [ 130.594005169214796, 32.182516180063864 ], [ 130.592673093431472, 32.166690154401479 ], [ 130.577221014345042, 32.151322854120615 ], [ 130.546050441015467, 32.146506237614673 ], [ 130.542054213665523, 32.13595555383975 ], [ 130.52020817081916, 32.132285750787602 ], [ 130.510350810022658, 32.137331729984304 ], [ 130.478647406379764, 32.129304035807728 ], [ 130.478380991223105, 32.118294626651291 ], [ 130.458133439316725, 32.110037569783955 ], [ 130.436820226783681, 32.111184383237756 ], [ 130.405116823140816, 32.116689087815971 ], [ 130.389131913741039, 32.143524522634799 ], [ 130.375011910437905, 32.154763294482002 ], [ 130.361691152604749, 32.154533931791242 ], [ 130.357694925254805, 32.161873537895538 ], [ 130.365154549641375, 32.178158288939436 ], [ 130.379274552944509, 32.1935255892203 ], [ 130.370749267931302, 32.201094558015356 ], [ 130.402452671574167, 32.23504023624772 ], [ 130.422167393167229, 32.238251313918347 ], [ 130.428294941770474, 32.262793121829581 ], [ 130.450940230086815, 32.27999532363652 ], [ 130.448542493676854, 32.287793655122329 ], [ 130.481045142789725, 32.300179240423326 ], [ 130.465859478859954, 32.321280607973172 ], [ 130.482910048886367, 32.344904965121373 ], [ 130.50742024329935, 32.356373099659329 ], [ 130.490902503586256, 32.368299959578806 ], [ 130.536459495375595, 32.407750342389392 ], [ 130.548714592582115, 32.423117642670256 ], [ 130.554575726028673, 32.423117642670256 ], [ 130.572691956681751, 32.441007932549475 ], [ 130.564965917138551, 32.455916507448819 ], [ 130.56523233229521, 32.476329786926385 ], [ 130.548448177425428, 32.476559149617145 ], [ 130.542320628822182, 32.484357481102961 ], [ 130.54258704397887, 32.496972429094711 ], [ 130.551911574462054, 32.501100957528379 ], [ 130.568695729331807, 32.496743066403958 ], [ 130.572425541525092, 32.506835024797361 ], [ 130.536193080218936, 32.524954677367333 ], [ 130.551112328992076, 32.541468791101998 ], [ 130.564433086825204, 32.541468791101998 ], [ 130.584147808418265, 32.56990976475614 ], [ 130.597202151094734, 32.583671526201691 ], [ 130.616384042374477, 32.588258780016872 ], [ 130.630237630520952, 32.600873728008629 ], [ 130.617183287844455, 32.617387841743295 ], [ 130.622778006134382, 32.621975095558476 ], [ 130.64089423678746, 32.623351271703029 ], [ 130.656079900717259, 32.619222743269361 ], [ 130.649685936957326, 32.641470924273008 ], [ 130.635299518497533, 32.632755142024159 ], [ 130.609190833144567, 32.629314701662771 ], [ 130.577487429501701, 32.620828282104682 ], [ 130.532196852868992, 32.620598919413922 ], [ 130.510350810022658, 32.611195049092792 ], [ 130.488238352019636, 32.612571225237346 ], [ 130.463994572763312, 32.604772893751537 ], [ 130.460797590883345, 32.617387841743295 ], [ 130.450407399773496, 32.62449808515683 ], [ 130.461064006040004, 32.633901955477953 ], [ 130.499694203756121, 32.654085872264758 ], [ 130.541254968195545, 32.66876508447335 ], [ 130.554042895715355, 32.688031550497122 ], [ 130.566564408078506, 32.698582234272045 ], [ 130.599333472348064, 32.712573358408356 ], [ 130.605194605794622, 32.724041492946313 ], [ 130.606793096734606, 32.743078596279332 ], [ 130.598534226878058, 32.765785502664485 ], [ 130.598800642034718, 32.778400450656243 ], [ 130.612387815024533, 32.795602652463188 ], [ 130.603862530011327, 32.801107357041403 ], [ 130.592939508588131, 32.822438087282009 ], [ 130.578819505284997, 32.828630879932504 ], [ 130.58041799622498, 32.841016465233508 ], [ 130.563633841355227, 32.842163278687302 ], [ 130.524204398169104, 32.851567149008432 ], [ 130.524737228482451, 32.874044692702824 ], [ 130.520474585975848, 32.88184302418864 ], [ 130.495431561249518, 32.892852433345084 ], [ 130.480512312476407, 32.903173754429247 ], [ 130.462928912136647, 32.901338852903173 ], [ 130.443214190543586, 32.914641888967203 ], [ 130.442148529916949, 32.927256836958961 ], [ 130.431491923650441, 32.963725504789672 ], [ 130.430159847867117, 32.983909421576485 ], [ 130.418171165817284, 32.992625203825327 ], [ 130.412576447527357, 33.00363461298177 ], [ 130.400854180634212, 33.006386965270885 ], [ 130.469322875896552, 32.999506084548102 ], [ 130.509285149395993, 33.00317588760025 ], [ 130.515679113155898, 33.0130384833029 ], [ 130.509817979709311, 33.021983628242509 ], [ 130.49996061891278, 33.04881906306133 ], [ 130.518609679879205, 33.060975285671567 ], [ 130.528467040675736, 33.063039549888401 ], [ 130.544451950075484, 33.078406850169273 ], [ 130.555641386655338, 33.08001238900458 ], [ 130.566031577765187, 33.089645622016469 ], [ 130.564166671668545, 33.100655031172913 ], [ 130.582282902321623, 33.11281125378315 ], [ 130.605194605794622, 33.110288264184796 ], [ 130.615318381747812, 33.105242284988094 ], [ 130.637963670064181, 33.108453362658722 ], [ 130.658211221970561, 33.105242284988094 ], [ 130.66380594026046, 33.12634365253794 ], [ 130.67126556464703, 33.13505943478679 ], [ 130.669400658550387, 33.144922030489433 ], [ 130.685119152793504, 33.166711486111559 ], [ 130.693111607493393, 33.160518693461057 ], [ 130.693378022650052, 33.149509284304621 ], [ 130.73413954161947, 33.151114823139935 ], [ 130.740799920536034, 33.142399040891085 ], [ 130.758649736032453, 33.129784092899328 ], [ 130.780229363722157, 33.120150859887445 ], [ 130.791418800301983, 33.120609585268959 ], [ 130.831647488958083, 33.10317802077126 ], [ 130.845767492261217, 33.10317802077126 ], [ 130.845234661947899, 33.090792435470263 ], [ 130.864682968384301, 33.091939248924064 ], [ 130.889459577953943, 33.083223466675207 ], [ 130.902513920630412, 33.060745922980814 ], [ 130.913436942053607, 33.05845229607322 ], [ 130.920097320970171, 33.049736513824371 ], [ 130.952067139769724, 33.047442886916777 ], [ 130.972314691676104, 33.020378089407195 ], [ 130.991762998112506, 33.020148726716435 ], [ 131.004018095318997, 33.028405783583764 ], [ 131.016539607682148, 33.046984161535264 ], [ 131.013342625802181, 33.066479990249789 ], [ 131.025597723008673, 33.083223466675207 ], [ 131.000021867969053, 33.11326997916467 ], [ 130.996558470932428, 33.124050025630346 ], [ 130.983237713099271, 33.13505943478679 ], [ 130.988832431389199, 33.14882119623234 ], [ 130.989898092015864, 33.166711486111559 ], [ 130.999755452812366, 33.177491532577235 ], [ 131.022667156285394, 33.177491532577235 ], [ 131.041582632408449, 33.190794568641273 ], [ 131.062363014628147, 33.191712019404306 ], [ 131.084741887787828, 33.185060501372291 ], [ 131.103657363910912, 33.184372413300018 ], [ 131.112981894394096, 33.17978515948483 ], [ 131.120974349093984, 33.166711486111559 ], [ 131.134295106927141, 33.162124232296378 ], [ 131.151345676953554, 33.14882119623234 ], [ 131.165998510570034, 33.133224533260716 ], [ 131.168129831823336, 33.116251694144538 ], [ 131.175323041053218, 33.100884393863666 ], [ 131.175589456209877, 33.083223466675207 ], [ 131.18491398669309, 33.073590233663325 ], [ 131.196103423272916, 33.074048959044845 ], [ 131.219015126745944, 33.049965876515131 ], [ 131.223544184409207, 33.027488332820724 ], [ 131.23047097848243, 33.007075053343158 ], [ 131.248853624292167, 32.993542654588367 ], [ 131.248853624292167, 32.98092770659661 ], [ 131.266170609475267, 32.971982561657001 ], [ 131.249919284918832, 32.960285064428284 ], [ 131.249919284918832, 32.930009189248068 ], [ 131.2552475880521, 32.921522769689979 ], [ 131.259776645715363, 32.883677925714714 ], [ 131.275228724801821, 32.877943858445732 ], [ 131.276294385428457, 32.867393174670809 ], [ 131.295209861551513, 32.855466314751332 ], [ 131.315990243771239, 32.847897345956284 ], [ 131.33090949254435, 32.829318968004785 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1478, "NAME_1": "Kyoto", "VARNAME_1": "Kioto", "HASC_1": "JP.KY", "TYPE_1": "Fu", "ENGTYPE_1": "Urban Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.473398763495652, 35.557129449203863 ], [ 135.452351966119295, 35.519972693300872 ], [ 135.478993481785579, 35.502311766112413 ], [ 135.477661406002255, 35.489926180811423 ], [ 135.462209326915797, 35.470659714787644 ], [ 135.46407423301244, 35.460797119085001 ], [ 135.482190463665518, 35.44634726956717 ], [ 135.510164055115126, 35.419282472057589 ], [ 135.520287831068316, 35.419282472057589 ], [ 135.530678022178165, 35.410337327117979 ], [ 135.528013870611545, 35.400245368724576 ], [ 135.533608588901473, 35.391758949166487 ], [ 135.529878776708188, 35.381666990773084 ], [ 135.537338401094758, 35.374327384668788 ], [ 135.582362562570779, 35.371575032379674 ], [ 135.592486338523969, 35.365152877038419 ], [ 135.603142944790477, 35.367905229327526 ], [ 135.62498898763684, 35.366529053182973 ], [ 135.639641821253292, 35.360565623223238 ], [ 135.671345224896186, 35.353455379809702 ], [ 135.680136925066051, 35.346574499086927 ], [ 135.701450137599096, 35.341757882580978 ], [ 135.720365613722151, 35.351391115592868 ], [ 135.741145995941849, 35.349097488685274 ], [ 135.749937696111743, 35.354602193263496 ], [ 135.7709844934881, 35.352537929046662 ], [ 135.776845626934687, 35.339464255673391 ], [ 135.807749785107575, 35.313775634308357 ], [ 135.82160337325405, 35.296344069810658 ], [ 135.830927903737262, 35.275930790333092 ], [ 135.840518849377105, 35.271572899208664 ], [ 135.850376210173636, 35.267444370775003 ], [ 135.840252434220446, 35.233728055233399 ], [ 135.840518849377105, 35.223636096839996 ], [ 135.832526394677245, 35.216525853426461 ], [ 135.844781491883737, 35.186938066318525 ], [ 135.843449416100412, 35.177075470615883 ], [ 135.856503758776881, 35.14817577158022 ], [ 135.85170828595696, 35.138313175877578 ], [ 135.854638852680239, 35.128450580174928 ], [ 135.845314322197055, 35.098633430376239 ], [ 135.839186773593809, 35.08945892274587 ], [ 135.83892035843715, 35.056201332585786 ], [ 135.82133695809739, 35.045880011501623 ], [ 135.822136203567368, 35.03555869041746 ], [ 135.837055452340508, 35.019044576682795 ], [ 135.836256206870502, 34.996796395679155 ], [ 135.858901495186842, 34.975465665438549 ], [ 135.85916791034353, 34.964914981663625 ], [ 135.874886404586618, 34.952070670981115 ], [ 135.881280368346552, 34.933721655720376 ], [ 135.868758855983373, 34.902757692467887 ], [ 135.869558101453379, 34.888995931022336 ], [ 135.905257732446188, 34.869500102307804 ], [ 135.931632832955813, 34.884867402588668 ], [ 135.942555854379009, 34.885096765279428 ], [ 135.948949818138914, 34.848628097448717 ], [ 135.964401897225372, 34.850692361665551 ], [ 135.979587561155142, 34.835095698693927 ], [ 136.000101528218181, 34.841288491344422 ], [ 136.012623040581332, 34.82271011339293 ], [ 136.031272101547756, 34.816287958051674 ], [ 136.0179513437146, 34.805278548895231 ], [ 136.017152098244622, 34.794039777048027 ], [ 136.02541096810117, 34.788305709779053 ], [ 136.036333989524337, 34.772479684116661 ], [ 136.034202668271035, 34.752754492711375 ], [ 136.04805625641751, 34.737845917812024 ], [ 136.043793613910907, 34.722707980221919 ], [ 136.031005686391097, 34.706423229178014 ], [ 136.011557379954695, 34.71330410990079 ], [ 135.989711337108332, 34.711927933756236 ], [ 135.98518227944507, 34.731423762470769 ], [ 135.976923409588522, 34.737845917812024 ], [ 135.946019251415635, 34.735093565522916 ], [ 135.9145822629294, 34.741056995482651 ], [ 135.899929429312948, 34.726377783274067 ], [ 135.893002635239696, 34.706193866487254 ], [ 135.874886404586618, 34.708028768013335 ], [ 135.855970928463563, 34.702524063435114 ], [ 135.835456961400524, 34.709863669539402 ], [ 135.814942994337486, 34.712157296446996 ], [ 135.796293933371089, 34.720643716005085 ], [ 135.75846298112495, 34.724313519057233 ], [ 135.756065244714989, 34.735093565522916 ], [ 135.739281089845207, 34.750002140422268 ], [ 135.732087880615325, 34.775461399096535 ], [ 135.746207883918458, 34.79105806206816 ], [ 135.746740714231777, 34.801379383152323 ], [ 135.725960332012079, 34.82316883877445 ], [ 135.712905989335582, 34.841976579416702 ], [ 135.694523343525844, 34.849774910902511 ], [ 135.679071264439415, 34.894271272909798 ], [ 135.656958806436393, 34.905968770138514 ], [ 135.646035785013197, 34.926611412306841 ], [ 135.625788233106817, 34.930739940740509 ], [ 135.615930872310287, 34.942208075278465 ], [ 135.619660684503572, 34.952300033671875 ], [ 135.616197287466974, 34.967896696643493 ], [ 135.596482565873913, 34.965144344354385 ], [ 135.578099920064176, 34.968814147406533 ], [ 135.565045577387679, 34.940373173752391 ], [ 135.582362562570779, 34.933951018411136 ], [ 135.584227468667422, 34.922941609254693 ], [ 135.575968598810874, 34.91353773893357 ], [ 135.543998780011322, 34.911932200098249 ], [ 135.538670476878053, 34.922712246563933 ], [ 135.524550473574919, 34.928675676523675 ], [ 135.508831979331831, 34.942437437969225 ], [ 135.496310466968652, 34.937850184154044 ], [ 135.488584427425451, 34.952988121744148 ], [ 135.486186691015462, 34.978447380418416 ], [ 135.492847069932054, 34.986245711904232 ], [ 135.472865933182334, 34.992209141863967 ], [ 135.443293850792742, 35.004365364474211 ], [ 135.420914977633061, 35.000007473349783 ], [ 135.412656107776513, 35.008035167526359 ], [ 135.403065162136642, 35.004824089855731 ], [ 135.383350440543609, 35.011475607887746 ], [ 135.384948931483564, 35.027760358931644 ], [ 135.373759494903737, 35.042210208449475 ], [ 135.375091570687033, 35.055971969895026 ], [ 135.382284779916944, 35.064458389453115 ], [ 135.401733086353346, 35.073174171701964 ], [ 135.403065162136642, 35.090835098890423 ], [ 135.391076480086809, 35.098404067685479 ], [ 135.396138368063419, 35.107349212625088 ], [ 135.386813837580206, 35.12569822788582 ], [ 135.362303643167223, 35.129138668247208 ], [ 135.342322506417503, 35.136707637042264 ], [ 135.337260618440922, 35.146340870054146 ], [ 135.294101363061515, 35.138771901259098 ], [ 135.286375323518314, 35.14794640888946 ], [ 135.293568532748196, 35.155974103066036 ], [ 135.291970041808213, 35.169277139130067 ], [ 135.258934562382024, 35.173864392945248 ], [ 135.239752671102309, 35.173635030254495 ], [ 135.228563234522454, 35.160790719571978 ], [ 135.207782852302756, 35.158726455355144 ], [ 135.189933036806337, 35.168589051057793 ], [ 135.192064358059639, 35.189002330535359 ], [ 135.198458321819544, 35.200929190454836 ], [ 135.184604733673069, 35.212626687683553 ], [ 135.164890012080036, 35.217213941498741 ], [ 135.158762463476791, 35.225929723747591 ], [ 135.16675491817665, 35.232351879088846 ], [ 135.164623596923349, 35.250012806277304 ], [ 135.157430387693466, 35.258269863144633 ], [ 135.116935283880707, 35.260563490052228 ], [ 135.096154901661009, 35.25666432430932 ], [ 135.080436407417892, 35.241526386719215 ], [ 135.067382064741395, 35.240150210574654 ], [ 135.060721685824831, 35.253223883947932 ], [ 135.041539794545116, 35.257581775072353 ], [ 135.013566203095507, 35.270884811136391 ], [ 135.011168466685547, 35.281206132220554 ], [ 134.999979030105692, 35.287169562180296 ], [ 134.96028317176291, 35.295655981738385 ], [ 134.924050710456783, 35.312628820854563 ], [ 134.928579768120045, 35.333271463022889 ], [ 134.921652974046793, 35.343822146797812 ], [ 134.923517880143436, 35.365152877038419 ], [ 134.929645428746682, 35.374556747359549 ], [ 134.930178259060028, 35.395199389527875 ], [ 134.941900525953173, 35.406896886756591 ], [ 134.963480153642877, 35.405061985230518 ], [ 134.972538268969402, 35.396804928363188 ], [ 134.983727705549256, 35.394970026837115 ], [ 134.999979030105692, 35.383731254989911 ], [ 135.022624318422032, 35.391300223784967 ], [ 135.03567866109853, 35.406896886756591 ], [ 135.046335267365038, 35.405520710612038 ], [ 135.052729231124943, 35.416530119768481 ], [ 135.049798664401663, 35.426622078161884 ], [ 135.052196400811624, 35.448182171093244 ], [ 135.043671115798418, 35.468366087880057 ], [ 135.043404700641759, 35.494284071935844 ], [ 135.046601682521697, 35.51446798872265 ], [ 135.039941303605133, 35.534651905509463 ], [ 135.030083942808602, 35.53671616972629 ], [ 135.007438654492262, 35.532358278601869 ], [ 134.969607702246122, 35.516990978321004 ], [ 134.96241449301624, 35.509651372216709 ], [ 134.940568450169877, 35.509422009525949 ], [ 134.925915616553425, 35.516761615630244 ], [ 134.915525425443548, 35.542220874304519 ], [ 134.888617494620604, 35.557817537276136 ], [ 134.87183333975085, 35.575478464464595 ], [ 134.867304282087559, 35.594974293179128 ], [ 134.874763906474129, 35.62295654145175 ], [ 134.869968433654208, 35.633048499845152 ], [ 134.870767679124185, 35.6591958465917 ], [ 134.885154097583978, 35.656214131611833 ], [ 134.883022776330677, 35.647498349362984 ], [ 134.910463537466967, 35.644745997073876 ], [ 134.942166941109861, 35.651168152415131 ], [ 134.966410720366184, 35.664241825788409 ], [ 134.972271853812742, 35.676168685707886 ], [ 134.986658272272564, 35.69199471137027 ], [ 135.004774502925613, 35.694058975587097 ], [ 135.024222809362016, 35.689471721771916 ], [ 135.040474133918451, 35.700022405546839 ], [ 135.059922440354853, 35.707591374341895 ], [ 135.087629616647774, 35.730298280727055 ], [ 135.083899804454518, 35.737867249522104 ], [ 135.12386207795393, 35.74566558100792 ], [ 135.139314157040388, 35.757363078236637 ], [ 135.145175290486975, 35.749794109441581 ], [ 135.174480957719879, 35.760115430525744 ], [ 135.206717191676091, 35.763785233577892 ], [ 135.229628895149119, 35.773418466589781 ], [ 135.252540598622119, 35.755069451329049 ], [ 135.257069656285381, 35.744518767554126 ], [ 135.2749194717818, 35.741307689883492 ], [ 135.288240229614928, 35.724793576148834 ], [ 135.287174568988291, 35.711261177394036 ], [ 135.306622875424694, 35.698416866711526 ], [ 135.299429666194783, 35.678921037996993 ], [ 135.303692308701386, 35.663553737716128 ], [ 135.29250287212156, 35.661030748117774 ], [ 135.286641738674973, 35.673416333418771 ], [ 135.274386641468482, 35.670893343820424 ], [ 135.253872674405443, 35.650709427033611 ], [ 135.245080974235549, 35.620892277234915 ], [ 135.225632667799175, 35.603001987355697 ], [ 135.21444323121932, 35.597956008159002 ], [ 135.18913379133636, 35.564927780689672 ], [ 135.188334545866354, 35.5468081281197 ], [ 135.201655303699511, 35.537633620489331 ], [ 135.210447003869376, 35.547725578882734 ], [ 135.20725002198941, 35.562634153782085 ], [ 135.226698328425812, 35.56905630912334 ], [ 135.229895310305778, 35.579148267516743 ], [ 135.247745125802169, 35.586946599002559 ], [ 135.2520077683088, 35.56951503450486 ], [ 135.268525508021895, 35.567221407597266 ], [ 135.2749194717818, 35.560111164183731 ], [ 135.260266638165348, 35.553459646151715 ], [ 135.241883992355611, 35.558964350729937 ], [ 135.237088519535661, 35.54612004004742 ], [ 135.245080974235549, 35.535339993581736 ], [ 135.270923244431856, 35.532817003983389 ], [ 135.27225532021518, 35.525248035188334 ], [ 135.287973814458269, 35.516073527557964 ], [ 135.310885517931297, 35.512174361815063 ], [ 135.320210048414481, 35.525477397879094 ], [ 135.331399484994336, 35.516761615630244 ], [ 135.332198730464313, 35.494742797317365 ], [ 135.324739106077772, 35.490155543502176 ], [ 135.316480236221196, 35.455751139888299 ], [ 135.355110433937341, 35.488320641976102 ], [ 135.375357985843721, 35.49153171964673 ], [ 135.392674971026793, 35.481898486634847 ], [ 135.400134595413363, 35.493366621172811 ], [ 135.390543649773491, 35.507357745309122 ], [ 135.355909679407318, 35.502311766112413 ], [ 135.343920997357486, 35.504605393020007 ], [ 135.349515715647414, 35.517449703702525 ], [ 135.336194957814257, 35.531899553220349 ], [ 135.339391939694224, 35.544055775830586 ], [ 135.350048545960732, 35.543138325067552 ], [ 135.38095270413362, 35.561946065709805 ], [ 135.390543649773491, 35.556441361131583 ], [ 135.413455353246491, 35.569973759886381 ], [ 135.425177620139664, 35.571120573340174 ], [ 135.435034980936194, 35.58212998249661 ], [ 135.435567811249513, 35.590616402054707 ], [ 135.452085550962636, 35.590845764745467 ], [ 135.452351966119295, 35.567680132978786 ], [ 135.465939139109082, 35.56859758374182 ], [ 135.473398763495652, 35.557129449203863 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1479, "NAME_1": "Mie", "VARNAME_1": "Miye", "HASC_1": "JP.ME", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.909110042751962, 34.50229043440234 ], [ 136.906712306342001, 34.489675486410576 ], [ 136.890194566628907, 34.482565242997048 ], [ 136.872344751132488, 34.486005683358435 ], [ 136.876873808795779, 34.493574652153484 ], [ 136.909110042751962, 34.50229043440234 ] ] ], [ [ [ 136.900318342582096, 34.536694838016217 ], [ 136.906179476028683, 34.529355231911921 ], [ 136.863286635805963, 34.506648325526761 ], [ 136.853429275009432, 34.516740283920164 ], [ 136.872078335975829, 34.519492636209279 ], [ 136.872078335975829, 34.527061605004327 ], [ 136.900318342582096, 34.536694838016217 ] ] ], [ [ [ 136.665873004718748, 34.991062328410173 ], [ 136.67786168676858, 34.987163162667272 ], [ 136.665606589562088, 34.972483950458681 ], [ 136.650687340788977, 34.976383116201589 ], [ 136.65255224688562, 34.992438504554727 ], [ 136.665873004718748, 34.991062328410173 ] ] ], [ [ [ 136.670934892695357, 35.145423419291113 ], [ 136.680259423178541, 35.128679942865688 ], [ 136.704503202434864, 35.119964160616846 ], [ 136.710097920724792, 35.094734264633331 ], [ 136.717291129954702, 35.084183580858408 ], [ 136.731144718101177, 35.03624677848974 ], [ 136.736473021234417, 35.029365897766958 ], [ 136.722086602774624, 35.029365897766958 ], [ 136.697576408361641, 35.020650115518109 ], [ 136.698642068988278, 35.006200266000278 ], [ 136.677062441298602, 35.006429628691038 ], [ 136.655749228765558, 34.997943209132949 ], [ 136.646158283125715, 34.977759292346143 ], [ 136.650953755945636, 34.974548214675515 ], [ 136.638698658739145, 34.943584251423019 ], [ 136.64482620734239, 34.925464598853047 ], [ 136.646424698282374, 34.902987055158647 ], [ 136.637100167799161, 34.894959360982071 ], [ 136.634436016232542, 34.881885687608801 ], [ 136.614454879482821, 34.853903439336179 ], [ 136.584882797093229, 34.819269673031542 ], [ 136.555577129860325, 34.788535072469806 ], [ 136.540924296243873, 34.766974979538446 ], [ 136.531333350604001, 34.7458736119886 ], [ 136.528402783880694, 34.722707980221919 ], [ 136.522008820120789, 34.704358964961187 ], [ 136.523074480747454, 34.684175048174374 ], [ 136.530001274820677, 34.683945685483614 ], [ 136.554777884390319, 34.667202209058196 ], [ 136.548650335787073, 34.660091965644661 ], [ 136.547051844847118, 34.626605012793817 ], [ 136.553179393450364, 34.61467815287434 ], [ 136.565434490656855, 34.607109184079285 ], [ 136.590743930539816, 34.601833842191823 ], [ 136.620316012929408, 34.599081489902716 ], [ 136.646691113439033, 34.588989531509313 ], [ 136.661343947055485, 34.563300910144278 ], [ 136.669869232068692, 34.556649392112263 ], [ 136.712229241978093, 34.540594003759125 ], [ 136.723418678557948, 34.539905915686845 ], [ 136.711696411664775, 34.520868812353832 ], [ 136.739670003114384, 34.532795672273309 ], [ 136.746863212344266, 34.518575185446238 ], [ 136.758851894394098, 34.518116460064718 ], [ 136.778033785673841, 34.508253864362075 ], [ 136.810536434786712, 34.508253864362075 ], [ 136.817996059173254, 34.485317595286155 ], [ 136.835579459513013, 34.50114362094854 ], [ 136.84890021734617, 34.480500978780213 ], [ 136.86914776925255, 34.474766911511232 ], [ 136.869414184409209, 34.455041720105939 ], [ 136.88433343318232, 34.449995740909237 ], [ 136.912839854945247, 34.454124269342906 ], [ 136.92456212183842, 34.441050595969628 ], [ 136.919766649018499, 34.42384839416269 ], [ 136.92722627340504, 34.414215161150807 ], [ 136.909642873065309, 34.398159772797662 ], [ 136.90697872149866, 34.375452866412502 ], [ 136.894723624292169, 34.389673353239573 ], [ 136.874742487542449, 34.37981075753693 ], [ 136.877140223952438, 34.371324337978834 ], [ 136.865151541902605, 34.361691104966951 ], [ 136.872344751132488, 34.353434048099622 ], [ 136.892059472725549, 34.365360908019099 ], [ 136.905646645715365, 34.361003016894671 ], [ 136.878205884579074, 34.339901649344824 ], [ 136.877673054265756, 34.330268416332942 ], [ 136.892592303038867, 34.313066214526003 ], [ 136.88433343318232, 34.299533815771213 ], [ 136.894990039448828, 34.291964846976157 ], [ 136.900051927425437, 34.275450733241499 ], [ 136.869947014722527, 34.273157106333905 ], [ 136.873143996602494, 34.265588137538849 ], [ 136.855294181106075, 34.262147697177461 ], [ 136.84410474452622, 34.251367650711778 ], [ 136.819860965269896, 34.250450199948745 ], [ 136.774836803793875, 34.258019168743793 ], [ 136.759384724707417, 34.269257940590997 ], [ 136.765512273310662, 34.278661810912126 ], [ 136.797215676953556, 34.277056272076805 ], [ 136.805208131653444, 34.273157106333905 ], [ 136.827587004813125, 34.272239655570864 ], [ 136.833714553416371, 34.290588670831603 ], [ 136.822525116836545, 34.304121069586394 ], [ 136.798014922423562, 34.289441857377803 ], [ 136.780165106927143, 34.290588670831603 ], [ 136.766045103624009, 34.304350432277154 ], [ 136.751925100320875, 34.292882297739197 ], [ 136.739403587957725, 34.301139354606526 ], [ 136.716491884484697, 34.30251553075108 ], [ 136.712762072291412, 34.293341023120711 ], [ 136.701306220554926, 34.292882297739197 ], [ 136.69038319913173, 34.283707790108828 ], [ 136.688251877878429, 34.305726608421708 ], [ 136.706368108531507, 34.336002483601924 ], [ 136.68532131115515, 34.331873955168255 ], [ 136.661610362212144, 34.323616898300926 ], [ 136.674664704888642, 34.313983665289037 ], [ 136.653884322668915, 34.297010826172858 ], [ 136.659745456115502, 34.288983131996289 ], [ 136.636567337485843, 34.285083966253382 ], [ 136.635768092015837, 34.275450733241499 ], [ 136.622447334182709, 34.273615831715418 ], [ 136.602466197432989, 34.25733108067152 ], [ 136.58728053350319, 34.25778980605304 ], [ 136.579554493959989, 34.274762645169218 ], [ 136.567299396753498, 34.284854603562621 ], [ 136.557442035956967, 34.284625240871861 ], [ 136.558507696583604, 34.267881764446443 ], [ 136.549449581257079, 34.25756044336228 ], [ 136.537194484050588, 34.255266816454686 ], [ 136.541190711400532, 34.276368184004532 ], [ 136.522808065590795, 34.266276225611129 ], [ 136.512684289637605, 34.269716665972517 ], [ 136.497498625707806, 34.22476157858371 ], [ 136.480714470838052, 34.223844127820676 ], [ 136.471922770668158, 34.232330547378766 ], [ 136.452740879388443, 34.232101184688005 ], [ 136.454872200641745, 34.221321138222322 ], [ 136.437821630615332, 34.221091775531562 ], [ 136.398925017742528, 34.20297212296159 ], [ 136.392264638825964, 34.211687905210439 ], [ 136.378411050679489, 34.204118936415384 ], [ 136.362159726123053, 34.189669086897553 ], [ 136.351769535013204, 34.205495112559944 ], [ 136.340047268120031, 34.201137221435516 ], [ 136.338715192336736, 34.191274625732873 ], [ 136.323795943563596, 34.186458009226925 ], [ 136.316869149490373, 34.178659677741116 ], [ 136.30488046744054, 34.18049457926719 ], [ 136.285165745847479, 34.159163849026584 ], [ 136.277706121460909, 34.141732284528885 ], [ 136.284632915534161, 34.117878564689931 ], [ 136.312606506983769, 34.118566652762205 ], [ 136.301417070403915, 34.092419306015657 ], [ 136.281169518497535, 34.094712932923251 ], [ 136.272377818327669, 34.086226513365162 ], [ 136.257991399867876, 34.087602689509716 ], [ 136.249732530011329, 34.093795482160218 ], [ 136.254261587674591, 34.104346165935141 ], [ 136.228419317478284, 34.099988274810713 ], [ 136.236145357021513, 34.085767787983642 ], [ 136.204708368535279, 34.070859213084297 ], [ 136.219894032465078, 34.063290244289242 ], [ 136.226554411381642, 34.065813233887596 ], [ 136.244137811721401, 34.060079166618614 ], [ 136.246002717818044, 34.041959514048635 ], [ 136.258257815024535, 34.032785006418266 ], [ 136.281702348810853, 34.022693048024863 ], [ 136.256925739241211, 34.005490846217924 ], [ 136.265451024254418, 33.993105260916927 ], [ 136.27211140317101, 33.971774530676328 ], [ 136.263586118157775, 33.966957914170379 ], [ 136.249732530011329, 33.972003893367081 ], [ 136.238809508588133, 33.96833409031494 ], [ 136.235612526708195, 33.98163712637897 ], [ 136.21163516260853, 33.999986141639702 ], [ 136.215098559645128, 33.982554577142004 ], [ 136.195117422895436, 33.96833409031494 ], [ 136.224689505284999, 33.967187276861139 ], [ 136.231349884201592, 33.946315272002053 ], [ 136.21190157776519, 33.938746303206997 ], [ 136.196183083522072, 33.942416106259145 ], [ 136.198047989618715, 33.922232189472339 ], [ 136.17167288910909, 33.912140231078936 ], [ 136.166877416289168, 33.926819443287521 ], [ 136.153023828142693, 33.923608365616893 ], [ 136.147961940166084, 33.902736360757807 ], [ 136.12851363372971, 33.885992884332381 ], [ 136.107733251509984, 33.89103886352909 ], [ 136.088817775386929, 33.873607299031391 ], [ 136.07816116912042, 33.85938681220432 ], [ 136.046457765477527, 33.806174667948184 ], [ 136.024611722631164, 33.753879974455089 ], [ 136.021148325594567, 33.73598968457587 ], [ 136.010225304171371, 33.721998560439559 ], [ 135.991043412891656, 33.731861156142209 ], [ 135.979054730841824, 33.733925420359043 ], [ 135.958807178935444, 33.725209638110194 ], [ 135.94495359078897, 33.733466694977523 ], [ 135.934563399679121, 33.750898259475221 ], [ 135.920976226689305, 33.761907668631665 ], [ 135.909786790109479, 33.763513207466978 ], [ 135.899396598999601, 33.785532025779858 ], [ 135.887674332106457, 33.798146973771615 ], [ 135.865828289260094, 33.807780206783505 ], [ 135.858901495186842, 33.815807900960074 ], [ 135.862897722536786, 33.842184610397382 ], [ 135.85677017393354, 33.859616174895081 ], [ 135.855970928463563, 33.874066024412912 ], [ 135.862364892223468, 33.896772930798065 ], [ 135.872222253019999, 33.916956847584878 ], [ 135.902327165722909, 33.922002826781579 ], [ 135.895666786806345, 33.942186743568385 ], [ 135.918578490279344, 33.969480903768734 ], [ 135.92737019044921, 33.975903059109989 ], [ 135.959606424405422, 33.977508597945302 ], [ 135.979587561155142, 33.985765654812639 ], [ 135.993441149301617, 33.999986141639702 ], [ 136.006229076821427, 34.006637659671725 ], [ 136.021681155907885, 34.033014369109026 ], [ 136.032071347017734, 34.029344566056878 ], [ 136.040330216874281, 34.037830985614974 ], [ 136.049654747357494, 34.031408830273712 ], [ 136.069103053793867, 34.030262016819918 ], [ 136.103737024160068, 34.022463685334102 ], [ 136.098142305870141, 34.043335690193189 ], [ 136.096810230086817, 34.078657544570106 ], [ 136.108798912136649, 34.08989631641731 ], [ 136.107466836353325, 34.132557776898516 ], [ 136.115192875896554, 34.163751102841772 ], [ 136.096277399773498, 34.192421439186667 ], [ 136.102138533220085, 34.198614231837169 ], [ 136.12105400934314, 34.210999817138159 ], [ 136.11599212136656, 34.220862412840809 ], [ 136.133042691392973, 34.249762111876464 ], [ 136.12371816090976, 34.266276225611129 ], [ 136.100273627123443, 34.288524406614769 ], [ 136.097875890713482, 34.298616365008172 ], [ 136.124250991223107, 34.307102784566261 ], [ 136.131710615609649, 34.313754302598284 ], [ 136.111729478859928, 34.326598613280794 ], [ 136.089084190543588, 34.376140954484782 ], [ 136.073099281143811, 34.391508254765647 ], [ 136.088018529916951, 34.407334280428032 ], [ 136.098675136183459, 34.431646725648505 ], [ 136.125050236693085, 34.439903782515835 ], [ 136.145297788599464, 34.438527606371281 ], [ 136.166078170819162, 34.445179124403296 ], [ 136.178599683182313, 34.442197409423429 ], [ 136.190055534918827, 34.446096575166337 ], [ 136.20923742619857, 34.445408487094056 ], [ 136.218828371838413, 34.477977989181859 ], [ 136.228952147791603, 34.484858869904635 ], [ 136.222291768875039, 34.493345289462724 ], [ 136.221492523405061, 34.516510921229404 ], [ 136.21429931417515, 34.525226703478253 ], [ 136.190854780388833, 34.519721998900039 ], [ 136.180997419592302, 34.51421729432181 ], [ 136.17167288910909, 34.536006749943937 ], [ 136.157552885805956, 34.556420029421503 ], [ 136.11599212136656, 34.544951894883546 ], [ 136.102404948376744, 34.552979589060115 ], [ 136.063241920347309, 34.566282625124153 ], [ 136.050187577670812, 34.583255464240331 ], [ 136.054983050490733, 34.604356831790177 ], [ 136.072300035673834, 34.625458199340024 ], [ 136.069635884107214, 34.650458732632771 ], [ 136.079226829747057, 34.655963437210993 ], [ 136.088817775386929, 34.672248188254898 ], [ 136.07842758427708, 34.692432105041703 ], [ 136.066971732540566, 34.705047053033461 ], [ 136.071767205360516, 34.71422156066383 ], [ 136.066172487070588, 34.72316670560344 ], [ 136.04805625641751, 34.737845917812024 ], [ 136.034202668271035, 34.752754492711375 ], [ 136.036333989524337, 34.772479684116661 ], [ 136.02541096810117, 34.788305709779053 ], [ 136.045125689694203, 34.795645315883341 ], [ 136.065906071913929, 34.797480217409415 ], [ 136.09361324820685, 34.811471341545726 ], [ 136.090149851170253, 34.832802071786332 ], [ 136.109864572763286, 34.841976579416702 ], [ 136.113594384956571, 34.852297900500865 ], [ 136.129046464043029, 34.85917878122364 ], [ 136.125050236693085, 34.869500102307804 ], [ 136.103470609003381, 34.867206475400209 ], [ 136.09361324820685, 34.871793729215398 ], [ 136.090149851170253, 34.882344412990321 ], [ 136.100540042280102, 34.886014216042469 ], [ 136.11386080011323, 34.898629164034219 ], [ 136.11865627293318, 34.888995931022336 ], [ 136.130378539826353, 34.882573775681081 ], [ 136.149826846262727, 34.879592060701206 ], [ 136.182063080218938, 34.883261863753354 ], [ 136.198847235088692, 34.868812014235523 ], [ 136.249998945167988, 34.855738340862253 ], [ 136.271578572857663, 34.861931133512748 ], [ 136.278771782087574, 34.869041376926283 ], [ 136.307278203850501, 34.871793729215398 ], [ 136.323529528406937, 34.886472941423982 ], [ 136.359761989713093, 34.897482350580425 ], [ 136.368553689882958, 34.902757692467887 ], [ 136.378943880992836, 34.941519987206192 ], [ 136.399724263212534, 34.954364297888702 ], [ 136.413045021045662, 34.972483950458681 ], [ 136.422902381842192, 35.000007473349783 ], [ 136.42103747574555, 35.014916048249134 ], [ 136.425300118252153, 35.024549281261017 ], [ 136.419438984805595, 35.033494426200626 ], [ 136.420771060588891, 35.044733198047822 ], [ 136.443949179218578, 35.066752016360709 ], [ 136.439153706398628, 35.075926523991079 ], [ 136.448211821725181, 35.122945875596713 ], [ 136.438620876085309, 35.127991854793414 ], [ 136.447678991411834, 35.146340870054146 ], [ 136.457802767365024, 35.149093222343261 ], [ 136.457269937051706, 35.159643906118184 ], [ 136.432759742638723, 35.177992921378916 ], [ 136.422103136372215, 35.17959846021423 ], [ 136.415442757455651, 35.192442770896747 ], [ 136.418106909022271, 35.214690951900387 ], [ 136.426898609192136, 35.220883744550889 ], [ 136.446613330785198, 35.21560840266342 ], [ 136.462331825028315, 35.229828889490491 ], [ 136.513483535107582, 35.236480407522514 ], [ 136.518279007927504, 35.250012806277304 ], [ 136.530267689977336, 35.254370697401725 ], [ 136.539592220460548, 35.246343003225157 ], [ 136.55184731766704, 35.227764625273664 ], [ 136.550781657040375, 35.216984578807981 ], [ 136.560639017836905, 35.214690951900387 ], [ 136.563036754246866, 35.203452180053191 ], [ 136.582485060683268, 35.193360221659781 ], [ 136.608327330879575, 35.166066061459439 ], [ 136.616319785579464, 35.150469398487814 ], [ 136.625111485749329, 35.144505968528073 ], [ 136.648556019535675, 35.148634496961741 ], [ 136.649088849848994, 35.162625621098051 ], [ 136.670934892695357, 35.145423419291113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1480, "NAME_1": "Miyagi", "VARNAME_1": "", "HASC_1": "JP.MG", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.466407712627387, 38.280582039278514 ], [ 141.479994885617202, 38.27943522582472 ], [ 141.487720925160431, 38.27003135550359 ], [ 141.493848473763677, 38.250764889479818 ], [ 141.475998658267258, 38.252370428315132 ], [ 141.471203185447337, 38.264297288234616 ], [ 141.457616012457521, 38.270719443575871 ], [ 141.466407712627387, 38.280582039278514 ] ] ], [ [ [ 141.567911887315972, 38.313610266747837 ], [ 141.569243963099268, 38.308105562169615 ], [ 141.588958684692329, 38.30214213220988 ], [ 141.580166984522464, 38.286545469238256 ], [ 141.586028117969022, 38.277141598917126 ], [ 141.577769248112475, 38.271636894338904 ], [ 141.55858735683276, 38.280811401969274 ], [ 141.547664335409593, 38.30191276951912 ], [ 141.567911887315972, 38.313610266747837 ] ] ], [ [ [ 141.524219801623246, 38.461319839596754 ], [ 141.535142823046414, 38.444805725862096 ], [ 141.517293007549995, 38.445493813934377 ], [ 141.524219801623246, 38.461319839596754 ] ] ], [ [ [ 141.628121712721764, 38.878530574087733 ], [ 141.633716431011692, 38.866144988786729 ], [ 141.622260579275178, 38.861787097662308 ], [ 141.625990391468463, 38.848713424289031 ], [ 141.615600200358614, 38.838850828586388 ], [ 141.607341330502067, 38.854676854248773 ], [ 141.604410763778787, 38.877154397943173 ], [ 141.628121712721764, 38.878530574087733 ] ] ], [ [ [ 141.632117940071709, 38.971193101154441 ], [ 141.643840206964882, 38.955596438182816 ], [ 141.645971528218183, 38.922797573404253 ], [ 141.653431152604753, 38.918669044970585 ], [ 141.651566246508111, 38.902384293926687 ], [ 141.665686249811245, 38.895503413203912 ], [ 141.663022098244596, 38.881741651758361 ], [ 141.675543610607775, 38.864080724569902 ], [ 141.655296058701396, 38.863851361879142 ], [ 141.637979073518295, 38.884952729428989 ], [ 141.633183600698374, 38.896420863966945 ], [ 141.604943594092106, 38.879677387541527 ], [ 141.590557175632313, 38.883576553284428 ], [ 141.590290760475654, 38.870502879911157 ], [ 141.582564720932425, 38.853530040794979 ], [ 141.591622836258949, 38.834263574771207 ], [ 141.587893024065664, 38.824171616377797 ], [ 141.56125150839938, 38.8129328445306 ], [ 141.555656790109481, 38.800547259229603 ], [ 141.539405465553045, 38.798024269631256 ], [ 141.520223574273302, 38.787473585856333 ], [ 141.515428101453381, 38.764996042161926 ], [ 141.540471126179682, 38.746876389591954 ], [ 141.540204711023023, 38.739766146178418 ], [ 141.560718678086062, 38.738389970033865 ], [ 141.566846226689307, 38.725775022042107 ], [ 141.55858735683276, 38.714765612885664 ], [ 141.541536786806319, 38.708114094853649 ], [ 141.529281689599827, 38.717059239793258 ], [ 141.511165458946778, 38.685865913850009 ], [ 141.491983567667035, 38.686324639231529 ], [ 141.495180549547001, 38.674397779312045 ], [ 141.475199412797281, 38.679673121199514 ], [ 141.46800620356737, 38.672562877785978 ], [ 141.450156388070951, 38.673939053930532 ], [ 141.449889972914292, 38.658113028268147 ], [ 141.441631103057745, 38.646415531039423 ], [ 141.458148842770839, 38.639993375698168 ], [ 141.465608467157409, 38.647791707183984 ], [ 141.486122434220448, 38.641598914533482 ], [ 141.497311870800303, 38.644121904131836 ], [ 141.505837155813509, 38.637241023409061 ], [ 141.530347350226492, 38.635635484573747 ], [ 141.525019047093224, 38.609488137827199 ], [ 141.506103570970168, 38.601689806341383 ], [ 141.504771495186844, 38.595038288309368 ], [ 141.487720925160431, 38.583340791080644 ], [ 141.475732243110599, 38.585405055297485 ], [ 141.463743561060767, 38.580359076100777 ], [ 141.456283936674197, 38.562010060840045 ], [ 141.458415257927498, 38.540220605217918 ], [ 141.478662809833878, 38.561092610077004 ], [ 141.48798734031709, 38.553982366663476 ], [ 141.486388849377107, 38.540908693290199 ], [ 141.492249982823694, 38.534257175258183 ], [ 141.517026592393336, 38.541138055980959 ], [ 141.533011501793112, 38.549165750157528 ], [ 141.545000183842944, 38.520954139194146 ], [ 141.536474898829738, 38.508109828511635 ], [ 141.537007729143056, 38.491136989395457 ], [ 141.515960931766699, 38.492054440158491 ], [ 141.512231119573414, 38.513155807708337 ], [ 141.493315643450359, 38.511779631563783 ], [ 141.486921679690454, 38.501917035861133 ], [ 141.498643946583599, 38.479210129475973 ], [ 141.489053000943727, 38.46888880839181 ], [ 141.496779040486956, 38.449622342368038 ], [ 141.484257528123806, 38.43677803168552 ], [ 141.450689218384298, 38.444347000480576 ], [ 141.475199412797281, 38.419575829878582 ], [ 141.466674127784074, 38.400080001164056 ], [ 141.479994885617202, 38.398015736947222 ], [ 141.493049228293671, 38.411318773011253 ], [ 141.507702061910152, 38.397327648874942 ], [ 141.538872635239699, 38.400080001164056 ], [ 141.540737541336341, 38.388611866626093 ], [ 141.509034137693448, 38.390446768152167 ], [ 141.506636401283487, 38.383565887429391 ], [ 141.484523943280465, 38.37920799630497 ], [ 141.490385076727051, 38.367051773694726 ], [ 141.507169231596833, 38.370721576746874 ], [ 141.519957159116643, 38.366134322931693 ], [ 141.522887725839922, 38.350996385341588 ], [ 141.534343577576436, 38.339528250803625 ], [ 141.532745086636453, 38.318656245944538 ], [ 141.541803201963006, 38.312692815984803 ], [ 141.539938295866364, 38.303059582972914 ], [ 141.526617538033207, 38.295490614177865 ], [ 141.522354895526604, 38.271178168957391 ], [ 141.512231119573414, 38.275306697391052 ], [ 141.506369986126828, 38.297096153013179 ], [ 141.490917907040398, 38.308564287551135 ], [ 141.466674127784074, 38.305582572571268 ], [ 141.450955633540957, 38.317509432490745 ], [ 141.466674127784074, 38.322096686305926 ], [ 141.463477145904108, 38.335629085060717 ], [ 141.446426575877695, 38.353290012249175 ], [ 141.436835630237823, 38.341592515020459 ], [ 141.421117135994706, 38.34732658228944 ], [ 141.429376005851253, 38.364528784096379 ], [ 141.442430348527751, 38.36957476329308 ], [ 141.437368460551141, 38.381501623212557 ], [ 141.423514872404667, 38.383336524738631 ], [ 141.423514872404667, 38.394804659276595 ], [ 141.410993360041516, 38.395263384658108 ], [ 141.385950335315215, 38.384024612810911 ], [ 141.368633350132114, 38.384712700883185 ], [ 141.367034859192131, 38.41063068493898 ], [ 141.372895992638718, 38.416135389517194 ], [ 141.399004677991684, 38.412694949155807 ], [ 141.41232543582484, 38.418429016424788 ], [ 141.423514872404667, 38.433566954014893 ], [ 141.388081656568517, 38.43677803168552 ], [ 141.379023541241963, 38.421181368713903 ], [ 141.365702783408835, 38.411318773011253 ], [ 141.358243159022265, 38.413612399918847 ], [ 141.31455107332954, 38.411089410320493 ], [ 141.301496730653071, 38.416135389517194 ], [ 141.266063514816892, 38.407648969959105 ], [ 141.25620615402039, 38.407648969959105 ], [ 141.22130576849753, 38.397786374256462 ], [ 141.166957076538296, 38.371868390200675 ], [ 141.158964621838436, 38.364528784096379 ], [ 141.169088397791597, 38.340904426948185 ], [ 141.154968394488492, 38.321867323615166 ], [ 141.139249900245375, 38.326454577430354 ], [ 141.131523860702146, 38.338610800040591 ], [ 141.149107261041905, 38.342280603092739 ], [ 141.132056691015464, 38.360400255662711 ], [ 141.133921597112106, 38.376226281325096 ], [ 141.113141214892408, 38.382877799357118 ], [ 141.098221966119297, 38.377831820160409 ], [ 141.087565359852761, 38.381272260521797 ], [ 141.061723089656454, 38.368886675220807 ], [ 141.062522335126459, 38.354436825702976 ], [ 141.037212895243471, 38.339298888112864 ], [ 141.051599313703264, 38.332647370080849 ], [ 141.045471765100018, 38.317738795181505 ], [ 141.053464219799906, 38.313610266747837 ], [ 141.066252147319744, 38.322326048996686 ], [ 141.077175168742912, 38.318885608635298 ], [ 141.081171396092856, 38.306500023334301 ], [ 141.089696681106062, 38.30191276951912 ], [ 141.065452901849739, 38.289297821527363 ], [ 141.057993277463197, 38.280352676587754 ], [ 141.040676292280097, 38.272324982411185 ], [ 141.028687610230264, 38.275765422772572 ], [ 141.00710798254056, 38.242966557994009 ], [ 140.995119300490728, 38.230810335383772 ], [ 140.969809860607768, 38.194800392934575 ], [ 140.959419669497919, 38.169341134260307 ], [ 140.948496648074752, 38.152597657834889 ], [ 140.933044568988294, 38.110165560044436 ], [ 140.925318529445065, 38.078513508719666 ], [ 140.92158871725178, 38.03539332285694 ], [ 140.918391735371841, 38.027824354061885 ], [ 140.914395508021897, 37.98997951008662 ], [ 140.915993998961852, 37.95786873338033 ], [ 140.922387962721757, 37.914060459445324 ], [ 140.93144607804831, 37.891812278441684 ], [ 140.905603807852003, 37.894335268040038 ], [ 140.896279277368819, 37.899151884545979 ], [ 140.859513985749345, 37.888142475389536 ], [ 140.859513985749345, 37.869564097438044 ], [ 140.864309458569267, 37.860160227116914 ], [ 140.859247570592657, 37.850985719486545 ], [ 140.857915494809362, 37.821627295069369 ], [ 140.8611124766893, 37.800755290210283 ], [ 140.854185682616077, 37.792039507961434 ], [ 140.811026427236698, 37.794333134869028 ], [ 140.788913969233676, 37.800296564828763 ], [ 140.773994720460536, 37.794562497559788 ], [ 140.7979720845602, 37.778965834588163 ], [ 140.790246045016971, 37.772314316556148 ], [ 140.779323023593804, 37.778507109206643 ], [ 140.750017356360871, 37.784470539166378 ], [ 140.728704143827855, 37.783094363021824 ], [ 140.713252064741397, 37.798232300611929 ], [ 140.696734325028302, 37.803278279808637 ], [ 140.68954111579842, 37.811535336675966 ], [ 140.682614321725168, 37.833324792298086 ], [ 140.694336588618341, 37.850526994105024 ], [ 140.686077718761794, 37.870940273582598 ], [ 140.691938852208381, 37.879197330449927 ], [ 140.685544888448476, 37.887454387317263 ], [ 140.663432430445454, 37.897775708401426 ], [ 140.629864120705918, 37.896170169566105 ], [ 140.621871666006029, 37.909243842939382 ], [ 140.60162411409965, 37.904656589124201 ], [ 140.590701092676483, 37.906262127959515 ], [ 140.573117692336723, 37.917271537115951 ], [ 140.563526746696851, 37.907638304104069 ], [ 140.541414288693829, 37.902133599525847 ], [ 140.520633906474131, 37.904656589124201 ], [ 140.499853524254434, 37.897087620329145 ], [ 140.487598427047942, 37.898463796473699 ], [ 140.472945593431461, 37.915207272899124 ], [ 140.468949366081517, 37.942272070408706 ], [ 140.44790256870516, 37.953969567637422 ], [ 140.436713132125334, 37.950758489966795 ], [ 140.414867089278971, 37.960162360287924 ], [ 140.411137277085686, 37.970024955990567 ], [ 140.400480670819178, 37.970713044062848 ], [ 140.390090479709329, 37.963144075267792 ], [ 140.389291234239323, 37.952364028802108 ], [ 140.359985567006419, 37.954887018400463 ], [ 140.353858018403173, 37.947088686914647 ], [ 140.321621784446961, 37.955116381091223 ], [ 140.303505553793883, 37.966584515629179 ], [ 140.283258001887503, 37.973694759042715 ], [ 140.279261774537559, 37.984016080126878 ], [ 140.292049702057369, 38.004658722295204 ], [ 140.2789953593809, 38.032870333258586 ], [ 140.285655738297464, 38.043650379724269 ], [ 140.280327435164196, 38.053054250045392 ], [ 140.345599148546626, 38.051678073900838 ], [ 140.36744519139296, 38.053512975426912 ], [ 140.382897270479418, 38.058788317314374 ], [ 140.41779765600225, 38.075761156430559 ], [ 140.424458034918814, 38.085623752133202 ], [ 140.422326713665541, 38.095715710526605 ], [ 140.427122186485462, 38.116587715385691 ], [ 140.448168983861819, 38.128285212614415 ], [ 140.449234644488484, 38.140670797915405 ], [ 140.468682950924858, 38.153285745907162 ], [ 140.483602199697998, 38.17989181803523 ], [ 140.474277669214786, 38.210397055906199 ], [ 140.477474651094752, 38.220489014299602 ], [ 140.471613517648166, 38.228975433857698 ], [ 140.47560974499811, 38.259939397110188 ], [ 140.479872387504713, 38.26980199281283 ], [ 140.500386354567752, 38.280352676587754 ], [ 140.495857296904489, 38.290903360362677 ], [ 140.506247488014338, 38.302830220282154 ], [ 140.527294285390695, 38.313610266747837 ], [ 140.533421833993941, 38.322784774378206 ], [ 140.525162964137394, 38.34663849421716 ], [ 140.53102409758398, 38.35581300184753 ], [ 140.550472404020383, 38.364070058714859 ], [ 140.565391652793494, 38.374391379799022 ], [ 140.580577316723293, 38.392281669678241 ], [ 140.576581089373349, 38.402373628071643 ], [ 140.584839959229896, 38.429438425581232 ], [ 140.595496565496404, 38.435860580922487 ], [ 140.600292038316326, 38.434025679396413 ], [ 140.623203741789354, 38.452374694657152 ], [ 140.61174789005284, 38.4560444977093 ], [ 140.61174789005284, 38.466136456102703 ], [ 140.60162411409965, 38.484256108672682 ], [ 140.579511656096628, 38.491136989395457 ], [ 140.57125278624008, 38.499852771644299 ], [ 140.572318446866745, 38.520036688431112 ], [ 140.557932028406924, 38.536092076784257 ], [ 140.567522974046796, 38.542514232125512 ], [ 140.576847504530008, 38.562010060840045 ], [ 140.575515428746684, 38.583340791080644 ], [ 140.565658067950153, 38.601919169032143 ], [ 140.545676931200433, 38.626460976943378 ], [ 140.549939573707036, 38.646644893730183 ], [ 140.566457313420159, 38.644809992204117 ], [ 140.572851277180064, 38.635176759192227 ], [ 140.593898074556421, 38.631277593449319 ], [ 140.603222605039633, 38.63632357264602 ], [ 140.620273175066046, 38.66797562397079 ], [ 140.625068647885996, 38.697334048387965 ], [ 140.61441204161946, 38.698939587223279 ], [ 140.6141456264628, 38.720729042845406 ], [ 140.634926008682498, 38.749858104571821 ], [ 140.648513181672314, 38.764537316780412 ], [ 140.642385633069068, 38.773711824410782 ], [ 140.625068647885996, 38.772794373647741 ], [ 140.606419586919571, 38.782198243968871 ], [ 140.600292038316326, 38.805134513044791 ], [ 140.602689774726315, 38.815685196819715 ], [ 140.589635432049818, 38.833575486698926 ], [ 140.56885504983012, 38.84504362123689 ], [ 140.543012779633813, 38.864768812642176 ], [ 140.554468631370327, 38.878759936778486 ], [ 140.568055804360142, 38.871649693364958 ], [ 140.610415814269516, 38.883576553284428 ], [ 140.618141853812745, 38.891145522079483 ], [ 140.635458838995845, 38.884494004047468 ], [ 140.657571296998867, 38.886099542882782 ], [ 140.675154697338598, 38.895732775894672 ], [ 140.687942624858437, 38.913852428464644 ], [ 140.718580367874665, 38.924173749548807 ], [ 140.730569049924497, 38.941375951355752 ], [ 140.759341886844084, 38.955137712801303 ], [ 140.776658872027156, 38.955137712801303 ], [ 140.814756239429954, 38.961559868142558 ], [ 140.83553662164968, 38.956513888945857 ], [ 140.843529076349569, 38.948486194769281 ], [ 140.865375119195903, 38.938623599066638 ], [ 140.886688331728948, 38.924632474930327 ], [ 140.908267959418652, 38.92577928838412 ], [ 140.916526829275199, 38.919815858424386 ], [ 140.959686084654578, 38.905595371597315 ], [ 140.968477784824444, 38.898485128183779 ], [ 140.987659676104187, 38.873255232200265 ], [ 141.019096664590393, 38.88059483830456 ], [ 141.038544971026795, 38.874631408344825 ], [ 141.068916298886364, 38.879677387541527 ], [ 141.079306489996213, 38.877154397943173 ], [ 141.099554041902593, 38.883117827902915 ], [ 141.107546496602481, 38.876925035252412 ], [ 141.136319333522067, 38.875319496417099 ], [ 141.149373676198564, 38.865915626095976 ], [ 141.149107261041905, 38.855135579630293 ], [ 141.133921597112106, 38.839768279349428 ], [ 141.119002348338995, 38.833346124008166 ], [ 141.135253672895431, 38.809721766859973 ], [ 141.144311788221955, 38.801694072683404 ], [ 141.14297971243866, 38.78999657545468 ], [ 141.150439336825201, 38.781968881278111 ], [ 141.175215946394871, 38.775776088627609 ], [ 141.184274061721396, 38.780822067824317 ], [ 141.204255198471117, 38.76820711983256 ], [ 141.215444635050943, 38.749858104571821 ], [ 141.232761620234044, 38.749858104571821 ], [ 141.259136720743669, 38.757197710676117 ], [ 141.259403135900328, 38.76728966906952 ], [ 141.267928420913535, 38.784950596257978 ], [ 141.290307294073216, 38.794125103888348 ], [ 141.300697485183093, 38.7904553008362 ], [ 141.313485412702903, 38.819354999871855 ], [ 141.344389570875791, 38.805363875735551 ], [ 141.353980516515662, 38.809263041478452 ], [ 141.375027313892019, 38.80352897420947 ], [ 141.382486938278589, 38.792978290434547 ], [ 141.418719399584745, 38.778299078225963 ], [ 141.43790129086446, 38.779675254370517 ], [ 141.438167706021119, 38.808116228024659 ], [ 141.460013748867482, 38.81270348183984 ], [ 141.454152615420895, 38.83586911360652 ], [ 141.463477145904108, 38.856511755774847 ], [ 141.455484691204219, 38.86683307685901 ], [ 141.458415257927498, 38.876695672561652 ], [ 141.469338279350694, 38.882429739830634 ], [ 141.474400167327275, 38.892521698224044 ], [ 141.492782813137012, 38.904448558143514 ], [ 141.490118661570392, 38.927384827219441 ], [ 141.494381304076995, 38.948715557460041 ], [ 141.487188094847113, 38.975092266897349 ], [ 141.499443192053604, 38.995734909065675 ], [ 141.511698289260096, 38.999175349427063 ], [ 141.530347350226492, 38.98954211641518 ], [ 141.550594902132872, 38.993211919467328 ], [ 141.572707360135894, 38.990688929868973 ], [ 141.632117940071709, 38.971193101154441 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1481, "NAME_1": "Miyazaki", "VARNAME_1": "", "HASC_1": "JP.MZ", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.819514889864081, 32.671288074071704 ], [ 131.832569232540578, 32.663719105276648 ], [ 131.827773759720657, 32.656150136481592 ], [ 131.812854510947517, 32.657296949935393 ], [ 131.806194132030953, 32.665783369493482 ], [ 131.819514889864081, 32.671288074071704 ] ] ], [ [ [ 131.877326978859941, 32.738491342464144 ], [ 131.86214131493017, 32.734592176721236 ], [ 131.851751123820293, 32.722435954111006 ], [ 131.846156405530394, 32.708444829974695 ], [ 131.85734584211022, 32.697206058127492 ], [ 131.835766214420516, 32.693536255075344 ], [ 131.826974514250651, 32.705921840376341 ], [ 131.818182814080785, 32.703398850777987 ], [ 131.818982059550763, 32.690783902786237 ], [ 131.793139789354456, 32.677251504031439 ], [ 131.777954125424685, 32.674499151742332 ], [ 131.763034876651574, 32.654315234955519 ], [ 131.773425067761423, 32.634131318168713 ], [ 131.760637140241585, 32.621057644795442 ], [ 131.764899782748216, 32.615552940217221 ], [ 131.742520909588507, 32.59215794575978 ], [ 131.718277130332183, 32.589176230779913 ], [ 131.709219015005658, 32.594910298048887 ], [ 131.696431087485848, 32.59238730845054 ], [ 131.70122656030577, 32.579542997768023 ], [ 131.680712593242731, 32.542156879174279 ], [ 131.688705047942619, 32.51440399359241 ], [ 131.712948827198943, 32.516697620500004 ], [ 131.712149581728937, 32.505000123271287 ], [ 131.727068830502077, 32.499724781383826 ], [ 131.729200151755379, 32.49261453797029 ], [ 131.695898257172502, 32.46921954351285 ], [ 131.683110329652692, 32.47036635696665 ], [ 131.660198626179692, 32.4829813049584 ], [ 131.650607680539821, 32.457522046284133 ], [ 131.657534474613044, 32.445136460983136 ], [ 131.680446178086072, 32.440778569858715 ], [ 131.679114102302748, 32.429769160702271 ], [ 131.685774481219312, 32.418071663473555 ], [ 131.667125420252916, 32.410502694678499 ], [ 131.642082395526614, 32.407520979698631 ], [ 131.63089295894676, 32.380456182189043 ], [ 131.636754092393346, 32.377015741827655 ], [ 131.622101258776894, 32.356143736968569 ], [ 131.629827298320123, 32.34719859202896 ], [ 131.626630316440156, 32.339170897852391 ], [ 131.61064540704038, 32.333666193274169 ], [ 131.594127667327285, 32.310729924198249 ], [ 131.576544266987526, 32.267609738335523 ], [ 131.577343512457531, 32.24857263500251 ], [ 131.55496463929785, 32.197654117653968 ], [ 131.553366148357867, 32.178158288939436 ], [ 131.539512560211392, 32.144441973397832 ], [ 131.536315578331454, 32.121964429703439 ], [ 131.526191802378264, 32.1036154144427 ], [ 131.51473595064175, 32.074715715407038 ], [ 131.500882362495275, 32.047650917897457 ], [ 131.502480853435259, 32.038247047576334 ], [ 131.472642355889008, 31.949254323561764 ], [ 131.46704763759908, 31.923106976815216 ], [ 131.457723107115896, 31.909574578060422 ], [ 131.466514807285762, 31.90452859886372 ], [ 131.455591785862595, 31.894207277779557 ], [ 131.451595558512651, 31.841683221595702 ], [ 131.453993294922611, 31.815765237539914 ], [ 131.481700471215561, 31.785948087741218 ], [ 131.488360850132125, 31.785489362359701 ], [ 131.467846883069086, 31.749020694528987 ], [ 131.472109525575689, 31.740304912280138 ], [ 131.462784995092477, 31.733653394248122 ], [ 131.467314052755739, 31.721038446256365 ], [ 131.455325370705935, 31.697872814489688 ], [ 131.467314052755739, 31.686175317260968 ], [ 131.451062728199304, 31.680899975373507 ], [ 131.462252164779159, 31.667826302000236 ], [ 131.462518579935818, 31.652917727100885 ], [ 131.456124616175913, 31.640532141799891 ], [ 131.463317825405795, 31.632733810314079 ], [ 131.455858201019254, 31.623100577302193 ], [ 131.417494418459796, 31.603375385896904 ], [ 131.409768378916567, 31.585026370636164 ], [ 131.399111772650059, 31.576081225696559 ], [ 131.393517054360132, 31.557044122363543 ], [ 131.378064975273674, 31.557273485054303 ], [ 131.376999314647037, 31.5471815266609 ], [ 131.388455166383551, 31.540759371319641 ], [ 131.380462711683663, 31.526538884492574 ], [ 131.386590260286908, 31.522410356058906 ], [ 131.37380233276707, 31.506813693087281 ], [ 131.385258184503584, 31.502914527344373 ], [ 131.386057429973562, 31.48135443441301 ], [ 131.361813650717238, 31.47011566256581 ], [ 131.364477802283886, 31.455207087666462 ], [ 131.371671011513769, 31.448096844252927 ], [ 131.371671011513769, 31.428601015538398 ], [ 131.364477802283886, 31.419885233289548 ], [ 131.341566098810858, 31.409563912205385 ], [ 131.332241568327674, 31.396719601522868 ], [ 131.335172135050954, 31.381352301242003 ], [ 131.350624214137412, 31.37103098015784 ], [ 131.335438550207613, 31.360021571001397 ], [ 131.315990243771239, 31.371948430920877 ], [ 131.309063449697987, 31.390297446181613 ], [ 131.297074767648155, 31.384563378912631 ], [ 131.262707212438642, 31.378829311643653 ], [ 131.245923057568888, 31.385710192366428 ], [ 131.235799281615698, 31.405435383771717 ], [ 131.241660415062285, 31.427683564775361 ], [ 131.225941920819167, 31.431582730518265 ], [ 131.205960784069447, 31.453142823449632 ], [ 131.18224983512647, 31.457041989192536 ], [ 131.174523795583241, 31.449473020397484 ], [ 131.164932849943369, 31.457730077264813 ], [ 131.165199265100028, 31.480207620959213 ], [ 131.178253607776526, 31.499932812364506 ], [ 131.199300405152883, 31.508189869231835 ], [ 131.202497387032849, 31.517823102243725 ], [ 131.199833235466201, 31.540759371319641 ], [ 131.192906441392978, 31.554291770074435 ], [ 131.206227199226106, 31.570576521118337 ], [ 131.199833235466201, 31.591448525977423 ], [ 131.190508704983017, 31.599017494772475 ], [ 131.190242289826358, 31.621036313085359 ], [ 131.166264925726693, 31.633651261077116 ], [ 131.134295106927141, 31.623559302683709 ], [ 131.117777367214046, 31.628834644571171 ], [ 131.08154490590789, 31.656587530153033 ], [ 131.056235466024901, 31.631357634169522 ], [ 131.045578859758393, 31.652229639028612 ], [ 131.036520744431868, 31.658881157060627 ], [ 131.028261874575321, 31.673560369269214 ], [ 131.028794704888639, 31.695120462200578 ], [ 131.020269419875433, 31.702689430995633 ], [ 131.020269419875433, 31.741681088424695 ], [ 131.000021867969053, 31.742598539187732 ], [ 130.980040731219333, 31.749938145292028 ], [ 130.992828658739143, 31.766910984408206 ], [ 130.989365261702517, 31.776544217420092 ], [ 130.934483739429965, 31.78204892199831 ], [ 130.919564490656853, 31.797645584969938 ], [ 130.886529011230635, 31.802003476094363 ], [ 130.881467123254055, 31.811407346415489 ], [ 130.878003726217429, 31.840307045451148 ], [ 130.888127502170619, 31.843518123121775 ], [ 130.899050523593814, 31.887326397056782 ], [ 130.883065614194038, 31.918290360309271 ], [ 130.856690513684413, 31.934804474043936 ], [ 130.813797673461693, 31.941226629385191 ], [ 130.801542576255173, 31.949942411634041 ], [ 130.793017291241966, 31.971273141874647 ], [ 130.785024836542078, 31.978612747978939 ], [ 130.780495778878816, 32.011182250066746 ], [ 130.749858035862587, 32.031366166853552 ], [ 130.738668599282732, 32.045357290989863 ], [ 130.714691235183096, 32.048339005969737 ], [ 130.705633119856543, 32.055219886692512 ], [ 130.708563686579851, 32.076550616933119 ], [ 130.71868746253304, 32.083202134965134 ], [ 130.730143314269526, 32.098569435245999 ], [ 130.740000675066057, 32.10292732637042 ], [ 130.767441436202347, 32.097193259101445 ], [ 130.811133521895044, 32.095587720266124 ], [ 130.821790128161581, 32.091459191832463 ], [ 130.839107113344653, 32.10315668906118 ], [ 130.860420325877698, 32.096505171029165 ], [ 130.880667877784077, 32.117835901269771 ], [ 130.911305620800306, 32.127239771590894 ], [ 130.93528298489997, 32.11256055938231 ], [ 130.954464876179685, 32.112101834000789 ], [ 130.974446012929405, 32.117606538579011 ], [ 130.981372807002629, 32.136873004602784 ], [ 130.991230167799159, 32.142148346490245 ], [ 131.010145643922243, 32.168754418618313 ], [ 131.039717726311807, 32.166690154401479 ], [ 131.056501881181561, 32.154304569100482 ], [ 131.078880754341242, 32.154763294482002 ], [ 131.101526042657611, 32.151552216811368 ], [ 131.111116988297454, 32.15797437215263 ], [ 131.105788685164214, 32.166690154401479 ], [ 131.106587930634191, 32.188020884642086 ], [ 131.102591703284247, 32.197195392272448 ], [ 131.082344151377868, 32.210039702954965 ], [ 131.073019620894684, 32.230682345123292 ], [ 131.065826411664773, 32.238251313918347 ], [ 131.049042256795019, 32.240544940825941 ], [ 131.04398036881841, 32.255224153034526 ], [ 131.053837729614941, 32.261187582994268 ], [ 131.053837729614941, 32.280683411708793 ], [ 131.073019620894684, 32.276784245965892 ], [ 131.082610566534527, 32.281830225162594 ], [ 131.103657363910912, 32.308436297290662 ], [ 131.11431397017742, 32.326097224479113 ], [ 131.096197739524342, 32.3469692293382 ], [ 131.075683772461304, 32.355455648896296 ], [ 131.077815093714605, 32.375639565683102 ], [ 131.072486790581337, 32.396052845160668 ], [ 131.066092826821432, 32.404768627409524 ], [ 131.043713953661751, 32.408667793152425 ], [ 131.022400741128735, 32.4380262175696 ], [ 131.01867092893545, 32.44788881327225 ], [ 131.016273192525489, 32.476559149617145 ], [ 131.009346398452237, 32.486651108010548 ], [ 131.011477719705539, 32.511422278612542 ], [ 131.026396968478679, 32.525642765439613 ], [ 131.021867910815388, 32.545826682226419 ], [ 131.042381877878427, 32.553166288330715 ], [ 131.044513199131757, 32.574267655880561 ], [ 131.056768296338248, 32.584359614273964 ], [ 131.093267172801063, 32.575414469334362 ], [ 131.116711706587381, 32.590093681542946 ], [ 131.123105670347286, 32.601791178771663 ], [ 131.118310197527364, 32.612112499855826 ], [ 131.124970576443928, 32.640782836200728 ], [ 131.147615864760269, 32.673581700979298 ], [ 131.165465680256688, 32.668306359091829 ], [ 131.17745436230652, 32.673581700979298 ], [ 131.179585683559822, 32.693765617766104 ], [ 131.187844553416369, 32.71349080917139 ], [ 131.198501159682905, 32.723124042183279 ], [ 131.218482296432626, 32.727940658689221 ], [ 131.237131357399022, 32.741243694753251 ], [ 131.246455887882206, 32.760280798086271 ], [ 131.238729848339005, 32.779776626800796 ], [ 131.248054378822189, 32.786428144832819 ], [ 131.267236270101932, 32.822438087282009 ], [ 131.287483822008312, 32.827713429169471 ], [ 131.311461186107948, 32.824731714189603 ], [ 131.33090949254435, 32.829318968004785 ], [ 131.341566098810858, 32.830236418767825 ], [ 131.355419686957333, 32.80454779740279 ], [ 131.374867993393735, 32.80408907202127 ], [ 131.418293663929774, 32.809823139290252 ], [ 131.432946497546254, 32.814869118486953 ], [ 131.438541215836153, 32.824043626117323 ], [ 131.460920088995834, 32.826566615715677 ], [ 131.477437828708929, 32.834135584510726 ], [ 131.491557832012063, 32.816245294631514 ], [ 131.519797838618331, 32.797437553989255 ], [ 131.510739723291806, 32.777024274511689 ], [ 131.52006425377499, 32.764409326519932 ], [ 131.541377466308035, 32.755234818889562 ], [ 131.565887660721017, 32.751794378528174 ], [ 131.577077097300872, 32.755005456198809 ], [ 131.592262761230643, 32.770602119170434 ], [ 131.625031825500173, 32.771060844551954 ], [ 131.67112164760286, 32.763262513066138 ], [ 131.705755617969032, 32.769684668407393 ], [ 131.717744300018865, 32.777253637202449 ], [ 131.720674866742172, 32.787345595595852 ], [ 131.730532227538674, 32.794226476318627 ], [ 131.737991851925244, 32.826337253024917 ], [ 131.761969216024909, 32.833218133747692 ], [ 131.789676392317858, 32.830465781458585 ], [ 131.799533753114389, 32.820373823065175 ], [ 131.818715644394103, 32.824272988808083 ], [ 131.850152632880338, 32.81441039310544 ], [ 131.861874899773483, 32.805694610856591 ], [ 131.846689235843712, 32.772895746078021 ], [ 131.851484708663634, 32.751335653146661 ], [ 131.848554141940355, 32.738950067845664 ], [ 131.857612257266879, 32.733445363267442 ], [ 131.877326978859941, 32.738491342464144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1482, "NAME_1": "Nagano", "VARNAME_1": "", "HASC_1": "JP.NN", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.69782140458662, 36.741099658902812 ], [ 138.675708946583597, 36.727567260148021 ], [ 138.625090066817648, 36.716787213682338 ], [ 138.619228933371062, 36.707612706051975 ], [ 138.592054587391459, 36.703713540309067 ], [ 138.547829671385415, 36.7007318253292 ], [ 138.5286477801057, 36.692474768461864 ], [ 138.52118815571913, 36.673667027819612 ], [ 138.534508913552287, 36.656923551394186 ], [ 138.528114949792354, 36.648207769145344 ], [ 138.490017582389584, 36.638803898824214 ], [ 138.479360976123047, 36.641556251113329 ], [ 138.461244745469969, 36.628711940430811 ], [ 138.455117196866723, 36.608986749025519 ], [ 138.444727005756874, 36.607610572880965 ], [ 138.441530023876936, 36.596601163724522 ], [ 138.4308734176104, 36.593390086053894 ], [ 138.423946623537176, 36.570453816977974 ], [ 138.431939078237065, 36.563802298945959 ], [ 138.431672663080406, 36.552563527098755 ], [ 138.415687753680629, 36.538343040271684 ], [ 138.401034920064177, 36.484672170634035 ], [ 138.406363223197417, 36.463341440393435 ], [ 138.404231901944115, 36.431689389068666 ], [ 138.451120969516779, 36.416780814169314 ], [ 138.467638709229902, 36.40118415119769 ], [ 138.489484752076237, 36.398431798908582 ], [ 138.499874943186114, 36.41104674690034 ], [ 138.533709668082281, 36.399578612362376 ], [ 138.544632689505477, 36.400725425816177 ], [ 138.567011562665158, 36.417010176860074 ], [ 138.602711193657967, 36.420909342602982 ], [ 138.625090066817648, 36.413111011117167 ], [ 138.64480478841071, 36.41104674690034 ], [ 138.653862903737263, 36.393844545093394 ], [ 138.654129318893922, 36.372743177543555 ], [ 138.659191206870503, 36.363798032603938 ], [ 138.653330073423916, 36.343155390435612 ], [ 138.655194979520559, 36.323659561721087 ], [ 138.650932337013955, 36.312420789873883 ], [ 138.655994224990565, 36.303016919552761 ], [ 138.646669694507352, 36.290631334251756 ], [ 138.603510439127973, 36.275264033970892 ], [ 138.60697383616457, 36.250034137987384 ], [ 138.625090066817648, 36.2117305686306 ], [ 138.636812333710822, 36.211271843249079 ], [ 138.628819879010933, 36.196821993731248 ], [ 138.634947427614179, 36.178014253088996 ], [ 138.612568554454498, 36.158289061683703 ], [ 138.58912402066818, 36.171821460438494 ], [ 138.581131565968292, 36.164940579715719 ], [ 138.593653078331442, 36.152325631723969 ], [ 138.603244023971314, 36.133517891081709 ], [ 138.625090066817648, 36.128930637266528 ], [ 138.636013088240844, 36.130306813411082 ], [ 138.650399506700637, 36.10255392782922 ], [ 138.633615351830883, 36.088333441002149 ], [ 138.646136864194034, 36.064250358472435 ], [ 138.640275730747447, 36.03512129674602 ], [ 138.653063658267257, 36.015625468031487 ], [ 138.683967816440145, 36.007597773854918 ], [ 138.690361780200078, 35.990624934738733 ], [ 138.702084047093223, 35.986267043614312 ], [ 138.72046669290296, 35.98993684666646 ], [ 138.715404804926379, 35.970670380642687 ], [ 138.739382169026044, 35.938100878554877 ], [ 138.742046320592664, 35.927779557470714 ], [ 138.731656129482815, 35.905990101848595 ], [ 138.711142162419776, 35.906678189920868 ], [ 138.686631968006793, 35.885118096989508 ], [ 138.674110455643643, 35.86768653249181 ], [ 138.658658376557185, 35.872503148997751 ], [ 138.636279503397503, 35.867227807110289 ], [ 138.613900630237822, 35.870438884780917 ], [ 138.608039496791235, 35.89039343887697 ], [ 138.61203572414118, 35.899797309198092 ], [ 138.597649305681387, 35.914247158715924 ], [ 138.579799490184968, 35.908283728756189 ], [ 138.569675714231778, 35.91310034526213 ], [ 138.536906649962248, 35.912182894499097 ], [ 138.508400228199321, 35.915393972169724 ], [ 138.497210791619466, 35.898421133053539 ], [ 138.472700597206483, 35.894751330001398 ], [ 138.454051536240087, 35.904843288394801 ], [ 138.4481904027935, 35.916770148314278 ], [ 138.456715687806707, 35.936724702410324 ], [ 138.429807756983763, 35.954614992289542 ], [ 138.376258310494507, 35.968376753735093 ], [ 138.364536043601362, 35.95805543265093 ], [ 138.362937552661379, 35.947734111566767 ], [ 138.353879437334825, 35.943146857751586 ], [ 138.345886982634937, 35.923651029037053 ], [ 138.329902073235189, 35.901632210724173 ], [ 138.286742817855782, 35.856447760644606 ], [ 138.249977526236307, 35.882136382009634 ], [ 138.240120165439777, 35.877090402812939 ], [ 138.215343555870135, 35.833282128877926 ], [ 138.207084686013587, 35.822043357030729 ], [ 138.206551855700269, 35.810804585183533 ], [ 138.190833361457152, 35.795896010284181 ], [ 138.191899022083788, 35.784886601127738 ], [ 138.235324692619855, 35.760344793216504 ], [ 138.232660541053207, 35.750023472132341 ], [ 138.184705812853906, 35.71447225506467 ], [ 138.195628834277073, 35.695664514422418 ], [ 138.195628834277073, 35.675480597635605 ], [ 138.22173751963004, 35.641305556712489 ], [ 138.206019025386922, 35.62295654145175 ], [ 138.206818270856928, 35.602313899283423 ], [ 138.191899022083788, 35.573414200247768 ], [ 138.17404920658737, 35.579148267516743 ], [ 138.154867315307655, 35.567680132978786 ], [ 138.145276369667783, 35.552312832697922 ], [ 138.156465806247638, 35.550248568481088 ], [ 138.162326939694225, 35.541532786232239 ], [ 138.141280142317839, 35.518137791774798 ], [ 138.149272597017728, 35.510110097598229 ], [ 138.142878633257823, 35.499559413823306 ], [ 138.163126185164202, 35.485338926996235 ], [ 138.162859770007543, 35.464008196755628 ], [ 138.15593297593432, 35.455751139888299 ], [ 138.135152593714594, 35.450475798000838 ], [ 138.125028817761404, 35.453228150289945 ], [ 138.125028817761404, 35.425245902017323 ], [ 138.141812972631186, 35.416759482459234 ], [ 138.141546557474499, 35.403227083704444 ], [ 138.151936748584376, 35.397722379126222 ], [ 138.154068069837678, 35.386712969969778 ], [ 138.145009954511124, 35.367675866636773 ], [ 138.125028817761404, 35.364006063584625 ], [ 138.099719377878444, 35.350932390211348 ], [ 138.098920132408438, 35.339922981054904 ], [ 138.090394847395231, 35.334647639167443 ], [ 138.071479371272176, 35.343822146797812 ], [ 138.05522804671574, 35.333271463022889 ], [ 138.04510427076255, 35.331665924187575 ], [ 138.028852946206115, 35.316757349288231 ], [ 138.029652191676092, 35.306436028204061 ], [ 138.021926152132863, 35.297949608645979 ], [ 138.000080109286529, 35.299325784790526 ], [ 137.984628030200071, 35.289233826397123 ], [ 137.945198587013948, 35.272719712662465 ], [ 137.934808395904099, 35.272719712662465 ], [ 137.92441820479425, 35.254829422783246 ], [ 137.914028013684401, 35.250471531658818 ], [ 137.898309519441284, 35.254600060092486 ], [ 137.886054422234793, 35.243590650936042 ], [ 137.887919328331435, 35.232810604470366 ], [ 137.874864985654966, 35.21560840266342 ], [ 137.863142718761793, 35.219507568406328 ], [ 137.840231015288794, 35.212626687683553 ], [ 137.820782708852391, 35.211250511538999 ], [ 137.80106798725933, 35.20184664121787 ], [ 137.778156283786331, 35.200241102382563 ], [ 137.766966847206476, 35.216525853426461 ], [ 137.729935140430342, 35.218131392261775 ], [ 137.724873252453762, 35.227535262582904 ], [ 137.688107960834259, 35.228911438727458 ], [ 137.666528333144583, 35.224553547603037 ], [ 137.64494870545488, 35.205745806960778 ], [ 137.620172095885238, 35.206204532342298 ], [ 137.593264165062294, 35.195883211258135 ], [ 137.581009067855774, 35.194736397804334 ], [ 137.581541898169121, 35.216296490735701 ], [ 137.554900382502836, 35.238315309048588 ], [ 137.54903924905625, 35.250012806277304 ], [ 137.556232458286132, 35.258040500453873 ], [ 137.565024158456026, 35.284417209891181 ], [ 137.564757743299339, 35.306436028204061 ], [ 137.60711775320874, 35.333271463022889 ], [ 137.600990204605495, 35.375932923504102 ], [ 137.594063410532272, 35.386483607279025 ], [ 137.624168323235182, 35.390612135712686 ], [ 137.638021911381657, 35.398410467198502 ], [ 137.621504171668533, 35.416071394386961 ], [ 137.618840020101914, 35.427080803543404 ], [ 137.60205586523216, 35.438778300772121 ], [ 137.603654356172143, 35.448870259165524 ], [ 137.624967568705159, 35.464237559446389 ], [ 137.63482492950169, 35.467907362498536 ], [ 137.628697380898444, 35.489696818120663 ], [ 137.63482492950169, 35.505752206473801 ], [ 137.616175868535294, 35.525936123260614 ], [ 137.606052092582104, 35.528000387477448 ], [ 137.58180831332578, 35.523183770971499 ], [ 137.562093591732719, 35.513550537959617 ], [ 137.536251321536412, 35.538092345870851 ], [ 137.544776606549647, 35.552542195388682 ], [ 137.535185660909775, 35.563322241854358 ], [ 137.541313209513021, 35.572496749484728 ], [ 137.539448303416378, 35.583276795950411 ], [ 137.519999996979976, 35.602084536592663 ], [ 137.519467166666658, 35.61401139651214 ], [ 137.530123772933166, 35.631901686391359 ], [ 137.539981133729697, 35.634883401371226 ], [ 137.545043021706306, 35.644975359764629 ], [ 137.541846039826339, 35.655296680848792 ], [ 137.523463394016602, 35.673416333418771 ], [ 137.502150181483557, 35.684196379884455 ], [ 137.500551690543602, 35.694976426350138 ], [ 137.49122716006039, 35.701627944382153 ], [ 137.490427914590413, 35.71355480430163 ], [ 137.475508665817273, 35.731903819562369 ], [ 137.461655077670798, 35.758051166308917 ], [ 137.450465641090972, 35.755528176710563 ], [ 137.43554639231786, 35.76791376201156 ], [ 137.398781100698358, 35.773418466589781 ], [ 137.396649779445056, 35.794519834139628 ], [ 137.375070151755381, 35.796584098356462 ], [ 137.363347884862208, 35.792914295304314 ], [ 137.343633163269146, 35.794978559521141 ], [ 137.329246744809353, 35.810804585183533 ], [ 137.334575047942621, 35.833282128877926 ], [ 137.343366748112487, 35.840851097672981 ], [ 137.364679960645532, 35.843832812652849 ], [ 137.374004491128716, 35.880301480483567 ], [ 137.382263360985263, 35.887641086587863 ], [ 137.417163746508095, 35.898421133053539 ], [ 137.440608280294441, 35.901861573414926 ], [ 137.457392435164195, 35.888329174660136 ], [ 137.47843923254058, 35.89108152694925 ], [ 137.492026405530396, 35.916540785623518 ], [ 137.505347163363524, 35.93488980088425 ], [ 137.527459621366546, 35.939247692008678 ], [ 137.546375097489602, 35.976863173293182 ], [ 137.576213595035853, 35.992689198955567 ], [ 137.596727562098891, 36.008285861927192 ], [ 137.602322280388819, 36.022965074135783 ], [ 137.604187186485461, 36.043378353613349 ], [ 137.618040774631936, 36.058975016584974 ], [ 137.616975114005271, 36.072966140721284 ], [ 137.605252847112098, 36.073195503412045 ], [ 137.580209822385797, 36.083287461805448 ], [ 137.557031703756138, 36.103700741283021 ], [ 137.563159252359384, 36.12549019690514 ], [ 137.557564534069456, 36.137187694133857 ], [ 137.573549443469233, 36.152325631723969 ], [ 137.595661901472255, 36.16654611855104 ], [ 137.597793222725556, 36.187876848791646 ], [ 137.579676992072478, 36.199574346020363 ], [ 137.578344916289154, 36.210354392486039 ], [ 137.598858883352193, 36.239024728830941 ], [ 137.631361532465064, 36.273887857826338 ], [ 137.649211347961483, 36.284897266982782 ], [ 137.653740405624745, 36.317008043689071 ], [ 137.649211347961483, 36.338797499311191 ], [ 137.638821156851634, 36.339256224692711 ], [ 137.616975114005271, 36.363568669913185 ], [ 137.596727562098891, 36.365632934130019 ], [ 137.58926793771235, 36.372284452162035 ], [ 137.590067183182327, 36.386504938989106 ], [ 137.607916998678746, 36.398890524290096 ], [ 137.607916998678746, 36.408982482683506 ], [ 137.624967568705159, 36.419762529149182 ], [ 137.635890590128355, 36.421826793366016 ], [ 137.648145687334846, 36.450726492401678 ], [ 137.65747021781803, 36.455084383526099 ], [ 137.656138142034735, 36.486048346778588 ], [ 137.676385693941114, 36.507608439709955 ], [ 137.697432491317471, 36.508067165091475 ], [ 137.706757021800684, 36.51471868312349 ], [ 137.700895888354097, 36.534443874528783 ], [ 137.689440036617583, 36.542930294086872 ], [ 137.695834000377488, 36.564490387018239 ], [ 137.726205328237057, 36.582839402278971 ], [ 137.749916277180063, 36.583986215732764 ], [ 137.75551099546999, 36.593160723363134 ], [ 137.749916277180063, 36.602335230993504 ], [ 137.749916277180063, 36.621372334326516 ], [ 137.756043825783308, 36.630088116575365 ], [ 137.75817514703661, 36.651648209506732 ], [ 137.764036280483197, 36.666556784406076 ], [ 137.757375901566633, 36.686511338502129 ], [ 137.754711749999984, 36.718851477899172 ], [ 137.757109486409945, 36.751191617296215 ], [ 137.765901186579839, 36.764265290669492 ], [ 137.78588232332956, 36.770458083319994 ], [ 137.800268741789353, 36.784449207456305 ], [ 137.819717048225726, 36.793394352395907 ], [ 137.835435542468844, 36.807156113841458 ], [ 137.838099694035463, 36.819082973760942 ], [ 137.859412906568508, 36.840413704001548 ], [ 137.863142718761793, 36.851193750467225 ], [ 137.874864985654966, 36.860368258097594 ], [ 137.867671776425055, 36.903029718578807 ], [ 137.870868758305022, 36.91289231428145 ], [ 137.895378952718005, 36.907158247012468 ], [ 137.922286883540949, 36.916562117333598 ], [ 137.951059720460535, 36.909910599301583 ], [ 137.95718726906378, 36.901882905125007 ], [ 137.989157087863333, 36.906699521630955 ], [ 138.016597848999623, 36.900506728980453 ], [ 138.035513325122679, 36.877799822595293 ], [ 138.018995585409584, 36.850505662394951 ], [ 138.023258227916187, 36.840184341310788 ], [ 138.007273318516411, 36.825046403720677 ], [ 138.03524690996602, 36.808991015367539 ], [ 138.048567667799148, 36.806926751150705 ], [ 138.055494461872399, 36.796834792757295 ], [ 138.075742013778779, 36.804862486933871 ], [ 138.085066544261963, 36.826193217174477 ], [ 138.102649944601723, 36.840184341310788 ], [ 138.135152593714594, 36.846835859342804 ], [ 138.165790336730822, 36.841101792073822 ], [ 138.207084686013587, 36.855092916210133 ], [ 138.216942046810118, 36.86793722689265 ], [ 138.225733746979984, 36.861973796932908 ], [ 138.249977526236307, 36.861744434242148 ], [ 138.260101302189497, 36.865414237294296 ], [ 138.274754135805949, 36.850964387776472 ], [ 138.274754135805949, 36.839725615929268 ], [ 138.294468857399011, 36.848670760868877 ], [ 138.299797160532279, 36.879405361430607 ], [ 138.296067348338994, 36.897983739382099 ], [ 138.300329990845597, 36.908763785847782 ], [ 138.321376788221954, 36.92206682191182 ], [ 138.342157170441681, 36.919543832313465 ], [ 138.360806231408077, 36.930553241469909 ], [ 138.366933780011323, 36.950049070184434 ], [ 138.382119443941093, 36.977343230384783 ], [ 138.39783793818421, 36.994316069500961 ], [ 138.436201720743668, 37.003949302512851 ], [ 138.467372294073215, 37.015417437050807 ], [ 138.490816827859561, 37.017022975886121 ], [ 138.516925513212527, 37.026426846207251 ], [ 138.527848534635694, 37.027344296970284 ], [ 138.535840989335583, 37.019316602793715 ], [ 138.56914288391846, 37.017940426649162 ], [ 138.576868923461689, 37.000050136769943 ], [ 138.590456096451476, 36.979636857292377 ], [ 138.586193453944873, 36.92573662496396 ], [ 138.605641760381275, 36.904176532032601 ], [ 138.616831196961101, 36.904864620104874 ], [ 138.625090066817648, 36.884910066008828 ], [ 138.644538373254051, 36.872065755326311 ], [ 138.665318755473749, 36.864267423840502 ], [ 138.685566307380128, 36.860368258097594 ], [ 138.694358007550022, 36.853716740065579 ], [ 138.687164798320111, 36.824128952957643 ], [ 138.699153480369944, 36.805550575006151 ], [ 138.687964043790089, 36.785825383600859 ], [ 138.676508192053603, 36.780779404404157 ], [ 138.672511964703659, 36.770687446010754 ], [ 138.691960271140033, 36.760595487617344 ], [ 138.69782140458662, 36.741099658902812 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1483, "NAME_1": "Naoasaki", "VARNAME_1": "Nagasaki", "HASC_1": "JP.NS", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.393948805492641, 32.055219886692512 ], [ 128.411265790675714, 32.044898565608349 ], [ 128.403539751132513, 32.038935135648607 ], [ 128.385956350792753, 32.0361827833595 ], [ 128.393948805492641, 32.055219886692512 ] ] ], [ [ [ 128.639849995092476, 32.671976162143977 ], [ 128.628127728199331, 32.655691411100079 ], [ 128.635587352585873, 32.645828815397429 ], [ 128.621733764439398, 32.638259846602381 ], [ 128.615339800679493, 32.657985038007666 ], [ 128.635853767742532, 32.678627680175993 ], [ 128.639849995092476, 32.671976162143977 ] ] ], [ [ [ 128.992583662514164, 32.79147412402952 ], [ 129.007502911287276, 32.770143393788913 ], [ 129.002174608154007, 32.749500751620587 ], [ 128.992850077670823, 32.750647565074381 ], [ 128.973401771234421, 32.743537321660845 ], [ 128.962745164967913, 32.750876927765141 ], [ 128.978996489524349, 32.760051435395511 ], [ 128.992583662514164, 32.79147412402952 ] ] ], [ [ [ 128.809822865043401, 32.798584367443055 ], [ 128.807158713476781, 32.79124476133876 ], [ 128.810888525670066, 32.773125108768781 ], [ 128.829804001793121, 32.753858642745008 ], [ 128.844190420252914, 32.743996047042366 ], [ 128.839394947432993, 32.724729581018593 ], [ 128.840993438372976, 32.710050368810002 ], [ 128.848186647602859, 32.705692477685581 ], [ 128.850850799169507, 32.690554540095476 ], [ 128.870831935919199, 32.679545130939033 ], [ 128.884152693752355, 32.668076996401069 ], [ 128.885751184692339, 32.656379499172353 ], [ 128.895874960645529, 32.655232685718559 ], [ 128.892411563608903, 32.640553473509968 ], [ 128.874028917799166, 32.637801121220861 ], [ 128.855646271989428, 32.642159012345289 ], [ 128.826607019913183, 32.634819406240993 ], [ 128.817815319743289, 32.63734239583934 ], [ 128.807691543790099, 32.655232685718559 ], [ 128.781582858437133, 32.644452639252876 ], [ 128.770127006700648, 32.644452639252876 ], [ 128.765065118724038, 32.634131318168713 ], [ 128.775455309833887, 32.613718038691147 ], [ 128.789575313137021, 32.606378432586851 ], [ 128.794104370800312, 32.59169922037826 ], [ 128.780517197810497, 32.585277065037005 ], [ 128.772258327953949, 32.572432754354487 ], [ 128.753076436674206, 32.577937458932709 ], [ 128.748280963854285, 32.59284603383206 ], [ 128.737624357587777, 32.605690344514571 ], [ 128.690735290015084, 32.601791178771663 ], [ 128.667290756228766, 32.608213334112925 ], [ 128.655568489335593, 32.599956277245596 ], [ 128.653703583238951, 32.590093681542946 ], [ 128.632923201019253, 32.596745199574968 ], [ 128.630525464609292, 32.605460981823811 ], [ 128.598022815496421, 32.61486485214494 ], [ 128.60841300660627, 32.627250437445937 ], [ 128.625729991789342, 32.626791712064417 ], [ 128.632923201019253, 32.615782302907974 ], [ 128.647043204322387, 32.610048235638999 ], [ 128.650240186202325, 32.619681468650882 ], [ 128.635853767742532, 32.633672592787192 ], [ 128.66888924716875, 32.66945317254563 ], [ 128.648908110419029, 32.681150669774347 ], [ 128.647576034635705, 32.697435420818252 ], [ 128.657699810588895, 32.705921840376341 ], [ 128.645444713382403, 32.720371689894165 ], [ 128.645444713382403, 32.764409326519932 ], [ 128.650773016515672, 32.776106823748648 ], [ 128.6640937743488, 32.785051968688265 ], [ 128.682476420158537, 32.777712362583969 ], [ 128.698194914401654, 32.765785502664485 ], [ 128.698461329558313, 32.748353938166787 ], [ 128.7043224630049, 32.744454772423886 ], [ 128.725102845224598, 32.755922906961843 ], [ 128.736558696961112, 32.74583094856844 ], [ 128.745083981974318, 32.747436487403753 ], [ 128.754941342770849, 32.769914031098153 ], [ 128.765331533880698, 32.75959271001399 ], [ 128.779451537183832, 32.777941725274729 ], [ 128.792505879860329, 32.777712362583969 ], [ 128.790907388920346, 32.788263046358892 ], [ 128.809822865043401, 32.798584367443055 ] ] ], [ [ [ 128.864970802472641, 32.844456905594896 ], [ 128.896141375802188, 32.824502351498843 ], [ 128.905998736598718, 32.8134929423424 ], [ 128.909728548792003, 32.799501818206089 ], [ 128.901203263778768, 32.787345595595852 ], [ 128.88548476953568, 32.775648098367135 ], [ 128.878824390619087, 32.763262513066138 ], [ 128.864704387315953, 32.763491875756898 ], [ 128.850051553699501, 32.77817108796549 ], [ 128.83513230492639, 32.78229961639915 ], [ 128.833267398829747, 32.796749465916982 ], [ 128.839394947432993, 32.802254170495203 ], [ 128.836997211023032, 32.825649164952637 ], [ 128.861507405436015, 32.834823672583006 ], [ 128.864970802472641, 32.844456905594896 ] ] ], [ [ [ 128.954219879954707, 32.873815330012071 ], [ 128.96381082559455, 32.850190972863871 ], [ 128.954219879954707, 32.834364947201486 ], [ 128.928644024915059, 32.817162745394548 ], [ 128.927578364288422, 32.831612594912379 ], [ 128.919053079275187, 32.842163278687302 ], [ 128.90067043346545, 32.851337786317671 ], [ 128.879090805775775, 32.855007589369819 ], [ 128.89534213033221, 32.878402583827253 ], [ 128.916655342865226, 32.870374889650677 ], [ 128.923848552095137, 32.854778226679059 ], [ 128.941964782748215, 32.860053568566514 ], [ 128.954219879954707, 32.873815330012071 ] ] ], [ [ [ 128.937169309928265, 32.924275121979093 ], [ 128.945961010098159, 32.924504484669853 ], [ 128.955551955738002, 32.910283997842782 ], [ 128.947559501038114, 32.905008655955321 ], [ 128.933173082578321, 32.91303635013189 ], [ 128.937169309928265, 32.924275121979093 ] ] ], [ [ [ 129.903989913457906, 32.928403650412754 ], [ 129.925303125990922, 32.91280698744113 ], [ 129.918909162231017, 32.903403117120007 ], [ 129.906121234711208, 32.914641888967203 ], [ 129.903989913457906, 32.928403650412754 ] ] ], [ [ [ 128.991518001887499, 32.932302816155662 ], [ 129.000576117214052, 32.924963210051367 ], [ 129.0165610266138, 32.923587033906813 ], [ 129.030947445073622, 32.900880127521653 ], [ 129.029082538976979, 32.878402583827253 ], [ 129.030681029916934, 32.853631413225258 ], [ 129.026951217723678, 32.844227542904136 ], [ 129.010966308323901, 32.857301216277406 ], [ 129.017893102397124, 32.865787635835495 ], [ 128.986722529067578, 32.866246361217016 ], [ 128.973401771234421, 32.871751065795237 ], [ 128.960880258871271, 32.902715029047727 ], [ 128.982992716874293, 32.903403117120007 ], [ 128.991518001887499, 32.932302816155662 ] ] ], [ [ [ 129.60080946517553, 32.945835214910453 ], [ 129.623188338335211, 32.938495608806164 ], [ 129.62585248990186, 32.92679811157744 ], [ 129.616261544261988, 32.916935515874798 ], [ 129.597346068138904, 32.924275121979093 ], [ 129.591484934692346, 32.93620198189857 ], [ 129.60080946517553, 32.945835214910453 ] ] ], [ [ [ 129.189464463288033, 33.019460638644155 ], [ 129.196657672517915, 33.007992504106198 ], [ 129.178275026708178, 33.007075053343158 ], [ 129.177209366081541, 33.016478923664287 ], [ 129.189464463288033, 33.019460638644155 ] ] ], [ [ [ 129.35410903010569, 33.020607452097948 ], [ 129.351178463382411, 33.002258436837216 ], [ 129.341054687429221, 33.007992504106198 ], [ 129.35410903010569, 33.020607452097948 ] ] ], [ [ [ 129.247276552283864, 33.023589167077823 ], [ 129.254469761513775, 33.000652898001903 ], [ 129.226762585220825, 33.000194172620382 ], [ 129.231291642884116, 33.010744856395306 ], [ 129.247276552283864, 33.023589167077823 ] ] ], [ [ [ 129.568839646375977, 33.030470047800598 ], [ 129.590952104378999, 33.023130441696303 ], [ 129.584291725462435, 33.01326784599366 ], [ 129.566974740279335, 33.014873384828974 ], [ 129.559781531049452, 33.027258970129971 ], [ 129.568839646375977, 33.030470047800598 ] ] ], [ [ [ 129.613863807852027, 33.061663373743848 ], [ 129.636242681011709, 33.062351461816121 ], [ 129.634644190071725, 33.050653964587404 ], [ 129.624786829275195, 33.032763674708193 ], [ 129.599210974235547, 33.023130441696303 ], [ 129.586156631559078, 33.027029607439211 ], [ 129.591484934692346, 33.046754798844503 ], [ 129.613863807852027, 33.061663373743848 ] ] ], [ [ [ 129.547260018686302, 33.149050558923101 ], [ 129.550723415722899, 33.137353061694384 ], [ 129.524614730369933, 33.135976885549823 ], [ 129.519552842393352, 33.144233942417159 ], [ 129.547260018686302, 33.149050558923101 ] ] ], [ [ [ 129.114068973952442, 33.163959133822445 ], [ 129.113802558795783, 33.142399040891085 ], [ 129.103412367685905, 33.124508751011867 ], [ 129.121795013495642, 33.107535911895688 ], [ 129.109539916289151, 33.063268912579161 ], [ 129.099416140335961, 33.055929306474866 ], [ 129.104211613155911, 33.04881906306133 ], [ 129.092755761419397, 33.039644555430968 ], [ 129.097817649396006, 33.025653431294657 ], [ 129.089558779539459, 33.016478923664287 ], [ 129.096751988769341, 32.999506084548102 ], [ 129.095686328142705, 32.985056235030278 ], [ 129.11193765269914, 32.985056235030278 ], [ 129.13218520460552, 32.991707753062293 ], [ 129.135115771328799, 33.000194172620382 ], [ 129.156428983861844, 32.999735447238862 ], [ 129.160958041525106, 33.006386965270885 ], [ 129.176143705454876, 33.006845690652398 ], [ 129.175610875141558, 32.9905609396085 ], [ 129.183603329841446, 32.978175354307503 ], [ 129.160958041525106, 32.960973152500564 ], [ 129.150834265571916, 32.95776207482993 ], [ 129.142841810872028, 32.938954334187677 ], [ 129.118864446772363, 32.938036883424644 ], [ 129.095952743299364, 32.919917230854665 ], [ 129.093022176576056, 32.909137184388982 ], [ 129.08183273999623, 32.895834148324951 ], [ 129.092755761419397, 32.889641355674456 ], [ 129.101281046432604, 32.860282931257274 ], [ 129.093288591732716, 32.854778226679059 ], [ 129.07703726717628, 32.861200382020314 ], [ 129.065847830596454, 32.856154402823613 ], [ 129.06158518808985, 32.84583308173945 ], [ 129.067979151849755, 32.837346662181361 ], [ 129.063450094186493, 32.817162745394548 ], [ 129.046133109003392, 32.821749999209729 ], [ 129.047731599943376, 32.853172687843738 ], [ 129.040005560400147, 32.867163811980049 ], [ 129.054924809173258, 32.887118366076102 ], [ 129.042136881653448, 32.893081796035844 ], [ 129.03893989977351, 32.908907821698222 ], [ 129.055191224329945, 32.905238018646074 ], [ 129.050129336353336, 32.921064044308466 ], [ 129.036275748206862, 32.922440220453019 ], [ 129.033078766326923, 32.936890069970843 ], [ 129.020823669120432, 32.932990904227943 ], [ 129.013097629577203, 32.946064577601213 ], [ 129.002973853624013, 32.939413059569198 ], [ 128.993116492827482, 32.9456058522197 ], [ 129.000309702057365, 32.95822080021145 ], [ 128.996579889864108, 32.964872318243465 ], [ 129.013630459890521, 32.976569815472189 ], [ 129.039472730086828, 32.976340452781429 ], [ 129.049330090883359, 32.995606918805201 ], [ 129.041071221026812, 33.00363461298177 ], [ 129.041071221026812, 33.021066177479469 ], [ 129.046133109003392, 33.03505730161578 ], [ 129.065581415439794, 33.039185830049448 ], [ 129.070909718573034, 33.019231275953395 ], [ 129.085828967346174, 33.022901079005543 ], [ 129.077570097489627, 33.03643347776034 ], [ 129.083964061249532, 33.042626270410835 ], [ 129.07437311560966, 33.056617394547146 ], [ 129.081566324839571, 33.061434011053088 ], [ 129.085029721876168, 33.074737047117125 ], [ 129.102879537372587, 33.08092983976762 ], [ 129.109539916289151, 33.099508217719112 ], [ 129.095419912986017, 33.118774683742885 ], [ 129.10714217987919, 33.15845442924423 ], [ 129.114068973952442, 33.163959133822445 ] ] ], [ [ [ 129.59334984078896, 33.192170744785827 ], [ 129.59334984078896, 33.165335309967006 ], [ 129.584025310305776, 33.168546387637633 ], [ 129.577098516232525, 33.186207314826092 ], [ 129.59334984078896, 33.192170744785827 ] ] ], [ [ [ 129.122860674122308, 33.214648288480227 ], [ 129.136980677425441, 33.194693734384181 ], [ 129.130586713665537, 33.181161335629383 ], [ 129.13484935617214, 33.167399574183833 ], [ 129.125258410532268, 33.161894869605618 ], [ 129.119930107399028, 33.176803444504962 ], [ 129.123926334748944, 33.189189029805959 ], [ 129.11460180426576, 33.204785692777584 ], [ 129.122860674122308, 33.214648288480227 ] ] ], [ [ [ 129.0567897152699, 33.217859366150861 ], [ 129.055724054643264, 33.210290397355806 ], [ 129.079967833899588, 33.207079319685178 ], [ 129.089025949226112, 33.185977952135332 ], [ 129.067179906379749, 33.194005646311901 ], [ 129.057855375896565, 33.186436677516852 ], [ 129.028549708663633, 33.200886527034676 ], [ 129.0567897152699, 33.217859366150861 ] ] ], [ [ [ 129.066647076066431, 33.263502541611935 ], [ 129.074639530766319, 33.24790587864031 ], [ 129.060519527463185, 33.24790587864031 ], [ 129.066647076066431, 33.263502541611935 ] ] ], [ [ [ 129.133250865232156, 33.303641012494793 ], [ 129.150301435258598, 33.269695334262437 ], [ 129.12738973178557, 33.24744715325879 ], [ 129.116999540675721, 33.245612251732723 ], [ 129.090358025009436, 33.254557396672325 ], [ 129.090624440166096, 33.258685925105993 ], [ 129.069844057946398, 33.270154059643957 ], [ 129.093022176576056, 33.287585624141656 ], [ 129.116999540675721, 33.288503074904689 ], [ 129.133250865232156, 33.303641012494793 ] ] ], [ [ [ 129.793960453756142, 33.337127965345637 ], [ 129.776909883729701, 33.32543046811692 ], [ 129.763855541053232, 33.294925230245944 ], [ 129.768118183559835, 33.282998370326467 ], [ 129.786767244526231, 33.259374013178274 ], [ 129.816872157229142, 33.235979018720833 ], [ 129.812343099565879, 33.223364070729076 ], [ 129.811011023782555, 33.200657164343916 ], [ 129.818470648169125, 33.182537511773944 ], [ 129.836320463665544, 33.17106937723598 ], [ 129.848575560872035, 33.173363004143575 ], [ 129.888537834371448, 33.15799570386271 ], [ 129.909318216591174, 33.155702076955116 ], [ 129.940488789920721, 33.162124232296378 ], [ 129.951411811343888, 33.132536445188435 ], [ 129.958605020573799, 33.124738113702627 ], [ 129.953809547753877, 33.106847823823408 ], [ 129.937558223197442, 33.107765274586441 ], [ 129.927168032087565, 33.102489932698987 ], [ 129.924503880520945, 33.087122632418115 ], [ 129.93542690194414, 33.083223466675207 ], [ 129.949546905247246, 33.066250627559029 ], [ 129.982848799830123, 33.054553130330312 ], [ 129.99856729407324, 33.040791368884761 ], [ 129.999899369856536, 33.030928773182112 ], [ 130.01881484597962, 33.014414659447453 ], [ 130.031069943186111, 33.015790835592007 ], [ 130.035599000849373, 33.006386965270885 ], [ 130.06144127104568, 32.983909421576485 ], [ 130.078491841072093, 32.984138784267245 ], [ 130.087549956398647, 32.975881727399909 ], [ 130.134971854284629, 32.965101680934225 ], [ 130.146960536334461, 32.968083395914093 ], [ 130.153354500094366, 32.959596976356011 ], [ 130.203706964703656, 32.954780359850062 ], [ 130.203174134390338, 32.932302816155662 ], [ 130.188521300773886, 32.925421935432887 ], [ 130.183725827953936, 32.91372443820417 ], [ 130.169339409494143, 32.915100614348724 ], [ 130.165343182144198, 32.907302282862915 ], [ 130.14749336664778, 32.892852433345084 ], [ 130.140300157417897, 32.892852433345084 ], [ 130.123249587391456, 32.8809255734256 ], [ 130.125913738958104, 32.871292340413717 ], [ 130.144029969611182, 32.855236952060572 ], [ 130.161879785107573, 32.843539454831856 ], [ 130.181061676387316, 32.843310092141095 ], [ 130.19251752812383, 32.850649698245391 ], [ 130.224220931766695, 32.860741656638794 ], [ 130.242337162419773, 32.875420868847385 ], [ 130.260453393072851, 32.871980428485998 ], [ 130.281766605605895, 32.878631946518013 ], [ 130.310539442525481, 32.876338319610419 ], [ 130.3110722728388, 32.872209791176758 ], [ 130.341710015855028, 32.854090138606779 ], [ 130.350768131181582, 32.829318968004785 ], [ 130.363556058701391, 32.810740590053292 ], [ 130.382205119667788, 32.777024274511689 ], [ 130.371548513401279, 32.760739523467791 ], [ 130.377676062004525, 32.743078596279332 ], [ 130.346239073518291, 32.707527379211655 ], [ 130.357961340411464, 32.695141793910658 ], [ 130.354764358531526, 32.68229748322814 ], [ 130.344374167421677, 32.671746799453217 ], [ 130.333983976311799, 32.66991189792715 ], [ 130.321728879105308, 32.659131851461467 ], [ 130.304678309078895, 32.652021608047932 ], [ 130.276971132785945, 32.653856509574005 ], [ 130.258322071819549, 32.640094748128448 ], [ 130.250329617119661, 32.626562349373657 ], [ 130.242337162419773, 32.628626613590491 ], [ 130.226352253019996, 32.610048235638999 ], [ 130.203973379860315, 32.604314168370017 ], [ 130.181328091543975, 32.59284603383206 ], [ 130.173335636844087, 32.603167354916224 ], [ 130.169339409494143, 32.620369556723162 ], [ 130.148825442431104, 32.633443230096432 ], [ 130.128844305681383, 32.640782836200728 ], [ 130.128577890524724, 32.666700820256516 ], [ 130.13470543912797, 32.681150669774347 ], [ 130.155485821347668, 32.684132384754214 ], [ 130.172003561060762, 32.702940125396466 ], [ 130.198911491883734, 32.718078062986578 ], [ 130.209568098150243, 32.737803254391864 ], [ 130.205838285956958, 32.755234818889562 ], [ 130.189320546243863, 32.762345062303098 ], [ 130.187189224990561, 32.777712362583969 ], [ 130.192251112967142, 32.784134517925224 ], [ 130.178397524820696, 32.794455839009387 ], [ 130.15735072744431, 32.792850300174074 ], [ 130.144296384767841, 32.795832015153941 ], [ 130.1272458147414, 32.787574958286612 ], [ 130.088615617025283, 32.794455839009387 ], [ 130.068101649962244, 32.787574958286612 ], [ 130.043325040392602, 32.76899658033512 ], [ 130.024143149112859, 32.757528445797156 ], [ 129.954075962910537, 32.765097414592212 ], [ 129.949014074933928, 32.754546730817289 ], [ 129.957006529633816, 32.743537321660845 ], [ 129.916511425821056, 32.698352871581285 ], [ 129.901858592204604, 32.678627680175993 ], [ 129.896263873914677, 32.662801654513615 ], [ 129.866691791525113, 32.643535188489835 ], [ 129.835254803038879, 32.632296416642639 ], [ 129.838185369762158, 32.620598919413922 ], [ 129.804883475179309, 32.590552406924466 ], [ 129.783037432332947, 32.582524712747897 ], [ 129.764921201679869, 32.583442163510931 ], [ 129.73694761023026, 32.578396184314229 ], [ 129.750001952906757, 32.59284603383206 ], [ 129.767585353246517, 32.594910298048887 ], [ 129.790230641562857, 32.615782302907974 ], [ 129.791562717346153, 32.630232152425805 ], [ 129.809945363155919, 32.656150136481592 ], [ 129.815540081445818, 32.675416602505365 ], [ 129.795292529539438, 32.684361747444974 ], [ 129.796891020479421, 32.693306892384584 ], [ 129.809678947999231, 32.693077529693824 ], [ 129.816072911759164, 32.703628213468747 ], [ 129.841915181955443, 32.696747332745971 ], [ 129.849907636655331, 32.717848700295818 ], [ 129.870155188561711, 32.743537321660845 ], [ 129.86029782776518, 32.742849233588572 ], [ 129.855768770101918, 32.730004922906055 ], [ 129.847243485088711, 32.724958943709353 ], [ 129.819003478482443, 32.723124042183279 ], [ 129.831258575688935, 32.735280264793516 ], [ 129.82486461192903, 32.74674839933148 ], [ 129.814208005662522, 32.739179430536424 ], [ 129.803817814552644, 32.744225409733126 ], [ 129.807814041902589, 32.752941191981975 ], [ 129.800354417516047, 32.777941725274729 ], [ 129.790230641562857, 32.779547264110043 ], [ 129.773712901849763, 32.797666916680015 ], [ 129.765720447149874, 32.799960543587609 ], [ 129.767851768403176, 32.815786569249994 ], [ 129.745472895243495, 32.821979361900489 ], [ 129.740144592110227, 32.807529512382658 ], [ 129.718831379577182, 32.822667449972769 ], [ 129.718032134107204, 32.832988771056932 ], [ 129.699915903454126, 32.833218133747692 ], [ 129.676737784824468, 32.866705086598536 ], [ 129.679934766704406, 32.8809255734256 ], [ 129.671675896847859, 32.886889003385342 ], [ 129.666081178557931, 32.902944391738487 ], [ 129.6484977782182, 32.932302816155662 ], [ 129.626651735371837, 32.949963743344121 ], [ 129.630381547565122, 32.963954867480432 ], [ 129.626118905058519, 32.970377022821687 ], [ 129.633045699131742, 32.987579224628632 ], [ 129.646899287278217, 32.995606918805201 ], [ 129.654358911664787, 33.008451229487719 ], [ 129.646632872121558, 33.023818529768583 ], [ 129.646366456964898, 33.037121565832614 ], [ 129.658355139014731, 33.040332643503241 ], [ 129.662351366364675, 33.052947591494998 ], [ 129.660486460268032, 33.069232342538903 ], [ 129.672475142317865, 33.072902145591044 ], [ 129.681000427331071, 33.099737580409872 ], [ 129.697251751887507, 33.089416259325709 ], [ 129.708441188467333, 33.088040083181156 ], [ 129.736414779916942, 33.064645088723715 ], [ 129.735615534446964, 33.052259503422718 ], [ 129.751600443846741, 33.054553130330312 ], [ 129.762257050113249, 33.04858970037057 ], [ 129.746005725556813, 33.036662840451093 ], [ 129.733217798037003, 33.015102747519734 ], [ 129.732152137410338, 33.007075053343158 ], [ 129.745206480086836, 32.998359271094309 ], [ 129.764921201679869, 32.999276721857349 ], [ 129.757994407606645, 33.010744856395306 ], [ 129.76438837136655, 33.021295540170229 ], [ 129.781172526236304, 33.007763141415438 ], [ 129.800354417516047, 33.007992504106198 ], [ 129.814474420819181, 32.995606918805201 ], [ 129.822466875519069, 32.975652364709148 ], [ 129.808080457059276, 32.965331043624985 ], [ 129.819003478482443, 32.947670116436527 ], [ 129.816339326915823, 32.925192572742127 ], [ 129.807814041902589, 32.91326571282265 ], [ 129.798223096262745, 32.922898945834532 ], [ 129.789164980936192, 32.921293406999226 ], [ 129.785701583899595, 32.904549930573801 ], [ 129.807014796432611, 32.908678459007469 ], [ 129.802752153926008, 32.882989837642434 ], [ 129.793427623442795, 32.883448563023954 ], [ 129.799555172046041, 32.863952734309422 ], [ 129.813408760192516, 32.864640822381702 ], [ 129.823798951302365, 32.852713962462225 ], [ 129.839783860702141, 32.844915630976409 ], [ 129.849907636655331, 32.858218667040447 ], [ 129.871487264345035, 32.852255237080705 ], [ 129.879479719044923, 32.863723371618661 ], [ 129.878680473574917, 32.879549397281046 ], [ 129.894132552661375, 32.86899871350613 ], [ 129.903190667987928, 32.877943858445732 ], [ 129.933828411004157, 32.857989304349687 ], [ 129.946882753680626, 32.863264646237148 ], [ 129.979118987636838, 32.843998180213376 ], [ 129.993505406096631, 32.841933915996542 ], [ 129.990042009060005, 32.85867739242196 ], [ 129.96366690855038, 32.882989837642434 ], [ 129.954875208380514, 32.904549930573801 ], [ 129.931164259437509, 32.923816396597573 ], [ 129.92796727755757, 32.939413059569198 ], [ 129.931164259437509, 32.950881194107154 ], [ 129.92823369271423, 32.968542121295613 ], [ 129.943152941487341, 32.975652364709148 ], [ 129.95087898103057, 32.986661773865592 ], [ 129.943952186957347, 32.999964809929622 ], [ 129.944751432427324, 33.015790835592007 ], [ 129.923704635050967, 33.032993037398953 ], [ 129.903989913457906, 33.040791368884761 ], [ 129.900792931577939, 33.049277788442851 ], [ 129.877081982634962, 33.064186363342202 ], [ 129.85496952463194, 33.061892736434608 ], [ 129.848042730558689, 33.053865042258039 ], [ 129.837386124292181, 33.053865042258039 ], [ 129.831258575688935, 33.038268379286407 ], [ 129.819536308795762, 33.042396907720075 ], [ 129.823532536145706, 33.057305482619427 ], [ 129.812343099565879, 33.06785616639435 ], [ 129.80195290845603, 33.06785616639435 ], [ 129.79742385079274, 33.081617927839901 ], [ 129.775311392789718, 33.076571948643192 ], [ 129.764921201679869, 33.056617394547146 ], [ 129.74174308305021, 33.061434011053088 ], [ 129.739611761796908, 33.078177487478513 ], [ 129.728688740373713, 33.100425668482153 ], [ 129.745206480086836, 33.098820129646839 ], [ 129.7518668590034, 33.106159735751135 ], [ 129.742542328520187, 33.115334243381497 ], [ 129.757727992449986, 33.134600709405269 ], [ 129.74174308305021, 33.131389631734642 ], [ 129.719630625047188, 33.136894336312864 ], [ 129.720696285673824, 33.153408450047522 ], [ 129.705777036900713, 33.156160802336636 ], [ 129.710838924877322, 33.119462771815165 ], [ 129.696718921574188, 33.11258189109239 ], [ 129.679668351547747, 33.11304061647391 ], [ 129.666081178557931, 33.100655031172913 ], [ 129.65862155417139, 33.116710419526058 ], [ 129.662617781521334, 33.126573015228701 ], [ 129.675405709041144, 33.128866642136288 ], [ 129.689259297187618, 33.142169678200325 ], [ 129.677004199981127, 33.154784626192082 ], [ 129.652227590411485, 33.172216190689781 ], [ 129.651961175254797, 33.192629470167347 ], [ 129.636509096168368, 33.196069910528735 ], [ 129.624786829275195, 33.18987711787824 ], [ 129.619991356455273, 33.201574615106956 ], [ 129.60347361674215, 33.210519760046566 ], [ 129.552854736976201, 33.216483190006301 ], [ 129.55525247338619, 33.241483723299055 ], [ 129.559781531049452, 33.255245484744606 ], [ 129.577364931389212, 33.27084214771623 ], [ 129.588820783125698, 33.272677049242304 ], [ 129.582693234522452, 33.289649888358483 ], [ 129.59548116204229, 33.298595033298092 ], [ 129.578963422329167, 33.306393364783908 ], [ 129.561912852302754, 33.32428365466312 ], [ 129.571237382785966, 33.33827477879943 ], [ 129.576299270762547, 33.362587224019904 ], [ 129.569372476689324, 33.375890260083942 ], [ 129.576565685919206, 33.380248151208363 ], [ 129.59068568922234, 33.374055358557868 ], [ 129.63357852944506, 33.367862565907373 ], [ 129.653293251038122, 33.370844280887241 ], [ 129.667146839184596, 33.385752855786585 ], [ 129.676471369667809, 33.385523493095832 ], [ 129.67380721810116, 33.368091928598126 ], [ 129.677537030294445, 33.353871441771062 ], [ 129.688193636560953, 33.358688058277004 ], [ 129.704977791430736, 33.346302472976006 ], [ 129.724426097867109, 33.351807177554228 ], [ 129.739078931483562, 33.364880850927499 ], [ 129.750534783220075, 33.367174477835093 ], [ 129.763589125896573, 33.354788892534096 ], [ 129.775844223103064, 33.371532368959521 ], [ 129.791562717346153, 33.366945115144333 ], [ 129.793960453756142, 33.337127965345637 ] ] ], [ [ [ 129.55525247338619, 33.408689124862505 ], [ 129.557383794639492, 33.388963933457219 ], [ 129.562978512929391, 33.382083052734437 ], [ 129.556318134012827, 33.371303006268761 ], [ 129.569638891845983, 33.35662379406017 ], [ 129.546194358059637, 33.348366737192841 ], [ 129.542198130709693, 33.335063701128803 ], [ 129.514757369573431, 33.329558996550588 ], [ 129.53047586381652, 33.307310815546941 ], [ 129.504100763306894, 33.300659297514926 ], [ 129.512359633163442, 33.290108613740003 ], [ 129.49744038439033, 33.278411116511286 ], [ 129.5049000087769, 33.269695334262437 ], [ 129.501703026896934, 33.259144650487514 ], [ 129.489181514533783, 33.251575681692458 ], [ 129.480922644677236, 33.235749656030073 ], [ 129.463872074650794, 33.213730837717193 ], [ 129.45188339260099, 33.213042749644913 ], [ 129.438029804454516, 33.192858832858107 ], [ 129.417515837391477, 33.182537511773944 ], [ 129.377553563892036, 33.168775750328393 ], [ 129.349313557285768, 33.181390698320143 ], [ 129.357306011985656, 33.188042216352159 ], [ 129.362101484805578, 33.20295079125151 ], [ 129.376487903265371, 33.184601775990771 ], [ 129.385013188278606, 33.187354128279885 ], [ 129.39700187032841, 33.181620061010904 ], [ 129.405793570498304, 33.197216723982528 ], [ 129.39167356719517, 33.200198438962403 ], [ 129.379684885145338, 33.209831671974285 ], [ 129.384480357965259, 33.229786226070338 ], [ 129.410589043318225, 33.24813524133107 ], [ 129.411388288788231, 33.260062101250547 ], [ 129.403928664401661, 33.264419992374975 ], [ 129.419913573801438, 33.277952391129766 ], [ 129.423909801151382, 33.290337976430763 ], [ 129.445755843997745, 33.297677582535059 ], [ 129.432435086164588, 33.314421058960477 ], [ 129.441759616647801, 33.32428365466312 ], [ 129.436964143827851, 33.34721992373904 ], [ 129.467601886844079, 33.354100804461822 ], [ 129.497706799546989, 33.355018255224856 ], [ 129.503834348150235, 33.362587224019904 ], [ 129.50756416034352, 33.380018788517603 ], [ 129.518220766610028, 33.37978942582685 ], [ 129.517421521140051, 33.354788892534096 ], [ 129.530742278973207, 33.366486389762812 ], [ 129.529143788033224, 33.372679182413314 ], [ 129.546727188372955, 33.377266436228496 ], [ 129.542198130709693, 33.389881384220253 ], [ 129.526746051623263, 33.395615451489235 ], [ 129.542997376179699, 33.408918487553265 ], [ 129.55525247338619, 33.408689124862505 ] ] ], [ [ [ 129.800887247829365, 33.411441477151612 ], [ 129.824065366459024, 33.409377212934785 ], [ 129.833123481785577, 33.404560596428837 ], [ 129.829660084748951, 33.392404373818607 ], [ 129.860830658078527, 33.382312415425197 ], [ 129.847243485088711, 33.367403840525853 ], [ 129.831258575688935, 33.365339576309019 ], [ 129.814208005662522, 33.348825462574354 ], [ 129.803284984239326, 33.362128498638391 ], [ 129.810744608625896, 33.36969746743344 ], [ 129.80728121158927, 33.39309246189088 ], [ 129.812875929879198, 33.399055891850622 ], [ 129.800887247829365, 33.411441477151612 ] ] ], [ [ [ 129.435099237731208, 33.440341176187275 ], [ 129.437496974141169, 33.430707943175392 ], [ 129.428705273971303, 33.409835938316306 ], [ 129.437763389297857, 33.394239275344674 ], [ 129.431103010381264, 33.382541778115957 ], [ 129.436697728671191, 33.363045949401425 ], [ 129.434832822574549, 33.355476980606369 ], [ 129.417515837391477, 33.350431001409675 ], [ 129.397801115798416, 33.358688058277004 ], [ 129.403395834088343, 33.364192762855225 ], [ 129.412986779728186, 33.388734570766459 ], [ 129.412187534258209, 33.398138441087582 ], [ 129.421512064741421, 33.408689124862505 ], [ 129.422311310211398, 33.433460295464499 ], [ 129.435099237731208, 33.440341176187275 ] ] ], [ [ [ 129.544595867119654, 33.441717352331828 ], [ 129.514224539260084, 33.430707943175392 ], [ 129.529943033503201, 33.451350585343718 ], [ 129.544595867119654, 33.441717352331828 ] ] ], [ [ [ 129.758793653076623, 33.465341709480029 ], [ 129.771315165439773, 33.46029573028332 ], [ 129.768917429029813, 33.448368870363844 ], [ 129.790497056719516, 33.425891326669444 ], [ 129.763855541053232, 33.428643678958558 ], [ 129.747337801340137, 33.418781083255908 ], [ 129.74440723461683, 33.406624860645671 ], [ 129.729487985843718, 33.409377212934785 ], [ 129.719097794733869, 33.419698534018949 ], [ 129.742275913363528, 33.428643678958558 ], [ 129.739345346640249, 33.437588823898167 ], [ 129.748669877123433, 33.443322891167142 ], [ 129.751067613533394, 33.460066367592567 ], [ 129.758793653076623, 33.465341709480029 ] ] ], [ [ [ 129.556850964326145, 33.509608708796549 ], [ 129.552854736976201, 33.49171841891733 ], [ 129.570438137315961, 33.497681848877072 ], [ 129.580029082955832, 33.493553320443411 ], [ 129.576032855605888, 33.481626460523927 ], [ 129.555785303699508, 33.474516217110391 ], [ 129.534205676009805, 33.474745579801152 ], [ 129.521950578803313, 33.482085185905447 ], [ 129.501969442053593, 33.4795621963071 ], [ 129.527012466779922, 33.499287387712386 ], [ 129.556850964326145, 33.509608708796549 ] ] ], [ [ [ 129.709240433937339, 33.861680439111908 ], [ 129.726557419120411, 33.850212304573951 ], [ 129.773180071536416, 33.842872698469655 ], [ 129.765454031993215, 33.832092652003979 ], [ 129.760392144016606, 33.806174667948184 ], [ 129.766786107776511, 33.797458885699335 ], [ 129.777442714043019, 33.797000160317822 ], [ 129.782771017176287, 33.785302663089098 ], [ 129.764921201679869, 33.784155849635304 ], [ 129.758793653076623, 33.774293253932655 ], [ 129.765187616836528, 33.76810046128216 ], [ 129.778241959513025, 33.773605165860381 ], [ 129.796091775009444, 33.753650611764328 ], [ 129.778774789826343, 33.739659487628018 ], [ 129.763855541053232, 33.738053948792704 ], [ 129.755330256039997, 33.742411839917132 ], [ 129.732951382880316, 33.734384145740563 ], [ 129.73428345866364, 33.728650078471581 ], [ 129.709240433937339, 33.709842337829329 ], [ 129.696186091260842, 33.710071700520089 ], [ 129.689525712344278, 33.720851746985765 ], [ 129.676737784824468, 33.728650078471581 ], [ 129.684197409211009, 33.741723751844852 ], [ 129.67114306653454, 33.754797425218129 ], [ 129.658088723858043, 33.744705466824726 ], [ 129.647165702434876, 33.752733161001295 ], [ 129.650895514628161, 33.760302129796344 ], [ 129.645833626651552, 33.773605165860381 ], [ 129.660486460268032, 33.771540901643547 ], [ 129.656223817761429, 33.794477170719468 ], [ 129.650362684314842, 33.806404030638944 ], [ 129.664749102774636, 33.811908735217166 ], [ 129.673007972631183, 33.80066996336997 ], [ 129.682066087957708, 33.810073833691092 ], [ 129.670077405907875, 33.825899859353477 ], [ 129.674073633257819, 33.841267159634342 ], [ 129.685795900150993, 33.854799558389132 ], [ 129.709240433937339, 33.861680439111908 ] ] ], [ [ [ 129.450018486504348, 34.707111317250295 ], [ 129.456678865420912, 34.697707446929172 ], [ 129.471331699037364, 34.695872545403091 ], [ 129.487316608437141, 34.662156229861495 ], [ 129.478524908267275, 34.649541281869737 ], [ 129.491046420630425, 34.641972313074682 ], [ 129.478524908267275, 34.616742417091174 ], [ 129.468933962627403, 34.617889230544968 ], [ 129.471331699037364, 34.601833842191823 ], [ 129.480389814363917, 34.595641049541328 ], [ 129.469466792940722, 34.568576252031747 ], [ 129.470266038410728, 34.555731941349229 ], [ 129.45188339260099, 34.522933076570666 ], [ 129.43723055898451, 34.51513474508485 ], [ 129.438029804454516, 34.508024501671315 ], [ 129.420712819271415, 34.496327004442598 ], [ 129.394870549075108, 34.472014559222124 ], [ 129.37409016685541, 34.448848927455444 ], [ 129.382349036711958, 34.439903782515835 ], [ 129.376487903265371, 34.407334280428032 ], [ 129.393272058135153, 34.395407420508555 ], [ 129.380750545771974, 34.38004012022769 ], [ 129.386611679218561, 34.366048996091379 ], [ 129.412720364571527, 34.354810224244176 ], [ 129.406326400811622, 34.335085032838883 ], [ 129.378885639675332, 34.335773120911163 ], [ 129.379152054832019, 34.311919401072203 ], [ 129.364765636372226, 34.309625774164616 ], [ 129.3613022393356, 34.301139354606526 ], [ 129.386611679218561, 34.303662344204874 ], [ 129.394071303605131, 34.300221903843486 ], [ 129.385013188278606, 34.287148230470216 ], [ 129.360769409022282, 34.271322204807831 ], [ 129.353576199792371, 34.277744360149086 ], [ 129.330930911476031, 34.274303919787698 ], [ 129.324536947716126, 34.267652401755683 ], [ 129.317077323329556, 34.241275692318375 ], [ 129.326135438656081, 34.226596480109791 ], [ 129.304289395809747, 34.215357708262587 ], [ 129.296296941109858, 34.179118403122629 ], [ 129.297096186579836, 34.162833652078731 ], [ 129.283775428746708, 34.163521740151012 ], [ 129.282709768120043, 34.129805424609408 ], [ 129.263527876840328, 34.126364984248021 ], [ 129.26086372527368, 34.113291310874743 ], [ 129.229693151944133, 34.094483570232491 ], [ 129.218770130520937, 34.095401020995524 ], [ 129.210244845507731, 34.107098518224248 ], [ 129.196924087674603, 34.105722342079694 ], [ 129.185468235938089, 34.117190476617651 ], [ 129.174545214514922, 34.110080233204116 ], [ 129.167884835598329, 34.127741160392574 ], [ 129.16761842044167, 34.143108460673439 ], [ 129.17774219639486, 34.169485170110747 ], [ 129.179873517648161, 34.220862412840809 ], [ 129.19053012391467, 34.236229713121674 ], [ 129.18520182078143, 34.24838593573191 ], [ 129.192128614854653, 34.258936619506834 ], [ 129.197989748301239, 34.282331613964274 ], [ 129.195592011891279, 34.313524939907524 ], [ 129.203318051434508, 34.323158172919406 ], [ 129.22063503661758, 34.330039053642182 ], [ 129.22809466100415, 34.324075623682447 ], [ 129.223032773027569, 34.297698914245139 ], [ 129.247010137127205, 34.30320361882336 ], [ 129.262728631370322, 34.300221903843486 ], [ 129.279246371083417, 34.306185333803228 ], [ 129.269122595130227, 34.322699447537886 ], [ 129.281644107493378, 34.322928810228646 ], [ 129.307486377689685, 34.288983131996289 ], [ 129.329865250849366, 34.297928276935892 ], [ 129.316011662702891, 34.317194742959671 ], [ 129.289902977349954, 34.323846260991687 ], [ 129.293366374386551, 34.331185867095982 ], [ 129.310150529256333, 34.330956504405222 ], [ 129.319741474896176, 34.326139887899274 ], [ 129.344518084465847, 34.328433514806868 ], [ 129.350645633069092, 34.339901649344824 ], [ 129.34132110258588, 34.344947628541533 ], [ 129.342919593525863, 34.366507721472892 ], [ 129.331463741789349, 34.373847327577188 ], [ 129.324270532559467, 34.363984731874545 ], [ 129.314413171762936, 34.340131012035584 ], [ 129.301891659399757, 34.340589737417105 ], [ 129.299227507833137, 34.349305519665954 ], [ 129.303490150339741, 34.373388602195668 ], [ 129.295497695639853, 34.375452866412502 ], [ 129.284841089373344, 34.364214094565298 ], [ 129.293366374386551, 34.356186400388729 ], [ 129.291501468289908, 34.344488903160013 ], [ 129.281377692336719, 34.343800815087732 ], [ 129.276315804360138, 34.354351498862655 ], [ 129.240349758210641, 34.351140421192028 ], [ 129.227029000377485, 34.361232379585431 ], [ 129.232090888354094, 34.366507721472892 ], [ 129.261130140430339, 34.367195809545173 ], [ 129.275250143733473, 34.375223503721742 ], [ 129.268856179973568, 34.386921000950466 ], [ 129.27365165279349, 34.400912125086776 ], [ 129.270721086070211, 34.422472218018136 ], [ 129.274184483106836, 34.441050595969628 ], [ 129.288837316723288, 34.449078290146204 ], [ 129.275250143733473, 34.455500445487459 ], [ 129.27365165279349, 34.465363041190102 ], [ 129.281910522650065, 34.480500978780213 ], [ 129.291501468289908, 34.486464408739948 ], [ 129.3037565654964, 34.520639449663072 ], [ 129.311749020196288, 34.520868812353832 ], [ 129.326401853812769, 34.549080423317207 ], [ 129.314413171762936, 34.549539148698727 ], [ 129.305887886749701, 34.564677086288839 ], [ 129.295764110796512, 34.555502578658469 ], [ 129.285107504530004, 34.563530272835038 ], [ 129.305355056436383, 34.588989531509313 ], [ 129.304822226123065, 34.603210018336384 ], [ 129.317077323329556, 34.625228836649264 ], [ 129.32133996583616, 34.649311919178977 ], [ 129.358105257455634, 34.650229369942011 ], [ 129.386611679218561, 34.645183390745316 ], [ 129.399399606738399, 34.66903711058427 ], [ 129.412187534258209, 34.677523530142359 ], [ 129.418315082861454, 34.687615488535762 ], [ 129.438829049924493, 34.695184457330818 ], [ 129.450018486504348, 34.707111317250295 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1484, "NAME_1": "Nara", "VARNAME_1": "", "HASC_1": "JP.NR", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.04805625641751, 34.737845917812024 ], [ 136.066172487070588, 34.72316670560344 ], [ 136.071767205360516, 34.71422156066383 ], [ 136.066971732540566, 34.705047053033461 ], [ 136.07842758427708, 34.692432105041703 ], [ 136.088817775386929, 34.672248188254898 ], [ 136.079226829747057, 34.655963437210993 ], [ 136.069635884107214, 34.650458732632771 ], [ 136.072300035673834, 34.625458199340024 ], [ 136.054983050490733, 34.604356831790177 ], [ 136.050187577670812, 34.583255464240331 ], [ 136.063241920347309, 34.566282625124153 ], [ 136.102404948376744, 34.552979589060115 ], [ 136.11599212136656, 34.544951894883546 ], [ 136.157552885805956, 34.556420029421503 ], [ 136.17167288910909, 34.536006749943937 ], [ 136.180997419592302, 34.51421729432181 ], [ 136.190854780388833, 34.519721998900039 ], [ 136.21429931417515, 34.525226703478253 ], [ 136.221492523405061, 34.516510921229404 ], [ 136.222291768875039, 34.493345289462724 ], [ 136.228952147791603, 34.484858869904635 ], [ 136.218828371838413, 34.477977989181859 ], [ 136.20923742619857, 34.445408487094056 ], [ 136.190055534918827, 34.446096575166337 ], [ 136.178599683182313, 34.442197409423429 ], [ 136.166078170819162, 34.445179124403296 ], [ 136.145297788599464, 34.438527606371281 ], [ 136.125050236693085, 34.439903782515835 ], [ 136.098675136183459, 34.431646725648505 ], [ 136.088018529916951, 34.407334280428032 ], [ 136.073099281143811, 34.391508254765647 ], [ 136.089084190543588, 34.376140954484782 ], [ 136.111729478859928, 34.326598613280794 ], [ 136.131710615609649, 34.313754302598284 ], [ 136.124250991223107, 34.307102784566261 ], [ 136.097875890713482, 34.298616365008172 ], [ 136.100273627123443, 34.288524406614769 ], [ 136.12371816090976, 34.266276225611129 ], [ 136.133042691392973, 34.249762111876464 ], [ 136.11599212136656, 34.220862412840809 ], [ 136.12105400934314, 34.210999817138159 ], [ 136.102138533220085, 34.198614231837169 ], [ 136.096277399773498, 34.192421439186667 ], [ 136.115192875896554, 34.163751102841772 ], [ 136.107466836353325, 34.132557776898516 ], [ 136.108798912136649, 34.08989631641731 ], [ 136.096810230086817, 34.078657544570106 ], [ 136.098142305870141, 34.043335690193189 ], [ 136.103737024160068, 34.022463685334102 ], [ 136.069103053793867, 34.030262016819918 ], [ 136.049654747357494, 34.031408830273712 ], [ 136.040330216874281, 34.037830985614974 ], [ 136.032071347017734, 34.029344566056878 ], [ 136.021681155907885, 34.033014369109026 ], [ 136.006229076821427, 34.006637659671725 ], [ 135.993441149301617, 33.999986141639702 ], [ 135.979587561155142, 33.985765654812639 ], [ 135.959606424405422, 33.977508597945302 ], [ 135.92737019044921, 33.975903059109989 ], [ 135.918578490279344, 33.969480903768734 ], [ 135.895666786806345, 33.942186743568385 ], [ 135.902327165722909, 33.922002826781579 ], [ 135.872222253019999, 33.916956847584878 ], [ 135.862364892223468, 33.896772930798065 ], [ 135.838653943280462, 33.892185676982884 ], [ 135.819205636844089, 33.902048272685526 ], [ 135.804819218384296, 33.891956314292123 ], [ 135.780841854284631, 33.884846070878588 ], [ 135.760594302378252, 33.882323081280241 ], [ 135.744875808135134, 33.887139697786182 ], [ 135.727292407795403, 33.899754645777939 ], [ 135.693457682899208, 33.899984008468692 ], [ 135.674009376462806, 33.897002293488825 ], [ 135.659356542846353, 33.880946905135687 ], [ 135.63511276359003, 33.871313672123797 ], [ 135.624189742166834, 33.895396754653511 ], [ 135.605274266043779, 33.901130821922493 ], [ 135.614598796526991, 33.916727484894118 ], [ 135.623923327010175, 33.949755712363441 ], [ 135.634313518120052, 33.946085909311293 ], [ 135.6425723879766, 33.967187276861139 ], [ 135.63777691515665, 33.988059281720226 ], [ 135.627120308890142, 33.999986141639702 ], [ 135.608204832767086, 34.009160649270072 ], [ 135.59754822650055, 34.008701923888552 ], [ 135.600745208380516, 34.030950104892199 ], [ 135.597015396187231, 34.041271425976362 ], [ 135.582362562570779, 34.055033187421913 ], [ 135.572238786617589, 34.054574462040392 ], [ 135.542666704227997, 34.071547301156571 ], [ 135.552524065024528, 34.083703523766808 ], [ 135.54932708314459, 34.094483570232491 ], [ 135.583428223197416, 34.119254740834485 ], [ 135.590355017270667, 34.139897383002811 ], [ 135.60740558729708, 34.150448066777734 ], [ 135.62498898763684, 34.155494045974436 ], [ 135.626054648263477, 34.166732817821639 ], [ 135.644170878916555, 34.17957712850415 ], [ 135.637244084843331, 34.200907858744756 ], [ 135.652163333616443, 34.215357708262587 ], [ 135.671345224896186, 34.221091775531562 ], [ 135.681735416006035, 34.219256874005495 ], [ 135.712373159022263, 34.205495112559944 ], [ 135.729956559362023, 34.218339423242455 ], [ 135.732354295771984, 34.230725008543452 ], [ 135.721697689505476, 34.258248531434553 ], [ 135.703847874009057, 34.272010292880104 ], [ 135.682001831162694, 34.270863479426311 ], [ 135.671345224896186, 34.298387002317412 ], [ 135.671345224896186, 34.313524939907524 ], [ 135.663619185352957, 34.323846260991687 ], [ 135.666283336919577, 34.351599146573548 ], [ 135.656958806436393, 34.3704068872158 ], [ 135.645769369856538, 34.380498845609203 ], [ 135.666016921762917, 34.393113793600961 ], [ 135.676939943186113, 34.395866145890068 ], [ 135.677206358342772, 34.409857270026379 ], [ 135.669480318799543, 34.416738150749154 ], [ 135.686797303982615, 34.442197409423429 ], [ 135.682534661476012, 34.491051662555137 ], [ 135.676140697716107, 34.499996807494746 ], [ 135.679604094752733, 34.522244988498386 ], [ 135.664951261136281, 34.527749693076608 ], [ 135.655893145809728, 34.544034444120513 ], [ 135.66521767629294, 34.562612822072005 ], [ 135.675874282559448, 34.567429438577946 ], [ 135.684665982729314, 34.581649925405017 ], [ 135.673742961306147, 34.600457666047269 ], [ 135.661754279256314, 34.611467075203713 ], [ 135.669213903642884, 34.649770644560498 ], [ 135.680936170536057, 34.677294167451599 ], [ 135.675874282559448, 34.687615488535762 ], [ 135.68066975537937, 34.702753426125867 ], [ 135.706512025575677, 34.721331804077366 ], [ 135.702249383069073, 34.746791062751633 ], [ 135.712639574178922, 34.750002140422268 ], [ 135.714238065118906, 34.77798438869489 ], [ 135.732087880615325, 34.775461399096535 ], [ 135.739281089845207, 34.750002140422268 ], [ 135.756065244714989, 34.735093565522916 ], [ 135.75846298112495, 34.724313519057233 ], [ 135.796293933371089, 34.720643716005085 ], [ 135.814942994337486, 34.712157296446996 ], [ 135.835456961400524, 34.709863669539402 ], [ 135.855970928463563, 34.702524063435114 ], [ 135.874886404586618, 34.708028768013335 ], [ 135.893002635239696, 34.706193866487254 ], [ 135.899929429312948, 34.726377783274067 ], [ 135.9145822629294, 34.741056995482651 ], [ 135.946019251415635, 34.735093565522916 ], [ 135.976923409588522, 34.737845917812024 ], [ 135.98518227944507, 34.731423762470769 ], [ 135.989711337108332, 34.711927933756236 ], [ 136.011557379954695, 34.71330410990079 ], [ 136.031005686391097, 34.706423229178014 ], [ 136.043793613910907, 34.722707980221919 ], [ 136.04805625641751, 34.737845917812024 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1485, "NAME_1": "Niigata", "VARNAME_1": "", "HASC_1": "JP.NI", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.504137585692717, 38.332647370080849 ], [ 138.514527776802566, 38.332876732771609 ], [ 138.517991173839164, 38.320491147470612 ], [ 138.511863625235918, 38.313380904057077 ], [ 138.507867397885974, 38.294802526105585 ], [ 138.509998719139276, 38.267508365905243 ], [ 138.503338340222712, 38.240214205704895 ], [ 138.492415318799544, 38.220030288918089 ], [ 138.492948149112863, 38.204662988637224 ], [ 138.482291542846355, 38.193194854099261 ], [ 138.470569275953181, 38.169799859641827 ], [ 138.4604455, 38.162689616228292 ], [ 138.450055308890143, 38.138147808317058 ], [ 138.435935305587009, 38.117275803457972 ], [ 138.436734551056986, 38.083100762534848 ], [ 138.445792666383539, 38.074384980285998 ], [ 138.474831918459785, 38.063375571129555 ], [ 138.491349658172879, 38.069797726470817 ], [ 138.520655325405812, 38.071861990687651 ], [ 138.535041743865605, 38.078972234101187 ], [ 138.560351183748566, 38.086311840205482 ], [ 138.569409299075119, 38.083100762534848 ], [ 138.573671941581722, 38.061999394985008 ], [ 138.563015335315214, 38.041356752816675 ], [ 138.553424389675342, 38.030576706350999 ], [ 138.549428162325398, 38.01291577916254 ], [ 138.523053061815773, 37.97965818900245 ], [ 138.503871170536058, 37.9445656973163 ], [ 138.498809282559449, 37.923923055147966 ], [ 138.485222109569634, 37.916812811734431 ], [ 138.471368521423159, 37.897546345710666 ], [ 138.45565002718007, 37.893417817276998 ], [ 138.441263608720277, 37.882408408120554 ], [ 138.427143605417143, 37.878738605068406 ], [ 138.399436429124194, 37.859930864426154 ], [ 138.381853028784434, 37.843187388000736 ], [ 138.361339061721395, 37.830801802699739 ], [ 138.331766979331803, 37.824609010049244 ], [ 138.309920936485469, 37.828049450410631 ], [ 138.292870366459027, 37.82231538314165 ], [ 138.280881684409195, 37.811535336675966 ], [ 138.248112620139665, 37.803048917117877 ], [ 138.216942046810118, 37.810159160531413 ], [ 138.204953364760286, 37.823003471213923 ], [ 138.216675631653459, 37.836535869968714 ], [ 138.2643639446961, 37.843875476073009 ], [ 138.279283193469212, 37.861307040570708 ], [ 138.28940696942243, 37.884472672337388 ], [ 138.288607723952424, 37.898005071092179 ], [ 138.278483947999234, 37.907408941413308 ], [ 138.309388106172122, 37.942272070408706 ], [ 138.327237921668541, 37.948694225749961 ], [ 138.341091509815016, 37.959932997597164 ], [ 138.340292264345038, 37.979199463620937 ], [ 138.321110373065295, 37.997777841572429 ], [ 138.3045926333522, 38.006493623821278 ], [ 138.275819796432614, 38.003511908841411 ], [ 138.273155644865994, 37.993190587757248 ], [ 138.262765453756117, 37.984933530889919 ], [ 138.253174508116274, 37.964061526030832 ], [ 138.230795634956593, 37.976676474022582 ], [ 138.233726201679872, 37.984245442817638 ], [ 138.233459786523213, 38.009704701491906 ], [ 138.223336010570023, 38.022778374865183 ], [ 138.239587335126458, 38.029429892897198 ], [ 138.232926956209894, 38.061081944221968 ], [ 138.248112620139665, 38.075990519121312 ], [ 138.242517901849737, 38.086770565586995 ], [ 138.260367717346156, 38.096862523980406 ], [ 138.272089984239329, 38.114982176550377 ], [ 138.272889229709307, 38.123468596108466 ], [ 138.291271875519044, 38.136542269481744 ], [ 138.305658293978865, 38.167735595424993 ], [ 138.311253012268764, 38.169341134260307 ], [ 138.330701318705167, 38.199387646749763 ], [ 138.348018303888239, 38.20236936172963 ], [ 138.388246992544339, 38.233103962291359 ], [ 138.391976804737624, 38.240672931086415 ], [ 138.419683981030573, 38.254893417913486 ], [ 138.429008511513757, 38.255122780604246 ], [ 138.439931532936953, 38.266820277832963 ], [ 138.444194175443556, 38.27874713775244 ], [ 138.440464363250271, 38.287921645382809 ], [ 138.454850781710064, 38.308793650241896 ], [ 138.479893806436394, 38.328289478956428 ], [ 138.504137585692717, 38.332647370080849 ] ] ], [ [ [ 139.256227572952042, 38.490678264013937 ], [ 139.258891724518662, 38.482650569837361 ], [ 139.254096251698741, 38.461090476906001 ], [ 139.244771721215557, 38.450310430440318 ], [ 139.223458508682512, 38.436089943613247 ], [ 139.218130205549244, 38.447558078151204 ], [ 139.22159360258587, 38.459026212689167 ], [ 139.236779266515668, 38.46888880839181 ], [ 139.24423889090221, 38.483109295218881 ], [ 139.256227572952042, 38.490678264013937 ] ] ], [ [ [ 139.741369573235175, 37.820251118924816 ], [ 139.731512212438645, 37.809241709768372 ], [ 139.661178611079634, 37.751212949006302 ], [ 139.661178611079634, 37.739974177159098 ], [ 139.636934831823311, 37.716579182701658 ], [ 139.625212564930166, 37.698688892822446 ], [ 139.631606528690071, 37.688826297119796 ], [ 139.613756713193652, 37.681716053706261 ], [ 139.608694825217043, 37.672770908766651 ], [ 139.574593685164189, 37.652816354670605 ], [ 139.554346133257809, 37.646852924710863 ], [ 139.557276699981117, 37.636990329008221 ], [ 139.550083490751206, 37.627357095996331 ], [ 139.558075945451094, 37.599374847723709 ], [ 139.567134060777647, 37.594787593908528 ], [ 139.573794439694211, 37.575979853266276 ], [ 139.569265382030949, 37.543180988487713 ], [ 139.591377840033971, 37.520015356721032 ], [ 139.588447273310663, 37.510152761018389 ], [ 139.563937078897681, 37.50097825338802 ], [ 139.543689526991301, 37.508317859492315 ], [ 139.522376314458285, 37.510382123709149 ], [ 139.489074419875408, 37.507400408729275 ], [ 139.48108196517552, 37.500060802624986 ], [ 139.461367243582487, 37.512905113307497 ], [ 139.437656294639481, 37.511299574472183 ], [ 139.417142327576443, 37.504877419130928 ], [ 139.410215533503191, 37.483546688890321 ], [ 139.409416288033214, 37.462674684031235 ], [ 139.400891003020007, 37.456711254071493 ], [ 139.378778545016985, 37.460610419814401 ], [ 139.366523447810494, 37.466573849774136 ], [ 139.338549856360885, 37.454876352545419 ], [ 139.325229098527728, 37.457858067525294 ], [ 139.305780792091355, 37.454876352545419 ], [ 139.286598900811612, 37.44707802105961 ], [ 139.263953612495271, 37.445013756842776 ], [ 139.254629082012059, 37.449601010657958 ], [ 139.239976248395607, 37.441802679172149 ], [ 139.219728696489227, 37.440426503027595 ], [ 139.200280390052853, 37.408086363630545 ], [ 139.214933223669306, 37.389737348369813 ], [ 139.234647945262367, 37.385150094554625 ], [ 139.239443418082288, 37.363590001623265 ], [ 139.236512851359009, 37.342717996764179 ], [ 139.227454736032456, 37.336754566804437 ], [ 139.224790584465836, 37.31152467082093 ], [ 139.211736241789339, 37.281707521022227 ], [ 139.180299253303133, 37.253725272749605 ], [ 139.168044156096641, 37.233311993272039 ], [ 139.197882653642864, 37.200742491184236 ], [ 139.232516624009065, 37.194090973152221 ], [ 139.247169457625517, 37.176659408654523 ], [ 139.256227572952042, 37.15647549186771 ], [ 139.250100024348797, 37.144548631948233 ], [ 139.246370212155512, 37.124135352470667 ], [ 139.238377757455623, 37.104410161065374 ], [ 139.257826063892026, 37.058537622913533 ], [ 139.258092479048685, 37.037206892672934 ], [ 139.248767948565501, 37.016334887813848 ], [ 139.256493988108701, 36.992939893356407 ], [ 139.2543626668554, 36.961517204722398 ], [ 139.242107569648908, 36.94477372829698 ], [ 139.230385302755735, 36.95853548974253 ], [ 139.209871335692696, 36.952801422473549 ], [ 139.183496235183071, 36.961517204722398 ], [ 139.178967177519809, 36.971609163115801 ], [ 139.177901516893144, 36.992251805284127 ], [ 139.157387549830105, 37.004866753275884 ], [ 139.133943016043787, 37.026197483516491 ], [ 139.129680373537184, 37.03560135383762 ], [ 139.110232067100782, 37.052574192953799 ], [ 139.100108291147592, 37.055555907933666 ], [ 139.093714327387687, 37.038812431508248 ], [ 139.093714327387687, 37.016793613195361 ], [ 139.08545545753114, 37.009224644400312 ], [ 139.058281111551509, 36.995462882954754 ], [ 139.052153562948263, 36.987205826087425 ], [ 139.031639595885224, 36.981242396127691 ], [ 139.021515819932034, 36.983994748416798 ], [ 139.000469022555677, 36.976196416930989 ], [ 138.969032034069443, 36.975508328858709 ], [ 138.968232788599465, 36.943397552152419 ], [ 138.982619207059258, 36.896836925928305 ], [ 138.977823734239337, 36.886744967534902 ], [ 138.957842597489616, 36.892249672113124 ], [ 138.935197309173276, 36.890873495968563 ], [ 138.922409381653438, 36.872983206089351 ], [ 138.920278060400136, 36.852340563921018 ], [ 138.933065987919974, 36.834220911351046 ], [ 138.915482587580215, 36.825963854483717 ], [ 138.884844844563986, 36.82275277681309 ], [ 138.857404083427696, 36.808761652676779 ], [ 138.83582445573802, 36.8131195438012 ], [ 138.824635019158166, 36.809908466130572 ], [ 138.833426719328031, 36.789724549343759 ], [ 138.829963322291434, 36.769081907175433 ], [ 138.824102188844847, 36.760824850308104 ], [ 138.803055391468462, 36.757155047255957 ], [ 138.789734633635334, 36.742017109665852 ], [ 138.767888590788971, 36.74591627540876 ], [ 138.74071424480934, 36.75898994878203 ], [ 138.728991977916195, 36.760136762235831 ], [ 138.725528580879569, 36.749586078460908 ], [ 138.710609332106458, 36.734448140870796 ], [ 138.69782140458662, 36.741099658902812 ], [ 138.691960271140033, 36.760595487617344 ], [ 138.672511964703659, 36.770687446010754 ], [ 138.676508192053603, 36.780779404404157 ], [ 138.687964043790089, 36.785825383600859 ], [ 138.699153480369944, 36.805550575006151 ], [ 138.687164798320111, 36.824128952957643 ], [ 138.694358007550022, 36.853716740065579 ], [ 138.685566307380128, 36.860368258097594 ], [ 138.665318755473749, 36.864267423840502 ], [ 138.644538373254051, 36.872065755326311 ], [ 138.625090066817648, 36.884910066008828 ], [ 138.616831196961101, 36.904864620104874 ], [ 138.605641760381275, 36.904176532032601 ], [ 138.586193453944873, 36.92573662496396 ], [ 138.590456096451476, 36.979636857292377 ], [ 138.576868923461689, 37.000050136769943 ], [ 138.56914288391846, 37.017940426649162 ], [ 138.535840989335583, 37.019316602793715 ], [ 138.527848534635694, 37.027344296970284 ], [ 138.516925513212527, 37.026426846207251 ], [ 138.490816827859561, 37.017022975886121 ], [ 138.467372294073215, 37.015417437050807 ], [ 138.436201720743668, 37.003949302512851 ], [ 138.39783793818421, 36.994316069500961 ], [ 138.382119443941093, 36.977343230384783 ], [ 138.366933780011323, 36.950049070184434 ], [ 138.360806231408077, 36.930553241469909 ], [ 138.342157170441681, 36.919543832313465 ], [ 138.321376788221954, 36.92206682191182 ], [ 138.300329990845597, 36.908763785847782 ], [ 138.296067348338994, 36.897983739382099 ], [ 138.299797160532279, 36.879405361430607 ], [ 138.294468857399011, 36.848670760868877 ], [ 138.274754135805949, 36.839725615929268 ], [ 138.274754135805949, 36.850964387776472 ], [ 138.260101302189497, 36.865414237294296 ], [ 138.249977526236307, 36.861744434242148 ], [ 138.225733746979984, 36.861973796932908 ], [ 138.216942046810118, 36.86793722689265 ], [ 138.207084686013587, 36.855092916210133 ], [ 138.165790336730822, 36.841101792073822 ], [ 138.135152593714594, 36.846835859342804 ], [ 138.102649944601723, 36.840184341310788 ], [ 138.085066544261963, 36.826193217174477 ], [ 138.075742013778779, 36.804862486933871 ], [ 138.055494461872399, 36.796834792757295 ], [ 138.048567667799148, 36.806926751150705 ], [ 138.03524690996602, 36.808991015367539 ], [ 138.007273318516411, 36.825046403720677 ], [ 138.023258227916187, 36.840184341310788 ], [ 138.018995585409584, 36.850505662394951 ], [ 138.035513325122679, 36.877799822595293 ], [ 138.016597848999623, 36.900506728980453 ], [ 137.989157087863333, 36.906699521630955 ], [ 137.95718726906378, 36.901882905125007 ], [ 137.951059720460535, 36.909910599301583 ], [ 137.922286883540949, 36.916562117333598 ], [ 137.895378952718005, 36.907158247012468 ], [ 137.870868758305022, 36.91289231428145 ], [ 137.867671776425055, 36.903029718578807 ], [ 137.874864985654966, 36.860368258097594 ], [ 137.863142718761793, 36.851193750467225 ], [ 137.859412906568508, 36.840413704001548 ], [ 137.838099694035463, 36.819082973760942 ], [ 137.835435542468844, 36.807156113841458 ], [ 137.819717048225726, 36.793394352395907 ], [ 137.800268741789353, 36.784449207456305 ], [ 137.78588232332956, 36.770458083319994 ], [ 137.765901186579839, 36.764265290669492 ], [ 137.753379674216688, 36.782614305930224 ], [ 137.757375901566633, 36.792476901632874 ], [ 137.741657407323515, 36.815871896090314 ], [ 137.735796273876929, 36.832615372515733 ], [ 137.737661179973571, 36.853716740065579 ], [ 137.731000801057007, 36.873441931470865 ], [ 137.716347967440527, 36.888579869060976 ], [ 137.72061060994713, 36.904176532032601 ], [ 137.720344194790471, 36.927112801108521 ], [ 137.715015891657231, 36.937204759501924 ], [ 137.69263701849755, 36.940186474481791 ], [ 137.664397011891282, 36.953948235927342 ], [ 137.637755496224997, 36.98032494536465 ], [ 137.653207575311427, 36.981242396127691 ], [ 137.680381921291058, 36.990646266448813 ], [ 137.723541176670437, 37.001426312914496 ], [ 137.762437789543213, 37.016334887813848 ], [ 137.81119176321252, 37.028491110424085 ], [ 137.842362336542095, 37.043629048014189 ], [ 137.895378952718005, 37.055097182552146 ], [ 137.914827259154379, 37.062207425965681 ], [ 137.940136699037367, 37.075739824720472 ], [ 137.951592550773881, 37.087437321949196 ], [ 137.960650666100406, 37.088584135402989 ], [ 138.005141997263109, 37.115419570221817 ], [ 138.018196339939607, 37.114272756768017 ], [ 138.04776842232917, 37.127346430141294 ], [ 138.061089180162327, 37.143860543875959 ], [ 138.080271071442041, 37.155787403795436 ], [ 138.094657489901834, 37.172301517530094 ], [ 138.122098251038125, 37.17046661600402 ], [ 138.131689196677996, 37.163815097972005 ], [ 138.150604672801052, 37.161292108373658 ], [ 138.171651470177409, 37.162897647208972 ], [ 138.194829588807096, 37.1700078906225 ], [ 138.215876386183453, 37.169090439859467 ], [ 138.253174508116274, 37.183769652068058 ], [ 138.289140554265742, 37.206705921143978 ], [ 138.339493018875032, 37.242027775520889 ], [ 138.38052095300111, 37.274367914917939 ], [ 138.439132287466975, 37.32436898150344 ], [ 138.446591911853517, 37.32436898150344 ], [ 138.46097833031331, 37.336525204113677 ], [ 138.488152676292941, 37.347993338651634 ], [ 138.51612626774255, 37.35670912090049 ], [ 138.527582119479035, 37.366342353912373 ], [ 138.537705895432225, 37.365654265840092 ], [ 138.563814580785191, 37.388819897606773 ], [ 138.585927038788213, 37.417948959333188 ], [ 138.606174590694593, 37.450518461420998 ], [ 138.61709761211776, 37.472307917043118 ], [ 138.61709761211776, 37.484922865034875 ], [ 138.630684785107576, 37.487216491942469 ], [ 138.648001770290676, 37.506253595275481 ], [ 138.65466214920724, 37.520703444793313 ], [ 138.676508192053603, 37.538823097363284 ], [ 138.713007068516418, 37.557401475314776 ], [ 138.724995750566251, 37.575062402503235 ], [ 138.731656129482815, 37.59088842816562 ], [ 138.74524330247263, 37.602127200012823 ], [ 138.759896136089083, 37.634926064791387 ], [ 138.770286327198932, 37.653045717361366 ], [ 138.786004821442049, 37.704193597400661 ], [ 138.783873500188747, 37.714514918484824 ], [ 138.793730860985278, 37.731487757601009 ], [ 138.801723315685166, 37.757405741656797 ], [ 138.807318033975065, 37.764515985070332 ], [ 138.819839546338244, 37.794333134869028 ], [ 138.842484834654584, 37.817728129326461 ], [ 138.863798047187601, 37.83538905651492 ], [ 138.922142966496779, 37.869793460128804 ], [ 139.006862986315582, 37.91199619522849 ], [ 139.059080357021514, 37.943648246553259 ], [ 139.092648666761022, 37.95809809607109 ], [ 139.122753579463932, 37.962226624504751 ], [ 139.128881128067178, 37.95809809607109 ], [ 139.168310571253301, 37.973236033661195 ], [ 139.203477371932792, 37.984245442817638 ], [ 139.222392848055847, 37.987915245869786 ], [ 139.228253981502434, 38.000071468480023 ], [ 139.245837381842193, 38.004658722295204 ], [ 139.277007955171769, 38.022778374865183 ], [ 139.31217475585126, 38.047778908157937 ], [ 139.348940047470734, 38.081036498318014 ], [ 139.366257032653834, 38.098697425506472 ], [ 139.411547609286515, 38.154432559360956 ], [ 139.428864594469587, 38.17966245534447 ], [ 139.428864594469587, 38.20168127365735 ], [ 139.448312900905989, 38.232415874219086 ], [ 139.441119691676107, 38.245948272973877 ], [ 139.448579316062649, 38.273242433174218 ], [ 139.447247240279353, 38.296178702250138 ], [ 139.450977052472638, 38.309481738314176 ], [ 139.450977052472638, 38.361547069116511 ], [ 139.459502337485844, 38.37943735899573 ], [ 139.454706864665894, 38.389299954698373 ], [ 139.462166489052464, 38.40099745192709 ], [ 139.481881210645525, 38.440677197428428 ], [ 139.497066874575296, 38.457191311163093 ], [ 139.506924235371827, 38.483109295218881 ], [ 139.517314426481676, 38.494806792447598 ], [ 139.549284245281228, 38.542055506743992 ], [ 139.549550660437887, 38.54641339786842 ], [ 139.566068400150982, 38.539991242527165 ], [ 139.604965013023786, 38.519807325740352 ], [ 139.624946149773507, 38.522330315338706 ], [ 139.641730304643261, 38.508339191202396 ], [ 139.704071451302354, 38.500082134335059 ], [ 139.716592963665533, 38.495494880519878 ], [ 139.729114476028684, 38.483797383291162 ], [ 139.716592963665533, 38.467741994938017 ], [ 139.723253342582098, 38.448475528914244 ], [ 139.718457869762176, 38.417282202970995 ], [ 139.708866924122304, 38.404208529597717 ], [ 139.707801263495639, 38.393657845822794 ], [ 139.730979382125327, 38.382648436666358 ], [ 139.733377118535287, 38.372097752891435 ], [ 139.749362027935064, 38.359024079518157 ], [ 139.763482031238198, 38.358106628755124 ], [ 139.772540146564722, 38.351684473413862 ], [ 139.792521283314443, 38.34709721959868 ], [ 139.813035250377482, 38.352601924176902 ], [ 139.832483556813884, 38.341363152329698 ], [ 139.842873747923733, 38.339986976185145 ], [ 139.878306963759911, 38.313839629438597 ], [ 139.882303191109855, 38.303977033735954 ], [ 139.90148508238957, 38.290673997671917 ], [ 139.902017912702888, 38.279893951206233 ], [ 139.884700927519816, 38.261315573254741 ], [ 139.861522808890129, 38.227140532331624 ], [ 139.829819405247264, 38.214754947030627 ], [ 139.791988453001125, 38.19273612871774 ], [ 139.767478258588142, 38.195947206388368 ], [ 139.756555237164946, 38.190901227191674 ], [ 139.744300139958455, 38.197323382532929 ], [ 139.711797490845584, 38.201451910966597 ], [ 139.685688805492646, 38.168653046188027 ], [ 139.693947675349193, 38.148239766710461 ], [ 139.693681260192506, 38.116128990004171 ], [ 139.681159747829355, 38.097550612052679 ], [ 139.676630690166093, 38.083330125225608 ], [ 139.692615599565869, 38.067733462253983 ], [ 139.694480505662511, 38.053054250045392 ], [ 139.679028426576053, 38.038145675146048 ], [ 139.659313704982992, 38.032411607877066 ], [ 139.655850307946395, 38.000071468480023 ], [ 139.642529550113238, 37.982410541291564 ], [ 139.647857853246506, 37.961997261813998 ], [ 139.640931059173255, 37.930574573179989 ], [ 139.633471434786713, 37.923005604384933 ], [ 139.629475207436769, 37.905344677196474 ], [ 139.638799737919953, 37.882637770811314 ], [ 139.658514459513015, 37.869564097438044 ], [ 139.662777102019618, 37.858784050972361 ], [ 139.68222540845602, 37.848692092578958 ], [ 139.696078996602495, 37.845939740289843 ], [ 139.718724284918835, 37.851215082177305 ], [ 139.722720512268779, 37.839746947639348 ], [ 139.741369573235175, 37.820251118924816 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1486, "NAME_1": "Oita", "VARNAME_1": "", "HASC_1": "JP.OT", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.076072685730452, 32.976569815472189 ], [ 132.078470422140413, 32.960514427119044 ], [ 132.066748155247268, 32.964413592861952 ], [ 132.076072685730452, 32.976569815472189 ] ] ], [ [ [ 131.934606237542454, 33.016708286355048 ], [ 131.942865107399001, 32.994230742660648 ], [ 131.916490006889376, 32.98069834390585 ], [ 131.91036245828613, 32.988037950010145 ], [ 131.924216046432605, 32.999964809929622 ], [ 131.921019064552667, 33.012121032539859 ], [ 131.934606237542454, 33.016708286355048 ] ] ], [ [ [ 131.778753370894663, 33.253181220527772 ], [ 131.769162425254819, 33.241254360608295 ], [ 131.75424317648168, 33.241713085989815 ], [ 131.75664091289164, 33.252722495146259 ], [ 131.774757143544718, 33.246300339804996 ], [ 131.778753370894663, 33.253181220527772 ] ] ], [ [ [ 131.962579828992062, 33.28024601803736 ], [ 131.945795674122309, 33.27061278502547 ], [ 131.940200955832381, 33.278181753820526 ], [ 131.962579828992062, 33.28024601803736 ] ] ], [ [ [ 131.877326978859941, 32.738491342464144 ], [ 131.857612257266879, 32.733445363267442 ], [ 131.848554141940355, 32.738950067845664 ], [ 131.851484708663634, 32.751335653146661 ], [ 131.846689235843712, 32.772895746078021 ], [ 131.861874899773483, 32.805694610856591 ], [ 131.850152632880338, 32.81441039310544 ], [ 131.818715644394103, 32.824272988808083 ], [ 131.799533753114389, 32.820373823065175 ], [ 131.789676392317858, 32.830465781458585 ], [ 131.761969216024909, 32.833218133747692 ], [ 131.737991851925244, 32.826337253024917 ], [ 131.730532227538674, 32.794226476318627 ], [ 131.720674866742172, 32.787345595595852 ], [ 131.717744300018865, 32.777253637202449 ], [ 131.705755617969032, 32.769684668407393 ], [ 131.67112164760286, 32.763262513066138 ], [ 131.625031825500173, 32.771060844551954 ], [ 131.592262761230643, 32.770602119170434 ], [ 131.577077097300872, 32.755005456198809 ], [ 131.565887660721017, 32.751794378528174 ], [ 131.541377466308035, 32.755234818889562 ], [ 131.52006425377499, 32.764409326519932 ], [ 131.510739723291806, 32.777024274511689 ], [ 131.519797838618331, 32.797437553989255 ], [ 131.491557832012063, 32.816245294631514 ], [ 131.477437828708929, 32.834135584510726 ], [ 131.460920088995834, 32.826566615715677 ], [ 131.438541215836153, 32.824043626117323 ], [ 131.432946497546254, 32.814869118486953 ], [ 131.418293663929774, 32.809823139290252 ], [ 131.374867993393735, 32.80408907202127 ], [ 131.355419686957333, 32.80454779740279 ], [ 131.341566098810858, 32.830236418767825 ], [ 131.33090949254435, 32.829318968004785 ], [ 131.315990243771239, 32.847897345956284 ], [ 131.295209861551513, 32.855466314751332 ], [ 131.276294385428457, 32.867393174670809 ], [ 131.275228724801821, 32.877943858445732 ], [ 131.259776645715363, 32.883677925714714 ], [ 131.2552475880521, 32.921522769689979 ], [ 131.249919284918832, 32.930009189248068 ], [ 131.249919284918832, 32.960285064428284 ], [ 131.266170609475267, 32.971982561657001 ], [ 131.248853624292167, 32.98092770659661 ], [ 131.248853624292167, 32.993542654588367 ], [ 131.23047097848243, 33.007075053343158 ], [ 131.223544184409207, 33.027488332820724 ], [ 131.219015126745944, 33.049965876515131 ], [ 131.196103423272916, 33.074048959044845 ], [ 131.18491398669309, 33.073590233663325 ], [ 131.175589456209877, 33.083223466675207 ], [ 131.175323041053218, 33.100884393863666 ], [ 131.168129831823336, 33.116251694144538 ], [ 131.165998510570034, 33.133224533260716 ], [ 131.151345676953554, 33.14882119623234 ], [ 131.134295106927141, 33.162124232296378 ], [ 131.120974349093984, 33.166711486111559 ], [ 131.112981894394096, 33.17978515948483 ], [ 131.103657363910912, 33.184372413300018 ], [ 131.084741887787828, 33.185060501372291 ], [ 131.062363014628147, 33.191712019404306 ], [ 131.041582632408449, 33.190794568641273 ], [ 131.022667156285394, 33.177491532577235 ], [ 130.999755452812366, 33.177491532577235 ], [ 130.989898092015864, 33.166711486111559 ], [ 130.988832431389199, 33.14882119623234 ], [ 130.983237713099271, 33.13505943478679 ], [ 130.996558470932428, 33.124050025630346 ], [ 131.000021867969053, 33.11326997916467 ], [ 131.025597723008673, 33.083223466675207 ], [ 131.013342625802181, 33.066479990249789 ], [ 131.016539607682148, 33.046984161535264 ], [ 131.004018095318997, 33.028405783583764 ], [ 130.991762998112506, 33.020148726716435 ], [ 130.972314691676104, 33.020378089407195 ], [ 130.952067139769724, 33.047442886916777 ], [ 130.920097320970171, 33.049736513824371 ], [ 130.913436942053607, 33.05845229607322 ], [ 130.902513920630412, 33.060745922980814 ], [ 130.889459577953943, 33.083223466675207 ], [ 130.864682968384301, 33.091939248924064 ], [ 130.845234661947899, 33.090792435470263 ], [ 130.845767492261217, 33.10317802077126 ], [ 130.863350892600977, 33.113728704546183 ], [ 130.877204480747451, 33.145380755870953 ], [ 130.87773731106077, 33.166711486111559 ], [ 130.88786108701396, 33.172904278762054 ], [ 130.884930520290681, 33.183684325227738 ], [ 130.865215798697619, 33.191253294022793 ], [ 130.845234661947899, 33.203868242014551 ], [ 130.842570510381279, 33.214189563098714 ], [ 130.846566737731223, 33.230015588761091 ], [ 130.828450507078145, 33.238043282937667 ], [ 130.834311640524732, 33.254557396672325 ], [ 130.844435416477921, 33.253869308600052 ], [ 130.860420325877698, 33.265796168519529 ], [ 130.855092022744429, 33.275888126912932 ], [ 130.867879950264239, 33.29309032871987 ], [ 130.853227116647787, 33.333228799602729 ], [ 130.838041452718016, 33.340339043016264 ], [ 130.859088250094374, 33.355018255224856 ], [ 130.862018816817653, 33.3699268301242 ], [ 130.886795426387323, 33.375202172011662 ], [ 130.892922974990569, 33.406395497954918 ], [ 130.893455805303887, 33.42451515052489 ], [ 130.902247505473753, 33.445616518074736 ], [ 130.912904111740261, 33.44653396883777 ], [ 130.931020342393339, 33.463506807953955 ], [ 130.933950909116646, 33.476121755945712 ], [ 130.956063367119668, 33.486901802411388 ], [ 130.983770543412618, 33.504333366909087 ], [ 131.012010550018886, 33.506626993816681 ], [ 131.030926026141941, 33.514195962611737 ], [ 131.053837729614941, 33.506626993816681 ], [ 131.080212830124566, 33.502727828073773 ], [ 131.150280016326917, 33.50158101461998 ], [ 131.177187947149861, 33.507315081888962 ], [ 131.170793983389956, 33.527040273294247 ], [ 131.18757813825971, 33.539425858595244 ], [ 131.189176629199693, 33.562132764980404 ], [ 131.180651344186487, 33.56878428301242 ], [ 131.175323041053218, 33.583234132530251 ], [ 131.18757813825971, 33.600895059718709 ], [ 131.184381156379771, 33.606170401606171 ], [ 131.204628708286151, 33.616721085381094 ], [ 131.218215881275938, 33.604335500080097 ], [ 131.235532866459039, 33.60112442240947 ], [ 131.252317021328793, 33.602271235863263 ], [ 131.266969854945245, 33.593326090923654 ], [ 131.27549513995848, 33.582087319076457 ], [ 131.289348728104926, 33.57864687871507 ], [ 131.321584962061138, 33.583234132530251 ], [ 131.341566098810858, 33.570848547229254 ], [ 131.358350253680641, 33.577500065261269 ], [ 131.419359324556439, 33.573600899518368 ], [ 131.425753288316344, 33.593784816305174 ], [ 131.462784995092477, 33.618785349597928 ], [ 131.473708016515673, 33.620390888433242 ], [ 131.480368395432237, 33.641950981364602 ], [ 131.493156322952046, 33.644244608272196 ], [ 131.50461217468856, 33.655942105500912 ], [ 131.500083117025298, 33.671538768472544 ], [ 131.522461990184979, 33.674520483452412 ], [ 131.555763884767828, 33.68231881493822 ], [ 131.565621245564358, 33.676814110359999 ], [ 131.573347285107587, 33.686676706062649 ], [ 131.58533596715742, 33.692869498713144 ], [ 131.606649179690436, 33.679795825339873 ], [ 131.630360128633441, 33.672226856544818 ], [ 131.635954846923369, 33.682089452247467 ], [ 131.647410698659854, 33.663511074295968 ], [ 131.660465041336352, 33.669933229637223 ], [ 131.683909575122698, 33.639198629075494 ], [ 131.693234105605882, 33.639886717147775 ], [ 131.700693729992452, 33.613510007710467 ], [ 131.715080148452245, 33.604794225461617 ], [ 131.733462794261982, 33.580023054859623 ], [ 131.74411940052849, 33.541719485502838 ], [ 131.732130718478658, 33.517177677591604 ], [ 131.729466566912038, 33.494470771206444 ], [ 131.739323927708568, 33.494012045824924 ], [ 131.739590342865228, 33.465571072170789 ], [ 131.73133147300868, 33.468094061769136 ], [ 131.722539772838815, 33.451350585343718 ], [ 131.712682412042284, 33.440799901568795 ], [ 131.704689957342396, 33.422909611689576 ], [ 131.702025805775747, 33.405936772573398 ], [ 131.686840141845977, 33.405936772573398 ], [ 131.659932211023033, 33.422221523617296 ], [ 131.634622771140045, 33.415799368276041 ], [ 131.63568843176671, 33.401120156067449 ], [ 131.646345038033218, 33.393321824581641 ], [ 131.644213716779916, 33.375202172011662 ], [ 131.601587291713855, 33.371073643578001 ], [ 131.596258988580587, 33.363504674782945 ], [ 131.597324649207252, 33.350431001409675 ], [ 131.586934458097403, 33.346302472976006 ], [ 131.562157848527733, 33.351807177554228 ], [ 131.552034072574543, 33.349513550646634 ], [ 131.539246145054733, 33.363504674782945 ], [ 131.529655199414861, 33.367403840525853 ], [ 131.499550286711951, 33.359834871730797 ], [ 131.49475481389203, 33.340797768397785 ], [ 131.503013683748577, 33.321531302374012 ], [ 131.503812929218554, 33.29331969141063 ], [ 131.513403874858426, 33.267172344664083 ], [ 131.535782748018107, 33.257768474342953 ], [ 131.551767657417884, 33.25730974896144 ], [ 131.588799364194017, 33.246070977114236 ], [ 131.60052163108719, 33.25685102357992 ], [ 131.614641634390324, 33.261897002776621 ], [ 131.69110278435258, 33.2800166553466 ], [ 131.691635614665898, 33.266713619282569 ], [ 131.705755617969032, 33.274053225386858 ], [ 131.728134491128714, 33.260062101250547 ], [ 131.735594115515283, 33.24767651594955 ], [ 131.746517136938451, 33.24836460402183 ], [ 131.752911100698384, 33.240795635226775 ], [ 131.773158652604764, 33.240795635226775 ], [ 131.777687710268026, 33.245612251732723 ], [ 131.79447186513778, 33.241713085989815 ], [ 131.833901308323902, 33.246759065186517 ], [ 131.889315660909773, 33.267172344664083 ], [ 131.903968494526225, 33.262814453539661 ], [ 131.892246227633052, 33.245382889041963 ], [ 131.878925469799924, 33.245153526351203 ], [ 131.876794148546622, 33.229327500688818 ], [ 131.857878672423539, 33.195840547837975 ], [ 131.833368478010556, 33.18070261024787 ], [ 131.82191262627407, 33.160289330770297 ], [ 131.821646211117411, 33.148133108160067 ], [ 131.806194132030953, 33.129554730208568 ], [ 131.810456774537556, 33.121985761413512 ], [ 131.825908853624014, 33.121527036031999 ], [ 131.845889990373735, 33.115104880690737 ], [ 131.869600939316712, 33.131160269043882 ], [ 131.881856036523203, 33.121756398722752 ], [ 131.896242454982996, 33.130472180971609 ], [ 131.912760194696119, 33.121985761413512 ], [ 131.897308115609661, 33.114875517999977 ], [ 131.89517679435636, 33.107077186514168 ], [ 131.876261318233304, 33.105012922297334 ], [ 131.864006221026784, 33.089645622016469 ], [ 131.862674145243489, 33.076113223261679 ], [ 131.879724715269901, 33.076571948643192 ], [ 131.886118679029806, 33.083452829365967 ], [ 131.91036245828613, 33.06785616639435 ], [ 131.937536804265761, 33.081617927839901 ], [ 131.948992656002247, 33.066479990249789 ], [ 131.96551039571537, 33.072902145591044 ], [ 131.969773038221973, 33.060975285671567 ], [ 131.986823608248386, 33.068544254466623 ], [ 131.98815568403171, 33.091021798161023 ], [ 132.007337575311425, 33.060745922980814 ], [ 131.974035680728576, 33.046066710772223 ], [ 131.942332277085683, 33.053406316876519 ], [ 131.922084725179303, 33.044919897318422 ], [ 131.919420573612683, 33.025194705913137 ], [ 131.901837173272924, 33.009598042941512 ], [ 131.908231137032828, 33.000423535311143 ], [ 131.898107361079639, 32.988267312700906 ], [ 131.913825855322756, 32.973588100492321 ], [ 131.926080952529247, 32.971523836275487 ], [ 131.937536804265761, 32.953174821014748 ], [ 131.949525486315594, 32.95890888828373 ], [ 131.960448507738761, 32.946523302982733 ], [ 131.972437189788593, 32.946523302982733 ], [ 131.982028135428465, 32.939413059569198 ], [ 132.010268142034732, 32.932990904227943 ], [ 132.03371267582105, 32.947670116436527 ], [ 132.053160982257452, 32.949275655271848 ], [ 132.080335328237055, 32.944917764147419 ], [ 132.083798725273681, 32.936890069970843 ], [ 132.027318712061145, 32.93551389382629 ], [ 132.008936066251408, 32.921064044308466 ], [ 132.010534557191392, 32.905926106718354 ], [ 131.984958702151744, 32.912577624750369 ], [ 131.988688514345029, 32.898127775232545 ], [ 131.999877950924883, 32.893311158726604 ], [ 131.994549647791615, 32.874962143465865 ], [ 131.97829832323518, 32.865787635835495 ], [ 131.974834926198554, 32.856383765514366 ], [ 131.960182092582102, 32.846291807120963 ], [ 131.959915677425442, 32.833447496438453 ], [ 131.9809624748018, 32.824731714189603 ], [ 131.997480214514894, 32.838264112944394 ], [ 132.009202481408067, 32.827484066478711 ], [ 131.993217572008291, 32.820144460374422 ], [ 131.971637944318616, 32.802942258567477 ], [ 131.947660580218951, 32.806153336238111 ], [ 131.947394165062292, 32.793767750937107 ], [ 131.937003973952443, 32.784134517925224 ], [ 131.917022837202722, 32.785510694069778 ], [ 131.894377548886382, 32.800648631659882 ], [ 131.88505301840317, 32.79078603595724 ], [ 131.893311888259717, 32.781611528326877 ], [ 131.868268863533416, 32.773125108768781 ], [ 131.879724715269901, 32.765326777282972 ], [ 131.87226509088336, 32.752941191981975 ], [ 131.886118679029806, 32.74628967394996 ], [ 131.877326978859941, 32.738491342464144 ] ] ], [ [ [ 131.669256741506217, 33.739888850318778 ], [ 131.688971463099278, 33.731631793451449 ], [ 131.664994098999614, 33.716723218552104 ], [ 131.656468813986407, 33.722227923130319 ], [ 131.63329069535672, 33.716493855861344 ], [ 131.643680886466598, 33.732549244214482 ], [ 131.654870323046424, 33.726356451563987 ], [ 131.669256741506217, 33.739888850318778 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1487, "NAME_1": "Okayama", "VARNAME_1": "", "HASC_1": "JP.OY", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.590376436202348, 34.362379193039231 ], [ 133.573592281332566, 34.34769998083064 ], [ 133.566399072102683, 34.353204685408862 ], [ 133.590376436202348, 34.362379193039231 ] ] ], [ [ [ 133.542421708003019, 34.40228830123133 ], [ 133.550414162702907, 34.396095508580828 ], [ 133.545618689882957, 34.366507721472892 ], [ 133.528035289543226, 34.378434581392369 ], [ 133.525903968289924, 34.388067814404259 ], [ 133.542421708003019, 34.40228830123133 ] ] ], [ [ [ 133.527502459229879, 34.416508788058394 ], [ 133.522174156096639, 34.398847860869942 ], [ 133.513648871083433, 34.389443990548813 ], [ 133.504857170913539, 34.402747026612843 ], [ 133.527502459229879, 34.416508788058394 ] ] ], [ [ [ 133.971083695073617, 34.475454999583512 ], [ 133.978809734616846, 34.476831175728066 ], [ 133.998524456209879, 34.461922600828714 ], [ 134.00065577746318, 34.443344222877222 ], [ 133.973747846640237, 34.452748093198352 ], [ 133.971083695073617, 34.475454999583512 ] ] ], [ [ [ 134.087507118535285, 34.496556367133358 ], [ 134.102692782465084, 34.489446123719823 ], [ 134.102692782465084, 34.47912480263566 ], [ 134.080047494148744, 34.458940885848847 ], [ 134.070456548508872, 34.467886030788456 ], [ 134.052073902699135, 34.472473284603637 ], [ 134.041950126745945, 34.479583528017173 ], [ 134.043815032842588, 34.489446123719823 ], [ 134.059533527085676, 34.488528672956782 ], [ 134.070722963665531, 34.497015092514872 ], [ 134.087507118535285, 34.496556367133358 ] ] ], [ [ [ 133.674563625707805, 34.504813424000687 ], [ 133.683621741034358, 34.50229043440234 ], [ 133.683888156191017, 34.491051662555137 ], [ 133.668968907417877, 34.489904849101336 ], [ 133.674563625707805, 34.504813424000687 ] ] ], [ [ [ 134.022235405152884, 34.507336413599035 ], [ 134.022235405152884, 34.49242783869969 ], [ 134.007582571536432, 34.498161905968672 ], [ 134.022235405152884, 34.507336413599035 ] ] ], [ [ [ 134.352590199414863, 34.562612822072005 ], [ 134.345130575028293, 34.544263806811266 ], [ 134.355254350981511, 34.537841651470011 ], [ 134.356586426764807, 34.511235579341943 ], [ 134.349393217534924, 34.505272149382208 ], [ 134.351258123631567, 34.491739750627417 ], [ 134.343265668931679, 34.483712056450841 ], [ 134.354188690354846, 34.477060538418826 ], [ 134.348860387221578, 34.459628973921127 ], [ 134.330211326255181, 34.445179124403296 ], [ 134.321153210928657, 34.45618853355974 ], [ 134.303303395432238, 34.457794072395053 ], [ 134.292380374009042, 34.44678466323861 ], [ 134.284121504152495, 34.460775787374921 ], [ 134.312361510758763, 34.460317061993408 ], [ 134.317689813892031, 34.465821766571622 ], [ 134.309697359192143, 34.477748626491106 ], [ 134.29531094073235, 34.4788954399449 ], [ 134.269468670536043, 34.468574118860737 ], [ 134.259877724896171, 34.455729808178219 ], [ 134.239097342676473, 34.414673886532327 ], [ 134.224444509060021, 34.42407775685345 ], [ 134.238564512363155, 34.431876088339266 ], [ 134.234568285013211, 34.444261673640263 ], [ 134.24229432455644, 34.458940885848847 ], [ 134.230305642506607, 34.479354165326413 ], [ 134.215119978576809, 34.479354165326413 ], [ 134.196737332767071, 34.484629507213882 ], [ 134.16903015647415, 34.465592403880862 ], [ 134.15171317129105, 34.461234512756441 ], [ 134.141322980181201, 34.470867745768331 ], [ 134.155442983484335, 34.491739750627417 ], [ 134.171960723197429, 34.494033377535004 ], [ 134.16157053208758, 34.509630040506629 ], [ 134.167698080690826, 34.525456066169014 ], [ 134.186879971970541, 34.516052195847891 ], [ 134.221513942336713, 34.528896506530401 ], [ 134.229506397036602, 34.527290967695087 ], [ 134.269468670536043, 34.553667677132395 ], [ 134.272132822102662, 34.547704247172653 ], [ 134.298774337768975, 34.54678679640962 ], [ 134.312095095602103, 34.557796205566063 ], [ 134.331543402038506, 34.564447723598079 ], [ 134.352590199414863, 34.562612822072005 ] ] ], [ [ [ 134.201799220743681, 34.615824966328134 ], [ 134.19460601151377, 34.607567909460805 ], [ 134.166099589750843, 34.602521930264103 ], [ 134.167698080690826, 34.609632173677639 ], [ 134.201799220743681, 34.615824966328134 ] ] ], [ [ [ 134.297442261985651, 34.730506311707728 ], [ 134.310763019818808, 34.727524596727861 ], [ 134.323018117025299, 34.71422156066383 ], [ 134.332342647508483, 34.723625430984953 ], [ 134.347261896281623, 34.708258130704088 ], [ 134.331543402038506, 34.708487493394848 ], [ 134.316890568422053, 34.702753426125867 ], [ 134.302504149962232, 34.708258130704088 ], [ 134.284920749622501, 34.705964503796501 ], [ 134.274264143355992, 34.722019892149646 ], [ 134.297442261985651, 34.730506311707728 ] ] ], [ [ [ 134.405606815590772, 35.237627220976307 ], [ 134.40107775792751, 35.227993987964425 ], [ 134.384027187901097, 35.215379039972667 ], [ 134.385892093997739, 35.194277672422821 ], [ 134.415464176387303, 35.177075470615883 ], [ 134.410935118724041, 35.168130325676273 ], [ 134.415464176387303, 35.155515377684516 ], [ 134.411467949037359, 35.144505968528073 ], [ 134.400012097300873, 35.148863859652501 ], [ 134.377366808984505, 35.147487683507947 ], [ 134.365111711778013, 35.136707637042264 ], [ 134.362181145054734, 35.120193523307599 ], [ 134.356053596451488, 35.110789652986476 ], [ 134.352856614571522, 35.091064461581183 ], [ 134.323018117025299, 35.08074314049702 ], [ 134.323550947338617, 35.070421819412857 ], [ 134.317689813892031, 35.051843441461358 ], [ 134.319821135145332, 35.041980845758715 ], [ 134.299040752925634, 35.038311042706567 ], [ 134.273198482729327, 35.019503302064315 ], [ 134.268669425066065, 35.010328794433946 ], [ 134.283055843525858, 34.994732131462321 ], [ 134.272932067572668, 34.977300566964622 ], [ 134.275596219139288, 34.956657924796296 ], [ 134.257746403642869, 34.943354888732259 ], [ 134.259078479426194, 34.933033567648096 ], [ 134.269735085692702, 34.932116116885062 ], [ 134.285719995092478, 34.918124992748751 ], [ 134.292113958852383, 34.907803671664588 ], [ 134.291581128539065, 34.895647449054351 ], [ 134.26493961287278, 34.879362698010446 ], [ 134.268136594752718, 34.869729464998564 ], [ 134.256414327859574, 34.852985988573138 ], [ 134.265472443186098, 34.833260797167853 ], [ 134.277194710079272, 34.824545014919003 ], [ 134.288117731502439, 34.825921191063557 ], [ 134.292913204322389, 34.816976046123948 ], [ 134.307033207625523, 34.809865802710412 ], [ 134.320087550301992, 34.792892963594234 ], [ 134.331543402038506, 34.761240912269464 ], [ 134.347528311438282, 34.735552290904437 ], [ 134.339003026425047, 34.738304643193544 ], [ 134.327547174688561, 34.729130135563182 ], [ 134.293978864949025, 34.73646974166747 ], [ 134.270267916006048, 34.725689695201787 ], [ 134.268403009909406, 34.719038177169772 ], [ 134.244159230653082, 34.715139011426871 ], [ 134.228707151566624, 34.731194399780009 ], [ 134.207393939033579, 34.729818223635455 ], [ 134.198602238863714, 34.715139011426871 ], [ 134.219649036240071, 34.709175581467129 ], [ 134.235101115326529, 34.715368374117624 ], [ 134.245757721593037, 34.70114788729056 ], [ 134.221513942336713, 34.684863136246655 ], [ 134.220981112023395, 34.678440980905393 ], [ 134.205529032936965, 34.66811965982123 ], [ 134.188744878067183, 34.650688095323531 ], [ 134.172493553510748, 34.648623831106704 ], [ 134.173292798980754, 34.617201142472695 ], [ 134.150114680351066, 34.616742417091174 ], [ 134.135195431577955, 34.607109184079285 ], [ 134.121874673744799, 34.590136344963106 ], [ 134.103758443091721, 34.589218894200073 ], [ 134.094167497451849, 34.581649925405017 ], [ 134.07844900320876, 34.586466541910958 ], [ 134.055270884579073, 34.586466541910958 ], [ 134.048077675349191, 34.597475951067402 ], [ 134.031559935636096, 34.606191733316251 ], [ 134.012111629199694, 34.611237712512953 ], [ 133.985736528690069, 34.613072614039027 ], [ 133.958029352397119, 34.597017225685882 ], [ 133.952168218950533, 34.602063204882583 ], [ 133.934584818610801, 34.596099774922848 ], [ 133.922862551717628, 34.585319728457165 ], [ 133.929789345790851, 34.572475417774648 ], [ 133.923128966874287, 34.55963110709213 ], [ 133.943909349093985, 34.558025568256824 ], [ 133.947372746130611, 34.574998407373002 ], [ 133.962824825217069, 34.589448256890833 ], [ 133.974014261796896, 34.594264873396774 ], [ 134.033158426576051, 34.597475951067402 ], [ 134.040618050962621, 34.587842718055512 ], [ 134.038753144865979, 34.575686495445275 ], [ 134.029428614382766, 34.566053262433392 ], [ 134.029428614382766, 34.556190666730743 ], [ 134.008381817006409, 34.549080423317207 ], [ 133.999323701679884, 34.541282091831398 ], [ 134.001188607776527, 34.530043319984202 ], [ 133.978809734616846, 34.532566309582549 ], [ 133.958828597867125, 34.523162439261426 ], [ 133.957230106927142, 34.504584061309927 ], [ 133.964956146470371, 34.494950828298045 ], [ 133.939913121744041, 34.481647792234007 ], [ 133.935650479237438, 34.474078823438958 ], [ 133.943909349093985, 34.464216227736308 ], [ 133.942843688467349, 34.455271082796699 ], [ 133.92019840015098, 34.449766378218484 ], [ 133.896221036051344, 34.45687662163202 ], [ 133.880768956964886, 34.45618853355974 ], [ 133.86718178397507, 34.467427305406936 ], [ 133.841605928935451, 34.468574118860737 ], [ 133.830682907512255, 34.472473284603637 ], [ 133.808836864665921, 34.459628973921127 ], [ 133.81443158295582, 34.431417362957745 ], [ 133.781662518686289, 34.439674419825074 ], [ 133.759283645526608, 34.474996274201992 ], [ 133.757951569743284, 34.486693771430708 ], [ 133.734507035956966, 34.497244455205632 ], [ 133.742765905813513, 34.470409020386811 ], [ 133.72598175094376, 34.472932009985158 ], [ 133.704668538410715, 34.483023968378561 ], [ 133.705467783880692, 34.530043319984202 ], [ 133.702803632314073, 34.560777920545931 ], [ 133.69827457465081, 34.563988998216558 ], [ 133.686552307757637, 34.522474351189146 ], [ 133.684154571347676, 34.507107050908274 ], [ 133.669235322574536, 34.519721998900039 ], [ 133.650053431294822, 34.513070480868016 ], [ 133.647389279728202, 34.504125335928407 ], [ 133.625809652038498, 34.500684895567019 ], [ 133.619682103435252, 34.49196911331817 ], [ 133.603697194035476, 34.495180190988805 ], [ 133.590909266515666, 34.486235046049188 ], [ 133.595971154492247, 34.471326471149844 ], [ 133.580252660249158, 34.470867745768331 ], [ 133.573059451019247, 34.465133678499349 ], [ 133.560005108342779, 34.468115393479216 ], [ 133.540290386749717, 34.461463875447201 ], [ 133.514714531710069, 34.448619564764684 ], [ 133.501127358720254, 34.451371917053791 ], [ 133.486474525103802, 34.440591870588115 ], [ 133.457968103340875, 34.459858336611887 ], [ 133.453705460834271, 34.476143087655785 ], [ 133.458500933654193, 34.499996807494746 ], [ 133.448110742544344, 34.502519797093093 ], [ 133.452639800207635, 34.522933076570666 ], [ 133.452106969894288, 34.539676552996085 ], [ 133.441183948471121, 34.558025568256824 ], [ 133.431859417987909, 34.564906448979599 ], [ 133.424666208758026, 34.583255464240331 ], [ 133.408148469044932, 34.586695904601719 ], [ 133.386036011041909, 34.618347955926488 ], [ 133.394827711211775, 34.628898639701411 ], [ 133.390565068705172, 34.638302510022541 ], [ 133.405217902321624, 34.666743483676676 ], [ 133.386568841355228, 34.676606079379326 ], [ 133.376711480558697, 34.694725731949298 ], [ 133.371916007738776, 34.718808814479011 ], [ 133.363390722725541, 34.725460332511034 ], [ 133.372182422895435, 34.740598270101138 ], [ 133.36578845913553, 34.755965570382003 ], [ 133.380707707908641, 34.802984921987637 ], [ 133.375112989618714, 34.811471341545726 ], [ 133.34820505879577, 34.826379916445077 ], [ 133.329289582672715, 34.853903439336179 ], [ 133.299451085126464, 34.886472941423982 ], [ 133.301582406379765, 34.907115583592315 ], [ 133.307177124669693, 34.916519453913438 ], [ 133.304512973103044, 34.926840774997601 ], [ 133.311972597489614, 34.933721655720376 ], [ 133.299983915439782, 34.953217484434909 ], [ 133.309308445922994, 34.970649048932607 ], [ 133.322895618912781, 34.987851250739546 ], [ 133.323162034069469, 35.00367727640193 ], [ 133.306111464043028, 35.015145410939894 ], [ 133.294122781993195, 35.031659524674552 ], [ 133.275740136183458, 35.044733198047822 ], [ 133.272010323990173, 35.054595793750472 ], [ 133.29039296979991, 35.065146477525396 ], [ 133.293057121366559, 35.094046176561051 ], [ 133.302381651849743, 35.100009606520793 ], [ 133.321829958286145, 35.090835098890423 ], [ 133.339679773782564, 35.101844508046867 ], [ 133.360193740845602, 35.098633430376239 ], [ 133.375112989618714, 35.109184114151162 ], [ 133.397491862778395, 35.110330927604956 ], [ 133.413476772178171, 35.117211808327731 ], [ 133.414542432804836, 35.127991854793414 ], [ 133.396692617308418, 35.166524786840959 ], [ 133.410546205454892, 35.182580175194104 ], [ 133.449709233484327, 35.168818413748554 ], [ 133.470489615704025, 35.172258854109941 ], [ 133.489405091827109, 35.183268263266378 ], [ 133.510984719516784, 35.18923169322612 ], [ 133.5245718925066, 35.182121449812584 ], [ 133.52190774093998, 35.210333060775966 ], [ 133.511251134673444, 35.230058252181252 ], [ 133.519510004529991, 35.237397858285547 ], [ 133.539491141279711, 35.23441614330568 ], [ 133.559738693186091, 35.240838298646935 ], [ 133.573858696489225, 35.271572899208664 ], [ 133.578654169309175, 35.302995587842673 ], [ 133.590642851359007, 35.321573965794173 ], [ 133.591442096828985, 35.333271463022889 ], [ 133.599168136372214, 35.341757882580978 ], [ 133.619948518591912, 35.336482540693517 ], [ 133.641261731124956, 35.336023815312004 ], [ 133.665239095224621, 35.323179504629486 ], [ 133.685486647131, 35.315610535834431 ], [ 133.70573419903738, 35.321344603103412 ], [ 133.728113072197061, 35.316069261215951 ], [ 133.749959115043396, 35.315151810452917 ], [ 133.757685154586625, 35.307124116276341 ], [ 133.774202894299719, 35.300472598244326 ], [ 133.804574222159289, 35.284187847200421 ], [ 133.81416516779916, 35.264233293104375 ], [ 133.830682907512255, 35.246343003225157 ], [ 133.846401401755372, 35.249783443586544 ], [ 133.864251217251791, 35.267215008084243 ], [ 133.874374993204981, 35.289921914469403 ], [ 133.886097260098154, 35.291298090613957 ], [ 133.90474632106455, 35.300701960935086 ], [ 133.933252742827477, 35.310335193946969 ], [ 133.934584818610801, 35.330289748043022 ], [ 133.944708594563991, 35.330748473424535 ], [ 133.969218788976974, 35.343134058725539 ], [ 133.98067464071346, 35.340840431817945 ], [ 134.000122947149862, 35.349785576757554 ], [ 134.01077955341637, 35.348180037922234 ], [ 134.013710120139677, 35.337399991456557 ], [ 134.003053513873141, 35.311023282019249 ], [ 134.012644459513012, 35.304142401296474 ], [ 134.043815032842588, 35.300701960935086 ], [ 134.052873148169112, 35.295426619047625 ], [ 134.100295046055123, 35.3023074997704 ], [ 134.120809013118162, 35.279829956076 ], [ 134.135195431577955, 35.277765691859166 ], [ 134.146384868157782, 35.260563490052228 ], [ 134.147184113627787, 35.250012806277304 ], [ 134.140257319554536, 35.23510423137796 ], [ 134.148249774254424, 35.228223350655178 ], [ 134.160238456304256, 35.231205065635052 ], [ 134.163968268497541, 35.21170923692052 ], [ 134.155709398640994, 35.192672133587507 ], [ 134.165033929124206, 35.186708703627765 ], [ 134.18181808399396, 35.166524786840959 ], [ 134.196470917610412, 35.180974636358783 ], [ 134.238564512363155, 35.196112573948895 ], [ 134.250020364099669, 35.196800662021168 ], [ 134.2676037644394, 35.205287081579257 ], [ 134.284387919309154, 35.193818947041301 ], [ 134.319554719988673, 35.199094288928762 ], [ 134.345130575028293, 35.217213941498741 ], [ 134.365378126934672, 35.226159086438344 ], [ 134.375501902887891, 35.241526386719215 ], [ 134.400278512457533, 35.24703109129743 ], [ 134.405606815590772, 35.237627220976307 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1488, "NAME_1": "Okinawa", "VARNAME_1": "", "HASC_1": "JP.ON", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.78789716194791, 24.072022072128057 ], [ 123.8094767896376, 24.064682466023761 ], [ 123.809743204794259, 24.057342859919466 ], [ 123.795889616647784, 24.045416 ], [ 123.756726588618349, 24.049085803052137 ], [ 123.759390740184969, 24.063306289879204 ], [ 123.775908479898078, 24.071792709437297 ], [ 123.78789716194791, 24.072022072128057 ] ] ], [ [ [ 124.001562117591547, 24.256429675498445 ], [ 124.01594853605134, 24.247713893249596 ], [ 124.02607231200453, 24.24977815746643 ], [ 124.030867784824466, 24.236475121402396 ], [ 124.014350045111357, 24.220649095740011 ], [ 124.001029287278214, 24.223860173410639 ], [ 123.990639096168366, 24.239915561763784 ], [ 123.993036832578326, 24.250695608229467 ], [ 124.001562117591547, 24.256429675498445 ] ] ], [ [ [ 124.086814967723669, 24.341523233770108 ], [ 124.102267046810113, 24.320421866220261 ], [ 124.088413458663652, 24.311247358589892 ], [ 124.07642477661382, 24.319275052766464 ], [ 124.080421003963764, 24.336477254573403 ], [ 124.086814967723669, 24.341523233770108 ] ] ], [ [ [ 123.974121356455271, 24.355514357906419 ], [ 123.991971171951676, 24.346798575657569 ], [ 123.989839850698374, 24.340376420316311 ], [ 124.003160608531516, 24.328220197706074 ], [ 123.970391544261986, 24.332578088830498 ], [ 123.963198335032089, 24.34909220256516 ], [ 123.974121356455271, 24.355514357906419 ] ] ], [ [ [ 123.730884318422042, 24.366065041681338 ], [ 123.743672245941866, 24.354826269834138 ], [ 123.739409603435263, 24.346339850276049 ], [ 123.724490354662137, 24.357349259432489 ], [ 123.730884318422042, 24.366065041681338 ] ] ], [ [ [ 123.778306216308039, 24.438773014652003 ], [ 123.812140941204234, 24.411478854451659 ], [ 123.811075280577569, 24.397717093006108 ], [ 123.817469244337488, 24.391524300355609 ], [ 123.828925096073988, 24.398405181078385 ], [ 123.832654908267273, 24.407579688708754 ], [ 123.864624727066811, 24.395423466098517 ], [ 123.868088124103437, 24.40345116027509 ], [ 123.881408881936579, 24.399781357222942 ], [ 123.887003600226507, 24.384414056942074 ], [ 123.903521339939601, 24.386248958468148 ], [ 123.917108512929403, 24.377533176219298 ], [ 123.922436816062671, 24.366982492444375 ], [ 123.940020216402417, 24.366065041681338 ], [ 123.936556819365791, 24.348174751802123 ], [ 123.927765119195925, 24.343816860677698 ], [ 123.929896440449227, 24.32661465887076 ], [ 123.909116058229515, 24.317669513931151 ], [ 123.900324358059649, 24.299091135979655 ], [ 123.904320585409593, 24.274319965377664 ], [ 123.879543975839937, 24.281888934172716 ], [ 123.884605863816532, 24.269273986180959 ], [ 123.881408881936579, 24.255741587426169 ], [ 123.863292651283501, 24.255053499353892 ], [ 123.845442835787082, 24.267668447345645 ], [ 123.831855662797281, 24.272714426542347 ], [ 123.806013392600974, 24.269273986180959 ], [ 123.791094143827863, 24.274778690759181 ], [ 123.778306216308039, 24.274319965377664 ], [ 123.754328852208374, 24.279365944574366 ], [ 123.73621262155531, 24.294274519473714 ], [ 123.724490354662137, 24.299091135979655 ], [ 123.718629221215551, 24.277531043048292 ], [ 123.69731600868252, 24.282806384935753 ], [ 123.680798268969426, 24.282347659554233 ], [ 123.661616377689697, 24.307806918228504 ], [ 123.669608832389585, 24.313999710879003 ], [ 123.684261666006037, 24.312394172043689 ], [ 123.680531853812752, 24.32592657079848 ], [ 123.685860156946021, 24.332578088830498 ], [ 123.717030730275582, 24.334871715738089 ], [ 123.727420921385431, 24.343358135296182 ], [ 123.739409603435263, 24.321339316983298 ], [ 123.75033262485843, 24.337165342645683 ], [ 123.743938661098525, 24.342670047223901 ], [ 123.753263191581723, 24.352991368308064 ], [ 123.742873000471874, 24.366753129753619 ], [ 123.752730361268405, 24.376157000074745 ], [ 123.742073755001883, 24.389001310757259 ], [ 123.752996776425064, 24.39198302573713 ], [ 123.750599040015103, 24.402992434893569 ], [ 123.774043573801436, 24.424781890515693 ], [ 123.763919797848246, 24.431204045856951 ], [ 123.778306216308039, 24.438773014652003 ] ] ], [ [ [ 123.006501507455638, 24.474324231719677 ], [ 123.040602647508493, 24.462856097181721 ], [ 123.034208683748588, 24.452534776097554 ], [ 123.013161886372217, 24.43739683850745 ], [ 122.982790558512647, 24.442442817704151 ], [ 122.966805649112871, 24.43739683850745 ], [ 122.934303, 24.447259434210093 ], [ 122.942029039543229, 24.457580755294259 ], [ 122.954550551906379, 24.461479921037164 ], [ 122.961477345979617, 24.472718692884364 ], [ 122.971334706776148, 24.468360801759939 ], [ 123.006501507455638, 24.474324231719677 ] ] ], [ [ [ 124.3169976630804, 24.612171208865952 ], [ 124.320993890430344, 24.607813317741527 ], [ 124.340442196866746, 24.605978416215457 ], [ 124.340975027180065, 24.586482587500925 ], [ 124.333781817950168, 24.569051023003226 ], [ 124.315932002453749, 24.556894800392989 ], [ 124.303676905247258, 24.544279852401232 ], [ 124.309804453850504, 24.532811717863272 ], [ 124.295151620234051, 24.513086526457982 ], [ 124.282363692714227, 24.50505883228141 ], [ 124.281830862400909, 24.487627267783711 ], [ 124.262116140807848, 24.478452760153345 ], [ 124.250926704228007, 24.46216800910944 ], [ 124.258652743771236, 24.444277719230225 ], [ 124.251193119384666, 24.436020662362893 ], [ 124.258919158927895, 24.411020129070142 ], [ 124.252258780011317, 24.393129839190923 ], [ 124.254390101264633, 24.377303813528542 ], [ 124.250393873914689, 24.359413523649323 ], [ 124.238138776708197, 24.344504948749975 ], [ 124.226949340128343, 24.344963674131495 ], [ 124.217091979331826, 24.354138181761861 ], [ 124.201639900245368, 24.354138181761861 ], [ 124.20243914571536, 24.343128772605422 ], [ 124.181658763495662, 24.329596373850627 ], [ 124.149955359852768, 24.331201912685941 ], [ 124.143561396092863, 24.351156466781994 ], [ 124.122514598716492, 24.357119896741732 ], [ 124.111591577293311, 24.365376953609061 ], [ 124.118518371366548, 24.377074450837782 ], [ 124.128375732163079, 24.378221264291579 ], [ 124.14063082936957, 24.391524300355609 ], [ 124.142495735466213, 24.414001844050013 ], [ 124.123846674499816, 24.427992968186324 ], [ 124.119850447149872, 24.435103211599856 ], [ 124.104131952906755, 24.432809584692265 ], [ 124.088147043506979, 24.423405714371139 ], [ 124.068698737070591, 24.431892133929228 ], [ 124.078023267553789, 24.441984092322631 ], [ 124.076158361457146, 24.45092923726224 ], [ 124.099869310400152, 24.453452226860591 ], [ 124.106529689316716, 24.444965807302502 ], [ 124.117719125896571, 24.445653895374779 ], [ 124.116653465269906, 24.463085459872477 ], [ 124.132638374669682, 24.477076584008788 ], [ 124.139831583899579, 24.471801242121327 ], [ 124.145959132502824, 24.456892667221979 ], [ 124.178994611929028, 24.449553061117687 ], [ 124.192581784918843, 24.458498206057296 ], [ 124.222153867308421, 24.455057765695905 ], [ 124.225883679501692, 24.466067174852348 ], [ 124.22002254605512, 24.472030604812087 ], [ 124.229080661381659, 24.489232806619025 ], [ 124.247729722348055, 24.511022262241148 ], [ 124.258652743771236, 24.519508681799241 ], [ 124.275170483484331, 24.50551755766293 ], [ 124.289024071630806, 24.539921961276807 ], [ 124.282630107870901, 24.56171141689893 ], [ 124.296750111174021, 24.569280385693986 ], [ 124.310870114477154, 24.59313410553294 ], [ 124.311402944790487, 24.610336307339878 ], [ 124.3169976630804, 24.612171208865952 ] ] ], [ [ [ 124.709693604001515, 24.678915751876879 ], [ 124.728342664967911, 24.663089726214494 ], [ 124.727809834654579, 24.652539042439571 ], [ 124.714222661664778, 24.640382819829334 ], [ 124.687847561155152, 24.637859830230983 ], [ 124.674260388165351, 24.643823260190722 ], [ 124.670530575972066, 24.66125482468842 ], [ 124.680920767081915, 24.673181684607897 ], [ 124.709693604001515, 24.678915751876879 ] ] ], [ [ [ 125.242790332483949, 24.732357258823772 ], [ 125.258775241883725, 24.721347849667328 ], [ 125.243323162797282, 24.714008243563036 ], [ 125.238261274820687, 24.722265300430365 ], [ 125.242790332483949, 24.732357258823772 ] ] ], [ [ [ 124.695573600698381, 24.762633134003984 ], [ 124.70463171602492, 24.755064165208932 ], [ 124.696905676481691, 24.746577745650839 ], [ 124.682519258021898, 24.757128429425762 ], [ 124.695573600698381, 24.762633134003984 ] ] ], [ [ [ 125.164997106738397, 24.865387619464101 ], [ 125.192171452718, 24.852543308781588 ], [ 125.20229522867119, 24.850708407255514 ], [ 125.212951834937712, 24.83992836078983 ], [ 125.221743535107592, 24.823414247055169 ], [ 125.216415231974324, 24.806900133320507 ], [ 125.200163907417888, 24.802542242196083 ], [ 125.18204767676481, 24.811487387135692 ], [ 125.168993334088327, 24.802542242196083 ], [ 125.144749554832018, 24.80621204524823 ], [ 125.134625778878814, 24.825478511272003 ], [ 125.135425024348805, 24.835341106974649 ], [ 125.148212951868629, 24.832588754685538 ], [ 125.159135973291811, 24.839469635408314 ], [ 125.157271067195168, 24.861259091030437 ], [ 125.164997106738397, 24.865387619464101 ] ] ], [ [ [ 125.265968451113622, 24.916076774121883 ], [ 125.272095999716868, 24.902544375367093 ], [ 125.281953360513398, 24.893828593118243 ], [ 125.288880154586636, 24.880525557054209 ], [ 125.298737515383166, 24.876626391311301 ], [ 125.306729970083055, 24.858506738741326 ], [ 125.306197139769722, 24.849790956492477 ], [ 125.318452236976213, 24.832818117376299 ], [ 125.336035637315973, 24.821808708219855 ], [ 125.332572240279347, 24.802312879505322 ], [ 125.346692243582481, 24.796808174927104 ], [ 125.354951113439029, 24.788780480750532 ], [ 125.368271871272171, 24.793138371874957 ], [ 125.389318668648542, 24.783963864244591 ], [ 125.391716405058517, 24.774559993923461 ], [ 125.402905841638358, 24.766302937056132 ], [ 125.441536039354474, 24.754834802518172 ], [ 125.443134530294444, 24.747724559104636 ], [ 125.456188872970927, 24.734650885731362 ], [ 125.425817545111357, 24.725935103482513 ], [ 125.391183574745185, 24.728687455771624 ], [ 125.382658289731978, 24.724329564647199 ], [ 125.370136777368813, 24.728916818462384 ], [ 125.361078662042274, 24.722724025811885 ], [ 125.330174503869387, 24.719054222759738 ], [ 125.308594876179683, 24.711485253964685 ], [ 125.296339778973191, 24.719971673522775 ], [ 125.271030339090217, 24.729375543843901 ], [ 125.260373732823709, 24.736715149948196 ], [ 125.252114862967161, 24.755522890590449 ], [ 125.281154115043407, 24.750476911393747 ], [ 125.281154115043407, 24.764238672839298 ], [ 125.272362414873541, 24.778459159666369 ], [ 125.258242411570407, 24.784651952316867 ], [ 125.255578260003773, 24.798413713762418 ], [ 125.273161660343519, 24.806441407938991 ], [ 125.278223548320113, 24.813781014043283 ], [ 125.276625057380144, 24.83763473388224 ], [ 125.296073363816532, 24.846809241512606 ], [ 125.27396090581351, 24.876167665929785 ], [ 125.270231093620239, 24.904838002274683 ], [ 125.265968451113622, 24.916076774121883 ] ] ], [ [ [ 125.243323162797282, 24.939242405888564 ], [ 125.251848447810488, 24.932820250547305 ], [ 125.244921653737265, 24.920434665246308 ], [ 125.23373221715741, 24.92800363404136 ], [ 125.243323162797282, 24.939242405888564 ] ] ], [ [ [ 127.789186399867873, 25.57067789354862 ], [ 127.793981872687809, 25.551182064834087 ], [ 127.779329039071342, 25.55026461407105 ], [ 127.778263378444692, 25.569760442785583 ], [ 127.789186399867873, 25.57067789354862 ] ] ], [ [ [ 123.477789919592297, 25.752103781939141 ], [ 123.476724258965646, 25.740635647401181 ], [ 123.464735576915814, 25.734213492059922 ], [ 123.463669916289163, 25.748204616196233 ], [ 123.477789919592297, 25.752103781939141 ] ] ], [ [ [ 131.235532866459039, 25.872748557278477 ], [ 131.261907966968664, 25.869766842298606 ], [ 131.274163064175156, 25.853023365873185 ], [ 131.268301930728569, 25.830087096797264 ], [ 131.257112494148743, 25.81701342342399 ], [ 131.231270223952436, 25.812196806918049 ], [ 131.212887578142698, 25.822976853383732 ], [ 131.217416635805961, 25.835591801375486 ], [ 131.220080787372581, 25.866555764627979 ], [ 131.235532866459039, 25.872748557278477 ] ] ], [ [ [ 131.289881558418273, 25.95990637976697 ], [ 131.3183879801812, 25.956695302096339 ], [ 131.332774398640993, 25.951878685590398 ], [ 131.321584962061138, 25.929630504586754 ], [ 131.299206088901457, 25.929630504586754 ], [ 131.285086085598323, 25.947291431775213 ], [ 131.289881558418273, 25.95990637976697 ] ] ], [ [ [ 127.9096060506795, 26.17229623140998 ], [ 127.905343408172897, 26.165185987996445 ], [ 127.884563025953184, 26.151424226550894 ], [ 127.884563025953184, 26.16082809687202 ], [ 127.9096060506795, 26.17229623140998 ] ] ], [ [ [ 127.238506271045679, 26.180553288277313 ], [ 127.242502498395623, 26.162433635707337 ], [ 127.232911552755752, 26.164727262614928 ], [ 127.238506271045679, 26.180553288277313 ] ] ], [ [ [ 127.237174195262355, 26.210370438076009 ], [ 127.244900234805584, 26.20417764542551 ], [ 127.241969668082291, 26.190874609361476 ], [ 127.227316834465839, 26.189957158598439 ], [ 127.237174195262355, 26.210370438076009 ] ] ], [ [ [ 127.281931941581732, 26.208994261931451 ], [ 127.291789302378248, 26.198672940847288 ], [ 127.283264017365042, 26.189269070526162 ], [ 127.267811938278598, 26.196608676630454 ], [ 127.271541750471869, 26.208535536549935 ], [ 127.281931941581732, 26.208994261931451 ] ] ], [ [ [ 127.358126676387315, 26.22619646373839 ], [ 127.372779510003767, 26.21495769189119 ], [ 127.371713849377116, 26.19477377510438 ], [ 127.360790827953949, 26.182846915184903 ], [ 127.36425422499056, 26.157158293819876 ], [ 127.344805918554172, 26.161745547635057 ], [ 127.338411954794253, 26.183305640566424 ], [ 127.358126676387315, 26.22619646373839 ] ] ], [ [ [ 127.31150402397131, 26.24913273281431 ], [ 127.314434590694603, 26.227802002573707 ], [ 127.303245154114762, 26.219774308397135 ], [ 127.280599865798408, 26.231013080244335 ], [ 127.306708551151374, 26.240187587874701 ], [ 127.31150402397131, 26.24913273281431 ] ] ], [ [ [ 126.854335615137785, 26.300968700925889 ], [ 126.858598257644388, 26.291335467914003 ], [ 126.844211839184595, 26.286977576789578 ], [ 126.843679008871277, 26.296840172492224 ], [ 126.854335615137785, 26.300968700925889 ] ] ], [ [ [ 127.14765870262363, 26.382163093454643 ], [ 127.150589269346924, 26.362667264740111 ], [ 127.137002096357108, 26.364731528956945 ], [ 127.14765870262363, 26.382163093454643 ] ] ], [ [ [ 126.774144652982258, 26.392255051848046 ], [ 126.784534844092107, 26.388585248795899 ], [ 126.795724280671948, 26.370924321607443 ], [ 126.810909944601732, 26.364502166266185 ], [ 126.816238247734987, 26.335602467230526 ], [ 126.807180132408448, 26.328721586507751 ], [ 126.806114471781797, 26.309913845865495 ], [ 126.813307681011707, 26.29454654558463 ], [ 126.800253338335224, 26.292711644058556 ], [ 126.779472956115512, 26.305326592050314 ], [ 126.769349180162322, 26.326886684981677 ], [ 126.748035967629292, 26.345006337551652 ], [ 126.724058603529627, 26.3486761406038 ], [ 126.708872939599843, 26.367713243936812 ], [ 126.715533318516421, 26.374823487350348 ], [ 126.73604728557946, 26.376658388876422 ], [ 126.759758234522465, 26.389961424940456 ], [ 126.774144652982258, 26.392255051848046 ] ] ], [ [ [ 128.000187203944876, 26.401200196787656 ], [ 127.997523052378256, 26.381704368073123 ], [ 127.988464937051717, 26.385832896506791 ], [ 128.000187203944876, 26.401200196787656 ] ] ], [ [ [ 127.235575704322386, 26.602121913892709 ], [ 127.247564386372218, 26.592029955499303 ], [ 127.247564386372218, 26.583084810559694 ], [ 127.225185513212537, 26.576203929836918 ], [ 127.20813494318611, 26.574827753692364 ], [ 127.217193058512649, 26.594094219716137 ], [ 127.235575704322386, 26.602121913892709 ] ] ], [ [ [ 127.866446795300106, 26.654416607385805 ], [ 127.87443925, 26.649370628189104 ], [ 127.864049058890146, 26.634232690598996 ], [ 127.855257358720266, 26.644554011683159 ], [ 127.866446795300106, 26.654416607385805 ] ] ], [ [ [ 128.021234001321261, 26.678270327224759 ], [ 128.021234001321261, 26.672765622646541 ], [ 128.035354004624395, 26.651205529715174 ], [ 128.012975131464714, 26.656480871602636 ], [ 128.005249091921485, 26.652122980478211 ], [ 127.993793240184971, 26.660380037345544 ], [ 127.995924561438272, 26.671160083811223 ], [ 128.010843810211384, 26.679187777987796 ], [ 128.021234001321261, 26.678270327224759 ] ] ], [ [ [ 128.017770604284635, 26.71473899505547 ], [ 128.027894380237825, 26.710381103931049 ], [ 128.020701171007914, 26.693637627505627 ], [ 128.010843810211384, 26.699830420156125 ], [ 128.009778149584747, 26.711757280075602 ], [ 128.017770604284635, 26.71473899505547 ] ] ], [ [ [ 127.816094330690831, 26.734234823770002 ], [ 127.829681503680632, 26.723913502685839 ], [ 127.82648452180068, 26.708775565095731 ], [ 127.80756904567761, 26.705105762043587 ], [ 127.792649796904485, 26.709463653168012 ], [ 127.762278469044915, 26.707858114332694 ], [ 127.748957711211773, 26.722307963850525 ], [ 127.759880732634954, 26.73744590144063 ], [ 127.790784890807856, 26.733546735697725 ], [ 127.809167536617593, 26.738822077585187 ], [ 127.816094330690831, 26.734234823770002 ] ] ], [ [ [ 128.257810660437912, 26.875751603968425 ], [ 128.262339718101174, 26.867265184410336 ], [ 128.294309536900727, 26.842264651117581 ], [ 128.303634067383911, 26.846163816860489 ], [ 128.308429540203861, 26.824833086619883 ], [ 128.3137578433371, 26.821163283567735 ], [ 128.324148034446949, 26.787446968026135 ], [ 128.32654577085691, 26.767951139311606 ], [ 128.318286901000363, 26.743179968709612 ], [ 128.318286901000363, 26.734464186460762 ], [ 128.307097464420536, 26.729876932645578 ], [ 128.294043121744039, 26.717720710035341 ], [ 128.284452176104196, 26.697536793248531 ], [ 128.280455948754252, 26.676206063007928 ], [ 128.264204624197816, 26.65877449851023 ], [ 128.25088386636466, 26.650976167024417 ], [ 128.238362354001509, 26.630792250237608 ], [ 128.202662723008672, 26.624370094896349 ], [ 128.18055026500565, 26.623911369514833 ], [ 128.158970637315974, 26.630562887546848 ], [ 128.145916294639477, 26.622993918751796 ], [ 128.155773655436008, 26.605103628872577 ], [ 128.1451170491695, 26.597534660077525 ], [ 128.125135912419779, 26.602351276583466 ], [ 128.146182709796136, 26.571387313330977 ], [ 128.133927612589645, 26.555331924977832 ], [ 128.108085342393366, 26.549368495018093 ], [ 128.091301187523584, 26.536065458954059 ], [ 128.072918541713847, 26.548680406945817 ], [ 128.061196274820674, 26.551203396544167 ], [ 128.036153250094372, 26.54753359349202 ], [ 128.053203820120785, 26.520927521363955 ], [ 128.039083816817651, 26.520239433291678 ], [ 128.026029474141183, 26.510606200279788 ], [ 128.009778149584747, 26.514276003331936 ], [ 127.99272757955832, 26.50510149570157 ], [ 128.003650600981501, 26.489275470039185 ], [ 127.990862673461677, 26.474825620521358 ], [ 127.966618894205354, 26.467715377107822 ], [ 127.953298136372212, 26.472990718995284 ], [ 127.946637757455647, 26.463586848674154 ], [ 127.950367569648918, 26.456476605260619 ], [ 127.943707190732354, 26.443861657268865 ], [ 127.928521526802569, 26.43927440345368 ], [ 127.916000014439405, 26.446843372248736 ], [ 127.896818123159676, 26.450283812610124 ], [ 127.885628686579835, 26.456705967951379 ], [ 127.870443022650051, 26.457394056023659 ], [ 127.854458113250274, 26.451659988754677 ], [ 127.844600752453758, 26.439503766144441 ], [ 127.837141128067188, 26.416108771687004 ], [ 127.840071694790481, 26.407851714819671 ], [ 127.867512455926757, 26.388814611486659 ], [ 127.87923472281993, 26.378034565020975 ], [ 127.873906419686676, 26.358997461687963 ], [ 127.888292838146469, 26.340877809117988 ], [ 127.903212086919595, 26.331703301487622 ], [ 127.93225133899584, 26.332162026869138 ], [ 127.945039266515664, 26.339501632973434 ], [ 127.943973605889013, 26.357162560161889 ], [ 127.969016630615329, 26.362667264740111 ], [ 127.975943424688552, 26.378722653093256 ], [ 127.991129088618351, 26.379410741165533 ], [ 127.996457391751605, 26.362437902049351 ], [ 127.978074745941868, 26.354639570563538 ], [ 127.958626439505466, 26.336290555302803 ], [ 127.947703418082298, 26.339730995664191 ], [ 127.929320772272547, 26.330556488033825 ], [ 127.90827397489619, 26.331015213415341 ], [ 127.92212756304265, 26.311748747391569 ], [ 127.922393978199324, 26.295463996347667 ], [ 127.892821895809732, 26.309913845865495 ], [ 127.875504910626645, 26.328721586507751 ], [ 127.862184152793503, 26.331703301487622 ], [ 127.848330564647028, 26.315647913134477 ], [ 127.829681503680632, 26.312666198154606 ], [ 127.82781659758399, 26.302344877070443 ], [ 127.812897348810864, 26.300739338235129 ], [ 127.817426406474141, 26.283995861809707 ], [ 127.812897348810864, 26.274362628797821 ], [ 127.798510930351071, 26.265876209239732 ], [ 127.789985645337865, 26.248444644742033 ], [ 127.788120739241222, 26.225737738356873 ], [ 127.779062623914683, 26.217710044180301 ], [ 127.761212808418264, 26.209911712694488 ], [ 127.770537338901477, 26.200049116991842 ], [ 127.779595454228001, 26.18101201365883 ], [ 127.81502867006418, 26.190415883979959 ], [ 127.831013579463942, 26.176195397152888 ], [ 127.820090558040761, 26.157387656510632 ], [ 127.809167536617593, 26.151882951932414 ], [ 127.792383381747825, 26.134680750125472 ], [ 127.775599226878057, 26.134680750125472 ], [ 127.768139602491502, 26.126423693258143 ], [ 127.744162238391837, 26.114955558720183 ], [ 127.734038462438647, 26.098212082294761 ], [ 127.724713931955449, 26.089725662736672 ], [ 127.708729022555673, 26.089955025427432 ], [ 127.686083734239332, 26.081009880487823 ], [ 127.680489015949405, 26.074128999765048 ], [ 127.657843727633065, 26.080551155106303 ], [ 127.658642973103056, 26.101881885346909 ], [ 127.66423769139297, 26.114496833338663 ], [ 127.66290561560966, 26.131699035145605 ], [ 127.65278183965647, 26.131928397836361 ], [ 127.647986366836534, 26.144084620446602 ], [ 127.657044482163073, 26.16128682225354 ], [ 127.648785612306526, 26.168626428357832 ], [ 127.650384103246509, 26.180094562895793 ], [ 127.636796930256693, 26.198902303538048 ], [ 127.648519197149866, 26.216792593417264 ], [ 127.662372785296341, 26.217251318798784 ], [ 127.675959958286143, 26.225049650284596 ], [ 127.68421882814269, 26.246609743215959 ], [ 127.711926004435639, 26.274362628797821 ], [ 127.726046007738773, 26.273674540725544 ], [ 127.732972801811997, 26.28307841104667 ], [ 127.756950165911661, 26.296152084419944 ], [ 127.759614317478295, 26.308537669720941 ], [ 127.742030917138536, 26.330785850724585 ], [ 127.742830162608527, 26.342942073334822 ], [ 127.738567520101924, 26.362437902049351 ], [ 127.721783365232156, 26.390190787631212 ], [ 127.713258080218949, 26.411062792490302 ], [ 127.7143237408456, 26.441109304979754 ], [ 127.724713931955449, 26.440191854216717 ], [ 127.736169783691963, 26.422760289719019 ], [ 127.763610544828239, 26.43721013923685 ], [ 127.771602999528127, 26.446155284176456 ], [ 127.786522248301239, 26.435145875020016 ], [ 127.797178854567761, 26.436292688473813 ], [ 127.803572818327666, 26.455100429116065 ], [ 127.845133582767076, 26.481018413171853 ], [ 127.839805279633822, 26.495009537308164 ], [ 127.842735846357115, 26.503495956866256 ], [ 127.873640004530003, 26.513129189878143 ], [ 127.883230950169875, 26.503037231484736 ], [ 127.890157744243112, 26.510835562970549 ], [ 127.921328317572673, 26.525744137869896 ], [ 127.934382660249142, 26.538129723170893 ], [ 127.945039266515664, 26.53652418433558 ], [ 127.974078518591924, 26.557854914576183 ], [ 127.982870218761789, 26.575057116383125 ], [ 127.98260380360513, 26.584690349395011 ], [ 127.971947197338622, 26.590883142045506 ], [ 127.953298136372212, 26.595011670479174 ], [ 127.944506436202332, 26.602580639274226 ], [ 127.920262656946022, 26.609002794615485 ], [ 127.911737371932801, 26.600287012366636 ], [ 127.894953217063033, 26.606021079635614 ], [ 127.894686801906374, 26.614507499193703 ], [ 127.87950113797659, 26.637902493651143 ], [ 127.880033968289922, 26.655792783530359 ], [ 127.891223404869763, 26.659003861200986 ], [ 127.888559253303129, 26.67253625995578 ], [ 127.874705665156654, 26.68354566911222 ], [ 127.88056679860324, 26.709693015858768 ], [ 127.90827397489619, 26.699830420156125 ], [ 127.949035493865608, 26.708546202404975 ], [ 127.95995851528879, 26.706940663569661 ], [ 127.983136633918463, 26.693637627505627 ], [ 128.005515507078144, 26.688362285618165 ], [ 127.993793240184971, 26.67230689726502 ], [ 127.991129088618351, 26.647077001281509 ], [ 128.012442301151367, 26.632856514454438 ], [ 128.027627965081166, 26.628498623330014 ], [ 128.03428834399773, 26.635838229434309 ], [ 128.054003065590791, 26.635150141362033 ], [ 128.071586465930523, 26.644783374373919 ], [ 128.082775902510377, 26.646618275899993 ], [ 128.101424963476774, 26.67024263304819 ], [ 128.119807609286511, 26.659233223891746 ], [ 128.122738176009818, 26.665196653851485 ], [ 128.102757039260098, 26.675059249554131 ], [ 128.100892133163455, 26.680105228750833 ], [ 128.118209118346556, 26.70395894858979 ], [ 128.143518558229516, 26.708546202404975 ], [ 128.159769882785952, 26.722078601159765 ], [ 128.153642334182706, 26.740656979111261 ], [ 128.181083095318996, 26.748684673287833 ], [ 128.189341965175544, 26.76084089589807 ], [ 128.21811480209513, 26.784235890355507 ], [ 128.224775181011694, 26.79226358453208 ], [ 128.237296693374844, 26.817722843206347 ], [ 128.253015187617962, 26.843182101880618 ], [ 128.243957072291437, 26.858320039470726 ], [ 128.246354808701398, 26.867953272482612 ], [ 128.257810660437912, 26.875751603968425 ] ] ], [ [ [ 127.937846057285768, 26.955799183043382 ], [ 127.956761533408837, 26.944331048505422 ], [ 127.957827194035488, 26.935385903565816 ], [ 127.950633984805592, 26.922541592883299 ], [ 127.953031721215552, 26.913367085252933 ], [ 127.938645302755759, 26.910614732963822 ], [ 127.922393978199324, 26.917954339068118 ], [ 127.919196996319357, 26.94823021424833 ], [ 127.937846057285768, 26.955799183043382 ] ] ], [ [ [ 128.022033246791239, 27.092499346735863 ], [ 128.004449846451479, 27.078737585290309 ], [ 127.991129088618351, 27.043645093604155 ], [ 127.970348706398639, 27.03882847709821 ], [ 127.966618894205354, 27.024378627580383 ], [ 127.946637757455647, 27.019103285692921 ], [ 127.937579642129108, 27.000295545050665 ], [ 127.93225133899584, 27.021167549909752 ], [ 127.946104927142315, 27.034241223283026 ], [ 127.95116681511891, 27.045250632439469 ], [ 127.965553233578703, 27.055801316214392 ], [ 127.970348706398639, 27.066581362680072 ], [ 127.987932106738384, 27.075755870310442 ], [ 127.995924561438272, 27.089746994446752 ], [ 128.022033246791239, 27.092499346735863 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1489, "NAME_1": "Osaka", "VARNAME_1": "", "HASC_1": "JP.OS", "TYPE_1": "Fu", "ENGTYPE_1": "Urban Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.337527033597581, 34.448160839383164 ], [ 135.328468918271028, 34.449995740909237 ], [ 135.341256845790866, 34.466280491953142 ], [ 135.34791722470743, 34.457794072395053 ], [ 135.337527033597581, 34.448160839383164 ] ] ], [ [ [ 135.439830453756116, 34.555043853276949 ], [ 135.441428944696099, 34.549539148698727 ], [ 135.423845544356368, 34.525914791550534 ], [ 135.416918750283116, 34.5238505273337 ], [ 135.400667425726681, 34.535777387253177 ], [ 135.409725541053234, 34.553897039823156 ], [ 135.420648562476401, 34.540594003759125 ], [ 135.430772338429591, 34.555043853276949 ], [ 135.439830453756116, 34.555043853276949 ] ] ], [ [ [ 135.38095270413362, 34.660550691026181 ], [ 135.404663653076625, 34.652981722231125 ], [ 135.391875725556815, 34.641972313074682 ], [ 135.379087798036977, 34.642889763837722 ], [ 135.373226664590391, 34.651834908777332 ], [ 135.38095270413362, 34.660550691026181 ] ] ], [ [ [ 135.732087880615325, 34.775461399096535 ], [ 135.714238065118906, 34.77798438869489 ], [ 135.712639574178922, 34.750002140422268 ], [ 135.702249383069073, 34.746791062751633 ], [ 135.706512025575677, 34.721331804077366 ], [ 135.68066975537937, 34.702753426125867 ], [ 135.675874282559448, 34.687615488535762 ], [ 135.680936170536057, 34.677294167451599 ], [ 135.669213903642884, 34.649770644560498 ], [ 135.661754279256314, 34.611467075203713 ], [ 135.673742961306147, 34.600457666047269 ], [ 135.684665982729314, 34.581649925405017 ], [ 135.675874282559448, 34.567429438577946 ], [ 135.66521767629294, 34.562612822072005 ], [ 135.655893145809728, 34.544034444120513 ], [ 135.664951261136281, 34.527749693076608 ], [ 135.679604094752733, 34.522244988498386 ], [ 135.676140697716107, 34.499996807494746 ], [ 135.682534661476012, 34.491051662555137 ], [ 135.686797303982615, 34.442197409423429 ], [ 135.669480318799543, 34.416738150749154 ], [ 135.677206358342772, 34.409857270026379 ], [ 135.676939943186113, 34.395866145890068 ], [ 135.666016921762917, 34.393113793600961 ], [ 135.645769369856538, 34.380498845609203 ], [ 135.624722572480181, 34.380957570990724 ], [ 135.611401814647024, 34.374306052958708 ], [ 135.601278038693835, 34.376829042557056 ], [ 135.580231241317477, 34.372700514123395 ], [ 135.553589725651193, 34.355039586934936 ], [ 135.540801798131355, 34.352975322718102 ], [ 135.51922217044168, 34.338754835891031 ], [ 135.506167827765182, 34.340131012035584 ], [ 135.488051597112104, 34.359397478059357 ], [ 135.465939139109082, 34.344947628541533 ], [ 135.437166302189496, 34.344947628541533 ], [ 135.429440262646267, 34.337378659746477 ], [ 135.411856862306536, 34.338754835891031 ], [ 135.386281007266888, 34.325910525208513 ], [ 135.341523260947525, 34.331873955168255 ], [ 135.332465145620972, 34.313754302598284 ], [ 135.309287026991313, 34.311001950309169 ], [ 135.29516702368818, 34.295634650028305 ], [ 135.285309662891649, 34.314442390670557 ], [ 135.272788150528498, 34.309167048783095 ], [ 135.249876447055499, 34.310084499546136 ], [ 135.23202663155908, 34.298616365008172 ], [ 135.210713419026035, 34.305038520349427 ], [ 135.206717191676091, 34.284854603562621 ], [ 135.187535300396377, 34.276826909386045 ], [ 135.166488503019991, 34.275450733241499 ], [ 135.15156925424688, 34.27980862436592 ], [ 135.135051514533785, 34.269028577900237 ], [ 135.112939056530763, 34.27063411673555 ], [ 135.101749619950908, 34.286918867779455 ], [ 135.106278677614199, 34.307790872638542 ], [ 135.092425089467724, 34.311460675690689 ], [ 135.102815280577573, 34.320176457939539 ], [ 135.121730756700629, 34.322240722156366 ], [ 135.142511138920327, 34.319029644485738 ], [ 135.153700575500181, 34.331415229786735 ], [ 135.175813033503204, 34.337608022437237 ], [ 135.189666621649678, 34.336690571674197 ], [ 135.225899082955834, 34.349305519665954 ], [ 135.246679465175532, 34.375682229103262 ], [ 135.263996450358633, 34.380498845609203 ], [ 135.293035702434878, 34.406416829664991 ], [ 135.293568532748196, 34.413756435769287 ], [ 135.263996450358633, 34.436692704845207 ], [ 135.228829649679113, 34.413068347697006 ], [ 135.219505119195929, 34.422472218018136 ], [ 135.248277956115516, 34.442197409423429 ], [ 135.259733807852001, 34.443802948258742 ], [ 135.267193432238571, 34.435316528700653 ], [ 135.294101363061515, 34.41513261191384 ], [ 135.316213821064537, 34.417655601512195 ], [ 135.314348914967894, 34.426371383761044 ], [ 135.336994203284263, 34.445179124403296 ], [ 135.356176094563978, 34.453894906652145 ], [ 135.355110433937341, 34.463298776973275 ], [ 135.374025910060396, 34.476601813037306 ], [ 135.367099115987173, 34.516281558538644 ], [ 135.378554967723659, 34.518116460064718 ], [ 135.394539877123435, 34.532336946891789 ], [ 135.418250826066441, 34.520410086972312 ], [ 135.434235735466217, 34.534630573799383 ], [ 135.445158756889384, 34.555731941349229 ], [ 135.43103875358625, 34.560548557855171 ], [ 135.410791201679871, 34.560548557855171 ], [ 135.402532331823323, 34.600228303356509 ], [ 135.415586674499792, 34.593806148015254 ], [ 135.421714223103038, 34.570640516248574 ], [ 135.429173847489608, 34.570411153557814 ], [ 135.423845544356368, 34.604815557171698 ], [ 135.445158756889384, 34.597705313758162 ], [ 135.44382668110606, 34.610549624440672 ], [ 135.403331577293301, 34.611696437894473 ], [ 135.4185172412231, 34.619724132071042 ], [ 135.398536104473379, 34.633256530825832 ], [ 135.39826968931672, 34.638531872713294 ], [ 135.417451580596435, 34.644265939982276 ], [ 135.43370290515287, 34.644265939982276 ], [ 135.441695359852758, 34.638990598094814 ], [ 135.439297623442798, 34.625687562030784 ], [ 135.453417626745932, 34.616742417091174 ], [ 135.46141008144582, 34.645183390745316 ], [ 135.43849837797282, 34.64655956688987 ], [ 135.419582901849736, 34.654357898375679 ], [ 135.420914977633061, 34.686927400463489 ], [ 135.409725541053234, 34.698395535001445 ], [ 135.421447807946379, 34.705735141105741 ], [ 135.449687814552647, 34.716744550262177 ], [ 135.45395045705925, 34.729818223635455 ], [ 135.462475742072485, 34.733029301306082 ], [ 135.458479514722541, 34.757112383835796 ], [ 135.447556493299345, 34.766974979538446 ], [ 135.445158756889384, 34.786700170943732 ], [ 135.42118139278972, 34.808948351947379 ], [ 135.424911204983005, 34.848628097448717 ], [ 135.43370290515287, 34.853444713954659 ], [ 135.444892341732725, 34.894271272909798 ], [ 135.432637244526234, 34.896335537126632 ], [ 135.423312714043021, 34.904592593993961 ], [ 135.44116252953944, 34.916519453913438 ], [ 135.463807817855781, 34.914913915078124 ], [ 135.469668951302367, 34.92592332423456 ], [ 135.441961775009418, 34.933951018411136 ], [ 135.420648562476401, 34.931657391503542 ], [ 135.412656107776513, 34.941519987206192 ], [ 135.389744404303514, 34.943354888732259 ], [ 135.38548176179691, 34.952529396362628 ], [ 135.363902134107207, 34.951382582908835 ], [ 135.349515715647414, 34.965603069735906 ], [ 135.361504397697246, 34.98074100732601 ], [ 135.355909679407318, 34.98968615226562 ], [ 135.357241755190643, 35.021108840899629 ], [ 135.342588921574162, 35.022714379734943 ], [ 135.336994203284263, 35.031200799293032 ], [ 135.341789676104185, 35.040604669614162 ], [ 135.362037228010564, 35.047026824955417 ], [ 135.373759494903737, 35.042210208449475 ], [ 135.384948931483564, 35.027760358931644 ], [ 135.383350440543609, 35.011475607887746 ], [ 135.403065162136642, 35.004824089855731 ], [ 135.412656107776513, 35.008035167526359 ], [ 135.420914977633061, 35.000007473349783 ], [ 135.443293850792742, 35.004365364474211 ], [ 135.472865933182334, 34.992209141863967 ], [ 135.492847069932054, 34.986245711904232 ], [ 135.486186691015462, 34.978447380418416 ], [ 135.488584427425451, 34.952988121744148 ], [ 135.496310466968652, 34.937850184154044 ], [ 135.508831979331831, 34.942437437969225 ], [ 135.524550473574919, 34.928675676523675 ], [ 135.538670476878053, 34.922712246563933 ], [ 135.543998780011322, 34.911932200098249 ], [ 135.575968598810874, 34.91353773893357 ], [ 135.584227468667422, 34.922941609254693 ], [ 135.582362562570779, 34.933951018411136 ], [ 135.565045577387679, 34.940373173752391 ], [ 135.578099920064176, 34.968814147406533 ], [ 135.596482565873913, 34.965144344354385 ], [ 135.616197287466974, 34.967896696643493 ], [ 135.619660684503572, 34.952300033671875 ], [ 135.615930872310287, 34.942208075278465 ], [ 135.625788233106817, 34.930739940740509 ], [ 135.646035785013197, 34.926611412306841 ], [ 135.656958806436393, 34.905968770138514 ], [ 135.679071264439415, 34.894271272909798 ], [ 135.694523343525844, 34.849774910902511 ], [ 135.712905989335582, 34.841976579416702 ], [ 135.725960332012079, 34.82316883877445 ], [ 135.746740714231777, 34.801379383152323 ], [ 135.746207883918458, 34.79105806206816 ], [ 135.732087880615325, 34.775461399096535 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1490, "NAME_1": "Saga", "VARNAME_1": "", "HASC_1": "JP.SG", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.037197491789357, 33.467635336387616 ], [ 130.062773346828976, 33.469011512532177 ], [ 130.075827689505473, 33.465800434861542 ], [ 130.099272223291791, 33.466488522933822 ], [ 130.107531093148367, 33.472681315584325 ], [ 130.144029969611182, 33.46947023791369 ], [ 130.153088084937707, 33.474516217110391 ], [ 130.170937900434126, 33.464194896026228 ], [ 130.188787715930545, 33.465341709480029 ], [ 130.206104701113617, 33.477956657471779 ], [ 130.250063201963002, 33.467635336387616 ], [ 130.273507735749348, 33.476580481327225 ], [ 130.300415666572292, 33.459148916829527 ], [ 130.312404348622124, 33.458919554138767 ], [ 130.332651900528504, 33.449056958436124 ], [ 130.360092661664766, 33.430937305866145 ], [ 130.370482852774614, 33.431625393938425 ], [ 130.387000592487738, 33.42428578783413 ], [ 130.39898927453757, 33.423827062452617 ], [ 130.414974183937318, 33.403872508356564 ], [ 130.430426263023776, 33.393551187272401 ], [ 130.449608154303519, 33.414881917513 ], [ 130.460797590883345, 33.416946181729834 ], [ 130.471187781993194, 33.429331767030831 ], [ 130.508219488769356, 33.443093528476382 ], [ 130.518609679879205, 33.444240341930183 ], [ 130.539390062098903, 33.435524559681333 ], [ 130.543652704605506, 33.416716819039081 ], [ 130.542853459135529, 33.361899135947631 ], [ 130.538324401472238, 33.339650954943991 ], [ 130.512482131275959, 33.341027131088545 ], [ 130.486373445922993, 33.304329100567074 ], [ 130.473585518403155, 33.302494199041 ], [ 130.465593063703267, 33.289649888358483 ], [ 130.438152302567005, 33.268777883499396 ], [ 130.419769656757268, 33.261438277395101 ], [ 130.392595310777637, 33.243547987515889 ], [ 130.362756813231414, 33.199280988199362 ], [ 130.35396511306152, 33.146986294706267 ], [ 130.344640582578336, 33.141481590128045 ], [ 130.287361323895794, 33.147674382778547 ], [ 130.284963587485834, 33.161665506914858 ], [ 130.260186977916192, 33.179555796794077 ], [ 130.251128862589667, 33.190106480568993 ], [ 130.218359798320108, 33.198822262817842 ], [ 130.232746216779901, 33.185060501372291 ], [ 130.222356025670052, 33.164647221894725 ], [ 130.191451867497165, 33.146298206633986 ], [ 130.190386206870528, 33.140334776674251 ], [ 130.166675257927523, 33.127719828682494 ], [ 130.148026196961126, 33.111664440329349 ], [ 130.132840533031327, 33.116251694144538 ], [ 130.135504684597947, 33.096985228120765 ], [ 130.142964308984517, 33.08070047707686 ], [ 130.161613369950913, 33.055699943784106 ], [ 130.17013865496412, 33.051112689968924 ], [ 130.172003561060762, 33.03528666430654 ], [ 130.179196770290673, 33.029323234346805 ], [ 130.182127337013952, 33.014414659447453 ], [ 130.193849603907125, 32.994918830732921 ], [ 130.203973379860315, 32.99079030229926 ], [ 130.222888855983399, 32.973588100492321 ], [ 130.219425458946773, 32.953174821014748 ], [ 130.212765080030209, 32.954092271777782 ], [ 130.203706964703656, 32.954780359850062 ], [ 130.153354500094366, 32.959596976356011 ], [ 130.146960536334461, 32.968083395914093 ], [ 130.134971854284629, 32.965101680934225 ], [ 130.087549956398647, 32.975881727399909 ], [ 130.078491841072093, 32.984138784267245 ], [ 130.06144127104568, 32.983909421576485 ], [ 130.035599000849373, 33.006386965270885 ], [ 130.031069943186111, 33.015790835592007 ], [ 130.01881484597962, 33.014414659447453 ], [ 129.999899369856536, 33.030928773182112 ], [ 129.99856729407324, 33.040791368884761 ], [ 129.982848799830123, 33.054553130330312 ], [ 129.949546905247246, 33.066250627559029 ], [ 129.93542690194414, 33.083223466675207 ], [ 129.924503880520945, 33.087122632418115 ], [ 129.927168032087565, 33.102489932698987 ], [ 129.937558223197442, 33.107765274586441 ], [ 129.953809547753877, 33.106847823823408 ], [ 129.958605020573799, 33.124738113702627 ], [ 129.951411811343888, 33.132536445188435 ], [ 129.940488789920721, 33.162124232296378 ], [ 129.909318216591174, 33.155702076955116 ], [ 129.888537834371448, 33.15799570386271 ], [ 129.848575560872035, 33.173363004143575 ], [ 129.836320463665544, 33.17106937723598 ], [ 129.818470648169125, 33.182537511773944 ], [ 129.811011023782555, 33.200657164343916 ], [ 129.812343099565879, 33.223364070729076 ], [ 129.816872157229142, 33.235979018720833 ], [ 129.786767244526231, 33.259374013178274 ], [ 129.768118183559835, 33.282998370326467 ], [ 129.763855541053232, 33.294925230245944 ], [ 129.776909883729701, 33.32543046811692 ], [ 129.793960453756142, 33.337127965345637 ], [ 129.801686493299343, 33.333687524984249 ], [ 129.819536308795762, 33.313732970888196 ], [ 129.838718200075505, 33.287585624141656 ], [ 129.852571788221979, 33.293778416792151 ], [ 129.835521218195538, 33.303411649804033 ], [ 129.835254803038879, 33.336898602654877 ], [ 129.85763367619856, 33.368091928598126 ], [ 129.869622358248392, 33.389881384220253 ], [ 129.867224621838432, 33.399973342613656 ], [ 129.847776315402029, 33.405478047191878 ], [ 129.832590651472259, 33.413964466749967 ], [ 129.810211778312578, 33.43414838353678 ], [ 129.782238186862969, 33.451121222652958 ], [ 129.798755926576064, 33.463736170644708 ], [ 129.796091775009444, 33.475663030564192 ], [ 129.820335554265768, 33.483690724740761 ], [ 129.827262348338991, 33.468323424459896 ], [ 129.838185369762158, 33.463506807953955 ], [ 129.8400502758588, 33.450662497271438 ], [ 129.849108391185354, 33.445387155383976 ], [ 129.856035185258577, 33.464882984098509 ], [ 129.839517445545482, 33.46992896329521 ], [ 129.840849521328806, 33.491259693535817 ], [ 129.829660084748951, 33.505709543053641 ], [ 129.84511216383541, 33.516489589519324 ], [ 129.854703109475281, 33.533921154017023 ], [ 129.888537834371448, 33.541948848193599 ], [ 129.89519821328804, 33.549517816988654 ], [ 129.929565768497554, 33.538049682450691 ], [ 129.947149168837285, 33.527957724057288 ], [ 129.96846238137033, 33.508920620724275 ], [ 129.953276717440531, 33.503415916146054 ], [ 129.944751432427324, 33.493553320443411 ], [ 129.940488789920721, 33.473828129038118 ], [ 129.963400493393721, 33.483690724740761 ], [ 129.967663135900324, 33.455020388395866 ], [ 129.977786911853514, 33.455020388395866 ], [ 129.999632954699877, 33.44630460614701 ], [ 130.025208809739524, 33.44699269421929 ], [ 130.037996737259334, 33.452268036106751 ], [ 130.037197491789357, 33.467635336387616 ] ] ], [ [ [ 129.889603494998113, 33.556628060402183 ], [ 129.875749906851638, 33.543325024338152 ], [ 129.873885000754996, 33.559380412691297 ], [ 129.889603494998113, 33.556628060402183 ] ] ], [ [ [ 129.762523465269908, 33.58254604445797 ], [ 129.773712901849763, 33.572454086064567 ], [ 129.759859313703288, 33.562820853052685 ], [ 129.739878176953567, 33.572912811446088 ], [ 129.762523465269908, 33.58254604445797 ] ] ], [ [ [ 129.864294055115124, 33.617638536144128 ], [ 129.861629903548504, 33.598601432811115 ], [ 129.848042730558689, 33.599518883574156 ], [ 129.864294055115124, 33.617638536144128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1491, "NAME_1": "Saitama", "VARNAME_1": "", "HASC_1": "JP.ST", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.662510686862959, 36.217693998590335 ], [ 139.705403527085679, 36.200721159474156 ], [ 139.694480505662511, 36.177096802325963 ], [ 139.700341639109098, 36.151866906342448 ], [ 139.725651078992058, 36.114710150439457 ], [ 139.74030391260851, 36.083287461805448 ], [ 139.760285049358231, 36.079388296062547 ], [ 139.779999770951292, 36.093838145580371 ], [ 139.782663922517912, 36.077782757227226 ], [ 139.793586943941108, 36.055993301605106 ], [ 139.816232232257448, 36.035809384818293 ], [ 139.819962044450733, 36.02571742642489 ], [ 139.818629968667409, 35.993147924337087 ], [ 139.825290347583973, 35.984432142088238 ], [ 139.849534126840297, 35.938100878554877 ], [ 139.85859224216685, 35.931908085904382 ], [ 139.878040548603224, 35.909889267591502 ], [ 139.896689609569648, 35.881907019318881 ], [ 139.903882818799531, 35.860117563696754 ], [ 139.892426967063045, 35.837410657311594 ], [ 139.895623948942983, 35.815621201689474 ], [ 139.892426967063045, 35.805299880605311 ], [ 139.874843566723285, 35.794290471448868 ], [ 139.847935635900342, 35.795207922211901 ], [ 139.827954499150621, 35.791308756469 ], [ 139.819429214137415, 35.808510958275939 ], [ 139.792787698471102, 35.802776891006957 ], [ 139.770142410154762, 35.814474388235681 ], [ 139.758686558418276, 35.808969683657452 ], [ 139.760285049358231, 35.788097678798366 ], [ 139.749362027935064, 35.783510424983184 ], [ 139.691017108625886, 35.798189637191776 ], [ 139.659313704982992, 35.796584098356462 ], [ 139.643328795583216, 35.791767481850513 ], [ 139.628409546810104, 35.775024005425095 ], [ 139.624946149773507, 35.763555870887132 ], [ 139.597238973480557, 35.775482730806615 ], [ 139.566068400150982, 35.758509891690437 ], [ 139.550882736221212, 35.760115430525744 ], [ 139.539160469328039, 35.772042290445228 ], [ 139.546886508871268, 35.778693808477243 ], [ 139.536762732918078, 35.796125372974942 ], [ 139.529303108531508, 35.788785766870646 ], [ 139.499464610985257, 35.776400181569649 ], [ 139.48561102283881, 35.777776357714203 ], [ 139.456305355605878, 35.765390772413213 ], [ 139.442185352302744, 35.766308223176246 ], [ 139.39263213316346, 35.763785233577892 ], [ 139.365724202340488, 35.788785766870646 ], [ 139.326294759154393, 35.795207922211901 ], [ 139.318302304454505, 35.821813994339969 ], [ 139.305247961778036, 35.830988501970339 ], [ 139.285000409871657, 35.83603448116704 ], [ 139.26422002765193, 35.833282128877926 ], [ 139.229586057285758, 35.83649320654856 ], [ 139.218663035862591, 35.841997911126782 ], [ 139.19868189911287, 35.836951931930074 ], [ 139.186959632219697, 35.840392372291461 ], [ 139.146464528406938, 35.860117563696754 ], [ 139.114761124764044, 35.861493739841308 ], [ 139.082524890807832, 35.872044423616231 ], [ 139.072401114854642, 35.868833345945603 ], [ 139.053219223574928, 35.875484863977618 ], [ 139.026577707908643, 35.894063241929118 ], [ 139.013523365232146, 35.893833879238358 ], [ 138.999936192242359, 35.8812189312466 ], [ 138.97729090392599, 35.879613392411287 ], [ 138.956510521706292, 35.870209522090164 ], [ 138.946919576066421, 35.851860506829425 ], [ 138.933598818233293, 35.846585164941963 ], [ 138.912552020856907, 35.847961341086517 ], [ 138.892038053793868, 35.839933646909948 ], [ 138.856871253114377, 35.862181827913588 ], [ 138.834758795111355, 35.859658838315241 ], [ 138.797993503491881, 35.870209522090164 ], [ 138.791333124575317, 35.89062280156773 ], [ 138.731656129482815, 35.905990101848595 ], [ 138.742046320592664, 35.927779557470714 ], [ 138.739382169026044, 35.938100878554877 ], [ 138.715404804926379, 35.970670380642687 ], [ 138.72046669290296, 35.98993684666646 ], [ 138.730856884012837, 35.992689198955567 ], [ 138.750038775292552, 36.011496939597819 ], [ 138.75803122999244, 36.031222131003112 ], [ 138.779344442525485, 36.033974483292226 ], [ 138.798792748961858, 36.027781690641724 ], [ 138.820905206964881, 36.032368944456906 ], [ 138.832361058701395, 36.038561737107408 ], [ 138.846214646847869, 36.053240949315992 ], [ 138.850210874197813, 36.064020995781675 ], [ 138.867261444224226, 36.073883591484325 ], [ 138.90429315100036, 36.087645352929876 ], [ 138.934131648546611, 36.084893000640761 ], [ 138.960773164212895, 36.105306280118334 ], [ 138.967966373442806, 36.122508481925273 ], [ 138.999936192242359, 36.122508481925273 ], [ 139.026577707908643, 36.130765538792602 ], [ 139.045493184031699, 36.12549019690514 ], [ 139.052153562948263, 36.149573279434854 ], [ 139.066806396564743, 36.15668352284839 ], [ 139.06041243280481, 36.172738911201535 ], [ 139.06787205719138, 36.194987092205174 ], [ 139.076397342204586, 36.201867972927957 ], [ 139.101706782087575, 36.238566003449421 ], [ 139.1107648974141, 36.258061832163953 ], [ 139.130213203850502, 36.275952122043172 ], [ 139.165646419686652, 36.273658495135578 ], [ 139.196816993016228, 36.261043547143828 ], [ 139.214933223669306, 36.255997567947119 ], [ 139.25169851528878, 36.238336640758661 ], [ 139.28180342799169, 36.244529433409163 ], [ 139.30951060428464, 36.23443747501576 ], [ 139.331356647130974, 36.232831936180446 ], [ 139.340414762457527, 36.238336640758661 ], [ 139.363859296243845, 36.243382619955369 ], [ 139.3750487328237, 36.241318355738535 ], [ 139.401423833333325, 36.223886791240837 ], [ 139.420072894299722, 36.214941646301227 ], [ 139.447247240279353, 36.193610916060621 ], [ 139.466961961872386, 36.186041947265565 ], [ 139.494136307852017, 36.188564936863919 ], [ 139.537295563231396, 36.189941113008473 ], [ 139.585783121744043, 36.206225864052378 ], [ 139.605497843337105, 36.201179884855677 ], [ 139.622015583050199, 36.186500672647085 ], [ 139.646792192619841, 36.193610916060621 ], [ 139.662510686862959, 36.217693998590335 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1492, "NAME_1": "Shiga", "VARNAME_1": "Siga", "HASC_1": "JP.SH", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.279038197244233, 35.661030748117774 ], [ 136.281968763967541, 35.635112764061986 ], [ 136.29235895507739, 35.617222474182768 ], [ 136.315803488863708, 35.619745463781122 ], [ 136.325660849660238, 35.6142407592029 ], [ 136.320598961683658, 35.604378163500257 ], [ 136.325660849660238, 35.573643562938528 ], [ 136.319799716213652, 35.547725578882734 ], [ 136.342445004529992, 35.544285138521346 ], [ 136.34510915609664, 35.534193180127943 ], [ 136.359229159399774, 35.535798718963257 ], [ 136.362159726123053, 35.545661314665907 ], [ 136.374947653642892, 35.556441361131583 ], [ 136.384005768969416, 35.535339993581736 ], [ 136.403187660249131, 35.527082936714407 ], [ 136.405052566345773, 35.516073527557964 ], [ 136.390932563042639, 35.490384906192936 ], [ 136.402921245092472, 35.472494616313725 ], [ 136.422902381842192, 35.463549471374108 ], [ 136.426099363722159, 35.441530653061228 ], [ 136.418106909022271, 35.421805461655936 ], [ 136.42849710013212, 35.399557280652296 ], [ 136.445281255001873, 35.386942332660539 ], [ 136.439420121555287, 35.375932923504102 ], [ 136.417041248395606, 35.368593317399807 ], [ 136.416242002925628, 35.357583908243363 ], [ 136.423968042468857, 35.350703027520588 ], [ 136.415442757455651, 35.323408867320246 ], [ 136.415442757455651, 35.312628820854563 ], [ 136.398925017742528, 35.291298090613957 ], [ 136.39812577227255, 35.252535795875659 ], [ 136.381874447716115, 35.243590650936042 ], [ 136.395994451019249, 35.227076537201384 ], [ 136.418106909022271, 35.214690951900387 ], [ 136.415442757455651, 35.192442770896747 ], [ 136.422103136372215, 35.17959846021423 ], [ 136.432759742638723, 35.177992921378916 ], [ 136.457269937051706, 35.159643906118184 ], [ 136.457802767365024, 35.149093222343261 ], [ 136.447678991411834, 35.146340870054146 ], [ 136.438620876085309, 35.127991854793414 ], [ 136.448211821725181, 35.122945875596713 ], [ 136.439153706398628, 35.075926523991079 ], [ 136.443949179218578, 35.066752016360709 ], [ 136.420771060588891, 35.044733198047822 ], [ 136.419438984805595, 35.033494426200626 ], [ 136.425300118252153, 35.024549281261017 ], [ 136.42103747574555, 35.014916048249134 ], [ 136.422902381842192, 35.000007473349783 ], [ 136.413045021045662, 34.972483950458681 ], [ 136.399724263212534, 34.954364297888702 ], [ 136.378943880992836, 34.941519987206192 ], [ 136.368553689882958, 34.902757692467887 ], [ 136.359761989713093, 34.897482350580425 ], [ 136.323529528406937, 34.886472941423982 ], [ 136.307278203850501, 34.871793729215398 ], [ 136.278771782087574, 34.869041376926283 ], [ 136.271578572857663, 34.861931133512748 ], [ 136.249998945167988, 34.855738340862253 ], [ 136.198847235088692, 34.868812014235523 ], [ 136.182063080218938, 34.883261863753354 ], [ 136.149826846262727, 34.879592060701206 ], [ 136.130378539826353, 34.882573775681081 ], [ 136.11865627293318, 34.888995931022336 ], [ 136.11386080011323, 34.898629164034219 ], [ 136.100540042280102, 34.886014216042469 ], [ 136.090149851170253, 34.882344412990321 ], [ 136.09361324820685, 34.871793729215398 ], [ 136.103470609003381, 34.867206475400209 ], [ 136.125050236693085, 34.869500102307804 ], [ 136.129046464043029, 34.85917878122364 ], [ 136.113594384956571, 34.852297900500865 ], [ 136.109864572763286, 34.841976579416702 ], [ 136.090149851170253, 34.832802071786332 ], [ 136.09361324820685, 34.811471341545726 ], [ 136.065906071913929, 34.797480217409415 ], [ 136.045125689694203, 34.795645315883341 ], [ 136.02541096810117, 34.788305709779053 ], [ 136.017152098244622, 34.794039777048027 ], [ 136.0179513437146, 34.805278548895231 ], [ 136.031272101547756, 34.816287958051674 ], [ 136.012623040581332, 34.82271011339293 ], [ 136.000101528218181, 34.841288491344422 ], [ 135.979587561155142, 34.835095698693927 ], [ 135.964401897225372, 34.850692361665551 ], [ 135.948949818138914, 34.848628097448717 ], [ 135.942555854379009, 34.885096765279428 ], [ 135.931632832955813, 34.884867402588668 ], [ 135.905257732446188, 34.869500102307804 ], [ 135.869558101453379, 34.888995931022336 ], [ 135.868758855983373, 34.902757692467887 ], [ 135.881280368346552, 34.933721655720376 ], [ 135.874886404586618, 34.952070670981115 ], [ 135.85916791034353, 34.964914981663625 ], [ 135.858901495186842, 34.975465665438549 ], [ 135.836256206870502, 34.996796395679155 ], [ 135.837055452340508, 35.019044576682795 ], [ 135.822136203567368, 35.03555869041746 ], [ 135.82133695809739, 35.045880011501623 ], [ 135.83892035843715, 35.056201332585786 ], [ 135.839186773593809, 35.08945892274587 ], [ 135.845314322197055, 35.098633430376239 ], [ 135.854638852680239, 35.128450580174928 ], [ 135.85170828595696, 35.138313175877578 ], [ 135.856503758776881, 35.14817577158022 ], [ 135.843449416100412, 35.177075470615883 ], [ 135.844781491883737, 35.186938066318525 ], [ 135.832526394677245, 35.216525853426461 ], [ 135.840518849377105, 35.223636096839996 ], [ 135.840252434220446, 35.233728055233399 ], [ 135.850376210173636, 35.267444370775003 ], [ 135.840518849377105, 35.271572899208664 ], [ 135.830927903737262, 35.275930790333092 ], [ 135.82160337325405, 35.296344069810658 ], [ 135.807749785107575, 35.313775634308357 ], [ 135.776845626934687, 35.339464255673391 ], [ 135.7709844934881, 35.352537929046662 ], [ 135.793629781804441, 35.383272529608391 ], [ 135.812545257927525, 35.387630420732819 ], [ 135.815209409494145, 35.408502425591905 ], [ 135.827198091543977, 35.411254777881013 ], [ 135.848777719233681, 35.408273062901145 ], [ 135.866361119573412, 35.391529586475727 ], [ 135.895133956492998, 35.403227083704444 ], [ 135.895933201963004, 35.416530119768481 ], [ 135.914049432616082, 35.427080803543404 ], [ 135.919111320592663, 35.458962217558927 ], [ 135.924972454039249, 35.482127849325607 ], [ 135.932698493582478, 35.489008730048383 ], [ 135.940957363439026, 35.509651372216709 ], [ 135.947884157512249, 35.517908429084038 ], [ 135.961737745658723, 35.50116495265862 ], [ 135.987047185541712, 35.486027015068515 ], [ 136.01049171932803, 35.490155543502176 ], [ 136.018484174027918, 35.507357745309122 ], [ 136.033403422801058, 35.526394848642127 ], [ 136.054450220177415, 35.530752739766555 ], [ 136.073898526613817, 35.52364249635302 ], [ 136.089617020856906, 35.536028081654017 ], [ 136.098941551340118, 35.531670190529596 ], [ 136.110663818233292, 35.548643029645774 ], [ 136.116791366836537, 35.575937189846115 ], [ 136.142367221876185, 35.572038024103207 ], [ 136.172738549735755, 35.562863516472845 ], [ 136.173537795205732, 35.583276795950411 ], [ 136.179665343808978, 35.593598117034574 ], [ 136.162881188939224, 35.622727178760989 ], [ 136.153556658456012, 35.653920504704246 ], [ 136.137571749056235, 35.666535452695996 ], [ 136.150626091732732, 35.683967017193694 ], [ 136.153290243299352, 35.694517700968618 ], [ 136.16421326472252, 35.693829612896337 ], [ 136.187124968195548, 35.700022405546839 ], [ 136.202310632125318, 35.686719369482802 ], [ 136.279038197244233, 35.661030748117774 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1493, "NAME_1": "Shimane", "VARNAME_1": "Simane", "HASC_1": "JP.SM", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.192618607304638, 35.506210931855321 ], [ 133.183560491978085, 35.504605393020007 ], [ 133.189155210268012, 35.487632553903829 ], [ 133.176100867591543, 35.482357212016367 ], [ 133.162247279445069, 35.483962750851681 ], [ 133.152389918648538, 35.496348336152678 ], [ 133.156386145998482, 35.505064118401528 ], [ 133.178765019158163, 35.506669657236841 ], [ 133.183027661664767, 35.520660781373152 ], [ 133.191286531521314, 35.519513967919352 ], [ 133.192618607304638, 35.506210931855321 ] ] ], [ [ [ 133.317833730936201, 35.388777234186612 ], [ 133.322096373442804, 35.378455913102449 ], [ 133.319165806719525, 35.363776700893865 ], [ 133.307709954983011, 35.357813270934123 ], [ 133.297586179029821, 35.33785871683807 ], [ 133.300783160909759, 35.310105831256209 ], [ 133.306910709513033, 35.30161941169812 ], [ 133.303447312476408, 35.291527453304717 ], [ 133.311706182332955, 35.269967360373357 ], [ 133.304512973103044, 35.260104764670707 ], [ 133.272276739146832, 35.255746873546286 ], [ 133.262152963193643, 35.258040500453873 ], [ 133.239507674877302, 35.245884277843636 ], [ 133.228584653454135, 35.245654915152876 ], [ 133.182761246508107, 35.230287614872012 ], [ 133.15425482474518, 35.212856050374313 ], [ 133.155320485371846, 35.200699827764076 ], [ 133.176900113061521, 35.20207600390863 ], [ 133.185958228388074, 35.195424485876615 ], [ 133.18462615260475, 35.184873802101691 ], [ 133.19741408012456, 35.166524786840959 ], [ 133.182761246508107, 35.152533662704649 ], [ 133.161181618818404, 35.145652781981873 ], [ 133.152389918648538, 35.137625087805297 ], [ 133.145463124575315, 35.117441171018491 ], [ 133.146795200358611, 35.106431761862048 ], [ 133.139601991128728, 35.086706570456755 ], [ 133.143864633635332, 35.073174171701964 ], [ 133.114558966402399, 35.082578042023094 ], [ 133.103902360135891, 35.079366964352467 ], [ 133.061542350226489, 35.076155886681832 ], [ 133.054881971309925, 35.06721074174223 ], [ 133.042626874103433, 35.064917114834635 ], [ 133.018116679690451, 35.083266130095367 ], [ 132.993073654964121, 35.097945342303959 ], [ 132.98055214260097, 35.083266130095367 ], [ 132.953111381464709, 35.072256720938931 ], [ 132.923006468761798, 35.08074314049702 ], [ 132.909152880615324, 35.087394658529035 ], [ 132.89476646215553, 35.101615145356106 ], [ 132.874518910249151, 35.098633430376239 ], [ 132.862263813042659, 35.08945892274587 ], [ 132.830293994243107, 35.0578068714211 ], [ 132.83189248518309, 35.043815747284789 ], [ 132.8217687092299, 35.040145944232641 ], [ 132.808181536240085, 35.023402467807223 ], [ 132.789532475273688, 35.010099431743186 ], [ 132.774346811343889, 34.994273406080808 ], [ 132.766087941487342, 34.977988655036903 ], [ 132.753832844280851, 34.975006940057028 ], [ 132.752767183654214, 34.959410277085411 ], [ 132.730388310494533, 34.953217484434909 ], [ 132.692290943091734, 34.948859593310488 ], [ 132.6781709397886, 34.929363764595955 ], [ 132.658989048508857, 34.919959894274825 ], [ 132.649131687712327, 34.906886220901555 ], [ 132.65073017865231, 34.896794262508145 ], [ 132.668579994148729, 34.887390392187022 ], [ 132.677904524631941, 34.891518920620683 ], [ 132.692557358248393, 34.88096823684576 ], [ 132.703213964514902, 34.878674609938173 ], [ 132.711472834371449, 34.856426428934526 ], [ 132.70374679482822, 34.842205942107455 ], [ 132.684032073235187, 34.847251921304164 ], [ 132.662452445545483, 34.828902906043425 ], [ 132.650996593808969, 34.83670123752924 ], [ 132.624621493299344, 34.838994864436827 ], [ 132.614497717346154, 34.83624251214772 ], [ 132.568940725556814, 34.802755559296877 ], [ 132.558284119290306, 34.804590460822951 ], [ 132.539635058323881, 34.791975512831193 ], [ 132.518588260947524, 34.799315118935489 ], [ 132.509530145620971, 34.792892963594234 ], [ 132.467170135711569, 34.799315118935489 ], [ 132.457046359758408, 34.797480217409415 ], [ 132.444524847395229, 34.814453056525593 ], [ 132.423744465175531, 34.808718989256619 ], [ 132.427474277368816, 34.798397668172456 ], [ 132.417616916572285, 34.794498502429548 ], [ 132.40136559201585, 34.780278015602477 ], [ 132.389909740279336, 34.779360564839436 ], [ 132.385647097772733, 34.79151678744968 ], [ 132.364333885239716, 34.797021492027895 ], [ 132.343819918176678, 34.788535072469806 ], [ 132.311850099377125, 34.792204875521954 ], [ 132.301193493110588, 34.773626497570461 ], [ 132.282011601830874, 34.78188355443779 ], [ 132.28067952604755, 34.793581051666507 ], [ 132.253771595224606, 34.80390237275067 ], [ 132.240717252548137, 34.798168305481695 ], [ 132.242848573801439, 34.776837575241089 ], [ 132.215407812665148, 34.741745083554932 ], [ 132.205017621555299, 34.74541488660708 ], [ 132.189565542468841, 34.730965037089248 ], [ 132.179441766515652, 34.731882487852289 ], [ 132.151201759909384, 34.71468028604535 ], [ 132.136282511136272, 34.694267006567777 ], [ 132.15706289335597, 34.689909115443356 ], [ 132.164256102585881, 34.680046519740714 ], [ 132.150136099282747, 34.65940387757238 ], [ 132.128822886749703, 34.63715569656874 ], [ 132.132819114099647, 34.626605012793817 ], [ 132.119498356266519, 34.605503645243971 ], [ 132.12695798065306, 34.583255464240331 ], [ 132.118166280483194, 34.562383459381245 ], [ 132.086196461683642, 34.534171848417863 ], [ 132.056091548980731, 34.526832242313567 ], [ 132.048365509437531, 34.507795138980555 ], [ 132.040905885050961, 34.499996807494746 ], [ 132.056624379294078, 34.49265720139045 ], [ 132.065416079463944, 34.473390735366678 ], [ 132.057690039920715, 34.464674953117829 ], [ 132.043303621460922, 34.464904315808589 ], [ 132.024654560494525, 34.454812357415179 ], [ 132.01852701189128, 34.434399077937613 ], [ 131.999877950924883, 34.42476584492573 ], [ 131.992418326538314, 34.4114628088617 ], [ 131.999877950924883, 34.403893840066644 ], [ 132.014530784541336, 34.373847327577188 ], [ 132.01373153907133, 34.363296643802265 ], [ 132.002542102491503, 34.362608555729992 ], [ 131.977232662608515, 34.333250131312809 ], [ 131.974035680728576, 34.323387535610166 ], [ 131.957517941015482, 34.307102784566261 ], [ 131.932741331445811, 34.329580328260661 ], [ 131.922351140335962, 34.333479494003569 ], [ 131.902636418742929, 34.315818566815111 ], [ 131.87492924244998, 34.304350432277154 ], [ 131.857612257266879, 34.3029742561326 ], [ 131.836299044733863, 34.308020235329302 ], [ 131.821646211117411, 34.300221903843486 ], [ 131.814186586730841, 34.309167048783095 ], [ 131.801398659211031, 34.313983665289037 ], [ 131.797668847017746, 34.323846260991687 ], [ 131.777421295111367, 34.336461208983437 ], [ 131.780884692147964, 34.346323804686087 ], [ 131.771826576821439, 34.357333213842523 ], [ 131.769162425254819, 34.381645659062997 ], [ 131.78701224075121, 34.396554233962348 ], [ 131.796603186391081, 34.423160306090416 ], [ 131.796336771234422, 34.433252264483819 ], [ 131.76170280086825, 34.430729274885465 ], [ 131.74411940052849, 34.425912658379524 ], [ 131.723605433465451, 34.42545393299801 ], [ 131.701492975462429, 34.431646725648505 ], [ 131.696431087485848, 34.440821233278868 ], [ 131.696431087485848, 34.462840051591755 ], [ 131.702292220932435, 34.471785196531364 ], [ 131.683110329652692, 34.482335880306287 ], [ 131.680712593242731, 34.49265720139045 ], [ 131.6708552324462, 34.500914258257779 ], [ 131.684708820592675, 34.515593470466371 ], [ 131.704157127029077, 34.527520330385848 ], [ 131.705222787655714, 34.562154096690485 ], [ 131.726802415345418, 34.5688056147225 ], [ 131.719609206115507, 34.603210018336384 ], [ 131.702025805775747, 34.613531339420547 ], [ 131.697230332955826, 34.62339393512319 ], [ 131.699894484522446, 34.635550157733427 ], [ 131.684708820592675, 34.675459265925525 ], [ 131.703357881559072, 34.672248188254898 ], [ 131.722806187995474, 34.676376716688566 ], [ 131.730265812382015, 34.673624364399451 ], [ 131.761969216024909, 34.678211618214632 ], [ 131.813653756417523, 34.692661467732464 ], [ 131.849619802566991, 34.711469208374723 ], [ 131.871732260570013, 34.733029301306082 ], [ 131.864539051340131, 34.755277482309722 ], [ 131.873863581823315, 34.759635373434151 ], [ 131.886917924499812, 34.756883021145043 ], [ 131.897041700453002, 34.775232036405775 ], [ 131.919953403926002, 34.775232036405775 ], [ 131.947660580218951, 34.794498502429548 ], [ 131.962313413835403, 34.821104574557616 ], [ 131.975367756511901, 34.820875211866856 ], [ 131.987889268875051, 34.826838641826598 ], [ 131.995082478104933, 34.842205942107455 ], [ 132.007603990468084, 34.848628097448717 ], [ 132.018260596734621, 34.86858265154477 ], [ 132.028917203001129, 34.878674609938173 ], [ 132.054493058040777, 34.871335003833877 ], [ 132.06408400368062, 34.891748283311443 ], [ 132.058222870234033, 34.899546614797259 ], [ 132.072875703850514, 34.910556023953703 ], [ 132.073674949320491, 34.918354355439511 ], [ 132.085130801057005, 34.930739940740509 ], [ 132.108575334843323, 34.938079546844804 ], [ 132.106444013590021, 34.945877878330613 ], [ 132.120830432049814, 34.950235769455041 ], [ 132.144807796149479, 34.962850717446798 ], [ 132.15200100537939, 34.977071204273862 ], [ 132.158927799452613, 34.976383116201589 ], [ 132.188233466685546, 34.992667867245487 ], [ 132.234056873631545, 35.033723788891386 ], [ 132.255370086164589, 35.041980845758715 ], [ 132.266026692431097, 35.038311042706567 ], [ 132.311050853907119, 35.05803623411186 ], [ 132.32330595111361, 35.089000197364349 ], [ 132.342221427236694, 35.102303233428387 ], [ 132.365133130709694, 35.114459456038617 ], [ 132.363534639769711, 35.121110974070639 ], [ 132.389643325122677, 35.131661657845562 ], [ 132.387245588712716, 35.143588517765039 ], [ 132.400566346545872, 35.156662191138309 ], [ 132.403230498112492, 35.169277139130067 ], [ 132.421613143922229, 35.189002330535359 ], [ 132.443459186768592, 35.194736397804334 ], [ 132.465838059928274, 35.210103698085206 ], [ 132.467436550868257, 35.217213941498741 ], [ 132.48182296932805, 35.219736931097088 ], [ 132.491680330124581, 35.230746340253532 ], [ 132.525781470177435, 35.241297024028455 ], [ 132.530310527840697, 35.251847707803378 ], [ 132.57506827416006, 35.272031624590184 ], [ 132.613964887032836, 35.28051804414828 ], [ 132.63074904190259, 35.289233826397123 ], [ 132.654726406002254, 35.315839898525191 ], [ 132.665116597112103, 35.335106364548963 ], [ 132.675240373065293, 35.375703560813342 ], [ 132.672842636655332, 35.400474731415336 ], [ 132.632880363155891, 35.418594383985308 ], [ 132.62808489033597, 35.429374430450991 ], [ 132.662452445545483, 35.443594917278062 ], [ 132.696820000754997, 35.450017072619318 ], [ 132.710407173744812, 35.441530653061228 ], [ 132.757029826160817, 35.449328984547044 ], [ 132.755964165534152, 35.456439227960573 ], [ 132.735450198471113, 35.466301823663223 ], [ 132.753566429124191, 35.476164419365865 ], [ 132.789532475273688, 35.480751673181054 ], [ 132.812710593903347, 35.496807061534199 ], [ 132.831093239713084, 35.504376030329247 ], [ 132.869190607115883, 35.510568822979749 ], [ 132.905689483578698, 35.511256911052023 ], [ 132.920608732351837, 35.517908429084038 ], [ 132.940057038788211, 35.51492671410417 ], [ 132.953111381464709, 35.518367154465558 ], [ 132.972293272744423, 35.516532252939484 ], [ 132.974691009154384, 35.525477397879094 ], [ 132.968563460551138, 35.543597050449073 ], [ 132.981884218384295, 35.54634940273818 ], [ 133.00825931889392, 35.538551071252371 ], [ 133.029838946583624, 35.540615335469198 ], [ 133.026641964703657, 35.553000920770195 ], [ 133.040229137693473, 35.560111164183731 ], [ 133.047955177236702, 35.554147734223989 ], [ 133.069001974613059, 35.583735521331931 ], [ 133.090048771989416, 35.580983169042817 ], [ 133.098041226689304, 35.598185370849755 ], [ 133.111095569365801, 35.597726645468242 ], [ 133.11882160890903, 35.580065718279783 ], [ 133.130011045488857, 35.577313365990669 ], [ 133.15185708833522, 35.559193713420697 ], [ 133.19474992855794, 35.56951503450486 ], [ 133.211001253114375, 35.567680132978786 ], [ 133.215796725934297, 35.579148267516743 ], [ 133.244569562853911, 35.570432485267894 ], [ 133.251229941770475, 35.575478464464595 ], [ 133.283199760570028, 35.577772091372189 ], [ 133.30797637013967, 35.575937189846115 ], [ 133.321030712816139, 35.563322241854358 ], [ 133.305045803416391, 35.557817537276136 ], [ 133.265616360230268, 35.55575327305931 ], [ 133.245635223480548, 35.549101755027294 ], [ 133.205672949981107, 35.540385972778438 ], [ 133.192352192147979, 35.530752739766555 ], [ 133.178232188844845, 35.527082936714407 ], [ 133.164911431011689, 35.535339993581736 ], [ 133.15425482474518, 35.536257444344777 ], [ 133.127346893922237, 35.507128382618362 ], [ 133.136138594092102, 35.475935056675112 ], [ 133.11402613608908, 35.450475798000838 ], [ 133.124949157512276, 35.449099621856284 ], [ 133.135072933465466, 35.438778300772121 ], [ 133.14706161551527, 35.435567223101486 ], [ 133.164645015855029, 35.444971093422616 ], [ 133.178232188844845, 35.436255311173767 ], [ 133.203808043884464, 35.44657663225793 ], [ 133.220059368440928, 35.450017072619318 ], [ 133.238442014250666, 35.444741730731856 ], [ 133.248832205360515, 35.435337860410733 ], [ 133.294655612306514, 35.42432845125429 ], [ 133.298119009343139, 35.413319042097847 ], [ 133.310107691392972, 35.404373897158237 ], [ 133.317833730936201, 35.388777234186612 ] ] ], [ [ [ 133.004529506700635, 36.032827669838426 ], [ 133.035966495186869, 36.028240416023245 ], [ 133.044491780200076, 36.019065908392875 ], [ 133.063673671479791, 36.010120763453266 ], [ 133.057279707719886, 36.00346924542125 ], [ 133.024244228293696, 36.006680323091878 ], [ 133.012255546243864, 36.002093069276697 ], [ 133.003730261230658, 36.015625468031487 ], [ 133.004529506700635, 36.032827669838426 ] ] ], [ [ [ 133.112960475462444, 36.119985492326919 ], [ 133.132941612212164, 36.110581622005796 ], [ 133.122285005945628, 36.074112954175078 ], [ 133.099639717629287, 36.053470312006752 ], [ 133.069801220083036, 36.038561737107408 ], [ 133.070067635239695, 36.05851629120346 ], [ 133.078326505096243, 36.072278052649011 ], [ 133.064739332106456, 36.094067508271131 ], [ 133.064206501793137, 36.101407114375426 ], [ 133.09404499933936, 36.117233140037811 ], [ 133.112960475462444, 36.119985492326919 ] ] ], [ [ [ 133.078060089939584, 36.142692398712079 ], [ 133.090848017459422, 36.13443534184475 ], [ 133.086851790109478, 36.125031471523627 ], [ 133.069801220083036, 36.113333974294903 ], [ 133.042094043790115, 36.110810984696556 ], [ 133.042626874103433, 36.101177751684666 ], [ 133.056746877406567, 36.083287461805448 ], [ 133.052484234899964, 36.067690798833823 ], [ 133.021580076727048, 36.063791633090915 ], [ 133.006127997640618, 36.083287461805448 ], [ 133.006660827953937, 36.092461969435817 ], [ 132.976289500094367, 36.083975549877728 ], [ 132.999467618724054, 36.04452516706715 ], [ 132.995737806530769, 36.040167275942721 ], [ 132.972559687901082, 36.056452026986626 ], [ 132.950180814741401, 36.061498006183328 ], [ 132.946717417704804, 36.077094669154953 ], [ 132.95524270271801, 36.08970961714671 ], [ 132.981884218384295, 36.117691865419332 ], [ 132.990409503397501, 36.113563336985663 ], [ 133.012255546243864, 36.115856963893258 ], [ 133.013854037183847, 36.131682989555642 ], [ 133.02584271923368, 36.136728968752344 ], [ 133.047155931766696, 36.129618725338808 ], [ 133.078060089939584, 36.142692398712079 ] ] ], [ [ [ 133.282400515100022, 36.347972006941561 ], [ 133.289060894016615, 36.335586421640564 ], [ 133.311972597489614, 36.320677846741212 ], [ 133.325293355322771, 36.316549318307551 ], [ 133.324760525009424, 36.308750986821735 ], [ 133.355931098338999, 36.298659028428332 ], [ 133.363657137882228, 36.280080650476833 ], [ 133.372448838052094, 36.280539375858353 ], [ 133.384437520101926, 36.269071241320397 ], [ 133.372981668365412, 36.250263500678145 ], [ 133.377244310872015, 36.230079583891332 ], [ 133.370317516798792, 36.206225864052378 ], [ 133.338880528312558, 36.197051356422008 ], [ 133.340212604095882, 36.171821460438494 ], [ 133.326625431106066, 36.167463569314073 ], [ 133.278404287750078, 36.17984915461507 ], [ 133.268813342110235, 36.169069108149387 ], [ 133.253094847867118, 36.161041413972818 ], [ 133.232847295960738, 36.170215921603187 ], [ 133.24483597801057, 36.190399838389993 ], [ 133.223789180634185, 36.188794299554679 ], [ 133.210468422801057, 36.196133905658975 ], [ 133.207804271234409, 36.208978216341485 ], [ 133.184892567761409, 36.214941646301227 ], [ 133.191552946677973, 36.246134972244477 ], [ 133.177699358531527, 36.249346049915104 ], [ 133.17716652821818, 36.259208645617747 ], [ 133.186224643544733, 36.266089526340522 ], [ 133.187823134484717, 36.282603640075187 ], [ 133.207537856077749, 36.308750986821735 ], [ 133.231781635334073, 36.318154857142865 ], [ 133.230982389864096, 36.328017452845508 ], [ 133.245635223480548, 36.33398088280525 ], [ 133.264017869290285, 36.328476178227028 ], [ 133.282400515100022, 36.347972006941561 ] ] ], [ [ [ 130.908641469233658, 37.548915055756694 ], [ 130.908108638920339, 37.528501776279121 ], [ 130.917166754246892, 37.517721729813438 ], [ 130.913969772366926, 37.486987129251709 ], [ 130.906776563137015, 37.476207082786026 ], [ 130.88519693544734, 37.471619828970844 ], [ 130.868412780577586, 37.458775518288327 ], [ 130.841771264911273, 37.462445321340475 ], [ 130.826585600981502, 37.471619828970844 ], [ 130.812998427991687, 37.472996005115398 ], [ 130.80180899141186, 37.483546688890321 ], [ 130.804206727821821, 37.504418693749408 ], [ 130.791152385145324, 37.517033641741165 ], [ 130.817527485654949, 37.526437512062287 ], [ 130.828450507078145, 37.526896237443808 ], [ 130.84496824679124, 37.535612019692657 ], [ 130.86015391072101, 37.535153294311137 ], [ 130.874007498867485, 37.543410351178466 ], [ 130.894521465930524, 37.542951625796952 ], [ 130.908641469233658, 37.548915055756694 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1494, "NAME_1": "Shizuoka", "VARNAME_1": "Sizuoka", "HASC_1": "JP.SZ", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.460812994337488, 24.245878991723522 ], [ 141.473600921857297, 24.241979825980618 ], [ 141.467206958097393, 24.226153800318233 ], [ 141.454152615420895, 24.228218064535064 ], [ 141.460812994337488, 24.245878991723522 ] ] ], [ [ [ 141.323342773499434, 24.813092925971006 ], [ 141.341459004152512, 24.799789889906972 ], [ 141.34732013759907, 24.78121151195548 ], [ 141.343057495092467, 24.773871905851184 ], [ 141.324941264439417, 24.770202102799036 ], [ 141.292705030483205, 24.751623724847544 ], [ 141.292705030483205, 24.785569403079904 ], [ 141.323342773499434, 24.813092925971006 ] ] ], [ [ [ 141.284446160626658, 25.449803755518523 ], [ 141.293237860796523, 25.438335620980567 ], [ 141.29430352142316, 25.426179398370326 ], [ 141.282581254529987, 25.417692978812237 ], [ 141.270326157323495, 25.429161113350197 ], [ 141.272457478576825, 25.440170522506637 ], [ 141.284446160626658, 25.449803755518523 ] ] ], [ [ [ 142.127117301151372, 26.712904093529399 ], [ 142.134044095224596, 26.700289145537642 ], [ 142.154558062287634, 26.709463653168012 ], [ 142.164948253397483, 26.702582772445233 ], [ 142.147364853057752, 26.694325715577904 ], [ 142.151893910721014, 26.68354566911222 ], [ 142.16814523527745, 26.687903560236645 ], [ 142.162550516987523, 26.666802192686802 ], [ 142.166013914024148, 26.66129748810858 ], [ 142.192122599377115, 26.68354566911222 ], [ 142.194253920630416, 26.680793316823113 ], [ 142.166813159494154, 26.660150674654783 ], [ 142.174272783880696, 26.652581705859731 ], [ 142.173207123254059, 26.635838229434309 ], [ 142.160952026047568, 26.631021612928365 ], [ 142.153225986504339, 26.637214405578863 ], [ 142.14523353180445, 26.657857047747193 ], [ 142.144434286334445, 26.676664788389445 ], [ 142.130847113344657, 26.689050373690442 ], [ 142.12258824348811, 26.705564487425104 ], [ 142.127117301151372, 26.712904093529399 ] ] ], [ [ [ 139.759485803888253, 32.473348071946518 ], [ 139.769875994998102, 32.46967826889437 ], [ 139.781065431577957, 32.458439497047173 ], [ 139.772540146564722, 32.443072196766309 ], [ 139.759485803888253, 32.445365823673896 ], [ 139.754956746224991, 32.452476067087431 ], [ 139.759485803888253, 32.473348071946518 ] ] ], [ [ [ 139.683291069082657, 33.137582424385144 ], [ 139.696078996602495, 33.129554730208568 ], [ 139.699275978482433, 33.115334243381497 ], [ 139.684356729709322, 33.117627870289091 ], [ 139.675032199226109, 33.130242818280848 ], [ 139.683291069082657, 33.137582424385144 ] ] ], [ [ [ 139.759485803888253, 33.160289330770297 ], [ 139.774138637504706, 33.158683791934983 ], [ 139.796783925821046, 33.141940315509565 ], [ 139.801312983484337, 33.132307082497675 ], [ 139.815166571630783, 33.127261103300981 ], [ 139.82582317789732, 33.117857232979851 ], [ 139.846337144960359, 33.117857232979851 ], [ 139.858059411853532, 33.099737580409872 ], [ 139.859657902793487, 33.084140917438248 ], [ 139.855395260286883, 33.076801311333952 ], [ 139.839410350887107, 33.074966409807878 ], [ 139.833815632597208, 33.066021264868269 ], [ 139.837279029633805, 33.04858970037057 ], [ 139.82102770507737, 33.056617394547146 ], [ 139.795984680351069, 33.062122099125368 ], [ 139.781598261891276, 33.071067244064977 ], [ 139.776269958758007, 33.098590766956079 ], [ 139.755489576538309, 33.10340738346202 ], [ 139.738172591355209, 33.137123699003624 ], [ 139.742968064175159, 33.153637812738282 ], [ 139.759485803888253, 33.160289330770297 ] ] ], [ [ [ 139.605764258493764, 33.901130821922493 ], [ 139.619085016326892, 33.891956314292123 ], [ 139.632672189316708, 33.869478770597723 ], [ 139.620417092110216, 33.851588480718505 ], [ 139.58898010362401, 33.854799558389132 ], [ 139.578057082200814, 33.861221713730394 ], [ 139.574593685164189, 33.870854946742277 ], [ 139.578323497357474, 33.884157982806315 ], [ 139.590845009720653, 33.898149106942626 ], [ 139.605764258493764, 33.901130821922493 ] ] ], [ [ [ 139.524774050868245, 34.124300720031187 ], [ 139.547152924027927, 34.120401554288279 ], [ 139.562338587957697, 34.108245331678042 ], [ 139.566601230464329, 34.093566119469457 ], [ 139.560740097017742, 34.084162249148328 ], [ 139.563137833427703, 34.068336223485943 ], [ 139.553813302944491, 34.060308529309374 ], [ 139.535164241978094, 34.052968923205079 ], [ 139.531967260098156, 34.046776130554576 ], [ 139.51385102944505, 34.048381669389897 ], [ 139.501862347395246, 34.044482503646989 ], [ 139.48081555001886, 34.052510197823558 ], [ 139.480282719705542, 34.069483036939744 ], [ 139.472556680162313, 34.077052005734792 ], [ 139.494136307852017, 34.104116803244381 ], [ 139.492271401755374, 34.119484103525245 ], [ 139.524774050868245, 34.124300720031187 ] ] ], [ [ [ 139.143267546526971, 34.243569319225969 ], [ 139.170175477349943, 34.231183733924972 ], [ 139.176303025953189, 34.205953837941458 ], [ 139.166445665156658, 34.208706190230572 ], [ 139.147796604190262, 34.196779330311088 ], [ 139.144599622310295, 34.187604822680726 ], [ 139.129946788693843, 34.185311195773131 ], [ 139.119556597583994, 34.191045263042113 ], [ 139.132877355417122, 34.206412563322978 ], [ 139.127815467440541, 34.221321138222322 ], [ 139.143267546526971, 34.243569319225969 ] ] ], [ [ [ 139.2141339781993, 34.336002483601924 ], [ 139.227721151189115, 34.328662877497628 ], [ 139.21626529945263, 34.316047929505871 ], [ 139.200813220366172, 34.315818566815111 ], [ 139.194952086919585, 34.322699447537886 ], [ 139.2141339781993, 34.336002483601924 ] ] ], [ [ [ 139.286066070498293, 34.428435647977878 ], [ 139.291127958474874, 34.407563643118792 ], [ 139.278340030955064, 34.391737617456407 ], [ 139.275409464231785, 34.377975856010849 ], [ 139.275675879388444, 34.343571452396972 ], [ 139.269548330785199, 34.331873955168255 ], [ 139.253030591072104, 34.338984198581791 ], [ 139.243972475745551, 34.349993607738234 ], [ 139.241308324178931, 34.363067281111505 ], [ 139.251964930445439, 34.376370317175542 ], [ 139.255694742638724, 34.400912125086776 ], [ 139.267683424688556, 34.4153619746046 ], [ 139.279672106738388, 34.418343689584475 ], [ 139.286066070498293, 34.428435647977878 ] ] ], [ [ [ 139.279672106738388, 34.532795672273309 ], [ 139.293259279728204, 34.522703713879906 ], [ 139.282336258305008, 34.512153030104983 ], [ 139.26688417921855, 34.519951361590792 ], [ 139.279672106738388, 34.532795672273309 ] ] ], [ [ [ 139.363326465930527, 34.798627030863216 ], [ 139.385971754246867, 34.789452523232846 ], [ 139.412080439599833, 34.787158896325252 ], [ 139.434192897602856, 34.771332870662867 ], [ 139.441918937146085, 34.749314052349987 ], [ 139.449378561532654, 34.739680819338098 ], [ 139.444050258399386, 34.726377783274067 ], [ 139.449378561532654, 34.718579451788258 ], [ 139.444316673556045, 34.702065338053593 ], [ 139.449911391845973, 34.695872545403091 ], [ 139.44538233418271, 34.684633773555895 ], [ 139.433926482446196, 34.677523530142359 ], [ 139.425134782276331, 34.68211078395754 ], [ 139.408350627406548, 34.680046519740714 ], [ 139.396095530200057, 34.683486960102101 ], [ 139.380909866270287, 34.696331270784611 ], [ 139.358530993110605, 34.703441514198147 ], [ 139.3521370293507, 34.729130135563182 ], [ 139.356666087013963, 34.742662534317972 ], [ 139.350804953567376, 34.751837041948335 ], [ 139.349472877784052, 34.783030367891584 ], [ 139.363326465930527, 34.798627030863216 ] ] ], [ [ [ 138.919478814930159, 35.398639829889262 ], [ 138.941324857776522, 35.395887477600148 ], [ 138.974893167516029, 35.40185090755989 ], [ 138.996739210362392, 35.400245368724576 ], [ 139.004198834748962, 35.390153410331166 ], [ 139.008994307568884, 35.372263120451954 ], [ 139.013523365232146, 35.339005530291871 ], [ 139.021515819932034, 35.326619944990874 ], [ 139.007662231785559, 35.286481474108015 ], [ 138.996206380049074, 35.281664857602074 ], [ 138.978622979709314, 35.260563490052228 ], [ 138.978889394865973, 35.232122516398086 ], [ 138.991144492072465, 35.208498159249892 ], [ 138.990878076915806, 35.197488750093449 ], [ 139.012724119762169, 35.17982782290499 ], [ 139.026577707908643, 35.174781843708288 ], [ 139.032971671668548, 35.146570232744907 ], [ 139.043894693091715, 35.147258320817187 ], [ 139.085988287844458, 35.138083813186817 ], [ 139.109965651944123, 35.137854450496057 ], [ 139.109432821630804, 35.131202932464042 ], [ 139.076663757361246, 35.097715979613199 ], [ 139.08279130596452, 35.086018482384482 ], [ 139.074798851264632, 35.0802844151155 ], [ 139.078795078614576, 35.067898829814503 ], [ 139.068937717818045, 35.054595793750472 ], [ 139.073999605794626, 35.047256187646177 ], [ 139.100907536617569, 35.045191923429343 ], [ 139.09557923348433, 35.006888354072558 ], [ 139.083057721121179, 35.000007473349783 ], [ 139.093181497074369, 34.991062328410173 ], [ 139.096644894110966, 34.974548214675515 ], [ 139.124618485560575, 34.97133713700488 ], [ 139.133143770573781, 34.952300033671875 ], [ 139.144333207153636, 34.956887287487056 ], [ 139.14832943450358, 34.93601528262797 ], [ 139.14086981011701, 34.920877345037866 ], [ 139.140070564647033, 34.909179847809142 ], [ 139.132078109947145, 34.898399801343459 ], [ 139.140336979803692, 34.893812547528277 ], [ 139.131545279633826, 34.878903972628933 ], [ 139.117958106644011, 34.871564366524638 ], [ 139.103571688184218, 34.869958827689324 ], [ 139.098776215364296, 34.858261330460607 ], [ 139.087586778784441, 34.858031967769847 ], [ 139.077463002831252, 34.842205942107455 ], [ 139.078528663457888, 34.819957761103815 ], [ 139.062277338901453, 34.799085756244729 ], [ 139.059080357021514, 34.785323994799178 ], [ 139.031106765571906, 34.767663067610719 ], [ 139.019917328992051, 34.753671943474409 ], [ 139.005264495375599, 34.752525130020615 ], [ 139.000735437712336, 34.737616555121264 ], [ 138.979955055492638, 34.709175581467129 ], [ 138.972495431106069, 34.689909115443356 ], [ 138.980487885805957, 34.68188142126678 ], [ 138.978622979709314, 34.672477550945658 ], [ 138.985283358625878, 34.662385592552255 ], [ 138.977557319082678, 34.653211084921885 ], [ 138.955178445922968, 34.655045986447959 ], [ 138.962904485466197, 34.673395001708691 ], [ 138.949850142789728, 34.672936276327178 ], [ 138.939726366836538, 34.661238779098454 ], [ 138.9269384393167, 34.658945152190867 ], [ 138.909621454133628, 34.632109717372039 ], [ 138.890972393167232, 34.634862069661153 ], [ 138.885910505190623, 34.62316457243243 ], [ 138.849411628727808, 34.610090899059159 ], [ 138.842484834654584, 34.600228303356509 ], [ 138.825700679784802, 34.606650458697771 ], [ 138.809449355228367, 34.625228836649264 ], [ 138.793198030671931, 34.62408202319547 ], [ 138.793730860985278, 34.633256530825832 ], [ 138.771085572668937, 34.649311919178977 ], [ 138.780143687995462, 34.65963324026314 ], [ 138.775881045488859, 34.676835442070079 ], [ 138.756166323895798, 34.69128529158791 ], [ 138.744177641845965, 34.687386125845002 ], [ 138.739115753869385, 34.705047053033461 ], [ 138.741779905436005, 34.724084156366473 ], [ 138.754567832955814, 34.74610297467936 ], [ 138.776413875802177, 34.756883021145043 ], [ 138.775348215175541, 34.767204342229206 ], [ 138.755899908739138, 34.797709580100175 ], [ 138.752969342015859, 34.824774377609756 ], [ 138.763093117969049, 34.832802071786332 ], [ 138.759629720932423, 34.842205942107455 ], [ 138.776147460645518, 34.854591527408459 ], [ 138.759363305775764, 34.860554957368194 ], [ 138.754035002642496, 34.86812392616325 ], [ 138.755899908739138, 34.883491226444114 ], [ 138.766556515005647, 34.896564899817392 ], [ 138.778811612212138, 34.898399801343459 ], [ 138.789468218478675, 34.911244112025976 ], [ 138.778012366742161, 34.92638204961608 ], [ 138.775081800018881, 34.943584251423019 ], [ 138.767622175632312, 34.948859593310488 ], [ 138.763892363439027, 34.973630763912475 ], [ 138.779610857682144, 35.002301100257377 ], [ 138.783340669875429, 35.025696094714817 ], [ 138.82863124650811, 35.023631830497976 ], [ 138.845681816534523, 35.014227960176854 ], [ 138.872856162514154, 35.024778643951777 ], [ 138.89150522348055, 35.017439037847481 ], [ 138.892570884107215, 35.032576975437593 ], [ 138.90162899943374, 35.050237902626044 ], [ 138.890173147697226, 35.050696628007564 ], [ 138.862732386560964, 35.072027358248171 ], [ 138.84115275887126, 35.098633430376239 ], [ 138.820638791808221, 35.110789652986476 ], [ 138.792931615515272, 35.121569699452152 ], [ 138.739382169026044, 35.133725922062396 ], [ 138.709543671479793, 35.136248911660743 ], [ 138.681570080030184, 35.132120383227075 ], [ 138.670114228293698, 35.12592759057658 ], [ 138.632283276047559, 35.115835632183177 ], [ 138.602711193657967, 35.115376906801657 ], [ 138.579799490184968, 35.111707103749509 ], [ 138.559285523121929, 35.101615145356106 ], [ 138.551293068422041, 35.092211275034977 ], [ 138.545964765288772, 35.074550347846525 ], [ 138.532111177142298, 35.055054519131986 ], [ 138.519323249622488, 35.047944275718457 ], [ 138.516392682899209, 35.039228493469608 ], [ 138.500407773499433, 35.029824623148478 ], [ 138.496411546149488, 35.018815213992035 ], [ 138.501473434126069, 35.011704970578506 ], [ 138.514527776802566, 35.0128517840323 ], [ 138.52118815571913, 35.020650115518109 ], [ 138.533176837768963, 35.0128517840323 ], [ 138.52145457087579, 34.989227426884099 ], [ 138.496411546149488, 34.97133713700488 ], [ 138.465240972819913, 34.95734601286857 ], [ 138.438865872310288, 34.950465132145794 ], [ 138.407428883824082, 34.938996997607838 ], [ 138.400768504907489, 34.930281215358988 ], [ 138.37252849830125, 34.923629697326973 ], [ 138.354412267648172, 34.911473474716736 ], [ 138.348284719044926, 34.896106174435872 ], [ 138.339759434031691, 34.888307842950056 ], [ 138.32484018525858, 34.861243045440474 ], [ 138.338960188561714, 34.833948885240126 ], [ 138.334164715741792, 34.822022025320649 ], [ 138.3045926333522, 34.786470808252972 ], [ 138.301129236315575, 34.772479684116661 ], [ 138.271557153926011, 34.753671943474409 ], [ 138.26169979312948, 34.751378316566822 ], [ 138.232660541053207, 34.732570575924569 ], [ 138.21401148008681, 34.710551757611682 ], [ 138.213745064930151, 34.698166172310685 ], [ 138.194829588807096, 34.664908582150602 ], [ 138.195096003963755, 34.635091432351906 ], [ 138.207084686013587, 34.620412220143322 ], [ 138.233459786523213, 34.600687028738029 ], [ 138.226266577293302, 34.595182324159808 ], [ 138.192698267553794, 34.600687028738029 ], [ 138.179111094563979, 34.607567909460805 ], [ 138.144477124197806, 34.617659867854208 ], [ 138.120766175254801, 34.628439914319891 ], [ 138.074143522838796, 34.644265939982276 ], [ 138.015798603529618, 34.658945152190867 ], [ 137.950526890147216, 34.667431571748956 ], [ 137.91429442884106, 34.667660934439709 ], [ 137.857015170158547, 34.65940387757238 ], [ 137.800002326632693, 34.647247654962143 ], [ 137.781619680822956, 34.648394468415944 ], [ 137.7453872195168, 34.658486426809347 ], [ 137.659335123914673, 34.672936276327178 ], [ 137.603920771328802, 34.675917991307045 ], [ 137.614044547281992, 34.70068916190904 ], [ 137.613778132125333, 34.708258130704088 ], [ 137.629763041525109, 34.729359498253935 ], [ 137.642018138731601, 34.736011016285957 ], [ 137.629763041525109, 34.750002140422268 ], [ 137.621770586825221, 34.732111850543049 ], [ 137.606851338052081, 34.738534005884304 ], [ 137.604986431955439, 34.712845384519277 ], [ 137.582873973952417, 34.711239845683963 ], [ 137.591399258965652, 34.739680819338098 ], [ 137.627098889958461, 34.780048652911717 ], [ 137.645215120611539, 34.793122326284994 ], [ 137.624168323235182, 34.800920657770803 ], [ 137.603654356172143, 34.787388259016012 ], [ 137.584206049735741, 34.785094632108418 ], [ 137.558363779539434, 34.771791596044388 ], [ 137.571151707059272, 34.795415953192588 ], [ 137.54903924905625, 34.799773844317009 ], [ 137.543710945922982, 34.782571642510071 ], [ 137.547440758116267, 34.769268606446033 ], [ 137.523463394016602, 34.763305176486298 ], [ 137.537050567006418, 34.746791062751633 ], [ 137.543178115609663, 34.719955627932812 ], [ 137.553301891562853, 34.722707980221919 ], [ 137.566089819082663, 34.70114788729056 ], [ 137.5844724648924, 34.680046519740714 ], [ 137.523729809173261, 34.678211618214632 ], [ 137.488296593337111, 34.674771177853245 ], [ 137.493624896470351, 34.69151465427867 ], [ 137.49122716006039, 34.711927933756236 ], [ 137.485099611457144, 34.720873078695845 ], [ 137.478172817383921, 34.750002140422268 ], [ 137.480037723480564, 34.771791596044388 ], [ 137.496289048036999, 34.783259730582344 ], [ 137.492559235843714, 34.803673010059917 ], [ 137.501883766326898, 34.823627564155963 ], [ 137.509609805870127, 34.831425895641779 ], [ 137.568221140335964, 34.848857460139477 ], [ 137.589800768025668, 34.846563833231883 ], [ 137.59939171366554, 34.865371573874135 ], [ 137.624434738391841, 34.876380983030579 ], [ 137.641751723574941, 34.887619754877775 ], [ 137.643350214514896, 34.897941075961946 ], [ 137.659601539071332, 34.936932733391004 ], [ 137.678517015194416, 34.942208075278465 ], [ 137.706490606643996, 34.968126059334253 ], [ 137.708355512740638, 34.988080613430306 ], [ 137.704092870234035, 35.000007473349783 ], [ 137.708089097583979, 35.01239305865078 ], [ 137.741124577010197, 35.050696628007564 ], [ 137.7682989229898, 35.069504368649817 ], [ 137.782152511136275, 35.095881078087125 ], [ 137.80586346007928, 35.105743673789775 ], [ 137.801867232729336, 35.12546886519506 ], [ 137.818917802755749, 35.135790186279223 ], [ 137.817052896659106, 35.146340870054146 ], [ 137.830906484805581, 35.149322585034014 ], [ 137.827709502925615, 35.159185180736664 ], [ 137.804797799452615, 35.1701945898931 ], [ 137.80586346007928, 35.181203999049544 ], [ 137.822914030105693, 35.193360221659781 ], [ 137.820782708852391, 35.211250511538999 ], [ 137.840231015288794, 35.212626687683553 ], [ 137.863142718761793, 35.219507568406328 ], [ 137.874864985654966, 35.21560840266342 ], [ 137.887919328331435, 35.232810604470366 ], [ 137.886054422234793, 35.243590650936042 ], [ 137.898309519441284, 35.254600060092486 ], [ 137.914028013684401, 35.250471531658818 ], [ 137.92441820479425, 35.254829422783246 ], [ 137.934808395904099, 35.272719712662465 ], [ 137.945198587013948, 35.272719712662465 ], [ 137.984628030200071, 35.289233826397123 ], [ 138.000080109286529, 35.299325784790526 ], [ 138.021926152132863, 35.297949608645979 ], [ 138.029652191676092, 35.306436028204061 ], [ 138.028852946206115, 35.316757349288231 ], [ 138.04510427076255, 35.331665924187575 ], [ 138.05522804671574, 35.333271463022889 ], [ 138.071479371272176, 35.343822146797812 ], [ 138.090394847395231, 35.334647639167443 ], [ 138.098920132408438, 35.339922981054904 ], [ 138.099719377878444, 35.350932390211348 ], [ 138.125028817761404, 35.364006063584625 ], [ 138.145009954511124, 35.367675866636773 ], [ 138.154068069837678, 35.386712969969778 ], [ 138.151936748584376, 35.397722379126222 ], [ 138.141546557474499, 35.403227083704444 ], [ 138.141812972631186, 35.416759482459234 ], [ 138.125028817761404, 35.425245902017323 ], [ 138.125028817761404, 35.453228150289945 ], [ 138.135152593714594, 35.450475798000838 ], [ 138.15593297593432, 35.455751139888299 ], [ 138.162859770007543, 35.464008196755628 ], [ 138.163126185164202, 35.485338926996235 ], [ 138.142878633257823, 35.499559413823306 ], [ 138.149272597017728, 35.510110097598229 ], [ 138.141280142317839, 35.518137791774798 ], [ 138.162326939694225, 35.541532786232239 ], [ 138.156465806247638, 35.550248568481088 ], [ 138.145276369667783, 35.552312832697922 ], [ 138.154867315307655, 35.567680132978786 ], [ 138.17404920658737, 35.579148267516743 ], [ 138.191899022083788, 35.573414200247768 ], [ 138.206818270856928, 35.602313899283423 ], [ 138.206019025386922, 35.62295654145175 ], [ 138.22173751963004, 35.641305556712489 ], [ 138.233459786523213, 35.632131049082119 ], [ 138.232127710739888, 35.622039090688716 ], [ 138.245448468573045, 35.593139391653054 ], [ 138.242517901849737, 35.583276795950411 ], [ 138.250510356549626, 35.557129449203863 ], [ 138.260634132502815, 35.550707293862601 ], [ 138.260900547659475, 35.530752739766555 ], [ 138.269425832672709, 35.509422009525949 ], [ 138.263298284069464, 35.500018139204826 ], [ 138.258236396092855, 35.467219274426256 ], [ 138.249977526236307, 35.460567756394241 ], [ 138.250243941392966, 35.44611790687641 ], [ 138.262232623442799, 35.427768891615678 ], [ 138.258236396092855, 35.40253899563217 ], [ 138.249711111079648, 35.396804928363188 ], [ 138.238521674499793, 35.377538462339416 ], [ 138.23905450481314, 35.366987778564493 ], [ 138.249977526236307, 35.364006063584625 ], [ 138.257703565779536, 35.344739597560846 ], [ 138.255039414212888, 35.323638230011007 ], [ 138.259834887032838, 35.314922447762157 ], [ 138.28940696942243, 35.3023074997704 ], [ 138.29739942412229, 35.309188380493175 ], [ 138.328303582295206, 35.32409695539252 ], [ 138.346419812948284, 35.314922447762157 ], [ 138.366667364854663, 35.308729655111655 ], [ 138.373860574084546, 35.300243235553566 ], [ 138.370663592204608, 35.282811671055867 ], [ 138.375459065024529, 35.261710303506021 ], [ 138.391976804737624, 35.23418678061492 ], [ 138.393841710834266, 35.217443304189501 ], [ 138.401834165534154, 35.197030024711928 ], [ 138.413556432427328, 35.198864926238002 ], [ 138.423680208380517, 35.192672133587507 ], [ 138.437000966213645, 35.176387382543602 ], [ 138.499342112872768, 35.171341403346901 ], [ 138.525717213382393, 35.195653848567375 ], [ 138.536107404492242, 35.197259387402688 ], [ 138.535308159022264, 35.220654381860129 ], [ 138.524385137599097, 35.250012806277304 ], [ 138.518257588995851, 35.258499225835394 ], [ 138.523585892129091, 35.277995054549926 ], [ 138.515593437429203, 35.308041567039382 ], [ 138.537972310588884, 35.333271463022889 ], [ 138.533443252925622, 35.343822146797812 ], [ 138.53131193167232, 35.375932923504102 ], [ 138.538238725745543, 35.383731254989911 ], [ 138.535041743865605, 35.404832622539757 ], [ 138.566212317195152, 35.431209331977065 ], [ 138.585127793318236, 35.442448103824262 ], [ 138.600846287561325, 35.428456979687951 ], [ 138.61443346055114, 35.390153410331166 ], [ 138.64214063684409, 35.394970026837115 ], [ 138.666650831257073, 35.394970026837115 ], [ 138.67490970111362, 35.386942332660539 ], [ 138.681570080030184, 35.362629887440065 ], [ 138.689296119573413, 35.354831555954256 ], [ 138.709810086636452, 35.360106897841717 ], [ 138.733254620422798, 35.361253711295511 ], [ 138.772417648452233, 35.37019885623512 ], [ 138.83129539807473, 35.374327384668788 ], [ 138.850477289354473, 35.385566156515985 ], [ 138.865662953284243, 35.386942332660539 ], [ 138.873655407984131, 35.380520177319283 ], [ 138.885910505190623, 35.382584441536117 ], [ 138.919478814930159, 35.398639829889262 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1495, "NAME_1": "Tochigi", "VARNAME_1": "Totigi", "HASC_1": "JP.TC", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.260612713571163, 36.933764319140536 ], [ 140.251821013401269, 36.918167656168912 ], [ 140.256882901377878, 36.884221977936548 ], [ 140.256083655907872, 36.852569926611778 ], [ 140.264875356077766, 36.834220911351046 ], [ 140.270203659211006, 36.812202093038167 ], [ 140.268338753114364, 36.791788813560593 ], [ 140.258214977161174, 36.769999357938474 ], [ 140.262477619667777, 36.750044803842421 ], [ 140.288053474707425, 36.728255348220301 ], [ 140.285655738297464, 36.705548441835141 ], [ 140.264608940921107, 36.698438198421606 ], [ 140.237701010098135, 36.696832659586292 ], [ 140.223314591638342, 36.681235996614667 ], [ 140.224913082578325, 36.671144038221257 ], [ 140.234770443374856, 36.666556784406076 ], [ 140.243828558701381, 36.641097525731809 ], [ 140.239299501038118, 36.631234930029159 ], [ 140.252087428557928, 36.601188417539703 ], [ 140.248091201207984, 36.574352982720882 ], [ 140.253153089184593, 36.527333631115248 ], [ 140.244627804171387, 36.500039470914899 ], [ 140.23397119790485, 36.493387952882884 ], [ 140.230774216024912, 36.483754719871001 ], [ 140.216387797565119, 36.46930487035317 ], [ 140.206530436768588, 36.451414580473951 ], [ 140.205464776141923, 36.416551451478554 ], [ 140.18841420611551, 36.394991358547195 ], [ 140.161772690449226, 36.394991358547195 ], [ 140.147386271989433, 36.410817384209579 ], [ 140.125007398829723, 36.409899933446539 ], [ 140.115150038033221, 36.405312679631358 ], [ 140.114350792563215, 36.394991358547195 ], [ 140.069859461400512, 36.400725425816177 ], [ 140.067195309833892, 36.37916533288481 ], [ 140.053874552000735, 36.373889990997348 ], [ 140.019773411947881, 36.373201902925068 ], [ 140.002456426764809, 36.365632934130019 ], [ 139.974749250471859, 36.370908276017474 ], [ 139.968088871555295, 36.352329898065982 ], [ 139.959563586542089, 36.34682519348776 ], [ 139.927060937429218, 36.338568136620431 ], [ 139.917469991789346, 36.333063432042209 ], [ 139.911342443186101, 36.297053489593019 ], [ 139.892693382219704, 36.307604173367942 ], [ 139.879905454699866, 36.310585888347809 ], [ 139.8537967693469, 36.308521624130975 ], [ 139.839943181200454, 36.292466235777837 ], [ 139.841275256983749, 36.26998869208343 ], [ 139.82582317789732, 36.238795366140181 ], [ 139.763482031238198, 36.216088459755021 ], [ 139.742168818705153, 36.203244149072503 ], [ 139.717125793978852, 36.206455226743138 ], [ 139.705403527085679, 36.200721159474156 ], [ 139.662510686862959, 36.217693998590335 ], [ 139.661178611079634, 36.228244682365258 ], [ 139.644128041053222, 36.239942179593982 ], [ 139.636934831823311, 36.250034137987384 ], [ 139.641197474329942, 36.261731635216101 ], [ 139.622281998206859, 36.271594230918751 ], [ 139.607895579747066, 36.265172075577489 ], [ 139.565535569837664, 36.264025262123695 ], [ 139.557276699981117, 36.271594230918751 ], [ 139.529569523688167, 36.281456826621394 ], [ 139.478684228765559, 36.26975932939267 ], [ 139.463764979992447, 36.284209178910501 ], [ 139.452841958569252, 36.285355992364302 ], [ 139.431795161192895, 36.299576479191373 ], [ 139.421937800396364, 36.309668437584776 ], [ 139.426999688372973, 36.321365934813493 ], [ 139.424069121649666, 36.333292794732969 ], [ 139.39769402114004, 36.344072841198653 ], [ 139.370519675160438, 36.365632934130019 ], [ 139.368654769063795, 36.386963664370619 ], [ 139.388369490656828, 36.416551451478554 ], [ 139.4152774214798, 36.451414580473951 ], [ 139.434992143072861, 36.459671637341287 ], [ 139.44058686136276, 36.468387419590137 ], [ 139.429131009626275, 36.481231730272647 ], [ 139.423536291336347, 36.499580745533386 ], [ 139.433393652132878, 36.510131429308309 ], [ 139.443251012929409, 36.528709807259801 ], [ 139.444050258399386, 36.548893724046607 ], [ 139.460567998112481, 36.550040537500408 ], [ 139.48561102283881, 36.575270433483922 ], [ 139.475487246885621, 36.596371801033762 ], [ 139.468027622499051, 36.603023319065784 ], [ 139.446181579652688, 36.602793956375024 ], [ 139.436857049169475, 36.598665427941356 ], [ 139.415011006323141, 36.604858220591851 ], [ 139.405952890996588, 36.600270966776669 ], [ 139.386238169403555, 36.608986749025519 ], [ 139.354268350604002, 36.613344640149947 ], [ 139.348940047470734, 36.622519147780309 ], [ 139.331356647130974, 36.630546841956885 ], [ 139.330823816817656, 36.651189484125211 ], [ 139.342013253397511, 36.676648742799479 ], [ 139.340414762457527, 36.686740701192889 ], [ 139.356399671857304, 36.701649276092233 ], [ 139.370519675160438, 36.72275064364208 ], [ 139.367322693280471, 36.744540099264199 ], [ 139.357998162797287, 36.749815441151661 ], [ 139.356133256700645, 36.770458083319994 ], [ 139.380110620800281, 36.788348373199206 ], [ 139.380643451113627, 36.798669694283369 ], [ 139.390234396753499, 36.802110134644764 ], [ 139.408084212249889, 36.828028118700544 ], [ 139.3750487328237, 36.836973263640161 ], [ 139.355866841543957, 36.845918408579763 ], [ 139.364392126557192, 36.871607029944798 ], [ 139.383041187523588, 36.894772661711471 ], [ 139.385438923933549, 36.908763785847782 ], [ 139.413146100226498, 36.923901723437893 ], [ 139.433393652132878, 36.926424713036241 ], [ 139.445115919026051, 36.944315002915459 ], [ 139.4555061101359, 36.947296717895327 ], [ 139.469093283125687, 36.967939360063653 ], [ 139.490406495658732, 36.969774261589727 ], [ 139.499997441298603, 36.965187007774546 ], [ 139.527171787278206, 36.978490043838576 ], [ 139.546087263401262, 36.984453473798318 ], [ 139.574860100320876, 36.998215235243869 ], [ 139.584451045960719, 37.008077830946512 ], [ 139.616420864760272, 37.01174763399866 ], [ 139.628143131653445, 37.029408561187118 ], [ 139.668105405152886, 37.037436255363687 ], [ 139.681426162986014, 37.054409094479873 ], [ 139.703272205832377, 37.056473358696707 ], [ 139.721654851642114, 37.066335954399349 ], [ 139.757088067478293, 37.070464482833017 ], [ 139.785328074084561, 37.086749233876915 ], [ 139.806374871460918, 37.083308793515528 ], [ 139.823425441487359, 37.089730948856783 ], [ 139.819695629294074, 37.110832316406629 ], [ 139.832749971970543, 37.126428979378261 ], [ 139.869515263590017, 37.14408990656672 ], [ 139.882036775953168, 37.143860543875959 ], [ 139.901751497546229, 37.150512061907975 ], [ 139.911875273499419, 37.145466082711273 ], [ 139.953702453095502, 37.151200149980248 ], [ 139.96462547451867, 37.150282699217215 ], [ 139.98940208408834, 37.140878828896085 ], [ 140.024302469611172, 37.139273290060771 ], [ 140.04508285183087, 37.13422731086407 ], [ 140.062932667327289, 37.122300450944593 ], [ 140.073322858437137, 37.123447264398386 ], [ 140.105825507550009, 37.117942559820165 ], [ 140.135131174782941, 37.100281632631706 ], [ 140.145787781049449, 37.098676093796399 ], [ 140.1583092934126, 37.081473891989454 ], [ 140.176958354378996, 37.067941493234663 ], [ 140.197472321442035, 37.058996348295054 ], [ 140.202001379105326, 37.027803022351804 ], [ 140.219851194601716, 37.017252338576881 ], [ 140.252087428557928, 37.022757043155103 ], [ 140.24409497385804, 36.995004157573241 ], [ 140.249956107304627, 36.986517738015152 ], [ 140.249956107304627, 36.955324412071903 ], [ 140.24409497385804, 36.947067355204567 ], [ 140.260612713571163, 36.933764319140536 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1496, "NAME_1": "Tokushima", "VARNAME_1": "Tokusima", "HASC_1": "JP.TS", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.305434716685539, 33.548141640844094 ], [ 134.29024905275574, 33.55616933502067 ], [ 134.278526785862596, 33.556857423092943 ], [ 134.258279233956216, 33.549976542370167 ], [ 134.231904133446591, 33.555022521566869 ], [ 134.213521487636825, 33.562591490361925 ], [ 134.198602238863714, 33.557316148474463 ], [ 134.187945632597206, 33.583004769839491 ], [ 134.158906380520932, 33.608005303132245 ], [ 134.153844492544351, 33.628189219919051 ], [ 134.173026383824066, 33.638281178312454 ], [ 134.178088271800675, 33.650896126304211 ], [ 134.172493553510748, 33.666263426585076 ], [ 134.178088271800675, 33.674979208833932 ], [ 134.166366004907502, 33.684841804536575 ], [ 134.145052792374486, 33.684383079155054 ], [ 134.126403731408061, 33.692640136022384 ], [ 134.066460321158928, 33.687364794134922 ], [ 134.070722963665531, 33.726815176945507 ], [ 134.059533527085676, 33.749980808712181 ], [ 134.061398433182319, 33.771770264334307 ], [ 134.036088993299359, 33.806174667948184 ], [ 134.0358225781427, 33.825211771281204 ], [ 134.01557502623632, 33.818789615939941 ], [ 134.000122947149862, 33.817872165176908 ], [ 133.987335019630052, 33.837597356582194 ], [ 133.958029352397119, 33.827505398188791 ], [ 133.952967464420539, 33.805486579875911 ], [ 133.946040670347287, 33.797688248390095 ], [ 133.903947075594544, 33.79057800497656 ], [ 133.898085942147986, 33.799752512606929 ], [ 133.874907823518299, 33.802734227586797 ], [ 133.856258762551903, 33.830028387787145 ], [ 133.842138759248769, 33.840808434252821 ], [ 133.831215737825602, 33.841725885015862 ], [ 133.820825546715724, 33.834156916220806 ], [ 133.790987049169502, 33.833239465457773 ], [ 133.781928933842948, 33.838744170035994 ], [ 133.750225530200083, 33.833698190839286 ], [ 133.733441375330301, 33.847689314975597 ], [ 133.70093872621743, 33.848377403047877 ], [ 133.682023250094375, 33.855717009152173 ], [ 133.66550551038128, 33.86810259445317 ], [ 133.663107773971319, 33.878423915537333 ], [ 133.68069117431105, 33.89080950083833 ], [ 133.678826268214408, 33.901130821922493 ], [ 133.691880610890905, 33.916727484894118 ], [ 133.687617968384302, 33.931406697102702 ], [ 133.695077592770843, 33.941269292805352 ], [ 133.691880610890905, 33.960765121519884 ], [ 133.67802702274443, 33.98140776368821 ], [ 133.680158343997732, 33.991270359390853 ], [ 133.692946271517542, 34.010078100033112 ], [ 133.715325144677223, 34.013977265776013 ], [ 133.724116844847117, 34.019252607663475 ], [ 133.731310054076999, 34.040812700594842 ], [ 133.76141496677991, 34.05824426509254 ], [ 133.782195348999608, 34.076593280353272 ], [ 133.801377240279351, 34.066271959269109 ], [ 133.821891207342389, 34.072923477301131 ], [ 133.825887434692333, 34.08966695372655 ], [ 133.845868571442054, 34.092419306015657 ], [ 133.864784047565109, 34.102052539027547 ], [ 133.874907823518299, 34.097465285212365 ], [ 133.895421790581338, 34.104575528625894 ], [ 133.902881414967908, 34.097924010593879 ], [ 133.924727457814271, 34.110997683967156 ], [ 133.934851233767461, 34.11260322280247 ], [ 133.954033125047175, 34.086914601437442 ], [ 133.978276904303499, 34.071547301156571 ], [ 134.002254268403163, 34.071547301156571 ], [ 134.002787098716482, 34.072235389228851 ], [ 134.008381817006409, 34.0809511714777 ], [ 134.029695029539454, 34.083244798385294 ], [ 134.052606733012453, 34.114208761637784 ], [ 134.061931263495666, 34.109850870513355 ], [ 134.088839194318609, 34.115584937782337 ], [ 134.098163724801793, 34.111227046657916 ], [ 134.125071655624765, 34.115584937782337 ], [ 134.141322980181201, 34.130034787300168 ], [ 134.138392413457893, 34.14792507717938 ], [ 134.152778831917686, 34.162833652078731 ], [ 134.175956950547373, 34.172466885090614 ], [ 134.193007520573786, 34.169714532801507 ], [ 134.231637718289903, 34.177283501596563 ], [ 134.262541876462819, 34.18003585388567 ], [ 134.283855088995836, 34.174072423925935 ], [ 134.294245280105685, 34.175907325452002 ], [ 134.299573583238953, 34.166732817821639 ], [ 134.323284532181958, 34.172008159709101 ], [ 134.34539699018498, 34.169255807419987 ], [ 134.359516993488114, 34.181870755411744 ], [ 134.396548700264248, 34.160310662480377 ], [ 134.406406061060778, 34.163980465532525 ], [ 134.414664930917326, 34.15732894750051 ], [ 134.436244558607029, 34.166732817821639 ], [ 134.432514746413744, 34.176595413524282 ], [ 134.44130644658361, 34.187834185371486 ], [ 134.444237013306889, 34.207100651395251 ], [ 134.474341926009799, 34.209853003684366 ], [ 134.496187968856162, 34.224302853202197 ], [ 134.539613639392229, 34.226596480109791 ], [ 134.559594776141921, 34.221779863603842 ], [ 134.571583458191753, 34.238293977338508 ], [ 134.587035537278211, 34.240128878864581 ], [ 134.590765349471496, 34.22453221589295 ], [ 134.583039309928267, 34.211687905210439 ], [ 134.587301952434871, 34.200907858744756 ], [ 134.611545731691194, 34.191045263042113 ], [ 134.625399319837669, 34.18026521657643 ], [ 134.639785738297462, 34.175219237379729 ], [ 134.617939695451099, 34.144943362199513 ], [ 134.598491389014725, 34.102052539027547 ], [ 134.606483843714614, 34.100447000192233 ], [ 134.604086107304624, 34.085538425292881 ], [ 134.588900443374854, 34.055721275494186 ], [ 134.594495161664781, 34.045858679791543 ], [ 134.588101197904876, 34.029803291438398 ], [ 134.600889125424686, 34.017417706137401 ], [ 134.592630255568139, 34.013977265776013 ], [ 134.59742572838806, 34.001362317784256 ], [ 134.614742713571161, 33.995857613206041 ], [ 134.619804601547742, 33.987600556338705 ], [ 134.632059698754233, 33.993563986298447 ], [ 134.625932150150987, 34.008243198507031 ], [ 134.635523095790859, 34.010536825414626 ], [ 134.644314795960724, 34.00342658200109 ], [ 134.660299705360501, 33.971545167985568 ], [ 134.669890651000372, 33.961453209592158 ], [ 134.683477823990188, 33.95915958268457 ], [ 134.697597827293322, 33.949985075054201 ], [ 134.703458960739908, 33.926131355215247 ], [ 134.699196318233277, 33.906635526500715 ], [ 134.684277069460165, 33.891726951601363 ], [ 134.652040835503954, 33.870166858670004 ], [ 134.635523095790859, 33.867185143690129 ], [ 134.646179702057367, 33.850212304573951 ], [ 134.670956311627037, 33.848377403047877 ], [ 134.687740466496791, 33.852964656863065 ], [ 134.708787263873148, 33.850671029955471 ], [ 134.72583783389959, 33.834845004293086 ], [ 134.738625761419399, 33.840120346180548 ], [ 134.750081613155913, 33.834615641602326 ], [ 134.729034815779528, 33.82291814437361 ], [ 134.66536159333711, 33.799752512606929 ], [ 134.641117814080786, 33.785532025779858 ], [ 134.622735168271049, 33.785761388470618 ], [ 134.602754031521329, 33.772458352406588 ], [ 134.577977421951687, 33.760760855177864 ], [ 134.566521570215173, 33.732090518832969 ], [ 134.543343451585486, 33.73644840995739 ], [ 134.543609866742173, 33.719016845459691 ], [ 134.509775141845978, 33.697915477909845 ], [ 134.466882301623258, 33.680254550721386 ], [ 134.43864229501699, 33.662593623532928 ], [ 134.41866115826727, 33.665345975822042 ], [ 134.404541154964136, 33.65915318317154 ], [ 134.385892093997739, 33.640804167910808 ], [ 134.369107939127957, 33.632547111043479 ], [ 134.387490584937694, 33.625436867629944 ], [ 134.382695112117773, 33.61396873309198 ], [ 134.362713975368052, 33.598142707429602 ], [ 134.363246805681371, 33.580940505622664 ], [ 134.340068687051712, 33.577958790642789 ], [ 134.328612835315198, 33.581857956385697 ], [ 134.309697359192143, 33.573600899518368 ], [ 134.309697359192143, 33.563050215743445 ], [ 134.318489059362008, 33.556857423092943 ], [ 134.305434716685539, 33.548141640844094 ] ] ], [ [ [ 134.606750258871273, 34.251597013402538 ], [ 134.61500912872782, 34.250220837257984 ], [ 134.619005356077764, 34.231413096615725 ], [ 134.634723850320881, 34.232559910069526 ], [ 134.638453662514138, 34.22476157858371 ], [ 134.626731395620993, 34.203660211033863 ], [ 134.626198565307647, 34.186458009226925 ], [ 134.613677052944496, 34.194715066094261 ], [ 134.595294407134759, 34.198843594527922 ], [ 134.5950279919781, 34.208247464849052 ], [ 134.608881580124574, 34.215587070953347 ], [ 134.617140449981122, 34.229348832398898 ], [ 134.606750258871273, 34.231413096615725 ], [ 134.600356295111368, 34.220633050150049 ], [ 134.587834782748189, 34.231413096615725 ], [ 134.593429501038116, 34.242881231153689 ], [ 134.606750258871273, 34.251597013402538 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1497, "NAME_1": "Tokyo", "VARNAME_1": "Edo|Yedo|Tokio", "HASC_1": "JP.TK", "TYPE_1": "To", "ENGTYPE_1": "Metropolis" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.82102770507737, 35.593827479725334 ], [ 139.805309210834281, 35.599790909685069 ], [ 139.819695629294074, 35.607130515789365 ], [ 139.82102770507737, 35.593827479725334 ] ] ], [ [ [ 139.757088067478293, 35.617451836873528 ], [ 139.786393734711197, 35.580295080970544 ], [ 139.779466940637974, 35.576625277918396 ], [ 139.75522316138165, 35.576625277918396 ], [ 139.748296367308399, 35.59222194089002 ], [ 139.752559009815002, 35.616993111492008 ], [ 139.757088067478293, 35.617451836873528 ] ] ], [ [ [ 139.780532601264611, 35.631213598319079 ], [ 139.779466940637974, 35.624332717596303 ], [ 139.792787698471102, 35.610112230769232 ], [ 139.786660149867856, 35.601625811211143 ], [ 139.766945428274823, 35.625479531050104 ], [ 139.780532601264611, 35.631213598319079 ] ] ], [ [ [ 139.787192980181203, 35.663095012334608 ], [ 139.788791471121158, 35.655755406230313 ], [ 139.773072976878069, 35.64566344783691 ], [ 139.767211843431483, 35.655296680848792 ], [ 139.787192980181203, 35.663095012334608 ] ] ], [ [ [ 139.874843566723285, 35.794290471448868 ], [ 139.892426967063045, 35.78121679807559 ], [ 139.888164324556442, 35.769978026228394 ], [ 139.894824703473006, 35.746583031770953 ], [ 139.916670746319369, 35.724564213458073 ], [ 139.929458673839179, 35.700710493619113 ], [ 139.930790749622503, 35.697728778639245 ], [ 139.931057164779162, 35.697499415948485 ], [ 139.947308489335597, 35.669287804985103 ], [ 139.929725088995838, 35.665847364623716 ], [ 139.91906848272933, 35.655984768921073 ], [ 139.938783204322363, 35.641305556712489 ], [ 139.897488855039626, 35.616534386110494 ], [ 139.873245075783302, 35.625708893740864 ], [ 139.870314509060023, 35.639011929804894 ], [ 139.849534126840297, 35.642911095547802 ], [ 139.849800541996956, 35.676856773780159 ], [ 139.845005069177034, 35.67823294992472 ], [ 139.838078275103811, 35.633507225226673 ], [ 139.82102770507737, 35.631672323700599 ], [ 139.820761289920711, 35.653691142013486 ], [ 139.804509965364275, 35.650938789724371 ], [ 139.806374871460918, 35.6367183028973 ], [ 139.793320528784449, 35.61401139651214 ], [ 139.776269958758007, 35.642223007475522 ], [ 139.790389962061141, 35.652544328559685 ], [ 139.793320528784449, 35.664700551169922 ], [ 139.787725810494521, 35.674792509563332 ], [ 139.767478258588142, 35.660342660045501 ], [ 139.759752219044913, 35.638094479041854 ], [ 139.753358255285008, 35.635571489443507 ], [ 139.746964291525103, 35.589698951291666 ], [ 139.756022406851628, 35.56882694643258 ], [ 139.770675240468108, 35.56882694643258 ], [ 139.78559448924122, 35.560111164183731 ], [ 139.798648831917689, 35.53740425779857 ], [ 139.790123546904482, 35.533275729364902 ], [ 139.774405052661365, 35.538780433943131 ], [ 139.770675240468108, 35.540615335469198 ], [ 139.754690331068332, 35.54589067735666 ], [ 139.731778627595304, 35.540844698159958 ], [ 139.70753484833898, 35.533734454746423 ], [ 139.707268433182321, 35.549789843099568 ], [ 139.683024653925997, 35.559193713420697 ], [ 139.666506914212903, 35.586946599002559 ], [ 139.652653326066428, 35.590616402054707 ], [ 139.624146904303501, 35.609194780006199 ], [ 139.577524251887496, 35.619516101090362 ], [ 139.566068400150982, 35.631213598319079 ], [ 139.541558205737999, 35.634654038680466 ], [ 139.530635184314832, 35.639470655186415 ], [ 139.519712162891665, 35.62341526683327 ], [ 139.499997441298603, 35.614928847275181 ], [ 139.492004986598715, 35.601855173901903 ], [ 139.477352152982235, 35.616534386110494 ], [ 139.467228377029073, 35.621121639925676 ], [ 139.456038940449218, 35.611488406913793 ], [ 139.496001213948659, 35.585799785548758 ], [ 139.489340835032067, 35.573414200247768 ], [ 139.492004986598715, 35.558734988039177 ], [ 139.484278947055486, 35.542908962376792 ], [ 139.489873665345414, 35.52341313366226 ], [ 139.484545362212145, 35.512862449887336 ], [ 139.486676683465447, 35.501853040730893 ], [ 139.471224604379017, 35.50093558996786 ], [ 139.457637431389202, 35.517679066393285 ], [ 139.457104601075855, 35.528229750168208 ], [ 139.430995915722917, 35.548643029645774 ], [ 139.402755909116649, 35.579377630207503 ], [ 139.370253260003778, 35.593827479725334 ], [ 139.338017026047567, 35.60070836044811 ], [ 139.311375510381254, 35.601625811211143 ], [ 139.292460034258198, 35.608736054624679 ], [ 139.272212482351819, 35.606442427717084 ], [ 139.260223800301986, 35.60070836044811 ], [ 139.239177002925629, 35.607130515789365 ], [ 139.225056999622495, 35.622039090688716 ], [ 139.218663035862591, 35.642911095547802 ], [ 139.197349823329546, 35.648645162816777 ], [ 139.187492462533015, 35.641764282094002 ], [ 139.175237365326524, 35.647039623981463 ], [ 139.164047928746697, 35.664700551169922 ], [ 139.13341018573044, 35.669975893057384 ], [ 139.105969424594178, 35.688324908318123 ], [ 139.074532436107972, 35.693370887514824 ], [ 139.026844123065302, 35.717912695426058 ], [ 139.010326383352208, 35.742913228718805 ], [ 138.993542228482454, 35.758051166308917 ], [ 138.985816188939225, 35.783281062292424 ], [ 138.973827506889393, 35.800941989480883 ], [ 138.973028261419387, 35.821355268958456 ], [ 138.956244106549633, 35.833282128877926 ], [ 138.946919576066421, 35.851860506829425 ], [ 138.956510521706292, 35.870209522090164 ], [ 138.97729090392599, 35.879613392411287 ], [ 138.999936192242359, 35.8812189312466 ], [ 139.013523365232146, 35.893833879238358 ], [ 139.026577707908643, 35.894063241929118 ], [ 139.053219223574928, 35.875484863977618 ], [ 139.072401114854642, 35.868833345945603 ], [ 139.082524890807832, 35.872044423616231 ], [ 139.114761124764044, 35.861493739841308 ], [ 139.146464528406938, 35.860117563696754 ], [ 139.186959632219697, 35.840392372291461 ], [ 139.19868189911287, 35.836951931930074 ], [ 139.218663035862591, 35.841997911126782 ], [ 139.229586057285758, 35.83649320654856 ], [ 139.26422002765193, 35.833282128877926 ], [ 139.285000409871657, 35.83603448116704 ], [ 139.305247961778036, 35.830988501970339 ], [ 139.318302304454505, 35.821813994339969 ], [ 139.326294759154393, 35.795207922211901 ], [ 139.365724202340488, 35.788785766870646 ], [ 139.39263213316346, 35.763785233577892 ], [ 139.442185352302744, 35.766308223176246 ], [ 139.456305355605878, 35.765390772413213 ], [ 139.48561102283881, 35.777776357714203 ], [ 139.499464610985257, 35.776400181569649 ], [ 139.529303108531508, 35.788785766870646 ], [ 139.536762732918078, 35.796125372974942 ], [ 139.546886508871268, 35.778693808477243 ], [ 139.539160469328039, 35.772042290445228 ], [ 139.550882736221212, 35.760115430525744 ], [ 139.566068400150982, 35.758509891690437 ], [ 139.597238973480557, 35.775482730806615 ], [ 139.624946149773507, 35.763555870887132 ], [ 139.628409546810104, 35.775024005425095 ], [ 139.643328795583216, 35.791767481850513 ], [ 139.659313704982992, 35.796584098356462 ], [ 139.691017108625886, 35.798189637191776 ], [ 139.749362027935064, 35.783510424983184 ], [ 139.760285049358231, 35.788097678798366 ], [ 139.758686558418276, 35.808969683657452 ], [ 139.770142410154762, 35.814474388235681 ], [ 139.792787698471102, 35.802776891006957 ], [ 139.819429214137415, 35.808510958275939 ], [ 139.827954499150621, 35.791308756469 ], [ 139.847935635900342, 35.795207922211901 ], [ 139.874843566723285, 35.794290471448868 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1498, "NAME_1": "Tottori", "VARNAME_1": "", "HASC_1": "JP.TT", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.405606815590772, 35.237627220976307 ], [ 134.400278512457533, 35.24703109129743 ], [ 134.375501902887891, 35.241526386719215 ], [ 134.365378126934672, 35.226159086438344 ], [ 134.345130575028293, 35.217213941498741 ], [ 134.319554719988673, 35.199094288928762 ], [ 134.284387919309154, 35.193818947041301 ], [ 134.2676037644394, 35.205287081579257 ], [ 134.250020364099669, 35.196800662021168 ], [ 134.238564512363155, 35.196112573948895 ], [ 134.196470917610412, 35.180974636358783 ], [ 134.18181808399396, 35.166524786840959 ], [ 134.165033929124206, 35.186708703627765 ], [ 134.155709398640994, 35.192672133587507 ], [ 134.163968268497541, 35.21170923692052 ], [ 134.160238456304256, 35.231205065635052 ], [ 134.148249774254424, 35.228223350655178 ], [ 134.140257319554536, 35.23510423137796 ], [ 134.147184113627787, 35.250012806277304 ], [ 134.146384868157782, 35.260563490052228 ], [ 134.135195431577955, 35.277765691859166 ], [ 134.120809013118162, 35.279829956076 ], [ 134.100295046055123, 35.3023074997704 ], [ 134.052873148169112, 35.295426619047625 ], [ 134.043815032842588, 35.300701960935086 ], [ 134.012644459513012, 35.304142401296474 ], [ 134.003053513873141, 35.311023282019249 ], [ 134.013710120139677, 35.337399991456557 ], [ 134.01077955341637, 35.348180037922234 ], [ 134.000122947149862, 35.349785576757554 ], [ 133.98067464071346, 35.340840431817945 ], [ 133.969218788976974, 35.343134058725539 ], [ 133.944708594563991, 35.330748473424535 ], [ 133.934584818610801, 35.330289748043022 ], [ 133.933252742827477, 35.310335193946969 ], [ 133.90474632106455, 35.300701960935086 ], [ 133.886097260098154, 35.291298090613957 ], [ 133.874374993204981, 35.289921914469403 ], [ 133.864251217251791, 35.267215008084243 ], [ 133.846401401755372, 35.249783443586544 ], [ 133.830682907512255, 35.246343003225157 ], [ 133.81416516779916, 35.264233293104375 ], [ 133.804574222159289, 35.284187847200421 ], [ 133.774202894299719, 35.300472598244326 ], [ 133.757685154586625, 35.307124116276341 ], [ 133.749959115043396, 35.315151810452917 ], [ 133.728113072197061, 35.316069261215951 ], [ 133.70573419903738, 35.321344603103412 ], [ 133.685486647131, 35.315610535834431 ], [ 133.665239095224621, 35.323179504629486 ], [ 133.641261731124956, 35.336023815312004 ], [ 133.619948518591912, 35.336482540693517 ], [ 133.599168136372214, 35.341757882580978 ], [ 133.591442096828985, 35.333271463022889 ], [ 133.590642851359007, 35.321573965794173 ], [ 133.578654169309175, 35.302995587842673 ], [ 133.573858696489225, 35.271572899208664 ], [ 133.559738693186091, 35.240838298646935 ], [ 133.539491141279711, 35.23441614330568 ], [ 133.519510004529991, 35.237397858285547 ], [ 133.511251134673444, 35.230058252181252 ], [ 133.52190774093998, 35.210333060775966 ], [ 133.5245718925066, 35.182121449812584 ], [ 133.510984719516784, 35.18923169322612 ], [ 133.489405091827109, 35.183268263266378 ], [ 133.470489615704025, 35.172258854109941 ], [ 133.449709233484327, 35.168818413748554 ], [ 133.410546205454892, 35.182580175194104 ], [ 133.396692617308418, 35.166524786840959 ], [ 133.414542432804836, 35.127991854793414 ], [ 133.413476772178171, 35.117211808327731 ], [ 133.397491862778395, 35.110330927604956 ], [ 133.375112989618714, 35.109184114151162 ], [ 133.360193740845602, 35.098633430376239 ], [ 133.339679773782564, 35.101844508046867 ], [ 133.321829958286145, 35.090835098890423 ], [ 133.302381651849743, 35.100009606520793 ], [ 133.293057121366559, 35.094046176561051 ], [ 133.29039296979991, 35.065146477525396 ], [ 133.272010323990173, 35.054595793750472 ], [ 133.250963526613816, 35.075467798609559 ], [ 133.234712202057381, 35.074091622465005 ], [ 133.231248805020755, 35.064687752143875 ], [ 133.215530310777638, 35.070421819412857 ], [ 133.171571809928281, 35.064687752143875 ], [ 133.163046524915046, 35.070651182103617 ], [ 133.144131048791991, 35.062164762545521 ], [ 133.143864633635332, 35.073174171701964 ], [ 133.139601991128728, 35.086706570456755 ], [ 133.146795200358611, 35.106431761862048 ], [ 133.145463124575315, 35.117441171018491 ], [ 133.152389918648538, 35.137625087805297 ], [ 133.161181618818404, 35.145652781981873 ], [ 133.182761246508107, 35.152533662704649 ], [ 133.19741408012456, 35.166524786840959 ], [ 133.18462615260475, 35.184873802101691 ], [ 133.185958228388074, 35.195424485876615 ], [ 133.176900113061521, 35.20207600390863 ], [ 133.155320485371846, 35.200699827764076 ], [ 133.15425482474518, 35.212856050374313 ], [ 133.182761246508107, 35.230287614872012 ], [ 133.228584653454135, 35.245654915152876 ], [ 133.239507674877302, 35.245884277843636 ], [ 133.262152963193643, 35.258040500453873 ], [ 133.272276739146832, 35.255746873546286 ], [ 133.304512973103044, 35.260104764670707 ], [ 133.311706182332955, 35.269967360373357 ], [ 133.303447312476408, 35.291527453304717 ], [ 133.306910709513033, 35.30161941169812 ], [ 133.300783160909759, 35.310105831256209 ], [ 133.297586179029821, 35.33785871683807 ], [ 133.307709954983011, 35.357813270934123 ], [ 133.319165806719525, 35.363776700893865 ], [ 133.322096373442804, 35.378455913102449 ], [ 133.317833730936201, 35.388777234186612 ], [ 133.323961279539446, 35.399098555270783 ], [ 133.321297127972827, 35.431897420049346 ], [ 133.327158261419413, 35.464925647518669 ], [ 133.393229220271792, 35.453457512980705 ], [ 133.40868129935825, 35.453686875671465 ], [ 133.425199039071344, 35.459650305631207 ], [ 133.431593002831249, 35.480981035871807 ], [ 133.445979421291042, 35.494054709245084 ], [ 133.471288861174031, 35.498412600369505 ], [ 133.500061698093617, 35.516302890248724 ], [ 133.51711226812003, 35.519972693300872 ], [ 133.545618689882957, 35.521578232136186 ], [ 133.566132656946024, 35.530064651694275 ], [ 133.59011002104566, 35.531670190529596 ], [ 133.594372663552292, 35.527312299405168 ], [ 133.620747764061917, 35.519743330610112 ], [ 133.639130409871655, 35.518367154465558 ], [ 133.669501737731224, 35.506440294546081 ], [ 133.68815079869762, 35.507357745309122 ], [ 133.755820248489982, 35.500476864586339 ], [ 133.802176485749328, 35.500706227277099 ], [ 133.866648953661752, 35.505064118401528 ], [ 133.886363675254813, 35.508275196072155 ], [ 133.913538021234416, 35.508275196072155 ], [ 133.981740301340125, 35.525248035188334 ], [ 134.001721438089845, 35.526853574023647 ], [ 134.011578798886376, 35.534881268200223 ], [ 134.021436159682906, 35.519513967919352 ], [ 134.064861830218945, 35.519284605228592 ], [ 134.083244476028682, 35.525018672497573 ], [ 134.096565233861838, 35.52387185904378 ], [ 134.160238456304256, 35.531670190529596 ], [ 134.191142614477144, 35.540615335469198 ], [ 134.221513942336713, 35.543826413139826 ], [ 134.272132822102662, 35.560569889565251 ], [ 134.276661879765953, 35.571349936030934 ], [ 134.288117731502439, 35.573414200247768 ], [ 134.29531094073235, 35.589698951291666 ], [ 134.311562265288785, 35.593598117034574 ], [ 134.324083777651936, 35.590387039363947 ], [ 134.348593972064918, 35.600478997757349 ], [ 134.370440014911281, 35.604607526191018 ], [ 134.369374354284616, 35.612864583058347 ], [ 134.404541154964136, 35.59153385281774 ], [ 134.410402288410722, 35.561946065709805 ], [ 134.42398946140051, 35.559881801492971 ], [ 134.427985688750454, 35.538321708561611 ], [ 134.417861912797264, 35.517449703702525 ], [ 134.43118267063042, 35.502311766112413 ], [ 134.437043804077007, 35.47868740896422 ], [ 134.442904937523593, 35.439695751535154 ], [ 134.480203059456386, 35.425704627398844 ], [ 134.483133626179693, 35.400704094106089 ], [ 134.475674001793124, 35.380749540010044 ], [ 134.479670229143068, 35.371575032379674 ], [ 134.499917781049447, 35.364006063584625 ], [ 134.510840802472615, 35.353455379809702 ], [ 134.512439293412598, 35.340840431817945 ], [ 134.504979669026056, 35.323179504629486 ], [ 134.515636275292565, 35.305977302822548 ], [ 134.513504954039263, 35.295197256356865 ], [ 134.518300426859184, 35.274783976879299 ], [ 134.489794005096257, 35.259416676598434 ], [ 134.483932871649671, 35.250242168968065 ], [ 134.454893619573426, 35.23441614330568 ], [ 134.435178897980364, 35.226847174510624 ], [ 134.405606815590772, 35.237627220976307 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1499, "NAME_1": "Toyama", "VARNAME_1": "", "HASC_1": "JP.TY", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.637755496224997, 36.98032494536465 ], [ 137.664397011891282, 36.953948235927342 ], [ 137.69263701849755, 36.940186474481791 ], [ 137.715015891657231, 36.937204759501924 ], [ 137.720344194790471, 36.927112801108521 ], [ 137.72061060994713, 36.904176532032601 ], [ 137.716347967440527, 36.888579869060976 ], [ 137.731000801057007, 36.873441931470865 ], [ 137.737661179973571, 36.853716740065579 ], [ 137.735796273876929, 36.832615372515733 ], [ 137.741657407323515, 36.815871896090314 ], [ 137.757375901566633, 36.792476901632874 ], [ 137.753379674216688, 36.782614305930224 ], [ 137.765901186579839, 36.764265290669492 ], [ 137.757109486409945, 36.751191617296215 ], [ 137.754711749999984, 36.718851477899172 ], [ 137.757375901566633, 36.686511338502129 ], [ 137.764036280483197, 36.666556784406076 ], [ 137.75817514703661, 36.651648209506732 ], [ 137.756043825783308, 36.630088116575365 ], [ 137.749916277180063, 36.621372334326516 ], [ 137.749916277180063, 36.602335230993504 ], [ 137.75551099546999, 36.593160723363134 ], [ 137.749916277180063, 36.583986215732764 ], [ 137.726205328237057, 36.582839402278971 ], [ 137.695834000377488, 36.564490387018239 ], [ 137.689440036617583, 36.542930294086872 ], [ 137.700895888354097, 36.534443874528783 ], [ 137.706757021800684, 36.51471868312349 ], [ 137.697432491317471, 36.508067165091475 ], [ 137.676385693941114, 36.507608439709955 ], [ 137.656138142034735, 36.486048346778588 ], [ 137.65747021781803, 36.455084383526099 ], [ 137.648145687334846, 36.450726492401678 ], [ 137.635890590128355, 36.421826793366016 ], [ 137.624967568705159, 36.419762529149182 ], [ 137.607916998678746, 36.408982482683506 ], [ 137.607916998678746, 36.398890524290096 ], [ 137.590067183182327, 36.386504938989106 ], [ 137.567954725179305, 36.385358125535305 ], [ 137.542911700453004, 36.389486653968973 ], [ 137.523729809173261, 36.402789690033003 ], [ 137.515470939316714, 36.416092726097034 ], [ 137.500018860230256, 36.423202969510569 ], [ 137.477639987070575, 36.422285518747536 ], [ 137.463786398924128, 36.409441208065019 ], [ 137.406773555398246, 36.42389105758285 ], [ 137.400113176481682, 36.431460026377906 ], [ 137.392653552095112, 36.455543108907619 ], [ 137.368942603152135, 36.447744777421804 ], [ 137.355888260475638, 36.431689389068666 ], [ 137.313261835409577, 36.42457914565513 ], [ 137.309798438372951, 36.434212378667013 ], [ 137.319655799169482, 36.453249482000025 ], [ 137.311396929312934, 36.460359725413561 ], [ 137.301006738203085, 36.455313746216859 ], [ 137.281558431766712, 36.462653352321155 ], [ 137.258113897980365, 36.451414580473951 ], [ 137.242128988580589, 36.447974140112564 ], [ 137.206962187901098, 36.434441741357773 ], [ 137.194440675537919, 36.452102668546232 ], [ 137.176857275198188, 36.448891590875604 ], [ 137.166733499244998, 36.451414580473951 ], [ 137.147018777651937, 36.442469435534349 ], [ 137.126238395432239, 36.416551451478554 ], [ 137.09560065241601, 36.391321555495047 ], [ 137.097731973669312, 36.380770871720124 ], [ 137.079082912702887, 36.380082783647843 ], [ 137.061233097206497, 36.368614649109887 ], [ 137.059368191109854, 36.351641809993708 ], [ 137.052174981879944, 36.342926027744852 ], [ 137.055105548603251, 36.333292794732969 ], [ 137.04071913014343, 36.314255691399957 ], [ 137.030595354190268, 36.314026328709197 ], [ 137.010880632597207, 36.287190893890369 ], [ 136.999957611174011, 36.284667904292021 ], [ 136.978111568327677, 36.271364868227991 ], [ 136.960794583144576, 36.274575945898619 ], [ 136.973848925821045, 36.304622458388067 ], [ 136.956531940637973, 36.336045147022077 ], [ 136.940547031238196, 36.345907742724727 ], [ 136.910175703378627, 36.357375877262683 ], [ 136.892325887882208, 36.342467302363339 ], [ 136.883267772555683, 36.34728391886928 ], [ 136.879271545205739, 36.366779747583813 ], [ 136.860356069082655, 36.34682519348776 ], [ 136.840374932332963, 36.343843478507893 ], [ 136.84410474452622, 36.333292794732969 ], [ 136.833714553416371, 36.307145447986422 ], [ 136.825722098716483, 36.300035204572886 ], [ 136.796150016326919, 36.296824126902258 ], [ 136.788956807097009, 36.333292794732969 ], [ 136.794551525386936, 36.344760929270933 ], [ 136.805208131653444, 36.350724359230668 ], [ 136.798281337580221, 36.395450083928708 ], [ 136.783362088807081, 36.409670570755779 ], [ 136.782030013023785, 36.428019586016518 ], [ 136.798281337580221, 36.442010710152829 ], [ 136.792420204133634, 36.451414580473951 ], [ 136.802011149773477, 36.477561927220506 ], [ 136.799346998206858, 36.508525890472995 ], [ 136.819860965269896, 36.549123086737367 ], [ 136.796949261796897, 36.572976806576328 ], [ 136.791354543506969, 36.5910964591463 ], [ 136.787358316157025, 36.618849344728162 ], [ 136.803076810400142, 36.633987282318273 ], [ 136.812934171196673, 36.653024385651285 ], [ 136.826254929029801, 36.66930913669519 ], [ 136.814532662136656, 36.687887514646683 ], [ 136.81613115307664, 36.700043737256919 ], [ 136.797215676953556, 36.710823783722603 ], [ 136.796416431483578, 36.721145104806766 ], [ 136.822791531993204, 36.727796622838781 ], [ 136.825722098716483, 36.737888581232184 ], [ 136.839042856549639, 36.741329021593572 ], [ 136.850498708286125, 36.754402694966849 ], [ 136.853695690166091, 36.783531756693264 ], [ 136.853962105322751, 36.81289018111044 ], [ 136.866483617685901, 36.854634190828612 ], [ 136.884599848338979, 36.871836392635558 ], [ 136.880870036145723, 36.896836925928305 ], [ 136.898187021328795, 36.919314469622705 ], [ 136.917635327765197, 36.927571526490041 ], [ 136.930423255285007, 36.943856277533939 ], [ 136.95226929813137, 36.952572059782788 ], [ 136.973582510664386, 36.94454436560622 ], [ 136.984505532087582, 36.948902256730641 ], [ 136.989034589750844, 36.963122743557712 ], [ 137.013011953850508, 36.958994215124051 ], [ 137.044715357493374, 36.962205292794678 ], [ 137.052174981879944, 36.958994215124051 ], [ 137.02793120262362, 36.939727749100271 ], [ 137.033792336070206, 36.923901723437893 ], [ 137.018873087297095, 36.910598687373856 ], [ 137.009282141657224, 36.895231387092991 ], [ 136.983972701774235, 36.868854677655683 ], [ 136.992231571630782, 36.852340563921018 ], [ 137.012212708380503, 36.832844735206493 ], [ 137.051375736409966, 36.808991015367539 ], [ 137.067893476123061, 36.793164989705147 ], [ 137.092403670536044, 36.781926217857951 ], [ 137.101461785862568, 36.784907932837818 ], [ 137.136895001698747, 36.775733425207449 ], [ 137.139026322952049, 36.769540632556954 ], [ 137.155810477821802, 36.763118477215698 ], [ 137.185382560211394, 36.756696321874443 ], [ 137.193907845224601, 36.760824850308104 ], [ 137.210958415251042, 36.759678036854311 ], [ 137.225611248867494, 36.753255881513056 ], [ 137.229341061060779, 36.764724016051012 ], [ 137.291948622876561, 36.758072498018997 ], [ 137.318856553699504, 36.75876058609127 ], [ 137.334575047942621, 36.763347839906459 ], [ 137.34523165420913, 36.778485777496563 ], [ 137.359618072668923, 36.789036461271486 ], [ 137.392919967251771, 36.807844201913738 ], [ 137.392120721781794, 36.821147237977769 ], [ 137.399580346168364, 36.836514538258641 ], [ 137.410236952434872, 36.847523947415084 ], [ 137.409171291808235, 36.860826983479114 ], [ 137.416897331351436, 36.86816658958341 ], [ 137.418762237448078, 36.88078153757516 ], [ 137.409437706964894, 36.898442464763619 ], [ 137.425955446677989, 36.925048536891687 ], [ 137.435279977161173, 36.931241329542189 ], [ 137.463253568610781, 36.939957111791031 ], [ 137.489362253963748, 36.953718873236582 ], [ 137.512007542280088, 36.959682303196324 ], [ 137.574615104095869, 36.964498919702265 ], [ 137.587669446772367, 36.975508328858709 ], [ 137.614044547281992, 36.976425779621749 ], [ 137.637755496224997, 36.98032494536465 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1500, "NAME_1": "Wakayama", "VARNAME_1": "", "HASC_1": "JP.WK", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.813344503397502, 33.480479647070133 ], [ 135.836522622027161, 33.477039206708746 ], [ 135.857569419403546, 33.47015832598597 ], [ 135.829595827953938, 33.449515683817644 ], [ 135.823734694507351, 33.461442543737121 ], [ 135.80135582134767, 33.472451952893564 ], [ 135.813344503397502, 33.480479647070133 ] ] ], [ [ [ 135.645769369856538, 34.380498845609203 ], [ 135.656958806436393, 34.3704068872158 ], [ 135.666283336919577, 34.351599146573548 ], [ 135.663619185352957, 34.323846260991687 ], [ 135.671345224896186, 34.313524939907524 ], [ 135.671345224896186, 34.298387002317412 ], [ 135.682001831162694, 34.270863479426311 ], [ 135.703847874009057, 34.272010292880104 ], [ 135.721697689505476, 34.258248531434553 ], [ 135.732354295771984, 34.230725008543452 ], [ 135.729956559362023, 34.218339423242455 ], [ 135.712373159022263, 34.205495112559944 ], [ 135.681735416006035, 34.219256874005495 ], [ 135.671345224896186, 34.221091775531562 ], [ 135.652163333616443, 34.215357708262587 ], [ 135.637244084843331, 34.200907858744756 ], [ 135.644170878916555, 34.17957712850415 ], [ 135.626054648263477, 34.166732817821639 ], [ 135.62498898763684, 34.155494045974436 ], [ 135.60740558729708, 34.150448066777734 ], [ 135.590355017270667, 34.139897383002811 ], [ 135.583428223197416, 34.119254740834485 ], [ 135.54932708314459, 34.094483570232491 ], [ 135.552524065024528, 34.083703523766808 ], [ 135.542666704227997, 34.071547301156571 ], [ 135.572238786617589, 34.054574462040392 ], [ 135.582362562570779, 34.055033187421913 ], [ 135.597015396187231, 34.041271425976362 ], [ 135.600745208380516, 34.030950104892199 ], [ 135.59754822650055, 34.008701923888552 ], [ 135.608204832767086, 34.009160649270072 ], [ 135.627120308890142, 33.999986141639702 ], [ 135.63777691515665, 33.988059281720226 ], [ 135.6425723879766, 33.967187276861139 ], [ 135.634313518120052, 33.946085909311293 ], [ 135.623923327010175, 33.949755712363441 ], [ 135.614598796526991, 33.916727484894118 ], [ 135.605274266043779, 33.901130821922493 ], [ 135.624189742166834, 33.895396754653511 ], [ 135.63511276359003, 33.871313672123797 ], [ 135.659356542846353, 33.880946905135687 ], [ 135.674009376462806, 33.897002293488825 ], [ 135.693457682899208, 33.899984008468692 ], [ 135.727292407795403, 33.899754645777939 ], [ 135.744875808135134, 33.887139697786182 ], [ 135.760594302378252, 33.882323081280241 ], [ 135.780841854284631, 33.884846070878588 ], [ 135.804819218384296, 33.891956314292123 ], [ 135.819205636844089, 33.902048272685526 ], [ 135.838653943280462, 33.892185676982884 ], [ 135.862364892223468, 33.896772930798065 ], [ 135.855970928463563, 33.874066024412912 ], [ 135.85677017393354, 33.859616174895081 ], [ 135.862897722536786, 33.842184610397382 ], [ 135.858901495186842, 33.815807900960074 ], [ 135.865828289260094, 33.807780206783505 ], [ 135.887674332106457, 33.798146973771615 ], [ 135.899396598999601, 33.785532025779858 ], [ 135.909786790109479, 33.763513207466978 ], [ 135.920976226689305, 33.761907668631665 ], [ 135.934563399679121, 33.750898259475221 ], [ 135.94495359078897, 33.733466694977523 ], [ 135.958807178935444, 33.725209638110194 ], [ 135.979054730841824, 33.733925420359043 ], [ 135.991043412891656, 33.731861156142209 ], [ 136.010225304171371, 33.721998560439559 ], [ 135.993441149301617, 33.702961457106554 ], [ 135.989444921951673, 33.684612441845815 ], [ 135.973992842865215, 33.678190286504559 ], [ 135.971328691298595, 33.654336566665599 ], [ 135.962004160815383, 33.654107203974846 ], [ 135.937760381559087, 33.644473970962956 ], [ 135.946285666572294, 33.618097261525648 ], [ 135.925771699509255, 33.608693391204525 ], [ 135.932432078425819, 33.599977608955669 ], [ 135.945486421102288, 33.603876774698577 ], [ 135.959872839562081, 33.581857956385697 ], [ 135.943088684692327, 33.579105604096583 ], [ 135.938559627029065, 33.573142174136848 ], [ 135.922841132785948, 33.576123889116715 ], [ 135.91191811136278, 33.549059091607134 ], [ 135.888207162419775, 33.539655221286004 ], [ 135.842916585787094, 33.513737237230217 ], [ 135.825599600603994, 33.51465468799325 ], [ 135.81147959730086, 33.50181037731074 ], [ 135.798425254624391, 33.498369936949352 ], [ 135.793629781804441, 33.485296263576075 ], [ 135.782440345224614, 33.469240875222937 ], [ 135.793096951491123, 33.452497398797512 ], [ 135.788301478671201, 33.440570538878035 ], [ 135.76858675707814, 33.444699067311703 ], [ 135.754733168931665, 33.436671373135127 ], [ 135.750470526425062, 33.44791014498233 ], [ 135.776579211778028, 33.461213181046361 ], [ 135.77125090864476, 33.47887410823482 ], [ 135.759262226594927, 33.484378812813041 ], [ 135.751536187051698, 33.480250284379373 ], [ 135.725960332012079, 33.477268569399506 ], [ 135.701450137599096, 33.490112880082023 ], [ 135.674542206776124, 33.489883517391263 ], [ 135.634846348433371, 33.507085719198201 ], [ 135.624722572480181, 33.502039740001493 ], [ 135.606872756983762, 33.509379346105788 ], [ 135.590355017270667, 33.505709543053641 ], [ 135.574902938184209, 33.515572138756291 ], [ 135.549060667987902, 33.515801501447051 ], [ 135.545330855794646, 33.520159392571472 ], [ 135.518422924971674, 33.521535568716033 ], [ 135.509631224801808, 33.535067967470823 ], [ 135.501905185258579, 33.535067967470823 ], [ 135.493379900245372, 33.548600366225614 ], [ 135.474464424122317, 33.550435267751688 ], [ 135.468070460362384, 33.54630673931802 ], [ 135.446757247829368, 33.551123355823961 ], [ 135.449421399395987, 33.560527226145091 ], [ 135.436633471876178, 33.567637469558626 ], [ 135.408926295583228, 33.576353251807475 ], [ 135.394007046810117, 33.588738837108473 ], [ 135.38814591336353, 33.599518883574156 ], [ 135.391342895243469, 33.617409173453368 ], [ 135.397470443846714, 33.627959857228291 ], [ 135.395871952906759, 33.637822452930941 ], [ 135.382284779916944, 33.650896126304211 ], [ 135.354044773310676, 33.654565929356359 ], [ 135.34285533673085, 33.65915318317154 ], [ 135.330866654681017, 33.671997493854057 ], [ 135.345519488297469, 33.681860089556707 ], [ 135.342588921574162, 33.693328224094664 ], [ 135.354311188467335, 33.694933762929978 ], [ 135.362836473480542, 33.679566462649113 ], [ 135.381219119290279, 33.699979742126679 ], [ 135.394273461966776, 33.702502731725033 ], [ 135.389744404303514, 33.714888317026031 ], [ 135.378821382880318, 33.725439000800947 ], [ 135.363635718950547, 33.732319881523729 ], [ 135.351114206587397, 33.747687181804594 ], [ 135.330866654681017, 33.744017378752446 ], [ 135.322874199981129, 33.763971932848492 ], [ 135.308754196677995, 33.769476637426713 ], [ 135.300761741978107, 33.765806834374573 ], [ 135.271189659588515, 33.782779673490751 ], [ 135.245080974235549, 33.779568595820123 ], [ 135.234424367969041, 33.782320948109231 ], [ 135.235756443752365, 33.799523149916169 ], [ 135.223767761702533, 33.802963590277557 ], [ 135.218705873725924, 33.811450009835646 ], [ 135.188068130709695, 33.817413439795388 ], [ 135.185670394299734, 33.825899859353477 ], [ 135.17421454256322, 33.831404563931699 ], [ 135.153167745186863, 33.877277102083539 ], [ 135.143043969233673, 33.884157982806315 ], [ 135.1140047171574, 33.893332490436677 ], [ 135.100417544167613, 33.888057148549223 ], [ 135.081235652887869, 33.89080950083833 ], [ 135.059389610041507, 33.879341366300366 ], [ 135.064717913174775, 33.895396754653511 ], [ 135.083100558984512, 33.911452143006656 ], [ 135.06578357380144, 33.927736894050561 ], [ 135.076706595224607, 33.93507650015485 ], [ 135.08363338929783, 33.955489779632423 ], [ 135.091359428841059, 33.991499722081613 ], [ 135.119333020290668, 33.998839328185909 ], [ 135.125993399207232, 33.997463152041355 ], [ 135.15156925424688, 34.007784473125518 ], [ 135.151036423933562, 34.024757312241697 ], [ 135.173148881936584, 34.029573928747638 ], [ 135.16169303020007, 34.045858679791543 ], [ 135.146773781426958, 34.04494122902851 ], [ 135.147040196583617, 34.055950638184946 ], [ 135.136383590317109, 34.064207695052275 ], [ 135.110541320120802, 34.070171125012017 ], [ 135.08842886211778, 34.066501321959869 ], [ 135.096154901661009, 34.08049244609618 ], [ 135.097486977444305, 34.093566119469457 ], [ 135.107610753397495, 34.097235922521605 ], [ 135.114271132314087, 34.118796015452965 ], [ 135.134785099377126, 34.113520673565503 ], [ 135.122263587013947, 34.129576061918648 ], [ 135.132653778123824, 34.138521206858258 ], [ 135.155565481596824, 34.138979932239778 ], [ 135.169685484899958, 34.133704590352309 ], [ 135.181141336636472, 34.141961647219645 ], [ 135.186736054926371, 34.155494045974436 ], [ 135.178477185069823, 34.17980649119491 ], [ 135.162492275670047, 34.188522273443759 ], [ 135.154499820970159, 34.183476294247058 ], [ 135.14410962986031, 34.219256874005495 ], [ 135.117468114194025, 34.246092308824316 ], [ 135.097220562287646, 34.252514464165571 ], [ 135.090293768214423, 34.261459609105188 ], [ 135.073776028501328, 34.260083432960627 ], [ 135.06098810098149, 34.264211961394295 ], [ 135.074575273971305, 34.281643525891994 ], [ 135.067914895054741, 34.291735484285397 ], [ 135.076173764911289, 34.307102784566261 ], [ 135.092425089467724, 34.311460675690689 ], [ 135.106278677614199, 34.307790872638542 ], [ 135.101749619950908, 34.286918867779455 ], [ 135.112939056530763, 34.27063411673555 ], [ 135.135051514533785, 34.269028577900237 ], [ 135.15156925424688, 34.27980862436592 ], [ 135.166488503019991, 34.275450733241499 ], [ 135.187535300396377, 34.276826909386045 ], [ 135.206717191676091, 34.284854603562621 ], [ 135.210713419026035, 34.305038520349427 ], [ 135.23202663155908, 34.298616365008172 ], [ 135.249876447055499, 34.310084499546136 ], [ 135.272788150528498, 34.309167048783095 ], [ 135.285309662891649, 34.314442390670557 ], [ 135.29516702368818, 34.295634650028305 ], [ 135.309287026991313, 34.311001950309169 ], [ 135.332465145620972, 34.313754302598284 ], [ 135.341523260947525, 34.331873955168255 ], [ 135.386281007266888, 34.325910525208513 ], [ 135.411856862306536, 34.338754835891031 ], [ 135.429440262646267, 34.337378659746477 ], [ 135.437166302189496, 34.344947628541533 ], [ 135.465939139109082, 34.344947628541533 ], [ 135.488051597112104, 34.359397478059357 ], [ 135.506167827765182, 34.340131012035584 ], [ 135.51922217044168, 34.338754835891031 ], [ 135.540801798131355, 34.352975322718102 ], [ 135.553589725651193, 34.355039586934936 ], [ 135.580231241317477, 34.372700514123395 ], [ 135.601278038693835, 34.376829042557056 ], [ 135.611401814647024, 34.374306052958708 ], [ 135.624722572480181, 34.380957570990724 ], [ 135.645769369856538, 34.380498845609203 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1501, "NAME_1": "Yamagata", "VARNAME_1": "", "HASC_1": "JP.YT", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.554468631370327, 38.878759936778486 ], [ 140.543012779633813, 38.864768812642176 ], [ 140.56885504983012, 38.84504362123689 ], [ 140.589635432049818, 38.833575486698926 ], [ 140.602689774726315, 38.815685196819715 ], [ 140.600292038316326, 38.805134513044791 ], [ 140.606419586919571, 38.782198243968871 ], [ 140.625068647885996, 38.772794373647741 ], [ 140.642385633069068, 38.773711824410782 ], [ 140.648513181672314, 38.764537316780412 ], [ 140.634926008682498, 38.749858104571821 ], [ 140.6141456264628, 38.720729042845406 ], [ 140.61441204161946, 38.698939587223279 ], [ 140.625068647885996, 38.697334048387965 ], [ 140.620273175066046, 38.66797562397079 ], [ 140.603222605039633, 38.63632357264602 ], [ 140.593898074556421, 38.631277593449319 ], [ 140.572851277180064, 38.635176759192227 ], [ 140.566457313420159, 38.644809992204117 ], [ 140.549939573707036, 38.646644893730183 ], [ 140.545676931200433, 38.626460976943378 ], [ 140.565658067950153, 38.601919169032143 ], [ 140.575515428746684, 38.583340791080644 ], [ 140.576847504530008, 38.562010060840045 ], [ 140.567522974046796, 38.542514232125512 ], [ 140.557932028406924, 38.536092076784257 ], [ 140.572318446866745, 38.520036688431112 ], [ 140.57125278624008, 38.499852771644299 ], [ 140.579511656096628, 38.491136989395457 ], [ 140.60162411409965, 38.484256108672682 ], [ 140.61174789005284, 38.466136456102703 ], [ 140.61174789005284, 38.4560444977093 ], [ 140.623203741789354, 38.452374694657152 ], [ 140.600292038316326, 38.434025679396413 ], [ 140.595496565496404, 38.435860580922487 ], [ 140.584839959229896, 38.429438425581232 ], [ 140.576581089373349, 38.402373628071643 ], [ 140.580577316723293, 38.392281669678241 ], [ 140.565391652793494, 38.374391379799022 ], [ 140.550472404020383, 38.364070058714859 ], [ 140.53102409758398, 38.35581300184753 ], [ 140.525162964137394, 38.34663849421716 ], [ 140.533421833993941, 38.322784774378206 ], [ 140.527294285390695, 38.313610266747837 ], [ 140.506247488014338, 38.302830220282154 ], [ 140.495857296904489, 38.290903360362677 ], [ 140.500386354567752, 38.280352676587754 ], [ 140.479872387504713, 38.26980199281283 ], [ 140.47560974499811, 38.259939397110188 ], [ 140.471613517648166, 38.228975433857698 ], [ 140.477474651094752, 38.220489014299602 ], [ 140.474277669214786, 38.210397055906199 ], [ 140.483602199697998, 38.17989181803523 ], [ 140.468682950924858, 38.153285745907162 ], [ 140.449234644488484, 38.140670797915405 ], [ 140.448168983861819, 38.128285212614415 ], [ 140.427122186485462, 38.116587715385691 ], [ 140.422326713665541, 38.095715710526605 ], [ 140.424458034918814, 38.085623752133202 ], [ 140.41779765600225, 38.075761156430559 ], [ 140.382897270479418, 38.058788317314374 ], [ 140.36744519139296, 38.053512975426912 ], [ 140.345599148546626, 38.051678073900838 ], [ 140.280327435164196, 38.053054250045392 ], [ 140.285655738297464, 38.043650379724269 ], [ 140.2789953593809, 38.032870333258586 ], [ 140.292049702057369, 38.004658722295204 ], [ 140.279261774537559, 37.984016080126878 ], [ 140.283258001887503, 37.973694759042715 ], [ 140.275265547187615, 37.964749614103106 ], [ 140.282192341260838, 37.931492023943022 ], [ 140.267805922801045, 37.904885951814961 ], [ 140.272867810777655, 37.862224491333748 ], [ 140.26887158342771, 37.852132532940345 ], [ 140.270203659211006, 37.824150284667724 ], [ 140.297910835503956, 37.807865533623819 ], [ 140.280860265477543, 37.782406274949551 ], [ 140.27153573499433, 37.777360295752842 ], [ 140.257682146847856, 37.761304907399705 ], [ 140.230241385711565, 37.743185254829726 ], [ 140.199870057852024, 37.750066135552501 ], [ 140.164436842015846, 37.753506575913889 ], [ 140.126605889769706, 37.731029032219489 ], [ 140.104759846923344, 37.73561628603467 ], [ 140.093836825500176, 37.750066135552501 ], [ 140.073589273593797, 37.754653389367689 ], [ 140.068527385617216, 37.764515985070332 ], [ 140.044017191204205, 37.76726833735944 ], [ 140.023769639297825, 37.760616819327424 ], [ 139.989668499244999, 37.757635104347557 ], [ 139.963293398735374, 37.793186321415234 ], [ 139.965158304832016, 37.803048917117877 ], [ 139.957698680445446, 37.81291151282052 ], [ 139.940648110419033, 37.825067735430757 ], [ 139.923863955549251, 37.810847248603686 ], [ 139.891894136749698, 37.807865533623819 ], [ 139.879905454699866, 37.810388523222173 ], [ 139.860989978576811, 37.823462196595443 ], [ 139.842074502453755, 37.811994062057487 ], [ 139.831950726500565, 37.810847248603686 ], [ 139.813301665534141, 37.800296564828763 ], [ 139.791189207531147, 37.823920921976963 ], [ 139.781598261891276, 37.827590725029111 ], [ 139.759752219044913, 37.820021756234055 ], [ 139.741369573235175, 37.820251118924816 ], [ 139.722720512268779, 37.839746947639348 ], [ 139.718724284918835, 37.851215082177305 ], [ 139.696078996602495, 37.845939740289843 ], [ 139.68222540845602, 37.848692092578958 ], [ 139.662777102019618, 37.858784050972361 ], [ 139.658514459513015, 37.869564097438044 ], [ 139.638799737919953, 37.882637770811314 ], [ 139.629475207436769, 37.905344677196474 ], [ 139.633471434786713, 37.923005604384933 ], [ 139.640931059173255, 37.930574573179989 ], [ 139.647857853246506, 37.961997261813998 ], [ 139.642529550113238, 37.982410541291564 ], [ 139.655850307946395, 38.000071468480023 ], [ 139.659313704982992, 38.032411607877066 ], [ 139.679028426576053, 38.038145675146048 ], [ 139.694480505662511, 38.053054250045392 ], [ 139.692615599565869, 38.067733462253983 ], [ 139.676630690166093, 38.083330125225608 ], [ 139.681159747829355, 38.097550612052679 ], [ 139.693681260192506, 38.116128990004171 ], [ 139.693947675349193, 38.148239766710461 ], [ 139.685688805492646, 38.168653046188027 ], [ 139.711797490845584, 38.201451910966597 ], [ 139.744300139958455, 38.197323382532929 ], [ 139.756555237164946, 38.190901227191674 ], [ 139.767478258588142, 38.195947206388368 ], [ 139.791988453001125, 38.19273612871774 ], [ 139.829819405247264, 38.214754947030627 ], [ 139.861522808890129, 38.227140532331624 ], [ 139.884700927519816, 38.261315573254741 ], [ 139.902017912702888, 38.279893951206233 ], [ 139.90148508238957, 38.290673997671917 ], [ 139.882303191109855, 38.303977033735954 ], [ 139.878306963759911, 38.313839629438597 ], [ 139.842873747923733, 38.339986976185145 ], [ 139.832483556813884, 38.341363152329698 ], [ 139.813035250377482, 38.352601924176902 ], [ 139.792521283314443, 38.34709721959868 ], [ 139.772540146564722, 38.351684473413862 ], [ 139.763482031238198, 38.358106628755124 ], [ 139.749362027935064, 38.359024079518157 ], [ 139.733377118535287, 38.372097752891435 ], [ 139.730979382125327, 38.382648436666358 ], [ 139.707801263495639, 38.393657845822794 ], [ 139.708866924122304, 38.404208529597717 ], [ 139.718457869762176, 38.417282202970995 ], [ 139.723253342582098, 38.448475528914244 ], [ 139.716592963665533, 38.467741994938017 ], [ 139.729114476028684, 38.483797383291162 ], [ 139.716592963665533, 38.495494880519878 ], [ 139.704071451302354, 38.500082134335059 ], [ 139.641730304643261, 38.508339191202396 ], [ 139.624946149773507, 38.522330315338706 ], [ 139.604965013023786, 38.519807325740352 ], [ 139.566068400150982, 38.539991242527165 ], [ 139.549550660437887, 38.54641339786842 ], [ 139.545554433087943, 38.563156874293838 ], [ 139.557276699981117, 38.575083734213315 ], [ 139.559408021234418, 38.586551868751279 ], [ 139.585250291430725, 38.62256181120047 ], [ 139.594841237070597, 38.646186168348663 ], [ 139.615088788976976, 38.674856504693565 ], [ 139.633205019630054, 38.684719100396208 ], [ 139.660645780766316, 38.704673654492261 ], [ 139.671035971876165, 38.718894141319332 ], [ 139.690217863155908, 38.723710757825273 ], [ 139.708334093808986, 38.74458276268436 ], [ 139.708866924122304, 38.751922368788655 ], [ 139.746165046055097, 38.774858637864575 ], [ 139.761883540298214, 38.800547259229603 ], [ 139.777335619384672, 38.832199310554373 ], [ 139.791189207531147, 38.86706243954977 ], [ 139.804509965364275, 38.906742185051108 ], [ 139.808506192714219, 38.927614189910194 ], [ 139.82582317789732, 38.95743133970889 ], [ 139.852464693563604, 39.012937110872613 ], [ 139.873245075783302, 39.070965871634691 ], [ 139.867916772650062, 39.073947586614565 ], [ 139.879106209229889, 39.096195767618205 ], [ 139.868449602963381, 39.112939244043623 ], [ 139.869781678746676, 39.119132036694126 ], [ 139.906280555209491, 39.115920959023498 ], [ 139.986471517365032, 39.105599637939328 ], [ 140.016043599754624, 39.120966938220192 ], [ 140.065863234050568, 39.130829533922842 ], [ 140.064797573423931, 39.11110434251755 ], [ 140.075987010003757, 39.084268907698728 ], [ 140.101296449886746, 39.080828467337341 ], [ 140.1353975899396, 39.060644550550528 ], [ 140.146853441676086, 39.058580286333694 ], [ 140.152448159966013, 39.049405778703331 ], [ 140.175093448282354, 39.049405778703331 ], [ 140.195074585032074, 39.058121560952173 ], [ 140.204931945828605, 39.055827934044586 ], [ 140.204399115515287, 39.033350390350186 ], [ 140.237434594941476, 39.024634608101337 ], [ 140.259280637787839, 39.029451224607278 ], [ 140.291250456587392, 39.024405245410577 ], [ 140.298177250660615, 39.015460100470968 ], [ 140.317891972253676, 39.016377551234001 ], [ 140.32188819960362, 39.027845685771965 ], [ 140.332278390713469, 39.031974214205633 ], [ 140.351726697149871, 39.022111618502983 ], [ 140.363715379199675, 39.022799706575263 ], [ 140.366113115609664, 39.01156093472806 ], [ 140.381565194696094, 38.992065106013527 ], [ 140.401812746602474, 38.988624665652139 ], [ 140.43538105634201, 38.988854028342899 ], [ 140.449501059645144, 38.973257365371275 ], [ 140.456427853718367, 38.953532173965982 ], [ 140.453230871838429, 38.942981490191059 ], [ 140.464953138731573, 38.917751594207552 ], [ 140.486266351264618, 38.91293497770161 ], [ 140.508911639580958, 38.892062972842524 ], [ 140.520101076160813, 38.897108952039225 ], [ 140.542213534163835, 38.896650226657705 ], [ 140.554468631370327, 38.878759936778486 ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1502, "NAME_1": "Yamaguchi", "VARNAME_1": "Yamaguti", "HASC_1": "JP.YC", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.15200100537939, 33.729796891925375 ], [ 132.149070438656082, 33.720393021604252 ], [ 132.134950435352948, 33.712824052809196 ], [ 132.133884774726312, 33.727732627708541 ], [ 132.15200100537939, 33.729796891925375 ] ] ], [ [ [ 131.968973792751967, 33.798835061843889 ], [ 131.99081983559833, 33.786908201924412 ], [ 131.991619081068336, 33.779339233129363 ], [ 131.961780583522085, 33.76832982397292 ], [ 131.952189637882213, 33.771311538952787 ], [ 131.951923222725554, 33.782550310799991 ], [ 131.968973792751967, 33.798835061843889 ] ] ], [ [ [ 132.209546679218562, 33.816954714413868 ], [ 132.242315743488092, 33.795165258791741 ], [ 132.257234992261232, 33.78209158541847 ], [ 132.215674227821808, 33.78163286003695 ], [ 132.191430448565484, 33.804110403731357 ], [ 132.174113463382412, 33.794477170719468 ], [ 132.17198214212911, 33.80433976642211 ], [ 132.190364787938847, 33.806862756020465 ], [ 132.209546679218562, 33.816954714413868 ] ] ], [ [ [ 132.076871931200458, 33.854111470316859 ], [ 132.084331555586999, 33.844478237304969 ], [ 132.10431269233672, 33.842184610397382 ], [ 132.114969298603228, 33.827505398188791 ], [ 132.090192689033586, 33.826129222044237 ], [ 132.075806270573793, 33.805945305257424 ], [ 132.059554946017357, 33.801816776823763 ], [ 132.057956455077374, 33.79057800497656 ], [ 132.049431170064167, 33.784385212326065 ], [ 132.035044751604374, 33.794935896100988 ], [ 132.058489285390721, 33.802963590277557 ], [ 132.060620606644022, 33.818789615939941 ], [ 132.078470422140413, 33.828193486261071 ], [ 132.080868158550402, 33.835303729674607 ], [ 132.067547400717245, 33.851359118027744 ], [ 132.076871931200458, 33.854111470316859 ] ] ], [ [ [ 132.349148221309918, 33.960306396138364 ], [ 132.354210109286527, 33.944709733166739 ], [ 132.336893124103426, 33.947232722765094 ], [ 132.349148221309918, 33.960306396138364 ] ] ], [ [ [ 132.247377631464701, 33.959388945375323 ], [ 132.251373858814645, 33.952737427343308 ], [ 132.27055575009436, 33.948608898909647 ], [ 132.282810847300851, 33.955719142323176 ], [ 132.288938395904097, 33.940351842042318 ], [ 132.301992738580594, 33.929342432885875 ], [ 132.30812028718384, 33.915351308749564 ], [ 132.317711232823711, 33.905947438428434 ], [ 132.331564820970186, 33.901360184613253 ], [ 132.35580860022651, 33.907782339954508 ], [ 132.367797282276314, 33.927278168669041 ], [ 132.392573891845984, 33.925213904452207 ], [ 132.404296158739129, 33.930259883648908 ], [ 132.402431252642515, 33.941498655496112 ], [ 132.424543710645509, 33.954342966178629 ], [ 132.443459186768592, 33.942416106259145 ], [ 132.435466732068704, 33.931865422484222 ], [ 132.417616916572285, 33.917874298347911 ], [ 132.37605615213289, 33.913975132605003 ], [ 132.363268224613051, 33.899984008468692 ], [ 132.363534639769711, 33.887139697786182 ], [ 132.370727848999621, 33.864891516782542 ], [ 132.344086333333337, 33.865350242164055 ], [ 132.326769348150236, 33.85869872413204 ], [ 132.328900669403538, 33.872689848268351 ], [ 132.337425954416744, 33.878194552846573 ], [ 132.321174629860309, 33.892873765055164 ], [ 132.291868962627404, 33.897002293488825 ], [ 132.272687071347661, 33.892185676982884 ], [ 132.268690843997717, 33.883469894734034 ], [ 132.242049328331433, 33.874066024412912 ], [ 132.237253855511511, 33.877047739392779 ], [ 132.21487498235183, 33.869708133288484 ], [ 132.189831957625529, 33.885992884332381 ], [ 132.175711954322367, 33.903195086139327 ], [ 132.177576860419009, 33.930718609030428 ], [ 132.191963278878831, 33.933241598628783 ], [ 132.183171578708937, 33.950443800435721 ], [ 132.193295354662126, 33.955260416941663 ], [ 132.203152715458657, 33.949296986981921 ], [ 132.233790458474886, 33.967416639551899 ], [ 132.247377631464701, 33.959388945375323 ] ] ], [ [ [ 131.865338296810108, 33.98026095023441 ], [ 131.869600939316712, 33.969022178387213 ], [ 131.858411502736885, 33.963746836499752 ], [ 131.86000999367684, 33.954342966178629 ], [ 131.834434138637221, 33.933012235938023 ], [ 131.827507344563969, 33.931177334411949 ], [ 131.804862056247629, 33.940810567423831 ], [ 131.807792622970936, 33.952508064652548 ], [ 131.824843192997349, 33.948150173528127 ], [ 131.83203640222726, 33.955031054250902 ], [ 131.848287726783695, 33.95801276923077 ], [ 131.846955651000371, 33.969710266459487 ], [ 131.865338296810108, 33.98026095023441 ] ] ], [ [ [ 131.590664270290659, 33.998609965495149 ], [ 131.582138985277453, 33.992417172844654 ], [ 131.56508841525104, 33.988976732483266 ], [ 131.568818227444325, 34.01305981501298 ], [ 131.586135212627397, 34.023151773406383 ], [ 131.600255215930531, 34.016041529992847 ], [ 131.590664270290659, 33.998609965495149 ] ] ], [ [ [ 132.416018425632302, 34.027968389912324 ], [ 132.424543710645509, 34.019023244972715 ], [ 132.420281068138905, 34.011224913486906 ], [ 132.405894649679112, 34.014894716539054 ], [ 132.40402974358247, 34.027509664530811 ], [ 132.416018425632302, 34.027968389912324 ] ] ], [ [ [ 131.711883166572278, 34.033243731799786 ], [ 131.71401448782558, 34.01260108963146 ], [ 131.710817505945641, 33.999986141639702 ], [ 131.73133147300868, 33.985995017503392 ], [ 131.719609206115507, 33.979572862162136 ], [ 131.704956372499055, 34.008013835816278 ], [ 131.70389071187239, 34.027050939149291 ], [ 131.711883166572278, 34.033243731799786 ] ] ], [ [ [ 131.743320155058512, 34.037372260233454 ], [ 131.752378270385037, 34.030950104892199 ], [ 131.739057512551909, 34.020399421117276 ], [ 131.729200151755379, 34.022234322643342 ], [ 131.727335245658736, 34.033014369109026 ], [ 131.743320155058512, 34.037372260233454 ] ] ], [ [ [ 132.228994985654964, 34.162604289387971 ], [ 132.248176876934679, 34.155264683283676 ], [ 132.236188194884846, 34.132787139589276 ], [ 132.219936870328411, 34.147466351797867 ], [ 132.203951960928634, 34.155952771355956 ], [ 132.228994985654964, 34.162604289387971 ] ] ], [ [ [ 130.868412780577586, 34.373388602195668 ], [ 130.880667877784077, 34.364214094565298 ], [ 130.880135047470731, 34.355268949625696 ], [ 130.858022589467708, 34.352975322718102 ], [ 130.8473659832012, 34.340819100107865 ], [ 130.838041452718016, 34.351599146573548 ], [ 130.855358437901089, 34.354580861553416 ], [ 130.870011271517541, 34.365131545328339 ], [ 130.868412780577586, 34.373388602195668 ] ] ], [ [ [ 131.248320793978849, 34.436922067535967 ], [ 131.261108721498687, 34.430041186813192 ], [ 131.257378909305402, 34.422013492636623 ], [ 131.223011354095888, 34.42384839416269 ], [ 131.207825690166089, 34.411233446170939 ], [ 131.203829462816145, 34.397701047416142 ], [ 131.188110968573028, 34.398847860869942 ], [ 131.171859644016592, 34.408251731191065 ], [ 131.173191719799917, 34.427747559905598 ], [ 131.185446817006408, 34.423619031471929 ], [ 131.211289087202715, 34.42522457030725 ], [ 131.238729848339005, 34.436233979463687 ], [ 131.248320793978849, 34.436922067535967 ] ] ], [ [ [ 131.413764606266511, 34.512382392795743 ], [ 131.418560079086433, 34.493115926771971 ], [ 131.406571397036601, 34.489446123719823 ], [ 131.403374415156662, 34.506877688217521 ], [ 131.413764606266511, 34.512382392795743 ] ] ], [ [ [ 131.283754009815027, 34.512611755486503 ], [ 131.291746464514915, 34.504584061309927 ], [ 131.27549513995848, 34.497244455205632 ], [ 131.270433251981871, 34.507107050908274 ], [ 131.283754009815027, 34.512611755486503 ] ] ], [ [ [ 131.684708820592675, 34.675459265925525 ], [ 131.699894484522446, 34.635550157733427 ], [ 131.697230332955826, 34.62339393512319 ], [ 131.702025805775747, 34.613531339420547 ], [ 131.719609206115507, 34.603210018336384 ], [ 131.726802415345418, 34.5688056147225 ], [ 131.705222787655714, 34.562154096690485 ], [ 131.704157127029077, 34.527520330385848 ], [ 131.684708820592675, 34.515593470466371 ], [ 131.6708552324462, 34.500914258257779 ], [ 131.680712593242731, 34.49265720139045 ], [ 131.683110329652692, 34.482335880306287 ], [ 131.702292220932435, 34.471785196531364 ], [ 131.696431087485848, 34.462840051591755 ], [ 131.696431087485848, 34.440821233278868 ], [ 131.701492975462429, 34.431646725648505 ], [ 131.723605433465451, 34.42545393299801 ], [ 131.74411940052849, 34.425912658379524 ], [ 131.76170280086825, 34.430729274885465 ], [ 131.796336771234422, 34.433252264483819 ], [ 131.796603186391081, 34.423160306090416 ], [ 131.78701224075121, 34.396554233962348 ], [ 131.769162425254819, 34.381645659062997 ], [ 131.771826576821439, 34.357333213842523 ], [ 131.780884692147964, 34.346323804686087 ], [ 131.777421295111367, 34.336461208983437 ], [ 131.797668847017746, 34.323846260991687 ], [ 131.801398659211031, 34.313983665289037 ], [ 131.814186586730841, 34.309167048783095 ], [ 131.821646211117411, 34.300221903843486 ], [ 131.836299044733863, 34.308020235329302 ], [ 131.857612257266879, 34.3029742561326 ], [ 131.87492924244998, 34.304350432277154 ], [ 131.902636418742929, 34.315818566815111 ], [ 131.922351140335962, 34.333479494003569 ], [ 131.932741331445811, 34.329580328260661 ], [ 131.957517941015482, 34.307102784566261 ], [ 131.974035680728576, 34.323387535610166 ], [ 131.977232662608515, 34.333250131312809 ], [ 132.002542102491503, 34.362608555729992 ], [ 132.01373153907133, 34.363296643802265 ], [ 132.014530784541336, 34.373847327577188 ], [ 131.999877950924883, 34.403893840066644 ], [ 131.992418326538314, 34.4114628088617 ], [ 131.999877950924883, 34.42476584492573 ], [ 132.01852701189128, 34.434399077937613 ], [ 132.024654560494525, 34.454812357415179 ], [ 132.043303621460922, 34.464904315808589 ], [ 132.057690039920715, 34.464674953117829 ], [ 132.065416079463944, 34.473390735366678 ], [ 132.080601743393743, 34.444949761712536 ], [ 132.079802497923737, 34.422701580708896 ], [ 132.072076458380508, 34.411233446170939 ], [ 132.073408534163832, 34.39196698014716 ], [ 132.079802497923737, 34.383709923279831 ], [ 132.072076458380508, 34.352975322718102 ], [ 132.084331555586999, 34.353892773481135 ], [ 132.1016485407701, 34.343112727015452 ], [ 132.103513446866742, 34.333250131312809 ], [ 132.130954208003004, 34.320864546011812 ], [ 132.126425150339742, 34.309396411473855 ], [ 132.12695798065306, 34.294258473883744 ], [ 132.140811568799535, 34.277973722839846 ], [ 132.137614586919597, 34.266734950992642 ], [ 132.14933685381277, 34.249762111876464 ], [ 132.152533835692708, 34.232789272760286 ], [ 132.187167806058881, 34.22476157858371 ], [ 132.209813094375221, 34.226367117419031 ], [ 132.217272718761791, 34.219486236696255 ], [ 132.234323288788232, 34.227513930872824 ], [ 132.247377631464701, 34.205495112559944 ], [ 132.234589703944891, 34.196320604929575 ], [ 132.23778668582483, 34.183476294247058 ], [ 132.249508952718003, 34.169714532801507 ], [ 132.246311970838036, 34.163980465532525 ], [ 132.227929325028299, 34.164668553604805 ], [ 132.211145170158545, 34.159622574408104 ], [ 132.223133852208377, 34.138291844167497 ], [ 132.220469700641758, 34.127053072320294 ], [ 132.203685545771975, 34.124988808103467 ], [ 132.203419130615316, 34.099988274810713 ], [ 132.210878755001886, 34.085079699911361 ], [ 132.209280264061903, 34.061455342763168 ], [ 132.221002530955076, 34.048152306699137 ], [ 132.216739888448473, 34.032785006418266 ], [ 132.219137624858433, 34.021316871880309 ], [ 132.213010076255188, 34.001591680475016 ], [ 132.186368560588903, 33.962141297664438 ], [ 132.166121008682524, 33.95824213192153 ], [ 132.128822886749703, 33.956177867704696 ], [ 132.125359489713105, 33.927507531359801 ], [ 132.132019868629669, 33.908011702645268 ], [ 132.127757226123066, 33.901360184613253 ], [ 132.131487038316351, 33.882781806661754 ], [ 132.148271193186105, 33.873607299031391 ], [ 132.157595723669317, 33.860762988348874 ], [ 132.158394969139295, 33.84585441344953 ], [ 132.137881002076256, 33.831633926622459 ], [ 132.123228168459804, 33.834615641602326 ], [ 132.112571562193267, 33.860762988348874 ], [ 132.120564016893155, 33.870166858670004 ], [ 132.115768544073234, 33.878194552846573 ], [ 132.102447786240077, 33.8814056305172 ], [ 132.076339100887111, 33.893791215818197 ], [ 132.075007025103815, 33.904341899593121 ], [ 132.058222870234033, 33.909846604171342 ], [ 132.052894567100793, 33.916498122203357 ], [ 132.025720221121162, 33.901360184613253 ], [ 132.00094361155152, 33.913975132605003 ], [ 131.968707377595308, 33.934617774773336 ], [ 131.957517941015482, 33.949526349672681 ], [ 131.931142840505856, 33.949526349672681 ], [ 131.915424346262739, 33.969939629150247 ], [ 131.880790375896567, 33.982095851760491 ], [ 131.868002448376728, 33.999986141639702 ], [ 131.857079426953561, 34.007325747743998 ], [ 131.839762441770461, 34.011454276177666 ], [ 131.818715644394103, 33.993105260916927 ], [ 131.796336771234422, 33.988059281720226 ], [ 131.820580550490746, 33.977279235254542 ], [ 131.806460547187612, 33.969251541077973 ], [ 131.800332998584366, 33.976820509873022 ], [ 131.78914356200454, 33.973609432202394 ], [ 131.783016013401266, 33.994022711679968 ], [ 131.80725979265759, 34.017417706137401 ], [ 131.817649983767467, 34.023839861478663 ], [ 131.81711715345412, 34.03553735870738 ], [ 131.785147334654596, 34.053198285895839 ], [ 131.752644685541696, 34.053198285895839 ], [ 131.748115627878434, 34.063060881598481 ], [ 131.716145809078881, 34.060079166618614 ], [ 131.700693729992452, 34.055262550112673 ], [ 131.698029578425803, 34.046546767863816 ], [ 131.681511838712709, 34.054345099349632 ], [ 131.659932211023033, 34.040124612522561 ], [ 131.63542201661005, 34.047005493245337 ], [ 131.624232580030196, 34.039436524450288 ], [ 131.617305785956972, 34.02590412569549 ], [ 131.60798125547376, 34.023151773406383 ], [ 131.598390309833889, 34.036684172161173 ], [ 131.581606154964135, 34.022004959952582 ], [ 131.563223509154398, 34.01260108963146 ], [ 131.562157848527733, 34.007325747743998 ], [ 131.538979729898074, 33.997463152041355 ], [ 131.508341986881845, 34.004344032764131 ], [ 131.515268780955068, 34.014435991157534 ], [ 131.501148777651935, 34.023381136097143 ], [ 131.484098207625522, 34.028427115293844 ], [ 131.475839337768974, 34.037372260233454 ], [ 131.46704763759908, 34.032555643727505 ], [ 131.473974431672332, 34.010536825414626 ], [ 131.452927634295946, 33.995398887824521 ], [ 131.433479327859573, 33.998151240113629 ], [ 131.426286118629662, 34.014435991157534 ], [ 131.394582714986768, 34.027739027221564 ], [ 131.402575169686656, 34.040812700594842 ], [ 131.387389505756886, 34.049299120152931 ], [ 131.380995541996981, 34.030950104892199 ], [ 131.379130635900339, 34.009619374651592 ], [ 131.365543462910523, 33.999986141639702 ], [ 131.362080065873897, 33.989435457864779 ], [ 131.347960062570792, 33.98140776368821 ], [ 131.350890629294071, 33.969022178387213 ], [ 131.337303456304255, 33.955260416941663 ], [ 131.318920810494518, 33.955489779632423 ], [ 131.305333637504702, 33.948379536218887 ], [ 131.286684576538306, 33.931406697102702 ], [ 131.268834761041887, 33.92269091485386 ], [ 131.23526645130238, 33.937370127062444 ], [ 131.223277769252547, 33.933700324010296 ], [ 131.209690596262732, 33.944251007785219 ], [ 131.188643798886375, 33.939893116660798 ], [ 131.177187947149861, 33.932324147865742 ], [ 131.158538886183464, 33.953425515415589 ], [ 131.160403792280107, 33.96764600224266 ], [ 131.167064171196671, 33.979114136780616 ], [ 131.14734944960361, 33.994710799752241 ], [ 131.145750958663655, 34.004573395454884 ], [ 131.121507179407331, 34.00342658200109 ], [ 131.103923779067571, 34.030032654129158 ], [ 131.091135851547762, 34.037372260233454 ], [ 131.048243011325013, 34.042418239430155 ], [ 131.040516971781813, 34.062143430835448 ], [ 131.030126780671935, 34.038977799068768 ], [ 131.015740362212142, 34.027968389912324 ], [ 131.021601495658729, 34.019940695735755 ], [ 131.005083755945634, 34.014894716539054 ], [ 130.996558470932428, 33.99035290862782 ], [ 130.956329782276327, 33.964893649953545 ], [ 130.934483739429965, 33.947691448146607 ], [ 130.924626378633434, 33.934847137464089 ], [ 130.927823360513401, 33.924067090998413 ], [ 130.923560718006797, 33.914433857986523 ], [ 130.902247505473753, 33.914204495295763 ], [ 130.895853541713848, 33.93553522553637 ], [ 130.913436942053607, 33.963976199190512 ], [ 130.916633923933546, 33.975673696419229 ], [ 130.908108638920339, 33.994022711679968 ], [ 130.916633923933546, 34.019481970354235 ], [ 130.903579581257077, 34.027280301840051 ], [ 130.915035432993591, 34.045629317100783 ], [ 130.911039205643647, 34.060996617381647 ], [ 130.88253278388072, 34.074070290754925 ], [ 130.880135047470731, 34.087373326818955 ], [ 130.862551647130999, 34.103887440553621 ], [ 130.867347119950921, 34.136686305332184 ], [ 130.879335802000753, 34.139668020312051 ], [ 130.891857314363904, 34.134392678424589 ], [ 130.903579581257077, 34.141732284528885 ], [ 130.899849769063792, 34.14861316525166 ], [ 130.913170526896948, 34.15732894750051 ], [ 130.928889021140037, 34.175219237379729 ], [ 130.93315166364664, 34.188063548062246 ], [ 130.928889021140037, 34.21260535597348 ], [ 130.916633923933546, 34.214898982881067 ], [ 130.922761472536791, 34.230036920471179 ], [ 130.921429396753496, 34.239899516173821 ], [ 130.900915429690457, 34.253202552237852 ], [ 130.897452032653831, 34.264441324085055 ], [ 130.867080704794262, 34.28921249468705 ], [ 130.884664105134021, 34.298616365008172 ], [ 130.886262596073976, 34.311919401072203 ], [ 130.896119956870507, 34.323387535610166 ], [ 130.89052523858058, 34.346553167376847 ], [ 130.906510147980356, 34.362149830348471 ], [ 130.921162981596837, 34.353663410790375 ], [ 130.948603742733098, 34.352745960027342 ], [ 130.972847521989422, 34.359626840750117 ], [ 131.001620358909008, 34.373617964886428 ], [ 131.02373281691203, 34.373388602195668 ], [ 131.034389423178567, 34.384627374042871 ], [ 131.016806022838807, 34.400912125086776 ], [ 130.994693564835785, 34.398618498179182 ], [ 130.966453558229517, 34.405040653520437 ], [ 130.952866385239702, 34.405270016211198 ], [ 130.955796951963009, 34.389443990548813 ], [ 130.935016569743283, 34.39219634283792 ], [ 130.956596197432987, 34.409857270026379 ], [ 130.960592424782931, 34.427288834524077 ], [ 130.971781861362786, 34.429353098740911 ], [ 130.97338035230274, 34.438986331752801 ], [ 131.002419604379014, 34.428894373359398 ], [ 131.004817340788975, 34.4153619746046 ], [ 131.019470174405427, 34.410774720789419 ], [ 131.049042256795019, 34.4114628088617 ], [ 131.071154714798041, 34.42453648223497 ], [ 131.100726797187605, 34.418573052275228 ], [ 131.114047555020761, 34.409627907335619 ], [ 131.131098125047174, 34.4114628088617 ], [ 131.139889825217068, 34.399306586251456 ], [ 131.137492088807107, 34.390132078621093 ], [ 131.156141149773504, 34.372012426051114 ], [ 131.16733058635333, 34.372241788741874 ], [ 131.187844553416369, 34.380728208299963 ], [ 131.196369838429604, 34.39242570552868 ], [ 131.209157765949413, 34.380498845609203 ], [ 131.222744938939229, 34.377975856010849 ], [ 131.226741166289173, 34.3928844309102 ], [ 131.250984945545497, 34.381875021753757 ], [ 131.274695894488474, 34.389902715930333 ], [ 131.293611370611558, 34.381416296372244 ], [ 131.307198543601345, 34.383251197898318 ], [ 131.325581189411082, 34.39265506821944 ], [ 131.33090949254435, 34.414215161150807 ], [ 131.349824968667406, 34.416050062676881 ], [ 131.355419686957333, 34.410086632717139 ], [ 131.397246866553417, 34.420637316492062 ], [ 131.41669517298979, 34.440591870588115 ], [ 131.396714036240098, 34.44770211400165 ], [ 131.399911018120036, 34.459858336611887 ], [ 131.41429743657983, 34.448848927455444 ], [ 131.462784995092477, 34.486923134121469 ], [ 131.454792540392589, 34.511694304723463 ], [ 131.45692386164589, 34.525914791550534 ], [ 131.464916316345779, 34.532795672273309 ], [ 131.498484626085315, 34.531648858819509 ], [ 131.505411420158538, 34.536006749943937 ], [ 131.515801611268387, 34.553438314441635 ], [ 131.533917841921465, 34.559401744401377 ], [ 131.55496463929785, 34.579815023878943 ], [ 131.550435581634588, 34.593576785324494 ], [ 131.55762879086447, 34.602521930264103 ], [ 131.556296715081146, 34.615824966328134 ], [ 131.580274079180811, 34.625687562030784 ], [ 131.597591064363911, 34.621559033597116 ], [ 131.602919367497179, 34.628210551629131 ], [ 131.593861252170626, 34.637843784641021 ], [ 131.598656724990548, 34.656880887974033 ], [ 131.605050688750453, 34.662156229861495 ], [ 131.62556465581352, 34.666055395604403 ], [ 131.641815980369955, 34.660091965644661 ], [ 131.64554579256324, 34.652522996849605 ], [ 131.671388062759519, 34.660780053716934 ], [ 131.668723911192899, 34.676376716688566 ], [ 131.684708820592675, 34.675459265925525 ] ] ], [ [ [ 131.136160013023783, 34.791975512831193 ], [ 131.144152467723671, 34.781424829056277 ], [ 131.161469452906744, 34.774314585642742 ], [ 131.160670207436766, 34.763305176486298 ], [ 131.142820391940347, 34.757341746526556 ], [ 131.130565294733856, 34.76858051837376 ], [ 131.128167558323895, 34.794727865120308 ], [ 131.136160013023783, 34.791975512831193 ] ] ] ] } }, -{ "type": "Feature", "properties": { "ISO": "JPN", "NAME_0": "Japan", "ID_1": 1503, "NAME_1": "Yamanashi", "VARNAME_1": "Yamanasi", "HASC_1": "JP.YN", "TYPE_1": "Ken", "ENGTYPE_1": "Prefecture" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.731656129482815, 35.905990101848595 ], [ 138.791333124575317, 35.89062280156773 ], [ 138.797993503491881, 35.870209522090164 ], [ 138.834758795111355, 35.859658838315241 ], [ 138.856871253114377, 35.862181827913588 ], [ 138.892038053793868, 35.839933646909948 ], [ 138.912552020856907, 35.847961341086517 ], [ 138.933598818233293, 35.846585164941963 ], [ 138.946919576066421, 35.851860506829425 ], [ 138.956244106549633, 35.833282128877926 ], [ 138.973028261419387, 35.821355268958456 ], [ 138.973827506889393, 35.800941989480883 ], [ 138.985816188939225, 35.783281062292424 ], [ 138.993542228482454, 35.758051166308917 ], [ 139.010326383352208, 35.742913228718805 ], [ 139.026844123065302, 35.717912695426058 ], [ 139.074532436107972, 35.693370887514824 ], [ 139.105969424594178, 35.688324908318123 ], [ 139.13341018573044, 35.669975893057384 ], [ 139.124884900717234, 35.658278395828667 ], [ 139.129413958380525, 35.619745463781122 ], [ 139.137406413080384, 35.61355267113062 ], [ 139.133143770573781, 35.593139391653054 ], [ 139.124884900717234, 35.585111697476485 ], [ 139.132344525103804, 35.561716703019044 ], [ 139.115027539920732, 35.54657876542894 ], [ 139.115293955077391, 35.532817003983389 ], [ 139.09051734550772, 35.511256911052023 ], [ 139.069736963288022, 35.506210931855321 ], [ 139.054284884201593, 35.507357745309122 ], [ 139.030840350415247, 35.480292947799533 ], [ 139.011392043978844, 35.471347802859924 ], [ 138.999669777085671, 35.470889077478404 ], [ 138.958641842959594, 35.457127316032853 ], [ 138.940259197149857, 35.445659181494896 ], [ 138.929602590883349, 35.427539528924918 ], [ 138.933332403076633, 35.417447570531515 ], [ 138.922409381653438, 35.408731788282665 ], [ 138.919478814930159, 35.398639829889262 ], [ 138.885910505190623, 35.382584441536117 ], [ 138.873655407984131, 35.380520177319283 ], [ 138.865662953284243, 35.386942332660539 ], [ 138.850477289354473, 35.385566156515985 ], [ 138.83129539807473, 35.374327384668788 ], [ 138.772417648452233, 35.37019885623512 ], [ 138.733254620422798, 35.361253711295511 ], [ 138.709810086636452, 35.360106897841717 ], [ 138.689296119573413, 35.354831555954256 ], [ 138.681570080030184, 35.362629887440065 ], [ 138.67490970111362, 35.386942332660539 ], [ 138.666650831257073, 35.394970026837115 ], [ 138.64214063684409, 35.394970026837115 ], [ 138.61443346055114, 35.390153410331166 ], [ 138.600846287561325, 35.428456979687951 ], [ 138.585127793318236, 35.442448103824262 ], [ 138.566212317195152, 35.431209331977065 ], [ 138.535041743865605, 35.404832622539757 ], [ 138.538238725745543, 35.383731254989911 ], [ 138.53131193167232, 35.375932923504102 ], [ 138.533443252925622, 35.343822146797812 ], [ 138.537972310588884, 35.333271463022889 ], [ 138.515593437429203, 35.308041567039382 ], [ 138.523585892129091, 35.277995054549926 ], [ 138.518257588995851, 35.258499225835394 ], [ 138.524385137599097, 35.250012806277304 ], [ 138.535308159022264, 35.220654381860129 ], [ 138.536107404492242, 35.197259387402688 ], [ 138.525717213382393, 35.195653848567375 ], [ 138.499342112872768, 35.171341403346901 ], [ 138.437000966213645, 35.176387382543602 ], [ 138.423680208380517, 35.192672133587507 ], [ 138.413556432427328, 35.198864926238002 ], [ 138.401834165534154, 35.197030024711928 ], [ 138.393841710834266, 35.217443304189501 ], [ 138.391976804737624, 35.23418678061492 ], [ 138.375459065024529, 35.261710303506021 ], [ 138.370663592204608, 35.282811671055867 ], [ 138.373860574084546, 35.300243235553566 ], [ 138.366667364854663, 35.308729655111655 ], [ 138.346419812948284, 35.314922447762157 ], [ 138.328303582295206, 35.32409695539252 ], [ 138.29739942412229, 35.309188380493175 ], [ 138.28940696942243, 35.3023074997704 ], [ 138.259834887032838, 35.314922447762157 ], [ 138.255039414212888, 35.323638230011007 ], [ 138.257703565779536, 35.344739597560846 ], [ 138.249977526236307, 35.364006063584625 ], [ 138.23905450481314, 35.366987778564493 ], [ 138.238521674499793, 35.377538462339416 ], [ 138.249711111079648, 35.396804928363188 ], [ 138.258236396092855, 35.40253899563217 ], [ 138.262232623442799, 35.427768891615678 ], [ 138.250243941392966, 35.44611790687641 ], [ 138.249977526236307, 35.460567756394241 ], [ 138.258236396092855, 35.467219274426256 ], [ 138.263298284069464, 35.500018139204826 ], [ 138.269425832672709, 35.509422009525949 ], [ 138.260900547659475, 35.530752739766555 ], [ 138.260634132502815, 35.550707293862601 ], [ 138.250510356549626, 35.557129449203863 ], [ 138.242517901849737, 35.583276795950411 ], [ 138.245448468573045, 35.593139391653054 ], [ 138.232127710739888, 35.622039090688716 ], [ 138.233459786523213, 35.632131049082119 ], [ 138.22173751963004, 35.641305556712489 ], [ 138.195628834277073, 35.675480597635605 ], [ 138.195628834277073, 35.695664514422418 ], [ 138.184705812853906, 35.71447225506467 ], [ 138.232660541053207, 35.750023472132341 ], [ 138.235324692619855, 35.760344793216504 ], [ 138.191899022083788, 35.784886601127738 ], [ 138.190833361457152, 35.795896010284181 ], [ 138.206551855700269, 35.810804585183533 ], [ 138.207084686013587, 35.822043357030729 ], [ 138.215343555870135, 35.833282128877926 ], [ 138.240120165439777, 35.877090402812939 ], [ 138.249977526236307, 35.882136382009634 ], [ 138.286742817855782, 35.856447760644606 ], [ 138.329902073235189, 35.901632210724173 ], [ 138.345886982634937, 35.923651029037053 ], [ 138.353879437334825, 35.943146857751586 ], [ 138.362937552661379, 35.947734111566767 ], [ 138.364536043601362, 35.95805543265093 ], [ 138.376258310494507, 35.968376753735093 ], [ 138.429807756983763, 35.954614992289542 ], [ 138.456715687806707, 35.936724702410324 ], [ 138.4481904027935, 35.916770148314278 ], [ 138.454051536240087, 35.904843288394801 ], [ 138.472700597206483, 35.894751330001398 ], [ 138.497210791619466, 35.898421133053539 ], [ 138.508400228199321, 35.915393972169724 ], [ 138.536906649962248, 35.912182894499097 ], [ 138.569675714231778, 35.91310034526213 ], [ 138.579799490184968, 35.908283728756189 ], [ 138.597649305681387, 35.914247158715924 ], [ 138.61203572414118, 35.899797309198092 ], [ 138.608039496791235, 35.89039343887697 ], [ 138.613900630237822, 35.870438884780917 ], [ 138.636279503397503, 35.867227807110289 ], [ 138.658658376557185, 35.872503148997751 ], [ 138.674110455643643, 35.86768653249181 ], [ 138.686631968006793, 35.885118096989508 ], [ 138.711142162419776, 35.906678189920868 ], [ 138.731656129482815, 35.905990101848595 ] ] ] } } -] -} diff --git a/GlobalQuakeCore/src/main/resources/polygons_converted/new-zealand-districts.geojson b/GlobalQuakeCore/src/main/resources/polygons_converted/new-zealand-districts.geojson deleted file mode 100644 index 64c0718..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons_converted/new-zealand-districts.geojson +++ /dev/null @@ -1,41311 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2125, - "NAME_1": "Auckland", - "ID_2": 25170, - "NAME_2": "Auckland", - "VARNAME_2": "", - "HASC_2": "NZ.AU.AL", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 175.18815078217162, - -36.83650936728058 - ], - [ - 175.20498088031968, - -36.83877203649678 - ], - [ - 175.19595009594755, - -36.86463111325338 - ], - [ - 175.20703333131337, - -36.87626769779385 - ], - [ - 175.19471862535136, - -36.90180353609099 - ], - [ - 175.17624656640834, - -36.89533876690184 - ], - [ - 175.16105842905517, - -36.86527759017229 - ], - [ - 175.17296264481845, - -36.844267090307554 - ], - [ - 175.18815078217162, - -36.83650936728058 - ] - ] - ], - [ - [ - [ - 175.17296264481845, - -36.73921459098388 - ], - [ - 175.16967872322857, - -36.748588506308145 - ], - [ - 175.20374940972349, - -36.764103952362106 - ], - [ - 175.1877402919729, - -36.773477867686374 - ], - [ - 175.16721578203618, - -36.778003206118775 - ], - [ - 175.15490107607417, - -36.788993313740335 - ], - [ - 175.16803676243364, - -36.80547847517266 - ], - [ - 175.16516333104252, - -36.82487278274011 - ], - [ - 175.13601852693242, - -36.84491356722647 - ], - [ - 175.1126205856046, - -36.84782271336159 - ], - [ - 175.11179960520712, - -36.830367836550884 - ], - [ - 175.09496950705903, - -36.83618612882112 - ], - [ - 175.06377225195527, - -36.83295374422654 - ], - [ - 175.06623519314766, - -36.818731252010416 - ], - [ - 175.04530019301225, - -36.820993921226616 - ], - [ - 175.0338064674477, - -36.814205913578014 - ], - [ - 175.02723862426797, - -36.79739751368622 - ], - [ - 175.00548264373506, - -36.800953136740254 - ], - [ - 174.9816742122085, - -36.7877003599025 - ], - [ - 174.9890630357857, - -36.770891960010715 - ], - [ - 175.01122950651734, - -36.77056872155126 - ], - [ - 175.01287146731227, - -36.78285178301064 - ], - [ - 175.05515195778185, - -36.768952529253966 - ], - [ - 175.0728030363274, - -36.78640740606467 - ], - [ - 175.1007163698413, - -36.785437690686294 - ], - [ - 175.10605274242485, - -36.76345747544319 - ], - [ - 175.1310926445476, - -36.76701309849722 - ], - [ - 175.14874372309316, - -36.762487760064815 - ], - [ - 175.15079617408682, - -36.75182089090272 - ], - [ - 175.17296264481845, - -36.73921459098388 - ] - ] - ], - [ - [ - [ - 174.9159957804111, - -36.72887096028124 - ], - [ - 174.93528881975158, - -36.74083078328117 - ], - [ - 174.93816225114273, - -36.766689860037765 - ], - [ - 174.92872097657184, - -36.78414473684847 - ], - [ - 174.87987264292252, - -36.80644819055104 - ], - [ - 174.84703342702383, - -36.80903409822669 - ], - [ - 174.82650891708712, - -36.78382149838901 - ], - [ - 174.83759215245294, - -36.76862929079451 - ], - [ - 174.86961038795417, - -36.76313423698373 - ], - [ - 174.89259783908327, - -36.76959900617288 - ], - [ - 174.89382930967946, - -36.75893213701079 - ], - [ - 174.91558529021236, - -36.7443864063352 - ], - [ - 174.9159957804111, - -36.72887096028124 - ] - ] - ], - [ - [ - [ - 175.09373803646284, - -36.16902194850091 - ], - [ - 175.10851568361724, - -36.17484024077115 - ], - [ - 175.11179960520712, - -36.214275332824954 - ], - [ - 175.10030587964258, - -36.232053448095115 - ], - [ - 175.07731842851348, - -36.23043725579783 - ], - [ - 175.0567939185768, - -36.220740102014105 - ], - [ - 175.0485841146021, - -36.204578179041235 - ], - [ - 175.05350999698692, - -36.18550710993324 - ], - [ - 175.09373803646284, - -36.16902194850091 - ] - ] - ], - [ - [ - [ - 175.33921117530565, - -36.164173371609046 - ], - [ - 175.3412636262993, - -36.17451700231169 - ], - [ - 175.33100137133096, - -36.19067892528456 - ], - [ - 175.31293980258667, - -36.1813050099603 - ], - [ - 175.33921117530565, - -36.164173371609046 - ] - ] - ], - [ - [ - [ - 175.41063646988533, - -36.0300294109342 - ], - [ - 175.40242666591064, - -36.04263571085304 - ], - [ - 175.41433088167392, - -36.063969449177236 - ], - [ - 175.40488960710306, - -36.080454610609564 - ], - [ - 175.4225406856486, - -36.085303187501424 - ], - [ - 175.42705607783466, - -36.10631368736616 - ], - [ - 175.4237721562448, - -36.12441504109578 - ], - [ - 175.42869803862962, - -36.13960724869028 - ], - [ - 175.44881205836757, - -36.15253678706858 - ], - [ - 175.4734414702916, - -36.159324794717186 - ], - [ - 175.4964289214207, - -36.179688817663006 - ], - [ - 175.48124078406752, - -36.207487325176345 - ], - [ - 175.48904009784349, - -36.21492180974387 - ], - [ - 175.47262048989413, - -36.23043725579783 - ], - [ - 175.47631490168274, - -36.24627594031124 - ], - [ - 175.4906820586384, - -36.26437729404086 - ], - [ - 175.50956460778016, - -36.264054055581404 - ], - [ - 175.5366569608966, - -36.29185256309475 - ], - [ - 175.55020313745482, - -36.31189334758111 - ], - [ - 175.52967862751814, - -36.3461566242836 - ], - [ - 175.52023735294725, - -36.34874253195926 - ], - [ - 175.49150303903588, - -36.33742918587825 - ], - [ - 175.47631490168274, - -36.32482288595941 - ], - [ - 175.4906820586384, - -36.318358116770256 - ], - [ - 175.48411421545867, - -36.30187295533793 - ], - [ - 175.46851558790678, - -36.302519432256844 - ], - [ - 175.45579039174604, - -36.31221658604057 - ], - [ - 175.43403441121313, - -36.30348914763522 - ], - [ - 175.43403441121313, - -36.2724582555273 - ], - [ - 175.39791127372456, - -36.26276110174358 - ], - [ - 175.40037421491698, - -36.25435690179768 - ], - [ - 175.37205039120434, - -36.25144775566257 - ], - [ - 175.34947343027397, - -36.22882106350054 - ], - [ - 175.3227915673563, - -36.22041686355465 - ], - [ - 175.30924539079808, - -36.20425494058178 - ], - [ - 175.3121188221892, - -36.19164864066293 - ], - [ - 175.33182235172842, - -36.19520426371697 - ], - [ - 175.3326433321259, - -36.2078105636358 - ], - [ - 175.35480980285752, - -36.20231550982503 - ], - [ - 175.34824195967778, - -36.184537394554866 - ], - [ - 175.36466156762714, - -36.18615358685216 - ], - [ - 175.34783146947905, - -36.15189031014967 - ], - [ - 175.3264859791449, - -36.13863753331191 - ], - [ - 175.35357833226132, - -36.13055657182547 - ], - [ - 175.3605566656398, - -36.11407141039314 - ], - [ - 175.34208460669677, - -36.095970056663525 - ], - [ - 175.34742097928032, - -36.0840102336636 - ], - [ - 175.34044264590185, - -36.06978774144747 - ], - [ - 175.3654825480246, - -36.06558564147452 - ], - [ - 175.36917695981322, - -36.05685820306917 - ], - [ - 175.4007847051157, - -36.04813076466382 - ], - [ - 175.39873225412205, - -36.04004980317738 - ], - [ - 175.41063646988533, - -36.0300294109342 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2125, - "NAME_1": "Auckland", - "ID_2": 25171, - "NAME_2": "Franklin", - "VARNAME_2": "", - "HASC_2": "NZ.WK.FK", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.0424267616211, - -37.06633191195483 - ], - [ - 175.02313372228062, - -37.08281707338717 - ], - [ - 175.02395470267808, - -37.10447405017082 - ], - [ - 175.0108190163186, - -37.10835291168431 - ], - [ - 175.01492391830595, - -37.12354511927881 - ], - [ - 174.9923469573756, - -37.135504942278736 - ], - [ - 174.96894901604776, - -37.13712113457602 - ], - [ - 174.9586867610794, - -37.12386835773827 - ], - [ - 174.94555107471993, - -37.1274239807923 - ], - [ - 174.93939372173892, - -37.140353519170596 - ], - [ - 174.95293989829713, - -37.147141526819205 - ], - [ - 174.99480989856798, - -37.20015263417023 - ], - [ - 174.99891480055533, - -37.21534484176473 - ], - [ - 174.96976999644522, - -37.240234203142954 - ], - [ - 174.92297411378956, - -37.23215324165652 - ], - [ - 174.93693078054653, - -37.24993135692668 - ], - [ - 174.9209216627959, - -37.25995174916986 - ], - [ - 174.9184587216035, - -37.2877502566832 - ], - [ - 174.90491254504528, - -37.280962249034594 - ], - [ - 174.8646845055694, - -37.27094185679141 - ], - [ - 174.85154881920988, - -37.2748207183049 - ], - [ - 174.84539146622888, - -37.287427018223745 - ], - [ - 174.8490858780175, - -37.30261922581825 - ], - [ - 174.82281450529854, - -37.310376948845224 - ], - [ - 174.8080368581441, - -37.32233677184515 - ], - [ - 174.7821759756239, - -37.32718534873701 - ], - [ - 174.7591885244948, - -37.34270079479097 - ], - [ - 174.7460528381353, - -37.33494307176399 - ], - [ - 174.7435898969429, - -37.369206348466484 - ], - [ - 174.7193709752176, - -37.380196456088036 - ], - [ - 174.70746675945432, - -37.36306481773679 - ], - [ - 174.68694224951764, - -37.35013527935849 - ], - [ - 174.65779744540754, - -37.289689687439946 - ], - [ - 174.60812813136076, - -37.199182918791855 - ], - [ - 174.59622391559748, - -37.17494003433254 - ], - [ - 174.53793430737727, - -37.07538258881964 - ], - [ - 174.54162871916589, - -37.04790731976576 - ], - [ - 174.56338469969876, - -37.04241226595499 - ], - [ - 174.60279175877722, - -37.04887703514413 - ], - [ - 174.62618970010504, - -37.036270735225294 - ], - [ - 174.65574499441388, - -37.04241226595499 - ], - [ - 174.66641773958096, - -37.05566504279274 - ], - [ - 174.66231283759362, - -37.0711804888467 - ], - [ - 174.64917715123414, - -37.08475650414391 - ], - [ - 174.65984989640123, - -37.0993022348195 - ], - [ - 174.6766799945493, - -37.14423238068409 - ], - [ - 174.69761499468473, - -37.15069714987324 - ], - [ - 174.6889947005113, - -37.16459640362991 - ], - [ - 174.69433107309484, - -37.18431394965681 - ], - [ - 174.71403460263406, - -37.201768826467514 - ], - [ - 174.72060244581382, - -37.1881928111703 - ], - [ - 174.71485558303155, - -37.16685907284611 - ], - [ - 174.69063666130626, - -37.13679789611656 - ], - [ - 174.7288122497885, - -37.13065636538687 - ], - [ - 174.75508362250744, - -37.11255501165725 - ], - [ - 174.77068225005934, - -37.09154451179252 - ], - [ - 174.823635485696, - -37.08217059646825 - ], - [ - 174.85565372119723, - -37.05501856587382 - ], - [ - 174.87248381934532, - -37.06988753500887 - ], - [ - 174.89588176067315, - -37.061160096603516 - ], - [ - 174.8577061721909, - -37.051462942819796 - ], - [ - 174.84826489762003, - -37.033684827549635 - ], - [ - 174.83266627006813, - -37.01752290457676 - ], - [ - 174.81501519152258, - -37.00976518154978 - ], - [ - 174.81049979933653, - -36.99845183546877 - ], - [ - 174.8445704858314, - -36.988754681685045 - ], - [ - 174.86427401537065, - -36.993603258576904 - ], - [ - 174.8905453880896, - -36.986168774009386 - ], - [ - 174.91681676080856, - -36.9890779201445 - ], - [ - 174.94103568253385, - -37.00944194309032 - ], - [ - 174.96032872187436, - -37.00362365082009 - ], - [ - 174.98454764359965, - -37.02366443530645 - ], - [ - 175.00753509472872, - -37.022371481468625 - ], - [ - 175.0424267616211, - -37.06633191195483 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2125, - "NAME_1": "Auckland", - "ID_2": 25172, - "NAME_2": "Manukau", - "VARNAME_2": "", - "HASC_2": "NZ.AU.MK", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.08881215407803, - -36.90891478219905 - ], - [ - 175.08799117368056, - -36.909561259117964 - ], - [ - 175.0810128403021, - -36.91958165136115 - ], - [ - 175.09127509527042, - -36.94253158198263 - ], - [ - 175.1126205856046, - -36.94479425119883 - ], - [ - 175.14094440931723, - -36.929925282063785 - ], - [ - 175.1565430368691, - -36.94996606655015 - ], - [ - 175.16844725263238, - -36.94673368195558 - ], - [ - 175.1918451939602, - -36.929602043604326 - ], - [ - 175.2053913705184, - -36.941238628144795 - ], - [ - 175.25054529237914, - -36.95740055111767 - ], - [ - 175.25177676297534, - -36.96709770490139 - ], - [ - 175.2878999004639, - -36.995219450874195 - ], - [ - 175.2850264690728, - -37.002330696982256 - ], - [ - 175.27353274350824, - -37.02431091222537 - ], - [ - 175.21647460588423, - -37.03109891987397 - ], - [ - 175.20703333131337, - -37.03950311981987 - ], - [ - 175.1832248997868, - -37.0301292044956 - ], - [ - 175.17296264481845, - -37.01687642765785 - ], - [ - 175.15325911527924, - -37.02269471992808 - ], - [ - 175.16064793885644, - -37.04241226595499 - ], - [ - 175.15161715448428, - -37.061483335062974 - ], - [ - 175.12780872295775, - -37.052109419738706 - ], - [ - 175.09168558546915, - -37.05728123509003 - ], - [ - 175.0777289187122, - -37.03982635827933 - ], - [ - 175.058025389173, - -37.04564465054956 - ], - [ - 175.0424267616211, - -37.06633191195483 - ], - [ - 175.00753509472872, - -37.022371481468625 - ], - [ - 174.98454764359965, - -37.02366443530645 - ], - [ - 174.96032872187436, - -37.00362365082009 - ], - [ - 174.94103568253385, - -37.00944194309032 - ], - [ - 174.91681676080856, - -36.9890779201445 - ], - [ - 174.8905453880896, - -36.986168774009386 - ], - [ - 174.86427401537065, - -36.993603258576904 - ], - [ - 174.8445704858314, - -36.988754681685045 - ], - [ - 174.81049979933653, - -36.99845183546877 - ], - [ - 174.80598440715045, - -37.01655318919839 - ], - [ - 174.7739661716492, - -37.010734896928156 - ], - [ - 174.74153744594923, - -36.99198706627962 - ], - [ - 174.7472843087315, - -36.98067372019861 - ], - [ - 174.77478715204668, - -36.96871389719868 - ], - [ - 174.75549411270617, - -36.948026635793404 - ], - [ - 174.75713607350113, - -36.94026891276643 - ], - [ - 174.78463891681628, - -36.93929919738805 - ], - [ - 174.81953058370866, - -36.94705692041503 - ], - [ - 174.83307676026686, - -36.943501297360996 - ], - [ - 174.84333901523522, - -36.956754074198756 - ], - [ - 174.86181107417823, - -36.92378375133409 - ], - [ - 174.8589376427871, - -36.90891478219905 - ], - [ - 174.8757677409352, - -36.90438944376665 - ], - [ - 174.8769992115314, - -36.897924674577496 - ], - [ - 174.9061440156415, - -36.873681790118184 - ], - [ - 174.9270790157769, - -36.87917684392896 - ], - [ - 174.95170842770094, - -36.89469228998292 - ], - [ - 174.95581332968828, - -36.913763359090915 - ], - [ - 174.98618960439458, - -36.89921762841533 - ], - [ - 174.98331617300343, - -36.88273246698299 - ], - [ - 175.00055676135025, - -36.87626769779385 - ], - [ - 175.01574489870342, - -36.88046979776679 - ], - [ - 175.0338064674477, - -36.87626769779385 - ], - [ - 175.0567939185768, - -36.88305570544245 - ], - [ - 175.06459323235273, - -36.9001873437937 - ], - [ - 175.08881215407803, - -36.90891478219905 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25229, - "NAME_2": "Hamilton", - "VARNAME_2": "", - "HASC_2": "NZ.WK.HM", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.3240230379525, - -37.82982115319337 - ], - [ - 175.31170833199047, - -37.84436688386896 - ], - [ - 175.30062509662466, - -37.8311141070312 - ], - [ - 175.27024882191836, - -37.82400286092314 - ], - [ - 175.26573342973228, - -37.80913389178809 - ], - [ - 175.23535715502598, - -37.802022645680026 - ], - [ - 175.22386342946146, - -37.77842623813964 - ], - [ - 175.20580186071714, - -37.756446022896526 - ], - [ - 175.18856127237035, - -37.745455915274974 - ], - [ - 175.20826480190956, - -37.73963762300474 - ], - [ - 175.2209899980703, - -37.725091892329154 - ], - [ - 175.26039705714877, - -37.71313206932923 - ], - [ - 175.29077333185506, - -37.72024331543729 - ], - [ - 175.29241529265, - -37.75224392292358 - ], - [ - 175.3133502927854, - -37.767759368977536 - ], - [ - 175.31129784179174, - -37.78489100732878 - ], - [ - 175.33880068510692, - -37.79814378416654 - ], - [ - 175.3264859791449, - -37.81268951484213 - ], - [ - 175.3240230379525, - -37.82982115319337 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25230, - "NAME_2": "Hauraki", - "VARNAME_2": "", - "HASC_2": "NZ.WK.HK", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.54240382367888, - -37.16782878822448 - ], - [ - 175.56251784341683, - -37.18075832660278 - ], - [ - 175.55677098063455, - -37.20306178030535 - ], - [ - 175.57524303957757, - -37.23700181854838 - ], - [ - 175.61136617706615, - -37.23247648011598 - ], - [ - 175.60890323587375, - -37.24960811846722 - ], - [ - 175.5974095103092, - -37.27546719522382 - ], - [ - 175.6109556868674, - -37.28257844133188 - ], - [ - 175.62368088302816, - -37.278699579818394 - ], - [ - 175.6437949027661, - -37.28387139516971 - ], - [ - 175.65118372634333, - -37.29292207203452 - ], - [ - 175.67047676568382, - -37.287427018223745 - ], - [ - 175.68443343244076, - -37.294538264331806 - ], - [ - 175.71686215814074, - -37.285164349007545 - ], - [ - 175.73040833469895, - -37.29259883357506 - ], - [ - 175.7628370603989, - -37.28354815671025 - ], - [ - 175.779667158547, - -37.28419463362917 - ], - [ - 175.82605255100393, - -37.27223481062924 - ], - [ - 175.8354938255748, - -37.25413345689962 - ], - [ - 175.8621756884925, - -37.24799192616993 - ], - [ - 175.8572498061077, - -37.23538562625109 - ], - [ - 175.86792255127477, - -37.22762790322411 - ], - [ - 175.8851631396216, - -37.23021381089977 - ], - [ - 175.89542539458992, - -37.24120391852132 - ], - [ - 175.8925519631988, - -37.25251726460234 - ], - [ - 175.9011722573722, - -37.278376341358936 - ], - [ - 175.92580166929622, - -37.31975086416949 - ], - [ - 175.94509470863673, - -37.34560994092609 - ], - [ - 175.94016882625192, - -37.37502464073672 - ], - [ - 175.92498068889876, - -37.384721794520445 - ], - [ - 175.9167708849241, - -37.403469625168974 - ], - [ - 175.90404568876335, - -37.40702524822301 - ], - [ - 175.90979255154562, - -37.432884324979604 - ], - [ - 175.8974778455836, - -37.44710681719573 - ], - [ - 175.86176519829377, - -37.46262226324969 - ], - [ - 175.87243794346085, - -37.475875040087445 - ], - [ - 175.88557362982033, - -37.47231941703342 - ], - [ - 175.90363519856461, - -37.493976393817064 - ], - [ - 175.90076176717346, - -37.500441163006215 - ], - [ - 175.87366941405705, - -37.49720877841164 - ], - [ - 175.86053372769757, - -37.50108763992513 - ], - [ - 175.84329313935075, - -37.48977429384412 - ], - [ - 175.8354938255748, - -37.47037998627667 - ], - [ - 175.8162007862343, - -37.486865147709 - ], - [ - 175.81045392345203, - -37.49947144762784 - ], - [ - 175.81455882543938, - -37.51466365522234 - ], - [ - 175.83631480597228, - -37.5408459704384 - ], - [ - 175.81455882543938, - -37.563795901059876 - ], - [ - 175.79690774689382, - -37.552482554978866 - ], - [ - 175.76530000159133, - -37.52371433208715 - ], - [ - 175.75011186423816, - -37.4952693476549 - ], - [ - 175.75832166821286, - -37.46553140938481 - ], - [ - 175.70495794237746, - -37.459713117114575 - ], - [ - 175.69182225601799, - -37.46359197862806 - ], - [ - 175.67088725588255, - -37.44775329411465 - ], - [ - 175.64502637336233, - -37.455511017141625 - ], - [ - 175.64051098117625, - -37.44031880954712 - ], - [ - 175.61629205945096, - -37.42027802506076 - ], - [ - 175.52721568632572, - -37.4199547866013 - ], - [ - 175.5173639215561, - -37.42803574808774 - ], - [ - 175.49437647042703, - -37.42965194038503 - ], - [ - 175.43608686220682, - -37.44775329411465 - ], - [ - 175.3921644109423, - -37.43385404035797 - ], - [ - 175.40119519531444, - -37.414459732790526 - ], - [ - 175.37697627358915, - -37.38407531760153 - ], - [ - 175.38641754816004, - -37.37567111765563 - ], - [ - 175.3593251950436, - -37.35142823319632 - ], - [ - 175.34495803808792, - -37.32330648722352 - ], - [ - 175.31458176338163, - -37.25316374152125 - ], - [ - 175.3240230379525, - -37.244759541575355 - ], - [ - 175.31499225358036, - -37.21243569562961 - ], - [ - 175.33428529292084, - -37.19627377265674 - ], - [ - 175.34331607729297, - -37.204031495683715 - ], - [ - 175.36958745001195, - -37.21243569562961 - ], - [ - 175.41679382286634, - -37.20984978795395 - ], - [ - 175.4237721562448, - -37.204031495683715 - ], - [ - 175.46810509770805, - -37.19174843422434 - ], - [ - 175.4783673526764, - -37.18463718811627 - ], - [ - 175.51284852937005, - -37.176232988170376 - ], - [ - 175.51900588235105, - -37.16653583438665 - ], - [ - 175.54240382367888, - -37.16782878822448 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25231, - "NAME_2": "Matamata-Piako", - "VARNAME_2": "", - "HASC_2": "NZ.WK.MP", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.81455882543938, - -37.563795901059876 - ], - [ - 175.8223581392153, - -37.58319020862733 - ], - [ - 175.8441141197482, - -37.609372523843376 - ], - [ - 175.83959872756213, - -37.643312562086415 - ], - [ - 175.9048666691608, - -37.72153626927512 - ], - [ - 175.90568764955827, - -37.732203138437214 - ], - [ - 175.92867510068737, - -37.77907271505855 - ], - [ - 175.92087578691144, - -37.80848741486918 - ], - [ - 175.9093820613469, - -37.833700014706864 - ], - [ - 175.9303170614823, - -37.84921546076082 - ], - [ - 175.93483245366838, - -37.86408442989586 - ], - [ - 175.94961010082278, - -37.88121606824711 - ], - [ - 175.96972412056076, - -37.88606464513897 - ], - [ - 175.96110382638733, - -37.9048124757875 - ], - [ - 175.9229282379051, - -37.92743916794953 - ], - [ - 175.88844706121145, - -37.91580258340906 - ], - [ - 175.86504911988362, - -37.917418775706345 - ], - [ - 175.8527344139216, - -37.93196450638193 - ], - [ - 175.80840147245837, - -37.91806525262526 - ], - [ - 175.79731823709255, - -37.90513571424696 - ], - [ - 175.76406853099513, - -37.90448923732805 - ], - [ - 175.74149157006477, - -37.91644906032798 - ], - [ - 175.73040833469895, - -37.903519521949676 - ], - [ - 175.71357823655086, - -37.90319628349022 - ], - [ - 175.69633764820404, - -37.94101518324674 - ], - [ - 175.66349843230535, - -37.95071233703047 - ], - [ - 175.653236177337, - -37.94844966781426 - ], - [ - 175.66390892250408, - -37.912570198814485 - ], - [ - 175.65405715773446, - -37.910307529598285 - ], - [ - 175.63189068700285, - -37.88412521438222 - ], - [ - 175.63435362819524, - -37.86731681449044 - ], - [ - 175.64666833415725, - -37.85277108381485 - ], - [ - 175.62614382422058, - -37.84792250692299 - ], - [ - 175.62203892223323, - -37.83305353778795 - ], - [ - 175.59782000050794, - -37.82400286092314 - ], - [ - 175.60972421627122, - -37.79879026108546 - ], - [ - 175.57606401997504, - -37.79782054570708 - ], - [ - 175.5850948043472, - -37.77907271505855 - ], - [ - 175.5440457844738, - -37.76937556127483 - ], - [ - 175.53214156871053, - -37.76355726900459 - ], - [ - 175.51900588235105, - -37.73899114608582 - ], - [ - 175.49273450963207, - -37.74674886911281 - ], - [ - 175.48534568605487, - -37.73802143070745 - ], - [ - 175.46523166631692, - -37.73317285381559 - ], - [ - 175.44593862697644, - -37.69018213870775 - ], - [ - 175.4323924504182, - -37.634261885221605 - ], - [ - 175.4213092150524, - -37.61066547768121 - ], - [ - 175.412688920879, - -37.580281062492205 - ], - [ - 175.41186794048153, - -37.55894732416802 - ], - [ - 175.3970902933271, - -37.53050233973576 - ], - [ - 175.38436509716635, - -37.47458208624962 - ], - [ - 175.3736923519993, - -37.46132930941186 - ], - [ - 175.3933958815385, - -37.455187778682166 - ], - [ - 175.38272313637142, - -37.44225824030387 - ], - [ - 175.3921644109423, - -37.43385404035797 - ], - [ - 175.43608686220682, - -37.44775329411465 - ], - [ - 175.49437647042703, - -37.42965194038503 - ], - [ - 175.5173639215561, - -37.42803574808774 - ], - [ - 175.52721568632572, - -37.4199547866013 - ], - [ - 175.61629205945096, - -37.42027802506076 - ], - [ - 175.64051098117625, - -37.44031880954712 - ], - [ - 175.64502637336233, - -37.455511017141625 - ], - [ - 175.67088725588255, - -37.44775329411465 - ], - [ - 175.69182225601799, - -37.46359197862806 - ], - [ - 175.70495794237746, - -37.459713117114575 - ], - [ - 175.75832166821286, - -37.46553140938481 - ], - [ - 175.75011186423816, - -37.4952693476549 - ], - [ - 175.76530000159133, - -37.52371433208715 - ], - [ - 175.79690774689382, - -37.552482554978866 - ], - [ - 175.81455882543938, - -37.563795901059876 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25232, - "NAME_2": "Otorohanga", - "VARNAME_2": "", - "HASC_2": "NZ.WK.OH", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.10564225222612, - -37.98141999067892 - ], - [ - 175.13478705633622, - -38.01632974430033 - ], - [ - 175.15243813488178, - -38.02731985192189 - ], - [ - 175.16434235064506, - -38.0021072520842 - ], - [ - 175.19471862535136, - -38.00921849819227 - ], - [ - 175.20210744892856, - -38.01794593659762 - ], - [ - 175.20703333131337, - -38.043805013354216 - ], - [ - 175.19102421356274, - -38.053825405597394 - ], - [ - 175.20210744892856, - -38.067078182435154 - ], - [ - 175.25382921396903, - -38.089704874597174 - ], - [ - 175.28748941026518, - -38.09035135151609 - ], - [ - 175.3240230379525, - -38.084856297705315 - ], - [ - 175.35111539106893, - -38.08776544384043 - ], - [ - 175.37081892060814, - -38.0819471515702 - ], - [ - 175.42213019544988, - -38.093583736110666 - ], - [ - 175.44963303876503, - -38.10715975140788 - ], - [ - 175.47179950949666, - -38.13334206662393 - ], - [ - 175.50176529400423, - -38.1297864435699 - ], - [ - 175.5062806861903, - -38.14465541270494 - ], - [ - 175.52064784314598, - -38.162110289515645 - ], - [ - 175.56046539242317, - -38.1989594738938 - ], - [ - 175.57195911798772, - -38.173746874056114 - ], - [ - 175.6507732361446, - -38.15015046651572 - ], - [ - 175.68402294224202, - -38.189262320110075 - ], - [ - 175.6885383344281, - -38.252940296623194 - ], - [ - 175.68894882462683, - -38.30174930400128 - ], - [ - 175.66637186369647, - -38.314032365460655 - ], - [ - 175.69962156979392, - -38.35282098059555 - ], - [ - 175.70865235416605, - -38.3828821573251 - ], - [ - 175.68894882462683, - -38.38870044959533 - ], - [ - 175.68032853045344, - -38.40777151870332 - ], - [ - 175.65364666753572, - -38.4155292417303 - ], - [ - 175.6544676479332, - -38.4261961108924 - ], - [ - 175.62819627521424, - -38.433953833919375 - ], - [ - 175.61875500064335, - -38.44235803386527 - ], - [ - 175.61382911825854, - -38.465631202946206 - ], - [ - 175.61916549084208, - -38.491167041243344 - ], - [ - 175.57236960818645, - -38.494399425837926 - ], - [ - 175.54732970606366, - -38.474681879811016 - ], - [ - 175.53542549030038, - -38.45108547227062 - ], - [ - 175.5038177449979, - -38.43363059545992 - ], - [ - 175.48904009784349, - -38.416175718649214 - ], - [ - 175.4808302938688, - -38.39710464954123 - ], - [ - 175.43772882300175, - -38.404539134108745 - ], - [ - 175.425003626841, - -38.370275857406256 - ], - [ - 175.4053000973018, - -38.37609414967649 - ], - [ - 175.41720431306507, - -38.399690557216886 - ], - [ - 175.39750078352583, - -38.40583208794658 - ], - [ - 175.36630352842207, - -38.39872084183851 - ], - [ - 175.33715872431196, - -38.363811088217105 - ], - [ - 175.34290558709424, - -38.35120478829826 - ], - [ - 175.33100137133096, - -38.327608380757866 - ], - [ - 175.31622372417655, - -38.31015350394716 - ], - [ - 175.26860686112343, - -38.302719019379644 - ], - [ - 175.2694278415209, - -38.313385888541745 - ], - [ - 175.23864107661586, - -38.30627464243368 - ], - [ - 175.23412568442978, - -38.291405673298634 - ], - [ - 175.2136011744931, - -38.286557096406774 - ], - [ - 175.22263195886524, - -38.26748602729878 - ], - [ - 175.20210744892856, - -38.26296068886638 - ], - [ - 175.184456370383, - -38.25164734278536 - ], - [ - 175.19020323316528, - -38.239041042866525 - ], - [ - 175.18240391938934, - -38.21964673529908 - ], - [ - 175.16228989965137, - -38.22578826602877 - ], - [ - 175.1356080367337, - -38.22287911989365 - ], - [ - 175.1113891150084, - -38.213828443028845 - ], - [ - 175.06007784016666, - -38.20154538156946 - ], - [ - 175.0547414675831, - -38.176009543272315 - ], - [ - 175.01451342810722, - -38.17697925865069 - ], - [ - 175.02067078108823, - -38.164372958731846 - ], - [ - 174.98701058479205, - -38.16340324335348 - ], - [ - 174.9693595062465, - -38.20122214311 - ], - [ - 174.93857274134146, - -38.194110897001934 - ], - [ - 174.86837891735797, - -38.198312996974884 - ], - [ - 174.83553970145928, - -38.20801015075861 - ], - [ - 174.83307676026686, - -38.176009543272315 - ], - [ - 174.8527802898061, - -38.15047370497518 - ], - [ - 174.8540117604023, - -38.130432920488815 - ], - [ - 174.84415999563268, - -38.12881672819153 - ], - [ - 174.84005509364533, - -38.12170548208346 - ], - [ - 174.8285613680808, - -38.1275237743537 - ], - [ - 174.82774038768332, - -38.10845270524571 - ], - [ - 174.86550548596685, - -38.098755551461984 - ], - [ - 174.90327058425035, - -38.08388658232694 - ], - [ - 174.87412578014025, - -38.048976828705534 - ], - [ - 174.84949636821622, - -38.05964369786763 - ], - [ - 174.83923411324787, - -38.04736063640824 - ], - [ - 174.8092683287403, - -38.080007720813455 - ], - [ - 174.78053401482896, - -38.080007720813455 - ], - [ - 174.78463891681628, - -38.037340244165065 - ], - [ - 174.79736411297702, - -38.01988536735436 - ], - [ - 174.82404597589473, - -38.006309352057144 - ], - [ - 174.8396446034466, - -38.02311775194894 - ], - [ - 174.86673695656305, - -37.9823897060573 - ], - [ - 174.89752372146808, - -37.978834083003264 - ], - [ - 174.92502656478325, - -37.992086859841024 - ], - [ - 174.937751760944, - -37.97754112916543 - ], - [ - 174.9705909768427, - -37.96752073692225 - ], - [ - 174.9911154867794, - -37.97236931381411 - ], - [ - 175.00835607512622, - -37.983359421435665 - ], - [ - 175.02847009486416, - -37.97754112916543 - ], - [ - 175.03914284003125, - -37.99047066754373 - ], - [ - 175.10564225222612, - -37.98141999067892 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25233, - "NAME_2": "Rotorua", - "VARNAME_2": "", - "HASC_2": "NZ.WK.RR", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.51321314368428, - -38.40421589564929 - ], - [ - 176.50089843772227, - -38.456903764540854 - ], - [ - 176.48201588858052, - -38.51153106418917 - ], - [ - 176.48365784937545, - -38.5325415640539 - ], - [ - 176.45656549625903, - -38.52995565637824 - ], - [ - 176.4183899077768, - -38.51444021032429 - ], - [ - 176.3978653978401, - -38.50991487189188 - ], - [ - 176.36584716233887, - -38.56874427151314 - ], - [ - 176.32479814246548, - -38.55937035618887 - ], - [ - 176.31084147570854, - -38.55290558699973 - ], - [ - 176.3128939267022, - -38.536097187107934 - ], - [ - 176.33054500524776, - -38.508945156513505 - ], - [ - 176.31207294630474, - -38.48728817972986 - ], - [ - 176.28210716179717, - -38.491167041243344 - ], - [ - 176.28292814219463, - -38.501833910405445 - ], - [ - 176.25008892629594, - -38.51185430264863 - ], - [ - 176.23407980854532, - -38.52187469489181 - ], - [ - 176.2106818672175, - -38.523814125648556 - ], - [ - 176.1864629454922, - -38.51476344878374 - ], - [ - 176.17825314151753, - -38.49569237967575 - ], - [ - 176.15403421979224, - -38.48664170281094 - ], - [ - 176.1560866707859, - -38.469833302919156 - ], - [ - 176.14500343542008, - -38.456903764540854 - ], - [ - 176.15075029820235, - -38.44429746462202 - ], - [ - 176.1244789254834, - -38.41423628789247 - ], - [ - 176.10108098415557, - -38.416175718649214 - ], - [ - 176.08055647421887, - -38.411327141757354 - ], - [ - 176.06208441527585, - -38.38999340343316 - ], - [ - 176.03499206215943, - -38.3874074957575 - ], - [ - 176.03335010136448, - -38.36607375743331 - ], - [ - 176.05305363090372, - -38.35993222670362 - ], - [ - 176.058800493686, - -38.347649165244235 - ], - [ - 176.07193618004547, - -38.343447065271285 - ], - [ - 176.07768304282774, - -38.33084076535245 - ], - [ - 176.11339569011758, - -38.31467884237957 - ], - [ - 176.1367936314454, - -38.31306265008229 - ], - [ - 176.13227823925934, - -38.29819368094724 - ], - [ - 176.14500343542008, - -38.29399158097429 - ], - [ - 176.12653137647706, - -38.272657842650105 - ], - [ - 176.1560866707859, - -38.22029321221799 - ], - [ - 176.1183215725024, - -38.166635627948054 - ], - [ - 176.06783127805812, - -38.16566591256968 - ], - [ - 176.064957846667, - -38.17180744329937 - ], - [ - 176.0382759837493, - -38.16922153562371 - ], - [ - 176.03663402295436, - -38.14788779729952 - ], - [ - 175.99271157168985, - -38.1449786511644 - ], - [ - 176.00872068944045, - -38.134635020461765 - ], - [ - 176.007899709043, - -38.12429138975912 - ], - [ - 176.02678225818474, - -38.107482989867336 - ], - [ - 176.06208441527585, - -38.04251205951638 - ], - [ - 176.08958725859102, - -38.05576483635414 - ], - [ - 176.11093274892517, - -38.0712802824081 - ], - [ - 176.1585496119783, - -38.078391528516164 - ], - [ - 176.17784265131877, - -38.07257323624593 - ], - [ - 176.19179931807574, - -38.07903800543508 - ], - [ - 176.20657696523014, - -38.096492882245784 - ], - [ - 176.23079588695543, - -38.105220320651135 - ], - [ - 176.25296235768707, - -38.13107939740773 - ], - [ - 176.24064765172506, - -38.14562512808332 - ], - [ - 176.2496784360972, - -38.175363066353405 - ], - [ - 176.26815049504023, - -38.19702004313705 - ], - [ - 176.26979245583516, - -38.21803054300179 - ], - [ - 176.26035118126427, - -38.22643474294768 - ], - [ - 176.28415961279083, - -38.273304319569014 - ], - [ - 176.28539108338703, - -38.283971188731115 - ], - [ - 176.30304216193258, - -38.29496129635267 - ], - [ - 176.32520863266421, - -38.320497134649806 - ], - [ - 176.3494275543895, - -38.329547811514615 - ], - [ - 176.37898284869834, - -38.32566895000112 - ], - [ - 176.3966339272439, - -38.33665905762268 - ], - [ - 176.41551647638565, - -38.35799279594687 - ], - [ - 176.431936084335, - -38.35831603440633 - ], - [ - 176.4729851042084, - -38.3676899497306 - ], - [ - 176.48694177096533, - -38.37415471891975 - ], - [ - 176.51321314368428, - -38.40421589564929 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25234, - "NAME_2": "South Waikato", - "VARNAME_2": "", - "HASC_2": "NZ.WK.SW", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.96110382638733, - -37.9048124757875 - ], - [ - 175.97875490493288, - -37.91580258340906 - ], - [ - 175.95248353221393, - -37.923883544895496 - ], - [ - 175.94673666943166, - -37.93648984481433 - ], - [ - 175.95864088519494, - -37.96008625235473 - ], - [ - 175.9799863755291, - -37.97527845994923 - ], - [ - 175.97423951274683, - -37.987884759868074 - ], - [ - 176.0214458856012, - -37.99531924443559 - ], - [ - 176.03622353275563, - -38.01245088278684 - ], - [ - 176.0567480426923, - -38.016976221219245 - ], - [ - 176.06783127805812, - -38.02990575959754 - ], - [ - 176.06208441527585, - -38.04251205951638 - ], - [ - 176.02678225818474, - -38.107482989867336 - ], - [ - 176.007899709043, - -38.12429138975912 - ], - [ - 176.00872068944045, - -38.134635020461765 - ], - [ - 175.99271157168985, - -38.1449786511644 - ], - [ - 176.03663402295436, - -38.14788779729952 - ], - [ - 176.0382759837493, - -38.16922153562371 - ], - [ - 176.064957846667, - -38.17180744329937 - ], - [ - 176.06783127805812, - -38.16566591256968 - ], - [ - 176.1183215725024, - -38.166635627948054 - ], - [ - 176.1560866707859, - -38.22029321221799 - ], - [ - 176.12653137647706, - -38.272657842650105 - ], - [ - 176.14500343542008, - -38.29399158097429 - ], - [ - 176.13227823925934, - -38.29819368094724 - ], - [ - 176.1367936314454, - -38.31306265008229 - ], - [ - 176.11339569011758, - -38.31467884237957 - ], - [ - 176.07768304282774, - -38.33084076535245 - ], - [ - 176.07193618004547, - -38.343447065271285 - ], - [ - 176.058800493686, - -38.347649165244235 - ], - [ - 176.05305363090372, - -38.35993222670362 - ], - [ - 176.03335010136448, - -38.36607375743331 - ], - [ - 176.03499206215943, - -38.3874074957575 - ], - [ - 176.01241510122907, - -38.39936731875743 - ], - [ - 175.99353255208732, - -38.416175718649214 - ], - [ - 175.9606933361886, - -38.4261961108924 - ], - [ - 175.94673666943166, - -38.41940810324379 - ], - [ - 175.9073296103532, - -38.431367926243716 - ], - [ - 175.88680510041652, - -38.426842587811315 - ], - [ - 175.8342623549786, - -38.44268127232473 - ], - [ - 175.80840147245837, - -38.41229685713573 - ], - [ - 175.7878769625217, - -38.40777151870332 - ], - [ - 175.77679372715588, - -38.394841980325026 - ], - [ - 175.78623500172674, - -38.386437780379126 - ], - [ - 175.79116088411155, - -38.36316461129819 - ], - [ - 175.74641745244958, - -38.34958859600098 - ], - [ - 175.72425098171794, - -38.32372951924438 - ], - [ - 175.70003205999265, - -38.31467884237957 - ], - [ - 175.68894882462683, - -38.30174930400128 - ], - [ - 175.6885383344281, - -38.252940296623194 - ], - [ - 175.68402294224202, - -38.189262320110075 - ], - [ - 175.6507732361446, - -38.15015046651572 - ], - [ - 175.62532284382308, - -38.11976605132672 - ], - [ - 175.64420539296486, - -38.10328088989439 - ], - [ - 175.6446158831636, - -38.065138751678404 - ], - [ - 175.6643194127028, - -38.05899722094871 - ], - [ - 175.66226696170915, - -38.02731985192189 - ], - [ - 175.65487813813192, - -38.01859241351653 - ], - [ - 175.66637186369647, - -37.99337981367885 - ], - [ - 175.65857254992054, - -37.973985506111404 - ], - [ - 175.66349843230535, - -37.95071233703047 - ], - [ - 175.69633764820404, - -37.94101518324674 - ], - [ - 175.71357823655086, - -37.90319628349022 - ], - [ - 175.73040833469895, - -37.903519521949676 - ], - [ - 175.74149157006477, - -37.91644906032798 - ], - [ - 175.76406853099513, - -37.90448923732805 - ], - [ - 175.79731823709255, - -37.90513571424696 - ], - [ - 175.80840147245837, - -37.91806525262526 - ], - [ - 175.8527344139216, - -37.93196450638193 - ], - [ - 175.86504911988362, - -37.917418775706345 - ], - [ - 175.88844706121145, - -37.91580258340906 - ], - [ - 175.9229282379051, - -37.92743916794953 - ], - [ - 175.96110382638733, - -37.9048124757875 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25235, - "NAME_2": "Taupo", - "VARNAME_2": "", - "HASC_2": "NZ.WK.TP", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.03499206215943, - -38.3874074957575 - ], - [ - 176.06208441527585, - -38.38999340343316 - ], - [ - 176.08055647421887, - -38.411327141757354 - ], - [ - 176.10108098415557, - -38.416175718649214 - ], - [ - 176.1244789254834, - -38.41423628789247 - ], - [ - 176.15075029820235, - -38.44429746462202 - ], - [ - 176.14500343542008, - -38.456903764540854 - ], - [ - 176.1392565726378, - -38.4695100644597 - ], - [ - 176.1195530430986, - -38.47565159518939 - ], - [ - 176.08548235660368, - -38.513147256486455 - ], - [ - 176.05839000348726, - -38.510561348810796 - ], - [ - 176.052643140705, - -38.52316764872964 - ], - [ - 176.0637263760708, - -38.535773948648476 - ], - [ - 176.04771725832018, - -38.54611757935112 - ], - [ - 176.05592706229484, - -38.565511886918564 - ], - [ - 176.07563059183406, - -38.55937035618887 - ], - [ - 176.10970127832897, - -38.56001683310779 - ], - [ - 176.1207845136948, - -38.57294637148608 - ], - [ - 176.16552794535676, - -38.58619914832384 - ], - [ - 176.21150284761495, - -38.610442032783155 - ], - [ - 176.21889167119215, - -38.61884623272905 - ], - [ - 176.21027137701876, - -38.637917301837035 - ], - [ - 176.1770216709213, - -38.68575659383674 - ], - [ - 176.26117216166173, - -38.76333382410654 - ], - [ - 176.24146863212252, - -38.76915211637677 - ], - [ - 176.21971265158965, - -38.79210204699825 - ], - [ - 176.11667961170744, - -38.769475354836224 - ], - [ - 176.0965655919695, - -38.81343578532244 - ], - [ - 176.0977970625657, - -38.824102654484534 - ], - [ - 176.12365794508594, - -38.85416383121408 - ], - [ - 176.12940480786818, - -38.879699669511226 - ], - [ - 176.15937059237575, - -38.913962946213715 - ], - [ - 176.16593843555552, - -38.91170027699751 - ], - [ - 176.18851539648585, - -38.93755935375411 - ], - [ - 176.20247206324282, - -38.94402412294326 - ], - [ - 176.22587000457065, - -38.94240793064597 - ], - [ - 176.23818471053266, - -38.927538961510926 - ], - [ - 176.26158265186046, - -38.92592276921364 - ], - [ - 176.26815049504023, - -38.96180223821342 - ], - [ - 176.26650853424528, - -38.97861063810521 - ], - [ - 176.28046520100224, - -38.98539864575382 - ], - [ - 176.28908549517564, - -39.004469714861806 - ], - [ - 176.273076377425, - -39.01481334556444 - ], - [ - 176.28621206378452, - -39.04875338380748 - ], - [ - 176.2849805931883, - -39.07622865286136 - ], - [ - 176.25870922046934, - -39.0843096143478 - ], - [ - 176.23613225953898, - -39.09659267580718 - ], - [ - 176.2439315733149, - -39.10532011421253 - ], - [ - 176.22135461238457, - -39.11760317567192 - ], - [ - 176.18810490628712, - -39.1276235679151 - ], - [ - 176.1864629454922, - -39.14443196780689 - ], - [ - 176.16183353356817, - -39.135704529401536 - ], - [ - 176.0891767683923, - -39.1580079831041 - ], - [ - 176.05510608189738, - -39.15768474464464 - ], - [ - 175.9836807873177, - -39.15251292929332 - ], - [ - 175.9676716695671, - -39.162856559995966 - ], - [ - 175.96931363036202, - -39.18419029832015 - ], - [ - 175.8900890220064, - -39.208433182779466 - ], - [ - 175.9011722573722, - -39.22136272115776 - ], - [ - 175.88885755141018, - -39.23590845183335 - ], - [ - 175.86258617869123, - -39.24398941331979 - ], - [ - 175.87490088465324, - -39.267585820860184 - ], - [ - 175.84452460994694, - -39.271464682373676 - ], - [ - 175.83590431577352, - -39.290212513022205 - ], - [ - 175.81332735484318, - -39.30281881294105 - ], - [ - 175.77556225655965, - -39.29797023604918 - ], - [ - 175.75750068781537, - -39.28698012842763 - ], - [ - 175.7480594132445, - -39.29538432837352 - ], - [ - 175.710294314961, - -39.29053575148166 - ], - [ - 175.67335019707494, - -39.2963540437519 - ], - [ - 175.56292833361556, - -39.27566678234662 - ], - [ - 175.63804803998386, - -39.15994741386085 - ], - [ - 175.6507732361446, - -39.10725954496928 - ], - [ - 175.6425634321699, - -39.08786523740183 - ], - [ - 175.6216284320345, - -39.08333989896943 - ], - [ - 175.6302487262079, - -39.06426882986143 - ], - [ - 175.61916549084208, - -39.05133929148314 - ], - [ - 175.65241519693953, - -39.041318899239954 - ], - [ - 175.6581620597218, - -39.02871259932111 - ], - [ - 175.653236177337, - -39.013843630186074 - ], - [ - 175.67540264806863, - -38.990893699564594 - ], - [ - 175.63681656938763, - -38.975378253510634 - ], - [ - 175.61013470646995, - -38.98345921499707 - ], - [ - 175.57360107878264, - -38.9892775072673 - ], - [ - 175.56169686301936, - -38.96568109972691 - ], - [ - 175.56374931401302, - -38.94854946137566 - ], - [ - 175.57606401997504, - -38.93400373070008 - ], - [ - 175.57524303957757, - -38.92333686153798 - ], - [ - 175.5912521573282, - -38.91299323083534 - ], - [ - 175.55020313745482, - -38.86547717729509 - ], - [ - 175.5682647061991, - -38.83832514670067 - ], - [ - 175.58837872593705, - -38.832183615970976 - ], - [ - 175.58714725534085, - -38.82151674680888 - ], - [ - 175.56128637282063, - -38.791455570079336 - ], - [ - 175.55102411785228, - -38.78919290086313 - ], - [ - 175.52516323533206, - -38.75880848567413 - ], - [ - 175.54322480407635, - -38.7316564550797 - ], - [ - 175.55923392182694, - -38.721312824377065 - ], - [ - 175.5707276473915, - -38.69610022453938 - ], - [ - 175.57729549057123, - -38.694160793782636 - ], - [ - 175.58878921613578, - -38.668948193944956 - ], - [ - 175.58057941216111, - -38.649553886377504 - ], - [ - 175.61013470646995, - -38.635331394161376 - ], - [ - 175.61875500064335, - -38.61626032505339 - ], - [ - 175.63189068700285, - -38.6123814635399 - ], - [ - 175.64174245177244, - -38.56583512537802 - ], - [ - 175.62983823600916, - -38.54223871783763 - ], - [ - 175.62737529481677, - -38.510561348810796 - ], - [ - 175.61916549084208, - -38.491167041243344 - ], - [ - 175.61382911825854, - -38.465631202946206 - ], - [ - 175.61875500064335, - -38.44235803386527 - ], - [ - 175.62819627521424, - -38.433953833919375 - ], - [ - 175.6544676479332, - -38.4261961108924 - ], - [ - 175.65364666753572, - -38.4155292417303 - ], - [ - 175.68032853045344, - -38.40777151870332 - ], - [ - 175.68894882462683, - -38.38870044959533 - ], - [ - 175.70865235416605, - -38.3828821573251 - ], - [ - 175.69962156979392, - -38.35282098059555 - ], - [ - 175.66637186369647, - -38.314032365460655 - ], - [ - 175.68894882462683, - -38.30174930400128 - ], - [ - 175.70003205999265, - -38.31467884237957 - ], - [ - 175.72425098171794, - -38.32372951924438 - ], - [ - 175.74641745244958, - -38.34958859600098 - ], - [ - 175.79116088411155, - -38.36316461129819 - ], - [ - 175.78623500172674, - -38.386437780379126 - ], - [ - 175.77679372715588, - -38.394841980325026 - ], - [ - 175.7878769625217, - -38.40777151870332 - ], - [ - 175.80840147245837, - -38.41229685713573 - ], - [ - 175.8342623549786, - -38.44268127232473 - ], - [ - 175.88680510041652, - -38.426842587811315 - ], - [ - 175.9073296103532, - -38.431367926243716 - ], - [ - 175.94673666943166, - -38.41940810324379 - ], - [ - 175.9606933361886, - -38.4261961108924 - ], - [ - 175.99353255208732, - -38.416175718649214 - ], - [ - 176.01241510122907, - -38.39936731875743 - ], - [ - 176.03499206215943, - -38.3874074957575 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25236, - "NAME_2": "Thames-Coromandel", - "VARNAME_2": "", - "HASC_2": "NZ.WK.TC", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 175.4529169603549, - -36.76765957541614 - ], - [ - 175.4529169603549, - -36.78673064452413 - ], - [ - 175.43157147002074, - -36.789316552199786 - ], - [ - 175.4529169603549, - -36.76765957541614 - ] - ] - ], - [ - [ - [ - 175.78664549192547, - -36.57694888433623 - ], - [ - 175.78664549192547, - -36.5885854688767 - ], - [ - 175.79854970768875, - -36.60668682260632 - ], - [ - 175.8235896098115, - -36.61412130717384 - ], - [ - 175.8342623549786, - -36.624141699417024 - ], - [ - 175.82400010001027, - -36.641919814687185 - ], - [ - 175.80717000186218, - -36.637071237795325 - ], - [ - 175.79485529590016, - -36.64224305314664 - ], - [ - 175.785824511528, - -36.62802056093051 - ], - [ - 175.7878769625217, - -36.61153539949818 - ], - [ - 175.76653147218752, - -36.605717107227946 - ], - [ - 175.76365804079637, - -36.58664603811996 - ], - [ - 175.78664549192547, - -36.57694888433623 - ] - ] - ], - [ - [ - [ - 175.8572498061077, - -37.23538562625109 - ], - [ - 175.8621756884925, - -37.24799192616993 - ], - [ - 175.8354938255748, - -37.25413345689962 - ], - [ - 175.82605255100393, - -37.27223481062924 - ], - [ - 175.779667158547, - -37.28419463362917 - ], - [ - 175.7628370603989, - -37.28354815671025 - ], - [ - 175.73040833469895, - -37.29259883357506 - ], - [ - 175.71686215814074, - -37.285164349007545 - ], - [ - 175.68443343244076, - -37.294538264331806 - ], - [ - 175.67047676568382, - -37.287427018223745 - ], - [ - 175.65118372634333, - -37.29292207203452 - ], - [ - 175.6437949027661, - -37.28387139516971 - ], - [ - 175.62368088302816, - -37.278699579818394 - ], - [ - 175.6109556868674, - -37.28257844133188 - ], - [ - 175.5974095103092, - -37.27546719522382 - ], - [ - 175.60890323587375, - -37.24960811846722 - ], - [ - 175.61136617706615, - -37.23247648011598 - ], - [ - 175.57524303957757, - -37.23700181854838 - ], - [ - 175.55677098063455, - -37.20306178030535 - ], - [ - 175.56251784341683, - -37.18075832660278 - ], - [ - 175.54240382367888, - -37.16782878822448 - ], - [ - 175.53953039228773, - -37.14132323454897 - ], - [ - 175.52803666672318, - -37.120312734684234 - ], - [ - 175.51572196076117, - -37.110938819359966 - ], - [ - 175.51407999996624, - -37.09380718100872 - ], - [ - 175.52393176473583, - -37.061160096603516 - ], - [ - 175.50833313718397, - -37.00297717390117 - ], - [ - 175.49601843122196, - -36.98552229709047 - ], - [ - 175.49437647042703, - -36.96742094336085 - ], - [ - 175.4282875484309, - -36.90083382071261 - ], - [ - 175.4262350974372, - -36.89016695155052 - ], - [ - 175.40571058750052, - -36.85428748255074 - ], - [ - 175.42869803862962, - -36.83844879803732 - ], - [ - 175.431160979822, - -36.81743829817259 - ], - [ - 175.4418337249891, - -36.80677142901049 - ], - [ - 175.47056803890047, - -36.81032705206452 - ], - [ - 175.4795988232726, - -36.80192285211863 - ], - [ - 175.49724990181815, - -36.803215805956455 - ], - [ - 175.50463872539535, - -36.7877003599025 - ], - [ - 175.49150303903588, - -36.77412434460528 - ], - [ - 175.47262048989413, - -36.737275160227135 - ], - [ - 175.45989529373338, - -36.7291941987407 - ], - [ - 175.44224421518783, - -36.730810391037984 - ], - [ - 175.4282875484309, - -36.70010273738953 - ], - [ - 175.4467596073739, - -36.662930314551915 - ], - [ - 175.43690784260428, - -36.62672760709268 - ], - [ - 175.4504540191625, - -36.61606073793058 - ], - [ - 175.4213092150524, - -36.59860586111988 - ], - [ - 175.4053000973018, - -36.580827745849724 - ], - [ - 175.36260911663348, - -36.564989061336306 - ], - [ - 175.3445475478892, - -36.55432219217421 - ], - [ - 175.32730695954237, - -36.524261015444665 - ], - [ - 175.3256649987474, - -36.489997738742176 - ], - [ - 175.35604127345374, - -36.47060343117472 - ], - [ - 175.36835597941575, - -36.4670478081207 - ], - [ - 175.39626931292963, - -36.47545200806659 - ], - [ - 175.4430651955853, - -36.501634323282644 - ], - [ - 175.45907431333592, - -36.52135186930955 - ], - [ - 175.46851558790678, - -36.51197795398528 - ], - [ - 175.49355549002954, - -36.50971528476908 - ], - [ - 175.52146882354344, - -36.539776461498626 - ], - [ - 175.53624647069788, - -36.542362369174285 - ], - [ - 175.5284471569219, - -36.58470660736321 - ], - [ - 175.53214156871053, - -36.60280796109283 - ], - [ - 175.56005490222444, - -36.60507063030903 - ], - [ - 175.5850948043472, - -36.6273740840116 - ], - [ - 175.57401156898138, - -36.64288953006556 - ], - [ - 175.57770598076996, - -36.671334514497815 - ], - [ - 175.55759196103202, - -36.66680917606541 - ], - [ - 175.5547185296409, - -36.682647860578825 - ], - [ - 175.5756535297763, - -36.68555700671394 - ], - [ - 175.5850948043472, - -36.67747604522751 - ], - [ - 175.60767176527753, - -36.68458729133557 - ], - [ - 175.6047983338864, - -36.69687035279495 - ], - [ - 175.61711303984842, - -36.72240619109209 - ], - [ - 175.6121871574636, - -36.75343708320001 - ], - [ - 175.64954176554838, - -36.73792163714605 - ], - [ - 175.6384585301826, - -36.7246688603083 - ], - [ - 175.67745509906229, - -36.72984067565962 - ], - [ - 175.7250719621154, - -36.72208295263263 - ], - [ - 175.73656568767996, - -36.707213983497596 - ], - [ - 175.76242657020018, - -36.707860460416505 - ], - [ - 175.78048813894446, - -36.69299149128146 - ], - [ - 175.7977287272913, - -36.71723437574077 - ], - [ - 175.8223581392153, - -36.71755761420023 - ], - [ - 175.82276862941404, - -36.7314568679569 - ], - [ - 175.80347559007356, - -36.74309345249737 - ], - [ - 175.75134333483436, - -36.764103952362106 - ], - [ - 175.74846990344324, - -36.78834683682142 - ], - [ - 175.72466147191668, - -36.79545808292948 - ], - [ - 175.72260902092302, - -36.80806438284832 - ], - [ - 175.70167402078758, - -36.807417905929405 - ], - [ - 175.70906284436478, - -36.832630505767085 - ], - [ - 175.6860753932357, - -36.852671290253454 - ], - [ - 175.68279147164583, - -36.87497474395602 - ], - [ - 175.69756911880023, - -36.87465150549656 - ], - [ - 175.69962156979392, - -36.85137833641562 - ], - [ - 175.72589294251287, - -36.82745869041577 - ], - [ - 175.74026009946857, - -36.83650936728058 - ], - [ - 175.75626921721917, - -36.83586289036166 - ], - [ - 175.76242657020018, - -36.821317159686075 - ], - [ - 175.78541402132927, - -36.822933351983366 - ], - [ - 175.8194847078242, - -36.843297374929186 - ], - [ - 175.82851549219632, - -36.86689378246958 - ], - [ - 175.818253237228, - -36.87917684392896 - ], - [ - 175.8317994137862, - -36.88790428233432 - ], - [ - 175.84247215895329, - -36.91053097449634 - ], - [ - 175.85766029630642, - -36.922490797496266 - ], - [ - 175.85848127670388, - -36.93832948200968 - ], - [ - 175.8453455903444, - -36.947703397333946 - ], - [ - 175.8453455903444, - -36.96709770490139 - ], - [ - 175.8560183355115, - -36.97517866638783 - ], - [ - 175.86012323749884, - -37.000068027766055 - ], - [ - 175.8744903944545, - -37.0278665352794 - ], - [ - 175.88475264942286, - -37.02883625065777 - ], - [ - 175.8851631396216, - -37.05016998898196 - ], - [ - 175.89296245339753, - -37.065685435035924 - ], - [ - 175.88598412001906, - -37.08443326568445 - ], - [ - 175.8925519631988, - -37.12160568852207 - ], - [ - 175.87941627683932, - -37.14584857298137 - ], - [ - 175.88146872783298, - -37.16718231130557 - ], - [ - 175.89337294359626, - -37.19562729573782 - ], - [ - 175.87982676703805, - -37.19724348803511 - ], - [ - 175.88475264942286, - -37.217930749440384 - ], - [ - 175.87325892385832, - -37.22568847246737 - ], - [ - 175.85889176690262, - -37.230860287818686 - ], - [ - 175.8572498061077, - -37.23538562625109 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2125, - "NAME_1": "Auckland", - "ID_2": 25173, - "NAME_2": "Rodney", - "VARNAME_2": "", - "HASC_2": "NZ.AU.RD", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 174.84005509364533, - -36.39141000860765 - ], - [ - 174.8782306821276, - -36.41629936998587 - ], - [ - 174.88028313312125, - -36.43730986985061 - ], - [ - 174.8371816622542, - -36.45056264668836 - ], - [ - 174.8162466621188, - -36.42761271606688 - ], - [ - 174.8273298974846, - -36.402076877769744 - ], - [ - 174.84005509364533, - -36.39141000860765 - ] - ] - ], - [ - [ - [ - 174.71403460263406, - -36.675859852930216 - ], - [ - 174.7119821516404, - -36.68717319901123 - ], - [ - 174.72593881839737, - -36.705274552740846 - ], - [ - 174.7021303868708, - -36.71723437574077 - ], - [ - 174.67873244554298, - -36.718527329578606 - ], - [ - 174.6692911709721, - -36.737275160227135 - ], - [ - 174.63973587666325, - -36.750851175524346 - ], - [ - 174.6389148962658, - -36.7702454830918 - ], - [ - 174.63193656288732, - -36.77444758306474 - ], - [ - 174.6011497979823, - -36.7831750214701 - ], - [ - 174.5855511704304, - -36.80353904441591 - ], - [ - 174.59581342539875, - -36.81679182125367 - ], - [ - 174.583088229238, - -36.8310143134698 - ], - [ - 174.58062528804558, - -36.84782271336159 - ], - [ - 174.56051126830764, - -36.84265089801027 - ], - [ - 174.55106999373675, - -36.850731859496705 - ], - [ - 174.44639499305964, - -36.87950008238842 - ], - [ - 174.44270058127103, - -36.89113666692889 - ], - [ - 174.4287439145141, - -36.87885360546951 - ], - [ - 174.4336697968989, - -36.868833213226324 - ], - [ - 174.4254599929242, - -36.82519602119957 - ], - [ - 174.3876948946407, - -36.76604338311885 - ], - [ - 174.31996401184963, - -36.67198099141673 - ], - [ - 174.26660028601424, - -36.60280796109283 - ], - [ - 174.18368126587, - -36.51133147706636 - ], - [ - 174.16603018732445, - -36.49064421566109 - ], - [ - 174.16151479513837, - -36.460906277391004 - ], - [ - 174.17711342269027, - -36.44700702363433 - ], - [ - 174.20584773660164, - -36.44151196982355 - ], - [ - 174.2358135211092, - -36.42793595452634 - ], - [ - 174.2526436192573, - -36.452502077445104 - ], - [ - 174.25962195263577, - -36.45444150820185 - ], - [ - 174.27111567820032, - -36.478684392661165 - ], - [ - 174.29328214893192, - -36.50325051557993 - ], - [ - 174.30231293330408, - -36.52717016157978 - ], - [ - 174.35075077675467, - -36.54333208455266 - ], - [ - 174.37989558086477, - -36.56854468439034 - ], - [ - 174.36265499251795, - -36.58341365352538 - ], - [ - 174.3647074435116, - -36.6037776764712 - ], - [ - 174.4045249927888, - -36.62446493787648 - ], - [ - 174.42217607133435, - -36.60959596874144 - ], - [ - 174.43654322829002, - -36.609919207200896 - ], - [ - 174.43284881650143, - -36.589878422714534 - ], - [ - 174.4082194045774, - -36.58438336890376 - ], - [ - 174.43572224789256, - -36.544625038390485 - ], - [ - 174.42217607133435, - -36.5278166384987 - ], - [ - 174.42381803212928, - -36.496785746390785 - ], - [ - 174.40534597318626, - -36.47739143882333 - ], - [ - 174.40986136537234, - -36.447653500553244 - ], - [ - 174.42504950272547, - -36.43569367755332 - ], - [ - 174.4254599929242, - -36.42082470841828 - ], - [ - 174.41355577716092, - -36.40272335468866 - ], - [ - 174.38400048285212, - -36.390763531688734 - ], - [ - 174.3560871493382, - -36.41209727001292 - ], - [ - 174.35034028655593, - -36.40272335468866 - ], - [ - 174.32530038443318, - -36.3849452394185 - ], - [ - 174.3084702862851, - -36.392702962445476 - ], - [ - 174.27932548217498, - -36.39237972398602 - ], - [ - 174.25141214866107, - -36.381389616364466 - ], - [ - 174.2624953840269, - -36.35585377806733 - ], - [ - 174.25797999184084, - -36.326762316716156 - ], - [ - 174.26824224680917, - -36.31027715528382 - ], - [ - 174.29492410972688, - -36.30672153222979 - ], - [ - 174.3133961686699, - -36.322883455202664 - ], - [ - 174.35403469834455, - -36.322883455202664 - ], - [ - 174.39138930642932, - -36.30995391682437 - ], - [ - 174.40739842417992, - -36.29282227847312 - ], - [ - 174.41642920855207, - -36.27569064012187 - ], - [ - 174.42792293411662, - -36.27375120936513 - ], - [ - 174.44064813027737, - -36.26567024787869 - ], - [ - 174.4533733264381, - -36.25338718641931 - ], - [ - 174.4640460716052, - -36.2617913863652 - ], - [ - 174.46897195399, - -36.259528717149 - ], - [ - 174.47348734617606, - -36.24175060187884 - ], - [ - 174.47718175796467, - -36.23011401733837 - ], - [ - 174.49975871889504, - -36.22849782504108 - ], - [ - 174.52890352300514, - -36.21459857128441 - ], - [ - 174.5223356798254, - -36.2055478944196 - ], - [ - 174.53177695439626, - -36.186476825311615 - ], - [ - 174.55763783691648, - -36.17871910228463 - ], - [ - 174.589245582219, - -36.15803184087936 - ], - [ - 174.6196218569253, - -36.12182913342012 - ], - [ - 174.66723871997843, - -36.188739494527816 - ], - [ - 174.6889947005113, - -36.21071970977093 - ], - [ - 174.72840175958976, - -36.24498298647342 - ], - [ - 174.7472843087315, - -36.25758928639225 - ], - [ - 174.76862979906568, - -36.259205478689545 - ], - [ - 174.77971303443147, - -36.26954910939218 - ], - [ - 174.79900607377198, - -36.268256155554354 - ], - [ - 174.82035156410612, - -36.27439768628405 - ], - [ - 174.81912009350992, - -36.29120608617583 - ], - [ - 174.79531166198336, - -36.304782101473045 - ], - [ - 174.8006480345669, - -36.320297547527005 - ], - [ - 174.7838179364188, - -36.320297547527005 - ], - [ - 174.77725009323908, - -36.31092363220274 - ], - [ - 174.75754656369986, - -36.31932783214863 - ], - [ - 174.76862979906568, - -36.340984808932284 - ], - [ - 174.77930254423273, - -36.33581299358096 - ], - [ - 174.78874381880362, - -36.35068196271601 - ], - [ - 174.80434244635552, - -36.34744957812143 - ], - [ - 174.81665715231753, - -36.359409401121354 - ], - [ - 174.83923411324787, - -36.369753031824 - ], - [ - 174.7920277403935, - -36.3894705778509 - ], - [ - 174.74276891654543, - -36.39755153933734 - ], - [ - 174.72963323018595, - -36.410804316175096 - ], - [ - 174.73948499495557, - -36.42405709301285 - ], - [ - 174.76575636767453, - -36.44700702363433 - ], - [ - 174.76698783827072, - -36.46155275430992 - ], - [ - 174.75385215191125, - -36.47933086958008 - ], - [ - 174.73004372038469, - -36.469633715796355 - ], - [ - 174.73127519098088, - -36.451532362066736 - ], - [ - 174.71403460263406, - -36.431491577580374 - ], - [ - 174.70541430846066, - -36.44991616976945 - ], - [ - 174.715676563429, - -36.463168946607205 - ], - [ - 174.71239264183913, - -36.48417944647194 - ], - [ - 174.71978146541636, - -36.49581603101241 - ], - [ - 174.72183391641002, - -36.5255539692825 - ], - [ - 174.7107506810442, - -36.54171589225537 - ], - [ - 174.71116117124294, - -36.56175667674173 - ], - [ - 174.6959730338898, - -36.56240315366065 - ], - [ - 174.69474156329358, - -36.581150984309176 - ], - [ - 174.70048842607585, - -36.59601995344423 - ], - [ - 174.73291715177584, - -36.622202268660274 - ], - [ - 174.76493538727706, - -36.626081130173766 - ], - [ - 174.77519764224542, - -36.606040345687404 - ], - [ - 174.81214176013145, - -36.601515007255 - ], - [ - 174.82691940728586, - -36.592141091930735 - ], - [ - 174.8416970544403, - -36.601515007255 - ], - [ - 174.83266627006813, - -36.61993959944407 - ], - [ - 174.80844734834284, - -36.608303014903605 - ], - [ - 174.80598440715045, - -36.624141699417024 - ], - [ - 174.77314519125173, - -36.624141699417024 - ], - [ - 174.76041999509098, - -36.64127333776827 - ], - [ - 174.7374325439619, - -36.64806134541688 - ], - [ - 174.73045421058342, - -36.66260707609246 - ], - [ - 174.71403460263406, - -36.675859852930216 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2125, - "NAME_1": "Auckland", - "ID_2": 25174, - "NAME_2": "Waitakere", - "VARNAME_2": "", - "HASC_2": "NZ.AU.WA", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 174.8638635251719, - -36.843943851848096 - ], - [ - 174.86427401537065, - -36.843943851848096 - ], - [ - 174.87535725073644, - -36.84652975952376 - ], - [ - 174.8856195057048, - -36.873358551658725 - ], - [ - 174.86961038795417, - -36.884348659280285 - ], - [ - 174.8687894075567, - -36.902126774550446 - ], - [ - 174.86181107417823, - -36.904712682226105 - ], - [ - 174.85236979960737, - -36.914086597550366 - ], - [ - 174.86181107417823, - -36.92378375133409 - ], - [ - 174.84333901523522, - -36.956754074198756 - ], - [ - 174.83307676026686, - -36.943501297360996 - ], - [ - 174.81953058370866, - -36.94705692041503 - ], - [ - 174.8224040150998, - -36.92927880514487 - ], - [ - 174.7895647992011, - -36.93154147436107 - ], - [ - 174.77232421085426, - -36.92475346671247 - ], - [ - 174.75877803429606, - -36.932187951279985 - ], - [ - 174.7214234262113, - -36.9373597666313 - ], - [ - 174.70664577905686, - -36.92669289746921 - ], - [ - 174.66970166117082, - -36.94188510506371 - ], - [ - 174.65164009242653, - -36.96418855876628 - ], - [ - 174.63522048447717, - -36.973239235631084 - ], - [ - 174.61921136672657, - -36.973239235631084 - ], - [ - 174.6183903863291, - -36.988431443225586 - ], - [ - 174.60484420977087, - -36.99328002011745 - ], - [ - 174.60689666076456, - -37.013967281522724 - ], - [ - 174.5736469546671, - -37.00491660465792 - ], - [ - 174.55845881731398, - -37.02075528917133 - ], - [ - 174.52644058181272, - -37.0323918737118 - ], - [ - 174.50755803267097, - -37.047260842846846 - ], - [ - 174.48333911094568, - -37.04661436592793 - ], - [ - 174.47677126776594, - -37.027220058360484 - ], - [ - 174.47553979716974, - -36.995542689333654 - ], - [ - 174.4665090127976, - -36.984229343252636 - ], - [ - 174.462814601009, - -36.96451179722573 - ], - [ - 174.46856146379127, - -36.95546112036092 - ], - [ - 174.4533733264381, - -36.92216755903681 - ], - [ - 174.44434254206598, - -36.913763359090915 - ], - [ - 174.44270058127103, - -36.89113666692889 - ], - [ - 174.44639499305964, - -36.87950008238842 - ], - [ - 174.55106999373675, - -36.850731859496705 - ], - [ - 174.56051126830764, - -36.84265089801027 - ], - [ - 174.58062528804558, - -36.84782271336159 - ], - [ - 174.583088229238, - -36.8310143134698 - ], - [ - 174.59581342539875, - -36.81679182125367 - ], - [ - 174.5855511704304, - -36.80353904441591 - ], - [ - 174.6011497979823, - -36.7831750214701 - ], - [ - 174.63193656288732, - -36.77444758306474 - ], - [ - 174.64466175904806, - -36.77444758306474 - ], - [ - 174.65081911202907, - -36.78834683682142 - ], - [ - 174.66600724938223, - -36.78511445222684 - ], - [ - 174.6754485239531, - -36.79481160601057 - ], - [ - 174.67052264156828, - -36.80547847517266 - ], - [ - 174.64712470024045, - -36.807417905929405 - ], - [ - 174.65656597481134, - -36.82034744430771 - ], - [ - 174.6668282297797, - -36.857196628685855 - ], - [ - 174.69268911229992, - -36.87723741317222 - ], - [ - 174.70377234766573, - -36.850731859496705 - ], - [ - 174.71362411243533, - -36.852348051793996 - ], - [ - 174.74276891654543, - -36.834246698064376 - ], - [ - 174.79284872079097, - -36.848469190280504 - ], - [ - 174.79120675999602, - -36.8613987286588 - ], - [ - 174.8080368581441, - -36.86172196711826 - ], - [ - 174.81049979933653, - -36.84911566719942 - ], - [ - 174.82404597589473, - -36.843943851848096 - ], - [ - 174.84621244662637, - -36.850408621037246 - ], - [ - 174.8638635251719, - -36.843943851848096 - ] - ] - ], - [ - [ - [ - 174.6389148962658, - -36.7702454830918 - ], - [ - 174.63973587666325, - -36.750851175524346 - ], - [ - 174.6692911709721, - -36.737275160227135 - ], - [ - 174.67873244554298, - -36.718527329578606 - ], - [ - 174.7021303868708, - -36.71723437574077 - ], - [ - 174.72593881839737, - -36.705274552740846 - ], - [ - 174.7119821516404, - -36.68717319901123 - ], - [ - 174.71403460263406, - -36.675859852930216 - ], - [ - 174.74441087734039, - -36.660021168416804 - ], - [ - 174.74892626952644, - -36.681031668281534 - ], - [ - 174.76083048528972, - -36.69687035279495 - ], - [ - 174.7497472499239, - -36.714325229605656 - ], - [ - 174.75713607350113, - -36.73921459098388 - ], - [ - 174.77848156383527, - -36.77897292149715 - ], - [ - 174.77560813244415, - -36.78737712144304 - ], - [ - 174.79243823059224, - -36.79966018290243 - ], - [ - 174.81296274052892, - -36.82519602119957 - ], - [ - 174.79654313257956, - -36.833276982686 - ], - [ - 174.766577348072, - -36.80127637519971 - ], - [ - 174.74564234793658, - -36.82002420584825 - ], - [ - 174.69679401428726, - -36.823256590442824 - ], - [ - 174.67955342594044, - -36.78834683682142 - ], - [ - 174.66272332779235, - -36.77218491384854 - ], - [ - 174.6389148962658, - -36.7702454830918 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2126, - "NAME_1": "Bay of Plenty", - "ID_2": 25175, - "NAME_2": "Opotiki", - "VARNAME_2": "", - "HASC_2": "NZ.BP.OP", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 178.07964374205244, - -37.54278540119514 - ], - [ - 178.07964374205244, - -37.55151283960049 - ], - [ - 178.09401089900814, - -37.5841599240057 - ], - [ - 178.1055046245727, - -37.59644298546508 - ], - [ - 178.03941570257655, - -37.595796508546165 - ], - [ - 177.9778421727665, - -37.61098871614067 - ], - [ - 177.9733267805804, - -37.63393864676215 - ], - [ - 177.99220932972216, - -37.654625908167425 - ], - [ - 177.9881044277348, - -37.677575838788904 - ], - [ - 177.99918766310063, - -37.69018213870775 - ], - [ - 177.98317854535, - -37.70084900786984 - ], - [ - 177.99179883952343, - -37.719920076977836 - ], - [ - 177.97291629038168, - -37.73672847686962 - ], - [ - 177.99590374151077, - -37.7619410767073 - ], - [ - 178.03736325158286, - -37.732203138437214 - ], - [ - 178.07430736946893, - -37.76355726900459 - ], - [ - 177.97045334918926, - -37.846952791544616 - ], - [ - 177.9429505058741, - -37.910630768057736 - ], - [ - 177.91708962335386, - -37.9846523752735 - ], - [ - 177.86249442692227, - -38.11103861292137 - ], - [ - 177.8493587405628, - -38.11524071289431 - ], - [ - 177.77588099498945, - -38.06319932092166 - ], - [ - 177.7434522692895, - -38.04671415948933 - ], - [ - 177.72415922994898, - -38.0257036596246 - ], - [ - 177.70035079842242, - -38.0279663288408 - ], - [ - 177.68885707285787, - -38.01536002892196 - ], - [ - 177.66915354331866, - -38.021824798111105 - ], - [ - 177.67818432769081, - -38.04057262875964 - ], - [ - 177.70117177881988, - -38.06578522859732 - ], - [ - 177.6880360924604, - -38.06998732857027 - ], - [ - 177.6925514846465, - -38.11168508984028 - ], - [ - 177.66012275894653, - -38.12235195900238 - ], - [ - 177.65848079815157, - -38.139160358894166 - ], - [ - 177.6490395235807, - -38.14756455884006 - ], - [ - 177.66053324914526, - -38.1601708587589 - ], - [ - 177.60799050370733, - -38.17697925865069 - ], - [ - 177.60265413112378, - -38.18958555856953 - ], - [ - 177.5636575622441, - -38.202191858488376 - ], - [ - 177.55626873866686, - -38.21253548919101 - ], - [ - 177.53081834634537, - -38.21253548919101 - ], - [ - 177.49182177746565, - -38.225141789109855 - ], - [ - 177.49674765985046, - -38.23968751978544 - ], - [ - 177.49059030686945, - -38.27944585029871 - ], - [ - 177.49264275786314, - -38.300456350163444 - ], - [ - 177.47129726752897, - -38.32340628078492 - ], - [ - 177.46596089494543, - -38.336012580703766 - ], - [ - 177.44338393401506, - -38.34861888062261 - ], - [ - 177.39453560036574, - -38.36898290356842 - ], - [ - 177.34856069810758, - -38.383528634244016 - ], - [ - 177.23772834444944, - -38.42878201856806 - ], - [ - 177.25866334458487, - -38.50926839497296 - ], - [ - 177.2455276582254, - -38.513147256486455 - ], - [ - 177.23033952087223, - -38.53415775635119 - ], - [ - 177.20612059914694, - -38.5257535564053 - ], - [ - 177.19750030497352, - -38.506682487297304 - ], - [ - 177.1827226578191, - -38.48955084894606 - ], - [ - 177.19667932457605, - -38.45819671837869 - ], - [ - 177.19175344219127, - -38.44332774924364 - ], - [ - 177.2057101089482, - -38.41165038021681 - ], - [ - 177.21515138351907, - -38.40324618027092 - ], - [ - 177.20406814815328, - -38.390639880352076 - ], - [ - 177.2237716776925, - -38.38449834962238 - ], - [ - 177.22910805027604, - -38.37189204970355 - ], - [ - 177.24511716802664, - -38.361548419000904 - ], - [ - 177.2336234424621, - -38.34861888062261 - ], - [ - 177.2130989325254, - -38.34441678064966 - ], - [ - 177.2176143247115, - -38.32114361156872 - ], - [ - 177.23075001107097, - -38.31726475005523 - ], - [ - 177.23567589345578, - -38.29399158097429 - ], - [ - 177.22130873650008, - -38.28752681178514 - ], - [ - 177.20653108934567, - -38.2703951734339 - ], - [ - 177.1728708930495, - -38.27007193497444 - ], - [ - 177.16137716748494, - -38.257465635055595 - ], - [ - 177.16712403026722, - -38.24485933513676 - ], - [ - 177.1556303047027, - -38.23192979675846 - ], - [ - 177.16055618708748, - -38.20865662767752 - ], - [ - 177.15768275569636, - -38.17730249711015 - ], - [ - 177.16589255967102, - -38.15823142800215 - ], - [ - 177.1548093243052, - -38.14562512808332 - ], - [ - 177.16958697145964, - -38.12461462821858 - ], - [ - 177.16507157927356, - -38.109745659083536 - ], - [ - 177.1704079518571, - -38.09746259762416 - ], - [ - 177.15932471649128, - -38.08453305924586 - ], - [ - 177.1388002065546, - -38.079684482354 - ], - [ - 177.1059609906559, - -38.04057262875964 - ], - [ - 177.09775118668122, - -38.021501559651654 - ], - [ - 177.06409099038504, - -38.02053184427328 - ], - [ - 177.06409099038504, - -38.010511452030094 - ], - [ - 177.06737491197492, - -37.998874867489626 - ], - [ - 177.0899518729053, - -37.9975819136518 - ], - [ - 177.10883442204704, - -38.0021072520842 - ], - [ - 177.1326428535736, - -38.03701700570561 - ], - [ - 177.14290510854192, - -38.007925544354435 - ], - [ - 177.15932471649128, - -38.009864975111185 - ], - [ - 177.16219814788244, - -37.987561521408615 - ], - [ - 177.18641706960773, - -37.990147429084274 - ], - [ - 177.29437599187472, - -37.99144038292211 - ], - [ - 177.39330412976955, - -37.98400589835458 - ], - [ - 177.41998599268726, - -37.97721789070597 - ], - [ - 177.426553835867, - -37.96655102154388 - ], - [ - 177.48648540488213, - -37.95038909857101 - ], - [ - 177.4885378558758, - -37.93455041405759 - ], - [ - 177.51932462078082, - -37.92485326027386 - ], - [ - 177.54436452290358, - -37.90901457576045 - ], - [ - 177.55380579747447, - -37.883801975922765 - ], - [ - 177.57556177800734, - -37.87345834522013 - ], - [ - 177.5845925623795, - -37.862791476058035 - ], - [ - 177.58787648396938, - -37.83757887622035 - ], - [ - 177.6063485429124, - -37.83725563776089 - ], - [ - 177.61784226847695, - -37.80751769949081 - ], - [ - 177.62933599404147, - -37.81398246867995 - ], - [ - 177.6527339353693, - -37.802345884139484 - ], - [ - 177.64821854318325, - -37.78876986884227 - ], - [ - 177.67284795510727, - -37.77099175357211 - ], - [ - 177.6839311904731, - -37.75806221519382 - ], - [ - 177.6683325629212, - -37.738344669166906 - ], - [ - 177.70691864160216, - -37.72153626927512 - ], - [ - 177.72744315153886, - -37.677575838788904 - ], - [ - 177.7631557988287, - -37.67660612341054 - ], - [ - 177.7923006029388, - -37.67111106959976 - ], - [ - 177.81405658347168, - -37.65656533892417 - ], - [ - 177.8395069757932, - -37.6623836311944 - ], - [ - 177.86865177990327, - -37.65107028511339 - ], - [ - 177.88383991725644, - -37.63717103135672 - ], - [ - 177.88917628983998, - -37.6190696776271 - ], - [ - 177.901490995802, - -37.60581690078935 - ], - [ - 177.91832109395008, - -37.618746439167644 - ], - [ - 177.95362325104117, - -37.6145443391947 - ], - [ - 177.96388550600952, - -37.59644298546508 - ], - [ - 177.98564148654242, - -37.58286697016787 - ], - [ - 177.9926198199209, - -37.5712303856274 - ], - [ - 177.97989462376015, - -37.54957340884375 - ], - [ - 177.98687295713862, - -37.539229778141106 - ], - [ - 178.0073974670753, - -37.55183607805995 - ], - [ - 178.05008844774363, - -37.54019949351948 - ], - [ - 178.07964374205244, - -37.54278540119514 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2126, - "NAME_1": "Bay of Plenty", - "ID_2": 25176, - "NAME_2": "Rotorua", - "VARNAME_2": "", - "HASC_2": "NZ.WK.RR", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.60762588939306, - -38.01665298275979 - ], - [ - 176.60762588939306, - -38.05479512097577 - ], - [ - 176.61214128157914, - -38.06966409011081 - ], - [ - 176.6055734383994, - -38.109745659083536 - ], - [ - 176.61008883058548, - -38.12461462821858 - ], - [ - 176.58669088925765, - -38.12623082051587 - ], - [ - 176.58833285005258, - -38.14756455884006 - ], - [ - 176.59161677164246, - -38.265869835001496 - ], - [ - 176.58710137945639, - -38.327285142298415 - ], - [ - 176.59079579124497, - -38.33148724227136 - ], - [ - 176.58299647746904, - -38.36090194208199 - ], - [ - 176.58751186965512, - -38.41391304943301 - ], - [ - 176.58545941866143, - -38.4307214493248 - ], - [ - 176.52799079083871, - -38.42134753400053 - ], - [ - 176.51321314368428, - -38.40421589564929 - ], - [ - 176.48694177096533, - -38.37415471891975 - ], - [ - 176.4729851042084, - -38.3676899497306 - ], - [ - 176.431936084335, - -38.35831603440633 - ], - [ - 176.41551647638565, - -38.35799279594687 - ], - [ - 176.3966339272439, - -38.33665905762268 - ], - [ - 176.37898284869834, - -38.32566895000112 - ], - [ - 176.3494275543895, - -38.329547811514615 - ], - [ - 176.32520863266421, - -38.320497134649806 - ], - [ - 176.30304216193258, - -38.29496129635267 - ], - [ - 176.28539108338703, - -38.283971188731115 - ], - [ - 176.28415961279083, - -38.273304319569014 - ], - [ - 176.26035118126427, - -38.22643474294768 - ], - [ - 176.26979245583516, - -38.21803054300179 - ], - [ - 176.26815049504023, - -38.19702004313705 - ], - [ - 176.2496784360972, - -38.175363066353405 - ], - [ - 176.24064765172506, - -38.14562512808332 - ], - [ - 176.25296235768707, - -38.13107939740773 - ], - [ - 176.23079588695543, - -38.105220320651135 - ], - [ - 176.20657696523014, - -38.096492882245784 - ], - [ - 176.19179931807574, - -38.07903800543508 - ], - [ - 176.17784265131877, - -38.07257323624593 - ], - [ - 176.1585496119783, - -38.078391528516164 - ], - [ - 176.11093274892517, - -38.0712802824081 - ], - [ - 176.08958725859102, - -38.05576483635414 - ], - [ - 176.06208441527585, - -38.04251205951638 - ], - [ - 176.06783127805812, - -38.02990575959754 - ], - [ - 176.08507186640495, - -37.992410098300475 - ], - [ - 176.1027229449505, - -37.96525806770605 - ], - [ - 176.12324745488718, - -37.969783406138454 - ], - [ - 176.1560866707859, - -37.95976301389527 - ], - [ - 176.17620069052384, - -37.964611590787136 - ], - [ - 176.19590422006308, - -37.958470060057444 - ], - [ - 176.21642872999976, - -37.9633186369493 - ], - [ - 176.23941618112886, - -37.96137920619256 - ], - [ - 176.27841275000856, - -37.949419383192634 - ], - [ - 176.29442186775918, - -37.939398990949456 - ], - [ - 176.35476392697305, - -37.942631375544025 - ], - [ - 176.39252902525655, - -37.958146821597985 - ], - [ - 176.41592696658438, - -37.95620739084124 - ], - [ - 176.4770900061957, - -37.97010664459791 - ], - [ - 176.50295088871596, - -37.96202568311148 - ], - [ - 176.50459284951089, - -37.983359421435665 - ], - [ - 176.5193704966653, - -38.00049105978691 - ], - [ - 176.53907402620453, - -37.994349529057224 - ], - [ - 176.56041951653867, - -38.00954173665173 - ], - [ - 176.60393147760448, - -38.01245088278684 - ], - [ - 176.60762588939306, - -38.01665298275979 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2126, - "NAME_1": "Bay of Plenty", - "ID_2": 25177, - "NAME_2": "Taupo", - "VARNAME_2": "", - "HASC_2": "NZ.WK.TP", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.48201588858052, - -38.51153106418917 - ], - [ - 176.50910824169696, - -38.51411697186483 - ], - [ - 176.51731804567163, - -38.53318804097282 - ], - [ - 176.53784255560834, - -38.537713379405226 - ], - [ - 176.56206147733363, - -38.58458295602655 - ], - [ - 176.61132030118168, - -38.612704701999355 - ], - [ - 176.62445598754115, - -38.60882584048586 - ], - [ - 176.65154834065757, - -38.61141174816153 - ], - [ - 176.62281402674623, - -38.701595278350155 - ], - [ - 176.6310238307209, - -38.75880848567413 - ], - [ - 176.64498049747783, - -38.76527325486328 - ], - [ - 176.66181059562592, - -38.80341539307926 - ], - [ - 176.70039667430692, - -38.85674973888975 - ], - [ - 176.6191196149576, - -38.92462981537581 - ], - [ - 176.60352098740572, - -38.93497344607845 - ], - [ - 176.6080363795918, - -38.949842415213496 - ], - [ - 176.59859510502093, - -38.95824661515939 - ], - [ - 176.60352098740572, - -38.972792345834975 - ], - [ - 176.61829863456015, - -38.98992398418622 - ], - [ - 176.61953010515634, - -39.000590853348314 - ], - [ - 176.54810481057666, - -38.99509579953754 - ], - [ - 176.55549363415386, - -39.00382323794289 - ], - [ - 176.45410255506664, - -39.00253028410506 - ], - [ - 176.42249480976412, - -39.061036445266865 - ], - [ - 176.45205010407295, - -39.12245175256378 - ], - [ - 176.4208528489692, - -39.11598698337463 - ], - [ - 176.38514020167935, - -39.1321489063475 - ], - [ - 176.4040227508211, - -39.1534826446717 - ], - [ - 176.3880136330705, - -39.16382627537433 - ], - [ - 176.3445016720047, - -39.171907236860775 - ], - [ - 176.23613225953898, - -39.09659267580718 - ], - [ - 176.25870922046934, - -39.0843096143478 - ], - [ - 176.2849805931883, - -39.07622865286136 - ], - [ - 176.28621206378452, - -39.04875338380748 - ], - [ - 176.273076377425, - -39.01481334556444 - ], - [ - 176.28908549517564, - -39.004469714861806 - ], - [ - 176.28046520100224, - -38.98539864575382 - ], - [ - 176.26650853424528, - -38.97861063810521 - ], - [ - 176.26815049504023, - -38.96180223821342 - ], - [ - 176.26158265186046, - -38.92592276921364 - ], - [ - 176.23818471053266, - -38.927538961510926 - ], - [ - 176.22587000457065, - -38.94240793064597 - ], - [ - 176.20247206324282, - -38.94402412294326 - ], - [ - 176.18851539648585, - -38.93755935375411 - ], - [ - 176.16593843555552, - -38.91170027699751 - ], - [ - 176.15937059237575, - -38.913962946213715 - ], - [ - 176.12940480786818, - -38.879699669511226 - ], - [ - 176.12365794508594, - -38.85416383121408 - ], - [ - 176.0977970625657, - -38.824102654484534 - ], - [ - 176.0965655919695, - -38.81343578532244 - ], - [ - 176.11667961170744, - -38.769475354836224 - ], - [ - 176.21971265158965, - -38.79210204699825 - ], - [ - 176.24146863212252, - -38.76915211637677 - ], - [ - 176.26117216166173, - -38.76333382410654 - ], - [ - 176.1770216709213, - -38.68575659383674 - ], - [ - 176.21027137701876, - -38.637917301837035 - ], - [ - 176.21889167119215, - -38.61884623272905 - ], - [ - 176.21150284761495, - -38.610442032783155 - ], - [ - 176.16552794535676, - -38.58619914832384 - ], - [ - 176.1207845136948, - -38.57294637148608 - ], - [ - 176.10970127832897, - -38.56001683310779 - ], - [ - 176.07563059183406, - -38.55937035618887 - ], - [ - 176.05592706229484, - -38.565511886918564 - ], - [ - 176.04771725832018, - -38.54611757935112 - ], - [ - 176.0637263760708, - -38.535773948648476 - ], - [ - 176.052643140705, - -38.52316764872964 - ], - [ - 176.05839000348726, - -38.510561348810796 - ], - [ - 176.08548235660368, - -38.513147256486455 - ], - [ - 176.1195530430986, - -38.47565159518939 - ], - [ - 176.1392565726378, - -38.4695100644597 - ], - [ - 176.14500343542008, - -38.456903764540854 - ], - [ - 176.1560866707859, - -38.469833302919156 - ], - [ - 176.15403421979224, - -38.48664170281094 - ], - [ - 176.17825314151753, - -38.49569237967575 - ], - [ - 176.1864629454922, - -38.51476344878374 - ], - [ - 176.2106818672175, - -38.523814125648556 - ], - [ - 176.23407980854532, - -38.52187469489181 - ], - [ - 176.25008892629594, - -38.51185430264863 - ], - [ - 176.28292814219463, - -38.501833910405445 - ], - [ - 176.28210716179717, - -38.491167041243344 - ], - [ - 176.31207294630474, - -38.48728817972986 - ], - [ - 176.33054500524776, - -38.508945156513505 - ], - [ - 176.3128939267022, - -38.536097187107934 - ], - [ - 176.31084147570854, - -38.55290558699973 - ], - [ - 176.32479814246548, - -38.55937035618887 - ], - [ - 176.36584716233887, - -38.56874427151314 - ], - [ - 176.3978653978401, - -38.50991487189188 - ], - [ - 176.4183899077768, - -38.51444021032429 - ], - [ - 176.45656549625903, - -38.52995565637824 - ], - [ - 176.48365784937545, - -38.5325415640539 - ], - [ - 176.48201588858052, - -38.51153106418917 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2126, - "NAME_1": "Bay of Plenty", - "ID_2": 25178, - "NAME_2": "Western Bay of Plenty", - "VARNAME_2": "", - "HASC_2": "NZ.BP.WB", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 176.09287118018088, - -37.606786616167724 - ], - [ - 176.1257103960796, - -37.62488796989734 - ], - [ - 176.10723833713658, - -37.63943370057292 - ], - [ - 176.10477539594416, - -37.61939291608656 - ], - [ - 176.09287118018088, - -37.606786616167724 - ] - ] - ], - [ - [ - [ - 176.41674794698184, - -37.6016148008164 - ], - [ - 176.438093437316, - -37.613574623816326 - ], - [ - 176.4282416725464, - -37.639110462113464 - ], - [ - 176.4122325547958, - -37.6426660851675 - ], - [ - 176.4077171626097, - -37.62715063911354 - ], - [ - 176.41674794698184, - -37.6016148008164 - ] - ] - ], - [ - [ - [ - 175.9886066697025, - -37.473612370871244 - ], - [ - 176.01077314043414, - -37.482663047736054 - ], - [ - 176.05387461130118, - -37.53729034738436 - ], - [ - 176.0977970625657, - -37.58319020862733 - ], - [ - 176.16183353356817, - -37.63555483905944 - ], - [ - 176.14582441581754, - -37.6426660851675 - ], - [ - 176.12940480786818, - -37.63329216984323 - ], - [ - 176.12529990588087, - -37.61713024687036 - ], - [ - 176.10559637634162, - -37.611635193059584 - ], - [ - 176.09492363117457, - -37.599998608519115 - ], - [ - 176.07316765064166, - -37.62230206222168 - ], - [ - 176.06454735646827, - -37.60807957000555 - ], - [ - 176.03376059156324, - -37.59741270084345 - ], - [ - 176.02883470917843, - -37.572846577924686 - ], - [ - 176.05387461130118, - -37.56605857027608 - ], - [ - 176.0382759837493, - -37.54957340884375 - ], - [ - 176.0189829444088, - -37.53729034738436 - ], - [ - 175.99517451288224, - -37.504966501438616 - ], - [ - 175.98450176771516, - -37.49914820916838 - ], - [ - 175.9886066697025, - -37.473612370871244 - ] - ] - ], - [ - [ - [ - 175.94016882625192, - -37.37502464073672 - ], - [ - 175.93934784585446, - -37.399267525196024 - ], - [ - 175.95740941459874, - -37.426096317330995 - ], - [ - 175.99148010109363, - -37.466177886303726 - ], - [ - 175.97875490493288, - -37.469087032438836 - ], - [ - 175.97095559115695, - -37.44710681719573 - ], - [ - 175.95535696360506, - -37.45098567870922 - ], - [ - 175.9397583360532, - -37.471026463195585 - ], - [ - 175.93606392426457, - -37.49429963227652 - ], - [ - 175.96356676757975, - -37.495592586114356 - ], - [ - 175.97834441473415, - -37.51369393984397 - ], - [ - 175.9606933361886, - -37.51983547057366 - ], - [ - 175.93688490466204, - -37.536320632005996 - ], - [ - 175.94961010082278, - -37.54472483195189 - ], - [ - 175.93360098307218, - -37.568967716411194 - ], - [ - 175.95166255181647, - -37.591594408573215 - ], - [ - 175.9668506891696, - -37.58254373170841 - ], - [ - 175.9799863755291, - -37.58997821627593 - ], - [ - 175.97259755195188, - -37.60193803927586 - ], - [ - 175.9910696108949, - -37.616483769951444 - ], - [ - 175.99189059129236, - -37.63232245446486 - ], - [ - 176.0165200032164, - -37.62424149297843 - ], - [ - 176.01693049341515, - -37.63717103135672 - ], - [ - 176.04361235633283, - -37.640726654410756 - ], - [ - 176.05100117991003, - -37.658828008140375 - ], - [ - 176.07398863103913, - -37.657858292762 - ], - [ - 176.0932816703796, - -37.66432306195115 - ], - [ - 176.10477539594416, - -37.68048498492402 - ], - [ - 176.1244789254834, - -37.65979772351874 - ], - [ - 176.1585496119783, - -37.66658573116735 - ], - [ - 176.14746637661247, - -37.684040607978055 - ], - [ - 176.16758039635044, - -37.70472786938333 - ], - [ - 176.185231474896, - -37.70796025397791 - ], - [ - 176.19918814165294, - -37.72024331543729 - ], - [ - 176.22628049476938, - -37.706020823221166 - ], - [ - 176.22217559278204, - -37.69373776176178 - ], - [ - 176.1901573572808, - -37.706020823221166 - ], - [ - 176.179074121915, - -37.69341452330232 - ], - [ - 176.19426225926813, - -37.681454700302396 - ], - [ - 176.17948461211373, - -37.66755544654572 - ], - [ - 176.17989510231246, - -37.63781750827564 - ], - [ - 176.19631471026182, - -37.6449287543837 - ], - [ - 176.22997490655797, - -37.66884840038355 - ], - [ - 176.28949598537437, - -37.697939861734724 - ], - [ - 176.3371128484275, - -37.713455307788685 - ], - [ - 176.4052542214173, - -37.7444861998966 - ], - [ - 176.42783118234766, - -37.75127420754521 - ], - [ - 176.44178784910463, - -37.763234030545135 - ], - [ - 176.46436481003497, - -37.74610239219389 - ], - [ - 176.47750049639444, - -37.75386011522087 - ], - [ - 176.46888020222104, - -37.772931184328854 - ], - [ - 176.49925647692734, - -37.77131499203157 - ], - [ - 176.56370343812856, - -37.80945713024755 - ], - [ - 176.60516294820067, - -37.831437345490656 - ], - [ - 176.6068049089956, - -37.85341756073377 - ], - [ - 176.60516294820067, - -37.90869133730099 - ], - [ - 176.60885735998926, - -37.91289343727394 - ], - [ - 176.60762588939306, - -38.01665298275979 - ], - [ - 176.60393147760448, - -38.01245088278684 - ], - [ - 176.56041951653867, - -38.00954173665173 - ], - [ - 176.53907402620453, - -37.994349529057224 - ], - [ - 176.5193704966653, - -38.00049105978691 - ], - [ - 176.50459284951089, - -37.983359421435665 - ], - [ - 176.50295088871596, - -37.96202568311148 - ], - [ - 176.4770900061957, - -37.97010664459791 - ], - [ - 176.41592696658438, - -37.95620739084124 - ], - [ - 176.39252902525655, - -37.958146821597985 - ], - [ - 176.35476392697305, - -37.942631375544025 - ], - [ - 176.29442186775918, - -37.939398990949456 - ], - [ - 176.27841275000856, - -37.949419383192634 - ], - [ - 176.23941618112886, - -37.96137920619256 - ], - [ - 176.21642872999976, - -37.9633186369493 - ], - [ - 176.19590422006308, - -37.958470060057444 - ], - [ - 176.17620069052384, - -37.964611590787136 - ], - [ - 176.1560866707859, - -37.95976301389527 - ], - [ - 176.12324745488718, - -37.969783406138454 - ], - [ - 176.1027229449505, - -37.96525806770605 - ], - [ - 176.08507186640495, - -37.992410098300475 - ], - [ - 176.06783127805812, - -38.02990575959754 - ], - [ - 176.0567480426923, - -38.016976221219245 - ], - [ - 176.03622353275563, - -38.01245088278684 - ], - [ - 176.0214458856012, - -37.99531924443559 - ], - [ - 175.97423951274683, - -37.987884759868074 - ], - [ - 175.9799863755291, - -37.97527845994923 - ], - [ - 175.95864088519494, - -37.96008625235473 - ], - [ - 175.94673666943166, - -37.93648984481433 - ], - [ - 175.95248353221393, - -37.923883544895496 - ], - [ - 175.97875490493288, - -37.91580258340906 - ], - [ - 175.96110382638733, - -37.9048124757875 - ], - [ - 175.96972412056076, - -37.88606464513897 - ], - [ - 175.94961010082278, - -37.88121606824711 - ], - [ - 175.93483245366838, - -37.86408442989586 - ], - [ - 175.9303170614823, - -37.84921546076082 - ], - [ - 175.9093820613469, - -37.833700014706864 - ], - [ - 175.92087578691144, - -37.80848741486918 - ], - [ - 175.92867510068737, - -37.77907271505855 - ], - [ - 175.90568764955827, - -37.732203138437214 - ], - [ - 175.9048666691608, - -37.72153626927512 - ], - [ - 175.83959872756213, - -37.643312562086415 - ], - [ - 175.8441141197482, - -37.609372523843376 - ], - [ - 175.8223581392153, - -37.58319020862733 - ], - [ - 175.81455882543938, - -37.563795901059876 - ], - [ - 175.83631480597228, - -37.5408459704384 - ], - [ - 175.81455882543938, - -37.51466365522234 - ], - [ - 175.81045392345203, - -37.49947144762784 - ], - [ - 175.8162007862343, - -37.486865147709 - ], - [ - 175.8354938255748, - -37.47037998627667 - ], - [ - 175.84329313935075, - -37.48977429384412 - ], - [ - 175.86053372769757, - -37.50108763992513 - ], - [ - 175.87366941405705, - -37.49720877841164 - ], - [ - 175.90076176717346, - -37.500441163006215 - ], - [ - 175.90363519856461, - -37.493976393817064 - ], - [ - 175.88557362982033, - -37.47231941703342 - ], - [ - 175.87243794346085, - -37.475875040087445 - ], - [ - 175.86176519829377, - -37.46262226324969 - ], - [ - 175.8974778455836, - -37.44710681719573 - ], - [ - 175.90979255154562, - -37.432884324979604 - ], - [ - 175.90404568876335, - -37.40702524822301 - ], - [ - 175.9167708849241, - -37.403469625168974 - ], - [ - 175.92498068889876, - -37.384721794520445 - ], - [ - 175.94016882625192, - -37.37502464073672 - ] - ] - ], - [ - [ - [ - 176.26199314205923, - -37.26835594911575 - ], - [ - 176.2812861813997, - -37.27320452600762 - ], - [ - 176.27061343623262, - -37.30455865657499 - ], - [ - 176.2582987302706, - -37.31102342576414 - ], - [ - 176.23613225953898, - -37.29259883357506 - ], - [ - 176.23818471053266, - -37.271911572169785 - ], - [ - 176.26199314205923, - -37.26835594911575 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2126, - "NAME_1": "Bay of Plenty", - "ID_2": 25179, - "NAME_2": "Whakatane", - "VARNAME_2": "", - "HASC_2": "NZ.BP.WH", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 177.06409099038504, - -38.010511452030094 - ], - [ - 177.06409099038504, - -38.02053184427328 - ], - [ - 177.09775118668122, - -38.021501559651654 - ], - [ - 177.1059609906559, - -38.04057262875964 - ], - [ - 177.1388002065546, - -38.079684482354 - ], - [ - 177.15932471649128, - -38.08453305924586 - ], - [ - 177.1704079518571, - -38.09746259762416 - ], - [ - 177.16507157927356, - -38.109745659083536 - ], - [ - 177.16958697145964, - -38.12461462821858 - ], - [ - 177.1548093243052, - -38.14562512808332 - ], - [ - 177.16589255967102, - -38.15823142800215 - ], - [ - 177.15768275569636, - -38.17730249711015 - ], - [ - 177.16055618708748, - -38.20865662767752 - ], - [ - 177.1556303047027, - -38.23192979675846 - ], - [ - 177.16712403026722, - -38.24485933513676 - ], - [ - 177.16137716748494, - -38.257465635055595 - ], - [ - 177.1728708930495, - -38.27007193497444 - ], - [ - 177.20653108934567, - -38.2703951734339 - ], - [ - 177.22130873650008, - -38.28752681178514 - ], - [ - 177.23567589345578, - -38.29399158097429 - ], - [ - 177.23075001107097, - -38.31726475005523 - ], - [ - 177.2176143247115, - -38.32114361156872 - ], - [ - 177.2130989325254, - -38.34441678064966 - ], - [ - 177.2336234424621, - -38.34861888062261 - ], - [ - 177.24511716802664, - -38.361548419000904 - ], - [ - 177.22910805027604, - -38.37189204970355 - ], - [ - 177.2237716776925, - -38.38449834962238 - ], - [ - 177.20406814815328, - -38.390639880352076 - ], - [ - 177.21515138351907, - -38.40324618027092 - ], - [ - 177.2057101089482, - -38.41165038021681 - ], - [ - 177.19175344219127, - -38.44332774924364 - ], - [ - 177.19667932457605, - -38.45819671837869 - ], - [ - 177.1827226578191, - -38.48955084894606 - ], - [ - 177.19750030497352, - -38.506682487297304 - ], - [ - 177.20612059914694, - -38.5257535564053 - ], - [ - 177.18190167742165, - -38.55516825621593 - ], - [ - 177.1827226578191, - -38.565511886918564 - ], - [ - 177.1704079518571, - -38.58038085605361 - ], - [ - 177.14454706933688, - -38.5887850559995 - ], - [ - 177.1277169711888, - -38.58846181754004 - ], - [ - 177.09693020628376, - -38.620139186566874 - ], - [ - 177.06080706879519, - -38.62628071729657 - ], - [ - 177.0345356960762, - -38.63436167878301 - ], - [ - 177.01524265673572, - -38.67832210926922 - ], - [ - 177.00333844097244, - -38.69319107840427 - ], - [ - 176.96803628388133, - -38.70935300137714 - ], - [ - 176.9507956955345, - -38.698686132215045 - ], - [ - 176.90974667566115, - -38.689635455350235 - ], - [ - 176.8912746167181, - -38.66797847856658 - ], - [ - 176.8547409890308, - -38.673796770836816 - ], - [ - 176.82970108690805, - -38.69254460148535 - ], - [ - 176.79891432200301, - -38.685433355377285 - ], - [ - 176.77551638067519, - -38.687372786134034 - ], - [ - 176.76443314530937, - -38.712585385971714 - ], - [ - 176.75417089034104, - -38.71032271675551 - ], - [ - 176.7393932431866, - -38.731009978160785 - ], - [ - 176.72256314503852, - -38.730686739701326 - ], - [ - 176.7114799096727, - -38.75589933953901 - ], - [ - 176.71599530185878, - -38.77076830867406 - ], - [ - 176.69957569390942, - -38.80826396997112 - ], - [ - 176.7114799096727, - -38.83186037751152 - ], - [ - 176.70244912530057, - -38.83994133899795 - ], - [ - 176.70039667430692, - -38.85674973888975 - ], - [ - 176.66181059562592, - -38.80341539307926 - ], - [ - 176.64498049747783, - -38.76527325486328 - ], - [ - 176.6310238307209, - -38.75880848567413 - ], - [ - 176.62281402674623, - -38.701595278350155 - ], - [ - 176.65154834065757, - -38.61141174816153 - ], - [ - 176.62445598754115, - -38.60882584048586 - ], - [ - 176.61132030118168, - -38.612704701999355 - ], - [ - 176.56206147733363, - -38.58458295602655 - ], - [ - 176.53784255560834, - -38.537713379405226 - ], - [ - 176.51731804567163, - -38.53318804097282 - ], - [ - 176.50910824169696, - -38.51411697186483 - ], - [ - 176.48201588858052, - -38.51153106418917 - ], - [ - 176.50089843772227, - -38.456903764540854 - ], - [ - 176.51321314368428, - -38.40421589564929 - ], - [ - 176.52799079083871, - -38.42134753400053 - ], - [ - 176.58545941866143, - -38.4307214493248 - ], - [ - 176.58751186965512, - -38.41391304943301 - ], - [ - 176.58299647746904, - -38.36090194208199 - ], - [ - 176.59079579124497, - -38.33148724227136 - ], - [ - 176.58710137945639, - -38.327285142298415 - ], - [ - 176.59161677164246, - -38.265869835001496 - ], - [ - 176.58833285005258, - -38.14756455884006 - ], - [ - 176.58669088925765, - -38.12623082051587 - ], - [ - 176.61008883058548, - -38.12461462821858 - ], - [ - 176.6055734383994, - -38.109745659083536 - ], - [ - 176.61214128157914, - -38.06966409011081 - ], - [ - 176.60762588939306, - -38.05479512097577 - ], - [ - 176.60762588939306, - -38.01665298275979 - ], - [ - 176.60885735998926, - -37.91289343727394 - ], - [ - 176.60516294820067, - -37.90869133730099 - ], - [ - 176.6068049089956, - -37.85341756073377 - ], - [ - 176.60516294820067, - -37.831437345490656 - ], - [ - 176.66057912502973, - -37.85471051457159 - ], - [ - 176.74965549815497, - -37.883801975922765 - ], - [ - 176.8219017731321, - -37.89382236816595 - ], - [ - 176.88224383234598, - -37.90966105267937 - ], - [ - 176.9347865777839, - -37.917418775706345 - ], - [ - 177.00580138216486, - -37.944570806300774 - ], - [ - 177.0185265783256, - -37.937782798652165 - ], - [ - 177.02386295090912, - -37.95685386776016 - ], - [ - 177.059575598199, - -37.97107635997629 - ], - [ - 177.0681958923724, - -37.9801270368411 - ], - [ - 177.05711265700657, - -37.99596572135451 - ], - [ - 177.06409099038504, - -38.010511452030094 - ] - ] - ], - [ - [ - [ - 177.18067020682545, - -37.50916860141157 - ], - [ - 177.19503736378113, - -37.51595660906017 - ], - [ - 177.1872380500052, - -37.53082557819522 - ], - [ - 177.16712403026722, - -37.51789603981692 - ], - [ - 177.18067020682545, - -37.50916860141157 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25180, - "NAME_2": "Ashburton", - "VARNAME_2": "", - "HASC_2": "NZ.CA.AB", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 172.1964982137997, - -43.90314856793971 - ], - [ - 172.1501128213428, - -43.916078106318004 - ], - [ - 172.08730782093653, - -43.93676536772328 - ], - [ - 171.98304331045813, - -43.976846936696006 - ], - [ - 171.82377311334943, - -44.04601996701991 - ], - [ - 171.65916654365716, - -44.112607089668145 - ], - [ - 171.5696796803332, - -44.15462808939762 - ], - [ - 171.5138530133054, - -44.18662869688391 - ], - [ - 171.50071732694593, - -44.16303228934351 - ], - [ - 171.49620193475985, - -44.11971833577621 - ], - [ - 171.47896134641303, - -44.09127335134395 - ], - [ - 171.46418369925863, - -44.08448534369535 - ], - [ - 171.435859875546, - -44.05345445158743 - ], - [ - 171.38824301249286, - -44.03890872091184 - ], - [ - 171.37223389474224, - -44.02145384410114 - ], - [ - 171.34226811023467, - -44.00755459034447 - ], - [ - 171.3061449727461, - -43.9677962598312 - ], - [ - 171.30778693354105, - -43.95034138302049 - ], - [ - 171.29547222757904, - -43.93708860618274 - ], - [ - 171.27700016863602, - -43.897976752588384 - ], - [ - 171.2827470314183, - -43.88504721421009 - ], - [ - 171.26673791366767, - -43.86759233739939 - ], - [ - 171.27412673724487, - -43.83753116066984 - ], - [ - 171.26550644307147, - -43.79001510712959 - ], - [ - 171.24498193313477, - -43.76771165342703 - ], - [ - 171.21788958001835, - -43.747670868940666 - ], - [ - 171.2002385014728, - -43.74702439202175 - ], - [ - 171.18792379551078, - -43.733771615184 - ], - [ - 171.16329438358676, - -43.73506456902182 - ], - [ - 171.13045516768804, - -43.727630084454304 - ], - [ - 171.11444604993744, - -43.7101752076436 - ], - [ - 171.01592840224131, - -43.68754851548157 - ], - [ - 170.98596261773375, - -43.67397250018436 - ], - [ - 170.91289536235914, - -43.594132600698366 - ], - [ - 170.91576879375026, - -43.58766783150922 - ], - [ - 170.86322604831236, - -43.53013138572579 - ], - [ - 170.8455749697668, - -43.52980814726633 - ], - [ - 170.79754761651495, - -43.515262416590744 - ], - [ - 170.77291820459092, - -43.516878608888035 - ], - [ - 170.74828879266687, - -43.490049816753064 - ], - [ - 170.726532812134, - -43.485201239861205 - ], - [ - 170.694104086434, - -43.44964500932088 - ], - [ - 170.63868790960495, - -43.46516045537484 - ], - [ - 170.61282702708473, - -43.455786540050575 - ], - [ - 170.6029752623151, - -43.46419073999647 - ], - [ - 170.6173424192708, - -43.43251337096964 - ], - [ - 170.6230892820531, - -43.419583832591336 - ], - [ - 170.66495928232393, - -43.38014874053753 - ], - [ - 170.64607673318216, - -43.36883539445652 - ], - [ - 170.66660124311886, - -43.363017102186284 - ], - [ - 170.68630477265808, - -43.34653194075395 - ], - [ - 170.71791251796057, - -43.342976317699915 - ], - [ - 170.7158600669669, - -43.32131934091627 - ], - [ - 170.73638457690362, - -43.315501048646034 - ], - [ - 170.75855104763522, - -43.32067286399735 - ], - [ - 170.7753811457833, - -43.310329233294716 - ], - [ - 170.8069888910858, - -43.30709684870014 - ], - [ - 170.840649087382, - -43.28640958729486 - ], - [ - 170.8710253620883, - -43.272187095078735 - ], - [ - 170.88005614646042, - -43.25311602597074 - ], - [ - 170.916179283949, - -43.22628723383577 - ], - [ - 170.9149478133528, - -43.21529712621422 - ], - [ - 170.94983948024517, - -43.20559997243049 - ], - [ - 170.94819751945025, - -43.22273161078174 - ], - [ - 170.96297516660465, - -43.2298428568898 - ], - [ - 170.99088850011856, - -43.22208513386283 - ], - [ - 171.02495918661347, - -43.17327612648475 - ], - [ - 171.0594403633071, - -43.163578972701025 - ], - [ - 171.0434312455565, - -43.145800857430864 - ], - [ - 171.0463046769476, - -43.13965932670117 - ], - [ - 171.07421801046152, - -43.131901603674194 - ], - [ - 171.06888163787798, - -43.11670939607969 - ], - [ - 171.1201929127197, - -43.09666861159333 - ], - [ - 171.1530321286184, - -43.10410309616085 - ], - [ - 171.16124193259307, - -43.1128305345662 - ], - [ - 171.15631605020826, - -43.136426942106596 - ], - [ - 171.1419488932526, - -43.168427549592884 - ], - [ - 171.144411834445, - -43.18976128791708 - ], - [ - 171.16452585418295, - -43.21206474161964 - ], - [ - 171.16575732477915, - -43.22273161078174 - ], - [ - 171.20229095246646, - -43.23469143378166 - ], - [ - 171.2474448743272, - -43.25537869518694 - ], - [ - 171.27043232545628, - -43.27121737970036 - ], - [ - 171.327900953279, - -43.27735891043005 - ], - [ - 171.34883595341444, - -43.27121737970036 - ], - [ - 171.378801737922, - -43.28511663345703 - ], - [ - 171.40178918905107, - -43.30095531797045 - ], - [ - 171.42190320878905, - -43.32325877167301 - ], - [ - 171.4407857579308, - -43.33457211775402 - ], - [ - 171.4625417384637, - -43.33942069464589 - ], - [ - 171.47075154243836, - -43.34814813305124 - ], - [ - 171.5101586015168, - -43.353643186862016 - ], - [ - 171.52534673886996, - -43.360754432970076 - ], - [ - 171.5343775232421, - -43.38047197899699 - ], - [ - 171.5672167391408, - -43.387906463564505 - ], - [ - 171.63576860232934, - -43.46322102461809 - ], - [ - 171.6230434061686, - -43.47776675529368 - ], - [ - 171.65506164166985, - -43.513322985834 - ], - [ - 171.68215399478626, - -43.53336377032036 - ], - [ - 171.71088830869763, - -43.53627291645548 - ], - [ - 171.77164085811023, - -43.57473829313092 - ], - [ - 171.78764997586086, - -43.59251640840108 - ], - [ - 171.80242762301526, - -43.59962765450915 - ], - [ - 171.83034095652917, - -43.63065854661706 - ], - [ - 171.841424191895, - -43.632921215833264 - ], - [ - 171.8574333096456, - -43.650699331103425 - ], - [ - 171.89930330991643, - -43.677851361697854 - ], - [ - 171.96539223191257, - -43.70338719999499 - ], - [ - 171.97360203588727, - -43.7124378768598 - ], - [ - 172.0179349773505, - -43.73312513826508 - ], - [ - 172.0396909578834, - -43.73797371515694 - ], - [ - 172.1550387037276, - -43.86662262202101 - ], - [ - 172.16160654690734, - -43.86468319126427 - ], - [ - 172.1964982137997, - -43.90314856793971 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25182, - "NAME_2": "Christchurch", - "VARNAME_2": "", - "HASC_2": "NZ.CA.CC", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 172.38409223462105, - -43.85595575285892 - ], - [ - 172.40872164654508, - -43.8333290606969 - ], - [ - 172.57086527504492, - -43.76480250729191 - ], - [ - 172.57004429464746, - -43.75413563812982 - ], - [ - 172.60124154975122, - -43.75090325353524 - ], - [ - 172.6069884125335, - -43.73797371515694 - ], - [ - 172.59426321637275, - -43.714054069157086 - ], - [ - 172.60616743213603, - -43.68851823085995 - ], - [ - 172.61601919690565, - -43.680114030914055 - ], - [ - 172.62669194207274, - -43.643911323454816 - ], - [ - 172.6032940007449, - -43.6174057697793 - ], - [ - 172.57455968683354, - -43.614173385184735 - ], - [ - 172.55485615729432, - -43.59219316994162 - ], - [ - 172.52119596099814, - -43.573768577752546 - ], - [ - 172.49081968629184, - -43.54920245483378 - ], - [ - 172.46290635277794, - -43.55696017786076 - ], - [ - 172.44320282323872, - -43.5346567241582 - ], - [ - 172.43006713687925, - -43.51073707815834 - ], - [ - 172.44361331343745, - -43.46806960150996 - ], - [ - 172.4259622348919, - -43.46742312459104 - ], - [ - 172.4029747837628, - -43.451584440077625 - ], - [ - 172.4210363525071, - -43.45223091699654 - ], - [ - 172.46208537238047, - -43.440271093996614 - ], - [ - 172.4867147843045, - -43.43897814015879 - ], - [ - 172.5084707648374, - -43.44382671705065 - ], - [ - 172.5400785101399, - -43.44059433245607 - ], - [ - 172.57455968683354, - -43.430897178672346 - ], - [ - 172.58523243200062, - -43.433483086348005 - ], - [ - 172.66076262856762, - -43.41182610956436 - ], - [ - 172.66363605995878, - -43.40536134037521 - ], - [ - 172.68169762870306, - -43.39113884815908 - ], - [ - 172.7112529230119, - -43.39372475583474 - ], - [ - 172.71494733480048, - -43.44576614780739 - ], - [ - 172.71946272698656, - -43.47033227072616 - ], - [ - 172.74121870751947, - -43.539505301050056 - ], - [ - 172.72767253096123, - -43.5262525242123 - ], - [ - 172.71453684460175, - -43.55502074710402 - ], - [ - 172.73711380553212, - -43.555990462482384 - ], - [ - 172.7551753742764, - -43.56374818550937 - ], - [ - 172.7781628254055, - -43.58346573153627 - ], - [ - 172.79991880593838, - -43.58087982386061 - ], - [ - 172.80402370792572, - -43.593486123779456 - ], - [ - 172.75107047228906, - -43.59801146221186 - ], - [ - 172.7321879231473, - -43.60900156983341 - ], - [ - 172.70591655042836, - -43.6128804313469 - ], - [ - 172.67964517770938, - -43.607708615995584 - ], - [ - 172.6517318441955, - -43.622900823590086 - ], - [ - 172.66445704035624, - -43.66104296180606 - ], - [ - 172.6821081189018, - -43.64649723113048 - ], - [ - 172.69852772685115, - -43.655547907995285 - ], - [ - 172.7112529230119, - -43.64294160807645 - ], - [ - 172.71823125639037, - -43.62451701588737 - ], - [ - 172.75435439387894, - -43.636800077346756 - ], - [ - 172.77118449202703, - -43.61546633902256 - ], - [ - 172.8134649824966, - -43.61320366980636 - ], - [ - 172.8315265512409, - -43.60673890061721 - ], - [ - 172.83439998263202, - -43.63550712350892 - ], - [ - 172.8536930219725, - -43.60286003910372 - ], - [ - 172.8787329240953, - -43.607385377536126 - ], - [ - 172.9091091988016, - -43.62322406204954 - ], - [ - 172.8972049830383, - -43.648113423427766 - ], - [ - 172.89638400264084, - -43.66330563102227 - ], - [ - 172.88653223787122, - -43.67170983096816 - ], - [ - 172.90130988502563, - -43.6820534616708 - ], - [ - 172.91444557138513, - -43.648113423427766 - ], - [ - 172.93250714012942, - -43.62225434667117 - ], - [ - 172.94646380688636, - -43.635183885049464 - ], - [ - 172.97848204238758, - -43.63227473891435 - ], - [ - 172.99982753272175, - -43.64488103883319 - ], - [ - 173.0031114543116, - -43.66104296180606 - ], - [ - 173.0211730230559, - -43.652962000319626 - ], - [ - 173.0404660623964, - -43.6561943849142 - ], - [ - 173.0733052782951, - -43.67461897710328 - ], - [ - 173.06140106253181, - -43.69045766161669 - ], - [ - 173.07905214107737, - -43.695629476968016 - ], - [ - 173.09382978823177, - -43.68948794623832 - ], - [ - 173.11024939618113, - -43.70015481540042 - ], - [ - 173.10737596479, - -43.714377307616544 - ], - [ - 173.1303634159191, - -43.74734763048121 - ], - [ - 173.12625851393176, - -43.77417642261618 - ], - [ - 173.10901792558494, - -43.77449966107564 - ], - [ - 173.11230184717482, - -43.80100521475115 - ], - [ - 173.0962927294242, - -43.81005589161596 - ], - [ - 173.0962927294242, - -43.82427838383209 - ], - [ - 173.08274655286598, - -43.84884450675085 - ], - [ - 173.05565419974954, - -43.85143041442651 - ], - [ - 173.03882410160145, - -43.872764152750705 - ], - [ - 173.01337370927996, - -43.88375426037226 - ], - [ - 172.97848204238758, - -43.890865506480324 - ], - [ - 172.968630277618, - -43.87535006042636 - ], - [ - 172.94194841470028, - -43.86209728358861 - ], - [ - 172.93907498330915, - -43.85498603748054 - ], - [ - 172.94400086569394, - -43.82136923769697 - ], - [ - 172.96575684622684, - -43.807146745480836 - ], - [ - 172.94892674807875, - -43.80068197629169 - ], - [ - 172.94523233629016, - -43.7838735763999 - ], - [ - 172.95877851284837, - -43.76286307653517 - ], - [ - 172.91978194396864, - -43.75833773810276 - ], - [ - 172.90951968900032, - -43.78031795334587 - ], - [ - 172.92470782635345, - -43.79744959169712 - ], - [ - 172.91855047337245, - -43.81070236853487 - ], - [ - 172.9045938066155, - -43.815874183886194 - ], - [ - 172.91034066939778, - -43.857248706696744 - ], - [ - 172.94933723827748, - -43.893128175696525 - ], - [ - 172.92963370873827, - -43.90282532948025 - ], - [ - 172.90993017919905, - -43.893128175696525 - ], - [ - 172.8848902770763, - -43.8986232295073 - ], - [ - 172.82454821786243, - -43.88698664496683 - ], - [ - 172.82126429627255, - -43.87211767583179 - ], - [ - 172.78103625679663, - -43.86953176815613 - ], - [ - 172.7584592958663, - -43.852400129804884 - ], - [ - 172.74942851149413, - -43.85530927594 - ], - [ - 172.7186417465891, - -43.82848048380503 - ], - [ - 172.7005801778448, - -43.827187529967205 - ], - [ - 172.61150380471958, - -43.831712868399606 - ], - [ - 172.50600782364498, - -43.84399592985899 - ], - [ - 172.4173419407185, - -43.85110717596705 - ], - [ - 172.38409223462105, - -43.85595575285892 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25183, - "NAME_2": "Hurunui", - "VARNAME_2": "", - "HASC_2": "NZ.CA.HN", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 172.73054596235238, - -42.0998012026265 - ], - [ - 172.74080821732073, - -42.12986237935605 - ], - [ - 172.7321879231473, - -42.148933448464035 - ], - [ - 172.74819704089794, - -42.16638832527474 - ], - [ - 172.77652086461057, - -42.169620709869314 - ], - [ - 172.81059155110546, - -42.15992355608559 - ], - [ - 172.8085391001118, - -42.17705519443684 - ], - [ - 172.81674890408647, - -42.18578263284219 - ], - [ - 172.8438412572029, - -42.17802490981521 - ], - [ - 172.8463041983953, - -42.1993586481394 - ], - [ - 172.83234753163836, - -42.203237509652894 - ], - [ - 172.83604194342695, - -42.23556135559864 - ], - [ - 172.84794615919023, - -42.248814132436394 - ], - [ - 172.87626998290287, - -42.25172327857151 - ], - [ - 172.85656645336366, - -42.296006947517185 - ], - [ - 172.86847066912694, - -42.30925972435494 - ], - [ - 172.923886845956, - -42.30441114746308 - ], - [ - 172.93989596370662, - -42.32218926273324 - ], - [ - 172.930044198937, - -42.330270224219674 - ], - [ - 172.9394854735079, - -42.34998777024658 - ], - [ - 172.96083096384203, - -42.354836347138445 - ], - [ - 172.95221066966863, - -42.37390741624643 - ], - [ - 172.98587086596478, - -42.39200876997605 - ], - [ - 173.0100897876901, - -42.39039257767877 - ], - [ - 172.98504988556732, - -42.44728254654328 - ], - [ - 172.9957226307344, - -42.44986845421894 - ], - [ - 173.02979331722932, - -42.44017130043521 - ], - [ - 173.05360174875588, - -42.46635361565127 - ], - [ - 173.0478548859736, - -42.47928315402957 - ], - [ - 173.062632533128, - -42.486071161678176 - ], - [ - 173.08315704306472, - -42.48025286940794 - ], - [ - 173.09834518041785, - -42.459242369543205 - ], - [ - 173.14555155327224, - -42.44566635424599 - ], - [ - 173.16977047499753, - -42.44437340040816 - ], - [ - 173.17715929857474, - -42.41463546213807 - ], - [ - 173.21081949487092, - -42.405261546813804 - ], - [ - 173.22190273023674, - -42.380048946976125 - ], - [ - 173.23544890679494, - -42.37617008546263 - ], - [ - 173.23298596560255, - -42.354836347138445 - ], - [ - 173.25720488732784, - -42.35354339330061 - ], - [ - 173.28142380905314, - -42.352250439462786 - ], - [ - 173.30400076998347, - -42.36776588551674 - ], - [ - 173.32411478972145, - -42.36227083170596 - ], - [ - 173.32288331912525, - -42.35160396254387 - ], - [ - 173.37008969197962, - -42.33835118570611 - ], - [ - 173.38856175092266, - -42.34966453178713 - ], - [ - 173.37912047635177, - -42.35774549327356 - ], - [ - 173.38527782933278, - -42.38360457003016 - ], - [ - 173.40908626085934, - -42.40978688524621 - ], - [ - 173.41442263344288, - -42.424979092840715 - ], - [ - 173.449724790534, - -42.46441418489452 - ], - [ - 173.44561988854664, - -42.48768735397546 - ], - [ - 173.43453665318083, - -42.51257671535369 - ], - [ - 173.41975900602642, - -42.50578870770508 - ], - [ - 173.38938273132013, - -42.509021092299655 - ], - [ - 173.40087645688467, - -42.52195063067795 - ], - [ - 173.4328946923859, - -42.529385115245475 - ], - [ - 173.44069400616183, - -42.538112553650826 - ], - [ - 173.47148077106687, - -42.53488016905625 - ], - [ - 173.4911843006061, - -42.556537145839904 - ], - [ - 173.50760390855544, - -42.565264584245256 - ], - [ - 173.49939410458077, - -42.567527253461456 - ], - [ - 173.47845910444536, - -42.59403280713697 - ], - [ - 173.4316632217897, - -42.681307191190484 - ], - [ - 173.37378410376823, - -42.78183435208176 - ], - [ - 173.3684477311847, - -42.79573360583843 - ], - [ - 173.3150840053493, - -42.8506841439462 - ], - [ - 173.30851616216955, - -42.864906636162324 - ], - [ - 173.31918890733664, - -42.884947420648686 - ], - [ - 173.30687420137463, - -42.889149520621636 - ], - [ - 173.29209655422022, - -42.90595792051342 - ], - [ - 173.24899508335315, - -42.94442329718886 - ], - [ - 173.2424272401734, - -42.95412045097258 - ], - [ - 173.18660057314563, - -42.97771685851298 - ], - [ - 173.16977047499753, - -42.97771685851298 - ], - [ - 173.13980469048997, - -42.989676681512904 - ], - [ - 173.1024500824052, - -43.02458643513431 - ], - [ - 173.08151508226976, - -43.05173846572874 - ], - [ - 173.05729616054447, - -43.04527369653959 - ], - [ - 173.0113212582863, - -43.06046590413409 - ], - [ - 172.99367017974075, - -43.073072204052934 - ], - [ - 172.9021308654231, - -43.09957775772845 - ], - [ - 172.8922791006535, - -43.0976383269717 - ], - [ - 172.86764968872947, - -43.11250729610674 - ], - [ - 172.84425174740164, - -43.13287131905256 - ], - [ - 172.82044331587508, - -43.13319455751202 - ], - [ - 172.7929404725599, - -43.159053634268616 - ], - [ - 172.77159498222576, - -43.186528903322504 - ], - [ - 172.73793478592958, - -43.24180267988973 - ], - [ - 172.73629282513465, - -43.227256949214144 - ], - [ - 172.7186417465891, - -43.226933710754686 - ], - [ - 172.68867596208153, - -43.21303445699802 - ], - [ - 172.68744449148534, - -43.202044349376465 - ], - [ - 172.63038635386133, - -43.19622605710623 - ], - [ - 172.62176605968793, - -43.215620364673676 - ], - [ - 172.60534645173857, - -43.22596399537632 - ], - [ - 172.5995995889563, - -43.23889353375461 - ], - [ - 172.5860534123981, - -43.242772395268105 - ], - [ - 172.54172047093482, - -43.19396338789002 - ], - [ - 172.53679458855004, - -43.17844794183607 - ], - [ - 172.55321419649937, - -43.168104311133426 - ], - [ - 172.5413099807361, - -43.15485153429567 - ], - [ - 172.5097022354336, - -43.15840715734971 - ], - [ - 172.49246164708677, - -43.12963893445799 - ], - [ - 172.46536929397035, - -43.13771989594443 - ], - [ - 172.46331684297667, - -43.15485153429567 - ], - [ - 172.4456657644311, - -43.15420505737676 - ], - [ - 172.43663498005898, - -43.13448751134985 - ], - [ - 172.4464867448286, - -43.12640654986342 - ], - [ - 172.4222678231033, - -43.09957775772845 - ], - [ - 172.4091321367438, - -43.075334873269135 - ], - [ - 172.42555174469317, - -43.0649912425665 - ], - [ - 172.43417203886656, - -43.045920173458505 - ], - [ - 172.41405801912862, - -43.02361671975594 - ], - [ - 172.38573419541598, - -43.020707573620825 - ], - [ - 172.37711390124258, - -43.04010188118827 - ], - [ - 172.3455061559401, - -43.043334265782846 - ], - [ - 172.34632713633755, - -43.01521251981005 - ], - [ - 172.30486762626543, - -43.027172342809976 - ], - [ - 172.290089979111, - -43.02038433516137 - ], - [ - 172.26628154758447, - -42.993555543026396 - ], - [ - 172.28680605752115, - -42.98773725075616 - ], - [ - 172.27449135155913, - -42.97448447391841 - ], - [ - 172.24329409645537, - -42.978040096972435 - ], - [ - 172.2231800767174, - -42.95573664326987 - ], - [ - 172.23672625327563, - -42.95185778175638 - ], - [ - 172.2605346848022, - -42.939574720297 - ], - [ - 172.25807174360978, - -42.91791774351335 - ], - [ - 172.2461675278465, - -42.9046649666756 - ], - [ - 172.25191439062877, - -42.891735428297295 - ], - [ - 172.26546056718698, - -42.8878565667838 - ], - [ - 172.2740808613604, - -42.868785497675816 - ], - [ - 172.24124164546168, - -42.86135101310829 - ], - [ - 172.21414929234527, - -42.869108736135274 - ], - [ - 172.18131007644655, - -42.86167425156775 - ], - [ - 172.16078556650987, - -42.86749254383798 - ], - [ - 172.1185050760403, - -42.86846225921636 - ], - [ - 172.11357919365548, - -42.853270051621855 - ], - [ - 172.09346517391754, - -42.83128983637875 - ], - [ - 172.07170919338463, - -42.826118021027426 - ], - [ - 172.0396909578834, - -42.79088502894656 - ], - [ - 172.0179349773505, - -42.785713213595244 - ], - [ - 172.00972517337584, - -42.77698577518989 - ], - [ - 171.9448677219759, - -42.76211680605485 - ], - [ - 171.9206488002506, - -42.735611252379336 - ], - [ - 171.89725085892277, - -42.74789431383872 - ], - [ - 171.89478791773038, - -42.726237337055075 - ], - [ - 171.8939669373329, - -42.715247229433515 - ], - [ - 171.9144914472696, - -42.70942893716328 - ], - [ - 171.93460546700754, - -42.664822029758156 - ], - [ - 171.9826328202594, - -42.65092277600148 - ], - [ - 171.99125311443282, - -42.63185170689349 - ], - [ - 172.00192585959988, - -42.63411437610969 - ], - [ - 172.02942870291506, - -42.626356653082716 - ], - [ - 172.0442063500695, - -42.63346789919078 - ], - [ - 172.11275821325802, - -42.61375035316387 - ], - [ - 172.10495889948209, - -42.60469967629906 - ], - [ - 172.12014703683522, - -42.583689176434326 - ], - [ - 172.13164076239977, - -42.55815333813719 - ], - [ - 172.17268978227315, - -42.54651675359672 - ], - [ - 172.18951988042124, - -42.536173122894084 - ], - [ - 172.1977296843959, - -42.51710205378609 - ], - [ - 172.18993037061998, - -42.50805137692128 - ], - [ - 172.20922340996046, - -42.49156621548895 - ], - [ - 172.23959968466676, - -42.477343723272824 - ], - [ - 172.24821997884015, - -42.45794941570537 - ], - [ - 172.27161792016798, - -42.445989592705445 - ], - [ - 172.29583684189328, - -42.44437340040816 - ], - [ - 172.31430890083632, - -42.41689813135427 - ], - [ - 172.34140125395274, - -42.409140408327296 - ], - [ - 172.35699988150463, - -42.38812990846256 - ], - [ - 172.41159507793623, - -42.372614462408606 - ], - [ - 172.42637272509063, - -42.37940247005721 - ], - [ - 172.45674899979693, - -42.36550321630054 - ], - [ - 172.4624958625792, - -42.35257367792224 - ], - [ - 172.45715948999566, - -42.33738147032774 - ], - [ - 172.46290635277794, - -42.3247751704089 - ], - [ - 172.4793259607273, - -42.31443153970626 - ], - [ - 172.47440007834248, - -42.29923933211176 - ], - [ - 172.4879462549007, - -42.29536047059827 - ], - [ - 172.49656654907412, - -42.27628940149028 - ], - [ - 172.48835674509945, - -42.26756196308493 - ], - [ - 172.53351066696015, - -42.26045071697686 - ], - [ - 172.54213096113358, - -42.241379647868875 - ], - [ - 172.56224498087153, - -42.23556135559864 - ], - [ - 172.57086527504492, - -42.21649028649065 - ], - [ - 172.61848213809805, - -42.202914271193436 - ], - [ - 172.62422900088032, - -42.19030797127459 - ], - [ - 172.62217654988666, - -42.1689742329504 - ], - [ - 172.6361332166436, - -42.13729686392357 - ], - [ - 172.6566577265803, - -42.13147857165333 - ], - [ - 172.64475351081703, - -42.11822579481558 - ], - [ - 172.64639547161195, - -42.101094156464335 - ], - [ - 172.69401233466508, - -42.087841379626575 - ], - [ - 172.70222213863974, - -42.096568818031926 - ], - [ - 172.73054596235238, - -42.0998012026265 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25184, - "NAME_2": "Kaikoura", - "VARNAME_2": "", - "HASC_2": "NZ.CA.KK", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.05191391207646, - -41.96662695733003 - ], - [ - 174.0207166569727, - -41.990546603329875 - ], - [ - 174.01250685299803, - -42.00412261862709 - ], - [ - 173.98869842147147, - -42.02448664157291 - ], - [ - 173.95544871537402, - -42.06133582595106 - ], - [ - 173.93902910742466, - -42.08881109500495 - ], - [ - 173.92630391126391, - -42.11984198711286 - ], - [ - 173.92507244066772, - -42.13600391008574 - ], - [ - 173.94026057802088, - -42.1583073637883 - ], - [ - 173.9295878328538, - -42.17479252522063 - ], - [ - 173.90331646013482, - -42.183196725166525 - ], - [ - 173.87827655801206, - -42.20032836351778 - ], - [ - 173.87417165602474, - -42.214550855733904 - ], - [ - 173.85816253827412, - -42.21972267108522 - ], - [ - 173.84666881270957, - -42.23685430943647 - ], - [ - 173.8117771458172, - -42.255278901625545 - ], - [ - 173.8072617536311, - -42.26562253232818 - ], - [ - 173.76539175336026, - -42.282754170679425 - ], - [ - 173.7485616552122, - -42.300532285949586 - ], - [ - 173.75020361600713, - -42.3202498319765 - ], - [ - 173.70422871374893, - -42.34869481640875 - ], - [ - 173.68945106659453, - -42.36679617013837 - ], - [ - 173.68247273321606, - -42.39039257767877 - ], - [ - 173.68863008619707, - -42.4114030775435 - ], - [ - 173.71572243931348, - -42.4220699467056 - ], - [ - 173.70094479215908, - -42.43306005432715 - ], - [ - 173.68042028222237, - -42.42627204667854 - ], - [ - 173.67795734102998, - -42.41754460827319 - ], - [ - 173.64511812513126, - -42.415928415975905 - ], - [ - 173.59216488949463, - -42.43079738511095 - ], - [ - 173.58764949730855, - -42.443726923489244 - ], - [ - 173.5482424382301, - -42.45956560800266 - ], - [ - 173.52935988908834, - -42.47928315402957 - ], - [ - 173.5071934183567, - -42.51289995381315 - ], - [ - 173.5010360653757, - -42.54522379975889 - ], - [ - 173.5141717517352, - -42.5542744766237 - ], - [ - 173.50760390855544, - -42.565264584245256 - ], - [ - 173.4911843006061, - -42.556537145839904 - ], - [ - 173.47148077106687, - -42.53488016905625 - ], - [ - 173.44069400616183, - -42.538112553650826 - ], - [ - 173.4328946923859, - -42.529385115245475 - ], - [ - 173.40087645688467, - -42.52195063067795 - ], - [ - 173.38938273132013, - -42.509021092299655 - ], - [ - 173.41975900602642, - -42.50578870770508 - ], - [ - 173.43453665318083, - -42.51257671535369 - ], - [ - 173.44561988854664, - -42.48768735397546 - ], - [ - 173.449724790534, - -42.46441418489452 - ], - [ - 173.41442263344288, - -42.424979092840715 - ], - [ - 173.40908626085934, - -42.40978688524621 - ], - [ - 173.38527782933278, - -42.38360457003016 - ], - [ - 173.37912047635177, - -42.35774549327356 - ], - [ - 173.38856175092266, - -42.34966453178713 - ], - [ - 173.37008969197962, - -42.33835118570611 - ], - [ - 173.32288331912525, - -42.35160396254387 - ], - [ - 173.32411478972145, - -42.36227083170596 - ], - [ - 173.30400076998347, - -42.36776588551674 - ], - [ - 173.28142380905314, - -42.352250439462786 - ], - [ - 173.25720488732784, - -42.35354339330061 - ], - [ - 173.2424272401734, - -42.34643214719255 - ], - [ - 173.19029498493424, - -42.34481595489526 - ], - [ - 173.19563135751775, - -42.332209654976424 - ], - [ - 173.21985027924305, - -42.33091670113859 - ], - [ - 173.221492240038, - -42.313785062787346 - ], - [ - 173.25515243633416, - -42.30441114746308 - ], - [ - 173.29332802481642, - -42.271440824598415 - ], - [ - 173.31344204455436, - -42.26594577078764 - ], - [ - 173.32575675051638, - -42.25140004011205 - ], - [ - 173.38609880973024, - -42.23426840176081 - ], - [ - 173.4316632217897, - -42.210025517301496 - ], - [ - 173.47845910444536, - -42.19677274046374 - ], - [ - 173.4961101829909, - -42.169297471409855 - ], - [ - 173.48051155543902, - -42.15184259459915 - ], - [ - 173.48584792802257, - -42.139236294680316 - ], - [ - 173.4768171436504, - -42.119518748653405 - ], - [ - 173.49693116338838, - -42.11370045638317 - ], - [ - 173.4948787123947, - -42.09236671805898 - ], - [ - 173.5203291047162, - -42.073942125869905 - ], - [ - 173.55768371280098, - -42.06844707205913 - ], - [ - 173.57820822273766, - -42.03483027227555 - ], - [ - 173.60201665426422, - -42.033214079978265 - ], - [ - 173.6102264582389, - -42.01414301087027 - ], - [ - 173.63403488976547, - -42.01252681857299 - ], - [ - 173.6672845958629, - -42.00282966478926 - ], - [ - 173.66892655665782, - -41.985698026438016 - ], - [ - 173.708744105935, - -41.97373820343809 - ], - [ - 173.7181853805059, - -41.965334003492195 - ], - [ - 173.71982734130083, - -41.94787912668149 - ], - [ - 173.73091057666664, - -41.922343288384354 - ], - [ - 173.75348753759698, - -41.91006022692497 - ], - [ - 173.77565400832862, - -41.92557567297893 - ], - [ - 173.79617851826532, - -41.958222757384135 - ], - [ - 173.81218763601592, - -41.947555888222034 - ], - [ - 173.81752400859946, - -41.9349495883032 - ], - [ - 173.8520051852931, - -41.93527282676265 - ], - [ - 173.91850459748798, - -41.91426232689792 - ], - [ - 173.92630391126391, - -41.92298976530327 - ], - [ - 173.95955361736137, - -41.91264613460063 - ], - [ - 173.97884665670185, - -41.93430311138428 - ], - [ - 174.00306557842714, - -41.93236368062753 - ], - [ - 174.01784322558154, - -41.93882844981668 - ], - [ - 174.05150342187773, - -41.92816158065459 - ], - [ - 174.0666915592309, - -41.93462634984374 - ], - [ - 174.05191391207646, - -41.96662695733003 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25185, - "NAME_2": "Mackenzie", - "VARNAME_2": "", - "HASC_2": "NZ.CA.MZ", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 170.6173424192708, - -43.43251337096964 - ], - [ - 170.6029752623151, - -43.46419073999647 - ], - [ - 170.5894290857569, - -43.46806960150996 - ], - [ - 170.60543820350753, - -43.485847716780114 - ], - [ - 170.62760467423914, - -43.49069629367198 - ], - [ - 170.6284256546366, - -43.501363162834075 - ], - [ - 170.66906418431125, - -43.54564683177975 - ], - [ - 170.694104086434, - -43.544353877941916 - ], - [ - 170.7129866355758, - -43.55566722402293 - ], - [ - 170.72694330233273, - -43.55178836250944 - ], - [ - 170.738847518096, - -43.565041139347194 - ], - [ - 170.72242791014665, - -43.57538477004984 - ], - [ - 170.74664683187194, - -43.60189032372535 - ], - [ - 170.73227967491627, - -43.63356769275218 - ], - [ - 170.7129866355758, - -43.65037609264397 - ], - [ - 170.72078594935172, - -43.65910353104932 - ], - [ - 170.69985094921628, - -43.6927203308329 - ], - [ - 170.70806075319098, - -43.70177100769771 - ], - [ - 170.6912306550429, - -43.711791399940886 - ], - [ - 170.7035453610049, - -43.7253674152381 - ], - [ - 170.69082016484415, - -43.73991314591369 - ], - [ - 170.7109341845821, - -43.76221659961625 - ], - [ - 170.74664683187194, - -43.76318631499463 - ], - [ - 170.72981673372385, - -43.8013284532106 - ], - [ - 170.73104820432008, - -43.81231856083216 - ], - [ - 170.75978251823142, - -43.81522770696728 - ], - [ - 170.78030702816812, - -43.80940941469704 - ], - [ - 170.79056928313648, - -43.773206707237804 - ], - [ - 170.81232526366935, - -43.778055284129664 - ], - [ - 170.83284977360606, - -43.77223699185943 - ], - [ - 170.85624771493386, - -43.78807567637285 - ], - [ - 170.87636173467183, - -43.81037913007541 - ], - [ - 170.91084291136548, - -43.80068197629169 - ], - [ - 170.92356810752622, - -43.78581300715665 - ], - [ - 170.97159546077808, - -43.77223699185943 - ], - [ - 171.0327585003894, - -43.74411524588663 - ], - [ - 171.05164104953116, - -43.75542859196764 - ], - [ - 171.07914389284633, - -43.747670868940666 - ], - [ - 171.09022712821212, - -43.750256776616325 - ], - [ - 171.1103411479501, - -43.77223699185943 - ], - [ - 171.14318036384878, - -43.779671476426955 - ], - [ - 171.15672654040702, - -43.80391436088627 - ], - [ - 171.18546085431836, - -43.806823507021385 - ], - [ - 171.22568889379428, - -43.85110717596705 - ], - [ - 171.2211735016082, - -43.87470358350745 - ], - [ - 171.2293833055829, - -43.8834310219128 - ], - [ - 171.21665810942216, - -43.89829999104784 - ], - [ - 171.20434340346014, - -43.88504721421009 - ], - [ - 171.17684056014497, - -43.89280493723707 - ], - [ - 171.18505036411963, - -43.90153237564242 - ], - [ - 171.18751330531205, - -43.92318935242607 - ], - [ - 171.14892722663106, - -43.92836116777739 - ], - [ - 171.09925791258428, - -43.931270313912506 - ], - [ - 171.0947425203982, - -43.9548667214529 - ], - [ - 171.08119634384, - -43.958745582966394 - ], - [ - 171.0413787945628, - -43.95292729069616 - ], - [ - 171.02619065720967, - -43.94613928304755 - ], - [ - 170.99827732369576, - -43.915108390939636 - ], - [ - 170.99376193150968, - -43.938704798480025 - ], - [ - 171.00279271588184, - -43.958422344506936 - ], - [ - 170.979394774554, - -43.970705405966314 - ], - [ - 170.9621541862072, - -44.008847544182295 - ], - [ - 170.98226820594516, - -44.031150997884865 - ], - [ - 170.9974563432983, - -44.037939005533474 - ], - [ - 170.9781633039578, - -44.05474740542526 - ], - [ - 170.9941724217084, - -44.07220228223596 - ], - [ - 170.9867835981312, - -44.1022634589655 - ], - [ - 171.0110025198565, - -44.129092251100474 - ], - [ - 170.99950879429196, - -44.15462808939762 - ], - [ - 170.98719408832994, - -44.169173820073205 - ], - [ - 170.96133320580972, - -44.160123143208395 - ], - [ - 170.92562055851988, - -44.15915342783002 - ], - [ - 170.9137163427566, - -44.14557741253281 - ], - [ - 170.87677222487056, - -44.13394082799234 - ], - [ - 170.87513026407564, - -44.151072466343585 - ], - [ - 170.8833400680503, - -44.160123143208395 - ], - [ - 170.8665099699022, - -44.17046677391103 - ], - [ - 170.8747197738769, - -44.17919421231638 - ], - [ - 170.87307781308195, - -44.196649089127085 - ], - [ - 170.88662398964019, - -44.2208919735864 - ], - [ - 170.91084291136548, - -44.24739752726191 - ], - [ - 170.90796947997433, - -44.25386229645106 - ], - [ - 170.96051222541226, - -44.311721980693946 - ], - [ - 170.96995349998312, - -44.33143952672085 - ], - [ - 170.9683115391882, - -44.34889440353155 - ], - [ - 170.98432065693882, - -44.366672518801714 - ], - [ - 170.94491359786036, - -44.36117746499094 - ], - [ - 170.9124848721604, - -44.325621234450615 - ], - [ - 170.8771827150693, - -44.32465151907224 - ], - [ - 170.84967987175412, - -44.33273248055868 - ], - [ - 170.85091134235034, - -44.343722588180235 - ], - [ - 170.80986232247696, - -44.35568241118016 - ], - [ - 170.79139026353394, - -44.3834809186935 - ], - [ - 170.7996000675086, - -44.39253159555831 - ], - [ - 170.7872853615466, - -44.407400564693354 - ], - [ - 170.8115042832719, - -44.43390611836887 - ], - [ - 170.7798965379694, - -44.4374617414229 - ], - [ - 170.75978251823142, - -44.41515828772033 - ], - [ - 170.74500487107701, - -44.37992529563947 - ], - [ - 170.6670117333176, - -44.37992529563947 - ], - [ - 170.64566624298342, - -44.34663173431535 - ], - [ - 170.61405849768093, - -44.350187357369386 - ], - [ - 170.59394447794298, - -44.327883903666816 - ], - [ - 170.5845032033721, - -44.307843119180454 - ], - [ - 170.42605398666086, - -44.38089501101784 - ], - [ - 170.2433858482243, - -44.465906725855156 - ], - [ - 170.23640751484584, - -44.46752291815244 - ], - [ - 170.23271310305725, - -44.43487583374724 - ], - [ - 170.24133339723065, - -44.41580476463925 - ], - [ - 170.2212193774927, - -44.39317807247723 - ], - [ - 170.21588300490916, - -44.377985864882724 - ], - [ - 170.22573476967875, - -44.36958166493683 - ], - [ - 170.2203983970952, - -44.35406621888287 - ], - [ - 170.19741094596614, - -44.33822753436946 - ], - [ - 170.17729692622817, - -44.31560084220743 - ], - [ - 170.15800388688768, - -44.30428749612642 - ], - [ - 170.11038702383456, - -44.289418526991376 - ], - [ - 170.1021772198599, - -44.28036785012657 - ], - [ - 170.07754780793587, - -44.2816608039644 - ], - [ - 170.0475820234283, - -44.26743831174827 - ], - [ - 170.03362535667134, - -44.271317173261764 - ], - [ - 169.9979127093815, - -44.27002421942393 - ], - [ - 169.96055810129673, - -44.28586290393735 - ], - [ - 169.94413849334737, - -44.26776155020773 - ], - [ - 169.91663565003222, - -44.27551927323471 - ], - [ - 169.89364819890312, - -44.25935735026184 - ], - [ - 169.89118525771073, - -44.237700373478184 - ], - [ - 169.89980555188413, - -44.21830606591074 - ], - [ - 169.89734261069174, - -44.196649089127085 - ], - [ - 169.87722859095376, - -44.17434563542452 - ], - [ - 169.88010202234491, - -44.16788086623537 - ], - [ - 169.85711457121582, - -44.151718943262495 - ], - [ - 169.87681810075503, - -44.135233781830166 - ], - [ - 169.89118525771073, - -44.103556412803336 - ], - [ - 169.8751761399601, - -44.085455059073716 - ], - [ - 169.8640929045943, - -44.08286915139806 - ], - [ - 169.839873982869, - -44.056040359263086 - ], - [ - 169.8324851592918, - -44.01919117488494 - ], - [ - 169.839873982869, - -43.98912999815539 - ], - [ - 169.8374110416766, - -43.967473021371745 - ], - [ - 169.85506212022216, - -43.929330883155764 - ], - [ - 169.86860829678037, - -43.92545202164227 - ], - [ - 169.87312368896644, - -43.902178852561335 - ], - [ - 169.9067838852626, - -43.881814829615514 - ], - [ - 169.91827761082715, - -43.856278991318376 - ], - [ - 169.93059231678916, - -43.84173326064279 - ], - [ - 169.92566643440435, - -43.82654105304829 - ], - [ - 169.94619094434105, - -43.820722760778054 - ], - [ - 169.96178957189292, - -43.79971226091332 - ], - [ - 169.97533574845116, - -43.79615663785928 - ], - [ - 169.9880609446119, - -43.78128766872424 - ], - [ - 169.9798511406372, - -43.77256023031889 - ], - [ - 169.99627074858657, - -43.76221659961625 - ], - [ - 169.9843665328233, - -43.74896382277849 - ], - [ - 170.02541555269667, - -43.737327238238024 - ], - [ - 170.04183516064603, - -43.727306845994846 - ], - [ - 170.03239388607514, - -43.70758929996794 - ], - [ - 170.04101418024857, - -43.68819499240049 - ], - [ - 170.08206320012192, - -43.67688164631948 - ], - [ - 170.09848280807128, - -43.666538015616844 - ], - [ - 170.1095660434371, - -43.6410021773197 - ], - [ - 170.09766182767382, - -43.627749400481946 - ], - [ - 170.1071031022447, - -43.61934520053605 - ], - [ - 170.09766182767382, - -43.59962765450915 - ], - [ - 170.13214300436746, - -43.59025373918488 - ], - [ - 170.1785283968244, - -43.56601085472557 - ], - [ - 170.19905290676107, - -43.560192562455335 - ], - [ - 170.21998790689648, - -43.52657576267176 - ], - [ - 170.31563212320145, - -43.49974697053679 - ], - [ - 170.3283573193622, - -43.485201239861205 - ], - [ - 170.34436643711282, - -43.502979355131366 - ], - [ - 170.359554574466, - -43.510090601239426 - ], - [ - 170.40758192771784, - -43.496514585942215 - ], - [ - 170.43960016321907, - -43.4654836938343 - ], - [ - 170.4642295751431, - -43.46419073999647 - ], - [ - 170.4629981045469, - -43.453200632374916 - ], - [ - 170.47572330070764, - -43.43865490169933 - ], - [ - 170.5237506539595, - -43.42507888640211 - ], - [ - 170.53647585012024, - -43.410533155726526 - ], - [ - 170.55946330124934, - -43.426371840239945 - ], - [ - 170.58039830138478, - -43.42055354796971 - ], - [ - 170.5857346739683, - -43.43574575556421 - ], - [ - 170.6173424192708, - -43.43251337096964 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25186, - "NAME_2": "Selwyn", - "VARNAME_2": "", - "HASC_2": "NZ.CA.SY", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 172.23672625327563, - -42.95185778175638 - ], - [ - 172.23303184148702, - -42.94733244332398 - ], - [ - 172.1780261548567, - -42.9631711278374 - ], - [ - 172.17351076267062, - -42.98676753537779 - ], - [ - 172.15175478213771, - -42.98191895848593 - ], - [ - 172.13123027220104, - -42.98773725075616 - ], - [ - 172.13615615458585, - -43.002929458350664 - ], - [ - 172.11275821325802, - -43.01521251981005 - ], - [ - 172.10536938968082, - -43.04527369653959 - ], - [ - 172.0737616443783, - -43.04882931959362 - ], - [ - 172.06226791881375, - -43.07436515789076 - ], - [ - 172.04872174225554, - -43.07824401940425 - ], - [ - 172.02942870291506, - -43.09505241929604 - ], - [ - 172.0384594872872, - -43.11476996532295 - ], - [ - 172.04051193828087, - -43.136426942106596 - ], - [ - 172.01711399695304, - -43.14871000356598 - ], - [ - 172.0056202713885, - -43.17424584186312 - ], - [ - 171.97031811429738, - -43.17327612648475 - ], - [ - 171.95882438873284, - -43.19881196478189 - ], - [ - 171.9448677219759, - -43.20269082629538 - ], - [ - 171.93912085919362, - -43.215620364673676 - ], - [ - 171.96498174171384, - -43.224994279997944 - ], - [ - 171.97729644767585, - -43.2382470568357 - ], - [ - 171.9604663495278, - -43.24859068753834 - ], - [ - 171.9559509573417, - -43.272187095078735 - ], - [ - 172.0240923303315, - -43.34750165613232 - ], - [ - 172.0786875267631, - -43.35978471759171 - ], - [ - 172.11481066425168, - -43.39986628656443 - ], - [ - 172.1443659585605, - -43.4137655403211 - ], - [ - 172.1525757625352, - -43.42249297872645 - ], - [ - 172.18500448823517, - -43.42992746329398 - ], - [ - 172.19321429220983, - -43.43897814015879 - ], - [ - 172.2363157630769, - -43.44867529394251 - ], - [ - 172.2543773318212, - -43.449321770861424 - ], - [ - 172.29788929288696, - -43.45934216310461 - ], - [ - 172.3894286072046, - -43.45546330159112 - ], - [ - 172.4029747837628, - -43.451584440077625 - ], - [ - 172.4259622348919, - -43.46742312459104 - ], - [ - 172.44361331343745, - -43.46806960150996 - ], - [ - 172.43006713687925, - -43.51073707815834 - ], - [ - 172.44320282323872, - -43.5346567241582 - ], - [ - 172.46290635277794, - -43.55696017786076 - ], - [ - 172.49081968629184, - -43.54920245483378 - ], - [ - 172.52119596099814, - -43.573768577752546 - ], - [ - 172.55485615729432, - -43.59219316994162 - ], - [ - 172.57455968683354, - -43.614173385184735 - ], - [ - 172.6032940007449, - -43.6174057697793 - ], - [ - 172.62669194207274, - -43.643911323454816 - ], - [ - 172.61601919690565, - -43.680114030914055 - ], - [ - 172.60616743213603, - -43.68851823085995 - ], - [ - 172.59426321637275, - -43.714054069157086 - ], - [ - 172.6069884125335, - -43.73797371515694 - ], - [ - 172.60124154975122, - -43.75090325353524 - ], - [ - 172.57004429464746, - -43.75413563812982 - ], - [ - 172.57086527504492, - -43.76480250729191 - ], - [ - 172.40872164654508, - -43.8333290606969 - ], - [ - 172.38409223462105, - -43.85595575285892 - ], - [ - 172.31677184202871, - -43.86726909893993 - ], - [ - 172.28598507712368, - -43.875026821966905 - ], - [ - 172.21743321393512, - -43.899592944885676 - ], - [ - 172.1964982137997, - -43.90314856793971 - ], - [ - 172.16160654690734, - -43.86468319126427 - ], - [ - 172.1550387037276, - -43.86662262202101 - ], - [ - 172.0396909578834, - -43.73797371515694 - ], - [ - 172.0179349773505, - -43.73312513826508 - ], - [ - 171.97360203588727, - -43.7124378768598 - ], - [ - 171.96539223191257, - -43.70338719999499 - ], - [ - 171.89930330991643, - -43.677851361697854 - ], - [ - 171.8574333096456, - -43.650699331103425 - ], - [ - 171.841424191895, - -43.632921215833264 - ], - [ - 171.83034095652917, - -43.63065854661706 - ], - [ - 171.80242762301526, - -43.59962765450915 - ], - [ - 171.78764997586086, - -43.59251640840108 - ], - [ - 171.77164085811023, - -43.57473829313092 - ], - [ - 171.71088830869763, - -43.53627291645548 - ], - [ - 171.68215399478626, - -43.53336377032036 - ], - [ - 171.65506164166985, - -43.513322985834 - ], - [ - 171.6230434061686, - -43.47776675529368 - ], - [ - 171.63576860232934, - -43.46322102461809 - ], - [ - 171.5672167391408, - -43.387906463564505 - ], - [ - 171.5343775232421, - -43.38047197899699 - ], - [ - 171.52534673886996, - -43.360754432970076 - ], - [ - 171.5101586015168, - -43.353643186862016 - ], - [ - 171.47075154243836, - -43.34814813305124 - ], - [ - 171.4625417384637, - -43.33942069464589 - ], - [ - 171.4407857579308, - -43.33457211775402 - ], - [ - 171.42190320878905, - -43.32325877167301 - ], - [ - 171.40178918905107, - -43.30095531797045 - ], - [ - 171.378801737922, - -43.28511663345703 - ], - [ - 171.34883595341444, - -43.27121737970036 - ], - [ - 171.327900953279, - -43.27735891043005 - ], - [ - 171.27043232545628, - -43.27121737970036 - ], - [ - 171.2474448743272, - -43.25537869518694 - ], - [ - 171.20229095246646, - -43.23469143378166 - ], - [ - 171.16575732477915, - -43.22273161078174 - ], - [ - 171.16452585418295, - -43.21206474161964 - ], - [ - 171.144411834445, - -43.18976128791708 - ], - [ - 171.1419488932526, - -43.168427549592884 - ], - [ - 171.15631605020826, - -43.136426942106596 - ], - [ - 171.16124193259307, - -43.1128305345662 - ], - [ - 171.1530321286184, - -43.10410309616085 - ], - [ - 171.1201929127197, - -43.09666861159333 - ], - [ - 171.1189614421235, - -43.08567850397178 - ], - [ - 171.15795801100322, - -43.08050668862045 - ], - [ - 171.18546085431836, - -43.072748965593476 - ], - [ - 171.20352242306265, - -43.073072204052934 - ], - [ - 171.23102526637783, - -43.06531448102595 - ], - [ - 171.22568889379428, - -43.050122273431455 - ], - [ - 171.25237075671197, - -43.03169768124238 - ], - [ - 171.24210850174364, - -43.000990027593915 - ], - [ - 171.26304350187905, - -42.99517173532368 - ], - [ - 171.26879036466133, - -42.982565435404844 - ], - [ - 171.2852099726107, - -42.9722218047022 - ], - [ - 171.32010163950306, - -42.96252465091848 - ], - [ - 171.31476526691952, - -42.94733244332398 - ], - [ - 171.33570026705493, - -42.941514151053745 - ], - [ - 171.35745624758783, - -42.946362727945605 - ], - [ - 171.36730801235746, - -42.93795852799971 - ], - [ - 171.40384164004476, - -42.94991835099964 - ], - [ - 171.43175497355864, - -42.94216062797266 - ], - [ - 171.448174581508, - -42.93181699727002 - ], - [ - 171.4432486991232, - -42.916301551216065 - ], - [ - 171.47075154243836, - -42.90854382818908 - ], - [ - 171.48840262098392, - -42.909190305108 - ], - [ - 171.4941494837662, - -42.8962607667297 - ], - [ - 171.51221105251048, - -42.89690724364861 - ], - [ - 171.52411526827376, - -42.91016002048637 - ], - [ - 171.55572301357626, - -42.90660439743234 - ], - [ - 171.59718252364837, - -42.89496781289187 - ], - [ - 171.6230434061686, - -42.90434172821614 - ], - [ - 171.6850274261774, - -42.88656361294598 - ], - [ - 171.701036543928, - -42.90434172821614 - ], - [ - 171.72156105386472, - -42.898200197486446 - ], - [ - 171.7576841913533, - -42.871371405351475 - ], - [ - 171.74454850499382, - -42.84712852089216 - ], - [ - 171.77205134830896, - -42.839370797865186 - ], - [ - 171.77779821109124, - -42.826441259486884 - ], - [ - 171.76589399532796, - -42.81318848264913 - ], - [ - 171.77040938751404, - -42.789592075108736 - ], - [ - 171.80201713281653, - -42.7860364520547 - ], - [ - 171.85702281944685, - -42.77052100600074 - ], - [ - 171.86564311362028, - -42.751126698433296 - ], - [ - 171.89725085892277, - -42.74789431383872 - ], - [ - 171.9206488002506, - -42.735611252379336 - ], - [ - 171.9448677219759, - -42.76211680605485 - ], - [ - 172.00972517337584, - -42.77698577518989 - ], - [ - 172.0179349773505, - -42.785713213595244 - ], - [ - 172.0396909578834, - -42.79088502894656 - ], - [ - 172.07170919338463, - -42.826118021027426 - ], - [ - 172.09346517391754, - -42.83128983637875 - ], - [ - 172.11357919365548, - -42.853270051621855 - ], - [ - 172.1185050760403, - -42.86846225921636 - ], - [ - 172.16078556650987, - -42.86749254383798 - ], - [ - 172.18131007644655, - -42.86167425156775 - ], - [ - 172.21414929234527, - -42.869108736135274 - ], - [ - 172.24124164546168, - -42.86135101310829 - ], - [ - 172.2740808613604, - -42.868785497675816 - ], - [ - 172.26546056718698, - -42.8878565667838 - ], - [ - 172.25191439062877, - -42.891735428297295 - ], - [ - 172.2461675278465, - -42.9046649666756 - ], - [ - 172.25807174360978, - -42.91791774351335 - ], - [ - 172.2605346848022, - -42.939574720297 - ], - [ - 172.23672625327563, - -42.95185778175638 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25187, - "NAME_2": "Timaru", - "VARNAME_2": "", - "HASC_2": "NZ.CA.TU", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 171.5138530133054, - -44.18662869688391 - ], - [ - 171.42477664018017, - -44.23220531966741 - ], - [ - 171.3582772279853, - -44.27648898861308 - ], - [ - 171.31517575711825, - -44.30913607301829 - ], - [ - 171.27494771764233, - -44.34404582663969 - ], - [ - 171.25113928611577, - -44.36925842647737 - ], - [ - 171.24662389392972, - -44.386713303288076 - ], - [ - 171.26345399207779, - -44.39253159555831 - ], - [ - 171.2659169332702, - -44.41451181080142 - ], - [ - 171.258528109693, - -44.4245322030446 - ], - [ - 171.2609910508854, - -44.443926510612044 - ], - [ - 171.2244574231981, - -44.48821017955772 - ], - [ - 171.17437761895258, - -44.48012921807128 - ], - [ - 171.1591894815994, - -44.473017971963216 - ], - [ - 171.1271712460982, - -44.4374617414229 - ], - [ - 171.07134457907037, - -44.41451181080142 - ], - [ - 171.04712565734508, - -44.38768301866645 - ], - [ - 171.0085395786641, - -44.39317807247723 - ], - [ - 170.98432065693882, - -44.366672518801714 - ], - [ - 170.9683115391882, - -44.34889440353155 - ], - [ - 170.96995349998312, - -44.33143952672085 - ], - [ - 170.96051222541226, - -44.311721980693946 - ], - [ - 170.90796947997433, - -44.25386229645106 - ], - [ - 170.91084291136548, - -44.24739752726191 - ], - [ - 170.88662398964019, - -44.2208919735864 - ], - [ - 170.87307781308195, - -44.196649089127085 - ], - [ - 170.8747197738769, - -44.17919421231638 - ], - [ - 170.8665099699022, - -44.17046677391103 - ], - [ - 170.8833400680503, - -44.160123143208395 - ], - [ - 170.87513026407564, - -44.151072466343585 - ], - [ - 170.87677222487056, - -44.13394082799234 - ], - [ - 170.9137163427566, - -44.14557741253281 - ], - [ - 170.92562055851988, - -44.15915342783002 - ], - [ - 170.96133320580972, - -44.160123143208395 - ], - [ - 170.98719408832994, - -44.169173820073205 - ], - [ - 170.99950879429196, - -44.15462808939762 - ], - [ - 171.0110025198565, - -44.129092251100474 - ], - [ - 170.9867835981312, - -44.1022634589655 - ], - [ - 170.9941724217084, - -44.07220228223596 - ], - [ - 170.9781633039578, - -44.05474740542526 - ], - [ - 170.9974563432983, - -44.037939005533474 - ], - [ - 170.98226820594516, - -44.031150997884865 - ], - [ - 170.9621541862072, - -44.008847544182295 - ], - [ - 170.979394774554, - -43.970705405966314 - ], - [ - 171.00279271588184, - -43.958422344506936 - ], - [ - 170.99376193150968, - -43.938704798480025 - ], - [ - 170.99827732369576, - -43.915108390939636 - ], - [ - 171.02619065720967, - -43.94613928304755 - ], - [ - 171.0413787945628, - -43.95292729069616 - ], - [ - 171.08119634384, - -43.958745582966394 - ], - [ - 171.0947425203982, - -43.9548667214529 - ], - [ - 171.09925791258428, - -43.931270313912506 - ], - [ - 171.14892722663106, - -43.92836116777739 - ], - [ - 171.18751330531205, - -43.92318935242607 - ], - [ - 171.18505036411963, - -43.90153237564242 - ], - [ - 171.17684056014497, - -43.89280493723707 - ], - [ - 171.20434340346014, - -43.88504721421009 - ], - [ - 171.21665810942216, - -43.89829999104784 - ], - [ - 171.2293833055829, - -43.8834310219128 - ], - [ - 171.2211735016082, - -43.87470358350745 - ], - [ - 171.22568889379428, - -43.85110717596705 - ], - [ - 171.18546085431836, - -43.806823507021385 - ], - [ - 171.15672654040702, - -43.80391436088627 - ], - [ - 171.14318036384878, - -43.779671476426955 - ], - [ - 171.1103411479501, - -43.77223699185943 - ], - [ - 171.09022712821212, - -43.750256776616325 - ], - [ - 171.07914389284633, - -43.747670868940666 - ], - [ - 171.05164104953116, - -43.75542859196764 - ], - [ - 171.0327585003894, - -43.74411524588663 - ], - [ - 170.97159546077808, - -43.77223699185943 - ], - [ - 170.92356810752622, - -43.78581300715665 - ], - [ - 170.91084291136548, - -43.80068197629169 - ], - [ - 170.87636173467183, - -43.81037913007541 - ], - [ - 170.85624771493386, - -43.78807567637285 - ], - [ - 170.83284977360606, - -43.77223699185943 - ], - [ - 170.81232526366935, - -43.778055284129664 - ], - [ - 170.79056928313648, - -43.773206707237804 - ], - [ - 170.78030702816812, - -43.80940941469704 - ], - [ - 170.75978251823142, - -43.81522770696728 - ], - [ - 170.73104820432008, - -43.81231856083216 - ], - [ - 170.72981673372385, - -43.8013284532106 - ], - [ - 170.74664683187194, - -43.76318631499463 - ], - [ - 170.7109341845821, - -43.76221659961625 - ], - [ - 170.69082016484415, - -43.73991314591369 - ], - [ - 170.7035453610049, - -43.7253674152381 - ], - [ - 170.6912306550429, - -43.711791399940886 - ], - [ - 170.70806075319098, - -43.70177100769771 - ], - [ - 170.69985094921628, - -43.6927203308329 - ], - [ - 170.72078594935172, - -43.65910353104932 - ], - [ - 170.7129866355758, - -43.65037609264397 - ], - [ - 170.73227967491627, - -43.63356769275218 - ], - [ - 170.74664683187194, - -43.60189032372535 - ], - [ - 170.72242791014665, - -43.57538477004984 - ], - [ - 170.738847518096, - -43.565041139347194 - ], - [ - 170.72694330233273, - -43.55178836250944 - ], - [ - 170.7129866355758, - -43.55566722402293 - ], - [ - 170.694104086434, - -43.544353877941916 - ], - [ - 170.66906418431125, - -43.54564683177975 - ], - [ - 170.6284256546366, - -43.501363162834075 - ], - [ - 170.62760467423914, - -43.49069629367198 - ], - [ - 170.60543820350753, - -43.485847716780114 - ], - [ - 170.5894290857569, - -43.46806960150996 - ], - [ - 170.6029752623151, - -43.46419073999647 - ], - [ - 170.61282702708473, - -43.455786540050575 - ], - [ - 170.63868790960495, - -43.46516045537484 - ], - [ - 170.694104086434, - -43.44964500932088 - ], - [ - 170.726532812134, - -43.485201239861205 - ], - [ - 170.74828879266687, - -43.490049816753064 - ], - [ - 170.77291820459092, - -43.516878608888035 - ], - [ - 170.79754761651495, - -43.515262416590744 - ], - [ - 170.8455749697668, - -43.52980814726633 - ], - [ - 170.86322604831236, - -43.53013138572579 - ], - [ - 170.91576879375026, - -43.58766783150922 - ], - [ - 170.91289536235914, - -43.594132600698366 - ], - [ - 170.98596261773375, - -43.67397250018436 - ], - [ - 171.01592840224131, - -43.68754851548157 - ], - [ - 171.11444604993744, - -43.7101752076436 - ], - [ - 171.13045516768804, - -43.727630084454304 - ], - [ - 171.16329438358676, - -43.73506456902182 - ], - [ - 171.18792379551078, - -43.733771615184 - ], - [ - 171.2002385014728, - -43.74702439202175 - ], - [ - 171.21788958001835, - -43.747670868940666 - ], - [ - 171.24498193313477, - -43.76771165342703 - ], - [ - 171.26550644307147, - -43.79001510712959 - ], - [ - 171.27412673724487, - -43.83753116066984 - ], - [ - 171.26673791366767, - -43.86759233739939 - ], - [ - 171.2827470314183, - -43.88504721421009 - ], - [ - 171.27700016863602, - -43.897976752588384 - ], - [ - 171.29547222757904, - -43.93708860618274 - ], - [ - 171.30778693354105, - -43.95034138302049 - ], - [ - 171.3061449727461, - -43.9677962598312 - ], - [ - 171.34226811023467, - -44.00755459034447 - ], - [ - 171.37223389474224, - -44.02145384410114 - ], - [ - 171.38824301249286, - -44.03890872091184 - ], - [ - 171.435859875546, - -44.05345445158743 - ], - [ - 171.46418369925863, - -44.08448534369535 - ], - [ - 171.47896134641303, - -44.09127335134395 - ], - [ - 171.49620193475985, - -44.11971833577621 - ], - [ - 171.50071732694593, - -44.16303228934351 - ], - [ - 171.5138530133054, - -44.18662869688391 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25188, - "NAME_2": "Waimakariri", - "VARNAME_2": "", - "HASC_2": "NZ.CA.WR", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 172.73793478592958, - -43.24180267988973 - ], - [ - 172.72233615837771, - -43.26992442586253 - ], - [ - 172.72274664857645, - -43.28543987191649 - ], - [ - 172.71207390340936, - -43.322612294754094 - ], - [ - 172.70878998181948, - -43.35946147913225 - ], - [ - 172.71084243281317, - -43.38661350972667 - ], - [ - 172.67964517770938, - -43.390492371240164 - ], - [ - 172.66363605995878, - -43.40536134037521 - ], - [ - 172.66076262856762, - -43.41182610956436 - ], - [ - 172.58523243200062, - -43.433483086348005 - ], - [ - 172.57455968683354, - -43.430897178672346 - ], - [ - 172.5400785101399, - -43.44059433245607 - ], - [ - 172.5084707648374, - -43.44382671705065 - ], - [ - 172.4867147843045, - -43.43897814015879 - ], - [ - 172.46208537238047, - -43.440271093996614 - ], - [ - 172.4210363525071, - -43.45223091699654 - ], - [ - 172.4029747837628, - -43.451584440077625 - ], - [ - 172.3894286072046, - -43.45546330159112 - ], - [ - 172.29788929288696, - -43.45934216310461 - ], - [ - 172.2543773318212, - -43.449321770861424 - ], - [ - 172.2363157630769, - -43.44867529394251 - ], - [ - 172.19321429220983, - -43.43897814015879 - ], - [ - 172.18500448823517, - -43.42992746329398 - ], - [ - 172.1525757625352, - -43.42249297872645 - ], - [ - 172.1443659585605, - -43.4137655403211 - ], - [ - 172.11481066425168, - -43.39986628656443 - ], - [ - 172.0786875267631, - -43.35978471759171 - ], - [ - 172.0240923303315, - -43.34750165613232 - ], - [ - 171.9559509573417, - -43.272187095078735 - ], - [ - 171.9604663495278, - -43.24859068753834 - ], - [ - 171.97729644767585, - -43.2382470568357 - ], - [ - 171.96498174171384, - -43.224994279997944 - ], - [ - 171.93912085919362, - -43.215620364673676 - ], - [ - 171.9448677219759, - -43.20269082629538 - ], - [ - 171.95882438873284, - -43.19881196478189 - ], - [ - 171.97031811429738, - -43.17327612648475 - ], - [ - 172.0056202713885, - -43.17424584186312 - ], - [ - 172.01711399695304, - -43.14871000356598 - ], - [ - 172.04051193828087, - -43.136426942106596 - ], - [ - 172.0384594872872, - -43.11476996532295 - ], - [ - 172.02942870291506, - -43.09505241929604 - ], - [ - 172.04872174225554, - -43.07824401940425 - ], - [ - 172.06226791881375, - -43.07436515789076 - ], - [ - 172.0737616443783, - -43.04882931959362 - ], - [ - 172.10536938968082, - -43.04527369653959 - ], - [ - 172.11275821325802, - -43.01521251981005 - ], - [ - 172.13615615458585, - -43.002929458350664 - ], - [ - 172.13123027220104, - -42.98773725075616 - ], - [ - 172.15175478213771, - -42.98191895848593 - ], - [ - 172.17351076267062, - -42.98676753537779 - ], - [ - 172.1780261548567, - -42.9631711278374 - ], - [ - 172.23303184148702, - -42.94733244332398 - ], - [ - 172.23672625327563, - -42.95185778175638 - ], - [ - 172.2231800767174, - -42.95573664326987 - ], - [ - 172.24329409645537, - -42.978040096972435 - ], - [ - 172.27449135155913, - -42.97448447391841 - ], - [ - 172.28680605752115, - -42.98773725075616 - ], - [ - 172.26628154758447, - -42.993555543026396 - ], - [ - 172.290089979111, - -43.02038433516137 - ], - [ - 172.30486762626543, - -43.027172342809976 - ], - [ - 172.34632713633755, - -43.01521251981005 - ], - [ - 172.3455061559401, - -43.043334265782846 - ], - [ - 172.37711390124258, - -43.04010188118827 - ], - [ - 172.38573419541598, - -43.020707573620825 - ], - [ - 172.41405801912862, - -43.02361671975594 - ], - [ - 172.43417203886656, - -43.045920173458505 - ], - [ - 172.42555174469317, - -43.0649912425665 - ], - [ - 172.4091321367438, - -43.075334873269135 - ], - [ - 172.4222678231033, - -43.09957775772845 - ], - [ - 172.4464867448286, - -43.12640654986342 - ], - [ - 172.43663498005898, - -43.13448751134985 - ], - [ - 172.4456657644311, - -43.15420505737676 - ], - [ - 172.46331684297667, - -43.15485153429567 - ], - [ - 172.46536929397035, - -43.13771989594443 - ], - [ - 172.49246164708677, - -43.12963893445799 - ], - [ - 172.5097022354336, - -43.15840715734971 - ], - [ - 172.5413099807361, - -43.15485153429567 - ], - [ - 172.55321419649937, - -43.168104311133426 - ], - [ - 172.53679458855004, - -43.17844794183607 - ], - [ - 172.54172047093482, - -43.19396338789002 - ], - [ - 172.5860534123981, - -43.242772395268105 - ], - [ - 172.5995995889563, - -43.23889353375461 - ], - [ - 172.60534645173857, - -43.22596399537632 - ], - [ - 172.62176605968793, - -43.215620364673676 - ], - [ - 172.63038635386133, - -43.19622605710623 - ], - [ - 172.68744449148534, - -43.202044349376465 - ], - [ - 172.68867596208153, - -43.21303445699802 - ], - [ - 172.7186417465891, - -43.226933710754686 - ], - [ - 172.73629282513465, - -43.227256949214144 - ], - [ - 172.73793478592958, - -43.24180267988973 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25189, - "NAME_2": "Waimate", - "VARNAME_2": "", - "HASC_2": "NZ.CA.WM", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 170.98432065693882, - -44.366672518801714 - ], - [ - 171.0085395786641, - -44.39317807247723 - ], - [ - 171.04712565734508, - -44.38768301866645 - ], - [ - 171.07134457907037, - -44.41451181080142 - ], - [ - 171.1271712460982, - -44.4374617414229 - ], - [ - 171.1591894815994, - -44.473017971963216 - ], - [ - 171.17437761895258, - -44.48012921807128 - ], - [ - 171.2244574231981, - -44.48821017955772 - ], - [ - 171.1981860504791, - -44.52376641009804 - ], - [ - 171.1710936973627, - -44.574514848232866 - ], - [ - 171.15959997179814, - -44.63237453247575 - ], - [ - 171.16616781497788, - -44.67568848604305 - ], - [ - 171.17150418756142, - -44.745184754826404 - ], - [ - 171.1747881091513, - -44.81823664666379 - ], - [ - 171.16822026597154, - -44.875773092447226 - ], - [ - 171.14851673643233, - -44.936865161284686 - ], - [ - 171.12593977550196, - -44.9375116382036 - ], - [ - 171.1177299715273, - -44.92846096133879 - ], - [ - 171.07914389284633, - -44.93363277669011 - ], - [ - 171.07134457907037, - -44.9245820998253 - ], - [ - 171.0463046769476, - -44.92587505366313 - ], - [ - 171.02085428462613, - -44.91617789987941 - ], - [ - 170.9999192844907, - -44.9223194306091 - ], - [ - 170.97693183336162, - -44.90615750763622 - ], - [ - 170.96338565680338, - -44.910036369149715 - ], - [ - 170.91289536235914, - -44.90227864612274 - ], - [ - 170.9050960485832, - -44.89322796925793 - ], - [ - 170.87636173467183, - -44.89031882312281 - ], - [ - 170.82176653824024, - -44.87771252320397 - ], - [ - 170.79303222432887, - -44.87448013860939 - ], - [ - 170.7848224203542, - -44.86542946174458 - ], - [ - 170.74787830246814, - -44.853469638744656 - ], - [ - 170.70436634140236, - -44.84312600804202 - ], - [ - 170.70026143941502, - -44.83860066960961 - ], - [ - 170.5906605563531, - -44.81338806977193 - ], - [ - 170.58245075237843, - -44.80433739290712 - ], - [ - 170.55248496787087, - -44.790114900690995 - ], - [ - 170.5081520264076, - -44.740659416394 - ], - [ - 170.4970687910418, - -44.738073508718344 - ], - [ - 170.45643026136716, - -44.69314336285375 - ], - [ - 170.43056937884694, - -44.68344620907003 - ], - [ - 170.42235957487225, - -44.674395532205224 - ], - [ - 170.37474271181912, - -44.65984980152964 - ], - [ - 170.35832310386976, - -44.64174844780002 - ], - [ - 170.32137898598373, - -44.629465386340634 - ], - [ - 170.2942866328673, - -44.608778124935355 - ], - [ - 170.2737621229306, - -44.61459641720559 - ], - [ - 170.24461731882053, - -44.611364032611014 - ], - [ - 170.22162986769143, - -44.5955253480976 - ], - [ - 170.20151584795346, - -44.572898655935575 - ], - [ - 170.22778722067244, - -44.554150825287046 - ], - [ - 170.21875643630028, - -44.53443327926014 - ], - [ - 170.22450329908256, - -44.52150374088184 - ], - [ - 170.21218859312054, - -44.50792772558463 - ], - [ - 170.2224508480889, - -44.47140177966593 - ], - [ - 170.23640751484584, - -44.46752291815244 - ], - [ - 170.2433858482243, - -44.465906725855156 - ], - [ - 170.42605398666086, - -44.38089501101784 - ], - [ - 170.5845032033721, - -44.307843119180454 - ], - [ - 170.59394447794298, - -44.327883903666816 - ], - [ - 170.61405849768093, - -44.350187357369386 - ], - [ - 170.64566624298342, - -44.34663173431535 - ], - [ - 170.6670117333176, - -44.37992529563947 - ], - [ - 170.74500487107701, - -44.37992529563947 - ], - [ - 170.75978251823142, - -44.41515828772033 - ], - [ - 170.7798965379694, - -44.4374617414229 - ], - [ - 170.8115042832719, - -44.43390611836887 - ], - [ - 170.7872853615466, - -44.407400564693354 - ], - [ - 170.7996000675086, - -44.39253159555831 - ], - [ - 170.79139026353394, - -44.3834809186935 - ], - [ - 170.80986232247696, - -44.35568241118016 - ], - [ - 170.85091134235034, - -44.343722588180235 - ], - [ - 170.84967987175412, - -44.33273248055868 - ], - [ - 170.8771827150693, - -44.32465151907224 - ], - [ - 170.9124848721604, - -44.325621234450615 - ], - [ - 170.94491359786036, - -44.36117746499094 - ], - [ - 170.98432065693882, - -44.366672518801714 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2127, - "NAME_1": "Canterbury", - "ID_2": 25190, - "NAME_2": "Waitaki", - "VARNAME_2": "", - "HASC_2": "NZ.OT.WI", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 169.97533574845116, - -43.79615663785928 - ], - [ - 169.96178957189292, - -43.79971226091332 - ], - [ - 169.94619094434105, - -43.820722760778054 - ], - [ - 169.92566643440435, - -43.82654105304829 - ], - [ - 169.93059231678916, - -43.84173326064279 - ], - [ - 169.91827761082715, - -43.856278991318376 - ], - [ - 169.9067838852626, - -43.881814829615514 - ], - [ - 169.87312368896644, - -43.902178852561335 - ], - [ - 169.86860829678037, - -43.92545202164227 - ], - [ - 169.85506212022216, - -43.929330883155764 - ], - [ - 169.8374110416766, - -43.967473021371745 - ], - [ - 169.839873982869, - -43.98912999815539 - ], - [ - 169.8324851592918, - -44.01919117488494 - ], - [ - 169.839873982869, - -44.056040359263086 - ], - [ - 169.8640929045943, - -44.08286915139806 - ], - [ - 169.8751761399601, - -44.085455059073716 - ], - [ - 169.89118525771073, - -44.103556412803336 - ], - [ - 169.87681810075503, - -44.135233781830166 - ], - [ - 169.85711457121582, - -44.151718943262495 - ], - [ - 169.88010202234491, - -44.16788086623537 - ], - [ - 169.87722859095376, - -44.17434563542452 - ], - [ - 169.89734261069174, - -44.196649089127085 - ], - [ - 169.89980555188413, - -44.21830606591074 - ], - [ - 169.89118525771073, - -44.237700373478184 - ], - [ - 169.89364819890312, - -44.25935735026184 - ], - [ - 169.91663565003222, - -44.27551927323471 - ], - [ - 169.94413849334737, - -44.26776155020773 - ], - [ - 169.96055810129673, - -44.28586290393735 - ], - [ - 169.9979127093815, - -44.27002421942393 - ], - [ - 170.03362535667134, - -44.271317173261764 - ], - [ - 170.0475820234283, - -44.26743831174827 - ], - [ - 170.07754780793587, - -44.2816608039644 - ], - [ - 170.1021772198599, - -44.28036785012657 - ], - [ - 170.11038702383456, - -44.289418526991376 - ], - [ - 170.15800388688768, - -44.30428749612642 - ], - [ - 170.17729692622817, - -44.31560084220743 - ], - [ - 170.19741094596614, - -44.33822753436946 - ], - [ - 170.2203983970952, - -44.35406621888287 - ], - [ - 170.22573476967875, - -44.36958166493683 - ], - [ - 170.21588300490916, - -44.377985864882724 - ], - [ - 170.2212193774927, - -44.39317807247723 - ], - [ - 170.24133339723065, - -44.41580476463925 - ], - [ - 170.23271310305725, - -44.43487583374724 - ], - [ - 170.23640751484584, - -44.46752291815244 - ], - [ - 170.2224508480889, - -44.47140177966593 - ], - [ - 170.21218859312054, - -44.50792772558463 - ], - [ - 170.22450329908256, - -44.52150374088184 - ], - [ - 170.21875643630028, - -44.53443327926014 - ], - [ - 170.22778722067244, - -44.554150825287046 - ], - [ - 170.20151584795346, - -44.572898655935575 - ], - [ - 170.22162986769143, - -44.5955253480976 - ], - [ - 170.24461731882053, - -44.611364032611014 - ], - [ - 170.2737621229306, - -44.61459641720559 - ], - [ - 170.2942866328673, - -44.608778124935355 - ], - [ - 170.32137898598373, - -44.629465386340634 - ], - [ - 170.35832310386976, - -44.64174844780002 - ], - [ - 170.37474271181912, - -44.65984980152964 - ], - [ - 170.42235957487225, - -44.674395532205224 - ], - [ - 170.43056937884694, - -44.68344620907003 - ], - [ - 170.45643026136716, - -44.69314336285375 - ], - [ - 170.4970687910418, - -44.738073508718344 - ], - [ - 170.5081520264076, - -44.740659416394 - ], - [ - 170.55248496787087, - -44.790114900690995 - ], - [ - 170.58245075237843, - -44.80433739290712 - ], - [ - 170.5906605563531, - -44.81338806977193 - ], - [ - 170.57506192880123, - -44.83472180809613 - ], - [ - 170.561515752243, - -44.83860066960961 - ], - [ - 170.53852830111393, - -44.88999558466335 - ], - [ - 170.5249821245557, - -44.89387444617684 - ], - [ - 170.51225692839495, - -44.90874341531188 - ], - [ - 170.45725124176462, - -44.92425886136584 - ], - [ - 170.46094565355324, - -44.928784199798244 - ], - [ - 170.38500496678748, - -44.95011793812244 - ], - [ - 170.36201751565838, - -44.93395601514957 - ], - [ - 170.36653290784446, - -44.910036369149715 - ], - [ - 170.33369369194574, - -44.90227864612274 - ], - [ - 170.31686359379768, - -44.912622276825374 - ], - [ - 170.23394457365345, - -44.93557220744685 - ], - [ - 170.22286133828763, - -44.932986299771194 - ], - [ - 170.1814018282155, - -44.94462288431166 - ], - [ - 170.15923535748388, - -44.939451068960345 - ], - [ - 170.13132202397, - -44.94720879198732 - ], - [ - 170.1095660434371, - -44.942036976636004 - ], - [ - 170.08904153350042, - -44.91941028447398 - ], - [ - 170.09889329827, - -44.91100608452809 - ], - [ - 170.07877927853207, - -44.88837939236606 - ], - [ - 170.05948623919159, - -44.87674280782559 - ], - [ - 170.01063790554227, - -44.8227619850962 - ], - [ - 170.0102274153435, - -44.783326893042386 - ], - [ - 169.9979127093815, - -44.769750877745174 - ], - [ - 169.99955467017645, - -44.75261923939393 - ], - [ - 169.99134486620176, - -44.74356856252912 - ], - [ - 169.98395604262456, - -44.706072901232055 - ], - [ - 169.960147611098, - -44.65079912466483 - ], - [ - 169.91335172844234, - -44.64692026315134 - ], - [ - 169.90924682645502, - -44.64239492471893 - ], - [ - 169.85752506141455, - -44.66211247074584 - ], - [ - 169.85465163002343, - -44.66857723993499 - ], - [ - 169.8218124141247, - -44.66049627844855 - ], - [ - 169.80251937478423, - -44.64885969390808 - ], - [ - 169.78076339425132, - -44.64368787855676 - ], - [ - 169.7684486882893, - -44.63011186325955 - ], - [ - 169.77706898246274, - -44.611040794151556 - ], - [ - 169.76803819809058, - -44.591000009665194 - ], - [ - 169.7475136881539, - -44.56837331750317 - ], - [ - 169.73766192338428, - -44.57677751744907 - ], - [ - 169.72616819781973, - -44.602313355746205 - ], - [ - 169.68224574655522, - -44.59196972504357 - ], - [ - 169.66705760920206, - -44.5848584789355 - ], - [ - 169.6576163346312, - -44.56481769444914 - ], - [ - 169.67649888377295, - -44.53734242539525 - ], - [ - 169.6711625111894, - -44.5218269793413 - ], - [ - 169.65104849145146, - -44.49920028717928 - ], - [ - 169.67075202099068, - -44.48271512574694 - ], - [ - 169.65063800125273, - -44.46008843358492 - ], - [ - 169.61451486376416, - -44.45847224128764 - ], - [ - 169.59357986362872, - -44.46429053355787 - ], - [ - 169.57141339289709, - -44.45911871820655 - ], - [ - 169.5595091771338, - -44.445542702909336 - ], - [ - 169.5763392752819, - -44.43519907220669 - ], - [ - 169.56402456931988, - -44.42162305690948 - ], - [ - 169.5701819223009, - -44.40901675699064 - ], - [ - 169.58701202044898, - -44.398673126288 - ], - [ - 169.57059241249962, - -44.38057177255838 - ], - [ - 169.58331760866037, - -44.3660260418828 - ], - [ - 169.58208613806417, - -44.355035934261245 - ], - [ - 169.59891623621226, - -44.34501554201806 - ], - [ - 169.58167564786544, - -44.31592408066689 - ], - [ - 169.59357986362872, - -44.29038824236975 - ], - [ - 169.58824349104518, - -44.27487279631579 - ], - [ - 169.5968637852186, - -44.2558017272078 - ], - [ - 169.55663574574268, - -44.21087158134321 - ], - [ - 169.58044417726924, - -44.19858851988383 - ], - [ - 169.58495956945532, - -44.17499211234344 - ], - [ - 169.62272466773882, - -44.15947666628948 - ], - [ - 169.63996525608565, - -44.1213345280735 - ], - [ - 169.65597437383624, - -44.10032402820876 - ], - [ - 169.67649888377295, - -44.094505735938526 - ], - [ - 169.6744464327793, - -44.07284875915488 - ], - [ - 169.69086604072862, - -44.062828366911695 - ], - [ - 169.69989682510078, - -44.04375729780371 - ], - [ - 169.71056957026786, - -44.04634320547937 - ], - [ - 169.7343780017944, - -44.03438338247944 - ], - [ - 169.7183688840438, - -44.01660526720928 - ], - [ - 169.7269891782172, - -43.997534198101285 - ], - [ - 169.7109800604666, - -43.97943284437167 - ], - [ - 169.71672692324887, - -43.96682654445283 - ], - [ - 169.73725143318555, - -43.96133149064205 - ], - [ - 169.73643045278808, - -43.95034138302049 - ], - [ - 169.77378506087285, - -43.93482593696654 - ], - [ - 169.77255359027666, - -43.92383582934499 - ], - [ - 169.7840473158412, - -43.8986232295073 - ], - [ - 169.8119606493551, - -43.890865506480324 - ], - [ - 169.8107291787589, - -43.88019863731823 - ], - [ - 169.852188688831, - -43.86888529123721 - ], - [ - 169.85383064962593, - -43.85175365288597 - ], - [ - 169.87312368896644, - -43.83526849145364 - ], - [ - 169.89529015969805, - -43.84044030680496 - ], - [ - 169.90473143426894, - -43.832036106859064 - ], - [ - 169.9067838852626, - -43.81490446850782 - ], - [ - 169.97533574845116, - -43.79615663785928 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2129, - "NAME_1": "Gisborne", - "ID_2": 25192, - "NAME_2": "Gisborne", - "VARNAME_2": "", - "HASC_2": "NZ.GI.GB", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 177.89943854480833, - -38.9718226304566 - ], - [ - 177.8592105053324, - -38.96471138434853 - ], - [ - 177.83334962281216, - -38.945640315240546 - ], - [ - 177.84853776016533, - -38.92462981537581 - ], - [ - 177.83663354440205, - -38.912023515456966 - ], - [ - 177.82062442665142, - -38.92269038461907 - ], - [ - 177.8021523677084, - -38.912023515456966 - ], - [ - 177.7779334459831, - -38.913962946213715 - ], - [ - 177.74919913207174, - -38.90135664629487 - ], - [ - 177.7290851123338, - -38.907498177024564 - ], - [ - 177.72128579855786, - -38.89909397707867 - ], - [ - 177.6839311904731, - -38.905235507808364 - ], - [ - 177.6564283471579, - -38.90329607705162 - ], - [ - 177.66135422954272, - -38.852870877376255 - ], - [ - 177.634672366625, - -38.86127507732215 - ], - [ - 177.61907373907314, - -38.8441434389709 - ], - [ - 177.5993702095339, - -38.850608208160054 - ], - [ - 177.59362334675166, - -38.82539560832237 - ], - [ - 177.59526530754658, - -38.80858720843058 - ], - [ - 177.56406805244282, - -38.80212243924143 - ], - [ - 177.54395403270485, - -38.80858720843058 - ], - [ - 177.51357775799855, - -38.77497040864701 - ], - [ - 177.49387422845933, - -38.78111193937669 - ], - [ - 177.4852539342859, - -38.762364108728164 - ], - [ - 177.46719236554162, - -38.75202047802552 - ], - [ - 177.47950707150363, - -38.73715150889048 - ], - [ - 177.47499167931758, - -38.72260577821489 - ], - [ - 177.45980354196442, - -38.705797378323105 - ], - [ - 177.44297344381633, - -38.705797378323105 - ], - [ - 177.41998599268726, - -38.68026154002597 - ], - [ - 177.43230069864927, - -38.66571580935038 - ], - [ - 177.4401000124252, - -38.63630110953975 - ], - [ - 177.41259716911003, - -38.63403844032355 - ], - [ - 177.39453560036574, - -38.62337157116145 - ], - [ - 177.35389707069112, - -38.6253110019182 - ], - [ - 177.3075116782342, - -38.60203783283726 - ], - [ - 177.30956412922785, - -38.66119047091797 - ], - [ - 177.28862912909244, - -38.65666513248557 - ], - [ - 177.1277169711888, - -38.58846181754004 - ], - [ - 177.14454706933688, - -38.5887850559995 - ], - [ - 177.1704079518571, - -38.58038085605361 - ], - [ - 177.1827226578191, - -38.565511886918564 - ], - [ - 177.18190167742165, - -38.55516825621593 - ], - [ - 177.20612059914694, - -38.5257535564053 - ], - [ - 177.23033952087223, - -38.53415775635119 - ], - [ - 177.2455276582254, - -38.513147256486455 - ], - [ - 177.25866334458487, - -38.50926839497296 - ], - [ - 177.23772834444944, - -38.42878201856806 - ], - [ - 177.34856069810758, - -38.383528634244016 - ], - [ - 177.39453560036574, - -38.36898290356842 - ], - [ - 177.44338393401506, - -38.34861888062261 - ], - [ - 177.46596089494543, - -38.336012580703766 - ], - [ - 177.47129726752897, - -38.32340628078492 - ], - [ - 177.49264275786314, - -38.300456350163444 - ], - [ - 177.49059030686945, - -38.27944585029871 - ], - [ - 177.49674765985046, - -38.23968751978544 - ], - [ - 177.49182177746565, - -38.225141789109855 - ], - [ - 177.53081834634537, - -38.21253548919101 - ], - [ - 177.55626873866686, - -38.21253548919101 - ], - [ - 177.5636575622441, - -38.202191858488376 - ], - [ - 177.60265413112378, - -38.18958555856953 - ], - [ - 177.60799050370733, - -38.17697925865069 - ], - [ - 177.66053324914526, - -38.1601708587589 - ], - [ - 177.6490395235807, - -38.14756455884006 - ], - [ - 177.65848079815157, - -38.139160358894166 - ], - [ - 177.66012275894653, - -38.12235195900238 - ], - [ - 177.6925514846465, - -38.11168508984028 - ], - [ - 177.6880360924604, - -38.06998732857027 - ], - [ - 177.70117177881988, - -38.06578522859732 - ], - [ - 177.67818432769081, - -38.04057262875964 - ], - [ - 177.66915354331866, - -38.021824798111105 - ], - [ - 177.68885707285787, - -38.01536002892196 - ], - [ - 177.70035079842242, - -38.0279663288408 - ], - [ - 177.72415922994898, - -38.0257036596246 - ], - [ - 177.7434522692895, - -38.04671415948933 - ], - [ - 177.77588099498945, - -38.06319932092166 - ], - [ - 177.8493587405628, - -38.11524071289431 - ], - [ - 177.86249442692227, - -38.11103861292137 - ], - [ - 177.91708962335386, - -37.9846523752735 - ], - [ - 177.9429505058741, - -37.910630768057736 - ], - [ - 177.97045334918926, - -37.846952791544616 - ], - [ - 178.07430736946893, - -37.76355726900459 - ], - [ - 178.03736325158286, - -37.732203138437214 - ], - [ - 177.99590374151077, - -37.7619410767073 - ], - [ - 177.97291629038168, - -37.73672847686962 - ], - [ - 177.99179883952343, - -37.719920076977836 - ], - [ - 177.98317854535, - -37.70084900786984 - ], - [ - 177.99918766310063, - -37.69018213870775 - ], - [ - 177.9881044277348, - -37.677575838788904 - ], - [ - 177.99220932972216, - -37.654625908167425 - ], - [ - 177.9733267805804, - -37.63393864676215 - ], - [ - 177.9778421727665, - -37.61098871614067 - ], - [ - 178.03941570257655, - -37.595796508546165 - ], - [ - 178.1055046245727, - -37.59644298546508 - ], - [ - 178.09401089900814, - -37.5841599240057 - ], - [ - 178.07964374205244, - -37.55151283960049 - ], - [ - 178.07964374205244, - -37.54278540119514 - ], - [ - 178.1104305069575, - -37.54731073962755 - ], - [ - 178.13957531106757, - -37.54569454733026 - ], - [ - 178.16707815438275, - -37.54957340884375 - ], - [ - 178.17159354656883, - -37.53276500895196 - ], - [ - 178.2101796252498, - -37.53373472433033 - ], - [ - 178.2151055076346, - -37.54213892427623 - ], - [ - 178.24917619412952, - -37.547957216546465 - ], - [ - 178.31157070433704, - -37.55442198573561 - ], - [ - 178.3123916847345, - -37.56929095487065 - ], - [ - 178.29433011599022, - -37.57866487019492 - ], - [ - 178.30787629254846, - -37.59288736241105 - ], - [ - 178.35015678301804, - -37.62488796989734 - ], - [ - 178.3731442341471, - -37.632645692924314 - ], - [ - 178.41829815600784, - -37.6297365467892 - ], - [ - 178.4589366856825, - -37.64169636978913 - ], - [ - 178.48069266621536, - -37.63943370057292 - ], - [ - 178.49300737217737, - -37.6533329543296 - ], - [ - 178.52051021549255, - -37.6707878311403 - ], - [ - 178.53898227443557, - -37.67369697727541 - ], - [ - 178.55047600000012, - -37.69244480792395 - ], - [ - 178.52830952926848, - -37.713455307788685 - ], - [ - 178.52379413708243, - -37.733819330734505 - ], - [ - 178.50491158794065, - -37.74901153832901 - ], - [ - 178.48315560740778, - -37.781012145815296 - ], - [ - 178.45277933270148, - -37.810750084085385 - ], - [ - 178.44621148952174, - -37.82561905322042 - ], - [ - 178.45483178369514, - -37.833700014706864 - ], - [ - 178.43307580316224, - -37.8440436454095 - ], - [ - 178.41337227362303, - -37.85988232992292 - ], - [ - 178.40516246964836, - -37.874104822139046 - ], - [ - 178.4055729598471, - -37.89285265278758 - ], - [ - 178.38915335189773, - -37.919681444922546 - ], - [ - 178.39941560686609, - -37.940368706327824 - ], - [ - 178.39284776368635, - -37.96170244465202 - ], - [ - 178.37601766553826, - -37.96913692921954 - ], - [ - 178.36821835176232, - -37.98594532911133 - ], - [ - 178.35631413599904, - -37.98723828294916 - ], - [ - 178.34030501824842, - -38.00404668284095 - ], - [ - 178.33455815546614, - -38.02020860581382 - ], - [ - 178.33620011626107, - -38.03701700570561 - ], - [ - 178.3690393321598, - -38.05479512097577 - ], - [ - 178.3739652145446, - -38.094553451489034 - ], - [ - 178.35426168500535, - -38.107482989867336 - ], - [ - 178.32265393970286, - -38.12041252824564 - ], - [ - 178.31978050831174, - -38.1472413203806 - ], - [ - 178.34933580262054, - -38.17213068175883 - ], - [ - 178.35261972421043, - -38.186676412434416 - ], - [ - 178.34071550844715, - -38.190878512407366 - ], - [ - 178.32840080248513, - -38.21996997375854 - ], - [ - 178.31074972393958, - -38.229990366001715 - ], - [ - 178.31157070433704, - -38.23936428132598 - ], - [ - 178.33496864566487, - -38.26005154273126 - ], - [ - 178.3341476652674, - -38.298516919406694 - ], - [ - 178.3242959004978, - -38.31047674240662 - ], - [ - 178.33250570447248, - -38.32179008848763 - ], - [ - 178.32470639069652, - -38.33698229608214 - ], - [ - 178.33004276328006, - -38.35314421905501 - ], - [ - 178.30705531215096, - -38.361548419000904 - ], - [ - 178.30746580234972, - -38.37544767275757 - ], - [ - 178.31813854751678, - -38.38320539578456 - ], - [ - 178.34112599864588, - -38.38094272656835 - ], - [ - 178.3374315868573, - -38.40421589564929 - ], - [ - 178.34564139083196, - -38.41973134170325 - ], - [ - 178.32019099851047, - -38.42781230318968 - ], - [ - 178.30171893956742, - -38.44429746462202 - ], - [ - 178.28858325320795, - -38.47047977983807 - ], - [ - 178.2840678610219, - -38.51185430264863 - ], - [ - 178.29556158658642, - -38.52284441027018 - ], - [ - 178.28119442963074, - -38.540299287080884 - ], - [ - 178.24014540975736, - -38.55872387926996 - ], - [ - 178.2319356057827, - -38.571976656107715 - ], - [ - 178.20073835067893, - -38.5910477252157 - ], - [ - 178.2015593310764, - -38.60203783283726 - ], - [ - 178.16092080140174, - -38.63015957881006 - ], - [ - 178.14203825226, - -38.653755986350454 - ], - [ - 178.12767109530432, - -38.65084684021534 - ], - [ - 178.0812857028474, - -38.67832210926922 - ], - [ - 178.0607611929107, - -38.70062556297179 - ], - [ - 178.04926746734614, - -38.70191851680961 - ], - [ - 178.03900521237782, - -38.685433355377285 - ], - [ - 178.0184807024411, - -38.671534101620615 - ], - [ - 177.98564148654242, - -38.675736201593566 - ], - [ - 177.9515708000475, - -38.69965584759341 - ], - [ - 177.93515119209815, - -38.72551492435001 - ], - [ - 177.93104629011083, - -38.74296980116071 - ], - [ - 177.9380246234893, - -38.75266695494444 - ], - [ - 177.95937011382344, - -38.75202047802552 - ], - [ - 177.94623442746396, - -38.77690983940375 - ], - [ - 177.92817285871968, - -38.78919290086313 - ], - [ - 177.91298472136654, - -38.827658277538575 - ], - [ - 177.91175325077035, - -38.85125468507896 - ], - [ - 177.92037354494374, - -38.86806308497076 - ], - [ - 177.90354344679565, - -38.88616443870037 - ], - [ - 177.91093227037285, - -38.909760846240765 - ], - [ - 177.90313295659692, - -38.931741061483876 - ], - [ - 177.90518540759058, - -38.94854946137566 - ], - [ - 177.89943854480833, - -38.9718226304566 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2130, - "NAME_1": "Hawke's Bay", - "ID_2": 25194, - "NAME_2": "Central Hawke's Bay", - "VARNAME_2": "", - "HASC_2": "NZ.HB.CH", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.58956432064878, - -40.42574922109628 - ], - [ - 176.5628824577311, - -40.406678151988295 - ], - [ - 176.5509782419678, - -40.42122388266388 - ], - [ - 176.49679353573495, - -40.39956690588023 - ], - [ - 176.4635438296375, - -40.40991053658287 - ], - [ - 176.44219833930336, - -40.40538519815046 - ], - [ - 176.4331675549312, - -40.386314129042475 - ], - [ - 176.42003186857173, - -40.39051622901542 - ], - [ - 176.39211853505782, - -40.36045505228588 - ], - [ - 176.37077304472368, - -40.35592971385347 - ], - [ - 176.40976961360337, - -40.33297978323199 - ], - [ - 176.387192652673, - -40.31778757563749 - ], - [ - 176.3966339272439, - -40.309383375691596 - ], - [ - 176.40073882923124, - -40.2857869681512 - ], - [ - 176.3785723584996, - -40.270917999016156 - ], - [ - 176.38144578989073, - -40.236654722313666 - ], - [ - 176.3711835349224, - -40.234392053097466 - ], - [ - 176.37528843690973, - -40.21111888401653 - ], - [ - 176.36338422114645, - -40.19818934563823 - ], - [ - 176.37200451531987, - -40.17911827653024 - ], - [ - 176.36379471134518, - -40.17039083812489 - ], - [ - 176.38021431929454, - -40.160047207422245 - ], - [ - 176.36831010353126, - -40.14711766904395 - ], - [ - 176.34696461319712, - -40.14259233061154 - ], - [ - 176.33423941703637, - -40.11899592307115 - ], - [ - 176.31453588749713, - -40.09766218474696 - ], - [ - 176.32397716206802, - -40.089257984801066 - ], - [ - 176.3005792207402, - -40.06339890804446 - ], - [ - 176.27677078921363, - -40.06533833880121 - ], - [ - 176.26240363225796, - -40.05887356961206 - ], - [ - 176.26404559305288, - -40.041741931260816 - ], - [ - 176.24311059291745, - -40.037539831287866 - ], - [ - 176.24187912232125, - -40.02687296212577 - ], - [ - 176.21396578880734, - -40.02461029290957 - ], - [ - 176.2061664750314, - -40.01588285450422 - ], - [ - 176.18235804350485, - -40.01782228526096 - ], - [ - 176.1573181413821, - -40.00909484685561 - ], - [ - 176.13843559224034, - -40.0259032467474 - ], - [ - 176.10067049395684, - -39.99390263926111 - ], - [ - 176.1027229449505, - -39.976771000909864 - ], - [ - 176.11873206270113, - -39.96642737020723 - ], - [ - 176.11257470972012, - -39.94089153191008 - ], - [ - 176.12119500389352, - -39.921820462802096 - ], - [ - 176.11339569011758, - -39.9134162628562 - ], - [ - 176.12940480786818, - -39.90307263215356 - ], - [ - 176.13515167065046, - -39.890143093775265 - ], - [ - 176.12037402349605, - -39.883678324586114 - ], - [ - 176.134330690253, - -39.852000955559284 - ], - [ - 176.14130902363146, - -39.850061524802534 - ], - [ - 176.1417195138302, - -39.822586255748654 - ], - [ - 176.17825314151753, - -39.740483687046456 - ], - [ - 176.17209578853652, - -39.71494784874932 - ], - [ - 176.185231474896, - -39.71074574877637 - ], - [ - 176.18605245529346, - -39.68327047972248 - ], - [ - 176.27430784802124, - -39.743392833181574 - ], - [ - 176.32274569147182, - -39.75018084083018 - ], - [ - 176.3420387308123, - -39.77119134069491 - ], - [ - 176.3527114759794, - -39.77345400991112 - ], - [ - 176.36379471134518, - -39.74824141007343 - ], - [ - 176.36995206432618, - -39.70815984110071 - ], - [ - 176.3830877506857, - -39.70395774112776 - ], - [ - 176.39129755466035, - -39.68520991047923 - ], - [ - 176.41797941757807, - -39.67680571053334 - ], - [ - 176.43604098632235, - -39.68747257969543 - ], - [ - 176.44958716288056, - -39.68327047972248 - ], - [ - 176.4610808884451, - -39.69620001810078 - ], - [ - 176.47832147679193, - -39.69620001810078 - ], - [ - 176.501308927921, - -39.72173585639792 - ], - [ - 176.4852998101704, - -39.73207948710056 - ], - [ - 176.50582432010708, - -39.76408009458685 - ], - [ - 176.54892579097412, - -39.78315116369484 - ], - [ - 176.57683912448803, - -39.78541383291105 - ], - [ - 176.6068049089956, - -39.809010240451435 - ], - [ - 176.64867490926645, - -39.81773767885679 - ], - [ - 176.6737148113892, - -39.82614187880269 - ], - [ - 176.67207285059428, - -39.84327351715393 - ], - [ - 176.68767147814617, - -39.86040515550518 - ], - [ - 176.72133167444233, - -39.850061524802534 - ], - [ - 176.73159392941068, - -39.85232419401874 - ], - [ - 176.7426771647765, - -39.8267883557216 - ], - [ - 176.76812755709798, - -39.80771728661361 - ], - [ - 176.7816737336562, - -39.80383842510012 - ], - [ - 176.79316745922074, - -39.81676796347842 - ], - [ - 176.80548216518275, - -39.801898994343375 - ], - [ - 176.82888010651058, - -39.82808130955943 - ], - [ - 176.8194388319397, - -39.83648550950532 - ], - [ - 176.83791089088274, - -39.84779885558633 - ], - [ - 176.8473521654536, - -39.83939465564044 - ], - [ - 176.86459275380042, - -39.8397178940999 - ], - [ - 176.85597245962703, - -39.88691070918069 - ], - [ - 176.91138863645608, - -39.892729001450924 - ], - [ - 176.91918795023201, - -39.87365793234293 - ], - [ - 176.9676257936826, - -39.88270860920774 - ], - [ - 176.95572157791932, - -39.91729512436969 - ], - [ - 176.9384809895725, - -39.92731551661287 - ], - [ - 176.9278082444054, - -39.9589928856397 - ], - [ - 176.90851520506493, - -39.98226605472064 - ], - [ - 176.9031788324814, - -40.00650893917995 - ], - [ - 176.88799069512825, - -40.026226485206855 - ], - [ - 176.88019138135232, - -40.06016652344989 - ], - [ - 176.89414804810926, - -40.074389015666014 - ], - [ - 176.87485500876878, - -40.09604599244967 - ], - [ - 176.87485500876878, - -40.120935353827896 - ], - [ - 176.86500324399915, - -40.1383902306386 - ], - [ - 176.84899412624853, - -40.15228948439527 - ], - [ - 176.82600667511946, - -40.18202742266536 - ], - [ - 176.7952199102144, - -40.20820973788141 - ], - [ - 176.79070451802835, - -40.218876607043505 - ], - [ - 176.7710009884891, - -40.21790689166513 - ], - [ - 176.72010020384613, - -40.23762443769204 - ], - [ - 176.68233510556263, - -40.26251379907026 - ], - [ - 176.67453579178667, - -40.271241237475614 - ], - [ - 176.666325987812, - -40.313585475664546 - ], - [ - 176.67330432119047, - -40.321019960232064 - ], - [ - 176.6527798112538, - -40.35237409079944 - ], - [ - 176.6494958896639, - -40.368536013772314 - ], - [ - 176.63636020330443, - -40.3898697520965 - ], - [ - 176.63677069350317, - -40.406678151988295 - ], - [ - 176.6236350071437, - -40.427365413393574 - ], - [ - 176.5920272618412, - -40.41928445190713 - ], - [ - 176.58956432064878, - -40.42574922109628 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2130, - "NAME_1": "Hawke's Bay", - "ID_2": 25195, - "NAME_2": "Hastings", - "VARNAME_2": "", - "HASC_2": "NZ.HB.HS", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 177.08092108853313, - -39.17384666761752 - ], - [ - 177.03987206865975, - -39.20067545975249 - ], - [ - 177.0345356960762, - -39.23849435950901 - ], - [ - 177.02181049991546, - -39.246898559454905 - ], - [ - 177.01893706852434, - -39.26176752858995 - ], - [ - 176.99759157819017, - -39.278899166941194 - ], - [ - 176.9918447154079, - -39.29344489761678 - ], - [ - 176.9663943230864, - -39.31445539748152 - ], - [ - 176.95038520533578, - -39.321889882049035 - ], - [ - 176.94258589155984, - -39.335142658886795 - ], - [ - 176.9204194208282, - -39.33934475885974 - ], - [ - 176.89537951870545, - -39.374254512481144 - ], - [ - 176.8871697147308, - -39.3936488200486 - ], - [ - 176.87444451857004, - -39.38686081239999 - ], - [ - 176.85515147922953, - -39.39300234312968 - ], - [ - 176.86664520479408, - -39.405285404589065 - ], - [ - 176.85104657724222, - -39.4156290352917 - ], - [ - 176.85597245962703, - -39.43017476596729 - ], - [ - 176.83626893008778, - -39.43663953515644 - ], - [ - 176.84776265565233, - -39.44892259661582 - ], - [ - 176.82805912611312, - -39.45538736580497 - ], - [ - 176.85556196942827, - -39.48383235023723 - ], - [ - 176.8740340283713, - -39.49352950402095 - ], - [ - 176.8912746167181, - -39.49255978864258 - ], - [ - 176.92000893062948, - -39.49870131937227 - ], - [ - 176.91918795023201, - -39.52262096537213 - ], - [ - 176.92329285221936, - -39.5539750959395 - ], - [ - 176.88922216572445, - -39.564318726642135 - ], - [ - 176.8629507930055, - -39.545894134453064 - ], - [ - 176.83914236147893, - -39.548803280588174 - ], - [ - 176.7792107924638, - -39.568520826615085 - ], - [ - 176.78331569445112, - -39.57272292658803 - ], - [ - 176.72379461563474, - -39.59179399569602 - ], - [ - 176.7246155960322, - -39.60213762639866 - ], - [ - 176.76771706689925, - -39.648360726101075 - ], - [ - 176.78495765524607, - -39.648037487641616 - ], - [ - 176.82067030253592, - -39.65870435680372 - ], - [ - 176.82846961631185, - -39.66710855674961 - ], - [ - 176.84940461644726, - -39.67163389518201 - ], - [ - 176.87198157737762, - -39.68714934123597 - ], - [ - 176.88881167552572, - -39.68747257969543 - ], - [ - 176.9154935384434, - -39.679391618208996 - ], - [ - 176.9142620678472, - -39.668724749046895 - ], - [ - 176.93396559738645, - -39.66290645677666 - ], - [ - 176.93930196996996, - -39.649976918398366 - ], - [ - 176.9372495189763, - -39.62831994161471 - ], - [ - 176.9528481465282, - -39.61797631091208 - ], - [ - 176.9811719702408, - -39.63252204158766 - ], - [ - 177.03166226468508, - -39.64965367993891 - ], - [ - 177.06409099038504, - -39.64254243383084 - ], - [ - 177.07722667674452, - -39.63349175696604 - ], - [ - 177.09159383370022, - -39.65288606453348 - ], - [ - 177.0792791277382, - -39.672926849019845 - ], - [ - 177.0501343236281, - -39.69232115658729 - ], - [ - 177.0197580489218, - -39.72593795637087 - ], - [ - 177.00785383315852, - -39.76149418691119 - ], - [ - 177.0074433429598, - -39.7728075329922 - ], - [ - 176.99594961739524, - -39.79123212518128 - ], - [ - 176.99348667620282, - -39.81191938658655 - ], - [ - 177.00456991156864, - -39.83519255566749 - ], - [ - 176.9811719702408, - -39.86137487088355 - ], - [ - 176.9676257936826, - -39.88270860920774 - ], - [ - 176.91918795023201, - -39.87365793234293 - ], - [ - 176.91138863645608, - -39.892729001450924 - ], - [ - 176.85597245962703, - -39.88691070918069 - ], - [ - 176.86459275380042, - -39.8397178940999 - ], - [ - 176.8473521654536, - -39.83939465564044 - ], - [ - 176.83791089088274, - -39.84779885558633 - ], - [ - 176.8194388319397, - -39.83648550950532 - ], - [ - 176.82888010651058, - -39.82808130955943 - ], - [ - 176.80548216518275, - -39.801898994343375 - ], - [ - 176.79316745922074, - -39.81676796347842 - ], - [ - 176.7816737336562, - -39.80383842510012 - ], - [ - 176.76812755709798, - -39.80771728661361 - ], - [ - 176.7426771647765, - -39.8267883557216 - ], - [ - 176.73159392941068, - -39.85232419401874 - ], - [ - 176.72133167444233, - -39.850061524802534 - ], - [ - 176.68767147814617, - -39.86040515550518 - ], - [ - 176.67207285059428, - -39.84327351715393 - ], - [ - 176.6737148113892, - -39.82614187880269 - ], - [ - 176.64867490926645, - -39.81773767885679 - ], - [ - 176.6068049089956, - -39.809010240451435 - ], - [ - 176.57683912448803, - -39.78541383291105 - ], - [ - 176.54892579097412, - -39.78315116369484 - ], - [ - 176.50582432010708, - -39.76408009458685 - ], - [ - 176.4852998101704, - -39.73207948710056 - ], - [ - 176.501308927921, - -39.72173585639792 - ], - [ - 176.47832147679193, - -39.69620001810078 - ], - [ - 176.4610808884451, - -39.69620001810078 - ], - [ - 176.44958716288056, - -39.68327047972248 - ], - [ - 176.43604098632235, - -39.68747257969543 - ], - [ - 176.41797941757807, - -39.67680571053334 - ], - [ - 176.39129755466035, - -39.68520991047923 - ], - [ - 176.3830877506857, - -39.70395774112776 - ], - [ - 176.36995206432618, - -39.70815984110071 - ], - [ - 176.36379471134518, - -39.74824141007343 - ], - [ - 176.3527114759794, - -39.77345400991112 - ], - [ - 176.3420387308123, - -39.77119134069491 - ], - [ - 176.32274569147182, - -39.75018084083018 - ], - [ - 176.27430784802124, - -39.743392833181574 - ], - [ - 176.18605245529346, - -39.68327047972248 - ], - [ - 176.20862941622383, - -39.6709874182631 - ], - [ - 176.2012405926466, - -39.66225997985775 - ], - [ - 176.1684013767479, - -39.645128341506506 - ], - [ - 176.185231474896, - -39.607309441749976 - ], - [ - 176.16429647476056, - -39.602784103317575 - ], - [ - 176.1454139256188, - -39.58145036499338 - ], - [ - 176.1622440237669, - -39.58177360345284 - ], - [ - 176.1889258866846, - -39.573369403506945 - ], - [ - 176.19056784747954, - -39.55656100361516 - ], - [ - 176.20370353383902, - -39.552682142101666 - ], - [ - 176.21232382801242, - -39.53361107299368 - ], - [ - 176.2521413772896, - -39.521328011534294 - ], - [ - 176.254604318482, - -39.51486324234514 - ], - [ - 176.3079680443174, - -39.49870131937227 - ], - [ - 176.31699882868955, - -39.49029711942637 - ], - [ - 176.3190512796832, - -39.473488719534586 - ], - [ - 176.31125196590727, - -39.464761281129235 - ], - [ - 176.31946176988194, - -39.446013450480706 - ], - [ - 176.31494637769586, - -39.43114448134566 - ], - [ - 176.3297240248503, - -39.410133981480925 - ], - [ - 176.32890304445283, - -39.39946711231883 - ], - [ - 176.33998627981865, - -39.3745777509406 - ], - [ - 176.3190512796832, - -39.3700524125082 - ], - [ - 176.30755755411866, - -39.3571228741299 - ], - [ - 176.28415961279083, - -39.35906230488665 - ], - [ - 176.2689714754377, - -39.3419306665354 - ], - [ - 176.28210716179717, - -39.33805180502191 - ], - [ - 176.28292814219463, - -39.310576535968025 - ], - [ - 176.3091995149136, - -39.30217233602213 - ], - [ - 176.31125196590727, - -39.285363936130345 - ], - [ - 176.29031696577184, - -39.24301969794141 - ], - [ - 176.26650853424528, - -39.244959128698156 - ], - [ - 176.24885745569972, - -39.233969021076604 - ], - [ - 176.20698745542887, - -39.22524158267125 - ], - [ - 176.20165108284533, - -39.199705744374114 - ], - [ - 176.1864629454922, - -39.18257410602287 - ], - [ - 176.1864629454922, - -39.14443196780689 - ], - [ - 176.18810490628712, - -39.1276235679151 - ], - [ - 176.22135461238457, - -39.11760317567192 - ], - [ - 176.2439315733149, - -39.10532011421253 - ], - [ - 176.23613225953898, - -39.09659267580718 - ], - [ - 176.3445016720047, - -39.171907236860775 - ], - [ - 176.3880136330705, - -39.16382627537433 - ], - [ - 176.4040227508211, - -39.1534826446717 - ], - [ - 176.38514020167935, - -39.1321489063475 - ], - [ - 176.4208528489692, - -39.11598698337463 - ], - [ - 176.45205010407295, - -39.12245175256378 - ], - [ - 176.42249480976412, - -39.061036445266865 - ], - [ - 176.45410255506664, - -39.00253028410506 - ], - [ - 176.55549363415386, - -39.00382323794289 - ], - [ - 176.54810481057666, - -38.99509579953754 - ], - [ - 176.61953010515634, - -39.000590853348314 - ], - [ - 176.61829863456015, - -38.98992398418622 - ], - [ - 176.60352098740572, - -38.972792345834975 - ], - [ - 176.59859510502093, - -38.95824661515939 - ], - [ - 176.6080363795918, - -38.949842415213496 - ], - [ - 176.60352098740572, - -38.93497344607845 - ], - [ - 176.6191196149576, - -38.92462981537581 - ], - [ - 176.70039667430692, - -38.85674973888975 - ], - [ - 176.7184582430512, - -38.943377646024345 - ], - [ - 176.72051069404486, - -39.002207045645605 - ], - [ - 176.73364638040434, - -38.99832818413211 - ], - [ - 176.77756883166887, - -39.00123733026723 - ], - [ - 176.77880030226507, - -39.011904199429324 - ], - [ - 176.8001457925992, - -39.027096407023826 - ], - [ - 176.82354373392704, - -39.02548021472654 - ], - [ - 176.8461206948574, - -39.05133929148314 - ], - [ - 176.83667942028652, - -39.05942025296957 - ], - [ - 176.85186755763968, - -39.07655189132082 - ], - [ - 176.86828716558904, - -39.07687512978028 - ], - [ - 176.88060187155105, - -39.10047153732067 - ], - [ - 176.90112638148773, - -39.10532011421253 - ], - [ - 176.90851520506493, - -39.11404755261788 - ], - [ - 176.93068167579656, - -39.101764491158505 - ], - [ - 176.95613206811805, - -39.09400676813152 - ], - [ - 176.97008873487502, - -39.10079477578013 - ], - [ - 176.9992335389851, - -39.13538129094208 - ], - [ - 177.0197580489218, - -39.15121997545549 - ], - [ - 177.04315599024963, - -39.16027065232031 - ], - [ - 177.0731217747572, - -39.15606855234736 - ], - [ - 177.08092108853313, - -39.17384666761752 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2130, - "NAME_1": "Hawke's Bay", - "ID_2": 25196, - "NAME_2": "Hastings city", - "VARNAME_2": "", - "HASC_2": "", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.92329285221936, - -39.5539750959395 - ], - [ - 176.93027118559783, - -39.57175321120966 - ], - [ - 176.95243765632947, - -39.60827915712835 - ], - [ - 176.9811719702408, - -39.63252204158766 - ], - [ - 176.9528481465282, - -39.61797631091208 - ], - [ - 176.9372495189763, - -39.62831994161471 - ], - [ - 176.93930196996996, - -39.649976918398366 - ], - [ - 176.93396559738645, - -39.66290645677666 - ], - [ - 176.9142620678472, - -39.668724749046895 - ], - [ - 176.9154935384434, - -39.679391618208996 - ], - [ - 176.88881167552572, - -39.68747257969543 - ], - [ - 176.87198157737762, - -39.68714934123597 - ], - [ - 176.84940461644726, - -39.67163389518201 - ], - [ - 176.82846961631185, - -39.66710855674961 - ], - [ - 176.82067030253592, - -39.65870435680372 - ], - [ - 176.78495765524607, - -39.648037487641616 - ], - [ - 176.76771706689925, - -39.648360726101075 - ], - [ - 176.7246155960322, - -39.60213762639866 - ], - [ - 176.72379461563474, - -39.59179399569602 - ], - [ - 176.78331569445112, - -39.57272292658803 - ], - [ - 176.7792107924638, - -39.568520826615085 - ], - [ - 176.83914236147893, - -39.548803280588174 - ], - [ - 176.8629507930055, - -39.545894134453064 - ], - [ - 176.88922216572445, - -39.564318726642135 - ], - [ - 176.92329285221936, - -39.5539750959395 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2130, - "NAME_1": "Hawke's Bay", - "ID_2": 25197, - "NAME_2": "Napier", - "VARNAME_2": "", - "HASC_2": "NZ.HB.NR", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.8871697147308, - -39.3936488200486 - ], - [ - 176.87567598916624, - -39.42467971215651 - ], - [ - 176.87198157737762, - -39.451185265832024 - ], - [ - 176.87937040095483, - -39.46993309648056 - ], - [ - 176.89045363632064, - -39.47995348872374 - ], - [ - 176.9224718718219, - -39.478660534885904 - ], - [ - 176.92000893062948, - -39.49870131937227 - ], - [ - 176.8912746167181, - -39.49255978864258 - ], - [ - 176.8740340283713, - -39.49352950402095 - ], - [ - 176.85556196942827, - -39.48383235023723 - ], - [ - 176.82805912611312, - -39.45538736580497 - ], - [ - 176.84776265565233, - -39.44892259661582 - ], - [ - 176.83626893008778, - -39.43663953515644 - ], - [ - 176.85597245962703, - -39.43017476596729 - ], - [ - 176.85104657724222, - -39.4156290352917 - ], - [ - 176.86664520479408, - -39.405285404589065 - ], - [ - 176.85515147922953, - -39.39300234312968 - ], - [ - 176.87444451857004, - -39.38686081239999 - ], - [ - 176.8871697147308, - -39.3936488200486 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2130, - "NAME_1": "Hawke's Bay", - "ID_2": 25198, - "NAME_2": "Wairoa", - "VARNAME_2": "", - "HASC_2": "NZ.HB.WW", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 177.1277169711888, - -38.58846181754004 - ], - [ - 177.28862912909244, - -38.65666513248557 - ], - [ - 177.30956412922785, - -38.66119047091797 - ], - [ - 177.3075116782342, - -38.60203783283726 - ], - [ - 177.35389707069112, - -38.6253110019182 - ], - [ - 177.39453560036574, - -38.62337157116145 - ], - [ - 177.41259716911003, - -38.63403844032355 - ], - [ - 177.4401000124252, - -38.63630110953975 - ], - [ - 177.43230069864927, - -38.66571580935038 - ], - [ - 177.41998599268726, - -38.68026154002597 - ], - [ - 177.44297344381633, - -38.705797378323105 - ], - [ - 177.45980354196442, - -38.705797378323105 - ], - [ - 177.47499167931758, - -38.72260577821489 - ], - [ - 177.47950707150363, - -38.73715150889048 - ], - [ - 177.46719236554162, - -38.75202047802552 - ], - [ - 177.4852539342859, - -38.762364108728164 - ], - [ - 177.49387422845933, - -38.78111193937669 - ], - [ - 177.51357775799855, - -38.77497040864701 - ], - [ - 177.54395403270485, - -38.80858720843058 - ], - [ - 177.56406805244282, - -38.80212243924143 - ], - [ - 177.59526530754658, - -38.80858720843058 - ], - [ - 177.59362334675166, - -38.82539560832237 - ], - [ - 177.5993702095339, - -38.850608208160054 - ], - [ - 177.61907373907314, - -38.8441434389709 - ], - [ - 177.634672366625, - -38.86127507732215 - ], - [ - 177.66135422954272, - -38.852870877376255 - ], - [ - 177.6564283471579, - -38.90329607705162 - ], - [ - 177.6839311904731, - -38.905235507808364 - ], - [ - 177.72128579855786, - -38.89909397707867 - ], - [ - 177.7290851123338, - -38.907498177024564 - ], - [ - 177.74919913207174, - -38.90135664629487 - ], - [ - 177.7779334459831, - -38.913962946213715 - ], - [ - 177.8021523677084, - -38.912023515456966 - ], - [ - 177.82062442665142, - -38.92269038461907 - ], - [ - 177.83663354440205, - -38.912023515456966 - ], - [ - 177.84853776016533, - -38.92462981537581 - ], - [ - 177.83334962281216, - -38.945640315240546 - ], - [ - 177.8592105053324, - -38.96471138434853 - ], - [ - 177.89943854480833, - -38.9718226304566 - ], - [ - 177.89451266242352, - -39.00899505329421 - ], - [ - 177.88630285844883, - -39.01772249169956 - ], - [ - 177.88876579964125, - -39.04422804537507 - ], - [ - 177.8982070742121, - -39.07202655288842 - ], - [ - 177.91462668216147, - -39.0843096143478 - ], - [ - 177.94787638825892, - -39.09400676813152 - ], - [ - 177.98892540813227, - -39.09691591426664 - ], - [ - 178.0037030552867, - -39.104027160374706 - ], - [ - 178.00165060429305, - -39.1146940295368 - ], - [ - 177.9696323687918, - -39.13635100632045 - ], - [ - 177.95444423143866, - -39.14152282167177 - ], - [ - 177.94623442746396, - -39.15606855234736 - ], - [ - 177.9244784469311, - -39.17061428302294 - ], - [ - 177.92653089792475, - -39.18903887521202 - ], - [ - 177.90682736838554, - -39.23009015956312 - ], - [ - 177.86372589751846, - -39.26823229777909 - ], - [ - 177.8616734465248, - -39.24786827483328 - ], - [ - 177.850590211159, - -39.23493873645498 - ], - [ - 177.85017972096026, - -39.211019090455125 - ], - [ - 177.8407384463894, - -39.18289734448233 - ], - [ - 177.82349785804257, - -39.16576570613108 - ], - [ - 177.83786501499824, - -39.15121997545549 - ], - [ - 177.86742030930708, - -39.097562391185555 - ], - [ - 177.87029374069823, - -39.07655189132082 - ], - [ - 177.8592105053324, - -39.065885022158724 - ], - [ - 177.83499158360712, - -39.06071320680741 - ], - [ - 177.82924472082485, - -39.074612460564076 - ], - [ - 177.81528805406788, - -39.074935699023534 - ], - [ - 177.7947635441312, - -39.06653149907764 - ], - [ - 177.74673619087935, - -39.056511106834456 - ], - [ - 177.667101092325, - -39.05069281456422 - ], - [ - 177.58007717019342, - -39.05327872223988 - ], - [ - 177.56571001323775, - -39.05521815299663 - ], - [ - 177.48279099309352, - -39.056511106834456 - ], - [ - 177.41259716911003, - -39.06362235294252 - ], - [ - 177.29027108988737, - -39.09206733737478 - ], - [ - 177.19093246179378, - -39.12568413715835 - ], - [ - 177.1388002065546, - -39.145401683185256 - ], - [ - 177.08092108853313, - -39.17384666761752 - ], - [ - 177.0731217747572, - -39.15606855234736 - ], - [ - 177.04315599024963, - -39.16027065232031 - ], - [ - 177.0197580489218, - -39.15121997545549 - ], - [ - 176.9992335389851, - -39.13538129094208 - ], - [ - 176.97008873487502, - -39.10079477578013 - ], - [ - 176.95613206811805, - -39.09400676813152 - ], - [ - 176.93068167579656, - -39.101764491158505 - ], - [ - 176.90851520506493, - -39.11404755261788 - ], - [ - 176.90112638148773, - -39.10532011421253 - ], - [ - 176.88060187155105, - -39.10047153732067 - ], - [ - 176.86828716558904, - -39.07687512978028 - ], - [ - 176.85186755763968, - -39.07655189132082 - ], - [ - 176.83667942028652, - -39.05942025296957 - ], - [ - 176.8461206948574, - -39.05133929148314 - ], - [ - 176.82354373392704, - -39.02548021472654 - ], - [ - 176.8001457925992, - -39.027096407023826 - ], - [ - 176.77880030226507, - -39.011904199429324 - ], - [ - 176.77756883166887, - -39.00123733026723 - ], - [ - 176.73364638040434, - -38.99832818413211 - ], - [ - 176.72051069404486, - -39.002207045645605 - ], - [ - 176.7184582430512, - -38.943377646024345 - ], - [ - 176.70039667430692, - -38.85674973888975 - ], - [ - 176.70244912530057, - -38.83994133899795 - ], - [ - 176.7114799096727, - -38.83186037751152 - ], - [ - 176.69957569390942, - -38.80826396997112 - ], - [ - 176.71599530185878, - -38.77076830867406 - ], - [ - 176.7114799096727, - -38.75589933953901 - ], - [ - 176.72256314503852, - -38.730686739701326 - ], - [ - 176.7393932431866, - -38.731009978160785 - ], - [ - 176.75417089034104, - -38.71032271675551 - ], - [ - 176.76443314530937, - -38.712585385971714 - ], - [ - 176.77551638067519, - -38.687372786134034 - ], - [ - 176.79891432200301, - -38.685433355377285 - ], - [ - 176.82970108690805, - -38.69254460148535 - ], - [ - 176.8547409890308, - -38.673796770836816 - ], - [ - 176.8912746167181, - -38.66797847856658 - ], - [ - 176.90974667566115, - -38.689635455350235 - ], - [ - 176.9507956955345, - -38.698686132215045 - ], - [ - 176.96803628388133, - -38.70935300137714 - ], - [ - 177.00333844097244, - -38.69319107840427 - ], - [ - 177.01524265673572, - -38.67832210926922 - ], - [ - 177.0345356960762, - -38.63436167878301 - ], - [ - 177.06080706879519, - -38.62628071729657 - ], - [ - 177.09693020628376, - -38.620139186566874 - ], - [ - 177.1277169711888, - -38.58846181754004 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2131, - "NAME_1": "Manawatu-Wanganui", - "ID_2": 25199, - "NAME_2": "Horowhenua", - "VARNAME_2": "", - "HASC_2": "NZ.MW.HW", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.49355549002954, - -40.43253722874489 - ], - [ - 175.5136695097675, - -40.45419420552854 - ], - [ - 175.55923392182694, - -40.484255382258084 - ], - [ - 175.54568774526874, - -40.488457482231034 - ], - [ - 175.5818108827573, - -40.526922858906474 - ], - [ - 175.60972421627122, - -40.50171025906879 - ], - [ - 175.62450186342562, - -40.50817502825794 - ], - [ - 175.5818108827573, - -40.554398127960354 - ], - [ - 175.51572196076117, - -40.6407027966355 - ], - [ - 175.47015754870174, - -40.69339066552707 - ], - [ - 175.45004352896376, - -40.72700746531064 - ], - [ - 175.431160979822, - -40.74381586520243 - ], - [ - 175.42459313664227, - -40.74575529595918 - ], - [ - 175.40571058750052, - -40.73508842679708 - ], - [ - 175.36712450881953, - -40.73023984990522 - ], - [ - 175.34701048908158, - -40.73638138063491 - ], - [ - 175.34167411649804, - -40.74898768055375 - ], - [ - 175.30678244960566, - -40.748664442094295 - ], - [ - 175.26409146893735, - -40.767089034283366 - ], - [ - 175.23494666482725, - -40.75383625744561 - ], - [ - 175.20169695872983, - -40.76385664968879 - ], - [ - 175.18199342919058, - -40.7425229113646 - ], - [ - 175.20457039012095, - -40.72991661144576 - ], - [ - 175.16844725263238, - -40.71892650382421 - ], - [ - 175.16721578203618, - -40.70825963466211 - ], - [ - 175.13355558574, - -40.70567372698645 - ], - [ - 175.14751225249697, - -40.676905504094734 - ], - [ - 175.16064793885644, - -40.66332948879752 - ], - [ - 175.1602374486577, - -40.64781404274356 - ], - [ - 175.17460460561338, - -40.61193457374378 - ], - [ - 175.2012864685311, - -40.52789257428484 - ], - [ - 175.22181097846777, - -40.425102744177366 - ], - [ - 175.22591588045512, - -40.38954651363705 - ], - [ - 175.2620390179437, - -40.38825355979922 - ], - [ - 175.28461597887406, - -40.40312252893426 - ], - [ - 175.3022670574196, - -40.40344576739372 - ], - [ - 175.36384058722967, - -40.422840074961165 - ], - [ - 175.43198196021947, - -40.440618190231326 - ], - [ - 175.46564215651566, - -40.43027455952869 - ], - [ - 175.49355549002954, - -40.43253722874489 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2131, - "NAME_1": "Manawatu-Wanganui", - "ID_2": 25200, - "NAME_2": "Manawatu", - "VARNAME_2": "", - "HASC_2": "NZ.MW.MN", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.12037402349605, - -39.883678324586114 - ], - [ - 176.13515167065046, - -39.890143093775265 - ], - [ - 176.12940480786818, - -39.90307263215356 - ], - [ - 176.11339569011758, - -39.9134162628562 - ], - [ - 176.12119500389352, - -39.921820462802096 - ], - [ - 176.11257470972012, - -39.94089153191008 - ], - [ - 176.11873206270113, - -39.96642737020723 - ], - [ - 176.1027229449505, - -39.976771000909864 - ], - [ - 176.10067049395684, - -39.99390263926111 - ], - [ - 176.08178794481506, - -40.010711039152895 - ], - [ - 176.07645157223155, - -40.02331733907174 - ], - [ - 176.08507186640495, - -40.04238840817973 - ], - [ - 176.07029421925054, - -40.06372214650392 - ], - [ - 176.04361235633283, - -40.071803107990355 - ], - [ - 176.02719274838347, - -40.082469977152456 - ], - [ - 176.01610951301768, - -40.107682576990136 - ], - [ - 176.00256333645945, - -40.111884676963086 - ], - [ - 175.97834441473415, - -40.141299376773716 - ], - [ - 175.9619248067848, - -40.15196624593581 - ], - [ - 175.93811637525826, - -40.15390567669255 - ], - [ - 175.92949608108484, - -40.17297674580055 - ], - [ - 175.91923382611648, - -40.170714076584346 - ], - [ - 175.8962463749874, - -40.18332037650318 - ], - [ - 175.90404568876335, - -40.191724576449076 - ], - [ - 175.87161696306336, - -40.21273507631381 - ], - [ - 175.87531137485198, - -40.21693717628676 - ], - [ - 175.85848127670388, - -40.255079314502744 - ], - [ - 175.84000921776087, - -40.24441244534064 - ], - [ - 175.8162007862343, - -40.24635187609739 - ], - [ - 175.8075804920609, - -40.26542294520538 - ], - [ - 175.77309931536726, - -40.3032418449619 - ], - [ - 175.7566797074179, - -40.275443337448564 - ], - [ - 175.7443650014559, - -40.29031230658361 - ], - [ - 175.71850411893567, - -40.30906013723214 - ], - [ - 175.70495794237746, - -40.31326223720509 - ], - [ - 175.69305372661418, - -40.300332698826786 - ], - [ - 175.659393530318, - -40.31067632952943 - ], - [ - 175.64297392236864, - -40.32134319869152 - ], - [ - 175.62737529481677, - -40.30421156034028 - ], - [ - 175.6035668632902, - -40.30582775263756 - ], - [ - 175.59084166712947, - -40.320696721772606 - ], - [ - 175.59576754951428, - -40.33556569090765 - ], - [ - 175.58222137295604, - -40.3397677908806 - ], - [ - 175.57647451017377, - -40.352697329258895 - ], - [ - 175.5465087256662, - -40.36724305993448 - ], - [ - 175.56990666699403, - -40.392778898231626 - ], - [ - 175.54979264725608, - -40.39924366742077 - ], - [ - 175.55061362765355, - -40.40991053658287 - ], - [ - 175.52639470592825, - -40.411526728880155 - ], - [ - 175.49355549002954, - -40.43253722874489 - ], - [ - 175.46564215651566, - -40.43027455952869 - ], - [ - 175.43198196021947, - -40.440618190231326 - ], - [ - 175.36384058722967, - -40.422840074961165 - ], - [ - 175.3022670574196, - -40.40344576739372 - ], - [ - 175.28461597887406, - -40.40312252893426 - ], - [ - 175.2620390179437, - -40.38825355979922 - ], - [ - 175.22591588045512, - -40.38954651363705 - ], - [ - 175.22796833144878, - -40.370798682988514 - ], - [ - 175.22468440985892, - -40.29483764501601 - ], - [ - 175.2222214686665, - -40.28998906812415 - ], - [ - 175.23248372363486, - -40.28158486817826 - ], - [ - 175.24808235118675, - -40.2987165065295 - ], - [ - 175.27599568470063, - -40.29063554504306 - ], - [ - 175.29323627304746, - -40.279968675880966 - ], - [ - 175.31909715556768, - -40.25023073761088 - ], - [ - 175.3314118615297, - -40.2250181377732 - ], - [ - 175.3338748027221, - -40.20788649942195 - ], - [ - 175.34742097928032, - -40.203684399449 - ], - [ - 175.35357833226132, - -40.191078099530166 - ], - [ - 175.39134343054482, - -40.184936568800474 - ], - [ - 175.4213092150524, - -40.17039083812489 - ], - [ - 175.43690784260428, - -40.14938033826015 - ], - [ - 175.43526588180936, - -40.128046599935956 - ], - [ - 175.4516854897587, - -40.11737973077386 - ], - [ - 175.43937078379668, - -40.094106561692925 - ], - [ - 175.45579039174604, - -40.083439692530824 - ], - [ - 175.48904009784349, - -40.07309606182819 - ], - [ - 175.50053382340803, - -40.04788346199051 - ], - [ - 175.5025862744017, - -40.030751823639264 - ], - [ - 175.54938215705735, - -40.01652933142313 - ], - [ - 175.60192490249528, - -39.98937730082871 - ], - [ - 175.6351746085927, - -39.979033670126064 - ], - [ - 175.62942774581043, - -39.953497831828926 - ], - [ - 175.6520047067408, - -39.94089153191008 - ], - [ - 175.64051098117625, - -39.92828523199124 - ], - [ - 175.64625784395852, - -39.915355693612945 - ], - [ - 175.6823809814471, - -39.89887053218062 - ], - [ - 175.67376068727367, - -39.87979946307262 - ], - [ - 175.71111529535847, - -39.87365793234293 - ], - [ - 175.72548245231414, - -39.88012270153208 - ], - [ - 175.73656568767996, - -39.8549101016944 - ], - [ - 175.7964972566951, - -39.83648550950532 - ], - [ - 175.78500353113054, - -39.82355597112702 - ], - [ - 175.79731823709255, - -39.809010240451435 - ], - [ - 175.82400010001027, - -39.80060604050554 - ], - [ - 175.86135470809504, - -39.79478774823531 - ], - [ - 175.88228970823045, - -39.79898984820826 - ], - [ - 175.90445617896208, - -39.81418205580276 - ], - [ - 175.91759186532155, - -39.80997995582981 - ], - [ - 175.93319049287345, - -39.827111594181055 - ], - [ - 175.95781990479747, - -39.83583903258641 - ], - [ - 175.96931363036202, - -39.84844533250525 - ], - [ - 175.9959954932797, - -39.840364371018815 - ], - [ - 176.0054367678506, - -39.83196017107292 - ], - [ - 176.0600319642822, - -39.86428401701866 - ], - [ - 176.0891767683923, - -39.87721355539696 - ], - [ - 176.12037402349605, - -39.883678324586114 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2131, - "NAME_1": "Manawatu-Wanganui", - "ID_2": 25201, - "NAME_2": "Palmerston North", - "VARNAME_2": "", - "HASC_2": "NZ.MW.PN", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.77309931536726, - -40.3032418449619 - ], - [ - 175.79157137431028, - -40.313908714124 - ], - [ - 175.7710468643736, - -40.347848752367035 - ], - [ - 175.7661209819888, - -40.37112192144797 - ], - [ - 175.74600696225082, - -40.37758669063712 - ], - [ - 175.72712441310907, - -40.39439509052891 - ], - [ - 175.7213775503268, - -40.40700139044775 - ], - [ - 175.7263034327116, - -40.4218703595828 - ], - [ - 175.7139887267496, - -40.436739328717834 - ], - [ - 175.62450186342562, - -40.50817502825794 - ], - [ - 175.60972421627122, - -40.50171025906879 - ], - [ - 175.5818108827573, - -40.526922858906474 - ], - [ - 175.54568774526874, - -40.488457482231034 - ], - [ - 175.55923392182694, - -40.484255382258084 - ], - [ - 175.5136695097675, - -40.45419420552854 - ], - [ - 175.49355549002954, - -40.43253722874489 - ], - [ - 175.52639470592825, - -40.411526728880155 - ], - [ - 175.55061362765355, - -40.40991053658287 - ], - [ - 175.54979264725608, - -40.39924366742077 - ], - [ - 175.56990666699403, - -40.392778898231626 - ], - [ - 175.5465087256662, - -40.36724305993448 - ], - [ - 175.57647451017377, - -40.352697329258895 - ], - [ - 175.58222137295604, - -40.3397677908806 - ], - [ - 175.59576754951428, - -40.33556569090765 - ], - [ - 175.59084166712947, - -40.320696721772606 - ], - [ - 175.6035668632902, - -40.30582775263756 - ], - [ - 175.62737529481677, - -40.30421156034028 - ], - [ - 175.64297392236864, - -40.32134319869152 - ], - [ - 175.659393530318, - -40.31067632952943 - ], - [ - 175.69305372661418, - -40.300332698826786 - ], - [ - 175.70495794237746, - -40.31326223720509 - ], - [ - 175.71850411893567, - -40.30906013723214 - ], - [ - 175.7443650014559, - -40.29031230658361 - ], - [ - 175.7566797074179, - -40.275443337448564 - ], - [ - 175.77309931536726, - -40.3032418449619 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2131, - "NAME_1": "Manawatu-Wanganui", - "ID_2": 25202, - "NAME_2": "Rangitikei", - "VARNAME_2": "", - "HASC_2": "NZ.MW.RT", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.1864629454922, - -39.14443196780689 - ], - [ - 176.1864629454922, - -39.18257410602287 - ], - [ - 176.20165108284533, - -39.199705744374114 - ], - [ - 176.20698745542887, - -39.22524158267125 - ], - [ - 176.24885745569972, - -39.233969021076604 - ], - [ - 176.26650853424528, - -39.244959128698156 - ], - [ - 176.29031696577184, - -39.24301969794141 - ], - [ - 176.31125196590727, - -39.285363936130345 - ], - [ - 176.3091995149136, - -39.30217233602213 - ], - [ - 176.28292814219463, - -39.310576535968025 - ], - [ - 176.28210716179717, - -39.33805180502191 - ], - [ - 176.2689714754377, - -39.3419306665354 - ], - [ - 176.28415961279083, - -39.35906230488665 - ], - [ - 176.30755755411866, - -39.3571228741299 - ], - [ - 176.3190512796832, - -39.3700524125082 - ], - [ - 176.33998627981865, - -39.3745777509406 - ], - [ - 176.32890304445283, - -39.39946711231883 - ], - [ - 176.3297240248503, - -39.410133981480925 - ], - [ - 176.31494637769586, - -39.43114448134566 - ], - [ - 176.31946176988194, - -39.446013450480706 - ], - [ - 176.31125196590727, - -39.464761281129235 - ], - [ - 176.3190512796832, - -39.473488719534586 - ], - [ - 176.31699882868955, - -39.49029711942637 - ], - [ - 176.3079680443174, - -39.49870131937227 - ], - [ - 176.254604318482, - -39.51486324234514 - ], - [ - 176.2521413772896, - -39.521328011534294 - ], - [ - 176.21232382801242, - -39.53361107299368 - ], - [ - 176.20370353383902, - -39.552682142101666 - ], - [ - 176.19056784747954, - -39.55656100361516 - ], - [ - 176.1889258866846, - -39.573369403506945 - ], - [ - 176.1622440237669, - -39.58177360345284 - ], - [ - 176.1454139256188, - -39.58145036499338 - ], - [ - 176.16429647476056, - -39.602784103317575 - ], - [ - 176.185231474896, - -39.607309441749976 - ], - [ - 176.1684013767479, - -39.645128341506506 - ], - [ - 176.2012405926466, - -39.66225997985775 - ], - [ - 176.20862941622383, - -39.6709874182631 - ], - [ - 176.18605245529346, - -39.68327047972248 - ], - [ - 176.185231474896, - -39.71074574877637 - ], - [ - 176.17209578853652, - -39.71494784874932 - ], - [ - 176.17825314151753, - -39.740483687046456 - ], - [ - 176.1417195138302, - -39.822586255748654 - ], - [ - 176.14130902363146, - -39.850061524802534 - ], - [ - 176.134330690253, - -39.852000955559284 - ], - [ - 176.12037402349605, - -39.883678324586114 - ], - [ - 176.0891767683923, - -39.87721355539696 - ], - [ - 176.0600319642822, - -39.86428401701866 - ], - [ - 176.0054367678506, - -39.83196017107292 - ], - [ - 175.9959954932797, - -39.840364371018815 - ], - [ - 175.96931363036202, - -39.84844533250525 - ], - [ - 175.95781990479747, - -39.83583903258641 - ], - [ - 175.93319049287345, - -39.827111594181055 - ], - [ - 175.91759186532155, - -39.80997995582981 - ], - [ - 175.90445617896208, - -39.81418205580276 - ], - [ - 175.88228970823045, - -39.79898984820826 - ], - [ - 175.86135470809504, - -39.79478774823531 - ], - [ - 175.82400010001027, - -39.80060604050554 - ], - [ - 175.79731823709255, - -39.809010240451435 - ], - [ - 175.78500353113054, - -39.82355597112702 - ], - [ - 175.7964972566951, - -39.83648550950532 - ], - [ - 175.73656568767996, - -39.8549101016944 - ], - [ - 175.72548245231414, - -39.88012270153208 - ], - [ - 175.71111529535847, - -39.87365793234293 - ], - [ - 175.67376068727367, - -39.87979946307262 - ], - [ - 175.6823809814471, - -39.89887053218062 - ], - [ - 175.64625784395852, - -39.915355693612945 - ], - [ - 175.64051098117625, - -39.92828523199124 - ], - [ - 175.6520047067408, - -39.94089153191008 - ], - [ - 175.62942774581043, - -39.953497831828926 - ], - [ - 175.6351746085927, - -39.979033670126064 - ], - [ - 175.60192490249528, - -39.98937730082871 - ], - [ - 175.54938215705735, - -40.01652933142313 - ], - [ - 175.5025862744017, - -40.030751823639264 - ], - [ - 175.50053382340803, - -40.04788346199051 - ], - [ - 175.48904009784349, - -40.07309606182819 - ], - [ - 175.45579039174604, - -40.083439692530824 - ], - [ - 175.43937078379668, - -40.094106561692925 - ], - [ - 175.4516854897587, - -40.11737973077386 - ], - [ - 175.43526588180936, - -40.128046599935956 - ], - [ - 175.43690784260428, - -40.14938033826015 - ], - [ - 175.4213092150524, - -40.17039083812489 - ], - [ - 175.39134343054482, - -40.184936568800474 - ], - [ - 175.35357833226132, - -40.191078099530166 - ], - [ - 175.34742097928032, - -40.203684399449 - ], - [ - 175.3338748027221, - -40.20788649942195 - ], - [ - 175.3314118615297, - -40.2250181377732 - ], - [ - 175.31909715556768, - -40.25023073761088 - ], - [ - 175.29323627304746, - -40.279968675880966 - ], - [ - 175.27599568470063, - -40.29063554504306 - ], - [ - 175.24808235118675, - -40.2987165065295 - ], - [ - 175.23248372363486, - -40.28158486817826 - ], - [ - 175.2222214686665, - -40.28998906812415 - ], - [ - 175.21647460588423, - -40.25281664528654 - ], - [ - 175.1992340175374, - -40.18008799190861 - ], - [ - 175.17788852720327, - -40.13192546144945 - ], - [ - 175.14135489951596, - -40.07762140026059 - ], - [ - 175.10646323262358, - -40.04626726969322 - ], - [ - 175.11385205620078, - -40.03139830055817 - ], - [ - 175.13273460534253, - -40.01458990066639 - ], - [ - 175.17583607620958, - -40.00650893917995 - ], - [ - 175.22878931184624, - -39.990023777747616 - ], - [ - 175.23740960601967, - -39.97095270863963 - ], - [ - 175.2743537239057, - -39.96481117790994 - ], - [ - 175.27148029251455, - -39.933133808883106 - ], - [ - 175.28748941026518, - -39.92279017818046 - ], - [ - 175.2829740180791, - -39.90759797058597 - ], - [ - 175.29898313582973, - -39.897254339883325 - ], - [ - 175.2837949984766, - -39.88012270153208 - ], - [ - 175.30965588099681, - -39.86137487088355 - ], - [ - 175.3314118615297, - -39.87624384001859 - ], - [ - 175.35480980285752, - -39.874627647721304 - ], - [ - 175.35398882246005, - -39.86396077855921 - ], - [ - 175.38067068537777, - -39.85555657861332 - ], - [ - 175.37574480299295, - -39.840687609478266 - ], - [ - 175.40612107769925, - -39.83680874796478 - ], - [ - 175.4529169603549, - -39.822263017289195 - ], - [ - 175.45743235254096, - -39.79898984820826 - ], - [ - 175.4689260781055, - -39.77377724837058 - ], - [ - 175.4919135292346, - -39.761170948451735 - ], - [ - 175.48041980367006, - -39.74856464853289 - ], - [ - 175.51654294115863, - -39.69361411042512 - ], - [ - 175.5149009803637, - -39.67228037210093 - ], - [ - 175.50340725479916, - -39.659674072182085 - ], - [ - 175.4648211761182, - -39.64415862612813 - ], - [ - 175.4931449998308, - -39.618946026290445 - ], - [ - 175.5075121567865, - -39.587268657263614 - ], - [ - 175.4931449998308, - -39.58080388807447 - ], - [ - 175.49724990181815, - -39.54686384983143 - ], - [ - 175.5891997063345, - -39.545894134453064 - ], - [ - 175.60520882408514, - -39.53555050375042 - ], - [ - 175.60438784368768, - -39.52488363458833 - ], - [ - 175.6487207851509, - -39.52746954226399 - ], - [ - 175.66103549111293, - -39.55106594980438 - ], - [ - 175.68771735403064, - -39.54298498831794 - ], - [ - 175.71439921694832, - -39.57272292658803 - ], - [ - 175.7542167662255, - -39.56043986512864 - ], - [ - 175.75996362900779, - -39.54783356520981 - ], - [ - 175.7932133351052, - -39.53781317296662 - ], - [ - 175.79854970768875, - -39.525206873047786 - ], - [ - 175.84329313935075, - -39.527792780723445 - ], - [ - 175.86997500226843, - -39.519388580777544 - ], - [ - 175.90568764955827, - -39.502903419345216 - ], - [ - 175.89829882598107, - -39.49449921939932 - ], - [ - 175.9011722573722, - -39.41175017377821 - ], - [ - 175.9824493167215, - -39.408517789183634 - ], - [ - 176.01364657182526, - -39.41530579683224 - ], - [ - 176.03047666997335, - -39.37748689707572 - ], - [ - 176.02308784639615, - -39.36875945867037 - ], - [ - 176.03540255235816, - -39.35421372799478 - ], - [ - 175.98409127751643, - -39.353567251075866 - ], - [ - 175.98162833632404, - -39.321889882049035 - ], - [ - 175.98532274811262, - -39.287949843806004 - ], - [ - 176.00872068944045, - -39.286010413049254 - ], - [ - 175.99763745407466, - -39.27340411313042 - ], - [ - 175.98039686572784, - -39.27308087467096 - ], - [ - 175.9656192185734, - -39.255949236319715 - ], - [ - 175.94550519883546, - -39.26209076704941 - ], - [ - 175.93319049287345, - -39.27663649772499 - ], - [ - 175.91636039472536, - -39.27663649772499 - ], - [ - 175.91061353194308, - -39.28924279764383 - ], - [ - 175.89091000240387, - -39.29538432837352 - ], - [ - 175.83590431577352, - -39.290212513022205 - ], - [ - 175.84452460994694, - -39.271464682373676 - ], - [ - 175.87490088465324, - -39.267585820860184 - ], - [ - 175.86258617869123, - -39.24398941331979 - ], - [ - 175.88885755141018, - -39.23590845183335 - ], - [ - 175.9011722573722, - -39.22136272115776 - ], - [ - 175.8900890220064, - -39.208433182779466 - ], - [ - 175.96931363036202, - -39.18419029832015 - ], - [ - 175.9676716695671, - -39.162856559995966 - ], - [ - 175.9836807873177, - -39.15251292929332 - ], - [ - 176.05510608189738, - -39.15768474464464 - ], - [ - 176.0891767683923, - -39.1580079831041 - ], - [ - 176.16183353356817, - -39.135704529401536 - ], - [ - 176.1864629454922, - -39.14443196780689 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2131, - "NAME_1": "Manawatu-Wanganui", - "ID_2": 25203, - "NAME_2": "Ruapehu", - "VARNAME_2": "", - "HASC_2": "NZ.MW.RP", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.64174245177244, - -38.56583512537802 - ], - [ - 175.63189068700285, - -38.6123814635399 - ], - [ - 175.61875500064335, - -38.61626032505339 - ], - [ - 175.61013470646995, - -38.635331394161376 - ], - [ - 175.58057941216111, - -38.649553886377504 - ], - [ - 175.58878921613578, - -38.668948193944956 - ], - [ - 175.57729549057123, - -38.694160793782636 - ], - [ - 175.5707276473915, - -38.69610022453938 - ], - [ - 175.55923392182694, - -38.721312824377065 - ], - [ - 175.54322480407635, - -38.7316564550797 - ], - [ - 175.52516323533206, - -38.75880848567413 - ], - [ - 175.55102411785228, - -38.78919290086313 - ], - [ - 175.56128637282063, - -38.791455570079336 - ], - [ - 175.58714725534085, - -38.82151674680888 - ], - [ - 175.58837872593705, - -38.832183615970976 - ], - [ - 175.5682647061991, - -38.83832514670067 - ], - [ - 175.55020313745482, - -38.86547717729509 - ], - [ - 175.5912521573282, - -38.91299323083534 - ], - [ - 175.57524303957757, - -38.92333686153798 - ], - [ - 175.57606401997504, - -38.93400373070008 - ], - [ - 175.56374931401302, - -38.94854946137566 - ], - [ - 175.56169686301936, - -38.96568109972691 - ], - [ - 175.57360107878264, - -38.9892775072673 - ], - [ - 175.61013470646995, - -38.98345921499707 - ], - [ - 175.63681656938763, - -38.975378253510634 - ], - [ - 175.67540264806863, - -38.990893699564594 - ], - [ - 175.653236177337, - -39.013843630186074 - ], - [ - 175.6581620597218, - -39.02871259932111 - ], - [ - 175.65241519693953, - -39.041318899239954 - ], - [ - 175.61916549084208, - -39.05133929148314 - ], - [ - 175.6302487262079, - -39.06426882986143 - ], - [ - 175.6216284320345, - -39.08333989896943 - ], - [ - 175.6425634321699, - -39.08786523740183 - ], - [ - 175.6507732361446, - -39.10725954496928 - ], - [ - 175.63804803998386, - -39.15994741386085 - ], - [ - 175.56292833361556, - -39.27566678234662 - ], - [ - 175.67335019707494, - -39.2963540437519 - ], - [ - 175.710294314961, - -39.29053575148166 - ], - [ - 175.7480594132445, - -39.29538432837352 - ], - [ - 175.75750068781537, - -39.28698012842763 - ], - [ - 175.77556225655965, - -39.29797023604918 - ], - [ - 175.81332735484318, - -39.30281881294105 - ], - [ - 175.83590431577352, - -39.290212513022205 - ], - [ - 175.89091000240387, - -39.29538432837352 - ], - [ - 175.91061353194308, - -39.28924279764383 - ], - [ - 175.91636039472536, - -39.27663649772499 - ], - [ - 175.93319049287345, - -39.27663649772499 - ], - [ - 175.94550519883546, - -39.26209076704941 - ], - [ - 175.9656192185734, - -39.255949236319715 - ], - [ - 175.98039686572784, - -39.27308087467096 - ], - [ - 175.99763745407466, - -39.27340411313042 - ], - [ - 176.00872068944045, - -39.286010413049254 - ], - [ - 175.98532274811262, - -39.287949843806004 - ], - [ - 175.98162833632404, - -39.321889882049035 - ], - [ - 175.98409127751643, - -39.353567251075866 - ], - [ - 176.03540255235816, - -39.35421372799478 - ], - [ - 176.02308784639615, - -39.36875945867037 - ], - [ - 176.03047666997335, - -39.37748689707572 - ], - [ - 176.01364657182526, - -39.41530579683224 - ], - [ - 175.9824493167215, - -39.408517789183634 - ], - [ - 175.9011722573722, - -39.41175017377821 - ], - [ - 175.89829882598107, - -39.49449921939932 - ], - [ - 175.90568764955827, - -39.502903419345216 - ], - [ - 175.86997500226843, - -39.519388580777544 - ], - [ - 175.84329313935075, - -39.527792780723445 - ], - [ - 175.79854970768875, - -39.525206873047786 - ], - [ - 175.7932133351052, - -39.53781317296662 - ], - [ - 175.75996362900779, - -39.54783356520981 - ], - [ - 175.7542167662255, - -39.56043986512864 - ], - [ - 175.71439921694832, - -39.57272292658803 - ], - [ - 175.68771735403064, - -39.54298498831794 - ], - [ - 175.66103549111293, - -39.55106594980438 - ], - [ - 175.6487207851509, - -39.52746954226399 - ], - [ - 175.60438784368768, - -39.52488363458833 - ], - [ - 175.60520882408514, - -39.53555050375042 - ], - [ - 175.5891997063345, - -39.545894134453064 - ], - [ - 175.49724990181815, - -39.54686384983143 - ], - [ - 175.48411421545867, - -39.550742711344924 - ], - [ - 175.42910852882835, - -39.545894134453064 - ], - [ - 175.41966725425746, - -39.55429833439896 - ], - [ - 175.4385498033992, - -39.575632072723145 - ], - [ - 175.43937078379668, - -39.58629894188525 - ], - [ - 175.412688920879, - -39.59470314183114 - ], - [ - 175.38805950895497, - -39.58565246496633 - ], - [ - 175.37697627358915, - -39.57272292658803 - ], - [ - 175.36343009703094, - -39.57692502656098 - ], - [ - 175.361788136236, - -39.593733426452765 - ], - [ - 175.34536852828666, - -39.604400295614866 - ], - [ - 175.31909715556768, - -39.6124812571013 - ], - [ - 175.31293980258667, - -39.62508755702014 - ], - [ - 175.28584744947025, - -39.62250164934448 - ], - [ - 175.2402830374108, - -39.609248872506726 - ], - [ - 175.2283788216475, - -39.58532922650687 - ], - [ - 175.20826480190956, - -39.591470757236564 - ], - [ - 175.2160641156855, - -39.561732818966476 - ], - [ - 175.23617813542347, - -39.55591452669624 - ], - [ - 175.2209899980703, - -39.53845964988554 - ], - [ - 175.190613723364, - -39.54233851139903 - ], - [ - 175.17008921342733, - -39.537489934507164 - ], - [ - 175.1417653897147, - -39.52423715766941 - ], - [ - 175.13642901713115, - -39.49870131937227 - ], - [ - 175.1081051934185, - -39.48544854253451 - ], - [ - 175.0884016638793, - -39.491590073264206 - ], - [ - 175.07362401672486, - -39.523267442291036 - ], - [ - 175.0604883303654, - -39.52714630380453 - ], - [ - 175.0485841146021, - -39.50354989626413 - ], - [ - 175.06171980096158, - -39.49967103475064 - ], - [ - 175.03544842824263, - -39.46928661956164 - ], - [ - 175.0411952910249, - -39.4566803196428 - ], - [ - 175.0264176438705, - -39.4392254428321 - ], - [ - 175.0424267616211, - -39.42888181212946 - ], - [ - 175.04817362440338, - -39.41627551221062 - ], - [ - 175.01574489870342, - -39.38783052777836 - ], - [ - 175.0214917614857, - -39.37522422785952 - ], - [ - 174.99891480055533, - -39.349041912643465 - ], - [ - 175.0108190163186, - -39.323829312805785 - ], - [ - 174.97592734942623, - -39.31251596672477 - ], - [ - 174.9648441140604, - -39.29958642834647 - ], - [ - 174.92995244716803, - -39.28827308226546 - ], - [ - 174.91271185882124, - -39.287949843806004 - ], - [ - 174.89506078027568, - -39.27695973618445 - ], - [ - 174.89998666266047, - -39.253363328644056 - ], - [ - 174.88233558411494, - -39.242373221022504 - ], - [ - 174.899165682263, - -39.242696459481955 - ], - [ - 174.92584754518072, - -39.23461549799552 - ], - [ - 174.94308813352754, - -39.196796598239 - ], - [ - 174.9451405845212, - -39.17966495988775 - ], - [ - 174.9681280356503, - -39.16738189842837 - ], - [ - 174.99439940836925, - -39.15930093694193 - ], - [ - 174.99686234956167, - -39.14216929859069 - ], - [ - 175.01287146731227, - -39.131825667888045 - ], - [ - 175.02436519287681, - -39.106613068050365 - ], - [ - 175.0375008792363, - -39.10273420653687 - ], - [ - 175.06582470294893, - -39.11598698337463 - ], - [ - 175.0789603893084, - -39.11178488340168 - ], - [ - 175.0604883303654, - -39.09012790661804 - ], - [ - 175.04653166360845, - -39.083663137428886 - ], - [ - 175.05227852639072, - -39.07105683751004 - ], - [ - 175.0182078398958, - -39.070410360591126 - ], - [ - 174.9985043103566, - -39.07622865286136 - ], - [ - 174.96648607485537, - -39.0584505375912 - ], - [ - 174.9829056828047, - -39.04810690688856 - ], - [ - 174.96771754545156, - -39.03097526853732 - ], - [ - 174.95909725127814, - -39.00091409180777 - ], - [ - 174.93528881975158, - -39.00253028410506 - ], - [ - 174.91763774120602, - -38.991540176483504 - ], - [ - 174.88767195669845, - -38.99509579953754 - ], - [ - 174.88520901550606, - -38.96309519205125 - ], - [ - 174.89095587828834, - -38.950488892132405 - ], - [ - 174.87617823113393, - -38.9330340153217 - ], - [ - 174.88849293709595, - -38.918488284646116 - ], - [ - 174.88767195669845, - -38.907498177024564 - ], - [ - 174.8663264663643, - -38.89230596943006 - ], - [ - 174.8466229368251, - -38.898124261700296 - ], - [ - 174.8343082308631, - -38.91299323083534 - ], - [ - 174.8334872504656, - -38.902326361673246 - ], - [ - 174.80023754436817, - -38.86289126961943 - ], - [ - 174.8092683287403, - -38.8441434389709 - ], - [ - 174.79079626979728, - -38.82216322372779 - ], - [ - 174.8141942111251, - -38.82054703143051 - ], - [ - 174.82199352490107, - -38.79080909316042 - ], - [ - 174.86837891735797, - -38.77690983940375 - ], - [ - 174.87125234874912, - -38.77076830867406 - ], - [ - 174.9242055843858, - -38.75492962416064 - ], - [ - 174.9476035257136, - -38.753313431863354 - ], - [ - 174.9365202903478, - -38.7400606550256 - ], - [ - 174.9574552904832, - -38.70644385524202 - ], - [ - 174.9599182316756, - -38.689635455350235 - ], - [ - 174.9693595062465, - -38.68123125540434 - ], - [ - 174.95827627088067, - -38.66830171702604 - ], - [ - 174.99193646717686, - -38.668948193944956 - ], - [ - 175.12411431116914, - -38.62951310189114 - ], - [ - 175.18117244879312, - -38.628543386512774 - ], - [ - 175.20169695872983, - -38.633391963404634 - ], - [ - 175.20908578230703, - -38.64179616335053 - ], - [ - 175.24233548840448, - -38.6320990095668 - ], - [ - 175.24808235118675, - -38.619492709647965 - ], - [ - 175.26778588072597, - -38.61335117891827 - ], - [ - 175.28954186125884, - -38.59040124829679 - ], - [ - 175.3071929398044, - -38.601391355918345 - ], - [ - 175.30883490059935, - -38.57391608686446 - ], - [ - 175.3277174497411, - -38.55710768697267 - ], - [ - 175.34331607729297, - -38.58522943294547 - ], - [ - 175.38272313637142, - -38.57326960994554 - ], - [ - 175.3884699991537, - -38.560663310026705 - ], - [ - 175.4081735286929, - -38.55484501775647 - ], - [ - 175.45332745055364, - -38.56842103305368 - ], - [ - 175.50669117638904, - -38.563249217702364 - ], - [ - 175.53255205890926, - -38.59331039443191 - ], - [ - 175.5465087256662, - -38.60009840208051 - ], - [ - 175.57975843176365, - -38.590078009837335 - ], - [ - 175.58345284355224, - -38.594603348269736 - ], - [ - 175.61629205945096, - -38.58458295602655 - ], - [ - 175.64174245177244, - -38.56583512537802 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2131, - "NAME_1": "Manawatu-Wanganui", - "ID_2": 25204, - "NAME_2": "Tararua", - "VARNAME_2": "", - "HASC_2": "NZ.MW.TR", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.58956432064878, - -40.42574922109628 - ], - [ - 176.5920272618412, - -40.41928445190713 - ], - [ - 176.6236350071437, - -40.427365413393574 - ], - [ - 176.6236350071437, - -40.44417381328536 - ], - [ - 176.63430775231078, - -40.45257801323125 - ], - [ - 176.6224035365475, - -40.49136662836615 - ], - [ - 176.56657686951968, - -40.495245489879636 - ], - [ - 176.52716981044125, - -40.511084174393055 - ], - [ - 176.47955294738813, - -40.54373125879826 - ], - [ - 176.47380608460585, - -40.57120652785214 - ], - [ - 176.45205010407295, - -40.588014927743934 - ], - [ - 176.41592696658438, - -40.60676275839246 - ], - [ - 176.41510598618692, - -40.621954965986966 - ], - [ - 176.40238079002617, - -40.62809649671666 - ], - [ - 176.37898284869834, - -40.65524852731109 - ], - [ - 176.37775137810215, - -40.667854827229924 - ], - [ - 176.33300794644015, - -40.69856248087839 - ], - [ - 176.3128939267022, - -40.716663834608006 - ], - [ - 176.30386314233004, - -40.73573490371599 - ], - [ - 176.29236941676552, - -40.74155319598623 - ], - [ - 176.28785402457945, - -40.766119318905 - ], - [ - 176.26815049504023, - -40.78131152649949 - ], - [ - 176.26158265186046, - -40.76547284198608 - ], - [ - 176.2656875538478, - -40.742199672905144 - ], - [ - 176.24680500470606, - -40.73120956528359 - ], - [ - 176.21889167119215, - -40.70082515009459 - ], - [ - 176.20575598483268, - -40.70502725006754 - ], - [ - 176.18687343569093, - -40.69403714244598 - ], - [ - 176.15896010217702, - -40.69145123477032 - ], - [ - 176.1536237295935, - -40.676582265635275 - ], - [ - 176.13350970985553, - -40.68272379636497 - ], - [ - 176.0904082389885, - -40.67367311950016 - ], - [ - 176.08794529779607, - -40.7076131577432 - ], - [ - 176.06126343487838, - -40.71601735768909 - ], - [ - 176.0222668659987, - -40.71116878079722 - ], - [ - 175.9992794148696, - -40.72377508071607 - ], - [ - 175.97793392453542, - -40.71957298074312 - ], - [ - 175.96972412056076, - -40.73832081139165 - ], - [ - 175.94550519883546, - -40.740260242148395 - ], - [ - 175.93483245366838, - -40.76579608044554 - ], - [ - 175.912255492738, - -40.75060387285104 - ], - [ - 175.8863946102178, - -40.769674941959025 - ], - [ - 175.87325892385832, - -40.773877041931975 - ], - [ - 175.85027147272922, - -40.75868483433747 - ], - [ - 175.82605255100393, - -40.76062426509422 - ], - [ - 175.8075804920609, - -40.77743266498601 - ], - [ - 175.76447902119386, - -40.7683819881212 - ], - [ - 175.76571049179006, - -40.75157358822941 - ], - [ - 175.78336157033561, - -40.724098319175525 - ], - [ - 175.78500353113054, - -40.70696668082428 - ], - [ - 175.7661209819888, - -40.696299811662186 - ], - [ - 175.7566797074179, - -40.70470401160808 - ], - [ - 175.73779715827615, - -40.69403714244598 - ], - [ - 175.69387470701164, - -40.70211810393242 - ], - [ - 175.68279147164583, - -40.7273307037701 - ], - [ - 175.66144598131166, - -40.72280536533769 - ], - [ - 175.653236177337, - -40.741876434445686 - ], - [ - 175.62942774581043, - -40.74381586520243 - ], - [ - 175.61998647123954, - -40.75222006514832 - ], - [ - 175.59699902011047, - -40.73702785755383 - ], - [ - 175.5608758826219, - -40.72603774993227 - ], - [ - 175.47015754870174, - -40.69339066552707 - ], - [ - 175.51572196076117, - -40.6407027966355 - ], - [ - 175.5818108827573, - -40.554398127960354 - ], - [ - 175.62450186342562, - -40.50817502825794 - ], - [ - 175.7139887267496, - -40.436739328717834 - ], - [ - 175.7263034327116, - -40.4218703595828 - ], - [ - 175.7213775503268, - -40.40700139044775 - ], - [ - 175.72712441310907, - -40.39439509052891 - ], - [ - 175.74600696225082, - -40.37758669063712 - ], - [ - 175.7661209819888, - -40.37112192144797 - ], - [ - 175.7710468643736, - -40.347848752367035 - ], - [ - 175.79157137431028, - -40.313908714124 - ], - [ - 175.77309931536726, - -40.3032418449619 - ], - [ - 175.8075804920609, - -40.26542294520538 - ], - [ - 175.8162007862343, - -40.24635187609739 - ], - [ - 175.84000921776087, - -40.24441244534064 - ], - [ - 175.85848127670388, - -40.255079314502744 - ], - [ - 175.87531137485198, - -40.21693717628676 - ], - [ - 175.87161696306336, - -40.21273507631381 - ], - [ - 175.90404568876335, - -40.191724576449076 - ], - [ - 175.8962463749874, - -40.18332037650318 - ], - [ - 175.91923382611648, - -40.170714076584346 - ], - [ - 175.92949608108484, - -40.17297674580055 - ], - [ - 175.93811637525826, - -40.15390567669255 - ], - [ - 175.9619248067848, - -40.15196624593581 - ], - [ - 175.97834441473415, - -40.141299376773716 - ], - [ - 176.00256333645945, - -40.111884676963086 - ], - [ - 176.01610951301768, - -40.107682576990136 - ], - [ - 176.02719274838347, - -40.082469977152456 - ], - [ - 176.04361235633283, - -40.071803107990355 - ], - [ - 176.07029421925054, - -40.06372214650392 - ], - [ - 176.08507186640495, - -40.04238840817973 - ], - [ - 176.07645157223155, - -40.02331733907174 - ], - [ - 176.08178794481506, - -40.010711039152895 - ], - [ - 176.10067049395684, - -39.99390263926111 - ], - [ - 176.13843559224034, - -40.0259032467474 - ], - [ - 176.1573181413821, - -40.00909484685561 - ], - [ - 176.18235804350485, - -40.01782228526096 - ], - [ - 176.2061664750314, - -40.01588285450422 - ], - [ - 176.21396578880734, - -40.02461029290957 - ], - [ - 176.24187912232125, - -40.02687296212577 - ], - [ - 176.24311059291745, - -40.037539831287866 - ], - [ - 176.26404559305288, - -40.041741931260816 - ], - [ - 176.26240363225796, - -40.05887356961206 - ], - [ - 176.27677078921363, - -40.06533833880121 - ], - [ - 176.3005792207402, - -40.06339890804446 - ], - [ - 176.32397716206802, - -40.089257984801066 - ], - [ - 176.31453588749713, - -40.09766218474696 - ], - [ - 176.33423941703637, - -40.11899592307115 - ], - [ - 176.34696461319712, - -40.14259233061154 - ], - [ - 176.36831010353126, - -40.14711766904395 - ], - [ - 176.38021431929454, - -40.160047207422245 - ], - [ - 176.36379471134518, - -40.17039083812489 - ], - [ - 176.37200451531987, - -40.17911827653024 - ], - [ - 176.36338422114645, - -40.19818934563823 - ], - [ - 176.37528843690973, - -40.21111888401653 - ], - [ - 176.3711835349224, - -40.234392053097466 - ], - [ - 176.38144578989073, - -40.236654722313666 - ], - [ - 176.3785723584996, - -40.270917999016156 - ], - [ - 176.40073882923124, - -40.2857869681512 - ], - [ - 176.3966339272439, - -40.309383375691596 - ], - [ - 176.387192652673, - -40.31778757563749 - ], - [ - 176.40976961360337, - -40.33297978323199 - ], - [ - 176.37077304472368, - -40.35592971385347 - ], - [ - 176.39211853505782, - -40.36045505228588 - ], - [ - 176.42003186857173, - -40.39051622901542 - ], - [ - 176.4331675549312, - -40.386314129042475 - ], - [ - 176.44219833930336, - -40.40538519815046 - ], - [ - 176.4635438296375, - -40.40991053658287 - ], - [ - 176.49679353573495, - -40.39956690588023 - ], - [ - 176.5509782419678, - -40.42122388266388 - ], - [ - 176.5628824577311, - -40.406678151988295 - ], - [ - 176.58956432064878, - -40.42574922109628 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2131, - "NAME_1": "Manawatu-Wanganui", - "ID_2": 25205, - "NAME_2": "Wanganui", - "VARNAME_2": "", - "HASC_2": "NZ.MW.WU", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.49724990181815, - -39.54686384983143 - ], - [ - 175.4931449998308, - -39.58080388807447 - ], - [ - 175.5075121567865, - -39.587268657263614 - ], - [ - 175.4931449998308, - -39.618946026290445 - ], - [ - 175.4648211761182, - -39.64415862612813 - ], - [ - 175.50340725479916, - -39.659674072182085 - ], - [ - 175.5149009803637, - -39.67228037210093 - ], - [ - 175.51654294115863, - -39.69361411042512 - ], - [ - 175.48041980367006, - -39.74856464853289 - ], - [ - 175.4919135292346, - -39.761170948451735 - ], - [ - 175.4689260781055, - -39.77377724837058 - ], - [ - 175.45743235254096, - -39.79898984820826 - ], - [ - 175.4529169603549, - -39.822263017289195 - ], - [ - 175.40612107769925, - -39.83680874796478 - ], - [ - 175.37574480299295, - -39.840687609478266 - ], - [ - 175.38067068537777, - -39.85555657861332 - ], - [ - 175.35398882246005, - -39.86396077855921 - ], - [ - 175.35480980285752, - -39.874627647721304 - ], - [ - 175.3314118615297, - -39.87624384001859 - ], - [ - 175.30965588099681, - -39.86137487088355 - ], - [ - 175.2837949984766, - -39.88012270153208 - ], - [ - 175.29898313582973, - -39.897254339883325 - ], - [ - 175.2829740180791, - -39.90759797058597 - ], - [ - 175.28748941026518, - -39.92279017818046 - ], - [ - 175.27148029251455, - -39.933133808883106 - ], - [ - 175.2743537239057, - -39.96481117790994 - ], - [ - 175.23740960601967, - -39.97095270863963 - ], - [ - 175.22878931184624, - -39.990023777747616 - ], - [ - 175.17583607620958, - -40.00650893917995 - ], - [ - 175.13273460534253, - -40.01458990066639 - ], - [ - 175.11385205620078, - -40.03139830055817 - ], - [ - 175.10646323262358, - -40.04626726969322 - ], - [ - 175.0748554873211, - -40.012650469909644 - ], - [ - 174.99686234956167, - -39.944770393423575 - ], - [ - 174.9816742122085, - -39.94767953955869 - ], - [ - 174.96730705525283, - -39.92796199353179 - ], - [ - 174.92010068239844, - -39.89531490912658 - ], - [ - 174.87658872133267, - -39.87721355539696 - ], - [ - 174.7969536227783, - -39.858142486288976 - ], - [ - 174.778892054034, - -39.86202134780246 - ], - [ - 174.7690402892644, - -39.851677717099825 - ], - [ - 174.7895647992011, - -39.83583903258641 - ], - [ - 174.80516342675298, - -39.80513137893795 - ], - [ - 174.84374950543395, - -39.800282802046084 - ], - [ - 174.8527802898061, - -39.781534971397555 - ], - [ - 174.88028313312125, - -39.77377724837058 - ], - [ - 174.88890342729468, - -39.75502941772204 - ], - [ - 174.9159957804111, - -39.74694845623561 - ], - [ - 174.9283104863731, - -39.73240272556002 - ], - [ - 174.94144617273258, - -39.72820062558707 - ], - [ - 174.92666852557818, - -39.71074574877637 - ], - [ - 174.93118391776426, - -39.68747257969543 - ], - [ - 174.95499234929082, - -39.68585638739815 - ], - [ - 174.98126372200977, - -39.677452187452246 - ], - [ - 174.99768332995913, - -39.66710855674961 - ], - [ - 174.98249519260597, - -39.649976918398366 - ], - [ - 174.97387489843257, - -39.63058261083091 - ], - [ - 174.97962176121484, - -39.61765307245262 - ], - [ - 174.97141195724015, - -39.59825876488517 - ], - [ - 174.9829056828047, - -39.57304616504749 - ], - [ - 174.9952203887667, - -39.55817719591244 - ], - [ - 174.99070499658066, - -39.5433082267774 - ], - [ - 174.9718224474389, - -39.52165124999375 - ], - [ - 174.97756931022116, - -39.50872171161545 - ], - [ - 174.9619706826693, - -39.48092320410211 - ], - [ - 174.93816225114273, - -39.482539396399396 - ], - [ - 174.90819646663516, - -39.44795288123745 - ], - [ - 174.8905453880896, - -39.436962773615896 - ], - [ - 174.89629225087188, - -39.424033235237594 - ], - [ - 174.88110411351872, - -39.40690159688635 - ], - [ - 174.89875519206427, - -39.36875945867037 - ], - [ - 174.85565372119723, - -39.33805180502191 - ], - [ - 174.82815087788208, - -39.33546589734625 - ], - [ - 174.82568793668966, - -39.303142051400506 - ], - [ - 174.83923411324787, - -39.299263189887014 - ], - [ - 174.85360127020357, - -39.267585820860184 - ], - [ - 174.86673695656305, - -39.263383720887234 - ], - [ - 174.88233558411494, - -39.242373221022504 - ], - [ - 174.89998666266047, - -39.253363328644056 - ], - [ - 174.89506078027568, - -39.27695973618445 - ], - [ - 174.91271185882124, - -39.287949843806004 - ], - [ - 174.92995244716803, - -39.28827308226546 - ], - [ - 174.9648441140604, - -39.29958642834647 - ], - [ - 174.97592734942623, - -39.31251596672477 - ], - [ - 175.0108190163186, - -39.323829312805785 - ], - [ - 174.99891480055533, - -39.349041912643465 - ], - [ - 175.0214917614857, - -39.37522422785952 - ], - [ - 175.01574489870342, - -39.38783052777836 - ], - [ - 175.04817362440338, - -39.41627551221062 - ], - [ - 175.0424267616211, - -39.42888181212946 - ], - [ - 175.0264176438705, - -39.4392254428321 - ], - [ - 175.0411952910249, - -39.4566803196428 - ], - [ - 175.03544842824263, - -39.46928661956164 - ], - [ - 175.06171980096158, - -39.49967103475064 - ], - [ - 175.0485841146021, - -39.50354989626413 - ], - [ - 175.0604883303654, - -39.52714630380453 - ], - [ - 175.07362401672486, - -39.523267442291036 - ], - [ - 175.0884016638793, - -39.491590073264206 - ], - [ - 175.1081051934185, - -39.48544854253451 - ], - [ - 175.13642901713115, - -39.49870131937227 - ], - [ - 175.1417653897147, - -39.52423715766941 - ], - [ - 175.17008921342733, - -39.537489934507164 - ], - [ - 175.190613723364, - -39.54233851139903 - ], - [ - 175.2209899980703, - -39.53845964988554 - ], - [ - 175.23617813542347, - -39.55591452669624 - ], - [ - 175.2160641156855, - -39.561732818966476 - ], - [ - 175.20826480190956, - -39.591470757236564 - ], - [ - 175.2283788216475, - -39.58532922650687 - ], - [ - 175.2402830374108, - -39.609248872506726 - ], - [ - 175.28584744947025, - -39.62250164934448 - ], - [ - 175.31293980258667, - -39.62508755702014 - ], - [ - 175.31909715556768, - -39.6124812571013 - ], - [ - 175.34536852828666, - -39.604400295614866 - ], - [ - 175.361788136236, - -39.593733426452765 - ], - [ - 175.36343009703094, - -39.57692502656098 - ], - [ - 175.37697627358915, - -39.57272292658803 - ], - [ - 175.38805950895497, - -39.58565246496633 - ], - [ - 175.412688920879, - -39.59470314183114 - ], - [ - 175.43937078379668, - -39.58629894188525 - ], - [ - 175.4385498033992, - -39.575632072723145 - ], - [ - 175.41966725425746, - -39.55429833439896 - ], - [ - 175.42910852882835, - -39.545894134453064 - ], - [ - 175.48411421545867, - -39.550742711344924 - ], - [ - 175.49724990181815, - -39.54686384983143 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2132, - "NAME_1": "Marlborough", - "ID_2": 25206, - "NAME_2": "Marlborough", - "VARNAME_2": "", - "HASC_2": "NZ.MA.MB", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 174.24073940349402, - -41.159177285605274 - ], - [ - 174.25469607025096, - -41.179218070091636 - ], - [ - 174.22924567792947, - -41.18471312390241 - ], - [ - 174.2296561681282, - -41.16467233941605 - ], - [ - 174.24073940349402, - -41.159177285605274 - ] - ] - ], - [ - [ - [ - 174.3815375416597, - -41.088064824524636 - ], - [ - 174.3926207770255, - -41.092913401416496 - ], - [ - 174.39138930642932, - -41.11877247817309 - ], - [ - 174.37168577689008, - -41.15788433176745 - ], - [ - 174.36840185530022, - -41.17501597011869 - ], - [ - 174.37455920828123, - -41.19441027768614 - ], - [ - 174.3560871493382, - -41.199258854578 - ], - [ - 174.34295146297873, - -41.19214760846994 - ], - [ - 174.33351018840784, - -41.20540038530769 - ], - [ - 174.28178842336737, - -41.20960248528064 - ], - [ - 174.2588009722383, - -41.22770383901026 - ], - [ - 174.25551705064842, - -41.236108038956154 - ], - [ - 174.21857293276238, - -41.2319059389832 - ], - [ - 174.20461626600544, - -41.23772423125344 - ], - [ - 174.16233577553587, - -41.243219285064214 - ], - [ - 174.16561969712572, - -41.22867355438863 - ], - [ - 174.19476450123582, - -41.20927924682118 - ], - [ - 174.21487852097377, - -41.20604686222661 - ], - [ - 174.23170861912186, - -41.21574401601033 - ], - [ - 174.25428558005223, - -41.20313771609149 - ], - [ - 174.2624953840269, - -41.18212721622675 - ], - [ - 174.27850450177752, - -41.17889483163218 - ], - [ - 174.3121646980737, - -41.16208643174039 - ], - [ - 174.31093322747748, - -41.17501597011869 - ], - [ - 174.34089901198504, - -41.17501597011869 - ], - [ - 174.3417199923825, - -41.16047023944311 - ], - [ - 174.36429695331287, - -41.15465194717287 - ], - [ - 174.3741487180825, - -41.13784354728108 - ], - [ - 174.33966754138885, - -41.14657098568643 - ], - [ - 174.32776332562557, - -41.13331820884868 - ], - [ - 174.3499297963572, - -41.115863332037975 - ], - [ - 174.37948509066604, - -41.09873169368673 - ], - [ - 174.3815375416597, - -41.088064824524636 - ] - ] - ], - [ - [ - [ - 174.0814692063853, - -40.94066808701203 - ], - [ - 174.07818528479544, - -40.95812296382273 - ], - [ - 174.0876265593663, - -40.966203925309166 - ], - [ - 174.05273489247392, - -40.989153855930645 - ], - [ - 174.05807126505746, - -40.96814335606591 - ], - [ - 174.0740803828081, - -40.95715324844436 - ], - [ - 174.0814692063853, - -40.94066808701203 - ] - ] - ], - [ - [ - [ - 174.05191391207646, - -41.96662695733003 - ], - [ - 174.0666915592309, - -41.93462634984374 - ], - [ - 174.05150342187773, - -41.92816158065459 - ], - [ - 174.01784322558154, - -41.93882844981668 - ], - [ - 174.00306557842714, - -41.93236368062753 - ], - [ - 173.97884665670185, - -41.93430311138428 - ], - [ - 173.95955361736137, - -41.91264613460063 - ], - [ - 173.92630391126391, - -41.92298976530327 - ], - [ - 173.91850459748798, - -41.91426232689792 - ], - [ - 173.8520051852931, - -41.93527282676265 - ], - [ - 173.81752400859946, - -41.9349495883032 - ], - [ - 173.81218763601592, - -41.947555888222034 - ], - [ - 173.79617851826532, - -41.958222757384135 - ], - [ - 173.77565400832862, - -41.92557567297893 - ], - [ - 173.75348753759698, - -41.91006022692497 - ], - [ - 173.73091057666664, - -41.922343288384354 - ], - [ - 173.71982734130083, - -41.94787912668149 - ], - [ - 173.7181853805059, - -41.965334003492195 - ], - [ - 173.708744105935, - -41.97373820343809 - ], - [ - 173.66892655665782, - -41.985698026438016 - ], - [ - 173.6672845958629, - -42.00282966478926 - ], - [ - 173.63403488976547, - -42.01252681857299 - ], - [ - 173.6102264582389, - -42.01414301087027 - ], - [ - 173.60201665426422, - -42.033214079978265 - ], - [ - 173.57820822273766, - -42.03483027227555 - ], - [ - 173.55768371280098, - -42.06844707205913 - ], - [ - 173.5203291047162, - -42.073942125869905 - ], - [ - 173.4948787123947, - -42.09236671805898 - ], - [ - 173.49693116338838, - -42.11370045638317 - ], - [ - 173.4768171436504, - -42.119518748653405 - ], - [ - 173.48584792802257, - -42.139236294680316 - ], - [ - 173.48051155543902, - -42.15184259459915 - ], - [ - 173.4961101829909, - -42.169297471409855 - ], - [ - 173.47845910444536, - -42.19677274046374 - ], - [ - 173.4316632217897, - -42.210025517301496 - ], - [ - 173.38609880973024, - -42.23426840176081 - ], - [ - 173.32575675051638, - -42.25140004011205 - ], - [ - 173.31344204455436, - -42.26594577078764 - ], - [ - 173.29332802481642, - -42.271440824598415 - ], - [ - 173.25515243633416, - -42.30441114746308 - ], - [ - 173.221492240038, - -42.313785062787346 - ], - [ - 173.21985027924305, - -42.33091670113859 - ], - [ - 173.19563135751775, - -42.332209654976424 - ], - [ - 173.19029498493424, - -42.34481595489526 - ], - [ - 173.2424272401734, - -42.34643214719255 - ], - [ - 173.25720488732784, - -42.35354339330061 - ], - [ - 173.23298596560255, - -42.354836347138445 - ], - [ - 173.23544890679494, - -42.37617008546263 - ], - [ - 173.22190273023674, - -42.380048946976125 - ], - [ - 173.21081949487092, - -42.405261546813804 - ], - [ - 173.17715929857474, - -42.41463546213807 - ], - [ - 173.16977047499753, - -42.44437340040816 - ], - [ - 173.14555155327224, - -42.44566635424599 - ], - [ - 173.09834518041785, - -42.459242369543205 - ], - [ - 173.08315704306472, - -42.48025286940794 - ], - [ - 173.062632533128, - -42.486071161678176 - ], - [ - 173.0478548859736, - -42.47928315402957 - ], - [ - 173.05360174875588, - -42.46635361565127 - ], - [ - 173.02979331722932, - -42.44017130043521 - ], - [ - 172.9957226307344, - -42.44986845421894 - ], - [ - 172.98504988556732, - -42.44728254654328 - ], - [ - 173.0100897876901, - -42.39039257767877 - ], - [ - 172.98587086596478, - -42.39200876997605 - ], - [ - 172.95221066966863, - -42.37390741624643 - ], - [ - 172.96083096384203, - -42.354836347138445 - ], - [ - 172.9394854735079, - -42.34998777024658 - ], - [ - 172.930044198937, - -42.330270224219674 - ], - [ - 172.93989596370662, - -42.32218926273324 - ], - [ - 172.923886845956, - -42.30441114746308 - ], - [ - 172.86847066912694, - -42.30925972435494 - ], - [ - 172.85656645336366, - -42.296006947517185 - ], - [ - 172.87626998290287, - -42.25172327857151 - ], - [ - 172.84794615919023, - -42.248814132436394 - ], - [ - 172.83604194342695, - -42.23556135559864 - ], - [ - 172.83234753163836, - -42.203237509652894 - ], - [ - 172.8463041983953, - -42.1993586481394 - ], - [ - 172.8438412572029, - -42.17802490981521 - ], - [ - 172.81674890408647, - -42.18578263284219 - ], - [ - 172.8085391001118, - -42.17705519443684 - ], - [ - 172.81059155110546, - -42.15992355608559 - ], - [ - 172.77652086461057, - -42.169620709869314 - ], - [ - 172.74819704089794, - -42.16638832527474 - ], - [ - 172.7321879231473, - -42.148933448464035 - ], - [ - 172.74080821732073, - -42.12986237935605 - ], - [ - 172.73054596235238, - -42.0998012026265 - ], - [ - 172.7440921389106, - -42.09592234111301 - ], - [ - 172.74203968791693, - -42.074265364329364 - ], - [ - 172.7502494918916, - -42.05551753368083 - ], - [ - 172.74819704089794, - -42.03386055689718 - ], - [ - 172.77241596262323, - -42.03256760305935 - ], - [ - 172.80156076673333, - -42.00800148014058 - ], - [ - 172.78965655097005, - -41.994748703302825 - ], - [ - 172.81962233547762, - -41.980849449546156 - ], - [ - 172.82701115905482, - -41.95111151127607 - ], - [ - 172.860671355351, - -41.9417375959518 - ], - [ - 172.86231331614593, - -41.924605957600555 - ], - [ - 172.8816063554864, - -41.908444034627685 - ], - [ - 172.86600772793452, - -41.890665919357524 - ], - [ - 172.85533498276746, - -41.88840325014132 - ], - [ - 172.86354478674212, - -41.86933218103333 - ], - [ - 172.88406929667883, - -41.863513888763094 - ], - [ - 172.8816063554864, - -41.8421801504389 - ], - [ - 172.92306586555853, - -41.803391535304 - ], - [ - 172.93661204211674, - -41.79951267379052 - ], - [ - 172.95467361086102, - -41.77236064319609 - ], - [ - 172.9349700813218, - -41.75038042795298 - ], - [ - 172.96288341483572, - -41.75361281254756 - ], - [ - 172.9727351796053, - -41.74520861260166 - ], - [ - 173.01583665047235, - -41.7274304973315 - ], - [ - 173.04457096438372, - -41.702864374412734 - ], - [ - 173.06550596451916, - -41.66924757462915 - ], - [ - 173.07166331750017, - -41.62916600565643 - ], - [ - 173.088903905847, - -41.62948924411589 - ], - [ - 173.1159962589634, - -41.62173152108891 - ], - [ - 173.1389837100925, - -41.609771698088984 - ], - [ - 173.14062567088743, - -41.59264005973774 - ], - [ - 173.16771802400388, - -41.584882336710756 - ], - [ - 173.17510684758108, - -41.555144398440675 - ], - [ - 173.19686282811398, - -41.53219446781919 - ], - [ - 173.23709086758987, - -41.52055788327872 - ], - [ - 173.2518685147443, - -41.52734589092733 - ], - [ - 173.27567694627086, - -41.525729698630045 - ], - [ - 173.31590498574676, - -41.514093114089576 - ], - [ - 173.29373851501515, - -41.498577668035615 - ], - [ - 173.26623567169997, - -41.46787001438715 - ], - [ - 173.28429724044426, - -41.44039474533327 - ], - [ - 173.30441126018223, - -41.43457645306304 - ], - [ - 173.29414900521388, - -41.40451527633349 - ], - [ - 173.30400076998347, - -41.3961110763876 - ], - [ - 173.31426302495183, - -41.3983737456038 - ], - [ - 173.347923221248, - -41.38835335336062 - ], - [ - 173.35325959383155, - -41.37574705344178 - ], - [ - 173.36967920178088, - -41.365403422739135 - ], - [ - 173.3684477311847, - -41.35441331511758 - ], - [ - 173.38445684893532, - -41.34406968441495 - ], - [ - 173.41770655503274, - -41.33404929217176 - ], - [ - 173.42714782960363, - -41.32532185376641 - ], - [ - 173.42386390801374, - -41.292998007820664 - ], - [ - 173.43576812377702, - -41.27812903868562 - ], - [ - 173.44890381013653, - -41.274250177172135 - ], - [ - 173.4546506729188, - -41.26132063879383 - ], - [ - 173.47722763384914, - -41.24871433887499 - ], - [ - 173.48831086921496, - -41.222855262118394 - ], - [ - 173.52812841849214, - -41.210572200659016 - ], - [ - 173.52689694789595, - -41.199582093037456 - ], - [ - 173.58026067373135, - -41.18309693160513 - ], - [ - 173.588470477706, - -41.16402586249714 - ], - [ - 173.58929145810347, - -41.108105609011 - ], - [ - 173.60489008565537, - -41.058650124714006 - ], - [ - 173.62213067400216, - -41.07416557076796 - ], - [ - 173.61597332102116, - -41.09679226292998 - ], - [ - 173.64963351731734, - -41.09420635525432 - ], - [ - 173.6660531252667, - -41.07578176306525 - ], - [ - 173.6795993018249, - -41.077397955362535 - ], - [ - 173.72023783149956, - -41.06479165544369 - ], - [ - 173.72352175308941, - -41.058650124714006 - ], - [ - 173.75348753759698, - -41.054448024741056 - ], - [ - 173.74486724342358, - -41.03343752487632 - ], - [ - 173.7268056746793, - -41.048306494011364 - ], - [ - 173.71572243931348, - -41.04636706325462 - ], - [ - 173.68863008619707, - -41.05606421703834 - ], - [ - 173.6709790076515, - -41.03634667101144 - ], - [ - 173.71202802752487, - -41.00693197120081 - ], - [ - 173.7255742040831, - -41.01339674038996 - ], - [ - 173.74609871401978, - -41.00563901736298 - ], - [ - 173.75553998859067, - -40.9849517559577 - ], - [ - 173.76744420435395, - -40.97363840987669 - ], - [ - 173.778116949521, - -40.98980033284956 - ], - [ - 173.79782047906025, - -40.98398204057933 - ], - [ - 173.7850952828995, - -40.966527163768625 - ], - [ - 173.81013518502226, - -40.966527163768625 - ], - [ - 173.81259812621465, - -40.95359762539033 - ], - [ - 173.8376380283374, - -40.936789225498536 - ], - [ - 173.8458478323121, - -40.95359762539033 - ], - [ - 173.83271214595263, - -40.9826890867415 - ], - [ - 173.85241567549184, - -40.98980033284956 - ], - [ - 173.86924577363993, - -40.982042609822585 - ], - [ - 173.87417165602474, - -40.96555744839025 - ], - [ - 173.89756959735254, - -40.959739156120015 - ], - [ - 173.91686263669305, - -40.94325399468769 - ], - [ - 173.90618989152597, - -40.9287082640121 - ], - [ - 173.93246126424492, - -40.92450616403916 - ], - [ - 173.96201655855376, - -40.89670765652581 - ], - [ - 174.0059390098183, - -40.91060691028248 - ], - [ - 174.0145593039917, - -40.936789225498536 - ], - [ - 173.98664597047778, - -40.920950540985125 - ], - [ - 173.9722788135221, - -40.92676883325536 - ], - [ - 173.95011234279048, - -40.94680961774172 - ], - [ - 173.9587326369639, - -40.957476486903815 - ], - [ - 173.9127577347057, - -40.9652342099308 - ], - [ - 173.8992115581475, - -40.977840509849635 - ], - [ - 173.92999832305253, - -40.98333556366041 - ], - [ - 173.89141224437154, - -41.00757844811972 - ], - [ - 173.88073949920448, - -41.002729871227864 - ], - [ - 173.86842479324247, - -41.01759884036291 - ], - [ - 173.85159469509438, - -41.02244741725477 - ], - [ - 173.81875547919566, - -41.011457309633215 - ], - [ - 173.8335331263501, - -40.99626510203871 - ], - [ - 173.81588204780454, - -40.993679194363054 - ], - [ - 173.79207361627797, - -41.02406360955205 - ], - [ - 173.79330508687417, - -41.04184172482221 - ], - [ - 173.77852743971977, - -41.070933186173384 - ], - [ - 173.77360155733496, - -41.10487322441642 - ], - [ - 173.80151489084884, - -41.09420635525432 - ], - [ - 173.8142400870096, - -41.07901414765983 - ], - [ - 173.82573381257413, - -41.05509450165997 - ], - [ - 173.86473038145385, - -41.05347830936268 - ], - [ - 173.8749926364222, - -41.059619840092374 - ], - [ - 173.91234724450698, - -41.05509450165997 - ], - [ - 173.90290596993609, - -41.08709510914626 - ], - [ - 173.8848444011918, - -41.07448880922742 - ], - [ - 173.87047724423613, - -41.07933738611928 - ], - [ - 173.8626779304602, - -41.09873169368673 - ], - [ - 173.8885388129804, - -41.10099436290293 - ], - [ - 173.88566538158926, - -41.11715628587581 - ], - [ - 173.86144645986397, - -41.1103682782272 - ], - [ - 173.8520051852931, - -41.133964685767594 - ], - [ - 173.81752400859946, - -41.15335899333504 - ], - [ - 173.7850952828995, - -41.14883365490264 - ], - [ - 173.79330508687417, - -41.16467233941605 - ], - [ - 173.82819675376655, - -41.16014700098365 - ], - [ - 173.84872126370323, - -41.152066039497214 - ], - [ - 173.84913175390196, - -41.168227962470084 - ], - [ - 173.86514087165259, - -41.17533920857815 - ], - [ - 173.86555136185132, - -41.190854654632105 - ], - [ - 173.84748979310703, - -41.221885546740026 - ], - [ - 173.8507737146969, - -41.2403101389291 - ], - [ - 173.79740998886152, - -41.258734731118174 - ], - [ - 173.77360155733496, - -41.25420939268577 - ], - [ - 173.759644890578, - -41.26326006955058 - ], - [ - 173.7707281259438, - -41.27489665409105 - ], - [ - 173.7850952828995, - -41.26455302338841 - ], - [ - 173.80685126343238, - -41.26907836182082 - ], - [ - 173.81998694979188, - -41.26067416187492 - ], - [ - 173.84913175390196, - -41.26067416187492 - ], - [ - 173.86924577363993, - -41.25582558498306 - ], - [ - 173.89551714635888, - -41.23546156203724 - ], - [ - 173.8688352834412, - -41.22123906982111 - ], - [ - 173.89387518556396, - -41.21736020830762 - ], - [ - 173.90742136212216, - -41.20733981606444 - ], - [ - 173.92425146027026, - -41.2099257237401 - ], - [ - 173.949291362393, - -41.201521523794206 - ], - [ - 173.9698158723297, - -41.21736020830762 - ], - [ - 173.97884665670185, - -41.208632769902266 - ], - [ - 173.99813969604233, - -41.208956008361724 - ], - [ - 174.01414881379296, - -41.19796590074017 - ], - [ - 174.03262087273598, - -41.20119828533475 - ], - [ - 174.04616704929418, - -41.19376380076722 - ], - [ - 174.09788881433465, - -41.18535960082133 - ], - [ - 174.1167713634764, - -41.17372301628086 - ], - [ - 174.0547873434676, - -41.179218070091636 - ], - [ - 174.01250685299803, - -41.16758148555117 - ], - [ - 173.99731871564487, - -41.18535960082133 - ], - [ - 173.97433126451577, - -41.18309693160513 - ], - [ - 173.97022636252845, - -41.1733997778214 - ], - [ - 173.94067106821961, - -41.18535960082133 - ], - [ - 173.91973606808418, - -41.20055180841583 - ], - [ - 173.87827655801206, - -41.19602646998342 - ], - [ - 173.89223322476903, - -41.16628853171334 - ], - [ - 173.86965626383866, - -41.15982376252419 - ], - [ - 173.8688352834412, - -41.13978297803783 - ], - [ - 173.8942856757627, - -41.136227354983795 - ], - [ - 173.90577940132724, - -41.1103682782272 - ], - [ - 173.92917734265507, - -41.11457037820014 - ], - [ - 173.92671440146265, - -41.09582254755161 - ], - [ - 173.9382081270272, - -41.0845092014706 - ], - [ - 173.96365851934868, - -41.08483243993006 - ], - [ - 173.96447949974618, - -41.101964078281306 - ], - [ - 173.9517543035854, - -41.1126309474434 - ], - [ - 173.96447949974618, - -41.13752030882162 - ], - [ - 173.98336204888793, - -41.13525763960542 - ], - [ - 173.99116136266386, - -41.10519646287588 - ], - [ - 174.0112753824018, - -41.09452959371378 - ], - [ - 174.03138940213978, - -41.10616617825425 - ], - [ - 174.0281054805499, - -41.07869090920037 - ], - [ - 174.01702224518408, - -41.06252898622749 - ], - [ - 174.04698802969165, - -41.05380154782214 - ], - [ - 174.04945097088407, - -41.02180094033585 - ], - [ - 174.00922293140815, - -41.01759884036291 - ], - [ - 173.99116136266386, - -41.03763962484927 - ], - [ - 173.98130959789424, - -41.03214457103849 - ], - [ - 173.96406900954742, - -41.04475087095733 - ], - [ - 173.949291362393, - -41.03731638638981 - ], - [ - 173.95626969577148, - -41.02147770187639 - ], - [ - 173.97186832332338, - -41.02180094033585 - ], - [ - 173.97925714690058, - -41.009517878876466 - ], - [ - 173.97392077431704, - -40.991416525146846 - ], - [ - 173.99321381365752, - -40.99529538666034 - ], - [ - 173.99444528425374, - -40.968789832984825 - ], - [ - 174.01373832359423, - -40.96491097147134 - ], - [ - 174.02276910796635, - -40.97719403293072 - ], - [ - 174.00840195101068, - -41.009517878876466 - ], - [ - 174.0207166569727, - -41.01565940960616 - ], - [ - 174.0523244022752, - -41.007255209660265 - ], - [ - 174.07202793181443, - -41.00693197120081 - ], - [ - 174.0970678339372, - -41.04054877098439 - ], - [ - 174.10363567711693, - -41.02858894798446 - ], - [ - 174.09665734373846, - -40.99464890974143 - ], - [ - 174.1056881281106, - -40.99270947898468 - ], - [ - 174.13278048122703, - -41.01921503266019 - ], - [ - 174.16192528533713, - -40.9849517559577 - ], - [ - 174.17341901090165, - -41.00790168657918 - ], - [ - 174.1955854816333, - -41.01824531728182 - ], - [ - 174.16931410891434, - -41.0495994478492 - ], - [ - 174.1824497952738, - -41.05897336317346 - ], - [ - 174.21898342296112, - -41.07125642463284 - ], - [ - 174.22431979554466, - -41.054771263200514 - ], - [ - 174.25756950164208, - -41.043457917119504 - ], - [ - 174.2760415605851, - -41.059619840092374 - ], - [ - 174.23745548190414, - -41.10164083982185 - ], - [ - 174.23499254071174, - -41.11974219355147 - ], - [ - 174.21857293276238, - -41.11392390128123 - ], - [ - 174.19476450123582, - -41.13655059344325 - ], - [ - 174.18203930507508, - -41.12297457814604 - ], - [ - 174.18327077567128, - -41.10164083982185 - ], - [ - 174.1483791087789, - -41.127176678118985 - ], - [ - 174.16233577553587, - -41.13105553963248 - ], - [ - 174.16972459911307, - -41.14883365490264 - ], - [ - 174.18573371686367, - -41.15723785484853 - ], - [ - 174.1799868540814, - -41.18212721622675 - ], - [ - 174.15084204997132, - -41.181157500848386 - ], - [ - 174.15412597156117, - -41.20830953144281 - ], - [ - 174.14509518718904, - -41.213804585253584 - ], - [ - 174.12662312824602, - -41.20475390838878 - ], - [ - 174.11512940268148, - -41.222532023658935 - ], - [ - 174.09788881433465, - -41.20313771609149 - ], - [ - 174.08557410837264, - -41.21509753909142 - ], - [ - 174.08803704956503, - -41.22576440825351 - ], - [ - 174.044935578698, - -41.212834869875216 - ], - [ - 174.0219481275689, - -41.22350173903731 - ], - [ - 173.99855018624106, - -41.21929963906436 - ], - [ - 173.99690822544613, - -41.24354252352367 - ], - [ - 173.9722788135221, - -41.240633377388555 - ], - [ - 173.97022636252845, - -41.25000729271282 - ], - [ - 173.92589342106518, - -41.26422978492895 - ], - [ - 173.93410322503985, - -41.26907836182082 - ], - [ - 173.96776342133603, - -41.26713893106407 - ], - [ - 174.0112753824018, - -41.25905796957763 - ], - [ - 174.00183410783094, - -41.2729572233343 - ], - [ - 174.01086489220307, - -41.28265437711803 - ], - [ - 174.03672577472332, - -41.25420939268577 - ], - [ - 174.05355587287139, - -41.25970444649655 - ], - [ - 174.09953077512958, - -41.24451223890205 - ], - [ - 174.1192343046688, - -41.23513832357778 - ], - [ - 174.1557679323561, - -41.25291643884794 - ], - [ - 174.20872116799276, - -41.25356291576686 - ], - [ - 174.2588009722383, - -41.244835477361505 - ], - [ - 174.291640188137, - -41.22156230828057 - ], - [ - 174.3051863646952, - -41.220269354442735 - ], - [ - 174.27563107038637, - -41.25582558498306 - ], - [ - 174.28219891356613, - -41.26713893106407 - ], - [ - 174.2247302857434, - -41.292351530901755 - ], - [ - 174.24156038389148, - -41.30754373849625 - ], - [ - 174.1980484228257, - -41.33017043065828 - ], - [ - 174.19189106984467, - -41.337604915225796 - ], - [ - 174.16931410891434, - -41.33598872292851 - ], - [ - 174.1545364617599, - -41.34730206900952 - ], - [ - 174.13524342241942, - -41.34762530746898 - ], - [ - 174.1422217557979, - -41.32370566146913 - ], - [ - 174.15617842255486, - -41.32758452298262 - ], - [ - 174.17670293249154, - -41.30398811544222 - ], - [ - 174.1799868540814, - -41.28685647709097 - ], - [ - 174.15043155977258, - -41.292028292442296 - ], - [ - 174.13195950082957, - -41.28911914630718 - ], - [ - 174.10486714771312, - -41.33922110752309 - ], - [ - 174.07818528479544, - -41.36928228425263 - ], - [ - 174.04821950028787, - -41.394818122549765 - ], - [ - 174.03015793154358, - -41.4394250299549 - ], - [ - 174.03015793154358, - -41.464960868252035 - ], - [ - 174.03877822571698, - -41.48435517581949 - ], - [ - 174.06135518664735, - -41.5001938603329 - ], - [ - 174.05683979446127, - -41.50633539106259 - ], - [ - 174.08721606916757, - -41.52702265246787 - ], - [ - 174.06258665724354, - -41.53478037549485 - ], - [ - 174.05889224545493, - -41.550942298467724 - ], - [ - 174.0900895005587, - -41.5587000214947 - ], - [ - 174.13278048122703, - -41.546416960035316 - ], - [ - 174.14878959897763, - -41.55676059073796 - ], - [ - 174.1533049911637, - -41.58876119822425 - ], - [ - 174.16808263831814, - -41.60653931349441 - ], - [ - 174.1578203833498, - -41.647913836304966 - ], - [ - 174.1594623441447, - -41.668277859250786 - ], - [ - 174.18121832467762, - -41.709329143601884 - ], - [ - 174.21323656017884, - -41.727753735790955 - ], - [ - 174.2234988151472, - -41.72193544352072 - ], - [ - 174.27768352138006, - -41.74229946646655 - ], - [ - 174.24238136428895, - -41.76945149706097 - ], - [ - 174.21857293276238, - -41.79272466614191 - ], - [ - 174.2152890111725, - -41.81276545062827 - ], - [ - 174.19845891302444, - -41.82213936595254 - ], - [ - 174.19722744242821, - -41.835715381249756 - ], - [ - 174.16479871672826, - -41.85995826570906 - ], - [ - 174.14016930480423, - -41.890342680898065 - ], - [ - 174.1155398928802, - -41.90618136541148 - ], - [ - 174.09747832413592, - -41.93042424987079 - ], - [ - 174.05191391207646, - -41.96662695733003 - ] - ] - ], - [ - [ - [ - 173.95709067616895, - -40.692420950148694 - ], - [ - 173.9661214605411, - -40.71989621920258 - ], - [ - 173.9550382251753, - -40.74510881904026 - ], - [ - 173.95955361736137, - -40.76514960352662 - ], - [ - 173.94026057802088, - -40.78389743417516 - ], - [ - 173.94682842120062, - -40.79456430333725 - ], - [ - 173.93122979364873, - -40.81266565706687 - ], - [ - 173.90290596993609, - -40.85856551830983 - ], - [ - 173.87335067562725, - -40.87149505668813 - ], - [ - 173.86596185205005, - -40.89088936425558 - ], - [ - 173.83804851853614, - -40.90381890263387 - ], - [ - 173.81957645959312, - -40.92741531017427 - ], - [ - 173.80274636144506, - -40.92903150247156 - ], - [ - 173.79002116528432, - -40.9416378023904 - ], - [ - 173.77360155733496, - -40.9309709332283 - ], - [ - 173.79535753786783, - -40.907697764147365 - ], - [ - 173.79412606727163, - -40.89476822576907 - ], - [ - 173.77113861614254, - -40.86115142598549 - ], - [ - 173.7768854789248, - -40.84078740303967 - ], - [ - 173.79166312607924, - -40.84111064149913 - ], - [ - 173.7924841064767, - -40.857272564472 - ], - [ - 173.81998694979188, - -40.85630284909363 - ], - [ - 173.81013518502226, - -40.819453664715475 - ], - [ - 173.79576802806656, - -40.80846355709392 - ], - [ - 173.84174293032476, - -40.766442557364456 - ], - [ - 173.84625832251083, - -40.75157358822941 - ], - [ - 173.86555136185132, - -40.73120956528359 - ], - [ - 173.879918518807, - -40.737351096013285 - ], - [ - 173.86144645986397, - -40.769351703499574 - ], - [ - 173.87458214622347, - -40.77581647268872 - ], - [ - 173.87663459721713, - -40.796503734093996 - ], - [ - 173.90003253854496, - -40.77355380347252 - ], - [ - 173.88771783258295, - -40.76288693431042 - ], - [ - 173.93738714662973, - -40.746725011337546 - ], - [ - 173.93615567603354, - -40.73573490371599 - ], - [ - 173.9525752839829, - -40.71957298074312 - ], - [ - 173.95709067616895, - -40.692420950148694 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2133, - "NAME_1": "Nelson", - "ID_2": 25207, - "NAME_2": "Nelson", - "VARNAME_2": "", - "HASC_2": "NZ.NE.NL", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 173.41688557463527, - -41.13461116268651 - ], - [ - 173.43617861397578, - -41.13978297803783 - ], - [ - 173.43987302576437, - -41.16273290865931 - ], - [ - 173.42591635900743, - -41.16628853171334 - ], - [ - 173.41237018244922, - -41.14948013182155 - ], - [ - 173.41688557463527, - -41.13461116268651 - ] - ] - ], - [ - [ - [ - 173.60489008565537, - -41.058650124714006 - ], - [ - 173.58929145810347, - -41.108105609011 - ], - [ - 173.588470477706, - -41.16402586249714 - ], - [ - 173.58026067373135, - -41.18309693160513 - ], - [ - 173.52689694789595, - -41.199582093037456 - ], - [ - 173.52812841849214, - -41.210572200659016 - ], - [ - 173.48831086921496, - -41.222855262118394 - ], - [ - 173.47722763384914, - -41.24871433887499 - ], - [ - 173.4546506729188, - -41.26132063879383 - ], - [ - 173.44890381013653, - -41.274250177172135 - ], - [ - 173.43576812377702, - -41.27812903868562 - ], - [ - 173.42386390801374, - -41.292998007820664 - ], - [ - 173.42714782960363, - -41.32532185376641 - ], - [ - 173.41770655503274, - -41.33404929217176 - ], - [ - 173.38445684893532, - -41.34406968441495 - ], - [ - 173.3684477311847, - -41.35441331511758 - ], - [ - 173.36967920178088, - -41.365403422739135 - ], - [ - 173.35325959383155, - -41.37574705344178 - ], - [ - 173.347923221248, - -41.38835335336062 - ], - [ - 173.31426302495183, - -41.3983737456038 - ], - [ - 173.30400076998347, - -41.3961110763876 - ], - [ - 173.28552871104046, - -41.38479773030659 - ], - [ - 173.26828812269366, - -41.38447449184713 - ], - [ - 173.25638390693038, - -41.37154495346883 - ], - [ - 173.2350384165962, - -41.36669637657697 - ], - [ - 173.2264181224228, - -41.34730206900952 - ], - [ - 173.20302018109498, - -41.33017043065828 - ], - [ - 173.21861880864685, - -41.308513453874625 - ], - [ - 173.21574537725573, - -41.30043249238819 - ], - [ - 173.2350384165962, - -41.27942199252345 - ], - [ - 173.25268949514177, - -41.27812903868562 - ], - [ - 173.2760874364696, - -41.256472061901974 - ], - [ - 173.29209655422022, - -41.262613592631666 - ], - [ - 173.31344204455436, - -41.24839110041554 - ], - [ - 173.31959939753537, - -41.226734123631886 - ], - [ - 173.329451162305, - -41.217683446767076 - ], - [ - 173.32986165250372, - -41.20022856995637 - ], - [ - 173.36311135860115, - -41.184389885442954 - ], - [ - 173.37419459396696, - -41.172753300902485 - ], - [ - 173.40210792748087, - -41.156591377929615 - ], - [ - 173.43207371198844, - -41.174692731659235 - ], - [ - 173.4464408689441, - -41.16596529325388 - ], - [ - 173.46409194748966, - -41.16596529325388 - ], - [ - 173.49282626140104, - -41.14915689336209 - ], - [ - 173.50678292815797, - -41.13428792422705 - ], - [ - 173.50842488895293, - -41.1126309474434 - ], - [ - 173.54660047743516, - -41.095499309092155 - ], - [ - 173.57369283055158, - -41.06317546314641 - ], - [ - 173.60489008565537, - -41.058650124714006 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2133, - "NAME_1": "Nelson", - "ID_2": 25208, - "NAME_2": "Tasman", - "VARNAME_2": "", - "HASC_2": "NZ.TS.TM", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 173.11435429816848, - -41.251300246550656 - ], - [ - 173.18044322016462, - -41.27328046179376 - ], - [ - 173.15088792585578, - -41.283624092496396 - ], - [ - 173.1159962589634, - -41.26649245414515 - ], - [ - 173.11435429816848, - -41.251300246550656 - ] - ] - ], - [ - [ - [ - 173.20302018109498, - -41.33017043065828 - ], - [ - 173.2264181224228, - -41.34730206900952 - ], - [ - 173.2350384165962, - -41.36669637657697 - ], - [ - 173.25638390693038, - -41.37154495346883 - ], - [ - 173.26828812269366, - -41.38447449184713 - ], - [ - 173.28552871104046, - -41.38479773030659 - ], - [ - 173.30400076998347, - -41.3961110763876 - ], - [ - 173.29414900521388, - -41.40451527633349 - ], - [ - 173.30441126018223, - -41.43457645306304 - ], - [ - 173.28429724044426, - -41.44039474533327 - ], - [ - 173.26623567169997, - -41.46787001438715 - ], - [ - 173.29373851501515, - -41.498577668035615 - ], - [ - 173.31590498574676, - -41.514093114089576 - ], - [ - 173.27567694627086, - -41.525729698630045 - ], - [ - 173.2518685147443, - -41.52734589092733 - ], - [ - 173.23709086758987, - -41.52055788327872 - ], - [ - 173.19686282811398, - -41.53219446781919 - ], - [ - 173.17510684758108, - -41.555144398440675 - ], - [ - 173.16771802400388, - -41.584882336710756 - ], - [ - 173.14062567088743, - -41.59264005973774 - ], - [ - 173.1389837100925, - -41.609771698088984 - ], - [ - 173.1159962589634, - -41.62173152108891 - ], - [ - 173.088903905847, - -41.62948924411589 - ], - [ - 173.07166331750017, - -41.62916600565643 - ], - [ - 173.06550596451916, - -41.66924757462915 - ], - [ - 173.04457096438372, - -41.702864374412734 - ], - [ - 173.01583665047235, - -41.7274304973315 - ], - [ - 172.9727351796053, - -41.74520861260166 - ], - [ - 172.96288341483572, - -41.75361281254756 - ], - [ - 172.9349700813218, - -41.75038042795298 - ], - [ - 172.95467361086102, - -41.77236064319609 - ], - [ - 172.93661204211674, - -41.79951267379052 - ], - [ - 172.92306586555853, - -41.803391535304 - ], - [ - 172.8816063554864, - -41.8421801504389 - ], - [ - 172.88406929667883, - -41.863513888763094 - ], - [ - 172.86354478674212, - -41.86933218103333 - ], - [ - 172.85533498276746, - -41.88840325014132 - ], - [ - 172.86600772793452, - -41.890665919357524 - ], - [ - 172.8816063554864, - -41.908444034627685 - ], - [ - 172.86231331614593, - -41.924605957600555 - ], - [ - 172.860671355351, - -41.9417375959518 - ], - [ - 172.82701115905482, - -41.95111151127607 - ], - [ - 172.81962233547762, - -41.980849449546156 - ], - [ - 172.78965655097005, - -41.994748703302825 - ], - [ - 172.80156076673333, - -42.00800148014058 - ], - [ - 172.77241596262323, - -42.03256760305935 - ], - [ - 172.74819704089794, - -42.03386055689718 - ], - [ - 172.7502494918916, - -42.05551753368083 - ], - [ - 172.74203968791693, - -42.074265364329364 - ], - [ - 172.7440921389106, - -42.09592234111301 - ], - [ - 172.73054596235238, - -42.0998012026265 - ], - [ - 172.70222213863974, - -42.096568818031926 - ], - [ - 172.69401233466508, - -42.087841379626575 - ], - [ - 172.64639547161195, - -42.101094156464335 - ], - [ - 172.64475351081703, - -42.11822579481558 - ], - [ - 172.6566577265803, - -42.13147857165333 - ], - [ - 172.6361332166436, - -42.13729686392357 - ], - [ - 172.62217654988666, - -42.1689742329504 - ], - [ - 172.62422900088032, - -42.19030797127459 - ], - [ - 172.61848213809805, - -42.202914271193436 - ], - [ - 172.57086527504492, - -42.21649028649065 - ], - [ - 172.56224498087153, - -42.23556135559864 - ], - [ - 172.54213096113358, - -42.241379647868875 - ], - [ - 172.53351066696015, - -42.26045071697686 - ], - [ - 172.48835674509945, - -42.26756196308493 - ], - [ - 172.461264391983, - -42.27531968611191 - ], - [ - 172.45674899979693, - -42.2989160936523 - ], - [ - 172.44279233304, - -42.302794955165794 - ], - [ - 172.41036360734003, - -42.29536047059827 - ], - [ - 172.38368174442232, - -42.27499644765245 - ], - [ - 172.34386419514513, - -42.23103601716623 - ], - [ - 172.3578208619021, - -42.22715715565275 - ], - [ - 172.36356772468437, - -42.214227617274446 - ], - [ - 172.35125301872236, - -42.200974840436686 - ], - [ - 172.34920056772867, - -42.1796411021125 - ], - [ - 172.3590523324983, - -42.171236902166605 - ], - [ - 172.3496110579274, - -42.151519356139694 - ], - [ - 172.32416066560592, - -42.14214544081543 - ], - [ - 172.26422909659078, - -42.142468679274884 - ], - [ - 172.25642978281485, - -42.13374124086954 - ], - [ - 172.23467380228195, - -42.128569425518215 - ], - [ - 172.21497027274273, - -42.10658921027511 - ], - [ - 172.19321429220983, - -42.101417394923786 - ], - [ - 172.14723938995166, - -42.09786177186976 - ], - [ - 172.14190301736812, - -42.08266956427526 - ], - [ - 172.11029527206563, - -42.047113333734934 - ], - [ - 172.12876733100865, - -42.019961303140505 - ], - [ - 172.11686311524537, - -42.00670852630275 - ], - [ - 172.088128801334, - -42.00347614170818 - ], - [ - 172.0762245855707, - -41.990223364870424 - ], - [ - 172.0860763503403, - -41.98214240338398 - ], - [ - 172.06226791881375, - -41.95531361124901 - ], - [ - 172.0602154678201, - -41.93397987292482 - ], - [ - 172.0737616443783, - -41.93010101141133 - ], - [ - 172.08648684053907, - -41.915555280735745 - ], - [ - 172.07047772278844, - -41.897777165465584 - ], - [ - 172.0979805661036, - -41.89001944243861 - ], - [ - 172.10947429166814, - -41.86480684260093 - ], - [ - 172.12014703683522, - -41.867392750276586 - ], - [ - 172.12219948782888, - -41.783997227736556 - ], - [ - 172.10865331127067, - -41.78787608925005 - ], - [ - 172.09962252689854, - -41.768158543223144 - ], - [ - 172.12302046822637, - -41.75619872022322 - ], - [ - 172.13164076239977, - -41.73745088957468 - ], - [ - 172.1197365466365, - -41.72419811273693 - ], - [ - 172.15298625273394, - -41.70415732825056 - ], - [ - 172.20060311578706, - -41.69090455141281 - ], - [ - 172.21538076294146, - -41.697692559061416 - ], - [ - 172.24288360625664, - -41.69025807449389 - ], - [ - 172.25807174360978, - -41.66957081308861 - ], - [ - 172.2424731160579, - -41.65179269781845 - ], - [ - 172.2510934102313, - -41.63304486716992 - ], - [ - 172.27161792016798, - -41.627549813359146 - ], - [ - 172.2970683124895, - -41.63692372868341 - ], - [ - 172.29871027328443, - -41.62011532879162 - ], - [ - 172.33319144997807, - -41.6104181750079 - ], - [ - 172.34468517554262, - -41.58552881362967 - ], - [ - 172.33154948918312, - -41.56160916762982 - ], - [ - 172.35207399911982, - -41.55611411381904 - ], - [ - 172.347148116735, - -41.54092190622454 - ], - [ - 172.3528949795173, - -41.52863884476516 - ], - [ - 172.34796909713248, - -41.51344663717066 - ], - [ - 172.36151527369069, - -41.509891014116626 - ], - [ - 172.37424046985143, - -41.49534528344104 - ], - [ - 172.40133282296787, - -41.48791079887352 - ], - [ - 172.4247307642957, - -41.475950975873594 - ], - [ - 172.42555174469317, - -41.44815246836025 - ], - [ - 172.4382769408539, - -41.43392997614412 - ], - [ - 172.4222678231033, - -41.41647509933342 - ], - [ - 172.44977066641846, - -41.40871737630644 - ], - [ - 172.47398958814375, - -41.40742442246861 - ], - [ - 172.52365890219053, - -41.41550538395504 - ], - [ - 172.52653233358168, - -41.40936385322536 - ], - [ - 172.5606030200766, - -41.39966669944163 - ], - [ - 172.56634988285887, - -41.38706039952279 - ], - [ - 172.5934422359753, - -41.37962591495527 - ], - [ - 172.58646390259682, - -41.34309996903657 - ], - [ - 172.60657792233476, - -41.2988163000909 - ], - [ - 172.57497017703227, - -41.263583308010034 - ], - [ - 172.6361332166436, - -41.24612843119933 - ], - [ - 172.66733047174736, - -41.243219285064214 - ], - [ - 172.68251860910053, - -41.222208785199484 - ], - [ - 172.69606478565873, - -41.21832992368599 - ], - [ - 172.701811648441, - -41.20572362376715 - ], - [ - 172.683339589498, - -41.19441027768614 - ], - [ - 172.63900664803475, - -41.20119828533475 - ], - [ - 172.62340802048286, - -41.183743408524045 - ], - [ - 172.6213555694892, - -41.16208643174039 - ], - [ - 172.58851635359048, - -41.143661839551314 - ], - [ - 172.5536246866981, - -41.10358027057859 - ], - [ - 172.52571135318422, - -41.100347885984014 - ], - [ - 172.52776380417788, - -41.08321624763277 - ], - [ - 172.51627007861333, - -41.06964023233556 - ], - [ - 172.4990294902665, - -41.0693169938761 - ], - [ - 172.4941036078817, - -41.05380154782214 - ], - [ - 172.5002609608627, - -41.0411952479033 - ], - [ - 172.48219939211845, - -41.029558663362835 - ], - [ - 172.44361331343745, - -41.02406360955205 - ], - [ - 172.44073988204633, - -41.030205140281744 - ], - [ - 172.41364752892989, - -41.03796286330873 - ], - [ - 172.3955859601856, - -41.02664951722771 - ], - [ - 172.36562017567803, - -41.04054877098439 - ], - [ - 172.3565893913059, - -41.05994307855183 - ], - [ - 172.3299075283882, - -41.06737756311935 - ], - [ - 172.334833410773, - -41.04378115557896 - ], - [ - 172.31225644984264, - -41.01727560190345 - ], - [ - 172.33072850878565, - -40.98980033284956 - ], - [ - 172.34796909713248, - -40.99044680976848 - ], - [ - 172.38368174442232, - -40.96329477917405 - ], - [ - 172.38245027382612, - -40.9416378023904 - ], - [ - 172.35084252852363, - -40.93420331782288 - ], - [ - 172.33031801858692, - -40.94002161009311 - ], - [ - 172.29378439089962, - -40.90640481030954 - ], - [ - 172.2921424301047, - -40.884747833525886 - ], - [ - 172.28434311632876, - -40.875697156661076 - ], - [ - 172.23590527287814, - -40.86761619517464 - ], - [ - 172.2313898806921, - -40.85242398758014 - ], - [ - 172.24904095923765, - -40.81428184936416 - ], - [ - 172.2170227237364, - -40.77484675731035 - ], - [ - 172.23672625327563, - -40.7729073265536 - ], - [ - 172.2802382143414, - -40.75254330360778 - ], - [ - 172.31348792043883, - -40.726360988391725 - ], - [ - 172.36849360706918, - -40.69823924241893 - ], - [ - 172.3906600778008, - -40.67011749644613 - ], - [ - 172.44238184284126, - -40.63068240439232 - ], - [ - 172.48178890191969, - -40.61613667371673 - ], - [ - 172.4879462549007, - -40.60611628147355 - ], - [ - 172.5207854707994, - -40.59157055079797 - ], - [ - 172.54459390232597, - -40.59577265077091 - ], - [ - 172.50682880404247, - -40.62357115828425 - ], - [ - 172.51052321583106, - -40.62906621209503 - ], - [ - 172.54336243172978, - -40.610641619905955 - ], - [ - 172.56265547107026, - -40.60546980455464 - ], - [ - 172.58194851041074, - -40.58833816620339 - ], - [ - 172.61848213809805, - -40.5889846431223 - ], - [ - 172.63038635386133, - -40.56959033555486 - ], - [ - 172.61684017730312, - -40.5670044278792 - ], - [ - 172.5909792947829, - -40.572176243230516 - ], - [ - 172.575380667231, - -40.567327666338656 - ], - [ - 172.57209674564115, - -40.58284311239261 - ], - [ - 172.54705684351836, - -40.58316635085207 - ], - [ - 172.55485615729432, - -40.56409528174408 - ], - [ - 172.5901583143854, - -40.54437773571718 - ], - [ - 172.62463949107905, - -40.517872182041664 - ], - [ - 172.6484479226056, - -40.50494264366336 - ], - [ - 172.66938292274105, - -40.50526588212282 - ], - [ - 172.69606478565873, - -40.49815463601476 - ], - [ - 172.734240374141, - -40.508821505176854 - ], - [ - 172.77241596262323, - -40.51270036669034 - ], - [ - 172.8023817471308, - -40.504296166744446 - ], - [ - 172.87093361031933, - -40.51560951282546 - ], - [ - 172.93250714012942, - -40.520134851257865 - ], - [ - 173.00270096411288, - -40.54082211266314 - ], - [ - 173.0100897876901, - -40.55375165104144 - ], - [ - 172.93332812052688, - -40.52789257428484 - ], - [ - 172.91403508118637, - -40.5282158127443 - ], - [ - 172.89186861045476, - -40.52078132817678 - ], - [ - 172.83111606104217, - -40.515286274366005 - ], - [ - 172.76051174685995, - -40.51431655898763 - ], - [ - 172.73259841334604, - -40.52627638198756 - ], - [ - 172.72520958976884, - -40.54373125879826 - ], - [ - 172.70878998181948, - -40.558276989473846 - ], - [ - 172.68498155029292, - -40.5889846431223 - ], - [ - 172.69113890327392, - -40.59609588923037 - ], - [ - 172.6788241973119, - -40.62841973517612 - ], - [ - 172.65460527558662, - -40.65201614271651 - ], - [ - 172.67677174631825, - -40.676582265635275 - ], - [ - 172.6870340012866, - -40.67819845793257 - ], - [ - 172.68908645228026, - -40.712784973094514 - ], - [ - 172.69524380526127, - -40.728623657607926 - ], - [ - 172.734240374141, - -40.77258408809415 - ], - [ - 172.74121870751947, - -40.77355380347252 - ], - [ - 172.78965655097005, - -40.80393821866152 - ], - [ - 172.7962243941498, - -40.81525156474253 - ], - [ - 172.8192118452789, - -40.819453664715475 - ], - [ - 172.83809439442064, - -40.83076701079649 - ], - [ - 172.8889951790636, - -40.83109024925595 - ], - [ - 172.91567704198133, - -40.810402987850665 - ], - [ - 172.93168615973192, - -40.80911003401284 - ], - [ - 172.94851625788002, - -40.8162212801209 - ], - [ - 172.95467361086102, - -40.79262487258051 - ], - [ - 172.9883338071572, - -40.780341811121126 - ], - [ - 173.01214223868377, - -40.80458469558043 - ], - [ - 173.00557439550403, - -40.82559519544517 - ], - [ - 173.02199400345336, - -40.85242398758014 - ], - [ - 173.06058008213435, - -40.86147466444495 - ], - [ - 173.06550596451916, - -40.87440420282325 - ], - [ - 173.04703390557614, - -40.88830345657992 - ], - [ - 173.06427449392297, - -40.909313956444656 - ], - [ - 173.05278076835842, - -40.91933434868783 - ], - [ - 173.06961086650648, - -40.96135534841731 - ], - [ - 173.0429290035888, - -40.97363840987669 - ], - [ - 173.0355401800116, - -40.98980033284956 - ], - [ - 173.01214223868377, - -40.99238624052522 - ], - [ - 173.01091076808757, - -41.013719978849416 - ], - [ - 173.02199400345336, - -41.02794247106554 - ], - [ - 173.0236359642483, - -41.04507410941679 - ], - [ - 173.00434292490783, - -41.05541774011943 - ], - [ - 173.0113212582863, - -41.077397955362535 - ], - [ - 173.03266674862044, - -41.08968101682192 - ], - [ - 173.02322547404958, - -41.1278231550379 - ], - [ - 173.00885831709388, - -41.1407526934162 - ], - [ - 173.01829959166477, - -41.15723785484853 - ], - [ - 173.050317827166, - -41.1863293161997 - ], - [ - 173.06550596451916, - -41.183420170064586 - ], - [ - 173.0856199842571, - -41.212834869875216 - ], - [ - 173.08356753326345, - -41.227057362091344 - ], - [ - 173.1049130235976, - -41.24612843119933 - ], - [ - 173.09711370982166, - -41.258734731118174 - ], - [ - 173.08315704306472, - -41.25517910806414 - ], - [ - 173.07864165087864, - -41.27198750795593 - ], - [ - 173.1558138082406, - -41.28879590784772 - ], - [ - 173.16402361221526, - -41.2965536308747 - ], - [ - 173.16977047499753, - -41.32047327687455 - ], - [ - 173.20302018109498, - -41.33017043065828 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2134, - "NAME_1": "Northland", - "ID_2": 25209, - "NAME_2": "Far North", - "VARNAME_2": "", - "HASC_2": "NZ.NO.FN", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 173.95709067616895, - -34.985969186886585 - ], - [ - 173.94231302901454, - -35.01182826364318 - ], - [ - 173.92876685245633, - -35.004393779075656 - ], - [ - 173.94067106821961, - -34.986292425346036 - ], - [ - 173.95709067616895, - -34.985969186886585 - ] - ] - ], - [ - [ - [ - 174.31093322747748, - -35.305328784830564 - ], - [ - 174.2842513645598, - -35.32343013856018 - ], - [ - 174.2686527370079, - -35.312116792479166 - ], - [ - 174.25305410945603, - -35.32181394626289 - ], - [ - 174.2879457763484, - -35.37029971518151 - ], - [ - 174.28835626654714, - -35.391633453505705 - ], - [ - 174.25715901144335, - -35.41135099953261 - ], - [ - 174.2637268546231, - -35.441412176262155 - ], - [ - 174.24812822707122, - -35.44076569934324 - ], - [ - 174.2296561681282, - -35.4782613606403 - ], - [ - 174.21364705037757, - -35.48828175288349 - ], - [ - 174.2140575405763, - -35.51995912191032 - ], - [ - 174.19517499143456, - -35.525454175721094 - ], - [ - 174.16356724613206, - -35.52416122188326 - ], - [ - 174.16028332454218, - -35.540969621775055 - ], - [ - 174.14796861858017, - -35.54484848328855 - ], - [ - 174.15125254017005, - -35.56004069088304 - ], - [ - 174.14181126559916, - -35.568121652369484 - ], - [ - 174.10035175552704, - -35.56424279085599 - ], - [ - 174.04945097088407, - -35.568768129288394 - ], - [ - 174.05930273565366, - -35.582020906126154 - ], - [ - 174.02112714717143, - -35.593334252207164 - ], - [ - 173.99567675484994, - -35.59010186761259 - ], - [ - 173.98007812729804, - -35.600122259855766 - ], - [ - 173.95462773497655, - -35.60787998288275 - ], - [ - 173.9419025388158, - -35.60076873677468 - ], - [ - 173.91973606808418, - -35.61272855977461 - ], - [ - 173.92630391126391, - -35.62177923663942 - ], - [ - 173.8495422441007, - -35.623072190477245 - ], - [ - 173.84010096952983, - -35.63115315196369 - ], - [ - 173.8240918517792, - -35.61983980588268 - ], - [ - 173.78263234170709, - -35.60529407520709 - ], - [ - 173.77319106713622, - -35.613375036693526 - ], - [ - 173.7633393023666, - -35.600122259855766 - ], - [ - 173.73460498845523, - -35.60335464445034 - ], - [ - 173.70915459613374, - -35.61078912901787 - ], - [ - 173.67426292924137, - -35.60497083674763 - ], - [ - 173.6709790076515, - -35.61143560593678 - ], - [ - 173.60735302684776, - -35.608849698261125 - ], - [ - 173.60817400724522, - -35.66283052099052 - ], - [ - 173.58888096790474, - -35.6576587056392 - ], - [ - 173.55398930101236, - -35.663153759449976 - ], - [ - 173.54742145783263, - -35.654103082585166 - ], - [ - 173.51211930074152, - -35.64860802877439 - ], - [ - 173.50267802617066, - -35.668325574801294 - ], - [ - 173.48461645742637, - -35.67640653628773 - ], - [ - 173.45998704550232, - -35.65281012874733 - ], - [ - 173.43946253556564, - -35.63988059036904 - ], - [ - 173.4390520453669, - -35.62695105199074 - ], - [ - 173.42386390801374, - -35.60529407520709 - ], - [ - 173.40046596668594, - -35.58105119074778 - ], - [ - 173.37501557436443, - -35.563596313937076 - ], - [ - 173.3639323389986, - -35.5474343909642 - ], - [ - 173.36680577038976, - -35.53709076026156 - ], - [ - 173.38445684893532, - -35.53612104488319 - ], - [ - 173.39143518231378, - -35.50444367585636 - ], - [ - 173.4012869470834, - -35.500888052802324 - ], - [ - 173.41647508443654, - -35.46985716069441 - ], - [ - 173.4148331236416, - -35.45207904542425 - ], - [ - 173.4255058688087, - -35.446260753154014 - ], - [ - 173.42632684920616, - -35.42428053791091 - ], - [ - 173.4378205747707, - -35.41361366874881 - ], - [ - 173.46409194748966, - -35.41005804569478 - ], - [ - 173.468196849477, - -35.40359327650563 - ], - [ - 173.4961101829909, - -35.419108722559585 - ], - [ - 173.5059619477605, - -35.39583555347865 - ], - [ - 173.52977037928707, - -35.40197708420834 - ], - [ - 173.53880116365923, - -35.37902715358686 - ], - [ - 173.55645224220478, - -35.37223914593825 - ], - [ - 173.5543997912111, - -35.36157227677616 - ], - [ - 173.56589351677565, - -35.35219836145189 - ], - [ - 173.58149214432754, - -35.35833989218158 - ], - [ - 173.58682851691108, - -35.34541035380329 - ], - [ - 173.55275783041617, - -35.34088501537088 - ], - [ - 173.54167459505035, - -35.373532099776085 - ], - [ - 173.53100184988327, - -35.384845445857096 - ], - [ - 173.5030885163694, - -35.37450181515446 - ], - [ - 173.48420596722764, - -35.3871081150733 - ], - [ - 173.45177724152765, - -35.40262356112726 - ], - [ - 173.42181145702008, - -35.3977749842354 - ], - [ - 173.39923449608972, - -35.41167423799207 - ], - [ - 173.4074443000644, - -35.42654320712711 - ], - [ - 173.38856175092266, - -35.43300797631626 - ], - [ - 173.38733028032644, - -35.4478769454513 - ], - [ - 173.3770680253581, - -35.457574099235025 - ], - [ - 173.37419459396696, - -35.47244306837007 - ], - [ - 173.38404635873658, - -35.48569584520783 - ], - [ - 173.37050018217838, - -35.495716237451006 - ], - [ - 173.36926871158215, - -35.522868268045436 - ], - [ - 173.347923221248, - -35.51511054501846 - ], - [ - 173.2654146913025, - -35.42040167639742 - ], - [ - 173.2362698871924, - -35.39357288426245 - ], - [ - 173.215334887057, - -35.37902715358686 - ], - [ - 173.20876704387726, - -35.364481422911275 - ], - [ - 173.1874215535431, - -35.34573359226275 - ], - [ - 173.17962223976716, - -35.3308646231277 - ], - [ - 173.15540331804186, - -35.30371259253327 - ], - [ - 173.16361312201653, - -35.29369220029009 - ], - [ - 173.12379557273934, - -35.25231767747954 - ], - [ - 173.05606468994827, - -35.19510447015556 - ], - [ - 173.06016959193562, - -35.167629201101676 - ], - [ - 173.07166331750017, - -35.163103862669274 - ], - [ - 173.12092214134822, - -35.179265785642144 - ], - [ - 173.13611027870138, - -35.17667987796649 - ], - [ - 173.1545823376444, - -35.16181090883144 - ], - [ - 173.16853900440134, - -35.1362750705343 - ], - [ - 173.176748808376, - -35.09328435542646 - ], - [ - 173.1742858671836, - -35.063546417156374 - ], - [ - 173.16771802400388, - -35.03704086348086 - ], - [ - 173.15088792585578, - -34.99695929450814 - ], - [ - 173.12584802373303, - -34.95526153323812 - ], - [ - 173.09136684703938, - -34.90709900277896 - ], - [ - 173.06016959193562, - -34.868633626103524 - ], - [ - 172.9435903754952, - -34.734812903888134 - ], - [ - 172.90418331641678, - -34.69311514261812 - ], - [ - 172.8873532182687, - -34.669195496618265 - ], - [ - 172.8512300807801, - -34.630730119942825 - ], - [ - 172.79047753136751, - -34.57513310491615 - ], - [ - 172.7321879231473, - -34.52955648213264 - ], - [ - 172.7198732171853, - -34.53084943597047 - ], - [ - 172.70140115824228, - -34.52115228218675 - ], - [ - 172.70263262883847, - -34.50563683613279 - ], - [ - 172.689496942479, - -34.48979815161937 - ], - [ - 172.6702039031385, - -34.487212243943716 - ], - [ - 172.6517318441955, - -34.47622213632216 - ], - [ - 172.67225635413217, - -34.458767259511454 - ], - [ - 172.67718223651698, - -34.44066590578184 - ], - [ - 172.6738983149271, - -34.42644341356571 - ], - [ - 172.70263262883847, - -34.42612017510625 - ], - [ - 172.71576831519795, - -34.43549409043052 - ], - [ - 172.74614458990425, - -34.43743352118726 - ], - [ - 172.7917090019637, - -34.453595444160136 - ], - [ - 172.82126429627255, - -34.45100953648448 - ], - [ - 172.8512300807801, - -34.43420113659269 - ], - [ - 172.8643657671396, - -34.41448359056578 - ], - [ - 172.8848902770763, - -34.419655405917105 - ], - [ - 172.8996679242307, - -34.4151300674847 - ], - [ - 172.9411274343028, - -34.42708989048462 - ], - [ - 172.98258694437493, - -34.419978644376556 - ], - [ - 172.99038625815086, - -34.40349348294423 - ], - [ - 173.0113212582863, - -34.392826613782134 - ], - [ - 173.03184576822298, - -34.39832166759291 - ], - [ - 173.0453919447812, - -34.41092796751175 - ], - [ - 173.01050027788884, - -34.424503982808965 - ], - [ - 173.00475341510656, - -34.43872647502509 - ], - [ - 173.00023802292048, - -34.483979859349134 - ], - [ - 173.0051639053053, - -34.508545982267904 - ], - [ - 172.987102336561, - -34.519859328348915 - ], - [ - 172.96986174821419, - -34.516626943754346 - ], - [ - 172.97232468940658, - -34.494646728511235 - ], - [ - 172.93702253231547, - -34.50692978997062 - ], - [ - 172.92429733615472, - -34.49141434391666 - ], - [ - 172.9119826301927, - -34.501757974619295 - ], - [ - 172.92060292436614, - -34.517273420673256 - ], - [ - 172.90993017919905, - -34.528910005213724 - ], - [ - 172.89638400264084, - -34.528586766754266 - ], - [ - 172.89556302224335, - -34.54345573588931 - ], - [ - 172.91239312039144, - -34.55056698199738 - ], - [ - 172.9275812577446, - -34.52923324367318 - ], - [ - 172.94030645390535, - -34.531172674429925 - ], - [ - 172.92799174794334, - -34.56349652037568 - ], - [ - 172.9374330225142, - -34.56608242805133 - ], - [ - 172.95097919907244, - -34.550890220456836 - ], - [ - 172.97355616000277, - -34.571900720321565 - ], - [ - 172.95713655205344, - -34.57577958183506 - ], - [ - 172.95631557165598, - -34.5861232125377 - ], - [ - 172.97684008159266, - -34.598729512456536 - ], - [ - 172.987102336561, - -34.5731936741594 - ], - [ - 172.95959949324583, - -34.5473345974028 - ], - [ - 172.95508410105975, - -34.53472829748396 - ], - [ - 172.96986174821419, - -34.52567762061915 - ], - [ - 172.99120723854833, - -34.535374774402875 - ], - [ - 172.9957226307344, - -34.571254243402656 - ], - [ - 173.0113212582863, - -34.621032966159106 - ], - [ - 173.02897233683186, - -34.66079129667237 - ], - [ - 173.0585276311407, - -34.702812296401845 - ], - [ - 173.08315704306472, - -34.721236888590916 - ], - [ - 173.11681723936087, - -34.737075573104335 - ], - [ - 173.12379557273934, - -34.752914257617746 - ], - [ - 173.14062567088743, - -34.76745998829334 - ], - [ - 173.14924596506086, - -34.782328957428376 - ], - [ - 173.16648655340768, - -34.78879372661753 - ], - [ - 173.17510684758108, - -34.802692980374204 - ], - [ - 173.15540331804186, - -34.82402671869839 - ], - [ - 173.1377522394963, - -34.81239013415792 - ], - [ - 173.12625851393176, - -34.78168248050947 - ], - [ - 173.10203959220647, - -34.78103600359055 - ], - [ - 173.11845920015583, - -34.80140002653637 - ], - [ - 173.11969067075202, - -34.81497604183358 - ], - [ - 173.13734174929758, - -34.82596614945514 - ], - [ - 173.15540331804186, - -34.82596614945514 - ], - [ - 173.16361312201653, - -34.8482696031577 - ], - [ - 173.1985047889089, - -34.870573056860266 - ], - [ - 173.22806008321774, - -34.88059344910345 - ], - [ - 173.2666461618987, - -34.88350259523857 - ], - [ - 173.2810133188544, - -34.89223003364392 - ], - [ - 173.27896086786072, - -34.90548281048167 - ], - [ - 173.2518685147443, - -34.93101864877882 - ], - [ - 173.23873282838483, - -34.93554398721122 - ], - [ - 173.24776361275696, - -34.95752420245432 - ], - [ - 173.2444796911671, - -34.97627203310286 - ], - [ - 173.2699300834886, - -34.974979079265026 - ], - [ - 173.26910910309113, - -34.99922196372434 - ], - [ - 173.2929175346177, - -34.97982765615689 - ], - [ - 173.29209655422022, - -34.96431221010293 - ], - [ - 173.33314557409358, - -34.96495868702185 - ], - [ - 173.3343770446898, - -34.954291817859755 - ], - [ - 173.31549449554802, - -34.90871519507625 - ], - [ - 173.30071684839362, - -34.898048325914154 - ], - [ - 173.2859392012392, - -34.86313857229275 - ], - [ - 173.34258684866447, - -34.85602732618468 - ], - [ - 173.37050018217838, - -34.84665341086041 - ], - [ - 173.3963610646986, - -34.82370348023893 - ], - [ - 173.38938273132013, - -34.80172326499583 - ], - [ - 173.40785479026314, - -34.7942887804283 - ], - [ - 173.42099047662262, - -34.83372387248212 - ], - [ - 173.4415149865593, - -34.8353400647794 - ], - [ - 173.4608080258998, - -34.846330172400954 - ], - [ - 173.45957655530358, - -34.86087590307655 - ], - [ - 173.44603037874538, - -34.863461810752206 - ], - [ - 173.4131911628467, - -34.88123992602236 - ], - [ - 173.37870998615304, - -34.87671458758996 - ], - [ - 173.36926871158215, - -34.89643213361687 - ], - [ - 173.37132116257584, - -34.914210248887024 - ], - [ - 173.38158341754416, - -34.94006932564362 - ], - [ - 173.3951295941024, - -34.95752420245432 - ], - [ - 173.41770655503274, - -34.97756498694069 - ], - [ - 173.4328946923859, - -34.98564594842713 - ], - [ - 173.45547165331627, - -34.984352994589294 - ], - [ - 173.49569969279216, - -34.9911410022379 - ], - [ - 173.5154032223314, - -34.98984804840008 - ], - [ - 173.55850469319844, - -34.99922196372434 - ], - [ - 173.5507053794225, - -34.97821146385961 - ], - [ - 173.53715920286427, - -34.96722135623805 - ], - [ - 173.52730743809468, - -34.943624948697654 - ], - [ - 173.55522077160856, - -34.92875597956261 - ], - [ - 173.55727322260225, - -34.91614967964377 - ], - [ - 173.58436557571866, - -34.938776371805794 - ], - [ - 173.59996420327056, - -34.931988364157185 - ], - [ - 173.62172018380343, - -34.938776371805794 - ], - [ - 173.6442971447338, - -34.96657487931913 - ], - [ - 173.67015802725405, - -34.961403063967815 - ], - [ - 173.690272046992, - -34.947503810211145 - ], - [ - 173.70587067454386, - -34.953968579400296 - ], - [ - 173.70463920394766, - -34.97077697929208 - ], - [ - 173.71531194911475, - -34.98273680229201 - ], - [ - 173.7173644001084, - -34.99598957912976 - ], - [ - 173.73665743944892, - -34.99243395607573 - ], - [ - 173.75430851799447, - -34.99792900988651 - ], - [ - 173.73870989044258, - -35.038980294237604 - ], - [ - 173.7132594981211, - -35.045121824967296 - ], - [ - 173.70792312553755, - -35.0557886941294 - ], - [ - 173.72146930209576, - -35.074536524777926 - ], - [ - 173.73829940024385, - -35.07615271707522 - ], - [ - 173.73953087084004, - -35.05255630953482 - ], - [ - 173.7645707729628, - -35.02346484818365 - ], - [ - 173.75512949839194, - -35.01150502518372 - ], - [ - 173.7998729300539, - -35.0018078714 - ], - [ - 173.8117771458172, - -34.99146424069736 - ], - [ - 173.82819675376655, - -35.001484632940546 - ], - [ - 173.83927998913236, - -34.993403671454104 - ], - [ - 173.85364714608804, - -35.0018078714 - ], - [ - 173.8639094010564, - -35.02120217896745 - ], - [ - 173.88812832278168, - -35.01829303283233 - ], - [ - 173.8971591071538, - -35.008919117508064 - ], - [ - 173.91357871510317, - -35.0344549558052 - ], - [ - 173.94149204861708, - -35.053849263372655 - ], - [ - 173.9275353818601, - -35.06613232483203 - ], - [ - 173.94395498980947, - -35.10265827075073 - ], - [ - 173.96776342133603, - -35.11946667064252 - ], - [ - 173.99608724504867, - -35.11526457066957 - ], - [ - 174.00060263723475, - -35.12140610139926 - ], - [ - 174.07777479459668, - -35.11267866299391 - ], - [ - 174.0888580299625, - -35.122375816777634 - ], - [ - 174.0999412653283, - -35.14403279356128 - ], - [ - 174.1262126380473, - -35.157932047317956 - ], - [ - 174.12333920665614, - -35.17118482415571 - ], - [ - 174.0851636181739, - -35.17797283180432 - ], - [ - 174.05683979446127, - -35.17894254718269 - ], - [ - 174.05807126505746, - -35.169568631858425 - ], - [ - 174.04288312770433, - -35.1553461396423 - ], - [ - 174.03221038253724, - -35.160841193453074 - ], - [ - 174.00675999021576, - -35.141770124345086 - ], - [ - 173.98746695087524, - -35.14758841661532 - ], - [ - 173.9841830292854, - -35.15728557039904 - ], - [ - 174.01373832359423, - -35.166982724182766 - ], - [ - 174.03138940213978, - -35.18670027020967 - ], - [ - 173.99608724504867, - -35.19801361629068 - ], - [ - 174.0026550882284, - -35.20706429315549 - ], - [ - 174.0342628335309, - -35.20932696237169 - ], - [ - 174.051092931679, - -35.20480162393929 - ], - [ - 174.0597132258524, - -35.230983939155344 - ], - [ - 174.0827006769815, - -35.24779233904713 - ], - [ - 174.0851636181739, - -35.266540169695666 - ], - [ - 174.09870979473212, - -35.29401543874955 - ], - [ - 174.1253916576498, - -35.31308650785754 - ], - [ - 174.1459161675865, - -35.3179350847494 - ], - [ - 174.19517499143456, - -35.312116792479166 - ], - [ - 174.18901763845355, - -35.30209640023598 - ], - [ - 174.12703361844476, - -35.31082383864134 - ], - [ - 174.11471891248274, - -35.28658095418203 - ], - [ - 174.13278048122703, - -35.27753027731722 - ], - [ - 174.12785459884222, - -35.26621693123621 - ], - [ - 174.1130769516878, - -35.25878244666868 - ], - [ - 174.11759234387387, - -35.246499385209304 - ], - [ - 174.15864136374725, - -35.264923977398375 - ], - [ - 174.17834489328646, - -35.26557045431729 - ], - [ - 174.20707920719784, - -35.275914085019934 - ], - [ - 174.20954214839023, - -35.25393386977682 - ], - [ - 174.25428558005223, - -35.260398638965974 - ], - [ - 174.24730724667376, - -35.239711377560695 - ], - [ - 174.26536881541804, - -35.22872126993914 - ], - [ - 174.29081920773953, - -35.219993831533785 - ], - [ - 174.30231293330408, - -35.19962980858797 - ], - [ - 174.29328214893192, - -35.18637703175021 - ], - [ - 174.31257518827243, - -35.179265785642144 - ], - [ - 174.33351018840784, - -35.18023550102052 - ], - [ - 174.33925705119012, - -35.19284180093936 - ], - [ - 174.31996401184963, - -35.19542770861502 - ], - [ - 174.2990290117142, - -35.22322621612837 - ], - [ - 174.30970175688128, - -35.23615575450666 - ], - [ - 174.29369263913065, - -35.26104511588488 - ], - [ - 174.29122969793826, - -35.276237323479386 - ], - [ - 174.30313391370154, - -35.2875506695604 - ], - [ - 174.31093322747748, - -35.305328784830564 - ] - ] - ], - [ - [ - [ - 172.14806037034913, - -34.14393299999988 - ], - [ - 172.14067154677193, - -34.17108503059431 - ], - [ - 172.1271253702137, - -34.15233719994578 - ], - [ - 172.14806037034913, - -34.14393299999988 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2134, - "NAME_1": "Northland", - "ID_2": 25210, - "NAME_2": "Kaipara", - "VARNAME_2": "", - "HASC_2": "NZ.NO.KP", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 173.77319106713622, - -35.613375036693526 - ], - [ - 173.76703371415522, - -35.63697144423392 - ], - [ - 173.7801694005147, - -35.65474955950408 - ], - [ - 173.7740120475337, - -35.67834596704448 - ], - [ - 173.77483302793115, - -35.74299365893597 - ], - [ - 173.80397783204126, - -35.75042814350349 - ], - [ - 173.829017734164, - -35.73200355131441 - ], - [ - 173.86103596966524, - -35.733296505152246 - ], - [ - 173.8700667540374, - -35.71422543604426 - ], - [ - 173.88935979337788, - -35.708407143774025 - ], - [ - 173.89264371496776, - -35.73458945899007 - ], - [ - 173.91193675430824, - -35.73943803588194 - ], - [ - 173.93081930345, - -35.733619743611705 - ], - [ - 173.98213057829173, - -35.75075138196295 - ], - [ - 173.99198234306132, - -35.7746710279628 - ], - [ - 174.03713626492205, - -35.79374209707079 - ], - [ - 174.0560188140638, - -35.787923804800556 - ], - [ - 174.06258665724354, - -35.79665124320591 - ], - [ - 174.0814692063853, - -35.79083295093567 - ], - [ - 174.09419440254604, - -35.79794419704374 - ], - [ - 174.09460489274477, - -35.819277935367936 - ], - [ - 174.1044566575144, - -35.84319758136778 - ], - [ - 174.1397588146055, - -35.85935950434066 - ], - [ - 174.15289450096498, - -35.87713761961082 - ], - [ - 174.15987283434345, - -35.90719879634036 - ], - [ - 174.1377063636118, - -35.919481857799745 - ], - [ - 174.10609861830932, - -35.92917901158347 - ], - [ - 174.10281469671946, - -35.935320542313164 - ], - [ - 174.1192343046688, - -35.95730075755627 - ], - [ - 174.12580214784853, - -35.97701830358318 - ], - [ - 174.11636087327767, - -35.99576613423171 - ], - [ - 174.12949655963715, - -36.01354424950187 - ], - [ - 174.15494695195864, - -36.00578652647489 - ], - [ - 174.16726165792065, - -35.9912407957993 - ], - [ - 174.18368126587, - -36.00255414188032 - ], - [ - 174.2091316581915, - -35.99479641885333 - ], - [ - 174.297797541118, - -35.94598741147526 - ], - [ - 174.31380665886863, - -35.95730075755627 - ], - [ - 174.3330996982091, - -35.96214933444813 - ], - [ - 174.32406891383698, - -36.00255414188032 - ], - [ - 174.33104724721545, - -36.032938557069315 - ], - [ - 174.3437724433762, - -36.02905969555583 - ], - [ - 174.36634940430656, - -36.059767349204286 - ], - [ - 174.38564244364704, - -36.05394905693405 - ], - [ - 174.3983676398078, - -36.06073706458266 - ], - [ - 174.39221028682678, - -36.0733433645015 - ], - [ - 174.40534597318626, - -36.080131372150106 - ], - [ - 174.44393205186725, - -36.08982852593383 - ], - [ - 174.47553979716974, - -36.080131372150106 - ], - [ - 174.49811675810008, - -36.07851517985282 - ], - [ - 174.5358818563836, - -36.066555356852895 - ], - [ - 174.5490175427431, - -36.0733433645015 - ], - [ - 174.57446793506458, - -36.06526240301506 - ], - [ - 174.58349871943673, - -36.05685820306917 - ], - [ - 174.58349871943673, - -36.04231247239358 - ], - [ - 174.5904770528152, - -36.04716104928545 - ], - [ - 174.59376097440506, - -36.0733433645015 - ], - [ - 174.59129803321267, - -36.098232725879726 - ], - [ - 174.6052546999696, - -36.095970056663525 - ], - [ - 174.6196218569253, - -36.12182913342012 - ], - [ - 174.589245582219, - -36.15803184087936 - ], - [ - 174.55763783691648, - -36.17871910228463 - ], - [ - 174.53177695439626, - -36.186476825311615 - ], - [ - 174.5223356798254, - -36.2055478944196 - ], - [ - 174.52890352300514, - -36.21459857128441 - ], - [ - 174.49975871889504, - -36.22849782504108 - ], - [ - 174.47718175796467, - -36.23011401733837 - ], - [ - 174.47348734617606, - -36.24175060187884 - ], - [ - 174.46938244418874, - -36.256942809473344 - ], - [ - 174.4652775422014, - -36.26017519406791 - ], - [ - 174.4578887186242, - -36.256942809473344 - ], - [ - 174.45542577743177, - -36.25144775566257 - ], - [ - 174.45008940484826, - -36.25371042487877 - ], - [ - 174.4435215616685, - -36.26017519406791 - ], - [ - 174.40493548298753, - -36.27892302471645 - ], - [ - 174.3950837182179, - -36.288943416959626 - ], - [ - 174.37455920828123, - -36.27601387858133 - ], - [ - 174.35526616894074, - -36.293468755392034 - ], - [ - 174.35690812973567, - -36.308660962986536 - ], - [ - 174.33966754138885, - -36.31706516293243 - ], - [ - 174.3232479334395, - -36.30833772452708 - ], - [ - 174.3113437176762, - -36.31318630141894 - ], - [ - 174.2965660705218, - -36.28958989387854 - ], - [ - 174.27768352138006, - -36.28571103236506 - ], - [ - 174.27029469780285, - -36.261468147905745 - ], - [ - 174.3051863646952, - -36.24272031725721 - ], - [ - 174.32735283542684, - -36.26340757866249 - ], - [ - 174.33843607079265, - -36.259528717149 - ], - [ - 174.32242695304203, - -36.23334640193295 - ], - [ - 174.3232479334395, - -36.2162147635817 - ], - [ - 174.2965660705218, - -36.21233590206821 - ], - [ - 174.26660028601424, - -36.18162824841975 - ], - [ - 174.2551065604497, - -36.18421415609541 - ], - [ - 174.23499254071174, - -36.170961379257655 - ], - [ - 174.23294008971806, - -36.15576917166315 - ], - [ - 174.2202148935573, - -36.15479945628478 - ], - [ - 174.21652048176873, - -36.14057696406866 - ], - [ - 174.1955854816333, - -36.13540514871733 - ], - [ - 174.1955854816333, - -36.16708251774416 - ], - [ - 174.20954214839023, - -36.15835507933881 - ], - [ - 174.22883518773074, - -36.1706381407982 - ], - [ - 174.21693097196746, - -36.18292120225758 - ], - [ - 174.23540303091048, - -36.197790171392626 - ], - [ - 174.26331636442436, - -36.195850740635876 - ], - [ - 174.2735786193927, - -36.21718447896007 - ], - [ - 174.28671430575218, - -36.21459857128441 - ], - [ - 174.29246116853446, - -36.23593230960861 - ], - [ - 174.2735786193927, - -36.234316117311316 - ], - [ - 174.24853871726995, - -36.250154801824735 - ], - [ - 174.2382764623016, - -36.263730817121946 - ], - [ - 174.21364705037757, - -36.25823576331117 - ], - [ - 174.20625822680037, - -36.2420738403383 - ], - [ - 174.18203930507508, - -36.23302316347349 - ], - [ - 174.16767214811938, - -36.215891525122245 - ], - [ - 174.15412597156117, - -36.21459857128441 - ], - [ - 174.11964479486753, - -36.16999166387928 - ], - [ - 174.09912028493085, - -36.16514308698742 - ], - [ - 174.06751253962835, - -36.173547286933314 - ], - [ - 174.04411459830052, - -36.166759279284705 - ], - [ - 174.02523204915877, - -36.141546679447025 - ], - [ - 173.98623548027905, - -36.12150589496066 - ], - [ - 173.98172008809297, - -36.127647425690355 - ], - [ - 174.01045440200434, - -36.14768821017672 - ], - [ - 174.03262087273598, - -36.18098177150084 - ], - [ - 174.06053420624988, - -36.19455778679805 - ], - [ - 174.1044566575144, - -36.247568894149076 - ], - [ - 174.1044566575144, - -36.25532661717605 - ], - [ - 174.1315490106308, - -36.26017519406791 - ], - [ - 174.15699940295232, - -36.27730683241916 - ], - [ - 174.15289450096498, - -36.29152932463529 - ], - [ - 174.16110430493964, - -36.311570109121654 - ], - [ - 174.16931410891434, - -36.31447925525677 - ], - [ - 174.18080783447888, - -36.33613623204042 - ], - [ - 174.18203930507508, - -36.36425797801322 - ], - [ - 174.16685116772192, - -36.37848047022935 - ], - [ - 174.14427420679158, - -36.390440293229275 - ], - [ - 174.11882381447006, - -36.395288870121135 - ], - [ - 174.08393214757768, - -36.39496563166168 - ], - [ - 174.05314538267265, - -36.39981420855354 - ], - [ - 174.03713626492205, - -36.386238193256325 - ], - [ - 174.0120963627993, - -36.344863670445775 - ], - [ - 174.01373832359423, - -36.315772209094604 - ], - [ - 174.00060263723475, - -36.274720924743505 - ], - [ - 173.9722788135221, - -36.227204871203256 - ], - [ - 173.93492420543734, - -36.175163479230605 - ], - [ - 173.8347645969463, - -36.05621172615025 - ], - [ - 173.73337351785904, - -35.942108549961766 - ], - [ - 173.68165175281857, - -35.885218581097256 - ], - [ - 173.57246135995538, - -35.76917597415202 - ], - [ - 173.5543997912111, - -35.75915558190884 - ], - [ - 173.54126410485162, - -35.736205651287364 - ], - [ - 173.48461645742637, - -35.67640653628773 - ], - [ - 173.50267802617066, - -35.668325574801294 - ], - [ - 173.51211930074152, - -35.64860802877439 - ], - [ - 173.54742145783263, - -35.654103082585166 - ], - [ - 173.55398930101236, - -35.663153759449976 - ], - [ - 173.58888096790474, - -35.6576587056392 - ], - [ - 173.60817400724522, - -35.66283052099052 - ], - [ - 173.60735302684776, - -35.608849698261125 - ], - [ - 173.6709790076515, - -35.61143560593678 - ], - [ - 173.67426292924137, - -35.60497083674763 - ], - [ - 173.70915459613374, - -35.61078912901787 - ], - [ - 173.73460498845523, - -35.60335464445034 - ], - [ - 173.7633393023666, - -35.600122259855766 - ], - [ - 173.77319106713622, - -35.613375036693526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2134, - "NAME_1": "Northland", - "ID_2": 25212, - "NAME_2": "Whangarei", - "VARNAME_2": "", - "HASC_2": "NZ.NO.WN", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 174.69761499468473, - -35.95180570374549 - ], - [ - 174.7288122497885, - -35.95762399601573 - ], - [ - 174.72675979879483, - -35.97249296515077 - ], - [ - 174.7013094064733, - -35.966997911339995 - ], - [ - 174.69761499468473, - -35.95180570374549 - ] - ] - ], - [ - [ - [ - 174.31093322747748, - -35.305328784830564 - ], - [ - 174.35157175715213, - -35.33248081542499 - ], - [ - 174.35526616894074, - -35.346056830722205 - ], - [ - 174.37702214947362, - -35.34508711534383 - ], - [ - 174.3815375416597, - -35.364481422911275 - ], - [ - 174.37045430629388, - -35.3787039151274 - ], - [ - 174.35896058072933, - -35.37450181515446 - ], - [ - 174.3606025415243, - -35.35769341526267 - ], - [ - 174.33679410999773, - -35.341531492289796 - ], - [ - 174.3376150903952, - -35.36351170753291 - ], - [ - 174.34459342377366, - -35.39066373812733 - ], - [ - 174.36511793371034, - -35.41296719182989 - ], - [ - 174.36511793371034, - -35.436886837829746 - ], - [ - 174.3889263652369, - -35.4326847378568 - ], - [ - 174.3971361692116, - -35.44173541472161 - ], - [ - 174.42792293411662, - -35.43817979166758 - ], - [ - 174.42997538511028, - -35.45725086077557 - ], - [ - 174.45008940484826, - -35.466624776099835 - ], - [ - 174.45542577743177, - -35.489574706721314 - ], - [ - 174.47307685597733, - -35.4995950989645 - ], - [ - 174.46117264021404, - -35.51058520658605 - ], - [ - 174.45994116961785, - -35.531918944910245 - ], - [ - 174.475129306971, - -35.55551535245064 - ], - [ - 174.49729577770262, - -35.56101040626142 - ], - [ - 174.51494685624817, - -35.55874773704521 - ], - [ - 174.54162871916589, - -35.59107158299096 - ], - [ - 174.538344797576, - -35.61272855977461 - ], - [ - 174.54286018976208, - -35.631799628882604 - ], - [ - 174.53382940538995, - -35.642789736504156 - ], - [ - 174.51453636604944, - -35.62792076736911 - ], - [ - 174.5005796992925, - -35.64182002112578 - ], - [ - 174.51166293465832, - -35.65507279796354 - ], - [ - 174.5079685228697, - -35.67543682090936 - ], - [ - 174.5186412680368, - -35.71584162834154 - ], - [ - 174.54286018976208, - -35.71034657453077 - ], - [ - 174.54737558194816, - -35.719720489855035 - ], - [ - 174.5284930328064, - -35.72780145134147 - ], - [ - 174.54080773876842, - -35.73685212820628 - ], - [ - 174.5539434251279, - -35.73038735901713 - ], - [ - 174.55763783691648, - -35.776610458719546 - ], - [ - 174.54983852314055, - -35.79083295093567 - ], - [ - 174.56913156248103, - -35.83188423528677 - ], - [ - 174.57980430764812, - -35.838025766016465 - ], - [ - 174.5917085234114, - -35.85774331204337 - ], - [ - 174.55599587612156, - -35.860975696637944 - ], - [ - 174.5334189151912, - -35.85483416590825 - ], - [ - 174.53670283678107, - -35.84352081982724 - ], - [ - 174.52644058181272, - -35.826712419935454 - ], - [ - 174.49729577770262, - -35.82800537377328 - ], - [ - 174.50386362088238, - -35.81378288155715 - ], - [ - 174.4968852875039, - -35.79665124320591 - ], - [ - 174.46732999319505, - -35.790186474016764 - ], - [ - 174.44762646365584, - -35.77984284331412 - ], - [ - 174.42176558113562, - -35.78469142020598 - ], - [ - 174.38605293384578, - -35.760771774206134 - ], - [ - 174.36840185530022, - -35.77370131258443 - ], - [ - 174.35649763953694, - -35.77337807412497 - ], - [ - 174.34746685516478, - -35.76012529728722 - ], - [ - 174.32981577661923, - -35.76885273569257 - ], - [ - 174.33474165900404, - -35.8134596430977 - ], - [ - 174.35157175715213, - -35.82768213531382 - ], - [ - 174.35813960033187, - -35.81830821998956 - ], - [ - 174.36183401212048, - -35.789863235557306 - ], - [ - 174.3766116592749, - -35.796004766287 - ], - [ - 174.36963332589642, - -35.81184345080041 - ], - [ - 174.39877813000652, - -35.81475259693553 - ], - [ - 174.43325930670017, - -35.8286518506922 - ], - [ - 174.4546047970343, - -35.8179849815301 - ], - [ - 174.47348734617606, - -35.83608633525972 - ], - [ - 174.50222166008743, - -35.83640957371918 - ], - [ - 174.4726663657786, - -35.87002637350275 - ], - [ - 174.46240411081027, - -35.905905842502534 - ], - [ - 174.46445656180393, - -35.94921979606983 - ], - [ - 174.48128665995202, - -35.99027108042093 - ], - [ - 174.5079685228697, - -36.02970617247474 - ], - [ - 174.5174097974406, - -36.03132236477203 - ], - [ - 174.54162871916589, - -36.048777241582734 - ], - [ - 174.56954205267976, - -36.048454003123275 - ], - [ - 174.58349871943673, - -36.04231247239358 - ], - [ - 174.58349871943673, - -36.05685820306917 - ], - [ - 174.57446793506458, - -36.06526240301506 - ], - [ - 174.5490175427431, - -36.0733433645015 - ], - [ - 174.5358818563836, - -36.066555356852895 - ], - [ - 174.49811675810008, - -36.07851517985282 - ], - [ - 174.47553979716974, - -36.080131372150106 - ], - [ - 174.44393205186725, - -36.08982852593383 - ], - [ - 174.40534597318626, - -36.080131372150106 - ], - [ - 174.39221028682678, - -36.0733433645015 - ], - [ - 174.3983676398078, - -36.06073706458266 - ], - [ - 174.38564244364704, - -36.05394905693405 - ], - [ - 174.36634940430656, - -36.059767349204286 - ], - [ - 174.3437724433762, - -36.02905969555583 - ], - [ - 174.33104724721545, - -36.032938557069315 - ], - [ - 174.32406891383698, - -36.00255414188032 - ], - [ - 174.3330996982091, - -35.96214933444813 - ], - [ - 174.31380665886863, - -35.95730075755627 - ], - [ - 174.297797541118, - -35.94598741147526 - ], - [ - 174.2091316581915, - -35.99479641885333 - ], - [ - 174.18368126587, - -36.00255414188032 - ], - [ - 174.16726165792065, - -35.9912407957993 - ], - [ - 174.15494695195864, - -36.00578652647489 - ], - [ - 174.12949655963715, - -36.01354424950187 - ], - [ - 174.11636087327767, - -35.99576613423171 - ], - [ - 174.12580214784853, - -35.97701830358318 - ], - [ - 174.1192343046688, - -35.95730075755627 - ], - [ - 174.10281469671946, - -35.935320542313164 - ], - [ - 174.10609861830932, - -35.92917901158347 - ], - [ - 174.1377063636118, - -35.919481857799745 - ], - [ - 174.15987283434345, - -35.90719879634036 - ], - [ - 174.15289450096498, - -35.87713761961082 - ], - [ - 174.1397588146055, - -35.85935950434066 - ], - [ - 174.1044566575144, - -35.84319758136778 - ], - [ - 174.09460489274477, - -35.819277935367936 - ], - [ - 174.09419440254604, - -35.79794419704374 - ], - [ - 174.0814692063853, - -35.79083295093567 - ], - [ - 174.06258665724354, - -35.79665124320591 - ], - [ - 174.0560188140638, - -35.787923804800556 - ], - [ - 174.03713626492205, - -35.79374209707079 - ], - [ - 173.99198234306132, - -35.7746710279628 - ], - [ - 173.98213057829173, - -35.75075138196295 - ], - [ - 173.93081930345, - -35.733619743611705 - ], - [ - 173.91193675430824, - -35.73943803588194 - ], - [ - 173.89264371496776, - -35.73458945899007 - ], - [ - 173.88935979337788, - -35.708407143774025 - ], - [ - 173.8700667540374, - -35.71422543604426 - ], - [ - 173.86103596966524, - -35.733296505152246 - ], - [ - 173.829017734164, - -35.73200355131441 - ], - [ - 173.80397783204126, - -35.75042814350349 - ], - [ - 173.77483302793115, - -35.74299365893597 - ], - [ - 173.7740120475337, - -35.67834596704448 - ], - [ - 173.7801694005147, - -35.65474955950408 - ], - [ - 173.76703371415522, - -35.63697144423392 - ], - [ - 173.77319106713622, - -35.613375036693526 - ], - [ - 173.78263234170709, - -35.60529407520709 - ], - [ - 173.8240918517792, - -35.61983980588268 - ], - [ - 173.84010096952983, - -35.63115315196369 - ], - [ - 173.8495422441007, - -35.623072190477245 - ], - [ - 173.92630391126391, - -35.62177923663942 - ], - [ - 173.91973606808418, - -35.61272855977461 - ], - [ - 173.9419025388158, - -35.60076873677468 - ], - [ - 173.95462773497655, - -35.60787998288275 - ], - [ - 173.98007812729804, - -35.600122259855766 - ], - [ - 173.99567675484994, - -35.59010186761259 - ], - [ - 174.02112714717143, - -35.593334252207164 - ], - [ - 174.05930273565366, - -35.582020906126154 - ], - [ - 174.04945097088407, - -35.568768129288394 - ], - [ - 174.10035175552704, - -35.56424279085599 - ], - [ - 174.14181126559916, - -35.568121652369484 - ], - [ - 174.15125254017005, - -35.56004069088304 - ], - [ - 174.14796861858017, - -35.54484848328855 - ], - [ - 174.16028332454218, - -35.540969621775055 - ], - [ - 174.16356724613206, - -35.52416122188326 - ], - [ - 174.19517499143456, - -35.525454175721094 - ], - [ - 174.2140575405763, - -35.51995912191032 - ], - [ - 174.21364705037757, - -35.48828175288349 - ], - [ - 174.2296561681282, - -35.4782613606403 - ], - [ - 174.24812822707122, - -35.44076569934324 - ], - [ - 174.2637268546231, - -35.441412176262155 - ], - [ - 174.25715901144335, - -35.41135099953261 - ], - [ - 174.28835626654714, - -35.391633453505705 - ], - [ - 174.2879457763484, - -35.37029971518151 - ], - [ - 174.25305410945603, - -35.32181394626289 - ], - [ - 174.2686527370079, - -35.312116792479166 - ], - [ - 174.2842513645598, - -35.32343013856018 - ], - [ - 174.31093322747748, - -35.305328784830564 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2135, - "NAME_1": "Otago", - "ID_2": 25214, - "NAME_2": "Central Otago", - "VARNAME_2": "", - "HASC_2": "NZ.OT.CO", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 170.38500496678748, - -44.95011793812244 - ], - [ - 170.3804895746014, - -44.97403758412229 - ], - [ - 170.36119653526092, - -44.99052274555462 - ], - [ - 170.36489094704953, - -45.023493068419285 - ], - [ - 170.3743322216204, - -45.04353385290565 - ], - [ - 170.40676094732038, - -45.079736560364886 - ], - [ - 170.4203071238786, - -45.10430268328365 - ], - [ - 170.40758192771784, - -45.118848413959235 - ], - [ - 170.44042114361653, - -45.12660613698622 - ], - [ - 170.44986241818742, - -45.14664692147258 - ], - [ - 170.43015888864818, - -45.16345532136437 - ], - [ - 170.42482251606467, - -45.17638485974267 - ], - [ - 170.37638467261405, - -45.18996087503988 - ], - [ - 170.39649869235203, - -45.2125875672019 - ], - [ - 170.34929231949764, - -45.23683045166121 - ], - [ - 170.32876780956096, - -45.24264874393145 - ], - [ - 170.3246629075736, - -45.238123405499046 - ], - [ - 170.27088869153948, - -45.236183974742296 - ], - [ - 170.25570055418632, - -45.229072728634236 - ], - [ - 170.22778722067244, - -45.23683045166121 - ], - [ - 170.23025016186483, - -45.25881066690432 - ], - [ - 170.19535849497245, - -45.268184582228585 - ], - [ - 170.16949761245223, - -45.32636750493093 - ], - [ - 170.13337447496366, - -45.3531962970659 - ], - [ - 170.1399423181434, - -45.37970185074141 - ], - [ - 170.12023878860418, - -45.3965102506332 - ], - [ - 170.09643035707762, - -45.408793312092584 - ], - [ - 170.08370516091688, - -45.42333904276817 - ], - [ - 170.06892751376245, - -45.45566288871392 - ], - [ - 170.04224565084476, - -45.47441071936245 - ], - [ - 169.94454898354613, - -45.50123951149742 - ], - [ - 169.92648741480184, - -45.50059303457851 - ], - [ - 169.92895035599423, - -45.52257324982161 - ], - [ - 169.91991957162207, - -45.541644318929606 - ], - [ - 169.9088363362563, - -45.53905841125395 - ], - [ - 169.84603133585, - -45.55651328806465 - ], - [ - 169.8218124141247, - -45.56879634952403 - ], - [ - 169.83002221809937, - -45.57784702638884 - ], - [ - 169.81278162975258, - -45.61631240306428 - ], - [ - 169.80498231597662, - -45.64669681825328 - ], - [ - 169.76639623729565, - -45.69130372565841 - ], - [ - 169.76762770789185, - -45.70197059482051 - ], - [ - 169.7438192763653, - -45.714253656279894 - ], - [ - 169.75202908033995, - -45.723304333144696 - ], - [ - 169.72986260960835, - -45.71813251779338 - ], - [ - 169.72863113901215, - -45.707142410171826 - ], - [ - 169.69620241331216, - -45.7103747947664 - ], - [ - 169.68388770735015, - -45.69679877946919 - ], - [ - 169.6723939817856, - -45.72265785622579 - ], - [ - 169.67649888377295, - -45.72718319465819 - ], - [ - 169.65597437383624, - -45.77243657898224 - ], - [ - 169.63791280509196, - -45.77179010206332 - ], - [ - 169.59563231462238, - -45.78310344814433 - ], - [ - 169.58660153025025, - -45.80249775571178 - ], - [ - 169.5373427064022, - -45.816073771008995 - ], - [ - 169.52092309845284, - -45.797972417279375 - ], - [ - 169.49588319633008, - -45.7992653711172 - ], - [ - 169.48356849036807, - -45.78568935581999 - ], - [ - 169.4622230000339, - -45.791184409630766 - ], - [ - 169.45155025486682, - -45.76015351752285 - ], - [ - 169.41871103896813, - -45.72395081006361 - ], - [ - 169.41337466638458, - -45.70843536400966 - ], - [ - 169.4195320193656, - -45.69550582563136 - ], - [ - 169.36781025432512, - -45.687101625685465 - ], - [ - 169.3394864306125, - -45.69453611025298 - ], - [ - 169.31731995988088, - -45.689364294901665 - ], - [ - 169.25246250848093, - -45.69550582563136 - ], - [ - 169.23193799854425, - -45.67287913346934 - ], - [ - 169.21264495920377, - -45.66124254892887 - ], - [ - 169.1900679982734, - -45.65607073357754 - ], - [ - 169.199919763043, - -45.607908203118384 - ], - [ - 169.187605057081, - -45.59433218782117 - ], - [ - 169.21469741019743, - -45.575907595632096 - ], - [ - 169.19827780224807, - -45.55748300344302 - ], - [ - 169.18473162568986, - -45.532916880524255 - ], - [ - 169.2048456454278, - -45.51610848063246 - ], - [ - 169.19950927284427, - -45.50059303457851 - ], - [ - 169.17077495893292, - -45.46891566555168 - ], - [ - 169.18801554727972, - -45.458572034849034 - ], - [ - 169.18965750807467, - -45.44111715803833 - ], - [ - 169.21798133178729, - -45.433359435011354 - ], - [ - 169.22988554755057, - -45.40782359671421 - ], - [ - 169.21346593960124, - -45.38939900452514 - ], - [ - 169.19950927284427, - -45.39327786603862 - ], - [ - 169.1789847629076, - -45.3706511738766 - ], - [ - 169.16872250793924, - -45.33962028176869 - ], - [ - 169.15025044899622, - -45.338650566390314 - ], - [ - 169.11576927230257, - -45.319902735741785 - ], - [ - 169.1137168213089, - -45.29792252049867 - ], - [ - 169.0890874093849, - -45.27044725144479 - ], - [ - 169.03079780116468, - -45.30309433584999 - ], - [ - 168.9786655459255, - -45.36224697393071 - ], - [ - 168.94377387903313, - -45.41137921976824 - ], - [ - 168.92612280048758, - -45.45016783490314 - ], - [ - 168.90190387876228, - -45.46212765790307 - ], - [ - 168.87932691783192, - -45.45695584255175 - ], - [ - 168.87727446683826, - -45.43497562730864 - ], - [ - 168.86619123147244, - -45.43206648117352 - ], - [ - 168.84197230974715, - -45.44434954263291 - ], - [ - 168.81570093702817, - -45.43432915038972 - ], - [ - 168.79722887808515, - -45.43368267347081 - ], - [ - 168.78409319172567, - -45.408793312092584 - ], - [ - 168.79312397609783, - -45.3897222429846 - ], - [ - 168.78655613291807, - -45.362893450849626 - ], - [ - 168.7927134858991, - -45.349963912471324 - ], - [ - 168.81405897623324, - -45.34446885866055 - ], - [ - 168.83006809398387, - -45.32313512033635 - ], - [ - 168.82760515279145, - -45.30115490509325 - ], - [ - 168.84566672153574, - -45.26236628995835 - ], - [ - 168.8596233882927, - -45.25881066690432 - ], - [ - 168.86865417266483, - -45.23941635933687 - ], - [ - 168.85633946670282, - -45.22584034403966 - ], - [ - 168.8694751530623, - -45.21097137490462 - ], - [ - 168.84115132934969, - -45.17897076741833 - ], - [ - 168.85880240789524, - -45.14050539074289 - ], - [ - 168.84156181954842, - -45.11109069093226 - ], - [ - 168.8534660353117, - -45.08555485263512 - ], - [ - 168.8403303489522, - -45.06066549125689 - ], - [ - 168.86413878047875, - -45.048705668256964 - ], - [ - 168.87645348644077, - -45.06228168355418 - ], - [ - 168.90272485915975, - -45.07230207579736 - ], - [ - 168.94500534962933, - -45.06098872971635 - ], - [ - 168.98153897731663, - -45.06260492201364 - ], - [ - 169.02340897758748, - -45.05129157593262 - ], - [ - 169.04270201692796, - -45.0629281604731 - ], - [ - 169.0710258406406, - -45.05549367590557 - ], - [ - 169.05460623269124, - -45.037069083716496 - ], - [ - 169.06076358567225, - -45.02446278379766 - ], - [ - 169.0816985858077, - -45.018644491527425 - ], - [ - 169.09072937017982, - -44.99925018395997 - ], - [ - 169.05830064447986, - -44.96304747650074 - ], - [ - 169.0697943700444, - -44.937188399744144 - ], - [ - 169.06199505626844, - -44.928137722879335 - ], - [ - 169.07882515441653, - -44.91811733063615 - ], - [ - 169.07061535044187, - -44.90906665377134 - ], - [ - 169.11289584091145, - -44.89775330769033 - ], - [ - 169.1317783900532, - -44.86995480017699 - ], - [ - 169.14573505681014, - -44.86639917712296 - ], - [ - 169.1900679982734, - -44.87706604628505 - ], - [ - 169.22824358675564, - -44.86122736177164 - ], - [ - 169.24096878291638, - -44.846358392636596 - ], - [ - 169.27914437139864, - -44.83051970812318 - ], - [ - 169.32676123445177, - -44.767164970069516 - ], - [ - 169.35056966597833, - -44.75488190861013 - ], - [ - 169.39079770545422, - -44.76102343933982 - ], - [ - 169.4047543722112, - -44.75714457782633 - ], - [ - 169.38874525446056, - -44.73904322409671 - ], - [ - 169.39449211724283, - -44.72611368571842 - ], - [ - 169.37930397988967, - -44.71900243961035 - ], - [ - 169.38505084267194, - -44.706072901232055 - ], - [ - 169.36781025432512, - -44.67730467834034 - ], - [ - 169.38053545048587, - -44.6624357092053 - ], - [ - 169.37560956810108, - -44.64692026315134 - ], - [ - 169.40352290161496, - -44.63948577858382 - ], - [ - 169.37807250929347, - -44.60134364036784 - ], - [ - 169.3797144700884, - -44.583888763557134 - ], - [ - 169.37068368571627, - -44.563847979070765 - ], - [ - 169.39161868585168, - -44.55835292525999 - ], - [ - 169.4207634899618, - -44.561585309854564 - ], - [ - 169.48356849036807, - -44.54477690996278 - ], - [ - 169.50573496109968, - -44.549948725314096 - ], - [ - 169.51722868666423, - -44.52441288701696 - ], - [ - 169.5373427064022, - -44.50760448712517 - ], - [ - 169.54185809858825, - -44.484008079584775 - ], - [ - 169.5595091771338, - -44.445542702909336 - ], - [ - 169.57141339289709, - -44.45911871820655 - ], - [ - 169.59357986362872, - -44.46429053355787 - ], - [ - 169.61451486376416, - -44.45847224128764 - ], - [ - 169.65063800125273, - -44.46008843358492 - ], - [ - 169.67075202099068, - -44.48271512574694 - ], - [ - 169.65104849145146, - -44.49920028717928 - ], - [ - 169.6711625111894, - -44.5218269793413 - ], - [ - 169.67649888377295, - -44.53734242539525 - ], - [ - 169.6576163346312, - -44.56481769444914 - ], - [ - 169.66705760920206, - -44.5848584789355 - ], - [ - 169.68224574655522, - -44.59196972504357 - ], - [ - 169.72616819781973, - -44.602313355746205 - ], - [ - 169.73766192338428, - -44.57677751744907 - ], - [ - 169.7475136881539, - -44.56837331750317 - ], - [ - 169.76803819809058, - -44.591000009665194 - ], - [ - 169.77706898246274, - -44.611040794151556 - ], - [ - 169.7684486882893, - -44.63011186325955 - ], - [ - 169.78076339425132, - -44.64368787855676 - ], - [ - 169.80251937478423, - -44.64885969390808 - ], - [ - 169.8218124141247, - -44.66049627844855 - ], - [ - 169.85465163002343, - -44.66857723993499 - ], - [ - 169.85752506141455, - -44.66211247074584 - ], - [ - 169.90924682645502, - -44.64239492471893 - ], - [ - 169.91335172844234, - -44.64692026315134 - ], - [ - 169.960147611098, - -44.65079912466483 - ], - [ - 169.98395604262456, - -44.706072901232055 - ], - [ - 169.99134486620176, - -44.74356856252912 - ], - [ - 169.99955467017645, - -44.75261923939393 - ], - [ - 169.9979127093815, - -44.769750877745174 - ], - [ - 170.0102274153435, - -44.783326893042386 - ], - [ - 170.01063790554227, - -44.8227619850962 - ], - [ - 170.05948623919159, - -44.87674280782559 - ], - [ - 170.07877927853207, - -44.88837939236606 - ], - [ - 170.09889329827, - -44.91100608452809 - ], - [ - 170.08904153350042, - -44.91941028447398 - ], - [ - 170.1095660434371, - -44.942036976636004 - ], - [ - 170.13132202397, - -44.94720879198732 - ], - [ - 170.15923535748388, - -44.939451068960345 - ], - [ - 170.1814018282155, - -44.94462288431166 - ], - [ - 170.22286133828763, - -44.932986299771194 - ], - [ - 170.23394457365345, - -44.93557220744685 - ], - [ - 170.31686359379768, - -44.912622276825374 - ], - [ - 170.33369369194574, - -44.90227864612274 - ], - [ - 170.36653290784446, - -44.910036369149715 - ], - [ - 170.36201751565838, - -44.93395601514957 - ], - [ - 170.38500496678748, - -44.95011793812244 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2135, - "NAME_1": "Otago", - "ID_2": 25215, - "NAME_2": "Clutha", - "VARNAME_2": "", - "HASC_2": "NZ.OT.CL", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 169.75202908033995, - -45.723304333144696 - ], - [ - 169.75326055093618, - -45.734294440766256 - ], - [ - 169.77255359027666, - -45.745931025306724 - ], - [ - 169.76680672749438, - -45.75886056368502 - ], - [ - 169.79307810021334, - -45.768557717468745 - ], - [ - 169.80539280617535, - -45.782133732765956 - ], - [ - 169.82961172790064, - -45.76985067130657 - ], - [ - 169.85752506141455, - -45.76241618673905 - ], - [ - 169.86737682618417, - -45.75401198679316 - ], - [ - 169.90103702248032, - -45.761769709820136 - ], - [ - 169.91663565003222, - -45.74043597149595 - ], - [ - 169.91827761082715, - -45.722981094685245 - ], - [ - 169.95029584632837, - -45.71974871009067 - ], - [ - 169.98354555242582, - -45.7559514175499 - ], - [ - 170.01269035653593, - -45.75918380214448 - ], - [ - 170.01802672911947, - -45.77469924819844 - ], - [ - 170.05825476859536, - -45.78051754046867 - ], - [ - 170.05579182740297, - -45.854862386143886 - ], - [ - 170.02787849388906, - -45.86262010917087 - ], - [ - 170.0270575134916, - -45.91951007803538 - ], - [ - 170.05045545481943, - -45.93567200100826 - ], - [ - 170.0853471217118, - -45.92597484722453 - ], - [ - 170.10587163164848, - -45.94860153938655 - ], - [ - 170.1169548670143, - -45.95118744706221 - ], - [ - 170.13337447496366, - -45.96928880079183 - ], - [ - 170.1095660434371, - -45.981571862251215 - ], - [ - 170.1218807493991, - -45.995147877548426 - ], - [ - 170.15389898490034, - -45.99191549295385 - ], - [ - 170.1826332988117, - -46.02359286198069 - ], - [ - 170.1982319263636, - -46.06173500019667 - ], - [ - 170.20233682835092, - -46.09082646154784 - ], - [ - 170.18755918119652, - -46.13026155360165 - ], - [ - 170.1715500634459, - -46.153534722682586 - ], - [ - 170.12844859257885, - -46.18359589941213 - ], - [ - 170.07015898435864, - -46.20686906849307 - ], - [ - 170.00119663097138, - -46.24339501441176 - ], - [ - 170.0016071211701, - -46.251152737438744 - ], - [ - 169.9736937876562, - -46.27248647576293 - ], - [ - 169.93305525798158, - -46.285416014141234 - ], - [ - 169.92484545400688, - -46.298345552519535 - ], - [ - 169.88543839492846, - -46.31580042933024 - ], - [ - 169.83330613968926, - -46.33228559076257 - ], - [ - 169.79677251200195, - -46.346184844519236 - ], - [ - 169.78445780603994, - -46.3662256290056 - ], - [ - 169.78076339425132, - -46.39790299803243 - ], - [ - 169.79964594339307, - -46.414064921005306 - ], - [ - 169.79430957080953, - -46.429580367059266 - ], - [ - 169.79759349239941, - -46.45220705922129 - ], - [ - 169.78199486484752, - -46.46513659759958 - ], - [ - 169.70851711927418, - -46.48356118978866 - ], - [ - 169.7089276094729, - -46.50651112041014 - ], - [ - 169.6941499623185, - -46.51006674346417 - ], - [ - 169.68758211913877, - -46.522996281842474 - ], - [ - 169.6481750600603, - -46.54012792019372 - ], - [ - 169.62929251091856, - -46.53689553559914 - ], - [ - 169.58290711846163, - -46.57923977378807 - ], - [ - 169.5521203535566, - -46.55887575084225 - ], - [ - 169.4987566277212, - -46.55661308162605 - ], - [ - 169.47700064718833, - -46.56210813543682 - ], - [ - 169.47043280400857, - -46.5782700584097 - ], - [ - 169.45278172546304, - -46.577300343031325 - ], - [ - 169.43348868612253, - -46.58990664295017 - ], - [ - 169.4306152547314, - -46.60057351211226 - ], - [ - 169.40434388201243, - -46.613179812031106 - ], - [ - 169.3797144700884, - -46.60736151976087 - ], - [ - 169.3554955483631, - -46.61964458122026 - ], - [ - 169.36575780333146, - -46.631281165760726 - ], - [ - 169.3513906463758, - -46.638392411868786 - ], - [ - 169.30131084213025, - -46.62416991965266 - ], - [ - 169.26682966543663, - -46.62449315811212 - ], - [ - 169.24876809669234, - -46.64194803492282 - ], - [ - 169.23932682212146, - -46.63645298111204 - ], - [ - 169.22085476317844, - -46.65714024251732 - ], - [ - 169.19950927284427, - -46.66166558094972 - ], - [ - 169.19047848847214, - -46.65455433484166 - ], - [ - 169.19827780224807, - -46.61705867354459 - ], - [ - 169.21346593960124, - -46.60283618132846 - ], - [ - 169.1962253512544, - -46.57665386611241 - ], - [ - 169.2019722140367, - -46.563401089274656 - ], - [ - 169.22742260635818, - -46.561784896977365 - ], - [ - 169.23316946914045, - -46.54885535859907 - ], - [ - 169.25041005748727, - -46.53818848943697 - ], - [ - 169.25615692026955, - -46.524935712599216 - ], - [ - 169.23316946914045, - -46.5197638972479 - ], - [ - 169.2204442729797, - -46.50618788195068 - ], - [ - 169.1863735864848, - -46.4984301589237 - ], - [ - 169.18062672370252, - -46.482591474410285 - ], - [ - 169.16502809615065, - -46.475480228302224 - ], - [ - 169.16379662555443, - -46.46449012068067 - ], - [ - 169.1925309394658, - -46.45640915919423 - ], - [ - 169.20402466503035, - -46.430226843978176 - ], - [ - 169.20566662582527, - -46.41277196716747 - ], - [ - 169.1888365276772, - -46.39467061343786 - ], - [ - 169.1391672136304, - -46.37947840584336 - ], - [ - 169.14819799800256, - -46.360084098275905 - ], - [ - 169.1695434883367, - -46.35426580600567 - ], - [ - 169.17529035111897, - -46.34101302916792 - ], - [ - 169.20156172383795, - -46.31127509089783 - ], - [ - 169.18473162568986, - -46.29317373716821 - ], - [ - 169.2007407434405, - -46.271516760384564 - ], - [ - 169.1925309394658, - -46.262466083519755 - ], - [ - 169.19827780224807, - -46.24953654514145 - ], - [ - 169.19294142966453, - -46.2340210990875 - ], - [ - 169.21182397880628, - -46.205899353114695 - ], - [ - 169.1851421158886, - -46.196202199330976 - ], - [ - 169.16872250793924, - -46.17810084560136 - ], - [ - 169.17857427270886, - -46.169373407196005 - ], - [ - 169.16625956674685, - -46.15579739189879 - ], - [ - 169.136704272438, - -46.15256500730421 - ], - [ - 169.13834623323294, - -46.13511013049351 - ], - [ - 169.16667005694558, - -46.12735240746653 - ], - [ - 169.17693231191393, - -46.11894820752064 - ], - [ - 169.16749103734304, - -46.09858418457482 - ], - [ - 169.15107142939368, - -46.0804828308452 - ], - [ - 169.16502809615065, - -46.07660396933171 - ], - [ - 169.16297564515696, - -46.0546237540886 - ], - [ - 169.1137168213089, - -46.0394315464941 - ], - [ - 169.08046711521146, - -46.00322883903487 - ], - [ - 169.08826642898742, - -45.972521185386405 - ], - [ - 169.1026335859431, - -45.96864232387291 - ], - [ - 169.11166437031525, - -45.94924801630547 - ], - [ - 169.0940132917697, - -45.920156554954296 - ], - [ - 169.1087909389241, - -45.88750947054909 - ], - [ - 169.09113986037855, - -45.85841800919792 - ], - [ - 169.06281603666594, - -45.8661757322249 - ], - [ - 169.01930407560013, - -45.866498970684354 - ], - [ - 169.0151991736128, - -45.86197363225195 - ], - [ - 169.0271033893761, - -45.83611455549536 - ], - [ - 169.04393348752416, - -45.825770924792714 - ], - [ - 169.03900760513937, - -45.81025547873876 - ], - [ - 169.01930407560013, - -45.79861889419829 - ], - [ - 169.0209460363951, - -45.741405686874316 - ], - [ - 169.00986280102927, - -45.73881977919866 - ], - [ - 169.03654466394696, - -45.680636856496314 - ], - [ - 169.04147054633177, - -45.65671721049646 - ], - [ - 169.0697943700444, - -45.64895948746948 - ], - [ - 169.079646134814, - -45.64055528752359 - ], - [ - 169.0816985858077, - -45.62310041071289 - ], - [ - 169.09360280157097, - -45.59724133395629 - ], - [ - 169.11330633111018, - -45.5804329340645 - ], - [ - 169.13136789985447, - -45.541644318929606 - ], - [ - 169.1412196646241, - -45.53324011898371 - ], - [ - 169.14327211561775, - -45.515785242173 - ], - [ - 169.1609231941633, - -45.47731986549757 - ], - [ - 169.15681829217596, - -45.47279452706516 - ], - [ - 169.16872250793924, - -45.446935450308565 - ], - [ - 169.18965750807467, - -45.44111715803833 - ], - [ - 169.18801554727972, - -45.458572034849034 - ], - [ - 169.17077495893292, - -45.46891566555168 - ], - [ - 169.19950927284427, - -45.50059303457851 - ], - [ - 169.2048456454278, - -45.51610848063246 - ], - [ - 169.18473162568986, - -45.532916880524255 - ], - [ - 169.19827780224807, - -45.55748300344302 - ], - [ - 169.21469741019743, - -45.575907595632096 - ], - [ - 169.187605057081, - -45.59433218782117 - ], - [ - 169.199919763043, - -45.607908203118384 - ], - [ - 169.1900679982734, - -45.65607073357754 - ], - [ - 169.21264495920377, - -45.66124254892887 - ], - [ - 169.23193799854425, - -45.67287913346934 - ], - [ - 169.25246250848093, - -45.69550582563136 - ], - [ - 169.31731995988088, - -45.689364294901665 - ], - [ - 169.3394864306125, - -45.69453611025298 - ], - [ - 169.36781025432512, - -45.687101625685465 - ], - [ - 169.4195320193656, - -45.69550582563136 - ], - [ - 169.41337466638458, - -45.70843536400966 - ], - [ - 169.41871103896813, - -45.72395081006361 - ], - [ - 169.45155025486682, - -45.76015351752285 - ], - [ - 169.4622230000339, - -45.791184409630766 - ], - [ - 169.48356849036807, - -45.78568935581999 - ], - [ - 169.49588319633008, - -45.7992653711172 - ], - [ - 169.52092309845284, - -45.797972417279375 - ], - [ - 169.5373427064022, - -45.816073771008995 - ], - [ - 169.58660153025025, - -45.80249775571178 - ], - [ - 169.59563231462238, - -45.78310344814433 - ], - [ - 169.63791280509196, - -45.77179010206332 - ], - [ - 169.65597437383624, - -45.77243657898224 - ], - [ - 169.67649888377295, - -45.72718319465819 - ], - [ - 169.6723939817856, - -45.72265785622579 - ], - [ - 169.68388770735015, - -45.69679877946919 - ], - [ - 169.69620241331216, - -45.7103747947664 - ], - [ - 169.72863113901215, - -45.707142410171826 - ], - [ - 169.72986260960835, - -45.71813251779338 - ], - [ - 169.75202908033995, - -45.723304333144696 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2135, - "NAME_1": "Otago", - "ID_2": 25216, - "NAME_2": "Dunedin", - "VARNAME_2": "", - "HASC_2": "NZ.OT.DU", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 170.72283840034538, - -45.55715976498356 - ], - [ - 170.73022722392258, - -45.57267521103752 - ], - [ - 170.7289957533264, - -45.589806849388765 - ], - [ - 170.69369359623528, - -45.62051450303723 - ], - [ - 170.67111663530494, - -45.61598916460482 - ], - [ - 170.66003339993912, - -45.62891870298312 - ], - [ - 170.66044389013786, - -45.64346443365871 - ], - [ - 170.65059212536823, - -45.6693235104153 - ], - [ - 170.63622496841256, - -45.682576287253056 - ], - [ - 170.61528996827712, - -45.690980487198956 - ], - [ - 170.59928085052653, - -45.712314225523144 - ], - [ - 170.5808087915835, - -45.714576894739345 - ], - [ - 170.5697255562177, - -45.72815291003656 - ], - [ - 170.57013604641642, - -45.74528454838781 - ], - [ - 170.5857346739683, - -45.743991594549975 - ], - [ - 170.6087221250974, - -45.732355010009506 - ], - [ - 170.6259627134442, - -45.743345117631065 - ], - [ - 170.6390983998037, - -45.73817330227974 - ], - [ - 170.6551075175543, - -45.7559514175499 - ], - [ - 170.69656702762643, - -45.766618286712 - ], - [ - 170.70026143941502, - -45.78601259427945 - ], - [ - 170.67234810590114, - -45.78568935581999 - ], - [ - 170.64607673318216, - -45.79732594036046 - ], - [ - 170.62678369384167, - -45.79829565573883 - ], - [ - 170.63006761543156, - -45.818659678684654 - ], - [ - 170.59928085052653, - -45.83094274014404 - ], - [ - 170.55987379144807, - -45.865852493765445 - ], - [ - 170.51964575197215, - -45.874579932170796 - ], - [ - 170.52457163435696, - -45.884600324413974 - ], - [ - 170.5249821245557, - -45.884600324413974 - ], - [ - 170.52580310495316, - -45.884277085954515 - ], - [ - 170.54140173250505, - -45.87878203214374 - ], - [ - 170.57424094840374, - -45.8791052706032 - ], - [ - 170.59763888973157, - -45.8661757322249 - ], - [ - 170.60338575251384, - -45.845165232360166 - ], - [ - 170.6173424192708, - -45.84904409387365 - ], - [ - 170.6452557527847, - -45.83773074779264 - ], - [ - 170.66742222351633, - -45.834498363198065 - ], - [ - 170.6682432039138, - -45.83417512473861 - ], - [ - 170.66906418431125, - -45.83417512473861 - ], - [ - 170.66988516470872, - -45.83288217090078 - ], - [ - 170.6682432039138, - -45.816073771008995 - ], - [ - 170.72612232193526, - -45.79215412500914 - ], - [ - 170.72817477292892, - -45.77243657898224 - ], - [ - 170.7289957533264, - -45.772759817441695 - ], - [ - 170.74828879266687, - -45.78698230965782 - ], - [ - 170.74787830246814, - -45.78730554811728 - ], - [ - 170.7462363416732, - -45.816073771008995 - ], - [ - 170.74582585147448, - -45.81639700946845 - ], - [ - 170.73556359650613, - -45.81639700946845 - ], - [ - 170.72283840034538, - -45.84451875544125 - ], - [ - 170.73966849849347, - -45.845811709279076 - ], - [ - 170.75116222405802, - -45.86746868606273 - ], - [ - 170.74048947889094, - -45.87878203214374 - ], - [ - 170.70026143941502, - -45.874903170630255 - ], - [ - 170.6826103608695, - -45.85712505536009 - ], - [ - 170.6608543803366, - -45.852599716927685 - ], - [ - 170.6596229097404, - -45.86520601684653 - ], - [ - 170.68507330206188, - -45.89138833206258 - ], - [ - 170.6637278117277, - -45.90431787044088 - ], - [ - 170.6501816351695, - -45.89688338587336 - ], - [ - 170.63458300761764, - -45.902378439684135 - ], - [ - 170.6074906545012, - -45.8965601474139 - ], - [ - 170.5927130073468, - -45.90302491660305 - ], - [ - 170.492142908657, - -45.911429116548945 - ], - [ - 170.48639604587473, - -45.917893885738096 - ], - [ - 170.4839331046823, - -45.91854036265701 - ], - [ - 170.48229114388738, - -45.91886360111646 - ], - [ - 170.34723986850398, - -45.94019733944066 - ], - [ - 170.29305516227112, - -45.96411698544051 - ], - [ - 170.28238241710403, - -45.97575356998098 - ], - [ - 170.28156143670657, - -45.9764000468999 - ], - [ - 170.27540408372556, - -45.98124862379176 - ], - [ - 170.27212016213568, - -45.98448100838633 - ], - [ - 170.2696572209433, - -45.986420439143075 - ], - [ - 170.26883624054582, - -45.98706691606199 - ], - [ - 170.2684257503471, - -45.98739015452145 - ], - [ - 170.26719427975087, - -45.988359869899824 - ], - [ - 170.24790124041039, - -46.00484503133215 - ], - [ - 170.1982319263636, - -46.06173500019667 - ], - [ - 170.1826332988117, - -46.02359286198069 - ], - [ - 170.15389898490034, - -45.99191549295385 - ], - [ - 170.1218807493991, - -45.995147877548426 - ], - [ - 170.1095660434371, - -45.981571862251215 - ], - [ - 170.13337447496366, - -45.96928880079183 - ], - [ - 170.1169548670143, - -45.95118744706221 - ], - [ - 170.10587163164848, - -45.94860153938655 - ], - [ - 170.0853471217118, - -45.92597484722453 - ], - [ - 170.05045545481943, - -45.93567200100826 - ], - [ - 170.0270575134916, - -45.91951007803538 - ], - [ - 170.02787849388906, - -45.86262010917087 - ], - [ - 170.05579182740297, - -45.854862386143886 - ], - [ - 170.05825476859536, - -45.78051754046867 - ], - [ - 170.01802672911947, - -45.77469924819844 - ], - [ - 170.01269035653593, - -45.75918380214448 - ], - [ - 169.98354555242582, - -45.7559514175499 - ], - [ - 169.95029584632837, - -45.71974871009067 - ], - [ - 169.91827761082715, - -45.722981094685245 - ], - [ - 169.91663565003222, - -45.74043597149595 - ], - [ - 169.90103702248032, - -45.761769709820136 - ], - [ - 169.86737682618417, - -45.75401198679316 - ], - [ - 169.85752506141455, - -45.76241618673905 - ], - [ - 169.82961172790064, - -45.76985067130657 - ], - [ - 169.80539280617535, - -45.782133732765956 - ], - [ - 169.79307810021334, - -45.768557717468745 - ], - [ - 169.76680672749438, - -45.75886056368502 - ], - [ - 169.77255359027666, - -45.745931025306724 - ], - [ - 169.75326055093618, - -45.734294440766256 - ], - [ - 169.75202908033995, - -45.723304333144696 - ], - [ - 169.7438192763653, - -45.714253656279894 - ], - [ - 169.76762770789185, - -45.70197059482051 - ], - [ - 169.76639623729565, - -45.69130372565841 - ], - [ - 169.80498231597662, - -45.64669681825328 - ], - [ - 169.81278162975258, - -45.61631240306428 - ], - [ - 169.83002221809937, - -45.57784702638884 - ], - [ - 169.8218124141247, - -45.56879634952403 - ], - [ - 169.84603133585, - -45.55651328806465 - ], - [ - 169.9088363362563, - -45.53905841125395 - ], - [ - 169.91991957162207, - -45.541644318929606 - ], - [ - 169.92895035599423, - -45.52257324982161 - ], - [ - 169.92648741480184, - -45.50059303457851 - ], - [ - 169.94454898354613, - -45.50123951149742 - ], - [ - 170.04224565084476, - -45.47441071936245 - ], - [ - 170.06892751376245, - -45.45566288871392 - ], - [ - 170.08370516091688, - -45.42333904276817 - ], - [ - 170.09643035707762, - -45.408793312092584 - ], - [ - 170.12023878860418, - -45.3965102506332 - ], - [ - 170.1399423181434, - -45.37970185074141 - ], - [ - 170.13337447496366, - -45.3531962970659 - ], - [ - 170.16949761245223, - -45.32636750493093 - ], - [ - 170.19535849497245, - -45.268184582228585 - ], - [ - 170.23025016186483, - -45.25881066690432 - ], - [ - 170.22778722067244, - -45.23683045166121 - ], - [ - 170.25570055418632, - -45.229072728634236 - ], - [ - 170.27088869153948, - -45.236183974742296 - ], - [ - 170.3246629075736, - -45.238123405499046 - ], - [ - 170.32876780956096, - -45.24264874393145 - ], - [ - 170.32425241737488, - -45.2665683899313 - ], - [ - 170.40265604533303, - -45.26721486685022 - ], - [ - 170.4219490846735, - -45.278851451390686 - ], - [ - 170.4313903592444, - -45.29889223587705 - ], - [ - 170.42564349646213, - -45.31182177425534 - ], - [ - 170.40635045712162, - -45.328630174147136 - ], - [ - 170.33451467234323, - -45.32604426647147 - ], - [ - 170.3353356527407, - -45.365156120065826 - ], - [ - 170.31316918200906, - -45.35998430471451 - ], - [ - 170.29387614266858, - -45.34834772017404 - ], - [ - 170.2942866328673, - -45.44434954263291 - ], - [ - 170.27622506412303, - -45.44370306571399 - ], - [ - 170.2676047699496, - -45.46309737328144 - ], - [ - 170.23394457365345, - -45.483784634686714 - ], - [ - 170.21588300490916, - -45.483138157767804 - ], - [ - 170.2224508480889, - -45.50932047298386 - ], - [ - 170.2725306523344, - -45.50705780376765 - ], - [ - 170.3074223192268, - -45.49736064998393 - ], - [ - 170.34477692731156, - -45.50964371144332 - ], - [ - 170.3636594764533, - -45.521280295983786 - ], - [ - 170.35421820188245, - -45.52968449592968 - ], - [ - 170.35257624108752, - -45.54713937274038 - ], - [ - 170.39649869235203, - -45.55748300344302 - ], - [ - 170.40511898652542, - -45.53808869587557 - ], - [ - 170.42482251606467, - -45.521280295983786 - ], - [ - 170.45109388878362, - -45.530977449767505 - ], - [ - 170.48023869289372, - -45.53420983436208 - ], - [ - 170.48434359488107, - -45.510613426821685 - ], - [ - 170.55617937965945, - -45.513199334497344 - ], - [ - 170.5602842816468, - -45.54584641890255 - ], - [ - 170.5894290857569, - -45.57752378792938 - ], - [ - 170.62801516443787, - -45.57235197257806 - ], - [ - 170.64484526258596, - -45.562008341875426 - ], - [ - 170.7170915375631, - -45.564594249551085 - ], - [ - 170.72283840034538, - -45.55715976498356 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2135, - "NAME_1": "Otago", - "ID_2": 25217, - "NAME_2": "Queenstown-Lakes", - "VARNAME_2": "", - "HASC_2": "NZ.OT.QL", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 169.71672692324887, - -43.96682654445283 - ], - [ - 169.7109800604666, - -43.97943284437167 - ], - [ - 169.7269891782172, - -43.997534198101285 - ], - [ - 169.7183688840438, - -44.01660526720928 - ], - [ - 169.7343780017944, - -44.03438338247944 - ], - [ - 169.71056957026786, - -44.04634320547937 - ], - [ - 169.69989682510078, - -44.04375729780371 - ], - [ - 169.69086604072862, - -44.062828366911695 - ], - [ - 169.6744464327793, - -44.07284875915488 - ], - [ - 169.67649888377295, - -44.094505735938526 - ], - [ - 169.65597437383624, - -44.10032402820876 - ], - [ - 169.63996525608565, - -44.1213345280735 - ], - [ - 169.62272466773882, - -44.15947666628948 - ], - [ - 169.58495956945532, - -44.17499211234344 - ], - [ - 169.58044417726924, - -44.19858851988383 - ], - [ - 169.55663574574268, - -44.21087158134321 - ], - [ - 169.5968637852186, - -44.2558017272078 - ], - [ - 169.58824349104518, - -44.27487279631579 - ], - [ - 169.59357986362872, - -44.29038824236975 - ], - [ - 169.58167564786544, - -44.31592408066689 - ], - [ - 169.59891623621226, - -44.34501554201806 - ], - [ - 169.58208613806417, - -44.355035934261245 - ], - [ - 169.58331760866037, - -44.3660260418828 - ], - [ - 169.57059241249962, - -44.38057177255838 - ], - [ - 169.58701202044898, - -44.398673126288 - ], - [ - 169.5701819223009, - -44.40901675699064 - ], - [ - 169.56402456931988, - -44.42162305690948 - ], - [ - 169.5763392752819, - -44.43519907220669 - ], - [ - 169.5595091771338, - -44.445542702909336 - ], - [ - 169.54185809858825, - -44.484008079584775 - ], - [ - 169.5373427064022, - -44.50760448712517 - ], - [ - 169.51722868666423, - -44.52441288701696 - ], - [ - 169.50573496109968, - -44.549948725314096 - ], - [ - 169.48356849036807, - -44.54477690996278 - ], - [ - 169.4207634899618, - -44.561585309854564 - ], - [ - 169.39161868585168, - -44.55835292525999 - ], - [ - 169.37068368571627, - -44.563847979070765 - ], - [ - 169.3797144700884, - -44.583888763557134 - ], - [ - 169.37807250929347, - -44.60134364036784 - ], - [ - 169.40352290161496, - -44.63948577858382 - ], - [ - 169.37560956810108, - -44.64692026315134 - ], - [ - 169.38053545048587, - -44.6624357092053 - ], - [ - 169.36781025432512, - -44.67730467834034 - ], - [ - 169.38505084267194, - -44.706072901232055 - ], - [ - 169.37930397988967, - -44.71900243961035 - ], - [ - 169.39449211724283, - -44.72611368571842 - ], - [ - 169.38874525446056, - -44.73904322409671 - ], - [ - 169.4047543722112, - -44.75714457782633 - ], - [ - 169.39079770545422, - -44.76102343933982 - ], - [ - 169.35056966597833, - -44.75488190861013 - ], - [ - 169.32676123445177, - -44.767164970069516 - ], - [ - 169.27914437139864, - -44.83051970812318 - ], - [ - 169.24096878291638, - -44.846358392636596 - ], - [ - 169.22824358675564, - -44.86122736177164 - ], - [ - 169.1900679982734, - -44.87706604628505 - ], - [ - 169.14573505681014, - -44.86639917712296 - ], - [ - 169.1317783900532, - -44.86995480017699 - ], - [ - 169.11289584091145, - -44.89775330769033 - ], - [ - 169.07061535044187, - -44.90906665377134 - ], - [ - 169.07882515441653, - -44.91811733063615 - ], - [ - 169.06199505626844, - -44.928137722879335 - ], - [ - 169.0697943700444, - -44.937188399744144 - ], - [ - 169.05830064447986, - -44.96304747650074 - ], - [ - 169.09072937017982, - -44.99925018395997 - ], - [ - 169.0816985858077, - -45.018644491527425 - ], - [ - 169.06076358567225, - -45.02446278379766 - ], - [ - 169.05460623269124, - -45.037069083716496 - ], - [ - 169.0710258406406, - -45.05549367590557 - ], - [ - 169.04270201692796, - -45.0629281604731 - ], - [ - 169.02340897758748, - -45.05129157593262 - ], - [ - 168.98153897731663, - -45.06260492201364 - ], - [ - 168.94500534962933, - -45.06098872971635 - ], - [ - 168.90272485915975, - -45.07230207579736 - ], - [ - 168.87645348644077, - -45.06228168355418 - ], - [ - 168.86413878047875, - -45.048705668256964 - ], - [ - 168.8403303489522, - -45.06066549125689 - ], - [ - 168.8534660353117, - -45.08555485263512 - ], - [ - 168.84156181954842, - -45.11109069093226 - ], - [ - 168.85880240789524, - -45.14050539074289 - ], - [ - 168.84115132934969, - -45.17897076741833 - ], - [ - 168.8694751530623, - -45.21097137490462 - ], - [ - 168.85633946670282, - -45.22584034403966 - ], - [ - 168.86865417266483, - -45.23941635933687 - ], - [ - 168.8596233882927, - -45.25881066690432 - ], - [ - 168.84566672153574, - -45.26236628995835 - ], - [ - 168.82760515279145, - -45.30115490509325 - ], - [ - 168.83006809398387, - -45.32313512033635 - ], - [ - 168.81405897623324, - -45.34446885866055 - ], - [ - 168.7927134858991, - -45.349963912471324 - ], - [ - 168.78655613291807, - -45.362893450849626 - ], - [ - 168.76562113278266, - -45.36871174311986 - ], - [ - 168.73811828946748, - -45.34770124325512 - ], - [ - 168.70445809317133, - -45.33962028176869 - ], - [ - 168.71677279913334, - -45.31376120501209 - ], - [ - 168.70856299515867, - -45.30471052814728 - ], - [ - 168.71430985794092, - -45.29178098976898 - ], - [ - 168.70938397555614, - -45.27626554371503 - ], - [ - 168.69296436760678, - -45.25816418998541 - ], - [ - 168.68803848522197, - -45.24264874393145 - ], - [ - 168.65971466150933, - -45.250083228498966 - ], - [ - 168.65355730852832, - -45.26301276687727 - ], - [ - 168.6363167201815, - -45.27303315912045 - ], - [ - 168.57966907275625, - -45.28822536671495 - ], - [ - 168.57392220997397, - -45.30115490509325 - ], - [ - 168.55668162162715, - -45.31117529733643 - ], - [ - 168.47458358188038, - -45.3273372203093 - ], - [ - 168.33665887510585, - -45.32992312798496 - ], - [ - 168.33173299272104, - -45.314407681931 - ], - [ - 168.31531338477168, - -45.29598308974193 - ], - [ - 168.32352318874635, - -45.265598674552926 - ], - [ - 168.30299867880967, - -45.242971982390905 - ], - [ - 168.30833505139321, - -45.21905233639105 - ], - [ - 168.27056995310969, - -45.20612279801276 - ], - [ - 168.27262240410337, - -45.188667921202054 - ], - [ - 168.23198387442872, - -45.14309129841855 - ], - [ - 168.2463510313844, - -45.139212436905055 - ], - [ - 168.25209789416667, - -45.12660613698622 - ], - [ - 168.27262240410337, - -45.109797737094425 - ], - [ - 168.26728603151983, - -45.09428229104047 - ], - [ - 168.30258818861094, - -45.0849083757162 - ], - [ - 168.3120294631818, - -45.06551406814876 - ], - [ - 168.30381965920714, - -45.05646339128395 - ], - [ - 168.31572387497042, - -45.03060431452735 - ], - [ - 168.30053573761725, - -45.023493068419285 - ], - [ - 168.2791902472831, - -45.02898812223006 - ], - [ - 168.2389622078072, - -45.02284659150037 - ], - [ - 168.22993142343506, - -45.002805807014006 - ], - [ - 168.2073544625047, - -44.99731075320323 - ], - [ - 168.19011387415787, - -44.9678960533926 - ], - [ - 168.1589166190541, - -44.94236021509546 - ], - [ - 168.1404445601111, - -44.941713738176546 - ], - [ - 168.1527592660731, - -44.91585466141995 - ], - [ - 168.13962357971363, - -44.89128853850118 - ], - [ - 168.12320397176427, - -44.87286394631211 - ], - [ - 168.1416760307073, - -44.83439856963667 - ], - [ - 168.1769781877984, - -44.8250246543124 - ], - [ - 168.19503975654268, - -44.78655927763696 - ], - [ - 168.19503975654268, - -44.747124185583154 - ], - [ - 168.17862014859332, - -44.729022831853534 - ], - [ - 168.18765093296548, - -44.70962852428609 - ], - [ - 168.17985161918952, - -44.70057784742128 - ], - [ - 168.1999656389275, - -44.684092685988944 - ], - [ - 168.19503975654268, - -44.66857723993499 - ], - [ - 168.2159747566781, - -44.6236470940704 - ], - [ - 168.21802720767178, - -44.6061922172597 - ], - [ - 168.250045443173, - -44.56417121753022 - ], - [ - 168.2451195607882, - -44.54865577147627 - ], - [ - 168.26112867853882, - -44.527322033152075 - ], - [ - 168.28247416887297, - -44.5218269793413 - ], - [ - 168.2984832866236, - -44.500493241017104 - ], - [ - 168.3485630908691, - -44.49855381026036 - ], - [ - 168.36990858120328, - -44.49273551799013 - ], - [ - 168.3957694637235, - -44.502755910233304 - ], - [ - 168.42819818942348, - -44.49984676409819 - ], - [ - 168.46308985631586, - -44.490472848773926 - ], - [ - 168.48115142506015, - -44.491119325692836 - ], - [ - 168.5123486801639, - -44.477220071936166 - ], - [ - 168.51850603314492, - -44.46429053355787 - ], - [ - 168.5743327001727, - -44.44942156442283 - ], - [ - 168.59649917090434, - -44.454916618233604 - ], - [ - 168.60265652388534, - -44.4419870798553 - ], - [ - 168.63754819077772, - -44.432613164531034 - ], - [ - 168.64370554375873, - -44.4200068646122 - ], - [ - 168.66464054389414, - -44.41418857234196 - ], - [ - 168.67079789687514, - -44.40158227242312 - ], - [ - 168.69871123038905, - -44.3941477878556 - ], - [ - 168.71102593635106, - -44.40772380315281 - ], - [ - 168.75494838761557, - -44.41839067231491 - ], - [ - 168.75987427000038, - -44.39479426477451 - ], - [ - 168.7951764270915, - -44.38542034945024 - ], - [ - 168.8107750546434, - -44.36440984958551 - ], - [ - 168.83212054497753, - -44.35859155731528 - ], - [ - 168.84771917252942, - -44.33758105745054 - ], - [ - 168.83991985875346, - -44.32853038058573 - ], - [ - 168.85551848630536, - -44.307519880720996 - ], - [ - 168.85059260392055, - -44.292004434667035 - ], - [ - 168.86619123147244, - -44.27067069634285 - ], - [ - 168.86413878047875, - -44.248690481099736 - ], - [ - 168.88096887862685, - -44.23867008885656 - ], - [ - 168.88302132962053, - -44.221215212045855 - ], - [ - 168.95280466340526, - -44.20279061985678 - ], - [ - 168.97825505572675, - -44.2018209044784 - ], - [ - 168.9688137811559, - -44.18178011999204 - ], - [ - 168.99960054606092, - -44.16788086623537 - ], - [ - 168.9835914283103, - -44.14977951250575 - ], - [ - 168.98646485970144, - -44.1433147433166 - ], - [ - 169.0283348599723, - -44.13232463569505 - ], - [ - 169.04147054633177, - -44.11777890501946 - ], - [ - 169.0833405466026, - -44.10678879739791 - ], - [ - 169.08621397799374, - -44.10032402820876 - ], - [ - 169.14942946859875, - -44.08383886677643 - ], - [ - 169.1986882924468, - -44.11002118199249 - ], - [ - 169.24178976331385, - -44.11002118199249 - ], - [ - 169.28776466557204, - -44.103556412803336 - ], - [ - 169.29843741073913, - -44.067030466884646 - ], - [ - 169.326350744253, - -44.05991922077658 - ], - [ - 169.34277035220236, - -44.07769733604674 - ], - [ - 169.3394864306125, - -44.08416210523589 - ], - [ - 169.3600109405492, - -44.10678879739791 - ], - [ - 169.38997672505675, - -44.12101128961404 - ], - [ - 169.41665858797447, - -44.10290993588442 - ], - [ - 169.44457192148835, - -44.0954754513169 - ], - [ - 169.47330623539972, - -44.05991922077658 - ], - [ - 169.49424123553513, - -44.0544241669658 - ], - [ - 169.52995388282497, - -44.056040359263086 - ], - [ - 169.53570074560724, - -44.04343405934425 - ], - [ - 169.5775707458781, - -44.03212071326323 - ], - [ - 169.59440084402618, - -44.022100321020055 - ], - [ - 169.60999947157808, - -44.00108982115532 - ], - [ - 169.59357986362872, - -43.98331170588516 - ], - [ - 169.59563231462238, - -43.96618006753391 - ], - [ - 169.63011349131602, - -43.956806152209644 - ], - [ - 169.6453016286692, - -43.96391739831771 - ], - [ - 169.67280447198434, - -43.956482913750186 - ], - [ - 169.6978443741071, - -43.95518995991236 - ], - [ - 169.71672692324887, - -43.96682654445283 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2135, - "NAME_1": "Otago", - "ID_2": 25219, - "NAME_2": "Waitaki", - "VARNAME_2": "", - "HASC_2": "NZ.OT.WI", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 171.14851673643233, - -44.936865161284686 - ], - [ - 171.1103411479501, - -44.99213893785191 - ], - [ - 171.08776418701973, - -45.01573534539231 - ], - [ - 171.05656693191597, - -45.041271183689446 - ], - [ - 170.9880150687274, - -45.084585137256745 - ], - [ - 170.97241644117554, - -45.106888590959315 - ], - [ - 170.9765213431629, - -45.125636421607844 - ], - [ - 170.96338565680338, - -45.12628289852676 - ], - [ - 170.92028418593634, - -45.15634407525631 - ], - [ - 170.9087904603718, - -45.179617244337244 - ], - [ - 170.89113938182624, - -45.19901155190469 - ], - [ - 170.88908693083258, - -45.21517347487756 - ], - [ - 170.86322604831236, - -45.24103255163416 - ], - [ - 170.86117359731867, - -45.26850782068804 - ], - [ - 170.85994212672247, - -45.27206344374208 - ], - [ - 170.83572320499718, - -45.29792252049867 - ], - [ - 170.8250504598301, - -45.324428074174186 - ], - [ - 170.83079732261237, - -45.354166012444274 - ], - [ - 170.85706869533135, - -45.35513572782264 - ], - [ - 170.86733095029967, - -45.36709555082257 - ], - [ - 170.87061487188956, - -45.38552014301165 - ], - [ - 170.84229104817692, - -45.39909615830886 - ], - [ - 170.82176653824024, - -45.41849046587631 - ], - [ - 170.80945183227823, - -45.455986127173375 - ], - [ - 170.83284977360606, - -45.474087480902995 - ], - [ - 170.78153849876432, - -45.51190638065952 - ], - [ - 170.76593987121242, - -45.532593642064796 - ], - [ - 170.7556776162441, - -45.53453307282154 - ], - [ - 170.74172094948713, - -45.555866811145734 - ], - [ - 170.72283840034538, - -45.55715976498356 - ], - [ - 170.7170915375631, - -45.564594249551085 - ], - [ - 170.64484526258596, - -45.562008341875426 - ], - [ - 170.62801516443787, - -45.57235197257806 - ], - [ - 170.5894290857569, - -45.57752378792938 - ], - [ - 170.5602842816468, - -45.54584641890255 - ], - [ - 170.55617937965945, - -45.513199334497344 - ], - [ - 170.48434359488107, - -45.510613426821685 - ], - [ - 170.48023869289372, - -45.53420983436208 - ], - [ - 170.45109388878362, - -45.530977449767505 - ], - [ - 170.42482251606467, - -45.521280295983786 - ], - [ - 170.40511898652542, - -45.53808869587557 - ], - [ - 170.39649869235203, - -45.55748300344302 - ], - [ - 170.35257624108752, - -45.54713937274038 - ], - [ - 170.35421820188245, - -45.52968449592968 - ], - [ - 170.3636594764533, - -45.521280295983786 - ], - [ - 170.34477692731156, - -45.50964371144332 - ], - [ - 170.3074223192268, - -45.49736064998393 - ], - [ - 170.2725306523344, - -45.50705780376765 - ], - [ - 170.2224508480889, - -45.50932047298386 - ], - [ - 170.21588300490916, - -45.483138157767804 - ], - [ - 170.23394457365345, - -45.483784634686714 - ], - [ - 170.2676047699496, - -45.46309737328144 - ], - [ - 170.27622506412303, - -45.44370306571399 - ], - [ - 170.2942866328673, - -45.44434954263291 - ], - [ - 170.29387614266858, - -45.34834772017404 - ], - [ - 170.31316918200906, - -45.35998430471451 - ], - [ - 170.3353356527407, - -45.365156120065826 - ], - [ - 170.33451467234323, - -45.32604426647147 - ], - [ - 170.40635045712162, - -45.328630174147136 - ], - [ - 170.42564349646213, - -45.31182177425534 - ], - [ - 170.4313903592444, - -45.29889223587705 - ], - [ - 170.4219490846735, - -45.278851451390686 - ], - [ - 170.40265604533303, - -45.26721486685022 - ], - [ - 170.32425241737488, - -45.2665683899313 - ], - [ - 170.32876780956096, - -45.24264874393145 - ], - [ - 170.34929231949764, - -45.23683045166121 - ], - [ - 170.39649869235203, - -45.2125875672019 - ], - [ - 170.37638467261405, - -45.18996087503988 - ], - [ - 170.42482251606467, - -45.17638485974267 - ], - [ - 170.43015888864818, - -45.16345532136437 - ], - [ - 170.44986241818742, - -45.14664692147258 - ], - [ - 170.44042114361653, - -45.12660613698622 - ], - [ - 170.40758192771784, - -45.118848413959235 - ], - [ - 170.4203071238786, - -45.10430268328365 - ], - [ - 170.40676094732038, - -45.079736560364886 - ], - [ - 170.3743322216204, - -45.04353385290565 - ], - [ - 170.36489094704953, - -45.023493068419285 - ], - [ - 170.36119653526092, - -44.99052274555462 - ], - [ - 170.3804895746014, - -44.97403758412229 - ], - [ - 170.38500496678748, - -44.95011793812244 - ], - [ - 170.46094565355324, - -44.928784199798244 - ], - [ - 170.45725124176462, - -44.92425886136584 - ], - [ - 170.51225692839495, - -44.90874341531188 - ], - [ - 170.5249821245557, - -44.89387444617684 - ], - [ - 170.53852830111393, - -44.88999558466335 - ], - [ - 170.561515752243, - -44.83860066960961 - ], - [ - 170.57506192880123, - -44.83472180809613 - ], - [ - 170.5906605563531, - -44.81338806977193 - ], - [ - 170.70026143941502, - -44.83860066960961 - ], - [ - 170.70436634140236, - -44.84312600804202 - ], - [ - 170.74787830246814, - -44.853469638744656 - ], - [ - 170.7848224203542, - -44.86542946174458 - ], - [ - 170.79303222432887, - -44.87448013860939 - ], - [ - 170.82176653824024, - -44.87771252320397 - ], - [ - 170.87636173467183, - -44.89031882312281 - ], - [ - 170.9050960485832, - -44.89322796925793 - ], - [ - 170.91289536235914, - -44.90227864612274 - ], - [ - 170.96338565680338, - -44.910036369149715 - ], - [ - 170.97693183336162, - -44.90615750763622 - ], - [ - 170.9999192844907, - -44.9223194306091 - ], - [ - 171.02085428462613, - -44.91617789987941 - ], - [ - 171.0463046769476, - -44.92587505366313 - ], - [ - 171.07134457907037, - -44.9245820998253 - ], - [ - 171.07914389284633, - -44.93363277669011 - ], - [ - 171.1177299715273, - -44.92846096133879 - ], - [ - 171.12593977550196, - -44.9375116382036 - ], - [ - 171.14851673643233, - -44.936865161284686 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2136, - "NAME_1": "Southland", - "ID_2": 25222, - "NAME_2": "Gore", - "VARNAME_2": "", - "HASC_2": "NZ.SO.GO", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 169.01930407560013, - -45.79861889419829 - ], - [ - 169.03900760513937, - -45.81025547873876 - ], - [ - 169.04393348752416, - -45.825770924792714 - ], - [ - 169.0271033893761, - -45.83611455549536 - ], - [ - 169.0151991736128, - -45.86197363225195 - ], - [ - 169.01930407560013, - -45.866498970684354 - ], - [ - 169.06281603666594, - -45.8661757322249 - ], - [ - 169.09113986037855, - -45.85841800919792 - ], - [ - 169.1087909389241, - -45.88750947054909 - ], - [ - 169.0940132917697, - -45.920156554954296 - ], - [ - 169.11166437031525, - -45.94924801630547 - ], - [ - 169.1026335859431, - -45.96864232387291 - ], - [ - 169.08826642898742, - -45.972521185386405 - ], - [ - 169.08046711521146, - -46.00322883903487 - ], - [ - 169.1137168213089, - -46.0394315464941 - ], - [ - 169.16297564515696, - -46.0546237540886 - ], - [ - 169.16502809615065, - -46.07660396933171 - ], - [ - 169.15107142939368, - -46.0804828308452 - ], - [ - 169.16749103734304, - -46.09858418457482 - ], - [ - 169.17693231191393, - -46.11894820752064 - ], - [ - 169.16667005694558, - -46.12735240746653 - ], - [ - 169.13834623323294, - -46.13511013049351 - ], - [ - 169.136704272438, - -46.15256500730421 - ], - [ - 169.16625956674685, - -46.15579739189879 - ], - [ - 169.17857427270886, - -46.169373407196005 - ], - [ - 169.16872250793924, - -46.17810084560136 - ], - [ - 169.1851421158886, - -46.196202199330976 - ], - [ - 169.21182397880628, - -46.205899353114695 - ], - [ - 169.19294142966453, - -46.2340210990875 - ], - [ - 169.19827780224807, - -46.24953654514145 - ], - [ - 169.1925309394658, - -46.262466083519755 - ], - [ - 169.2007407434405, - -46.271516760384564 - ], - [ - 169.18473162568986, - -46.29317373716821 - ], - [ - 169.16790152754177, - -46.27474914497914 - ], - [ - 169.15681829217596, - -46.272163237303474 - ], - [ - 169.12808397826458, - -46.27992096033046 - ], - [ - 169.09852868395575, - -46.27668857573588 - ], - [ - 169.06281603666594, - -46.28670896797907 - ], - [ - 169.04270201692796, - -46.30351736787085 - ], - [ - 169.01560966381155, - -46.29382021408713 - ], - [ - 168.98646485970144, - -46.26181960660084 - ], - [ - 168.9581410359888, - -46.269577329627815 - ], - [ - 168.92119691810277, - -46.26828437578999 - ], - [ - 168.9228388788977, - -46.250829498979286 - ], - [ - 168.84895064312562, - -46.24792035284417 - ], - [ - 168.82021632921425, - -46.256001314330604 - ], - [ - 168.78532466232187, - -46.23693024522262 - ], - [ - 168.79435544669403, - -46.217212699195706 - ], - [ - 168.7951764270915, - -46.18876771476345 - ], - [ - 168.73976025026244, - -46.18650504554725 - ], - [ - 168.70568956376752, - -46.178747322520266 - ], - [ - 168.7151308383384, - -46.15902977649336 - ], - [ - 168.712667897146, - -46.13704956125026 - ], - [ - 168.7660316229814, - -46.117008776763896 - ], - [ - 168.79148201530288, - -46.11571582292606 - ], - [ - 168.81405897623324, - -46.12088763827738 - ], - [ - 168.8161114272269, - -46.10343276146668 - ], - [ - 168.8341729959712, - -46.06432090787233 - ], - [ - 168.80461770166238, - -46.06108852327775 - ], - [ - 168.77670436814847, - -46.04007802341302 - ], - [ - 168.8013337800725, - -46.02779496195363 - ], - [ - 168.7980498584826, - -45.99450140062952 - ], - [ - 168.84484574113827, - -45.98771339298091 - ], - [ - 168.84812966272816, - -45.98124862379176 - ], - [ - 168.82350025080413, - -45.953773354737876 - ], - [ - 168.81405897623324, - -45.93340933179205 - ], - [ - 168.83622544696487, - -45.89914605508956 - ], - [ - 168.83088907438133, - -45.88330737057615 - ], - [ - 168.8440247607408, - -45.868438401441104 - ], - [ - 168.85921289809397, - -45.83611455549536 - ], - [ - 168.90272485915975, - -45.8357913170359 - ], - [ - 168.9507522124116, - -45.83967017854939 - ], - [ - 168.96799280075842, - -45.82932654784675 - ], - [ - 168.9798970165217, - -45.80346747109015 - ], - [ - 169.01930407560013, - -45.79861889419829 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2136, - "NAME_1": "Southland", - "ID_2": 25223, - "NAME_2": "Invercargill", - "VARNAME_2": "", - "HASC_2": "NZ.SO.IC", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 168.415062503064, - -46.57923977378807 - ], - [ - 168.37442397338936, - -46.59669465059877 - ], - [ - 168.37729740478048, - -46.58247215838264 - ], - [ - 168.415062503064, - -46.57923977378807 - ] - ] - ], - [ - [ - [ - 168.51193818996518, - -46.57439119689621 - ], - [ - 168.48074093486142, - -46.56566375849086 - ], - [ - 168.4479017189627, - -46.560815181599 - ], - [ - 168.41177858147412, - -46.56016870468008 - ], - [ - 168.37114005179947, - -46.568572904625974 - ], - [ - 168.36662465961342, - -46.54917859705853 - ], - [ - 168.35020505166406, - -46.53560258176131 - ], - [ - 168.300946227816, - -46.550471550896354 - ], - [ - 168.30628260039953, - -46.58829045065288 - ], - [ - 168.3362483849071, - -46.593139027544744 - ], - [ - 168.3604673066324, - -46.61188685819327 - ], - [ - 168.3350169143109, - -46.6261093504094 - ], - [ - 168.3190077965603, - -46.61188685819327 - ], - [ - 168.3095665219894, - -46.593462266004195 - ], - [ - 168.28411612966792, - -46.59022988140963 - ], - [ - 168.26646505112237, - -46.55596660470713 - ], - [ - 168.24224612939707, - -46.55144126627473 - ], - [ - 168.2229530900566, - -46.51717798957224 - ], - [ - 168.2364992666148, - -46.51297588959929 - ], - [ - 168.2865790708603, - -46.51717798957224 - ], - [ - 168.3214707377527, - -46.50845055116689 - ], - [ - 168.37524495378682, - -46.48517738208595 - ], - [ - 168.34527916927925, - -46.46739926681579 - ], - [ - 168.34897358106787, - -46.43281275165384 - ], - [ - 168.3243441691438, - -46.42376207478903 - ], - [ - 168.32229171815015, - -46.45640915919423 - ], - [ - 168.29560985523247, - -46.46513659759958 - ], - [ - 168.3058721102008, - -46.49487453586967 - ], - [ - 168.2742643648983, - -46.500692828139904 - ], - [ - 168.25989720794263, - -46.49067243589673 - ], - [ - 168.22787897244137, - -46.432166274734925 - ], - [ - 168.1987341683313, - -46.39467061343786 - ], - [ - 168.2389622078072, - -46.40307481338375 - ], - [ - 168.25045593337174, - -46.378185452005525 - ], - [ - 168.34404769868306, - -46.35491228292459 - ], - [ - 168.33912181629825, - -46.33875035995172 - ], - [ - 168.34979456146533, - -46.330346160005824 - ], - [ - 168.36826662040835, - -46.33131587538419 - ], - [ - 168.36251975762607, - -46.355558759843504 - ], - [ - 168.38509671855644, - -46.36105381365428 - ], - [ - 168.3859176989539, - -46.37236715973529 - ], - [ - 168.41957789525006, - -46.36945801360017 - ], - [ - 168.45364858174497, - -46.37721573662716 - ], - [ - 168.45857446412978, - -46.39305442114057 - ], - [ - 168.45241711114878, - -46.40598395951887 - ], - [ - 168.45980593472598, - -46.443802859275394 - ], - [ - 168.45693250333485, - -46.47806613597788 - ], - [ - 168.46226887591837, - -46.51006674346417 - ], - [ - 168.44831220916143, - -46.513622366518206 - ], - [ - 168.45200662095004, - -46.5349561048424 - ], - [ - 168.52014799393984, - -46.5676031892476 - ], - [ - 168.51193818996518, - -46.57439119689621 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2136, - "NAME_1": "Southland", - "ID_2": 25224, - "NAME_2": "Southland", - "VARNAME_2": "", - "HASC_2": "NZ.SO.SL", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 167.4323489672953, - -47.22410050040572 - ], - [ - 167.4409692614687, - -47.229272315757036 - ], - [ - 167.41962377113455, - -47.24963633870286 - ], - [ - 167.39417337881304, - -47.261272923243325 - ], - [ - 167.37652230026748, - -47.249959577162315 - ], - [ - 167.41100347696113, - -47.22603993116246 - ], - [ - 167.4323489672953, - -47.22410050040572 - ] - ] - ], - [ - [ - [ - 167.70778789064568, - -47.18046330837896 - ], - [ - 167.72543896919123, - -47.1930696082978 - ], - [ - 167.70245151806213, - -47.198241423649115 - ], - [ - 167.6897263219014, - -47.18757455448702 - ], - [ - 167.70778789064568, - -47.18046330837896 - ] - ] - ], - [ - [ - [ - 167.61419612533436, - -46.7492632034627 - ], - [ - 167.63964651765585, - -46.75120263421944 - ], - [ - 167.64580387063685, - -46.765101887976115 - ], - [ - 167.6622234785862, - -46.763485695678824 - ], - [ - 167.66386543938114, - -46.78094057248953 - ], - [ - 167.65360318441282, - -46.78902153397597 - ], - [ - 167.6207639685141, - -46.79580954162457 - ], - [ - 167.59818700758373, - -46.767364557192316 - ], - [ - 167.61419612533436, - -46.7492632034627 - ] - ] - ], - [ - [ - [ - 168.5328731901006, - -46.73536394970603 - ], - [ - 168.54559838626133, - -46.75411178035456 - ], - [ - 168.53944103328033, - -46.772213134084176 - ], - [ - 168.50947524877276, - -46.785465910921936 - ], - [ - 168.48812975843862, - -46.77318284946255 - ], - [ - 168.49551858201582, - -46.76154626492208 - ], - [ - 168.52014799393984, - -46.751849111138355 - ], - [ - 168.5328731901006, - -46.73536394970603 - ] - ] - ], - [ - [ - [ - 167.8695210289468, - -46.683645796192835 - ], - [ - 167.9060546566341, - -46.70013095762516 - ], - [ - 167.92534769597458, - -46.699484480706246 - ], - [ - 167.9594183824695, - -46.72081821903044 - ], - [ - 167.97214357863024, - -46.72308088824664 - ], - [ - 167.98486877479098, - -46.76025331108425 - ], - [ - 168.00293034353527, - -46.78869829551651 - ], - [ - 168.04480034380612, - -46.81875947224605 - ], - [ - 168.08174446169215, - -46.83168901062435 - ], - [ - 168.08461789308328, - -46.84817417205668 - ], - [ - 168.123614461963, - -46.862719902732266 - ], - [ - 168.14988583468195, - -46.87758887186731 - ], - [ - 168.1223829913668, - -46.903771187083365 - ], - [ - 168.08749132447443, - -46.9050641409212 - ], - [ - 168.0250968142669, - -46.91346834086709 - ], - [ - 168.0168870102922, - -46.88179097184026 - ], - [ - 167.99923593174665, - -46.878558587245685 - ], - [ - 167.99225759836818, - -46.89084164870507 - ], - [ - 167.9692701472391, - -46.89989232556988 - ], - [ - 167.97871142180998, - -46.92963026383996 - ], - [ - 167.95038759809734, - -46.93900417916423 - ], - [ - 167.9635232844568, - -46.953549909839815 - ], - [ - 167.98610024538718, - -46.92995350229942 - ], - [ - 168.0045723043302, - -46.92510492540756 - ], - [ - 168.02345485347195, - -46.93124645613725 - ], - [ - 168.0324856378441, - -46.94676190219121 - ], - [ - 168.06204093215294, - -46.946438663731755 - ], - [ - 168.07312416751876, - -46.95484286367765 - ], - [ - 168.0981640696415, - -46.960014679028966 - ], - [ - 168.08338642248708, - -46.99072233267742 - ], - [ - 168.12402495216173, - -46.99266176343417 - ], - [ - 168.13510818752755, - -46.98264137119099 - ], - [ - 168.17492573680474, - -46.96647944821812 - ], - [ - 168.17738867799713, - -46.973913932785635 - ], - [ - 168.2159747566781, - -46.996540624947656 - ], - [ - 168.20283907031862, - -47.00817720948813 - ], - [ - 168.2196691684667, - -47.023692655542085 - ], - [ - 168.2011971095237, - -47.02918770935286 - ], - [ - 168.2098174036971, - -47.0479355400014 - ], - [ - 168.1782096583946, - -47.05149116305543 - ], - [ - 168.17123132501612, - -47.07153194754179 - ], - [ - 168.19421877614522, - -47.08575443975792 - ], - [ - 168.1453704424959, - -47.08349177054172 - ], - [ - 168.15768514845792, - -47.10482550886591 - ], - [ - 168.1478333836883, - -47.11710857032529 - ], - [ - 168.12197250116807, - -47.109350847298316 - ], - [ - 168.10514240301998, - -47.11581561648747 - ], - [ - 168.07435563811495, - -47.105148747325366 - ], - [ - 168.05752553996686, - -47.123250101054985 - ], - [ - 168.03289612804284, - -47.130038108703594 - ], - [ - 168.0127821083049, - -47.11969447800095 - ], - [ - 167.96188132366188, - -47.14005850094677 - ], - [ - 167.94587220591126, - -47.13262401637925 - ], - [ - 167.92781063716697, - -47.15298803932507 - ], - [ - 167.91057004882015, - -47.154927470081816 - ], - [ - 167.88224622510754, - -47.175614731487094 - ], - [ - 167.86090073477337, - -47.18304921605462 - ], - [ - 167.84489161702277, - -47.18046330837896 - ], - [ - 167.82641955807972, - -47.19177665445997 - ], - [ - 167.78003416562282, - -47.18531188527082 - ], - [ - 167.76074112628234, - -47.17626120840601 - ], - [ - 167.71722916521654, - -47.18046330837896 - ], - [ - 167.7094298514406, - -47.15880633159531 - ], - [ - 167.6790535767343, - -47.170766154595235 - ], - [ - 167.6741276943495, - -47.19468580059509 - ], - [ - 167.63677308626472, - -47.209878008189584 - ], - [ - 167.60639681155843, - -47.21181743894633 - ], - [ - 167.60311288996854, - -47.22862583883812 - ], - [ - 167.61789053712297, - -47.238646231081304 - ], - [ - 167.63882553725838, - -47.22151459273005 - ], - [ - 167.6605815177913, - -47.234120892648896 - ], - [ - 167.64539338043812, - -47.263858830918984 - ], - [ - 167.61255416453943, - -47.26709121551356 - ], - [ - 167.60844926255209, - -47.248020146405565 - ], - [ - 167.5940821055964, - -47.25125253100014 - ], - [ - 167.56042190930023, - -47.277434846216195 - ], - [ - 167.522246320818, - -47.28713199999992 - ], - [ - 167.49104906571424, - -47.28583904616209 - ], - [ - 167.4565678890206, - -47.27905103851349 - ], - [ - 167.44794759484716, - -47.25804053864875 - ], - [ - 167.46970357538007, - -47.21440334662199 - ], - [ - 167.48407073233574, - -47.211494200486875 - ], - [ - 167.49966935988763, - -47.19727170827075 - ], - [ - 167.51814141883065, - -47.19856466210857 - ], - [ - 167.54359181115214, - -47.177554162243844 - ], - [ - 167.5674002426787, - -47.17626120840601 - ], - [ - 167.57314710546098, - -47.1672105315412 - ], - [ - 167.57478906625593, - -47.134563447135996 - ], - [ - 167.58094641923694, - -47.11710857032529 - ], - [ - 167.5587799485053, - -47.09092625510924 - ], - [ - 167.58217788983313, - -47.08219881670389 - ], - [ - 167.59941847817996, - -47.05924888608241 - ], - [ - 167.61912200771917, - -47.04276372465008 - ], - [ - 167.654834655009, - -47.03662219392039 - ], - [ - 167.7032724984596, - -47.04890525537977 - ], - [ - 167.71476622402415, - -47.041794009271705 - ], - [ - 167.68480043951658, - -47.01431874021782 - ], - [ - 167.69465220428617, - -47.00817720948813 - ], - [ - 167.68438994931785, - -46.991692048055796 - ], - [ - 167.6876738709077, - -46.96647944821812 - ], - [ - 167.73323828296716, - -46.95742877135331 - ], - [ - 167.7578676948912, - -46.93706474840749 - ], - [ - 167.76730896946208, - -46.91476129470492 - ], - [ - 167.76730896946208, - -46.890195171786154 - ], - [ - 167.75088936151272, - -46.84817417205668 - ], - [ - 167.72338651819754, - -46.83039605678652 - ], - [ - 167.72831240058235, - -46.819729187624425 - ], - [ - 167.7008095572672, - -46.79580954162457 - ], - [ - 167.71846063581273, - -46.78481943400302 - ], - [ - 167.7032724984596, - -46.753788541895105 - ], - [ - 167.71928161621022, - -46.74344491119246 - ], - [ - 167.72543896919123, - -46.72857594205742 - ], - [ - 167.71846063581273, - -46.71629288059803 - ], - [ - 167.78783347939876, - -46.68687818078741 - ], - [ - 167.79399083237976, - -46.69366618843601 - ], - [ - 167.84735455821516, - -46.70013095762516 - ], - [ - 167.8695210289468, - -46.683645796192835 - ] - ] - ], - [ - [ - [ - 166.6306616091682, - -46.0956750384397 - ], - [ - 166.6573434720859, - -46.10343276146668 - ], - [ - 166.65364906029728, - -46.117008776763896 - ], - [ - 166.61670494241125, - -46.139958707385375 - ], - [ - 166.60931611883404, - -46.1367263227908 - ], - [ - 166.60315876585304, - -46.11151372295312 - ], - [ - 166.6306616091682, - -46.0956750384397 - ] - ] - ], - [ - [ - [ - 166.51941876531134, - -46.033613254223866 - ], - [ - 166.5300915104784, - -46.04234069262922 - ], - [ - 166.53337543206828, - -46.06690681554799 - ], - [ - 166.50505160835564, - -46.05333080025077 - ], - [ - 166.51941876531134, - -46.033613254223866 - ] - ] - ], - [ - [ - [ - 166.58468670691, - -45.97995566995393 - ], - [ - 166.58591817750622, - -45.986420439143075 - ], - [ - 166.56580415776824, - -46.00743093900781 - ], - [ - 166.5362488634594, - -46.004198554413236 - ], - [ - 166.55102651061384, - -45.984157769926874 - ], - [ - 166.58468670691, - -45.97995566995393 - ] - ] - ], - [ - [ - [ - 166.77351219832755, - -45.743345117631065 - ], - [ - 166.74806180600606, - -45.75789084830665 - ], - [ - 166.71768553129976, - -45.76467885595525 - ], - [ - 166.70537082533775, - -45.77243657898224 - ], - [ - 166.6466707269188, - -45.78051754046867 - ], - [ - 166.64831268771374, - -45.76500209441471 - ], - [ - 166.67786798202258, - -45.76144647136068 - ], - [ - 166.72137994308835, - -45.74463807146889 - ], - [ - 166.77351219832755, - -45.743345117631065 - ] - ] - ], - [ - [ - [ - 166.54076425564548, - -45.74269864071215 - ], - [ - 166.56293072637712, - -45.746577502225634 - ], - [ - 166.52557611829235, - -45.76532533287417 - ], - [ - 166.52352366729866, - -45.77437600973898 - ], - [ - 166.48206415722655, - -45.76920419438766 - ], - [ - 166.49150543179744, - -45.74948664836075 - ], - [ - 166.5177768045164, - -45.75013312527967 - ], - [ - 166.54076425564548, - -45.74269864071215 - ] - ] - ], - [ - [ - [ - 166.83795915952876, - -45.72039518700958 - ], - [ - 166.87244033622238, - -45.723627571604155 - ], - [ - 166.88598651278062, - -45.7339712023068 - ], - [ - 166.84657945370216, - -45.74787045606347 - ], - [ - 166.8227710221756, - -45.7514260791175 - ], - [ - 166.7911632768731, - -45.74625426376618 - ], - [ - 166.78787935528322, - -45.7339712023068 - ], - [ - 166.8059409240275, - -45.72168814084741 - ], - [ - 166.83795915952876, - -45.72039518700958 - ] - ] - ], - [ - [ - [ - 166.6807414134137, - -45.59756457241574 - ], - [ - 166.71358062931242, - -45.621484218415596 - ], - [ - 166.71440160970988, - -45.653161587442426 - ], - [ - 166.7242533744795, - -45.698414971766475 - ], - [ - 166.71768553129976, - -45.72589024082036 - ], - [ - 166.68402533500358, - -45.74884017144184 - ], - [ - 166.6626798446694, - -45.75174931757696 - ], - [ - 166.64831268771374, - -45.739143017658115 - ], - [ - 166.61465249141756, - -45.75239579449587 - ], - [ - 166.58017131472394, - -45.745607786847266 - ], - [ - 166.5883811186986, - -45.721364902387954 - ], - [ - 166.5666251381657, - -45.718778994712295 - ], - [ - 166.55225798121003, - -45.67966714111794 - ], - [ - 166.53132298107462, - -45.687101625685465 - ], - [ - 166.4557927845076, - -45.739143017658115 - ], - [ - 166.44306758834685, - -45.730415579252764 - ], - [ - 166.45538229430886, - -45.71554661011772 - ], - [ - 166.4972522945797, - -45.682899525712514 - ], - [ - 166.5190082751126, - -45.64346443365871 - ], - [ - 166.5456901380303, - -45.62439336455071 - ], - [ - 166.55472092240242, - -45.63182784911824 - ], - [ - 166.58386572651253, - -45.6108173492535 - ], - [ - 166.60480072664797, - -45.60273638776707 - ], - [ - 166.63107209936692, - -45.610170872334585 - ], - [ - 166.6671952368555, - -45.60435258006435 - ], - [ - 166.6807414134137, - -45.59756457241574 - ] - ] - ], - [ - [ - [ - 166.89337533635782, - -45.279821166769054 - ], - [ - 166.9114369051021, - -45.28046764368797 - ], - [ - 166.94838102298814, - -45.301801382012165 - ], - [ - 166.8835235715882, - -45.28725565133658 - ], - [ - 166.89337533635782, - -45.279821166769054 - ] - ] - ], - [ - [ - [ - 166.96397965054004, - -45.150202544526614 - ], - [ - 166.9709579839185, - -45.15666731371576 - ], - [ - 166.9660321015337, - -45.17606162128321 - ], - [ - 166.95330690537295, - -45.18478905968856 - ], - [ - 166.95002298378307, - -45.20353689033709 - ], - [ - 166.9754733761046, - -45.2468508439044 - ], - [ - 166.98819857226533, - -45.258487428444866 - ], - [ - 166.98819857226533, - -45.274972589877194 - ], - [ - 167.00338670961847, - -45.29824575895813 - ], - [ - 166.9914824938552, - -45.30115490509325 - ], - [ - 166.94673906219322, - -45.29404365898518 - ], - [ - 166.94345514060333, - -45.28693241287712 - ], - [ - 166.90979494430718, - -45.27141696682316 - ], - [ - 166.8773662186072, - -45.243295220850364 - ], - [ - 166.87695572840846, - -45.22681005941803 - ], - [ - 166.8958382775502, - -45.21194109028299 - ], - [ - 166.89871170894136, - -45.19901155190469 - ], - [ - 166.9221096502692, - -45.175415144364294 - ], - [ - 166.94140268960967, - -45.16313208290491 - ], - [ - 166.9479705327894, - -45.1518187368239 - ], - [ - 166.96397965054004, - -45.150202544526614 - ] - ] - ], - [ - [ - [ - 168.3485630908691, - -44.49855381026036 - ], - [ - 168.2984832866236, - -44.500493241017104 - ], - [ - 168.28247416887297, - -44.5218269793413 - ], - [ - 168.26112867853882, - -44.527322033152075 - ], - [ - 168.2451195607882, - -44.54865577147627 - ], - [ - 168.250045443173, - -44.56417121753022 - ], - [ - 168.21802720767178, - -44.6061922172597 - ], - [ - 168.2159747566781, - -44.6236470940704 - ], - [ - 168.19503975654268, - -44.66857723993499 - ], - [ - 168.1999656389275, - -44.684092685988944 - ], - [ - 168.17985161918952, - -44.70057784742128 - ], - [ - 168.18765093296548, - -44.70962852428609 - ], - [ - 168.17862014859332, - -44.729022831853534 - ], - [ - 168.19503975654268, - -44.747124185583154 - ], - [ - 168.19503975654268, - -44.78655927763696 - ], - [ - 168.1769781877984, - -44.8250246543124 - ], - [ - 168.1416760307073, - -44.83439856963667 - ], - [ - 168.12320397176427, - -44.87286394631211 - ], - [ - 168.13962357971363, - -44.89128853850118 - ], - [ - 168.1527592660731, - -44.91585466141995 - ], - [ - 168.1404445601111, - -44.941713738176546 - ], - [ - 168.1589166190541, - -44.94236021509546 - ], - [ - 168.19011387415787, - -44.9678960533926 - ], - [ - 168.2073544625047, - -44.99731075320323 - ], - [ - 168.22993142343506, - -45.002805807014006 - ], - [ - 168.2389622078072, - -45.02284659150037 - ], - [ - 168.2791902472831, - -45.02898812223006 - ], - [ - 168.30053573761725, - -45.023493068419285 - ], - [ - 168.31572387497042, - -45.03060431452735 - ], - [ - 168.30381965920714, - -45.05646339128395 - ], - [ - 168.3120294631818, - -45.06551406814876 - ], - [ - 168.30258818861094, - -45.0849083757162 - ], - [ - 168.26728603151983, - -45.09428229104047 - ], - [ - 168.27262240410337, - -45.109797737094425 - ], - [ - 168.25209789416667, - -45.12660613698622 - ], - [ - 168.2463510313844, - -45.139212436905055 - ], - [ - 168.23198387442872, - -45.14309129841855 - ], - [ - 168.27262240410337, - -45.188667921202054 - ], - [ - 168.27056995310969, - -45.20612279801276 - ], - [ - 168.30833505139321, - -45.21905233639105 - ], - [ - 168.30299867880967, - -45.242971982390905 - ], - [ - 168.32352318874635, - -45.265598674552926 - ], - [ - 168.31531338477168, - -45.29598308974193 - ], - [ - 168.33173299272104, - -45.314407681931 - ], - [ - 168.33665887510585, - -45.32992312798496 - ], - [ - 168.47458358188038, - -45.3273372203093 - ], - [ - 168.55668162162715, - -45.31117529733643 - ], - [ - 168.57392220997397, - -45.30115490509325 - ], - [ - 168.57966907275625, - -45.28822536671495 - ], - [ - 168.6363167201815, - -45.27303315912045 - ], - [ - 168.65355730852832, - -45.26301276687727 - ], - [ - 168.65971466150933, - -45.250083228498966 - ], - [ - 168.68803848522197, - -45.24264874393145 - ], - [ - 168.69296436760678, - -45.25816418998541 - ], - [ - 168.70938397555614, - -45.27626554371503 - ], - [ - 168.71430985794092, - -45.29178098976898 - ], - [ - 168.70856299515867, - -45.30471052814728 - ], - [ - 168.71677279913334, - -45.31376120501209 - ], - [ - 168.70445809317133, - -45.33962028176869 - ], - [ - 168.73811828946748, - -45.34770124325512 - ], - [ - 168.76562113278266, - -45.36871174311986 - ], - [ - 168.78655613291807, - -45.362893450849626 - ], - [ - 168.79312397609783, - -45.3897222429846 - ], - [ - 168.78409319172567, - -45.408793312092584 - ], - [ - 168.79722887808515, - -45.43368267347081 - ], - [ - 168.81570093702817, - -45.43432915038972 - ], - [ - 168.84197230974715, - -45.44434954263291 - ], - [ - 168.86619123147244, - -45.43206648117352 - ], - [ - 168.87727446683826, - -45.43497562730864 - ], - [ - 168.87932691783192, - -45.45695584255175 - ], - [ - 168.90190387876228, - -45.46212765790307 - ], - [ - 168.92612280048758, - -45.45016783490314 - ], - [ - 168.94377387903313, - -45.41137921976824 - ], - [ - 168.9786655459255, - -45.36224697393071 - ], - [ - 169.03079780116468, - -45.30309433584999 - ], - [ - 169.0890874093849, - -45.27044725144479 - ], - [ - 169.1137168213089, - -45.29792252049867 - ], - [ - 169.11576927230257, - -45.319902735741785 - ], - [ - 169.15025044899622, - -45.338650566390314 - ], - [ - 169.16872250793924, - -45.33962028176869 - ], - [ - 169.1789847629076, - -45.3706511738766 - ], - [ - 169.19950927284427, - -45.39327786603862 - ], - [ - 169.21346593960124, - -45.38939900452514 - ], - [ - 169.22988554755057, - -45.40782359671421 - ], - [ - 169.21798133178729, - -45.433359435011354 - ], - [ - 169.18965750807467, - -45.44111715803833 - ], - [ - 169.16872250793924, - -45.446935450308565 - ], - [ - 169.15681829217596, - -45.47279452706516 - ], - [ - 169.1609231941633, - -45.47731986549757 - ], - [ - 169.14327211561775, - -45.515785242173 - ], - [ - 169.1412196646241, - -45.53324011898371 - ], - [ - 169.13136789985447, - -45.541644318929606 - ], - [ - 169.11330633111018, - -45.5804329340645 - ], - [ - 169.09360280157097, - -45.59724133395629 - ], - [ - 169.0816985858077, - -45.62310041071289 - ], - [ - 169.079646134814, - -45.64055528752359 - ], - [ - 169.0697943700444, - -45.64895948746948 - ], - [ - 169.04147054633177, - -45.65671721049646 - ], - [ - 169.03654466394696, - -45.680636856496314 - ], - [ - 169.00986280102927, - -45.73881977919866 - ], - [ - 169.0209460363951, - -45.741405686874316 - ], - [ - 169.01930407560013, - -45.79861889419829 - ], - [ - 168.9798970165217, - -45.80346747109015 - ], - [ - 168.96799280075842, - -45.82932654784675 - ], - [ - 168.9507522124116, - -45.83967017854939 - ], - [ - 168.90272485915975, - -45.8357913170359 - ], - [ - 168.85921289809397, - -45.83611455549536 - ], - [ - 168.8440247607408, - -45.868438401441104 - ], - [ - 168.83088907438133, - -45.88330737057615 - ], - [ - 168.83622544696487, - -45.89914605508956 - ], - [ - 168.81405897623324, - -45.93340933179205 - ], - [ - 168.82350025080413, - -45.953773354737876 - ], - [ - 168.84812966272816, - -45.98124862379176 - ], - [ - 168.84484574113827, - -45.98771339298091 - ], - [ - 168.7980498584826, - -45.99450140062952 - ], - [ - 168.8013337800725, - -46.02779496195363 - ], - [ - 168.77670436814847, - -46.04007802341302 - ], - [ - 168.80461770166238, - -46.06108852327775 - ], - [ - 168.8341729959712, - -46.06432090787233 - ], - [ - 168.8161114272269, - -46.10343276146668 - ], - [ - 168.81405897623324, - -46.12088763827738 - ], - [ - 168.79148201530288, - -46.11571582292606 - ], - [ - 168.7660316229814, - -46.117008776763896 - ], - [ - 168.712667897146, - -46.13704956125026 - ], - [ - 168.7151308383384, - -46.15902977649336 - ], - [ - 168.70568956376752, - -46.178747322520266 - ], - [ - 168.73976025026244, - -46.18650504554725 - ], - [ - 168.7951764270915, - -46.18876771476345 - ], - [ - 168.79435544669403, - -46.217212699195706 - ], - [ - 168.78532466232187, - -46.23693024522262 - ], - [ - 168.82021632921425, - -46.256001314330604 - ], - [ - 168.84895064312562, - -46.24792035284417 - ], - [ - 168.9228388788977, - -46.250829498979286 - ], - [ - 168.92119691810277, - -46.26828437578999 - ], - [ - 168.9581410359888, - -46.269577329627815 - ], - [ - 168.98646485970144, - -46.26181960660084 - ], - [ - 169.01560966381155, - -46.29382021408713 - ], - [ - 169.04270201692796, - -46.30351736787085 - ], - [ - 169.06281603666594, - -46.28670896797907 - ], - [ - 169.09852868395575, - -46.27668857573588 - ], - [ - 169.12808397826458, - -46.27992096033046 - ], - [ - 169.15681829217596, - -46.272163237303474 - ], - [ - 169.16790152754177, - -46.27474914497914 - ], - [ - 169.18473162568986, - -46.29317373716821 - ], - [ - 169.20156172383795, - -46.31127509089783 - ], - [ - 169.17529035111897, - -46.34101302916792 - ], - [ - 169.1695434883367, - -46.35426580600567 - ], - [ - 169.14819799800256, - -46.360084098275905 - ], - [ - 169.1391672136304, - -46.37947840584336 - ], - [ - 169.1888365276772, - -46.39467061343786 - ], - [ - 169.20566662582527, - -46.41277196716747 - ], - [ - 169.20402466503035, - -46.430226843978176 - ], - [ - 169.1925309394658, - -46.45640915919423 - ], - [ - 169.16379662555443, - -46.46449012068067 - ], - [ - 169.16502809615065, - -46.475480228302224 - ], - [ - 169.18062672370252, - -46.482591474410285 - ], - [ - 169.1863735864848, - -46.4984301589237 - ], - [ - 169.2204442729797, - -46.50618788195068 - ], - [ - 169.23316946914045, - -46.5197638972479 - ], - [ - 169.25615692026955, - -46.524935712599216 - ], - [ - 169.25041005748727, - -46.53818848943697 - ], - [ - 169.23316946914045, - -46.54885535859907 - ], - [ - 169.22742260635818, - -46.561784896977365 - ], - [ - 169.2019722140367, - -46.563401089274656 - ], - [ - 169.1962253512544, - -46.57665386611241 - ], - [ - 169.21346593960124, - -46.60283618132846 - ], - [ - 169.19827780224807, - -46.61705867354459 - ], - [ - 169.19047848847214, - -46.65455433484166 - ], - [ - 169.1695434883367, - -46.65810995789569 - ], - [ - 169.15107142939368, - -46.64582689643631 - ], - [ - 169.16051270396457, - -46.63095792730127 - ], - [ - 169.15394486078483, - -46.61447276586893 - ], - [ - 169.12972593905954, - -46.60833123513924 - ], - [ - 169.1412196646241, - -46.631281165760726 - ], - [ - 169.11330633111018, - -46.64485718105794 - ], - [ - 169.1038650565393, - -46.6603726271119 - ], - [ - 169.085803487795, - -46.668130350138874 - ], - [ - 169.03654466394696, - -46.66004938865244 - ], - [ - 169.02258799719002, - -46.672332450111824 - ], - [ - 169.00575789904192, - -46.675241596246934 - ], - [ - 168.98933829109257, - -46.66586768092267 - ], - [ - 168.9688137811559, - -46.672978927030734 - ], - [ - 168.94418436923186, - -46.65714024251732 - ], - [ - 168.88096887862685, - -46.65584728867949 - ], - [ - 168.8485401529269, - -46.66004938865244 - ], - [ - 168.82965760378514, - -46.643564227220104 - ], - [ - 168.82596319199652, - -46.62416991965266 - ], - [ - 168.83212054497753, - -46.609300950517614 - ], - [ - 168.80790162325223, - -46.59669465059877 - ], - [ - 168.80215476046996, - -46.579563012247526 - ], - [ - 168.78245123093075, - -46.55984546622062 - ], - [ - 168.7504329954295, - -46.57148205076109 - ], - [ - 168.7151308383384, - -46.568572904625974 - ], - [ - 168.64986289673973, - -46.57374471997729 - ], - [ - 168.59321524931445, - -46.58602778143668 - ], - [ - 168.5997830924942, - -46.568249666166516 - ], - [ - 168.59403622971192, - -46.55305745857201 - ], - [ - 168.5620179942107, - -46.55855251238279 - ], - [ - 168.5595550530183, - -46.565986996950315 - ], - [ - 168.58295299434613, - -46.57600738919349 - ], - [ - 168.5837739747436, - -46.58602778143668 - ], - [ - 168.5197375037411, - -46.606715042841955 - ], - [ - 168.49839201340694, - -46.60962418897707 - ], - [ - 168.42655622862853, - -46.606715042841955 - ], - [ - 168.40151632650577, - -46.59669465059877 - ], - [ - 168.37442397338936, - -46.59669465059877 - ], - [ - 168.415062503064, - -46.57923977378807 - ], - [ - 168.42901916982095, - -46.58538130451776 - ], - [ - 168.47335211128419, - -46.58667425835559 - ], - [ - 168.51111720956771, - -46.597987604436604 - ], - [ - 168.52630534692085, - -46.593462266004195 - ], - [ - 168.51193818996518, - -46.57439119689621 - ], - [ - 168.52014799393984, - -46.5676031892476 - ], - [ - 168.45200662095004, - -46.5349561048424 - ], - [ - 168.44831220916143, - -46.513622366518206 - ], - [ - 168.46226887591837, - -46.51006674346417 - ], - [ - 168.45693250333485, - -46.47806613597788 - ], - [ - 168.45980593472598, - -46.443802859275394 - ], - [ - 168.45241711114878, - -46.40598395951887 - ], - [ - 168.45857446412978, - -46.39305442114057 - ], - [ - 168.45364858174497, - -46.37721573662716 - ], - [ - 168.41957789525006, - -46.36945801360017 - ], - [ - 168.3859176989539, - -46.37236715973529 - ], - [ - 168.38509671855644, - -46.36105381365428 - ], - [ - 168.36251975762607, - -46.355558759843504 - ], - [ - 168.36826662040835, - -46.33131587538419 - ], - [ - 168.34979456146533, - -46.330346160005824 - ], - [ - 168.33912181629825, - -46.33875035995172 - ], - [ - 168.34404769868306, - -46.35491228292459 - ], - [ - 168.25045593337174, - -46.378185452005525 - ], - [ - 168.2389622078072, - -46.40307481338375 - ], - [ - 168.1987341683313, - -46.39467061343786 - ], - [ - 168.17123132501612, - -46.36881153668126 - ], - [ - 168.12689838355288, - -46.34812427527598 - ], - [ - 168.08543887348077, - -46.33939683687063 - ], - [ - 168.05218916738332, - -46.342305983005744 - ], - [ - 168.0250968142669, - -46.35652847522188 - ], - [ - 168.02181289267702, - -46.36784182130289 - ], - [ - 168.03166465744664, - -46.384650221194676 - ], - [ - 167.99759397095173, - -46.38206431351902 - ], - [ - 167.9475141667062, - -46.3617002905732 - ], - [ - 167.91795887239738, - -46.35717495214079 - ], - [ - 167.88347769570373, - -46.36557915208669 - ], - [ - 167.88470916629993, - -46.392084705762194 - ], - [ - 167.8633636759658, - -46.38788260578925 - ], - [ - 167.85351191119616, - -46.37624602124878 - ], - [ - 167.826009067881, - -46.36881153668126 - ], - [ - 167.80343210695065, - -46.38626641349196 - ], - [ - 167.7870124990013, - -46.39014527500545 - ], - [ - 167.76320406747473, - -46.3791551673839 - ], - [ - 167.7545837733013, - -46.36784182130289 - ], - [ - 167.7311858319735, - -46.359437621356996 - ], - [ - 167.72995436137728, - -46.33454825997877 - ], - [ - 167.6897263219014, - -46.32969968308691 - ], - [ - 167.69095779249758, - -46.31062861397891 - ], - [ - 167.72954387117855, - -46.29802231406008 - ], - [ - 167.72913338097982, - -46.27571886035751 - ], - [ - 167.71599769462034, - -46.26181960660084 - ], - [ - 167.64210945884827, - -46.20913173770927 - ], - [ - 167.6146066155331, - -46.19264657627694 - ], - [ - 167.57478906625593, - -46.1800402763581 - ], - [ - 167.53415053658128, - -46.16323187646631 - ], - [ - 167.48817563432308, - -46.15224176884476 - ], - [ - 167.45903083021298, - -46.149009384250185 - ], - [ - 167.40402514358266, - -46.1519185303853 - ], - [ - 167.3937628886143, - -46.17713113022298 - ], - [ - 167.35517680993334, - -46.192000099358026 - ], - [ - 167.36379710410674, - -46.23143519141183 - ], - [ - 167.34080965297767, - -46.2514759758982 - ], - [ - 167.32028514304096, - -46.25470836049277 - ], - [ - 167.28580396634732, - -46.24565768362797 - ], - [ - 167.25296475044863, - -46.24792035284417 - ], - [ - 167.21437867176763, - -46.26278932197921 - ], - [ - 167.1885177892474, - -46.26084989122246 - ], - [ - 167.1302281810272, - -46.25050626051983 - ], - [ - 167.10559876910318, - -46.25470836049277 - ], - [ - 167.02103778816402, - -46.228202806817265 - ], - [ - 166.97711533689952, - -46.23143519141183 - ], - [ - 166.9114369051021, - -46.219798606871365 - ], - [ - 166.88270259119074, - -46.218828891493 - ], - [ - 166.87326131661987, - -46.210424691547104 - ], - [ - 166.8445270027085, - -46.20913173770927 - ], - [ - 166.8248234731693, - -46.21624298381734 - ], - [ - 166.80265700243766, - -46.21559650689842 - ], - [ - 166.77597513951994, - -46.233051383709125 - ], - [ - 166.7706387669364, - -46.216566222276796 - ], - [ - 166.7291792568643, - -46.21430355306059 - ], - [ - 166.72261141368455, - -46.206222591574154 - ], - [ - 166.69428758997194, - -46.212364122303846 - ], - [ - 166.6671952368555, - -46.208162022330896 - ], - [ - 166.63025111896945, - -46.17228255333112 - ], - [ - 166.6199888640011, - -46.147069953493435 - ], - [ - 166.68361484480485, - -46.11506934600715 - ], - [ - 166.70906523712634, - -46.11506934600715 - ], - [ - 166.7098862175238, - -46.08727083849381 - ], - [ - 166.7254848450757, - -46.07143215398039 - ], - [ - 166.76981778653894, - -46.058179377142636 - ], - [ - 166.78131151210349, - -46.04201745416976 - ], - [ - 166.7694072963402, - -46.0219766696834 - ], - [ - 166.76858631594274, - -46.00646122362944 - ], - [ - 166.78049053170602, - -45.998380262143 - ], - [ - 166.82195004177814, - -45.992885208332225 - ], - [ - 166.8445270027085, - -45.985773962224165 - ], - [ - 166.8506843556895, - -45.96896556233237 - ], - [ - 166.79691013965538, - -45.9786627161161 - ], - [ - 166.77679611991744, - -45.9915922544944 - ], - [ - 166.75504013938453, - -45.99579435446734 - ], - [ - 166.73862053143517, - -46.013572469737504 - ], - [ - 166.76653386494908, - -46.04072450033193 - ], - [ - 166.76571288455162, - -46.05106813103457 - ], - [ - 166.7349261196466, - -46.05106813103457 - ], - [ - 166.72261141368455, - -46.067553292466904 - ], - [ - 166.70701278613268, - -46.07013920014256 - ], - [ - 166.69798200176052, - -46.052037846412944 - ], - [ - 166.7242533744795, - -46.02617876965635 - ], - [ - 166.7193274920947, - -46.02068371584557 - ], - [ - 166.68525680559978, - -46.051714607953485 - ], - [ - 166.65898543288083, - -46.063027954034496 - ], - [ - 166.65570151129094, - -46.07401806165605 - ], - [ - 166.61506298161632, - -46.05979556943992 - ], - [ - 166.6039797462505, - -46.074664538574964 - ], - [ - 166.57114053035178, - -46.09050322308838 - ], - [ - 166.5666251381657, - -46.07369482319659 - ], - [ - 166.58263425591633, - -46.06238147711558 - ], - [ - 166.58550768730748, - -46.04912870027783 - ], - [ - 166.60849513843655, - -46.05333080025077 - ], - [ - 166.6002853344619, - -46.03005763116983 - ], - [ - 166.61834690320617, - -45.988036631440366 - ], - [ - 166.6392819033416, - -45.97801623919718 - ], - [ - 166.68238337420865, - -45.96961203925129 - ], - [ - 166.72384288428077, - -45.96896556233237 - ], - [ - 166.768175825744, - -45.96250079314323 - ], - [ - 166.7423149432238, - -45.94439943941361 - ], - [ - 166.70578131553648, - -45.957005739332445 - ], - [ - 166.6511861191049, - -45.95118744706221 - ], - [ - 166.64543925632262, - -45.94052057790012 - ], - [ - 166.65939592307956, - -45.92177274725158 - ], - [ - 166.67540504083019, - -45.91304530884623 - ], - [ - 166.67047915844537, - -45.8965601474139 - ], - [ - 166.64708121711755, - -45.91239883192732 - ], - [ - 166.61588396201378, - -45.956359262413535 - ], - [ - 166.59618043247454, - -45.97058175462966 - ], - [ - 166.5518474910113, - -45.97963243149447 - ], - [ - 166.5300915104784, - -45.992885208332225 - ], - [ - 166.4997152357721, - -46.00161264673758 - ], - [ - 166.48083268663035, - -45.99676406984572 - ], - [ - 166.46030817669367, - -46.00969360822401 - ], - [ - 166.4484039609304, - -45.98868310835928 - ], - [ - 166.4471724903342, - -45.949894493224384 - ], - [ - 166.45086690212278, - -45.940843816359575 - ], - [ - 166.42582700000003, - -45.90270167814359 - ], - [ - 166.43732072556458, - -45.88395384749506 - ], - [ - 166.42870043139115, - -45.843549040062875 - ], - [ - 166.4496354315266, - -45.83029626322512 - ], - [ - 166.44553052953924, - -45.81801320176574 - ], - [ - 166.4754963140468, - -45.81478081717116 - ], - [ - 166.47713827484176, - -45.80831604798201 - ], - [ - 166.51941876531134, - -45.79441679422534 - ], - [ - 166.58017131472394, - -45.791507648090224 - ], - [ - 166.61465249141756, - -45.79861889419829 - ], - [ - 166.61957837380237, - -45.7924773634686 - ], - [ - 166.6598064132783, - -45.78374992506325 - ], - [ - 166.70537082533775, - -45.77825487125247 - ], - [ - 166.75421915898707, - -45.76564857133363 - ], - [ - 166.80429896323258, - -45.759507040603935 - ], - [ - 166.84986337529205, - -45.76015351752285 - ], - [ - 166.8855760225819, - -45.73752682536083 - ], - [ - 166.9504334739818, - -45.732678248468964 - ], - [ - 166.96192719954635, - -45.70003116406376 - ], - [ - 166.94961249358434, - -45.69679877946919 - ], - [ - 166.93935023861602, - -45.72039518700958 - ], - [ - 166.91184739530084, - -45.72459728698253 - ], - [ - 166.87654523820973, - -45.7149001331988 - ], - [ - 166.86340955185025, - -45.71780927933392 - ], - [ - 166.8383696497275, - -45.70617269479345 - ], - [ - 166.8059409240275, - -45.7103747947664 - ], - [ - 166.73533660984532, - -45.72879938695548 - ], - [ - 166.7291792568643, - -45.70649593325291 - ], - [ - 166.7377995510377, - -45.6799903795774 - ], - [ - 166.768175825744, - -45.66350521814507 - ], - [ - 166.81743464959206, - -45.656393972037 - ], - [ - 166.85889415966417, - -45.643787672118165 - ], - [ - 166.8543787674781, - -45.62988841836149 - ], - [ - 166.79034229647564, - -45.65251511052352 - ], - [ - 166.73246317845417, - -45.659949595091035 - ], - [ - 166.7316421980567, - -45.594655426280625 - ], - [ - 166.76776533554528, - -45.59368571090226 - ], - [ - 166.7862373944883, - -45.57720054946992 - ], - [ - 166.8457584733047, - -45.55748300344302 - ], - [ - 166.88311308138947, - -45.55198794963224 - ], - [ - 166.87161935582492, - -45.54293727276743 - ], - [ - 166.80429896323258, - -45.55522033422682 - ], - [ - 166.73697857064025, - -45.58010969560504 - ], - [ - 166.68648827619597, - -45.58366531865907 - ], - [ - 166.6708896486441, - -45.57461464179426 - ], - [ - 166.67047915844537, - -45.550694995794416 - ], - [ - 166.6807414134137, - -45.517078196010836 - ], - [ - 166.6963400409656, - -45.49865360382176 - ], - [ - 166.71768553129976, - -45.50447189609199 - ], - [ - 166.71070719792127, - -45.47117833476788 - ], - [ - 166.72835827646682, - -45.4527537425788 - ], - [ - 166.74559886481364, - -45.40911655055204 - ], - [ - 166.75791357077566, - -45.39812644293049 - ], - [ - 166.78172200230222, - -45.392308150660256 - ], - [ - 166.82974935555407, - -45.40556092749801 - ], - [ - 166.85273680668317, - -45.42107637355197 - ], - [ - 166.86997739503, - -45.4139651274439 - ], - [ - 166.77022827673767, - -45.374206796930636 - ], - [ - 166.7776171003149, - -45.34640828941729 - ], - [ - 166.80511994363005, - -45.31279148963372 - ], - [ - 166.8301598457528, - -45.300185189714874 - ], - [ - 166.84042210072116, - -45.27755849755285 - ], - [ - 166.86176759105533, - -45.28014440522851 - ], - [ - 166.87285082642114, - -45.290811274390606 - ], - [ - 166.90815298351222, - -45.306649958904025 - ], - [ - 166.9381187680198, - -45.310852058876975 - ], - [ - 166.94961249358434, - -45.32119568957961 - ], - [ - 166.97177896431597, - -45.3228118818769 - ], - [ - 166.98450416047672, - -45.33315551257954 - ], - [ - 167.02842661174122, - -45.35287305860644 - ], - [ - 167.06660220022349, - -45.361277258552335 - ], - [ - 167.09041063175005, - -45.38519690455219 - ], - [ - 167.09328406314117, - -45.39877291984941 - ], - [ - 167.11586102407153, - -45.430773527335695 - ], - [ - 167.1117561220842, - -45.453400219497716 - ], - [ - 167.14007994579683, - -45.44499601955182 - ], - [ - 167.12940720062974, - -45.43206648117352 - ], - [ - 167.13269112221963, - -45.41849046587631 - ], - [ - 167.09656798473105, - -45.37323708155226 - ], - [ - 167.06660220022349, - -45.35028715093078 - ], - [ - 167.04895112167793, - -45.3486709586335 - ], - [ - 167.00749161160581, - -45.32119568957961 - ], - [ - 167.01734337637544, - -45.30309433584999 - ], - [ - 167.0341734745235, - -45.293073943606814 - ], - [ - 167.128996710431, - -45.28305355136363 - ], - [ - 167.15567857334872, - -45.26947753606642 - ], - [ - 167.1248918084437, - -45.26204305149889 - ], - [ - 167.11011416128926, - -45.27691202063394 - ], - [ - 167.04443572949185, - -45.2817605975258 - ], - [ - 167.02514269015137, - -45.28660917441766 - ], - [ - 167.01118602339443, - -45.28014440522851 - ], - [ - 167.002565729221, - -45.26462895917456 - ], - [ - 167.00626014100962, - -45.25072970541788 - ], - [ - 166.9914824938552, - -45.23683045166121 - ], - [ - 166.96767406232863, - -45.191577067337164 - ], - [ - 166.98327268988052, - -45.1670109444184 - ], - [ - 166.97301043491217, - -45.14212158304017 - ], - [ - 166.99805033703493, - -45.125313183148386 - ], - [ - 167.01036504299694, - -45.1062421140404 - ], - [ - 167.03950984710704, - -45.11238364477009 - ], - [ - 167.0801483767817, - -45.16054617522925 - ], - [ - 167.08794769055763, - -45.1540814060401 - ], - [ - 167.05305602366528, - -45.10818154479714 - ], - [ - 167.02760563134376, - -45.10365620636474 - ], - [ - 167.0423832784982, - -45.077797129608136 - ], - [ - 167.06044484724248, - -45.06098872971635 - ], - [ - 167.08794769055763, - -45.05355424514883 - ], - [ - 167.09738896512852, - -45.075534460391935 - ], - [ - 167.1117561220842, - -45.07456474501357 - ], - [ - 167.0912316121475, - -45.037392322175954 - ], - [ - 167.10354631810952, - -45.029957837608436 - ], - [ - 167.1240708280462, - -45.0044219993113 - ], - [ - 167.14541631838037, - -45.018644491527425 - ], - [ - 167.19221220103603, - -45.02252335304091 - ], - [ - 167.19672759322208, - -45.02737192993278 - ], - [ - 167.24270249548027, - -45.04418032982456 - ], - [ - 167.27636269177646, - -45.0499986220948 - ], - [ - 167.27184729959038, - -45.037392322175954 - ], - [ - 167.24680739746762, - -45.03836203755433 - ], - [ - 167.20945278938285, - -45.016705060770676 - ], - [ - 167.16347788712466, - -45.00506847623021 - ], - [ - 167.14623729877783, - -45.00862409928424 - ], - [ - 167.13597504380948, - -44.99310865323028 - ], - [ - 167.14623729877783, - -44.97436082258175 - ], - [ - 167.16963524010566, - -44.9678960533926 - ], - [ - 167.2201255345499, - -44.92296590752801 - ], - [ - 167.2271038679284, - -44.90874341531188 - ], - [ - 167.243112985679, - -44.90648074609568 - ], - [ - 167.26979484859672, - -44.87092451555536 - ], - [ - 167.29935014290555, - -44.86349003098784 - ], - [ - 167.32480053522704, - -44.846681631096054 - ], - [ - 167.33998867258018, - -44.844418961879846 - ], - [ - 167.34778798635614, - -44.876419569366135 - ], - [ - 167.36708102569662, - -44.89096530004172 - ], - [ - 167.37652230026748, - -44.92199619214964 - ], - [ - 167.3666705354979, - -44.92975391517662 - ], - [ - 167.3654390649017, - -44.94914822274407 - ], - [ - 167.39622582980672, - -44.95173413041973 - ], - [ - 167.40484612398012, - -44.96821929185206 - ], - [ - 167.38062720225483, - -44.98470445328439 - ], - [ - 167.38842651603076, - -44.99019950709516 - ], - [ - 167.42454965351934, - -44.9656333841764 - ], - [ - 167.40238318278773, - -44.94332993047384 - ], - [ - 167.38432161404344, - -44.936865161284686 - ], - [ - 167.3937628886143, - -44.92199619214964 - ], - [ - 167.38432161404344, - -44.883207577014744 - ], - [ - 167.37488033947255, - -44.87544985398777 - ], - [ - 167.35640828052954, - -44.84538867725822 - ], - [ - 167.3584607315232, - -44.821792269717825 - ], - [ - 167.39212092781938, - -44.805953585204406 - ], - [ - 167.40525661417885, - -44.79560995450177 - ], - [ - 167.4483580850459, - -44.773952977718125 - ], - [ - 167.489817595118, - -44.776862123853235 - ], - [ - 167.53168759538886, - -44.81015568517736 - ], - [ - 167.51649945803572, - -44.819206362042166 - ], - [ - 167.48899661472055, - -44.84603515417714 - ], - [ - 167.51239455604838, - -44.84797458493388 - ], - [ - 167.51978337962558, - -44.833105615798836 - ], - [ - 167.54564426214583, - -44.80724653904224 - ], - [ - 167.4967959284965, - -44.75714457782633 - ], - [ - 167.5004903402851, - -44.74777066250206 - ], - [ - 167.53045612479266, - -44.7299925472319 - ], - [ - 167.5550855367167, - -44.7383967471778 - ], - [ - 167.57766249764705, - -44.7254672087995 - ], - [ - 167.5624743602939, - -44.71415386271849 - ], - [ - 167.56411632108885, - -44.68926450134026 - ], - [ - 167.58710377221794, - -44.66857723993499 - ], - [ - 167.61378563513563, - -44.658880086151264 - ], - [ - 167.62651083129637, - -44.66211247074584 - ], - [ - 167.6560661256052, - -44.6866785936646 - ], - [ - 167.6667388707723, - -44.67730467834034 - ], - [ - 167.6523717138166, - -44.65823360923235 - ], - [ - 167.63472063527104, - -44.64659702469188 - ], - [ - 167.6679703413685, - -44.63302100939467 - ], - [ - 167.70778789064568, - -44.60489926342186 - ], - [ - 167.73693269475578, - -44.604252786502954 - ], - [ - 167.750478871314, - -44.58000990204364 - ], - [ - 167.78331808721268, - -44.57192894055721 - ], - [ - 167.78783347939876, - -44.586151432773335 - ], - [ - 167.80302161675192, - -44.59132324812465 - ], - [ - 167.81656779331013, - -44.60586897880024 - ], - [ - 167.81903073450252, - -44.565464171368056 - ], - [ - 167.82888249927214, - -44.540898048449286 - ], - [ - 167.82888249927214, - -44.51051363326029 - ], - [ - 167.81574681291266, - -44.497907333341445 - ], - [ - 167.83873426404176, - -44.488856656476635 - ], - [ - 167.85679583278605, - -44.465906725855156 - ], - [ - 167.86213220536956, - -44.44683565674717 - ], - [ - 167.89291897027462, - -44.4200068646122 - ], - [ - 167.9220637743847, - -44.402875226260946 - ], - [ - 167.92986308816066, - -44.38994568788265 - ], - [ - 167.95654495107834, - -44.37960205718001 - ], - [ - 167.97378553942517, - -44.38542034945024 - ], - [ - 167.99923593174665, - -44.361500703450396 - ], - [ - 168.03741152022891, - -44.40804704161227 - ], - [ - 168.03207514764537, - -44.43584554912561 - ], - [ - 168.0493157359922, - -44.450391279801195 - ], - [ - 168.0534206379795, - -44.46299757972004 - ], - [ - 168.05629406937067, - -44.50986715634137 - ], - [ - 168.0796920106985, - -44.511483348638656 - ], - [ - 168.0714822067238, - -44.49273551799013 - ], - [ - 168.0714822067238, - -44.46429053355787 - ], - [ - 168.05711504976813, - -44.41515828772033 - ], - [ - 168.03453808883776, - -44.38800625712591 - ], - [ - 168.0201709318821, - -44.38639006482862 - ], - [ - 168.01729750049094, - -44.37152109569357 - ], - [ - 168.00498279452893, - -44.366349280342256 - ], - [ - 168.00662475532386, - -44.33855077282892 - ], - [ - 168.00046740234285, - -44.325621234450615 - ], - [ - 168.05095769678712, - -44.325621234450615 - ], - [ - 168.09118573626304, - -44.33014657288302 - ], - [ - 168.10473191282125, - -44.31495436528852 - ], - [ - 168.1162256383858, - -44.29103471928867 - ], - [ - 168.09693259904532, - -44.27648898861308 - ], - [ - 168.11704661878326, - -44.27648898861308 - ], - [ - 168.1248459325592, - -44.28553966547789 - ], - [ - 168.1539907366693, - -44.28844881161301 - ], - [ - 168.21679573707559, - -44.271317173261764 - ], - [ - 168.24060416860212, - -44.25903411180238 - ], - [ - 168.28740005125778, - -44.26291297331586 - ], - [ - 168.3140819141755, - -44.28327699626169 - ], - [ - 168.32844907113116, - -44.2793981347482 - ], - [ - 168.35020505166406, - -44.28456995009952 - ], - [ - 168.3592358360362, - -44.30461073458588 - ], - [ - 168.35020505166406, - -44.32400504215333 - ], - [ - 168.37319250279316, - -44.3401669651262 - ], - [ - 168.37852887537667, - -44.35568241118016 - ], - [ - 168.41834642465386, - -44.361500703450396 - ], - [ - 168.4125995618716, - -44.37443024182869 - ], - [ - 168.39248554213364, - -44.39123864172048 - ], - [ - 168.36457220861973, - -44.398673126288 - ], - [ - 168.35430995365138, - -44.407077326233896 - ], - [ - 168.37072956160074, - -44.425178679963516 - ], - [ - 168.35964632623492, - -44.461704625882206 - ], - [ - 168.34035328689444, - -44.48917989493609 - ], - [ - 168.3485630908691, - -44.49855381026036 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2137, - "NAME_1": "Taranaki", - "ID_2": 25225, - "NAME_2": "New Plymouth", - "VARNAME_2": "", - "HASC_2": "NZ.TK.NP", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.61633793533542, - -38.70676709370148 - ], - [ - 174.6257792099063, - -38.723898732052724 - ], - [ - 174.64917715123414, - -38.72228253975544 - ], - [ - 174.66026038659996, - -38.73553531659319 - ], - [ - 174.67339607295943, - -38.7316564550797 - ], - [ - 174.7070562692556, - -38.73230293199862 - ], - [ - 174.74441087734039, - -38.737797985809394 - ], - [ - 174.7517997009176, - -38.746525424214745 - ], - [ - 174.79777460317575, - -38.732626170458076 - ], - [ - 174.82199352490107, - -38.741676847322886 - ], - [ - 174.85154881920988, - -38.77658660094429 - ], - [ - 174.86837891735797, - -38.77690983940375 - ], - [ - 174.82199352490107, - -38.79080909316042 - ], - [ - 174.8141942111251, - -38.82054703143051 - ], - [ - 174.79079626979728, - -38.82216322372779 - ], - [ - 174.8092683287403, - -38.8441434389709 - ], - [ - 174.80023754436817, - -38.86289126961943 - ], - [ - 174.8334872504656, - -38.902326361673246 - ], - [ - 174.8343082308631, - -38.91299323083534 - ], - [ - 174.8322557798694, - -38.92980163072713 - ], - [ - 174.80844734834284, - -38.93141782302442 - ], - [ - 174.80105852476564, - -38.92269038461907 - ], - [ - 174.7579570538986, - -38.93044810764604 - ], - [ - 174.74317940674416, - -38.91299323083534 - ], - [ - 174.73086470078215, - -38.927862199970384 - ], - [ - 174.71772901442267, - -38.931741061483876 - ], - [ - 174.72922273998722, - -38.95566070748373 - ], - [ - 174.7132136222366, - -38.966004338186366 - ], - [ - 174.72799126939103, - -38.98313597653761 - ], - [ - 174.74564234793658, - -38.99444932261862 - ], - [ - 174.73414862237203, - -39.01966192245631 - ], - [ - 174.7288122497885, - -39.042935091537245 - ], - [ - 174.70910872024928, - -39.04907662226694 - ], - [ - 174.69145764170372, - -39.03808651464538 - ], - [ - 174.67175411216448, - -39.04422804537507 - ], - [ - 174.67955342594044, - -39.06362235294252 - ], - [ - 174.65984989640123, - -39.06976388367221 - ], - [ - 174.66436528858728, - -39.08463285280726 - ], - [ - 174.65492401401642, - -39.09303705275315 - ], - [ - 174.66600724938223, - -39.10596659113145 - ], - [ - 174.6257792099063, - -39.10758278342874 - ], - [ - 174.60156028818102, - -39.09853210656393 - ], - [ - 174.5867826410266, - -39.08140046821268 - ], - [ - 174.56051126830764, - -39.08948142969912 - ], - [ - 174.55106999373675, - -39.09788562964501 - ], - [ - 174.55230146433297, - -39.11921936796921 - ], - [ - 174.526030091614, - -39.12730032945564 - ], - [ - 174.53670283678107, - -39.14022986783394 - ], - [ - 174.5309559739988, - -39.15283616775278 - ], - [ - 174.53629234658234, - -39.17869524450938 - ], - [ - 174.53013499360134, - -39.19130154442822 - ], - [ - 174.50714754247224, - -39.20326136742815 - ], - [ - 174.48210764034948, - -39.183543821401244 - ], - [ - 174.44926842445076, - -39.192917736725505 - ], - [ - 174.450499895047, - -39.2142514750497 - ], - [ - 174.424228522328, - -39.22200919807668 - ], - [ - 174.418071169347, - -39.23461549799552 - ], - [ - 174.39138930642932, - -39.2317063518604 - ], - [ - 174.36142352192175, - -39.23526197491444 - ], - [ - 174.35198224735086, - -39.24366617486033 - ], - [ - 174.30436538429774, - -39.235585213373895 - ], - [ - 174.29081920773953, - -39.228797205725286 - ], - [ - 174.25756950164208, - -39.238171121049554 - ], - [ - 174.2649583252193, - -39.246898559454905 - ], - [ - 174.22924567792947, - -39.27340411313042 - ], - [ - 174.2029743052105, - -39.28083859769794 - ], - [ - 174.17957636388266, - -39.29279842069786 - ], - [ - 174.06710204942962, - -39.29603080529244 - ], - [ - 173.96447949974618, - -39.26370695934669 - ], - [ - 173.9673529311373, - -39.25724219015754 - ], - [ - 173.93533469563607, - -39.249484467130564 - ], - [ - 173.90618989152597, - -39.23526197491444 - ], - [ - 173.87211920503105, - -39.19518040594171 - ], - [ - 173.81875547919566, - -39.17126075994186 - ], - [ - 173.83312263615136, - -39.167705136887825 - ], - [ - 173.84543734211337, - -39.1534826446717 - ], - [ - 173.91193675430824, - -39.11921936796921 - ], - [ - 173.94723891139935, - -39.115663744915175 - ], - [ - 174.0026550882284, - -39.085925806645086 - ], - [ - 174.02400057856255, - -39.05748082221283 - ], - [ - 174.03467332372963, - -39.05295548378042 - ], - [ - 174.07161744161567, - -39.05586462991554 - ], - [ - 174.0970678339372, - -39.045520999212904 - ], - [ - 174.13401195182323, - -39.019985160915766 - ], - [ - 174.15617842255486, - -39.01642953786173 - ], - [ - 174.17957636388266, - -38.995742276456454 - ], - [ - 174.19845891302444, - -38.98798455342947 - ], - [ - 174.23006665832693, - -38.988954268807845 - ], - [ - 174.2432023446864, - -38.98313597653761 - ], - [ - 174.26783175661043, - -38.9870148380511 - ], - [ - 174.3113437176762, - -38.982489499618694 - ], - [ - 174.3404885217863, - -38.993802845699705 - ], - [ - 174.39179979662805, - -38.988954268807845 - ], - [ - 174.40862989477614, - -38.98184302269978 - ], - [ - 174.43572224789256, - -38.96244871513233 - ], - [ - 174.49729577770262, - -38.89747778478139 - ], - [ - 174.52274617002413, - -38.88875034637603 - ], - [ - 174.55969028791017, - -38.855133546592455 - ], - [ - 174.57775185665446, - -38.82701180061966 - ], - [ - 174.58965607241774, - -38.79985977002523 - ], - [ - 174.60238126857848, - -38.75945496259305 - ], - [ - 174.60935960195695, - -38.712262147512256 - ], - [ - 174.61633793533542, - -38.70676709370148 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2137, - "NAME_1": "Taranaki", - "ID_2": 25226, - "NAME_2": "South Taranaki", - "VARNAME_2": "", - "HASC_2": "NZ.TK.ST", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.06710204942962, - -39.29603080529244 - ], - [ - 174.09583636334096, - -39.38104252012975 - ], - [ - 174.0970678339372, - -39.4026994969134 - ], - [ - 174.1180028340726, - -39.407871312264724 - ], - [ - 174.1762924422928, - -39.40819455072418 - ], - [ - 174.18614420706243, - -39.40011358923774 - ], - [ - 174.22678273673705, - -39.39979035077829 - ], - [ - 174.25346459965476, - -39.392032627751306 - ], - [ - 174.27768352138006, - -39.40140654307557 - ], - [ - 174.28507234495726, - -39.410133981480925 - ], - [ - 174.34213048258127, - -39.40948750456201 - ], - [ - 174.3560871493382, - -39.41627551221062 - ], - [ - 174.37209626708884, - -39.405931881507975 - ], - [ - 174.39631518881413, - -39.414982558372785 - ], - [ - 174.41601871835334, - -39.40916426610255 - ], - [ - 174.45008940484826, - -39.40981074302147 - ], - [ - 174.4763607775672, - -39.40205301999449 - ], - [ - 174.49401185611276, - -39.41304312761604 - ], - [ - 174.52069371903045, - -39.405285404589065 - ], - [ - 174.51658881704313, - -39.39041643545402 - ], - [ - 174.526030091614, - -39.38201223550813 - ], - [ - 174.5793938174494, - -39.36649678945417 - ], - [ - 174.6011497979823, - -39.38201223550813 - ], - [ - 174.61428548434176, - -39.378133373994636 - ], - [ - 174.68242685733156, - -39.37942632783246 - ], - [ - 174.69022617110753, - -39.398820635399915 - ], - [ - 174.7082877398518, - -39.40981074302147 - ], - [ - 174.88110411351872, - -39.40690159688635 - ], - [ - 174.89629225087188, - -39.424033235237594 - ], - [ - 174.8905453880896, - -39.436962773615896 - ], - [ - 174.90819646663516, - -39.44795288123745 - ], - [ - 174.93816225114273, - -39.482539396399396 - ], - [ - 174.9619706826693, - -39.48092320410211 - ], - [ - 174.97756931022116, - -39.50872171161545 - ], - [ - 174.9718224474389, - -39.52165124999375 - ], - [ - 174.99070499658066, - -39.5433082267774 - ], - [ - 174.9952203887667, - -39.55817719591244 - ], - [ - 174.9829056828047, - -39.57304616504749 - ], - [ - 174.97141195724015, - -39.59825876488517 - ], - [ - 174.97962176121484, - -39.61765307245262 - ], - [ - 174.97387489843257, - -39.63058261083091 - ], - [ - 174.98249519260597, - -39.649976918398366 - ], - [ - 174.99768332995913, - -39.66710855674961 - ], - [ - 174.98126372200977, - -39.677452187452246 - ], - [ - 174.95499234929082, - -39.68585638739815 - ], - [ - 174.93118391776426, - -39.68747257969543 - ], - [ - 174.92666852557818, - -39.71074574877637 - ], - [ - 174.94144617273258, - -39.72820062558707 - ], - [ - 174.9283104863731, - -39.73240272556002 - ], - [ - 174.9159957804111, - -39.74694845623561 - ], - [ - 174.88890342729468, - -39.75502941772204 - ], - [ - 174.88028313312125, - -39.77377724837058 - ], - [ - 174.8527802898061, - -39.781534971397555 - ], - [ - 174.84374950543395, - -39.800282802046084 - ], - [ - 174.80516342675298, - -39.80513137893795 - ], - [ - 174.7895647992011, - -39.83583903258641 - ], - [ - 174.7690402892644, - -39.851677717099825 - ], - [ - 174.778892054034, - -39.86202134780246 - ], - [ - 174.72306538700622, - -39.86848611699161 - ], - [ - 174.7045933280632, - -39.86266782472138 - ], - [ - 174.67791146514548, - -39.84553618637013 - ], - [ - 174.6499981316316, - -39.83583903258641 - ], - [ - 174.5867826410266, - -39.81935387115408 - ], - [ - 174.5601007781089, - -39.81709120193788 - ], - [ - 174.53547136618488, - -39.804484902019034 - ], - [ - 174.51371538565198, - -39.78250468677592 - ], - [ - 174.4968852875039, - -39.777332871424605 - ], - [ - 174.44762646365584, - -39.75373646388421 - ], - [ - 174.418071169347, - -39.73207948710056 - ], - [ - 174.38687391424324, - -39.700078879614274 - ], - [ - 174.354855678742, - -39.661290264479376 - ], - [ - 174.33515214920277, - -39.64674453380379 - ], - [ - 174.29861852151546, - -39.62670374931743 - ], - [ - 174.2612639134307, - -39.618299549371535 - ], - [ - 174.23499254071174, - -39.60213762639866 - ], - [ - 174.19886940322317, - -39.586945418804156 - ], - [ - 174.1627462657346, - -39.58597570342579 - ], - [ - 174.13072803023334, - -39.57886445731772 - ], - [ - 174.07859577499417, - -39.577894741939346 - ], - [ - 174.04124116690937, - -39.559793388209734 - ], - [ - 173.98992989206766, - -39.5539750959395 - ], - [ - 173.9587326369639, - -39.539106126804455 - ], - [ - 173.90824234251963, - -39.51098438083165 - ], - [ - 173.89182273457027, - -39.49288302710204 - ], - [ - 173.8565205774792, - -39.46346832729141 - ], - [ - 173.8314806753564, - -39.44698316585907 - ], - [ - 173.82039743999061, - -39.4308212428862 - ], - [ - 173.79658900846405, - -39.41821494296736 - ], - [ - 173.77113861614254, - -39.36649678945417 - ], - [ - 173.76785469455268, - -39.33805180502191 - ], - [ - 173.75923440037926, - -39.32124340513012 - ], - [ - 173.75143508660332, - -39.28213155153577 - ], - [ - 173.75512949839194, - -39.267585820860184 - ], - [ - 173.77483302793115, - -39.24366617486033 - ], - [ - 173.77770645932227, - -39.215544428887526 - ], - [ - 173.79576802806656, - -39.19130154442822 - ], - [ - 173.81711351840073, - -39.17966495988775 - ], - [ - 173.81875547919566, - -39.17126075994186 - ], - [ - 173.87211920503105, - -39.19518040594171 - ], - [ - 173.90618989152597, - -39.23526197491444 - ], - [ - 173.93533469563607, - -39.249484467130564 - ], - [ - 173.9673529311373, - -39.25724219015754 - ], - [ - 173.96447949974618, - -39.26370695934669 - ], - [ - 174.06710204942962, - -39.29603080529244 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2137, - "NAME_1": "Taranaki", - "ID_2": 25227, - "NAME_2": "Stratford", - "VARNAME_2": "", - "HASC_2": "NZ.TK.SF", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.88233558411494, - -39.242373221022504 - ], - [ - 174.86673695656305, - -39.263383720887234 - ], - [ - 174.85360127020357, - -39.267585820860184 - ], - [ - 174.83923411324787, - -39.299263189887014 - ], - [ - 174.82568793668966, - -39.303142051400506 - ], - [ - 174.82815087788208, - -39.33546589734625 - ], - [ - 174.85565372119723, - -39.33805180502191 - ], - [ - 174.89875519206427, - -39.36875945867037 - ], - [ - 174.88110411351872, - -39.40690159688635 - ], - [ - 174.7082877398518, - -39.40981074302147 - ], - [ - 174.69022617110753, - -39.398820635399915 - ], - [ - 174.68242685733156, - -39.37942632783246 - ], - [ - 174.61428548434176, - -39.378133373994636 - ], - [ - 174.6011497979823, - -39.38201223550813 - ], - [ - 174.5793938174494, - -39.36649678945417 - ], - [ - 174.526030091614, - -39.38201223550813 - ], - [ - 174.51658881704313, - -39.39041643545402 - ], - [ - 174.52069371903045, - -39.405285404589065 - ], - [ - 174.49401185611276, - -39.41304312761604 - ], - [ - 174.4763607775672, - -39.40205301999449 - ], - [ - 174.45008940484826, - -39.40981074302147 - ], - [ - 174.41601871835334, - -39.40916426610255 - ], - [ - 174.39631518881413, - -39.414982558372785 - ], - [ - 174.37209626708884, - -39.405931881507975 - ], - [ - 174.3560871493382, - -39.41627551221062 - ], - [ - 174.34213048258127, - -39.40948750456201 - ], - [ - 174.28507234495726, - -39.410133981480925 - ], - [ - 174.27768352138006, - -39.40140654307557 - ], - [ - 174.25346459965476, - -39.392032627751306 - ], - [ - 174.22678273673705, - -39.39979035077829 - ], - [ - 174.18614420706243, - -39.40011358923774 - ], - [ - 174.1762924422928, - -39.40819455072418 - ], - [ - 174.1180028340726, - -39.407871312264724 - ], - [ - 174.0970678339372, - -39.4026994969134 - ], - [ - 174.09583636334096, - -39.38104252012975 - ], - [ - 174.06710204942962, - -39.29603080529244 - ], - [ - 174.17957636388266, - -39.29279842069786 - ], - [ - 174.2029743052105, - -39.28083859769794 - ], - [ - 174.22924567792947, - -39.27340411313042 - ], - [ - 174.2649583252193, - -39.246898559454905 - ], - [ - 174.25756950164208, - -39.238171121049554 - ], - [ - 174.29081920773953, - -39.228797205725286 - ], - [ - 174.30436538429774, - -39.235585213373895 - ], - [ - 174.35198224735086, - -39.24366617486033 - ], - [ - 174.36142352192175, - -39.23526197491444 - ], - [ - 174.39138930642932, - -39.2317063518604 - ], - [ - 174.418071169347, - -39.23461549799552 - ], - [ - 174.424228522328, - -39.22200919807668 - ], - [ - 174.450499895047, - -39.2142514750497 - ], - [ - 174.44926842445076, - -39.192917736725505 - ], - [ - 174.48210764034948, - -39.183543821401244 - ], - [ - 174.50714754247224, - -39.20326136742815 - ], - [ - 174.53013499360134, - -39.19130154442822 - ], - [ - 174.53629234658234, - -39.17869524450938 - ], - [ - 174.5309559739988, - -39.15283616775278 - ], - [ - 174.53670283678107, - -39.14022986783394 - ], - [ - 174.526030091614, - -39.12730032945564 - ], - [ - 174.55230146433297, - -39.11921936796921 - ], - [ - 174.55106999373675, - -39.09788562964501 - ], - [ - 174.56051126830764, - -39.08948142969912 - ], - [ - 174.5867826410266, - -39.08140046821268 - ], - [ - 174.60156028818102, - -39.09853210656393 - ], - [ - 174.6257792099063, - -39.10758278342874 - ], - [ - 174.66600724938223, - -39.10596659113145 - ], - [ - 174.65492401401642, - -39.09303705275315 - ], - [ - 174.66436528858728, - -39.08463285280726 - ], - [ - 174.65984989640123, - -39.06976388367221 - ], - [ - 174.67955342594044, - -39.06362235294252 - ], - [ - 174.67175411216448, - -39.04422804537507 - ], - [ - 174.69145764170372, - -39.03808651464538 - ], - [ - 174.70910872024928, - -39.04907662226694 - ], - [ - 174.7288122497885, - -39.042935091537245 - ], - [ - 174.73414862237203, - -39.01966192245631 - ], - [ - 174.74564234793658, - -38.99444932261862 - ], - [ - 174.72799126939103, - -38.98313597653761 - ], - [ - 174.7132136222366, - -38.966004338186366 - ], - [ - 174.72922273998722, - -38.95566070748373 - ], - [ - 174.71772901442267, - -38.931741061483876 - ], - [ - 174.73086470078215, - -38.927862199970384 - ], - [ - 174.74317940674416, - -38.91299323083534 - ], - [ - 174.7579570538986, - -38.93044810764604 - ], - [ - 174.80105852476564, - -38.92269038461907 - ], - [ - 174.80844734834284, - -38.93141782302442 - ], - [ - 174.8322557798694, - -38.92980163072713 - ], - [ - 174.8343082308631, - -38.91299323083534 - ], - [ - 174.8466229368251, - -38.898124261700296 - ], - [ - 174.8663264663643, - -38.89230596943006 - ], - [ - 174.88767195669845, - -38.907498177024564 - ], - [ - 174.88849293709595, - -38.918488284646116 - ], - [ - 174.87617823113393, - -38.9330340153217 - ], - [ - 174.89095587828834, - -38.950488892132405 - ], - [ - 174.88520901550606, - -38.96309519205125 - ], - [ - 174.88767195669845, - -38.99509579953754 - ], - [ - 174.91763774120602, - -38.991540176483504 - ], - [ - 174.93528881975158, - -39.00253028410506 - ], - [ - 174.95909725127814, - -39.00091409180777 - ], - [ - 174.96771754545156, - -39.03097526853732 - ], - [ - 174.9829056828047, - -39.04810690688856 - ], - [ - 174.96648607485537, - -39.0584505375912 - ], - [ - 174.9985043103566, - -39.07622865286136 - ], - [ - 175.0182078398958, - -39.070410360591126 - ], - [ - 175.05227852639072, - -39.07105683751004 - ], - [ - 175.04653166360845, - -39.083663137428886 - ], - [ - 175.0604883303654, - -39.09012790661804 - ], - [ - 175.0789603893084, - -39.11178488340168 - ], - [ - 175.06582470294893, - -39.11598698337463 - ], - [ - 175.0375008792363, - -39.10273420653687 - ], - [ - 175.02436519287681, - -39.106613068050365 - ], - [ - 175.01287146731227, - -39.131825667888045 - ], - [ - 174.99686234956167, - -39.14216929859069 - ], - [ - 174.99439940836925, - -39.15930093694193 - ], - [ - 174.9681280356503, - -39.16738189842837 - ], - [ - 174.9451405845212, - -39.17966495988775 - ], - [ - 174.94308813352754, - -39.196796598239 - ], - [ - 174.92584754518072, - -39.23461549799552 - ], - [ - 174.899165682263, - -39.242696459481955 - ], - [ - 174.88233558411494, - -39.242373221022504 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25228, - "NAME_2": "Franklin", - "VARNAME_2": "", - "HASC_2": "NZ.WK.FK", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.32812793993983, - -37.188516049629754 - ], - [ - 175.30842441040062, - -37.18431394965681 - ], - [ - 175.24849284138548, - -37.201768826467514 - ], - [ - 175.20169695872983, - -37.20467797260263 - ], - [ - 175.17911999779946, - -37.21663779560256 - ], - [ - 175.17624656640834, - -37.2337694339538 - ], - [ - 175.18650882137666, - -37.24637573387265 - ], - [ - 175.15366960547797, - -37.256396126115824 - ], - [ - 175.16393186044633, - -37.27934605673731 - ], - [ - 175.11179960520712, - -37.29550797971018 - ], - [ - 175.08881215407803, - -37.307791041169565 - ], - [ - 175.0654142127502, - -37.298740364304756 - ], - [ - 175.06623519314766, - -37.330417733331586 - ], - [ - 175.05350999698692, - -37.33461983330453 - ], - [ - 175.0338064674477, - -37.351104994736865 - ], - [ - 175.06828764414135, - -37.39377247138525 - ], - [ - 175.05556244798058, - -37.418985071222934 - ], - [ - 175.06582470294893, - -37.43191460960123 - ], - [ - 175.01369244770973, - -37.448076532574106 - ], - [ - 175.00384068294014, - -37.45615749406054 - ], - [ - 174.99152597697812, - -37.48137009389822 - ], - [ - 175.00178823194648, - -37.49429963227652 - ], - [ - 174.96894901604776, - -37.5043200245197 - ], - [ - 174.96320215326548, - -37.52759319360064 - ], - [ - 174.95047695710474, - -37.54213892427623 - ], - [ - 174.9242055843858, - -37.550219885762665 - ], - [ - 174.91517480001363, - -37.579957824032746 - ], - [ - 174.89465029007695, - -37.56476561643825 - ], - [ - 174.8646845055694, - -37.55797760878964 - ], - [ - 174.82527744649093, - -37.57026067024903 - ], - [ - 174.80885783854157, - -37.58060430095166 - ], - [ - 174.8092683287403, - -37.591271170113764 - ], - [ - 174.77232421085426, - -37.59256412395159 - ], - [ - 174.7690402892644, - -37.56250294722204 - ], - [ - 174.75508362250744, - -37.53147205511413 - ], - [ - 174.74317940674416, - -37.518219278276376 - ], - [ - 174.74564234793658, - -37.50399678606024 - ], - [ - 174.71731852422394, - -37.46262226324969 - ], - [ - 174.7107506810442, - -37.44290471722279 - ], - [ - 174.70048842607585, - -37.43126813268232 - ], - [ - 174.7021303868708, - -37.40282314825006 - ], - [ - 174.71444509283282, - -37.389570371412304 - ], - [ - 174.74030597535304, - -37.38569150989881 - ], - [ - 174.78463891681628, - -37.33235716408833 - ], - [ - 174.8080368581441, - -37.32233677184515 - ], - [ - 174.82281450529854, - -37.310376948845224 - ], - [ - 174.8490858780175, - -37.30261922581825 - ], - [ - 174.84539146622888, - -37.287427018223745 - ], - [ - 174.85154881920988, - -37.2748207183049 - ], - [ - 174.8646845055694, - -37.27094185679141 - ], - [ - 174.90491254504528, - -37.280962249034594 - ], - [ - 174.9184587216035, - -37.2877502566832 - ], - [ - 174.9209216627959, - -37.25995174916986 - ], - [ - 174.93693078054653, - -37.24993135692668 - ], - [ - 174.92297411378956, - -37.23215324165652 - ], - [ - 174.96976999644522, - -37.240234203142954 - ], - [ - 174.99891480055533, - -37.21534484176473 - ], - [ - 174.99480989856798, - -37.20015263417023 - ], - [ - 174.95293989829713, - -37.147141526819205 - ], - [ - 174.93939372173892, - -37.140353519170596 - ], - [ - 174.94555107471993, - -37.1274239807923 - ], - [ - 174.9586867610794, - -37.12386835773827 - ], - [ - 174.96894901604776, - -37.13712113457602 - ], - [ - 174.9923469573756, - -37.135504942278736 - ], - [ - 175.01492391830595, - -37.12354511927881 - ], - [ - 175.0108190163186, - -37.10835291168431 - ], - [ - 175.02395470267808, - -37.10447405017082 - ], - [ - 175.02313372228062, - -37.08281707338717 - ], - [ - 175.0424267616211, - -37.06633191195483 - ], - [ - 175.058025389173, - -37.04564465054956 - ], - [ - 175.0777289187122, - -37.03982635827933 - ], - [ - 175.09168558546915, - -37.05728123509003 - ], - [ - 175.12780872295775, - -37.052109419738706 - ], - [ - 175.15161715448428, - -37.061483335062974 - ], - [ - 175.16064793885644, - -37.04241226595499 - ], - [ - 175.15325911527924, - -37.02269471992808 - ], - [ - 175.17296264481845, - -37.01687642765785 - ], - [ - 175.1832248997868, - -37.0301292044956 - ], - [ - 175.20703333131337, - -37.03950311981987 - ], - [ - 175.21647460588423, - -37.03109891987397 - ], - [ - 175.27353274350824, - -37.02431091222537 - ], - [ - 175.2850264690728, - -37.002330696982256 - ], - [ - 175.30390901821454, - -37.05760447354949 - ], - [ - 175.29898313582973, - -37.07958468879259 - ], - [ - 175.30801392020186, - -37.08734241181957 - ], - [ - 175.2973411750348, - -37.115464157792374 - ], - [ - 175.30308803781708, - -37.14196971146788 - ], - [ - 175.33346431252338, - -37.18172804198115 - ], - [ - 175.32812793993983, - -37.188516049629754 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25237, - "NAME_2": "Waikato", - "VARNAME_2": "", - "HASC_2": "NZ.WK.WT", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.32812793993983, - -37.188516049629754 - ], - [ - 175.33428529292084, - -37.19627377265674 - ], - [ - 175.31499225358036, - -37.21243569562961 - ], - [ - 175.3240230379525, - -37.244759541575355 - ], - [ - 175.31458176338163, - -37.25316374152125 - ], - [ - 175.34495803808792, - -37.32330648722352 - ], - [ - 175.3593251950436, - -37.35142823319632 - ], - [ - 175.38641754816004, - -37.37567111765563 - ], - [ - 175.37697627358915, - -37.38407531760153 - ], - [ - 175.40119519531444, - -37.414459732790526 - ], - [ - 175.3921644109423, - -37.43385404035797 - ], - [ - 175.38272313637142, - -37.44225824030387 - ], - [ - 175.3933958815385, - -37.455187778682166 - ], - [ - 175.3736923519993, - -37.46132930941186 - ], - [ - 175.38436509716635, - -37.47458208624962 - ], - [ - 175.3970902933271, - -37.53050233973576 - ], - [ - 175.41186794048153, - -37.55894732416802 - ], - [ - 175.412688920879, - -37.580281062492205 - ], - [ - 175.4213092150524, - -37.61066547768121 - ], - [ - 175.4323924504182, - -37.634261885221605 - ], - [ - 175.44593862697644, - -37.69018213870775 - ], - [ - 175.46523166631692, - -37.73317285381559 - ], - [ - 175.48534568605487, - -37.73802143070745 - ], - [ - 175.49273450963207, - -37.74674886911281 - ], - [ - 175.51900588235105, - -37.73899114608582 - ], - [ - 175.53214156871053, - -37.76355726900459 - ], - [ - 175.5440457844738, - -37.76937556127483 - ], - [ - 175.54568774526874, - -37.790709299599015 - ], - [ - 175.51941637254978, - -37.798467022626 - ], - [ - 175.50340725479916, - -37.808810653328635 - ], - [ - 175.48657715665107, - -37.80816417640972 - ], - [ - 175.48780862724726, - -37.82949791473391 - ], - [ - 175.47467294088779, - -37.833376776247405 - ], - [ - 175.45455892114984, - -37.828851437815 - ], - [ - 175.4282875484309, - -37.83660916084198 - ], - [ - 175.4274665680334, - -37.87475129905796 - ], - [ - 175.3835441167689, - -37.87151891446339 - ], - [ - 175.36384058722967, - -37.87766044519308 - ], - [ - 175.34947343027397, - -37.860205568382376 - ], - [ - 175.35522029305625, - -37.84759926846353 - ], - [ - 175.3240230379525, - -37.82982115319337 - ], - [ - 175.3264859791449, - -37.81268951484213 - ], - [ - 175.33880068510692, - -37.79814378416654 - ], - [ - 175.31129784179174, - -37.78489100732878 - ], - [ - 175.3133502927854, - -37.767759368977536 - ], - [ - 175.29241529265, - -37.75224392292358 - ], - [ - 175.29077333185506, - -37.72024331543729 - ], - [ - 175.26039705714877, - -37.71313206932923 - ], - [ - 175.2209899980703, - -37.725091892329154 - ], - [ - 175.20826480190956, - -37.73963762300474 - ], - [ - 175.18856127237035, - -37.745455915274974 - ], - [ - 175.20580186071714, - -37.756446022896526 - ], - [ - 175.22386342946146, - -37.77842623813964 - ], - [ - 175.23535715502598, - -37.802022645680026 - ], - [ - 175.21278019409564, - -37.81430570713941 - ], - [ - 175.21319068429437, - -37.82497257630151 - ], - [ - 175.17994097819692, - -37.82400286092314 - ], - [ - 175.17008921342733, - -37.83240706086903 - ], - [ - 175.1372499975286, - -37.84210421465276 - ], - [ - 175.13601852693242, - -37.82077047632856 - ], - [ - 175.1200094091818, - -37.8311141070312 - ], - [ - 175.1031793110337, - -37.830790868571746 - ], - [ - 175.10728421302105, - -37.84565983770679 - ], - [ - 175.08758068348183, - -37.851478129977025 - ], - [ - 175.09866391884765, - -37.86440766835532 - ], - [ - 175.06500372255147, - -37.86376119143641 - ], - [ - 175.05720440877553, - -37.903842760409134 - ], - [ - 175.09127509527042, - -37.96428835232768 - ], - [ - 175.10564225222612, - -37.98141999067892 - ], - [ - 175.03914284003125, - -37.99047066754373 - ], - [ - 175.02847009486416, - -37.97754112916543 - ], - [ - 175.00835607512622, - -37.983359421435665 - ], - [ - 174.9911154867794, - -37.97236931381411 - ], - [ - 174.9705909768427, - -37.96752073692225 - ], - [ - 174.937751760944, - -37.97754112916543 - ], - [ - 174.92502656478325, - -37.992086859841024 - ], - [ - 174.89752372146808, - -37.978834083003264 - ], - [ - 174.86673695656305, - -37.9823897060573 - ], - [ - 174.88028313312125, - -37.96622778308442 - ], - [ - 174.86961038795417, - -37.94877290627372 - ], - [ - 174.8248669562922, - -37.95750034467907 - ], - [ - 174.8154256817213, - -37.96816721384117 - ], - [ - 174.81788862291373, - -37.9823897060573 - ], - [ - 174.8322557798694, - -37.99273333675993 - ], - [ - 174.79490117178463, - -38.00695582897606 - ], - [ - 174.78874381880362, - -37.98626856757079 - ], - [ - 174.7801235246302, - -37.97754112916543 - ], - [ - 174.7871018580087, - -37.953621483165584 - ], - [ - 174.7653458774758, - -37.89155969894975 - ], - [ - 174.75877803429606, - -37.8614985222202 - ], - [ - 174.7764291128416, - -37.83014439165283 - ], - [ - 174.79161725019475, - -37.82303314554476 - ], - [ - 174.82650891708712, - -37.82077047632856 - ], - [ - 174.83595019165801, - -37.80751769949081 - ], - [ - 174.86796842715924, - -37.80266912259894 - ], - [ - 174.88028313312125, - -37.79394168419359 - ], - [ - 174.899165682263, - -37.80493179181515 - ], - [ - 174.96894901604776, - -37.78876986884227 - ], - [ - 174.96238117286802, - -37.7726079458694 - ], - [ - 174.9426776433288, - -37.754183353680325 - ], - [ - 174.92461607458452, - -37.751920684464125 - ], - [ - 174.91394332941744, - -37.76000164595056 - ], - [ - 174.89465029007695, - -37.79038606113956 - ], - [ - 174.8663264663643, - -37.790709299599015 - ], - [ - 174.8396446034466, - -37.80008321492328 - ], - [ - 174.83020332887574, - -37.756446022896526 - ], - [ - 174.81912009350992, - -37.73414256919396 - ], - [ - 174.81953058370866, - -37.71668769238326 - ], - [ - 174.81214176013145, - -37.6859800387348 - ], - [ - 174.80105852476564, - -37.66787868500518 - ], - [ - 174.79490117178463, - -37.64201960824858 - ], - [ - 174.7739661716492, - -37.6016148008164 - ], - [ - 174.77232421085426, - -37.59256412395159 - ], - [ - 174.8092683287403, - -37.591271170113764 - ], - [ - 174.80885783854157, - -37.58060430095166 - ], - [ - 174.82527744649093, - -37.57026067024903 - ], - [ - 174.8646845055694, - -37.55797760878964 - ], - [ - 174.89465029007695, - -37.56476561643825 - ], - [ - 174.91517480001363, - -37.579957824032746 - ], - [ - 174.9242055843858, - -37.550219885762665 - ], - [ - 174.95047695710474, - -37.54213892427623 - ], - [ - 174.96320215326548, - -37.52759319360064 - ], - [ - 174.96894901604776, - -37.5043200245197 - ], - [ - 175.00178823194648, - -37.49429963227652 - ], - [ - 174.99152597697812, - -37.48137009389822 - ], - [ - 175.00384068294014, - -37.45615749406054 - ], - [ - 175.01369244770973, - -37.448076532574106 - ], - [ - 175.06582470294893, - -37.43191460960123 - ], - [ - 175.05556244798058, - -37.418985071222934 - ], - [ - 175.06828764414135, - -37.39377247138525 - ], - [ - 175.0338064674477, - -37.351104994736865 - ], - [ - 175.05350999698692, - -37.33461983330453 - ], - [ - 175.06623519314766, - -37.330417733331586 - ], - [ - 175.0654142127502, - -37.298740364304756 - ], - [ - 175.08881215407803, - -37.307791041169565 - ], - [ - 175.11179960520712, - -37.29550797971018 - ], - [ - 175.16393186044633, - -37.27934605673731 - ], - [ - 175.15366960547797, - -37.256396126115824 - ], - [ - 175.18650882137666, - -37.24637573387265 - ], - [ - 175.17624656640834, - -37.2337694339538 - ], - [ - 175.17911999779946, - -37.21663779560256 - ], - [ - 175.20169695872983, - -37.20467797260263 - ], - [ - 175.24849284138548, - -37.201768826467514 - ], - [ - 175.30842441040062, - -37.18431394965681 - ], - [ - 175.32812793993983, - -37.188516049629754 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25238, - "NAME_2": "Waipa", - "VARNAME_2": "", - "HASC_2": "NZ.WK.WP", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.66349843230535, - -37.95071233703047 - ], - [ - 175.65857254992054, - -37.973985506111404 - ], - [ - 175.66637186369647, - -37.99337981367885 - ], - [ - 175.65487813813192, - -38.01859241351653 - ], - [ - 175.66226696170915, - -38.02731985192189 - ], - [ - 175.6643194127028, - -38.05899722094871 - ], - [ - 175.6446158831636, - -38.065138751678404 - ], - [ - 175.64420539296486, - -38.10328088989439 - ], - [ - 175.62532284382308, - -38.11976605132672 - ], - [ - 175.6507732361446, - -38.15015046651572 - ], - [ - 175.57195911798772, - -38.173746874056114 - ], - [ - 175.56046539242317, - -38.1989594738938 - ], - [ - 175.52064784314598, - -38.162110289515645 - ], - [ - 175.5062806861903, - -38.14465541270494 - ], - [ - 175.50176529400423, - -38.1297864435699 - ], - [ - 175.47179950949666, - -38.13334206662393 - ], - [ - 175.44963303876503, - -38.10715975140788 - ], - [ - 175.42213019544988, - -38.093583736110666 - ], - [ - 175.37081892060814, - -38.0819471515702 - ], - [ - 175.35111539106893, - -38.08776544384043 - ], - [ - 175.3240230379525, - -38.084856297705315 - ], - [ - 175.28748941026518, - -38.09035135151609 - ], - [ - 175.25382921396903, - -38.089704874597174 - ], - [ - 175.20210744892856, - -38.067078182435154 - ], - [ - 175.19102421356274, - -38.053825405597394 - ], - [ - 175.20703333131337, - -38.043805013354216 - ], - [ - 175.20210744892856, - -38.01794593659762 - ], - [ - 175.19471862535136, - -38.00921849819227 - ], - [ - 175.16434235064506, - -38.0021072520842 - ], - [ - 175.15243813488178, - -38.02731985192189 - ], - [ - 175.13478705633622, - -38.01632974430033 - ], - [ - 175.10564225222612, - -37.98141999067892 - ], - [ - 175.09127509527042, - -37.96428835232768 - ], - [ - 175.05720440877553, - -37.903842760409134 - ], - [ - 175.06500372255147, - -37.86376119143641 - ], - [ - 175.09866391884765, - -37.86440766835532 - ], - [ - 175.08758068348183, - -37.851478129977025 - ], - [ - 175.10728421302105, - -37.84565983770679 - ], - [ - 175.1031793110337, - -37.830790868571746 - ], - [ - 175.1200094091818, - -37.8311141070312 - ], - [ - 175.13601852693242, - -37.82077047632856 - ], - [ - 175.1372499975286, - -37.84210421465276 - ], - [ - 175.17008921342733, - -37.83240706086903 - ], - [ - 175.17994097819692, - -37.82400286092314 - ], - [ - 175.21319068429437, - -37.82497257630151 - ], - [ - 175.21278019409564, - -37.81430570713941 - ], - [ - 175.23535715502598, - -37.802022645680026 - ], - [ - 175.26573342973228, - -37.80913389178809 - ], - [ - 175.27024882191836, - -37.82400286092314 - ], - [ - 175.30062509662466, - -37.8311141070312 - ], - [ - 175.31170833199047, - -37.84436688386896 - ], - [ - 175.3240230379525, - -37.82982115319337 - ], - [ - 175.35522029305625, - -37.84759926846353 - ], - [ - 175.34947343027397, - -37.860205568382376 - ], - [ - 175.36384058722967, - -37.87766044519308 - ], - [ - 175.3835441167689, - -37.87151891446339 - ], - [ - 175.4274665680334, - -37.87475129905796 - ], - [ - 175.4282875484309, - -37.83660916084198 - ], - [ - 175.45455892114984, - -37.828851437815 - ], - [ - 175.47467294088779, - -37.833376776247405 - ], - [ - 175.48780862724726, - -37.82949791473391 - ], - [ - 175.48657715665107, - -37.80816417640972 - ], - [ - 175.50340725479916, - -37.808810653328635 - ], - [ - 175.51941637254978, - -37.798467022626 - ], - [ - 175.54568774526874, - -37.790709299599015 - ], - [ - 175.5440457844738, - -37.76937556127483 - ], - [ - 175.5850948043472, - -37.77907271505855 - ], - [ - 175.57606401997504, - -37.79782054570708 - ], - [ - 175.60972421627122, - -37.79879026108546 - ], - [ - 175.59782000050794, - -37.82400286092314 - ], - [ - 175.62203892223323, - -37.83305353778795 - ], - [ - 175.62614382422058, - -37.84792250692299 - ], - [ - 175.64666833415725, - -37.85277108381485 - ], - [ - 175.63435362819524, - -37.86731681449044 - ], - [ - 175.63189068700285, - -37.88412521438222 - ], - [ - 175.65405715773446, - -37.910307529598285 - ], - [ - 175.66390892250408, - -37.912570198814485 - ], - [ - 175.653236177337, - -37.94844966781426 - ], - [ - 175.66349843230535, - -37.95071233703047 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2138, - "NAME_1": "Waikato", - "ID_2": 25239, - "NAME_2": "Waitomo", - "VARNAME_2": "", - "HASC_2": "NZ.WK.WO", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.80639489734918, - -38.12461462821858 - ], - [ - 174.80639489734918, - -38.12493786667804 - ], - [ - 174.8187096033112, - -38.141746266569825 - ], - [ - 174.84949636821622, - -38.13010968202936 - ], - [ - 174.8527802898061, - -38.15047370497518 - ], - [ - 174.83307676026686, - -38.176009543272315 - ], - [ - 174.83553970145928, - -38.20801015075861 - ], - [ - 174.86837891735797, - -38.198312996974884 - ], - [ - 174.93857274134146, - -38.194110897001934 - ], - [ - 174.9693595062465, - -38.20122214311 - ], - [ - 174.98701058479205, - -38.16340324335348 - ], - [ - 175.02067078108823, - -38.164372958731846 - ], - [ - 175.01451342810722, - -38.17697925865069 - ], - [ - 175.0547414675831, - -38.176009543272315 - ], - [ - 175.06007784016666, - -38.20154538156946 - ], - [ - 175.1113891150084, - -38.213828443028845 - ], - [ - 175.1356080367337, - -38.22287911989365 - ], - [ - 175.16228989965137, - -38.22578826602877 - ], - [ - 175.18240391938934, - -38.21964673529908 - ], - [ - 175.19020323316528, - -38.239041042866525 - ], - [ - 175.184456370383, - -38.25164734278536 - ], - [ - 175.20210744892856, - -38.26296068886638 - ], - [ - 175.22263195886524, - -38.26748602729878 - ], - [ - 175.2136011744931, - -38.286557096406774 - ], - [ - 175.23412568442978, - -38.291405673298634 - ], - [ - 175.23864107661586, - -38.30627464243368 - ], - [ - 175.2694278415209, - -38.313385888541745 - ], - [ - 175.26860686112343, - -38.302719019379644 - ], - [ - 175.31622372417655, - -38.31015350394716 - ], - [ - 175.33100137133096, - -38.327608380757866 - ], - [ - 175.34290558709424, - -38.35120478829826 - ], - [ - 175.33715872431196, - -38.363811088217105 - ], - [ - 175.36630352842207, - -38.39872084183851 - ], - [ - 175.39750078352583, - -38.40583208794658 - ], - [ - 175.41720431306507, - -38.399690557216886 - ], - [ - 175.4053000973018, - -38.37609414967649 - ], - [ - 175.425003626841, - -38.370275857406256 - ], - [ - 175.43772882300175, - -38.404539134108745 - ], - [ - 175.4808302938688, - -38.39710464954123 - ], - [ - 175.48904009784349, - -38.416175718649214 - ], - [ - 175.5038177449979, - -38.43363059545992 - ], - [ - 175.53542549030038, - -38.45108547227062 - ], - [ - 175.54732970606366, - -38.474681879811016 - ], - [ - 175.57236960818645, - -38.494399425837926 - ], - [ - 175.61916549084208, - -38.491167041243344 - ], - [ - 175.62737529481677, - -38.510561348810796 - ], - [ - 175.62983823600916, - -38.54223871783763 - ], - [ - 175.64174245177244, - -38.56583512537802 - ], - [ - 175.61629205945096, - -38.58458295602655 - ], - [ - 175.58345284355224, - -38.594603348269736 - ], - [ - 175.57975843176365, - -38.590078009837335 - ], - [ - 175.5465087256662, - -38.60009840208051 - ], - [ - 175.53255205890926, - -38.59331039443191 - ], - [ - 175.50669117638904, - -38.563249217702364 - ], - [ - 175.45332745055364, - -38.56842103305368 - ], - [ - 175.4081735286929, - -38.55484501775647 - ], - [ - 175.3884699991537, - -38.560663310026705 - ], - [ - 175.38272313637142, - -38.57326960994554 - ], - [ - 175.34331607729297, - -38.58522943294547 - ], - [ - 175.3277174497411, - -38.55710768697267 - ], - [ - 175.30883490059935, - -38.57391608686446 - ], - [ - 175.3071929398044, - -38.601391355918345 - ], - [ - 175.28954186125884, - -38.59040124829679 - ], - [ - 175.26778588072597, - -38.61335117891827 - ], - [ - 175.24808235118675, - -38.619492709647965 - ], - [ - 175.24233548840448, - -38.6320990095668 - ], - [ - 175.20908578230703, - -38.64179616335053 - ], - [ - 175.20169695872983, - -38.633391963404634 - ], - [ - 175.18117244879312, - -38.628543386512774 - ], - [ - 175.12411431116914, - -38.62951310189114 - ], - [ - 174.99193646717686, - -38.668948193944956 - ], - [ - 174.95827627088067, - -38.66830171702604 - ], - [ - 174.9693595062465, - -38.68123125540434 - ], - [ - 174.9599182316756, - -38.689635455350235 - ], - [ - 174.9574552904832, - -38.70644385524202 - ], - [ - 174.9365202903478, - -38.7400606550256 - ], - [ - 174.9476035257136, - -38.753313431863354 - ], - [ - 174.9242055843858, - -38.75492962416064 - ], - [ - 174.87125234874912, - -38.77076830867406 - ], - [ - 174.86837891735797, - -38.77690983940375 - ], - [ - 174.85154881920988, - -38.77658660094429 - ], - [ - 174.82199352490107, - -38.741676847322886 - ], - [ - 174.79777460317575, - -38.732626170458076 - ], - [ - 174.7517997009176, - -38.746525424214745 - ], - [ - 174.74441087734039, - -38.737797985809394 - ], - [ - 174.7070562692556, - -38.73230293199862 - ], - [ - 174.67339607295943, - -38.7316564550797 - ], - [ - 174.66026038659996, - -38.73553531659319 - ], - [ - 174.64917715123414, - -38.72228253975544 - ], - [ - 174.6257792099063, - -38.723898732052724 - ], - [ - 174.61633793533542, - -38.70676709370148 - ], - [ - 174.6171589157329, - -38.671857340080074 - ], - [ - 174.62249528831643, - -38.62110890194525 - ], - [ - 174.6282421510987, - -38.59848220978323 - ], - [ - 174.63070509229112, - -38.55452177929701 - ], - [ - 174.63480999427844, - -38.53157184867553 - ], - [ - 174.6302946020924, - -38.50538953345948 - ], - [ - 174.6450722492468, - -38.45625728762194 - ], - [ - 174.6417883276569, - -38.429105257027516 - ], - [ - 174.6356309746759, - -38.415852480189756 - ], - [ - 174.6343995040797, - -38.38546806500076 - ], - [ - 174.65451352381768, - -38.3851448265413 - ], - [ - 174.6606708767987, - -38.365427280514396 - ], - [ - 174.7045933280632, - -38.32566895000112 - ], - [ - 174.7201919556151, - -38.300133111703985 - ], - [ - 174.7119821516404, - -38.29399158097429 - ], - [ - 174.71649754382648, - -38.272657842650105 - ], - [ - 174.7070562692556, - -38.23128331983955 - ], - [ - 174.71526607323028, - -38.22190940451528 - ], - [ - 174.7058247986594, - -38.17665602019123 - ], - [ - 174.69268911229992, - -38.1427159819482 - ], - [ - 174.67873244554298, - -38.116533666732145 - ], - [ - 174.70295136726827, - -38.11718014365106 - ], - [ - 174.73455911257076, - -38.12332167438075 - ], - [ - 174.77601862264288, - -38.09293725919175 - ], - [ - 174.77519764224542, - -38.12590758205641 - ], - [ - 174.7981850933745, - -38.134635020461765 - ], - [ - 174.80639489734918, - -38.12461462821858 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2139, - "NAME_1": "Wellington", - "ID_2": 25240, - "NAME_2": "Carterton", - "VARNAME_2": "", - "HASC_2": "NZ.WG.CR", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.431160979822, - -40.74381586520243 - ], - [ - 175.4418337249891, - -40.74607853441863 - ], - [ - 175.46194774472704, - -40.767412272742824 - ], - [ - 175.4832932350612, - -40.77193761117523 - ], - [ - 175.49109254883714, - -40.780665049580584 - ], - [ - 175.49355549002954, - -40.80167554944532 - ], - [ - 175.47877784287513, - -40.82268604931005 - ], - [ - 175.47754637227894, - -40.839817687661295 - ], - [ - 175.46810509770805, - -40.848221887607195 - ], - [ - 175.4906820586384, - -40.86309085674223 - ], - [ - 175.5001233332093, - -40.882485164309685 - ], - [ - 175.5173639215561, - -40.88280840276914 - ], - [ - 175.54815068646116, - -40.90640481030954 - ], - [ - 175.58016892196238, - -40.94066808701203 - ], - [ - 175.58673676514212, - -40.938728656255286 - ], - [ - 175.6351746085927, - -40.99012357130902 - ], - [ - 175.6606250009142, - -40.99885100971437 - ], - [ - 175.66842431469016, - -41.007255209660265 - ], - [ - 175.65364666753572, - -41.02858894798446 - ], - [ - 175.65241519693953, - -41.045397347876246 - ], - [ - 175.62532284382308, - -41.05380154782214 - ], - [ - 175.64831029495218, - -41.068670516957184 - ], - [ - 175.66185647151042, - -41.06479165544369 - ], - [ - 175.67252921667748, - -41.039255817146554 - ], - [ - 175.6848439226395, - -41.02438684801151 - ], - [ - 175.75216431523185, - -41.00402282506569 - ], - [ - 175.75339578582805, - -41.01468969422779 - ], - [ - 175.77761470755334, - -41.04022553252493 - ], - [ - 175.75462725642424, - -41.05283183244377 - ], - [ - 175.7398496092698, - -41.0738423323085 - ], - [ - 175.76694196238626, - -41.093236639875954 - ], - [ - 175.81989519802292, - -41.14915689336209 - ], - [ - 175.83877774716467, - -41.15982376252419 - ], - [ - 175.85766029630642, - -41.143015362632404 - ], - [ - 175.87818480624313, - -41.13687383190271 - ], - [ - 175.9011722573722, - -41.152066039497214 - ], - [ - 175.92128627711017, - -41.14592450876752 - ], - [ - 175.93770588505953, - -41.163056147118766 - ], - [ - 175.93606392426457, - -41.18018778547001 - ], - [ - 175.95494647340632, - -41.19117789309156 - ], - [ - 175.99148010109363, - -41.192794085388854 - ], - [ - 175.98203882652277, - -41.21929963906436 - ], - [ - 175.9643877479772, - -41.244835477361505 - ], - [ - 175.9167708849241, - -41.256148823442516 - ], - [ - 175.88228970823045, - -41.2752198925505 - ], - [ - 175.86915402187097, - -41.28847266938826 - ], - [ - 175.86176519829377, - -41.31788736919889 - ], - [ - 175.84904000213302, - -41.32435213838804 - ], - [ - 175.8088119626571, - -41.362494276604025 - ], - [ - 175.80347559007356, - -41.36217103814457 - ], - [ - 175.7932133351052, - -41.344392922874405 - ], - [ - 175.80840147245837, - -41.32370566146913 - ], - [ - 175.76530000159133, - -41.31465498460432 - ], - [ - 175.77392029576473, - -41.29558391549632 - ], - [ - 175.7952657860989, - -41.30010925392873 - ], - [ - 175.79690774689382, - -41.283300854036945 - ], - [ - 175.7468279426483, - -41.27618960792888 - ], - [ - 175.7554482368217, - -41.25711853882089 - ], - [ - 175.7295873543015, - -41.24839110041554 - ], - [ - 175.74231255046223, - -41.233522131280495 - ], - [ - 175.75298529562932, - -41.20798629298335 - ], - [ - 175.73163980529515, - -41.20346095455095 - ], - [ - 175.716451667942, - -41.22479469287514 - ], - [ - 175.69633764820404, - -41.23093622360483 - ], - [ - 175.67335019707494, - -41.21574401601033 - ], - [ - 175.64502637336233, - -41.213158108334675 - ], - [ - 175.6302487262079, - -41.206693339145524 - ], - [ - 175.5912521573282, - -41.202168000713115 - ], - [ - 175.57934794156492, - -41.18923846233482 - ], - [ - 175.59166264752693, - -41.17436949319978 - ], - [ - 175.5621073532181, - -41.161439954821475 - ], - [ - 175.51900588235105, - -41.15238927795667 - ], - [ - 175.51079607837636, - -41.143661839551314 - ], - [ - 175.48000931347133, - -41.147540701064806 - ], - [ - 175.46810509770805, - -41.13493440114596 - ], - [ - 175.48821911744602, - -41.12879287041628 - ], - [ - 175.47631490168274, - -41.115863332037975 - ], - [ - 175.50299676460043, - -41.10745913209208 - ], - [ - 175.51243803917131, - -41.09905493214619 - ], - [ - 175.4964289214207, - -41.081923293794944 - ], - [ - 175.50587019599158, - -41.07351909384904 - ], - [ - 175.48986107824095, - -41.0563874554978 - ], - [ - 175.469747058503, - -41.06252898622749 - ], - [ - 175.43731833280302, - -41.05574097857888 - ], - [ - 175.41063646988533, - -41.06414517852478 - ], - [ - 175.3946273521347, - -41.04669030171408 - ], - [ - 175.38929097955116, - -41.031821332579035 - ], - [ - 175.40160568551318, - -41.01727560190345 - ], - [ - 175.38559656776255, - -41.000143963552205 - ], - [ - 175.3909329403461, - -40.9872144251739 - ], - [ - 175.3790287245828, - -40.9742848867956 - ], - [ - 175.38067068537777, - -40.957476486903815 - ], - [ - 175.39544833253217, - -40.93646598703908 - ], - [ - 175.39011195994863, - -40.921597017904034 - ], - [ - 175.3363377439145, - -40.93775894087691 - ], - [ - 175.29775166523353, - -40.93291036398505 - ], - [ - 175.27886911609178, - -40.94971876387684 - ], - [ - 175.2669649003285, - -40.936789225498536 - ], - [ - 175.31376078298416, - -40.92256673328241 - ], - [ - 175.3301803909335, - -40.91222310257977 - ], - [ - 175.33551676351703, - -40.89961680266093 - ], - [ - 175.35563078325498, - -40.89347527193124 - ], - [ - 175.36219862643475, - -40.86373733366115 - ], - [ - 175.35029441067147, - -40.850807795282854 - ], - [ - 175.35850421464613, - -40.83173672617486 - ], - [ - 175.35604127345374, - -40.81072622631012 - ], - [ - 175.37205039120434, - -40.80038259560749 - ], - [ - 175.3884699991537, - -40.762240457391506 - ], - [ - 175.39750078352583, - -40.75383625744561 - ], - [ - 175.42459313664227, - -40.74575529595918 - ], - [ - 175.431160979822, - -40.74381586520243 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2139, - "NAME_1": "Wellington", - "ID_2": 25241, - "NAME_2": "Hutt city", - "VARNAME_2": "", - "HASC_2": "", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.08142333050083, - -41.21929963906436 - ], - [ - 175.08265480109702, - -41.22996650822646 - ], - [ - 175.070340095135, - -41.244835477361505 - ], - [ - 175.08593872268688, - -41.26229035417221 - ], - [ - 175.07649744811602, - -41.27037131565864 - ], - [ - 175.07198205592994, - -41.29396772319904 - ], - [ - 175.04940509499957, - -41.306250784658424 - ], - [ - 175.04530019301225, - -41.32952395373936 - ], - [ - 174.9849581337984, - -41.34730206900952 - ], - [ - 174.97962176121484, - -41.35990836892836 - ], - [ - 174.9574552904832, - -41.383181538009296 - ], - [ - 174.98865254558697, - -41.39578783792814 - ], - [ - 174.98331617300343, - -41.40354556095512 - ], - [ - 174.95293989829713, - -41.4158286224145 - ], - [ - 174.91763774120602, - -41.439748268414355 - ], - [ - 174.90491254504528, - -41.421646914684736 - ], - [ - 174.86714744676178, - -41.40968709168481 - ], - [ - 174.8757677409352, - -41.387383637982246 - ], - [ - 174.84826489762003, - -41.358292176631075 - ], - [ - 174.85811666238965, - -41.33598872292851 - ], - [ - 174.86837891735797, - -41.32758452298262 - ], - [ - 174.9061440156415, - -41.28103818482074 - ], - [ - 174.9123013686225, - -41.25808825419926 - ], - [ - 174.88890342729468, - -41.2319059389832 - ], - [ - 174.8540117604023, - -41.22576440825351 - ], - [ - 174.8720733291466, - -41.18212721622675 - ], - [ - 174.87740970173013, - -41.16952091630792 - ], - [ - 174.893008329282, - -41.159177285605274 - ], - [ - 174.89834470186554, - -41.14657098568643 - ], - [ - 174.93693078054653, - -41.151742801037756 - ], - [ - 174.97633783962496, - -41.14010621649729 - ], - [ - 174.9792112710161, - -41.133641447308136 - ], - [ - 175.00260921234394, - -41.15982376252419 - ], - [ - 175.01574489870342, - -41.183743408524045 - ], - [ - 174.99686234956167, - -41.20022856995637 - ], - [ - 175.00178823194648, - -41.215420777550875 - ], - [ - 175.04037431062744, - -41.22059259290219 - ], - [ - 175.07362401672486, - -41.210572200659016 - ], - [ - 175.08142333050083, - -41.21929963906436 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2139, - "NAME_1": "Wellington", - "ID_2": 25242, - "NAME_2": "Kapiti Coast", - "VARNAME_2": "", - "HASC_2": "NZ.WG.KC", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [ - 174.94596156491866, - -40.822039572391134 - ], - [ - 174.93487832955284, - -40.85404017987743 - ], - [ - 174.90286009405162, - -40.880222495093484 - ], - [ - 174.8757677409352, - -40.89024288733666 - ], - [ - 174.8687894075567, - -40.876020395120534 - ], - [ - 174.89998666266047, - -40.85468665679634 - ], - [ - 174.9147643098149, - -40.83820149536401 - ], - [ - 174.91927970200098, - -40.82236281085059 - ], - [ - 174.94596156491866, - -40.822039572391134 - ] - ] - ], - [ - [ - [ - 175.42459313664227, - -40.74575529595918 - ], - [ - 175.39750078352583, - -40.75383625744561 - ], - [ - 175.3884699991537, - -40.762240457391506 - ], - [ - 175.37205039120434, - -40.80038259560749 - ], - [ - 175.35604127345374, - -40.81072622631012 - ], - [ - 175.35850421464613, - -40.83173672617486 - ], - [ - 175.35029441067147, - -40.850807795282854 - ], - [ - 175.36219862643475, - -40.86373733366115 - ], - [ - 175.35563078325498, - -40.89347527193124 - ], - [ - 175.33551676351703, - -40.89961680266093 - ], - [ - 175.3301803909335, - -40.91222310257977 - ], - [ - 175.31376078298416, - -40.92256673328241 - ], - [ - 175.2669649003285, - -40.936789225498536 - ], - [ - 175.27886911609178, - -40.94971876387684 - ], - [ - 175.28010058668798, - -40.96038563303893 - ], - [ - 175.26409146893735, - -40.970729263741575 - ], - [ - 175.22263195886524, - -40.9720222175794 - ], - [ - 175.2148326450893, - -40.96361801763351 - ], - [ - 175.18404588018427, - -40.96717364068754 - ], - [ - 175.14545980150328, - -40.962325063795674 - ], - [ - 175.1323241151438, - -40.966203925309166 - ], - [ - 175.11385205620078, - -40.955213817687614 - ], - [ - 175.09373803646284, - -40.96135534841731 - ], - [ - 175.09620097765523, - -40.9826890867415 - ], - [ - 175.07526597751982, - -40.977840509849635 - ], - [ - 175.0592568597692, - -40.96038563303893 - ], - [ - 175.03544842824263, - -40.98980033284956 - ], - [ - 175.0021987221452, - -40.999820725092746 - ], - [ - 174.9792112710161, - -41.01210378655213 - ], - [ - 174.95786578068194, - -41.007255209660265 - ], - [ - 174.93528881975158, - -41.00176015584949 - ], - [ - 174.95499234929082, - -40.980426417525294 - ], - [ - 174.9718224474389, - -40.948425810039005 - ], - [ - 174.9767483298237, - -40.90349566417442 - ], - [ - 174.98536862399712, - -40.88151544893131 - ], - [ - 175.02847009486416, - -40.857595802931456 - ], - [ - 175.05966734996792, - -40.826241672364084 - ], - [ - 175.13355558574, - -40.70567372698645 - ], - [ - 175.16721578203618, - -40.70825963466211 - ], - [ - 175.16844725263238, - -40.71892650382421 - ], - [ - 175.20457039012095, - -40.72991661144576 - ], - [ - 175.18199342919058, - -40.7425229113646 - ], - [ - 175.20169695872983, - -40.76385664968879 - ], - [ - 175.23494666482725, - -40.75383625744561 - ], - [ - 175.26409146893735, - -40.767089034283366 - ], - [ - 175.30678244960566, - -40.748664442094295 - ], - [ - 175.34167411649804, - -40.74898768055375 - ], - [ - 175.34701048908158, - -40.73638138063491 - ], - [ - 175.36712450881953, - -40.73023984990522 - ], - [ - 175.40571058750052, - -40.73508842679708 - ], - [ - 175.42459313664227, - -40.74575529595918 - ] - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2139, - "NAME_1": "Wellington", - "ID_2": 25243, - "NAME_2": "Masterton", - "VARNAME_2": "", - "HASC_2": "NZ.WG.MT", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 176.26815049504023, - -40.78131152649949 - ], - [ - 176.2595302008668, - -40.80426145712098 - ], - [ - 176.2595302008668, - -40.82333252622897 - ], - [ - 176.24352108311618, - -40.846282456850446 - ], - [ - 176.24023716152632, - -40.86244437982332 - ], - [ - 176.22874343596177, - -40.86890914901247 - ], - [ - 176.21930216139089, - -40.89024288733666 - ], - [ - 176.22833294576304, - -40.90317242571496 - ], - [ - 176.18358951410104, - -40.92709207171482 - ], - [ - 176.1560866707859, - -40.94713285620118 - ], - [ - 176.1392565726378, - -40.966203925309166 - ], - [ - 176.12653137647706, - -41.004992540444064 - ], - [ - 176.10723833713658, - -41.015982648065616 - ], - [ - 176.0904082389885, - -41.074812047686876 - ], - [ - 176.07768304282774, - -41.083862724551686 - ], - [ - 176.0686522584556, - -41.104226747497506 - ], - [ - 176.07029421925054, - -41.12200486276767 - ], - [ - 176.0444333367303, - -41.143661839551314 - ], - [ - 176.00954166983792, - -41.16693500863225 - ], - [ - 175.99148010109363, - -41.192794085388854 - ], - [ - 175.95494647340632, - -41.19117789309156 - ], - [ - 175.93606392426457, - -41.18018778547001 - ], - [ - 175.93770588505953, - -41.163056147118766 - ], - [ - 175.92128627711017, - -41.14592450876752 - ], - [ - 175.9011722573722, - -41.152066039497214 - ], - [ - 175.87818480624313, - -41.13687383190271 - ], - [ - 175.85766029630642, - -41.143015362632404 - ], - [ - 175.83877774716467, - -41.15982376252419 - ], - [ - 175.81989519802292, - -41.14915689336209 - ], - [ - 175.76694196238626, - -41.093236639875954 - ], - [ - 175.7398496092698, - -41.0738423323085 - ], - [ - 175.75462725642424, - -41.05283183244377 - ], - [ - 175.77761470755334, - -41.04022553252493 - ], - [ - 175.75339578582805, - -41.01468969422779 - ], - [ - 175.75216431523185, - -41.00402282506569 - ], - [ - 175.6848439226395, - -41.02438684801151 - ], - [ - 175.67252921667748, - -41.039255817146554 - ], - [ - 175.66185647151042, - -41.06479165544369 - ], - [ - 175.64831029495218, - -41.068670516957184 - ], - [ - 175.62532284382308, - -41.05380154782214 - ], - [ - 175.65241519693953, - -41.045397347876246 - ], - [ - 175.65364666753572, - -41.02858894798446 - ], - [ - 175.66842431469016, - -41.007255209660265 - ], - [ - 175.6606250009142, - -40.99885100971437 - ], - [ - 175.6351746085927, - -40.99012357130902 - ], - [ - 175.58673676514212, - -40.938728656255286 - ], - [ - 175.58016892196238, - -40.94066808701203 - ], - [ - 175.54815068646116, - -40.90640481030954 - ], - [ - 175.5173639215561, - -40.88280840276914 - ], - [ - 175.5001233332093, - -40.882485164309685 - ], - [ - 175.4906820586384, - -40.86309085674223 - ], - [ - 175.46810509770805, - -40.848221887607195 - ], - [ - 175.47754637227894, - -40.839817687661295 - ], - [ - 175.47877784287513, - -40.82268604931005 - ], - [ - 175.49355549002954, - -40.80167554944532 - ], - [ - 175.49109254883714, - -40.780665049580584 - ], - [ - 175.4832932350612, - -40.77193761117523 - ], - [ - 175.46194774472704, - -40.767412272742824 - ], - [ - 175.4418337249891, - -40.74607853441863 - ], - [ - 175.431160979822, - -40.74381586520243 - ], - [ - 175.45004352896376, - -40.72700746531064 - ], - [ - 175.47015754870174, - -40.69339066552707 - ], - [ - 175.5608758826219, - -40.72603774993227 - ], - [ - 175.59699902011047, - -40.73702785755383 - ], - [ - 175.61998647123954, - -40.75222006514832 - ], - [ - 175.62942774581043, - -40.74381586520243 - ], - [ - 175.653236177337, - -40.741876434445686 - ], - [ - 175.66144598131166, - -40.72280536533769 - ], - [ - 175.68279147164583, - -40.7273307037701 - ], - [ - 175.69387470701164, - -40.70211810393242 - ], - [ - 175.73779715827615, - -40.69403714244598 - ], - [ - 175.7566797074179, - -40.70470401160808 - ], - [ - 175.7661209819888, - -40.696299811662186 - ], - [ - 175.78500353113054, - -40.70696668082428 - ], - [ - 175.78336157033561, - -40.724098319175525 - ], - [ - 175.76571049179006, - -40.75157358822941 - ], - [ - 175.76447902119386, - -40.7683819881212 - ], - [ - 175.8075804920609, - -40.77743266498601 - ], - [ - 175.82605255100393, - -40.76062426509422 - ], - [ - 175.85027147272922, - -40.75868483433747 - ], - [ - 175.87325892385832, - -40.773877041931975 - ], - [ - 175.8863946102178, - -40.769674941959025 - ], - [ - 175.912255492738, - -40.75060387285104 - ], - [ - 175.93483245366838, - -40.76579608044554 - ], - [ - 175.94550519883546, - -40.740260242148395 - ], - [ - 175.96972412056076, - -40.73832081139165 - ], - [ - 175.97793392453542, - -40.71957298074312 - ], - [ - 175.9992794148696, - -40.72377508071607 - ], - [ - 176.0222668659987, - -40.71116878079722 - ], - [ - 176.06126343487838, - -40.71601735768909 - ], - [ - 176.08794529779607, - -40.7076131577432 - ], - [ - 176.0904082389885, - -40.67367311950016 - ], - [ - 176.13350970985553, - -40.68272379636497 - ], - [ - 176.1536237295935, - -40.676582265635275 - ], - [ - 176.15896010217702, - -40.69145123477032 - ], - [ - 176.18687343569093, - -40.69403714244598 - ], - [ - 176.20575598483268, - -40.70502725006754 - ], - [ - 176.21889167119215, - -40.70082515009459 - ], - [ - 176.24680500470606, - -40.73120956528359 - ], - [ - 176.2656875538478, - -40.742199672905144 - ], - [ - 176.26158265186046, - -40.76547284198608 - ], - [ - 176.26815049504023, - -40.78131152649949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2139, - "NAME_1": "Wellington", - "ID_2": 25244, - "NAME_2": "Porirua", - "VARNAME_2": "", - "HASC_2": "NZ.WG.PR", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.93528881975158, - -41.00176015584949 - ], - [ - 174.95786578068194, - -41.007255209660265 - ], - [ - 174.95909725127814, - -41.017922078822366 - ], - [ - 174.97510636902877, - -41.03537695563307 - ], - [ - 174.97592734942623, - -41.0738423323085 - ], - [ - 174.98126372200977, - -41.088711301443546 - ], - [ - 174.99686234956167, - -41.10616617825425 - ], - [ - 174.98331617300343, - -41.1103682782272 - ], - [ - 174.9792112710161, - -41.133641447308136 - ], - [ - 174.97633783962496, - -41.14010621649729 - ], - [ - 174.93693078054653, - -41.151742801037756 - ], - [ - 174.89834470186554, - -41.14657098568643 - ], - [ - 174.893008329282, - -41.159177285605274 - ], - [ - 174.87740970173013, - -41.16952091630792 - ], - [ - 174.8720733291466, - -41.18212721622675 - ], - [ - 174.84539146622888, - -41.19020817771319 - ], - [ - 174.83595019165801, - -41.19861237765909 - ], - [ - 174.80639489734918, - -41.16919767784846 - ], - [ - 174.81214176013145, - -41.156591377929615 - ], - [ - 174.80393195615676, - -41.14818717798372 - ], - [ - 174.77930254423273, - -41.14204564725403 - ], - [ - 174.7957221521821, - -41.12394429352441 - ], - [ - 174.84210754463902, - -41.09162044757866 - ], - [ - 174.86304254477443, - -41.10293379365967 - ], - [ - 174.83800264265167, - -41.12200486276767 - ], - [ - 174.84374950543395, - -41.12814639349736 - ], - [ - 174.86796842715924, - -41.10358027057859 - ], - [ - 174.8663264663643, - -41.0845092014706 - ], - [ - 174.85072783881242, - -41.06640784774098 - ], - [ - 174.84621244662637, - -41.04927620938974 - ], - [ - 174.8626320545757, - -41.04216496328167 - ], - [ - 174.87289430954405, - -41.029235424903376 - ], - [ - 174.89875519206427, - -41.028265709525 - ], - [ - 174.93528881975158, - -41.00176015584949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2139, - "NAME_1": "Wellington", - "ID_2": 25245, - "NAME_2": "South Wairarapa", - "VARNAME_2": "", - "HASC_2": "NZ.WG.SP", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.80347559007356, - -41.36217103814457 - ], - [ - 175.76981539377738, - -41.37154495346883 - ], - [ - 175.76817343298245, - -41.37930267649581 - ], - [ - 175.74477549165462, - -41.39126249949574 - ], - [ - 175.72548245231414, - -41.394818122549765 - ], - [ - 175.70865235416605, - -41.405484991711866 - ], - [ - 175.67581313826736, - -41.414535668576676 - ], - [ - 175.6351746085927, - -41.45397076063048 - ], - [ - 175.61465009865603, - -41.46172848365747 - ], - [ - 175.58386333375097, - -41.48791079887352 - ], - [ - 175.54609823546747, - -41.49760795265724 - ], - [ - 175.53337303930672, - -41.49760795265724 - ], - [ - 175.50710166658777, - -41.510860729495 - ], - [ - 175.4993023528118, - -41.52766912938679 - ], - [ - 175.48041980367006, - -41.5367198062516 - ], - [ - 175.46523166631692, - -41.55288172922447 - ], - [ - 175.4323924504182, - -41.57227603679192 - ], - [ - 175.42213019544988, - -41.566457744521685 - ], - [ - 175.37820774418535, - -41.5693668906568 - ], - [ - 175.361788136236, - -41.57647813676486 - ], - [ - 175.35398882246005, - -41.58876119822425 - ], - [ - 175.32238107715756, - -41.609448459629526 - ], - [ - 175.27517470430317, - -41.6126808442241 - ], - [ - 175.24685088059053, - -41.60266045198092 - ], - [ - 175.23699911582094, - -41.60847874425115 - ], - [ - 175.22140048826904, - -41.5693668906568 - ], - [ - 175.21811656667919, - -41.54092190622454 - ], - [ - 175.19430813515262, - -41.525406460170586 - ], - [ - 175.20703333131337, - -41.503426244927475 - ], - [ - 175.20785431171083, - -41.47465802203576 - ], - [ - 175.22181097846777, - -41.453647522171025 - ], - [ - 175.21524313528803, - -41.43037435309009 - ], - [ - 175.2000549979349, - -41.42067719930637 - ], - [ - 175.14463882110581, - -41.3983737456038 - ], - [ - 175.14751225249697, - -41.3747773380634 - ], - [ - 175.121240879778, - -41.37057523809046 - ], - [ - 175.10769470321978, - -41.383181538009296 - ], - [ - 175.04201627142237, - -41.37348438422558 - ], - [ - 175.01533440850469, - -41.389969545657905 - ], - [ - 174.98865254558697, - -41.39578783792814 - ], - [ - 174.9574552904832, - -41.383181538009296 - ], - [ - 174.97962176121484, - -41.35990836892836 - ], - [ - 174.9849581337984, - -41.34730206900952 - ], - [ - 175.04530019301225, - -41.32952395373936 - ], - [ - 175.04940509499957, - -41.306250784658424 - ], - [ - 175.07198205592994, - -41.29396772319904 - ], - [ - 175.07649744811602, - -41.27037131565864 - ], - [ - 175.08593872268688, - -41.26229035417221 - ], - [ - 175.070340095135, - -41.244835477361505 - ], - [ - 175.08265480109702, - -41.22996650822646 - ], - [ - 175.08142333050083, - -41.21929963906436 - ], - [ - 175.14833323289443, - -41.19893561611855 - ], - [ - 175.15695352706783, - -41.17986454701055 - ], - [ - 175.17296264481845, - -41.16952091630792 - ], - [ - 175.18117244879312, - -41.15044984719992 - ], - [ - 175.2053913705184, - -41.14851041644318 - ], - [ - 175.22016901767284, - -41.127499916578444 - ], - [ - 175.23125225303866, - -41.101964078281306 - ], - [ - 175.2501348021804, - -41.08515567838951 - ], - [ - 175.23699911582094, - -41.061559270849116 - ], - [ - 175.2501348021804, - -41.05768040933563 - ], - [ - 175.26368097873862, - -41.0260030403088 - ], - [ - 175.27722715529683, - -41.02180094033585 - ], - [ - 175.28256352788037, - -41.00919464041701 - ], - [ - 175.2961097044386, - -41.00531577890352 - ], - [ - 175.30390901821454, - -40.98624470979553 - ], - [ - 175.2694278415209, - -40.98559823287661 - ], - [ - 175.26409146893735, - -40.970729263741575 - ], - [ - 175.28010058668798, - -40.96038563303893 - ], - [ - 175.27886911609178, - -40.94971876387684 - ], - [ - 175.29775166523353, - -40.93291036398505 - ], - [ - 175.3363377439145, - -40.93775894087691 - ], - [ - 175.39011195994863, - -40.921597017904034 - ], - [ - 175.39544833253217, - -40.93646598703908 - ], - [ - 175.38067068537777, - -40.957476486903815 - ], - [ - 175.3790287245828, - -40.9742848867956 - ], - [ - 175.3909329403461, - -40.9872144251739 - ], - [ - 175.38559656776255, - -41.000143963552205 - ], - [ - 175.40160568551318, - -41.01727560190345 - ], - [ - 175.38929097955116, - -41.031821332579035 - ], - [ - 175.3946273521347, - -41.04669030171408 - ], - [ - 175.41063646988533, - -41.06414517852478 - ], - [ - 175.43731833280302, - -41.05574097857888 - ], - [ - 175.469747058503, - -41.06252898622749 - ], - [ - 175.48986107824095, - -41.0563874554978 - ], - [ - 175.50587019599158, - -41.07351909384904 - ], - [ - 175.4964289214207, - -41.081923293794944 - ], - [ - 175.51243803917131, - -41.09905493214619 - ], - [ - 175.50299676460043, - -41.10745913209208 - ], - [ - 175.47631490168274, - -41.115863332037975 - ], - [ - 175.48821911744602, - -41.12879287041628 - ], - [ - 175.46810509770805, - -41.13493440114596 - ], - [ - 175.48000931347133, - -41.147540701064806 - ], - [ - 175.51079607837636, - -41.143661839551314 - ], - [ - 175.51900588235105, - -41.15238927795667 - ], - [ - 175.5621073532181, - -41.161439954821475 - ], - [ - 175.59166264752693, - -41.17436949319978 - ], - [ - 175.57934794156492, - -41.18923846233482 - ], - [ - 175.5912521573282, - -41.202168000713115 - ], - [ - 175.6302487262079, - -41.206693339145524 - ], - [ - 175.64502637336233, - -41.213158108334675 - ], - [ - 175.67335019707494, - -41.21574401601033 - ], - [ - 175.69633764820404, - -41.23093622360483 - ], - [ - 175.716451667942, - -41.22479469287514 - ], - [ - 175.73163980529515, - -41.20346095455095 - ], - [ - 175.75298529562932, - -41.20798629298335 - ], - [ - 175.74231255046223, - -41.233522131280495 - ], - [ - 175.7295873543015, - -41.24839110041554 - ], - [ - 175.7554482368217, - -41.25711853882089 - ], - [ - 175.7468279426483, - -41.27618960792888 - ], - [ - 175.79690774689382, - -41.283300854036945 - ], - [ - 175.7952657860989, - -41.30010925392873 - ], - [ - 175.77392029576473, - -41.29558391549632 - ], - [ - 175.76530000159133, - -41.31465498460432 - ], - [ - 175.80840147245837, - -41.32370566146913 - ], - [ - 175.7932133351052, - -41.344392922874405 - ], - [ - 175.80347559007356, - -41.36217103814457 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2139, - "NAME_1": "Wellington", - "ID_2": 25246, - "NAME_2": "Upper Hutt", - "VARNAME_2": "", - "HASC_2": "NZ.WG.UH", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.26409146893735, - -40.970729263741575 - ], - [ - 175.2694278415209, - -40.98559823287661 - ], - [ - 175.30390901821454, - -40.98624470979553 - ], - [ - 175.2961097044386, - -41.00531577890352 - ], - [ - 175.28256352788037, - -41.00919464041701 - ], - [ - 175.27722715529683, - -41.02180094033585 - ], - [ - 175.26368097873862, - -41.0260030403088 - ], - [ - 175.2501348021804, - -41.05768040933563 - ], - [ - 175.23699911582094, - -41.061559270849116 - ], - [ - 175.2501348021804, - -41.08515567838951 - ], - [ - 175.23125225303866, - -41.101964078281306 - ], - [ - 175.22016901767284, - -41.127499916578444 - ], - [ - 175.2053913705184, - -41.14851041644318 - ], - [ - 175.18117244879312, - -41.15044984719992 - ], - [ - 175.17296264481845, - -41.16952091630792 - ], - [ - 175.15695352706783, - -41.17986454701055 - ], - [ - 175.14833323289443, - -41.19893561611855 - ], - [ - 175.08142333050083, - -41.21929963906436 - ], - [ - 175.07362401672486, - -41.210572200659016 - ], - [ - 175.04037431062744, - -41.22059259290219 - ], - [ - 175.00178823194648, - -41.215420777550875 - ], - [ - 174.99686234956167, - -41.20022856995637 - ], - [ - 175.01574489870342, - -41.183743408524045 - ], - [ - 175.00260921234394, - -41.15982376252419 - ], - [ - 174.9792112710161, - -41.133641447308136 - ], - [ - 174.98331617300343, - -41.1103682782272 - ], - [ - 174.99686234956167, - -41.10616617825425 - ], - [ - 174.98126372200977, - -41.088711301443546 - ], - [ - 174.97592734942623, - -41.0738423323085 - ], - [ - 174.97510636902877, - -41.03537695563307 - ], - [ - 174.95909725127814, - -41.017922078822366 - ], - [ - 174.95786578068194, - -41.007255209660265 - ], - [ - 174.9792112710161, - -41.01210378655213 - ], - [ - 175.0021987221452, - -40.999820725092746 - ], - [ - 175.03544842824263, - -40.98980033284956 - ], - [ - 175.0592568597692, - -40.96038563303893 - ], - [ - 175.07526597751982, - -40.977840509849635 - ], - [ - 175.09620097765523, - -40.9826890867415 - ], - [ - 175.09373803646284, - -40.96135534841731 - ], - [ - 175.11385205620078, - -40.955213817687614 - ], - [ - 175.1323241151438, - -40.966203925309166 - ], - [ - 175.14545980150328, - -40.962325063795674 - ], - [ - 175.18404588018427, - -40.96717364068754 - ], - [ - 175.2148326450893, - -40.96361801763351 - ], - [ - 175.22263195886524, - -40.9720222175794 - ], - [ - 175.26409146893735, - -40.970729263741575 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2139, - "NAME_1": "Wellington", - "ID_2": 25247, - "NAME_2": "Wellington", - "VARNAME_2": "", - "HASC_2": "NZ.WG.WE", - "TYPE_2": "City", - "ENGTYPE_2": "City" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.8720733291466, - -41.18212721622675 - ], - [ - 174.8540117604023, - -41.22576440825351 - ], - [ - 174.7957221521821, - -41.25744177728035 - ], - [ - 174.78669136780996, - -41.26713893106407 - ], - [ - 174.79161725019475, - -41.29105857706392 - ], - [ - 174.8068053875479, - -41.30043249238819 - ], - [ - 174.82158303470231, - -41.29558391549632 - ], - [ - 174.8334872504656, - -41.30754373849625 - ], - [ - 174.83759215245294, - -41.32338242300967 - ], - [ - 174.81706764251626, - -41.344392922874405 - ], - [ - 174.79408019138717, - -41.33857463060417 - ], - [ - 174.76616685787326, - -41.34956473822572 - ], - [ - 174.7337381321733, - -41.349241499766265 - ], - [ - 174.7263493085961, - -41.35861541509053 - ], - [ - 174.70664577905686, - -41.358292176631075 - ], - [ - 174.68940519071003, - -41.34600911517169 - ], - [ - 174.658618425805, - -41.337928153685255 - ], - [ - 174.63070509229112, - -41.3162711769016 - ], - [ - 174.63111558248985, - -41.29913953855036 - ], - [ - 174.6122330333481, - -41.28621000017206 - ], - [ - 174.62167430791897, - -41.25970444649655 - ], - [ - 174.6417883276569, - -41.240633377388555 - ], - [ - 174.66559675918347, - -41.24548195428042 - ], - [ - 174.6898156809088, - -41.23028974668592 - ], - [ - 174.69145764170372, - -41.22091583136165 - ], - [ - 174.7132136222366, - -41.21897640060491 - ], - [ - 174.72963323018595, - -41.186006077740245 - ], - [ - 174.7505682303214, - -41.17081387014574 - ], - [ - 174.77930254423273, - -41.14204564725403 - ], - [ - 174.80393195615676, - -41.14818717798372 - ], - [ - 174.81214176013145, - -41.156591377929615 - ], - [ - 174.80639489734918, - -41.16919767784846 - ], - [ - 174.83595019165801, - -41.19861237765909 - ], - [ - 174.84539146622888, - -41.19020817771319 - ], - [ - 174.8720733291466, - -41.18212721622675 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2140, - "NAME_1": "West Coast", - "ID_2": 25248, - "NAME_2": "Buller", - "VARNAME_2": "", - "HASC_2": "NZ.WC.BU", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 172.48835674509945, - -42.26756196308493 - ], - [ - 172.49656654907412, - -42.27628940149028 - ], - [ - 172.4879462549007, - -42.29536047059827 - ], - [ - 172.47440007834248, - -42.29923933211176 - ], - [ - 172.4793259607273, - -42.31443153970626 - ], - [ - 172.46290635277794, - -42.3247751704089 - ], - [ - 172.45715948999566, - -42.33738147032774 - ], - [ - 172.4624958625792, - -42.35257367792224 - ], - [ - 172.45674899979693, - -42.36550321630054 - ], - [ - 172.42637272509063, - -42.37940247005721 - ], - [ - 172.41159507793623, - -42.372614462408606 - ], - [ - 172.35699988150463, - -42.38812990846256 - ], - [ - 172.34140125395274, - -42.409140408327296 - ], - [ - 172.31430890083632, - -42.41689813135427 - ], - [ - 172.29583684189328, - -42.44437340040816 - ], - [ - 172.27161792016798, - -42.445989592705445 - ], - [ - 172.24821997884015, - -42.45794941570537 - ], - [ - 172.23959968466676, - -42.477343723272824 - ], - [ - 172.20922340996046, - -42.49156621548895 - ], - [ - 172.18089958624782, - -42.488333830894376 - ], - [ - 172.07786654636564, - -42.517748530705006 - ], - [ - 172.04666929126188, - -42.52130415375904 - ], - [ - 172.00192585959988, - -42.5002936538943 - ], - [ - 171.9814013496632, - -42.506435184623996 - ], - [ - 171.95184605535437, - -42.49253593086733 - ], - [ - 171.92393272184046, - -42.461505038759405 - ], - [ - 171.9374788983987, - -42.45762617724591 - ], - [ - 171.93255301601388, - -42.44243396965142 - ], - [ - 171.96005585932903, - -42.434353008164976 - ], - [ - 171.96867615350246, - -42.41528193905699 - ], - [ - 171.95266703575183, - -42.39750382378683 - ], - [ - 171.9387103689949, - -42.40138268530032 - ], - [ - 171.91079703548098, - -42.3703517931924 - ], - [ - 171.89355644713416, - -42.34190680876014 - ], - [ - 171.86646409401774, - -42.34966453178713 - ], - [ - 171.84265566249118, - -42.361947593246505 - ], - [ - 171.81433183877854, - -42.35871520865193 - ], - [ - 171.78436605427098, - -42.34481595489526 - ], - [ - 171.76835693652038, - -42.3270378396251 - ], - [ - 171.73880164221154, - -42.31346182432789 - ], - [ - 171.71704566167864, - -42.30829000897657 - ], - [ - 171.6862588967736, - -42.2837238860578 - ], - [ - 171.65383017107362, - -42.27596616303082 - ], - [ - 171.66532389663817, - -42.250430324733685 - ], - [ - 171.65916654365716, - -42.22424800951762 - ], - [ - 171.64315742590657, - -42.20646989424746 - ], - [ - 171.63782105332302, - -42.19095444819351 - ], - [ - 171.61237066100153, - -42.18158053286924 - ], - [ - 171.5840468372889, - -42.15022640230187 - ], - [ - 171.57501605291674, - -42.13050885627496 - ], - [ - 171.580762915699, - -42.11757931789666 - ], - [ - 171.60169791583445, - -42.11176102562643 - ], - [ - 171.62016997477747, - -42.08428575657254 - ], - [ - 171.61072870020658, - -42.06456821054564 - ], - [ - 171.58938320987244, - -42.05939639519432 - ], - [ - 171.54381879781297, - -42.06650764130238 - ], - [ - 171.55284958218513, - -42.08622518732929 - ], - [ - 171.53642997423577, - -42.096568818031926 - ], - [ - 171.54135585662058, - -42.11208426408589 - ], - [ - 171.52780968006235, - -42.11596312559938 - ], - [ - 171.5101586015168, - -42.15442850227481 - ], - [ - 171.49497046416366, - -42.175762240599006 - ], - [ - 171.4711620326371, - -42.18804530205839 - ], - [ - 171.44365918932192, - -42.196126263544826 - ], - [ - 171.43914379713587, - -42.22004590954468 - ], - [ - 171.44406967952065, - -42.23523811713918 - ], - [ - 171.43052350296244, - -42.239440217112126 - ], - [ - 171.4104094832245, - -42.21713676340956 - ], - [ - 171.39645281646756, - -42.1819037713287 - ], - [ - 171.34391007102963, - -42.123720848626355 - ], - [ - 171.32831144347773, - -42.122104656329064 - ], - [ - 171.33980516904228, - -42.082992802734715 - ], - [ - 171.3595086985815, - -42.071356218194246 - ], - [ - 171.3656660515625, - -42.03418379535664 - ], - [ - 171.38578007130047, - -42.028365503086405 - ], - [ - 171.40753605183335, - -41.96695019578948 - ], - [ - 171.4177983068017, - -41.91620175765466 - ], - [ - 171.43668085594345, - -41.895191257789925 - ], - [ - 171.45597389528393, - -41.88581734246566 - ], - [ - 171.45966830707255, - -41.85123082730371 - ], - [ - 171.4563843854827, - -41.775269789331205 - ], - [ - 171.45843683647635, - -41.75361281254756 - ], - [ - 171.48635016999026, - -41.74488537414221 - ], - [ - 171.52739918986362, - -41.752643097169184 - ], - [ - 171.5503866409927, - -41.74908747411515 - ], - [ - 171.58692026868002, - -41.73001640500716 - ], - [ - 171.64520987690022, - -41.743269181844916 - ], - [ - 171.66286095544578, - -41.74197622800709 - ], - [ - 171.7092463479027, - -41.72225868198018 - ], - [ - 171.7383911520128, - -41.69995522827762 - ], - [ - 171.78888144645705, - -41.66763138233187 - ], - [ - 171.8233626231507, - -41.65082298244008 - ], - [ - 171.8516864468633, - -41.630135721034804 - ], - [ - 171.88452566276203, - -41.596518921251224 - ], - [ - 171.91202850607718, - -41.56290212146765 - ], - [ - 171.94650968277082, - -41.50439596030585 - ], - [ - 171.95759291813664, - -41.49308261422484 - ], - [ - 171.98796919284294, - -41.44492008376567 - ], - [ - 172.04174340887707, - -41.3983737456038 - ], - [ - 172.0626784090125, - -41.387383637982246 - ], - [ - 172.07704556596818, - -41.351504168982466 - ], - [ - 172.08402389934665, - -41.32532185376641 - ], - [ - 172.09757007590486, - -41.256472061901974 - ], - [ - 172.10372742888586, - -41.17081387014574 - ], - [ - 172.10003301709727, - -41.09711550138944 - ], - [ - 172.1016749778922, - -41.07125642463284 - ], - [ - 172.1111162524631, - -41.03537695563307 - ], - [ - 172.10988478186687, - -41.002729871227864 - ], - [ - 172.09510713471246, - -40.91480901025543 - ], - [ - 172.0979805661036, - -40.8983238488231 - ], - [ - 172.1111162524631, - -40.880545733552935 - ], - [ - 172.12876733100865, - -40.87375772590433 - ], - [ - 172.14067154677193, - -40.84757541068828 - ], - [ - 172.17227929207442, - -40.8116959416885 - ], - [ - 172.21291782174907, - -40.78454391109407 - ], - [ - 172.2170227237364, - -40.77484675731035 - ], - [ - 172.24904095923765, - -40.81428184936416 - ], - [ - 172.2313898806921, - -40.85242398758014 - ], - [ - 172.23590527287814, - -40.86761619517464 - ], - [ - 172.28434311632876, - -40.875697156661076 - ], - [ - 172.2921424301047, - -40.884747833525886 - ], - [ - 172.29378439089962, - -40.90640481030954 - ], - [ - 172.33031801858692, - -40.94002161009311 - ], - [ - 172.35084252852363, - -40.93420331782288 - ], - [ - 172.38245027382612, - -40.9416378023904 - ], - [ - 172.38368174442232, - -40.96329477917405 - ], - [ - 172.34796909713248, - -40.99044680976848 - ], - [ - 172.33072850878565, - -40.98980033284956 - ], - [ - 172.31225644984264, - -41.01727560190345 - ], - [ - 172.334833410773, - -41.04378115557896 - ], - [ - 172.3299075283882, - -41.06737756311935 - ], - [ - 172.3565893913059, - -41.05994307855183 - ], - [ - 172.36562017567803, - -41.04054877098439 - ], - [ - 172.3955859601856, - -41.02664951722771 - ], - [ - 172.41364752892989, - -41.03796286330873 - ], - [ - 172.44073988204633, - -41.030205140281744 - ], - [ - 172.44361331343745, - -41.02406360955205 - ], - [ - 172.48219939211845, - -41.029558663362835 - ], - [ - 172.5002609608627, - -41.0411952479033 - ], - [ - 172.4941036078817, - -41.05380154782214 - ], - [ - 172.4990294902665, - -41.0693169938761 - ], - [ - 172.51627007861333, - -41.06964023233556 - ], - [ - 172.52776380417788, - -41.08321624763277 - ], - [ - 172.52571135318422, - -41.100347885984014 - ], - [ - 172.5536246866981, - -41.10358027057859 - ], - [ - 172.58851635359048, - -41.143661839551314 - ], - [ - 172.6213555694892, - -41.16208643174039 - ], - [ - 172.62340802048286, - -41.183743408524045 - ], - [ - 172.63900664803475, - -41.20119828533475 - ], - [ - 172.683339589498, - -41.19441027768614 - ], - [ - 172.701811648441, - -41.20572362376715 - ], - [ - 172.69606478565873, - -41.21832992368599 - ], - [ - 172.68251860910053, - -41.222208785199484 - ], - [ - 172.66733047174736, - -41.243219285064214 - ], - [ - 172.6361332166436, - -41.24612843119933 - ], - [ - 172.57497017703227, - -41.263583308010034 - ], - [ - 172.60657792233476, - -41.2988163000909 - ], - [ - 172.58646390259682, - -41.34309996903657 - ], - [ - 172.5934422359753, - -41.37962591495527 - ], - [ - 172.56634988285887, - -41.38706039952279 - ], - [ - 172.5606030200766, - -41.39966669944163 - ], - [ - 172.52653233358168, - -41.40936385322536 - ], - [ - 172.52365890219053, - -41.41550538395504 - ], - [ - 172.47398958814375, - -41.40742442246861 - ], - [ - 172.44977066641846, - -41.40871737630644 - ], - [ - 172.4222678231033, - -41.41647509933342 - ], - [ - 172.4382769408539, - -41.43392997614412 - ], - [ - 172.42555174469317, - -41.44815246836025 - ], - [ - 172.4247307642957, - -41.475950975873594 - ], - [ - 172.40133282296787, - -41.48791079887352 - ], - [ - 172.37424046985143, - -41.49534528344104 - ], - [ - 172.36151527369069, - -41.509891014116626 - ], - [ - 172.34796909713248, - -41.51344663717066 - ], - [ - 172.3528949795173, - -41.52863884476516 - ], - [ - 172.347148116735, - -41.54092190622454 - ], - [ - 172.35207399911982, - -41.55611411381904 - ], - [ - 172.33154948918312, - -41.56160916762982 - ], - [ - 172.34468517554262, - -41.58552881362967 - ], - [ - 172.33319144997807, - -41.6104181750079 - ], - [ - 172.29871027328443, - -41.62011532879162 - ], - [ - 172.2970683124895, - -41.63692372868341 - ], - [ - 172.27161792016798, - -41.627549813359146 - ], - [ - 172.2510934102313, - -41.63304486716992 - ], - [ - 172.2424731160579, - -41.65179269781845 - ], - [ - 172.25807174360978, - -41.66957081308861 - ], - [ - 172.24288360625664, - -41.69025807449389 - ], - [ - 172.21538076294146, - -41.697692559061416 - ], - [ - 172.20060311578706, - -41.69090455141281 - ], - [ - 172.15298625273394, - -41.70415732825056 - ], - [ - 172.1197365466365, - -41.72419811273693 - ], - [ - 172.13164076239977, - -41.73745088957468 - ], - [ - 172.12302046822637, - -41.75619872022322 - ], - [ - 172.09962252689854, - -41.768158543223144 - ], - [ - 172.10865331127067, - -41.78787608925005 - ], - [ - 172.12219948782888, - -41.783997227736556 - ], - [ - 172.12014703683522, - -41.867392750276586 - ], - [ - 172.10947429166814, - -41.86480684260093 - ], - [ - 172.0979805661036, - -41.89001944243861 - ], - [ - 172.07047772278844, - -41.897777165465584 - ], - [ - 172.08648684053907, - -41.915555280735745 - ], - [ - 172.0737616443783, - -41.93010101141133 - ], - [ - 172.0602154678201, - -41.93397987292482 - ], - [ - 172.06226791881375, - -41.95531361124901 - ], - [ - 172.0860763503403, - -41.98214240338398 - ], - [ - 172.0762245855707, - -41.990223364870424 - ], - [ - 172.088128801334, - -42.00347614170818 - ], - [ - 172.11686311524537, - -42.00670852630275 - ], - [ - 172.12876733100865, - -42.019961303140505 - ], - [ - 172.11029527206563, - -42.047113333734934 - ], - [ - 172.14190301736812, - -42.08266956427526 - ], - [ - 172.14723938995166, - -42.09786177186976 - ], - [ - 172.19321429220983, - -42.101417394923786 - ], - [ - 172.21497027274273, - -42.10658921027511 - ], - [ - 172.23467380228195, - -42.128569425518215 - ], - [ - 172.25642978281485, - -42.13374124086954 - ], - [ - 172.26422909659078, - -42.142468679274884 - ], - [ - 172.32416066560592, - -42.14214544081543 - ], - [ - 172.3496110579274, - -42.151519356139694 - ], - [ - 172.3590523324983, - -42.171236902166605 - ], - [ - 172.34920056772867, - -42.1796411021125 - ], - [ - 172.35125301872236, - -42.200974840436686 - ], - [ - 172.36356772468437, - -42.214227617274446 - ], - [ - 172.3578208619021, - -42.22715715565275 - ], - [ - 172.34386419514513, - -42.23103601716623 - ], - [ - 172.38368174442232, - -42.27499644765245 - ], - [ - 172.41036360734003, - -42.29536047059827 - ], - [ - 172.44279233304, - -42.302794955165794 - ], - [ - 172.45674899979693, - -42.2989160936523 - ], - [ - 172.461264391983, - -42.27531968611191 - ], - [ - 172.48835674509945, - -42.26756196308493 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2140, - "NAME_1": "West Coast", - "ID_2": 25249, - "NAME_2": "Grey", - "VARNAME_2": "", - "HASC_2": "NZ.WC.GR", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 172.20922340996046, - -42.49156621548895 - ], - [ - 172.18993037061998, - -42.50805137692128 - ], - [ - 172.1977296843959, - -42.51710205378609 - ], - [ - 172.18951988042124, - -42.536173122894084 - ], - [ - 172.17268978227315, - -42.54651675359672 - ], - [ - 172.13164076239977, - -42.55815333813719 - ], - [ - 172.12014703683522, - -42.583689176434326 - ], - [ - 172.10495889948209, - -42.60469967629906 - ], - [ - 172.11275821325802, - -42.61375035316387 - ], - [ - 172.0442063500695, - -42.63346789919078 - ], - [ - 172.02942870291506, - -42.626356653082716 - ], - [ - 172.00192585959988, - -42.63411437610969 - ], - [ - 171.99125311443282, - -42.63185170689349 - ], - [ - 171.9826328202594, - -42.65092277600148 - ], - [ - 171.93460546700754, - -42.664822029758156 - ], - [ - 171.9144914472696, - -42.70942893716328 - ], - [ - 171.8939669373329, - -42.715247229433515 - ], - [ - 171.89478791773038, - -42.726237337055075 - ], - [ - 171.87713683918483, - -42.72559086013616 - ], - [ - 171.75357928936594, - -42.76114709067648 - ], - [ - 171.71006732830017, - -42.751126698433296 - ], - [ - 171.68215399478626, - -42.75888442146027 - ], - [ - 171.65383017107362, - -42.755975275325156 - ], - [ - 171.64562036709896, - -42.747247836919804 - ], - [ - 171.5975930138471, - -42.76114709067648 - ], - [ - 171.56762722933954, - -42.747247836919804 - ], - [ - 171.52411526827376, - -42.737550683136085 - ], - [ - 171.5101586015168, - -42.74142954464957 - ], - [ - 171.4736249738295, - -42.72946972164965 - ], - [ - 171.45966830707255, - -42.73367182162259 - ], - [ - 171.43093399316118, - -42.73043943702802 - ], - [ - 171.37592830653085, - -42.74627812154144 - ], - [ - 171.3521198750043, - -42.75856118300082 - ], - [ - 171.33323732586254, - -42.747247836919804 - ], - [ - 171.3192806591056, - -42.751126698433296 - ], - [ - 171.29547222757904, - -42.72462114475778 - ], - [ - 171.2515497763145, - -42.71492399097406 - ], - [ - 171.25072879591704, - -42.703933883352505 - ], - [ - 171.2306147761791, - -42.6819536681094 - ], - [ - 171.2392350703525, - -42.66288259900141 - ], - [ - 171.22035252121074, - -42.65124601446094 - ], - [ - 171.19613359948545, - -42.624740460785425 - ], - [ - 171.18546085431836, - -42.622477791569224 - ], - [ - 171.16904124636903, - -42.60469967629906 - ], - [ - 171.17191467776016, - -42.59823490710991 - ], - [ - 171.15590556000953, - -42.58045679183975 - ], - [ - 171.1468747756374, - -42.56073924581285 - ], - [ - 171.144411834445, - -42.5390822690292 - ], - [ - 171.16452585418295, - -42.50934433075911 - ], - [ - 171.18135595233105, - -42.477020484813366 - ], - [ - 171.19161820729937, - -42.44437340040816 - ], - [ - 171.2027014426652, - -42.43015090819203 - ], - [ - 171.21665810942216, - -42.386513716165275 - ], - [ - 171.24251899194238, - -42.37132150857077 - ], - [ - 171.2659169332702, - -42.323805455030524 - ], - [ - 171.2819260510208, - -42.309582962814396 - ], - [ - 171.2925987961879, - -42.277905593787565 - ], - [ - 171.30286105115624, - -42.27176406305787 - ], - [ - 171.31189183552837, - -42.2274803941122 - ], - [ - 171.3192806591056, - -42.15636793303156 - ], - [ - 171.32831144347773, - -42.122104656329064 - ], - [ - 171.34391007102963, - -42.123720848626355 - ], - [ - 171.39645281646756, - -42.1819037713287 - ], - [ - 171.4104094832245, - -42.21713676340956 - ], - [ - 171.43052350296244, - -42.239440217112126 - ], - [ - 171.44406967952065, - -42.23523811713918 - ], - [ - 171.43914379713587, - -42.22004590954468 - ], - [ - 171.44365918932192, - -42.196126263544826 - ], - [ - 171.4711620326371, - -42.18804530205839 - ], - [ - 171.49497046416366, - -42.175762240599006 - ], - [ - 171.5101586015168, - -42.15442850227481 - ], - [ - 171.52780968006235, - -42.11596312559938 - ], - [ - 171.54135585662058, - -42.11208426408589 - ], - [ - 171.53642997423577, - -42.096568818031926 - ], - [ - 171.55284958218513, - -42.08622518732929 - ], - [ - 171.54381879781297, - -42.06650764130238 - ], - [ - 171.58938320987244, - -42.05939639519432 - ], - [ - 171.61072870020658, - -42.06456821054564 - ], - [ - 171.62016997477747, - -42.08428575657254 - ], - [ - 171.60169791583445, - -42.11176102562643 - ], - [ - 171.580762915699, - -42.11757931789666 - ], - [ - 171.57501605291674, - -42.13050885627496 - ], - [ - 171.5840468372889, - -42.15022640230187 - ], - [ - 171.61237066100153, - -42.18158053286924 - ], - [ - 171.63782105332302, - -42.19095444819351 - ], - [ - 171.64315742590657, - -42.20646989424746 - ], - [ - 171.65916654365716, - -42.22424800951762 - ], - [ - 171.66532389663817, - -42.250430324733685 - ], - [ - 171.65383017107362, - -42.27596616303082 - ], - [ - 171.6862588967736, - -42.2837238860578 - ], - [ - 171.71704566167864, - -42.30829000897657 - ], - [ - 171.73880164221154, - -42.31346182432789 - ], - [ - 171.76835693652038, - -42.3270378396251 - ], - [ - 171.78436605427098, - -42.34481595489526 - ], - [ - 171.81433183877854, - -42.35871520865193 - ], - [ - 171.84265566249118, - -42.361947593246505 - ], - [ - 171.86646409401774, - -42.34966453178713 - ], - [ - 171.89355644713416, - -42.34190680876014 - ], - [ - 171.91079703548098, - -42.3703517931924 - ], - [ - 171.9387103689949, - -42.40138268530032 - ], - [ - 171.95266703575183, - -42.39750382378683 - ], - [ - 171.96867615350246, - -42.41528193905699 - ], - [ - 171.96005585932903, - -42.434353008164976 - ], - [ - 171.93255301601388, - -42.44243396965142 - ], - [ - 171.9374788983987, - -42.45762617724591 - ], - [ - 171.92393272184046, - -42.461505038759405 - ], - [ - 171.95184605535437, - -42.49253593086733 - ], - [ - 171.9814013496632, - -42.506435184623996 - ], - [ - 172.00192585959988, - -42.5002936538943 - ], - [ - 172.04666929126188, - -42.52130415375904 - ], - [ - 172.07786654636564, - -42.517748530705006 - ], - [ - 172.18089958624782, - -42.488333830894376 - ], - [ - 172.20922340996046, - -42.49156621548895 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "ISO": "NZL", - "NAME_0": "New Zealand", - "ID_1": 2140, - "NAME_1": "West Coast", - "ID_2": 25250, - "NAME_2": "Westland", - "VARNAME_2": "", - "HASC_2": "NZ.WC.WL", - "TYPE_2": "District", - "ENGTYPE_2": "District" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 171.89478791773038, - -42.726237337055075 - ], - [ - 171.89725085892277, - -42.74789431383872 - ], - [ - 171.86564311362028, - -42.751126698433296 - ], - [ - 171.85702281944685, - -42.77052100600074 - ], - [ - 171.80201713281653, - -42.7860364520547 - ], - [ - 171.77040938751404, - -42.789592075108736 - ], - [ - 171.76589399532796, - -42.81318848264913 - ], - [ - 171.77779821109124, - -42.826441259486884 - ], - [ - 171.77205134830896, - -42.839370797865186 - ], - [ - 171.74454850499382, - -42.84712852089216 - ], - [ - 171.7576841913533, - -42.871371405351475 - ], - [ - 171.72156105386472, - -42.898200197486446 - ], - [ - 171.701036543928, - -42.90434172821614 - ], - [ - 171.6850274261774, - -42.88656361294598 - ], - [ - 171.6230434061686, - -42.90434172821614 - ], - [ - 171.59718252364837, - -42.89496781289187 - ], - [ - 171.55572301357626, - -42.90660439743234 - ], - [ - 171.52411526827376, - -42.91016002048637 - ], - [ - 171.51221105251048, - -42.89690724364861 - ], - [ - 171.4941494837662, - -42.8962607667297 - ], - [ - 171.48840262098392, - -42.909190305108 - ], - [ - 171.47075154243836, - -42.90854382818908 - ], - [ - 171.4432486991232, - -42.916301551216065 - ], - [ - 171.448174581508, - -42.93181699727002 - ], - [ - 171.43175497355864, - -42.94216062797266 - ], - [ - 171.40384164004476, - -42.94991835099964 - ], - [ - 171.36730801235746, - -42.93795852799971 - ], - [ - 171.35745624758783, - -42.946362727945605 - ], - [ - 171.33570026705493, - -42.941514151053745 - ], - [ - 171.31476526691952, - -42.94733244332398 - ], - [ - 171.32010163950306, - -42.96252465091848 - ], - [ - 171.2852099726107, - -42.9722218047022 - ], - [ - 171.26879036466133, - -42.982565435404844 - ], - [ - 171.26304350187905, - -42.99517173532368 - ], - [ - 171.24210850174364, - -43.000990027593915 - ], - [ - 171.25237075671197, - -43.03169768124238 - ], - [ - 171.22568889379428, - -43.050122273431455 - ], - [ - 171.23102526637783, - -43.06531448102595 - ], - [ - 171.20352242306265, - -43.073072204052934 - ], - [ - 171.18546085431836, - -43.072748965593476 - ], - [ - 171.15795801100322, - -43.08050668862045 - ], - [ - 171.1189614421235, - -43.08567850397178 - ], - [ - 171.1201929127197, - -43.09666861159333 - ], - [ - 171.06888163787798, - -43.11670939607969 - ], - [ - 171.07421801046152, - -43.131901603674194 - ], - [ - 171.0463046769476, - -43.13965932670117 - ], - [ - 171.0434312455565, - -43.145800857430864 - ], - [ - 171.0594403633071, - -43.163578972701025 - ], - [ - 171.02495918661347, - -43.17327612648475 - ], - [ - 170.99088850011856, - -43.22208513386283 - ], - [ - 170.96297516660465, - -43.2298428568898 - ], - [ - 170.94819751945025, - -43.22273161078174 - ], - [ - 170.94983948024517, - -43.20559997243049 - ], - [ - 170.9149478133528, - -43.21529712621422 - ], - [ - 170.916179283949, - -43.22628723383577 - ], - [ - 170.88005614646042, - -43.25311602597074 - ], - [ - 170.8710253620883, - -43.272187095078735 - ], - [ - 170.840649087382, - -43.28640958729486 - ], - [ - 170.8069888910858, - -43.30709684870014 - ], - [ - 170.7753811457833, - -43.310329233294716 - ], - [ - 170.75855104763522, - -43.32067286399735 - ], - [ - 170.73638457690362, - -43.315501048646034 - ], - [ - 170.7158600669669, - -43.32131934091627 - ], - [ - 170.71791251796057, - -43.342976317699915 - ], - [ - 170.68630477265808, - -43.34653194075395 - ], - [ - 170.66660124311886, - -43.363017102186284 - ], - [ - 170.64607673318216, - -43.36883539445652 - ], - [ - 170.66495928232393, - -43.38014874053753 - ], - [ - 170.6230892820531, - -43.419583832591336 - ], - [ - 170.6173424192708, - -43.43251337096964 - ], - [ - 170.5857346739683, - -43.43574575556421 - ], - [ - 170.58039830138478, - -43.42055354796971 - ], - [ - 170.55946330124934, - -43.426371840239945 - ], - [ - 170.53647585012024, - -43.410533155726526 - ], - [ - 170.5237506539595, - -43.42507888640211 - ], - [ - 170.47572330070764, - -43.43865490169933 - ], - [ - 170.4629981045469, - -43.453200632374916 - ], - [ - 170.4642295751431, - -43.46419073999647 - ], - [ - 170.43960016321907, - -43.4654836938343 - ], - [ - 170.40758192771784, - -43.496514585942215 - ], - [ - 170.359554574466, - -43.510090601239426 - ], - [ - 170.34436643711282, - -43.502979355131366 - ], - [ - 170.3283573193622, - -43.485201239861205 - ], - [ - 170.31563212320145, - -43.49974697053679 - ], - [ - 170.21998790689648, - -43.52657576267176 - ], - [ - 170.19905290676107, - -43.560192562455335 - ], - [ - 170.1785283968244, - -43.56601085472557 - ], - [ - 170.13214300436746, - -43.59025373918488 - ], - [ - 170.09766182767382, - -43.59962765450915 - ], - [ - 170.1071031022447, - -43.61934520053605 - ], - [ - 170.09766182767382, - -43.627749400481946 - ], - [ - 170.1095660434371, - -43.6410021773197 - ], - [ - 170.09848280807128, - -43.666538015616844 - ], - [ - 170.08206320012192, - -43.67688164631948 - ], - [ - 170.04101418024857, - -43.68819499240049 - ], - [ - 170.03239388607514, - -43.70758929996794 - ], - [ - 170.04183516064603, - -43.727306845994846 - ], - [ - 170.02541555269667, - -43.737327238238024 - ], - [ - 169.9843665328233, - -43.74896382277849 - ], - [ - 169.99627074858657, - -43.76221659961625 - ], - [ - 169.9798511406372, - -43.77256023031889 - ], - [ - 169.9880609446119, - -43.78128766872424 - ], - [ - 169.97533574845116, - -43.79615663785928 - ], - [ - 169.9067838852626, - -43.81490446850782 - ], - [ - 169.90473143426894, - -43.832036106859064 - ], - [ - 169.89529015969805, - -43.84044030680496 - ], - [ - 169.87312368896644, - -43.83526849145364 - ], - [ - 169.85383064962593, - -43.85175365288597 - ], - [ - 169.852188688831, - -43.86888529123721 - ], - [ - 169.8107291787589, - -43.88019863731823 - ], - [ - 169.8119606493551, - -43.890865506480324 - ], - [ - 169.7840473158412, - -43.8986232295073 - ], - [ - 169.77255359027666, - -43.92383582934499 - ], - [ - 169.77378506087285, - -43.93482593696654 - ], - [ - 169.73643045278808, - -43.95034138302049 - ], - [ - 169.73725143318555, - -43.96133149064205 - ], - [ - 169.71672692324887, - -43.96682654445283 - ], - [ - 169.6978443741071, - -43.95518995991236 - ], - [ - 169.67280447198434, - -43.956482913750186 - ], - [ - 169.6453016286692, - -43.96391739831771 - ], - [ - 169.63011349131602, - -43.956806152209644 - ], - [ - 169.59563231462238, - -43.96618006753391 - ], - [ - 169.59357986362872, - -43.98331170588516 - ], - [ - 169.60999947157808, - -44.00108982115532 - ], - [ - 169.59440084402618, - -44.022100321020055 - ], - [ - 169.5775707458781, - -44.03212071326323 - ], - [ - 169.53570074560724, - -44.04343405934425 - ], - [ - 169.52995388282497, - -44.056040359263086 - ], - [ - 169.49424123553513, - -44.0544241669658 - ], - [ - 169.47330623539972, - -44.05991922077658 - ], - [ - 169.44457192148835, - -44.0954754513169 - ], - [ - 169.41665858797447, - -44.10290993588442 - ], - [ - 169.38997672505675, - -44.12101128961404 - ], - [ - 169.3600109405492, - -44.10678879739791 - ], - [ - 169.3394864306125, - -44.08416210523589 - ], - [ - 169.34277035220236, - -44.07769733604674 - ], - [ - 169.326350744253, - -44.05991922077658 - ], - [ - 169.29843741073913, - -44.067030466884646 - ], - [ - 169.28776466557204, - -44.103556412803336 - ], - [ - 169.24178976331385, - -44.11002118199249 - ], - [ - 169.1986882924468, - -44.11002118199249 - ], - [ - 169.14942946859875, - -44.08383886677643 - ], - [ - 169.08621397799374, - -44.10032402820876 - ], - [ - 169.0833405466026, - -44.10678879739791 - ], - [ - 169.04147054633177, - -44.11777890501946 - ], - [ - 169.0283348599723, - -44.13232463569505 - ], - [ - 168.98646485970144, - -44.1433147433166 - ], - [ - 168.9835914283103, - -44.14977951250575 - ], - [ - 168.99960054606092, - -44.16788086623537 - ], - [ - 168.9688137811559, - -44.18178011999204 - ], - [ - 168.97825505572675, - -44.2018209044784 - ], - [ - 168.95280466340526, - -44.20279061985678 - ], - [ - 168.88302132962053, - -44.221215212045855 - ], - [ - 168.88096887862685, - -44.23867008885656 - ], - [ - 168.86413878047875, - -44.248690481099736 - ], - [ - 168.86619123147244, - -44.27067069634285 - ], - [ - 168.85059260392055, - -44.292004434667035 - ], - [ - 168.85551848630536, - -44.307519880720996 - ], - [ - 168.83991985875346, - -44.32853038058573 - ], - [ - 168.84771917252942, - -44.33758105745054 - ], - [ - 168.83212054497753, - -44.35859155731528 - ], - [ - 168.8107750546434, - -44.36440984958551 - ], - [ - 168.7951764270915, - -44.38542034945024 - ], - [ - 168.75987427000038, - -44.39479426477451 - ], - [ - 168.75494838761557, - -44.41839067231491 - ], - [ - 168.71102593635106, - -44.40772380315281 - ], - [ - 168.69871123038905, - -44.3941477878556 - ], - [ - 168.67079789687514, - -44.40158227242312 - ], - [ - 168.66464054389414, - -44.41418857234196 - ], - [ - 168.64370554375873, - -44.4200068646122 - ], - [ - 168.63754819077772, - -44.432613164531034 - ], - [ - 168.60265652388534, - -44.4419870798553 - ], - [ - 168.59649917090434, - -44.454916618233604 - ], - [ - 168.5743327001727, - -44.44942156442283 - ], - [ - 168.51850603314492, - -44.46429053355787 - ], - [ - 168.5123486801639, - -44.477220071936166 - ], - [ - 168.48115142506015, - -44.491119325692836 - ], - [ - 168.46308985631586, - -44.490472848773926 - ], - [ - 168.42819818942348, - -44.49984676409819 - ], - [ - 168.3957694637235, - -44.502755910233304 - ], - [ - 168.36990858120328, - -44.49273551799013 - ], - [ - 168.3485630908691, - -44.49855381026036 - ], - [ - 168.34035328689444, - -44.48917989493609 - ], - [ - 168.35964632623492, - -44.461704625882206 - ], - [ - 168.37072956160074, - -44.425178679963516 - ], - [ - 168.35430995365138, - -44.407077326233896 - ], - [ - 168.36457220861973, - -44.398673126288 - ], - [ - 168.39248554213364, - -44.39123864172048 - ], - [ - 168.4125995618716, - -44.37443024182869 - ], - [ - 168.41834642465386, - -44.361500703450396 - ], - [ - 168.37852887537667, - -44.35568241118016 - ], - [ - 168.37319250279316, - -44.3401669651262 - ], - [ - 168.35020505166406, - -44.32400504215333 - ], - [ - 168.3592358360362, - -44.30461073458588 - ], - [ - 168.35020505166406, - -44.28456995009952 - ], - [ - 168.32844907113116, - -44.2793981347482 - ], - [ - 168.3140819141755, - -44.28327699626169 - ], - [ - 168.28740005125778, - -44.26291297331586 - ], - [ - 168.24060416860212, - -44.25903411180238 - ], - [ - 168.21679573707559, - -44.271317173261764 - ], - [ - 168.1539907366693, - -44.28844881161301 - ], - [ - 168.1248459325592, - -44.28553966547789 - ], - [ - 168.11704661878326, - -44.27648898861308 - ], - [ - 168.09693259904532, - -44.27648898861308 - ], - [ - 168.05095769678712, - -44.25935735026184 - ], - [ - 168.06696681453775, - -44.24772076572137 - ], - [ - 168.0993955402377, - -44.24481161958625 - ], - [ - 168.14865436408576, - -44.212164535181046 - ], - [ - 168.15234877587437, - -44.20279061985678 - ], - [ - 168.2085859331009, - -44.17499211234344 - ], - [ - 168.2221321096591, - -44.16432524318134 - ], - [ - 168.25291887456416, - -44.15268865864087 - ], - [ - 168.26482309032744, - -44.12489015112753 - ], - [ - 168.28534760026412, - -44.10161698204659 - ], - [ - 168.3243441691438, - -44.0848085821548 - ], - [ - 168.32064975735523, - -44.07123256685759 - ], - [ - 168.3276280907337, - -44.04860587469557 - ], - [ - 168.3690876008058, - -44.026625659452456 - ], - [ - 168.36867711060708, - -44.01014049802013 - ], - [ - 168.38920162054376, - -44.00238277499315 - ], - [ - 168.44133387578296, - -44.008524305722844 - ], - [ - 168.51850603314492, - -44.00012010577694 - ], - [ - 168.52999975870947, - -43.990422951993224 - ], - [ - 168.5472403470563, - -43.99300885966888 - ], - [ - 168.5657124059993, - -43.97426102902035 - ], - [ - 168.61456073964862, - -43.97296807518252 - ], - [ - 168.6301593672005, - -43.98945323661485 - ], - [ - 168.6445265241562, - -43.99430181350671 - ], - [ - 168.69132240681185, - -43.99624124426346 - ], - [ - 168.77916730934086, - -43.97781665207438 - ], - [ - 168.82760515279145, - -43.95971529834476 - ], - [ - 168.84895064312562, - -43.945169567669176 - ], - [ - 168.88589476101166, - -43.90799714483157 - ], - [ - 168.91709201611542, - -43.899592944885676 - ], - [ - 168.92694378088504, - -43.888279598804665 - ], - [ - 168.96019348698246, - -43.88019863731823 - ], - [ - 168.98810682049637, - -43.867915575858845 - ], - [ - 169.02176701679255, - -43.84625859907519 - ], - [ - 169.02997682076722, - -43.835914968372556 - ], - [ - 169.07266780143553, - -43.81490446850782 - ], - [ - 169.10427554673802, - -43.79421720710254 - ], - [ - 169.16256515495823, - -43.743792007427174 - ], - [ - 169.19499388065822, - -43.73053923058942 - ], - [ - 169.2081295670177, - -43.71922588450841 - ], - [ - 169.2676506458341, - -43.69304356929236 - ], - [ - 169.28160731259103, - -43.69336680775181 - ], - [ - 169.30787868531, - -43.67817460015731 - ], - [ - 169.34235986200363, - -43.6713865925087 - ], - [ - 169.35672701895933, - -43.66330563102227 - ], - [ - 169.36822074452385, - -43.643911323454816 - ], - [ - 169.43020476453268, - -43.62484025434683 - ], - [ - 169.51189231408068, - -43.62257758513063 - ], - [ - 169.53446927501105, - -43.60803185445504 - ], - [ - 169.55909868693507, - -43.58669811613085 - ], - [ - 169.56320358892242, - -43.5999508929686 - ], - [ - 169.58783300084644, - -43.60124384680643 - ], - [ - 169.62436662853375, - -43.57958687002278 - ], - [ - 169.6481750600603, - -43.553404554806725 - ], - [ - 169.6723939817856, - -43.555990462482384 - ], - [ - 169.68758211913877, - -43.54823273945541 - ], - [ - 169.7171374134476, - -43.514292701212376 - ], - [ - 169.72657868801846, - -43.494898393644924 - ], - [ - 169.74628221755768, - -43.47970618605043 - ], - [ - 169.79184662961714, - -43.422169740266995 - ], - [ - 169.80580329637408, - -43.42055354796971 - ], - [ - 169.84233692406139, - -43.39501770967257 - ], - [ - 169.87353417916518, - -43.3963106635104 - ], - [ - 169.91129927744868, - -43.39081560969962 - ], - [ - 169.93880212076385, - -43.38176493283481 - ], - [ - 169.98026163083594, - -43.358491763753875 - ], - [ - 170.01269035653593, - -43.33198621007836 - ], - [ - 170.04963447442196, - -43.2838236796192 - ], - [ - 170.08247369032068, - -43.27412652583548 - ], - [ - 170.1144919258219, - -43.25085335675454 - ], - [ - 170.13050104357254, - -43.23275200302492 - ], - [ - 170.16949761245223, - -43.21497388775476 - ], - [ - 170.21136761272308, - -43.17101345726854 - ], - [ - 170.22778722067244, - -43.14450790359303 - ], - [ - 170.239280946237, - -43.14159875745791 - ], - [ - 170.2614474169686, - -43.11347701148512 - ], - [ - 170.32958878995842, - -43.10087071156627 - ], - [ - 170.38746790797987, - -43.1083051961338 - ], - [ - 170.3854154569862, - -43.08858765010689 - ], - [ - 170.36037555486345, - -43.088910888566346 - ], - [ - 170.3878783981786, - -43.06563771948541 - ], - [ - 170.4071714375191, - -43.04236455040447 - ], - [ - 170.45725124176462, - -43.022970242837026 - ], - [ - 170.4970687910418, - -43.01779842748571 - ], - [ - 170.5163618303823, - -43.018768142864076 - ], - [ - 170.58039830138478, - -43.00163650451283 - ], - [ - 170.6304781056303, - -42.97707038159407 - ], - [ - 170.64812918417584, - -42.962201412459024 - ], - [ - 170.66413830192644, - -42.95799931248607 - ], - [ - 170.68835722365174, - -42.94248386643211 - ], - [ - 170.72406987094158, - -42.928261374215985 - ], - [ - 170.75485663584664, - -42.90498820513505 - ], - [ - 170.7786650673732, - -42.894321335972954 - ], - [ - 170.8164301656567, - -42.8681390207569 - ], - [ - 170.84147006777945, - -42.84292642091922 - ], - [ - 170.85624771493386, - -42.83484545943278 - ], - [ - 170.8784141856655, - -42.81124905189239 - ], - [ - 170.89770722500597, - -42.77957168286555 - ], - [ - 170.93752477428316, - -42.73625772929825 - ], - [ - 170.99253046091349, - -42.69132758343366 - ], - [ - 171.02331722581852, - -42.660943168244664 - ], - [ - 171.0446627161527, - -42.6538319221366 - ], - [ - 171.10541526556528, - -42.590800422542394 - ], - [ - 171.1238873245083, - -42.56073924581285 - ], - [ - 171.144411834445, - -42.5390822690292 - ], - [ - 171.1468747756374, - -42.56073924581285 - ], - [ - 171.15590556000953, - -42.58045679183975 - ], - [ - 171.17191467776016, - -42.59823490710991 - ], - [ - 171.16904124636903, - -42.60469967629906 - ], - [ - 171.18546085431836, - -42.622477791569224 - ], - [ - 171.19613359948545, - -42.624740460785425 - ], - [ - 171.22035252121074, - -42.65124601446094 - ], - [ - 171.2392350703525, - -42.66288259900141 - ], - [ - 171.2306147761791, - -42.6819536681094 - ], - [ - 171.25072879591704, - -42.703933883352505 - ], - [ - 171.2515497763145, - -42.71492399097406 - ], - [ - 171.29547222757904, - -42.72462114475778 - ], - [ - 171.3192806591056, - -42.751126698433296 - ], - [ - 171.33323732586254, - -42.747247836919804 - ], - [ - 171.3521198750043, - -42.75856118300082 - ], - [ - 171.37592830653085, - -42.74627812154144 - ], - [ - 171.43093399316118, - -42.73043943702802 - ], - [ - 171.45966830707255, - -42.73367182162259 - ], - [ - 171.4736249738295, - -42.72946972164965 - ], - [ - 171.5101586015168, - -42.74142954464957 - ], - [ - 171.52411526827376, - -42.737550683136085 - ], - [ - 171.56762722933954, - -42.747247836919804 - ], - [ - 171.5975930138471, - -42.76114709067648 - ], - [ - 171.64562036709896, - -42.747247836919804 - ], - [ - 171.65383017107362, - -42.755975275325156 - ], - [ - 171.68215399478626, - -42.75888442146027 - ], - [ - 171.71006732830017, - -42.751126698433296 - ], - [ - 171.75357928936594, - -42.76114709067648 - ], - [ - 171.87713683918483, - -42.72559086013616 - ], - [ - 171.89478791773038, - -42.726237337055075 - ] - ] - ] - } - } - ] -} diff --git a/GlobalQuakeCore/src/main/resources/polygons_converted/us-albers.geojson b/GlobalQuakeCore/src/main/resources/polygons_converted/us-albers.geojson deleted file mode 100644 index e8b36e1..0000000 --- a/GlobalQuakeCore/src/main/resources/polygons_converted/us-albers.geojson +++ /dev/null @@ -1,58 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "us", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "id": "0", "geo_id": "0400000US04", "fips_state": "04", "name": "Arizona", "iso_3166_2": "AZ", "census": 6392017, "pop_estimataes_base": 6392310, "pop_2010": 6411999, "pop_2011": 6472867, "pop_2012": 6556236, "pop_2013": 6634997, "pop_2014": 6731484 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.045267706166157, 36.999040906356697 ], [ -109.045267706166157, 36.969392142978492 ], [ -109.045267706166157, 36.968787066174855 ], [ -109.045540482391871, 36.875000161611133 ], [ -109.045540482391871, 36.874596777075375 ], [ -109.046086034843327, 36.002277718498874 ], [ -109.046086034843327, 35.925836348972751 ], [ -109.046086034843327, 35.925836348972751 ], [ -109.046086034843327, 35.888724971683018 ], [ -109.046086034843327, 35.879850511896343 ], [ -109.046358811069041, 35.616440410046422 ], [ -109.046358811069041, 35.614221795099752 ], [ -109.046631587294769, 35.546453193092425 ], [ -109.046358811069041, 35.546251500824546 ], [ -109.046086034843327, 35.174734343391499 ], [ -109.045813258617599, 34.959730385832529 ], [ -109.046086034843327, 34.579338768612814 ], [ -109.046086034843327, 34.52246154907094 ], [ -109.046086034843327, 34.52246154907094 ], [ -109.046631587294769, 33.778217080597585 ], [ -109.046904363520497, 33.372613929892992 ], [ -109.047177139746225, 33.369185161339047 ], [ -109.046904363520497, 33.365554700517229 ], [ -109.046904363520497, 33.36535300824935 ], [ -109.047177139746225, 33.209041500643153 ], [ -109.047177139746225, 33.13804582234976 ], [ -109.047177139746225, 33.137642437814002 ], [ -109.046904363520497, 33.092866754344875 ], [ -109.046904363520497, 33.09185829300548 ], [ -109.047449915971939, 33.069470451270917 ], [ -109.047449915971939, 33.068461989931521 ], [ -109.047177139746225, 32.777621739650058 ], [ -109.047177139746225, 32.777621739650058 ], [ -109.047722692197667, 32.693516063944536 ], [ -109.047722692197667, 32.69008729539059 ], [ -109.047722692197667, 32.686255142300894 ], [ -109.047722692197667, 32.681414527871794 ], [ -109.047995468423395, 32.42647550127279 ], [ -109.048268244649108, 32.089044337111289 ], [ -109.048268244649108, 32.084002030414318 ], [ -109.048813797100564, 32.028133272211846 ], [ -109.048541020874836, 32.013611428924563 ], [ -109.048541020874836, 31.870813303266253 ], [ -109.048813797100564, 31.861333766675944 ], [ -109.048813797100564, 31.810709007438327 ], [ -109.049086573326292, 31.796590548686797 ], [ -109.049904902003462, 31.499497838101089 ], [ -109.049904902003462, 31.499497838101089 ], [ -109.050177678229176, 31.332496640297311 ], [ -109.426881645953912, 31.334110178440341 ], [ -110.460157988996102, 31.333101717100945 ], [ -110.761030165969586, 31.33269833256519 ], [ -110.976796160517196, 31.332496640297311 ], [ -111.098181580964336, 31.339757561940953 ], [ -111.366593387076676, 31.425880160325271 ], [ -111.579631619367063, 31.494052146868356 ], [ -112.24602393881058, 31.704215489998234 ], [ -112.867135404783937, 31.895419759947487 ], [ -113.12600004299594, 31.972869590813009 ], [ -113.333855526997553, 32.038621270141547 ], [ -113.493156842820326, 32.08884264484341 ], [ -114.250656421655634, 32.323814136922401 ], [ -114.813666551549801, 32.494244103280124 ], [ -114.809302131938225, 32.617074694418406 ], [ -114.807392698358157, 32.621310232043868 ], [ -114.799209411586432, 32.625142385133564 ], [ -114.781751733140112, 32.625142385133564 ], [ -114.753110229439088, 32.658219917065715 ], [ -114.747927481150342, 32.664270685102082 ], [ -114.719558753675045, 32.718727597429407 ], [ -114.678642319816461, 32.736678209270629 ], [ -114.677005662462122, 32.73627482473487 ], [ -114.658729655338618, 32.733854517520328 ], [ -114.658184102887176, 32.733854517520328 ], [ -114.615631011674239, 32.728408826287591 ], [ -114.615631011674239, 32.729417287626987 ], [ -114.496700577258608, 32.822195730851313 ], [ -114.496155024807166, 32.822397423119185 ], [ -114.465604087526089, 32.879274642661059 ], [ -114.465604087526089, 32.879476334928938 ], [ -114.462876325268851, 32.905696329753198 ], [ -114.468604626009054, 32.971649701349619 ], [ -114.511430493447705, 33.023484614194516 ], [ -114.516886017962179, 33.026913382748454 ], [ -114.523705423605278, 33.030947228106029 ], [ -114.57171403933269, 33.036594611606645 ], [ -114.578260668750062, 33.035384457999371 ], [ -114.584807298167433, 33.028325228623608 ], [ -114.589717270230466, 33.026308305944816 ], [ -114.60635661999963, 33.025703229141179 ], [ -114.62381429844595, 33.028728613159366 ], [ -114.675096228882055, 33.047485994072105 ], [ -114.707829375968927, 33.091051523933963 ], [ -114.706192718614574, 33.105371674953368 ], [ -114.696918326939965, 33.131188285241876 ], [ -114.6870983828139, 33.142281359975222 ], [ -114.679460648493631, 33.159425202744927 ], [ -114.675369005107783, 33.185443505301315 ], [ -114.67209569039909, 33.258456106273499 ], [ -114.700191641648658, 33.340948243835996 ], [ -114.721195411029399, 33.396817002038468 ], [ -114.66527628475599, 33.415372690683334 ], [ -114.627087613154643, 33.433524994792435 ], [ -114.62299596976878, 33.456517913330643 ], [ -114.594627242293498, 33.495041136495523 ], [ -114.55889355672366, 33.531749129249491 ], [ -114.535707577537138, 33.568860506539224 ], [ -114.535980353762852, 33.569062198807103 ], [ -114.540344773374443, 33.5805586580762 ], [ -114.540617549600171, 33.591450040541666 ], [ -114.53025205302265, 33.679186177069013 ], [ -114.523978199831006, 33.685842021909018 ], [ -114.519068227767974, 33.688464021391439 ], [ -114.496427801032894, 33.696935096642363 ], [ -114.494245591227099, 33.707826479107823 ], [ -114.504338311578877, 33.756434315666652 ], [ -114.523432647379551, 33.806050613564878 ], [ -114.525614857185346, 33.838523068693391 ], [ -114.518522675316518, 33.917586437701942 ], [ -114.499973891967301, 33.961757044367431 ], [ -114.463694653946021, 33.993422730424427 ], [ -114.43832646495369, 34.022668109266881 ], [ -114.435053150245011, 34.037795029357802 ], [ -114.435325926470739, 34.079747021076628 ], [ -114.433416492890672, 34.088419788595424 ], [ -114.420596010281642, 34.103546708686345 ], [ -114.411594394832747, 34.11000086125847 ], [ -114.401228898255241, 34.111614399401503 ], [ -114.390590625452006, 34.11000086125847 ], [ -114.3665863175883, 34.118673628777266 ], [ -114.321578240343854, 34.138036086493642 ], [ -114.312576624894973, 34.144490239065775 ], [ -114.244109792238262, 34.179584693676709 ], [ -114.225833785114759, 34.201770843143393 ], [ -114.164459134326876, 34.251588833309498 ], [ -114.133362644594357, 34.258446370417388 ], [ -114.131453211014289, 34.260463293096173 ], [ -114.138272616657389, 34.303222053886515 ], [ -114.177006840710177, 34.349207890962916 ], [ -114.199374491219544, 34.361309427035657 ], [ -114.264295232941834, 34.401244496075691 ], [ -114.339581471241644, 34.451465870777554 ], [ -114.452510828691345, 34.653561523192266 ], [ -114.465604087526089, 34.692286438625032 ], [ -114.552619703532017, 34.766912577740243 ], [ -114.633088690120573, 34.86997732662639 ], [ -114.635270899926354, 34.875019633323362 ], [ -114.63663478105498, 34.889138092074894 ], [ -114.630906480314778, 34.907290396183996 ], [ -114.62899704673471, 34.986152072924675 ], [ -114.629269822960438, 34.991799456425284 ], [ -114.633088690120573, 35.002085762087113 ], [ -114.633634242572015, 35.015599144035001 ], [ -114.635543676152082, 35.028305756911379 ], [ -114.621904864865883, 35.094662513043552 ], [ -114.598991661905075, 35.121084200135698 ], [ -114.584261745715992, 35.124916353225402 ], [ -114.57853344497579, 35.128748506315098 ], [ -114.572805144235588, 35.138631427441169 ], [ -114.569531829526895, 35.163036191854523 ], [ -114.569259053301181, 35.183407110910295 ], [ -114.595991123422124, 35.325196775229202 ], [ -114.604447186419563, 35.353635385000139 ], [ -114.627087613154643, 35.409504143202611 ], [ -114.651910249695518, 35.429068293186873 ], [ -114.662002970047311, 35.444195213277794 ], [ -114.677551214913564, 35.489777665818437 ], [ -114.676732886236394, 35.49905551014087 ], [ -114.675096228882055, 35.510551969409967 ], [ -114.67127736172192, 35.520636582803917 ], [ -114.653819683275586, 35.599498259544589 ], [ -114.653274130824144, 35.610793026545814 ], [ -114.657638550435721, 35.618255640457335 ], [ -114.676732886236394, 35.641046866727656 ], [ -114.689280592619696, 35.651333172389485 ], [ -114.700191641648658, 35.700344393484073 ], [ -114.707829375968927, 35.811880217621137 ], [ -114.705647166163132, 35.848789902642984 ], [ -114.704283285034506, 35.852016978929051 ], [ -114.706192718614574, 35.878640358289076 ], [ -114.731288131381177, 35.945198806689127 ], [ -114.743563061538751, 35.983722029854007 ], [ -114.755565215470611, 36.08719016327592 ], [ -114.744926942667377, 36.098686622545017 ], [ -114.73619810344421, 36.104334006045626 ], [ -114.631724808991947, 36.142252152406869 ], [ -114.571986815558418, 36.151529996729309 ], [ -114.513339927027772, 36.151126612193551 ], [ -114.381316233777397, 36.141647075603238 ], [ -114.365767988911131, 36.133781077155959 ], [ -114.328670422212682, 36.105544159652901 ], [ -114.310939967540634, 36.083761394721975 ], [ -114.307121100380485, 36.076500473078333 ], [ -114.303575009446078, 36.066415859684383 ], [ -114.292663960417116, 36.051087247325583 ], [ -114.263204128038936, 36.025875713840712 ], [ -114.252565855235702, 36.020228330340103 ], [ -114.238927043949516, 36.014580946839487 ], [ -114.233198743209314, 36.014379254571608 ], [ -114.213558854957185, 36.015589408178883 ], [ -114.154093637749369, 36.023858791161921 ], [ -114.148638113234895, 36.027287559715866 ], [ -114.138272616657389, 36.041204326199512 ], [ -114.125724910274087, 36.077508934417729 ], [ -114.120269385759613, 36.102317083366842 ], [ -114.062986378357579, 36.187027835876002 ], [ -114.060258616100342, 36.189448143090551 ], [ -114.04689258103987, 36.194087065251765 ], [ -114.047165357265598, 36.250560900257874 ], [ -114.048529238394224, 36.289689200226391 ], [ -114.046347028588428, 36.37177795325313 ], [ -114.046619804814156, 36.473430856264123 ], [ -114.050438671974291, 36.65616405096246 ], [ -114.050711448200005, 36.800172330228037 ], [ -114.050711448200005, 36.843132783286258 ], [ -114.050711448200005, 37.000452752231851 ], [ -113.965878041999872, 37.000049367696093 ], [ -113.965878041999872, 37.000049367696093 ], [ -112.966425950947439, 37.000251059963972 ], [ -112.899322999419354, 37.000251059963972 ], [ -112.609907423926288, 37.00065444449973 ], [ -112.558898269715911, 37.00065444449973 ], [ -112.544986682203998, 37.00065444449973 ], [ -112.540349486366694, 37.00065444449973 ], [ -112.53871282901234, 37.00065444449973 ], [ -112.534621185626492, 37.00065444449973 ], [ -112.369046016612074, 37.001057829035489 ], [ -112.357589415131656, 37.001057829035489 ], [ -111.412692569224021, 37.001461213571247 ], [ -111.405873163580921, 37.001461213571247 ], [ -111.405600387355193, 37.001461213571247 ], [ -111.189834392807583, 37.001057829035489 ], [ -110.75066466939208, 37.003276443982152 ], [ -110.495346122114483, 37.003881520785789 ], [ -110.331134834228692, 36.998234137285181 ], [ -110.000802824877027, 36.998032445017301 ], [ -109.38132801625801, 36.999242598624576 ], [ -109.378054701549331, 36.999040906356697 ], [ -109.270035316162662, 36.999242598624576 ], [ -109.268125882582595, 36.999242598624576 ], [ -109.263488686745291, 36.999242598624576 ], [ -109.246849336976126, 36.999444290892455 ], [ -109.233756078141383, 36.999242598624576 ], [ -109.181110266576667, 36.999242598624576 ], [ -109.045267706166157, 36.999040906356697 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "1", "geo_id": "0400000US05", "fips_state": "05", "name": "Arkansas", "iso_3166_2": "AR", "census": 2915918, "pop_estimataes_base": 2915958, "pop_2010": 2922297, "pop_2011": 2938430, "pop_2012": 2949300, "pop_2013": 2958765, "pop_2014": 2966369 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.0428480675765, 33.019249076569054 ], [ -94.043120843802228, 33.079555064664859 ], [ -94.0428480675765, 33.092665062076996 ], [ -94.043120843802228, 33.133810284724305 ], [ -94.043120843802228, 33.138247514617639 ], [ -94.043120843802228, 33.143491513582489 ], [ -94.0428480675765, 33.199763656320727 ], [ -94.0428480675765, 33.202587348071027 ], [ -94.0428480675765, 33.215293960947406 ], [ -94.0428480675765, 33.241917340307424 ], [ -94.043120843802228, 33.250186723290462 ], [ -94.043120843802228, 33.260876413488049 ], [ -94.043120843802228, 33.271162719149878 ], [ -94.043120843802228, 33.271162719149878 ], [ -94.043120843802228, 33.330460245906288 ], [ -94.043120843802228, 33.347402396408121 ], [ -94.043120843802228, 33.352041318569334 ], [ -94.043120843802228, 33.358697163409346 ], [ -94.0428480675765, 33.371202084017838 ], [ -94.043120843802228, 33.377656236589964 ], [ -94.0428480675765, 33.420213305112426 ], [ -94.043120843802228, 33.431104687577893 ], [ -94.043120843802228, 33.435743609739106 ], [ -94.043120843802228, 33.47023298754641 ], [ -94.043393620027956, 33.49100729113794 ], [ -94.043120843802228, 33.493024213816732 ], [ -94.043393620027956, 33.542237127179199 ], [ -94.043393620027956, 33.551514971501632 ], [ -94.043393620027956, 33.552321740573149 ], [ -94.066852375440206, 33.568860506539224 ], [ -94.08512838256371, 33.575516351379228 ], [ -94.181691166469975, 33.593265270952571 ], [ -94.252612985158194, 33.586206041576808 ], [ -94.257795733446955, 33.582575580754991 ], [ -94.355995174707559, 33.543245588518595 ], [ -94.409459314949444, 33.568255429735586 ], [ -94.464287336319956, 33.598912654453187 ], [ -94.470833965737327, 33.60597188382895 ], [ -94.478471700057597, 33.620897111651992 ], [ -94.485836658152138, 33.637839262153825 ], [ -94.485563881926424, 33.653369566780505 ], [ -94.485563881926424, 33.663454180174455 ], [ -94.484472777023512, 33.687858944587809 ], [ -94.48474555324924, 33.691691097677506 ], [ -94.483927224572071, 33.711255247661768 ], [ -94.483927224572071, 33.716700938894498 ], [ -94.482836119669173, 33.750585239898165 ], [ -94.482836119669173, 33.750786932166044 ], [ -94.482836119669173, 33.753610623916344 ], [ -94.482563343443445, 33.756232623398773 ], [ -94.48174501476629, 33.789108463063044 ], [ -94.481472238540562, 33.795764307903049 ], [ -94.481472238540562, 33.802621845010933 ], [ -94.481472238540562, 33.802823537278812 ], [ -94.480653909863378, 33.830253685710353 ], [ -94.479835581186222, 33.851229681569762 ], [ -94.479017252509038, 33.881281829483726 ], [ -94.47874447628331, 33.881483521751605 ], [ -94.477380595154699, 33.937755664489842 ], [ -94.477380595154699, 33.940982740775901 ], [ -94.477107818928971, 33.953891045920159 ], [ -94.476835042703243, 33.957319814474097 ], [ -94.474925609123176, 34.019642725248694 ], [ -94.474925609123176, 34.021861340195365 ], [ -94.474925609123176, 34.021861340195365 ], [ -94.470288413285886, 34.189870999338538 ], [ -94.465923993674295, 34.352031582713224 ], [ -94.465378441222839, 34.359494196624745 ], [ -94.464287336319956, 34.402656341950845 ], [ -94.4637417838685, 34.4145561857557 ], [ -94.4637417838685, 34.419598492452678 ], [ -94.461014021611263, 34.507536321247898 ], [ -94.459922916708365, 34.545252775341268 ], [ -94.459922916708365, 34.547874774823697 ], [ -94.457467930676856, 34.6350058345474 ], [ -94.457467930676856, 34.642871832994686 ], [ -94.454467392193891, 34.728994431379 ], [ -94.4501029725823, 34.855455483339107 ], [ -94.4501029725823, 34.858682559625173 ], [ -94.4501029725823, 34.861304559107595 ], [ -94.449557420130859, 34.875221325591241 ], [ -94.449011867679417, 34.890549937950048 ], [ -94.449011867679417, 34.894180398771866 ], [ -94.449284643905131, 34.895793936914899 ], [ -94.447920762776519, 34.933913775544021 ], [ -94.441101357133419, 35.119672354260544 ], [ -94.440828580907692, 35.128748506315098 ], [ -94.43946469977908, 35.16908695989089 ], [ -94.43946469977908, 35.171708959373319 ], [ -94.439191923553352, 35.193491724304245 ], [ -94.439191923553352, 35.197323877393941 ], [ -94.438373594876182, 35.208618644395166 ], [ -94.438373594876182, 35.211038951609716 ], [ -94.437828042424727, 35.239275869112767 ], [ -94.437555266199013, 35.242301253130954 ], [ -94.435918608844659, 35.271344939705521 ], [ -94.435645832618945, 35.274168631455829 ], [ -94.435373056393217, 35.275983861866735 ], [ -94.435373056393217, 35.287480321135838 ], [ -94.435100280167489, 35.291514166493421 ], [ -94.434009175264592, 35.306439394316463 ], [ -94.431826965458811, 35.362913229322572 ], [ -94.43264529413598, 35.380863841163801 ], [ -94.433736399038878, 35.38651122466441 ], [ -94.434009175264592, 35.387317993735927 ], [ -94.431281413007355, 35.39437722311169 ], [ -94.431826965458811, 35.397604299397756 ], [ -94.463196231417058, 35.582757801310635 ], [ -94.464014560094228, 35.587195031203976 ], [ -94.464560112545684, 35.588808569347009 ], [ -94.465378441222839, 35.594052568311859 ], [ -94.472743399317395, 35.638626559513114 ], [ -94.487473315506492, 35.726161003772575 ], [ -94.488291644183647, 35.729186387790762 ], [ -94.492928840020966, 35.759238535704725 ], [ -94.493474392472407, 35.761860535187154 ], [ -94.494565497375305, 35.768314687759279 ], [ -94.498929916986896, 35.79352622124415 ], [ -94.499748245664065, 35.796954989798095 ], [ -94.500566574341235, 35.802602373298704 ], [ -94.500839350566963, 35.803812526905979 ], [ -94.501112126792677, 35.806434526388401 ], [ -94.503021560372744, 35.817124216585988 ], [ -94.50438544150137, 35.826402060908421 ], [ -94.505749322629981, 35.833662982552063 ], [ -94.507658756210049, 35.845966210892684 ], [ -94.522661448624874, 35.934307424223661 ], [ -94.522661448624874, 35.934710808759419 ], [ -94.522661448624874, 35.934912501027299 ], [ -94.522934224850587, 35.936122654634573 ], [ -94.524298105979213, 35.943988653081853 ], [ -94.524570882204941, 35.945803883492765 ], [ -94.528116973139348, 35.965569725744899 ], [ -94.528389749365076, 35.965973110280657 ], [ -94.531935840299482, 35.98775587521159 ], [ -94.533572497653822, 35.996832027266144 ], [ -94.534936378782447, 36.002681103034632 ], [ -94.535754707459617, 36.007723409731604 ], [ -94.547756861391463, 36.07730724214985 ], [ -94.547756861391463, 36.078315703489238 ], [ -94.552121281003053, 36.102317083366842 ], [ -94.561122896451934, 36.152135073532939 ], [ -94.562759553806288, 36.161816302391131 ], [ -94.562759553806288, 36.161816302391131 ], [ -94.565760092289253, 36.178355068357206 ], [ -94.566578420966422, 36.183800759589943 ], [ -94.571215616803727, 36.210827523485719 ], [ -94.571761169255183, 36.213651215236027 ], [ -94.574488931512406, 36.229988288934223 ], [ -94.574761707738134, 36.232811980684524 ], [ -94.575034483963861, 36.23361874975604 ], [ -94.576125588866759, 36.240072902328166 ], [ -94.578035022446826, 36.249552438918478 ], [ -94.577762246221099, 36.250157515722115 ], [ -94.586218309218538, 36.29997550588822 ], [ -94.593310491087365, 36.345759650696742 ], [ -94.599857120504737, 36.387509950147688 ], [ -94.602039330310532, 36.402031793434972 ], [ -94.602584882761974, 36.405258869721038 ], [ -94.605312645019211, 36.421999327954993 ], [ -94.611586498210869, 36.461531012459268 ], [ -94.613768708016664, 36.476254548014431 ], [ -94.615405365371004, 36.484927315533227 ], [ -94.617860351402513, 36.499449158820511 ], [ -94.559213462871867, 36.499449158820511 ], [ -94.519388133916181, 36.499247466552632 ], [ -94.111587676458925, 36.498642389748994 ], [ -94.110769347781755, 36.498642389748994 ], [ -94.10013107497852, 36.498642389748994 ], [ -94.098494417624181, 36.498642389748994 ], [ -94.077217872017712, 36.498642389748994 ], [ -93.964015738342283, 36.498642389748994 ], [ -93.959105766279265, 36.498642389748994 ], [ -93.921735423355074, 36.498642389748994 ], [ -93.906187178488821, 36.498642389748994 ], [ -93.866634625758849, 36.498844082016873 ], [ -93.728064303091102, 36.499045774284752 ], [ -93.727518750639661, 36.499045774284752 ], [ -93.718789911416494, 36.499247466552632 ], [ -93.710061072193326, 36.499247466552632 ], [ -93.700241128067262, 36.499045774284752 ], [ -93.584311232134596, 36.498844082016873 ], [ -93.584311232134596, 36.498844082016873 ], [ -93.514480518349274, 36.498844082016873 ], [ -93.50738833648046, 36.498844082016873 ], [ -93.426919349891904, 36.498642389748994 ], [ -93.396095636385098, 36.498642389748994 ], [ -93.394731755256473, 36.498440697481115 ], [ -93.315353873570814, 36.498440697481115 ], [ -93.315353873570814, 36.498440697481115 ], [ -93.295986761544413, 36.498440697481115 ], [ -93.08894960621997, 36.498239005213236 ], [ -93.087585725091344, 36.498239005213236 ], [ -93.069582494193568, 36.498239005213236 ], [ -93.068491389290671, 36.498239005213236 ], [ -93.013663367920174, 36.498037312945357 ], [ -92.894460157278814, 36.497835620677478 ], [ -92.893914604827359, 36.497835620677478 ], [ -92.854089275871672, 36.498037312945357 ], [ -92.838813807231134, 36.498037312945357 ], [ -92.838541031005406, 36.498037312945357 ], [ -92.772256408154504, 36.497835620677478 ], [ -92.772256408154504, 36.497835620677478 ], [ -92.529212791034496, 36.497835620677478 ], [ -92.318356768549904, 36.497633928409599 ], [ -92.309355153101023, 36.497835620677478 ], [ -92.216338460129151, 36.498440697481115 ], [ -92.21415625032337, 36.498440697481115 ], [ -92.211428488066133, 36.498440697481115 ], [ -92.199426334134273, 36.498440697481115 ], [ -92.150326613503978, 36.498642389748994 ], [ -92.137778907120662, 36.498642389748994 ], [ -92.120321228674342, 36.498844082016873 ], [ -92.120321228674342, 36.498844082016873 ], [ -92.098226354390704, 36.498844082016873 ], [ -92.075040375204168, 36.498844082016873 ], [ -92.05730992053212, 36.498642389748994 ], [ -92.055673263177766, 36.498642389748994 ], [ -92.028941193056824, 36.498642389748994 ], [ -92.019394025156487, 36.498440697481115 ], [ -91.988843087875409, 36.498440697481115 ], [ -91.985842549392459, 36.498440697481115 ], [ -91.866093786299643, 36.498844082016873 ], [ -91.864457128945304, 36.498844082016873 ], [ -91.8060830166404, 36.499045774284752 ], [ -91.801991373254538, 36.499045774284752 ], [ -91.799536387223014, 36.499045774284752 ], [ -91.784806471033932, 36.499045774284752 ], [ -91.765984911458972, 36.499045774284752 ], [ -91.726705134954727, 36.499247466552632 ], [ -91.687698134676211, 36.499449158820511 ], [ -91.686061477321857, 36.499449158820511 ], [ -91.672422666035672, 36.499449158820511 ], [ -91.642690057431764, 36.499247466552632 ], [ -91.631506232177088, 36.499247466552632 ], [ -91.601228071121739, 36.499247466552632 ], [ -91.596318099058692, 36.499247466552632 ], [ -91.549127812008464, 36.499247466552632 ], [ -91.5393078678824, 36.499045774284752 ], [ -91.536852881850876, 36.499247466552632 ], [ -91.529760699982063, 36.499045774284752 ], [ -91.45011004207069, 36.497633928409599 ], [ -91.446291174910556, 36.497432236141719 ], [ -91.436471230784491, 36.497432236141719 ], [ -91.433197916075798, 36.49723054387384 ], [ -91.407284174632025, 36.497028851605961 ], [ -91.407011398406297, 36.497028851605961 ], [ -91.40510196482623, 36.49723054387384 ], [ -91.404829188600502, 36.497028851605961 ], [ -91.227524641879967, 36.497633928409599 ], [ -91.218523026431086, 36.497633928409599 ], [ -91.217431921528174, 36.497432236141719 ], [ -91.126597438362126, 36.497633928409599 ], [ -91.096319277306762, 36.497835620677478 ], [ -91.09577372485532, 36.497835620677478 ], [ -91.018032500524001, 36.498037312945357 ], [ -91.00848533262365, 36.498239005213236 ], [ -90.962931702927762, 36.498440697481115 ], [ -90.960749493121966, 36.498440697481115 ], [ -90.879189401630526, 36.498440697481115 ], [ -90.876734415599003, 36.498440697481115 ], [ -90.876461639373275, 36.498239005213236 ], [ -90.873733877116052, 36.498037312945357 ], [ -90.850547897929516, 36.498642389748994 ], [ -90.784263275078601, 36.498440697481115 ], [ -90.782353841498534, 36.498440697481115 ], [ -90.765714491729369, 36.498440697481115 ], [ -90.7111592465846, 36.498239005213236 ], [ -90.692883239461082, 36.498440697481115 ], [ -90.653330686731124, 36.498440697481115 ], [ -90.648420714668092, 36.498440697481115 ], [ -90.612687029098254, 36.498642389748994 ], [ -90.605322071003712, 36.498440697481115 ], [ -90.594411021974764, 36.498440697481115 ], [ -90.585409406525869, 36.498440697481115 ], [ -90.576135014851246, 36.498440697481115 ], [ -90.576135014851246, 36.498440697481115 ], [ -90.500030447874281, 36.498440697481115 ], [ -90.495120475811248, 36.498440697481115 ], [ -90.494574923359806, 36.498440697481115 ], [ -90.339910803374352, 36.498239005213236 ], [ -90.228890879504718, 36.497835620677478 ], [ -90.220707592732992, 36.497835620677478 ], [ -90.220707592732992, 36.497835620677478 ], [ -90.217434278024314, 36.497835620677478 ], [ -90.19397552261205, 36.497835620677478 ], [ -90.15251353630201, 36.498037312945357 ], [ -90.154422969882077, 36.496827159338082 ], [ -90.156332403462144, 36.487751007283535 ], [ -90.133964752952778, 36.43793301711743 ], [ -90.072862878390623, 36.392955641380418 ], [ -90.064406815393184, 36.382064258914959 ], [ -90.063861262941742, 36.3030008899064 ], [ -90.07640896932503, 36.280613048171837 ], [ -90.083773927419585, 36.272343665188799 ], [ -90.114870417152105, 36.265687820348795 ], [ -90.198612718449354, 36.201347986895406 ], [ -90.220434816507264, 36.184809220929331 ], [ -90.319179810219325, 36.090013855026221 ], [ -90.364460663689499, 36.013572485500092 ], [ -90.368825083301076, 35.995823565926749 ], [ -90.342638565631574, 35.995823565926749 ], [ -90.339365250922896, 35.996025258194628 ], [ -90.292447740098382, 35.996428642730386 ], [ -90.288901649163961, 35.996428642730386 ], [ -90.288901649163961, 35.996428642730386 ], [ -90.158787389493654, 35.997437104069782 ], [ -90.127418123535421, 35.997638796337654 ], [ -90.126327018632509, 35.997638796337654 ], [ -89.972481227324238, 35.999050642212808 ], [ -89.965389045455396, 35.998848949944929 ], [ -89.96102462584382, 35.999050642212808 ], [ -89.959933520940922, 35.999050642212808 ], [ -89.95938796848948, 35.999050642212808 ], [ -89.95938796848948, 35.999050642212808 ], [ -89.90128663241029, 35.999454026748566 ], [ -89.896376660347258, 35.999454026748566 ], [ -89.875645667192231, 35.999655719016445 ], [ -89.875100114740789, 35.999655719016445 ], [ -89.874554562289347, 35.999655719016445 ], [ -89.869099037774873, 35.999655719016445 ], [ -89.770354044062799, 36.000462488087962 ], [ -89.770081267837085, 36.000462488087962 ], [ -89.737620896975926, 36.000664180355841 ], [ -89.737620896975926, 36.000462488087962 ], [ -89.732983701138636, 36.000664180355841 ], [ -89.719890442303878, 35.97464587779946 ], [ -89.686884518991292, 35.947619113903677 ], [ -89.687975623894175, 35.905465429916973 ], [ -89.688248400119903, 35.896994354666056 ], [ -89.714980470240846, 35.906272198988489 ], [ -89.733529253590078, 35.904658660845456 ], [ -89.756169680325172, 35.896792662398177 ], [ -89.765716848225509, 35.891346971165447 ], [ -89.771717925191425, 35.879648819628464 ], [ -89.773627358771492, 35.871782821181185 ], [ -89.772536253868594, 35.86512697634118 ], [ -89.769535715385643, 35.861496515519363 ], [ -89.749350274682058, 35.853025440268446 ], [ -89.729437610204215, 35.84757974903571 ], [ -89.709252169500644, 35.838906981516914 ], [ -89.702978316309, 35.834066367087821 ], [ -89.701068882728933, 35.828217291319334 ], [ -89.70379664498617, 35.820351292872054 ], [ -89.821090422047462, 35.756616536222303 ], [ -89.865552946840452, 35.746531922828353 ], [ -89.889011702252702, 35.750565768185936 ], [ -89.905651052021867, 35.759036843436846 ], [ -89.910015471633443, 35.759440227972604 ], [ -89.950386353040585, 35.738464232113195 ], [ -89.956387430006515, 35.733421925416224 ], [ -89.958842416038038, 35.723740696558032 ], [ -89.955841877555059, 35.690663164625882 ], [ -89.937293094205842, 35.66565332340889 ], [ -89.922835954242473, 35.655367017747061 ], [ -89.906196604473308, 35.651131480121606 ], [ -89.890375583381328, 35.652341633728881 ], [ -89.884920058866854, 35.655165325479182 ], [ -89.909742695407729, 35.537982117841509 ], [ -89.933474227045707, 35.533343195680288 ], [ -89.957478534909413, 35.528704273519075 ], [ -90.017216528342942, 35.555932729682738 ], [ -90.028673129823346, 35.5553276528791 ], [ -90.033037549434937, 35.553512422468188 ], [ -90.039856955078037, 35.548066731235458 ], [ -90.034946983015004, 35.480701513763883 ], [ -90.034128654337835, 35.468801669959021 ], [ -90.04776746562402, 35.459322133368715 ], [ -90.05895129087871, 35.457910287493561 ], [ -90.067680130101877, 35.466179670476599 ], [ -90.072044549713453, 35.470818592637812 ], [ -90.074499535744962, 35.472432130780845 ], [ -90.107778235283291, 35.476869360674186 ], [ -90.15251353630201, 35.436732599366266 ], [ -90.168880109845446, 35.421807371543224 ], [ -90.179245606422953, 35.385099378789256 ], [ -90.178427277745783, 35.382073994771076 ], [ -90.166152347588209, 35.374813073127427 ], [ -90.143511920853115, 35.374813073127427 ], [ -90.135601410307132, 35.37662830353834 ], [ -90.093593871545636, 35.393368761772294 ], [ -90.089502228159787, 35.379855379824406 ], [ -90.08677446590255, 35.369972458698335 ], [ -90.114870417152105, 35.303817394834034 ], [ -90.153331864979179, 35.30260724122676 ], [ -90.158787389493654, 35.300590318547975 ], [ -90.1636973615567, 35.296153088654634 ], [ -90.168880109845446, 35.282034629903109 ], [ -90.166697900039651, 35.274572015991588 ], [ -90.158787389493654, 35.262672172186726 ], [ -90.151967983850568, 35.256016327346721 ], [ -90.140511382370164, 35.252385866524904 ], [ -90.116507074506458, 35.255814635078842 ], [ -90.10505047302604, 35.254201096935809 ], [ -90.097958291157227, 35.249965559310354 ], [ -90.077500074227942, 35.225560794897 ], [ -90.074226759519249, 35.218299873253358 ], [ -90.073408430842079, 35.211038951609716 ], [ -90.064679591618912, 35.14064835011996 ], [ -90.065497920296082, 35.137622966101773 ], [ -90.083501151193872, 35.121689276939335 ], [ -90.090593333062685, 35.11826050838539 ], [ -90.100686053414478, 35.116646970242357 ], [ -90.109414892637631, 35.118865585189027 ], [ -90.142693592175959, 35.135000966619344 ], [ -90.160151270622279, 35.128748506315098 ], [ -90.174608410585648, 35.116646970242357 ], [ -90.19397552261205, 35.061584981111402 ], [ -90.295721054807075, 35.040003908448355 ], [ -90.309905418544702, 35.009750068266513 ], [ -90.309359866093274, 34.995631609514987 ], [ -90.253986292271307, 34.954889771403437 ], [ -90.24443912437097, 34.937544236365845 ], [ -90.250167425111172, 34.907290396183996 ], [ -90.293811621227007, 34.860497790036078 ], [ -90.307450432513207, 34.846177639016673 ], [ -90.407832083579592, 34.832865949336664 ], [ -90.41492426544842, 34.831857487997269 ], [ -90.423925880897315, 34.834681179747577 ], [ -90.436473587280602, 34.855052098803348 ], [ -90.461569000047206, 34.856665636946381 ], [ -90.473843930204794, 34.852631791588806 ], [ -90.47820834981637, 34.832462564800906 ], [ -90.467297300787408, 34.782442882366922 ], [ -90.479845007170709, 34.769131192686913 ], [ -90.494847699585534, 34.76751765454388 ], [ -90.501394329002892, 34.76993796175843 ], [ -90.519943112352124, 34.782442882366922 ], [ -90.537400790798458, 34.784258112777835 ], [ -90.549948497181759, 34.763282116918418 ], [ -90.554858469244778, 34.727380893235967 ], [ -90.533309147412609, 34.707413358715954 ], [ -90.509850392000345, 34.689866131410483 ], [ -90.509032063323161, 34.679176441212896 ], [ -90.521579769706477, 34.663242752050458 ], [ -90.539037448152811, 34.659007214425003 ], [ -90.549948497181759, 34.662435982978941 ], [ -90.564132860919401, 34.665663059265007 ], [ -90.576407791076974, 34.65739367628197 ], [ -90.575862238625533, 34.641661679387411 ], [ -90.570133937885331, 34.524881856285489 ], [ -90.565769518273754, 34.435330489347237 ], [ -90.575316686174091, 34.415161262559337 ], [ -90.614050910226879, 34.390756498145983 ], [ -90.65851343501987, 34.375629578055062 ], [ -90.76407783437503, 34.363326349714441 ], [ -90.856276198669718, 34.238882220433126 ], [ -90.868823905053006, 34.228192530235539 ], [ -90.894737646496793, 34.230007760646451 ], [ -90.911376996265943, 34.223150223538568 ], [ -90.913286429846011, 34.210443610662196 ], [ -90.895828751399677, 34.19188792201733 ], [ -90.880826058984866, 34.180391462748226 ], [ -90.88028050653341, 34.169298388014887 ], [ -90.893100989142454, 34.155583313799113 ], [ -90.918469178134771, 34.154373160191838 ], [ -90.934562975452479, 34.13017008804637 ], [ -90.933199094323868, 34.124522704545754 ], [ -90.931835213195242, 34.12008547465242 ], [ -90.928834674712277, 34.107580554043921 ], [ -90.911922548717399, 34.095479017971186 ], [ -90.888463793305135, 34.087411327256028 ], [ -90.879189401630526, 34.065426870057223 ], [ -90.887372688402252, 34.032551030392952 ], [ -90.964841136507829, 34.007944573711718 ], [ -91.01885082920117, 34.003103959282619 ], [ -91.089227095437934, 33.972648426832897 ], [ -91.088135990535051, 33.960143506224405 ], [ -91.036854060098946, 33.914561053683755 ], [ -91.067404997380024, 33.840539991372182 ], [ -91.139963473422597, 33.77720861925819 ], [ -91.144600669259887, 33.750181855362406 ], [ -91.136144606262462, 33.72860078269936 ], [ -91.126870214587839, 33.707826479107823 ], [ -91.127961319490737, 33.695724943035088 ], [ -91.132871291553769, 33.688060636855688 ], [ -91.139963473422597, 33.683623406962347 ], [ -91.148146760194308, 33.679387869336892 ], [ -91.176242711443876, 33.684228483765985 ], [ -91.186062655569927, 33.679387869336892 ], [ -91.188790417827164, 33.669504948210822 ], [ -91.193154837438755, 33.656798335334443 ], [ -91.186608208021369, 33.645906952868984 ], [ -91.157421151868917, 33.626141110616842 ], [ -91.13041630552226, 33.60597188382895 ], [ -91.133962396456667, 33.594475424559846 ], [ -91.152238403580157, 33.58277727302287 ], [ -91.224251327171288, 33.56744866066407 ], [ -91.228342970557136, 33.559986046752542 ], [ -91.232161837717271, 33.552725125108907 ], [ -91.215795264173835, 33.529328822034941 ], [ -91.125233557233486, 33.472854987028839 ], [ -91.1184141515904, 33.449055299419115 ], [ -91.131780186650872, 33.430096226238497 ], [ -91.184425998215588, 33.419608228308789 ], [ -91.141327354551208, 33.298391175313533 ], [ -91.110503641044403, 33.245951185665007 ], [ -91.085953780729255, 33.221546421251652 ], [ -91.087590438083595, 33.145105051725523 ], [ -91.125779109684942, 33.038208149749678 ], [ -91.157693928094645, 33.011181385853895 ], [ -91.166149991092084, 33.004122156478132 ], [ -91.264894984804144, 33.005130617817528 ], [ -91.284262096830531, 33.004928925549649 ], [ -91.312085271854386, 33.005332310085407 ], [ -91.322450768431878, 33.005332310085407 ], [ -91.324905754463401, 33.005332310085407 ], [ -91.326269635592013, 33.005332310085407 ], [ -91.329815726526434, 33.005332310085407 ], [ -91.333089041235127, 33.005534002353286 ], [ -91.375914908673778, 33.005735694621166 ], [ -91.425560181755529, 33.005937386889045 ], [ -91.435652902107307, 33.006139079156924 ], [ -91.460475538648183, 33.006340771424803 ], [ -91.559493308585971, 33.006744155960561 ], [ -91.572313791195, 33.00694584822844 ], [ -91.579678749289542, 33.006542463692682 ], [ -91.579678749289542, 33.006542463692682 ], [ -91.608865805442008, 33.006542463692682 ], [ -91.617594644665161, 33.006744155960561 ], [ -91.626596260114056, 33.006542463692682 ], [ -91.950108863822621, 33.007550925032078 ], [ -91.952018297402688, 33.007349232764199 ], [ -92.069039298238238, 33.008156001835715 ], [ -92.222885089546537, 33.009164463175104 ], [ -92.292715803331859, 33.010172924514499 ], [ -92.335814446996238, 33.010374616782379 ], [ -92.362819293342909, 33.010576309050258 ], [ -92.37018425143745, 33.010778001318137 ], [ -92.46974757382668, 33.011988154925412 ], [ -92.501389616010655, 33.012189847193291 ], [ -92.503844602042165, 33.012189847193291 ], [ -92.711154533592349, 33.014206769872082 ], [ -92.71579172942964, 33.014408462139961 ], [ -92.723429463749909, 33.014408462139961 ], [ -92.724793344878549, 33.014408462139961 ], [ -92.725066121104263, 33.014408462139961 ], [ -92.733249407875974, 33.014408462139961 ], [ -92.830903296685136, 33.015618615747229 ], [ -92.843996555519894, 33.016022000282987 ], [ -92.844269331745608, 33.016022000282987 ], [ -92.854089275871672, 33.016223692550867 ], [ -92.867455310932144, 33.016022000282987 ], [ -92.946560416392089, 33.016828769354504 ], [ -92.971110276707236, 33.017232153890262 ], [ -92.988840731379298, 33.017232153890262 ], [ -93.070673599096466, 33.0178372306939 ], [ -93.073128585127975, 33.0178372306939 ], [ -93.0813118718997, 33.0178372306939 ], [ -93.100951760151816, 33.0178372306939 ], [ -93.101497312603271, 33.0178372306939 ], [ -93.154415900393701, 33.0178372306939 ], [ -93.19751454405808, 33.018038922961779 ], [ -93.238703754142392, 33.018038922961779 ], [ -93.308261691702, 33.018240615229658 ], [ -93.308261691702, 33.018240615229658 ], [ -93.340449286337417, 33.018240615229658 ], [ -93.377001300584425, 33.018240615229658 ], [ -93.467017455073318, 33.018643999765416 ], [ -93.48938510558267, 33.018442307497537 ], [ -93.490476210485568, 33.018442307497537 ], [ -93.491021762937024, 33.018442307497537 ], [ -93.521027147766645, 33.018643999765416 ], [ -93.521027147766645, 33.018643999765416 ], [ -93.52484601492678, 33.018643999765416 ], [ -93.531392644344152, 33.018643999765416 ], [ -93.804987198745238, 33.019249076569054 ], [ -93.814534366645574, 33.019450768836933 ], [ -94.024572060452996, 33.019249076569054 ], [ -94.028118151387417, 33.019047384301174 ], [ -94.035755885707687, 33.019047384301174 ], [ -94.041484186447889, 33.019249076569054 ], [ -94.0428480675765, 33.019249076569054 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "2", "geo_id": "0400000US06", "fips_state": "06", "name": "California", "iso_3166_2": "CA", "census": 37253956, "pop_estimataes_base": 37254503, "pop_2010": 37336011, "pop_2011": 37701901, "pop_2012": 38062780, "pop_2013": 38431393, "pop_2014": 38802500 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.248460072873101, 33.999271806192922 ], [ -120.247368967970203, 34.001893805675351 ], [ -120.238640128747036, 34.00754118917596 ], [ -120.229911289523884, 34.010163188658382 ], [ -120.221182450300716, 34.010364880926261 ], [ -120.208361967691687, 34.005725958765048 ], [ -120.195814261308385, 34.004314112889894 ], [ -120.167172757607375, 34.008146265979597 ], [ -120.151624512741108, 34.018029187105668 ], [ -120.14753286935526, 34.024886724213552 ], [ -120.140440687486432, 34.02589518555294 ], [ -120.135803491649128, 34.026096877820819 ], [ -120.115072498494115, 34.019844417516573 ], [ -120.090249861953225, 34.019844417516573 ], [ -120.073610512184075, 34.024483339677793 ], [ -120.062699463155113, 34.031139184517798 ], [ -120.061881134477943, 34.033962876268106 ], [ -120.057516714866367, 34.037391644822044 ], [ -120.055061728834843, 34.037795029357802 ], [ -120.043332351128726, 34.035778106679011 ], [ -120.043877903580167, 34.024886724213552 ], [ -120.047696770740302, 34.021256263391727 ], [ -120.050424532997539, 34.013390264944448 ], [ -120.049060651868928, 34.009961496390503 ], [ -120.046605665837404, 34.000078575264439 ], [ -120.041422917548658, 33.994431191763823 ], [ -120.025601896456664, 33.985556731977155 ], [ -120.011144756493294, 33.979909348476539 ], [ -120.003779798398753, 33.979505963940781 ], [ -119.984412686372352, 33.983943193834122 ], [ -119.978957161857878, 33.983136424762606 ], [ -119.980048266760775, 33.969623042814717 ], [ -119.976774952052082, 33.95671473767046 ], [ -119.97104665131188, 33.950462277366213 ], [ -119.970228322634711, 33.944411509329846 ], [ -119.973774413569117, 33.942394586651055 ], [ -120.001052036141516, 33.941587817579538 ], [ -120.017691385910666, 33.936343818614688 ], [ -120.046878442063132, 33.919603360380734 ], [ -120.048242323191744, 33.917586437701942 ], [ -120.048515099417472, 33.91577120729103 ], [ -120.049606204320369, 33.914561053683755 ], [ -120.077702155569938, 33.908913670183146 ], [ -120.098705924950679, 33.907905208843751 ], [ -120.105525330593778, 33.904274748021933 ], [ -120.109071421528185, 33.899030749057076 ], [ -120.1218919041372, 33.895803672771017 ], [ -120.169082191187442, 33.918998283577096 ], [ -120.179174911539235, 33.92807443563165 ], [ -120.189813184342455, 33.947638585615906 ], [ -120.192268170373978, 33.950260585098334 ], [ -120.198542023565622, 33.952277507777126 ], [ -120.200178680919976, 33.956916429938339 ], [ -120.209453072594584, 33.972446734565018 ], [ -120.224455765009395, 33.988985500531093 ], [ -120.248460072873101, 33.999271806192922 ] ] ], [ [ [ -119.789923237431196, 34.057359179342058 ], [ -119.770828901630523, 34.055140564395394 ], [ -119.766191705793219, 34.055342256663273 ], [ -119.76373671976171, 34.057157487074178 ], [ -119.755553432989984, 34.056754102538427 ], [ -119.739459635672276, 34.049291488626906 ], [ -119.726366376837532, 34.047879642751752 ], [ -119.712454789325605, 34.043240720590532 ], [ -119.704544278779622, 34.037593337089923 ], [ -119.686541047881832, 34.019844417516573 ], [ -119.637714103477251, 34.013188572676569 ], [ -119.619438096353747, 34.016415648962635 ], [ -119.612345914484933, 34.021256263391727 ], [ -119.604162627713208, 34.031542569053556 ], [ -119.608799823550527, 34.035173029875374 ], [ -119.609345376001968, 34.037391644822044 ], [ -119.59325157868426, 34.049694873162665 ], [ -119.573338914206417, 34.050098257698423 ], [ -119.566792284789045, 34.053527026252361 ], [ -119.529694718090582, 34.041223797911741 ], [ -119.520693102641701, 34.034164568535985 ], [ -119.521784207544584, 34.032147645857194 ], [ -119.532422480347819, 34.024886724213552 ], [ -119.538969109765205, 34.024079955142035 ], [ -119.542515200699611, 34.021054571123848 ], [ -119.548243501439813, 34.009759804122623 ], [ -119.547152396536916, 34.005524266497169 ], [ -119.554517354631457, 33.997859960317768 ], [ -119.560518431597387, 33.995439653103219 ], [ -119.575521124012198, 33.996044729906856 ], [ -119.590251040201295, 33.98979226960261 ], [ -119.596797669618667, 33.988582115995335 ], [ -119.619165320128033, 33.987170270120181 ], [ -119.621074753708101, 33.988985500531093 ], [ -119.647806823829043, 33.987775346923819 ], [ -119.662809516243854, 33.985960116512913 ], [ -119.690087138816253, 33.972245042297139 ], [ -119.706999264811131, 33.969219658278959 ], [ -119.712454789325605, 33.965387505189256 ], [ -119.7146369991314, 33.961353659831673 ], [ -119.721183628548772, 33.959538429420768 ], [ -119.743005726606683, 33.963975659314102 ], [ -119.750370684701238, 33.963773967046222 ], [ -119.758008419021508, 33.959135044885009 ], [ -119.795924314397126, 33.962967197974706 ], [ -119.84284182522164, 33.970429811886234 ], [ -119.873392762502718, 33.980312733012298 ], [ -119.876938853437125, 33.985758424245034 ], [ -119.882939930403055, 34.000885344335956 ], [ -119.884849363983122, 34.008751342783235 ], [ -119.882667154177327, 34.011575034533536 ], [ -119.876938853437125, 34.023474878338398 ], [ -119.876393300985683, 34.032147645857194 ], [ -119.892759874529119, 34.045459335537203 ], [ -119.916218629941369, 34.058367640681453 ], [ -119.923310811810197, 34.069460715414799 ], [ -119.919219168424334, 34.077326713862078 ], [ -119.91294531523269, 34.077528406129957 ], [ -119.89112321717478, 34.072889483968744 ], [ -119.857298965185009, 34.071275945825711 ], [ -119.825929699226762, 34.059779486556607 ], [ -119.818837517357935, 34.052921949448724 ], [ -119.807926468328986, 34.052115180377207 ], [ -119.789923237431196, 34.057359179342058 ] ] ], [ [ [ -120.462589410066371, 34.042635643786895 ], [ -120.440221759557019, 34.036988260286286 ], [ -120.418672437724823, 34.052115180377207 ], [ -120.415399123016144, 34.054938872127515 ], [ -120.411307479630281, 34.052921949448724 ], [ -120.403669745310012, 34.050501642234181 ], [ -120.39630478721547, 34.050098257698423 ], [ -120.390849262700982, 34.051913488109328 ], [ -120.374209912931832, 34.062603178306915 ], [ -120.368754388417358, 34.067847177271766 ], [ -120.36848161219163, 34.071275945825711 ], [ -120.370118269545969, 34.074906406647528 ], [ -120.368208835965902, 34.076519944790562 ], [ -120.362207758999972, 34.073091176236623 ], [ -120.355115577131158, 34.05917440975297 ], [ -120.360298325419905, 34.055745641199032 ], [ -120.358661668065565, 34.050299949966302 ], [ -120.346932290359433, 34.046669489144477 ], [ -120.331111269267453, 34.049089796359027 ], [ -120.319109115335593, 34.042030566983257 ], [ -120.313108038369677, 34.036584875750528 ], [ -120.302196989340715, 34.023474878338398 ], [ -120.304651975372224, 34.021256263391727 ], [ -120.316926905529812, 34.018835956177185 ], [ -120.347750619036603, 34.020046109784452 ], [ -120.355388353356872, 34.017827494837789 ], [ -120.357843339388396, 34.015003803087481 ], [ -120.375028241609002, 34.018835956177185 ], [ -120.409398046050214, 34.032147645857194 ], [ -120.415126346790416, 34.032147645857194 ], [ -120.418945213950551, 34.028920569571127 ], [ -120.42740127694799, 34.025491801017182 ], [ -120.454133347068932, 34.028113800499611 ], [ -120.459588871583421, 34.031542569053556 ], [ -120.465317172323623, 34.03840010616144 ], [ -120.462589410066371, 34.042635643786895 ] ] ], [ [ [ -119.543879081828223, 33.280238871204432 ], [ -119.532968032799275, 33.284676101097766 ], [ -119.528058060736242, 33.284877793365645 ], [ -119.505144857775434, 33.272776257292904 ], [ -119.482777207266068, 33.263901797506236 ], [ -119.465592305045462, 33.259262875345016 ], [ -119.458500123176648, 33.254623953183803 ], [ -119.42958584324991, 33.228202266091657 ], [ -119.444315759438993, 33.219126114037103 ], [ -119.464773976368292, 33.215495653215285 ], [ -119.475957801622968, 33.215495653215285 ], [ -119.500780438163844, 33.220537959912257 ], [ -119.511691487192806, 33.222958267126806 ], [ -119.517419787933008, 33.226790420216503 ], [ -119.54578851540829, 33.233446265056507 ], [ -119.564882851208978, 33.247363031540161 ], [ -119.565701179886148, 33.249985031022582 ], [ -119.565973956111861, 33.252607030505011 ], [ -119.57061115194918, 33.257649337201983 ], [ -119.579067214946619, 33.278625333061399 ], [ -119.562155088951727, 33.271162719149878 ], [ -119.555335683308627, 33.273381334096541 ], [ -119.547697948988358, 33.280238871204432 ], [ -119.543879081828223, 33.280238871204432 ] ] ], [ [ [ -119.423039213832539, 34.004314112889894 ], [ -119.427676409669843, 34.006532727836564 ], [ -119.437769130021621, 34.009961496390503 ], [ -119.441042444730314, 34.012381803605052 ], [ -119.441315220956042, 34.013995341748085 ], [ -119.433950262861487, 34.016012264426877 ], [ -119.421402556478185, 34.015003803087481 ], [ -119.411309836126406, 34.007944573711718 ], [ -119.396307143711596, 34.005927651032927 ], [ -119.390033290519938, 34.006129343300806 ], [ -119.366574535107688, 34.016819033498393 ], [ -119.357572919658793, 34.016012264426877 ], [ -119.376394479233738, 34.01056657319414 ], [ -119.391669947874277, 34.002498882478989 ], [ -119.414583150835085, 34.004919189693531 ], [ -119.423039213832539, 34.004314112889894 ] ] ], [ [ [ -118.524514326297961, 32.895410024091376 ], [ -118.535698151552637, 32.906301406556835 ], [ -118.551246396418904, 32.945228014257474 ], [ -118.560793564319241, 32.957934627133852 ], [ -118.573614046928256, 32.96922939413507 ], [ -118.586980081988727, 33.008357694103594 ], [ -118.595981697437622, 33.01541692347935 ], [ -118.606619970240857, 33.014610154407841 ], [ -118.605528865337959, 33.030947228106029 ], [ -118.594072263857555, 33.035989534803008 ], [ -118.57525070428261, 33.033972612124217 ], [ -118.568976851090952, 33.029131997695124 ], [ -118.564339655253647, 33.024896460069662 ], [ -118.564612431479375, 33.018643999765416 ], [ -118.559156906964887, 33.006340771424803 ], [ -118.540062571164214, 32.980927545672053 ], [ -118.529151522135265, 32.970842932278103 ], [ -118.496691151274121, 32.933933247256256 ], [ -118.485234549793716, 32.923445249326548 ], [ -118.478960696602059, 32.920419865308361 ], [ -118.460684689478555, 32.909528482842902 ], [ -118.446773101966642, 32.895410024091376 ], [ -118.369850206312492, 32.839339573621018 ], [ -118.353483632769056, 32.821994038583433 ], [ -118.356484171252021, 32.817355116422213 ], [ -118.360575814637883, 32.819977115904642 ], [ -118.379942926664285, 32.824616038065855 ], [ -118.387307884758826, 32.825422807137372 ], [ -118.394672842853367, 32.824010961262218 ], [ -118.401219472270739, 32.8203805004404 ], [ -118.425769332585901, 32.800614658188259 ], [ -118.429315423520308, 32.805455272617358 ], [ -118.428497094843138, 32.806867118492505 ], [ -118.444863668386574, 32.820582192708279 ], [ -118.475960158119094, 32.841759880835568 ], [ -118.487962312050954, 32.844583572585876 ], [ -118.496418375048393, 32.851642801961638 ], [ -118.506783871625899, 32.868584952463472 ], [ -118.508147752754525, 32.871408644213773 ], [ -118.507056647851627, 32.876249258642872 ], [ -118.524514326297961, 32.893191409144706 ], [ -118.524514326297961, 32.895410024091376 ] ] ], [ [ [ -118.500237242208527, 33.449660376222752 ], [ -118.499691689757071, 33.44784514581184 ], [ -118.48550732601943, 33.446231607668814 ], [ -118.477596815473447, 33.448450222615477 ], [ -118.445681997063744, 33.428886072631222 ], [ -118.423587122780106, 33.427272534488189 ], [ -118.382125136470066, 33.409926999450597 ], [ -118.370395758763948, 33.409321922646967 ], [ -118.368213548958153, 33.407103307700297 ], [ -118.365213010475188, 33.388345926787551 ], [ -118.324569352842332, 33.348814242283275 ], [ -118.316113289844878, 33.342965166514787 ], [ -118.310112212878963, 33.335704244871138 ], [ -118.303292807235863, 33.320173940244459 ], [ -118.30520224081593, 33.310291019118395 ], [ -118.316658842296334, 33.301214867063841 ], [ -118.325114905293773, 33.298996252117171 ], [ -118.343118136191549, 33.305248712421417 ], [ -118.360303038412155, 33.315333325815367 ], [ -118.374760178375524, 33.31997224797658 ], [ -118.402856129625093, 33.320980709315975 ], [ -118.439953696323542, 33.318560402101433 ], [ -118.456320269866978, 33.321787478387492 ], [ -118.465321885315859, 33.326023016012954 ], [ -118.481961235085024, 33.344175320122062 ], [ -118.488780640728123, 33.356680240730554 ], [ -118.482506787536465, 33.369991930410563 ], [ -118.478415144150617, 33.386329004108759 ], [ -118.484961773567989, 33.412145614397268 ], [ -118.488780640728123, 33.419809920576668 ], [ -118.504056109368662, 33.424247150470009 ], [ -118.515785487074794, 33.422431920059097 ], [ -118.516331039526236, 33.425053919541526 ], [ -118.523150445169335, 33.430701303042134 ], [ -118.537334808906976, 33.434533456131831 ], [ -118.558611354513445, 33.433323302524556 ], [ -118.563521326576478, 33.434331763863952 ], [ -118.570886284671019, 33.43937407056093 ], [ -118.575796256734051, 33.448248530347598 ], [ -118.594072263857555, 33.467207603528223 ], [ -118.601164445726369, 33.469829603010652 ], [ -118.604164984209334, 33.476485447850656 ], [ -118.603346655532164, 33.478098985993689 ], [ -118.598709459694859, 33.47789729372581 ], [ -118.58588897708583, 33.473863448368228 ], [ -118.544426990775804, 33.474065140636107 ], [ -118.530788179489605, 33.46801437259974 ], [ -118.500237242208527, 33.449660376222752 ] ] ], [ [ [ -122.418667724732572, 37.852804276288332 ], [ -122.434488745824567, 37.85240089175258 ], [ -122.443217585047734, 37.85542627577076 ], [ -122.446218123530699, 37.861073659271369 ], [ -122.438580389210429, 37.868334580915018 ], [ -122.43094265489016, 37.872166734004715 ], [ -122.421395486989823, 37.869948119058044 ], [ -122.421395486989823, 37.869948119058044 ], [ -122.418394948506858, 37.861678736075007 ], [ -122.418394948506858, 37.852804276288332 ], [ -122.418667724732572, 37.852804276288332 ] ] ], [ [ [ -123.01386544926217, 37.700324921771838 ], [ -123.01386544926217, 37.7045604593973 ], [ -123.012228791907816, 37.70677907434397 ], [ -123.004591057587547, 37.706173997540333 ], [ -123.00022663797597, 37.702946921254266 ], [ -122.997226099493005, 37.697904614557288 ], [ -123.000772190427412, 37.690240308377895 ], [ -123.005409386264716, 37.689433539306378 ], [ -123.011410463230646, 37.691853846520928 ], [ -123.014411001713611, 37.696291076414262 ], [ -123.01386544926217, 37.700324921771838 ] ] ], [ [ [ -122.378569619551158, 37.826584281464065 ], [ -122.377751290873988, 37.830618126821648 ], [ -122.369840780327991, 37.832231664964681 ], [ -122.363294150910619, 37.823962281981643 ], [ -122.358656955073315, 37.814281053123452 ], [ -122.362748598459177, 37.807625208283447 ], [ -122.372295766359514, 37.811255669105265 ], [ -122.372568542585242, 37.816499668070122 ], [ -122.378569619551158, 37.826584281464065 ] ] ], [ [ [ -124.211625856415878, 41.998387150272478 ], [ -124.100878708771972, 41.996975304397324 ], [ -124.100333156320517, 41.996773612129445 ], [ -124.087785449937215, 41.996975304397324 ], [ -124.086694345034331, 41.996773612129445 ], [ -123.821555853630684, 41.99556345852217 ], [ -123.624611418658006, 41.999798996147632 ], [ -123.517955914399963, 42.00040407295127 ], [ -123.501862117082254, 42.000605765219149 ], [ -123.498861578599289, 42.00040407295127 ], [ -123.498861578599289, 42.000605765219149 ], [ -123.347470773322513, 41.999193919343995 ], [ -123.230722548712677, 42.003832841505215 ], [ -123.230722548712677, 42.003832841505215 ], [ -123.154890757961425, 42.00806837913067 ], [ -123.045234715220417, 42.003026072433698 ], [ -123.00104496665314, 42.003026072433698 ], [ -122.634706495505924, 42.004841302844611 ], [ -122.501046144901196, 42.008471763666428 ], [ -122.378296843325444, 42.009480225005824 ], [ -122.289644569965162, 42.007664994594911 ], [ -122.289644569965162, 42.007664994594911 ], [ -122.161439743874922, 42.007664994594911 ], [ -122.160348638972025, 42.007664994594911 ], [ -122.15652977181189, 42.007463302327032 ], [ -122.155438666909006, 42.007463302327032 ], [ -122.001047323149265, 42.004034533773094 ], [ -121.708085656721778, 42.000807457487028 ], [ -121.705085118238813, 42.000807457487028 ], [ -121.689264097146832, 42.000605765219149 ], [ -121.675352509634905, 42.00040407295127 ], [ -121.580971935534436, 41.998588842540357 ], [ -121.520142837197994, 41.99798376573672 ], [ -121.447584361155435, 41.997176996665203 ], [ -121.439673850609438, 41.997176996665203 ], [ -121.435036654772134, 41.996975304397324 ], [ -121.376116990015774, 41.996975304397324 ], [ -121.360295968923779, 41.996773612129445 ], [ -121.340383304445936, 41.996168535325808 ], [ -121.335746108608632, 41.996571919861566 ], [ -121.334382227480006, 41.996571919861566 ], [ -121.154349918502234, 41.996370227593687 ], [ -121.035146707860875, 41.993344843575507 ], [ -120.879391482972522, 41.993748228111265 ], [ -120.693903649480262, 41.993748228111265 ], [ -120.692266992125909, 41.993748228111265 ], [ -120.325928520978692, 41.993143151307628 ], [ -120.286375968248734, 41.993143151307628 ], [ -119.999142602561449, 41.994554997182775 ], [ -119.999960931238618, 41.18395377257724 ], [ -119.999415378787162, 40.873145987775757 ], [ -119.999142602561449, 40.867498604275156 ], [ -119.999142602561449, 40.865885066132122 ], [ -119.995869287852756, 40.499813599931805 ], [ -119.996142064078484, 40.321921019662568 ], [ -119.996142064078484, 40.321315942858931 ], [ -119.996142064078484, 40.26363195424554 ], [ -119.996142064078484, 40.262421800638265 ], [ -119.997233168981381, 40.126279519819974 ], [ -119.997233168981381, 40.091588449744791 ], [ -119.997233168981381, 40.077268298725386 ], [ -119.997233168981381, 40.071822607492649 ], [ -120.00050648369006, 39.780780664943315 ], [ -120.00050648369006, 39.779973895871798 ], [ -120.00132481236723, 39.722491599526293 ], [ -120.00132481236723, 39.722491599526293 ], [ -120.003234245947297, 39.445164731192719 ], [ -120.003234245947297, 39.44496303892484 ], [ -120.005416455753092, 39.316485064285942 ], [ -120.005416455753092, 39.316283372018063 ], [ -120.005416455753092, 39.31386306480352 ], [ -120.005416455753092, 39.313257987999883 ], [ -120.00568923197882, 39.228748927758602 ], [ -120.00568923197882, 39.225118466936777 ], [ -120.004598127075923, 39.165619247912488 ], [ -120.003507022173025, 39.112775873728197 ], [ -120.002415917270127, 39.067395113455433 ], [ -120.001052036141516, 38.999626511448099 ], [ -119.904216476009523, 38.933269755315919 ], [ -119.587796054169786, 38.714635336935132 ], [ -119.586977725492602, 38.714433644667253 ], [ -119.585341068138263, 38.713223491059978 ], [ -119.494233808746472, 38.649892118945985 ], [ -119.493961032520758, 38.649690426678106 ], [ -119.450589612630651, 38.620041663299901 ], [ -119.450589612630651, 38.620041663299901 ], [ -119.328385863506341, 38.534725833987096 ], [ -119.156809617525994, 38.414718934599115 ], [ -119.125985904019188, 38.393137861936069 ], [ -118.746554174037229, 38.124887145657055 ], [ -118.428497094843138, 37.895563037078674 ], [ -118.039790973186555, 37.615210784726919 ], [ -118.039790973186555, 37.615210784726919 ], [ -117.832753817862098, 37.464950045157096 ], [ -117.500785151156094, 37.220297324219914 ], [ -117.166088722192853, 36.970803988853639 ], [ -117.000786329404164, 36.847771705447471 ], [ -116.488239801268918, 36.459110705244719 ], [ -116.097351469806554, 36.158387533837185 ], [ -116.09353260264642, 36.155765534354764 ], [ -115.912954741217192, 36.015387715911004 ], [ -115.893042076739334, 36.000059103552204 ], [ -115.84612456591482, 35.963552803066115 ], [ -115.68927823612357, 35.841932365535101 ], [ -115.648089026039258, 35.809661602674467 ], [ -115.64781624981353, 35.809258218138709 ], [ -115.647270697362089, 35.80905652587083 ], [ -115.406136513822148, 35.618659024993093 ], [ -115.404499856467808, 35.617650563653697 ], [ -115.393861583664574, 35.60938118067066 ], [ -115.391406597633051, 35.607364257991868 ], [ -115.388951611601541, 35.605145643045205 ], [ -115.303845429175681, 35.538183810109388 ], [ -115.271385058314536, 35.512568892088758 ], [ -115.225285876167192, 35.475860899334791 ], [ -115.16063791067063, 35.424227678757774 ], [ -115.160092358219174, 35.424227678757774 ], [ -115.146726323158703, 35.413739680828073 ], [ -115.145907994481533, 35.413134604024435 ], [ -114.925504804096605, 35.237057254166103 ], [ -114.925504804096605, 35.237057254166103 ], [ -114.804937712326634, 35.140244965584202 ], [ -114.804119383649464, 35.139639888780565 ], [ -114.633088690120573, 35.002085762087113 ], [ -114.629269822960438, 34.991799456425284 ], [ -114.62899704673471, 34.986152072924675 ], [ -114.630906480314778, 34.907290396183996 ], [ -114.63663478105498, 34.889138092074894 ], [ -114.635270899926354, 34.875019633323362 ], [ -114.633088690120573, 34.86997732662639 ], [ -114.552619703532017, 34.766912577740243 ], [ -114.465604087526089, 34.692286438625032 ], [ -114.452510828691345, 34.653561523192266 ], [ -114.339581471241644, 34.451465870777554 ], [ -114.264295232941834, 34.401244496075691 ], [ -114.199374491219544, 34.361309427035657 ], [ -114.177006840710177, 34.349207890962916 ], [ -114.138272616657389, 34.303222053886515 ], [ -114.131453211014289, 34.260463293096173 ], [ -114.133362644594357, 34.258446370417388 ], [ -114.164459134326876, 34.251588833309498 ], [ -114.225833785114759, 34.201770843143393 ], [ -114.244109792238262, 34.179584693676709 ], [ -114.312576624894973, 34.144490239065775 ], [ -114.321578240343854, 34.138036086493642 ], [ -114.3665863175883, 34.118673628777266 ], [ -114.390590625452006, 34.11000086125847 ], [ -114.401228898255241, 34.111614399401503 ], [ -114.411594394832747, 34.11000086125847 ], [ -114.420596010281642, 34.103546708686345 ], [ -114.433416492890672, 34.088419788595424 ], [ -114.435325926470739, 34.079747021076628 ], [ -114.435053150245011, 34.037795029357802 ], [ -114.43832646495369, 34.022668109266881 ], [ -114.463694653946021, 33.993422730424427 ], [ -114.499973891967301, 33.961757044367431 ], [ -114.518522675316518, 33.917586437701942 ], [ -114.525614857185346, 33.838523068693391 ], [ -114.523432647379551, 33.806050613564878 ], [ -114.504338311578877, 33.756434315666652 ], [ -114.494245591227099, 33.707826479107823 ], [ -114.496427801032894, 33.696935096642363 ], [ -114.519068227767974, 33.688464021391439 ], [ -114.523978199831006, 33.685842021909018 ], [ -114.53025205302265, 33.679186177069013 ], [ -114.540617549600171, 33.591450040541666 ], [ -114.540344773374443, 33.5805586580762 ], [ -114.535980353762852, 33.569062198807103 ], [ -114.535707577537138, 33.568860506539224 ], [ -114.55889355672366, 33.531749129249491 ], [ -114.594627242293498, 33.495041136495523 ], [ -114.62299596976878, 33.456517913330643 ], [ -114.627087613154643, 33.433524994792435 ], [ -114.66527628475599, 33.415372690683334 ], [ -114.721195411029399, 33.396817002038468 ], [ -114.700191641648658, 33.340948243835996 ], [ -114.67209569039909, 33.258456106273499 ], [ -114.675369005107783, 33.185443505301315 ], [ -114.679460648493631, 33.159425202744927 ], [ -114.6870983828139, 33.142281359975222 ], [ -114.696918326939965, 33.131188285241876 ], [ -114.706192718614574, 33.105371674953368 ], [ -114.707829375968927, 33.091051523933963 ], [ -114.675096228882055, 33.047485994072105 ], [ -114.62381429844595, 33.028728613159366 ], [ -114.60635661999963, 33.025703229141179 ], [ -114.589717270230466, 33.026308305944816 ], [ -114.584807298167433, 33.028325228623608 ], [ -114.578260668750062, 33.035384457999371 ], [ -114.57171403933269, 33.036594611606645 ], [ -114.523705423605278, 33.030947228106029 ], [ -114.516886017962179, 33.026913382748454 ], [ -114.511430493447705, 33.023484614194516 ], [ -114.468604626009054, 32.971649701349619 ], [ -114.462876325268851, 32.905696329753198 ], [ -114.465604087526089, 32.879476334928938 ], [ -114.465604087526089, 32.879274642661059 ], [ -114.496155024807166, 32.822397423119185 ], [ -114.496700577258608, 32.822195730851313 ], [ -114.615631011674239, 32.729417287626987 ], [ -114.615631011674239, 32.728408826287591 ], [ -114.658184102887176, 32.733854517520328 ], [ -114.658729655338618, 32.733854517520328 ], [ -114.677005662462122, 32.73627482473487 ], [ -114.678642319816461, 32.736678209270629 ], [ -114.719558753675045, 32.718727597429407 ], [ -115.465056178578521, 32.66709437685239 ], [ -115.875857174518728, 32.636437152134789 ], [ -116.106080309029721, 32.618284848025681 ], [ -116.390040360008314, 32.596098698558997 ], [ -117.118898435142611, 32.534582556855909 ], [ -117.124899512108541, 32.534179172320151 ], [ -117.133355575105981, 32.575526087235346 ], [ -117.133082798880253, 32.597107159898393 ], [ -117.136628889814673, 32.618688232561439 ], [ -117.139356652071911, 32.626957615544477 ], [ -117.15981486900121, 32.660640224280264 ], [ -117.16881648445009, 32.671934991281482 ], [ -117.180273085930494, 32.681616220139674 ], [ -117.193093568539524, 32.687666988176048 ], [ -117.196639659473931, 32.688877141783315 ], [ -117.213006233017367, 32.687666988176048 ], [ -117.22391728204633, 32.683028066014828 ], [ -117.236192212203903, 32.671329914477852 ], [ -117.246012156329954, 32.66931299179906 ], [ -117.255286548004577, 32.699970216516661 ], [ -117.257468757810372, 32.725988519073049 ], [ -117.255286548004577, 32.745350976789425 ], [ -117.25255878574734, 32.753015282968825 ], [ -117.255013771778849, 32.786899583972492 ], [ -117.261014848744779, 32.803236657670688 ], [ -117.280927513222622, 32.822195730851313 ], [ -117.282291394351248, 32.839541265888897 ], [ -117.28120028944835, 32.842970034442843 ], [ -117.273835331353794, 32.851441109693759 ], [ -117.264833715904913, 32.84902080247921 ], [ -117.260742072519051, 32.852651263301034 ], [ -117.256104876681746, 32.859508800408918 ], [ -117.251740457070156, 32.87443402823196 ], [ -117.254468219327407, 32.900048946252589 ], [ -117.260469296293323, 32.931311247773827 ], [ -117.262651506099118, 32.939580630756865 ], [ -117.280654736996894, 33.01239153946117 ], [ -117.293475219605924, 33.034577688927854 ], [ -117.30984179314936, 33.074512757967888 ], [ -117.315297317663834, 33.093471831148513 ], [ -117.328390576498578, 33.121910440919443 ], [ -117.359487066231111, 33.164265817174027 ], [ -117.362487604714076, 33.168501354799488 ], [ -117.391401884640814, 33.202789040338907 ], [ -117.402040157444048, 33.213680422804373 ], [ -117.445684353559869, 33.268540719667449 ], [ -117.469688661423575, 33.296374252634749 ], [ -117.505695123219127, 33.334090706728112 ], [ -117.547702661980608, 33.365554700517229 ], [ -117.571706969844314, 33.379068082465118 ], [ -117.595984053933748, 33.386530696376639 ], [ -117.607986207865594, 33.40629653862878 ], [ -117.631717739503586, 33.430499610774255 ], [ -117.645629327015499, 33.440785916436084 ], [ -117.645629327015499, 33.440785916436084 ], [ -117.684636327294015, 33.461963604563373 ], [ -117.68927352313132, 33.46014837415246 ], [ -117.692001285388557, 33.456719605598522 ], [ -117.691455732937115, 33.454097606116093 ], [ -117.715460040800821, 33.460551758688219 ], [ -117.726371089829783, 33.48334298495854 ], [ -117.761286446722437, 33.51642051689069 ], [ -117.785017978360415, 33.541430358107682 ], [ -117.801384551903851, 33.546270972536774 ], [ -117.814205034512881, 33.552321740573149 ], [ -117.840391552182368, 33.573499428700437 ], [ -117.876670790203661, 33.592256809613176 ], [ -117.899856769390183, 33.599719423524704 ], [ -117.927134391962582, 33.605568499293192 ], [ -117.940500427023053, 33.620090342580475 ], [ -117.957139776792204, 33.629368186902909 ], [ -118.000511196682311, 33.654378028119901 ], [ -118.029698252834777, 33.676362485318705 ], [ -118.064886385953159, 33.711053555393889 ], [ -118.088890693816865, 33.729810936306635 ], [ -118.101165623974438, 33.734046473932089 ], [ -118.116713868840705, 33.743526010522402 ], [ -118.132807666158413, 33.753207239380586 ], [ -118.156811974022119, 33.760266468756356 ], [ -118.175633533597065, 33.763695237310294 ], [ -118.180816281885825, 33.763090160506657 ], [ -118.187635687528925, 33.749173394023011 ], [ -118.18381682036879, 33.736063396610881 ], [ -118.181361834337267, 33.717306015698135 ], [ -118.207548352006768, 33.716902631162377 ], [ -118.25855750621713, 33.703792633750247 ], [ -118.277106289566362, 33.707019710036306 ], [ -118.297018954044205, 33.708229863643581 ], [ -118.317204394747776, 33.712868785804801 ], [ -118.354574737671953, 33.732231243521177 ], [ -118.360575814637883, 33.73687016568239 ], [ -118.385125674953031, 33.74150908784361 ], [ -118.396582276433435, 33.735861704343002 ], [ -118.411312192622532, 33.741912472379369 ], [ -118.428497094843138, 33.77478831204364 ], [ -118.423314346554378, 33.782049233687282 ], [ -118.405038339430874, 33.80020153779639 ], [ -118.394400066627654, 33.804235383153966 ], [ -118.394400066627654, 33.804235383153966 ], [ -118.391399528144689, 33.815328457887311 ], [ -118.392217856821858, 33.840943375907941 ], [ -118.412676073751143, 33.883903828966154 ], [ -118.442408682355051, 33.940377663972264 ], [ -118.460684689478555, 33.96901796601108 ], [ -118.482779563762193, 33.995843037638977 ], [ -118.484143444890819, 33.997658268049889 ], [ -118.502692228240036, 34.015608879891118 ], [ -118.519604354234929, 34.027508723695973 ], [ -118.543063109647179, 34.038601798429319 ], [ -118.56924962731668, 34.041627182447499 ], [ -118.603619431757892, 34.039005182965077 ], [ -118.609620508723822, 34.036383183482648 ], [ -118.668267397254453, 34.038803490697198 ], [ -118.675359579123281, 34.037391644822044 ], [ -118.679451222509144, 34.033156107196589 ], [ -118.706183292630087, 34.029323954106886 ], [ -118.732369810299573, 34.032752722660831 ], [ -118.744917516682875, 34.032147645857194 ], [ -118.78337896450995, 34.021457955659606 ], [ -118.787197831670085, 34.019642725248694 ], [ -118.805201062567861, 34.001288728871714 ], [ -118.821567636111297, 34.013995341748085 ], [ -118.840389195686242, 34.027508723695973 ], [ -118.854573559423898, 34.034164568535985 ], [ -118.896035545733923, 34.039206875232956 ], [ -118.927950364143626, 34.045862720072961 ], [ -118.938043084495405, 34.043442412858411 ], [ -118.944862490138505, 34.045257643269323 ], [ -118.954682434264569, 34.048081335019631 ], [ -118.977868413451105, 34.059779486556607 ], [ -118.996962749251779, 34.066031946860861 ], [ -119.004600483572048, 34.06623363912874 ], [ -119.037606406884635, 34.083175789630566 ], [ -119.07006677774578, 34.090436711274208 ], [ -119.088615561095011, 34.098302709721494 ], [ -119.098162728995348, 34.099311171060883 ], [ -119.10989210670148, 34.094470556631791 ], [ -119.130077547405051, 34.100117940132399 ], [ -119.159537379783231, 34.119682090116662 ], [ -119.188724435935683, 34.139044547833038 ], [ -119.203181575899052, 34.144490239065775 ], [ -119.211364862670777, 34.144893623601533 ], [ -119.216547610959523, 34.146103777208808 ], [ -119.227731436214214, 34.161634081835487 ], [ -119.237005827888822, 34.175752540587013 ], [ -119.256918492366665, 34.213267302412497 ], [ -119.26592010781556, 34.234646682807664 ], [ -119.270011751201423, 34.253000679184652 ], [ -119.278740590424576, 34.266917445668298 ], [ -119.291015520582164, 34.274985136383464 ], [ -119.30219934583684, 34.272766521436793 ], [ -119.313110394865802, 34.275590213187094 ], [ -119.337387478955222, 34.290515441010143 ], [ -119.349116856661354, 34.30443220749379 ], [ -119.370393402267823, 34.319559127584711 ], [ -119.375848926782297, 34.321172665727744 ], [ -119.38812385693987, 34.31734051263804 ], [ -119.390578842971394, 34.318147281709557 ], [ -119.427676409669843, 34.353040044052619 ], [ -119.430949724378522, 34.35525865899929 ], [ -119.435859696441554, 34.35586373580292 ], [ -119.460955109208157, 34.374016039912028 ], [ -119.472684486914289, 34.375629578055062 ], [ -119.478140011428764, 34.377243116198095 ], [ -119.510600382289908, 34.386319268252649 ], [ -119.537059676185137, 34.395395420307196 ], [ -119.55942732669449, 34.413346032148425 ], [ -119.616983110322238, 34.421010338327825 ], [ -119.638805208380148, 34.415766339362975 ], [ -119.648625152506213, 34.417379877506008 ], [ -119.671811131692749, 34.416169723898733 ], [ -119.688177705236185, 34.412539263076908 ], [ -119.684631614301765, 34.408303725451454 ], [ -119.691723796170592, 34.403059726486603 ], [ -119.709181474616926, 34.395395420307196 ], [ -119.729366915320497, 34.395798804842954 ], [ -119.745460712638206, 34.402858034218724 ], [ -119.785831594045348, 34.415968031630854 ], [ -119.794833209494229, 34.417581569773887 ], [ -119.835749643352813, 34.415766339362975 ], [ -119.853752874250603, 34.407900340915695 ], [ -119.87393831495416, 34.408707109987212 ], [ -119.925220245390264, 34.433918643472083 ], [ -119.956316735122783, 34.435330489347237 ], [ -119.97186497998905, 34.444608333669663 ], [ -120.008144218010329, 34.460542022832101 ], [ -120.038695155291407, 34.463365714582409 ], [ -120.050697309223267, 34.461550484171497 ], [ -120.088613204598886, 34.460138638296343 ], [ -120.097342043822053, 34.461752176439376 ], [ -120.118345813202794, 34.470021559422413 ], [ -120.141259016163602, 34.473450327976359 ], [ -120.183539331150811, 34.470424943958172 ], [ -120.225546869912293, 34.470626636226051 ], [ -120.238094576295595, 34.468004636743629 ], [ -120.257734464547724, 34.467399559939992 ], [ -120.283102653540041, 34.46840802127938 ], [ -120.295104807471887, 34.470626636226051 ], [ -120.29919645085775, 34.469819867154534 ], [ -120.301924213114987, 34.466996175404233 ], [ -120.341476765844959, 34.458726792421189 ], [ -120.441858416911359, 34.451465870777554 ], [ -120.451405584811695, 34.447028640884213 ], [ -120.471318249289538, 34.447835409955729 ], [ -120.476500997578299, 34.475063866119385 ], [ -120.480319864738433, 34.481114634155759 ], [ -120.490412585090212, 34.489989093942434 ], [ -120.511416354470953, 34.522864933606698 ], [ -120.524782389531424, 34.531336008857622 ], [ -120.581247068256275, 34.556950926878244 ], [ -120.608251914602945, 34.556749234610365 ], [ -120.61207078176308, 34.553522158324306 ], [ -120.622709054566315, 34.553925542860064 ], [ -120.637711746981125, 34.566228771200677 ], [ -120.645622257527123, 34.58095230675584 ], [ -120.640166733012649, 34.604348609829799 ], [ -120.625164040597838, 34.634400757743769 ], [ -120.601978061411302, 34.692084746357153 ], [ -120.600341404056962, 34.704589666965646 ], [ -120.601705285185574, 34.709631973662617 ], [ -120.614798544020317, 34.730809661789905 ], [ -120.626255145500721, 34.738070583433554 ], [ -120.637438970755412, 34.755819503006904 ], [ -120.622981830792043, 34.793334264832389 ], [ -120.616162425148943, 34.816327183370589 ], [ -120.609888571957299, 34.842748870462735 ], [ -120.610161348183013, 34.858279175089415 ], [ -120.616435201374671, 34.866750250340331 ], [ -120.639348404335479, 34.880465324556098 ], [ -120.642076166592716, 34.894180398771866 ], [ -120.647258914881462, 34.901037935879749 ], [ -120.662807159747729, 34.901239628147628 ], [ -120.670717670293726, 34.904063319897936 ], [ -120.648895572235816, 34.974453921387692 ], [ -120.639893956786921, 35.002892531158629 ], [ -120.633620103595277, 35.033146371340472 ], [ -120.629801236435142, 35.061584981111402 ], [ -120.629528460209414, 35.078325439345356 ], [ -120.63089234133804, 35.101923434687194 ], [ -120.635802313401058, 35.123706199618127 ], [ -120.644258376398511, 35.139639888780565 ], [ -120.651077782041597, 35.147707579495716 ], [ -120.662534383522001, 35.153354962996332 ], [ -120.667989908036489, 35.151943117121178 ], [ -120.675082089905302, 35.153153270728453 ], [ -120.687084243837162, 35.160615884639974 ], [ -120.698813621543295, 35.171103882569682 ], [ -120.704269146057769, 35.173120805248473 ], [ -120.714089090183833, 35.175944496998774 ], [ -120.734274530887404, 35.178566496481203 ], [ -120.749004447076487, 35.177759727409686 ], [ -120.754732747816689, 35.174734343391499 ], [ -120.756914957622485, 35.16928865215877 ], [ -120.756096628945315, 35.160414192372095 ], [ -120.760461048556891, 35.159809115568457 ], [ -120.779009831906123, 35.168885267623011 ], [ -120.786102013774936, 35.177759727409686 ], [ -120.80519634957561, 35.185020649053328 ], [ -120.84665833588565, 35.204383106769711 ], [ -120.855932727560258, 35.206400029448496 ], [ -120.873117629780864, 35.225762487164879 ], [ -120.896849161418857, 35.247948636631563 ], [ -120.896849161418857, 35.25399940466793 ], [ -120.889484203324301, 35.277799092277647 ], [ -120.87966425919825, 35.294136165975843 ], [ -120.867116552814949, 35.327213697907993 ], [ -120.862752133203358, 35.346777847892255 ], [ -120.862206580751916, 35.360694614375902 ], [ -120.866025447912051, 35.392965377236536 ], [ -120.86929876262073, 35.403251682898365 ], [ -120.884847007486997, 35.430278446794141 ], [ -120.896849161418857, 35.442178290599003 ], [ -120.908032986673533, 35.449035827706886 ], [ -120.946494434500607, 35.446615520492337 ], [ -120.950858854112184, 35.448027366367491 ], [ -120.955768826175216, 35.4536747498681 ], [ -120.969407637461416, 35.460128902440232 ], [ -120.976227043104515, 35.459120441100836 ], [ -121.003231889451172, 35.460733979243869 ], [ -121.025599539960538, 35.484533666853579 ], [ -121.053149938758651, 35.507526585391787 ], [ -121.05996934440175, 35.509745200338457 ], [ -121.101704106937518, 35.548873500306968 ], [ -121.125981191026938, 35.593044106972464 ], [ -121.133618925347207, 35.600506720883985 ], [ -121.143438869473272, 35.605952412116721 ], [ -121.166624848659808, 35.635399483227047 ], [ -121.18899249916916, 35.643063789406447 ], [ -121.195266352360818, 35.640643482191898 ], [ -121.250912702408499, 35.656577171354336 ], [ -121.272189248014953, 35.666661784748285 ], [ -121.285009730623983, 35.674124398659806 ], [ -121.289919702687016, 35.689453011018607 ], [ -121.296466332104387, 35.696915624930128 ], [ -121.304649618876113, 35.701756239359227 ], [ -121.314742339227891, 35.713252698628324 ], [ -121.315833444130789, 35.75258269086472 ], [ -121.324835059579669, 35.769323149098675 ], [ -121.332472793899939, 35.783038223314442 ], [ -121.346384381411866, 35.795139759387183 ], [ -121.356749877989373, 35.804215911441737 ], [ -121.38811914394762, 35.823578369158113 ], [ -121.406940703522579, 35.84455436501753 ], [ -121.413214556714223, 35.85524405521511 ], [ -121.426853368000423, 35.860084669644209 ], [ -121.439673850609438, 35.866942206752093 ], [ -121.462314277344532, 35.885699587664831 ], [ -121.461223172441635, 35.896994354666056 ], [ -121.46340538224743, 35.904456968577577 ], [ -121.472406997696311, 35.919987273204256 ], [ -121.486318585208238, 35.970410340173999 ], [ -121.503230711203116, 36.000260795820083 ], [ -121.511686774200555, 36.006513256124336 ], [ -121.531872214904126, 36.014379254571608 ], [ -121.553694312962037, 36.019824945804345 ], [ -121.569515334054032, 36.021438483947378 ], [ -121.574698082342778, 36.025068944769195 ], [ -121.590519103434772, 36.050280478254066 ], [ -121.589155222306147, 36.053709246808012 ], [ -121.592974089466281, 36.065004013809229 ], [ -121.606885676978209, 36.072063243184992 ], [ -121.618615054684327, 36.087795240079551 ], [ -121.62188836939302, 36.099695083884413 ], [ -121.629526103713289, 36.114418619439576 ], [ -121.680262481697937, 36.165850147748714 ], [ -121.717087272170673, 36.19509552659116 ], [ -121.779825804087167, 36.227366289451794 ], [ -121.797010706307773, 36.234223826559678 ], [ -121.807103426659566, 36.232811980684524 ], [ -121.813650056076938, 36.234223826559678 ], [ -121.826470538685953, 36.241888132739078 ], [ -121.835744930360576, 36.250762592525753 ], [ -121.839291021294983, 36.260443821383944 ], [ -121.851838727678285, 36.277789356421536 ], [ -121.874751930639093, 36.289084123422754 ], [ -121.888390741925292, 36.302799197638521 ], [ -121.894664595116936, 36.31772442546157 ], [ -121.893027937762596, 36.340515651731891 ], [ -121.905575644145898, 36.358264571305241 ], [ -121.902575105662933, 36.36391195480585 ], [ -121.901756776985764, 36.381862566647079 ], [ -121.903120658114375, 36.393560718184055 ], [ -121.905575644145898, 36.398199640345275 ], [ -121.914304483369051, 36.404250408381643 ], [ -121.917577798077744, 36.414738406311344 ], [ -121.914850035820507, 36.425831481044689 ], [ -121.925488308623741, 36.453866706279868 ], [ -121.937217686329873, 36.472422394924735 ], [ -121.94158210594145, 36.485532392336864 ], [ -121.939127119909941, 36.496827159338082 ], [ -121.938854343684213, 36.506508388196274 ], [ -121.943764315747245, 36.511752387161124 ], [ -121.944582644424415, 36.521837000555074 ], [ -121.92876162333242, 36.523047154162349 ], [ -121.926033861075183, 36.525265769109019 ], [ -121.932580490492555, 36.559956839184196 ], [ -121.942400434618619, 36.566410991756328 ], [ -121.949765392713161, 36.567621145363603 ], [ -121.951402050067514, 36.563990684541778 ], [ -121.95740312703343, 36.564394069077537 ], [ -121.972678595673983, 36.573470221132091 ], [ -121.978679672639899, 36.580529450507854 ], [ -121.970496385868188, 36.582748065454524 ], [ -121.94158210594145, 36.618044212333338 ], [ -121.938581567458485, 36.633977901495776 ], [ -121.936399357652689, 36.636801593246084 ], [ -121.929579952009604, 36.637003285513963 ], [ -121.923851651269402, 36.634582978299413 ], [ -121.890300175505359, 36.609169752546663 ], [ -121.888936294376734, 36.601707138635142 ], [ -121.886754084570939, 36.601505446367263 ], [ -121.8714786159304, 36.60453083038545 ], [ -121.860567566901452, 36.611186675225454 ], [ -121.842291559777948, 36.630145748406079 ], [ -121.831926063200441, 36.644869283961242 ], [ -121.825106657557342, 36.657172512301855 ], [ -121.814468384754107, 36.682787430322485 ], [ -121.807103426659566, 36.714251424111602 ], [ -121.80573954553094, 36.75015264779406 ], [ -121.788281867084606, 36.80400448331774 ], [ -121.791555181793299, 36.815097558051079 ], [ -121.809285636465347, 36.848578474518987 ], [ -121.810649517593973, 36.850595397197779 ], [ -121.827561643588851, 36.879437391504467 ], [ -121.862204224255791, 36.931473996617243 ], [ -121.880207455153567, 36.950231377529988 ], [ -121.894664595116936, 36.961929529066964 ], [ -121.906393972823068, 36.968988758442734 ], [ -121.930125504461046, 36.978064910497281 ], [ -121.939399896135654, 36.978064910497281 ], [ -121.951674826293228, 36.971409065657276 ], [ -121.972678595673983, 36.954063530619692 ], [ -121.975951910382662, 36.954063530619692 ], [ -121.983862420928659, 36.958702452780898 ], [ -122.012503924629669, 36.964551528549393 ], [ -122.023414973658618, 36.962131221334843 ], [ -122.027233840818752, 36.951239838869384 ], [ -122.050147043779575, 36.948617839386955 ], [ -122.066513617322997, 36.948214454851197 ], [ -122.079334099932026, 36.950836454333626 ], [ -122.106066170052969, 36.955878761030597 ], [ -122.140708750719909, 36.975039526479094 ], [ -122.155165890683278, 36.980888602247589 ], [ -122.186807932867254, 37.003478136250031 ], [ -122.206175044893655, 37.013966134179739 ], [ -122.252274227040985, 37.059548586720382 ], [ -122.26045751381271, 37.072456891864633 ], [ -122.285007374127858, 37.101702270707086 ], [ -122.292917884673855, 37.107349654207695 ], [ -122.306011143508599, 37.116425806262249 ], [ -122.313921654054596, 37.118241036673162 ], [ -122.322923269503491, 37.115417344922854 ], [ -122.33056100382376, 37.115417344922854 ], [ -122.337107633241132, 37.117434267601645 ], [ -122.338744290595471, 37.120863036155583 ], [ -122.337107633241132, 37.130745957281661 ], [ -122.337925961918302, 37.135989956246505 ], [ -122.343927038884232, 37.14405764696167 ], [ -122.359748059976212, 37.155554106230767 ], [ -122.36165749355628, 37.163621796945925 ], [ -122.367113018070754, 37.172899641268359 ], [ -122.379387948228342, 37.181169024251396 ], [ -122.390571773483018, 37.182984254662308 ], [ -122.397118402900389, 37.187219792287763 ], [ -122.405028913446387, 37.19569086753868 ], [ -122.407211123252168, 37.219490555148397 ], [ -122.408847780606521, 37.225339630916892 ], [ -122.415939962475335, 37.232802244828406 ], [ -122.419213277184028, 37.241475012347209 ], [ -122.418394948506858, 37.248534241722965 ], [ -122.411575542863758, 37.265879776760556 ], [ -122.401210046286252, 37.337077147321835 ], [ -122.400937270060524, 37.359263296788519 ], [ -122.409393333057963, 37.374793601415199 ], [ -122.42330492056989, 37.392542520988542 ], [ -122.443763137499175, 37.435906358582521 ], [ -122.445945347304971, 37.46152127660315 ], [ -122.452219200496614, 37.480480349783775 ], [ -122.467767445362881, 37.498229269357125 ], [ -122.472404641200185, 37.500447884303789 ], [ -122.476496284586048, 37.498834346160763 ], [ -122.48222458532625, 37.496212346678334 ], [ -122.485770676260657, 37.494598808535301 ], [ -122.486861781163554, 37.494397116267422 ], [ -122.487134557389282, 37.494195423999543 ], [ -122.493681186806654, 37.49238019358863 ], [ -122.494499515483824, 37.492783578124389 ], [ -122.499409487546856, 37.495405577606817 ], [ -122.516594389767462, 37.521423880163198 ], [ -122.519594928250427, 37.537357569325636 ], [ -122.516594389767462, 37.545021875505043 ], [ -122.514684956187395, 37.546232029112318 ], [ -122.513593851284497, 37.552282797148678 ], [ -122.517958270896088, 37.576082484758402 ], [ -122.517139942218918, 37.590604328045686 ], [ -122.501318921126924, 37.59968048010024 ], [ -122.496681725289619, 37.612185400708739 ], [ -122.493953963032382, 37.644052779033615 ], [ -122.496681725289619, 37.686408155288191 ], [ -122.502410026029821, 37.708190920219124 ], [ -122.506501669415684, 37.723721224845804 ], [ -122.509502207898649, 37.748932758330668 ], [ -122.511957193930158, 37.771118907797359 ], [ -122.514412179961667, 37.780800136655543 ], [ -122.505410564512786, 37.788262750567071 ], [ -122.492862858129484, 37.787859366031313 ], [ -122.485770676260657, 37.790683057781614 ], [ -122.478132941940387, 37.810852284569506 ], [ -122.470222431394404, 37.808633669622836 ], [ -122.463675801977018, 37.804599824265267 ], [ -122.426032682827127, 37.811053976837385 ], [ -122.407483899477896, 37.811457361373144 ], [ -122.398209507803287, 37.805608285604656 ], [ -122.385389025194257, 37.790683057781614 ], [ -122.375841857293921, 37.735015991847021 ], [ -122.370113556553719, 37.732393992364592 ], [ -122.36765857052221, 37.735015991847021 ], [ -122.365476360716414, 37.734612607311263 ], [ -122.356747521493247, 37.729570300614284 ], [ -122.36165749355628, 37.715048457327001 ], [ -122.370386332779447, 37.717670456809429 ], [ -122.391390102160187, 37.708392612487003 ], [ -122.393299535740255, 37.707585843415487 ], [ -122.387571235000053, 37.679147233644549 ], [ -122.374205199939581, 37.662205083142716 ], [ -122.375569081068207, 37.652322162016645 ], [ -122.378024067099716, 37.650506931605733 ], [ -122.387298458774325, 37.648490008926942 ], [ -122.386207353871427, 37.637598626461482 ], [ -122.365476360716414, 37.626303859460265 ], [ -122.355383640364636, 37.615815861530557 ], [ -122.358656955073315, 37.611176939369344 ], [ -122.370386332779447, 37.614404015655403 ], [ -122.373386871262412, 37.613798938851765 ], [ -122.378569619551158, 37.605529555868728 ], [ -122.360293612427654, 37.592419558456598 ], [ -122.317740521214731, 37.590806020313565 ], [ -122.315285535183222, 37.58717555949174 ], [ -122.315831087634663, 37.583746790937802 ], [ -122.306011143508599, 37.575477407954764 ], [ -122.262639723618506, 37.572855408472336 ], [ -122.252001450815271, 37.56640125590021 ], [ -122.244363716495002, 37.558131872917173 ], [ -122.242727059140648, 37.557123411577777 ], [ -122.236453205949005, 37.552887873952315 ], [ -122.225269380694328, 37.54562695230868 ], [ -122.214358331665366, 37.53856772293291 ], [ -122.196627876993318, 37.537155877057756 ], [ -122.194991219638965, 37.522432341502594 ], [ -122.16853192574375, 37.504078345125606 ], [ -122.15571144313472, 37.501254653375305 ], [ -122.149710366168804, 37.502666499250459 ], [ -122.140163198268453, 37.50791049821531 ], [ -122.130888806593845, 37.503674960589855 ], [ -122.127615491885166, 37.50004449976803 ], [ -122.116158890404762, 37.505288498732881 ], [ -122.11124891834173, 37.507507113679551 ], [ -122.112067247018899, 37.528886494074726 ], [ -122.128706596788049, 37.560552180131722 ], [ -122.13388934507681, 37.562972487346272 ], [ -122.137435436011216, 37.567409717239606 ], [ -122.144527617880044, 37.58193156052689 ], [ -122.146982603911553, 37.588385713099015 ], [ -122.145345946557214, 37.600890633707508 ], [ -122.146437051460111, 37.60734478627964 ], [ -122.152983680877483, 37.640825702747549 ], [ -122.163076401229276, 37.667852466643325 ], [ -122.170986911775259, 37.676121849626369 ], [ -122.179170198546984, 37.679954002716066 ], [ -122.197446205670488, 37.692862307860317 ], [ -122.20399283508786, 37.697702922289409 ], [ -122.213812779213924, 37.698711383628805 ], [ -122.221723289759908, 37.705568920736695 ], [ -122.246818702526511, 37.721905994434891 ], [ -122.25609309420112, 37.735621068650659 ], [ -122.258002527781187, 37.739654914008241 ], [ -122.257184199104017, 37.745100605240964 ], [ -122.252274227040985, 37.747520912455514 ], [ -122.244909268946444, 37.750344604205821 ], [ -122.242727059140648, 37.753773372759767 ], [ -122.253638108169611, 37.761235986671281 ], [ -122.264003604747117, 37.764664755225226 ], [ -122.275460206227521, 37.767286754707655 ], [ -122.286098479030755, 37.769505369654325 ], [ -122.294008989576753, 37.770513830993721 ], [ -122.304374486154259, 37.774547676351297 ], [ -122.318831626117628, 37.778984906244631 ], [ -122.329197122695135, 37.783220443870093 ], [ -122.330833780049474, 37.78382552067373 ], [ -122.330833780049474, 37.786044135620401 ], [ -122.331652108726644, 37.796128749014343 ], [ -122.335470975886778, 37.799557517568289 ], [ -122.335743752112506, 37.799557517568289 ], [ -122.333834318532439, 37.809843823230111 ], [ -122.323468821954933, 37.823155512910127 ], [ -122.317740521214731, 37.826785973731944 ], [ -122.306283919734327, 37.827391050535581 ], [ -122.303828933702803, 37.83001305001801 ], [ -122.301373947671294, 37.84776196959136 ], [ -122.310375563120189, 37.87398196441562 ], [ -122.310102786894461, 37.892739345328366 ], [ -122.313376101603154, 37.896974882953828 ], [ -122.313376101603154, 37.897176575221707 ], [ -122.323741598180661, 37.905849342740495 ], [ -122.334652647209609, 37.908874726758683 ], [ -122.357020297718975, 37.908874726758683 ], [ -122.362475822233449, 37.904235804597469 ], [ -122.36765857052221, 37.903832420061711 ], [ -122.378842395776886, 37.905244265936858 ], [ -122.385934577645713, 37.908067957687166 ], [ -122.389207892354392, 37.910084880365957 ], [ -122.390571773483018, 37.92258980097445 ], [ -122.394936193094594, 37.927027030867791 ], [ -122.401210046286252, 37.928438876742945 ], [ -122.413757752669554, 37.937313336529613 ], [ -122.41730384360396, 37.943565796833866 ], [ -122.43012432621299, 37.963129946818128 ], [ -122.429851549987262, 37.965348561764792 ], [ -122.415394410023893, 37.963129946818128 ], [ -122.411848319089486, 37.960507947335699 ], [ -122.408302228155065, 37.957482563317512 ], [ -122.399846165157626, 37.956070717442358 ], [ -122.36765857052221, 37.978256866909049 ], [ -122.361930269782007, 37.989955018446025 ], [ -122.363021374684905, 37.994392248339366 ], [ -122.36684024184504, 37.998426093696942 ], [ -122.369022451650821, 38.007905630287254 ], [ -122.367931346747923, 38.012544552448475 ], [ -122.363566927136347, 38.014158090591501 ], [ -122.359475283750484, 38.009922552966046 ], [ -122.340108171724097, 38.003670092661793 ], [ -122.331924884952372, 38.005283630804826 ], [ -122.321013835923424, 38.012947936984233 ], [ -122.315558311408935, 38.013553013787863 ], [ -122.300828395219852, 38.010931014305442 ], [ -122.283370716773518, 38.022629165842417 ], [ -122.262912499844219, 38.044613623041229 ], [ -122.262912499844219, 38.051471160149106 ], [ -122.266731367004354, 38.060143927667909 ], [ -122.273005220196012, 38.074464078687313 ], [ -122.282825164322063, 38.082935153938223 ], [ -122.301919500122736, 38.105121303404914 ], [ -122.314467206506038, 38.115205916798857 ], [ -122.366294689393584, 38.141425911623124 ], [ -122.39630007422322, 38.14989698687404 ], [ -122.403392256092033, 38.150703755945557 ], [ -122.403665032317761, 38.150703755945557 ], [ -122.409666109283691, 38.136181912658273 ], [ -122.439671494113327, 38.117021147209769 ], [ -122.450309766916547, 38.116214378138253 ], [ -122.454946962753866, 38.118836377620681 ], [ -122.484406795132045, 38.115004224530978 ], [ -122.489862319646519, 38.111978840512798 ], [ -122.490680648323689, 38.109760225566127 ], [ -122.491226200775145, 38.108146687423101 ], [ -122.489862319646519, 38.097053612689756 ], [ -122.486589004937827, 38.089994383313993 ], [ -122.483861242680589, 38.071842079204885 ], [ -122.492317305678043, 38.056311774578205 ], [ -122.499409487546856, 38.03210870243273 ], [ -122.497772830192517, 38.019402089556351 ], [ -122.494499515483824, 38.015166551930896 ], [ -122.48140625664908, 38.007703938019375 ], [ -122.462857473299849, 38.003266708126034 ], [ -122.453037529173798, 37.996207478750279 ], [ -122.44840033333648, 37.988341480302992 ], [ -122.44840033333648, 37.984711019481175 ], [ -122.456583620108205, 37.978861943712687 ], [ -122.462584697074135, 37.981483943195109 ], [ -122.471859088748744, 37.981685635462988 ], [ -122.488771214743622, 37.966760407639946 ], [ -122.490407872097975, 37.964743484961161 ], [ -122.490407872097975, 37.959096101460545 ], [ -122.487680109840724, 37.948809795798724 ], [ -122.480587927971911, 37.945381027244778 ], [ -122.479224046843285, 37.941548874155075 ], [ -122.485770676260657, 37.937515028797492 ], [ -122.499409487546856, 37.939128566940525 ], [ -122.502955578481263, 37.936506567458103 ], [ -122.502955578481263, 37.928842261278703 ], [ -122.493681186806654, 37.921783031902933 ], [ -122.486316228712113, 37.921783031902933 ], [ -122.478132941940387, 37.918555955616874 ], [ -122.471859088748744, 37.910488264901716 ], [ -122.472404641200185, 37.902622266454436 ], [ -122.458493053688272, 37.89415119120352 ], [ -122.44840033333648, 37.893344422132003 ], [ -122.439125941661871, 37.883864885541698 ], [ -122.438307612984701, 37.88104119379139 ], [ -122.450036990690833, 37.871158272665319 ], [ -122.462039144622679, 37.868939657718649 ], [ -122.474314074780253, 37.874385348951378 ], [ -122.480860704197625, 37.873376887611983 ], [ -122.483315690229148, 37.868939657718649 ], [ -122.48304291400342, 37.863897351021677 ], [ -122.476496284586048, 37.832836741768318 ], [ -122.476496284586048, 37.83243335723256 ], [ -122.479224046843285, 37.82537412785679 ], [ -122.479769599294741, 37.825575820124669 ], [ -122.483588466454876, 37.826785973731944 ], [ -122.492590081903757, 37.824769051053153 ], [ -122.505410564512786, 37.822147051570731 ], [ -122.52286824295912, 37.824769051053153 ], [ -122.52368657163629, 37.824769051053153 ], [ -122.537325382922489, 37.830416434553769 ], [ -122.549054760628607, 37.836265510322264 ], [ -122.561602467011909, 37.851795814948943 ], [ -122.584242893746989, 37.859258428860457 ], [ -122.601155019741881, 37.875192118022895 ], [ -122.627068761185654, 37.886083500488361 ], [ -122.63988924379467, 37.897378267489586 ], [ -122.656528593563834, 37.904437496865349 ], [ -122.678350691621745, 37.906656111812012 ], [ -122.682169558781879, 37.906454419544133 ], [ -122.693626160262284, 37.901210420579282 ], [ -122.702627775711179, 37.893747806667761 ], [ -122.727177636026326, 37.904639189133228 ], [ -122.732905936766528, 37.920169493759907 ], [ -122.736997580152391, 37.925816877260516 ], [ -122.754728034824439, 37.935498106118708 ], [ -122.766184636304843, 37.93791841333325 ], [ -122.783369538525449, 37.951431795281145 ], [ -122.791825601522902, 37.969382407122367 ], [ -122.797281126037376, 37.976643328766016 ], [ -122.821285433901082, 37.996812555553916 ], [ -122.856473567019464, 38.016780090073929 ], [ -122.882114532237509, 38.025251165324846 ], [ -122.939670315865257, 38.031907010164851 ], [ -122.956855218085863, 38.028679933878792 ], [ -122.97240346295213, 38.020208858627868 ], [ -122.981677854626739, 38.009115783894529 ], [ -122.982496183303908, 38.00427516946543 ], [ -122.980041197272399, 38.000846400911492 ], [ -122.976767882563706, 37.995602401946641 ], [ -122.974312896532197, 37.992375325660575 ], [ -123.023958169613948, 37.994795632875125 ], [ -123.020684854905255, 37.999636247304217 ], [ -123.016320435293679, 38.001653169983001 ], [ -123.011410463230646, 38.003468400393913 ], [ -122.992316127429973, 38.041789931290921 ], [ -122.960946861471726, 38.112987301852193 ], [ -122.952218022248559, 38.138602219872823 ], [ -122.948944707539866, 38.154132524499502 ], [ -122.949490259991322, 38.164015445625566 ], [ -122.953581903377184, 38.175713597162549 ], [ -122.965311281083302, 38.187210056431653 ], [ -122.9664023859862, 38.19850482343287 ], [ -122.968039043340539, 38.202336976522574 ], [ -122.992043351204245, 38.233195893508054 ], [ -122.993952784784312, 38.237633123401388 ], [ -122.993134456107143, 38.239650046080179 ], [ -122.987133379141213, 38.237633123401388 ], [ -122.968584595791995, 38.242877122366238 ], [ -122.96722071466337, 38.250743120813524 ], [ -122.977040658789434, 38.267886963583237 ], [ -122.986315050464043, 38.273130962548088 ], [ -122.994498337235768, 38.283013883674158 ], [ -122.997226099493005, 38.289468036246284 ], [ -123.002954400233207, 38.29572049655053 ], [ -123.004045505136105, 38.296930650157805 ], [ -123.024230945839676, 38.310645724373572 ], [ -123.038688085803045, 38.313671108391759 ], [ -123.050963015960619, 38.310645724373572 ], [ -123.053418001992128, 38.305805109944473 ], [ -123.052054120863517, 38.302174649122655 ], [ -123.053418001992128, 38.299350957372354 ], [ -123.05832797405516, 38.298342496032959 ], [ -123.063783498569634, 38.302174649122655 ], [ -123.074694547598597, 38.322545568178427 ], [ -123.068420694406953, 38.335252181054805 ], [ -123.068147918181225, 38.359858637736039 ], [ -123.085605596627559, 38.39051586245364 ], [ -123.103608827525335, 38.415525703670632 ], [ -123.12243038710028, 38.437308468601557 ], [ -123.128704240291938, 38.450418466013687 ], [ -123.145343590061088, 38.459494618068248 ], [ -123.166347359441829, 38.475024922694928 ], [ -123.202353821237395, 38.494387380411304 ], [ -123.249816884513351, 38.511127838645258 ], [ -123.287187227437528, 38.540171525219833 ], [ -123.297279947789306, 38.543398601505892 ], [ -123.331922528456246, 38.565584750972576 ], [ -123.34337912993665, 38.589989515385938 ], [ -123.349652983128308, 38.596847052493814 ], [ -123.371747857411947, 38.607335050423522 ], [ -123.379385591732216, 38.621856893710813 ], [ -123.398207151307162, 38.647068427195677 ], [ -123.403117123370194, 38.649488734410227 ], [ -123.405572109401703, 38.656749656053869 ], [ -123.432849731974102, 38.68720518850359 ], [ -123.441851347422983, 38.69971010911209 ], [ -123.461218459449384, 38.717055644149681 ], [ -123.490132739376122, 38.732182564240603 ], [ -123.51468259969127, 38.742065485366666 ], [ -123.525048096268776, 38.753763636903649 ], [ -123.533504159266229, 38.768487172458812 ], [ -123.541960222263668, 38.77675655544185 ], [ -123.57196560709329, 38.798135935837024 ], [ -123.579876117639287, 38.802774857998237 ], [ -123.586422747056659, 38.802774857998237 ], [ -123.600334334568586, 38.814069624999462 ], [ -123.601698215697198, 38.818910239428554 ], [ -123.605244306631619, 38.822742392518251 ], [ -123.638523006169933, 38.843920080645546 ], [ -123.642614649555796, 38.843920080645546 ], [ -123.6472518453931, 38.845533618788579 ], [ -123.652161817456133, 38.854609770843126 ], [ -123.654616803487642, 38.865702845576472 ], [ -123.659799551776402, 38.872560382684355 ], [ -123.688168279251684, 38.893536378543772 ], [ -123.710535929761051, 38.913302220795906 ], [ -123.725265845950133, 38.917537758421361 ], [ -123.727720831981657, 38.929437602226223 ], [ -123.726356950853031, 38.936295139334106 ], [ -123.738904657236333, 38.954044058907456 ], [ -123.732903580270403, 38.955052520246852 ], [ -123.729084713110268, 38.956666058389885 ], [ -123.721446978789999, 38.96392698003352 ], [ -123.711081482212492, 38.977238669713536 ], [ -123.696897118474851, 39.004467125877198 ], [ -123.690623265283193, 39.021207584111153 ], [ -123.690077712831751, 39.031090505237216 ], [ -123.693896579991886, 39.057310500061483 ], [ -123.713263692018288, 39.108338643834855 ], [ -123.721446978789999, 39.125280794336689 ], [ -123.735904118753368, 39.139600945356101 ], [ -123.737813552333435, 39.143433098445797 ], [ -123.742177971945026, 39.164812478840972 ], [ -123.760999531519971, 39.191637550468869 ], [ -123.765909503583003, 39.19365447314766 ], [ -123.774911119031884, 39.212008469524648 ], [ -123.777366105063408, 39.237220003009512 ], [ -123.788004377866642, 39.264246766905295 ], [ -123.79891542689559, 39.271305996281058 ], [ -123.803825398958622, 39.278768610192586 ], [ -123.801643189152827, 39.283609224621678 ], [ -123.803007070281453, 39.291676915336836 ], [ -123.811463133278892, 39.312854603464125 ], [ -123.808735371021655, 39.324351062733228 ], [ -123.817464210244822, 39.338872906020512 ], [ -123.822101406082126, 39.343915212717491 ], [ -123.825374720790819, 39.360857363219317 ], [ -123.826193049467989, 39.368723361666596 ], [ -123.822374182307854, 39.380018128667821 ], [ -123.821828629856398, 39.406843200295725 ], [ -123.814736447987585, 39.446576577067873 ], [ -123.795642112186911, 39.492159029608523 ], [ -123.784185510706507, 39.509504564646107 ], [ -123.778457209966305, 39.521404408450969 ], [ -123.766455056034445, 39.552868402240087 ], [ -123.767273384711615, 39.559927631615849 ], [ -123.787458825415186, 39.604501622817104 ], [ -123.783639958255051, 39.609543929514075 ], [ -123.78227607712644, 39.62144377331893 ], [ -123.786367720512288, 39.659966996483817 ], [ -123.792641573703946, 39.684170068629292 ], [ -123.808189818570213, 39.710793447989317 ], [ -123.824829168339363, 39.718054369632952 ], [ -123.829466364176668, 39.723096676329931 ], [ -123.831648573982463, 39.730559290241452 ], [ -123.83519466491687, 39.738828673224489 ], [ -123.838195203399835, 39.752342055172377 ], [ -123.837104098496937, 39.776141742782102 ], [ -123.839831860754174, 39.795705892766357 ], [ -123.851834014686034, 39.832010500984566 ], [ -123.853743448266101, 39.834027423663358 ], [ -123.881566623289942, 39.845322190664575 ], [ -123.907753140959443, 39.863071110237925 ], [ -123.915118099053984, 39.875374338578546 ], [ -123.915936427731154, 39.881021722079154 ], [ -123.930120791468795, 39.909662024117964 ], [ -123.95494342800967, 39.922368636994342 ], [ -123.96258116232994, 39.937697249353143 ], [ -123.980038840776274, 39.962505398302255 ], [ -123.995859861868254, 39.972993396231963 ], [ -124.023955813117823, 40.001230313735022 ], [ -124.035957967049683, 40.013331849807756 ], [ -124.056416183978968, 40.024223232273215 ], [ -124.065145023202135, 40.024828309076852 ], [ -124.068963890362269, 40.021399540522914 ], [ -124.072509981296676, 40.022609694130182 ], [ -124.079874939391232, 40.029870615773831 ], [ -124.080693268068401, 40.06617522399204 ], [ -124.086967121260045, 40.078478452332661 ], [ -124.110425876672309, 40.103689985817525 ], [ -124.139885709050489, 40.116396598693903 ], [ -124.170709422557294, 40.124262597141183 ], [ -124.187894324777901, 40.130515057445429 ], [ -124.214899171124571, 40.160970589895157 ], [ -124.23099296844228, 40.171660280092738 ], [ -124.258270591014664, 40.184366892969109 ], [ -124.296459262616011, 40.208771657382471 ], [ -124.321009122931173, 40.226520576955814 ], [ -124.327555752348545, 40.23741195942128 ], [ -124.343103997214811, 40.244067804261284 ], [ -124.352651165115148, 40.25052195683341 ], [ -124.363289437918382, 40.261009954763118 ], [ -124.363562214144096, 40.276136874854039 ], [ -124.347741193052116, 40.314660098018919 ], [ -124.35319671756659, 40.331400556252873 ], [ -124.356470032275283, 40.335031017074698 ], [ -124.362743885466926, 40.34995624489774 ], [ -124.365471647724164, 40.374764393846846 ], [ -124.373654934495889, 40.392916697955954 ], [ -124.379110459010363, 40.398765773724449 ], [ -124.391385389167937, 40.407035156707479 ], [ -124.402569214422613, 40.422162076798408 ], [ -124.40966139629144, 40.438095765960846 ], [ -124.408570291388543, 40.443138072657817 ], [ -124.396568137456697, 40.462097145838442 ], [ -124.384838759750565, 40.489728986537855 ], [ -124.383202102396226, 40.499813599931805 ], [ -124.38702096955636, 40.504855906628777 ], [ -124.382929326170498, 40.518974365380302 ], [ -124.379110459010363, 40.522806518470006 ], [ -124.363562214144096, 40.548623128758514 ], [ -124.329465185928612, 40.616391730765841 ], [ -124.315008045965243, 40.639586341571928 ], [ -124.312553059933734, 40.64140157198284 ], [ -124.28909430452147, 40.679723102879834 ], [ -124.248450646888614, 40.735188476546554 ], [ -124.228265206185043, 40.769476162085979 ], [ -124.201805912289814, 40.805175693500551 ], [ -124.17671049952321, 40.843698916665431 ], [ -124.158434492399721, 40.875969679526065 ], [ -124.137157946793252, 40.92578766969217 ], [ -124.118063610992579, 40.989320734074042 ], [ -124.112062534026649, 41.02824734177468 ], [ -124.12542856908712, 41.048416568562573 ], [ -124.133066303407389, 41.052450413920155 ], [ -124.13824905169615, 41.054265644331068 ], [ -124.142886247533454, 41.054063952063188 ], [ -124.14725066714503, 41.052853798455914 ], [ -124.148887324499384, 41.05144195258076 ], [ -124.151342310530893, 41.051038568045001 ], [ -124.153524520336688, 41.053458875259551 ], [ -124.15407007278813, 41.059913027831684 ], [ -124.154615625239586, 41.087141483995339 ], [ -124.160616702205502, 41.099041327800194 ], [ -124.158980044851162, 41.122034246338401 ], [ -124.165526674268534, 41.129900244785674 ], [ -124.163890016914195, 41.138774704572356 ], [ -124.158434492399721, 41.143010242197811 ], [ -124.149705653176554, 41.14079162725114 ], [ -124.143704576210624, 41.144623780340837 ], [ -124.122700806829883, 41.189802848345728 ], [ -124.106879785737888, 41.229737917385762 ], [ -124.106334233286447, 41.240629299851221 ], [ -124.092149869548805, 41.287623598267025 ], [ -124.079056610714048, 41.347122817291321 ], [ -124.072237205070962, 41.374754657990735 ], [ -124.062962813396339, 41.439497875979882 ], [ -124.065417799427863, 41.464709409464753 ], [ -124.065963351879304, 41.470356792965362 ], [ -124.075783296005369, 41.501820786754479 ], [ -124.081511596745571, 41.511300323344791 ], [ -124.082057149197013, 41.54780662383088 ], [ -124.092422645774533, 41.553655699599375 ], [ -124.101151484997686, 41.569186004226054 ], [ -124.101424261223414, 41.578463848548481 ], [ -124.097332617837552, 41.585321385656371 ], [ -124.100878708771972, 41.602465228426084 ], [ -124.114517520058158, 41.616785379445489 ], [ -124.116154177412511, 41.628886915518223 ], [ -124.12024582079836, 41.640383374787326 ], [ -124.135521289438913, 41.65732552528916 ], [ -124.139340156599047, 41.671645676308565 ], [ -124.13824905169615, 41.678906597952206 ], [ -124.143431799984896, 41.709362130401928 ], [ -124.147523443370758, 41.718034897920724 ], [ -124.154342849013858, 41.728724588118311 ], [ -124.164708345591364, 41.740221047387408 ], [ -124.177256051974666, 41.745666738620145 ], [ -124.185439338746377, 41.739414278315891 ], [ -124.191167639486579, 41.735985509761953 ], [ -124.194986506646714, 41.73679227883347 ], [ -124.203715345869881, 41.747078584495299 ], [ -124.239721807665447, 41.770878272105008 ], [ -124.242176793696956, 41.772088425712283 ], [ -124.248723423114328, 41.771483348908646 ], [ -124.256088381208883, 41.78297980817775 ], [ -124.244904555954193, 41.792257652500183 ], [ -124.230720192216552, 41.818679339592322 ], [ -124.219536366961876, 41.846512872559622 ], [ -124.208352541707185, 41.888263172010568 ], [ -124.203442569644167, 41.94090485392698 ], [ -124.205079226998507, 41.983461922449436 ], [ -124.211625856415878, 41.998387150272478 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "3", "geo_id": "0400000US08", "fips_state": "08", "name": "Colorado", "iso_3166_2": "CO", "census": 5029196, "pop_estimataes_base": 5029324, "pop_2010": 5048575, "pop_2011": 5119661, "pop_2012": 5191709, "pop_2013": 5272086, "pop_2014": 5355866 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.053189999192767, 41.001422270146776 ], [ -104.03927841168084, 41.001422270146776 ], [ -104.02345739058886, 41.001825654682534 ], [ -104.018274642300099, 41.001623962414655 ], [ -103.972721012604211, 41.001623962414655 ], [ -103.9713571314756, 41.001623962414655 ], [ -103.953626676803538, 41.001623962414655 ], [ -103.896070893175789, 41.001825654682534 ], [ -103.878067662278013, 41.001623962414655 ], [ -103.858427774025898, 41.001623962414655 ], [ -103.574467723047292, 41.001623962414655 ], [ -103.497544827393142, 41.001623962414655 ], [ -103.486633778364194, 41.001825654682534 ], [ -103.421985812867632, 41.002027346950413 ], [ -103.421985812867632, 41.002027346950413 ], [ -103.38243326013766, 41.001825654682534 ], [ -103.365248357917054, 41.001825654682534 ], [ -103.363066148111258, 41.001825654682534 ], [ -103.07774221600404, 41.002229039218292 ], [ -103.076651111101143, 41.002229039218292 ], [ -103.059466208880536, 41.002430731486172 ], [ -103.058102327751925, 41.002430731486172 ], [ -103.043372411562828, 41.002430731486172 ], [ -103.038735215725524, 41.002229039218292 ], [ -103.001910425252788, 41.002430731486172 ], [ -103.000000991672721, 41.002430731486172 ], [ -102.982816089452115, 41.002229039218292 ], [ -102.981452208323503, 41.002027346950413 ], [ -102.963721753651441, 41.002229039218292 ], [ -102.962630648748558, 41.002027346950413 ], [ -102.960721215168491, 41.002027346950413 ], [ -102.959630110265593, 41.002027346950413 ], [ -102.944900194076496, 41.002229039218292 ], [ -102.942990760496428, 41.002027346950413 ], [ -102.925533082050094, 41.002229039218292 ], [ -102.923896424695755, 41.002229039218292 ], [ -102.906438746249421, 41.002229039218292 ], [ -102.904802088895082, 41.002229039218292 ], [ -102.887344410448748, 41.002229039218292 ], [ -102.885707753094408, 41.002229039218292 ], [ -102.867704522196632, 41.002229039218292 ], [ -102.865795088616565, 41.002027346950413 ], [ -102.849155738847401, 41.002229039218292 ], [ -102.846427976590164, 41.002229039218292 ], [ -102.830334179272455, 41.002430731486172 ], [ -102.82733364078949, 41.002229039218292 ], [ -102.773596724321877, 41.002430731486172 ], [ -102.766777318678777, 41.002229039218292 ], [ -102.754502388521203, 41.002430731486172 ], [ -102.739499696106392, 41.002229039218292 ], [ -102.653575185003348, 41.002430731486172 ], [ -102.621114814142203, 41.002632423754051 ], [ -102.57856172292928, 41.002229039218292 ], [ -102.575833960672043, 41.002229039218292 ], [ -102.575561184446315, 41.002229039218292 ], [ -102.566014016545978, 41.002229039218292 ], [ -102.556739624871369, 41.002229039218292 ], [ -102.488000015988945, 41.002430731486172 ], [ -102.470542337542611, 41.002430731486172 ], [ -102.469178456413985, 41.002430731486172 ], [ -102.379707854376548, 41.002229039218292 ], [ -102.364159609510281, 41.002229039218292 ], [ -102.292965014596334, 41.002229039218292 ], [ -102.29269223837062, 41.002229039218292 ], [ -102.292419462144892, 41.002229039218292 ], [ -102.291328357241994, 41.002229039218292 ], [ -102.272234021441321, 41.002229039218292 ], [ -102.267869601829744, 41.002430731486172 ], [ -102.231863140034179, 41.002229039218292 ], [ -102.212223251782063, 41.002430731486172 ], [ -102.209495489524812, 41.002430731486172 ], [ -102.191219482401323, 41.002229039218292 ], [ -102.124934859550407, 41.002430731486172 ], [ -102.070652390631352, 41.002430731486172 ], [ -102.051830831056392, 41.002430731486172 ], [ -102.051558054830679, 41.002430731486172 ], [ -102.051285278604951, 40.749508627565959 ], [ -102.051285278604951, 40.749508627565959 ], [ -102.051285278604951, 40.697472022453184 ], [ -102.051830831056392, 40.537933438560927 ], [ -102.051558054830679, 40.520184518987577 ], [ -102.051558054830679, 40.439910996371751 ], [ -102.051830831056392, 40.396345466509899 ], [ -102.051558054830679, 40.393118390223833 ], [ -102.051558054830679, 40.349149475826223 ], [ -102.051830831056392, 40.235395036742489 ], [ -102.051830831056392, 40.229142576438242 ], [ -102.051830831056392, 40.162584128038183 ], [ -102.05210360728212, 40.148263977018779 ], [ -102.051830831056392, 40.003045544145927 ], [ -102.051558054830679, 39.849759420557916 ], [ -102.051285278604951, 39.84350696025367 ], [ -102.051285278604951, 39.833220654591841 ], [ -102.051285278604951, 39.818900503572436 ], [ -102.050466949927781, 39.675497301110497 ], [ -102.049921397476325, 39.592400086744362 ], [ -102.049921397476325, 39.574046090367375 ], [ -102.049648621250611, 39.568197014598894 ], [ -102.049648621250611, 39.53895163575644 ], [ -102.049648621250611, 39.53673302080977 ], [ -102.049648621250611, 39.506277488360048 ], [ -102.049375845024883, 39.4233819662618 ], [ -102.049375845024883, 39.418137967296943 ], [ -102.049103068799155, 39.403616124009659 ], [ -102.048830292573427, 39.373765668363575 ], [ -102.048557516347714, 39.303173374605933 ], [ -102.047193635219088, 39.136978945873672 ], [ -102.047193635219088, 39.133146792783975 ], [ -102.047193635219088, 39.12971802423003 ], [ -102.046648082767646, 39.047024194399654 ], [ -102.045284201639021, 38.813464548195824 ], [ -102.045284201639021, 38.799547781712171 ], [ -102.045556977864749, 38.783412400281854 ], [ -102.045284201639021, 38.770100710601845 ], [ -102.045284201639021, 38.755578867314554 ], [ -102.045284201639021, 38.754368713707287 ], [ -102.045284201639021, 38.697491494165419 ], [ -102.045284201639021, 38.688617034378744 ], [ -102.045011425413293, 38.686801803967832 ], [ -102.045284201639021, 38.675305344698728 ], [ -102.045011425413293, 38.67490196016297 ], [ -102.045011425413293, 38.669657961198126 ], [ -102.045284201639021, 38.615201048870802 ], [ -102.045284201639021, 38.615201048870802 ], [ -102.045284201639021, 38.581518440135014 ], [ -102.045284201639021, 38.558727213864692 ], [ -102.045284201639021, 38.54380198604165 ], [ -102.045011425413293, 38.523834451521637 ], [ -102.045284201639021, 38.505480455144649 ], [ -102.045284201639021, 38.505480455144649 ], [ -102.045011425413293, 38.384465094417273 ], [ -102.044738649187579, 38.312259262516605 ], [ -102.044465872961851, 38.268895424922633 ], [ -102.044465872961851, 38.268693732654754 ], [ -102.044465872961851, 38.2624412723505 ], [ -102.044465872961851, 38.249936351742008 ], [ -102.043920320510409, 37.928035492207187 ], [ -102.043920320510409, 37.926220261796274 ], [ -102.043101991833225, 37.86793119637926 ], [ -102.043101991833225, 37.824163974249522 ], [ -102.042829215607512, 37.803591362925872 ], [ -102.042556439381784, 37.788666135102822 ], [ -102.042283663156056, 37.760227525331892 ], [ -102.042010886930342, 37.738444760400967 ], [ -102.042010886930342, 37.723922917113683 ], [ -102.041465334478886, 37.680357387251817 ], [ -102.041738110704614, 37.665633851696654 ], [ -102.041465334478886, 37.654540776963316 ], [ -102.041465334478886, 37.644254471301494 ], [ -102.041738110704614, 37.607949863083277 ], [ -102.042010886930342, 37.557930180649294 ], [ -102.042010886930342, 37.541189722415339 ], [ -102.042010886930342, 37.535340646646851 ], [ -102.041738110704614, 37.506095267804398 ], [ -102.041738110704614, 37.46938727505043 ], [ -102.041738110704614, 37.434897897243133 ], [ -102.041738110704614, 37.434696204975253 ], [ -102.041738110704614, 37.409888056026134 ], [ -102.041738110704614, 37.389113752434604 ], [ -102.042010886930342, 37.352809144216394 ], [ -102.042010886930342, 37.352607451948515 ], [ -102.041738110704614, 37.309445306622415 ], [ -102.041738110704614, 37.297747155085432 ], [ -102.042010886930342, 37.258215470581163 ], [ -102.042010886930342, 37.141839032015 ], [ -102.042010886930342, 37.125098573781045 ], [ -102.042010886930342, 37.125098573781045 ], [ -102.041738110704614, 37.111988576368915 ], [ -102.042010886930342, 37.106542885136179 ], [ -102.042010886930342, 37.035143822307028 ], [ -102.041738110704614, 37.034337053235518 ], [ -102.042010886930342, 37.032118438288848 ], [ -102.042010886930342, 37.030706592413694 ], [ -102.042010886930342, 37.024655824377319 ], [ -102.042283663156056, 36.992990138320323 ], [ -102.054558593313629, 36.993191830588202 ], [ -102.184400076758223, 36.99359521512396 ], [ -102.208404384621929, 36.99379690739184 ], [ -102.355157994061386, 36.994603676463356 ], [ -102.355430770287114, 36.994603676463356 ], [ -102.57092398860901, 36.995208753266994 ], [ -102.875615032742616, 36.999645983160335 ], [ -102.979542774743436, 36.998637521820939 ], [ -102.98581662793508, 36.998637521820939 ], [ -102.986907732837977, 36.99843582955306 ], [ -103.002183201478516, 37.000049367696093 ], [ -103.086198279001479, 36.999847675428214 ], [ -103.733223486418609, 36.998032445017301 ], [ -103.734314591321507, 36.998032445017301 ], [ -104.007909145722593, 36.996217214606389 ], [ -104.732130025019586, 36.993393522856081 ], [ -104.732130025019586, 36.993393522856081 ], [ -105.000541831131926, 36.993191830588202 ], [ -105.120836146676169, 36.995410445534873 ], [ -105.154933174891667, 36.995410445534873 ], [ -105.220672245291127, 36.995208753266994 ], [ -105.41925333761813, 36.995813830070631 ], [ -105.442439316804666, 36.99601552233851 ], [ -105.447349288867699, 36.99601552233851 ], [ -105.465079743539761, 36.99601552233851 ], [ -105.508723939655582, 36.995813830070631 ], [ -105.512542806815716, 36.995813830070631 ], [ -105.533819352422185, 36.995813830070631 ], [ -105.627381597845485, 36.995612137802752 ], [ -105.664751940769662, 36.995813830070631 ], [ -105.716579423657208, 36.995813830070631 ], [ -105.718488857237276, 36.995813830070631 ], [ -105.996175055024224, 36.995410445534873 ], [ -105.997538936152836, 36.995410445534873 ], [ -106.006540551601731, 36.995410445534873 ], [ -106.247674735141672, 36.994200291927598 ], [ -106.24876584004457, 36.994200291927598 ], [ -106.476261212298311, 36.993393522856081 ], [ -106.617286520997581, 36.992990138320323 ], [ -106.617013744771853, 36.992990138320323 ], [ -106.628743122477985, 36.993191830588202 ], [ -106.628743122477985, 36.993191830588202 ], [ -106.661476269564844, 36.993191830588202 ], [ -106.675660633302499, 36.993191830588202 ], [ -106.869877306017926, 36.992385061516686 ], [ -107.000537118139675, 37.000049367696093 ], [ -107.420885281980233, 37.000049367696093 ], [ -107.420885281980233, 37.000049367696093 ], [ -107.481714380316674, 37.000049367696093 ], [ -108.288040903556563, 36.999645983160335 ], [ -108.288313679782291, 36.999444290892455 ], [ -108.320501274417708, 36.999444290892455 ], [ -108.320774050643436, 36.999444290892455 ], [ -108.379148162948354, 36.999444290892455 ], [ -108.619736794036839, 36.999242598624576 ], [ -108.620282346488295, 36.999242598624576 ], [ -108.954433223000095, 36.998839214088818 ], [ -108.958797642611671, 36.998839214088818 ], [ -109.045267706166157, 36.999040906356697 ], [ -109.045267706166157, 37.072658584132512 ], [ -109.04499492994043, 37.074675506811303 ], [ -109.04499492994043, 37.086373658348286 ], [ -109.045267706166157, 37.096256579474357 ], [ -109.045267706166157, 37.109366576886487 ], [ -109.045267706166157, 37.111988576368915 ], [ -109.045267706166157, 37.111988576368915 ], [ -109.045813258617599, 37.374995293683078 ], [ -109.043085496360362, 37.485119271944988 ], [ -109.041994391457465, 37.530701724485638 ], [ -109.041994391457465, 37.530701724485638 ], [ -109.041721615231737, 37.604117709993574 ], [ -109.042267167683192, 37.617631091941462 ], [ -109.041994391457465, 37.623883552245715 ], [ -109.041721615231737, 37.711216304237304 ], [ -109.041721615231737, 37.713233226916088 ], [ -109.041721615231737, 37.835862125786505 ], [ -109.041721615231737, 37.842114586090744 ], [ -109.042267167683192, 37.881242886059269 ], [ -109.043085496360362, 37.974223021551467 ], [ -109.042812720134634, 37.997014247821795 ], [ -109.042812720134634, 37.999232862768459 ], [ -109.041994391457465, 38.152922370892227 ], [ -109.041994391457465, 38.155544370374656 ], [ -109.05999762235524, 38.27555126976263 ], [ -109.05999762235524, 38.500034763911913 ], [ -109.059452069903799, 38.719879335899982 ], [ -109.05399654538931, 38.904427761009231 ], [ -109.053723769163597, 38.905234530080747 ], [ -109.053178216712141, 38.94254759963836 ], [ -109.053178216712141, 38.942950984174118 ], [ -109.051541559357801, 39.12507910206881 ], [ -109.051541559357801, 39.366706438987805 ], [ -109.051268783132073, 39.497604720841252 ], [ -109.051268783132073, 39.660572073287454 ], [ -109.05099600690636, 40.058914302348398 ], [ -109.050723230680632, 40.059519379152036 ], [ -109.05099600690636, 40.180736432147292 ], [ -109.05099600690636, 40.180938124415171 ], [ -109.050723230680632, 40.222688423866117 ], [ -109.049904902003462, 40.539950361239718 ], [ -109.050177678229176, 40.540353745775477 ], [ -109.048268244649108, 40.653503108055574 ], [ -109.048268244649108, 40.662579260110128 ], [ -109.050177678229176, 41.000615501075259 ], [ -108.250670560632386, 41.000212116539501 ], [ -107.918429117700654, 41.002027346950413 ], [ -107.317775868656597, 41.003035808289809 ], [ -107.000537118139675, 41.003439192825567 ], [ -106.857875152086066, 41.003035808289809 ], [ -106.453893561788959, 41.002027346950413 ], [ -106.439436421825576, 41.002027346950413 ], [ -106.437526988245509, 41.001825654682534 ], [ -106.430980358828151, 41.001825654682534 ], [ -106.39197335854962, 41.001220577878897 ], [ -106.386245057809418, 41.001220577878897 ], [ -106.321051539861401, 40.999203655200112 ], [ -106.190664503965365, 40.997993501592838 ], [ -106.061095796746514, 40.996985040253442 ], [ -105.730491011169121, 40.996985040253442 ], [ -105.724762710428919, 40.996985040253442 ], [ -105.277136924015977, 40.998195193860717 ], [ -105.276864147790249, 40.998195193860717 ], [ -105.256405930860964, 40.998195193860717 ], [ -105.254769273506611, 40.998195193860717 ], [ -104.943258823729906, 40.998195193860717 ], [ -104.882429725393479, 40.998195193860717 ], [ -104.497269694671303, 41.001825654682534 ], [ -104.496996918445575, 41.001825654682534 ], [ -104.214673524821322, 41.001623962414655 ], [ -104.21412797236988, 41.001623962414655 ], [ -104.211400210112643, 41.001623962414655 ], [ -104.123566265429531, 41.001623962414655 ], [ -104.104471929628858, 41.001623962414655 ], [ -104.086195922505368, 41.001623962414655 ], [ -104.066828810478967, 41.001422270146776 ], [ -104.053189999192767, 41.001422270146776 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "4", "geo_id": "0400000US09", "fips_state": "09", "name": "Connecticut", "iso_3166_2": "CT", "census": 3574097, "pop_estimataes_base": 3574096, "pop_2010": 3579345, "pop_2011": 3590537, "pop_2012": 3594362, "pop_2013": 3599341, "pop_2014": 3596677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.799310740919779, 42.00806837913067 ], [ -71.79685575488827, 41.92860162558636 ], [ -71.796037426211086, 41.904398553440885 ], [ -71.794127992631019, 41.841067181326892 ], [ -71.794127992631019, 41.840058719987496 ], [ -71.792764111502407, 41.808594726198379 ], [ -71.792764111502407, 41.806981188055346 ], [ -71.789763573019442, 41.724690742760728 ], [ -71.789763573019442, 41.724489050492849 ], [ -71.789490796793714, 41.639979990251568 ], [ -71.789490796793714, 41.596817844925468 ], [ -71.789490796793714, 41.596817844925468 ], [ -71.797674083565425, 41.416908341977432 ], [ -71.797674083565425, 41.41670664970956 ], [ -71.818405076720452, 41.419530341459861 ], [ -71.839681622326907, 41.412067727548347 ], [ -71.842682160809886, 41.409849112601677 ], [ -71.843500489487042, 41.405815267244094 ], [ -71.84213660835843, 41.395327269314393 ], [ -71.833407769135263, 41.384435886848927 ], [ -71.831498335555196, 41.370922504901031 ], [ -71.831225559329482, 41.344702510076772 ], [ -71.832589440458094, 41.341273741522826 ], [ -71.839681622326907, 41.334617896682822 ], [ -71.859594286804764, 41.322314668342202 ], [ -71.868323126027917, 41.330987435861005 ], [ -71.886326356925707, 41.336433127093734 ], [ -71.916604517981057, 41.332197589468279 ], [ -71.922060042495531, 41.334617896682822 ], [ -71.923151147398443, 41.33502128121858 ], [ -71.936244406233186, 41.33804666523676 ], [ -71.945518797907795, 41.337844972968881 ], [ -71.956702623162471, 41.32977728225373 ], [ -71.970886986900126, 41.324533283288872 ], [ -71.979343049897551, 41.329978974521609 ], [ -71.982070812154802, 41.32977728225373 ], [ -71.988071889120732, 41.320499437931296 ], [ -72.021896141110489, 41.316868977109472 ], [ -72.084361896801269, 41.31969266885978 ], [ -72.094454617153048, 41.31424697762705 ], [ -72.099910141667522, 41.306986055983401 ], [ -72.111912295599382, 41.299120057536129 ], [ -72.134279946108748, 41.299321749804008 ], [ -72.161557568681133, 41.310213132269467 ], [ -72.173832498838721, 41.317675746180988 ], [ -72.177651365998855, 41.322516360610081 ], [ -72.184197995416213, 41.323928206485235 ], [ -72.191017401059327, 41.323121437413718 ], [ -72.201382897636819, 41.315658823502204 ], [ -72.203019554991172, 41.313238516287655 ], [ -72.20411065989407, 41.299120057536129 ], [ -72.212839499117223, 41.291455751356722 ], [ -72.225387205500539, 41.299120057536129 ], [ -72.235479925852317, 41.300330211143404 ], [ -72.248027632235619, 41.299523442071887 ], [ -72.251846499395754, 41.298716673000371 ], [ -72.250482618267142, 41.294481135374909 ], [ -72.251300946944298, 41.290043905481568 ], [ -72.26139366729609, 41.282984676105812 ], [ -72.317858346020941, 41.277740677140955 ], [ -72.327678290146991, 41.278547446212471 ], [ -72.333952143338649, 41.282984676105812 ], [ -72.341589877658919, 41.280160984355504 ], [ -72.348682059527746, 41.277538984873075 ], [ -72.348136507076305, 41.269672986425796 ], [ -72.386597954903365, 41.261806987978517 ], [ -72.398600108835211, 41.278144061676713 ], [ -72.405965066929767, 41.278345753944592 ], [ -72.451791472851383, 41.278950830748229 ], [ -72.47252246600641, 41.270076370961554 ], [ -72.485615724841153, 41.270883140033071 ], [ -72.499527312353067, 41.2658408333361 ], [ -72.506619494221894, 41.260193449835484 ], [ -72.51862164815374, 41.261201911174879 ], [ -72.521349410410977, 41.26563914106822 ], [ -72.529532697182702, 41.264428987460946 ], [ -72.533351564342837, 41.262613757050033 ], [ -72.536624879051516, 41.256159604477908 ], [ -72.537715983954428, 41.255554527674271 ], [ -72.546717599403308, 41.250713913245178 ], [ -72.547263151854764, 41.250512220977299 ], [ -72.570721907267014, 41.267656063747012 ], [ -72.570994683492728, 41.26805944828277 ], [ -72.571267459718456, 41.26805944828277 ], [ -72.583269613650316, 41.271689909104587 ], [ -72.585179047230383, 41.271286524568829 ], [ -72.585997375907553, 41.27108483230095 ], [ -72.586542928358995, 41.27108483230095 ], [ -72.58790680948762, 41.270681447765192 ], [ -72.589816243067688, 41.270278063229433 ], [ -72.590907347970585, 41.270076370961554 ], [ -72.597999529839399, 41.2686645250864 ], [ -72.607819473965463, 41.270479755497313 ], [ -72.610274459996987, 41.270883140033071 ], [ -72.6173666418658, 41.272093293640346 ], [ -72.617639418091528, 41.271891601372467 ], [ -72.617912194317256, 41.271891601372467 ], [ -72.631278229377727, 41.269067909622159 ], [ -72.641098173503778, 41.267050986943374 ], [ -72.64164372595522, 41.267050986943374 ], [ -72.642734830858132, 41.266849294675495 ], [ -72.650645341404129, 41.266244217871858 ], [ -72.653918656112808, 41.2658408333361 ], [ -72.653918656112808, 41.2658408333361 ], [ -72.654736984789977, 41.266244217871858 ], [ -72.662101942884533, 41.26886621735428 ], [ -72.662920271561688, 41.269269601890038 ], [ -72.667284691173279, 41.268261140550649 ], [ -72.67164911078487, 41.267050986943374 ], [ -72.672467439462025, 41.267050986943374 ], [ -72.674376873042092, 41.265437448800341 ], [ -72.685015145845341, 41.257571450353055 ], [ -72.685287922071055, 41.252529143656083 ], [ -72.685560698296783, 41.251318990048816 ], [ -72.689379565456917, 41.247688529226991 ], [ -72.690197894134087, 41.246881760155475 ], [ -72.690470670359815, 41.246680067887596 ], [ -72.693471208842766, 41.245469914280321 ], [ -72.694835089971392, 41.245066529744562 ], [ -72.695380642422833, 41.244864837476683 ], [ -72.701927271840219, 41.244663145208804 ], [ -72.706291691451796, 41.244663145208804 ], [ -72.707110020128965, 41.244663145208804 ], [ -72.708746677483305, 41.244461452940925 ], [ -72.709019453709033, 41.244461452940925 ], [ -72.709292229934761, 41.244461452940925 ], [ -72.710656111063372, 41.244461452940925 ], [ -72.7109288872891, 41.244864837476683 ], [ -72.713656649546351, 41.249100375102145 ], [ -72.711201663514828, 41.251117297780937 ], [ -72.712565544643439, 41.254142681799117 ], [ -72.722385488769504, 41.259184988496088 ], [ -72.732750985347025, 41.254747758602754 ], [ -72.754573083404921, 41.266849294675495 ], [ -72.7575736218879, 41.266849294675495 ], [ -72.78621512558891, 41.264832371996704 ], [ -72.818675496450055, 41.252327451388211 ], [ -72.819493825127225, 41.254142681799117 ], [ -72.826858783221766, 41.256764681281538 ], [ -72.847862552602507, 41.256764681281538 ], [ -72.850317538634016, 41.255554527674271 ], [ -72.854136405794151, 41.247688529226991 ], [ -72.861228587662978, 41.245268222012442 ], [ -72.881414028366549, 41.242646222530013 ], [ -72.895325615878477, 41.243654683869408 ], [ -72.900781140392951, 41.245873298816079 ], [ -72.904327231327358, 41.247285144691233 ], [ -72.905145560004541, 41.248293606030629 ], [ -72.902963350198746, 41.252730835923963 ], [ -72.902690573973018, 41.252932528191842 ], [ -72.894780063427021, 41.256159604477908 ], [ -72.894780063427021, 41.256159604477908 ], [ -72.893961734749851, 41.259991757567605 ], [ -72.89641672078136, 41.264025602925187 ], [ -72.903236126424474, 41.274715293122767 ], [ -72.907873322261764, 41.282581291570054 ], [ -72.908146098487492, 41.282984676105812 ], [ -72.916874937710659, 41.281976214766416 ], [ -72.917147713936387, 41.281976214766416 ], [ -72.920148252419352, 41.279959292087625 ], [ -72.920693804870794, 41.271488216836708 ], [ -72.920693804870794, 41.270681447765192 ], [ -72.920966581096522, 41.26886621735428 ], [ -72.931877630125484, 41.261201911174879 ], [ -72.933514287479824, 41.259991757567605 ], [ -72.935696497285619, 41.258579911692451 ], [ -72.956973042892074, 41.252932528191842 ], [ -72.959700805149311, 41.252327451388211 ], [ -72.96133746250365, 41.251722374584574 ], [ -72.962155791180834, 41.251520682316695 ], [ -72.983705113013031, 41.235385300886378 ], [ -72.985068994141642, 41.234376839546982 ], [ -72.986160099044525, 41.233570070475466 ], [ -72.997889476750657, 41.222678688009999 ], [ -73.003617777490859, 41.215216074098478 ], [ -73.007436644650994, 41.2101737674015 ], [ -73.013437721616924, 41.205534845240287 ], [ -73.01398327406838, 41.205131460704528 ], [ -73.015074378971264, 41.204324691633019 ], [ -73.020257127260024, 41.20412299936514 ], [ -73.020257127260024, 41.204324691633019 ], [ -73.020257127260024, 41.204526383900891 ], [ -73.020257127260024, 41.204526383900891 ], [ -73.020257127260024, 41.204929768436649 ], [ -73.020529903485752, 41.206341614311803 ], [ -73.022439337065819, 41.20714838338332 ], [ -73.024894323097328, 41.207350075651199 ], [ -73.045625316252341, 41.209568690597862 ], [ -73.050535288315388, 41.2101737674015 ], [ -73.054899707926964, 41.208560229258467 ], [ -73.05926412753854, 41.206744998847562 ], [ -73.077540134662044, 41.195248539578458 ], [ -73.079449568242111, 41.194038385971183 ], [ -73.091178945948243, 41.184155464845119 ], [ -73.091997274625413, 41.183550388041482 ], [ -73.092270050851141, 41.183348695773603 ], [ -73.104272204783001, 41.173264082379653 ], [ -73.105363309685885, 41.172255621040264 ], [ -73.105363309685885, 41.172255621040264 ], [ -73.108091071943136, 41.168826852486319 ], [ -73.110273281748917, 41.159750700431765 ], [ -73.110000505523203, 41.156927008681457 ], [ -73.10836384816885, 41.153699932395398 ], [ -73.111091610426087, 41.15087624064509 ], [ -73.13018594622676, 41.146842395287507 ], [ -73.164282974442244, 41.15854054682449 ], [ -73.170011275182446, 41.160557469503274 ], [ -73.17082960385963, 41.164994699396615 ], [ -73.177649009502716, 41.166608237539648 ], [ -73.202744422269319, 41.158137162288732 ], [ -73.228385387487378, 41.142606857662052 ], [ -73.234932016904736, 41.144018703537206 ], [ -73.248025275739494, 41.126471476231735 ], [ -73.262482415702863, 41.117395324177181 ], [ -73.286759499792282, 41.127883322106889 ], [ -73.296306667692619, 41.125664707160219 ], [ -73.311854912558886, 41.116386862837786 ], [ -73.330676472133831, 41.10993271026566 ], [ -73.372411234669599, 41.104083634497172 ], [ -73.392051122921714, 41.087746560798976 ], [ -73.400234409693439, 41.086334714923822 ], [ -73.413600444753911, 41.073224717511692 ], [ -73.435149766586107, 41.056685951545617 ], [ -73.450425235226646, 41.057089336081376 ], [ -73.468155689898694, 41.05144195258076 ], [ -73.477430081573317, 41.03591164795408 ], [ -73.493251102665297, 41.048214876294693 ], [ -73.516982634303275, 41.038735339704388 ], [ -73.516709858077547, 41.029457495381955 ], [ -73.522710935043477, 41.019372881988005 ], [ -73.528984788235135, 41.016347497969818 ], [ -73.531166998040916, 41.021994881470434 ], [ -73.530075893138019, 41.028852418578317 ], [ -73.53280365539527, 41.031676110328625 ], [ -73.535258641426779, 41.031877802596505 ], [ -73.551625214970215, 41.024415188684983 ], [ -73.561990711547722, 41.016750882505576 ], [ -73.567719012287924, 41.010901806737095 ], [ -73.570173998319433, 41.001623962414655 ], [ -73.58408558583136, 41.000817193343138 ], [ -73.58490391450853, 41.010498422201337 ], [ -73.595814963537492, 41.01594411343406 ], [ -73.603998250309203, 41.01513734436255 ], [ -73.643550803039176, 41.002229039218292 ], [ -73.651188537359445, 40.995169809842537 ], [ -73.657462390551089, 40.98508519644858 ], [ -73.654734628293852, 41.011708575808612 ], [ -73.655280180745308, 41.012717037148001 ], [ -73.670555649385847, 41.030062572185592 ], [ -73.680102817286183, 41.041760723722575 ], [ -73.687194999154997, 41.050635183509243 ], [ -73.69428718102381, 41.059307951028046 ], [ -73.727838656787867, 41.100654865943227 ], [ -73.639731935879041, 41.141396704054777 ], [ -73.632094201558772, 41.144825472608716 ], [ -73.61436374688671, 41.15309485559176 ], [ -73.514527648271752, 41.198475615864524 ], [ -73.509617676208734, 41.200895923079074 ], [ -73.482612829862063, 41.212795766883929 ], [ -73.55107966251876, 41.295489596714305 ], [ -73.544805809327116, 41.366283582739818 ], [ -73.543714704424218, 41.376771580669526 ], [ -73.537713627458288, 41.433850492479266 ], [ -73.53744085123256, 41.435867415158057 ], [ -73.536895298781118, 41.441111414122915 ], [ -73.536076970103949, 41.451397719784737 ], [ -73.536076970103949, 41.45301125792777 ], [ -73.535804193878221, 41.45522987287444 ], [ -73.535804193878221, 41.455633257410199 ], [ -73.535804193878221, 41.457246795553232 ], [ -73.534440312749609, 41.475802484198098 ], [ -73.534167536523881, 41.476407561001736 ], [ -73.534167536523881, 41.476810945537494 ], [ -73.534167536523881, 41.478021099144762 ], [ -73.534167536523881, 41.479029560484157 ], [ -73.533894760298153, 41.479634637287795 ], [ -73.530075893138019, 41.527234012507229 ], [ -73.521347053914866, 41.61638199490973 ], [ -73.517528186754731, 41.666603369611593 ], [ -73.510163228660176, 41.758776736032274 ], [ -73.504980480371415, 41.8237216462893 ], [ -73.504980480371415, 41.824326723092938 ], [ -73.487250025699367, 42.049616986313737 ], [ -73.294397234112552, 42.046994986831308 ], [ -73.29303335298394, 42.046994986831308 ], [ -73.231113149744601, 42.044978064152517 ], [ -73.22974926861599, 42.044776371884637 ], [ -73.127185407743809, 42.041952680134337 ], [ -73.05326305057261, 42.039935757455545 ], [ -73.00880052577962, 42.039330680651908 ], [ -72.863683573694487, 42.037717142508882 ], [ -72.863683573694487, 42.037717142508882 ], [ -72.813492748161295, 42.036506988901607 ], [ -72.816766062869988, 41.997580381200962 ], [ -72.774758524108506, 42.002219303362182 ], [ -72.766848013562509, 42.003026072433698 ], [ -72.766029684885325, 42.007664994594911 ], [ -72.758119174339342, 42.020774992007048 ], [ -72.7575736218879, 42.020976684274927 ], [ -72.755936964533561, 42.036103604365849 ], [ -72.714202201997793, 42.036708681169486 ], [ -72.695926194874289, 42.036708681169486 ], [ -72.509074480253403, 42.034691758490695 ], [ -72.397509003932328, 42.033279912615541 ], [ -72.198927911605324, 42.03106129766887 ], [ -72.135643827237374, 42.030254528597354 ], [ -72.135643827237374, 42.030254528597354 ], [ -72.102092351473317, 42.029044374990079 ], [ -72.059812036486107, 42.027430836847046 ], [ -71.800674622048405, 42.023598683757349 ], [ -71.799310740919779, 42.00806837913067 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "5", "geo_id": "0400000US11", "fips_state": "11", "name": "District of Columbia", "iso_3166_2": "DC", "census": 601723, "pop_estimataes_base": 601767, "pop_2010": 605210, "pop_2011": 620427, "pop_2012": 635040, "pop_2013": 649111, "pop_2014": 658893 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.119811023664766, 38.934278216655315 ], [ -77.100716687864093, 38.949001752210478 ], [ -77.054344729491021, 38.985104668160815 ], [ -77.040978694430549, 38.995189281554765 ], [ -77.036341498593231, 38.99176051300082 ], [ -77.015610505438218, 38.975826823838382 ], [ -77.013701071858151, 38.974414977963235 ], [ -77.008245547343677, 38.970179440337773 ], [ -77.002517246603475, 38.965540518176553 ], [ -77.002517246603475, 38.965338825908674 ], [ -76.941688148267048, 38.917941142957119 ], [ -76.909500553631617, 38.892729609472255 ], [ -76.910864434760242, 38.891721148132859 ], [ -76.919320497757681, 38.885065303292848 ], [ -76.920138826434851, 38.88446022648921 ], [ -76.949598658813031, 38.861265615683138 ], [ -76.953690302198893, 38.85844192393283 ], [ -77.001426141700577, 38.821532238910976 ], [ -77.024339344661385, 38.802976550266109 ], [ -77.038523708399026, 38.791480090997013 ], [ -77.033068183884552, 38.839482850752205 ], [ -77.031704302755941, 38.85057592548555 ], [ -77.040705918204822, 38.871148536809201 ], [ -77.068256317002934, 38.899788838848011 ], [ -77.090078415060844, 38.904226068741352 ], [ -77.101262240315521, 38.911083605849242 ], [ -77.119811023664766, 38.934278216655315 ], [ -77.119811023664766, 38.934278216655315 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "6", "geo_id": "0400000US13", "fips_state": "13", "name": "Georgia", "iso_3166_2": "GA", "census": 9687653, "pop_estimataes_base": 9688681, "pop_2010": 9714464, "pop_2011": 9813201, "pop_2012": 9919000, "pop_2013": 9994759, "pop_2014": 10097343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.321921711453314, 34.988370687871338 ], [ -84.12961447231794, 34.987563918799822 ], [ -84.129341696092226, 34.987563918799822 ], [ -84.03005114992871, 34.987362226531943 ], [ -84.021322310705557, 34.987362226531943 ], [ -84.005501289613562, 34.987362226531943 ], [ -83.936761680731138, 34.987563918799822 ], [ -83.93648890450541, 34.987563918799822 ], [ -83.673532622907558, 34.987160534264071 ], [ -83.620068482665673, 34.992001148693163 ], [ -83.549419440203181, 34.992404533228921 ], [ -83.483134817352266, 34.993816379104075 ], [ -83.108613059433338, 35.000673916211959 ], [ -83.108613059433338, 35.000673916211959 ], [ -83.143255640100278, 34.924837623489466 ], [ -83.243091738715222, 34.87784332507367 ], [ -83.267368822804656, 34.832664257068785 ], [ -83.283189843896636, 34.821369490067561 ], [ -83.32410627775522, 34.788695342671176 ], [ -83.339108970170031, 34.741297659719613 ], [ -83.352475005230502, 34.716086126234742 ], [ -83.352475005230502, 34.716086126234742 ], [ -83.351383900327619, 34.714472588091716 ], [ -83.351111124101891, 34.713262434484442 ], [ -83.351383900327619, 34.701765975215338 ], [ -83.338290641492875, 34.687849208731691 ], [ -83.33774508904142, 34.687647516463812 ], [ -83.291645906894075, 34.653359830924387 ], [ -83.240636752683713, 34.624517836617699 ], [ -83.240636752683713, 34.62431614434982 ], [ -83.167532724189698, 34.600516456740102 ], [ -83.171078815124105, 34.59870122632919 ], [ -83.170260486446935, 34.592448766024944 ], [ -83.106976402078985, 34.533958008340043 ], [ -83.087063737601142, 34.516007396498821 ], [ -83.072879373863501, 34.504309244961838 ], [ -83.052148380708473, 34.493014477960614 ], [ -83.034690702262139, 34.483534941370309 ], [ -83.006867527238313, 34.474458789315747 ], [ -82.995410925757909, 34.474458789315747 ], [ -82.992683163500658, 34.479097711476967 ], [ -82.992137611049216, 34.479097711476967 ], [ -82.979589904665914, 34.482728172298792 ], [ -82.938946247033059, 34.48615694085273 ], [ -82.902667009011765, 34.485955248584851 ], [ -82.882754344533936, 34.479097711476967 ], [ -82.873752729085041, 34.471433405297567 ], [ -82.874843833987939, 34.468811405815138 ], [ -82.848657316318437, 34.423834030078133 ], [ -82.7660061199241, 34.293540825028323 ], [ -82.755095070895138, 34.275993597722852 ], [ -82.74200181206038, 34.23020945291433 ], [ -82.743365693189006, 34.22738576116403 ], [ -82.744456798091903, 34.22496545394948 ], [ -82.74200181206038, 34.210040226126438 ], [ -82.741456259608938, 34.208628380251284 ], [ -82.731909091708602, 34.178374540069441 ], [ -82.717451951745232, 34.150541007102142 ], [ -82.704085916684761, 34.141061470511829 ], [ -82.677353846563818, 34.131581933921517 ], [ -82.66807945488921, 34.12008547465242 ], [ -82.659077839440315, 34.103546708686345 ], [ -82.658532286988873, 34.103143324150587 ], [ -82.653895091151554, 34.100319632400279 ], [ -82.652258433797215, 34.099714555596641 ], [ -82.641347384768267, 34.088823173131182 ], [ -82.640801832316811, 34.088419788595424 ], [ -82.59715763620099, 34.012381803605052 ], [ -82.564697265339845, 33.955907968598943 ], [ -82.564424489114117, 33.955706276331064 ], [ -82.429127481155064, 33.865751524857046 ], [ -82.422853627963406, 33.863734602178262 ], [ -82.408396488000037, 33.866356601660684 ], [ -82.403759292162732, 33.865549832589167 ], [ -82.324381410477073, 33.819967380048524 ], [ -82.301468207516265, 33.801815075939416 ], [ -82.247458514822938, 33.752602162576949 ], [ -82.2185442348962, 33.686245406444776 ], [ -82.196449360612547, 33.630578340510183 ], [ -82.179810010843397, 33.615854804955021 ], [ -82.135074709824679, 33.591046656005908 ], [ -82.129073632858749, 33.589836502398633 ], [ -82.124709213247172, 33.591248348273787 ], [ -82.116525926475447, 33.589634810130754 ], [ -82.098795471803385, 33.586407733844688 ], [ -82.069062863199491, 33.575314659111349 ], [ -82.046422436464411, 33.563818199842245 ], [ -82.028146429340893, 33.544859126661621 ], [ -82.01423484182898, 33.530337283374337 ], [ -82.007688212411608, 33.523278053998574 ], [ -82.007142659960152, 33.522874669462816 ], [ -81.967044554778738, 33.480720985476111 ], [ -81.958042939329857, 33.468619449403377 ], [ -81.912489309633969, 33.40871684584333 ], [ -81.902669365507904, 33.331267014977804 ], [ -81.85220576374897, 33.24756472380804 ], [ -81.851932987523242, 33.247363031540161 ], [ -81.772282329611869, 33.180199506336464 ], [ -81.696996091312059, 33.116464749686713 ], [ -81.620345971883637, 33.095488753827297 ], [ -81.615708776046347, 33.092463369809117 ], [ -81.541786418875148, 33.045670763661199 ], [ -81.511781034045526, 33.024493075533911 ], [ -81.496505565404988, 33.010172924514499 ], [ -81.491595593341955, 32.998474772977524 ], [ -81.494868908050648, 32.978910622993261 ], [ -81.499778880113666, 32.96378370290234 ], [ -81.423674313136701, 32.81049757931433 ], [ -81.404852753561755, 32.746964514932458 ], [ -81.405125529787483, 32.744947592253666 ], [ -81.41467269768782, 32.637445613474185 ], [ -81.418491564847955, 32.634621921723877 ], [ -81.418764341073683, 32.629377922759026 ], [ -81.411944935430569, 32.61848654029356 ], [ -81.389304508695488, 32.595493621755359 ], [ -81.389304508695488, 32.59529192948748 ], [ -81.348115298611177, 32.569273626931093 ], [ -81.328748186584789, 32.561205936215934 ], [ -81.318382690007269, 32.55979409034078 ], [ -81.286740647823294, 32.544868862517738 ], [ -81.27528404634289, 32.539423171285009 ], [ -81.198906703140196, 32.467217339384341 ], [ -81.16808298963339, 32.368388128123648 ], [ -81.140805367061006, 32.34942905494303 ], [ -81.13425873764362, 32.341764748763623 ], [ -81.122256583711774, 32.305460140545414 ], [ -81.120347150131707, 32.285895990561158 ], [ -81.127984884451976, 32.276214761702967 ], [ -81.125529898420467, 32.227203540608379 ], [ -81.12198380748606, 32.161855245815595 ], [ -81.117346611648742, 32.117684639150099 ], [ -81.113254968262879, 32.113247409256765 ], [ -81.061973037826789, 32.087834183504015 ], [ -81.042878702026115, 32.084607107217948 ], [ -81.004144477973313, 32.072303878877335 ], [ -80.885486819783409, 32.034587424783972 ], [ -80.859027525888195, 32.023696042318505 ], [ -80.852208120245109, 32.026721426336692 ], [ -80.8432065047962, 32.024301119122143 ], [ -80.840478742538977, 32.011392813977892 ], [ -80.841842623667588, 32.002720046459096 ], [ -80.848389253084974, 31.988198203171812 ], [ -80.862846393048329, 31.969440822259067 ], [ -80.882759057526187, 31.959154516597238 ], [ -80.897761749940997, 31.949069903203291 ], [ -80.911127785001469, 31.943825904238437 ], [ -80.929131015899245, 31.945036057845712 ], [ -80.930222120802142, 31.956734209382692 ], [ -80.948498127925632, 31.95713759391845 ], [ -80.972502435789352, 31.941203904756012 ], [ -80.97577575049803, 31.923656677450545 ], [ -80.968410792403489, 31.915790679003265 ], [ -80.954499204891562, 31.911756833645683 ], [ -80.941405946056818, 31.912966987252958 ], [ -80.934586540413719, 31.909134834163257 ], [ -80.947407023022748, 31.896226529019003 ], [ -80.97141133088644, 31.877872532642019 ], [ -80.992687876492909, 31.857703305854123 ], [ -81.000325610813178, 31.856694844514728 ], [ -81.014509974550833, 31.867384534712315 ], [ -81.041514820897504, 31.876258994498986 ], [ -81.065246352535468, 31.877065763570503 ], [ -81.05869972311811, 31.857904998122002 ], [ -81.058972499343824, 31.850038999674723 ], [ -81.062791366503959, 31.844795000709869 ], [ -81.076157401564444, 31.836122233191073 ], [ -81.075884625338716, 31.82906300381531 ], [ -81.057063065763757, 31.822608851243182 ], [ -81.051061988797841, 31.822407158975302 ], [ -81.048061450314862, 31.824827466189852 ], [ -81.03987816354315, 31.82301223577894 ], [ -81.036877625060185, 31.819583467225002 ], [ -81.036877625060185, 31.812725930117114 ], [ -81.047243121637706, 31.802843008991047 ], [ -81.068246891018447, 31.768757015719501 ], [ -81.0769757302416, 31.76129440180798 ], [ -81.097433947170899, 31.753226711092822 ], [ -81.130712646709213, 31.7227711786431 ], [ -81.138350381029483, 31.720955948232188 ], [ -81.154716954572919, 31.726199947197038 ], [ -81.160718031538849, 31.72821686987583 ], [ -81.19290562617428, 31.733259176572805 ], [ -81.198361150688754, 31.725998254929159 ], [ -81.2035438989775, 31.719544102357034 ], [ -81.186358996756894, 31.701593490515808 ], [ -81.160990807764563, 31.691307184853983 ], [ -81.154716954572919, 31.693929184336405 ], [ -81.151989192315682, 31.698366414229746 ], [ -81.149261430058445, 31.699374875569141 ], [ -81.13944148593238, 31.699979952372775 ], [ -81.131258199160669, 31.695744414747317 ], [ -81.135622618772246, 31.683441186406704 ], [ -81.136440947449415, 31.674768418887908 ], [ -81.131803751612111, 31.654397499832129 ], [ -81.133440408966464, 31.62333689057877 ], [ -81.150079758735615, 31.593486434932686 ], [ -81.160445255313121, 31.570493516394485 ], [ -81.172992961696423, 31.555971673107198 ], [ -81.178721262436625, 31.55556828857144 ], [ -81.183358458273929, 31.560005518464777 ], [ -81.186086220531166, 31.568073209179936 ], [ -81.194269507302891, 31.568073209179936 ], [ -81.204362227654684, 31.568274901447815 ], [ -81.214454948006448, 31.557585211250228 ], [ -81.240641465675964, 31.552341212285377 ], [ -81.254280276962149, 31.555971673107198 ], [ -81.260008577702351, 31.548307366927798 ], [ -81.263827444862486, 31.532575370033239 ], [ -81.263554668636772, 31.53096183189021 ], [ -81.258917472799453, 31.529146601479297 ], [ -81.218001038940869, 31.527331371068385 ], [ -81.213636619329293, 31.528138140139902 ], [ -81.199452255591638, 31.537617676730214 ], [ -81.19290562617428, 31.535802446319302 ], [ -81.18172180091959, 31.527734755604143 ], [ -81.178175709985169, 31.522490756639293 ], [ -81.177357381308013, 31.51704506540656 ], [ -81.189632311465573, 31.503531683458668 ], [ -81.204907780106112, 31.473076151008947 ], [ -81.246915318867607, 31.422854776307084 ], [ -81.258644696573725, 31.4045007799301 ], [ -81.278830137277311, 31.367187710372491 ], [ -81.279375689728752, 31.351052328942174 ], [ -81.282921780663159, 31.32644587226094 ], [ -81.27446571766572, 31.326244179993061 ], [ -81.267919088248348, 31.324227257314273 ], [ -81.254825829413591, 31.315352797527598 ], [ -81.260826906379521, 31.303856338258498 ], [ -81.269828521828416, 31.294578493936065 ], [ -81.274738493891448, 31.289536187239094 ], [ -81.276920703697243, 31.254643424896031 ], [ -81.282921780663159, 31.244357119234206 ], [ -81.289195633854803, 31.225398046053584 ], [ -81.288377305177647, 31.211077895034176 ], [ -81.293287277240665, 31.20623728060508 ], [ -81.305016654946797, 31.20623728060508 ], [ -81.314291046621406, 31.207850818748113 ], [ -81.339113683162282, 31.186874822888701 ], [ -81.354934704254276, 31.167108980636563 ], [ -81.360663004994478, 31.155814213635342 ], [ -81.359299123865867, 31.149158368795334 ], [ -81.368300739314748, 31.136451755918962 ], [ -81.386849522663965, 31.133224679632896 ], [ -81.399670005272995, 31.134031448704413 ], [ -81.402124991304504, 31.125358681185617 ], [ -81.403761648658858, 31.107206377076512 ], [ -81.401306662627348, 31.086230381217099 ], [ -81.401306662627348, 31.072716999269211 ], [ -81.415218250139262, 31.026731162192807 ], [ -81.420400998428022, 31.01664654879886 ], [ -81.424765418039598, 31.013621164780673 ], [ -81.432403152359868, 31.013016087977036 ], [ -81.434585362165649, 31.014629626120069 ], [ -81.434858138391377, 31.017856702406135 ], [ -81.443041425163102, 31.01664654879886 ], [ -81.451497488160541, 31.015436395191585 ], [ -81.457771341352185, 31.010192396226731 ], [ -81.459135222480811, 31.005755166333394 ], [ -81.469227942832589, 30.996073937475206 ], [ -81.490504488439058, 30.984980862741864 ], [ -81.493777803147751, 30.977518248830343 ], [ -81.486958397504651, 30.969652250383064 ], [ -81.475774572249975, 30.966021789561239 ], [ -81.472228481315568, 30.969853942650943 ], [ -81.46677295680108, 30.970862403990335 ], [ -81.453679697966336, 30.965618405025481 ], [ -81.447405844774693, 30.956743945238806 ], [ -81.426947627845379, 30.956542252970927 ], [ -81.420128222202294, 30.974089480276398 ], [ -81.415763802590703, 30.977114864294585 ], [ -81.408398844496162, 30.977719941098222 ], [ -81.40348887243313, 30.957954098846081 ], [ -81.405125529787483, 30.908136108679976 ], [ -81.428584285199733, 30.836333661315066 ], [ -81.430766495005514, 30.831089662350216 ], [ -81.440040886680137, 30.821408433492024 ], [ -81.446860292323237, 30.810315358758682 ], [ -81.455316355320676, 30.790952901042303 ], [ -81.45995355115798, 30.76997690518289 ], [ -81.461044656060878, 30.753639831484694 ], [ -81.459407998706538, 30.741941679947715 ], [ -81.44931527835476, 30.715519992855569 ], [ -81.444132530065986, 30.709670917087081 ], [ -81.544514181132399, 30.712696301105268 ], [ -81.60616160814601, 30.718141992337998 ], [ -81.624164839043772, 30.736294296447106 ], [ -81.637258097878529, 30.733873989232556 ], [ -81.719909294272867, 30.744563679430144 ], [ -81.732729776881897, 30.750009370662873 ], [ -81.741185839879336, 30.762715983539248 ], [ -81.759461847002854, 30.771388751058044 ], [ -81.806652134053081, 30.789742747435028 ], [ -81.827110350982366, 30.788935978363511 ], [ -81.840476386042837, 30.786313978881086 ], [ -81.868572337292406, 30.792768131453215 ], [ -81.905942680216583, 30.822215202563541 ], [ -81.999777701865611, 30.788330901559874 ], [ -82.023236457277875, 30.782078441255628 ], [ -82.050514079850259, 30.676190000619172 ], [ -82.049422974947362, 30.655214004759763 ], [ -82.03769359724123, 30.633229547560958 ], [ -82.01341651315181, 30.595714785735467 ], [ -82.005506002605813, 30.563444022874833 ], [ -82.016962604086217, 30.519273416209344 ], [ -82.016144275409047, 30.497288959010536 ], [ -82.049968527398818, 30.362558524067392 ], [ -82.049968527398818, 30.362356831799513 ], [ -82.124709213247172, 30.366592369424971 ], [ -82.165080094654314, 30.358121294174055 ], [ -82.171626724071672, 30.359936524584967 ], [ -82.189629954969462, 30.376273598283163 ], [ -82.204087094932817, 30.401283439500151 ], [ -82.210360948124475, 30.424679742574114 ], [ -82.205996528512884, 30.455538659559593 ], [ -82.212270381704542, 30.499507573957203 ], [ -82.214452591510337, 30.566872791428779 ], [ -82.214725367736065, 30.567074483696658 ], [ -82.249913500854447, 30.570906636786358 ], [ -82.258096787626158, 30.571511713589992 ], [ -82.287283843778624, 30.573528636268783 ], [ -82.374845012235994, 30.578974327501516 ], [ -82.419034760803271, 30.581798019251821 ], [ -82.459678418436141, 30.58421832646637 ], [ -82.459678418436141, 30.58421832646637 ], [ -82.524871936384159, 30.588252171823946 ], [ -82.536328537864563, 30.588857248627583 ], [ -82.545057377087716, 30.589260633163342 ], [ -82.553240663859441, 30.589865709966979 ], [ -82.565515594017015, 30.590672479038496 ], [ -82.569334461177149, 30.590874171306375 ], [ -82.584064377366246, 30.59188263264577 ], [ -82.689356000495678, 30.597731708414258 ], [ -82.689628776721406, 30.597731708414258 ], [ -82.698630392170287, 30.598135092950017 ], [ -82.698903168396015, 30.598336785217896 ], [ -82.877298820019448, 30.609026475415483 ], [ -82.878662701148073, 30.609026475415483 ], [ -83.136709010682893, 30.624355087774283 ], [ -83.156076122709294, 30.625565241381555 ], [ -83.163441080803835, 30.625968625917313 ], [ -83.174352129832798, 30.626372010453071 ], [ -83.187445388667541, 30.627178779524588 ], [ -83.25618499754998, 30.631212624882167 ], [ -83.309376361566137, 30.63443970116823 ], [ -83.309376361566137, 30.63443970116823 ], [ -83.309376361566137, 30.63443970116823 ], [ -83.311558571371933, 30.634641393436109 ], [ -83.340745627524385, 30.636254931579138 ], [ -83.341018403750098, 30.636254931579138 ], [ -83.357657753519277, 30.637263392918534 ], [ -83.379479851577173, 30.638675238793688 ], [ -83.390118124380422, 30.639280315597325 ], [ -83.429397900884652, 30.641498930543992 ], [ -83.42967067711038, 30.641498930543992 ], [ -83.440036173687886, 30.64210400734763 ], [ -83.448765012911053, 30.642507391883388 ], [ -83.611612419668234, 30.651180159402184 ], [ -83.611612419668234, 30.651180159402184 ], [ -83.674078175359, 30.654810620224005 ], [ -83.676805937616251, 30.654810620224005 ], [ -83.743636112918608, 30.658441081045826 ], [ -83.810466288220965, 30.661869849599768 ], [ -83.820831784798486, 30.662676618671284 ], [ -83.855201589239698, 30.664491849082196 ], [ -83.880297002006287, 30.665903694957347 ], [ -83.880297002006287, 30.665903694957347 ], [ -84.00741072319363, 30.672156155261597 ], [ -84.00741072319363, 30.672156155261597 ], [ -84.039598317829046, 30.673769693404626 ], [ -84.041780527634842, 30.673971385672505 ], [ -84.046690499697888, 30.674173077940385 ], [ -84.057328772501108, 30.674778154744022 ], [ -84.083788066396323, 30.675988308351293 ], [ -84.281278053820444, 30.685266152673726 ], [ -84.282641934949055, 30.685266152673726 ], [ -84.380841376209673, 30.689703382567064 ], [ -84.534959943743686, 30.696560919674951 ], [ -84.539324363355263, 30.69676261194283 ], [ -84.60615453865762, 30.69978799596101 ], [ -84.606427314883348, 30.69978799596101 ], [ -84.863382519515284, 30.711486147497993 ], [ -84.864746400643895, 30.711486147497993 ], [ -84.896115666602157, 30.750614447466511 ], [ -84.941942072523773, 30.887966881892083 ], [ -84.959672527195835, 30.910556415894526 ], [ -84.983404058833798, 30.935566257111518 ], [ -84.998679527474337, 30.971467480793972 ], [ -85.002498394634472, 31.000712859636423 ], [ -84.999497856151521, 31.013822857048552 ], [ -85.022138282886601, 31.075540691019516 ], [ -85.029776017206871, 31.09611330234317 ], [ -85.035504317947073, 31.108214838415908 ], [ -85.076693528031385, 31.157024367242613 ], [ -85.083512933674484, 31.159646366725042 ], [ -85.092241772897651, 31.160251443528679 ], [ -85.100152283443634, 31.16549544249353 ], [ -85.10751724153819, 31.186471438352946 ], [ -85.111881661149766, 31.258475577985735 ], [ -85.10151616457226, 31.283283726934844 ], [ -85.087604577060347, 31.308696952687594 ], [ -85.067964688808217, 31.4274936984683 ], [ -85.046960919427477, 31.517448449942314 ], [ -85.041232618687275, 31.541046445284156 ], [ -85.057599192230711, 31.618697968417557 ], [ -85.059508625810778, 31.621723352435737 ], [ -85.06523692655098, 31.624345351918166 ], [ -85.087059024608891, 31.640884117884241 ], [ -85.125520472435966, 31.6949376456758 ], [ -85.126611577338863, 31.71672041060673 ], [ -85.122247157727287, 31.7227711786431 ], [ -85.118973843018594, 31.732654099769167 ], [ -85.124429367533068, 31.763109632218892 ], [ -85.125247696210238, 31.767143477576468 ], [ -85.130703220724712, 31.772185784273443 ], [ -85.138613731270709, 31.780455167256481 ], [ -85.14134149352796, 31.783077166738906 ], [ -85.141887045979402, 31.839954386280773 ], [ -85.132885430530507, 31.888360530571724 ], [ -85.10669891286102, 31.915185602199628 ], [ -85.082149052545873, 31.944632673309954 ], [ -85.072329108419808, 31.96480190009785 ], [ -85.062236388068015, 31.99182866399363 ], [ -85.050234234136155, 32.024099426854264 ], [ -85.055962534876357, 32.063026034554902 ], [ -85.047779248104646, 32.14208940356346 ], [ -84.995951765217114, 32.184848164353795 ], [ -84.964855275484581, 32.194932777747745 ], [ -84.923666065400269, 32.231439078233834 ], [ -84.921756631820202, 32.233254308644746 ], [ -84.908936149211172, 32.263508148826588 ], [ -84.916573883531441, 32.281257068399938 ], [ -84.93866875781508, 32.300619526116321 ], [ -85.00195284218303, 32.321998906511489 ], [ -85.00713559047179, 32.328453059083614 ], [ -85.008226695374674, 32.336722442066652 ], [ -84.987495702219661, 32.381296433267906 ], [ -84.987222925993933, 32.381699817803664 ], [ -84.97931241544795, 32.412155350253386 ], [ -84.983949611285254, 32.445636266721294 ], [ -84.998133975022895, 32.469839338866763 ], [ -85.000861737280133, 32.506547331620737 ], [ -85.00113451350586, 32.510177792442562 ], [ -85.00113451350586, 32.510379484710441 ], [ -85.001407289731588, 32.513001484192863 ], [ -85.00713559047179, 32.523892866658329 ], [ -85.022411059112329, 32.542851939838954 ], [ -85.044505933395953, 32.559592398072908 ], [ -85.069601346162557, 32.583997162486256 ], [ -85.079966842740077, 32.602956235666881 ], [ -85.080239618965805, 32.603561312470518 ], [ -85.082421828771587, 32.606990081024463 ], [ -85.104789479280953, 32.642487920171156 ], [ -85.114609423407018, 32.685650065497256 ], [ -85.137249850142098, 32.745149284521545 ], [ -85.136704297690642, 32.746561130396699 ], [ -85.132067101853337, 32.764310049970049 ], [ -85.12333826263017, 32.772176048417329 ], [ -85.184167360966597, 32.870601875142256 ], [ -85.221810480116517, 33.05555368478727 ], [ -85.223174361245128, 33.062612914163033 ], [ -85.232448752919737, 33.107993674435797 ], [ -85.2365403963056, 33.129574747098843 ], [ -85.29382340370762, 33.428079303559706 ], [ -85.304461676510854, 33.482939600422782 ], [ -85.314008844411191, 33.529732206570699 ], [ -85.314008844411191, 33.530135591106458 ], [ -85.315099949314089, 33.535984666874953 ], [ -85.32246490740863, 33.574104505504074 ], [ -85.338013152274897, 33.653167874512626 ], [ -85.360380802784249, 33.767930774935756 ], [ -85.361744683912875, 33.773981542972123 ], [ -85.38656732045375, 33.901652748539505 ], [ -85.398842250611324, 33.964177351581981 ], [ -85.421755453572132, 34.080755482416023 ], [ -85.455034153110461, 34.250782064237981 ], [ -85.455306929336189, 34.252798986916773 ], [ -85.458034691593411, 34.265707292061023 ], [ -85.458580244044867, 34.269337752882848 ], [ -85.462399111205002, 34.286279903384681 ], [ -85.502224440160688, 34.473853712512117 ], [ -85.502497216386416, 34.474458789315747 ], [ -85.508498293352346, 34.501283860943651 ], [ -85.512044384286753, 34.518226011445485 ], [ -85.513681041641092, 34.524075087213973 ], [ -85.513681041641092, 34.524075087213973 ], [ -85.51395381786682, 34.525285240821248 ], [ -85.527047076701564, 34.58861661293524 ], [ -85.534412034796105, 34.623711067546182 ], [ -85.541231440439219, 34.656788599478332 ], [ -85.541231440439219, 34.656788599478332 ], [ -85.552415265693895, 34.70822012778747 ], [ -85.552415265693895, 34.708421820055349 ], [ -85.583238979200701, 34.860296097768199 ], [ -85.595241133132546, 34.924232546685829 ], [ -85.595241133132546, 34.924232546685829 ], [ -85.605061077258611, 34.984740227049521 ], [ -85.474401265136862, 34.983933457978004 ], [ -85.36392689371867, 34.983328381174367 ], [ -85.308280543670989, 34.984336842513763 ], [ -85.305552781413752, 34.984538534781642 ], [ -85.301461138027889, 34.984538534781642 ], [ -85.294368956159076, 34.984740227049521 ], [ -85.277456830164184, 34.9849419193174 ], [ -85.275820172809844, 34.9849419193174 ], [ -85.26518190000661, 34.985143611585279 ], [ -85.255089179654817, 34.985143611585279 ], [ -85.235449291402702, 34.985546996121037 ], [ -85.230266543113942, 34.985546996121037 ], [ -85.221810480116517, 34.985546996121037 ], [ -85.220446598987891, 34.985546996121037 ], [ -85.217718836730654, 34.985748688388917 ], [ -85.216627731827757, 34.985748688388917 ], [ -85.185804018320951, 34.985950380656796 ], [ -85.180621270032191, 34.986152072924675 ], [ -85.045051485847409, 34.986958841996191 ], [ -85.045051485847409, 34.986958841996191 ], [ -84.979857967899392, 34.987563918799822 ], [ -84.976857429416441, 34.987765611067701 ], [ -84.955580883809972, 34.987765611067701 ], [ -84.944397058555282, 34.987765611067701 ], [ -84.939214310266522, 34.98796730333558 ], [ -84.861200309709488, 34.987765611067701 ], [ -84.85792699500081, 34.987765611067701 ], [ -84.831740477331309, 34.98796730333558 ], [ -84.824102743011039, 34.987765611067701 ], [ -84.820556652076618, 34.98796730333558 ], [ -84.81728333736794, 34.987765611067701 ], [ -84.810736707950568, 34.987563918799822 ], [ -84.81046393172484, 34.987563918799822 ], [ -84.809100050596214, 34.987563918799822 ], [ -84.808008945693331, 34.987563918799822 ], [ -84.775821351057914, 34.987765611067701 ], [ -84.731086050039181, 34.988168995603459 ], [ -84.727539959104774, 34.98796730333558 ], [ -84.621430007298159, 34.988370687871338 ], [ -84.509864530977097, 34.98796730333558 ], [ -84.509046202299913, 34.98796730333558 ], [ -84.395025739947329, 34.98796730333558 ], [ -84.393934635044417, 34.98796730333558 ], [ -84.321921711453314, 34.988370687871338 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "7", "geo_id": "0400000US17", "fips_state": "17", "name": "Illinois", "iso_3166_2": "IL", "census": 12830632, "pop_estimataes_base": 12831587, "pop_2010": 12840097, "pop_2011": 12858725, "pop_2012": 12873763, "pop_2013": 12890552, "pop_2014": 12880580 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.800364141884685, 42.49192812977229 ], [ -87.800364141884685, 42.490516283897144 ], [ -87.79900026075606, 42.479221516895919 ], [ -87.798181932078904, 42.472969056591673 ], [ -87.798181932078904, 42.471758902984398 ], [ -87.800636918110399, 42.445942292695889 ], [ -87.80336468036765, 42.420529066943146 ], [ -87.803637456593378, 42.417705375192838 ], [ -87.803637456593378, 42.413873222103135 ], [ -87.805274113947718, 42.384627843260688 ], [ -87.806092442624887, 42.383417689653413 ], [ -87.815639610525224, 42.36647553915158 ], [ -87.816457939202394, 42.364660308740667 ], [ -87.820822358813984, 42.361634924722487 ], [ -87.820822358813984, 42.361634924722487 ], [ -87.826823435779914, 42.343482620613379 ], [ -87.830642302940049, 42.331381084540638 ], [ -87.830915079165763, 42.330372623201249 ], [ -87.831187855391491, 42.328557392790337 ], [ -87.834733946325898, 42.301530628894554 ], [ -87.833370065197272, 42.294874784054549 ], [ -87.83282451274583, 42.291244323232732 ], [ -87.832551736520116, 42.290034169625457 ], [ -87.831187855391491, 42.283781709321204 ], [ -87.828460093134254, 42.269864942837557 ], [ -87.827914540682798, 42.268654789230283 ], [ -87.82764176445707, 42.267848020158766 ], [ -87.826823435779914, 42.266032789747861 ], [ -87.825186778425561, 42.262402328926044 ], [ -87.812366295816531, 42.232350181012073 ], [ -87.812366295816531, 42.232148488744194 ], [ -87.812366295816531, 42.231946796476315 ], [ -87.812366295816531, 42.231745104208436 ], [ -87.808274652430669, 42.224282490296915 ], [ -87.803910232819106, 42.21540803051024 ], [ -87.800091365658972, 42.207945416598719 ], [ -87.798454708304618, 42.205928493919927 ], [ -87.798181932078904, 42.205525109384169 ], [ -87.79736360340172, 42.204516648044773 ], [ -87.79736360340172, 42.204516648044773 ], [ -87.796818050950264, 42.203709878973257 ], [ -87.796818050950264, 42.203508186705378 ], [ -87.78836198795284, 42.192011727436281 ], [ -87.787270883049928, 42.190599881561127 ], [ -87.775268729118082, 42.174262807862931 ], [ -87.759447708026102, 42.152278350664126 ], [ -87.756447169543137, 42.14844619757443 ], [ -87.755901617091695, 42.147639428502913 ], [ -87.754810512188783, 42.146227582627759 ], [ -87.754537735963069, 42.145622505824122 ], [ -87.754264959737341, 42.145622505824122 ], [ -87.750446092577207, 42.140176814591385 ], [ -87.748536658997139, 42.137554815108963 ], [ -87.746354449191358, 42.134731123358655 ], [ -87.741717253354039, 42.12827697078653 ], [ -87.741444477128312, 42.127873586250772 ], [ -87.74089892467687, 42.127268509447134 ], [ -87.740626148451156, 42.127066817179255 ], [ -87.739807819773972, 42.12585666357198 ], [ -87.739535043548244, 42.125654971304101 ], [ -87.733806742808042, 42.118999126464097 ], [ -87.730533428099363, 42.114763588838642 ], [ -87.729442323196466, 42.113351742963488 ], [ -87.729442323196466, 42.113351742963488 ], [ -87.728351218293568, 42.112141589356213 ], [ -87.72807844206784, 42.111939897088334 ], [ -87.727260113390685, 42.110931435748938 ], [ -87.726987337164957, 42.11052805121318 ], [ -87.725077903584889, 42.108309436266509 ], [ -87.724532351133433, 42.107704359462872 ], [ -87.724532351133433, 42.107704359462872 ], [ -87.723714022456264, 42.106897590391355 ], [ -87.722350141327638, 42.105687436784088 ], [ -87.722350141327638, 42.105485744516209 ], [ -87.721531812650483, 42.104880667712571 ], [ -87.720440707747571, 42.103872206373175 ], [ -87.720167931521857, 42.103872206373175 ], [ -87.717985721716062, 42.101855283694391 ], [ -87.71744016926462, 42.101250206890754 ], [ -87.717167393038892, 42.101048514622875 ], [ -87.717167393038892, 42.100846822354995 ], [ -87.71225742097586, 42.096409592461654 ], [ -87.710893539847234, 42.095401131122259 ], [ -87.706529120235658, 42.092174054836192 ], [ -87.70461968665559, 42.090963901228918 ], [ -87.703801357978421, 42.090560516693159 ], [ -87.702437476849809, 42.089350363085892 ], [ -87.682252036146224, 42.075635288870117 ], [ -87.682252036146224, 42.075433596602238 ], [ -87.680615378791884, 42.073214981655575 ], [ -87.679797050114715, 42.071803135780421 ], [ -87.671340987117276, 42.058289753832533 ], [ -87.670522658440092, 42.053045754867682 ], [ -87.67079543466582, 42.052238985796166 ], [ -87.671068210891548, 42.050827139921012 ], [ -87.671068210891548, 42.050625447653132 ], [ -87.671886539568717, 42.048003448170704 ], [ -87.671068210891548, 42.042759449205846 ], [ -87.668886001085752, 42.029044374990079 ], [ -87.630970105710134, 41.933038855479694 ], [ -87.630970105710134, 41.932837163211815 ], [ -87.627151238549999, 41.916701781781498 ], [ -87.624696252518476, 41.907222245191193 ], [ -87.624150700067034, 41.904600245708764 ], [ -87.624150700067034, 41.904196861173006 ], [ -87.623059595164136, 41.901978246226335 ], [ -87.619786280455457, 41.901373169422698 ], [ -87.617331294423934, 41.897944400868759 ], [ -87.614057979715255, 41.893507170975425 ], [ -87.612421322360916, 41.893305478707546 ], [ -87.611602993683732, 41.892297017368151 ], [ -87.611602993683732, 41.890683479225117 ], [ -87.61269409858663, 41.889271633349964 ], [ -87.614057979715255, 41.888464864278447 ], [ -87.6135124272638, 41.884431018920864 ], [ -87.613785203489527, 41.884431018920864 ], [ -87.615694637069595, 41.88301917304571 ], [ -87.616512965746765, 41.882414096242073 ], [ -87.616240189521051, 41.868900714294185 ], [ -87.609420783877937, 41.845302718952354 ], [ -87.600419168429056, 41.826747030307487 ], [ -87.587053133368585, 41.811418417948687 ], [ -87.587053133368585, 41.811418417948687 ], [ -87.581052056402655, 41.804359188572917 ], [ -87.581052056402655, 41.804157496305038 ], [ -87.580506503951199, 41.802745650429884 ], [ -87.57641486056535, 41.78600519219593 ], [ -87.56059383947337, 41.766037657675916 ], [ -87.542863384801308, 41.75212089119227 ], [ -87.530861230869448, 41.748288738102573 ], [ -87.524041825226362, 41.724085665957091 ], [ -87.524041825226362, 41.708353669062532 ], [ -87.524860153903532, 41.702706285561923 ], [ -87.524860153903532, 41.691613210828578 ], [ -87.524587377677804, 41.634937683554597 ], [ -87.524860153903532, 41.632517376340047 ], [ -87.524587377677804, 41.622634455213976 ], [ -87.524587377677804, 41.563336928457559 ], [ -87.525678482580702, 41.470356792965362 ], [ -87.525678482580702, 41.470155100697482 ], [ -87.525678482580702, 41.453616334731407 ], [ -87.526769587483599, 41.298111596196733 ], [ -87.526769587483599, 41.298111596196733 ], [ -87.526496811257871, 41.166003160736011 ], [ -87.526496811257871, 41.163784545789341 ], [ -87.526769587483599, 41.160154084967523 ], [ -87.526769587483599, 41.159347315896007 ], [ -87.526769587483599, 41.153901624663277 ], [ -87.526769587483599, 41.149262702502057 ], [ -87.526769587483599, 41.139581473643872 ], [ -87.526769587483599, 41.121429169534764 ], [ -87.526496811257871, 41.024818573220742 ], [ -87.526224035032158, 41.010498422201337 ], [ -87.526224035032158, 41.010296729933458 ], [ -87.526224035032158, 41.010296729933458 ], [ -87.52595125880643, 40.911870903208523 ], [ -87.526496811257871, 40.894121983635173 ], [ -87.52595125880643, 40.880608601687285 ], [ -87.526224035032158, 40.879801832615769 ], [ -87.525678482580702, 40.854388606863019 ], [ -87.526224035032158, 40.737003706957466 ], [ -87.526224035032158, 40.736802014689587 ], [ -87.526224035032158, 40.535311439078498 ], [ -87.526224035032158, 40.535109746810619 ], [ -87.526496811257871, 40.491544216948768 ], [ -87.526496811257871, 40.491140832413009 ], [ -87.526496811257871, 40.477224065929363 ], [ -87.526496811257871, 40.476820681393605 ], [ -87.526496811257871, 40.47561052778633 ], [ -87.526769587483599, 40.462097145838442 ], [ -87.530042902192292, 40.250723649101289 ], [ -87.530042902192292, 40.250118572297652 ], [ -87.530861230869448, 40.191829506880637 ], [ -87.531134007095176, 40.170046741949704 ], [ -87.531406783320904, 40.1480622847509 ], [ -87.531406783320904, 40.1480622847509 ], [ -87.531679559546632, 40.144230131661203 ], [ -87.531679559546632, 40.132935364659978 ], [ -87.532225111998073, 40.011516619396843 ], [ -87.532225111998073, 40.011516619396843 ], [ -87.532225111998073, 40.000020160127747 ], [ -87.532225111998073, 39.997801545181076 ], [ -87.532497888223801, 39.987515239519247 ], [ -87.532770664449515, 39.977632318393177 ], [ -87.532770664449515, 39.975010318910748 ], [ -87.532770664449515, 39.970976473553172 ], [ -87.533316216900971, 39.883038644757946 ], [ -87.533316216900971, 39.883038644757946 ], [ -87.533043440675243, 39.811034505125157 ], [ -87.533043440675243, 39.803975275749394 ], [ -87.533043440675243, 39.796310969569994 ], [ -87.533043440675243, 39.781789126282703 ], [ -87.532770664449515, 39.664807610912916 ], [ -87.532497888223801, 39.646050230000171 ], [ -87.532497888223801, 39.646050230000171 ], [ -87.532225111998073, 39.607325314567404 ], [ -87.53195233577236, 39.563961476973432 ], [ -87.53195233577236, 39.545809172864324 ], [ -87.53195233577236, 39.526850099683699 ], [ -87.531679559546632, 39.495587798162461 ], [ -87.531679559546632, 39.491755645072764 ], [ -87.531679559546632, 39.477032109517594 ], [ -87.531679559546632, 39.477032109517594 ], [ -87.531679559546632, 39.469367803338201 ], [ -87.531679559546632, 39.466140727052135 ], [ -87.531406783320904, 39.449400268818181 ], [ -87.531406783320904, 39.437702117281205 ], [ -87.531406783320904, 39.436693655941809 ], [ -87.531679559546632, 39.347949058075066 ], [ -87.537135084061106, 39.352184595700521 ], [ -87.543954489704205, 39.352991364772038 ], [ -87.584870923562789, 39.337259367877479 ], [ -87.588962566948652, 39.333830599323534 ], [ -87.603965259363463, 39.313459680267762 ], [ -87.609966336329393, 39.282197378746524 ], [ -87.605601916717802, 39.261221382887115 ], [ -87.603965259363463, 39.259406152476203 ], [ -87.593599762785956, 39.247506308671348 ], [ -87.587598685820041, 39.249321539082253 ], [ -87.60505636426636, 39.18599016696826 ], [ -87.628787895904338, 39.157349864929444 ], [ -87.64215393096481, 39.157148172661564 ], [ -87.651701098865146, 39.150694020089446 ], [ -87.658793280733974, 39.135970484534276 ], [ -87.614876308392425, 39.102691260334254 ], [ -87.572595993405216, 39.057310500061483 ], [ -87.51231244752023, 38.954447443443215 ], [ -87.518859076937602, 38.923185141921977 ], [ -87.527860692386497, 38.908259914098934 ], [ -87.528133468612225, 38.908058221831055 ], [ -87.540681174995512, 38.896360070294072 ], [ -87.553501657604542, 38.863282538361922 ], [ -87.550501119121577, 38.859652077540105 ], [ -87.537135084061106, 38.85360130950373 ], [ -87.53195233577236, 38.852592848164335 ], [ -87.528133468612225, 38.851786079092818 ], [ -87.52595125880643, 38.848760695074638 ], [ -87.495127545299624, 38.783009015746096 ], [ -87.498400860008303, 38.7590076358685 ], [ -87.519677405614772, 38.69728980189754 ], [ -87.531134007095176, 38.683978112217531 ], [ -87.540135622544071, 38.679137497788432 ], [ -87.579415399048315, 38.672481652948427 ], [ -87.593599762785956, 38.667439346251456 ], [ -87.600146392203328, 38.662397039554477 ], [ -87.620059056681185, 38.639404121016277 ], [ -87.627424014775727, 38.607335050423522 ], [ -87.651428322639418, 38.568206750455005 ], [ -87.66997710598865, 38.545213831916804 ], [ -87.66915877731148, 38.541785063362866 ], [ -87.656065518476737, 38.521615836574966 ], [ -87.7400805959997, 38.415727395938511 ], [ -87.749900540125765, 38.403020783062132 ], [ -87.863102673801194, 38.28019019192385 ], [ -87.923931772137621, 38.258407426992918 ], [ -87.951754947161461, 38.239650046080179 ], [ -87.955301038095868, 38.229968817221987 ], [ -87.96102933883607, 38.214640204863187 ], [ -87.959119905256003, 38.203748822397728 ], [ -87.95120939471002, 38.19305913220014 ], [ -87.940571121906771, 38.181360980663158 ], [ -87.928841744200639, 38.176722058501944 ], [ -87.915748485365896, 38.173293289948006 ], [ -87.910838513302878, 38.16764590644739 ], [ -87.911111289528591, 38.162200215214654 ], [ -87.927750639297756, 38.141627603891003 ], [ -87.942207779261125, 38.131744682764932 ], [ -87.974395373896542, 38.122063453906748 ], [ -88.01312959794933, 38.103507765261881 ], [ -88.042043877876068, 38.046428853452134 ], [ -88.041498325424627, 38.03735270139758 ], [ -88.012584045497888, 37.977046713301775 ], [ -88.013402374175058, 37.89394949893564 ], [ -88.016948465109465, 37.88931057677442 ], [ -88.021040108495328, 37.888100423167153 ], [ -88.05540991293654, 37.891327499453212 ], [ -88.071503710254262, 37.895764729346553 ], [ -88.04940883597061, 37.845139970108931 ], [ -88.027859514138441, 37.828197819607098 ], [ -88.028132290364155, 37.79915413303253 ], [ -88.039043339393118, 37.775354445422813 ], [ -88.045044416359048, 37.762446140278556 ], [ -88.051045493324963, 37.752563219152492 ], [ -88.059501556322402, 37.742680298026421 ], [ -88.072594815157146, 37.733200761436109 ], [ -88.122512864464625, 37.709602766094271 ], [ -88.151699920617091, 37.675113388286974 ], [ -88.158246550034463, 37.664625390357259 ], [ -88.16015598361453, 37.657566160981503 ], [ -88.156882668905837, 37.632758012032383 ], [ -88.139970542910959, 37.586368790420224 ], [ -88.133423913493587, 37.57426725434749 ], [ -88.133423913493587, 37.57426725434749 ], [ -88.133423913493587, 37.57426725434749 ], [ -88.133151137267859, 37.57406556207961 ], [ -88.121421759561741, 37.568216486311115 ], [ -88.072322038931432, 37.528886494074726 ], [ -88.063320423482537, 37.515776496662596 ], [ -88.06141098990247, 37.505288498732881 ], [ -88.06141098990247, 37.505288498732881 ], [ -88.062502094805367, 37.489354809570443 ], [ -88.083505864186108, 37.473622812675885 ], [ -88.255082110166455, 37.456680662174051 ], [ -88.28154140406167, 37.452646816816475 ], [ -88.312637893794204, 37.440545280743734 ], [ -88.330641124691979, 37.429250513742517 ], [ -88.35846429971582, 37.404845749329162 ], [ -88.40892790147474, 37.425216668384934 ], [ -88.41492897844067, 37.423401437974029 ], [ -88.439206062530104, 37.416342208598266 ], [ -88.456118188524982, 37.40847621015098 ], [ -88.470302552262623, 37.396172981810366 ], [ -88.476576405454267, 37.38689513748794 ], [ -88.514765077055614, 37.290889617977555 ], [ -88.515856181958526, 37.284032080869665 ], [ -88.50930955254114, 37.26204762367086 ], [ -88.471666433391249, 37.220095631952034 ], [ -88.458845950782219, 37.21343978711203 ], [ -88.447662125527529, 37.203556865985959 ], [ -88.424476146341007, 37.15252872221258 ], [ -88.444661587044578, 37.098676886688907 ], [ -88.458845950782219, 37.073868737739787 ], [ -88.482850258645925, 37.067212892899782 ], [ -88.490215216740467, 37.066607816096152 ], [ -88.5144923008299, 37.065195970220998 ], [ -88.531677203050506, 37.067212892899782 ], [ -88.545316014336692, 37.07003658465009 ], [ -88.560045930525789, 37.076087352686457 ], [ -88.564137573911651, 37.078507659901007 ], [ -88.576685280294953, 37.085768581544649 ], [ -88.58923298667824, 37.099685348028295 ], [ -88.625785000925248, 37.119451190280429 ], [ -88.809090624611727, 37.189236714966555 ], [ -88.916837233772668, 37.224331169577496 ], [ -88.928021059027344, 37.226348092256288 ], [ -88.942205422764999, 37.22876839947083 ], [ -88.933476583541832, 37.224936246381134 ], [ -88.933476583541832, 37.224936246381134 ], [ -88.966755283080147, 37.229978553078105 ], [ -88.983394632849311, 37.22876839947083 ], [ -89.000852311295631, 37.224331169577496 ], [ -89.041223192702773, 37.202951789182322 ], [ -89.086504046172948, 37.165638719624717 ], [ -89.168064137664402, 37.074272122275545 ], [ -89.171883004824537, 37.068221354239178 ], [ -89.175701871984671, 37.061968893934932 ], [ -89.181430172724873, 37.046236897040373 ], [ -89.182521277627757, 37.037362437253698 ], [ -89.17897518669335, 37.021025363555502 ], [ -89.173519662178876, 37.01134413469731 ], [ -89.166427480310062, 37.003276443982152 ], [ -89.132603228320292, 36.982300448122743 ], [ -89.169973571244469, 36.970198912050009 ], [ -89.185521816110736, 36.973425988336068 ], [ -89.207071137942918, 36.982502140390622 ], [ -89.226165473743592, 36.98532583214093 ], [ -89.245532585769993, 36.983107217194259 ], [ -89.261080830636246, 36.982502140390622 ], [ -89.271173550988038, 36.98532583214093 ], [ -89.27853850908258, 36.988754600694868 ], [ -89.292177320368779, 36.992183369248806 ], [ -89.322728257649857, 37.00912551975064 ], [ -89.378374607697538, 37.039581052200361 ], [ -89.383830132212012, 37.046438589308252 ], [ -89.385466789566351, 37.055111356827041 ], [ -89.414381069493089, 37.125098573781045 ], [ -89.467572433509261, 37.218280401541122 ], [ -89.491303965147239, 37.248534241722965 ], [ -89.516944930365298, 37.282015158190873 ], [ -89.51830881149391, 37.289276079834522 ], [ -89.511762182076524, 37.310857152497569 ], [ -89.489121755341444, 37.333446686500011 ], [ -89.484484559504139, 37.334858532375165 ], [ -89.474664615378089, 37.338085608661231 ], [ -89.447659769031418, 37.340505915875774 ], [ -89.435930391325286, 37.344539761233349 ], [ -89.432929852842321, 37.346960068447899 ], [ -89.428292657005017, 37.356237912770332 ], [ -89.420927698910475, 37.38770190655945 ], [ -89.425837670973493, 37.407467748811591 ], [ -89.439749258485421, 37.437116512189796 ], [ -89.450933083740097, 37.450024817334054 ], [ -89.475482944055244, 37.471404197729221 ], [ -89.492122293824409, 37.493993731731663 ], [ -89.516944930365298, 37.537357569325636 ], [ -89.521582126202588, 37.557325103845656 ], [ -89.521582126202588, 37.566199563632331 ], [ -89.52130934997686, 37.572048639400819 ], [ -89.52130934997686, 37.57890617650871 ], [ -89.518036035268182, 37.583948483205681 ], [ -89.512034958302252, 37.584553560009311 ], [ -89.506579433787778, 37.62509370585299 ], [ -89.515308273010945, 37.67128123519727 ], [ -89.671336274125025, 37.801171055711322 ], [ -89.67433681260799, 37.803187978390113 ], [ -89.739803106781721, 37.846955200519844 ], [ -89.844821953685425, 37.905647650472616 ], [ -89.851095806877083, 37.90403411232959 ], [ -89.862825184583215, 37.896974882953828 ], [ -89.881373967932433, 37.879629347916236 ], [ -89.901832184861732, 37.869746426790165 ], [ -89.923108730468201, 37.870754888129561 ], [ -89.937293094205842, 37.874788733487136 ], [ -89.938111422883011, 37.875192118022895 ], [ -89.950659129266313, 37.881444578327148 ], [ -89.973572332227121, 37.917749186545358 ], [ -89.974936213355733, 37.926623646332033 ], [ -89.997031087639385, 37.963129946818128 ], [ -90.072317325939181, 38.016981782341809 ], [ -90.126599794858237, 38.041588239023042 ], [ -90.203795466738114, 38.088784229706718 ], [ -90.243075243242345, 38.112583917316435 ], [ -90.253986292271307, 38.122063453906748 ], [ -90.33418250263415, 38.189832055914074 ], [ -90.353822390886265, 38.21383343579167 ], [ -90.363915111238043, 38.23642296979412 ], [ -90.374007831589836, 38.281803730066883 ], [ -90.37264395046121, 38.323352337249943 ], [ -90.370734516881143, 38.333638642911779 ], [ -90.3508218524033, 38.37498555782696 ], [ -90.346184656565995, 38.381843094934851 ], [ -90.340183579600065, 38.387087093899694 ], [ -90.295448278581347, 38.426820470671856 ], [ -90.285082782003826, 38.443359236637932 ], [ -90.27908170503791, 38.472402923212499 ], [ -90.262987907720202, 38.520203990699812 ], [ -90.260260145462951, 38.528271681414971 ], [ -90.257805159431442, 38.532103834504667 ], [ -90.248803543982547, 38.544810447381046 ], [ -90.224526459893127, 38.57466090302713 ], [ -90.202431585609489, 38.588577669510784 ], [ -90.195884956192117, 38.594426745279264 ], [ -90.184428354711713, 38.611570588048977 ], [ -90.182518921131646, 38.618024740621109 ], [ -90.177881725294327, 38.633756737515668 ], [ -90.177608949068613, 38.642832889570215 ], [ -90.18115504000302, 38.659573347804169 ], [ -90.181427816228748, 38.660380116875686 ], [ -90.18633778829178, 38.674700267895091 ], [ -90.195339403740661, 38.687608573039348 ], [ -90.202158809383775, 38.693457648807836 ], [ -90.209250991252588, 38.70273549313027 ], [ -90.211978753509825, 38.711811645184824 ], [ -90.209796543704044, 38.726131796204228 ], [ -90.171335095876969, 38.766470249780028 ], [ -90.165061242685312, 38.770705787405483 ], [ -90.12305370392383, 38.798135935837024 ], [ -90.117598179409356, 38.805800242016417 ], [ -90.114597640926391, 38.81507808633885 ], [ -90.109142116411903, 38.837465928073414 ], [ -90.109414892637631, 38.843516696109788 ], [ -90.113233759797765, 38.849365771878276 ], [ -90.207068781446793, 38.898982069776501 ], [ -90.225890341021739, 38.908864990902572 ], [ -90.250167425111172, 38.919352988832273 ], [ -90.275808390329217, 38.926412218208043 ], [ -90.385737209295968, 38.956867750657764 ], [ -90.406468202450981, 38.962515134158373 ], [ -90.450657951018258, 38.967759133123224 ], [ -90.450930727243986, 38.967759133123224 ], [ -90.467842853238864, 38.961708365086857 ], [ -90.47220727285044, 38.958884673336556 ], [ -90.482299993202219, 38.944362830049265 ], [ -90.482845545653674, 38.934681601191073 ], [ -90.486937189039537, 38.926008833672284 ], [ -90.507395405968822, 38.902814222866198 ], [ -90.543947420215829, 38.874980689898905 ], [ -90.555676797921961, 38.870745152273443 ], [ -90.56658784695091, 38.868929921862531 ], [ -90.583499972945802, 38.868929921862531 ], [ -90.625234735481556, 38.888695764114672 ], [ -90.657149553891259, 38.920361450171669 ], [ -90.663423407082917, 38.928025756351069 ], [ -90.665878393114411, 38.934278216655315 ], [ -90.711704799036042, 39.046822502131775 ], [ -90.713614232616109, 39.053881731507545 ], [ -90.712523127713212, 39.057108807793604 ], [ -90.682790519109304, 39.088371109314842 ], [ -90.681153861754964, 39.100674337655462 ], [ -90.719069757130583, 39.224916774668898 ], [ -90.726980267676581, 39.251136769493165 ], [ -90.729980806159546, 39.255977383922257 ], [ -90.799265967493426, 39.313056295732004 ], [ -90.842091834932063, 39.341898290038699 ], [ -90.882735492564933, 39.362269209094471 ], [ -90.940018499966953, 39.393531510615709 ], [ -90.993755416434567, 39.422978581726042 ], [ -91.042309584613434, 39.45202226830061 ], [ -91.158512256771814, 39.553070094507966 ], [ -91.168332200897879, 39.564969938312828 ], [ -91.177879368798216, 39.598249162512857 ], [ -91.229434075460034, 39.620838696515293 ], [ -91.313176376757269, 39.684976837700802 ], [ -91.348910062327107, 39.712406986132351 ], [ -91.367731621902067, 39.728945752098426 ], [ -91.369913831707848, 39.732576212920243 ], [ -91.369913831707848, 39.745081133528736 ], [ -91.368004398127781, 39.759199592280268 ], [ -91.365276635870543, 39.777351896389369 ], [ -91.43292513985007, 39.84048157623549 ], [ -91.446291174910556, 39.870332031881574 ], [ -91.455838342810893, 39.945563247800422 ], [ -91.460202762422455, 39.980254317875605 ], [ -91.494845343089395, 40.037333229685352 ], [ -91.510393587955662, 40.128094750230886 ], [ -91.512848573987185, 40.18113981668305 ], [ -91.510393587955662, 40.201107351203063 ], [ -91.506029168344085, 40.234386575403093 ], [ -91.501391972506781, 40.248908418690377 ], [ -91.489935371026377, 40.28601979598011 ], [ -91.462112196002522, 40.342493630986212 ], [ -91.444927293781916, 40.363267934577749 ], [ -91.419286328563885, 40.378193162400791 ], [ -91.38846261505708, 40.384849007240803 ], [ -91.37564213244805, 40.391908236616558 ], [ -91.372641593965085, 40.401186080938999 ], [ -91.363912754741932, 40.490132371073614 ], [ -91.364185530967646, 40.500015292199684 ], [ -91.369095503030678, 40.512520212808184 ], [ -91.384643747896945, 40.530874209185164 ], [ -91.404010859923346, 40.539143592168202 ], [ -91.406738622180569, 40.547614667419118 ], [ -91.405374741051958, 40.554673896794881 ], [ -91.359821111356069, 40.601869887478557 ], [ -91.348637286101393, 40.609735885925843 ], [ -91.339635670652484, 40.61356803901554 ], [ -91.306629747339898, 40.626274651891919 ], [ -91.253165607098012, 40.637972803428895 ], [ -91.218523026431086, 40.638376187964653 ], [ -91.197792033276059, 40.636157573017982 ], [ -91.186880984247097, 40.637367726625257 ], [ -91.185517103118485, 40.637972803428895 ], [ -91.13805403984253, 40.660965721967095 ], [ -91.122505794976263, 40.670646950825287 ], [ -91.112140298398742, 40.696261868845909 ], [ -91.111867522173014, 40.697068637917425 ], [ -91.094682619952408, 40.79791477185691 ], [ -91.097137605983932, 40.80255369401813 ], [ -91.097683158435387, 40.808402769786611 ], [ -91.093045962598069, 40.821109382662989 ], [ -91.009576437526562, 40.900576136207299 ], [ -90.998392612271886, 40.90803875011882 ], [ -90.968932779893692, 40.919131824852165 ], [ -90.962931702927762, 40.924980900620653 ], [ -90.952293430124541, 40.954024587195221 ], [ -90.942200709772749, 41.034701494346805 ], [ -90.945474024481427, 41.061728258242589 ], [ -90.948474562964407, 41.070199333493505 ], [ -90.949292891641562, 41.072619640708055 ], [ -90.949292891641562, 41.072619640708055 ], [ -90.946565129384339, 41.096621020585644 ], [ -90.989663773048704, 41.155716855074189 ], [ -90.99784705982043, 41.162574392182066 ], [ -91.005484794140699, 41.165599776200253 ], [ -91.019123605426898, 41.164994699396615 ], [ -91.049674542707976, 41.178104696808745 ], [ -91.113776955753082, 41.241436068922738 ], [ -91.11404973197881, 41.250108836441541 ], [ -91.079679927537597, 41.333811127611305 ], [ -91.078588822634714, 41.336029742557976 ], [ -91.047765109127909, 41.410857573941072 ], [ -91.039854598581911, 41.418521880120466 ], [ -91.027852444650051, 41.423564186817444 ], [ -90.989936549274432, 41.432035262068361 ], [ -90.847547359446551, 41.455028180606561 ], [ -90.786172708658668, 41.452809565659891 ], [ -90.771715568695299, 41.450792642981099 ], [ -90.737618540479815, 41.450187566177462 ], [ -90.655785672762647, 41.462087409982324 ], [ -90.605867623455168, 41.494156480575079 ], [ -90.499484895422825, 41.517956168184796 ], [ -90.474389482656235, 41.519771398595708 ], [ -90.461296223821478, 41.523603551685412 ], [ -90.398012139453527, 41.572211388244241 ], [ -90.341547460728691, 41.621424301606702 ], [ -90.34318411808303, 41.648047680966727 ], [ -90.334455278859863, 41.679511674755844 ], [ -90.316997600413544, 41.729127972654069 ], [ -90.315088166833476, 41.734170279351041 ], [ -90.309905418544702, 41.743246431405595 ], [ -90.302813236675888, 41.750103968513478 ], [ -90.278536152586469, 41.76744950355107 ], [ -90.242802467016631, 41.783786577249266 ], [ -90.222344250087332, 41.7930644215717 ], [ -90.208432662575404, 41.797098266929282 ], [ -90.18797444564612, 41.803149034965642 ], [ -90.18197336868019, 41.806981188055346 ], [ -90.151967983850568, 41.929005010122118 ], [ -90.15169520762484, 41.931021932800903 ], [ -90.140511382370164, 41.995966843057928 ], [ -90.141056934821606, 42.008875148202186 ], [ -90.15087687894767, 42.029447759525837 ], [ -90.154150193656363, 42.033078220347662 ], [ -90.164515690233856, 42.044978064152517 ], [ -90.166425123813923, 42.054457600742829 ], [ -90.16833455739399, 42.075836981137996 ], [ -90.163424585330972, 42.087535132674979 ], [ -90.161242375525177, 42.104477283176813 ], [ -90.162333480428074, 42.114965281106521 ], [ -90.167516228716835, 42.122427895018042 ], [ -90.211433201058384, 42.154093581075038 ], [ -90.234891956470634, 42.165388348076263 ], [ -90.306632103836023, 42.190398189293248 ], [ -90.31617927173636, 42.193625265579314 ], [ -90.34918519504896, 42.204314955776894 ], [ -90.357095705594958, 42.205525109384169 ], [ -90.375098936492719, 42.214802953706602 ], [ -90.391192733810442, 42.22549264390419 ], [ -90.419288685059996, 42.254536330478757 ], [ -90.431018062766128, 42.278134325820602 ], [ -90.4307452865404, 42.284185093856962 ], [ -90.424198657123043, 42.293261245911523 ], [ -90.416288146577045, 42.321296471146695 ], [ -90.416560922802759, 42.325128624236399 ], [ -90.419015908834268, 42.328557392790337 ], [ -90.474935035107677, 42.381400766974622 ], [ -90.4773900211392, 42.383821074189171 ], [ -90.559495665082096, 42.430613680337089 ], [ -90.624416406804386, 42.458850597840147 ], [ -90.646784057313738, 42.471960595252277 ], [ -90.654149015408294, 42.478414747824402 ], [ -90.656331225214075, 42.48365874678926 ], [ -90.656604001439803, 42.48910443802199 ], [ -90.656058448988361, 42.491726437504411 ], [ -90.641055756573536, 42.508265203470486 ], [ -90.617597001161286, 42.508063511202607 ], [ -90.614596462678321, 42.508063511202607 ], [ -90.565496742048026, 42.507660126666849 ], [ -90.555949574147689, 42.50745843439897 ], [ -90.551039602084643, 42.507660126666849 ], [ -90.544765748893013, 42.507660126666849 ], [ -90.544220196441557, 42.507660126666849 ], [ -90.532218042509697, 42.507660126666849 ], [ -90.491847161102555, 42.507660126666849 ], [ -90.479572230944996, 42.50745843439897 ], [ -90.474935035107677, 42.50745843439897 ], [ -90.437019139732058, 42.507055049863219 ], [ -90.426380866928824, 42.507055049863219 ], [ -90.405922649999525, 42.50685335759534 ], [ -90.370734516881143, 42.507055049863219 ], [ -90.368006754623906, 42.507055049863219 ], [ -90.362551230109432, 42.507055049863219 ], [ -90.303904341578786, 42.50745843439897 ], [ -90.272807851846267, 42.50745843439897 ], [ -90.269261760911846, 42.507660126666849 ], [ -90.267079551106065, 42.507660126666849 ], [ -90.253167963594137, 42.507256742131098 ], [ -90.250712977562614, 42.50745843439897 ], [ -90.223162578764516, 42.507861818934728 ], [ -90.20597767654391, 42.507660126666849 ], [ -90.181700592454462, 42.508063511202607 ], [ -90.164242914008142, 42.508265203470486 ], [ -90.142966368401673, 42.508063511202607 ], [ -90.094957752674276, 42.507861818934728 ], [ -90.093048319094208, 42.508063511202607 ], [ -90.018580409471568, 42.507256742131098 ], [ -90.016943752117228, 42.507055049863219 ], [ -89.999213297445181, 42.50685335759534 ], [ -89.997303863865113, 42.50685335759534 ], [ -89.985574486158981, 42.506449973059581 ], [ -89.985028933707525, 42.506449973059581 ], [ -89.926382045176894, 42.505844896255944 ], [ -89.926382045176894, 42.505844896255944 ], [ -89.926109268951166, 42.505844896255944 ], [ -89.837456995590884, 42.505643203988065 ], [ -89.801996086246788, 42.505441511720186 ], [ -89.799813876440993, 42.505441511720186 ], [ -89.794085575700791, 42.505441511720186 ], [ -89.780173988188864, 42.505441511720186 ], [ -89.769535715385643, 42.505239819452306 ], [ -89.742530869038973, 42.505441511720186 ], [ -89.693431148408663, 42.505038127184427 ], [ -89.690157833699971, 42.505239819452306 ], [ -89.66751740696489, 42.505038127184427 ], [ -89.650332504744284, 42.504634742648669 ], [ -89.644058651552626, 42.50443305038079 ], [ -89.613507714271549, 42.504029665845032 ], [ -89.60341499391977, 42.503626281309273 ], [ -89.599868902985349, 42.503626281309273 ], [ -89.594686154696603, 42.503424589041394 ], [ -89.564407993641254, 42.502617819969885 ], [ -89.5226732311055, 42.501811050898368 ], [ -89.493213398727306, 42.501609358630489 ], [ -89.49266784627585, 42.501609358630489 ], [ -89.484211783278425, 42.50140766636261 ], [ -89.425292118522052, 42.500802589558972 ], [ -89.423928237393426, 42.500802589558972 ], [ -89.422564356264814, 42.500600897291093 ], [ -89.420927698910475, 42.500600897291093 ], [ -89.401560586884074, 42.500399205023214 ], [ -89.401287810658346, 42.500399205023214 ], [ -89.366099677539964, 42.500197512755335 ], [ -89.361462481702659, 42.499995820487456 ], [ -89.290813439240168, 42.498785666880181 ], [ -89.250715334058754, 42.497978897808665 ], [ -89.246896466898619, 42.498180590076544 ], [ -89.228347683549387, 42.497978897808665 ], [ -89.226165473743592, 42.497978897808665 ], [ -89.16670025653579, 42.497172128737148 ], [ -89.164790822955709, 42.497373821005027 ], [ -89.125238270225736, 42.496970436469269 ], [ -89.120328298162718, 42.496970436469269 ], [ -89.117054983454025, 42.496970436469269 ], [ -89.09905175255625, 42.496567051933511 ], [ -89.071228577532409, 42.496163667397752 ], [ -89.042859850057113, 42.496163667397752 ], [ -89.013672793904661, 42.496163667397752 ], [ -89.013672793904661, 42.496163667397752 ], [ -88.992941800749648, 42.495961975129873 ], [ -88.99266902452392, 42.495961975129873 ], [ -88.943296527667883, 42.495155206058357 ], [ -88.940295989184932, 42.494953513790477 ], [ -88.940295989184932, 42.494953513790477 ], [ -88.776630253750582, 42.493945052451082 ], [ -88.707345092416702, 42.493541667915324 ], [ -88.707345092416702, 42.493541667915324 ], [ -88.506854566509617, 42.494953513790477 ], [ -88.470575328488337, 42.494751821522598 ], [ -88.461300936813728, 42.494550129254719 ], [ -88.41738396447218, 42.494550129254719 ], [ -88.304727383248206, 42.494751821522598 ], [ -88.271721459935605, 42.494751821522598 ], [ -88.216893438565108, 42.495961975129873 ], [ -88.200254088795944, 42.495961975129873 ], [ -88.199435760118774, 42.495961975129873 ], [ -88.049681612196338, 42.495356898326236 ], [ -87.990216394988522, 42.494550129254719 ], [ -87.971394835413577, 42.493945052451082 ], [ -87.900200240499629, 42.492936591111686 ], [ -87.843462785549065, 42.492331514308049 ], [ -87.815912386750938, 42.49192812977229 ], [ -87.800636918110399, 42.49192812977229 ], [ -87.800364141884685, 42.49192812977229 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "8", "geo_id": "0400000US18", "fips_state": "18", "name": "Indiana", "iso_3166_2": "IN", "census": 6483802, "pop_estimataes_base": 6484192, "pop_2010": 6490308, "pop_2011": 6516560, "pop_2012": 6537632, "pop_2013": 6570713, "pop_2014": 6596855 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.820283875850905, 39.105514952084555 ], [ -84.831194924879867, 39.101884491262737 ], [ -84.888750708507615, 39.066386652116037 ], [ -84.897479547730768, 39.057310500061483 ], [ -84.89720677150504, 39.052469885632391 ], [ -84.889023484733329, 39.040771734095408 ], [ -84.878657988155823, 39.0302837361657 ], [ -84.849470932003356, 39.000836665055374 ], [ -84.813191693982077, 38.930647755833498 ], [ -84.789460162344099, 38.884661918757089 ], [ -84.785095742732523, 38.880022996595876 ], [ -84.785914071409692, 38.869534998666168 ], [ -84.791096819698453, 38.855819924450401 ], [ -84.813464470207805, 38.798337628104903 ], [ -84.84428818371461, 38.787042861103671 ], [ -84.944397058555282, 38.775143017298817 ], [ -84.97331133848202, 38.778773478120641 ], [ -84.98449516373671, 38.77897517038852 ], [ -84.995951765217114, 38.77675655544185 ], [ -85.024320492692397, 38.763243173493962 ], [ -85.100970612120818, 38.726736873007866 ], [ -85.106971689086748, 38.720887797239378 ], [ -85.138613731270709, 38.699105032308452 ], [ -85.156071409717043, 38.692247495200562 ], [ -85.17243798326048, 38.688011957575107 ], [ -85.189350109255372, 38.687608573039348 ], [ -85.201625039412932, 38.691642418396924 ], [ -85.213354417119064, 38.695474571486628 ], [ -85.226174899728093, 38.705357492612698 ], [ -85.246633116657392, 38.731779179704844 ], [ -85.258908046814952, 38.737829947741211 ], [ -85.275547396584116, 38.74125871629515 ], [ -85.289186207870316, 38.742468869902424 ], [ -85.333375956437592, 38.740451947223633 ], [ -85.410844404543184, 38.737023178669695 ], [ -85.42202822979786, 38.734804563723024 ], [ -85.43403038372972, 38.729358872490295 ], [ -85.452033614627496, 38.709391337970274 ], [ -85.456943586690528, 38.689222111182382 ], [ -85.439485908244194, 38.610360434441709 ], [ -85.427483754312334, 38.586762439099871 ], [ -85.415754376606202, 38.563567828293785 ], [ -85.415481600380488, 38.546423985524072 ], [ -85.417391033960556, 38.54077660202347 ], [ -85.423119334700758, 38.53149875770103 ], [ -85.432939278826808, 38.524036143789516 ], [ -85.433212055052536, 38.523834451521637 ], [ -85.462399111205002, 38.512539684520412 ], [ -85.60751606329012, 38.439325391280349 ], [ -85.620609322124864, 38.423190009850032 ], [ -85.632884252282452, 38.395759861418497 ], [ -85.638067000571198, 38.380431249059697 ], [ -85.638067000571198, 38.380229556791818 ], [ -85.638885329248382, 38.361472175879072 ], [ -85.653615245437464, 38.327184490339647 ], [ -85.674891791043933, 38.301367880051146 ], [ -85.6836206302671, 38.295518804282651 ], [ -85.744995281054969, 38.26708019451172 ], [ -85.750996358020899, 38.267886963583237 ], [ -85.761089078372692, 38.27252588574445 ], [ -85.766544602887166, 38.277769884709301 ], [ -85.76599905043571, 38.280391884191729 ], [ -85.773364008530265, 38.286240959960217 ], [ -85.781001742850535, 38.288459574906888 ], [ -85.791640015653769, 38.288661267174767 ], [ -85.791640015653769, 38.288661267174767 ], [ -85.816189875968917, 38.283013883674158 ], [ -85.823827610289186, 38.280593576459609 ], [ -85.82928313480366, 38.276761423369905 ], [ -85.897749967460371, 38.184184672413465 ], [ -85.899659401040438, 38.180352519323762 ], [ -85.908661016489333, 38.161191753875265 ], [ -85.909479345166503, 38.140014065747977 ], [ -85.905114925554926, 38.110970379173402 ], [ -85.90456937310347, 38.100280688975815 ], [ -85.90620603045781, 38.086162230224289 ], [ -85.911661554972284, 38.066799772507906 ], [ -85.922299827775532, 38.028679933878792 ], [ -85.930210338321515, 38.018393628216955 ], [ -85.941394163576206, 38.009922552966046 ], [ -85.947940792993563, 38.007098861215738 ], [ -85.951486883927984, 38.005687015340584 ], [ -85.998677170978226, 37.997821016893305 ], [ -86.029500884485032, 37.992577017928454 ], [ -86.172162850538626, 38.009922552966046 ], [ -86.178982256181726, 38.0113343988412 ], [ -86.220444242491766, 38.027873164807275 ], [ -86.266816200864838, 38.057118543649722 ], [ -86.273635606507924, 38.067404849311544 ], [ -86.278818354796684, 38.089389306510355 ], [ -86.278000026119514, 38.102499303922485 ], [ -86.271180620476414, 38.130131144621899 ], [ -86.284001103085444, 38.143241142034036 ], [ -86.309642068303475, 38.144451295641311 ], [ -86.314279264140794, 38.142636065230398 ], [ -86.323553655815402, 38.139005604408581 ], [ -86.326826970524081, 38.13456837451524 ], [ -86.332555271264283, 38.130131144621899 ], [ -86.398567117889485, 38.106331457012189 ], [ -86.426390292913311, 38.081725000330948 ], [ -86.430209160073446, 38.078699616312768 ], [ -86.432664146104969, 38.067203157043664 ], [ -86.438119670619443, 38.060345619935788 ], [ -86.452304034357098, 38.05046269880971 ], [ -86.466761174320453, 38.046630545720014 ], [ -86.490765482184173, 38.045823776648497 ], [ -86.490765482184173, 38.045823776648497 ], [ -86.511769251564914, 38.04441193077335 ], [ -86.517224776079388, 38.042596700362438 ], [ -86.521861971916692, 38.038361162736976 ], [ -86.524862510399657, 38.027873164807275 ], [ -86.525135286625385, 37.9681722535151 ], [ -86.60451316831103, 37.858249967521061 ], [ -86.634245776914952, 37.843929816501657 ], [ -86.648157364426865, 37.841509509287107 ], [ -86.655249546295693, 37.842517970626503 ], [ -86.655249546295693, 37.842517970626503 ], [ -86.660159518358711, 37.865107504628952 ], [ -86.70925923898902, 37.897579959757465 ], [ -86.718533630663643, 37.893142729864124 ], [ -86.723443602726661, 37.892739345328366 ], [ -86.731354113272658, 37.894352883471399 ], [ -86.740901281172995, 37.902622266454436 ], [ -86.750994001524788, 37.912908572116265 ], [ -86.770088337325461, 37.9403387205478 ], [ -86.787818791997509, 37.971399329801159 ], [ -86.794910973866337, 37.98894655710663 ], [ -86.81482363834418, 37.998627785964821 ], [ -86.815369190795622, 37.9988294782327 ], [ -86.823552477567347, 37.999031170500579 ], [ -86.856012848428492, 37.987333018963596 ], [ -86.88492712835523, 37.964340100425403 ], [ -86.902384806801564, 37.946187796316295 ], [ -86.919296932796442, 37.936708259725982 ], [ -86.978762150004258, 37.930254107153857 ], [ -86.979034926229971, 37.930254107153857 ], [ -87.010404192188219, 37.919766109224149 ], [ -87.033317395149027, 37.906656111812012 ], [ -87.042319010597922, 37.898386728828982 ], [ -87.046137877758056, 37.889915653578058 ], [ -87.043410115500819, 37.880032732451994 ], [ -87.043955667952275, 37.870754888129561 ], [ -87.057867255464188, 37.827391050535581 ], [ -87.067959975815967, 37.806011670140414 ], [ -87.077507143716304, 37.796128749014343 ], [ -87.090600402551047, 37.787859366031313 ], [ -87.111058619480346, 37.782413674798576 ], [ -87.119241906252057, 37.782817059334334 ], [ -87.128789074152394, 37.785640751084642 ], [ -87.132607941312529, 37.791086442317372 ], [ -87.202165878872137, 37.843728124233778 ], [ -87.262994977208564, 37.872771810808352 ], [ -87.26954160662595, 37.877209040701686 ], [ -87.302274753712823, 37.898386728828982 ], [ -87.380288754269856, 37.935498106118708 ], [ -87.402656404779208, 37.942355643226591 ], [ -87.418477425871203, 37.944775950441141 ], [ -87.436753432994706, 37.944170873637503 ], [ -87.450392244280891, 37.941548874155075 ], [ -87.451210572958075, 37.940943797351437 ], [ -87.511494118843061, 37.906454419544133 ], [ -87.550228342895849, 37.92480841592112 ], [ -87.559229958344744, 37.931060876225374 ], [ -87.572050440953774, 37.94739794992357 ], [ -87.574232650759569, 37.954860563835084 ], [ -87.573414322082385, 37.96272656228237 ], [ -87.574778203210997, 37.967768868979341 ], [ -87.581052056402655, 37.97341625247995 ], [ -87.585962028465687, 37.975433175158742 ], [ -87.592781434108787, 37.9758365596945 ], [ -87.601510273331954, 37.972609483408434 ], [ -87.629060672130066, 37.926623646332033 ], [ -87.626332909872829, 37.916135648402332 ], [ -87.620331832906899, 37.906857804079891 ], [ -87.597145853720377, 37.892335960792607 ], [ -87.591690329205889, 37.887293654095636 ], [ -87.588417014497196, 37.868737965450777 ], [ -87.588689790722924, 37.861073659271369 ], [ -87.591417552980175, 37.856636429378035 ], [ -87.606693021620714, 37.838685817536806 ], [ -87.615421860843867, 37.832029972696802 ], [ -87.645972798124944, 37.825979204660428 ], [ -87.67079543466582, 37.828399511874977 ], [ -87.679251497663273, 37.836265510322264 ], [ -87.681979259920496, 37.846350123716206 ], [ -87.681706483694782, 37.855829660306519 ], [ -87.662884924119822, 37.885478423684724 ], [ -87.666431015054243, 37.895764729346553 ], [ -87.675705406728852, 37.902017189650799 ], [ -87.683888693500563, 37.903429035525953 ], [ -87.700528043269742, 37.900807036043531 ], [ -87.762175470283339, 37.890924114917453 ], [ -87.783724792115521, 37.877814117505324 ], [ -87.790816973984349, 37.875797194826532 ], [ -87.830642302940049, 37.876603963898049 ], [ -87.841280575743269, 37.882251347398665 ], [ -87.857374373060992, 37.900605343775652 ], [ -87.865557659832703, 37.915127187062936 ], [ -87.872649841701531, 37.920976262831417 ], [ -87.883288114504751, 37.926220261796274 ], [ -87.898018030693848, 37.927430415403549 ], [ -87.904837436336948, 37.92480841592112 ], [ -87.927477863072028, 37.902017189650799 ], [ -87.936752254746636, 37.892537653060486 ], [ -87.940025569455329, 37.887697038631394 ], [ -87.940843898132499, 37.88325980873806 ], [ -87.940025569455329, 37.874990425755016 ], [ -87.936206702295195, 37.86793119637926 ], [ -87.9272050868463, 37.85865335205682 ], [ -87.91493015668874, 37.849577200002273 ], [ -87.910292960851422, 37.843324739698019 ], [ -87.907837974819898, 37.83767735619741 ], [ -87.90374633143405, 37.817709821677397 ], [ -87.906746869917015, 37.807625208283447 ], [ -87.943844436615464, 37.77676629129796 ], [ -87.970849282962135, 37.783422136137972 ], [ -87.976304807476609, 37.788061058299192 ], [ -88.004673534951905, 37.800162594371926 ], [ -88.017221241335193, 37.801977824782838 ], [ -88.028132290364155, 37.79915413303253 ], [ -88.027859514138441, 37.828197819607098 ], [ -88.04940883597061, 37.845139970108931 ], [ -88.071503710254262, 37.895764729346553 ], [ -88.05540991293654, 37.891327499453212 ], [ -88.021040108495328, 37.888100423167153 ], [ -88.016948465109465, 37.88931057677442 ], [ -88.013402374175058, 37.89394949893564 ], [ -88.012584045497888, 37.977046713301775 ], [ -88.041498325424627, 38.03735270139758 ], [ -88.042043877876068, 38.046428853452134 ], [ -88.01312959794933, 38.103507765261881 ], [ -87.974395373896542, 38.122063453906748 ], [ -87.942207779261125, 38.131744682764932 ], [ -87.927750639297756, 38.141627603891003 ], [ -87.911111289528591, 38.162200215214654 ], [ -87.910838513302878, 38.16764590644739 ], [ -87.915748485365896, 38.173293289948006 ], [ -87.928841744200639, 38.176722058501944 ], [ -87.940571121906771, 38.181360980663158 ], [ -87.95120939471002, 38.19305913220014 ], [ -87.959119905256003, 38.203748822397728 ], [ -87.96102933883607, 38.214640204863187 ], [ -87.955301038095868, 38.229968817221987 ], [ -87.951754947161461, 38.239650046080179 ], [ -87.923931772137621, 38.258407426992918 ], [ -87.863102673801194, 38.28019019192385 ], [ -87.749900540125765, 38.403020783062132 ], [ -87.7400805959997, 38.415727395938511 ], [ -87.656065518476737, 38.521615836574966 ], [ -87.66915877731148, 38.541785063362866 ], [ -87.66997710598865, 38.545213831916804 ], [ -87.651428322639418, 38.568206750455005 ], [ -87.627424014775727, 38.607335050423522 ], [ -87.620059056681185, 38.639404121016277 ], [ -87.600146392203328, 38.662397039554477 ], [ -87.593599762785956, 38.667439346251456 ], [ -87.579415399048315, 38.672481652948427 ], [ -87.540135622544071, 38.679137497788432 ], [ -87.531134007095176, 38.683978112217531 ], [ -87.519677405614772, 38.69728980189754 ], [ -87.498400860008303, 38.7590076358685 ], [ -87.495127545299624, 38.783009015746096 ], [ -87.52595125880643, 38.848760695074638 ], [ -87.528133468612225, 38.851786079092818 ], [ -87.53195233577236, 38.852592848164335 ], [ -87.537135084061106, 38.85360130950373 ], [ -87.550501119121577, 38.859652077540105 ], [ -87.553501657604542, 38.863282538361922 ], [ -87.540681174995512, 38.896360070294072 ], [ -87.528133468612225, 38.908058221831055 ], [ -87.527860692386497, 38.908259914098934 ], [ -87.518859076937602, 38.923185141921977 ], [ -87.51231244752023, 38.954447443443215 ], [ -87.572595993405216, 39.057310500061483 ], [ -87.614876308392425, 39.102691260334254 ], [ -87.658793280733974, 39.135970484534276 ], [ -87.651701098865146, 39.150694020089446 ], [ -87.64215393096481, 39.157148172661564 ], [ -87.628787895904338, 39.157349864929444 ], [ -87.60505636426636, 39.18599016696826 ], [ -87.587598685820041, 39.249321539082253 ], [ -87.593599762785956, 39.247506308671348 ], [ -87.603965259363463, 39.259406152476203 ], [ -87.605601916717802, 39.261221382887115 ], [ -87.609966336329393, 39.282197378746524 ], [ -87.603965259363463, 39.313459680267762 ], [ -87.588962566948652, 39.333830599323534 ], [ -87.584870923562789, 39.337259367877479 ], [ -87.543954489704205, 39.352991364772038 ], [ -87.537135084061106, 39.352184595700521 ], [ -87.531679559546632, 39.347949058075066 ], [ -87.531406783320904, 39.436693655941809 ], [ -87.531406783320904, 39.437702117281205 ], [ -87.531406783320904, 39.449400268818181 ], [ -87.531679559546632, 39.466140727052135 ], [ -87.531679559546632, 39.469367803338201 ], [ -87.531679559546632, 39.477032109517594 ], [ -87.531679559546632, 39.477032109517594 ], [ -87.531679559546632, 39.491755645072764 ], [ -87.531679559546632, 39.495587798162461 ], [ -87.53195233577236, 39.526850099683699 ], [ -87.53195233577236, 39.545809172864324 ], [ -87.53195233577236, 39.563961476973432 ], [ -87.532225111998073, 39.607325314567404 ], [ -87.532497888223801, 39.646050230000171 ], [ -87.532497888223801, 39.646050230000171 ], [ -87.532770664449515, 39.664807610912916 ], [ -87.533043440675243, 39.781789126282703 ], [ -87.533043440675243, 39.796310969569994 ], [ -87.533043440675243, 39.803975275749394 ], [ -87.533043440675243, 39.811034505125157 ], [ -87.533316216900971, 39.883038644757946 ], [ -87.533316216900971, 39.883038644757946 ], [ -87.532770664449515, 39.970976473553172 ], [ -87.532770664449515, 39.975010318910748 ], [ -87.532770664449515, 39.977632318393177 ], [ -87.532497888223801, 39.987515239519247 ], [ -87.532225111998073, 39.997801545181076 ], [ -87.532225111998073, 40.000020160127747 ], [ -87.532225111998073, 40.011516619396843 ], [ -87.532225111998073, 40.011516619396843 ], [ -87.531679559546632, 40.132935364659978 ], [ -87.531679559546632, 40.144230131661203 ], [ -87.531406783320904, 40.1480622847509 ], [ -87.531406783320904, 40.1480622847509 ], [ -87.531134007095176, 40.170046741949704 ], [ -87.530861230869448, 40.191829506880637 ], [ -87.530042902192292, 40.250118572297652 ], [ -87.530042902192292, 40.250723649101289 ], [ -87.526769587483599, 40.462097145838442 ], [ -87.526496811257871, 40.47561052778633 ], [ -87.526496811257871, 40.476820681393605 ], [ -87.526496811257871, 40.477224065929363 ], [ -87.526496811257871, 40.491140832413009 ], [ -87.526496811257871, 40.491544216948768 ], [ -87.526224035032158, 40.535109746810619 ], [ -87.526224035032158, 40.535311439078498 ], [ -87.526224035032158, 40.736802014689587 ], [ -87.526224035032158, 40.737003706957466 ], [ -87.525678482580702, 40.854388606863019 ], [ -87.526224035032158, 40.879801832615769 ], [ -87.52595125880643, 40.880608601687285 ], [ -87.526496811257871, 40.894121983635173 ], [ -87.52595125880643, 40.911870903208523 ], [ -87.526224035032158, 41.010296729933458 ], [ -87.526224035032158, 41.010296729933458 ], [ -87.526224035032158, 41.010498422201337 ], [ -87.526496811257871, 41.024818573220742 ], [ -87.526769587483599, 41.121429169534764 ], [ -87.526769587483599, 41.139581473643872 ], [ -87.526769587483599, 41.149262702502057 ], [ -87.526769587483599, 41.153901624663277 ], [ -87.526769587483599, 41.159347315896007 ], [ -87.526769587483599, 41.160154084967523 ], [ -87.526496811257871, 41.163784545789341 ], [ -87.526496811257871, 41.166003160736011 ], [ -87.526769587483599, 41.298111596196733 ], [ -87.526769587483599, 41.298111596196733 ], [ -87.525678482580702, 41.453616334731407 ], [ -87.525678482580702, 41.470155100697482 ], [ -87.525678482580702, 41.470356792965362 ], [ -87.524587377677804, 41.563336928457559 ], [ -87.524587377677804, 41.622634455213976 ], [ -87.524860153903532, 41.632517376340047 ], [ -87.524587377677804, 41.634937683554597 ], [ -87.524860153903532, 41.691613210828578 ], [ -87.524860153903532, 41.702706285561923 ], [ -87.524041825226362, 41.708353669062532 ], [ -87.520495734291956, 41.709967207205565 ], [ -87.515312986003195, 41.704319823704957 ], [ -87.510948566391619, 41.696453825257677 ], [ -87.505220265651417, 41.691613210828578 ], [ -87.470850461210205, 41.672855829915839 ], [ -87.463212726889935, 41.675477829398261 ], [ -87.453120006538143, 41.673057522183719 ], [ -87.446027824669315, 41.669427061361894 ], [ -87.441936181283467, 41.671847368576444 ], [ -87.438662866574774, 41.670637214969169 ], [ -87.437298985446148, 41.669023676826143 ], [ -87.434843999414639, 41.666805061879472 ], [ -87.432934565834572, 41.665191523736439 ], [ -87.43238901338313, 41.660552601575219 ], [ -87.438935642800487, 41.654300141270973 ], [ -87.429934027351607, 41.646030758287935 ], [ -87.423387397934235, 41.642803682001869 ], [ -87.394473118007497, 41.637156298501267 ], [ -87.365558838080773, 41.62949199232186 ], [ -87.324369627996447, 41.623037839749735 ], [ -87.287544837523726, 41.622231070678218 ], [ -87.278543222074831, 41.619810763463676 ], [ -87.261631096079952, 41.620415840267313 ], [ -87.222624095801422, 41.62424799335701 ], [ -87.220714662221354, 41.624449685624889 ], [ -87.187708738908768, 41.629693684589739 ], [ -87.160703892562111, 41.637357990769139 ], [ -87.160703892562111, 41.645425681484298 ], [ -87.125788535669443, 41.650266295913397 ], [ -87.120333011154969, 41.645627373752177 ], [ -87.066050542235899, 41.661762755182494 ], [ -87.027861870634553, 41.674671060326745 ], [ -87.009585863511063, 41.681528597434635 ], [ -86.934845177662709, 41.709563822669807 ], [ -86.932662967856913, 41.710975668544961 ], [ -86.909204212444649, 41.726909357707399 ], [ -86.875379960454893, 41.738002432440737 ], [ -86.824916358695958, 41.760188581907428 ], [ -86.823552477567347, 41.760188581907428 ], [ -86.804458141766673, 41.760188581907428 ], [ -86.801457603283708, 41.760188581907428 ], [ -86.800639274606539, 41.760188581907428 ], [ -86.800639274606539, 41.760188581907428 ], [ -86.747993463041809, 41.759986889639549 ], [ -86.746629581913197, 41.759986889639549 ], [ -86.641065182558037, 41.759583505103791 ], [ -86.639974077655154, 41.759583505103791 ], [ -86.524316957948201, 41.759381812835912 ], [ -86.519406985885183, 41.759381812835912 ], [ -86.501676531213121, 41.759583505103791 ], [ -86.265452319736212, 41.760188581907428 ], [ -86.226172543231968, 41.759986889639549 ], [ -86.226172543231968, 41.759986889639549 ], [ -86.217716480234515, 41.759986889639549 ], [ -86.127973101971349, 41.760591966443187 ], [ -86.12551811593984, 41.760591966443187 ], [ -86.124972563488399, 41.760591966443187 ], [ -86.062506807797618, 41.760188581907428 ], [ -86.003587143041244, 41.759986889639549 ], [ -85.991312212883685, 41.759986889639549 ], [ -85.974945639340234, 41.75978519737167 ], [ -85.974945639340234, 41.75978519737167 ], [ -85.888748352011476, 41.759381812835912 ], [ -85.875109540725276, 41.759381812835912 ], [ -85.872109002242325, 41.759381812835912 ], [ -85.791367239428041, 41.758978428300153 ], [ -85.791367239428041, 41.758978428300153 ], [ -85.775000665884619, 41.759180120568033 ], [ -85.750450805569457, 41.759180120568033 ], [ -85.749905253118015, 41.759180120568033 ], [ -85.724537064125684, 41.759180120568033 ], [ -85.659616322403394, 41.759180120568033 ], [ -85.650614706954514, 41.759180120568033 ], [ -85.647614168471534, 41.759180120568033 ], [ -85.632611476056724, 41.759180120568033 ], [ -85.624973741736454, 41.759180120568033 ], [ -85.622518755704931, 41.758978428300153 ], [ -85.608334391967304, 41.759180120568033 ], [ -85.60751606329012, 41.758978428300153 ], [ -85.518318237478411, 41.759583505103791 ], [ -85.515863251446888, 41.759381812835912 ], [ -85.432393726375381, 41.759583505103791 ], [ -85.427483754312334, 41.75978519737167 ], [ -85.379202362359209, 41.75978519737167 ], [ -85.350288082432471, 41.759986889639549 ], [ -85.330648194180355, 41.759986889639549 ], [ -85.318100487797039, 41.759986889639549 ], [ -85.308007767445275, 41.760188581907428 ], [ -85.298460599544939, 41.759986889639549 ], [ -85.292186746353281, 41.759986889639549 ], [ -85.292186746353281, 41.759986889639549 ], [ -85.273637963004049, 41.75978519737167 ], [ -85.272819634326879, 41.759986889639549 ], [ -85.272274081875423, 41.759986889639549 ], [ -85.232721529145465, 41.75978519737167 ], [ -85.196715067349913, 41.75978519737167 ], [ -85.196715067349913, 41.75978519737167 ], [ -85.172165207034752, 41.759583505103791 ], [ -85.123065486404442, 41.75978519737167 ], [ -85.11733718566424, 41.75978519737167 ], [ -85.039323185107207, 41.759986889639549 ], [ -85.037686527752868, 41.75978519737167 ], [ -84.972765786030578, 41.759381812835912 ], [ -84.971674681127666, 41.759583505103791 ], [ -84.961581960775902, 41.759583505103791 ], [ -84.960763632098718, 41.759381812835912 ], [ -84.932394904623436, 41.75978519737167 ], [ -84.825193847913937, 41.759986889639549 ], [ -84.825193847913937, 41.759986889639549 ], [ -84.818919994722279, 41.759986889639549 ], [ -84.806099512113263, 41.743044739137716 ], [ -84.806099512113263, 41.737599047904979 ], [ -84.806099512113263, 41.732960125743773 ], [ -84.806099512113263, 41.720455205135274 ], [ -84.806099512113263, 41.707546899991016 ], [ -84.806099512113263, 41.696050440721919 ], [ -84.806099512113263, 41.674469368058865 ], [ -84.805553959661808, 41.632315684072168 ], [ -84.805826735887536, 41.631307222732772 ], [ -84.805826735887536, 41.612953226355785 ], [ -84.804735630984638, 41.530259396525409 ], [ -84.804735630984638, 41.53005770425753 ], [ -84.804735630984638, 41.53005770425753 ], [ -84.804462854758924, 41.500408940879325 ], [ -84.804462854758924, 41.488307404806591 ], [ -84.803917302307468, 41.435464030622299 ], [ -84.803917302307468, 41.426186186299873 ], [ -84.803917302307468, 41.425984494031994 ], [ -84.803917302307468, 41.411664343012589 ], [ -84.803917302307468, 41.408437266726523 ], [ -84.804190078533196, 41.408235574458644 ], [ -84.803917302307468, 41.367897120882851 ], [ -84.80364452608174, 41.271286524568829 ], [ -84.80364452608174, 41.27108483230095 ], [ -84.80364452608174, 41.270883140033071 ], [ -84.803371749856012, 41.252529143656083 ], [ -84.803371749856012, 41.252529143656083 ], [ -84.803371749856012, 41.17386915918329 ], [ -84.80364452608174, 41.173264082379653 ], [ -84.803371749856012, 41.164591314860857 ], [ -84.803371749856012, 41.096822712853523 ], [ -84.803371749856012, 41.089360098942009 ], [ -84.803371749856012, 40.989320734074042 ], [ -84.803371749856012, 40.989119041806163 ], [ -84.802826197404571, 40.922560593406104 ], [ -84.802826197404571, 40.922358901138224 ], [ -84.802553421178857, 40.765442316728397 ], [ -84.802280644953129, 40.742247705922317 ], [ -84.802007868727401, 40.728129247170784 ], [ -84.802007868727401, 40.728129247170784 ], [ -84.802280644953129, 40.718649710580479 ], [ -84.802007868727401, 40.702514329150162 ], [ -84.802007868727401, 40.691421254416817 ], [ -84.802280644953129, 40.689404331738032 ], [ -84.802280644953129, 40.674680796182869 ], [ -84.802280644953129, 40.660360645163458 ], [ -84.802007868727401, 40.644830340536778 ], [ -84.802280644953129, 40.572221124100352 ], [ -84.802280644953129, 40.572221124100352 ], [ -84.802553421178857, 40.528050517434863 ], [ -84.803098973630298, 40.465324222124508 ], [ -84.804190078533196, 40.352779936648048 ], [ -84.804190078533196, 40.352779936648048 ], [ -84.803917302307468, 40.310021175857706 ], [ -84.803917302307468, 40.310021175857706 ], [ -84.804190078533196, 40.302558561946185 ], [ -84.805553959661808, 40.223696885205513 ], [ -84.806099512113263, 40.198081967184876 ], [ -84.806372288338991, 40.192232891416396 ], [ -84.806372288338991, 40.192232891416396 ], [ -84.806645064564705, 40.180131355343654 ], [ -84.808281721919059, 40.129103211570282 ], [ -84.808281721919059, 40.127086288891491 ], [ -84.808827274370501, 40.10711875437147 ], [ -84.80964560304767, 40.048829688954456 ], [ -84.810191155499126, 40.034307845667165 ], [ -84.810736707950568, 40.005062466824718 ], [ -84.812100589079193, 39.927410943691314 ], [ -84.812373365304907, 39.921763560190705 ], [ -84.812373365304907, 39.916922945761613 ], [ -84.812373365304907, 39.916922945761613 ], [ -84.812646141530635, 39.891509720008862 ], [ -84.812918917756349, 39.890904643205225 ], [ -84.812918917756349, 39.872954031364003 ], [ -84.813464470207805, 39.853188189111862 ], [ -84.813464470207805, 39.850767881897312 ], [ -84.813737246433533, 39.843103575717912 ], [ -84.813737246433533, 39.843103575717912 ], [ -84.813737246433533, 39.826766502019716 ], [ -84.813737246433533, 39.824547887073052 ], [ -84.814282798884975, 39.814261581411216 ], [ -84.814010022659261, 39.811437889660915 ], [ -84.814282798884975, 39.799739738123932 ], [ -84.814282798884975, 39.786831432979682 ], [ -84.814282798884975, 39.785621279372407 ], [ -84.814010022659261, 39.726525444883876 ], [ -84.814010022659261, 39.726525444883876 ], [ -84.814555575110703, 39.680337915539596 ], [ -84.814555575110703, 39.669244840806243 ], [ -84.814828351336416, 39.628906387230458 ], [ -84.815101127562144, 39.568398706866773 ], [ -84.815101127562144, 39.567793630063136 ], [ -84.814828351336416, 39.567188553259498 ], [ -84.814828351336416, 39.566180091920103 ], [ -84.815101127562144, 39.548027787810994 ], [ -84.815373903787872, 39.522009485254607 ], [ -84.815373903787872, 39.522009485254607 ], [ -84.8156466800136, 39.51111810278914 ], [ -84.8156466800136, 39.510916410521261 ], [ -84.8156466800136, 39.477435494053353 ], [ -84.8156466800136, 39.477435494053353 ], [ -84.817556113593668, 39.391716280204804 ], [ -84.819465547173735, 39.309425834910186 ], [ -84.819465547173735, 39.305190297284724 ], [ -84.819465547173735, 39.305190297284724 ], [ -84.819738323399463, 39.271507688548937 ], [ -84.819738323399463, 39.261826459690752 ], [ -84.819738323399463, 39.250935077225286 ], [ -84.819738323399463, 39.247708000939227 ], [ -84.819738323399463, 39.244279232385281 ], [ -84.819738323399463, 39.157551557197323 ], [ -84.819738323399463, 39.156543095857927 ], [ -84.820011099625177, 39.149080481946413 ], [ -84.820283875850905, 39.105514952084555 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "9", "geo_id": "0400000US22", "fips_state": "22", "name": "Louisiana", "iso_3166_2": "LA", "census": 4533372, "pop_estimataes_base": 4533479, "pop_2010": 4545581, "pop_2011": 4575972, "pop_2012": 4604744, "pop_2013": 4629284, "pop_2014": 4649676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.865009750885122, 29.752641106001416 ], [ -88.889832387425997, 29.718151728194115 ], [ -88.940295989184932, 29.657240663294665 ], [ -88.944387632570795, 29.658854201437698 ], [ -88.946297066150862, 29.662484662259523 ], [ -88.941659870313543, 29.674787890600136 ], [ -88.920110548481361, 29.694352040584398 ], [ -88.911654485483922, 29.69939434728137 ], [ -88.890105163651725, 29.729244802927454 ], [ -88.873738590108303, 29.758086797234149 ], [ -88.868010289368101, 29.772205255985675 ], [ -88.868010289368101, 29.791366021434179 ], [ -88.861190883724987, 29.805887864721463 ], [ -88.846460967535904, 29.817182631722684 ], [ -88.842914876601498, 29.826057091509355 ], [ -88.836368247184112, 29.855302470351809 ], [ -88.836913799635568, 29.858932931173626 ], [ -88.843187652827226, 29.863773545602722 ], [ -88.831185498895366, 29.878900465693647 ], [ -88.828184960412401, 29.92065076514459 ], [ -88.837459352087023, 29.944853837290065 ], [ -88.838823233215635, 29.962401064595532 ], [ -88.835549918506956, 29.96764506356039 ], [ -88.835549918506956, 29.974099216132515 ], [ -88.839914338118518, 29.983780444990707 ], [ -88.840732666795702, 29.995680288795562 ], [ -88.848370401115972, 30.013429208368912 ], [ -88.857372016564852, 30.027749359388316 ], [ -88.86964694672244, 30.043884740818633 ], [ -88.881376324428572, 30.053162585141067 ], [ -88.87046527539961, 30.049128739783487 ], [ -88.855462582984785, 30.034405204228321 ], [ -88.841278219247158, 30.012824131565274 ], [ -88.833640484926889, 29.998907365081628 ], [ -88.824093317026552, 29.970468755310691 ], [ -88.81700113515771, 29.934164147092481 ], [ -88.818092240060622, 29.889186771355472 ], [ -88.826548303058047, 29.847033087368771 ], [ -88.832822156249705, 29.824040168830567 ], [ -88.844005981504381, 29.795803251327513 ], [ -88.865009750885122, 29.752641106001416 ] ] ], [ [ [ -94.0428480675765, 33.019249076569054 ], [ -94.041484186447889, 33.019249076569054 ], [ -94.035755885707687, 33.019047384301174 ], [ -94.028118151387417, 33.019047384301174 ], [ -94.024572060452996, 33.019249076569054 ], [ -93.814534366645574, 33.019450768836933 ], [ -93.804987198745238, 33.019249076569054 ], [ -93.531392644344152, 33.018643999765416 ], [ -93.52484601492678, 33.018643999765416 ], [ -93.521027147766645, 33.018643999765416 ], [ -93.521027147766645, 33.018643999765416 ], [ -93.491021762937024, 33.018442307497537 ], [ -93.490476210485568, 33.018442307497537 ], [ -93.48938510558267, 33.018442307497537 ], [ -93.467017455073318, 33.018643999765416 ], [ -93.377001300584425, 33.018240615229658 ], [ -93.340449286337417, 33.018240615229658 ], [ -93.308261691702, 33.018240615229658 ], [ -93.308261691702, 33.018240615229658 ], [ -93.238703754142392, 33.018038922961779 ], [ -93.19751454405808, 33.018038922961779 ], [ -93.154415900393701, 33.0178372306939 ], [ -93.101497312603271, 33.0178372306939 ], [ -93.100951760151816, 33.0178372306939 ], [ -93.0813118718997, 33.0178372306939 ], [ -93.073128585127975, 33.0178372306939 ], [ -93.070673599096466, 33.0178372306939 ], [ -92.988840731379298, 33.017232153890262 ], [ -92.971110276707236, 33.017232153890262 ], [ -92.946560416392089, 33.016828769354504 ], [ -92.867455310932144, 33.016022000282987 ], [ -92.854089275871672, 33.016223692550867 ], [ -92.844269331745608, 33.016022000282987 ], [ -92.843996555519894, 33.016022000282987 ], [ -92.830903296685136, 33.015618615747229 ], [ -92.733249407875974, 33.014408462139961 ], [ -92.725066121104263, 33.014408462139961 ], [ -92.724793344878549, 33.014408462139961 ], [ -92.723429463749909, 33.014408462139961 ], [ -92.71579172942964, 33.014408462139961 ], [ -92.711154533592349, 33.014206769872082 ], [ -92.503844602042165, 33.012189847193291 ], [ -92.501389616010655, 33.012189847193291 ], [ -92.46974757382668, 33.011988154925412 ], [ -92.37018425143745, 33.010778001318137 ], [ -92.362819293342909, 33.010576309050258 ], [ -92.335814446996238, 33.010374616782379 ], [ -92.292715803331859, 33.010172924514499 ], [ -92.222885089546537, 33.009164463175104 ], [ -92.069039298238238, 33.008156001835715 ], [ -91.952018297402688, 33.007349232764199 ], [ -91.950108863822621, 33.007550925032078 ], [ -91.626596260114056, 33.006542463692682 ], [ -91.617594644665161, 33.006744155960561 ], [ -91.608865805442008, 33.006542463692682 ], [ -91.579678749289542, 33.006542463692682 ], [ -91.579678749289542, 33.006542463692682 ], [ -91.572313791195, 33.00694584822844 ], [ -91.559493308585971, 33.006744155960561 ], [ -91.460475538648183, 33.006340771424803 ], [ -91.435652902107307, 33.006139079156924 ], [ -91.425560181755529, 33.005937386889045 ], [ -91.375914908673778, 33.005735694621166 ], [ -91.333089041235127, 33.005534002353286 ], [ -91.329815726526434, 33.005332310085407 ], [ -91.326269635592013, 33.005332310085407 ], [ -91.324905754463401, 33.005332310085407 ], [ -91.322450768431878, 33.005332310085407 ], [ -91.312085271854386, 33.005332310085407 ], [ -91.284262096830531, 33.004928925549649 ], [ -91.264894984804144, 33.005130617817528 ], [ -91.166149991092084, 33.004122156478132 ], [ -91.201883676661907, 32.961161703419911 ], [ -91.214158606819495, 32.930302786434432 ], [ -91.21279472569087, 32.922033403451394 ], [ -91.208157529853565, 32.915377558611389 ], [ -91.196700928373161, 32.906704791092594 ], [ -91.175424382766693, 32.900048946252589 ], [ -91.159876137900426, 32.89984725398471 ], [ -91.145146221711343, 32.905494637485319 ], [ -91.133962396456667, 32.91759617355806 ], [ -91.1320529628766, 32.92304186479079 ], [ -91.130961857973702, 32.96378370290234 ], [ -91.138599592293971, 32.97144800908174 ], [ -91.134507948908109, 32.980524161136294 ], [ -91.125233557233486, 32.984759698761749 ], [ -91.106684773884268, 32.988995236387211 ], [ -91.094137067500967, 32.984356314225991 ], [ -91.086772109406425, 32.97628862351084 ], [ -91.063858906445617, 32.924050326130185 ], [ -91.063858906445617, 32.903679407074407 ], [ -91.070678312088717, 32.888754179251364 ], [ -91.086772109406425, 32.873425566892564 ], [ -91.105593668981385, 32.858298646801643 ], [ -91.115959165558877, 32.855676647319214 ], [ -91.127961319490737, 32.855071570515577 ], [ -91.144873445485615, 32.842970034442843 ], [ -91.158239480546086, 32.822397423119185 ], [ -91.161785571480493, 32.812514501993121 ], [ -91.164513333737744, 32.785891122633096 ], [ -91.165331662414914, 32.751401744825799 ], [ -91.163422228834847, 32.746964514932458 ], [ -91.154420613385952, 32.742325592771238 ], [ -91.123051347427705, 32.742728977306996 ], [ -91.077224941506088, 32.732442671645174 ], [ -91.060858367962652, 32.727400364948195 ], [ -91.054584514770994, 32.722358058251224 ], [ -91.057039500802517, 32.712676829393033 ], [ -91.063858906445617, 32.702995600534848 ], [ -91.076133836603191, 32.693717756212415 ], [ -91.098774263338271, 32.685246680961498 ], [ -91.118141375364672, 32.674153606228153 ], [ -91.151965627354443, 32.64147945883176 ], [ -91.15387506093451, 32.631193153169932 ], [ -91.151420074903001, 32.615864540811131 ], [ -91.146237326614241, 32.604166389274155 ], [ -91.14105457832548, 32.597308852166272 ], [ -91.127961319490737, 32.586417469700805 ], [ -91.119778032719012, 32.584803931557772 ], [ -91.104229787852745, 32.584602239289893 ], [ -91.096864829758204, 32.576736240842614 ], [ -91.090863752792274, 32.564029627966242 ], [ -91.09059097656656, 32.562617782091088 ], [ -91.089499871663662, 32.553339937768655 ], [ -91.093864291275253, 32.5491044001432 ], [ -91.097955934661101, 32.544667170249859 ], [ -91.116777494236061, 32.500093179048612 ], [ -91.115959165558877, 32.483151028546779 ], [ -91.108866983690064, 32.472057953813433 ], [ -91.095228172403864, 32.458746264133424 ], [ -91.070132759637261, 32.445232882185536 ], [ -91.052947857416655, 32.438375345077645 ], [ -91.029489102004405, 32.433534730648553 ], [ -90.994028192660295, 32.403885967270348 ], [ -91.004393689237801, 32.368186435855769 ], [ -91.003575360560632, 32.362135667819402 ], [ -91.000029269626225, 32.357698437926061 ], [ -90.986663234565754, 32.351849362157573 ], [ -90.912468101168841, 32.33954613381696 ], [ -90.901557052139879, 32.337932595673927 ], [ -90.898556513656928, 32.329058135887252 ], [ -90.9051031430743, 32.315544753939363 ], [ -91.004666465463515, 32.215303696803517 ], [ -91.006303122817869, 32.224178156590192 ], [ -91.021578591458407, 32.236078000395054 ], [ -91.039036269904742, 32.2423304606993 ], [ -91.046401227999283, 32.241120307092025 ], [ -91.122505794976263, 32.21691723494655 ], [ -91.133689620230939, 32.213488466392604 ], [ -91.157966704320359, 32.201992007123508 ], [ -91.164240557512016, 32.196949700426529 ], [ -91.171059963155116, 32.176578781370758 ], [ -91.174606054089523, 32.154997708707711 ], [ -91.171605515606558, 32.144308018510124 ], [ -91.165331662414914, 32.134223405116174 ], [ -91.162876676383405, 32.132609866973148 ], [ -91.131507410425144, 32.126155714401023 ], [ -91.06713222115431, 32.13220648243739 ], [ -91.057585053253973, 32.135433558723449 ], [ -91.052402304965213, 32.137248789134361 ], [ -91.046674004225011, 32.138862327277394 ], [ -91.040400151033367, 32.137248789134361 ], [ -91.034399074067437, 32.134828481919811 ], [ -91.030034654455847, 32.12978617522284 ], [ -91.027034115972896, 32.123735407186473 ], [ -91.027034115972896, 32.120508330900407 ], [ -91.027579668424337, 32.113449101524644 ], [ -91.027852444650051, 32.112642332453127 ], [ -91.034671850293165, 32.101145873184024 ], [ -91.127961319490737, 31.985777895957263 ], [ -91.24825563503498, 31.869804841926861 ], [ -91.293536488505154, 31.860123613068669 ], [ -91.326815188043469, 31.854879614103815 ], [ -91.338544565749601, 31.851249153281998 ], [ -91.345636747618414, 31.842778078031081 ], [ -91.359548335130341, 31.799414240437102 ], [ -91.363639978516204, 31.780455167256481 ], [ -91.365549412096271, 31.760689325004343 ], [ -91.365003859644816, 31.752823326557063 ], [ -91.369368279256406, 31.746974250788575 ], [ -91.380006552059626, 31.733057484304926 ], [ -91.398009782957416, 31.709459488963088 ], [ -91.400191992763212, 31.688080108567917 ], [ -91.398009782957416, 31.656011037975162 ], [ -91.404556412374788, 31.637858733866054 ], [ -91.422014090821108, 31.631202889026049 ], [ -91.441381202847509, 31.631202889026049 ], [ -91.452837804327913, 31.631202889026049 ], [ -91.464839958259773, 31.628984274079382 ], [ -91.474932678611566, 31.621723352435737 ], [ -91.477933217094517, 31.610831969970278 ], [ -91.477933217094517, 31.604781201933907 ], [ -91.477933217094517, 31.598327049361778 ], [ -91.477387664643075, 31.592276281325411 ], [ -91.470841035225703, 31.585620436485407 ], [ -91.458566105068115, 31.583200129270857 ], [ -91.448746160942051, 31.582998437002978 ], [ -91.437835111913103, 31.580779822056311 ], [ -91.425014629304087, 31.577754438038127 ], [ -91.41546746140375, 31.56706474784054 ], [ -91.416558566306634, 31.56161905660781 ], [ -91.422559643272564, 31.554358134964168 ], [ -91.437562335687375, 31.546088751981131 ], [ -91.45011004207069, 31.539634599409002 ], [ -91.479842650674584, 31.530356755086572 ], [ -91.511211916632845, 31.532575370033239 ], [ -91.515849112470136, 31.53096183189021 ], [ -91.522941294338963, 31.519868757156864 ], [ -91.51503078379298, 31.449276463399229 ], [ -91.510393587955662, 31.4389901577374 ], [ -91.505210839666915, 31.432939389701033 ], [ -91.500300867603883, 31.419022623217387 ], [ -91.505210839666915, 31.400870319108279 ], [ -91.513666902664355, 31.386953552624632 ], [ -91.525396280370472, 31.378885861909474 ], [ -91.541217301462467, 31.356699712442786 ], [ -91.539853420333856, 31.337337254726407 ], [ -91.531124581110674, 31.32664756452882 ], [ -91.519940755855998, 31.311318952170019 ], [ -91.508756930601322, 31.291553109917881 ], [ -91.515576336244422, 31.278241420237869 ], [ -91.522395741887522, 31.273400805808777 ], [ -91.547491154654125, 31.264526346022102 ], [ -91.574496001000796, 31.261299269736035 ], [ -91.598500308864487, 31.205430511533564 ], [ -91.599864189993113, 31.192320514121434 ], [ -91.604228609604689, 31.154604060028067 ], [ -91.577496539483747, 31.078162690501941 ], [ -91.564130504423275, 31.06686792350072 ], [ -91.561402742166038, 31.060817155464349 ], [ -91.560038861037413, 31.054161310624345 ], [ -91.562493847068936, 31.043269928158882 ], [ -91.571768238743545, 31.02975654621099 ], [ -91.58458872135256, 31.020277009620678 ], [ -91.636961756691562, 30.999502706029148 ], [ -91.62523237898543, 30.999099321493389 ], [ -91.538762315430944, 30.999301013761269 ], [ -91.425832957981243, 30.999099321493389 ], [ -91.423650748175461, 30.99889762922551 ], [ -91.224796879622716, 30.999099321493389 ], [ -91.22397855094556, 30.999099321493389 ], [ -91.176242711443876, 30.999099321493389 ], [ -91.176242711443876, 30.999099321493389 ], [ -91.108321431238608, 30.99889762922551 ], [ -91.10804865501288, 30.99889762922551 ], [ -91.080771032440495, 30.99889762922551 ], [ -91.068223326057193, 30.99889762922551 ], [ -91.060312815511196, 30.99889762922551 ], [ -90.825998037614369, 30.999301013761269 ], [ -90.825725261388641, 30.999301013761269 ], [ -90.783717722627159, 30.999502706029148 ], [ -90.779898855467025, 30.999502706029148 ], [ -90.77607998830689, 30.999502706029148 ], [ -90.769260582663776, 30.999301013761269 ], [ -90.758895086086284, 30.999502706029148 ], [ -90.73461800199685, 30.999301013761269 ], [ -90.734345225771122, 30.999301013761269 ], [ -90.651148476925329, 30.999502706029148 ], [ -90.648693490893805, 30.999502706029148 ], [ -90.588682721234562, 30.999704398297027 ], [ -90.587318840105937, 30.999704398297027 ], [ -90.584318301622972, 30.999704398297027 ], [ -90.583499972945802, 30.999704398297027 ], [ -90.567133399402366, 30.999704398297027 ], [ -90.547493511150236, 30.999704398297027 ], [ -90.486664412813809, 30.999704398297027 ], [ -90.485846084136639, 30.999704398297027 ], [ -90.4773900211392, 30.999704398297027 ], [ -90.476026140010575, 30.999704398297027 ], [ -90.474116706430507, 30.999704398297027 ], [ -90.442474664246532, 30.999704398297027 ], [ -90.441656335569363, 30.999704398297027 ], [ -90.437291915957786, 30.999704398297027 ], [ -90.426926419380266, 30.999704398297027 ], [ -90.422016447317247, 30.999906090564906 ], [ -90.369370635752517, 31.000309475100664 ], [ -90.347275761468893, 31.000309475100664 ], [ -90.347275761468893, 31.000309475100664 ], [ -90.345911880340267, 31.000309475100664 ], [ -90.259441816785795, 31.000712859636423 ], [ -90.164788466459584, 31.000914551904302 ], [ -90.164242914008142, 31.001116244172181 ], [ -90.131509766921269, 31.000914551904302 ], [ -90.128509228438304, 31.001116244172181 ], [ -90.050768004106999, 31.001116244172181 ], [ -90.02949145850053, 31.001116244172181 ], [ -90.022126500405989, 31.00131793644006 ], [ -90.005214374411096, 31.00131793644006 ], [ -89.975481765807189, 31.001721320975818 ], [ -89.972754003549952, 31.00131793644006 ], [ -89.927200373854049, 31.001519628707939 ], [ -89.923108730468201, 31.001519628707939 ], [ -89.897467765250155, 31.001923013243697 ], [ -89.892830569412837, 31.001721320975818 ], [ -89.856824107617285, 31.002124705511577 ], [ -89.835820338236545, 31.002124705511577 ], [ -89.835547562010817, 31.002124705511577 ], [ -89.824636512981868, 31.002124705511577 ], [ -89.816453226210143, 31.002124705511577 ], [ -89.752623589390751, 31.001923013243697 ], [ -89.73243814868718, 31.004746704993998 ], [ -89.728073729075589, 31.002528090047331 ], [ -89.728073729075589, 31.002326397779452 ], [ -89.728346505301317, 30.971064096258214 ], [ -89.744713078844768, 30.919027491145442 ], [ -89.756442456550886, 30.900471802500576 ], [ -89.770899596514255, 30.899463341161184 ], [ -89.773354582545778, 30.897648110750275 ], [ -89.789993932314928, 30.851460581405991 ], [ -89.826273170336208, 30.736495988714985 ], [ -89.842639743879644, 30.666105387225226 ], [ -89.842639743879644, 30.666105387225226 ], [ -89.823272631853243, 30.608623090879725 ], [ -89.806906058309806, 30.572116790393629 ], [ -89.760534099936734, 30.515844647655399 ], [ -89.732710924912908, 30.49244834458144 ], [ -89.724527638141183, 30.491843267777803 ], [ -89.690703386151426, 30.458765735845656 ], [ -89.683338428056885, 30.45170650646989 ], [ -89.629874287814999, 30.339363913261309 ], [ -89.629874287814999, 30.321009916884325 ], [ -89.640785336843948, 30.301244074632187 ], [ -89.643513099101185, 30.293176383917029 ], [ -89.643513099101185, 30.287730692684299 ], [ -89.607779413531347, 30.217138398926661 ], [ -89.580774567184676, 30.186279481941177 ], [ -89.572591280412965, 30.180833790708448 ], [ -89.524582664685568, 30.180833790708448 ], [ -89.531129294102925, 30.177001637618748 ], [ -89.537403147294583, 30.171757638653894 ], [ -89.555133601966645, 30.170749177314498 ], [ -89.562771336286914, 30.16873225463571 ], [ -89.568226860801389, 30.163891640206614 ], [ -89.572045727961523, 30.160261179384793 ], [ -89.587048420376334, 30.150579950526605 ], [ -89.594958930922331, 30.149974873722968 ], [ -89.597959469405282, 30.152395180937514 ], [ -89.617599357657411, 30.156429026295093 ], [ -89.622782105946158, 30.152395180937514 ], [ -89.624964315751953, 30.150781642794485 ], [ -89.641058113069676, 30.138680106721743 ], [ -89.644604204004082, 30.13404118456053 ], [ -89.650332504744284, 30.126578570649009 ], [ -89.656879134161656, 30.118309187665972 ], [ -89.65851579151601, 30.117300726326576 ], [ -89.668062959416346, 30.111249958290209 ], [ -89.668608511867788, 30.11104826602233 ], [ -89.66915406431923, 30.110644881486571 ], [ -89.66915406431923, 30.110644881486571 ], [ -89.672972931479364, 30.110443189218692 ], [ -89.674064036382262, 30.110443189218692 ], [ -89.674609588833704, 30.110443189218692 ], [ -89.674882365059432, 30.110241496950813 ], [ -89.675700693736616, 30.109636420147176 ], [ -89.676246246188057, 30.109434727879297 ], [ -89.678155679768125, 30.108224574272022 ], [ -89.678155679768125, 30.108224574272022 ], [ -89.678428455993838, 30.107821189736264 ], [ -89.678428455993838, 30.107014420664747 ], [ -89.678428455993838, 30.106812728396868 ], [ -89.67951956089675, 30.101972113967776 ], [ -89.679792337122464, 30.101367037164138 ], [ -89.679792337122464, 30.101367037164138 ], [ -89.680065113348192, 30.100358575824743 ], [ -89.680337889573906, 30.099148422217468 ], [ -89.680610665799634, 30.09854334541383 ], [ -89.68115621825109, 30.095316269127771 ], [ -89.681974546928259, 30.092694269645342 ], [ -89.681974546928259, 30.092089192841705 ], [ -89.682247323153973, 30.091484116038067 ], [ -89.682247323153973, 30.091484116038067 ], [ -89.682247323153973, 30.090475654698672 ], [ -89.682247323153973, 30.090475654698672 ], [ -89.682247323153973, 30.090072270162914 ], [ -89.682247323153973, 30.089668885627159 ], [ -89.682520099379701, 30.08946719335928 ], [ -89.682520099379701, 30.089265501091401 ], [ -89.682792875605429, 30.086441809341096 ], [ -89.683065651831157, 30.082811348519272 ], [ -89.683065651831157, 30.081601194912 ], [ -89.683611204282599, 30.075953811411388 ], [ -89.697522791794512, 30.070911504714417 ], [ -89.698341120471696, 30.070508120178658 ], [ -89.698613896697424, 30.070508120178658 ], [ -89.698886672923138, 30.070508120178658 ], [ -89.699159449148866, 30.070508120178658 ], [ -89.699705001600307, 30.070306427910779 ], [ -89.711979931757895, 30.069096274303504 ], [ -89.713071036660779, 30.069096274303504 ], [ -89.713071036660779, 30.069096274303504 ], [ -89.714162141563676, 30.068491197499867 ], [ -89.714707694015118, 30.068289505231988 ], [ -89.715526022692302, 30.06788612069623 ], [ -89.71579879891803, 30.06768442842835 ], [ -89.716344351369472, 30.06768442842835 ], [ -89.716344351369472, 30.067482736160471 ], [ -89.716617127595185, 30.067482736160471 ], [ -89.716889903820913, 30.067281043892592 ], [ -89.722072652109674, 30.065062428945925 ], [ -89.724527638141183, 30.064053967606529 ], [ -89.72643707172125, 30.063247198535016 ], [ -89.727528176624148, 30.062642121731379 ], [ -89.728073729075589, 30.061835352659863 ], [ -89.729437610204215, 30.059616737713192 ], [ -89.729710386429943, 30.059415045445313 ], [ -89.729710386429943, 30.059213353177434 ], [ -89.729983162655657, 30.059213353177434 ], [ -89.731074267558569, 30.057599815034404 ], [ -89.731074267558569, 30.057599815034404 ], [ -89.731074267558569, 30.054574431016221 ], [ -89.731347043784282, 30.051347354730154 ], [ -89.731347043784282, 30.050943970194396 ], [ -89.73161982001001, 30.049733816587125 ], [ -89.73161982001001, 30.049733816587125 ], [ -89.73161982001001, 30.049733816587125 ], [ -89.716344351369472, 30.028152743924075 ], [ -89.716344351369472, 30.028152743924075 ], [ -89.716344351369472, 30.028152743924075 ], [ -89.716344351369472, 30.027345974852558 ], [ -89.716344351369472, 30.027144282584679 ], [ -89.716344351369472, 30.026740898048921 ], [ -89.716344351369472, 30.026135821245283 ], [ -89.724527638141183, 30.022505360423466 ], [ -89.724800414366911, 30.022505360423466 ], [ -89.725891519269808, 30.022303668155587 ], [ -89.73325647736435, 30.022101975887708 ], [ -89.734347582267247, 30.022908744959224 ], [ -89.738984778104566, 30.026539205781042 ], [ -89.739530330555993, 30.027144282584679 ], [ -89.740894211684633, 30.028152743924075 ], [ -89.745804183747651, 30.031984897013775 ], [ -89.746349736199107, 30.032388281549533 ], [ -89.746622512424835, 30.032589973817412 ], [ -89.746622512424835, 30.032589973817412 ], [ -89.757260785228056, 30.038640741853783 ], [ -89.763261862193986, 30.042069510407721 ], [ -89.782628974220387, 30.045296586693787 ], [ -89.784538407800454, 30.045296586693787 ], [ -89.813725463952906, 30.043683048550754 ], [ -89.818635436015938, 30.043279664014996 ], [ -89.829819261270615, 30.03319505062105 ], [ -89.83036481372207, 30.032589973817412 ], [ -89.832274247302138, 30.030976435674383 ], [ -89.833092575979308, 30.030371358870745 ], [ -89.833910904656477, 30.029564589799229 ], [ -89.834729233333647, 30.028959512995591 ], [ -89.835274785785089, 30.028354436191954 ], [ -89.839911981622407, 30.024118898566496 ], [ -89.839911981622407, 30.024118898566496 ], [ -89.841003086525291, 30.022908744959224 ], [ -89.841821415202475, 30.022101975887708 ], [ -89.85464189781149, 30.007781824868303 ], [ -89.857642436294469, 30.004353056314358 ], [ -89.852186911779981, 29.977729676954336 ], [ -89.844276401233984, 29.955745219755528 ], [ -89.838548100493782, 29.945862298629457 ], [ -89.829000932593445, 29.939206453789453 ], [ -89.818089883564483, 29.934164147092481 ], [ -89.804451072278297, 29.932550608949448 ], [ -89.775536792351559, 29.937391223378544 ], [ -89.748531946004903, 29.945862298629457 ], [ -89.727800952849876, 29.958770603773715 ], [ -89.719072113626709, 29.95372829707674 ], [ -89.712798260435051, 29.946265683165215 ], [ -89.736257015847315, 29.936181069771269 ], [ -89.742803645264701, 29.93597937750339 ], [ -89.746349736199107, 29.92831507132399 ], [ -89.742530869038973, 29.908145844536094 ], [ -89.711161603080711, 29.879303850229405 ], [ -89.692067267280038, 29.868815852299697 ], [ -89.671609050350753, 29.867605698692422 ], [ -89.660698001321791, 29.862966776531209 ], [ -89.638057574586696, 29.863975237870601 ], [ -89.613234938045821, 29.872244620853639 ], [ -89.59823224563101, 29.881320772908193 ], [ -89.591140063762197, 29.897052769802752 ], [ -89.59223116866508, 29.917221996590648 ], [ -89.583229553216199, 29.931743839877932 ], [ -89.583229553216199, 29.945660606361582 ], [ -89.575046266444474, 29.959375680577352 ], [ -89.574500713993032, 29.983780444990707 ], [ -89.581320119636132, 29.994671827456166 ], [ -89.571500175510067, 29.99991582642102 ], [ -89.55131473480651, 30.005764902189512 ], [ -89.501669461724745, 30.034001819692563 ], [ -89.494031727404476, 30.041061049068329 ], [ -89.494577279855918, 30.050742277926517 ], [ -89.499214475693236, 30.058809968641675 ], [ -89.493486174953034, 30.072121658321688 ], [ -89.48202957347263, 30.079180887697454 ], [ -89.458843594286094, 30.063448890802896 ], [ -89.444659230548453, 30.061028583588346 ], [ -89.429110985682186, 30.052154123801671 ], [ -89.418472712878952, 30.049733816587125 ], [ -89.372373530731608, 30.0547761232841 ], [ -89.368554663571473, 30.047313509372579 ], [ -89.372373530731608, 30.036623819174991 ], [ -89.381102369954775, 30.030371358870745 ], [ -89.393650076338076, 30.029766282067108 ], [ -89.416017726847429, 30.020488437744675 ], [ -89.422837132490542, 30.015446131047703 ], [ -89.432657076616607, 30.007983517136179 ], [ -89.433475405293763, 29.991243058902228 ], [ -89.432657076616607, 29.978738138293728 ], [ -89.405379454044208, 29.965628140881599 ], [ -89.393650076338076, 29.966233217685236 ], [ -89.379192936374707, 29.963812910470686 ], [ -89.378647383923266, 29.919642303805198 ], [ -89.368009111120031, 29.911574613090039 ], [ -89.332002649324465, 29.915810150715494 ], [ -89.315363299555315, 29.923272764627015 ], [ -89.283448481145626, 29.973292447060999 ], [ -89.273355760793834, 29.99386505838465 ], [ -89.250442557833026, 30.002336133635566 ], [ -89.243623152189926, 29.997293826938595 ], [ -89.24989700538157, 29.975511062007669 ], [ -89.217982186971881, 29.972687370257361 ], [ -89.223710487712083, 29.961997680059774 ], [ -89.231075445806624, 29.925491379573685 ], [ -89.244714257092824, 29.930130301734899 ], [ -89.262990264216313, 29.929525224931265 ], [ -89.280175166436919, 29.924886302770048 ], [ -89.31836383803828, 29.898061231142144 ], [ -89.322182705198415, 29.887371540944564 ], [ -89.311544432395181, 29.881724157443948 ], [ -89.289176781885828, 29.880514003836677 ], [ -89.272264655890936, 29.886766464140926 ], [ -89.241440942384131, 29.889590155891231 ], [ -89.23625819409537, 29.886766464140926 ], [ -89.23625819409537, 29.877085235282735 ], [ -89.254534201218888, 29.864580314674239 ], [ -89.269809669859427, 29.859941392513022 ], [ -89.29490508262603, 29.857117700762718 ], [ -89.317818285586839, 29.850865240458468 ], [ -89.363371915282727, 29.845822933761497 ], [ -89.383830132212012, 29.838965396653613 ], [ -89.38328457976057, 29.830292629134817 ], [ -89.372919083183064, 29.825250322437842 ], [ -89.345641460610665, 29.820208015740867 ], [ -89.342913698353428, 29.798425250809942 ], [ -89.332002649324465, 29.790559252362662 ], [ -89.31836383803828, 29.78874402195175 ], [ -89.293268425271677, 29.803064172971155 ], [ -89.277174627953968, 29.807703095132371 ], [ -89.277174627953968, 29.799635404417213 ], [ -89.284266809822782, 29.795601559059634 ], [ -89.284812362274238, 29.769986641039004 ], [ -89.269264117407971, 29.760910488984454 ], [ -89.27090077476231, 29.756271566823237 ], [ -89.305270579203523, 29.756876643626875 ], [ -89.315908852006771, 29.760910488984454 ], [ -89.32518324368138, 29.772205255985675 ], [ -89.337730950064667, 29.779062793093559 ], [ -89.354097523608118, 29.781483100308108 ], [ -89.367190782442862, 29.775230640003862 ], [ -89.386012342017807, 29.78874402195175 ], [ -89.394741181240974, 29.78491186886205 ], [ -89.39910560085255, 29.770591717842642 ], [ -89.414653845718817, 29.752439413733537 ], [ -89.428292657005017, 29.741548031268074 ], [ -89.424201013619154, 29.697579116870457 ], [ -89.44820532148286, 29.70322650037107 ], [ -89.471936853120837, 29.718555112729874 ], [ -89.486939545535648, 29.726017726641395 ], [ -89.506033881336322, 29.731665110142004 ], [ -89.53031096542577, 29.743766646214741 ], [ -89.54013090955182, 29.743766646214741 ], [ -89.560316350255391, 29.735497263231704 ], [ -89.572864056638693, 29.746590337965046 ], [ -89.597959469405282, 29.747598799304441 ], [ -89.633965931200848, 29.753044490537174 ], [ -89.651150833421454, 29.749414029715354 ], [ -89.649786952292828, 29.719966958605024 ], [ -89.644604204004082, 29.710890806550474 ], [ -89.618417686334581, 29.700806193156524 ], [ -89.599050574308194, 29.704840038514103 ], [ -89.593049497342264, 29.702016346763799 ], [ -89.599596126759636, 29.690318195226816 ], [ -89.596868364502399, 29.684267427190449 ], [ -89.573955161541591, 29.67398112152862 ], [ -89.557315811772426, 29.670148968438923 ], [ -89.533857056360176, 29.670148968438923 ], [ -89.48803065043856, 29.630415591666768 ], [ -89.485302888181309, 29.624364823630398 ], [ -89.486666769309934, 29.620936055076456 ], [ -89.486939545535648, 29.620532670540697 ], [ -89.50467000020771, 29.63142405300616 ], [ -89.522946007331214, 29.639491743721319 ], [ -89.535220937488788, 29.648567895775873 ], [ -89.583229553216199, 29.652803433401331 ], [ -89.608870518434244, 29.657644047830424 ], [ -89.621145448591818, 29.65703897102679 ], [ -89.623600434623341, 29.662484662259523 ], [ -89.632602050072222, 29.671762506581953 ], [ -89.644331427778354, 29.675392967403774 ], [ -89.649786952292828, 29.672972660189227 ], [ -89.641330889295403, 29.647962818972236 ], [ -89.641330889295403, 29.635861282899498 ], [ -89.647331966261319, 29.62537328496979 ], [ -89.657697462838826, 29.624163131362518 ], [ -89.674609588833704, 29.626583438577065 ], [ -89.684429532959768, 29.624768208166156 ], [ -89.688248400119903, 29.615086979307964 ], [ -89.684429532959768, 29.602783750967347 ], [ -89.671063497899297, 29.588261907680064 ], [ -89.668608511867788, 29.580395909232784 ], [ -89.684429532959768, 29.563252066463072 ], [ -89.684429532959768, 29.551150530390334 ], [ -89.68115621825109, 29.534410072156383 ], [ -89.696158910665901, 29.524930535566071 ], [ -89.699705001600307, 29.523518689690917 ], [ -89.700796106503205, 29.520694997940613 ], [ -89.700523330277491, 29.516056075779396 ], [ -89.693976700860105, 29.508593461867875 ], [ -89.665880749610551, 29.490037773223008 ], [ -89.644058651552626, 29.492256388169679 ], [ -89.635329812329473, 29.489231004151492 ], [ -89.617599357657411, 29.468255008292083 ], [ -89.596595588276671, 29.456355164487224 ], [ -89.592503944890808, 29.449901011915095 ], [ -89.589503406407857, 29.437597783574482 ], [ -89.577228476250269, 29.433765630484778 ], [ -89.574500713993032, 29.43578255316357 ], [ -89.57477349021876, 29.44102655212842 ], [ -89.548586972549259, 29.465633008809654 ], [ -89.528401531845702, 29.454741626344191 ], [ -89.532220399005837, 29.434572399556295 ], [ -89.531947622780109, 29.42569793976962 ], [ -89.51830881149391, 29.400284714016873 ], [ -89.508488867367845, 29.386166255265344 ], [ -89.504942776433438, 29.385964562997465 ], [ -89.487212321761376, 29.393427176908986 ], [ -89.484484559504139, 29.397461022266569 ], [ -89.482302349698358, 29.406133789785365 ], [ -89.477119601409598, 29.411176096482336 ], [ -89.47002741954077, 29.401494867624145 ], [ -89.457206936931755, 29.393225484641107 ], [ -89.422291580039087, 29.390603485158682 ], [ -89.380011265051877, 29.391813638765957 ], [ -89.373191859408792, 29.38717471660474 ], [ -89.355461404736729, 29.381527333104131 ], [ -89.340185936096191, 29.381325640836252 ], [ -89.336639845161784, 29.378300256818065 ], [ -89.347550894190732, 29.364988567138056 ], [ -89.350824208899425, 29.349458262511376 ], [ -89.323273810101313, 29.344012571278643 ], [ -89.303633921849183, 29.357525953226535 ], [ -89.28290292869417, 29.356517491887139 ], [ -89.27253743211665, 29.351273492922285 ], [ -89.265172474022108, 29.345424417153794 ], [ -89.257807515927567, 29.336953341902877 ], [ -89.253443096315976, 29.322834883151351 ], [ -89.240895389932689, 29.31012827027498 ], [ -89.224256040163525, 29.313758731096797 ], [ -89.223437711486355, 29.317994268722259 ], [ -89.21961884432622, 29.324448421294385 ], [ -89.204616151911409, 29.338768572313789 ], [ -89.200524508525547, 29.344415955814398 ], [ -89.200524508525547, 29.347643032100464 ], [ -89.189340683270871, 29.345021032618035 ], [ -89.179520739144806, 29.339575341385306 ], [ -89.177338529339011, 29.335138111491968 ], [ -89.178156858016195, 29.32707042077681 ], [ -89.165063599181437, 29.303069040899214 ], [ -89.157698641086881, 29.296614888327085 ], [ -89.140240962640561, 29.291169197094355 ], [ -89.134239885674631, 29.279269353289497 ], [ -89.136967647931868, 29.275235507931917 ], [ -89.129602689837327, 29.265554279073726 ], [ -89.100142857459147, 29.250225666714925 ], [ -89.096051214073285, 29.242964745071284 ], [ -89.095505661621843, 29.238124130642188 ], [ -89.098506200104794, 29.232880131677334 ], [ -89.105871158199349, 29.231669978070062 ], [ -89.106143934425063, 29.215937981175504 ], [ -89.100688409910589, 29.206256752317312 ], [ -89.09059568955881, 29.200004292013066 ], [ -89.068228039049444, 29.204239829638524 ], [ -89.067409710372274, 29.208677059531858 ], [ -89.029221038770928, 29.220980287872479 ], [ -89.021856080676372, 29.218156596122171 ], [ -89.015309451259014, 29.211500751282166 ], [ -89.000579535069917, 29.180036757493049 ], [ -89.005216730907222, 29.164909837402128 ], [ -89.013127241453219, 29.163296299259095 ], [ -89.018309989741965, 29.165111529670007 ], [ -89.024311066707895, 29.169952144099099 ], [ -89.043950954960025, 29.162489530187578 ], [ -89.047224269668703, 29.157850608026365 ], [ -89.038768206671264, 29.142320303399682 ], [ -89.031948801028165, 29.144740610614228 ], [ -89.024038290482167, 29.137277996702707 ], [ -89.024038290482167, 29.13364753588089 ], [ -89.025947724062235, 29.130218767326944 ], [ -89.051861465506022, 29.106620771985106 ], [ -89.055407556440429, 29.084232930250543 ], [ -89.062226962083514, 29.070316163766893 ], [ -89.091141242010252, 29.066887395212952 ], [ -89.097960647653352, 29.067895856552347 ], [ -89.10505282952218, 29.073543240052956 ], [ -89.121419403065602, 29.069106010159622 ], [ -89.143514277349254, 29.047524937496572 ], [ -89.15633475995827, 29.02876755658383 ], [ -89.162063060698472, 29.015859251439572 ], [ -89.1623358369242, 29.011623713814117 ], [ -89.164790822955709, 29.008800022063809 ], [ -89.169973571244469, 29.008800022063809 ], [ -89.175701871984671, 29.012027098349876 ], [ -89.186067368562178, 29.018077866386243 ], [ -89.182248501402043, 29.025540480297764 ], [ -89.189886235722312, 29.032599709673526 ], [ -89.19779674626831, 29.029776017923222 ], [ -89.202433942105614, 29.031591248334134 ], [ -89.211162781328781, 29.040869092656564 ], [ -89.216072753391813, 29.056399397283244 ], [ -89.215527200940357, 29.061441703980222 ], [ -89.217163858294697, 29.06729077974871 ], [ -89.225892697517878, 29.078585546749931 ], [ -89.23625819409537, 29.084636314786302 ], [ -89.254806977444602, 29.083224468911148 ], [ -89.257261963476111, 29.081005853964477 ], [ -89.256989187250397, 29.073744932320835 ], [ -89.253715872541704, 29.06487047253416 ], [ -89.259444173281906, 29.058416319962035 ], [ -89.283175704919898, 29.053374013265064 ], [ -89.291086215465896, 29.053172320997184 ], [ -89.304997802977795, 29.046314783889297 ], [ -89.315363299555315, 29.039053862245655 ], [ -89.318091061812552, 29.035423401423834 ], [ -89.315090523329587, 29.032599709673526 ], [ -89.324910467455652, 29.013842328760784 ], [ -89.335275964033158, 29.015052482368059 ], [ -89.338276502516123, 29.013035559689271 ], [ -89.383830132212012, 28.947485572628608 ], [ -89.411380531010138, 28.925097730894045 ], [ -89.419836594007563, 28.929736653055258 ], [ -89.412471635913022, 28.957570186022554 ], [ -89.408107216301445, 28.965436184469837 ], [ -89.398014495949667, 28.976932643738934 ], [ -89.382193474857672, 28.98157156590015 ], [ -89.375101292988859, 28.985403718989851 ], [ -89.334730411581717, 29.040264015852927 ], [ -89.339913159870463, 29.052163859657789 ], [ -89.354915852285274, 29.07253477871356 ], [ -89.374555740537403, 29.084232930250543 ], [ -89.405652230269936, 29.086854929732969 ], [ -89.41110775478441, 29.10581400291359 ], [ -89.409471097430071, 29.127798460112398 ], [ -89.417654384201782, 29.138689842577861 ], [ -89.428838209456472, 29.144538918346349 ], [ -89.432929852842321, 29.14897614823969 ], [ -89.44738699280569, 29.178624911617895 ], [ -89.455843055803129, 29.190928139958512 ], [ -89.472209629346565, 29.207466905924587 ], [ -89.4828479021498, 29.215131212103987 ], [ -89.536584818617413, 29.236308900231279 ], [ -89.606688308628463, 29.252040897125838 ], [ -89.671881826576481, 29.288950582147685 ], [ -89.697250015568798, 29.296614888327085 ], [ -89.726164295495522, 29.304077502238609 ], [ -89.782083421768931, 29.311136731614372 ], [ -89.819726540918836, 29.310329962542855 ], [ -89.850277478199914, 29.311741808418009 ], [ -89.855187450262946, 29.334936419224089 ], [ -89.853823569134335, 29.340583802724701 ], [ -89.847004163491221, 29.349256570243497 ], [ -89.835002009559375, 29.359139491369564 ], [ -89.820817645821734, 29.377493487746548 ], [ -89.816998778661599, 29.384351024854436 ], [ -89.816180449984415, 29.393427176908986 ], [ -89.816998778661599, 29.398872868141719 ], [ -89.819180988467394, 29.404116867106573 ], [ -89.822181526950345, 29.409562558339303 ], [ -89.82600039411048, 29.415613326375674 ], [ -89.835274785785089, 29.418638710393857 ], [ -89.843458072556814, 29.421664094412044 ], [ -89.845094729911153, 29.434572399556295 ], [ -89.836638666913714, 29.454136549540557 ], [ -89.833638128430749, 29.456758549022979 ], [ -89.833638128430749, 29.459783933041166 ], [ -89.83281979975358, 29.463616086130866 ], [ -89.833638128430749, 29.467246546952687 ], [ -89.834456457107933, 29.470473623238753 ], [ -89.840457534073849, 29.473499007256933 ], [ -89.849731925748472, 29.477936237150274 ], [ -89.862552408357487, 29.47652439127512 ], [ -89.876191219643687, 29.472087161381783 ], [ -89.90210496108746, 29.459985625309045 ], [ -89.919017087082338, 29.444253628414486 ], [ -89.932655898368537, 29.429328400591444 ], [ -89.955296325103618, 29.428521631519928 ], [ -89.961842954520989, 29.432958861413262 ], [ -89.96457071677824, 29.434572399556295 ], [ -89.973026779775665, 29.443648551610849 ], [ -89.991848339350625, 29.463616086130866 ], [ -90.012579332505652, 29.462809317059349 ], [ -90.018580409471568, 29.452119626861766 ], [ -90.022399276631702, 29.444455320682366 ], [ -90.02949145850053, 29.43195040007387 ], [ -90.032219220757767, 29.426908093376895 ], [ -90.031400892080597, 29.41258794235749 ], [ -90.033310325660665, 29.393225484641107 ], [ -90.02949145850053, 29.388183177944136 ], [ -90.02949145850053, 29.386569639801102 ], [ -90.030037010951972, 29.383140871247161 ], [ -90.030855339629142, 29.375073180532002 ], [ -90.030855339629142, 29.375073180532002 ], [ -90.030855339629142, 29.374871488264123 ], [ -90.033583101886393, 29.370837642906544 ], [ -90.03549253546646, 29.368215643424119 ], [ -90.036310864143616, 29.363576721262902 ], [ -90.032764773209209, 29.34865149343986 ], [ -90.031946444532039, 29.344214263546522 ], [ -90.034401430563548, 29.322633190883472 ], [ -90.028400353597632, 29.307102886256793 ], [ -90.013670437408535, 29.302665656363455 ], [ -90.009578794022673, 29.294799657916176 ], [ -90.016398199665787, 29.284311659986471 ], [ -90.019398738148737, 29.28229473730768 ], [ -90.032219220757767, 29.280076122361013 ], [ -90.043403046012443, 29.282496429575559 ], [ -90.057041857298643, 29.281286275968284 ], [ -90.061133500684491, 29.276647353807071 ], [ -90.05976961955588, 29.272613508449489 ], [ -90.060587948233049, 29.267772894020396 ], [ -90.070680668584828, 29.262528895055542 ], [ -90.08677446590255, 29.25930181876948 ], [ -90.091138885514141, 29.26152043371615 ], [ -90.097685514931499, 29.261923818251908 ], [ -90.101231605865905, 29.259705203305238 ], [ -90.096048857577159, 29.240746130124613 ], [ -90.073408430842079, 29.227232748176725 ], [ -90.073408430842079, 29.21069398221065 ], [ -90.070680668584828, 29.208677059531858 ], [ -90.063588486716014, 29.209483828603375 ], [ -90.042857493561002, 29.211702443550045 ], [ -90.019671514374465, 29.231871670337942 ], [ -90.005759926862538, 29.240544437856734 ], [ -89.970026241292715, 29.255671357947659 ], [ -89.965661821681124, 29.2591001265016 ], [ -89.95938796848948, 29.267772894020396 ], [ -89.951204681717769, 29.266159355877363 ], [ -89.949840800589143, 29.26313397185918 ], [ -89.950659129266313, 29.260713664644634 ], [ -89.956387430006515, 29.253654435268871 ], [ -90.022126500405989, 29.216139673443379 ], [ -90.058405738427268, 29.18366721831487 ], [ -90.079409507808009, 29.169952144099099 ], [ -90.088683899482618, 29.162489530187578 ], [ -90.104232144348885, 29.15038799411484 ], [ -90.17433563435992, 29.105208926109952 ], [ -90.223708131215957, 29.08503969932206 ], [ -90.231891417987669, 29.087661698804485 ], [ -90.24525745304814, 29.085846468393573 ], [ -90.34318411808303, 29.057004474086881 ], [ -90.348639642597504, 29.057811243158397 ], [ -90.35000352372613, 29.063660318926889 ], [ -90.325453663410968, 29.075156778195989 ], [ -90.3041771178045, 29.07737539314266 ], [ -90.292993292549824, 29.07878723901781 ], [ -90.282900572198045, 29.082417699839631 ], [ -90.266261222428881, 29.089476929215394 ], [ -90.25807793565717, 29.091695544162064 ], [ -90.253167963594137, 29.093712466840856 ], [ -90.249894648885459, 29.100973388484498 ], [ -90.250167425111172, 29.10803261786026 ], [ -90.243893571919529, 29.110452925074807 ], [ -90.234346404019192, 29.110251232806927 ], [ -90.234346404019192, 29.12880692145179 ], [ -90.243348019468073, 29.136269535363311 ], [ -90.248530767756833, 29.138286458042103 ], [ -90.268988984686132, 29.139294919381499 ], [ -90.280445586166536, 29.142521995667561 ], [ -90.278263376360741, 29.150791378650599 ], [ -90.297084935935686, 29.171363989974253 ], [ -90.302813236675888, 29.175196143063953 ], [ -90.302813236675888, 29.187902755940328 ], [ -90.300903803095821, 29.196172138923366 ], [ -90.293266068775552, 29.199802599745187 ], [ -90.282900572198045, 29.192541678101541 ], [ -90.275808390329217, 29.193751831708816 ], [ -90.271171194491913, 29.204643214174283 ], [ -90.28671943935818, 29.225619210033692 ], [ -90.300358250644365, 29.231266593534304 ], [ -90.311542075899055, 29.237922438374312 ], [ -90.311542075899055, 29.256276434751292 ], [ -90.31617927173636, 29.264747510002209 ], [ -90.33281862150551, 29.27705073834283 ], [ -90.367188425946736, 29.274227046592522 ], [ -90.368279530849634, 29.27079827803858 ], [ -90.366915649721008, 29.264949202270088 ], [ -90.37264395046121, 29.258898434233721 ], [ -90.387919419101749, 29.252847666197354 ], [ -90.383827775715901, 29.235703823427642 ], [ -90.399376020582153, 29.201012753352458 ], [ -90.408650412256776, 29.196373831191245 ], [ -90.409468740933931, 29.196172138923366 ], [ -90.432927496346196, 29.188104448208207 ], [ -90.435928034829161, 29.188507832743966 ], [ -90.443838545375144, 29.195768754387608 ], [ -90.472480049076168, 29.192743370369421 ], [ -90.473298377753338, 29.19516367758397 ], [ -90.468661181916033, 29.198390753870033 ], [ -90.467297300787408, 29.202626291495491 ], [ -90.485846084136639, 29.209887213139133 ], [ -90.494847699585534, 29.216744750247017 ], [ -90.4910288324254, 29.220980287872479 ], [ -90.468388405690305, 29.227434440444604 ], [ -90.465660643433068, 29.242964745071284 ], [ -90.462932881175831, 29.249822282179167 ], [ -90.450657951018258, 29.263739048662817 ], [ -90.452294608372597, 29.266159355877363 ], [ -90.472752825301882, 29.272613508449489 ], [ -90.495393252036976, 29.287337044004655 ], [ -90.510668720677515, 29.290967504826476 ], [ -90.517215350094887, 29.282698121843438 ], [ -90.526216965543767, 29.276445661539192 ], [ -90.552130706987555, 29.27846258421798 ], [ -90.565496742048026, 29.285118429057988 ], [ -90.582408868042904, 29.276042277003434 ], [ -90.589773826137446, 29.248612128571892 ], [ -90.588409945008834, 29.245788436821591 ], [ -90.584045525397244, 29.242964745071284 ], [ -90.576407791076974, 29.243973206410679 ], [ -90.565496742048026, 29.242561360535525 ], [ -90.544492972667285, 29.230661516730667 ], [ -90.54312909153866, 29.227837824980362 ], [ -90.544220196441557, 29.224207364158538 ], [ -90.556495126599131, 29.219971826533083 ], [ -90.557313455276301, 29.207870290460345 ], [ -90.560859546210708, 29.204239829638524 ], [ -90.575316686174091, 29.20686182912095 ], [ -90.618415329838456, 29.203231368299129 ], [ -90.624143630578658, 29.210290597674891 ], [ -90.627416945287351, 29.211097366746408 ], [ -90.633690798478995, 29.209080444067617 ], [ -90.64023742789638, 29.196575523459124 ], [ -90.645692952410855, 29.175801219867591 ], [ -90.645147399959399, 29.172977528117286 ], [ -90.640782980347822, 29.171162297706374 ], [ -90.636964113187688, 29.16450645286637 ], [ -90.647056833539466, 29.128605229183911 ], [ -90.677607770820543, 29.118722308057844 ], [ -90.690973805881015, 29.121747692076028 ], [ -90.70079375000708, 29.121545999808149 ], [ -90.717978652227686, 29.116705385379056 ], [ -90.731344687288157, 29.122957845683302 ], [ -90.76407783437503, 29.113276616825111 ], [ -90.773352226049639, 29.100166619412981 ], [ -90.79953874371914, 29.087460006536606 ], [ -90.801993729750649, 29.083224468911148 ], [ -90.803630387105002, 29.063660318926889 ], [ -90.79872041504197, 29.054785859140214 ], [ -90.78208106527282, 29.049340167907481 ], [ -90.765168939277928, 29.049340167907481 ], [ -90.750166246863103, 29.053172320997184 ], [ -90.725343610322227, 29.066685702945072 ], [ -90.708977036778805, 29.064265395730523 ], [ -90.705430945844398, 29.062651857587493 ], [ -90.702157631135705, 29.060231550372947 ], [ -90.69233768700964, 29.05962647356931 ], [ -90.683608847786473, 29.061038319444464 ], [ -90.677062218369102, 29.063660318926889 ], [ -90.665605616888698, 29.06729077974871 ], [ -90.652239581828226, 29.069307702427501 ], [ -90.644056295056515, 29.071526317374168 ], [ -90.641328532799264, 29.072333086445681 ], [ -90.639146322993469, 29.072938163249319 ], [ -90.637509665639129, 29.072131394177802 ], [ -90.636145784510518, 29.06971108696326 ], [ -90.637509665639129, 29.066685702945072 ], [ -90.648147938442378, 29.062651857587493 ], [ -90.730799134836715, 29.042280938531718 ], [ -90.755621771377591, 29.039053862245655 ], [ -90.797629310139072, 29.039658939049293 ], [ -90.811540897650985, 29.036633555031109 ], [ -90.83936407267484, 29.039255554513534 ], [ -90.842637387383519, 29.042886015335355 ], [ -90.844819597189314, 29.048735091103843 ], [ -90.841273506254907, 29.054180782336577 ], [ -90.844546820963586, 29.06729077974871 ], [ -90.86282282808709, 29.094922620448127 ], [ -90.867732800150122, 29.095527697251764 ], [ -90.877552744276187, 29.104805541574194 ], [ -90.885463254822184, 29.117108769914815 ], [ -90.8982837374312, 29.131428920934219 ], [ -90.925834136229312, 29.153211685865145 ], [ -90.941927933547021, 29.162287837919699 ], [ -90.948201786738679, 29.174187681724558 ], [ -90.961295045573422, 29.180843526564566 ], [ -90.981480486276993, 29.171162297706374 ], [ -91.000029269626225, 29.169548759563341 ], [ -91.024033577489917, 29.174792758528195 ], [ -91.031671311810186, 29.182255372439716 ], [ -91.058676158156857, 29.181650295636082 ], [ -91.094137067500967, 29.187701063672449 ], [ -91.114868060655994, 29.207870290460345 ], [ -91.12905242439362, 29.215937981175504 ], [ -91.199701466856126, 29.221383672408237 ], [ -91.219068578882514, 29.22602259456945 ], [ -91.278806572316057, 29.247805359500379 ], [ -91.302810880179763, 29.265957663609484 ], [ -91.334998474815194, 29.298833503273755 ], [ -91.332816265009399, 29.305892732649518 ], [ -91.309357509597135, 29.305691040381639 ], [ -91.298992013019628, 29.308918116667705 ], [ -91.291899831150801, 29.311338423882251 ], [ -91.290535950022189, 29.31315365429316 ], [ -91.279624900993241, 29.326061959437418 ], [ -91.276624362510262, 29.329894112527114 ], [ -91.27607881005882, 29.332717804277422 ], [ -91.274442152704481, 29.344819340350156 ], [ -91.270623285544346, 29.355509030547744 ], [ -91.270077733092904, 29.356920876422897 ], [ -91.269804956867176, 29.357324260958656 ], [ -91.266531642158483, 29.361156414048352 ], [ -91.265440537255586, 29.36176149085199 ], [ -91.251528949743673, 29.368619027959873 ], [ -91.251256173517945, 29.368820720227752 ], [ -91.249619516163605, 29.369627489299269 ], [ -91.249073963712164, 29.369829181567148 ], [ -91.245527872777743, 29.370635950638665 ], [ -91.238435690908915, 29.372047796513819 ], [ -91.235435152425964, 29.370635950638665 ], [ -91.222341893591221, 29.360753029512594 ], [ -91.207339201176396, 29.360753029512594 ], [ -91.197519257050331, 29.369829181567148 ], [ -91.19997424308184, 29.38959502381929 ], [ -91.218523026431086, 29.407142251124757 ], [ -91.216068040399563, 29.41258794235749 ], [ -91.214158606819495, 29.416016710911432 ], [ -91.2119763970137, 29.420857325340528 ], [ -91.214976935496665, 29.427513170180532 ], [ -91.217431921528174, 29.432555476877507 ], [ -91.21797747397963, 29.433160553681141 ], [ -91.219341355108241, 29.434370707288416 ], [ -91.221250788688309, 29.436387629967207 ], [ -91.241709005617608, 29.44102655212842 ], [ -91.251256173517945, 29.444455320682366 ], [ -91.258348355386772, 29.446875627896912 ], [ -91.259439460289656, 29.457968702630254 ], [ -91.259712236515384, 29.460590702112682 ], [ -91.259985012741112, 29.461800855719957 ], [ -91.259985012741112, 29.462002547987836 ], [ -91.261621670095451, 29.465027932006016 ], [ -91.265713313481314, 29.472288853649662 ], [ -91.28126155834758, 29.481566697972092 ], [ -91.294354817182324, 29.476927775810879 ], [ -91.335816803492349, 29.485802235597554 ], [ -91.343454537812619, 29.492659772705437 ], [ -91.345909523844142, 29.504559616510296 ], [ -91.356547796647376, 29.515249306707879 ], [ -91.402101426343279, 29.511820538153938 ], [ -91.420377433466768, 29.515652691243638 ], [ -91.427196839109868, 29.520291613404854 ], [ -91.432379587398628, 29.53279653401335 ], [ -91.440017321718898, 29.54046084019275 ], [ -91.447382279813439, 29.544696377818209 ], [ -91.468658825419908, 29.544292993282451 ], [ -91.517212993598761, 29.529771149995163 ], [ -91.531124581110674, 29.531586380406075 ], [ -91.531397357336402, 29.535418533495776 ], [ -91.525941832821928, 29.54590653142548 ], [ -91.525396280370472, 29.551957299461851 ], [ -91.529215147530607, 29.558613144301859 ], [ -91.537398434302332, 29.565874065945501 ], [ -91.542035630139637, 29.594312675716431 ], [ -91.553492231620041, 29.632835898881314 ], [ -91.560857189714596, 29.637273128774652 ], [ -91.570677133840661, 29.638281590114048 ], [ -91.581860959095337, 29.637071436506773 ], [ -91.600136966218827, 29.631222360738281 ], [ -91.62523237898543, 29.626180054041306 ], [ -91.643781162334662, 29.630617283934647 ], [ -91.648963910623422, 29.633642667952827 ], [ -91.648691134397694, 29.636668051971014 ], [ -91.646508924591899, 29.639491743721319 ], [ -91.64323560988322, 29.640298512792835 ], [ -91.63723453291729, 29.647156049900719 ], [ -91.627414588791225, 29.662081277723765 ], [ -91.62523237898543, 29.671762506581953 ], [ -91.62686903633977, 29.684670811726207 ], [ -91.623868497856819, 29.699192655013491 ], [ -91.618412973342345, 29.710890806550474 ], [ -91.618140197116617, 29.720773727676541 ], [ -91.621413511825295, 29.735497263231704 ], [ -91.6328701133057, 29.74255649260747 ], [ -91.667239917746912, 29.745783568893529 ], [ -91.710884113862747, 29.738926031785645 ], [ -91.737343407757962, 29.749414029715354 ], [ -91.752346100172787, 29.748203876108079 ], [ -91.78371536613102, 29.740741262196558 ], [ -91.830632876955548, 29.718958497265632 ], [ -91.845908345596087, 29.708672191603803 ], [ -91.858728828205102, 29.703024808103194 ], [ -91.866639338751099, 29.70705865346077 ], [ -91.88082370248874, 29.710890806550474 ], [ -91.881096478714468, 29.713311113765016 ], [ -91.878368716457231, 29.716134805515324 ], [ -91.87564095419998, 29.72238726581957 ], [ -91.87564095419998, 29.72238726581957 ], [ -91.87564095419998, 29.728034649320183 ], [ -91.878368716457231, 29.735093878695949 ], [ -91.879732597585843, 29.742758184875349 ], [ -91.878368716457231, 29.751027567858387 ], [ -91.874822625522825, 29.760103719912937 ], [ -91.859274380656558, 29.78329833071902 ], [ -91.854637184819239, 29.807501402864492 ], [ -91.869912653459778, 29.828275706456026 ], [ -91.889006989260452, 29.835940012635426 ], [ -91.907010220158242, 29.830897705938455 ], [ -91.916011835607122, 29.815569093579651 ], [ -91.919012374090102, 29.815367401311775 ], [ -91.940834472147998, 29.816980939454805 ], [ -91.961292689077297, 29.810123402346917 ], [ -91.97056708075192, 29.80427432657843 ], [ -91.978477591297903, 29.799232019881458 ], [ -91.983933115812391, 29.794593097720238 ], [ -92.035760598699937, 29.781684792575987 ], [ -92.05649159185495, 29.772406948253554 ], [ -92.107500746065313, 29.744371723018379 ], [ -92.144325536538048, 29.716336497783203 ], [ -92.149235508601066, 29.696974040066824 ], [ -92.134232816186255, 29.669543891635286 ], [ -92.132868935057644, 29.660467739580731 ], [ -92.111865165676903, 29.621742824147972 ], [ -92.093316382327671, 29.618717440129785 ], [ -92.065765983529559, 29.61992759373706 ], [ -92.047762752631783, 29.624566515898277 ], [ -92.025395102122417, 29.625574977237669 ], [ -92.016393486673536, 29.618717440129785 ], [ -92.000299689355813, 29.613070056629176 ], [ -92.000026913130085, 29.613070056629176 ], [ -91.965111556237432, 29.608027749932202 ], [ -91.940016143470842, 29.610246364878869 ], [ -91.935106171407796, 29.61226328755766 ], [ -91.929650646893322, 29.618919132397664 ], [ -91.922831241250236, 29.633239283417069 ], [ -91.899099709612244, 29.637071436506773 ], [ -91.896644723580721, 29.634651129292223 ], [ -91.882187583617366, 29.629810514863131 ], [ -91.866093786299643, 29.631625745274039 ], [ -91.863093247816693, 29.633642667952827 ], [ -91.841271149758768, 29.629608822595252 ], [ -91.839088939952987, 29.624566515898277 ], [ -91.840998373533054, 29.61992759373706 ], [ -91.838270611275817, 29.61609544064736 ], [ -91.821631261506653, 29.606010827253414 ], [ -91.803900806834605, 29.599556674681285 ], [ -91.785079247259645, 29.595119444787947 ], [ -91.778532617842274, 29.589270369019459 ], [ -91.774713750682139, 29.582211139643697 ], [ -91.774713750682139, 29.576362063875205 ], [ -91.746345023206857, 29.574345141196417 ], [ -91.719067400634458, 29.565470681409742 ], [ -91.715521309700051, 29.565874065945501 ], [ -91.711975218765645, 29.564663912338226 ], [ -91.709247456508393, 29.561033451516401 ], [ -91.711702442539917, 29.554175914408518 ], [ -91.734070093049269, 29.539452378853355 ], [ -91.747163351884026, 29.535216841227896 ], [ -91.76543935900753, 29.520896690208488 ], [ -91.771985988424902, 29.50496300104605 ], [ -91.772531540876344, 29.499113925277562 ], [ -91.770076554844835, 29.493869926312712 ], [ -91.770622107296276, 29.489029311883613 ], [ -91.782351485002408, 29.482978543847246 ], [ -91.789170890645508, 29.482171774775729 ], [ -91.80008193967447, 29.486810696936946 ], [ -91.803355254383149, 29.486810696936946 ], [ -91.814539079637825, 29.48197008250785 ], [ -91.821631261506653, 29.473902391792691 ], [ -91.838543387501545, 29.478944698489666 ], [ -91.848636107853324, 29.48418869745452 ], [ -91.852727751239172, 29.495080079919983 ], [ -91.862274919139509, 29.502341001563629 ], [ -91.878641492682959, 29.502946078367263 ], [ -91.88682477945467, 29.505568077849688 ], [ -91.906191891481058, 29.518072998458187 ], [ -91.915193506929967, 29.518476382993946 ], [ -91.947108325339656, 29.533199918549109 ], [ -91.969203199623294, 29.536830379370926 ], [ -91.985842549392459, 29.547721761836392 ], [ -92.026758983251028, 29.566882527284893 ], [ -92.035487822474209, 29.578580678821872 ], [ -92.041216123214411, 29.581606062840059 ], [ -92.046398871503158, 29.584429754590364 ], [ -92.066584312206729, 29.583824677786726 ], [ -92.105864088710973, 29.586244985001272 ], [ -92.158509900275689, 29.581606062840059 ], [ -92.212519592969016, 29.562445297391555 ], [ -92.251799369473275, 29.539452378853355 ], [ -92.280440873174285, 29.533401610816988 ], [ -92.309355153101023, 29.532998226281229 ], [ -92.347271048476642, 29.539452378853355 ], [ -92.402099069847139, 29.551352222658213 ], [ -92.473566440986815, 29.561033451516401 ], [ -92.558672623412676, 29.569907911303076 ], [ -92.616228407040424, 29.578782371089751 ], [ -92.61759228816905, 29.57918575562551 ], [ -92.653598749964601, 29.588060215412185 ], [ -92.744160456904936, 29.61750728652251 ], [ -92.871274178092278, 29.669947276171044 ], [ -92.940559339426159, 29.701007885424403 ], [ -92.974383591415915, 29.713916190568654 ], [ -93.065218074581992, 29.740942954464437 ], [ -93.0881312775428, 29.749212337447474 ], [ -93.177056327128795, 29.770390025574763 ], [ -93.22697437643626, 29.777449254950525 ], [ -93.267345257843402, 29.778054331754163 ], [ -93.295441209092971, 29.775028947735983 ], [ -93.342085943691757, 29.763330796199 ], [ -93.345086482174722, 29.759700335377179 ], [ -93.347268691980517, 29.759095258573545 ], [ -93.372091328521392, 29.763129103931121 ], [ -93.43892150382375, 29.768978179699612 ], [ -93.475200741845029, 29.769179871967491 ], [ -93.538484826212979, 29.763330796199 ], [ -93.590857861551967, 29.7556664900196 ], [ -93.635320386344972, 29.752842798269295 ], [ -93.683601778298112, 29.747195414768683 ], [ -93.741975890603015, 29.73630403230322 ], [ -93.765980198466721, 29.729446495195333 ], [ -93.799258898005036, 29.715328036443807 ], [ -93.818898786257165, 29.704033269442586 ], [ -93.837993122057838, 29.690519887494695 ], [ -93.892275590976908, 29.765146026609912 ], [ -93.898549444168552, 29.771600179182037 ], [ -93.890638933622554, 29.843200934279068 ], [ -93.840720884315076, 29.91439830484034 ], [ -93.789438953878985, 29.987814290348282 ], [ -93.756705806792112, 30.014235977440428 ], [ -93.752068610954808, 30.016454592387095 ], [ -93.722608778576628, 30.050943970194396 ], [ -93.721517673673731, 30.051952431533792 ], [ -93.711970505773394, 30.067281043892592 ], [ -93.695603932229957, 30.135654722703563 ], [ -93.695331156004229, 30.147554566508418 ], [ -93.711970505773394, 30.194347172656336 ], [ -93.71633492538497, 30.24436685509032 ], [ -93.720699344996561, 30.296000075667337 ], [ -93.723699883479526, 30.294991614327941 ], [ -93.7359748136371, 30.299428844221275 ], [ -93.765707422241007, 30.333313145224942 ], [ -93.757524135469282, 30.390392057034688 ], [ -93.751523058503352, 30.396241132803176 ], [ -93.741703114377302, 30.40309866991106 ], [ -93.702696114098785, 30.429923741538964 ], [ -93.698331694487194, 30.43859650905776 ], [ -93.697786142035739, 30.44384050802261 ], [ -93.710061072193326, 30.50636511106509 ], [ -93.740066457022948, 30.538837566193603 ], [ -93.727791526865374, 30.57413371307242 ], [ -93.57831015516868, 30.802045975775645 ], [ -93.563307462753855, 30.81858474174172 ], [ -93.55867026691655, 30.868806116443579 ], [ -93.55867026691655, 30.869411193247217 ], [ -93.554851399756416, 30.876672114890859 ], [ -93.554578623530688, 30.877478883962375 ], [ -93.53084709189271, 30.924473182378172 ], [ -93.540394259793047, 31.008175473547944 ], [ -93.527573777184017, 31.07453222968012 ], [ -93.53166542056988, 31.18082405485233 ], [ -93.535211511504286, 31.185664669281429 ], [ -93.548850322790486, 31.186673130620822 ], [ -93.55266918995062, 31.185664669281429 ], [ -93.55266918995062, 31.185664669281429 ], [ -93.579128483845835, 31.167512365172321 ], [ -93.588402875520458, 31.16549544249353 ], [ -93.598768372097965, 31.174773286815963 ], [ -93.599586700775134, 31.176386824958996 ], [ -93.602314463032371, 31.181832516191726 ], [ -93.607224435095404, 31.204825434729926 ], [ -93.608042763772573, 31.22781835326813 ], [ -93.614316616964231, 31.260895885200277 ], [ -93.620863246381603, 31.271383883129985 ], [ -93.644322001793853, 31.277031266630594 ], [ -93.671599624366252, 31.29962080063304 ], [ -93.640775910859446, 31.372633401605224 ], [ -93.67023574323764, 31.387155244892508 ], [ -93.695876708455671, 31.409341394359195 ], [ -93.729700960445442, 31.488001378831989 ], [ -93.798167793102152, 31.53398721590839 ], [ -93.818626010031437, 31.554761519499927 ], [ -93.834992583574873, 31.586225513289044 ], [ -93.834992583574873, 31.586225513289044 ], [ -93.826263744351706, 31.614865815327853 ], [ -93.816989352677098, 31.671743034869721 ], [ -93.812352156839793, 31.715308564731579 ], [ -93.839902555637906, 31.800624394044377 ], [ -93.878091227239253, 31.844189923906232 ], [ -93.889275052493929, 31.856896536782607 ], [ -93.920371542226462, 31.888562222839603 ], [ -93.932100919932594, 31.893604529536578 ], [ -93.975472339822687, 31.923656677450545 ], [ -94.015570445004101, 31.979928820188775 ], [ -94.0428480675765, 31.999291277905151 ], [ -94.042575291350772, 32.055966805179139 ], [ -94.042302515125044, 32.119903254096769 ], [ -94.042575291350772, 32.138055558205878 ], [ -94.042575291350772, 32.158023092725898 ], [ -94.042575291350772, 32.166897552512566 ], [ -94.042575291350772, 32.166897552512566 ], [ -94.042575291350772, 32.195941239087141 ], [ -94.042575291350772, 32.218127388553825 ], [ -94.0428480675765, 32.269558916862962 ], [ -94.0428480675765, 32.269760609130842 ], [ -94.0428480675765, 32.363547513694556 ], [ -94.0428480675765, 32.373430434820619 ], [ -94.0428480675765, 32.392187815733365 ], [ -94.0428480675765, 32.399852121912765 ], [ -94.0428480675765, 32.400658890984282 ], [ -94.043120843802228, 32.435551653327344 ], [ -94.0428480675765, 32.439988883220678 ], [ -94.0428480675765, 32.4704444156704 ], [ -94.0428480675765, 32.471251184741917 ], [ -94.0428480675765, 32.47286472288495 ], [ -94.043120843802228, 32.477907029581928 ], [ -94.0428480675765, 32.480327336796471 ], [ -94.043120843802228, 32.484361182154053 ], [ -94.043120843802228, 32.486579797100717 ], [ -94.0428480675765, 32.49283225740497 ], [ -94.0428480675765, 32.505135485745583 ], [ -94.043120843802228, 32.5136065609965 ], [ -94.043120843802228, 32.559592398072908 ], [ -94.043120843802228, 32.564231320234121 ], [ -94.0428480675765, 32.610217157310522 ], [ -94.0428480675765, 32.618284848025681 ], [ -94.0428480675765, 32.621915308847505 ], [ -94.0428480675765, 32.640269305224486 ], [ -94.0428480675765, 32.643496381510552 ], [ -94.0428480675765, 32.655194533047535 ], [ -94.043120843802228, 32.693112679408777 ], [ -94.043120843802228, 32.693112679408777 ], [ -94.0428480675765, 32.767940510791874 ], [ -94.043120843802228, 32.776814970578542 ], [ -94.0428480675765, 32.780647123668246 ], [ -94.0428480675765, 32.785286045829459 ], [ -94.0428480675765, 32.786899583972492 ], [ -94.043120843802228, 32.7973875819022 ], [ -94.0428480675765, 32.871408644213773 ], [ -94.043120843802228, 32.880484796268327 ], [ -94.0428480675765, 32.880888180804085 ], [ -94.0428480675765, 32.881089873071964 ], [ -94.0428480675765, 32.892788024608947 ], [ -94.0428480675765, 32.898838792645314 ], [ -94.043120843802228, 32.90993186737866 ], [ -94.043120843802228, 32.937967092613832 ], [ -94.043120843802228, 32.955514319919303 ], [ -94.0428480675765, 33.019249076569054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "10", "geo_id": "0400000US27", "fips_state": "27", "name": "Minnesota", "iso_3166_2": "MN", "census": 5303925, "pop_estimataes_base": 5303925, "pop_2010": 5310418, "pop_2011": 5348036, "pop_2012": 5380615, "pop_2013": 5422060, "pop_2014": 5457173 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.217704697753902, 43.500591161434976 ], [ -91.369368279256406, 43.500792853702855 ], [ -91.371550489062201, 43.500994545970734 ], [ -91.377006013576676, 43.500389469167096 ], [ -91.441653979073237, 43.500389469167096 ], [ -91.446018398684828, 43.500591161434976 ], [ -91.461293867325367, 43.500591161434976 ], [ -91.465112734485501, 43.500591161434976 ], [ -91.49102647592926, 43.500591161434976 ], [ -91.533852343367926, 43.500591161434976 ], [ -91.541217301462467, 43.500591161434976 ], [ -91.551037245588532, 43.500591161434976 ], [ -91.591135350769946, 43.500591161434976 ], [ -91.610775239022075, 43.500591161434976 ], [ -91.610775239022075, 43.500591161434976 ], [ -91.615412434859365, 43.500591161434976 ], [ -91.616776315987991, 43.500591161434976 ], [ -91.617321868439433, 43.500591161434976 ], [ -91.620867959373854, 43.500591161434976 ], [ -91.625505155211158, 43.500792853702855 ], [ -91.634233994434325, 43.500389469167096 ], [ -91.634506770660039, 43.500389469167096 ], [ -91.635597875562951, 43.500389469167096 ], [ -91.639689518948799, 43.500591161434976 ], [ -91.64487226723756, 43.500591161434976 ], [ -91.651418896654931, 43.500389469167096 ], [ -91.658511078523759, 43.500591161434976 ], [ -91.670786008681318, 43.500591161434976 ], [ -91.700791393510968, 43.500591161434976 ], [ -91.730251225889134, 43.500591161434976 ], [ -91.730251225889134, 43.500591161434976 ], [ -91.733251764372113, 43.500591161434976 ], [ -91.736525079080792, 43.500591161434976 ], [ -91.738434512660859, 43.500591161434976 ], [ -91.761347715621667, 43.500591161434976 ], [ -91.777714289165104, 43.500792853702855 ], [ -91.779350946519443, 43.500792853702855 ], [ -91.804991911737488, 43.500792853702855 ], [ -91.807174121543284, 43.500591161434976 ], [ -91.824904576215346, 43.500591161434976 ], [ -91.94192557705091, 43.500591161434976 ], [ -91.949836087596893, 43.500389469167096 ], [ -92.079677571041486, 43.500591161434976 ], [ -92.0799503472672, 43.500591161434976 ], [ -92.090043067618979, 43.500591161434976 ], [ -92.103954655130906, 43.500792853702855 ], [ -92.178968117204988, 43.500792853702855 ], [ -92.198880781682831, 43.500591161434976 ], [ -92.27744033469132, 43.500389469167096 ], [ -92.27907699204566, 43.500389469167096 ], [ -92.368820370308839, 43.500389469167096 ], [ -92.388187482335226, 43.500389469167096 ], [ -92.406190713233002, 43.500389469167096 ], [ -92.408918475490253, 43.500591161434976 ], [ -92.449016580671667, 43.500389469167096 ], [ -92.46456482553792, 43.500389469167096 ], [ -92.553217098898187, 43.500389469167096 ], [ -92.553217098898187, 43.500389469167096 ], [ -92.649234330353011, 43.499986084631338 ], [ -92.653325973738873, 43.499986084631338 ], [ -92.672693085765275, 43.499986084631338 ], [ -92.689059659308697, 43.499986084631338 ], [ -92.692878526468832, 43.499986084631338 ], [ -92.707335666432215, 43.499986084631338 ], [ -92.752070967450933, 43.499986084631338 ], [ -92.79025963905228, 43.49958270009558 ], [ -92.870183073189395, 43.49958270009558 ], [ -93.007935067179972, 43.49958270009558 ], [ -93.024301640723394, 43.49958270009558 ], [ -93.024301640723394, 43.49958270009558 ], [ -93.049124277264269, 43.49958270009558 ], [ -93.228883810016328, 43.49958270009558 ], [ -93.271709677454993, 43.499381007827701 ], [ -93.399096174868063, 43.49958270009558 ], [ -93.428556007246243, 43.499381007827701 ], [ -93.468654112427657, 43.499381007827701 ], [ -93.47274575581352, 43.499381007827701 ], [ -93.482020147488129, 43.49958270009558 ], [ -93.488294000679787, 43.499381007827701 ], [ -93.497295616128667, 43.499381007827701 ], [ -93.497295616128667, 43.499381007827701 ], [ -93.528392105861201, 43.499381007827701 ], [ -93.532210973021336, 43.499381007827701 ], [ -93.55867026691655, 43.49958270009558 ], [ -93.576673497814326, 43.49958270009558 ], [ -93.617044379221468, 43.49958270009558 ], [ -93.648413645179716, 43.49958270009558 ], [ -93.699422799390092, 43.49958270009558 ], [ -93.704878323904566, 43.49958270009558 ], [ -93.708697191064701, 43.49958270009558 ], [ -93.71633492538497, 43.49958270009558 ], [ -93.794348925942018, 43.49958270009558 ], [ -93.795712807070629, 43.49958270009558 ], [ -93.970835143985383, 43.49958270009558 ], [ -93.970835143985383, 43.49958270009558 ], [ -94.092766116883979, 43.500389469167096 ], [ -94.094402774238318, 43.500389469167096 ], [ -94.108041585524518, 43.500389469167096 ], [ -94.109951019104585, 43.500187776899217 ], [ -94.24797578932089, 43.500389469167096 ], [ -94.377544496539741, 43.500389469167096 ], [ -94.390637755374499, 43.500389469167096 ], [ -94.442738014487759, 43.500591161434976 ], [ -94.442738014487759, 43.500591161434976 ], [ -94.447102434099349, 43.500591161434976 ], [ -94.470288413285886, 43.500389469167096 ], [ -94.56085012022622, 43.500389469167096 ], [ -94.565760092289253, 43.500389469167096 ], [ -94.615950917822445, 43.500591161434976 ], [ -94.854630115330878, 43.500591161434976 ], [ -94.857903430039556, 43.500591161434976 ], [ -94.860085639845352, 43.500591161434976 ], [ -94.872633346228653, 43.500591161434976 ], [ -94.874270003582993, 43.500591161434976 ], [ -94.88736326241775, 43.500591161434976 ], [ -94.914640884990135, 43.500389469167096 ], [ -94.914640884990135, 43.500389469167096 ], [ -94.914913661215863, 43.500389469167096 ], [ -94.914913661215863, 43.500389469167096 ], [ -94.934553549467978, 43.500389469167096 ], [ -94.954466213945835, 43.500389469167096 ], [ -94.974378878423678, 43.500591161434976 ], [ -94.99456431912725, 43.500591161434976 ], [ -95.014204207379365, 43.500792853702855 ], [ -95.034116871857208, 43.500792853702855 ], [ -95.053483983883609, 43.500792853702855 ], [ -95.054302312560779, 43.500792853702855 ], [ -95.114858634671492, 43.500591161434976 ], [ -95.122769145217489, 43.500792853702855 ], [ -95.16723167001048, 43.500792853702855 ], [ -95.167777222461922, 43.500792853702855 ], [ -95.180324928845238, 43.500792853702855 ], [ -95.214967509512164, 43.500792853702855 ], [ -95.250701195082002, 43.500389469167096 ], [ -95.250973971307729, 43.500389469167096 ], [ -95.374814377786379, 43.500389469167096 ], [ -95.375359930237835, 43.500389469167096 ], [ -95.387907636621122, 43.500187776899217 ], [ -95.387907636621122, 43.500187776899217 ], [ -95.387907636621122, 43.500187776899217 ], [ -95.434279594994194, 43.500389469167096 ], [ -95.434279594994194, 43.500389469167096 ], [ -95.454465035697766, 43.500591161434976 ], [ -95.454737811923493, 43.500591161434976 ], [ -95.454737811923493, 43.500591161434976 ], [ -95.475196028852778, 43.500389469167096 ], [ -95.486652630333197, 43.500187776899217 ], [ -95.48692540655891, 43.500187776899217 ], [ -95.514748581582751, 43.499784392363459 ], [ -95.740880072707881, 43.499986084631338 ], [ -95.741698401385051, 43.499986084631338 ], [ -95.821349059296438, 43.499986084631338 ], [ -95.834442318131181, 43.499986084631338 ], [ -95.860901612026396, 43.499986084631338 ], [ -95.861174388252124, 43.499986084631338 ], [ -96.05320885116177, 43.500187776899217 ], [ -96.198598579472616, 43.500389469167096 ], [ -96.19887135569833, 43.500389469167096 ], [ -96.208691299824395, 43.500389469167096 ], [ -96.331986153851602, 43.500389469167096 ], [ -96.351080489652276, 43.500389469167096 ], [ -96.453098798073029, 43.500389469167096 ], [ -96.453371574298743, 43.587117144355048 ], [ -96.453371574298743, 43.588125605694444 ], [ -96.453371574298743, 43.607488063410827 ], [ -96.453371574298743, 43.609908370625369 ], [ -96.453371574298743, 43.675054973150274 ], [ -96.453371574298743, 43.689576816437565 ], [ -96.453371574298743, 43.791431411716431 ], [ -96.453098798073029, 43.805146485932205 ], [ -96.453371574298743, 43.84951878486558 ], [ -96.453371574298743, 43.84951878486558 ], [ -96.453371574298743, 43.84951878486558 ], [ -96.453371574298743, 43.876948933297115 ], [ -96.453371574298743, 43.878562471440148 ], [ -96.453098798073029, 43.878562471440148 ], [ -96.453371574298743, 43.949154765197783 ], [ -96.453371574298743, 43.950768303340809 ], [ -96.453098798073029, 43.966500300235374 ], [ -96.453371574298743, 43.967105377039005 ], [ -96.453371574298743, 43.977996759504478 ], [ -96.453371574298743, 43.980215374451141 ], [ -96.453371574298743, 43.99292198732752 ], [ -96.453371574298743, 43.994737217738425 ], [ -96.453098798073029, 44.006838753811166 ], [ -96.453098798073029, 44.008855676489958 ], [ -96.453371574298743, 44.023780904313 ], [ -96.453371574298743, 44.025394442456033 ], [ -96.453371574298743, 44.036487517189371 ], [ -96.453098798073029, 44.038302747600284 ], [ -96.452826021847301, 44.196832870153145 ], [ -96.452826021847301, 44.196832870153145 ], [ -96.452553245621573, 44.254516858766529 ], [ -96.452553245621573, 44.255323627838038 ], [ -96.452280469395845, 44.269038702053813 ], [ -96.452280469395845, 44.272064086071993 ], [ -96.452553245621573, 44.282753776269587 ], [ -96.452553245621573, 44.285779160287767 ], [ -96.452280469395845, 44.297073927288992 ], [ -96.452280469395845, 44.298687465432025 ], [ -96.452280469395845, 44.311999155112034 ], [ -96.452280469395845, 44.313411000987188 ], [ -96.452280469395845, 44.32591592159568 ], [ -96.452280469395845, 44.32813453654235 ], [ -96.452280469395845, 44.340639457150843 ], [ -96.452280469395845, 44.342252995293876 ], [ -96.452280469395845, 44.345278379312063 ], [ -96.452280469395845, 44.354757915902368 ], [ -96.452280469395845, 44.360203607135105 ], [ -96.452007693170131, 44.383599910209064 ], [ -96.452007693170131, 44.389650678245431 ], [ -96.452007693170131, 44.441485591090327 ], [ -96.451734916944403, 44.460444664270945 ], [ -96.452280469395845, 44.470932662200653 ], [ -96.452007693170131, 44.472949584879444 ], [ -96.452007693170131, 44.506833885883111 ], [ -96.452007693170131, 44.516918499277054 ], [ -96.452280469395845, 44.526801420403125 ], [ -96.452007693170131, 44.543541878637079 ], [ -96.452007693170131, 44.543541878637079 ], [ -96.452007693170131, 44.544146955440709 ], [ -96.451734916944403, 44.630672938360789 ], [ -96.451734916944403, 44.631278015164426 ], [ -96.451734916944403, 44.631278015164426 ], [ -96.451462140718675, 44.703080462529336 ], [ -96.451462140718675, 44.76056275887484 ], [ -96.451462140718675, 44.761772912482115 ], [ -96.451734916944403, 44.77609306350152 ], [ -96.451734916944403, 44.790413214520925 ], [ -96.452007693170131, 44.792228444931837 ], [ -96.451734916944403, 44.797674136164567 ], [ -96.451462140718675, 44.805540134611846 ], [ -96.451462140718675, 44.805540134611846 ], [ -96.452007693170131, 44.890049194853134 ], [ -96.451734916944403, 44.906587960819209 ], [ -96.452007693170131, 44.910621806176785 ], [ -96.452280469395845, 44.962658411289553 ], [ -96.452007693170131, 44.977381946844716 ], [ -96.452007693170131, 44.977583639112595 ], [ -96.452280469395845, 45.042326857101742 ], [ -96.452280469395845, 45.050192855549028 ], [ -96.452280469395845, 45.051604701424182 ], [ -96.452280469395845, 45.093758385410879 ], [ -96.452007693170131, 45.095170231286033 ], [ -96.452553245621573, 45.122600379717568 ], [ -96.452280469395845, 45.124012225592722 ], [ -96.452280469395845, 45.178469137920047 ], [ -96.452280469395845, 45.203075594601273 ], [ -96.452280469395845, 45.204890825012185 ], [ -96.452280469395845, 45.208924670369768 ], [ -96.452826021847301, 45.268827273929816 ], [ -96.452826021847301, 45.269028966197695 ], [ -96.452826021847301, 45.284357578556495 ], [ -96.453098798073029, 45.298072652772262 ], [ -96.454189902975912, 45.301501421326208 ], [ -96.470010924067907, 45.326914647078958 ], [ -96.48910525986858, 45.357168487260807 ], [ -96.521838406955453, 45.375724175905667 ], [ -96.617855638410262, 45.407994938766301 ], [ -96.680321394101043, 45.410415245980843 ], [ -96.692596324258616, 45.417272783088734 ], [ -96.732694429440031, 45.458821390271794 ], [ -96.742514373566095, 45.478788924791814 ], [ -96.74551491204906, 45.488671845917885 ], [ -96.76515480030119, 45.521345993314277 ], [ -96.784794688553305, 45.541313527834291 ], [ -96.835531066537953, 45.586089211303424 ], [ -96.843987129535392, 45.593955209750703 ], [ -96.84425990576112, 45.594358594286462 ], [ -96.849442654049867, 45.598997516447675 ], [ -96.853534297435729, 45.602224592733741 ], [ -96.857625940821592, 45.606056745823437 ], [ -96.84425990576112, 45.639537662291346 ], [ -96.840713814826699, 45.645386738059841 ], [ -96.835803842763681, 45.649622275685296 ], [ -96.744969359597604, 45.701658880798064 ], [ -96.711145107607848, 45.717592569960502 ], [ -96.672683659780773, 45.732316105515665 ], [ -96.652225442851488, 45.746837948802948 ], [ -96.583213057743336, 45.820052242043019 ], [ -96.579666966808915, 45.825901317811507 ], [ -96.57666642832595, 45.840019776563032 ], [ -96.573120337391543, 45.861600849226079 ], [ -96.568755917779967, 45.888022536318225 ], [ -96.568210365328511, 45.891249612604284 ], [ -96.567937589102797, 45.898712226515812 ], [ -96.568210365328511, 45.902947764141274 ], [ -96.569028694005681, 45.911418839392184 ], [ -96.569301470231409, 45.911418839392184 ], [ -96.569301470231409, 45.914040838874612 ], [ -96.569028694005681, 45.914847607946129 ], [ -96.564391498168376, 45.921100068250375 ], [ -96.564391498168376, 45.926344067215226 ], [ -96.563300393265479, 45.935218527001901 ], [ -96.570392575134306, 45.963657136772838 ], [ -96.577211980777406, 46.021744509921973 ], [ -96.578030309454576, 46.026786816618952 ], [ -96.566300931748444, 46.051393273300185 ], [ -96.55920874987963, 46.058250810408069 ], [ -96.557026540073835, 46.064503270712315 ], [ -96.55484433026804, 46.084874189768087 ], [ -96.557844868751005, 46.102421417073558 ], [ -96.578303085680304, 46.170190019080891 ], [ -96.585668043774845, 46.177249248456654 ], [ -96.599034078835317, 46.263775231376727 ], [ -96.598215750158147, 46.312584760203436 ], [ -96.631494449696461, 46.353729982850744 ], [ -96.669683121297808, 46.384588899836224 ], [ -96.722056156636796, 46.440054273502938 ], [ -96.716327855896594, 46.444491503396279 ], [ -96.738968282631689, 46.54372409919273 ], [ -96.782885254973237, 46.630451774380674 ], [ -96.782885254973237, 46.630451774380674 ], [ -96.782885254973237, 46.630653466648553 ], [ -96.784249136101863, 46.686723917118911 ], [ -96.801979590773911, 46.812378200007501 ], [ -96.767337010106971, 46.90515664323182 ], [ -96.780157492716, 46.928351254037906 ], [ -96.791614094196404, 46.934200329806387 ], [ -96.82325613638038, 46.970908322560362 ], [ -96.824620017508991, 46.993296164294932 ], [ -96.82325613638038, 46.99995200913493 ], [ -96.824892793734719, 47.125001215219889 ], [ -96.826529451089058, 47.150616133240518 ], [ -96.83307608050643, 47.237545500696349 ], [ -96.83307608050643, 47.238150577499979 ], [ -96.852715968758559, 47.374897935121922 ], [ -96.862263136658896, 47.422295618073477 ], [ -96.853807073661457, 47.499543756671116 ], [ -96.853261521210015, 47.503980986564457 ], [ -96.842350472181053, 47.508216524189912 ], [ -96.85107931140422, 47.598372967931809 ], [ -96.88572189207116, 47.66432633952823 ], [ -96.890631864134178, 47.672192337975503 ], [ -96.980375242397344, 47.815595540437442 ], [ -97.000287906875201, 47.860976300710213 ], [ -97.023201109836009, 47.873884605854471 ], [ -97.088121851558299, 48.059441492303108 ], [ -97.098214571910091, 48.07134133610797 ], [ -97.123037208450967, 48.109461174737092 ], [ -97.147587068766114, 48.170573931904414 ], [ -97.147587068766114, 48.173195931386843 ], [ -97.147314292540386, 48.193768542710501 ], [ -97.147041516314658, 48.242981456072968 ], [ -97.143222649154524, 48.246611916894786 ], [ -97.134493809931371, 48.249637300912966 ], [ -97.129856614094052, 48.249637300912966 ], [ -97.116490579033581, 48.279689448826936 ], [ -97.115672250356411, 48.323860055492432 ], [ -97.126856075611101, 48.342214051869412 ], [ -97.136403243511438, 48.352298665263362 ], [ -97.145677635186047, 48.397477733268246 ], [ -97.131493271448406, 48.406553885322801 ], [ -97.123309984676681, 48.421277420877963 ], [ -97.126856075611101, 48.520106632138656 ], [ -97.150587607249079, 48.539469089855032 ], [ -97.161225880052314, 48.543099550676857 ], [ -97.163135313632381, 48.543906319748373 ], [ -97.163135313632381, 48.543906319748373 ], [ -97.092486271169889, 48.682065523245456 ], [ -97.137494348414322, 48.749229048449152 ], [ -97.157679789117893, 48.787752271614039 ], [ -97.199414551653661, 48.881135791641995 ], [ -97.232693251191975, 48.946484086434779 ], [ -97.239239880609347, 48.967661774562067 ], [ -97.238421551932177, 48.98258700238511 ], [ -97.234057132320601, 48.997512230208159 ], [ -97.229147160257554, 49.000739306494218 ], [ -96.405362958571345, 48.999730845154822 ], [ -95.368813300820449, 48.998722383815426 ], [ -95.355720041985705, 48.998722383815426 ], [ -95.340990125796623, 48.998722383815426 ], [ -95.322986894898833, 48.998722383815426 ], [ -95.319986356415882, 48.998722383815426 ], [ -95.153592858724295, 48.998924076083306 ], [ -95.153320082498567, 49.184884347067708 ], [ -95.153320082498567, 49.250030949592613 ], [ -95.153320082498567, 49.305698015527206 ], [ -95.153320082498567, 49.30771493820599 ], [ -95.153320082498567, 49.308521707277507 ], [ -95.153320082498567, 49.309328476349023 ], [ -95.153320082498567, 49.343414469620569 ], [ -95.153320082498567, 49.343616161888448 ], [ -95.153320082498567, 49.354305852086036 ], [ -95.153320082498567, 49.365802311355139 ], [ -95.153320082498567, 49.367617541766045 ], [ -95.153320082498567, 49.369029387641199 ], [ -95.153320082498567, 49.383147846392724 ], [ -95.153320082498567, 49.384358 ], [ -95.126588012377624, 49.369432772176957 ], [ -95.058393955946642, 49.353095698478761 ], [ -95.014476983605093, 49.35632277476482 ], [ -94.988836018387047, 49.368827695373319 ], [ -94.957466752428786, 49.370239541248473 ], [ -94.909185360475661, 49.35027200672846 ], [ -94.824351954275528, 49.308925091813265 ], [ -94.797619884154571, 49.197792652211959 ], [ -94.773342800065151, 49.120746205882199 ], [ -94.750156820878615, 49.099770210022783 ], [ -94.750156820878615, 48.999932537422701 ], [ -94.719060331146096, 48.999932537422701 ], [ -94.68305386935053, 48.883959483392303 ], [ -94.68305386935053, 48.883354406588666 ], [ -94.690418827445086, 48.863790256604403 ], [ -94.690146051219358, 48.863386872068645 ], [ -94.690964379896528, 48.77807104275584 ], [ -94.690964379896528, 48.77807104275584 ], [ -94.646229078877809, 48.750035817520669 ], [ -94.645137973974911, 48.749027356181273 ], [ -94.628771400431475, 48.738741050519451 ], [ -94.53302694520238, 48.70122628869396 ], [ -94.468651755931532, 48.696385674264867 ], [ -94.431826965458811, 48.706671979926696 ], [ -94.416278720592544, 48.710907517552151 ], [ -94.388728321794432, 48.711915978891547 ], [ -94.308532111431589, 48.710302440748514 ], [ -94.290801656759541, 48.707680441266092 ], [ -94.260523495704177, 48.696385674264867 ], [ -94.251249104029569, 48.68347736912061 ], [ -94.250430775352399, 48.656652297492712 ], [ -94.250157999126685, 48.656248912956954 ], [ -94.244429698386483, 48.653425221206646 ], [ -94.224244257682898, 48.649593068116943 ], [ -94.126317592648022, 48.644349069152099 ], [ -94.052395235476837, 48.643945684616341 ], [ -93.840720884315076, 48.628617072257541 ], [ -93.834447031123432, 48.624986611435716 ], [ -93.8227176534173, 48.609052922273278 ], [ -93.806896632325305, 48.577588928484161 ], [ -93.805259974970966, 48.568311084161728 ], [ -93.811261051936896, 48.54229278160534 ], [ -93.818353233805723, 48.534426783158061 ], [ -93.818353233805723, 48.529989553264727 ], [ -93.81507991909703, 48.526560784710782 ], [ -93.794348925942018, 48.516072786781081 ], [ -93.771708499206923, 48.515871094513201 ], [ -93.756433030566384, 48.515266017709564 ], [ -93.662325232691643, 48.515669402245322 ], [ -93.544485903178909, 48.52918278419321 ], [ -93.46756300752476, 48.545721550159286 ], [ -93.46074360188166, 48.550562164588378 ], [ -93.456651958495797, 48.561856931589602 ], [ -93.456924734721525, 48.567100930554453 ], [ -93.461834706784558, 48.573958467662337 ], [ -93.46592635017042, 48.587270157342346 ], [ -93.464289692816067, 48.591707387235687 ], [ -93.403733370705368, 48.607641076398124 ], [ -93.366908580232632, 48.608246153201762 ], [ -93.347541468206231, 48.626600149578749 ], [ -93.254797551460115, 48.642735531009066 ], [ -93.207334488184145, 48.642533838741187 ], [ -93.18005686561176, 48.624986611435716 ], [ -93.142413746461855, 48.624986611435716 ], [ -93.088404053768514, 48.627608610918145 ], [ -92.980384668381845, 48.624986611435716 ], [ -92.728066659587228, 48.539267397587153 ], [ -92.657963169576178, 48.546326626962923 ], [ -92.635049966615369, 48.542897858408978 ], [ -92.625775574940761, 48.518089709459865 ], [ -92.625230022489319, 48.513047402762894 ], [ -92.625502798715033, 48.512845710495014 ], [ -92.631231099455235, 48.508206788333794 ], [ -92.631231099455235, 48.508005096065915 ], [ -92.627139456069386, 48.503366173904702 ], [ -92.636686623969723, 48.499332328547126 ], [ -92.661509260510599, 48.496508636796818 ], [ -92.684968015922848, 48.497517098136214 ], [ -92.698879603434762, 48.494895098653785 ], [ -92.712518414720961, 48.46302772032891 ], [ -92.687968554405813, 48.443866954880406 ], [ -92.65605373599611, 48.43680772550465 ], [ -92.575584749407554, 48.440841570862226 ], [ -92.537123301580493, 48.447699107970109 ], [ -92.507390692976571, 48.447900800237989 ], [ -92.456381538766209, 48.414218191502201 ], [ -92.415192328681897, 48.293807907578461 ], [ -92.384368615175092, 48.242981456072968 ], [ -92.325176174193004, 48.236930688036594 ], [ -92.295170789363368, 48.276664064808749 ], [ -92.295716341814824, 48.278075910683903 ], [ -92.301444642555026, 48.288563908613611 ], [ -92.306354614618044, 48.316397441580904 ], [ -92.304445181037977, 48.323053286420915 ], [ -92.288896936171724, 48.343020820940929 ], [ -92.262164866050767, 48.354920664745791 ], [ -92.055127710726325, 48.359156202371246 ], [ -92.030850626636891, 48.325876978171216 ], [ -91.989661416552593, 48.260125298842681 ], [ -91.977659262620733, 48.247216993698423 ], [ -91.977386486395005, 48.246410224626906 ], [ -91.954473283434197, 48.251654223591757 ], [ -91.954473283434197, 48.251250839055999 ], [ -91.907555772609697, 48.238140841643869 ], [ -91.907010220158242, 48.237737457108111 ], [ -91.867730443653997, 48.218374999391727 ], [ -91.798172506094403, 48.200021003014747 ], [ -91.78971644309695, 48.197802388068077 ], [ -91.742253379820994, 48.204458232908081 ], [ -91.714975757248595, 48.199214233943231 ], [ -91.710611337637019, 48.19397023497838 ], [ -91.699427512382329, 48.144757321615913 ], [ -91.70815635160551, 48.12297455668498 ], [ -91.712247994991372, 48.116923788648613 ], [ -91.711975218765645, 48.11450348143407 ], [ -91.641053400077425, 48.097763023200116 ], [ -91.569858805163477, 48.093325793306775 ], [ -91.488025937446309, 48.068114259821904 ], [ -91.34018122310394, 48.073156566518875 ], [ -91.328724621623536, 48.070534567036454 ], [ -91.290263173796461, 48.073963335590392 ], [ -91.26625886593277, 48.078803950019491 ], [ -91.250165068615047, 48.084047948984342 ], [ -91.176242711443876, 48.125798248435288 ], [ -91.140781802099752, 48.1477827056341 ], [ -91.138326816068243, 48.151009781920159 ], [ -91.138599592293971, 48.151413166455917 ], [ -91.035762955196049, 48.189533005085039 ], [ -91.035490178970321, 48.189533005085039 ], [ -91.033035192938812, 48.190743158692314 ], [ -90.976843290439689, 48.219383460731123 ], [ -90.885463254822184, 48.245805147823269 ], [ -90.847274583220823, 48.244393301948122 ], [ -90.843728492286417, 48.243586532876606 ], [ -90.839091296449112, 48.239552687519023 ], [ -90.804175939556444, 48.177834853548063 ], [ -90.789718799593089, 48.143547168008638 ], [ -90.795174324107563, 48.13547947729348 ], [ -90.793810442978938, 48.13547947729348 ], [ -90.77607998830689, 48.122571172149222 ], [ -90.77607998830689, 48.122167787613463 ], [ -90.774170554726823, 48.118940711327404 ], [ -90.774170554726823, 48.118537326791646 ], [ -90.761622848343507, 48.098368100003754 ], [ -90.751530127991728, 48.090905486092225 ], [ -90.569861161659603, 48.107040867522542 ], [ -90.49566602826269, 48.099376561343149 ], [ -90.495393252036976, 48.099779945878907 ], [ -90.452021832146869, 48.105023944843751 ], [ -90.403194887742288, 48.105023944843751 ], [ -90.344275222985928, 48.09453594691405 ], [ -90.343456894308758, 48.095141023717687 ], [ -90.3371830411171, 48.099779945878907 ], [ -90.330090859248287, 48.102401945361329 ], [ -90.312360404576225, 48.10522563711163 ], [ -90.176517844165716, 48.112486558755279 ], [ -90.136146962758573, 48.112083174219521 ], [ -90.124963137503897, 48.10764594432618 ], [ -90.123872032601, 48.107040867522542 ], [ -90.091684437965569, 48.104620560307993 ], [ -90.073953983293521, 48.101191791754054 ], [ -90.0234903815346, 48.084653025787979 ], [ -89.997849416316555, 48.057626261892196 ], [ -89.993757772930692, 48.048953494373407 ], [ -89.996758311413657, 48.035440112425519 ], [ -89.992939444253523, 48.028380883049749 ], [ -89.968389583938375, 48.014464116566103 ], [ -89.897467765250155, 47.987639044938206 ], [ -89.873190681160722, 47.985420429991535 ], [ -89.847549715942677, 47.992479659367291 ], [ -89.819726540918836, 48.01506919336974 ], [ -89.764080190871155, 48.02293519181702 ], [ -89.749350274682058, 48.023338576352778 ], [ -89.724254861915455, 48.019909807798832 ], [ -89.687975623894175, 48.010833655744278 ], [ -89.655788029258758, 48.007606579458219 ], [ -89.564407993641254, 48.002967657297006 ], [ -89.489121755341444, 48.014464116566103 ], [ -89.491849517598695, 48.00518627224367 ], [ -89.495395608533101, 48.002362580493369 ], [ -89.541494790680446, 47.992883043903049 ], [ -89.551587511032224, 47.987235660402447 ], [ -89.55295139216085, 47.980781507830315 ], [ -89.555133601966645, 47.974932432061827 ], [ -89.572318504187251, 47.967268125882427 ], [ -89.588139525279232, 47.966259664543031 ], [ -89.595777259599501, 47.971100278972131 ], [ -89.611325504465754, 47.980781507830315 ], [ -89.624691539526225, 47.983201815044865 ], [ -89.631783721395067, 47.979974738758798 ], [ -89.636966469683813, 47.973520586186673 ], [ -89.640239784392492, 47.967873202686064 ], [ -89.639967008166764, 47.959805511970899 ], [ -89.638330350812424, 47.954359820738176 ], [ -89.639421455715336, 47.95355305166666 ], [ -89.660698001321791, 47.95113274445211 ], [ -89.697522791794512, 47.941249823326039 ], [ -89.729710386429943, 47.925316134163602 ], [ -89.737620896975926, 47.918256904787839 ], [ -89.758624666356667, 47.906962137786621 ], [ -89.793540023249335, 47.891431833159942 ], [ -89.854096345360048, 47.87408629812235 ], [ -89.871554023806368, 47.874287990390229 ], [ -89.923654282919642, 47.861984762049609 ], [ -89.93074646478847, 47.857749224424154 ], [ -89.927473150079777, 47.850891687316263 ], [ -89.934019779497163, 47.846857841958688 ], [ -89.974390660904305, 47.830520768260492 ], [ -90.013670437408535, 47.821444616205937 ], [ -90.042857493561002, 47.817612463116234 ], [ -90.072044549713453, 47.811158310544116 ], [ -90.072317325939181, 47.80772954199017 ], [ -90.075590640647874, 47.803292312096829 ], [ -90.08241004629096, 47.803695696632587 ], [ -90.088138347031162, 47.80309061982895 ], [ -90.116779850732172, 47.79542631364955 ], [ -90.132055319372711, 47.795628005917429 ], [ -90.160696823073721, 47.792804314167128 ], [ -90.178700053971511, 47.786350161594996 ], [ -90.187701669420392, 47.778080778611965 ], [ -90.229163655730432, 47.776265548201053 ], [ -90.248803543982547, 47.772836779647108 ], [ -90.295993831032789, 47.75912170543134 ], [ -90.306359327610295, 47.756701398216791 ], [ -90.313997061930564, 47.756701398216791 ], [ -90.323544229830901, 47.753676014198604 ], [ -90.330363635474015, 47.750852322448303 ], [ -90.33281862150551, 47.746415092554969 ], [ -90.38628276174741, 47.741171093590111 ], [ -90.393920496067679, 47.738347401839803 ], [ -90.421470894865791, 47.735120325553744 ], [ -90.437837468409228, 47.731691556999799 ], [ -90.441929111795076, 47.726447558034948 ], [ -90.458295685338527, 47.72140525133797 ], [ -90.537128014572744, 47.70305125496099 ], [ -90.551312378310371, 47.690344642084611 ], [ -90.584863854074428, 47.680663413226426 ], [ -90.64787516221665, 47.656258648813065 ], [ -90.686336610043725, 47.643552035936693 ], [ -90.735981883125476, 47.624391270488189 ], [ -90.868278352601564, 47.556824360748742 ], [ -90.907558129105809, 47.532822980871146 ], [ -90.910013115137332, 47.530200981388717 ], [ -90.909740338911604, 47.526167136031141 ], [ -90.914377534748908, 47.522738367477203 ], [ -90.919287506811941, 47.519712983459016 ], [ -90.928016346035108, 47.519107906655378 ], [ -90.939200171289784, 47.514468984494158 ], [ -91.023215248812761, 47.465054378863812 ], [ -91.023215248812761, 47.465054378863812 ], [ -91.033035192938812, 47.458196841755935 ], [ -91.045582899322113, 47.456583303612902 ], [ -91.07777049395753, 47.428749770645602 ], [ -91.097683158435387, 47.41382454282256 ], [ -91.106139221432812, 47.411807620143769 ], [ -91.128234095716465, 47.399706084071028 ], [ -91.131234634199416, 47.393655316034668 ], [ -91.14705565529141, 47.381553779961926 ], [ -91.156602823191747, 47.378730088211618 ], [ -91.169968858252219, 47.366225167603126 ], [ -91.188790417827164, 47.340005172778859 ], [ -91.206248096273498, 47.3291137903134 ], [ -91.238708467134643, 47.304910718167918 ], [ -91.250165068615047, 47.290590567148513 ], [ -91.262439998772635, 47.279295800147295 ], [ -91.265986089707042, 47.279497492415175 ], [ -91.270623285544346, 47.277077185200625 ], [ -91.288353740216394, 47.265984110467286 ], [ -91.325996859366299, 47.238957346571496 ], [ -91.353820034390139, 47.212737351747236 ], [ -91.357911677776002, 47.206686583710862 ], [ -91.374278251319424, 47.197812123924194 ], [ -91.387098733928454, 47.187324125994486 ], [ -91.398555335408858, 47.183895357440548 ], [ -91.418740776112429, 47.172197205903565 ], [ -91.452019475650758, 47.145170442007782 ], [ -91.456929447713776, 47.139119673971415 ], [ -91.477387664643075, 47.125606292023527 ], [ -91.497845881572374, 47.122580908005339 ], [ -91.507120273246983, 47.118547062647764 ], [ -91.518849650953115, 47.108059064718056 ], [ -91.57395044854934, 47.089906760608947 ], [ -91.591408126995674, 47.068729072481659 ], [ -91.600955294896011, 47.063485073516802 ], [ -91.605046938281873, 47.063283381248922 ], [ -91.613230225053584, 47.059249535891347 ], [ -91.62686903633977, 47.049971691568913 ], [ -91.63723453291729, 47.040492154978608 ], [ -91.644599491011832, 47.026575388494955 ], [ -91.660147735878098, 47.019314466851313 ], [ -91.666421589069742, 47.014272160154334 ], [ -91.704610260671103, 47.005196008099787 ], [ -91.737070631532248, 46.982808166365217 ], [ -91.777168736713662, 46.951747557111858 ], [ -91.780714827648069, 46.94589848134337 ], [ -91.79408086270854, 46.939646021039124 ], [ -91.806901345317556, 46.933796945270629 ], [ -91.825995681118229, 46.927141100430632 ], [ -91.83472452034141, 46.927141100430632 ], [ -91.841271149758768, 46.92512417775184 ], [ -91.871276534588404, 46.908383719517886 ], [ -91.883278688520249, 46.905761720035457 ], [ -91.906464667706786, 46.891239876748173 ], [ -91.914920730704239, 46.883777262836652 ], [ -91.953109402305586, 46.867036804602698 ], [ -91.985024220715275, 46.849691269565106 ], [ -91.998117479550018, 46.83879988709964 ], [ -92.013392948190557, 46.833757580402668 ], [ -92.058946577886459, 46.809957892792951 ], [ -92.062219892595152, 46.804108817024463 ], [ -92.086224200458844, 46.794427588166272 ], [ -92.094134711004841, 46.787771743326267 ], [ -92.088406410264639, 46.773653284574735 ], [ -92.064402102400948, 46.745416367071684 ], [ -92.025667878348145, 46.710926989264379 ], [ -92.015302381770624, 46.706489759371046 ], [ -92.020212353833671, 46.704069452156503 ], [ -92.024849549670961, 46.705682990299529 ], [ -92.034123941345584, 46.708910066585588 ], [ -92.089497515167537, 46.749248520161387 ], [ -92.116502361514208, 46.74864344335775 ], [ -92.170512054207535, 46.725650524819542 ], [ -92.172967040239058, 46.724440371212275 ], [ -92.189060837556767, 46.717582834104391 ], [ -92.19533469074841, 46.709716835657105 ], [ -92.196153019425594, 46.703867759888624 ], [ -92.196425795651322, 46.702859298549228 ], [ -92.196698571877036, 46.702052529477712 ], [ -92.194516362071255, 46.697615299584371 ], [ -92.193970809619799, 46.696606838244975 ], [ -92.193425257168343, 46.695194992369821 ], [ -92.187696956428141, 46.690152685672849 ], [ -92.187696956428141, 46.678857918671625 ], [ -92.190970271136834, 46.673210535171016 ], [ -92.191515823588276, 46.672605458367386 ], [ -92.197244124328478, 46.663327614044945 ], [ -92.202426872617238, 46.655058231061915 ], [ -92.207064068454542, 46.652032847043728 ], [ -92.212519592969016, 46.650015924364936 ], [ -92.221793984643639, 46.649814232097057 ], [ -92.222339537095081, 46.649612539829178 ], [ -92.228067837835283, 46.649612539829178 ], [ -92.231886704995418, 46.649410847561299 ], [ -92.232705033672602, 46.649410847561299 ], [ -92.234887243478383, 46.649410847561299 ], [ -92.242524977798666, 46.64920915529342 ], [ -92.250981040796091, 46.650015924364936 ], [ -92.254254355504784, 46.650419308900695 ], [ -92.256709341536293, 46.650621001168574 ], [ -92.262437642276495, 46.651226077972211 ], [ -92.264347075856563, 46.65142777024009 ], [ -92.270075376596765, 46.651831154775849 ], [ -92.274439796208355, 46.654251461990398 ], [ -92.276349229788423, 46.655259923329794 ], [ -92.277167558465592, 46.655663307865552 ], [ -92.292170250880417, 46.663327614044945 ], [ -92.291624698428961, 46.625006083147944 ], [ -92.291624698428961, 46.604635164092173 ], [ -92.292443027106131, 46.495519647169658 ], [ -92.292443027106131, 46.478779188935704 ], [ -92.292715803331859, 46.431986582787786 ], [ -92.292715803331859, 46.420893508054434 ], [ -92.292988579557573, 46.417263047232616 ], [ -92.292988579557573, 46.321862604525869 ], [ -92.292715803331859, 46.319240605043447 ], [ -92.292715803331859, 46.314601682882227 ], [ -92.292988579557573, 46.31379491381071 ], [ -92.292715803331859, 46.307139068970706 ], [ -92.292715803331859, 46.304315377220398 ], [ -92.292988579557573, 46.298062916916152 ], [ -92.292988579557573, 46.295037532897965 ], [ -92.293534132009029, 46.244009389124585 ], [ -92.293534132009029, 46.224646931408209 ], [ -92.293806908234757, 46.180072940206955 ], [ -92.293806908234757, 46.166761250526946 ], [ -92.293806908234757, 46.157281713936641 ], [ -92.293534132009029, 46.113917876342661 ], [ -92.294079684460485, 46.078420037195968 ], [ -92.294079684460485, 46.074386191838386 ], [ -92.306627390843772, 46.072369269159594 ], [ -92.326812831547343, 46.066520193391106 ], [ -92.443288279931465, 46.014685280546217 ], [ -92.65605373599611, 45.924528836804313 ], [ -92.707608442657943, 45.894880073426108 ], [ -92.721247253944128, 45.88378699869277 ], [ -92.734067736553158, 45.868055001798211 ], [ -92.76243646402844, 45.819245472971502 ], [ -92.76843754099437, 45.798067784844207 ], [ -92.784531338312078, 45.76418348384054 ], [ -92.80389845033848, 45.749863332821135 ], [ -92.840996017036929, 45.730097490569001 ], [ -92.863636443772009, 45.721828107585964 ], [ -92.869091968286483, 45.717592569960502 ], [ -92.884094660701308, 45.654866274650146 ], [ -92.885731318055647, 45.644176584452566 ], [ -92.888186304087156, 45.628444587558008 ], [ -92.886549646732817, 45.594963671090099 ], [ -92.88382188447558, 45.575399521105837 ], [ -92.87100140186655, 45.567533522658557 ], [ -92.823265562364867, 45.560877677818553 ], [ -92.803352897887024, 45.562491215961586 ], [ -92.72615722600716, 45.531027222172469 ], [ -92.680330820085544, 45.464267081504531 ], [ -92.664237022767821, 45.393271403211138 ], [ -92.704880680400692, 45.3265112625432 ], [ -92.732703855424532, 45.304123420808637 ], [ -92.746069890485003, 45.296055730093478 ], [ -92.751798191225205, 45.29262696153954 ], [ -92.760527030448372, 45.278911887323765 ], [ -92.765982554962847, 45.210134823977043 ], [ -92.767073659865744, 45.194201134814605 ], [ -92.792987401309517, 45.078429773052079 ], [ -92.79107796772945, 45.045755625655687 ], [ -92.768710317220098, 45.008039171562324 ], [ -92.750707086322308, 44.93724518553681 ], [ -92.76161813535127, 44.862013969617955 ], [ -92.761890911576984, 44.86080381601068 ], [ -92.765437002511405, 44.836197359329446 ], [ -92.784531338312078, 44.794043675342749 ], [ -92.802261792984126, 44.745637531051798 ], [ -92.802534569209854, 44.74523414651604 ], [ -92.737341051261836, 44.717198921280861 ], [ -92.73215830297309, 44.713770152726923 ], [ -92.632049428132405, 44.649026934737776 ], [ -92.621683931554898, 44.638942321343826 ], [ -92.619774497974831, 44.629261092485635 ], [ -92.549671007963781, 44.576014333765592 ], [ -92.534122763097514, 44.570366950264983 ], [ -92.491842448110305, 44.565929720371642 ], [ -92.357363768828435, 44.558467106460121 ], [ -92.340178866607815, 44.555240030174062 ], [ -92.328995041353139, 44.550802800280721 ], [ -92.319993425904244, 44.544953724512226 ], [ -92.316447334969837, 44.540718186886771 ], [ -92.313992348938314, 44.538096187404349 ], [ -92.303081299909365, 44.518733729687966 ], [ -92.302262971232196, 44.500379733310979 ], [ -92.291079145977506, 44.485454505487937 ], [ -92.276894782239879, 44.473554661683082 ], [ -92.241979425347211, 44.454192203966699 ], [ -92.233796138575485, 44.446326205519419 ], [ -92.22097565596647, 44.440477129750931 ], [ -92.11541125661131, 44.41607236533757 ], [ -92.084041990653063, 44.406189444211506 ], [ -92.046398871503158, 44.39449129267453 ], [ -91.972476514331987, 44.36685945197511 ], [ -91.963474898883092, 44.362018837546017 ], [ -91.925559003507459, 44.33358022777508 ], [ -91.918739597864374, 44.322688845309614 ], [ -91.887097555680384, 44.252499936087737 ], [ -91.887915884357568, 44.24644916805137 ], [ -91.893098632646314, 44.235154401050153 ], [ -91.892825856420586, 44.23112055569257 ], [ -91.875095401748538, 44.200665023242848 ], [ -91.862820471590965, 44.193000717063441 ], [ -91.807992450220468, 44.159318108327653 ], [ -91.740889498692383, 44.13390488257491 ], [ -91.721522386665981, 44.130274421753086 ], [ -91.672422666035672, 44.091347814052448 ], [ -91.591953679447116, 44.031445210492393 ], [ -91.57995152551527, 44.027007980599059 ], [ -91.559220532360257, 44.023982596580879 ], [ -91.546945602202669, 44.022167366169967 ], [ -91.506029168344085, 44.018738597616021 ], [ -91.463476077131162, 44.009057368757837 ], [ -91.437289559461647, 43.999981216703276 ], [ -91.432652363624356, 43.996754140417217 ], [ -91.420104657241041, 43.984249219808717 ], [ -91.363367202290476, 43.92656523119534 ], [ -91.310994166951474, 43.867469396706802 ], [ -91.298719236793914, 43.856578014241336 ], [ -91.284262096830531, 43.847098477651031 ], [ -91.262439998772635, 43.792238180787947 ], [ -91.268168299512837, 43.726486501459405 ], [ -91.273351047801583, 43.66839912831027 ], [ -91.268713851964279, 43.615354061858099 ], [ -91.265167761029858, 43.609908370625369 ], [ -91.217704697753902, 43.500591161434976 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "11", "geo_id": "0400000US28", "fips_state": "28", "name": "Mississippi", "iso_3166_2": "MS", "census": 2967297, "pop_estimataes_base": 2968103, "pop_2010": 2970811, "pop_2011": 2978464, "pop_2012": 2986137, "pop_2013": 2992206, "pop_2014": 2994079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.095505661621843, 30.231861934481827 ], [ -89.077229654498325, 30.231660242213948 ], [ -89.067136934146561, 30.250215930858811 ], [ -89.063863619437853, 30.246383777769111 ], [ -89.065227500566493, 30.239929625196986 ], [ -89.07341078733819, 30.223390859230911 ], [ -89.09141401823598, 30.202213171103619 ], [ -89.118146088356923, 30.223390859230911 ], [ -89.156607536183998, 30.230651780874553 ], [ -89.095505661621843, 30.231861934481827 ] ] ], [ [ [ -88.900470660229246, 30.224601012838182 ], [ -88.909745051903855, 30.220365475212724 ], [ -88.945478737473678, 30.20967578501514 ], [ -88.974665793626144, 30.207457170068473 ], [ -88.980121318140618, 30.20806224687211 ], [ -88.984212961526481, 30.210280861818777 ], [ -88.982303527946414, 30.211692707693928 ], [ -88.97684800343194, 30.21108763089029 ], [ -88.947933723505201, 30.214113014908477 ], [ -88.920383324707075, 30.220567167480603 ], [ -88.908926723226671, 30.225407781909698 ], [ -88.889832387425997, 30.239727932929107 ], [ -88.877830233494151, 30.242349932411532 ], [ -88.873738590108303, 30.241744855607894 ], [ -88.900470660229246, 30.224601012838182 ] ] ], [ [ [ -88.507127342735345, 30.214314707176356 ], [ -88.500035160866531, 30.214113014908477 ], [ -88.465665356425319, 30.202616555639374 ], [ -88.453390426267731, 30.201204709764223 ], [ -88.442752153464511, 30.202213171103619 ], [ -88.430204447081209, 30.208465631407865 ], [ -88.401562943380199, 30.210079169550898 ], [ -88.404563481863164, 30.206247016461198 ], [ -88.428295013501142, 30.198582710281798 ], [ -88.453663202493459, 30.196565787603006 ], [ -88.493488531449145, 30.206045324193319 ], [ -88.502762923123768, 30.210482554086653 ], [ -88.507127342735345, 30.214314707176356 ] ] ], [ [ [ -88.710618407125395, 30.250821007662445 ], [ -88.656881490657781, 30.233878857160615 ], [ -88.573139189360546, 30.222584090159394 ], [ -88.567956441071786, 30.222785782427273 ], [ -88.561955364105856, 30.227424704588486 ], [ -88.565501455040277, 30.222785782427273 ], [ -88.569047545974684, 30.221373936552119 ], [ -88.587323553098173, 30.219155321605449 ], [ -88.633695511471245, 30.226416243249091 ], [ -88.665883106106662, 30.22883655046364 ], [ -88.711709512028278, 30.242753316947287 ], [ -88.740623791955016, 30.238719471589711 ], [ -88.752898722112604, 30.238719471589711 ], [ -88.764082547367281, 30.241543163340015 ], [ -88.771993057913278, 30.245577008697595 ], [ -88.732440505183305, 30.246383777769111 ], [ -88.717983365219936, 30.252837930341236 ], [ -88.710618407125395, 30.250821007662445 ] ] ], [ [ [ -88.19998131257023, 34.995631609514987 ], [ -88.124967850496148, 34.902248089487024 ], [ -88.097963004149477, 34.892163476093074 ], [ -88.118421221078762, 34.724355509217787 ], [ -88.138606661782347, 34.589221689738878 ], [ -88.139152214233789, 34.587809843863724 ], [ -88.139970542910959, 34.581759075827357 ], [ -88.155246011551498, 34.46316402231453 ], [ -88.165611508129018, 34.383092191966583 ], [ -88.165884284354732, 34.380873577019912 ], [ -88.173522018675001, 34.320970973459865 ], [ -88.17597700470651, 34.302213592547119 ], [ -88.176795333383694, 34.293944209564081 ], [ -88.203527403504637, 34.086604558184511 ], [ -88.207346270664772, 34.058367640681453 ], [ -88.226440606465445, 33.912947515540722 ], [ -88.226440606465445, 33.911737361933454 ], [ -88.226440606465445, 33.911535669665575 ], [ -88.248262704523356, 33.744937856397556 ], [ -88.254536557714999, 33.698750327053268 ], [ -88.254536557714999, 33.695724943035088 ], [ -88.256173215069339, 33.682816637890831 ], [ -88.256445991295067, 33.682009868819321 ], [ -88.267084264098315, 33.594273732291967 ], [ -88.267084264098315, 33.592055117345296 ], [ -88.268175369001199, 33.584995887969541 ], [ -88.268993697678383, 33.576928197254375 ], [ -88.26953925012981, 33.572894351896799 ], [ -88.270084802581266, 33.570877429218008 ], [ -88.274721998418585, 33.533967744196161 ], [ -88.276904208224366, 33.51642051689069 ], [ -88.277449760675808, 33.512386671533108 ], [ -88.291088571962007, 33.399035616985138 ], [ -88.304454607022478, 33.288306561919583 ], [ -88.34046106881803, 32.991213851333882 ], [ -88.347826026912585, 32.929092632827157 ], [ -88.383014160030967, 32.626957615544477 ], [ -88.383014160030967, 32.626755923276598 ], [ -88.388742460771169, 32.578148086717768 ], [ -88.40374515318598, 32.449871804346749 ], [ -88.40374515318598, 32.44967011207887 ], [ -88.421475607858042, 32.30868721683148 ], [ -88.431841104435549, 32.227606925144137 ], [ -88.438660510078648, 32.172746628281061 ], [ -88.438660510078648, 32.172141551477424 ], [ -88.455027083622085, 32.040638192820339 ], [ -88.455027083622085, 32.039629731480943 ], [ -88.46866589490827, 31.933136214040854 ], [ -88.468938671133998, 31.930312522290549 ], [ -88.470029776036895, 31.893806221804457 ], [ -88.471120880939793, 31.851450845549877 ], [ -88.471120880939793, 31.851047461014119 ], [ -88.464301475296693, 31.697963029693987 ], [ -88.464301475296693, 31.697963029693987 ], [ -88.459664279459389, 31.623941967382407 ], [ -88.459391503233661, 31.621723352435737 ], [ -88.449571559107596, 31.435763081451338 ], [ -88.448753230430441, 31.42124123816405 ], [ -88.448753230430441, 31.420837853628296 ], [ -88.44520713949602, 31.35589294337127 ], [ -88.44520713949602, 31.35589294337127 ], [ -88.438114957627192, 31.231247121822072 ], [ -88.438114957627192, 31.230036968214797 ], [ -88.432113880661277, 31.114265606452278 ], [ -88.425840027469633, 31.001116244172181 ], [ -88.425840027469633, 31.000107782832785 ], [ -88.425567251243905, 30.998292552421873 ], [ -88.412473992409161, 30.735689219643469 ], [ -88.412201216183433, 30.731857066553765 ], [ -88.412201216183433, 30.730445220678615 ], [ -88.411655663731977, 30.712897993373147 ], [ -88.41138288750625, 30.706242148533139 ], [ -88.409473453926182, 30.668727386707651 ], [ -88.408109572797571, 30.637061700650655 ], [ -88.407564020346115, 30.631616009417925 ], [ -88.407564020346115, 30.62274154963125 ], [ -88.404017929411708, 30.545090026497849 ], [ -88.404017929411708, 30.543274796086941 ], [ -88.403472376960266, 30.533190182692991 ], [ -88.402381272057369, 30.510802340958428 ], [ -88.395016313962827, 30.369416061175276 ], [ -88.397198523768623, 30.367600830764367 ], [ -88.39910795734869, 30.36074329365648 ], [ -88.397198523768623, 30.354692525620109 ], [ -88.394197985285643, 30.352473910673446 ], [ -88.393925209059915, 30.34924683438738 ], [ -88.401290167154471, 30.344406219958287 ], [ -88.410019006377638, 30.342187605011617 ], [ -88.418747845600805, 30.353885756548596 ], [ -88.434023314241344, 30.354692525620109 ], [ -88.446571020624646, 30.347834988512226 ], [ -88.446571020624646, 30.337750375118279 ], [ -88.453935978719187, 30.329682684403121 ], [ -88.471939209616963, 30.320001455544933 ], [ -88.480122496388674, 30.3183879174019 ], [ -88.504672356703836, 30.321413301420083 ], [ -88.506309014058189, 30.322421762759479 ], [ -88.506309014058189, 30.327464069456454 ], [ -88.522402811375883, 30.340170682332825 ], [ -88.536314398887811, 30.343397758618892 ], [ -88.57941304255219, 30.344204527690408 ], [ -88.596325168547082, 30.358322986441934 ], [ -88.599325707030033, 30.358928063245571 ], [ -88.601780693061556, 30.355902679227384 ], [ -88.613782846993402, 30.35307898747708 ], [ -88.624421119796637, 30.358726370977692 ], [ -88.663700896300881, 30.362155139531634 ], [ -88.679521917392861, 30.355700986959505 ], [ -88.692069623776163, 30.347229911708588 ], [ -88.700525686773602, 30.343599450886771 ], [ -88.714164498059802, 30.342187605011617 ], [ -88.728894414248884, 30.342590989547375 ], [ -88.746897645146674, 30.347633296244346 ], [ -88.77172028168755, 30.365382215817696 ], [ -88.811545610643236, 30.384946365801955 ], [ -88.812636715546134, 30.38777005755226 ], [ -88.810181729514625, 30.391198826106205 ], [ -88.810181729514625, 30.394627594660147 ], [ -88.823820540800824, 30.402291900839547 ], [ -88.841278219247158, 30.409552822483189 ], [ -88.84564263885872, 30.40531728485773 ], [ -88.857917569016308, 30.392812364249234 ], [ -88.851370939598922, 30.375265136943767 ], [ -88.880557995751388, 30.386559903944988 ], [ -88.883831310460081, 30.389181903427414 ], [ -88.884922415362979, 30.392005595177721 ], [ -88.89392403081186, 30.393417441052872 ], [ -88.922019982061428, 30.39382082558863 ], [ -88.971119702691738, 30.390795441570447 ], [ -89.016400556161898, 30.383937904462563 ], [ -89.083230731464255, 30.368004215300125 ], [ -89.186885697239347, 30.33129622254615 ], [ -89.22043717300339, 30.322421762759479 ], [ -89.271719103439494, 30.305479612257646 ], [ -89.285630690951407, 30.303059305043099 ], [ -89.29135899169161, 30.303260997310979 ], [ -89.294359530174575, 30.307496534936433 ], [ -89.291904544143051, 30.328069146260091 ], [ -89.287812900757189, 30.333111452957063 ], [ -89.281539047565559, 30.331901299349788 ], [ -89.279902390211205, 30.349851911191017 ], [ -89.292450096594507, 30.365583908085576 ], [ -89.315090523329587, 30.375466829211646 ], [ -89.3358215164846, 30.374054983336492 ], [ -89.34100426477336, 30.372844829729218 ], [ -89.349460327770799, 30.371029599318305 ], [ -89.353279194930934, 30.368810984371638 ], [ -89.363917467734169, 30.357314525102538 ], [ -89.366099677539964, 30.352070526137688 ], [ -89.345914236836393, 30.343599450886771 ], [ -89.338822054967579, 30.342994374083133 ], [ -89.332548201775921, 30.337952067386158 ], [ -89.322455481424129, 30.319396378741295 ], [ -89.322455481424129, 30.314959148847954 ], [ -89.329820439518684, 30.30285761277522 ], [ -89.344823131933495, 30.293176383917029 ], [ -89.358461943219694, 30.28894084629157 ], [ -89.365826901314236, 30.284907000933991 ], [ -89.379465712600435, 30.270385157646707 ], [ -89.383830132212012, 30.267763158164279 ], [ -89.419291041556136, 30.25424977621639 ], [ -89.42474656607061, 30.245375316429715 ], [ -89.424473789844882, 30.239122856125469 ], [ -89.430474866810812, 30.223189166963031 ], [ -89.44738699280569, 30.205036862853923 ], [ -89.447932545257146, 30.185271020601785 ], [ -89.461298580317617, 30.174783022672081 ], [ -89.463480790123398, 30.173976253600564 ], [ -89.469754643315042, 30.176194868547235 ], [ -89.475755720280972, 30.191523480906035 ], [ -89.480120139892563, 30.193742095852702 ], [ -89.490212860244341, 30.187691327816331 ], [ -89.503306119079099, 30.183052405655118 ], [ -89.522946007331214, 30.183052405655118 ], [ -89.524582664685568, 30.180833790708448 ], [ -89.572591280412965, 30.180833790708448 ], [ -89.580774567184676, 30.186279481941177 ], [ -89.607779413531347, 30.217138398926661 ], [ -89.643513099101185, 30.287730692684299 ], [ -89.643513099101185, 30.293176383917029 ], [ -89.640785336843948, 30.301244074632187 ], [ -89.629874287814999, 30.321009916884325 ], [ -89.629874287814999, 30.339363913261309 ], [ -89.683338428056885, 30.45170650646989 ], [ -89.690703386151426, 30.458765735845656 ], [ -89.724527638141183, 30.491843267777803 ], [ -89.732710924912908, 30.49244834458144 ], [ -89.760534099936734, 30.515844647655399 ], [ -89.806906058309806, 30.572116790393629 ], [ -89.823272631853243, 30.608623090879725 ], [ -89.842639743879644, 30.666105387225226 ], [ -89.842639743879644, 30.666105387225226 ], [ -89.826273170336208, 30.736495988714985 ], [ -89.789993932314928, 30.851460581405991 ], [ -89.773354582545778, 30.897648110750275 ], [ -89.770899596514255, 30.899463341161184 ], [ -89.756442456550886, 30.900471802500576 ], [ -89.744713078844768, 30.919027491145442 ], [ -89.728346505301317, 30.971064096258214 ], [ -89.728073729075589, 31.002326397779452 ], [ -89.728073729075589, 31.002528090047331 ], [ -89.73243814868718, 31.004746704993998 ], [ -89.752623589390751, 31.001923013243697 ], [ -89.816453226210143, 31.002124705511577 ], [ -89.824636512981868, 31.002124705511577 ], [ -89.835547562010817, 31.002124705511577 ], [ -89.835820338236545, 31.002124705511577 ], [ -89.856824107617285, 31.002124705511577 ], [ -89.892830569412837, 31.001721320975818 ], [ -89.897467765250155, 31.001923013243697 ], [ -89.923108730468201, 31.001519628707939 ], [ -89.927200373854049, 31.001519628707939 ], [ -89.972754003549952, 31.00131793644006 ], [ -89.975481765807189, 31.001721320975818 ], [ -90.005214374411096, 31.00131793644006 ], [ -90.022126500405989, 31.00131793644006 ], [ -90.02949145850053, 31.001116244172181 ], [ -90.050768004106999, 31.001116244172181 ], [ -90.128509228438304, 31.001116244172181 ], [ -90.131509766921269, 31.000914551904302 ], [ -90.164242914008142, 31.001116244172181 ], [ -90.164788466459584, 31.000914551904302 ], [ -90.259441816785795, 31.000712859636423 ], [ -90.345911880340267, 31.000309475100664 ], [ -90.347275761468893, 31.000309475100664 ], [ -90.347275761468893, 31.000309475100664 ], [ -90.369370635752517, 31.000309475100664 ], [ -90.422016447317247, 30.999906090564906 ], [ -90.426926419380266, 30.999704398297027 ], [ -90.437291915957786, 30.999704398297027 ], [ -90.441656335569363, 30.999704398297027 ], [ -90.442474664246532, 30.999704398297027 ], [ -90.474116706430507, 30.999704398297027 ], [ -90.476026140010575, 30.999704398297027 ], [ -90.4773900211392, 30.999704398297027 ], [ -90.485846084136639, 30.999704398297027 ], [ -90.486664412813809, 30.999704398297027 ], [ -90.547493511150236, 30.999704398297027 ], [ -90.567133399402366, 30.999704398297027 ], [ -90.583499972945802, 30.999704398297027 ], [ -90.584318301622972, 30.999704398297027 ], [ -90.587318840105937, 30.999704398297027 ], [ -90.588682721234562, 30.999704398297027 ], [ -90.648693490893805, 30.999502706029148 ], [ -90.651148476925329, 30.999502706029148 ], [ -90.734345225771122, 30.999301013761269 ], [ -90.73461800199685, 30.999301013761269 ], [ -90.758895086086284, 30.999502706029148 ], [ -90.769260582663776, 30.999301013761269 ], [ -90.77607998830689, 30.999502706029148 ], [ -90.779898855467025, 30.999502706029148 ], [ -90.783717722627159, 30.999502706029148 ], [ -90.825725261388641, 30.999301013761269 ], [ -90.825998037614369, 30.999301013761269 ], [ -91.060312815511196, 30.99889762922551 ], [ -91.068223326057193, 30.99889762922551 ], [ -91.080771032440495, 30.99889762922551 ], [ -91.10804865501288, 30.99889762922551 ], [ -91.108321431238608, 30.99889762922551 ], [ -91.176242711443876, 30.999099321493389 ], [ -91.176242711443876, 30.999099321493389 ], [ -91.22397855094556, 30.999099321493389 ], [ -91.224796879622716, 30.999099321493389 ], [ -91.423650748175461, 30.99889762922551 ], [ -91.425832957981243, 30.999099321493389 ], [ -91.538762315430944, 30.999301013761269 ], [ -91.62523237898543, 30.999099321493389 ], [ -91.636961756691562, 30.999502706029148 ], [ -91.58458872135256, 31.020277009620678 ], [ -91.571768238743545, 31.02975654621099 ], [ -91.562493847068936, 31.043269928158882 ], [ -91.560038861037413, 31.054161310624345 ], [ -91.561402742166038, 31.060817155464349 ], [ -91.564130504423275, 31.06686792350072 ], [ -91.577496539483747, 31.078162690501941 ], [ -91.604228609604689, 31.154604060028067 ], [ -91.599864189993113, 31.192320514121434 ], [ -91.598500308864487, 31.205430511533564 ], [ -91.574496001000796, 31.261299269736035 ], [ -91.547491154654125, 31.264526346022102 ], [ -91.522395741887522, 31.273400805808777 ], [ -91.515576336244422, 31.278241420237869 ], [ -91.508756930601322, 31.291553109917881 ], [ -91.519940755855998, 31.311318952170019 ], [ -91.531124581110674, 31.32664756452882 ], [ -91.539853420333856, 31.337337254726407 ], [ -91.541217301462467, 31.356699712442786 ], [ -91.525396280370472, 31.378885861909474 ], [ -91.513666902664355, 31.386953552624632 ], [ -91.505210839666915, 31.400870319108279 ], [ -91.500300867603883, 31.419022623217387 ], [ -91.505210839666915, 31.432939389701033 ], [ -91.510393587955662, 31.4389901577374 ], [ -91.51503078379298, 31.449276463399229 ], [ -91.522941294338963, 31.519868757156864 ], [ -91.515849112470136, 31.53096183189021 ], [ -91.511211916632845, 31.532575370033239 ], [ -91.479842650674584, 31.530356755086572 ], [ -91.45011004207069, 31.539634599409002 ], [ -91.437562335687375, 31.546088751981131 ], [ -91.422559643272564, 31.554358134964168 ], [ -91.416558566306634, 31.56161905660781 ], [ -91.41546746140375, 31.56706474784054 ], [ -91.425014629304087, 31.577754438038127 ], [ -91.437835111913103, 31.580779822056311 ], [ -91.448746160942051, 31.582998437002978 ], [ -91.458566105068115, 31.583200129270857 ], [ -91.470841035225703, 31.585620436485407 ], [ -91.477387664643075, 31.592276281325411 ], [ -91.477933217094517, 31.598327049361778 ], [ -91.477933217094517, 31.604781201933907 ], [ -91.477933217094517, 31.610831969970278 ], [ -91.474932678611566, 31.621723352435737 ], [ -91.464839958259773, 31.628984274079382 ], [ -91.452837804327913, 31.631202889026049 ], [ -91.441381202847509, 31.631202889026049 ], [ -91.422014090821108, 31.631202889026049 ], [ -91.404556412374788, 31.637858733866054 ], [ -91.398009782957416, 31.656011037975162 ], [ -91.400191992763212, 31.688080108567917 ], [ -91.398009782957416, 31.709459488963088 ], [ -91.380006552059626, 31.733057484304926 ], [ -91.369368279256406, 31.746974250788575 ], [ -91.365003859644816, 31.752823326557063 ], [ -91.365549412096271, 31.760689325004343 ], [ -91.363639978516204, 31.780455167256481 ], [ -91.359548335130341, 31.799414240437102 ], [ -91.345636747618414, 31.842778078031081 ], [ -91.338544565749601, 31.851249153281998 ], [ -91.326815188043469, 31.854879614103815 ], [ -91.293536488505154, 31.860123613068669 ], [ -91.24825563503498, 31.869804841926861 ], [ -91.127961319490737, 31.985777895957263 ], [ -91.034671850293165, 32.101145873184024 ], [ -91.027852444650051, 32.112642332453127 ], [ -91.027579668424337, 32.113449101524644 ], [ -91.027034115972896, 32.120508330900407 ], [ -91.027034115972896, 32.123735407186473 ], [ -91.030034654455847, 32.12978617522284 ], [ -91.034399074067437, 32.134828481919811 ], [ -91.040400151033367, 32.137248789134361 ], [ -91.046674004225011, 32.138862327277394 ], [ -91.052402304965213, 32.137248789134361 ], [ -91.057585053253973, 32.135433558723449 ], [ -91.06713222115431, 32.13220648243739 ], [ -91.131507410425144, 32.126155714401023 ], [ -91.162876676383405, 32.132609866973148 ], [ -91.165331662414914, 32.134223405116174 ], [ -91.171605515606558, 32.144308018510124 ], [ -91.174606054089523, 32.154997708707711 ], [ -91.171059963155116, 32.176578781370758 ], [ -91.164240557512016, 32.196949700426529 ], [ -91.157966704320359, 32.201992007123508 ], [ -91.133689620230939, 32.213488466392604 ], [ -91.122505794976263, 32.21691723494655 ], [ -91.046401227999283, 32.241120307092025 ], [ -91.039036269904742, 32.2423304606993 ], [ -91.021578591458407, 32.236078000395054 ], [ -91.006303122817869, 32.224178156590192 ], [ -91.004666465463515, 32.215303696803517 ], [ -90.9051031430743, 32.315544753939363 ], [ -90.898556513656928, 32.329058135887252 ], [ -90.901557052139879, 32.337932595673927 ], [ -90.912468101168841, 32.33954613381696 ], [ -90.986663234565754, 32.351849362157573 ], [ -91.000029269626225, 32.357698437926061 ], [ -91.003575360560632, 32.362135667819402 ], [ -91.004393689237801, 32.368186435855769 ], [ -90.994028192660295, 32.403885967270348 ], [ -91.029489102004405, 32.433534730648553 ], [ -91.052947857416655, 32.438375345077645 ], [ -91.070132759637261, 32.445232882185536 ], [ -91.095228172403864, 32.458746264133424 ], [ -91.108866983690064, 32.472057953813433 ], [ -91.115959165558877, 32.483151028546779 ], [ -91.116777494236061, 32.500093179048612 ], [ -91.097955934661101, 32.544667170249859 ], [ -91.093864291275253, 32.5491044001432 ], [ -91.089499871663662, 32.553339937768655 ], [ -91.09059097656656, 32.562617782091088 ], [ -91.090863752792274, 32.564029627966242 ], [ -91.096864829758204, 32.576736240842614 ], [ -91.104229787852745, 32.584602239289893 ], [ -91.119778032719012, 32.584803931557772 ], [ -91.127961319490737, 32.586417469700805 ], [ -91.14105457832548, 32.597308852166272 ], [ -91.146237326614241, 32.604166389274155 ], [ -91.151420074903001, 32.615864540811131 ], [ -91.15387506093451, 32.631193153169932 ], [ -91.151965627354443, 32.64147945883176 ], [ -91.118141375364672, 32.674153606228153 ], [ -91.098774263338271, 32.685246680961498 ], [ -91.076133836603191, 32.693717756212415 ], [ -91.063858906445617, 32.702995600534848 ], [ -91.057039500802517, 32.712676829393033 ], [ -91.054584514770994, 32.722358058251224 ], [ -91.060858367962652, 32.727400364948195 ], [ -91.077224941506088, 32.732442671645174 ], [ -91.123051347427705, 32.742728977306996 ], [ -91.154420613385952, 32.742325592771238 ], [ -91.163422228834847, 32.746964514932458 ], [ -91.165331662414914, 32.751401744825799 ], [ -91.164513333737744, 32.785891122633096 ], [ -91.161785571480493, 32.812514501993121 ], [ -91.158239480546086, 32.822397423119185 ], [ -91.144873445485615, 32.842970034442843 ], [ -91.127961319490737, 32.855071570515577 ], [ -91.115959165558877, 32.855676647319214 ], [ -91.105593668981385, 32.858298646801643 ], [ -91.086772109406425, 32.873425566892564 ], [ -91.070678312088717, 32.888754179251364 ], [ -91.063858906445617, 32.903679407074407 ], [ -91.063858906445617, 32.924050326130185 ], [ -91.086772109406425, 32.97628862351084 ], [ -91.094137067500967, 32.984356314225991 ], [ -91.106684773884268, 32.988995236387211 ], [ -91.125233557233486, 32.984759698761749 ], [ -91.134507948908109, 32.980524161136294 ], [ -91.138599592293971, 32.97144800908174 ], [ -91.130961857973702, 32.96378370290234 ], [ -91.1320529628766, 32.92304186479079 ], [ -91.133962396456667, 32.91759617355806 ], [ -91.145146221711343, 32.905494637485319 ], [ -91.159876137900426, 32.89984725398471 ], [ -91.175424382766693, 32.900048946252589 ], [ -91.196700928373161, 32.906704791092594 ], [ -91.208157529853565, 32.915377558611389 ], [ -91.21279472569087, 32.922033403451394 ], [ -91.214158606819495, 32.930302786434432 ], [ -91.201883676661907, 32.961161703419911 ], [ -91.166149991092084, 33.004122156478132 ], [ -91.157693928094645, 33.011181385853895 ], [ -91.125779109684942, 33.038208149749678 ], [ -91.087590438083595, 33.145105051725523 ], [ -91.085953780729255, 33.221546421251652 ], [ -91.110503641044403, 33.245951185665007 ], [ -91.141327354551208, 33.298391175313533 ], [ -91.184425998215588, 33.419608228308789 ], [ -91.131780186650872, 33.430096226238497 ], [ -91.1184141515904, 33.449055299419115 ], [ -91.125233557233486, 33.472854987028839 ], [ -91.215795264173835, 33.529328822034941 ], [ -91.232161837717271, 33.552725125108907 ], [ -91.228342970557136, 33.559986046752542 ], [ -91.224251327171288, 33.56744866066407 ], [ -91.152238403580157, 33.58277727302287 ], [ -91.133962396456667, 33.594475424559846 ], [ -91.13041630552226, 33.60597188382895 ], [ -91.157421151868917, 33.626141110616842 ], [ -91.186608208021369, 33.645906952868984 ], [ -91.193154837438755, 33.656798335334443 ], [ -91.188790417827164, 33.669504948210822 ], [ -91.186062655569927, 33.679387869336892 ], [ -91.176242711443876, 33.684228483765985 ], [ -91.148146760194308, 33.679387869336892 ], [ -91.139963473422597, 33.683623406962347 ], [ -91.132871291553769, 33.688060636855688 ], [ -91.127961319490737, 33.695724943035088 ], [ -91.126870214587839, 33.707826479107823 ], [ -91.136144606262462, 33.72860078269936 ], [ -91.144600669259887, 33.750181855362406 ], [ -91.139963473422597, 33.77720861925819 ], [ -91.067404997380024, 33.840539991372182 ], [ -91.036854060098946, 33.914561053683755 ], [ -91.088135990535051, 33.960143506224405 ], [ -91.089227095437934, 33.972648426832897 ], [ -91.01885082920117, 34.003103959282619 ], [ -90.964841136507829, 34.007944573711718 ], [ -90.887372688402252, 34.032551030392952 ], [ -90.879189401630526, 34.065426870057223 ], [ -90.888463793305135, 34.087411327256028 ], [ -90.911922548717399, 34.095479017971186 ], [ -90.928834674712277, 34.107580554043921 ], [ -90.931835213195242, 34.12008547465242 ], [ -90.933199094323868, 34.124522704545754 ], [ -90.934562975452479, 34.13017008804637 ], [ -90.918469178134771, 34.154373160191838 ], [ -90.893100989142454, 34.155583313799113 ], [ -90.88028050653341, 34.169298388014887 ], [ -90.880826058984866, 34.180391462748226 ], [ -90.895828751399677, 34.19188792201733 ], [ -90.913286429846011, 34.210443610662196 ], [ -90.911376996265943, 34.223150223538568 ], [ -90.894737646496793, 34.230007760646451 ], [ -90.868823905053006, 34.228192530235539 ], [ -90.856276198669718, 34.238882220433126 ], [ -90.76407783437503, 34.363326349714441 ], [ -90.65851343501987, 34.375629578055062 ], [ -90.614050910226879, 34.390756498145983 ], [ -90.575316686174091, 34.415161262559337 ], [ -90.565769518273754, 34.435330489347237 ], [ -90.570133937885331, 34.524881856285489 ], [ -90.575862238625533, 34.641661679387411 ], [ -90.576407791076974, 34.65739367628197 ], [ -90.564132860919401, 34.665663059265007 ], [ -90.549948497181759, 34.662435982978941 ], [ -90.539037448152811, 34.659007214425003 ], [ -90.521579769706477, 34.663242752050458 ], [ -90.509032063323161, 34.679176441212896 ], [ -90.509850392000345, 34.689866131410483 ], [ -90.533309147412609, 34.707413358715954 ], [ -90.554858469244778, 34.727380893235967 ], [ -90.549948497181759, 34.763282116918418 ], [ -90.537400790798458, 34.784258112777835 ], [ -90.519943112352124, 34.782442882366922 ], [ -90.501394329002892, 34.76993796175843 ], [ -90.494847699585534, 34.76751765454388 ], [ -90.479845007170709, 34.769131192686913 ], [ -90.467297300787408, 34.782442882366922 ], [ -90.47820834981637, 34.832462564800906 ], [ -90.473843930204794, 34.852631791588806 ], [ -90.461569000047206, 34.856665636946381 ], [ -90.436473587280602, 34.855052098803348 ], [ -90.423925880897315, 34.834681179747577 ], [ -90.41492426544842, 34.831857487997269 ], [ -90.407832083579592, 34.832865949336664 ], [ -90.307450432513207, 34.846177639016673 ], [ -90.293811621227007, 34.860497790036078 ], [ -90.250167425111172, 34.907290396183996 ], [ -90.24443912437097, 34.937544236365845 ], [ -90.253986292271307, 34.954889771403437 ], [ -90.309359866093274, 34.995631609514987 ], [ -89.893376121864293, 34.994421455907712 ], [ -89.8832834015125, 34.994219763639833 ], [ -89.848368044619846, 34.994219763639833 ], [ -89.795176680603674, 34.994219763639833 ], [ -89.724254861915455, 34.994824840443471 ], [ -89.644331427778354, 34.995228224979229 ], [ -89.511216629625096, 34.994824840443471 ], [ -89.493758951178762, 34.994421455907712 ], [ -89.352733642479492, 34.994421455907712 ], [ -89.198342298719751, 34.994421455907712 ], [ -89.139149857737664, 34.994219763639833 ], [ -89.138877081511936, 34.994421455907712 ], [ -89.017218884839082, 34.994623148175592 ], [ -88.82300221212364, 34.995228224979229 ], [ -88.786722974102361, 34.995228224979229 ], [ -88.469756999811182, 34.996034994050746 ], [ -88.469756999811182, 34.996034994050746 ], [ -88.380559173999444, 34.995631609514987 ], [ -88.363647048004566, 34.995631609514987 ], [ -88.258082648649406, 34.995429917247108 ], [ -88.253718229037844, 34.995631609514987 ], [ -88.19998131257023, 34.995631609514987 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "12", "geo_id": "0400000US30", "fips_state": "30", "name": "Montana", "iso_3166_2": "MT", "census": 989415, "pop_estimataes_base": 989417, "pop_2010": 990575, "pop_2011": 997661, "pop_2012": 1005163, "pop_2013": 1014864, "pop_2014": 1023579 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.049081860334041, 44.474159738486719 ], [ -111.10663764396179, 44.486261274559453 ], [ -111.122731441279498, 44.493723888470974 ], [ -111.131460280502665, 44.49997634877522 ], [ -111.139370791048663, 44.517120191544933 ], [ -111.219294225185763, 44.62260524764563 ], [ -111.323767519638025, 44.724459842924503 ], [ -111.377777212331353, 44.751688299088165 ], [ -111.394689338326245, 44.751284914552407 ], [ -111.481432178106445, 44.709131230565703 ], [ -111.489069912426714, 44.705500769743878 ], [ -111.516620311224827, 44.643782935772919 ], [ -111.52589470289945, 44.60485632807228 ], [ -111.601180941199246, 44.554231568834666 ], [ -111.617547514742682, 44.553021415227391 ], [ -111.631459102254595, 44.552012953887996 ], [ -111.704290354522882, 44.560282336871026 ], [ -111.737296277835483, 44.543138494101321 ], [ -111.806581439169349, 44.5155066534019 ], [ -111.843406229642085, 44.528213266278271 ], [ -111.849407306608015, 44.539911417815262 ], [ -111.870411075988756, 44.56411448996073 ], [ -111.947879524094347, 44.556853568317088 ], [ -112.078539336216096, 44.533457265243129 ], [ -112.187104274054221, 44.534465726582525 ], [ -112.221746854721147, 44.543541878637079 ], [ -112.229384589041416, 44.549592646673446 ], [ -112.235931218458802, 44.555240030174062 ], [ -112.246569491262022, 44.561089105942543 ], [ -112.258298868968154, 44.564316182228609 ], [ -112.274119890060149, 44.564316182228609 ], [ -112.298942526601024, 44.559273875531638 ], [ -112.33958618423388, 44.538499571940108 ], [ -112.34722391855415, 44.520347267830999 ], [ -112.356498310228773, 44.493118811667337 ], [ -112.358953296260282, 44.486261274559453 ], [ -112.371228226417855, 44.472142815807928 ], [ -112.38704924750985, 44.460444664270945 ], [ -112.410235226696386, 44.463066663753374 ], [ -112.473246534838609, 44.4800088142552 ], [ -112.544168353526828, 44.483840967344904 ], [ -112.688194200709049, 44.498766195167946 ], [ -112.719017914215854, 44.504413578668562 ], [ -112.781210893680907, 44.484849428684299 ], [ -112.812034607187712, 44.451368512216391 ], [ -112.822127327539491, 44.434022977178799 ], [ -112.822127327539491, 44.420912979766669 ], [ -112.823491208668116, 44.406189444211506 ], [ -112.824582313571014, 44.393684523603014 ], [ -112.829219509408318, 44.385415140619969 ], [ -112.831401719214114, 44.381582987530273 ], [ -112.849132173886161, 44.371094989600564 ], [ -112.875864244007104, 44.374322065886631 ], [ -112.970244818107574, 44.426963747803043 ], [ -113.003523517645903, 44.450763435412753 ], [ -113.02725504928388, 44.495942503417638 ], [ -113.05671488166206, 44.618571402288055 ], [ -113.053441566953367, 44.621193401770476 ], [ -113.049349923567519, 44.629462784753514 ], [ -113.0515321333733, 44.636925398665035 ], [ -113.101177406455065, 44.718812459423894 ], [ -113.134728882219093, 44.763184758357269 ], [ -113.158187637631357, 44.780933677930612 ], [ -113.207832910713108, 44.807960441826395 ], [ -113.247112687217353, 44.822885669649438 ], [ -113.2784819531756, 44.812801056255488 ], [ -113.329491107385977, 44.788597984110012 ], [ -113.34176603754355, 44.784765831020309 ], [ -113.353495415249682, 44.79142167586032 ], [ -113.454968171218979, 44.865442738171893 ], [ -113.47597194059972, 44.894688117014347 ], [ -113.4986123673348, 44.942287492233781 ], [ -113.494520723948938, 44.948539952538027 ], [ -113.480881912662753, 44.95035518294894 ], [ -113.472698625891027, 44.948136568002269 ], [ -113.44733043689871, 44.971936255611993 ], [ -113.445966555770084, 44.980003946327145 ], [ -113.445693779544371, 45.018325477224153 ], [ -113.449239870478777, 45.045755625655687 ], [ -113.46396978666786, 45.063101160693279 ], [ -113.473789730793925, 45.061689314818125 ], [ -113.485246332274329, 45.063504545229037 ], [ -113.57635359166612, 45.130264685896975 ], [ -113.57635359166612, 45.133693454450913 ], [ -113.566260871314341, 45.143172991041226 ], [ -113.565988095088613, 45.149425451345472 ], [ -113.599539570852656, 45.191175750796418 ], [ -113.650003172611576, 45.23474128065827 ], [ -113.67428025670101, 45.24946481621344 ], [ -113.738655445971844, 45.329738338829266 ], [ -113.76102309648121, 45.406583092891147 ], [ -113.774116355315954, 45.465275542843926 ], [ -113.765660292318515, 45.483226154685156 ], [ -113.77302525041307, 45.512269841259723 ], [ -113.786391285473542, 45.521345993314277 ], [ -113.81012281711152, 45.53082552990459 ], [ -113.813396131820198, 45.549986295353094 ], [ -113.801939530339794, 45.579029981927661 ], [ -113.804940068822759, 45.589114595321604 ], [ -113.813941684271654, 45.600611054590708 ], [ -113.835491006103837, 45.612914282931328 ], [ -113.896592880665992, 45.641352892702258 ], [ -113.934235999815897, 45.682296423081688 ], [ -113.942692062813336, 45.686330268439264 ], [ -113.971606342740074, 45.700650419458668 ], [ -113.987700140057783, 45.705289341619888 ], [ -114.015523315081623, 45.696213189565334 ], [ -114.019342182241758, 45.692986113279275 ], [ -114.022615496950451, 45.679674423599259 ], [ -114.034890427108024, 45.648008737542263 ], [ -114.135272078174424, 45.557448909264608 ], [ -114.18791788973914, 45.542120296905807 ], [ -114.247928659398397, 45.545549065459753 ], [ -114.309576086412008, 45.469511080469388 ], [ -114.35076529649632, 45.468502619129993 ], [ -114.3665863175883, 45.491697229936065 ], [ -114.460421339237328, 45.561281062354311 ], [ -114.4737873742978, 45.563297985033103 ], [ -114.514158255704942, 45.564709830908257 ], [ -114.551255822403391, 45.559062447407641 ], [ -114.560802990303728, 45.564508138640377 ], [ -114.561894095206625, 45.565113215444015 ], [ -114.563530752560979, 45.637319047344675 ], [ -114.561075766529456, 45.639941046827104 ], [ -114.550710269951949, 45.642563046309533 ], [ -114.545527521663189, 45.642966430845291 ], [ -114.541708654503054, 45.641352892702258 ], [ -114.515522136833567, 45.652849351971355 ], [ -114.50079222064447, 45.666766118455001 ], [ -114.495336696129996, 45.703272418941097 ], [ -114.497518905935777, 45.710735032852618 ], [ -114.504883864030333, 45.722231492121722 ], [ -114.528615395668311, 45.731711028712027 ], [ -114.547709731468984, 45.74340918024901 ], [ -114.566258514818216, 45.773864712698739 ], [ -114.514703808156384, 45.840826545634549 ], [ -114.509248283641909, 45.845465467795762 ], [ -114.498882787064403, 45.85070946676062 ], [ -114.44869196153121, 45.85897884974365 ], [ -114.393863940160699, 45.894073304354592 ], [ -114.401501674480969, 45.96325375223708 ], [ -114.412139947284203, 45.977977287792243 ], [ -114.429597625730537, 45.986650055311038 ], [ -114.465331311300361, 45.996129591901351 ], [ -114.483334542198136, 46.008029435706206 ], [ -114.490699500292692, 46.022954663529248 ], [ -114.491245052744134, 46.034047738262593 ], [ -114.491245052744134, 46.043930659388664 ], [ -114.476242360329323, 46.062082963497772 ], [ -114.467513521106156, 46.081848805749907 ], [ -114.468331849783326, 46.100001109859008 ], [ -114.476242360329323, 46.112909415003266 ], [ -114.483061765972423, 46.129246488701462 ], [ -114.472696269394902, 46.162122328365733 ], [ -114.426869863473286, 46.289591841665235 ], [ -114.378042919068704, 46.435415351341724 ], [ -114.38540787716326, 46.467081037398721 ], [ -114.346400876884729, 46.535858100745443 ], [ -114.331125408244191, 46.60766054811036 ], [ -114.331125408244191, 46.630250082112795 ], [ -114.33794481388729, 46.641141464578261 ], [ -114.341218128595983, 46.642755002721294 ], [ -114.349674191593422, 46.646587155810991 ], [ -114.370132408522721, 46.654251461990398 ], [ -114.422232667635981, 46.652234539311607 ], [ -114.446782527951143, 46.645377002203716 ], [ -114.461239667914498, 46.639124541899477 ], [ -114.481970661069525, 46.632065312523707 ], [ -114.592172256261989, 46.632872081595224 ], [ -114.594627242293498, 46.633477158398861 ], [ -114.614539906771341, 46.639124541899477 ], [ -114.63581645237781, 46.659495460955249 ], [ -114.64263585802091, 46.673210535171016 ], [ -114.64181752934374, 46.679261303207383 ], [ -114.641271976892284, 46.686320532583153 ], [ -114.64263585802091, 46.694589915566183 ], [ -114.644818067826705, 46.702254221745591 ], [ -114.655729116855653, 46.711733758335896 ], [ -114.667458494561785, 46.719196372247424 ], [ -114.675369005107783, 46.719599756783182 ], [ -114.690644473748321, 46.720003141318941 ], [ -114.717649320094978, 46.713952373282567 ], [ -114.739198641927175, 46.715162526889841 ], [ -114.767294593176743, 46.738760522231679 ], [ -114.825941481707375, 46.78192266755778 ], [ -114.853219104279773, 46.799873279399009 ], [ -114.888134461172427, 46.808546046917797 ], [ -114.920594832033572, 46.827706812366301 ], [ -114.927959790128128, 46.835976195349339 ], [ -114.938598062931362, 46.869053727281489 ], [ -114.936143076899839, 46.89971095199909 ], [ -114.975695629629811, 46.93278848393124 ], [ -115.073076742213246, 47.013667083350697 ], [ -115.099263259882747, 47.048156461158001 ], [ -115.193098281531775, 47.133068905935048 ], [ -115.200463239626316, 47.139119673971415 ], [ -115.266747862477231, 47.18107166569024 ], [ -115.292116051469549, 47.209913659996928 ], [ -115.294843813726786, 47.221006734730274 ], [ -115.320212002719117, 47.25569780480545 ], [ -115.339306338519791, 47.261546880573945 ], [ -115.421684758688414, 47.271833186235767 ], [ -115.479240542316163, 47.282119491897603 ], [ -115.523703067109153, 47.298859950131551 ], [ -115.551253465907266, 47.333954404742492 ], [ -115.561346186259058, 47.351905016583714 ], [ -115.576894431125325, 47.366830244406756 ], [ -115.66145506109973, 47.402731468089215 ], [ -115.690642117252196, 47.415034696429828 ], [ -115.721193054533273, 47.422295618073477 ], [ -115.72992189375644, 47.447305459290462 ], [ -115.725830250370578, 47.466869609274724 ], [ -115.712191439084378, 47.488450681937778 ], [ -115.72992189375644, 47.518099445315983 ], [ -115.739741837882491, 47.537663595300245 ], [ -115.735650194496642, 47.555412514873588 ], [ -115.721193054533273, 47.576388510732997 ], [ -115.718192516050308, 47.592725584431193 ], [ -115.706190362118463, 47.637904652436085 ], [ -115.723648040564782, 47.696597102388864 ], [ -115.729103565079271, 47.70305125496099 ], [ -115.919228594408835, 47.857345839888396 ], [ -116.007335315317661, 47.944880284147857 ], [ -116.048524525401973, 47.976747662472732 ], [ -116.048524525401973, 47.977151047008491 ], [ -116.049342854079143, 48.066702413946757 ], [ -116.049342854079143, 48.07214810517948 ], [ -116.049342854079143, 48.075375181465546 ], [ -116.049342854079143, 48.077190411876458 ], [ -116.049342854079143, 48.215551307641427 ], [ -116.049342854079143, 48.502156020297427 ], [ -116.049070077853415, 48.957980545703876 ], [ -116.049070077853415, 48.958383930239634 ], [ -116.049070077853415, 49.000940998762097 ], [ -115.251199617610965, 48.999529152886943 ], [ -114.728014816672498, 49.000537614226339 ], [ -114.67809676736502, 49.000739306494218 ], [ -114.674277900204885, 49.000739306494218 ], [ -114.438872017405146, 49.001142691029976 ], [ -114.068169126646339, 48.999327460619064 ], [ -113.693101816275956, 48.997713922476038 ], [ -113.116452875095604, 48.998520691547547 ], [ -113.110179021903946, 48.998520691547547 ], [ -113.106905707195267, 48.998520691547547 ], [ -113.103086840035132, 48.998520691547547 ], [ -113.0981768679721, 48.998520691547547 ], [ -113.095449105714863, 48.998520691547547 ], [ -113.09217579100617, 48.998520691547547 ], [ -113.087811371394594, 48.998520691547547 ], [ -113.085629161588798, 48.998520691547547 ], [ -113.011161251966172, 48.998722383815426 ], [ -113.009797370837546, 48.998520691547547 ], [ -112.193650903471593, 48.998318999279668 ], [ -111.854044502445319, 48.998117307011789 ], [ -111.854044502445319, 48.998117307011789 ], [ -111.761573361924903, 48.997713922476038 ], [ -111.761573361924903, 48.997713922476038 ], [ -111.270576155621853, 48.997915614743917 ], [ -110.887325558479759, 48.998117307011789 ], [ -110.886780006028303, 48.998117307011789 ], [ -110.743299711297524, 48.998318999279668 ], [ -110.216023266973195, 48.999327460619064 ], [ -110.215477714521754, 48.999125768351185 ], [ -110.171560742180205, 48.999327460619064 ], [ -109.995620076588281, 48.999730845154822 ], [ -109.489620177870407, 49.00033592195846 ], [ -109.384874107192431, 49.00033592195846 ], [ -109.384055778515261, 49.00033592195846 ], [ -109.060543174806696, 48.999730845154822 ], [ -109.060270398580968, 48.999529152886943 ], [ -109.000805181373153, 48.999327460619064 ], [ -108.994804104407223, 48.999327460619064 ], [ -108.543086674608418, 48.999327460619064 ], [ -108.487985877012193, 48.999327460619064 ], [ -108.236486196894745, 48.999327460619064 ], [ -107.179751098440292, 48.999529152886943 ], [ -106.625469807769292, 48.999730845154822 ], [ -106.617559297223295, 48.999529152886943 ], [ -106.518268751059793, 48.999529152886943 ], [ -106.500538296387745, 48.999730845154822 ], [ -106.374515680103286, 48.999529152886943 ], [ -106.368241826911643, 48.999529152886943 ], [ -106.274134029036887, 48.999327460619064 ], [ -106.246310854013046, 48.999327460619064 ], [ -106.243037539304368, 48.999327460619064 ], [ -106.234035923855473, 48.999327460619064 ], [ -106.112104950956876, 48.999327460619064 ], [ -106.05045752394328, 48.999125768351185 ], [ -105.966169670194589, 48.999529152886943 ], [ -105.834145976944214, 48.999730845154822 ], [ -105.775771864639296, 48.999730845154822 ], [ -105.650294800806293, 48.999529152886943 ], [ -105.612651681656388, 48.999730845154822 ], [ -105.607468933367642, 48.999529152886943 ], [ -105.578554653440904, 48.999730845154822 ], [ -105.522635527167495, 48.999529152886943 ], [ -105.411888379523589, 48.999529152886943 ], [ -105.407796736137726, 48.999529152886943 ], [ -105.391430162594304, 48.999529152886943 ], [ -105.387611295434169, 48.999327460619064 ], [ -105.355969253250194, 48.999327460619064 ], [ -105.277409700241705, 48.999529152886943 ], [ -105.265134770084131, 48.999529152886943 ], [ -105.057552062308218, 48.999529152886943 ], [ -104.647296618819453, 48.999327460619064 ], [ -104.543641653044375, 48.999529152886943 ], [ -104.048825579581177, 48.999932537422701 ], [ -104.048552803355463, 48.987024232278443 ], [ -104.048552803355463, 48.966653313222672 ], [ -104.048552803355463, 48.963829621472371 ], [ -104.048825579581177, 48.958989007043272 ], [ -104.048552803355463, 48.957173776632359 ], [ -104.048825579581177, 48.95172808539963 ], [ -104.048825579581177, 48.949711162720845 ], [ -104.048825579581177, 48.943257010148713 ], [ -104.048825579581177, 48.940231626130526 ], [ -104.048825579581177, 48.933575781290529 ], [ -104.048825579581177, 48.912196400895354 ], [ -104.048825579581177, 48.906952401930496 ], [ -104.048552803355463, 48.902515172037162 ], [ -104.048825579581177, 48.87992563803472 ], [ -104.048825579581177, 48.875690100409258 ], [ -104.048825579581177, 48.874076562266225 ], [ -104.048825579581177, 48.867622409694107 ], [ -104.048552803355463, 48.865807179283195 ], [ -104.048825579581177, 48.847453182906207 ], [ -104.048552803355463, 48.797030115936465 ], [ -104.048552803355463, 48.788559040685556 ], [ -104.048552803355463, 48.751447663395822 ], [ -104.048280027129735, 48.747212125770361 ], [ -104.048007250904021, 48.664114911404234 ], [ -104.047734474678293, 48.663106450064838 ], [ -104.047734474678293, 48.658870912439383 ], [ -104.047734474678293, 48.657459066564229 ], [ -104.048007250904021, 48.649996452652701 ], [ -104.047734474678293, 48.648584606777554 ], [ -104.047461698452565, 48.634062763490263 ], [ -104.047461698452565, 48.634062763490263 ], [ -104.047734474678293, 48.627003534114507 ], [ -104.047461698452565, 48.625591688239354 ], [ -104.048007250904021, 48.620145997006617 ], [ -104.048280027129735, 48.598968308879329 ], [ -104.048007250904021, 48.591505694967807 ], [ -104.047734474678293, 48.562865392928998 ], [ -104.047734474678293, 48.539670782122911 ], [ -104.047734474678293, 48.531401399139881 ], [ -104.048007250904021, 48.530796322336244 ], [ -104.047461698452565, 48.525955707907144 ], [ -104.047734474678293, 48.517888017191986 ], [ -104.047461698452565, 48.494088329582269 ], [ -104.047461698452565, 48.467061565686492 ], [ -104.047188922226837, 48.45294310693496 ], [ -104.047188922226837, 48.452539722399209 ], [ -104.047188922226837, 48.447295723434351 ], [ -104.047188922226837, 48.445883877559197 ], [ -104.046916146001109, 48.421075728610084 ], [ -104.047188922226837, 48.410991115216135 ], [ -104.046916146001109, 48.390620196160363 ], [ -104.046916146001109, 48.389410042553088 ], [ -104.046916146001109, 48.389410042553088 ], [ -104.046643369775396, 48.374686506997925 ], [ -104.046370593549668, 48.374081430194288 ], [ -104.046370593549668, 48.342214051869412 ], [ -104.046097817323954, 48.256696530288735 ], [ -104.045825041098226, 48.255082992145702 ], [ -104.045552264872498, 48.246208532359027 ], [ -104.045825041098226, 48.244594994215994 ], [ -104.045825041098226, 48.241367917929935 ], [ -104.045552264872498, 48.19397023497838 ], [ -104.045552264872498, 48.192558389103226 ], [ -104.045552264872498, 48.17622131540503 ], [ -104.04527948864677, 48.164321471600168 ], [ -104.044188383743887, 47.996110120189115 ], [ -104.044188383743887, 47.992883043903049 ], [ -104.043915607518159, 47.971503663507889 ], [ -104.043370055066703, 47.954561513006055 ], [ -104.043370055066703, 47.949519206309077 ], [ -104.042278950163819, 47.891028448624184 ], [ -104.041733397712363, 47.862186454317488 ], [ -104.041733397712363, 47.841613842993837 ], [ -104.042551726389533, 47.808334618793808 ], [ -104.042551726389533, 47.805309234775621 ], [ -104.042278950163819, 47.803292312096829 ], [ -104.043097278840975, 47.747221861626485 ], [ -104.043370055066703, 47.747020169358606 ], [ -104.044733936195328, 47.459406995363203 ], [ -104.044733936195328, 47.438430999503794 ], [ -104.045006712421042, 47.397487469124364 ], [ -104.04527948864677, 47.343433941332805 ], [ -104.04527948864677, 47.331937482063701 ], [ -104.04527948864677, 47.330122251652796 ], [ -104.045006712421042, 47.276875492932746 ], [ -104.04527948864677, 47.273850108914559 ], [ -104.045006712421042, 47.271429801700009 ], [ -104.045006712421042, 47.266790879538796 ], [ -104.045006712421042, 47.265984110467286 ], [ -104.04527948864677, 47.263967187788495 ], [ -104.045006712421042, 47.092730452359255 ], [ -104.045006712421042, 47.081233993090152 ], [ -104.04527948864677, 47.078611993607723 ], [ -104.04527948864677, 47.06388845805256 ], [ -104.04527948864677, 47.057434305480442 ], [ -104.04527948864677, 47.053602152390738 ], [ -104.045006712421042, 47.040895539514366 ], [ -104.045006712421042, 47.0376684632283 ], [ -104.045552264872498, 46.941259559182157 ], [ -104.045552264872498, 46.933998637538508 ], [ -104.045552264872498, 46.933796945270629 ], [ -104.04527948864677, 46.725448832551663 ], [ -104.04527948864677, 46.722221756265604 ], [ -104.04527948864677, 46.721414987194088 ], [ -104.045552264872498, 46.713952373282567 ], [ -104.045552264872498, 46.708708374317716 ], [ -104.04527948864677, 46.64154484911402 ], [ -104.04527948864677, 46.641343156846141 ], [ -104.04527948864677, 46.540900407442422 ], [ -104.045552264872498, 46.341830139045882 ], [ -104.045552264872498, 46.32448460400829 ], [ -104.045552264872498, 46.280112305074923 ], [ -104.046643369775396, 45.999961744991047 ], [ -104.045552264872498, 45.945303140395851 ], [ -104.043915607518159, 45.881971768281858 ], [ -104.043915607518159, 45.881971768281858 ], [ -104.043915607518159, 45.871887154887908 ], [ -104.043915607518159, 45.86845838633397 ], [ -104.042006173938091, 45.557852293800366 ], [ -104.041733397712363, 45.550591372156724 ], [ -104.041733397712363, 45.53909491288762 ], [ -104.041187845260907, 45.503395381473048 ], [ -104.041187845260907, 45.49996661291911 ], [ -104.041733397712363, 45.490688768596669 ], [ -104.040369516583752, 45.393473095479017 ], [ -104.040096740358024, 45.374312330030513 ], [ -104.040369516583752, 45.345268643455945 ], [ -104.040369516583752, 45.335990799133512 ], [ -104.040369516583752, 45.212958515727351 ], [ -104.040096740358024, 44.999971480847165 ], [ -104.057827195030072, 44.997349481364736 ], [ -104.469992072098904, 44.998357942704132 ], [ -104.47053762455036, 44.998357942704132 ], [ -104.663935968588618, 44.998963019507769 ], [ -104.665299849717229, 44.998559634972011 ], [ -104.759953200043441, 44.999164711775649 ], [ -104.765135948332187, 44.999164711775649 ], [ -105.018272285803988, 45.000374865382923 ], [ -105.019363390706872, 45.000374865382923 ], [ -105.025364467672802, 45.000374865382923 ], [ -105.038457726507545, 45.000374865382923 ], [ -105.076646398108892, 45.000374865382923 ], [ -105.848057564456127, 45.000374865382923 ], [ -105.918979383144347, 44.997752865900495 ], [ -105.92825377481897, 44.993719020542912 ], [ -106.024816558725234, 44.993719020542912 ], [ -106.263495756233652, 44.993719020542912 ], [ -106.888698865592872, 44.995937635489582 ], [ -106.892790508978734, 44.995937635489582 ], [ -107.080733328502504, 44.996744404561099 ], [ -107.134197468744389, 45.000173173115044 ], [ -107.607736996601119, 45.000979942186561 ], [ -107.608828101504017, 45.000778249918682 ], [ -107.911609712057555, 45.000979942186561 ], [ -108.125739049250825, 45.000979942186561 ], [ -108.249306679503775, 44.999366404043528 ], [ -108.565999877569226, 45.000576557650803 ], [ -108.578547583952528, 45.000576557650803 ], [ -108.621373451391179, 45.000374865382923 ], [ -109.062179832161036, 44.999568096311407 ], [ -109.082910825316048, 44.999568096311407 ], [ -109.103369042245347, 45.005820556615653 ], [ -109.263488686745291, 45.005417172079895 ], [ -109.269216987485493, 45.005215479812016 ], [ -109.798675641615603, 45.002190095793836 ], [ -110.025625461417903, 45.00360194166899 ], [ -110.026443790095072, 45.00360194166899 ], [ -110.110186091392322, 45.004005326204748 ], [ -110.221478791487684, 44.996139327757462 ], [ -110.54717360500203, 44.992508866935644 ], [ -110.55235635329079, 44.992307174667765 ], [ -110.705383815921905, 44.992307174667765 ], [ -110.75066466939208, 44.997954558168374 ], [ -110.875868956999355, 45.002190095793836 ], [ -111.044171888271009, 45.001383326722319 ], [ -111.056174042202855, 44.935833339661656 ], [ -111.055628489751413, 44.933614724714985 ], [ -111.056992370880039, 44.866652891779168 ], [ -111.055628489751413, 44.666170777507489 ], [ -111.055082937299971, 44.625025554860173 ], [ -111.049081860334041, 44.474159738486719 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "13", "geo_id": "0400000US35", "fips_state": "35", "name": "New Mexico", "iso_3166_2": "NM", "census": 2059179, "pop_estimataes_base": 2059192, "pop_2010": 2064950, "pop_2011": 2078407, "pop_2012": 2084594, "pop_2013": 2086895, "pop_2014": 2085572 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.528634247637299, 31.783883935810422 ], [ -106.750674095376567, 31.783682243542543 ], [ -106.750674095376567, 31.783883935810422 ], [ -106.993444936270862, 31.783682243542543 ], [ -106.99835490833388, 31.783682243542543 ], [ -107.000537118139675, 31.783682243542543 ], [ -107.000537118139675, 31.783480551274664 ], [ -107.296772099275856, 31.783682243542543 ], [ -107.422249163108859, 31.783682243542543 ], [ -107.422521939334572, 31.783682243542543 ], [ -108.208390245645177, 31.783682243542543 ], [ -108.208390245645177, 31.499699530368968 ], [ -108.208663021870905, 31.499699530368968 ], [ -108.208663021870905, 31.333303409368824 ], [ -108.85105103345073, 31.332294948029432 ], [ -108.861143753802509, 31.332294948029432 ], [ -109.050177678229176, 31.332496640297311 ], [ -109.049904902003462, 31.499497838101089 ], [ -109.049904902003462, 31.499497838101089 ], [ -109.049086573326292, 31.796590548686797 ], [ -109.048813797100564, 31.810709007438327 ], [ -109.048813797100564, 31.861333766675944 ], [ -109.048541020874836, 31.870813303266253 ], [ -109.048541020874836, 32.013611428924563 ], [ -109.048813797100564, 32.028133272211846 ], [ -109.048268244649108, 32.084002030414318 ], [ -109.048268244649108, 32.089044337111289 ], [ -109.047995468423395, 32.42647550127279 ], [ -109.047722692197667, 32.681414527871794 ], [ -109.047722692197667, 32.686255142300894 ], [ -109.047722692197667, 32.69008729539059 ], [ -109.047722692197667, 32.693516063944536 ], [ -109.047177139746225, 32.777621739650058 ], [ -109.047177139746225, 32.777621739650058 ], [ -109.047449915971939, 33.068461989931521 ], [ -109.047449915971939, 33.069470451270917 ], [ -109.046904363520497, 33.09185829300548 ], [ -109.046904363520497, 33.092866754344875 ], [ -109.047177139746225, 33.137642437814002 ], [ -109.047177139746225, 33.13804582234976 ], [ -109.047177139746225, 33.209041500643153 ], [ -109.046904363520497, 33.36535300824935 ], [ -109.046904363520497, 33.365554700517229 ], [ -109.047177139746225, 33.369185161339047 ], [ -109.046904363520497, 33.372613929892992 ], [ -109.046631587294769, 33.778217080597585 ], [ -109.046086034843327, 34.52246154907094 ], [ -109.046086034843327, 34.52246154907094 ], [ -109.046086034843327, 34.579338768612814 ], [ -109.045813258617599, 34.959730385832529 ], [ -109.046086034843327, 35.174734343391499 ], [ -109.046358811069041, 35.546251500824546 ], [ -109.046631587294769, 35.546453193092425 ], [ -109.046358811069041, 35.614221795099752 ], [ -109.046358811069041, 35.616440410046422 ], [ -109.046086034843327, 35.879850511896343 ], [ -109.046086034843327, 35.888724971683018 ], [ -109.046086034843327, 35.925836348972751 ], [ -109.046086034843327, 35.925836348972751 ], [ -109.046086034843327, 36.002277718498874 ], [ -109.045540482391871, 36.874596777075375 ], [ -109.045540482391871, 36.875000161611133 ], [ -109.045267706166157, 36.968787066174855 ], [ -109.045267706166157, 36.969392142978492 ], [ -109.045267706166157, 36.999040906356697 ], [ -108.958797642611671, 36.998839214088818 ], [ -108.954433223000095, 36.998839214088818 ], [ -108.620282346488295, 36.999242598624576 ], [ -108.619736794036839, 36.999242598624576 ], [ -108.379148162948354, 36.999444290892455 ], [ -108.320774050643436, 36.999444290892455 ], [ -108.320501274417708, 36.999444290892455 ], [ -108.288313679782291, 36.999444290892455 ], [ -108.288040903556563, 36.999645983160335 ], [ -107.481714380316674, 37.000049367696093 ], [ -107.420885281980233, 37.000049367696093 ], [ -107.420885281980233, 37.000049367696093 ], [ -107.000537118139675, 37.000049367696093 ], [ -106.869877306017926, 36.992385061516686 ], [ -106.675660633302499, 36.993191830588202 ], [ -106.661476269564844, 36.993191830588202 ], [ -106.628743122477985, 36.993191830588202 ], [ -106.628743122477985, 36.993191830588202 ], [ -106.617013744771853, 36.992990138320323 ], [ -106.617286520997581, 36.992990138320323 ], [ -106.476261212298311, 36.993393522856081 ], [ -106.24876584004457, 36.994200291927598 ], [ -106.247674735141672, 36.994200291927598 ], [ -106.006540551601731, 36.995410445534873 ], [ -105.997538936152836, 36.995410445534873 ], [ -105.996175055024224, 36.995410445534873 ], [ -105.718488857237276, 36.995813830070631 ], [ -105.716579423657208, 36.995813830070631 ], [ -105.664751940769662, 36.995813830070631 ], [ -105.627381597845485, 36.995612137802752 ], [ -105.533819352422185, 36.995813830070631 ], [ -105.512542806815716, 36.995813830070631 ], [ -105.508723939655582, 36.995813830070631 ], [ -105.465079743539761, 36.99601552233851 ], [ -105.447349288867699, 36.99601552233851 ], [ -105.442439316804666, 36.99601552233851 ], [ -105.41925333761813, 36.995813830070631 ], [ -105.220672245291127, 36.995208753266994 ], [ -105.154933174891667, 36.995410445534873 ], [ -105.120836146676169, 36.995410445534873 ], [ -105.000541831131926, 36.993191830588202 ], [ -104.732130025019586, 36.993393522856081 ], [ -104.732130025019586, 36.993393522856081 ], [ -104.007909145722593, 36.996217214606389 ], [ -103.734314591321507, 36.998032445017301 ], [ -103.733223486418609, 36.998032445017301 ], [ -103.086198279001479, 36.999847675428214 ], [ -103.002183201478516, 37.000049367696093 ], [ -103.002183201478516, 36.911506462097222 ], [ -103.001910425252788, 36.909489539418438 ], [ -103.002183201478516, 36.719495423076452 ], [ -103.002455977704244, 36.675123124143084 ], [ -103.002183201478516, 36.617237443261821 ], [ -103.002183201478516, 36.602715599974537 ], [ -103.002455977704244, 36.526677614984173 ], [ -103.002455977704244, 36.500457620159906 ], [ -103.041735754208489, 36.478473162961102 ], [ -103.041735754208489, 36.3183295022652 ], [ -103.041735754208489, 36.317522733193691 ], [ -103.040917425531319, 36.055322784951045 ], [ -103.041462977982761, 35.739271001184711 ], [ -103.041462977982761, 35.622491178082797 ], [ -103.042554082885658, 35.211845720681225 ], [ -103.04228130665993, 35.183205418642416 ], [ -103.04228130665993, 35.183205418642416 ], [ -103.04228130665993, 35.182802034106658 ], [ -103.04228130665993, 35.181995265035141 ], [ -103.04228130665993, 35.178566496481203 ], [ -103.042554082885658, 35.159405731032699 ], [ -103.042826859111386, 35.144682195477536 ], [ -103.042554082885658, 35.142665272798745 ], [ -103.042554082885658, 35.135606043422982 ], [ -103.042554082885658, 34.95408300233192 ], [ -103.042554082885658, 34.899626090004602 ], [ -103.042826859111386, 34.850211484374256 ], [ -103.042826859111386, 34.792124111225114 ], [ -103.042826859111386, 34.747348427755981 ], [ -103.042826859111386, 34.671108750497737 ], [ -103.043099635337114, 34.619878914456478 ], [ -103.043645187788556, 34.462760637778771 ], [ -103.043645187788556, 34.459735253760584 ], [ -103.043645187788556, 34.459735253760584 ], [ -103.043645187788556, 34.455701408403009 ], [ -103.043645187788556, 34.405480033701146 ], [ -103.043645187788556, 34.400639419272053 ], [ -103.043645187788556, 34.397008958450229 ], [ -103.043645187788556, 34.39378188216417 ], [ -103.043645187788556, 34.390353113610225 ], [ -103.043645187788556, 34.388739575467191 ], [ -103.043645187788556, 34.384907422377495 ], [ -103.043645187788556, 34.384705730109616 ], [ -103.043645187788556, 34.383495576502341 ], [ -103.04391796401427, 34.380873577019912 ], [ -103.04391796401427, 34.379663423412637 ], [ -103.04391796401427, 34.379461731144758 ], [ -103.04391796401427, 34.312701590476827 ], [ -103.04391796401427, 34.312701590476827 ], [ -103.04391796401427, 34.302616977082877 ], [ -103.043645187788556, 34.289506979670747 ], [ -103.043645187788556, 34.256832832274355 ], [ -103.043645187788556, 34.088016404059665 ], [ -103.043645187788556, 34.07934363654087 ], [ -103.043645187788556, 34.063006562842673 ], [ -103.043645187788556, 34.049896565430544 ], [ -103.043645187788556, 34.04364410512629 ], [ -103.043645187788556, 34.042232259251136 ], [ -103.043645187788556, 34.041627182447499 ], [ -103.043645187788556, 34.037391644822044 ], [ -103.043645187788556, 34.032752722660831 ], [ -103.043645187788556, 34.018029187105668 ], [ -103.043645187788556, 34.003709036086256 ], [ -103.04391796401427, 33.974665349511689 ], [ -103.045009068917182, 33.945621662937114 ], [ -103.045827397594337, 33.906291670700725 ], [ -103.045554621368623, 33.901451056271625 ], [ -103.046918502497249, 33.850221220230367 ], [ -103.047464054948691, 33.824606302209745 ], [ -103.04910071230303, 33.74634970227271 ], [ -103.050191817205928, 33.701977403339335 ], [ -103.050464593431656, 33.672328639961123 ], [ -103.051010145883097, 33.658210181209597 ], [ -103.051555698334553, 33.650545875030197 ], [ -103.051282922108825, 33.641873107511401 ], [ -103.051555698334553, 33.629569879170788 ], [ -103.052646803237451, 33.570675736950129 ], [ -103.056738446623299, 33.388345926787551 ], [ -103.056738446623299, 33.388345926787551 ], [ -103.057556775300469, 33.329451784566892 ], [ -103.057829551526197, 33.315333325815367 ], [ -103.060011761331992, 33.219126114037103 ], [ -103.063830628492127, 33.042040302839375 ], [ -103.064103404717855, 33.038611534285437 ], [ -103.064376180943569, 33.010374616782379 ], [ -103.064648957169297, 32.99988661885267 ], [ -103.064648957169297, 32.964388779705978 ], [ -103.064648957169297, 32.959144780741127 ], [ -103.064648957169297, 32.900048946252589 ], [ -103.064648957169297, 32.879274642661059 ], [ -103.064921733395025, 32.868383260195593 ], [ -103.064921733395025, 32.857693569998006 ], [ -103.064921733395025, 32.857290185462247 ], [ -103.064921733395025, 32.849424187014968 ], [ -103.064648957169297, 32.828448191155559 ], [ -103.064648957169297, 32.827439729816163 ], [ -103.064648957169297, 32.784680969025821 ], [ -103.064648957169297, 32.783672507686433 ], [ -103.064921733395025, 32.7772183551143 ], [ -103.064921733395025, 32.726593595876679 ], [ -103.064921733395025, 32.708642984035457 ], [ -103.064921733395025, 32.690692372194228 ], [ -103.064921733395025, 32.682624681479069 ], [ -103.064648957169297, 32.646320073260853 ], [ -103.064921733395025, 32.624537308329927 ], [ -103.064648957169297, 32.601947774327485 ], [ -103.064921733395025, 32.600334236184452 ], [ -103.064648957169297, 32.588031007843838 ], [ -103.064648957169297, 32.522279328515296 ], [ -103.064376180943569, 32.144913095313761 ], [ -103.064376180943569, 32.123130330382835 ], [ -103.064376180943569, 32.087027414432498 ], [ -103.064376180943569, 32.000501431512426 ], [ -103.085925502775765, 32.000501431512426 ], [ -103.088653265033003, 32.000501431512426 ], [ -103.215766986220345, 32.000501431512426 ], [ -103.267594469107891, 32.000501431512426 ], [ -103.267594469107891, 32.000299739244547 ], [ -103.270322231365128, 32.000299739244547 ], [ -103.278505518136853, 32.000501431512426 ], [ -103.326514133864251, 32.000299739244547 ], [ -103.722857989841103, 32.000299739244547 ], [ -103.980085970698752, 32.000098046976667 ], [ -104.024548495491757, 32.000098046976667 ], [ -104.531639499112515, 32.000098046976667 ], [ -104.531912275338243, 32.000299739244547 ], [ -104.64102276562781, 32.000299739244547 ], [ -104.643477751659319, 32.000501431512426 ], [ -104.847787144726539, 32.000501431512426 ], [ -104.918163410963302, 32.000501431512426 ], [ -105.07691917433462, 32.000501431512426 ], [ -105.078555831688959, 32.000501431512426 ], [ -105.118108384418932, 32.000501431512426 ], [ -105.131474419479403, 32.000501431512426 ], [ -105.132838300608029, 32.000501431512426 ], [ -105.148113769248567, 32.000501431512426 ], [ -105.150295979054363, 32.000501431512426 ], [ -105.154114846214497, 32.000501431512426 ], [ -105.390339057691406, 32.000703123780305 ], [ -105.427163848164128, 32.000703123780305 ], [ -105.428527729292753, 32.000501431512426 ], [ -105.429346057969923, 32.000501431512426 ], [ -105.886246236057474, 32.00191327738758 ], [ -105.900703376020857, 32.002114969655459 ], [ -105.998084488604292, 32.002316661923338 ], [ -106.099830020799317, 32.002114969655459 ], [ -106.181935664742213, 32.002114969655459 ], [ -106.200757224317158, 32.0017115851197 ], [ -106.205939972605904, 32.0017115851197 ], [ -106.313413805541131, 32.001509892851821 ], [ -106.377243442360538, 32.001509892851821 ], [ -106.394428344581144, 32.001509892851821 ], [ -106.411067694350294, 32.001308200583942 ], [ -106.565186261884307, 32.000703123780305 ], [ -106.566004590561477, 32.000703123780305 ], [ -106.588099464845115, 32.000703123780305 ], [ -106.595464422939671, 32.000703123780305 ], [ -106.598737737648349, 32.000703123780305 ], [ -106.599010513874077, 32.000703123780305 ], [ -106.614831534966058, 31.955927440311179 ], [ -106.616195416094683, 31.948464826399654 ], [ -106.627924793800815, 31.860526997604428 ], [ -106.62574258399502, 31.856291459978969 ], [ -106.621923716834885, 31.852862691425027 ], [ -106.614558758740344, 31.846408538852899 ], [ -106.605829919517177, 31.846206846585019 ], [ -106.605284367065721, 31.846005154317144 ], [ -106.56682291923866, 31.813331006920752 ], [ -106.563549604529967, 31.812524237849235 ], [ -106.545273597406464, 31.805061623937714 ], [ -106.544728044955008, 31.804254854866198 ], [ -106.542273058923499, 31.802036239919531 ], [ -106.542000282697785, 31.80223793218741 ], [ -106.535726429506127, 31.798607471365585 ], [ -106.535453653280399, 31.797599010026193 ], [ -106.535180877054671, 31.796993933222556 ], [ -106.534635324603229, 31.796187164151039 ], [ -106.53299866724889, 31.791951626525581 ], [ -106.53299866724889, 31.791749934257702 ], [ -106.532453114797434, 31.791951626525581 ], [ -106.530543681217367, 31.79215331879346 ], [ -106.52781591896013, 31.790539780650427 ], [ -106.52781591896013, 31.789733011578914 ], [ -106.527543142734402, 31.789127934775276 ], [ -106.528088695185858, 31.786909319828609 ], [ -106.528634247637299, 31.78448901261406 ], [ -106.528634247637299, 31.783883935810422 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "14", "geo_id": "0400000US38", "fips_state": "38", "name": "North Dakota", "iso_3166_2": "ND", "census": 672591, "pop_estimataes_base": 672591, "pop_2010": 674345, "pop_2011": 685242, "pop_2012": 701705, "pop_2013": 723857, "pop_2014": 739482 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.045552264872498, 45.945303140395851 ], [ -104.046643369775396, 45.999961744991047 ], [ -104.045552264872498, 46.280112305074923 ], [ -104.045552264872498, 46.32448460400829 ], [ -104.045552264872498, 46.341830139045882 ], [ -104.04527948864677, 46.540900407442422 ], [ -104.04527948864677, 46.641343156846141 ], [ -104.04527948864677, 46.64154484911402 ], [ -104.045552264872498, 46.708708374317716 ], [ -104.045552264872498, 46.713952373282567 ], [ -104.04527948864677, 46.721414987194088 ], [ -104.04527948864677, 46.722221756265604 ], [ -104.04527948864677, 46.725448832551663 ], [ -104.045552264872498, 46.933796945270629 ], [ -104.045552264872498, 46.933998637538508 ], [ -104.045552264872498, 46.941259559182157 ], [ -104.045006712421042, 47.0376684632283 ], [ -104.045006712421042, 47.040895539514366 ], [ -104.04527948864677, 47.053602152390738 ], [ -104.04527948864677, 47.057434305480442 ], [ -104.04527948864677, 47.06388845805256 ], [ -104.04527948864677, 47.078611993607723 ], [ -104.045006712421042, 47.081233993090152 ], [ -104.045006712421042, 47.092730452359255 ], [ -104.04527948864677, 47.263967187788495 ], [ -104.045006712421042, 47.265984110467286 ], [ -104.045006712421042, 47.266790879538796 ], [ -104.045006712421042, 47.271429801700009 ], [ -104.04527948864677, 47.273850108914559 ], [ -104.045006712421042, 47.276875492932746 ], [ -104.04527948864677, 47.330122251652796 ], [ -104.04527948864677, 47.331937482063701 ], [ -104.04527948864677, 47.343433941332805 ], [ -104.045006712421042, 47.397487469124364 ], [ -104.044733936195328, 47.438430999503794 ], [ -104.044733936195328, 47.459406995363203 ], [ -104.043370055066703, 47.747020169358606 ], [ -104.043097278840975, 47.747221861626485 ], [ -104.042278950163819, 47.803292312096829 ], [ -104.042551726389533, 47.805309234775621 ], [ -104.042551726389533, 47.808334618793808 ], [ -104.041733397712363, 47.841613842993837 ], [ -104.041733397712363, 47.862186454317488 ], [ -104.042278950163819, 47.891028448624184 ], [ -104.043370055066703, 47.949519206309077 ], [ -104.043370055066703, 47.954561513006055 ], [ -104.043915607518159, 47.971503663507889 ], [ -104.044188383743887, 47.992883043903049 ], [ -104.044188383743887, 47.996110120189115 ], [ -104.04527948864677, 48.164321471600168 ], [ -104.045552264872498, 48.17622131540503 ], [ -104.045552264872498, 48.192558389103226 ], [ -104.045552264872498, 48.19397023497838 ], [ -104.045825041098226, 48.241367917929935 ], [ -104.045825041098226, 48.244594994215994 ], [ -104.045552264872498, 48.246208532359027 ], [ -104.045825041098226, 48.255082992145702 ], [ -104.046097817323954, 48.256696530288735 ], [ -104.046370593549668, 48.342214051869412 ], [ -104.046370593549668, 48.374081430194288 ], [ -104.046643369775396, 48.374686506997925 ], [ -104.046916146001109, 48.389410042553088 ], [ -104.046916146001109, 48.389410042553088 ], [ -104.046916146001109, 48.390620196160363 ], [ -104.047188922226837, 48.410991115216135 ], [ -104.046916146001109, 48.421075728610084 ], [ -104.047188922226837, 48.445883877559197 ], [ -104.047188922226837, 48.447295723434351 ], [ -104.047188922226837, 48.452539722399209 ], [ -104.047188922226837, 48.45294310693496 ], [ -104.047461698452565, 48.467061565686492 ], [ -104.047461698452565, 48.494088329582269 ], [ -104.047734474678293, 48.517888017191986 ], [ -104.047461698452565, 48.525955707907144 ], [ -104.048007250904021, 48.530796322336244 ], [ -104.047734474678293, 48.531401399139881 ], [ -104.047734474678293, 48.539670782122911 ], [ -104.047734474678293, 48.562865392928998 ], [ -104.048007250904021, 48.591505694967807 ], [ -104.048280027129735, 48.598968308879329 ], [ -104.048007250904021, 48.620145997006617 ], [ -104.047461698452565, 48.625591688239354 ], [ -104.047734474678293, 48.627003534114507 ], [ -104.047461698452565, 48.634062763490263 ], [ -104.047461698452565, 48.634062763490263 ], [ -104.047734474678293, 48.648584606777554 ], [ -104.048007250904021, 48.649996452652701 ], [ -104.047734474678293, 48.657459066564229 ], [ -104.047734474678293, 48.658870912439383 ], [ -104.047734474678293, 48.663106450064838 ], [ -104.048007250904021, 48.664114911404234 ], [ -104.048280027129735, 48.747212125770361 ], [ -104.048552803355463, 48.751447663395822 ], [ -104.048552803355463, 48.788559040685556 ], [ -104.048552803355463, 48.797030115936465 ], [ -104.048825579581177, 48.847453182906207 ], [ -104.048552803355463, 48.865807179283195 ], [ -104.048825579581177, 48.867622409694107 ], [ -104.048825579581177, 48.874076562266225 ], [ -104.048825579581177, 48.875690100409258 ], [ -104.048825579581177, 48.87992563803472 ], [ -104.048552803355463, 48.902515172037162 ], [ -104.048825579581177, 48.906952401930496 ], [ -104.048825579581177, 48.912196400895354 ], [ -104.048825579581177, 48.933575781290529 ], [ -104.048825579581177, 48.940231626130526 ], [ -104.048825579581177, 48.943257010148713 ], [ -104.048825579581177, 48.949711162720845 ], [ -104.048825579581177, 48.95172808539963 ], [ -104.048552803355463, 48.957173776632359 ], [ -104.048825579581177, 48.958989007043272 ], [ -104.048552803355463, 48.963829621472371 ], [ -104.048552803355463, 48.966653313222672 ], [ -104.048552803355463, 48.987024232278443 ], [ -104.048825579581177, 48.999932537422701 ], [ -103.99236090085634, 48.999529152886943 ], [ -103.988814809921919, 48.999529152886943 ], [ -103.983904837858887, 48.999529152886943 ], [ -103.982268180504548, 48.999529152886943 ], [ -103.980904299375936, 48.999529152886943 ], [ -103.976539879764346, 48.999529152886943 ], [ -103.969447697895532, 48.999529152886943 ], [ -103.968629369218348, 48.999529152886943 ], [ -103.923348515748188, 48.999529152886943 ], [ -103.921984634619562, 48.999529152886943 ], [ -103.918984096136597, 48.999529152886943 ], [ -103.917347438782258, 48.999529152886943 ], [ -103.876976557375116, 48.999529152886943 ], [ -103.865247179668984, 48.999529152886943 ], [ -103.862792193637475, 48.999730845154822 ], [ -103.858427774025898, 48.999529152886943 ], [ -103.855972787994375, 48.999529152886943 ], [ -103.85215392083424, 48.999529152886943 ], [ -102.938899117110566, 48.998924076083306 ], [ -102.216860447619368, 48.998520691547547 ], [ -102.21140492310488, 48.998520691547547 ], [ -102.151939705897078, 48.998722383815426 ], [ -102.131481488967779, 48.998924076083306 ], [ -102.021279893775315, 48.998924076083306 ], [ -101.496731211708223, 48.999327460619064 ], [ -101.225864419564374, 48.999529152886943 ], [ -101.225318867112932, 48.999529152886943 ], [ -101.220681671275628, 48.999529152886943 ], [ -101.216317251664037, 48.999529152886943 ], [ -100.920627822979313, 48.999529152886943 ], [ -100.917900060722076, 48.999529152886943 ], [ -100.913535641110499, 48.999730845154822 ], [ -100.906989011693128, 48.999529152886943 ], [ -100.433995036287854, 48.999327460619064 ], [ -100.434267812513582, 48.999529152886943 ], [ -100.431540050256331, 48.999529152886943 ], [ -100.431540050256331, 48.999327460619064 ], [ -100.18276813239612, 48.999327460619064 ], [ -99.913810773832338, 48.999125768351185 ], [ -99.913810773832338, 48.999125768351185 ], [ -99.86143773849335, 48.999125768351185 ], [ -99.86143773849335, 48.999125768351185 ], [ -99.525650204627212, 48.999327460619064 ], [ -98.999737641431494, 48.999730845154822 ], [ -97.950094724845869, 49.000537614226339 ], [ -97.775790716608299, 49.000537614226339 ], [ -97.411088902815408, 49.000537614226339 ], [ -97.229147160257554, 49.000739306494218 ], [ -97.234057132320601, 48.997512230208159 ], [ -97.238421551932177, 48.98258700238511 ], [ -97.239239880609347, 48.967661774562067 ], [ -97.232693251191975, 48.946484086434779 ], [ -97.199414551653661, 48.881135791641995 ], [ -97.157679789117893, 48.787752271614039 ], [ -97.137494348414322, 48.749229048449152 ], [ -97.092486271169889, 48.682065523245456 ], [ -97.163135313632381, 48.543906319748373 ], [ -97.163135313632381, 48.543906319748373 ], [ -97.161225880052314, 48.543099550676857 ], [ -97.150587607249079, 48.539469089855032 ], [ -97.126856075611101, 48.520106632138656 ], [ -97.123309984676681, 48.421277420877963 ], [ -97.131493271448406, 48.406553885322801 ], [ -97.145677635186047, 48.397477733268246 ], [ -97.136403243511438, 48.352298665263362 ], [ -97.126856075611101, 48.342214051869412 ], [ -97.115672250356411, 48.323860055492432 ], [ -97.116490579033581, 48.279689448826936 ], [ -97.129856614094052, 48.249637300912966 ], [ -97.134493809931371, 48.249637300912966 ], [ -97.143222649154524, 48.246611916894786 ], [ -97.147041516314658, 48.242981456072968 ], [ -97.147314292540386, 48.193768542710501 ], [ -97.147587068766114, 48.173195931386843 ], [ -97.147587068766114, 48.170573931904414 ], [ -97.123037208450967, 48.109461174737092 ], [ -97.098214571910091, 48.07134133610797 ], [ -97.088121851558299, 48.059441492303108 ], [ -97.023201109836009, 47.873884605854471 ], [ -97.000287906875201, 47.860976300710213 ], [ -96.980375242397344, 47.815595540437442 ], [ -96.890631864134178, 47.672192337975503 ], [ -96.88572189207116, 47.66432633952823 ], [ -96.85107931140422, 47.598372967931809 ], [ -96.842350472181053, 47.508216524189912 ], [ -96.853261521210015, 47.503980986564457 ], [ -96.853807073661457, 47.499543756671116 ], [ -96.862263136658896, 47.422295618073477 ], [ -96.852715968758559, 47.374897935121922 ], [ -96.83307608050643, 47.238150577499979 ], [ -96.83307608050643, 47.237545500696349 ], [ -96.826529451089058, 47.150616133240518 ], [ -96.824892793734719, 47.125001215219889 ], [ -96.82325613638038, 46.99995200913493 ], [ -96.824620017508991, 46.993296164294932 ], [ -96.82325613638038, 46.970908322560362 ], [ -96.791614094196404, 46.934200329806387 ], [ -96.780157492716, 46.928351254037906 ], [ -96.767337010106971, 46.90515664323182 ], [ -96.801979590773911, 46.812378200007501 ], [ -96.784249136101863, 46.686723917118911 ], [ -96.782885254973237, 46.630653466648553 ], [ -96.782885254973237, 46.630451774380674 ], [ -96.782885254973237, 46.630451774380674 ], [ -96.738968282631689, 46.54372409919273 ], [ -96.716327855896594, 46.444491503396279 ], [ -96.722056156636796, 46.440054273502938 ], [ -96.669683121297808, 46.384588899836224 ], [ -96.631494449696461, 46.353729982850744 ], [ -96.598215750158147, 46.312584760203436 ], [ -96.599034078835317, 46.263775231376727 ], [ -96.585668043774845, 46.177249248456654 ], [ -96.578303085680304, 46.170190019080891 ], [ -96.557844868751005, 46.102421417073558 ], [ -96.55484433026804, 46.084874189768087 ], [ -96.557026540073835, 46.064503270712315 ], [ -96.55920874987963, 46.058250810408069 ], [ -96.566300931748444, 46.051393273300185 ], [ -96.578030309454576, 46.026786816618952 ], [ -96.577211980777406, 46.021744509921973 ], [ -96.570392575134306, 45.963657136772838 ], [ -96.563300393265479, 45.935218527001901 ], [ -96.576939204551678, 45.935218527001901 ], [ -96.597397421480977, 45.935218527001901 ], [ -96.607217365607028, 45.935218527001901 ], [ -96.618401190861718, 45.93542021926978 ], [ -96.639132184016731, 45.935218527001901 ], [ -96.659863177171758, 45.935621911537659 ], [ -96.680594170326771, 45.935621911537659 ], [ -96.701325163481783, 45.935823603805538 ], [ -96.791614094196404, 45.935823603805538 ], [ -96.998651249520861, 45.935621911537659 ], [ -97.019655018901602, 45.93542021926978 ], [ -97.11812723638792, 45.93542021926978 ], [ -97.144859306508877, 45.935218527001901 ], [ -97.228328831580399, 45.935218527001901 ], [ -97.228328831580399, 45.935218527001901 ], [ -97.228328831580399, 45.935218527001901 ], [ -97.312071132877634, 45.935016834734029 ], [ -97.318890538520733, 45.935016834734029 ], [ -97.482010721503627, 45.935218527001901 ], [ -97.491830665629692, 45.935016834734029 ], [ -97.518835511976363, 45.935218527001901 ], [ -97.519108288202091, 45.935218527001901 ], [ -97.542567043614341, 45.935218527001901 ], [ -97.696685611148354, 45.93542021926978 ], [ -97.77715459773691, 45.93542021926978 ], [ -97.784519555831451, 45.93542021926978 ], [ -97.958823564069036, 45.935823603805538 ], [ -97.978736228546879, 45.936025296073417 ], [ -97.986919515318604, 45.936025296073417 ], [ -98.008196060925059, 45.936025296073417 ], [ -98.008196060925059, 45.936025296073417 ], [ -98.070389040390126, 45.936226988341296 ], [ -98.184682278968438, 45.936226988341296 ], [ -98.185500607645608, 45.936226988341296 ], [ -98.724506429676069, 45.938647295555846 ], [ -98.904538738653855, 45.939454064627355 ], [ -98.905357067331025, 45.939454064627355 ], [ -99.005738718397424, 45.939857449163114 ], [ -99.005738718397424, 45.939857449163114 ], [ -99.092754334403352, 45.940260833698872 ], [ -99.102301502303689, 45.940059141430993 ], [ -99.212503097496153, 45.940059141430993 ], [ -99.213594202399051, 45.940059141430993 ], [ -99.221777489170762, 45.940059141430993 ], [ -99.222323041622218, 45.940059141430993 ], [ -99.257783950966328, 45.940059141430993 ], [ -99.276332734315559, 45.940260833698872 ], [ -99.283970468635829, 45.940260833698872 ], [ -99.2973365036963, 45.940260833698872 ], [ -99.317794720625585, 45.940260833698872 ], [ -99.344799566972256, 45.940260833698872 ], [ -99.345072343197984, 45.940260833698872 ], [ -99.378351042736298, 45.940462525966751 ], [ -99.385443224605126, 45.940462525966751 ], [ -99.401264245697107, 45.940462525966751 ], [ -99.490189295283102, 45.940462525966751 ], [ -99.493189833766067, 45.940462525966751 ], [ -99.588661512769434, 45.941067602770389 ], [ -99.611029163278801, 45.941067602770389 ], [ -99.671858261615228, 45.941067602770389 ], [ -99.692862030995968, 45.940865910502509 ], [ -99.717957443762572, 45.940865910502509 ], [ -99.717957443762572, 45.940865910502509 ], [ -99.747962828592208, 45.940865910502509 ], [ -99.749326709720819, 45.940865910502509 ], [ -99.749599485946547, 45.940865910502509 ], [ -99.750417814623717, 45.940865910502509 ], [ -99.83879731175827, 45.941269295038268 ], [ -99.879986521842582, 45.941672679574026 ], [ -99.880259298068296, 45.941672679574026 ], [ -99.965911032945613, 45.941874371841905 ], [ -100.005463585675585, 45.941874371841905 ], [ -100.069020446269249, 45.942076064109784 ], [ -100.084295914909788, 45.942277756377663 ], [ -100.108572998999222, 45.942479448645543 ], [ -100.110209656353561, 45.942277756377663 ], [ -100.141851698537536, 45.942479448645543 ], [ -100.152217195115043, 45.942479448645543 ], [ -100.170765978464274, 45.942479448645543 ], [ -100.274693720465081, 45.942882833181301 ], [ -100.275512049142264, 45.942882833181301 ], [ -100.284240888365417, 45.942882833181301 ], [ -100.285331993268315, 45.94308452544918 ], [ -100.294060832491482, 45.943286217717059 ], [ -100.410263504649862, 45.943487909984938 ], [ -100.420083448775927, 45.943487909984938 ], [ -100.424447868387517, 45.943487909984938 ], [ -100.430721721579161, 45.943689602252817 ], [ -100.462909316214592, 45.943487909984938 ], [ -100.4994613304616, 45.943689602252817 ], [ -100.511736260619159, 45.943689602252817 ], [ -100.512009036844887, 45.943689602252817 ], [ -100.62766615655184, 45.943689602252817 ], [ -100.650852135738361, 45.943689602252817 ], [ -100.720955625749411, 45.944092986788576 ], [ -100.750415458127591, 45.943689602252817 ], [ -100.762144835833723, 45.943891294520697 ], [ -100.762144835833723, 45.943689602252817 ], [ -100.769782570153993, 45.943689602252817 ], [ -100.890076885698235, 45.943891294520697 ], [ -100.935630515394138, 45.943689602252817 ], [ -100.938903830102817, 45.943891294520697 ], [ -100.964544795320876, 45.943891294520697 ], [ -100.976546949252722, 45.943891294520697 ], [ -100.98063859263857, 45.944092986788576 ], [ -101.101205684408541, 45.943891294520697 ], [ -101.106933985148743, 45.943891294520697 ], [ -101.142667670718581, 45.943891294520697 ], [ -101.145940985427274, 45.943891294520697 ], [ -101.16312588764788, 45.943891294520697 ], [ -101.171036398193877, 45.943891294520697 ], [ -101.175673594031181, 45.943891294520697 ], [ -101.179219684965588, 45.943891294520697 ], [ -101.20376954528075, 45.943891294520697 ], [ -101.223954985984307, 45.944092986788576 ], [ -101.271418049260276, 45.944294679056455 ], [ -101.287239070352257, 45.944092986788576 ], [ -101.31315281179603, 45.944092986788576 ], [ -101.333883804951057, 45.944092986788576 ], [ -101.365253070909304, 45.944092986788576 ], [ -101.370708595423778, 45.944294679056455 ], [ -101.373709133906743, 45.944294679056455 ], [ -101.557287533818936, 45.944092986788576 ], [ -101.562197505881969, 45.944294679056455 ], [ -101.628482128732884, 45.944294679056455 ], [ -101.657669184885336, 45.944294679056455 ], [ -101.680582387846144, 45.944294679056455 ], [ -101.68194626897477, 45.944496371324334 ], [ -101.708678339095712, 45.944294679056455 ], [ -101.723408255284795, 45.944092986788576 ], [ -101.729954884702181, 45.944294679056455 ], [ -101.758596388403191, 45.944496371324334 ], [ -101.764324689143393, 45.944496371324334 ], [ -101.765415794046277, 45.944294679056455 ], [ -101.766234122723461, 45.944294679056455 ], [ -101.789965654361438, 45.944496371324334 ], [ -101.794602850198743, 45.944496371324334 ], [ -101.833064298025818, 45.944496371324334 ], [ -101.852704186277933, 45.944496371324334 ], [ -101.886801214493431, 45.944496371324334 ], [ -101.957450256955923, 45.944496371324334 ], [ -101.973816830499359, 45.944496371324334 ], [ -101.989365075365612, 45.944496371324334 ], [ -101.992092837622863, 45.944496371324334 ], [ -101.998639467040235, 45.944496371324334 ], [ -101.998639467040235, 45.944496371324334 ], [ -102.000548900620302, 45.944496371324334 ], [ -102.000548900620302, 45.944496371324334 ], [ -102.000548900620302, 45.944496371324334 ], [ -102.060832446505287, 45.944698063592213 ], [ -102.085109530594707, 45.944698063592213 ], [ -102.08756451662623, 45.944698063592213 ], [ -102.124662083324679, 45.944899755860092 ], [ -102.125480412001849, 45.944698063592213 ], [ -102.135300356127914, 45.944496371324334 ], [ -102.145393076479706, 45.944698063592213 ], [ -102.156304125508655, 45.944698063592213 ], [ -102.157940782862994, 45.944698063592213 ], [ -102.15930466399162, 45.944698063592213 ], [ -102.176762342437954, 45.944698063592213 ], [ -102.177035118663667, 45.944698063592213 ], [ -102.217951552522266, 45.944698063592213 ], [ -102.328153147714715, 45.944899755860092 ], [ -102.353248560481319, 45.944899755860092 ], [ -102.354339665384217, 45.944899755860092 ], [ -102.392801113211291, 45.944899755860092 ], [ -102.392801113211291, 45.944899755860092 ], [ -102.396347204145698, 45.944899755860092 ], [ -102.398529413951493, 45.944899755860092 ], [ -102.406167148271763, 45.944899755860092 ], [ -102.410258791657625, 45.945101448127971 ], [ -102.420078735783676, 45.945101448127971 ], [ -102.425261484072436, 45.944899755860092 ], [ -102.425261484072436, 45.945101448127971 ], [ -102.446538029678905, 45.945101448127971 ], [ -102.459631288513648, 45.945101448127971 ], [ -102.467541799059646, 45.945101448127971 ], [ -102.475997862057085, 45.945101448127971 ], [ -102.551011324131167, 45.945101448127971 ], [ -102.558649058451437, 45.945101448127971 ], [ -102.6426641359744, 45.94550483266373 ], [ -102.65166575142328, 45.94550483266373 ], [ -102.666668443838105, 45.945303140395851 ], [ -102.672396744578307, 45.945303140395851 ], [ -102.674033401932647, 45.945303140395851 ], [ -102.704857115439452, 45.945101448127971 ], [ -102.880252228579934, 45.945101448127971 ], [ -102.920350333761348, 45.945101448127971 ], [ -102.942172431819259, 45.945101448127971 ], [ -102.989908271320942, 45.945303140395851 ], [ -102.995363795835416, 45.945101448127971 ], [ -102.995636572061144, 45.945101448127971 ], [ -103.026187509342222, 45.945303140395851 ], [ -103.047736831174419, 45.945303140395851 ], [ -103.07856054468121, 45.945303140395851 ], [ -103.097927656707611, 45.945303140395851 ], [ -103.14102630037199, 45.945303140395851 ], [ -103.161211741075562, 45.945303140395851 ], [ -103.210584237931585, 45.945303140395851 ], [ -103.218494748477582, 45.945303140395851 ], [ -103.283961042651327, 45.945101448127971 ], [ -103.284233818877055, 45.945101448127971 ], [ -103.411347540064398, 45.945303140395851 ], [ -103.418166945707497, 45.945101448127971 ], [ -103.432351309445139, 45.945303140395851 ], [ -103.434806295476648, 45.945303140395851 ], [ -103.558646701955311, 45.945101448127971 ], [ -103.577195485304543, 45.945303140395851 ], [ -103.66066501037605, 45.945303140395851 ], [ -103.66066501037605, 45.945303140395851 ], [ -103.668575520922047, 45.945303140395851 ], [ -104.045552264872498, 45.945303140395851 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "15", "geo_id": "0400000US40", "fips_state": "40", "name": "Oklahoma", "iso_3166_2": "OK", "census": 3751351, "pop_estimataes_base": 3751616, "pop_2010": 3759481, "pop_2011": 3786527, "pop_2012": 3817059, "pop_2013": 3853118, "pop_2014": 3878051 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.002455977704244, 36.500457620159906 ], [ -103.002455977704244, 36.526677614984173 ], [ -103.002183201478516, 36.602715599974537 ], [ -103.002183201478516, 36.617237443261821 ], [ -103.002455977704244, 36.675123124143084 ], [ -103.002183201478516, 36.719495423076452 ], [ -103.001910425252788, 36.909489539418438 ], [ -103.002183201478516, 36.911506462097222 ], [ -103.002183201478516, 37.000049367696093 ], [ -102.986907732837977, 36.99843582955306 ], [ -102.98581662793508, 36.998637521820939 ], [ -102.979542774743436, 36.998637521820939 ], [ -102.875615032742616, 36.999645983160335 ], [ -102.57092398860901, 36.995208753266994 ], [ -102.355430770287114, 36.994603676463356 ], [ -102.355157994061386, 36.994603676463356 ], [ -102.208404384621929, 36.99379690739184 ], [ -102.184400076758223, 36.99359521512396 ], [ -102.054558593313629, 36.993191830588202 ], [ -102.042283663156056, 36.992990138320323 ], [ -102.028099299418415, 36.993191830588202 ], [ -102.028099299418415, 36.993191830588202 ], [ -102.000548900620302, 36.993191830588202 ], [ -102.000548900620302, 36.993191830588202 ], [ -101.902349459359698, 36.99379690739184 ], [ -101.601477282386213, 36.995007060999114 ], [ -101.600386177483315, 36.995208753266994 ], [ -101.555378100238869, 36.995410445534873 ], [ -101.555105324013141, 36.995410445534873 ], [ -101.519098862217589, 36.995612137802752 ], [ -101.485274610227819, 36.995612137802752 ], [ -101.414898343991055, 36.99601552233851 ], [ -101.413807239088158, 36.99601552233851 ], [ -101.37807355351832, 36.996217214606389 ], [ -101.359797546394816, 36.996217214606389 ], [ -101.357888112814749, 36.996217214606389 ], [ -101.213043936955359, 36.997023983677906 ], [ -101.211407279601019, 36.997023983677906 ], [ -101.066835879967329, 36.997830752749422 ], [ -101.053469844906857, 36.998032445017301 ], [ -101.012553411048273, 36.998234137285181 ], [ -100.996459613730565, 36.998032445017301 ], [ -100.945450459520188, 36.998234137285181 ], [ -100.945450459520188, 36.998234137285181 ], [ -100.904534025661604, 36.998637521820939 ], [ -100.904261249435876, 36.998839214088818 ], [ -100.891713543052589, 36.998637521820939 ], [ -100.855707081257023, 36.998637521820939 ], [ -100.814245094946983, 36.999040906356697 ], [ -100.806061808175272, 36.999040906356697 ], [ -100.765418150542416, 36.999242598624576 ], [ -100.756962087544963, 36.999444290892455 ], [ -100.675674772279237, 36.999645983160335 ], [ -100.633394457292042, 36.999847675428214 ], [ -100.633394457292042, 36.999847675428214 ], [ -100.629848366357621, 37.000049367696093 ], [ -100.591386918530546, 37.000452752231851 ], [ -100.591386918530546, 37.000452752231851 ], [ -100.552652694477757, 37.00065444449973 ], [ -100.55156158957486, 37.00065444449973 ], [ -100.20158969197108, 37.002066290374884 ], [ -100.193679181425082, 37.002066290374884 ], [ -100.192315300296457, 37.002066290374884 ], [ -100.187678104459152, 37.002066290374884 ], [ -100.115665180868035, 37.002267982642763 ], [ -100.089478663198548, 37.002066290374884 ], [ -100.005736361901299, 37.001662905839126 ], [ -100.00246304719262, 37.001662905839126 ], [ -100.001371942289722, 37.001662905839126 ], [ -99.995098089098065, 37.001662905839126 ], [ -99.786151500193554, 37.000856136767609 ], [ -99.77469489871315, 37.000856136767609 ], [ -99.774149346261694, 37.000856136767609 ], [ -99.657673897877586, 37.000251059963972 ], [ -99.625486303242155, 36.999645983160335 ], [ -99.558110575488357, 36.999444290892455 ], [ -99.541198449493479, 36.999645983160335 ], [ -99.508465302406606, 36.999645983160335 ], [ -99.504100882795029, 36.999645983160335 ], [ -99.502737001666404, 36.999645983160335 ], [ -99.500282015634895, 36.999645983160335 ], [ -99.500282015634895, 36.999645983160335 ], [ -99.4844609945429, 36.999645983160335 ], [ -99.456092267067618, 36.999444290892455 ], [ -99.277423839218443, 36.999645983160335 ], [ -99.248236783065991, 36.999645983160335 ], [ -99.129579124876088, 36.999444290892455 ], [ -99.124941929038783, 36.999444290892455 ], [ -99.029470250035416, 36.999645983160335 ], [ -99.00028319388295, 36.999444290892455 ], [ -98.99428211691702, 36.999444290892455 ], [ -98.880534430790149, 36.999242598624576 ], [ -98.879988878338708, 36.999242598624576 ], [ -98.869350605535473, 36.999242598624576 ], [ -98.797337681944356, 36.999242598624576 ], [ -98.793791591009949, 36.999242598624576 ], [ -98.791882157429882, 36.999242598624576 ], [ -98.761603996374518, 36.999444290892455 ], [ -98.718505352710139, 36.999242598624576 ], [ -98.714413709324276, 36.999040906356697 ], [ -98.544746896924011, 36.999040906356697 ], [ -98.544746896924011, 36.999040906356697 ], [ -98.420088161768177, 36.99843582955306 ], [ -98.41817872818811, 36.998637521820939 ], [ -98.408904336513501, 36.99843582955306 ], [ -98.35407631514299, 36.998032445017301 ], [ -98.34725690949989, 36.998032445017301 ], [ -98.346165804597007, 36.998032445017301 ], [ -98.237600866758882, 36.998032445017301 ], [ -98.219597635861106, 36.997830752749422 ], [ -98.208141034380702, 36.998032445017301 ], [ -98.177590097099625, 36.998032445017301 ], [ -98.147584712269989, 36.998234137285181 ], [ -98.111851026700151, 36.998032445017301 ], [ -98.045293627623522, 36.998234137285181 ], [ -98.039838103109048, 36.99843582955306 ], [ -98.033837026143118, 36.99843582955306 ], [ -97.802250010503514, 36.998637521820939 ], [ -97.802250010503514, 36.998637521820939 ], [ -97.783428450928568, 36.998839214088818 ], [ -97.783428450928568, 36.999040906356697 ], [ -97.768698534739471, 36.998839214088818 ], [ -97.69723116359981, 36.998839214088818 ], [ -97.650586429001009, 36.999040906356697 ], [ -97.637220393940538, 36.999040906356697 ], [ -97.606669456659461, 36.998637521820939 ], [ -97.564661917897979, 36.998637521820939 ], [ -97.546385910774475, 36.998839214088818 ], [ -97.545840358323034, 36.998637521820939 ], [ -97.527291574973802, 36.998839214088818 ], [ -97.472736329829019, 36.998637521820939 ], [ -97.462370833251512, 36.998637521820939 ], [ -97.462370833251512, 36.998637521820939 ], [ -97.384902385145921, 36.998839214088818 ], [ -97.372354678762619, 36.998839214088818 ], [ -97.147587068766114, 36.999040906356697 ], [ -97.122491655999511, 36.999040906356697 ], [ -97.120309446193716, 36.999040906356697 ], [ -97.104215648876007, 36.999040906356697 ], [ -97.1006695579416, 36.999040906356697 ], [ -97.039840459605159, 36.999040906356697 ], [ -97.030020515479109, 36.998839214088818 ], [ -96.975465270334325, 36.999040906356697 ], [ -96.9672819835626, 36.999040906356697 ], [ -96.934548836475727, 36.999040906356697 ], [ -96.92200113009244, 36.999242598624576 ], [ -96.917091158029407, 36.999242598624576 ], [ -96.903452346743208, 36.999040906356697 ], [ -96.902088465614582, 36.999242598624576 ], [ -96.876174724170824, 36.999242598624576 ], [ -96.867445884947642, 36.999242598624576 ], [ -96.822710583928924, 36.999242598624576 ], [ -96.795160185130811, 36.998839214088818 ], [ -96.792159646647846, 36.999242598624576 ], [ -96.749879331660651, 36.999040906356697 ], [ -96.74115049243747, 36.999242598624576 ], [ -96.73651329660018, 36.999242598624576 ], [ -96.710599555156392, 36.999242598624576 ], [ -96.705416806867646, 36.999242598624576 ], [ -96.52538449788986, 36.999242598624576 ], [ -96.415455678923124, 36.999040906356697 ], [ -96.394179133316655, 36.999242598624576 ], [ -96.279067566061158, 36.999242598624576 ], [ -96.276339803803921, 36.999242598624576 ], [ -96.21769291527329, 36.999040906356697 ], [ -96.199962460601228, 36.999040906356697 ], [ -96.184686991960689, 36.999242598624576 ], [ -96.154136054679611, 36.999242598624576 ], [ -96.152499397325272, 36.999040906356697 ], [ -96.149771635068021, 36.999040906356697 ], [ -96.147043872810784, 36.999040906356697 ], [ -96.143225005650649, 36.999040906356697 ], [ -96.141315572070582, 36.999040906356697 ], [ -96.000835815822768, 36.998839214088818 ], [ -95.96428380157576, 36.999040906356697 ], [ -95.937006179003376, 36.999242598624576 ], [ -95.928004563554481, 36.999242598624576 ], [ -95.910274108882433, 36.999242598624576 ], [ -95.877268185569832, 36.999242598624576 ], [ -95.875358751989765, 36.999242598624576 ], [ -95.873994870861154, 36.999242598624576 ], [ -95.866902688992326, 36.999242598624576 ], [ -95.807983024235966, 36.999040906356697 ], [ -95.786706478629497, 36.999242598624576 ], [ -95.768703247731722, 36.999242598624576 ], [ -95.759974408508555, 36.999242598624576 ], [ -95.741971177610765, 36.999242598624576 ], [ -95.717966869747073, 36.999242598624576 ], [ -95.714966331264108, 36.999242598624576 ], [ -95.710329135426804, 36.999444290892455 ], [ -95.696690324140604, 36.999242598624576 ], [ -95.686324827563098, 36.999444290892455 ], [ -95.66422995327946, 36.999242598624576 ], [ -95.630132925063975, 36.999242598624576 ], [ -95.624404624323773, 36.999444290892455 ], [ -95.61594856132632, 36.999444290892455 ], [ -95.612129694166185, 36.999242598624576 ], [ -95.573668246339111, 36.999242598624576 ], [ -95.53438846983488, 36.999242598624576 ], [ -95.52238631590302, 36.999242598624576 ], [ -95.511475266874072, 36.999242598624576 ], [ -95.407547524873252, 36.999242598624576 ], [ -95.407547524873252, 36.999242598624576 ], [ -95.331170181670558, 36.999444290892455 ], [ -95.328442419413321, 36.999444290892455 ], [ -95.328169643187593, 36.999444290892455 ], [ -95.322441342447391, 36.999444290892455 ], [ -95.195327621260049, 36.999645983160335 ], [ -95.177324390362259, 36.999444290892455 ], [ -95.155502292304362, 36.999444290892455 ], [ -95.155229516078634, 36.999444290892455 ], [ -95.073396648361452, 36.999444290892455 ], [ -95.073396648361452, 36.999444290892455 ], [ -95.049392340497747, 36.999645983160335 ], [ -95.037935739017342, 36.999444290892455 ], [ -95.030298004697073, 36.999444290892455 ], [ -95.011476445122128, 36.999444290892455 ], [ -95.007657577961993, 36.999444290892455 ], [ -94.995382647804419, 36.999444290892455 ], [ -94.853266234202252, 36.998839214088818 ], [ -94.849720143267845, 36.998839214088818 ], [ -94.840991304044678, 36.998839214088818 ], [ -94.831171359918613, 36.998839214088818 ], [ -94.777161667225286, 36.998839214088818 ], [ -94.739245771849653, 36.998637521820939 ], [ -94.737063562043872, 36.998637521820939 ], [ -94.712786477954438, 36.998839214088818 ], [ -94.70187542892549, 36.998839214088818 ], [ -94.699693219119695, 36.998839214088818 ], [ -94.618133127628241, 36.998234137285181 ], [ -94.618133127628241, 36.996217214606389 ], [ -94.618133127628241, 36.994603676463356 ], [ -94.618133127628241, 36.950231377529988 ], [ -94.618133127628241, 36.946600916708164 ], [ -94.618133127628241, 36.937524764653617 ], [ -94.618405903853969, 36.92965876620633 ], [ -94.618133127628241, 36.926229997652392 ], [ -94.618405903853969, 36.911506462097222 ], [ -94.618133127628241, 36.896984618809938 ], [ -94.618678680079682, 36.880042468308105 ], [ -94.618405903853969, 36.847368320911713 ], [ -94.618405903853969, 36.766489721492249 ], [ -94.618133127628241, 36.701343118967351 ], [ -94.618133127628241, 36.669475740642476 ], [ -94.618133127628241, 36.667862202499443 ], [ -94.617860351402513, 36.612598521100608 ], [ -94.617860351402513, 36.606951137599992 ], [ -94.617860351402513, 36.59908513915272 ], [ -94.617860351402513, 36.577705758757546 ], [ -94.617860351402513, 36.536963920645995 ], [ -94.617860351402513, 36.536157151574486 ], [ -94.618133127628241, 36.534341921163573 ], [ -94.617860351402513, 36.517803155197498 ], [ -94.617860351402513, 36.51497946344719 ], [ -94.617860351402513, 36.499449158820511 ], [ -94.615405365371004, 36.484927315533227 ], [ -94.613768708016664, 36.476254548014431 ], [ -94.611586498210869, 36.461531012459268 ], [ -94.605312645019211, 36.421999327954993 ], [ -94.602584882761974, 36.405258869721038 ], [ -94.602039330310532, 36.402031793434972 ], [ -94.599857120504737, 36.387509950147688 ], [ -94.593310491087365, 36.345759650696742 ], [ -94.586218309218538, 36.29997550588822 ], [ -94.577762246221099, 36.250157515722115 ], [ -94.578035022446826, 36.249552438918478 ], [ -94.576125588866759, 36.240072902328166 ], [ -94.575034483963861, 36.23361874975604 ], [ -94.574761707738134, 36.232811980684524 ], [ -94.574488931512406, 36.229988288934223 ], [ -94.571761169255183, 36.213651215236027 ], [ -94.571215616803727, 36.210827523485719 ], [ -94.566578420966422, 36.183800759589943 ], [ -94.565760092289253, 36.178355068357206 ], [ -94.562759553806288, 36.161816302391131 ], [ -94.562759553806288, 36.161816302391131 ], [ -94.561122896451934, 36.152135073532939 ], [ -94.552121281003053, 36.102317083366842 ], [ -94.547756861391463, 36.078315703489238 ], [ -94.547756861391463, 36.07730724214985 ], [ -94.535754707459617, 36.007723409731604 ], [ -94.534936378782447, 36.002681103034632 ], [ -94.533572497653822, 35.996832027266144 ], [ -94.531935840299482, 35.98775587521159 ], [ -94.528389749365076, 35.965973110280657 ], [ -94.528116973139348, 35.965569725744899 ], [ -94.524570882204941, 35.945803883492765 ], [ -94.524298105979213, 35.943988653081853 ], [ -94.522934224850587, 35.936122654634573 ], [ -94.522661448624874, 35.934912501027299 ], [ -94.522661448624874, 35.934710808759419 ], [ -94.522661448624874, 35.934307424223661 ], [ -94.507658756210049, 35.845966210892684 ], [ -94.505749322629981, 35.833662982552063 ], [ -94.50438544150137, 35.826402060908421 ], [ -94.503021560372744, 35.817124216585988 ], [ -94.501112126792677, 35.806434526388401 ], [ -94.500839350566963, 35.803812526905979 ], [ -94.500566574341235, 35.802602373298704 ], [ -94.499748245664065, 35.796954989798095 ], [ -94.498929916986896, 35.79352622124415 ], [ -94.494565497375305, 35.768314687759279 ], [ -94.493474392472407, 35.761860535187154 ], [ -94.492928840020966, 35.759238535704725 ], [ -94.488291644183647, 35.729186387790762 ], [ -94.487473315506492, 35.726161003772575 ], [ -94.472743399317395, 35.638626559513114 ], [ -94.465378441222839, 35.594052568311859 ], [ -94.464560112545684, 35.588808569347009 ], [ -94.464014560094228, 35.587195031203976 ], [ -94.463196231417058, 35.582757801310635 ], [ -94.431826965458811, 35.397604299397756 ], [ -94.431281413007355, 35.39437722311169 ], [ -94.434009175264592, 35.387317993735927 ], [ -94.433736399038878, 35.38651122466441 ], [ -94.43264529413598, 35.380863841163801 ], [ -94.431826965458811, 35.362913229322572 ], [ -94.434009175264592, 35.306439394316463 ], [ -94.435100280167489, 35.291514166493421 ], [ -94.435373056393217, 35.287480321135838 ], [ -94.435373056393217, 35.275983861866735 ], [ -94.435645832618945, 35.274168631455829 ], [ -94.435918608844659, 35.271344939705521 ], [ -94.437555266199013, 35.242301253130954 ], [ -94.437828042424727, 35.239275869112767 ], [ -94.438373594876182, 35.211038951609716 ], [ -94.438373594876182, 35.208618644395166 ], [ -94.439191923553352, 35.197323877393941 ], [ -94.439191923553352, 35.193491724304245 ], [ -94.43946469977908, 35.171708959373319 ], [ -94.43946469977908, 35.16908695989089 ], [ -94.440828580907692, 35.128748506315098 ], [ -94.441101357133419, 35.119672354260544 ], [ -94.447920762776519, 34.933913775544021 ], [ -94.449284643905131, 34.895793936914899 ], [ -94.449011867679417, 34.894180398771866 ], [ -94.449011867679417, 34.890549937950048 ], [ -94.449557420130859, 34.875221325591241 ], [ -94.4501029725823, 34.861304559107595 ], [ -94.4501029725823, 34.858682559625173 ], [ -94.4501029725823, 34.855455483339107 ], [ -94.454467392193891, 34.728994431379 ], [ -94.457467930676856, 34.642871832994686 ], [ -94.457467930676856, 34.6350058345474 ], [ -94.459922916708365, 34.547874774823697 ], [ -94.459922916708365, 34.545252775341268 ], [ -94.461014021611263, 34.507536321247898 ], [ -94.4637417838685, 34.419598492452678 ], [ -94.4637417838685, 34.4145561857557 ], [ -94.464287336319956, 34.402656341950845 ], [ -94.465378441222839, 34.359494196624745 ], [ -94.465923993674295, 34.352031582713224 ], [ -94.470288413285886, 34.189870999338538 ], [ -94.474925609123176, 34.021861340195365 ], [ -94.474925609123176, 34.021861340195365 ], [ -94.474925609123176, 34.019642725248694 ], [ -94.476835042703243, 33.957319814474097 ], [ -94.477107818928971, 33.953891045920159 ], [ -94.477380595154699, 33.940982740775901 ], [ -94.477380595154699, 33.937755664489842 ], [ -94.47874447628331, 33.881483521751605 ], [ -94.479017252509038, 33.881281829483726 ], [ -94.479835581186222, 33.851229681569762 ], [ -94.480653909863378, 33.830253685710353 ], [ -94.481472238540562, 33.802823537278812 ], [ -94.481472238540562, 33.802621845010933 ], [ -94.481472238540562, 33.795764307903049 ], [ -94.48174501476629, 33.789108463063044 ], [ -94.482563343443445, 33.756232623398773 ], [ -94.482836119669173, 33.753610623916344 ], [ -94.482836119669173, 33.750786932166044 ], [ -94.482836119669173, 33.750585239898165 ], [ -94.483927224572071, 33.716700938894498 ], [ -94.483927224572071, 33.711255247661768 ], [ -94.48474555324924, 33.691691097677506 ], [ -94.484472777023512, 33.687858944587809 ], [ -94.485563881926424, 33.663454180174455 ], [ -94.485563881926424, 33.653369566780505 ], [ -94.485836658152138, 33.637839262153825 ], [ -94.487746091732205, 33.628561417831392 ], [ -94.49074663021517, 33.625536033813205 ], [ -94.524025329753485, 33.615854804955021 ], [ -94.528389749365076, 33.6160564972229 ], [ -94.660958995066892, 33.660227103888388 ], [ -94.735154128463805, 33.691287713141747 ], [ -94.746065177492753, 33.70298586467873 ], [ -94.760522317456122, 33.726987244556327 ], [ -94.822442520695461, 33.732634628056935 ], [ -94.86936003151996, 33.745946317736951 ], [ -95.039572396371682, 33.860709218160075 ], [ -95.062212823106776, 33.903669671218296 ], [ -95.063576704235402, 33.913955976880118 ], [ -95.067122795169809, 33.917384745434063 ], [ -95.129588550860575, 33.936747203150446 ], [ -95.156047844755804, 33.944008124794088 ], [ -95.219331929123754, 33.961555352099552 ], [ -95.226424110992568, 33.96195873663531 ], [ -95.231061306829872, 33.960345198492284 ], [ -95.252883404887797, 33.933721819132259 ], [ -95.253701733564967, 33.929687973774676 ], [ -95.249882866404832, 33.922225359863162 ], [ -95.248246209050478, 33.912342438737092 ], [ -95.249882866404832, 33.902056133075263 ], [ -95.255611167145034, 33.891971519681313 ], [ -95.260793915433794, 33.887735982055858 ], [ -95.287525985554737, 33.873617523304333 ], [ -95.310439188515545, 33.871398908357662 ], [ -95.339626244667997, 33.868776908875233 ], [ -95.40782030109898, 33.866356601660684 ], [ -95.445736196474599, 33.868776908875233 ], [ -95.544481190186659, 33.880071675876458 ], [ -95.548300057346793, 33.88269367535888 ], [ -95.552118924506928, 33.888341058859496 ], [ -95.552391700732656, 33.894391826895863 ], [ -95.549391162249691, 33.901249364003746 ], [ -95.549118386023963, 33.907905208843751 ], [ -95.559483882601469, 33.930091358310435 ], [ -95.567121616921739, 33.932713357792863 ], [ -95.599581987782898, 33.934326895935897 ], [ -95.757246646251318, 33.867365063000079 ], [ -95.763520499442961, 33.848002605283703 ], [ -95.824622374005116, 33.837716299621874 ], [ -95.846444472063041, 33.84114506817582 ], [ -95.949826661612406, 33.857482141874016 ], [ -96.097398599729033, 33.847599220747945 ], [ -96.148134977713681, 33.837716299621874 ], [ -96.15659104071112, 33.81331153520852 ], [ -96.16422877503139, 33.784267848633952 ], [ -96.169957075771606, 33.769140928543024 ], [ -96.181686453477724, 33.758451238345444 ], [ -96.199962460601228, 33.752198778041198 ], [ -96.220420677530527, 33.747358163612098 ], [ -96.229967845430863, 33.748366624951494 ], [ -96.304708531279203, 33.745946317736951 ], [ -96.369629273001507, 33.716902631162377 ], [ -96.378358112224674, 33.726583860020568 ], [ -96.423366189469107, 33.776401850186673 ], [ -96.436459448303864, 33.78003231100849 ], [ -96.447916049784268, 33.781040772347886 ], [ -96.500289085123256, 33.772569697096969 ], [ -96.61294566634723, 33.833884146532171 ], [ -96.614855099927297, 33.84114506817582 ], [ -96.615946204830195, 33.853448296516433 ], [ -96.61294566634723, 33.867566755267958 ], [ -96.611581785218618, 33.875231061447359 ], [ -96.613491218798686, 33.878256445465546 ], [ -96.615400652378753, 33.881080137215847 ], [ -96.622220058021853, 33.885920751644946 ], [ -96.633403883276529, 33.889349520198891 ], [ -96.647042694562728, 33.895198595967379 ], [ -96.658772072268846, 33.900039210396471 ], [ -96.672138107329332, 33.899635825860713 ], [ -96.678684736746703, 33.892778288752829 ], [ -96.682503603906838, 33.883097059894638 ], [ -96.685504142389803, 33.872810754232816 ], [ -96.689323009549938, 33.861717679499471 ], [ -96.694505757838684, 33.850019527962488 ], [ -96.701052387256055, 33.840741683640061 ], [ -96.707326240447713, 33.835497684675204 ], [ -96.71250898873646, 33.831665531585507 ], [ -96.761608709366769, 33.824404609941865 ], [ -96.855989283467238, 33.847397528480066 ], [ -96.866354780044759, 33.853246604248554 ], [ -96.882994129813909, 33.867970139803717 ], [ -96.895814612422939, 33.896408749574654 ], [ -96.899360703357345, 33.933721819132259 ], [ -96.907271213903343, 33.950058892830455 ], [ -96.916272829352238, 33.957723199009855 ], [ -96.92200113009244, 33.959538429420768 ], [ -96.934548836475727, 33.95368935365228 ], [ -96.94464155682752, 33.949050431491059 ], [ -96.972737508077074, 33.935738741811051 ], [ -96.985557990686104, 33.886525828448583 ], [ -97.006016207615403, 33.86191937176735 ], [ -97.048023746376884, 33.817950457369733 ], [ -97.092486271169889, 33.733239704860573 ], [ -97.097123467007179, 33.727794013627843 ], [ -97.107216187358972, 33.721138168787832 ], [ -97.121127774870899, 33.717104323430256 ], [ -97.137494348414322, 33.718717861573289 ], [ -97.151133159700521, 33.722550014662986 ], [ -97.162862537406653, 33.729205859502997 ], [ -97.163135313632381, 33.729407551770876 ], [ -97.172136929081262, 33.737475242486028 ], [ -97.204870076168135, 33.799999845528511 ], [ -97.204870076168135, 33.818958918709129 ], [ -97.199687327879388, 33.827228301692166 ], [ -97.194777355816342, 33.831262147049749 ], [ -97.181411320755871, 33.831463839317628 ], [ -97.17159137662982, 33.835295992407325 ], [ -97.166954180792516, 33.840338299104303 ], [ -97.166681404566788, 33.847397528480066 ], [ -97.180865768304429, 33.895198595967379 ], [ -97.185502964141733, 33.900644287200109 ], [ -97.210871153134065, 33.915972899558909 ], [ -97.226419398000331, 33.914561053683755 ], [ -97.310707251749022, 33.872407369697058 ], [ -97.372900231214061, 33.819362303244887 ], [ -97.426364371455946, 33.819362303244887 ], [ -97.444094826128008, 33.823799533138228 ], [ -97.453096441576889, 33.828438455299441 ], [ -97.459097518542819, 33.834489223335808 ], [ -97.462916385702954, 33.841750144979457 ], [ -97.461552504574342, 33.849616143426729 ], [ -97.457733637414208, 33.855061834659466 ], [ -97.45145978422255, 33.870995523821904 ], [ -97.450914231771108, 33.891366442877676 ], [ -97.458006413639936, 33.901652748539505 ], [ -97.484192931309423, 33.91577120729103 ], [ -97.486375141115218, 33.916981360898305 ], [ -97.500832281078587, 33.919603360380734 ], [ -97.519108288202091, 33.913552592344359 ], [ -97.545567582097306, 33.90044259493223 ], [ -97.555114749997642, 33.897215518646163 ], [ -97.561115826963572, 33.89802228771768 ], [ -97.581028491441415, 33.90044259493223 ], [ -97.587575120858787, 33.902459517611021 ], [ -97.596303960081954, 33.913754284612239 ], [ -97.597122288759124, 33.917788129969821 ], [ -97.588939001987413, 33.951874123241367 ], [ -97.589484554438855, 33.953487661384401 ], [ -97.609124442690984, 33.968009504671684 ], [ -97.656314729741212, 33.989388885066852 ], [ -97.671862974607478, 33.991405807745643 ], [ -97.687956771925187, 33.986565193316551 ], [ -97.693139520213947, 33.983741501566243 ], [ -97.700504478308488, 33.972245042297139 ], [ -97.733783177846803, 33.936343818614688 ], [ -97.785337884508635, 33.890761366074038 ], [ -97.83443760513893, 33.857683834141895 ], [ -97.865806871097178, 33.84941445115885 ], [ -97.877263472577596, 33.850221220230367 ], [ -97.966734074615033, 33.881886906287363 ], [ -97.977917899869709, 33.889954597002529 ], [ -97.977917899869709, 33.889954597002529 ], [ -97.953368039554562, 33.936545510882567 ], [ -97.945730305234292, 33.98979226960261 ], [ -97.983646200609911, 34.001490421139593 ], [ -98.019379886179749, 33.993826114960186 ], [ -98.041201984237659, 33.993422730424427 ], [ -98.085391732804936, 34.003305651550498 ], [ -98.088119495062173, 34.005524266497169 ], [ -98.106395502185677, 34.033761184000227 ], [ -98.169134034102171, 34.114236398883932 ], [ -98.199957747608977, 34.116858398366354 ], [ -98.293792769258005, 34.132993779796671 ], [ -98.300339398675376, 34.134607317939704 ], [ -98.32543481144198, 34.1509443916379 ], [ -98.363896259269055, 34.157196851942146 ], [ -98.383263371295456, 34.147717315351834 ], [ -98.398538839935995, 34.128556549903337 ], [ -98.400448273516062, 34.121699012795446 ], [ -98.433726973054377, 34.096084094774824 ], [ -98.475188959364402, 34.064216716449948 ], [ -98.50410323929114, 34.072284407165107 ], [ -98.553748512372891, 34.133598856600308 ], [ -98.577480044010883, 34.149129161226988 ], [ -98.599847694520236, 34.160625620496091 ], [ -98.610213191097756, 34.16102900503185 ], [ -98.637490813670141, 34.162239158639125 ], [ -98.652220729859238, 34.16102900503185 ], [ -98.665859541145423, 34.151549468441537 ], [ -98.700229345586649, 34.136019163814858 ], [ -98.765695639760381, 34.136422548350616 ], [ -98.858439556506511, 34.152759622048812 ], [ -98.920086983520122, 34.182811769962775 ], [ -98.952547354381267, 34.195720075107026 ], [ -98.966731718118908, 34.201165766339763 ], [ -99.060293963542208, 34.20479622716158 ], [ -99.119213628298581, 34.201770843143393 ], [ -99.1571295236742, 34.207418226644009 ], [ -99.190953775663971, 34.215284225091288 ], [ -99.211684768818984, 34.292330671421048 ], [ -99.211684768818984, 34.313911744084095 ], [ -99.209775335238916, 34.32500481881744 ], [ -99.211411992593256, 34.337711431693819 ], [ -99.211411992593256, 34.337913123961698 ], [ -99.261330041900734, 34.403463111022361 ], [ -99.356801720904102, 34.442188026455113 ], [ -99.398536483439869, 34.375831270322941 ], [ -99.407265322663036, 34.372604194036875 ], [ -99.440816798427079, 34.374217732179908 ], [ -99.453364504810366, 34.388739575467191 ], [ -99.474095497965394, 34.398017419789625 ], [ -99.500009239409167, 34.409513879058728 ], [ -99.515284708049705, 34.414354493487821 ], [ -99.574477149031793, 34.418186646577524 ], [ -99.579932673546267, 34.416573108434491 ], [ -99.616757464019003, 34.375427885787182 ], [ -99.66394775106923, 34.37361265537627 ], [ -99.695044240801764, 34.378251577537483 ], [ -99.767329940618595, 34.430489874918138 ], [ -99.793789234513824, 34.453886177992096 ], [ -99.84643504607854, 34.505116014033355 ], [ -99.864983829427757, 34.523066625874577 ], [ -99.872348787522313, 34.532142777929138 ], [ -99.874530997328094, 34.53718508462611 ], [ -99.884896493905615, 34.546866313484301 ], [ -99.923085165506961, 34.574498154183715 ], [ -99.945725592242042, 34.579338768612814 ], [ -99.954454431465209, 34.578128615005539 ], [ -99.997825851355316, 34.561388156771585 ], [ -100.000280837386825, 34.560581387700068 ], [ -100.000280837386825, 34.746339966416592 ], [ -100.000280837386825, 34.746541658684471 ], [ -100.000280837386825, 35.030322679590164 ], [ -100.000280837386825, 35.182802034106658 ], [ -100.000280837386825, 35.422412448346861 ], [ -100.000280837386825, 35.619062409528851 ], [ -100.000280837386825, 35.880858973235739 ], [ -100.000280837386825, 36.055726169486796 ], [ -100.000280837386825, 36.49965085108839 ], [ -100.003826928321232, 36.49965085108839 ], [ -100.09002421564999, 36.49965085108839 ], [ -100.181131475041781, 36.49965085108839 ], [ -100.310700182260632, 36.49965085108839 ], [ -100.31097295848636, 36.49965085108839 ], [ -100.311245734712088, 36.49965085108839 ], [ -100.324066217321118, 36.49965085108839 ], [ -100.334431713898624, 36.499449158820511 ], [ -100.334431713898624, 36.499449158820511 ], [ -100.351889392344958, 36.499449158820511 ], [ -100.351889392344958, 36.499449158820511 ], [ -100.378621462465901, 36.499449158820511 ], [ -100.378621462465901, 36.499449158820511 ], [ -100.413536819358555, 36.499449158820511 ], [ -100.413536819358555, 36.499449158820511 ], [ -100.421174553678824, 36.499449158820511 ], [ -100.421447329904552, 36.499449158820511 ], [ -100.433995036287854, 36.499449158820511 ], [ -100.441087218156667, 36.499449158820511 ], [ -100.441087218156667, 36.499449158820511 ], [ -100.52210175719668, 36.499247466552632 ], [ -100.530285043968391, 36.499449158820511 ], [ -100.530557820194119, 36.499247466552632 ], [ -100.531103372645561, 36.499247466552632 ], [ -100.531103372645561, 36.499247466552632 ], [ -100.546106065060386, 36.499247466552632 ], [ -100.578020883470074, 36.499449158820511 ], [ -100.578020883470074, 36.499449158820511 ], [ -100.583476407984563, 36.499449158820511 ], [ -100.583476407984563, 36.499449158820511 ], [ -100.592478023433443, 36.499449158820511 ], [ -100.592478023433443, 36.499449158820511 ], [ -100.592478023433443, 36.499449158820511 ], [ -100.648397149706852, 36.499449158820511 ], [ -100.648397149706852, 36.499449158820511 ], [ -100.657671541381461, 36.499449158820511 ], [ -100.657671541381461, 36.499449158820511 ], [ -100.708680695591838, 36.499449158820511 ], [ -100.708680695591838, 36.49965085108839 ], [ -100.72422894045809, 36.49965085108839 ], [ -100.72422894045809, 36.49965085108839 ], [ -100.761872059607995, 36.49965085108839 ], [ -100.761872059607995, 36.49965085108839 ], [ -100.802788493466579, 36.49965085108839 ], [ -100.802788493466579, 36.49965085108839 ], [ -100.806061808175272, 36.49965085108839 ], [ -100.806061808175272, 36.49965085108839 ], [ -100.824337815298776, 36.49965085108839 ], [ -100.824337815298776, 36.49965085108839 ], [ -100.850797109193991, 36.49965085108839 ], [ -100.859525948417158, 36.49965085108839 ], [ -100.88407580873232, 36.49965085108839 ], [ -100.88407580873232, 36.49965085108839 ], [ -100.918445613173532, 36.49965085108839 ], [ -100.936176067845579, 36.49965085108839 ], [ -100.954179298743355, 36.49965085108839 ], [ -100.977092501704163, 36.49965085108839 ], [ -101.045286558135146, 36.499449158820511 ], [ -101.052378740003974, 36.49965085108839 ], [ -101.085111887090846, 36.499247466552632 ], [ -101.623844932895565, 36.499449158820511 ], [ -101.650031450565066, 36.49965085108839 ], [ -101.653577541499487, 36.49965085108839 ], [ -101.69858561874392, 36.499449158820511 ], [ -101.709223891547154, 36.49965085108839 ], [ -101.779327381558204, 36.49965085108839 ], [ -101.780691262686815, 36.49965085108839 ], [ -101.782055143815441, 36.49965085108839 ], [ -101.783419024944067, 36.49965085108839 ], [ -101.788056220781371, 36.49965085108839 ], [ -101.826517668608446, 36.499449158820511 ], [ -101.826517668608446, 36.49965085108839 ], [ -102.032463719030005, 36.500054235624148 ], [ -102.162577978700313, 36.500255927892027 ], [ -103.002455977704244, 36.500457620159906 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "16", "geo_id": "0400000US42", "fips_state": "42", "name": "Pennsylvania", "iso_3166_2": "PA", "census": 12702379, "pop_estimataes_base": 12702884, "pop_2010": 12711077, "pop_2011": 12743995, "pop_2012": 12770043, "pop_2013": 12781296, "pop_2014": 12787209 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.476597613919381, 39.721079753651139 ], [ -79.608348530944042, 39.721079753651139 ], [ -79.610530740749823, 39.721281445919018 ], [ -79.763830979606666, 39.720676369115381 ], [ -79.853028805418404, 39.720676369115381 ], [ -79.853028805418404, 39.720676369115381 ], [ -79.91631288978634, 39.72087806138326 ], [ -80.308565102377344, 39.721281445919018 ], [ -80.309383431054499, 39.721281445919018 ], [ -80.421494459827045, 39.721281445919018 ], [ -80.519421124861921, 39.721483138186898 ], [ -80.519148348636207, 39.936890480281633 ], [ -80.519148348636207, 39.939109095228297 ], [ -80.519148348636207, 39.956656322533767 ], [ -80.519148348636207, 39.959480014284068 ], [ -80.519148348636207, 39.962102013766497 ], [ -80.519148348636207, 39.962505398302255 ], [ -80.519148348636207, 39.963312167373772 ], [ -80.519148348636207, 40.016357233825943 ], [ -80.518875572410479, 40.077066606457507 ], [ -80.518875572410479, 40.078075067796902 ], [ -80.519148348636207, 40.159760436287883 ], [ -80.519148348636207, 40.172668741432133 ], [ -80.519148348636207, 40.172870433700012 ], [ -80.518057243733296, 40.398967465992328 ], [ -80.518057243733296, 40.399572542795966 ], [ -80.518602796184751, 40.477425758197242 ], [ -80.519148348636207, 40.517965904040913 ], [ -80.519148348636207, 40.517965904040913 ], [ -80.519148348636207, 40.590171735941581 ], [ -80.519148348636207, 40.590171735941581 ], [ -80.519148348636207, 40.616391730765841 ], [ -80.519148348636207, 40.616391730765841 ], [ -80.518875572410479, 40.638779572500411 ], [ -80.519148348636207, 40.792267388356294 ], [ -80.518875572410479, 40.801141848142976 ], [ -80.519148348636207, 40.849144607898168 ], [ -80.519148348636207, 40.850153069237564 ], [ -80.519148348636207, 40.851363222844839 ], [ -80.519693901087635, 40.899769367135782 ], [ -80.519693901087635, 40.900777828475178 ], [ -80.519148348636207, 40.92114874753095 ], [ -80.518875572410479, 40.98730381139525 ], [ -80.518875572410479, 40.995371502110416 ], [ -80.518875572410479, 41.015339036630429 ], [ -80.518875572410479, 41.06152656597471 ], [ -80.518875572410479, 41.071006102565022 ], [ -80.518875572410479, 41.071812871636538 ], [ -80.518875572410479, 41.075039947922605 ], [ -80.519148348636207, 41.08209917729836 ], [ -80.519148348636207, 41.090570252549284 ], [ -80.519148348636207, 41.100856558211106 ], [ -80.519148348636207, 41.105293788104447 ], [ -80.518875572410479, 41.115983478302027 ], [ -80.519148348636207, 41.125059630356581 ], [ -80.519148348636207, 41.125059630356581 ], [ -80.519148348636207, 41.125059630356581 ], [ -80.519148348636207, 41.125059630356581 ], [ -80.519148348636207, 41.133329013339619 ], [ -80.519148348636207, 41.133329013339619 ], [ -80.519148348636207, 41.145430549412353 ], [ -80.519148348636207, 41.171247159700869 ], [ -80.518875572410479, 41.209165306062104 ], [ -80.518875572410479, 41.21945161172394 ], [ -80.518875572410479, 41.21945161172394 ], [ -80.518875572410479, 41.23256160913607 ], [ -80.518602796184751, 41.248898682834266 ], [ -80.518875572410479, 41.265235756532462 ], [ -80.518875572410479, 41.26805944828277 ], [ -80.518875572410479, 41.268261140550649 ], [ -80.518875572410479, 41.305574210108247 ], [ -80.519148348636207, 41.312431747216138 ], [ -80.519148348636207, 41.333407743075547 ], [ -80.519148348636207, 41.336029742557976 ], [ -80.519148348636207, 41.337239896165244 ], [ -80.519148348636207, 41.337239896165244 ], [ -80.519421124861921, 41.339055126576156 ], [ -80.519421124861921, 41.339055126576156 ], [ -80.519421124861921, 41.339660203379793 ], [ -80.519421124861921, 41.340063587915552 ], [ -80.519421124861921, 41.340668664719189 ], [ -80.519421124861921, 41.350753278113139 ], [ -80.519148348636207, 41.361039583774968 ], [ -80.519148348636207, 41.371930966240427 ], [ -80.519148348636207, 41.378990195616197 ], [ -80.519148348636207, 41.416504957441681 ], [ -80.518875572410479, 41.416504957441681 ], [ -80.518875572410479, 41.435464030622299 ], [ -80.519148348636207, 41.462490794518082 ], [ -80.519148348636207, 41.488912481610228 ], [ -80.519148348636207, 41.500005556343567 ], [ -80.519148348636207, 41.528847550650262 ], [ -80.519421124861921, 41.53933554857997 ], [ -80.519421124861921, 41.669830445897652 ], [ -80.519421124861921, 41.671242291772806 ], [ -80.519421124861921, 41.701496131954656 ], [ -80.519421124861921, 41.739414278315891 ], [ -80.519421124861921, 41.752524275728028 ], [ -80.519148348636207, 41.765230888604407 ], [ -80.519421124861921, 41.849538256577809 ], [ -80.519421124861921, 41.929206702389997 ], [ -80.519421124861921, 41.94393023794516 ], [ -80.519421124861921, 41.976201000805794 ], [ -80.519421124861921, 41.977612846680948 ], [ -80.519421124861921, 41.977612846680948 ], [ -80.435406047338958, 42.005648071916127 ], [ -80.409765082120913, 42.011497147684608 ], [ -80.372940291648177, 42.024002068293107 ], [ -80.37184918674528, 42.024002068293107 ], [ -80.363120347522113, 42.028035913650683 ], [ -80.3492087600102, 42.030254528597354 ], [ -80.329841647983798, 42.036103604365849 ], [ -80.296835724671212, 42.049011909510099 ], [ -80.230551101820296, 42.078055596084667 ], [ -80.187998010607373, 42.094190977514984 ], [ -80.16590313632372, 42.105889129051967 ], [ -80.154173758617588, 42.114763588838642 ], [ -80.136170527719827, 42.149858043449584 ], [ -80.130442226979625, 42.156312196021702 ], [ -80.117348968144867, 42.166396809415659 ], [ -80.088434688218143, 42.173254346523535 ], [ -80.077523639189181, 42.171237423844744 ], [ -80.073431995803318, 42.168615424362322 ], [ -80.07997862522069, 42.163573117665351 ], [ -80.072068114674693, 42.155303734682306 ], [ -80.078887520317807, 42.15147158159261 ], [ -80.076159758060555, 42.147841120770792 ], [ -80.072068114674693, 42.14602589035988 ], [ -80.061157065645745, 42.144815736752605 ], [ -79.989144142054627, 42.177086499613239 ], [ -79.931315582201165, 42.206735262991444 ], [ -79.92395062410661, 42.20754203206296 ], [ -79.901037421145801, 42.216618184117515 ], [ -79.886307504956704, 42.224887567100552 ], [ -79.868031497833215, 42.230938335136919 ], [ -79.844572742420951, 42.235577257298132 ], [ -79.798473560273607, 42.255948176353911 ], [ -79.761921546026599, 42.269864942837557 ], [ -79.761921546026599, 42.251309254192691 ], [ -79.762194322252327, 42.24303987120966 ], [ -79.761921546026599, 42.183540652185364 ], [ -79.761921546026599, 42.179708499095668 ], [ -79.761921546026599, 42.173254346523535 ], [ -79.761648769800885, 42.162766348593834 ], [ -79.761921546026599, 42.150664812521093 ], [ -79.762194322252327, 42.131302354804717 ], [ -79.761375993575157, 41.998992227076116 ], [ -79.625260656938934, 41.998992227076116 ], [ -79.625260656938934, 41.998992227076116 ], [ -79.610803516975551, 41.998992227076116 ], [ -79.551338299767735, 41.998588842540357 ], [ -79.53851781715872, 41.998588842540357 ], [ -79.06115942214187, 41.999193919343995 ], [ -79.052430582918703, 41.999193919343995 ], [ -78.918770232313989, 41.99798376573672 ], [ -78.87485325997244, 41.997580381200962 ], [ -78.596621509734035, 41.999798996147632 ], [ -78.308024262918138, 41.999395611611874 ], [ -78.206551506948841, 42.000000688415511 ], [ -78.124718639231673, 42.00040407295127 ], [ -78.031156393808359, 41.999395611611874 ], [ -78.030883617582646, 41.999395611611874 ], [ -77.8320297490299, 41.998588842540357 ], [ -77.822755357355291, 41.998588842540357 ], [ -77.749924105087004, 41.998790534808236 ], [ -77.609989901290632, 41.999597303879753 ], [ -77.505243830612642, 42.000000688415511 ], [ -77.124720995727785, 41.999395611611874 ], [ -77.007699994892221, 42.000807457487028 ], [ -77.007427218666507, 42.000807457487028 ], [ -76.965692456130739, 42.001210842022786 ], [ -76.965692456130739, 42.001210842022786 ], [ -76.942506476944203, 42.001614226558544 ], [ -76.937050952429729, 42.001614226558544 ], [ -76.926958232077951, 42.001614226558544 ], [ -76.92177548378919, 42.001614226558544 ], [ -76.920684378886307, 42.001815918826424 ], [ -76.83503264400899, 42.001815918826424 ], [ -76.815938308208317, 42.001614226558544 ], [ -76.558164774899211, 42.00020238068339 ], [ -76.557619222447769, 42.00020238068339 ], [ -76.466511963055979, 41.998992227076116 ], [ -76.462147543444388, 41.998992227076116 ], [ -76.349763738446143, 41.998387150272478 ], [ -76.343762661480213, 41.998387150272478 ], [ -76.145454345378937, 41.998992227076116 ], [ -76.131269981641282, 41.998992227076116 ], [ -76.123632247321012, 41.998992227076116 ], [ -76.105901792648964, 41.998790534808236 ], [ -75.983152491073199, 41.998992227076116 ], [ -75.980151952590234, 41.998992227076116 ], [ -75.48369922177271, 41.999193919343995 ], [ -75.483153669321268, 41.999193919343995 ], [ -75.477152592355338, 41.999395611611874 ], [ -75.43623615849674, 41.999395611611874 ], [ -75.431871738885164, 41.999395611611874 ], [ -75.359586039068319, 41.999395611611874 ], [ -75.341855584396271, 41.993344843575507 ], [ -75.292483087540248, 41.953813159071231 ], [ -75.279117052479762, 41.938887931248189 ], [ -75.263023255162068, 41.885036095724502 ], [ -75.146547806777946, 41.850950102452956 ], [ -75.140273953586302, 41.85216025606023 ], [ -75.114360212142529, 41.843487488541442 ], [ -75.090901456730279, 41.812023494752324 ], [ -75.053531113806088, 41.752524275728028 ], [ -75.048075589291614, 41.63191229953641 ], [ -75.052985561354646, 41.618600609856401 ], [ -75.049985022871681, 41.606902458319418 ], [ -75.040437854971344, 41.569589388761813 ], [ -74.984245952472222, 41.50625801664782 ], [ -74.939783427679231, 41.483466790377491 ], [ -74.912505805106832, 41.475600791930219 ], [ -74.892047588177533, 41.448775720302315 ], [ -74.876772119536994, 41.440304645051398 ], [ -74.799030895205675, 41.430421723925328 ], [ -74.75593225154131, 41.42679126310351 ], [ -74.752658936832617, 41.426589570835631 ], [ -74.691011509819006, 41.367292044079214 ], [ -74.689647628690381, 41.361644660578605 ], [ -74.694830376979155, 41.357409122953143 ], [ -74.761660552281512, 41.336433127093734 ], [ -74.795757580496996, 41.318885899788263 ], [ -74.830127384938208, 41.287220213731267 ], [ -74.838310671709934, 41.277337292605196 ], [ -74.861769427122184, 41.241637761190617 ], [ -74.867224951636658, 41.228931148314246 ], [ -74.864224413153693, 41.224897302956663 ], [ -74.867224951636658, 41.208761921526346 ], [ -74.882227644051483, 41.180928388559053 ], [ -74.923144077910052, 41.138169627768718 ], [ -74.974426008346157, 41.103881942229293 ], [ -74.969516036283125, 41.096015943782014 ], [ -74.967333826477329, 41.093999021103222 ], [ -74.966788274025888, 41.093393944299585 ], [ -74.968424931380241, 41.087746560798976 ], [ -74.980699861537801, 41.078267024208664 ], [ -75.025980715007975, 41.042769185061971 ], [ -75.036891764036938, 41.034701494346805 ], [ -75.051894456451748, 41.027238880435291 ], [ -75.069352134898082, 41.019372881988005 ], [ -75.091447009181721, 41.012313652612242 ], [ -75.109177463853769, 41.004044269629205 ], [ -75.130454009460237, 40.991135964484954 ], [ -75.135636757748983, 40.973790429447362 ], [ -75.131272338137407, 40.969353199554021 ], [ -75.120634065334173, 40.968344738214626 ], [ -75.120361289108445, 40.968344738214626 ], [ -75.120361289108445, 40.962697354714024 ], [ -75.119815736657003, 40.961688893374628 ], [ -75.117633526851222, 40.953016125855825 ], [ -75.052440008903204, 40.872137526436362 ], [ -75.051076127774579, 40.865683373864243 ], [ -75.05325833758036, 40.859834298095748 ], [ -75.108631911402327, 40.791057234749026 ], [ -75.134272876620372, 40.773711699711434 ], [ -75.149275569035183, 40.77472016105083 ], [ -75.163732708998566, 40.778350621872647 ], [ -75.171643219544549, 40.77774554506901 ], [ -75.196465856085425, 40.751727242512629 ], [ -75.20383081417998, 40.691421254416817 ], [ -75.200830275697001, 40.618408653444632 ], [ -75.196738632311153, 40.608525732318569 ], [ -75.190737555345223, 40.591381889548856 ], [ -75.190192002893781, 40.589364966870065 ], [ -75.147366135455115, 40.573229585439748 ], [ -75.13536398152327, 40.575649892654297 ], [ -75.117360750625494, 40.573229585439748 ], [ -75.100448624630616, 40.567783894207011 ], [ -75.068533806220913, 40.542168976186389 ], [ -75.067442701318015, 40.536521592685773 ], [ -75.064987715286492, 40.526235287023951 ], [ -75.065806043963676, 40.519579442183939 ], [ -75.07044323980098, 40.455239608730551 ], [ -75.061441624352085, 40.422767153602038 ], [ -75.058713862094848, 40.418128231440832 ], [ -75.035527882908326, 40.40622838763597 ], [ -75.024889610105078, 40.403404695885662 ], [ -74.937873994099164, 40.340678400575307 ], [ -74.860405545993558, 40.284607950104956 ], [ -74.770662167730393, 40.214822425418831 ], [ -74.758660013798533, 40.201309043470943 ], [ -74.722380775777253, 40.160567205359399 ], [ -74.721562447100098, 40.153709668251508 ], [ -74.724290209357321, 40.147255515679383 ], [ -74.724290209357321, 40.147053823411504 ], [ -74.740656782900771, 40.135153979606642 ], [ -74.838037895484206, 40.100866294067224 ], [ -74.900230874949244, 40.077066606457507 ], [ -74.974426008346157, 40.048829688954456 ], [ -74.974698784571885, 40.048627996686577 ], [ -75.014251337301857, 40.020996155987156 ], [ -75.055986099837611, 39.991750777144702 ], [ -75.072079897155319, 39.980657702411364 ], [ -75.085718708441519, 39.967547704999234 ], [ -75.133181771717474, 39.922570329262221 ], [ -75.153912764872501, 39.906233255564025 ], [ -75.185009254605021, 39.881626798882792 ], [ -75.210377443597338, 39.865894801988233 ], [ -75.210922996048794, 39.865693109720354 ], [ -75.234927303912499, 39.856616957665807 ], [ -75.271206541933779, 39.849356036022158 ], [ -75.306394675052161, 39.849759420557916 ], [ -75.374588731483144, 39.82575804068032 ], [ -75.390136976349396, 39.816480196357887 ], [ -75.414959612890286, 39.801756660802724 ], [ -75.428052871725029, 39.809219274714245 ], [ -75.453693836943074, 39.82031234944759 ], [ -75.498974690413249, 39.833220654591841 ], [ -75.539345571820391, 39.838262961288819 ], [ -75.579716453227519, 39.838464653556699 ], [ -75.579989229453247, 39.838464653556699 ], [ -75.59308248828799, 39.837456192217303 ], [ -75.593628040739446, 39.837456192217303 ], [ -75.594719145642344, 39.837254499949424 ], [ -75.595810250545242, 39.837254499949424 ], [ -75.634817250823758, 39.830195270573654 ], [ -75.641636656466858, 39.828380040162749 ], [ -75.662913202073327, 39.821119118519107 ], [ -75.686099181259863, 39.811034505125157 ], [ -75.716922894766654, 39.792075431944539 ], [ -75.739836097727476, 39.772712974228156 ], [ -75.788390265906315, 39.721886522722656 ], [ -75.799574091161006, 39.721886522722656 ], [ -75.809939587738512, 39.721886522722656 ], [ -76.013157875902834, 39.721886522722656 ], [ -76.027615015866189, 39.721886522722656 ], [ -76.135634401252872, 39.721483138186898 ], [ -76.22428667461314, 39.721281445919018 ], [ -76.233288290062035, 39.721281445919018 ], [ -76.233288290062035, 39.721281445919018 ], [ -76.239834919479406, 39.721281445919018 ], [ -76.380041899501492, 39.721281445919018 ], [ -76.380587451952948, 39.721281445919018 ], [ -76.395590144367759, 39.721281445919018 ], [ -76.418776123554295, 39.721281445919018 ], [ -76.418776123554295, 39.721281445919018 ], [ -76.49188015204831, 39.721281445919018 ], [ -76.516975564814913, 39.721281445919018 ], [ -76.569348600153887, 39.721281445919018 ], [ -76.569348600153887, 39.721281445919018 ], [ -76.71201056620751, 39.721079753651139 ], [ -76.715556657141917, 39.721079753651139 ], [ -76.787024028281579, 39.72087806138326 ], [ -76.787024028281579, 39.72087806138326 ], [ -76.80639114030798, 39.720676369115381 ], [ -76.809118902565217, 39.720676369115381 ], [ -76.890133441605229, 39.720474676847502 ], [ -76.897498399699771, 39.720474676847502 ], [ -76.99951670812051, 39.720071292311744 ], [ -77.046979771396479, 39.720071292311744 ], [ -77.058163596651156, 39.720272984579623 ], [ -77.058981925328325, 39.720071292311744 ], [ -77.216919360022473, 39.720071292311744 ], [ -77.216919360022473, 39.720071292311744 ], [ -77.239832562983281, 39.720071292311744 ], [ -77.243378653917688, 39.720071292311744 ], [ -77.459417424691026, 39.720071292311744 ], [ -77.46923736881709, 39.720071292311744 ], [ -77.53333978186221, 39.720071292311744 ], [ -77.534703662990836, 39.720071292311744 ], [ -77.672182880755685, 39.72087806138326 ], [ -77.674637866787208, 39.72087806138326 ], [ -77.724010363643231, 39.72087806138326 ], [ -77.732739202866398, 39.721079753651139 ], [ -77.743104699443904, 39.721281445919018 ], [ -77.768472888436236, 39.721281445919018 ], [ -78.073709485021283, 39.722289907258414 ], [ -78.075891694827078, 39.722289907258414 ], [ -78.099077674013614, 39.722289907258414 ], [ -78.203005416014435, 39.722491599526293 ], [ -78.204369297143046, 39.722491599526293 ], [ -78.240375758938598, 39.722491599526293 ], [ -78.243103521195849, 39.722491599526293 ], [ -78.269017262639608, 39.722491599526293 ], [ -78.269017262639608, 39.722693291794172 ], [ -78.330664689653219, 39.722693291794172 ], [ -78.33721131907059, 39.722491599526293 ], [ -78.339666305102099, 39.722491599526293 ], [ -78.340484633779283, 39.722491599526293 ], [ -78.342394067359351, 39.722491599526293 ], [ -78.342939619810807, 39.722491599526293 ], [ -78.380582738960697, 39.722491599526293 ], [ -78.808295860895797, 39.722693291794172 ], [ -78.931045162471548, 39.722693291794172 ], [ -78.931045162471548, 39.722693291794172 ], [ -79.392582536396418, 39.721281445919018 ], [ -79.476597613919381, 39.721079753651139 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "17", "geo_id": "0400000US47", "fips_state": "47", "name": "Tennessee", "iso_3166_2": "TN", "census": 6346105, "pop_estimataes_base": 6346275, "pop_2010": 6356628, "pop_2011": 6398389, "pop_2012": 6455177, "pop_2013": 6497269, "pop_2014": 6549352 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.677628979285672, 36.588193756687254 ], [ -81.699996629795038, 36.539787612396303 ], [ -81.707907140341021, 36.536157151574486 ], [ -81.70054218224648, 36.515181155715069 ], [ -81.699996629795038, 36.514172694375674 ], [ -81.69972385356931, 36.512962540768399 ], [ -81.699451077343582, 36.511550694893245 ], [ -81.697814419989243, 36.508525310875065 ], [ -81.697814419989243, 36.507516849535669 ], [ -81.697268867537787, 36.50489485005324 ], [ -81.698087196214971, 36.504088080981731 ], [ -81.699996629795038, 36.500861004695665 ], [ -81.700269406020752, 36.500457620159906 ], [ -81.699996629795038, 36.498037312945357 ], [ -81.698359972440684, 36.49723054387384 ], [ -81.697268867537787, 36.496222082534445 ], [ -81.696723315086345, 36.493398390784144 ], [ -81.695904986409175, 36.491583160373231 ], [ -81.697268867537787, 36.484725623265348 ], [ -81.714999322209849, 36.45346332174411 ], [ -81.714180993532665, 36.45104301452956 ], [ -81.721000399175779, 36.387509950147688 ], [ -81.725910371238797, 36.340313959464012 ], [ -81.731093119527557, 36.341120728535529 ], [ -81.747732469296722, 36.337288575445825 ], [ -81.764917371517328, 36.338700421320979 ], [ -81.789740008058203, 36.348381650179171 ], [ -81.793558875218338, 36.360483186251905 ], [ -81.800923833312879, 36.358062879037362 ], [ -81.854933526006221, 36.337288575445825 ], [ -81.908124890022378, 36.301992428567011 ], [ -81.918217610374171, 36.287067200743962 ], [ -81.932947526563254, 36.264881051277278 ], [ -81.960225149135653, 36.228173058523311 ], [ -82.026509771986554, 36.130150616334134 ], [ -82.080246688454167, 36.10574585192078 ], [ -82.080519464679895, 36.10574585192078 ], [ -82.127164199278681, 36.104334006045626 ], [ -82.130710290213102, 36.106350928724417 ], [ -82.138075248307644, 36.119662618404433 ], [ -82.136438590953304, 36.12873877045898 ], [ -82.147895192433708, 36.149513074050518 ], [ -82.211179276801644, 36.158992610640823 ], [ -82.222090325830607, 36.156975687962039 ], [ -82.234910808439622, 36.141647075603238 ], [ -82.235456360891078, 36.140840306531722 ], [ -82.236547465793961, 36.139831845192326 ], [ -82.237638570696873, 36.139226768388689 ], [ -82.325199739154243, 36.119460926136554 ], [ -82.329291382540106, 36.117444003457763 ], [ -82.348385718340779, 36.11583046531473 ], [ -82.360933424724081, 36.110586466349872 ], [ -82.366661725464283, 36.107561082331692 ], [ -82.371298921301587, 36.106350928724417 ], [ -82.375663340913178, 36.105544159652901 ], [ -82.409487592902934, 36.083358010186217 ], [ -82.416852550997476, 36.072870012256509 ], [ -82.46295173314482, 36.007320025195853 ], [ -82.487501593459967, 35.991588028301287 ], [ -82.487501593459967, 35.991588028301287 ], [ -82.505777600583485, 35.978276338621278 ], [ -82.507141481712097, 35.977469569549761 ], [ -82.512597006226571, 35.975654339138849 ], [ -82.557605083471032, 35.95467834327944 ], [ -82.596884859975262, 35.964964648941269 ], [ -82.611341999938631, 35.973234031924306 ], [ -82.615160867098766, 36.000260795820083 ], [ -82.602885936941192, 36.039792480324358 ], [ -82.619252510484628, 36.056532938558313 ], [ -82.632345769319372, 36.065609090612867 ], [ -82.637255741382404, 36.065810782880746 ], [ -82.683627699755476, 36.046044940628605 ], [ -82.715269741939437, 36.024262175697679 ], [ -82.754549518443696, 36.004294641177665 ], [ -82.778553826307387, 35.97484757006734 ], [ -82.830108532969206, 35.932895578348514 ], [ -82.852476183478572, 35.949030959778831 ], [ -82.874025505310755, 35.952661420600649 ], [ -82.898575365625916, 35.945198806689127 ], [ -82.898575365625916, 35.945198806689127 ], [ -82.913305281815013, 35.924021118561839 ], [ -82.898029813174475, 35.881262357771497 ], [ -82.918488030103759, 35.845562826356925 ], [ -82.962950554896764, 35.795139759387183 ], [ -82.964041659799648, 35.794131298047787 ], [ -82.983954324277505, 35.777995916617471 ], [ -82.995683701983637, 35.773155302188371 ], [ -83.100156996435885, 35.774768840331404 ], [ -83.100429772661613, 35.774768840331404 ], [ -83.100156996435885, 35.774768840331404 ], [ -83.164804961932461, 35.760045304776241 ], [ -83.240636752683713, 35.726766080576212 ], [ -83.251275025486933, 35.719908543468328 ], [ -83.255366668872796, 35.715067929039236 ], [ -83.250729473035491, 35.70942054553862 ], [ -83.254275563969912, 35.695907163590732 ], [ -83.297101431408549, 35.65778732496161 ], [ -83.366932145193886, 35.638828251780986 ], [ -83.445764474428088, 35.611801487885209 ], [ -83.479043173966403, 35.583362878114272 ], [ -83.478497621514961, 35.579127340488817 ], [ -83.480679831320742, 35.576707033274268 ], [ -83.485589803383789, 35.568235958023351 ], [ -83.498410285992804, 35.5629919590585 ], [ -83.640526699594972, 35.56601734307668 ], [ -83.662894350104324, 35.569042727094867 ], [ -83.676260385164795, 35.570252880702142 ], [ -83.75700214797908, 35.563597035862138 ], [ -83.880024225780573, 35.518821352393005 ], [ -83.933761142248187, 35.472432130780845 ], [ -83.952582701823133, 35.460733979243869 ], [ -83.952855478048861, 35.460733979243869 ], [ -83.961038764820572, 35.464162747797808 ], [ -83.961038764820572, 35.463759363262049 ], [ -83.961038764820572, 35.462750901922654 ], [ -83.961311541046285, 35.459523825636595 ], [ -83.99977298887336, 35.425236140097169 ], [ -84.002227974904883, 35.422614140614741 ], [ -84.024868401639964, 35.353837077268018 ], [ -84.03523389821747, 35.350811693249831 ], [ -84.037416108023265, 35.349803231910442 ], [ -84.037961660474707, 35.348391386035289 ], [ -84.032506135960233, 35.326608621104356 ], [ -84.032506135960233, 35.325398467497081 ], [ -84.021322310705557, 35.301397087619492 ], [ -84.023504520511352, 35.295749704118876 ], [ -84.028960045025826, 35.291110781957663 ], [ -84.055692115146769, 35.268117863419462 ], [ -84.097426877682523, 35.247343559827925 ], [ -84.115157332354585, 35.249763867042475 ], [ -84.115157332354585, 35.250368943846112 ], [ -84.121158409320515, 35.250570636113991 ], [ -84.124977276480649, 35.249763867042475 ], [ -84.202991277037682, 35.255814635078842 ], [ -84.21172011626085, 35.266100940740671 ], [ -84.223722270192695, 35.269126324758858 ], [ -84.227813913578558, 35.267916171151583 ], [ -84.290279669269324, 35.225560794897 ], [ -84.292189102849392, 35.206601721716375 ], [ -84.308555676392842, 35.093250667168405 ], [ -84.308555676392842, 35.092847282632647 ], [ -84.321921711453314, 34.988370687871338 ], [ -84.393934635044417, 34.98796730333558 ], [ -84.395025739947329, 34.98796730333558 ], [ -84.509046202299913, 34.98796730333558 ], [ -84.509864530977097, 34.98796730333558 ], [ -84.621430007298159, 34.988370687871338 ], [ -84.727539959104774, 34.98796730333558 ], [ -84.731086050039181, 34.988168995603459 ], [ -84.775821351057914, 34.987765611067701 ], [ -84.808008945693331, 34.987563918799822 ], [ -84.809100050596214, 34.987563918799822 ], [ -84.81046393172484, 34.987563918799822 ], [ -84.810736707950568, 34.987563918799822 ], [ -84.81728333736794, 34.987765611067701 ], [ -84.820556652076618, 34.98796730333558 ], [ -84.824102743011039, 34.987765611067701 ], [ -84.831740477331309, 34.98796730333558 ], [ -84.85792699500081, 34.987765611067701 ], [ -84.861200309709488, 34.987765611067701 ], [ -84.939214310266522, 34.98796730333558 ], [ -84.944397058555282, 34.987765611067701 ], [ -84.955580883809972, 34.987765611067701 ], [ -84.976857429416441, 34.987765611067701 ], [ -84.979857967899392, 34.987563918799822 ], [ -85.045051485847409, 34.986958841996191 ], [ -85.045051485847409, 34.986958841996191 ], [ -85.180621270032191, 34.986152072924675 ], [ -85.185804018320951, 34.985950380656796 ], [ -85.216627731827757, 34.985748688388917 ], [ -85.217718836730654, 34.985748688388917 ], [ -85.220446598987891, 34.985546996121037 ], [ -85.221810480116517, 34.985546996121037 ], [ -85.230266543113942, 34.985546996121037 ], [ -85.235449291402702, 34.985546996121037 ], [ -85.255089179654817, 34.985143611585279 ], [ -85.26518190000661, 34.985143611585279 ], [ -85.275820172809844, 34.9849419193174 ], [ -85.277456830164184, 34.9849419193174 ], [ -85.294368956159076, 34.984740227049521 ], [ -85.301461138027889, 34.984538534781642 ], [ -85.305552781413752, 34.984538534781642 ], [ -85.308280543670989, 34.984336842513763 ], [ -85.36392689371867, 34.983328381174367 ], [ -85.474401265136862, 34.983933457978004 ], [ -85.605061077258611, 34.984740227049521 ], [ -85.824373162740642, 34.988168995603459 ], [ -85.828737582352218, 34.988168995603459 ], [ -85.8639257154706, 34.988370687871338 ], [ -86.311278725657829, 34.991194379621646 ], [ -86.318643683752384, 34.991194379621646 ], [ -86.397203236760859, 34.991597764157405 ], [ -86.43402802723358, 34.990992687353767 ], [ -86.467852279223365, 34.990790995085888 ], [ -86.528408601334064, 34.990589302818009 ], [ -86.555959000132191, 34.990992687353767 ], [ -86.57123446877273, 34.990992687353767 ], [ -86.588964923444777, 34.991194379621646 ], [ -86.600148748699453, 34.991194379621646 ], [ -86.641337958783765, 34.991799456425284 ], [ -86.659613965907269, 34.991799456425284 ], [ -86.670797791161959, 34.992001148693163 ], [ -86.674343882096366, 34.992001148693163 ], [ -86.676798868127875, 34.992001148693163 ], [ -86.677617196805045, 34.992001148693163 ], [ -86.783727148611661, 34.992001148693163 ], [ -86.783727148611661, 34.992001148693163 ], [ -86.820551939084382, 34.991799456425284 ], [ -86.836372960176362, 34.991799456425284 ], [ -86.836372960176362, 34.991799456425284 ], [ -86.846465680528155, 34.991799456425284 ], [ -86.849738995236834, 34.992001148693163 ], [ -86.862013925394422, 34.992001148693163 ], [ -86.967032772298126, 34.994421455907712 ], [ -86.970306087006804, 34.994623148175592 ], [ -86.9724882968126, 34.994623148175592 ], [ -86.974397730392667, 34.994421455907712 ], [ -87.000038695610726, 34.99502653271135 ], [ -87.011222520865402, 34.995228224979229 ], [ -87.210894718095304, 34.999060378068926 ], [ -87.216623018835506, 34.999060378068926 ], [ -87.223987976930047, 34.999262070336805 ], [ -87.230534606347419, 34.999463762604684 ], [ -87.270087159077391, 35.00047222394408 ], [ -87.299274215229843, 35.000875608479838 ], [ -87.349192264537322, 35.001682377551354 ], [ -87.359284984889115, 35.001884069819234 ], [ -87.381107082947025, 35.002085762087113 ], [ -87.391199803298804, 35.002287454354992 ], [ -87.417386320968305, 35.00269083889075 ], [ -87.421477964354168, 35.00269083889075 ], [ -87.428570146222995, 35.002892531158629 ], [ -87.606147469169258, 35.00329591569438 ], [ -87.664248805248448, 35.00349760796226 ], [ -87.671340987117276, 35.00349760796226 ], [ -87.696709176109607, 35.003900992498018 ], [ -87.700528043269742, 35.003900992498018 ], [ -87.702437476849809, 35.003900992498018 ], [ -87.709529658718623, 35.004102684765897 ], [ -87.758902155574646, 35.004707761569534 ], [ -87.767630994797813, 35.004707761569534 ], [ -87.773632071763743, 35.004909453837413 ], [ -87.851918848546504, 35.00571622290893 ], [ -87.853282729675129, 35.005514530641051 ], [ -87.853555505900857, 35.005514530641051 ], [ -87.872649841701531, 35.005514530641051 ], [ -87.877832589990277, 35.005514530641051 ], [ -87.878105366216005, 35.005514530641051 ], [ -87.985033646699776, 35.006321299712567 ], [ -88.182523634123896, 35.007733145587721 ], [ -88.19998131257023, 34.995631609514987 ], [ -88.253718229037844, 34.995631609514987 ], [ -88.258082648649406, 34.995429917247108 ], [ -88.363647048004566, 34.995631609514987 ], [ -88.380559173999444, 34.995631609514987 ], [ -88.469756999811182, 34.996034994050746 ], [ -88.469756999811182, 34.996034994050746 ], [ -88.786722974102361, 34.995228224979229 ], [ -88.82300221212364, 34.995228224979229 ], [ -89.017218884839082, 34.994623148175592 ], [ -89.138877081511936, 34.994421455907712 ], [ -89.139149857737664, 34.994219763639833 ], [ -89.198342298719751, 34.994421455907712 ], [ -89.352733642479492, 34.994421455907712 ], [ -89.493758951178762, 34.994421455907712 ], [ -89.511216629625096, 34.994824840443471 ], [ -89.644331427778354, 34.995228224979229 ], [ -89.724254861915455, 34.994824840443471 ], [ -89.795176680603674, 34.994219763639833 ], [ -89.848368044619846, 34.994219763639833 ], [ -89.8832834015125, 34.994219763639833 ], [ -89.893376121864293, 34.994421455907712 ], [ -90.309359866093274, 34.995631609514987 ], [ -90.309905418544702, 35.009750068266513 ], [ -90.295721054807075, 35.040003908448355 ], [ -90.19397552261205, 35.061584981111402 ], [ -90.174608410585648, 35.116646970242357 ], [ -90.160151270622279, 35.128748506315098 ], [ -90.142693592175959, 35.135000966619344 ], [ -90.109414892637631, 35.118865585189027 ], [ -90.100686053414478, 35.116646970242357 ], [ -90.090593333062685, 35.11826050838539 ], [ -90.083501151193872, 35.121689276939335 ], [ -90.065497920296082, 35.137622966101773 ], [ -90.064679591618912, 35.14064835011996 ], [ -90.073408430842079, 35.211038951609716 ], [ -90.074226759519249, 35.218299873253358 ], [ -90.077500074227942, 35.225560794897 ], [ -90.097958291157227, 35.249965559310354 ], [ -90.10505047302604, 35.254201096935809 ], [ -90.116507074506458, 35.255814635078842 ], [ -90.140511382370164, 35.252385866524904 ], [ -90.151967983850568, 35.256016327346721 ], [ -90.158787389493654, 35.262672172186726 ], [ -90.166697900039651, 35.274572015991588 ], [ -90.168880109845446, 35.282034629903109 ], [ -90.1636973615567, 35.296153088654634 ], [ -90.158787389493654, 35.300590318547975 ], [ -90.153331864979179, 35.30260724122676 ], [ -90.114870417152105, 35.303817394834034 ], [ -90.08677446590255, 35.369972458698335 ], [ -90.089502228159787, 35.379855379824406 ], [ -90.093593871545636, 35.393368761772294 ], [ -90.135601410307132, 35.37662830353834 ], [ -90.143511920853115, 35.374813073127427 ], [ -90.166152347588209, 35.374813073127427 ], [ -90.178427277745783, 35.382073994771076 ], [ -90.179245606422953, 35.385099378789256 ], [ -90.168880109845446, 35.421807371543224 ], [ -90.15251353630201, 35.436732599366266 ], [ -90.107778235283291, 35.476869360674186 ], [ -90.074499535744962, 35.472432130780845 ], [ -90.072044549713453, 35.470818592637812 ], [ -90.067680130101877, 35.466179670476599 ], [ -90.05895129087871, 35.457910287493561 ], [ -90.04776746562402, 35.459322133368715 ], [ -90.034128654337835, 35.468801669959021 ], [ -90.034946983015004, 35.480701513763883 ], [ -90.039856955078037, 35.548066731235458 ], [ -90.033037549434937, 35.553512422468188 ], [ -90.028673129823346, 35.5553276528791 ], [ -90.017216528342942, 35.555932729682738 ], [ -89.957478534909413, 35.528704273519075 ], [ -89.933474227045707, 35.533343195680288 ], [ -89.909742695407729, 35.537982117841509 ], [ -89.884920058866854, 35.655165325479182 ], [ -89.890375583381328, 35.652341633728881 ], [ -89.906196604473308, 35.651131480121606 ], [ -89.922835954242473, 35.655367017747061 ], [ -89.937293094205842, 35.66565332340889 ], [ -89.955841877555059, 35.690663164625882 ], [ -89.958842416038038, 35.723740696558032 ], [ -89.956387430006515, 35.733421925416224 ], [ -89.950386353040585, 35.738464232113195 ], [ -89.910015471633443, 35.759440227972604 ], [ -89.905651052021867, 35.759036843436846 ], [ -89.889011702252702, 35.750565768185936 ], [ -89.865552946840452, 35.746531922828353 ], [ -89.821090422047462, 35.756616536222303 ], [ -89.70379664498617, 35.820351292872054 ], [ -89.701068882728933, 35.828217291319334 ], [ -89.702978316309, 35.834066367087821 ], [ -89.709252169500644, 35.838906981516914 ], [ -89.729437610204215, 35.84757974903571 ], [ -89.749350274682058, 35.853025440268446 ], [ -89.769535715385643, 35.861496515519363 ], [ -89.772536253868594, 35.86512697634118 ], [ -89.773627358771492, 35.871782821181185 ], [ -89.771717925191425, 35.879648819628464 ], [ -89.765716848225509, 35.891346971165447 ], [ -89.756169680325172, 35.896792662398177 ], [ -89.733529253590078, 35.904658660845456 ], [ -89.714980470240846, 35.906272198988489 ], [ -89.688248400119903, 35.896994354666056 ], [ -89.687975623894175, 35.905465429916973 ], [ -89.686884518991292, 35.947619113903677 ], [ -89.719890442303878, 35.97464587779946 ], [ -89.732983701138636, 36.000664180355841 ], [ -89.706797183469135, 36.001067564891599 ], [ -89.690430609925698, 36.024867252501316 ], [ -89.68715729521702, 36.03414509682375 ], [ -89.684429532959768, 36.05169232412922 ], [ -89.624145987074797, 36.108569543671088 ], [ -89.602051112791145, 36.119460926136554 ], [ -89.593867826019434, 36.127125232315947 ], [ -89.591685616213638, 36.144067382817781 ], [ -89.594413378470875, 36.155362149819005 ], [ -89.606961084854177, 36.171094146713564 ], [ -89.618144910108867, 36.179968606500239 ], [ -89.629328735363544, 36.185414297732969 ], [ -89.699705001600307, 36.248342285311203 ], [ -89.691248938602868, 36.252174438400907 ], [ -89.678155679768125, 36.248342285311203 ], [ -89.602323889016873, 36.238055979649374 ], [ -89.589503406407857, 36.23906444098877 ], [ -89.541494790680446, 36.247938900775452 ], [ -89.534675385037332, 36.252577822936665 ], [ -89.535493713714516, 36.270528434777887 ], [ -89.539585357100378, 36.277385971885778 ], [ -89.544768105389124, 36.280411355903958 ], [ -89.554315273289461, 36.277789356421536 ], [ -89.578592357378895, 36.288277354351237 ], [ -89.611871056917209, 36.309051657942774 ], [ -89.620327119914649, 36.322968424426421 ], [ -89.619781567463207, 36.329624269266425 ], [ -89.615962700303072, 36.33607842183855 ], [ -89.610779952014312, 36.340515651731891 ], [ -89.605597203725551, 36.342330882142804 ], [ -89.58159289586186, 36.342330882142804 ], [ -89.560316350255391, 36.337691959981584 ], [ -89.545040881614852, 36.336885190910067 ], [ -89.531947622780109, 36.339305498124617 ], [ -89.519127140171079, 36.34858334244705 ], [ -89.513126063205164, 36.359878109448275 ], [ -89.509579972270743, 36.375005029539196 ], [ -89.519399916396793, 36.475447778942915 ], [ -89.5226732311055, 36.481296854711402 ], [ -89.539039804648922, 36.498239005213236 ], [ -89.498123370790339, 36.497835620677478 ], [ -89.49266784627585, 36.497835620677478 ], [ -89.485030111955581, 36.497633928409599 ], [ -89.493486174953034, 36.478674855228974 ], [ -89.493213398727306, 36.470203779978064 ], [ -89.486121216858493, 36.461531012459268 ], [ -89.471664076895109, 36.457093782565927 ], [ -89.460480251640433, 36.458102243905323 ], [ -89.448478097708588, 36.464354704209569 ], [ -89.429383761907914, 36.48190193151504 ], [ -89.417381607976068, 36.499045774284752 ], [ -89.404015572915597, 36.499045774284752 ], [ -89.381920698631944, 36.500054235624148 ], [ -89.380011265051877, 36.500457620159906 ], [ -89.356552509639627, 36.502272850570819 ], [ -89.346187013062121, 36.503281311910214 ], [ -89.346187013062121, 36.503281311910214 ], [ -89.282357376242715, 36.506710080464153 ], [ -89.279084061534036, 36.506508388196274 ], [ -89.211435557554495, 36.505701619124757 ], [ -89.163426941827083, 36.504491465517489 ], [ -89.16315416560137, 36.504491465517489 ], [ -89.119782745711262, 36.503684696445973 ], [ -89.117600535905467, 36.503684696445973 ], [ -89.090050137107369, 36.503483004178094 ], [ -89.072046906209579, 36.503281311910214 ], [ -89.058953647374835, 36.503079619642335 ], [ -89.034676563285402, 36.502877927374456 ], [ -89.010399479195968, 36.502676235106577 ], [ -89.006853388261561, 36.502676235106577 ], [ -89.000033982618476, 36.502676235106577 ], [ -88.964573073274352, 36.502272850570819 ], [ -88.874829695011186, 36.502474542838698 ], [ -88.834731589829772, 36.502877927374456 ], [ -88.834731589829772, 36.502877927374456 ], [ -88.827366631735231, 36.502877927374456 ], [ -88.827093855509503, 36.502877927374456 ], [ -88.816728358931996, 36.502877927374456 ], [ -88.79954345671139, 36.502676235106577 ], [ -88.74744319759813, 36.502877927374456 ], [ -88.715255602962699, 36.502676235106577 ], [ -88.661245910269372, 36.502272850570819 ], [ -88.577230832746395, 36.50186946603506 ], [ -88.545316014336692, 36.50186946603506 ], [ -88.516401734409968, 36.501466081499302 ], [ -88.516401734409968, 36.501466081499302 ], [ -88.512310091024105, 36.501466081499302 ], [ -88.512037314798391, 36.501466081499302 ], [ -88.489124111837583, 36.501062696963544 ], [ -88.489124111837583, 36.501062696963544 ], [ -88.472484762068405, 36.501062696963544 ], [ -88.452572097590576, 36.500861004695665 ], [ -88.450117111559052, 36.501062696963544 ], [ -88.416292859569296, 36.500659312427786 ], [ -88.330913900917693, 36.500457620159906 ], [ -88.326003928854675, 36.500457620159906 ], [ -88.320821180565915, 36.500457620159906 ], [ -88.053227703130744, 36.49723054387384 ], [ -88.053227703130744, 36.497028851605961 ], [ -88.039588891844559, 36.510340541285977 ], [ -88.037952234490206, 36.513769309839915 ], [ -88.032496709975732, 36.54059438146782 ], [ -88.035497248458711, 36.561772069595108 ], [ -88.045044416359048, 36.602917292242417 ], [ -88.055682689162268, 36.635793131906688 ], [ -88.068230395545569, 36.659794511784284 ], [ -88.070412605351365, 36.678148508161271 ], [ -88.011765716820719, 36.676938354553997 ], [ -87.849463862514995, 36.663626664873988 ], [ -87.853282729675129, 36.633171132424266 ], [ -87.694254190078084, 36.636801593246084 ], [ -87.641062826061926, 36.638011746853351 ], [ -87.641062826061926, 36.638011746853351 ], [ -87.564958259084946, 36.639020208192747 ], [ -87.563048825504879, 36.639020208192747 ], [ -87.436480656768978, 36.640835438603659 ], [ -87.425024055288574, 36.641037130871538 ], [ -87.41438578248534, 36.641037130871538 ], [ -87.347828383408711, 36.641440515407297 ], [ -87.344009516248576, 36.641440515407297 ], [ -87.336099005702579, 36.641642207675176 ], [ -87.281543760557796, 36.641843899943055 ], [ -87.278270445849103, 36.641642207675176 ], [ -87.247719508568025, 36.641843899943055 ], [ -87.231080158798875, 36.641843899943055 ], [ -87.230534606347419, 36.641843899943055 ], [ -87.114877486640495, 36.642448976746692 ], [ -87.114877486640495, 36.642448976746692 ], [ -87.060867793947153, 36.643457438086088 ], [ -86.906476450187412, 36.646281129836396 ], [ -86.905930897735971, 36.646281129836396 ], [ -86.854376191074152, 36.646886206640033 ], [ -86.833099645467684, 36.647289591175792 ], [ -86.818369729278587, 36.64769297571155 ], [ -86.816187519472805, 36.64769297571155 ], [ -86.812914204764112, 36.64769297571155 ], [ -86.763268931682347, 36.648903129318825 ], [ -86.758904512070771, 36.649104821586704 ], [ -86.606422601891097, 36.652130205604884 ], [ -86.605058720762486, 36.652130205604884 ], [ -86.564142286903888, 36.633574516960024 ], [ -86.564142286903888, 36.633372824692145 ], [ -86.473580579963567, 36.651726821069126 ], [ -86.473307803737839, 36.651726821069126 ], [ -86.472216698834941, 36.651726821069126 ], [ -86.468397831674807, 36.651928513337005 ], [ -86.4113876004985, 36.650516667461851 ], [ -86.333100823715739, 36.648701437050946 ], [ -86.222080899846105, 36.640835438603659 ], [ -86.219080361363154, 36.640835438603659 ], [ -86.216352599105903, 36.64063374633578 ], [ -86.216079822880175, 36.640432054067901 ], [ -86.205441550076955, 36.639826977264264 ], [ -86.204895997625499, 36.639826977264264 ], [ -86.197531039530958, 36.639423592728505 ], [ -86.081873919824005, 36.633776209227904 ], [ -86.080782814921122, 36.633977901495776 ], [ -86.038229723708184, 36.630750825209716 ], [ -86.033046975419438, 36.630347440673958 ], [ -86.03277419919371, 36.630347440673958 ], [ -85.97630952046886, 36.628330517995167 ], [ -85.788639477170804, 36.621876365423041 ], [ -85.788639477170804, 36.621876365423041 ], [ -85.552142489468167, 36.615825597386674 ], [ -85.551596937016726, 36.615825597386674 ], [ -85.508498293352346, 36.615018828315158 ], [ -85.471400726653883, 36.616430674190312 ], [ -85.436485369761229, 36.618245904601217 ], [ -85.296005613513415, 36.625506826244859 ], [ -85.276365725261286, 36.626515287584255 ], [ -85.276365725261286, 36.626515287584255 ], [ -85.096060640057786, 36.622481442226679 ], [ -85.086513472157435, 36.621876365423041 ], [ -84.974947995836374, 36.61441375151152 ], [ -84.859836428580877, 36.606547753064241 ], [ -84.859836428580877, 36.606346060796362 ], [ -84.785368518958251, 36.603320676778175 ], [ -84.785368518958251, 36.603320676778175 ], [ -84.778549113315137, 36.603320676778175 ], [ -84.2613653893426, 36.59202590977695 ], [ -84.227268361127102, 36.591622525241192 ], [ -83.987770834941514, 36.589605602562408 ], [ -83.987498058715786, 36.589605602562408 ], [ -83.930760603765208, 36.588193756687254 ], [ -83.690717525128164, 36.582546373186645 ], [ -83.677078713841979, 36.59666483193817 ], [ -83.675442056487626, 36.600900369563625 ], [ -83.670259308198865, 36.600698677295753 ], [ -83.670259308198865, 36.600698677295753 ], [ -83.472223768323317, 36.597269908741808 ], [ -83.276370438253537, 36.598278370081204 ], [ -83.25018392058405, 36.593841140187862 ], [ -83.249911144358322, 36.593841140187862 ], [ -83.248820039455424, 36.593841140187862 ], [ -83.02841684907051, 36.593841140187862 ], [ -83.027325744167598, 36.593841140187862 ], [ -82.985045429180389, 36.593841140187862 ], [ -82.830381309194934, 36.593841140187862 ], [ -82.695902629913036, 36.593639447919983 ], [ -82.679808832595342, 36.593639447919983 ], [ -82.60915979013285, 36.594042832455742 ], [ -82.561151174405438, 36.594849601527258 ], [ -82.559787293276813, 36.594849601527258 ], [ -82.554331768762324, 36.594849601527258 ], [ -82.293830473195996, 36.595656370598775 ], [ -82.243366871437075, 36.595656370598775 ], [ -82.226727521667911, 36.595656370598775 ], [ -82.225636416765013, 36.595656370598775 ], [ -82.223454206959218, 36.595656370598775 ], [ -82.221817549604879, 36.595858062866654 ], [ -82.210906500575931, 36.595858062866654 ], [ -82.210360948124475, 36.595858062866654 ], [ -82.188538850066564, 36.595252986063016 ], [ -82.180628339520567, 36.594849601527258 ], [ -82.177355024811874, 36.594849601527258 ], [ -82.174081710103195, 36.594647909259379 ], [ -82.150622954690931, 36.594647909259379 ], [ -82.14844074488515, 36.594647909259379 ], [ -82.145985758853641, 36.594647909259379 ], [ -81.934038631466152, 36.594244524723621 ], [ -81.922582029985747, 36.616228981922433 ], [ -81.826837574756652, 36.614212059243641 ], [ -81.646805265778866, 36.611993444296971 ], [ -81.677628979285672, 36.588193756687254 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "18", "geo_id": "0400000US51", "fips_state": "51", "name": "Virginia", "iso_3166_2": "VA", "census": 8001024, "pop_estimataes_base": 8001023, "pop_2010": 8025376, "pop_2011": 8110188, "pop_2012": 8193422, "pop_2013": 8270345, "pop_2014": 8326289 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.242292262007041, 38.027268088003638 ], [ -75.296847507151824, 37.959096101460545 ], [ -75.319215157661191, 37.922388108706571 ], [ -75.334217850076001, 37.893546114399882 ], [ -75.349220542490826, 37.873175195344103 ], [ -75.359040486616877, 37.864099043289556 ], [ -75.366950997162874, 37.859460121128336 ], [ -75.374588731483144, 37.859460121128336 ], [ -75.392046409929463, 37.867729504111381 ], [ -75.400502472926917, 37.874788733487136 ], [ -75.428871200402199, 37.875393810290774 ], [ -75.437872815851094, 37.872368426272594 ], [ -75.452602732040191, 37.863493966485919 ], [ -75.46787820068073, 37.851392430413185 ], [ -75.487518088932845, 37.832231664964681 ], [ -75.514795711505229, 37.79915413303253 ], [ -75.548074411043558, 37.742478605758542 ], [ -75.556803250266711, 37.724326301649441 ], [ -75.572351495132978, 37.701535075379113 ], [ -75.581353110581873, 37.683584463537883 ], [ -75.586263082644905, 37.660591544999683 ], [ -75.603175208639783, 37.620253091423891 ], [ -75.610812942960052, 37.605932940404486 ], [ -75.612176824088664, 37.585562021348707 ], [ -75.608085180702815, 37.578099407437193 ], [ -75.595810250545242, 37.576687561562039 ], [ -75.594173593190902, 37.569628332186269 ], [ -75.60672129957419, 37.557123411577777 ], [ -75.633453369695133, 37.522230649234714 ], [ -75.666186516782005, 37.472210966800731 ], [ -75.665368188104836, 37.467370352371645 ], [ -75.664277083201938, 37.458899277120722 ], [ -75.661822097170429, 37.455067124031025 ], [ -75.665913740556277, 37.439133434868587 ], [ -75.672733146199391, 37.429855590546154 ], [ -75.697828558965981, 37.40524913386492 ], [ -75.720741761926803, 37.373180063272166 ], [ -75.72728839134416, 37.360271758127908 ], [ -75.725651733989821, 37.358456527717003 ], [ -75.726742838892719, 37.350187144733965 ], [ -75.735744454341614, 37.335463609178802 ], [ -75.765477062945507, 37.305613153532718 ], [ -75.778843098005979, 37.297142078281794 ], [ -75.780752531586046, 37.297142078281794 ], [ -75.784571398746181, 37.300974231371498 ], [ -75.791936356840736, 37.30057084683574 ], [ -75.798482986258108, 37.296335309210278 ], [ -75.790845251937839, 37.276166082422385 ], [ -75.799301314935278, 37.251761318009031 ], [ -75.795755224000871, 37.236836090185989 ], [ -75.790299699486383, 37.23118870668538 ], [ -75.790026923260669, 37.228163322667193 ], [ -75.790845251937839, 37.225137938649013 ], [ -75.804484063224038, 37.2079940958793 ], [ -75.800392419838175, 37.20093486650353 ], [ -75.800665196063903, 37.197304405681713 ], [ -75.830397804667797, 37.170681026321688 ], [ -75.877588091718053, 37.135586571710746 ], [ -75.886316930941206, 37.126107035120441 ], [ -75.897227979970168, 37.118039344405283 ], [ -75.906775147870505, 37.114207191315586 ], [ -75.912230672384979, 37.115215652654975 ], [ -75.913321777287877, 37.119854574816188 ], [ -75.92559670744545, 37.133569649031962 ], [ -75.942508833440343, 37.125098573781045 ], [ -75.945782148149021, 37.120459651619825 ], [ -75.9626942741439, 37.117434267601645 ], [ -75.970332008464169, 37.11864442120892 ], [ -75.970059232238441, 37.128930726870749 ], [ -75.977969742784438, 37.157369336641679 ], [ -75.998700735939465, 37.188833330430796 ], [ -76.006065694034007, 37.19488409846717 ], [ -76.013157875902834, 37.205372096396871 ], [ -76.013703428354276, 37.219288862880518 ], [ -76.010430113645583, 37.231592091221131 ], [ -76.013976204580004, 37.235424244310835 ], [ -76.025705582286122, 37.257408701509647 ], [ -76.023796148706055, 37.268905160778743 ], [ -76.015612861934343, 37.280805004583598 ], [ -76.023523372480341, 37.289074387566643 ], [ -76.018613400417308, 37.317916381873331 ], [ -76.014248980805718, 37.332034840624857 ], [ -75.997882407262296, 37.351800682876998 ], [ -75.987244134459061, 37.368541141110953 ], [ -75.979879176364506, 37.404644057061283 ], [ -75.983152491073199, 37.415737131794629 ], [ -75.981515833718859, 37.434091128171616 ], [ -75.976605861655827, 37.444780818369196 ], [ -75.960784840563832, 37.467572044639525 ], [ -75.963512602821083, 37.475438043086797 ], [ -75.963239826595355, 37.48169050339105 ], [ -75.958875406983765, 37.50004449976803 ], [ -75.949873791534884, 37.521827264698956 ], [ -75.940326623634547, 37.534533877575335 ], [ -75.937598861377296, 37.549660797666256 ], [ -75.937326085151582, 37.551677720345047 ], [ -75.941144952311717, 37.558535257452931 ], [ -75.941144952311717, 37.563779256417789 ], [ -75.924778378768281, 37.60028555690387 ], [ -75.909502910127742, 37.62267339863844 ], [ -75.877042539266597, 37.660591544999683 ], [ -75.868586476269158, 37.668255851179083 ], [ -75.869404804946328, 37.674306619215457 ], [ -75.86831370004343, 37.687618308895466 ], [ -75.859312084594535, 37.703148613522146 ], [ -75.845673273308336, 37.707989227951245 ], [ -75.837762762762353, 37.713031534648209 ], [ -75.830670580893525, 37.725536455256709 ], [ -75.831488909570709, 37.731788915560955 ], [ -75.827942818636288, 37.738041375865208 ], [ -75.824942280153323, 37.741671836687026 ], [ -75.812121797544307, 37.749537835134305 ], [ -75.803120182095412, 37.762446140278556 ], [ -75.812121797544307, 37.776564599030081 ], [ -75.818122874510237, 37.791691519121009 ], [ -75.793300237969362, 37.804398131997388 ], [ -75.784571398746181, 37.806818439211931 ], [ -75.770659811234268, 37.804599824265267 ], [ -75.743109412436155, 37.806616746944051 ], [ -75.735744454341614, 37.816499668070122 ], [ -75.723196747958298, 37.820130128891947 ], [ -75.71665011854094, 37.826785973731944 ], [ -75.714467908735145, 37.83767735619741 ], [ -75.709012384220671, 37.84776196959136 ], [ -75.703011307254741, 37.849577200002273 ], [ -75.689918048419997, 37.861880428342886 ], [ -75.685280852582679, 37.873376887611983 ], [ -75.687463062388474, 37.88628519275624 ], [ -75.709557936672113, 37.900605343775652 ], [ -75.720468985701075, 37.902017189650799 ], [ -75.724560629086938, 37.900201959239894 ], [ -75.726742838892719, 37.897378267489586 ], [ -75.75292935656222, 37.896571498418069 ], [ -75.75893043352815, 37.897579959757465 ], [ -75.759748762205305, 37.899395190168377 ], [ -75.757566552399524, 37.903832420061711 ], [ -75.712012922703622, 37.936103182922345 ], [ -75.704375188383352, 37.929043953546582 ], [ -75.694009691805846, 37.930455799421736 ], [ -75.669732607716412, 37.950826718477508 ], [ -75.661003768493259, 37.959096101460545 ], [ -75.64654662852989, 37.973012867944192 ], [ -75.646273852304162, 37.973214560212071 ], [ -75.645182747401265, 37.974223021551467 ], [ -75.645182747401265, 37.974424713819346 ], [ -75.644637194949823, 37.974828098355104 ], [ -75.644637194949823, 37.974828098355104 ], [ -75.644637194949823, 37.974828098355104 ], [ -75.639727222886791, 37.979467020516324 ], [ -75.635635579500928, 37.9835008658739 ], [ -75.630180054986454, 37.988543172570871 ], [ -75.626088411600591, 37.992577017928454 ], [ -75.624451754246252, 37.994190556071487 ], [ -75.435963382271026, 38.010325937501804 ], [ -75.428871200402199, 38.010931014305442 ], [ -75.398865815572577, 38.013351321519984 ], [ -75.377862046191836, 38.015166551930896 ], [ -75.263841583839223, 38.025251165324846 ], [ -75.262204926484884, 38.025452857592725 ], [ -75.260568269130545, 38.025654549860604 ], [ -75.256203849518954, 38.026057934396363 ], [ -75.250475548778752, 38.026461318932121 ], [ -75.242292262007041, 38.027268088003638 ], [ -75.242292262007041, 38.027268088003638 ] ] ], [ [ [ -75.973605323172862, 37.835862125786505 ], [ -75.971695889592795, 37.831021511357406 ], [ -75.977424190332997, 37.825777512392548 ], [ -75.982061386170301, 37.806213362408293 ], [ -75.987244134459061, 37.805003208801018 ], [ -75.998427959713737, 37.812667514980419 ], [ -76.001155721970974, 37.83485366444711 ], [ -75.999791840842363, 37.848165354127119 ], [ -75.996791302359398, 37.850383969073789 ], [ -75.992426882747822, 37.848972123198635 ], [ -75.988062463136231, 37.841106124751349 ], [ -75.982061386170301, 37.837273971661652 ], [ -75.973605323172862, 37.835862125786505 ] ] ], [ [ [ -75.993790763876433, 37.95344871795993 ], [ -76.003065155551042, 37.948003026727207 ], [ -76.017522295514411, 37.935094721582949 ], [ -76.032524987929236, 37.914925494795057 ], [ -76.035798302637915, 37.929043953546582 ], [ -76.046436575441149, 37.953650410227809 ], [ -76.045618246763979, 37.953650410227809 ], [ -76.041799379603844, 37.954053794763567 ], [ -76.041526603378117, 37.954053794763567 ], [ -76.03798051244371, 37.953852102495688 ], [ -76.030070001897712, 37.953650410227809 ], [ -76.029524449446257, 37.953852102495688 ], [ -76.029524449446257, 37.953852102495688 ], [ -76.022432267577443, 37.953852102495688 ], [ -76.021613938900273, 37.953852102495688 ], [ -76.021068386448832, 37.953852102495688 ], [ -76.020795610223104, 37.953852102495688 ], [ -76.017795071740139, 37.953852102495688 ], [ -76.005792917808293, 37.953650410227809 ], [ -75.994609092553603, 37.95344871795993 ], [ -75.993790763876433, 37.95344871795993 ] ] ], [ [ [ -77.719100391580199, 39.321123986447162 ], [ -77.677638405270159, 39.318703679232613 ], [ -77.667818461144094, 39.318098602428975 ], [ -77.592804999070026, 39.301358144195021 ], [ -77.560890180660323, 39.2862312241041 ], [ -77.545887488245512, 39.271507688548937 ], [ -77.543159725988275, 39.266868766387724 ], [ -77.534430886765108, 39.26243153649439 ], [ -77.511244907578572, 39.253557076707708 ], [ -77.484512837457629, 39.245892770528314 ], [ -77.46023575336821, 39.228345543222844 ], [ -77.457780767336686, 39.225118466936777 ], [ -77.458871872239584, 39.220277852507678 ], [ -77.458871872239584, 39.21987446797192 ], [ -77.478511760491699, 39.189217243254319 ], [ -77.485876718586255, 39.185586782432502 ], [ -77.505243830612642, 39.181956321610684 ], [ -77.51069935512713, 39.178527553056739 ], [ -77.516427655867332, 39.170863246877339 ], [ -77.527338704896295, 39.146256790196105 ], [ -77.524610942639043, 39.127902793819118 ], [ -77.519973746801739, 39.120843564443355 ], [ -77.458326319788142, 39.073647573759679 ], [ -77.423138186669746, 39.066790036651796 ], [ -77.375129570942335, 39.061344345419059 ], [ -77.340214214049681, 39.062957883562092 ], [ -77.327939283892107, 39.058520653668758 ], [ -77.291660045870827, 39.045410656256621 ], [ -77.261381884815478, 39.031090505237216 ], [ -77.251834716915141, 39.011324662985082 ], [ -77.255653584075276, 39.002450203198407 ], [ -77.249925283335074, 38.985911437232332 ], [ -77.235468143371691, 38.976633592909899 ], [ -77.221556555859777, 38.971389593945048 ], [ -77.197552247996072, 38.966750671783828 ], [ -77.167001310714994, 38.968162517658982 ], [ -77.148179751140049, 38.964935441372916 ], [ -77.137814254562528, 38.955254212514731 ], [ -77.119811023664766, 38.934278216655315 ], [ -77.119811023664766, 38.934278216655315 ], [ -77.101262240315521, 38.911083605849242 ], [ -77.090078415060844, 38.904226068741352 ], [ -77.068256317002934, 38.899788838848011 ], [ -77.040705918204822, 38.871148536809201 ], [ -77.031704302755941, 38.85057592548555 ], [ -77.033068183884552, 38.839482850752205 ], [ -77.038523708399026, 38.791480090997013 ], [ -77.03934203707621, 38.785227630692766 ], [ -77.041524246881991, 38.763848250297599 ], [ -77.059800254005495, 38.734401179187273 ], [ -77.074530170194578, 38.711004876113307 ], [ -77.085986771674982, 38.705760877148457 ], [ -77.105899436152839, 38.696886417361782 ], [ -77.121174904793378, 38.68660011169996 ], [ -77.132631506273782, 38.673893498823581 ], [ -77.135904820982461, 38.649892118945985 ], [ -77.130176520242259, 38.634966891122943 ], [ -77.157454142814657, 38.636378736998097 ], [ -77.174911821260991, 38.624277200925356 ], [ -77.201916667607662, 38.617217971549593 ], [ -77.204371653639171, 38.61782304835323 ], [ -77.205189982316341, 38.623873816389597 ], [ -77.216373807571017, 38.637790582873251 ], [ -77.222374884536947, 38.63799227514113 ], [ -77.240650891660451, 38.639000736480519 ], [ -77.246651968626381, 38.635168583390822 ], [ -77.248834178432162, 38.62871443081869 ], [ -77.245015311272027, 38.620646740103538 ], [ -77.246379192400653, 38.599469051976243 ], [ -77.246924744852095, 38.590594592189568 ], [ -77.264382423298429, 38.582930286010168 ], [ -77.265200751975613, 38.580308286527739 ], [ -77.260836332364022, 38.565383058704697 ], [ -77.276657353456017, 38.547029062327709 ], [ -77.276384577230289, 38.539566448416195 ], [ -77.283476759099102, 38.525246297396791 ], [ -77.291114493419371, 38.515766760806471 ], [ -77.29575168925669, 38.511531223181017 ], [ -77.298752227739641, 38.508707531430716 ], [ -77.300661661319708, 38.506892301019803 ], [ -77.302571094899776, 38.504673686073133 ], [ -77.310208829220045, 38.493983995875553 ], [ -77.322756535603361, 38.467158924247641 ], [ -77.325484297860584, 38.448804927870661 ], [ -77.318937668443226, 38.417744318617302 ], [ -77.310754381671501, 38.39757509182941 ], [ -77.312118262800112, 38.390919246989398 ], [ -77.314846025057363, 38.389507401114244 ], [ -77.317301011088873, 38.383658325345756 ], [ -77.296024465482404, 38.36974155886211 ], [ -77.288113954936421, 38.359455253200281 ], [ -77.288386731162134, 38.351185870217243 ], [ -77.286204521356353, 38.346950332591788 ], [ -77.286204521356353, 38.346950332591788 ], [ -77.279657891938967, 38.33948771868026 ], [ -77.265200751975613, 38.333235258376021 ], [ -77.240105339209009, 38.331621720232988 ], [ -77.199461681576139, 38.340899564555414 ], [ -77.179276240872568, 38.34190802589481 ], [ -77.162636891103404, 38.345941871252393 ], [ -77.155271933008862, 38.350984177949364 ], [ -77.138359807013984, 38.367926328451198 ], [ -77.104808331249941, 38.36974155886211 ], [ -77.094715610898163, 38.367724636183318 ], [ -77.084895666772098, 38.368329712986956 ], [ -77.069892974357288, 38.377809249577268 ], [ -77.05598138684536, 38.396163245954256 ], [ -77.051344191008056, 38.398986937704557 ], [ -77.043433680462059, 38.40060047584759 ], [ -77.024884897112827, 38.386885401631815 ], [ -77.011791638278083, 38.374582173291202 ], [ -77.016974386566844, 38.341706333626931 ], [ -77.021066029952692, 38.329201413018438 ], [ -77.030613197853029, 38.311654185712968 ], [ -77.026248778241452, 38.302779725926293 ], [ -76.997607274540442, 38.27797157697718 ], [ -76.990242316445887, 38.273937731619597 ], [ -76.981240700997006, 38.274139423887476 ], [ -76.962146365196332, 38.256390504314133 ], [ -76.957781945584742, 38.243280506901996 ], [ -76.957509169359028, 38.23642296979412 ], [ -76.96241914142206, 38.230170509489867 ], [ -76.966510784807923, 38.229565432686229 ], [ -76.967329113485079, 38.227145125471679 ], [ -76.96241914142206, 38.21403512805955 ], [ -76.937050952429729, 38.202336976522574 ], [ -76.916865511726172, 38.199714977040145 ], [ -76.910864434760242, 38.197092977557716 ], [ -76.875403525416118, 38.17228482860861 ], [ -76.838851511169125, 38.163410368821928 ], [ -76.824394371205756, 38.163612061089808 ], [ -76.802845049373559, 38.168049290983149 ], [ -76.788387909410204, 38.169259444590423 ], [ -76.760291958160636, 38.166637445107995 ], [ -76.749653685357401, 38.162200215214654 ], [ -76.74310705594003, 38.15695621624981 ], [ -76.740379293682793, 38.152922370892227 ], [ -76.739015412554167, 38.146468218320095 ], [ -76.721830510333561, 38.137593758533427 ], [ -76.704100055661513, 38.149291910070403 ], [ -76.701372293404262, 38.155746062642535 ], [ -76.68500571986084, 38.156552831714052 ], [ -76.665093055382982, 38.14767837192737 ], [ -76.6435437335508, 38.148283448731007 ], [ -76.638906537713495, 38.151510525017073 ], [ -76.629359369813159, 38.153124063160107 ], [ -76.613811124946892, 38.148686833266765 ], [ -76.604263957046555, 38.128719298746752 ], [ -76.600990642337877, 38.110163610101885 ], [ -76.57944132050568, 38.094834997743085 ], [ -76.5431620824844, 38.076884385901863 ], [ -76.535797124389859, 38.069623464258214 ], [ -76.522431089329388, 38.042596700362438 ], [ -76.519430550846408, 38.034730701915151 ], [ -76.516430012363458, 38.0266630112 ], [ -76.49188015204831, 38.017183474609681 ], [ -76.469239725313216, 38.013553013787863 ], [ -76.465420858153081, 38.010325937501804 ], [ -76.462420319670116, 37.998627785964821 ], [ -76.427504962777448, 37.977046713301775 ], [ -76.416321137522772, 37.966760407639946 ], [ -76.391498500981896, 37.958692716924787 ], [ -76.360129235023649, 37.952238564352662 ], [ -76.343762661480213, 37.94739794992357 ], [ -76.266021437148908, 37.911295033973232 ], [ -76.236834380996441, 37.889108884506541 ], [ -76.245017667768167, 37.861880428342886 ], [ -76.251291520959811, 37.833038434036197 ], [ -76.266021437148908, 37.817306437141639 ], [ -76.275295828823516, 37.812667514980419 ], [ -76.280478577112262, 37.812667514980419 ], [ -76.282660786918058, 37.814079360855573 ], [ -76.282115234466602, 37.818113206213155 ], [ -76.284842996723853, 37.82234874383861 ], [ -76.293571835947006, 37.822752128374368 ], [ -76.307483423458933, 37.81226413044466 ], [ -76.310211185716184, 37.794918595407069 ], [ -76.30639231855605, 37.788666135102822 ], [ -76.312120619296252, 37.750546296473701 ], [ -76.30502843742741, 37.729973685150043 ], [ -76.312938947973407, 37.720292456291858 ], [ -76.302846227621629, 37.7045604593973 ], [ -76.300118465364392, 37.695282615074866 ], [ -76.302573451395915, 37.68903015477062 ], [ -76.312120619296252, 37.684592924877279 ], [ -76.315121157779203, 37.684794617145158 ], [ -76.320303906067963, 37.680760771787575 ], [ -76.324941101905267, 37.676928618697879 ], [ -76.339943794320078, 37.65595262283847 ], [ -76.332578836225537, 37.64586800944452 ], [ -76.30639231855605, 37.642035856354823 ], [ -76.292480731044122, 37.636186780586328 ], [ -76.287843535206804, 37.631749550692994 ], [ -76.279387472209379, 37.618236168745099 ], [ -76.280478577112262, 37.613798938851765 ], [ -76.309120080813273, 37.621866629566924 ], [ -76.362311444829444, 37.610370170297827 ], [ -76.38113300440439, 37.626908936263902 ], [ -76.390134619853285, 37.63033770481784 ], [ -76.399136235302166, 37.628724166674807 ], [ -76.443325983869443, 37.652322162016645 ], [ -76.472513040021909, 37.665835543964533 ], [ -76.489697942242515, 37.666238928500292 ], [ -76.49188015204831, 37.66361692901787 ], [ -76.497608452788512, 37.647078163051795 ], [ -76.501427319948647, 37.643851086765736 ], [ -76.5101561591718, 37.642237548622703 ], [ -76.536615453067014, 37.66361692901787 ], [ -76.537706557969926, 37.66886092798272 ], [ -76.535251571938403, 37.687416616627587 ], [ -76.53716100551847, 37.698913075896684 ], [ -76.540161544001435, 37.70435876712942 ], [ -76.560346984705006, 37.727755070203379 ], [ -76.576440782022715, 37.757403833581584 ], [ -76.584351292568712, 37.768900292850688 ], [ -76.593898460469049, 37.772934138208264 ], [ -76.595807894049116, 37.771723984600996 ], [ -76.60208174724076, 37.772732445940385 ], [ -76.615447782301231, 37.780800136655543 ], [ -76.642179852422174, 37.792296595924647 ], [ -76.651454244096783, 37.796330441282223 ], [ -76.658273649739897, 37.806818439211931 ], [ -76.680095747797807, 37.825575820124669 ], [ -76.692643454181109, 37.822752128374368 ], [ -76.70164506962999, 37.822752128374368 ], [ -76.722103286559289, 37.836668894858022 ], [ -76.727286034848049, 37.842316278358624 ], [ -76.733014335588251, 37.851997507216822 ], [ -76.738469860102725, 37.865309196896831 ], [ -76.747471475551606, 37.875797194826532 ], [ -76.765747482675124, 37.879225963380478 ], [ -76.775294650575461, 37.874385348951378 ], [ -76.78456904225007, 37.869544734522286 ], [ -76.78293238489573, 37.863090581950161 ], [ -76.766293035126552, 37.840501047947718 ], [ -76.751290342711741, 37.824163974249522 ], [ -76.734378216716863, 37.798750748496772 ], [ -76.723739943913628, 37.78846444283495 ], [ -76.715556657141917, 37.785842443352522 ], [ -76.689642915698144, 37.785237366548884 ], [ -76.683641838732214, 37.78140521345918 ], [ -76.682005181377875, 37.778178137173114 ], [ -76.6833690625065, 37.775757829958572 ], [ -76.6833690625065, 37.770312138725842 ], [ -76.6833690625065, 37.765471524296743 ], [ -76.680914076474977, 37.759622448528255 ], [ -76.677095209314842, 37.756193679974317 ], [ -76.664001950480099, 37.751958142348855 ], [ -76.639997642616379, 37.750949681009459 ], [ -76.619812201912822, 37.744697220705206 ], [ -76.617357215881299, 37.742276913490663 ], [ -76.621448859267161, 37.738041375865208 ], [ -76.62008497813855, 37.731183838757318 ], [ -76.606446166852351, 37.724729686185192 ], [ -76.597171775177742, 37.717267072273671 ], [ -76.595807894049116, 37.713031534648209 ], [ -76.597990103854897, 37.709199381558513 ], [ -76.597990103854897, 37.702946921254266 ], [ -76.579714096731408, 37.671482927465149 ], [ -76.583260187665815, 37.662003390874837 ], [ -76.573985795991206, 37.646876470783916 ], [ -76.542616530032944, 37.616824322869945 ], [ -76.533887690809792, 37.61258878524449 ], [ -76.527068285166678, 37.611378631637223 ], [ -76.435415473323445, 37.61279047751237 ], [ -76.420140004682906, 37.598672018760844 ], [ -76.410865613008298, 37.581729868259011 ], [ -76.383315214210185, 37.573057100740215 ], [ -76.357947025217868, 37.573662177543852 ], [ -76.332578836225537, 37.570031716722028 ], [ -76.300118465364392, 37.561762333738997 ], [ -76.297936255558596, 37.557728488381414 ], [ -76.302846227621629, 37.551274335809289 ], [ -76.330669402645469, 37.53634910798624 ], [ -76.339943794320078, 37.538366030665031 ], [ -76.348945409768973, 37.536550800254119 ], [ -76.355219262960617, 37.527272955931693 ], [ -76.360402011249377, 37.519205265216534 ], [ -76.359310906346479, 37.513356189448047 ], [ -76.352764276929108, 37.504885114197123 ], [ -76.329578297742572, 37.495002193071059 ], [ -76.306937871007477, 37.497422500285609 ], [ -76.297663479332869, 37.506902036875914 ], [ -76.296572374429985, 37.511137574501376 ], [ -76.298481808010052, 37.512751112644409 ], [ -76.297663479332869, 37.515373112126838 ], [ -76.293571835947006, 37.516583265734106 ], [ -76.288116311432532, 37.514162958519563 ], [ -76.281024129563718, 37.50791049821531 ], [ -76.264930332245996, 37.481287118855292 ], [ -76.252382625862708, 37.447201125583746 ], [ -76.250473192282641, 37.421787899830996 ], [ -76.246654325122506, 37.404038980257646 ], [ -76.245290443993881, 37.38689513748794 ], [ -76.248563758702574, 37.375196985950957 ], [ -76.258383702828638, 37.36208698853882 ], [ -76.262475346214487, 37.360876834931545 ], [ -76.264930332245996, 37.357448066377607 ], [ -76.272840842791993, 37.335261916910923 ], [ -76.272022514114823, 37.322151919498793 ], [ -76.275568605049244, 37.310050383426052 ], [ -76.282660786918058, 37.319126535480606 ], [ -76.291389626141225, 37.324168842177578 ], [ -76.308574528361831, 37.329412841142428 ], [ -76.312120619296252, 37.338085608661231 ], [ -76.337488808288569, 37.364103911217612 ], [ -76.366675864441021, 37.37459190914732 ], [ -76.38713408137032, 37.385079907077028 ], [ -76.391498500981896, 37.390323906041878 ], [ -76.39395348701342, 37.395971289542487 ], [ -76.393135158336236, 37.397988212221279 ], [ -76.404864536042368, 37.400206827167949 ], [ -76.415230032619888, 37.40222374984674 ], [ -76.418776123554295, 37.397786519953399 ], [ -76.418230571102839, 37.385079907077028 ], [ -76.42259499071443, 37.381449446255203 ], [ -76.437597683129241, 37.37983590811217 ], [ -76.44523541744951, 37.366524218432161 ], [ -76.434869920872003, 37.354624374627306 ], [ -76.406501193396707, 37.332841609696374 ], [ -76.387679633821762, 37.307630076211503 ], [ -76.385497424015966, 37.294116694263614 ], [ -76.38113300440439, 37.285242234476939 ], [ -76.369130850472544, 37.279393158708451 ], [ -76.35249150070338, 37.278384697369056 ], [ -76.349490962220415, 37.273947467475722 ], [ -76.362311444829444, 37.270317006653897 ], [ -76.392862382110522, 37.26507300768904 ], [ -76.417139466199956, 37.263862854081765 ], [ -76.421776662037246, 37.255190086562976 ], [ -76.429141620131801, 37.253374856152064 ], [ -76.476059130956315, 37.250551164401756 ], [ -76.482878536599415, 37.254786702027218 ], [ -76.493244033176921, 37.24954270306236 ], [ -76.498972333917123, 37.241071627811451 ], [ -76.503609529754428, 37.233810706167802 ], [ -76.494062361854091, 37.225339630916892 ], [ -76.471694711344725, 37.216061786594452 ], [ -76.394226263239148, 37.225137938649013 ], [ -76.389861843627557, 37.222919323702342 ], [ -76.393680710787692, 37.214044863915667 ], [ -76.396135696819215, 37.20113655877141 ], [ -76.389316291176101, 37.193472252592017 ], [ -76.391225724756168, 37.179958870644121 ], [ -76.397772354173554, 37.164428566017442 ], [ -76.399681787753622, 37.160193028391987 ], [ -76.394771815690589, 37.157571028909558 ], [ -76.381405780630118, 37.155755798498646 ], [ -76.375131927438474, 37.160798105195624 ], [ -76.359583682572207, 37.168664103642897 ], [ -76.348672633543245, 37.170681026321688 ], [ -76.343217109028771, 37.166243796428354 ], [ -76.34485376638311, 37.164428566017442 ], [ -76.344035437705941, 37.160394720659866 ], [ -76.340216570545806, 37.151923645408942 ], [ -76.333942717354148, 37.144259339229549 ], [ -76.330396626419741, 37.14163733974712 ], [ -76.324395549453811, 37.142847493354395 ], [ -76.31102951439334, 37.138410263461054 ], [ -76.292207954818394, 37.126712111924078 ], [ -76.287297982755362, 37.117434267601645 ], [ -76.274477500146332, 37.094643041331324 ], [ -76.271204185437654, 37.084558427937374 ], [ -76.29275350726985, 37.035143822307028 ], [ -76.30039124159012, 37.008923827482761 ], [ -76.304210108750254, 37.001461213571247 ], [ -76.312120619296252, 37.000452752231851 ], [ -76.315121157779203, 37.001662905839126 ], [ -76.314575605327747, 37.009327212018519 ], [ -76.318121696262168, 37.01376444191186 ], [ -76.329578297742572, 37.014571210983377 ], [ -76.340216570545806, 37.015176287787014 ], [ -76.340762122997262, 37.015176287787014 ], [ -76.348127081091803, 37.006705212536097 ], [ -76.356310367863514, 37.002873059446394 ], [ -76.373495270084121, 36.99843582955306 ], [ -76.383315214210185, 36.993393522856081 ], [ -76.387679633821762, 36.989763062034264 ], [ -76.396408473044929, 36.982300448122743 ], [ -76.408683403202502, 36.969190450710613 ], [ -76.411683941685482, 36.96293799040636 ], [ -76.419048899780023, 36.963946451745755 ], [ -76.428868843906088, 36.96999721978213 ], [ -76.45205482309261, 36.998234137285181 ], [ -76.452327599318338, 37.004688289857306 ], [ -76.449872613286828, 37.004889982125185 ], [ -76.448235955932475, 37.007713673875486 ], [ -76.464602529475911, 37.027479516127627 ], [ -76.469512501538944, 37.030504900145814 ], [ -76.507701173140291, 37.05228766507674 ], [ -76.50933783049463, 37.053094434148257 ], [ -76.512338368977595, 37.054909664559169 ], [ -76.518339445943525, 37.05531304909492 ], [ -76.526249956489522, 37.062977355274327 ], [ -76.527886613843862, 37.068221354239178 ], [ -76.52652273271525, 37.07003658465009 ], [ -76.526249956489522, 37.07770089082949 ], [ -76.528977718746745, 37.079314428972523 ], [ -76.536888229292742, 37.083953351133736 ], [ -76.55516423641626, 37.075885660418578 ], [ -76.564165851865141, 37.077499198561611 ], [ -76.567984719025276, 37.080524582579798 ], [ -76.57944132050568, 37.096659964010115 ], [ -76.618175544558483, 37.11924949801255 ], [ -76.62472217397584, 37.127115496459837 ], [ -76.622267187944331, 37.142242416550758 ], [ -76.617084439655571, 37.144461031497428 ], [ -76.604536733272283, 37.159991336124108 ], [ -76.606718943078079, 37.166647180964112 ], [ -76.611083362689655, 37.167050565499871 ], [ -76.611083362689655, 37.167050565499871 ], [ -76.612447243818281, 37.170479334053809 ], [ -76.613538348721164, 37.172899641268359 ], [ -76.614356677398348, 37.174311487143513 ], [ -76.616266110978415, 37.178950409304733 ], [ -76.616811663429857, 37.181169024251396 ], [ -76.617629992107027, 37.184396100537455 ], [ -76.617902768332755, 37.186413023216247 ], [ -76.619266649461366, 37.192060406716863 ], [ -76.62008497813855, 37.193270560324137 ], [ -76.621176083041433, 37.19508579073505 ], [ -76.623358292847229, 37.198716251556867 ], [ -76.6299049222646, 37.206783942272025 ], [ -76.639724866390665, 37.214851632987184 ], [ -76.641088747519291, 37.216061786594452 ], [ -76.649817586742444, 37.220902401023551 ], [ -76.689097363246702, 37.222919323702342 ], [ -76.693461782858279, 37.221305785559309 ], [ -76.698917307372753, 37.219087170612639 ], [ -76.730832125782456, 37.213843171647788 ], [ -76.734378216716863, 37.204161942789597 ], [ -76.740106517457065, 37.195287483002922 ], [ -76.74310705594003, 37.1926654835205 ], [ -76.750472014034585, 37.190043484038071 ], [ -76.757836972129127, 37.191657022181104 ], [ -76.773657993221107, 37.205977173200509 ], [ -76.780477398864207, 37.209405941754454 ], [ -76.791661224118883, 37.207590711343542 ], [ -76.800935615793492, 37.205977173200509 ], [ -76.803117825599287, 37.201539943307168 ], [ -76.802572273147845, 37.198312867021109 ], [ -76.796843972407643, 37.189438407234434 ], [ -76.757018643451943, 37.161604874267141 ], [ -76.747744251777334, 37.150511799533795 ], [ -76.737378755199828, 37.146074569640462 ], [ -76.730286573331, 37.145469492836824 ], [ -76.715283880916189, 37.148091492319246 ], [ -76.696735097566972, 37.174311487143513 ], [ -76.692916230406837, 37.186211330948368 ], [ -76.691825125503925, 37.19569086753868 ], [ -76.685551272312281, 37.198917943824746 ], [ -76.670003027446029, 37.183589331465939 ], [ -76.663729174254371, 37.173908102607754 ], [ -76.664274726705827, 37.171084410857446 ], [ -76.668639146317403, 37.166848873231991 ], [ -76.67136690857464, 37.158781182516833 ], [ -76.671639684800368, 37.142040724282879 ], [ -76.669730251220301, 37.140628878407725 ], [ -76.666456936511608, 37.138208571193175 ], [ -76.665911384060166, 37.136191648514384 ], [ -76.665638607834438, 37.135586571710746 ], [ -76.663729174254371, 37.129939188210145 ], [ -76.656909768611271, 37.109769961422245 ], [ -76.657182544836985, 37.107551346475574 ], [ -76.657728097288441, 37.101097193903449 ], [ -76.658000873514169, 37.096861656277994 ], [ -76.65936475464278, 37.094037964527686 ], [ -76.665638607834438, 37.080726274847677 ], [ -76.666456936511608, 37.078709352168886 ], [ -76.667275265188778, 37.077095814025853 ], [ -76.667548041414506, 37.076289044954336 ], [ -76.668366370091675, 37.072658584132512 ], [ -76.669184698768845, 37.068221354239178 ], [ -76.669730251220301, 37.064187508881602 ], [ -76.668366370091675, 37.055111356827041 ], [ -76.662638069351473, 37.045833512504615 ], [ -76.653909230128306, 37.039177667664603 ], [ -76.645998719582309, 37.036152283646423 ], [ -76.612174467592553, 37.035547206842786 ], [ -76.586533502374493, 37.028689669734902 ], [ -76.584351292568712, 37.027277823859748 ], [ -76.57944132050568, 37.023849055305803 ], [ -76.579168544279952, 37.023647363037924 ], [ -76.578077439377068, 37.023042286234286 ], [ -76.577531886925613, 37.022638901698535 ], [ -76.576713558248443, 37.02142874809126 ], [ -76.56580250921948, 37.007511981607607 ], [ -76.56280197073653, 37.003881520785789 ], [ -76.551345369256126, 36.999040906356697 ], [ -76.524886075360897, 36.983913986265776 ], [ -76.522976641780829, 36.981090294515468 ], [ -76.524067746683727, 36.97826660276516 ], [ -76.521067208200762, 36.973224296068189 ], [ -76.513429473880493, 36.967980297103338 ], [ -76.500336215045735, 36.96515660535303 ], [ -76.487515732436719, 36.952449992476659 ], [ -76.484242417728041, 36.928851997134814 ], [ -76.482332984147973, 36.917355537865717 ], [ -76.482060207922245, 36.901018464167521 ], [ -76.483424089050857, 36.896177849738422 ], [ -76.469785277764657, 36.882866160058413 ], [ -76.454782585349847, 36.884076313665688 ], [ -76.453418704221235, 36.887101697683875 ], [ -76.453964256672677, 36.892749081184483 ], [ -76.447417627255305, 36.903237079114191 ], [ -76.441689326515103, 36.906060770864499 ], [ -76.431323829937597, 36.904447232721466 ], [ -76.407592298299619, 36.897388003345696 ], [ -76.406773969622435, 36.897589695613576 ], [ -76.387679633821762, 36.899606618292367 ], [ -76.385770200241694, 36.923204613634205 ], [ -76.353855381832005, 36.922801229098447 ], [ -76.34567209506028, 36.924616459509359 ], [ -76.344580990157397, 36.919372460544508 ], [ -76.333124388676993, 36.917355537865717 ], [ -76.328759969065402, 36.918363999205113 ], [ -76.330669402645469, 36.938734918260884 ], [ -76.327396087936791, 36.959509221852414 ], [ -76.322758892099472, 36.959105837316656 ], [ -76.315939486456386, 36.95527368422696 ], [ -76.299300136687208, 36.965559989888789 ], [ -76.297663479332869, 36.968181989371217 ], [ -76.285115772949581, 36.968787066174855 ], [ -76.267930870728975, 36.964551528549393 ], [ -76.234924947416374, 36.94518907083301 ], [ -76.221558912355903, 36.939541687332401 ], [ -76.189916870171928, 36.931473996617243 ], [ -76.177096387562898, 36.929255381670572 ], [ -76.139453268413007, 36.923002921366326 ], [ -76.095536296071458, 36.9088844626148 ], [ -76.087898561751189, 36.908682770346921 ], [ -76.058165953147267, 36.916952153329959 ], [ -76.043163260732456, 36.927641843527539 ], [ -76.033343316606391, 36.931877381153001 ], [ -76.013703428354276, 36.930667227545726 ], [ -76.007429575162632, 36.929053689402693 ], [ -75.996245749907956, 36.921994460026937 ], [ -75.991608554070638, 36.910901385293585 ], [ -75.972241442044236, 36.842326014214748 ], [ -75.965422036401151, 36.812475558568657 ], [ -75.949601015309156, 36.761245722527406 ], [ -75.921777840285316, 36.692065274644918 ], [ -75.890954126778524, 36.630750825209716 ], [ -75.874042000783632, 36.58375652679392 ], [ -75.866949818914804, 36.550678994861769 ], [ -75.879770301523834, 36.550678994861769 ], [ -75.880588630201004, 36.550678994861769 ], [ -75.886044154715478, 36.550678994861769 ], [ -75.886589707166934, 36.550678994861769 ], [ -75.892045231681408, 36.550678994861769 ], [ -75.893136336584305, 36.550678994861769 ], [ -75.894227441487203, 36.550678994861769 ], [ -75.903501833161812, 36.550678994861769 ], [ -75.904865714290437, 36.550678994861769 ], [ -75.908957357676286, 36.550678994861769 ], [ -75.911412343707809, 36.550678994861769 ], [ -75.922050616511044, 36.550678994861769 ], [ -75.952874330017835, 36.55047730259389 ], [ -75.953419882469291, 36.55047730259389 ], [ -75.955874868500814, 36.55047730259389 ], [ -75.957784302080881, 36.55047730259389 ], [ -76.026796687189034, 36.55047730259389 ], [ -76.034707197735017, 36.550678994861769 ], [ -76.122268366192401, 36.550678994861769 ], [ -76.313211724199135, 36.55047730259389 ], [ -76.313211724199135, 36.55047730259389 ], [ -76.491607375822582, 36.550275610326011 ], [ -76.541525425130061, 36.550275610326011 ], [ -76.541798201355789, 36.550275610326011 ], [ -76.781295727541377, 36.550678994861769 ], [ -76.80720946898515, 36.550678994861769 ], [ -76.915501630597547, 36.543821457753879 ], [ -76.916047183048988, 36.543821457753879 ], [ -76.916047183048988, 36.543821457753879 ], [ -77.164546324683471, 36.546241764968428 ], [ -77.249652507109346, 36.544829919093274 ], [ -77.296842794159573, 36.544829919093274 ], [ -77.76710900730761, 36.544829919093274 ], [ -77.875401168920007, 36.544829919093274 ], [ -77.88249335078882, 36.544829919093274 ], [ -77.899678253009426, 36.544628226825395 ], [ -78.039066904354357, 36.544224842289637 ], [ -78.039339680580071, 36.544224842289637 ], [ -78.046159086223184, 36.544224842289637 ], [ -78.13290192600337, 36.543821457753879 ], [ -78.133447478454826, 36.543821457753879 ], [ -78.245558507227358, 36.544426534557516 ], [ -78.246649612130255, 36.544426534557516 ], [ -78.323845284010119, 36.543821457753879 ], [ -78.436229089008378, 36.542611304146611 ], [ -78.441139061071397, 36.542611304146611 ], [ -78.456960082163391, 36.542409611878732 ], [ -78.470871669675319, 36.542409611878732 ], [ -78.471144445901047, 36.542207919610853 ], [ -78.529791334431678, 36.540997766003578 ], [ -78.533064649140357, 36.540997766003578 ], [ -78.663451685036392, 36.542006227342974 ], [ -78.669998314453778, 36.542006227342974 ], [ -78.734100727498884, 36.541804535075094 ], [ -78.758377811588318, 36.541804535075094 ], [ -78.765469993457145, 36.541804535075094 ], [ -78.796293706963951, 36.541804535075094 ], [ -78.914678588928126, 36.542006227342974 ], [ -78.915496917605296, 36.542006227342974 ], [ -78.941956211500525, 36.542207919610853 ], [ -78.942228987726239, 36.542006227342974 ], [ -78.970597715201535, 36.542207919610853 ], [ -78.971688820104418, 36.542207919610853 ], [ -79.124716282735534, 36.541602842807215 ], [ -79.12608016386416, 36.541602842807215 ], [ -79.137809541570277, 36.541804535075094 ], [ -79.208731360258497, 36.541602842807215 ], [ -79.209549688935681, 36.541602842807215 ], [ -79.218551304384562, 36.541602842807215 ], [ -79.342664487088939, 36.541401150539336 ], [ -79.44577390041259, 36.541199458271457 ], [ -79.446046676638304, 36.541199458271457 ], [ -79.470050984502024, 36.540997766003578 ], [ -79.510694642134879, 36.540796073735699 ], [ -79.510967418360607, 36.540796073735699 ], [ -79.66672264324896, 36.541804535075094 ], [ -79.667268195700416, 36.541804535075094 ], [ -79.714731258976371, 36.541804535075094 ], [ -79.920131756946475, 36.542409611878732 ], [ -79.967049267770989, 36.542409611878732 ], [ -79.967594820222445, 36.542409611878732 ], [ -80.027332813655974, 36.542409611878732 ], [ -80.053519331325475, 36.542611304146611 ], [ -80.169449227258127, 36.543216380950241 ], [ -80.171631437063922, 36.543216380950241 ], [ -80.225368353531536, 36.543821457753879 ], [ -80.228368892014501, 36.543821457753879 ], [ -80.431587180178823, 36.550275610326011 ], [ -80.432678285081721, 36.550275610326011 ], [ -80.440043243176262, 36.550678994861769 ], [ -80.612165041608051, 36.55814160877329 ], [ -80.687451279907862, 36.56136868505935 ], [ -80.744188734858426, 36.561772069595108 ], [ -80.837205427830284, 36.559150070112679 ], [ -80.837750980281726, 36.559150070112679 ], [ -80.838023756507454, 36.559150070112679 ], [ -80.90185339332686, 36.561772069595108 ], [ -80.90185339332686, 36.561772069595108 ], [ -80.944406484539783, 36.562982223202383 ], [ -80.946043141894123, 36.563183915470262 ], [ -81.058972499343824, 36.567016068559965 ], [ -81.061973037826789, 36.567016068559965 ], [ -81.307471640978321, 36.575083759275117 ], [ -81.353298046899937, 36.574680374739366 ], [ -81.353298046899937, 36.574680374739366 ], [ -81.521055425720135, 36.580529450507854 ], [ -81.606979936823166, 36.587185295347858 ], [ -81.677628979285672, 36.588193756687254 ], [ -81.646805265778866, 36.611993444296971 ], [ -81.826837574756652, 36.614212059243641 ], [ -81.922582029985747, 36.616228981922433 ], [ -81.934038631466152, 36.594244524723621 ], [ -82.145985758853641, 36.594647909259379 ], [ -82.14844074488515, 36.594647909259379 ], [ -82.150622954690931, 36.594647909259379 ], [ -82.174081710103195, 36.594647909259379 ], [ -82.177355024811874, 36.594849601527258 ], [ -82.180628339520567, 36.594849601527258 ], [ -82.188538850066564, 36.595252986063016 ], [ -82.210360948124475, 36.595858062866654 ], [ -82.210906500575931, 36.595858062866654 ], [ -82.221817549604879, 36.595858062866654 ], [ -82.223454206959218, 36.595656370598775 ], [ -82.225636416765013, 36.595656370598775 ], [ -82.226727521667911, 36.595656370598775 ], [ -82.243366871437075, 36.595656370598775 ], [ -82.293830473195996, 36.595656370598775 ], [ -82.554331768762324, 36.594849601527258 ], [ -82.559787293276813, 36.594849601527258 ], [ -82.561151174405438, 36.594849601527258 ], [ -82.60915979013285, 36.594042832455742 ], [ -82.679808832595342, 36.593639447919983 ], [ -82.695902629913036, 36.593639447919983 ], [ -82.830381309194934, 36.593841140187862 ], [ -82.985045429180389, 36.593841140187862 ], [ -83.027325744167598, 36.593841140187862 ], [ -83.02841684907051, 36.593841140187862 ], [ -83.248820039455424, 36.593841140187862 ], [ -83.249911144358322, 36.593841140187862 ], [ -83.25018392058405, 36.593841140187862 ], [ -83.276370438253537, 36.598278370081204 ], [ -83.472223768323317, 36.597269908741808 ], [ -83.670259308198865, 36.600698677295753 ], [ -83.670259308198865, 36.600698677295753 ], [ -83.675442056487626, 36.600900369563625 ], [ -83.649528315043852, 36.616632366458191 ], [ -83.527324565919542, 36.66604697208853 ], [ -83.498137509767076, 36.670484201981864 ], [ -83.461039943068627, 36.664836818481263 ], [ -83.460767166842913, 36.664836818481263 ], [ -83.354657215036298, 36.696099120002501 ], [ -83.353566110133414, 36.696704196806138 ], [ -83.342927837330166, 36.701343118967351 ], [ -83.199720318825115, 36.737446034917681 ], [ -83.16725994796397, 36.739261265328594 ], [ -83.136436234457165, 36.743093418418297 ], [ -83.127707395234012, 36.75075772459769 ], [ -83.125797961653944, 36.761245722527406 ], [ -83.125525185428216, 36.761447414795285 ], [ -83.131253486168418, 36.767094798295886 ], [ -83.131799038619874, 36.781414949315298 ], [ -83.099884220210157, 36.824980479177157 ], [ -83.072606597637773, 36.854629242555362 ], [ -82.973316051474271, 36.859066472448696 ], [ -82.911941400686388, 36.874193392539624 ], [ -82.911668624460674, 36.874193392539624 ], [ -82.885482106791159, 36.900413387363884 ], [ -82.873752729085041, 36.912313231168739 ], [ -82.872116071730687, 36.913523384776013 ], [ -82.863387232507534, 36.922397844562695 ], [ -82.862023351378909, 36.924213074973601 ], [ -82.858477260444502, 36.932684150224517 ], [ -82.858750036670216, 36.933087534760276 ], [ -82.860659470250283, 36.937524764653617 ], [ -82.861750575153195, 36.939339995064522 ], [ -82.861205022701739, 36.944785686297251 ], [ -82.860659470250283, 36.945794147636647 ], [ -82.856022274412993, 36.952449992476659 ], [ -82.855749498187265, 36.953861838351813 ], [ -82.858477260444502, 36.954063530619692 ], [ -82.860659470250283, 36.956080453298476 ], [ -82.862841680056079, 36.957693991441509 ], [ -82.864205561184704, 36.957895683709388 ], [ -82.865296666087602, 36.958097375977268 ], [ -82.867478875893397, 36.963139682674239 ], [ -82.87020663815062, 36.965559989888789 ], [ -82.87020663815062, 36.965963374424547 ], [ -82.869115533247736, 36.974232757407584 ], [ -82.869115533247736, 36.974232757407584 ], [ -82.868569980796281, 36.976451372354248 ], [ -82.867478875893397, 36.977459833693644 ], [ -82.866660547216213, 36.978064910497281 ], [ -82.866114994764771, 36.97826660276516 ], [ -82.865023889861874, 36.979073371836677 ], [ -82.862841680056079, 36.979880140908193 ], [ -82.8527489597043, 36.984922447605172 ], [ -82.851385078575674, 36.984519063069413 ], [ -82.83992847709527, 36.987141062551835 ], [ -82.838564595966659, 36.986939370283956 ], [ -82.836109609935136, 36.988754600694868 ], [ -82.83392740012934, 36.991981676980927 ], [ -82.83092686164639, 36.993393522856081 ], [ -82.829017428066322, 36.997629060481543 ], [ -82.830654085420662, 37.000856136767609 ], [ -82.81810637903736, 37.00610013573246 ], [ -82.815651393005851, 37.007108597071849 ], [ -82.80064870059104, 37.007915366143365 ], [ -82.790828756464975, 37.006705212536097 ], [ -82.790555980239247, 37.007310289339728 ], [ -82.789192099110636, 37.007915366143365 ], [ -82.788919322884908, 37.008117058411244 ], [ -82.777462721404504, 37.015377980054893 ], [ -82.771734420664302, 37.015781364590651 ], [ -82.722361923808265, 37.045026743433098 ], [ -82.720725266453925, 37.081734736187073 ], [ -82.721816371356823, 37.105736116064662 ], [ -82.62498081122483, 37.163016720142295 ], [ -82.565242817791301, 37.196094252074438 ], [ -82.565242817791301, 37.196094252074438 ], [ -82.553513440085169, 37.20093486650353 ], [ -82.510960348872231, 37.218078709273243 ], [ -82.350840704372303, 37.267089930367831 ], [ -82.310742599190874, 37.297343770549674 ], [ -82.305832627127842, 37.301175923639377 ], [ -82.291921039615929, 37.311663921569078 ], [ -81.968408435907364, 37.537760953861394 ], [ -81.927764778274508, 37.512146035840772 ], [ -81.942767470689319, 37.508918959554705 ], [ -81.992958296222525, 37.482900656998325 ], [ -81.996504387156932, 37.476648196694072 ], [ -81.992139967545342, 37.460916199799513 ], [ -81.986957219256595, 37.454865431763146 ], [ -81.968681212133077, 37.451436663209208 ], [ -81.94931410010669, 37.445587587440713 ], [ -81.935675288820491, 37.438326665797071 ], [ -81.92749200204878, 37.413316824580079 ], [ -81.933765855240424, 37.372776678736408 ], [ -81.930219764306017, 37.36672591070004 ], [ -81.929946988080289, 37.366524218432161 ], [ -81.926673673371596, 37.358859912252761 ], [ -81.925582568468712, 37.357246374109728 ], [ -81.92149092508285, 37.356439605038211 ], [ -81.92067259640568, 37.355431143698823 ], [ -81.911398204731057, 37.348775298858811 ], [ -81.910852652279615, 37.348775298858811 ], [ -81.90785211379665, 37.343732992161833 ], [ -81.907306561345209, 37.343127915358203 ], [ -81.906488232668039, 37.342724530822444 ], [ -81.905942680216583, 37.342724530822444 ], [ -81.903760470410788, 37.343127915358203 ], [ -81.902942141733632, 37.342321146286686 ], [ -81.899396050799211, 37.341110992679411 ], [ -81.899396050799211, 37.340304223607895 ], [ -81.896122736090518, 37.332034840624857 ], [ -81.895577183639077, 37.332034840624857 ], [ -81.894758854961907, 37.332034840624857 ], [ -81.894758854961907, 37.33142976382122 ], [ -81.893667750059009, 37.330017917946066 ], [ -81.89284942138184, 37.330219610213945 ], [ -81.887666673093094, 37.33122807155334 ], [ -81.88684834441591, 37.330824687017582 ], [ -81.884938910835842, 37.330622994749703 ], [ -81.88084726744998, 37.33122807155334 ], [ -81.879483386321368, 37.332034840624857 ], [ -81.878665057644184, 37.331833148356978 ], [ -81.878392281418471, 37.328807764338791 ], [ -81.87320953312971, 37.324975611249094 ], [ -81.865299022583713, 37.308840229818777 ], [ -81.864753470132271, 37.308436845283019 ], [ -81.853842421103309, 37.300369154567861 ], [ -81.854387973554765, 37.299965770032102 ], [ -81.853569644877595, 37.294721771067252 ], [ -81.854115197329037, 37.291293002513314 ], [ -81.843204148300089, 37.285645619012698 ], [ -81.842385819622905, 37.285645619012698 ], [ -81.810471001213216, 37.283023619530269 ], [ -81.809107120084605, 37.283023619530269 ], [ -81.793558875218338, 37.282216850458752 ], [ -81.793558875218338, 37.281611773655115 ], [ -81.774737315643392, 37.274754236547238 ], [ -81.774737315643392, 37.274754236547238 ], [ -81.767917910000278, 37.274149159743601 ], [ -81.765190147743056, 37.275157621082997 ], [ -81.763826266614416, 37.275157621082997 ], [ -81.762735161711532, 37.275359313350876 ], [ -81.761644056808635, 37.275762697886627 ], [ -81.760280175680009, 37.275157621082997 ], [ -81.757552413422772, 37.273947467475722 ], [ -81.7578251896485, 37.27193054479693 ], [ -81.7578251896485, 37.271123775725414 ], [ -81.757552413422772, 37.269913622118139 ], [ -81.755097427391263, 37.267695007171469 ], [ -81.752915217585468, 37.266686545832073 ], [ -81.752096888908298, 37.265476392224798 ], [ -81.751278560231128, 37.26507300768904 ], [ -81.747732469296722, 37.264266238617523 ], [ -81.743640825910859, 37.247525780383569 ], [ -81.743368049685131, 37.245912242240543 ], [ -81.744186378362301, 37.244097011829631 ], [ -81.738458077622099, 37.240869935543572 ], [ -81.733275329333338, 37.238046243793264 ], [ -81.728092581044592, 37.239861474204176 ], [ -81.683630056251587, 37.211422864433239 ], [ -81.678720084188569, 37.202548404646564 ], [ -81.560607978450108, 37.206582250004146 ], [ -81.558425768644327, 37.208195788147179 ], [ -81.557334663741415, 37.207792403611421 ], [ -81.507416614433936, 37.233810706167802 ], [ -81.504961628402427, 37.247727472651448 ], [ -81.504143299725257, 37.250147779865998 ], [ -81.409762725624773, 37.284838849941181 ], [ -81.409217173173332, 37.286049003548456 ], [ -81.388213403792591, 37.319933304552123 ], [ -81.386849522663965, 37.32053838135576 ], [ -81.385758417761082, 37.320134996820002 ], [ -81.384940089083898, 37.318924843212727 ], [ -81.384121760406742, 37.318521458676969 ], [ -81.38003011702088, 37.317916381873331 ], [ -81.377302354763629, 37.318521458676969 ], [ -81.371301277797713, 37.324168842177578 ], [ -81.367482410637578, 37.327597610731516 ], [ -81.369391844217645, 37.331833148356978 ], [ -81.36802796308902, 37.332438225160615 ], [ -81.366936858186136, 37.334455147839407 ], [ -81.36639130573468, 37.335866993714561 ], [ -81.36202688612309, 37.337682224125473 ], [ -81.320019347361608, 37.299360693228465 ], [ -81.225093220809697, 37.234819167507197 ], [ -81.204907780106112, 37.243088550490242 ], [ -81.166991884730493, 37.262854392742376 ], [ -81.112709415811437, 37.278586389636935 ], [ -81.084067912110427, 37.284435465405423 ], [ -81.03469541525439, 37.290687925709676 ], [ -80.981231275012505, 37.293511617459977 ], [ -80.980140170109621, 37.293108232924219 ], [ -80.973866316917963, 37.291494694781186 ], [ -80.966501358823422, 37.292099771584823 ], [ -80.94795257547419, 37.29593192467452 ], [ -80.91931107177318, 37.306218230336356 ], [ -80.900489512198234, 37.315092690123024 ], [ -80.849480357987858, 37.346960068447899 ], [ -80.872666337174394, 37.372373294200649 ], [ -80.862846393048329, 37.411904978704925 ], [ -80.85957307833965, 37.429653898278275 ], [ -80.85957307833965, 37.429653898278275 ], [ -80.858481973436739, 37.428242052403121 ], [ -80.858481973436739, 37.428242052403121 ], [ -80.811564462612239, 37.407467748811591 ], [ -80.798743980003209, 37.395769597274608 ], [ -80.776649105719571, 37.384071445737632 ], [ -80.776649105719571, 37.383668061201874 ], [ -80.770102476302199, 37.372373294200649 ], [ -80.622530538185572, 37.433284359100099 ], [ -80.511510614315938, 37.48169050339105 ], [ -80.494871264546759, 37.435099589511012 ], [ -80.475504152520372, 37.42299805343827 ], [ -80.464865879717138, 37.42622512972433 ], [ -80.443043781659227, 37.438124973529192 ], [ -80.425586103212893, 37.449823125066175 ], [ -80.320567256309189, 37.498834346160763 ], [ -80.314838955568987, 37.500851268839547 ], [ -80.33038720043524, 37.536147415718361 ], [ -80.312383969537478, 37.546232029112318 ], [ -80.288652437899486, 37.58193156052689 ], [ -80.240371045946347, 37.606941401743882 ], [ -80.223458919951469, 37.623278475442078 ], [ -80.22100393391996, 37.627715705335419 ], [ -80.239279941043463, 37.637598626461482 ], [ -80.254555409684002, 37.642439240890582 ], [ -80.254555409684002, 37.642237548622703 ], [ -80.263284248907155, 37.645061240373003 ], [ -80.263284248907155, 37.645061240373003 ], [ -80.264920906261509, 37.645464624908762 ], [ -80.264920906261509, 37.645464624908762 ], [ -80.26710311606729, 37.646069701712399 ], [ -80.267375892293018, 37.646069701712399 ], [ -80.270376430775983, 37.6488933934627 ], [ -80.270376430775983, 37.6488933934627 ], [ -80.292198528833893, 37.683786155805763 ], [ -80.292471305059621, 37.683987848073642 ], [ -80.296017395994028, 37.691853846520928 ], [ -80.287015780545147, 37.696492768682134 ], [ -80.263829801358611, 37.719082302684583 ], [ -80.25946538174702, 37.731183838757318 ], [ -80.260283710424204, 37.733604145971867 ], [ -80.262738696455713, 37.738243068133087 ], [ -80.257283171941239, 37.755991987706437 ], [ -80.231642206723194, 37.792498288192526 ], [ -80.227005010885875, 37.798952440764651 ], [ -80.162084269163586, 37.875192118022895 ], [ -80.148991010328842, 37.886083500488361 ], [ -80.147354352974503, 37.885881808220482 ], [ -80.146263248071605, 37.884469962345335 ], [ -80.130442226979625, 37.893142729864124 ], [ -80.055155988679815, 37.951633487549024 ], [ -80.002510177115099, 37.992778710196333 ], [ -79.978505869251393, 38.02908331841455 ], [ -79.959957085902175, 38.063774388489726 ], [ -79.934043344458388, 38.09907053536854 ], [ -79.931042805975437, 38.10149084258309 ], [ -79.938407764069979, 38.130534529157657 ], [ -79.933770568232674, 38.135576835854636 ], [ -79.928860596169642, 38.144451295641311 ], [ -79.928587819943914, 38.144854680177069 ], [ -79.925587281460963, 38.150300371409799 ], [ -79.925314505235235, 38.150502063677678 ], [ -79.920950085623645, 38.179949134788004 ], [ -79.921222861849373, 38.180352519323762 ], [ -79.91713121846351, 38.183781287877707 ], [ -79.916040113560626, 38.184386364681345 ], [ -79.892308581922634, 38.202336976522574 ], [ -79.892035805696906, 38.203345437861969 ], [ -79.794654693113472, 38.26486157956505 ], [ -79.790017497276168, 38.267685271315358 ], [ -79.78892639237327, 38.268693732654754 ], [ -79.810202937979739, 38.304998340872963 ], [ -79.808839056851127, 38.309435570766297 ], [ -79.73164338497125, 38.374178788755444 ], [ -79.691272503564107, 38.439527083548228 ], [ -79.689635846209768, 38.442552467566415 ], [ -79.689090293758312, 38.449611696942178 ], [ -79.688271965081157, 38.450418466013687 ], [ -79.698910237884377, 38.475226614962807 ], [ -79.695636923175698, 38.477848614445236 ], [ -79.669177629280483, 38.510926146377379 ], [ -79.669177629280483, 38.510926146377379 ], [ -79.648992188576898, 38.591603053528964 ], [ -79.597983034366536, 38.572845672616225 ], [ -79.555429943153598, 38.560139059739846 ], [ -79.536881159804381, 38.550861215417413 ], [ -79.521332914938114, 38.53391906491558 ], [ -79.476597613919381, 38.457276003121578 ], [ -79.31238632603359, 38.411895242848814 ], [ -79.297656409844507, 38.416534165010027 ], [ -79.295746976264439, 38.418147703153053 ], [ -79.291928109104305, 38.419559549028207 ], [ -79.290564227975679, 38.420769702635482 ], [ -79.280198731398173, 38.425408624796702 ], [ -79.282653717429696, 38.431056008297311 ], [ -79.267378248789157, 38.438316929940953 ], [ -79.265196038983362, 38.441745698494898 ], [ -79.263286605403295, 38.44376262117369 ], [ -79.263013829177567, 38.444569390245206 ], [ -79.242010059796826, 38.464335232497341 ], [ -79.240100626216758, 38.46978092373007 ], [ -79.234372325476556, 38.473008000016137 ], [ -79.231644563219305, 38.474016461355532 ], [ -79.225916262479103, 38.479462152588262 ], [ -79.210095241387123, 38.494185688143432 ], [ -79.210095241387123, 38.494185688143432 ], [ -79.209822465161409, 38.495597534018579 ], [ -79.207913031581342, 38.500034763911913 ], [ -79.207913031581342, 38.500438148447671 ], [ -79.174907108268741, 38.566391520044093 ], [ -79.174634332043013, 38.566593212311972 ], [ -79.1470839332449, 38.62568904680051 ], [ -79.146811157019187, 38.625890739068389 ], [ -79.136991212893122, 38.640614274623552 ], [ -79.136445660441666, 38.642429505034464 ], [ -79.135627331764496, 38.643639658641732 ], [ -79.135354555538768, 38.64404304317749 ], [ -79.092255911874389, 38.699306724576331 ], [ -79.092528688100117, 38.700113493647848 ], [ -79.057340554981735, 38.761427943083049 ], [ -79.055431121401668, 38.782202246674586 ], [ -78.999784771353987, 38.846138695592217 ], [ -78.994056470613785, 38.850172540949792 ], [ -78.869397735457952, 38.763041481226082 ], [ -78.835300707242467, 38.811447625517033 ], [ -78.808295860895797, 38.856223308986159 ], [ -78.788110420192226, 38.885065303292848 ], [ -78.779108804743345, 38.892326224936497 ], [ -78.75728670668542, 38.903217607401956 ], [ -78.719916363761257, 38.922580065118339 ], [ -78.719643587535529, 38.922176680582581 ], [ -78.716915825278278, 38.916327604814086 ], [ -78.714188063021055, 38.911083605849242 ], [ -78.710914748312362, 38.910075144509847 ], [ -78.601531481797068, 38.964532056837157 ], [ -78.557614509455519, 39.013139893395987 ], [ -78.554341194746826, 39.01959404596812 ], [ -78.56579779622723, 39.026249890808124 ], [ -78.57179887319316, 39.031897274308733 ], [ -78.543975698169319, 39.056705423257846 ], [ -78.508242012599482, 39.088572801582721 ], [ -78.459960620646356, 39.113380950531834 ], [ -78.439502403717057, 39.13213833144458 ], [ -78.418498634336316, 39.156744788125806 ], [ -78.410860900016047, 39.172073400484607 ], [ -78.426681921108042, 39.188813858718561 ], [ -78.438684075039887, 39.198091703041001 ], [ -78.437047417685548, 39.199705241184034 ], [ -78.432137445622516, 39.204747547880999 ], [ -78.431046340719618, 39.205756009220394 ], [ -78.429682459590992, 39.206966162827669 ], [ -78.428045802236653, 39.208579700970702 ], [ -78.42395415885079, 39.212008469524648 ], [ -78.399677074761371, 39.243875847849523 ], [ -78.399677074761371, 39.244077540117402 ], [ -78.360124522031413, 39.317695217893217 ], [ -78.359033417128501, 39.319510448304129 ], [ -78.340484633779283, 39.353394749307796 ], [ -78.362306731837194, 39.357831979201137 ], [ -78.347031263196655, 39.465939034784256 ], [ -78.228646381232466, 39.391312895669046 ], [ -78.033065827388427, 39.264650151441053 ], [ -78.033065827388427, 39.264650151441053 ], [ -78.032793051162713, 39.264448459173174 ], [ -77.828210881869765, 39.132340023712459 ], [ -77.822209804903849, 39.140004329891852 ], [ -77.771473426919187, 39.236816618473753 ], [ -77.767381783533324, 39.249321539082253 ], [ -77.769018440887677, 39.256380768458015 ], [ -77.76792733598478, 39.25759092206529 ], [ -77.761653482793122, 39.263036613298027 ], [ -77.76110793034168, 39.263641690101664 ], [ -77.758652944310171, 39.268078919994991 ], [ -77.758380168084443, 39.269289073602266 ], [ -77.755652405827206, 39.274533072567124 ], [ -77.755106853375764, 39.275138149370761 ], [ -77.753197419795697, 39.277356764317432 ], [ -77.752924643569969, 39.277961841121069 ], [ -77.753470196021411, 39.280382148335612 ], [ -77.750196881312718, 39.289256608122287 ], [ -77.719100391580199, 39.321123986447162 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "19", "geo_id": "0400000US10", "fips_state": "10", "name": "Delaware", "iso_3166_2": "DE", "census": 897934, "pop_estimataes_base": 897936, "pop_2010": 899731, "pop_2011": 907829, "pop_2012": 916881, "pop_2013": 925240, "pop_2014": 935614 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.564986537038436, 39.583323934689815 ], [ -75.576170362293112, 39.588164549118908 ], [ -75.578625348324636, 39.591593317672846 ], [ -75.579716453227519, 39.598652547048616 ], [ -75.565804865715606, 39.59058485633345 ], [ -75.564986537038436, 39.583323934689815 ] ] ], [ [ [ -75.555984921589555, 39.60591346869225 ], [ -75.561985998555471, 39.605308391888613 ], [ -75.567714299295673, 39.613779467139537 ], [ -75.571805942681536, 39.6236623882656 ], [ -75.570714837778638, 39.626687772283788 ], [ -75.559531012523962, 39.629713156301975 ], [ -75.555984921589555, 39.60591346869225 ] ] ], [ [ [ -75.414959612890286, 39.801756660802724 ], [ -75.416050717793183, 39.795907585034236 ], [ -75.437872815851094, 39.783402664425736 ], [ -75.440600578108331, 39.780982357211194 ], [ -75.4482383124286, 39.773923127835431 ], [ -75.466241543326376, 39.750728517029344 ], [ -75.466241543326376, 39.750728517029344 ], [ -75.469242081809341, 39.743669287653589 ], [ -75.474152053872373, 39.735399904670544 ], [ -75.475515935000999, 39.73096267477721 ], [ -75.504157438702009, 39.698288527380818 ], [ -75.509612963216483, 39.686186991308077 ], [ -75.529798403920054, 39.692641143880209 ], [ -75.562258774781199, 39.656739920197751 ], [ -75.587081411322075, 39.651092536697142 ], [ -75.61190404786295, 39.622048850122567 ], [ -75.613267928991576, 39.621040388783172 ], [ -75.613267928991576, 39.620233619711662 ], [ -75.614086257668731, 39.61841838930075 ], [ -75.614904586345915, 39.615998082086207 ], [ -75.614359033894459, 39.614586236211053 ], [ -75.613267928991576, 39.61297269806802 ], [ -75.613540705217304, 39.612569313532262 ], [ -75.613267928991576, 39.607325314567404 ], [ -75.613540705217304, 39.606921930031646 ], [ -75.613540705217304, 39.606921930031646 ], [ -75.613813481443017, 39.60611516096013 ], [ -75.61190404786295, 39.59764408570922 ], [ -75.61190404786295, 39.597442393441341 ], [ -75.604539089768394, 39.589979779529813 ], [ -75.603447984865511, 39.588971318190417 ], [ -75.592264159610835, 39.583525626957694 ], [ -75.591991383385107, 39.583323934689815 ], [ -75.587626963773516, 39.580701935207387 ], [ -75.587081411322075, 39.580298550671628 ], [ -75.586535858870633, 39.578886704796474 ], [ -75.585990306419177, 39.578483320260716 ], [ -75.571533166455808, 39.567793630063136 ], [ -75.570714837778638, 39.567188553259498 ], [ -75.563077103458369, 39.56214624656252 ], [ -75.564713760812708, 39.559927631615849 ], [ -75.565532089489892, 39.558515785740695 ], [ -75.569350956650027, 39.540565173899473 ], [ -75.569350956650027, 39.539153328024319 ], [ -75.57044206155291, 39.527253484219457 ], [ -75.560622117426846, 39.520395947111581 ], [ -75.566895970618503, 39.50829441103884 ], [ -75.57644313851884, 39.509101180110349 ], [ -75.587626963773516, 39.496394567233978 ], [ -75.587626963773516, 39.495386105894582 ], [ -75.59308248828799, 39.479250724464265 ], [ -75.59308248828799, 39.47804057085699 ], [ -75.589809173579312, 39.462106881694552 ], [ -75.589536397353584, 39.460896728087278 ], [ -75.580262005678975, 39.450812114693335 ], [ -75.578898124550363, 39.447786730675148 ], [ -75.570987614004366, 39.442542731710297 ], [ -75.571805942681536, 39.43891227088848 ], [ -75.555984921589555, 39.430441195637556 ], [ -75.538527243143221, 39.41652442915391 ], [ -75.536072257111698, 39.409465199778147 ], [ -75.523524550728411, 39.391514587936925 ], [ -75.521615117148343, 39.3878841271151 ], [ -75.512886277925162, 39.366101362184168 ], [ -75.51234072547372, 39.365697977648409 ], [ -75.511795173022279, 39.365092900844772 ], [ -75.505248543604893, 39.359243825076291 ], [ -75.494064718350216, 39.354604902915071 ], [ -75.491882508544421, 39.351781211164763 ], [ -75.494064718350216, 39.346537212199912 ], [ -75.493246389673047, 39.345528750860517 ], [ -75.491609732318693, 39.343915212717491 ], [ -75.490245851190082, 39.342906751378095 ], [ -75.479880354612575, 39.337461060145358 ], [ -75.479880354612575, 39.336654291073842 ], [ -75.469242081809341, 39.330805215305354 ], [ -75.460513242586174, 39.328183215822925 ], [ -75.438963920753991, 39.313459680267762 ], [ -75.437054487173924, 39.309425834910186 ], [ -75.435417829819585, 39.297525991105324 ], [ -75.435417829819585, 39.296719222033808 ], [ -75.428052871725029, 39.285021070496825 ], [ -75.408412983472914, 39.264650151441053 ], [ -75.40295745895844, 39.254565538047103 ], [ -75.404866892538507, 39.245892770528314 ], [ -75.405957997441391, 39.243674155581644 ], [ -75.405685221215663, 39.223908313329503 ], [ -75.404866892538507, 39.222698159722228 ], [ -75.39695638199251, 39.216042314882223 ], [ -75.393137514832375, 39.204545855613119 ], [ -75.394774172186715, 39.188410474182803 ], [ -75.398593039346849, 39.186595243771897 ], [ -75.400229696701189, 39.186393551504018 ], [ -75.408140207247186, 39.174695399967035 ], [ -75.410595193278709, 39.156341403590048 ], [ -75.401320801604086, 39.0887744938506 ], [ -75.402139130281256, 39.066790036651796 ], [ -75.400229696701189, 39.065579883044521 ], [ -75.395865277089598, 39.059125730472395 ], [ -75.396410829541054, 39.05791557686512 ], [ -75.387954766543615, 39.051259732025116 ], [ -75.379771479771904, 39.048839424810566 ], [ -75.345674451556405, 39.02483804493297 ], [ -75.340764479493373, 39.019997430503878 ], [ -75.318396828984021, 38.988130052179002 ], [ -75.314850738049614, 38.980869130535353 ], [ -75.311577423340921, 38.967557440855344 ], [ -75.312668528243819, 38.951018674889269 ], [ -75.312668528243819, 38.949203444478357 ], [ -75.311850199566635, 38.945976368192298 ], [ -75.311850199566635, 38.945774675924419 ], [ -75.311577423340921, 38.944564522317144 ], [ -75.302575807892026, 38.938917138816535 ], [ -75.312395752018091, 38.924596987797131 ], [ -75.304212465246366, 38.913100528528027 ], [ -75.263023255162068, 38.877400997113455 ], [ -75.231926765429534, 38.844323465181304 ], [ -75.205194695308592, 38.823347469321888 ], [ -75.190464779119509, 38.806808703355813 ], [ -75.160732170515587, 38.791278398729133 ], [ -75.159095513161247, 38.790269937389738 ], [ -75.134000100394644, 38.782202246674586 ], [ -75.113269107239631, 38.783009015746096 ], [ -75.097175309921923, 38.788656399246705 ], [ -75.093629218987502, 38.793900398211562 ], [ -75.097175309921923, 38.803178242533988 ], [ -75.09390199521323, 38.803783319337626 ], [ -75.089537575601653, 38.797127474497628 ], [ -75.082172617507098, 38.772117633280629 ], [ -75.08026318392703, 38.750133176081832 ], [ -75.079172079024147, 38.73823333227697 ], [ -75.065533267737948, 38.660985193679323 ], [ -75.06526049151222, 38.632344891640514 ], [ -75.061987176803541, 38.608948588566555 ], [ -75.061168848126357, 38.608545204030797 ], [ -75.060350519449202, 38.60794012722716 ], [ -75.060077743223474, 38.60773843495928 ], [ -75.049712246645953, 38.486319689696145 ], [ -75.048893917968797, 38.451225235085204 ], [ -75.049166694194511, 38.451225235085204 ], [ -75.052440008903204, 38.451225235085204 ], [ -75.053531113806088, 38.451225235085204 ], [ -75.066351596415117, 38.451225235085204 ], [ -75.069897687349538, 38.451225235085204 ], [ -75.07044323980098, 38.451225235085204 ], [ -75.085718708441519, 38.451225235085204 ], [ -75.088173694473028, 38.451225235085204 ], [ -75.089537575601653, 38.451225235085204 ], [ -75.141910610940641, 38.451225235085204 ], [ -75.185282030830749, 38.451023542817325 ], [ -75.252657758584547, 38.451426927353083 ], [ -75.260295492904817, 38.451426927353083 ], [ -75.341310031944829, 38.45203200415672 ], [ -75.341310031944829, 38.45203200415672 ], [ -75.355767171908184, 38.45203200415672 ], [ -75.371042640548723, 38.45203200415672 ], [ -75.393683067283817, 38.45203200415672 ], [ -75.394774172186715, 38.452233696424599 ], [ -75.410867969504423, 38.452435388692479 ], [ -75.424779557016336, 38.452637080960358 ], [ -75.428598424176471, 38.452637080960358 ], [ -75.479062025935406, 38.453645542299753 ], [ -75.500065795316146, 38.454048926835512 ], [ -75.503066333799097, 38.454250619103391 ], [ -75.521342340922615, 38.454654003639149 ], [ -75.522706222051227, 38.454654003639149 ], [ -75.533890047305903, 38.455057388174907 ], [ -75.559258236298234, 38.455662464978545 ], [ -75.55980378874969, 38.455662464978545 ], [ -75.573988152487317, 38.456065849514303 ], [ -75.583535320387654, 38.456469234050061 ], [ -75.589263621127856, 38.456267541782182 ], [ -75.59308248828799, 38.456469234050061 ], [ -75.597992460351037, 38.45687261858582 ], [ -75.630452831212182, 38.457881079925215 ], [ -75.662913202073327, 38.458687848996732 ], [ -75.665640964330564, 38.458889541264611 ], [ -75.693464139354404, 38.460099694871886 ], [ -75.696464677837355, 38.49237045773252 ], [ -75.696737454063083, 38.496404303090095 ], [ -75.69864688764315, 38.522019221110725 ], [ -75.70028354499749, 38.542793524702255 ], [ -75.701374649900401, 38.55933229066833 ], [ -75.701647426126115, 38.560744136543484 ], [ -75.703556859706183, 38.585148900956838 ], [ -75.704102412157624, 38.592006438064722 ], [ -75.705739069511978, 38.614797664335043 ], [ -75.705739069511978, 38.616209510210197 ], [ -75.70628462196342, 38.621251816907176 ], [ -75.706557398189148, 38.626092431336268 ], [ -75.707375726866317, 38.635370275658701 ], [ -75.707375726866317, 38.635370275658701 ], [ -75.722105643055414, 38.822137315714613 ], [ -75.72265119550687, 38.829801621894021 ], [ -75.72265119550687, 38.8300033141619 ], [ -75.722923971732584, 38.833230390447959 ], [ -75.724015076635482, 38.846743772395854 ], [ -75.724015076635482, 38.847752233735243 ], [ -75.725651733989821, 38.868123152791014 ], [ -75.725924510215549, 38.869333306398289 ], [ -75.745837174693392, 39.114994488674867 ], [ -75.746109950919106, 39.120238487639718 ], [ -75.747746608273459, 39.143231406177918 ], [ -75.747746608273459, 39.143433098445797 ], [ -75.75592989504517, 39.245892770528314 ], [ -75.75592989504517, 39.246094462796194 ], [ -75.760021538431033, 39.296719222033808 ], [ -75.766568167848419, 39.377194436917513 ], [ -75.766568167848419, 39.377597821453271 ], [ -75.779115874231707, 39.534716098130986 ], [ -75.779388650457435, 39.536531328541898 ], [ -75.787026384777704, 39.630519925373491 ], [ -75.78757193722916, 39.637377462481368 ], [ -75.788663042132043, 39.680741300075354 ], [ -75.788663042132043, 39.681951453682622 ], [ -75.788390265906315, 39.70010375779173 ], [ -75.788390265906315, 39.700305450059609 ], [ -75.788390265906315, 39.721886522722656 ], [ -75.739836097727476, 39.772712974228156 ], [ -75.716922894766654, 39.792075431944539 ], [ -75.686099181259863, 39.811034505125157 ], [ -75.662913202073327, 39.821119118519107 ], [ -75.641636656466858, 39.828380040162749 ], [ -75.634817250823758, 39.830195270573654 ], [ -75.595810250545242, 39.837254499949424 ], [ -75.594719145642344, 39.837254499949424 ], [ -75.593628040739446, 39.837456192217303 ], [ -75.59308248828799, 39.837456192217303 ], [ -75.579989229453247, 39.838464653556699 ], [ -75.579716453227519, 39.838464653556699 ], [ -75.539345571820391, 39.838262961288819 ], [ -75.498974690413249, 39.833220654591841 ], [ -75.453693836943074, 39.82031234944759 ], [ -75.428052871725029, 39.809219274714245 ], [ -75.414959612890286, 39.801756660802724 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "20", "geo_id": "0400000US54", "fips_state": "54", "name": "West Virginia", "iso_3166_2": "WV", "census": 1852994, "pop_estimataes_base": 1853033, "pop_2010": 1854176, "pop_2011": 1854982, "pop_2012": 1856313, "pop_2013": 1853595, "pop_2014": 1850326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.968408435907364, 37.537760953861394 ], [ -81.998141044511272, 37.543004952826251 ], [ -81.999777701865611, 37.542601568290493 ], [ -82.008233764863064, 37.53332372396806 ], [ -82.048604646270192, 37.531105109021397 ], [ -82.116525926475447, 37.559543718792327 ], [ -82.125800318150056, 37.57406556207961 ], [ -82.125527541924328, 37.579107868776589 ], [ -82.141894115467778, 37.595041557939027 ], [ -82.219635339799083, 37.643044317694219 ], [ -82.250186277080161, 37.657767853249382 ], [ -82.297103787904689, 37.687214924359708 ], [ -82.307196508256467, 37.707585843415487 ], [ -82.325745291605699, 37.735822760918538 ], [ -82.326290844057141, 37.740865067615509 ], [ -82.318925885962585, 37.758815679456738 ], [ -82.329836934991562, 37.775959522226451 ], [ -82.400213201228325, 37.851795814948943 ], [ -82.41767087967466, 37.870754888129561 ], [ -82.474681110850952, 37.910488264901716 ], [ -82.500322076068997, 37.936506567458103 ], [ -82.497321537586032, 37.945381027244778 ], [ -82.497321537586032, 37.945582719512657 ], [ -82.464861166724887, 37.976845021033895 ], [ -82.464042838047718, 37.982492404534504 ], [ -82.465406719176343, 37.984711019481175 ], [ -82.487774369685695, 37.998426093696942 ], [ -82.509869243969334, 38.001249785447243 ], [ -82.519689188095398, 38.008510707090892 ], [ -82.539056300121786, 38.039167931808493 ], [ -82.547239586893511, 38.061152389007304 ], [ -82.600158174683955, 38.117424531745527 ], [ -82.602613160715464, 38.118432993084923 ], [ -82.621161944064696, 38.123273607514022 ], [ -82.636437412705234, 38.137795450801306 ], [ -82.644620699476945, 38.16542729150072 ], [ -82.604249818069803, 38.247314352259579 ], [ -82.594975426395195, 38.245499121848667 ], [ -82.584064377366246, 38.246305890920183 ], [ -82.578336076626044, 38.2547769661711 ], [ -82.574789985691638, 38.263853118225654 ], [ -82.571789447208658, 38.31568803107055 ], [ -82.593065992815127, 38.37498555782696 ], [ -82.595248202620922, 38.38264986400636 ], [ -82.595248202620922, 38.38264986400636 ], [ -82.59715763620099, 38.41290370418821 ], [ -82.59633930752382, 38.417744318617302 ], [ -82.593611545266583, 38.421778163974878 ], [ -82.560605621953982, 38.404432628937286 ], [ -82.52023474054684, 38.407659705223352 ], [ -82.506595929260641, 38.410080012437902 ], [ -82.34074798402051, 38.440938929423382 ], [ -82.330382487442989, 38.444569390245206 ], [ -82.324108634251346, 38.449208312406419 ], [ -82.320289767091211, 38.45445231137127 ], [ -82.314015913899567, 38.468167385587037 ], [ -82.295467130550335, 38.539768140684075 ], [ -82.293284920744554, 38.560340752007725 ], [ -82.293830473195996, 38.572643980348346 ], [ -82.291375487164487, 38.578896440652585 ], [ -82.287011067552896, 38.582526901474409 ], [ -82.274190584943881, 38.593619976207755 ], [ -82.262188431012021, 38.598258898368968 ], [ -82.246094633694312, 38.598460590636847 ], [ -82.219089787347642, 38.591603053528964 ], [ -82.193721598355324, 38.593014899404118 ], [ -82.181992220649192, 38.599469051976243 ], [ -82.177355024811874, 38.603704589601705 ], [ -82.175172815006093, 38.608545204030797 ], [ -82.172172276523128, 38.619234894228384 ], [ -82.172172276523128, 38.625890739068389 ], [ -82.182537773100634, 38.708786261166637 ], [ -82.188266073840836, 38.733997794651515 ], [ -82.198904346644071, 38.757797482261225 ], [ -82.220453668476267, 38.773731171423663 ], [ -82.221544773379151, 38.787244553371551 ], [ -82.215816472638949, 38.797530859033387 ], [ -82.191266612323801, 38.81507808633885 ], [ -82.184447206680701, 38.816489932214004 ], [ -82.139166353210527, 38.866307922380109 ], [ -82.098795471803385, 38.958279596532918 ], [ -82.093067171063183, 38.97098620940929 ], [ -82.051605184753157, 38.994382512483249 ], [ -82.045604107787227, 39.003862049073561 ], [ -82.041512464401364, 39.017778815557207 ], [ -82.03605693988689, 39.025443121736608 ], [ -82.017508156537673, 39.030082043897821 ], [ -82.002232687897134, 39.02786342895115 ], [ -81.935675288820491, 38.989541898054156 ], [ -81.91985426772851, 38.96856590219474 ], [ -81.900487155702109, 38.93770698520926 ], [ -81.898577722122042, 38.929639294494102 ], [ -81.901032708153565, 38.924395295529251 ], [ -81.926673673371596, 38.901402376991044 ], [ -81.928310330725949, 38.895351608954677 ], [ -81.926946449597324, 38.89151945586498 ], [ -81.908670442473834, 38.87840945845285 ], [ -81.87484619048405, 38.881233150203151 ], [ -81.760007399454281, 38.925807141404405 ], [ -81.756188532294146, 38.933471447583798 ], [ -81.764371819065872, 39.015358508342658 ], [ -81.772827882063325, 39.026249890808124 ], [ -81.79328609899261, 39.04036834955965 ], [ -81.803378819344402, 39.047629271203292 ], [ -81.811562106116114, 39.059529115008147 ], [ -81.814289868373351, 39.0734458814918 ], [ -81.812380434793283, 39.082118649010596 ], [ -81.747186916845266, 39.095430338690605 ], [ -81.747186916845266, 39.095430338690605 ], [ -81.749641902876789, 39.180746168003409 ], [ -81.749914679102503, 39.186393551504018 ], [ -81.740094734976452, 39.190629089129473 ], [ -81.72154595162722, 39.212411854060406 ], [ -81.695632210183447, 39.242867386510127 ], [ -81.605888831920282, 39.275944918442278 ], [ -81.542331971326604, 39.352789672504159 ], [ -81.467864061703978, 39.403817816277538 ], [ -81.456134683997846, 39.409263507510268 ], [ -81.446587516097509, 39.410473661117543 ], [ -81.435676467068561, 39.408456738438751 ], [ -81.412763264107753, 39.394539971955105 ], [ -81.406762187141823, 39.388085819382979 ], [ -81.393668928307079, 39.351781211164763 ], [ -81.384667312858184, 39.343511828181732 ], [ -81.375938473635017, 39.34169659777082 ], [ -81.371301277797713, 39.342099982306578 ], [ -81.356844137834344, 39.343108443645974 ], [ -81.347569746159735, 39.345730443128396 ], [ -81.295469487046461, 39.375379206506608 ], [ -81.270646850505585, 39.385867204436309 ], [ -81.249097528673389, 39.389901049793892 ], [ -81.223456563455358, 39.386068896704188 ], [ -81.21554605290936, 39.388690896186617 ], [ -81.127712108226262, 39.46493057344486 ], [ -81.063609695181128, 39.520597639379453 ], [ -81.038787058640253, 39.540363481631594 ], [ -81.019965499065307, 39.555490401722516 ], [ -80.943860932088342, 39.606921930031646 ], [ -80.892306225426523, 39.616804851157717 ], [ -80.880304071494663, 39.620637004247421 ], [ -80.831749903315796, 39.705751141292339 ], [ -80.829840469735728, 39.711801909328713 ], [ -80.828749364832845, 39.72087806138326 ], [ -80.812382791289409, 39.848750959218521 ], [ -80.806108938097765, 39.89735879577735 ], [ -80.809655029032172, 39.905628178760388 ], [ -80.808836700354988, 39.912485715868272 ], [ -80.806108938097765, 39.917124638029492 ], [ -80.759464203498965, 39.958269860676793 ], [ -80.743097629955543, 39.969161243142267 ], [ -80.740097091472563, 39.970774781285293 ], [ -80.732186580926566, 40.033299384327776 ], [ -80.73136825224941, 40.037534921953231 ], [ -80.730822699797955, 40.049233073490214 ], [ -80.73300490960375, 40.058712610080519 ], [ -80.726458280186364, 40.089168142530241 ], [ -80.705454510805623, 40.153104591447871 ], [ -80.702999524774114, 40.157138436805454 ], [ -80.685269070102066, 40.187593969255175 ], [ -80.651990370563738, 40.244874573332801 ], [ -80.644625412469196, 40.251328725904926 ], [ -80.637260454374655, 40.25516087899463 ], [ -80.616802237445356, 40.280170720211615 ], [ -80.602890649933443, 40.306995791839519 ], [ -80.599890111450478, 40.317685482037106 ], [ -80.609437279350814, 40.360444242827441 ], [ -80.619257223476865, 40.381823623222616 ], [ -80.617347789896797, 40.395942081974141 ], [ -80.612165041608051, 40.434868689674779 ], [ -80.599071782773308, 40.482468064894221 ], [ -80.610255608027984, 40.49093914014513 ], [ -80.666993062978563, 40.573632969975506 ], [ -80.66808416788146, 40.582507429762181 ], [ -80.665901958075665, 40.587751428727032 ], [ -80.63425991589169, 40.616190038497962 ], [ -80.627167734022862, 40.620022191587665 ], [ -80.601526768804817, 40.625467882820402 ], [ -80.594161810710276, 40.62365265240949 ], [ -80.588979062421515, 40.620223883855544 ], [ -80.560610334946233, 40.62365265240949 ], [ -80.518875572410479, 40.638779572500411 ], [ -80.519148348636207, 40.616391730765841 ], [ -80.519148348636207, 40.616391730765841 ], [ -80.519148348636207, 40.590171735941581 ], [ -80.519148348636207, 40.590171735941581 ], [ -80.519148348636207, 40.517965904040913 ], [ -80.519148348636207, 40.517965904040913 ], [ -80.518602796184751, 40.477425758197242 ], [ -80.518057243733296, 40.399572542795966 ], [ -80.518057243733296, 40.398967465992328 ], [ -80.519148348636207, 40.172870433700012 ], [ -80.519148348636207, 40.172668741432133 ], [ -80.519148348636207, 40.159760436287883 ], [ -80.518875572410479, 40.078075067796902 ], [ -80.518875572410479, 40.077066606457507 ], [ -80.519148348636207, 40.016357233825943 ], [ -80.519148348636207, 39.963312167373772 ], [ -80.519148348636207, 39.962505398302255 ], [ -80.519148348636207, 39.962102013766497 ], [ -80.519148348636207, 39.959480014284068 ], [ -80.519148348636207, 39.956656322533767 ], [ -80.519148348636207, 39.939109095228297 ], [ -80.519148348636207, 39.936890480281633 ], [ -80.519421124861921, 39.721483138186898 ], [ -80.421494459827045, 39.721281445919018 ], [ -80.309383431054499, 39.721281445919018 ], [ -80.308565102377344, 39.721281445919018 ], [ -79.91631288978634, 39.72087806138326 ], [ -79.853028805418404, 39.720676369115381 ], [ -79.853028805418404, 39.720676369115381 ], [ -79.763830979606666, 39.720676369115381 ], [ -79.610530740749823, 39.721281445919018 ], [ -79.608348530944042, 39.721079753651139 ], [ -79.476597613919381, 39.721079753651139 ], [ -79.478779823725176, 39.531690714112798 ], [ -79.482325914659583, 39.524631484737029 ], [ -79.482598690885311, 39.521404408450969 ], [ -79.487781439174071, 39.279978763799861 ], [ -79.486690334271174, 39.278163533388948 ], [ -79.486144781819718, 39.265053535976811 ], [ -79.485872005594004, 39.264851843708932 ], [ -79.486963110496902, 39.205957701488273 ], [ -79.402948032973939, 39.250128308153769 ], [ -79.378670948884505, 39.271911073084695 ], [ -79.279925955172445, 39.340083059627787 ], [ -79.257012752211637, 39.356016748790225 ], [ -79.213095779870088, 39.36791659259508 ], [ -79.201639178389684, 39.379816436399942 ], [ -79.084345401328392, 39.471384726016993 ], [ -79.067160499107786, 39.474611802303052 ], [ -79.04233786256691, 39.479250724464265 ], [ -79.02569851279776, 39.465535650248498 ], [ -78.968961057847181, 39.441534270370902 ], [ -78.87485325997244, 39.522614562058244 ], [ -78.824662434439233, 39.590181471797692 ], [ -78.78756486774077, 39.627494541355304 ], [ -78.760560021394113, 39.609947314049833 ], [ -78.769016084391552, 39.599862700655891 ], [ -78.772016622874517, 39.593811932619516 ], [ -78.767379427037213, 39.58755947231527 ], [ -78.760287245168385, 39.582113781082541 ], [ -78.68936542648018, 39.545809172864324 ], [ -78.676272167645422, 39.540565173899473 ], [ -78.657450608070462, 39.535119482666744 ], [ -78.656086726941851, 39.534716098130986 ], [ -78.56579779622723, 39.519387485772185 ], [ -78.468689459869523, 39.516765486289756 ], [ -78.437047417685548, 39.53895163575644 ], [ -78.432137445622516, 39.561137785223124 ], [ -78.450140676520292, 39.570819014081316 ], [ -78.454505096131868, 39.574247782635254 ], [ -78.458323963292003, 39.581105319743145 ], [ -78.457232858389119, 39.587357780047391 ], [ -78.430228012042448, 39.623259003729842 ], [ -78.355214549968366, 39.640604538767434 ], [ -78.333938004361897, 39.635763924338342 ], [ -78.312934234981157, 39.630923309909249 ], [ -78.282928850151535, 39.620435311979541 ], [ -78.271199472445403, 39.619628542908025 ], [ -78.224281961620889, 39.663194072769883 ], [ -78.191003262082575, 39.690220836665659 ], [ -78.182819975310849, 39.695061451094759 ], [ -78.176546122119206, 39.695868220166275 ], [ -78.143540198806619, 39.690422528933539 ], [ -78.107806513236781, 39.682153145950501 ], [ -78.074527813698467, 39.666622841323822 ], [ -78.036066365871392, 39.635763924338342 ], [ -78.02351865948809, 39.619830235175904 ], [ -78.009879848201905, 39.602888084674071 ], [ -77.946322987608227, 39.584937472832841 ], [ -77.902678791492406, 39.587761164583149 ], [ -77.884402784368888, 39.568197014598894 ], [ -77.886039441723227, 39.560532708419487 ], [ -77.889039980206206, 39.555893786258274 ], [ -77.865308448568214, 39.516563794021877 ], [ -77.845123007864657, 39.49820979764489 ], [ -77.825483119612528, 39.493974260019428 ], [ -77.807752664940466, 39.490142106929731 ], [ -77.765472349953257, 39.428625965226644 ], [ -77.73928583228377, 39.38566551216843 ], [ -77.760562377890238, 39.34411690498537 ], [ -77.760562377890238, 39.338872906020512 ], [ -77.75592518205292, 39.333830599323534 ], [ -77.72728367835191, 39.3217290632508 ], [ -77.719100391580199, 39.321123986447162 ], [ -77.750196881312718, 39.289256608122287 ], [ -77.753470196021411, 39.280382148335612 ], [ -77.752924643569969, 39.277961841121069 ], [ -77.753197419795697, 39.277356764317432 ], [ -77.755106853375764, 39.275138149370761 ], [ -77.755652405827206, 39.274533072567124 ], [ -77.758380168084443, 39.269289073602266 ], [ -77.758652944310171, 39.268078919994991 ], [ -77.76110793034168, 39.263641690101664 ], [ -77.761653482793122, 39.263036613298027 ], [ -77.76792733598478, 39.25759092206529 ], [ -77.769018440887677, 39.256380768458015 ], [ -77.767381783533324, 39.249321539082253 ], [ -77.771473426919187, 39.236816618473753 ], [ -77.822209804903849, 39.140004329891852 ], [ -77.828210881869765, 39.132340023712459 ], [ -78.032793051162713, 39.264448459173174 ], [ -78.033065827388427, 39.264650151441053 ], [ -78.033065827388427, 39.264650151441053 ], [ -78.228646381232466, 39.391312895669046 ], [ -78.347031263196655, 39.465939034784256 ], [ -78.362306731837194, 39.357831979201137 ], [ -78.340484633779283, 39.353394749307796 ], [ -78.359033417128501, 39.319510448304129 ], [ -78.360124522031413, 39.317695217893217 ], [ -78.399677074761371, 39.244077540117402 ], [ -78.399677074761371, 39.243875847849523 ], [ -78.42395415885079, 39.212008469524648 ], [ -78.428045802236653, 39.208579700970702 ], [ -78.429682459590992, 39.206966162827669 ], [ -78.431046340719618, 39.205756009220394 ], [ -78.432137445622516, 39.204747547880999 ], [ -78.437047417685548, 39.199705241184034 ], [ -78.438684075039887, 39.198091703041001 ], [ -78.426681921108042, 39.188813858718561 ], [ -78.410860900016047, 39.172073400484607 ], [ -78.418498634336316, 39.156744788125806 ], [ -78.439502403717057, 39.13213833144458 ], [ -78.459960620646356, 39.113380950531834 ], [ -78.508242012599482, 39.088572801582721 ], [ -78.543975698169319, 39.056705423257846 ], [ -78.57179887319316, 39.031897274308733 ], [ -78.56579779622723, 39.026249890808124 ], [ -78.554341194746826, 39.01959404596812 ], [ -78.557614509455519, 39.013139893395987 ], [ -78.601531481797068, 38.964532056837157 ], [ -78.710914748312362, 38.910075144509847 ], [ -78.714188063021055, 38.911083605849242 ], [ -78.716915825278278, 38.916327604814086 ], [ -78.719643587535529, 38.922176680582581 ], [ -78.719916363761257, 38.922580065118339 ], [ -78.75728670668542, 38.903217607401956 ], [ -78.779108804743345, 38.892326224936497 ], [ -78.788110420192226, 38.885065303292848 ], [ -78.808295860895797, 38.856223308986159 ], [ -78.835300707242467, 38.811447625517033 ], [ -78.869397735457952, 38.763041481226082 ], [ -78.994056470613785, 38.850172540949792 ], [ -78.999784771353987, 38.846138695592217 ], [ -79.055431121401668, 38.782202246674586 ], [ -79.057340554981735, 38.761427943083049 ], [ -79.092528688100117, 38.700113493647848 ], [ -79.092255911874389, 38.699306724576331 ], [ -79.135354555538768, 38.64404304317749 ], [ -79.135627331764496, 38.643639658641732 ], [ -79.136445660441666, 38.642429505034464 ], [ -79.136991212893122, 38.640614274623552 ], [ -79.146811157019187, 38.625890739068389 ], [ -79.1470839332449, 38.62568904680051 ], [ -79.174634332043013, 38.566593212311972 ], [ -79.174907108268741, 38.566391520044093 ], [ -79.207913031581342, 38.500438148447671 ], [ -79.207913031581342, 38.500034763911913 ], [ -79.209822465161409, 38.495597534018579 ], [ -79.210095241387123, 38.494185688143432 ], [ -79.210095241387123, 38.494185688143432 ], [ -79.225916262479103, 38.479462152588262 ], [ -79.231644563219305, 38.474016461355532 ], [ -79.234372325476556, 38.473008000016137 ], [ -79.240100626216758, 38.46978092373007 ], [ -79.242010059796826, 38.464335232497341 ], [ -79.263013829177567, 38.444569390245206 ], [ -79.263286605403295, 38.44376262117369 ], [ -79.265196038983362, 38.441745698494898 ], [ -79.267378248789157, 38.438316929940953 ], [ -79.282653717429696, 38.431056008297311 ], [ -79.280198731398173, 38.425408624796702 ], [ -79.290564227975679, 38.420769702635482 ], [ -79.291928109104305, 38.419559549028207 ], [ -79.295746976264439, 38.418147703153053 ], [ -79.297656409844507, 38.416534165010027 ], [ -79.31238632603359, 38.411895242848814 ], [ -79.476597613919381, 38.457276003121578 ], [ -79.521332914938114, 38.53391906491558 ], [ -79.536881159804381, 38.550861215417413 ], [ -79.555429943153598, 38.560139059739846 ], [ -79.597983034366536, 38.572845672616225 ], [ -79.648992188576898, 38.591603053528964 ], [ -79.669177629280483, 38.510926146377379 ], [ -79.669177629280483, 38.510926146377379 ], [ -79.695636923175698, 38.477848614445236 ], [ -79.698910237884377, 38.475226614962807 ], [ -79.688271965081157, 38.450418466013687 ], [ -79.689090293758312, 38.449611696942178 ], [ -79.689635846209768, 38.442552467566415 ], [ -79.691272503564107, 38.439527083548228 ], [ -79.73164338497125, 38.374178788755444 ], [ -79.808839056851127, 38.309435570766297 ], [ -79.810202937979739, 38.304998340872963 ], [ -79.78892639237327, 38.268693732654754 ], [ -79.790017497276168, 38.267685271315358 ], [ -79.794654693113472, 38.26486157956505 ], [ -79.892035805696906, 38.203345437861969 ], [ -79.892308581922634, 38.202336976522574 ], [ -79.916040113560626, 38.184386364681345 ], [ -79.91713121846351, 38.183781287877707 ], [ -79.921222861849373, 38.180352519323762 ], [ -79.920950085623645, 38.179949134788004 ], [ -79.925314505235235, 38.150502063677678 ], [ -79.925587281460963, 38.150300371409799 ], [ -79.928587819943914, 38.144854680177069 ], [ -79.928860596169642, 38.144451295641311 ], [ -79.933770568232674, 38.135576835854636 ], [ -79.938407764069979, 38.130534529157657 ], [ -79.931042805975437, 38.10149084258309 ], [ -79.934043344458388, 38.09907053536854 ], [ -79.959957085902175, 38.063774388489726 ], [ -79.978505869251393, 38.02908331841455 ], [ -80.002510177115099, 37.992778710196333 ], [ -80.055155988679815, 37.951633487549024 ], [ -80.130442226979625, 37.893142729864124 ], [ -80.146263248071605, 37.884469962345335 ], [ -80.147354352974503, 37.885881808220482 ], [ -80.148991010328842, 37.886083500488361 ], [ -80.162084269163586, 37.875192118022895 ], [ -80.227005010885875, 37.798952440764651 ], [ -80.231642206723194, 37.792498288192526 ], [ -80.257283171941239, 37.755991987706437 ], [ -80.262738696455713, 37.738243068133087 ], [ -80.260283710424204, 37.733604145971867 ], [ -80.25946538174702, 37.731183838757318 ], [ -80.263829801358611, 37.719082302684583 ], [ -80.287015780545147, 37.696492768682134 ], [ -80.296017395994028, 37.691853846520928 ], [ -80.292471305059621, 37.683987848073642 ], [ -80.292198528833893, 37.683786155805763 ], [ -80.270376430775983, 37.6488933934627 ], [ -80.270376430775983, 37.6488933934627 ], [ -80.267375892293018, 37.646069701712399 ], [ -80.26710311606729, 37.646069701712399 ], [ -80.264920906261509, 37.645464624908762 ], [ -80.264920906261509, 37.645464624908762 ], [ -80.263284248907155, 37.645061240373003 ], [ -80.263284248907155, 37.645061240373003 ], [ -80.254555409684002, 37.642237548622703 ], [ -80.254555409684002, 37.642439240890582 ], [ -80.239279941043463, 37.637598626461482 ], [ -80.22100393391996, 37.627715705335419 ], [ -80.223458919951469, 37.623278475442078 ], [ -80.240371045946347, 37.606941401743882 ], [ -80.288652437899486, 37.58193156052689 ], [ -80.312383969537478, 37.546232029112318 ], [ -80.33038720043524, 37.536147415718361 ], [ -80.314838955568987, 37.500851268839547 ], [ -80.320567256309189, 37.498834346160763 ], [ -80.425586103212893, 37.449823125066175 ], [ -80.443043781659227, 37.438124973529192 ], [ -80.464865879717138, 37.42622512972433 ], [ -80.475504152520372, 37.42299805343827 ], [ -80.494871264546759, 37.435099589511012 ], [ -80.511510614315938, 37.48169050339105 ], [ -80.622530538185572, 37.433284359100099 ], [ -80.770102476302199, 37.372373294200649 ], [ -80.776649105719571, 37.383668061201874 ], [ -80.776649105719571, 37.384071445737632 ], [ -80.798743980003209, 37.395769597274608 ], [ -80.811564462612239, 37.407467748811591 ], [ -80.858481973436739, 37.428242052403121 ], [ -80.858481973436739, 37.428242052403121 ], [ -80.85957307833965, 37.429653898278275 ], [ -80.85957307833965, 37.429653898278275 ], [ -80.862846393048329, 37.411904978704925 ], [ -80.872666337174394, 37.372373294200649 ], [ -80.849480357987858, 37.346960068447899 ], [ -80.900489512198234, 37.315092690123024 ], [ -80.91931107177318, 37.306218230336356 ], [ -80.94795257547419, 37.29593192467452 ], [ -80.966501358823422, 37.292099771584823 ], [ -80.973866316917963, 37.291494694781186 ], [ -80.980140170109621, 37.293108232924219 ], [ -80.981231275012505, 37.293511617459977 ], [ -81.03469541525439, 37.290687925709676 ], [ -81.084067912110427, 37.284435465405423 ], [ -81.112709415811437, 37.278586389636935 ], [ -81.166991884730493, 37.262854392742376 ], [ -81.204907780106112, 37.243088550490242 ], [ -81.225093220809697, 37.234819167507197 ], [ -81.320019347361608, 37.299360693228465 ], [ -81.36202688612309, 37.337682224125473 ], [ -81.36639130573468, 37.335866993714561 ], [ -81.366936858186136, 37.334455147839407 ], [ -81.36802796308902, 37.332438225160615 ], [ -81.369391844217645, 37.331833148356978 ], [ -81.367482410637578, 37.327597610731516 ], [ -81.371301277797713, 37.324168842177578 ], [ -81.377302354763629, 37.318521458676969 ], [ -81.38003011702088, 37.317916381873331 ], [ -81.384121760406742, 37.318521458676969 ], [ -81.384940089083898, 37.318924843212727 ], [ -81.385758417761082, 37.320134996820002 ], [ -81.386849522663965, 37.32053838135576 ], [ -81.388213403792591, 37.319933304552123 ], [ -81.409217173173332, 37.286049003548456 ], [ -81.409762725624773, 37.284838849941181 ], [ -81.504143299725257, 37.250147779865998 ], [ -81.504961628402427, 37.247727472651448 ], [ -81.507416614433936, 37.233810706167802 ], [ -81.557334663741415, 37.207792403611421 ], [ -81.558425768644327, 37.208195788147179 ], [ -81.560607978450108, 37.206582250004146 ], [ -81.678720084188569, 37.202548404646564 ], [ -81.683630056251587, 37.211422864433239 ], [ -81.728092581044592, 37.239861474204176 ], [ -81.733275329333338, 37.238046243793264 ], [ -81.738458077622099, 37.240869935543572 ], [ -81.744186378362301, 37.244097011829631 ], [ -81.743368049685131, 37.245912242240543 ], [ -81.743640825910859, 37.247525780383569 ], [ -81.747732469296722, 37.264266238617523 ], [ -81.751278560231128, 37.26507300768904 ], [ -81.752096888908298, 37.265476392224798 ], [ -81.752915217585468, 37.266686545832073 ], [ -81.755097427391263, 37.267695007171469 ], [ -81.757552413422772, 37.269913622118139 ], [ -81.7578251896485, 37.271123775725414 ], [ -81.7578251896485, 37.27193054479693 ], [ -81.757552413422772, 37.273947467475722 ], [ -81.760280175680009, 37.275157621082997 ], [ -81.761644056808635, 37.275762697886627 ], [ -81.762735161711532, 37.275359313350876 ], [ -81.763826266614416, 37.275157621082997 ], [ -81.765190147743056, 37.275157621082997 ], [ -81.767917910000278, 37.274149159743601 ], [ -81.774737315643392, 37.274754236547238 ], [ -81.774737315643392, 37.274754236547238 ], [ -81.793558875218338, 37.281611773655115 ], [ -81.793558875218338, 37.282216850458752 ], [ -81.809107120084605, 37.283023619530269 ], [ -81.810471001213216, 37.283023619530269 ], [ -81.842385819622905, 37.285645619012698 ], [ -81.843204148300089, 37.285645619012698 ], [ -81.854115197329037, 37.291293002513314 ], [ -81.853569644877595, 37.294721771067252 ], [ -81.854387973554765, 37.299965770032102 ], [ -81.853842421103309, 37.300369154567861 ], [ -81.864753470132271, 37.308436845283019 ], [ -81.865299022583713, 37.308840229818777 ], [ -81.87320953312971, 37.324975611249094 ], [ -81.878392281418471, 37.328807764338791 ], [ -81.878665057644184, 37.331833148356978 ], [ -81.879483386321368, 37.332034840624857 ], [ -81.88084726744998, 37.33122807155334 ], [ -81.884938910835842, 37.330622994749703 ], [ -81.88684834441591, 37.330824687017582 ], [ -81.887666673093094, 37.33122807155334 ], [ -81.89284942138184, 37.330219610213945 ], [ -81.893667750059009, 37.330017917946066 ], [ -81.894758854961907, 37.33142976382122 ], [ -81.894758854961907, 37.332034840624857 ], [ -81.895577183639077, 37.332034840624857 ], [ -81.896122736090518, 37.332034840624857 ], [ -81.899396050799211, 37.340304223607895 ], [ -81.899396050799211, 37.341110992679411 ], [ -81.902942141733632, 37.342321146286686 ], [ -81.903760470410788, 37.343127915358203 ], [ -81.905942680216583, 37.342724530822444 ], [ -81.906488232668039, 37.342724530822444 ], [ -81.907306561345209, 37.343127915358203 ], [ -81.90785211379665, 37.343732992161833 ], [ -81.910852652279615, 37.348775298858811 ], [ -81.911398204731057, 37.348775298858811 ], [ -81.92067259640568, 37.355431143698823 ], [ -81.92149092508285, 37.356439605038211 ], [ -81.925582568468712, 37.357246374109728 ], [ -81.926673673371596, 37.358859912252761 ], [ -81.929946988080289, 37.366524218432161 ], [ -81.930219764306017, 37.36672591070004 ], [ -81.933765855240424, 37.372776678736408 ], [ -81.92749200204878, 37.413316824580079 ], [ -81.935675288820491, 37.438326665797071 ], [ -81.94931410010669, 37.445587587440713 ], [ -81.968681212133077, 37.451436663209208 ], [ -81.986957219256595, 37.454865431763146 ], [ -81.992139967545342, 37.460916199799513 ], [ -81.996504387156932, 37.476648196694072 ], [ -81.992958296222525, 37.482900656998325 ], [ -81.942767470689319, 37.508918959554705 ], [ -81.927764778274508, 37.512146035840772 ], [ -81.968408435907364, 37.537760953861394 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "21", "geo_id": "0400000US55", "fips_state": "55", "name": "Wisconsin", "iso_3166_2": "WI", "census": 5686986, "pop_estimataes_base": 5687289, "pop_2010": 5689268, "pop_2011": 5708785, "pop_2012": 5724888, "pop_2013": 5742953, "pop_2014": 5757564 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.456659027984188, 47.016692467368884 ], [ -90.455295146855562, 47.023751696744654 ], [ -90.455295146855562, 47.023953389012533 ], [ -90.456113475532732, 47.032021079727684 ], [ -90.45638625175846, 47.036054925085267 ], [ -90.457204580435629, 47.043517538996788 ], [ -90.457204580435629, 47.044122615800426 ], [ -90.455567923081276, 47.051383537444067 ], [ -90.455022370629834, 47.052997075587101 ], [ -90.455022370629834, 47.053400460122859 ], [ -90.44956684611536, 47.064896919391956 ], [ -90.449021293663918, 47.065905380731351 ], [ -90.449021293663918, 47.06610707299923 ], [ -90.449021293663918, 47.06610707299923 ], [ -90.448475741212462, 47.066510457534989 ], [ -90.441929111795076, 47.070544302892571 ], [ -90.438655797086398, 47.072561225571363 ], [ -90.437291915957786, 47.073569686910758 ], [ -90.435382482377719, 47.073771379178631 ], [ -90.434836929926263, 47.07397307144651 ], [ -90.434564153700535, 47.07397307144651 ], [ -90.428290300508891, 47.075384917321664 ], [ -90.427199195605994, 47.075586609589543 ], [ -90.425289762025926, 47.075989994125301 ], [ -90.417379251479929, 47.077603532268334 ], [ -90.400194349259323, 47.077200147732576 ], [ -90.398830468130711, 47.077200147732576 ], [ -90.395284377196305, 47.077200147732576 ], [ -90.395284377196305, 47.076998455464697 ], [ -90.395011600970577, 47.076796763196818 ], [ -90.393920496067679, 47.075989994125301 ], [ -90.393920496067679, 47.075989994125301 ], [ -90.393647719841951, 47.074779840518026 ], [ -90.393102167390509, 47.068729072481659 ], [ -90.393102167390509, 47.068729072481659 ], [ -90.393102167390509, 47.068325687945901 ], [ -90.393102167390509, 47.067922303410143 ], [ -90.393374943616237, 47.066712149802868 ], [ -90.393374943616237, 47.066510457534989 ], [ -90.393374943616237, 47.06610707299923 ], [ -90.393374943616237, 47.06610707299923 ], [ -90.393374943616237, 47.065300303927714 ], [ -90.394193272293393, 47.061468150838017 ], [ -90.394193272293393, 47.06086307403438 ], [ -90.39610270587346, 47.057030920944683 ], [ -90.39610270587346, 47.056627536408925 ], [ -90.396375482099188, 47.056224151873167 ], [ -90.400194349259323, 47.047349692086485 ], [ -90.400194349259323, 47.046946307550726 ], [ -90.400467125485051, 47.046744615282847 ], [ -90.400467125485051, 47.046542923014968 ], [ -90.400467125485051, 47.046542923014968 ], [ -90.403194887742288, 47.026777080762834 ], [ -90.403194887742288, 47.026575388494955 ], [ -90.403467663968016, 47.025365234887687 ], [ -90.404013216419457, 47.024961850351929 ], [ -90.405104321322355, 47.023550004476775 ], [ -90.409468740933931, 47.018104313244038 ], [ -90.411923726965455, 47.014877236957972 ], [ -90.413014831868352, 47.013868775618576 ], [ -90.413014831868352, 47.013465391082825 ], [ -90.413560384319794, 47.013263698814946 ], [ -90.425289762025926, 47.007616315314337 ], [ -90.427199195605994, 47.006607853974941 ], [ -90.428290300508891, 47.006204469439183 ], [ -90.428563076734605, 47.006002777171304 ], [ -90.429381405411789, 47.005599392635546 ], [ -90.429654181637517, 47.005599392635546 ], [ -90.44874851743819, 46.999548624599171 ], [ -90.453658489501208, 46.997935086456138 ], [ -90.457477356661343, 46.996724932848871 ], [ -90.464023986078729, 46.994708010170079 ], [ -90.464023986078729, 46.994708010170079 ], [ -90.46538786720734, 47.002574008617358 ], [ -90.46538786720734, 47.002775700885238 ], [ -90.457750132887071, 47.012456929743429 ], [ -90.457477356661343, 47.012860314279187 ], [ -90.457204580435629, 47.013465391082825 ], [ -90.457204580435629, 47.013667083350697 ], [ -90.456659027984188, 47.016692467368884 ] ] ], [ [ [ -90.63669133696196, 46.861389421102089 ], [ -90.636418560736246, 46.861792805637847 ], [ -90.633963574704723, 46.864414805120276 ], [ -90.621961420772863, 46.872885880371186 ], [ -90.616505896258388, 46.874499418514219 ], [ -90.602594308746475, 46.872684188103307 ], [ -90.602594308746475, 46.872684188103307 ], [ -90.602048756295034, 46.872079111299669 ], [ -90.593865469523308, 46.864414805120276 ], [ -90.588137168783106, 46.85876742161966 ], [ -90.587318840105937, 46.857960652548144 ], [ -90.587318840105937, 46.857960652548144 ], [ -90.570133937885331, 46.849691269565106 ], [ -90.569861161659603, 46.849489577297227 ], [ -90.569042832982433, 46.847472654618443 ], [ -90.568770056756705, 46.847270962350564 ], [ -90.569042832982433, 46.847069270082685 ], [ -90.570679490336772, 46.846262501011168 ], [ -90.578317224657042, 46.841623578849948 ], [ -90.578317224657042, 46.841623578849948 ], [ -90.582408868042904, 46.840413425242673 ], [ -90.5845910778487, 46.839808348439036 ], [ -90.585136630300141, 46.839808348439036 ], [ -90.590046602363174, 46.839404963903277 ], [ -90.60123042761785, 46.83879988709964 ], [ -90.603412637423645, 46.838598194831761 ], [ -90.609413714389575, 46.838194810296002 ], [ -90.610232043066745, 46.838194810296002 ], [ -90.613505357775438, 46.837993118028123 ], [ -90.613778134001151, 46.837993118028123 ], [ -90.614323686452593, 46.837791425760244 ], [ -90.625507511707283, 46.834362657206306 ], [ -90.657967882568428, 46.824479736080235 ], [ -90.673788903660409, 46.819639121651143 ], [ -90.676243889691932, 46.819034044847506 ], [ -90.683336071560745, 46.813184969079018 ], [ -90.685791057592269, 46.80491558609598 ], [ -90.67051558895173, 46.79967158713113 ], [ -90.669970036500274, 46.79946989486325 ], [ -90.665332840662984, 46.79946989486325 ], [ -90.655240120311191, 46.799268202595371 ], [ -90.654967344085463, 46.798864818059613 ], [ -90.654421791634007, 46.798663125791734 ], [ -90.652785134279668, 46.797654664452338 ], [ -90.652785134279668, 46.797654664452338 ], [ -90.652239581828226, 46.795032664969909 ], [ -90.652239581828226, 46.794629280434151 ], [ -90.652239581828226, 46.794427588166272 ], [ -90.65251235805394, 46.794024203630514 ], [ -90.653330686731124, 46.793217434558997 ], [ -90.654149015408294, 46.792410665487481 ], [ -90.655240120311191, 46.790998819612327 ], [ -90.655240120311191, 46.790797127344447 ], [ -90.655512896536919, 46.790797127344447 ], [ -90.655512896536919, 46.790595435076568 ], [ -90.655785672762647, 46.790595435076568 ], [ -90.656331225214075, 46.789788666005052 ], [ -90.657149553891259, 46.788780204665663 ], [ -90.658786211245598, 46.788578512397784 ], [ -90.660422868599937, 46.788175127862026 ], [ -90.661241197277121, 46.788175127862026 ], [ -90.661513973502849, 46.787973435594147 ], [ -90.663150630857189, 46.787771743326267 ], [ -90.679517204400611, 46.784948051575967 ], [ -90.687700491172336, 46.783536205700813 ], [ -90.688518819849506, 46.783334513432933 ], [ -90.689337148526675, 46.783334513432933 ], [ -90.691519358332471, 46.782931128897175 ], [ -90.692883239461082, 46.782729436629296 ], [ -90.696429330395503, 46.782124359825659 ], [ -90.696974882846945, 46.782124359825659 ], [ -90.706522050747282, 46.783737897968692 ], [ -90.716341994873346, 46.785351436111718 ], [ -90.723979729193616, 46.7817209752899 ], [ -90.734890778222564, 46.772039746431709 ], [ -90.738709645382698, 46.768610977877771 ], [ -90.739527974059882, 46.768005901074133 ], [ -90.7580767574091, 46.757921287680176 ], [ -90.76244117702069, 46.755500980465634 ], [ -90.763532281923574, 46.754895903661996 ], [ -90.765168939277928, 46.754492519126238 ], [ -90.766532820406553, 46.75408913459048 ], [ -90.771170016243843, 46.753080673251084 ], [ -90.77444333095255, 46.753080673251084 ], [ -90.787809366013022, 46.753282365518963 ], [ -90.787809366013022, 46.753282365518963 ], [ -90.788354918464449, 46.753282365518963 ], [ -90.788627694690177, 46.753282365518963 ], [ -90.788354918464449, 46.753685750054721 ], [ -90.788354918464449, 46.75408913459048 ], [ -90.787536589787294, 46.756711134072908 ], [ -90.785354379981499, 46.764577132520188 ], [ -90.783172170175703, 46.772846515503225 ], [ -90.788900470915905, 46.779098975807472 ], [ -90.789173247141633, 46.77950236034323 ], [ -90.791082680721701, 46.781317590754142 ], [ -90.791082680721701, 46.781519283022021 ], [ -90.791082680721701, 46.782124359825659 ], [ -90.791355456947429, 46.783737897968692 ], [ -90.791355456947429, 46.783939590236571 ], [ -90.791628233173157, 46.784746359308087 ], [ -90.791628233173157, 46.784948051575967 ], [ -90.790264352044531, 46.786158205183234 ], [ -90.781808289047092, 46.788780204665663 ], [ -90.759167862311998, 46.796041126309305 ], [ -90.758622309860556, 46.796242818577184 ], [ -90.745801827251526, 46.798259741255976 ], [ -90.740619078962766, 46.799066510327492 ], [ -90.736527435576917, 46.79967158713113 ], [ -90.733254120868224, 46.800276663934767 ], [ -90.732981344642496, 46.800276663934767 ], [ -90.732708568416783, 46.800478356202646 ], [ -90.729708029933818, 46.803302047952947 ], [ -90.72861692503092, 46.804310509292343 ], [ -90.728344148805206, 46.805722355167489 ], [ -90.728071372579478, 46.809352815989314 ], [ -90.72779859635375, 46.81036127732871 ], [ -90.720979190710651, 46.815806968561446 ], [ -90.712250351487484, 46.820647582990539 ], [ -90.704612617167214, 46.823471274740839 ], [ -90.694519896815436, 46.827101735562664 ], [ -90.683063295335032, 46.831135580920247 ], [ -90.675425561014762, 46.833959272670548 ], [ -90.672970574983253, 46.835169426277822 ], [ -90.656876777665531, 46.84343880926086 ], [ -90.656058448988361, 46.844043886064497 ], [ -90.655785672762647, 46.844245578332377 ], [ -90.655785672762647, 46.844447270600256 ], [ -90.654421791634007, 46.845254039671772 ], [ -90.654421791634007, 46.845254039671772 ], [ -90.651694029376785, 46.847270962350564 ], [ -90.651148476925329, 46.847876039154201 ], [ -90.650875700699601, 46.84807773142208 ], [ -90.647602385990922, 46.850699730904502 ], [ -90.647056833539466, 46.850901423172381 ], [ -90.643237966379331, 46.853926807190561 ], [ -90.637782441864857, 46.859977575226935 ], [ -90.636964113187688, 46.860986036566331 ], [ -90.63669133696196, 46.861389421102089 ] ] ], [ [ [ -90.579681105785667, 46.918266640643949 ], [ -90.593047140846139, 46.915644641161528 ], [ -90.623598078127216, 46.909392180857282 ], [ -90.624689183030114, 46.909190488589402 ], [ -90.625780287932997, 46.908988796321523 ], [ -90.637236889413401, 46.906770181374853 ], [ -90.644056295056515, 46.908383719517886 ], [ -90.644056295056515, 46.908383719517886 ], [ -90.644329071282229, 46.908383719517886 ], [ -90.654694567859735, 46.919275101983345 ], [ -90.654694567859735, 46.919275101983345 ], [ -90.654694567859735, 46.919275101983345 ], [ -90.651966805602513, 46.925325870019719 ], [ -90.651148476925329, 46.926132639091236 ], [ -90.646238504862296, 46.930771561252449 ], [ -90.645420176185127, 46.931981714859724 ], [ -90.644874623733671, 46.932385099395482 ], [ -90.644056295056515, 46.933393560734878 ], [ -90.643237966379331, 46.933998637538508 ], [ -90.634509127156178, 46.94287309732519 ], [ -90.633963574704723, 46.943074789593069 ], [ -90.601775980069306, 46.952150941647616 ], [ -90.60123042761785, 46.952554326183375 ], [ -90.572316147691112, 46.958806786487628 ], [ -90.530581385155358, 46.968084630810054 ], [ -90.528671951575291, 46.968488015345812 ], [ -90.528126399123835, 46.968488015345812 ], [ -90.524853084415156, 46.967882938542175 ], [ -90.523216427060817, 46.967681246274296 ], [ -90.521852545932191, 46.966874477202779 ], [ -90.514760364063363, 46.963042324113083 ], [ -90.51448758783765, 46.963042324113083 ], [ -90.513396482934752, 46.962235555041566 ], [ -90.512850930483296, 46.962033862773687 ], [ -90.512305378031854, 46.961630478237929 ], [ -90.511487049354685, 46.961428785970057 ], [ -90.509850392000345, 46.959008478755507 ], [ -90.509304839548889, 46.95840340195187 ], [ -90.508213734646006, 46.956789863808837 ], [ -90.511214273128957, 46.952957710719133 ], [ -90.524034755737986, 46.93581386794942 ], [ -90.524034755737986, 46.935612175681541 ], [ -90.532763594961153, 46.932586791663361 ], [ -90.53549135721839, 46.931578330323966 ], [ -90.539855776829967, 46.927947869502148 ], [ -90.543674643990101, 46.92290556280517 ], [ -90.543947420215829, 46.918266640643949 ], [ -90.545038525118727, 46.917258179304561 ], [ -90.545856853795897, 46.916653102500923 ], [ -90.549130168504576, 46.915442948893649 ], [ -90.550494049633215, 46.915846333429407 ], [ -90.553221811890438, 46.916653102500923 ], [ -90.557313455276301, 46.918670025179708 ], [ -90.569042832982433, 46.920283563322741 ], [ -90.579681105785667, 46.918266640643949 ] ] ], [ [ [ -87.500037517362657, 45.061084238014487 ], [ -87.498946412459759, 45.061285930282367 ], [ -87.49730975510542, 45.061285930282367 ], [ -87.496491426428236, 45.061084238014487 ], [ -87.495400321525352, 45.060680853478729 ], [ -87.494581992848168, 45.060075776675092 ], [ -87.493490887945285, 45.059067315335696 ], [ -87.492945335493829, 45.058462238532059 ], [ -87.492945335493829, 45.058260546264179 ], [ -87.492672559268101, 45.057857161728421 ], [ -87.492672559268101, 45.057857161728421 ], [ -87.492672559268101, 45.057655469460542 ], [ -87.492672559268101, 45.057655469460542 ], [ -87.492672559268101, 45.057453777192663 ], [ -87.492399783042387, 45.057453777192663 ], [ -87.492399783042387, 45.057252084924784 ], [ -87.492399783042387, 45.056848700389033 ], [ -87.492127006816659, 45.056445315853274 ], [ -87.491854230590945, 45.056243623585395 ], [ -87.491581454365217, 45.056243623585395 ], [ -87.491581454365217, 45.056041931317516 ], [ -87.49130867813949, 45.056041931317516 ], [ -87.490217573236592, 45.055235162245999 ], [ -87.490217573236592, 45.05503346997812 ], [ -87.490217573236592, 45.05503346997812 ], [ -87.490217573236592, 45.05503346997812 ], [ -87.491035901913762, 45.05503346997812 ], [ -87.492672559268101, 45.055840239049637 ], [ -87.494581992848168, 45.056445315853274 ], [ -87.498400860008303, 45.057655469460542 ], [ -87.498673636234031, 45.057857161728421 ], [ -87.498946412459759, 45.057857161728421 ], [ -87.500037517362657, 45.058260546264179 ], [ -87.501674174716996, 45.058663930799938 ], [ -87.504401936974233, 45.059269007603575 ], [ -87.504947489425689, 45.059269007603575 ], [ -87.506038594328572, 45.059470699871454 ], [ -87.506038594328572, 45.059470699871454 ], [ -87.5063113705543, 45.059470699871454 ], [ -87.506038594328572, 45.059672392139333 ], [ -87.506038594328572, 45.059672392139333 ], [ -87.504401936974233, 45.060075776675092 ], [ -87.504401936974233, 45.060075776675092 ], [ -87.503583608297063, 45.060277468942971 ], [ -87.502492503394166, 45.060680853478729 ], [ -87.501674174716996, 45.060882545746608 ], [ -87.500583069814098, 45.061084238014487 ], [ -87.500037517362657, 45.061084238014487 ] ] ], [ [ [ -86.946029002917385, 45.407591554230542 ], [ -86.94302846443442, 45.415255860409943 ], [ -86.94302846443442, 45.415457552677822 ], [ -86.941119030854352, 45.417071090820855 ], [ -86.937300163694218, 45.420903243910558 ], [ -86.93620905879132, 45.421104936178438 ], [ -86.934845177662709, 45.421104936178438 ], [ -86.934299625211253, 45.421104936178438 ], [ -86.934026848985525, 45.420903243910558 ], [ -86.930480758051118, 45.417474475356613 ], [ -86.929116876922507, 45.413844014534789 ], [ -86.928298548245323, 45.411827091855997 ], [ -86.928025772019595, 45.41122201505236 ], [ -86.927752995793881, 45.41122201505236 ], [ -86.917660275442103, 45.407793246498422 ], [ -86.914114184507682, 45.407994938766301 ], [ -86.909749764896105, 45.40819663103418 ], [ -86.902657583027278, 45.408600015569938 ], [ -86.898020387189973, 45.408801707837817 ], [ -86.892837638901227, 45.409003400105696 ], [ -86.883290471000876, 45.412028784123876 ], [ -86.880562708743639, 45.413037245463272 ], [ -86.877562170260674, 45.414045706802668 ], [ -86.865014463877372, 45.412432168659635 ], [ -86.862286701620135, 45.412230476391755 ], [ -86.861468372942966, 45.412028784123876 ], [ -86.861195596717238, 45.412028784123876 ], [ -86.859831715588626, 45.410818630516602 ], [ -86.856012848428492, 45.407793246498422 ], [ -86.853012309945527, 45.405574631551758 ], [ -86.853012309945527, 45.405574631551758 ], [ -86.830371883210432, 45.410818630516602 ], [ -86.830371883210432, 45.411020322784481 ], [ -86.829826330758991, 45.413642322266909 ], [ -86.829280778307549, 45.415457552677822 ], [ -86.829008002081821, 45.416466014017217 ], [ -86.829826330758991, 45.420701551642679 ], [ -86.830099106984719, 45.421710012982075 ], [ -86.830099106984719, 45.422113397517826 ], [ -86.830917435661888, 45.42594555060753 ], [ -86.83064465943616, 45.426147242875402 ], [ -86.828735225856093, 45.428365857822072 ], [ -86.828735225856093, 45.428567550089952 ], [ -86.828189673404651, 45.428365857822072 ], [ -86.821643043987279, 45.427559088750556 ], [ -86.817005848149961, 45.426954011946918 ], [ -86.816733071924247, 45.426752319679039 ], [ -86.81564196702135, 45.42594555060753 ], [ -86.810186442506875, 45.422718474321464 ], [ -86.809913666281147, 45.422315089785705 ], [ -86.806094799121013, 45.413238937731151 ], [ -86.805822022895285, 45.412835553195393 ], [ -86.805822022895285, 45.412633860927514 ], [ -86.805822022895285, 45.411625399588118 ], [ -86.805549246669557, 45.410213553712964 ], [ -86.805549246669557, 45.407389861962663 ], [ -86.808277008926808, 45.405978016087509 ], [ -86.808549785152536, 45.406179708355388 ], [ -86.81482363834418, 45.407389861962663 ], [ -86.815914743247077, 45.407591554230542 ], [ -86.817278624375689, 45.407994938766301 ], [ -86.818096953052873, 45.40819663103418 ], [ -86.819460834181484, 45.407591554230542 ], [ -86.822188596438721, 45.406784785159026 ], [ -86.824370806244517, 45.406179708355388 ], [ -86.82464358247023, 45.405776323819637 ], [ -86.83746406507926, 45.393473095479017 ], [ -86.841555708465123, 45.38964094238932 ], [ -86.853012309945527, 45.370883561476575 ], [ -86.85328508617124, 45.370883561476575 ], [ -86.857376729557103, 45.368463254262025 ], [ -86.858467834460001, 45.367858177458388 ], [ -86.863377806523033, 45.36503448570808 ], [ -86.863650582748761, 45.3648327934402 ], [ -86.863650582748761, 45.3648327934402 ], [ -86.863650582748761, 45.364429408904442 ], [ -86.863650582748761, 45.364429408904442 ], [ -86.864196135200203, 45.362815870761409 ], [ -86.867742226134624, 45.353134641903225 ], [ -86.867742226134624, 45.352932949635345 ], [ -86.866378345005998, 45.345066951188066 ], [ -86.86610556878027, 45.34426018211655 ], [ -86.865560016328828, 45.34123479809837 ], [ -86.865560016328828, 45.341033105830491 ], [ -86.865560016328828, 45.340629721294732 ], [ -86.86610556878027, 45.339822952223216 ], [ -86.869106107263235, 45.333167107383204 ], [ -86.869106107263235, 45.333167107383204 ], [ -86.869378883488963, 45.332965415115325 ], [ -86.872379421971914, 45.331956953775929 ], [ -86.874561631777709, 45.330948492436534 ], [ -86.874834408003437, 45.330948492436534 ], [ -86.875107184229165, 45.330948492436534 ], [ -86.879471603840742, 45.331351876972292 ], [ -86.880562708743639, 45.331553569240171 ], [ -86.887927666838181, 45.332158646043808 ], [ -86.895019848707008, 45.329133262025628 ], [ -86.899384268318585, 45.322679109453503 ], [ -86.896656506061362, 45.307350497094703 ], [ -86.896929282287076, 45.298476037308021 ], [ -86.896929282287076, 45.298274345040141 ], [ -86.899929820770041, 45.295248961021962 ], [ -86.90074814944721, 45.295450653289841 ], [ -86.90156647812438, 45.29565234555772 ], [ -86.904294240381631, 45.296660806897115 ], [ -86.904839792833059, 45.296862499164995 ], [ -86.914114184507682, 45.312191111523795 ], [ -86.925570785988086, 45.324292647596536 ], [ -86.937300163694218, 45.332965415115325 ], [ -86.940846254628624, 45.333772184186842 ], [ -86.941119030854352, 45.333772184186842 ], [ -86.946847331594554, 45.334982337794116 ], [ -86.946847331594554, 45.334982337794116 ], [ -86.94821121272318, 45.335385722329875 ], [ -86.951484527431859, 45.338209414080183 ], [ -86.955030618366266, 45.34123479809837 ], [ -86.955576170817722, 45.341638182634128 ], [ -86.955576170817722, 45.341839874902 ], [ -86.955576170817722, 45.341839874902 ], [ -86.956121723269163, 45.342243259437758 ], [ -86.956121723269163, 45.342243259437758 ], [ -86.956121723269163, 45.343856797580791 ], [ -86.956121723269163, 45.351117719224433 ], [ -86.956121723269163, 45.35192448829595 ], [ -86.954485065914824, 45.353739718706862 ], [ -86.953393961011926, 45.354748180046258 ], [ -86.953393961011926, 45.354748180046258 ], [ -86.94821121272318, 45.355756641385653 ], [ -86.946301779143113, 45.358782025403833 ], [ -86.946574555368827, 45.359790486743229 ], [ -86.946574555368827, 45.359992179011108 ], [ -86.946847331594554, 45.36180740942202 ], [ -86.947120107820268, 45.364026024368684 ], [ -86.947392884045996, 45.366446331583234 ], [ -86.947665660271724, 45.366648023851113 ], [ -86.947665660271724, 45.366849716118992 ], [ -86.948756765174622, 45.369270023333542 ], [ -86.948756765174622, 45.369270023333542 ], [ -86.948756765174622, 45.369270023333542 ], [ -86.955030618366266, 45.383186789817188 ], [ -86.955303394591994, 45.383791866620825 ], [ -86.954212289689096, 45.386010481567496 ], [ -86.953666737237654, 45.38742232744265 ], [ -86.951757303657587, 45.392464634139621 ], [ -86.951211751206131, 45.394078172282647 ], [ -86.947392884045996, 45.404162785676604 ], [ -86.947120107820268, 45.404767862480242 ], [ -86.946847331594554, 45.405372939283879 ], [ -86.946029002917385, 45.407591554230542 ] ] ], [ [ [ -87.800364141884685, 42.49192812977229 ], [ -87.800636918110399, 42.49192812977229 ], [ -87.815912386750938, 42.49192812977229 ], [ -87.843462785549065, 42.492331514308049 ], [ -87.900200240499629, 42.492936591111686 ], [ -87.971394835413577, 42.493945052451082 ], [ -87.990216394988522, 42.494550129254719 ], [ -88.049681612196338, 42.495356898326236 ], [ -88.199435760118774, 42.495961975129873 ], [ -88.200254088795944, 42.495961975129873 ], [ -88.216893438565108, 42.495961975129873 ], [ -88.271721459935605, 42.494751821522598 ], [ -88.304727383248206, 42.494751821522598 ], [ -88.41738396447218, 42.494550129254719 ], [ -88.461300936813728, 42.494550129254719 ], [ -88.470575328488337, 42.494751821522598 ], [ -88.506854566509617, 42.494953513790477 ], [ -88.707345092416702, 42.493541667915324 ], [ -88.707345092416702, 42.493541667915324 ], [ -88.776630253750582, 42.493945052451082 ], [ -88.940295989184932, 42.494953513790477 ], [ -88.940295989184932, 42.494953513790477 ], [ -88.943296527667883, 42.495155206058357 ], [ -88.99266902452392, 42.495961975129873 ], [ -88.992941800749648, 42.495961975129873 ], [ -89.013672793904661, 42.496163667397752 ], [ -89.013672793904661, 42.496163667397752 ], [ -89.042859850057113, 42.496163667397752 ], [ -89.071228577532409, 42.496163667397752 ], [ -89.09905175255625, 42.496567051933511 ], [ -89.117054983454025, 42.496970436469269 ], [ -89.120328298162718, 42.496970436469269 ], [ -89.125238270225736, 42.496970436469269 ], [ -89.164790822955709, 42.497373821005027 ], [ -89.16670025653579, 42.497172128737148 ], [ -89.226165473743592, 42.497978897808665 ], [ -89.228347683549387, 42.497978897808665 ], [ -89.246896466898619, 42.498180590076544 ], [ -89.250715334058754, 42.497978897808665 ], [ -89.290813439240168, 42.498785666880181 ], [ -89.361462481702659, 42.499995820487456 ], [ -89.366099677539964, 42.500197512755335 ], [ -89.401287810658346, 42.500399205023214 ], [ -89.401560586884074, 42.500399205023214 ], [ -89.420927698910475, 42.500600897291093 ], [ -89.422564356264814, 42.500600897291093 ], [ -89.423928237393426, 42.500802589558972 ], [ -89.425292118522052, 42.500802589558972 ], [ -89.484211783278425, 42.50140766636261 ], [ -89.49266784627585, 42.501609358630489 ], [ -89.493213398727306, 42.501609358630489 ], [ -89.5226732311055, 42.501811050898368 ], [ -89.564407993641254, 42.502617819969885 ], [ -89.594686154696603, 42.503424589041394 ], [ -89.599868902985349, 42.503626281309273 ], [ -89.60341499391977, 42.503626281309273 ], [ -89.613507714271549, 42.504029665845032 ], [ -89.644058651552626, 42.50443305038079 ], [ -89.650332504744284, 42.504634742648669 ], [ -89.66751740696489, 42.505038127184427 ], [ -89.690157833699971, 42.505239819452306 ], [ -89.693431148408663, 42.505038127184427 ], [ -89.742530869038973, 42.505441511720186 ], [ -89.769535715385643, 42.505239819452306 ], [ -89.780173988188864, 42.505441511720186 ], [ -89.794085575700791, 42.505441511720186 ], [ -89.799813876440993, 42.505441511720186 ], [ -89.801996086246788, 42.505441511720186 ], [ -89.837456995590884, 42.505643203988065 ], [ -89.926109268951166, 42.505844896255944 ], [ -89.926382045176894, 42.505844896255944 ], [ -89.926382045176894, 42.505844896255944 ], [ -89.985028933707525, 42.506449973059581 ], [ -89.985574486158981, 42.506449973059581 ], [ -89.997303863865113, 42.50685335759534 ], [ -89.999213297445181, 42.50685335759534 ], [ -90.016943752117228, 42.507055049863219 ], [ -90.018580409471568, 42.507256742131098 ], [ -90.093048319094208, 42.508063511202607 ], [ -90.094957752674276, 42.507861818934728 ], [ -90.142966368401673, 42.508063511202607 ], [ -90.164242914008142, 42.508265203470486 ], [ -90.181700592454462, 42.508063511202607 ], [ -90.20597767654391, 42.507660126666849 ], [ -90.223162578764516, 42.507861818934728 ], [ -90.250712977562614, 42.50745843439897 ], [ -90.253167963594137, 42.507256742131098 ], [ -90.267079551106065, 42.507660126666849 ], [ -90.269261760911846, 42.507660126666849 ], [ -90.272807851846267, 42.50745843439897 ], [ -90.303904341578786, 42.50745843439897 ], [ -90.362551230109432, 42.507055049863219 ], [ -90.368006754623906, 42.507055049863219 ], [ -90.370734516881143, 42.507055049863219 ], [ -90.405922649999525, 42.50685335759534 ], [ -90.426380866928824, 42.507055049863219 ], [ -90.437019139732058, 42.507055049863219 ], [ -90.474935035107677, 42.50745843439897 ], [ -90.479572230944996, 42.50745843439897 ], [ -90.491847161102555, 42.507660126666849 ], [ -90.532218042509697, 42.507660126666849 ], [ -90.544220196441557, 42.507660126666849 ], [ -90.544765748893013, 42.507660126666849 ], [ -90.551039602084643, 42.507660126666849 ], [ -90.555949574147689, 42.50745843439897 ], [ -90.565496742048026, 42.507660126666849 ], [ -90.614596462678321, 42.508063511202607 ], [ -90.617597001161286, 42.508063511202607 ], [ -90.641055756573536, 42.508265203470486 ], [ -90.636964113187688, 42.513105817899586 ], [ -90.63669133696196, 42.518753201400202 ], [ -90.645692952410855, 42.544166427152945 ], [ -90.702703183587147, 42.630692410073024 ], [ -90.709249813004533, 42.636138101305747 ], [ -90.720160862033481, 42.640777023466967 ], [ -90.769533358889504, 42.651466713664554 ], [ -90.84400126851213, 42.663164865201537 ], [ -90.896919856302588, 42.674459632202755 ], [ -90.949292891641562, 42.685552706936093 ], [ -90.976297737988233, 42.696040704865801 ], [ -91.053766186093839, 42.738194388852506 ], [ -91.064950011348515, 42.75735515430101 ], [ -91.069587207185819, 42.769658382641623 ], [ -91.07777049395753, 42.803744375913169 ], [ -91.100683696918338, 42.8830094371896 ], [ -91.117323046687503, 42.89591774233385 ], [ -91.143509564357004, 42.904590509852646 ], [ -91.145691774162799, 42.908019278406591 ], [ -91.163149452609119, 42.986880955147264 ], [ -91.175151606540965, 43.041337867474581 ], [ -91.178152145023944, 43.062112171066119 ], [ -91.17733381634676, 43.080264475175227 ], [ -91.178152145023944, 43.125040158644353 ], [ -91.175151606540965, 43.134721387502537 ], [ -91.156330046966019, 43.142990770485582 ], [ -91.146237326614241, 43.152470307075887 ], [ -91.062495025316991, 43.243231827621422 ], [ -91.057857829479687, 43.255333363694163 ], [ -91.085681004503527, 43.291839664180252 ], [ -91.107230326335724, 43.313622429111177 ], [ -91.210339739659361, 43.372113186796078 ], [ -91.205429767596328, 43.422939638301571 ], [ -91.217704697753902, 43.500591161434976 ], [ -91.265167761029858, 43.609908370625369 ], [ -91.268713851964279, 43.615354061858099 ], [ -91.273351047801583, 43.66839912831027 ], [ -91.268168299512837, 43.726486501459405 ], [ -91.262439998772635, 43.792238180787947 ], [ -91.284262096830531, 43.847098477651031 ], [ -91.298719236793914, 43.856578014241336 ], [ -91.310994166951474, 43.867469396706802 ], [ -91.363367202290476, 43.92656523119534 ], [ -91.420104657241041, 43.984249219808717 ], [ -91.432652363624356, 43.996754140417217 ], [ -91.437289559461647, 43.999981216703276 ], [ -91.463476077131162, 44.009057368757837 ], [ -91.506029168344085, 44.018738597616021 ], [ -91.546945602202669, 44.022167366169967 ], [ -91.559220532360257, 44.023982596580879 ], [ -91.57995152551527, 44.027007980599059 ], [ -91.591953679447116, 44.031445210492393 ], [ -91.672422666035672, 44.091347814052448 ], [ -91.721522386665981, 44.130274421753086 ], [ -91.740889498692383, 44.13390488257491 ], [ -91.807992450220468, 44.159318108327653 ], [ -91.862820471590965, 44.193000717063441 ], [ -91.875095401748538, 44.200665023242848 ], [ -91.892825856420586, 44.23112055569257 ], [ -91.893098632646314, 44.235154401050153 ], [ -91.887915884357568, 44.24644916805137 ], [ -91.887097555680384, 44.252499936087737 ], [ -91.918739597864374, 44.322688845309614 ], [ -91.925559003507459, 44.33358022777508 ], [ -91.963474898883092, 44.362018837546017 ], [ -91.972476514331987, 44.36685945197511 ], [ -92.046398871503158, 44.39449129267453 ], [ -92.084041990653063, 44.406189444211506 ], [ -92.11541125661131, 44.41607236533757 ], [ -92.22097565596647, 44.440477129750931 ], [ -92.233796138575485, 44.446326205519419 ], [ -92.241979425347211, 44.454192203966699 ], [ -92.276894782239879, 44.473554661683082 ], [ -92.291079145977506, 44.485454505487937 ], [ -92.302262971232196, 44.500379733310979 ], [ -92.303081299909365, 44.518733729687966 ], [ -92.313992348938314, 44.538096187404349 ], [ -92.316447334969837, 44.540718186886771 ], [ -92.319993425904244, 44.544953724512226 ], [ -92.328995041353139, 44.550802800280721 ], [ -92.340178866607815, 44.555240030174062 ], [ -92.357363768828435, 44.558467106460121 ], [ -92.491842448110305, 44.565929720371642 ], [ -92.534122763097514, 44.570366950264983 ], [ -92.549671007963781, 44.576014333765592 ], [ -92.619774497974831, 44.629261092485635 ], [ -92.621683931554898, 44.638942321343826 ], [ -92.632049428132405, 44.649026934737776 ], [ -92.73215830297309, 44.713770152726923 ], [ -92.737341051261836, 44.717198921280861 ], [ -92.802534569209854, 44.74523414651604 ], [ -92.802261792984126, 44.745637531051798 ], [ -92.784531338312078, 44.794043675342749 ], [ -92.765437002511405, 44.836197359329446 ], [ -92.761890911576984, 44.86080381601068 ], [ -92.76161813535127, 44.862013969617955 ], [ -92.750707086322308, 44.93724518553681 ], [ -92.768710317220098, 45.008039171562324 ], [ -92.79107796772945, 45.045755625655687 ], [ -92.792987401309517, 45.078429773052079 ], [ -92.767073659865744, 45.194201134814605 ], [ -92.765982554962847, 45.210134823977043 ], [ -92.760527030448372, 45.278911887323765 ], [ -92.751798191225205, 45.29262696153954 ], [ -92.746069890485003, 45.296055730093478 ], [ -92.732703855424532, 45.304123420808637 ], [ -92.704880680400692, 45.3265112625432 ], [ -92.664237022767821, 45.393271403211138 ], [ -92.680330820085544, 45.464267081504531 ], [ -92.72615722600716, 45.531027222172469 ], [ -92.803352897887024, 45.562491215961586 ], [ -92.823265562364867, 45.560877677818553 ], [ -92.87100140186655, 45.567533522658557 ], [ -92.88382188447558, 45.575399521105837 ], [ -92.886549646732817, 45.594963671090099 ], [ -92.888186304087156, 45.628444587558008 ], [ -92.885731318055647, 45.644176584452566 ], [ -92.884094660701308, 45.654866274650146 ], [ -92.869091968286483, 45.717592569960502 ], [ -92.863636443772009, 45.721828107585964 ], [ -92.840996017036929, 45.730097490569001 ], [ -92.80389845033848, 45.749863332821135 ], [ -92.784531338312078, 45.76418348384054 ], [ -92.76843754099437, 45.798067784844207 ], [ -92.76243646402844, 45.819245472971502 ], [ -92.734067736553158, 45.868055001798211 ], [ -92.721247253944128, 45.88378699869277 ], [ -92.707608442657943, 45.894880073426108 ], [ -92.65605373599611, 45.924528836804313 ], [ -92.443288279931465, 46.014685280546217 ], [ -92.326812831547343, 46.066520193391106 ], [ -92.306627390843772, 46.072369269159594 ], [ -92.294079684460485, 46.074386191838386 ], [ -92.294079684460485, 46.078420037195968 ], [ -92.293534132009029, 46.113917876342661 ], [ -92.293806908234757, 46.157281713936641 ], [ -92.293806908234757, 46.166761250526946 ], [ -92.293806908234757, 46.180072940206955 ], [ -92.293534132009029, 46.224646931408209 ], [ -92.293534132009029, 46.244009389124585 ], [ -92.292988579557573, 46.295037532897965 ], [ -92.292988579557573, 46.298062916916152 ], [ -92.292715803331859, 46.304315377220398 ], [ -92.292715803331859, 46.307139068970706 ], [ -92.292988579557573, 46.31379491381071 ], [ -92.292715803331859, 46.314601682882227 ], [ -92.292715803331859, 46.319240605043447 ], [ -92.292988579557573, 46.321862604525869 ], [ -92.292988579557573, 46.417263047232616 ], [ -92.292715803331859, 46.420893508054434 ], [ -92.292715803331859, 46.431986582787786 ], [ -92.292443027106131, 46.478779188935704 ], [ -92.292443027106131, 46.495519647169658 ], [ -92.291624698428961, 46.604635164092173 ], [ -92.291624698428961, 46.625006083147944 ], [ -92.292170250880417, 46.663327614044945 ], [ -92.277167558465592, 46.655663307865552 ], [ -92.276349229788423, 46.655259923329794 ], [ -92.274439796208355, 46.654251461990398 ], [ -92.270075376596765, 46.651831154775849 ], [ -92.264347075856563, 46.65142777024009 ], [ -92.262437642276495, 46.651226077972211 ], [ -92.256709341536293, 46.650621001168574 ], [ -92.254254355504784, 46.650419308900695 ], [ -92.250981040796091, 46.650015924364936 ], [ -92.242524977798666, 46.64920915529342 ], [ -92.234887243478383, 46.649410847561299 ], [ -92.232705033672602, 46.649410847561299 ], [ -92.231886704995418, 46.649410847561299 ], [ -92.228067837835283, 46.649612539829178 ], [ -92.222339537095081, 46.649612539829178 ], [ -92.221793984643639, 46.649814232097057 ], [ -92.212519592969016, 46.650015924364936 ], [ -92.207064068454542, 46.652032847043728 ], [ -92.202426872617238, 46.655058231061915 ], [ -92.197244124328478, 46.663327614044945 ], [ -92.191515823588276, 46.672605458367386 ], [ -92.190970271136834, 46.673210535171016 ], [ -92.187696956428141, 46.678857918671625 ], [ -92.187696956428141, 46.690152685672849 ], [ -92.193425257168343, 46.695194992369821 ], [ -92.193970809619799, 46.696606838244975 ], [ -92.194516362071255, 46.697615299584371 ], [ -92.196698571877036, 46.702052529477712 ], [ -92.196425795651322, 46.702859298549228 ], [ -92.196153019425594, 46.703867759888624 ], [ -92.19533469074841, 46.709716835657105 ], [ -92.189060837556767, 46.717582834104391 ], [ -92.172967040239058, 46.724440371212275 ], [ -92.170512054207535, 46.725650524819542 ], [ -92.116502361514208, 46.74864344335775 ], [ -92.089497515167537, 46.749248520161387 ], [ -92.034123941345584, 46.708910066585588 ], [ -92.024849549670961, 46.705682990299529 ], [ -92.020212353833671, 46.704069452156503 ], [ -92.015302381770624, 46.706489759371046 ], [ -92.007937423676083, 46.705077913495892 ], [ -91.98802475919824, 46.692774685155278 ], [ -91.973294843009143, 46.686522224851032 ], [ -91.961838241528739, 46.682488379493449 ], [ -91.943016681953793, 46.679866380011021 ], [ -91.930196199344778, 46.68228668722557 ], [ -91.887097555680384, 46.690152685672849 ], [ -91.878641492682959, 46.690757762476487 ], [ -91.877277611554334, 46.690959454744366 ], [ -91.876186506651436, 46.690959454744366 ], [ -91.874822625522825, 46.691161147012245 ], [ -91.866639338751099, 46.691766223815883 ], [ -91.864457128945304, 46.691766223815883 ], [ -91.857364947076491, 46.69237130061952 ], [ -91.840180044855884, 46.689749301137091 ], [ -91.831451205632717, 46.68995099340497 ], [ -91.819994604152313, 46.690152685672849 ], [ -91.817266841895076, 46.690556070208608 ], [ -91.816994065669348, 46.690556070208608 ], [ -91.814539079637825, 46.690959454744366 ], [ -91.80008193967447, 46.693178069691029 ], [ -91.798445282320131, 46.693379761958909 ], [ -91.790534771774134, 46.694589915566183 ], [ -91.790261995548406, 46.694589915566183 ], [ -91.781805932550952, 46.697615299584371 ], [ -91.75861995336443, 46.705884682567408 ], [ -91.749618337915535, 46.709111758853467 ], [ -91.748800009238366, 46.709313451121346 ], [ -91.735706750403622, 46.712540527407413 ], [ -91.677059861872976, 46.727062370694696 ], [ -91.675695980744365, 46.727264062962576 ], [ -91.66751269397264, 46.729280985641367 ], [ -91.662329945683894, 46.730491139248642 ], [ -91.66069328832954, 46.731096216052279 ], [ -91.658783854749473, 46.731499600588037 ], [ -91.652782777783557, 46.732911446463191 ], [ -91.646236148366171, 46.734524984606225 ], [ -91.645417819689001, 46.734726676874104 ], [ -91.636961756691562, 46.737752060892284 ], [ -91.636143428014392, 46.738155445428042 ], [ -91.635870651788665, 46.738155445428042 ], [ -91.635052323111495, 46.738357137695921 ], [ -91.635052323111495, 46.738357137695921 ], [ -91.625505155211158, 46.741987598517738 ], [ -91.593317560575741, 46.753282365518963 ], [ -91.592772008124285, 46.753685750054721 ], [ -91.592226455672844, 46.753887442322601 ], [ -91.59058979831849, 46.754290826858359 ], [ -91.576678210806577, 46.75711451860866 ], [ -91.574223224775068, 46.757517903144418 ], [ -91.57395044854934, 46.757517903144418 ], [ -91.571495462517817, 46.757316210876539 ], [ -91.569040476486308, 46.75711451860866 ], [ -91.557583875005903, 46.756106057269271 ], [ -91.55131002181426, 46.755702672733513 ], [ -91.55131002181426, 46.755702672733513 ], [ -91.543126735042534, 46.755097595929875 ], [ -91.53767121052806, 46.754895903661996 ], [ -91.537125658076604, 46.754694211394117 ], [ -91.535761776947993, 46.754895903661996 ], [ -91.524850727919031, 46.756106057269271 ], [ -91.517758546050203, 46.756711134072908 ], [ -91.511211916632845, 46.757517903144418 ], [ -91.51066636418139, 46.757517903144418 ], [ -91.507938601924153, 46.758526364483814 ], [ -91.507665825698425, 46.758526364483814 ], [ -91.507120273246983, 46.758728056751693 ], [ -91.500028091378155, 46.761148363966242 ], [ -91.499755315152441, 46.761148363966242 ], [ -91.493754238186511, 46.765787286127463 ], [ -91.492935909509328, 46.766190670663221 ], [ -91.492390357057886, 46.766594055198979 ], [ -91.492390357057886, 46.766594055198979 ], [ -91.491844804606444, 46.766795747466858 ], [ -91.489117042349193, 46.766997439734737 ], [ -91.488298713672037, 46.766997439734737 ], [ -91.472204916354315, 46.76881267014565 ], [ -91.470295482774247, 46.76881267014565 ], [ -91.470022706548519, 46.769014362413529 ], [ -91.467294944291297, 46.769619439217159 ], [ -91.462657748453978, 46.770426208288676 ], [ -91.449564489619235, 46.773249900038977 ], [ -91.449291713393507, 46.773249900038977 ], [ -91.437016783235933, 46.777485437664438 ], [ -91.428560720238494, 46.780510821682626 ], [ -91.426378510432698, 46.781115898486263 ], [ -91.423650748175461, 46.782124359825659 ], [ -91.411921370469329, 46.789586973737173 ], [ -91.398282559183144, 46.791200511880206 ], [ -91.397191454280232, 46.790998819612327 ], [ -91.396918678054519, 46.790998819612327 ], [ -91.396373125603077, 46.790998819612327 ], [ -91.394736468248723, 46.790595435076568 ], [ -91.39146315354003, 46.79019205054081 ], [ -91.390644824862875, 46.790393742808689 ], [ -91.386280405251284, 46.790998819612327 ], [ -91.380552104511082, 46.792007280951722 ], [ -91.369368279256406, 46.793822511362634 ], [ -91.36882272680495, 46.793822511362634 ], [ -91.367458845676339, 46.794629280434151 ], [ -91.366913293224883, 46.79483097270203 ], [ -91.366094964547713, 46.795436049505668 ], [ -91.365549412096271, 46.795637741773547 ], [ -91.365276635870543, 46.795637741773547 ], [ -91.363639978516204, 46.796646203112942 ], [ -91.360912216258953, 46.798058048988096 ], [ -91.359548335130341, 46.79967158713113 ], [ -91.355456691744479, 46.804108817024463 ], [ -91.3521833770358, 46.807335893310523 ], [ -91.338271789523873, 46.817622198972352 ], [ -91.337453460846703, 46.81802558350811 ], [ -91.330361278977875, 46.820647582990539 ], [ -91.330361278977875, 46.820647582990539 ], [ -91.328724621623536, 46.821454352062048 ], [ -91.325996859366299, 46.822462813401444 ], [ -91.322177992206164, 46.823874659276598 ], [ -91.321086887303267, 46.824479736080235 ], [ -91.315085810337337, 46.826698351026906 ], [ -91.314813034111609, 46.826900043294785 ], [ -91.307175299791339, 46.828916965973576 ], [ -91.305538642437, 46.829522042777214 ], [ -91.304447537534116, 46.829723735045093 ], [ -91.303629208856933, 46.829925427312972 ], [ -91.302265327728321, 46.83032881184873 ], [ -91.301992551502593, 46.83032881184873 ], [ -91.289444845119291, 46.831538965456005 ], [ -91.278533796090329, 46.83274911906328 ], [ -91.266531642158483, 46.833959272670548 ], [ -91.265986089707042, 46.833959272670548 ], [ -91.265713313481314, 46.833959272670548 ], [ -91.263803879901246, 46.834564349474185 ], [ -91.263531103675518, 46.834766041742064 ], [ -91.256984474258147, 46.836782964420856 ], [ -91.256711698032433, 46.836984656688735 ], [ -91.256438921806705, 46.836984656688735 ], [ -91.250710621066503, 46.841220194314189 ], [ -91.249346739937877, 46.842430347921464 ], [ -91.237617362231759, 46.854733576262078 ], [ -91.235162376200236, 46.857355575744506 ], [ -91.232707390168713, 46.859977575226935 ], [ -91.226706313202783, 46.86360803604876 ], [ -91.214976935496665, 46.866230035531181 ], [ -91.211703620787972, 46.866835112334819 ], [ -91.21115806833653, 46.86663342006694 ], [ -91.207611977402109, 46.865826650995423 ], [ -91.204884215144887, 46.859775882959056 ], [ -91.204338662693431, 46.85876742161966 ], [ -91.19997424308184, 46.853926807190561 ], [ -91.178424921249658, 46.844245578332377 ], [ -91.168332200897879, 46.844648962868135 ], [ -91.167513872220695, 46.844850655136014 ], [ -91.156057270740291, 46.855338653065715 ], [ -91.148146760194308, 46.863002959245122 ], [ -91.14787398396858, 46.863002959245122 ], [ -91.144327893034173, 46.870263880888757 ], [ -91.143782340582732, 46.870667265424515 ], [ -91.143782340582732, 46.870667265424515 ], [ -91.140236249648311, 46.873087572639065 ], [ -91.140236249648311, 46.873289264906944 ], [ -91.139690697196869, 46.873087572639065 ], [ -91.134780725133837, 46.872482495835428 ], [ -91.133689620230939, 46.871070649960274 ], [ -91.133416844005211, 46.870263880888757 ], [ -91.133689620230939, 46.869255419549368 ], [ -91.134235172682395, 46.867843573674214 ], [ -91.134780725133837, 46.866230035531181 ], [ -91.134780725133837, 46.865826650995423 ], [ -91.136417382488176, 46.860986036566331 ], [ -91.13505350135955, 46.858969113887539 ], [ -91.13505350135955, 46.858969113887539 ], [ -91.134780725133837, 46.858969113887539 ], [ -91.123596899879146, 46.856347114405111 ], [ -91.123051347427705, 46.856145422137232 ], [ -91.1184141515904, 46.85654880667299 ], [ -91.107230326335724, 46.857557268012386 ], [ -91.105593668981385, 46.857557268012386 ], [ -91.098774263338271, 46.860582652030573 ], [ -91.098228710886829, 46.860784344298452 ], [ -91.098228710886829, 46.860784344298452 ], [ -91.097683158435387, 46.86118772883421 ], [ -91.096592053532476, 46.861591113369968 ], [ -91.096319277306762, 46.863002959245122 ], [ -91.096046501081034, 46.865019881923914 ], [ -91.094955396178136, 46.871272342228153 ], [ -91.094955396178136, 46.872684188103307 ], [ -91.094682619952408, 46.873289264906944 ], [ -91.094682619952408, 46.874096033978461 ], [ -91.094409843726694, 46.874902803049977 ], [ -91.094137067500967, 46.877323110264527 ], [ -91.093591515049525, 46.879945109746956 ], [ -91.090863752792274, 46.882768801497257 ], [ -91.088681542986492, 46.882970493765136 ], [ -91.085135452052072, 46.883172186033015 ], [ -91.081043808666223, 46.883575570568773 ], [ -91.072587745668784, 46.880146802014835 ], [ -91.069314430960091, 46.878734956139681 ], [ -91.068223326057193, 46.878331571603923 ], [ -91.066313892477126, 46.878734956139681 ], [ -91.056221172125348, 46.880751878818472 ], [ -91.052947857416655, 46.881356955622103 ], [ -91.050220095159418, 46.882970493765136 ], [ -91.04912899025652, 46.883575570568773 ], [ -91.04912899025652, 46.883575570568773 ], [ -91.04312791329059, 46.88740772365847 ], [ -91.039854598581911, 46.889222954069382 ], [ -91.036581283873232, 46.893660183962723 ], [ -91.036308507647504, 46.895475414373635 ], [ -91.036035731421777, 46.89668556798091 ], [ -91.034399074067437, 46.903139720553028 ], [ -91.033580745390253, 46.903543105088787 ], [ -91.03248964048737, 46.904148181892424 ], [ -91.030580206907302, 46.90515664323182 ], [ -91.024033577489917, 46.908787104053644 ], [ -91.024033577489917, 46.908787104053644 ], [ -91.021578591458407, 46.910198949928798 ], [ -91.01966915787834, 46.911207411268194 ], [ -91.019123605426898, 46.911409103536073 ], [ -91.018032500524001, 46.911812488071831 ], [ -91.018032500524001, 46.911812488071831 ], [ -91.016123066943919, 46.912417564875469 ], [ -91.016123066943919, 46.912417564875469 ], [ -91.010667542429445, 46.914434487554253 ], [ -91.007939780172222, 46.915241256625769 ], [ -91.005757570366427, 46.916048025697286 ], [ -91.005212017914971, 46.916249717965165 ], [ -91.004939241689243, 46.916249717965165 ], [ -91.004666465463515, 46.916249717965165 ], [ -90.998938164723313, 46.916048025697286 ], [ -90.99784705982043, 46.916451410233044 ], [ -90.996755954917532, 46.916854794768803 ], [ -90.995119297563178, 46.917661563840312 ], [ -90.986936010791467, 46.923712331876686 ], [ -90.98584490588857, 46.924720793216082 ], [ -90.984481024759958, 46.925527562287598 ], [ -90.983117143631333, 46.927746177234269 ], [ -90.980116605148368, 46.931981714859724 ], [ -90.973842751956724, 46.941259559182157 ], [ -90.968387227442236, 46.943881558664586 ], [ -90.964841136507829, 46.943679866396707 ], [ -90.964022807830659, 46.943276481860948 ], [ -90.954475639930322, 46.938435867431849 ], [ -90.954475639930322, 46.938435867431849 ], [ -90.953930087478881, 46.93823417516397 ], [ -90.953657311253153, 46.93823417516397 ], [ -90.940564052418409, 46.935410483413662 ], [ -90.922015269069178, 46.931376638056086 ], [ -90.921742492843464, 46.931376638056086 ], [ -90.921469716617736, 46.931376638056086 ], [ -90.914104758523195, 46.933393560734878 ], [ -90.913831982297467, 46.933393560734878 ], [ -90.908649234008706, 46.941259559182157 ], [ -90.908649234008706, 46.941259559182157 ], [ -90.88028050653341, 46.957596632880353 ], [ -90.879734954081982, 46.958000017416111 ], [ -90.877279968050459, 46.959008478755507 ], [ -90.877279968050459, 46.959008478755507 ], [ -90.877007191824731, 46.959008478755507 ], [ -90.876734415599003, 46.959008478755507 ], [ -90.876461639373275, 46.959210171023386 ], [ -90.876188863147561, 46.959210171023386 ], [ -90.876188863147561, 46.959210171023386 ], [ -90.875916086921848, 46.959411863291265 ], [ -90.875916086921848, 46.959411863291265 ], [ -90.87564331069612, 46.959613555559145 ], [ -90.871006114858801, 46.961227093702178 ], [ -90.85600342244399, 46.962235555041566 ], [ -90.855185093766821, 46.962033862773687 ], [ -90.838818520223384, 46.957798325148232 ], [ -90.838000191546215, 46.957596632880353 ], [ -90.837727415320487, 46.957394940612474 ], [ -90.837727415320487, 46.957394940612474 ], [ -90.833090219483182, 46.954772941130045 ], [ -90.804994268233628, 46.938032482896091 ], [ -90.78671826111011, 46.926939408162752 ], [ -90.786445484884382, 46.926939408162752 ], [ -90.785899932432955, 46.926737715894873 ], [ -90.785627156207227, 46.926334331359115 ], [ -90.759986190989167, 46.903341412820907 ], [ -90.759440638537725, 46.902534643749391 ], [ -90.755621771377591, 46.899307567463332 ], [ -90.754530666474693, 46.898299106123936 ], [ -90.754257890248965, 46.898097413856057 ], [ -90.752621232894626, 46.895677106641514 ], [ -90.751257351766014, 46.893660183962723 ], [ -90.750984575540286, 46.893256799426965 ], [ -90.750984575540286, 46.893055107159086 ], [ -90.750984575540286, 46.892651722623327 ], [ -90.750984575540286, 46.89204664581969 ], [ -90.750984575540286, 46.890231415408778 ], [ -90.750984575540286, 46.888012800462107 ], [ -90.751257351766014, 46.887811108194228 ], [ -90.754803442700421, 46.884987416443927 ], [ -90.754803442700421, 46.884785724176048 ], [ -90.754803442700421, 46.884785724176048 ], [ -90.761350072117793, 46.883172186033015 ], [ -90.761622848343507, 46.883172186033015 ], [ -90.77007891134096, 46.876314648925131 ], [ -90.770351687566688, 46.876112956657252 ], [ -90.780989960369908, 46.858969113887539 ], [ -90.780989960369908, 46.858969113887539 ], [ -90.788082142238736, 46.844850655136014 ], [ -90.79190100939887, 46.836984656688735 ], [ -90.793810442978938, 46.833555888134789 ], [ -90.795719876559005, 46.829522042777214 ], [ -90.795992652784733, 46.829118658241455 ], [ -90.796538205236175, 46.82811019690206 ], [ -90.797356533913359, 46.826294966491147 ], [ -90.798447638816242, 46.823874659276598 ], [ -90.798993191267698, 46.823067890205081 ], [ -90.801175401073493, 46.821656044329927 ], [ -90.801448177299207, 46.821454352062048 ], [ -90.809358687845204, 46.815605276293567 ], [ -90.821906394228506, 46.806529124239006 ], [ -90.825725261388641, 46.803907124756584 ], [ -90.826270813840082, 46.802091894345672 ], [ -90.82736191874298, 46.799268202595371 ], [ -90.82818024742015, 46.797452972184459 ], [ -90.82899857609732, 46.796444510845063 ], [ -90.829816904774503, 46.795436049505668 ], [ -90.830089681000217, 46.795436049505668 ], [ -90.831726338354571, 46.793822511362634 ], [ -90.83499965306325, 46.790393742808689 ], [ -90.83499965306325, 46.790393742808689 ], [ -90.835272429288977, 46.789990358272931 ], [ -90.835545205514705, 46.789788666005052 ], [ -90.847274583220823, 46.789183589201414 ], [ -90.854912317541093, 46.788981896933542 ], [ -90.855457869992534, 46.788981896933542 ], [ -90.855730646218262, 46.788981896933542 ], [ -90.856276198669718, 46.788981896933542 ], [ -90.856548974895446, 46.788981896933542 ], [ -90.856548974895446, 46.788780204665663 ], [ -90.860095065829853, 46.784746359308087 ], [ -90.86364115676426, 46.780510821682626 ], [ -90.859822289604125, 46.774460053646251 ], [ -90.859549513378397, 46.774056669110493 ], [ -90.860913394507023, 46.771031285092313 ], [ -90.862277275635648, 46.768207593342012 ], [ -90.866368919021497, 46.764577132520188 ], [ -90.866641695247225, 46.764375440252309 ], [ -90.866641695247225, 46.764375440252309 ], [ -90.874552205793208, 46.760946671698363 ], [ -90.875916086921848, 46.760341594894726 ], [ -90.884917702370728, 46.75630774953715 ], [ -90.883553821242117, 46.747231597482596 ], [ -90.883281045016389, 46.747029905214717 ], [ -90.882189940113477, 46.744609598000167 ], [ -90.88164438766205, 46.743802828928651 ], [ -90.878916625404798, 46.7385588299638 ], [ -90.878371072953342, 46.737752060892284 ], [ -90.876461639373275, 46.734524984606225 ], [ -90.876461639373275, 46.734323292338345 ], [ -90.876461639373275, 46.734121600070466 ], [ -90.875916086921848, 46.733516523266829 ], [ -90.875916086921848, 46.733113138731071 ], [ -90.871551667310257, 46.725448832551663 ], [ -90.870460562407359, 46.723633602140758 ], [ -90.870460562407359, 46.723230217605 ], [ -90.869369457504462, 46.722020063997725 ], [ -90.868551128827292, 46.720809910390457 ], [ -90.868551128827292, 46.720809910390457 ], [ -90.868278352601564, 46.720406525854699 ], [ -90.86800557637585, 46.72020483358682 ], [ -90.863913932989988, 46.714557450086204 ], [ -90.861458946958464, 46.711128681532259 ], [ -90.860913394507023, 46.710523604728621 ], [ -90.859822289604125, 46.709111758853467 ], [ -90.859549513378397, 46.708910066585588 ], [ -90.853275660186753, 46.700237299066799 ], [ -90.853002883961025, 46.699833914531041 ], [ -90.852730107735312, 46.699632222263162 ], [ -90.852730107735312, 46.699430529995283 ], [ -90.853548436412467, 46.694388223298304 ], [ -90.853821212638195, 46.693581454226788 ], [ -90.853821212638195, 46.693379761958909 ], [ -90.853821212638195, 46.693379761958909 ], [ -90.854639541315379, 46.692774685155278 ], [ -90.854639541315379, 46.692774685155278 ], [ -90.865550590344327, 46.683093456297087 ], [ -90.865823366570055, 46.682891764029208 ], [ -90.867460023924394, 46.681278225886174 ], [ -90.867732800150122, 46.680874841350416 ], [ -90.86800557637585, 46.680874841350416 ], [ -90.868278352601564, 46.680471456814658 ], [ -90.868551128827292, 46.680471456814658 ], [ -90.870187786181631, 46.679462995475262 ], [ -90.870460562407359, 46.679261303207383 ], [ -90.870733338633073, 46.679059610939504 ], [ -90.871006114858801, 46.678857918671625 ], [ -90.885736031047898, 46.670386843420715 ], [ -90.886008807273612, 46.670386843420715 ], [ -90.89664708007686, 46.667361459402528 ], [ -90.905375919300013, 46.664739459920099 ], [ -90.905648695525741, 46.664739459920099 ], [ -90.909194786460148, 46.663730998580704 ], [ -90.909740338911604, 46.663529306312824 ], [ -90.911376996265943, 46.663125921777066 ], [ -90.911376996265943, 46.662924229509187 ], [ -90.914650310974636, 46.659092076419491 ], [ -90.915195863426078, 46.658486999615853 ], [ -90.915468639651806, 46.657680230544337 ], [ -90.92092416416628, 46.637511003756444 ], [ -90.92092416416628, 46.637309311488565 ], [ -90.92092416416628, 46.636502542417048 ], [ -90.92092416416628, 46.635494081077653 ], [ -90.92092416416628, 46.631661927987949 ], [ -90.92092416416628, 46.631661927987949 ], [ -90.924470255100687, 46.625409467683703 ], [ -90.924470255100687, 46.625409467683703 ], [ -90.926652464906482, 46.622787468201281 ], [ -90.931562436969514, 46.616736700164907 ], [ -90.932107989420956, 46.616131623361269 ], [ -90.933199094323868, 46.614921469753995 ], [ -90.938381842612614, 46.608669009449756 ], [ -90.938654618838342, 46.608467317181876 ], [ -90.938654618838342, 46.608265624913997 ], [ -90.94956566786729, 46.60302162594914 ], [ -90.94956566786729, 46.60302162594914 ], [ -90.950111220318746, 46.602214856877623 ], [ -90.950656772770188, 46.601811472341865 ], [ -90.951475101447357, 46.600803011002469 ], [ -90.951475101447357, 46.60060131873459 ], [ -90.951475101447357, 46.599794549663073 ], [ -90.951475101447357, 46.596970857912765 ], [ -90.947656234287223, 46.593542089358827 ], [ -90.947383458061495, 46.593340397090948 ], [ -90.947110681835781, 46.593138704823069 ], [ -90.942200709772749, 46.588499782661856 ], [ -90.941927933547021, 46.588499782661856 ], [ -90.941382381095579, 46.588298090393977 ], [ -90.941109604869851, 46.588298090393977 ], [ -90.927470793583666, 46.585071014107911 ], [ -90.923651926423531, 46.584264245036394 ], [ -90.923379150197803, 46.584264245036394 ], [ -90.921469716617736, 46.583860860500636 ], [ -90.920378611714838, 46.583457475964877 ], [ -90.92010583548911, 46.583457475964877 ], [ -90.919833059263397, 46.583457475964877 ], [ -90.918469178134771, 46.583054091429119 ], [ -90.918469178134771, 46.583054091429119 ], [ -90.918196401909043, 46.583054091429119 ], [ -90.917105297006145, 46.583054091429119 ], [ -90.909740338911604, 46.582650706893361 ], [ -90.906194247977197, 46.583457475964877 ], [ -90.905648695525741, 46.583457475964877 ], [ -90.901829828365607, 46.585474398643669 ], [ -90.901829828365607, 46.585676090911548 ], [ -90.892009884239542, 46.590920089876406 ], [ -90.88628158349934, 46.594147166162465 ], [ -90.885190478596456, 46.594752242966102 ], [ -90.884917702370728, 46.594752242966102 ], [ -90.873188324664596, 46.601206395538227 ], [ -90.867187247698666, 46.601811472341865 ], [ -90.864186709215716, 46.60302162594914 ], [ -90.858731184701227, 46.605038548627931 ], [ -90.85682175112116, 46.605643625431568 ], [ -90.856276198669718, 46.606047009967327 ], [ -90.85600342244399, 46.606047009967327 ], [ -90.854639541315379, 46.606652086770964 ], [ -90.853275660186753, 46.607055471306722 ], [ -90.852184555283856, 46.607458855842481 ], [ -90.851911779058128, 46.60766054811036 ], [ -90.849729569252332, 46.608467317181876 ], [ -90.843182939834975, 46.610887624396419 ], [ -90.843182939834975, 46.610887624396419 ], [ -90.842091834932063, 46.611291008932177 ], [ -90.841819058706349, 46.611291008932177 ], [ -90.837181862869045, 46.612904547075203 ], [ -90.83418132438608, 46.614114700682478 ], [ -90.831999114580285, 46.614921469753995 ], [ -90.831180785903115, 46.615324854289753 ], [ -90.830089681000217, 46.615728238825511 ], [ -90.82899857609732, 46.616131623361269 ], [ -90.82899857609732, 46.616131623361269 ], [ -90.794901547881835, 46.625006083147944 ], [ -90.79271933807604, 46.62601454448734 ], [ -90.772533897372483, 46.635090696541894 ], [ -90.77007891134096, 46.63609915788129 ], [ -90.76844225398662, 46.637309311488565 ], [ -90.755348995151863, 46.646183771275233 ], [ -90.755348995151863, 46.646385463543112 ], [ -90.755348995151863, 46.646385463543112 ], [ -90.75644010005476, 46.661915768169791 ], [ -90.75644010005476, 46.66453776765222 ], [ -90.747984037057321, 46.669781766617078 ], [ -90.747984037057321, 46.669983458884957 ], [ -90.739527974059882, 46.68995099340497 ], [ -90.739527974059882, 46.68995099340497 ], [ -90.737345764254087, 46.692169608351641 ], [ -90.724798057870785, 46.684101917636482 ], [ -90.705430945844398, 46.671395304760111 ], [ -90.69479267304115, 46.664336075384341 ], [ -90.654421791634007, 46.639931310970994 ], [ -90.650875700699601, 46.637914388292202 ], [ -90.627962497738793, 46.623795929540677 ], [ -90.607777057035236, 46.612097778003694 ], [ -90.606685952132324, 46.611694393467936 ], [ -90.606140399680882, 46.611291008932177 ], [ -90.59959377026351, 46.607458855842481 ], [ -90.599320994037782, 46.607458855842481 ], [ -90.595774903103376, 46.605441933163689 ], [ -90.595502126877648, 46.60524024089581 ], [ -90.591956035943241, 46.60302162594914 ], [ -90.590864931040343, 46.602416549145502 ], [ -90.59059215481463, 46.602416549145502 ], [ -90.586227735203039, 46.599794549663073 ], [ -90.581317763140007, 46.597575934716403 ], [ -90.580226658237109, 46.596970857912765 ], [ -90.579408329559939, 46.596567473377014 ], [ -90.563587308467959, 46.589104859465493 ], [ -90.561950651113619, 46.588298090393977 ], [ -90.561132322436436, 46.587894705858218 ], [ -90.558131783953485, 46.586482859983064 ], [ -90.556222350373417, 46.585877783179427 ], [ -90.549675720956031, 46.584062552768515 ], [ -90.538219119475627, 46.581238861018207 ], [ -90.537946343249899, 46.581037168750328 ], [ -90.537946343249899, 46.581238861018207 ], [ -90.527853622898121, 46.585877783179427 ], [ -90.525671413092326, 46.586886244518823 ], [ -90.525398636866612, 46.586886244518823 ], [ -90.525398636866612, 46.586886244518823 ], [ -90.522670874609361, 46.587289629054581 ], [ -90.519124783674954, 46.587894705858218 ], [ -90.519124783674954, 46.587894705858218 ], [ -90.518579231223498, 46.587894705858218 ], [ -90.506031524840211, 46.589709936269131 ], [ -90.497302685617043, 46.585474398643669 ], [ -90.478753902267812, 46.576599938857001 ], [ -90.478481126042084, 46.576398246589122 ], [ -90.476571692462016, 46.575389785249726 ], [ -90.476298916236303, 46.575389785249726 ], [ -90.476026140010575, 46.575188092981847 ], [ -90.473843930204794, 46.574179631642451 ], [ -90.472480049076168, 46.573776247106693 ], [ -90.440019678215009, 46.562279787837589 ], [ -90.438110244634942, 46.561674711033952 ], [ -90.437564692183514, 46.561473018766073 ], [ -90.437564692183514, 46.561473018766073 ], [ -90.436473587280602, 46.561674711033952 ], [ -90.436200811054874, 46.561876403301831 ], [ -90.434836929926263, 46.56207809556971 ], [ -90.433473048797651, 46.562481480105468 ], [ -90.418197580157113, 46.566111940927286 ], [ -90.414651489222692, 46.557237481140618 ], [ -90.414378712996978, 46.557237481140618 ], [ -90.400467125485051, 46.544329175996367 ], [ -90.399921573033595, 46.544329175996367 ], [ -90.374553384041278, 46.539286869299389 ], [ -90.357641258046399, 46.540295330638784 ], [ -90.313997061930564, 46.516293950761188 ], [ -90.313724285704836, 46.516293950761188 ], [ -90.307723208738921, 46.518310873439972 ], [ -90.284537229552384, 46.518714257975731 ], [ -90.20461379541527, 46.478980881203583 ], [ -90.177881725294327, 46.440457658038696 ], [ -90.166970676265379, 46.439852581235058 ], [ -90.166970676265379, 46.439247504431421 ], [ -90.134783081629962, 46.374907670978033 ], [ -90.134783081629962, 46.374907670978033 ], [ -90.119780389215151, 46.359780750887111 ], [ -90.119780389215151, 46.359780750887111 ], [ -90.120598717892307, 46.336787832348911 ], [ -89.929109807434116, 46.300079839594943 ], [ -89.910015471633443, 46.296449378773119 ], [ -89.908106038053376, 46.29604599423736 ], [ -89.27690185172824, 46.174022172170595 ], [ -89.276356299276785, 46.174022172170595 ], [ -89.219891620551948, 46.163332481973008 ], [ -89.218254963197609, 46.162929097437249 ], [ -89.205707256814293, 46.1605087902227 ], [ -89.203252270782784, 46.160105405686942 ], [ -89.201342837202716, 46.159500328883311 ], [ -89.194523431559617, 46.157886790740278 ], [ -89.166973032761504, 46.1528444840433 ], [ -89.161790284472744, 46.151836022703904 ], [ -89.125238270225736, 46.144575101060262 ], [ -89.058680871149107, 46.125010951076007 ], [ -88.990759590943853, 46.097379110376586 ], [ -88.990759590943853, 46.097379110376586 ], [ -88.948752052182371, 46.080235267606874 ], [ -88.943296527667883, 46.07801665266021 ], [ -88.932658254864663, 46.073579422766869 ], [ -88.850279834696039, 46.04030019856684 ], [ -88.848370401115972, 46.038888352691686 ], [ -88.840459890569974, 46.031022354244413 ], [ -88.815637254029099, 46.02234958672561 ], [ -88.769810848107483, 46.018920818171672 ], [ -88.740078239503575, 46.027391893422589 ], [ -88.730803847828952, 46.026585124351072 ], [ -88.683068008327268, 46.014483588278338 ], [ -88.679249141167134, 46.013475126938943 ], [ -88.674611945329843, 46.010651435188635 ], [ -88.670247525718253, 45.999961744991047 ], [ -88.671065854395422, 45.999961744991047 ], [ -88.66615588233239, 45.988263593454064 ], [ -88.63751437863138, 45.985036517168005 ], [ -88.616510609250639, 45.987658516650427 ], [ -88.612964518316232, 45.990683900668614 ], [ -88.532495531727676, 46.021139433118336 ], [ -88.507127342735345, 46.018315741368035 ], [ -88.500035160866531, 46.000365129526806 ], [ -88.49730739860928, 45.995121130561955 ], [ -88.489669664289011, 45.991288977472252 ], [ -88.42338504143811, 45.982011133149825 ], [ -88.376467530613596, 45.989473747061339 ], [ -88.295452991573598, 45.951555600700097 ], [ -88.250172138103423, 45.963052059969201 ], [ -88.244443837363221, 45.952160677503734 ], [ -88.239806641525917, 45.948933601217675 ], [ -88.211165137824906, 45.944496371324334 ], [ -88.202163522376011, 45.949538678021312 ], [ -88.175431452255069, 45.944899755860092 ], [ -88.139424990459503, 45.92997452803705 ], [ -88.118421221078762, 45.918478068767953 ], [ -88.102600199986782, 45.90980530124915 ], [ -88.073958696285771, 45.875517615709725 ], [ -88.073140367608602, 45.871887154887908 ], [ -88.088688612474868, 45.85595346572547 ], [ -88.106691843372644, 45.841028237902428 ], [ -88.114329577692914, 45.837801161616369 ], [ -88.133696689719301, 45.823077626061199 ], [ -88.136151675750824, 45.819043780703623 ], [ -88.130423375010622, 45.809967628649069 ], [ -88.094144136989343, 45.785562864235715 ], [ -88.072049262705704, 45.780318865270857 ], [ -88.058137675193791, 45.780722249806615 ], [ -88.050499940873522, 45.780923942074494 ], [ -88.039861668070273, 45.789596709593297 ], [ -87.991580276117148, 45.795445785361778 ], [ -87.868012645864212, 45.749459948285377 ], [ -87.828732869359982, 45.722836568925359 ], [ -87.807183547527785, 45.708113033370196 ], [ -87.78072425363257, 45.680279500402897 ], [ -87.781542582309726, 45.673220271027134 ], [ -87.823550121071207, 45.659908581347125 ], [ -87.824095673522663, 45.647201968470746 ], [ -87.795999722273109, 45.618763358699809 ], [ -87.791908078887246, 45.616746436021025 ], [ -87.788907540404281, 45.565919984515531 ], [ -87.792726407564416, 45.49996661291911 ], [ -87.79900026075606, 45.485243077363947 ], [ -87.806365218850601, 45.472334772219689 ], [ -87.812911848267987, 45.464065389236652 ], [ -87.820276806362529, 45.460233236146948 ], [ -87.860374911543943, 45.42352524339298 ], [ -87.887925310342069, 45.354748180046258 ], [ -87.885197548084818, 45.351722796028071 ], [ -87.850009414966436, 45.340428029026853 ], [ -87.838007261034591, 45.345066951188066 ], [ -87.835279498777339, 45.350916026956554 ], [ -87.832551736520116, 45.352327872831708 ], [ -87.790271421532907, 45.353538026438983 ], [ -87.771449861957947, 45.351117719224433 ], [ -87.751537197480104, 45.351722796028071 ], [ -87.718804050393231, 45.377539406316579 ], [ -87.693981413852356, 45.389842634657199 ], [ -87.685798127080631, 45.388632481049925 ], [ -87.674887078051682, 45.382380020745671 ], [ -87.657429399605348, 45.368664946529904 ], [ -87.647609455479284, 45.350714334688675 ], [ -87.64815500793074, 45.339419567687457 ], [ -87.709256882492895, 45.260356198678906 ], [ -87.707893001364283, 45.258339276000115 ], [ -87.711711868524418, 45.243414048177073 ], [ -87.731624533002261, 45.206706055423098 ], [ -87.739535043548244, 45.202067133261878 ], [ -87.741717253354039, 45.198234980172181 ], [ -87.735170623936668, 45.176653907509134 ], [ -87.731351756776533, 45.171006524008519 ], [ -87.659884385636872, 45.107473459626647 ], [ -87.590326448077263, 45.095170231286033 ], [ -87.587053133368585, 45.089522847785418 ], [ -87.587871462045754, 45.085287310159963 ], [ -87.591690329205889, 45.083875464284816 ], [ -87.594690867688854, 45.085085617892091 ], [ -87.601783049557667, 45.082261926141783 ], [ -87.610511888780849, 45.075606081301771 ], [ -87.625787357421387, 45.04515054885205 ], [ -87.624696252518476, 45.014089939598691 ], [ -87.630424553258678, 44.976776870041085 ], [ -87.662066595442667, 44.972944716951389 ], [ -87.696436399883879, 44.974154870558657 ], [ -87.76272102273478, 44.965885487575619 ], [ -87.76272102273478, 44.965885487575619 ], [ -87.76272102273478, 44.96568379530774 ], [ -87.765994337443473, 44.965280410771982 ], [ -87.766812666120643, 44.965280410771982 ], [ -87.781269806084012, 44.961649949950157 ], [ -87.781542582309726, 44.961649949950157 ], [ -87.788907540404281, 44.959834719539252 ], [ -87.789998645307179, 44.959633027271373 ], [ -87.79136252643579, 44.959229642735615 ], [ -87.791908078887246, 44.959229642735615 ], [ -87.792453631338688, 44.959027950467735 ], [ -87.812639072042259, 44.954187336038643 ], [ -87.812911848267987, 44.953985643770764 ], [ -87.813184624493715, 44.953985643770764 ], [ -87.813730176945157, 44.953582259235006 ], [ -87.815094058073782, 44.952977182431368 ], [ -87.816185162976666, 44.95257379789561 ], [ -87.817276267879578, 44.952170413359852 ], [ -87.817549044105292, 44.951968721091973 ], [ -87.817821820331005, 44.951968721091973 ], [ -87.817821820331005, 44.951767028824094 ], [ -87.818094596556733, 44.951767028824094 ], [ -87.819185701459645, 44.951161952020456 ], [ -87.819458477685359, 44.951161952020456 ], [ -87.819458477685359, 44.951161952020456 ], [ -87.820276806362529, 44.95035518294894 ], [ -87.820822358813984, 44.949750106145302 ], [ -87.821095135039712, 44.949548413877423 ], [ -87.821367911265426, 44.949145029341665 ], [ -87.821913463716868, 44.948741644805907 ], [ -87.822186239942596, 44.948539952538027 ], [ -87.837734484808863, 44.933009647911348 ], [ -87.839098365937474, 44.931799494304073 ], [ -87.843462785549065, 44.924336880392559 ], [ -87.844281114226234, 44.918487804624064 ], [ -87.842917233097609, 44.912638728855576 ], [ -87.842644456871895, 44.912033652051939 ], [ -87.842644456871895, 44.91183195978406 ], [ -87.842371680646167, 44.911428575248301 ], [ -87.8404622470661, 44.907193037622847 ], [ -87.83964391838893, 44.905579499479813 ], [ -87.836916156131693, 44.902554115461626 ], [ -87.836643379905965, 44.902150730925868 ], [ -87.836097827454523, 44.901343961854352 ], [ -87.834188393874456, 44.899125346907681 ], [ -87.833642841423, 44.898520270104044 ], [ -87.833642841423, 44.898318577836164 ], [ -87.832006184068661, 44.896503347425259 ], [ -87.82764176445707, 44.891259348460409 ], [ -87.83282451274583, 44.880973042798573 ], [ -87.835552275003067, 44.877544274244634 ], [ -87.836916156131693, 44.875729043833729 ], [ -87.838280037260319, 44.873913813422817 ], [ -87.847554428934927, 44.870686737136751 ], [ -87.848372757612097, 44.870485044868872 ], [ -87.849191086289267, 44.869476583529476 ], [ -87.852737177223673, 44.864837661368256 ], [ -87.854101058352299, 44.859593662403412 ], [ -87.854646610803741, 44.8577784319925 ], [ -87.854919387029469, 44.857375047456742 ], [ -87.856010491932366, 44.855761509313709 ], [ -87.857101596835264, 44.854147971170676 ], [ -87.857374373060992, 44.853542894367038 ], [ -87.865830436058417, 44.841037973758546 ], [ -87.866103212284145, 44.840432896954908 ], [ -87.871558736798619, 44.839827820151271 ], [ -87.878105366216005, 44.839021051079754 ], [ -87.885743100536274, 44.835188897990051 ], [ -87.89256250617936, 44.831760129436113 ], [ -87.895835820888053, 44.830146591293079 ], [ -87.898018030693848, 44.828936437685805 ], [ -87.899654688048187, 44.828129668614295 ], [ -87.901018569176813, 44.827322899542779 ], [ -87.901836897853983, 44.825709361399745 ], [ -87.902109674079696, 44.82470090006035 ], [ -87.903473555208322, 44.821473823774284 ], [ -87.90374633143405, 44.820465362434888 ], [ -87.904291883885492, 44.819255208827613 ], [ -87.90456466011122, 44.818650132023976 ], [ -87.905382988788389, 44.817036593880943 ], [ -87.906474093691287, 44.815019671202158 ], [ -87.911384065754319, 44.806346903683362 ], [ -87.918749023848875, 44.792833521735474 ], [ -87.923658995911893, 44.784362446484558 ], [ -87.925841205717688, 44.780328601126982 ], [ -87.926932310620572, 44.77851337071607 ], [ -87.941389450583955, 44.756125528981499 ], [ -87.951482170935734, 44.753100144963312 ], [ -87.956937695450222, 44.749267991873616 ], [ -87.964848205996205, 44.743620608373007 ], [ -87.972758716542202, 44.733737687246936 ], [ -87.983124213119709, 44.720829382102679 ], [ -87.983396989345437, 44.720224305299048 ], [ -87.983942541796878, 44.717803998084499 ], [ -87.983942541796878, 44.717803998084499 ], [ -87.984215318022606, 44.716997229012982 ], [ -87.984215318022606, 44.716190459941473 ], [ -87.98448809424832, 44.715383690869956 ], [ -87.986124751602674, 44.706307538815395 ], [ -87.986124751602674, 44.705904154279636 ], [ -87.987215856505571, 44.699651693975397 ], [ -87.987488632731299, 44.69904661717176 ], [ -87.988579737634183, 44.692189080063869 ], [ -87.989125290085639, 44.689163696045682 ], [ -87.989398066311367, 44.688558619242045 ], [ -87.989398066311367, 44.688356926974166 ], [ -87.989398066311367, 44.687953542438414 ], [ -87.98967084253708, 44.68654169656326 ], [ -87.989943618762808, 44.677667236776585 ], [ -87.990216394988522, 44.669801238329306 ], [ -87.990216394988522, 44.668389392454152 ], [ -87.998945234211703, 44.665162316168093 ], [ -88.000309115340315, 44.664758931632335 ], [ -88.002218548920382, 44.663952162560818 ], [ -88.002218548920382, 44.663347085757181 ], [ -88.002764101371838, 44.661935239882027 ], [ -88.00330965382328, 44.659716624935356 ], [ -88.007401297209128, 44.64579985845171 ], [ -88.009856283240651, 44.637127090932914 ], [ -88.009583507014923, 44.631681399700184 ], [ -88.009583507014923, 44.630874630628668 ], [ -88.009583507014923, 44.630672938360789 ], [ -88.009583507014923, 44.63047124609291 ], [ -88.008765178337754, 44.628857707949876 ], [ -88.007401297209128, 44.626437400735327 ], [ -88.007128520983414, 44.625832323931689 ], [ -88.007128520983414, 44.62563063166381 ], [ -88.006855744757686, 44.625227247128052 ], [ -88.006310192306245, 44.624420478056535 ], [ -88.001127444017484, 44.614134172394714 ], [ -87.998945234211703, 44.609495250233493 ], [ -87.998672457985975, 44.609293557965614 ], [ -88.001945772694654, 44.603847866732892 ], [ -88.012311269272175, 44.602436020857738 ], [ -88.014766255303684, 44.596385252821364 ], [ -88.015039031529398, 44.595578483749847 ], [ -88.016402912658023, 44.592149715195902 ], [ -88.016402912658023, 44.592149715195902 ], [ -88.019403451140988, 44.588317562106205 ], [ -88.022949542075395, 44.584283716748629 ], [ -88.027041185461258, 44.579039717783772 ], [ -88.028132290364155, 44.578636333248014 ], [ -88.034406143555799, 44.57722448737286 ], [ -88.036042800910138, 44.576821102837101 ], [ -88.036042800910138, 44.576821102837101 ], [ -88.039043339393118, 44.574400795622559 ], [ -88.039588891844559, 44.5739974110868 ], [ -88.041225549198913, 44.572585565211646 ], [ -88.041225549198913, 44.572585565211646 ], [ -88.041225549198913, 44.571778796140137 ], [ -88.041498325424627, 44.5711737193365 ], [ -88.041498325424627, 44.570770334800741 ], [ -88.04177110165034, 44.570366950264983 ], [ -88.04177110165034, 44.569761873461346 ], [ -88.042316654101796, 44.567341566246796 ], [ -88.042316654101796, 44.566534797175279 ], [ -88.03713390581305, 44.562702644085576 ], [ -88.0207673322696, 44.550399415744963 ], [ -88.016675688883751, 44.547575723994655 ], [ -88.005491863629061, 44.539306341011624 ], [ -88.000036339114587, 44.53789449513647 ], [ -87.998945234211703, 44.537491110600712 ], [ -87.998399681760247, 44.537491110600712 ], [ -87.991034723665706, 44.53547418792192 ], [ -87.99048917121425, 44.535272495654041 ], [ -87.986124751602674, 44.534264034314646 ], [ -87.982851436893981, 44.533457265243129 ], [ -87.977941464830963, 44.532045419367975 ], [ -87.970576506736407, 44.530230188957063 ], [ -87.943844436615464, 44.529625112153425 ], [ -87.940025569455329, 44.531238650296459 ], [ -87.935661149843753, 44.533053880707371 ], [ -87.929114520426367, 44.536079264725558 ], [ -87.923931772137621, 44.54091987915465 ], [ -87.917385142720235, 44.547575723994655 ], [ -87.917112366494521, 44.548180800798292 ], [ -87.915748485365896, 44.549592646673446 ], [ -87.901291345402541, 44.568955104389829 ], [ -87.901291345402541, 44.568955104389829 ], [ -87.901291345402541, 44.568955104389829 ], [ -87.900745792951085, 44.570165257997104 ], [ -87.899381911822474, 44.572988949747405 ], [ -87.898836359371018, 44.5739974110868 ], [ -87.898836359371018, 44.57419910335468 ], [ -87.899109135596746, 44.574602487890438 ], [ -87.900200240499629, 44.576014333765592 ], [ -87.900745792951085, 44.576821102837101 ], [ -87.901018569176813, 44.577426179640739 ], [ -87.901291345402541, 44.577627871908618 ], [ -87.90374633143405, 44.581258332730442 ], [ -87.902382450305424, 44.583073563141355 ], [ -87.901291345402541, 44.584485409016509 ], [ -87.896381373339494, 44.586704023963179 ], [ -87.894471939759427, 44.587712485302575 ], [ -87.891744177502204, 44.588922638909843 ], [ -87.891744177502204, 44.588922638909843 ], [ -87.89092584882502, 44.589729407981359 ], [ -87.887379757890614, 44.592351407463781 ], [ -87.868012645864212, 44.607680019822588 ], [ -87.866921540961329, 44.608486788894098 ], [ -87.842098904420453, 44.618773094555934 ], [ -87.837461708583135, 44.620790017234718 ], [ -87.836097827454523, 44.621395094038355 ], [ -87.830915079165763, 44.623613708985026 ], [ -87.829278421811424, 44.624420478056535 ], [ -87.823550121071207, 44.627849246610481 ], [ -87.820004030136801, 44.629866169289272 ], [ -87.809092981107852, 44.636118629593525 ], [ -87.808820204882124, 44.636320321861398 ], [ -87.808274652430669, 44.636320321861398 ], [ -87.78836198795284, 44.63813555227231 ], [ -87.775268729118082, 44.639345705879585 ], [ -87.765721561217745, 44.641967705362006 ], [ -87.762993798960508, 44.644186320308677 ], [ -87.762448246509052, 44.644589704844435 ], [ -87.756174393317409, 44.649026934737776 ], [ -87.755901617091695, 44.649228627005655 ], [ -87.750991645028648, 44.656287856381411 ], [ -87.749082211448581, 44.664153854828697 ], [ -87.748536658997139, 44.667179238846884 ], [ -87.735988952613837, 44.677062159972948 ], [ -87.733806742808042, 44.67887739038386 ], [ -87.729715099422194, 44.682104466669927 ], [ -87.719895155296129, 44.693197541403265 ], [ -87.718531274167503, 44.707719384690549 ], [ -87.718531274167503, 44.707719384690549 ], [ -87.718531274167503, 44.707921076958428 ], [ -87.720167931521857, 44.713770152726923 ], [ -87.720713483973299, 44.714980306334198 ], [ -87.721804588876196, 44.719014151691773 ], [ -87.721259036424755, 44.722442920245712 ], [ -87.720986260199027, 44.723451381585107 ], [ -87.720986260199027, 44.724459842924503 ], [ -87.720440707747571, 44.72506491972814 ], [ -87.714439630781655, 44.730510610960877 ], [ -87.705983567784216, 44.73817491714027 ], [ -87.705710791558488, 44.738376609408149 ], [ -87.70461968665559, 44.739586763015424 ], [ -87.703528581752693, 44.740998608890578 ], [ -87.701073595721169, 44.743822300640886 ], [ -87.700800819495456, 44.744225685176644 ], [ -87.700528043269742, 44.744427377444524 ], [ -87.698618609689674, 44.746645992391194 ], [ -87.698618609689674, 44.746645992391194 ], [ -87.698345833463947, 44.747049376926952 ], [ -87.698073057238219, 44.747251069194832 ], [ -87.688253113112154, 44.758949220731807 ], [ -87.687434784434984, 44.759554297535445 ], [ -87.679797050114715, 44.767016911446966 ], [ -87.678433168986089, 44.768227065054241 ], [ -87.677887616534647, 44.768630449589992 ], [ -87.662066595442667, 44.78375736968092 ], [ -87.647882231705012, 44.797270751628808 ], [ -87.646245574350672, 44.798682597503962 ], [ -87.645154469447775, 44.800497827914874 ], [ -87.644608916996333, 44.801506289254263 ], [ -87.644608916996333, 44.801506289254263 ], [ -87.644608916996333, 44.801506289254263 ], [ -87.636971182676064, 44.813607825327004 ], [ -87.635334525321724, 44.815221363470037 ], [ -87.635334525321724, 44.815221363470037 ], [ -87.63451619664454, 44.816028132541554 ], [ -87.63451619664454, 44.816028132541554 ], [ -87.63451619664454, 44.816028132541554 ], [ -87.633970644193099, 44.816431517077312 ], [ -87.633425091741657, 44.817036593880943 ], [ -87.632879539290201, 44.817439978416701 ], [ -87.632879539290201, 44.817439978416701 ], [ -87.632606763064473, 44.81764167068458 ], [ -87.621968490261253, 44.827322899542779 ], [ -87.616512965746765, 44.832566898507629 ], [ -87.616240189521051, 44.832768590775501 ], [ -87.61187576990946, 44.836802436133084 ], [ -87.61105744123229, 44.837407512936721 ], [ -87.610239112555121, 44.838214282008238 ], [ -87.609966336329393, 44.838415974276117 ], [ -87.609966336329393, 44.838415974276117 ], [ -87.609693560103665, 44.838415974276117 ], [ -87.581597608854111, 44.851727663956126 ], [ -87.581324832628383, 44.851727663956126 ], [ -87.573141545856657, 44.85313950983128 ], [ -87.570959336050862, 44.852937817563401 ], [ -87.560048287021914, 44.852131048491884 ], [ -87.550228342895849, 44.851324279420368 ], [ -87.549955566670121, 44.851324279420368 ], [ -87.534680098029582, 44.856164893849467 ], [ -87.531134007095176, 44.857375047456742 ], [ -87.530861230869448, 44.857576739724621 ], [ -87.515040209777467, 44.869678275797355 ], [ -87.514494657326026, 44.869476583529476 ], [ -87.513676328648842, 44.869073198993718 ], [ -87.513403552423128, 44.868871506725839 ], [ -87.512039671294502, 44.86846812219008 ], [ -87.504947489425689, 44.865644430439772 ], [ -87.504401936974233, 44.865442738171893 ], [ -87.504401936974233, 44.865442738171893 ], [ -87.502492503394166, 44.864635969100384 ], [ -87.501674174716996, 44.864232584564625 ], [ -87.498946412459759, 44.864232584564625 ], [ -87.478488195530474, 44.863627507760988 ], [ -87.472759894790272, 44.867661353118564 ], [ -87.456666097472549, 44.878956120119788 ], [ -87.441390628832011, 44.889645810317376 ], [ -87.43702620922042, 44.892671194335563 ], [ -87.433207342060285, 44.892671194335563 ], [ -87.432934565834572, 44.892671194335563 ], [ -87.428024593771539, 44.890654271656771 ], [ -87.420932411902726, 44.887830579906463 ], [ -87.42038685945127, 44.887628887638584 ], [ -87.419022978322658, 44.885410272691914 ], [ -87.419022978322658, 44.885208580424035 ], [ -87.419022978322658, 44.885006888156155 ], [ -87.419841306999814, 44.875930736101608 ], [ -87.419295754548372, 44.874922274762213 ], [ -87.410839691550933, 44.86322412322523 ], [ -87.410021362873763, 44.862013969617955 ], [ -87.408657481745138, 44.861408892814318 ], [ -87.405656943262187, 44.86019873920705 ], [ -87.405656943262187, 44.859997046939171 ], [ -87.38492595010716, 44.865442738171893 ], [ -87.384653173881446, 44.869274891261597 ], [ -87.383834845204262, 44.881174735066452 ], [ -87.383834845204262, 44.881779811870089 ], [ -87.383834845204262, 44.881779811870089 ], [ -87.383562068978534, 44.884401811352518 ], [ -87.383562068978534, 44.884805195888276 ], [ -87.383562068978534, 44.885208580424035 ], [ -87.385471502558602, 44.890049194853134 ], [ -87.386017055010058, 44.890654271656771 ], [ -87.386289831235786, 44.89105765619253 ], [ -87.386289831235786, 44.89105765619253 ], [ -87.386562607461514, 44.89105765619253 ], [ -87.390654250847362, 44.895293193817984 ], [ -87.390654250847362, 44.895293193817984 ], [ -87.39092702707309, 44.895494886085864 ], [ -87.391199803298804, 44.895898270621622 ], [ -87.392018131975988, 44.896705039693138 ], [ -87.392290908201716, 44.89710842422889 ], [ -87.393382013104599, 44.898116885568285 ], [ -87.396928104039006, 44.899932115979198 ], [ -87.397200880264734, 44.900133808247077 ], [ -87.397473656490462, 44.900133808247077 ], [ -87.400474194973427, 44.90174734639011 ], [ -87.401838076102052, 44.902352423193747 ], [ -87.406202495713629, 44.904571038140418 ], [ -87.405384167036459, 44.909613344837389 ], [ -87.405111390810731, 44.91183195978406 ], [ -87.398291985167631, 44.925143649464069 ], [ -87.393654789330327, 44.933816416982864 ], [ -87.393654789330327, 44.933816416982864 ], [ -87.393382013104599, 44.934421493786502 ], [ -87.393109236878871, 44.934623186054381 ], [ -87.389017593493023, 44.938051954608326 ], [ -87.387380936138669, 44.93946380048348 ], [ -87.385198726332888, 44.94248918450166 ], [ -87.384653173881446, 44.942892569037419 ], [ -87.382470964075651, 44.946119645323478 ], [ -87.374833229755382, 44.956607643253193 ], [ -87.372923796175314, 44.960439796342889 ], [ -87.372651019949586, 44.961246565414399 ], [ -87.372651019949586, 44.961448257682278 ], [ -87.371832691272417, 44.962860103557432 ], [ -87.370196033918063, 44.966692256647136 ], [ -87.363376628274978, 44.980810715398661 ], [ -87.360376089791998, 44.987668252506552 ], [ -87.351374474343118, 44.997147789096857 ], [ -87.34510062115146, 45.004207018472627 ], [ -87.336644558154035, 45.013484862795053 ], [ -87.336371781928307, 45.013484862795053 ], [ -87.322187418190651, 45.03425916638659 ], [ -87.321914641964938, 45.03425916638659 ], [ -87.315913564999008, 45.040108242155078 ], [ -87.307457502001569, 45.048175932870237 ], [ -87.303365858615706, 45.051806393692061 ], [ -87.303365858615706, 45.051806393692061 ], [ -87.303093082389978, 45.052209778227819 ], [ -87.302820306164264, 45.052411470495699 ], [ -87.302547529938536, 45.052613162763578 ], [ -87.300910872584197, 45.053621624102966 ], [ -87.300638096358469, 45.053823316370845 ], [ -87.300092543907027, 45.054025008638725 ], [ -87.284271522815033, 45.063706237496916 ], [ -87.284271522815033, 45.063706237496916 ], [ -87.269268830400222, 45.077421311712683 ], [ -87.268723277948766, 45.077824696248442 ], [ -87.268723277948766, 45.077824696248442 ], [ -87.264904410788631, 45.081455157070266 ], [ -87.260539991177055, 45.092346539535725 ], [ -87.260539991177055, 45.092548231803605 ], [ -87.260539991177055, 45.106061613751493 ], [ -87.25753945269409, 45.121591918378172 ], [ -87.253993361759683, 45.126230840539392 ], [ -87.250447270825276, 45.131273147236371 ], [ -87.24090010292494, 45.13752560754061 ], [ -87.240354550473484, 45.137928992076368 ], [ -87.242263984053551, 45.14680345186305 ], [ -87.242809536505007, 45.149425451345472 ], [ -87.238445116893416, 45.166569294115185 ], [ -87.238172340667688, 45.167174370918822 ], [ -87.238172340667688, 45.167174370918822 ], [ -87.238172340667688, 45.167174370918822 ], [ -87.231898487476045, 45.172216677615793 ], [ -87.231080158798875, 45.172821754419431 ], [ -87.223987976930047, 45.174636984830343 ], [ -87.222351319575708, 45.175040369366101 ], [ -87.22207854334998, 45.175040369366101 ], [ -87.221805767124266, 45.174636984830343 ], [ -87.220987438447082, 45.173830215758827 ], [ -87.214440809029711, 45.165762525043668 ], [ -87.213349704126813, 45.165560832775789 ], [ -87.207894179612339, 45.164955755972159 ], [ -87.200256445292069, 45.163745602364884 ], [ -87.195892025680479, 45.163140525561246 ], [ -87.195346473229037, 45.163140525561246 ], [ -87.175161032525466, 45.17302344668731 ], [ -87.175161032525466, 45.17302344668731 ], [ -87.173797151396855, 45.174838677098222 ], [ -87.171342165365331, 45.178065753384288 ], [ -87.171342165365331, 45.178267445652168 ], [ -87.170251060462448, 45.179477599259442 ], [ -87.16997828423672, 45.179679291527322 ], [ -87.168341626882381, 45.182099598741864 ], [ -87.168341626882381, 45.182099598741864 ], [ -87.167250521979469, 45.183511444617018 ], [ -87.16315887859362, 45.18532667502793 ], [ -87.147610633727354, 45.19077236626066 ], [ -87.147610633727354, 45.19077236626066 ], [ -87.142700661664321, 45.191377443064297 ], [ -87.133153493763984, 45.192789288939451 ], [ -87.132880717538256, 45.192789288939451 ], [ -87.129880179055306, 45.191780827600056 ], [ -87.12851629792668, 45.191377443064297 ], [ -87.124424654540832, 45.190167289457023 ], [ -87.123606325863648, 45.189965597189143 ], [ -87.120060234929241, 45.191175750796418 ], [ -87.120060234929241, 45.191175750796418 ], [ -87.120060234929241, 45.191175750796418 ], [ -87.120060234929241, 45.192184212135814 ], [ -87.119787458703513, 45.192385904403693 ], [ -87.119787458703513, 45.19299098120733 ], [ -87.119787458703513, 45.19319267347521 ], [ -87.119787458703513, 45.193596058010968 ], [ -87.119787458703513, 45.193596058010968 ], [ -87.119787458703513, 45.193797750278847 ], [ -87.119787458703513, 45.193797750278847 ], [ -87.119787458703513, 45.194806211618243 ], [ -87.119787458703513, 45.195007903886122 ], [ -87.119787458703513, 45.195814672957638 ], [ -87.119787458703513, 45.196016365225518 ], [ -87.119787458703513, 45.196218057493397 ], [ -87.119514682477785, 45.202268825529757 ], [ -87.119514682477785, 45.202470517797636 ], [ -87.119514682477785, 45.202672210065515 ], [ -87.119514682477785, 45.205294209547944 ], [ -87.119514682477785, 45.205495901815823 ], [ -87.119514682477785, 45.205495901815823 ], [ -87.119787458703513, 45.205899286351581 ], [ -87.121424116057852, 45.209731439441285 ], [ -87.12169689228358, 45.209731439441285 ], [ -87.12169689228358, 45.209731439441285 ], [ -87.121969668509308, 45.215177130674014 ], [ -87.122242444735036, 45.21618559201341 ], [ -87.122242444735036, 45.216588976549168 ], [ -87.122242444735036, 45.216790668817048 ], [ -87.122242444735036, 45.218000822424315 ], [ -87.122787997186478, 45.221832975514019 ], [ -87.122787997186478, 45.223043129121294 ], [ -87.12169689228358, 45.22627020540736 ], [ -87.121424116057852, 45.227480359014635 ], [ -87.121151339832124, 45.227480359014635 ], [ -87.11733247267199, 45.238775126015852 ], [ -87.116514143994834, 45.241397125498281 ], [ -87.116514143994834, 45.24159881776616 ], [ -87.109421962126007, 45.255313891981928 ], [ -87.109149185900279, 45.256524045589202 ], [ -87.108876409674565, 45.256927430124961 ], [ -87.108330857223109, 45.25712912239284 ], [ -87.101784227805737, 45.258944352803752 ], [ -87.078325472393487, 45.265801889911629 ], [ -87.070960514298932, 45.280323733198919 ], [ -87.070960514298932, 45.280525425466799 ], [ -87.05759447923846, 45.292828653807419 ], [ -87.053502835852612, 45.28798803937832 ], [ -87.052957283401156, 45.287382962574682 ], [ -87.052957283401156, 45.287181270306803 ], [ -87.051866178498258, 45.286172808967407 ], [ -87.051593402272545, 45.285971116699528 ], [ -87.050775073595361, 45.285769424431649 ], [ -87.048865640015293, 45.285366039895891 ], [ -87.043955667952275, 45.284760963092253 ], [ -87.043682891726547, 45.284760963092253 ], [ -87.043410115500819, 45.284962655360133 ], [ -87.043137339275091, 45.284962655360133 ], [ -87.041500681920752, 45.28556773216377 ], [ -87.034135723826211, 45.28778634711044 ], [ -87.034135723826211, 45.28778634711044 ], [ -87.021042464991467, 45.296459114629236 ], [ -87.016950821605604, 45.299282806379537 ], [ -87.015859716702693, 45.299282806379537 ], [ -86.994037618644796, 45.298072652772262 ], [ -86.99349206619334, 45.297870960504383 ], [ -86.993219289967612, 45.297870960504383 ], [ -86.984217674518732, 45.29565234555772 ], [ -86.983944898293004, 45.295450653289841 ], [ -86.983399345841548, 45.295450653289841 ], [ -86.983126569615834, 45.295248961021962 ], [ -86.980126031132869, 45.29262696153954 ], [ -86.977671045101346, 45.290610038860748 ], [ -86.977671045101346, 45.290610038860748 ], [ -86.970306087006804, 45.278508502788007 ], [ -86.972761073038328, 45.274676349698311 ], [ -86.973306625489769, 45.273869580626794 ], [ -86.974397730392667, 45.272054350215882 ], [ -86.974397730392667, 45.271852657948003 ], [ -86.974670506618395, 45.271852657948003 ], [ -86.977398268875632, 45.269634043001332 ], [ -86.983672122067276, 45.264995120840119 ], [ -86.98449045074446, 45.264390044036482 ], [ -86.98449045074446, 45.263381582697086 ], [ -86.985036003195901, 45.258944352803752 ], [ -86.985036003195901, 45.258742660535873 ], [ -86.984217674518732, 45.255313891981928 ], [ -86.983126569615834, 45.250674969820707 ], [ -86.982581017164392, 45.249061431677681 ], [ -86.982308240938664, 45.249061431677681 ], [ -86.976579940198462, 45.246237739927373 ], [ -86.973306625489769, 45.246439432195253 ], [ -86.973033849264056, 45.246439432195253 ], [ -86.973579401715497, 45.245027586320106 ], [ -86.973579401715497, 45.245027586320106 ], [ -86.973579401715497, 45.244825894052227 ], [ -86.973579401715497, 45.244220817248589 ], [ -86.974124954166939, 45.242808971373435 ], [ -86.978762150004258, 45.227480359014635 ], [ -86.978762150004258, 45.227278666746756 ], [ -86.980944359810039, 45.223648205924931 ], [ -86.982035464712936, 45.222236360049777 ], [ -86.983126569615834, 45.220622821906744 ], [ -86.983672122067276, 45.219412668299469 ], [ -86.985854331873071, 45.215782207477652 ], [ -86.988036541678866, 45.215378822941894 ], [ -86.995674275999136, 45.213563592530981 ], [ -86.997310933353475, 45.21316020799523 ], [ -87.000038695610726, 45.212353438923714 ], [ -87.002766457867949, 45.211748362120076 ], [ -87.005221443899472, 45.213563592530981 ], [ -87.0054942201252, 45.21376528479886 ], [ -87.0054942201252, 45.214168669334619 ], [ -87.007403653705268, 45.222034667781898 ], [ -87.007676429930996, 45.222034667781898 ], [ -87.032499066471871, 45.222236360049777 ], [ -87.032499066471871, 45.222236360049777 ], [ -87.032499066471871, 45.222236360049777 ], [ -87.034408500051939, 45.219816052835228 ], [ -87.040955129469296, 45.211546669852197 ], [ -87.040955129469296, 45.211344977584318 ], [ -87.040955129469296, 45.210336516244922 ], [ -87.040955129469296, 45.210336516244922 ], [ -87.041227905695024, 45.210134823977043 ], [ -87.045865101532343, 45.173830215758827 ], [ -87.045865101532343, 45.173628523490947 ], [ -87.045592325306615, 45.169392985865493 ], [ -87.045592325306615, 45.168989601329734 ], [ -87.045592325306615, 45.168989601329734 ], [ -87.045592325306615, 45.168384524526097 ], [ -87.045592325306615, 45.164350679168521 ], [ -87.045319549080887, 45.158703295667905 ], [ -87.045319549080887, 45.158501603400026 ], [ -87.044228444177989, 45.15769483432851 ], [ -87.041227905695024, 45.155476219381839 ], [ -87.038500143437787, 45.153459296703048 ], [ -87.03659070985772, 45.15224914309578 ], [ -87.034135723826211, 45.150232220416989 ], [ -87.030316856666076, 45.147408528666688 ], [ -87.029225751763178, 45.146601759595171 ], [ -87.02895297553745, 45.146400067327292 ], [ -87.02895297553745, 45.146400067327292 ], [ -87.02895297553745, 45.146198375059413 ], [ -87.030044080440348, 45.144988221452138 ], [ -87.030044080440348, 45.144988221452138 ], [ -87.031135185343246, 45.143778067844863 ], [ -87.031407961568959, 45.143778067844863 ], [ -87.032226290246143, 45.142769606505468 ], [ -87.032226290246143, 45.142567914237588 ], [ -87.032499066471871, 45.142366221969709 ], [ -87.033044618923313, 45.141962837433951 ], [ -87.033044618923313, 45.141761145166072 ], [ -87.033044618923313, 45.141761145166072 ], [ -87.033590171374755, 45.141559452898193 ], [ -87.033590171374755, 45.141559452898193 ], [ -87.034681276277652, 45.140954376094555 ], [ -87.034681276277652, 45.140954376094555 ], [ -87.035499604954822, 45.140550991558797 ], [ -87.03577238118055, 45.140349299290918 ], [ -87.040136800792141, 45.137928992076368 ], [ -87.041500681920752, 45.137323915272738 ], [ -87.042046234372208, 45.13692053073698 ], [ -87.042319010597922, 45.13692053073698 ], [ -87.045865101532343, 45.134903608058188 ], [ -87.054321164529767, 45.119978380235146 ], [ -87.054321164529767, 45.119978380235146 ], [ -87.051047849821089, 45.11614622714545 ], [ -87.050775073595361, 45.115137765806054 ], [ -87.049411192466749, 45.110095459109075 ], [ -87.049138416241021, 45.109893766841196 ], [ -87.049138416241021, 45.109692074573317 ], [ -87.048865640015293, 45.108683613233922 ], [ -87.048865640015293, 45.107675151894526 ], [ -87.048320087563852, 45.094161769946638 ], [ -87.048320087563852, 45.092548231803605 ], [ -87.048320087563852, 45.089119463249666 ], [ -87.048320087563852, 45.089119463249666 ], [ -87.050775073595361, 45.088716078713908 ], [ -87.057321703012747, 45.087505925106633 ], [ -87.057321703012747, 45.087505925106633 ], [ -87.058140031689902, 45.086295771499358 ], [ -87.061958898850037, 45.081051772534508 ], [ -87.063050003752949, 45.079438234391475 ], [ -87.063050003752949, 45.079236542123596 ], [ -87.063322779978662, 45.079236542123596 ], [ -87.064959437333016, 45.078429773052079 ], [ -87.079416577296371, 45.070765466872679 ], [ -87.079689353522099, 45.070765466872679 ], [ -87.080234905973555, 45.067135006050862 ], [ -87.080780458424996, 45.064714698836312 ], [ -87.081871563327894, 45.059067315335696 ], [ -87.082417115779336, 45.058865623067817 ], [ -87.086235982939471, 45.057252084924784 ], [ -87.090873178776775, 45.055436854513879 ], [ -87.091691507453959, 45.055235162245999 ], [ -87.091691507453959, 45.055235162245999 ], [ -87.092237059905401, 45.055235162245999 ], [ -87.096328703291249, 45.055638546781758 ], [ -87.097419808194161, 45.055840239049637 ], [ -87.121151339832124, 45.058260546264179 ], [ -87.124697430766545, 45.053016547299336 ], [ -87.124697430766545, 45.050797932352665 ], [ -87.124697430766545, 45.050394547816907 ], [ -87.124697430766545, 45.049184394209632 ], [ -87.124697430766545, 45.048579317405995 ], [ -87.124697430766545, 45.044142087512654 ], [ -87.124697430766545, 45.043335318441137 ], [ -87.124697430766545, 45.042125164833863 ], [ -87.132335165086815, 45.026796552475062 ], [ -87.134244598666882, 45.022762707117487 ], [ -87.138063465827017, 45.015300093205965 ], [ -87.139427346955642, 45.012476401455658 ], [ -87.141064004309982, 45.012274709187778 ], [ -87.154157263144725, 45.009047632901712 ], [ -87.163431654819334, 45.005013787544144 ], [ -87.163431654819334, 45.004812095276264 ], [ -87.163431654819334, 45.004812095276264 ], [ -87.167523298205197, 44.999769788579286 ], [ -87.168068850656653, 44.999164711775649 ], [ -87.169432731785264, 44.997147789096857 ], [ -87.169705508010992, 44.996946096828978 ], [ -87.169705508010992, 44.996744404561099 ], [ -87.181434885717124, 44.981415792202299 ], [ -87.181980438168566, 44.980810715398661 ], [ -87.182798766845735, 44.979197177255628 ], [ -87.187708738908768, 44.971532871076235 ], [ -87.189072620037393, 44.969112563861685 ], [ -87.189345396263121, 44.968709179325927 ], [ -87.189345396263121, 44.968507487058048 ], [ -87.189345396263121, 44.96810410252229 ], [ -87.188527067585937, 44.952170413359852 ], [ -87.188527067585937, 44.948539952538027 ], [ -87.188254291360209, 44.948136568002269 ], [ -87.187981515134496, 44.94793487573439 ], [ -87.180071004588498, 44.942690876769539 ], [ -87.175161032525466, 44.939665492751359 ], [ -87.171614941591059, 44.931396109768315 ], [ -87.174888256299738, 44.927765648946497 ], [ -87.182525990620007, 44.926353803071343 ], [ -87.1857993053287, 44.925547033999827 ], [ -87.18661763400587, 44.925547033999827 ], [ -87.187981515134496, 44.924941957196189 ], [ -87.204348088677932, 44.916874266481031 ], [ -87.215804690158336, 44.906789653087088 ], [ -87.216077466384064, 44.906587960819209 ], [ -87.216077466384064, 44.905982884015572 ], [ -87.216077466384064, 44.905982884015572 ], [ -87.216077466384064, 44.905377807211934 ], [ -87.217168571286948, 44.897915193300406 ], [ -87.217168571286948, 44.897915193300406 ], [ -87.217168571286948, 44.897713501032527 ], [ -87.216623018835506, 44.897310116496769 ], [ -87.212531375449643, 44.892872886603435 ], [ -87.20925806074095, 44.889242425781617 ], [ -87.206257522257999, 44.886015349495551 ], [ -87.206257522257999, 44.885410272691914 ], [ -87.204893641129374, 44.877140889708876 ], [ -87.204893641129374, 44.877140889708876 ], [ -87.20462086490366, 44.87552735156585 ], [ -87.204893641129374, 44.87552735156585 ], [ -87.211440270546746, 44.872501967547663 ], [ -87.224806305607217, 44.86624950724341 ], [ -87.246082851213686, 44.856568278385225 ], [ -87.267086620594426, 44.847088741794913 ], [ -87.267359396820154, 44.846887049527034 ], [ -87.267632173045882, 44.846685357259155 ], [ -87.274724354914696, 44.835188897990051 ], [ -87.276088236043321, 44.833171975311259 ], [ -87.282634865460693, 44.814817978934279 ], [ -87.294909795618267, 44.80917059543367 ], [ -87.304729739744332, 44.80453167327245 ], [ -87.307457502001569, 44.801304596986384 ], [ -87.313458578967499, 44.794245367610628 ], [ -87.313731355193227, 44.79384198307487 ], [ -87.313731355193227, 44.79384198307487 ], [ -87.31400413141894, 44.793640290806991 ], [ -87.314276907644668, 44.793035214003353 ], [ -87.315913564999008, 44.791018291324562 ], [ -87.320277984610584, 44.784967523288188 ], [ -87.319732432159142, 44.779118447519707 ], [ -87.319186879707701, 44.773067679483333 ], [ -87.318914103481973, 44.771857525876058 ], [ -87.318914103481973, 44.771655833608179 ], [ -87.318914103481973, 44.771252449072421 ], [ -87.32000520838487, 44.769638910929388 ], [ -87.32082353706204, 44.768025372786362 ], [ -87.33746288683119, 44.737771532604512 ], [ -87.339099544185544, 44.73293091817542 ], [ -87.339917872862713, 44.730510610960877 ], [ -87.341281753991325, 44.726275073335415 ], [ -87.341554530217053, 44.725468304263899 ], [ -87.34346396379712, 44.719215843959653 ], [ -87.348101159634439, 44.711551537780252 ], [ -87.34946504076305, 44.709131230565703 ], [ -87.353829460374641, 44.701870308922061 ], [ -87.354102236600369, 44.701466924386303 ], [ -87.354375012826083, 44.701265232118423 ], [ -87.361194418469182, 44.692794156867507 ], [ -87.368013824112268, 44.684524773884469 ], [ -87.368286600337996, 44.684121389348718 ], [ -87.373196572401042, 44.675650314097794 ], [ -87.378379320689788, 44.666574162043247 ], [ -87.386835383687227, 44.652254011023835 ], [ -87.393654789330327, 44.640555859486852 ], [ -87.401565299876324, 44.631278015164426 ], [ -87.40374750968212, 44.629059400217756 ], [ -87.405384167036459, 44.627244169806843 ], [ -87.417931873419747, 44.620790017234718 ], [ -87.435662328091809, 44.606469866215313 ], [ -87.437571761671876, 44.605058020340159 ], [ -87.437844537897604, 44.604654635804401 ], [ -87.446846153346485, 44.586300639427421 ], [ -87.46703159405007, 44.553626492031029 ], [ -87.467304370275784, 44.55342479976315 ], [ -87.467304370275784, 44.553021415227391 ], [ -87.468122698952953, 44.552012953887996 ], [ -87.473032671015986, 44.539306341011624 ], [ -87.481761510239153, 44.516111730205537 ], [ -87.48367094381922, 44.511271115776445 ], [ -87.483943720044948, 44.505825424543715 ], [ -87.483943720044948, 44.504413578668562 ], [ -87.483943720044948, 44.503808501864924 ], [ -87.486944258527899, 44.491505273524311 ], [ -87.489944797010878, 44.477185122504899 ], [ -87.492399783042387, 44.472747892611565 ], [ -87.494581992848168, 44.468310662718224 ], [ -87.495127545299624, 44.467302201378828 ], [ -87.495127545299624, 44.467302201378828 ], [ -87.498673636234031, 44.460646356538824 ], [ -87.498946412459759, 44.459637895199435 ], [ -87.498946412459759, 44.459637895199435 ], [ -87.498946412459759, 44.459436202931556 ], [ -87.499219188685487, 44.457419280252765 ], [ -87.499764741136929, 44.455805742109732 ], [ -87.499764741136929, 44.455604049841853 ], [ -87.502219727168438, 44.443300821501239 ], [ -87.5063113705543, 44.423736671516977 ], [ -87.507675251682926, 44.421518056570306 ], [ -87.511494118843061, 44.414458827194544 ], [ -87.511766895068774, 44.414055442658785 ], [ -87.51231244752023, 44.412038519979994 ], [ -87.512857999971686, 44.410223289569089 ], [ -87.515585762228909, 44.402155598853923 ], [ -87.518040748260432, 44.394289600406651 ], [ -87.517767972034704, 44.390054062781189 ], [ -87.517495195808976, 44.375733911761785 ], [ -87.517767972034704, 44.375330527226026 ], [ -87.518040748260432, 44.37452375815451 ], [ -87.51913185316333, 44.37210345093996 ], [ -87.521041286743397, 44.367464528778747 ], [ -87.521586839194839, 44.36665775970723 ], [ -87.533588993126699, 44.351127455080551 ], [ -87.533588993126699, 44.351127455080551 ], [ -87.541499503672696, 44.331159920560538 ], [ -87.542863384801308, 44.327529459738713 ], [ -87.545318370832831, 44.321478691702339 ], [ -87.544772818381375, 44.307158540682934 ], [ -87.544772818381375, 44.306956848415055 ], [ -87.544772818381375, 44.306755156147176 ], [ -87.541499503672696, 44.294048543270804 ], [ -87.541226727446968, 44.293645158735046 ], [ -87.541226727446968, 44.293241774199288 ], [ -87.541226727446968, 44.293241774199288 ], [ -87.54095395122124, 44.293040081931409 ], [ -87.526496811257871, 44.268030240714417 ], [ -87.526496811257871, 44.267828548446538 ], [ -87.526224035032158, 44.267626856178659 ], [ -87.52595125880643, 44.266820087107149 ], [ -87.525678482580702, 44.266820087107149 ], [ -87.525678482580702, 44.26661839483927 ], [ -87.525678482580702, 44.26661839483927 ], [ -87.525405706354974, 44.266416702571391 ], [ -87.525405706354974, 44.266215010303512 ], [ -87.525405706354974, 44.266013318035633 ], [ -87.525132930129246, 44.265811625767753 ], [ -87.524587377677804, 44.265004856696237 ], [ -87.524587377677804, 44.264601472160479 ], [ -87.52431460145209, 44.26419808762472 ], [ -87.523223496549178, 44.262382857213808 ], [ -87.522950720323465, 44.261777780410171 ], [ -87.522677944097737, 44.261374395874412 ], [ -87.521859615420567, 44.260164242267138 ], [ -87.521859615420567, 44.259962549999258 ], [ -87.521314062969111, 44.258954088659863 ], [ -87.521314062969111, 44.258954088659863 ], [ -87.515312986003195, 44.245440706711975 ], [ -87.515312986003195, 44.245440706711975 ], [ -87.515312986003195, 44.245239014444095 ], [ -87.508493580360096, 44.229708709817416 ], [ -87.508493580360096, 44.229708709817416 ], [ -87.508493580360096, 44.229507017549537 ], [ -87.507402475457198, 44.210749636636791 ], [ -87.512857999971686, 44.192799024795562 ], [ -87.519677405614772, 44.179890719651311 ], [ -87.539862846318343, 44.159721492863412 ], [ -87.549955566670121, 44.152863955755535 ], [ -87.563048825504879, 44.144191188236732 ], [ -87.563594377956321, 44.143989495968853 ], [ -87.567140468890727, 44.142981034629464 ], [ -87.567686021342183, 44.142577650093706 ], [ -87.570413783599435, 44.14177088102219 ], [ -87.596600301268921, 44.133098113503394 ], [ -87.597964182397533, 44.132694728967635 ], [ -87.599055287300445, 44.132291344431877 ], [ -87.600964720880512, 44.13168626762824 ], [ -87.603692483137735, 44.130476114020965 ], [ -87.621150161584069, 44.121803346502176 ], [ -87.645700021899216, 44.105264580536101 ], [ -87.6465183505764, 44.104659503732464 ], [ -87.646791126802128, 44.104256119196705 ], [ -87.647609455479284, 44.102037504250035 ], [ -87.647609455479284, 44.102037504250035 ], [ -87.651428322639418, 44.091549506320327 ], [ -87.654974413573839, 44.082473354265773 ], [ -87.655247189799553, 44.081868277462135 ], [ -87.653610532445214, 44.067144741906972 ], [ -87.653610532445214, 44.065934588299697 ], [ -87.656065518476737, 44.052017821816051 ], [ -87.656065518476737, 44.051816129548172 ], [ -87.671340987117276, 44.037294286260888 ], [ -87.683343141049122, 44.020150443491175 ], [ -87.686343679532087, 44.012486137311775 ], [ -87.691526427820833, 43.999779524435397 ], [ -87.695072518755254, 43.99070337238085 ], [ -87.695618071206695, 43.989493218773575 ], [ -87.695618071206695, 43.989493218773575 ], [ -87.698891385915388, 43.965895223431737 ], [ -87.699164162141102, 43.965693531163858 ], [ -87.700255267044014, 43.963676608485066 ], [ -87.700255267044014, 43.963273223949308 ], [ -87.702710253075523, 43.959037686323853 ], [ -87.702710253075523, 43.958835994055974 ], [ -87.704074134204149, 43.956617379109304 ], [ -87.70461968665559, 43.955810610037787 ], [ -87.706529120235658, 43.953793687358996 ], [ -87.709529658718623, 43.950768303340809 ], [ -87.716076288135994, 43.943709073965053 ], [ -87.71825849794179, 43.939473536339591 ], [ -87.719076826618959, 43.937859998196558 ], [ -87.719076826618959, 43.937859998196558 ], [ -87.719076826618959, 43.937053229125041 ], [ -87.720167931521857, 43.933019383767466 ], [ -87.720440707747571, 43.931809230160191 ], [ -87.720713483973299, 43.930195692017165 ], [ -87.721259036424755, 43.927775384802615 ], [ -87.722077365101924, 43.924144923980791 ], [ -87.723714022456264, 43.916884002337149 ], [ -87.724259574907705, 43.914463695122606 ], [ -87.726714560939229, 43.903370620389254 ], [ -87.726714560939229, 43.903168928121374 ], [ -87.726714560939229, 43.902967235853495 ], [ -87.728623994519296, 43.89893339049592 ], [ -87.728896770745024, 43.89812662142441 ], [ -87.730533428099363, 43.893891083798948 ], [ -87.730533428099363, 43.893891083798948 ], [ -87.731351756776533, 43.892277545655915 ], [ -87.733806742808042, 43.886428469887427 ], [ -87.734352295259498, 43.884613239476515 ], [ -87.735443400162396, 43.882192932261972 ], [ -87.736261728839565, 43.88037770185106 ], [ -87.735988952613837, 43.873721857011049 ], [ -87.734897847710954, 43.870494780724982 ], [ -87.728623994519296, 43.85254416888376 ], [ -87.728623994519296, 43.851737399812244 ], [ -87.729169546970752, 43.840644325078898 ], [ -87.729715099422194, 43.83176986529223 ], [ -87.727805665842126, 43.819063252415852 ], [ -87.726714560939229, 43.812810792111605 ], [ -87.726441784713501, 43.810390484897056 ], [ -87.726441784713501, 43.810390484897056 ], [ -87.726441784713501, 43.810390484897056 ], [ -87.700255267044014, 43.767430031838842 ], [ -87.700255267044014, 43.767228339570963 ], [ -87.699982490818286, 43.761580956070347 ], [ -87.699982490818286, 43.761379263802468 ], [ -87.702983029301237, 43.749681112265492 ], [ -87.702983029301237, 43.749479419997613 ], [ -87.70461968665559, 43.746252343711546 ], [ -87.705165239107032, 43.745042190104272 ], [ -87.708165777590011, 43.74302526742548 ], [ -87.708165777590011, 43.742823575157601 ], [ -87.708438553815725, 43.742823575157601 ], [ -87.709802434944351, 43.735764345781845 ], [ -87.708165777590011, 43.722856040637588 ], [ -87.707893001364283, 43.722049271566078 ], [ -87.703255805526965, 43.70692235147515 ], [ -87.702983029301237, 43.706317274671513 ], [ -87.702710253075523, 43.687559893758774 ], [ -87.703801357978421, 43.685341278812103 ], [ -87.706256344009944, 43.679492203043608 ], [ -87.706256344009944, 43.679492203043608 ], [ -87.726441784713501, 43.650448516469041 ], [ -87.733533966582328, 43.640162210807219 ], [ -87.734352295259498, 43.639153749467823 ], [ -87.735170623936668, 43.638145288128428 ], [ -87.735443400162396, 43.637741903592669 ], [ -87.735988952613837, 43.637136826789032 ], [ -87.736261728839565, 43.636733442253274 ], [ -87.737898386193905, 43.634514827306603 ], [ -87.738716714871089, 43.633506365967207 ], [ -87.742535582031223, 43.628665751538115 ], [ -87.742535582031223, 43.628665751538115 ], [ -87.780178701181114, 43.579856222711406 ], [ -87.781269806084012, 43.578444376836252 ], [ -87.78236091098691, 43.576629146425347 ], [ -87.789180316629995, 43.564930994888364 ], [ -87.789998645307179, 43.563115764477452 ], [ -87.790271421532907, 43.562308995405935 ], [ -87.79299918379013, 43.548997305725926 ], [ -87.794363064918755, 43.542946537689559 ], [ -87.797636379627448, 43.527214540795001 ], [ -87.79736360340172, 43.510675774828925 ], [ -87.793271960015858, 43.492725162987696 ], [ -87.807729099979241, 43.4610594769307 ], [ -87.827368988231356, 43.434839482106433 ], [ -87.855737715706638, 43.4053924109961 ], [ -87.865012107381261, 43.393492567191245 ], [ -87.86746709341277, 43.38925702956579 ], [ -87.86910375076711, 43.386231645547603 ], [ -87.872377065475803, 43.380180877511236 ], [ -87.877559813764549, 43.369289495045777 ], [ -87.882469785827581, 43.352145652276064 ], [ -87.888198086567783, 43.314630890450573 ], [ -87.888198086567783, 43.313420736843298 ], [ -87.888198086567783, 43.313420736843298 ], [ -87.888198086567783, 43.313420736843298 ], [ -87.888470862793511, 43.313420736843298 ], [ -87.888470862793511, 43.313219044575419 ], [ -87.889289191470681, 43.30757166107481 ], [ -87.89774525446812, 43.291637971912373 ], [ -87.900200240499629, 43.286999049751159 ], [ -87.901836897853983, 43.284175358000851 ], [ -87.90292800275688, 43.280343204911148 ], [ -87.903200778982608, 43.27993982037539 ], [ -87.903200778982608, 43.27973812810751 ], [ -87.903473555208322, 43.278729666768115 ], [ -87.904291883885492, 43.275905975017814 ], [ -87.906474093691287, 43.268443361106293 ], [ -87.906474093691287, 43.268443361106293 ], [ -87.906474093691287, 43.268241668838414 ], [ -87.906474093691287, 43.268039976570535 ], [ -87.906474093691287, 43.268039976570535 ], [ -87.906474093691287, 43.268039976570535 ], [ -87.906474093691287, 43.268039976570535 ], [ -87.906746869917015, 43.268039976570535 ], [ -87.907292422368457, 43.265619669355985 ], [ -87.907292422368457, 43.265619669355985 ], [ -87.907292422368457, 43.265619669355985 ], [ -87.90892907972281, 43.259770593587497 ], [ -87.910292960851422, 43.255333363694163 ], [ -87.911656841980033, 43.250492749265064 ], [ -87.911384065754319, 43.248072442050514 ], [ -87.910292960851422, 43.236575982781417 ], [ -87.910020184625694, 43.23597090597778 ], [ -87.897199702016678, 43.200069682295322 ], [ -87.897199702016678, 43.200069682295322 ], [ -87.897199702016678, 43.200069682295322 ], [ -87.897199702016678, 43.199464605491684 ], [ -87.896381373339494, 43.197044298277135 ], [ -87.895563044662339, 43.196237529205625 ], [ -87.892016953727918, 43.19200199158017 ], [ -87.888470862793511, 43.187766453954708 ], [ -87.887652534116341, 43.186556300347434 ], [ -87.886288652987716, 43.183329224061367 ], [ -87.88492477185909, 43.179900455507429 ], [ -87.88492477185909, 43.179900455507429 ], [ -87.884651995633376, 43.17969876323955 ], [ -87.881105904698956, 43.170622611184996 ], [ -87.886288652987716, 43.160336305523174 ], [ -87.888743639019225, 43.155495691094075 ], [ -87.889289191470681, 43.154487229754679 ], [ -87.889289191470681, 43.154487229754679 ], [ -87.889561967696409, 43.153882152951041 ], [ -87.89092584882502, 43.151058461200734 ], [ -87.892289729953646, 43.148638153986191 ], [ -87.896108597113781, 43.14339415502134 ], [ -87.898018030693848, 43.140368771003153 ], [ -87.899109135596746, 43.139158617395879 ], [ -87.900200240499629, 43.137343386984966 ], [ -87.901291345402541, 43.133309541627384 ], [ -87.901291345402541, 43.133309541627384 ], [ -87.901291345402541, 43.132906157091625 ], [ -87.900473016725357, 43.126048619983749 ], [ -87.900473016725357, 43.12584692771587 ], [ -87.900473016725357, 43.12584692771587 ], [ -87.893108058630816, 43.113947083911007 ], [ -87.879196471118888, 43.101643855570387 ], [ -87.877832589990277, 43.100635394230999 ], [ -87.876195932635937, 43.099021856087965 ], [ -87.872377065475803, 43.089744011765532 ], [ -87.872377065475803, 43.089542319497653 ], [ -87.872377065475803, 43.089542319497653 ], [ -87.872377065475803, 43.089138934961895 ], [ -87.871831513024347, 43.088332165890378 ], [ -87.870467631895735, 43.084500012800682 ], [ -87.866375988509873, 43.074415399406732 ], [ -87.866375988509873, 43.074415399406732 ], [ -87.870194855670007, 43.064330786012789 ], [ -87.870194855670007, 43.064330786012789 ], [ -87.875377603958754, 43.058481710244294 ], [ -87.876468708861665, 43.057473248904898 ], [ -87.881924233376139, 43.051220788600652 ], [ -87.882197009601867, 43.051220788600652 ], [ -87.882197009601867, 43.051019096332773 ], [ -87.889834743922137, 43.045775097367923 ], [ -87.894744715985155, 43.042548021081856 ], [ -87.895017492210883, 43.042346328813977 ], [ -87.895017492210883, 43.042346328813977 ], [ -87.895017492210883, 43.042144636546098 ], [ -87.896108597113781, 43.038110791188515 ], [ -87.896654149565222, 43.036698945313361 ], [ -87.898290806919562, 43.030648177277001 ], [ -87.89856358314529, 43.028832946866089 ], [ -87.89692692579095, 43.020563563883044 ], [ -87.896654149565222, 43.019756794811535 ], [ -87.896381373339494, 43.01854664120426 ], [ -87.896108597113781, 43.017538179864864 ], [ -87.895835820888053, 43.015722949453959 ], [ -87.893380834856544, 43.011487411828497 ], [ -87.889289191470681, 43.003621413381218 ], [ -87.889016415244953, 43.00321802884546 ], [ -87.888743639019225, 43.002612952041822 ], [ -87.887925310342069, 43.00079772163091 ], [ -87.887652534116341, 43.000596029363031 ], [ -87.887652534116341, 43.000596029363031 ], [ -87.878650918667446, 42.992326646379993 ], [ -87.857101596835264, 42.978006495360589 ], [ -87.845099442903404, 42.962072806198151 ], [ -87.844826666677676, 42.958845729912085 ], [ -87.843735561774793, 42.952391577339959 ], [ -87.843462785549065, 42.950576346929054 ], [ -87.842917233097609, 42.944928963428438 ], [ -87.842644456871895, 42.944727271160559 ], [ -87.842644456871895, 42.944122194356922 ], [ -87.844553890451962, 42.92375127530115 ], [ -87.846736100257743, 42.90075835676295 ], [ -87.847827205160655, 42.889665282029604 ], [ -87.847827205160655, 42.889261897493846 ], [ -87.845917771580588, 42.884219590796874 ], [ -87.835006722551626, 42.856789442365333 ], [ -87.831187855391491, 42.849931905257449 ], [ -87.827096212005628, 42.842267599078049 ], [ -87.825459554651275, 42.839242215059869 ], [ -87.824095673522663, 42.83662021557744 ], [ -87.823277344845494, 42.835410061970165 ], [ -87.822459016168324, 42.83440160063077 ], [ -87.803910232819106, 42.816249296521661 ], [ -87.803637456593378, 42.816047604253782 ], [ -87.796272498498823, 42.808383298074382 ], [ -87.794090288693042, 42.806164683127719 ], [ -87.789998645307179, 42.803744375913169 ], [ -87.786179778147044, 42.801324068698619 ], [ -87.785907001921316, 42.80112237643074 ], [ -87.773632071763743, 42.79345807025134 ], [ -87.773632071763743, 42.79345807025134 ], [ -87.766539889894915, 42.784986995000423 ], [ -87.769813204603608, 42.773692227999206 ], [ -87.771449861957947, 42.771675305320414 ], [ -87.777450938923877, 42.763809306873135 ], [ -87.778269267601047, 42.762800845533739 ], [ -87.778814820052503, 42.760582230587069 ], [ -87.78072425363257, 42.752917924407669 ], [ -87.780997029858284, 42.752111155336152 ], [ -87.781815358535454, 42.748480694514328 ], [ -87.782088134761182, 42.747673925442818 ], [ -87.781815358535454, 42.745858695031906 ], [ -87.781542582309726, 42.744648541424631 ], [ -87.781542582309726, 42.744648541424631 ], [ -87.781269806084012, 42.742833311013726 ], [ -87.779633148729658, 42.73254700535189 ], [ -87.778814820052503, 42.728513159994314 ], [ -87.778542043826775, 42.727303006387046 ], [ -87.780451477406842, 42.718630238868244 ], [ -87.782088134761182, 42.709957471349455 ], [ -87.78236091098691, 42.708142240938542 ], [ -87.783452015889793, 42.705116856920355 ], [ -87.783997568341249, 42.703705011045201 ], [ -87.785088673244147, 42.700881319294894 ], [ -87.786725330598486, 42.700679627027014 ], [ -87.794908617370197, 42.689989936829434 ], [ -87.802273575464753, 42.676678247149425 ], [ -87.802819127916194, 42.67566978581003 ], [ -87.803091904141922, 42.67566978581003 ], [ -87.803091904141922, 42.67546809354215 ], [ -87.803091904141922, 42.67546809354215 ], [ -87.803091904141922, 42.675266401274271 ], [ -87.805546890173446, 42.669013940970018 ], [ -87.805819666399174, 42.668207171898501 ], [ -87.807183547527785, 42.664576711076684 ], [ -87.809911309785022, 42.656912404897284 ], [ -87.809911309785022, 42.656912404897284 ], [ -87.811275190913648, 42.652878559539701 ], [ -87.813457400719443, 42.647432868306979 ], [ -87.814548505622327, 42.644004099753033 ], [ -87.819458477685359, 42.617380720393008 ], [ -87.819731253911073, 42.615767182249975 ], [ -87.819458477685359, 42.606691030195421 ], [ -87.815639610525224, 42.596001339997841 ], [ -87.815094058073782, 42.594186109586929 ], [ -87.81100241468792, 42.587328572479045 ], [ -87.811547967139376, 42.584908265264495 ], [ -87.812911848267987, 42.58067272763904 ], [ -87.813184624493715, 42.579260881763886 ], [ -87.813184624493715, 42.576840574549337 ], [ -87.813184624493715, 42.572806729191754 ], [ -87.813184624493715, 42.572403344655996 ], [ -87.812911848267987, 42.55828488590447 ], [ -87.812639072042259, 42.552032425600224 ], [ -87.812639072042259, 42.54759519570689 ], [ -87.812366295816531, 42.52984627613354 ], [ -87.809638533559308, 42.514719356042619 ], [ -87.800364141884685, 42.49192812977229 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "22", "geo_id": "0400000US56", "fips_state": "56", "name": "Wyoming", "iso_3166_2": "WY", "census": 563626, "pop_estimataes_base": 563767, "pop_2010": 564358, "pop_2011": 567631, "pop_2012": 576893, "pop_2013": 583223, "pop_2014": 584153 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.053189999192767, 43.000596029363031 ], [ -104.052917222967039, 42.754531462550702 ], [ -104.052917222967039, 42.749892540389482 ], [ -104.052644446741311, 42.6500548677894 ], [ -104.052644446741311, 42.633919486359083 ], [ -104.052644446741311, 42.630894102340903 ], [ -104.052644446741311, 42.611733336892399 ], [ -104.052644446741311, 42.61153164462452 ], [ -104.052644446741311, 42.610724875553004 ], [ -104.052644446741311, 42.258166791300582 ], [ -104.052917222967039, 42.249897408317544 ], [ -104.052644446741311, 42.170228962505355 ], [ -104.052644446741311, 42.16680019395141 ], [ -104.052917222967039, 42.137353122841084 ], [ -104.052644446741311, 42.133722662019267 ], [ -104.052644446741311, 42.125049894500464 ], [ -104.052917222967039, 42.089148670818012 ], [ -104.052917222967039, 42.07503021206648 ], [ -104.052917222967039, 42.021783453346444 ], [ -104.052644446741311, 42.016337762113707 ], [ -104.052644446741311, 42.001815918826424 ], [ -104.052644446741311, 41.998588842540357 ], [ -104.052644446741311, 41.994958381718533 ], [ -104.052917222967039, 41.994554997182775 ], [ -104.052917222967039, 41.975999308537915 ], [ -104.052644446741311, 41.972973924519735 ], [ -104.052917222967039, 41.914886551370586 ], [ -104.052917222967039, 41.906213783851797 ], [ -104.052917222967039, 41.88543948026026 ], [ -104.052644446741311, 41.733363510279531 ], [ -104.052917222967039, 41.697865671132831 ], [ -104.052917222967039, 41.645223989216419 ], [ -104.052917222967039, 41.638164759840656 ], [ -104.052917222967039, 41.622836147481856 ], [ -104.052644446741311, 41.613759995427301 ], [ -104.052917222967039, 41.592178922764255 ], [ -104.052644446741311, 41.564345389796955 ], [ -104.052644446741311, 41.552647238259979 ], [ -104.052644446741311, 41.552647238259979 ], [ -104.052644446741311, 41.541150778990875 ], [ -104.052644446741311, 41.539133856312091 ], [ -104.052371670515598, 41.522393398078137 ], [ -104.052371670515598, 41.515737553238125 ], [ -104.052371670515598, 41.417916803316828 ], [ -104.05209889428987, 41.407630497655006 ], [ -104.052371670515598, 41.393310346635602 ], [ -104.052371670515598, 41.393310346635602 ], [ -104.052371670515598, 41.321104514734927 ], [ -104.052371670515598, 41.320902822467048 ], [ -104.052644446741311, 41.316263900305842 ], [ -104.052371670515598, 41.278144061676713 ], [ -104.052644446741311, 41.277942369408834 ], [ -104.052644446741311, 41.275320369926405 ], [ -104.053189999192767, 41.114369940158994 ], [ -104.053189999192767, 41.104890403568689 ], [ -104.052917222967039, 41.090368560281405 ], [ -104.053189999192767, 41.089763483477768 ], [ -104.053189999192767, 41.017961036112851 ], [ -104.053189999192767, 41.016750882505576 ], [ -104.053189999192767, 41.001422270146776 ], [ -104.066828810478967, 41.001422270146776 ], [ -104.086195922505368, 41.001623962414655 ], [ -104.104471929628858, 41.001623962414655 ], [ -104.123566265429531, 41.001623962414655 ], [ -104.211400210112643, 41.001623962414655 ], [ -104.21412797236988, 41.001623962414655 ], [ -104.214673524821322, 41.001623962414655 ], [ -104.496996918445575, 41.001825654682534 ], [ -104.497269694671303, 41.001825654682534 ], [ -104.882429725393479, 40.998195193860717 ], [ -104.943258823729906, 40.998195193860717 ], [ -105.254769273506611, 40.998195193860717 ], [ -105.256405930860964, 40.998195193860717 ], [ -105.276864147790249, 40.998195193860717 ], [ -105.277136924015977, 40.998195193860717 ], [ -105.724762710428919, 40.996985040253442 ], [ -105.730491011169121, 40.996985040253442 ], [ -106.061095796746514, 40.996985040253442 ], [ -106.190664503965365, 40.997993501592838 ], [ -106.321051539861401, 40.999203655200112 ], [ -106.386245057809418, 41.001220577878897 ], [ -106.39197335854962, 41.001220577878897 ], [ -106.430980358828151, 41.001825654682534 ], [ -106.437526988245509, 41.001825654682534 ], [ -106.439436421825576, 41.002027346950413 ], [ -106.453893561788959, 41.002027346950413 ], [ -106.857875152086066, 41.003035808289809 ], [ -107.000537118139675, 41.003439192825567 ], [ -107.317775868656597, 41.003035808289809 ], [ -107.918429117700654, 41.002027346950413 ], [ -108.250670560632386, 41.000212116539501 ], [ -109.050177678229176, 41.000615501075259 ], [ -109.207296784246154, 41.001422270146776 ], [ -109.676471892491293, 40.998396886128596 ], [ -109.71384223541547, 40.998195193860717 ], [ -109.715478892769809, 40.998195193860717 ], [ -109.854321991663284, 40.997590117057079 ], [ -109.855413096566181, 40.997590117057079 ], [ -109.99971171997413, 40.9973884247892 ], [ -110.000802824877027, 40.9973884247892 ], [ -110.048538664378711, 40.997186732521321 ], [ -110.500801646628972, 40.994766425306779 ], [ -111.046626874302518, 40.997993501592838 ], [ -111.046626874302518, 41.251722374584574 ], [ -111.046626874302518, 41.36063619923921 ], [ -111.046354098076804, 41.377780042008922 ], [ -111.046354098076804, 41.579875694423635 ], [ -111.046626874302518, 42.001614226558544 ], [ -111.047172426753974, 42.142597121805935 ], [ -111.047172426753974, 42.149051274378067 ], [ -111.047172426753974, 42.182733883113848 ], [ -111.047172426753974, 42.194835419186589 ], [ -111.047172426753974, 42.280756325303024 ], [ -111.047172426753974, 42.349331696381867 ], [ -111.046354098076804, 42.513105817899586 ], [ -111.043899112045281, 42.964493113412701 ], [ -111.043899112045281, 42.969535420109672 ], [ -111.043899112045281, 42.974981111342402 ], [ -111.044171888271009, 43.018748333472139 ], [ -111.044171888271009, 43.019958487079414 ], [ -111.044171888271009, 43.022580486561836 ], [ -111.043899112045281, 43.024597409240627 ], [ -111.043899112045281, 43.024799101508506 ], [ -111.043899112045281, 43.026412639651539 ], [ -111.044171888271009, 43.029236331401847 ], [ -111.043899112045281, 43.041337867474581 ], [ -111.044171888271009, 43.044564943760648 ], [ -111.044171888271009, 43.04638017417156 ], [ -111.044171888271009, 43.05485124942247 ], [ -111.044171888271009, 43.060296940655206 ], [ -111.044171888271009, 43.066146016423694 ], [ -111.044171888271009, 43.068162939102486 ], [ -111.044171888271009, 43.07239847672794 ], [ -111.044171888271009, 43.177076763757121 ], [ -111.044171888271009, 43.177278456025 ], [ -111.044171888271009, 43.184539377668642 ], [ -111.044171888271009, 43.189178299829862 ], [ -111.044171888271009, 43.195632452401988 ], [ -111.044717440722451, 43.315639351789969 ], [ -111.045262993173907, 43.501196238238613 ], [ -111.045808545625349, 43.659121283987837 ], [ -111.045808545625349, 43.681105741186641 ], [ -111.046081321851076, 43.684937894276345 ], [ -111.046081321851076, 43.685744663347862 ], [ -111.046081321851076, 43.687761586026653 ], [ -111.046354098076804, 43.722049271566078 ], [ -111.046354098076804, 43.726486501459405 ], [ -111.046354098076804, 43.726889885995163 ], [ -111.046626874302518, 43.815836176129793 ], [ -111.047990755431144, 43.983039066201442 ], [ -111.048809084108314, 44.060488897066968 ], [ -111.048809084108314, 44.060892281602726 ], [ -111.048536307882586, 44.06290920428151 ], [ -111.049081860334041, 44.435838207589711 ], [ -111.049081860334041, 44.438056822536382 ], [ -111.049081860334041, 44.474159738486719 ], [ -111.055082937299971, 44.625025554860173 ], [ -111.055628489751413, 44.666170777507489 ], [ -111.056992370880039, 44.866652891779168 ], [ -111.055628489751413, 44.933614724714985 ], [ -111.056174042202855, 44.935833339661656 ], [ -111.044171888271009, 45.001383326722319 ], [ -110.875868956999355, 45.002190095793836 ], [ -110.75066466939208, 44.997954558168374 ], [ -110.705383815921905, 44.992307174667765 ], [ -110.55235635329079, 44.992307174667765 ], [ -110.54717360500203, 44.992508866935644 ], [ -110.221478791487684, 44.996139327757462 ], [ -110.110186091392322, 45.004005326204748 ], [ -110.026443790095072, 45.00360194166899 ], [ -110.025625461417903, 45.00360194166899 ], [ -109.798675641615603, 45.002190095793836 ], [ -109.269216987485493, 45.005215479812016 ], [ -109.263488686745291, 45.005417172079895 ], [ -109.103369042245347, 45.005820556615653 ], [ -109.082910825316048, 44.999568096311407 ], [ -109.062179832161036, 44.999568096311407 ], [ -108.621373451391179, 45.000374865382923 ], [ -108.578547583952528, 45.000576557650803 ], [ -108.565999877569226, 45.000576557650803 ], [ -108.249306679503775, 44.999366404043528 ], [ -108.125739049250825, 45.000979942186561 ], [ -107.911609712057555, 45.000979942186561 ], [ -107.608828101504017, 45.000778249918682 ], [ -107.607736996601119, 45.000979942186561 ], [ -107.134197468744389, 45.000173173115044 ], [ -107.080733328502504, 44.996744404561099 ], [ -106.892790508978734, 44.995937635489582 ], [ -106.888698865592872, 44.995937635489582 ], [ -106.263495756233652, 44.993719020542912 ], [ -106.024816558725234, 44.993719020542912 ], [ -105.92825377481897, 44.993719020542912 ], [ -105.918979383144347, 44.997752865900495 ], [ -105.848057564456127, 45.000374865382923 ], [ -105.076646398108892, 45.000374865382923 ], [ -105.038457726507545, 45.000374865382923 ], [ -105.025364467672802, 45.000374865382923 ], [ -105.019363390706872, 45.000374865382923 ], [ -105.018272285803988, 45.000374865382923 ], [ -104.765135948332187, 44.999164711775649 ], [ -104.759953200043441, 44.999164711775649 ], [ -104.665299849717229, 44.998559634972011 ], [ -104.663935968588618, 44.998963019507769 ], [ -104.47053762455036, 44.998357942704132 ], [ -104.469992072098904, 44.998357942704132 ], [ -104.057827195030072, 44.997349481364736 ], [ -104.055917761450004, 44.768227065054241 ], [ -104.055917761450004, 44.768025372786362 ], [ -104.055917761450004, 44.723653073852986 ], [ -104.055917761450004, 44.723451381585107 ], [ -104.055644985224291, 44.700458463046907 ], [ -104.055917761450004, 44.693802618206902 ], [ -104.055917761450004, 44.691382310992353 ], [ -104.055917761450004, 44.57097202706862 ], [ -104.055917761450004, 44.5433401863692 ], [ -104.055917761450004, 44.51772526834857 ], [ -104.054553880321379, 44.18029410418707 ], [ -104.054553880321379, 44.141165804218552 ], [ -104.054826656547107, 43.938061690464437 ], [ -104.055099432772835, 43.936448152321404 ], [ -104.055099432772835, 43.853552630223156 ], [ -104.055099432772835, 43.750487881337008 ], [ -104.055099432772835, 43.747059112783063 ], [ -104.054826656547107, 43.583890068068982 ], [ -104.054826656547107, 43.583486683533224 ], [ -104.054826656547107, 43.579452838175648 ], [ -104.055099432772835, 43.558678534584118 ], [ -104.054826656547107, 43.503414853185276 ], [ -104.054826656547107, 43.503011468649518 ], [ -104.054826656547107, 43.477799935164654 ], [ -104.054826656547107, 43.428990406337945 ], [ -104.054553880321379, 43.390870567708816 ], [ -104.054281104095665, 43.325925657451791 ], [ -104.054281104095665, 43.304344584788751 ], [ -104.054008327869937, 43.297083663145102 ], [ -104.054008327869937, 43.28982274150146 ], [ -104.053189999192767, 43.000596029363031 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "23", "geo_id": "0400000US01", "fips_state": "01", "name": "Alabama", "iso_3166_2": "AL", "census": 4779736, "pop_estimataes_base": 4780127, "pop_2010": 4785822, "pop_2011": 4801695, "pop_2012": 4817484, "pop_2013": 4833996, "pop_2014": 4849377 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.12469507427042, 30.283696847326716 ], [ -88.086779178894801, 30.259897159716999 ], [ -88.074777024962941, 30.249207469519416 ], [ -88.075868129865839, 30.246182085501232 ], [ -88.078868668348804, 30.244971931893957 ], [ -88.109419605629881, 30.242148240143653 ], [ -88.120057878433116, 30.246182085501232 ], [ -88.136970004427994, 30.249207469519416 ], [ -88.166702613031902, 30.249207469519416 ], [ -88.208437375567655, 30.244770239626078 ], [ -88.280450299158787, 30.230248396338794 ], [ -88.304727383248206, 30.228029781392124 ], [ -88.313456222471373, 30.230046704070915 ], [ -88.309910131536952, 30.233273780356978 ], [ -88.299817411185174, 30.231861934481827 ], [ -88.2807230753845, 30.233878857160615 ], [ -88.258355424875134, 30.239526240661228 ], [ -88.224531172885378, 30.245577008697595 ], [ -88.173249242449288, 30.252434545805478 ], [ -88.158246550034463, 30.252434545805478 ], [ -88.141061647813856, 30.255056545287907 ], [ -88.13069615123635, 30.26211577466367 ], [ -88.12469507427042, 30.27361223393277 ], [ -88.12469507427042, 30.283696847326716 ] ] ], [ [ [ -85.605061077258611, 34.984740227049521 ], [ -85.595241133132546, 34.924232546685829 ], [ -85.595241133132546, 34.924232546685829 ], [ -85.583238979200701, 34.860296097768199 ], [ -85.552415265693895, 34.708421820055349 ], [ -85.552415265693895, 34.70822012778747 ], [ -85.541231440439219, 34.656788599478332 ], [ -85.541231440439219, 34.656788599478332 ], [ -85.534412034796105, 34.623711067546182 ], [ -85.527047076701564, 34.58861661293524 ], [ -85.51395381786682, 34.525285240821248 ], [ -85.513681041641092, 34.524075087213973 ], [ -85.513681041641092, 34.524075087213973 ], [ -85.512044384286753, 34.518226011445485 ], [ -85.508498293352346, 34.501283860943651 ], [ -85.502497216386416, 34.474458789315747 ], [ -85.502224440160688, 34.473853712512117 ], [ -85.462399111205002, 34.286279903384681 ], [ -85.458580244044867, 34.269337752882848 ], [ -85.458034691593411, 34.265707292061023 ], [ -85.455306929336189, 34.252798986916773 ], [ -85.455034153110461, 34.250782064237981 ], [ -85.421755453572132, 34.080755482416023 ], [ -85.398842250611324, 33.964177351581981 ], [ -85.38656732045375, 33.901652748539505 ], [ -85.361744683912875, 33.773981542972123 ], [ -85.360380802784249, 33.767930774935756 ], [ -85.338013152274897, 33.653167874512626 ], [ -85.32246490740863, 33.574104505504074 ], [ -85.315099949314089, 33.535984666874953 ], [ -85.314008844411191, 33.530135591106458 ], [ -85.314008844411191, 33.529732206570699 ], [ -85.304461676510854, 33.482939600422782 ], [ -85.29382340370762, 33.428079303559706 ], [ -85.2365403963056, 33.129574747098843 ], [ -85.232448752919737, 33.107993674435797 ], [ -85.223174361245128, 33.062612914163033 ], [ -85.221810480116517, 33.05555368478727 ], [ -85.184167360966597, 32.870601875142256 ], [ -85.12333826263017, 32.772176048417329 ], [ -85.132067101853337, 32.764310049970049 ], [ -85.136704297690642, 32.746561130396699 ], [ -85.137249850142098, 32.745149284521545 ], [ -85.114609423407018, 32.685650065497256 ], [ -85.104789479280953, 32.642487920171156 ], [ -85.082421828771587, 32.606990081024463 ], [ -85.080239618965805, 32.603561312470518 ], [ -85.079966842740077, 32.602956235666881 ], [ -85.069601346162557, 32.583997162486256 ], [ -85.044505933395953, 32.559592398072908 ], [ -85.022411059112329, 32.542851939838954 ], [ -85.00713559047179, 32.523892866658329 ], [ -85.001407289731588, 32.513001484192863 ], [ -85.00113451350586, 32.510379484710441 ], [ -85.00113451350586, 32.510177792442562 ], [ -85.000861737280133, 32.506547331620737 ], [ -84.998133975022895, 32.469839338866763 ], [ -84.983949611285254, 32.445636266721294 ], [ -84.97931241544795, 32.412155350253386 ], [ -84.987222925993933, 32.381699817803664 ], [ -84.987495702219661, 32.381296433267906 ], [ -85.008226695374674, 32.336722442066652 ], [ -85.00713559047179, 32.328453059083614 ], [ -85.00195284218303, 32.321998906511489 ], [ -84.93866875781508, 32.300619526116321 ], [ -84.916573883531441, 32.281257068399938 ], [ -84.908936149211172, 32.263508148826588 ], [ -84.921756631820202, 32.233254308644746 ], [ -84.923666065400269, 32.231439078233834 ], [ -84.964855275484581, 32.194932777747745 ], [ -84.995951765217114, 32.184848164353795 ], [ -85.047779248104646, 32.14208940356346 ], [ -85.055962534876357, 32.063026034554902 ], [ -85.050234234136155, 32.024099426854264 ], [ -85.062236388068015, 31.99182866399363 ], [ -85.072329108419808, 31.96480190009785 ], [ -85.082149052545873, 31.944632673309954 ], [ -85.10669891286102, 31.915185602199628 ], [ -85.132885430530507, 31.888360530571724 ], [ -85.141887045979402, 31.839954386280773 ], [ -85.14134149352796, 31.783077166738906 ], [ -85.138613731270709, 31.780455167256481 ], [ -85.130703220724712, 31.772185784273443 ], [ -85.125247696210238, 31.767143477576468 ], [ -85.124429367533068, 31.763109632218892 ], [ -85.118973843018594, 31.732654099769167 ], [ -85.122247157727287, 31.7227711786431 ], [ -85.126611577338863, 31.71672041060673 ], [ -85.125520472435966, 31.6949376456758 ], [ -85.087059024608891, 31.640884117884241 ], [ -85.06523692655098, 31.624345351918166 ], [ -85.059508625810778, 31.621723352435737 ], [ -85.057599192230711, 31.618697968417557 ], [ -85.041232618687275, 31.541046445284156 ], [ -85.046960919427477, 31.517448449942314 ], [ -85.067964688808217, 31.4274936984683 ], [ -85.087604577060347, 31.308696952687594 ], [ -85.10151616457226, 31.283283726934844 ], [ -85.111881661149766, 31.258475577985735 ], [ -85.10751724153819, 31.186471438352946 ], [ -85.100152283443634, 31.16549544249353 ], [ -85.092241772897651, 31.160251443528679 ], [ -85.083512933674484, 31.159646366725042 ], [ -85.076693528031385, 31.157024367242613 ], [ -85.035504317947073, 31.108214838415908 ], [ -85.029776017206871, 31.09611330234317 ], [ -85.022138282886601, 31.075540691019516 ], [ -84.999497856151521, 31.013822857048552 ], [ -85.002498394634472, 31.000712859636423 ], [ -85.024047716466669, 31.000712859636423 ], [ -85.027593807401075, 31.000712859636423 ], [ -85.030048793432599, 31.000712859636423 ], [ -85.031139898335482, 31.000712859636423 ], [ -85.052143667716223, 31.000511167368543 ], [ -85.054871429973474, 31.000511167368543 ], [ -85.057599192230711, 31.000511167368543 ], [ -85.145705913139537, 31.000712859636423 ], [ -85.151979766331181, 31.000914551904302 ], [ -85.152252542556909, 31.000914551904302 ], [ -85.154434752362704, 31.000914551904302 ], [ -85.488312852648775, 30.997082398814598 ], [ -85.497860020549112, 30.996880706546719 ], [ -85.498405573000554, 30.996880706546719 ], [ -86.034956408999506, 30.993250245724902 ], [ -86.05241408744584, 30.993250245724902 ], [ -86.056232954605974, 30.993048553457022 ], [ -86.162888458864018, 30.99365363026066 ], [ -86.168889535829948, 30.99365363026066 ], [ -86.175163389021591, 30.993855322528539 ], [ -86.180346137310352, 30.994057014796418 ], [ -86.187165542953437, 30.994057014796418 ], [ -86.28918385137419, 30.993855322528539 ], [ -86.304732096240457, 30.994057014796418 ], [ -86.365015642125442, 30.994460399332173 ], [ -86.369380061737019, 30.994460399332173 ], [ -86.374562810025779, 30.994460399332173 ], [ -86.38874717376342, 30.994258707064294 ], [ -86.38874717376342, 30.994258707064294 ], [ -86.392020488472099, 30.994258707064294 ], [ -86.404840971081128, 30.994057014796418 ], [ -86.454759020388607, 30.993855322528539 ], [ -86.458305111323028, 30.994057014796418 ], [ -86.512860356467797, 30.99365363026066 ], [ -86.519952538336625, 30.993250245724902 ], [ -86.563323958226732, 30.995267168403689 ], [ -86.567688377838309, 30.99506547613581 ], [ -86.664796714196029, 30.994460399332173 ], [ -86.678435525482229, 30.994460399332173 ], [ -86.688255469608279, 30.99506547613581 ], [ -86.725353036306728, 30.996880706546719 ], [ -86.727262469886796, 30.996880706546719 ], [ -86.728353574789693, 30.99667901427884 ], [ -86.785636582191728, 30.996880706546719 ], [ -86.785909358417442, 30.996880706546719 ], [ -86.830371883210432, 30.997485783350356 ], [ -86.832008540564786, 30.997284091082477 ], [ -86.87292497442337, 30.997687475618235 ], [ -86.888200443063909, 30.997485783350356 ], [ -87.027043541957383, 30.999301013761269 ], [ -87.036317933632006, 30.999301013761269 ], [ -87.039864024566413, 30.999502706029148 ], [ -87.053775612078326, 30.999099321493389 ], [ -87.064141108655832, 30.999099321493389 ], [ -87.068505528267423, 30.999099321493389 ], [ -87.162613326142178, 30.999099321493389 ], [ -87.16315887859362, 30.999099321493389 ], [ -87.255084466662566, 30.998292552421873 ], [ -87.255630019114022, 30.998292552421873 ], [ -87.256993900242648, 30.998292552421873 ], [ -87.258085005145546, 30.998292552421873 ], [ -87.259721662499885, 30.998090860153994 ], [ -87.260539991177055, 30.998292552421873 ], [ -87.265449963240087, 30.998292552421873 ], [ -87.288908718652351, 30.998292552421873 ], [ -87.291090928458132, 30.998292552421873 ], [ -87.301456425035639, 30.998494244689752 ], [ -87.303911411067162, 30.998090860153994 ], [ -87.312094697838873, 30.998494244689752 ], [ -87.333916795896783, 30.998292552421873 ], [ -87.355738893954708, 30.998292552421873 ], [ -87.363922180726419, 30.998292552421873 ], [ -87.367741047886554, 30.998292552421873 ], [ -87.425842383965744, 30.998090860153994 ], [ -87.43238901338313, 30.998292552421873 ], [ -87.44984669182945, 30.998292552421873 ], [ -87.455574992569652, 30.998292552421873 ], [ -87.458575531052617, 30.998292552421873 ], [ -87.461576069535582, 30.998292552421873 ], [ -87.461848845761295, 30.998292552421873 ], [ -87.466758817824342, 30.998090860153994 ], [ -87.466758817824342, 30.998090860153994 ], [ -87.478760971756188, 30.998292552421873 ], [ -87.479579300433358, 30.998292552421873 ], [ -87.480124852884813, 30.998292552421873 ], [ -87.54859168554151, 30.997889167886115 ], [ -87.57123211227659, 30.997889167886115 ], [ -87.599055287300445, 30.997485783350356 ], [ -87.599055287300445, 30.997485783350356 ], [ -87.594145315237398, 30.976308095223068 ], [ -87.601237497106226, 30.936373026183034 ], [ -87.622241266486967, 30.897446418482396 ], [ -87.635061749095996, 30.865982424693275 ], [ -87.624150700067034, 30.845813197905379 ], [ -87.532497888223801, 30.743555218090748 ], [ -87.503038055845622, 30.722377529963456 ], [ -87.497582531331147, 30.720158915016789 ], [ -87.481215957787697, 30.716528454194965 ], [ -87.449301139378008, 30.698981226889497 ], [ -87.407020824390798, 30.671752770725838 ], [ -87.396928104039006, 30.65360046661673 ], [ -87.394200341781783, 30.641700622811872 ], [ -87.394473118007497, 30.6251618568458 ], [ -87.44984669182945, 30.514634494048128 ], [ -87.44984669182945, 30.514432801780249 ], [ -87.44821003447511, 30.513020955905095 ], [ -87.430479579803063, 30.491036498706286 ], [ -87.419295754548372, 30.410157899286826 ], [ -87.427479041320083, 30.408342668875918 ], [ -87.440572300154841, 30.391400518374084 ], [ -87.451483349183803, 30.367197446228609 ], [ -87.450937796732347, 30.346221450369196 ], [ -87.450119468055178, 30.311126995758258 ], [ -87.452301677860959, 30.300235613292791 ], [ -87.51831352448616, 30.280469771040657 ], [ -87.544500042155647, 30.275629156611558 ], [ -87.558138853441847, 30.274419003004287 ], [ -87.581324832628383, 30.269175004039433 ], [ -87.656883847153907, 30.249610854055174 ], [ -87.735443400162396, 30.240736394268499 ], [ -87.800636918110399, 30.229441627267278 ], [ -87.838552813486032, 30.227223012320607 ], [ -87.926113981943416, 30.230450088606673 ], [ -87.962120443738968, 30.229441627267278 ], [ -88.000036339114587, 30.225811166445457 ], [ -88.014493479077956, 30.222382397891515 ], [ -88.028405066589869, 30.22117224428424 ], [ -88.029223395267053, 30.222785782427273 ], [ -88.024040646978293, 30.230450088606673 ], [ -87.966757639576272, 30.235694087571524 ], [ -87.949027184904224, 30.256468391163057 ], [ -87.935933926069481, 30.261510697860032 ], [ -87.918203471397419, 30.253241314876995 ], [ -87.913839051785828, 30.247795623644265 ], [ -87.900473016725357, 30.241543163340015 ], [ -87.893108058630816, 30.239324548393348 ], [ -87.879469247344616, 30.238517779321832 ], [ -87.860102135318215, 30.240333009732744 ], [ -87.817821820331005, 30.25424977621639 ], [ -87.802000799239039, 30.253039622609116 ], [ -87.787816435501384, 30.25424977621639 ], [ -87.766539889894915, 30.262317466931549 ], [ -87.755356064640239, 30.277242694754591 ], [ -87.755628840865967, 30.291159461238237 ], [ -87.772813743086573, 30.311732072561895 ], [ -87.796818050950264, 30.324236993170388 ], [ -87.80936575733358, 30.332708068421304 ], [ -87.829823974262865, 30.353885756548596 ], [ -87.837188932357407, 30.369416061175276 ], [ -87.845099442903404, 30.377483751890434 ], [ -87.853828282126571, 30.37849221322983 ], [ -87.865012107381261, 30.383534519926805 ], [ -87.906474093691287, 30.40935113021531 ], [ -87.90892907972281, 30.414191744644405 ], [ -87.914111828011556, 30.446059122969281 ], [ -87.920112904977486, 30.470665579650515 ], [ -87.924204548363349, 30.476111270883244 ], [ -87.931842282683618, 30.481153577580219 ], [ -87.933478940037958, 30.487406037884469 ], [ -87.911111289528591, 30.525929261049349 ], [ -87.905382988788389, 30.537627412586328 ], [ -87.901836897853983, 30.550939102266341 ], [ -87.904291883885492, 30.566066022357262 ], [ -87.907837974819898, 30.573125251733025 ], [ -87.911384065754319, 30.576352328019091 ], [ -87.91493015668874, 30.5858318646094 ], [ -87.912475170657217, 30.615884012523367 ], [ -87.919294576300302, 30.636053239311259 ], [ -87.931023954006434, 30.652793697545214 ], [ -87.936752254746636, 30.65743261970643 ], [ -87.956119366773038, 30.658844465581584 ], [ -87.981214779539641, 30.67518153927978 ], [ -88.00849240211204, 30.684862768137968 ], [ -88.012311269272175, 30.683249229994939 ], [ -88.022131213398225, 30.673971385672505 ], [ -88.02676840923553, 30.661466465064009 ], [ -88.034678919781527, 30.653802158884609 ], [ -88.044226087681864, 30.652592005277334 ], [ -88.061956542353926, 30.644927699097934 ], [ -88.059501556322402, 30.619111088809429 ], [ -88.054046031807928, 30.612455243969421 ], [ -88.064957080836876, 30.588252171823946 ], [ -88.074777024962941, 30.578974327501516 ], [ -88.085415297766176, 30.563242330606954 ], [ -88.081596430606041, 30.546300180105124 ], [ -88.082687535508938, 30.528752952799657 ], [ -88.090598046054936, 30.523508953834799 ], [ -88.100963542632442, 30.509793879619032 ], [ -88.103691304889679, 30.500919419832357 ], [ -88.10287297621251, 30.493053421385078 ], [ -88.09687189924658, 30.471068964186273 ], [ -88.100690766406714, 30.461186043060202 ], [ -88.106419067146916, 30.452714967809285 ], [ -88.103964081115407, 30.427301742056535 ], [ -88.107237395824086, 30.377282059622555 ], [ -88.115420682595811, 30.356507756031021 ], [ -88.12469507427042, 30.341582528207979 ], [ -88.127968388979099, 30.338557144189796 ], [ -88.136151675750824, 30.320808224616446 ], [ -88.155791564002953, 30.327262377188575 ], [ -88.171885361320662, 30.324640377706146 ], [ -88.191525249572777, 30.316976071526746 ], [ -88.19561689295864, 30.321211609152204 ], [ -88.198344655215877, 30.338758836457671 ], [ -88.196435221635809, 30.343599450886771 ], [ -88.188524711089826, 30.345011296761921 ], [ -88.188524711089826, 30.348036680780105 ], [ -88.19998131257023, 30.362356831799513 ], [ -88.20461850840752, 30.362155139531634 ], [ -88.260810410906657, 30.38232436631953 ], [ -88.282632508964568, 30.382929443123167 ], [ -88.290543019510565, 30.370827907050426 ], [ -88.311546788891306, 30.368810984371638 ], [ -88.316456760954338, 30.370021137978913 ], [ -88.319730075663017, 30.380307443640739 ], [ -88.332277782046319, 30.388375134355897 ], [ -88.341279397495214, 30.389383595695293 ], [ -88.363919824230294, 30.387971749820139 ], [ -88.374558097033528, 30.385551442605593 ], [ -88.395016313962827, 30.369416061175276 ], [ -88.402381272057369, 30.510802340958428 ], [ -88.403472376960266, 30.533190182692991 ], [ -88.404017929411708, 30.543274796086941 ], [ -88.404017929411708, 30.545090026497849 ], [ -88.407564020346115, 30.62274154963125 ], [ -88.407564020346115, 30.631616009417925 ], [ -88.408109572797571, 30.637061700650655 ], [ -88.409473453926182, 30.668727386707651 ], [ -88.41138288750625, 30.706242148533139 ], [ -88.411655663731977, 30.712897993373147 ], [ -88.412201216183433, 30.730445220678615 ], [ -88.412201216183433, 30.731857066553765 ], [ -88.412473992409161, 30.735689219643469 ], [ -88.425567251243905, 30.998292552421873 ], [ -88.425840027469633, 31.000107782832785 ], [ -88.425840027469633, 31.001116244172181 ], [ -88.432113880661277, 31.114265606452278 ], [ -88.438114957627192, 31.230036968214797 ], [ -88.438114957627192, 31.231247121822072 ], [ -88.44520713949602, 31.35589294337127 ], [ -88.44520713949602, 31.35589294337127 ], [ -88.448753230430441, 31.420837853628296 ], [ -88.448753230430441, 31.42124123816405 ], [ -88.449571559107596, 31.435763081451338 ], [ -88.459391503233661, 31.621723352435737 ], [ -88.459664279459389, 31.623941967382407 ], [ -88.464301475296693, 31.697963029693987 ], [ -88.464301475296693, 31.697963029693987 ], [ -88.471120880939793, 31.851047461014119 ], [ -88.471120880939793, 31.851450845549877 ], [ -88.470029776036895, 31.893806221804457 ], [ -88.468938671133998, 31.930312522290549 ], [ -88.46866589490827, 31.933136214040854 ], [ -88.455027083622085, 32.039629731480943 ], [ -88.455027083622085, 32.040638192820339 ], [ -88.438660510078648, 32.172141551477424 ], [ -88.438660510078648, 32.172746628281061 ], [ -88.431841104435549, 32.227606925144137 ], [ -88.421475607858042, 32.30868721683148 ], [ -88.40374515318598, 32.44967011207887 ], [ -88.40374515318598, 32.449871804346749 ], [ -88.388742460771169, 32.578148086717768 ], [ -88.383014160030967, 32.626755923276598 ], [ -88.383014160030967, 32.626957615544477 ], [ -88.347826026912585, 32.929092632827157 ], [ -88.34046106881803, 32.991213851333882 ], [ -88.304454607022478, 33.288306561919583 ], [ -88.291088571962007, 33.399035616985138 ], [ -88.277449760675808, 33.512386671533108 ], [ -88.276904208224366, 33.51642051689069 ], [ -88.274721998418585, 33.533967744196161 ], [ -88.270084802581266, 33.570877429218008 ], [ -88.26953925012981, 33.572894351896799 ], [ -88.268993697678383, 33.576928197254375 ], [ -88.268175369001199, 33.584995887969541 ], [ -88.267084264098315, 33.592055117345296 ], [ -88.267084264098315, 33.594273732291967 ], [ -88.256445991295067, 33.682009868819321 ], [ -88.256173215069339, 33.682816637890831 ], [ -88.254536557714999, 33.695724943035088 ], [ -88.254536557714999, 33.698750327053268 ], [ -88.248262704523356, 33.744937856397556 ], [ -88.226440606465445, 33.911535669665575 ], [ -88.226440606465445, 33.911737361933454 ], [ -88.226440606465445, 33.912947515540722 ], [ -88.207346270664772, 34.058367640681453 ], [ -88.203527403504637, 34.086604558184511 ], [ -88.176795333383694, 34.293944209564081 ], [ -88.17597700470651, 34.302213592547119 ], [ -88.173522018675001, 34.320970973459865 ], [ -88.165884284354732, 34.380873577019912 ], [ -88.165611508129018, 34.383092191966583 ], [ -88.155246011551498, 34.46316402231453 ], [ -88.139970542910959, 34.581759075827357 ], [ -88.139152214233789, 34.587809843863724 ], [ -88.138606661782347, 34.589221689738878 ], [ -88.118421221078762, 34.724355509217787 ], [ -88.097963004149477, 34.892163476093074 ], [ -88.124967850496148, 34.902248089487024 ], [ -88.19998131257023, 34.995631609514987 ], [ -88.182523634123896, 35.007733145587721 ], [ -87.985033646699776, 35.006321299712567 ], [ -87.878105366216005, 35.005514530641051 ], [ -87.877832589990277, 35.005514530641051 ], [ -87.872649841701531, 35.005514530641051 ], [ -87.853555505900857, 35.005514530641051 ], [ -87.853282729675129, 35.005514530641051 ], [ -87.851918848546504, 35.00571622290893 ], [ -87.773632071763743, 35.004909453837413 ], [ -87.767630994797813, 35.004707761569534 ], [ -87.758902155574646, 35.004707761569534 ], [ -87.709529658718623, 35.004102684765897 ], [ -87.702437476849809, 35.003900992498018 ], [ -87.700528043269742, 35.003900992498018 ], [ -87.696709176109607, 35.003900992498018 ], [ -87.671340987117276, 35.00349760796226 ], [ -87.664248805248448, 35.00349760796226 ], [ -87.606147469169258, 35.00329591569438 ], [ -87.428570146222995, 35.002892531158629 ], [ -87.421477964354168, 35.00269083889075 ], [ -87.417386320968305, 35.00269083889075 ], [ -87.391199803298804, 35.002287454354992 ], [ -87.381107082947025, 35.002085762087113 ], [ -87.359284984889115, 35.001884069819234 ], [ -87.349192264537322, 35.001682377551354 ], [ -87.299274215229843, 35.000875608479838 ], [ -87.270087159077391, 35.00047222394408 ], [ -87.230534606347419, 34.999463762604684 ], [ -87.223987976930047, 34.999262070336805 ], [ -87.216623018835506, 34.999060378068926 ], [ -87.210894718095304, 34.999060378068926 ], [ -87.011222520865402, 34.995228224979229 ], [ -87.000038695610726, 34.99502653271135 ], [ -86.974397730392667, 34.994421455907712 ], [ -86.9724882968126, 34.994623148175592 ], [ -86.970306087006804, 34.994623148175592 ], [ -86.967032772298126, 34.994421455907712 ], [ -86.862013925394422, 34.992001148693163 ], [ -86.849738995236834, 34.992001148693163 ], [ -86.846465680528155, 34.991799456425284 ], [ -86.836372960176362, 34.991799456425284 ], [ -86.836372960176362, 34.991799456425284 ], [ -86.820551939084382, 34.991799456425284 ], [ -86.783727148611661, 34.992001148693163 ], [ -86.783727148611661, 34.992001148693163 ], [ -86.677617196805045, 34.992001148693163 ], [ -86.676798868127875, 34.992001148693163 ], [ -86.674343882096366, 34.992001148693163 ], [ -86.670797791161959, 34.992001148693163 ], [ -86.659613965907269, 34.991799456425284 ], [ -86.641337958783765, 34.991799456425284 ], [ -86.600148748699453, 34.991194379621646 ], [ -86.588964923444777, 34.991194379621646 ], [ -86.57123446877273, 34.990992687353767 ], [ -86.555959000132191, 34.990992687353767 ], [ -86.528408601334064, 34.990589302818009 ], [ -86.467852279223365, 34.990790995085888 ], [ -86.43402802723358, 34.990992687353767 ], [ -86.397203236760859, 34.991597764157405 ], [ -86.318643683752384, 34.991194379621646 ], [ -86.311278725657829, 34.991194379621646 ], [ -85.8639257154706, 34.988370687871338 ], [ -85.828737582352218, 34.988168995603459 ], [ -85.824373162740642, 34.988168995603459 ], [ -85.605061077258611, 34.984740227049521 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "24", "geo_id": "0400000US12", "fips_state": "12", "name": "Florida", "iso_3166_2": "FL", "census": 18801310, "pop_estimataes_base": 18804623, "pop_2010": 18852220, "pop_2011": 19107900, "pop_2012": 19355257, "pop_2013": 19600311, "pop_2014": 19893297 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.250463766298139, 25.341832899756437 ], [ -80.25482818590973, 25.336387208523703 ], [ -80.260010934198476, 25.324689056986728 ], [ -80.268194220970202, 25.320655211629145 ], [ -80.28810688544803, 25.282737065267902 ], [ -80.307473997474432, 25.257525531783031 ], [ -80.351390969815981, 25.190563698847217 ], [ -80.354118732073232, 25.184311238542968 ], [ -80.349754312461641, 25.168780933916288 ], [ -80.358483151684808, 25.154057398361125 ], [ -80.37703193503404, 25.130459403019287 ], [ -80.39967236176912, 25.108474945820479 ], [ -80.42831386547013, 25.095566640676225 ], [ -80.431041627727382, 25.089314180371979 ], [ -80.443316557884941, 25.07600249069197 ], [ -80.462138117459901, 25.069951722655599 ], [ -80.473867495166019, 25.060270493797407 ], [ -80.493780159643876, 25.038487728866482 ], [ -80.489142963806557, 25.031226807222836 ], [ -80.494871264546759, 25.022957424239802 ], [ -80.537969908211153, 24.99028327684341 ], [ -80.565793083234979, 24.958214206250656 ], [ -80.571794160200909, 24.953575284089439 ], [ -80.588160733744346, 24.951154976874889 ], [ -80.596071244290343, 24.948129592856706 ], [ -80.611619489156595, 24.938448363998518 ], [ -80.635623797020315, 24.913035138245768 ], [ -80.659355328658293, 24.897504833619088 ], [ -80.661264762238361, 24.899723448565759 ], [ -80.660173657335463, 24.904967447530609 ], [ -80.650899265660854, 24.908194523816672 ], [ -80.641352097760517, 24.914245291853042 ], [ -80.623894419314183, 24.931187442354876 ], [ -80.622803314411286, 24.93562467224821 ], [ -80.624167195539911, 24.939053440802155 ], [ -80.621712209508388, 24.944297439767006 ], [ -80.597162349193241, 24.958415898518535 ], [ -80.581068551875518, 24.964668358822781 ], [ -80.578068013392567, 24.962853128411872 ], [ -80.570703055298026, 24.962248051608235 ], [ -80.558700901366166, 24.971525895930668 ], [ -80.544243761402797, 24.999964505701598 ], [ -80.543152656499899, 25.007427119613119 ], [ -80.54588041875715, 25.014688041256765 ], [ -80.524603873150681, 25.016906656203432 ], [ -80.509055628284415, 25.028403115472532 ], [ -80.501417893964145, 25.041513112884665 ], [ -80.495689593223943, 25.047563880921032 ], [ -80.488870187580844, 25.050185880403461 ], [ -80.481232453260574, 25.056640032975587 ], [ -80.460774236331275, 25.078826182442274 ], [ -80.465411432168594, 25.086692180889553 ], [ -80.470321404231612, 25.089515872639858 ], [ -80.481778005712016, 25.091936179854407 ], [ -80.494598488321046, 25.102222485516233 ], [ -80.484232991743539, 25.109483407159875 ], [ -80.47741358610044, 25.107466484481087 ], [ -80.476049704971814, 25.099398793765928 ], [ -80.464047551039968, 25.093146333461679 ], [ -80.450408739753769, 25.088709103568341 ], [ -80.444953215239295, 25.0929446411938 ], [ -80.433496613758891, 25.106256330873812 ], [ -80.433496613758891, 25.114727406124729 ], [ -80.447680977496532, 25.147804938056879 ], [ -80.446589872593634, 25.151233706610821 ], [ -80.41331117305532, 25.137115247859292 ], [ -80.403218452703527, 25.141754170020508 ], [ -80.395580718383258, 25.150628629807184 ], [ -80.387124655385819, 25.17079785659508 ], [ -80.388215760288716, 25.182697700399938 ], [ -80.392034627448851, 25.192177236990247 ], [ -80.387124655385819, 25.198228005026618 ], [ -80.369939753165212, 25.206497388009655 ], [ -80.358755927910536, 25.207102464813293 ], [ -80.349754312461641, 25.210531233367234 ], [ -80.337479382304068, 25.231305536958768 ], [ -80.333660515143933, 25.25389507096121 ], [ -80.336115501175442, 25.26155937714061 ], [ -80.342662130592828, 25.268215221980618 ], [ -80.368303095810873, 25.282333680732144 ], [ -80.363938676199297, 25.286569218357602 ], [ -80.339388815884135, 25.289997986911544 ], [ -80.334751620046831, 25.285964141553965 ], [ -80.328750543080901, 25.286569218357602 ], [ -80.315657284246157, 25.294233524537002 ], [ -80.292471305059621, 25.314402751324899 ], [ -80.28947076657667, 25.325092441522482 ], [ -80.275831955290471, 25.344051514703104 ], [ -80.264648130035781, 25.354337820364933 ], [ -80.257010395715511, 25.361195357472816 ], [ -80.254555409684002, 25.380759507457078 ], [ -80.251009318749595, 25.391449197654662 ], [ -80.246372122912277, 25.398508427030425 ], [ -80.22618668220872, 25.406374425477704 ], [ -80.219094500339892, 25.411013347638921 ], [ -80.21418452827686, 25.417064115675288 ], [ -80.206546793956591, 25.434207958445 ], [ -80.199454612087777, 25.458411030590476 ], [ -80.192362430218949, 25.473336258413518 ], [ -80.18990744418744, 25.485841179022014 ], [ -80.191816877767508, 25.495320715612326 ], [ -80.188816339284529, 25.507825636220822 ], [ -80.179269171384192, 25.518918710954164 ], [ -80.174631975546902, 25.518313634150527 ], [ -80.174086423095446, 25.48281579500383 ], [ -80.18390636722151, 25.468495643984426 ], [ -80.204091807925067, 25.412223501246196 ], [ -80.222095038822857, 25.397499965691029 ], [ -80.237916059914838, 25.361800434276454 ], [ -80.240371045946347, 25.347076898721291 ], [ -80.249918213846684, 25.342841361095832 ], [ -80.250463766298139, 25.341832899756437 ] ] ], [ [ [ -81.582975628959474, 24.658701188450401 ], [ -81.580520642927951, 24.669189186380105 ], [ -81.562790188255903, 24.692988873989822 ], [ -81.557607439967143, 24.692585489454064 ], [ -81.542059195100876, 24.681089030184964 ], [ -81.53523978945779, 24.679475492041931 ], [ -81.51887321591434, 24.687744875024968 ], [ -81.516418229882831, 24.700249795633464 ], [ -81.512326586496982, 24.703678564187406 ], [ -81.491050040890514, 24.710132716759535 ], [ -81.476592900927145, 24.711342870366806 ], [ -81.474137914895636, 24.706300563669835 ], [ -81.469227942832589, 24.704283640991044 ], [ -81.459135222480811, 24.707309025009227 ], [ -81.454225250417778, 24.710737793563169 ], [ -81.451770264386269, 24.714569946652873 ], [ -81.452588593063439, 24.736151019315919 ], [ -81.456680236449301, 24.740184864673498 ], [ -81.451224711934827, 24.74744578631714 ], [ -81.440859215357307, 24.735344250244403 ], [ -81.438677005551511, 24.727074867261365 ], [ -81.435676467068561, 24.723847790975302 ], [ -81.432130376134154, 24.72283932963591 ], [ -81.423128760685245, 24.731915481690461 ], [ -81.421492103330905, 24.737562865191073 ], [ -81.427220404071107, 24.745832248174111 ], [ -81.4304937187798, 24.747244094049265 ], [ -81.431039271231242, 24.751681323942599 ], [ -81.425583746716768, 24.752891477549873 ], [ -81.40267054375596, 24.749059324460173 ], [ -81.392850599629895, 24.743411940959561 ], [ -81.390395613598386, 24.73836963426259 ], [ -81.389577284921216, 24.731310404886827 ], [ -81.385485641535354, 24.726268098189852 ], [ -81.36039022876875, 24.708720870884381 ], [ -81.345933088805396, 24.707510717277106 ], [ -81.319201018684453, 24.70125825697286 ], [ -81.314836599072862, 24.691778720382548 ], [ -81.314018270395678, 24.680685645649206 ], [ -81.309653850784116, 24.664953648754647 ], [ -81.297924473077984, 24.656684265771609 ], [ -81.298470025529426, 24.65426395855706 ], [ -81.30310722136673, 24.651641959074635 ], [ -81.332839829970638, 24.639540423001897 ], [ -81.395032809435691, 24.620984734357034 ], [ -81.40185221507879, 24.623606733839459 ], [ -81.403216096207416, 24.640347192073413 ], [ -81.414127145236364, 24.647204729181297 ], [ -81.432403152359868, 24.645994575574026 ], [ -81.448496949677576, 24.640145499805534 ], [ -81.470319047735501, 24.641960730216447 ], [ -81.480957320538721, 24.645187806502509 ], [ -81.481775649215905, 24.647406421449176 ], [ -81.47795678205577, 24.649826728663726 ], [ -81.476320124701417, 24.653255497217668 ], [ -81.480411768087279, 24.659709649789793 ], [ -81.498687775210783, 24.664953648754647 ], [ -81.503052194822359, 24.660919803397068 ], [ -81.505507180853868, 24.654667343092818 ], [ -81.508780495562561, 24.644179345163113 ], [ -81.509053271788289, 24.631472732286738 ], [ -81.511235481594071, 24.625220271982492 ], [ -81.518600439688626, 24.620379657553396 ], [ -81.546423614712467, 24.614933966320663 ], [ -81.602888293437317, 24.586495356549733 ], [ -81.664262944225186, 24.573183666869721 ], [ -81.674628440802707, 24.564309207083046 ], [ -81.685266713605941, 24.558661823582433 ], [ -81.691540566797585, 24.559871977189708 ], [ -81.732457000656183, 24.556443208635766 ], [ -81.766008476420211, 24.552005978742429 ], [ -81.786193917123796, 24.546560287509699 ], [ -81.810198224987488, 24.544745057098787 ], [ -81.812925987244739, 24.546560287509699 ], [ -81.814562644599079, 24.563502438011529 ], [ -81.811289329890386, 24.569754898315779 ], [ -81.800651057087151, 24.57096505192305 ], [ -81.79410442766978, 24.586091972013975 ], [ -81.773918986966208, 24.5848818184067 ], [ -81.748005245522435, 24.590125817371554 ], [ -81.739276406299268, 24.589924125103675 ], [ -81.734639210461964, 24.584075049335183 ], [ -81.730547567076115, 24.582058126656396 ], [ -81.715817650887018, 24.587907202424883 ], [ -81.71554487466129, 24.5925461245861 ], [ -81.705452154309512, 24.597588431283075 ], [ -81.699451077343582, 24.597588431283075 ], [ -81.694268329054836, 24.591941047782463 ], [ -81.68690337096028, 24.5925461245861 ], [ -81.678720084188569, 24.597588431283075 ], [ -81.668900140062505, 24.6078747369449 ], [ -81.655806881227761, 24.616345812195817 ], [ -81.636985321652801, 24.621388118892792 ], [ -81.614890447369163, 24.642767499287963 ], [ -81.614617671143435, 24.650633497735242 ], [ -81.597705545148557, 24.655474112164335 ], [ -81.587885601022492, 24.656079188967972 ], [ -81.582975628959474, 24.658701188450401 ] ] ], [ [ [ -82.150622954690931, 24.576410743155783 ], [ -82.142985220370662, 24.593352893657617 ], [ -82.135347486050392, 24.596781662211558 ], [ -82.125254765698614, 24.597386739015196 ], [ -82.104250996317873, 24.588310586960642 ], [ -82.10097768160918, 24.584680126138821 ], [ -82.099341024254841, 24.572578590066083 ], [ -82.104523772543587, 24.561082130796983 ], [ -82.116798702701175, 24.549182286992124 ], [ -82.159351793914112, 24.548173825652729 ], [ -82.165080094654314, 24.552207671010308 ], [ -82.164534542202858, 24.56330074574365 ], [ -82.150622954690931, 24.576410743155783 ] ] ], [ [ [ -81.249915857350572, 24.673424724005564 ], [ -81.246096990190438, 24.67584503122011 ], [ -81.243096451707473, 24.674029800809201 ], [ -81.244733109061812, 24.669189186380105 ], [ -81.281830675760261, 24.653658881753426 ], [ -81.278284584825855, 24.66051641886131 ], [ -81.260008577702351, 24.674836569880718 ], [ -81.249915857350572, 24.673424724005564 ] ] ], [ [ [ -80.910036680098571, 24.781128395052928 ], [ -80.906217812938436, 24.769833628051707 ], [ -80.911946113678638, 24.764993013622611 ], [ -80.938678183799581, 24.767615013105036 ], [ -81.015873855679445, 24.719813945617723 ], [ -81.023784366225442, 24.716990253867419 ], [ -81.028694338288474, 24.72062071468924 ], [ -81.032513205448609, 24.727276559529244 ], [ -81.034422639028676, 24.727276559529244 ], [ -81.064428023858312, 24.715376715724386 ], [ -81.07097465327567, 24.711746254902565 ], [ -81.075884625338716, 24.704283640991044 ], [ -81.078612387595939, 24.696619334811643 ], [ -81.078339611370225, 24.692383797186185 ], [ -81.108072219974133, 24.688551644096485 ], [ -81.124166017291842, 24.704888717794681 ], [ -81.125257122194739, 24.708317486348623 ], [ -81.107253891296963, 24.71275471624196 ], [ -81.105344457716896, 24.711342870366806 ], [ -81.099070604525252, 24.711947947170444 ], [ -81.066883009889821, 24.723847790975302 ], [ -81.050516436346385, 24.737562865191073 ], [ -81.041787597123218, 24.743008556423803 ], [ -81.036604848834457, 24.742806864155924 ], [ -81.035240967705846, 24.739983172405619 ], [ -81.022147708871103, 24.733125635297736 ], [ -81.016964960582342, 24.734739173440765 ], [ -80.994324533847262, 24.744017017763198 ], [ -80.986414023301265, 24.752689785281994 ], [ -80.960227505631764, 24.764186244551095 ], [ -80.910309456324285, 24.782338548660203 ], [ -80.910036680098571, 24.781128395052928 ] ] ], [ [ [ -81.317564361330099, 24.757328707443211 ], [ -81.305562207398253, 24.756521938371694 ], [ -81.290832291209156, 24.736957788387436 ], [ -81.288377305177647, 24.720822406957119 ], [ -81.30310722136673, 24.714166562117114 ], [ -81.310744955686999, 24.727074867261365 ], [ -81.318382690007269, 24.729495174475915 ], [ -81.326838753004722, 24.72828502086864 ], [ -81.350297508416972, 24.746437324977748 ], [ -81.3573896902858, 24.756925322907453 ], [ -81.342659774096703, 24.756320246103815 ], [ -81.327657081681878, 24.762371014140186 ], [ -81.324656543198927, 24.767211628569278 ], [ -81.317564361330099, 24.757328707443211 ] ] ], [ [ [ -80.89066956807217, 24.791616392982633 ], [ -80.884668491106254, 24.791616392982633 ], [ -80.884122938654798, 24.790406239375361 ], [ -80.892579001652237, 24.785969009482024 ], [ -80.906763365389878, 24.783750394535353 ], [ -80.89066956807217, 24.791616392982633 ] ] ], [ [ [ -80.788378483425703, 24.824290540379025 ], [ -80.790560693231498, 24.817836387806899 ], [ -80.796016217745972, 24.811987312038408 ], [ -80.822475511641187, 24.812592388842045 ], [ -80.846207043279179, 24.802911159983857 ], [ -80.850298686665042, 24.802507775448099 ], [ -80.850844239116469, 24.80371792905537 ], [ -80.846207043279179, 24.80755008214507 ], [ -80.830113245961456, 24.814205926985078 ], [ -80.81456500109519, 24.827921001200846 ], [ -80.792742903037293, 24.843854690363283 ], [ -80.780467972879705, 24.840425921809342 ], [ -80.788378483425703, 24.824290540379025 ] ] ], [ [ [ -80.729186042443615, 24.865435763026333 ], [ -80.719911650769006, 24.864628993954817 ], [ -80.702999524774114, 24.880966067653013 ], [ -80.691815699519438, 24.885806682082109 ], [ -80.690451818390812, 24.88157114445665 ], [ -80.703272300999842, 24.869469608383913 ], [ -80.711728363997281, 24.863418840347542 ], [ -80.761373637079032, 24.836190384183883 ], [ -80.767101937819234, 24.836190384183883 ], [ -80.745552615987037, 24.85071222747117 ], [ -80.740642643924019, 24.857368072311175 ], [ -80.732459357152294, 24.864830686222696 ], [ -80.729186042443615, 24.865435763026333 ] ] ], [ [ [ -82.255641801594649, 26.703457400207299 ], [ -82.255096249143207, 26.708096322368512 ], [ -82.246640186145754, 26.706482784225482 ], [ -82.242548542759891, 26.694381248152744 ], [ -82.246094633694312, 26.688532172384253 ], [ -82.246640186145754, 26.683489865687278 ], [ -82.237365794471145, 26.661908793024232 ], [ -82.218271458670472, 26.626410953877535 ], [ -82.214452591510337, 26.603014650803573 ], [ -82.196449360612547, 26.559852505477476 ], [ -82.187447745163666, 26.527581742616842 ], [ -82.177627801037602, 26.502370209131975 ], [ -82.166171199557198, 26.4896635962556 ], [ -82.14925907356232, 26.477562060182862 ], [ -82.131528618890258, 26.476956983379225 ], [ -82.120072017409854, 26.473528214825283 ], [ -82.088429975225893, 26.455174218448299 ], [ -82.076973373745489, 26.466065600913762 ], [ -82.062516233782105, 26.470099446271341 ], [ -82.038511925918414, 26.456989448859208 ], [ -82.015598722957606, 26.454770833912541 ], [ -82.013689289377538, 26.454165757108903 ], [ -82.013962065603266, 26.452148834430112 ], [ -82.063061786233561, 26.42552545507009 ], [ -82.075063940165421, 26.422096686516149 ], [ -82.082974450711404, 26.422096686516149 ], [ -82.098249919351943, 26.424920378266453 ], [ -82.126618646827239, 26.436215145267674 ], [ -82.148713521110864, 26.455375910716175 ], [ -82.172990605200297, 26.467679139056791 ], [ -82.17708224858616, 26.471511292146491 ], [ -82.180628339520567, 26.476351906575587 ], [ -82.186356640260769, 26.489260211719841 ], [ -82.201359332675594, 26.556222044655655 ], [ -82.205450976061442, 26.566508350317484 ], [ -82.222090325830607, 26.590308037927201 ], [ -82.239002451825485, 26.636495567271481 ], [ -82.248549619725821, 26.654244486844831 ], [ -82.263006759689191, 26.673405252293332 ], [ -82.267916731752223, 26.682884788883641 ], [ -82.264370640817816, 26.698415093510324 ], [ -82.255641801594649, 26.703457400207299 ] ] ], [ [ [ -84.777185232186525, 29.707462037996528 ], [ -84.72972216891057, 29.738926031785645 ], [ -84.71690168630154, 29.749010645179595 ], [ -84.696716245597969, 29.769986641039004 ], [ -84.694261259566446, 29.764540949806275 ], [ -84.694806812017902, 29.761918950323846 ], [ -84.713628371592847, 29.741346339000195 ], [ -84.765183078254665, 29.699797731817128 ], [ -84.776912455960797, 29.692133425637728 ], [ -84.799007330244436, 29.68164542770802 ], [ -84.853835351614947, 29.66470327720619 ], [ -84.884659065121753, 29.652198356597694 ], [ -84.957763093615768, 29.612666672093418 ], [ -85.036322646624242, 29.588866984483701 ], [ -85.051052562813339, 29.58685006180491 ], [ -85.054598653747746, 29.592094060769764 ], [ -85.069328569936829, 29.605204058181897 ], [ -85.095242311380616, 29.622549593219489 ], [ -85.097151744960684, 29.625171592701911 ], [ -85.094969535154888, 29.627793592184339 ], [ -85.066600807679606, 29.610044672610989 ], [ -85.038504856430038, 29.599556674681285 ], [ -85.023502164015213, 29.597136367466739 ], [ -85.017228310823569, 29.604397289110381 ], [ -84.987768478445389, 29.610246364878869 ], [ -84.968401366418988, 29.617305594254631 ], [ -84.932667680849164, 29.637273128774652 ], [ -84.92584827520605, 29.644937434954052 ], [ -84.920392750691576, 29.648567895775873 ], [ -84.895842890376429, 29.657442355562544 ], [ -84.862018638386672, 29.672569275653469 ], [ -84.813464470207805, 29.687091118940756 ], [ -84.798189001567266, 29.69939434728137 ], [ -84.777185232186525, 29.707462037996528 ] ] ], [ [ [ -85.156344185942771, 29.679628505029232 ], [ -85.137522626367826, 29.684267427190449 ], [ -85.134522087884847, 29.686486042137119 ], [ -85.11433664718129, 29.688704657083786 ], [ -85.093878430251991, 29.684872503994086 ], [ -85.083785709900212, 29.679023428225598 ], [ -85.077239080482826, 29.67095573751044 ], [ -85.091423444220482, 29.648567895775873 ], [ -85.097151744960684, 29.63303759114919 ], [ -85.12497491998451, 29.628398668987977 ], [ -85.142705374656572, 29.63545789836374 ], [ -85.162618039134415, 29.650181433918902 ], [ -85.184440137192325, 29.663896508134673 ], [ -85.204352801670183, 29.672770967921348 ], [ -85.222628808793672, 29.678014966886202 ], [ -85.220446598987891, 29.680233581832869 ], [ -85.208989997507487, 29.681847119975899 ], [ -85.184712913418053, 29.682653889047415 ], [ -85.168619116100345, 29.682452196779536 ], [ -85.156344185942771, 29.679628505029232 ] ] ], [ [ [ -82.821652469971781, 27.964437458986556 ], [ -82.829835756743492, 27.968471304344135 ], [ -82.828744651840594, 28.01970114038539 ], [ -82.823016351100392, 28.030794215118732 ], [ -82.823016351100392, 28.044710981602382 ], [ -82.826289665809071, 28.053383749121178 ], [ -82.831745190323559, 28.062863285711487 ], [ -82.836382386160864, 28.073149591373316 ], [ -82.833109071452185, 28.08222574342787 ], [ -82.830654085420662, 28.085251127446053 ], [ -82.826016889583357, 28.083839281570899 ], [ -82.823016351100392, 28.06830897694422 ], [ -82.818379155263088, 28.057619286746636 ], [ -82.813469183200056, 28.037248367690861 ], [ -82.815105840554395, 28.012641911009627 ], [ -82.821379693746053, 28.008406373384169 ], [ -82.821652469971781, 28.002557297615681 ], [ -82.81728805036019, 27.992069299685973 ], [ -82.815105840554395, 27.973715303308989 ], [ -82.821652469971781, 27.964437458986556 ] ] ], [ [ [ -81.444132530065986, 30.709670917087081 ], [ -81.432675928585581, 30.703015072247076 ], [ -81.427493180296835, 30.697972765550102 ], [ -81.430766495005514, 30.669332463511289 ], [ -81.443041425163102, 30.600958784700325 ], [ -81.442495872711646, 30.555174639891796 ], [ -81.434039809714221, 30.522500492495407 ], [ -81.442768648937374, 30.509995571886911 ], [ -81.447133068548965, 30.503743111582665 ], [ -81.440040886680137, 30.497692343546294 ], [ -81.426129299168224, 30.496683882206902 ], [ -81.410853830527685, 30.481960346651736 ], [ -81.407034963367551, 30.422057743091685 ], [ -81.397487795467214, 30.400678362696517 ], [ -81.396396690564302, 30.339968990064946 ], [ -81.391486718501284, 30.303462689578858 ], [ -81.385485641535354, 30.273813926200649 ], [ -81.379757340795152, 30.252837930341236 ], [ -81.355480256705732, 30.16247979433146 ], [ -81.30910829833266, 29.969460293971299 ], [ -81.295196710820733, 29.928516763591869 ], [ -81.288922857629089, 29.915205073911856 ], [ -81.276647927471515, 29.900481538356694 ], [ -81.270374074279857, 29.883136003319102 ], [ -81.264645773539655, 29.85812616210211 ], [ -81.263281892411044, 29.820611400276626 ], [ -81.256735262993658, 29.784710176594171 ], [ -81.240914241901677, 29.739127724053525 ], [ -81.228912087969832, 29.71472295964017 ], [ -81.212818290652109, 29.67075404524256 ], [ -81.211454409523498, 29.667123584420736 ], [ -81.163445793796086, 29.555386068015792 ], [ -81.123893241066128, 29.474507468596329 ], [ -81.101798366782475, 29.427109785644774 ], [ -81.04669756918625, 29.307909655328309 ], [ -80.99541563875016, 29.206055060049433 ], [ -80.966228582597694, 29.147967686900294 ], [ -80.944406484539783, 29.110856309610565 ], [ -80.907308917841334, 29.064265395730523 ], [ -80.893670106555135, 29.036230170495351 ], [ -80.878394637914596, 29.010615252474722 ], [ -80.787014602297091, 28.87527974072794 ], [ -80.732186580926566, 28.79117406502241 ], [ -80.713092245125893, 28.761928686179964 ], [ -80.713092245125893, 28.761928686179964 ], [ -80.712819468900179, 28.761323609376326 ], [ -80.709818930417214, 28.756684687215113 ], [ -80.708455049288602, 28.755272841339959 ], [ -80.672175811267323, 28.709287004263555 ], [ -80.663174195818428, 28.697992237262334 ], [ -80.647898727177889, 28.678629779545954 ], [ -80.647625950952161, 28.678428087278075 ], [ -80.647353174726447, 28.677823010474437 ], [ -80.645716517372094, 28.67580608779565 ], [ -80.641352097760517, 28.6695536274914 ], [ -80.638897111728994, 28.666124858937458 ], [ -80.631259377408725, 28.655233476471992 ], [ -80.616802237445356, 28.634660865148341 ], [ -80.583796314132769, 28.59775118012649 ], [ -80.574794698683874, 28.585246259517994 ], [ -80.567429740589333, 28.562253340979794 ], [ -80.560883111171961, 28.530789347190677 ], [ -80.536060474631086, 28.478551049810026 ], [ -80.525149425602123, 28.459390284361525 ], [ -80.526786082956477, 28.451725978182125 ], [ -80.562792544752028, 28.437809211698475 ], [ -80.574249146232432, 28.427724598304529 ], [ -80.587887957518632, 28.410782447802696 ], [ -80.596071244290343, 28.390613221014799 ], [ -80.603436202384884, 28.363989841654774 ], [ -80.606982293319305, 28.336559693223236 ], [ -80.608073398222189, 28.311348159738365 ], [ -80.604254531062054, 28.257698016482564 ], [ -80.590070167324413, 28.178029570670375 ], [ -80.566338635686435, 28.095537433107879 ], [ -80.547789852337218, 28.048744826959961 ], [ -80.508782852058687, 27.970488227022926 ], [ -80.446862648819362, 27.861977786904042 ], [ -80.447135425045076, 27.860767633296771 ], [ -80.447135425045076, 27.859759171957375 ], [ -80.383578564451412, 27.739953964837273 ], [ -80.351663746041709, 27.642536599451734 ], [ -80.350572641138825, 27.628418140700209 ], [ -80.344298787947167, 27.616316604627471 ], [ -80.330932752886696, 27.597559223714725 ], [ -80.324658899695038, 27.569120613943795 ], [ -80.321385584986359, 27.557422462406812 ], [ -80.311838417086022, 27.524546622742545 ], [ -80.301200144282788, 27.500343550597069 ], [ -80.293289633736805, 27.500343550597069 ], [ -80.26546645871295, 27.420473412517001 ], [ -80.253737081006818, 27.379731574405451 ], [ -80.233551640303261, 27.341208351240567 ], [ -80.226732234660162, 27.322652662595704 ], [ -80.199181835862049, 27.262951751303532 ], [ -80.193180758896119, 27.24964006162352 ], [ -80.161538716712144, 27.192762842081656 ], [ -80.153355429940433, 27.169366539007694 ], [ -80.159629283132077, 27.163315770971327 ], [ -80.149809339006012, 27.143549928719189 ], [ -80.138625513751336, 27.111480858126434 ], [ -80.116803415693425, 27.072352558157917 ], [ -80.093890212732617, 27.018500722634233 ], [ -80.079433072769248, 26.97049796287904 ], [ -80.066612590160219, 26.927537509820823 ], [ -80.046154373230934, 26.859163831009855 ], [ -80.031424457041837, 26.796437535699496 ], [ -80.032242785719006, 26.771629386750384 ], [ -80.036334429104869, 26.771226002214625 ], [ -80.037425534007753, 26.766385387785533 ], [ -80.032788338170462, 26.715155551744274 ], [ -80.032788338170462, 26.70083540072487 ], [ -80.035788876653413, 26.676027251775757 ], [ -80.035243324201971, 26.612292495126006 ], [ -80.038789415136378, 26.569332042067789 ], [ -80.050246016616796, 26.509631130775617 ], [ -80.060611513194289, 26.444686220518591 ], [ -80.070431457320353, 26.336377472667589 ], [ -80.072340890900421, 26.335369011328194 ], [ -80.074795876931944, 26.321048860308789 ], [ -80.075341429383386, 26.318628553094243 ], [ -80.07997862522069, 26.264373333034801 ], [ -80.085434149735164, 26.249246412943879 ], [ -80.089253016895299, 26.231900877906288 ], [ -80.101255170827159, 26.147795202200761 ], [ -80.105346814213021, 26.096363673891627 ], [ -80.106710695341633, 26.092934905337685 ], [ -80.108892905147428, 26.088295983176469 ], [ -80.109438457598884, 26.087085829569194 ], [ -80.112438996081835, 26.053201528565531 ], [ -80.117894520596309, 25.986441387897592 ], [ -80.117894520596309, 25.975146620896371 ], [ -80.117894520596309, 25.915849094139958 ], [ -80.120895059079288, 25.883174946743566 ], [ -80.119803954176376, 25.841021262756861 ], [ -80.121986163982172, 25.817826651950782 ], [ -80.127441688496646, 25.79120327259076 ], [ -80.127987240948102, 25.772244199410139 ], [ -80.137534408848438, 25.75025974221133 ], [ -80.14408103826581, 25.740780205621022 ], [ -80.152809877488977, 25.702862059259775 ], [ -80.154173758617588, 25.683297909275517 ], [ -80.152264325037521, 25.676843756703391 ], [ -80.154992087294772, 25.665548989702167 ], [ -80.160993164260702, 25.664943912898529 ], [ -80.176814185352683, 25.685113139686429 ], [ -80.170267555935311, 25.710526365439176 ], [ -80.164539255195109, 25.721821132440397 ], [ -80.166175912549448, 25.728880361816159 ], [ -80.172722541966834, 25.737754821602834 ], [ -80.184724695898666, 25.745620820050114 ], [ -80.19754517850771, 25.744410666442842 ], [ -80.229187220691671, 25.732510822637984 ], [ -80.240371045946347, 25.724241439654946 ], [ -80.244462689332209, 25.717182210279184 ], [ -80.250463766298139, 25.687936831436733 ], [ -80.266012011164406, 25.658288068058525 ], [ -80.26710311606729, 25.651833915486399 ], [ -80.277195836419082, 25.637110379931237 ], [ -80.288379661673758, 25.630454535091229 ], [ -80.296835724671212, 25.622185152108191 ], [ -80.301472920508502, 25.613310692321519 ], [ -80.305564563894364, 25.59314146553362 ], [ -80.305564563894364, 25.575392545960273 ], [ -80.302018472959958, 25.567728239780873 ], [ -80.314020626891818, 25.53908793774206 ], [ -80.324658899695038, 25.535659169188119 ], [ -80.328750543080901, 25.532633785169935 ], [ -80.339388815884135, 25.499354560969905 ], [ -80.339388815884135, 25.478580257378372 ], [ -80.336933829852626, 25.465671952234118 ], [ -80.328204990629459, 25.443082418231675 ], [ -80.320567256309189, 25.437233342463184 ], [ -80.326295557049392, 25.422913191443779 ], [ -80.32575000459795, 25.398105042494667 ], [ -80.320567256309189, 25.391449197654662 ], [ -80.310474535957411, 25.38963396724375 ], [ -80.30692844502299, 25.384389968278896 ], [ -80.310474535957411, 25.373095201277675 ], [ -80.335297172498286, 25.338605823470374 ], [ -80.352482074718893, 25.329731363683699 ], [ -80.361756466393501, 25.327512748737032 ], [ -80.374031396551075, 25.317428135343082 ], [ -80.38303301199997, 25.301292753912765 ], [ -80.386033550482921, 25.288384448768511 ], [ -80.41931225002125, 25.263374607551523 ], [ -80.437861033370467, 25.253088301889694 ], [ -80.447135425045076, 25.248045995192719 ], [ -80.462956446137071, 25.236347843655743 ], [ -80.467866418200103, 25.232515690566039 ], [ -80.468411970651545, 25.231910613762402 ], [ -80.46977585178017, 25.230498767887251 ], [ -80.483141886840642, 25.216582001403602 ], [ -80.487506306452218, 25.207909233884806 ], [ -80.488051858903674, 25.206900772545414 ], [ -80.488324635129402, 25.206699080277534 ], [ -80.495416816998215, 25.199438158633889 ], [ -80.496235145675385, 25.199639850901768 ], [ -80.49841735548118, 25.200043235437526 ], [ -80.498690131706894, 25.200244927705405 ], [ -80.503054551318485, 25.203068619455713 ], [ -80.503054551318485, 25.203270311723593 ], [ -80.507691747155803, 25.206497388009655 ], [ -80.508237299607231, 25.206699080277534 ], [ -80.508237299607231, 25.206699080277534 ], [ -80.512874495444549, 25.216783693671481 ], [ -80.514783929024617, 25.217792155010876 ], [ -80.515329481476073, 25.217993847278755 ], [ -80.520239453539091, 25.22081753902906 ], [ -80.523239992022056, 25.220010769957547 ], [ -80.525694978053565, 25.218598924082393 ], [ -80.530332173890883, 25.216178616867843 ], [ -80.540970446694104, 25.218195539546635 ], [ -80.542061551597016, 25.221826000368456 ], [ -80.540970446694104, 25.224851384386639 ], [ -80.54069767046839, 25.229691998815735 ], [ -80.548608181014373, 25.236549535923618 ], [ -80.55815534891471, 25.238969843138168 ], [ -80.570703055298026, 25.239373227673926 ], [ -80.589251838647243, 25.223842923047243 ], [ -80.587615181292904, 25.207707541616927 ], [ -80.584887419035653, 25.200648312241164 ], [ -80.584887419035653, 25.200648312241164 ], [ -80.594434586935989, 25.193387390597522 ], [ -80.601526768804817, 25.187941699364792 ], [ -80.609710055576528, 25.181890931328422 ], [ -80.609710055576528, 25.181890931328422 ], [ -80.618984447251151, 25.177252009167205 ], [ -80.618984447251151, 25.177252009167205 ], [ -80.633987139665976, 25.176848624631447 ], [ -80.639988216631892, 25.176646932363568 ], [ -80.640260992857606, 25.176646932363568 ], [ -80.640806545309061, 25.176445240095688 ], [ -80.642443202663401, 25.175638471024172 ], [ -80.645716517372094, 25.174024932881142 ], [ -80.645716517372094, 25.174024932881142 ], [ -80.645989293597808, 25.173621548345384 ], [ -80.648444279629331, 25.169789395255684 ], [ -80.649262608306515, 25.168780933916288 ], [ -80.656900342626784, 25.168175857112651 ], [ -80.660719209786919, 25.167974164844772 ], [ -80.669993601461528, 25.167369088041134 ], [ -80.674358021073104, 25.167167395773259 ], [ -80.679813545587592, 25.1667640112375 ], [ -80.683905188973441, 25.166562318969621 ], [ -80.688269608585017, 25.164747088558709 ], [ -80.695089014228131, 25.157687859182946 ], [ -80.701362867419775, 25.146594784449604 ], [ -80.703817853451284, 25.139132170538083 ], [ -80.71500167870596, 25.140947400948992 ], [ -80.721821084349074, 25.14518293857445 ], [ -80.728640489992159, 25.144376169502934 ], [ -80.734641566958089, 25.143569400431417 ], [ -80.738460434118224, 25.143166015895662 ], [ -80.742824853729815, 25.142560939092025 ], [ -80.746370944664221, 25.148611707128392 ], [ -80.746370944664221, 25.1552675519684 ], [ -80.751826469178695, 25.163738627219317 ], [ -80.757554769918897, 25.1667640112375 ], [ -80.795470665294516, 25.172411394738109 ], [ -80.7962889939717, 25.172411394738109 ], [ -80.815110553546646, 25.164948780826588 ], [ -80.817019987126713, 25.164142011755075 ], [ -80.823566616544085, 25.161721704540525 ], [ -80.82656715502705, 25.160511550933251 ], [ -80.82656715502705, 25.160511550933251 ], [ -80.82656715502705, 25.160511550933251 ], [ -80.827112707478506, 25.161923396808405 ], [ -80.827385483704219, 25.162528473612042 ], [ -80.828476588607117, 25.16454539629083 ], [ -80.830113245961456, 25.168175857112651 ], [ -80.838296532733182, 25.174831701952659 ], [ -80.843752057247656, 25.176243547827809 ], [ -80.846479819504907, 25.177050316899326 ], [ -80.846479819504907, 25.177050316899326 ], [ -80.858209197211025, 25.176646932363568 ], [ -80.858754749662467, 25.176445240095688 ], [ -80.874302994528733, 25.174428317416901 ], [ -80.874848546980189, 25.174428317416901 ], [ -80.875394099431631, 25.174226625149021 ], [ -80.875666875657359, 25.174226625149021 ], [ -80.878940190366052, 25.172613087005988 ], [ -80.879212966591766, 25.172411394738109 ], [ -80.891760672975067, 25.166158934433863 ], [ -80.899398407295337, 25.162326781344163 ], [ -80.899943959746793, 25.162125089076284 ], [ -80.900216735972506, 25.161721704540525 ], [ -80.901035064649676, 25.156477705575671 ], [ -80.901580617101132, 25.153855706093246 ], [ -80.901580617101132, 25.153855706093246 ], [ -80.900216735972506, 25.150628629807184 ], [ -80.898852854843881, 25.147603245789 ], [ -80.900489512198234, 25.139737247341721 ], [ -80.900489512198234, 25.139737247341721 ], [ -80.900762288423948, 25.139737247341721 ], [ -80.902398945778302, 25.1399389396096 ], [ -80.90649058916415, 25.140342324145355 ], [ -80.916037757064487, 25.14135078548475 ], [ -80.916037757064487, 25.14135078548475 ], [ -80.931313225705026, 25.13751863239505 ], [ -80.936768750219514, 25.136106786519896 ], [ -80.939223736251023, 25.135501709716259 ], [ -80.940860393605362, 25.135098325180504 ], [ -80.943042603411158, 25.134493248376867 ], [ -80.943315379636886, 25.134493248376867 ], [ -80.954499204891562, 25.135501709716259 ], [ -80.955590309794459, 25.135501709716259 ], [ -80.956135862245901, 25.135501709716259 ], [ -80.957499743374527, 25.135703401984138 ], [ -80.958590848277424, 25.135501709716259 ], [ -80.967592463726305, 25.134493248376867 ], [ -80.967592463726305, 25.134493248376867 ], [ -80.967865239952033, 25.134493248376867 ], [ -80.967865239952033, 25.134493248376867 ], [ -80.970320225983556, 25.134089863841108 ], [ -80.970593002209284, 25.134089863841108 ], [ -80.970865778435012, 25.134089863841108 ], [ -80.971684107112168, 25.133888171573229 ], [ -80.971684107112168, 25.133888171573229 ], [ -80.971684107112168, 25.133888171573229 ], [ -80.973047988240793, 25.133484787037471 ], [ -80.977139631626642, 25.13207294116232 ], [ -80.991869547815753, 25.126828942197466 ], [ -80.994051757621534, 25.12602217312595 ], [ -80.999234505910295, 25.124206942715041 ], [ -80.999780058361736, 25.124206942715041 ], [ -81.009600002487801, 25.125417096322312 ], [ -81.022966037548272, 25.129450941679892 ], [ -81.025148247354053, 25.129249249412013 ], [ -81.033331534125779, 25.129047557144133 ], [ -81.037968729963083, 25.128845864876254 ], [ -81.049425331443487, 25.128240788072617 ], [ -81.049425331443487, 25.128240788072617 ], [ -81.049425331443487, 25.128240788072617 ], [ -81.049970883894929, 25.128240788072617 ], [ -81.050516436346385, 25.128240788072617 ], [ -81.079976268724579, 25.118761251482308 ], [ -81.094433408687934, 25.127030634465346 ], [ -81.111891087134268, 25.145384630842329 ], [ -81.120619926357435, 25.152242167950213 ], [ -81.133440408966464, 25.156276013307796 ], [ -81.141078143286734, 25.163940319487196 ], [ -81.142169248189617, 25.182899392667817 ], [ -81.142442024415345, 25.183504469471451 ], [ -81.142987576866801, 25.184311238542968 ], [ -81.146806444026936, 25.193185698329643 ], [ -81.155262507024361, 25.207707541616927 ], [ -81.155535283250089, 25.208110926152685 ], [ -81.155808059475817, 25.208312618420564 ], [ -81.16808298963339, 25.218800616350272 ], [ -81.171356304342083, 25.221624308100576 ], [ -81.172174633019253, 25.222229384904214 ], [ -81.171901856793525, 25.223641230779364 ], [ -81.171356304342083, 25.234532613244831 ], [ -81.171356304342083, 25.236347843655743 ], [ -81.171083528116355, 25.244818918906656 ], [ -81.170810751890627, 25.245827380246052 ], [ -81.169719646987744, 25.249256148799994 ], [ -81.169446870762016, 25.249861225603631 ], [ -81.169174094536288, 25.250466302407268 ], [ -81.168355765859118, 25.253088301889694 ], [ -81.162081912667475, 25.289796294643665 ], [ -81.159354150410223, 25.29867075443034 ], [ -81.15226196854141, 25.305528291538224 ], [ -81.148988653832717, 25.31803321214672 ], [ -81.151989192315682, 25.324689056986728 ], [ -81.148170325155547, 25.332756747701882 ], [ -81.139987038383822, 25.34102613068492 ], [ -81.133985961417906, 25.343043053363711 ], [ -81.121438255034604, 25.338807515738253 ], [ -81.118164940325926, 25.345261668310378 ], [ -81.117346611648742, 25.35494289716857 ], [ -81.128530436903418, 25.380557815189199 ], [ -81.141350919512448, 25.381364584260712 ], [ -81.150625311187071, 25.387213660029204 ], [ -81.150625311187071, 25.399113503834062 ], [ -81.14707922025265, 25.404357502798916 ], [ -81.146806444026936, 25.407584579084979 ], [ -81.168628542084832, 25.463856721823209 ], [ -81.179539591113794, 25.475353181092309 ], [ -81.191814521271368, 25.484832717682622 ], [ -81.208181094814819, 25.505001944470514 ], [ -81.210090528394886, 25.516901788275376 ], [ -81.203271122751772, 25.534247323312965 ], [ -81.204362227654684, 25.538886245474181 ], [ -81.209272199717702, 25.548567474332373 ], [ -81.225638773261139, 25.55845039545844 ], [ -81.232730955129966, 25.573375623281482 ], [ -81.233003731355694, 25.586687312961494 ], [ -81.240641465675964, 25.598990541302111 ], [ -81.240641465675964, 25.613714076857274 ], [ -81.254007500736435, 25.638118841270629 ], [ -81.269010193151246, 25.656876222183371 ], [ -81.277466256148685, 25.664943912898529 ], [ -81.290286738757715, 25.687533446900975 ], [ -81.329020962810503, 25.717182210279184 ], [ -81.335022039776433, 25.71556867213615 ], [ -81.346205865031109, 25.721417747904638 ], [ -81.345933088805396, 25.736544667995563 ], [ -81.344023655225328, 25.747637742728905 ], [ -81.346751417482551, 25.75409189530103 ], [ -81.355207480480004, 25.76034435560528 ], [ -81.359571900091581, 25.766395123641647 ], [ -81.361754109897376, 25.772647583945897 ], [ -81.344841983902484, 25.782328812804085 ], [ -81.340477564290907, 25.786564350429543 ], [ -81.341568669193805, 25.794632041144702 ], [ -81.34456920767677, 25.803304808663498 ], [ -81.349206403514074, 25.816818190611389 ], [ -81.352752494448481, 25.82206218957624 ], [ -81.362299662348818, 25.82448249679079 ], [ -81.38603119398681, 25.83981110914959 ], [ -81.394487256984235, 25.851912645222328 ], [ -81.417400459945043, 25.865022642634457 ], [ -81.424219865588157, 25.867644642116886 ], [ -81.429129837651175, 25.865426027170216 ], [ -81.441404767808763, 25.863812489027186 ], [ -81.458589670029369, 25.868854795724161 ], [ -81.471682928864112, 25.881561408600533 ], [ -81.473865138669908, 25.88841894570842 ], [ -81.487503949956107, 25.88841894570842 ], [ -81.501142761242292, 25.883981715815082 ], [ -81.509053271788289, 25.883981715815082 ], [ -81.512872138948424, 25.886402023029628 ], [ -81.511781034045526, 25.896688328691457 ], [ -81.515872677431389, 25.89991540497752 ], [ -81.527602055137521, 25.901528943120553 ], [ -81.54124086642372, 25.900318789513278 ], [ -81.577247328219272, 25.889225714779933 ], [ -81.584612286313813, 25.888822330244178 ], [ -81.614617671143435, 25.894066329209029 ], [ -81.623346510366616, 25.897091713227212 ], [ -81.639985860135766, 25.897696790030849 ], [ -81.644623055973085, 25.897898482298729 ], [ -81.654443000099135, 25.893662944673274 ], [ -81.663717391773758, 25.885595253958115 ], [ -81.672719007222639, 25.856753259651423 ], [ -81.678174531737113, 25.845256800382323 ], [ -81.684721161154499, 25.847273723061111 ], [ -81.689631133217517, 25.852719414293844 ], [ -81.713089888629781, 25.89749509776297 ], [ -81.717727084467086, 25.902134019924187 ], [ -81.727001476141695, 25.907176326621162 ], [ -81.731911448204727, 25.931581091034516 ], [ -81.738185301396385, 25.942069088964224 ], [ -81.745550259490926, 25.949733395143625 ], [ -81.749641902876789, 25.960423085341208 ], [ -81.747732469296722, 25.994307386344872 ], [ -81.750733007779672, 25.998341231702451 ], [ -81.757552413422772, 26.000358154381242 ], [ -81.762462385485804, 26.006005537881855 ], [ -81.801742161990049, 26.088295983176469 ], [ -81.808834343858877, 26.152232432094099 ], [ -81.814562644599079, 26.173208427953512 ], [ -81.816744854404874, 26.207092728957175 ], [ -81.820563721565009, 26.236741492335383 ], [ -81.833111427948296, 26.294425480948767 ], [ -81.8445680294287, 26.327704705148793 ], [ -81.845931910557326, 26.330326704631219 ], [ -81.869117889743848, 26.378732848922169 ], [ -81.90185103683072, 26.410801919514924 ], [ -81.902669365507904, 26.416247610747657 ], [ -81.911670980956785, 26.42713899321312 ], [ -81.923673134888645, 26.436618529803432 ], [ -81.938403051077728, 26.445089605054349 ], [ -81.956679058201232, 26.452350526697991 ], [ -81.964316792521501, 26.457997910198603 ], [ -81.967044554778738, 26.462838524627699 ], [ -81.966226226101568, 26.465057139574366 ], [ -81.969499540810261, 26.476553598843466 ], [ -81.980683366064937, 26.480990828736804 ], [ -81.997049939608374, 26.484822981826504 ], [ -82.00905209354022, 26.484016212754987 ], [ -82.013689289377538, 26.490873749862871 ], [ -82.00905209354022, 26.505193900882279 ], [ -82.024600338406486, 26.5126565147938 ], [ -82.04369467420716, 26.519514051901684 ], [ -82.067153429619424, 26.513261591597438 ], [ -82.071790625456728, 26.492487288005904 ], [ -82.094703828417536, 26.484016212754987 ], [ -82.105614877446499, 26.484016212754987 ], [ -82.111888730638142, 26.540893432296855 ], [ -82.11898091250697, 26.561062659084751 ], [ -82.122254227215649, 26.579416655461735 ], [ -82.137802472081916, 26.637504028610877 ], [ -82.150077402239489, 26.654042794576952 ], [ -82.181446668197736, 26.681674635276369 ], [ -82.179810010843397, 26.696599863099411 ], [ -82.173536157651739, 26.701843862064266 ], [ -82.151714059593843, 26.704062477010932 ], [ -82.138893576984813, 26.70305401567154 ], [ -82.125800318150056, 26.699625247117595 ], [ -82.11898091250697, 26.690952479598799 ], [ -82.10616042989794, 26.667354484256961 ], [ -82.099886576706297, 26.662715562095748 ], [ -82.093067171063183, 26.665539253846053 ], [ -82.086793317871539, 26.685103403830311 ], [ -82.084883884291472, 26.702448938867903 ], [ -82.079701136002711, 26.716769089887308 ], [ -82.066607877167968, 26.742585700175816 ], [ -82.061970681330664, 26.770419233143112 ], [ -82.061425128879222, 26.774251386232812 ], [ -82.061425128879222, 26.789176614055854 ], [ -82.055151275687564, 26.802488303735867 ], [ -82.057879037944815, 26.822052453720126 ], [ -82.058424590396257, 26.838591219686201 ], [ -82.056787933041903, 26.858760446474097 ], [ -82.058970142847699, 26.876711058315323 ], [ -82.066607877167968, 26.882358441815935 ], [ -82.090612185031674, 26.888610902120181 ], [ -82.093067171063183, 26.90656151396141 ], [ -82.090066632580232, 26.923100279927485 ], [ -82.083247226937132, 26.927739202088702 ], [ -82.067698982070866, 26.927739202088702 ], [ -82.061970681330664, 26.931167970642644 ], [ -82.061425128879222, 26.938630584554165 ], [ -82.063061786233561, 26.950127043823265 ], [ -82.076427821294033, 26.958194734538424 ], [ -82.108069863478008, 26.957589657734786 ], [ -82.11297983554104, 26.955774427323874 ], [ -82.117071478926903, 26.954160889180844 ], [ -82.124709213247172, 26.945689813929928 ], [ -82.13725691963046, 26.926125663945669 ], [ -82.162079556171335, 26.925520587142032 ], [ -82.169444514265891, 26.923100279927485 ], [ -82.175172815006093, 26.916847819623236 ], [ -82.172990605200297, 26.897283669638977 ], [ -82.156351255431133, 26.85190290936621 ], [ -82.147076863756524, 26.789781690859492 ], [ -82.151168507142387, 26.783529230555246 ], [ -82.172990605200297, 26.778890308394029 ], [ -82.178718905940499, 26.772637848089779 ], [ -82.209269843221577, 26.772234463554021 ], [ -82.221817549604879, 26.772032771286142 ], [ -82.232183046182399, 26.782924153751608 ], [ -82.233274151085283, 26.78413430735888 ], [ -82.234092479762467, 26.783327538287367 ], [ -82.24200299030845, 26.774251386232812 ], [ -82.251004605757345, 26.755897389855825 ], [ -82.259733444980498, 26.717374166690945 ], [ -82.26382508836636, 26.725643549673983 ], [ -82.264643417043544, 26.756905851195221 ], [ -82.269553389106562, 26.784739384162517 ], [ -82.271735598912358, 26.789579998591613 ], [ -82.281555543038422, 26.811161071254659 ], [ -82.289193277358692, 26.827699837220734 ], [ -82.301740983741979, 26.841616603704384 ], [ -82.351659033049458, 26.908376744372319 ], [ -82.375663340913178, 26.946093198465686 ], [ -82.400485977454053, 26.985019806166324 ], [ -82.419307537028999, 27.0207193375809 ], [ -82.445766830924214, 27.060654406620934 ], [ -82.460223970887583, 27.09998439885733 ], [ -82.465406719176343, 27.110674089054918 ], [ -82.46895281011075, 27.113699473073101 ], [ -82.477136096882475, 27.141331313772518 ], [ -82.512324230000843, 27.207486377636819 ], [ -82.539601852573242, 27.254278983784737 ], [ -82.545057377087716, 27.260934828624741 ], [ -82.558968964599643, 27.26880082707202 ], [ -82.569880013628591, 27.279490517269608 ], [ -82.569334461177149, 27.298651282718108 ], [ -82.576153866820249, 27.309340972915692 ], [ -82.597703188652446, 27.335762660007838 ], [ -82.623889706321933, 27.36218434709998 ], [ -82.642711265896878, 27.389816187799397 ], [ -82.642711265896878, 27.389816187799397 ], [ -82.675171636758023, 27.424305565606701 ], [ -82.691810986527187, 27.437213870750952 ], [ -82.690992657850018, 27.444273100126718 ], [ -82.707904783844896, 27.487636937720694 ], [ -82.714451413262282, 27.500343550597069 ], [ -82.72454413361406, 27.513655240277082 ], [ -82.743092916963292, 27.53100077531467 ], [ -82.745820679220515, 27.538866773761949 ], [ -82.742547364511836, 27.539270158297708 ], [ -82.708177560070624, 27.523538161403149 ], [ -82.710632546102147, 27.50175539647222 ], [ -82.706813678942012, 27.498326627918278 ], [ -82.690447105398562, 27.496511397507369 ], [ -82.686355462012699, 27.497116474311007 ], [ -82.686901014464155, 27.508007856776469 ], [ -82.683627699755476, 27.513050163473444 ], [ -82.674626084306581, 27.519706008313449 ], [ -82.66207837792328, 27.522731392331632 ], [ -82.650621776442875, 27.523134776867391 ], [ -82.645984580605571, 27.533622774797095 ], [ -82.632072993093658, 27.551976771174083 ], [ -82.611887552390073, 27.571137536622583 ], [ -82.612978657292985, 27.582835688159562 ], [ -82.612705881067257, 27.583239072695321 ], [ -82.611614776164359, 27.585255995374112 ], [ -82.596612083749534, 27.594130455160784 ], [ -82.584609929817688, 27.595945685571696 ], [ -82.570698342305775, 27.60885399071595 ], [ -82.565788370242728, 27.615711527823834 ], [ -82.558423412148187, 27.638704446362034 ], [ -82.554604544988052, 27.645158598934159 ], [ -82.537146866541718, 27.672992131901459 ], [ -82.51423366358091, 27.705666279297851 ], [ -82.494866551554523, 27.71897796897786 ], [ -82.482318845171221, 27.719986430317256 ], [ -82.477681649333917, 27.72301181433544 ], [ -82.476317768205291, 27.729869351443327 ], [ -82.477136096882475, 27.735315042676056 ], [ -82.482318845171221, 27.742575964319698 ], [ -82.478227201785359, 27.746206425141523 ], [ -82.457496208630346, 27.752660577713648 ], [ -82.434583005669538, 27.764358729250628 ], [ -82.431855243412286, 27.768190882340328 ], [ -82.434037453218082, 27.774039958108816 ], [ -82.419034760803271, 27.793805800360957 ], [ -82.418489208351815, 27.803285336951266 ], [ -82.410851474031546, 27.810949643130666 ], [ -82.402940963485563, 27.812764873541578 ], [ -82.393393795585226, 27.837573022490687 ], [ -82.397485438971074, 27.851691481242216 ], [ -82.402668187259835, 27.882550398227696 ], [ -82.413852012514525, 27.901307779140442 ], [ -82.432400795863742, 27.901307779140442 ], [ -82.451495131664416, 27.907560239444688 ], [ -82.459951194661869, 27.911594084802267 ], [ -82.459678418436141, 27.916838083767122 ], [ -82.46213340446765, 27.920065160053184 ], [ -82.477954425559631, 27.927729466232584 ], [ -82.489683803265763, 27.919661775517426 ], [ -82.491047684394388, 27.914417776552575 ], [ -82.487501593459967, 27.895055318836192 ], [ -82.488047145911423, 27.863591325047075 ], [ -82.480136635365426, 27.85330501938525 ], [ -82.471680572367987, 27.847254251348879 ], [ -82.46895281011075, 27.8432204059913 ], [ -82.472498901045157, 27.822647794667645 ], [ -82.475226663302408, 27.821034256524616 ], [ -82.489956579491491, 27.822647794667645 ], [ -82.511233125097959, 27.828093485900379 ], [ -82.554058992536611, 27.848464404956154 ], [ -82.552967887633713, 27.862784555975558 ], [ -82.538510747670344, 27.86480147865435 ], [ -82.533327999381584, 27.870650554422838 ], [ -82.529781908447177, 27.877508091530725 ], [ -82.539329076347514, 27.884970705442246 ], [ -82.54287516728192, 27.890618088942855 ], [ -82.541784062379037, 27.893643472961038 ], [ -82.535782985413107, 27.898080702854379 ], [ -82.531418565801516, 27.903929778622867 ], [ -82.533600775607312, 27.932973465197438 ], [ -82.541238509927581, 27.948907154359876 ], [ -82.553786216310883, 27.967059458468981 ], [ -82.58951990188072, 27.970891611558681 ], [ -82.619525286710342, 27.96968145795141 ], [ -82.648712342862808, 27.966252689397464 ], [ -82.716633623068063, 27.958386690950185 ], [ -82.720452490228197, 27.95576469146776 ], [ -82.723998581162618, 27.94810038528836 ], [ -82.722089147582551, 27.94184792498411 ], [ -82.721543595131095, 27.94023438684108 ], [ -82.720452490228197, 27.937209002822897 ], [ -82.720179714002484, 27.93640223375138 ], [ -82.710086993650691, 27.928334543036222 ], [ -82.691538210301474, 27.92490577448228 ], [ -82.684991580884088, 27.916233006963484 ], [ -82.671352769597888, 27.913005930677421 ], [ -82.627981349707795, 27.910383931194993 ], [ -82.634255202899439, 27.903728086354988 ], [ -82.632072993093658, 27.891021473478613 ], [ -82.609978118810005, 27.873474246173146 ], [ -82.567970580048524, 27.883760551834971 ], [ -82.567697803822796, 27.881541936888304 ], [ -82.56687947514564, 27.857943941546466 ], [ -82.598521517329601, 27.857540557010708 ], [ -82.594702650169467, 27.843422098259179 ], [ -82.589247125654992, 27.835757792079779 ], [ -82.586519363397755, 27.816798718899157 ], [ -82.607523132778496, 27.798848107057928 ], [ -82.622798601419035, 27.779889033877307 ], [ -82.630436335739304, 27.753870731320923 ], [ -82.62498081122483, 27.732693043193631 ], [ -82.625799139902, 27.727045659693019 ], [ -82.633709650447997, 27.710506893726944 ], [ -82.639710727413927, 27.703851048886939 ], [ -82.652531210022943, 27.700220588065118 ], [ -82.662896706600449, 27.702237510743906 ], [ -82.663169482826177, 27.702439203011785 ], [ -82.667533902437754, 27.704254433422697 ], [ -82.668897783566379, 27.704657817958456 ], [ -82.670534440920733, 27.705464587029972 ], [ -82.670807217146447, 27.705666279297851 ], [ -82.671625545823616, 27.705867971565731 ], [ -82.671625545823616, 27.705867971565731 ], [ -82.672171098275072, 27.705867971565731 ], [ -82.672989426952228, 27.70606966383361 ], [ -82.674080531855139, 27.70606966383361 ], [ -82.677353846563818, 27.706271356101485 ], [ -82.678990503918158, 27.69598505043966 ], [ -82.679263280143886, 27.694573204564506 ], [ -82.693720420107255, 27.700220588065118 ], [ -82.713633084585098, 27.698607049922085 ], [ -82.718815832873858, 27.691951205082081 ], [ -82.722907476259707, 27.671176901490547 ], [ -82.721543595131095, 27.663915979846905 ], [ -82.716360846842349, 27.651411059238409 ], [ -82.712541979682214, 27.646570444809313 ], [ -82.698084839718831, 27.638906138629913 ], [ -82.704904245361945, 27.625392756682025 ], [ -82.733000196611499, 27.612887836073529 ], [ -82.736546287545906, 27.617325065966867 ], [ -82.73736461622309, 27.623174141735355 ], [ -82.737910168674532, 27.626804602557176 ], [ -82.739001273577429, 27.636889215951125 ], [ -82.737910168674532, 27.706876432905123 ], [ -82.740365154706041, 27.718171199906344 ], [ -82.746093455446243, 27.731281197318477 ], [ -82.753731189766512, 27.736323504015452 ], [ -82.76082337163534, 27.745197963802127 ], [ -82.770097763309948, 27.767989190072448 ], [ -82.783191022144706, 27.783721186967007 ], [ -82.790283204013519, 27.791587185414286 ], [ -82.820561365068869, 27.81377333488097 ], [ -82.828471875614866, 27.822244410131887 ], [ -82.846475106512656, 27.854313480724642 ], [ -82.849202868769879, 27.863187940511317 ], [ -82.851112302349947, 27.886382551317396 ], [ -82.847838987641268, 27.910182238927113 ], [ -82.840746805772454, 27.937209002822897 ], [ -82.831472414097831, 27.96201715177201 ], [ -82.82492578468046, 27.960201921361097 ], [ -82.821925246197495, 27.956773152807155 ], [ -82.83092686164639, 27.930956542518647 ], [ -82.838564595966659, 27.909173777587721 ], [ -82.832290742775001, 27.909173777587721 ], [ -82.820834141294597, 27.927326081696826 ], [ -82.808831987362737, 27.953142691985335 ], [ -82.805558672654058, 27.960201921361097 ], [ -82.797920938333789, 27.990657453810819 ], [ -82.792738190045043, 28.011230065134473 ], [ -82.792738190045043, 28.032407753261765 ], [ -82.78264546969325, 28.055804056335724 ], [ -82.783736574596148, 28.106227123305466 ], [ -82.782099917241794, 28.120345582056991 ], [ -82.781281588564639, 28.127606503700633 ], [ -82.786737113079113, 28.144952038738225 ], [ -82.790828756464975, 28.152414652649746 ], [ -82.799012043236687, 28.151809575846109 ], [ -82.808559211137023, 28.154834959864296 ], [ -82.805013120202602, 28.172180494901884 ], [ -82.797648162108061, 28.187710799528563 ], [ -82.762732805215407, 28.218973101049805 ], [ -82.764369462569746, 28.219981562389197 ], [ -82.764096686344033, 28.244386326802552 ], [ -82.759186714280986, 28.254067555660743 ], [ -82.746093455446243, 28.261126785036506 ], [ -82.732727420385771, 28.291985702021986 ], [ -82.735455182643022, 28.300456777272903 ], [ -82.73136353925716, 28.325063233954136 ], [ -82.715815294390893, 28.345434153009911 ], [ -82.705995350264828, 28.368023687012354 ], [ -82.706268126490556, 28.401302911212383 ], [ -82.697539287267389, 28.420261984393004 ], [ -82.684173252206918, 28.427926290572405 ], [ -82.67871772769243, 28.433371981805138 ], [ -82.677899399015274, 28.434380443144534 ], [ -82.674898860532295, 28.442044749323934 ], [ -82.680354385046783, 28.457171669414855 ], [ -82.6724438745008, 28.464835975594255 ], [ -82.665078916406245, 28.484400125578514 ], [ -82.664533363954803, 28.488837355471851 ], [ -82.66644279753487, 28.497308430722768 ], [ -82.670261664695005, 28.50073719927671 ], [ -82.669443336017821, 28.51989796472521 ], [ -82.66807945488921, 28.528167347708248 ], [ -82.663715035277619, 28.530184270387039 ], [ -82.656622853408805, 28.544907805942202 ], [ -82.661805601697552, 28.549748420371298 ], [ -82.661532825471824, 28.554185650264635 ], [ -82.657168405860247, 28.568102416748282 ], [ -82.654167867377282, 28.590893643018607 ], [ -82.663987811503347, 28.606625639913165 ], [ -82.656622853408805, 28.623769482682874 ], [ -82.658532286988873, 28.636677787827132 ], [ -82.654167867377282, 28.668343473884129 ], [ -82.646530133057013, 28.694361776440513 ], [ -82.645439028154129, 28.697588852726575 ], [ -82.652803986248671, 28.705656543441734 ], [ -82.65607730095735, 28.712514080549617 ], [ -82.652803986248671, 28.719169925389622 ], [ -82.65607730095735, 28.728044385176297 ], [ -82.662351154149007, 28.73732222949873 ], [ -82.651167328894331, 28.747205150624801 ], [ -82.645439028154129, 28.766970992876939 ], [ -82.642984042122606, 28.782501297503618 ], [ -82.642984042122606, 28.789963911415139 ], [ -82.648712342862808, 28.796216371719389 ], [ -82.650349000217147, 28.804889139238185 ], [ -82.652803986248671, 28.830907441794569 ], [ -82.638619622511015, 28.843412362403065 ], [ -82.642984042122606, 28.860152820637019 ], [ -82.639983503639641, 28.876288202067336 ], [ -82.644893475702673, 28.889196507211587 ], [ -82.65607730095735, 28.899079428337657 ], [ -82.673534979403684, 28.900491274212811 ], [ -82.688810448044222, 28.905533580909783 ], [ -82.70272203555615, 28.932963729341324 ], [ -82.70872311252208, 28.935989113359504 ], [ -82.72372580493689, 28.953536340664975 ], [ -82.735727958868736, 28.973705567452871 ], [ -82.737910168674532, 28.99569002465168 ], [ -82.758913938055272, 28.99326971743713 ], [ -82.760550595409612, 28.993068025169251 ], [ -82.764096686344033, 28.999723870009255 ], [ -82.759459490506714, 29.006581407117142 ], [ -82.753458413540784, 29.026548941637159 ], [ -82.759732266732442, 29.054180782336577 ], [ -82.78346379837042, 29.064668780266281 ], [ -82.780463259887455, 29.073543240052956 ], [ -82.817015274134462, 29.076165239535385 ], [ -82.823561903551848, 29.098956465805706 ], [ -82.809377539814193, 29.104603849306315 ], [ -82.801194253042468, 29.105007233842073 ], [ -82.799012043236687, 29.110654617342686 ], [ -82.799012043236687, 29.114486770432386 ], [ -82.805831448879786, 29.129815382791186 ], [ -82.804740343976889, 29.14655584102514 ], [ -82.827107994486255, 29.158455684829999 ], [ -82.858204484218774, 29.162287837919699 ], [ -82.887118764145512, 29.161682761116062 ], [ -82.922579673489622, 29.16975045183122 ], [ -82.932399617615687, 29.167935221420311 ], [ -82.945220100224702, 29.167733529152432 ], [ -82.974679932602896, 29.170960605438495 ], [ -82.979589904665914, 29.171767374510011 ], [ -82.987227638986184, 29.180036757493049 ], [ -82.991592058597774, 29.180641834296686 ], [ -82.996229254435079, 29.178019834814258 ], [ -83.018324128718717, 29.151396455454236 ], [ -83.019142457395887, 29.14131184206029 ], [ -83.030326282650577, 29.134050920416644 ], [ -83.053239485611385, 29.130823844130582 ], [ -83.056785576545792, 29.146354148757261 ], [ -83.068242178026196, 29.153211685865145 ], [ -83.060877219931655, 29.170960605438495 ], [ -83.061149996157368, 29.176204604403345 ], [ -83.065241639543231, 29.184473987386383 ], [ -83.078880450829416, 29.196978907994882 ], [ -83.087882066278311, 29.216341365711259 ], [ -83.074788807443568, 29.248007051768258 ], [ -83.077243793475077, 29.2552679734119 ], [ -83.088973171181209, 29.266562740413121 ], [ -83.107521954530426, 29.268983047627671 ], [ -83.125525185428216, 29.278865968753738 ], [ -83.12798017145974, 29.282698121843438 ], [ -83.146528954808957, 29.289152274415564 ], [ -83.149802269517636, 29.289757351219201 ], [ -83.160713318546598, 29.286530274933138 ], [ -83.166168843061087, 29.288950582147685 ], [ -83.169442157769765, 29.290362428022839 ], [ -83.176807115864307, 29.314162115632556 ], [ -83.178170996992932, 29.327877189848326 ], [ -83.176807115864307, 29.329289035723477 ], [ -83.175443234735695, 29.344617648082277 ], [ -83.189627598473336, 29.363375028995023 ], [ -83.200811423728013, 29.373863026924731 ], [ -83.202448081082366, 29.394435638248382 ], [ -83.217996325948619, 29.420453940804769 ], [ -83.240636752683713, 29.433160553681141 ], [ -83.264095508095963, 29.43578255316357 ], [ -83.27200601864196, 29.432353784609628 ], [ -83.29464644537704, 29.43800116811024 ], [ -83.307194151760342, 29.459582240773287 ], [ -83.307739704211798, 29.46886008509572 ], [ -83.311558571371933, 29.475717622203604 ], [ -83.32328794907805, 29.476726083542999 ], [ -83.331198459624048, 29.475515929935725 ], [ -83.350020019198993, 29.489432696419371 ], [ -83.356839424842093, 29.499920694349079 ], [ -83.370205459902564, 29.499920694349079 ], [ -83.379207075351445, 29.5035511551709 ], [ -83.383844271188764, 29.513030691761209 ], [ -83.4002108447322, 29.517266229386671 ], [ -83.401574725860826, 29.523316997423038 ], [ -83.399938068506472, 29.532998226281229 ], [ -83.405120816795232, 29.578378986553993 ], [ -83.405120816795232, 29.595522829323706 ], [ -83.39939251605503, 29.612868364361297 ], [ -83.404029711892335, 29.640701897328594 ], [ -83.412212998664046, 29.666921892152857 ], [ -83.412758551115502, 29.66853543029589 ], [ -83.414667984695569, 29.670552352974681 ], [ -83.436217306527752, 29.677409890082565 ], [ -83.444673369525191, 29.677208197814686 ], [ -83.448219460459597, 29.675191275135894 ], [ -83.455311642328425, 29.676401428743169 ], [ -83.483134817352266, 29.690519887494695 ], [ -83.483680369803722, 29.698587578209853 ], [ -83.4937730901555, 29.708470499335924 ], [ -83.51259464973046, 29.716538190051082 ], [ -83.537690062497049, 29.722992342623208 ], [ -83.547237230397386, 29.732270186945641 ], [ -83.554874964717655, 29.74255649260747 ], [ -83.566058789972345, 29.761515565788088 ], [ -83.578879272581361, 29.768373102895975 ], [ -83.584607573321563, 29.776037409075375 ], [ -83.585971454450174, 29.784710176594171 ], [ -83.582970915967223, 29.787332176076596 ], [ -83.581879811064326, 29.791971098237813 ], [ -83.585971454450174, 29.811736940489951 ], [ -83.595518622350511, 29.828074014188147 ], [ -83.605338566476576, 29.836343397171184 ], [ -83.618431825311333, 29.842394165207551 ], [ -83.638071713563448, 29.886161387337289 ], [ -83.659893811621373, 29.899473077017298 ], [ -83.67926092364776, 29.918432150197923 ], [ -83.686353105516588, 29.923676149162773 ], [ -83.757274924204808, 29.957963834702198 ], [ -83.788644190163055, 29.97692290788282 ], [ -83.828742295344469, 29.983175368187069 ], [ -83.845381645113633, 29.998100596010111 ], [ -83.931578932442392, 30.039044126389541 ], [ -83.933761142248187, 30.041061049068329 ], [ -83.93185170866812, 30.044086433086512 ], [ -83.933488366022459, 30.046305048033183 ], [ -83.959674883691946, 30.064860736678046 ], [ -83.991589702101649, 30.083819809858667 ], [ -84.000591317550544, 30.096123038199284 ], [ -84.024322849188508, 30.10318226757505 ], [ -84.048599933277956, 30.10318226757505 ], [ -84.06305707324131, 30.101367037164138 ], [ -84.076150332076054, 30.09551796139565 ], [ -84.082969737719168, 30.092290885109584 ], [ -84.087061381105016, 30.092089192841705 ], [ -84.094699115425286, 30.094912884592013 ], [ -84.102609625971283, 30.093702730984738 ], [ -84.113793451225959, 30.0854333480017 ], [ -84.124977276480649, 30.090677346966551 ], [ -84.13561554928387, 30.083013040787151 ], [ -84.157164871116066, 30.072726735125325 ], [ -84.167803143919286, 30.071516581518054 ], [ -84.17925974539969, 30.073130119661084 ], [ -84.198626857426092, 30.08785365521625 ], [ -84.201627395909071, 30.088055347484126 ], [ -84.20326405326341, 30.085836732537459 ], [ -84.207901249100715, 30.084828271198063 ], [ -84.237088305253167, 30.08563504026958 ], [ -84.24554436825062, 30.093097654181101 ], [ -84.247453801830687, 30.101165344896259 ], [ -84.256455417279568, 30.103787344378688 ], [ -84.269275899888584, 30.097736576342317 ], [ -84.272549214597291, 30.092290885109584 ], [ -84.273913095725902, 30.083013040787151 ], [ -84.270367004791495, 30.07555042687563 ], [ -84.270912557242937, 30.068087812964109 ], [ -84.277186410434581, 30.060221814516829 ], [ -84.289734116817897, 30.057196430498646 ], [ -84.297917403589608, 30.057398122766525 ], [ -84.315375082035928, 30.069499658839263 ], [ -84.342107152156871, 30.063852275338654 ], [ -84.359019278151763, 30.058204891838038 ], [ -84.365838683794863, 30.024522283102254 ], [ -84.362019816634728, 29.987814290348282 ], [ -84.360110383054661, 29.984788906330099 ], [ -84.347835452897073, 29.984183829526462 ], [ -84.342925480834054, 29.975107677471911 ], [ -84.341288823479715, 29.960787526452503 ], [ -84.339379389899648, 29.946063990897336 ], [ -84.336378851416669, 29.942433530075519 ], [ -84.333651089159446, 29.923676149162773 ], [ -84.335833298965227, 29.912986458965189 ], [ -84.343471033285496, 29.899473077017298 ], [ -84.349199334025698, 29.896851077534873 ], [ -84.378931942629606, 29.893018924445173 ], [ -84.404845684073379, 29.90128830742821 ], [ -84.423940019874053, 29.902901845571243 ], [ -84.434305516451559, 29.906330614125181 ], [ -84.443579908126168, 29.913793228036702 ], [ -84.451763194897893, 29.929121840395506 ], [ -84.470311978247111, 29.92448291823429 ], [ -84.494589062336559, 29.913994920304582 ], [ -84.512046740782878, 29.91661691978701 ], [ -84.535778272420856, 29.910162767214885 ], [ -84.57751303495661, 29.887774925480318 ], [ -84.603426776400397, 29.876076773943339 ], [ -84.613246720526462, 29.868009083228181 ], [ -84.647889301193388, 29.847033087368771 ], [ -84.656345364190827, 29.837956935314217 ], [ -84.656345364190827, 29.834326474492393 ], [ -84.669711399251298, 29.828880783259663 ], [ -84.683895762988953, 29.831301090474213 ], [ -84.692079049760665, 29.829082475527542 ], [ -84.730267721362011, 29.806896326060858 ], [ -84.755635910354329, 29.788542329683871 ], [ -84.763000868448884, 29.788945714219629 ], [ -84.824102743011039, 29.758288489502029 ], [ -84.837196001845797, 29.755868182287479 ], [ -84.868292491578316, 29.742354800339591 ], [ -84.881658526638788, 29.733883725088674 ], [ -84.887932379830431, 29.72238726581957 ], [ -84.89256957566775, 29.722588958087449 ], [ -84.901843967342359, 29.735698955499583 ], [ -84.890114589636227, 29.755868182287479 ], [ -84.877021330801483, 29.772810332789312 ], [ -84.893933456796361, 29.785113561129929 ], [ -84.904026177148154, 29.7863237147372 ], [ -84.91521000240283, 29.78329833071902 ], [ -84.920938303143032, 29.772810332789312 ], [ -84.938395981589366, 29.75022079878687 ], [ -84.946579268361077, 29.744976799822016 ], [ -84.964036946807397, 29.742354800339591 ], [ -84.968946918870444, 29.72702618798079 ], [ -84.977130205642155, 29.721177112212299 ], [ -84.993224002959863, 29.714924651908049 ], [ -85.037140975301412, 29.711092498818353 ], [ -85.07205633219408, 29.718958497265632 ], [ -85.101788940797988, 29.718756804997753 ], [ -85.121428829050103, 29.715933113247445 ], [ -85.153343647459806, 29.708268807068045 ], [ -85.177347955323512, 29.700201116352886 ], [ -85.217446060504926, 29.694957117388036 ], [ -85.227538780856719, 29.693545271512882 ], [ -85.259726375492136, 29.681242043172261 ], [ -85.290822865224669, 29.684065734922569 ], [ -85.319191592699951, 29.681443735440141 ], [ -85.343741453015099, 29.671964198849832 ], [ -85.347833096400961, 29.667123584420736 ], [ -85.344832557917996, 29.654820356080123 ], [ -85.35274306846398, 29.659862662777094 ], [ -85.369382418233144, 29.681040350904386 ], [ -85.380293467262106, 29.698385885941974 ], [ -85.39775114570844, 29.740539569928679 ], [ -85.414117719251863, 29.799837096685092 ], [ -85.417936586411997, 29.828880783259663 ], [ -85.416572705283386, 29.84259585747543 ], [ -85.413572166800421, 29.852882163137259 ], [ -85.405934432480151, 29.86579046828151 ], [ -85.39256839741968, 29.870832774978489 ], [ -85.398842250611324, 29.859336315709385 ], [ -85.405116103802982, 29.830090936866938 ], [ -85.405934432480151, 29.80185401936388 ], [ -85.395568935902645, 29.762322334859604 ], [ -85.377838481230583, 29.709680652943199 ], [ -85.36392689371867, 29.693545271512882 ], [ -85.353834173366891, 29.684670811726207 ], [ -85.34510533414371, 29.685074196261965 ], [ -85.317554935345612, 29.691326656566211 ], [ -85.311281082153954, 29.697579116870457 ], [ -85.301461138027889, 29.797215097202667 ], [ -85.302552242930787, 29.80810647966813 ], [ -85.305007228962296, 29.811131863686313 ], [ -85.311553858379682, 29.814358939972379 ], [ -85.314554396862633, 29.822224938419659 ], [ -85.314827173088361, 29.830494321402696 ], [ -85.312917739508293, 29.832309551813605 ], [ -85.317554935345612, 29.838965396653613 ], [ -85.324919893440153, 29.84501616468998 ], [ -85.332284851534695, 29.845822933761497 ], [ -85.336649271146285, 29.849251702315438 ], [ -85.347014767723778, 29.87204292858576 ], [ -85.363654117492942, 29.89886800021366 ], [ -85.384657886873683, 29.920852457412469 ], [ -85.388749530259545, 29.924281225966411 ], [ -85.405116103802982, 29.938399684717936 ], [ -85.425847096957995, 29.94989614398704 ], [ -85.460489677624935, 29.959577372845231 ], [ -85.469491293073816, 29.957762142434319 ], [ -85.487767300197333, 29.961190910988261 ], [ -85.509043845803788, 29.971477216650086 ], [ -85.541231440439219, 29.995881981063441 ], [ -85.571782377720297, 30.026539205781042 ], [ -85.581329545620633, 30.037833972782266 ], [ -85.588148951263719, 30.055582892355616 ], [ -85.601242210098476, 30.056389661427129 ], [ -85.618154336093355, 30.065465813481683 ], [ -85.637248671894042, 30.073331811928963 ], [ -85.653342469211736, 30.0777690418223 ], [ -85.696713889101844, 30.096929807270801 ], [ -85.729992588640158, 30.118107495398093 ], [ -85.749905253118015, 30.136461491775076 ], [ -85.775273442110333, 30.156227334027214 ], [ -85.811279903905898, 30.178413483493898 ], [ -85.878110079208255, 30.215524860783631 ], [ -85.922572604001246, 30.238114394786074 ], [ -85.995949408720975, 30.269175004039433 ], [ -86.000041052106837, 30.270788542182466 ], [ -86.090057206595731, 30.303664381846737 ], [ -86.222626452297561, 30.343599450886771 ], [ -86.298731019274527, 30.362961908603147 ], [ -86.364197313448273, 30.374458367872251 ], [ -86.397203236760859, 30.37849221322983 ], [ -86.400476551469552, 30.378895597765585 ], [ -86.412205929175684, 30.380307443640739 ], [ -86.42939083139629, 30.381315904980134 ], [ -86.454759020388607, 30.382929443123167 ], [ -86.456122901517233, 30.382929443123167 ], [ -86.456941230194388, 30.383131135391046 ], [ -86.470852817706316, 30.383937904462563 ], [ -86.474126132415009, 30.383736212194684 ], [ -86.506040950824712, 30.38232436631953 ], [ -86.52895415378552, 30.386963288480743 ], [ -86.632881895786326, 30.396241132803176 ], [ -86.750994001524788, 30.391803902909842 ], [ -86.800366498380811, 30.386559903944988 ], [ -86.850557323914018, 30.380912520444376 ], [ -86.909749764896105, 30.372441445193459 ], [ -86.919296932796442, 30.370626214782551 ], [ -87.155521144273351, 30.327665761724333 ], [ -87.206257522257999, 30.321009916884325 ], [ -87.26790494927161, 30.315564225651592 ], [ -87.282907641686421, 30.318791301937658 ], [ -87.295455348069709, 30.323430224098871 ], [ -87.319459655933429, 30.317782840598262 ], [ -87.350556145665948, 30.313143918437046 ], [ -87.419841306999814, 30.297210229274608 ], [ -87.51831352448616, 30.280469771040657 ], [ -87.452301677860959, 30.300235613292791 ], [ -87.450119468055178, 30.311126995758258 ], [ -87.450937796732347, 30.346221450369196 ], [ -87.451483349183803, 30.367197446228609 ], [ -87.440572300154841, 30.391400518374084 ], [ -87.427479041320083, 30.408342668875918 ], [ -87.419295754548372, 30.410157899286826 ], [ -87.430479579803063, 30.491036498706286 ], [ -87.44821003447511, 30.513020955905095 ], [ -87.44984669182945, 30.514432801780249 ], [ -87.44984669182945, 30.514634494048128 ], [ -87.394473118007497, 30.6251618568458 ], [ -87.394200341781783, 30.641700622811872 ], [ -87.396928104039006, 30.65360046661673 ], [ -87.407020824390798, 30.671752770725838 ], [ -87.449301139378008, 30.698981226889497 ], [ -87.481215957787697, 30.716528454194965 ], [ -87.497582531331147, 30.720158915016789 ], [ -87.503038055845622, 30.722377529963456 ], [ -87.532497888223801, 30.743555218090748 ], [ -87.624150700067034, 30.845813197905379 ], [ -87.635061749095996, 30.865982424693275 ], [ -87.622241266486967, 30.897446418482396 ], [ -87.601237497106226, 30.936373026183034 ], [ -87.594145315237398, 30.976308095223068 ], [ -87.599055287300445, 30.997485783350356 ], [ -87.599055287300445, 30.997485783350356 ], [ -87.57123211227659, 30.997889167886115 ], [ -87.54859168554151, 30.997889167886115 ], [ -87.480124852884813, 30.998292552421873 ], [ -87.479579300433358, 30.998292552421873 ], [ -87.478760971756188, 30.998292552421873 ], [ -87.466758817824342, 30.998090860153994 ], [ -87.466758817824342, 30.998090860153994 ], [ -87.461848845761295, 30.998292552421873 ], [ -87.461576069535582, 30.998292552421873 ], [ -87.458575531052617, 30.998292552421873 ], [ -87.455574992569652, 30.998292552421873 ], [ -87.44984669182945, 30.998292552421873 ], [ -87.43238901338313, 30.998292552421873 ], [ -87.425842383965744, 30.998090860153994 ], [ -87.367741047886554, 30.998292552421873 ], [ -87.363922180726419, 30.998292552421873 ], [ -87.355738893954708, 30.998292552421873 ], [ -87.333916795896783, 30.998292552421873 ], [ -87.312094697838873, 30.998494244689752 ], [ -87.303911411067162, 30.998090860153994 ], [ -87.301456425035639, 30.998494244689752 ], [ -87.291090928458132, 30.998292552421873 ], [ -87.288908718652351, 30.998292552421873 ], [ -87.265449963240087, 30.998292552421873 ], [ -87.260539991177055, 30.998292552421873 ], [ -87.259721662499885, 30.998090860153994 ], [ -87.258085005145546, 30.998292552421873 ], [ -87.256993900242648, 30.998292552421873 ], [ -87.255630019114022, 30.998292552421873 ], [ -87.255084466662566, 30.998292552421873 ], [ -87.16315887859362, 30.999099321493389 ], [ -87.162613326142178, 30.999099321493389 ], [ -87.068505528267423, 30.999099321493389 ], [ -87.064141108655832, 30.999099321493389 ], [ -87.053775612078326, 30.999099321493389 ], [ -87.039864024566413, 30.999502706029148 ], [ -87.036317933632006, 30.999301013761269 ], [ -87.027043541957383, 30.999301013761269 ], [ -86.888200443063909, 30.997485783350356 ], [ -86.87292497442337, 30.997687475618235 ], [ -86.832008540564786, 30.997284091082477 ], [ -86.830371883210432, 30.997485783350356 ], [ -86.785909358417442, 30.996880706546719 ], [ -86.785636582191728, 30.996880706546719 ], [ -86.728353574789693, 30.99667901427884 ], [ -86.727262469886796, 30.996880706546719 ], [ -86.725353036306728, 30.996880706546719 ], [ -86.688255469608279, 30.99506547613581 ], [ -86.678435525482229, 30.994460399332173 ], [ -86.664796714196029, 30.994460399332173 ], [ -86.567688377838309, 30.99506547613581 ], [ -86.563323958226732, 30.995267168403689 ], [ -86.519952538336625, 30.993250245724902 ], [ -86.512860356467797, 30.99365363026066 ], [ -86.458305111323028, 30.994057014796418 ], [ -86.454759020388607, 30.993855322528539 ], [ -86.404840971081128, 30.994057014796418 ], [ -86.392020488472099, 30.994258707064294 ], [ -86.38874717376342, 30.994258707064294 ], [ -86.38874717376342, 30.994258707064294 ], [ -86.374562810025779, 30.994460399332173 ], [ -86.369380061737019, 30.994460399332173 ], [ -86.365015642125442, 30.994460399332173 ], [ -86.304732096240457, 30.994057014796418 ], [ -86.28918385137419, 30.993855322528539 ], [ -86.187165542953437, 30.994057014796418 ], [ -86.180346137310352, 30.994057014796418 ], [ -86.175163389021591, 30.993855322528539 ], [ -86.168889535829948, 30.99365363026066 ], [ -86.162888458864018, 30.99365363026066 ], [ -86.056232954605974, 30.993048553457022 ], [ -86.05241408744584, 30.993250245724902 ], [ -86.034956408999506, 30.993250245724902 ], [ -85.498405573000554, 30.996880706546719 ], [ -85.497860020549112, 30.996880706546719 ], [ -85.488312852648775, 30.997082398814598 ], [ -85.154434752362704, 31.000914551904302 ], [ -85.152252542556909, 31.000914551904302 ], [ -85.151979766331181, 31.000914551904302 ], [ -85.145705913139537, 31.000712859636423 ], [ -85.057599192230711, 31.000511167368543 ], [ -85.054871429973474, 31.000511167368543 ], [ -85.052143667716223, 31.000511167368543 ], [ -85.031139898335482, 31.000712859636423 ], [ -85.030048793432599, 31.000712859636423 ], [ -85.027593807401075, 31.000712859636423 ], [ -85.024047716466669, 31.000712859636423 ], [ -85.002498394634472, 31.000712859636423 ], [ -84.998679527474337, 30.971467480793972 ], [ -84.983404058833798, 30.935566257111518 ], [ -84.959672527195835, 30.910556415894526 ], [ -84.941942072523773, 30.887966881892083 ], [ -84.896115666602157, 30.750614447466511 ], [ -84.864746400643895, 30.711486147497993 ], [ -84.863382519515284, 30.711486147497993 ], [ -84.606427314883348, 30.69978799596101 ], [ -84.60615453865762, 30.69978799596101 ], [ -84.539324363355263, 30.69676261194283 ], [ -84.534959943743686, 30.696560919674951 ], [ -84.380841376209673, 30.689703382567064 ], [ -84.282641934949055, 30.685266152673726 ], [ -84.281278053820444, 30.685266152673726 ], [ -84.083788066396323, 30.675988308351293 ], [ -84.057328772501108, 30.674778154744022 ], [ -84.046690499697888, 30.674173077940385 ], [ -84.041780527634842, 30.673971385672505 ], [ -84.039598317829046, 30.673769693404626 ], [ -84.00741072319363, 30.672156155261597 ], [ -84.00741072319363, 30.672156155261597 ], [ -83.880297002006287, 30.665903694957347 ], [ -83.880297002006287, 30.665903694957347 ], [ -83.855201589239698, 30.664491849082196 ], [ -83.820831784798486, 30.662676618671284 ], [ -83.810466288220965, 30.661869849599768 ], [ -83.743636112918608, 30.658441081045826 ], [ -83.676805937616251, 30.654810620224005 ], [ -83.674078175359, 30.654810620224005 ], [ -83.611612419668234, 30.651180159402184 ], [ -83.611612419668234, 30.651180159402184 ], [ -83.448765012911053, 30.642507391883388 ], [ -83.440036173687886, 30.64210400734763 ], [ -83.42967067711038, 30.641498930543992 ], [ -83.429397900884652, 30.641498930543992 ], [ -83.390118124380422, 30.639280315597325 ], [ -83.379479851577173, 30.638675238793688 ], [ -83.357657753519277, 30.637263392918534 ], [ -83.341018403750098, 30.636254931579138 ], [ -83.340745627524385, 30.636254931579138 ], [ -83.311558571371933, 30.634641393436109 ], [ -83.309376361566137, 30.63443970116823 ], [ -83.309376361566137, 30.63443970116823 ], [ -83.309376361566137, 30.63443970116823 ], [ -83.25618499754998, 30.631212624882167 ], [ -83.187445388667541, 30.627178779524588 ], [ -83.174352129832798, 30.626372010453071 ], [ -83.163441080803835, 30.625968625917313 ], [ -83.156076122709294, 30.625565241381555 ], [ -83.136709010682893, 30.624355087774283 ], [ -82.878662701148073, 30.609026475415483 ], [ -82.877298820019448, 30.609026475415483 ], [ -82.698903168396015, 30.598336785217896 ], [ -82.698630392170287, 30.598135092950017 ], [ -82.689628776721406, 30.597731708414258 ], [ -82.689356000495678, 30.597731708414258 ], [ -82.584064377366246, 30.59188263264577 ], [ -82.569334461177149, 30.590874171306375 ], [ -82.565515594017015, 30.590672479038496 ], [ -82.553240663859441, 30.589865709966979 ], [ -82.545057377087716, 30.589260633163342 ], [ -82.536328537864563, 30.588857248627583 ], [ -82.524871936384159, 30.588252171823946 ], [ -82.459678418436141, 30.58421832646637 ], [ -82.459678418436141, 30.58421832646637 ], [ -82.419034760803271, 30.581798019251821 ], [ -82.374845012235994, 30.578974327501516 ], [ -82.287283843778624, 30.573528636268783 ], [ -82.258096787626158, 30.571511713589992 ], [ -82.249913500854447, 30.570906636786358 ], [ -82.214725367736065, 30.567074483696658 ], [ -82.214452591510337, 30.566872791428779 ], [ -82.212270381704542, 30.499507573957203 ], [ -82.205996528512884, 30.455538659559593 ], [ -82.210360948124475, 30.424679742574114 ], [ -82.204087094932817, 30.401283439500151 ], [ -82.189629954969462, 30.376273598283163 ], [ -82.171626724071672, 30.359936524584967 ], [ -82.165080094654314, 30.358121294174055 ], [ -82.124709213247172, 30.366592369424971 ], [ -82.049968527398818, 30.362356831799513 ], [ -82.049968527398818, 30.362558524067392 ], [ -82.016144275409047, 30.497288959010536 ], [ -82.016962604086217, 30.519273416209344 ], [ -82.005506002605813, 30.563444022874833 ], [ -82.01341651315181, 30.595714785735467 ], [ -82.03769359724123, 30.633229547560958 ], [ -82.049422974947362, 30.655214004759763 ], [ -82.050514079850259, 30.676190000619172 ], [ -82.023236457277875, 30.782078441255628 ], [ -81.999777701865611, 30.788330901559874 ], [ -81.905942680216583, 30.822215202563541 ], [ -81.868572337292406, 30.792768131453215 ], [ -81.840476386042837, 30.786313978881086 ], [ -81.827110350982366, 30.788935978363511 ], [ -81.806652134053081, 30.789742747435028 ], [ -81.759461847002854, 30.771388751058044 ], [ -81.741185839879336, 30.762715983539248 ], [ -81.732729776881897, 30.750009370662873 ], [ -81.719909294272867, 30.744563679430144 ], [ -81.637258097878529, 30.733873989232556 ], [ -81.624164839043772, 30.736294296447106 ], [ -81.60616160814601, 30.718141992337998 ], [ -81.544514181132399, 30.712696301105268 ], [ -81.444132530065986, 30.709670917087081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "25", "geo_id": "0400000US16", "fips_state": "16", "name": "Idaho", "iso_3166_2": "ID", "census": 1567582, "pop_estimataes_base": 1567652, "pop_2010": 1570639, "pop_2011": 1583780, "pop_2012": 1595590, "pop_2013": 1612843, "pop_2014": 1634464 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.049081860334041, 44.474159738486719 ], [ -111.049081860334041, 44.438056822536382 ], [ -111.049081860334041, 44.435838207589711 ], [ -111.048536307882586, 44.06290920428151 ], [ -111.048809084108314, 44.060892281602726 ], [ -111.048809084108314, 44.060488897066968 ], [ -111.047990755431144, 43.983039066201442 ], [ -111.046626874302518, 43.815836176129793 ], [ -111.046354098076804, 43.726889885995163 ], [ -111.046354098076804, 43.726486501459405 ], [ -111.046354098076804, 43.722049271566078 ], [ -111.046081321851076, 43.687761586026653 ], [ -111.046081321851076, 43.685744663347862 ], [ -111.046081321851076, 43.684937894276345 ], [ -111.045808545625349, 43.681105741186641 ], [ -111.045808545625349, 43.659121283987837 ], [ -111.045262993173907, 43.501196238238613 ], [ -111.044717440722451, 43.315639351789969 ], [ -111.044171888271009, 43.195632452401988 ], [ -111.044171888271009, 43.189178299829862 ], [ -111.044171888271009, 43.184539377668642 ], [ -111.044171888271009, 43.177278456025 ], [ -111.044171888271009, 43.177076763757121 ], [ -111.044171888271009, 43.07239847672794 ], [ -111.044171888271009, 43.068162939102486 ], [ -111.044171888271009, 43.066146016423694 ], [ -111.044171888271009, 43.060296940655206 ], [ -111.044171888271009, 43.05485124942247 ], [ -111.044171888271009, 43.04638017417156 ], [ -111.044171888271009, 43.044564943760648 ], [ -111.043899112045281, 43.041337867474581 ], [ -111.044171888271009, 43.029236331401847 ], [ -111.043899112045281, 43.026412639651539 ], [ -111.043899112045281, 43.024799101508506 ], [ -111.043899112045281, 43.024597409240627 ], [ -111.044171888271009, 43.022580486561836 ], [ -111.044171888271009, 43.019958487079414 ], [ -111.044171888271009, 43.018748333472139 ], [ -111.043899112045281, 42.974981111342402 ], [ -111.043899112045281, 42.969535420109672 ], [ -111.043899112045281, 42.964493113412701 ], [ -111.046354098076804, 42.513105817899586 ], [ -111.047172426753974, 42.349331696381867 ], [ -111.047172426753974, 42.280756325303024 ], [ -111.047172426753974, 42.194835419186589 ], [ -111.047172426753974, 42.182733883113848 ], [ -111.047172426753974, 42.149051274378067 ], [ -111.047172426753974, 42.142597121805935 ], [ -111.046626874302518, 42.001614226558544 ], [ -111.415965883932699, 42.000807457487028 ], [ -111.420875855995732, 42.000807457487028 ], [ -111.425513051833036, 42.000807457487028 ], [ -111.507345919550218, 41.999597303879753 ], [ -111.876412152954671, 41.998588842540357 ], [ -111.915691929458916, 41.998588842540357 ], [ -111.915964705684644, 41.998588842540357 ], [ -112.109635825948629, 41.997176996665203 ], [ -112.163918294867685, 41.996773612129445 ], [ -112.239204533167481, 42.001210842022786 ], [ -112.26484549838554, 42.001009149754907 ], [ -112.38623091883268, 42.001210842022786 ], [ -112.450606108103514, 42.001009149754907 ], [ -112.450878884329242, 42.001009149754907 ], [ -112.648096095527634, 42.00040407295127 ], [ -112.709470746315517, 42.00040407295127 ], [ -112.788575851775448, 41.999597303879753 ], [ -112.833038376568453, 41.999395611611874 ], [ -112.833038376568453, 41.999395611611874 ], [ -112.880501439844409, 41.998992227076116 ], [ -112.882410873424476, 41.998992227076116 ], [ -112.909688495996875, 41.998790534808236 ], [ -112.979246433556469, 41.998185458004599 ], [ -113.000795755388651, 41.998185458004599 ], [ -113.000795755388651, 41.998185458004599 ], [ -113.396594058914062, 41.994151612647023 ], [ -113.402322359654264, 41.994151612647023 ], [ -113.431509415806715, 41.993748228111265 ], [ -113.764569187415617, 41.98951269048581 ], [ -113.796211229599592, 41.989109305950052 ], [ -113.893319565957313, 41.988100844610656 ], [ -114.041709832751124, 41.993748228111265 ], [ -114.048256462168496, 41.993748228111265 ], [ -114.048256462168496, 41.993748228111265 ], [ -114.061895273454695, 41.993748228111265 ], [ -114.061895273454695, 41.993949920379144 ], [ -114.107176126924855, 41.993748228111265 ], [ -114.107448903150583, 41.993949920379144 ], [ -114.281752911388168, 41.994353304914895 ], [ -114.498337234612961, 41.994554997182775 ], [ -114.498337234612961, 41.994554997182775 ], [ -114.598173333227905, 41.994554997182775 ], [ -114.763748502242322, 42.000000688415511 ], [ -114.914320978841928, 42.000000688415511 ], [ -115.031887532128934, 41.995966843057928 ], [ -115.038161385320592, 41.995966843057928 ], [ -115.986877098388362, 41.998588842540357 ], [ -116.012245287380694, 41.99798376573672 ], [ -116.012245287380694, 41.99798376573672 ], [ -116.019064693023793, 41.997782073468841 ], [ -116.019064693023793, 41.997782073468841 ], [ -116.030794070729911, 41.997378688933082 ], [ -116.030794070729911, 41.997378688933082 ], [ -116.038704581275908, 41.997378688933082 ], [ -116.038704581275908, 41.997378688933082 ], [ -116.160908330400218, 41.997580381200962 ], [ -116.163908868883183, 41.997580381200962 ], [ -116.463417164728043, 41.996571919861566 ], [ -116.483057052980172, 41.996975304397324 ], [ -116.485784815237409, 41.996773612129445 ], [ -116.510334675552556, 41.997176996665203 ], [ -116.586984794980978, 41.997378688933082 ], [ -116.626810123936679, 41.997782073468841 ], [ -117.018244007850484, 41.999395611611874 ], [ -117.026154518396481, 42.00020238068339 ], [ -117.026427294622209, 42.806971452199235 ], [ -117.026427294622209, 42.807173144467114 ], [ -117.026154518396481, 42.807374836734994 ], [ -117.026700070847937, 43.024799101508506 ], [ -117.026700070847937, 43.025202486044265 ], [ -117.026700070847937, 43.577435915496864 ], [ -117.026700070847937, 43.578646069104131 ], [ -117.026972847073651, 43.59357129692718 ], [ -117.026972847073651, 43.595991604141723 ], [ -117.026700070847937, 43.600428834035057 ], [ -117.026700070847937, 43.601840679910211 ], [ -117.026700070847937, 43.610715139696886 ], [ -117.026972847073651, 43.61757267680477 ], [ -117.026972847073651, 43.621001445358715 ], [ -117.026972847073651, 43.624833598448419 ], [ -117.026700070847937, 43.631691135556295 ], [ -117.026700070847937, 43.664365282952687 ], [ -117.026700070847937, 43.675458357686033 ], [ -117.026700070847937, 43.680904048918762 ], [ -117.026700070847937, 43.682920971597554 ], [ -117.026700070847937, 43.706115582403633 ], [ -117.026700070847937, 43.714788349922429 ], [ -117.026972847073651, 43.732940654031538 ], [ -117.026700070847937, 43.733949115370933 ], [ -117.026700070847937, 43.808171869950385 ], [ -116.996421909792574, 43.864645704956502 ], [ -116.98251032228066, 43.872713395671653 ], [ -116.979237007571967, 43.879974317315302 ], [ -116.96150655289992, 43.918295848212303 ], [ -116.935320035230419, 43.988686449702058 ], [ -116.931773944296012, 44.102440888785793 ], [ -116.897131363629072, 44.152460571219777 ], [ -116.896040258726174, 44.154275801630689 ], [ -116.894130825146107, 44.16012487739917 ], [ -116.895767482500446, 44.171217952132515 ], [ -116.902859664369274, 44.179487335115553 ], [ -116.975963692863289, 44.242818707229546 ], [ -116.986874741892237, 44.245440706711975 ], [ -117.027518399525107, 44.24886947526592 ], [ -117.033246700265309, 44.248264398462283 ], [ -117.041157210811306, 44.243625476301062 ], [ -117.17045314180443, 44.258954088659863 ], [ -117.190093030056559, 44.273879316482905 ], [ -117.196639659473931, 44.287594390698672 ], [ -117.197730764376828, 44.295863773681717 ], [ -117.1974579881511, 44.297275619556871 ], [ -117.196639659473931, 44.302317926253842 ], [ -117.194730225893863, 44.31058730923688 ], [ -117.191456911185185, 44.329546382417504 ], [ -117.189820253830831, 44.33660561179326 ], [ -117.214915666597435, 44.46689881684307 ], [ -117.208369037180063, 44.485857890023695 ], [ -117.156541554292517, 44.528213266278271 ], [ -117.149176596197975, 44.536079264725558 ], [ -117.144266624134943, 44.545558801315863 ], [ -117.115897896659646, 44.623412016717147 ], [ -117.095985232181803, 44.664758931632335 ], [ -117.062160980192047, 44.727081842406932 ], [ -117.044157749294257, 44.74523414651604 ], [ -117.038156672328341, 44.748259530534227 ], [ -117.016334574270417, 44.755520452177862 ], [ -116.931501168070284, 44.792228444931837 ], [ -116.89140306288887, 44.840432896954908 ], [ -116.852396062610353, 44.887628887638584 ], [ -116.831937845681054, 44.933009647911348 ], [ -116.835756712841189, 44.940673954090755 ], [ -116.844758328290084, 44.949346721609544 ], [ -116.850759405256014, 44.95801948912834 ], [ -116.858397139576283, 44.977987023648353 ], [ -116.845303880741525, 45.017115323616878 ], [ -116.783929229953642, 45.079034849855717 ], [ -116.729646761034587, 45.14216452970183 ], [ -116.709461320331016, 45.203075594601273 ], [ -116.696095285270545, 45.25470881517829 ], [ -116.691185313207512, 45.269230658465574 ], [ -116.673727634761178, 45.321468955846228 ], [ -116.553433319216936, 45.499159843847593 ], [ -116.481147619400105, 45.580643520070694 ], [ -116.46368994095377, 45.602829669537371 ], [ -116.463417164728043, 45.615737974681629 ], [ -116.471600451499768, 45.628444587558008 ], [ -116.489058129946102, 45.651235813828322 ], [ -116.510880228004012, 45.668177964330155 ], [ -116.528337906450332, 45.681489654010171 ], [ -116.53543008831916, 45.691775959672 ], [ -116.537885074350669, 45.714970570478073 ], [ -116.535702864544888, 45.734131335926577 ], [ -116.547977794702462, 45.752283640035685 ], [ -116.594076976849806, 45.779108711663582 ], [ -116.63335675335405, 45.784756095164198 ], [ -116.789111978242403, 45.847684082742433 ], [ -116.796476936336944, 45.853734850778807 ], [ -116.857306034673385, 45.904157917748542 ], [ -116.866580426347994, 45.91686453062492 ], [ -116.875036489345433, 45.942277756377663 ], [ -116.915952923204017, 45.995322822829834 ], [ -116.943503322002144, 46.062082963497772 ], [ -116.925500091104354, 46.158895252079674 ], [ -116.958778790642683, 46.242395850981559 ], [ -116.985238084537897, 46.294634148362206 ], [ -116.987965846795134, 46.298062916916152 ], [ -117.04743106400295, 46.342838600385278 ], [ -117.061069875289149, 46.367646749334398 ], [ -117.046885511551508, 46.379546593139253 ], [ -117.039793329682681, 46.425330737947775 ], [ -117.039793329682681, 46.462643807505387 ], [ -117.039793329682681, 46.469501344613263 ], [ -117.039793329682681, 46.471719959559934 ], [ -117.039793329682681, 46.541707176513938 ], [ -117.039793329682681, 46.815403584025688 ], [ -117.039793329682681, 46.825891581955389 ], [ -117.039793329682681, 47.127219830166553 ], [ -117.039793329682681, 47.154649978598094 ], [ -117.039793329682681, 47.181878434761757 ], [ -117.039793329682681, 47.203257815156924 ], [ -117.039793329682681, 47.225443964623608 ], [ -117.040066105908409, 47.259328265627275 ], [ -117.039793329682681, 47.347266094422501 ], [ -117.039793329682681, 47.366023475335247 ], [ -117.039793329682681, 47.39910100726739 ], [ -117.040066105908409, 47.412412696947406 ], [ -117.040066105908409, 47.434800538681969 ], [ -117.040066105908409, 47.463239148452899 ], [ -117.040066105908409, 47.47776099174019 ], [ -117.04061165835985, 47.522334982941445 ], [ -117.04061165835985, 47.527578981906288 ], [ -117.04061165835985, 47.532822980871146 ], [ -117.041157210811306, 47.558236206623896 ], [ -117.041157210811306, 47.558437898891775 ], [ -117.04142998703702, 47.678041413743998 ], [ -117.04142998703702, 47.678243106011877 ], [ -117.04142998703702, 47.680058336422789 ], [ -117.04142998703702, 47.683285412708848 ], [ -117.041702763262748, 47.706480023514928 ], [ -117.041702763262748, 47.722615404945245 ], [ -117.04224831571419, 47.744196477608298 ], [ -117.041975539488476, 47.745003246679815 ], [ -117.042521091939918, 47.760936935842253 ], [ -117.042521091939918, 47.761138628110132 ], [ -117.042521091939918, 47.764970781199828 ], [ -117.042521091939918, 47.766584319342861 ], [ -117.041975539488476, 47.97735273927637 ], [ -117.041702763262748, 48.045524725819462 ], [ -117.04142998703702, 48.085459794859496 ], [ -117.039520553456953, 48.17400270045836 ], [ -117.039520553456953, 48.177229776744426 ], [ -117.039520553456953, 48.178238238083821 ], [ -117.039520553456953, 48.180255160762606 ], [ -117.039520553456953, 48.180860237566243 ], [ -117.039520553456953, 48.181061929834122 ], [ -117.039520553456953, 48.184087313852309 ], [ -117.039520553456953, 48.184289006120181 ], [ -117.035156133845376, 48.370854353908229 ], [ -117.035156133845376, 48.371257738443987 ], [ -117.035156133845376, 48.422689266753117 ], [ -117.035156133845376, 48.423092651288876 ], [ -117.035156133845376, 48.42974849612888 ], [ -117.035156133845376, 48.430151880664638 ], [ -117.03461058139392, 48.620751073810254 ], [ -117.034337805168207, 48.628617072257541 ], [ -117.033246700265309, 48.846646413834691 ], [ -117.032428371588139, 48.999125768351185 ], [ -116.7571971598327, 48.999730845154822 ], [ -116.7571971598327, 48.999932537422701 ], [ -116.049070077853415, 49.000940998762097 ], [ -116.049070077853415, 48.958383930239634 ], [ -116.049070077853415, 48.957980545703876 ], [ -116.049342854079143, 48.502156020297427 ], [ -116.049342854079143, 48.215551307641427 ], [ -116.049342854079143, 48.077190411876458 ], [ -116.049342854079143, 48.075375181465546 ], [ -116.049342854079143, 48.07214810517948 ], [ -116.049342854079143, 48.066702413946757 ], [ -116.048524525401973, 47.977151047008491 ], [ -116.048524525401973, 47.976747662472732 ], [ -116.007335315317661, 47.944880284147857 ], [ -115.919228594408835, 47.857345839888396 ], [ -115.729103565079271, 47.70305125496099 ], [ -115.723648040564782, 47.696597102388864 ], [ -115.706190362118463, 47.637904652436085 ], [ -115.718192516050308, 47.592725584431193 ], [ -115.721193054533273, 47.576388510732997 ], [ -115.735650194496642, 47.555412514873588 ], [ -115.739741837882491, 47.537663595300245 ], [ -115.72992189375644, 47.518099445315983 ], [ -115.712191439084378, 47.488450681937778 ], [ -115.725830250370578, 47.466869609274724 ], [ -115.72992189375644, 47.447305459290462 ], [ -115.721193054533273, 47.422295618073477 ], [ -115.690642117252196, 47.415034696429828 ], [ -115.66145506109973, 47.402731468089215 ], [ -115.576894431125325, 47.366830244406756 ], [ -115.561346186259058, 47.351905016583714 ], [ -115.551253465907266, 47.333954404742492 ], [ -115.523703067109153, 47.298859950131551 ], [ -115.479240542316163, 47.282119491897603 ], [ -115.421684758688414, 47.271833186235767 ], [ -115.339306338519791, 47.261546880573945 ], [ -115.320212002719117, 47.25569780480545 ], [ -115.294843813726786, 47.221006734730274 ], [ -115.292116051469549, 47.209913659996928 ], [ -115.266747862477231, 47.18107166569024 ], [ -115.200463239626316, 47.139119673971415 ], [ -115.193098281531775, 47.133068905935048 ], [ -115.099263259882747, 47.048156461158001 ], [ -115.073076742213246, 47.013667083350697 ], [ -114.975695629629811, 46.93278848393124 ], [ -114.936143076899839, 46.89971095199909 ], [ -114.938598062931362, 46.869053727281489 ], [ -114.927959790128128, 46.835976195349339 ], [ -114.920594832033572, 46.827706812366301 ], [ -114.888134461172427, 46.808546046917797 ], [ -114.853219104279773, 46.799873279399009 ], [ -114.825941481707375, 46.78192266755778 ], [ -114.767294593176743, 46.738760522231679 ], [ -114.739198641927175, 46.715162526889841 ], [ -114.717649320094978, 46.713952373282567 ], [ -114.690644473748321, 46.720003141318941 ], [ -114.675369005107783, 46.719599756783182 ], [ -114.667458494561785, 46.719196372247424 ], [ -114.655729116855653, 46.711733758335896 ], [ -114.644818067826705, 46.702254221745591 ], [ -114.64263585802091, 46.694589915566183 ], [ -114.641271976892284, 46.686320532583153 ], [ -114.64181752934374, 46.679261303207383 ], [ -114.64263585802091, 46.673210535171016 ], [ -114.63581645237781, 46.659495460955249 ], [ -114.614539906771341, 46.639124541899477 ], [ -114.594627242293498, 46.633477158398861 ], [ -114.592172256261989, 46.632872081595224 ], [ -114.481970661069525, 46.632065312523707 ], [ -114.461239667914498, 46.639124541899477 ], [ -114.446782527951143, 46.645377002203716 ], [ -114.422232667635981, 46.652234539311607 ], [ -114.370132408522721, 46.654251461990398 ], [ -114.349674191593422, 46.646587155810991 ], [ -114.341218128595983, 46.642755002721294 ], [ -114.33794481388729, 46.641141464578261 ], [ -114.331125408244191, 46.630250082112795 ], [ -114.331125408244191, 46.60766054811036 ], [ -114.346400876884729, 46.535858100745443 ], [ -114.38540787716326, 46.467081037398721 ], [ -114.378042919068704, 46.435415351341724 ], [ -114.426869863473286, 46.289591841665235 ], [ -114.472696269394902, 46.162122328365733 ], [ -114.483061765972423, 46.129246488701462 ], [ -114.476242360329323, 46.112909415003266 ], [ -114.468331849783326, 46.100001109859008 ], [ -114.467513521106156, 46.081848805749907 ], [ -114.476242360329323, 46.062082963497772 ], [ -114.491245052744134, 46.043930659388664 ], [ -114.491245052744134, 46.034047738262593 ], [ -114.490699500292692, 46.022954663529248 ], [ -114.483334542198136, 46.008029435706206 ], [ -114.465331311300361, 45.996129591901351 ], [ -114.429597625730537, 45.986650055311038 ], [ -114.412139947284203, 45.977977287792243 ], [ -114.401501674480969, 45.96325375223708 ], [ -114.393863940160699, 45.894073304354592 ], [ -114.44869196153121, 45.85897884974365 ], [ -114.498882787064403, 45.85070946676062 ], [ -114.509248283641909, 45.845465467795762 ], [ -114.514703808156384, 45.840826545634549 ], [ -114.566258514818216, 45.773864712698739 ], [ -114.547709731468984, 45.74340918024901 ], [ -114.528615395668311, 45.731711028712027 ], [ -114.504883864030333, 45.722231492121722 ], [ -114.497518905935777, 45.710735032852618 ], [ -114.495336696129996, 45.703272418941097 ], [ -114.50079222064447, 45.666766118455001 ], [ -114.515522136833567, 45.652849351971355 ], [ -114.541708654503054, 45.641352892702258 ], [ -114.545527521663189, 45.642966430845291 ], [ -114.550710269951949, 45.642563046309533 ], [ -114.561075766529456, 45.639941046827104 ], [ -114.563530752560979, 45.637319047344675 ], [ -114.561894095206625, 45.565113215444015 ], [ -114.560802990303728, 45.564508138640377 ], [ -114.551255822403391, 45.559062447407641 ], [ -114.514158255704942, 45.564709830908257 ], [ -114.4737873742978, 45.563297985033103 ], [ -114.460421339237328, 45.561281062354311 ], [ -114.3665863175883, 45.491697229936065 ], [ -114.35076529649632, 45.468502619129993 ], [ -114.309576086412008, 45.469511080469388 ], [ -114.247928659398397, 45.545549065459753 ], [ -114.18791788973914, 45.542120296905807 ], [ -114.135272078174424, 45.557448909264608 ], [ -114.034890427108024, 45.648008737542263 ], [ -114.022615496950451, 45.679674423599259 ], [ -114.019342182241758, 45.692986113279275 ], [ -114.015523315081623, 45.696213189565334 ], [ -113.987700140057783, 45.705289341619888 ], [ -113.971606342740074, 45.700650419458668 ], [ -113.942692062813336, 45.686330268439264 ], [ -113.934235999815897, 45.682296423081688 ], [ -113.896592880665992, 45.641352892702258 ], [ -113.835491006103837, 45.612914282931328 ], [ -113.813941684271654, 45.600611054590708 ], [ -113.804940068822759, 45.589114595321604 ], [ -113.801939530339794, 45.579029981927661 ], [ -113.813396131820198, 45.549986295353094 ], [ -113.81012281711152, 45.53082552990459 ], [ -113.786391285473542, 45.521345993314277 ], [ -113.77302525041307, 45.512269841259723 ], [ -113.765660292318515, 45.483226154685156 ], [ -113.774116355315954, 45.465275542843926 ], [ -113.76102309648121, 45.406583092891147 ], [ -113.738655445971844, 45.329738338829266 ], [ -113.67428025670101, 45.24946481621344 ], [ -113.650003172611576, 45.23474128065827 ], [ -113.599539570852656, 45.191175750796418 ], [ -113.565988095088613, 45.149425451345472 ], [ -113.566260871314341, 45.143172991041226 ], [ -113.57635359166612, 45.133693454450913 ], [ -113.57635359166612, 45.130264685896975 ], [ -113.485246332274329, 45.063504545229037 ], [ -113.473789730793925, 45.061689314818125 ], [ -113.46396978666786, 45.063101160693279 ], [ -113.449239870478777, 45.045755625655687 ], [ -113.445693779544371, 45.018325477224153 ], [ -113.445966555770084, 44.980003946327145 ], [ -113.44733043689871, 44.971936255611993 ], [ -113.472698625891027, 44.948136568002269 ], [ -113.480881912662753, 44.95035518294894 ], [ -113.494520723948938, 44.948539952538027 ], [ -113.4986123673348, 44.942287492233781 ], [ -113.47597194059972, 44.894688117014347 ], [ -113.454968171218979, 44.865442738171893 ], [ -113.353495415249682, 44.79142167586032 ], [ -113.34176603754355, 44.784765831020309 ], [ -113.329491107385977, 44.788597984110012 ], [ -113.2784819531756, 44.812801056255488 ], [ -113.247112687217353, 44.822885669649438 ], [ -113.207832910713108, 44.807960441826395 ], [ -113.158187637631357, 44.780933677930612 ], [ -113.134728882219093, 44.763184758357269 ], [ -113.101177406455065, 44.718812459423894 ], [ -113.0515321333733, 44.636925398665035 ], [ -113.049349923567519, 44.629462784753514 ], [ -113.053441566953367, 44.621193401770476 ], [ -113.05671488166206, 44.618571402288055 ], [ -113.02725504928388, 44.495942503417638 ], [ -113.003523517645903, 44.450763435412753 ], [ -112.970244818107574, 44.426963747803043 ], [ -112.875864244007104, 44.374322065886631 ], [ -112.849132173886161, 44.371094989600564 ], [ -112.831401719214114, 44.381582987530273 ], [ -112.829219509408318, 44.385415140619969 ], [ -112.824582313571014, 44.393684523603014 ], [ -112.823491208668116, 44.406189444211506 ], [ -112.822127327539491, 44.420912979766669 ], [ -112.822127327539491, 44.434022977178799 ], [ -112.812034607187712, 44.451368512216391 ], [ -112.781210893680907, 44.484849428684299 ], [ -112.719017914215854, 44.504413578668562 ], [ -112.688194200709049, 44.498766195167946 ], [ -112.544168353526828, 44.483840967344904 ], [ -112.473246534838609, 44.4800088142552 ], [ -112.410235226696386, 44.463066663753374 ], [ -112.38704924750985, 44.460444664270945 ], [ -112.371228226417855, 44.472142815807928 ], [ -112.358953296260282, 44.486261274559453 ], [ -112.356498310228773, 44.493118811667337 ], [ -112.34722391855415, 44.520347267830999 ], [ -112.33958618423388, 44.538499571940108 ], [ -112.298942526601024, 44.559273875531638 ], [ -112.274119890060149, 44.564316182228609 ], [ -112.258298868968154, 44.564316182228609 ], [ -112.246569491262022, 44.561089105942543 ], [ -112.235931218458802, 44.555240030174062 ], [ -112.229384589041416, 44.549592646673446 ], [ -112.221746854721147, 44.543541878637079 ], [ -112.187104274054221, 44.534465726582525 ], [ -112.078539336216096, 44.533457265243129 ], [ -111.947879524094347, 44.556853568317088 ], [ -111.870411075988756, 44.56411448996073 ], [ -111.849407306608015, 44.539911417815262 ], [ -111.843406229642085, 44.528213266278271 ], [ -111.806581439169349, 44.5155066534019 ], [ -111.737296277835483, 44.543138494101321 ], [ -111.704290354522882, 44.560282336871026 ], [ -111.631459102254595, 44.552012953887996 ], [ -111.617547514742682, 44.553021415227391 ], [ -111.601180941199246, 44.554231568834666 ], [ -111.52589470289945, 44.60485632807228 ], [ -111.516620311224827, 44.643782935772919 ], [ -111.489069912426714, 44.705500769743878 ], [ -111.481432178106445, 44.709131230565703 ], [ -111.394689338326245, 44.751284914552407 ], [ -111.377777212331353, 44.751688299088165 ], [ -111.323767519638025, 44.724459842924503 ], [ -111.219294225185763, 44.62260524764563 ], [ -111.139370791048663, 44.517120191544933 ], [ -111.131460280502665, 44.49997634877522 ], [ -111.122731441279498, 44.493723888470974 ], [ -111.10663764396179, 44.486261274559453 ], [ -111.049081860334041, 44.474159738486719 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "26", "geo_id": "0400000US20", "fips_state": "20", "name": "Kansas", "iso_3166_2": "KS", "census": 2853118, "pop_estimataes_base": 2853132, "pop_2010": 2858949, "pop_2011": 2869965, "pop_2012": 2885966, "pop_2013": 2895801, "pop_2014": 2904021 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.042283663156056, 36.992990138320323 ], [ -102.042010886930342, 37.024655824377319 ], [ -102.042010886930342, 37.030706592413694 ], [ -102.042010886930342, 37.032118438288848 ], [ -102.041738110704614, 37.034337053235518 ], [ -102.042010886930342, 37.035143822307028 ], [ -102.042010886930342, 37.106542885136179 ], [ -102.041738110704614, 37.111988576368915 ], [ -102.042010886930342, 37.125098573781045 ], [ -102.042010886930342, 37.125098573781045 ], [ -102.042010886930342, 37.141839032015 ], [ -102.042010886930342, 37.258215470581163 ], [ -102.041738110704614, 37.297747155085432 ], [ -102.041738110704614, 37.309445306622415 ], [ -102.042010886930342, 37.352607451948515 ], [ -102.042010886930342, 37.352809144216394 ], [ -102.041738110704614, 37.389113752434604 ], [ -102.041738110704614, 37.409888056026134 ], [ -102.041738110704614, 37.434696204975253 ], [ -102.041738110704614, 37.434897897243133 ], [ -102.041738110704614, 37.46938727505043 ], [ -102.041738110704614, 37.506095267804398 ], [ -102.042010886930342, 37.535340646646851 ], [ -102.042010886930342, 37.541189722415339 ], [ -102.042010886930342, 37.557930180649294 ], [ -102.041738110704614, 37.607949863083277 ], [ -102.041465334478886, 37.644254471301494 ], [ -102.041465334478886, 37.654540776963316 ], [ -102.041738110704614, 37.665633851696654 ], [ -102.041465334478886, 37.680357387251817 ], [ -102.042010886930342, 37.723922917113683 ], [ -102.042010886930342, 37.738444760400967 ], [ -102.042283663156056, 37.760227525331892 ], [ -102.042556439381784, 37.788666135102822 ], [ -102.042829215607512, 37.803591362925872 ], [ -102.043101991833225, 37.824163974249522 ], [ -102.043101991833225, 37.86793119637926 ], [ -102.043920320510409, 37.926220261796274 ], [ -102.043920320510409, 37.928035492207187 ], [ -102.044465872961851, 38.249936351742008 ], [ -102.044465872961851, 38.2624412723505 ], [ -102.044465872961851, 38.268693732654754 ], [ -102.044465872961851, 38.268895424922633 ], [ -102.044738649187579, 38.312259262516605 ], [ -102.045011425413293, 38.384465094417273 ], [ -102.045284201639021, 38.505480455144649 ], [ -102.045284201639021, 38.505480455144649 ], [ -102.045011425413293, 38.523834451521637 ], [ -102.045284201639021, 38.54380198604165 ], [ -102.045284201639021, 38.558727213864692 ], [ -102.045284201639021, 38.581518440135014 ], [ -102.045284201639021, 38.615201048870802 ], [ -102.045284201639021, 38.615201048870802 ], [ -102.045011425413293, 38.669657961198126 ], [ -102.045011425413293, 38.67490196016297 ], [ -102.045284201639021, 38.675305344698728 ], [ -102.045011425413293, 38.686801803967832 ], [ -102.045284201639021, 38.688617034378744 ], [ -102.045284201639021, 38.697491494165419 ], [ -102.045284201639021, 38.754368713707287 ], [ -102.045284201639021, 38.755578867314554 ], [ -102.045284201639021, 38.770100710601845 ], [ -102.045556977864749, 38.783412400281854 ], [ -102.045284201639021, 38.799547781712171 ], [ -102.045284201639021, 38.813464548195824 ], [ -102.046648082767646, 39.047024194399654 ], [ -102.047193635219088, 39.12971802423003 ], [ -102.047193635219088, 39.133146792783975 ], [ -102.047193635219088, 39.136978945873672 ], [ -102.048557516347714, 39.303173374605933 ], [ -102.048830292573427, 39.373765668363575 ], [ -102.049103068799155, 39.403616124009659 ], [ -102.049375845024883, 39.418137967296943 ], [ -102.049375845024883, 39.4233819662618 ], [ -102.049648621250611, 39.506277488360048 ], [ -102.049648621250611, 39.53673302080977 ], [ -102.049648621250611, 39.53895163575644 ], [ -102.049648621250611, 39.568197014598894 ], [ -102.049921397476325, 39.574046090367375 ], [ -102.049921397476325, 39.592400086744362 ], [ -102.050466949927781, 39.675497301110497 ], [ -102.051285278604951, 39.818900503572436 ], [ -102.051285278604951, 39.833220654591841 ], [ -102.051285278604951, 39.84350696025367 ], [ -102.051558054830679, 39.849759420557916 ], [ -102.051830831056392, 40.003045544145927 ], [ -101.916806599323053, 40.003045544145927 ], [ -101.904258892939765, 40.003247236413806 ], [ -101.840974808571815, 40.002843851878048 ], [ -101.832245969348648, 40.002843851878048 ], [ -101.807696109033486, 40.002843851878048 ], [ -101.804968346776249, 40.002843851878048 ], [ -101.627118247604258, 40.002642159610168 ], [ -101.625754366475633, 40.002642159610168 ], [ -101.542284841404125, 40.002642159610168 ], [ -101.417080553796836, 40.002440467342289 ], [ -101.41107947683092, 40.002440467342289 ], [ -101.409988371928023, 40.002440467342289 ], [ -101.374254686358185, 40.002440467342289 ], [ -101.342885420399938, 40.002642159610168 ], [ -101.325427741953604, 40.002642159610168 ], [ -101.324063860824992, 40.002642159610168 ], [ -101.294058475995357, 40.002642159610168 ], [ -101.286420741675087, 40.002642159610168 ], [ -101.248777622525182, 40.002642159610168 ], [ -101.214953370535426, 40.002642159610168 ], [ -101.192312943800346, 40.002440467342289 ], [ -101.178674132514146, 40.002440467342289 ], [ -101.168581412162354, 40.002642159610168 ], [ -101.130938293012463, 40.002440467342289 ], [ -101.060289250549957, 40.00223877507441 ], [ -101.027556103463098, 40.00223877507441 ], [ -100.937539948974205, 40.00223877507441 ], [ -100.75887152112503, 40.00223877507441 ], [ -100.752052115481945, 40.002037082806531 ], [ -100.738958856647187, 40.00223877507441 ], [ -100.733230555906985, 40.00223877507441 ], [ -100.729957241198292, 40.002037082806531 ], [ -100.721228401975139, 40.002037082806531 ], [ -100.683312506599506, 40.00223877507441 ], [ -100.660126527412984, 40.00223877507441 ], [ -100.645396611223887, 40.001835390538652 ], [ -100.600934086430883, 40.001835390538652 ], [ -100.594660233239239, 40.002037082806531 ], [ -100.567109834441126, 40.001835390538652 ], [ -100.551834365800588, 40.001835390538652 ], [ -100.511190708167717, 40.001835390538652 ], [ -100.487186400304012, 40.001835390538652 ], [ -100.477093679952233, 40.001835390538652 ], [ -100.475729798823608, 40.001835390538652 ], [ -100.468637616954794, 40.001633698270773 ], [ -100.447088295122597, 40.001835390538652 ], [ -100.4391777845766, 40.001835390538652 ], [ -100.390078063946305, 40.001835390538652 ], [ -100.231595076800701, 40.001633698270773 ], [ -100.22941286699492, 40.001633698270773 ], [ -100.215501279482993, 40.001633698270773 ], [ -100.196952496133775, 40.001432006002901 ], [ -100.193679181425082, 40.001633698270773 ], [ -100.193679181425082, 40.001633698270773 ], [ -100.190405866716389, 40.001633698270773 ], [ -100.188223656910594, 40.001633698270773 ], [ -100.177858160333102, 40.001633698270773 ], [ -100.177858160333102, 40.001633698270773 ], [ -99.991006445712216, 40.001432006002901 ], [ -99.986642026100625, 40.001633698270773 ], [ -99.948180578273565, 40.001835390538652 ], [ -99.94436171111343, 40.001633698270773 ], [ -99.930450123601503, 40.001432006002901 ], [ -99.906718591963525, 40.001432006002901 ], [ -99.813429122765939, 40.001432006002901 ], [ -99.77551322739032, 40.001633698270773 ], [ -99.772239912681627, 40.001835390538652 ], [ -99.764329402135644, 40.001633698270773 ], [ -99.756964444041088, 40.001432006002901 ], [ -99.746598947463582, 40.001835390538652 ], [ -99.731869031274499, 40.001835390538652 ], [ -99.719594101116911, 40.001835390538652 ], [ -99.628214065499407, 40.001835390538652 ], [ -99.628214065499407, 40.001835390538652 ], [ -99.626031855693611, 40.001835390538652 ], [ -99.625213527016442, 40.001835390538652 ], [ -99.501918672989234, 40.002037082806531 ], [ -99.498918134506269, 40.002037082806531 ], [ -99.497554253377643, 40.001835390538652 ], [ -99.493462609991781, 40.002037082806531 ], [ -99.480642127382765, 40.002037082806531 ], [ -99.412720847177511, 40.001835390538652 ], [ -99.403446455502902, 40.002037082806531 ], [ -99.290789874278914, 40.002037082806531 ], [ -99.286698230893066, 40.002037082806531 ], [ -99.282879363732917, 40.001835390538652 ], [ -99.253965083806193, 40.002037082806531 ], [ -99.250418992871772, 40.002037082806531 ], [ -99.216321964656288, 40.002037082806531 ], [ -99.197500405081342, 40.002037082806531 ], [ -99.188771565858175, 40.002037082806531 ], [ -99.186862132278108, 40.002037082806531 ], [ -99.179224397957839, 40.002037082806531 ], [ -99.178951621732111, 40.002037082806531 ], [ -99.169950006283216, 40.001835390538652 ], [ -99.123032495458716, 40.00223877507441 ], [ -99.113485327558379, 40.00223877507441 ], [ -99.085662152534539, 40.002037082806531 ], [ -99.067113369185307, 40.00223877507441 ], [ -99.020468634586521, 40.00223877507441 ], [ -99.018831977232168, 40.00223877507441 ], [ -98.992099907111225, 40.00223877507441 ], [ -98.972187242633382, 40.00223877507441 ], [ -98.97164169018194, 40.00223877507441 ], [ -98.961003417378706, 40.00223877507441 ], [ -98.961003417378706, 40.00223877507441 ], [ -98.934816899709205, 40.00223877507441 ], [ -98.834435248642805, 40.002440467342289 ], [ -98.820523661130892, 40.00223877507441 ], [ -98.777152241240785, 40.002440467342289 ], [ -98.774970031434989, 40.00223877507441 ], [ -98.726415863256136, 40.00223877507441 ], [ -98.726415863256136, 40.00223877507441 ], [ -98.710322065938428, 40.00223877507441 ], [ -98.693137163717822, 40.002440467342289 ], [ -98.691500506363468, 40.002440467342289 ], [ -98.690409401460585, 40.002642159610168 ], [ -98.672951723014251, 40.002440467342289 ], [ -98.669678408305558, 40.002440467342289 ], [ -98.653857387213577, 40.00223877507441 ], [ -98.652493506084951, 40.00223877507441 ], [ -98.640764128378834, 40.002440467342289 ], [ -98.613759282032163, 40.002440467342289 ], [ -98.593301065102864, 40.002440467342289 ], [ -98.575297834205088, 40.002440467342289 ], [ -98.560567918016005, 40.00223877507441 ], [ -98.543110239569671, 40.00223877507441 ], [ -98.5229247988661, 40.00223877507441 ], [ -98.504376015516868, 40.00223877507441 ], [ -98.490464428004955, 40.00223877507441 ], [ -98.27415288100589, 40.002440467342289 ], [ -98.273880104780162, 40.002440467342289 ], [ -98.26815180403996, 40.002440467342289 ], [ -98.249875796916456, 40.00223877507441 ], [ -98.193411118191605, 40.002642159610168 ], [ -98.179226754453964, 40.002440467342289 ], [ -98.172134572585136, 40.002440467342289 ], [ -98.142129187755501, 40.002440467342289 ], [ -98.099576096542577, 40.00223877507441 ], [ -98.076117341130328, 40.00223877507441 ], [ -98.068752383035772, 40.002440467342289 ], [ -98.049930823460826, 40.00223877507441 ], [ -98.047475837429317, 40.00223877507441 ], [ -98.014469914116717, 40.00223877507441 ], [ -98.010105494505126, 40.00223877507441 ], [ -97.972189599129507, 40.002037082806531 ], [ -97.931818717722365, 40.002037082806531 ], [ -97.931818717722365, 40.002037082806531 ], [ -97.876172367674684, 40.002037082806531 ], [ -97.857350808099739, 40.002037082806531 ], [ -97.838256472299065, 40.001835390538652 ], [ -97.821617122529915, 40.002037082806531 ], [ -97.821617122529915, 40.002037082806531 ], [ -97.81943491272412, 40.002037082806531 ], [ -97.77715459773691, 40.00223877507441 ], [ -97.770880744545252, 40.002037082806531 ], [ -97.769244087190913, 40.002037082806531 ], [ -97.767880206062301, 40.002037082806531 ], [ -97.515289421041956, 40.001835390538652 ], [ -97.511470553881821, 40.001835390538652 ], [ -97.510379448978924, 40.001835390538652 ], [ -97.463189161928682, 40.002037082806531 ], [ -97.444640378579464, 40.002037082806531 ], [ -97.425546042778791, 40.002037082806531 ], [ -97.417908308458507, 40.002037082806531 ], [ -97.415726098652726, 40.002037082806531 ], [ -97.369081364053926, 40.002037082806531 ], [ -97.369081364053926, 40.002037082806531 ], [ -97.350805356930437, 40.001835390538652 ], [ -97.350259804478981, 40.002037082806531 ], [ -97.245240957575277, 40.001432006002901 ], [ -97.244968181349549, 40.001432006002901 ], [ -97.202415090136611, 40.001432006002901 ], [ -97.20023288033083, 40.001633698270773 ], [ -97.181684096981598, 40.001633698270773 ], [ -97.142404320477354, 40.001432006002901 ], [ -97.13776712464005, 40.001835390538652 ], [ -97.049660403731224, 40.001230313735022 ], [ -97.030838844156278, 40.001432006002901 ], [ -97.009289522324082, 40.001432006002901 ], [ -96.916272829352238, 40.001432006002901 ], [ -96.91600005312651, 40.001432006002901 ], [ -96.8805391437824, 40.001432006002901 ], [ -96.878356933976605, 40.001432006002901 ], [ -96.875083619267912, 40.001432006002901 ], [ -96.8737197381393, 40.001432006002901 ], [ -96.805798457934046, 40.001432006002901 ], [ -96.622492834247566, 40.001230313735022 ], [ -96.610217904089993, 40.000826929199263 ], [ -96.604762379575519, 40.000826929199263 ], [ -96.580758071711813, 40.001028621467142 ], [ -96.570938127585748, 40.001028621467142 ], [ -96.557844868751005, 40.001028621467142 ], [ -96.539023309176059, 40.000826929199263 ], [ -96.527021155244199, 40.001028621467142 ], [ -96.470010924067907, 40.001028621467142 ], [ -96.467555938036384, 40.001028621467142 ], [ -96.463737070876249, 40.001028621467142 ], [ -96.463737070876249, 40.001028621467142 ], [ -96.30443575505349, 40.000625236931384 ], [ -96.301162440344797, 40.000625236931384 ], [ -96.239242237105472, 40.000625236931384 ], [ -96.239242237105472, 40.000625236931384 ], [ -96.223966768464933, 40.000826929199263 ], [ -96.220147901304799, 40.000625236931384 ], [ -96.154408830905339, 40.000423544663505 ], [ -96.154136054679611, 40.000423544663505 ], [ -96.147043872810784, 40.000423544663505 ], [ -96.126040103430043, 40.000423544663505 ], [ -96.125767327204329, 40.000423544663505 ], [ -96.089760865408763, 40.000423544663505 ], [ -96.081304802411324, 40.000625236931384 ], [ -96.051572193807417, 40.000826929199263 ], [ -96.024021795009304, 40.000625236931384 ], [ -96.010655759948833, 40.000625236931384 ], [ -96.010655759948833, 40.000625236931384 ], [ -95.958009948384117, 40.000423544663505 ], [ -95.882450933858593, 40.000423544663505 ], [ -95.788070359758109, 40.000423544663505 ], [ -95.788070359758109, 40.000423544663505 ], [ -95.784524268823702, 40.000423544663505 ], [ -95.375359930237835, 40.000020160127747 ], [ -95.339899020893725, 40.000020160127747 ], [ -95.30825697870975, 40.000020160127747 ], [ -95.307711426258294, 39.990540623537427 ], [ -95.30143757306665, 39.983683086429551 ], [ -95.181143257522393, 39.899980795259779 ], [ -95.13258908934354, 39.875979415382183 ], [ -95.107766452802665, 39.868516801470662 ], [ -95.085126026067584, 39.86186095663065 ], [ -95.042027382403205, 39.864886340648837 ], [ -95.034935200534392, 39.866903263327629 ], [ -95.027843018665564, 39.871542185488849 ], [ -95.025115256408327, 39.877592953525209 ], [ -95.025115256408327, 39.88969448959795 ], [ -95.01638641718516, 39.898770641652504 ], [ -95.008475906639163, 39.900585872063417 ], [ -94.993473214224352, 39.900787564331296 ], [ -94.954193437720107, 39.901190948867054 ], [ -94.935917430596604, 39.894333411759163 ], [ -94.928006920050606, 39.886064028776133 ], [ -94.908367031798491, 39.812244658732432 ], [ -94.895273772963733, 39.763233437637844 ], [ -94.91682309479593, 39.728138983026909 ], [ -94.937826864176671, 39.72551698354448 ], [ -95.0112036688964, 39.677514223789288 ], [ -95.015295312282262, 39.674287147503222 ], [ -95.069577781201318, 39.615191313014691 ], [ -95.107493676576951, 39.573844398099496 ], [ -95.112949201091425, 39.559120862544333 ], [ -95.113494753542867, 39.553876863579482 ], [ -95.109403110157018, 39.542380404310379 ], [ -95.102856480739632, 39.533304252255832 ], [ -94.969196130134918, 39.418944736368459 ], [ -94.946555703399838, 39.399783970919955 ], [ -94.91000368915283, 39.367513208059322 ], [ -94.908367031798491, 39.355613364254467 ], [ -94.910549241604272, 39.348352442610818 ], [ -94.907548703121307, 39.320720601911404 ], [ -94.901002073703935, 39.301761528730779 ], [ -94.832535241047239, 39.227135389615569 ], [ -94.794073793220164, 39.20131877932706 ], [ -94.752339030684411, 39.173283554091881 ], [ -94.736518009592416, 39.169249708734306 ], [ -94.723697526983386, 39.169048016466427 ], [ -94.71415035908305, 39.170459862341581 ], [ -94.706785400988508, 39.173888630895519 ], [ -94.601766554084804, 39.159568479876114 ], [ -94.596038253344602, 39.157753249465202 ], [ -94.59194660995874, 39.154929557714901 ], [ -94.590037176378672, 39.14040771442761 ], [ -94.607222078599278, 39.113380950531834 ], [ -94.607222078599278, 39.089581262922117 ], [ -94.607222078599278, 39.081715264474838 ], [ -94.607222078599278, 39.0657815753124 ], [ -94.607494854825006, 39.043998810381467 ], [ -94.608040407276462, 38.941942522834722 ], [ -94.608040407276462, 38.939925600155931 ], [ -94.607767631050734, 38.937303600673502 ], [ -94.608040407276462, 38.936900216137744 ], [ -94.608040407276462, 38.883855149685573 ], [ -94.608040407276462, 38.86913161413041 ], [ -94.608040407276462, 38.868123152791014 ], [ -94.608040407276462, 38.867316383719498 ], [ -94.608040407276462, 38.861265615683138 ], [ -94.608040407276462, 38.855013155378884 ], [ -94.608040407276462, 38.847147156931605 ], [ -94.608040407276462, 38.811044240981275 ], [ -94.609131512179346, 38.760621174011533 ], [ -94.609404288405074, 38.742468869902424 ], [ -94.609404288405074, 38.740653639491512 ], [ -94.609404288405074, 38.73803164000909 ], [ -94.611586498210869, 38.635370275658701 ], [ -94.611859274436597, 38.620445047835659 ], [ -94.611859274436597, 38.609351973102314 ], [ -94.611859274436597, 38.58010659425986 ], [ -94.611859274436597, 38.58010659425986 ], [ -94.612132050662311, 38.576476133438042 ], [ -94.612132050662311, 38.549852754078017 ], [ -94.612404826888039, 38.547835831399226 ], [ -94.612677603113752, 38.491563688661003 ], [ -94.612677603113752, 38.484302767017354 ], [ -94.612677603113752, 38.483092613410079 ], [ -94.61295037933948, 38.477646922177357 ], [ -94.61295037933948, 38.477646922177357 ], [ -94.613495931790936, 38.40342416759789 ], [ -94.613223155565208, 38.392331092864552 ], [ -94.613223155565208, 38.388700632042728 ], [ -94.613223155565208, 38.369539866594231 ], [ -94.613223155565208, 38.364497559897259 ], [ -94.61295037933948, 38.335857257858443 ], [ -94.61295037933948, 38.324360798589339 ], [ -94.612677603113752, 38.320125260963884 ], [ -94.612677603113752, 38.314881261999034 ], [ -94.612677603113752, 38.302578033658413 ], [ -94.61295037933948, 38.291484958925068 ], [ -94.61295037933948, 38.289871420782035 ], [ -94.612677603113752, 38.27030727079778 ], [ -94.612677603113752, 38.237834815669267 ], [ -94.612677603113752, 38.2269434332038 ], [ -94.612677603113752, 38.219279127024407 ], [ -94.612677603113752, 38.217665588881374 ], [ -94.61295037933948, 38.203950514665607 ], [ -94.61295037933948, 38.200723438379541 ], [ -94.61295037933948, 38.190638824985591 ], [ -94.613495931790936, 38.167847598715269 ], [ -94.613768708016664, 38.160586677071628 ], [ -94.613768708016664, 38.149695294606161 ], [ -94.614041484242378, 38.067404849311544 ], [ -94.614041484242378, 38.06599300343639 ], [ -94.614041484242378, 38.060143927667909 ], [ -94.614041484242378, 38.060143927667909 ], [ -94.614041484242378, 38.037151009129701 ], [ -94.614041484242378, 38.036949316861822 ], [ -94.614314260468106, 37.992375325660575 ], [ -94.614587036693834, 37.987736403499355 ], [ -94.614587036693834, 37.9709959452654 ], [ -94.614587036693834, 37.951431795281145 ], [ -94.614587036693834, 37.950019949405991 ], [ -94.614587036693834, 37.944372565905383 ], [ -94.614859812919548, 37.940742105083558 ], [ -94.614859812919548, 37.936708259725982 ], [ -94.614859812919548, 37.934287952511433 ], [ -94.615132589145276, 37.915933956134452 ], [ -94.615405365371004, 37.906454419544133 ], [ -94.615405365371004, 37.90181549738292 ], [ -94.615678141596732, 37.886890269559878 ], [ -94.615950917822445, 37.878419194308961 ], [ -94.615950917822445, 37.872570118540473 ], [ -94.615950917822445, 37.863090581950161 ], [ -94.616496470273901, 37.845341662376811 ], [ -94.616496470273901, 37.837475663929531 ], [ -94.616769246499615, 37.819525052088309 ], [ -94.617860351402513, 37.729771992882164 ], [ -94.617860351402513, 37.72210768670277 ], [ -94.617860351402513, 37.690240308377895 ], [ -94.617587575176799, 37.687618308895466 ], [ -94.617587575176799, 37.68660984755607 ], [ -94.617860351402513, 37.682172617662729 ], [ -94.617860351402513, 37.673096465608182 ], [ -94.617860351402513, 37.673096465608182 ], [ -94.617587575176799, 37.653734007891799 ], [ -94.617587575176799, 37.65353231562392 ], [ -94.617587575176799, 37.637195241925724 ], [ -94.617314798951071, 37.610571862565706 ], [ -94.617314798951071, 37.60956340122631 ], [ -94.617314798951071, 37.57184694713294 ], [ -94.617314798951071, 37.571443562597182 ], [ -94.617042022725343, 37.567006332703848 ], [ -94.617042022725343, 37.557325103845656 ], [ -94.617314798951071, 37.553492950755953 ], [ -94.617042022725343, 37.52787803273533 ], [ -94.616769246499615, 37.521423880163198 ], [ -94.617042022725343, 37.483707426069842 ], [ -94.617314798951071, 37.469588967318309 ], [ -94.617314798951071, 37.465151737424975 ], [ -94.617314798951071, 37.460512815263755 ], [ -94.617314798951071, 37.460311122995876 ], [ -94.617314798951071, 37.454865431763146 ], [ -94.617042022725343, 37.439738511672225 ], [ -94.617314798951071, 37.425620052920692 ], [ -94.617587575176799, 37.410896517365529 ], [ -94.617587575176799, 37.396374674078245 ], [ -94.617587575176799, 37.367532679771557 ], [ -94.617587575176799, 37.367532679771557 ], [ -94.617587575176799, 37.364305603485491 ], [ -94.617587575176799, 37.364103911217612 ], [ -94.617587575176799, 37.338488993196989 ], [ -94.617587575176799, 37.338488993196989 ], [ -94.617587575176799, 37.336875455053956 ], [ -94.617587575176799, 37.32356376537394 ], [ -94.618133127628241, 37.240466551007813 ], [ -94.618133127628241, 37.237642859257505 ], [ -94.618133127628241, 37.229373476274468 ], [ -94.618133127628241, 37.228163322667193 ], [ -94.618133127628241, 37.207792403611421 ], [ -94.618405903853969, 37.207389019075663 ], [ -94.618405903853969, 37.188833330430796 ], [ -94.618405903853969, 37.181169024251396 ], [ -94.618405903853969, 37.174714871679271 ], [ -94.618405903853969, 37.160193028391987 ], [ -94.618133127628241, 37.132359495424687 ], [ -94.618133127628241, 37.129737495942265 ], [ -94.618133127628241, 37.11319872997619 ], [ -94.618133127628241, 37.10392088565375 ], [ -94.618133127628241, 37.096659964010115 ], [ -94.618133127628241, 37.093634579991928 ], [ -94.618133127628241, 37.093432887724049 ], [ -94.618133127628241, 37.086373658348286 ], [ -94.618133127628241, 37.085970273812528 ], [ -94.617860351402513, 37.075078891347061 ], [ -94.617860351402513, 37.056724894970074 ], [ -94.617860351402513, 37.056724894970074 ], [ -94.617860351402513, 37.040589513539757 ], [ -94.617860351402513, 37.008923827482761 ], [ -94.618133127628241, 36.998234137285181 ], [ -94.699693219119695, 36.998839214088818 ], [ -94.70187542892549, 36.998839214088818 ], [ -94.712786477954438, 36.998839214088818 ], [ -94.737063562043872, 36.998637521820939 ], [ -94.739245771849653, 36.998637521820939 ], [ -94.777161667225286, 36.998839214088818 ], [ -94.831171359918613, 36.998839214088818 ], [ -94.840991304044678, 36.998839214088818 ], [ -94.849720143267845, 36.998839214088818 ], [ -94.853266234202252, 36.998839214088818 ], [ -94.995382647804419, 36.999444290892455 ], [ -95.007657577961993, 36.999444290892455 ], [ -95.011476445122128, 36.999444290892455 ], [ -95.030298004697073, 36.999444290892455 ], [ -95.037935739017342, 36.999444290892455 ], [ -95.049392340497747, 36.999645983160335 ], [ -95.073396648361452, 36.999444290892455 ], [ -95.073396648361452, 36.999444290892455 ], [ -95.155229516078634, 36.999444290892455 ], [ -95.155502292304362, 36.999444290892455 ], [ -95.177324390362259, 36.999444290892455 ], [ -95.195327621260049, 36.999645983160335 ], [ -95.322441342447391, 36.999444290892455 ], [ -95.328169643187593, 36.999444290892455 ], [ -95.328442419413321, 36.999444290892455 ], [ -95.331170181670558, 36.999444290892455 ], [ -95.407547524873252, 36.999242598624576 ], [ -95.407547524873252, 36.999242598624576 ], [ -95.511475266874072, 36.999242598624576 ], [ -95.52238631590302, 36.999242598624576 ], [ -95.53438846983488, 36.999242598624576 ], [ -95.573668246339111, 36.999242598624576 ], [ -95.612129694166185, 36.999242598624576 ], [ -95.61594856132632, 36.999444290892455 ], [ -95.624404624323773, 36.999444290892455 ], [ -95.630132925063975, 36.999242598624576 ], [ -95.66422995327946, 36.999242598624576 ], [ -95.686324827563098, 36.999444290892455 ], [ -95.696690324140604, 36.999242598624576 ], [ -95.710329135426804, 36.999444290892455 ], [ -95.714966331264108, 36.999242598624576 ], [ -95.717966869747073, 36.999242598624576 ], [ -95.741971177610765, 36.999242598624576 ], [ -95.759974408508555, 36.999242598624576 ], [ -95.768703247731722, 36.999242598624576 ], [ -95.786706478629497, 36.999242598624576 ], [ -95.807983024235966, 36.999040906356697 ], [ -95.866902688992326, 36.999242598624576 ], [ -95.873994870861154, 36.999242598624576 ], [ -95.875358751989765, 36.999242598624576 ], [ -95.877268185569832, 36.999242598624576 ], [ -95.910274108882433, 36.999242598624576 ], [ -95.928004563554481, 36.999242598624576 ], [ -95.937006179003376, 36.999242598624576 ], [ -95.96428380157576, 36.999040906356697 ], [ -96.000835815822768, 36.998839214088818 ], [ -96.141315572070582, 36.999040906356697 ], [ -96.143225005650649, 36.999040906356697 ], [ -96.147043872810784, 36.999040906356697 ], [ -96.149771635068021, 36.999040906356697 ], [ -96.152499397325272, 36.999040906356697 ], [ -96.154136054679611, 36.999242598624576 ], [ -96.184686991960689, 36.999242598624576 ], [ -96.199962460601228, 36.999040906356697 ], [ -96.21769291527329, 36.999040906356697 ], [ -96.276339803803921, 36.999242598624576 ], [ -96.279067566061158, 36.999242598624576 ], [ -96.394179133316655, 36.999242598624576 ], [ -96.415455678923124, 36.999040906356697 ], [ -96.52538449788986, 36.999242598624576 ], [ -96.705416806867646, 36.999242598624576 ], [ -96.710599555156392, 36.999242598624576 ], [ -96.73651329660018, 36.999242598624576 ], [ -96.74115049243747, 36.999242598624576 ], [ -96.749879331660651, 36.999040906356697 ], [ -96.792159646647846, 36.999242598624576 ], [ -96.795160185130811, 36.998839214088818 ], [ -96.822710583928924, 36.999242598624576 ], [ -96.867445884947642, 36.999242598624576 ], [ -96.876174724170824, 36.999242598624576 ], [ -96.902088465614582, 36.999242598624576 ], [ -96.903452346743208, 36.999040906356697 ], [ -96.917091158029407, 36.999242598624576 ], [ -96.92200113009244, 36.999242598624576 ], [ -96.934548836475727, 36.999040906356697 ], [ -96.9672819835626, 36.999040906356697 ], [ -96.975465270334325, 36.999040906356697 ], [ -97.030020515479109, 36.998839214088818 ], [ -97.039840459605159, 36.999040906356697 ], [ -97.1006695579416, 36.999040906356697 ], [ -97.104215648876007, 36.999040906356697 ], [ -97.120309446193716, 36.999040906356697 ], [ -97.122491655999511, 36.999040906356697 ], [ -97.147587068766114, 36.999040906356697 ], [ -97.372354678762619, 36.998839214088818 ], [ -97.384902385145921, 36.998839214088818 ], [ -97.462370833251512, 36.998637521820939 ], [ -97.462370833251512, 36.998637521820939 ], [ -97.472736329829019, 36.998637521820939 ], [ -97.527291574973802, 36.998839214088818 ], [ -97.545840358323034, 36.998637521820939 ], [ -97.546385910774475, 36.998839214088818 ], [ -97.564661917897979, 36.998637521820939 ], [ -97.606669456659461, 36.998637521820939 ], [ -97.637220393940538, 36.999040906356697 ], [ -97.650586429001009, 36.999040906356697 ], [ -97.69723116359981, 36.998839214088818 ], [ -97.768698534739471, 36.998839214088818 ], [ -97.783428450928568, 36.999040906356697 ], [ -97.783428450928568, 36.998839214088818 ], [ -97.802250010503514, 36.998637521820939 ], [ -97.802250010503514, 36.998637521820939 ], [ -98.033837026143118, 36.99843582955306 ], [ -98.039838103109048, 36.99843582955306 ], [ -98.045293627623522, 36.998234137285181 ], [ -98.111851026700151, 36.998032445017301 ], [ -98.147584712269989, 36.998234137285181 ], [ -98.177590097099625, 36.998032445017301 ], [ -98.208141034380702, 36.998032445017301 ], [ -98.219597635861106, 36.997830752749422 ], [ -98.237600866758882, 36.998032445017301 ], [ -98.346165804597007, 36.998032445017301 ], [ -98.34725690949989, 36.998032445017301 ], [ -98.35407631514299, 36.998032445017301 ], [ -98.408904336513501, 36.99843582955306 ], [ -98.41817872818811, 36.998637521820939 ], [ -98.420088161768177, 36.99843582955306 ], [ -98.544746896924011, 36.999040906356697 ], [ -98.544746896924011, 36.999040906356697 ], [ -98.714413709324276, 36.999040906356697 ], [ -98.718505352710139, 36.999242598624576 ], [ -98.761603996374518, 36.999444290892455 ], [ -98.791882157429882, 36.999242598624576 ], [ -98.793791591009949, 36.999242598624576 ], [ -98.797337681944356, 36.999242598624576 ], [ -98.869350605535473, 36.999242598624576 ], [ -98.879988878338708, 36.999242598624576 ], [ -98.880534430790149, 36.999242598624576 ], [ -98.99428211691702, 36.999444290892455 ], [ -99.00028319388295, 36.999444290892455 ], [ -99.029470250035416, 36.999645983160335 ], [ -99.124941929038783, 36.999444290892455 ], [ -99.129579124876088, 36.999444290892455 ], [ -99.248236783065991, 36.999645983160335 ], [ -99.277423839218443, 36.999645983160335 ], [ -99.456092267067618, 36.999444290892455 ], [ -99.4844609945429, 36.999645983160335 ], [ -99.500282015634895, 36.999645983160335 ], [ -99.500282015634895, 36.999645983160335 ], [ -99.502737001666404, 36.999645983160335 ], [ -99.504100882795029, 36.999645983160335 ], [ -99.508465302406606, 36.999645983160335 ], [ -99.541198449493479, 36.999645983160335 ], [ -99.558110575488357, 36.999444290892455 ], [ -99.625486303242155, 36.999645983160335 ], [ -99.657673897877586, 37.000251059963972 ], [ -99.774149346261694, 37.000856136767609 ], [ -99.77469489871315, 37.000856136767609 ], [ -99.786151500193554, 37.000856136767609 ], [ -99.995098089098065, 37.001662905839126 ], [ -100.001371942289722, 37.001662905839126 ], [ -100.00246304719262, 37.001662905839126 ], [ -100.005736361901299, 37.001662905839126 ], [ -100.089478663198548, 37.002066290374884 ], [ -100.115665180868035, 37.002267982642763 ], [ -100.187678104459152, 37.002066290374884 ], [ -100.192315300296457, 37.002066290374884 ], [ -100.193679181425082, 37.002066290374884 ], [ -100.20158969197108, 37.002066290374884 ], [ -100.55156158957486, 37.00065444449973 ], [ -100.552652694477757, 37.00065444449973 ], [ -100.591386918530546, 37.000452752231851 ], [ -100.591386918530546, 37.000452752231851 ], [ -100.629848366357621, 37.000049367696093 ], [ -100.633394457292042, 36.999847675428214 ], [ -100.633394457292042, 36.999847675428214 ], [ -100.675674772279237, 36.999645983160335 ], [ -100.756962087544963, 36.999444290892455 ], [ -100.765418150542416, 36.999242598624576 ], [ -100.806061808175272, 36.999040906356697 ], [ -100.814245094946983, 36.999040906356697 ], [ -100.855707081257023, 36.998637521820939 ], [ -100.891713543052589, 36.998637521820939 ], [ -100.904261249435876, 36.998839214088818 ], [ -100.904534025661604, 36.998637521820939 ], [ -100.945450459520188, 36.998234137285181 ], [ -100.945450459520188, 36.998234137285181 ], [ -100.996459613730565, 36.998032445017301 ], [ -101.012553411048273, 36.998234137285181 ], [ -101.053469844906857, 36.998032445017301 ], [ -101.066835879967329, 36.997830752749422 ], [ -101.211407279601019, 36.997023983677906 ], [ -101.213043936955359, 36.997023983677906 ], [ -101.357888112814749, 36.996217214606389 ], [ -101.359797546394816, 36.996217214606389 ], [ -101.37807355351832, 36.996217214606389 ], [ -101.413807239088158, 36.99601552233851 ], [ -101.414898343991055, 36.99601552233851 ], [ -101.485274610227819, 36.995612137802752 ], [ -101.519098862217589, 36.995612137802752 ], [ -101.555105324013141, 36.995410445534873 ], [ -101.555378100238869, 36.995410445534873 ], [ -101.600386177483315, 36.995208753266994 ], [ -101.601477282386213, 36.995007060999114 ], [ -101.902349459359698, 36.99379690739184 ], [ -102.000548900620302, 36.993191830588202 ], [ -102.000548900620302, 36.993191830588202 ], [ -102.028099299418415, 36.993191830588202 ], [ -102.028099299418415, 36.993191830588202 ], [ -102.042283663156056, 36.992990138320323 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "27", "geo_id": "0400000US24", "fips_state": "24", "name": "Maryland", "iso_3166_2": "MD", "census": 5773552, "pop_estimataes_base": 5773785, "pop_2010": 5788101, "pop_2011": 5843833, "pop_2012": 5891819, "pop_2013": 5938737, "pop_2014": 5976407 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.048346009021216, 38.120449915763714 ], [ -76.056802072018655, 38.125088837924935 ], [ -76.060893715404518, 38.12690406833584 ], [ -76.061166491630246, 38.12690406833584 ], [ -76.061439267855974, 38.12690406833584 ], [ -76.063621477661755, 38.126097299264323 ], [ -76.064712582564653, 38.125693914728565 ], [ -76.081079156108075, 38.120046531227956 ], [ -76.081624708559531, 38.119844838960077 ], [ -76.085170799493937, 38.118634685352802 ], [ -76.085443575719665, 38.118634685352802 ], [ -76.085443575719665, 38.117827916281286 ], [ -76.085989128171121, 38.11681945494189 ], [ -76.085989128171121, 38.116617762674011 ], [ -76.086261904396849, 38.116617762674011 ], [ -76.088989666654072, 38.115205916798857 ], [ -76.0892624428798, 38.115205916798857 ], [ -76.090899100234139, 38.11439914772734 ], [ -76.095536296071458, 38.125088837924935 ], [ -76.090626324008426, 38.131139605961295 ], [ -76.090626324008426, 38.131139605961295 ], [ -76.090626324008426, 38.131946375032811 ], [ -76.088989666654072, 38.141022527087372 ], [ -76.089807995331256, 38.143846218837673 ], [ -76.090080771556984, 38.144854680177069 ], [ -76.092262981362765, 38.151308832749194 ], [ -76.088716890428358, 38.192655747664382 ], [ -76.071531988207738, 38.203547130129849 ], [ -76.067713121047603, 38.203547130129849 ], [ -76.067167568596176, 38.203547130129849 ], [ -76.066894792370448, 38.203547130129849 ], [ -76.061984820307401, 38.203547130129849 ], [ -76.05980261050162, 38.203547130129849 ], [ -76.059529834275892, 38.203547130129849 ], [ -76.059257058050179, 38.203547130129849 ], [ -76.059257058050179, 38.203547130129849 ], [ -76.058984281824451, 38.203547130129849 ], [ -76.058984281824451, 38.203547130129849 ], [ -76.05380153353569, 38.203748822397728 ], [ -76.052164876181351, 38.203748822397728 ], [ -76.050528218826997, 38.203748822397728 ], [ -76.048891561472658, 38.203748822397728 ], [ -76.048891561472658, 38.203748822397728 ], [ -76.046436575441149, 38.201530207451057 ], [ -76.046163799215421, 38.201328515183178 ], [ -76.042617708281014, 38.197899746629233 ], [ -76.042617708281014, 38.197698054361354 ], [ -76.042344932055286, 38.197496362093474 ], [ -76.042344932055286, 38.197496362093474 ], [ -76.042072155829572, 38.197092977557716 ], [ -76.040708274700947, 38.195882823950441 ], [ -76.03879884112088, 38.194067593539529 ], [ -76.036889407540812, 38.192050670860745 ], [ -76.028706120769101, 38.184184672413465 ], [ -76.028433344543373, 38.183982980145586 ], [ -76.026796687189034, 38.182571134270432 ], [ -76.02597835851185, 38.181562672931037 ], [ -76.022159491351715, 38.177932212109212 ], [ -76.021886715125987, 38.171881444072852 ], [ -76.02597835851185, 38.170872982733457 ], [ -76.03279776415495, 38.169057752322544 ], [ -76.03279776415495, 38.169057752322544 ], [ -76.034161645283575, 38.157964677589199 ], [ -76.033888869057847, 38.15756129305344 ], [ -76.03197943547778, 38.148686833266765 ], [ -76.03197943547778, 38.148283448731007 ], [ -76.031433883026324, 38.14767837192737 ], [ -76.022432267577443, 38.133358220907965 ], [ -76.021068386448832, 38.132753144104328 ], [ -76.020522833997376, 38.132551451836449 ], [ -76.019704505320206, 38.13214806730069 ], [ -76.018613400417308, 38.131744682764932 ], [ -76.017795071740139, 38.131341298229174 ], [ -76.015067309482902, 38.131542990497053 ], [ -76.013976204580004, 38.131542990497053 ], [ -76.012612323451378, 38.131744682764932 ], [ -76.011793994774209, 38.122265146174627 ], [ -76.013430652128562, 38.121256684835231 ], [ -76.014794533257174, 38.120449915763714 ], [ -76.015612861934343, 38.119844838960077 ], [ -76.020522833997376, 38.117021147209769 ], [ -76.021341162674545, 38.108550071958859 ], [ -76.021341162674545, 38.108146687423101 ], [ -76.021341162674545, 38.107944995155222 ], [ -76.021068386448832, 38.107541610619464 ], [ -76.017522295514411, 38.104112842065518 ], [ -76.015612861934343, 38.102297611654606 ], [ -76.008247903839802, 38.095440074546723 ], [ -76.005792917808293, 38.077086078169742 ], [ -76.011521218548495, 38.072245463740643 ], [ -76.012612323451378, 38.072245463740643 ], [ -76.01534008570863, 38.071842079204885 ], [ -76.023250596254613, 38.070833617865489 ], [ -76.036616631315084, 38.076481001366105 ], [ -76.052164876181351, 38.089792691046114 ], [ -76.058438729372995, 38.094834997743085 ], [ -76.059257058050179, 38.095843459082481 ], [ -76.050255442601284, 38.107743302887343 ], [ -76.047254904118319, 38.108550071958859 ], [ -76.046436575441149, 38.108751764226739 ], [ -76.045345470538251, 38.108953456494618 ], [ -76.044527141861082, 38.109155148762497 ], [ -76.042072155829572, 38.109961917834006 ], [ -76.040981050926661, 38.110768686905523 ], [ -76.040981050926661, 38.110970379173402 ], [ -76.039617169798049, 38.111978840512798 ], [ -76.039617169798049, 38.112180532780677 ], [ -76.040708274700947, 38.113592378655824 ], [ -76.043436036958184, 38.117827916281286 ], [ -76.048346009021216, 38.120449915763714 ] ] ], [ [ [ -75.993790763876433, 37.95344871795993 ], [ -75.994609092553603, 37.95344871795993 ], [ -76.005792917808293, 37.953650410227809 ], [ -76.017795071740139, 37.953852102495688 ], [ -76.020795610223104, 37.953852102495688 ], [ -76.021068386448832, 37.953852102495688 ], [ -76.021613938900273, 37.953852102495688 ], [ -76.022432267577443, 37.953852102495688 ], [ -76.029524449446257, 37.953852102495688 ], [ -76.029524449446257, 37.953852102495688 ], [ -76.030070001897712, 37.953650410227809 ], [ -76.03798051244371, 37.953852102495688 ], [ -76.041526603378117, 37.954053794763567 ], [ -76.041799379603844, 37.954053794763567 ], [ -76.045618246763979, 37.953650410227809 ], [ -76.046436575441149, 37.953650410227809 ], [ -76.049709890149842, 37.983702558141779 ], [ -76.049437113924114, 37.985114404016926 ], [ -76.049437113924114, 37.985517788552684 ], [ -76.049437113924114, 37.986122865356322 ], [ -76.049437113924114, 37.990358402981784 ], [ -76.04861878524693, 38.014763167395138 ], [ -76.046163799215421, 38.025452857592725 ], [ -76.041799379603844, 38.03210870243273 ], [ -76.020795610223104, 38.039167931808493 ], [ -76.013157875902834, 38.03977300861213 ], [ -76.008793456291244, 38.038361162736976 ], [ -76.008793456291244, 38.038159470469097 ], [ -76.004701812905381, 38.036747624593943 ], [ -75.991881330296366, 38.025452857592725 ], [ -75.981243057493131, 38.022427473574538 ], [ -75.977151414107283, 38.021419012235143 ], [ -75.975514756752929, 38.020813935431505 ], [ -75.975514756752929, 38.020813935431505 ], [ -75.973332546947148, 38.018797012752714 ], [ -75.972241442044236, 38.017788551413318 ], [ -75.970059232238441, 38.015771628734534 ], [ -75.970059232238441, 38.015771628734534 ], [ -75.970059232238441, 38.015771628734534 ], [ -75.970059232238441, 38.015166551930896 ], [ -75.970332008464169, 38.008309014823013 ], [ -75.970332008464169, 38.006292092144221 ], [ -75.970877560915625, 38.006292092144221 ], [ -75.979879176364506, 38.004678554001188 ], [ -75.98069750504169, 38.004678554001188 ], [ -75.982879714847485, 38.00427516946543 ], [ -75.984243595976096, 38.004073477197551 ], [ -75.984516372201824, 38.003468400393913 ], [ -75.984789148427552, 38.002863323590276 ], [ -75.985061924653266, 38.00185486225088 ], [ -75.985607477104708, 37.999837939572096 ], [ -75.986153029556164, 37.998426093696942 ], [ -75.98669858200762, 37.997417632357546 ], [ -75.988608015587687, 37.991971941124817 ], [ -75.988608015587687, 37.991568556589058 ], [ -75.989153568039129, 37.990358402981784 ], [ -75.992426882747822, 37.98108055865935 ], [ -75.994609092553603, 37.974626406087225 ], [ -75.994609092553603, 37.974626406087225 ], [ -75.992699658973535, 37.969987483926005 ], [ -75.991608554070638, 37.966962099907825 ], [ -75.988880791813401, 37.96030625506782 ], [ -75.993790763876433, 37.95344871795993 ] ] ], [ [ [ -77.130176520242259, 38.634966891122943 ], [ -77.135904820982461, 38.649892118945985 ], [ -77.132631506273782, 38.673893498823581 ], [ -77.121174904793378, 38.68660011169996 ], [ -77.105899436152839, 38.696886417361782 ], [ -77.085986771674982, 38.705760877148457 ], [ -77.074530170194578, 38.711004876113307 ], [ -77.059800254005495, 38.734401179187273 ], [ -77.041524246881991, 38.763848250297599 ], [ -77.03934203707621, 38.785227630692766 ], [ -77.038523708399026, 38.791480090997013 ], [ -77.024339344661385, 38.802976550266109 ], [ -77.001426141700577, 38.821532238910976 ], [ -76.953690302198893, 38.85844192393283 ], [ -76.949598658813031, 38.861265615683138 ], [ -76.920138826434851, 38.88446022648921 ], [ -76.919320497757681, 38.885065303292848 ], [ -76.910864434760242, 38.891721148132859 ], [ -76.909500553631617, 38.892729609472255 ], [ -76.941688148267048, 38.917941142957119 ], [ -77.002517246603475, 38.965338825908674 ], [ -77.002517246603475, 38.965540518176553 ], [ -77.008245547343677, 38.970179440337773 ], [ -77.013701071858151, 38.974414977963235 ], [ -77.015610505438218, 38.975826823838382 ], [ -77.036341498593231, 38.99176051300082 ], [ -77.040978694430549, 38.995189281554765 ], [ -77.054344729491021, 38.985104668160815 ], [ -77.100716687864093, 38.949001752210478 ], [ -77.119811023664766, 38.934278216655315 ], [ -77.137814254562528, 38.955254212514731 ], [ -77.148179751140049, 38.964935441372916 ], [ -77.167001310714994, 38.968162517658982 ], [ -77.197552247996072, 38.966750671783828 ], [ -77.221556555859777, 38.971389593945048 ], [ -77.235468143371691, 38.976633592909899 ], [ -77.249925283335074, 38.985911437232332 ], [ -77.255653584075276, 39.002450203198407 ], [ -77.251834716915141, 39.011324662985082 ], [ -77.261381884815478, 39.031090505237216 ], [ -77.291660045870827, 39.045410656256621 ], [ -77.327939283892107, 39.058520653668758 ], [ -77.340214214049681, 39.062957883562092 ], [ -77.375129570942335, 39.061344345419059 ], [ -77.423138186669746, 39.066790036651796 ], [ -77.458326319788142, 39.073647573759679 ], [ -77.519973746801739, 39.120843564443355 ], [ -77.524610942639043, 39.127902793819118 ], [ -77.527338704896295, 39.146256790196105 ], [ -77.516427655867332, 39.170863246877339 ], [ -77.51069935512713, 39.178527553056739 ], [ -77.505243830612642, 39.181956321610684 ], [ -77.485876718586255, 39.185586782432502 ], [ -77.478511760491699, 39.189217243254319 ], [ -77.458871872239584, 39.21987446797192 ], [ -77.458871872239584, 39.220277852507678 ], [ -77.457780767336686, 39.225118466936777 ], [ -77.46023575336821, 39.228345543222844 ], [ -77.484512837457629, 39.245892770528314 ], [ -77.511244907578572, 39.253557076707708 ], [ -77.534430886765108, 39.26243153649439 ], [ -77.543159725988275, 39.266868766387724 ], [ -77.545887488245512, 39.271507688548937 ], [ -77.560890180660323, 39.2862312241041 ], [ -77.592804999070026, 39.301358144195021 ], [ -77.667818461144094, 39.318098602428975 ], [ -77.677638405270159, 39.318703679232613 ], [ -77.719100391580199, 39.321123986447162 ], [ -77.72728367835191, 39.3217290632508 ], [ -77.75592518205292, 39.333830599323534 ], [ -77.760562377890238, 39.338872906020512 ], [ -77.760562377890238, 39.34411690498537 ], [ -77.73928583228377, 39.38566551216843 ], [ -77.765472349953257, 39.428625965226644 ], [ -77.807752664940466, 39.490142106929731 ], [ -77.825483119612528, 39.493974260019428 ], [ -77.845123007864657, 39.49820979764489 ], [ -77.865308448568214, 39.516563794021877 ], [ -77.889039980206206, 39.555893786258274 ], [ -77.886039441723227, 39.560532708419487 ], [ -77.884402784368888, 39.568197014598894 ], [ -77.902678791492406, 39.587761164583149 ], [ -77.946322987608227, 39.584937472832841 ], [ -78.009879848201905, 39.602888084674071 ], [ -78.02351865948809, 39.619830235175904 ], [ -78.036066365871392, 39.635763924338342 ], [ -78.074527813698467, 39.666622841323822 ], [ -78.107806513236781, 39.682153145950501 ], [ -78.143540198806619, 39.690422528933539 ], [ -78.176546122119206, 39.695868220166275 ], [ -78.182819975310849, 39.695061451094759 ], [ -78.191003262082575, 39.690220836665659 ], [ -78.224281961620889, 39.663194072769883 ], [ -78.271199472445403, 39.619628542908025 ], [ -78.282928850151535, 39.620435311979541 ], [ -78.312934234981157, 39.630923309909249 ], [ -78.333938004361897, 39.635763924338342 ], [ -78.355214549968366, 39.640604538767434 ], [ -78.430228012042448, 39.623259003729842 ], [ -78.457232858389119, 39.587357780047391 ], [ -78.458323963292003, 39.581105319743145 ], [ -78.454505096131868, 39.574247782635254 ], [ -78.450140676520292, 39.570819014081316 ], [ -78.432137445622516, 39.561137785223124 ], [ -78.437047417685548, 39.53895163575644 ], [ -78.468689459869523, 39.516765486289756 ], [ -78.56579779622723, 39.519387485772185 ], [ -78.656086726941851, 39.534716098130986 ], [ -78.657450608070462, 39.535119482666744 ], [ -78.676272167645422, 39.540565173899473 ], [ -78.68936542648018, 39.545809172864324 ], [ -78.760287245168385, 39.582113781082541 ], [ -78.767379427037213, 39.58755947231527 ], [ -78.772016622874517, 39.593811932619516 ], [ -78.769016084391552, 39.599862700655891 ], [ -78.760560021394113, 39.609947314049833 ], [ -78.78756486774077, 39.627494541355304 ], [ -78.824662434439233, 39.590181471797692 ], [ -78.87485325997244, 39.522614562058244 ], [ -78.968961057847181, 39.441534270370902 ], [ -79.02569851279776, 39.465535650248498 ], [ -79.04233786256691, 39.479250724464265 ], [ -79.067160499107786, 39.474611802303052 ], [ -79.084345401328392, 39.471384726016993 ], [ -79.201639178389684, 39.379816436399942 ], [ -79.213095779870088, 39.36791659259508 ], [ -79.257012752211637, 39.356016748790225 ], [ -79.279925955172445, 39.340083059627787 ], [ -79.378670948884505, 39.271911073084695 ], [ -79.402948032973939, 39.250128308153769 ], [ -79.486963110496902, 39.205957701488273 ], [ -79.485872005594004, 39.264851843708932 ], [ -79.486144781819718, 39.265053535976811 ], [ -79.486690334271174, 39.278163533388948 ], [ -79.487781439174071, 39.279978763799861 ], [ -79.482598690885311, 39.521404408450969 ], [ -79.482325914659583, 39.524631484737029 ], [ -79.478779823725176, 39.531690714112798 ], [ -79.476597613919381, 39.721079753651139 ], [ -79.392582536396418, 39.721281445919018 ], [ -78.931045162471548, 39.722693291794172 ], [ -78.931045162471548, 39.722693291794172 ], [ -78.808295860895797, 39.722693291794172 ], [ -78.380582738960697, 39.722491599526293 ], [ -78.342939619810807, 39.722491599526293 ], [ -78.342394067359351, 39.722491599526293 ], [ -78.340484633779283, 39.722491599526293 ], [ -78.339666305102099, 39.722491599526293 ], [ -78.33721131907059, 39.722491599526293 ], [ -78.330664689653219, 39.722693291794172 ], [ -78.269017262639608, 39.722693291794172 ], [ -78.269017262639608, 39.722491599526293 ], [ -78.243103521195849, 39.722491599526293 ], [ -78.240375758938598, 39.722491599526293 ], [ -78.204369297143046, 39.722491599526293 ], [ -78.203005416014435, 39.722491599526293 ], [ -78.099077674013614, 39.722289907258414 ], [ -78.075891694827078, 39.722289907258414 ], [ -78.073709485021283, 39.722289907258414 ], [ -77.768472888436236, 39.721281445919018 ], [ -77.743104699443904, 39.721281445919018 ], [ -77.732739202866398, 39.721079753651139 ], [ -77.724010363643231, 39.72087806138326 ], [ -77.674637866787208, 39.72087806138326 ], [ -77.672182880755685, 39.72087806138326 ], [ -77.534703662990836, 39.720071292311744 ], [ -77.53333978186221, 39.720071292311744 ], [ -77.46923736881709, 39.720071292311744 ], [ -77.459417424691026, 39.720071292311744 ], [ -77.243378653917688, 39.720071292311744 ], [ -77.239832562983281, 39.720071292311744 ], [ -77.216919360022473, 39.720071292311744 ], [ -77.216919360022473, 39.720071292311744 ], [ -77.058981925328325, 39.720071292311744 ], [ -77.058163596651156, 39.720272984579623 ], [ -77.046979771396479, 39.720071292311744 ], [ -76.99951670812051, 39.720071292311744 ], [ -76.897498399699771, 39.720474676847502 ], [ -76.890133441605229, 39.720474676847502 ], [ -76.809118902565217, 39.720676369115381 ], [ -76.80639114030798, 39.720676369115381 ], [ -76.787024028281579, 39.72087806138326 ], [ -76.787024028281579, 39.72087806138326 ], [ -76.715556657141917, 39.721079753651139 ], [ -76.71201056620751, 39.721079753651139 ], [ -76.569348600153887, 39.721281445919018 ], [ -76.569348600153887, 39.721281445919018 ], [ -76.516975564814913, 39.721281445919018 ], [ -76.49188015204831, 39.721281445919018 ], [ -76.418776123554295, 39.721281445919018 ], [ -76.418776123554295, 39.721281445919018 ], [ -76.395590144367759, 39.721281445919018 ], [ -76.380587451952948, 39.721281445919018 ], [ -76.380041899501492, 39.721281445919018 ], [ -76.239834919479406, 39.721281445919018 ], [ -76.233288290062035, 39.721281445919018 ], [ -76.233288290062035, 39.721281445919018 ], [ -76.22428667461314, 39.721281445919018 ], [ -76.135634401252872, 39.721483138186898 ], [ -76.027615015866189, 39.721886522722656 ], [ -76.013157875902834, 39.721886522722656 ], [ -75.809939587738512, 39.721886522722656 ], [ -75.799574091161006, 39.721886522722656 ], [ -75.788390265906315, 39.721886522722656 ], [ -75.788390265906315, 39.700305450059609 ], [ -75.788390265906315, 39.70010375779173 ], [ -75.788663042132043, 39.681951453682622 ], [ -75.788663042132043, 39.680741300075354 ], [ -75.78757193722916, 39.637377462481368 ], [ -75.787026384777704, 39.630519925373491 ], [ -75.779388650457435, 39.536531328541898 ], [ -75.779115874231707, 39.534716098130986 ], [ -75.766568167848419, 39.377597821453271 ], [ -75.766568167848419, 39.377194436917513 ], [ -75.760021538431033, 39.296719222033808 ], [ -75.75592989504517, 39.246094462796194 ], [ -75.75592989504517, 39.245892770528314 ], [ -75.747746608273459, 39.143433098445797 ], [ -75.747746608273459, 39.143231406177918 ], [ -75.746109950919106, 39.120238487639718 ], [ -75.745837174693392, 39.114994488674867 ], [ -75.725924510215549, 38.869333306398289 ], [ -75.725651733989821, 38.868123152791014 ], [ -75.724015076635482, 38.847752233735243 ], [ -75.724015076635482, 38.846743772395854 ], [ -75.722923971732584, 38.833230390447959 ], [ -75.72265119550687, 38.8300033141619 ], [ -75.72265119550687, 38.829801621894021 ], [ -75.722105643055414, 38.822137315714613 ], [ -75.707375726866317, 38.635370275658701 ], [ -75.707375726866317, 38.635370275658701 ], [ -75.706557398189148, 38.626092431336268 ], [ -75.70628462196342, 38.621251816907176 ], [ -75.705739069511978, 38.616209510210197 ], [ -75.705739069511978, 38.614797664335043 ], [ -75.704102412157624, 38.592006438064722 ], [ -75.703556859706183, 38.585148900956838 ], [ -75.701647426126115, 38.560744136543484 ], [ -75.701374649900401, 38.55933229066833 ], [ -75.70028354499749, 38.542793524702255 ], [ -75.69864688764315, 38.522019221110725 ], [ -75.696737454063083, 38.496404303090095 ], [ -75.696464677837355, 38.49237045773252 ], [ -75.693464139354404, 38.460099694871886 ], [ -75.665640964330564, 38.458889541264611 ], [ -75.662913202073327, 38.458687848996732 ], [ -75.630452831212182, 38.457881079925215 ], [ -75.597992460351037, 38.45687261858582 ], [ -75.59308248828799, 38.456469234050061 ], [ -75.589263621127856, 38.456267541782182 ], [ -75.583535320387654, 38.456469234050061 ], [ -75.573988152487317, 38.456065849514303 ], [ -75.55980378874969, 38.455662464978545 ], [ -75.559258236298234, 38.455662464978545 ], [ -75.533890047305903, 38.455057388174907 ], [ -75.522706222051227, 38.454654003639149 ], [ -75.521342340922615, 38.454654003639149 ], [ -75.503066333799097, 38.454250619103391 ], [ -75.500065795316146, 38.454048926835512 ], [ -75.479062025935406, 38.453645542299753 ], [ -75.428598424176471, 38.452637080960358 ], [ -75.424779557016336, 38.452637080960358 ], [ -75.410867969504423, 38.452435388692479 ], [ -75.394774172186715, 38.452233696424599 ], [ -75.393683067283817, 38.45203200415672 ], [ -75.371042640548723, 38.45203200415672 ], [ -75.355767171908184, 38.45203200415672 ], [ -75.341310031944829, 38.45203200415672 ], [ -75.341310031944829, 38.45203200415672 ], [ -75.260295492904817, 38.451426927353083 ], [ -75.252657758584547, 38.451426927353083 ], [ -75.185282030830749, 38.451023542817325 ], [ -75.141910610940641, 38.451225235085204 ], [ -75.089537575601653, 38.451225235085204 ], [ -75.088173694473028, 38.451225235085204 ], [ -75.085718708441519, 38.451225235085204 ], [ -75.07044323980098, 38.451225235085204 ], [ -75.069897687349538, 38.451225235085204 ], [ -75.066351596415117, 38.451225235085204 ], [ -75.053531113806088, 38.451225235085204 ], [ -75.052440008903204, 38.451225235085204 ], [ -75.049166694194511, 38.451225235085204 ], [ -75.048893917968797, 38.451225235085204 ], [ -75.049439470420225, 38.448603235602782 ], [ -75.049439470420225, 38.447998158799145 ], [ -75.049712246645953, 38.447191389727628 ], [ -75.051894456451748, 38.431459392833069 ], [ -75.051894456451748, 38.431459392833069 ], [ -75.052167232677476, 38.430450931493674 ], [ -75.052167232677476, 38.430249239225795 ], [ -75.052167232677476, 38.430047546957923 ], [ -75.052440008903204, 38.429240777886406 ], [ -75.052440008903204, 38.428837393350648 ], [ -75.052440008903204, 38.428434008814889 ], [ -75.052440008903204, 38.428434008814889 ], [ -75.052440008903204, 38.42823231654701 ], [ -75.052712785128932, 38.426820470671856 ], [ -75.052712785128932, 38.426417086136098 ], [ -75.052712785128932, 38.426215393868219 ], [ -75.052985561354646, 38.424400163457307 ], [ -75.05325833758036, 38.424198471189428 ], [ -75.05325833758036, 38.423391702117911 ], [ -75.05325833758036, 38.423190009850032 ], [ -75.054622218709, 38.414920626866994 ], [ -75.055713323611883, 38.410080012437902 ], [ -75.055986099837611, 38.409474935634265 ], [ -75.056258876063339, 38.408869858830627 ], [ -75.057349980966222, 38.404836013473044 ], [ -75.061441624352085, 38.389507401114244 ], [ -75.067988253769471, 38.368733097522714 ], [ -75.068261029995185, 38.368531405254835 ], [ -75.068533806220913, 38.367724636183318 ], [ -75.068533806220913, 38.36732125164756 ], [ -75.068533806220913, 38.36732125164756 ], [ -75.069897687349538, 38.363489098557864 ], [ -75.069897687349538, 38.363287406289984 ], [ -75.07126156847815, 38.358850176396643 ], [ -75.071534344703878, 38.357841715057248 ], [ -75.071807120929606, 38.357640022789369 ], [ -75.071807120929606, 38.357640022789369 ], [ -75.072079897155319, 38.356429869182094 ], [ -75.072352673381047, 38.355219715574819 ], [ -75.073716554509673, 38.35199263928876 ], [ -75.074534883186828, 38.350379101145727 ], [ -75.084082051087165, 38.327587874875405 ], [ -75.085173155990077, 38.325167567660856 ], [ -75.085445932215791, 38.324764183125097 ], [ -75.085445932215791, 38.324360798589339 ], [ -75.085445932215791, 38.324360798589339 ], [ -75.087355365795858, 38.322747260446306 ], [ -75.09226533785889, 38.323352337249943 ], [ -75.09390199521323, 38.323352337249943 ], [ -75.102903610662125, 38.311452493445088 ], [ -75.103721939339295, 38.309435570766297 ], [ -75.116815198174038, 38.274139423887476 ], [ -75.143274492069253, 38.220489280631682 ], [ -75.155276646001113, 38.192655747664382 ], [ -75.159095513161247, 38.184184672413465 ], [ -75.161550499192771, 38.176318673966186 ], [ -75.177371520284751, 38.12992945235402 ], [ -75.179008177639105, 38.126702376067961 ], [ -75.192919765151018, 38.097860381761265 ], [ -75.193738093828188, 38.09604515135036 ], [ -75.195374751182527, 38.09362484413581 ], [ -75.204649142857136, 38.079304693116406 ], [ -75.204921919082864, 38.078901308580647 ], [ -75.206558576437203, 38.076481001366105 ], [ -75.21610574433754, 38.061757465810935 ], [ -75.224289031109265, 38.050866083345468 ], [ -75.227562345817944, 38.046630545720014 ], [ -75.235745632589669, 38.035739163254547 ], [ -75.236018408815397, 38.035335778718789 ], [ -75.237655066169737, 38.033520548307877 ], [ -75.241746709555599, 38.027873164807275 ], [ -75.242292262007041, 38.027268088003638 ], [ -75.242292262007041, 38.027268088003638 ], [ -75.250475548778752, 38.026461318932121 ], [ -75.256203849518954, 38.026057934396363 ], [ -75.260568269130545, 38.025654549860604 ], [ -75.262204926484884, 38.025452857592725 ], [ -75.263841583839223, 38.025251165324846 ], [ -75.377862046191836, 38.015166551930896 ], [ -75.398865815572577, 38.013351321519984 ], [ -75.428871200402199, 38.010931014305442 ], [ -75.435963382271026, 38.010325937501804 ], [ -75.624451754246252, 37.994190556071487 ], [ -75.626088411600591, 37.992577017928454 ], [ -75.630180054986454, 37.988543172570871 ], [ -75.635635579500928, 37.9835008658739 ], [ -75.639727222886791, 37.979467020516324 ], [ -75.644637194949823, 37.974828098355104 ], [ -75.644637194949823, 37.974828098355104 ], [ -75.644637194949823, 37.974828098355104 ], [ -75.645182747401265, 37.974424713819346 ], [ -75.645182747401265, 37.974223021551467 ], [ -75.646273852304162, 37.973214560212071 ], [ -75.64654662852989, 37.973012867944192 ], [ -75.661003768493259, 37.959096101460545 ], [ -75.669732607716412, 37.950826718477508 ], [ -75.665095411879122, 37.956272409710238 ], [ -75.663185978299055, 37.961113024139337 ], [ -75.665095411879122, 37.962323177746612 ], [ -75.669459831490698, 37.965146869496913 ], [ -75.671642041296479, 37.966558715372067 ], [ -75.686099181259863, 37.967567176711462 ], [ -75.686644733711304, 37.967768868979341 ], [ -75.708194055543487, 37.975029790622983 ], [ -75.713104027606519, 37.976643328766016 ], [ -75.722105643055414, 37.97341625247995 ], [ -75.72265119550687, 37.971399329801159 ], [ -75.724560629086938, 37.969785791658126 ], [ -75.725378957764093, 37.969180714854488 ], [ -75.727833943795616, 37.967163792175704 ], [ -75.735198901890158, 37.964541792693282 ], [ -75.737381111695953, 37.963735023621766 ], [ -75.737926664147409, 37.963533331353887 ], [ -75.750201594304968, 37.968777330318737 ], [ -75.759203209753863, 37.970592560729642 ], [ -75.776660888200198, 37.972004406604796 ], [ -75.778843098005979, 37.972206098872675 ], [ -75.783480293843297, 37.972609483408434 ], [ -75.783753070069025, 37.972609483408434 ], [ -75.785116951197637, 37.971802714336917 ], [ -75.785116951197637, 37.971601022069038 ], [ -75.785389727423365, 37.971601022069038 ], [ -75.785389727423365, 37.971399329801159 ], [ -75.788390265906315, 37.969180714854488 ], [ -75.790026923260669, 37.96797056124722 ], [ -75.806120720578377, 37.956070717442358 ], [ -75.806939049255547, 37.955465640638721 ], [ -75.807757377932717, 37.954860563835084 ], [ -75.819213979413121, 37.946591180852053 ], [ -75.82085063676746, 37.945381027244778 ], [ -75.823032846573255, 37.943767489101745 ], [ -75.824123951476153, 37.942759027762349 ], [ -75.824396727701881, 37.94255733549447 ], [ -75.829852252216355, 37.938523490136888 ], [ -75.830125028442083, 37.938120105601129 ], [ -75.831761685796423, 37.934691337047191 ], [ -75.831761685796423, 37.934489644779312 ], [ -75.832307238247864, 37.933279491172037 ], [ -75.83285279069932, 37.933077798904158 ], [ -75.843763839728268, 37.92722872313567 ], [ -75.845946049534064, 37.926018569528395 ], [ -75.84649160198552, 37.925816877260516 ], [ -75.847309930662689, 37.925413492724758 ], [ -75.847582706888403, 37.925413492724758 ], [ -75.847855483114131, 37.925211800456879 ], [ -75.847855483114131, 37.925010108188999 ], [ -75.848128259339859, 37.925010108188999 ], [ -75.849219364242757, 37.924405031385362 ], [ -75.860675965723161, 37.918354263348995 ], [ -75.881952511329629, 37.912505187580507 ], [ -75.883589168683969, 37.912101803044749 ], [ -75.884953049812594, 37.91169841850899 ], [ -75.892590784132864, 37.916942417473841 ], [ -75.895864098841542, 37.921379647367175 ], [ -75.895864098841542, 37.921581339635054 ], [ -75.898319084873066, 37.925211800456879 ], [ -75.893954665261475, 37.930859183957494 ], [ -75.893681889035747, 37.933884567975674 ], [ -75.892863560358592, 37.9403387205478 ], [ -75.890954126778524, 37.954860563835084 ], [ -75.898864637324507, 37.974424713819346 ], [ -75.882770840006799, 38.003065015858155 ], [ -75.875405881912258, 38.011939475644837 ], [ -75.875405881912258, 38.028276549343033 ], [ -75.873223672106462, 38.034327317379393 ], [ -75.869404804946328, 38.035335778718789 ], [ -75.865858714011921, 38.036344240058185 ], [ -75.864767609109023, 38.036747624593943 ], [ -75.858766532143093, 38.038361162736976 ], [ -75.857402651014468, 38.038764547272734 ], [ -75.856857098563026, 38.038562855004855 ], [ -75.8554932174344, 38.038159470469097 ], [ -75.854674888757245, 38.037957778201218 ], [ -75.852765455177178, 38.03735270139758 ], [ -75.850583245371382, 38.036747624593943 ], [ -75.850310469145654, 38.035940855522426 ], [ -75.850037692919926, 38.034327317379393 ], [ -75.847855483114131, 38.034327317379393 ], [ -75.847582706888403, 38.034529009647272 ], [ -75.836126105407999, 38.039974700880009 ], [ -75.834762224279388, 38.040579777683647 ], [ -75.833671119376504, 38.041184854487284 ], [ -75.833398343150776, 38.041184854487284 ], [ -75.830125028442083, 38.042798392630317 ], [ -75.829306699764913, 38.043201777166075 ], [ -75.829306699764913, 38.043201777166075 ], [ -75.826578937507662, 38.045823776648497 ], [ -75.82603338505622, 38.046428853452134 ], [ -75.812940126221477, 38.058933774060634 ], [ -75.813485678672919, 38.059538850864271 ], [ -75.813485678672919, 38.059538850864271 ], [ -75.819486755638849, 38.066598080240027 ], [ -75.819486755638849, 38.066598080240027 ], [ -75.819486755638849, 38.066799772507906 ], [ -75.830125028442083, 38.069220079722456 ], [ -75.831216133344981, 38.069421771990335 ], [ -75.83285279069932, 38.069623464258214 ], [ -75.839944972568134, 38.071237002401247 ], [ -75.841036077471045, 38.071640386937005 ], [ -75.841308853696773, 38.071640386937005 ], [ -75.844309392179724, 38.072245463740643 ], [ -75.847309930662689, 38.071237002401247 ], [ -75.852219902725722, 38.069623464258214 ], [ -75.859039308368807, 38.067404849311544 ], [ -75.859039308368807, 38.067203157043664 ], [ -75.859584860820263, 38.066396387972148 ], [ -75.860130413271719, 38.06579131116851 ], [ -75.859584860820263, 38.063976080757605 ], [ -75.859312084594535, 38.06276592715033 ], [ -75.859312084594535, 38.061959158078814 ], [ -75.859039308368807, 38.060749004471546 ], [ -75.858766532143093, 38.060143927667909 ], [ -75.860675965723161, 38.05994223540003 ], [ -75.860948741948889, 38.05994223540003 ], [ -75.860948741948889, 38.05994223540003 ], [ -75.86149429440033, 38.05994223540003 ], [ -75.866131490237649, 38.059337158596392 ], [ -75.867222595140532, 38.059337158596392 ], [ -75.86749537136626, 38.059337158596392 ], [ -75.868859252494872, 38.059135466328513 ], [ -75.871587014752123, 38.058933774060634 ], [ -75.87431477700936, 38.060345619935788 ], [ -75.880588630201004, 38.075069155490951 ], [ -75.871314238526395, 38.089187614242476 ], [ -75.870223133623497, 38.091002844653389 ], [ -75.865585937786193, 38.098062074029144 ], [ -75.865040385334737, 38.098868843100661 ], [ -75.863676504206126, 38.100885765779452 ], [ -75.842672734825385, 38.113188994120073 ], [ -75.837489986536639, 38.113794070923703 ], [ -75.837217210310911, 38.11439914772734 ], [ -75.837217210310911, 38.114600839995219 ], [ -75.836944434085183, 38.114802532263099 ], [ -75.827942818636288, 38.132753144104328 ], [ -75.827942818636288, 38.132954836372207 ], [ -75.827670042410574, 38.133358220907965 ], [ -75.827670042410574, 38.133559913175844 ], [ -75.843763839728268, 38.14465298790919 ], [ -75.850037692919926, 38.144451295641311 ], [ -75.854402112531517, 38.142636065230398 ], [ -75.858766532143093, 38.140820834819493 ], [ -75.859584860820263, 38.140619142551614 ], [ -75.866131490237649, 38.134971759050998 ], [ -75.868586476269158, 38.134366682247361 ], [ -75.869950357397784, 38.134770066783119 ], [ -75.871041462300667, 38.134971759050998 ], [ -75.880588630201004, 38.13698868172979 ], [ -75.880861406426732, 38.13698868172979 ], [ -75.900228518453133, 38.141224219355252 ], [ -75.901046847130303, 38.140820834819493 ], [ -75.9021379520332, 38.140417450283735 ], [ -75.903501833161812, 38.139812373480098 ], [ -75.905684042967607, 38.138803912140702 ], [ -75.906502371644777, 38.138400527604944 ], [ -75.907320700321947, 38.137997143069185 ], [ -75.923687273865383, 38.130332836889778 ], [ -75.932688889314278, 38.126298991532202 ], [ -75.936780532700141, 38.124282068853418 ], [ -75.937053308925854, 38.124282068853418 ], [ -75.937053308925854, 38.123071915246143 ], [ -75.937053308925854, 38.121660069370989 ], [ -75.936780532700141, 38.11681945494189 ], [ -75.936780532700141, 38.109961917834006 ], [ -75.93841719005448, 38.109961917834006 ], [ -75.945236595697565, 38.113188994120073 ], [ -75.949601015309156, 38.118029608549165 ], [ -75.956420420952256, 38.131139605961295 ], [ -75.956420420952256, 38.131139605961295 ], [ -75.958875406983765, 38.135576835854636 ], [ -75.959420959435221, 38.13698868172979 ], [ -75.959693735660949, 38.137190373997669 ], [ -75.952328777566407, 38.158569754392836 ], [ -75.951510448889223, 38.161393446143144 ], [ -75.951237672663495, 38.161796830678895 ], [ -75.949873791534884, 38.164418830161324 ], [ -75.947418805503361, 38.168250983251028 ], [ -75.947418805503361, 38.168654367786786 ], [ -75.947418805503361, 38.169461136858303 ], [ -75.947146029277633, 38.170872982733457 ], [ -75.948237134180545, 38.171679751804973 ], [ -75.948237134180545, 38.171881444072852 ], [ -75.948509910406273, 38.17228482860861 ], [ -75.948782686631986, 38.17248652087649 ], [ -75.951783225114951, 38.176116981698307 ], [ -75.952056001340679, 38.176318673966186 ], [ -75.951783225114951, 38.176722058501944 ], [ -75.951510448889223, 38.177932212109212 ], [ -75.951510448889223, 38.178133904377091 ], [ -75.949601015309156, 38.179949134788004 ], [ -75.949328239083428, 38.180150827055883 ], [ -75.948782686631986, 38.18075590385952 ], [ -75.948782686631986, 38.18075590385952 ], [ -75.946600476826205, 38.182974518806191 ], [ -75.945509371923293, 38.184184672413465 ], [ -75.942508833440343, 38.187008364163773 ], [ -75.941417728537431, 38.187411748699532 ], [ -75.934052770442889, 38.189630363646195 ], [ -75.887953588295545, 38.203748822397728 ], [ -75.886316930941206, 38.203345437861969 ], [ -75.884953049812594, 38.200521746111662 ], [ -75.884680273586866, 38.199714977040145 ], [ -75.884680273586866, 38.199714977040145 ], [ -75.878406420395208, 38.19850482343287 ], [ -75.877860867943767, 38.198303131164991 ], [ -75.877315315492325, 38.198303131164991 ], [ -75.871041462300667, 38.199513284772266 ], [ -75.868586476269158, 38.200118361575903 ], [ -75.864222056657582, 38.20092513064742 ], [ -75.862312623077514, 38.201731899718936 ], [ -75.856857098563026, 38.204757283737123 ], [ -75.854402112531517, 38.20616912961227 ], [ -75.852219902725722, 38.207379283219545 ], [ -75.848401035565587, 38.209396205898337 ], [ -75.847309930662689, 38.210001282701967 ], [ -75.847037154436975, 38.210202974969846 ], [ -75.846764378211248, 38.210202974969846 ], [ -75.84649160198552, 38.210404667237725 ], [ -75.851401574048538, 38.226338356400163 ], [ -75.851401574048538, 38.226540048668042 ], [ -75.859039308368807, 38.233397585775933 ], [ -75.864494832883295, 38.238238200205025 ], [ -75.870223133623497, 38.243482199169875 ], [ -75.870223133623497, 38.243482199169875 ], [ -75.872405343429293, 38.243885583705634 ], [ -75.874587553235074, 38.244490660509271 ], [ -75.882770840006799, 38.244490660509271 ], [ -75.883316392458255, 38.244490660509271 ], [ -75.885225826038322, 38.243482199169875 ], [ -75.886862483392662, 38.24247373783048 ], [ -75.887408035844103, 38.242070353294721 ], [ -75.888499140747001, 38.241465276491091 ], [ -75.889317469424171, 38.2394483538123 ], [ -75.885771378489764, 38.230977278561383 ], [ -75.886044154715478, 38.230775586293504 ], [ -75.890681350552796, 38.227951894543196 ], [ -75.894500217712931, 38.228355279078954 ], [ -75.895591322615815, 38.228556971346833 ], [ -75.895864098841542, 38.228758663614713 ], [ -75.899682966001677, 38.231985739900779 ], [ -75.899955742227405, 38.232187432168658 ], [ -75.900774070904575, 38.233195893508054 ], [ -75.901319623356017, 38.234406047115328 ], [ -75.905956819193335, 38.242070353294721 ], [ -75.905956819193335, 38.24247373783048 ], [ -75.908411805224844, 38.246709275455942 ], [ -75.90813902899913, 38.251953274420799 ], [ -75.911139567482081, 38.258004042457159 ], [ -75.917413420673739, 38.263046349154138 ], [ -75.919322854253807, 38.264054810493533 ], [ -75.92041395915669, 38.264458195029292 ], [ -75.92559670744545, 38.266676809975962 ], [ -75.938689966280208, 38.272324193476571 ], [ -75.940326623634547, 38.271517424405054 ], [ -75.942508833440343, 38.270710655333538 ], [ -75.942781609666056, 38.270710655333538 ], [ -75.948237134180545, 38.268290348118995 ], [ -75.951237672663495, 38.26708019451172 ], [ -75.951510448889223, 38.266878502243841 ], [ -75.951510448889223, 38.266878502243841 ], [ -75.951510448889223, 38.266878502243841 ], [ -75.951783225114951, 38.266878502243841 ], [ -75.954510987372188, 38.264458195029292 ], [ -75.954510987372188, 38.264256502761413 ], [ -75.954783763597902, 38.264256502761413 ], [ -75.954783763597902, 38.264054810493533 ], [ -75.954783763597902, 38.264054810493533 ], [ -75.954783763597902, 38.264054810493533 ], [ -75.954783763597902, 38.264054810493533 ], [ -75.954783763597902, 38.261029426475346 ], [ -75.954510987372188, 38.254171889367463 ], [ -75.954510987372188, 38.253566812563832 ], [ -75.954510987372188, 38.252961735760195 ], [ -75.950146567760612, 38.249734659474129 ], [ -75.949328239083428, 38.24933127493837 ], [ -75.948782686631986, 38.248726198134733 ], [ -75.947964357954817, 38.248927890402612 ], [ -75.945782148149021, 38.249129582670491 ], [ -75.94441826702041, 38.249129582670491 ], [ -75.943054385891784, 38.248322813598975 ], [ -75.942508833440343, 38.247919429063217 ], [ -75.942236057214615, 38.247919429063217 ], [ -75.940599399860275, 38.246910967723821 ], [ -75.941144952311717, 38.246305890920183 ], [ -75.942781609666056, 38.243885583705634 ], [ -75.946327700600477, 38.238843277008662 ], [ -75.948237134180545, 38.238439892472904 ], [ -75.951237672663495, 38.237834815669267 ], [ -75.95505653982363, 38.237028046597757 ], [ -75.955874868500814, 38.236826354329878 ], [ -75.958329854532323, 38.236221277526241 ], [ -75.958875406983765, 38.236221277526241 ], [ -75.961875945466744, 38.235616200722603 ], [ -75.962148721692458, 38.235414508454724 ], [ -75.9626942741439, 38.235414508454724 ], [ -75.962967050369627, 38.235212816186845 ], [ -75.970604784689897, 38.233599278043812 ], [ -75.971423113367081, 38.233397585775933 ], [ -75.972241442044236, 38.233397585775933 ], [ -75.970332008464169, 38.235011123918966 ], [ -75.970059232238441, 38.235414508454724 ], [ -75.969513679787013, 38.236019585258362 ], [ -75.969240903561285, 38.236019585258362 ], [ -75.964603707723967, 38.240658507419575 ], [ -75.964058155272525, 38.241061891955333 ], [ -75.964058155272525, 38.241666968758963 ], [ -75.962148721692458, 38.247516044527458 ], [ -75.963512602821083, 38.25175158215292 ], [ -75.984243595976096, 38.265063271832929 ], [ -75.985880253330436, 38.276559731102026 ], [ -75.987789686910503, 38.279383422852334 ], [ -75.988608015587687, 38.280593576459609 ], [ -75.990517449167754, 38.283013883674158 ], [ -75.991063001619196, 38.283820652745675 ], [ -75.991608554070638, 38.284627421817191 ], [ -75.992699658973535, 38.285837575424459 ], [ -75.992699658973535, 38.286039267692338 ], [ -75.993517987650705, 38.286644344495976 ], [ -76.000337393293805, 38.295317112014772 ], [ -76.003883484228226, 38.300157726443871 ], [ -76.007156798936904, 38.303989879533567 ], [ -76.007156798936904, 38.304191571801447 ], [ -76.007429575162632, 38.304393264069326 ], [ -76.007429575162632, 38.304393264069326 ], [ -76.011248442322767, 38.3056034176766 ], [ -76.011521218548495, 38.3056034176766 ], [ -76.016158414385785, 38.307216955819626 ], [ -76.016431190611513, 38.307216955819626 ], [ -76.016431190611513, 38.307620340355385 ], [ -76.017249519288697, 38.309032186230539 ], [ -76.017249519288697, 38.309032186230539 ], [ -76.0093390087427, 38.312057570248726 ], [ -76.008520680065516, 38.312259262516605 ], [ -75.991063001619196, 38.314074492927517 ], [ -75.990517449167754, 38.314276185195396 ], [ -75.986153029556164, 38.314679569731155 ], [ -75.984789148427552, 38.314881261999034 ], [ -75.984516372201824, 38.314881261999034 ], [ -75.983152491073199, 38.314881261999034 ], [ -75.983152491073199, 38.314881261999034 ], [ -75.982606938621757, 38.315082954266913 ], [ -75.981243057493131, 38.315082954266913 ], [ -75.969513679787013, 38.320125260963884 ], [ -75.969240903561285, 38.320125260963884 ], [ -75.968968127335557, 38.320528645499643 ], [ -75.964330931498239, 38.324360798589339 ], [ -75.961875945466744, 38.332630181572384 ], [ -75.961875945466744, 38.335857257858443 ], [ -75.961875945466744, 38.336058950126322 ], [ -75.961875945466744, 38.341504641359052 ], [ -75.965422036401151, 38.348362178466942 ], [ -75.966513141304034, 38.350580793413606 ], [ -75.968968127335557, 38.355623100110577 ], [ -75.969240903561285, 38.356228176914215 ], [ -75.970877560915625, 38.35965694546816 ], [ -75.971150337141353, 38.360060330003918 ], [ -75.971423113367081, 38.361068791343314 ], [ -75.971968665818508, 38.36187556041483 ], [ -75.972241442044236, 38.362278944950589 ], [ -75.972241442044236, 38.362682329486347 ], [ -75.973878099398576, 38.365909405772406 ], [ -75.979606400138792, 38.367724636183318 ], [ -75.980151952590234, 38.367724636183318 ], [ -75.98069750504169, 38.367926328451198 ], [ -75.9957001974565, 38.372565250612411 ], [ -76.001974050648158, 38.374380481023323 ], [ -76.002246826873872, 38.374380481023323 ], [ -76.002246826873872, 38.374380481023323 ], [ -76.004974589131109, 38.371960173808773 ], [ -76.006884022711176, 38.370144943397861 ], [ -76.011793994774209, 38.360665406807556 ], [ -76.012066770999937, 38.357034945985731 ], [ -76.010975666097039, 38.354816331039061 ], [ -76.010702889871311, 38.354211254235423 ], [ -76.010157337419869, 38.353202792896035 ], [ -76.010157337419869, 38.353202792896035 ], [ -76.010430113645583, 38.352799408360276 ], [ -76.010430113645583, 38.352597716092397 ], [ -76.016703966837241, 38.332428489304505 ], [ -76.033888869057847, 38.323150644982064 ], [ -76.041526603378117, 38.322142183642669 ], [ -76.041526603378117, 38.322142183642669 ], [ -76.041526603378117, 38.322142183642669 ], [ -76.043163260732456, 38.320528645499643 ], [ -76.04398158940964, 38.319923568696005 ], [ -76.044527141861082, 38.319116799624489 ], [ -76.045072694312523, 38.31871341508873 ], [ -76.045618246763979, 38.318310030552972 ], [ -76.045891022989707, 38.317503261481463 ], [ -76.046436575441149, 38.316494800142067 ], [ -76.047527680344047, 38.314276185195396 ], [ -76.048073232795488, 38.313066031588122 ], [ -76.04861878524693, 38.311654185712968 ], [ -76.048891561472658, 38.310847416641451 ], [ -76.049164337698386, 38.310444032105693 ], [ -76.049437113924114, 38.309637263034176 ], [ -76.049709890149842, 38.309637263034176 ], [ -76.049709890149842, 38.309435570766297 ], [ -76.049709890149842, 38.309032186230539 ], [ -76.050255442601284, 38.304191571801447 ], [ -76.047254904118319, 38.301569572319025 ], [ -76.039889946023777, 38.29572049655053 ], [ -76.030615554349168, 38.28805619037113 ], [ -76.028160568317645, 38.282005422334763 ], [ -76.027615015866189, 38.28019019192385 ], [ -76.027615015866189, 38.28019019192385 ], [ -76.032524987929236, 38.268895424922633 ], [ -76.03279776415495, 38.268693732654754 ], [ -76.03279776415495, 38.268492040386874 ], [ -76.033070540380677, 38.268088655851116 ], [ -76.033616092832119, 38.266676809975962 ], [ -76.033616092832119, 38.266273425440204 ], [ -76.03879884112088, 38.254978658438979 ], [ -76.039617169798049, 38.254171889367463 ], [ -76.04398158940964, 38.249734659474129 ], [ -76.044254365635354, 38.24933127493837 ], [ -76.044254365635354, 38.243482199169875 ], [ -76.04398158940964, 38.241666968758963 ], [ -76.043708813183912, 38.241263584223212 ], [ -76.03798051244371, 38.233599278043812 ], [ -76.037162183766526, 38.232389124436537 ], [ -76.037162183766526, 38.232389124436537 ], [ -76.036071078863642, 38.231178970829262 ], [ -76.035798302637915, 38.230573894025625 ], [ -76.033343316606391, 38.222102818774708 ], [ -76.033343316606391, 38.22169943423895 ], [ -76.03197943547778, 38.216657127541978 ], [ -76.057893176921553, 38.227145125471679 ], [ -76.069622554627671, 38.238439892472904 ], [ -76.070713659530583, 38.241868661026842 ], [ -76.071259211982024, 38.242675430098359 ], [ -76.073441421787805, 38.248524505866854 ], [ -76.073714198013533, 38.249129582670491 ], [ -76.074532526690717, 38.251146505349283 ], [ -76.074532526690717, 38.251146505349283 ], [ -76.074532526690717, 38.251348197617162 ], [ -76.074532526690717, 38.251348197617162 ], [ -76.074805302916445, 38.25175158215292 ], [ -76.074805302916445, 38.25175158215292 ], [ -76.074805302916445, 38.252154966688678 ], [ -76.082170261010987, 38.252558351224437 ], [ -76.082443037236715, 38.252558351224437 ], [ -76.089807995331256, 38.252961735760195 ], [ -76.092535757588493, 38.253163428028074 ], [ -76.092808533814207, 38.253163428028074 ], [ -76.094717967394274, 38.253365120295953 ], [ -76.099627939457321, 38.253566812563832 ], [ -76.107538450003304, 38.2624412723505 ], [ -76.102628477940272, 38.277164807905663 ], [ -76.111357317163439, 38.286846036763855 ], [ -76.126905562029705, 38.283820652745675 ], [ -76.130997205415554, 38.282812191406279 ], [ -76.137271058607212, 38.281602037799004 ], [ -76.13754383483294, 38.281602037799004 ], [ -76.138362163510109, 38.281400345531125 ], [ -76.138634939735823, 38.281400345531125 ], [ -76.138634939735823, 38.281400345531125 ], [ -76.14054437331589, 38.282005422334763 ], [ -76.140817149541618, 38.282005422334763 ], [ -76.142999359347414, 38.282812191406279 ], [ -76.149273212539072, 38.284425729549312 ], [ -76.149818764990513, 38.284627421817191 ], [ -76.160457037793748, 38.29108157438931 ], [ -76.160729814019476, 38.29087988212143 ], [ -76.161275366470917, 38.29087988212143 ], [ -76.16618533853395, 38.290476497585672 ], [ -76.173550296628491, 38.285232498620829 ], [ -76.173550296628491, 38.285232498620829 ], [ -76.173823072854219, 38.284829114085071 ], [ -76.174095849079947, 38.284627421817191 ], [ -76.174095849079947, 38.284627421817191 ], [ -76.174095849079947, 38.284425729549312 ], [ -76.174368625305675, 38.284022345013554 ], [ -76.174641401531389, 38.284022345013554 ], [ -76.174641401531389, 38.283820652745675 ], [ -76.180096926045877, 38.276963115637784 ], [ -76.180096926045877, 38.276963115637784 ], [ -76.180096926045877, 38.276761423369905 ], [ -76.179005821142965, 38.273332654815967 ], [ -76.17818749246581, 38.27030727079778 ], [ -76.175732506434287, 38.261634503278984 ], [ -76.171368086822696, 38.256995581117771 ], [ -76.164275904953882, 38.250138044009887 ], [ -76.163184800050985, 38.248927890402612 ], [ -76.146272674056092, 38.249734659474129 ], [ -76.135088848801416, 38.245902506384425 ], [ -76.135088848801416, 38.245902506384425 ], [ -76.132633862769907, 38.244894045045029 ], [ -76.130997205415554, 38.244490660509271 ], [ -76.126632785803977, 38.242877122366238 ], [ -76.126360009578264, 38.242070353294721 ], [ -76.125814457126808, 38.238843277008662 ], [ -76.125814457126808, 38.238439892472904 ], [ -76.128542219384045, 38.235616200722603 ], [ -76.128814995609773, 38.235212816186845 ], [ -76.131269981641282, 38.232792508972295 ], [ -76.139998820864449, 38.231380663097141 ], [ -76.150909869893411, 38.234204354847449 ], [ -76.173277520402763, 38.2471126599917 ], [ -76.188552989043302, 38.267483579047479 ], [ -76.189644093946214, 38.27252588574445 ], [ -76.189644093946214, 38.272727578012329 ], [ -76.190462422623369, 38.277164807905663 ], [ -76.197281828266483, 38.285232498620829 ], [ -76.197827380717911, 38.285837575424459 ], [ -76.197827380717911, 38.286039267692338 ], [ -76.201646247878045, 38.290678189853551 ], [ -76.201646247878045, 38.290678189853551 ], [ -76.202464576555229, 38.291484958925068 ], [ -76.202737352780957, 38.291888343460826 ], [ -76.203010129006685, 38.292291727996584 ], [ -76.203555681458127, 38.292896804800222 ], [ -76.203828457683841, 38.293501881603859 ], [ -76.21146619200411, 38.302578033658413 ], [ -76.216376164067157, 38.304998340872963 ], [ -76.217740045195768, 38.3056034176766 ], [ -76.218012821421496, 38.305805109944473 ], [ -76.226468884418935, 38.310040647569934 ], [ -76.226468884418935, 38.310040647569934 ], [ -76.243926562865255, 38.310242339837814 ], [ -76.254564835668504, 38.315082954266913 ], [ -76.25811092660291, 38.318310030552972 ], [ -76.266566989600349, 38.33948771868026 ], [ -76.26411200356884, 38.346345255788151 ], [ -76.259202031505794, 38.341706333626931 ], [ -76.259202031505794, 38.341504641359052 ], [ -76.259202031505794, 38.341504641359052 ], [ -76.258383702828638, 38.34190802589481 ], [ -76.257838150377182, 38.342109718162689 ], [ -76.238471038350781, 38.347958793931184 ], [ -76.238471038350781, 38.348362178466942 ], [ -76.238471038350781, 38.349168947538459 ], [ -76.238743814576509, 38.350177408877848 ], [ -76.239016590802237, 38.350782485681485 ], [ -76.239016590802237, 38.350782485681485 ], [ -76.239562143253679, 38.351387562485122 ], [ -76.239834919479406, 38.351790947020881 ], [ -76.24010769570512, 38.352194331556639 ], [ -76.240380471930848, 38.352597716092397 ], [ -76.247472653799676, 38.361270483611193 ], [ -76.248836534928301, 38.363085714022105 ], [ -76.249654863605457, 38.36429586762938 ], [ -76.256747045474285, 38.366716174843923 ], [ -76.257565374151454, 38.366716174843923 ], [ -76.25811092660291, 38.366716174843923 ], [ -76.273113619017721, 38.366514482576044 ], [ -76.278841919757923, 38.38285155627424 ], [ -76.278841919757923, 38.383254940809998 ], [ -76.28075135333799, 38.388700632042728 ], [ -76.281296905789446, 38.390112477917882 ], [ -76.281296905789446, 38.390314170185761 ], [ -76.281296905789446, 38.39051586245364 ], [ -76.28156968201516, 38.391524323793035 ], [ -76.282115234466602, 38.39273447740031 ], [ -76.28238801069233, 38.393137861936069 ], [ -76.280478577112262, 38.403222475330011 ], [ -76.282933563143786, 38.413508780991847 ], [ -76.290571297464055, 38.424400163457307 ], [ -76.300118465364392, 38.437913545405195 ], [ -76.301482346493003, 38.439728775816107 ], [ -76.311575066844796, 38.450216773745808 ], [ -76.311847843070524, 38.450418466013687 ], [ -76.320849458519405, 38.459898002604007 ], [ -76.331487731322639, 38.473411384551895 ], [ -76.331487731322639, 38.473411384551895 ], [ -76.331487731322639, 38.473613076819774 ], [ -76.331760507548367, 38.47441984589129 ], [ -76.332033283774081, 38.475226614962807 ], [ -76.336397703385671, 38.492168765464641 ], [ -76.327123311711063, 38.500034763911913 ], [ -76.318121696262168, 38.498219533501 ], [ -76.289480192561157, 38.503866917001616 ], [ -76.283479115595227, 38.504068609269495 ], [ -76.281842458240888, 38.502253378858583 ], [ -76.263839227343112, 38.503463532465858 ], [ -76.262202569988773, 38.504875378341012 ], [ -76.260293136408706, 38.506287224216166 ], [ -76.248018206251118, 38.52302768245012 ], [ -76.247199877573948, 38.523834451521637 ], [ -76.244472115316711, 38.536944448933767 ], [ -76.248836534928301, 38.538961371612558 ], [ -76.250200416056913, 38.539163063880437 ], [ -76.251018744734083, 38.539163063880437 ], [ -76.25374650699132, 38.539364756148316 ], [ -76.273931947694891, 38.531297065433151 ], [ -76.278023591080753, 38.532507219040426 ], [ -76.281024129563718, 38.53613767986225 ], [ -76.277478038629312, 38.541785063362866 ], [ -76.275841381274958, 38.548844292738622 ], [ -76.279660248435093, 38.557315367989546 ], [ -76.283206339369514, 38.561349213347121 ], [ -76.283751891820955, 38.561752597882879 ], [ -76.288934640109716, 38.568005058187126 ], [ -76.290025745012599, 38.5692152117944 ], [ -76.290571297464055, 38.5692152117944 ], [ -76.296572374429985, 38.570021980865917 ], [ -76.299300136687208, 38.570425365401675 ], [ -76.308301752136117, 38.571837211276829 ], [ -76.305301213653138, 38.575265979830768 ], [ -76.291935178592666, 38.581921824670772 ], [ -76.290844073689783, 38.582526901474409 ], [ -76.273386395243449, 38.591401361261084 ], [ -76.26874919940613, 38.597653821565331 ], [ -76.272568066566265, 38.602091051458672 ], [ -76.274477500146332, 38.604107974137463 ], [ -76.275023052597788, 38.604511358673221 ], [ -76.275295828823516, 38.60491474320898 ], [ -76.275295828823516, 38.60491474320898 ], [ -76.275568605049244, 38.605318127744738 ], [ -76.279660248435093, 38.609553665370193 ], [ -76.278023591080753, 38.610562126709581 ], [ -76.276659709952128, 38.611772280316856 ], [ -76.27174973788911, 38.61560443340656 ], [ -76.26411200356884, 38.615201048870802 ], [ -76.263566451117384, 38.615402741138681 ], [ -76.262748122440215, 38.616007817942318 ], [ -76.261111465085861, 38.617016279281714 ], [ -76.260293136408706, 38.617621356085351 ], [ -76.254019283217048, 38.621655201442934 ], [ -76.248018206251118, 38.62548735453263 ], [ -76.246381548896778, 38.626294123604147 ], [ -76.236561604770714, 38.62851273855081 ], [ -76.236016052319272, 38.626899200407777 ], [ -76.234924947416374, 38.624075508657477 ], [ -76.231106080256239, 38.613990895263527 ], [ -76.2294694229019, 38.613385818459889 ], [ -76.229196646676172, 38.61318412619201 ], [ -76.228923870450444, 38.61318412619201 ], [ -76.222922793484514, 38.61076381897746 ], [ -76.220740583678733, 38.609957049905951 ], [ -76.212557296907022, 38.606729973619885 ], [ -76.212284520681294, 38.606729973619885 ], [ -76.203010129006685, 38.61076381897746 ], [ -76.202464576555229, 38.612982433924131 ], [ -76.191007975074825, 38.621050124639297 ], [ -76.174914177757103, 38.62871443081869 ], [ -76.170004205694084, 38.629319507622327 ], [ -76.16018426156802, 38.62548735453263 ], [ -76.152819303473478, 38.631739814836877 ], [ -76.147091002733276, 38.636782121533855 ], [ -76.147636555184718, 38.63799227514113 ], [ -76.14818210763616, 38.639404121016277 ], [ -76.148454883861888, 38.640412582355673 ], [ -76.149000436313344, 38.641421043695068 ], [ -76.149273212539072, 38.642429505034464 ], [ -76.15254652724775, 38.650497195749622 ], [ -76.15254652724775, 38.650497195749622 ], [ -76.15254652724775, 38.650497195749622 ], [ -76.153092079699206, 38.651505657089018 ], [ -76.15336485592492, 38.652514118428414 ], [ -76.153637632150648, 38.653522579767809 ], [ -76.15418318460209, 38.654329348839326 ], [ -76.154455960827818, 38.655539502446594 ], [ -76.154728737053546, 38.655539502446594 ], [ -76.155001513279274, 38.65634627151811 ], [ -76.155001513279274, 38.65634627151811 ], [ -76.155547065730715, 38.658161501929023 ], [ -76.160457037793748, 38.661993655018719 ], [ -76.16454868117961, 38.665019039036906 ], [ -76.168913100791187, 38.668246115322972 ], [ -76.174641401531389, 38.672885037484185 ], [ -76.175186953982831, 38.673288422019944 ], [ -76.196736275815027, 38.672885037484185 ], [ -76.199736814297978, 38.671069807073273 ], [ -76.200009590523706, 38.671069807073273 ], [ -76.200282366749434, 38.670868114805394 ], [ -76.212830073132736, 38.68196118953874 ], [ -76.226468884418935, 38.698096570969057 ], [ -76.229196646676172, 38.701525339523002 ], [ -76.231378856481967, 38.704147339005424 ], [ -76.231651632707695, 38.704550723541182 ], [ -76.232197185159137, 38.70495410807694 ], [ -76.232469961384851, 38.705155800344819 ], [ -76.232469961384851, 38.705357492612698 ], [ -76.232742737610579, 38.705760877148457 ], [ -76.232742737610579, 38.705760877148457 ], [ -76.232742737610579, 38.705760877148457 ], [ -76.233015513836307, 38.705962569416336 ], [ -76.234379394964918, 38.707576107559362 ], [ -76.234379394964918, 38.707576107559362 ], [ -76.234379394964918, 38.707576107559362 ], [ -76.234924947416374, 38.708181184362999 ], [ -76.237925485899339, 38.711811645184824 ], [ -76.237925485899339, 38.711811645184824 ], [ -76.238198262125053, 38.712013337452703 ], [ -76.238198262125053, 38.712215029720582 ], [ -76.238198262125053, 38.712416721988461 ], [ -76.238743814576509, 38.712820106524219 ], [ -76.239289367027965, 38.716853951881802 ], [ -76.239562143253679, 38.717257336417561 ], [ -76.239834919479406, 38.719677643632103 ], [ -76.237107157222169, 38.724518258061195 ], [ -76.238743814576509, 38.735409640526662 ], [ -76.255110388119945, 38.736418101866057 ], [ -76.255383164345659, 38.736216409598178 ], [ -76.257292597925726, 38.734602871455152 ], [ -76.257292597925726, 38.734602871455152 ], [ -76.257565374151454, 38.734602871455152 ], [ -76.257838150377182, 38.734199486919394 ], [ -76.258656479054352, 38.733594410115757 ], [ -76.259202031505794, 38.733191025579998 ], [ -76.25974758395725, 38.73278764104424 ], [ -76.25974758395725, 38.73278764104424 ], [ -76.25974758395725, 38.732585948776361 ], [ -76.25974758395725, 38.732585948776361 ], [ -76.260020360182978, 38.732585948776361 ], [ -76.261111465085861, 38.731779179704844 ], [ -76.261929793763045, 38.731174102901207 ], [ -76.268203646954689, 38.725930103936349 ], [ -76.26874919940613, 38.725526719400591 ], [ -76.269294751857586, 38.725123334864833 ], [ -76.269567528083314, 38.724921642596954 ], [ -76.270385856760484, 38.724316565793316 ], [ -76.271204185437654, 38.716248875078165 ], [ -76.271476961663382, 38.714433644667253 ], [ -76.271476961663382, 38.713626875595736 ], [ -76.271476961663382, 38.713223491059978 ], [ -76.275023052597788, 38.71261841425634 ], [ -76.275023052597788, 38.71261841425634 ], [ -76.298481808010052, 38.718064105489077 ], [ -76.299300136687208, 38.719274259096345 ], [ -76.296572374429985, 38.723106412186041 ], [ -76.296572374429985, 38.72330810445392 ], [ -76.296026821978529, 38.724114873525437 ], [ -76.298209031784324, 38.726333488472108 ], [ -76.299300136687208, 38.727341949811503 ], [ -76.299300136687208, 38.727341949811503 ], [ -76.312666171747679, 38.730770718365449 ], [ -76.3162122626821, 38.729560564758174 ], [ -76.321667787196589, 38.7235097967218 ], [ -76.321940563422302, 38.7235097967218 ], [ -76.321940563422302, 38.72330810445392 ], [ -76.321940563422302, 38.72330810445392 ], [ -76.322758892099472, 38.72270302765029 ], [ -76.322758892099472, 38.72270302765029 ], [ -76.322758892099472, 38.72270302765029 ], [ -76.322758892099472, 38.722501335382411 ], [ -76.322758892099472, 38.722501335382411 ], [ -76.322758892099472, 38.722501335382411 ], [ -76.3230316683252, 38.722299643114532 ], [ -76.323304444550928, 38.722097950846653 ], [ -76.323577220776656, 38.721694566310894 ], [ -76.326032206808165, 38.718870874560587 ], [ -76.327123311711063, 38.717862413221198 ], [ -76.327941640388232, 38.716853951881802 ], [ -76.328214416613946, 38.716652259613923 ], [ -76.330123850194013, 38.714635336935132 ], [ -76.331487731322639, 38.713223491059978 ], [ -76.332578836225537, 38.709189645702395 ], [ -76.333124388676993, 38.706971030755724 ], [ -76.333397164902706, 38.705155800344819 ], [ -76.333669941128434, 38.704147339005424 ], [ -76.333942717354148, 38.703138877666028 ], [ -76.333942717354148, 38.702937185398149 ], [ -76.332033283774081, 38.700920262719364 ], [ -76.321940563422302, 38.689423803450261 ], [ -76.321940563422302, 38.689222111182382 ], [ -76.321940563422302, 38.688818726646623 ], [ -76.321940563422302, 38.688818726646623 ], [ -76.321940563422302, 38.688617034378744 ], [ -76.322486115873744, 38.679339190056311 ], [ -76.338579913191467, 38.672078268412669 ], [ -76.339943794320078, 38.671271499341152 ], [ -76.340216570545806, 38.671271499341152 ], [ -76.343217109028771, 38.676918882841761 ], [ -76.343217109028771, 38.676918882841761 ], [ -76.343762661480213, 38.677927344181157 ], [ -76.344308213931669, 38.678734113252673 ], [ -76.348127081091803, 38.686196727164202 ], [ -76.345126542608838, 38.703542262201786 ], [ -76.344580990157397, 38.706365953952094 ], [ -76.340489346771534, 38.73036733382969 ], [ -76.340489346771534, 38.730972410633328 ], [ -76.340489346771534, 38.732182564240603 ], [ -76.340489346771534, 38.732384256508482 ], [ -76.340762122997262, 38.73278764104424 ], [ -76.340762122997262, 38.73278764104424 ], [ -76.340762122997262, 38.732989333312119 ], [ -76.340762122997262, 38.732989333312119 ], [ -76.340762122997262, 38.733191025579998 ], [ -76.340762122997262, 38.733191025579998 ], [ -76.340762122997262, 38.734199486919394 ], [ -76.340762122997262, 38.735207948258783 ], [ -76.340762122997262, 38.735611332794541 ], [ -76.340762122997262, 38.73581302506242 ], [ -76.340762122997262, 38.736014717330299 ], [ -76.341034899222976, 38.74589763845637 ], [ -76.341034899222976, 38.746099330724249 ], [ -76.341034899222976, 38.746099330724249 ], [ -76.341307675448704, 38.751545021956979 ], [ -76.341307675448704, 38.751746714224858 ], [ -76.341307675448704, 38.751746714224858 ], [ -76.341307675448704, 38.751948406492737 ], [ -76.334488269805604, 38.772924402352146 ], [ -76.333669941128434, 38.773327786887904 ], [ -76.3298510739683, 38.775748094102454 ], [ -76.32384999700237, 38.779378554924278 ], [ -76.322758892099472, 38.780588708531553 ], [ -76.312938947973407, 38.793295321407925 ], [ -76.310756738167612, 38.795917320890354 ], [ -76.310756738167612, 38.796119013158233 ], [ -76.310756738167612, 38.796119013158233 ], [ -76.310483961941898, 38.796320705426112 ], [ -76.310211185716184, 38.796925782229749 ], [ -76.308847304587545, 38.813262855927945 ], [ -76.308301752136117, 38.814271317267341 ], [ -76.308301752136117, 38.814271317267341 ], [ -76.308028975910389, 38.814674701803099 ], [ -76.307210647233205, 38.816086547678246 ], [ -76.301755122718731, 38.824557622929163 ], [ -76.300936794041561, 38.826171161072196 ], [ -76.300936794041561, 38.826171161072196 ], [ -76.299027360461494, 38.82758300694735 ], [ -76.297936255558596, 38.828389776018867 ], [ -76.296572374429985, 38.828188083750987 ], [ -76.296572374429985, 38.828188083750987 ], [ -76.296299598204257, 38.828188083750987 ], [ -76.296299598204257, 38.828188083750987 ], [ -76.296299598204257, 38.828188083750987 ], [ -76.296299598204257, 38.828188083750987 ], [ -76.296299598204257, 38.828188083750987 ], [ -76.296026821978529, 38.828188083750987 ], [ -76.295481269527073, 38.827986391483108 ], [ -76.295481269527073, 38.827986391483108 ], [ -76.295481269527073, 38.827986391483108 ], [ -76.293571835947006, 38.827784699215229 ], [ -76.292207954818394, 38.827784699215229 ], [ -76.28838908765826, 38.827381314679471 ], [ -76.284842996723853, 38.828793160554625 ], [ -76.277750814855025, 38.831213467769167 ], [ -76.277750814855025, 38.831213467769167 ], [ -76.277478038629312, 38.831415160037047 ], [ -76.277478038629312, 38.831415160037047 ], [ -76.278023591080753, 38.835449005394622 ], [ -76.278023591080753, 38.83585238993038 ], [ -76.274477500146332, 38.844726849717063 ], [ -76.271476961663382, 38.851786079092818 ], [ -76.267112542051791, 38.851584386824939 ], [ -76.266021437148908, 38.851584386824939 ], [ -76.26411200356884, 38.851584386824939 ], [ -76.26574866092318, 38.847550541467363 ], [ -76.26574866092318, 38.847550541467363 ], [ -76.26574866092318, 38.847348849199484 ], [ -76.262202569988773, 38.842306542502513 ], [ -76.261929793763045, 38.841903157966755 ], [ -76.261657017537317, 38.841499773430996 ], [ -76.257292597925726, 38.835449005394622 ], [ -76.255655940571387, 38.833230390447959 ], [ -76.255383164345659, 38.832625313644321 ], [ -76.255383164345659, 38.832625313644321 ], [ -76.250473192282641, 38.825364392000679 ], [ -76.250200416056913, 38.825364392000679 ], [ -76.245835996445322, 38.822137315714613 ], [ -76.238743814576509, 38.819515316232184 ], [ -76.229196646676172, 38.816086547678246 ], [ -76.228105541773274, 38.815683163142488 ], [ -76.221286136130175, 38.813061163660066 ], [ -76.219376702550107, 38.812456086856429 ], [ -76.198100156943639, 38.81447300953522 ], [ -76.197554604492197, 38.815481470874609 ], [ -76.196463499589299, 38.817095009017642 ], [ -76.196463499589299, 38.817095009017642 ], [ -76.195372394686416, 38.818708547160675 ], [ -76.193462961106349, 38.821733931178855 ], [ -76.193190184880621, 38.822339007982492 ], [ -76.193190184880621, 38.82294408478613 ], [ -76.192917408654893, 38.823145777054009 ], [ -76.192917408654893, 38.823549161589767 ], [ -76.192917408654893, 38.823750853857646 ], [ -76.192644632429165, 38.823952546125525 ], [ -76.192644632429165, 38.824759315197042 ], [ -76.191007975074825, 38.829599929626141 ], [ -76.191280751300553, 38.829801621894021 ], [ -76.192917408654893, 38.833432082715838 ], [ -76.192917408654893, 38.833633774983717 ], [ -76.192917408654893, 38.833633774983717 ], [ -76.197827380717911, 38.843718388377667 ], [ -76.197827380717911, 38.843920080645546 ], [ -76.199464038072264, 38.85077761775343 ], [ -76.20082791920089, 38.855416539914643 ], [ -76.202464576555229, 38.862677461558292 ], [ -76.202191800329501, 38.864896076504955 ], [ -76.200009590523706, 38.882846688346184 ], [ -76.205192338812466, 38.892729609472255 ], [ -76.204646786361025, 38.905637914616506 ], [ -76.204101233909569, 38.916125912546207 ], [ -76.204101233909569, 38.916327604814086 ], [ -76.204101233909569, 38.917134373885602 ], [ -76.203555681458127, 38.928429140886827 ], [ -76.207647324843975, 38.931857909440765 ], [ -76.213648401809905, 38.937303600673502 ], [ -76.213921178035633, 38.937303600673502 ], [ -76.228105541773274, 38.941337446031085 ], [ -76.228378317999002, 38.941539138298964 ], [ -76.231924408933409, 38.94254759963836 ], [ -76.233833842513476, 38.942144215102601 ], [ -76.234652171190646, 38.941942522834722 ], [ -76.250200416056913, 38.938715446548656 ], [ -76.250745968508369, 38.928227448618948 ], [ -76.250745968508369, 38.928227448618948 ], [ -76.249654863605457, 38.926210525940164 ], [ -76.249382087379743, 38.925807141404405 ], [ -76.248836534928301, 38.925202064600768 ], [ -76.248836534928301, 38.925000372332889 ], [ -76.248836534928301, 38.92479868006501 ], [ -76.248563758702574, 38.924596987797131 ], [ -76.248563758702574, 38.924395295529251 ], [ -76.248018206251118, 38.923790218725614 ], [ -76.249109311154015, 38.921773296046823 ], [ -76.249382087379743, 38.921571603778943 ], [ -76.249382087379743, 38.921369911511064 ], [ -76.249654863605457, 38.920966526975306 ], [ -76.249927639831185, 38.920764834707427 ], [ -76.255928716797115, 38.918949604296515 ], [ -76.256201493022843, 38.918949604296515 ], [ -76.256474269248571, 38.918747912028635 ], [ -76.25811092660291, 38.919151296564394 ], [ -76.25811092660291, 38.919151296564394 ], [ -76.262202569988773, 38.91995806563591 ], [ -76.264657556020282, 38.924596987797131 ], [ -76.264657556020282, 38.92479868006501 ], [ -76.264930332245996, 38.930244371297739 ], [ -76.26574866092318, 38.931454524905007 ], [ -76.266294213374621, 38.932261293976524 ], [ -76.269294751857586, 38.936295139334106 ], [ -76.270931409211926, 38.938917138816535 ], [ -76.27174973788911, 38.939925600155931 ], [ -76.273113619017721, 38.941740830566843 ], [ -76.273113619017721, 38.941942522834722 ], [ -76.273386395243449, 38.941740830566843 ], [ -76.276114157500686, 38.94012729242381 ], [ -76.284297444272397, 38.93548837026259 ], [ -76.288934640109716, 38.932866370780161 ], [ -76.291116849915511, 38.931454524905007 ], [ -76.295481269527073, 38.928832525422585 ], [ -76.296026821978529, 38.928630833154706 ], [ -76.298209031784324, 38.921974988314702 ], [ -76.299300136687208, 38.918546219760756 ], [ -76.299300136687208, 38.918546219760756 ], [ -76.298481808010052, 38.917134373885602 ], [ -76.293844612172734, 38.910276836777726 ], [ -76.293844612172734, 38.910075144509847 ], [ -76.293844612172734, 38.909873452241968 ], [ -76.293844612172734, 38.909671759974088 ], [ -76.293844612172734, 38.90926837543833 ], [ -76.293571835947006, 38.905436222348627 ], [ -76.293299059721292, 38.903822684205593 ], [ -76.293299059721292, 38.903620991937714 ], [ -76.293299059721292, 38.903419299669835 ], [ -76.293299059721292, 38.903217607401956 ], [ -76.293299059721292, 38.902612530598319 ], [ -76.293299059721292, 38.902612530598319 ], [ -76.308301752136117, 38.898376992972864 ], [ -76.317848920036454, 38.911285298117114 ], [ -76.317848920036454, 38.911285298117114 ], [ -76.318394472487896, 38.911285298117114 ], [ -76.319212801165065, 38.911285298117114 ], [ -76.322758892099472, 38.911285298117114 ], [ -76.323304444550928, 38.911285298117114 ], [ -76.324122773228098, 38.911083605849242 ], [ -76.324122773228098, 38.911083605849242 ], [ -76.336124927159943, 38.906041299152264 ], [ -76.336124927159943, 38.905839606884385 ], [ -76.336943255837127, 38.901805761526802 ], [ -76.336943255837127, 38.901200684723165 ], [ -76.337216032062841, 38.900393915651648 ], [ -76.337216032062841, 38.899587146580132 ], [ -76.337488808288569, 38.898982069776501 ], [ -76.338034360740011, 38.894948224418926 ], [ -76.338034360740011, 38.894544839883167 ], [ -76.338307136965739, 38.892931301740134 ], [ -76.338579913191467, 38.892527917204376 ], [ -76.338034360740011, 38.891317763597101 ], [ -76.336943255837127, 38.88930084091831 ], [ -76.336670479611399, 38.888494071846793 ], [ -76.336397703385671, 38.888090687311035 ], [ -76.335579374708502, 38.886678841435881 ], [ -76.335306598482774, 38.886073764632243 ], [ -76.335306598482774, 38.885872072364364 ], [ -76.333669941128434, 38.878207766184971 ], [ -76.333124388676993, 38.875384074434663 ], [ -76.333124388676993, 38.875182382166784 ], [ -76.332578836225537, 38.872358690416476 ], [ -76.331214955096925, 38.864694384237076 ], [ -76.330942178871197, 38.864290999701318 ], [ -76.333942717354148, 38.860257154343742 ], [ -76.338034360740011, 38.857635154861313 ], [ -76.338034360740011, 38.857433462593434 ], [ -76.33967101809435, 38.856425001254038 ], [ -76.340489346771534, 38.855819924450401 ], [ -76.348945409768973, 38.857231770325555 ], [ -76.350309290897599, 38.857433462593434 ], [ -76.356310367863514, 38.854408078575247 ], [ -76.359856458797935, 38.852592848164335 ], [ -76.360129235023649, 38.852592848164335 ], [ -76.361220339926547, 38.851987771360697 ], [ -76.361220339926547, 38.851584386824939 ], [ -76.366403088215293, 38.839886235287963 ], [ -76.368039745569646, 38.836255774466139 ], [ -76.36831252179536, 38.83605408219826 ], [ -76.36831252179536, 38.836255774466139 ], [ -76.372676941406951, 38.83827269714493 ], [ -76.373222493858407, 38.838474389412809 ], [ -76.375131927438474, 38.839482850752205 ], [ -76.375131927438474, 38.839886235287963 ], [ -76.375404703664188, 38.841701465698875 ], [ -76.375404703664188, 38.84291161930615 ], [ -76.37595025611563, 38.848760695074638 ], [ -76.376223032341358, 38.850374233217671 ], [ -76.376223032341358, 38.85057592548555 ], [ -76.37595025611563, 38.851181002289181 ], [ -76.372676941406951, 38.857836847129192 ], [ -76.367494193118205, 38.867921460523135 ], [ -76.367221416892477, 38.868324845058893 ], [ -76.364766430860954, 38.87377053629163 ], [ -76.365311983312409, 38.892527917204376 ], [ -76.365311983312409, 38.898175300704985 ], [ -76.365584759538137, 38.907453145027418 ], [ -76.365039207086681, 38.911688682652873 ], [ -76.364766430860954, 38.914512374403181 ], [ -76.364493654635226, 38.916730989349844 ], [ -76.362038668603716, 38.936496831601985 ], [ -76.361765892378003, 38.939118831084414 ], [ -76.359583682572207, 38.943959445513507 ], [ -76.357947025217868, 38.947791598603203 ], [ -76.35767424899214, 38.948194983138961 ], [ -76.354946486734889, 38.954649135711094 ], [ -76.353855381832005, 38.957271135193523 ], [ -76.35167317202621, 38.960296519211703 ], [ -76.343762661480213, 38.97098620940929 ], [ -76.333669941128434, 38.984701283625057 ], [ -76.331214955096925, 38.987928359911123 ], [ -76.323304444550928, 38.998819742376583 ], [ -76.322758892099472, 38.999626511448099 ], [ -76.32221333964803, 39.005475587216594 ], [ -76.32221333964803, 39.006282356288111 ], [ -76.323577220776656, 39.008904355770532 ], [ -76.322486115873744, 39.013139893395987 ], [ -76.320303906067963, 39.023022814522065 ], [ -76.320303906067963, 39.023022814522065 ], [ -76.320303906067963, 39.023022814522065 ], [ -76.311847843070524, 39.035326042862678 ], [ -76.302027898944459, 39.039561580488133 ], [ -76.301755122718731, 39.039561580488133 ], [ -76.301755122718731, 39.037746350077228 ], [ -76.301482346493003, 39.036334504202074 ], [ -76.300936794041561, 39.031897274308733 ], [ -76.300936794041561, 39.031695582040854 ], [ -76.300936794041561, 39.031695582040854 ], [ -76.302846227621629, 39.025846506272366 ], [ -76.302573451395915, 39.025443121736608 ], [ -76.294117388398462, 39.004265433609319 ], [ -76.293844612172734, 39.003862049073561 ], [ -76.291935178592666, 39.001240049591132 ], [ -76.289207416335444, 38.998012973305066 ], [ -76.286479654078192, 38.994180820215369 ], [ -76.284842996723853, 38.992163897536578 ], [ -76.283206339369514, 38.989945282589915 ], [ -76.280478577112262, 38.98631482176809 ], [ -76.278023591080753, 38.983289437749903 ], [ -76.277478038629312, 38.982482668678387 ], [ -76.277478038629312, 38.982482668678387 ], [ -76.275841381274958, 38.982684360946266 ], [ -76.25892925528008, 38.983692822285661 ], [ -76.258656479054352, 38.983692822285661 ], [ -76.24610877267105, 38.981070822803233 ], [ -76.243653786639541, 38.980465745999595 ], [ -76.230014975353342, 38.977642054249294 ], [ -76.229196646676172, 38.977642054249294 ], [ -76.228651094224716, 38.977238669713536 ], [ -76.218831150098666, 38.970582824873532 ], [ -76.218831150098666, 38.970582824873532 ], [ -76.202464576555229, 38.973003132088081 ], [ -76.202191800329501, 38.97320482435596 ], [ -76.187189107914691, 38.983491130017782 ], [ -76.182551912077372, 38.986718206303848 ], [ -76.180642478497305, 38.988130052179002 ], [ -76.168367548339745, 38.996601127429912 ], [ -76.164003128728154, 38.999626511448099 ], [ -76.164003128728154, 38.999626511448099 ], [ -76.164003128728154, 38.999626511448099 ], [ -76.164003128728154, 39.000433280519616 ], [ -76.164003128728154, 39.002046818662649 ], [ -76.163730352502427, 39.010114509377807 ], [ -76.167549219662561, 39.018182200092966 ], [ -76.173277520402763, 39.025644814004487 ], [ -76.174641401531389, 39.027056659879641 ], [ -76.177914716240082, 39.031090505237216 ], [ -76.17818749246581, 39.031493889772975 ], [ -76.17818749246581, 39.031695582040854 ], [ -76.184188569431726, 39.046217425328138 ], [ -76.179551373594421, 39.052873270168149 ], [ -76.177096387562898, 39.056302038722087 ], [ -76.175186953982831, 39.058722345936637 ], [ -76.169185877016901, 39.062756191294213 ], [ -76.159093156665122, 39.065579883044521 ], [ -76.156638170633613, 39.069412036134224 ], [ -76.15336485592492, 39.074656035099075 ], [ -76.150637093667683, 39.079496649528167 ], [ -76.145181569153209, 39.092808339208176 ], [ -76.158002051762224, 39.094018492815451 ], [ -76.167276443436833, 39.094825261886967 ], [ -76.169185877016901, 39.095026954154847 ], [ -76.169458653242629, 39.095026954154847 ], [ -76.170004205694084, 39.095026954154847 ], [ -76.183915793206012, 39.09643880003 ], [ -76.189916870171928, 39.093010031476055 ], [ -76.19482684223496, 39.090388031993633 ], [ -76.203282905232399, 39.08574910983242 ], [ -76.203282905232399, 39.085547417564541 ], [ -76.203555681458127, 39.085144033028783 ], [ -76.205192338812466, 39.080101726331804 ], [ -76.207647324843975, 39.072235727884525 ], [ -76.210102310875499, 39.064369729437246 ], [ -76.210375087101227, 39.062554499026334 ], [ -76.210920639552668, 39.056907115525725 ], [ -76.211738968229838, 39.048234348006929 ], [ -76.212557296907022, 39.041578503166924 ], [ -76.212557296907022, 39.041376810899045 ], [ -76.212557296907022, 39.041175118631166 ], [ -76.212011744455566, 39.038956503684503 ], [ -76.21146619200411, 39.037141273273591 ], [ -76.210375087101227, 39.032704043380249 ], [ -76.209829534649771, 39.030082043897821 ], [ -76.209556758424043, 39.028871890290546 ], [ -76.208465653521159, 39.02483804493297 ], [ -76.208465653521159, 39.024636352665091 ], [ -76.20682899616682, 39.022619429986307 ], [ -76.20682899616682, 39.022619429986307 ], [ -76.206010667489636, 39.021409276379032 ], [ -76.200555142975162, 39.014551739271141 ], [ -76.201100695426618, 39.014350047003262 ], [ -76.202191800329501, 39.013744970199625 ], [ -76.209011205972601, 39.009912817109928 ], [ -76.209283982198329, 39.010114509377807 ], [ -76.216921716518598, 39.012938201128108 ], [ -76.221013359904447, 39.014551739271141 ], [ -76.223741122161698, 39.015560200610537 ], [ -76.231651632707695, 39.018585584628724 ], [ -76.24010769570512, 39.026653275343882 ], [ -76.242017129285188, 39.028266813486908 ], [ -76.242562681736644, 39.028871890290546 ], [ -76.240926024382304, 39.039763272756012 ], [ -76.239562143253679, 39.041981887702683 ], [ -76.237379933447897, 39.044805579452984 ], [ -76.237107157222169, 39.0456123485245 ], [ -76.231106080256239, 39.060739268615421 ], [ -76.231106080256239, 39.0609409608833 ], [ -76.231378856481967, 39.071630651080888 ], [ -76.231651632707695, 39.082925418082112 ], [ -76.233561066287763, 39.091396493333029 ], [ -76.240653248156576, 39.106926797959709 ], [ -76.245017667768167, 39.116406334550021 ], [ -76.25292817831415, 39.133550177319734 ], [ -76.25292817831415, 39.133550177319734 ], [ -76.260293136408706, 39.142626329374281 ], [ -76.260838688860147, 39.143433098445797 ], [ -76.264384779794554, 39.143836482981555 ], [ -76.266566989600349, 39.144239867517314 ], [ -76.268203646954689, 39.144441559785193 ], [ -76.275023052597788, 39.145248328856709 ], [ -76.276659709952128, 39.145450021124589 ], [ -76.278569143532195, 39.145853405660347 ], [ -76.276932486177856, 39.154526173179143 ], [ -76.275568605049244, 39.160375248947631 ], [ -76.27475027637206, 39.165014171108851 ], [ -76.27475027637206, 39.165417555644609 ], [ -76.274204723920619, 39.166022632448247 ], [ -76.269567528083314, 39.175098784502794 ], [ -76.26874919940613, 39.176712322645827 ], [ -76.266839765826063, 39.179939398931893 ], [ -76.266566989600349, 39.18054447573553 ], [ -76.255928716797115, 39.191637550468869 ], [ -76.251018744734083, 39.199301856648276 ], [ -76.248836534928301, 39.203335702005852 ], [ -76.232742737610579, 39.232379388580419 ], [ -76.231924408933409, 39.233387849919815 ], [ -76.226196108193207, 39.246497847331952 ], [ -76.220467807453005, 39.259406152476203 ], [ -76.219376702550107, 39.262028151958631 ], [ -76.219376702550107, 39.262028151958631 ], [ -76.218285597647224, 39.263036613298027 ], [ -76.21746726897004, 39.263843382369544 ], [ -76.211193415778396, 39.269692458138024 ], [ -76.211193415778396, 39.269894150405904 ], [ -76.211193415778396, 39.269894150405904 ], [ -76.210647863326955, 39.269894150405904 ], [ -76.203010129006685, 39.269894150405904 ], [ -76.202464576555229, 39.270297534941662 ], [ -76.192917408654893, 39.278768610192586 ], [ -76.191280751300553, 39.280382148335612 ], [ -76.189916870171928, 39.281592301942887 ], [ -76.185825226786079, 39.285222762764704 ], [ -76.185552450560351, 39.285424455032583 ], [ -76.181460807174489, 39.291878607604716 ], [ -76.181460807174489, 39.291878607604716 ], [ -76.177641940014354, 39.298736144712599 ], [ -76.177641940014354, 39.298736144712599 ], [ -76.177096387562898, 39.303173374605933 ], [ -76.17682361133717, 39.30619875862412 ], [ -76.17682361133717, 39.306400450891999 ], [ -76.17682361133717, 39.306602143159878 ], [ -76.179005821142965, 39.309829219445945 ], [ -76.179005821142965, 39.310030911713824 ], [ -76.186098003011793, 39.312451218928366 ], [ -76.186643555463235, 39.315476602946553 ], [ -76.186643555463235, 39.315476602946553 ], [ -76.186098003011793, 39.317896910161096 ], [ -76.185552450560351, 39.31930875603625 ], [ -76.185552450560351, 39.31930875603625 ], [ -76.170549758145526, 39.332015368912629 ], [ -76.170549758145526, 39.332015368912629 ], [ -76.170549758145526, 39.332015368912629 ], [ -76.169458653242629, 39.33241875344838 ], [ -76.168367548339745, 39.332822137984138 ], [ -76.159638709116564, 39.335847522002325 ], [ -76.157183723085055, 39.335645829734446 ], [ -76.152819303473478, 39.335242445198688 ], [ -76.145454345378937, 39.334435676127171 ], [ -76.133179415221349, 39.340486444163545 ], [ -76.135088848801416, 39.342503366842337 ], [ -76.136998282381484, 39.344318597253242 ], [ -76.134816072575688, 39.350974442093246 ], [ -76.12990610051267, 39.353798133843554 ], [ -76.116812841677927, 39.360655670951438 ], [ -76.116267289226471, 39.360857363219317 ], [ -76.115994513000743, 39.361664132290834 ], [ -76.113266750743506, 39.367109823523563 ], [ -76.110538988486269, 39.372152130220542 ], [ -76.110538988486269, 39.372353822488421 ], [ -76.108902331131929, 39.372152130220542 ], [ -76.108356778680474, 39.372152130220542 ], [ -76.075078079142159, 39.371345361149025 ], [ -76.065803687467536, 39.371143668881146 ], [ -76.065803687467536, 39.371143668881146 ], [ -76.061439267855974, 39.370941976613267 ], [ -76.059257058050179, 39.370941976613267 ], [ -76.058711505598723, 39.370941976613267 ], [ -76.057893176921553, 39.370941976613267 ], [ -76.054074309761418, 39.370740284345388 ], [ -76.049709890149842, 39.370740284345388 ], [ -76.03279776415495, 39.367513208059322 ], [ -76.031706659252052, 39.366706438987805 ], [ -76.030070001897712, 39.365899669916288 ], [ -76.022977820028899, 39.361865824558713 ], [ -76.019158952868764, 39.362874285898108 ], [ -76.006611246485448, 39.366303054452047 ], [ -76.0025196030996, 39.367513208059322 ], [ -76.0025196030996, 39.376387667845997 ], [ -76.0025196030996, 39.384858743096913 ], [ -76.0025196030996, 39.385060435364792 ], [ -76.006884022711176, 39.385262127632672 ], [ -76.022432267577443, 39.38566551216843 ], [ -76.035525526412187, 39.386270588972067 ], [ -76.035525526412187, 39.386270588972067 ], [ -76.035525526412187, 39.386270588972067 ], [ -76.039344393572321, 39.3878841271151 ], [ -76.039889946023777, 39.388085819382979 ], [ -76.039889946023777, 39.388287511650859 ], [ -76.040981050926661, 39.393531510615709 ], [ -76.040981050926661, 39.394136587419347 ], [ -76.040708274700947, 39.394741664222984 ], [ -76.035252750186459, 39.401599201330868 ], [ -76.034979973960745, 39.402002585866626 ], [ -76.034707197735017, 39.402002585866626 ], [ -76.018613400417308, 39.407649969367242 ], [ -76.018067847965852, 39.407851661635121 ], [ -76.016431190611513, 39.408456738438751 ], [ -76.015885638160071, 39.408860122974509 ], [ -76.012612323451378, 39.410877045653301 ], [ -76.009611784968428, 39.412692276064206 ], [ -76.006884022711176, 39.414507506475118 ], [ -76.002792379325314, 39.42116335131513 ], [ -75.998700735939465, 39.428424272958765 ], [ -75.99733685481084, 39.430239503369677 ], [ -75.996791302359398, 39.430642887905435 ], [ -75.992699658973535, 39.43185304151271 ], [ -75.992426882747822, 39.432054733780589 ], [ -75.988880791813401, 39.433264887387864 ], [ -75.982606938621757, 39.435281810066655 ], [ -75.977696966558725, 39.442946116246056 ], [ -75.976878637881555, 39.444559654389082 ], [ -75.976605861655827, 39.445769807996356 ], [ -75.976605861655827, 39.447786730675148 ], [ -75.989971896716298, 39.458678113140614 ], [ -75.990244672942026, 39.458678113140614 ], [ -75.991881330296366, 39.458274728604856 ], [ -75.994336316327889, 39.457871344069098 ], [ -75.998155183488024, 39.45726626726546 ], [ -76.0025196030996, 39.450207037889697 ], [ -76.0025196030996, 39.450207037889697 ], [ -76.0025196030996, 39.450207037889697 ], [ -76.009066232516972, 39.449198576550302 ], [ -76.0093390087427, 39.449198576550302 ], [ -76.009611784968428, 39.449400268818181 ], [ -76.011793994774209, 39.452425652836368 ], [ -76.01233954722565, 39.453030729640005 ], [ -76.011793994774209, 39.45424088324728 ], [ -76.009884561194141, 39.45726626726546 ], [ -76.002792379325314, 39.469569495606081 ], [ -75.99651852613367, 39.476628724981836 ], [ -75.995154645005044, 39.483082877553969 ], [ -75.994063540102161, 39.488730261054577 ], [ -75.993517987650705, 39.49054549146549 ], [ -75.986425805781892, 39.510311333717624 ], [ -75.985334700878994, 39.512126564128536 ], [ -75.985334700878994, 39.512328256396415 ], [ -75.980151952590234, 39.521807792986728 ], [ -75.976060309204371, 39.529875483701886 ], [ -75.976060309204371, 39.529875483701886 ], [ -75.975241980527215, 39.530682252773403 ], [ -75.973605323172862, 39.532295790916436 ], [ -75.96705869375549, 39.538749943488561 ], [ -75.96705869375549, 39.538749943488561 ], [ -75.96705869375549, 39.544599019257049 ], [ -75.96705869375549, 39.548027787810994 ], [ -75.96705869375549, 39.548632864614632 ], [ -75.967331469981218, 39.550044710489786 ], [ -75.970332008464169, 39.557709016669179 ], [ -75.992699658973535, 39.563154707901916 ], [ -75.999791840842363, 39.560532708419487 ], [ -76.000064617068091, 39.55972593934797 ], [ -76.001155721970974, 39.558112401204937 ], [ -76.002792379325314, 39.555692093990395 ], [ -76.00333793177677, 39.554683632650999 ], [ -76.004156260453939, 39.553675171311603 ], [ -76.006338470259735, 39.550448095025544 ], [ -76.006338470259735, 39.550448095025544 ], [ -76.006338470259735, 39.550448095025544 ], [ -76.03034277812344, 39.548834556882511 ], [ -76.046982127892591, 39.547624403275236 ], [ -76.063348701436041, 39.546615941935841 ], [ -76.063894253887469, 39.546615941935841 ], [ -76.075623631593601, 39.542985481114016 ], [ -76.0960818485229, 39.536934713077649 ], [ -76.102901254165999, 39.52362302339764 ], [ -76.105629016423237, 39.518580716700669 ], [ -76.105629016423237, 39.518379024432789 ], [ -76.106174568874678, 39.517370563093394 ], [ -76.106992897551862, 39.515555332682482 ], [ -76.111630093389167, 39.507084257431565 ], [ -76.116812841677927, 39.496797951769736 ], [ -76.117358394129369, 39.495991182698219 ], [ -76.114630631872132, 39.488528568786698 ], [ -76.113812303194948, 39.486713338375793 ], [ -76.108902331131929, 39.482276108482452 ], [ -76.104537911520339, 39.478847339928507 ], [ -76.100173491908762, 39.476830417249715 ], [ -76.099627939457321, 39.476628724981836 ], [ -76.098264058328695, 39.476023648178206 ], [ -76.08326136591387, 39.477838878589111 ], [ -76.082988589688142, 39.477838878589111 ], [ -76.081624708559531, 39.477435494053353 ], [ -76.073168645562092, 39.475418571374568 ], [ -76.072350316884922, 39.475216879106689 ], [ -76.072077540659194, 39.47501518683881 ], [ -76.071804764433466, 39.474813494570931 ], [ -76.069895330853399, 39.470577956945476 ], [ -76.063894253887469, 39.458274728604856 ], [ -76.062257596533129, 39.455047652318797 ], [ -76.060893715404518, 39.452223960568489 ], [ -76.060893715404518, 39.451215499229093 ], [ -76.060893715404518, 39.447786730675148 ], [ -76.060893715404518, 39.447786730675148 ], [ -76.081079156108075, 39.436693655941809 ], [ -76.081351932333803, 39.436895348209688 ], [ -76.08326136591387, 39.438307194084842 ], [ -76.083534142139598, 39.438307194084842 ], [ -76.093626862491391, 39.436895348209688 ], [ -76.102355701714544, 39.435685194602414 ], [ -76.112721198292064, 39.429836118833919 ], [ -76.115176184323573, 39.428625965226644 ], [ -76.116812841677927, 39.427617503887255 ], [ -76.117085617903641, 39.427214119351497 ], [ -76.120904485063775, 39.422373504922405 ], [ -76.121722813740945, 39.421365043583009 ], [ -76.121995589966673, 39.42116335131513 ], [ -76.132088310318466, 39.414507506475118 ], [ -76.142181030670244, 39.408053353903 ], [ -76.146272674056092, 39.405229662152692 ], [ -76.147091002733276, 39.405431354420571 ], [ -76.150364317441955, 39.40563304668845 ], [ -76.150637093667683, 39.40563304668845 ], [ -76.150909869893411, 39.40563304668845 ], [ -76.152000974796294, 39.405834738956329 ], [ -76.152000974796294, 39.405834738956329 ], [ -76.152273751022022, 39.405834738956329 ], [ -76.157183723085055, 39.406238123492088 ], [ -76.15854760421368, 39.406238123492088 ], [ -76.158820380439408, 39.406238123492088 ], [ -76.15936593289085, 39.40563304668845 ], [ -76.171095310596968, 39.392523049276313 ], [ -76.171368086822696, 39.392119664740562 ], [ -76.171640863048424, 39.391716280204804 ], [ -76.175186953982831, 39.386068896704188 ], [ -76.175732506434287, 39.385262127632672 ], [ -76.176005282660014, 39.384657050829034 ], [ -76.180096926045877, 39.377597821453271 ], [ -76.180096926045877, 39.377597821453271 ], [ -76.199464038072264, 39.366303054452047 ], [ -76.202464576555229, 39.364487824041134 ], [ -76.227014436870377, 39.349965980753851 ], [ -76.227559989321833, 39.35016767302173 ], [ -76.229742199127628, 39.350772749825367 ], [ -76.233833842513476, 39.351982903432642 ], [ -76.234652171190646, 39.353596441575675 ], [ -76.234652171190646, 39.353596441575675 ], [ -76.235743276093544, 39.355209979718708 ], [ -76.236561604770714, 39.356218441058104 ], [ -76.237925485899339, 39.358437056004774 ], [ -76.239834919479406, 39.361462440022954 ], [ -76.241198800608032, 39.361664132290834 ], [ -76.243381010413813, 39.361865824558713 ], [ -76.244472115316711, 39.361664132290834 ], [ -76.245017667768167, 39.361664132290834 ], [ -76.245290443993881, 39.361664132290834 ], [ -76.250200416056913, 39.361260747755075 ], [ -76.250473192282641, 39.361059055487196 ], [ -76.266294213374621, 39.353394749307796 ], [ -76.265203108471724, 39.349965980753851 ], [ -76.263020898665928, 39.348554134878697 ], [ -76.258383702828638, 39.345730443128396 ], [ -76.258383702828638, 39.345730443128396 ], [ -76.254019283217048, 39.336855983341721 ], [ -76.261929793763045, 39.33463736839505 ], [ -76.262475346214487, 39.33463736839505 ], [ -76.263020898665928, 39.334435676127171 ], [ -76.263566451117384, 39.334233983859292 ], [ -76.263566451117384, 39.334233983859292 ], [ -76.26574866092318, 39.33241875344838 ], [ -76.26574866092318, 39.332217061180501 ], [ -76.266021437148908, 39.332015368912629 ], [ -76.266294213374621, 39.331813676644749 ], [ -76.266294213374621, 39.331813676644749 ], [ -76.272568066566265, 39.325964600876262 ], [ -76.276114157500686, 39.322939216858074 ], [ -76.277750814855025, 39.318703679232613 ], [ -76.277750814855025, 39.318703679232613 ], [ -76.278296367306467, 39.317695217893217 ], [ -76.278296367306467, 39.317493525625338 ], [ -76.278569143532195, 39.317090141089579 ], [ -76.280478577112262, 39.312047834392615 ], [ -76.28075135333799, 39.311644449856857 ], [ -76.281024129563718, 39.308013989035032 ], [ -76.281296905789446, 39.304585220481087 ], [ -76.281296905789446, 39.30377845140957 ], [ -76.28156968201516, 39.302366605534417 ], [ -76.28156968201516, 39.302164913266537 ], [ -76.28156968201516, 39.302164913266537 ], [ -76.296572374429985, 39.302366605534417 ], [ -76.297936255558596, 39.302366605534417 ], [ -76.291116849915511, 39.318098602428975 ], [ -76.29875458423578, 39.329191677162321 ], [ -76.29875458423578, 39.334032291591413 ], [ -76.29875458423578, 39.339276290556271 ], [ -76.29875458423578, 39.340284751895666 ], [ -76.297663479332869, 39.342301674574458 ], [ -76.295481269527073, 39.345730443128396 ], [ -76.294935717075646, 39.346537212199912 ], [ -76.295754045752801, 39.349965980753851 ], [ -76.301755122718731, 39.352184595700521 ], [ -76.310483961941898, 39.355411671986587 ], [ -76.310756738167612, 39.355411671986587 ], [ -76.311302290619068, 39.355613364254467 ], [ -76.311575066844796, 39.355815056522346 ], [ -76.312666171747679, 39.356016748790225 ], [ -76.312938947973407, 39.356016748790225 ], [ -76.314302829102033, 39.356218441058104 ], [ -76.322758892099472, 39.357025210129621 ], [ -76.323577220776656, 39.3572269023975 ], [ -76.330123850194013, 39.356218441058104 ], [ -76.341307675448704, 39.354201518379313 ], [ -76.339943794320078, 39.35016767302173 ], [ -76.335306598482774, 39.337864444681117 ], [ -76.334488269805604, 39.335242445198688 ], [ -76.333942717354148, 39.334233983859292 ], [ -76.333942717354148, 39.334032291591413 ], [ -76.338852689417195, 39.325762908608382 ], [ -76.33967101809435, 39.324754447268987 ], [ -76.333942717354148, 39.319510448304129 ], [ -76.327668864162504, 39.314064757071399 ], [ -76.337761584514283, 39.305795374088362 ], [ -76.339943794320078, 39.304181835945329 ], [ -76.341307675448704, 39.302971682338054 ], [ -76.353309829380549, 39.310635988517461 ], [ -76.354946486734889, 39.311644449856857 ], [ -76.355492039186345, 39.312249526660487 ], [ -76.364493654635226, 39.311846142124736 ], [ -76.365584759538137, 39.311039373053219 ], [ -76.380587451952948, 39.299139529248357 ], [ -76.380860228178676, 39.298736144712599 ], [ -76.383042437984457, 39.2862312241041 ], [ -76.383315214210185, 39.284415993693187 ], [ -76.383860766661627, 39.281390609675007 ], [ -76.384951871564525, 39.275944918442278 ], [ -76.385224647790253, 39.275743226174399 ], [ -76.395044591916303, 39.269289073602266 ], [ -76.395317368142031, 39.269087381334387 ], [ -76.400227340205063, 39.261826459690752 ], [ -76.400227340205063, 39.261624767422873 ], [ -76.401045668882233, 39.260212921547719 ], [ -76.402136773785145, 39.258801075672565 ], [ -76.402409550010859, 39.258397691136807 ], [ -76.401863997559417, 39.257994306601049 ], [ -76.386861305144592, 39.249119846814374 ], [ -76.381405780630118, 39.249523231350132 ], [ -76.382224109307288, 39.247304616403468 ], [ -76.384406319113083, 39.242665694242248 ], [ -76.384679095338811, 39.24226230970649 ], [ -76.389316291176101, 39.235404772598606 ], [ -76.389589067401829, 39.235203080330727 ], [ -76.393680710787692, 39.231976004044661 ], [ -76.394499039464861, 39.231370927241031 ], [ -76.398317906624996, 39.229354004562239 ], [ -76.399136235302166, 39.228950620026481 ], [ -76.417685018651397, 39.21987446797192 ], [ -76.417685018651397, 39.21987446797192 ], [ -76.418230571102839, 39.218664314364652 ], [ -76.419321676005751, 39.217050776221619 ], [ -76.425322752971667, 39.205756009220394 ], [ -76.425322752971667, 39.205554316952515 ], [ -76.441416550289375, 39.19607478036221 ], [ -76.442507655192273, 39.195469703558572 ], [ -76.447690403481033, 39.197890010773122 ], [ -76.461601990992946, 39.204949240148878 ], [ -76.462693095895844, 39.205554316952515 ], [ -76.463511424573014, 39.205957701488273 ], [ -76.471149158893283, 39.205554316952515 ], [ -76.480150774342178, 39.205150932416757 ], [ -76.482060207922245, 39.20434416334524 ], [ -76.485606298856652, 39.203335702005852 ], [ -76.486424627533822, 39.203134009737973 ], [ -76.488879613565331, 39.202125548398577 ], [ -76.489425166016787, 39.202327240666456 ], [ -76.489697942242515, 39.202528932934335 ], [ -76.490789047145398, 39.202730625202214 ], [ -76.497881229014226, 39.204747547880999 ], [ -76.498426781465668, 39.204747547880999 ], [ -76.500063438820021, 39.207772931899186 ], [ -76.500881767497191, 39.20918477777434 ], [ -76.500881767497191, 39.209386470042219 ], [ -76.519703327072136, 39.222899851990107 ], [ -76.52052165574932, 39.223504928793744 ], [ -76.521067208200762, 39.223303236525865 ], [ -76.528704942521031, 39.217454160757377 ], [ -76.529523271198201, 39.216647391685861 ], [ -76.53416046703552, 39.213218623131922 ], [ -76.534978795712675, 39.212210161792527 ], [ -76.535797124389859, 39.211000008185252 ], [ -76.533069362132608, 39.207571239631307 ], [ -76.533069362132608, 39.207571239631307 ], [ -76.533342138358336, 39.207167855095548 ], [ -76.534706019486947, 39.204747547880999 ], [ -76.535251571938403, 39.20373908654161 ], [ -76.53416046703552, 39.190629089129473 ], [ -76.525704404038066, 39.177922476253102 ], [ -76.525431627812338, 39.177720783985222 ], [ -76.52515885158661, 39.177519091717343 ], [ -76.524340522909455, 39.177115707181585 ], [ -76.520248879523592, 39.175300476770673 ], [ -76.519157774620695, 39.174695399967035 ], [ -76.511792816526139, 39.171064939145218 ], [ -76.50851950181746, 39.169451401002185 ], [ -76.500881767497191, 39.161383710287026 ], [ -76.500608991271463, 39.161383710287026 ], [ -76.483969641502313, 39.164409094305213 ], [ -76.483969641502313, 39.164409094305213 ], [ -76.476059130956315, 39.161182018019147 ], [ -76.474695249827704, 39.159366787608235 ], [ -76.47387692115052, 39.157954941733081 ], [ -76.471421935119011, 39.154727865447022 ], [ -76.468966949087502, 39.153114327303989 ], [ -76.459147004961437, 39.147265251535501 ], [ -76.458874228735709, 39.147063559267622 ], [ -76.458601452509981, 39.147063559267622 ], [ -76.458328676284253, 39.146861866999743 ], [ -76.45805590005854, 39.146660174731863 ], [ -76.452873151769779, 39.143433098445797 ], [ -76.440052669160764, 39.13738233040943 ], [ -76.431051053711869, 39.132743408248217 ], [ -76.430232725034699, 39.132340023712459 ], [ -76.42859606768036, 39.131734946908821 ], [ -76.432414934840494, 39.126692640211843 ], [ -76.432687711066222, 39.120843564443355 ], [ -76.432960487291936, 39.113179258263955 ], [ -76.432960487291936, 39.113179258263955 ], [ -76.427232186551734, 39.09664049229788 ], [ -76.42695941032602, 39.096237107762121 ], [ -76.426413857874564, 39.094623569619088 ], [ -76.426413857874564, 39.094018492815451 ], [ -76.426141081648836, 39.094018492815451 ], [ -76.423686095617313, 39.086354186636058 ], [ -76.423413319391599, 39.085547417564541 ], [ -76.423140543165886, 39.085547417564541 ], [ -76.42259499071443, 39.083933879421508 ], [ -76.422322214488702, 39.082522033546354 ], [ -76.422049438262974, 39.082118649010596 ], [ -76.421776662037246, 39.081513572206958 ], [ -76.423140543165886, 39.074252650563317 ], [ -76.432414934840494, 39.061747729954817 ], [ -76.438961564257866, 39.052873270168149 ], [ -76.438961564257866, 39.052873270168149 ], [ -76.437052130677799, 39.051663116560874 ], [ -76.422867766940158, 39.043595425845709 ], [ -76.407319522073891, 39.034519273791162 ], [ -76.407319522073891, 39.034519273791162 ], [ -76.407319522073891, 39.034519273791162 ], [ -76.405410088493824, 39.033309120183887 ], [ -76.405137312268096, 39.033309120183887 ], [ -76.405137312268096, 39.033107427916008 ], [ -76.402682326236572, 39.029678659362062 ], [ -76.397772354173554, 39.022619429986307 ], [ -76.397772354173554, 39.022417737718428 ], [ -76.396408473044929, 39.018383892360845 ], [ -76.396408473044929, 39.018383892360845 ], [ -76.395590144367759, 39.016165277414174 ], [ -76.395317368142031, 39.015156816074779 ], [ -76.394771815690589, 39.013139893395987 ], [ -76.394226263239148, 39.012131432056592 ], [ -76.39395348701342, 39.011324662985082 ], [ -76.412229494136909, 38.996802819697791 ], [ -76.414684480168432, 38.994987589286886 ], [ -76.421503885811532, 38.989541898054156 ], [ -76.422049438262974, 38.988936821250519 ], [ -76.427232186551734, 38.987726667643244 ], [ -76.449054284609645, 38.982886053214145 ], [ -76.449054284609645, 38.982886053214145 ], [ -76.449054284609645, 38.982079284142628 ], [ -76.450145389512542, 38.97865051558869 ], [ -76.45041816573827, 38.977642054249294 ], [ -76.451509270641168, 38.976835285177778 ], [ -76.454509809124119, 38.974414977963235 ], [ -76.474149697376248, 38.972599747552323 ], [ -76.474149697376248, 38.972599747552323 ], [ -76.474422473601976, 38.970582824873532 ], [ -76.474968026053418, 38.967355748587465 ], [ -76.474695249827704, 38.966952364051707 ], [ -76.473331368699078, 38.962313441890494 ], [ -76.471149158893283, 38.956464366122006 ], [ -76.462965872121572, 38.94859836767472 ], [ -76.460238109864321, 38.94859836767472 ], [ -76.457783123832812, 38.94839667540684 ], [ -76.45723757138137, 38.947791598603203 ], [ -76.451782046866896, 38.94254759963836 ], [ -76.450145389512542, 38.941135753763206 ], [ -76.450690941963984, 38.940328984691689 ], [ -76.461874767218674, 38.923991910993493 ], [ -76.461874767218674, 38.923588526457735 ], [ -76.460238109864321, 38.91995806563591 ], [ -76.458874228735709, 38.916730989349844 ], [ -76.458874228735709, 38.916125912546207 ], [ -76.45805590005854, 38.914310682135302 ], [ -76.459419781187165, 38.90704976049166 ], [ -76.460238109864321, 38.907251452759539 ], [ -76.460783662315777, 38.907251452759539 ], [ -76.462420319670116, 38.907251452759539 ], [ -76.465148081927367, 38.907453145027418 ], [ -76.469512501538944, 38.907654837295297 ], [ -76.469512501538944, 38.911486990384994 ], [ -76.475786354730587, 38.914512374403181 ], [ -76.493789585628377, 38.910075144509847 ], [ -76.493789585628377, 38.904226068741352 ], [ -76.493789585628377, 38.903822684205593 ], [ -76.493789585628377, 38.903419299669835 ], [ -76.493789585628377, 38.900797300187406 ], [ -76.493789585628377, 38.899587146580132 ], [ -76.492698480725466, 38.895553301222556 ], [ -76.490789047145398, 38.894544839883167 ], [ -76.490516270919684, 38.892326224936497 ], [ -76.490243494693956, 38.891922840400738 ], [ -76.489970718468243, 38.890107609989826 ], [ -76.489697942242515, 38.888897456382551 ], [ -76.489697942242515, 38.888897456382551 ], [ -76.489697942242515, 38.888695764114672 ], [ -76.489425166016787, 38.887485610507397 ], [ -76.490789047145398, 38.884863611024969 ], [ -76.491061823371126, 38.88446022648921 ], [ -76.491334599596854, 38.884258534221331 ], [ -76.494335138079819, 38.882039919274668 ], [ -76.494607914305533, 38.881838227006789 ], [ -76.494880690531261, 38.881636534738909 ], [ -76.498426781465668, 38.879014535256488 ], [ -76.507973949366004, 38.871955305880718 ], [ -76.511247264074697, 38.869333306398289 ], [ -76.519430550846408, 38.863080846094043 ], [ -76.516975564814913, 38.851181002289181 ], [ -76.516702788589186, 38.850979310021309 ], [ -76.50933783049463, 38.84835731053888 ], [ -76.50933783049463, 38.84835731053888 ], [ -76.499245110142851, 38.852189463628577 ], [ -76.497608452788512, 38.852794540432214 ], [ -76.4965173478856, 38.853197924967972 ], [ -76.4965173478856, 38.852996232700093 ], [ -76.493516809402649, 38.848559002806759 ], [ -76.492698480725466, 38.847147156931605 ], [ -76.492152928274024, 38.846138695592217 ], [ -76.491607375822582, 38.845533618788579 ], [ -76.491607375822582, 38.8453319265207 ], [ -76.489970718468243, 38.84291161930615 ], [ -76.489970718468243, 38.84291161930615 ], [ -76.489970718468243, 38.838676081680688 ], [ -76.489970718468243, 38.83827269714493 ], [ -76.491334599596854, 38.835247313126743 ], [ -76.491607375822582, 38.834642236323113 ], [ -76.491607375822582, 38.834440544055234 ], [ -76.49188015204831, 38.834037159519475 ], [ -76.497062900337056, 38.821935623446734 ], [ -76.497608452788512, 38.820322085303701 ], [ -76.498972333917123, 38.8174983935534 ], [ -76.498972333917123, 38.817296701285521 ], [ -76.502791201077258, 38.811649317784912 ], [ -76.506610068237393, 38.806405318820055 ], [ -76.506882844463121, 38.805800242016417 ], [ -76.50933783049463, 38.802371473462479 ], [ -76.5101561591718, 38.801161319855204 ], [ -76.511247264074697, 38.800757935319446 ], [ -76.514247802557662, 38.799346089444292 ], [ -76.515884459912002, 38.798741012640662 ], [ -76.523522194232271, 38.795513936354595 ], [ -76.524613299135183, 38.795110551818837 ], [ -76.524886075360897, 38.794908859550958 ], [ -76.524886075360897, 38.794707167283079 ], [ -76.52515885158661, 38.7945054750152 ], [ -76.52515885158661, 38.7945054750152 ], [ -76.525431627812338, 38.794102090479441 ], [ -76.527341061392406, 38.791883475532771 ], [ -76.527613837618134, 38.791883475532771 ], [ -76.527341061392406, 38.791681783264892 ], [ -76.527341061392406, 38.790875014193375 ], [ -76.527341061392406, 38.790673321925496 ], [ -76.527068285166678, 38.788253014710946 ], [ -76.527068285166678, 38.787647937907309 ], [ -76.527068285166678, 38.787042861103671 ], [ -76.527341061392406, 38.78663947656792 ], [ -76.52815939006959, 38.785832707496404 ], [ -76.532523809681166, 38.781193785335191 ], [ -76.533887690809792, 38.779580247192158 ], [ -76.535251571938403, 38.778370093584883 ], [ -76.535251571938403, 38.778168401317004 ], [ -76.535251571938403, 38.778168401317004 ], [ -76.535524348164131, 38.778168401317004 ], [ -76.535524348164131, 38.777966709049124 ], [ -76.536342676841301, 38.777765016781245 ], [ -76.536888229292742, 38.777563324513366 ], [ -76.536888229292742, 38.777563324513366 ], [ -76.53716100551847, 38.777361632245487 ], [ -76.539070439098538, 38.77655486317397 ], [ -76.542889306258672, 38.774739632763058 ], [ -76.544253187387284, 38.774134555959421 ], [ -76.544525963613012, 38.774134555959421 ], [ -76.554345907739076, 38.769697326066087 ], [ -76.554618683964804, 38.769697326066087 ], [ -76.559801432253551, 38.767478711119416 ], [ -76.559801432253551, 38.767277018851537 ], [ -76.559801432253551, 38.766268557512149 ], [ -76.558983103576395, 38.758200866796983 ], [ -76.557619222447769, 38.744687484849095 ], [ -76.557346446222041, 38.744284100313337 ], [ -76.557073669996328, 38.743880715777578 ], [ -76.557073669996328, 38.74347733124182 ], [ -76.554073131513348, 38.737829947741211 ], [ -76.552709250384737, 38.735409640526662 ], [ -76.551890921707567, 38.734602871455152 ], [ -76.544525963613012, 38.727745334347262 ], [ -76.544525963613012, 38.727745334347262 ], [ -76.54398041116157, 38.727745334347262 ], [ -76.543434858710128, 38.727745334347262 ], [ -76.543434858710128, 38.727745334347262 ], [ -76.542070977581503, 38.727745334347262 ], [ -76.539888767775722, 38.727947026615141 ], [ -76.529796047423929, 38.728350411150899 ], [ -76.529250494972473, 38.72814871888302 ], [ -76.527068285166678, 38.727140257543624 ], [ -76.52652273271525, 38.724518258061195 ], [ -76.529250494972473, 38.713626875595736 ], [ -76.529523271198201, 38.712416721988461 ], [ -76.529796047423929, 38.711609952916945 ], [ -76.530614376101099, 38.70797949209512 ], [ -76.530887152326812, 38.706971030755724 ], [ -76.530887152326812, 38.706971030755724 ], [ -76.532523809681166, 38.699911801379969 ], [ -76.532523809681166, 38.69971010911209 ], [ -76.532523809681166, 38.698298263236936 ], [ -76.532523809681166, 38.683574727681773 ], [ -76.532523809681166, 38.680145959127827 ], [ -76.532523809681166, 38.678330728716915 ], [ -76.531978257229724, 38.676918882841761 ], [ -76.530341599875385, 38.670263038001764 ], [ -76.527886613843862, 38.65937165553629 ], [ -76.527341061392406, 38.657556425125385 ], [ -76.524886075360897, 38.647471811731435 ], [ -76.524613299135183, 38.645858273588402 ], [ -76.524067746683727, 38.645051504516886 ], [ -76.517793893492069, 38.633555045247789 ], [ -76.516975564814913, 38.631941507104756 ], [ -76.515611683686274, 38.629319507622327 ], [ -76.511247264074697, 38.615806125674439 ], [ -76.512338368977595, 38.609755357638072 ], [ -76.512611145203323, 38.609150280834434 ], [ -76.514793355009118, 38.59785551383321 ], [ -76.515611683686274, 38.593216591671997 ], [ -76.515884459912002, 38.593216591671997 ], [ -76.515884459912002, 38.593216591671997 ], [ -76.516430012363458, 38.590191207653817 ], [ -76.515066131234832, 38.555701829846512 ], [ -76.51533890746056, 38.5538865994356 ], [ -76.51533890746056, 38.553684907167721 ], [ -76.51533890746056, 38.553684907167721 ], [ -76.515611683686274, 38.552878138096204 ], [ -76.517521117266341, 38.539163063880437 ], [ -76.515884459912002, 38.529280142754367 ], [ -76.515611683686274, 38.529078450486487 ], [ -76.51533890746056, 38.528069989147092 ], [ -76.507428396914563, 38.508304146894957 ], [ -76.506882844463121, 38.506690608751924 ], [ -76.506064515785937, 38.504673686073133 ], [ -76.499245110142851, 38.493580611339794 ], [ -76.498699557691396, 38.492773842268278 ], [ -76.498154005239954, 38.491967073196761 ], [ -76.492698480725466, 38.4828909211422 ], [ -76.491607375822582, 38.481882459802812 ], [ -76.473331368699078, 38.466352155176125 ], [ -76.471149158893283, 38.46453692476522 ], [ -76.467330291733148, 38.461108156211282 ], [ -76.467330291733148, 38.460906463943402 ], [ -76.467057515507435, 38.460906463943402 ], [ -76.464056977024455, 38.458284464460974 ], [ -76.461056438541505, 38.455662464978545 ], [ -76.455873690252744, 38.451225235085204 ], [ -76.455873690252744, 38.447796466531265 ], [ -76.454237032898405, 38.445779543852481 ], [ -76.450963718189712, 38.442350775298536 ], [ -76.445508193675238, 38.43892200674459 ], [ -76.442507655192273, 38.437308468601557 ], [ -76.442507655192273, 38.437106776333678 ], [ -76.441143774063647, 38.436501699530041 ], [ -76.438961564257866, 38.435089853654887 ], [ -76.436233802000629, 38.433476315511861 ], [ -76.435688249549173, 38.432871238708223 ], [ -76.415502808845616, 38.414718934599115 ], [ -76.402682326236572, 38.395961553686377 ], [ -76.393407934561964, 38.389507401114244 ], [ -76.388225186273218, 38.387692170703332 ], [ -76.388225186273218, 38.387692170703332 ], [ -76.38631575269315, 38.382044787202723 ], [ -76.38631575269315, 38.381641402666972 ], [ -76.386861305144592, 38.363085714022105 ], [ -76.386861305144592, 38.362480637218468 ], [ -76.38713408137032, 38.361270483611193 ], [ -76.387406857596034, 38.360867099075435 ], [ -76.388770738724659, 38.359253560932402 ], [ -76.389043514950387, 38.359051868664523 ], [ -76.398317906624996, 38.348563870734822 ], [ -76.400772892656505, 38.345740178984514 ], [ -76.401591221333689, 38.344933409912997 ], [ -76.402136773785145, 38.34432833310936 ], [ -76.403227878688028, 38.343118179502085 ], [ -76.404864536042368, 38.341101256823293 ], [ -76.409228955653958, 38.325974336732372 ], [ -76.405682864719552, 38.317704953749342 ], [ -76.4029551024623, 38.311452493445088 ], [ -76.382224109307288, 38.30338480272993 ], [ -76.381405780630118, 38.303183110462051 ], [ -76.380041899501492, 38.302376341390534 ], [ -76.375404703664188, 38.299552649640233 ], [ -76.375131927438474, 38.299350957372354 ], [ -76.374586374987018, 38.296527265622046 ], [ -76.374586374987018, 38.296325573354167 ], [ -76.376495808567086, 38.294308650675376 ], [ -76.38195133308156, 38.289468036246284 ], [ -76.394226263239148, 38.278173269245059 ], [ -76.39695402549637, 38.271719116672934 ], [ -76.398863459076438, 38.26708019451172 ], [ -76.399136235302166, 38.264256502761413 ], [ -76.399136235302166, 38.263853118225654 ], [ -76.399136235302166, 38.263248041422017 ], [ -76.399409011527894, 38.259415888332313 ], [ -76.399409011527894, 38.259214196064434 ], [ -76.399136235302166, 38.258609119260797 ], [ -76.392589605884794, 38.239044969276542 ], [ -76.39231682965908, 38.238439892472904 ], [ -76.391771277207624, 38.236624662061999 ], [ -76.391498500981896, 38.236624662061999 ], [ -76.385224647790253, 38.217665588881374 ], [ -76.378132465921425, 38.209799590434088 ], [ -76.377586913469983, 38.209396205898337 ], [ -76.372404165181223, 38.203748822397728 ], [ -76.364220878409512, 38.194470978075287 ], [ -76.361765892378003, 38.192050670860745 ], [ -76.359856458797935, 38.188823594574686 ], [ -76.353855381832005, 38.17853728891285 ], [ -76.353582605606277, 38.178133904377091 ], [ -76.35249150070338, 38.177125443037703 ], [ -76.35249150070338, 38.177125443037703 ], [ -76.347854304866075, 38.172889905412248 ], [ -76.343489885254485, 38.168452675518907 ], [ -76.337488808288569, 38.162805292018291 ], [ -76.336124927159943, 38.161393446143144 ], [ -76.329578297742572, 38.155140985838898 ], [ -76.329578297742572, 38.155140985838898 ], [ -76.329578297742572, 38.155140985838898 ], [ -76.328759969065402, 38.153729139963744 ], [ -76.328759969065402, 38.153527447695865 ], [ -76.328759969065402, 38.153527447695865 ], [ -76.328487192839674, 38.152922370892227 ], [ -76.327123311711063, 38.150703755945557 ], [ -76.320576682293677, 38.139005604408581 ], [ -76.320031129842235, 38.138400527604944 ], [ -76.324122773228098, 38.134366682247361 ], [ -76.330942178871197, 38.127307452871598 ], [ -76.331760507548367, 38.126298991532202 ], [ -76.335306598482774, 38.122870222978264 ], [ -76.335579374708502, 38.122466838442506 ], [ -76.337216032062841, 38.120651608031594 ], [ -76.338034360740011, 38.119844838960077 ], [ -76.338579913191467, 38.119441454424319 ], [ -76.337488808288569, 38.110970379173402 ], [ -76.337488808288569, 38.110768686905523 ], [ -76.331760507548367, 38.101087458047331 ], [ -76.331487731322639, 38.100482381243694 ], [ -76.331214955096925, 38.100078996707936 ], [ -76.330942178871197, 38.099272227636419 ], [ -76.330669402645469, 38.099272227636419 ], [ -76.330669402645469, 38.099272227636419 ], [ -76.329305521516858, 38.074060694151555 ], [ -76.329305521516858, 38.071640386937005 ], [ -76.32903274529113, 38.071237002401247 ], [ -76.324941101905267, 38.059337158596392 ], [ -76.320576682293677, 38.046630545720014 ], [ -76.319485577390793, 38.043403469433954 ], [ -76.321395010970861, 38.037957778201218 ], [ -76.321940563422302, 38.036949316861822 ], [ -76.32221333964803, 38.036545932326064 ], [ -76.327123311711063, 38.045017007576988 ], [ -76.332851612451265, 38.049857622006073 ], [ -76.341307675448704, 38.053689775095776 ], [ -76.341307675448704, 38.053689775095776 ], [ -76.344308213931669, 38.053488082827897 ], [ -76.34567209506028, 38.053488082827897 ], [ -76.350582067123312, 38.053286390560018 ], [ -76.352764276929108, 38.053084698292139 ], [ -76.361220339926547, 38.059538850864271 ], [ -76.361493116152275, 38.060143927667909 ], [ -76.361765892378003, 38.060345619935788 ], [ -76.361765892378003, 38.060547312203667 ], [ -76.369403626698272, 38.074867463223072 ], [ -76.370221955375428, 38.076481001366105 ], [ -76.370767507826884, 38.077691154973373 ], [ -76.371858612729781, 38.079506385384285 ], [ -76.378405242147153, 38.086968999295806 ], [ -76.380860228178676, 38.089994383313993 ], [ -76.381405780630118, 38.090397767849751 ], [ -76.381678556855832, 38.090801152385509 ], [ -76.38195133308156, 38.091002844653389 ], [ -76.383860766661627, 38.093221459600059 ], [ -76.384951871564525, 38.094431613207327 ], [ -76.390952948530455, 38.10128915031521 ], [ -76.391771277207624, 38.102297611654606 ], [ -76.392044053433352, 38.102499303922485 ], [ -76.39231682965908, 38.102902688458244 ], [ -76.393135158336236, 38.103104380726123 ], [ -76.39395348701342, 38.103507765261881 ], [ -76.396408473044929, 38.104112842065518 ], [ -76.397772354173554, 38.104516226601277 ], [ -76.398045130399282, 38.104717918869156 ], [ -76.405410088493824, 38.106936533815826 ], [ -76.40595564094528, 38.106936533815826 ], [ -76.413047822814093, 38.106936533815826 ], [ -76.414411703942704, 38.105928072476431 ], [ -76.41495725639416, 38.105524687940672 ], [ -76.4165939137485, 38.104516226601277 ], [ -76.42095833336009, 38.105928072476431 ], [ -76.421231109585818, 38.10612976474431 ], [ -76.421776662037246, 38.106936533815826 ], [ -76.429414396357515, 38.117827916281286 ], [ -76.429414396357515, 38.118029608549165 ], [ -76.430505501260427, 38.119441454424319 ], [ -76.430505501260427, 38.119441454424319 ], [ -76.430232725034699, 38.121660069370989 ], [ -76.429687172583243, 38.124887145657055 ], [ -76.429687172583243, 38.126097299264323 ], [ -76.437324906903513, 38.135778528122515 ], [ -76.439779892935036, 38.139005604408581 ], [ -76.459147004961437, 38.139408988944339 ], [ -76.459692557412879, 38.139408988944339 ], [ -76.459965333638607, 38.138803912140702 ], [ -76.460783662315777, 38.137593758533427 ], [ -76.465693634378809, 38.127307452871598 ], [ -76.469785277764657, 38.11923976215644 ], [ -76.469785277764657, 38.11903806988856 ], [ -76.469785277764657, 38.118634685352802 ], [ -76.469785277764657, 38.118432993084923 ], [ -76.469785277764657, 38.11681945494189 ], [ -76.469785277764657, 38.115609301334615 ], [ -76.469785277764657, 38.115609301334615 ], [ -76.467330291733148, 38.112583917316435 ], [ -76.467057515507435, 38.112180532780677 ], [ -76.466511963055979, 38.111575455977039 ], [ -76.466511963055979, 38.11137376370916 ], [ -76.466511963055979, 38.11137376370916 ], [ -76.466239186830251, 38.111172071441281 ], [ -76.465966410604523, 38.108751764226739 ], [ -76.465420858153081, 38.106533149280068 ], [ -76.465420858153081, 38.105928072476431 ], [ -76.46787584418459, 38.104919611137035 ], [ -76.473331368699078, 38.103104380726123 ], [ -76.475513578504859, 38.104314534333398 ], [ -76.476331907182043, 38.104717918869156 ], [ -76.478241340762111, 38.109155148762497 ], [ -76.478514116987839, 38.110163610101885 ], [ -76.478786893213552, 38.110768686905523 ], [ -76.478786893213552, 38.110768686905523 ], [ -76.47905966943928, 38.11137376370916 ], [ -76.47987799811645, 38.112987301852193 ], [ -76.480969103019348, 38.115810993602494 ], [ -76.480969103019348, 38.115810993602494 ], [ -76.480969103019348, 38.115810993602494 ], [ -76.480969103019348, 38.116012685870373 ], [ -76.482060207922245, 38.117021147209769 ], [ -76.483969641502313, 38.11923976215644 ], [ -76.485060746405196, 38.120449915763714 ], [ -76.48587907508238, 38.12145837710311 ], [ -76.486151851308108, 38.121861761638868 ], [ -76.486424627533822, 38.121861761638868 ], [ -76.492152928274024, 38.128315914210994 ], [ -76.495153466756989, 38.131744682764932 ], [ -76.497062900337056, 38.133963297711603 ], [ -76.497881229014226, 38.134971759050998 ], [ -76.498972333917123, 38.136181912658273 ], [ -76.499790662594293, 38.137190373997669 ], [ -76.499790662594293, 38.137190373997669 ], [ -76.500336215045735, 38.137392066265548 ], [ -76.501154543722919, 38.137795450801306 ], [ -76.502245648625802, 38.138198835337064 ], [ -76.508792278043188, 38.140619142551614 ], [ -76.514793355009118, 38.141224219355252 ], [ -76.522431089329388, 38.139408988944339 ], [ -76.528977718746745, 38.134770066783119 ], [ -76.529523271198201, 38.134366682247361 ], [ -76.529796047423929, 38.134164989979482 ], [ -76.540434320227149, 38.152922370892227 ], [ -76.545344292290196, 38.16542729150072 ], [ -76.547253725870263, 38.175713597162549 ], [ -76.547526502095991, 38.175915289430428 ], [ -76.547799278321705, 38.176923750769824 ], [ -76.548344830773146, 38.177528827573454 ], [ -76.548890383224602, 38.178940673448608 ], [ -76.552982026610465, 38.187210056431653 ], [ -76.566348061670936, 38.19850482343287 ], [ -76.574531348442648, 38.203748822397728 ], [ -76.588715712180289, 38.213026666720154 ], [ -76.590625145760356, 38.214236820327429 ], [ -76.624449397750126, 38.223514664649862 ], [ -76.625540502653024, 38.223716356917741 ], [ -76.627995488684533, 38.224523125989258 ], [ -76.629632146038887, 38.224926510525016 ], [ -76.6299049222646, 38.224926510525016 ], [ -76.632087132070396, 38.225531587328653 ], [ -76.632087132070396, 38.225531587328653 ], [ -76.63235990829611, 38.225733279596525 ], [ -76.632632684521838, 38.225733279596525 ], [ -76.643816509776514, 38.225128202792895 ], [ -76.644089286002242, 38.225128202792895 ], [ -76.644907614679425, 38.225329895060774 ], [ -76.645180390905153, 38.225531587328653 ], [ -76.659091978417067, 38.229968817221987 ], [ -76.673549118380436, 38.234406047115328 ], [ -76.678731866669182, 38.234204354847449 ], [ -76.687187929666635, 38.23400266257957 ], [ -76.712556118658952, 38.233397585775933 ], [ -76.716102209593359, 38.233195893508054 ], [ -76.716374985819087, 38.233195893508054 ], [ -76.717466090721985, 38.233397585775933 ], [ -76.71964830052778, 38.233599278043812 ], [ -76.740106517457065, 38.235212816186845 ], [ -76.744198160842927, 38.230775586293504 ], [ -76.749380909131673, 38.225329895060774 ], [ -76.752108671388925, 38.222506203310466 ], [ -76.752108671388925, 38.222304511042587 ], [ -76.752381447614653, 38.222102818774708 ], [ -76.770111902286686, 38.226338356400163 ], [ -76.77856796528414, 38.228556971346833 ], [ -76.779931846412751, 38.228960355882592 ], [ -76.791934000344611, 38.234406047115328 ], [ -76.796571196181915, 38.236624662061999 ], [ -76.797389524859085, 38.236826354329878 ], [ -76.81157388859674, 38.250138044009887 ], [ -76.811846664822454, 38.251348197617162 ], [ -76.811846664822454, 38.252154966688678 ], [ -76.809118902565217, 38.252154966688678 ], [ -76.808846126339489, 38.252154966688678 ], [ -76.808300573888047, 38.252154966688678 ], [ -76.805845587856538, 38.252356658956558 ], [ -76.805845587856538, 38.252558351224437 ], [ -76.805300035405082, 38.253566812563832 ], [ -76.802845049373559, 38.275147885226872 ], [ -76.802299496922117, 38.280795268727488 ], [ -76.805027259179354, 38.283215575942037 ], [ -76.805027259179354, 38.283417268209917 ], [ -76.805300035405082, 38.283820652745675 ], [ -76.80557281163081, 38.283820652745675 ], [ -76.806663916533694, 38.28503080635295 ], [ -76.810482783693828, 38.288862959442646 ], [ -76.811301112371012, 38.289468036246284 ], [ -76.815119979531147, 38.293501881603859 ], [ -76.81621108443403, 38.294712035211134 ], [ -76.820848280271349, 38.299149265104475 ], [ -76.821666608948519, 38.299754341908113 ], [ -76.821666608948519, 38.299956034175992 ], [ -76.824939923657212, 38.301166187783267 ], [ -76.824939923657212, 38.301166187783267 ], [ -76.833941539106092, 38.299754341908113 ], [ -76.845943693037952, 38.297737419229321 ], [ -76.846216469263666, 38.297737419229321 ], [ -76.846216469263666, 38.297737419229321 ], [ -76.846216469263666, 38.291888343460826 ], [ -76.846216469263666, 38.291686651192947 ], [ -76.841579273426362, 38.289669728514163 ], [ -76.841306497200634, 38.289468036246284 ], [ -76.840488168523464, 38.289266343978404 ], [ -76.838578734943397, 38.284224037281433 ], [ -76.83503264400899, 38.274341116155355 ], [ -76.834759867783262, 38.273937731619597 ], [ -76.83503264400899, 38.272727578012329 ], [ -76.837760406266227, 38.262037887814742 ], [ -76.837760406266227, 38.261634503278984 ], [ -76.842124825877818, 38.254575273903221 ], [ -76.842124825877818, 38.254575273903221 ], [ -76.843488707006429, 38.254978658438979 ], [ -76.844307035683599, 38.255180350706858 ], [ -76.844852588135041, 38.255382042974738 ], [ -76.845943693037952, 38.255785427510496 ], [ -76.847034797940836, 38.256188812046254 ], [ -76.864219700161442, 38.268895424922633 ], [ -76.866401909967237, 38.269702193994142 ], [ -76.866401909967237, 38.269702193994142 ], [ -76.886587350670808, 38.276963115637784 ], [ -76.908409448728719, 38.288459574906888 ], [ -76.920684378886307, 38.291484958925068 ], [ -76.920957155112021, 38.291484958925068 ], [ -76.922048260014918, 38.31104910890933 ], [ -76.922048260014918, 38.311250801177209 ], [ -76.923684917369258, 38.314881261999034 ], [ -76.924776022272155, 38.316091415606309 ], [ -76.926958232077951, 38.318511722820851 ], [ -76.929685994335188, 38.32113372230328 ], [ -76.942233700718489, 38.329604797554197 ], [ -76.953963078424607, 38.333235258376021 ], [ -76.966238008582195, 38.341302949091173 ], [ -76.974966847805348, 38.347152024859668 ], [ -76.975512400256804, 38.347353717127547 ], [ -76.983695687028529, 38.363085714022105 ], [ -76.986423449285752, 38.38264986400636 ], [ -76.98669622551148, 38.384263402149394 ], [ -76.986969001737208, 38.386280324828178 ], [ -76.987787330414392, 38.391927708328794 ], [ -76.988332882865819, 38.394953092346981 ], [ -76.989151211543003, 38.396364938222135 ], [ -76.989423987768731, 38.396364938222135 ], [ -76.990242316445887, 38.397776784097289 ], [ -76.993788407380308, 38.402617398526374 ], [ -76.996788945863273, 38.406651243883957 ], [ -76.996788945863273, 38.406651243883957 ], [ -76.99869837944334, 38.409273243366385 ], [ -76.998971155669068, 38.410281704705781 ], [ -77.000880589249135, 38.419357856760328 ], [ -77.001426141700577, 38.421576471706999 ], [ -77.001698917926305, 38.421979856242757 ], [ -77.001971694152019, 38.422383240778515 ], [ -77.002517246603475, 38.423391702117911 ], [ -77.006608889989337, 38.429644162422164 ], [ -77.006881666215065, 38.430249239225795 ], [ -77.016428834115402, 38.445577851584602 ], [ -77.016701610341116, 38.445577851584602 ], [ -77.040705918204822, 38.444569390245206 ], [ -77.042069799333433, 38.443964313441569 ], [ -77.042888128010617, 38.443560928905811 ], [ -77.044252009139228, 38.442955852102173 ], [ -77.053253624588123, 38.437711853137316 ], [ -77.053253624588123, 38.437711853137316 ], [ -77.053526400813837, 38.437510160869437 ], [ -77.053799177039565, 38.437510160869437 ], [ -77.054071953265293, 38.437308468601557 ], [ -77.054890281942463, 38.43670339179792 ], [ -77.055163058168191, 38.436501699530041 ], [ -77.055435834393904, 38.436501699530041 ], [ -77.05679971552253, 38.435493238190645 ], [ -77.057345267973972, 38.435291545922766 ], [ -77.057345267973972, 38.435291545922766 ], [ -77.0576180441997, 38.435089853654887 ], [ -77.062528016262732, 38.432266161904586 ], [ -77.074257393968864, 38.425408624796702 ], [ -77.074257393968864, 38.425408624796702 ], [ -77.074802946420306, 38.425206932528823 ], [ -77.07562127509749, 38.424803547993065 ], [ -77.081349575837692, 38.419357856760328 ], [ -77.081349575837692, 38.419357856760328 ], [ -77.08625954790071, 38.414718934599115 ], [ -77.091169519963756, 38.407458012955473 ], [ -77.106444988604295, 38.406247859348198 ], [ -77.106990541055723, 38.406449551616078 ], [ -77.107536093507179, 38.407054628419715 ], [ -77.107808869732906, 38.407256320687594 ], [ -77.109172750861518, 38.408063089759111 ], [ -77.109172750861518, 38.408063089759111 ], [ -77.110536631990144, 38.409273243366385 ], [ -77.110536631990144, 38.409273243366385 ], [ -77.123357114599173, 38.410685089241539 ], [ -77.125812100630682, 38.404836013473044 ], [ -77.127448757985036, 38.401608937186985 ], [ -77.12772153421075, 38.400802168115469 ], [ -77.128267086662191, 38.400197091311831 ], [ -77.128539862887919, 38.399995399043952 ], [ -77.128812639113647, 38.399793706776073 ], [ -77.128812639113647, 38.399592014508194 ], [ -77.129085415339375, 38.399390322240315 ], [ -77.130176520242259, 38.39818016863304 ], [ -77.135359268531019, 38.393339554203948 ], [ -77.136450373433917, 38.392129400596673 ], [ -77.136723149659645, 38.391726016060915 ], [ -77.136995925885373, 38.391726016060915 ], [ -77.139996464368323, 38.390112477917882 ], [ -77.143269779077016, 38.388498939774848 ], [ -77.147634198688593, 38.386078632560299 ], [ -77.163455219780587, 38.377809249577268 ], [ -77.168637968069334, 38.37498555782696 ], [ -77.177094031066787, 38.370750020201498 ], [ -77.17982179332401, 38.369338174326352 ], [ -77.182549555581261, 38.367724636183318 ], [ -77.183367884258431, 38.367522943915439 ], [ -77.18500454161277, 38.366514482576044 ], [ -77.186641198967124, 38.365707713504534 ], [ -77.189368961224346, 38.364900944433018 ], [ -77.204917206090613, 38.360463714539677 ], [ -77.207099415896408, 38.359858637736039 ], [ -77.207372192122136, 38.359858637736039 ], [ -77.207372192122136, 38.359858637736039 ], [ -77.20846329702502, 38.360262022271797 ], [ -77.212282164185154, 38.361472175879072 ], [ -77.216646583796745, 38.363085714022105 ], [ -77.216919360022473, 38.363287406289984 ], [ -77.236286472048874, 38.374582173291202 ], [ -77.250198059560788, 38.38285155627424 ], [ -77.250743612012229, 38.384263402149394 ], [ -77.251289164463685, 38.38507017122091 ], [ -77.253198598043753, 38.389507401114244 ], [ -77.256471912752431, 38.396768322757893 ], [ -77.257290241429615, 38.398381860900919 ], [ -77.26192743726692, 38.409071551098506 ], [ -77.264109647072701, 38.414315550063357 ], [ -77.261381884815478, 38.42359339438579 ], [ -77.260018003686852, 38.427828932011252 ], [ -77.260018003686852, 38.435896622726403 ], [ -77.260836332364022, 38.438316929940953 ], [ -77.263564094621259, 38.447796466531265 ], [ -77.266837409329952, 38.458082772193094 ], [ -77.269565171587189, 38.466553847444004 ], [ -77.273929591198765, 38.481075690731295 ], [ -77.274202367424493, 38.481680767534932 ], [ -77.274202367424493, 38.481680767534932 ], [ -77.274202367424493, 38.482084152070691 ], [ -77.271201828941528, 38.490756919589487 ], [ -77.263564094621259, 38.512337992252533 ], [ -77.257290241429615, 38.521817528842845 ], [ -77.254835255398092, 38.525649681932549 ], [ -77.246106416174939, 38.539163063880437 ], [ -77.242833101466246, 38.544205370577409 ], [ -77.237650353177486, 38.551869676756809 ], [ -77.236832024500316, 38.552071369024688 ], [ -77.22646652792281, 38.554088291703479 ], [ -77.221011003408336, 38.555298445310754 ], [ -77.20982717815366, 38.568811827258642 ], [ -77.205189982316341, 38.574459210759251 ], [ -77.183640660484144, 38.600679205583518 ], [ -77.176002926163875, 38.604107974137463 ], [ -77.170001849197959, 38.606729973619885 ], [ -77.169729072972231, 38.606931665887764 ], [ -77.16754686316645, 38.606729973619885 ], [ -77.164000772232029, 38.606528281352006 ], [ -77.163455219780587, 38.606528281352006 ], [ -77.163182443554859, 38.606528281352006 ], [ -77.162636891103404, 38.606528281352006 ], [ -77.16154578620052, 38.606326589084134 ], [ -77.14872530359149, 38.605519820012617 ], [ -77.145997541334253, 38.606729973619885 ], [ -77.135632044756747, 38.611570588048977 ], [ -77.129085415339375, 38.614394279799285 ], [ -77.129085415339375, 38.614394279799285 ], [ -77.128812639113647, 38.614595972067164 ], [ -77.126357653082124, 38.617621356085351 ], [ -77.125266548179241, 38.619033201960505 ], [ -77.124720995727785, 38.619839971032022 ], [ -77.130176520242259, 38.634966891122943 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "28", "geo_id": "0400000US34", "fips_state": "34", "name": "New Jersey", "iso_3166_2": "NJ", "census": 8791894, "pop_estimataes_base": 8791936, "pop_2010": 8803580, "pop_2011": 8842614, "pop_2012": 8876000, "pop_2013": 8911502, "pop_2014": 8938175 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.694830376979155, 41.357409122953143 ], [ -74.457515060599334, 41.248293606030629 ], [ -74.392048766425603, 41.215619458634237 ], [ -74.365589472530388, 41.203316230293623 ], [ -74.234384107957169, 41.142808549929931 ], [ -74.213380338576428, 41.133732397875377 ], [ -74.09690489019232, 41.083712715441393 ], [ -74.09254047058073, 41.081897485030481 ], [ -74.040985763918911, 41.059106258760167 ], [ -74.040985763918911, 41.059106258760167 ], [ -73.911962609151516, 41.001220577878897 ], [ -73.902688217476893, 40.9973884247892 ], [ -73.893959378253726, 40.997186732521321 ], [ -73.917963686117432, 40.917518286709132 ], [ -73.919600343471785, 40.913484441351557 ], [ -73.927510854017768, 40.895735521778207 ], [ -73.933511930983698, 40.882020447562439 ], [ -73.933511930983698, 40.882020447562439 ], [ -73.938149126821003, 40.87475952591879 ], [ -73.948241847172795, 40.858422452220594 ], [ -73.986976071225584, 40.798318156392668 ], [ -73.9929771481915, 40.788838619802355 ], [ -74.000887658737497, 40.776535391461735 ], [ -74.009070945509222, 40.763627086317484 ], [ -74.013708141346527, 40.756567856941722 ], [ -74.024619190375489, 40.709371866258046 ], [ -74.038530777887402, 40.7107837121332 ], [ -74.051078484270704, 40.695858484310151 ], [ -74.069900043845649, 40.684563717308933 ], [ -74.082720526454679, 40.673672334843474 ], [ -74.09008548454922, 40.659957260627699 ], [ -74.087357722291983, 40.653704800323453 ], [ -74.094177127935083, 40.64967095496587 ], [ -74.143276848565392, 40.641804956518598 ], [ -74.161280079463168, 40.644023571465262 ], [ -74.181192743941011, 40.646443878679811 ], [ -74.186102716004044, 40.646040494144053 ], [ -74.189103254487009, 40.643821879197382 ], [ -74.202196513321752, 40.631115266321004 ], [ -74.206833709159056, 40.594608965834922 ], [ -74.209015918964852, 40.576254969457935 ], [ -74.214744219705054, 40.560522972563376 ], [ -74.21829031063946, 40.55729589627731 ], [ -74.231656345699932, 40.559111126688222 ], [ -74.248568471694824, 40.54963159009791 ], [ -74.251569010177775, 40.542370668454268 ], [ -74.246113485663301, 40.520991288059093 ], [ -74.268208359946939, 40.499208523128168 ], [ -74.270117793527007, 40.494972985502713 ], [ -74.272572779558516, 40.488317140662701 ], [ -74.267662807495498, 40.471778374696626 ], [ -74.261934506755296, 40.464719145320871 ], [ -74.236566317762964, 40.45786160821298 ], [ -74.22510971628256, 40.453222686051767 ], [ -74.224018611379663, 40.452819301516008 ], [ -74.222927506476765, 40.45241591698025 ], [ -74.209834247642021, 40.447373610283279 ], [ -74.206288156707615, 40.440717765443267 ], [ -74.206288156707615, 40.438700842764476 ], [ -74.208743142739124, 40.437490689157208 ], [ -74.207106485384784, 40.435473766478417 ], [ -74.202196513321752, 40.438902535032355 ], [ -74.194013226550027, 40.440919457711146 ], [ -74.191285464292804, 40.442936380389938 ], [ -74.187739373358383, 40.447373610283279 ], [ -74.174918890749353, 40.455642993266309 ], [ -74.174918890749353, 40.454432839659042 ], [ -74.175191666975081, 40.449188840694191 ], [ -74.176828324329421, 40.447776994819037 ], [ -74.175464443200809, 40.446566841211762 ], [ -74.170008918686335, 40.450600686569345 ], [ -74.16700838020337, 40.448785456158433 ], [ -74.1661900515262, 40.4471719180154 ], [ -74.164007841720405, 40.448382071622675 ], [ -74.163189513043235, 40.448382071622675 ], [ -74.157733988528747, 40.446566841211762 ], [ -74.153642345142899, 40.447575302551158 ], [ -74.152551240240001, 40.447373610283279 ], [ -74.152005687788545, 40.447978687086916 ], [ -74.143004072339664, 40.450398994301466 ], [ -74.140003533856699, 40.453424378319646 ], [ -74.138366876502346, 40.454432839659042 ], [ -74.135911890470851, 40.455239608730551 ], [ -74.133729680665056, 40.454634531926921 ], [ -74.131001918407804, 40.453222686051767 ], [ -74.127455827473398, 40.451004071105096 ], [ -74.124728065216161, 40.449592225229949 ], [ -74.122273079184652, 40.448180379354795 ], [ -74.116817554670163, 40.446163456676004 ], [ -74.088176050969153, 40.438499150496604 ], [ -74.076173897037307, 40.433658536067512 ], [ -74.058988994816701, 40.422767153602038 ], [ -74.047805169562025, 40.418935000512342 ], [ -74.006343183251971, 40.411069002065062 ], [ -73.998432672705988, 40.410867309797183 ], [ -73.995432134223023, 40.419540077315979 ], [ -73.991613267062888, 40.442936380389938 ], [ -74.006070407026257, 40.464719145320871 ], [ -74.017799784732375, 40.472181759232384 ], [ -74.017799784732375, 40.474400374179055 ], [ -74.013980917572241, 40.476417296857846 ], [ -74.007161511929155, 40.475207143250572 ], [ -73.995704910448751, 40.468752990678446 ], [ -73.978247232002417, 40.44011268863963 ], [ -73.976883350873806, 40.408447002582633 ], [ -73.971427826359317, 40.371739009828666 ], [ -73.971427826359317, 40.347939322218949 ], [ -73.977428903325247, 40.299331485660119 ], [ -73.981793322936824, 40.279363951140098 ], [ -73.993249924417228, 40.237613651689159 ], [ -74.015890351152308, 40.166819665663638 ], [ -74.030074714889963, 40.122850751266029 ], [ -74.034166358275826, 40.103084909013887 ], [ -74.031984148470031, 40.101067986335103 ], [ -74.031438596018575, 40.100462909531466 ], [ -74.03362080582437, 40.09945444819207 ], [ -74.039349106564572, 40.081503836350848 ], [ -74.058716218590973, 40.001230313735022 ], [ -74.064171743105447, 39.97924585653621 ], [ -74.077265001940191, 39.911073869993118 ], [ -74.09090381322639, 39.799941430391812 ], [ -74.097177666418048, 39.767872359799057 ], [ -74.09690489019232, 39.763031745369965 ], [ -74.098814323772388, 39.759602976816026 ], [ -74.101542086029625, 39.756174208262081 ], [ -74.11354423996147, 39.740643903635402 ], [ -74.141640191211053, 39.689414067594143 ], [ -74.191012688067076, 39.625074234140754 ], [ -74.240385184923099, 39.554885324918878 ], [ -74.249114024146266, 39.548027787810994 ], [ -74.277482751621562, 39.514143486807328 ], [ -74.291667115359189, 39.507689334235202 ], [ -74.311034227385591, 39.506680872895807 ], [ -74.312398108514216, 39.499823335787923 ], [ -74.313761989642842, 39.493974260019428 ], [ -74.308306465128354, 39.483889646625485 ], [ -74.304760374193947, 39.482881185286089 ], [ -74.302305388162438, 39.478847339928507 ], [ -74.304214821742505, 39.471384726016993 ], [ -74.334765759023583, 39.432054733780589 ], [ -74.366953353659, 39.402002585866626 ], [ -74.406778682614686, 39.377597821453271 ], [ -74.406778682614686, 39.373967360631454 ], [ -74.408142563743311, 39.365092900844772 ], [ -74.412779759580616, 39.360857363219317 ], [ -74.459970046630843, 39.344923674056879 ], [ -74.521890249870182, 39.31386306480352 ], [ -74.541530138122312, 39.300147990587746 ], [ -74.551077306022648, 39.293492145747749 ], [ -74.553532292054157, 39.286836300907737 ], [ -74.560897250148699, 39.278768610192586 ], [ -74.58108269085227, 39.270902611745299 ], [ -74.597994816847148, 39.258801075672565 ], [ -74.614361390390599, 39.24468261692104 ], [ -74.636183488448495, 39.220882929311315 ], [ -74.646548985026016, 39.212008469524648 ], [ -74.651458957089034, 39.198495087576759 ], [ -74.671371621566891, 39.179737706664014 ], [ -74.714470265231256, 39.119835103103959 ], [ -74.71528859390844, 39.116809719085779 ], [ -74.714197489005542, 39.114591104139109 ], [ -74.704377544879492, 39.107935259299097 ], [ -74.705741426008103, 39.102892952602133 ], [ -74.738201796869248, 39.074656035099075 ], [ -74.778845454502118, 39.023022814522065 ], [ -74.786483188822388, 39.000029895983857 ], [ -74.792757042014031, 38.991962205268699 ], [ -74.80803251065457, 38.985911437232332 ], [ -74.819489112134974, 38.979457284660199 ], [ -74.850858378093221, 38.954447443443215 ], [ -74.864497189379421, 38.940328984691689 ], [ -74.86531551805659, 38.941539138298964 ], [ -74.870498266345351, 38.943556060977748 ], [ -74.882227644051483, 38.941740830566843 ], [ -74.907050280592358, 38.932059601708644 ], [ -74.92041631565283, 38.929235909958344 ], [ -74.933509574487573, 38.928429140886827 ], [ -74.963514959317195, 38.931252832637128 ], [ -74.967333826477329, 38.933471447583798 ], [ -74.971971022314648, 38.940328984691689 ], [ -74.955331672545483, 39.001240049591132 ], [ -74.949603371805281, 39.015560200610537 ], [ -74.938419546550591, 39.035124350594799 ], [ -74.903776965883665, 39.087362647975453 ], [ -74.897775888917735, 39.09885910724455 ], [ -74.892593140628975, 39.113179258263955 ], [ -74.886046511211617, 39.143634790713676 ], [ -74.887137616114501, 39.158761710804598 ], [ -74.905140847012291, 39.174897092234914 ], [ -74.914960791138341, 39.177519091717343 ], [ -74.962423854414311, 39.190225704593715 ], [ -74.976335441926224, 39.192242627272506 ], [ -74.997884763758407, 39.19123416593311 ], [ -75.026253491233703, 39.19365447314766 ], [ -75.02898125349094, 39.194461242219177 ], [ -75.027890148588043, 39.199503548916155 ], [ -75.023525728976466, 39.202528932934335 ], [ -75.023525728976466, 39.204747547880999 ], [ -75.026253491233703, 39.209789854577977 ], [ -75.03580065913404, 39.215437238078593 ], [ -75.041528959874242, 39.215437238078593 ], [ -75.047802813065886, 39.211605084988889 ], [ -75.052440008903204, 39.213622007667681 ], [ -75.062532729254983, 39.213622007667681 ], [ -75.08626426089296, 39.208176316434944 ], [ -75.100994177082057, 39.211605084988889 ], [ -75.107268030273701, 39.21140339272101 ], [ -75.114632988368243, 39.207571239631307 ], [ -75.127180694751559, 39.189822320057957 ], [ -75.136455086426167, 39.179334322128256 ], [ -75.139182848683404, 39.179939398931893 ], [ -75.165914918804347, 39.201923856130698 ], [ -75.16482381390145, 39.216647391685861 ], [ -75.170552114641652, 39.23459800352709 ], [ -75.177371520284751, 39.242665694242248 ], [ -75.205740247760048, 39.262633228762269 ], [ -75.212559653403133, 39.262834921030148 ], [ -75.241746709555599, 39.274129688031366 ], [ -75.243928919361394, 39.27776014885319 ], [ -75.242837814458483, 39.280583840603491 ], [ -75.244474471812836, 39.285626147300462 ], [ -75.251839429907378, 39.299946298319874 ], [ -75.271752094385221, 39.30398014367745 ], [ -75.282663143414183, 39.299139529248357 ], [ -75.28539090567142, 39.292281992140474 ], [ -75.288936996605827, 39.289458300390166 ], [ -75.306121898826433, 39.301761528730779 ], [ -75.315123514275328, 39.310635988517461 ], [ -75.32685289198146, 39.33241875344838 ], [ -75.327398444432902, 39.339276290556271 ], [ -75.33367229762456, 39.345327058592638 ], [ -75.341855584396271, 39.348755827146576 ], [ -75.35549439568247, 39.347747365807187 ], [ -75.365041563582807, 39.341293213235062 ], [ -75.390136976349396, 39.358235363736895 ], [ -75.394228619735259, 39.363681054969625 ], [ -75.395046948412443, 39.371345361149025 ], [ -75.399411368024019, 39.379413051864184 ], [ -75.407321878570016, 39.382035051346605 ], [ -75.422051794759113, 39.386472281239946 ], [ -75.431871738885164, 39.391716280204804 ], [ -75.442510011688398, 39.402204278134505 ], [ -75.465150438423478, 39.43891227088848 ], [ -75.476334263678154, 39.438105501816963 ], [ -75.48369922177271, 39.440727501299385 ], [ -75.505794096056349, 39.452829037372126 ], [ -75.508249082087872, 39.459081497676372 ], [ -75.536345033337426, 39.460493343551519 ], [ -75.542891662754798, 39.470376264677597 ], [ -75.544255543883423, 39.479654109000023 ], [ -75.542618886529084, 39.496596259501857 ], [ -75.528161746565701, 39.49820979764489 ], [ -75.527070641662817, 39.500025028055802 ], [ -75.514795711505229, 39.562549631098278 ], [ -75.512067949248006, 39.567591937795257 ], [ -75.512613501699434, 39.578079935724958 ], [ -75.525706760534192, 39.584130703761332 ], [ -75.53116228504868, 39.587962856851028 ], [ -75.534435599757359, 39.590383164065571 ], [ -75.537163362014596, 39.593005163548 ], [ -75.539618348046105, 39.594215317155275 ], [ -75.539891124271833, 39.594417009423154 ], [ -75.543982767657695, 39.596030547566187 ], [ -75.545346648786307, 39.596837316637703 ], [ -75.555984921589555, 39.60591346869225 ], [ -75.559531012523962, 39.629713156301975 ], [ -75.526797865437089, 39.655731458858355 ], [ -75.526252312985633, 39.656336535661993 ], [ -75.509340186990755, 39.68538022223656 ], [ -75.509612963216483, 39.686186991308077 ], [ -75.504157438702009, 39.698288527380818 ], [ -75.475515935000999, 39.73096267477721 ], [ -75.474152053872373, 39.735399904670544 ], [ -75.469242081809341, 39.743669287653589 ], [ -75.466241543326376, 39.750728517029344 ], [ -75.466241543326376, 39.750728517029344 ], [ -75.4482383124286, 39.773923127835431 ], [ -75.440600578108331, 39.780982357211194 ], [ -75.437872815851094, 39.783402664425736 ], [ -75.416050717793183, 39.795907585034236 ], [ -75.414959612890286, 39.801756660802724 ], [ -75.390136976349396, 39.816480196357887 ], [ -75.374588731483144, 39.82575804068032 ], [ -75.306394675052161, 39.849759420557916 ], [ -75.271206541933779, 39.849356036022158 ], [ -75.234927303912499, 39.856616957665807 ], [ -75.210922996048794, 39.865693109720354 ], [ -75.210377443597338, 39.865894801988233 ], [ -75.185009254605021, 39.881626798882792 ], [ -75.153912764872501, 39.906233255564025 ], [ -75.133181771717474, 39.922570329262221 ], [ -75.085718708441519, 39.967547704999234 ], [ -75.072079897155319, 39.980657702411364 ], [ -75.055986099837611, 39.991750777144702 ], [ -75.014251337301857, 40.020996155987156 ], [ -74.974698784571885, 40.048627996686577 ], [ -74.974426008346157, 40.048829688954456 ], [ -74.900230874949244, 40.077066606457507 ], [ -74.838037895484206, 40.100866294067224 ], [ -74.740656782900771, 40.135153979606642 ], [ -74.724290209357321, 40.147053823411504 ], [ -74.724290209357321, 40.147255515679383 ], [ -74.721562447100098, 40.153709668251508 ], [ -74.722380775777253, 40.160567205359399 ], [ -74.758660013798533, 40.201309043470943 ], [ -74.770662167730393, 40.214822425418831 ], [ -74.860405545993558, 40.284607950104956 ], [ -74.937873994099164, 40.340678400575307 ], [ -75.024889610105078, 40.403404695885662 ], [ -75.035527882908326, 40.40622838763597 ], [ -75.058713862094848, 40.418128231440832 ], [ -75.061441624352085, 40.422767153602038 ], [ -75.07044323980098, 40.455239608730551 ], [ -75.065806043963676, 40.519579442183939 ], [ -75.064987715286492, 40.526235287023951 ], [ -75.067442701318015, 40.536521592685773 ], [ -75.068533806220913, 40.542168976186389 ], [ -75.100448624630616, 40.567783894207011 ], [ -75.117360750625494, 40.573229585439748 ], [ -75.13536398152327, 40.575649892654297 ], [ -75.147366135455115, 40.573229585439748 ], [ -75.190192002893781, 40.589364966870065 ], [ -75.190737555345223, 40.591381889548856 ], [ -75.196738632311153, 40.608525732318569 ], [ -75.200830275697001, 40.618408653444632 ], [ -75.20383081417998, 40.691421254416817 ], [ -75.196465856085425, 40.751727242512629 ], [ -75.171643219544549, 40.77774554506901 ], [ -75.163732708998566, 40.778350621872647 ], [ -75.149275569035183, 40.77472016105083 ], [ -75.134272876620372, 40.773711699711434 ], [ -75.108631911402327, 40.791057234749026 ], [ -75.05325833758036, 40.859834298095748 ], [ -75.051076127774579, 40.865683373864243 ], [ -75.052440008903204, 40.872137526436362 ], [ -75.117633526851222, 40.953016125855825 ], [ -75.119815736657003, 40.961688893374628 ], [ -75.120361289108445, 40.962697354714024 ], [ -75.120361289108445, 40.968344738214626 ], [ -75.120634065334173, 40.968344738214626 ], [ -75.131272338137407, 40.969353199554021 ], [ -75.135636757748983, 40.973790429447362 ], [ -75.130454009460237, 40.991135964484954 ], [ -75.109177463853769, 41.004044269629205 ], [ -75.091447009181721, 41.012313652612242 ], [ -75.069352134898082, 41.019372881988005 ], [ -75.051894456451748, 41.027238880435291 ], [ -75.036891764036938, 41.034701494346805 ], [ -75.025980715007975, 41.042769185061971 ], [ -74.980699861537801, 41.078267024208664 ], [ -74.968424931380241, 41.087746560798976 ], [ -74.966788274025888, 41.093393944299585 ], [ -74.967333826477329, 41.093999021103222 ], [ -74.969516036283125, 41.096015943782014 ], [ -74.974426008346157, 41.103881942229293 ], [ -74.923144077910052, 41.138169627768718 ], [ -74.882227644051483, 41.180928388559053 ], [ -74.867224951636658, 41.208761921526346 ], [ -74.864224413153693, 41.224897302956663 ], [ -74.867224951636658, 41.228931148314246 ], [ -74.861769427122184, 41.241637761190617 ], [ -74.838310671709934, 41.277337292605196 ], [ -74.830127384938208, 41.287220213731267 ], [ -74.795757580496996, 41.318885899788263 ], [ -74.761660552281512, 41.336433127093734 ], [ -74.694830376979155, 41.357409122953143 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "29", "geo_id": "0400000US37", "fips_state": "37", "name": "North Carolina", "iso_3166_2": "NC", "census": 9535483, "pop_estimataes_base": 9535691, "pop_2010": 9559488, "pop_2011": 9651502, "pop_2012": 9748181, "pop_2013": 9848917, "pop_2014": 9943964 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.753747685239389, 35.199542492340612 ], [ -75.74529162224195, 35.202971260894557 ], [ -75.734107796987274, 35.204383106769711 ], [ -75.718013999669552, 35.209425413466683 ], [ -75.709012384220671, 35.213862643360017 ], [ -75.698919663868878, 35.221123565003666 ], [ -75.694555244257288, 35.222938795414571 ], [ -75.687463062388474, 35.231208178397608 ], [ -75.683916971454067, 35.232821716540641 ], [ -75.682007537874, 35.232821716540641 ], [ -75.675460908456614, 35.2283844866473 ], [ -75.664549859427666, 35.227577717575791 ], [ -75.640818327789688, 35.233830177880037 ], [ -75.630452831212182, 35.23846910004125 ], [ -75.615450138797371, 35.248957097970958 ], [ -75.59908356525392, 35.2562180196146 ], [ -75.598265236576751, 35.261058634043692 ], [ -75.597992460351037, 35.266706017544308 ], [ -75.596901355448125, 35.269529709294616 ], [ -75.585444753967721, 35.26630263300855 ], [ -75.581898663033314, 35.263882325794 ], [ -75.561167669878301, 35.266100940740671 ], [ -75.53579948088597, 35.272756785580675 ], [ -75.529525627694326, 35.288287090207355 ], [ -75.524070103179852, 35.318137545853439 ], [ -75.518614578665364, 35.336289849962547 ], [ -75.512613501699434, 35.362913229322572 ], [ -75.506612424733518, 35.387116301468048 ], [ -75.500338571541874, 35.424227678757774 ], [ -75.4948830470274, 35.454279826671737 ], [ -75.487790865158559, 35.485138743657217 ], [ -75.488609193835742, 35.497845356533595 ], [ -75.489700298738626, 35.508535046731183 ], [ -75.487518088932845, 35.525880581768774 ], [ -75.482335340644084, 35.538587194645146 ], [ -75.47851647348395, 35.55310903793243 ], [ -75.47851647348395, 35.59929656727671 ], [ -75.481244235741201, 35.622894562618548 ], [ -75.487790865158559, 35.648307788371298 ], [ -75.498701914187535, 35.666258400212527 ], [ -75.507430753410688, 35.680578551231932 ], [ -75.515614040182413, 35.721723773879241 ], [ -75.515341263956685, 35.730396541398036 ], [ -75.533617271080189, 35.77355868672413 ], [ -75.528980075242885, 35.776382378474437 ], [ -75.522160669599785, 35.774163763527767 ], [ -75.50252078134767, 35.742901462006529 ], [ -75.495974151930284, 35.728581310987124 ], [ -75.479062025935406, 35.67856162855314 ], [ -75.458603809006107, 35.596674567794281 ], [ -75.459967690134732, 35.581345955435481 ], [ -75.462422676166241, 35.553512422468188 ], [ -75.471424291615136, 35.479693052424487 ], [ -75.486699760255675, 35.391553531361382 ], [ -75.502248005121942, 35.319952776264351 ], [ -75.52597953675992, 35.233830177880037 ], [ -75.533617271080189, 35.225762487164879 ], [ -75.544801096334865, 35.2283844866473 ], [ -75.560349341201132, 35.232014947469125 ], [ -75.580262005678975, 35.231208178397608 ], [ -75.609994614282883, 35.227577717575791 ], [ -75.6353628032752, 35.220316795932149 ], [ -75.672733146199391, 35.208416952127287 ], [ -75.7289250486985, 35.190264648018179 ], [ -75.749383265627813, 35.185222341321207 ], [ -75.757839328625238, 35.183003726374537 ], [ -75.76956870633137, 35.180381726892108 ], [ -75.789754147034941, 35.172112343909077 ], [ -75.84049052501959, 35.15133804031754 ], [ -75.913049001062149, 35.119672354260544 ], [ -75.944691043246124, 35.10515051097326 ], [ -75.963785379046811, 35.092443898096889 ], [ -75.982879714847485, 35.081552515631422 ], [ -76.001428498196702, 35.067232364612018 ], [ -76.013157875902834, 35.061786673379281 ], [ -76.015067309482902, 35.065417134201105 ], [ -76.013430652128562, 35.068845902755044 ], [ -76.000882945745246, 35.084174515113844 ], [ -75.991881330296366, 35.092443898096889 ], [ -75.989153568039129, 35.100914973347798 ], [ -75.990517449167754, 35.108579279527206 ], [ -75.989153568039129, 35.11523512436721 ], [ -75.983970819750368, 35.120075738796302 ], [ -75.973605323172862, 35.121084200135698 ], [ -75.966513141304034, 35.117857123849632 ], [ -75.954783763597902, 35.119672354260544 ], [ -75.923960050091111, 35.135000966619344 ], [ -75.910321238804912, 35.142261888262986 ], [ -75.893954665261475, 35.150531271246024 ], [ -75.839399420116706, 35.172112343909077 ], [ -75.819213979413121, 35.176751266070291 ], [ -75.812940126221477, 35.178566496481203 ], [ -75.801483524741073, 35.183003726374537 ], [ -75.793300237969362, 35.188449417607274 ], [ -75.785662503649093, 35.194298493375761 ], [ -75.754293237690831, 35.199340800072733 ], [ -75.753747685239389, 35.199542492340612 ] ] ], [ [ [ -75.6751881322309, 35.929063425258811 ], [ -75.659639887364634, 35.919583888668498 ], [ -75.662913202073327, 35.91615512011456 ], [ -75.662094873396143, 35.906473891256368 ], [ -75.65336603417299, 35.904658660845456 ], [ -75.648456062109958, 35.907078968060006 ], [ -75.645182747401265, 35.905868814452731 ], [ -75.627725068954931, 35.88307758818241 ], [ -75.616814019925982, 35.856252516554505 ], [ -75.619814558408933, 35.84757974903571 ], [ -75.614359033894459, 35.815712370710834 ], [ -75.620360110860389, 35.809258218138709 ], [ -75.624178978020524, 35.809459910406588 ], [ -75.638908894209621, 35.818737754729021 ], [ -75.667823174136345, 35.823578369158113 ], [ -75.6751881322309, 35.830234213998125 ], [ -75.660185439816075, 35.838705289249035 ], [ -75.660730992267531, 35.862504976858759 ], [ -75.663458754524768, 35.869765898502393 ], [ -75.672733146199391, 35.882472511378772 ], [ -75.681461985422544, 35.883884357253926 ], [ -75.697555782740267, 35.901633276827269 ], [ -75.696737454063083, 35.909499275274555 ], [ -75.702192978577557, 35.915348351043043 ], [ -75.723742300409754, 35.925634656704872 ], [ -75.72728839134416, 35.933702347420024 ], [ -75.726742838892719, 35.935920962366694 ], [ -75.71828677589528, 35.939753115456398 ], [ -75.705193517060536, 35.93934973092064 ], [ -75.691281929548609, 35.93692942370609 ], [ -75.686371957485576, 35.932895578348514 ], [ -75.6751881322309, 35.929063425258811 ] ] ], [ [ [ -75.866949818914804, 36.550678994861769 ], [ -75.856857098563026, 36.500054235624148 ], [ -75.835035000505115, 36.42260440475863 ], [ -75.818668426961679, 36.357659494501604 ], [ -75.796300776452313, 36.290294277030029 ], [ -75.773387573491505, 36.231601827077256 ], [ -75.772569244814335, 36.229383212130585 ], [ -75.759748762205305, 36.204776755449352 ], [ -75.738472216598836, 36.15435368847961 ], [ -75.71828677589528, 36.113611850368059 ], [ -75.696737454063083, 36.077508934417729 ], [ -75.658548782461736, 36.020430022607982 ], [ -75.569896509101468, 35.863311745930268 ], [ -75.552166054429421, 35.822166523282959 ], [ -75.538800019368949, 35.797358374333854 ], [ -75.533071718628747, 35.787475453207783 ], [ -75.536345033337426, 35.780214531564141 ], [ -75.543164438980526, 35.779609454760504 ], [ -75.546710529914932, 35.787475453207783 ], [ -75.55380271178376, 35.799375297012638 ], [ -75.566350418167048, 35.813090371228412 ], [ -75.573169823810161, 35.828822368122971 ], [ -75.588990844902142, 35.844957749553288 ], [ -75.601265775059716, 35.867345591287851 ], [ -75.619269005957506, 35.889330048486656 ], [ -75.61708679615171, 35.90607050672061 ], [ -75.617632348603152, 35.914138197435769 ], [ -75.620087334634661, 35.925231272169114 ], [ -75.631271159889337, 35.94156834586731 ], [ -75.649001614561399, 35.965771418012778 ], [ -75.668368726587801, 35.978478030889157 ], [ -75.671914817522207, 35.985335567997041 ], [ -75.679006999391035, 35.994008335515836 ], [ -75.723742300409754, 36.003084487570391 ], [ -75.727015615118432, 36.010547101481912 ], [ -75.726470062667005, 36.02103509941162 ], [ -75.722105643055414, 36.032329866412837 ], [ -75.72265119550687, 36.037372173109816 ], [ -75.726742838892719, 36.040599249395875 ], [ -75.737108335470225, 36.040800941663754 ], [ -75.740381650178904, 36.046851709700121 ], [ -75.741472755081816, 36.055524477218924 ], [ -75.739563321501748, 36.066819244220142 ], [ -75.739836097727476, 36.075290319471058 ], [ -75.750201594304968, 36.12107446427958 ], [ -75.750474370530696, 36.13115907767353 ], [ -75.752111027885036, 36.140840306531722 ], [ -75.755657118819457, 36.153950303943851 ], [ -75.775842559523028, 36.201146294627527 ], [ -75.783753070069025, 36.215869830182697 ], [ -75.793300237969362, 36.226357828112398 ], [ -75.794391342872245, 36.227366289451794 ], [ -75.798482986258108, 36.230795058005739 ], [ -75.803665734546854, 36.235837364702711 ], [ -75.811576245092851, 36.244106747685748 ], [ -75.811849021318579, 36.247737208507573 ], [ -75.808030154158445, 36.259637052312428 ], [ -75.814576783575816, 36.285251970333057 ], [ -75.823032846573255, 36.291706122905182 ], [ -75.833943895602218, 36.292109507440941 ], [ -75.838035538988066, 36.29452981465549 ], [ -75.845400497082622, 36.305622889388829 ], [ -75.841308853696773, 36.328615807927029 ], [ -75.831761685796423, 36.339103805856737 ], [ -75.831488909570709, 36.346364727500379 ], [ -75.836126105407999, 36.363105185734334 ], [ -75.842945511051113, 36.370971184181613 ], [ -75.847309930662689, 36.372181337788888 ], [ -75.851401574048538, 36.37944225943253 ], [ -75.85249267895145, 36.38468625839738 ], [ -75.851401574048538, 36.415746867650739 ], [ -75.864222056657582, 36.430470403205909 ], [ -75.880315853975276, 36.43571440217076 ], [ -75.888226364521273, 36.441563477939248 ], [ -75.891499679229966, 36.460522551119873 ], [ -75.899955742227405, 36.482103623782919 ], [ -75.907320700321947, 36.485734084604744 ], [ -75.913049001062149, 36.486339161408381 ], [ -75.917413420673739, 36.485734084604744 ], [ -75.924232826316825, 36.482103623782919 ], [ -75.927233364799804, 36.482910392854436 ], [ -75.935416651571515, 36.490574699033836 ], [ -75.959966511886677, 36.49501192892717 ], [ -75.972514218269964, 36.494608544391419 ], [ -76.003610708002498, 36.506306695928394 ], [ -76.019158952868764, 36.503483004178094 ], [ -76.023523372480341, 36.500861004695665 ], [ -76.029251673220543, 36.494406852123539 ], [ -76.03197943547778, 36.482507008318677 ], [ -76.020250057771648, 36.45870732070896 ], [ -76.01233954722565, 36.447412553707736 ], [ -76.003883484228226, 36.441765170207127 ], [ -75.989971896716298, 36.436722863510155 ], [ -75.980151952590234, 36.435512709902881 ], [ -75.962148721692458, 36.417158713525893 ], [ -75.940599399860275, 36.418772251668926 ], [ -75.936507756474413, 36.423007789294388 ], [ -75.932688889314278, 36.427646711455601 ], [ -75.928324469702687, 36.428655172794997 ], [ -75.923687273865383, 36.425831481044689 ], [ -75.916322315770842, 36.388921796022842 ], [ -75.916867868222283, 36.383072720254347 ], [ -75.923414497639669, 36.367744107895547 ], [ -75.923414497639669, 36.361895032127059 ], [ -75.917686196899467, 36.353625649144021 ], [ -75.915231210867944, 36.352415495536746 ], [ -75.895318546390101, 36.319539655872475 ], [ -75.888226364521273, 36.293319661048216 ], [ -75.882225287555343, 36.28464689352942 ], [ -75.872678119655006, 36.282831663118507 ], [ -75.865040385334737, 36.28464689352942 ], [ -75.860403189497447, 36.280613048171837 ], [ -75.861767070626058, 36.266494589420311 ], [ -75.867222595140532, 36.252577822936665 ], [ -75.864222056657582, 36.235433980166952 ], [ -75.858766532143093, 36.222727367290574 ], [ -75.848946588017043, 36.216474906986328 ], [ -75.838308315213794, 36.200137833288132 ], [ -75.841308853696773, 36.193885372983885 ], [ -75.839944972568134, 36.177144914749931 ], [ -75.823851175250439, 36.158387533837185 ], [ -75.822487294121814, 36.145882613228693 ], [ -75.813485678672919, 36.136806461174139 ], [ -75.800392419838175, 36.112805081296543 ], [ -75.791663580615008, 36.082349548846821 ], [ -75.793845790420804, 36.071659858649241 ], [ -75.799846867386719, 36.07266831998863 ], [ -75.836126105407999, 36.09263585450865 ], [ -75.847855483114131, 36.101913698831083 ], [ -75.867768147591988, 36.127326924583826 ], [ -75.866404266463363, 36.141445383335359 ], [ -75.86749537136626, 36.151126612193551 ], [ -75.869950357397784, 36.154555380747489 ], [ -75.87513310568653, 36.157379072497797 ], [ -75.887408035844103, 36.160202764248098 ], [ -75.904865714290437, 36.16423660960568 ], [ -75.920141182930976, 36.164841686409318 ], [ -75.924778378768281, 36.163631532802043 ], [ -75.938962742505922, 36.165446763212955 ], [ -75.995154645005044, 36.178153376089327 ], [ -76.016976743062969, 36.186422759072364 ], [ -76.018886176643036, 36.188237989483277 ], [ -76.031706659252052, 36.189044758554793 ], [ -76.046982127892591, 36.183195682786305 ], [ -76.051619323729909, 36.181380452375393 ], [ -76.063621477661755, 36.173514453928114 ], [ -76.065258135016109, 36.170690762177806 ], [ -76.065530911241822, 36.165245070945076 ], [ -76.05980261050162, 36.155160457551126 ], [ -76.059257058050179, 36.149311381782638 ], [ -76.064167030113197, 36.143865690549902 ], [ -76.071804764433466, 36.140235229728084 ], [ -76.092535757588493, 36.13579799983475 ], [ -76.179005821142965, 36.12349477149413 ], [ -76.184188569431726, 36.121477848815339 ], [ -76.190462422623369, 36.116233849850488 ], [ -76.190735198849097, 36.116032157582609 ], [ -76.192371856203437, 36.11341015810018 ], [ -76.191826303751995, 36.107157697795934 ], [ -76.21664894029287, 36.095459546258951 ], [ -76.238743814576509, 36.098484930277138 ], [ -76.264930332245996, 36.104939082849263 ], [ -76.287025206529648, 36.104939082849263 ], [ -76.29875458423578, 36.101106929759567 ], [ -76.303937332524526, 36.092837546776529 ], [ -76.323577220776656, 36.08497154832925 ], [ -76.332033283774081, 36.083761394721975 ], [ -76.337216032062841, 36.086383394204404 ], [ -76.354946486734889, 36.086383394204404 ], [ -76.410865613008298, 36.078114011221359 ], [ -76.411956717911195, 36.075290319471058 ], [ -76.413047822814093, 36.072264935452871 ], [ -76.42095833336009, 36.060566783915895 ], [ -76.443053207643715, 36.042817864342545 ], [ -76.451509270641168, 36.038985711252849 ], [ -76.458874228735709, 36.028094328787382 ], [ -76.459419781187165, 36.024262175697679 ], [ -76.49188015204831, 36.018009715393433 ], [ -76.514247802557662, 36.005706487052819 ], [ -76.547526502095991, 36.009942024678274 ], [ -76.563347523187971, 36.009942024678274 ], [ -76.575895229571273, 36.006109871588578 ], [ -76.580805201634291, 36.007320025195853 ], [ -76.589534040857473, 36.015589408178883 ], [ -76.603718404595099, 36.032934943216475 ], [ -76.615447782301231, 36.037775557645574 ], [ -76.631814355844682, 36.038380634449211 ], [ -76.65336367767685, 36.035153558163145 ], [ -76.668911922543117, 36.02103509941162 ], [ -76.671639684800368, 36.018211407661312 ], [ -76.68500571986084, 36.009942024678274 ], [ -76.683914614957942, 36.000462488087962 ], [ -76.679550195346366, 35.991991412837045 ], [ -76.68500571986084, 35.982915260782491 ], [ -76.695371216438346, 35.973435724192186 ], [ -76.700281188501378, 35.964561264405511 ], [ -76.697553426244127, 35.951854651529132 ], [ -76.692370677955381, 35.945400498957007 ], [ -76.691825125503925, 35.94459372988549 ], [ -76.673821894606164, 35.935114193295178 ], [ -76.667548041414506, 35.933500655152145 ], [ -76.656909768611271, 35.935114193295178 ], [ -76.60808282420669, 35.936727731438211 ], [ -76.603718404595099, 35.939753115456398 ], [ -76.587079054825949, 35.941971730403068 ], [ -76.528432166295318, 35.943988653081853 ], [ -76.507428396914563, 35.949837728850341 ], [ -76.497062900337056, 35.955081727815198 ], [ -76.47387692115052, 35.960930803583686 ], [ -76.460510886090049, 35.970410340173999 ], [ -76.398317906624996, 35.984327106657645 ], [ -76.389861843627557, 35.98009156903219 ], [ -76.38195133308156, 35.971620493781273 ], [ -76.381405780630118, 35.962746033994598 ], [ -76.365311983312409, 35.944795422153369 ], [ -76.362856997280886, 35.942173422670948 ], [ -76.340216570545806, 35.943181884010343 ], [ -76.317576143810726, 35.94701403710004 ], [ -76.272295290340551, 35.972830647388548 ], [ -76.213921178035633, 35.987957567479469 ], [ -76.176550835111456, 35.99320156644432 ], [ -76.093626862491391, 35.992999874176441 ], [ -76.08326136591387, 35.989772797890382 ], [ -76.061984820307401, 35.992999874176441 ], [ -76.024068924931782, 35.970813724709757 ], [ -76.014794533257174, 35.960325726780049 ], [ -76.014248980805718, 35.957300342761869 ], [ -76.01997728154592, 35.934105731955782 ], [ -76.011521218548495, 35.913936505167889 ], [ -76.004701812905381, 35.905062045381214 ], [ -75.999519064616635, 35.903448507238181 ], [ -75.977696966558725, 35.897196046933935 ], [ -75.966240365078306, 35.899212969612726 ], [ -75.9626942741439, 35.90143158455939 ], [ -75.947691581729089, 35.920390657740015 ], [ -75.934052770442889, 35.928256656187294 ], [ -75.929961127057027, 35.928861732990931 ], [ -75.927233364799804, 35.931887117009119 ], [ -75.926687812348348, 35.940358192260035 ], [ -75.937871637603024, 35.950846190189736 ], [ -75.943599938343226, 35.952459728332769 ], [ -75.946873253051919, 35.955686804618836 ], [ -75.947418805503361, 35.95992234224429 ], [ -75.93841719005448, 35.965166341209148 ], [ -75.899410189775949, 35.977267877281882 ], [ -75.87949752529812, 35.978881415424915 ], [ -75.860403189497447, 35.978276338621278 ], [ -75.849764916694198, 35.976057723674607 ], [ -75.809394035287056, 35.95931726544066 ], [ -75.80502961567548, 35.954073266475802 ], [ -75.800937972289631, 35.94459372988549 ], [ -75.7823891889404, 35.935517577830936 ], [ -75.7823891889404, 35.928256656187294 ], [ -75.778843098005979, 35.918172042793344 ], [ -75.7687503776542, 35.90143158455939 ], [ -75.751838251659322, 35.878236973753317 ], [ -75.75292935656222, 35.871379436645427 ], [ -75.748292160724901, 35.852420363464809 ], [ -75.734653349438702, 35.839310366052672 ], [ -75.72728839134416, 35.822771600086597 ], [ -75.726742838892719, 35.8112751408175 ], [ -75.732743915858634, 35.790702529493842 ], [ -75.738199440373123, 35.778399301153229 ], [ -75.73929054527602, 35.770936687241708 ], [ -75.735471678115886, 35.767709610955642 ], [ -75.724833405312651, 35.742901462006529 ], [ -75.719105104572449, 35.71426115996772 ], [ -75.715286237412315, 35.708008699663473 ], [ -75.712831251380805, 35.698529163073161 ], [ -75.713376803832247, 35.69409193317982 ], [ -75.741472755081816, 35.672107475981015 ], [ -75.742291083758971, 35.655165325479182 ], [ -75.737108335470225, 35.638424867245234 ], [ -75.729743377375684, 35.628743638387036 ], [ -75.729743377375684, 35.625919946636735 ], [ -75.747201055822018, 35.610187949742176 ], [ -75.763022076913998, 35.603532104902172 ], [ -75.778024769328823, 35.592237337900947 ], [ -75.775297007071572, 35.579329032756696 ], [ -75.797119105129497, 35.574286726059725 ], [ -75.837217210310911, 35.57085795750578 ], [ -75.851674350274266, 35.578723955953059 ], [ -75.859584860820263, 35.586589954400338 ], [ -75.869950357397784, 35.582757801310635 ], [ -75.895045770164373, 35.57307657245245 ], [ -75.906775147870505, 35.559159805968797 ], [ -75.908411805224844, 35.555125960611221 ], [ -75.908411805224844, 35.546251500824546 ], [ -75.916322315770842, 35.538385502377267 ], [ -75.945509371923293, 35.534351657019684 ], [ -75.950146567760612, 35.530922888465746 ], [ -75.954510987372188, 35.526485658572405 ], [ -75.964058155272525, 35.511358738481483 ], [ -75.964603707723967, 35.5045012013736 ], [ -75.961875945466744, 35.496635202926321 ], [ -75.962967050369627, 35.49381151117602 ], [ -75.987244134459061, 35.484331974585707 ], [ -75.9957001974565, 35.475255822531153 ], [ -75.994609092553603, 35.46355767099417 ], [ -75.997882407262296, 35.45347305760022 ], [ -76.009611784968428, 35.442178290599003 ], [ -76.012612323451378, 35.43269875400869 ], [ -76.011521218548495, 35.423017525150499 ], [ -76.014794533257174, 35.416966757114132 ], [ -76.021068386448832, 35.410714296809886 ], [ -76.025432806060408, 35.408495681863215 ], [ -76.037162183766526, 35.414143065363831 ], [ -76.050255442601284, 35.415756603506857 ], [ -76.05980261050162, 35.410109220006248 ], [ -76.063621477661755, 35.40506691330927 ], [ -76.063621477661755, 35.398411068469265 ], [ -76.060893715404518, 35.392763684968656 ], [ -76.05980261050162, 35.383687532914102 ], [ -76.069349778401957, 35.370779227769852 ], [ -76.092808533814207, 35.361299691179539 ], [ -76.123359471095284, 35.351215077785589 ], [ -76.132906638995621, 35.349399847374684 ], [ -76.142999359347414, 35.338710157177097 ], [ -76.142999359347414, 35.328625543783147 ], [ -76.149545988764785, 35.326406928836477 ], [ -76.165367009856766, 35.328625543783147 ], [ -76.168640324565459, 35.332054312337092 ], [ -76.182279135851658, 35.336491542230426 ], [ -76.205737891263908, 35.336491542230426 ], [ -76.235197723642102, 35.350004924178322 ], [ -76.253200954539878, 35.350004924178322 ], [ -76.257565374151454, 35.344357540677706 ], [ -76.265475884697452, 35.34334907933831 ], [ -76.28238801069233, 35.345567694284981 ], [ -76.304755661201696, 35.35565230767893 ], [ -76.327396087936791, 35.356862461286198 ], [ -76.33503382225706, 35.35565230767893 ], [ -76.340762122997262, 35.346576155624376 ], [ -76.349763738446143, 35.345567694284981 ], [ -76.365584759538137, 35.348794770571047 ], [ -76.374586374987018, 35.35565230767893 ], [ -76.382224109307288, 35.356862461286198 ], [ -76.38795241004749, 35.356862461286198 ], [ -76.399136235302166, 35.348794770571047 ], [ -76.408137850751061, 35.350004924178322 ], [ -76.409228955653958, 35.35343369273226 ], [ -76.420685557134362, 35.359081076232869 ], [ -76.431869382389038, 35.362308152518935 ], [ -76.436233802000629, 35.378040149413494 ], [ -76.448781508383917, 35.383687532914102 ], [ -76.455328137801303, 35.383687532914102 ], [ -76.462147543444388, 35.380460456628043 ], [ -76.472240263796181, 35.371384304573489 ], [ -76.48587907508238, 35.371384304573489 ], [ -76.499245110142851, 35.381468917967439 ], [ -76.521612760652204, 35.391553531361382 ], [ -76.546980949644535, 35.389738300950469 ], [ -76.58025964918285, 35.387116301468048 ], [ -76.606173390626623, 35.387116301468048 ], [ -76.620630530589992, 35.378040149413494 ], [ -76.627995488684533, 35.368560612823181 ], [ -76.628541041135975, 35.367955536019544 ], [ -76.619539425687094, 35.345567694284981 ], [ -76.605082285723725, 35.337701695837701 ], [ -76.602627299692216, 35.336491542230426 ], [ -76.588170159728847, 35.333062773676488 ], [ -76.554345907739076, 35.332054312337092 ], [ -76.548617606998874, 35.328625543783147 ], [ -76.500336215045735, 35.321969698943143 ], [ -76.482332984147973, 35.314103700495863 ], [ -76.472240263796181, 35.294942935047359 ], [ -76.46787584418459, 35.27699232320613 ], [ -76.46787584418459, 35.261260326311572 ], [ -76.477968564536383, 35.24330971447035 ], [ -76.483424089050857, 35.2408894072558 ], [ -76.490243494693956, 35.233023408808521 ], [ -76.491334599596854, 35.220720180467907 ], [ -76.494880690531261, 35.212854182020621 ], [ -76.504973410883053, 35.207206798520012 ], [ -76.521612760652204, 35.192684955232728 ], [ -76.536342676841301, 35.174734343391499 ], [ -76.539615991549994, 35.16686834494422 ], [ -76.536342676841301, 35.149926194442386 ], [ -76.536342676841301, 35.142060195995107 ], [ -76.546435397193079, 35.12289943054661 ], [ -76.557619222447769, 35.116243585706599 ], [ -76.561165313382176, 35.108377587259326 ], [ -76.569075823928173, 35.097082820258102 ], [ -76.575622453345545, 35.092645590364768 ], [ -76.586806278600221, 35.092645590364768 ], [ -76.592534579340423, 35.083569438310207 ], [ -76.593625684243321, 35.075703439862934 ], [ -76.600445089886421, 35.067837441415648 ], [ -76.613811124946892, 35.061181596575651 ], [ -76.622812740395773, 35.061181596575651 ], [ -76.631814355844682, 35.05654267441443 ], [ -76.639724866390665, 35.051096983181701 ], [ -76.646544272033765, 35.042020831127147 ], [ -76.646544272033765, 35.025078680625313 ], [ -76.644634838453698, 35.019834681660456 ], [ -76.641907076196446, 35.0127754522847 ], [ -76.628541041135975, 34.994824840443471 ], [ -76.588170159728847, 34.991396071889525 ], [ -76.566620837896664, 34.998253608997409 ], [ -76.539615991549994, 35.00047222394408 ], [ -76.50251842485153, 35.007128068784084 ], [ -76.495971795434158, 35.011565298677425 ], [ -76.491334599596854, 35.017212682178034 ], [ -76.490243494693956, 35.034154832679867 ], [ -76.480150774342178, 35.052105444521089 ], [ -76.474422473601976, 35.070056056362318 ], [ -76.468694172861774, 35.075300055327176 ], [ -76.463511424573014, 35.076510208934451 ], [ -76.435688249549173, 35.057954520289584 ], [ -76.432687711066222, 35.049080060502909 ], [ -76.431869382389038, 35.030927756393801 ], [ -76.425595529197381, 35.001480685283475 ], [ -76.406228417170993, 34.987160534264071 ], [ -76.398590682850724, 34.976672536334362 ], [ -76.395590144367759, 34.975260690459208 ], [ -76.332033283774081, 34.970823460565875 ], [ -76.326304983033879, 34.976269151798604 ], [ -76.329578297742572, 34.986958841996191 ], [ -76.350036514671871, 35.016809297642276 ], [ -76.360947563700819, 35.02588544969683 ], [ -76.364493654635226, 35.031331140929559 ], [ -76.364493654635226, 35.034759909483505 ], [ -76.352218724477666, 35.033146371340472 ], [ -76.318667248713609, 35.020641450731972 ], [ -76.293571835947006, 35.009548375998634 ], [ -76.28838908765826, 35.00571622290893 ], [ -76.288661863883988, 34.997245147658013 ], [ -76.290844073689783, 34.994219763639833 ], [ -76.293844612172734, 34.992001148693163 ], [ -76.296299598204257, 34.986757149728312 ], [ -76.296572374429985, 34.976269151798604 ], [ -76.290571297464055, 34.969008230154962 ], [ -76.275568605049244, 34.960940539439804 ], [ -76.27475027637206, 34.953881310064041 ], [ -76.277750814855025, 34.939964543580388 ], [ -76.284024668046669, 34.936737467294328 ], [ -76.311575066844796, 34.910114087934303 ], [ -76.320031129842235, 34.89781085959369 ], [ -76.333942717354148, 34.882078862699132 ], [ -76.347581528640347, 34.872195941573061 ], [ -76.36831252179536, 34.872801018376698 ], [ -76.377041361018541, 34.867557019411848 ], [ -76.379769123275764, 34.862514712714869 ], [ -76.395317368142031, 34.855455483339107 ], [ -76.400227340205063, 34.855455483339107 ], [ -76.411683941685482, 34.841337024587581 ], [ -76.41577558507133, 34.825605027693022 ], [ -76.41577558507133, 34.813503491620281 ], [ -76.403227878688028, 34.806242569976639 ], [ -76.390134619853285, 34.805637493173002 ], [ -76.383860766661627, 34.807856108119672 ], [ -76.373222493858407, 34.817133952442106 ], [ -76.362584221055158, 34.824193181817868 ], [ -76.341307675448704, 34.842748870462735 ], [ -76.322758892099472, 34.861102866839715 ], [ -76.273931947694891, 34.897205782790053 ], [ -76.233561066287763, 34.925846084828862 ], [ -76.19482684223496, 34.962755769850716 ], [ -76.16018426156802, 34.991194379621646 ], [ -76.11190286961488, 35.034558217215626 ], [ -76.093354086265663, 35.048676675967151 ], [ -76.069895330853399, 35.075703439862934 ], [ -76.064985358790381, 35.077115285738088 ], [ -76.043708813183912, 35.070056056362318 ], [ -76.038526064895152, 35.065013749665347 ], [ -76.035798302637915, 35.05896298162898 ], [ -76.072895869336378, 35.030524371858043 ], [ -76.137271058607212, 34.987765611067701 ], [ -76.233015513836307, 34.90547516577309 ], [ -76.310211185716184, 34.852228407053047 ], [ -76.386861305144592, 34.784661497313593 ], [ -76.45041816573827, 34.714472588091716 ], [ -76.494062361854091, 34.662032598443183 ], [ -76.524067746683727, 34.615441684563145 ], [ -76.536069900615587, 34.58861661293524 ], [ -76.55516423641626, 34.616046761366782 ], [ -76.553800355287635, 34.628349989707402 ], [ -76.550527040578942, 34.630770296921945 ], [ -76.549435935676058, 34.645493832477108 ], [ -76.57944132050568, 34.660217368032278 ], [ -76.618721097009924, 34.672520596372891 ], [ -76.642998181099358, 34.677562903069862 ], [ -76.662638069351473, 34.685428901517142 ], [ -76.676276880637673, 34.693093207696542 ], [ -76.693734559083993, 34.692488130892912 ], [ -76.727013258622321, 34.696723668518366 ], [ -76.770111902286686, 34.696925360786246 ], [ -76.817574965562656, 34.693698284500179 ], [ -76.906227238922924, 34.682806902034713 ], [ -76.990242316445887, 34.669696904622583 ], [ -77.031158750304485, 34.661225829371666 ], [ -77.112718841795925, 34.639443064440741 ], [ -77.136723149659645, 34.632988911868615 ], [ -77.169729072972231, 34.622097529403149 ], [ -77.209281625702204, 34.604953686633436 ], [ -77.240923667886179, 34.587406459327966 ], [ -77.322483759377633, 34.535571546483077 ], [ -77.462963515625447, 34.471433405297567 ], [ -77.49187779555217, 34.456104792938767 ], [ -77.518064313221672, 34.440574488312087 ], [ -77.557071313500188, 34.417178185238129 ], [ -77.58243950249252, 34.400437727004174 ], [ -77.635085314057235, 34.359494196624745 ], [ -77.661544607952465, 34.341946969319274 ], [ -77.687185573170495, 34.320365896656227 ], [ -77.713372090839997, 34.294952670903477 ], [ -77.715827076871506, 34.292734055956807 ], [ -77.740104160960939, 34.272564829168914 ], [ -77.764108468824645, 34.24573975754101 ], [ -77.829301986772663, 34.162642543174883 ], [ -77.841849693155964, 34.140658085976071 ], [ -77.870218420631247, 34.07914194427299 ], [ -77.874310064017109, 34.075713175719045 ], [ -77.878128931177244, 34.068048869539645 ], [ -77.915499274101421, 33.971639965493502 ], [ -77.928046980484723, 33.945218278401356 ], [ -77.937321372159332, 33.928679512435288 ], [ -77.946595763833955, 33.912342438737092 ], [ -77.956961260411447, 33.877853060929787 ], [ -77.96023457512014, 33.853246604248554 ], [ -77.970600071697646, 33.844573836729758 ], [ -78.006879309718926, 33.858692295481283 ], [ -78.009879848201905, 33.861314294963712 ], [ -78.009334295750449, 33.867768447535838 ], [ -78.018608687425058, 33.888341058859496 ], [ -78.095531583079207, 33.906089978432846 ], [ -78.136993569389233, 33.912140746469213 ], [ -78.177637227022103, 33.914359361415876 ], [ -78.276109444508435, 33.912342438737092 ], [ -78.383856053669376, 33.901854440807384 ], [ -78.509060341276665, 33.865549832589167 ], [ -78.540975159686354, 33.851027989301883 ], [ -78.650631202427377, 33.944008124794088 ], [ -78.710096419635192, 33.994632884031702 ], [ -78.712278629440988, 33.996649806710494 ], [ -79.071252142493648, 34.299188208528932 ], [ -79.143265066084766, 34.359897581160503 ], [ -79.151448352856477, 34.366755118268387 ], [ -79.190728129360735, 34.399832650200537 ], [ -79.192092010489347, 34.401042803807812 ], [ -79.198911416132447, 34.406690187308421 ], [ -79.323297375062552, 34.514595550623667 ], [ -79.324934032416891, 34.516209088766693 ], [ -79.331207885608535, 34.521856472267309 ], [ -79.358212731955206, 34.545454467609147 ], [ -79.450138320024166, 34.621089068063753 ], [ -79.459685487924503, 34.628955066511033 ], [ -79.461322145278842, 34.630165220118307 ], [ -79.461867697730298, 34.630366912386187 ], [ -79.468687103373398, 34.635409219083158 ], [ -79.471687641856363, 34.63722444949407 ], [ -79.479325376176632, 34.644687063405591 ], [ -79.49023642520558, 34.653763215460145 ], [ -79.519150705132319, 34.677361210801983 ], [ -79.520241810035216, 34.678369672141379 ], [ -79.554338838250715, 34.706404897376558 ], [ -79.561703796345256, 34.712052280877167 ], [ -79.631534510130578, 34.768929500419034 ], [ -79.634262272387815, 34.770946423097826 ], [ -79.687999188855429, 34.804830724101485 ], [ -79.690181398661224, 34.805032416369365 ], [ -79.692909160918447, 34.805032416369365 ], [ -79.744191091354551, 34.805637493173002 ], [ -79.745009420031721, 34.805637493173002 ], [ -79.772832595055561, 34.80604087770876 ], [ -79.773650923732731, 34.805839185440881 ], [ -79.92749671504103, 34.806645954512398 ], [ -80.027332813655974, 34.808662877191189 ], [ -80.042881058522241, 34.809066261726947 ], [ -80.072886443351877, 34.809671338530585 ], [ -80.077250862963453, 34.809671338530585 ], [ -80.09798185611848, 34.810074723066343 ], [ -80.099072961021363, 34.810074723066343 ], [ -80.320294480083462, 34.81390687615604 ], [ -80.399945137994848, 34.815117029763314 ], [ -80.417130040215454, 34.815520414299073 ], [ -80.418493921344066, 34.815722106566952 ], [ -80.419585026246978, 34.815520414299073 ], [ -80.425858879438621, 34.815722106566952 ], [ -80.434860494887516, 34.815923798834831 ], [ -80.448772082399429, 34.816327183370589 ], [ -80.451772620882394, 34.816327183370589 ], [ -80.485596872872151, 34.816730567906347 ], [ -80.561701439849131, 34.817537336977864 ], [ -80.561701439849131, 34.817537336977864 ], [ -80.621166657056932, 34.818142413781501 ], [ -80.626076629119979, 34.818142413781501 ], [ -80.626076629119979, 34.818142413781501 ], [ -80.644625412469196, 34.81854579831726 ], [ -80.646534846049263, 34.81854579831726 ], [ -80.771739133656553, 34.819554259656655 ], [ -80.777740210622468, 34.819755951924535 ], [ -80.796834546423142, 34.825201643157264 ], [ -80.782104630234045, 34.935729005954933 ], [ -80.806381714323479, 34.962957462118595 ], [ -80.806654490549207, 34.963159154386474 ], [ -80.840478742538977, 35.001480685283475 ], [ -80.90649058916415, 35.076510208934451 ], [ -80.90649058916415, 35.07671190120233 ], [ -80.934859316639447, 35.107369125919931 ], [ -80.957772519600255, 35.092645590364768 ], [ -81.041514820897504, 35.044642830609575 ], [ -81.057335841989484, 35.06198836564716 ], [ -81.058154170666654, 35.073283132648385 ], [ -81.057335841989484, 35.086191437792635 ], [ -81.052153093700724, 35.096276051186585 ], [ -81.046424792960522, 35.100713281079919 ], [ -81.036059296383016, 35.103133588294469 ], [ -81.032513205448609, 35.109184356330843 ], [ -81.042878702026115, 35.14609404135269 ], [ -81.043424254477571, 35.148312656299353 ], [ -81.090341765302071, 35.152548193924815 ], [ -81.239277584547338, 35.160010807836336 ], [ -81.241732570578847, 35.160010807836336 ], [ -81.269282969376974, 35.161220961443611 ], [ -81.327929857907606, 35.163439576390282 ], [ -81.366664081960408, 35.164851422265428 ], [ -81.366664081960408, 35.164851422265428 ], [ -81.452315816837711, 35.168280190819374 ], [ -81.461317432286606, 35.168683575355132 ], [ -81.493505026922023, 35.169893728962407 ], [ -81.494323355599192, 35.169893728962407 ], [ -81.768190686226006, 35.180180034624229 ], [ -81.857934064489172, 35.183407110910295 ], [ -81.874300638032622, 35.184012187713932 ], [ -81.969226764584533, 35.187239264 ], [ -82.167807856911537, 35.193693416572124 ], [ -82.176809472360432, 35.193693416572124 ], [ -82.185538311583599, 35.194298493375761 ], [ -82.195358255709664, 35.194903570179399 ], [ -82.216089248864677, 35.196113723786667 ], [ -82.230546388828046, 35.196718800590304 ], [ -82.230819165053759, 35.196718800590304 ], [ -82.257551235174716, 35.198735723269095 ], [ -82.288374948681508, 35.198534031001216 ], [ -82.352477361726642, 35.206601721716375 ], [ -82.384119403910603, 35.210635567073957 ], [ -82.476044991979563, 35.175541112463016 ], [ -82.516961425838161, 35.163036191854523 ], [ -82.517234202063889, 35.162632807318765 ], [ -82.535782985413107, 35.158598961961182 ], [ -82.536601314090277, 35.15920403876482 ], [ -82.57451720946591, 35.144278810941778 ], [ -82.580245510206112, 35.142060195995107 ], [ -82.582154943786179, 35.142261888262986 ], [ -82.686628238238427, 35.121890969207215 ], [ -82.686628238238427, 35.119874046528423 ], [ -82.764369462569746, 35.068240825951406 ], [ -82.782099917241794, 35.066828980076259 ], [ -82.780463259887455, 35.069047595022923 ], [ -82.779099378758843, 35.073686517184143 ], [ -82.777462721404504, 35.076913593470209 ], [ -82.781008812338911, 35.084577899649602 ], [ -82.781008812338911, 35.084577899649602 ], [ -82.897484260723019, 35.055937597610793 ], [ -83.008504184592653, 35.026893911036225 ], [ -83.108613059433338, 35.000673916211959 ], [ -83.108613059433338, 35.000673916211959 ], [ -83.483134817352266, 34.993816379104075 ], [ -83.549419440203181, 34.992404533228921 ], [ -83.620068482665673, 34.992001148693163 ], [ -83.673532622907558, 34.987160534264071 ], [ -83.93648890450541, 34.987563918799822 ], [ -83.936761680731138, 34.987563918799822 ], [ -84.005501289613562, 34.987362226531943 ], [ -84.021322310705557, 34.987362226531943 ], [ -84.03005114992871, 34.987362226531943 ], [ -84.129341696092226, 34.987563918799822 ], [ -84.12961447231794, 34.987563918799822 ], [ -84.321921711453314, 34.988370687871338 ], [ -84.308555676392842, 35.092847282632647 ], [ -84.308555676392842, 35.093250667168405 ], [ -84.292189102849392, 35.206601721716375 ], [ -84.290279669269324, 35.225560794897 ], [ -84.227813913578558, 35.267916171151583 ], [ -84.223722270192695, 35.269126324758858 ], [ -84.21172011626085, 35.266100940740671 ], [ -84.202991277037682, 35.255814635078842 ], [ -84.124977276480649, 35.249763867042475 ], [ -84.121158409320515, 35.250570636113991 ], [ -84.115157332354585, 35.250368943846112 ], [ -84.115157332354585, 35.249763867042475 ], [ -84.097426877682523, 35.247343559827925 ], [ -84.055692115146769, 35.268117863419462 ], [ -84.028960045025826, 35.291110781957663 ], [ -84.023504520511352, 35.295749704118876 ], [ -84.021322310705557, 35.301397087619492 ], [ -84.032506135960233, 35.325398467497081 ], [ -84.032506135960233, 35.326608621104356 ], [ -84.037961660474707, 35.348391386035289 ], [ -84.037416108023265, 35.349803231910442 ], [ -84.03523389821747, 35.350811693249831 ], [ -84.024868401639964, 35.353837077268018 ], [ -84.002227974904883, 35.422614140614741 ], [ -83.99977298887336, 35.425236140097169 ], [ -83.961311541046285, 35.459523825636595 ], [ -83.961038764820572, 35.462750901922654 ], [ -83.961038764820572, 35.463759363262049 ], [ -83.961038764820572, 35.464162747797808 ], [ -83.952855478048861, 35.460733979243869 ], [ -83.952582701823133, 35.460733979243869 ], [ -83.933761142248187, 35.472432130780845 ], [ -83.880024225780573, 35.518821352393005 ], [ -83.75700214797908, 35.563597035862138 ], [ -83.676260385164795, 35.570252880702142 ], [ -83.662894350104324, 35.569042727094867 ], [ -83.640526699594972, 35.56601734307668 ], [ -83.498410285992804, 35.5629919590585 ], [ -83.485589803383789, 35.568235958023351 ], [ -83.480679831320742, 35.576707033274268 ], [ -83.478497621514961, 35.579127340488817 ], [ -83.479043173966403, 35.583362878114272 ], [ -83.445764474428088, 35.611801487885209 ], [ -83.366932145193886, 35.638828251780986 ], [ -83.297101431408549, 35.65778732496161 ], [ -83.254275563969912, 35.695907163590732 ], [ -83.250729473035491, 35.70942054553862 ], [ -83.255366668872796, 35.715067929039236 ], [ -83.251275025486933, 35.719908543468328 ], [ -83.240636752683713, 35.726766080576212 ], [ -83.164804961932461, 35.760045304776241 ], [ -83.100156996435885, 35.774768840331404 ], [ -83.100429772661613, 35.774768840331404 ], [ -83.100156996435885, 35.774768840331404 ], [ -82.995683701983637, 35.773155302188371 ], [ -82.983954324277505, 35.777995916617471 ], [ -82.964041659799648, 35.794131298047787 ], [ -82.962950554896764, 35.795139759387183 ], [ -82.918488030103759, 35.845562826356925 ], [ -82.898029813174475, 35.881262357771497 ], [ -82.913305281815013, 35.924021118561839 ], [ -82.898575365625916, 35.945198806689127 ], [ -82.898575365625916, 35.945198806689127 ], [ -82.874025505310755, 35.952661420600649 ], [ -82.852476183478572, 35.949030959778831 ], [ -82.830108532969206, 35.932895578348514 ], [ -82.778553826307387, 35.97484757006734 ], [ -82.754549518443696, 36.004294641177665 ], [ -82.715269741939437, 36.024262175697679 ], [ -82.683627699755476, 36.046044940628605 ], [ -82.637255741382404, 36.065810782880746 ], [ -82.632345769319372, 36.065609090612867 ], [ -82.619252510484628, 36.056532938558313 ], [ -82.602885936941192, 36.039792480324358 ], [ -82.615160867098766, 36.000260795820083 ], [ -82.611341999938631, 35.973234031924306 ], [ -82.596884859975262, 35.964964648941269 ], [ -82.557605083471032, 35.95467834327944 ], [ -82.512597006226571, 35.975654339138849 ], [ -82.507141481712097, 35.977469569549761 ], [ -82.505777600583485, 35.978276338621278 ], [ -82.487501593459967, 35.991588028301287 ], [ -82.487501593459967, 35.991588028301287 ], [ -82.46295173314482, 36.007320025195853 ], [ -82.416852550997476, 36.072870012256509 ], [ -82.409487592902934, 36.083358010186217 ], [ -82.375663340913178, 36.105544159652901 ], [ -82.371298921301587, 36.106350928724417 ], [ -82.366661725464283, 36.107561082331692 ], [ -82.360933424724081, 36.110586466349872 ], [ -82.348385718340779, 36.11583046531473 ], [ -82.329291382540106, 36.117444003457763 ], [ -82.325199739154243, 36.119460926136554 ], [ -82.237638570696873, 36.139226768388689 ], [ -82.236547465793961, 36.139831845192326 ], [ -82.235456360891078, 36.140840306531722 ], [ -82.234910808439622, 36.141647075603238 ], [ -82.222090325830607, 36.156975687962039 ], [ -82.211179276801644, 36.158992610640823 ], [ -82.147895192433708, 36.149513074050518 ], [ -82.136438590953304, 36.12873877045898 ], [ -82.138075248307644, 36.119662618404433 ], [ -82.130710290213102, 36.106350928724417 ], [ -82.127164199278681, 36.104334006045626 ], [ -82.080519464679895, 36.10574585192078 ], [ -82.080246688454167, 36.10574585192078 ], [ -82.026509771986554, 36.130150616334134 ], [ -81.960225149135653, 36.228173058523311 ], [ -81.932947526563254, 36.264881051277278 ], [ -81.918217610374171, 36.287067200743962 ], [ -81.908124890022378, 36.301992428567011 ], [ -81.854933526006221, 36.337288575445825 ], [ -81.800923833312879, 36.358062879037362 ], [ -81.793558875218338, 36.360483186251905 ], [ -81.789740008058203, 36.348381650179171 ], [ -81.764917371517328, 36.338700421320979 ], [ -81.747732469296722, 36.337288575445825 ], [ -81.731093119527557, 36.341120728535529 ], [ -81.725910371238797, 36.340313959464012 ], [ -81.721000399175779, 36.387509950147688 ], [ -81.714180993532665, 36.45104301452956 ], [ -81.714999322209849, 36.45346332174411 ], [ -81.697268867537787, 36.484725623265348 ], [ -81.695904986409175, 36.491583160373231 ], [ -81.696723315086345, 36.493398390784144 ], [ -81.697268867537787, 36.496222082534445 ], [ -81.698359972440684, 36.49723054387384 ], [ -81.699996629795038, 36.498037312945357 ], [ -81.700269406020752, 36.500457620159906 ], [ -81.699996629795038, 36.500861004695665 ], [ -81.698087196214971, 36.504088080981731 ], [ -81.697268867537787, 36.50489485005324 ], [ -81.697814419989243, 36.507516849535669 ], [ -81.697814419989243, 36.508525310875065 ], [ -81.699451077343582, 36.511550694893245 ], [ -81.69972385356931, 36.512962540768399 ], [ -81.699996629795038, 36.514172694375674 ], [ -81.70054218224648, 36.515181155715069 ], [ -81.707907140341021, 36.536157151574486 ], [ -81.699996629795038, 36.539787612396303 ], [ -81.677628979285672, 36.588193756687254 ], [ -81.606979936823166, 36.587185295347858 ], [ -81.521055425720135, 36.580529450507854 ], [ -81.353298046899937, 36.574680374739366 ], [ -81.353298046899937, 36.574680374739366 ], [ -81.307471640978321, 36.575083759275117 ], [ -81.061973037826789, 36.567016068559965 ], [ -81.058972499343824, 36.567016068559965 ], [ -80.946043141894123, 36.563183915470262 ], [ -80.944406484539783, 36.562982223202383 ], [ -80.90185339332686, 36.561772069595108 ], [ -80.90185339332686, 36.561772069595108 ], [ -80.838023756507454, 36.559150070112679 ], [ -80.837750980281726, 36.559150070112679 ], [ -80.837205427830284, 36.559150070112679 ], [ -80.744188734858426, 36.561772069595108 ], [ -80.687451279907862, 36.56136868505935 ], [ -80.612165041608051, 36.55814160877329 ], [ -80.440043243176262, 36.550678994861769 ], [ -80.432678285081721, 36.550275610326011 ], [ -80.431587180178823, 36.550275610326011 ], [ -80.228368892014501, 36.543821457753879 ], [ -80.225368353531536, 36.543821457753879 ], [ -80.171631437063922, 36.543216380950241 ], [ -80.169449227258127, 36.543216380950241 ], [ -80.053519331325475, 36.542611304146611 ], [ -80.027332813655974, 36.542409611878732 ], [ -79.967594820222445, 36.542409611878732 ], [ -79.967049267770989, 36.542409611878732 ], [ -79.920131756946475, 36.542409611878732 ], [ -79.714731258976371, 36.541804535075094 ], [ -79.667268195700416, 36.541804535075094 ], [ -79.66672264324896, 36.541804535075094 ], [ -79.510967418360607, 36.540796073735699 ], [ -79.510694642134879, 36.540796073735699 ], [ -79.470050984502024, 36.540997766003578 ], [ -79.446046676638304, 36.541199458271457 ], [ -79.44577390041259, 36.541199458271457 ], [ -79.342664487088939, 36.541401150539336 ], [ -79.218551304384562, 36.541602842807215 ], [ -79.209549688935681, 36.541602842807215 ], [ -79.208731360258497, 36.541602842807215 ], [ -79.137809541570277, 36.541804535075094 ], [ -79.12608016386416, 36.541602842807215 ], [ -79.124716282735534, 36.541602842807215 ], [ -78.971688820104418, 36.542207919610853 ], [ -78.970597715201535, 36.542207919610853 ], [ -78.942228987726239, 36.542006227342974 ], [ -78.941956211500525, 36.542207919610853 ], [ -78.915496917605296, 36.542006227342974 ], [ -78.914678588928126, 36.542006227342974 ], [ -78.796293706963951, 36.541804535075094 ], [ -78.765469993457145, 36.541804535075094 ], [ -78.758377811588318, 36.541804535075094 ], [ -78.734100727498884, 36.541804535075094 ], [ -78.669998314453778, 36.542006227342974 ], [ -78.663451685036392, 36.542006227342974 ], [ -78.533064649140357, 36.540997766003578 ], [ -78.529791334431678, 36.540997766003578 ], [ -78.471144445901047, 36.542207919610853 ], [ -78.470871669675319, 36.542409611878732 ], [ -78.456960082163391, 36.542409611878732 ], [ -78.441139061071397, 36.542611304146611 ], [ -78.436229089008378, 36.542611304146611 ], [ -78.323845284010119, 36.543821457753879 ], [ -78.246649612130255, 36.544426534557516 ], [ -78.245558507227358, 36.544426534557516 ], [ -78.133447478454826, 36.543821457753879 ], [ -78.13290192600337, 36.543821457753879 ], [ -78.046159086223184, 36.544224842289637 ], [ -78.039339680580071, 36.544224842289637 ], [ -78.039066904354357, 36.544224842289637 ], [ -77.899678253009426, 36.544628226825395 ], [ -77.88249335078882, 36.544829919093274 ], [ -77.875401168920007, 36.544829919093274 ], [ -77.76710900730761, 36.544829919093274 ], [ -77.296842794159573, 36.544829919093274 ], [ -77.249652507109346, 36.544829919093274 ], [ -77.164546324683471, 36.546241764968428 ], [ -76.916047183048988, 36.543821457753879 ], [ -76.916047183048988, 36.543821457753879 ], [ -76.915501630597547, 36.543821457753879 ], [ -76.80720946898515, 36.550678994861769 ], [ -76.781295727541377, 36.550678994861769 ], [ -76.541798201355789, 36.550275610326011 ], [ -76.541525425130061, 36.550275610326011 ], [ -76.491607375822582, 36.550275610326011 ], [ -76.313211724199135, 36.55047730259389 ], [ -76.313211724199135, 36.55047730259389 ], [ -76.122268366192401, 36.550678994861769 ], [ -76.034707197735017, 36.550678994861769 ], [ -76.026796687189034, 36.55047730259389 ], [ -75.957784302080881, 36.55047730259389 ], [ -75.955874868500814, 36.55047730259389 ], [ -75.953419882469291, 36.55047730259389 ], [ -75.952874330017835, 36.55047730259389 ], [ -75.922050616511044, 36.550678994861769 ], [ -75.911412343707809, 36.550678994861769 ], [ -75.908957357676286, 36.550678994861769 ], [ -75.904865714290437, 36.550678994861769 ], [ -75.903501833161812, 36.550678994861769 ], [ -75.894227441487203, 36.550678994861769 ], [ -75.893136336584305, 36.550678994861769 ], [ -75.892045231681408, 36.550678994861769 ], [ -75.886589707166934, 36.550678994861769 ], [ -75.886044154715478, 36.550678994861769 ], [ -75.880588630201004, 36.550678994861769 ], [ -75.879770301523834, 36.550678994861769 ], [ -75.866949818914804, 36.550678994861769 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "30", "geo_id": "0400000US45", "fips_state": "45", "name": "South Carolina", "iso_3166_2": "SC", "census": 4625364, "pop_estimataes_base": 4625401, "pop_2010": 4636290, "pop_2011": 4673054, "pop_2012": 4722621, "pop_2013": 4771929, "pop_2014": 4832482 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.540975159686354, 33.851027989301883 ], [ -78.554068418521098, 33.847800913015824 ], [ -78.584892132027903, 33.844372144461879 ], [ -78.672180524259559, 33.817547072833975 ], [ -78.714188063021055, 33.80020153779639 ], [ -78.772834951551687, 33.768535851739387 ], [ -78.812933056733101, 33.743526010522402 ], [ -78.86285110604058, 33.705607864161152 ], [ -78.93813734434039, 33.639856184832617 ], [ -79.002239757385496, 33.572087582825283 ], [ -79.007422505674256, 33.566641891592553 ], [ -79.028426275054997, 33.533362667392524 ], [ -79.041246757664027, 33.523681438534332 ], [ -79.08461817755412, 33.483746369494298 ], [ -79.101257527323284, 33.460955143223977 ], [ -79.135354555538768, 33.40387623141423 ], [ -79.147629485696342, 33.378261313393601 ], [ -79.151993905307933, 33.350831164962067 ], [ -79.158540534725304, 33.332880553120837 ], [ -79.162359401885439, 33.327233169620229 ], [ -79.180362632783215, 33.254220568648044 ], [ -79.180635409008943, 33.237883494949848 ], [ -79.172452122237218, 33.20662119342861 ], [ -79.188000367103484, 33.173745353764339 ], [ -79.195638101423754, 33.166081047584939 ], [ -79.215550765901611, 33.155593049655231 ], [ -79.238191192636691, 33.137037361010364 ], [ -79.246101703182688, 33.12493582493763 ], [ -79.290837004201407, 33.110010597114588 ], [ -79.291655332878577, 33.109808904846709 ], [ -79.329844004479924, 33.090043062594567 ], [ -79.337208962574465, 33.072294143021224 ], [ -79.335299528994398, 33.065436605913334 ], [ -79.33939117238026, 33.050309685822413 ], [ -79.359849389309545, 33.006744155960561 ], [ -79.403766361651108, 33.003920464210253 ], [ -79.416586844260138, 33.006744155960561 ], [ -79.423406249903223, 33.015013538943592 ], [ -79.461049369053129, 33.007550925032078 ], [ -79.483417019562495, 33.001298464727824 ], [ -79.488599767851241, 33.015820308015108 ], [ -79.506875774974745, 33.032762458516942 ], [ -79.522424019841011, 33.035384457999371 ], [ -79.557612152959393, 33.021265999247845 ], [ -79.580798132145929, 33.006542463692682 ], [ -79.586526432886131, 32.991415543601761 ], [ -79.600983572849486, 32.97931400752902 ], [ -79.606711873589688, 32.972254778153257 ], [ -79.617622922618665, 32.952690628168995 ], [ -79.617622922618665, 32.944824629721715 ], [ -79.612985726781346, 32.934740016327765 ], [ -79.606166321138261, 32.925865556541098 ], [ -79.585980880434676, 32.926470633344735 ], [ -79.581616460823099, 32.931311247773827 ], [ -79.575069831405727, 32.934538324059886 ], [ -79.572614845374204, 32.933933247256256 ], [ -79.569887083116967, 32.926672325612614 ], [ -79.575888160082897, 32.906301406556835 ], [ -79.63126173390485, 32.888552486983485 ], [ -79.655538817994284, 32.872618797821048 ], [ -79.695091370724242, 32.850432648354364 ], [ -79.699455790335833, 32.839944650424655 ], [ -79.703001881270239, 32.835709112799201 ], [ -79.719914007265118, 32.82582619167313 ], [ -79.716640692556439, 32.813724655600396 ], [ -79.726460636682503, 32.806060349420996 ], [ -79.811021266656908, 32.777016662846421 ], [ -79.818113448525736, 32.766326972648841 ], [ -79.840481099035088, 32.756847436058528 ], [ -79.848391609581086, 32.755233897915495 ], [ -79.866667616704589, 32.757452512862166 ], [ -79.872123141219078, 32.752208513897308 ], [ -79.873487022347689, 32.745754361325183 ], [ -79.868304274058943, 32.734862978859724 ], [ -79.87021370763901, 32.727803749483954 ], [ -79.887944162311058, 32.695129602087562 ], [ -79.884943623828093, 32.684439911889982 ], [ -79.915767337334898, 32.664875761905719 ], [ -79.968413148899614, 32.639664228420855 ], [ -79.975232554542714, 32.639462536152976 ], [ -79.986961932248846, 32.626352538740839 ], [ -79.991871904311864, 32.616469617614769 ], [ -79.999509638632134, 32.611830695453556 ], [ -80.010420687661096, 32.608805311435368 ], [ -80.037152757782039, 32.610217157310522 ], [ -80.076978086737739, 32.603359620202639 ], [ -80.12144061153073, 32.590451315058388 ], [ -80.148445457877386, 32.578551471253526 ], [ -80.167267017452346, 32.55979409034078 ], [ -80.171631437063922, 32.546079016125013 ], [ -80.188270786833087, 32.553541630036534 ], [ -80.193726311347575, 32.554146706840172 ], [ -80.205182912827979, 32.555558552715326 ], [ -80.246372122912277, 32.531153788301971 ], [ -80.24964543762097, 32.529540250158938 ], [ -80.277741388870538, 32.516228560478929 ], [ -80.332569410241035, 32.478108721849807 ], [ -80.338297710981237, 32.478713798653445 ], [ -80.343753235495711, 32.490815334726179 ], [ -80.363938676199297, 32.496059333691029 ], [ -80.380850802194175, 32.486378104832838 ], [ -80.386851879160105, 32.478713798653445 ], [ -80.392580179900307, 32.475285030099499 ], [ -80.413583949281048, 32.470646107938279 ], [ -80.416038935312557, 32.472057953813433 ], [ -80.417948368892624, 32.476091799171016 ], [ -80.418493921344066, 32.490815334726179 ], [ -80.423403893407112, 32.498076256369821 ], [ -80.439497690724806, 32.50352194760255 ], [ -80.452045397108122, 32.497269487298304 ], [ -80.465684208394308, 32.49525256461952 ], [ -80.471958061585951, 32.496866102762546 ], [ -80.476868033648998, 32.485369643493449 ], [ -80.480141348357677, 32.47750364504617 ], [ -80.484505767969267, 32.460964879080095 ], [ -80.480141348357677, 32.447048112596448 ], [ -80.467593641974375, 32.425265347665515 ], [ -80.446044320142192, 32.423651809522482 ], [ -80.432951061307449, 32.410743504378232 ], [ -80.42995052282447, 32.401869044591557 ], [ -80.429404970373028, 32.389767508518815 ], [ -80.43431494243606, 32.375245665231532 ], [ -80.445498767690736, 32.350235824014547 ], [ -80.456682592945413, 32.336924134334531 ], [ -80.455318711816801, 32.326436136404823 ], [ -80.466229760845749, 32.319175214761181 ], [ -80.517784467507568, 32.298804295705409 ], [ -80.539333789339764, 32.287106144168426 ], [ -80.545607642531422, 32.282063837471455 ], [ -80.570975831523739, 32.27318937768478 ], [ -80.596344020516057, 32.273592762220538 ], [ -80.618166118573981, 32.260281072540529 ], [ -80.638897111728994, 32.255642150379309 ], [ -80.658536999981123, 32.248582921003546 ], [ -80.669175272784344, 32.216715542678671 ], [ -80.688815161036473, 32.200983545784112 ], [ -80.721548308123346, 32.160443399940441 ], [ -80.749098706921458, 32.140072480884669 ], [ -80.790015140780042, 32.122525253579198 ], [ -80.812382791289409, 32.109818640702827 ], [ -80.821657182964017, 32.108608487095552 ], [ -80.828476588607117, 32.113247409256765 ], [ -80.831477127090082, 32.112642332453127 ], [ -80.844297609699112, 32.109616948434947 ], [ -80.858754749662467, 32.099532335040998 ], [ -80.878121861688868, 32.079766492788856 ], [ -80.905399484261267, 32.051932959821563 ], [ -80.892306225426523, 32.043663576838526 ], [ -80.885486819783409, 32.034587424783972 ], [ -81.004144477973313, 32.072303878877335 ], [ -81.042878702026115, 32.084607107217948 ], [ -81.061973037826789, 32.087834183504015 ], [ -81.113254968262879, 32.113247409256765 ], [ -81.117346611648742, 32.117684639150099 ], [ -81.12198380748606, 32.161855245815595 ], [ -81.125529898420467, 32.227203540608379 ], [ -81.127984884451976, 32.276214761702967 ], [ -81.120347150131707, 32.285895990561158 ], [ -81.122256583711774, 32.305460140545414 ], [ -81.13425873764362, 32.341764748763623 ], [ -81.140805367061006, 32.34942905494303 ], [ -81.16808298963339, 32.368388128123648 ], [ -81.198906703140196, 32.467217339384341 ], [ -81.27528404634289, 32.539423171285009 ], [ -81.286740647823294, 32.544868862517738 ], [ -81.318382690007269, 32.55979409034078 ], [ -81.328748186584789, 32.561205936215934 ], [ -81.348115298611177, 32.569273626931093 ], [ -81.389304508695488, 32.59529192948748 ], [ -81.389304508695488, 32.595493621755359 ], [ -81.411944935430569, 32.61848654029356 ], [ -81.418764341073683, 32.629377922759026 ], [ -81.418491564847955, 32.634621921723877 ], [ -81.41467269768782, 32.637445613474185 ], [ -81.405125529787483, 32.744947592253666 ], [ -81.404852753561755, 32.746964514932458 ], [ -81.423674313136701, 32.81049757931433 ], [ -81.499778880113666, 32.96378370290234 ], [ -81.494868908050648, 32.978910622993261 ], [ -81.491595593341955, 32.998474772977524 ], [ -81.496505565404988, 33.010172924514499 ], [ -81.511781034045526, 33.024493075533911 ], [ -81.541786418875148, 33.045670763661199 ], [ -81.615708776046347, 33.092463369809117 ], [ -81.620345971883637, 33.095488753827297 ], [ -81.696996091312059, 33.116464749686713 ], [ -81.772282329611869, 33.180199506336464 ], [ -81.851932987523242, 33.247363031540161 ], [ -81.85220576374897, 33.24756472380804 ], [ -81.902669365507904, 33.331267014977804 ], [ -81.912489309633969, 33.40871684584333 ], [ -81.958042939329857, 33.468619449403377 ], [ -81.967044554778738, 33.480720985476111 ], [ -82.007142659960152, 33.522874669462816 ], [ -82.007688212411608, 33.523278053998574 ], [ -82.01423484182898, 33.530337283374337 ], [ -82.028146429340893, 33.544859126661621 ], [ -82.046422436464411, 33.563818199842245 ], [ -82.069062863199491, 33.575314659111349 ], [ -82.098795471803385, 33.586407733844688 ], [ -82.116525926475447, 33.589634810130754 ], [ -82.124709213247172, 33.591248348273787 ], [ -82.129073632858749, 33.589836502398633 ], [ -82.135074709824679, 33.591046656005908 ], [ -82.179810010843397, 33.615854804955021 ], [ -82.196449360612547, 33.630578340510183 ], [ -82.2185442348962, 33.686245406444776 ], [ -82.247458514822938, 33.752602162576949 ], [ -82.301468207516265, 33.801815075939416 ], [ -82.324381410477073, 33.819967380048524 ], [ -82.403759292162732, 33.865549832589167 ], [ -82.408396488000037, 33.866356601660684 ], [ -82.422853627963406, 33.863734602178262 ], [ -82.429127481155064, 33.865751524857046 ], [ -82.564424489114117, 33.955706276331064 ], [ -82.564697265339845, 33.955907968598943 ], [ -82.59715763620099, 34.012381803605052 ], [ -82.640801832316811, 34.088419788595424 ], [ -82.641347384768267, 34.088823173131182 ], [ -82.652258433797215, 34.099714555596641 ], [ -82.653895091151554, 34.100319632400279 ], [ -82.658532286988873, 34.103143324150587 ], [ -82.659077839440315, 34.103546708686345 ], [ -82.66807945488921, 34.12008547465242 ], [ -82.677353846563818, 34.131581933921517 ], [ -82.704085916684761, 34.141061470511829 ], [ -82.717451951745232, 34.150541007102142 ], [ -82.731909091708602, 34.178374540069441 ], [ -82.741456259608938, 34.208628380251284 ], [ -82.74200181206038, 34.210040226126438 ], [ -82.744456798091903, 34.22496545394948 ], [ -82.743365693189006, 34.22738576116403 ], [ -82.74200181206038, 34.23020945291433 ], [ -82.755095070895138, 34.275993597722852 ], [ -82.7660061199241, 34.293540825028323 ], [ -82.848657316318437, 34.423834030078133 ], [ -82.874843833987939, 34.468811405815138 ], [ -82.873752729085041, 34.471433405297567 ], [ -82.882754344533936, 34.479097711476967 ], [ -82.902667009011765, 34.485955248584851 ], [ -82.938946247033059, 34.48615694085273 ], [ -82.979589904665914, 34.482728172298792 ], [ -82.992137611049216, 34.479097711476967 ], [ -82.992683163500658, 34.479097711476967 ], [ -82.995410925757909, 34.474458789315747 ], [ -83.006867527238313, 34.474458789315747 ], [ -83.034690702262139, 34.483534941370309 ], [ -83.052148380708473, 34.493014477960614 ], [ -83.072879373863501, 34.504309244961838 ], [ -83.087063737601142, 34.516007396498821 ], [ -83.106976402078985, 34.533958008340043 ], [ -83.170260486446935, 34.592448766024944 ], [ -83.171078815124105, 34.59870122632919 ], [ -83.167532724189698, 34.600516456740102 ], [ -83.240636752683713, 34.62431614434982 ], [ -83.240636752683713, 34.624517836617699 ], [ -83.291645906894075, 34.653359830924387 ], [ -83.33774508904142, 34.687647516463812 ], [ -83.338290641492875, 34.687849208731691 ], [ -83.351383900327619, 34.701765975215338 ], [ -83.351111124101891, 34.713262434484442 ], [ -83.351383900327619, 34.714472588091716 ], [ -83.352475005230502, 34.716086126234742 ], [ -83.352475005230502, 34.716086126234742 ], [ -83.339108970170031, 34.741297659719613 ], [ -83.32410627775522, 34.788695342671176 ], [ -83.283189843896636, 34.821369490067561 ], [ -83.267368822804656, 34.832664257068785 ], [ -83.243091738715222, 34.87784332507367 ], [ -83.143255640100278, 34.924837623489466 ], [ -83.108613059433338, 35.000673916211959 ], [ -83.008504184592653, 35.026893911036225 ], [ -82.897484260723019, 35.055937597610793 ], [ -82.781008812338911, 35.084577899649602 ], [ -82.781008812338911, 35.084577899649602 ], [ -82.777462721404504, 35.076913593470209 ], [ -82.779099378758843, 35.073686517184143 ], [ -82.780463259887455, 35.069047595022923 ], [ -82.782099917241794, 35.066828980076259 ], [ -82.764369462569746, 35.068240825951406 ], [ -82.686628238238427, 35.119874046528423 ], [ -82.686628238238427, 35.121890969207215 ], [ -82.582154943786179, 35.142261888262986 ], [ -82.580245510206112, 35.142060195995107 ], [ -82.57451720946591, 35.144278810941778 ], [ -82.536601314090277, 35.15920403876482 ], [ -82.535782985413107, 35.158598961961182 ], [ -82.517234202063889, 35.162632807318765 ], [ -82.516961425838161, 35.163036191854523 ], [ -82.476044991979563, 35.175541112463016 ], [ -82.384119403910603, 35.210635567073957 ], [ -82.352477361726642, 35.206601721716375 ], [ -82.288374948681508, 35.198534031001216 ], [ -82.257551235174716, 35.198735723269095 ], [ -82.230819165053759, 35.196718800590304 ], [ -82.230546388828046, 35.196718800590304 ], [ -82.216089248864677, 35.196113723786667 ], [ -82.195358255709664, 35.194903570179399 ], [ -82.185538311583599, 35.194298493375761 ], [ -82.176809472360432, 35.193693416572124 ], [ -82.167807856911537, 35.193693416572124 ], [ -81.969226764584533, 35.187239264 ], [ -81.874300638032622, 35.184012187713932 ], [ -81.857934064489172, 35.183407110910295 ], [ -81.768190686226006, 35.180180034624229 ], [ -81.494323355599192, 35.169893728962407 ], [ -81.493505026922023, 35.169893728962407 ], [ -81.461317432286606, 35.168683575355132 ], [ -81.452315816837711, 35.168280190819374 ], [ -81.366664081960408, 35.164851422265428 ], [ -81.366664081960408, 35.164851422265428 ], [ -81.327929857907606, 35.163439576390282 ], [ -81.269282969376974, 35.161220961443611 ], [ -81.241732570578847, 35.160010807836336 ], [ -81.239277584547338, 35.160010807836336 ], [ -81.090341765302071, 35.152548193924815 ], [ -81.043424254477571, 35.148312656299353 ], [ -81.042878702026115, 35.14609404135269 ], [ -81.032513205448609, 35.109184356330843 ], [ -81.036059296383016, 35.103133588294469 ], [ -81.046424792960522, 35.100713281079919 ], [ -81.052153093700724, 35.096276051186585 ], [ -81.057335841989484, 35.086191437792635 ], [ -81.058154170666654, 35.073283132648385 ], [ -81.057335841989484, 35.06198836564716 ], [ -81.041514820897504, 35.044642830609575 ], [ -80.957772519600255, 35.092645590364768 ], [ -80.934859316639447, 35.107369125919931 ], [ -80.90649058916415, 35.07671190120233 ], [ -80.90649058916415, 35.076510208934451 ], [ -80.840478742538977, 35.001480685283475 ], [ -80.806654490549207, 34.963159154386474 ], [ -80.806381714323479, 34.962957462118595 ], [ -80.782104630234045, 34.935729005954933 ], [ -80.796834546423142, 34.825201643157264 ], [ -80.777740210622468, 34.819755951924535 ], [ -80.771739133656553, 34.819554259656655 ], [ -80.646534846049263, 34.81854579831726 ], [ -80.644625412469196, 34.81854579831726 ], [ -80.626076629119979, 34.818142413781501 ], [ -80.626076629119979, 34.818142413781501 ], [ -80.621166657056932, 34.818142413781501 ], [ -80.561701439849131, 34.817537336977864 ], [ -80.561701439849131, 34.817537336977864 ], [ -80.485596872872151, 34.816730567906347 ], [ -80.451772620882394, 34.816327183370589 ], [ -80.448772082399429, 34.816327183370589 ], [ -80.434860494887516, 34.815923798834831 ], [ -80.425858879438621, 34.815722106566952 ], [ -80.419585026246978, 34.815520414299073 ], [ -80.418493921344066, 34.815722106566952 ], [ -80.417130040215454, 34.815520414299073 ], [ -80.399945137994848, 34.815117029763314 ], [ -80.320294480083462, 34.81390687615604 ], [ -80.099072961021363, 34.810074723066343 ], [ -80.09798185611848, 34.810074723066343 ], [ -80.077250862963453, 34.809671338530585 ], [ -80.072886443351877, 34.809671338530585 ], [ -80.042881058522241, 34.809066261726947 ], [ -80.027332813655974, 34.808662877191189 ], [ -79.92749671504103, 34.806645954512398 ], [ -79.773650923732731, 34.805839185440881 ], [ -79.772832595055561, 34.80604087770876 ], [ -79.745009420031721, 34.805637493173002 ], [ -79.744191091354551, 34.805637493173002 ], [ -79.692909160918447, 34.805032416369365 ], [ -79.690181398661224, 34.805032416369365 ], [ -79.687999188855429, 34.804830724101485 ], [ -79.634262272387815, 34.770946423097826 ], [ -79.631534510130578, 34.768929500419034 ], [ -79.561703796345256, 34.712052280877167 ], [ -79.554338838250715, 34.706404897376558 ], [ -79.520241810035216, 34.678369672141379 ], [ -79.519150705132319, 34.677361210801983 ], [ -79.49023642520558, 34.653763215460145 ], [ -79.479325376176632, 34.644687063405591 ], [ -79.471687641856363, 34.63722444949407 ], [ -79.468687103373398, 34.635409219083158 ], [ -79.461867697730298, 34.630366912386187 ], [ -79.461322145278842, 34.630165220118307 ], [ -79.459685487924503, 34.628955066511033 ], [ -79.450138320024166, 34.621089068063753 ], [ -79.358212731955206, 34.545454467609147 ], [ -79.331207885608535, 34.521856472267309 ], [ -79.324934032416891, 34.516209088766693 ], [ -79.323297375062552, 34.514595550623667 ], [ -79.198911416132447, 34.406690187308421 ], [ -79.192092010489347, 34.401042803807812 ], [ -79.190728129360735, 34.399832650200537 ], [ -79.151448352856477, 34.366755118268387 ], [ -79.143265066084766, 34.359897581160503 ], [ -79.071252142493648, 34.299188208528932 ], [ -78.712278629440988, 33.996649806710494 ], [ -78.710096419635192, 33.994632884031702 ], [ -78.650631202427377, 33.944008124794088 ], [ -78.540975159686354, 33.851027989301883 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "31", "geo_id": "0400000US53", "fips_state": "53", "name": "Washington", "iso_3166_2": "WA", "census": 6724540, "pop_estimataes_base": 6724543, "pop_2010": 6741911, "pop_2011": 6822112, "pop_2012": 6896325, "pop_2013": 6973742, "pop_2014": 7061530 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.397391179126117, 47.912407829019344 ], [ -122.419213277184028, 47.912206136751465 ], [ -122.43094265489016, 47.914828136233893 ], [ -122.445399794853529, 47.930156748592694 ], [ -122.445672571079243, 47.936207516629068 ], [ -122.44076259901621, 47.94649382229089 ], [ -122.44076259901621, 47.951939513523627 ], [ -122.44676367598214, 47.963234280524844 ], [ -122.472677417425913, 47.988445814009715 ], [ -122.48740733361501, 47.990664428956386 ], [ -122.501318921126924, 47.987033968134568 ], [ -122.514684956187395, 47.981184892366073 ], [ -122.51768549467036, 47.974932432061827 ], [ -122.521231585604767, 47.972915509383036 ], [ -122.546872550822826, 47.967268125882427 ], [ -122.552055299111572, 47.973722278454552 ], [ -122.550964194208674, 47.97735273927637 ], [ -122.543053683662691, 47.986025506795173 ], [ -122.541689802534066, 47.993084736170928 ], [ -122.543053683662691, 47.996311812456995 ], [ -122.559965809657569, 48.006598118118823 ], [ -122.58178790771548, 48.01043027120852 ], [ -122.607428872933525, 48.031002882532178 ], [ -122.596790600130291, 48.038868880979457 ], [ -122.593517285421612, 48.047138263962495 ], [ -122.594881166550223, 48.056416108284921 ], [ -122.613975502350897, 48.072753181983117 ], [ -122.613157173673727, 48.079409026823129 ], [ -122.607156096707811, 48.088081794341917 ], [ -122.598427257484644, 48.110671328344367 ], [ -122.601973348419051, 48.1352777850256 ], [ -122.60961108273932, 48.151816550991676 ], [ -122.617521593285318, 48.159077472635317 ], [ -122.63306983815157, 48.163313010260779 ], [ -122.655983041112393, 48.162506241189263 ], [ -122.671258509752931, 48.157262242224405 ], [ -122.677259586718847, 48.154640242741976 ], [ -122.679441796524642, 48.155043627277735 ], [ -122.68653397839347, 48.174607777261997 ], [ -122.693080607810842, 48.181465314369881 ], [ -122.711629391160059, 48.193566850442622 ], [ -122.735088146572323, 48.200021003014747 ], [ -122.74463531447266, 48.209702231872939 ], [ -122.762911321596164, 48.215349615373547 ], [ -122.770003503464977, 48.224425767428102 ], [ -122.770003503464977, 48.227451151446289 ], [ -122.752545825018657, 48.260125298842681 ], [ -122.732087608089358, 48.279487756559057 ], [ -122.722540440189022, 48.30429590550817 ], [ -122.706992195322755, 48.315187287973629 ], [ -122.67371349578444, 48.354718972477912 ], [ -122.664984656561273, 48.374888199265804 ], [ -122.664711880335545, 48.401511578625829 ], [ -122.644799215857702, 48.405545423983405 ], [ -122.634979271731638, 48.404335270376137 ], [ -122.632524285700129, 48.401108194090071 ], [ -122.633888166828754, 48.3988895791434 ], [ -122.637434257763161, 48.398082810071884 ], [ -122.637979810214603, 48.395662502857334 ], [ -122.635797600408821, 48.395057426053697 ], [ -122.627887089862824, 48.397276041000367 ], [ -122.61724881705959, 48.407158962126438 ], [ -122.60961108273932, 48.411596192019772 ], [ -122.601973348419051, 48.409982653876739 ], [ -122.596790600130291, 48.405545423983405 ], [ -122.595426719001679, 48.397276041000367 ], [ -122.585061222424173, 48.395259118321576 ], [ -122.588880089584308, 48.362988355460942 ], [ -122.585061222424173, 48.353307126602758 ], [ -122.565421334172044, 48.348264819905779 ], [ -122.551236970434402, 48.342214051869412 ], [ -122.516048837316021, 48.320431286938486 ], [ -122.506501669415684, 48.309943289008778 ], [ -122.50486501206133, 48.300463752418466 ], [ -122.505956116964228, 48.297640060668158 ], [ -122.519594928250427, 48.288362216345732 ], [ -122.52286824295912, 48.285538524595424 ], [ -122.531051529730831, 48.282513140577237 ], [ -122.551782522885844, 48.281504679237841 ], [ -122.55832915230323, 48.282109756041478 ], [ -122.57496850207238, 48.294816368917857 ], [ -122.583970117521275, 48.298043445203916 ], [ -122.599518362387528, 48.298245137471795 ], [ -122.618339921962487, 48.29421129211422 ], [ -122.626795984959926, 48.288967293149369 ], [ -122.620794907993997, 48.282916525112995 ], [ -122.623795446476962, 48.269403143165107 ], [ -122.6527097264037, 48.265167605539645 ], [ -122.653528055080869, 48.259318529771164 ], [ -122.669076299947136, 48.240561148858419 ], [ -122.668257971269966, 48.224022382892343 ], [ -122.631160404571503, 48.220593614338398 ], [ -122.628432642314266, 48.22240884474931 ], [ -122.606337768030627, 48.208290385997785 ], [ -122.588061760907124, 48.185902544263215 ], [ -122.585879551101343, 48.182272083441397 ], [ -122.58260623639265, 48.170372239636535 ], [ -122.57496850207238, 48.155648704081372 ], [ -122.567876320203567, 48.148589474705609 ], [ -122.55832915230323, 48.119545788131042 ], [ -122.559965809657569, 48.114100096898312 ], [ -122.571695187363702, 48.105023944843751 ], [ -122.571967963589415, 48.10220025309345 ], [ -122.554510285143095, 48.077392104144337 ], [ -122.545235893468472, 48.052583955195225 ], [ -122.538962040276829, 48.050163647980682 ], [ -122.516321613541734, 48.057222877356438 ], [ -122.513866627510225, 48.05903810776735 ], [ -122.511138865252988, 48.075375181465546 ], [ -122.51686716599319, 48.081022564966162 ], [ -122.525323228990629, 48.096552869592841 ], [ -122.513321075058784, 48.097561330932237 ], [ -122.491226200775145, 48.094334254646171 ], [ -122.461493592171237, 48.068517644357662 ], [ -122.44840033333648, 48.054399185606137 ], [ -122.431215431115874, 48.044919649015824 ], [ -122.400664493834796, 48.036650266032787 ], [ -122.387298458774325, 48.034028266550365 ], [ -122.376387409745377, 48.034431651086123 ], [ -122.373386871262412, 48.000749042350336 ], [ -122.369295227876549, 47.995303351117599 ], [ -122.353746983010282, 47.981386584633952 ], [ -122.350200892075875, 47.969285048561218 ], [ -122.349655339624434, 47.95879705063151 ], [ -122.350746444527317, 47.953149667130901 ], [ -122.358929731299042, 47.937417670236343 ], [ -122.367931346747923, 47.932375363539364 ], [ -122.376932962196818, 47.923702596020568 ], [ -122.375841857293921, 47.91018921407268 ], [ -122.377205738422546, 47.905953676447226 ], [ -122.380479053131225, 47.903936753768434 ], [ -122.39029899725729, 47.905751984179346 ], [ -122.397391179126117, 47.912407829019344 ] ] ], [ [ [ -122.649436411695007, 48.58848031094962 ], [ -122.642617006051907, 48.588278618681741 ], [ -122.629250970991436, 48.572143237251424 ], [ -122.610974963867946, 48.561050162518086 ], [ -122.592971732970156, 48.553587548606558 ], [ -122.583970117521275, 48.551570625927774 ], [ -122.578787369232515, 48.548141857373835 ], [ -122.573059068492313, 48.528981091925331 ], [ -122.583697341295547, 48.532409860479277 ], [ -122.590243970712919, 48.536242013568973 ], [ -122.600063914838984, 48.536847090372611 ], [ -122.619976579316827, 48.52918278419321 ], [ -122.635797600408821, 48.525955707907144 ], [ -122.640434796246126, 48.525955707907144 ], [ -122.649163635469293, 48.528779399657452 ], [ -122.652164173952258, 48.531401399139881 ], [ -122.654346383758039, 48.537855551711999 ], [ -122.653528055080869, 48.548948626445352 ], [ -122.650800292823632, 48.553990933142316 ], [ -122.652436950177972, 48.583438004252649 ], [ -122.649436411695007, 48.58848031094962 ] ] ], [ [ [ -122.714629929643024, 48.608851230005399 ], [ -122.694717265165181, 48.596548001664786 ], [ -122.691716726682216, 48.590698925896291 ], [ -122.670712957301475, 48.568714468697486 ], [ -122.689534516876421, 48.543906319748373 ], [ -122.717357691900261, 48.539670782122911 ], [ -122.722540440189022, 48.540679243462307 ], [ -122.723904321317647, 48.54995708778474 ], [ -122.730450950735019, 48.565689084679299 ], [ -122.736179251475221, 48.568916160965365 ], [ -122.7394525661839, 48.573958467662337 ], [ -122.739998118635356, 48.584043081056286 ], [ -122.724995426220531, 48.603203846504783 ], [ -122.714629929643024, 48.608851230005399 ] ] ], [ [ [ -122.699354461002486, 48.621154458346012 ], [ -122.697990579873874, 48.623171381024804 ], [ -122.674259048235882, 48.630028918132687 ], [ -122.657074146015276, 48.609859691344795 ], [ -122.666075761464171, 48.608044460933883 ], [ -122.676714034267405, 48.610061383612674 ], [ -122.686261202167742, 48.613288459898733 ], [ -122.699354461002486, 48.621154458346012 ] ] ], [ [ [ -122.800281664520341, 48.60159030836175 ], [ -122.804918860357645, 48.595942924861149 ], [ -122.801099993197511, 48.585454926931433 ], [ -122.786642853234142, 48.576580467144765 ], [ -122.771094608367875, 48.56246200839324 ], [ -122.770276279690705, 48.558024778499899 ], [ -122.772458489496501, 48.552175702731411 ], [ -122.782551209848279, 48.545116473355648 ], [ -122.788552286814209, 48.530392937800485 ], [ -122.787461181911311, 48.522930323888957 ], [ -122.777368461559533, 48.517888017191986 ], [ -122.779005118913872, 48.508811865137432 ], [ -122.800281664520341, 48.494491714118027 ], [ -122.816375461838049, 48.487835869278022 ], [ -122.818012119192389, 48.483802023920447 ], [ -122.819648776546728, 48.458792182703448 ], [ -122.813102147129356, 48.45294310693496 ], [ -122.807646622614882, 48.444068647148285 ], [ -122.802463874326122, 48.433177264682826 ], [ -122.80355497922902, 48.428740034789485 ], [ -122.812283818452187, 48.422285882217359 ], [ -122.825922629738386, 48.424101112628271 ], [ -122.874204021691511, 48.418252036859784 ], [ -122.883751189591862, 48.418857113663421 ], [ -122.893571133717913, 48.422689266753117 ], [ -122.888933937880608, 48.436000956433134 ], [ -122.90311830161825, 48.437009417772522 ], [ -122.913756574421484, 48.443261878076768 ], [ -122.917848217807347, 48.43983310952283 ], [ -122.927940938159125, 48.440034801790709 ], [ -122.916484336678721, 48.453346491470718 ], [ -122.920030427613142, 48.45838879816769 ], [ -122.926849833256227, 48.460809105382239 ], [ -122.93776088228519, 48.456170183221026 ], [ -122.962037966374623, 48.451127876524055 ], [ -123.039233638254487, 48.460002336310723 ], [ -123.058055197829432, 48.471498795579826 ], [ -123.067602365729769, 48.479566486294985 ], [ -123.119429848617315, 48.492676483707115 ], [ -123.141524722900954, 48.505383096583486 ], [ -123.15107189080129, 48.51385417183441 ], [ -123.163346820958864, 48.529586168728969 ], [ -123.164165149636034, 48.535636936765336 ], [ -123.161982939830253, 48.539267397587153 ], [ -123.161437387378797, 48.547536780570198 ], [ -123.172348436407759, 48.556411240356866 ], [ -123.176167303567894, 48.562058623857482 ], [ -123.175894527342166, 48.568512776429607 ], [ -123.172075660182031, 48.572344929519303 ], [ -123.173166765084929, 48.579000774359315 ], [ -123.184896142791061, 48.587068465074466 ], [ -123.197716625400076, 48.58626169600295 ], [ -123.202626597463109, 48.590295541360533 ], [ -123.202899373688837, 48.596144617129028 ], [ -123.195807191820009, 48.607035999594487 ], [ -123.178349513373689, 48.622162919685408 ], [ -123.151617443252746, 48.623776457828441 ], [ -123.139615289320886, 48.622767996489046 ], [ -123.135523645935024, 48.620145997006617 ], [ -123.10742769468547, 48.622364611953287 ], [ -123.098426079236575, 48.612885075362982 ], [ -123.098153303010847, 48.610061383612674 ], [ -123.101972170170981, 48.6040106155763 ], [ -123.10142661771954, 48.597758155272054 ], [ -123.074694547598597, 48.591909079503566 ], [ -123.0599646314095, 48.582026158377495 ], [ -123.048508029929096, 48.569117853233244 ], [ -123.033778113740013, 48.563470469732636 ], [ -123.014956554165053, 48.560848470250207 ], [ -122.987406155366941, 48.561856931589602 ], [ -122.986042274238329, 48.569924622304754 ], [ -122.989588365172736, 48.574765236733853 ], [ -122.99504388968721, 48.578194005287799 ], [ -123.004863833813275, 48.580816004770227 ], [ -123.016593211519407, 48.58021092796659 ], [ -123.034050889965727, 48.591707387235687 ], [ -123.024776498291118, 48.594531078985995 ], [ -123.023412617162506, 48.599573385682966 ], [ -123.041143071834554, 48.611876614023586 ], [ -123.046598596349028, 48.611473229487828 ], [ -123.048780806154824, 48.620952766078133 ], [ -123.023412617162506, 48.634062763490263 ], [ -123.015502106616509, 48.642533838741187 ], [ -123.014956554165053, 48.647576145438158 ], [ -123.010046582102035, 48.655038759349679 ], [ -122.988770036495566, 48.667341987690293 ], [ -122.984951169335432, 48.67258598665515 ], [ -122.949217483765594, 48.693360290246687 ], [ -122.941306973219596, 48.702839826836993 ], [ -122.942398078122494, 48.706671979926696 ], [ -122.918120994033075, 48.713529517034573 ], [ -122.894662238620811, 48.714941362909727 ], [ -122.875840679045865, 48.712117671159426 ], [ -122.833014811607214, 48.698200904675772 ], [ -122.802463874326122, 48.682670600049093 ], [ -122.800281664520341, 48.679645216030913 ], [ -122.742998657118321, 48.661896296457563 ], [ -122.742180328441137, 48.660686142850295 ], [ -122.755000811050166, 48.649593068116943 ], [ -122.783915090976905, 48.635474609365417 ], [ -122.792098377748616, 48.633457686686626 ], [ -122.80955605619495, 48.618935843399342 ], [ -122.80873772751778, 48.615305382577525 ], [ -122.798917783391715, 48.604615692379937 ], [ -122.798645007165987, 48.602397077433267 ], [ -122.800281664520341, 48.60159030836175 ] ] ], [ [ [ -123.197989401625804, 48.684687522727884 ], [ -123.185987247693959, 48.684889214995763 ], [ -123.172075660182031, 48.679846908298792 ], [ -123.148071352318325, 48.66794706449393 ], [ -123.130886450097719, 48.656853989760592 ], [ -123.121884834648839, 48.646971068634521 ], [ -123.106063813556844, 48.633457686686626 ], [ -123.119702624843043, 48.633054302150875 ], [ -123.134978093483582, 48.637289839776329 ], [ -123.21599263252358, 48.669358910369084 ], [ -123.237269178130049, 48.68347736912061 ], [ -123.236450849452879, 48.688923060353346 ], [ -123.212992094040615, 48.689729829424863 ], [ -123.197989401625804, 48.684687522727884 ] ] ], [ [ [ -123.025594826968288, 48.717966746927914 ], [ -123.019593750002372, 48.721395515481859 ], [ -123.009773805876307, 48.722202284553376 ], [ -123.007591596070512, 48.71877351599943 ], [ -123.005136610039003, 48.694368751586076 ], [ -123.014411001713611, 48.684889214995763 ], [ -123.021230407356711, 48.681460446441818 ], [ -123.042234176737452, 48.675611370673337 ], [ -123.041688624285996, 48.678636754691517 ], [ -123.03568754732008, 48.685292599531522 ], [ -123.036233099771522, 48.690133213960621 ], [ -123.047144148800484, 48.69578059746123 ], [ -123.07033012798702, 48.700016135086685 ], [ -123.040051966931657, 48.717361670124276 ], [ -123.025594826968288, 48.717966746927914 ] ] ], [ [ [ -122.321832164600593, 48.019909807798832 ], [ -122.30355615747709, 48.005589656779428 ], [ -122.306556695960055, 48.004379503172153 ], [ -122.32619658421217, 48.010228578940641 ], [ -122.334652647209609, 48.018901346459444 ], [ -122.328378794017965, 48.021321653673986 ], [ -122.321832164600593, 48.019909807798832 ] ] ], [ [ [ -123.035414771094352, 49.002151152369365 ], [ -123.021503183582439, 48.977343003420259 ], [ -123.028049812999811, 48.973914234866314 ], [ -123.040870295608826, 48.977343003420259 ], [ -123.060782960086684, 48.975326080741468 ], [ -123.083968939273205, 48.976132849812984 ], [ -123.084514491724661, 48.986620847742685 ], [ -123.090515568690577, 49.001949460101493 ], [ -123.035414771094352, 49.002151152369365 ] ] ], [ [ [ -122.695808370068079, 48.737329204644297 ], [ -122.669076299947136, 48.706671979926696 ], [ -122.663347999206934, 48.696990751068505 ], [ -122.644799215857702, 48.691343367567896 ], [ -122.618339921962487, 48.670770756244238 ], [ -122.60961108273932, 48.644954145955737 ], [ -122.616976040833862, 48.645559222759367 ], [ -122.635252047957366, 48.651811683063613 ], [ -122.673440719558712, 48.680855369638188 ], [ -122.691716726682216, 48.711512594355789 ], [ -122.702354999485451, 48.716958285588518 ], [ -122.718721573028887, 48.716756593320639 ], [ -122.72199488773758, 48.723412438160651 ], [ -122.722267663963294, 48.731681821143681 ], [ -122.715721034545922, 48.748623971645515 ], [ -122.70317332816262, 48.743581664948543 ], [ -122.695808370068079, 48.737329204644297 ] ] ], [ [ [ -117.032428371588139, 48.999125768351185 ], [ -117.033246700265309, 48.846646413834691 ], [ -117.034337805168207, 48.628617072257541 ], [ -117.03461058139392, 48.620751073810254 ], [ -117.035156133845376, 48.430151880664638 ], [ -117.035156133845376, 48.42974849612888 ], [ -117.035156133845376, 48.423092651288876 ], [ -117.035156133845376, 48.422689266753117 ], [ -117.035156133845376, 48.371257738443987 ], [ -117.035156133845376, 48.370854353908229 ], [ -117.039520553456953, 48.184289006120181 ], [ -117.039520553456953, 48.184087313852309 ], [ -117.039520553456953, 48.181061929834122 ], [ -117.039520553456953, 48.180860237566243 ], [ -117.039520553456953, 48.180255160762606 ], [ -117.039520553456953, 48.178238238083821 ], [ -117.039520553456953, 48.177229776744426 ], [ -117.039520553456953, 48.17400270045836 ], [ -117.04142998703702, 48.085459794859496 ], [ -117.041702763262748, 48.045524725819462 ], [ -117.041975539488476, 47.97735273927637 ], [ -117.042521091939918, 47.766584319342861 ], [ -117.042521091939918, 47.764970781199828 ], [ -117.042521091939918, 47.761138628110132 ], [ -117.042521091939918, 47.760936935842253 ], [ -117.041975539488476, 47.745003246679815 ], [ -117.04224831571419, 47.744196477608298 ], [ -117.041702763262748, 47.722615404945245 ], [ -117.041702763262748, 47.706480023514928 ], [ -117.04142998703702, 47.683285412708848 ], [ -117.04142998703702, 47.680058336422789 ], [ -117.04142998703702, 47.678243106011877 ], [ -117.04142998703702, 47.678041413743998 ], [ -117.041157210811306, 47.558437898891775 ], [ -117.041157210811306, 47.558236206623896 ], [ -117.04061165835985, 47.532822980871146 ], [ -117.04061165835985, 47.527578981906288 ], [ -117.04061165835985, 47.522334982941445 ], [ -117.040066105908409, 47.47776099174019 ], [ -117.040066105908409, 47.463239148452899 ], [ -117.040066105908409, 47.434800538681969 ], [ -117.040066105908409, 47.412412696947406 ], [ -117.039793329682681, 47.39910100726739 ], [ -117.039793329682681, 47.366023475335247 ], [ -117.039793329682681, 47.347266094422501 ], [ -117.040066105908409, 47.259328265627275 ], [ -117.039793329682681, 47.225443964623608 ], [ -117.039793329682681, 47.203257815156924 ], [ -117.039793329682681, 47.181878434761757 ], [ -117.039793329682681, 47.154649978598094 ], [ -117.039793329682681, 47.127219830166553 ], [ -117.039793329682681, 46.825891581955389 ], [ -117.039793329682681, 46.815403584025688 ], [ -117.039793329682681, 46.541707176513938 ], [ -117.039793329682681, 46.471719959559934 ], [ -117.039793329682681, 46.469501344613263 ], [ -117.039793329682681, 46.462643807505387 ], [ -117.039793329682681, 46.425330737947775 ], [ -117.046885511551508, 46.379546593139253 ], [ -117.061069875289149, 46.367646749334398 ], [ -117.04743106400295, 46.342838600385278 ], [ -116.987965846795134, 46.298062916916152 ], [ -116.985238084537897, 46.294634148362206 ], [ -116.958778790642683, 46.242395850981559 ], [ -116.925500091104354, 46.158895252079674 ], [ -116.943503322002144, 46.062082963497772 ], [ -116.915952923204017, 45.995322822829834 ], [ -117.212733456791639, 45.998348206848021 ], [ -117.214642890371707, 45.998348206848021 ], [ -117.216825100177502, 45.998348206848021 ], [ -117.475144185938049, 45.997944822312263 ], [ -117.475416962163777, 45.997944822312263 ], [ -117.480054158001082, 45.997944822312263 ], [ -117.480054158001082, 45.997944822312263 ], [ -117.504876794541957, 45.998348206848021 ], [ -117.603076235802561, 45.998953283651659 ], [ -117.977870769947231, 46.000768514062564 ], [ -117.996965105747904, 46.000768514062564 ], [ -118.126261036741042, 46.000365129526806 ], [ -118.130898232578346, 46.000365129526806 ], [ -118.228824897613237, 46.000365129526806 ], [ -118.236462631933506, 46.000365129526806 ], [ -118.252556429251214, 46.000365129526806 ], [ -118.256375296411349, 46.000365129526806 ], [ -118.315022184941995, 46.000365129526806 ], [ -118.367667996506697, 46.000566821794685 ], [ -118.378306269309931, 46.000566821794685 ], [ -118.470777409830347, 46.000566821794685 ], [ -118.496963927499834, 46.000566821794685 ], [ -118.537062032681249, 46.000768514062564 ], [ -118.569522403542408, 46.000768514062564 ], [ -118.575796256734051, 46.000768514062564 ], [ -118.579887900119914, 46.000768514062564 ], [ -118.637716459973376, 46.000970206330443 ], [ -118.63935311732773, 46.000970206330443 ], [ -118.658720229354117, 46.000970206330443 ], [ -118.67781456515479, 46.000970206330443 ], [ -118.987142805125714, 45.999760052723168 ], [ -119.008692126957911, 45.979187441399517 ], [ -119.026968134081415, 45.969102828005568 ], [ -119.093252756932316, 45.942681140913422 ], [ -119.125985904019188, 45.932798219787358 ], [ -119.169630100135009, 45.9275542208225 ], [ -119.195543841578782, 45.927957605358259 ], [ -119.225822002634146, 45.932798219787358 ], [ -119.257191268592393, 45.939857449163114 ], [ -119.322384786540411, 45.933201604323116 ], [ -119.376121703008025, 45.920898375982496 ], [ -119.432040829281419, 45.913637454338854 ], [ -119.487959955554828, 45.906376532695212 ], [ -119.524511969801836, 45.908595147641876 ], [ -119.571702256852063, 45.925537298143709 ], [ -119.600616536778801, 45.919486530107342 ], [ -119.623256963513882, 45.905569763623696 ], [ -119.669901698112682, 45.856961927064866 ], [ -119.773011111436318, 45.845667160063641 ], [ -119.802743720040226, 45.847482390474553 ], [ -119.868210014213957, 45.835985931205457 ], [ -119.999415378787162, 45.812186243595733 ], [ -120.001052036141516, 45.811984551327853 ], [ -120.141259016163602, 45.773057943627222 ], [ -120.170446072316068, 45.761964868893877 ], [ -120.210816953723196, 45.725861952943546 ], [ -120.40394252153574, 45.699238573583514 ], [ -120.482229298318501, 45.694397959154429 ], [ -120.505960829956479, 45.700045342655031 ], [ -120.522054627274187, 45.709928263781109 ], [ -120.559424970198364, 45.738366873552039 ], [ -120.591067012382339, 45.746636256535076 ], [ -120.634983984723888, 45.74582948746356 ], [ -120.65353276807312, 45.737156719944764 ], [ -120.668808236713659, 45.730097490569001 ], [ -120.689266453642958, 45.715777339549589 ], [ -120.788829776032188, 45.686330268439264 ], [ -120.855659951334545, 45.671606732884101 ], [ -120.870117091297914, 45.661320427222279 ], [ -120.91594349721953, 45.641352892702258 ], [ -120.944039448469084, 45.656479812793179 ], [ -121.064333764013341, 45.652647659703476 ], [ -121.086701414522693, 45.646596891667109 ], [ -121.195266352360818, 45.629453048897403 ], [ -121.200449100649564, 45.649823967953175 ], [ -121.215724569290103, 45.671203348348342 ], [ -121.312287353196382, 45.699843650387152 ], [ -121.337655542188699, 45.70488595708413 ], [ -121.372570899081367, 45.703070726673218 ], [ -121.401757955233819, 45.692986113279275 ], [ -121.42358005329173, 45.693994574618671 ], [ -121.441037731738064, 45.69722165090473 ], [ -121.462859829795974, 45.701457188530185 ], [ -121.52232504700379, 45.724651799336272 ], [ -121.533236096032752, 45.726467029747184 ], [ -121.62625278900461, 45.705894418423526 ], [ -121.707267328044608, 45.69480134369018 ], [ -121.735090503068449, 45.693994574618671 ], [ -121.811195070045414, 45.706701187495042 ], [ -121.819923909268581, 45.704684264816251 ], [ -121.867114196318823, 45.693187805547154 ], [ -121.901756776985764, 45.670799963812584 ], [ -121.90093844830858, 45.661925504025916 ], [ -121.908303406403135, 45.654462890114388 ], [ -121.922214993915048, 45.648412122078021 ], [ -121.98304409225149, 45.622797204057392 ], [ -122.101701750441393, 45.583467211820995 ], [ -122.112340023244627, 45.581450289142211 ], [ -122.12625161075654, 45.582660442749479 ], [ -122.12625161075654, 45.582660442749479 ], [ -122.129524925465233, 45.583063827285237 ], [ -122.129524925465233, 45.582862135017358 ], [ -122.140708750719909, 45.584475673160391 ], [ -122.183807394384289, 45.577618136052507 ], [ -122.201810625282064, 45.564104754104619 ], [ -122.249000912332306, 45.547767680406423 ], [ -122.266731367004354, 45.543935527316719 ], [ -122.294827318253922, 45.543532142780961 ], [ -122.33137933250093, 45.548171064942181 ], [ -122.352928654333112, 45.56934875306947 ], [ -122.380206276905511, 45.576004597909474 ], [ -122.492317305678043, 45.583265519553116 ], [ -122.643980887180533, 45.609687206645262 ], [ -122.675077376913066, 45.617956589628299 ], [ -122.738088685055288, 45.644176584452566 ], [ -122.763729650273334, 45.657084889596817 ], [ -122.774640699302296, 45.680481192670776 ], [ -122.772458489496501, 45.699641958119273 ], [ -122.762092992918994, 45.728685644693847 ], [ -122.760183559338927, 45.734333028194456 ], [ -122.761547440467538, 45.759141177143569 ], [ -122.769457951013536, 45.780520557538736 ], [ -122.795644468683037, 45.809967628649069 ], [ -122.79591724490875, 45.82509454873999 ], [ -122.785551748331244, 45.850507774492741 ], [ -122.785006195879802, 45.867651617262453 ], [ -122.813920475806526, 45.961035137290409 ], [ -122.884569518269032, 46.06026773308686 ], [ -122.904209406521147, 46.083664036160812 ], [ -123.115883757682909, 46.185316939171813 ], [ -123.166347359441829, 46.188947399993637 ], [ -123.212992094040615, 46.172610326295441 ], [ -123.2800950455687, 46.144776793328141 ], [ -123.363564570640222, 46.146188639203295 ], [ -123.371475081186219, 46.146390331471174 ], [ -123.430940298394034, 46.181888170617867 ], [ -123.427666983685342, 46.229285853569422 ], [ -123.447579648163185, 46.24985846489308 ], [ -123.468856193769653, 46.264582000448243 ], [ -123.474857270735583, 46.267809076734309 ], [ -123.484131662410192, 46.269624307145222 ], [ -123.54768852300387, 46.259136309215513 ], [ -123.54768852300387, 46.265590461787639 ], [ -123.559963453161444, 46.265187077251881 ], [ -123.564327872773021, 46.262161693233693 ], [ -123.581512774993627, 46.26054815509066 ], [ -123.61342759340333, 46.259943078287023 ], [ -123.669619495902452, 46.266800615394914 ], [ -123.679166663802789, 46.272447998895522 ], [ -123.679984992479973, 46.277893690128252 ], [ -123.678075558899906, 46.286566457647055 ], [ -123.678893887577075, 46.29080199527251 ], [ -123.680530544931415, 46.29604599423736 ], [ -123.687895503025956, 46.299273070523427 ], [ -123.700715985634986, 46.305323838559794 ], [ -123.724174741047236, 46.301088300934339 ], [ -123.723901964821522, 46.295037532897965 ], [ -123.72799360820737, 46.289591841665235 ], [ -123.728539160658826, 46.288785072593718 ], [ -123.741359643267842, 46.290196918468872 ], [ -123.759635650391346, 46.275069998377951 ], [ -123.766727832260173, 46.273456460234918 ], [ -123.775183895257612, 46.274666613842193 ], [ -123.782548853352154, 46.280313997342802 ], [ -123.795642112186911, 46.284549534968264 ], [ -123.806007608764418, 46.283541073628868 ], [ -123.875565546324012, 46.239773851499137 ], [ -123.909389798313782, 46.245421234999739 ], [ -123.919482518665561, 46.251270310768234 ], [ -123.954397875558229, 46.277086921056735 ], [ -123.96940056797304, 46.291407072076147 ], [ -123.971037225327379, 46.29382737929069 ], [ -123.970218896650209, 46.299273070523427 ], [ -123.9745833162618, 46.30310522361313 ], [ -123.985221589065034, 46.308954299381611 ], [ -124.001315386382743, 46.313189837007073 ], [ -124.020682498409144, 46.315811836489502 ], [ -124.029956890083753, 46.308349222577974 ], [ -124.035685190823955, 46.296852763308877 ], [ -124.03868572930692, 46.283742765896747 ], [ -124.044141253821394, 46.275876767449468 ], [ -124.061053379816272, 46.278700459199769 ], [ -124.080693268068401, 46.267203999930672 ], [ -124.082057149197013, 46.269220922609463 ], [ -124.081784372971299, 46.274666613842193 ], [ -124.076328848456811, 46.296449378773119 ], [ -124.071418876393778, 46.305525530827673 ], [ -124.064599470750693, 46.32690491122284 ], [ -124.058325617559035, 46.386404130247136 ], [ -124.057507288881865, 46.409397048785337 ], [ -124.056961736430424, 46.493301032222988 ], [ -124.061871708493442, 46.556229019801222 ], [ -124.068418337910828, 46.601408087806107 ], [ -124.069509442813711, 46.630653466648553 ], [ -124.068691114136541, 46.634889004274015 ], [ -124.062690037170626, 46.642553310453415 ], [ -124.056416183978968, 46.645578694471595 ], [ -124.04850567343297, 46.645780386739474 ], [ -124.035957967049683, 46.630855158916432 ], [ -124.052597316818833, 46.622787468201281 ], [ -124.050960659464494, 46.617341776968544 ], [ -124.028865785180855, 46.591121782144285 ], [ -124.023683036892095, 46.582650706893361 ], [ -124.023137484440653, 46.564095018248501 ], [ -124.026138022923618, 46.531622563119988 ], [ -124.03186632366382, 46.496326416241175 ], [ -124.026138022923618, 46.463047192041145 ], [ -124.001315386382743, 46.460021808022958 ], [ -123.990677113579508, 46.463047192041145 ], [ -123.990949889805236, 46.465669191523567 ], [ -123.994223204513915, 46.468896267809626 ], [ -123.992586547159576, 46.488662110061767 ], [ -123.988494903773713, 46.496931493044805 ], [ -123.983584931710681, 46.498545031187838 ], [ -123.978947735873376, 46.497334877580563 ], [ -123.979220512099104, 46.489872263669042 ], [ -123.970764449101665, 46.475350420381758 ], [ -123.968036686844428, 46.473535189970846 ], [ -123.943759602754994, 46.477165650792671 ], [ -123.921119176019914, 46.507822875510271 ], [ -123.896569315704753, 46.522748103333313 ], [ -123.897114868156208, 46.528395486833929 ], [ -123.894387105898957, 46.537068254352718 ], [ -123.903388721347852, 46.55199348217576 ], [ -123.917027532634052, 46.562683172373347 ], [ -123.92030084734273, 46.567322094534561 ], [ -123.922210280922798, 46.577003323392752 ], [ -123.928756910340184, 46.588903167197614 ], [ -123.93912240691769, 46.596365781109135 ], [ -123.955488980461126, 46.603626702752777 ], [ -123.959307847621261, 46.613509623878841 ], [ -123.960671728749872, 46.636300850149169 ], [ -123.940486288046301, 46.640939772310382 ], [ -123.921937504697084, 46.650217616632816 ], [ -123.920846399794186, 46.653646385186761 ], [ -123.923301385825695, 46.672807150635265 ], [ -123.915663651505426, 46.678656226403746 ], [ -123.895478210801855, 46.683698533100724 ], [ -123.864927273520777, 46.698623760923766 ], [ -123.851288462234578, 46.702657606281349 ], [ -123.846105713945832, 46.716776065032874 ], [ -123.848833476203069, 46.719801449051062 ], [ -123.86219951126354, 46.727667447498334 ], [ -123.870655574260979, 46.728272524301971 ], [ -123.876656651226909, 46.730692831516521 ], [ -123.893023224770346, 46.750256981500783 ], [ -123.898751525510548, 46.750256981500783 ], [ -123.910753679442394, 46.746626520678959 ], [ -123.916481980182596, 46.741382521714101 ], [ -123.915936427731154, 46.737348676356525 ], [ -123.912935889248189, 46.730692831516521 ], [ -123.916754756408324, 46.726658986158938 ], [ -123.929029686565897, 46.725247140283784 ], [ -123.948669574818027, 46.725448832551663 ], [ -123.96858223929587, 46.736138522749258 ], [ -123.975128868713242, 46.73331483099895 ], [ -123.979766064550546, 46.724642063480154 ], [ -123.975128868713242, 46.713952373282567 ], [ -123.96694558194153, 46.705279605763771 ], [ -123.97376498758463, 46.703262683084986 ], [ -123.987403798870815, 46.707498220710441 ], [ -123.994223204513915, 46.707901605246199 ], [ -124.003497596188524, 46.702254221745591 ], [ -124.022319155763483, 46.708910066585588 ], [ -124.042504596467055, 46.720003141318941 ], [ -124.042231820241327, 46.722826833069242 ], [ -124.046323463627189, 46.725650524819542 ], [ -124.063235589622067, 46.733718215534708 ], [ -124.080966044294129, 46.734928369141983 ], [ -124.092149869548805, 46.74158421398198 ], [ -124.096514289160382, 46.7462231361432 ], [ -124.09515040803177, 46.756912826340788 ], [ -124.09678706538611, 46.784342974772329 ], [ -124.098423722740449, 46.794225895898393 ], [ -124.101151484997686, 46.810562969596589 ], [ -124.107970890640786, 46.836379579885097 ], [ -124.122973583055611, 46.879743417479077 ], [ -124.13824905169615, 46.905560027767578 ], [ -124.117790834766851, 46.912417564875469 ], [ -124.110698652898023, 46.912619257143348 ], [ -124.093513750677417, 46.901122797874244 ], [ -124.090513212194466, 46.895475414373635 ], [ -124.089422107291568, 46.867641881406335 ], [ -124.073055533748132, 46.861591113369968 ], [ -124.066236128105032, 46.863406343780881 ], [ -124.061053379816272, 46.865221574191793 ], [ -124.055052302850356, 46.870465573156636 ], [ -124.049324002110154, 46.891239876748173 ], [ -124.046323463627189, 46.894063568498481 ], [ -124.036230743275397, 46.898500798391815 ], [ -124.013590316540316, 46.903543105088787 ], [ -124.009498673154454, 46.910400642196677 ], [ -123.984948812839306, 46.921897101465774 ], [ -123.979493288324832, 46.923107255073049 ], [ -123.957398414041194, 46.921292024662137 ], [ -123.915390875279712, 46.93299017619912 ], [ -123.882930504418553, 46.939847713307003 ], [ -123.860290077683473, 46.948520480825799 ], [ -123.876111098775468, 46.961025401434298 ], [ -123.889477133835939, 46.968891399881571 ], [ -123.898205973059092, 46.971916783899758 ], [ -123.921664728471356, 46.971916783899758 ], [ -123.93912240691769, 46.969698168953087 ], [ -123.948124022366571, 46.971916783899758 ], [ -123.959307847621261, 46.981799705025821 ], [ -123.991495442256678, 46.980186166882795 ], [ -124.012226435411691, 46.985228473579767 ], [ -124.019591393506246, 46.991279241616141 ], [ -124.01004422560591, 46.997935086456138 ], [ -124.005134253542877, 47.003985854492512 ], [ -124.017136407474723, 47.011650160671913 ], [ -124.016863631248995, 47.014877236957972 ], [ -124.026410799149346, 47.030205849316772 ], [ -124.065963351879304, 47.041097231782246 ], [ -124.106334233286447, 47.042710769925272 ], [ -124.122155254378427, 47.041702308585876 ], [ -124.141522366404828, 47.035046463745871 ], [ -124.149160100725098, 47.029197387977383 ], [ -124.151342310530893, 47.021129697262225 ], [ -124.139612932824761, 46.988455549865833 ], [ -124.137976275470422, 46.970908322560362 ], [ -124.124337464184222, 46.943881558664586 ], [ -124.141249590179115, 46.940251097842761 ], [ -124.158707268625434, 46.929359715377302 ], [ -124.179983814231903, 46.926334331359115 ], [ -124.174528289717429, 46.941662943717915 ], [ -124.171254975008736, 46.95840340195187 ], [ -124.169072765202941, 46.9945063179022 ], [ -124.173437184814532, 47.066308765267109 ], [ -124.17671049952321, 47.092932144627135 ], [ -124.183802681392038, 47.12479952295201 ], [ -124.18271157648914, 47.134077367274443 ], [ -124.185712114972105, 47.136094289953235 ], [ -124.189803758357968, 47.146783980150815 ], [ -124.195804835323898, 47.17401243631447 ], [ -124.208898094158641, 47.218183042979966 ], [ -124.236448492956754, 47.287363490862447 ], [ -124.242176793696956, 47.295027797041854 ], [ -124.25363339517736, 47.302490410953368 ], [ -124.257452262337495, 47.304103949096401 ], [ -124.271091073623694, 47.305112410435797 ], [ -124.286366542264233, 47.325079944955817 ], [ -124.293185947907332, 47.339400095975222 ], [ -124.300005353550432, 47.348274555761897 ], [ -124.307643087870701, 47.352308401119473 ], [ -124.319372465576819, 47.355535477405539 ], [ -124.324009661414138, 47.367637013478273 ], [ -124.326737423671375, 47.388814701605568 ], [ -124.336830144023153, 47.416043157769224 ], [ -124.345286207020592, 47.489055758741415 ], [ -124.353742270018031, 47.533629749942662 ], [ -124.355924479823827, 47.545731286015396 ], [ -124.358925018306792, 47.547546516426308 ], [ -124.366289976401333, 47.582439278769371 ], [ -124.371745500915821, 47.599583121539084 ], [ -124.3750188156245, 47.603818659164538 ], [ -124.382110997493328, 47.632257268935476 ], [ -124.396022585005241, 47.665536493135505 ], [ -124.412116382322949, 47.691151411156127 ], [ -124.420299669094675, 47.725237404427673 ], [ -124.425209641157707, 47.738347401839803 ], [ -124.430665165672181, 47.74621340028709 ], [ -124.453851144858717, 47.765374165735587 ], [ -124.471581599530765, 47.76698770387862 ], [ -124.476491571593797, 47.769609703361041 ], [ -124.482219872333999, 47.797443236328341 ], [ -124.489857606654269, 47.817007386312596 ], [ -124.498040893425994, 47.822654769813212 ], [ -124.506769732649161, 47.823864923420487 ], [ -124.512770809615077, 47.822453077545333 ], [ -124.540048432187476, 47.836974920832617 ], [ -124.558324439310979, 47.855933994013242 ], [ -124.559142767988149, 47.862993223389005 ], [ -124.562416082696828, 47.866220299675064 ], [ -124.588057047914887, 47.877918451212047 ], [ -124.60960636974707, 47.879935373890831 ], [ -124.610697474649967, 47.880540450694468 ], [ -124.625427390839064, 47.888003064605996 ], [ -124.630064586676369, 47.89244029449933 ], [ -124.629791810450641, 47.896877524392664 ], [ -124.645340055316908, 47.935400747557551 ], [ -124.651886684734279, 47.943266746004831 ], [ -124.662252181311786, 47.951536128987868 ], [ -124.672344901663578, 47.964444434132119 ], [ -124.670708244309225, 47.982395045973348 ], [ -124.67889153108095, 48.015674270173378 ], [ -124.682164845789629, 48.036045189229149 ], [ -124.685438160498322, 48.049155186641286 ], [ -124.688438698981287, 48.055004262409774 ], [ -124.693621447270033, 48.058634723231592 ], [ -124.696621985752998, 48.069324413429179 ], [ -124.694985328398658, 48.087073333002529 ], [ -124.688711475207, 48.092519024235258 ], [ -124.687074817852661, 48.098569792271633 ], [ -124.694985328398658, 48.114906865969829 ], [ -124.721717398519601, 48.153228396866822 ], [ -124.73181011887138, 48.160489318510471 ], [ -124.733174, 48.163313010260779 ], [ -124.73181011887138, 48.169968855100777 ], [ -124.704259720073267, 48.184490698388061 ], [ -124.696076433301556, 48.198609157139593 ], [ -124.690893685012796, 48.21252592362324 ], [ -124.690348132561354, 48.219786845266881 ], [ -124.705078048750437, 48.238745918447506 ], [ -124.705896377427621, 48.239956072054781 ], [ -124.699622524235963, 48.245805147823269 ], [ -124.684619831821152, 48.255284684413581 ], [ -124.680800964661017, 48.265369297807524 ], [ -124.676436545049427, 48.295219753453615 ], [ -124.669344363180613, 48.29642990706089 ], [ -124.665798272246192, 48.299253598811191 ], [ -124.661979405086058, 48.310548365812416 ], [ -124.658978866603107, 48.331120977136067 ], [ -124.670162691857783, 48.341407282797896 ], [ -124.696621985752998, 48.349676665780933 ], [ -124.713806887973604, 48.366215431747008 ], [ -124.726900146808362, 48.371056046176108 ], [ -124.73099179019421, 48.376300045140958 ], [ -124.73181011887138, 48.38114065957005 ], [ -124.725809041905464, 48.38598127399915 ], [ -124.717080202682297, 48.389813427088846 ], [ -124.694439775947203, 48.38900665801733 ], [ -124.653250565862905, 48.390620196160363 ], [ -124.639338978350978, 48.385577889463391 ], [ -124.631155691579266, 48.376501737408837 ], [ -124.611788579552865, 48.378115275551863 ], [ -124.599240873169563, 48.380938967302171 ], [ -124.597331439589496, 48.381947428641567 ], [ -124.590784810172124, 48.373678045658529 ], [ -124.572781579274348, 48.366215431747008 ], [ -124.564871068728351, 48.367828969890041 ], [ -124.546322285379119, 48.353508818870637 ], [ -124.538957327284578, 48.349878358048812 ], [ -124.525318515998379, 48.349071588977296 ], [ -124.510588599809296, 48.343222513208808 ], [ -124.414025815903017, 48.300867136954224 ], [ -124.395477032553799, 48.28876560088149 ], [ -124.380747116364702, 48.284731755523907 ], [ -124.361380004338301, 48.287555447274215 ], [ -124.342285668537627, 48.277672526148145 ], [ -124.299187024873248, 48.268192989557832 ], [ -124.295640933938841, 48.262948990592982 ], [ -124.297004815067467, 48.261738836985707 ], [ -124.297550367518909, 48.260730375646311 ], [ -124.295640933938841, 48.259318529771164 ], [ -124.271909402300864, 48.254477915342065 ], [ -124.265908325334934, 48.254881299877823 ], [ -124.254997276305986, 48.258915145235406 ], [ -124.252269514048749, 48.26093206791419 ], [ -124.250905632920123, 48.264764221003887 ], [ -124.238630702762549, 48.262545606057223 ], [ -124.217899709607522, 48.25326776173479 ], [ -124.192804296840933, 48.246410224626906 ], [ -124.141249590179115, 48.227451151446289 ], [ -124.110971429123751, 48.220593614338398 ], [ -124.101697037449142, 48.216963153516573 ], [ -124.107152561963616, 48.200021003014747 ], [ -124.09078598842018, 48.196390542192923 ], [ -124.072237205070962, 48.189936389620797 ], [ -124.050687883238766, 48.177834853548063 ], [ -123.981129945679172, 48.164724856135926 ], [ -123.955216204235398, 48.165531625207443 ], [ -123.935030763531827, 48.16089270304623 ], [ -123.915663651505426, 48.159279164903197 ], [ -123.880202742161316, 48.160691010778351 ], [ -123.866563930875131, 48.154841935009856 ], [ -123.858926196554862, 48.154236858206218 ], [ -123.831648573982463, 48.157867319028043 ], [ -123.778184433740577, 48.155447011813493 ], [ -123.756362335682667, 48.161094395314109 ], [ -123.72881193688454, 48.162707933457142 ], [ -123.728266384433098, 48.16089270304623 ], [ -123.725265845950133, 48.159279164903197 ], [ -123.718446440307034, 48.158674088099559 ], [ -123.70617151014946, 48.163313010260779 ], [ -123.706444286375188, 48.165733317475322 ], [ -123.702625419215053, 48.166741778814718 ], [ -123.672347258159689, 48.162707933457142 ], [ -123.651343488778949, 48.156858857688647 ], [ -123.636886348815594, 48.150404705116522 ], [ -123.640977992201442, 48.146169167491067 ], [ -123.628703062043868, 48.139311630383176 ], [ -123.59078716666825, 48.134874400489842 ], [ -123.574147816899085, 48.14072347625833 ], [ -123.560509005612886, 48.150606397384401 ], [ -123.551234613938277, 48.151413166455917 ], [ -123.534868040394841, 48.145765782955309 ], [ -123.522320334011539, 48.13547947729348 ], [ -123.507317641596728, 48.131849016471662 ], [ -123.473493389606958, 48.134067631418326 ], [ -123.455490158709182, 48.140118399454693 ], [ -123.440214690068643, 48.141933629865605 ], [ -123.439123585165746, 48.141328553061967 ], [ -123.441851347422983, 48.124184710292255 ], [ -123.424666445202377, 48.118133942255888 ], [ -123.394933836598469, 48.114301789166191 ], [ -123.360836808382984, 48.115915327309224 ], [ -123.332740857133416, 48.112889943291037 ], [ -123.314464850009912, 48.113696712362554 ], [ -123.288278332340425, 48.120957634006189 ], [ -123.2800950455687, 48.117327173184371 ], [ -123.268911220314024, 48.116117019577096 ], [ -123.248725779610453, 48.115713635041345 ], [ -123.239178611710116, 48.118133942255888 ], [ -123.217083737426478, 48.127210094310442 ], [ -123.191442772208433, 48.143748860276517 ], [ -123.164437925861762, 48.165935009743201 ], [ -123.144798037609647, 48.176019623137151 ], [ -123.133341436129243, 48.177229776744426 ], [ -123.132523107452073, 48.174607777261997 ], [ -123.139342513095158, 48.166540086546838 ], [ -123.143161380255293, 48.156657165420768 ], [ -123.131432002549175, 48.152825012331064 ], [ -123.124885373131804, 48.153430089134702 ], [ -123.11642931013435, 48.150203012848642 ], [ -123.085060044176103, 48.127210094310442 ], [ -123.066238484601158, 48.12055424947043 ], [ -123.050417463509163, 48.102805329897087 ], [ -123.038688085803045, 48.081224257234041 ], [ -123.016593211519407, 48.085459794859496 ], [ -123.004045505136105, 48.090502101556467 ], [ -122.979495644820943, 48.095947792789204 ], [ -122.946216945282629, 48.098569792271633 ], [ -122.929032043062023, 48.096149485057083 ], [ -122.917848217807347, 48.091510562895863 ], [ -122.920848756290312, 48.088283486609797 ], [ -122.926577057030514, 48.074165027858271 ], [ -122.927940938159125, 48.066702413946757 ], [ -122.927122609481955, 48.065088875803724 ], [ -122.926849833256227, 48.064685491267966 ], [ -122.918666546484516, 48.058231338695833 ], [ -122.877750112625932, 48.046936571694616 ], [ -122.849381385150636, 48.053794108802499 ], [ -122.857837448148089, 48.065693952607361 ], [ -122.878295665077374, 48.075980258269183 ], [ -122.882114532237509, 48.100788407218296 ], [ -122.876386231497307, 48.110873020612246 ], [ -122.833287587832928, 48.134471015954084 ], [ -122.784187867202633, 48.142942091205001 ], [ -122.760456335564641, 48.14314378347288 ], [ -122.748999734084236, 48.117125480916492 ], [ -122.77327681817367, 48.106839175254663 ], [ -122.778459566462431, 48.106234098451026 ], [ -122.792916706425785, 48.097157946396479 ], [ -122.798372230940274, 48.092519024235258 ], [ -122.801372769423239, 48.087476717538287 ], [ -122.770549055916433, 48.053390724266741 ], [ -122.770549055916433, 48.047945033034011 ], [ -122.766730188756299, 48.044314572212187 ], [ -122.742180328441137, 48.049356878909165 ], [ -122.739998118635356, 48.054197493338258 ], [ -122.739179789958186, 48.0691227211613 ], [ -122.741089223538253, 48.070937951572212 ], [ -122.747363076729897, 48.070736259304333 ], [ -122.748454181632795, 48.07214810517948 ], [ -122.733178712992256, 48.091308870627984 ], [ -122.718448796803159, 48.097561330932237 ], [ -122.698536132325316, 48.103007022164967 ], [ -122.68735230707064, 48.101595176289813 ], [ -122.691716726682216, 48.09675456186072 ], [ -122.692262279133672, 48.087073333002529 ], [ -122.682169558781879, 48.042701034069154 ], [ -122.677259586718847, 48.036246881497028 ], [ -122.669076299947136, 48.032011343871574 ], [ -122.669894628624306, 48.017287808316411 ], [ -122.686806754619184, 48.008211656261849 ], [ -122.690080069327877, 48.008413348529729 ], [ -122.69717225119669, 48.01506919336974 ], [ -122.701809447034009, 48.016077654709136 ], [ -122.723358768866191, 48.00800996399397 ], [ -122.718176020577445, 47.987639044938206 ], [ -122.701263894582553, 47.972915509383036 ], [ -122.683260663684777, 47.972310432579398 ], [ -122.678896244073201, 47.967873202686064 ], [ -122.676168481815949, 47.95879705063151 ], [ -122.684624544813403, 47.94407351507634 ], [ -122.684351768587675, 47.939636285183013 ], [ -122.681896782556151, 47.936409208896947 ], [ -122.662256894304036, 47.930761825396331 ], [ -122.657619698466732, 47.93116520993209 ], [ -122.65107306904936, 47.921080596538147 ], [ -122.654073607532325, 47.915836597573289 ], [ -122.655164712435209, 47.905146907375709 ], [ -122.646435873212042, 47.89486060171388 ], [ -122.637434257763161, 47.890019987284788 ], [ -122.618885474413929, 47.890221679552667 ], [ -122.61042941141649, 47.887397987802359 ], [ -122.631978733248687, 47.874893067193867 ], [ -122.633888166828754, 47.868438914621734 ], [ -122.636343152860263, 47.866220299675064 ], [ -122.649981964146463, 47.863799992460514 ], [ -122.666348537689899, 47.867430453282338 ], [ -122.693626160262284, 47.868035530085976 ], [ -122.690898398005046, 47.860169531638697 ], [ -122.681624006330438, 47.850488302780505 ], [ -122.683806216136219, 47.838790151243529 ], [ -122.688716188199251, 47.83152922959988 ], [ -122.719539901706057, 47.812973540955021 ], [ -122.732087608089358, 47.809746464668962 ], [ -122.748181405407067, 47.800468620346521 ], [ -122.75063639143859, 47.774046933254382 ], [ -122.758001349533131, 47.757709859556186 ], [ -122.758546901984573, 47.746011708019211 ], [ -122.749272510309964, 47.740969401322232 ], [ -122.740270894861069, 47.736128786893133 ], [ -122.732905936766528, 47.737540632768287 ], [ -122.72281321641475, 47.748835399769511 ], [ -122.719812677931785, 47.760936935842253 ], [ -122.714902705868752, 47.768197857485887 ], [ -122.690625621779319, 47.778282470879844 ], [ -122.684078992361947, 47.798653389935616 ], [ -122.681896782556151, 47.800872004882279 ], [ -122.648072530566395, 47.825075077027762 ], [ -122.62324989402552, 47.8361681517611 ], [ -122.614521054802353, 47.850891687316263 ], [ -122.607974425384981, 47.856740763084758 ], [ -122.573604620943769, 47.857547532156275 ], [ -122.573059068492313, 47.87408629812235 ], [ -122.586425103552784, 47.902121523357522 ], [ -122.588334537132852, 47.913012905822981 ], [ -122.596245047678849, 47.92027382746663 ], [ -122.616703264608148, 47.925114441895722 ], [ -122.620249355542555, 47.931568594467848 ], [ -122.616976040833862, 47.939031208379376 ], [ -122.612066068770829, 47.940846438790281 ], [ -122.603882781999118, 47.940443054254523 ], [ -122.601427795967595, 47.931770286735727 ], [ -122.592153404292986, 47.922492442413301 ], [ -122.58178790771548, 47.92027382746663 ], [ -122.549054760628607, 47.919063673859355 ], [ -122.527505438796425, 47.905953676447226 ], [ -122.513866627510225, 47.880742142962347 ], [ -122.512775522607328, 47.863799992460514 ], [ -122.506228893189956, 47.831730921867759 ], [ -122.502137249804093, 47.826486922902916 ], [ -122.482497361551978, 47.815595540437442 ], [ -122.482497361551978, 47.809343080133203 ], [ -122.485225123809215, 47.804099081168346 ], [ -122.495317844160994, 47.797039851792583 ], [ -122.495590620386722, 47.786753546130754 ], [ -122.471313536297288, 47.765979242539224 ], [ -122.470222431394404, 47.757104782752549 ], [ -122.471859088748744, 47.749843861108907 ], [ -122.477314613263218, 47.746011708019211 ], [ -122.488498438517894, 47.743591400804661 ], [ -122.507592774318582, 47.742986324001023 ], [ -122.515230508638851, 47.743994785340419 ], [ -122.519322152024699, 47.74621340028709 ], [ -122.537325382922489, 47.747221861626485 ], [ -122.554510285143095, 47.745608323483452 ], [ -122.543053683662691, 47.710917253408269 ], [ -122.531051529730831, 47.704866485371895 ], [ -122.525868781442071, 47.705068177639774 ], [ -122.523959347862004, 47.708093561657961 ], [ -122.511138865252988, 47.708698638461598 ], [ -122.504592235835617, 47.699219101871286 ], [ -122.504319459609889, 47.685907412191277 ], [ -122.508683879221465, 47.670780492100356 ], [ -122.518231047121802, 47.651418034383973 ], [ -122.502137249804093, 47.639114806043352 ], [ -122.493135634355212, 47.635080960685777 ], [ -122.492862858129484, 47.629635269453047 ], [ -122.494499515483824, 47.623584501416673 ], [ -122.500227816224026, 47.617735425648192 ], [ -122.498318382643959, 47.59817127566393 ], [ -122.493953963032382, 47.588893431341496 ], [ -122.483861242680589, 47.586674816394833 ], [ -122.479224046843285, 47.583649432376646 ], [ -122.503773907158447, 47.575178357125722 ], [ -122.518231047121802, 47.574169895786333 ], [ -122.529960424827934, 47.568522512285725 ], [ -122.534597620665238, 47.566102205071175 ], [ -122.543053683662691, 47.556420976212983 ], [ -122.542235354985507, 47.537865287568124 ], [ -122.54714532704854, 47.528184058709925 ], [ -122.546599774597098, 47.523545136548712 ], [ -122.532960963310899, 47.522133290673565 ], [ -122.523141019184834, 47.523948521084471 ], [ -122.500500592449754, 47.515275753565675 ], [ -122.494772291709552, 47.510233446868703 ], [ -122.484952347583487, 47.512653754083246 ], [ -122.467767445362881, 47.510031754600824 ], [ -122.452491976722342, 47.50337590976082 ], [ -122.46040248726834, 47.494703142242017 ], [ -122.460129711042612, 47.486837143794745 ], [ -122.433397640921669, 47.466466224738966 ], [ -122.439944270339041, 47.457995149488056 ], [ -122.440217046564769, 47.417656695912257 ], [ -122.43776206053326, 47.407370390250435 ], [ -122.427396563955739, 47.402126391285577 ], [ -122.394936193094594, 47.399302699535269 ], [ -122.373659647488125, 47.388814701605568 ], [ -122.378569619551158, 47.385385933051623 ], [ -122.401755598737694, 47.381352087694047 ], [ -122.43776206053326, 47.365620090799489 ], [ -122.44840033333648, 47.354930400601901 ], [ -122.454128634076682, 47.343433941332805 ], [ -122.457401948785375, 47.342627172261288 ], [ -122.469676878942948, 47.34464409494008 ], [ -122.491226200775145, 47.33516455834976 ], [ -122.490953424549417, 47.332340866599459 ], [ -122.493135634355212, 47.330323943920668 ], [ -122.50486501206133, 47.330727328456426 ], [ -122.518776599573258, 47.333349327938855 ], [ -122.524232124087732, 47.338391634635826 ], [ -122.528050991247866, 47.345450864011596 ], [ -122.526141557667799, 47.358964245959484 ], [ -122.537870935373931, 47.359165938227363 ], [ -122.55150974666013, 47.359569322763122 ], [ -122.555874166271707, 47.34746778669038 ], [ -122.571422411137974, 47.327298559902488 ], [ -122.576059606975278, 47.326491790830971 ], [ -122.573604620943769, 47.318424100115806 ], [ -122.571149634912246, 47.315600408365505 ], [ -122.547690879499996, 47.316407177437021 ], [ -122.547418103274268, 47.317819023312175 ], [ -122.54032592140544, 47.318424100115806 ], [ -122.533233739536627, 47.316608869704901 ], [ -122.471586312523016, 47.277278877468504 ], [ -122.444308689950631, 47.266790879538796 ], [ -122.43776206053326, 47.268001033146071 ], [ -122.429578773761534, 47.269614571289104 ], [ -122.41812217228113, 47.281716107361845 ], [ -122.409120556832235, 47.288573644469722 ], [ -122.413757752669554, 47.294019335702458 ], [ -122.42412324924706, 47.297448104256404 ], [ -122.432306536018771, 47.29603625838125 ], [ -122.444581466176345, 47.300473488274584 ], [ -122.442944808822006, 47.306322564043072 ], [ -122.423577696795604, 47.319029176919443 ], [ -122.418394948506858, 47.320642715062476 ], [ -122.364112479587789, 47.335971327421277 ], [ -122.336834857015404, 47.341417018654013 ], [ -122.324832703083558, 47.348476248029776 ], [ -122.325651031760728, 47.391436701087997 ], [ -122.328378794017965, 47.400714545410423 ], [ -122.335198199661065, 47.408378851589831 ], [ -122.34801868227008, 47.415841465501344 ], [ -122.355110864138908, 47.441859768057739 ], [ -122.367113018070754, 47.44770884382622 ], [ -122.383206815388476, 47.450532535576528 ], [ -122.367931346747923, 47.459205303095324 ], [ -122.363021374684905, 47.475744069061399 ], [ -122.361384717330552, 47.481391452562008 ], [ -122.365203584490686, 47.488450681937778 ], [ -122.386752906322883, 47.502165756153545 ], [ -122.396572850448948, 47.515275753565675 ], [ -122.393845088191696, 47.524755290155987 ], [ -122.398209507803287, 47.550168515908737 ], [ -122.409938885509419, 47.568925896821483 ], [ -122.421122710764095, 47.575985126197239 ], [ -122.401755598737694, 47.583851124644525 ], [ -122.387025682548611, 47.59575096844938 ], [ -122.375296304842479, 47.585262970519679 ], [ -122.370113556553719, 47.583044355573008 ], [ -122.358111402621873, 47.584859585983921 ], [ -122.342835933981334, 47.591313738556039 ], [ -122.339562619272641, 47.599179737003325 ], [ -122.345018143787115, 47.609062658129389 ], [ -122.367931346747923, 47.62418957822031 ], [ -122.385934577645713, 47.631652192131838 ], [ -122.393845088191696, 47.631047115328201 ], [ -122.404210584769217, 47.633870807078509 ], [ -122.414576081346723, 47.63971988284699 ], [ -122.429851549987262, 47.658880648295494 ], [ -122.407756675703624, 47.680058336422789 ], [ -122.403937808543489, 47.689336180745215 ], [ -122.393299535740255, 47.701639409085836 ], [ -122.380479053131225, 47.709102022997357 ], [ -122.376387409745377, 47.716564636908878 ], [ -122.375569081068207, 47.719791713194937 ], [ -122.373114095036684, 47.729271249785256 ], [ -122.38266126293702, 47.749037092037391 ], [ -122.380206276905511, 47.758516628627703 ], [ -122.394390640643152, 47.77223170284347 ], [ -122.39630007422322, 47.777879086344086 ], [ -122.397118402900389, 47.779694316754991 ], [ -122.394936193094594, 47.803292312096829 ], [ -122.391935654611629, 47.80772954199017 ], [ -122.35320143055884, 47.840605381654441 ], [ -122.346654801141469, 47.842420612065354 ], [ -122.339835395498369, 47.846656149690808 ], [ -122.336016528338234, 47.852303533191417 ], [ -122.329469898920863, 47.86944737596113 ], [ -122.330015451372304, 47.875296451729625 ], [ -122.333561542306711, 47.880338758426589 ], [ -122.328651570243693, 47.89788598573206 ], [ -122.321832164600593, 47.911802752215706 ], [ -122.312012220474529, 47.923702596020568 ], [ -122.310648339345903, 47.925114441895722 ], [ -122.309830010668733, 47.929148287253298 ], [ -122.311193891797359, 47.936812593432705 ], [ -122.307102248411496, 47.949115821773319 ], [ -122.277915192259044, 47.95657843568484 ], [ -122.249000912332306, 47.959603819703027 ], [ -122.230179352757347, 47.970898586704251 ], [ -122.226360485597212, 47.976344277936974 ], [ -122.232361562563142, 47.987639044938206 ], [ -122.230179352757347, 48.007203194922461 ], [ -122.228815471628735, 48.012447193887311 ], [ -122.2249966044686, 48.016682731512773 ], [ -122.2318160101117, 48.029792728924903 ], [ -122.281188506967723, 48.049760263444924 ], [ -122.305738367282885, 48.073358258786755 ], [ -122.321832164600593, 48.085459794859496 ], [ -122.32619658421217, 48.092922408771017 ], [ -122.343108710207048, 48.097561330932237 ], [ -122.363839703362075, 48.123983018024376 ], [ -122.365203584490686, 48.125798248435288 ], [ -122.363839703362075, 48.142740398937121 ], [ -122.364658032039245, 48.151211474188038 ], [ -122.370386332779447, 48.164724856135926 ], [ -122.363566927136347, 48.174406084994118 ], [ -122.361930269782007, 48.187516082406248 ], [ -122.372568542585242, 48.192961773638984 ], [ -122.382115710485579, 48.20708023239051 ], [ -122.385661801419985, 48.21776992258809 ], [ -122.39548174554605, 48.228459612785677 ], [ -122.396027297997492, 48.229266381857194 ], [ -122.425487130375672, 48.232896842679011 ], [ -122.430669878664432, 48.236325611232957 ], [ -122.433670417147397, 48.236527303500836 ], [ -122.449491438239377, 48.232695150411132 ], [ -122.45358308162524, 48.228862997321436 ], [ -122.45358308162524, 48.226846074642651 ], [ -122.449491438239377, 48.21474453856991 ], [ -122.444581466176345, 48.214542846302031 ], [ -122.441853703919108, 48.21171915455173 ], [ -122.442126480144836, 48.20929884733718 ], [ -122.454946962753866, 48.196592234460802 ], [ -122.461766368396951, 48.193163465906864 ], [ -122.464766906879916, 48.194777004049897 ], [ -122.470222431394404, 48.19397023497838 ], [ -122.478405718166115, 48.188121159209885 ], [ -122.478951270617557, 48.175616238601393 ], [ -122.475677955908878, 48.166741778814718 ], [ -122.442399256370564, 48.130840555132266 ], [ -122.411575542863758, 48.113293327826796 ], [ -122.379387948228342, 48.087476717538287 ], [ -122.360293612427654, 48.0614584149819 ], [ -122.358384178847587, 48.056214416017042 ], [ -122.363021374684905, 48.054600877874016 ], [ -122.377205738422546, 48.057626261892196 ], [ -122.387571235000053, 48.065088875803724 ], [ -122.390844549708746, 48.069526105697058 ], [ -122.393299535740255, 48.078400565483733 ], [ -122.400664493834796, 48.085258102591617 ], [ -122.423577696795604, 48.103007022164967 ], [ -122.449764214465105, 48.114100096898312 ], [ -122.467494669137153, 48.130437170596508 ], [ -122.477860165714674, 48.129025324721354 ], [ -122.486861781163554, 48.120957634006189 ], [ -122.489862319646519, 48.12055424947043 ], [ -122.511957193930158, 48.133865939150446 ], [ -122.522595466733392, 48.161699472117746 ], [ -122.537325382922489, 48.183683929316551 ], [ -122.538962040276829, 48.209702231872939 ], [ -122.534324844439524, 48.223013921552948 ], [ -122.535143173116694, 48.24015776432266 ], [ -122.531051529730831, 48.249838993180845 ], [ -122.503773907158447, 48.257099914824494 ], [ -122.499682263772584, 48.256696530288735 ], [ -122.497772830192517, 48.253469454002669 ], [ -122.493408410580926, 48.252057608127515 ], [ -122.480860704197625, 48.251654223591757 ], [ -122.474586851005981, 48.255284684413581 ], [ -122.466676340459983, 48.269604835432986 ], [ -122.463948578202746, 48.270613296772382 ], [ -122.406392794574998, 48.251855915859636 ], [ -122.405847242123556, 48.252259300395394 ], [ -122.395208969320322, 48.257099914824494 ], [ -122.391935654611629, 48.269604835432986 ], [ -122.371750213908058, 48.287757139542094 ], [ -122.376932962196818, 48.296026522525132 ], [ -122.378296843325444, 48.297640060668158 ], [ -122.38429792029136, 48.30409421324029 ], [ -122.408847780606521, 48.326482054974853 ], [ -122.42412324924706, 48.334348053422133 ], [ -122.442672032596278, 48.337978514243957 ], [ -122.47540517968315, 48.359962971442762 ], [ -122.482497361551978, 48.361778201853667 ], [ -122.497772830192517, 48.361778201853667 ], [ -122.507319998092854, 48.364601893603975 ], [ -122.533506515762355, 48.383359274516721 ], [ -122.53950759272827, 48.397276041000367 ], [ -122.547418103274268, 48.399898040482796 ], [ -122.554510285143095, 48.405948808519163 ], [ -122.55832915230323, 48.426723112110693 ], [ -122.551236970434402, 48.439429724987072 ], [ -122.557238047400332, 48.444472031684043 ], [ -122.568421872655009, 48.445077108487681 ], [ -122.575241278298108, 48.443261878076768 ], [ -122.581515131489752, 48.429143419325243 ], [ -122.614521054802353, 48.414823268305838 ], [ -122.649709187920735, 48.408570808001592 ], [ -122.665257432787001, 48.416436806448871 ], [ -122.674259048235882, 48.424706189431909 ], [ -122.678896244073201, 48.439429724987072 ], [ -122.676986810493133, 48.444068647148285 ], [ -122.674259048235882, 48.443261878076768 ], [ -122.673986272010168, 48.442051724469493 ], [ -122.667166866367069, 48.442455109005252 ], [ -122.654891936209495, 48.454153260542235 ], [ -122.657619698466732, 48.47291064145498 ], [ -122.664711880335545, 48.478154640419831 ], [ -122.688988964424979, 48.476944486812556 ], [ -122.695808370068079, 48.464842950739822 ], [ -122.695535593842351, 48.46060741311436 ], [ -122.700718342131111, 48.457582029096173 ], [ -122.710265510031448, 48.461615874453756 ], [ -122.712447719837229, 48.464237873936185 ], [ -122.712993272288685, 48.478759717223468 ], [ -122.701536670808281, 48.497718790404093 ], [ -122.684624544813403, 48.50921524967319 ], [ -122.679169020298914, 48.507803403798036 ], [ -122.676986810493133, 48.504576327511977 ], [ -122.671258509752931, 48.503971250708339 ], [ -122.615066607253794, 48.521518478013803 ], [ -122.606883320482083, 48.522123554817441 ], [ -122.600063914838984, 48.520913401210173 ], [ -122.598427257484644, 48.512240633691377 ], [ -122.568149096429281, 48.508206788333794 ], [ -122.556965271174604, 48.498727251743489 ], [ -122.537325382922489, 48.466658181150734 ], [ -122.532960963310899, 48.466053104347097 ], [ -122.526959886344969, 48.468070027025888 ], [ -122.514957732413123, 48.465649719811339 ], [ -122.511411641478716, 48.461817566721635 ], [ -122.500773368675482, 48.460809105382239 ], [ -122.471859088748744, 48.47069202650831 ], [ -122.469676878942948, 48.472103872383464 ], [ -122.469676878942948, 48.474927564133765 ], [ -122.473768522328811, 48.479768178562864 ], [ -122.478951270617557, 48.481785101241655 ], [ -122.483588466454876, 48.492474791439236 ], [ -122.484952347583487, 48.509618634208948 ], [ -122.483861242680589, 48.521921862549561 ], [ -122.485225123809215, 48.528174322853815 ], [ -122.498591158869687, 48.556209548088987 ], [ -122.504319459609889, 48.56468062333991 ], [ -122.525323228990629, 48.567302622822332 ], [ -122.531869858408001, 48.568714468697486 ], [ -122.534597620665238, 48.574160159930216 ], [ -122.534870396890966, 48.575975390341128 ], [ -122.5125027463816, 48.577992313019919 ], [ -122.495863396612449, 48.575975390341128 ], [ -122.488498438517894, 48.56468062333991 ], [ -122.482497361551978, 48.559638316642932 ], [ -122.478405718166115, 48.559234932107174 ], [ -122.444581466176345, 48.570126314572633 ], [ -122.433124864695941, 48.581622773841737 ], [ -122.425214354149958, 48.599573385682966 ], [ -122.448673109562208, 48.622566304221166 ], [ -122.464221354428474, 48.625793380507233 ], [ -122.486861781163554, 48.643138915544824 ], [ -122.488771214743622, 48.645357530491488 ], [ -122.493953963032382, 48.651609990795734 ], [ -122.500227816224026, 48.656248912956954 ], [ -122.506774445641398, 48.669762294904842 ], [ -122.519049375798986, 48.713126132498822 ], [ -122.515503284864565, 48.720992130946101 ], [ -122.505683340738514, 48.724622591767925 ], [ -122.495317844160994, 48.737329204644297 ], [ -122.490407872097975, 48.751044278860064 ], [ -122.51086608902726, 48.757700123700069 ], [ -122.528323767473594, 48.768389813897656 ], [ -122.535688725568136, 48.776054120077056 ], [ -122.567603543977839, 48.779281196363115 ], [ -122.596790600130291, 48.771415197915843 ], [ -122.598154481258916, 48.769398275237052 ], [ -122.606883320482083, 48.759111969575223 ], [ -122.627887089862824, 48.744590126287939 ], [ -122.637161481537433, 48.735715666501264 ], [ -122.637979810214603, 48.732488590215198 ], [ -122.626250432508485, 48.720992130946101 ], [ -122.612611621222285, 48.714941362909727 ], [ -122.605792215579186, 48.70102459642608 ], [ -122.606064991804914, 48.698604289211531 ], [ -122.615066607253794, 48.693763674782438 ], [ -122.620249355542555, 48.693561982514559 ], [ -122.630342075894333, 48.696587366532746 ], [ -122.646435873212042, 48.70808382580185 ], [ -122.673440719558712, 48.733093667018835 ], [ -122.666894090141341, 48.748422279377635 ], [ -122.661165789401139, 48.753867970610372 ], [ -122.647526978114939, 48.774037197398265 ], [ -122.645617544534872, 48.781499811309786 ], [ -122.64670864943777, 48.784928579863731 ], [ -122.656528593563834, 48.784928579863731 ], [ -122.659801908272527, 48.786542118006764 ], [ -122.680260125201812, 48.802677499437081 ], [ -122.693626160262284, 48.804492729847993 ], [ -122.69717225119669, 48.80287919170496 ], [ -122.698808908551044, 48.800458884490411 ], [ -122.699627237228214, 48.794811500989795 ], [ -122.699354461002486, 48.788962425221314 ], [ -122.70317332816262, 48.786340425738885 ], [ -122.709719957579992, 48.786138733471006 ], [ -122.711083838708618, 48.791382732435856 ], [ -122.70917440512855, 48.817804419528002 ], [ -122.711902167385787, 48.832326262815286 ], [ -122.717084915674548, 48.847251490638328 ], [ -122.72281321641475, 48.852898874138944 ], [ -122.785551748331244, 48.884967944731699 ], [ -122.793189482651513, 48.892833943178971 ], [ -122.792643930200072, 48.894649173589883 ], [ -122.783642314751177, 48.894649173589883 ], [ -122.751181943890032, 48.911187939555958 ], [ -122.747635852955625, 48.915625169449299 ], [ -122.74545364314983, 48.921272552949908 ], [ -122.746544748052727, 48.930752089540221 ], [ -122.755546363501608, 48.938618087987493 ], [ -122.766184636304843, 48.942046856541438 ], [ -122.770549055916433, 48.942450241077196 ], [ -122.787461181911311, 48.931760550879616 ], [ -122.818284895418117, 48.939021472523251 ], [ -122.821558210126796, 48.941441779737801 ], [ -122.822376538803979, 48.944870548291746 ], [ -122.817193790515219, 48.955963623025085 ], [ -122.797008349811648, 48.975124388473589 ], [ -122.774367923076568, 48.991058077636026 ], [ -122.766184636304843, 48.991663154439664 ], [ -122.756364692178792, 48.996907153404521 ], [ -122.756091915953064, 48.999529152886943 ], [ -122.758001349533131, 49.002352844637244 ], [ -122.407756675703624, 49.002151152369365 ], [ -122.406120018349284, 49.002151152369365 ], [ -122.0984284357327, 49.002151152369365 ], [ -121.751184300386157, 48.99731053794028 ], [ -121.126253967252666, 49.001344383297855 ], [ -120.851295531722954, 49.001142691029976 ], [ -119.702089292748099, 49.00033592195846 ], [ -119.701270964070929, 49.00033592195846 ], [ -119.457681794499479, 49.00033592195846 ], [ -119.428767514572741, 49.00033592195846 ], [ -119.137169729273865, 49.00033592195846 ], [ -119.131986980985118, 49.00033592195846 ], [ -118.836843104751836, 49.00013422969058 ], [ -118.196910079203533, 49.00013422969058 ], [ -117.429590556242161, 48.999932537422701 ], [ -117.268107030613592, 48.999932537422701 ], [ -117.26837980683932, 48.999730845154822 ], [ -117.032428371588139, 48.999125768351185 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "32", "geo_id": "0400000US50", "fips_state": "50", "name": "Vermont", "iso_3166_2": "VT", "census": 625741, "pop_estimataes_base": 625745, "pop_2010": 625792, "pop_2011": 626450, "pop_2012": 626138, "pop_2013": 626855, "pop_2014": 626562 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.458610878494483, 42.726899621851288 ], [ -72.864229126145943, 42.73718592751311 ], [ -72.927240434288166, 42.738799465656143 ], [ -72.930240972771131, 42.738799465656143 ], [ -73.018620469905684, 42.741018080602814 ], [ -73.022984889517261, 42.741219772870693 ], [ -73.142460876384348, 42.743438387817363 ], [ -73.264937401734386, 42.745858695031906 ], [ -73.27639400321479, 42.746060387299785 ], [ -73.290851143178145, 42.801929145502257 ], [ -73.285395618663671, 42.833998216095011 ], [ -73.278576213020571, 42.833393139291374 ], [ -73.274484569634723, 42.940290041267225 ], [ -73.274484569634723, 42.942508656213889 ], [ -73.274211793408995, 42.943718809821164 ], [ -73.269574597571676, 43.030648177277001 ], [ -73.259209100994184, 43.216810140529276 ], [ -73.254844681382593, 43.314630890450573 ], [ -73.253208024028254, 43.354767651758486 ], [ -73.252935247802526, 43.363440419277282 ], [ -73.252662471576798, 43.370297956385166 ], [ -73.252662471576798, 43.370903033188803 ], [ -73.246934170836596, 43.51491131245438 ], [ -73.242024198773578, 43.534878846974394 ], [ -73.245570289707985, 43.54032453820713 ], [ -73.302580520884277, 43.625640367519935 ], [ -73.306126611818684, 43.628060674734478 ], [ -73.366410157703683, 43.623421752573265 ], [ -73.375684549378292, 43.613337139179315 ], [ -73.400234409693439, 43.56896484024594 ], [ -73.428603137168722, 43.584091760336861 ], [ -73.431330899425973, 43.588327297962323 ], [ -73.421510955299908, 43.646616363379337 ], [ -73.408690472690878, 43.674046511810879 ], [ -73.403507724402118, 43.684937894276345 ], [ -73.37077457731526, 43.735562653513966 ], [ -73.360681856963481, 43.753311573087316 ], [ -73.35031636038596, 43.771463877196418 ], [ -73.357681318480502, 43.785985720483708 ], [ -73.379230640312699, 43.808373562218264 ], [ -73.379230640312699, 43.808575254486144 ], [ -73.388505031987307, 43.832374942095868 ], [ -73.397233871210474, 43.905589235335924 ], [ -73.407872144013709, 43.929792307481407 ], [ -73.405417157982185, 43.948751380662024 ], [ -73.405962710433641, 44.016318290401472 ], [ -73.410872682496674, 44.027007980599059 ], [ -73.436786423940447, 44.042538285225746 ], [ -73.437331976391889, 44.0467738228512 ], [ -73.429148689620177, 44.079447970247585 ], [ -73.403780500627846, 44.153065648023414 ], [ -73.390687241793103, 44.190983794384657 ], [ -73.350861912837416, 44.225876556727712 ], [ -73.324675395167915, 44.243625476301062 ], [ -73.32331151403929, 44.264803164428358 ], [ -73.315128227267579, 44.388440524638156 ], [ -73.296033891466905, 44.42837559367819 ], [ -73.293578905435396, 44.438863591607898 ], [ -73.29985275862704, 44.476580045701262 ], [ -73.30667216427014, 44.500379733310979 ], [ -73.338586982679828, 44.546768954923138 ], [ -73.338586982679828, 44.546768954923138 ], [ -73.356862989803346, 44.557862029656484 ], [ -73.362045738092093, 44.563106028621334 ], [ -73.374320668249666, 44.575409256961954 ], [ -73.390141689341647, 44.618369710020175 ], [ -73.365319052800771, 44.703282154797215 ], [ -73.339950863808454, 44.778916755251828 ], [ -73.369683472412362, 44.829138129953684 ], [ -73.359317975834855, 44.915664112873756 ], [ -73.35031636038596, 44.994324097346549 ], [ -73.343224178517147, 45.010862863312624 ], [ -73.191833373240371, 45.013484862795053 ], [ -73.085996197659483, 45.015501785473845 ], [ -73.015619931422719, 45.015098400938086 ], [ -73.01480160274555, 45.014896708670207 ], [ -72.845680342796726, 45.016711939081119 ], [ -72.67464964926782, 45.015501785473845 ], [ -72.554355333723578, 45.01187132465202 ], [ -72.342408206336103, 45.005417172079895 ], [ -72.103183456376229, 45.005618864347774 ], [ -71.897510182180383, 45.009249325169591 ], [ -71.767395922510076, 45.011467940116262 ], [ -71.502530207332157, 45.013283170527174 ], [ -71.464614311956524, 45.013686555062932 ], [ -71.468433179116658, 45.010257786508987 ], [ -71.486436410014448, 45.007030710222928 ], [ -71.504985193363666, 45.008240863830203 ], [ -71.530080606130269, 44.999568096311407 ], [ -71.536900011773369, 44.99412240507867 ], [ -71.538536669127723, 44.988273329310189 ], [ -71.537718340450539, 44.984239483952607 ], [ -71.516714571069798, 44.947531491198632 ], [ -71.494074144334718, 44.911226882980422 ], [ -71.495710801689057, 44.904974422676176 ], [ -71.572633697343207, 44.809977364505187 ], [ -71.623915627779297, 44.755117067642104 ], [ -71.627461718713704, 44.747452761462711 ], [ -71.625279508907909, 44.729703841889361 ], [ -71.598547438786966, 44.698038155832364 ], [ -71.553266585316806, 44.626639093003206 ], [ -71.536354459321927, 44.587914177570454 ], [ -71.580271431663476, 44.506430501347353 ], [ -71.59936576746415, 44.486462966827332 ], [ -71.679834754052706, 44.427972209142432 ], [ -71.709021810205158, 44.411635135444243 ], [ -71.745028272000724, 44.401348829782407 ], [ -71.7562120972554, 44.406391136479385 ], [ -71.761940397995602, 44.406996213283023 ], [ -71.764668160252839, 44.406391136479385 ], [ -71.793855216405291, 44.399331907103623 ], [ -71.81431343333459, 44.381986372066031 ], [ -71.815950090688943, 44.36685945197511 ], [ -71.849501566452972, 44.359195145795709 ], [ -72.002256252858373, 44.324907460256284 ], [ -72.012076196984424, 44.321478691702339 ], [ -72.058993707808952, 44.286182544823525 ], [ -72.065540337226309, 44.27730808503685 ], [ -72.067722547032105, 44.271055624732604 ], [ -72.064176456097698, 44.18795841036647 ], [ -72.052992630843022, 44.167990875846456 ], [ -72.04208158181406, 44.157704570184627 ], [ -72.040172148233992, 44.155687647505836 ], [ -72.040172148233992, 44.155687647505836 ], [ -72.054629288197361, 44.112122117643978 ], [ -72.090635749992913, 44.035277363582097 ], [ -72.112730624276566, 43.988081372898421 ], [ -72.113003400502279, 43.97275276053962 ], [ -72.107002323536364, 43.969525684253554 ], [ -72.105638442407738, 43.959037686323853 ], [ -72.10454733750484, 43.950566611072936 ], [ -72.120913911048277, 43.918900925015933 ], [ -72.167285869421335, 43.886025085351669 ], [ -72.182288561836145, 43.833988480238901 ], [ -72.183652442964771, 43.806558331807352 ], [ -72.204656212345526, 43.771867261732176 ], [ -72.205747317248409, 43.771060492660659 ], [ -72.23275216359508, 43.748269266390338 ], [ -72.264121429553327, 43.734150807638812 ], [ -72.271213611422155, 43.734150807638812 ], [ -72.302855653606116, 43.702686813849695 ], [ -72.329587723727073, 43.634716519574482 ], [ -72.334497695790105, 43.619186214947803 ], [ -72.334770472015833, 43.614547292786582 ], [ -72.329587723727073, 43.600227141767178 ], [ -72.395872346577988, 43.520558695954989 ], [ -72.387689059806263, 43.502406391845881 ], [ -72.387961836031991, 43.471547474860401 ], [ -72.396963451480872, 43.428990406337945 ], [ -72.396963451480872, 43.428990406337945 ], [ -72.405146738252597, 43.3900637986373 ], [ -72.404055633349699, 43.358196420312424 ], [ -72.400509542415278, 43.337018732185143 ], [ -72.3972362277066, 43.316446120861485 ], [ -72.431060479696356, 43.231735368352318 ], [ -72.439516542693809, 43.211364449296546 ], [ -72.452064249077111, 43.161344766862562 ], [ -72.441971528725333, 43.13653661791345 ], [ -72.432969913276423, 43.119997851947375 ], [ -72.43269713705071, 43.114148776178887 ], [ -72.4438809623054, 43.00624341286364 ], [ -72.556264767303645, 42.866874055759283 ], [ -72.555991991077917, 42.866268978955645 ], [ -72.555719214852189, 42.858201288240487 ], [ -72.555719214852189, 42.856386057829575 ], [ -72.542898732243174, 42.808383298074382 ], [ -72.509620032704845, 42.78115484191072 ], [ -72.491071249355628, 42.772482074391931 ], [ -72.478523542972326, 42.762195768730102 ], [ -72.460247535848822, 42.732143620816132 ], [ -72.458610878494483, 42.726899621851288 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "33", "geo_id": "0400000US49", "fips_state": "49", "name": "Utah", "iso_3166_2": "UT", "census": 2763885, "pop_estimataes_base": 2763885, "pop_2010": 2774346, "pop_2011": 2815324, "pop_2012": 2855194, "pop_2013": 2902787, "pop_2014": 2942902 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.046626874302518, 42.001614226558544 ], [ -111.046354098076804, 41.579875694423635 ], [ -111.046354098076804, 41.377780042008922 ], [ -111.046626874302518, 41.36063619923921 ], [ -111.046626874302518, 41.251722374584574 ], [ -111.046626874302518, 40.997993501592838 ], [ -110.500801646628972, 40.994766425306779 ], [ -110.048538664378711, 40.997186732521321 ], [ -110.000802824877027, 40.9973884247892 ], [ -109.99971171997413, 40.9973884247892 ], [ -109.855413096566181, 40.997590117057079 ], [ -109.854321991663284, 40.997590117057079 ], [ -109.715478892769809, 40.998195193860717 ], [ -109.71384223541547, 40.998195193860717 ], [ -109.676471892491293, 40.998396886128596 ], [ -109.207296784246154, 41.001422270146776 ], [ -109.050177678229176, 41.000615501075259 ], [ -109.048268244649108, 40.662579260110128 ], [ -109.048268244649108, 40.653503108055574 ], [ -109.050177678229176, 40.540353745775477 ], [ -109.049904902003462, 40.539950361239718 ], [ -109.050723230680632, 40.222688423866117 ], [ -109.05099600690636, 40.180938124415171 ], [ -109.05099600690636, 40.180736432147292 ], [ -109.050723230680632, 40.059519379152036 ], [ -109.05099600690636, 40.058914302348398 ], [ -109.051268783132073, 39.660572073287454 ], [ -109.051268783132073, 39.497604720841252 ], [ -109.051541559357801, 39.366706438987805 ], [ -109.051541559357801, 39.12507910206881 ], [ -109.053178216712141, 38.942950984174118 ], [ -109.053178216712141, 38.94254759963836 ], [ -109.053723769163597, 38.905234530080747 ], [ -109.05399654538931, 38.904427761009231 ], [ -109.059452069903799, 38.719879335899982 ], [ -109.05999762235524, 38.500034763911913 ], [ -109.05999762235524, 38.27555126976263 ], [ -109.041994391457465, 38.155544370374656 ], [ -109.041994391457465, 38.152922370892227 ], [ -109.042812720134634, 37.999232862768459 ], [ -109.042812720134634, 37.997014247821795 ], [ -109.043085496360362, 37.974223021551467 ], [ -109.042267167683192, 37.881242886059269 ], [ -109.041721615231737, 37.842114586090744 ], [ -109.041721615231737, 37.835862125786505 ], [ -109.041721615231737, 37.713233226916088 ], [ -109.041721615231737, 37.711216304237304 ], [ -109.041994391457465, 37.623883552245715 ], [ -109.042267167683192, 37.617631091941462 ], [ -109.041721615231737, 37.604117709993574 ], [ -109.041994391457465, 37.530701724485638 ], [ -109.041994391457465, 37.530701724485638 ], [ -109.043085496360362, 37.485119271944988 ], [ -109.045813258617599, 37.374995293683078 ], [ -109.045267706166157, 37.111988576368915 ], [ -109.045267706166157, 37.111988576368915 ], [ -109.045267706166157, 37.109366576886487 ], [ -109.045267706166157, 37.096256579474357 ], [ -109.04499492994043, 37.086373658348286 ], [ -109.04499492994043, 37.074675506811303 ], [ -109.045267706166157, 37.072658584132512 ], [ -109.045267706166157, 36.999040906356697 ], [ -109.181110266576667, 36.999242598624576 ], [ -109.233756078141383, 36.999242598624576 ], [ -109.246849336976126, 36.999444290892455 ], [ -109.263488686745291, 36.999242598624576 ], [ -109.268125882582595, 36.999242598624576 ], [ -109.270035316162662, 36.999242598624576 ], [ -109.378054701549331, 36.999040906356697 ], [ -109.38132801625801, 36.999242598624576 ], [ -110.000802824877027, 36.998032445017301 ], [ -110.331134834228692, 36.998234137285181 ], [ -110.495346122114483, 37.003881520785789 ], [ -110.75066466939208, 37.003276443982152 ], [ -111.189834392807583, 37.001057829035489 ], [ -111.405600387355193, 37.001461213571247 ], [ -111.405873163580921, 37.001461213571247 ], [ -111.412692569224021, 37.001461213571247 ], [ -112.357589415131656, 37.001057829035489 ], [ -112.369046016612074, 37.001057829035489 ], [ -112.534621185626492, 37.00065444449973 ], [ -112.53871282901234, 37.00065444449973 ], [ -112.540349486366694, 37.00065444449973 ], [ -112.544986682203998, 37.00065444449973 ], [ -112.558898269715911, 37.00065444449973 ], [ -112.609907423926288, 37.00065444449973 ], [ -112.899322999419354, 37.000251059963972 ], [ -112.966425950947439, 37.000251059963972 ], [ -113.965878041999872, 37.000049367696093 ], [ -113.965878041999872, 37.000049367696093 ], [ -114.050711448200005, 37.000452752231851 ], [ -114.051802553102902, 37.08839058102707 ], [ -114.051802553102902, 37.091012580509499 ], [ -114.05207532932863, 37.283830388601785 ], [ -114.05207532932863, 37.284435465405423 ], [ -114.051802553102902, 37.293108232924219 ], [ -114.051802553102902, 37.293511617459977 ], [ -114.051802553102902, 37.370558063789744 ], [ -114.051802553102902, 37.370759756057623 ], [ -114.052620881780072, 37.491976809052872 ], [ -114.052620881780072, 37.50246480698258 ], [ -114.052620881780072, 37.517188342537743 ], [ -114.052620881780072, 37.51779341934138 ], [ -114.052348105554358, 37.604722786797211 ], [ -114.051802553102902, 37.74590737431248 ], [ -114.051802553102902, 37.746310758848239 ], [ -114.051802553102902, 37.746915835651876 ], [ -114.050984224425733, 37.756193679974317 ], [ -114.048529238394224, 37.809843823230111 ], [ -114.050438671974291, 38.000039631839975 ], [ -114.049893119522835, 38.148686833266765 ], [ -114.050165895748563, 38.404634321205165 ], [ -114.050165895748563, 38.404634321205165 ], [ -114.049893119522835, 38.54380198604165 ], [ -114.049893119522835, 38.547835831399226 ], [ -114.050165895748563, 38.572845672616225 ], [ -114.049893119522835, 38.677322267377519 ], [ -114.04771090971704, 39.542783788846137 ], [ -114.047165357265598, 39.906031563296146 ], [ -114.046619804814156, 40.117001675497541 ], [ -114.045528699911259, 40.494569600966955 ], [ -114.045528699911259, 40.49577975457423 ], [ -114.045255923685531, 40.506671137039689 ], [ -114.043619266331191, 40.726314016759879 ], [ -114.043892042556905, 40.758584779620513 ], [ -114.043892042556905, 40.75918985642415 ], [ -114.042255385202566, 41.000010424271622 ], [ -114.039800399171057, 41.74203627779832 ], [ -114.041164280299668, 41.850546717917197 ], [ -114.041164280299668, 41.850546717917197 ], [ -114.041709832751124, 41.993748228111265 ], [ -113.893319565957313, 41.988100844610656 ], [ -113.796211229599592, 41.989109305950052 ], [ -113.764569187415617, 41.98951269048581 ], [ -113.431509415806715, 41.993748228111265 ], [ -113.402322359654264, 41.994151612647023 ], [ -113.396594058914062, 41.994151612647023 ], [ -113.000795755388651, 41.998185458004599 ], [ -113.000795755388651, 41.998185458004599 ], [ -112.979246433556469, 41.998185458004599 ], [ -112.909688495996875, 41.998790534808236 ], [ -112.882410873424476, 41.998992227076116 ], [ -112.880501439844409, 41.998992227076116 ], [ -112.833038376568453, 41.999395611611874 ], [ -112.833038376568453, 41.999395611611874 ], [ -112.788575851775448, 41.999597303879753 ], [ -112.709470746315517, 42.00040407295127 ], [ -112.648096095527634, 42.00040407295127 ], [ -112.450878884329242, 42.001009149754907 ], [ -112.450606108103514, 42.001009149754907 ], [ -112.38623091883268, 42.001210842022786 ], [ -112.26484549838554, 42.001009149754907 ], [ -112.239204533167481, 42.001210842022786 ], [ -112.163918294867685, 41.996773612129445 ], [ -112.109635825948629, 41.997176996665203 ], [ -111.915964705684644, 41.998588842540357 ], [ -111.915691929458916, 41.998588842540357 ], [ -111.876412152954671, 41.998588842540357 ], [ -111.507345919550218, 41.999597303879753 ], [ -111.425513051833036, 42.000807457487028 ], [ -111.420875855995732, 42.000807457487028 ], [ -111.415965883932699, 42.000807457487028 ], [ -111.046626874302518, 42.001614226558544 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "34", "geo_id": "0400000US19", "fips_state": "19", "name": "Iowa", "iso_3166_2": "IA", "census": 3046355, "pop_estimataes_base": 3046869, "pop_2010": 3050295, "pop_2011": 3064904, "pop_2012": 3075935, "pop_2013": 3092341, "pop_2014": 3107126 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.641055756573536, 42.508265203470486 ], [ -90.656058448988361, 42.491726437504411 ], [ -90.656604001439803, 42.48910443802199 ], [ -90.656331225214075, 42.48365874678926 ], [ -90.654149015408294, 42.478414747824402 ], [ -90.646784057313738, 42.471960595252277 ], [ -90.624416406804386, 42.458850597840147 ], [ -90.559495665082096, 42.430613680337089 ], [ -90.4773900211392, 42.383821074189171 ], [ -90.474935035107677, 42.381400766974622 ], [ -90.419015908834268, 42.328557392790337 ], [ -90.416560922802759, 42.325128624236399 ], [ -90.416288146577045, 42.321296471146695 ], [ -90.424198657123043, 42.293261245911523 ], [ -90.4307452865404, 42.284185093856962 ], [ -90.431018062766128, 42.278134325820602 ], [ -90.419288685059996, 42.254536330478757 ], [ -90.391192733810442, 42.22549264390419 ], [ -90.375098936492719, 42.214802953706602 ], [ -90.357095705594958, 42.205525109384169 ], [ -90.34918519504896, 42.204314955776894 ], [ -90.31617927173636, 42.193625265579314 ], [ -90.306632103836023, 42.190398189293248 ], [ -90.234891956470634, 42.165388348076263 ], [ -90.211433201058384, 42.154093581075038 ], [ -90.167516228716835, 42.122427895018042 ], [ -90.162333480428074, 42.114965281106521 ], [ -90.161242375525177, 42.104477283176813 ], [ -90.163424585330972, 42.087535132674979 ], [ -90.16833455739399, 42.075836981137996 ], [ -90.166425123813923, 42.054457600742829 ], [ -90.164515690233856, 42.044978064152517 ], [ -90.154150193656363, 42.033078220347662 ], [ -90.15087687894767, 42.029447759525837 ], [ -90.141056934821606, 42.008875148202186 ], [ -90.140511382370164, 41.995966843057928 ], [ -90.15169520762484, 41.931021932800903 ], [ -90.151967983850568, 41.929005010122118 ], [ -90.18197336868019, 41.806981188055346 ], [ -90.18797444564612, 41.803149034965642 ], [ -90.208432662575404, 41.797098266929282 ], [ -90.222344250087332, 41.7930644215717 ], [ -90.242802467016631, 41.783786577249266 ], [ -90.278536152586469, 41.76744950355107 ], [ -90.302813236675888, 41.750103968513478 ], [ -90.309905418544702, 41.743246431405595 ], [ -90.315088166833476, 41.734170279351041 ], [ -90.316997600413544, 41.729127972654069 ], [ -90.334455278859863, 41.679511674755844 ], [ -90.34318411808303, 41.648047680966727 ], [ -90.341547460728691, 41.621424301606702 ], [ -90.398012139453527, 41.572211388244241 ], [ -90.461296223821478, 41.523603551685412 ], [ -90.474389482656235, 41.519771398595708 ], [ -90.499484895422825, 41.517956168184796 ], [ -90.605867623455168, 41.494156480575079 ], [ -90.655785672762647, 41.462087409982324 ], [ -90.737618540479815, 41.450187566177462 ], [ -90.771715568695299, 41.450792642981099 ], [ -90.786172708658668, 41.452809565659891 ], [ -90.847547359446551, 41.455028180606561 ], [ -90.989936549274432, 41.432035262068361 ], [ -91.027852444650051, 41.423564186817444 ], [ -91.039854598581911, 41.418521880120466 ], [ -91.047765109127909, 41.410857573941072 ], [ -91.078588822634714, 41.336029742557976 ], [ -91.079679927537597, 41.333811127611305 ], [ -91.11404973197881, 41.250108836441541 ], [ -91.113776955753082, 41.241436068922738 ], [ -91.049674542707976, 41.178104696808745 ], [ -91.019123605426898, 41.164994699396615 ], [ -91.005484794140699, 41.165599776200253 ], [ -90.99784705982043, 41.162574392182066 ], [ -90.989663773048704, 41.155716855074189 ], [ -90.946565129384339, 41.096621020585644 ], [ -90.949292891641562, 41.072619640708055 ], [ -90.949292891641562, 41.072619640708055 ], [ -90.948474562964407, 41.070199333493505 ], [ -90.945474024481427, 41.061728258242589 ], [ -90.942200709772749, 41.034701494346805 ], [ -90.952293430124541, 40.954024587195221 ], [ -90.962931702927762, 40.924980900620653 ], [ -90.968932779893692, 40.919131824852165 ], [ -90.998392612271886, 40.90803875011882 ], [ -91.009576437526562, 40.900576136207299 ], [ -91.093045962598069, 40.821109382662989 ], [ -91.097683158435387, 40.808402769786611 ], [ -91.097137605983932, 40.80255369401813 ], [ -91.094682619952408, 40.79791477185691 ], [ -91.111867522173014, 40.697068637917425 ], [ -91.112140298398742, 40.696261868845909 ], [ -91.122505794976263, 40.670646950825287 ], [ -91.13805403984253, 40.660965721967095 ], [ -91.185517103118485, 40.637972803428895 ], [ -91.186880984247097, 40.637367726625257 ], [ -91.197792033276059, 40.636157573017982 ], [ -91.218523026431086, 40.638376187964653 ], [ -91.253165607098012, 40.637972803428895 ], [ -91.306629747339898, 40.626274651891919 ], [ -91.339635670652484, 40.61356803901554 ], [ -91.348637286101393, 40.609735885925843 ], [ -91.359821111356069, 40.601869887478557 ], [ -91.405374741051958, 40.554673896794881 ], [ -91.406738622180569, 40.547614667419118 ], [ -91.404010859923346, 40.539143592168202 ], [ -91.384643747896945, 40.530874209185164 ], [ -91.369095503030678, 40.512520212808184 ], [ -91.364185530967646, 40.500015292199684 ], [ -91.363912754741932, 40.490132371073614 ], [ -91.372641593965085, 40.401186080938999 ], [ -91.37564213244805, 40.391908236616558 ], [ -91.38846261505708, 40.384849007240803 ], [ -91.419286328563885, 40.378193162400791 ], [ -91.484479846511903, 40.383840545901407 ], [ -91.49102647592926, 40.393521774759591 ], [ -91.524577951693317, 40.410665617529304 ], [ -91.619504078245228, 40.507074521575447 ], [ -91.622231840502479, 40.514335443219096 ], [ -91.618140197116617, 40.53410128547123 ], [ -91.620049630696684, 40.540757130311235 ], [ -91.696426973899378, 40.58815481326279 ], [ -91.716885190828663, 40.598441118924619 ], [ -91.729160120986251, 40.61356803901554 ], [ -91.785897575936815, 40.611551116336749 ], [ -91.795444743837152, 40.61114773180099 ], [ -91.80008193967447, 40.610946039533118 ], [ -91.813993527186383, 40.61054265499736 ], [ -91.824904576215346, 40.610139270461602 ], [ -91.832542310535615, 40.609735885925843 ], [ -91.868275996105439, 40.60812234778281 ], [ -91.943016681953793, 40.60590373283614 ], [ -91.971112633203361, 40.605096963764623 ], [ -91.998663032001474, 40.604491886960986 ], [ -92.029759521734007, 40.603685117889469 ], [ -92.067948193335354, 40.602676656550074 ], [ -92.069584850689694, 40.602676656550074 ], [ -92.082405333298709, 40.602273272014315 ], [ -92.083223661975893, 40.602273272014315 ], [ -92.09277082987623, 40.602071579746436 ], [ -92.096316920810636, 40.601869887478557 ], [ -92.179786445882158, 40.600458041603403 ], [ -92.196153019425594, 40.600054657067645 ], [ -92.201608543940068, 40.600054657067645 ], [ -92.217702341257777, 40.599852964799766 ], [ -92.236523900832736, 40.599449580264007 ], [ -92.298716880297775, 40.598441118924619 ], [ -92.33117725115892, 40.597836042120981 ], [ -92.331450027384648, 40.597634349853102 ], [ -92.350817139411049, 40.597230965317344 ], [ -92.350817139411049, 40.597230965317344 ], [ -92.379731419337787, 40.596424196245827 ], [ -92.453653776508958, 40.595214042638553 ], [ -92.461564287054955, 40.595415734906432 ], [ -92.48174972775854, 40.595012350370673 ], [ -92.482295280209968, 40.594810658102801 ], [ -92.484477490015763, 40.595012350370673 ], [ -92.580221945244858, 40.592188658620373 ], [ -92.637777728872607, 40.590776812745219 ], [ -92.639141610001232, 40.590776812745219 ], [ -92.686604673277188, 40.589768351405823 ], [ -92.689877987985881, 40.589970043673702 ], [ -92.714700624526756, 40.589566659137944 ], [ -92.742251023324869, 40.589163274602186 ], [ -92.757526491965407, 40.588961582334306 ], [ -92.828175534427899, 40.588558197798548 ], [ -92.827902758202185, 40.588558197798548 ], [ -92.834994940070999, 40.588558197798548 ], [ -92.857362590580365, 40.588356505530669 ], [ -92.863090891320567, 40.58815481326279 ], [ -92.879184688638276, 40.588356505530669 ], [ -92.88982296144151, 40.587953120994911 ], [ -92.903461772727695, 40.587953120994911 ], [ -92.941650444329056, 40.587751428727032 ], [ -92.957744241646765, 40.587348044191273 ], [ -93.085403515285549, 40.584322660173086 ], [ -93.097405669217409, 40.583919275637328 ], [ -93.098496774120306, 40.583919275637328 ], [ -93.260525852200317, 40.580893891619148 ], [ -93.317536083376609, 40.580692199351269 ], [ -93.34535925840045, 40.58049050708339 ], [ -93.374273538327188, 40.580288814815511 ], [ -93.441649266080987, 40.579885430279752 ], [ -93.465380797718979, 40.580087122547631 ], [ -93.467017455073318, 40.580087122547631 ], [ -93.52402768624961, 40.58049050708339 ], [ -93.527573777184017, 40.58049050708339 ], [ -93.528119329635473, 40.580288814815511 ], [ -93.548304770339044, 40.58049050708339 ], [ -93.554033071079246, 40.580288814815511 ], [ -93.557033609562211, 40.580288814815511 ], [ -93.558943043142278, 40.580288814815511 ], [ -93.560852476722346, 40.580288814815511 ], [ -93.565216896333922, 40.580087122547631 ], [ -93.565762448785364, 40.580087122547631 ], [ -93.56630800123682, 40.580087122547631 ], [ -93.597404490969353, 40.579482045743994 ], [ -93.656324155725713, 40.578271892136726 ], [ -93.659324694208678, 40.578271892136726 ], [ -93.661779680240187, 40.578271892136726 ], [ -93.668871862109015, 40.578271892136726 ], [ -93.677055148880726, 40.578070199868847 ], [ -93.690421183941197, 40.577868507600968 ], [ -93.7223360023509, 40.577666815333089 ], [ -93.72833707931683, 40.57746512306521 ], [ -93.737338694765711, 40.57746512306521 ], [ -93.742794219280199, 40.57746512306521 ], [ -93.750159177374741, 40.577666815333089 ], [ -93.770344618078312, 40.577666815333089 ], [ -93.77443626146416, 40.577666815333089 ], [ -93.815352695322758, 40.577263430797331 ], [ -93.818626010031437, 40.577061738529451 ], [ -93.840993660540803, 40.576860046261572 ], [ -93.853541366924105, 40.576658353993693 ], [ -93.898276667942824, 40.576053277190056 ], [ -93.899367772845721, 40.575851584922177 ], [ -93.901004430200061, 40.575851584922177 ], [ -93.913824912809091, 40.575649892654297 ], [ -93.935647010867001, 40.575246508118539 ], [ -93.936192563318457, 40.575246508118539 ], [ -93.937010891995627, 40.575448200386418 ], [ -93.938647549349966, 40.575246508118539 ], [ -93.939738654252864, 40.575246508118539 ], [ -93.963742962116569, 40.574843123582781 ], [ -93.976836220951313, 40.574641431314902 ], [ -94.015570445004101, 40.573834662243385 ], [ -94.034119228353333, 40.573632969975506 ], [ -94.080218410500677, 40.57282620090399 ], [ -94.080491186726405, 40.57282620090399 ], [ -94.089220025949572, 40.57282620090399 ], [ -94.09112945952964, 40.57282620090399 ], [ -94.232154768228895, 40.571817739564594 ], [ -94.287255565825134, 40.571616047296715 ], [ -94.294893300145404, 40.571414355028836 ], [ -94.310714321237384, 40.571616047296715 ], [ -94.324898684975025, 40.571414355028836 ], [ -94.336628062681157, 40.571414355028836 ], [ -94.336628062681157, 40.571414355028836 ], [ -94.35817738451334, 40.571414355028836 ], [ -94.429644755653015, 40.571010970493077 ], [ -94.460195692934093, 40.571010970493077 ], [ -94.470561189511599, 40.570809278225198 ], [ -94.471106741963041, 40.570809278225198 ], [ -94.489382749086559, 40.570607585957319 ], [ -94.53384527387955, 40.570809278225198 ], [ -94.537118588588243, 40.570809278225198 ], [ -94.538209693491126, 40.570809278225198 ], [ -94.541755784425547, 40.570809278225198 ], [ -94.542028560651261, 40.570809278225198 ], [ -94.594128819764535, 40.571010970493077 ], [ -94.632044715140154, 40.571212662760956 ], [ -94.632044715140154, 40.571212662760956 ], [ -94.682508316899089, 40.571817739564594 ], [ -94.714968687760233, 40.572221124100352 ], [ -94.716605345114573, 40.572221124100352 ], [ -94.773888352516593, 40.573027893171869 ], [ -94.81125869544077, 40.573431277707627 ], [ -94.819987534663937, 40.573632969975506 ], [ -94.823806401824072, 40.574036354511264 ], [ -94.896910430318087, 40.574641431314902 ], [ -94.901547626155391, 40.574843123582781 ], [ -94.914913661215863, 40.57504481585066 ], [ -94.955011766397277, 40.575649892654297 ], [ -94.966468367877681, 40.575851584922177 ], [ -95.069032228749876, 40.576860046261572 ], [ -95.07967050155311, 40.577061738529451 ], [ -95.097673732450886, 40.577263430797331 ], [ -95.107220900351223, 40.577061738529451 ], [ -95.110221438834188, 40.577061738529451 ], [ -95.11076699128563, 40.577263430797331 ], [ -95.112130872414255, 40.577263430797331 ], [ -95.120859711637422, 40.57746512306521 ], [ -95.15441118740145, 40.577868507600968 ], [ -95.163958355301787, 40.578070199868847 ], [ -95.202147026903148, 40.578473584404605 ], [ -95.211421418577757, 40.578675276672485 ], [ -95.211694194803485, 40.578675276672485 ], [ -95.212785299706383, 40.578675276672485 ], [ -95.213330852157824, 40.578675276672485 ], [ -95.217422495543687, 40.578675276672485 ], [ -95.218786376672298, 40.578876968940364 ], [ -95.221514138929535, 40.578876968940364 ], [ -95.335534601282134, 40.579885430279752 ], [ -95.357902251791501, 40.580087122547631 ], [ -95.373996049109209, 40.58049050708339 ], [ -95.373996049109209, 40.58049050708339 ], [ -95.415458035419249, 40.581095583887027 ], [ -95.469194951886863, 40.581498968422785 ], [ -95.525386854385985, 40.582104045226423 ], [ -95.526750735514611, 40.582104045226423 ], [ -95.533297364931983, 40.582305737494302 ], [ -95.554846686764165, 40.58270912203006 ], [ -95.573941022564838, 40.582910814297939 ], [ -95.611038589263302, 40.58351589110157 ], [ -95.641862302770093, 40.584322660173086 ], [ -95.687415932465996, 40.584322660173086 ], [ -95.687415932465996, 40.584322660173086 ], [ -95.746335597222355, 40.584927736976724 ], [ -95.765702709248757, 40.585129429244603 ], [ -95.753155002865455, 40.59279373542401 ], [ -95.75015446438249, 40.597029273049465 ], [ -95.748517807028151, 40.603281733353711 ], [ -95.776340982051991, 40.6474523400192 ], [ -95.78643370240377, 40.657335261145278 ], [ -95.795435317852665, 40.662377567842249 ], [ -95.822985716650777, 40.667218182271341 ], [ -95.84289838112862, 40.67750448793317 ], [ -95.883269262535762, 40.717641249241083 ], [ -95.888997563275964, 40.731759707992609 ], [ -95.886815353470169, 40.742046013654438 ], [ -95.881632605181423, 40.750517088905355 ], [ -95.8723582135068, 40.758383087352634 ], [ -95.86171994070358, 40.762820317245968 ], [ -95.85408220638331, 40.783998005373263 ], [ -95.82107628307071, 40.876776448597582 ], [ -95.823258492876505, 40.900979520743057 ], [ -95.828986793616707, 40.975605659858275 ], [ -95.835533423034079, 40.984278427377063 ], [ -95.867175465218054, 41.001623962414655 ], [ -95.867175465218054, 41.043575954133487 ], [ -95.86635713654087, 41.051643644848639 ], [ -95.853263877706127, 41.160355777235395 ], [ -95.852718325254685, 41.165398083932374 ], [ -95.91463852849401, 41.185163926184515 ], [ -95.923094591491449, 41.191013001953003 ], [ -95.923094591491449, 41.191013001953003 ], [ -95.926095129974414, 41.195651924114216 ], [ -95.927459011103039, 41.202106076686349 ], [ -95.925004025071516, 41.211182228740896 ], [ -95.902363598336436, 41.273303447247613 ], [ -95.91382019981684, 41.320297745663417 ], [ -95.925822353748686, 41.322112976074322 ], [ -95.939188388809157, 41.328970513182213 ], [ -95.953099976321084, 41.339861895647672 ], [ -95.956646067255491, 41.345509279148288 ], [ -95.956918843481219, 41.349139739970106 ], [ -95.938370060132002, 41.392100193028327 ], [ -95.93727895522909, 41.394318807974997 ], [ -95.930732325811718, 41.433850492479266 ], [ -95.981195927570653, 41.506863093451457 ], [ -95.994834738856838, 41.526225551167833 ], [ -96.030568424426676, 41.527234012507229 ], [ -96.036569501392606, 41.509081708398121 ], [ -96.040661144778454, 41.507064785719336 ], [ -96.046662221744384, 41.507064785719336 ], [ -96.055118284741837, 41.509485092933879 ], [ -96.089760865408763, 41.531872934668442 ], [ -96.09412528502034, 41.53933554857997 ], [ -96.11812959288406, 41.613558303159422 ], [ -96.116220159303992, 41.621625993874581 ], [ -96.097671375954761, 41.63957660571581 ], [ -96.094943613697524, 41.647442604163089 ], [ -96.095489166148965, 41.652686603127947 ], [ -96.099853585760556, 41.660955986110977 ], [ -96.121675683818466, 41.68273875104191 ], [ -96.096853047277591, 41.698672440204348 ], [ -96.077213159025462, 41.715412898438302 ], [ -96.064665452642174, 41.7930644215717 ], [ -96.065756557545058, 41.798106728268671 ], [ -96.070939305833818, 41.804560880840796 ], [ -96.077758711476918, 41.808796418466258 ], [ -96.08648755070007, 41.811418417948687 ], [ -96.111037411015232, 41.830780875665063 ], [ -96.139678914716242, 41.865875330275998 ], [ -96.144588886779275, 41.871926098312372 ], [ -96.161773788999881, 41.901776553958456 ], [ -96.162046565225609, 41.90560870704816 ], [ -96.159046026742644, 41.910045936941493 ], [ -96.142133900747751, 41.915289935906344 ], [ -96.136678376233277, 41.920735627139081 ], [ -96.129313418138736, 41.965107926072449 ], [ -96.129586194364464, 41.97176377091246 ], [ -96.221784558659138, 42.026220683239778 ], [ -96.251789943488774, 42.040540834259183 ], [ -96.272793712869515, 42.047196679099187 ], [ -96.279067566061158, 42.074021750727091 ], [ -96.307436293536455, 42.13069727800108 ], [ -96.343988307783462, 42.162161271790197 ], [ -96.349716608523664, 42.17204419291626 ], [ -96.359809328875443, 42.210567416081147 ], [ -96.35653601416675, 42.215004645974481 ], [ -96.35653601416675, 42.215206338242361 ], [ -96.336350573463193, 42.218836799064178 ], [ -96.323802867079891, 42.229929873797531 ], [ -96.322984538402721, 42.233560334619348 ], [ -96.328985615368637, 42.254738022746636 ], [ -96.34889827984648, 42.281966478910299 ], [ -96.375357573741709, 42.318271087128508 ], [ -96.384086412964876, 42.325935393307915 ], [ -96.408090720828568, 42.337431852577012 ], [ -96.41381902156877, 42.343482620613379 ], [ -96.417910664954633, 42.351348619060659 ], [ -96.415455678923124, 42.400359840155247 ], [ -96.413546245343056, 42.407822454066768 ], [ -96.387632503899283, 42.432428910748001 ], [ -96.380813098256183, 42.446345677231648 ], [ -96.381358650707625, 42.461674289590448 ], [ -96.385450294093488, 42.473170748859552 ], [ -96.396088566896722, 42.484062131325018 ], [ -96.409454601957194, 42.487692592146836 ], [ -96.443278853946964, 42.489507822557748 ], [ -96.466192056907772, 42.497777205540785 ], [ -96.476830329711007, 42.508668588006245 ], [ -96.481194749322583, 42.516534586453531 ], [ -96.479830868193972, 42.524198892632924 ], [ -96.477648658388176, 42.535695351902028 ], [ -96.476830329711007, 42.5560662709578 ], [ -96.479558091968244, 42.561310269922657 ], [ -96.516382882440979, 42.630490717805145 ], [ -96.542296623884738, 42.660744557986988 ], [ -96.575302547197339, 42.682729015185792 ], [ -96.602034617318282, 42.697452550740955 ], [ -96.606126260704144, 42.694628858990654 ], [ -96.611036232767162, 42.694830551258534 ], [ -96.630676121019292, 42.705923625991872 ], [ -96.639677736468172, 42.736984235245231 ], [ -96.633131107050815, 42.768246536766469 ], [ -96.632040002147903, 42.770868536248898 ], [ -96.577757533228848, 42.828149140326516 ], [ -96.563027617039765, 42.830972832076824 ], [ -96.552116568010803, 42.836015138773803 ], [ -96.549388805753566, 42.839242215059869 ], [ -96.541478295207568, 42.857596211436849 ], [ -96.523202288084065, 42.90902773974598 ], [ -96.510654581700777, 42.944323886624801 ], [ -96.509563476797865, 42.971148958252705 ], [ -96.513109567732286, 43.027824485526693 ], [ -96.465919280682044, 43.062313863333998 ], [ -96.455008231653096, 43.083289859193407 ], [ -96.439459986786829, 43.113947083911007 ], [ -96.436459448303864, 43.120804621018891 ], [ -96.475466448582381, 43.221045678154738 ], [ -96.485286392708446, 43.224272754440804 ], [ -96.557026540073835, 43.224272754440804 ], [ -96.572574784940102, 43.24908090338991 ], [ -96.584031386420506, 43.268039976570535 ], [ -96.586213596226287, 43.274292436874781 ], [ -96.569028694005681, 43.295470125002069 ], [ -96.551843791785075, 43.293049817787526 ], [ -96.530294469952892, 43.300109047163289 ], [ -96.525657274115588, 43.312412275503902 ], [ -96.521292854503997, 43.374936878546379 ], [ -96.521565630729725, 43.386836722351241 ], [ -96.524020616761248, 43.39470272079852 ], [ -96.529203365049995, 43.397728104816707 ], [ -96.531112798630062, 43.395509489870037 ], [ -96.53738665182172, 43.395307797602158 ], [ -96.557572092525277, 43.406804256871254 ], [ -96.594124106772284, 43.434234405302796 ], [ -96.602852945995451, 43.45097486353675 ], [ -96.600125183738214, 43.457025631573117 ], [ -96.584031386420506, 43.468925475377979 ], [ -96.587031924903471, 43.484657472272538 ], [ -96.599034078835317, 43.500389469167096 ], [ -96.591123568289319, 43.500591161434976 ], [ -96.453098798073029, 43.500389469167096 ], [ -96.351080489652276, 43.500389469167096 ], [ -96.331986153851602, 43.500389469167096 ], [ -96.208691299824395, 43.500389469167096 ], [ -96.19887135569833, 43.500389469167096 ], [ -96.198598579472616, 43.500389469167096 ], [ -96.05320885116177, 43.500187776899217 ], [ -95.861174388252124, 43.499986084631338 ], [ -95.860901612026396, 43.499986084631338 ], [ -95.834442318131181, 43.499986084631338 ], [ -95.821349059296438, 43.499986084631338 ], [ -95.741698401385051, 43.499986084631338 ], [ -95.740880072707881, 43.499986084631338 ], [ -95.514748581582751, 43.499784392363459 ], [ -95.48692540655891, 43.500187776899217 ], [ -95.486652630333197, 43.500187776899217 ], [ -95.475196028852778, 43.500389469167096 ], [ -95.454737811923493, 43.500591161434976 ], [ -95.454737811923493, 43.500591161434976 ], [ -95.454465035697766, 43.500591161434976 ], [ -95.434279594994194, 43.500389469167096 ], [ -95.434279594994194, 43.500389469167096 ], [ -95.387907636621122, 43.500187776899217 ], [ -95.387907636621122, 43.500187776899217 ], [ -95.387907636621122, 43.500187776899217 ], [ -95.375359930237835, 43.500389469167096 ], [ -95.374814377786379, 43.500389469167096 ], [ -95.250973971307729, 43.500389469167096 ], [ -95.250701195082002, 43.500389469167096 ], [ -95.214967509512164, 43.500792853702855 ], [ -95.180324928845238, 43.500792853702855 ], [ -95.167777222461922, 43.500792853702855 ], [ -95.16723167001048, 43.500792853702855 ], [ -95.122769145217489, 43.500792853702855 ], [ -95.114858634671492, 43.500591161434976 ], [ -95.054302312560779, 43.500792853702855 ], [ -95.053483983883609, 43.500792853702855 ], [ -95.034116871857208, 43.500792853702855 ], [ -95.014204207379365, 43.500792853702855 ], [ -94.99456431912725, 43.500591161434976 ], [ -94.974378878423678, 43.500591161434976 ], [ -94.954466213945835, 43.500389469167096 ], [ -94.934553549467978, 43.500389469167096 ], [ -94.914913661215863, 43.500389469167096 ], [ -94.914913661215863, 43.500389469167096 ], [ -94.914640884990135, 43.500389469167096 ], [ -94.914640884990135, 43.500389469167096 ], [ -94.88736326241775, 43.500591161434976 ], [ -94.874270003582993, 43.500591161434976 ], [ -94.872633346228653, 43.500591161434976 ], [ -94.860085639845352, 43.500591161434976 ], [ -94.857903430039556, 43.500591161434976 ], [ -94.854630115330878, 43.500591161434976 ], [ -94.615950917822445, 43.500591161434976 ], [ -94.565760092289253, 43.500389469167096 ], [ -94.56085012022622, 43.500389469167096 ], [ -94.470288413285886, 43.500389469167096 ], [ -94.447102434099349, 43.500591161434976 ], [ -94.442738014487759, 43.500591161434976 ], [ -94.442738014487759, 43.500591161434976 ], [ -94.390637755374499, 43.500389469167096 ], [ -94.377544496539741, 43.500389469167096 ], [ -94.24797578932089, 43.500389469167096 ], [ -94.109951019104585, 43.500187776899217 ], [ -94.108041585524518, 43.500389469167096 ], [ -94.094402774238318, 43.500389469167096 ], [ -94.092766116883979, 43.500389469167096 ], [ -93.970835143985383, 43.49958270009558 ], [ -93.970835143985383, 43.49958270009558 ], [ -93.795712807070629, 43.49958270009558 ], [ -93.794348925942018, 43.49958270009558 ], [ -93.71633492538497, 43.49958270009558 ], [ -93.708697191064701, 43.49958270009558 ], [ -93.704878323904566, 43.49958270009558 ], [ -93.699422799390092, 43.49958270009558 ], [ -93.648413645179716, 43.49958270009558 ], [ -93.617044379221468, 43.49958270009558 ], [ -93.576673497814326, 43.49958270009558 ], [ -93.55867026691655, 43.49958270009558 ], [ -93.532210973021336, 43.499381007827701 ], [ -93.528392105861201, 43.499381007827701 ], [ -93.497295616128667, 43.499381007827701 ], [ -93.497295616128667, 43.499381007827701 ], [ -93.488294000679787, 43.499381007827701 ], [ -93.482020147488129, 43.49958270009558 ], [ -93.47274575581352, 43.499381007827701 ], [ -93.468654112427657, 43.499381007827701 ], [ -93.428556007246243, 43.499381007827701 ], [ -93.399096174868063, 43.49958270009558 ], [ -93.271709677454993, 43.499381007827701 ], [ -93.228883810016328, 43.49958270009558 ], [ -93.049124277264269, 43.49958270009558 ], [ -93.024301640723394, 43.49958270009558 ], [ -93.024301640723394, 43.49958270009558 ], [ -93.007935067179972, 43.49958270009558 ], [ -92.870183073189395, 43.49958270009558 ], [ -92.79025963905228, 43.49958270009558 ], [ -92.752070967450933, 43.499986084631338 ], [ -92.707335666432215, 43.499986084631338 ], [ -92.692878526468832, 43.499986084631338 ], [ -92.689059659308697, 43.499986084631338 ], [ -92.672693085765275, 43.499986084631338 ], [ -92.653325973738873, 43.499986084631338 ], [ -92.649234330353011, 43.499986084631338 ], [ -92.553217098898187, 43.500389469167096 ], [ -92.553217098898187, 43.500389469167096 ], [ -92.46456482553792, 43.500389469167096 ], [ -92.449016580671667, 43.500389469167096 ], [ -92.408918475490253, 43.500591161434976 ], [ -92.406190713233002, 43.500389469167096 ], [ -92.388187482335226, 43.500389469167096 ], [ -92.368820370308839, 43.500389469167096 ], [ -92.27907699204566, 43.500389469167096 ], [ -92.27744033469132, 43.500389469167096 ], [ -92.198880781682831, 43.500591161434976 ], [ -92.178968117204988, 43.500792853702855 ], [ -92.103954655130906, 43.500792853702855 ], [ -92.090043067618979, 43.500591161434976 ], [ -92.0799503472672, 43.500591161434976 ], [ -92.079677571041486, 43.500591161434976 ], [ -91.949836087596893, 43.500389469167096 ], [ -91.94192557705091, 43.500591161434976 ], [ -91.824904576215346, 43.500591161434976 ], [ -91.807174121543284, 43.500591161434976 ], [ -91.804991911737488, 43.500792853702855 ], [ -91.779350946519443, 43.500792853702855 ], [ -91.777714289165104, 43.500792853702855 ], [ -91.761347715621667, 43.500591161434976 ], [ -91.738434512660859, 43.500591161434976 ], [ -91.736525079080792, 43.500591161434976 ], [ -91.733251764372113, 43.500591161434976 ], [ -91.730251225889134, 43.500591161434976 ], [ -91.730251225889134, 43.500591161434976 ], [ -91.700791393510968, 43.500591161434976 ], [ -91.670786008681318, 43.500591161434976 ], [ -91.658511078523759, 43.500591161434976 ], [ -91.651418896654931, 43.500389469167096 ], [ -91.64487226723756, 43.500591161434976 ], [ -91.639689518948799, 43.500591161434976 ], [ -91.635597875562951, 43.500389469167096 ], [ -91.634506770660039, 43.500389469167096 ], [ -91.634233994434325, 43.500389469167096 ], [ -91.625505155211158, 43.500792853702855 ], [ -91.620867959373854, 43.500591161434976 ], [ -91.617321868439433, 43.500591161434976 ], [ -91.616776315987991, 43.500591161434976 ], [ -91.615412434859365, 43.500591161434976 ], [ -91.610775239022075, 43.500591161434976 ], [ -91.610775239022075, 43.500591161434976 ], [ -91.591135350769946, 43.500591161434976 ], [ -91.551037245588532, 43.500591161434976 ], [ -91.541217301462467, 43.500591161434976 ], [ -91.533852343367926, 43.500591161434976 ], [ -91.49102647592926, 43.500591161434976 ], [ -91.465112734485501, 43.500591161434976 ], [ -91.461293867325367, 43.500591161434976 ], [ -91.446018398684828, 43.500591161434976 ], [ -91.441653979073237, 43.500389469167096 ], [ -91.377006013576676, 43.500389469167096 ], [ -91.371550489062201, 43.500994545970734 ], [ -91.369368279256406, 43.500792853702855 ], [ -91.217704697753902, 43.500591161434976 ], [ -91.205429767596328, 43.422939638301571 ], [ -91.210339739659361, 43.372113186796078 ], [ -91.107230326335724, 43.313622429111177 ], [ -91.085681004503527, 43.291839664180252 ], [ -91.057857829479687, 43.255333363694163 ], [ -91.062495025316991, 43.243231827621422 ], [ -91.146237326614241, 43.152470307075887 ], [ -91.156330046966019, 43.142990770485582 ], [ -91.175151606540965, 43.134721387502537 ], [ -91.178152145023944, 43.125040158644353 ], [ -91.17733381634676, 43.080264475175227 ], [ -91.178152145023944, 43.062112171066119 ], [ -91.175151606540965, 43.041337867474581 ], [ -91.163149452609119, 42.986880955147264 ], [ -91.145691774162799, 42.908019278406591 ], [ -91.143509564357004, 42.904590509852646 ], [ -91.117323046687503, 42.89591774233385 ], [ -91.100683696918338, 42.8830094371896 ], [ -91.07777049395753, 42.803744375913169 ], [ -91.069587207185819, 42.769658382641623 ], [ -91.064950011348515, 42.75735515430101 ], [ -91.053766186093839, 42.738194388852506 ], [ -90.976297737988233, 42.696040704865801 ], [ -90.949292891641562, 42.685552706936093 ], [ -90.896919856302588, 42.674459632202755 ], [ -90.84400126851213, 42.663164865201537 ], [ -90.769533358889504, 42.651466713664554 ], [ -90.720160862033481, 42.640777023466967 ], [ -90.709249813004533, 42.636138101305747 ], [ -90.702703183587147, 42.630692410073024 ], [ -90.645692952410855, 42.544166427152945 ], [ -90.63669133696196, 42.518753201400202 ], [ -90.636964113187688, 42.513105817899586 ], [ -90.641055756573536, 42.508265203470486 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "35", "geo_id": "0400000US21", "fips_state": "21", "name": "Kentucky", "iso_3166_2": "KY", "census": 4339367, "pop_estimataes_base": 4339349, "pop_2010": 4349838, "pop_2011": 4370038, "pop_2012": 4383465, "pop_2013": 4399583, "pop_2014": 4413457 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.539039804648922, 36.498239005213236 ], [ -89.560316350255391, 36.525467461376898 ], [ -89.570136294381456, 36.544426534557516 ], [ -89.571500175510067, 36.552494225272682 ], [ -89.566862979672763, 36.564192376809658 ], [ -89.552678615935122, 36.577100681953908 ], [ -89.54613198651775, 36.579924373704216 ], [ -89.527583203168518, 36.581134527311491 ], [ -89.500032804370406, 36.576293912882392 ], [ -89.484757335729867, 36.571856682989058 ], [ -89.479029034989665, 36.56822622216724 ], [ -89.473300734249463, 36.559956839184196 ], [ -89.467845209734975, 36.546846841772066 ], [ -89.465390223703466, 36.536157151574486 ], [ -89.465935776154907, 36.529904691270232 ], [ -89.472482405572293, 36.513769309839915 ], [ -89.485030111955581, 36.497633928409599 ], [ -89.49266784627585, 36.497835620677478 ], [ -89.498123370790339, 36.497835620677478 ], [ -89.539039804648922, 36.498239005213236 ] ] ], [ [ [ -81.968408435907364, 37.537760953861394 ], [ -82.291921039615929, 37.311663921569078 ], [ -82.305832627127842, 37.301175923639377 ], [ -82.310742599190874, 37.297343770549674 ], [ -82.350840704372303, 37.267089930367831 ], [ -82.510960348872231, 37.218078709273243 ], [ -82.553513440085169, 37.20093486650353 ], [ -82.565242817791301, 37.196094252074438 ], [ -82.565242817791301, 37.196094252074438 ], [ -82.62498081122483, 37.163016720142295 ], [ -82.721816371356823, 37.105736116064662 ], [ -82.720725266453925, 37.081734736187073 ], [ -82.722361923808265, 37.045026743433098 ], [ -82.771734420664302, 37.015781364590651 ], [ -82.777462721404504, 37.015377980054893 ], [ -82.788919322884908, 37.008117058411244 ], [ -82.789192099110636, 37.007915366143365 ], [ -82.790555980239247, 37.007310289339728 ], [ -82.790828756464975, 37.006705212536097 ], [ -82.80064870059104, 37.007915366143365 ], [ -82.815651393005851, 37.007108597071849 ], [ -82.81810637903736, 37.00610013573246 ], [ -82.830654085420662, 37.000856136767609 ], [ -82.829017428066322, 36.997629060481543 ], [ -82.83092686164639, 36.993393522856081 ], [ -82.83392740012934, 36.991981676980927 ], [ -82.836109609935136, 36.988754600694868 ], [ -82.838564595966659, 36.986939370283956 ], [ -82.83992847709527, 36.987141062551835 ], [ -82.851385078575674, 36.984519063069413 ], [ -82.8527489597043, 36.984922447605172 ], [ -82.862841680056079, 36.979880140908193 ], [ -82.865023889861874, 36.979073371836677 ], [ -82.866114994764771, 36.97826660276516 ], [ -82.866660547216213, 36.978064910497281 ], [ -82.867478875893397, 36.977459833693644 ], [ -82.868569980796281, 36.976451372354248 ], [ -82.869115533247736, 36.974232757407584 ], [ -82.869115533247736, 36.974232757407584 ], [ -82.87020663815062, 36.965963374424547 ], [ -82.87020663815062, 36.965559989888789 ], [ -82.867478875893397, 36.963139682674239 ], [ -82.865296666087602, 36.958097375977268 ], [ -82.864205561184704, 36.957895683709388 ], [ -82.862841680056079, 36.957693991441509 ], [ -82.860659470250283, 36.956080453298476 ], [ -82.858477260444502, 36.954063530619692 ], [ -82.855749498187265, 36.953861838351813 ], [ -82.856022274412993, 36.952449992476659 ], [ -82.860659470250283, 36.945794147636647 ], [ -82.861205022701739, 36.944785686297251 ], [ -82.861750575153195, 36.939339995064522 ], [ -82.860659470250283, 36.937524764653617 ], [ -82.858750036670216, 36.933087534760276 ], [ -82.858477260444502, 36.932684150224517 ], [ -82.862023351378909, 36.924213074973601 ], [ -82.863387232507534, 36.922397844562695 ], [ -82.872116071730687, 36.913523384776013 ], [ -82.873752729085041, 36.912313231168739 ], [ -82.885482106791159, 36.900413387363884 ], [ -82.911668624460674, 36.874193392539624 ], [ -82.911941400686388, 36.874193392539624 ], [ -82.973316051474271, 36.859066472448696 ], [ -83.072606597637773, 36.854629242555362 ], [ -83.099884220210157, 36.824980479177157 ], [ -83.131799038619874, 36.781414949315298 ], [ -83.131253486168418, 36.767094798295886 ], [ -83.125525185428216, 36.761447414795285 ], [ -83.125797961653944, 36.761245722527406 ], [ -83.127707395234012, 36.75075772459769 ], [ -83.136436234457165, 36.743093418418297 ], [ -83.16725994796397, 36.739261265328594 ], [ -83.199720318825115, 36.737446034917681 ], [ -83.342927837330166, 36.701343118967351 ], [ -83.353566110133414, 36.696704196806138 ], [ -83.354657215036298, 36.696099120002501 ], [ -83.460767166842913, 36.664836818481263 ], [ -83.461039943068627, 36.664836818481263 ], [ -83.498137509767076, 36.670484201981864 ], [ -83.527324565919542, 36.66604697208853 ], [ -83.649528315043852, 36.616632366458191 ], [ -83.675442056487626, 36.600900369563625 ], [ -83.677078713841979, 36.59666483193817 ], [ -83.690717525128164, 36.582546373186645 ], [ -83.930760603765208, 36.588193756687254 ], [ -83.987498058715786, 36.589605602562408 ], [ -83.987770834941514, 36.589605602562408 ], [ -84.227268361127102, 36.591622525241192 ], [ -84.2613653893426, 36.59202590977695 ], [ -84.778549113315137, 36.603320676778175 ], [ -84.785368518958251, 36.603320676778175 ], [ -84.785368518958251, 36.603320676778175 ], [ -84.859836428580877, 36.606346060796362 ], [ -84.859836428580877, 36.606547753064241 ], [ -84.974947995836374, 36.61441375151152 ], [ -85.086513472157435, 36.621876365423041 ], [ -85.096060640057786, 36.622481442226679 ], [ -85.276365725261286, 36.626515287584255 ], [ -85.276365725261286, 36.626515287584255 ], [ -85.296005613513415, 36.625506826244859 ], [ -85.436485369761229, 36.618245904601217 ], [ -85.471400726653883, 36.616430674190312 ], [ -85.508498293352346, 36.615018828315158 ], [ -85.551596937016726, 36.615825597386674 ], [ -85.552142489468167, 36.615825597386674 ], [ -85.788639477170804, 36.621876365423041 ], [ -85.788639477170804, 36.621876365423041 ], [ -85.97630952046886, 36.628330517995167 ], [ -86.03277419919371, 36.630347440673958 ], [ -86.033046975419438, 36.630347440673958 ], [ -86.038229723708184, 36.630750825209716 ], [ -86.080782814921122, 36.633977901495776 ], [ -86.081873919824005, 36.633776209227904 ], [ -86.197531039530958, 36.639423592728505 ], [ -86.204895997625499, 36.639826977264264 ], [ -86.205441550076955, 36.639826977264264 ], [ -86.216079822880175, 36.640432054067901 ], [ -86.216352599105903, 36.64063374633578 ], [ -86.219080361363154, 36.640835438603659 ], [ -86.222080899846105, 36.640835438603659 ], [ -86.333100823715739, 36.648701437050946 ], [ -86.4113876004985, 36.650516667461851 ], [ -86.468397831674807, 36.651928513337005 ], [ -86.472216698834941, 36.651726821069126 ], [ -86.473307803737839, 36.651726821069126 ], [ -86.473580579963567, 36.651726821069126 ], [ -86.564142286903888, 36.633372824692145 ], [ -86.564142286903888, 36.633574516960024 ], [ -86.605058720762486, 36.652130205604884 ], [ -86.606422601891097, 36.652130205604884 ], [ -86.758904512070771, 36.649104821586704 ], [ -86.763268931682347, 36.648903129318825 ], [ -86.812914204764112, 36.64769297571155 ], [ -86.816187519472805, 36.64769297571155 ], [ -86.818369729278587, 36.64769297571155 ], [ -86.833099645467684, 36.647289591175792 ], [ -86.854376191074152, 36.646886206640033 ], [ -86.905930897735971, 36.646281129836396 ], [ -86.906476450187412, 36.646281129836396 ], [ -87.060867793947153, 36.643457438086088 ], [ -87.114877486640495, 36.642448976746692 ], [ -87.114877486640495, 36.642448976746692 ], [ -87.230534606347419, 36.641843899943055 ], [ -87.231080158798875, 36.641843899943055 ], [ -87.247719508568025, 36.641843899943055 ], [ -87.278270445849103, 36.641642207675176 ], [ -87.281543760557796, 36.641843899943055 ], [ -87.336099005702579, 36.641642207675176 ], [ -87.344009516248576, 36.641440515407297 ], [ -87.347828383408711, 36.641440515407297 ], [ -87.41438578248534, 36.641037130871538 ], [ -87.425024055288574, 36.641037130871538 ], [ -87.436480656768978, 36.640835438603659 ], [ -87.563048825504879, 36.639020208192747 ], [ -87.564958259084946, 36.639020208192747 ], [ -87.641062826061926, 36.638011746853351 ], [ -87.641062826061926, 36.638011746853351 ], [ -87.694254190078084, 36.636801593246084 ], [ -87.853282729675129, 36.633171132424266 ], [ -87.849463862514995, 36.663626664873988 ], [ -88.011765716820719, 36.676938354553997 ], [ -88.070412605351365, 36.678148508161271 ], [ -88.068230395545569, 36.659794511784284 ], [ -88.055682689162268, 36.635793131906688 ], [ -88.045044416359048, 36.602917292242417 ], [ -88.035497248458711, 36.561772069595108 ], [ -88.032496709975732, 36.54059438146782 ], [ -88.037952234490206, 36.513769309839915 ], [ -88.039588891844559, 36.510340541285977 ], [ -88.053227703130744, 36.497028851605961 ], [ -88.053227703130744, 36.49723054387384 ], [ -88.320821180565915, 36.500457620159906 ], [ -88.326003928854675, 36.500457620159906 ], [ -88.330913900917693, 36.500457620159906 ], [ -88.416292859569296, 36.500659312427786 ], [ -88.450117111559052, 36.501062696963544 ], [ -88.452572097590576, 36.500861004695665 ], [ -88.472484762068405, 36.501062696963544 ], [ -88.489124111837583, 36.501062696963544 ], [ -88.489124111837583, 36.501062696963544 ], [ -88.512037314798391, 36.501466081499302 ], [ -88.512310091024105, 36.501466081499302 ], [ -88.516401734409968, 36.501466081499302 ], [ -88.516401734409968, 36.501466081499302 ], [ -88.545316014336692, 36.50186946603506 ], [ -88.577230832746395, 36.50186946603506 ], [ -88.661245910269372, 36.502272850570819 ], [ -88.715255602962699, 36.502676235106577 ], [ -88.74744319759813, 36.502877927374456 ], [ -88.79954345671139, 36.502676235106577 ], [ -88.816728358931996, 36.502877927374456 ], [ -88.827093855509503, 36.502877927374456 ], [ -88.827366631735231, 36.502877927374456 ], [ -88.834731589829772, 36.502877927374456 ], [ -88.834731589829772, 36.502877927374456 ], [ -88.874829695011186, 36.502474542838698 ], [ -88.964573073274352, 36.502272850570819 ], [ -89.000033982618476, 36.502676235106577 ], [ -89.006853388261561, 36.502676235106577 ], [ -89.010399479195968, 36.502676235106577 ], [ -89.034676563285402, 36.502877927374456 ], [ -89.058953647374835, 36.503079619642335 ], [ -89.072046906209579, 36.503281311910214 ], [ -89.090050137107369, 36.503483004178094 ], [ -89.117600535905467, 36.503684696445973 ], [ -89.119782745711262, 36.503684696445973 ], [ -89.16315416560137, 36.504491465517489 ], [ -89.163426941827083, 36.504491465517489 ], [ -89.211435557554495, 36.505701619124757 ], [ -89.279084061534036, 36.506508388196274 ], [ -89.282357376242715, 36.506710080464153 ], [ -89.346187013062121, 36.503281311910214 ], [ -89.346187013062121, 36.503281311910214 ], [ -89.356552509639627, 36.502272850570819 ], [ -89.380011265051877, 36.500457620159906 ], [ -89.381920698631944, 36.500054235624148 ], [ -89.404015572915597, 36.499045774284752 ], [ -89.417381607976068, 36.499045774284752 ], [ -89.400469481981176, 36.538375766521149 ], [ -89.388194551823602, 36.573470221132091 ], [ -89.37646517411747, 36.613808674707883 ], [ -89.365554125088522, 36.625103441709101 ], [ -89.343732027030597, 36.630952517477596 ], [ -89.327638229712889, 36.63216267108487 ], [ -89.326819901035719, 36.63216267108487 ], [ -89.313453865975248, 36.620061135012129 ], [ -89.294632306400302, 36.593639447919983 ], [ -89.271719103439494, 36.571453298453299 ], [ -89.259989725733362, 36.565200838149053 ], [ -89.236530970321098, 36.566814376292086 ], [ -89.22725657864649, 36.569436375774508 ], [ -89.21361776736029, 36.580126065972095 ], [ -89.202706718331342, 36.601505446367263 ], [ -89.200797284751275, 36.618245904601217 ], [ -89.197523970042582, 36.628935594798804 ], [ -89.187704025916531, 36.641037130871538 ], [ -89.174610767081774, 36.650516667461851 ], [ -89.174610767081774, 36.650516667461851 ], [ -89.171883004824537, 36.672501124660656 ], [ -89.199433403622649, 36.716066654522514 ], [ -89.201070060977003, 36.725747883380706 ], [ -89.19779674626831, 36.739462957596473 ], [ -89.184430711207824, 36.753581416347998 ], [ -89.169155242567285, 36.759430492116493 ], [ -89.142423172446343, 36.755396646758911 ], [ -89.130421018514497, 36.751766185937086 ], [ -89.123601612871397, 36.785247102404995 ], [ -89.123601612871397, 36.785247102404995 ], [ -89.179247962919078, 36.812878943104415 ], [ -89.178702410467622, 36.816509403926233 ], [ -89.177065753113283, 36.835871861642616 ], [ -89.147605920735103, 36.847166628643834 ], [ -89.100688409910589, 36.943978917225735 ], [ -89.100688409910589, 36.943978917225735 ], [ -89.132603228320292, 36.982300448122743 ], [ -89.166427480310062, 37.003276443982152 ], [ -89.173519662178876, 37.01134413469731 ], [ -89.17897518669335, 37.021025363555502 ], [ -89.182521277627757, 37.037362437253698 ], [ -89.181430172724873, 37.046236897040373 ], [ -89.175701871984671, 37.061968893934932 ], [ -89.171883004824537, 37.068221354239178 ], [ -89.168064137664402, 37.074272122275545 ], [ -89.086504046172948, 37.165638719624717 ], [ -89.041223192702773, 37.202951789182322 ], [ -89.000852311295631, 37.224331169577496 ], [ -88.983394632849311, 37.22876839947083 ], [ -88.966755283080147, 37.229978553078105 ], [ -88.933476583541832, 37.224936246381134 ], [ -88.933476583541832, 37.224936246381134 ], [ -88.942205422764999, 37.22876839947083 ], [ -88.928021059027344, 37.226348092256288 ], [ -88.916837233772668, 37.224331169577496 ], [ -88.809090624611727, 37.189236714966555 ], [ -88.625785000925248, 37.119451190280429 ], [ -88.58923298667824, 37.099685348028295 ], [ -88.576685280294953, 37.085768581544649 ], [ -88.564137573911651, 37.078507659901007 ], [ -88.560045930525789, 37.076087352686457 ], [ -88.545316014336692, 37.07003658465009 ], [ -88.531677203050506, 37.067212892899782 ], [ -88.5144923008299, 37.065195970220998 ], [ -88.490215216740467, 37.066607816096152 ], [ -88.482850258645925, 37.067212892899782 ], [ -88.458845950782219, 37.073868737739787 ], [ -88.444661587044578, 37.098676886688907 ], [ -88.424476146341007, 37.15252872221258 ], [ -88.447662125527529, 37.203556865985959 ], [ -88.458845950782219, 37.21343978711203 ], [ -88.471666433391249, 37.220095631952034 ], [ -88.50930955254114, 37.26204762367086 ], [ -88.515856181958526, 37.284032080869665 ], [ -88.514765077055614, 37.290889617977555 ], [ -88.476576405454267, 37.38689513748794 ], [ -88.470302552262623, 37.396172981810366 ], [ -88.456118188524982, 37.40847621015098 ], [ -88.439206062530104, 37.416342208598266 ], [ -88.41492897844067, 37.423401437974029 ], [ -88.40892790147474, 37.425216668384934 ], [ -88.35846429971582, 37.404845749329162 ], [ -88.330641124691979, 37.429250513742517 ], [ -88.312637893794204, 37.440545280743734 ], [ -88.28154140406167, 37.452646816816475 ], [ -88.255082110166455, 37.456680662174051 ], [ -88.083505864186108, 37.473622812675885 ], [ -88.062502094805367, 37.489354809570443 ], [ -88.06141098990247, 37.505288498732881 ], [ -88.06141098990247, 37.505288498732881 ], [ -88.063320423482537, 37.515776496662596 ], [ -88.072322038931432, 37.528886494074726 ], [ -88.121421759561741, 37.568216486311115 ], [ -88.133151137267859, 37.57406556207961 ], [ -88.133423913493587, 37.57426725434749 ], [ -88.133423913493587, 37.57426725434749 ], [ -88.133423913493587, 37.57426725434749 ], [ -88.139970542910959, 37.586368790420224 ], [ -88.156882668905837, 37.632758012032383 ], [ -88.16015598361453, 37.657566160981503 ], [ -88.158246550034463, 37.664625390357259 ], [ -88.151699920617091, 37.675113388286974 ], [ -88.122512864464625, 37.709602766094271 ], [ -88.072594815157146, 37.733200761436109 ], [ -88.059501556322402, 37.742680298026421 ], [ -88.051045493324963, 37.752563219152492 ], [ -88.045044416359048, 37.762446140278556 ], [ -88.039043339393118, 37.775354445422813 ], [ -88.028132290364155, 37.79915413303253 ], [ -88.017221241335193, 37.801977824782838 ], [ -88.004673534951905, 37.800162594371926 ], [ -87.976304807476609, 37.788061058299192 ], [ -87.970849282962135, 37.783422136137972 ], [ -87.943844436615464, 37.77676629129796 ], [ -87.906746869917015, 37.807625208283447 ], [ -87.90374633143405, 37.817709821677397 ], [ -87.907837974819898, 37.83767735619741 ], [ -87.910292960851422, 37.843324739698019 ], [ -87.91493015668874, 37.849577200002273 ], [ -87.9272050868463, 37.85865335205682 ], [ -87.936206702295195, 37.86793119637926 ], [ -87.940025569455329, 37.874990425755016 ], [ -87.940843898132499, 37.88325980873806 ], [ -87.940025569455329, 37.887697038631394 ], [ -87.936752254746636, 37.892537653060486 ], [ -87.927477863072028, 37.902017189650799 ], [ -87.904837436336948, 37.92480841592112 ], [ -87.898018030693848, 37.927430415403549 ], [ -87.883288114504751, 37.926220261796274 ], [ -87.872649841701531, 37.920976262831417 ], [ -87.865557659832703, 37.915127187062936 ], [ -87.857374373060992, 37.900605343775652 ], [ -87.841280575743269, 37.882251347398665 ], [ -87.830642302940049, 37.876603963898049 ], [ -87.790816973984349, 37.875797194826532 ], [ -87.783724792115521, 37.877814117505324 ], [ -87.762175470283339, 37.890924114917453 ], [ -87.700528043269742, 37.900807036043531 ], [ -87.683888693500563, 37.903429035525953 ], [ -87.675705406728852, 37.902017189650799 ], [ -87.666431015054243, 37.895764729346553 ], [ -87.662884924119822, 37.885478423684724 ], [ -87.681706483694782, 37.855829660306519 ], [ -87.681979259920496, 37.846350123716206 ], [ -87.679251497663273, 37.836265510322264 ], [ -87.67079543466582, 37.828399511874977 ], [ -87.645972798124944, 37.825979204660428 ], [ -87.615421860843867, 37.832029972696802 ], [ -87.606693021620714, 37.838685817536806 ], [ -87.591417552980175, 37.856636429378035 ], [ -87.588689790722924, 37.861073659271369 ], [ -87.588417014497196, 37.868737965450777 ], [ -87.591690329205889, 37.887293654095636 ], [ -87.597145853720377, 37.892335960792607 ], [ -87.620331832906899, 37.906857804079891 ], [ -87.626332909872829, 37.916135648402332 ], [ -87.629060672130066, 37.926623646332033 ], [ -87.601510273331954, 37.972609483408434 ], [ -87.592781434108787, 37.9758365596945 ], [ -87.585962028465687, 37.975433175158742 ], [ -87.581052056402655, 37.97341625247995 ], [ -87.574778203210997, 37.967768868979341 ], [ -87.573414322082385, 37.96272656228237 ], [ -87.574232650759569, 37.954860563835084 ], [ -87.572050440953774, 37.94739794992357 ], [ -87.559229958344744, 37.931060876225374 ], [ -87.550228342895849, 37.92480841592112 ], [ -87.511494118843061, 37.906454419544133 ], [ -87.451210572958075, 37.940943797351437 ], [ -87.450392244280891, 37.941548874155075 ], [ -87.436753432994706, 37.944170873637503 ], [ -87.418477425871203, 37.944775950441141 ], [ -87.402656404779208, 37.942355643226591 ], [ -87.380288754269856, 37.935498106118708 ], [ -87.302274753712823, 37.898386728828982 ], [ -87.26954160662595, 37.877209040701686 ], [ -87.262994977208564, 37.872771810808352 ], [ -87.202165878872137, 37.843728124233778 ], [ -87.132607941312529, 37.791086442317372 ], [ -87.128789074152394, 37.785640751084642 ], [ -87.119241906252057, 37.782817059334334 ], [ -87.111058619480346, 37.782413674798576 ], [ -87.090600402551047, 37.787859366031313 ], [ -87.077507143716304, 37.796128749014343 ], [ -87.067959975815967, 37.806011670140414 ], [ -87.057867255464188, 37.827391050535581 ], [ -87.043955667952275, 37.870754888129561 ], [ -87.043410115500819, 37.880032732451994 ], [ -87.046137877758056, 37.889915653578058 ], [ -87.042319010597922, 37.898386728828982 ], [ -87.033317395149027, 37.906656111812012 ], [ -87.010404192188219, 37.919766109224149 ], [ -86.979034926229971, 37.930254107153857 ], [ -86.978762150004258, 37.930254107153857 ], [ -86.919296932796442, 37.936708259725982 ], [ -86.902384806801564, 37.946187796316295 ], [ -86.88492712835523, 37.964340100425403 ], [ -86.856012848428492, 37.987333018963596 ], [ -86.823552477567347, 37.999031170500579 ], [ -86.815369190795622, 37.9988294782327 ], [ -86.81482363834418, 37.998627785964821 ], [ -86.794910973866337, 37.98894655710663 ], [ -86.787818791997509, 37.971399329801159 ], [ -86.770088337325461, 37.9403387205478 ], [ -86.750994001524788, 37.912908572116265 ], [ -86.740901281172995, 37.902622266454436 ], [ -86.731354113272658, 37.894352883471399 ], [ -86.723443602726661, 37.892739345328366 ], [ -86.718533630663643, 37.893142729864124 ], [ -86.70925923898902, 37.897579959757465 ], [ -86.660159518358711, 37.865107504628952 ], [ -86.655249546295693, 37.842517970626503 ], [ -86.655249546295693, 37.842517970626503 ], [ -86.648157364426865, 37.841509509287107 ], [ -86.634245776914952, 37.843929816501657 ], [ -86.60451316831103, 37.858249967521061 ], [ -86.525135286625385, 37.9681722535151 ], [ -86.524862510399657, 38.027873164807275 ], [ -86.521861971916692, 38.038361162736976 ], [ -86.517224776079388, 38.042596700362438 ], [ -86.511769251564914, 38.04441193077335 ], [ -86.490765482184173, 38.045823776648497 ], [ -86.490765482184173, 38.045823776648497 ], [ -86.466761174320453, 38.046630545720014 ], [ -86.452304034357098, 38.05046269880971 ], [ -86.438119670619443, 38.060345619935788 ], [ -86.432664146104969, 38.067203157043664 ], [ -86.430209160073446, 38.078699616312768 ], [ -86.426390292913311, 38.081725000330948 ], [ -86.398567117889485, 38.106331457012189 ], [ -86.332555271264283, 38.130131144621899 ], [ -86.326826970524081, 38.13456837451524 ], [ -86.323553655815402, 38.139005604408581 ], [ -86.314279264140794, 38.142636065230398 ], [ -86.309642068303475, 38.144451295641311 ], [ -86.284001103085444, 38.143241142034036 ], [ -86.271180620476414, 38.130131144621899 ], [ -86.278000026119514, 38.102499303922485 ], [ -86.278818354796684, 38.089389306510355 ], [ -86.273635606507924, 38.067404849311544 ], [ -86.266816200864838, 38.057118543649722 ], [ -86.220444242491766, 38.027873164807275 ], [ -86.178982256181726, 38.0113343988412 ], [ -86.172162850538626, 38.009922552966046 ], [ -86.029500884485032, 37.992577017928454 ], [ -85.998677170978226, 37.997821016893305 ], [ -85.951486883927984, 38.005687015340584 ], [ -85.947940792993563, 38.007098861215738 ], [ -85.941394163576206, 38.009922552966046 ], [ -85.930210338321515, 38.018393628216955 ], [ -85.922299827775532, 38.028679933878792 ], [ -85.911661554972284, 38.066799772507906 ], [ -85.90620603045781, 38.086162230224289 ], [ -85.90456937310347, 38.100280688975815 ], [ -85.905114925554926, 38.110970379173402 ], [ -85.909479345166503, 38.140014065747977 ], [ -85.908661016489333, 38.161191753875265 ], [ -85.899659401040438, 38.180352519323762 ], [ -85.897749967460371, 38.184184672413465 ], [ -85.82928313480366, 38.276761423369905 ], [ -85.823827610289186, 38.280593576459609 ], [ -85.816189875968917, 38.283013883674158 ], [ -85.791640015653769, 38.288661267174767 ], [ -85.791640015653769, 38.288661267174767 ], [ -85.781001742850535, 38.288459574906888 ], [ -85.773364008530265, 38.286240959960217 ], [ -85.76599905043571, 38.280391884191729 ], [ -85.766544602887166, 38.277769884709301 ], [ -85.761089078372692, 38.27252588574445 ], [ -85.750996358020899, 38.267886963583237 ], [ -85.744995281054969, 38.26708019451172 ], [ -85.6836206302671, 38.295518804282651 ], [ -85.674891791043933, 38.301367880051146 ], [ -85.653615245437464, 38.327184490339647 ], [ -85.638885329248382, 38.361472175879072 ], [ -85.638067000571198, 38.380229556791818 ], [ -85.638067000571198, 38.380431249059697 ], [ -85.632884252282452, 38.395759861418497 ], [ -85.620609322124864, 38.423190009850032 ], [ -85.60751606329012, 38.439325391280349 ], [ -85.462399111205002, 38.512539684520412 ], [ -85.433212055052536, 38.523834451521637 ], [ -85.432939278826808, 38.524036143789516 ], [ -85.423119334700758, 38.53149875770103 ], [ -85.417391033960556, 38.54077660202347 ], [ -85.415481600380488, 38.546423985524072 ], [ -85.415754376606202, 38.563567828293785 ], [ -85.427483754312334, 38.586762439099871 ], [ -85.439485908244194, 38.610360434441709 ], [ -85.456943586690528, 38.689222111182382 ], [ -85.452033614627496, 38.709391337970274 ], [ -85.43403038372972, 38.729358872490295 ], [ -85.42202822979786, 38.734804563723024 ], [ -85.410844404543184, 38.737023178669695 ], [ -85.333375956437592, 38.740451947223633 ], [ -85.289186207870316, 38.742468869902424 ], [ -85.275547396584116, 38.74125871629515 ], [ -85.258908046814952, 38.737829947741211 ], [ -85.246633116657392, 38.731779179704844 ], [ -85.226174899728093, 38.705357492612698 ], [ -85.213354417119064, 38.695474571486628 ], [ -85.201625039412932, 38.691642418396924 ], [ -85.189350109255372, 38.687608573039348 ], [ -85.17243798326048, 38.688011957575107 ], [ -85.156071409717043, 38.692247495200562 ], [ -85.138613731270709, 38.699105032308452 ], [ -85.106971689086748, 38.720887797239378 ], [ -85.100970612120818, 38.726736873007866 ], [ -85.024320492692397, 38.763243173493962 ], [ -84.995951765217114, 38.77675655544185 ], [ -84.98449516373671, 38.77897517038852 ], [ -84.97331133848202, 38.778773478120641 ], [ -84.944397058555282, 38.775143017298817 ], [ -84.84428818371461, 38.787042861103671 ], [ -84.813464470207805, 38.798337628104903 ], [ -84.791096819698453, 38.855819924450401 ], [ -84.785914071409692, 38.869534998666168 ], [ -84.785095742732523, 38.880022996595876 ], [ -84.789460162344099, 38.884661918757089 ], [ -84.813191693982077, 38.930647755833498 ], [ -84.849470932003356, 39.000836665055374 ], [ -84.878657988155823, 39.0302837361657 ], [ -84.889023484733329, 39.040771734095408 ], [ -84.89720677150504, 39.052469885632391 ], [ -84.897479547730768, 39.057310500061483 ], [ -84.888750708507615, 39.066386652116037 ], [ -84.831194924879867, 39.101884491262737 ], [ -84.820283875850905, 39.105514952084555 ], [ -84.787550728764032, 39.115196180942746 ], [ -84.766819735609019, 39.138592484016705 ], [ -84.754544805451445, 39.146660174731863 ], [ -84.744179308873925, 39.14746694380338 ], [ -84.732177154942079, 39.144441559785193 ], [ -84.718538343655879, 39.136978945873672 ], [ -84.689624063729156, 39.104103106209401 ], [ -84.684714091666109, 39.100472645387583 ], [ -84.632341056327135, 39.076672957777859 ], [ -84.623612217103954, 39.074454342831196 ], [ -84.620066126169547, 39.0734458814918 ], [ -84.603426776400397, 39.073647573759679 ], [ -84.510137307202811, 39.093615108279693 ], [ -84.509864530977097, 39.093615108279693 ], [ -84.506045663816963, 39.095026954154847 ], [ -84.5019540204311, 39.09664049229788 ], [ -84.493770733659375, 39.102489568066375 ], [ -84.432941635322948, 39.09422018508333 ], [ -84.326558907290618, 39.027460044415392 ], [ -84.320012277873246, 39.022014353182669 ], [ -84.313738424681588, 39.016972046485691 ], [ -84.304736809232708, 39.00648404855599 ], [ -84.23436054299593, 38.893132994008013 ], [ -84.232178333190149, 38.880426381131635 ], [ -84.232451109415862, 38.874577305363147 ], [ -84.233814990544488, 38.85360130950373 ], [ -84.231360004512965, 38.830608390965537 ], [ -84.229996123384353, 38.82758300694735 ], [ -84.225358927547035, 38.817700085821279 ], [ -84.212811221163747, 38.805800242016417 ], [ -84.20571903929492, 38.802573165730358 ], [ -84.071513136238764, 38.770504095137603 ], [ -84.052691576663804, 38.770504095137603 ], [ -84.044508289892093, 38.770504095137603 ], [ -83.978769219492619, 38.787042861103671 ], [ -83.962129869723469, 38.78744624563943 ], [ -83.943853862599951, 38.783614092549733 ], [ -83.904028533644265, 38.768083787923054 ], [ -83.904028533644265, 38.768083787923054 ], [ -83.870477057880237, 38.761629635350928 ], [ -83.859020456399833, 38.756789020921829 ], [ -83.853292155659631, 38.752553483296374 ], [ -83.777733141134092, 38.674498575627219 ], [ -83.77364149774823, 38.661388578215082 ], [ -83.769277078136653, 38.655136117910835 ], [ -83.762457672493554, 38.652110733892656 ], [ -83.705992993768717, 38.637185506069613 ], [ -83.679533699873488, 38.630126276693844 ], [ -83.663985455007222, 38.627907661747173 ], [ -83.655529392009782, 38.629722892158085 ], [ -83.64980109126958, 38.632748276176272 ], [ -83.646800552786615, 38.637588890605372 ], [ -83.642981685626481, 38.643236274105973 ], [ -83.636162279983381, 38.670666422537515 ], [ -83.626887888308772, 38.679339190056311 ], [ -83.615704063054096, 38.68417980448541 ], [ -83.574787629195498, 38.69265087973632 ], [ -83.533325642885472, 38.702130416326639 ], [ -83.521050712727885, 38.703138877666028 ], [ -83.51259464973046, 38.701727031790881 ], [ -83.369114354999681, 38.65937165553629 ], [ -83.333380669429829, 38.641622735962947 ], [ -83.32410627775522, 38.63335335297991 ], [ -83.320560186820813, 38.622663662782323 ], [ -83.282098738993739, 38.602897820530188 ], [ -83.265732165450316, 38.605318127744738 ], [ -83.156894451386464, 38.620646740103538 ], [ -83.142710087648823, 38.625083969996872 ], [ -83.135072353328553, 38.631739814836877 ], [ -83.127707395234012, 38.642429505034464 ], [ -83.030871835102005, 38.725526719400591 ], [ -83.030599058876291, 38.72572841166847 ], [ -83.011777499301331, 38.729963949293932 ], [ -82.979317128440186, 38.725930103936349 ], [ -82.968678855636966, 38.728753795686657 ], [ -82.943037890418907, 38.743275638973941 ], [ -82.923670778392506, 38.750133176081832 ], [ -82.89421094601434, 38.75658732865395 ], [ -82.889300973951293, 38.755982251850313 ], [ -82.879481029825243, 38.751545021956979 ], [ -82.87538938643938, 38.747309484331524 ], [ -82.874571057762211, 38.745292561652732 ], [ -82.871297743053532, 38.739443485884237 ], [ -82.869933861924906, 38.730569026097569 ], [ -82.870479414376348, 38.722097950846653 ], [ -82.873479952859313, 38.709996414773912 ], [ -82.869661085699178, 38.678129036449036 ], [ -82.85356728838147, 38.61096551124534 ], [ -82.847293435189812, 38.595233514350781 ], [ -82.839655700869542, 38.586157362296234 ], [ -82.820288588843155, 38.572643980348346 ], [ -82.815924169231579, 38.570828749937434 ], [ -82.800103148139584, 38.563164443758026 ], [ -82.789737651562064, 38.559937367471967 ], [ -82.731090763031432, 38.55933229066833 ], [ -82.724816909839774, 38.557517060257425 ], [ -82.69672095859022, 38.542188447898624 ], [ -82.690447105398562, 38.536541064398008 ], [ -82.665624468857686, 38.505883839680408 ], [ -82.665351692631958, 38.505682147412529 ], [ -82.593611545266583, 38.421778163974878 ], [ -82.59633930752382, 38.417744318617302 ], [ -82.59715763620099, 38.41290370418821 ], [ -82.595248202620922, 38.38264986400636 ], [ -82.595248202620922, 38.38264986400636 ], [ -82.593065992815127, 38.37498555782696 ], [ -82.571789447208658, 38.31568803107055 ], [ -82.574789985691638, 38.263853118225654 ], [ -82.578336076626044, 38.2547769661711 ], [ -82.584064377366246, 38.246305890920183 ], [ -82.594975426395195, 38.245499121848667 ], [ -82.604249818069803, 38.247314352259579 ], [ -82.644620699476945, 38.16542729150072 ], [ -82.636437412705234, 38.137795450801306 ], [ -82.621161944064696, 38.123273607514022 ], [ -82.602613160715464, 38.118432993084923 ], [ -82.600158174683955, 38.117424531745527 ], [ -82.547239586893511, 38.061152389007304 ], [ -82.539056300121786, 38.039167931808493 ], [ -82.519689188095398, 38.008510707090892 ], [ -82.509869243969334, 38.001249785447243 ], [ -82.487774369685695, 37.998426093696942 ], [ -82.465406719176343, 37.984711019481175 ], [ -82.464042838047718, 37.982492404534504 ], [ -82.464861166724887, 37.976845021033895 ], [ -82.497321537586032, 37.945582719512657 ], [ -82.497321537586032, 37.945381027244778 ], [ -82.500322076068997, 37.936506567458103 ], [ -82.474681110850952, 37.910488264901716 ], [ -82.41767087967466, 37.870754888129561 ], [ -82.400213201228325, 37.851795814948943 ], [ -82.329836934991562, 37.775959522226451 ], [ -82.318925885962585, 37.758815679456738 ], [ -82.326290844057141, 37.740865067615509 ], [ -82.325745291605699, 37.735822760918538 ], [ -82.307196508256467, 37.707585843415487 ], [ -82.297103787904689, 37.687214924359708 ], [ -82.250186277080161, 37.657767853249382 ], [ -82.219635339799083, 37.643044317694219 ], [ -82.141894115467778, 37.595041557939027 ], [ -82.125527541924328, 37.579107868776589 ], [ -82.125800318150056, 37.57406556207961 ], [ -82.116525926475447, 37.559543718792327 ], [ -82.048604646270192, 37.531105109021397 ], [ -82.008233764863064, 37.53332372396806 ], [ -81.999777701865611, 37.542601568290493 ], [ -81.998141044511272, 37.543004952826251 ], [ -81.968408435907364, 37.537760953861394 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "36", "geo_id": "0400000US23", "fips_state": "23", "name": "Maine", "iso_3166_2": "ME", "census": 1328361, "pop_estimataes_base": 1328361, "pop_2010": 1327361, "pop_2011": 1327930, "pop_2012": 1328592, "pop_2013": 1328702, "pop_2014": 1330089 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.307772695157524, 43.773682492143088 ], [ -69.306681590254641, 43.775094338018235 ], [ -69.302862723094506, 43.774690953482477 ], [ -69.300407737062983, 43.772068954000055 ], [ -69.300953289514439, 43.768640185446117 ], [ -69.31431932457491, 43.756740341641255 ], [ -69.322502611346621, 43.755933572569738 ], [ -69.323593716249519, 43.758958956587918 ], [ -69.321138730217996, 43.765816493695809 ], [ -69.313500995897726, 43.772674030803692 ], [ -69.307772695157524, 43.773682492143088 ] ] ], [ [ [ -69.427794234476053, 43.928783846142011 ], [ -69.423429814864477, 43.922934770373516 ], [ -69.422065933735851, 43.917690771408665 ], [ -69.423429814864477, 43.915472156461995 ], [ -69.43815973105356, 43.909623080693507 ], [ -69.440887493310797, 43.909824772961386 ], [ -69.441978598213694, 43.916278925533511 ], [ -69.433795311441969, 43.949356457465662 ], [ -69.429703668056121, 43.948347996126266 ], [ -69.420974828832954, 43.938263382732316 ], [ -69.427794234476053, 43.928783846142011 ] ] ], [ [ [ -67.619833410377936, 44.519742191027362 ], [ -67.615468990766345, 44.521960805974032 ], [ -67.587645815742519, 44.516111730205537 ], [ -67.582190291228045, 44.513489730723109 ], [ -67.589282473096858, 44.500783117846737 ], [ -67.59064635422547, 44.494127273006733 ], [ -67.580280857647978, 44.488076504970365 ], [ -67.562550402975916, 44.472142815807928 ], [ -67.569097032393287, 44.455604049841853 ], [ -67.571824794650524, 44.453385434895182 ], [ -67.574279780682048, 44.451771896752149 ], [ -67.588464144419689, 44.449754974073358 ], [ -67.592828564031265, 44.45862943386004 ], [ -67.604830717963125, 44.501993271454012 ], [ -67.607285703994634, 44.503606809597045 ], [ -67.614923438314904, 44.503606809597045 ], [ -67.61928785792648, 44.506027116811595 ], [ -67.619833410377936, 44.519742191027362 ] ] ], [ [ [ -70.119554742911902, 43.748672650926096 ], [ -70.11300811349453, 43.749076035461854 ], [ -70.09718709240255, 43.757345418444892 ], [ -70.095004882596754, 43.753311573087316 ], [ -70.1001876308855, 43.742218498353964 ], [ -70.10782536520577, 43.734554192174571 ], [ -70.109462022560109, 43.730520346816988 ], [ -70.108916470108667, 43.72225096383395 ], [ -70.124191938749206, 43.708334197350304 ], [ -70.129374687037966, 43.708334197350304 ], [ -70.138103526261119, 43.718217118476375 ], [ -70.138649078712575, 43.727494962798801 ], [ -70.126919701006443, 43.742621882889722 ], [ -70.119554742911902, 43.748672650926096 ] ] ], [ [ [ -70.17110944957372, 43.663558513881171 ], [ -70.17110944957372, 43.663356821613291 ], [ -70.190203785374393, 43.64298590255752 ], [ -70.206024806466388, 43.633708058235086 ], [ -70.207115911369272, 43.633708058235086 ], [ -70.210934778529406, 43.641775748950252 ], [ -70.200023729500458, 43.662953437077533 ], [ -70.188021575568598, 43.673844819543007 ], [ -70.184748260859919, 43.674651588614516 ], [ -70.17110944957372, 43.663558513881171 ] ] ], [ [ [ -70.186112141988531, 43.682719279329675 ], [ -70.187476023117156, 43.678685433972092 ], [ -70.192658771405917, 43.673239742739369 ], [ -70.207388687595, 43.662550052541775 ], [ -70.210934778529406, 43.661743283470265 ], [ -70.213116988335202, 43.662953437077533 ], [ -70.213935317012385, 43.666180513363599 ], [ -70.209570897400795, 43.676265126757549 ], [ -70.201933163080525, 43.685542971079983 ], [ -70.196477638566051, 43.688770047366049 ], [ -70.191022114051577, 43.688971739633928 ], [ -70.186112141988531, 43.682719279329675 ] ] ], [ [ [ -70.164017267704907, 43.692400508187866 ], [ -70.156652309610365, 43.69461912313453 ], [ -70.146014036807117, 43.701678352510299 ], [ -70.135648540229624, 43.700669891170904 ], [ -70.15447009980457, 43.680904048918762 ], [ -70.168108911090769, 43.675054973150274 ], [ -70.17029112089655, 43.675458357686033 ], [ -70.173564435605243, 43.68372774066907 ], [ -70.171382225799448, 43.687559893758774 ], [ -70.164017267704907, 43.692400508187866 ] ] ], [ [ [ -70.087639924502213, 43.699863122099387 ], [ -70.093641001468129, 43.691795431384229 ], [ -70.099642078434059, 43.695425892206046 ], [ -70.116008651977495, 43.682920971597554 ], [ -70.11819086178329, 43.683324356133312 ], [ -70.11819086178329, 43.686349740151499 ], [ -70.116008651977495, 43.689173431901807 ], [ -70.100733183336956, 43.705913890135761 ], [ -70.095823211273924, 43.7093426586897 ], [ -70.093095449016687, 43.710552812296967 ], [ -70.092004344113789, 43.709544350957579 ], [ -70.09718709240255, 43.700871583438783 ], [ -70.092004344113789, 43.698047891688475 ], [ -70.087639924502213, 43.699863122099387 ] ] ], [ [ [ -68.880332349448153, 43.863435551349227 ], [ -68.882514559253934, 43.848510323526185 ], [ -68.876240706062291, 43.836610479721323 ], [ -68.886606202639797, 43.822290328701918 ], [ -68.898335580345929, 43.821080175094643 ], [ -68.899153909023113, 43.82188694416616 ], [ -68.893425608282911, 43.831568173024351 ], [ -68.894789489411522, 43.843871401364964 ], [ -68.898062804120201, 43.84951878486558 ], [ -68.904063881086131, 43.848712015794064 ], [ -68.908155524471994, 43.849922169401339 ], [ -68.90269999995752, 43.868881242581956 ], [ -68.889333964897048, 43.875537087421961 ], [ -68.880332349448153, 43.863435551349227 ] ] ], [ [ [ -69.043998084882503, 44.005628600203892 ], [ -69.078095113097987, 43.974164606414774 ], [ -69.093097805512798, 43.979005220843867 ], [ -69.062001315780279, 44.015108136794197 ], [ -69.04754417581691, 44.013897983186929 ], [ -69.043998084882503, 44.005628600203892 ] ] ], [ [ [ -68.618194396527471, 44.012284445043896 ], [ -68.635379298748077, 44.018940289883901 ], [ -68.647381452679923, 44.014503059990567 ], [ -68.651745872291514, 44.009864137829354 ], [ -68.652836977194397, 44.003813369792979 ], [ -68.65692862058026, 44.003813369792979 ], [ -68.659929159063239, 44.015914905865714 ], [ -68.659929159063239, 44.022772442973604 ], [ -68.657474173031716, 44.024385981116637 ], [ -68.650654767388616, 44.039916285743317 ], [ -68.654746410774464, 44.059682127995451 ], [ -68.661565816417578, 44.075817509425768 ], [ -68.628014340653522, 44.088120737766388 ], [ -68.625286578396299, 44.092961352195481 ], [ -68.618194396527471, 44.096793505285177 ], [ -68.609738333530032, 44.094574890338514 ], [ -68.602918927886932, 44.086708891891234 ], [ -68.589552892826461, 44.075615817157889 ], [ -68.58600680189204, 44.07541412489001 ], [ -68.584097368311973, 44.070573510460918 ], [ -68.588189011697835, 44.061295666138484 ], [ -68.590916773955087, 44.058673666656063 ], [ -68.601009494306865, 44.058270282120304 ], [ -68.611374990884372, 44.025192750188154 ], [ -68.610829438432916, 44.013494598651171 ], [ -68.616012186721676, 44.009662445561474 ], [ -68.618194396527471, 44.012284445043896 ] ] ], [ [ [ -68.785678999121956, 44.053429667691205 ], [ -68.790588971184974, 44.053833052226963 ], [ -68.807228320954152, 44.035882440385734 ], [ -68.818412146208829, 44.03205028729603 ], [ -68.828504866560607, 44.03205028729603 ], [ -68.862874671001819, 44.024991057920275 ], [ -68.874058496256509, 44.025394442456033 ], [ -68.889606741122776, 44.032453671831789 ], [ -68.899972237700268, 44.066943049639093 ], [ -68.905154985989029, 44.077431047568801 ], [ -68.91333827276074, 44.085095353748201 ], [ -68.907882748246266, 44.10546627280398 ], [ -68.908973853149163, 44.109903502697314 ], [ -68.943070881364662, 44.109701810429435 ], [ -68.944707538719001, 44.112928886715494 ], [ -68.935433147044392, 44.130476114020965 ], [ -68.917157139920874, 44.148225033594315 ], [ -68.888515636219864, 44.159519800595533 ], [ -68.8786956920938, 44.166579029971302 ], [ -68.847326426135567, 44.183117795937378 ], [ -68.8249587756262, 44.186344872223444 ], [ -68.819230474885998, 44.180495796454949 ], [ -68.822231013368963, 44.178882258311916 ], [ -68.822776565820405, 44.173638259347065 ], [ -68.818412146208829, 44.160931646470686 ], [ -68.792225628539327, 44.146006418647644 ], [ -68.786770104024839, 44.143989495968853 ], [ -68.782405684413277, 44.145401341844007 ], [ -68.780769027058923, 44.143182726897336 ], [ -68.791952852313614, 44.136728574325218 ], [ -68.802045572665392, 44.137938727932493 ], [ -68.818139369983101, 44.136930266593097 ], [ -68.81977602733744, 44.135518420717943 ], [ -68.820594356014624, 44.130274421753086 ], [ -68.819503251111712, 44.122005038770055 ], [ -68.815684383951577, 44.115752578465802 ], [ -68.806955544728424, 44.116357655269439 ], [ -68.790588971184974, 44.092961352195481 ], [ -68.781860131961821, 44.084288584676685 ], [ -68.772585740287212, 44.078439508908197 ], [ -68.770403530481417, 44.069565049121522 ], [ -68.779677922156026, 44.057665205316667 ], [ -68.785678999121956, 44.053429667691205 ] ] ], [ [ [ -68.942798105138934, 44.281140238126554 ], [ -68.91933934972667, 44.309780540165363 ], [ -68.91933934972667, 44.335395458185992 ], [ -68.9117016154064, 44.365044221564197 ], [ -68.903518328634675, 44.378557603512093 ], [ -68.878968468319528, 44.386625294227244 ], [ -68.868330195516307, 44.381381295262393 ], [ -68.860692461196038, 44.36443914476056 ], [ -68.864238552130445, 44.354959608170248 ], [ -68.871603510224986, 44.344673302508426 ], [ -68.88306011170539, 44.338219149936293 ], [ -68.888788412445592, 44.338219149936293 ], [ -68.892880055831455, 44.334588689114476 ], [ -68.89669892299159, 44.322083768505976 ], [ -68.887424531316981, 44.303124695325359 ], [ -68.899426685248827, 44.283762237608975 ], [ -68.904336657311859, 44.279930084519279 ], [ -68.916884363695161, 44.242818707229546 ], [ -68.926431531595497, 44.232935786103482 ], [ -68.946071419847613, 44.220834250030741 ], [ -68.951799720587815, 44.218817327351957 ], [ -68.94716252475051, 44.226885018067108 ], [ -68.955345811522221, 44.243827168568941 ], [ -68.959437454908084, 44.247457629390766 ], [ -68.96598408432547, 44.249676244337437 ], [ -68.967075189228353, 44.2518948592841 ], [ -68.965165755648286, 44.259357473195621 ], [ -68.953709154167882, 44.272265778339872 ], [ -68.942798105138934, 44.281140238126554 ] ] ], [ [ [ -68.499536738337568, 44.124223653716719 ], [ -68.492990108920196, 44.116962732073077 ], [ -68.491626227791571, 44.109903502697314 ], [ -68.502810053046261, 44.099818889303364 ], [ -68.516994416783888, 44.103449350125189 ], [ -68.518631074138241, 44.113130578983373 ], [ -68.511266116043686, 44.125030422788235 ], [ -68.506901696432109, 44.127249037734899 ], [ -68.499536738337568, 44.124223653716719 ] ] ], [ [ [ -68.358511429638298, 44.125030422788235 ], [ -68.353055905123824, 44.127854114538536 ], [ -68.346782051932166, 44.127652422270657 ], [ -68.330688254614472, 44.110508579500951 ], [ -68.330961030840186, 44.107483195482764 ], [ -68.338053212709013, 44.101432427446397 ], [ -68.365058059055684, 44.101432427446397 ], [ -68.376514660536088, 44.112122117643978 ], [ -68.376514660536088, 44.113735655787011 ], [ -68.375423555633176, 44.116559347537319 ], [ -68.365603611507126, 44.12402196144884 ], [ -68.358511429638298, 44.125030422788235 ] ] ], [ [ [ -68.45316477996451, 44.189975333045261 ], [ -68.437889311323971, 44.188160102634349 ], [ -68.424523276263486, 44.190782102116778 ], [ -68.416339989491775, 44.186949949027081 ], [ -68.408156702720049, 44.176260258829487 ], [ -68.384970723533513, 44.154880878434327 ], [ -68.396700101239645, 44.140762419682794 ], [ -68.427523814746451, 44.119181347019747 ], [ -68.438434863775399, 44.11615596300156 ], [ -68.448527584127191, 44.125635499591873 ], [ -68.447436479224308, 44.133501498039152 ], [ -68.456710870898917, 44.145199649576128 ], [ -68.479896850085453, 44.147821649058557 ], [ -68.484806822148471, 44.146409803183403 ], [ -68.496536199854603, 44.146813187719161 ], [ -68.501991724369077, 44.152460571219777 ], [ -68.500900619466194, 44.16012487739917 ], [ -68.495445094951705, 44.16234349234584 ], [ -68.474441325570965, 44.181907642330103 ], [ -68.45316477996451, 44.189975333045261 ] ] ], [ [ [ -68.680660152218252, 44.279325007715642 ], [ -68.675477403929492, 44.2797283922514 ], [ -68.668112445834936, 44.276501315965334 ], [ -68.658838054160327, 44.268635317518054 ], [ -68.623649921041945, 44.255525320105917 ], [ -68.611647767110099, 44.244835629908337 ], [ -68.605919466369897, 44.230717171156812 ], [ -68.612738872012983, 44.207724252618604 ], [ -68.625013802170571, 44.197639639224661 ], [ -68.625832130847741, 44.194815947474353 ], [ -68.619558277656097, 44.189370256241624 ], [ -68.618467172753185, 44.186546564491323 ], [ -68.618739948978913, 44.181100873258586 ], [ -68.643017033068347, 44.157704570184627 ], [ -68.652291424742955, 44.153670724827052 ], [ -68.670021879415003, 44.151452109880381 ], [ -68.671385760543643, 44.13854380473613 ], [ -68.67493185147805, 44.137131958860977 ], [ -68.682024033346863, 44.138140420200372 ], [ -68.686661229184182, 44.147216572254919 ], [ -68.692389529924384, 44.153670724827052 ], [ -68.701118369147537, 44.158309646988265 ], [ -68.70957443214499, 44.158713031524023 ], [ -68.713120523079397, 44.160528261934928 ], [ -68.716393837788075, 44.162746876881599 ], [ -68.720485481173938, 44.169201029453731 ], [ -68.719121600045327, 44.183319488205257 ], [ -68.715029956659464, 44.191185486652529 ], [ -68.71421162798228, 44.203690407261028 ], [ -68.721031033625394, 44.212363174779824 ], [ -68.722940467205461, 44.219624096423466 ], [ -68.722940467205461, 44.223657941781042 ], [ -68.718576047593871, 44.22870024847802 ], [ -68.711756641950771, 44.228901940745899 ], [ -68.700572816696095, 44.233944247442878 ], [ -68.694026187278723, 44.24886947526592 ], [ -68.680387375992524, 44.262181164945929 ], [ -68.677659613735273, 44.269038702053813 ], [ -68.677659613735273, 44.275492854625938 ], [ -68.680660152218252, 44.279325007715642 ] ] ], [ [ [ -68.35523811492962, 44.199051485099815 ], [ -68.333143240645967, 44.207320868082846 ], [ -68.324141625197086, 44.20570732993982 ], [ -68.315958338425361, 44.20026163870709 ], [ -68.314867233522477, 44.197236254688903 ], [ -68.318413324456884, 44.196631177885266 ], [ -68.321141086714135, 44.199051485099815 ], [ -68.332597688194539, 44.192193947991925 ], [ -68.339144317611897, 44.171823028936153 ], [ -68.347327604383622, 44.16940272172161 ], [ -68.378969646567597, 44.184126257276773 ], [ -68.371331912247328, 44.193000717063441 ], [ -68.364512506604228, 44.197437946956782 ], [ -68.35523811492962, 44.199051485099815 ] ] ], [ [ [ -68.472804668216625, 44.219825788691345 ], [ -68.460256961833323, 44.212564867047703 ], [ -68.453710332415938, 44.201673484582244 ], [ -68.454255884867393, 44.199454869635574 ], [ -68.459165856930426, 44.197639639224661 ], [ -68.484534045922743, 44.202883638189519 ], [ -68.487261808179994, 44.209539483029516 ], [ -68.482624612342676, 44.227086710334987 ], [ -68.480442402536895, 44.228498556210141 ], [ -68.470349682185116, 44.228296863942262 ], [ -68.468440248605049, 44.2240613263168 ], [ -68.472804668216625, 44.219825788691345 ] ] ], [ [ [ -68.792225628539327, 44.237776400532574 ], [ -68.769857978029961, 44.222851172709532 ], [ -68.769039649352806, 44.21337163611922 ], [ -68.779950698381754, 44.203085330457398 ], [ -68.789770642507818, 44.203892099528908 ], [ -68.801227243988222, 44.208732713958 ], [ -68.80913775453422, 44.212564867047703 ], [ -68.815411607725864, 44.214178405190736 ], [ -68.822776565820405, 44.216397020137407 ], [ -68.829595971463505, 44.216800404673165 ], [ -68.83777925823523, 44.227086710334987 ], [ -68.839415915589569, 44.2365662469253 ], [ -68.833414838623639, 44.240801784550754 ], [ -68.827686537883437, 44.242818707229546 ], [ -68.825504328077642, 44.242617014961667 ], [ -68.792225628539327, 44.237776400532574 ] ] ], [ [ [ -68.236307680513988, 44.266215010303512 ], [ -68.214758358681792, 44.263189626285325 ], [ -68.211212267747385, 44.25713885824895 ], [ -68.212576148875996, 44.255323627838038 ], [ -68.221304988099178, 44.25734055051683 ], [ -68.231397708450956, 44.255928704641676 ], [ -68.237126009191158, 44.253508397427133 ], [ -68.240399323899851, 44.251693167016221 ], [ -68.241490428802734, 44.247457629390766 ], [ -68.240672100125579, 44.239793323211359 ], [ -68.24885538689729, 44.235356093318025 ], [ -68.266585841569338, 44.233944247442878 ], [ -68.274496352115335, 44.237171323728937 ], [ -68.276951338146858, 44.240801784550754 ], [ -68.274769128341063, 44.258752396391984 ], [ -68.262221421957761, 44.260769319070775 ], [ -68.25403813518605, 44.257743935052588 ], [ -68.246673177091495, 44.257743935052588 ], [ -68.241217652577021, 44.260365934535017 ], [ -68.236307680513988, 44.266215010303512 ] ] ], [ [ [ -68.498718409660398, 44.36968314372541 ], [ -68.478805745182541, 44.319663461291427 ], [ -68.489716794211503, 44.313612693255067 ], [ -68.51508498320382, 44.324705767988405 ], [ -68.530360451844359, 44.33358022777508 ], [ -68.52872379449002, 44.344673302508426 ], [ -68.520540507718309, 44.358388376724193 ], [ -68.521904388846934, 44.367666221046619 ], [ -68.518631074138241, 44.380977910726635 ], [ -68.512629997172311, 44.384810063816332 ], [ -68.507720025109279, 44.38521344835209 ], [ -68.501446171917635, 44.38218806433391 ], [ -68.498718409660398, 44.36968314372541 ] ] ], [ [ [ -70.703841418412537, 43.059691863851569 ], [ -70.756487229977239, 43.080062782907348 ], [ -70.784037628775366, 43.099021856087965 ], [ -70.819498538119461, 43.123224928233441 ], [ -70.828227377342643, 43.129074004001929 ], [ -70.833682901857117, 43.146822923575279 ], [ -70.829045706019798, 43.180303840043187 ], [ -70.828227377342643, 43.186757992615313 ], [ -70.816225223410783, 43.234962444638384 ], [ -70.817861880765122, 43.237382751852934 ], [ -70.817861880765122, 43.237987828656571 ], [ -70.823044629053882, 43.240206443603242 ], [ -70.823317405279596, 43.240408135871121 ], [ -70.82495406263395, 43.241013212674751 ], [ -70.826590719988303, 43.24121490494263 ], [ -70.827954601116915, 43.241618289478389 ], [ -70.833682901857117, 43.242828443085664 ], [ -70.839683978823047, 43.250492749265064 ], [ -70.839138426371591, 43.25129951833658 ], [ -70.863142734235296, 43.265014592552347 ], [ -70.863142734235296, 43.265014592552347 ], [ -70.909787468834082, 43.306764892003294 ], [ -70.912515231091334, 43.308378430146327 ], [ -70.91687965070291, 43.31765627446876 ], [ -70.930791238214823, 43.329556118273615 ], [ -70.95234056004702, 43.333993348166956 ], [ -70.967343252461831, 43.34387626929302 ], [ -70.984255378456709, 43.376147032153654 ], [ -70.984255378456709, 43.376752108957291 ], [ -70.98780146939113, 43.391475644512454 ], [ -70.986710364488232, 43.414266870782782 ], [ -70.96434271397888, 43.473362705271313 ], [ -70.964615490204594, 43.473362705271313 ], [ -70.963797161527424, 43.476186397021621 ], [ -70.954795546078543, 43.509869005757409 ], [ -70.962433280398812, 43.534273770170756 ], [ -70.958887189464392, 43.537702538724702 ], [ -70.955341098529971, 43.540929615010768 ], [ -70.955341098529971, 43.540727922742889 ], [ -70.953431664949903, 43.552627766547744 ], [ -70.972798776976305, 43.570174993853215 ], [ -70.979890958845132, 43.673239742739369 ], [ -70.980709287522302, 43.684131125204829 ], [ -70.982073168650928, 43.700871583438783 ], [ -70.982073168650928, 43.701880044778179 ], [ -70.982345944876641, 43.711964658172121 ], [ -70.982073168650928, 43.714990042190308 ], [ -70.989165350519755, 43.792238180787947 ], [ -70.989165350519755, 43.792439873055827 ], [ -70.992165889002706, 43.886226777619548 ], [ -70.99298421767989, 43.914262002854727 ], [ -71.001440280677315, 44.092961352195481 ], [ -71.001440280677315, 44.09316304446336 ], [ -71.00880523877187, 44.258349011856225 ], [ -71.00880523877187, 44.258752396391984 ], [ -71.010169119900496, 44.284770698948371 ], [ -71.013442434609175, 44.340841149418722 ], [ -71.028990679475442, 44.61030201930501 ], [ -71.037446742472881, 44.755520452177862 ], [ -71.060087169207975, 45.019737323099307 ], [ -71.075635414074227, 45.224051590460689 ], [ -71.084364253297394, 45.305333574415911 ], [ -71.030627336829781, 45.312594496059553 ], [ -71.014260763286345, 45.316830033685008 ], [ -71.009078014997584, 45.319048648631679 ], [ -71.002531385580227, 45.327923108418354 ], [ -71.004986371611736, 45.331553569240171 ], [ -70.990256455422639, 45.336192491401391 ], [ -70.95070390269268, 45.334578953258358 ], [ -70.917970755605808, 45.311989419255916 ], [ -70.912242454865606, 45.296862499164995 ], [ -70.913606335994217, 45.292828653807419 ], [ -70.907878035254015, 45.269230658465574 ], [ -70.896966986225067, 45.242002202301919 ], [ -70.884964832293207, 45.234942972926149 ], [ -70.857141657269381, 45.229093897157668 ], [ -70.842957293531725, 45.234337896122511 ], [ -70.839411202597319, 45.237766664676457 ], [ -70.831500692051321, 45.260154506411027 ], [ -70.808314712864785, 45.325906185739562 ], [ -70.807769160413343, 45.378144483120209 ], [ -70.82413573395678, 45.391052788264467 ], [ -70.825499615085391, 45.4003306325869 ], [ -70.79849476873872, 45.424735397000255 ], [ -70.781582642743842, 45.43118954957238 ], [ -70.75403224394573, 45.427760781018435 ], [ -70.744212299819679, 45.421104936178438 ], [ -70.743666747368223, 45.411827091855997 ], [ -70.730027936082024, 45.399322171247505 ], [ -70.712297481409962, 45.390649403728709 ], [ -70.659924446070988, 45.37794279085233 ], [ -70.652013935524991, 45.377136021780821 ], [ -70.634556257078657, 45.383590174352946 ], [ -70.62664574653266, 45.406986477426905 ], [ -70.635374585755827, 45.427760781018435 ], [ -70.650104501944924, 45.443694470180873 ], [ -70.663743313231123, 45.447123238734818 ], [ -70.676018243388683, 45.452568929967555 ], [ -70.716389124795825, 45.486856615506973 ], [ -70.723208530438939, 45.507630919098503 ], [ -70.721571873084585, 45.515093533010031 ], [ -70.700840879929558, 45.532842452583381 ], [ -70.686656516191931, 45.549986295353094 ], [ -70.688293173546271, 45.56390306183674 ], [ -70.659378893619532, 45.586895980374933 ], [ -70.564725543293335, 45.655067966918025 ], [ -70.551086732007136, 45.661925504025916 ], [ -70.469799416741409, 45.701658880798064 ], [ -70.451523409617906, 45.704482572548372 ], [ -70.39724094069885, 45.756922562196905 ], [ -70.407879213502085, 45.77366302043086 ], [ -70.417699157628135, 45.794639016290269 ], [ -70.396422612021681, 45.802706707005427 ], [ -70.39805926937602, 45.804118552880581 ], [ -70.39724094069885, 45.807547321434519 ], [ -70.387966549024242, 45.819043780703623 ], [ -70.366962779643501, 45.834977469866061 ], [ -70.342412919328339, 45.852121312635774 ], [ -70.307770338661413, 45.85897884974365 ], [ -70.284311583249149, 45.872088847155787 ], [ -70.262762261416952, 45.887820844050346 ], [ -70.253760645968072, 45.902947764141274 ], [ -70.240121834681872, 45.943689602252817 ], [ -70.252123988613732, 45.954782676986163 ], [ -70.265490023674204, 45.962648675433442 ], [ -70.31213475827299, 45.97152313522011 ], [ -70.313498639401615, 46.016298818689243 ], [ -70.310498100918636, 46.064503270712315 ], [ -70.289767107763623, 46.094353726358406 ], [ -70.284584359474877, 46.09879095625174 ], [ -70.25239676483946, 46.106253570163261 ], [ -70.237939624876077, 46.14739879281057 ], [ -70.278037730057491, 46.175030633509991 ], [ -70.290858212666521, 46.18592201597545 ], [ -70.292767646246588, 46.191569399476066 ], [ -70.207388687595, 46.331342141116181 ], [ -70.188021575568598, 46.350099522028927 ], [ -70.174655540508127, 46.358570597279837 ], [ -70.133466330423829, 46.368856902941666 ], [ -70.056543434769679, 46.416657970428979 ], [ -70.022991959005637, 46.573574554838814 ], [ -69.997078217561864, 46.695194992369821 ], [ -69.818682565938417, 46.875104495317856 ], [ -69.5663645571438, 47.125001215219889 ], [ -69.224303170086017, 47.459608687631082 ], [ -69.146561945754698, 47.448918997433495 ], [ -69.055454686362907, 47.432178539199541 ], [ -69.042634203753892, 47.426732847966811 ], [ -69.032814259627827, 47.407975467054072 ], [ -69.031177602273488, 47.403134852624973 ], [ -69.040724770173824, 47.398092545928002 ], [ -69.041815875076708, 47.397285776856485 ], [ -69.039360889045199, 47.384982548515865 ], [ -69.043998084882503, 47.38377239490859 ], [ -69.046453070914026, 47.383974087176469 ], [ -69.053818029008568, 47.375099627389801 ], [ -69.050271938074161, 47.256706266144846 ], [ -69.040179217722368, 47.24500811460787 ], [ -69.033359812079269, 47.240974269250287 ], [ -68.982077881643164, 47.220199965658757 ], [ -68.94197977646175, 47.206283199175104 ], [ -68.926431531595497, 47.197812123924194 ], [ -68.90106334260318, 47.178449666207811 ], [ -68.853327503101482, 47.193374894030853 ], [ -68.723213243431175, 47.239562423375133 ], [ -68.580278501151838, 47.286960106326688 ], [ -68.474986878022406, 47.297448104256404 ], [ -68.361511968121263, 47.355535477405539 ], [ -68.333688793097423, 47.35997270729888 ], [ -68.284043520015672, 47.360376091834638 ], [ -68.240126547674123, 47.354123631530385 ], [ -68.2240327503564, 47.348476248029776 ], [ -68.153383707893909, 47.313986870222479 ], [ -67.955620944244075, 47.199627354335107 ], [ -67.952347629535382, 47.196198585781161 ], [ -67.949347091052431, 47.182483511565394 ], [ -67.935981055991959, 47.164936284259923 ], [ -67.889063545167446, 47.118748754915643 ], [ -67.846783230180236, 47.092327067823497 ], [ -67.816232292899159, 47.081233993090152 ], [ -67.790591327681113, 47.067922303410143 ], [ -67.789500222778216, 47.062476612177406 ], [ -67.789500222778216, 46.765585593859583 ], [ -67.789227446552488, 46.758122979948055 ], [ -67.78213526468366, 46.279305536003406 ], [ -67.781044159780777, 45.94308452544918 ], [ -67.768769229623189, 45.901939302801878 ], [ -67.763859257560171, 45.829935163169083 ], [ -67.763859257560171, 45.820253934310898 ], [ -67.780498607329321, 45.816220088953315 ], [ -67.802047929161517, 45.803513476076944 ], [ -67.806685124998822, 45.794639016290269 ], [ -67.817868950253498, 45.693792882350792 ], [ -67.805594020095924, 45.680279500402897 ], [ -67.803411810290129, 45.677859193188354 ], [ -67.754312089659834, 45.667774579794397 ], [ -67.645747151821709, 45.613519359734966 ], [ -67.561459298073018, 45.594963671090099 ], [ -67.518633430634367, 45.587904441714329 ], [ -67.499539094833693, 45.587097672642813 ], [ -67.490810255610526, 45.591534902536154 ], [ -67.488355269579017, 45.594560286554341 ], [ -67.49108303183624, 45.598997516447675 ], [ -67.489719150707629, 45.601216131394345 ], [ -67.476625891872885, 45.604241515412525 ], [ -67.455349346266416, 45.604644899948283 ], [ -67.449621045526214, 45.602829669537371 ], [ -67.425343961436795, 45.579029981927661 ], [ -67.423707304082441, 45.57217244481977 ], [ -67.420979541825204, 45.550591372156724 ], [ -67.425616737662509, 45.50299199693729 ], [ -67.448802716849045, 45.51065630311669 ], [ -67.463532633038142, 45.508437688170019 ], [ -67.50390351444527, 45.488470153650006 ], [ -67.473352577164192, 45.425340473803892 ], [ -67.460259318329449, 45.419693090303284 ], [ -67.429981157274085, 45.392868018675379 ], [ -67.422070646728088, 45.379758021263243 ], [ -67.42916282859693, 45.34426018211655 ], [ -67.459986542103721, 45.301098036790449 ], [ -67.465714842843923, 45.297265883700753 ], [ -67.485627507321766, 45.291416807932265 ], [ -67.489446374481901, 45.281332194538315 ], [ -67.463532633038142, 45.24401912498071 ], [ -67.40515852073321, 45.165762525043668 ], [ -67.354422142748575, 45.129861301361217 ], [ -67.344874974848238, 45.126230840539392 ], [ -67.339965002785192, 45.125625763735755 ], [ -67.30559519834398, 45.144786529184259 ], [ -67.302594659861029, 45.161325295150334 ], [ -67.290592505929169, 45.187545289974594 ], [ -67.283500324060356, 45.191982519867935 ], [ -67.27095261767704, 45.191175750796418 ], [ -67.161296574936031, 45.162938833293367 ], [ -67.128836204074886, 45.132079916307887 ], [ -67.11246963053145, 45.112314074055746 ], [ -67.090920308699268, 45.068748544193895 ], [ -67.105923001114078, 45.065723160175708 ], [ -67.11765237882021, 45.056647008121153 ], [ -67.099649147922435, 45.04494885658417 ], [ -67.082191469476101, 45.02962024422537 ], [ -67.074826511381559, 45.019333938563548 ], [ -67.072644301575764, 45.008240863830203 ], [ -67.068279881964173, 45.000979942186561 ], [ -67.054641070677974, 44.986861483435035 ], [ -67.038274497134552, 44.94551456851984 ], [ -67.033364525071519, 44.939867185019239 ], [ -67.001995259113272, 44.918891189159822 ], [ -66.990811433858596, 44.917882727820427 ], [ -66.984537580666938, 44.912638728855576 ], [ -66.98344647576404, 44.903360884533143 ], [ -66.985901461795549, 44.89710842422889 ], [ -66.989174776504242, 44.896503347425259 ], [ -66.99026588140714, 44.882586580941606 ], [ -66.980991489732531, 44.862820738689472 ], [ -66.97826372747528, 44.856971662920984 ], [ -66.992993643664377, 44.849105664473697 ], [ -66.996539734598798, 44.844668434580363 ], [ -66.986447014247005, 44.820667054702767 ], [ -66.974990412766601, 44.815423055737917 ], [ -66.966534349769148, 44.819053516559734 ], [ -66.952077209805793, 44.82006197789913 ], [ -66.949895, 44.817439978416701 ], [ -66.950440552451454, 44.8146162866664 ], [ -66.961078825254674, 44.807355365022758 ], [ -66.970080440703569, 44.805741826879725 ], [ -66.976354293895213, 44.808363826362154 ], [ -66.979627608603906, 44.807355365022758 ], [ -66.98944755272997, 44.798682597503962 ], [ -66.995175853470172, 44.791018291324562 ], [ -67.019998490011048, 44.7714541413403 ], [ -67.026272343202692, 44.768227065054241 ], [ -67.043457245423298, 44.764999988768174 ], [ -67.05518662312943, 44.7714541413403 ], [ -67.062278804998243, 44.769638910929388 ], [ -67.063369909901155, 44.758142451660291 ], [ -67.073462630252934, 44.742007070229974 ], [ -67.083555350604712, 44.739990147551183 ], [ -67.092556966053607, 44.742612147033611 ], [ -67.098830819245251, 44.741401993426337 ], [ -67.104013567534011, 44.71740061354874 ], [ -67.128836204074886, 44.695416156349935 ], [ -67.139201700652393, 44.693802618206902 ], [ -67.14793053987556, 44.684121389348718 ], [ -67.155022721744388, 44.669397853793548 ], [ -67.154477169292932, 44.66818770018628 ], [ -67.16975263793347, 44.662136932149906 ], [ -67.18175479186533, 44.663750470292939 ], [ -67.186664763928349, 44.662742008953543 ], [ -67.192120288442837, 44.655481087309902 ], [ -67.191301959765667, 44.647816781130501 ], [ -67.1893925261856, 44.645598166183831 ], [ -67.213124057823578, 44.639144013611705 ], [ -67.234400603430046, 44.637127090932914 ], [ -67.247221086039076, 44.641564320826248 ], [ -67.251312729424924, 44.640757551754731 ], [ -67.274225932385733, 44.626437400735327 ], [ -67.27695369464297, 44.617966325484417 ], [ -67.273134827482835, 44.610907096108647 ], [ -67.279135904448765, 44.606873250751072 ], [ -67.29332026818642, 44.599208944571672 ], [ -67.302321883635301, 44.597393714160759 ], [ -67.314869590018603, 44.598200483232276 ], [ -67.323052876790314, 44.609293557965614 ], [ -67.322507324338872, 44.61252063425168 ], [ -67.31077794663274, 44.613125711055318 ], [ -67.293593044412134, 44.634303399182613 ], [ -67.292501939509236, 44.648421857934139 ], [ -67.298503016475166, 44.654472625970506 ], [ -67.309686841729842, 44.659313240399598 ], [ -67.307777408149775, 44.691382310992353 ], [ -67.300139673829506, 44.696828002225089 ], [ -67.299048568926622, 44.705702462011757 ], [ -67.308595736826959, 44.70751769242267 ], [ -67.347875513331189, 44.699450001707518 ], [ -67.356058800102915, 44.69904661717176 ], [ -67.376789793257927, 44.681902774402047 ], [ -67.381154212869518, 44.669397853793548 ], [ -67.378972003063723, 44.665565700703851 ], [ -67.37406203100069, 44.662943701221423 ], [ -67.367242625357591, 44.652455703291714 ], [ -67.363150981971728, 44.631883091968064 ], [ -67.368333730260488, 44.624622170324415 ], [ -67.377608121935097, 44.619781555895329 ], [ -67.386609737383992, 44.627042477538964 ], [ -67.388791947189787, 44.626639093003206 ], [ -67.395884129058601, 44.612924018787439 ], [ -67.398884667541566, 44.602637713125617 ], [ -67.405431296958938, 44.594166637874693 ], [ -67.411705150150596, 44.596990329625001 ], [ -67.418797332019409, 44.603444482197133 ], [ -67.420706765599476, 44.607881712090467 ], [ -67.428344499919746, 44.609091865697735 ], [ -67.443619968560284, 44.605864789411676 ], [ -67.447438835720419, 44.603242789929254 ], [ -67.448529940623317, 44.600419098178946 ], [ -67.45780433229794, 44.597998790964397 ], [ -67.492446912964866, 44.617966325484417 ], [ -67.493538017867763, 44.628857707949876 ], [ -67.505812948025337, 44.636925398665035 ], [ -67.522725074020229, 44.633093245575338 ], [ -67.524088955148841, 44.626639093003206 ], [ -67.53090836079194, 44.622000170841993 ], [ -67.533908899274905, 44.621596786306235 ], [ -67.540182752466563, 44.626437400735327 ], [ -67.543456067175242, 44.626639093003206 ], [ -67.551093801495512, 44.622000170841993 ], [ -67.552457682624123, 44.61957986362745 ], [ -67.575098109359217, 44.560685721406784 ], [ -67.569915361070457, 44.556853568317088 ], [ -67.562277626750188, 44.539508033279503 ], [ -67.568278703716118, 44.531036958028579 ], [ -67.648474914078946, 44.525389574527971 ], [ -67.653112109916265, 44.525792959063729 ], [ -67.656930977076399, 44.535877572457679 ], [ -67.660749844236534, 44.537491110600712 ], [ -67.685845257003123, 44.537087726064954 ], [ -67.696483529806358, 44.533860649778887 ], [ -67.702757382998016, 44.528011574010392 ], [ -67.698938515837881, 44.515708345669779 ], [ -67.703575711675171, 44.50481696320432 ], [ -67.71421398447842, 44.495337426614007 ], [ -67.722942823701572, 44.498564502900066 ], [ -67.733853872730535, 44.496345887953396 ], [ -67.743401040630872, 44.497354349292792 ], [ -67.74285548817943, 44.506228809079474 ], [ -67.740127725922179, 44.508850808561895 ], [ -67.74285548817943, 44.526398035867366 ], [ -67.753766537208378, 44.543743570904958 ], [ -67.758949285497124, 44.546567262655259 ], [ -67.767405348494577, 44.548180800798292 ], [ -67.773951977911949, 44.547374031726775 ], [ -67.779407502426437, 44.543743570904958 ], [ -67.781862488457946, 44.534062342046767 ], [ -67.781589712232218, 44.520548960098878 ], [ -67.797137957098485, 44.520750652366758 ], [ -67.802593481612959, 44.523977728652817 ], [ -67.805594020095924, 44.529826804421305 ], [ -67.805594020095924, 44.536886033797074 ], [ -67.808867334804603, 44.544146955440709 ], [ -67.829871104185344, 44.557458645120725 ], [ -67.839963824537136, 44.558870490995879 ], [ -67.844601020374441, 44.55624849151345 ], [ -67.845692125277338, 44.551609569352237 ], [ -67.843237139245815, 44.542735109565562 ], [ -67.856603174306287, 44.523977728652817 ], [ -67.853875412049064, 44.497556041560671 ], [ -67.851147649791812, 44.492513734863699 ], [ -67.851693202243268, 44.484849428684299 ], [ -67.855512069403403, 44.478596968380053 ], [ -67.860967593917877, 44.477588507040657 ], [ -67.866695894658079, 44.471739431272169 ], [ -67.868878104463874, 44.465285278700037 ], [ -67.868878104463874, 44.456814203449127 ], [ -67.851693202243268, 44.428778978213948 ], [ -67.851693202243268, 44.424341748320614 ], [ -67.855239293177675, 44.419501133891515 ], [ -67.868878104463874, 44.424745132856373 ], [ -67.878425272364211, 44.435636515321832 ], [ -67.887426887813092, 44.433014515839403 ], [ -67.887426887813092, 44.426358670999406 ], [ -67.892064083650411, 44.409618212765452 ], [ -67.89970181797068, 44.394087908138772 ], [ -67.911703971902526, 44.419299441623636 ], [ -67.913340629256879, 44.430190824089102 ], [ -67.921251139802862, 44.433014515839403 ], [ -67.926433888091623, 44.431804362232128 ], [ -67.930525531477485, 44.428778978213948 ], [ -67.927524992994506, 44.421316364302427 ], [ -67.931343860154641, 44.411836827712115 ], [ -67.936526608443401, 44.411231750908485 ], [ -67.947437657472364, 44.415870673069691 ], [ -67.955620944244075, 44.416274057605449 ], [ -67.9569848253727, 44.415467288533939 ], [ -67.961622021210005, 44.412441904515752 ], [ -67.961622021210005, 44.399130214835743 ], [ -67.978806923430611, 44.387028678763002 ], [ -67.98562632907371, 44.386826986495123 ], [ -67.997355706779842, 44.399936983907253 ], [ -68.000629021488521, 44.406592828747264 ], [ -68.006084546002995, 44.409618212765452 ], [ -68.010721741840314, 44.407399597818781 ], [ -68.019450581063467, 44.396911599889073 ], [ -68.013995056548993, 44.390255755049068 ], [ -68.034180497252564, 44.360405299402984 ], [ -68.039636021767052, 44.360808683938743 ], [ -68.044273217604342, 44.357984992188435 ], [ -68.044818770055798, 44.351127455080551 ], [ -68.042909336475731, 44.34366484116903 ], [ -68.049455965893102, 44.330756536024779 ], [ -68.060367014922065, 44.331966689632047 ], [ -68.066913644339436, 44.335597150453864 ], [ -68.076188036014045, 44.347900378794485 ], [ -68.077824693368399, 44.373111912279356 ], [ -68.086280756365824, 44.376338988565422 ], [ -68.090099623525958, 44.371296681868444 ], [ -68.093100162008938, 44.370893297332685 ], [ -68.103738434812158, 44.385011756084211 ], [ -68.112194497809611, 44.401550522050286 ], [ -68.112740050261053, 44.421316364302427 ], [ -68.116558917421187, 44.429384055017586 ], [ -68.11983223212988, 44.445721128715782 ], [ -68.119559455904152, 44.459436202931556 ], [ -68.115195036292562, 44.467907278182466 ], [ -68.117650022324085, 44.474966507558236 ], [ -68.123105546838559, 44.478798660647932 ], [ -68.1509287218624, 44.48242912146975 ], [ -68.159384784859839, 44.47940373745157 ], [ -68.162658099568532, 44.477386814772778 ], [ -68.163203652019973, 44.473151277147323 ], [ -68.171114162565971, 44.470125893129136 ], [ -68.194572917978235, 44.471941123540049 ], [ -68.189390169689474, 44.478596968380053 ], [ -68.189935722140916, 44.484849428684299 ], [ -68.192117931946711, 44.487471428166728 ], [ -68.213940030004636, 44.492513734863699 ], [ -68.2240327503564, 44.48706804363097 ], [ -68.227306065065108, 44.479807121987328 ], [ -68.224305526582128, 44.464276817360641 ], [ -68.229488274870889, 44.463470048289132 ], [ -68.244490967285714, 44.471134354468532 ], [ -68.252401477831697, 44.483235890541266 ], [ -68.26167586950632, 44.484042659612783 ], [ -68.267949722697963, 44.47153773900429 ], [ -68.270404708729473, 44.459637895199435 ], [ -68.281042981532707, 44.451368512216391 ], [ -68.298227883753313, 44.44914989726972 ], [ -68.299046212430483, 44.437855130268503 ], [ -68.29495456904462, 44.432812823571524 ], [ -68.268495275149405, 44.440477129750931 ], [ -68.247491505768664, 44.433216208107282 ], [ -68.244490967285714, 44.429989131821223 ], [ -68.24367263860853, 44.42071128749879 ], [ -68.249946491800188, 44.417685903480603 ], [ -68.249946491800188, 44.414862211730302 ], [ -68.215576687358976, 44.390457447316948 ], [ -68.209575610393046, 44.393079446799376 ], [ -68.203574533427116, 44.39227267772786 ], [ -68.197027904009744, 44.386423601959365 ], [ -68.184480197626442, 44.369078066921773 ], [ -68.174660253500377, 44.34366484116903 ], [ -68.173569148597494, 44.32833622881023 ], [ -68.191845155720983, 44.306755156147176 ], [ -68.233307142031023, 44.288602852038068 ], [ -68.275041904566791, 44.288804544305947 ], [ -68.289499044530146, 44.283762237608975 ], [ -68.298227883753313, 44.276299623697454 ], [ -68.298773436204755, 44.26661839483927 ], [ -68.297682331301871, 44.262987934017445 ], [ -68.295227345270348, 44.261777780410171 ], [ -68.290862925658772, 44.247659321658645 ], [ -68.317594995779714, 44.225069787656196 ], [ -68.339417093837625, 44.222851172709532 ], [ -68.34323596099776, 44.229507017549537 ], [ -68.365330835281398, 44.237776400532574 ], [ -68.369695254892974, 44.243222091765304 ], [ -68.3778785416647, 44.247659321658645 ], [ -68.38988069559656, 44.247054244855008 ], [ -68.401337297076964, 44.252298243819858 ], [ -68.419613304200453, 44.274686085554421 ], [ -68.421249961554793, 44.284367314412613 ], [ -68.426159933617839, 44.2950570046102 ], [ -68.431069905680857, 44.298687465432025 ], [ -68.430797129455129, 44.312604231915671 ], [ -68.411975569880184, 44.322285460773855 ], [ -68.408975031397233, 44.325714229327801 ], [ -68.409793360074389, 44.329344690149625 ], [ -68.421522737780521, 44.336202227257502 ], [ -68.421522737780521, 44.337815765400535 ], [ -68.409793360074389, 44.356169761777522 ], [ -68.405974492914254, 44.35677483858116 ], [ -68.396427325013917, 44.364035760224802 ], [ -68.395608996336762, 44.369481451457531 ], [ -68.398063982368271, 44.376137296297543 ], [ -68.367513045087193, 44.390659139584827 ], [ -68.363694177927059, 44.388843909173914 ], [ -68.360420863218366, 44.389650678245431 ], [ -68.357965877186857, 44.39227267772786 ], [ -68.359056982089754, 44.402760675657561 ], [ -68.372423017150226, 44.423736671516977 ], [ -68.378969646567597, 44.429989131821223 ], [ -68.387698485790764, 44.430997593160619 ], [ -68.390971800499443, 44.427367132338802 ], [ -68.392608457853783, 44.418089288016361 ], [ -68.416339989491775, 44.397920061228469 ], [ -68.421795514006249, 44.396508215353315 ], [ -68.427796590972179, 44.396709907621194 ], [ -68.433797667938109, 44.401550522050286 ], [ -68.432433786809483, 44.426560363267285 ], [ -68.429706024552246, 44.439065283875777 ], [ -68.439253192452583, 44.448141435930324 ], [ -68.447982031675735, 44.449553281805478 ], [ -68.455074213544577, 44.447536359126694 ], [ -68.459984185607595, 44.443300821501239 ], [ -68.46380305276773, 44.436644976661228 ], [ -68.458893080704712, 44.412240212247873 ], [ -68.464075828993458, 44.398121753496348 ], [ -68.464348605219186, 44.391062524120585 ], [ -68.461075290510493, 44.385616832887848 ], [ -68.461075290510493, 44.378557603512093 ], [ -68.465985262573525, 44.377145757636939 ], [ -68.478260192731099, 44.378154218976334 ], [ -68.48344294101986, 44.388238832370277 ], [ -68.480715178762608, 44.397314984424831 ], [ -68.472804668216625, 44.404172521532715 ], [ -68.480442402536895, 44.432611131303645 ], [ -68.485352374599927, 44.434426361714557 ], [ -68.494626766274536, 44.429787439553344 ], [ -68.499809514563282, 44.414257134926665 ], [ -68.505537815303484, 44.411635135444243 ], [ -68.514539430752379, 44.413248673587269 ], [ -68.529814899392917, 44.399130214835743 ], [ -68.534452095230222, 44.397718368960589 ], [ -68.555183088385235, 44.403769136996956 ], [ -68.560911389125437, 44.402760675657561 ], [ -68.565275808737027, 44.399130214835743 ], [ -68.566366913639925, 44.39449129267453 ], [ -68.564730256285571, 44.38521344835209 ], [ -68.559274731771097, 44.374322065886631 ], [ -68.550000340096489, 44.371700066404202 ], [ -68.545363144259184, 44.354959608170248 ], [ -68.553819207256623, 44.346286840651459 ], [ -68.563093598931232, 44.332975150971443 ], [ -68.566912466091367, 44.317646538612642 ], [ -68.566094137414211, 44.313007616451429 ], [ -68.563911927608416, 44.307965309754451 ], [ -68.556274193288147, 44.300906080378688 ], [ -68.538543738616085, 44.299897619039292 ], [ -68.531451556747271, 44.29041808244898 ], [ -68.532269885424427, 44.286384237091404 ], [ -68.52872379449002, 44.276097931429575 ], [ -68.519449402815411, 44.265004856696237 ], [ -68.519722179041139, 44.260164242267138 ], [ -68.529814899392917, 44.249676244337437 ], [ -68.528178242038578, 44.241205169086513 ], [ -68.523541046201274, 44.235759477853783 ], [ -68.525177703555613, 44.227490094870745 ], [ -68.53472487145595, 44.229305325281658 ], [ -68.550818668773672, 44.2365662469253 ], [ -68.551091444999386, 44.238381477336212 ], [ -68.562820822705504, 44.248062706194403 ], [ -68.572640766831569, 44.252701628355616 ], [ -68.603464480338374, 44.274686085554421 ], [ -68.615739410495962, 44.275492854625938 ], [ -68.626104907073454, 44.280535161322916 ], [ -68.62746878820208, 44.284367314412613 ], [ -68.629923774233589, 44.286182544823525 ], [ -68.683115138249761, 44.299292542235662 ], [ -68.725668229462684, 44.321680383970218 ], [ -68.73303318755724, 44.32833622881023 ], [ -68.746126446391983, 44.331159920560538 ], [ -68.761947467483964, 44.329546382417504 ], [ -68.766311887095554, 44.326924382935076 ], [ -68.7714946353843, 44.320470230362943 ], [ -68.794953390796564, 44.307763617486572 ], [ -68.827140985431981, 44.312200847379913 ], [ -68.828504866560607, 44.316638077273247 ], [ -68.825504328077642, 44.334588689114476 ], [ -68.821412684691779, 44.349513916937518 ], [ -68.817593817531645, 44.353144377759335 ], [ -68.814866055274422, 44.362220529813897 ], [ -68.818684922434556, 44.375128834958147 ], [ -68.821685460917507, 44.409013135961814 ], [ -68.815411607725864, 44.428173901410311 ], [ -68.80150002021395, 44.434829746250315 ], [ -68.785951775347684, 44.462663279217615 ], [ -68.783769565541888, 44.47395804621884 ], [ -68.79631727192519, 44.47153773900429 ], [ -68.809956083211375, 44.468714047253982 ], [ -68.829050419012049, 44.462259894681857 ], [ -68.859055803841684, 44.444914359644265 ], [ -68.880332349448153, 44.428173901410311 ], [ -68.886606202639797, 44.430594208624861 ], [ -68.89069784602566, 44.438056822536382 ], [ -68.892880055831455, 44.443502513769118 ], [ -68.892061727154271, 44.445116051912144 ], [ -68.896971699217318, 44.450561743144874 ], [ -68.90106334260318, 44.451973589020028 ], [ -68.927522636498395, 44.447939743662445 ], [ -68.931887056109971, 44.438661899340019 ], [ -68.946616972299068, 44.429182362749707 ], [ -68.982350657868892, 44.426156978731527 ], [ -68.990806720866345, 44.415063903998181 ], [ -68.984532867674687, 44.396911599889073 ], [ -68.978804566934485, 44.386423601959365 ], [ -68.967347965454081, 44.381179602994514 ], [ -68.961074112262423, 44.375128834958147 ], [ -68.948253629653408, 44.355968069509643 ], [ -68.954527482845066, 44.324100691184768 ], [ -68.958891902456642, 44.314419462326583 ], [ -68.979077343160213, 44.296267158217475 ], [ -69.003627203475361, 44.294653620074442 ], [ -69.004991084603972, 44.274081008750784 ], [ -69.016993238535832, 44.25713885824895 ], [ -69.028722616241964, 44.249071167533799 ], [ -69.029540944919134, 44.248466090730162 ], [ -69.040179217722368, 44.233742555174999 ], [ -69.043725308656775, 44.225069787656196 ], [ -69.042906979979605, 44.215186866530132 ], [ -69.0519085954285, 44.195824408813749 ], [ -69.05272692410567, 44.188160102634349 ], [ -69.054636357685737, 44.171621336668274 ], [ -69.061182987103109, 44.165570568631907 ], [ -69.077822336872259, 44.164965491828269 ], [ -69.079731770452327, 44.160931646470686 ], [ -69.081095651580952, 44.156696108845232 ], [ -69.079731770452327, 44.143989495968853 ], [ -69.075640127066478, 44.130072729485207 ], [ -69.080277322903783, 44.117769501144593 ], [ -69.100735539833067, 44.104457811464584 ], [ -69.101008316058795, 44.093566428999118 ], [ -69.092006700609915, 44.085700430551839 ], [ -69.08900616212695, 44.08529704601608 ], [ -69.076458455743648, 44.090541044980938 ], [ -69.056273015040077, 44.095179967142144 ], [ -69.050817490525603, 44.094978274874265 ], [ -69.043452532431047, 44.092154583123964 ], [ -69.031995930950643, 44.079044585711827 ], [ -69.048908056945535, 44.062505819745759 ], [ -69.050544714299875, 44.063110896549389 ], [ -69.050544714299875, 44.067951510978489 ], [ -69.056000238814363, 44.069565049121522 ], [ -69.064183525586074, 44.06996843365728 ], [ -69.068002392746209, 44.06754812644273 ], [ -69.079731770452327, 44.055244898102117 ], [ -69.073730693486411, 44.046168746047563 ], [ -69.081095651580952, 44.041328131618471 ], [ -69.09418891041571, 44.038907824403921 ], [ -69.113010469990655, 44.028823211009971 ], [ -69.125830952599671, 44.019545366687538 ], [ -69.128013162405466, 44.017326751740868 ], [ -69.124467071471059, 44.007443830614804 ], [ -69.128558714856922, 44.005830292471771 ], [ -69.149016931786207, 43.998569370828129 ], [ -69.162655743072406, 43.99897275536388 ], [ -69.170293477392676, 43.995543986809942 ], [ -69.19375223280494, 43.975576452289928 ], [ -69.197843876190788, 43.967508761574763 ], [ -69.19375223280494, 43.95984445539537 ], [ -69.196207218836449, 43.950566611072936 ], [ -69.20357217693099, 43.941893843554141 ], [ -69.214210449734225, 43.935641383249887 ], [ -69.237396428920761, 43.931607537892312 ], [ -69.242579177209507, 43.925556769855945 ], [ -69.259764079430113, 43.921522924498362 ], [ -69.265219603944601, 43.933422768303224 ], [ -69.267401813750382, 43.943709073965053 ], [ -69.28049507258514, 43.95742414818082 ], [ -69.282677282390921, 43.958029224984458 ], [ -69.284041163519547, 43.958634301788095 ], [ -69.288405583131123, 43.957625840448699 ], [ -69.307772695157524, 43.943507381697174 ], [ -69.31431932457491, 43.942902304893536 ], [ -69.319774849089384, 43.944919227572328 ], [ -69.305044932900287, 43.956617379109304 ], [ -69.304226604223118, 43.96206307034204 ], [ -69.321684282669452, 43.969929068789313 ], [ -69.331504226795516, 43.974366298682654 ], [ -69.351962443724801, 43.974769683218412 ], [ -69.366692359913898, 43.964685069824462 ], [ -69.375421199137065, 43.964483377556583 ], [ -69.387968905520353, 43.964281685288704 ], [ -69.398334402097873, 43.971744299200225 ], [ -69.416064856769921, 43.977189990432962 ], [ -69.428885339378951, 43.958029224984458 ], [ -69.431613101636188, 43.964483377556583 ], [ -69.43652307369922, 43.966903684771125 ], [ -69.441705821987966, 43.964281685288704 ], [ -69.450980213662575, 43.941893843554141 ], [ -69.459709052885756, 43.903370620389254 ], [ -69.483440584523734, 43.88037770185106 ], [ -69.486168346780971, 43.869082934849835 ], [ -69.503353249001577, 43.837618941060718 ], [ -69.514809850481981, 43.831366480756472 ], [ -69.516173731610593, 43.83721555652496 ], [ -69.513173193127642, 43.84487986270436 ], [ -69.520265374996455, 43.868477858046198 ], [ -69.524629794608046, 43.87573877968984 ], [ -69.543996906634447, 43.881587855458335 ], [ -69.549452431148922, 43.879974317315302 ], [ -69.550816312277533, 43.87795739463651 ], [ -69.550543536051805, 43.872511703403774 ], [ -69.545088011537331, 43.861216936402556 ], [ -69.5527257458576, 43.841249401882536 ], [ -69.558181270372074, 43.840644325078898 ], [ -69.568273990723867, 43.844476478168602 ], [ -69.572638410335458, 43.844073093632844 ], [ -69.57536617259268, 43.842056170954052 ], [ -69.578639487301388, 43.823298790041306 ], [ -69.588459431427438, 43.818458175612214 ], [ -69.604280452519419, 43.813617561183122 ], [ -69.605917109873772, 43.814827714790397 ], [ -69.604553228745146, 43.825719097255856 ], [ -69.598552151779217, 43.825517404987977 ], [ -69.592278298587573, 43.830963096220714 ], [ -69.589277760104608, 43.851334015276485 ], [ -69.594733284619082, 43.858796629188006 ], [ -69.604553228745146, 43.85798986011649 ], [ -69.613282067968314, 43.845081554972239 ], [ -69.6130092917426, 43.837417248792839 ], [ -69.615191501548381, 43.831568173024351 ], [ -69.621192578514311, 43.826727558595252 ], [ -69.630194193963206, 43.837013864257081 ], [ -69.62964864151175, 43.843468016829206 ], [ -69.634831389800496, 43.845888324043756 ], [ -69.649834082215321, 43.836207095185564 ], [ -69.653107396924014, 43.817248022004947 ], [ -69.650925187118219, 43.803734640057051 ], [ -69.653380173149728, 43.791028027180673 ], [ -69.664836774630132, 43.791028027180673 ], [ -69.685567767785159, 43.816239560665551 ], [ -69.685567767785159, 43.820475098291006 ], [ -69.692387173428244, 43.824307251380702 ], [ -69.697297145491291, 43.825114020452219 ], [ -69.697842697942718, 43.82491232818434 ], [ -69.705753208488716, 43.823097097773427 ], [ -69.714754823937611, 43.810188792629177 ], [ -69.717755362420576, 43.80111264057463 ], [ -69.71720980996912, 43.792439873055827 ], [ -69.719664796000643, 43.786590797287339 ], [ -69.752670719313244, 43.755933572569738 ], [ -69.761672334762125, 43.756942033909134 ], [ -69.780221118111342, 43.755328495766101 ], [ -69.782403327917137, 43.753714957623075 ], [ -69.782403327917137, 43.751092958140646 ], [ -69.778584460757003, 43.747059112783063 ], [ -69.778311684531275, 43.744638805568513 ], [ -69.835321915707581, 43.721040810226683 ], [ -69.838595230416274, 43.705107121064245 ], [ -69.85141571302529, 43.703493582921212 ], [ -69.854961803959696, 43.704703736528487 ], [ -69.857962342442676, 43.723864501976983 ], [ -69.855507356411152, 43.732738961763658 ], [ -69.859053447345559, 43.740604960210938 ], [ -69.868600615245896, 43.742621882889722 ], [ -69.862053985828524, 43.758958956587918 ], [ -69.869691720148793, 43.775699414821872 ], [ -69.884148860112163, 43.778119722036422 ], [ -69.887422174820841, 43.777111260697026 ], [ -69.903243195912836, 43.772472338535813 ], [ -69.915518126070424, 43.775094338018235 ], [ -69.926974727550828, 43.780136644715213 ], [ -69.94852404938301, 43.766018185963688 ], [ -69.953161245220315, 43.768841877713996 ], [ -69.958071217283347, 43.7678334163746 ], [ -69.982621077598495, 43.750891265872767 ], [ -69.989167707015866, 43.743226959693359 ], [ -69.994350455304627, 43.728503424138196 ], [ -69.992441021724559, 43.726889885995163 ], [ -69.992713797950273, 43.724872963316379 ], [ -70.001715413399168, 43.717612041672737 ], [ -70.006898161687928, 43.7170069648691 ], [ -70.005261504333589, 43.727494962798801 ], [ -70.001169860947726, 43.733344038567296 ], [ -69.998714874916203, 43.740403267943059 ], [ -70.001715413399168, 43.744437113300634 ], [ -70.041267966129141, 43.737982960728516 ], [ -70.040722413677685, 43.745042190104272 ], [ -70.034448560486041, 43.758958956587918 ], [ -70.025719721262874, 43.769446954517633 ], [ -70.005261504333589, 43.787599258626734 ], [ -69.998169322464761, 43.79869233336008 ], [ -69.999260427367659, 43.805146485932205 ], [ -70.002806518302066, 43.812004023040089 ], [ -70.010989805073791, 43.810995561700693 ], [ -70.02626527371433, 43.82249202096979 ], [ -70.02626527371433, 43.828946173541922 ], [ -70.023264735231351, 43.83419017250678 ], [ -70.006898161687928, 43.844073093632844 ], [ -70.002806518302066, 43.848308631258305 ], [ -70.002806518302066, 43.852947553419519 ], [ -70.009898700170879, 43.859401705991644 ], [ -70.019173091845502, 43.858796629188006 ], [ -70.022719182779923, 43.856174629705578 ], [ -70.031993574454532, 43.849922169401339 ], [ -70.053542896286714, 43.828341096738285 ], [ -70.052997343835273, 43.821483559630401 ], [ -70.064726721541405, 43.813214176647364 ], [ -70.066363378895744, 43.819668329219489 ], [ -70.081093295084827, 43.819668329219489 ], [ -70.107279812754328, 43.809180331289781 ], [ -70.142740722098438, 43.79163310398431 ], [ -70.153924547353114, 43.781145106054609 ], [ -70.153924547353114, 43.774690953482477 ], [ -70.176019421636752, 43.76077418699883 ], [ -70.177656078991106, 43.764808032356413 ], [ -70.172473330702346, 43.773682492143088 ], [ -70.175473869185311, 43.777111260697026 ], [ -70.189931009148665, 43.771867261732176 ], [ -70.194568204985984, 43.766018185963688 ], [ -70.197568743468935, 43.753311573087316 ], [ -70.194022652534528, 43.745647266907909 ], [ -70.194568204985984, 43.742218498353964 ], [ -70.218026960398234, 43.720032348887287 ], [ -70.219118065301132, 43.715998503529704 ], [ -70.215571974366725, 43.707729120546666 ], [ -70.216935855495336, 43.704905428796366 ], [ -70.227846904524299, 43.701880044778179 ], [ -70.231938547910147, 43.704905428796366 ], [ -70.251851212388004, 43.683324356133312 ], [ -70.2540334221938, 43.676870203561187 ], [ -70.252942317290888, 43.675054973150274 ], [ -70.247214016550686, 43.672029589132094 ], [ -70.242304044487668, 43.669609281917545 ], [ -70.239576282230416, 43.66597882109572 ], [ -70.240121834681872, 43.664768667488445 ], [ -70.24203126826194, 43.663356821613291 ], [ -70.240940163359042, 43.659121283987837 ], [ -70.222936932461266, 43.638952057199944 ], [ -70.211207554755134, 43.625842059787814 ], [ -70.217208631721064, 43.59679837321324 ], [ -70.214480869463827, 43.590344220641114 ], [ -70.201114834403356, 43.586512067551411 ], [ -70.197023191017493, 43.565132687156243 ], [ -70.206024806466388, 43.557670073244722 ], [ -70.216663079269608, 43.556863304173206 ], [ -70.219663617752587, 43.562107303138056 ], [ -70.231938547910147, 43.561098841798668 ], [ -70.244213478067735, 43.551820997476227 ], [ -70.261943932739797, 43.553636227887139 ], [ -70.272582205543017, 43.562712379941694 ], [ -70.29931427566396, 43.550610843868952 ], [ -70.307770338661413, 43.544358383564713 ], [ -70.341867366876897, 43.54052623047501 ], [ -70.352778415905846, 43.535887308313789 ], [ -70.353323968357302, 43.535483923778031 ], [ -70.361234478903299, 43.529231463473792 ], [ -70.37923770980106, 43.50724700627498 ], [ -70.384966010541262, 43.495952239273763 ], [ -70.385511562992718, 43.48707777948708 ], [ -70.383056576961195, 43.469732244449489 ], [ -70.380328814703972, 43.464286553216766 ], [ -70.372145527932247, 43.455008708894326 ], [ -70.349777877422895, 43.442100403750075 ], [ -70.362052807580454, 43.439075019731888 ], [ -70.370508870577908, 43.434032713034917 ], [ -70.384966010541262, 43.418905792943995 ], [ -70.383874905638379, 43.412855024907628 ], [ -70.390967087507192, 43.402568719245799 ], [ -70.399968702956087, 43.399946719763378 ], [ -70.401605360310441, 43.401358565638532 ], [ -70.406515332373459, 43.400955181102773 ], [ -70.421245248562556, 43.395711182137916 ], [ -70.427791877979928, 43.38925702956579 ], [ -70.424518563271249, 43.379575800707599 ], [ -70.425064115722691, 43.375945339885774 ], [ -70.442521794169011, 43.356582882169398 ], [ -70.460797801292529, 43.343271192489382 ], [ -70.465980549581275, 43.340245808471202 ], [ -70.472799955224374, 43.34387626929302 ], [ -70.485347661607676, 43.346296576507569 ], [ -70.517808032468821, 43.344077961560899 ], [ -70.535265710915155, 43.336817039917264 ], [ -70.536629592043766, 43.335606886309989 ], [ -70.553814494264373, 43.321891812094215 ], [ -70.562816109713268, 43.31059704509299 ], [ -70.585183760222634, 43.270056899249326 ], [ -70.593912599445787, 43.249282595657789 ], [ -70.590912060962836, 43.237786136388692 ], [ -70.575909368548011, 43.221852447226254 ], [ -70.576727697225181, 43.217616909600792 ], [ -70.587911522479857, 43.199867990027442 ], [ -70.61900801221239, 43.163563381809233 ], [ -70.634556257078657, 43.127662158126782 ], [ -70.634283480852929, 43.122216466894045 ], [ -70.638375124238792, 43.114148776178887 ], [ -70.654196145330786, 43.099021856087965 ], [ -70.65528725023367, 43.09801339474857 ], [ -70.656105578910854, 43.093172780319478 ], [ -70.665925523036904, 43.076230629817644 ], [ -70.673017704905732, 43.070381554049149 ], [ -70.703841418412537, 43.059691863851569 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "37", "geo_id": "0400000US25", "fips_state": "25", "name": "Massachusetts", "iso_3166_2": "MA", "census": 6547629, "pop_estimataes_base": 6547817, "pop_2010": 6564073, "pop_2011": 6612270, "pop_2012": 6655829, "pop_2013": 6708874, "pop_2014": 6745408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.821135195473815, 41.587338308335163 ], [ -70.821680747925257, 41.583707847513338 ], [ -70.821953524150985, 41.582901078441822 ], [ -70.83013681092271, 41.585321385656371 ], [ -70.837501769017251, 41.595405999050314 ], [ -70.838047321468707, 41.596011075853951 ], [ -70.838320097694421, 41.59641446038971 ], [ -70.834501230534286, 41.602666920693963 ], [ -70.832046244502777, 41.60649907378366 ], [ -70.831773468277049, 41.60629738151578 ], [ -70.827954601116915, 41.602666920693963 ], [ -70.827409048665459, 41.602061843890326 ], [ -70.823862957731052, 41.59863307533638 ], [ -70.820862419248101, 41.587741692870921 ], [ -70.821135195473815, 41.587338308335163 ] ] ], [ [ [ -70.59636758547731, 41.471970331108395 ], [ -70.574818263645113, 41.46833987028657 ], [ -70.567453305550572, 41.471163562036878 ], [ -70.563361662164709, 41.469146639358087 ], [ -70.553268941812931, 41.45301125792777 ], [ -70.552996165587203, 41.443330029069585 ], [ -70.55572392784444, 41.430825108461086 ], [ -70.552996165587203, 41.423967571353202 ], [ -70.547540641072729, 41.415899880638044 ], [ -70.538266249398106, 41.409244035798039 ], [ -70.528446305272055, 41.405008498172577 ], [ -70.517535256243093, 41.403798344565303 ], [ -70.506896983439873, 41.400167883743485 ], [ -70.502259787602554, 41.392100193028327 ], [ -70.501441458925385, 41.385444348188315 ], [ -70.498986472893876, 41.384435886848927 ], [ -70.49080318612215, 41.38362911777741 ], [ -70.484529332930492, 41.386251117259832 ], [ -70.472527178998646, 41.39915942240409 ], [ -70.473072731450088, 41.408840651262281 ], [ -70.470890521644307, 41.412874496619857 ], [ -70.463798339775479, 41.419126956924103 ], [ -70.450432304715008, 41.420740495067136 ], [ -70.446340661329145, 41.396537422921668 ], [ -70.449341199812125, 41.380402041491351 ], [ -70.448250094909213, 41.35357696986344 ], [ -70.450977857166464, 41.348131278630717 ], [ -70.496258710636624, 41.346517740487684 ], [ -70.538266249398106, 41.348938047702227 ], [ -70.599095347734547, 41.349341432237985 ], [ -70.709842495378467, 41.341677126058585 ], [ -70.733301250790717, 41.336231434825855 ], [ -70.747485614528358, 41.329978974521609 ], [ -70.764124964297508, 41.318684207520384 ], [ -70.767943831457643, 41.31202836268038 ], [ -70.766034397877576, 41.309002978662193 ], [ -70.768762160134827, 41.303758979697342 ], [ -70.775581565777912, 41.300935287947034 ], [ -70.802040859673141, 41.31424697762705 ], [ -70.819498538119461, 41.327155282771301 ], [ -70.838865650145863, 41.347122817291321 ], [ -70.833682901857117, 41.353375277595561 ], [ -70.812406356250648, 41.35579558481011 ], [ -70.800404202318788, 41.353778662131319 ], [ -70.783219300098182, 41.347929586362838 ], [ -70.775036013326471, 41.349139739970106 ], [ -70.769034936360555, 41.353173585327681 ], [ -70.729209607404854, 41.397747576528936 ], [ -70.724299635341822, 41.39895773013621 ], [ -70.712297481409962, 41.408840651262281 ], [ -70.711479152732807, 41.415496496102286 ], [ -70.701386432381014, 41.430825108461086 ], [ -70.686929292417645, 41.441313106390794 ], [ -70.64928617326774, 41.461078948642928 ], [ -70.603459767346123, 41.482458329038096 ], [ -70.598549795283105, 41.481248175430821 ], [ -70.59636758547731, 41.471970331108395 ] ] ], [ [ [ -70.092277120339503, 41.297708211660975 ], [ -70.082184399987725, 41.299120057536129 ], [ -70.062544511735609, 41.308801286394313 ], [ -70.046177938192159, 41.321709591538564 ], [ -70.031448022003076, 41.339256818844035 ], [ -70.028720259745839, 41.359829430167693 ], [ -70.03090246955162, 41.367493736347093 ], [ -70.035266889163211, 41.372132658508306 ], [ -70.038540203871889, 41.376368196133768 ], [ -70.045632385740731, 41.38362911777741 ], [ -70.049451252900866, 41.387864655402865 ], [ -70.049178476675138, 41.391696808492568 ], [ -70.033630231808871, 41.385847732724073 ], [ -70.018354763168333, 41.368703889954368 ], [ -69.960253427089128, 41.27874913848035 ], [ -69.960253427089128, 41.264630679728825 ], [ -69.964345070474991, 41.254546066334875 ], [ -69.965708951603617, 41.252529143656083 ], [ -69.974983343278225, 41.247486836959112 ], [ -70.001715413399168, 41.239419146243954 ], [ -70.015354224685368, 41.2380073003688 ], [ -70.052724567609545, 41.242646222530013 ], [ -70.083275504890622, 41.244461452940925 ], [ -70.096914316176822, 41.240830992119101 ], [ -70.118736414234732, 41.242444530262134 ], [ -70.170563897122278, 41.255957912210029 ], [ -70.237121296198907, 41.282782983837933 ], [ -70.256215631999595, 41.288026982802783 ], [ -70.266853904802815, 41.294481135374909 ], [ -70.273400534220201, 41.301540364750672 ], [ -70.275582744025982, 41.310414824537347 ], [ -70.260580051611157, 41.310011440001588 ], [ -70.249396226356481, 41.305574210108247 ], [ -70.244486254293463, 41.303153902893705 ], [ -70.240121834681872, 41.295287904446425 ], [ -70.229483561878638, 41.290245597749447 ], [ -70.208752568723625, 41.290245597749447 ], [ -70.196204862340323, 41.294682827642788 ], [ -70.124464714974934, 41.293876058571271 ], [ -70.092277120339503, 41.297708211660975 ] ] ], [ [ [ -73.487250025699367, 42.049616986313737 ], [ -73.496797193599704, 42.049616986313737 ], [ -73.508253795080108, 42.086324979067712 ], [ -73.410599906270946, 42.351752003596417 ], [ -73.352498570191756, 42.510080433881399 ], [ -73.306944940495868, 42.632709332751809 ], [ -73.264937401734386, 42.745858695031906 ], [ -73.142460876384348, 42.743438387817363 ], [ -73.022984889517261, 42.741219772870693 ], [ -73.018620469905684, 42.741018080602814 ], [ -72.930240972771131, 42.738799465656143 ], [ -72.927240434288166, 42.738799465656143 ], [ -72.864229126145943, 42.73718592751311 ], [ -72.458610878494483, 42.726899621851288 ], [ -72.451245920399941, 42.726697929583409 ], [ -72.411966143895683, 42.725487775976134 ], [ -72.282942989128287, 42.722059007422189 ], [ -72.111093966922212, 42.71721839299309 ], [ -72.078360819835353, 42.716411623921573 ], [ -71.928879448138645, 42.712176086296118 ], [ -71.898601287083281, 42.711571009492488 ], [ -71.805584594111423, 42.709150702277938 ], [ -71.772578670798836, 42.708343933206422 ], [ -71.636190557936885, 42.704915164652476 ], [ -71.631826138325295, 42.704713472384597 ], [ -71.542628312513571, 42.702696549705806 ], [ -71.294129170879074, 42.697049166205197 ], [ -71.254576618149116, 42.734160543494923 ], [ -71.245575002700235, 42.742631618745847 ], [ -71.208204659776044, 42.743236695549484 ], [ -71.208204659776044, 42.743236695549484 ], [ -71.208204659776044, 42.743236695549484 ], [ -71.181745365880829, 42.737589312048868 ], [ -71.18610978549242, 42.790634378501039 ], [ -71.165651568563121, 42.80878668261014 ], [ -71.14983054747114, 42.815442527450145 ], [ -71.113824085675574, 42.827947448058644 ], [ -71.058450511853621, 42.847108213507141 ], [ -71.037992294924322, 42.854167442882911 ], [ -70.996803084840025, 42.864655440812612 ], [ -70.931609566892007, 42.884219590796874 ], [ -70.930791238214823, 42.884622975332633 ], [ -70.914970217122843, 42.886639898011424 ], [ -70.914970217122843, 42.886639898011424 ], [ -70.902695286965269, 42.886438205743545 ], [ -70.886055937196105, 42.882606052653841 ], [ -70.848685594271927, 42.861024979990788 ], [ -70.81731632831368, 42.872319746992012 ], [ -70.817861880765122, 42.850536982061087 ], [ -70.805314174381834, 42.781759918714357 ], [ -70.792766467998518, 42.747068848639181 ], [ -70.772308251069234, 42.71096593268885 ], [ -70.770398817489166, 42.704915164652476 ], [ -70.778582104260892, 42.698461012080351 ], [ -70.778582104260892, 42.693620397651259 ], [ -70.764397740523236, 42.685552706936093 ], [ -70.74884949565697, 42.68393916879306 ], [ -70.744485076045393, 42.682123938382155 ], [ -70.729755159856296, 42.669619017773655 ], [ -70.728936831179141, 42.663971634273047 ], [ -70.689384278449154, 42.653281944075459 ], [ -70.682564872806068, 42.654492097682734 ], [ -70.681473767903171, 42.662358096130021 ], [ -70.663470537005395, 42.677686708488821 ], [ -70.645194529881891, 42.689384860025797 ], [ -70.630191837467066, 42.692611936311863 ], [ -70.620099117115288, 42.687973014150643 ], [ -70.622826879372525, 42.676073170345788 ], [ -70.623917984275423, 42.665383480148201 ], [ -70.622826879372525, 42.660946250254867 ], [ -70.614916368826528, 42.6577191739688 ], [ -70.595549256800126, 42.660341173451229 ], [ -70.591730389639991, 42.648441329646367 ], [ -70.591457613414278, 42.639768562127571 ], [ -70.593912599445787, 42.635129639966358 ], [ -70.605641977151919, 42.634927947698479 ], [ -70.618462459760934, 42.628675487394233 ], [ -70.635647361981555, 42.600236877623296 ], [ -70.654741697782228, 42.582286265782074 ], [ -70.664834418134006, 42.580471035371161 ], [ -70.668107732842699, 42.581681188978436 ], [ -70.668107732842699, 42.585311649800254 ], [ -70.668380509068413, 42.589547187425708 ], [ -70.670562718874208, 42.592169186908137 ], [ -70.672472152454276, 42.594387801854808 ], [ -70.675745467162969, 42.594589494122687 ], [ -70.678746005645934, 42.594387801854808 ], [ -70.681473767903171, 42.593177648247533 ], [ -70.684474306386136, 42.588942110622071 ], [ -70.698658670123777, 42.577445651352974 ], [ -70.729755159856296, 42.571596575584479 ], [ -70.737120117950852, 42.576840574549337 ], [ -70.757305558654423, 42.570386421977211 ], [ -70.804223069478923, 42.561511962190536 ], [ -70.815406894733613, 42.554251040546895 ], [ -70.823317405279596, 42.551427348796594 ], [ -70.848412818046199, 42.550217195189319 ], [ -70.871326021007008, 42.546385042099615 ], [ -70.872417125909919, 42.54295627354567 ], [ -70.866143272718261, 42.522585354489898 ], [ -70.859869419526603, 42.520366739543228 ], [ -70.857141657269381, 42.521576893150502 ], [ -70.842138964854556, 42.519559970471711 ], [ -70.830955139599865, 42.503626281309273 ], [ -70.835865111662912, 42.490516283897144 ], [ -70.841593412403114, 42.487692592146836 ], [ -70.847321713143316, 42.491524745236532 ], [ -70.857687209720822, 42.490314591629264 ], [ -70.879782084004461, 42.478818132360161 ], [ -70.886601489647546, 42.470145364841372 ], [ -70.887965370776172, 42.467119980823185 ], [ -70.88741981832473, 42.464901365876514 ], [ -70.894239223967816, 42.460867520518931 ], [ -70.908150811479743, 42.466918288555306 ], [ -70.91769797938008, 42.467926749894701 ], [ -70.92206239899167, 42.466716596287426 ], [ -70.934882881600686, 42.457842136500751 ], [ -70.93433732914923, 42.444732139088615 ], [ -70.933246224246346, 42.437874601980738 ], [ -70.928336252183314, 42.431017064872847 ], [ -70.913060783542775, 42.427789988586781 ], [ -70.908423587705471, 42.425167989104359 ], [ -70.901876958288085, 42.420327374675267 ], [ -70.90569582544822, 42.416293529317684 ], [ -70.936519538955025, 42.418108759728597 ], [ -70.943338944598139, 42.436261063837705 ], [ -70.943611720823853, 42.451993060732264 ], [ -70.946885035532546, 42.456228598357718 ], [ -70.960523846818745, 42.446143984963769 ], [ -70.960523846818745, 42.443723677749219 ], [ -70.960796623044459, 42.441303370534676 ], [ -70.982891497328097, 42.423957835497085 ], [ -70.98780146939113, 42.416696913853443 ], [ -70.990529231648367, 42.407015684995258 ], [ -70.989165350519755, 42.402578455101917 ], [ -70.985073707133893, 42.40197337829828 ], [ -70.983437049779553, 42.396325994797664 ], [ -70.980436511296574, 42.391485380368572 ], [ -70.972798776976305, 42.389871842225546 ], [ -70.970071014719082, 42.388056611814633 ], [ -70.971707672073421, 42.387048150475238 ], [ -70.972526000750591, 42.385031227796446 ], [ -70.972798776976305, 42.38180415151038 ], [ -70.972253224524863, 42.377366921617046 ], [ -70.960796623044459, 42.360626463383092 ], [ -70.95315888872419, 42.349735080917625 ], [ -70.952886112498476, 42.343886005149137 ], [ -70.963524385301696, 42.346911389167325 ], [ -70.972526000750591, 42.353970618543087 ], [ -70.9749809867821, 42.355785848954 ], [ -70.979890958845132, 42.356390925757637 ], [ -70.982345944876641, 42.355987541221879 ], [ -70.998166965968636, 42.352760464935812 ], [ -71.006895805191803, 42.347113081435197 ], [ -71.010169119900496, 42.339247082987924 ], [ -71.011805777254835, 42.335213237630342 ], [ -71.01562464441497, 42.325935393307915 ], [ -71.013169658383447, 42.3154473953782 ], [ -71.005531924063177, 42.30717801239517 ], [ -71.000894728225873, 42.30253909023395 ], [ -71.006077476514633, 42.288017246946666 ], [ -71.004986371611736, 42.282773247981815 ], [ -70.995984756162841, 42.271276788712711 ], [ -70.989165350519755, 42.267444635623008 ], [ -70.967343252461831, 42.268251404694524 ], [ -70.949067245338341, 42.272486942319986 ], [ -70.94552115440392, 42.269058173766041 ], [ -70.935973986503583, 42.264217559336949 ], [ -70.923153503894554, 42.263209097997553 ], [ -70.91087857373698, 42.265427712944224 ], [ -70.906241377899676, 42.27168017324847 ], [ -70.896148657547883, 42.285193555196358 ], [ -70.895875881322169, 42.292454476840007 ], [ -70.897239762450795, 42.295883245393945 ], [ -70.915515769574284, 42.30253909023395 ], [ -70.917425203154352, 42.305766166520016 ], [ -70.907605259028287, 42.307984781466686 ], [ -70.882782622487412, 42.308791550538203 ], [ -70.881145965133072, 42.300723859823037 ], [ -70.870780468555566, 42.285596939732116 ], [ -70.861778853106671, 42.275915710873932 ], [ -70.851140580303451, 42.268251404694524 ], [ -70.830955139599865, 42.267444635623008 ], [ -70.824681286408236, 42.266032789747861 ], [ -70.811860803799192, 42.263007405729674 ], [ -70.78867482461267, 42.25393125367512 ], [ -70.780764314066673, 42.251712638728449 ], [ -70.770944369940622, 42.249292331513907 ], [ -70.764670516748964, 42.244048332549056 ], [ -70.754577796397172, 42.228719720190256 ], [ -70.74721283830263, 42.221862183082365 ], [ -70.73057348853348, 42.210970800616906 ], [ -70.722390201761755, 42.207945416598719 ], [ -70.71857133460162, 42.184952498060518 ], [ -70.714206914990029, 42.168817116630201 ], [ -70.706296404444046, 42.163169733129592 ], [ -70.685292635063306, 42.133117585215629 ], [ -70.664016089456837, 42.108309436266509 ], [ -70.640284557818859, 42.088543594014375 ], [ -70.638375124238792, 42.081484364638612 ], [ -70.647376739687672, 42.076240365673755 ], [ -70.648195068364856, 42.068374367226482 ], [ -70.643285096301824, 42.050827139921012 ], [ -70.644376201204722, 42.045986525491912 ], [ -70.650922830622093, 42.046188217759791 ], [ -70.669471613971325, 42.037112065705244 ], [ -70.671653823777106, 42.021380068810686 ], [ -70.667562180391258, 42.012303916756125 ], [ -70.670835495099936, 42.007866686862791 ], [ -70.678746005645934, 42.005446379648248 ], [ -70.686929292417645, 42.012707301291883 ], [ -70.69593090786654, 42.01331237809552 ], [ -70.712297481409962, 42.007664994594911 ], [ -70.710115271604181, 41.999597303879753 ], [ -70.698931446349491, 41.987092383271261 ], [ -70.662379432102497, 41.960670696179115 ], [ -70.651741159299263, 41.958653773500323 ], [ -70.648467844590584, 41.96167915751851 ], [ -70.631282942369978, 41.950384390517286 ], [ -70.623645208049709, 41.943325161141523 ], [ -70.616553026180867, 41.940299777123343 ], [ -70.608096963183442, 41.940703161659101 ], [ -70.598004242831649, 41.947762391034857 ], [ -70.58354710286828, 41.949981005981527 ], [ -70.552996165587203, 41.929610086925756 ], [ -70.546449536169831, 41.916701781781498 ], [ -70.547540641072729, 41.911861167352406 ], [ -70.545903983718375, 41.907222245191193 ], [ -70.531992396206462, 41.889473325617843 ], [ -70.52544576678909, 41.858816100900242 ], [ -70.535538487140883, 41.839453643183859 ], [ -70.542085116558241, 41.831184260200821 ], [ -70.543176221461152, 41.824528415360817 ], [ -70.540994011655357, 41.815653955574142 ], [ -70.537175144495222, 41.81081334114505 ], [ -70.533901829786529, 41.806376111251708 ], [ -70.533356277335088, 41.805569342180192 ], [ -70.532537948657904, 41.804762573108675 ], [ -70.525172990563362, 41.797905036000792 ], [ -70.518353584920277, 41.791854267964425 ], [ -70.517535256243093, 41.791047498892908 ], [ -70.517535256243093, 41.791047498892908 ], [ -70.516989703791651, 41.79064411435715 ], [ -70.516716927565923, 41.790442422089271 ], [ -70.516171375114482, 41.790039037553512 ], [ -70.514534717760142, 41.788828883946238 ], [ -70.514534717760142, 41.788828883946238 ], [ -70.514534717760142, 41.788828883946238 ], [ -70.494076500830829, 41.773903656123196 ], [ -70.492985395927946, 41.773298579319558 ], [ -70.492985395927946, 41.773298579319558 ], [ -70.483438228027609, 41.768054580354708 ], [ -70.482074346898997, 41.76744950355107 ], [ -70.474163836353, 41.763012273657736 ], [ -70.473618283901544, 41.762810581389857 ], [ -70.473345507675816, 41.762608889121978 ], [ -70.471981626547205, 41.761802120050461 ], [ -70.471981626547205, 41.761802120050461 ], [ -70.471708850321477, 41.761802120050461 ], [ -70.471436074095749, 41.761600427782582 ], [ -70.458888367712461, 41.757969966960758 ], [ -70.413607514242287, 41.744658277280749 ], [ -70.412516409339389, 41.74445658501287 ], [ -70.411970856887933, 41.744254892744991 ], [ -70.377055499995279, 41.739010893780133 ], [ -70.375418842640926, 41.738809201512254 ], [ -70.375146066415212, 41.738809201512254 ], [ -70.318135835238905, 41.735783817494074 ], [ -70.315408072981683, 41.735582125226195 ], [ -70.314589744304499, 41.735582125226195 ], [ -70.291403765117963, 41.73437197161892 ], [ -70.290858212666521, 41.73437197161892 ], [ -70.290858212666521, 41.734170279351041 ], [ -70.288403226635012, 41.732960125743773 ], [ -70.276946625154608, 41.727111049975278 ], [ -70.275309967800268, 41.726304280903761 ], [ -70.275309967800268, 41.726102588635882 ], [ -70.27503719157454, 41.726102588635882 ], [ -70.274218862897357, 41.724489050492849 ], [ -70.272309429317289, 41.72126197420679 ], [ -70.263853366319864, 41.714202744831027 ], [ -70.263580590094136, 41.714202744831027 ], [ -70.26303503764268, 41.714001052563148 ], [ -70.261398380288341, 41.714001052563148 ], [ -70.259216170482546, 41.714001052563148 ], [ -70.256488408225309, 41.716219667509819 ], [ -70.252669541065174, 41.719245051527999 ], [ -70.251851212388004, 41.720051820599515 ], [ -70.250760107485107, 41.720858589671032 ], [ -70.24803234522787, 41.723077204617695 ], [ -70.247486792776414, 41.723480589153453 ], [ -70.246941240324972, 41.723883973689212 ], [ -70.237394072424635, 41.731548279868619 ], [ -70.234939086393126, 41.73356520254741 ], [ -70.234939086393126, 41.733766894815282 ], [ -70.225937470944231, 41.738204124708616 ], [ -70.22539191849279, 41.738405816976496 ], [ -70.224573589815606, 41.738809201512254 ], [ -70.224028037364164, 41.739010893780133 ], [ -70.220754722655471, 41.740624431923166 ], [ -70.216663079269608, 41.742641354601957 ], [ -70.216117526818167, 41.743044739137716 ], [ -70.198114295920391, 41.74909550717409 ], [ -70.197568743468935, 41.749297199441969 ], [ -70.193204323857358, 41.750709045317116 ], [ -70.189385456697224, 41.751919198924391 ], [ -70.18911268047151, 41.751919198924391 ], [ -70.182020498602682, 41.750910737584995 ], [ -70.176564974088194, 41.75212089119227 ], [ -70.15910729564186, 41.756154736549846 ], [ -70.143831827001321, 41.759583505103791 ], [ -70.143559050775607, 41.759583505103791 ], [ -70.14164961719554, 41.759986889639549 ], [ -70.14164961719554, 41.759986889639549 ], [ -70.140285736066915, 41.759986889639549 ], [ -70.135921316455338, 41.75978519737167 ], [ -70.129101910812238, 41.759381812835912 ], [ -70.124464714974934, 41.758978428300153 ], [ -70.124191938749206, 41.758978428300153 ], [ -70.122009728943425, 41.758776736032274 ], [ -70.122009728943425, 41.758776736032274 ], [ -70.116008651977495, 41.760591966443187 ], [ -70.115190323300311, 41.760995350978945 ], [ -70.109189246334395, 41.762608889121978 ], [ -70.097732644853991, 41.766037657675916 ], [ -70.097732644853991, 41.766037657675916 ], [ -70.096641539951094, 41.766239349943795 ], [ -70.096095987499638, 41.766642734479554 ], [ -70.086276043373587, 41.768457964890466 ], [ -70.081911623762011, 41.769466426229862 ], [ -70.067727260024355, 41.772290117980162 ], [ -70.065272273992846, 41.772693502515921 ], [ -70.064181169089949, 41.7728951947838 ], [ -70.060635078155542, 41.774105348391075 ], [ -70.034448560486041, 41.783786577249266 ], [ -70.033903008034599, 41.783988269517145 ], [ -70.033357455583143, 41.784189961785025 ], [ -70.02462861635999, 41.787417038071084 ], [ -70.02462861635999, 41.787417038071084 ], [ -70.022991959005637, 41.788627191678358 ], [ -70.022719182779923, 41.789030576214117 ], [ -70.022446406554195, 41.789232268481996 ], [ -70.009898700170879, 41.799518574143825 ], [ -70.008807595267996, 41.800527035483221 ], [ -70.008534819042268, 41.8007287277511 ], [ -70.003897623204963, 41.808594726198379 ], [ -70.004443175656405, 41.838848566380221 ], [ -70.009080371493724, 41.876565020473592 ], [ -70.000078756044829, 41.886851326135414 ], [ -70.002806518302066, 41.890280094689359 ], [ -70.012080909976675, 41.891691940564513 ], [ -70.024355840134263, 41.898751169940269 ], [ -70.025446945037146, 41.911659475084527 ], [ -70.030629693325906, 41.929206702389997 ], [ -70.045086833289275, 41.930013471461514 ], [ -70.054361224963884, 41.927391471979085 ], [ -70.06554505021856, 41.911659475084527 ], [ -70.065817826444288, 41.899557939011785 ], [ -70.065272273992846, 41.88765809520693 ], [ -70.064181169089949, 41.878985327688135 ], [ -70.066090602670016, 41.87696840500935 ], [ -70.067454483798628, 41.877775174080867 ], [ -70.071000574733048, 41.88301917304571 ], [ -70.072910008313116, 41.899759631279665 ], [ -70.074001113216013, 41.93868623898031 ], [ -70.07754720415042, 41.985478845128227 ], [ -70.083821057342078, 42.012102224488245 ], [ -70.08954935808228, 42.024808837364624 ], [ -70.095550435048196, 42.032876528079782 ], [ -70.108098141431498, 42.043566218277363 ], [ -70.123100833846308, 42.051633908992528 ], [ -70.147377917935742, 42.061516830118592 ], [ -70.148196246612912, 42.06192021465435 ], [ -70.155288428481725, 42.062323599190108 ], [ -70.169745568445109, 42.05970159970768 ], [ -70.178474407668261, 42.05647452342162 ], [ -70.186930470665715, 42.050423755385253 ], [ -70.194568204985984, 42.039532372919787 ], [ -70.195386533663154, 42.034086681687057 ], [ -70.193204323857358, 42.027632529114925 ], [ -70.186384918214259, 42.021380068810686 ], [ -70.186657694439987, 42.019968222935532 ], [ -70.190749337825849, 42.019968222935532 ], [ -70.196750414791779, 42.022388530150074 ], [ -70.207934240046455, 42.030657913133112 ], [ -70.218572512849676, 42.045784833224033 ], [ -70.233302429038773, 42.057684677028895 ], [ -70.238757953553261, 42.060508368779196 ], [ -70.243667925616279, 42.060508368779196 ], [ -70.245304582970618, 42.063735445065262 ], [ -70.238212401101805, 42.072811597119816 ], [ -70.225664694718503, 42.078660672888304 ], [ -70.206843135143558, 42.081887749174371 ], [ -70.189385456697224, 42.082291133710129 ], [ -70.160198400544772, 42.078660672888304 ], [ -70.154197323578842, 42.077047134745271 ], [ -70.116008651977495, 42.067567598154966 ], [ -70.082729952439166, 42.054659293010708 ], [ -70.058452868349747, 42.040339141991304 ], [ -70.034721336711755, 42.018959761596136 ], [ -70.033630231808871, 42.017749607988861 ], [ -70.031175245777348, 42.014522531702795 ], [ -70.030084140874465, 42.013110685827641 ], [ -70.029538588423009, 42.012505609024004 ], [ -70.016172553362537, 41.995361766254291 ], [ -70.013990343556742, 41.99253807450399 ], [ -70.013990343556742, 41.992336382236111 ], [ -70.012080909976675, 41.989714382753689 ], [ -70.011808133750947, 41.989714382753689 ], [ -70.010444252622335, 41.987495767807019 ], [ -70.005807056785031, 41.980033153895491 ], [ -70.005534280559303, 41.979629769359732 ], [ -70.005261504333589, 41.979428077091853 ], [ -70.004715951882133, 41.978419615752458 ], [ -70.004170399430677, 41.977814538948827 ], [ -69.986167168532916, 41.949779313713648 ], [ -69.986167168532916, 41.949577621445769 ], [ -69.985894392307188, 41.94937592917789 ], [ -69.968709490086582, 41.911659475084527 ], [ -69.945250734674318, 41.845302718952354 ], [ -69.935976342999709, 41.809401495269896 ], [ -69.928611384905167, 41.741229508726803 ], [ -69.928338608679439, 41.69806736340071 ], [ -69.928338608679439, 41.697663978864952 ], [ -69.928338608679439, 41.69342844123949 ], [ -69.928338608679439, 41.692218287632215 ], [ -69.928338608679439, 41.692218287632215 ], [ -69.928338608679439, 41.691613210828578 ], [ -69.928611384905167, 41.689596288149787 ], [ -69.929429713582323, 41.686772596399486 ], [ -69.929429713582323, 41.686369211863727 ], [ -69.930793594710963, 41.679915059291602 ], [ -69.933248580742458, 41.670032138165531 ], [ -69.933248580742458, 41.670032138165531 ], [ -69.934066909419641, 41.668216907754626 ], [ -69.942795748642808, 41.653695064467335 ], [ -69.94334130109425, 41.652484910860068 ], [ -69.947705720705841, 41.645425681484298 ], [ -69.951251811640248, 41.640786759323085 ], [ -69.951797364091703, 41.640585067055206 ], [ -69.952888468994587, 41.640383374787326 ], [ -69.953979573897485, 41.640181682519447 ], [ -69.95698011238045, 41.639778297983689 ], [ -69.958343993509061, 41.639374913447931 ], [ -69.963253965572108, 41.633727529947322 ], [ -69.967891161409398, 41.627475069643069 ], [ -69.976347224406851, 41.603675382033359 ], [ -69.982893853824223, 41.581892617102426 ], [ -69.988349378338697, 41.554664160938771 ], [ -69.988622154564425, 41.554462468670891 ], [ -69.996532665110408, 41.54538631661633 ], [ -69.998169322464761, 41.543571086205425 ], [ -69.998987651141931, 41.543369393937546 ], [ -70.003897623204963, 41.542159240330271 ], [ -70.004170399430677, 41.542159240330271 ], [ -70.004443175656405, 41.542159240330271 ], [ -70.011262581299505, 41.542966009401788 ], [ -70.011535357525233, 41.542966009401788 ], [ -70.011808133750947, 41.543167701669667 ], [ -70.014535896008198, 41.545588008884209 ], [ -70.016718105813993, 41.550832007849067 ], [ -70.01508144845964, 41.553050622795737 ], [ -70.011535357525233, 41.552848930527858 ], [ -70.010717028848063, 41.552647238259979 ], [ -70.008807595267996, 41.554462468670891 ], [ -70.001442637173454, 41.561925082582405 ], [ -70.001169860947726, 41.562530159386043 ], [ -70.000897084721998, 41.56313523618968 ], [ -70.00062430849627, 41.563740312993318 ], [ -69.994350455304627, 41.576850310405455 ], [ -69.99162269304739, 41.588548461942437 ], [ -69.987258273435799, 41.608515996462451 ], [ -69.986985497210071, 41.60871768873033 ], [ -69.982893853824223, 41.618398917588522 ], [ -69.980438867792714, 41.62404630108913 ], [ -69.977438329309734, 41.630903838197014 ], [ -69.976892776858293, 41.632113991804289 ], [ -69.976620000632579, 41.632719068607926 ], [ -69.975528895729667, 41.635139375822476 ], [ -69.975256119503953, 41.635946144893992 ], [ -69.973073909698158, 41.640988451590964 ], [ -69.973073909698158, 41.641190143858843 ], [ -69.973073909698158, 41.647039219627331 ], [ -69.975801671955395, 41.653695064467335 ], [ -69.975801671955395, 41.653896756735215 ], [ -69.990531588144492, 41.663376293325527 ], [ -69.990804364370206, 41.663376293325527 ], [ -69.990804364370206, 41.663577985593406 ], [ -69.990804364370206, 41.663577985593406 ], [ -69.990804364370206, 41.663577985593406 ], [ -69.996259888884694, 41.667006754147351 ], [ -69.996259888884694, 41.667208446415231 ], [ -69.996532665110408, 41.667208446415231 ], [ -70.002806518302066, 41.669830445897652 ], [ -70.003079294527794, 41.669830445897652 ], [ -70.006898161687928, 41.671443984040685 ], [ -70.006898161687928, 41.671645676308565 ], [ -70.007170937913656, 41.671645676308565 ], [ -70.01426311978247, 41.672049060844323 ], [ -70.015899777136809, 41.671443984040685 ], [ -70.02108252542557, 41.670032138165531 ], [ -70.028993035971553, 41.667813523218868 ], [ -70.029265812197281, 41.667813523218868 ], [ -70.029265812197281, 41.667813523218868 ], [ -70.037176322743278, 41.666805061879472 ], [ -70.037176322743278, 41.666805061879472 ], [ -70.037721875194734, 41.666805061879472 ], [ -70.055452329866782, 41.664788139200681 ], [ -70.089276581856552, 41.66277121652189 ], [ -70.11982751913763, 41.655510294878248 ], [ -70.120918624040513, 41.655308602610368 ], [ -70.121464176491969, 41.655106910342489 ], [ -70.122555281394867, 41.65490521807461 ], [ -70.122555281394867, 41.654703525806731 ], [ -70.13483021155244, 41.65187983405643 ], [ -70.140285736066915, 41.650669680449155 ], [ -70.140285736066915, 41.650669680449155 ], [ -70.140558512292642, 41.650467988181276 ], [ -70.14083128851837, 41.650467988181276 ], [ -70.141104064744098, 41.650467988181276 ], [ -70.141104064744098, 41.650467988181276 ], [ -70.14246794587271, 41.650467988181276 ], [ -70.146014036807117, 41.650467988181276 ], [ -70.147105141710028, 41.650467988181276 ], [ -70.14846902283864, 41.650467988181276 ], [ -70.158561743190432, 41.650467988181276 ], [ -70.191022114051577, 41.645223989216419 ], [ -70.245850135422074, 41.628483530982464 ], [ -70.256215631999595, 41.620617532535192 ], [ -70.255397303322411, 41.617592148517005 ], [ -70.259488946708274, 41.610936303676993 ], [ -70.265490023674204, 41.60932276553396 ], [ -70.267672233479999, 41.610936303676993 ], [ -70.269581667060066, 41.617793840784884 ], [ -70.26903611460861, 41.625659839232156 ], [ -70.274491639123084, 41.632920760875805 ], [ -70.281311044766184, 41.635139375822476 ], [ -70.290585436440807, 41.635139375822476 ], [ -70.321681926173326, 41.630500453661256 ], [ -70.329865212945037, 41.634534299018839 ], [ -70.338048499716763, 41.636349529429751 ], [ -70.351687311002962, 41.634735991286718 ], [ -70.360416150226115, 41.631105530464893 ], [ -70.364780569837706, 41.626668300571552 ], [ -70.364780569837706, 41.623642916553372 ], [ -70.369963318126452, 41.615978610373972 ], [ -70.37923770980106, 41.611339688212752 ], [ -70.400514255407529, 41.60629738151578 ], [ -70.401059807858985, 41.60649907378366 ], [ -70.408424765953527, 41.607305842855176 ], [ -70.413880290468001, 41.606902458319418 ], [ -70.437339045880265, 41.605288920176385 ], [ -70.437884598331721, 41.604280458836996 ], [ -70.440612360588943, 41.599843228943655 ], [ -70.442249017943297, 41.597019537193347 ], [ -70.444431227749078, 41.593389076371523 ], [ -70.445249556426262, 41.591775538228497 ], [ -70.446613437554873, 41.590162000085463 ], [ -70.450432304715008, 41.58552307792425 ], [ -70.45616060545521, 41.578262156280601 ], [ -70.457251710358108, 41.576648618137575 ], [ -70.461070577518242, 41.572009695976362 ], [ -70.46134335374397, 41.571808003708483 ], [ -70.461888906195412, 41.571202926904846 ], [ -70.46216168242114, 41.571001234636967 ], [ -70.46216168242114, 41.571001234636967 ], [ -70.472799955224374, 41.561521698046647 ], [ -70.473345507675816, 41.561118313510896 ], [ -70.476346046158781, 41.558496314028467 ], [ -70.476346046158781, 41.558496314028467 ], [ -70.476346046158781, 41.558496314028467 ], [ -70.483438228027609, 41.555269237742408 ], [ -70.485074885381948, 41.554462468670891 ], [ -70.485620437833404, 41.554260776403012 ], [ -70.486711542736288, 41.553857391867254 ], [ -70.493258172153674, 41.552042161456342 ], [ -70.521899675854684, 41.549016777438155 ], [ -70.522445228306125, 41.549016777438155 ], [ -70.531719619980748, 41.548815085170276 ], [ -70.559542795004575, 41.548411700634517 ], [ -70.559815571230303, 41.548411700634517 ], [ -70.559815571230303, 41.548411700634517 ], [ -70.5609066761332, 41.548210008366638 ], [ -70.561179452358914, 41.548210008366638 ], [ -70.573999934967944, 41.546798162491484 ], [ -70.588457074931313, 41.54538631661633 ], [ -70.588457074931313, 41.54538631661633 ], [ -70.588729851157041, 41.54538631661633 ], [ -70.589002627382769, 41.54538631661633 ], [ -70.58954817983421, 41.545184624348451 ], [ -70.596640361703038, 41.544579547544821 ], [ -70.611097501666393, 41.542966009401788 ], [ -70.611097501666393, 41.542966009401788 ], [ -70.61300693524646, 41.542562624866029 ], [ -70.614370816375086, 41.54236093259815 ], [ -70.616825802406595, 41.541755855794513 ], [ -70.617098578632323, 41.541755855794513 ], [ -70.617644131083779, 41.541554163526634 ], [ -70.617916907309507, 41.541554163526634 ], [ -70.633737928401487, 41.538327087240575 ], [ -70.633737928401487, 41.538125394972695 ], [ -70.633737928401487, 41.538125394972695 ], [ -70.643557872527538, 41.5322763192042 ], [ -70.650104501944924, 41.524208628489049 ], [ -70.650104501944924, 41.52400693622117 ], [ -70.651468383073535, 41.522191705810258 ], [ -70.652013935524991, 41.52158662900662 ], [ -70.654196145330786, 41.518964629524191 ], [ -70.654196145330786, 41.518964629524191 ], [ -70.663743313231123, 41.514124015095092 ], [ -70.669471613971325, 41.513317246023576 ], [ -70.675472690937241, 41.512712169219945 ], [ -70.705205299541149, 41.496576787789628 ], [ -70.734392355693615, 41.486290482127799 ], [ -70.757305558654423, 41.469953408429603 ], [ -70.756487229977239, 41.465919563072021 ], [ -70.76085164958883, 41.460877256375056 ], [ -70.790311481967009, 41.446355413087765 ], [ -70.817589104539394, 41.445548644016249 ], [ -70.835865111662912, 41.441918183194431 ], [ -70.857414433495094, 41.425782801764115 ], [ -70.866961601395431, 41.422354033210169 ], [ -70.902695286965269, 41.421143879602894 ], [ -70.928063475957586, 41.415698188370165 ], [ -70.937337867632209, 41.411664343012589 ], [ -70.948521692886885, 41.409244035798039 ], [ -70.950976678918408, 41.411866035280468 ], [ -70.949885574015497, 41.415294803834406 ], [ -70.928063475957586, 41.431228492996844 ], [ -70.92369905634601, 41.430623416193207 ], [ -70.919061860508691, 41.425379417228356 ], [ -70.91169690241415, 41.42457264815684 ], [ -70.905968601673948, 41.425782801764115 ], [ -70.883328174938868, 41.43223695433624 ], [ -70.855232223689313, 41.448977412570187 ], [ -70.82850015356837, 41.456440026481715 ], [ -70.802313635898855, 41.460877256375056 ], [ -70.7878564959355, 41.474592330590824 ], [ -70.775308789552199, 41.477416022341124 ], [ -70.75403224394573, 41.492341250164174 ], [ -70.745030628496835, 41.501014017682962 ], [ -70.694839802963642, 41.525620474364196 ], [ -70.658560564942363, 41.543369393937546 ], [ -70.654196145330786, 41.55002523877755 ], [ -70.65528725023367, 41.557487852689071 ], [ -70.653923369105058, 41.565152158868472 ], [ -70.648740620816298, 41.569791081029692 ], [ -70.642739543850382, 41.572413080512121 ], [ -70.640830110270315, 41.577253694941206 ], [ -70.641921215173198, 41.583102770709701 ], [ -70.652559487976433, 41.605288920176385 ], [ -70.652013935524991, 41.610129534605477 ], [ -70.640011781593131, 41.624651377892768 ], [ -70.645194529881891, 41.633525837679443 ], [ -70.652559487976433, 41.637761375304898 ], [ -70.650377278170652, 41.644215527877023 ], [ -70.63864790046452, 41.649459526841881 ], [ -70.637556795561622, 41.654501833538852 ], [ -70.646285634784789, 41.678503213416448 ], [ -70.64928617326774, 41.680923520630998 ], [ -70.661561103425328, 41.681730289702514 ], [ -70.646012858559061, 41.693831825775248 ], [ -70.625554641629776, 41.698672440204348 ], [ -70.623645208049709, 41.707345207723137 ], [ -70.62664574653266, 41.712992591223752 ], [ -70.643012320076096, 41.718438282456482 ], [ -70.64464897743045, 41.71904335926012 ], [ -70.651195606847807, 41.715614590706181 ], [ -70.656651131362295, 41.715412898438302 ], [ -70.670562718874208, 41.72186705101042 ], [ -70.708205838024114, 41.730943203064982 ], [ -70.718844110827348, 41.735783817494074 ], [ -70.726209068921889, 41.732758433475894 ], [ -70.728936831179141, 41.723480589153453 ], [ -70.721299096858871, 41.712992591223752 ], [ -70.717480229698737, 41.694033518043128 ], [ -70.719662439504518, 41.684957365988581 ], [ -70.729482383630568, 41.68818444227464 ], [ -70.744485076045393, 41.697058902061315 ], [ -70.755396125074355, 41.694235210311007 ], [ -70.761397202040285, 41.676889675273415 ], [ -70.761397202040285, 41.676687983005536 ], [ -70.762488306943169, 41.667813523218868 ], [ -70.758123887331593, 41.661157678378856 ], [ -70.757578334880151, 41.654300141270973 ], [ -70.765488845426134, 41.641593528394594 ], [ -70.769307712586269, 41.641190143858843 ], [ -70.773672132197845, 41.64502229694854 ], [ -70.77585434200364, 41.649056142306122 ], [ -70.776672670680824, 41.650669680449155 ], [ -70.809133041541969, 41.656518756217643 ], [ -70.813224684927818, 41.655711987146127 ], [ -70.815679670959327, 41.652888295395826 ], [ -70.816225223410783, 41.646030758287935 ], [ -70.804768621930378, 41.641190143858843 ], [ -70.800131426093074, 41.631710607268531 ], [ -70.800949754770244, 41.62949199232186 ], [ -70.810224146444853, 41.624853070160647 ], [ -70.835319559211456, 41.624449685624889 ], [ -70.843230069757453, 41.628483530982464 ], [ -70.843502845983181, 41.628685223250343 ], [ -70.843502845983181, 41.628685223250343 ], [ -70.844048398434623, 41.628886915518223 ], [ -70.852504461432062, 41.626869992839431 ], [ -70.854959447463585, 41.62424799335701 ], [ -70.855232223689313, 41.62404630108913 ], [ -70.854141118786401, 41.618398917588522 ], [ -70.854141118786401, 41.618398917588522 ], [ -70.853322790109246, 41.613558303159422 ], [ -70.850049475400553, 41.593590768639402 ], [ -70.852231685206334, 41.589153538746075 ], [ -70.852504461432062, 41.588750154210317 ], [ -70.852504461432062, 41.588548461942437 ], [ -70.853050013883518, 41.587338308335163 ], [ -70.853322790109246, 41.587338308335163 ], [ -70.857141657269381, 41.587741692870921 ], [ -70.862869958009583, 41.600649998015172 ], [ -70.862869958009583, 41.60105338255093 ], [ -70.863415510461024, 41.602061843890326 ], [ -70.868598258749785, 41.613759995427301 ], [ -70.868871034975498, 41.614566764498818 ], [ -70.868325482524057, 41.622634455213976 ], [ -70.869689363652668, 41.625659839232156 ], [ -70.872689902135633, 41.627878454178827 ], [ -70.878963755327277, 41.629693684589739 ], [ -70.887692594550458, 41.632517376340047 ], [ -70.889329251904798, 41.632920760875805 ], [ -70.889329251904798, 41.632920760875805 ], [ -70.889602028130525, 41.632719068607926 ], [ -70.904604720545336, 41.62424799335701 ], [ -70.90569582544822, 41.623441224285493 ], [ -70.913333559768489, 41.619205686660038 ], [ -70.904604720545336, 41.610331226873356 ], [ -70.899967524708018, 41.593590768639402 ], [ -70.901331405836643, 41.592582307300013 ], [ -70.91087857373698, 41.595405999050314 ], [ -70.916606874477182, 41.607507535123055 ], [ -70.920152965411603, 41.610734611409114 ], [ -70.927245147280416, 41.611339688212752 ], [ -70.92970013331194, 41.60952445780184 ], [ -70.929972909537653, 41.600448305747292 ], [ -70.927517923506144, 41.59399415317516 ], [ -70.931336790666279, 41.584111232049096 ], [ -70.937883420083651, 41.577455387209085 ], [ -70.941702287243785, 41.581085848030909 ], [ -70.946885035532546, 41.581085848030909 ], [ -70.948794469112613, 41.579068925352118 ], [ -70.947430587983987, 41.573623234119388 ], [ -70.937883420083651, 41.565152158868472 ], [ -70.931609566892007, 41.540142317651487 ], [ -70.941702287243785, 41.540142317651487 ], [ -70.979345406393691, 41.530461088793288 ], [ -70.983437049779553, 41.520578167667225 ], [ -71.003349714257382, 41.511905400148429 ], [ -71.019443511575105, 41.508880016130249 ], [ -71.023535154960967, 41.50625801664782 ], [ -71.035537308892813, 41.498997095004171 ], [ -71.058450511853621, 41.506056324379941 ], [ -71.085728134426006, 41.509283400666 ], [ -71.120643491318674, 41.497383556861138 ], [ -71.133463973927689, 41.62949199232186 ], [ -71.133736750153417, 41.632113991804289 ], [ -71.133736750153417, 41.63413091448308 ], [ -71.134555078830601, 41.641190143858843 ], [ -71.134555078830601, 41.641190143858843 ], [ -71.134555078830601, 41.660552601575219 ], [ -71.135100631282043, 41.660552601575219 ], [ -71.145738904085277, 41.66277121652189 ], [ -71.153922190856989, 41.664183062397043 ], [ -71.176017065140627, 41.668015215486747 ], [ -71.176017065140627, 41.668418600022505 ], [ -71.176017065140627, 41.671443984040685 ], [ -71.181199813429373, 41.672452445380081 ], [ -71.191292533781166, 41.674267675790986 ], [ -71.191292533781166, 41.674267675790986 ], [ -71.194293072264131, 41.674872752594624 ], [ -71.195656953392756, 41.675074444862503 ], [ -71.224844009545208, 41.710572284009203 ], [ -71.261396023792216, 41.752322583460149 ], [ -71.317860702517066, 41.776122271069866 ], [ -71.317860702517066, 41.776122271069866 ], [ -71.327953422868859, 41.780559500963207 ], [ -71.339410024349263, 41.806577803519588 ], [ -71.339682800574977, 41.831991029272338 ], [ -71.337500590769196, 41.833604567415371 ], [ -71.339410024349263, 41.893305478707546 ], [ -71.339410024349263, 41.893507170975425 ], [ -71.352776059409734, 41.896734247261485 ], [ -71.354685492989802, 41.896532554993605 ], [ -71.362596003535785, 41.89552409365421 ], [ -71.36477821334158, 41.895322401386331 ], [ -71.365323765793022, 41.895322401386331 ], [ -71.371052066533224, 41.894515632314814 ], [ -71.373779828790475, 41.894313940046935 ], [ -71.376507591047698, 41.893910555511184 ], [ -71.381690339336458, 41.922752549817872 ], [ -71.381690339336458, 41.922954242085751 ], [ -71.381417563110745, 41.96470454153669 ], [ -71.381417563110745, 41.966721464215482 ], [ -71.381417563110745, 41.985075460592469 ], [ -71.381417563110745, 42.018758069328257 ], [ -71.458067682539166, 42.017749607988861 ], [ -71.498165787720581, 42.017144531185224 ], [ -71.49980244507492, 42.017144531185224 ], [ -71.500893549977803, 42.017144531185224 ], [ -71.527352843873032, 42.015127608506432 ], [ -71.527625620098746, 42.014925916238553 ], [ -71.559540438508463, 42.014320839434916 ], [ -71.576998116954783, 42.014119147167037 ], [ -71.591182480692424, 42.013715762631278 ], [ -71.799310740919779, 42.00806837913067 ], [ -71.800674622048405, 42.023598683757349 ], [ -72.059812036486107, 42.027430836847046 ], [ -72.102092351473317, 42.029044374990079 ], [ -72.135643827237374, 42.030254528597354 ], [ -72.135643827237374, 42.030254528597354 ], [ -72.198927911605324, 42.03106129766887 ], [ -72.397509003932328, 42.033279912615541 ], [ -72.509074480253403, 42.034691758490695 ], [ -72.695926194874289, 42.036708681169486 ], [ -72.714202201997793, 42.036708681169486 ], [ -72.755936964533561, 42.036103604365849 ], [ -72.7575736218879, 42.020976684274927 ], [ -72.758119174339342, 42.020774992007048 ], [ -72.766029684885325, 42.007664994594911 ], [ -72.766848013562509, 42.003026072433698 ], [ -72.774758524108506, 42.002219303362182 ], [ -72.816766062869988, 41.997580381200962 ], [ -72.813492748161295, 42.036506988901607 ], [ -72.863683573694487, 42.037717142508882 ], [ -72.863683573694487, 42.037717142508882 ], [ -73.00880052577962, 42.039330680651908 ], [ -73.05326305057261, 42.039935757455545 ], [ -73.127185407743809, 42.041952680134337 ], [ -73.22974926861599, 42.044776371884637 ], [ -73.231113149744601, 42.044978064152517 ], [ -73.29303335298394, 42.046994986831308 ], [ -73.294397234112552, 42.046994986831308 ], [ -73.487250025699367, 42.049616986313737 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "38", "geo_id": "0400000US26", "fips_state": "26", "name": "Michigan", "iso_3166_2": "MI", "census": 9883640, "pop_estimataes_base": 9884133, "pop_2010": 9876498, "pop_2011": 9875736, "pop_2012": 9884781, "pop_2013": 9898193, "pop_2014": 9909877 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.566326853205823, 45.760149638482964 ], [ -85.549687503436658, 45.757325946732664 ], [ -85.543686426470728, 45.751476870964169 ], [ -85.535503139699017, 45.750468409624773 ], [ -85.525137643121496, 45.750468409624773 ], [ -85.506043307320823, 45.754703947250235 ], [ -85.501133335257805, 45.754502254982356 ], [ -85.497587244323384, 45.746232871999318 ], [ -85.503861097515028, 45.742804103445373 ], [ -85.508771069578074, 45.742400718909622 ], [ -85.510134950706686, 45.742804103445373 ], [ -85.508498293352346, 45.745022718392043 ], [ -85.509043845803788, 45.748451486945982 ], [ -85.515044922769718, 45.749459948285377 ], [ -85.520500447284206, 45.744821026124164 ], [ -85.521864328412818, 45.739375334891434 ], [ -85.52077322350992, 45.737156719944764 ], [ -85.510953279383855, 45.734333028194456 ], [ -85.498678349226282, 45.726265337479305 ], [ -85.494041153388977, 45.705289341619888 ], [ -85.494041153388977, 45.698431804512005 ], [ -85.502769992612144, 45.690969190600484 ], [ -85.506043307320823, 45.681086269474413 ], [ -85.503861097515028, 45.670396579276826 ], [ -85.500315006580621, 45.664345811240459 ], [ -85.490222286228843, 45.652042582899838 ], [ -85.48694897152015, 45.621183665914359 ], [ -85.49131339113174, 45.609687206645262 ], [ -85.509316622029516, 45.596375516965253 ], [ -85.518045461252683, 45.592946748411308 ], [ -85.526774300475836, 45.591534902536154 ], [ -85.530320391410257, 45.589316287589483 ], [ -85.534139258570391, 45.578223212856145 ], [ -85.541231440439219, 45.574996136570078 ], [ -85.561689657368504, 45.57217244481977 ], [ -85.618154336093355, 45.582660442749479 ], [ -85.622791531930659, 45.586089211303424 ], [ -85.629883713799487, 45.598190747376165 ], [ -85.619790993447708, 45.624612434468304 ], [ -85.608607168193018, 45.632075048379825 ], [ -85.604515524807169, 45.639335970023467 ], [ -85.605061077258611, 45.647605353006504 ], [ -85.609425496870188, 45.658093350936213 ], [ -85.604788301032883, 45.68189303854593 ], [ -85.600969433872748, 45.688952267921692 ], [ -85.59087671352097, 45.698028419976247 ], [ -85.583784531652142, 45.700852111726547 ], [ -85.572327930171738, 45.711541801924135 ], [ -85.565235748302911, 45.730702567372632 ], [ -85.564690195851469, 45.745426102927802 ], [ -85.567145181882978, 45.750468409624773 ], [ -85.567690734334434, 45.757729331268422 ], [ -85.566326853205823, 45.760149638482964 ] ] ], [ [ [ -88.684431889455894, 48.115713635041345 ], [ -88.675703050232727, 48.120352557202551 ], [ -88.676521378909911, 48.124789787095892 ], [ -88.674066392878387, 48.127210094310442 ], [ -88.656881490657781, 48.139311630383176 ], [ -88.614055623219116, 48.154841935009856 ], [ -88.578321937649292, 48.162304548921384 ], [ -88.546952671691045, 48.174809469529876 ], [ -88.524857797407407, 48.165329932939564 ], [ -88.501126265769415, 48.168153624689872 ], [ -88.491851874094806, 48.175414546333513 ], [ -88.482031929968741, 48.179851776226855 ], [ -88.459664279459389, 48.18388562158443 ], [ -88.447116573076087, 48.182877160245035 ], [ -88.42256671276094, 48.190944850960193 ], [ -88.418202293149363, 48.180456853030485 ], [ -88.419838950503703, 48.170775624172293 ], [ -88.427476684823972, 48.166741778814718 ], [ -88.449571559107596, 48.163313010260779 ], [ -88.459664279459389, 48.15847239583168 ], [ -88.469484223585454, 48.152825012331064 ], [ -88.485578020903162, 48.137698092240143 ], [ -88.512037314798391, 48.121764403077705 ], [ -88.566865336168888, 48.093729177842533 ], [ -88.578049161423564, 48.0844513335201 ], [ -88.578321937649292, 48.077997180947975 ], [ -88.575866951617769, 48.075173489197667 ], [ -88.573957518037702, 48.068921028893421 ], [ -88.575048622940614, 48.064080414464328 ], [ -88.579685818777904, 48.058634723231592 ], [ -88.669974749492525, 48.011438732547916 ], [ -88.718528917671392, 47.99510165884972 ], [ -88.772265834139006, 47.981184892366073 ], [ -88.791905722391121, 47.978966277419403 ], [ -88.832003827572535, 47.965251203203636 ], [ -88.853007596953276, 47.965251203203636 ], [ -88.89910677910062, 47.953351359398781 ], [ -88.917928338675566, 47.945687053219373 ], [ -88.923656639415768, 47.93802274703998 ], [ -88.962663639694284, 47.923500903752696 ], [ -88.968937492885942, 47.909382445001164 ], [ -88.968937492885942, 47.901718138821764 ], [ -88.958026443856994, 47.895465678517517 ], [ -88.942478198990727, 47.895465678517517 ], [ -88.899652331552062, 47.90252490789328 ], [ -88.89910677910062, 47.900709677482368 ], [ -88.911654485483922, 47.891431833159942 ], [ -88.998942877715564, 47.867430453282338 ], [ -89.022674409353556, 47.858555993495671 ], [ -89.044496507411466, 47.855732301745363 ], [ -89.056498661343312, 47.852505225459296 ], [ -89.10805336800513, 47.835764767225342 ], [ -89.124147165322853, 47.828705537849579 ], [ -89.157698641086881, 47.824066615688366 ], [ -89.190159011948026, 47.83152922959988 ], [ -89.192613997979549, 47.833344460010792 ], [ -89.192341221753821, 47.8410087661902 ], [ -89.201888389654158, 47.850286610512626 ], [ -89.234621536741031, 47.85169845638778 ], [ -89.235439865418215, 47.853715379066571 ], [ -89.234621536741031, 47.855328917209604 ], [ -89.228620459775101, 47.857950916692033 ], [ -89.246896466898619, 47.871060914104163 ], [ -89.250988110284467, 47.870455837300526 ], [ -89.25507975367033, 47.876103220801134 ], [ -89.247169243124333, 47.888406449141755 ], [ -89.22643824996932, 47.895465678517517 ], [ -89.220709949229118, 47.900911369750247 ], [ -89.22125550168056, 47.90797059912601 ], [ -89.214436096037474, 47.913819674894498 ], [ -89.179247962919078, 47.934997363021793 ], [ -89.095232885396115, 47.967873202686064 ], [ -89.018309989741965, 47.992479659367291 ], [ -88.994032905652546, 48.002362580493369 ], [ -88.940841541636388, 48.019506423263081 ], [ -88.931567149961765, 48.021725038209745 ], [ -88.927475506575902, 48.01970811553096 ], [ -88.914927800192601, 48.020716576870349 ], [ -88.895015135714758, 48.028985959853387 ], [ -88.896379016843383, 48.031809651603695 ], [ -88.893651254586132, 48.034835035621882 ], [ -88.83582269473267, 48.056819492820679 ], [ -88.816182806480555, 48.057021185088558 ], [ -88.810454505740353, 48.055205954677653 ], [ -88.787541302779545, 48.063071953124933 ], [ -88.771993057913278, 48.070534567036454 ], [ -88.77172028168755, 48.079409026823129 ], [ -88.764355323593009, 48.085258102591617 ], [ -88.744442659115151, 48.092720716503138 ], [ -88.728076085571729, 48.101998560825571 ], [ -88.705708435062363, 48.111074712880125 ], [ -88.695342938484856, 48.110469636076488 ], [ -88.684431889455894, 48.115713635041345 ] ] ], [ [ [ -84.593334056048604, 45.81743024256059 ], [ -84.594152384725774, 45.818842088435744 ], [ -84.597152923208739, 45.822674241525448 ], [ -84.611882839397822, 45.833363931723028 ], [ -84.611882839397822, 45.833565623990907 ], [ -84.612973944300734, 45.834574085330303 ], [ -84.623884993329682, 45.846675621403037 ], [ -84.629340517844156, 45.850104389956982 ], [ -84.639706014421677, 45.852524697171532 ], [ -84.650889839676353, 45.859180542011529 ], [ -84.651435392127809, 45.862811002833354 ], [ -84.64679819629049, 45.884593767764287 ], [ -84.641888224227472, 45.885400536835803 ], [ -84.629340517844156, 45.882576845085495 ], [ -84.622521112201071, 45.877534538388517 ], [ -84.608063972237687, 45.861600849226079 ], [ -84.602881223948941, 45.851717928100015 ], [ -84.589242412662742, 45.825699625543628 ], [ -84.578331363633794, 45.820052242043019 ], [ -84.538506034678107, 45.807749013702399 ], [ -84.514501726814387, 45.810169320916948 ], [ -84.492952404982205, 45.805328706487856 ], [ -84.432396082871492, 45.786773017842989 ], [ -84.42666778213129, 45.788184863718143 ], [ -84.421212257616816, 45.792622093611477 ], [ -84.419575600262476, 45.799883015255119 ], [ -84.421485033842544, 45.805732091023614 ], [ -84.419302824036748, 45.80674055236301 ], [ -84.410846761039309, 45.79726101577269 ], [ -84.403209026719026, 45.78435271062844 ], [ -84.356018739668798, 45.771847790019947 ], [ -84.356291515894526, 45.769427482805398 ], [ -84.370203103406439, 45.756115793125389 ], [ -84.372112536986506, 45.74582948746356 ], [ -84.394207411270145, 45.735341489533852 ], [ -84.395571292398756, 45.732921182319302 ], [ -84.393934635044417, 45.727677183354452 ], [ -84.405936788976277, 45.722433184389601 ], [ -84.41903004781102, 45.721626415318084 ], [ -84.429941096839983, 45.726265337479305 ], [ -84.450944866220723, 45.727878875622331 ], [ -84.469220873344227, 45.732316105515665 ], [ -84.484223565759038, 45.730702567372632 ], [ -84.500862915528188, 45.737358412212643 ], [ -84.507409544945574, 45.744619333856285 ], [ -84.509318978525641, 45.754300562714477 ], [ -84.525139999617636, 45.76418348384054 ], [ -84.549962636158511, 45.789798401861177 ], [ -84.561692013864629, 45.796252554433295 ], [ -84.5818774545682, 45.802706707005427 ], [ -84.587605755308402, 45.80674055236301 ], [ -84.590333517565639, 45.813194704935128 ], [ -84.593334056048604, 45.81743024256059 ] ] ], [ [ [ -86.093603297530137, 45.007837479294444 ], [ -86.11569817181379, 44.999164711775649 ], [ -86.133701402711552, 44.996946096828978 ], [ -86.154705172092292, 45.002391788061715 ], [ -86.15661460567236, 45.010459478776866 ], [ -86.154432395866579, 45.018123784956273 ], [ -86.141611913257549, 45.040309934422957 ], [ -86.138065822323142, 45.043133626173258 ], [ -86.117880381619571, 45.048377625138116 ], [ -86.093057745078696, 45.041520088030225 ], [ -86.079146157566782, 45.030830397832645 ], [ -86.093330521304409, 45.031637166904162 ], [ -86.097149388464544, 45.030225321029008 ], [ -86.100422703173251, 45.026191475671425 ], [ -86.101786584301863, 45.022762707117487 ], [ -86.101241031850407, 45.018123784956273 ], [ -86.093603297530137, 45.007837479294444 ] ] ], [ [ [ -86.033046975419438, 45.158501603400026 ], [ -86.006042129072767, 45.155677911649718 ], [ -85.993221646463752, 45.152854219899417 ], [ -85.989402779303617, 45.151038989488505 ], [ -85.976855072920301, 45.138332376612126 ], [ -85.97630952046886, 45.120785149306663 ], [ -85.980401163854708, 45.113120843127263 ], [ -85.984220031014843, 45.087102540570875 ], [ -85.982856149886231, 45.080850080266629 ], [ -85.977127849146029, 45.072984081819349 ], [ -85.976855072920301, 45.06269777615752 ], [ -85.9973132898496, 45.055840239049637 ], [ -86.013134310941581, 45.063706237496916 ], [ -86.019953716584695, 45.071572235944195 ], [ -86.037138618805301, 45.086497463767238 ], [ -86.05241408744584, 45.095371923553913 ], [ -86.058687940637483, 45.100817614786649 ], [ -86.060324597991823, 45.104649767876346 ], [ -86.064961793829127, 45.140349299290918 ], [ -86.059506269314653, 45.15224914309578 ], [ -86.050504653865772, 45.158501603400026 ], [ -86.044503576899842, 45.159510064739422 ], [ -86.033046975419438, 45.158501603400026 ] ] ], [ [ [ -83.4539477611998, 41.732556741208015 ], [ -83.497864733541363, 41.731749972136498 ], [ -83.49977416712143, 41.731548279868619 ], [ -83.503320258055837, 41.731548279868619 ], [ -83.504411362958734, 41.731548279868619 ], [ -83.585153125773019, 41.729329664921949 ], [ -83.593881964996172, 41.729127972654069 ], [ -83.595245846124797, 41.729127972654069 ], [ -83.636707832434837, 41.727917819046795 ], [ -83.639708370917788, 41.727716126778915 ], [ -83.665894888587289, 41.726909357707399 ], [ -83.68526200061369, 41.726505973171641 ], [ -83.763276001170738, 41.723883973689212 ], [ -83.880297002006287, 41.720051820599515 ], [ -83.880569778232015, 41.720051820599515 ], [ -84.360383159280389, 41.706941823187378 ], [ -84.396662397301668, 41.705933361847983 ], [ -84.399390159558891, 41.705731669580103 ], [ -84.399662935784619, 41.705731669580103 ], [ -84.438124383611694, 41.704924900508594 ], [ -84.806099512113263, 41.696050440721919 ], [ -84.806099512113263, 41.707546899991016 ], [ -84.806099512113263, 41.720455205135274 ], [ -84.806099512113263, 41.732960125743773 ], [ -84.806099512113263, 41.737599047904979 ], [ -84.806099512113263, 41.743044739137716 ], [ -84.818919994722279, 41.759986889639549 ], [ -84.825193847913937, 41.759986889639549 ], [ -84.825193847913937, 41.759986889639549 ], [ -84.932394904623436, 41.75978519737167 ], [ -84.960763632098718, 41.759381812835912 ], [ -84.961581960775902, 41.759583505103791 ], [ -84.971674681127666, 41.759583505103791 ], [ -84.972765786030578, 41.759381812835912 ], [ -85.037686527752868, 41.75978519737167 ], [ -85.039323185107207, 41.759986889639549 ], [ -85.11733718566424, 41.75978519737167 ], [ -85.123065486404442, 41.75978519737167 ], [ -85.172165207034752, 41.759583505103791 ], [ -85.196715067349913, 41.75978519737167 ], [ -85.196715067349913, 41.75978519737167 ], [ -85.232721529145465, 41.75978519737167 ], [ -85.272274081875423, 41.759986889639549 ], [ -85.272819634326879, 41.759986889639549 ], [ -85.273637963004049, 41.75978519737167 ], [ -85.292186746353281, 41.759986889639549 ], [ -85.292186746353281, 41.759986889639549 ], [ -85.298460599544939, 41.759986889639549 ], [ -85.308007767445275, 41.760188581907428 ], [ -85.318100487797039, 41.759986889639549 ], [ -85.330648194180355, 41.759986889639549 ], [ -85.350288082432471, 41.759986889639549 ], [ -85.379202362359209, 41.75978519737167 ], [ -85.427483754312334, 41.75978519737167 ], [ -85.432393726375381, 41.759583505103791 ], [ -85.515863251446888, 41.759381812835912 ], [ -85.518318237478411, 41.759583505103791 ], [ -85.60751606329012, 41.758978428300153 ], [ -85.608334391967304, 41.759180120568033 ], [ -85.622518755704931, 41.758978428300153 ], [ -85.624973741736454, 41.759180120568033 ], [ -85.632611476056724, 41.759180120568033 ], [ -85.647614168471534, 41.759180120568033 ], [ -85.650614706954514, 41.759180120568033 ], [ -85.659616322403394, 41.759180120568033 ], [ -85.724537064125684, 41.759180120568033 ], [ -85.749905253118015, 41.759180120568033 ], [ -85.750450805569457, 41.759180120568033 ], [ -85.775000665884619, 41.759180120568033 ], [ -85.791367239428041, 41.758978428300153 ], [ -85.791367239428041, 41.758978428300153 ], [ -85.872109002242325, 41.759381812835912 ], [ -85.875109540725276, 41.759381812835912 ], [ -85.888748352011476, 41.759381812835912 ], [ -85.974945639340234, 41.75978519737167 ], [ -85.974945639340234, 41.75978519737167 ], [ -85.991312212883685, 41.759986889639549 ], [ -86.003587143041244, 41.759986889639549 ], [ -86.062506807797618, 41.760188581907428 ], [ -86.124972563488399, 41.760591966443187 ], [ -86.12551811593984, 41.760591966443187 ], [ -86.127973101971349, 41.760591966443187 ], [ -86.217716480234515, 41.759986889639549 ], [ -86.226172543231968, 41.759986889639549 ], [ -86.226172543231968, 41.759986889639549 ], [ -86.265452319736212, 41.760188581907428 ], [ -86.501676531213121, 41.759583505103791 ], [ -86.519406985885183, 41.759381812835912 ], [ -86.524316957948201, 41.759381812835912 ], [ -86.639974077655154, 41.759583505103791 ], [ -86.641065182558037, 41.759583505103791 ], [ -86.746629581913197, 41.759986889639549 ], [ -86.747993463041809, 41.759986889639549 ], [ -86.800639274606539, 41.760188581907428 ], [ -86.800639274606539, 41.760188581907428 ], [ -86.801457603283708, 41.760188581907428 ], [ -86.804458141766673, 41.760188581907428 ], [ -86.823552477567347, 41.760188581907428 ], [ -86.824916358695958, 41.760188581907428 ], [ -86.823552477567347, 41.760995350978945 ], [ -86.80200315573515, 41.771886733444404 ], [ -86.801730379509422, 41.772088425712283 ], [ -86.794638197640609, 41.775718886534108 ], [ -86.794638197640609, 41.775718886534108 ], [ -86.793547092737711, 41.776323963337745 ], [ -86.777998847871459, 41.784391654052904 ], [ -86.777180519194275, 41.784795038588662 ], [ -86.776089414291391, 41.785400115392299 ], [ -86.774725533162751, 41.786206884463809 ], [ -86.751266777750502, 41.799720266411704 ], [ -86.735172980432793, 41.808998110734137 ], [ -86.717169749535017, 41.819284416395959 ], [ -86.715533092180664, 41.820292877735355 ], [ -86.697529861282902, 41.832596106075975 ], [ -86.67979940661084, 41.844495949880837 ], [ -86.679253854159384, 41.844697642148716 ], [ -86.648975693104035, 41.869707483365701 ], [ -86.647611811975423, 41.870715944705097 ], [ -86.645429602169628, 41.872732867383888 ], [ -86.644065721041002, 41.873741328723284 ], [ -86.644065721041002, 41.873741328723284 ], [ -86.629881357303361, 41.885237787992381 ], [ -86.629335804851905, 41.885641172528139 ], [ -86.623880280337431, 41.890280094689359 ], [ -86.623880280337431, 41.890280094689359 ], [ -86.621152518080194, 41.892297017368151 ], [ -86.619515860725855, 41.893910555511184 ], [ -86.617060874694346, 41.896532554993605 ], [ -86.616788098468618, 41.896734247261485 ], [ -86.615969769791434, 41.89774270860088 ], [ -86.612150902631299, 41.901978246226335 ], [ -86.612150902631299, 41.902179938494214 ], [ -86.611605350179858, 41.902785015297852 ], [ -86.610787021502688, 41.903591784369368 ], [ -86.600421524925181, 41.915289935906344 ], [ -86.597966538893672, 41.918315319924531 ], [ -86.59687543399076, 41.919928858067564 ], [ -86.588692147219049, 41.932433778676057 ], [ -86.58787381854188, 41.933643932283331 ], [ -86.58787381854188, 41.933845624551211 ], [ -86.586782713638982, 41.935257470426365 ], [ -86.585691608736084, 41.936871008569398 ], [ -86.585146056284643, 41.937476085373035 ], [ -86.582963846478847, 41.94110654619486 ], [ -86.582145517801678, 41.942316699802127 ], [ -86.581599965350222, 41.943728545677281 ], [ -86.564687839355344, 41.981444999770645 ], [ -86.564142286903888, 41.98245346111004 ], [ -86.564142286903888, 41.982856845645799 ], [ -86.563869510678174, 41.983260230181557 ], [ -86.56359673445246, 41.983865306985194 ], [ -86.561414524646665, 41.988504229146415 ], [ -86.556504552583618, 41.999798996147632 ], [ -86.556504552583618, 42.000000688415511 ], [ -86.549412370714805, 42.010892070880971 ], [ -86.549139594489077, 42.01109376314885 ], [ -86.545320727328942, 42.017144531185224 ], [ -86.5447751748775, 42.017749607988861 ], [ -86.541774636394535, 42.022590222417953 ], [ -86.540956307717366, 42.023598683757349 ], [ -86.536046335654333, 42.031262989936749 ], [ -86.533864125848538, 42.034691758490695 ], [ -86.533045797171368, 42.036103604365849 ], [ -86.532773020945655, 42.036506988901607 ], [ -86.532227468494199, 42.037313757973124 ], [ -86.508768713081935, 42.073013289387696 ], [ -86.501403754987393, 42.084509748656799 ], [ -86.490219929732717, 42.10508235998045 ], [ -86.485309957669685, 42.118192357392587 ], [ -86.479036104478041, 42.123436356357431 ], [ -86.466488398094739, 42.134126046555025 ], [ -86.466215621869011, 42.134327738822904 ], [ -86.464851740740386, 42.135739584698051 ], [ -86.464851740740386, 42.135739584698051 ], [ -86.464306188288944, 42.136344661501688 ], [ -86.46403341206323, 42.136748046037447 ], [ -86.463760635837502, 42.136949738305326 ], [ -86.440847432876694, 42.159942656843526 ], [ -86.439483551748069, 42.161152810450801 ], [ -86.437846894393715, 42.162766348593834 ], [ -86.43702856571656, 42.163371425397472 ], [ -86.404022642403959, 42.196448957329622 ], [ -86.402113208823891, 42.198465880008413 ], [ -86.398839894115213, 42.202096340830231 ], [ -86.398567117889485, 42.202499725365989 ], [ -86.397748789212301, 42.203508186705378 ], [ -86.395021026955078, 42.206533570723565 ], [ -86.394202698277894, 42.207340339795081 ], [ -86.393657145826452, 42.207945416598719 ], [ -86.393384369600724, 42.208147108866598 ], [ -86.386564963957625, 42.215811415045998 ], [ -86.385201082829013, 42.217223260921152 ], [ -86.383564425474674, 42.219240183599936 ], [ -86.383564425474674, 42.219240183599936 ], [ -86.381382215668879, 42.222063875350244 ], [ -86.380291110765981, 42.223274028957519 ], [ -86.380018334540253, 42.223879105761156 ], [ -86.365015642125442, 42.24303987120966 ], [ -86.356286802902275, 42.254132945942999 ], [ -86.321916998461063, 42.310808473216994 ], [ -86.297094361920188, 42.358206156168549 ], [ -86.284546655536886, 42.394510764386759 ], [ -86.285092207988328, 42.401771686030401 ], [ -86.276908921216616, 42.413268145299497 ], [ -86.273908382733651, 42.419318913335871 ], [ -86.261633452576078, 42.443925370017098 ], [ -86.249631298644232, 42.480229978235315 ], [ -86.241448011872507, 42.534686890562639 ], [ -86.240629683195337, 42.539930889527483 ], [ -86.235174158680849, 42.564940730744482 ], [ -86.235174158680849, 42.564940730744482 ], [ -86.234628606229407, 42.566352576619636 ], [ -86.234628606229407, 42.566755961155394 ], [ -86.231082515295, 42.575428728674183 ], [ -86.228081976812035, 42.583496419389348 ], [ -86.226172543231968, 42.592774263711775 ], [ -86.22589976700624, 42.593177648247533 ], [ -86.225626990780512, 42.594791186390566 ], [ -86.229173081714919, 42.63775163944878 ], [ -86.226718095683424, 42.645012561092429 ], [ -86.216079822880175, 42.664375018808805 ], [ -86.208714864785634, 42.692006859508226 ], [ -86.206805431205566, 42.71943700793976 ], [ -86.208442088559906, 42.762800845533739 ], [ -86.208987641011362, 42.767439767694952 ], [ -86.210897074591429, 42.783776841393149 ], [ -86.211715403268599, 42.833191447023495 ], [ -86.210624298365701, 42.859209749579882 ], [ -86.214170389300108, 42.883614513993237 ], [ -86.216079822880175, 42.918910660872058 ], [ -86.226172543231968, 42.988292801022418 ], [ -86.23271917264934, 43.015722949453959 ], [ -86.244175774129744, 43.049607250457619 ], [ -86.250176851095674, 43.057473248904898 ], [ -86.250449627321387, 43.066952785495211 ], [ -86.25454127070725, 43.083491551461286 ], [ -86.271998949153584, 43.118384313804341 ], [ -86.280727788376751, 43.135931541109812 ], [ -86.299003795500255, 43.166387073559534 ], [ -86.311278725657829, 43.186959684883192 ], [ -86.31182427810927, 43.187766453954708 ], [ -86.316188697720861, 43.19502737559835 ], [ -86.32982750900706, 43.21580167918988 ], [ -86.344557425196143, 43.23839121319233 ], [ -86.348649068582006, 43.244441981228697 ], [ -86.348921844807734, 43.244845365764455 ], [ -86.349740173484903, 43.246257211639602 ], [ -86.350012949710617, 43.24666059617536 ], [ -86.352195159516413, 43.249887672461426 ], [ -86.352195159516413, 43.250089364729305 ], [ -86.354377369322208, 43.253316441015372 ], [ -86.357923460256615, 43.258762132248101 ], [ -86.38274609679749, 43.296680278609344 ], [ -86.383837201700388, 43.298092124484498 ], [ -86.386019411506183, 43.301520893038443 ], [ -86.386292187731897, 43.301924277574201 ], [ -86.388474397537692, 43.305151353860261 ], [ -86.389292726214876, 43.306563199735415 ], [ -86.392020488472099, 43.310798737360869 ], [ -86.393384369600724, 43.312613967771782 ], [ -86.395839355632233, 43.316244428593606 ], [ -86.401567656372436, 43.327135811059065 ], [ -86.402931537501061, 43.329556118273615 ], [ -86.403477089952503, 43.330564579613011 ], [ -86.404840971081128, 43.33298488682756 ], [ -86.407841509564093, 43.33843057806029 ], [ -86.411933152949956, 43.347305037846965 ], [ -86.427481397816223, 43.380584262046995 ], [ -86.434846355910764, 43.395912874405795 ], [ -86.434846355910764, 43.396114566673674 ], [ -86.435119132136492, 43.396719643477311 ], [ -86.43539190836222, 43.39712302801307 ], [ -86.437846894393715, 43.403980565120953 ], [ -86.438119670619443, 43.404182257388833 ], [ -86.438392446845171, 43.40478733419247 ], [ -86.438937999296627, 43.406400872335496 ], [ -86.448485167196964, 43.431410713552495 ], [ -86.448757943422692, 43.432015790356132 ], [ -86.454486244162894, 43.449563017661596 ], [ -86.456122901517233, 43.45400024755493 ], [ -86.456941230194388, 43.456218862501601 ], [ -86.457486782645844, 43.458437477448271 ], [ -86.462123978483163, 43.472354243931917 ], [ -86.468670607900521, 43.49191839391618 ], [ -86.468670607900521, 43.49191839391618 ], [ -86.468943384126248, 43.492321778451938 ], [ -86.476853894672246, 43.510272390293167 ], [ -86.477399447123702, 43.511280851632563 ], [ -86.478763328252313, 43.514104543382864 ], [ -86.479308880703769, 43.515314696990139 ], [ -86.479581656929483, 43.515718081525897 ], [ -86.481218314283836, 43.518138388740439 ], [ -86.481763866735278, 43.518945157811956 ], [ -86.481763866735278, 43.519146850079835 ], [ -86.48230941918672, 43.519751926883472 ], [ -86.483127747863904, 43.520962080490747 ], [ -86.483127747863904, 43.520962080490747 ], [ -86.505768174598984, 43.555048073762293 ], [ -86.509314265533391, 43.560292072727151 ], [ -86.509314265533391, 43.56049376499503 ], [ -86.512314804016356, 43.564930994888364 ], [ -86.514224237596423, 43.567754686638665 ], [ -86.515042566273593, 43.569166532513819 ], [ -86.515860894950762, 43.570174993853215 ], [ -86.516406447402204, 43.570780070656852 ], [ -86.516679223627932, 43.571586839728369 ], [ -86.517497552305116, 43.572595301067764 ], [ -86.518588657207999, 43.574410531478676 ], [ -86.519952538336625, 43.576225761889589 ], [ -86.520225314562339, 43.576629146425347 ], [ -86.520225314562339, 43.576830838693226 ], [ -86.529499706236962, 43.593369604659301 ], [ -86.537955769234401, 43.615959138661736 ], [ -86.538501321685857, 43.61757267680477 ], [ -86.53877409791157, 43.619992984019319 ], [ -86.539046874137298, 43.620194676287198 ], [ -86.539046874137298, 43.621404829894473 ], [ -86.539319650363012, 43.622614983501748 ], [ -86.539319650363012, 43.622816675769627 ], [ -86.540956307717366, 43.633102981431449 ], [ -86.540956307717366, 43.634111442770845 ], [ -86.540956307717366, 43.634918211842361 ], [ -86.540683531491638, 43.642582518021761 ], [ -86.540683531491638, 43.644599440700553 ], [ -86.540683531491638, 43.645406209772069 ], [ -86.53877409791157, 43.657104361309052 ], [ -86.538501321685857, 43.658717899452078 ], [ -86.538228545460129, 43.659322976255716 ], [ -86.529772482462675, 43.676870203561187 ], [ -86.529226930011234, 43.677878664900582 ], [ -86.527590272656894, 43.679492203043608 ], [ -86.526771943979725, 43.680500664383004 ], [ -86.51777032853083, 43.690383585509075 ], [ -86.51613367117649, 43.692198815919987 ], [ -86.514497013822137, 43.694215738598771 ], [ -86.51095092288773, 43.697846199420596 ], [ -86.510405370436288, 43.698652968492112 ], [ -86.507677608179051, 43.701073275706662 ], [ -86.506586503276154, 43.702081737046058 ], [ -86.504677069696086, 43.70389696745697 ], [ -86.503313188567461, 43.705308813332124 ], [ -86.503040412341733, 43.705510505600003 ], [ -86.501949307438849, 43.706518966939392 ], [ -86.496221006698647, 43.711762965904242 ], [ -86.48831049615265, 43.719023887547891 ], [ -86.486946615024038, 43.720435733423045 ], [ -86.481763866735278, 43.725074655584258 ], [ -86.480672761832381, 43.726486501459405 ], [ -86.480672761832381, 43.726486501459405 ], [ -86.480399985606653, 43.726889885995163 ], [ -86.463487859611774, 43.744638805568513 ], [ -86.461578426031707, 43.746655728247305 ], [ -86.460487321128809, 43.748269266390338 ], [ -86.445484628713984, 43.77085880039278 ], [ -86.445211852488271, 43.771463877196418 ], [ -86.444939076262557, 43.772068954000055 ], [ -86.442756866456762, 43.776909568429147 ], [ -86.437846894393715, 43.78860771996613 ], [ -86.437301341942288, 43.789414489037647 ], [ -86.43102748875063, 43.815634483861913 ], [ -86.43102748875063, 43.816037868397672 ], [ -86.43102748875063, 43.819264944683731 ], [ -86.43102748875063, 43.81946663695161 ], [ -86.431300264976358, 43.836610479721323 ], [ -86.431300264976358, 43.83721555652496 ], [ -86.431300264976358, 43.838022325596476 ], [ -86.431300264976358, 43.840644325078898 ], [ -86.431300264976358, 43.840846017346777 ], [ -86.432936922330697, 43.849922169401339 ], [ -86.433482474782153, 43.853149245687398 ], [ -86.43402802723358, 43.85556955290194 ], [ -86.43402802723358, 43.856174629705578 ], [ -86.434300803459308, 43.856578014241336 ], [ -86.435119132136492, 43.858796629188006 ], [ -86.445484628713984, 43.889655546173486 ], [ -86.445757404939712, 43.892882622459553 ], [ -86.44603018116544, 43.895302929674102 ], [ -86.446575733616896, 43.901353697710469 ], [ -86.447939614745508, 43.918094155944424 ], [ -86.447939614745508, 43.918497540480182 ], [ -86.448212390971236, 43.918900925015933 ], [ -86.449576272099847, 43.923741539445032 ], [ -86.451212929454186, 43.929792307481407 ], [ -86.454486244162894, 43.940683689946866 ], [ -86.462669530934605, 43.969727376521433 ], [ -86.463215083386046, 43.970735837860829 ], [ -86.463215083386046, 43.970937530128708 ], [ -86.463215083386046, 43.971139222396587 ], [ -86.48149109050955, 43.998569370828129 ], [ -86.483400524089618, 44.001191370310551 ], [ -86.484491628992515, 44.002401523917825 ], [ -86.501676531213121, 44.021965673902088 ], [ -86.503040412341733, 44.023780904313 ], [ -86.504131517244645, 44.025596134723912 ], [ -86.504404293470358, 44.02599951925967 ], [ -86.508768713081935, 44.032655364099668 ], [ -86.514769790047865, 44.047983976458468 ], [ -86.514769790047865, 44.057665205316667 ], [ -86.514769790047865, 44.058068589852425 ], [ -86.514497013822137, 44.058270282120304 ], [ -86.509041489307663, 44.067346434174851 ], [ -86.508768713081935, 44.067951510978489 ], [ -86.508495936856221, 44.068153203246368 ], [ -86.501130978761665, 44.074809048086379 ], [ -86.500585426310224, 44.075615817157889 ], [ -86.497857664052987, 44.077027663033043 ], [ -86.469216160351976, 44.093364736731239 ], [ -86.454759020388607, 44.101432427446397 ], [ -86.44766683851978, 44.10546627280398 ], [ -86.447121286068338, 44.105869657339738 ], [ -86.446848509842624, 44.105869657339738 ], [ -86.446575733616896, 44.106273041875497 ], [ -86.429936383847732, 44.119786423823385 ], [ -86.426935845364767, 44.123013500109451 ], [ -86.425844740461869, 44.124223653716719 ], [ -86.4250264117847, 44.125030422788235 ], [ -86.421480320850293, 44.128862575877932 ], [ -86.421207544624565, 44.129467652681569 ], [ -86.40074932769528, 44.156897801113111 ], [ -86.397748789212301, 44.161335031006445 ], [ -86.396930460535145, 44.16254518461372 ], [ -86.396384908083689, 44.163351953685236 ], [ -86.386837740183353, 44.178680566044036 ], [ -86.380291110765981, 44.189370256241624 ], [ -86.380018334540253, 44.189571948509503 ], [ -86.362833432319647, 44.208127637154362 ], [ -86.354650145547936, 44.223859634048921 ], [ -86.354377369322208, 44.224263018584679 ], [ -86.351649607064971, 44.229507017549537 ], [ -86.349194621033462, 44.235557785585904 ], [ -86.343739096518973, 44.249676244337437 ], [ -86.327372522975537, 44.262987934017445 ], [ -86.326826970524081, 44.263794703088962 ], [ -86.319189236203812, 44.278518238644125 ], [ -86.318370907526656, 44.279930084519279 ], [ -86.316734250172317, 44.282955468537466 ], [ -86.316461473946589, 44.283358853073224 ], [ -86.315915921495133, 44.284165622144734 ], [ -86.313733711689338, 44.287796082966551 ], [ -86.312642606786454, 44.289207928841705 ], [ -86.31182427810927, 44.29041808244898 ], [ -86.304732096240457, 44.301511157182325 ], [ -86.304459320014729, 44.301914541718084 ], [ -86.300367676628866, 44.30816700202233 ], [ -86.268725634444905, 44.345278379312063 ], [ -86.251813508450013, 44.400945445246649 ], [ -86.247994641289878, 44.420912979766669 ], [ -86.248267417515606, 44.434829746250315 ], [ -86.251813508450013, 44.45157020448427 ], [ -86.251540732224299, 44.465486970967916 ], [ -86.248812969967048, 44.483034198273387 ], [ -86.248812969967048, 44.483034198273387 ], [ -86.248812969967048, 44.483034198273387 ], [ -86.243630221678302, 44.488883274041882 ], [ -86.23872024961527, 44.501589886918254 ], [ -86.233537501326509, 44.518330345152208 ], [ -86.223717557200445, 44.548987569869809 ], [ -86.220717018717494, 44.566736489443159 ], [ -86.225354214554784, 44.594570022410451 ], [ -86.23190084397217, 44.609091865697735 ], [ -86.253995718255808, 44.64801847339838 ], [ -86.258905690318841, 44.663750470292939 ], [ -86.256723480513045, 44.68674338883114 ], [ -86.255086823158706, 44.69198738779599 ], [ -86.24854019374132, 44.69904661717176 ], [ -86.232446396423626, 44.706105846547516 ], [ -86.172162850538626, 44.720627689834799 ], [ -86.169435088281389, 44.722442920245712 ], [ -86.160706249058222, 44.727888611478448 ], [ -86.160160696606781, 44.728090303746328 ], [ -86.123063129908331, 44.727888611478448 ], [ -86.122517577456875, 44.727888611478448 ], [ -86.121153696328264, 44.727888611478448 ], [ -86.120880920102536, 44.728090303746328 ], [ -86.108333213719234, 44.730712303228756 ], [ -86.106151003913453, 44.731115687764515 ], [ -86.105605451461997, 44.731519072300273 ], [ -86.090875535272914, 44.74059522435482 ], [ -86.089238877918561, 44.741401993426337 ], [ -86.078055052663871, 44.758142451660291 ], [ -86.076963947760987, 44.76056275887484 ], [ -86.076691171535259, 44.761167835678478 ], [ -86.076691171535259, 44.761369527946357 ], [ -86.074781737955192, 44.766815219179087 ], [ -86.07341785682658, 44.769840603197267 ], [ -86.073145080600852, 44.77831167844819 ], [ -86.071781199472227, 44.804733365540329 ], [ -86.066052898732025, 44.821473823774284 ], [ -86.066052898732025, 44.834785513454293 ], [ -86.071235647020785, 44.865442738171893 ], [ -86.072599528149397, 44.884805195888276 ], [ -86.070962870795057, 44.895898270621622 ], [ -86.066871227409194, 44.905781191747693 ], [ -86.058960716863197, 44.911025190712543 ], [ -86.038229723708184, 44.915664112873756 ], [ -86.031137541839371, 44.907394729890726 ], [ -86.021590373939034, 44.902755807729505 ], [ -86.009315443781446, 44.899528731443439 ], [ -85.992403317786568, 44.899932115979198 ], [ -85.980128387628994, 44.906184576283451 ], [ -85.972763429534439, 44.91485734380224 ], [ -85.967035128794237, 44.929580879357403 ], [ -85.961579604279763, 44.935631647393777 ], [ -85.95285076505661, 44.940673954090755 ], [ -85.942212492253361, 44.954389028306522 ], [ -85.938666401318955, 44.964473641700465 ], [ -85.931574219450141, 44.968709179325927 ], [ -85.915753198358146, 44.968305794790169 ], [ -85.897749967460371, 44.962053334485915 ], [ -85.891476114268727, 44.957817796860461 ], [ -85.880019512788323, 44.943295953573177 ], [ -85.86992679243653, 44.939060415947722 ], [ -85.854378547570263, 44.938051954608326 ], [ -85.836102540446774, 44.940270569554997 ], [ -85.815371547291747, 44.945716260787719 ], [ -85.807461036745764, 44.949750106145302 ], [ -85.780456190399093, 44.977987023648353 ], [ -85.778273980593298, 44.983029330345332 ], [ -85.776091770787502, 45.000576557650803 ], [ -85.771454574950198, 45.015098400938086 ], [ -85.761907407049861, 45.023367783921124 ], [ -85.746359162183595, 45.051201316888424 ], [ -85.74090363766912, 45.055638546781758 ], [ -85.71226213396811, 45.065521467907828 ], [ -85.695622784198946, 45.076412850373288 ], [ -85.681165644235591, 45.092749924071484 ], [ -85.675710119721103, 45.105456536947855 ], [ -85.674891791043933, 45.11614622714545 ], [ -85.656070231468988, 45.145794990523655 ], [ -85.618699888544796, 45.186738520903077 ], [ -85.613244364030322, 45.184721598224293 ], [ -85.611607706675983, 45.181091137402476 ], [ -85.606970510838678, 45.178469137920047 ], [ -85.593058923326765, 45.178469137920047 ], [ -85.585966741457938, 45.180284368330959 ], [ -85.564690195851469, 45.192587596671572 ], [ -85.561689657368504, 45.200453595118852 ], [ -85.551051384565284, 45.210739900780681 ], [ -85.540413111762035, 45.210134823977043 ], [ -85.526774300475836, 45.189360520385506 ], [ -85.531411496313154, 45.177258984312772 ], [ -85.536867020827628, 45.173426831223068 ], [ -85.552142489468167, 45.167376063186701 ], [ -85.561689657368504, 45.158904987935784 ], [ -85.56223520981996, 45.156888065256993 ], [ -85.56305353849713, 45.15527452711396 ], [ -85.563871867174299, 45.154266065774564 ], [ -85.564962972077197, 45.153862681238806 ], [ -85.566599629431536, 45.153862681238806 ], [ -85.568509063011604, 45.153862681238806 ], [ -85.570145720365957, 45.155072834846081 ], [ -85.573964587526092, 45.155476219381839 ], [ -85.590331161069514, 45.153257604435176 ], [ -85.599878328969851, 45.1492237590776 ], [ -85.61433546893322, 45.127642686414546 ], [ -85.60915272064446, 45.113524227663021 ], [ -85.583238979200701, 45.071370543676316 ], [ -85.573419035074636, 45.068345159658136 ], [ -85.566054076980095, 45.059269007603575 ], [ -85.566054076980095, 45.043537010709016 ], [ -85.570145720365957, 45.041318395762346 ], [ -85.573964587526092, 45.043335318441137 ], [ -85.597150566712614, 45.040511626690837 ], [ -85.599605552744123, 45.021754245778091 ], [ -85.60915272064446, 45.013081478259295 ], [ -85.621973203253489, 45.004610403008385 ], [ -85.606697734612951, 44.990693636524732 ], [ -85.604242748581441, 44.990895328792611 ], [ -85.602333315001374, 44.974356562826536 ], [ -85.602060538775646, 44.926757187607102 ], [ -85.621427650802048, 44.923126726785284 ], [ -85.62551929418791, 44.921109804106493 ], [ -85.639976434151265, 44.890250887121013 ], [ -85.645431958665739, 44.883595042281001 ], [ -85.64897804960016, 44.873913813422817 ], [ -85.652251364308853, 44.849105664473697 ], [ -85.651433035631669, 44.831558437168233 ], [ -85.641613091505604, 44.810784133576703 ], [ -85.636975895668314, 44.790009829985166 ], [ -85.640794762828449, 44.775487986697883 ], [ -85.640249210376993, 44.775084602162124 ], [ -85.63615756699113, 44.771252449072421 ], [ -85.627974280219419, 44.767420295982724 ], [ -85.624428189284998, 44.767016911446966 ], [ -85.623609860607843, 44.766815219179087 ], [ -85.620609322124864, 44.766411834643328 ], [ -85.61951821722198, 44.766411834643328 ], [ -85.610789377998813, 44.765201681036054 ], [ -85.607788839515848, 44.765403373303933 ], [ -85.605606629710053, 44.765403373303933 ], [ -85.599878328969851, 44.765806757839691 ], [ -85.599332776518409, 44.76600845010757 ], [ -85.599060000292681, 44.76600845010757 ], [ -85.593877252003921, 44.768630449589992 ], [ -85.593604475778207, 44.768832141857871 ], [ -85.593604475778207, 44.769437218661508 ], [ -85.593331699552479, 44.769437218661508 ], [ -85.591967818423853, 44.778916755251828 ], [ -85.591149489746698, 44.782950600609404 ], [ -85.591149489746698, 44.783152292877283 ], [ -85.59087671352097, 44.783959061948799 ], [ -85.581602321846361, 44.807758749558516 ], [ -85.581329545620633, 44.808363826362154 ], [ -85.545868636276509, 44.864030892296746 ], [ -85.539049230633424, 44.868871506725839 ], [ -85.533048153667494, 44.8731070443513 ], [ -85.530593167635971, 44.889242425781617 ], [ -85.530593167635971, 44.889242425781617 ], [ -85.530593167635971, 44.889847502585255 ], [ -85.553233594371065, 44.89085596392465 ], [ -85.553506370596793, 44.89085596392465 ], [ -85.559507447562709, 44.888032272174343 ], [ -85.564417419625755, 44.895293193817984 ], [ -85.56305353849713, 44.896705039693138 ], [ -85.562507986045688, 44.89690673196101 ], [ -85.557325237756928, 44.901545654122231 ], [ -85.556779685305486, 44.902150730925868 ], [ -85.556506909079758, 44.902150730925868 ], [ -85.551596937016726, 44.90638626855133 ], [ -85.53959478308488, 44.916874266481031 ], [ -85.539049230633424, 44.917882727820427 ], [ -85.53823090195624, 44.918891189159822 ], [ -85.53359370611895, 44.925748726267706 ], [ -85.530593167635971, 44.933816416982864 ], [ -85.529229286507359, 44.937043493268931 ], [ -85.520227671058478, 44.960439796342889 ], [ -85.520500447284206, 44.961246565414399 ], [ -85.52077322350992, 44.962053334485915 ], [ -85.522137104638546, 44.966692256647136 ], [ -85.521864328412818, 44.967499025718652 ], [ -85.52077322350992, 44.971331178808356 ], [ -85.51995489483275, 44.973953178290778 ], [ -85.518863789929853, 44.974759947362294 ], [ -85.492677272260352, 44.989886867453215 ], [ -85.492404496034624, 44.989886867453215 ], [ -85.475219593814018, 44.99109702106049 ], [ -85.472764607782509, 44.98565132982776 ], [ -85.471673502879611, 44.98343271488109 ], [ -85.470582397976727, 44.980810715398661 ], [ -85.470309621750999, 44.979802254059265 ], [ -85.468400188170932, 44.972944716951389 ], [ -85.468127411945204, 44.971936255611993 ], [ -85.466763530816593, 44.96790241025441 ], [ -85.464854097236525, 44.96104487314652 ], [ -85.466763530816593, 44.958826258199856 ], [ -85.470582397976727, 44.959229642735615 ], [ -85.471127950428169, 44.959229642735615 ], [ -85.471673502879611, 44.959431335003494 ], [ -85.472219055331067, 44.959431335003494 ], [ -85.474401265136862, 44.958624565931977 ], [ -85.485857866617266, 44.953582259235006 ], [ -85.489131181325945, 44.938051954608326 ], [ -85.489949510003115, 44.934018109250744 ], [ -85.490767838680284, 44.93018595616104 ], [ -85.49131339113174, 44.927967341214377 ], [ -85.49131339113174, 44.927765648946497 ], [ -85.49131339113174, 44.927563956678618 ], [ -85.49131339113174, 44.925950418535585 ], [ -85.49131339113174, 44.925748726267706 ], [ -85.49131339113174, 44.925547033999827 ], [ -85.491586167357468, 44.924538572660438 ], [ -85.491586167357468, 44.92413518812468 ], [ -85.492404496034624, 44.909815037105268 ], [ -85.492404496034624, 44.908201498962242 ], [ -85.489403957551673, 44.903159192265264 ], [ -85.488858405100217, 44.902150730925868 ], [ -85.488585628874489, 44.90174734639011 ], [ -85.489676733777401, 44.897511808764648 ], [ -85.489949510003115, 44.896705039693138 ], [ -85.498132796774826, 44.865442738171893 ], [ -85.500860559032077, 44.858786893331896 ], [ -85.502224440160688, 44.855761509313709 ], [ -85.502497216386416, 44.85555981704583 ], [ -85.508225517126618, 44.848298895402188 ], [ -85.508498293352346, 44.847895510866429 ], [ -85.511771608061025, 44.847088741794913 ], [ -85.513681041641092, 44.846685357259155 ], [ -85.516954356349785, 44.845878588187638 ], [ -85.518863789929853, 44.84547520365188 ], [ -85.519136566155566, 44.845273511384001 ], [ -85.527047076701564, 44.841037973758546 ], [ -85.533320929893222, 44.8376092052046 ], [ -85.538503678181968, 44.834987205722172 ], [ -85.539867559310593, 44.834180436650655 ], [ -85.542595321567831, 44.831356744900354 ], [ -85.546141412502237, 44.828129668614295 ], [ -85.547232517405149, 44.82691951500702 ], [ -85.551869713242439, 44.8222805928458 ], [ -85.552960818145351, 44.821272131506404 ], [ -85.553779146822507, 44.820263670167009 ], [ -85.555961356628302, 44.818246747488217 ], [ -85.557870790208369, 44.814414594398521 ], [ -85.560325776239893, 44.809977364505187 ], [ -85.560325776239893, 44.809977364505187 ], [ -85.560325776239893, 44.808363826362154 ], [ -85.560325776239893, 44.800699520182746 ], [ -85.560325776239893, 44.800497827914874 ], [ -85.560325776239893, 44.796665674825171 ], [ -85.560325776239893, 44.795858905753661 ], [ -85.560325776239893, 44.794850444414266 ], [ -85.560598552465621, 44.789606445449408 ], [ -85.560598552465621, 44.789606445449408 ], [ -85.568781839237332, 44.774479525358487 ], [ -85.570964049043113, 44.770445680000904 ], [ -85.575055692428975, 44.762781373821511 ], [ -85.576146797331873, 44.76076445114272 ], [ -85.576692349783315, 44.760159374339082 ], [ -85.575874021106159, 44.759554297535445 ], [ -85.571236825268841, 44.755318759909983 ], [ -85.554870251725418, 44.748864607337858 ], [ -85.554324699273963, 44.748662915069978 ], [ -85.554051923048235, 44.748662915069978 ], [ -85.53823090195624, 44.746847684659073 ], [ -85.527319852927292, 44.748259530534227 ], [ -85.523228209541429, 44.751688299088165 ], [ -85.509316622029516, 44.763991527428786 ], [ -85.504679426192212, 44.768025372786362 ], [ -85.504679426192212, 44.768025372786362 ], [ -85.504679426192212, 44.76842875732212 ], [ -85.503861097515028, 44.772865987215454 ], [ -85.504133873740756, 44.773874448554849 ], [ -85.504679426192212, 44.77851337071607 ], [ -85.505224978643653, 44.78153875473425 ], [ -85.507134412223721, 44.784362446484558 ], [ -85.509316622029516, 44.787387830502738 ], [ -85.508498293352346, 44.788597984110012 ], [ -85.507407188449449, 44.790413214520925 ], [ -85.499496677903451, 44.803926596468813 ], [ -85.496223363194758, 44.805338442343967 ], [ -85.484766761714354, 44.810582441308824 ], [ -85.482038999457131, 44.811792594916099 ], [ -85.477401803619813, 44.813809517594883 ], [ -85.475765146265474, 44.8146162866664 ], [ -85.475219593814018, 44.814817978934279 ], [ -85.474674041362576, 44.815019671202158 ], [ -85.474674041362576, 44.815019671202158 ], [ -85.462944663656458, 44.825104284596108 ], [ -85.462944663656458, 44.825104284596108 ], [ -85.462944663656458, 44.825104284596108 ], [ -85.46267188743073, 44.826314438203383 ], [ -85.460489677624935, 44.835592282525809 ], [ -85.45748913914197, 44.839626127883392 ], [ -85.45748913914197, 44.839626127883392 ], [ -85.457216362916256, 44.839827820151271 ], [ -85.456125258013344, 44.841643050562183 ], [ -85.455306929336189, 44.8424498196337 ], [ -85.452579167078937, 44.845878588187638 ], [ -85.442213670501431, 44.859795354671292 ], [ -85.425847096957995, 44.88157811960221 ], [ -85.423119334700758, 44.895091501550105 ], [ -85.406207208705865, 44.91183195978406 ], [ -85.395841712128373, 44.930992725232556 ], [ -85.378384033682039, 44.998559634972011 ], [ -85.381657348390718, 45.018325477224153 ], [ -85.380566243487834, 45.046360702459324 ], [ -85.377565705004855, 45.055638546781758 ], [ -85.366381879750179, 45.068950236461774 ], [ -85.366927432201635, 45.116952996216966 ], [ -85.372655732941837, 45.126230840539392 ], [ -85.377020152553413, 45.142971298773347 ], [ -85.380566243487834, 45.180889445134596 ], [ -85.386840096679478, 45.189562212653385 ], [ -85.38738564913092, 45.207512824494614 ], [ -85.388476754033817, 45.235144665194028 ], [ -85.371564628038939, 45.270844196608607 ], [ -85.355470830721231, 45.282744040413462 ], [ -85.335012613791932, 45.294038807414687 ], [ -85.323828788537256, 45.30331665173712 ], [ -85.307734991219547, 45.313199572863191 ], [ -85.294914508610518, 45.31642664914925 ], [ -85.289458984096029, 45.3140063419347 ], [ -85.273910739229777, 45.315418187809854 ], [ -85.262999690200814, 45.319452033167437 ], [ -85.255089179654817, 45.32570449347169 ], [ -85.252088641171866, 45.330948492436534 ], [ -85.23572206762843, 45.339419567687457 ], [ -85.209808326184657, 45.356966794992928 ], [ -85.196715067349913, 45.360597255814746 ], [ -85.182530703612258, 45.360798948082625 ], [ -85.143523703333742, 45.370278484672937 ], [ -85.096060640057786, 45.367051408386871 ], [ -85.07369298954842, 45.365437870243838 ], [ -85.066873583905334, 45.36503448570808 ], [ -85.064145821648083, 45.3648327934402 ], [ -85.063327492970913, 45.364631101172321 ], [ -85.060872506939404, 45.364429408904442 ], [ -85.054871429973474, 45.364026024368684 ], [ -85.046688143201749, 45.362210793957772 ], [ -85.045597038298865, 45.362009101689893 ], [ -85.043687604718798, 45.361605717154141 ], [ -85.04341482849307, 45.361605717154141 ], [ -85.043142052267342, 45.361605717154141 ], [ -85.032776555689836, 45.361202332618383 ], [ -85.022138282886601, 45.366648023851113 ], [ -84.998679527474337, 45.370076792405058 ], [ -84.975220772062087, 45.373505560959003 ], [ -84.959126974744379, 45.375925868173546 ], [ -84.915755554854272, 45.393069710943259 ], [ -84.912482240145579, 45.40275093980145 ], [ -84.913027792597035, 45.409810169177213 ], [ -84.916301107305713, 45.417676167624492 ], [ -84.922029408045915, 45.421911705249954 ], [ -84.976311876964985, 45.428769242357831 ], [ -84.976584653190713, 45.428769242357831 ], [ -84.979039639222222, 45.429172626893589 ], [ -84.980403520350848, 45.429374319161468 ], [ -84.980949072802289, 45.429374319161468 ], [ -84.981221849028017, 45.429374319161468 ], [ -84.989950688251184, 45.427559088750556 ], [ -84.990769016928354, 45.425340473803892 ], [ -84.989132359574, 45.424332012464497 ], [ -84.987495702219661, 45.423121858857222 ], [ -84.987222925993933, 45.422920166589343 ], [ -84.985040716188152, 45.421508320714196 ], [ -84.983949611285254, 45.420701551642679 ], [ -84.97849408677078, 45.420096474839042 ], [ -84.977130205642155, 45.420096474839042 ], [ -84.97849408677078, 45.418684628963888 ], [ -84.994315107862761, 45.423121858857222 ], [ -85.034958765495617, 45.435021702662084 ], [ -85.037686527752868, 45.435828471733601 ], [ -85.040141513784377, 45.436433548537238 ], [ -85.040959842461547, 45.436635240805117 ], [ -85.046960919427477, 45.441475855234209 ], [ -85.050234234136155, 45.444097854716631 ], [ -85.050779786587611, 45.444501239252389 ], [ -85.052961996393407, 45.446114777395422 ], [ -85.069601346162557, 45.459224774807552 ], [ -85.070419674839741, 45.460031543879069 ], [ -85.087877353286075, 45.476368617577265 ], [ -85.088422905737502, 45.476973694380902 ], [ -85.097151744960684, 45.495731075293648 ], [ -85.103971150603769, 45.510252918580932 ], [ -85.109153898892529, 45.521547685582156 ], [ -85.109426675118257, 45.521951070117915 ], [ -85.110790556246883, 45.526186607743369 ], [ -85.111063332472597, 45.526388300011249 ], [ -85.115427752084173, 45.539498297423378 ], [ -85.115700528309901, 45.54151522010217 ], [ -85.115973304535629, 45.542120296905807 ], [ -85.11733718566424, 45.552809987103394 ], [ -85.117609961889968, 45.5546252175143 ], [ -85.119519395470036, 45.567331830390678 ], [ -85.119792171695764, 45.568541983997953 ], [ -85.119792171695764, 45.568945368533711 ], [ -85.119792171695764, 45.568945368533711 ], [ -85.118973843018594, 45.572979213891287 ], [ -85.118701066792866, 45.574189367498562 ], [ -85.118701066792866, 45.575197828837958 ], [ -85.118428290567152, 45.575601213373716 ], [ -85.117882738115696, 45.576407982445232 ], [ -85.112427213601222, 45.585080749964028 ], [ -85.112427213601222, 45.585080749964028 ], [ -85.111881661149766, 45.585887519035545 ], [ -85.111608884924038, 45.585887519035545 ], [ -85.107790017763904, 45.589114595321604 ], [ -85.106971689086748, 45.589719672125241 ], [ -85.106153360409564, 45.590324748928879 ], [ -85.105335031732395, 45.590929825732516 ], [ -85.103425598152327, 45.59234167160767 ], [ -85.103152821926614, 45.592745056143428 ], [ -85.102880045700886, 45.592745056143428 ], [ -85.10233449324943, 45.593350132947066 ], [ -85.102061717023702, 45.593551825214945 ], [ -85.096878968734956, 45.597585670572528 ], [ -85.095515087606344, 45.598594131911916 ], [ -85.093605654026277, 45.600207670054949 ], [ -85.079421290288622, 45.617149820556783 ], [ -85.079421290288622, 45.617351512824662 ], [ -85.076147975579943, 45.622595511789513 ], [ -85.075602423128487, 45.623603973128908 ], [ -85.075602423128487, 45.623805665396787 ], [ -85.075329646902759, 45.625217511271941 ], [ -85.074784094451317, 45.629251356629524 ], [ -85.074238541999875, 45.629654741165282 ], [ -85.071510779742624, 45.631873356111946 ], [ -85.065782479002422, 45.63631058600528 ], [ -85.063873045422355, 45.637520739612555 ], [ -85.061418059390846, 45.639537662291346 ], [ -85.060872506939404, 45.639537662291346 ], [ -85.044778709621681, 45.643773199916808 ], [ -85.040959842461547, 45.644781661256204 ], [ -85.035504317947073, 45.646193507131358 ], [ -85.020228849306534, 45.650227352488933 ], [ -85.019410520629364, 45.650429044756812 ], [ -85.015318877243502, 45.65163919836408 ], [ -85.014227772340604, 45.652042582899838 ], [ -85.01313666743772, 45.652849351971355 ], [ -85.00713559047179, 45.6562781205253 ], [ -85.005771709343165, 45.657488274132575 ], [ -85.002225618408758, 45.660311965882883 ], [ -85.00113451350586, 45.661320427222279 ], [ -84.997315646345726, 45.667774579794397 ], [ -84.996224541442828, 45.669589810205309 ], [ -84.995951765217114, 45.669791502473188 ], [ -84.97412966715919, 45.684111653492593 ], [ -84.970856352450511, 45.686330268439264 ], [ -84.970310799999055, 45.686935345242901 ], [ -84.945760939683908, 45.708718110173834 ], [ -84.94385150610384, 45.710331648316867 ], [ -84.942760401200943, 45.714365493674443 ], [ -84.941123743846589, 45.719811184907172 ], [ -84.940578191395147, 45.721828107585964 ], [ -84.942214848749501, 45.728282260158089 ], [ -84.942214848749501, 45.728483952425968 ], [ -84.942487624975215, 45.728887336961726 ], [ -84.94385150610384, 45.73029918283688 ], [ -84.946033715909635, 45.732114413247785 ], [ -84.947397597038247, 45.733526259122939 ], [ -84.950125359295498, 45.736349950873247 ], [ -84.950943687972654, 45.736955027676885 ], [ -84.951762016649838, 45.737358412212643 ], [ -84.954217002681347, 45.738568565819918 ], [ -84.955308107584244, 45.738971950355676 ], [ -84.958035869841481, 45.74038379623083 ], [ -84.968401366418988, 45.745224410659922 ], [ -84.982312953930915, 45.751880255499927 ], [ -84.982858506382357, 45.752081947767806 ], [ -84.983404058833798, 45.752081947767806 ], [ -84.983949611285254, 45.752081947767806 ], [ -84.983949611285254, 45.752081947767806 ], [ -84.98449516373671, 45.752081947767806 ], [ -84.985313492413866, 45.752283640035685 ], [ -84.99677009389427, 45.753292101375081 ], [ -85.001680065957316, 45.753897178178718 ], [ -85.003043947085928, 45.753897178178718 ], [ -85.011500010083367, 45.757931023536301 ], [ -85.014500548566332, 45.760351330750844 ], [ -85.009045024051858, 45.762368253429635 ], [ -85.007408366697518, 45.763175022501144 ], [ -84.99513343653993, 45.759947946215085 ], [ -84.938395981589366, 45.759947946215085 ], [ -84.93785042913791, 45.759746253947206 ], [ -84.931576575946252, 45.758334408072059 ], [ -84.926666603883234, 45.757325946732664 ], [ -84.925302722754608, 45.756922562196905 ], [ -84.924757170303167, 45.756922562196905 ], [ -84.922574960497371, 45.75591410085751 ], [ -84.920665526917304, 45.754905639518114 ], [ -84.920119974465848, 45.754703947250235 ], [ -84.910300030339798, 45.750065025089015 ], [ -84.86692861044969, 45.752081947767806 ], [ -84.841014869005932, 45.744821026124164 ], [ -84.811009484176282, 45.746031179731439 ], [ -84.81046393172484, 45.746031179731439 ], [ -84.808281721919059, 45.746031179731439 ], [ -84.806645064564705, 45.746232871999318 ], [ -84.805008407210366, 45.746434564267197 ], [ -84.800643987598789, 45.747039641070828 ], [ -84.799552882695878, 45.747039641070828 ], [ -84.792460700827064, 45.750468409624773 ], [ -84.789460162344099, 45.751880255499927 ], [ -84.788914609892657, 45.752283640035685 ], [ -84.788914609892657, 45.752283640035685 ], [ -84.788914609892657, 45.752283640035685 ], [ -84.782095204249558, 45.760351330750844 ], [ -84.781276875572388, 45.76115809982236 ], [ -84.779912994443762, 45.769629175073277 ], [ -84.787277952538318, 45.774873174038127 ], [ -84.792187924601336, 45.778503634859952 ], [ -84.792460700827064, 45.778503634859952 ], [ -84.793279029504234, 45.780520557538736 ], [ -84.78018577066949, 45.787176402378748 ], [ -84.77418469370356, 45.78899163278966 ], [ -84.773911917477847, 45.78899163278966 ], [ -84.772820812574935, 45.789395017325418 ], [ -84.75154426696848, 45.782739172485407 ], [ -84.741997099068129, 45.784151018360561 ], [ -84.734086588522146, 45.788184863718143 ], [ -84.732449931167793, 45.787983171450264 ], [ -84.726176077976163, 45.786974710110869 ], [ -84.718811119881607, 45.777696865788435 ], [ -84.71608335762437, 45.766200406519332 ], [ -84.681986329408886, 45.756115793125389 ], [ -84.679531343377363, 45.749056563749619 ], [ -84.644888762710423, 45.739980411695072 ], [ -84.604790657529009, 45.721626415318084 ], [ -84.573694167796475, 45.710331648316867 ], [ -84.555418160672986, 45.702263957601701 ], [ -84.55323595086719, 45.698633496779877 ], [ -84.539051587129549, 45.690565806064726 ], [ -84.539051587129549, 45.690565806064726 ], [ -84.539051587129549, 45.690364113796846 ], [ -84.461583139023958, 45.652445967435597 ], [ -84.442216026997556, 45.654866274650146 ], [ -84.435396621354457, 45.66414411897258 ], [ -84.427486110808474, 45.669186425669551 ], [ -84.413574523296546, 45.66938811793743 ], [ -84.400208488236075, 45.663337349901063 ], [ -84.376476956598083, 45.655471351453784 ], [ -84.329559445773583, 45.664345811240459 ], [ -84.289734116817897, 45.653252736507113 ], [ -84.270367004791495, 45.644781661256204 ], [ -84.215266207195256, 45.634697047862247 ], [ -84.20408238194058, 45.627032741682854 ], [ -84.196171871394583, 45.621385358182238 ], [ -84.18062362652833, 45.604644899948283 ], [ -84.157164871116066, 45.585282442231907 ], [ -84.139434416444004, 45.573785982962804 ], [ -84.128796143640784, 45.562289523693707 ], [ -84.126613933834989, 45.556642140193091 ], [ -84.126886710060717, 45.542523681441565 ], [ -84.122249514223398, 45.52376630052882 ], [ -84.116793989708924, 45.51307661033124 ], [ -84.109156255388655, 45.50521061188396 ], [ -84.095790220328183, 45.497344613436681 ], [ -84.07587755585034, 45.49048707632879 ], [ -84.056237667598225, 45.489276922721523 ], [ -84.039871094054774, 45.493714152614857 ], [ -84.036325003120368, 45.496336152097285 ], [ -84.028687268800098, 45.497142921168802 ], [ -84.009592932999425, 45.49512599849001 ], [ -83.998409107744749, 45.491092153132428 ], [ -83.97795089081545, 45.494117537150615 ], [ -83.939216666762661, 45.493109075811219 ], [ -83.909484058158739, 45.485848154167584 ], [ -83.881933659360641, 45.467897542326355 ], [ -83.858474903948377, 45.446921546466939 ], [ -83.841562777953499, 45.435223394929963 ], [ -83.806647421060831, 45.419088013499646 ], [ -83.788644190163055, 45.416466014017217 ], [ -83.773095945296788, 45.417272783088734 ], [ -83.755638266850468, 45.411020322784481 ], [ -83.73736225972695, 45.411020322784481 ], [ -83.721814014860684, 45.413238937731151 ], [ -83.697264154545536, 45.396296787229318 ], [ -83.667804322167356, 45.384598635692342 ], [ -83.64380001430365, 45.371690330548091 ], [ -83.599337489510646, 45.352529565099587 ], [ -83.570423209583922, 45.34728556613473 ], [ -83.550237768880351, 45.350916026956554 ], [ -83.546691677945944, 45.352731257367466 ], [ -83.545600573043046, 45.358378640868075 ], [ -83.538235614948491, 45.358176948600196 ], [ -83.520232384050729, 45.34728556613473 ], [ -83.514776859536241, 45.346478797063213 ], [ -83.496773628638465, 45.357571871796566 ], [ -83.488863118092468, 45.355958333653533 ], [ -83.477679292837792, 45.341839874902 ], [ -83.477679292837792, 45.341839874902 ], [ -83.468132124937455, 45.332360338311688 ], [ -83.445764474428088, 45.310577573380762 ], [ -83.432943991819059, 45.303720036272878 ], [ -83.425033481273076, 45.296862499164995 ], [ -83.423124047693008, 45.292425269271661 ], [ -83.422578495241567, 45.291013423396507 ], [ -83.422305719015839, 45.290811731128628 ], [ -83.422305719015839, 45.290811731128628 ], [ -83.420396285435771, 45.289803269789232 ], [ -83.40102917340937, 45.279516964127403 ], [ -83.400756397183642, 45.279516964127403 ], [ -83.400756397183642, 45.279516964127403 ], [ -83.4002108447322, 45.279315271859524 ], [ -83.398846963603575, 45.279113579591645 ], [ -83.388208690800354, 45.276894964644981 ], [ -83.385208152317375, 45.274272965162552 ], [ -83.381662061382968, 45.269028966197695 ], [ -83.387935914574626, 45.254910507446169 ], [ -83.412485774889774, 45.245834355391615 ], [ -83.412485774889774, 45.238976818283732 ], [ -83.405939145472402, 45.227076974478877 ], [ -83.387663138348898, 45.207109439958856 ], [ -83.38438982364022, 45.203478979137032 ], [ -83.381662061382968, 45.203277286869152 ], [ -83.368841578773953, 45.182099598741864 ], [ -83.368023250096769, 45.172418369883673 ], [ -83.363658830485193, 45.166569294115185 ], [ -83.359839963325058, 45.162938833293367 ], [ -83.348656138070368, 45.161526987418213 ], [ -83.33774508904142, 45.147206836398809 ], [ -83.316195767209223, 45.141962837433951 ], [ -83.315922990983509, 45.13994591475516 ], [ -83.319196305692202, 45.137727299808489 ], [ -83.318377977015018, 45.128852840021821 ], [ -83.308012480437512, 45.099002384375737 ], [ -83.298192536311461, 45.090531309124813 ], [ -83.290827578216906, 45.069151928729653 ], [ -83.291373130668347, 45.06269777615752 ], [ -83.280189305413671, 45.045957317923566 ], [ -83.276915990704993, 45.044747164316291 ], [ -83.271460466190518, 45.038091319476287 ], [ -83.26600494167603, 45.026796552475062 ], [ -83.271460466190518, 45.023367783921124 ], [ -83.288099815959669, 45.026393167939304 ], [ -83.30228417969731, 45.032242243707799 ], [ -83.340200075072943, 45.041520088030225 ], [ -83.357657753519277, 45.050596240084786 ], [ -83.367477697645327, 45.062294391621762 ], [ -83.399119739829302, 45.070362082336921 ], [ -83.433762320496243, 45.057655469460542 ], [ -83.441945607267954, 45.050999624620545 ], [ -83.453402208748358, 45.035267627725986 ], [ -83.454220537425527, 45.031838859172041 ], [ -83.44631002687953, 45.016711939081119 ], [ -83.435126201624854, 45.01187132465202 ], [ -83.431307334464719, 45.008039171562324 ], [ -83.435944530302038, 44.999971480847165 ], [ -83.438945068784989, 44.999971480847165 ], [ -83.450128894039665, 44.990290251988974 ], [ -83.443582264622307, 44.952170413359852 ], [ -83.438945068784989, 44.940875646358634 ], [ -83.432943991819059, 44.932807955643469 ], [ -83.425306257498789, 44.926757187607102 ], [ -83.404575264343777, 44.918689496891943 ], [ -83.398846963603575, 44.90638626855133 ], [ -83.393936991540556, 44.902957499997385 ], [ -83.35274778145623, 44.88621704176343 ], [ -83.320560186820813, 44.880569658262822 ], [ -83.321105739272269, 44.858585201064017 ], [ -83.321105739272269, 44.85313950983128 ], [ -83.321105739272269, 44.852937817563401 ], [ -83.321105739272269, 44.852736125295522 ], [ -83.318377977015018, 44.848500587670067 ], [ -83.314559109854883, 44.842248127365821 ], [ -83.314286333629155, 44.842046435097942 ], [ -83.312922452500544, 44.840836281490667 ], [ -83.312922452500544, 44.840836281490667 ], [ -83.312376900049088, 44.840432896954908 ], [ -83.308558032888953, 44.837004128400963 ], [ -83.306921375534614, 44.83539059025793 ], [ -83.30064752234297, 44.829743206757321 ], [ -83.299829193665801, 44.823289054185196 ], [ -83.298738088762903, 44.815423055737917 ], [ -83.29546477405421, 44.793438598539112 ], [ -83.29546477405421, 44.793438598539112 ], [ -83.295737550279938, 44.790211522253045 ], [ -83.295737550279938, 44.78920306091365 ], [ -83.296010326505666, 44.778916755251828 ], [ -83.297101431408549, 44.758545836196049 ], [ -83.297101431408549, 44.758545836196049 ], [ -83.297919760085733, 44.755722144445741 ], [ -83.298192536311461, 44.754915375374225 ], [ -83.298192536311461, 44.754511990838466 ], [ -83.297919760085733, 44.750478145480891 ], [ -83.297646983860005, 44.748057838266348 ], [ -83.297374207634277, 44.747251069194832 ], [ -83.297374207634277, 44.746040915587557 ], [ -83.296283102731394, 44.743418916105128 ], [ -83.290827578216906, 44.72990553415724 ], [ -83.290554801991192, 44.729300457353602 ], [ -83.288099815959669, 44.726476765603294 ], [ -83.28482650125099, 44.722442920245712 ], [ -83.284008172573806, 44.721837843442074 ], [ -83.283189843896636, 44.721031074370558 ], [ -83.27718876693072, 44.716795536745103 ], [ -83.274733780899197, 44.714980306334198 ], [ -83.274188228447741, 44.71437522953056 ], [ -83.273369899770586, 44.713971844994802 ], [ -83.274733780899197, 44.704694000672362 ], [ -83.275006557124925, 44.701870308922061 ], [ -83.275279333350653, 44.700458463046907 ], [ -83.275279333350653, 44.700256770779035 ], [ -83.275552109576367, 44.698844924903881 ], [ -83.275552109576367, 44.698643232636002 ], [ -83.275552109576367, 44.698239848100243 ], [ -83.276097662027809, 44.69440769501054 ], [ -83.276915990704993, 44.689365388313561 ], [ -83.277461543156434, 44.687550157902656 ], [ -83.279098200510788, 44.682709543473564 ], [ -83.279370976736502, 44.682306158937806 ], [ -83.285917606153873, 44.662943701221423 ], [ -83.287008711056771, 44.660321701738994 ], [ -83.287281487282499, 44.659313240399598 ], [ -83.287554263508213, 44.658304779060202 ], [ -83.287827039733941, 44.657699702256565 ], [ -83.28946369708828, 44.653060780095352 ], [ -83.29546477405421, 44.645396473915952 ], [ -83.307194151760342, 44.63026955382503 ], [ -83.30746692798607, 44.629866169289272 ], [ -83.309103585340409, 44.624622170324415 ], [ -83.309921914017579, 44.622806939913509 ], [ -83.309921914017579, 44.62260524764563 ], [ -83.314559109854883, 44.608890173429856 ], [ -83.314559109854883, 44.608688481161977 ], [ -83.314559109854883, 44.608486788894098 ], [ -83.315104662306339, 44.602234328589859 ], [ -83.315104662306339, 44.602234328589859 ], [ -83.315377438532067, 44.599208944571672 ], [ -83.315377438532067, 44.59719202189288 ], [ -83.315650214757781, 44.595175099214089 ], [ -83.315377438532067, 44.593561561071056 ], [ -83.314013557403442, 44.571980488408016 ], [ -83.314013557403442, 44.571577103872258 ], [ -83.314013557403442, 44.570165257997104 ], [ -83.314013557403442, 44.568955104389829 ], [ -83.314013557403442, 44.568350027586192 ], [ -83.313740781177714, 44.567139873978917 ], [ -83.313740781177714, 44.566736489443159 ], [ -83.313740781177714, 44.566131412639521 ], [ -83.313740781177714, 44.564517874496488 ], [ -83.313740781177714, 44.564517874496488 ], [ -83.309103585340409, 44.549390954405567 ], [ -83.309103585340409, 44.548987569869809 ], [ -83.308830809114681, 44.548382493066171 ], [ -83.308830809114681, 44.548180800798292 ], [ -83.308558032888953, 44.539911417815262 ], [ -83.309376361566137, 44.537491110600712 ], [ -83.310194690243307, 44.53547418792192 ], [ -83.310467466469021, 44.534869111118283 ], [ -83.311285795146205, 44.532650496171613 ], [ -83.311558571371933, 44.532045419367975 ], [ -83.31810520078929, 44.514901576598263 ], [ -83.318377977015018, 44.514498192062504 ], [ -83.318377977015018, 44.514296499794625 ], [ -83.31810520078929, 44.511674500312203 ], [ -83.317559648337848, 44.486059582291574 ], [ -83.326834040012471, 44.444510975108507 ], [ -83.327106816238185, 44.429182362749707 ], [ -83.324651830206676, 44.415063903998181 ], [ -83.321651291723711, 44.409214828229693 ], [ -83.321651291723711, 44.404575906068473 ], [ -83.333653445655557, 44.372506835475718 ], [ -83.335290103009896, 44.357984992188435 ], [ -83.332562340752673, 44.340437764882964 ], [ -83.33692676036425, 44.332975150971443 ], [ -83.34374616600735, 44.329748074685384 ], [ -83.352202229004789, 44.332370074167805 ], [ -83.364204382936634, 44.332571766435684 ], [ -83.373478774611243, 44.327731152006592 ], [ -83.40184750208654, 44.301914541718084 ], [ -83.414395208469841, 44.294451927806563 ], [ -83.419305180532874, 44.287796082966551 ], [ -83.425851809950245, 44.272467470607751 ], [ -83.42967067711038, 44.26964377885745 ], [ -83.442763935945123, 44.265408241231995 ], [ -83.445764474428088, 44.273475931947146 ], [ -83.447673908008156, 44.274081008750784 ], [ -83.461039943068627, 44.278114854108367 ], [ -83.462949376648695, 44.278921623179883 ], [ -83.479588726417859, 44.280131776787158 ], [ -83.500319719572872, 44.276703008233213 ], [ -83.508775782570325, 44.273677624215026 ], [ -83.524869579888019, 44.261576088142291 ], [ -83.537690062497049, 44.248264398462283 ], [ -83.549146663977453, 44.227288402602866 ], [ -83.552965531137588, 44.210749636636791 ], [ -83.553783859814757, 44.19804302376042 ], [ -83.565240461295161, 44.163553645953115 ], [ -83.565240461295161, 44.163351953685236 ], [ -83.566058789972345, 44.161133338738566 ], [ -83.566331566198059, 44.16012487739917 ], [ -83.567695447326685, 44.155889339773715 ], [ -83.567968223552413, 44.151048725344623 ], [ -83.568240999778126, 44.14459457277249 ], [ -83.568240999778126, 44.143586111433095 ], [ -83.568240999778126, 44.143384419165216 ], [ -83.568786552229568, 44.129467652681569 ], [ -83.568786552229568, 44.128862575877932 ], [ -83.568786552229568, 44.126643960931268 ], [ -83.568513776003854, 44.124425345984598 ], [ -83.567968223552413, 44.121198269698539 ], [ -83.567695447326685, 44.119584731555506 ], [ -83.573150971841159, 44.101230735178518 ], [ -83.587880888030242, 44.086708891891234 ], [ -83.591426978964662, 44.079246277979706 ], [ -83.590335874061765, 44.069565049121522 ], [ -83.584062020870107, 44.056656743977271 ], [ -83.601246923090713, 44.05463982129848 ], [ -83.62115958756857, 44.056253359441513 ], [ -83.650073867495308, 44.052421206351809 ], [ -83.679533699873488, 44.036285824921492 ], [ -83.687989762870927, 44.020755520294813 ], [ -83.68007925232493, 43.994132140934795 ], [ -83.70872075602594, 43.99292198732752 ], [ -83.743908889144336, 43.991510141452366 ], [ -83.746909427627287, 43.988888141969937 ], [ -83.75700214797908, 43.986669527023267 ], [ -83.762730448719282, 43.985459373415992 ], [ -83.76300322494501, 43.985257681148113 ], [ -83.763276001170738, 43.985257681148113 ], [ -83.763821553622179, 43.985257681148113 ], [ -83.779097022262718, 43.985257681148113 ], [ -83.787825861485885, 43.985257681148113 ], [ -83.828196742893027, 43.989089834237816 ], [ -83.828469519118755, 43.989089834237816 ], [ -83.829015071570183, 43.989089834237816 ], [ -83.829015071570183, 43.989089834237816 ], [ -83.829015071570183, 43.989089834237816 ], [ -83.848382183596584, 43.981627220326295 ], [ -83.851382722079563, 43.979408605379625 ], [ -83.851655498305277, 43.979206913111746 ], [ -83.851928274531005, 43.979206913111746 ], [ -83.853564931885344, 43.977996759504478 ], [ -83.85492881301397, 43.976988298165082 ], [ -83.855201589239698, 43.975979836825687 ], [ -83.855474365465412, 43.974971375486291 ], [ -83.855474365465412, 43.974769683218412 ], [ -83.855474365465412, 43.974567990950533 ], [ -83.85574714169114, 43.974366298682654 ], [ -83.856019917916854, 43.97275276053962 ], [ -83.856019917916854, 43.972551068271741 ], [ -83.856292694142581, 43.972349376003862 ], [ -83.858474903948377, 43.97053414559295 ], [ -83.858474903948377, 43.97053414559295 ], [ -83.859020456399833, 43.969929068789313 ], [ -83.859293232625546, 43.969727376521433 ], [ -83.859566008851274, 43.969727376521433 ], [ -83.859566008851274, 43.969525684253554 ], [ -83.859838785076988, 43.969323991985675 ], [ -83.869385952977325, 43.960651224466886 ], [ -83.869658729203053, 43.960651224466886 ], [ -83.877023687297594, 43.959441070859612 ], [ -83.87756923974905, 43.959239378591732 ], [ -83.880024225780573, 43.955407225502029 ], [ -83.880024225780573, 43.95520553323415 ], [ -83.88520697406932, 43.946734457983233 ], [ -83.885479750295048, 43.946129381179603 ], [ -83.885479750295048, 43.946129381179603 ], [ -83.890116946132352, 43.934632921910492 ], [ -83.890935274809522, 43.923338154909274 ], [ -83.907301848352958, 43.918094155944424 ], [ -83.911120715513093, 43.910429849765023 ], [ -83.916849016253295, 43.899135082763799 ], [ -83.917940121156192, 43.856578014241336 ], [ -83.926396184153631, 43.787397566358855 ], [ -83.929396722636596, 43.777111260697026 ], [ -83.945490519954305, 43.759967417927314 ], [ -83.954764911628928, 43.760975879266709 ], [ -83.956128792757539, 43.759362341123676 ], [ -83.954219359177472, 43.750689573604888 ], [ -83.939216666762661, 43.715393426726067 ], [ -83.929396722636596, 43.701274967974541 ], [ -83.909484058158739, 43.672634665935732 ], [ -83.89720912800118, 43.663961898416929 ], [ -83.852201050756719, 43.645002825236311 ], [ -83.814557931606828, 43.64298590255752 ], [ -83.806647421060831, 43.641170672146615 ], [ -83.77882424603699, 43.630077597413262 ], [ -83.770640959265279, 43.628665751538115 ], [ -83.769822630588095, 43.634918211842361 ], [ -83.725905658246546, 43.618782830412044 ], [ -83.703538007737194, 43.597605142284756 ], [ -83.699173588125603, 43.59679837321324 ], [ -83.669713755747424, 43.590747605176873 ], [ -83.666167664813017, 43.59135268198051 ], [ -83.654165510881171, 43.599218680427782 ], [ -83.618704601537047, 43.628867443805994 ], [ -83.595518622350511, 43.650246824201162 ], [ -83.563058251489366, 43.684534509740587 ], [ -83.553783859814757, 43.685341278812103 ], [ -83.549146663977453, 43.69381235406302 ], [ -83.551601650008962, 43.699863122099387 ], [ -83.540145048528558, 43.708737581886062 ], [ -83.524869579888019, 43.7170069648691 ], [ -83.515867964439138, 43.718217118476375 ], [ -83.513412978407615, 43.71458665765455 ], [ -83.50659357276453, 43.710956196832726 ], [ -83.480134278869315, 43.71458665765455 ], [ -83.470041558517522, 43.723461117441225 ], [ -83.467313796260271, 43.728906808673955 ], [ -83.46513158645449, 43.733747423103054 ], [ -83.459676061940002, 43.741008344746696 ], [ -83.440036173687886, 43.761782648338226 ], [ -83.438945068784989, 43.767228339570963 ], [ -83.44167283104224, 43.770253723589143 ], [ -83.446855579330986, 43.771867261732176 ], [ -83.438399516333547, 43.786792489555218 ], [ -83.426124586175973, 43.799902486967355 ], [ -83.416304642049909, 43.80111264057463 ], [ -83.411394669986876, 43.804944793664326 ], [ -83.410576341309707, 43.807768485414627 ], [ -83.412485774889774, 43.817651406540705 ], [ -83.410849117535435, 43.825517404987977 ], [ -83.407575802826742, 43.831971557560109 ], [ -83.390390900606135, 43.839232479203744 ], [ -83.38902701947751, 43.840442632811019 ], [ -83.389299795703238, 43.844274785900723 ], [ -83.35874885842216, 43.857384783312853 ], [ -83.332289564526945, 43.880579394118939 ], [ -83.33174401207549, 43.893891083798948 ], [ -83.333653445655557, 43.898530005960161 ], [ -83.341018403750098, 43.904580773996528 ], [ -83.348110585618926, 43.906396004407441 ], [ -83.348656138070368, 43.909824772961386 ], [ -83.347292256941756, 43.912245080175936 ], [ -83.338017865267147, 43.915673848729874 ], [ -83.318650753240746, 43.917690771408665 ], [ -83.305557494406003, 43.922531385837758 ], [ -83.282371515219467, 43.938061690464437 ], [ -83.269005480158995, 43.956213994573545 ], [ -83.261913298290182, 43.968920607449917 ], [ -83.261640522064454, 43.973559529611137 ], [ -83.226997941397514, 43.981022143522658 ], [ -83.195628675439252, 43.983039066201442 ], [ -83.180625983024441, 43.982030604862054 ], [ -83.14543784990606, 43.989493218773575 ], [ -83.134799577102825, 43.993123679595399 ], [ -83.120615213365184, 44.000989678042671 ], [ -83.107794730756154, 44.003208292989342 ], [ -83.079426003280872, 44.000989678042671 ], [ -83.066059968220401, 44.003409985257221 ], [ -83.058695010125859, 44.006233677007529 ], [ -83.046692856193999, 44.015713213597834 ], [ -83.029780730199121, 44.041126439350592 ], [ -83.024597981910375, 44.045160284708167 ], [ -82.999229792918044, 44.046572130583321 ], [ -82.990773729920591, 44.048790745529985 ], [ -82.967314974508341, 44.066136280567576 ], [ -82.958586135285174, 44.065732896031818 ], [ -82.956676701705106, 44.063312588817269 ], [ -82.947402310030498, 44.062102435210001 ], [ -82.92885352668128, 44.069363356853643 ], [ -82.916033044072236, 44.070573510460918 ], [ -82.889846526402749, 44.051009360476655 ], [ -82.875934938890822, 44.044958592440288 ], [ -82.833109071452185, 44.03689090172513 ], [ -82.793283742496484, 44.023175827509363 ], [ -82.788373770433452, 44.01369629091905 ], [ -82.783191022144706, 44.009460753293595 ], [ -82.764915015021188, 44.006838753811166 ], [ -82.746366231671971, 43.9959473713457 ], [ -82.739001273577429, 43.989493218773575 ], [ -82.728635776999909, 43.972551068271741 ], [ -82.712269203456486, 43.949558149733541 ], [ -82.709814217424963, 43.948146303858387 ], [ -82.693447643881541, 43.917892463676544 ], [ -82.67871772769243, 43.883806470404998 ], [ -82.655531748505908, 43.867872781242561 ], [ -82.643256818348334, 43.85254416888376 ], [ -82.642984042122606, 43.846493400847393 ], [ -82.647348461734197, 43.844476478168602 ], [ -82.647894014185638, 43.84266124775769 ], [ -82.644347923251217, 43.837618941060718 ], [ -82.633709650447997, 43.831164788488593 ], [ -82.617888629356003, 43.768640185446117 ], [ -82.6189797342589, 43.756135264837617 ], [ -82.617343076904561, 43.746857420515184 ], [ -82.612160328615801, 43.739798191139421 ], [ -82.606159251649871, 43.690383585509075 ], [ -82.604795370521259, 43.678887126239971 ], [ -82.605886475424157, 43.669407589649666 ], [ -82.600430950909669, 43.602849141249607 ], [ -82.59797596487816, 43.589940836105356 ], [ -82.593884321492311, 43.581469760854439 ], [ -82.585701034720586, 43.543954999028955 ], [ -82.565788370242728, 43.502809776381639 ], [ -82.565515594017015, 43.497162392881037 ], [ -82.553513440085169, 43.464084860948887 ], [ -82.539601852573242, 43.437461481588855 ], [ -82.538510747670344, 43.431612405820374 ], [ -82.53987462879897, 43.422334561497934 ], [ -82.535510209187379, 43.368079341438502 ], [ -82.536874090316005, 43.34851519145424 ], [ -82.530054684672905, 43.333791655899077 ], [ -82.529509132221449, 43.316244428593606 ], [ -82.532509670704428, 43.305756430663898 ], [ -82.522962502804091, 43.225281215780193 ], [ -82.519143635643957, 43.2127762951717 ], [ -82.508778139066436, 43.196842606009263 ], [ -82.503049838326234, 43.169009073041963 ], [ -82.503049838326234, 43.168202303970446 ], [ -82.501685957197623, 43.161748151398321 ], [ -82.501413180971895, 43.161344766862562 ], [ -82.500049299843283, 43.157915998308624 ], [ -82.495684880231693, 43.147226308111037 ], [ -82.494320999103081, 43.143797539557099 ], [ -82.494048222877353, 43.142789078217703 ], [ -82.494048222877353, 43.142789078217703 ], [ -82.494048222877353, 43.142385693681945 ], [ -82.494048222877353, 43.142184001414066 ], [ -82.493229894200169, 43.137746771520725 ], [ -82.492957117974456, 43.135326464306175 ], [ -82.491047684394388, 43.120804621018891 ], [ -82.490502131942947, 43.118384313804341 ], [ -82.490502131942947, 43.118182621536462 ], [ -82.490502131942947, 43.117779237000704 ], [ -82.486683264782812, 43.104669239588574 ], [ -82.486137712331356, 43.102450624641904 ], [ -82.471135019916545, 43.087525396818862 ], [ -82.457223432404618, 43.061507094262481 ], [ -82.457223432404618, 43.061305401994602 ], [ -82.450676802987246, 43.051220788600652 ], [ -82.44331184489269, 43.039926021599427 ], [ -82.422853627963406, 43.007856951006673 ], [ -82.416034222320306, 43.005638336060002 ], [ -82.447676264504281, 42.937062964981159 ], [ -82.455041222598823, 42.92677665931933 ], [ -82.470043915013633, 42.887446667082941 ], [ -82.483682726299833, 42.733152082155527 ], [ -82.509869243969334, 42.637348254913022 ], [ -82.518870859418229, 42.61395195183907 ], [ -82.523235279029805, 42.607497799266937 ], [ -82.584064377366246, 42.554049348279015 ], [ -82.589792678106448, 42.550620579725077 ], [ -82.606977580327055, 42.548805349314165 ], [ -82.62498081122483, 42.557276424565075 ], [ -82.678990503918158, 42.52218196995414 ], [ -82.686355462012699, 42.518551509132323 ], [ -82.685264357109816, 42.528636122526265 ], [ -82.679536056369614, 42.535493659634149 ], [ -82.67107999337216, 42.537913966848699 ], [ -82.664260587729075, 42.546183349831736 ], [ -82.680627161272497, 42.557881501368712 ], [ -82.680899937498225, 42.574621959602666 ], [ -82.687992119367053, 42.588337033818433 ], [ -82.70108537820181, 42.585916726603891 ], [ -82.711178098553589, 42.590959033300862 ], [ -82.713087532133656, 42.597816570408753 ], [ -82.700812601976082, 42.606691030195421 ], [ -82.683354923529748, 42.609514721945729 ], [ -82.681718266175409, 42.618590874000283 ], [ -82.690174329172834, 42.625045026572408 ], [ -82.68990155294712, 42.6270619492512 ], [ -82.669170559792093, 42.637146562645142 ], [ -82.645711804379843, 42.631095794608783 ], [ -82.630981888190746, 42.642188869342121 ], [ -82.626344692353456, 42.647432868306979 ], [ -82.623071377644763, 42.655903943557888 ], [ -82.623889706321933, 42.665383480148201 ], [ -82.630981888190746, 42.67324947859548 ], [ -82.635346307802337, 42.67546809354215 ], [ -82.659896168117484, 42.678695169828217 ], [ -82.674353308080867, 42.686964552811247 ], [ -82.685537133335544, 42.689989936829434 ], [ -82.70108537820181, 42.689586552293676 ], [ -82.706268126490556, 42.683535784257309 ], [ -82.707904783844896, 42.683535784257309 ], [ -82.726453567194127, 42.682729015185792 ], [ -82.75318563731507, 42.669820710041535 ], [ -82.765460567472644, 42.655702251290009 ], [ -82.780736036113183, 42.652273482736064 ], [ -82.792465413819315, 42.655097174486372 ], [ -82.797375385882333, 42.654088713146976 ], [ -82.813469183200056, 42.640777023466967 ], [ -82.820015812617427, 42.626255180179683 ], [ -82.81892470771453, 42.616372259053612 ], [ -82.811014197168532, 42.610926567820883 ], [ -82.788919322884908, 42.603463953909362 ], [ -82.787555441756282, 42.598219954944511 ], [ -82.788919322884908, 42.592572571443895 ], [ -82.788100994207724, 42.582891342585711 ], [ -82.781554364790352, 42.571596575584479 ], [ -82.782372693467522, 42.564739038476603 ], [ -82.784554903273317, 42.563730577137207 ], [ -82.789192099110636, 42.56836949929842 ], [ -82.796829833430905, 42.570991498780849 ], [ -82.821106917520325, 42.57078980651297 ], [ -82.834200176355068, 42.567764422494783 ], [ -82.8459295540612, 42.56070519311902 ], [ -82.849202868769879, 42.555662886422041 ], [ -82.851112302349947, 42.549007041582044 ], [ -82.859295589121672, 42.541947812206274 ], [ -82.860113917798841, 42.540939350866878 ], [ -82.874298281536483, 42.523593815829287 ], [ -82.88220879208248, 42.501004281826852 ], [ -82.883845449436819, 42.471758902984398 ], [ -82.870479414376348, 42.451186291660747 ], [ -82.870479414376348, 42.450984599392868 ], [ -82.886027659242615, 42.408225838602526 ], [ -82.888482645274138, 42.398141225208576 ], [ -82.893938169788612, 42.389468457689787 ], [ -82.898302589400203, 42.385434612332205 ], [ -82.915214715395081, 42.378173690688563 ], [ -82.919033582555215, 42.374341537598866 ], [ -82.92885352668128, 42.359416309775817 ], [ -82.923943554618234, 42.352155388132175 ], [ -82.959404463962358, 42.339650467523683 ], [ -82.988591520114809, 42.332389545880034 ], [ -83.018324128718717, 42.329767546397612 ], [ -83.064150534640333, 42.317666010324871 ], [ -83.0796987795066, 42.308589858270324 ], [ -83.096610905501478, 42.290235861893336 ], [ -83.12798017145974, 42.238804333584199 ], [ -83.131253486168418, 42.202701417633861 ], [ -83.133981248425656, 42.174666192398689 ], [ -83.124434080525319, 42.137554815108963 ], [ -83.133435695974214, 42.088140209478617 ], [ -83.157712780063633, 42.085518209996195 ], [ -83.168623829092596, 42.073618366191333 ], [ -83.170533262672663, 42.073013289387696 ], [ -83.188536493570439, 42.066357444547691 ], [ -83.189082046021895, 42.06192021465435 ], [ -83.186899836216099, 42.061113445582833 ], [ -83.185535955087474, 42.052238985796166 ], [ -83.188263717344711, 42.031262989936749 ], [ -83.185808731313202, 42.029447759525837 ], [ -83.185808731313202, 42.029447759525837 ], [ -83.181444311701625, 42.019363146131894 ], [ -83.187172612441827, 42.007664994594911 ], [ -83.190445927150506, 42.006253148719757 ], [ -83.20872193427401, 42.00504299511249 ], [ -83.209267486725452, 41.995765150790049 ], [ -83.216905221045721, 41.988705921414294 ], [ -83.216905221045721, 41.988504229146415 ], [ -83.223451850463107, 41.989109305950052 ], [ -83.223451850463107, 41.989109305950052 ], [ -83.224815731591718, 41.988504229146415 ], [ -83.227816270074683, 41.987495767807019 ], [ -83.228361822526125, 41.98729407553914 ], [ -83.228634598751853, 41.98729407553914 ], [ -83.228634598751853, 41.98729407553914 ], [ -83.229180151203309, 41.986688998735502 ], [ -83.248820039455424, 41.972772232251856 ], [ -83.249092815681138, 41.972368847716098 ], [ -83.249911144358322, 41.971360386376702 ], [ -83.255093892647068, 41.962687618857899 ], [ -83.256730550001407, 41.960065619375477 ], [ -83.257003326227135, 41.959662234839719 ], [ -83.257003326227135, 41.958653773500323 ], [ -83.257276102452863, 41.955426697214264 ], [ -83.257276102452863, 41.953611466803352 ], [ -83.257276102452863, 41.950787775053044 ], [ -83.269551032610451, 41.939089623516068 ], [ -83.270369361287607, 41.939291315783947 ], [ -83.287008711056771, 41.944333622480919 ], [ -83.292737011796973, 41.944535314748798 ], [ -83.293009788022701, 41.944535314748798 ], [ -83.296010326505666, 41.944737007016677 ], [ -83.298192536311461, 41.94413193021304 ], [ -83.299556417440073, 41.94393023794516 ], [ -83.302829732148751, 41.943123468873644 ], [ -83.303375284600207, 41.942720084337886 ], [ -83.305557494406003, 41.941509930730618 ], [ -83.315922990983509, 41.935862547230002 ], [ -83.326015711335288, 41.924971164764543 ], [ -83.326015711335288, 41.924971164764543 ], [ -83.326015711335288, 41.924971164764543 ], [ -83.327106816238185, 41.922550857549993 ], [ -83.330380130946878, 41.914483166834827 ], [ -83.333107893204115, 41.908835783334226 ], [ -83.333653445655557, 41.907222245191193 ], [ -83.334198998107013, 41.90318839983361 ], [ -83.334471774332741, 41.901978246226335 ], [ -83.335017326784183, 41.896129170457847 ], [ -83.335017326784183, 41.895927478189968 ], [ -83.335562879235624, 41.892095325100271 ], [ -83.335835655461352, 41.889675017885722 ], [ -83.341563956201554, 41.87999378902753 ], [ -83.359567187099344, 41.867892252954789 ], [ -83.366113816516702, 41.865471945740246 ], [ -83.372114893482632, 41.874144713259042 ], [ -83.37238766970836, 41.874548097794801 ], [ -83.379752627802901, 41.871724406044493 ], [ -83.381934837608696, 41.870917636972976 ], [ -83.389299795703238, 41.86163979265055 ], [ -83.393936991540556, 41.855992409149934 ], [ -83.396119201346337, 41.852967025131747 ], [ -83.408121355278183, 41.832596106075975 ], [ -83.409485236406809, 41.830377491129305 ], [ -83.422305719015839, 41.822309800414146 ], [ -83.422305719015839, 41.822309800414146 ], [ -83.425306257498789, 41.821301339074751 ], [ -83.426397362401701, 41.821099646806871 ], [ -83.431307334464719, 41.819486108663838 ], [ -83.434307872947684, 41.818477647324443 ], [ -83.435944530302038, 41.816864109181417 ], [ -83.436217306527752, 41.816460724645658 ], [ -83.439490621236445, 41.813233648359599 ], [ -83.44167283104224, 41.808594726198379 ], [ -83.442218383493682, 41.801132112286858 ], [ -83.442491159719395, 41.798913497340187 ], [ -83.442763935945123, 41.795081344250491 ], [ -83.443309488396579, 41.789030576214117 ], [ -83.437853963882105, 41.771079964372888 ], [ -83.437581187656377, 41.769668118497734 ], [ -83.437308411430649, 41.769063041694103 ], [ -83.437308411430649, 41.769063041694103 ], [ -83.43567175407631, 41.766037657675916 ], [ -83.434307872947684, 41.763415658193495 ], [ -83.432943991819059, 41.760995350978945 ], [ -83.432943991819059, 41.760793658711066 ], [ -83.432125663141903, 41.759381812835912 ], [ -83.431852886916175, 41.758978428300153 ], [ -83.431034558238991, 41.75736489015712 ], [ -83.427488467304585, 41.750305660781358 ], [ -83.427215691078857, 41.750305660781358 ], [ -83.427215691078857, 41.750305660781358 ], [ -83.426397362401701, 41.747683661298936 ], [ -83.424215152595906, 41.741027816458924 ], [ -83.423942376370178, 41.740826124191045 ], [ -83.424215152595906, 41.740624431923166 ], [ -83.434307872947684, 41.736993971101349 ], [ -83.451765551394018, 41.734573663886799 ], [ -83.4539477611998, 41.732556741208015 ] ] ], [ [ [ -90.418197580157113, 46.566111940927286 ], [ -90.417924803931385, 46.566111940927286 ], [ -90.398557691904983, 46.575793169785484 ], [ -90.397466587002086, 46.576398246589122 ], [ -90.397193810776372, 46.576398246589122 ], [ -90.396648258324916, 46.576599938857001 ], [ -90.395011600970577, 46.577608400196389 ], [ -90.371825621784041, 46.589104859465493 ], [ -90.355459048240604, 46.597172550180645 ], [ -90.353276838434823, 46.59818101152004 ], [ -90.348366866371776, 46.60060131873459 ], [ -90.347821313920335, 46.600803011002469 ], [ -90.327635873216764, 46.60766054811036 ], [ -90.327635873216764, 46.60766054811036 ], [ -90.306632103836023, 46.602819933681261 ], [ -90.295448278581347, 46.607055471306722 ], [ -90.284537229552384, 46.611089316664298 ], [ -90.284264453326671, 46.611291008932177 ], [ -90.283173348423759, 46.611694393467936 ], [ -90.279627257489352, 46.613106239343082 ], [ -90.278263376360741, 46.613509623878841 ], [ -90.265170117525997, 46.618551930575819 ], [ -90.265170117525997, 46.618551930575819 ], [ -90.251804082465526, 46.621375622326127 ], [ -90.250167425111172, 46.621779006861885 ], [ -90.237619718727871, 46.624401006344314 ], [ -90.163970137782414, 46.645578694471595 ], [ -90.100686053414478, 46.655058231061915 ], [ -90.045312479592511, 46.668369920741924 ], [ -90.028400353597632, 46.674420688778291 ], [ -89.995939982736488, 46.693178069691029 ], [ -89.985847262384709, 46.703262683084986 ], [ -89.973845108452849, 46.710321912460742 ], [ -89.957205758683685, 46.716977757300754 ], [ -89.918471534630896, 46.740374060374712 ], [ -89.907560485601934, 46.749853596965025 ], [ -89.892285016961395, 46.763165286645034 ], [ -89.888738926026988, 46.765787286127463 ], [ -89.875100114740789, 46.776073591789284 ], [ -89.862552408357487, 46.785351436111718 ], [ -89.851914135554267, 46.793217434558997 ], [ -89.851095806877083, 46.794024203630514 ], [ -89.84864082084556, 46.795637741773547 ], [ -89.847004163491221, 46.796646203112942 ], [ -89.844821953685425, 46.797654664452338 ], [ -89.841548638976747, 46.799268202595371 ], [ -89.83200147107641, 46.804108817024463 ], [ -89.830910366173512, 46.804512201560222 ], [ -89.830092037496343, 46.804713893828101 ], [ -89.828182603916275, 46.805318970631731 ], [ -89.790539484766384, 46.818428968043868 ], [ -89.788357274960589, 46.818832352579626 ], [ -89.786993393831963, 46.819034044847506 ], [ -89.757533561453783, 46.824076351544477 ], [ -89.724527638141183, 46.829723735045093 ], [ -89.720163218529606, 46.83032881184873 ], [ -89.717981008723811, 46.830530504116609 ], [ -89.713343812886507, 46.830732196384488 ], [ -89.710070498177828, 46.830933888652368 ], [ -89.708979393274916, 46.831135580920247 ], [ -89.708433840823474, 46.831135580920247 ], [ -89.708161064597761, 46.831135580920247 ], [ -89.678428455993838, 46.832950811331159 ], [ -89.677882903542397, 46.832950811331159 ], [ -89.676791798639499, 46.832950811331159 ], [ -89.673245707705092, 46.833152503599038 ], [ -89.660698001321791, 46.831135580920247 ], [ -89.659606896418893, 46.830732196384488 ], [ -89.651696385872896, 46.828311889169939 ], [ -89.646786413809878, 46.826698351026906 ], [ -89.643513099101185, 46.82568988968751 ], [ -89.642149217972559, 46.825286505151752 ], [ -89.637239245909541, 46.821454352062048 ], [ -89.635057036103746, 46.819437429383264 ], [ -89.619236015011751, 46.818832352579626 ], [ -89.598505021856738, 46.824278043812356 ], [ -89.578319581153167, 46.829723735045093 ], [ -89.572318504187251, 46.831135580920247 ], [ -89.570409070607184, 46.831740657723884 ], [ -89.569863518155728, 46.831942349991763 ], [ -89.564407993641254, 46.832547426795401 ], [ -89.542313119357615, 46.835169426277822 ], [ -89.540676462003262, 46.835371118545702 ], [ -89.539039804648922, 46.835572810813581 ], [ -89.535766489940244, 46.835976195349339 ], [ -89.534402608811618, 46.836177887617218 ], [ -89.525673769588451, 46.838598194831761 ], [ -89.516944930365298, 46.84101850204631 ], [ -89.515581049236658, 46.841421886582069 ], [ -89.513944391882319, 46.841825271117827 ], [ -89.50030558059612, 46.841623578849948 ], [ -89.499214475693236, 46.841623578849948 ], [ -89.499214475693236, 46.841623578849948 ], [ -89.497850594564611, 46.84101850204631 ], [ -89.494031727404476, 46.839606656171156 ], [ -89.491303965147239, 46.838396502563882 ], [ -89.491303965147239, 46.838396502563882 ], [ -89.491031188921511, 46.838396502563882 ], [ -89.485030111955581, 46.838194810296002 ], [ -89.47521016782953, 46.837589733492365 ], [ -89.471936853120837, 46.837388041224486 ], [ -89.471664076895109, 46.837388041224486 ], [ -89.470845748217954, 46.837388041224486 ], [ -89.470572971992226, 46.837388041224486 ], [ -89.470572971992226, 46.837388041224486 ], [ -89.469754643315042, 46.837388041224486 ], [ -89.469481867089328, 46.837589733492365 ], [ -89.453115293545892, 46.838598194831761 ], [ -89.448478097708588, 46.83879988709964 ], [ -89.448478097708588, 46.83879988709964 ], [ -89.44656866412852, 46.839001579367519 ], [ -89.446023111677079, 46.839001579367519 ], [ -89.445204782999895, 46.839001579367519 ], [ -89.440022034711149, 46.839404963903277 ], [ -89.437021496228184, 46.839606656171156 ], [ -89.434020957745219, 46.840211732974794 ], [ -89.415199398170273, 46.844043886064497 ], [ -89.413289964590206, 46.844447270600256 ], [ -89.401015034432618, 46.848279423689959 ], [ -89.395286733692416, 46.850094654100864 ], [ -89.37210075450588, 46.857355575744506 ], [ -89.370736873377268, 46.857758960280265 ], [ -89.336094292710328, 46.870868957692394 ], [ -89.317272733135383, 46.877726494800285 ], [ -89.304725026752081, 46.882567109229377 ], [ -89.285903467177121, 46.88962633860514 ], [ -89.27853850908258, 46.892248338087569 ], [ -89.24989700538157, 46.902938028285149 ], [ -89.2490786767044, 46.903341412820907 ], [ -89.228347683549387, 46.912820949411227 ], [ -89.227802131097945, 46.913022641679106 ], [ -89.226165473743592, 46.914031103018495 ], [ -89.202706718331342, 46.930166484448812 ], [ -89.201615613428444, 46.931174945788207 ], [ -89.199706179848377, 46.93299017619912 ], [ -89.183612382530669, 46.949528942165188 ], [ -89.168609690115858, 46.965260939059753 ], [ -89.16833691389013, 46.965462631327632 ], [ -89.14269594867207, 46.984825089044008 ], [ -89.142423172446343, 46.985026781311888 ], [ -89.142150396220629, 46.985026781311888 ], [ -89.128784361160157, 46.992691087491295 ], [ -89.127966032482988, 46.992691087491295 ], [ -89.124692717774295, 46.993296164294932 ], [ -89.118418864582651, 46.994304625634321 ], [ -89.118146088356923, 46.993901241098563 ], [ -89.115963878551128, 46.991884318419778 ], [ -89.113236116293891, 46.98926231893735 ], [ -89.106143934425063, 46.986438627187042 ], [ -89.086776822398676, 46.985228473579767 ], [ -89.063045290760698, 46.988455549865833 ], [ -89.058680871149107, 46.990674164812503 ], [ -89.048042598345873, 46.995514779241596 ], [ -89.039586535348434, 46.999346932331292 ], [ -89.038222654219823, 46.999548624599171 ], [ -89.0289482625452, 47.001162162742204 ], [ -89.027584381416574, 46.999750316867051 ], [ -89.022947185579284, 46.995111394705837 ], [ -88.998942877715564, 46.995313086973717 ], [ -88.998397325264122, 46.995313086973717 ], [ -88.992396248298206, 46.996321548313112 ], [ -88.99185069584675, 46.996523240580991 ], [ -88.987213500009446, 46.997330009652508 ], [ -88.982576304172142, 46.998741855527655 ], [ -88.978757437012007, 47.000153701402809 ], [ -88.978484660786279, 47.000153701402809 ], [ -88.972756360046077, 47.0021706240816 ], [ -88.960208653662775, 47.008019699850095 ], [ -88.959390324985606, 47.008423084385853 ], [ -88.95720811517981, 47.010036622528879 ], [ -88.944114856345067, 47.020121235922829 ], [ -88.933203807316104, 47.032222771995563 ], [ -88.925566072995835, 47.040895539514366 ], [ -88.924474968092937, 47.042105693121634 ], [ -88.923383863190054, 47.043920923532546 ], [ -88.914927800192601, 47.058039382284072 ], [ -88.914109471515431, 47.059249535891347 ], [ -88.908381170775229, 47.074376455982268 ], [ -88.904016751163653, 47.085671222983493 ], [ -88.903743974937925, 47.086074607519251 ], [ -88.89992510777779, 47.089906760608947 ], [ -88.890650716103181, 47.098982912663502 ], [ -88.890377939877453, 47.09938629719926 ], [ -88.890105163651725, 47.099587989467139 ], [ -88.889014058748842, 47.100596450806535 ], [ -88.885467967814421, 47.102008296681689 ], [ -88.885467967814421, 47.102008296681689 ], [ -88.872101932753949, 47.107453987914418 ], [ -88.855462582984785, 47.114311525022302 ], [ -88.855189806759071, 47.114311525022302 ], [ -88.85464425430763, 47.114311525022302 ], [ -88.848097624890244, 47.115118294093818 ], [ -88.826002750606619, 47.13246382913141 ], [ -88.825729974380891, 47.132867213667168 ], [ -88.825457198155163, 47.133068905935048 ], [ -88.816728358931996, 47.139926443042931 ], [ -88.816455582706269, 47.14012813531081 ], [ -88.815364477803371, 47.140934904382327 ], [ -88.815364477803371, 47.140934904382327 ], [ -88.814818925351929, 47.141338288918085 ], [ -88.813727820449031, 47.141741673453843 ], [ -88.798725128034221, 47.147590749222331 ], [ -88.789723512585326, 47.151019517776277 ], [ -88.784540764296565, 47.150817825508398 ], [ -88.78372243561941, 47.150616133240518 ], [ -88.779085239782091, 47.150414440972639 ], [ -88.777994134879208, 47.150414440972639 ], [ -88.764355323593009, 47.155860132205369 ], [ -88.750443736081081, 47.167759976010231 ], [ -88.746624868920946, 47.17098705229629 ], [ -88.746624868920946, 47.171188744564169 ], [ -88.729712742926068, 47.185912280119339 ], [ -88.728621638023171, 47.18651735692297 ], [ -88.728348861797457, 47.186719049190849 ], [ -88.712255064479734, 47.197005354852678 ], [ -88.702162344127942, 47.203257815156924 ], [ -88.702162344127942, 47.203257815156924 ], [ -88.699980134322161, 47.204669661032078 ], [ -88.699707358096433, 47.204871353299957 ], [ -88.698889029419263, 47.205274737835715 ], [ -88.698343476967807, 47.205476430103595 ], [ -88.676521378909911, 47.216972889372698 ], [ -88.674884721555557, 47.217779658444215 ], [ -88.673793616652659, 47.218384735247845 ], [ -88.673248064201218, 47.218788119783603 ], [ -88.672429735524048, 47.219191504319362 ], [ -88.666701434783846, 47.221410119266032 ], [ -88.657427043109237, 47.225242272355729 ], [ -88.656335938206325, 47.225645656891487 ], [ -88.647879875208901, 47.226250733695124 ], [ -88.642151574468699, 47.226654118230883 ], [ -88.640242140888631, 47.226855810498762 ], [ -88.633968287696973, 47.228872733177553 ], [ -88.625239448473806, 47.23189811719574 ], [ -88.623602791119453, 47.232301501731499 ], [ -88.623330014893739, 47.232503193999378 ], [ -88.618692819056434, 47.234721808946041 ], [ -88.609963979833267, 47.238957346571496 ], [ -88.609963979833267, 47.238957346571496 ], [ -88.6080545462532, 47.239159038839375 ], [ -88.598507378352863, 47.24036919244665 ], [ -88.585141343292392, 47.242386115125441 ], [ -88.584868567066664, 47.242386115125441 ], [ -88.58459579084095, 47.242386115125441 ], [ -88.573957518037702, 47.246016575947266 ], [ -88.57341196558626, 47.246419960483024 ], [ -88.57341196558626, 47.246419960483024 ], [ -88.571775308231921, 47.24742842182242 ], [ -88.526767230987474, 47.276673800664867 ], [ -88.518038391764307, 47.282321184165475 ], [ -88.51531062950707, 47.284136414576388 ], [ -88.514765077055614, 47.284338106844267 ], [ -88.512310091024105, 47.2859516449873 ], [ -88.504945132929549, 47.290792259416392 ], [ -88.501126265769415, 47.293212566630942 ], [ -88.500853489543701, 47.293414258898821 ], [ -88.49867127973792, 47.295229489309733 ], [ -88.487214678257516, 47.305314102703676 ], [ -88.47903139148579, 47.312373332079446 ], [ -88.477667510357165, 47.313381793418841 ], [ -88.471120880939793, 47.326491790830971 ], [ -88.470575328488337, 47.327701944438246 ], [ -88.465938132651047, 47.332744251135217 ], [ -88.465119803973863, 47.333551020206734 ], [ -88.459391503233661, 47.33980348051098 ], [ -88.458845950782219, 47.340206865046738 ], [ -88.432113880661277, 47.360779476370396 ], [ -88.431841104435549, 47.361182860906155 ], [ -88.431568328209835, 47.361384553174034 ], [ -88.418747845600805, 47.371065782032218 ], [ -88.418747845600805, 47.371267474300097 ], [ -88.400199062251573, 47.379536857283135 ], [ -88.399653509800132, 47.379738549551014 ], [ -88.394197985285643, 47.382360549033443 ], [ -88.391470223028421, 47.383570702640711 ], [ -88.389560789448353, 47.384377471712227 ], [ -88.378922516645105, 47.387604547998293 ], [ -88.360373733295887, 47.39305023923103 ], [ -88.324094495274608, 47.403538237160731 ], [ -88.303363502119595, 47.412211004679527 ], [ -88.3011812923138, 47.413421158286802 ], [ -88.285633047447533, 47.422093925805598 ], [ -88.285087494996077, 47.422295618073477 ], [ -88.283996390093193, 47.422497310341356 ], [ -88.274721998418585, 47.424110848484389 ], [ -88.239533865300189, 47.429959924252877 ], [ -88.239261089074461, 47.429959924252877 ], [ -88.238169984171577, 47.430363308788635 ], [ -88.22862281627124, 47.43459884641409 ], [ -88.227531711368329, 47.435002230949848 ], [ -88.225895054013989, 47.436212384557123 ], [ -88.218530095919448, 47.44165807578986 ], [ -88.216893438565108, 47.445490228879557 ], [ -88.217711767242278, 47.448717305165616 ], [ -88.217711767242278, 47.448717305165616 ], [ -88.213074571404974, 47.449927458772891 ], [ -88.213074571404974, 47.449927458772891 ], [ -88.207891823116213, 47.451137612380165 ], [ -88.207346270664772, 47.451339304648045 ], [ -88.205982389536146, 47.451742689183803 ], [ -88.181705305446712, 47.457591764952298 ], [ -88.181705305446712, 47.457591764952298 ], [ -88.180068648092373, 47.457793457220177 ], [ -88.169430375289153, 47.458600226291694 ], [ -88.167793717934799, 47.458801918559566 ], [ -88.16697538925763, 47.458801918559566 ], [ -88.150881591939907, 47.46001207216684 ], [ -88.150608815714193, 47.46001207216684 ], [ -88.150336039488479, 47.46021376443472 ], [ -88.143516633845366, 47.461827302577753 ], [ -88.140516095362415, 47.46243237938139 ], [ -88.139697766685231, 47.462634071649262 ], [ -88.137788333105163, 47.462835763917141 ], [ -88.129332270107724, 47.463844225256537 ], [ -88.128513941430555, 47.464045917524416 ], [ -88.090325269829208, 47.468281455149878 ], [ -88.09005249360348, 47.468483147417757 ], [ -88.085142521540462, 47.468886531953515 ], [ -88.084869745314734, 47.468886531953515 ], [ -88.083505864186108, 47.468684839685636 ], [ -88.081869206831769, 47.468483147417757 ], [ -88.081323654380327, 47.468483147417757 ], [ -88.081050878154599, 47.468281455149878 ], [ -88.080778101928871, 47.468281455149878 ], [ -88.080232549477415, 47.468281455149878 ], [ -88.079141444574532, 47.468079762881999 ], [ -88.076413682317281, 47.467676378346241 ], [ -88.074777024962941, 47.46787807061412 ], [ -88.073958696285771, 47.46787807061412 ], [ -88.073685920060058, 47.46787807061412 ], [ -88.067139290642672, 47.468483147417757 ], [ -88.04940883597061, 47.469693301025032 ], [ -88.048317731067726, 47.47009668556079 ], [ -88.048044954841998, 47.474937299989882 ], [ -88.04777217861627, 47.474937299989882 ], [ -88.046681073713387, 47.475138992257762 ], [ -88.040407220521729, 47.475945761329278 ], [ -88.040134444296001, 47.475945761329278 ], [ -88.036588353361594, 47.476147453597157 ], [ -88.03113282884712, 47.476550838132916 ], [ -88.03113282884712, 47.476550838132916 ], [ -88.027041185461258, 47.476752530400795 ], [ -88.021585660946783, 47.476954222668674 ], [ -88.017221241335193, 47.477357607204432 ], [ -88.015584583980853, 47.477357607204432 ], [ -88.014493479077956, 47.477357607204432 ], [ -88.010947388143549, 47.477559299472311 ], [ -88.010401835692107, 47.47776099174019 ], [ -88.009583507014923, 47.47776099174019 ], [ -87.982305884442539, 47.479172837615337 ], [ -87.981760331991097, 47.479172837615337 ], [ -87.979032569733846, 47.479374529883216 ], [ -87.978214241056676, 47.479374529883216 ], [ -87.962665996190424, 47.479172837615337 ], [ -87.959119905256003, 47.479172837615337 ], [ -87.958028800353105, 47.479172837615337 ], [ -87.957483247901664, 47.479172837615337 ], [ -87.956664919224494, 47.479172837615337 ], [ -87.955301038095868, 47.479172837615337 ], [ -87.954755485644426, 47.479172837615337 ], [ -87.954482709418699, 47.479172837615337 ], [ -87.952027723387175, 47.478971145347458 ], [ -87.948208856227041, 47.478971145347458 ], [ -87.929660072877823, 47.478769453079579 ], [ -87.929387296652095, 47.478769453079579 ], [ -87.928841744200639, 47.478769453079579 ], [ -87.928023415523484, 47.478567760811707 ], [ -87.927477863072028, 47.478567760811707 ], [ -87.922295114783282, 47.478366068543828 ], [ -87.92120400988037, 47.478164376275949 ], [ -87.920385681203214, 47.478164376275949 ], [ -87.920385681203214, 47.478164376275949 ], [ -87.902382450305424, 47.476954222668674 ], [ -87.898018030693848, 47.474937299989882 ], [ -87.81700349165385, 47.471911915971702 ], [ -87.801182470561855, 47.473323761846856 ], [ -87.75671994576885, 47.460617148970478 ], [ -87.730806204325091, 47.449120689701374 ], [ -87.716076288135994, 47.439842845378948 ], [ -87.710347987395792, 47.40616023664316 ], [ -87.712530197201588, 47.401319622214061 ], [ -87.721259036424755, 47.401117929946182 ], [ -87.742535582031223, 47.405756852107402 ], [ -87.751264421254376, 47.405151775303764 ], [ -87.759174931800374, 47.402933160357094 ], [ -87.764903232540576, 47.398697622731632 ], [ -87.800364141884685, 47.392243470159514 ], [ -87.81536683429951, 47.384780856247986 ], [ -87.827096212005628, 47.386192702123139 ], [ -87.834733946325898, 47.390428239748601 ], [ -87.848372757612097, 47.394865469641935 ], [ -87.856828820609536, 47.395470546445573 ], [ -87.882197009601867, 47.395672238713452 ], [ -87.941662226809683, 47.390024855212843 ], [ -87.956937695450222, 47.387201163462535 ], [ -87.965120982221933, 47.374494550586164 ], [ -87.965666534673375, 47.368645474817669 ], [ -87.962665996190424, 47.362594706781302 ], [ -87.954755485644426, 47.356745631012814 ], [ -87.947390527549885, 47.355535477405539 ], [ -87.938661688326704, 47.346862709886743 ], [ -87.938116135875262, 47.34222378772553 ], [ -87.943298884164022, 47.335971327421277 ], [ -87.946299422646973, 47.334156097010371 ], [ -87.958301576578833, 47.334357789278243 ], [ -87.96866707315634, 47.332542558867338 ], [ -87.989125290085639, 47.322659637741268 ], [ -88.016402912658023, 47.306322564043072 ], [ -88.054864360485098, 47.298254873327913 ], [ -88.060047108773858, 47.295834566113371 ], [ -88.071503710254262, 47.286758414058809 ], [ -88.09687189924658, 47.261345188306066 ], [ -88.108874053178425, 47.259126573359396 ], [ -88.117330116175879, 47.255092728001813 ], [ -88.132060032364961, 47.239562423375133 ], [ -88.163156522097495, 47.216367812569061 ], [ -88.194253011830028, 47.209308583193291 ], [ -88.204891284633248, 47.210518736800566 ], [ -88.21225624272779, 47.20951027546117 ], [ -88.227531711368329, 47.200030738870865 ], [ -88.228895592496954, 47.199022277531469 ], [ -88.229168368722682, 47.19882058526359 ], [ -88.235169445688598, 47.191559663619941 ], [ -88.236806103042952, 47.189139356405398 ], [ -88.237078879268665, 47.188937664137519 ], [ -88.240352193977358, 47.179659819815086 ], [ -88.241988851331712, 47.174819205385987 ], [ -88.241988851331712, 47.172197205903565 ], [ -88.242261627557426, 47.171390436832048 ], [ -88.242261627557426, 47.17098705229629 ], [ -88.242534403783154, 47.16090243890234 ], [ -88.242534403783154, 47.158482131687791 ], [ -88.241988851331712, 47.157070285812644 ], [ -88.239533865300189, 47.151221210044156 ], [ -88.239533865300189, 47.151221210044156 ], [ -88.238442760397291, 47.150414440972639 ], [ -88.237078879268665, 47.149405979633244 ], [ -88.236806103042952, 47.149204287365365 ], [ -88.236533326817224, 47.149204287365365 ], [ -88.234351117011443, 47.149405979633244 ], [ -88.231896130979919, 47.149607671901123 ], [ -88.232168907205647, 47.145977211079298 ], [ -88.239806641525917, 47.139523058507173 ], [ -88.247717152071914, 47.135892597685356 ], [ -88.249626585651981, 47.136295982221114 ], [ -88.249899361877695, 47.13710275129263 ], [ -88.250717690554865, 47.139724750775052 ], [ -88.250717690554865, 47.14012813531081 ], [ -88.250717690554865, 47.14032982757869 ], [ -88.253718229037844, 47.142548442525353 ], [ -88.254263781489271, 47.142750134793232 ], [ -88.254263781489271, 47.142951827061111 ], [ -88.255354886392183, 47.143556903864749 ], [ -88.255627662617911, 47.143758596132628 ], [ -88.262447068260997, 47.145170442007782 ], [ -88.262992620712453, 47.145170442007782 ], [ -88.263265396938181, 47.145170442007782 ], [ -88.271994236161333, 47.143556903864749 ], [ -88.28154140406167, 47.138312904899898 ], [ -88.281814180287398, 47.138111212632019 ], [ -88.281814180287398, 47.138111212632019 ], [ -88.288906362156212, 47.129841829648981 ], [ -88.288906362156212, 47.129640137381102 ], [ -88.28917913838194, 47.129640137381102 ], [ -88.289451914607668, 47.126614753362915 ], [ -88.288633585930498, 47.126009676559278 ], [ -88.28836080970477, 47.125807984291406 ], [ -88.287815257253328, 47.125404599755647 ], [ -88.287815257253328, 47.12479952295201 ], [ -88.287269704801872, 47.120967369862313 ], [ -88.287269704801872, 47.120362293058676 ], [ -88.287269704801872, 47.119757216255039 ], [ -88.287815257253328, 47.11713521677261 ], [ -88.287815257253328, 47.116731832236852 ], [ -88.288088033479056, 47.116328447701093 ], [ -88.28836080970477, 47.11471490955806 ], [ -88.28836080970477, 47.114513217290181 ], [ -88.288633585930498, 47.113908140486544 ], [ -88.288906362156212, 47.113504755950785 ], [ -88.288906362156212, 47.113504755950785 ], [ -88.289451914607668, 47.11249629461139 ], [ -88.290543019510565, 47.110681064200477 ], [ -88.290815795736279, 47.110479371932598 ], [ -88.291088571962007, 47.109672602861089 ], [ -88.291634124413463, 47.108865833789572 ], [ -88.294089110444972, 47.104630296164117 ], [ -88.296544096476481, 47.100193066270776 ], [ -88.297635201379393, 47.098579528127743 ], [ -88.297635201379393, 47.098579528127743 ], [ -88.297907977605107, 47.098377835859864 ], [ -88.312910670019932, 47.091923683287739 ], [ -88.315092879825713, 47.091116914216222 ], [ -88.333096110723488, 47.083452608036822 ], [ -88.337460530335079, 47.08163737762591 ], [ -88.340188292592316, 47.080427224018635 ], [ -88.344552712203892, 47.079620454947118 ], [ -88.34646214578396, 47.079418762679239 ], [ -88.346734922009688, 47.079418762679239 ], [ -88.347280474461144, 47.079015378143481 ], [ -88.350008236718367, 47.076393378661059 ], [ -88.35328155142706, 47.069132457017417 ], [ -88.353827103878501, 47.058039382284072 ], [ -88.354099880104229, 47.057837690016193 ], [ -88.35682764236148, 47.047551384354364 ], [ -88.357645971038636, 47.045131077139821 ], [ -88.357645971038636, 47.044727692604063 ], [ -88.358191523490092, 47.042710769925272 ], [ -88.35846429971582, 47.041500616318004 ], [ -88.358737075941548, 47.040290462710729 ], [ -88.359009852167262, 47.039685385907092 ], [ -88.359009852167262, 47.039483693639212 ], [ -88.367738691390429, 47.019112774583434 ], [ -88.368011467616157, 47.018709390047675 ], [ -88.368284243841885, 47.018507697779796 ], [ -88.374012544582087, 47.01225523747555 ], [ -88.374285320807815, 47.012053545207671 ], [ -88.379195292870833, 47.008826468921612 ], [ -88.384378041159579, 47.005196008099787 ], [ -88.385469146062491, 47.004792623564029 ], [ -88.385469146062491, 47.00459093129615 ], [ -88.385741922288219, 47.00459093129615 ], [ -88.386287474739646, 47.003985854492512 ], [ -88.386560250965374, 47.003380777688875 ], [ -88.387651355868286, 47.002372316349479 ], [ -88.388469684545441, 47.001162162742204 ], [ -88.389833565674067, 46.99995200913493 ], [ -88.404563481863164, 46.983413243168854 ], [ -88.405381810540334, 46.982606474097338 ], [ -88.406200139217503, 46.982001397293701 ], [ -88.410291782603366, 46.978774321007641 ], [ -88.410837335054808, 46.978169244204004 ], [ -88.411110111280536, 46.977967551936125 ], [ -88.416292859569296, 46.977160782864615 ], [ -88.416292859569296, 46.977160782864615 ], [ -88.443843258367394, 46.972320168435516 ], [ -88.448480454204713, 46.946705250414887 ], [ -88.450935440236222, 46.939040944235487 ], [ -88.45202654513912, 46.934603714342146 ], [ -88.452299321364848, 46.933796945270629 ], [ -88.454208754944915, 46.926939408162752 ], [ -88.454481531170643, 46.926939408162752 ], [ -88.454754307396357, 46.925527562287598 ], [ -88.455027083622085, 46.924317408680324 ], [ -88.455299859847798, 46.923308947340928 ], [ -88.457754845879322, 46.919073409715466 ], [ -88.474121419422758, 46.889021261801503 ], [ -88.475758076777097, 46.885995877783316 ], [ -88.476030853002825, 46.88196203242574 ], [ -88.476849181679995, 46.868045265942094 ], [ -88.477667510357165, 46.855943729869352 ], [ -88.477667510357165, 46.854935268529957 ], [ -88.477940286582893, 46.852111576779656 ], [ -88.477940286582893, 46.850498038636623 ], [ -88.483668587323095, 46.831740657723884 ], [ -88.482577482420197, 46.826294966491147 ], [ -88.473303090745588, 46.806125739703248 ], [ -88.462392041716626, 46.786763281986872 ], [ -88.43838773385292, 46.786763281986872 ], [ -88.433750538015616, 46.793419126826876 ], [ -88.415201754666384, 46.811773123203864 ], [ -88.381377502676628, 46.838396502563882 ], [ -88.382195831353798, 46.844447270600256 ], [ -88.381923055128084, 46.846060808743289 ], [ -88.381650278902356, 46.847876039154201 ], [ -88.380831950225172, 46.850094654100864 ], [ -88.38028639777373, 46.852514961315414 ], [ -88.378376964193663, 46.854935268529957 ], [ -88.375649201936426, 46.857355575744506 ], [ -88.372375887227747, 46.858162344816023 ], [ -88.368829796293326, 46.857355575744506 ], [ -88.362555943101682, 46.856347114405111 ], [ -88.362010390650227, 46.856347114405111 ], [ -88.360919285747329, 46.856145422137232 ], [ -88.360373733295887, 46.856347114405111 ], [ -88.352190446524162, 46.856952191208748 ], [ -88.351917670298434, 46.856952191208748 ], [ -88.35164489407272, 46.857153883476627 ], [ -88.347553250686857, 46.860582652030573 ], [ -88.334732768077828, 46.870667265424515 ], [ -88.333096110723488, 46.871675726763911 ], [ -88.333096110723488, 46.87187741903179 ], [ -88.310728460214136, 46.889424646337261 ], [ -88.31018290776268, 46.889828030873019 ], [ -88.308819026634069, 46.890634799944536 ], [ -88.308000697956885, 46.891038184480294 ], [ -88.30718236927973, 46.891441569016052 ], [ -88.305000159473934, 46.892853414891206 ], [ -88.29954463495946, 46.896080491177273 ], [ -88.296544096476481, 46.897694029320299 ], [ -88.28917913838194, 46.901929566945753 ], [ -88.288633585930498, 46.902332951481512 ], [ -88.286451376124703, 46.903543105088787 ], [ -88.282086956513126, 46.906165104571215 ], [ -88.282086956513126, 46.906165104571215 ], [ -88.281268627835942, 46.906568489106974 ], [ -88.276904208224366, 46.908585411785765 ], [ -88.274721998418585, 46.909593873125161 ], [ -88.273903669741401, 46.909997257660919 ], [ -88.272539788612789, 46.910602334464556 ], [ -88.261628739583827, 46.915442948893649 ], [ -88.258082648649406, 46.918468332911829 ], [ -88.250172138103423, 46.924922485483961 ], [ -88.24689882339473, 46.92754448496639 ], [ -88.24689882339473, 46.92754448496639 ], [ -88.244443837363221, 46.929561407645174 ], [ -88.243079956234595, 46.930166484448812 ], [ -88.241988851331712, 46.93056986898457 ], [ -88.241443298880256, 46.930771561252449 ], [ -88.2408977464288, 46.930973253520328 ], [ -88.2408977464288, 46.930973253520328 ], [ -88.238442760397291, 46.931981714859724 ], [ -88.235714998140054, 46.93278848393124 ], [ -88.235714998140054, 46.93299017619912 ], [ -88.233260012108531, 46.933796945270629 ], [ -88.232987235882817, 46.933998637538508 ], [ -88.194253011830028, 46.948520480825799 ], [ -88.176795333383694, 46.955176325665803 ], [ -88.167248165483358, 46.958806786487628 ], [ -88.167248165483358, 46.958806786487628 ], [ -88.164793179451834, 46.960218632362782 ], [ -88.163974850774665, 46.960420324630661 ], [ -88.162883745871767, 46.961227093702178 ], [ -88.162883745871767, 46.961227093702178 ], [ -88.162338193420311, 46.961428785970057 ], [ -88.160701536065972, 46.962437247309445 ], [ -88.16015598361453, 46.962638939577324 ], [ -88.156337116454395, 46.964655862256116 ], [ -88.155518787777225, 46.965059246791874 ], [ -88.155246011551498, 46.965059246791874 ], [ -88.145426067425433, 46.966471092667021 ], [ -88.143789410071093, 46.9666727849349 ], [ -88.143516633845366, 46.9666727849349 ], [ -88.142971081393924, 46.966269400399142 ], [ -88.14269830516821, 46.966269400399142 ], [ -88.142425528942482, 46.966269400399142 ], [ -88.142425528942482, 46.966067708131263 ], [ -88.142152752716754, 46.966067708131263 ], [ -88.141879976491026, 46.965866015863384 ], [ -88.132878361042145, 46.962235555041566 ], [ -88.132878361042145, 46.962235555041566 ], [ -88.135333347073654, 46.959613555559145 ], [ -88.150063263262751, 46.943679866396707 ], [ -88.156337116454395, 46.939444328771245 ], [ -88.168066494160527, 46.931780022591845 ], [ -88.170794256417764, 46.929964792180932 ], [ -88.17133980886922, 46.929763099913053 ], [ -88.175704228480797, 46.926939408162752 ], [ -88.176249780932238, 46.926536023626994 ], [ -88.177886438286578, 46.925325870019719 ], [ -88.186069725058303, 46.920081871054862 ], [ -88.187433606186914, 46.919073409715466 ], [ -88.183069186575338, 46.913627718482736 ], [ -88.18197808167244, 46.912417564875469 ], [ -88.175158676029355, 46.904551566428182 ], [ -88.161792640968883, 46.904954950963941 ], [ -88.160701536065972, 46.90515664323182 ], [ -88.130423375010622, 46.909392180857282 ], [ -88.126877284076215, 46.90979556539304 ], [ -88.126331731624759, 46.909997257660919 ], [ -88.124967850496148, 46.910400642196677 ], [ -88.12469507427042, 46.910602334464556 ], [ -88.122785640690353, 46.911005719000315 ], [ -88.106419067146916, 46.915846333429407 ], [ -88.105327962244019, 46.916048025697286 ], [ -88.10287297621251, 46.916854794768803 ], [ -88.102327423761068, 46.916854794768803 ], [ -88.101509095083884, 46.917258179304561 ], [ -88.101236318858156, 46.917258179304561 ], [ -88.100145213955273, 46.917459871572433 ], [ -88.099326885278089, 46.917459871572433 ], [ -88.098781332826647, 46.917661563840312 ], [ -88.098781332826647, 46.917661563840312 ], [ -88.097690227923749, 46.917863256108191 ], [ -88.08405141663755, 46.920081871054862 ], [ -88.083778640411836, 46.920081871054862 ], [ -88.082141983057483, 46.92048525559062 ], [ -88.081869206831769, 46.92048525559062 ], [ -88.079959773251701, 46.920283563322741 ], [ -88.074777024962941, 46.919678486519103 ], [ -88.065229857062604, 46.918468332911829 ], [ -88.063593199708265, 46.91806494837607 ], [ -88.044498863907592, 46.912417564875469 ], [ -88.033042262427188, 46.908988796321523 ], [ -88.032496709975732, 46.908988796321523 ], [ -88.030041723944223, 46.908787104053644 ], [ -88.029496171492781, 46.908585411785765 ], [ -88.004400758726177, 46.906971873642732 ], [ -88.003582430048994, 46.906971873642732 ], [ -87.986397527828387, 46.905963412303336 ], [ -87.986124751602674, 46.905963412303336 ], [ -87.983396989345437, 46.906165104571215 ], [ -87.982305884442539, 46.906366796839094 ], [ -87.975486478799439, 46.906971873642732 ], [ -87.958301576578833, 46.908787104053644 ], [ -87.957210471675936, 46.908988796321523 ], [ -87.956119366773038, 46.908988796321523 ], [ -87.95584659054731, 46.908988796321523 ], [ -87.954755485644426, 46.908988796321523 ], [ -87.916021261591624, 46.909593873125161 ], [ -87.914384604237284, 46.909593873125161 ], [ -87.911384065754319, 46.909593873125161 ], [ -87.91056573707715, 46.909593873125161 ], [ -87.908656303497082, 46.909593873125161 ], [ -87.900745792951085, 46.909593873125161 ], [ -87.900473016725357, 46.909593873125161 ], [ -87.900200240499629, 46.909593873125161 ], [ -87.887925310342069, 46.901526182409995 ], [ -87.87510482773304, 46.892853414891206 ], [ -87.874559275281598, 46.892651722623327 ], [ -87.874013722830142, 46.892450030355448 ], [ -87.847008876483471, 46.884180647372411 ], [ -87.846190547806302, 46.883978955104531 ], [ -87.844553890451962, 46.883978955104531 ], [ -87.841280575743269, 46.88438233964029 ], [ -87.83882558971176, 46.885189108711806 ], [ -87.830096750488593, 46.888617877265744 ], [ -87.827096212005628, 46.88962633860514 ], [ -87.816730715428122, 46.891239876748173 ], [ -87.814002953170871, 46.888819569533624 ], [ -87.813184624493715, 46.888012800462107 ], [ -87.813184624493715, 46.888012800462107 ], [ -87.793271960015858, 46.880751878818472 ], [ -87.788089211727112, 46.880348494282714 ], [ -87.783179239664079, 46.879945109746956 ], [ -87.78236091098691, 46.879945109746956 ], [ -87.782088134761182, 46.879541725211197 ], [ -87.777723715149591, 46.877121417996648 ], [ -87.777450938923877, 46.877121417996648 ], [ -87.777178162698149, 46.876919725728769 ], [ -87.776905386472436, 46.87671803346089 ], [ -87.776632610246708, 46.874902803049977 ], [ -87.776632610246708, 46.87429772624634 ], [ -87.77635983402098, 46.872684188103307 ], [ -87.77635983402098, 46.872482495835428 ], [ -87.778269267601047, 46.870868957692394 ], [ -87.778814820052503, 46.870465573156636 ], [ -87.776905386472436, 46.866835112334819 ], [ -87.766267113669187, 46.861389421102089 ], [ -87.765994337443473, 46.861389421102089 ], [ -87.765721561217745, 46.861389421102089 ], [ -87.755901617091695, 46.860380959762693 ], [ -87.755901617091695, 46.860380959762693 ], [ -87.755628840865967, 46.860582652030573 ], [ -87.754537735963069, 46.86118772883421 ], [ -87.748536658997139, 46.864414805120276 ], [ -87.746627225417072, 46.865423266459665 ], [ -87.745536120514174, 46.865423266459665 ], [ -87.744990568062732, 46.865423266459665 ], [ -87.744445015611291, 46.865423266459665 ], [ -87.741990029579767, 46.865221574191793 ], [ -87.74089892467687, 46.865221574191793 ], [ -87.74089892467687, 46.865019881923914 ], [ -87.74089892467687, 46.864818189656035 ], [ -87.734897847710954, 46.850094654100864 ], [ -87.735170623936668, 46.849892961832985 ], [ -87.735170623936668, 46.849691269565106 ], [ -87.736807281291021, 46.847270962350564 ], [ -87.736534505065293, 46.846464193279047 ], [ -87.736534505065293, 46.846060808743289 ], [ -87.734352295259498, 46.836984656688735 ], [ -87.731624533002261, 46.831135580920247 ], [ -87.727260113390685, 46.827706812366301 ], [ -87.725896232262059, 46.827505120098422 ], [ -87.725623456036331, 46.827303427830543 ], [ -87.713621302104485, 46.825488197419631 ], [ -87.694526966303812, 46.827101735562664 ], [ -87.685798127080631, 46.832547426795401 ], [ -87.685798127080631, 46.832547426795401 ], [ -87.685798127080631, 46.832547426795401 ], [ -87.687980336886426, 46.839203271635398 ], [ -87.687980336886426, 46.839404963903277 ], [ -87.68716200820927, 46.841421886582069 ], [ -87.68716200820927, 46.841825271117827 ], [ -87.686616455757814, 46.841825271117827 ], [ -87.681433707469054, 46.842430347921464 ], [ -87.680615378791884, 46.842430347921464 ], [ -87.679524273888987, 46.841421886582069 ], [ -87.67515985427741, 46.837388041224486 ], [ -87.674614301825954, 46.836984656688735 ], [ -87.673523196923071, 46.829522042777214 ], [ -87.673523196923071, 46.829320350509335 ], [ -87.673250420697343, 46.827505120098422 ], [ -87.673250420697343, 46.827303427830543 ], [ -87.674068749374513, 46.825084812883873 ], [ -87.674341525600227, 46.824076351544477 ], [ -87.671886539568717, 46.820445890722659 ], [ -87.662339371668381, 46.815201891757809 ], [ -87.651428322639418, 46.812378200007501 ], [ -87.6465183505764, 46.813184969079018 ], [ -87.642699483416266, 46.813588353614776 ], [ -87.641881154739082, 46.813790045882655 ], [ -87.640790049836198, 46.813588353614776 ], [ -87.633425091741657, 46.812176507739622 ], [ -87.628787895904338, 46.806125739703248 ], [ -87.628242343452897, 46.80552066289961 ], [ -87.627969567227169, 46.805117278363859 ], [ -87.627424014775727, 46.804512201560222 ], [ -87.627151238549999, 46.804310509292343 ], [ -87.619786280455457, 46.798259741255976 ], [ -87.61787684687539, 46.796646203112942 ], [ -87.616785741972492, 46.795839434041426 ], [ -87.613785203489527, 46.793217434558997 ], [ -87.6135124272638, 46.793015742291118 ], [ -87.610511888780849, 46.790595435076568 ], [ -87.608875231426495, 46.789183589201414 ], [ -87.608056902749325, 46.788376820129905 ], [ -87.59523642014031, 46.782931128897175 ], [ -87.59523642014031, 46.782729436629296 ], [ -87.594418091463126, 46.776880360860801 ], [ -87.593054210334515, 46.76881267014565 ], [ -87.592235881657331, 46.762560209841396 ], [ -87.592235881657331, 46.762560209841396 ], [ -87.591963105431603, 46.760946671698363 ], [ -87.591963105431603, 46.760543287162605 ], [ -87.591417552980175, 46.757517903144418 ], [ -87.591417552980175, 46.756912826340788 ], [ -87.591144776754447, 46.755097595929875 ], [ -87.590872000528719, 46.753685750054721 ], [ -87.590872000528719, 46.753080673251084 ], [ -87.590599224302991, 46.752273904179575 ], [ -87.589780895625822, 46.749853596965025 ], [ -87.587871462045754, 46.744609598000167 ], [ -87.587598685820041, 46.744206213464409 ], [ -87.584598147337061, 46.735735138213499 ], [ -87.583507042434178, 46.732911446463191 ], [ -87.582688713756994, 46.730491139248642 ], [ -87.581597608854111, 46.729482677909246 ], [ -87.573141545856657, 46.720406525854699 ], [ -87.567413245116455, 46.716776065032874 ], [ -87.557320524764677, 46.710321912460742 ], [ -87.5529561051531, 46.707498220710441 ], [ -87.551865000250189, 46.706893143906804 ], [ -87.549137237992966, 46.705077913495892 ], [ -87.543954489704205, 46.701649144941953 ], [ -87.534407321803869, 46.695598376905579 ], [ -87.533588993126699, 46.694993300101942 ], [ -87.532770664449515, 46.694388223298304 ], [ -87.523223496549178, 46.688539147529823 ], [ -87.523496272774906, 46.687934070726186 ], [ -87.523769049000634, 46.684303609904362 ], [ -87.52431460145209, 46.677849457332229 ], [ -87.52431460145209, 46.67764776506435 ], [ -87.51913185316333, 46.670185151152836 ], [ -87.506584146780028, 46.652637923847365 ], [ -87.50331083207135, 46.647797309418266 ], [ -87.503038055845622, 46.647595617150387 ], [ -87.501401398491282, 46.64678884807887 ], [ -87.493490887945285, 46.642755002721294 ], [ -87.492945335493829, 46.642553310453415 ], [ -87.492399783042387, 46.642351618185536 ], [ -87.468941027630137, 46.635897465613411 ], [ -87.467849922727225, 46.635695773345532 ], [ -87.466486041598614, 46.63146023572007 ], [ -87.467577146501498, 46.626216236755219 ], [ -87.464031055567091, 46.614719777486116 ], [ -87.451483349183803, 46.605845317699448 ], [ -87.442481733734908, 46.602819933681261 ], [ -87.411112467776661, 46.601609780073986 ], [ -87.403201957230664, 46.59515562750186 ], [ -87.383834845204262, 46.593138704823069 ], [ -87.381652635398467, 46.580028707410939 ], [ -87.393109236878871, 46.572566093499418 ], [ -87.392836460653157, 46.570952555356385 ], [ -87.382198187849923, 46.553607020318793 ], [ -87.375651558432551, 46.547152867746668 ], [ -87.390381474621648, 46.542513945585455 ], [ -87.393927565556055, 46.533236101263014 ], [ -87.389290369718736, 46.524563333744226 ], [ -87.381379859172753, 46.517302412100577 ], [ -87.366649942983656, 46.507217798706634 ], [ -87.352465579246015, 46.501368722938139 ], [ -87.35110169811739, 46.500763646134502 ], [ -87.312094697838873, 46.492292570883592 ], [ -87.310730816710247, 46.492090878615713 ], [ -87.309366935581636, 46.491889186347834 ], [ -87.259176110048429, 46.488258725526009 ], [ -87.258630557596987, 46.488258725526009 ], [ -87.258085005145546, 46.488258725526009 ], [ -87.205166417355102, 46.490679032740559 ], [ -87.202438655097865, 46.490880725008438 ], [ -87.200256445292069, 46.491284109544196 ], [ -87.175161032525466, 46.497536569848442 ], [ -87.175161032525466, 46.497536569848442 ], [ -87.145973976373014, 46.495317954901779 ], [ -87.127425193023782, 46.494107801294504 ], [ -87.116514143994834, 46.4951162626339 ], [ -87.107512528545939, 46.496124723973296 ], [ -87.098783689322772, 46.503587337884809 ], [ -87.077234367490576, 46.515285489421792 ], [ -87.046137877758056, 46.519924411583006 ], [ -87.02977130421462, 46.525571795083621 ], [ -87.017223597831332, 46.533639485798773 ], [ -87.008767534833879, 46.532631024459377 ], [ -86.97685271642419, 46.526580256423017 ], [ -86.964577786266602, 46.51649564302906 ], [ -86.962941128912263, 46.509638105921184 ], [ -86.946847331594554, 46.484628264704185 ], [ -86.946301779143113, 46.478980881203583 ], [ -86.949575093851792, 46.476358881721154 ], [ -86.947120107820268, 46.472123344095692 ], [ -86.927752995793881, 46.464660730184171 ], [ -86.903748687930175, 46.466072576059325 ], [ -86.889018771741092, 46.458408269879925 ], [ -86.884108799678046, 46.450945655968404 ], [ -86.883836023452318, 46.441466119378092 ], [ -86.875107184229165, 46.43723058175263 ], [ -86.850011771462562, 46.43420519773445 ], [ -86.83746406507926, 46.43420519773445 ], [ -86.815914743247077, 46.437835658556267 ], [ -86.811004771184045, 46.449735502361129 ], [ -86.80882256137825, 46.460626884826596 ], [ -86.80363981308949, 46.466677652862963 ], [ -86.787818791997509, 46.477770727596308 ], [ -86.768451679971108, 46.478980881203583 ], [ -86.750175672847604, 46.479182573471462 ], [ -86.735991309109963, 46.475148728113879 ], [ -86.73108133704693, 46.471719959559934 ], [ -86.730808560821202, 46.468089498738117 ], [ -86.710623120117646, 46.444894887932037 ], [ -86.703258162023104, 46.4394491966993 ], [ -86.698075413734344, 46.438642427627784 ], [ -86.686346036028212, 46.45497950132598 ], [ -86.688801022059721, 46.463248884309024 ], [ -86.686346036028212, 46.471719959559934 ], [ -86.683891049996703, 46.49814164665208 ], [ -86.695893203928549, 46.503183953349051 ], [ -86.701894280894479, 46.511655028599975 ], [ -86.70925923898902, 46.543925791460609 ], [ -86.695620427702835, 46.555018866193947 ], [ -86.678162749256501, 46.561069634230314 ], [ -86.675707763224977, 46.557035788872739 ], [ -86.670797791161959, 46.556430712069101 ], [ -86.656613427424304, 46.558447634747893 ], [ -86.652794560264169, 46.560464557426684 ], [ -86.627426371271838, 46.533639485798773 ], [ -86.629063028626192, 46.518109181172093 ], [ -86.632063567109157, 46.508831336849667 ], [ -86.634518553140666, 46.504595799224205 ], [ -86.641065182558037, 46.50036026159875 ], [ -86.645429602169628, 46.492090878615713 ], [ -86.646520707072511, 46.485838418311459 ], [ -86.636700762946461, 46.478375804399946 ], [ -86.627426371271838, 46.477569035328429 ], [ -86.620606965628753, 46.483821495632675 ], [ -86.618151979597229, 46.489468879133284 ], [ -86.612150902631299, 46.493301032222988 ], [ -86.609423140374076, 46.492897647687229 ], [ -86.606968154342553, 46.478577496667825 ], [ -86.609150364148348, 46.47030811368478 ], [ -86.58623716118754, 46.463248884309024 ], [ -86.55759565748653, 46.487451956454493 ], [ -86.524862510399657, 46.505402568295722 ], [ -86.49512990179575, 46.524966718279984 ], [ -86.483946076541059, 46.536059793013322 ], [ -86.482036642960992, 46.542715637853334 ], [ -86.469216160351976, 46.551388405372123 ], [ -86.459941768677368, 46.55199348217576 ], [ -86.444393523811101, 46.548161329086064 ], [ -86.437301341942288, 46.548968098157573 ], [ -86.390383831117759, 46.563288249176985 ], [ -86.350012949710617, 46.578011784732148 ], [ -86.187983871630621, 46.654049769722519 ], [ -86.16179735396112, 46.66937838208132 ], [ -86.13833859854887, 46.673008842903137 ], [ -86.119789815199638, 46.657276846008578 ], [ -86.112152080879369, 46.655058231061915 ], [ -86.099877150721795, 46.654654846526157 ], [ -86.074236185503736, 46.657881922812216 ], [ -86.036865842579573, 46.667563151670407 ], [ -85.995131080043819, 46.673613919706774 ], [ -85.953669093733765, 46.676840995992833 ], [ -85.923936485129872, 46.68470699444012 ], [ -85.877837302982527, 46.690959454744366 ], [ -85.864471267922056, 46.690152685672849 ], [ -85.857651862278956, 46.689749301137091 ], [ -85.856560757376059, 46.689749301137091 ], [ -85.841012512509792, 46.688942532065575 ], [ -85.840194183832622, 46.688740839797703 ], [ -85.815644323517475, 46.68470699444012 ], [ -85.796549987716801, 46.681278225886174 ], [ -85.794913330362448, 46.681076533618295 ], [ -85.792458344330939, 46.680874841350416 ], [ -85.751269134246627, 46.677446072796471 ], [ -85.750723581795171, 46.677446072796471 ], [ -85.742813071249188, 46.677244380528592 ], [ -85.739812532766223, 46.677244380528592 ], [ -85.738721427863325, 46.677244380528592 ], [ -85.714444343773891, 46.677244380528592 ], [ -85.70107830871342, 46.678051149600108 ], [ -85.674073462366763, 46.6800680722789 ], [ -85.668617937852275, 46.680471456814658 ], [ -85.663707965789257, 46.680269764546779 ], [ -85.647341392245806, 46.679664687743141 ], [ -85.624700965510726, 46.678857918671625 ], [ -85.617336007416185, 46.678051149600108 ], [ -85.595786685583988, 46.675630842385566 ], [ -85.594150028229649, 46.675429150117687 ], [ -85.593604475778207, 46.675429150117687 ], [ -85.587876175038005, 46.67462238104617 ], [ -85.587330622586563, 46.67462238104617 ], [ -85.58487563655504, 46.67462238104617 ], [ -85.558689118885553, 46.674420688778291 ], [ -85.547505293630863, 46.674218996510412 ], [ -85.542595321567831, 46.674218996510412 ], [ -85.50958939825523, 46.675832534653445 ], [ -85.482857328134287, 46.680269764546779 ], [ -85.482038999457131, 46.680471456814658 ], [ -85.369927970684586, 46.713750681014687 ], [ -85.362563012590044, 46.716574372764995 ], [ -85.347014767723778, 46.722625140801362 ], [ -85.296278389739143, 46.742189290785618 ], [ -85.289731760321757, 46.744609598000167 ], [ -85.258089718137796, 46.753080673251084 ], [ -85.256725837009171, 46.753282365518963 ], [ -85.255907508332001, 46.753484057786842 ], [ -85.237904277434211, 46.755702672733513 ], [ -85.172983535711921, 46.763568671180792 ], [ -85.063600269196627, 46.757921287680176 ], [ -85.036322646624242, 46.760341594894726 ], [ -85.009317800277586, 46.769216054681401 ], [ -84.989405135799728, 46.772443130967467 ], [ -84.964582499258853, 46.772846515503225 ], [ -84.953944226455633, 46.771434669628071 ], [ -84.95148924042411, 46.76941774694928 ], [ -84.987495702219661, 46.745416367071684 ], [ -85.007681142923232, 46.728272524301971 ], [ -85.020228849306534, 46.712540527407413 ], [ -85.027593807401075, 46.697413607316491 ], [ -85.030048793432599, 46.68470699444012 ], [ -85.028412136078259, 46.675025765581928 ], [ -85.035504317947073, 46.625006083147944 ], [ -85.037140975301412, 46.601004703270348 ], [ -85.035504317947073, 46.581642245553965 ], [ -85.03141267456121, 46.568733940409714 ], [ -85.029503240981143, 46.55441378939031 ], [ -85.027321031175347, 46.553808712586672 ], [ -85.02541159759528, 46.546346098675151 ], [ -85.027048254949634, 46.543119022389092 ], [ -85.045597038298865, 46.537673331156356 ], [ -85.052961996393407, 46.532832716727256 ], [ -85.056235311102085, 46.526580256423017 ], [ -85.054871429973474, 46.514680412618155 ], [ -85.049961457910442, 46.503990722420568 ], [ -85.033867660592733, 46.487653648722372 ], [ -85.025684373821008, 46.483014726561159 ], [ -85.015318877243502, 46.4797876502751 ], [ -84.969492471321885, 46.476358881721154 ], [ -84.955308107584244, 46.480191034810858 ], [ -84.947397597038247, 46.487451956454493 ], [ -84.93703210046074, 46.489267186865405 ], [ -84.934304338203503, 46.48039272707873 ], [ -84.922029408045915, 46.469904729149022 ], [ -84.91521000240283, 46.467484421934479 ], [ -84.893387904344905, 46.465467499255688 ], [ -84.875111897221416, 46.466879345130842 ], [ -84.861473085935216, 46.469904729149022 ], [ -84.849743708229084, 46.460223500290837 ], [ -84.844015407488882, 46.448727041021733 ], [ -84.829558267525513, 46.44408811886052 ], [ -84.800098435147333, 46.446306733807191 ], [ -84.769274721640528, 46.453567655450826 ], [ -84.723448315718912, 46.468291191005996 ], [ -84.689624063729156, 46.484023187900554 ], [ -84.678440238474465, 46.487653648722372 ], [ -84.653890378159318, 46.482207957489642 ], [ -84.630977175198495, 46.484829956972064 ], [ -84.616520035235141, 46.471921651827813 ], [ -84.608063972237687, 46.456794731736892 ], [ -84.584059664373996, 46.4394491966993 ], [ -84.573421391570761, 46.427952737430203 ], [ -84.551599293512851, 46.418473200839891 ], [ -84.503590677785439, 46.439247504431421 ], [ -84.493497957433647, 46.440255965770817 ], [ -84.479586369921734, 46.432591659591417 ], [ -84.471948635601464, 46.43420519773445 ], [ -84.462674243926841, 46.440861042574454 ], [ -84.455582062058028, 46.453971039986584 ], [ -84.4553092858323, 46.462845499773266 ], [ -84.463219796378297, 46.467484421934479 ], [ -84.445216565480521, 46.489065494597526 ], [ -84.420393928939646, 46.50116703067026 ], [ -84.394752963721601, 46.499150107991476 ], [ -84.375113075469471, 46.508629644581788 ], [ -84.32546780238772, 46.499956877062992 ], [ -84.264365927825565, 46.4951162626339 ], [ -84.226177256224219, 46.533841178066652 ], [ -84.193716885363074, 46.539891946103026 ], [ -84.139434416444004, 46.532227639923626 ], [ -84.128796143640784, 46.530210717244834 ], [ -84.117885094611822, 46.517705796636335 ], [ -84.11133846519445, 46.504192414688447 ], [ -84.124977276480649, 46.470106421416901 ], [ -84.146253822087104, 46.418473200839891 ], [ -84.138888863992563, 46.372285671495604 ], [ -84.115430108580313, 46.268212461270068 ], [ -84.108065150485757, 46.241185697374284 ], [ -84.118157870837535, 46.233924775730642 ], [ -84.124977276480649, 46.232916314391247 ], [ -84.134524444380986, 46.23210954531973 ], [ -84.14598104586139, 46.225050315943967 ], [ -84.147072150764274, 46.224243546872451 ], [ -84.149254360570069, 46.223840162336693 ], [ -84.15061824169868, 46.223840162336693 ], [ -84.151709346601592, 46.224243546872451 ], [ -84.15198212282732, 46.224848623676088 ], [ -84.152254899053034, 46.226260469551242 ], [ -84.152527675278748, 46.227874007694268 ], [ -84.15961985714759, 46.233319698927005 ], [ -84.182805836334111, 46.235538313873676 ], [ -84.219357850581119, 46.231907853051851 ], [ -84.232996661867304, 46.224041854604572 ], [ -84.249090459185027, 46.206494627299108 ], [ -84.245271592024892, 46.192577860815454 ], [ -84.247726578056401, 46.179871247939076 ], [ -84.251545445216536, 46.1758374025815 ], [ -84.220994507935458, 46.163130789705129 ], [ -84.196717423846025, 46.166156173723309 ], [ -84.177350311819623, 46.183905093296659 ], [ -84.171622011079421, 46.181686478349988 ], [ -84.124977276480649, 46.180274632474834 ], [ -84.114884556128857, 46.174022172170595 ], [ -84.113247898774517, 46.168778173205737 ], [ -84.100154639939774, 46.150827561364508 ], [ -84.095790220328183, 46.147802177346321 ], [ -84.089243590910812, 46.146390331471174 ], [ -84.060329310984073, 46.146188639203295 ], [ -84.026505058994303, 46.131666795916004 ], [ -84.031142254831622, 46.123195720665095 ], [ -84.038779989151891, 46.125616027879644 ], [ -84.051873247986634, 46.119766952111149 ], [ -84.061420415886971, 46.113514491806903 ], [ -84.06905815020724, 46.104034955216591 ], [ -84.072331464915919, 46.096774033572949 ], [ -84.071785912464478, 46.092538495947494 ], [ -84.066330387950003, 46.087496189250515 ], [ -84.051600471760906, 46.079226806267485 ], [ -84.027868940122929, 46.054822041854123 ], [ -84.006046842065018, 46.044535736192302 ], [ -83.989407492295854, 46.032837584655319 ], [ -83.963766527077809, 46.027795277958347 ], [ -83.951491596920221, 46.029005431565622 ], [ -83.943853862599951, 46.031425738780165 ], [ -83.938943890536933, 46.029207123833501 ], [ -83.935397799602526, 46.020332664046819 ], [ -83.931306156216664, 46.017912356832277 ], [ -83.908665729481584, 46.011458204260151 ], [ -83.900482442709858, 45.998953283651659 ], [ -83.87320482013746, 45.993507592418922 ], [ -83.868294848074441, 45.995121130561955 ], [ -83.845381645113633, 46.025778355279556 ], [ -83.830106176473095, 46.02234958672561 ], [ -83.818104022541235, 46.002382052205597 ], [ -83.794099714677529, 45.995726207365593 ], [ -83.776369260005481, 46.004197282616502 ], [ -83.765185434750805, 46.018315741368035 ], [ -83.765185434750805, 46.032030815583802 ], [ -83.773914273973958, 46.051393273300185 ], [ -83.796554700709038, 46.056637272265036 ], [ -83.812648498026761, 46.07337773049899 ], [ -83.824105099507165, 46.103631570680832 ], [ -83.815921812735439, 46.108472185109932 ], [ -83.812375721801033, 46.108673877377811 ], [ -83.792735833548903, 46.102018032537799 ], [ -83.779915350939888, 46.09354695728689 ], [ -83.771732064168162, 46.090924957804461 ], [ -83.755911043076182, 46.092135111411736 ], [ -83.728087868052341, 46.090924957804461 ], [ -83.723177895989323, 46.093748649554769 ], [ -83.719904581280616, 46.101009571198404 ], [ -83.703810783962922, 46.103429878412953 ], [ -83.661257692749984, 46.100202802126887 ], [ -83.635071175080498, 46.104034955216591 ], [ -83.625524007180161, 46.102219724805678 ], [ -83.615431286828368, 46.095967264501432 ], [ -83.59851916083349, 46.090118188732944 ], [ -83.581334258612884, 46.089513111929307 ], [ -83.576151510324124, 46.08346234389294 ], [ -83.572605419389703, 46.074991268642023 ], [ -83.572605419389703, 46.069948961945045 ], [ -83.565240461295161, 46.061881271229893 ], [ -83.554056636040485, 46.058855887211706 ], [ -83.547237230397386, 46.04796450474624 ], [ -83.543418363237251, 46.037274814548653 ], [ -83.540963377205742, 46.021341125386215 ], [ -83.532780090434017, 46.011256511992272 ], [ -83.494864195058398, 45.999558360455289 ], [ -83.488317565641012, 45.999558360455289 ], [ -83.480679831320742, 45.996129591901351 ], [ -83.473860425677657, 45.988465285721944 ], [ -83.473314873226201, 45.984431440364368 ], [ -83.481770936223654, 45.971926519755868 ], [ -83.488863118092468, 45.968699443469809 ], [ -83.510685216150392, 45.929369451233413 ], [ -83.51723184556775, 45.923520375464918 ], [ -83.526233461016645, 45.918679761035833 ], [ -83.561967146586483, 45.912628992999458 ], [ -83.582970915967223, 45.915856069285525 ], [ -83.632343412823246, 45.932193142983721 ], [ -83.657711601815578, 45.94550483266373 ], [ -83.687716986645199, 45.93542021926978 ], [ -83.719359028829189, 45.934008373394633 ], [ -83.732997840115374, 45.93763883421645 ], [ -83.742817784241439, 45.938042218752209 ], [ -83.766276539653688, 45.935218527001901 ], [ -83.768731525685212, 45.931991450715842 ], [ -83.786189204131546, 45.933403296590996 ], [ -83.800919120320629, 45.93763883421645 ], [ -83.803374106352152, 45.943286217717059 ], [ -83.808011302189442, 45.945706524931609 ], [ -83.822741218378553, 45.943891294520697 ], [ -83.827651190441571, 45.941269295038268 ], [ -83.835561700987569, 45.941874371841905 ], [ -83.840744449276315, 45.952765754307372 ], [ -83.846472750016517, 45.95316913884313 ], [ -83.864748757140035, 45.959421599147376 ], [ -83.879751449554846, 45.966279136255267 ], [ -83.881115330683457, 45.968094366666172 ], [ -83.910847939287365, 45.965674059451629 ], [ -83.921213435864871, 45.958009753272222 ], [ -83.952309925597405, 45.96547236718375 ], [ -83.985043072684277, 45.967085905326783 ], [ -83.996499674164681, 45.961438521826167 ], [ -84.017503443545422, 45.959018214611618 ], [ -84.079969199236189, 45.97091805841648 ], [ -84.090334695813709, 45.967287597594655 ], [ -84.10533738822852, 45.972934981095264 ], [ -84.107246821808587, 45.977170518720726 ], [ -84.111065688968722, 45.97858236459588 ], [ -84.114339003677401, 45.978380672328001 ], [ -84.140525521346902, 45.975355288309814 ], [ -84.14079829757263, 45.975355288309814 ], [ -84.16943980127364, 45.966884213058904 ], [ -84.172167563530877, 45.966077443987388 ], [ -84.174895325788128, 45.967489289862534 ], [ -84.175168102013842, 45.967690982130414 ], [ -84.178168640496807, 45.969102828005568 ], [ -84.20326405326341, 45.96849775120193 ], [ -84.213902326066631, 45.968296058934051 ], [ -84.219085074355391, 45.968094366666172 ], [ -84.238179410156064, 45.967690982130414 ], [ -84.254000431248045, 45.956799599664947 ], [ -84.254818759925229, 45.955992830593431 ], [ -84.2613653893426, 45.955992830593431 ], [ -84.261910941794042, 45.955992830593431 ], [ -84.266548137631361, 45.95619452286131 ], [ -84.281550830046172, 45.95619452286131 ], [ -84.317557291841723, 45.95619452286131 ], [ -84.31946672542179, 45.95619452286131 ], [ -84.320012277873246, 45.95619452286131 ], [ -84.320557830324688, 45.95619452286131 ], [ -84.324649473710551, 45.95619452286131 ], [ -84.325195026161992, 45.95619452286131 ], [ -84.325740578613448, 45.95619452286131 ], [ -84.32628613106489, 45.95619452286131 ], [ -84.32710445974206, 45.95619452286131 ], [ -84.330104998225025, 45.95619452286131 ], [ -84.330377774450753, 45.955992830593431 ], [ -84.33146887935365, 45.955186061521921 ], [ -84.345380466865564, 45.946513294003125 ], [ -84.353290977411561, 45.941672679574026 ], [ -84.353290977411561, 45.941672679574026 ], [ -84.353836529863003, 45.941470987306147 ], [ -84.357655397023137, 45.939857449163114 ], [ -84.376476956598083, 45.931991450715842 ], [ -84.376476956598083, 45.931991450715842 ], [ -84.387388005627059, 45.937437141948571 ], [ -84.391479649012908, 45.939655756895235 ], [ -84.398026278430279, 45.942882833181301 ], [ -84.398299054656007, 45.94308452544918 ], [ -84.398571830881735, 45.94308452544918 ], [ -84.399117383333177, 45.943487909984938 ], [ -84.399390159558891, 45.943689602252817 ], [ -84.399662935784619, 45.943689602252817 ], [ -84.411119537265023, 45.949538678021312 ], [ -84.428304439485629, 45.958211445540101 ], [ -84.428577215711357, 45.95841313780798 ], [ -84.436487726257354, 45.971724827487989 ], [ -84.436487726257354, 45.971926519755868 ], [ -84.437578831160252, 45.973741750166781 ], [ -84.443034355674726, 45.977775595524363 ], [ -84.443034355674726, 45.977775595524363 ], [ -84.443034355674726, 45.977775595524363 ], [ -84.443307131900454, 45.977775595524363 ], [ -84.459946481669618, 45.970312981612842 ], [ -84.463219796378297, 45.968901135737688 ], [ -84.473585292955804, 45.974346826970418 ], [ -84.478495265018836, 45.976767134184968 ], [ -84.480404698598903, 45.977775595524363 ], [ -84.480677474824631, 45.978380672328001 ], [ -84.482586908404699, 45.981406056346188 ], [ -84.48313246085614, 45.982212825417704 ], [ -84.482586908404699, 45.985036517168005 ], [ -84.482314132178971, 45.985439901703764 ], [ -84.482859684630427, 45.986044978507401 ], [ -84.48395078953331, 45.988263593454064 ], [ -84.485587446887649, 45.988465285721944 ], [ -84.488587985370629, 45.988868670257702 ], [ -84.507136768719846, 45.991087285204372 ], [ -84.514228950588659, 45.987255132114676 ], [ -84.513956174362946, 45.971321442952231 ], [ -84.525139999617636, 45.96849775120193 ], [ -84.532504957712177, 45.969506212541326 ], [ -84.534414391292245, 45.972733288827385 ], [ -84.534687167517973, 45.978178980060122 ], [ -84.530322747906382, 45.991288977472252 ], [ -84.533323286389347, 46.005810820759535 ], [ -84.540961020709616, 46.019525894975303 ], [ -84.544507111644023, 46.022954663529248 ], [ -84.563874223670425, 46.03243420011956 ], [ -84.581059125891031, 46.031022354244413 ], [ -84.586514650405505, 46.026585124351072 ], [ -84.609155077140599, 46.026383432083193 ], [ -84.647616524967674, 46.049779735157152 ], [ -84.656618140416555, 46.052603426907453 ], [ -84.666710860768347, 46.050586504228669 ], [ -84.675712476217228, 46.045947582067456 ], [ -84.68744185392336, 46.03485450733411 ], [ -84.692624602212106, 46.026988508886831 ], [ -84.692624602212106, 46.016903895492881 ], [ -84.686350749020463, 45.979187441399517 ], [ -84.684441315440395, 45.977573903256484 ], [ -84.685259644117565, 45.973540057898902 ], [ -84.687714630149088, 45.971321442952231 ], [ -84.70408120369251, 45.97091805841648 ], [ -84.722902763267456, 45.967287597594655 ], [ -84.730267721362011, 45.961236829558288 ], [ -84.738723784359451, 45.945706524931609 ], [ -84.739269336810906, 45.941874371841905 ], [ -84.732995483619248, 45.932798219787358 ], [ -84.719083896107321, 45.927352528554621 ], [ -84.713628371592847, 45.920293299178859 ], [ -84.713355595367119, 45.916057761553404 ], [ -84.734086588522146, 45.90698160949885 ], [ -84.730267721362011, 45.897300380640658 ], [ -84.729449392684842, 45.895283457961867 ], [ -84.721266105913116, 45.873904077566699 ], [ -84.721266105913116, 45.873904077566699 ], [ -84.715537805172914, 45.86603807911942 ], [ -84.715537805172914, 45.865836386851541 ], [ -84.715265028947186, 45.865836386851541 ], [ -84.709809504432712, 45.860794080154562 ], [ -84.702171770112443, 45.853936543046686 ], [ -84.701626217661001, 45.853533158510928 ], [ -84.70108066520956, 45.853129773975169 ], [ -84.702171770112443, 45.850507774492741 ], [ -84.702171770112443, 45.850507774492741 ], [ -84.704626756143966, 45.849499313153345 ], [ -84.705172308595408, 45.849297620885466 ], [ -84.705990637272578, 45.848894236349707 ], [ -84.705990637272578, 45.848894236349707 ], [ -84.706263413498306, 45.848692544081828 ], [ -84.707627294626917, 45.848692544081828 ], [ -84.709263951981271, 45.848490851813949 ], [ -84.720720553461675, 45.848087467278191 ], [ -84.720720553461675, 45.848087467278191 ], [ -84.720993329687388, 45.847885775010312 ], [ -84.721538882138844, 45.847684082742433 ], [ -84.722629987041742, 45.846675621403037 ], [ -84.722902763267456, 45.84586885233152 ], [ -84.723448315718912, 45.844053621920608 ], [ -84.725630525524707, 45.836994392544852 ], [ -84.726994406653318, 45.836994392544852 ], [ -84.746907071131176, 45.835582546669698 ], [ -84.746907071131176, 45.835582546669698 ], [ -84.75154426696848, 45.837801161616369 ], [ -84.754544805451445, 45.839414699759395 ], [ -84.75836367261158, 45.841229930170307 ], [ -84.773639141252119, 45.849095928617587 ], [ -84.775275798606458, 45.849902697689103 ], [ -84.792733477052792, 45.858777157475778 ], [ -84.820556652076618, 45.868256694066091 ], [ -84.829012715074072, 45.87128207808427 ], [ -84.831467701105581, 45.872088847155787 ], [ -84.832013253557022, 45.872693923959424 ], [ -84.834195463362818, 45.875719307977604 ], [ -84.834195463362818, 45.875921000245484 ], [ -84.835013792040002, 45.877131153852758 ], [ -84.83828710674868, 45.881164999210341 ], [ -84.838559882974408, 45.88136669147822 ], [ -84.838559882974408, 45.881568383746099 ], [ -84.83828710674868, 45.883585306424891 ], [ -84.837741554297224, 45.887215767246708 ], [ -84.837741554297224, 45.888224228586104 ], [ -84.837741554297224, 45.889030997657621 ], [ -84.837741554297224, 45.889030997657621 ], [ -84.839650987877292, 45.893064843015196 ], [ -84.840742092780204, 45.895081765693988 ], [ -84.842105973908815, 45.897905457444296 ], [ -84.842378750134543, 45.898107149712175 ], [ -84.843197078811713, 45.898308841980054 ], [ -84.844560959940338, 45.898712226515812 ], [ -84.84592484106895, 45.898913918783691 ], [ -84.850562036906268, 45.899720687855208 ], [ -84.853017022937763, 45.900124072390966 ], [ -84.853289799163491, 45.900325764658845 ], [ -84.856017561420742, 45.90153591826612 ], [ -84.859018099903693, 45.902947764141274 ], [ -84.860654757258033, 45.903754533212783 ], [ -84.861473085935216, 45.904157917748542 ], [ -84.867746939126874, 45.907183301766722 ], [ -84.870474701384097, 45.908393455373997 ], [ -84.873202463641348, 45.90980530124915 ], [ -84.873202463641348, 45.90980530124915 ], [ -84.877294107027211, 45.913435762070975 ], [ -84.87893076438155, 45.915049300214008 ], [ -84.879476316832992, 45.915452684749766 ], [ -84.87974909305872, 45.915856069285525 ], [ -84.902662296019528, 45.923520375464918 ], [ -84.902935072245242, 45.923722067732797 ], [ -84.917392212208625, 45.930579604840688 ], [ -84.917392212208625, 45.930579604840688 ], [ -84.936486548009299, 45.955186061521921 ], [ -84.93703210046074, 45.955791138325552 ], [ -84.93703210046074, 45.955992830593431 ], [ -84.971129128676239, 45.984229748096489 ], [ -84.973584114707734, 45.986044978507401 ], [ -84.974675219610646, 45.986851747578918 ], [ -84.974675219610646, 45.986851747578918 ], [ -84.992405674282693, 45.99875159138378 ], [ -85.003589499537384, 46.006214205295294 ], [ -85.010136128954741, 46.009037897045602 ], [ -85.010954457631925, 46.00944128158136 ], [ -85.013954996114876, 46.010853127456514 ], [ -85.021047177983704, 46.012870050135305 ], [ -85.046960919427477, 46.020534356314698 ], [ -85.048052024330374, 46.020937740850457 ], [ -85.048870353007544, 46.021139433118336 ], [ -85.054325877522018, 46.022752971261369 ], [ -85.055689758650644, 46.023156355797127 ], [ -85.081876276320145, 46.027391893422589 ], [ -85.088422905737502, 46.028400354761985 ], [ -85.08869568196323, 46.028400354761985 ], [ -85.102880045700886, 46.03243420011956 ], [ -85.102880045700886, 46.03243420011956 ], [ -85.105062255506681, 46.033644353726835 ], [ -85.10669891286102, 46.034451122798352 ], [ -85.113518318504106, 46.037678199084411 ], [ -85.124702143758796, 46.043325582585027 ], [ -85.125247696210238, 46.043527274852906 ], [ -85.127157129790305, 46.044334043924422 ], [ -85.127157129790305, 46.044535736192302 ], [ -85.130430444498998, 46.046149274335335 ], [ -85.133703759207691, 46.04715773567473 ], [ -85.137522626367826, 46.048569581549877 ], [ -85.139704836173607, 46.049174658353515 ], [ -85.140795941076505, 46.049578042889273 ], [ -85.142432598430844, 46.049779735157152 ], [ -85.145160360688095, 46.049981427425031 ], [ -85.147069794268162, 46.05018311969291 ], [ -85.151706990105453, 46.050788196496548 ], [ -85.151706990105453, 46.050788196496548 ], [ -85.151979766331181, 46.050788196496548 ], [ -85.190713990383983, 46.047561120210482 ], [ -85.194805633769846, 46.045947582067456 ], [ -85.195078409995574, 46.045745889799576 ], [ -85.197533396027069, 46.04493912072806 ], [ -85.210899431087554, 46.05320850371109 ], [ -85.214718298247689, 46.05562881092564 ], [ -85.217718836730654, 46.057645733604431 ], [ -85.220173822762163, 46.059259271747464 ], [ -85.221264927665061, 46.059864348551102 ], [ -85.222356032567959, 46.060671117622618 ], [ -85.222628808793672, 46.060671117622618 ], [ -85.2229015850194, 46.060671117622618 ], [ -85.225083794825196, 46.061074502158377 ], [ -85.24854255023746, 46.063696501640798 ], [ -85.255361955880545, 46.064503270712315 ], [ -85.266273004909507, 46.06571342431959 ], [ -85.268182438489575, 46.066318501123227 ], [ -85.278275158841353, 46.069343885141407 ], [ -85.28782232674169, 46.072369269159594 ], [ -85.28782232674169, 46.072369269159594 ], [ -85.290004536547485, 46.07337773049899 ], [ -85.295187284836231, 46.076201422249298 ], [ -85.304188900285141, 46.080638652142632 ], [ -85.310735529702498, 46.083865728428691 ], [ -85.316191054216972, 46.086689420178999 ], [ -85.335558166243374, 46.092538495947494 ], [ -85.335830942469102, 46.092538495947494 ], [ -85.336376494920557, 46.092538495947494 ], [ -85.356016383172673, 46.092135111411736 ], [ -85.356289159398401, 46.092135111411736 ], [ -85.356289159398401, 46.091933419143857 ], [ -85.366654655975907, 46.086689420178999 ], [ -85.367200208427363, 46.086689420178999 ], [ -85.38138457216499, 46.082050498017786 ], [ -85.38138457216499, 46.082050498017786 ], [ -85.382202900842174, 46.083058959357182 ], [ -85.382748453293615, 46.08346234389294 ], [ -85.383021229519343, 46.083664036160812 ], [ -85.390113411388171, 46.091328342340219 ], [ -85.393932278548306, 46.095563879965674 ], [ -85.404297775125798, 46.09879095625174 ], [ -85.409480523414572, 46.100606186662645 ], [ -85.411935509446067, 46.101412955734162 ], [ -85.426938201860892, 46.102018032537799 ], [ -85.429120411666673, 46.101009571198404 ], [ -85.429665964118129, 46.100807878930524 ], [ -85.432120950149653, 46.099799417591129 ], [ -85.437303698438399, 46.097580802644465 ], [ -85.437849250889855, 46.097580802644465 ], [ -85.441668118049989, 46.095967264501432 ], [ -85.441940894275717, 46.095765572233553 ], [ -85.441940894275717, 46.095765572233553 ], [ -85.441940894275717, 46.095765572233553 ], [ -85.442213670501431, 46.094958803162044 ], [ -85.442213670501431, 46.093950341822648 ], [ -85.442213670501431, 46.093950341822648 ], [ -85.440849789372805, 46.093143572751131 ], [ -85.440304236921364, 46.092538495947494 ], [ -85.445759761435852, 46.08648772791112 ], [ -85.446032537661566, 46.086286035643241 ], [ -85.447123642564463, 46.085075882035966 ], [ -85.453124719530393, 46.087294496982636 ], [ -85.466763530816593, 46.091731726875977 ], [ -85.468945740622374, 46.092538495947494 ], [ -85.476037922491201, 46.094958803162044 ], [ -85.480402342102778, 46.096370649037191 ], [ -85.480675118328506, 46.096370649037191 ], [ -85.480675118328506, 46.096370649037191 ], [ -85.486403419068708, 46.09657234130507 ], [ -85.499496677903451, 46.096975725840828 ], [ -85.500042230354893, 46.096975725840828 ], [ -85.500315006580621, 46.096975725840828 ], [ -85.512589936738209, 46.094757110894164 ], [ -85.521318775961362, 46.091328342340219 ], [ -85.52159155218709, 46.091328342340219 ], [ -85.52159155218709, 46.09112665007234 ], [ -85.528410957830189, 46.087092804714757 ], [ -85.528956510281631, 46.086891112446878 ], [ -85.528956510281631, 46.086689420178999 ], [ -85.533320929893222, 46.08406742069657 ], [ -85.53959478308488, 46.080436959874753 ], [ -85.540958664213491, 46.079630190803236 ], [ -85.542868097793558, 46.07801665266021 ], [ -85.545868636276509, 46.075596345445661 ], [ -85.561144104917062, 46.063696501640798 ], [ -85.563599090948571, 46.061881271229893 ], [ -85.603697196129986, 46.030417277440776 ], [ -85.615699350061846, 46.01165989652803 ], [ -85.617608783641913, 46.008634512509843 ], [ -85.617608783641913, 46.008432820241964 ], [ -85.625246517962182, 46.002583744473476 ], [ -85.628247056445133, 45.999961744991047 ], [ -85.629065385122317, 45.99935666818741 ], [ -85.629338161348045, 45.999154975919538 ], [ -85.646250287342923, 45.985641593971643 ], [ -85.646250287342923, 45.985439901703764 ], [ -85.647341392245806, 45.984633132632247 ], [ -85.647614168471534, 45.984431440364368 ], [ -85.648705273374446, 45.983624671292851 ], [ -85.64897804960016, 45.983019594489221 ], [ -85.650341930728786, 45.980599287274671 ], [ -85.650887483180227, 45.979792518203155 ], [ -85.654706350340362, 45.973741750166781 ], [ -85.654706350340362, 45.973741750166781 ], [ -85.663980742014985, 45.967085905326783 ], [ -85.664526294466427, 45.966884213058904 ], [ -85.688257826104405, 45.962043598629805 ], [ -85.697259441553285, 45.960228368218893 ], [ -85.697532217779013, 45.960228368218893 ], [ -85.701623861164876, 45.961035137290409 ], [ -85.704351623422113, 45.961438521826167 ], [ -85.704897175873555, 45.961640214094047 ], [ -85.706533833227908, 45.962043598629805 ], [ -85.716353777353959, 45.963858829040717 ], [ -85.724264287899956, 45.96547236718375 ], [ -85.72508261657714, 45.96547236718375 ], [ -85.731902022220225, 45.965270674915871 ], [ -85.743631399926358, 45.965270674915871 ], [ -85.743631399926358, 45.965270674915871 ], [ -85.760270749695508, 45.968901135737688 ], [ -85.770909022498756, 45.971321442952231 ], [ -85.774182337207435, 45.972329904291627 ], [ -85.790276134525158, 45.977573903256484 ], [ -85.790548910750871, 45.977573903256484 ], [ -85.791912791879497, 45.977775595524363 ], [ -85.809097694100103, 45.979994210471034 ], [ -85.810461575228715, 45.979994210471034 ], [ -85.81100712768017, 45.979994210471034 ], [ -85.8170082046461, 45.979590825935276 ], [ -85.817553757097542, 45.979389133667397 ], [ -85.818099309548984, 45.979187441399517 ], [ -85.820827071806235, 45.978178980060122 ], [ -85.825737043869253, 45.976363749649209 ], [ -85.826009820094981, 45.975960365113451 ], [ -85.826282596320709, 45.975758672845572 ], [ -85.829828687255116, 45.971321442952231 ], [ -85.832283673286639, 45.968094366666172 ], [ -85.832556449512353, 45.967690982130414 ], [ -85.83446588309242, 45.967287597594655 ], [ -85.83528421176959, 45.967085905326783 ], [ -85.835556987995318, 45.967085905326783 ], [ -85.838011974026841, 45.966279136255267 ], [ -85.838284750252555, 45.966279136255267 ], [ -85.839103078929725, 45.966077443987388 ], [ -85.842376393638418, 45.965270674915871 ], [ -85.842921946089859, 45.965270674915871 ], [ -85.860106848310465, 45.968094366666172 ], [ -85.861197953213377, 45.968094366666172 ], [ -85.865289596599226, 45.968296058934051 ], [ -85.882474498819832, 45.968699443469809 ], [ -85.893112771623066, 45.967287597594655 ], [ -85.909206568940775, 45.959018214611618 ], [ -85.912479883649468, 45.956396215129189 ], [ -85.912479883649468, 45.956396215129189 ], [ -85.922845380226974, 45.948328524414038 ], [ -85.926118694935667, 45.938042218752209 ], [ -85.926118694935667, 45.932193142983721 ], [ -85.917117079486772, 45.92775591309038 ], [ -85.910297673843672, 45.922108529589771 ], [ -85.913843764778079, 45.919486530107342 ], [ -85.920663170421179, 45.920898375982496 ], [ -85.953941869959493, 45.936630372877055 ], [ -85.998949947203954, 45.950950523896466 ], [ -86.051050206317214, 45.962245290897684 ], [ -86.072053975697955, 45.965270674915871 ], [ -86.094694402433049, 45.966682520791025 ], [ -86.123608682359773, 45.964665598112234 ], [ -86.145703556643412, 45.957404676468585 ], [ -86.150067976255002, 45.954580984718284 ], [ -86.159342367929611, 45.953774215646767 ], [ -86.196712710853774, 45.96325375223708 ], [ -86.208169312334178, 45.963052059969201 ], [ -86.220444242491766, 45.958816522343739 ], [ -86.229173081714919, 45.948530216681917 ], [ -86.233537501326509, 45.945706524931609 ], [ -86.247994641289878, 45.944899755860092 ], [ -86.254814046932978, 45.948731908949796 ], [ -86.278000026119514, 45.942076064109784 ], [ -86.315915921495133, 45.915250992481887 ], [ -86.324099208266858, 45.906174840427333 ], [ -86.332555271264283, 45.851717928100015 ], [ -86.349194621033462, 45.834170700794544 ], [ -86.355195697999378, 45.805328706487856 ], [ -86.351649607064971, 45.798067784844207 ], [ -86.363924537222545, 45.790000094129056 ], [ -86.369925614188475, 45.789193325057539 ], [ -86.395839355632233, 45.789798401861177 ], [ -86.401567656372436, 45.795445785361778 ], [ -86.416024796335819, 45.793832247218752 ], [ -86.424753635558972, 45.789798401861177 ], [ -86.428299726493378, 45.785562864235715 ], [ -86.428845278944834, 45.782537480217528 ], [ -86.427208621590495, 45.779108711663582 ], [ -86.428299726493378, 45.775679943109644 ], [ -86.431845817427799, 45.767813944662365 ], [ -86.43539190836222, 45.764385176108419 ], [ -86.435664684587934, 45.764385176108419 ], [ -86.439756327973782, 45.760754715286602 ], [ -86.440301880425238, 45.760553023018723 ], [ -86.442211314005306, 45.759947946215085 ], [ -86.455577349065777, 45.756922562196905 ], [ -86.459941768677368, 45.75813271580418 ], [ -86.465942845643298, 45.759746253947206 ], [ -86.479036104478041, 45.757325946732664 ], [ -86.486128286346855, 45.746636256535076 ], [ -86.496221006698647, 45.749258256017498 ], [ -86.504131517244645, 45.754300562714477 ], [ -86.514497013822137, 45.752283640035685 ], [ -86.518315880982271, 45.747644717874465 ], [ -86.523225853045318, 45.736551643141127 ], [ -86.525135286625385, 45.720819646246568 ], [ -86.533318573397096, 45.710936725120497 ], [ -86.537137440557231, 45.708314725638076 ], [ -86.541501860168808, 45.708113033370196 ], [ -86.570688916321274, 45.716382416353227 ], [ -86.58105441289878, 45.711945186459893 ], [ -86.585964384961812, 45.70488595708413 ], [ -86.584873280058915, 45.682094730813809 ], [ -86.587601042316152, 45.66636273391925 ], [ -86.593602119282082, 45.665555964847734 ], [ -86.611332573954144, 45.669791502473188 ], [ -86.620334189403025, 45.66716950299076 ], [ -86.625244161466057, 45.663740734436821 ], [ -86.627971923723294, 45.659303504543487 ], [ -86.617060874694346, 45.620578589110721 ], [ -86.616788098468618, 45.606863514894954 ], [ -86.623880280337431, 45.613317667467086 ], [ -86.63315467201204, 45.618158281896179 ], [ -86.648430140652579, 45.615939666949508 ], [ -86.666160595324641, 45.621788742717996 ], [ -86.687164364705382, 45.634293663326496 ], [ -86.688801022059721, 45.639941046827104 ], [ -86.695347651477107, 45.648210429810142 ], [ -86.708168134086122, 45.649218891149538 ], [ -86.717715301986459, 45.668177964330155 ], [ -86.718260854437915, 45.677254116384717 ], [ -86.715805868406392, 45.683909961224714 ], [ -86.705167595603172, 45.690969190600484 ], [ -86.689073798285449, 45.687943806582297 ], [ -86.676253315676433, 45.691775959672 ], [ -86.665615042873185, 45.702263957601701 ], [ -86.665615042873185, 45.709121494709592 ], [ -86.669161133807606, 45.710936725120497 ], [ -86.671616119839115, 45.720617953978689 ], [ -86.662887280615962, 45.728887336961726 ], [ -86.647339035749695, 45.732517797783544 ], [ -86.63315467201204, 45.747644717874465 ], [ -86.634791329366394, 45.763578407036903 ], [ -86.630972462206259, 45.78193240341389 ], [ -86.61733365092006, 45.783545941556923 ], [ -86.612150902631299, 45.779310403931461 ], [ -86.597693762667944, 45.775478250841765 ], [ -86.583509398930289, 45.778301942592073 ], [ -86.576962769512932, 45.788588248253902 ], [ -86.58105441289878, 45.791815324539961 ], [ -86.58187274157595, 45.794840708558141 ], [ -86.576962769512932, 45.801496553398152 ], [ -86.57123446877273, 45.805530398755735 ], [ -86.563323958226732, 45.804521937416339 ], [ -86.557322881260802, 45.808152398238157 ], [ -86.555413447680735, 45.813598089470887 ], [ -86.558959538615142, 45.822270856989689 ], [ -86.555140671455007, 45.831750393579995 ], [ -86.549685146940533, 45.835985931205457 ], [ -86.54559350355467, 45.836591008009094 ], [ -86.53877409791157, 45.840019776563032 ], [ -86.529226930011234, 45.853129773975169 ], [ -86.528135825108336, 45.856961927064866 ], [ -86.529499706236962, 45.874912538906095 ], [ -86.533045797171368, 45.882576845085495 ], [ -86.541501860168808, 45.890241151264895 ], [ -86.553504014100668, 45.896493611569142 ], [ -86.567688377838309, 45.900527456926724 ], [ -86.583236622704575, 45.898712226515812 ], [ -86.593056566830626, 45.885198844567924 ], [ -86.603422063408146, 45.876526077049121 ], [ -86.613514783759925, 45.875921000245484 ], [ -86.625789713917499, 45.868256694066091 ], [ -86.63315467201204, 45.859987311083046 ], [ -86.632609119560598, 45.843246852849092 ], [ -86.64597515462107, 45.833969008526665 ], [ -86.720988616695152, 45.845465467795762 ], [ -86.728626351015421, 45.848692544081828 ], [ -86.742537938527335, 45.864626233244266 ], [ -86.749630120396162, 45.867853309530332 ], [ -86.758358959619329, 45.867248232726695 ], [ -86.782090491257307, 45.860189003350925 ], [ -86.784272701063088, 45.854541619850323 ], [ -86.782363267483021, 45.829935163169083 ], [ -86.777180519194275, 45.827111471418775 ], [ -86.774725533162751, 45.821665780186052 ], [ -86.77336165203414, 45.811379474524216 ], [ -86.785636582191728, 45.79443732402239 ], [ -86.801457603283708, 45.780117173002978 ], [ -86.821643043987279, 45.770435944144793 ], [ -86.823825253793075, 45.765393637447815 ], [ -86.820824715310096, 45.760754715286602 ], [ -86.821915820213007, 45.757124254464784 ], [ -86.838555169982158, 45.741795642105984 ], [ -86.841828484690836, 45.729089029229606 ], [ -86.838827946207886, 45.722231492121722 ], [ -86.870469988391847, 45.710129956048988 ], [ -86.877016617809232, 45.711945186459893 ], [ -86.895292624932722, 45.711541801924135 ], [ -86.904021464155903, 45.70952487924535 ], [ -86.920933590150781, 45.697826727708367 ], [ -86.944119569337317, 45.695809805029576 ], [ -86.964305010040874, 45.672816886491375 ], [ -86.966759996072398, 45.675035501438046 ], [ -86.967305548523854, 45.68491842256411 ], [ -86.969760534555363, 45.691977651939879 ], [ -86.981217136035767, 45.696414881833213 ], [ -86.98449045074446, 45.705894418423526 ], [ -86.982308240938664, 45.719811184907172 ], [ -86.977671045101346, 45.728685644693847 ], [ -86.975216059069837, 45.753090409107202 ], [ -86.981217136035767, 45.766200406519332 ], [ -86.98148991226148, 45.792218709075719 ], [ -86.988309317904594, 45.810572705452707 ], [ -87.004948667673744, 45.831750393579995 ], [ -87.006039772576642, 45.832153778115753 ], [ -87.006312548802356, 45.832355470383632 ], [ -87.018860255185672, 45.838809622955765 ], [ -87.031407961568959, 45.837196084812732 ], [ -87.039864024566413, 45.834170700794544 ], [ -87.050229521143919, 45.823884395132715 ], [ -87.052138954723986, 45.821867472453931 ], [ -87.057321703012747, 45.812387935863612 ], [ -87.057867255464188, 45.809160859577553 ], [ -87.057867255464188, 45.808959167309673 ], [ -87.058140031689902, 45.806538860095131 ], [ -87.05841280791563, 45.805933783291493 ], [ -87.05841280791563, 45.80432024514846 ], [ -87.058958360367086, 45.801496553398152 ], [ -87.058685584141358, 45.796454246701174 ], [ -87.058685584141358, 45.794840708558141 ], [ -87.05841280791563, 45.787983171450264 ], [ -87.058140031689902, 45.779108711663582 ], [ -87.058685584141358, 45.778100250324194 ], [ -87.063868332430104, 45.76660379105509 ], [ -87.06441388488156, 45.758737792607818 ], [ -87.062504451301493, 45.753292101375081 ], [ -87.055685045658393, 45.751476870964169 ], [ -87.052957283401156, 45.748048102410223 ], [ -87.057321703012747, 45.736753335409006 ], [ -87.061686122624323, 45.732921182319302 ], [ -87.07041496184749, 45.718802723567777 ], [ -87.060049465269969, 45.708919802441713 ], [ -87.059503912818528, 45.708516417905955 ], [ -87.061413346398595, 45.708113033370196 ], [ -87.073961052781897, 45.705491033887768 ], [ -87.074779381459066, 45.705289341619888 ], [ -87.074779381459066, 45.705289341619888 ], [ -87.093328164808298, 45.701457188530185 ], [ -87.095510374614094, 45.701053803994427 ], [ -87.099329241774228, 45.698633496779877 ], [ -87.099329241774228, 45.698431804512005 ], [ -87.099602017999942, 45.695204728225939 ], [ -87.100147570451384, 45.69480134369018 ], [ -87.111604171931788, 45.685926883903505 ], [ -87.112422500608972, 45.685725191635626 ], [ -87.12851629792668, 45.68189303854593 ], [ -87.12933462660385, 45.681691346278051 ], [ -87.146792305050184, 45.673623655562892 ], [ -87.150338395984591, 45.672010117419859 ], [ -87.161522221239267, 45.666766118455001 ], [ -87.172160494042515, 45.661723811758037 ], [ -87.173524375171127, 45.660513658150762 ], [ -87.191527606068902, 45.641756277238017 ], [ -87.196983130583391, 45.63631058600528 ], [ -87.211167494321018, 45.616544743753145 ], [ -87.215531913932608, 45.610493975716778 ], [ -87.219078004867015, 45.605855053555558 ], [ -87.223715200704333, 45.599400900983433 ], [ -87.232444039927486, 45.590929825732516 ], [ -87.234626249733282, 45.588912903053725 ], [ -87.250174494599548, 45.56914706080159 ], [ -87.260812767402783, 45.555633678853695 ], [ -87.26190387230568, 45.554020140710669 ], [ -87.26354052966002, 45.552003218031878 ], [ -87.263813305885748, 45.55139814122824 ], [ -87.264358858337189, 45.550187987620973 ], [ -87.280725431880626, 45.51771553249246 ], [ -87.288635942426623, 45.501580151062143 ], [ -87.289454271103793, 45.500571689722747 ], [ -87.306093620872957, 45.475561848505748 ], [ -87.317550222353361, 45.46668738871908 ], [ -87.319732432159142, 45.464872158308168 ], [ -87.330370704962377, 45.450955391824522 ], [ -87.333098467219614, 45.447123238734818 ], [ -87.333371243445342, 45.446114777395422 ], [ -87.333916795896783, 45.443291085645114 ], [ -87.334189572122511, 45.442282624305719 ], [ -87.333371243445342, 45.437240317608754 ], [ -87.333371243445342, 45.436836933072996 ], [ -87.331189033639546, 45.43360985678693 ], [ -87.329825152510921, 45.431996318643897 ], [ -87.328734047608037, 45.431391241840259 ], [ -87.327370166479412, 45.430786165036622 ], [ -87.32682461402797, 45.430584472768743 ], [ -87.325733509125072, 45.429979395965105 ], [ -87.326006285350786, 45.429374319161468 ], [ -87.32764294270514, 45.425340473803892 ], [ -87.328188495156581, 45.424735397000255 ], [ -87.329552376285207, 45.423323551125101 ], [ -87.330916257413833, 45.421508320714196 ], [ -87.336099005702579, 45.415457552677822 ], [ -87.338008439282646, 45.414449091338426 ], [ -87.350828921891662, 45.407793246498422 ], [ -87.351374474343118, 45.407389861962663 ], [ -87.359557761114843, 45.399927248051142 ], [ -87.360103313566285, 45.398515402175988 ], [ -87.360648866017726, 45.397506940836593 ], [ -87.364467733177861, 45.388632481049925 ], [ -87.371287138820975, 45.383791866620825 ], [ -87.387926488590125, 45.372295407351729 ], [ -87.389290369718736, 45.371286946012333 ], [ -87.389563145944464, 45.371085253744454 ], [ -87.389835922170192, 45.370883561476575 ], [ -87.391472579524532, 45.3696734078693 ], [ -87.392563684427429, 45.369068331065662 ], [ -87.394473118007497, 45.363622639832926 ], [ -87.399928642521985, 45.349302488813521 ], [ -87.410021362873763, 45.339016183151699 ], [ -87.427479041320083, 45.320863879042591 ], [ -87.431570684705946, 45.31642664914925 ], [ -87.436207880543265, 45.307753881630461 ], [ -87.437298985446148, 45.30553526668379 ], [ -87.437571761671876, 45.303720036272878 ], [ -87.438935642800487, 45.293433730611056 ], [ -87.455574992569652, 45.280727117734678 ], [ -87.456393321246821, 45.28012204093104 ], [ -87.464849384244275, 45.273667888358915 ], [ -87.465122160470003, 45.273264503823157 ], [ -87.496764202653964, 45.240388664158885 ], [ -87.50331083207135, 45.233732819318874 ], [ -87.504129160748505, 45.232724357979485 ], [ -87.51231244752023, 45.224253282728569 ], [ -87.530588454643734, 45.208117901298252 ], [ -87.535225650481038, 45.203680671404911 ], [ -87.548864461767238, 45.191579135332177 ], [ -87.552410552701645, 45.189763904921264 ], [ -87.556229419861779, 45.187746982242473 ], [ -87.563321601730593, 45.184116521420655 ], [ -87.582415937531266, 45.168989601329734 ], [ -87.585689252239973, 45.166367601847305 ], [ -87.587871462045754, 45.163543910097005 ], [ -87.596600301268921, 45.15224914309578 ], [ -87.600691944654784, 45.14680345186305 ], [ -87.607784126523597, 45.134903608058188 ], [ -87.608056902749325, 45.13450022352243 ], [ -87.609148007652223, 45.132281608575767 ], [ -87.612148546135188, 45.123407148789084 ], [ -87.61187576990946, 45.122398687449689 ], [ -87.611602993683732, 45.120986841574542 ], [ -87.611602993683732, 45.120986841574542 ], [ -87.611330217458004, 45.119574995699388 ], [ -87.609966336329393, 45.114129304466658 ], [ -87.608875231426495, 45.112919150859383 ], [ -87.606693021620714, 45.110498843644834 ], [ -87.605329140492088, 45.108683613233922 ], [ -87.604510811814919, 45.107876844162405 ], [ -87.602601378234851, 45.105658229215734 ], [ -87.602328602009123, 45.105456536947855 ], [ -87.602055825783395, 45.105254844679976 ], [ -87.602055825783395, 45.105053152412104 ], [ -87.601783049557667, 45.104649767876346 ], [ -87.600964720880512, 45.104044691072708 ], [ -87.600146392203328, 45.103036229733313 ], [ -87.598782511074717, 45.102027768393917 ], [ -87.597691406171805, 45.10142269159028 ], [ -87.592235881657331, 45.097792230768462 ], [ -87.590326448077263, 45.096380384893308 ], [ -87.589508119400108, 45.096582077161187 ], [ -87.581870385079839, 45.097187153964825 ], [ -87.590326448077263, 45.095170231286033 ], [ -87.659884385636872, 45.107473459626647 ], [ -87.731351756776533, 45.171006524008519 ], [ -87.735170623936668, 45.176653907509134 ], [ -87.741717253354039, 45.198234980172181 ], [ -87.739535043548244, 45.202067133261878 ], [ -87.731624533002261, 45.206706055423098 ], [ -87.711711868524418, 45.243414048177073 ], [ -87.707893001364283, 45.258339276000115 ], [ -87.709256882492895, 45.260356198678906 ], [ -87.64815500793074, 45.339419567687457 ], [ -87.647609455479284, 45.350714334688675 ], [ -87.657429399605348, 45.368664946529904 ], [ -87.674887078051682, 45.382380020745671 ], [ -87.685798127080631, 45.388632481049925 ], [ -87.693981413852356, 45.389842634657199 ], [ -87.718804050393231, 45.377539406316579 ], [ -87.751537197480104, 45.351722796028071 ], [ -87.771449861957947, 45.351117719224433 ], [ -87.790271421532907, 45.353538026438983 ], [ -87.832551736520116, 45.352327872831708 ], [ -87.835279498777339, 45.350916026956554 ], [ -87.838007261034591, 45.345066951188066 ], [ -87.850009414966436, 45.340428029026853 ], [ -87.885197548084818, 45.351722796028071 ], [ -87.887925310342069, 45.354748180046258 ], [ -87.860374911543943, 45.42352524339298 ], [ -87.820276806362529, 45.460233236146948 ], [ -87.812911848267987, 45.464065389236652 ], [ -87.806365218850601, 45.472334772219689 ], [ -87.79900026075606, 45.485243077363947 ], [ -87.792726407564416, 45.49996661291911 ], [ -87.788907540404281, 45.565919984515531 ], [ -87.791908078887246, 45.616746436021025 ], [ -87.795999722273109, 45.618763358699809 ], [ -87.824095673522663, 45.647201968470746 ], [ -87.823550121071207, 45.659908581347125 ], [ -87.781542582309726, 45.673220271027134 ], [ -87.78072425363257, 45.680279500402897 ], [ -87.807183547527785, 45.708113033370196 ], [ -87.828732869359982, 45.722836568925359 ], [ -87.868012645864212, 45.749459948285377 ], [ -87.991580276117148, 45.795445785361778 ], [ -88.039861668070273, 45.789596709593297 ], [ -88.050499940873522, 45.780923942074494 ], [ -88.058137675193791, 45.780722249806615 ], [ -88.072049262705704, 45.780318865270857 ], [ -88.094144136989343, 45.785562864235715 ], [ -88.130423375010622, 45.809967628649069 ], [ -88.136151675750824, 45.819043780703623 ], [ -88.133696689719301, 45.823077626061199 ], [ -88.114329577692914, 45.837801161616369 ], [ -88.106691843372644, 45.841028237902428 ], [ -88.088688612474868, 45.85595346572547 ], [ -88.073140367608602, 45.871887154887908 ], [ -88.073958696285771, 45.875517615709725 ], [ -88.102600199986782, 45.90980530124915 ], [ -88.118421221078762, 45.918478068767953 ], [ -88.139424990459503, 45.92997452803705 ], [ -88.175431452255069, 45.944899755860092 ], [ -88.202163522376011, 45.949538678021312 ], [ -88.211165137824906, 45.944496371324334 ], [ -88.239806641525917, 45.948933601217675 ], [ -88.244443837363221, 45.952160677503734 ], [ -88.250172138103423, 45.963052059969201 ], [ -88.295452991573598, 45.951555600700097 ], [ -88.376467530613596, 45.989473747061339 ], [ -88.42338504143811, 45.982011133149825 ], [ -88.489669664289011, 45.991288977472252 ], [ -88.49730739860928, 45.995121130561955 ], [ -88.500035160866531, 46.000365129526806 ], [ -88.507127342735345, 46.018315741368035 ], [ -88.532495531727676, 46.021139433118336 ], [ -88.612964518316232, 45.990683900668614 ], [ -88.616510609250639, 45.987658516650427 ], [ -88.63751437863138, 45.985036517168005 ], [ -88.66615588233239, 45.988263593454064 ], [ -88.671065854395422, 45.999961744991047 ], [ -88.670247525718253, 45.999961744991047 ], [ -88.674611945329843, 46.010651435188635 ], [ -88.679249141167134, 46.013475126938943 ], [ -88.683068008327268, 46.014483588278338 ], [ -88.730803847828952, 46.026585124351072 ], [ -88.740078239503575, 46.027391893422589 ], [ -88.769810848107483, 46.018920818171672 ], [ -88.815637254029099, 46.02234958672561 ], [ -88.840459890569974, 46.031022354244413 ], [ -88.848370401115972, 46.038888352691686 ], [ -88.850279834696039, 46.04030019856684 ], [ -88.932658254864663, 46.073579422766869 ], [ -88.943296527667883, 46.07801665266021 ], [ -88.948752052182371, 46.080235267606874 ], [ -88.990759590943853, 46.097379110376586 ], [ -88.990759590943853, 46.097379110376586 ], [ -89.058680871149107, 46.125010951076007 ], [ -89.125238270225736, 46.144575101060262 ], [ -89.161790284472744, 46.151836022703904 ], [ -89.166973032761504, 46.1528444840433 ], [ -89.194523431559617, 46.157886790740278 ], [ -89.201342837202716, 46.159500328883311 ], [ -89.203252270782784, 46.160105405686942 ], [ -89.205707256814293, 46.1605087902227 ], [ -89.218254963197609, 46.162929097437249 ], [ -89.219891620551948, 46.163332481973008 ], [ -89.276356299276785, 46.174022172170595 ], [ -89.27690185172824, 46.174022172170595 ], [ -89.908106038053376, 46.29604599423736 ], [ -89.910015471633443, 46.296449378773119 ], [ -89.929109807434116, 46.300079839594943 ], [ -90.120598717892307, 46.336787832348911 ], [ -90.119780389215151, 46.359780750887111 ], [ -90.119780389215151, 46.359780750887111 ], [ -90.134783081629962, 46.374907670978033 ], [ -90.134783081629962, 46.374907670978033 ], [ -90.166970676265379, 46.439247504431421 ], [ -90.166970676265379, 46.439852581235058 ], [ -90.177881725294327, 46.440457658038696 ], [ -90.20461379541527, 46.478980881203583 ], [ -90.284537229552384, 46.518714257975731 ], [ -90.307723208738921, 46.518310873439972 ], [ -90.313724285704836, 46.516293950761188 ], [ -90.313997061930564, 46.516293950761188 ], [ -90.357641258046399, 46.540295330638784 ], [ -90.374553384041278, 46.539286869299389 ], [ -90.399921573033595, 46.544329175996367 ], [ -90.400467125485051, 46.544329175996367 ], [ -90.414378712996978, 46.557237481140618 ], [ -90.414651489222692, 46.557237481140618 ], [ -90.418197580157113, 46.566111940927286 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "39", "geo_id": "0400000US29", "fips_state": "29", "name": "Missouri", "iso_3166_2": "MO", "census": 5988927, "pop_estimataes_base": 5988923, "pop_2010": 5996085, "pop_2011": 6010544, "pop_2012": 6025281, "pop_2013": 6044917, "pop_2014": 6063589 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.732983701138636, 36.000664180355841 ], [ -89.737620896975926, 36.000462488087962 ], [ -89.737620896975926, 36.000664180355841 ], [ -89.770081267837085, 36.000462488087962 ], [ -89.770354044062799, 36.000462488087962 ], [ -89.869099037774873, 35.999655719016445 ], [ -89.874554562289347, 35.999655719016445 ], [ -89.875100114740789, 35.999655719016445 ], [ -89.875645667192231, 35.999655719016445 ], [ -89.896376660347258, 35.999454026748566 ], [ -89.90128663241029, 35.999454026748566 ], [ -89.95938796848948, 35.999050642212808 ], [ -89.95938796848948, 35.999050642212808 ], [ -89.959933520940922, 35.999050642212808 ], [ -89.96102462584382, 35.999050642212808 ], [ -89.965389045455396, 35.998848949944929 ], [ -89.972481227324238, 35.999050642212808 ], [ -90.126327018632509, 35.997638796337654 ], [ -90.127418123535421, 35.997638796337654 ], [ -90.158787389493654, 35.997437104069782 ], [ -90.288901649163961, 35.996428642730386 ], [ -90.288901649163961, 35.996428642730386 ], [ -90.292447740098382, 35.996428642730386 ], [ -90.339365250922896, 35.996025258194628 ], [ -90.342638565631574, 35.995823565926749 ], [ -90.368825083301076, 35.995823565926749 ], [ -90.364460663689499, 36.013572485500092 ], [ -90.319179810219325, 36.090013855026221 ], [ -90.220434816507264, 36.184809220929331 ], [ -90.198612718449354, 36.201347986895406 ], [ -90.114870417152105, 36.265687820348795 ], [ -90.083773927419585, 36.272343665188799 ], [ -90.07640896932503, 36.280613048171837 ], [ -90.063861262941742, 36.3030008899064 ], [ -90.064406815393184, 36.382064258914959 ], [ -90.072862878390623, 36.392955641380418 ], [ -90.133964752952778, 36.43793301711743 ], [ -90.156332403462144, 36.487751007283535 ], [ -90.154422969882077, 36.496827159338082 ], [ -90.15251353630201, 36.498037312945357 ], [ -90.19397552261205, 36.497835620677478 ], [ -90.217434278024314, 36.497835620677478 ], [ -90.220707592732992, 36.497835620677478 ], [ -90.220707592732992, 36.497835620677478 ], [ -90.228890879504718, 36.497835620677478 ], [ -90.339910803374352, 36.498239005213236 ], [ -90.494574923359806, 36.498440697481115 ], [ -90.495120475811248, 36.498440697481115 ], [ -90.500030447874281, 36.498440697481115 ], [ -90.576135014851246, 36.498440697481115 ], [ -90.576135014851246, 36.498440697481115 ], [ -90.585409406525869, 36.498440697481115 ], [ -90.594411021974764, 36.498440697481115 ], [ -90.605322071003712, 36.498440697481115 ], [ -90.612687029098254, 36.498642389748994 ], [ -90.648420714668092, 36.498440697481115 ], [ -90.653330686731124, 36.498440697481115 ], [ -90.692883239461082, 36.498440697481115 ], [ -90.7111592465846, 36.498239005213236 ], [ -90.765714491729369, 36.498440697481115 ], [ -90.782353841498534, 36.498440697481115 ], [ -90.784263275078601, 36.498440697481115 ], [ -90.850547897929516, 36.498642389748994 ], [ -90.873733877116052, 36.498037312945357 ], [ -90.876461639373275, 36.498239005213236 ], [ -90.876734415599003, 36.498440697481115 ], [ -90.879189401630526, 36.498440697481115 ], [ -90.960749493121966, 36.498440697481115 ], [ -90.962931702927762, 36.498440697481115 ], [ -91.00848533262365, 36.498239005213236 ], [ -91.018032500524001, 36.498037312945357 ], [ -91.09577372485532, 36.497835620677478 ], [ -91.096319277306762, 36.497835620677478 ], [ -91.126597438362126, 36.497633928409599 ], [ -91.217431921528174, 36.497432236141719 ], [ -91.218523026431086, 36.497633928409599 ], [ -91.227524641879967, 36.497633928409599 ], [ -91.404829188600502, 36.497028851605961 ], [ -91.40510196482623, 36.49723054387384 ], [ -91.407011398406297, 36.497028851605961 ], [ -91.407284174632025, 36.497028851605961 ], [ -91.433197916075798, 36.49723054387384 ], [ -91.436471230784491, 36.497432236141719 ], [ -91.446291174910556, 36.497432236141719 ], [ -91.45011004207069, 36.497633928409599 ], [ -91.529760699982063, 36.499045774284752 ], [ -91.536852881850876, 36.499247466552632 ], [ -91.5393078678824, 36.499045774284752 ], [ -91.549127812008464, 36.499247466552632 ], [ -91.596318099058692, 36.499247466552632 ], [ -91.601228071121739, 36.499247466552632 ], [ -91.631506232177088, 36.499247466552632 ], [ -91.642690057431764, 36.499247466552632 ], [ -91.672422666035672, 36.499449158820511 ], [ -91.686061477321857, 36.499449158820511 ], [ -91.687698134676211, 36.499449158820511 ], [ -91.726705134954727, 36.499247466552632 ], [ -91.765984911458972, 36.499045774284752 ], [ -91.784806471033932, 36.499045774284752 ], [ -91.799536387223014, 36.499045774284752 ], [ -91.801991373254538, 36.499045774284752 ], [ -91.8060830166404, 36.499045774284752 ], [ -91.864457128945304, 36.498844082016873 ], [ -91.866093786299643, 36.498844082016873 ], [ -91.985842549392459, 36.498440697481115 ], [ -91.988843087875409, 36.498440697481115 ], [ -92.019394025156487, 36.498440697481115 ], [ -92.028941193056824, 36.498642389748994 ], [ -92.055673263177766, 36.498642389748994 ], [ -92.05730992053212, 36.498642389748994 ], [ -92.075040375204168, 36.498844082016873 ], [ -92.098226354390704, 36.498844082016873 ], [ -92.120321228674342, 36.498844082016873 ], [ -92.120321228674342, 36.498844082016873 ], [ -92.137778907120662, 36.498642389748994 ], [ -92.150326613503978, 36.498642389748994 ], [ -92.199426334134273, 36.498440697481115 ], [ -92.211428488066133, 36.498440697481115 ], [ -92.21415625032337, 36.498440697481115 ], [ -92.216338460129151, 36.498440697481115 ], [ -92.309355153101023, 36.497835620677478 ], [ -92.318356768549904, 36.497633928409599 ], [ -92.529212791034496, 36.497835620677478 ], [ -92.772256408154504, 36.497835620677478 ], [ -92.772256408154504, 36.497835620677478 ], [ -92.838541031005406, 36.498037312945357 ], [ -92.838813807231134, 36.498037312945357 ], [ -92.854089275871672, 36.498037312945357 ], [ -92.893914604827359, 36.497835620677478 ], [ -92.894460157278814, 36.497835620677478 ], [ -93.013663367920174, 36.498037312945357 ], [ -93.068491389290671, 36.498239005213236 ], [ -93.069582494193568, 36.498239005213236 ], [ -93.087585725091344, 36.498239005213236 ], [ -93.08894960621997, 36.498239005213236 ], [ -93.295986761544413, 36.498440697481115 ], [ -93.315353873570814, 36.498440697481115 ], [ -93.315353873570814, 36.498440697481115 ], [ -93.394731755256473, 36.498440697481115 ], [ -93.396095636385098, 36.498642389748994 ], [ -93.426919349891904, 36.498642389748994 ], [ -93.50738833648046, 36.498844082016873 ], [ -93.514480518349274, 36.498844082016873 ], [ -93.584311232134596, 36.498844082016873 ], [ -93.584311232134596, 36.498844082016873 ], [ -93.700241128067262, 36.499045774284752 ], [ -93.710061072193326, 36.499247466552632 ], [ -93.718789911416494, 36.499247466552632 ], [ -93.727518750639661, 36.499045774284752 ], [ -93.728064303091102, 36.499045774284752 ], [ -93.866634625758849, 36.498844082016873 ], [ -93.906187178488821, 36.498642389748994 ], [ -93.921735423355074, 36.498642389748994 ], [ -93.959105766279265, 36.498642389748994 ], [ -93.964015738342283, 36.498642389748994 ], [ -94.077217872017712, 36.498642389748994 ], [ -94.098494417624181, 36.498642389748994 ], [ -94.10013107497852, 36.498642389748994 ], [ -94.110769347781755, 36.498642389748994 ], [ -94.111587676458925, 36.498642389748994 ], [ -94.519388133916181, 36.499247466552632 ], [ -94.559213462871867, 36.499449158820511 ], [ -94.617860351402513, 36.499449158820511 ], [ -94.617860351402513, 36.51497946344719 ], [ -94.617860351402513, 36.517803155197498 ], [ -94.618133127628241, 36.534341921163573 ], [ -94.617860351402513, 36.536157151574486 ], [ -94.617860351402513, 36.536963920645995 ], [ -94.617860351402513, 36.577705758757546 ], [ -94.617860351402513, 36.59908513915272 ], [ -94.617860351402513, 36.606951137599992 ], [ -94.617860351402513, 36.612598521100608 ], [ -94.618133127628241, 36.667862202499443 ], [ -94.618133127628241, 36.669475740642476 ], [ -94.618133127628241, 36.701343118967351 ], [ -94.618405903853969, 36.766489721492249 ], [ -94.618405903853969, 36.847368320911713 ], [ -94.618678680079682, 36.880042468308105 ], [ -94.618133127628241, 36.896984618809938 ], [ -94.618405903853969, 36.911506462097222 ], [ -94.618133127628241, 36.926229997652392 ], [ -94.618405903853969, 36.92965876620633 ], [ -94.618133127628241, 36.937524764653617 ], [ -94.618133127628241, 36.946600916708164 ], [ -94.618133127628241, 36.950231377529988 ], [ -94.618133127628241, 36.994603676463356 ], [ -94.618133127628241, 36.996217214606389 ], [ -94.618133127628241, 36.998234137285181 ], [ -94.617860351402513, 37.008923827482761 ], [ -94.617860351402513, 37.040589513539757 ], [ -94.617860351402513, 37.056724894970074 ], [ -94.617860351402513, 37.056724894970074 ], [ -94.617860351402513, 37.075078891347061 ], [ -94.618133127628241, 37.085970273812528 ], [ -94.618133127628241, 37.086373658348286 ], [ -94.618133127628241, 37.093432887724049 ], [ -94.618133127628241, 37.093634579991928 ], [ -94.618133127628241, 37.096659964010115 ], [ -94.618133127628241, 37.10392088565375 ], [ -94.618133127628241, 37.11319872997619 ], [ -94.618133127628241, 37.129737495942265 ], [ -94.618133127628241, 37.132359495424687 ], [ -94.618405903853969, 37.160193028391987 ], [ -94.618405903853969, 37.174714871679271 ], [ -94.618405903853969, 37.181169024251396 ], [ -94.618405903853969, 37.188833330430796 ], [ -94.618405903853969, 37.207389019075663 ], [ -94.618133127628241, 37.207792403611421 ], [ -94.618133127628241, 37.228163322667193 ], [ -94.618133127628241, 37.229373476274468 ], [ -94.618133127628241, 37.237642859257505 ], [ -94.618133127628241, 37.240466551007813 ], [ -94.617587575176799, 37.32356376537394 ], [ -94.617587575176799, 37.336875455053956 ], [ -94.617587575176799, 37.338488993196989 ], [ -94.617587575176799, 37.338488993196989 ], [ -94.617587575176799, 37.364103911217612 ], [ -94.617587575176799, 37.364305603485491 ], [ -94.617587575176799, 37.367532679771557 ], [ -94.617587575176799, 37.367532679771557 ], [ -94.617587575176799, 37.396374674078245 ], [ -94.617587575176799, 37.410896517365529 ], [ -94.617314798951071, 37.425620052920692 ], [ -94.617042022725343, 37.439738511672225 ], [ -94.617314798951071, 37.454865431763146 ], [ -94.617314798951071, 37.460311122995876 ], [ -94.617314798951071, 37.460512815263755 ], [ -94.617314798951071, 37.465151737424975 ], [ -94.617314798951071, 37.469588967318309 ], [ -94.617042022725343, 37.483707426069842 ], [ -94.616769246499615, 37.521423880163198 ], [ -94.617042022725343, 37.52787803273533 ], [ -94.617314798951071, 37.553492950755953 ], [ -94.617042022725343, 37.557325103845656 ], [ -94.617042022725343, 37.567006332703848 ], [ -94.617314798951071, 37.571443562597182 ], [ -94.617314798951071, 37.57184694713294 ], [ -94.617314798951071, 37.60956340122631 ], [ -94.617314798951071, 37.610571862565706 ], [ -94.617587575176799, 37.637195241925724 ], [ -94.617587575176799, 37.65353231562392 ], [ -94.617587575176799, 37.653734007891799 ], [ -94.617860351402513, 37.673096465608182 ], [ -94.617860351402513, 37.673096465608182 ], [ -94.617860351402513, 37.682172617662729 ], [ -94.617587575176799, 37.68660984755607 ], [ -94.617587575176799, 37.687618308895466 ], [ -94.617860351402513, 37.690240308377895 ], [ -94.617860351402513, 37.72210768670277 ], [ -94.617860351402513, 37.729771992882164 ], [ -94.616769246499615, 37.819525052088309 ], [ -94.616496470273901, 37.837475663929531 ], [ -94.616496470273901, 37.845341662376811 ], [ -94.615950917822445, 37.863090581950161 ], [ -94.615950917822445, 37.872570118540473 ], [ -94.615950917822445, 37.878419194308961 ], [ -94.615678141596732, 37.886890269559878 ], [ -94.615405365371004, 37.90181549738292 ], [ -94.615405365371004, 37.906454419544133 ], [ -94.615132589145276, 37.915933956134452 ], [ -94.614859812919548, 37.934287952511433 ], [ -94.614859812919548, 37.936708259725982 ], [ -94.614859812919548, 37.940742105083558 ], [ -94.614587036693834, 37.944372565905383 ], [ -94.614587036693834, 37.950019949405991 ], [ -94.614587036693834, 37.951431795281145 ], [ -94.614587036693834, 37.9709959452654 ], [ -94.614587036693834, 37.987736403499355 ], [ -94.614314260468106, 37.992375325660575 ], [ -94.614041484242378, 38.036949316861822 ], [ -94.614041484242378, 38.037151009129701 ], [ -94.614041484242378, 38.060143927667909 ], [ -94.614041484242378, 38.060143927667909 ], [ -94.614041484242378, 38.06599300343639 ], [ -94.614041484242378, 38.067404849311544 ], [ -94.613768708016664, 38.149695294606161 ], [ -94.613768708016664, 38.160586677071628 ], [ -94.613495931790936, 38.167847598715269 ], [ -94.61295037933948, 38.190638824985591 ], [ -94.61295037933948, 38.200723438379541 ], [ -94.61295037933948, 38.203950514665607 ], [ -94.612677603113752, 38.217665588881374 ], [ -94.612677603113752, 38.219279127024407 ], [ -94.612677603113752, 38.2269434332038 ], [ -94.612677603113752, 38.237834815669267 ], [ -94.612677603113752, 38.27030727079778 ], [ -94.61295037933948, 38.289871420782035 ], [ -94.61295037933948, 38.291484958925068 ], [ -94.612677603113752, 38.302578033658413 ], [ -94.612677603113752, 38.314881261999034 ], [ -94.612677603113752, 38.320125260963884 ], [ -94.61295037933948, 38.324360798589339 ], [ -94.61295037933948, 38.335857257858443 ], [ -94.613223155565208, 38.364497559897259 ], [ -94.613223155565208, 38.369539866594231 ], [ -94.613223155565208, 38.388700632042728 ], [ -94.613223155565208, 38.392331092864552 ], [ -94.613495931790936, 38.40342416759789 ], [ -94.61295037933948, 38.477646922177357 ], [ -94.61295037933948, 38.477646922177357 ], [ -94.612677603113752, 38.483092613410079 ], [ -94.612677603113752, 38.484302767017354 ], [ -94.612677603113752, 38.491563688661003 ], [ -94.612404826888039, 38.547835831399226 ], [ -94.612132050662311, 38.549852754078017 ], [ -94.612132050662311, 38.576476133438042 ], [ -94.611859274436597, 38.58010659425986 ], [ -94.611859274436597, 38.58010659425986 ], [ -94.611859274436597, 38.609351973102314 ], [ -94.611859274436597, 38.620445047835659 ], [ -94.611586498210869, 38.635370275658701 ], [ -94.609404288405074, 38.73803164000909 ], [ -94.609404288405074, 38.740653639491512 ], [ -94.609404288405074, 38.742468869902424 ], [ -94.609131512179346, 38.760621174011533 ], [ -94.608040407276462, 38.811044240981275 ], [ -94.608040407276462, 38.847147156931605 ], [ -94.608040407276462, 38.855013155378884 ], [ -94.608040407276462, 38.861265615683138 ], [ -94.608040407276462, 38.867316383719498 ], [ -94.608040407276462, 38.868123152791014 ], [ -94.608040407276462, 38.86913161413041 ], [ -94.608040407276462, 38.883855149685573 ], [ -94.608040407276462, 38.936900216137744 ], [ -94.607767631050734, 38.937303600673502 ], [ -94.608040407276462, 38.939925600155931 ], [ -94.608040407276462, 38.941942522834722 ], [ -94.607494854825006, 39.043998810381467 ], [ -94.607222078599278, 39.0657815753124 ], [ -94.607222078599278, 39.081715264474838 ], [ -94.607222078599278, 39.089581262922117 ], [ -94.607222078599278, 39.113380950531834 ], [ -94.590037176378672, 39.14040771442761 ], [ -94.59194660995874, 39.154929557714901 ], [ -94.596038253344602, 39.157753249465202 ], [ -94.601766554084804, 39.159568479876114 ], [ -94.706785400988508, 39.173888630895519 ], [ -94.71415035908305, 39.170459862341581 ], [ -94.723697526983386, 39.169048016466427 ], [ -94.736518009592416, 39.169249708734306 ], [ -94.752339030684411, 39.173283554091881 ], [ -94.794073793220164, 39.20131877932706 ], [ -94.832535241047239, 39.227135389615569 ], [ -94.901002073703935, 39.301761528730779 ], [ -94.907548703121307, 39.320720601911404 ], [ -94.910549241604272, 39.348352442610818 ], [ -94.908367031798491, 39.355613364254467 ], [ -94.91000368915283, 39.367513208059322 ], [ -94.946555703399838, 39.399783970919955 ], [ -94.969196130134918, 39.418944736368459 ], [ -95.102856480739632, 39.533304252255832 ], [ -95.109403110157018, 39.542380404310379 ], [ -95.113494753542867, 39.553876863579482 ], [ -95.112949201091425, 39.559120862544333 ], [ -95.107493676576951, 39.573844398099496 ], [ -95.069577781201318, 39.615191313014691 ], [ -95.015295312282262, 39.674287147503222 ], [ -95.0112036688964, 39.677514223789288 ], [ -94.937826864176671, 39.72551698354448 ], [ -94.91682309479593, 39.728138983026909 ], [ -94.895273772963733, 39.763233437637844 ], [ -94.908367031798491, 39.812244658732432 ], [ -94.928006920050606, 39.886064028776133 ], [ -94.935917430596604, 39.894333411759163 ], [ -94.954193437720107, 39.901190948867054 ], [ -94.993473214224352, 39.900787564331296 ], [ -95.008475906639163, 39.900585872063417 ], [ -95.01638641718516, 39.898770641652504 ], [ -95.025115256408327, 39.88969448959795 ], [ -95.025115256408327, 39.877592953525209 ], [ -95.027843018665564, 39.871542185488849 ], [ -95.034935200534392, 39.866903263327629 ], [ -95.042027382403205, 39.864886340648837 ], [ -95.085126026067584, 39.86186095663065 ], [ -95.107766452802665, 39.868516801470662 ], [ -95.13258908934354, 39.875979415382183 ], [ -95.181143257522393, 39.899980795259779 ], [ -95.30143757306665, 39.983683086429551 ], [ -95.307711426258294, 39.990540623537427 ], [ -95.30825697870975, 40.000020160127747 ], [ -95.312075845869884, 40.009298004450173 ], [ -95.521840763451564, 40.249513495494014 ], [ -95.552391700732656, 40.261816723834635 ], [ -95.552391700732656, 40.264438723317056 ], [ -95.55102781960403, 40.28601979598011 ], [ -95.553210029409826, 40.291062102677081 ], [ -95.62276796696942, 40.34229193871834 ], [ -95.687415932465996, 40.465122529856629 ], [ -95.692598680754742, 40.483073141697851 ], [ -95.681414855500066, 40.490737447877251 ], [ -95.659319981216427, 40.519781134451819 ], [ -95.696690324140604, 40.545194360204576 ], [ -95.697235876592046, 40.536924977221531 ], [ -95.710056359201076, 40.523814979809401 ], [ -95.748790583253879, 40.52421836434516 ], [ -95.75697387002559, 40.526033594756072 ], [ -95.766793814151654, 40.531479285988802 ], [ -95.769248800183163, 40.536723284953652 ], [ -95.774704324697638, 40.573632969975506 ], [ -95.773613219794754, 40.578271892136726 ], [ -95.765702709248757, 40.585129429244603 ], [ -95.746335597222355, 40.584927736976724 ], [ -95.687415932465996, 40.584322660173086 ], [ -95.687415932465996, 40.584322660173086 ], [ -95.641862302770093, 40.584322660173086 ], [ -95.611038589263302, 40.58351589110157 ], [ -95.573941022564838, 40.582910814297939 ], [ -95.554846686764165, 40.58270912203006 ], [ -95.533297364931983, 40.582305737494302 ], [ -95.526750735514611, 40.582104045226423 ], [ -95.525386854385985, 40.582104045226423 ], [ -95.469194951886863, 40.581498968422785 ], [ -95.415458035419249, 40.581095583887027 ], [ -95.373996049109209, 40.58049050708339 ], [ -95.373996049109209, 40.58049050708339 ], [ -95.357902251791501, 40.580087122547631 ], [ -95.335534601282134, 40.579885430279752 ], [ -95.221514138929535, 40.578876968940364 ], [ -95.218786376672298, 40.578876968940364 ], [ -95.217422495543687, 40.578675276672485 ], [ -95.213330852157824, 40.578675276672485 ], [ -95.212785299706383, 40.578675276672485 ], [ -95.211694194803485, 40.578675276672485 ], [ -95.211421418577757, 40.578675276672485 ], [ -95.202147026903148, 40.578473584404605 ], [ -95.163958355301787, 40.578070199868847 ], [ -95.15441118740145, 40.577868507600968 ], [ -95.120859711637422, 40.57746512306521 ], [ -95.112130872414255, 40.577263430797331 ], [ -95.11076699128563, 40.577263430797331 ], [ -95.110221438834188, 40.577061738529451 ], [ -95.107220900351223, 40.577061738529451 ], [ -95.097673732450886, 40.577263430797331 ], [ -95.07967050155311, 40.577061738529451 ], [ -95.069032228749876, 40.576860046261572 ], [ -94.966468367877681, 40.575851584922177 ], [ -94.955011766397277, 40.575649892654297 ], [ -94.914913661215863, 40.57504481585066 ], [ -94.901547626155391, 40.574843123582781 ], [ -94.896910430318087, 40.574641431314902 ], [ -94.823806401824072, 40.574036354511264 ], [ -94.819987534663937, 40.573632969975506 ], [ -94.81125869544077, 40.573431277707627 ], [ -94.773888352516593, 40.573027893171869 ], [ -94.716605345114573, 40.572221124100352 ], [ -94.714968687760233, 40.572221124100352 ], [ -94.682508316899089, 40.571817739564594 ], [ -94.632044715140154, 40.571212662760956 ], [ -94.632044715140154, 40.571212662760956 ], [ -94.594128819764535, 40.571010970493077 ], [ -94.542028560651261, 40.570809278225198 ], [ -94.541755784425547, 40.570809278225198 ], [ -94.538209693491126, 40.570809278225198 ], [ -94.537118588588243, 40.570809278225198 ], [ -94.53384527387955, 40.570809278225198 ], [ -94.489382749086559, 40.570607585957319 ], [ -94.471106741963041, 40.570809278225198 ], [ -94.470561189511599, 40.570809278225198 ], [ -94.460195692934093, 40.571010970493077 ], [ -94.429644755653015, 40.571010970493077 ], [ -94.35817738451334, 40.571414355028836 ], [ -94.336628062681157, 40.571414355028836 ], [ -94.336628062681157, 40.571414355028836 ], [ -94.324898684975025, 40.571414355028836 ], [ -94.310714321237384, 40.571616047296715 ], [ -94.294893300145404, 40.571414355028836 ], [ -94.287255565825134, 40.571616047296715 ], [ -94.232154768228895, 40.571817739564594 ], [ -94.09112945952964, 40.57282620090399 ], [ -94.089220025949572, 40.57282620090399 ], [ -94.080491186726405, 40.57282620090399 ], [ -94.080218410500677, 40.57282620090399 ], [ -94.034119228353333, 40.573632969975506 ], [ -94.015570445004101, 40.573834662243385 ], [ -93.976836220951313, 40.574641431314902 ], [ -93.963742962116569, 40.574843123582781 ], [ -93.939738654252864, 40.575246508118539 ], [ -93.938647549349966, 40.575246508118539 ], [ -93.937010891995627, 40.575448200386418 ], [ -93.936192563318457, 40.575246508118539 ], [ -93.935647010867001, 40.575246508118539 ], [ -93.913824912809091, 40.575649892654297 ], [ -93.901004430200061, 40.575851584922177 ], [ -93.899367772845721, 40.575851584922177 ], [ -93.898276667942824, 40.576053277190056 ], [ -93.853541366924105, 40.576658353993693 ], [ -93.840993660540803, 40.576860046261572 ], [ -93.818626010031437, 40.577061738529451 ], [ -93.815352695322758, 40.577263430797331 ], [ -93.77443626146416, 40.577666815333089 ], [ -93.770344618078312, 40.577666815333089 ], [ -93.750159177374741, 40.577666815333089 ], [ -93.742794219280199, 40.57746512306521 ], [ -93.737338694765711, 40.57746512306521 ], [ -93.72833707931683, 40.57746512306521 ], [ -93.7223360023509, 40.577666815333089 ], [ -93.690421183941197, 40.577868507600968 ], [ -93.677055148880726, 40.578070199868847 ], [ -93.668871862109015, 40.578271892136726 ], [ -93.661779680240187, 40.578271892136726 ], [ -93.659324694208678, 40.578271892136726 ], [ -93.656324155725713, 40.578271892136726 ], [ -93.597404490969353, 40.579482045743994 ], [ -93.56630800123682, 40.580087122547631 ], [ -93.565762448785364, 40.580087122547631 ], [ -93.565216896333922, 40.580087122547631 ], [ -93.560852476722346, 40.580288814815511 ], [ -93.558943043142278, 40.580288814815511 ], [ -93.557033609562211, 40.580288814815511 ], [ -93.554033071079246, 40.580288814815511 ], [ -93.548304770339044, 40.58049050708339 ], [ -93.528119329635473, 40.580288814815511 ], [ -93.527573777184017, 40.58049050708339 ], [ -93.52402768624961, 40.58049050708339 ], [ -93.467017455073318, 40.580087122547631 ], [ -93.465380797718979, 40.580087122547631 ], [ -93.441649266080987, 40.579885430279752 ], [ -93.374273538327188, 40.580288814815511 ], [ -93.34535925840045, 40.58049050708339 ], [ -93.317536083376609, 40.580692199351269 ], [ -93.260525852200317, 40.580893891619148 ], [ -93.098496774120306, 40.583919275637328 ], [ -93.097405669217409, 40.583919275637328 ], [ -93.085403515285549, 40.584322660173086 ], [ -92.957744241646765, 40.587348044191273 ], [ -92.941650444329056, 40.587751428727032 ], [ -92.903461772727695, 40.587953120994911 ], [ -92.88982296144151, 40.587953120994911 ], [ -92.879184688638276, 40.588356505530669 ], [ -92.863090891320567, 40.58815481326279 ], [ -92.857362590580365, 40.588356505530669 ], [ -92.834994940070999, 40.588558197798548 ], [ -92.827902758202185, 40.588558197798548 ], [ -92.828175534427899, 40.588558197798548 ], [ -92.757526491965407, 40.588961582334306 ], [ -92.742251023324869, 40.589163274602186 ], [ -92.714700624526756, 40.589566659137944 ], [ -92.689877987985881, 40.589970043673702 ], [ -92.686604673277188, 40.589768351405823 ], [ -92.639141610001232, 40.590776812745219 ], [ -92.637777728872607, 40.590776812745219 ], [ -92.580221945244858, 40.592188658620373 ], [ -92.484477490015763, 40.595012350370673 ], [ -92.482295280209968, 40.594810658102801 ], [ -92.48174972775854, 40.595012350370673 ], [ -92.461564287054955, 40.595415734906432 ], [ -92.453653776508958, 40.595214042638553 ], [ -92.379731419337787, 40.596424196245827 ], [ -92.350817139411049, 40.597230965317344 ], [ -92.350817139411049, 40.597230965317344 ], [ -92.331450027384648, 40.597634349853102 ], [ -92.33117725115892, 40.597836042120981 ], [ -92.298716880297775, 40.598441118924619 ], [ -92.236523900832736, 40.599449580264007 ], [ -92.217702341257777, 40.599852964799766 ], [ -92.201608543940068, 40.600054657067645 ], [ -92.196153019425594, 40.600054657067645 ], [ -92.179786445882158, 40.600458041603403 ], [ -92.096316920810636, 40.601869887478557 ], [ -92.09277082987623, 40.602071579746436 ], [ -92.083223661975893, 40.602273272014315 ], [ -92.082405333298709, 40.602273272014315 ], [ -92.069584850689694, 40.602676656550074 ], [ -92.067948193335354, 40.602676656550074 ], [ -92.029759521734007, 40.603685117889469 ], [ -91.998663032001474, 40.604491886960986 ], [ -91.971112633203361, 40.605096963764623 ], [ -91.943016681953793, 40.60590373283614 ], [ -91.868275996105439, 40.60812234778281 ], [ -91.832542310535615, 40.609735885925843 ], [ -91.824904576215346, 40.610139270461602 ], [ -91.813993527186383, 40.61054265499736 ], [ -91.80008193967447, 40.610946039533118 ], [ -91.795444743837152, 40.61114773180099 ], [ -91.785897575936815, 40.611551116336749 ], [ -91.729160120986251, 40.61356803901554 ], [ -91.716885190828663, 40.598441118924619 ], [ -91.696426973899378, 40.58815481326279 ], [ -91.620049630696684, 40.540757130311235 ], [ -91.618140197116617, 40.53410128547123 ], [ -91.622231840502479, 40.514335443219096 ], [ -91.619504078245228, 40.507074521575447 ], [ -91.524577951693317, 40.410665617529304 ], [ -91.49102647592926, 40.393521774759591 ], [ -91.484479846511903, 40.383840545901407 ], [ -91.419286328563885, 40.378193162400791 ], [ -91.444927293781916, 40.363267934577749 ], [ -91.462112196002522, 40.342493630986212 ], [ -91.489935371026377, 40.28601979598011 ], [ -91.501391972506781, 40.248908418690377 ], [ -91.506029168344085, 40.234386575403093 ], [ -91.510393587955662, 40.201107351203063 ], [ -91.512848573987185, 40.18113981668305 ], [ -91.510393587955662, 40.128094750230886 ], [ -91.494845343089395, 40.037333229685352 ], [ -91.460202762422455, 39.980254317875605 ], [ -91.455838342810893, 39.945563247800422 ], [ -91.446291174910556, 39.870332031881574 ], [ -91.43292513985007, 39.84048157623549 ], [ -91.365276635870543, 39.777351896389369 ], [ -91.368004398127781, 39.759199592280268 ], [ -91.369913831707848, 39.745081133528736 ], [ -91.369913831707848, 39.732576212920243 ], [ -91.367731621902067, 39.728945752098426 ], [ -91.348910062327107, 39.712406986132351 ], [ -91.313176376757269, 39.684976837700802 ], [ -91.229434075460034, 39.620838696515293 ], [ -91.177879368798216, 39.598249162512857 ], [ -91.168332200897879, 39.564969938312828 ], [ -91.158512256771814, 39.553070094507966 ], [ -91.042309584613434, 39.45202226830061 ], [ -90.993755416434567, 39.422978581726042 ], [ -90.940018499966953, 39.393531510615709 ], [ -90.882735492564933, 39.362269209094471 ], [ -90.842091834932063, 39.341898290038699 ], [ -90.799265967493426, 39.313056295732004 ], [ -90.729980806159546, 39.255977383922257 ], [ -90.726980267676581, 39.251136769493165 ], [ -90.719069757130583, 39.224916774668898 ], [ -90.681153861754964, 39.100674337655462 ], [ -90.682790519109304, 39.088371109314842 ], [ -90.712523127713212, 39.057108807793604 ], [ -90.713614232616109, 39.053881731507545 ], [ -90.711704799036042, 39.046822502131775 ], [ -90.665878393114411, 38.934278216655315 ], [ -90.663423407082917, 38.928025756351069 ], [ -90.657149553891259, 38.920361450171669 ], [ -90.625234735481556, 38.888695764114672 ], [ -90.583499972945802, 38.868929921862531 ], [ -90.56658784695091, 38.868929921862531 ], [ -90.555676797921961, 38.870745152273443 ], [ -90.543947420215829, 38.874980689898905 ], [ -90.507395405968822, 38.902814222866198 ], [ -90.486937189039537, 38.926008833672284 ], [ -90.482845545653674, 38.934681601191073 ], [ -90.482299993202219, 38.944362830049265 ], [ -90.47220727285044, 38.958884673336556 ], [ -90.467842853238864, 38.961708365086857 ], [ -90.450930727243986, 38.967759133123224 ], [ -90.450657951018258, 38.967759133123224 ], [ -90.406468202450981, 38.962515134158373 ], [ -90.385737209295968, 38.956867750657764 ], [ -90.275808390329217, 38.926412218208043 ], [ -90.250167425111172, 38.919352988832273 ], [ -90.225890341021739, 38.908864990902572 ], [ -90.207068781446793, 38.898982069776501 ], [ -90.113233759797765, 38.849365771878276 ], [ -90.109414892637631, 38.843516696109788 ], [ -90.109142116411903, 38.837465928073414 ], [ -90.114597640926391, 38.81507808633885 ], [ -90.117598179409356, 38.805800242016417 ], [ -90.12305370392383, 38.798135935837024 ], [ -90.165061242685312, 38.770705787405483 ], [ -90.171335095876969, 38.766470249780028 ], [ -90.209796543704044, 38.726131796204228 ], [ -90.211978753509825, 38.711811645184824 ], [ -90.209250991252588, 38.70273549313027 ], [ -90.202158809383775, 38.693457648807836 ], [ -90.195339403740661, 38.687608573039348 ], [ -90.18633778829178, 38.674700267895091 ], [ -90.181427816228748, 38.660380116875686 ], [ -90.18115504000302, 38.659573347804169 ], [ -90.177608949068613, 38.642832889570215 ], [ -90.177881725294327, 38.633756737515668 ], [ -90.182518921131646, 38.618024740621109 ], [ -90.184428354711713, 38.611570588048977 ], [ -90.195884956192117, 38.594426745279264 ], [ -90.202431585609489, 38.588577669510784 ], [ -90.224526459893127, 38.57466090302713 ], [ -90.248803543982547, 38.544810447381046 ], [ -90.257805159431442, 38.532103834504667 ], [ -90.260260145462951, 38.528271681414971 ], [ -90.262987907720202, 38.520203990699812 ], [ -90.27908170503791, 38.472402923212499 ], [ -90.285082782003826, 38.443359236637932 ], [ -90.295448278581347, 38.426820470671856 ], [ -90.340183579600065, 38.387087093899694 ], [ -90.346184656565995, 38.381843094934851 ], [ -90.3508218524033, 38.37498555782696 ], [ -90.370734516881143, 38.333638642911779 ], [ -90.37264395046121, 38.323352337249943 ], [ -90.374007831589836, 38.281803730066883 ], [ -90.363915111238043, 38.23642296979412 ], [ -90.353822390886265, 38.21383343579167 ], [ -90.33418250263415, 38.189832055914074 ], [ -90.253986292271307, 38.122063453906748 ], [ -90.243075243242345, 38.112583917316435 ], [ -90.203795466738114, 38.088784229706718 ], [ -90.126599794858237, 38.041588239023042 ], [ -90.072317325939181, 38.016981782341809 ], [ -89.997031087639385, 37.963129946818128 ], [ -89.974936213355733, 37.926623646332033 ], [ -89.973572332227121, 37.917749186545358 ], [ -89.950659129266313, 37.881444578327148 ], [ -89.938111422883011, 37.875192118022895 ], [ -89.937293094205842, 37.874788733487136 ], [ -89.923108730468201, 37.870754888129561 ], [ -89.901832184861732, 37.869746426790165 ], [ -89.881373967932433, 37.879629347916236 ], [ -89.862825184583215, 37.896974882953828 ], [ -89.851095806877083, 37.90403411232959 ], [ -89.844821953685425, 37.905647650472616 ], [ -89.739803106781721, 37.846955200519844 ], [ -89.67433681260799, 37.803187978390113 ], [ -89.671336274125025, 37.801171055711322 ], [ -89.515308273010945, 37.67128123519727 ], [ -89.506579433787778, 37.62509370585299 ], [ -89.512034958302252, 37.584553560009311 ], [ -89.518036035268182, 37.583948483205681 ], [ -89.52130934997686, 37.57890617650871 ], [ -89.52130934997686, 37.572048639400819 ], [ -89.521582126202588, 37.566199563632331 ], [ -89.521582126202588, 37.557325103845656 ], [ -89.516944930365298, 37.537357569325636 ], [ -89.492122293824409, 37.493993731731663 ], [ -89.475482944055244, 37.471404197729221 ], [ -89.450933083740097, 37.450024817334054 ], [ -89.439749258485421, 37.437116512189796 ], [ -89.425837670973493, 37.407467748811591 ], [ -89.420927698910475, 37.38770190655945 ], [ -89.428292657005017, 37.356237912770332 ], [ -89.432929852842321, 37.346960068447899 ], [ -89.435930391325286, 37.344539761233349 ], [ -89.447659769031418, 37.340505915875774 ], [ -89.474664615378089, 37.338085608661231 ], [ -89.484484559504139, 37.334858532375165 ], [ -89.489121755341444, 37.333446686500011 ], [ -89.511762182076524, 37.310857152497569 ], [ -89.51830881149391, 37.289276079834522 ], [ -89.516944930365298, 37.282015158190873 ], [ -89.491303965147239, 37.248534241722965 ], [ -89.467572433509261, 37.218280401541122 ], [ -89.414381069493089, 37.125098573781045 ], [ -89.385466789566351, 37.055111356827041 ], [ -89.383830132212012, 37.046438589308252 ], [ -89.378374607697538, 37.039581052200361 ], [ -89.322728257649857, 37.00912551975064 ], [ -89.292177320368779, 36.992183369248806 ], [ -89.27853850908258, 36.988754600694868 ], [ -89.271173550988038, 36.98532583214093 ], [ -89.261080830636246, 36.982502140390622 ], [ -89.245532585769993, 36.983107217194259 ], [ -89.226165473743592, 36.98532583214093 ], [ -89.207071137942918, 36.982502140390622 ], [ -89.185521816110736, 36.973425988336068 ], [ -89.169973571244469, 36.970198912050009 ], [ -89.132603228320292, 36.982300448122743 ], [ -89.100688409910589, 36.943978917225735 ], [ -89.100688409910589, 36.943978917225735 ], [ -89.147605920735103, 36.847166628643834 ], [ -89.177065753113283, 36.835871861642616 ], [ -89.178702410467622, 36.816509403926233 ], [ -89.179247962919078, 36.812878943104415 ], [ -89.123601612871397, 36.785247102404995 ], [ -89.123601612871397, 36.785247102404995 ], [ -89.130421018514497, 36.751766185937086 ], [ -89.142423172446343, 36.755396646758911 ], [ -89.169155242567285, 36.759430492116493 ], [ -89.184430711207824, 36.753581416347998 ], [ -89.19779674626831, 36.739462957596473 ], [ -89.201070060977003, 36.725747883380706 ], [ -89.199433403622649, 36.716066654522514 ], [ -89.171883004824537, 36.672501124660656 ], [ -89.174610767081774, 36.650516667461851 ], [ -89.174610767081774, 36.650516667461851 ], [ -89.187704025916531, 36.641037130871538 ], [ -89.197523970042582, 36.628935594798804 ], [ -89.200797284751275, 36.618245904601217 ], [ -89.202706718331342, 36.601505446367263 ], [ -89.21361776736029, 36.580126065972095 ], [ -89.22725657864649, 36.569436375774508 ], [ -89.236530970321098, 36.566814376292086 ], [ -89.259989725733362, 36.565200838149053 ], [ -89.271719103439494, 36.571453298453299 ], [ -89.294632306400302, 36.593639447919983 ], [ -89.313453865975248, 36.620061135012129 ], [ -89.326819901035719, 36.63216267108487 ], [ -89.327638229712889, 36.63216267108487 ], [ -89.343732027030597, 36.630952517477596 ], [ -89.365554125088522, 36.625103441709101 ], [ -89.37646517411747, 36.613808674707883 ], [ -89.388194551823602, 36.573470221132091 ], [ -89.400469481981176, 36.538375766521149 ], [ -89.417381607976068, 36.499045774284752 ], [ -89.429383761907914, 36.48190193151504 ], [ -89.448478097708588, 36.464354704209569 ], [ -89.460480251640433, 36.458102243905323 ], [ -89.471664076895109, 36.457093782565927 ], [ -89.486121216858493, 36.461531012459268 ], [ -89.493213398727306, 36.470203779978064 ], [ -89.493486174953034, 36.478674855228974 ], [ -89.485030111955581, 36.497633928409599 ], [ -89.472482405572293, 36.513769309839915 ], [ -89.465935776154907, 36.529904691270232 ], [ -89.465390223703466, 36.536157151574486 ], [ -89.467845209734975, 36.546846841772066 ], [ -89.473300734249463, 36.559956839184196 ], [ -89.479029034989665, 36.56822622216724 ], [ -89.484757335729867, 36.571856682989058 ], [ -89.500032804370406, 36.576293912882392 ], [ -89.527583203168518, 36.581134527311491 ], [ -89.54613198651775, 36.579924373704216 ], [ -89.552678615935122, 36.577100681953908 ], [ -89.566862979672763, 36.564192376809658 ], [ -89.571500175510067, 36.552494225272682 ], [ -89.570136294381456, 36.544426534557516 ], [ -89.560316350255391, 36.525467461376898 ], [ -89.539039804648922, 36.498239005213236 ], [ -89.5226732311055, 36.481296854711402 ], [ -89.519399916396793, 36.475447778942915 ], [ -89.509579972270743, 36.375005029539196 ], [ -89.513126063205164, 36.359878109448275 ], [ -89.519127140171079, 36.34858334244705 ], [ -89.531947622780109, 36.339305498124617 ], [ -89.545040881614852, 36.336885190910067 ], [ -89.560316350255391, 36.337691959981584 ], [ -89.58159289586186, 36.342330882142804 ], [ -89.605597203725551, 36.342330882142804 ], [ -89.610779952014312, 36.340515651731891 ], [ -89.615962700303072, 36.33607842183855 ], [ -89.619781567463207, 36.329624269266425 ], [ -89.620327119914649, 36.322968424426421 ], [ -89.611871056917209, 36.309051657942774 ], [ -89.578592357378895, 36.288277354351237 ], [ -89.554315273289461, 36.277789356421536 ], [ -89.544768105389124, 36.280411355903958 ], [ -89.539585357100378, 36.277385971885778 ], [ -89.535493713714516, 36.270528434777887 ], [ -89.534675385037332, 36.252577822936665 ], [ -89.541494790680446, 36.247938900775452 ], [ -89.589503406407857, 36.23906444098877 ], [ -89.602323889016873, 36.238055979649374 ], [ -89.678155679768125, 36.248342285311203 ], [ -89.691248938602868, 36.252174438400907 ], [ -89.699705001600307, 36.248342285311203 ], [ -89.629328735363544, 36.185414297732969 ], [ -89.618144910108867, 36.179968606500239 ], [ -89.606961084854177, 36.171094146713564 ], [ -89.594413378470875, 36.155362149819005 ], [ -89.591685616213638, 36.144067382817781 ], [ -89.593867826019434, 36.127125232315947 ], [ -89.602051112791145, 36.119460926136554 ], [ -89.624145987074797, 36.108569543671088 ], [ -89.684429532959768, 36.05169232412922 ], [ -89.68715729521702, 36.03414509682375 ], [ -89.690430609925698, 36.024867252501316 ], [ -89.706797183469135, 36.001067564891599 ], [ -89.732983701138636, 36.000664180355841 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "40", "geo_id": "0400000US31", "fips_state": "31", "name": "Nebraska", "iso_3166_2": "NE", "census": 1826341, "pop_estimataes_base": 1826341, "pop_2010": 1829865, "pop_2011": 1842232, "pop_2012": 1855487, "pop_2013": 1868969, "pop_2014": 1881503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.053189999192767, 43.000596029363031 ], [ -103.815601906587233, 43.001201106166668 ], [ -103.813965249232893, 43.001402798434547 ], [ -103.576922709078815, 43.00079772163091 ], [ -103.576377156627359, 43.00079772163091 ], [ -103.506546442842037, 43.00079772163091 ], [ -103.506273666616323, 43.00079772163091 ], [ -103.505182561713426, 43.00079772163091 ], [ -103.505182561713426, 43.00079772163091 ], [ -103.404528134421298, 43.00079772163091 ], [ -103.340698497601892, 43.00079772163091 ], [ -103.132843013600279, 43.00079772163091 ], [ -103.131751908697382, 43.00079772163091 ], [ -103.000819320349905, 43.000394337095159 ], [ -102.792145507671108, 42.999990952559401 ], [ -102.487454463537489, 42.999587568023642 ], [ -102.440536952712975, 42.999587568023642 ], [ -102.082654544563198, 42.999385875755763 ], [ -102.08238176833747, 42.999385875755763 ], [ -101.875344613013027, 42.999385875755763 ], [ -101.625481590249919, 42.996158799469697 ], [ -101.230228839175965, 42.997974029880609 ], [ -101.229137734273067, 42.99777233761273 ], [ -101.228046629370169, 42.997974029880609 ], [ -101.226955524467272, 42.997974029880609 ], [ -101.22640997201583, 42.997974029880609 ], [ -100.964272019095148, 42.997974029880609 ], [ -100.958270942129218, 42.99777233761273 ], [ -100.9067162354674, 42.997974029880609 ], [ -100.887894675892454, 42.997974029880609 ], [ -100.553198246929199, 42.998780798952126 ], [ -100.54392385525459, 42.998780798952126 ], [ -100.534376687354253, 42.998982491220005 ], [ -100.472729260340643, 42.999385875755763 ], [ -100.355435483279365, 42.998780798952126 ], [ -100.349434406313435, 42.998780798952126 ], [ -100.283695335913976, 42.998780798952126 ], [ -100.277694258948046, 42.998579106684247 ], [ -100.198316377262387, 42.998579106684247 ], [ -100.198316377262387, 42.998579106684247 ], [ -100.198316377262387, 42.998579106684247 ], [ -100.126849006122725, 42.998780798952126 ], [ -100.126303453671269, 42.998780798952126 ], [ -100.119211271802456, 42.998780798952126 ], [ -100.034377865602309, 42.998377414416368 ], [ -100.027831236184937, 42.998377414416368 ], [ -100.004645256998401, 42.998377414416368 ], [ -99.961273837108308, 42.998377414416368 ], [ -99.950908340530788, 42.998377414416368 ], [ -99.950362788079346, 42.998377414416368 ], [ -99.927722361344266, 42.998175722148488 ], [ -99.918447969669643, 42.997974029880609 ], [ -99.877804312036787, 42.998175722148488 ], [ -99.86989380149079, 42.998175722148488 ], [ -99.860073857364739, 42.997974029880609 ], [ -99.849981137012946, 42.998175722148488 ], [ -99.821885185763392, 42.997974029880609 ], [ -99.809337479380076, 42.998175722148488 ], [ -99.80333640241416, 42.997974029880609 ], [ -99.800335863931195, 42.997974029880609 ], [ -99.788333709999335, 42.997974029880609 ], [ -99.768421045521492, 42.998175722148488 ], [ -99.743052856529175, 42.997974029880609 ], [ -99.726686282985739, 42.997974029880609 ], [ -99.719048548665469, 42.997974029880609 ], [ -99.701318093993422, 42.997974029880609 ], [ -99.699135884187626, 42.997974029880609 ], [ -99.569294400743033, 42.997974029880609 ], [ -99.535470148753276, 42.997974029880609 ], [ -99.534106267624651, 42.997974029880609 ], [ -99.494280938668965, 42.998175722148488 ], [ -99.490734847734558, 42.998175722148488 ], [ -99.474641050416835, 42.998175722148488 ], [ -99.471367735708156, 42.997974029880609 ], [ -99.395535944956904, 42.998175722148488 ], [ -99.374259399350436, 42.997974029880609 ], [ -99.370986084641743, 42.998175722148488 ], [ -99.368531098610234, 42.998175722148488 ], [ -99.347254553003765, 42.998175722148488 ], [ -99.288062112021677, 42.998175722148488 ], [ -99.26269392302936, 42.998175722148488 ], [ -99.254510636257635, 42.998175722148488 ], [ -99.254237860031907, 42.998175722148488 ], [ -99.234597971779792, 42.998377414416368 ], [ -99.195318195275547, 42.998175722148488 ], [ -99.161493943285791, 42.998377414416368 ], [ -99.15112844670827, 42.998377414416368 ], [ -99.139126292776425, 42.998579106684247 ], [ -99.135852978067732, 42.998377414416368 ], [ -99.081843285374404, 42.998377414416368 ], [ -99.079933851794337, 42.998377414416368 ], [ -99.022378068166589, 42.998175722148488 ], [ -99.021832515715147, 42.998377414416368 ], [ -99.00028319388295, 42.998175722148488 ], [ -98.962094522281603, 42.998377414416368 ], [ -98.919268654842938, 42.998175722148488 ], [ -98.919268654842938, 42.998175722148488 ], [ -98.903174857525244, 42.998377414416368 ], [ -98.899901542816551, 42.998175722148488 ], [ -98.824069752065299, 42.998377414416368 ], [ -98.801429325330218, 42.998175722148488 ], [ -98.764331758631755, 42.998377414416368 ], [ -98.742509660573845, 42.998377414416368 ], [ -98.665586764919709, 42.998579106684247 ], [ -98.663677331339642, 42.998377414416368 ], [ -98.56902398101343, 42.998579106684247 ], [ -98.565205113853295, 42.998377414416368 ], [ -98.498647714776666, 42.998579106684247 ], [ -98.495647176293701, 42.988091108754539 ], [ -98.490464428004955, 42.978006495360589 ], [ -98.467278448818419, 42.947550962910867 ], [ -98.447093008114848, 42.935046042302375 ], [ -98.325980363893422, 42.886438205743545 ], [ -98.309613790349999, 42.881194206778687 ], [ -98.204594943446281, 42.846906521239262 ], [ -98.165860719393493, 42.837023600113199 ], [ -98.157404656396054, 42.83198129341622 ], [ -98.056750229103926, 42.770868536248898 ], [ -98.034928131046016, 42.764212691408886 ], [ -98.017197676373954, 42.762397460997981 ], [ -98.000285550379076, 42.763204230069498 ], [ -97.950094724845869, 42.769658382641623 ], [ -97.936728689785397, 42.775709150677997 ], [ -97.908905514761557, 42.794869916126494 ], [ -97.888447297832272, 42.817257757861057 ], [ -97.879991234834819, 42.835410061970165 ], [ -97.875354038997514, 42.858806365044124 ], [ -97.865806871097178, 42.8628402104017 ], [ -97.845348654167893, 42.867680824830799 ], [ -97.828436528173, 42.868890978438074 ], [ -97.814252164435359, 42.861024979990788 ], [ -97.774426835479673, 42.84973021298957 ], [ -97.686592890796561, 42.842469291345928 ], [ -97.635038184134743, 42.844889598560471 ], [ -97.531928770811106, 42.850133597525328 ], [ -97.48528403621232, 42.854772519686549 ], [ -97.423091056747268, 42.861226672258667 ], [ -97.32843770642107, 42.859411441847762 ], [ -97.256970335281409, 42.853764058347153 ], [ -97.218236111228606, 42.82956098620167 ], [ -97.190140159979038, 42.805156221788323 ], [ -97.163135313632381, 42.79345807025134 ], [ -97.137494348414322, 42.782364995517995 ], [ -97.052115389762747, 42.77026345944526 ], [ -97.026201648318974, 42.76259915326586 ], [ -97.01556337551574, 42.758767000176164 ], [ -96.961008130370956, 42.737992696584627 ], [ -96.920364472738086, 42.731336851744622 ], [ -96.906725661451901, 42.733757158959165 ], [ -96.813163416028587, 42.70632701052763 ], [ -96.806616786611215, 42.703503318777322 ], [ -96.723965590216864, 42.665988556951838 ], [ -96.712781764962187, 42.648037945110609 ], [ -96.707326240447713, 42.631297486876662 ], [ -96.710599555156392, 42.619599335339672 ], [ -96.711417883833576, 42.610321491017245 ], [ -96.708144569124883, 42.60164872349845 ], [ -96.635858869308038, 42.524400584900803 ], [ -96.626038925181987, 42.513509202435344 ], [ -96.611581785218618, 42.506046588523823 ], [ -96.487468602514241, 42.479826593699556 ], [ -96.475466448582381, 42.480028285967435 ], [ -96.443278853946964, 42.489507822557748 ], [ -96.409454601957194, 42.487692592146836 ], [ -96.396088566896722, 42.484062131325018 ], [ -96.385450294093488, 42.473170748859552 ], [ -96.381358650707625, 42.461674289590448 ], [ -96.380813098256183, 42.446345677231648 ], [ -96.387632503899283, 42.432428910748001 ], [ -96.413546245343056, 42.407822454066768 ], [ -96.415455678923124, 42.400359840155247 ], [ -96.417910664954633, 42.351348619060659 ], [ -96.41381902156877, 42.343482620613379 ], [ -96.408090720828568, 42.337431852577012 ], [ -96.384086412964876, 42.325935393307915 ], [ -96.375357573741709, 42.318271087128508 ], [ -96.34889827984648, 42.281966478910299 ], [ -96.328985615368637, 42.254738022746636 ], [ -96.322984538402721, 42.233560334619348 ], [ -96.323802867079891, 42.229929873797531 ], [ -96.336350573463193, 42.218836799064178 ], [ -96.35653601416675, 42.215206338242361 ], [ -96.35653601416675, 42.215004645974481 ], [ -96.359809328875443, 42.210567416081147 ], [ -96.349716608523664, 42.17204419291626 ], [ -96.343988307783462, 42.162161271790197 ], [ -96.307436293536455, 42.13069727800108 ], [ -96.279067566061158, 42.074021750727091 ], [ -96.272793712869515, 42.047196679099187 ], [ -96.251789943488774, 42.040540834259183 ], [ -96.221784558659138, 42.026220683239778 ], [ -96.129586194364464, 41.97176377091246 ], [ -96.129313418138736, 41.965107926072449 ], [ -96.136678376233277, 41.920735627139081 ], [ -96.142133900747751, 41.915289935906344 ], [ -96.159046026742644, 41.910045936941493 ], [ -96.162046565225609, 41.90560870704816 ], [ -96.161773788999881, 41.901776553958456 ], [ -96.144588886779275, 41.871926098312372 ], [ -96.139678914716242, 41.865875330275998 ], [ -96.111037411015232, 41.830780875665063 ], [ -96.08648755070007, 41.811418417948687 ], [ -96.077758711476918, 41.808796418466258 ], [ -96.070939305833818, 41.804560880840796 ], [ -96.065756557545058, 41.798106728268671 ], [ -96.064665452642174, 41.7930644215717 ], [ -96.077213159025462, 41.715412898438302 ], [ -96.096853047277591, 41.698672440204348 ], [ -96.121675683818466, 41.68273875104191 ], [ -96.099853585760556, 41.660955986110977 ], [ -96.095489166148965, 41.652686603127947 ], [ -96.094943613697524, 41.647442604163089 ], [ -96.097671375954761, 41.63957660571581 ], [ -96.116220159303992, 41.621625993874581 ], [ -96.11812959288406, 41.613558303159422 ], [ -96.09412528502034, 41.53933554857997 ], [ -96.089760865408763, 41.531872934668442 ], [ -96.055118284741837, 41.509485092933879 ], [ -96.046662221744384, 41.507064785719336 ], [ -96.040661144778454, 41.507064785719336 ], [ -96.036569501392606, 41.509081708398121 ], [ -96.030568424426676, 41.527234012507229 ], [ -95.994834738856838, 41.526225551167833 ], [ -95.981195927570653, 41.506863093451457 ], [ -95.930732325811718, 41.433850492479266 ], [ -95.93727895522909, 41.394318807974997 ], [ -95.938370060132002, 41.392100193028327 ], [ -95.956918843481219, 41.349139739970106 ], [ -95.956646067255491, 41.345509279148288 ], [ -95.953099976321084, 41.339861895647672 ], [ -95.939188388809157, 41.328970513182213 ], [ -95.925822353748686, 41.322112976074322 ], [ -95.91382019981684, 41.320297745663417 ], [ -95.902363598336436, 41.273303447247613 ], [ -95.925004025071516, 41.211182228740896 ], [ -95.927459011103039, 41.202106076686349 ], [ -95.926095129974414, 41.195651924114216 ], [ -95.923094591491449, 41.191013001953003 ], [ -95.923094591491449, 41.191013001953003 ], [ -95.91463852849401, 41.185163926184515 ], [ -95.852718325254685, 41.165398083932374 ], [ -95.853263877706127, 41.160355777235395 ], [ -95.86635713654087, 41.051643644848639 ], [ -95.867175465218054, 41.043575954133487 ], [ -95.867175465218054, 41.001623962414655 ], [ -95.835533423034079, 40.984278427377063 ], [ -95.828986793616707, 40.975605659858275 ], [ -95.823258492876505, 40.900979520743057 ], [ -95.82107628307071, 40.876776448597582 ], [ -95.85408220638331, 40.783998005373263 ], [ -95.86171994070358, 40.762820317245968 ], [ -95.8723582135068, 40.758383087352634 ], [ -95.881632605181423, 40.750517088905355 ], [ -95.886815353470169, 40.742046013654438 ], [ -95.888997563275964, 40.731759707992609 ], [ -95.883269262535762, 40.717641249241083 ], [ -95.84289838112862, 40.67750448793317 ], [ -95.822985716650777, 40.667218182271341 ], [ -95.795435317852665, 40.662377567842249 ], [ -95.78643370240377, 40.657335261145278 ], [ -95.776340982051991, 40.6474523400192 ], [ -95.748517807028151, 40.603281733353711 ], [ -95.75015446438249, 40.597029273049465 ], [ -95.753155002865455, 40.59279373542401 ], [ -95.765702709248757, 40.585129429244603 ], [ -95.773613219794754, 40.578271892136726 ], [ -95.774704324697638, 40.573632969975506 ], [ -95.769248800183163, 40.536723284953652 ], [ -95.766793814151654, 40.531479285988802 ], [ -95.75697387002559, 40.526033594756072 ], [ -95.748790583253879, 40.52421836434516 ], [ -95.710056359201076, 40.523814979809401 ], [ -95.697235876592046, 40.536924977221531 ], [ -95.696690324140604, 40.545194360204576 ], [ -95.659319981216427, 40.519781134451819 ], [ -95.681414855500066, 40.490737447877251 ], [ -95.692598680754742, 40.483073141697851 ], [ -95.687415932465996, 40.465122529856629 ], [ -95.62276796696942, 40.34229193871834 ], [ -95.553210029409826, 40.291062102677081 ], [ -95.55102781960403, 40.28601979598011 ], [ -95.552391700732656, 40.264438723317056 ], [ -95.552391700732656, 40.261816723834635 ], [ -95.521840763451564, 40.249513495494014 ], [ -95.312075845869884, 40.009298004450173 ], [ -95.30825697870975, 40.000020160127747 ], [ -95.339899020893725, 40.000020160127747 ], [ -95.375359930237835, 40.000020160127747 ], [ -95.784524268823702, 40.000423544663505 ], [ -95.788070359758109, 40.000423544663505 ], [ -95.788070359758109, 40.000423544663505 ], [ -95.882450933858593, 40.000423544663505 ], [ -95.958009948384117, 40.000423544663505 ], [ -96.010655759948833, 40.000625236931384 ], [ -96.010655759948833, 40.000625236931384 ], [ -96.024021795009304, 40.000625236931384 ], [ -96.051572193807417, 40.000826929199263 ], [ -96.081304802411324, 40.000625236931384 ], [ -96.089760865408763, 40.000423544663505 ], [ -96.125767327204329, 40.000423544663505 ], [ -96.126040103430043, 40.000423544663505 ], [ -96.147043872810784, 40.000423544663505 ], [ -96.154136054679611, 40.000423544663505 ], [ -96.154408830905339, 40.000423544663505 ], [ -96.220147901304799, 40.000625236931384 ], [ -96.223966768464933, 40.000826929199263 ], [ -96.239242237105472, 40.000625236931384 ], [ -96.239242237105472, 40.000625236931384 ], [ -96.301162440344797, 40.000625236931384 ], [ -96.30443575505349, 40.000625236931384 ], [ -96.463737070876249, 40.001028621467142 ], [ -96.463737070876249, 40.001028621467142 ], [ -96.467555938036384, 40.001028621467142 ], [ -96.470010924067907, 40.001028621467142 ], [ -96.527021155244199, 40.001028621467142 ], [ -96.539023309176059, 40.000826929199263 ], [ -96.557844868751005, 40.001028621467142 ], [ -96.570938127585748, 40.001028621467142 ], [ -96.580758071711813, 40.001028621467142 ], [ -96.604762379575519, 40.000826929199263 ], [ -96.610217904089993, 40.000826929199263 ], [ -96.622492834247566, 40.001230313735022 ], [ -96.805798457934046, 40.001432006002901 ], [ -96.8737197381393, 40.001432006002901 ], [ -96.875083619267912, 40.001432006002901 ], [ -96.878356933976605, 40.001432006002901 ], [ -96.8805391437824, 40.001432006002901 ], [ -96.91600005312651, 40.001432006002901 ], [ -96.916272829352238, 40.001432006002901 ], [ -97.009289522324082, 40.001432006002901 ], [ -97.030838844156278, 40.001432006002901 ], [ -97.049660403731224, 40.001230313735022 ], [ -97.13776712464005, 40.001835390538652 ], [ -97.142404320477354, 40.001432006002901 ], [ -97.181684096981598, 40.001633698270773 ], [ -97.20023288033083, 40.001633698270773 ], [ -97.202415090136611, 40.001432006002901 ], [ -97.244968181349549, 40.001432006002901 ], [ -97.245240957575277, 40.001432006002901 ], [ -97.350259804478981, 40.002037082806531 ], [ -97.350805356930437, 40.001835390538652 ], [ -97.369081364053926, 40.002037082806531 ], [ -97.369081364053926, 40.002037082806531 ], [ -97.415726098652726, 40.002037082806531 ], [ -97.417908308458507, 40.002037082806531 ], [ -97.425546042778791, 40.002037082806531 ], [ -97.444640378579464, 40.002037082806531 ], [ -97.463189161928682, 40.002037082806531 ], [ -97.510379448978924, 40.001835390538652 ], [ -97.511470553881821, 40.001835390538652 ], [ -97.515289421041956, 40.001835390538652 ], [ -97.767880206062301, 40.002037082806531 ], [ -97.769244087190913, 40.002037082806531 ], [ -97.770880744545252, 40.002037082806531 ], [ -97.77715459773691, 40.00223877507441 ], [ -97.81943491272412, 40.002037082806531 ], [ -97.821617122529915, 40.002037082806531 ], [ -97.821617122529915, 40.002037082806531 ], [ -97.838256472299065, 40.001835390538652 ], [ -97.857350808099739, 40.002037082806531 ], [ -97.876172367674684, 40.002037082806531 ], [ -97.931818717722365, 40.002037082806531 ], [ -97.931818717722365, 40.002037082806531 ], [ -97.972189599129507, 40.002037082806531 ], [ -98.010105494505126, 40.00223877507441 ], [ -98.014469914116717, 40.00223877507441 ], [ -98.047475837429317, 40.00223877507441 ], [ -98.049930823460826, 40.00223877507441 ], [ -98.068752383035772, 40.002440467342289 ], [ -98.076117341130328, 40.00223877507441 ], [ -98.099576096542577, 40.00223877507441 ], [ -98.142129187755501, 40.002440467342289 ], [ -98.172134572585136, 40.002440467342289 ], [ -98.179226754453964, 40.002440467342289 ], [ -98.193411118191605, 40.002642159610168 ], [ -98.249875796916456, 40.00223877507441 ], [ -98.26815180403996, 40.002440467342289 ], [ -98.273880104780162, 40.002440467342289 ], [ -98.27415288100589, 40.002440467342289 ], [ -98.490464428004955, 40.00223877507441 ], [ -98.504376015516868, 40.00223877507441 ], [ -98.5229247988661, 40.00223877507441 ], [ -98.543110239569671, 40.00223877507441 ], [ -98.560567918016005, 40.00223877507441 ], [ -98.575297834205088, 40.002440467342289 ], [ -98.593301065102864, 40.002440467342289 ], [ -98.613759282032163, 40.002440467342289 ], [ -98.640764128378834, 40.002440467342289 ], [ -98.652493506084951, 40.00223877507441 ], [ -98.653857387213577, 40.00223877507441 ], [ -98.669678408305558, 40.002440467342289 ], [ -98.672951723014251, 40.002440467342289 ], [ -98.690409401460585, 40.002642159610168 ], [ -98.691500506363468, 40.002440467342289 ], [ -98.693137163717822, 40.002440467342289 ], [ -98.710322065938428, 40.00223877507441 ], [ -98.726415863256136, 40.00223877507441 ], [ -98.726415863256136, 40.00223877507441 ], [ -98.774970031434989, 40.00223877507441 ], [ -98.777152241240785, 40.002440467342289 ], [ -98.820523661130892, 40.00223877507441 ], [ -98.834435248642805, 40.002440467342289 ], [ -98.934816899709205, 40.00223877507441 ], [ -98.961003417378706, 40.00223877507441 ], [ -98.961003417378706, 40.00223877507441 ], [ -98.97164169018194, 40.00223877507441 ], [ -98.972187242633382, 40.00223877507441 ], [ -98.992099907111225, 40.00223877507441 ], [ -99.018831977232168, 40.00223877507441 ], [ -99.020468634586521, 40.00223877507441 ], [ -99.067113369185307, 40.00223877507441 ], [ -99.085662152534539, 40.002037082806531 ], [ -99.113485327558379, 40.00223877507441 ], [ -99.123032495458716, 40.00223877507441 ], [ -99.169950006283216, 40.001835390538652 ], [ -99.178951621732111, 40.002037082806531 ], [ -99.179224397957839, 40.002037082806531 ], [ -99.186862132278108, 40.002037082806531 ], [ -99.188771565858175, 40.002037082806531 ], [ -99.197500405081342, 40.002037082806531 ], [ -99.216321964656288, 40.002037082806531 ], [ -99.250418992871772, 40.002037082806531 ], [ -99.253965083806193, 40.002037082806531 ], [ -99.282879363732917, 40.001835390538652 ], [ -99.286698230893066, 40.002037082806531 ], [ -99.290789874278914, 40.002037082806531 ], [ -99.403446455502902, 40.002037082806531 ], [ -99.412720847177511, 40.001835390538652 ], [ -99.480642127382765, 40.002037082806531 ], [ -99.493462609991781, 40.002037082806531 ], [ -99.497554253377643, 40.001835390538652 ], [ -99.498918134506269, 40.002037082806531 ], [ -99.501918672989234, 40.002037082806531 ], [ -99.625213527016442, 40.001835390538652 ], [ -99.626031855693611, 40.001835390538652 ], [ -99.628214065499407, 40.001835390538652 ], [ -99.628214065499407, 40.001835390538652 ], [ -99.719594101116911, 40.001835390538652 ], [ -99.731869031274499, 40.001835390538652 ], [ -99.746598947463582, 40.001835390538652 ], [ -99.756964444041088, 40.001432006002901 ], [ -99.764329402135644, 40.001633698270773 ], [ -99.772239912681627, 40.001835390538652 ], [ -99.77551322739032, 40.001633698270773 ], [ -99.813429122765939, 40.001432006002901 ], [ -99.906718591963525, 40.001432006002901 ], [ -99.930450123601503, 40.001432006002901 ], [ -99.94436171111343, 40.001633698270773 ], [ -99.948180578273565, 40.001835390538652 ], [ -99.986642026100625, 40.001633698270773 ], [ -99.991006445712216, 40.001432006002901 ], [ -100.177858160333102, 40.001633698270773 ], [ -100.177858160333102, 40.001633698270773 ], [ -100.188223656910594, 40.001633698270773 ], [ -100.190405866716389, 40.001633698270773 ], [ -100.193679181425082, 40.001633698270773 ], [ -100.193679181425082, 40.001633698270773 ], [ -100.196952496133775, 40.001432006002901 ], [ -100.215501279482993, 40.001633698270773 ], [ -100.22941286699492, 40.001633698270773 ], [ -100.231595076800701, 40.001633698270773 ], [ -100.390078063946305, 40.001835390538652 ], [ -100.4391777845766, 40.001835390538652 ], [ -100.447088295122597, 40.001835390538652 ], [ -100.468637616954794, 40.001633698270773 ], [ -100.475729798823608, 40.001835390538652 ], [ -100.477093679952233, 40.001835390538652 ], [ -100.487186400304012, 40.001835390538652 ], [ -100.511190708167717, 40.001835390538652 ], [ -100.551834365800588, 40.001835390538652 ], [ -100.567109834441126, 40.001835390538652 ], [ -100.594660233239239, 40.002037082806531 ], [ -100.600934086430883, 40.001835390538652 ], [ -100.645396611223887, 40.001835390538652 ], [ -100.660126527412984, 40.00223877507441 ], [ -100.683312506599506, 40.00223877507441 ], [ -100.721228401975139, 40.002037082806531 ], [ -100.729957241198292, 40.002037082806531 ], [ -100.733230555906985, 40.00223877507441 ], [ -100.738958856647187, 40.00223877507441 ], [ -100.752052115481945, 40.002037082806531 ], [ -100.75887152112503, 40.00223877507441 ], [ -100.937539948974205, 40.00223877507441 ], [ -101.027556103463098, 40.00223877507441 ], [ -101.060289250549957, 40.00223877507441 ], [ -101.130938293012463, 40.002440467342289 ], [ -101.168581412162354, 40.002642159610168 ], [ -101.178674132514146, 40.002440467342289 ], [ -101.192312943800346, 40.002440467342289 ], [ -101.214953370535426, 40.002642159610168 ], [ -101.248777622525182, 40.002642159610168 ], [ -101.286420741675087, 40.002642159610168 ], [ -101.294058475995357, 40.002642159610168 ], [ -101.324063860824992, 40.002642159610168 ], [ -101.325427741953604, 40.002642159610168 ], [ -101.342885420399938, 40.002642159610168 ], [ -101.374254686358185, 40.002440467342289 ], [ -101.409988371928023, 40.002440467342289 ], [ -101.41107947683092, 40.002440467342289 ], [ -101.417080553796836, 40.002440467342289 ], [ -101.542284841404125, 40.002642159610168 ], [ -101.625754366475633, 40.002642159610168 ], [ -101.627118247604258, 40.002642159610168 ], [ -101.804968346776249, 40.002843851878048 ], [ -101.807696109033486, 40.002843851878048 ], [ -101.832245969348648, 40.002843851878048 ], [ -101.840974808571815, 40.002843851878048 ], [ -101.904258892939765, 40.003247236413806 ], [ -101.916806599323053, 40.003045544145927 ], [ -102.051830831056392, 40.003045544145927 ], [ -102.05210360728212, 40.148263977018779 ], [ -102.051830831056392, 40.162584128038183 ], [ -102.051830831056392, 40.229142576438242 ], [ -102.051830831056392, 40.235395036742489 ], [ -102.051558054830679, 40.349149475826223 ], [ -102.051558054830679, 40.393118390223833 ], [ -102.051830831056392, 40.396345466509899 ], [ -102.051558054830679, 40.439910996371751 ], [ -102.051558054830679, 40.520184518987577 ], [ -102.051830831056392, 40.537933438560927 ], [ -102.051285278604951, 40.697472022453184 ], [ -102.051285278604951, 40.749508627565959 ], [ -102.051285278604951, 40.749508627565959 ], [ -102.051558054830679, 41.002430731486172 ], [ -102.051830831056392, 41.002430731486172 ], [ -102.070652390631352, 41.002430731486172 ], [ -102.124934859550407, 41.002430731486172 ], [ -102.191219482401323, 41.002229039218292 ], [ -102.209495489524812, 41.002430731486172 ], [ -102.212223251782063, 41.002430731486172 ], [ -102.231863140034179, 41.002229039218292 ], [ -102.267869601829744, 41.002430731486172 ], [ -102.272234021441321, 41.002229039218292 ], [ -102.291328357241994, 41.002229039218292 ], [ -102.292419462144892, 41.002229039218292 ], [ -102.29269223837062, 41.002229039218292 ], [ -102.292965014596334, 41.002229039218292 ], [ -102.364159609510281, 41.002229039218292 ], [ -102.379707854376548, 41.002229039218292 ], [ -102.469178456413985, 41.002430731486172 ], [ -102.470542337542611, 41.002430731486172 ], [ -102.488000015988945, 41.002430731486172 ], [ -102.556739624871369, 41.002229039218292 ], [ -102.566014016545978, 41.002229039218292 ], [ -102.575561184446315, 41.002229039218292 ], [ -102.575833960672043, 41.002229039218292 ], [ -102.57856172292928, 41.002229039218292 ], [ -102.621114814142203, 41.002632423754051 ], [ -102.653575185003348, 41.002430731486172 ], [ -102.739499696106392, 41.002229039218292 ], [ -102.754502388521203, 41.002430731486172 ], [ -102.766777318678777, 41.002229039218292 ], [ -102.773596724321877, 41.002430731486172 ], [ -102.82733364078949, 41.002229039218292 ], [ -102.830334179272455, 41.002430731486172 ], [ -102.846427976590164, 41.002229039218292 ], [ -102.849155738847401, 41.002229039218292 ], [ -102.865795088616565, 41.002027346950413 ], [ -102.867704522196632, 41.002229039218292 ], [ -102.885707753094408, 41.002229039218292 ], [ -102.887344410448748, 41.002229039218292 ], [ -102.904802088895082, 41.002229039218292 ], [ -102.906438746249421, 41.002229039218292 ], [ -102.923896424695755, 41.002229039218292 ], [ -102.925533082050094, 41.002229039218292 ], [ -102.942990760496428, 41.002027346950413 ], [ -102.944900194076496, 41.002229039218292 ], [ -102.959630110265593, 41.002027346950413 ], [ -102.960721215168491, 41.002027346950413 ], [ -102.962630648748558, 41.002027346950413 ], [ -102.963721753651441, 41.002229039218292 ], [ -102.981452208323503, 41.002027346950413 ], [ -102.982816089452115, 41.002229039218292 ], [ -103.000000991672721, 41.002430731486172 ], [ -103.001910425252788, 41.002430731486172 ], [ -103.038735215725524, 41.002229039218292 ], [ -103.043372411562828, 41.002430731486172 ], [ -103.058102327751925, 41.002430731486172 ], [ -103.059466208880536, 41.002430731486172 ], [ -103.076651111101143, 41.002229039218292 ], [ -103.07774221600404, 41.002229039218292 ], [ -103.363066148111258, 41.001825654682534 ], [ -103.365248357917054, 41.001825654682534 ], [ -103.38243326013766, 41.001825654682534 ], [ -103.421985812867632, 41.002027346950413 ], [ -103.421985812867632, 41.002027346950413 ], [ -103.486633778364194, 41.001825654682534 ], [ -103.497544827393142, 41.001623962414655 ], [ -103.574467723047292, 41.001623962414655 ], [ -103.858427774025898, 41.001623962414655 ], [ -103.878067662278013, 41.001623962414655 ], [ -103.896070893175789, 41.001825654682534 ], [ -103.953626676803538, 41.001623962414655 ], [ -103.9713571314756, 41.001623962414655 ], [ -103.972721012604211, 41.001623962414655 ], [ -104.018274642300099, 41.001623962414655 ], [ -104.02345739058886, 41.001825654682534 ], [ -104.03927841168084, 41.001422270146776 ], [ -104.053189999192767, 41.001422270146776 ], [ -104.053189999192767, 41.016750882505576 ], [ -104.053189999192767, 41.017961036112851 ], [ -104.053189999192767, 41.089763483477768 ], [ -104.052917222967039, 41.090368560281405 ], [ -104.053189999192767, 41.104890403568689 ], [ -104.053189999192767, 41.114369940158994 ], [ -104.052644446741311, 41.275320369926405 ], [ -104.052644446741311, 41.277942369408834 ], [ -104.052371670515598, 41.278144061676713 ], [ -104.052644446741311, 41.316263900305842 ], [ -104.052371670515598, 41.320902822467048 ], [ -104.052371670515598, 41.321104514734927 ], [ -104.052371670515598, 41.393310346635602 ], [ -104.052371670515598, 41.393310346635602 ], [ -104.05209889428987, 41.407630497655006 ], [ -104.052371670515598, 41.417916803316828 ], [ -104.052371670515598, 41.515737553238125 ], [ -104.052371670515598, 41.522393398078137 ], [ -104.052644446741311, 41.539133856312091 ], [ -104.052644446741311, 41.541150778990875 ], [ -104.052644446741311, 41.552647238259979 ], [ -104.052644446741311, 41.552647238259979 ], [ -104.052644446741311, 41.564345389796955 ], [ -104.052917222967039, 41.592178922764255 ], [ -104.052644446741311, 41.613759995427301 ], [ -104.052917222967039, 41.622836147481856 ], [ -104.052917222967039, 41.638164759840656 ], [ -104.052917222967039, 41.645223989216419 ], [ -104.052917222967039, 41.697865671132831 ], [ -104.052644446741311, 41.733363510279531 ], [ -104.052917222967039, 41.88543948026026 ], [ -104.052917222967039, 41.906213783851797 ], [ -104.052917222967039, 41.914886551370586 ], [ -104.052644446741311, 41.972973924519735 ], [ -104.052917222967039, 41.975999308537915 ], [ -104.052917222967039, 41.994554997182775 ], [ -104.052644446741311, 41.994958381718533 ], [ -104.052644446741311, 41.998588842540357 ], [ -104.052644446741311, 42.001815918826424 ], [ -104.052644446741311, 42.016337762113707 ], [ -104.052917222967039, 42.021783453346444 ], [ -104.052917222967039, 42.07503021206648 ], [ -104.052917222967039, 42.089148670818012 ], [ -104.052644446741311, 42.125049894500464 ], [ -104.052644446741311, 42.133722662019267 ], [ -104.052917222967039, 42.137353122841084 ], [ -104.052644446741311, 42.16680019395141 ], [ -104.052644446741311, 42.170228962505355 ], [ -104.052917222967039, 42.249897408317544 ], [ -104.052644446741311, 42.258166791300582 ], [ -104.052644446741311, 42.610724875553004 ], [ -104.052644446741311, 42.61153164462452 ], [ -104.052644446741311, 42.611733336892399 ], [ -104.052644446741311, 42.630894102340903 ], [ -104.052644446741311, 42.633919486359083 ], [ -104.052644446741311, 42.6500548677894 ], [ -104.052917222967039, 42.749892540389482 ], [ -104.052917222967039, 42.754531462550702 ], [ -104.053189999192767, 43.000596029363031 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "41", "geo_id": "0400000US32", "fips_state": "32", "name": "Nevada", "iso_3166_2": "NV", "census": 2700551, "pop_estimataes_base": 2700692, "pop_2010": 2703493, "pop_2011": 2718586, "pop_2012": 2755245, "pop_2013": 2791494, "pop_2014": 2839099 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.050711448200005, 37.000452752231851 ], [ -114.050711448200005, 36.843132783286258 ], [ -114.050711448200005, 36.800172330228037 ], [ -114.050438671974291, 36.65616405096246 ], [ -114.046619804814156, 36.473430856264123 ], [ -114.046347028588428, 36.37177795325313 ], [ -114.048529238394224, 36.289689200226391 ], [ -114.047165357265598, 36.250560900257874 ], [ -114.04689258103987, 36.194087065251765 ], [ -114.060258616100342, 36.189448143090551 ], [ -114.062986378357579, 36.187027835876002 ], [ -114.120269385759613, 36.102317083366842 ], [ -114.125724910274087, 36.077508934417729 ], [ -114.138272616657389, 36.041204326199512 ], [ -114.148638113234895, 36.027287559715866 ], [ -114.154093637749369, 36.023858791161921 ], [ -114.213558854957185, 36.015589408178883 ], [ -114.233198743209314, 36.014379254571608 ], [ -114.238927043949516, 36.014580946839487 ], [ -114.252565855235702, 36.020228330340103 ], [ -114.263204128038936, 36.025875713840712 ], [ -114.292663960417116, 36.051087247325583 ], [ -114.303575009446078, 36.066415859684383 ], [ -114.307121100380485, 36.076500473078333 ], [ -114.310939967540634, 36.083761394721975 ], [ -114.328670422212682, 36.105544159652901 ], [ -114.365767988911131, 36.133781077155959 ], [ -114.381316233777397, 36.141647075603238 ], [ -114.513339927027772, 36.151126612193551 ], [ -114.571986815558418, 36.151529996729309 ], [ -114.631724808991947, 36.142252152406869 ], [ -114.73619810344421, 36.104334006045626 ], [ -114.744926942667377, 36.098686622545017 ], [ -114.755565215470611, 36.08719016327592 ], [ -114.743563061538751, 35.983722029854007 ], [ -114.731288131381177, 35.945198806689127 ], [ -114.706192718614574, 35.878640358289076 ], [ -114.704283285034506, 35.852016978929051 ], [ -114.705647166163132, 35.848789902642984 ], [ -114.707829375968927, 35.811880217621137 ], [ -114.700191641648658, 35.700344393484073 ], [ -114.689280592619696, 35.651333172389485 ], [ -114.676732886236394, 35.641046866727656 ], [ -114.657638550435721, 35.618255640457335 ], [ -114.653274130824144, 35.610793026545814 ], [ -114.653819683275586, 35.599498259544589 ], [ -114.67127736172192, 35.520636582803917 ], [ -114.675096228882055, 35.510551969409967 ], [ -114.676732886236394, 35.49905551014087 ], [ -114.677551214913564, 35.489777665818437 ], [ -114.662002970047311, 35.444195213277794 ], [ -114.651910249695518, 35.429068293186873 ], [ -114.627087613154643, 35.409504143202611 ], [ -114.604447186419563, 35.353635385000139 ], [ -114.595991123422124, 35.325196775229202 ], [ -114.569259053301181, 35.183407110910295 ], [ -114.569531829526895, 35.163036191854523 ], [ -114.572805144235588, 35.138631427441169 ], [ -114.57853344497579, 35.128748506315098 ], [ -114.584261745715992, 35.124916353225402 ], [ -114.598991661905075, 35.121084200135698 ], [ -114.621904864865883, 35.094662513043552 ], [ -114.635543676152082, 35.028305756911379 ], [ -114.633634242572015, 35.015599144035001 ], [ -114.633088690120573, 35.002085762087113 ], [ -114.804119383649464, 35.139639888780565 ], [ -114.804937712326634, 35.140244965584202 ], [ -114.925504804096605, 35.237057254166103 ], [ -114.925504804096605, 35.237057254166103 ], [ -115.145907994481533, 35.413134604024435 ], [ -115.146726323158703, 35.413739680828073 ], [ -115.160092358219174, 35.424227678757774 ], [ -115.16063791067063, 35.424227678757774 ], [ -115.225285876167192, 35.475860899334791 ], [ -115.271385058314536, 35.512568892088758 ], [ -115.303845429175681, 35.538183810109388 ], [ -115.388951611601541, 35.605145643045205 ], [ -115.391406597633051, 35.607364257991868 ], [ -115.393861583664574, 35.60938118067066 ], [ -115.404499856467808, 35.617650563653697 ], [ -115.406136513822148, 35.618659024993093 ], [ -115.647270697362089, 35.80905652587083 ], [ -115.64781624981353, 35.809258218138709 ], [ -115.648089026039258, 35.809661602674467 ], [ -115.68927823612357, 35.841932365535101 ], [ -115.84612456591482, 35.963552803066115 ], [ -115.893042076739334, 36.000059103552204 ], [ -115.912954741217192, 36.015387715911004 ], [ -116.09353260264642, 36.155765534354764 ], [ -116.097351469806554, 36.158387533837185 ], [ -116.488239801268918, 36.459110705244719 ], [ -117.000786329404164, 36.847771705447471 ], [ -117.166088722192853, 36.970803988853639 ], [ -117.500785151156094, 37.220297324219914 ], [ -117.832753817862098, 37.464950045157096 ], [ -118.039790973186555, 37.615210784726919 ], [ -118.039790973186555, 37.615210784726919 ], [ -118.428497094843138, 37.895563037078674 ], [ -118.746554174037229, 38.124887145657055 ], [ -119.125985904019188, 38.393137861936069 ], [ -119.156809617525994, 38.414718934599115 ], [ -119.328385863506341, 38.534725833987096 ], [ -119.450589612630651, 38.620041663299901 ], [ -119.450589612630651, 38.620041663299901 ], [ -119.493961032520758, 38.649690426678106 ], [ -119.494233808746472, 38.649892118945985 ], [ -119.585341068138263, 38.713223491059978 ], [ -119.586977725492602, 38.714433644667253 ], [ -119.587796054169786, 38.714635336935132 ], [ -119.904216476009523, 38.933269755315919 ], [ -120.001052036141516, 38.999626511448099 ], [ -120.002415917270127, 39.067395113455433 ], [ -120.003507022173025, 39.112775873728197 ], [ -120.004598127075923, 39.165619247912488 ], [ -120.00568923197882, 39.225118466936777 ], [ -120.00568923197882, 39.228748927758602 ], [ -120.005416455753092, 39.313257987999883 ], [ -120.005416455753092, 39.31386306480352 ], [ -120.005416455753092, 39.316283372018063 ], [ -120.005416455753092, 39.316485064285942 ], [ -120.003234245947297, 39.44496303892484 ], [ -120.003234245947297, 39.445164731192719 ], [ -120.00132481236723, 39.722491599526293 ], [ -120.00132481236723, 39.722491599526293 ], [ -120.00050648369006, 39.779973895871798 ], [ -120.00050648369006, 39.780780664943315 ], [ -119.997233168981381, 40.071822607492649 ], [ -119.997233168981381, 40.077268298725386 ], [ -119.997233168981381, 40.091588449744791 ], [ -119.997233168981381, 40.126279519819974 ], [ -119.996142064078484, 40.262421800638265 ], [ -119.996142064078484, 40.26363195424554 ], [ -119.996142064078484, 40.321315942858931 ], [ -119.996142064078484, 40.321921019662568 ], [ -119.995869287852756, 40.499813599931805 ], [ -119.999142602561449, 40.865885066132122 ], [ -119.999142602561449, 40.867498604275156 ], [ -119.999415378787162, 40.873145987775757 ], [ -119.999960931238618, 41.18395377257724 ], [ -119.999142602561449, 41.994554997182775 ], [ -119.986594896178147, 41.995765150790049 ], [ -119.790196013656924, 41.997580381200962 ], [ -119.36030068191603, 41.994353304914895 ], [ -119.324294220120478, 41.994353304914895 ], [ -118.777105111318306, 41.992739766771869 ], [ -118.775741230189681, 41.992739766771869 ], [ -118.197182855429261, 41.996975304397324 ], [ -117.026154518396481, 42.00020238068339 ], [ -117.018244007850484, 41.999395611611874 ], [ -116.626810123936679, 41.997782073468841 ], [ -116.586984794980978, 41.997378688933082 ], [ -116.510334675552556, 41.997176996665203 ], [ -116.485784815237409, 41.996773612129445 ], [ -116.483057052980172, 41.996975304397324 ], [ -116.463417164728043, 41.996571919861566 ], [ -116.163908868883183, 41.997580381200962 ], [ -116.160908330400218, 41.997580381200962 ], [ -116.038704581275908, 41.997378688933082 ], [ -116.038704581275908, 41.997378688933082 ], [ -116.030794070729911, 41.997378688933082 ], [ -116.030794070729911, 41.997378688933082 ], [ -116.019064693023793, 41.997782073468841 ], [ -116.019064693023793, 41.997782073468841 ], [ -116.012245287380694, 41.99798376573672 ], [ -116.012245287380694, 41.99798376573672 ], [ -115.986877098388362, 41.998588842540357 ], [ -115.038161385320592, 41.995966843057928 ], [ -115.031887532128934, 41.995966843057928 ], [ -114.914320978841928, 42.000000688415511 ], [ -114.763748502242322, 42.000000688415511 ], [ -114.598173333227905, 41.994554997182775 ], [ -114.498337234612961, 41.994554997182775 ], [ -114.498337234612961, 41.994554997182775 ], [ -114.281752911388168, 41.994353304914895 ], [ -114.107448903150583, 41.993949920379144 ], [ -114.107176126924855, 41.993748228111265 ], [ -114.061895273454695, 41.993949920379144 ], [ -114.061895273454695, 41.993748228111265 ], [ -114.048256462168496, 41.993748228111265 ], [ -114.048256462168496, 41.993748228111265 ], [ -114.041709832751124, 41.993748228111265 ], [ -114.041164280299668, 41.850546717917197 ], [ -114.041164280299668, 41.850546717917197 ], [ -114.039800399171057, 41.74203627779832 ], [ -114.042255385202566, 41.000010424271622 ], [ -114.043892042556905, 40.75918985642415 ], [ -114.043892042556905, 40.758584779620513 ], [ -114.043619266331191, 40.726314016759879 ], [ -114.045255923685531, 40.506671137039689 ], [ -114.045528699911259, 40.49577975457423 ], [ -114.045528699911259, 40.494569600966955 ], [ -114.046619804814156, 40.117001675497541 ], [ -114.047165357265598, 39.906031563296146 ], [ -114.04771090971704, 39.542783788846137 ], [ -114.049893119522835, 38.677322267377519 ], [ -114.050165895748563, 38.572845672616225 ], [ -114.049893119522835, 38.547835831399226 ], [ -114.049893119522835, 38.54380198604165 ], [ -114.050165895748563, 38.404634321205165 ], [ -114.050165895748563, 38.404634321205165 ], [ -114.049893119522835, 38.148686833266765 ], [ -114.050438671974291, 38.000039631839975 ], [ -114.048529238394224, 37.809843823230111 ], [ -114.050984224425733, 37.756193679974317 ], [ -114.051802553102902, 37.746915835651876 ], [ -114.051802553102902, 37.746310758848239 ], [ -114.051802553102902, 37.74590737431248 ], [ -114.052348105554358, 37.604722786797211 ], [ -114.052620881780072, 37.51779341934138 ], [ -114.052620881780072, 37.517188342537743 ], [ -114.052620881780072, 37.50246480698258 ], [ -114.052620881780072, 37.491976809052872 ], [ -114.051802553102902, 37.370759756057623 ], [ -114.051802553102902, 37.370558063789744 ], [ -114.051802553102902, 37.293511617459977 ], [ -114.051802553102902, 37.293108232924219 ], [ -114.05207532932863, 37.284435465405423 ], [ -114.05207532932863, 37.283830388601785 ], [ -114.051802553102902, 37.091012580509499 ], [ -114.051802553102902, 37.08839058102707 ], [ -114.050711448200005, 37.000452752231851 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "42", "geo_id": "0400000US33", "fips_state": "33", "name": "New Hampshire", "iso_3166_2": "NH", "census": 1316470, "pop_estimataes_base": 1316466, "pop_2010": 1316517, "pop_2011": 1318109, "pop_2012": 1321297, "pop_2013": 1322616, "pop_2014": 1326813 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.703841418412537, 43.059691863851569 ], [ -70.718844110827348, 43.032261715420034 ], [ -70.744485076045393, 42.999990952559401 ], [ -70.749122271882698, 42.99555372266606 ], [ -70.76003332091166, 42.98849449329029 ], [ -70.79549423025577, 42.93625619590965 ], [ -70.809951370219125, 42.909632816549617 ], [ -70.814588566056443, 42.891278820172637 ], [ -70.816225223410783, 42.884421283064754 ], [ -70.81731632831368, 42.872319746992012 ], [ -70.848685594271927, 42.861024979990788 ], [ -70.886055937196105, 42.882606052653841 ], [ -70.902695286965269, 42.886438205743545 ], [ -70.914970217122843, 42.886639898011424 ], [ -70.914970217122843, 42.886639898011424 ], [ -70.930791238214823, 42.884622975332633 ], [ -70.931609566892007, 42.884219590796874 ], [ -70.996803084840025, 42.864655440812612 ], [ -71.037992294924322, 42.854167442882911 ], [ -71.058450511853621, 42.847108213507141 ], [ -71.113824085675574, 42.827947448058644 ], [ -71.14983054747114, 42.815442527450145 ], [ -71.165651568563121, 42.80878668261014 ], [ -71.18610978549242, 42.790634378501039 ], [ -71.181745365880829, 42.737589312048868 ], [ -71.208204659776044, 42.743236695549484 ], [ -71.208204659776044, 42.743236695549484 ], [ -71.208204659776044, 42.743236695549484 ], [ -71.245575002700235, 42.742631618745847 ], [ -71.254576618149116, 42.734160543494923 ], [ -71.294129170879074, 42.697049166205197 ], [ -71.542628312513571, 42.702696549705806 ], [ -71.631826138325295, 42.704713472384597 ], [ -71.636190557936885, 42.704915164652476 ], [ -71.772578670798836, 42.708343933206422 ], [ -71.805584594111423, 42.709150702277938 ], [ -71.898601287083281, 42.711571009492488 ], [ -71.928879448138645, 42.712176086296118 ], [ -72.078360819835353, 42.716411623921573 ], [ -72.111093966922212, 42.71721839299309 ], [ -72.282942989128287, 42.722059007422189 ], [ -72.411966143895683, 42.725487775976134 ], [ -72.451245920399941, 42.726697929583409 ], [ -72.458610878494483, 42.726899621851288 ], [ -72.460247535848822, 42.732143620816132 ], [ -72.478523542972326, 42.762195768730102 ], [ -72.491071249355628, 42.772482074391931 ], [ -72.509620032704845, 42.78115484191072 ], [ -72.542898732243174, 42.808383298074382 ], [ -72.555719214852189, 42.856386057829575 ], [ -72.555719214852189, 42.858201288240487 ], [ -72.555991991077917, 42.866268978955645 ], [ -72.556264767303645, 42.866874055759283 ], [ -72.4438809623054, 43.00624341286364 ], [ -72.43269713705071, 43.114148776178887 ], [ -72.432969913276423, 43.119997851947375 ], [ -72.441971528725333, 43.13653661791345 ], [ -72.452064249077111, 43.161344766862562 ], [ -72.439516542693809, 43.211364449296546 ], [ -72.431060479696356, 43.231735368352318 ], [ -72.3972362277066, 43.316446120861485 ], [ -72.400509542415278, 43.337018732185143 ], [ -72.404055633349699, 43.358196420312424 ], [ -72.405146738252597, 43.3900637986373 ], [ -72.396963451480872, 43.428990406337945 ], [ -72.396963451480872, 43.428990406337945 ], [ -72.387961836031991, 43.471547474860401 ], [ -72.387689059806263, 43.502406391845881 ], [ -72.395872346577988, 43.520558695954989 ], [ -72.329587723727073, 43.600227141767178 ], [ -72.334770472015833, 43.614547292786582 ], [ -72.334497695790105, 43.619186214947803 ], [ -72.329587723727073, 43.634716519574482 ], [ -72.302855653606116, 43.702686813849695 ], [ -72.271213611422155, 43.734150807638812 ], [ -72.264121429553327, 43.734150807638812 ], [ -72.23275216359508, 43.748269266390338 ], [ -72.205747317248409, 43.771060492660659 ], [ -72.204656212345526, 43.771867261732176 ], [ -72.183652442964771, 43.806558331807352 ], [ -72.182288561836145, 43.833988480238901 ], [ -72.167285869421335, 43.886025085351669 ], [ -72.120913911048277, 43.918900925015933 ], [ -72.10454733750484, 43.950566611072936 ], [ -72.105638442407738, 43.959037686323853 ], [ -72.107002323536364, 43.969525684253554 ], [ -72.113003400502279, 43.97275276053962 ], [ -72.112730624276566, 43.988081372898421 ], [ -72.090635749992913, 44.035277363582097 ], [ -72.054629288197361, 44.112122117643978 ], [ -72.040172148233992, 44.155687647505836 ], [ -72.040172148233992, 44.155687647505836 ], [ -72.04208158181406, 44.157704570184627 ], [ -72.052992630843022, 44.167990875846456 ], [ -72.064176456097698, 44.18795841036647 ], [ -72.067722547032105, 44.271055624732604 ], [ -72.065540337226309, 44.27730808503685 ], [ -72.058993707808952, 44.286182544823525 ], [ -72.012076196984424, 44.321478691702339 ], [ -72.002256252858373, 44.324907460256284 ], [ -71.849501566452972, 44.359195145795709 ], [ -71.815950090688943, 44.36685945197511 ], [ -71.81431343333459, 44.381986372066031 ], [ -71.793855216405291, 44.399331907103623 ], [ -71.764668160252839, 44.406391136479385 ], [ -71.761940397995602, 44.406996213283023 ], [ -71.7562120972554, 44.406391136479385 ], [ -71.745028272000724, 44.401348829782407 ], [ -71.709021810205158, 44.411635135444243 ], [ -71.679834754052706, 44.427972209142432 ], [ -71.59936576746415, 44.486462966827332 ], [ -71.580271431663476, 44.506430501347353 ], [ -71.536354459321927, 44.587914177570454 ], [ -71.553266585316806, 44.626639093003206 ], [ -71.598547438786966, 44.698038155832364 ], [ -71.625279508907909, 44.729703841889361 ], [ -71.627461718713704, 44.747452761462711 ], [ -71.623915627779297, 44.755117067642104 ], [ -71.572633697343207, 44.809977364505187 ], [ -71.495710801689057, 44.904974422676176 ], [ -71.494074144334718, 44.911226882980422 ], [ -71.516714571069798, 44.947531491198632 ], [ -71.537718340450539, 44.984239483952607 ], [ -71.538536669127723, 44.988273329310189 ], [ -71.536900011773369, 44.99412240507867 ], [ -71.530080606130269, 44.999568096311407 ], [ -71.504985193363666, 45.008240863830203 ], [ -71.486436410014448, 45.007030710222928 ], [ -71.468433179116658, 45.010257786508987 ], [ -71.464614311956524, 45.013686555062932 ], [ -71.502530207332157, 45.013283170527174 ], [ -71.495983577914785, 45.069151928729653 ], [ -71.489164172271686, 45.072379005015712 ], [ -71.4288806263867, 45.123810533324843 ], [ -71.397784136654167, 45.203478979137032 ], [ -71.403239661168641, 45.215378822941894 ], [ -71.442792213898628, 45.23474128065827 ], [ -71.40105745136286, 45.242607279105556 ], [ -71.34295611528367, 45.271247581144365 ], [ -71.297129709362054, 45.299081114111658 ], [ -71.284309226753024, 45.302509882665603 ], [ -71.26685154830669, 45.291215115664386 ], [ -71.263032681146555, 45.277500041448619 ], [ -71.259486590212148, 45.273264503823157 ], [ -71.233027296316919, 45.256725737857082 ], [ -71.183654799460896, 45.245027586320106 ], [ -71.139465050893619, 45.243010663641314 ], [ -71.13182731657335, 45.245430970855864 ], [ -71.124462358478809, 45.255313891981928 ], [ -71.119825162641504, 45.26237312135769 ], [ -71.120097938867218, 45.265801889911629 ], [ -71.105095246452407, 45.294643884218324 ], [ -71.097730288357866, 45.301904805861966 ], [ -71.084364253297394, 45.305333574415911 ], [ -71.075635414074227, 45.224051590460689 ], [ -71.060087169207975, 45.019737323099307 ], [ -71.037446742472881, 44.755520452177862 ], [ -71.028990679475442, 44.61030201930501 ], [ -71.013442434609175, 44.340841149418722 ], [ -71.010169119900496, 44.284770698948371 ], [ -71.00880523877187, 44.258752396391984 ], [ -71.00880523877187, 44.258349011856225 ], [ -71.001440280677315, 44.09316304446336 ], [ -71.001440280677315, 44.092961352195481 ], [ -70.99298421767989, 43.914262002854727 ], [ -70.992165889002706, 43.886226777619548 ], [ -70.989165350519755, 43.792439873055827 ], [ -70.989165350519755, 43.792238180787947 ], [ -70.982073168650928, 43.714990042190308 ], [ -70.982345944876641, 43.711964658172121 ], [ -70.982073168650928, 43.701880044778179 ], [ -70.982073168650928, 43.700871583438783 ], [ -70.980709287522302, 43.684131125204829 ], [ -70.979890958845132, 43.673239742739369 ], [ -70.972798776976305, 43.570174993853215 ], [ -70.953431664949903, 43.552627766547744 ], [ -70.955341098529971, 43.540727922742889 ], [ -70.955341098529971, 43.540929615010768 ], [ -70.958887189464392, 43.537702538724702 ], [ -70.962433280398812, 43.534273770170756 ], [ -70.954795546078543, 43.509869005757409 ], [ -70.963797161527424, 43.476186397021621 ], [ -70.964615490204594, 43.473362705271313 ], [ -70.96434271397888, 43.473362705271313 ], [ -70.986710364488232, 43.414266870782782 ], [ -70.98780146939113, 43.391475644512454 ], [ -70.984255378456709, 43.376752108957291 ], [ -70.984255378456709, 43.376147032153654 ], [ -70.967343252461831, 43.34387626929302 ], [ -70.95234056004702, 43.333993348166956 ], [ -70.930791238214823, 43.329556118273615 ], [ -70.91687965070291, 43.31765627446876 ], [ -70.912515231091334, 43.308378430146327 ], [ -70.909787468834082, 43.306764892003294 ], [ -70.863142734235296, 43.265014592552347 ], [ -70.863142734235296, 43.265014592552347 ], [ -70.839138426371591, 43.25129951833658 ], [ -70.839683978823047, 43.250492749265064 ], [ -70.833682901857117, 43.242828443085664 ], [ -70.827954601116915, 43.241618289478389 ], [ -70.826590719988303, 43.24121490494263 ], [ -70.82495406263395, 43.241013212674751 ], [ -70.823317405279596, 43.240408135871121 ], [ -70.823044629053882, 43.240206443603242 ], [ -70.817861880765122, 43.237987828656571 ], [ -70.817861880765122, 43.237382751852934 ], [ -70.816225223410783, 43.234962444638384 ], [ -70.828227377342643, 43.186757992615313 ], [ -70.829045706019798, 43.180303840043187 ], [ -70.833682901857117, 43.146822923575279 ], [ -70.828227377342643, 43.129074004001929 ], [ -70.819498538119461, 43.123224928233441 ], [ -70.784037628775366, 43.099021856087965 ], [ -70.756487229977239, 43.080062782907348 ], [ -70.703841418412537, 43.059691863851569 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "43", "geo_id": "0400000US36", "fips_state": "36", "name": "New York", "iso_3166_2": "NY", "census": 19378102, "pop_estimataes_base": 19378112, "pop_2010": 19400867, "pop_2011": 19521745, "pop_2012": 19607140, "pop_2013": 19695680, "pop_2014": 19746227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.773392286483755, 40.85943091355999 ], [ -73.770664524226518, 40.860237682631507 ], [ -73.766300104614942, 40.857413990881199 ], [ -73.76520899971203, 40.85418691459514 ], [ -73.766027328389214, 40.844909070272706 ], [ -73.769573419323621, 40.844707378004827 ], [ -73.773119510258027, 40.848136146558772 ], [ -73.773665062709483, 40.854791991398777 ], [ -73.773392286483755, 40.85943091355999 ] ] ], [ [ [ -74.040985763918911, 40.700094021935612 ], [ -74.039894659016028, 40.70069909873925 ], [ -74.039349106564572, 40.700497406471371 ], [ -74.037985225435961, 40.699085560596217 ], [ -74.043440749950435, 40.689606024005911 ], [ -74.044531854853332, 40.688395870398637 ], [ -74.0464412884334, 40.689202639470153 ], [ -74.047259617110569, 40.690412793077428 ], [ -74.046986840884841, 40.691219562148937 ], [ -74.040985763918911, 40.700094021935612 ] ] ], [ [ [ -74.144367953468276, 40.535109746810619 ], [ -74.148732373079866, 40.534504670006989 ], [ -74.160734527011726, 40.526840363827588 ], [ -74.177919429232333, 40.519579442183939 ], [ -74.182283848843909, 40.520587903523335 ], [ -74.200014303515957, 40.511713443736667 ], [ -74.210379800093477, 40.509494828789997 ], [ -74.219654191768086, 40.502637291682113 ], [ -74.233293003054285, 40.501225445806959 ], [ -74.246659038114757, 40.496183139109988 ], [ -74.250205129049164, 40.496788215913625 ], [ -74.254569548660754, 40.502233907146355 ], [ -74.256206206015094, 40.507881290646964 ], [ -74.252660115080687, 40.513932058683338 ], [ -74.242840170954622, 40.520991288059093 ], [ -74.24174906605171, 40.531277593720922 ], [ -74.24775014301764, 40.543379129793664 ], [ -74.228928583442695, 40.555077281330639 ], [ -74.216926429510835, 40.555077281330639 ], [ -74.210925352544919, 40.560926357099135 ], [ -74.204105946901819, 40.589364966870065 ], [ -74.196740988807278, 40.597029273049465 ], [ -74.195377107678652, 40.601869887478557 ], [ -74.196195436355822, 40.616190038497962 ], [ -74.201105408418854, 40.616996807569478 ], [ -74.201923737096024, 40.619417114784028 ], [ -74.200559855967413, 40.631518650856762 ], [ -74.189376030712737, 40.642208341054356 ], [ -74.180101639038114, 40.645435417340416 ], [ -74.174100562072198, 40.645032032804657 ], [ -74.170281694912063, 40.642208341054356 ], [ -74.153096792691457, 40.63898126476829 ], [ -74.120090869378856, 40.642208341054356 ], [ -74.086539393614814, 40.648662493626475 ], [ -74.075901120811579, 40.648057416822837 ], [ -74.069627267619921, 40.641199879714961 ], [ -74.067717834039854, 40.623854344677369 ], [ -74.060352875945313, 40.611954500872507 ], [ -74.053260694076499, 40.603685117889469 ], [ -74.059261771042429, 40.593600504495527 ], [ -74.06826338649131, 40.584120967905207 ], [ -74.09090381322639, 40.566372048331864 ], [ -74.111362030155689, 40.546807898347609 ], [ -74.112453135058587, 40.547614667419118 ], [ -74.121727526733196, 40.542774052990026 ], [ -74.137275771599462, 40.530067440113655 ], [ -74.140276310082413, 40.533697900935472 ], [ -74.144367953468276, 40.535109746810619 ] ] ], [ [ [ -72.132097736302953, 41.104487019032931 ], [ -72.128278869142818, 41.108117479854755 ], [ -72.126642211788479, 41.115176709230511 ], [ -72.084089120575555, 41.101461635014743 ], [ -72.081088582092576, 41.093999021103222 ], [ -72.087089659058506, 41.05829948968865 ], [ -72.095818498281673, 41.054063952063188 ], [ -72.097182379410299, 41.054870721134705 ], [ -72.097182379410299, 41.075846716994121 ], [ -72.103183456376229, 41.086536407191701 ], [ -72.106456771084908, 41.088956714406251 ], [ -72.120641134822549, 41.093192252031706 ], [ -72.13918991817178, 41.092385482960189 ], [ -72.141917680429017, 41.094402405638981 ], [ -72.143008785331915, 41.097831174192919 ], [ -72.14082657552612, 41.100856558211106 ], [ -72.132097736302953, 41.104487019032931 ] ] ], [ [ [ -71.943609364327727, 41.28661513692763 ], [ -71.926697238332849, 41.290043905481568 ], [ -71.935153301330288, 41.280564368891262 ], [ -71.946337126584964, 41.276328831265801 ], [ -71.962703700128401, 41.270883140033071 ], [ -71.978797497446124, 41.265034064264583 ], [ -71.994618518538104, 41.256361296745787 ], [ -72.002529029084087, 41.252932528191842 ], [ -72.036898833525299, 41.249705451905783 ], [ -72.034989399945232, 41.255554527674271 ], [ -72.029533875430758, 41.263017141585792 ], [ -72.023532798464828, 41.27108483230095 ], [ -72.018895602627538, 41.27411021631913 ], [ -72.006893448695678, 41.273505139515493 ], [ -71.991072427603683, 41.281371137962779 ], [ -71.980161378574735, 41.280362676623383 ], [ -71.952883756002336, 41.285001598784596 ], [ -71.943609364327727, 41.28661513692763 ] ] ], [ [ [ -73.767118433292097, 40.886255985187894 ], [ -73.767118433292097, 40.885449216116378 ], [ -73.767118433292097, 40.88484413931274 ], [ -73.767118433292097, 40.883432293437593 ], [ -73.766300104614942, 40.881011986223044 ], [ -73.766845657066384, 40.880003524883648 ], [ -73.770937300452232, 40.879398448080011 ], [ -73.775301720063823, 40.882222139830318 ], [ -73.775301720063823, 40.884239062509103 ], [ -73.772846734032299, 40.884642447044861 ], [ -73.772301181580858, 40.887466138795169 ], [ -73.770664524226518, 40.888474600134558 ], [ -73.768209538195009, 40.887667831063041 ], [ -73.767391209517825, 40.886861061991532 ], [ -73.767118433292097, 40.886255985187894 ] ] ], [ [ [ -73.264937401734386, 42.745858695031906 ], [ -73.306944940495868, 42.632709332751809 ], [ -73.352498570191756, 42.510080433881399 ], [ -73.410599906270946, 42.351752003596417 ], [ -73.508253795080108, 42.086324979067712 ], [ -73.496797193599704, 42.049616986313737 ], [ -73.487250025699367, 42.049616986313737 ], [ -73.504980480371415, 41.824326723092938 ], [ -73.504980480371415, 41.8237216462893 ], [ -73.510163228660176, 41.758776736032274 ], [ -73.517528186754731, 41.666603369611593 ], [ -73.521347053914866, 41.61638199490973 ], [ -73.530075893138019, 41.527234012507229 ], [ -73.533894760298153, 41.479634637287795 ], [ -73.534167536523881, 41.479029560484157 ], [ -73.534167536523881, 41.478021099144762 ], [ -73.534167536523881, 41.476810945537494 ], [ -73.534167536523881, 41.476407561001736 ], [ -73.534440312749609, 41.475802484198098 ], [ -73.535804193878221, 41.457246795553232 ], [ -73.535804193878221, 41.455633257410199 ], [ -73.535804193878221, 41.45522987287444 ], [ -73.536076970103949, 41.45301125792777 ], [ -73.536076970103949, 41.451397719784737 ], [ -73.536895298781118, 41.441111414122915 ], [ -73.53744085123256, 41.435867415158057 ], [ -73.537713627458288, 41.433850492479266 ], [ -73.543714704424218, 41.376771580669526 ], [ -73.544805809327116, 41.366283582739818 ], [ -73.55107966251876, 41.295489596714305 ], [ -73.482612829862063, 41.212795766883929 ], [ -73.509617676208734, 41.200895923079074 ], [ -73.514527648271752, 41.198475615864524 ], [ -73.61436374688671, 41.15309485559176 ], [ -73.632094201558772, 41.144825472608716 ], [ -73.639731935879041, 41.141396704054777 ], [ -73.727838656787867, 41.100654865943227 ], [ -73.69428718102381, 41.059307951028046 ], [ -73.687194999154997, 41.050635183509243 ], [ -73.680102817286183, 41.041760723722575 ], [ -73.670555649385847, 41.030062572185592 ], [ -73.655280180745308, 41.012717037148001 ], [ -73.654734628293852, 41.011708575808612 ], [ -73.657462390551089, 40.98508519644858 ], [ -73.656098509422463, 40.979639505215857 ], [ -73.659917376582598, 40.968344738214626 ], [ -73.662099586388393, 40.966126123267962 ], [ -73.664554572419917, 40.967134584607358 ], [ -73.678193383706116, 40.962697354714024 ], [ -73.683376131994862, 40.94898228049825 ], [ -73.686376670477827, 40.945150127408553 ], [ -73.698106048183959, 40.939502743907937 ], [ -73.721837579821937, 40.932040129996416 ], [ -73.731657523948002, 40.924980900620653 ], [ -73.756752936714605, 40.91267767228004 ], [ -73.781302797029753, 40.885449216116378 ], [ -73.783485006835548, 40.881011986223044 ], [ -73.784848887964159, 40.878591679008494 ], [ -73.785394440415615, 40.869112142418182 ], [ -73.788667755124294, 40.858422452220594 ], [ -73.788122202672838, 40.85418691459514 ], [ -73.784848887964159, 40.85176660738059 ], [ -73.782121125706922, 40.847329377487256 ], [ -73.782121125706922, 40.844707378004827 ], [ -73.782121125706922, 40.842287070790277 ], [ -73.781302797029753, 40.838858302236339 ], [ -73.782666678158364, 40.837648148629064 ], [ -73.783757783061276, 40.836841379557548 ], [ -73.785394440415615, 40.838051533164823 ], [ -73.788122202672838, 40.842085378522398 ], [ -73.791122741155817, 40.846522608415739 ], [ -73.789486083801478, 40.851363222844839 ], [ -73.792213846058701, 40.855800452738166 ], [ -73.79385050341304, 40.855598760470286 ], [ -73.797123818121747, 40.852169991916348 ], [ -73.799578804153242, 40.847934454290893 ], [ -73.806943762247798, 40.849547992433926 ], [ -73.812944839213728, 40.846724300683618 ], [ -73.815672601470965, 40.835227841414522 ], [ -73.815127049019509, 40.83099230378906 ], [ -73.81185373431083, 40.825344920288444 ], [ -73.804488776216289, 40.818487383180567 ], [ -73.797396594347461, 40.81566369143026 ], [ -73.785939992867057, 40.800940155875097 ], [ -73.781302797029753, 40.794889387838722 ], [ -73.776120048740992, 40.795292772374481 ], [ -73.768482314420723, 40.800738463607217 ], [ -73.768209538195009, 40.800738463607217 ], [ -73.754025174457354, 40.82090769039511 ], [ -73.754297950683082, 40.826756766163598 ], [ -73.728384209239309, 40.852976760987865 ], [ -73.726747551884969, 40.856808914077561 ], [ -73.730566419045104, 40.865481681596364 ], [ -73.729475314142206, 40.86649014293576 ], [ -73.713654293050212, 40.870120603757577 ], [ -73.675465621448865, 40.85701060634544 ], [ -73.670555649385847, 40.858624144488473 ], [ -73.65582573319675, 40.863868143453331 ], [ -73.654461852068124, 40.878188294472736 ], [ -73.641095817007653, 40.89250844549214 ], [ -73.633730858913111, 40.898155828992756 ], [ -73.626911453270012, 40.899365982600031 ], [ -73.617637061595403, 40.897954136724877 ], [ -73.601816040503422, 40.902794751153969 ], [ -73.595269411086036, 40.907231981047303 ], [ -73.569901222093705, 40.915299671762469 ], [ -73.56608235493357, 40.915703056298227 ], [ -73.548079124035809, 40.908643826922457 ], [ -73.519164844109071, 40.914291210423073 ], [ -73.515073200723208, 40.912879364547919 ], [ -73.500070508308397, 40.91812336351277 ], [ -73.497069969825432, 40.922762285673983 ], [ -73.49652441737399, 40.923569054745499 ], [ -73.491887221536672, 40.942124743390366 ], [ -73.4853405921193, 40.946360281015828 ], [ -73.484795039667858, 40.946158588747949 ], [ -73.48015784383054, 40.943334896997641 ], [ -73.478248410250472, 40.942326435658245 ], [ -73.474429543090338, 40.94111628205097 ], [ -73.463791270287118, 40.937687513497025 ], [ -73.460517955578425, 40.937284128961267 ], [ -73.456426312192576, 40.936880744425508 ], [ -73.444969710712172, 40.935670590818241 ], [ -73.437604752617617, 40.935065514014603 ], [ -73.436786423940447, 40.934863821746724 ], [ -73.429967018297347, 40.929821515049753 ], [ -73.429694242071619, 40.92820797690672 ], [ -73.42887591339445, 40.921552132066708 ], [ -73.405962710433641, 40.920140286191554 ], [ -73.402962171950676, 40.925182592888532 ], [ -73.403507724402118, 40.942124743390366 ], [ -73.400779962144895, 40.954024587195221 ], [ -73.399688857241983, 40.955234740802496 ], [ -73.392869451598898, 40.955234740802496 ], [ -73.374593444475394, 40.937687513497025 ], [ -73.365864605252227, 40.931636745460665 ], [ -73.352771346417484, 40.926796131031566 ], [ -73.345679164548656, 40.925384285156412 ], [ -73.344042507194303, 40.927199515567324 ], [ -73.331494800811015, 40.929619822781873 ], [ -73.294942786564008, 40.924577516084895 ], [ -73.294942786564008, 40.924577516084895 ], [ -73.229203716164534, 40.905215058368512 ], [ -73.149007505801706, 40.928813053710357 ], [ -73.146279743544483, 40.935065514014603 ], [ -73.144643086190129, 40.955839817606133 ], [ -73.140824219029994, 40.966126123267962 ], [ -73.110273281748917, 40.97197519903645 ], [ -73.081631778047907, 40.972983660375846 ], [ -73.043715882672274, 40.962092277910386 ], [ -73.040442567963595, 40.964512585124929 ], [ -72.99598004317059, 40.96652950780372 ], [ -72.955063609312006, 40.966126123267962 ], [ -72.913874399227694, 40.962495662446145 ], [ -72.888233434009649, 40.962899046981903 ], [ -72.826040454544597, 40.969756584089779 ], [ -72.77421297165705, 40.965319354196446 ], [ -72.760028607919409, 40.975403967590395 ], [ -72.714474978223507, 40.985690273252217 ], [ -72.689379565456917, 40.9897241186098 ], [ -72.665102481367484, 40.98750550366313 ], [ -72.635369872763576, 40.990530887681317 ], [ -72.585451823456111, 40.997590117057079 ], [ -72.565539158978254, 41.009489960861941 ], [ -72.56090196314095, 41.015540728898308 ], [ -72.549718137886259, 41.019776266523763 ], [ -72.521622186636705, 41.037726878364992 ], [ -72.477432438069428, 41.052248721652276 ], [ -72.460793088300278, 41.066972257207439 ], [ -72.445244843434011, 41.086133022655943 ], [ -72.417967220861613, 41.087948253066855 ], [ -72.396963451480872, 41.096217636049886 ], [ -72.356047017622288, 41.133732397875377 ], [ -72.333406590887208, 41.137967935500839 ], [ -72.322495541858245, 41.140589934983261 ], [ -72.291126275899998, 41.155918547342068 ], [ -72.278851345742424, 41.158742239092369 ], [ -72.273123045002222, 41.154910086002673 ], [ -72.26821307293919, 41.154103316931156 ], [ -72.245299869978382, 41.161162546306912 ], [ -72.238207688109554, 41.159549008163886 ], [ -72.237662135658113, 41.156523624145699 ], [ -72.253483156750093, 41.137161166429323 ], [ -72.265212534456225, 41.12848839891052 ], [ -72.300400667574621, 41.112353017480203 ], [ -72.300127891348893, 41.132118859732344 ], [ -72.306401744540537, 41.13776624323296 ], [ -72.312675597732181, 41.138573012304477 ], [ -72.318131122246655, 41.137161166429323 ], [ -72.326587185244108, 41.132118859732344 ], [ -72.335316024467275, 41.120219015927489 ], [ -72.335043248241547, 41.10690732624748 ], [ -72.317312793569499, 41.088755022138372 ], [ -72.29767290531737, 41.081090715958965 ], [ -72.280488003096764, 41.080485639155327 ], [ -72.276669135936629, 41.076653486065631 ], [ -72.283215765354001, 41.067779026278956 ], [ -72.273668597453664, 41.05144195258076 ], [ -72.260575338618921, 41.042164108258333 ], [ -72.241208226592519, 41.044786107740755 ], [ -72.229478848886401, 41.044382723204997 ], [ -72.217476694954541, 41.0405505701153 ], [ -72.201928450088275, 41.032281187132256 ], [ -72.190471848607871, 41.032482879400135 ], [ -72.183379666739057, 41.035709955686201 ], [ -72.179560799578923, 41.038533647436509 ], [ -72.174923603741604, 41.046197953615909 ], [ -72.162921449809758, 41.053257182991672 ], [ -72.160466463778249, 41.053862259795309 ], [ -72.153919834360863, 41.051845337116518 ], [ -72.137280484591713, 41.039743801043784 ], [ -72.135098274785918, 41.031272725792867 ], [ -72.137280484591713, 41.023810111881346 ], [ -72.116276715210972, 40.99980873200375 ], [ -72.108911757116431, 40.994161348503141 ], [ -72.102092351473317, 40.991539349020712 ], [ -72.095545722055959, 40.991337656752833 ], [ -72.082998015672644, 40.996379963449805 ], [ -72.079997477189693, 41.003439192825567 ], [ -72.079179148512509, 41.006464576843754 ], [ -72.076178610029558, 41.009086576326183 ], [ -72.061448693840461, 41.009489960861941 ], [ -72.05790260290604, 41.004851038700721 ], [ -72.057084274228885, 41.004851038700721 ], [ -72.055174840648817, 41.00525442323648 ], [ -72.051628749714396, 41.006464576843754 ], [ -72.049446539908615, 41.009691653129821 ], [ -72.051628749714396, 41.015742421166188 ], [ -72.051901525940124, 41.02058303559528 ], [ -72.047537106328548, 41.022599958274071 ], [ -72.035807728622416, 41.020784727863159 ], [ -72.015076735467403, 41.02824734177468 ], [ -71.999255714375408, 41.039743801043784 ], [ -71.967068119739992, 41.047811491758942 ], [ -71.961067042774062, 41.054265644331068 ], [ -71.960248714096878, 41.059913027831684 ], [ -71.961612595225517, 41.063946873189259 ], [ -71.95970316164545, 41.071207794832901 ], [ -71.938153839813253, 41.077460255137147 ], [ -71.919332280238308, 41.080485639155327 ], [ -71.899146839534723, 41.080889023691086 ], [ -71.895600748600316, 41.077460255137147 ], [ -71.889599671634386, 41.075645024726242 ], [ -71.869687007156557, 41.075039947922605 ], [ -71.864504258867782, 41.07685517833351 ], [ -71.857412076998969, 41.073628102047451 ], [ -71.856320972096086, 41.070602718029264 ], [ -71.873778650542405, 41.052248721652276 ], [ -71.903784035372041, 41.040147185579542 ], [ -71.93569885378173, 41.034096417543168 ], [ -72.02926109920503, 40.99980873200375 ], [ -72.114367281630905, 40.972176891304329 ], [ -72.395872346577988, 40.866691835203639 ], [ -72.470067479974887, 40.842690455326036 ], [ -72.573449669524251, 40.81324338421571 ], [ -72.745298691730312, 40.76705585487143 ], [ -72.753209202276309, 40.763627086317484 ], [ -72.757300845662172, 40.764433855389001 ], [ -72.76821189469112, 40.761610163638693 ], [ -72.863138021243046, 40.732969861599884 ], [ -72.923148790902303, 40.713204019347742 ], [ -73.012619392939754, 40.679723102879834 ], [ -73.054899707926964, 40.666411413199825 ], [ -73.145188638641571, 40.645435417340416 ], [ -73.208472723009521, 40.630913574053132 ], [ -73.239023660290599, 40.625064498284644 ], [ -73.262209639477135, 40.621434037462819 ], [ -73.26439184928293, 40.621434037462819 ], [ -73.306399388044412, 40.620828960659182 ], [ -73.30967270275309, 40.622442498802215 ], [ -73.319219870653427, 40.635754188482224 ], [ -73.351407465288858, 40.630510189517373 ], [ -73.392051122921714, 40.617400192105237 ], [ -73.423693165105703, 40.609937578193723 ], [ -73.450425235226646, 40.60348342562159 ], [ -73.562263487773436, 40.583717583369449 ], [ -73.583812809605632, 40.586742967387636 ], [ -73.610817655952303, 40.587751428727032 ], [ -73.646551341522127, 40.58270912203006 ], [ -73.701106586666924, 40.58351589110157 ], [ -73.754843503134538, 40.584322660173086 ], [ -73.754297950683082, 40.586339582851878 ], [ -73.753479622005912, 40.59057512047734 ], [ -73.775028943838095, 40.590776812745219 ], [ -73.801488237733309, 40.58573450604824 ], [ -73.806943762247798, 40.584524352440965 ], [ -73.83449416104591, 40.577263430797331 ], [ -73.878956685838915, 40.560926357099135 ], [ -73.934603035886596, 40.545194360204576 ], [ -73.934330259660868, 40.555278973598519 ], [ -73.932693602306529, 40.560321280295497 ], [ -73.935694140789479, 40.56496020245671 ], [ -73.938694679272459, 40.566170356063985 ], [ -73.944422980012661, 40.568792355546407 ], [ -73.950151280752863, 40.573431277707627 ], [ -73.959425672427471, 40.57262450863611 ], [ -73.99134049083716, 40.57040589368944 ], [ -74.001978763640395, 40.570607585957319 ], [ -74.009070945509222, 40.57282620090399 ], [ -74.012071483992173, 40.574439739047023 ], [ -74.012889812669357, 40.578070199868847 ], [ -74.007161511929155, 40.58351589110157 ], [ -74.006343183251971, 40.584726044708844 ], [ -74.001705987414681, 40.590776812745219 ], [ -74.00334264476902, 40.59581911944219 ], [ -74.01098037908929, 40.600861426139161 ], [ -74.0328024771472, 40.604491886960986 ], [ -74.0396218827903, 40.612962962211903 ], [ -74.042349645047537, 40.624862806016765 ], [ -74.038258001661688, 40.637166034357378 ], [ -74.035803015630165, 40.640796495179202 ], [ -74.031984148470031, 40.646443878679811 ], [ -74.018345337183831, 40.658948799288311 ], [ -74.020527546989626, 40.678714641540445 ], [ -74.02298253302115, 40.681336641022867 ], [ -74.024073637924033, 40.682345102362262 ], [ -74.024891966601217, 40.686984024523483 ], [ -74.02161865189251, 40.693438177095608 ], [ -74.018618113409559, 40.695455099774392 ], [ -74.016708679829492, 40.701707560078646 ], [ -74.019436442086729, 40.706951559043503 ], [ -74.024619190375489, 40.709371866258046 ], [ -74.013708141346527, 40.756567856941722 ], [ -74.009070945509222, 40.763627086317484 ], [ -74.000887658737497, 40.776535391461735 ], [ -73.9929771481915, 40.788838619802355 ], [ -73.986976071225584, 40.798318156392668 ], [ -73.948241847172795, 40.858422452220594 ], [ -73.938149126821003, 40.87475952591879 ], [ -73.933511930983698, 40.882020447562439 ], [ -73.933511930983698, 40.882020447562439 ], [ -73.927510854017768, 40.895735521778207 ], [ -73.919600343471785, 40.913484441351557 ], [ -73.917963686117432, 40.917518286709132 ], [ -73.893959378253726, 40.997186732521321 ], [ -73.902688217476893, 40.9973884247892 ], [ -73.911962609151516, 41.001220577878897 ], [ -74.040985763918911, 41.059106258760167 ], [ -74.040985763918911, 41.059106258760167 ], [ -74.09254047058073, 41.081897485030481 ], [ -74.09690489019232, 41.083712715441393 ], [ -74.213380338576428, 41.133732397875377 ], [ -74.234384107957169, 41.142808549929931 ], [ -74.365589472530388, 41.203316230293623 ], [ -74.392048766425603, 41.215619458634237 ], [ -74.457515060599334, 41.248293606030629 ], [ -74.694830376979155, 41.357409122953143 ], [ -74.689647628690381, 41.361644660578605 ], [ -74.691011509819006, 41.367292044079214 ], [ -74.752658936832617, 41.426589570835631 ], [ -74.75593225154131, 41.42679126310351 ], [ -74.799030895205675, 41.430421723925328 ], [ -74.876772119536994, 41.440304645051398 ], [ -74.892047588177533, 41.448775720302315 ], [ -74.912505805106832, 41.475600791930219 ], [ -74.939783427679231, 41.483466790377491 ], [ -74.984245952472222, 41.50625801664782 ], [ -75.040437854971344, 41.569589388761813 ], [ -75.049985022871681, 41.606902458319418 ], [ -75.052985561354646, 41.618600609856401 ], [ -75.048075589291614, 41.63191229953641 ], [ -75.053531113806088, 41.752524275728028 ], [ -75.090901456730279, 41.812023494752324 ], [ -75.114360212142529, 41.843487488541442 ], [ -75.140273953586302, 41.85216025606023 ], [ -75.146547806777946, 41.850950102452956 ], [ -75.263023255162068, 41.885036095724502 ], [ -75.279117052479762, 41.938887931248189 ], [ -75.292483087540248, 41.953813159071231 ], [ -75.341855584396271, 41.993344843575507 ], [ -75.359586039068319, 41.999395611611874 ], [ -75.431871738885164, 41.999395611611874 ], [ -75.43623615849674, 41.999395611611874 ], [ -75.477152592355338, 41.999395611611874 ], [ -75.483153669321268, 41.999193919343995 ], [ -75.48369922177271, 41.999193919343995 ], [ -75.980151952590234, 41.998992227076116 ], [ -75.983152491073199, 41.998992227076116 ], [ -76.105901792648964, 41.998790534808236 ], [ -76.123632247321012, 41.998992227076116 ], [ -76.131269981641282, 41.998992227076116 ], [ -76.145454345378937, 41.998992227076116 ], [ -76.343762661480213, 41.998387150272478 ], [ -76.349763738446143, 41.998387150272478 ], [ -76.462147543444388, 41.998992227076116 ], [ -76.466511963055979, 41.998992227076116 ], [ -76.557619222447769, 42.00020238068339 ], [ -76.558164774899211, 42.00020238068339 ], [ -76.815938308208317, 42.001614226558544 ], [ -76.83503264400899, 42.001815918826424 ], [ -76.920684378886307, 42.001815918826424 ], [ -76.92177548378919, 42.001614226558544 ], [ -76.926958232077951, 42.001614226558544 ], [ -76.937050952429729, 42.001614226558544 ], [ -76.942506476944203, 42.001614226558544 ], [ -76.965692456130739, 42.001210842022786 ], [ -76.965692456130739, 42.001210842022786 ], [ -77.007427218666507, 42.000807457487028 ], [ -77.007699994892221, 42.000807457487028 ], [ -77.124720995727785, 41.999395611611874 ], [ -77.505243830612642, 42.000000688415511 ], [ -77.609989901290632, 41.999597303879753 ], [ -77.749924105087004, 41.998790534808236 ], [ -77.822755357355291, 41.998588842540357 ], [ -77.8320297490299, 41.998588842540357 ], [ -78.030883617582646, 41.999395611611874 ], [ -78.031156393808359, 41.999395611611874 ], [ -78.124718639231673, 42.00040407295127 ], [ -78.206551506948841, 42.000000688415511 ], [ -78.308024262918138, 41.999395611611874 ], [ -78.596621509734035, 41.999798996147632 ], [ -78.87485325997244, 41.997580381200962 ], [ -78.918770232313989, 41.99798376573672 ], [ -79.052430582918703, 41.999193919343995 ], [ -79.06115942214187, 41.999193919343995 ], [ -79.53851781715872, 41.998588842540357 ], [ -79.551338299767735, 41.998588842540357 ], [ -79.610803516975551, 41.998992227076116 ], [ -79.625260656938934, 41.998992227076116 ], [ -79.625260656938934, 41.998992227076116 ], [ -79.761375993575157, 41.998992227076116 ], [ -79.762194322252327, 42.131302354804717 ], [ -79.761921546026599, 42.150664812521093 ], [ -79.761648769800885, 42.162766348593834 ], [ -79.761921546026599, 42.173254346523535 ], [ -79.761921546026599, 42.179708499095668 ], [ -79.761921546026599, 42.183540652185364 ], [ -79.762194322252327, 42.24303987120966 ], [ -79.761921546026599, 42.251309254192691 ], [ -79.761921546026599, 42.269864942837557 ], [ -79.717731797459322, 42.2847901706606 ], [ -79.645446097642491, 42.315649087646079 ], [ -79.593891390980673, 42.341667390202474 ], [ -79.546155551478989, 42.363450155133393 ], [ -79.510967418360607, 42.382409228314017 ], [ -79.474688180339314, 42.40419199324495 ], [ -79.453411634732859, 42.411251222620706 ], [ -79.429134550643425, 42.428395065390418 ], [ -79.405403019005448, 42.453203214339538 ], [ -79.381944263593198, 42.466514904019547 ], [ -79.36203159911534, 42.480229978235315 ], [ -79.351938878763562, 42.48890274575411 ], [ -79.342391710863225, 42.489709514825627 ], [ -79.33502675276867, 42.488297668950473 ], [ -79.331480661834263, 42.48910443802199 ], [ -79.323024598836824, 42.494751821522598 ], [ -79.317841850548064, 42.499794128219577 ], [ -79.283472046106851, 42.511290587488674 ], [ -79.264650486531906, 42.523190431293536 ], [ -79.242828388473995, 42.531661506544452 ], [ -79.22318850022188, 42.536098736437786 ], [ -79.193183115392245, 42.545981657563857 ], [ -79.148720590599254, 42.553645963743257 ], [ -79.138627870247461, 42.564537346208724 ], [ -79.136718436667394, 42.569781345173574 ], [ -79.129626254798566, 42.589748879693587 ], [ -79.126352940089873, 42.590959033300862 ], [ -79.121988520478297, 42.594186109586929 ], [ -79.113805233706586, 42.606085953391784 ], [ -79.111350247675063, 42.613346875035433 ], [ -79.078889876813918, 42.63997025439545 ], [ -79.073161576073716, 42.63997025439545 ], [ -79.063887184399107, 42.64481086882455 ], [ -79.062250527044768, 42.668408864166381 ], [ -79.048884491984296, 42.689183167757918 ], [ -79.01887910715466, 42.701486396098531 ], [ -79.006058624545631, 42.704511780116718 ], [ -78.99105593213082, 42.705318549188235 ], [ -78.944138421306306, 42.731941928548252 ], [ -78.918224679862533, 42.73718592751311 ], [ -78.868579406780782, 42.77026345944526 ], [ -78.853576714365971, 42.783978533661028 ], [ -78.851394504560176, 42.791844532108314 ], [ -78.856577252848922, 42.800315607359224 ], [ -78.859305015106173, 42.800718991894982 ], [ -78.86366943471775, 42.813022220235595 ], [ -78.865578868297817, 42.82673729445137 ], [ -78.860396120009057, 42.835208369702286 ], [ -78.859577791331901, 42.841259137738653 ], [ -78.865578868297817, 42.852352212471999 ], [ -78.872125497715189, 42.853360673811395 ], [ -78.882490994292709, 42.867277440295041 ], [ -78.891765385967318, 42.884824667600512 ], [ -78.912496379122331, 42.886639898011424 ], [ -78.905676973479231, 42.899951587691433 ], [ -78.905676973479231, 42.923347890765392 ], [ -78.909223064413652, 42.933230811891463 ], [ -78.918770232313989, 42.94694588610723 ], [ -78.921225218345498, 42.948357731982384 ], [ -78.932409043600188, 42.955820345893905 ], [ -78.972507148781602, 42.966711728359371 ], [ -79.011514149060105, 42.985267417004231 ], [ -79.019970212057558, 42.994746953594543 ], [ -79.028426275054997, 43.066952785495211 ], [ -79.028699051280711, 43.069574784977632 ], [ -79.058431659884633, 43.075222168478248 ], [ -79.06634217043063, 43.090954165372807 ], [ -79.056795002530293, 43.126855389055265 ], [ -79.04397451992125, 43.138150156056483 ], [ -79.04233786256691, 43.14359584728922 ], [ -79.058431659884633, 43.238996289995967 ], [ -79.070433813816479, 43.262392593069919 ], [ -79.019970212057558, 43.273687360071143 ], [ -78.971961596330146, 43.281351666250544 ], [ -78.930772386245835, 43.293251510055399 ], [ -78.859305015106173, 43.311000429628749 ], [ -78.836391812145365, 43.318463043540277 ], [ -78.833936826113842, 43.317454582200881 ], [ -78.777744923614719, 43.327135811059065 ], [ -78.747193986333642, 43.334598424970594 ], [ -78.696730384574721, 43.341254269810591 ], [ -78.63426462888394, 43.357591343508787 ], [ -78.54752178910374, 43.369491187313649 ], [ -78.488874900573094, 43.3747351862785 ], [ -78.482601047381451, 43.374331801742741 ], [ -78.473053879481114, 43.370903033188803 ], [ -78.465416145160845, 43.371306417724561 ], [ -78.370217242383191, 43.376550416689412 ], [ -78.358760640902773, 43.373928417206983 ], [ -78.250741255516118, 43.370903033188803 ], [ -78.233556353295512, 43.369087802777898 ], [ -78.145176856160958, 43.375541955350016 ], [ -78.104533198528088, 43.375541955350016 ], [ -78.02351865948809, 43.366667495563348 ], [ -77.99569548446425, 43.365255649688194 ], [ -77.99487715578708, 43.365255649688194 ], [ -77.976328372437848, 43.369087802777898 ], [ -77.965144547183172, 43.368079341438502 ], [ -77.952869617025598, 43.363440419277282 ], [ -77.922864232195963, 43.356986266705157 ], [ -77.904861001298187, 43.356986266705157 ], [ -77.875401168920007, 43.349725345061515 ], [ -77.816481504163647, 43.343472884757261 ], [ -77.797387168362974, 43.339842423935444 ], [ -77.785112238205386, 43.339237347131807 ], [ -77.76028960166451, 43.341254269810591 ], [ -77.757016286955832, 43.337422116720894 ], [ -77.730556993060603, 43.330161195077253 ], [ -77.714190419517166, 43.323505350237248 ], [ -77.701369936908151, 43.308176737878448 ], [ -77.660453503049553, 43.282965204393577 ], [ -77.653634097406467, 43.279536435839631 ], [ -77.628265908414136, 43.271267052856601 ], [ -77.602079390744649, 43.256946901837196 ], [ -77.577256754203773, 43.243231827621422 ], [ -77.551070236534258, 43.235769213709901 ], [ -77.53415811053938, 43.234559060102626 ], [ -77.500879411001065, 43.250291056997185 ], [ -77.476602326911632, 43.254526594622646 ], [ -77.436776997955945, 43.265619669355985 ], [ -77.414409347446593, 43.269250130177809 ], [ -77.390950592034329, 43.276309359553572 ], [ -77.385495067519855, 43.27691443635721 ], [ -77.375947899619518, 43.277721205428719 ], [ -77.34103254272685, 43.280746589446906 ], [ -77.314573248831636, 43.280948281714785 ], [ -77.303934976028401, 43.278124589964477 ], [ -77.264109647072701, 43.277317820892961 ], [ -77.214191597765222, 43.284175358000851 ], [ -77.173002387680924, 43.281553358518423 ], [ -77.14354255530273, 43.287604126554797 ], [ -77.130449296467987, 43.285587203876005 ], [ -77.111900513118769, 43.288007511090555 ], [ -77.067165212100036, 43.280948281714785 ], [ -77.033886512561722, 43.271267052856601 ], [ -76.999789484346223, 43.27146874512448 ], [ -76.988332882865819, 43.27449412914266 ], [ -76.958327498036198, 43.270056899249326 ], [ -76.95205364484454, 43.270661976052963 ], [ -76.922321036240646, 43.284982127072368 ], [ -76.904317805342856, 43.291839664180252 ], [ -76.886860126896536, 43.293856586859036 ], [ -76.877312958996185, 43.292848125519647 ], [ -76.854945308486833, 43.298495509020256 ], [ -76.841579273426362, 43.30535304612814 ], [ -76.794661762601848, 43.309588583753595 ], [ -76.769020797383803, 43.318463043540277 ], [ -76.747198699325878, 43.331573040952406 ], [ -76.731104902008184, 43.343472884757261 ], [ -76.722376062785003, 43.343674577025141 ], [ -76.698371754921311, 43.344481346096657 ], [ -76.684732943635112, 43.352750729079702 ], [ -76.669730251220301, 43.366465803295469 ], [ -76.64272540487363, 43.401156873370653 ], [ -76.63072325094177, 43.413258409443387 ], [ -76.617084439655571, 43.419107485211875 ], [ -76.606991719303792, 43.423343022837329 ], [ -76.56280197073653, 43.448554556322208 ], [ -76.531705481003996, 43.460252707859183 ], [ -76.521885536877932, 43.468522090842221 ], [ -76.515884459912002, 43.471144090324643 ], [ -76.506882844463121, 43.469127167645858 ], [ -76.486970179985263, 43.475379627950105 ], [ -76.472513040021909, 43.492725162987696 ], [ -76.437597683129241, 43.509263928953771 ], [ -76.417685018651397, 43.521365465026506 ], [ -76.41059283678257, 43.523180695437418 ], [ -76.368858074246816, 43.525802694919847 ], [ -76.345399318834552, 43.513499466579233 ], [ -76.330942178871197, 43.5118859284362 ], [ -76.297117926881427, 43.512894389775596 ], [ -76.25974758395725, 43.524794233580451 ], [ -76.235743276093544, 43.529231463473792 ], [ -76.228651094224716, 43.533063616563489 ], [ -76.218012821421496, 43.54516515263623 ], [ -76.209829534649771, 43.560090380459272 ], [ -76.203555681458127, 43.575015608282314 ], [ -76.199191261846551, 43.600428834035057 ], [ -76.196463499589299, 43.649843439665403 ], [ -76.200555142975162, 43.680298972115125 ], [ -76.205465115038194, 43.718822195280012 ], [ -76.213102849358464, 43.753513265355195 ], [ -76.229196646676172, 43.80413802459281 ], [ -76.250200416056913, 43.825719097255856 ], [ -76.267112542051791, 43.838022325596476 ], [ -76.277750814855025, 43.841249401882536 ], [ -76.283206339369514, 43.843871401364964 ], [ -76.284570220498125, 43.850930630740727 ], [ -76.282660786918058, 43.858594936920127 ], [ -76.2763869337264, 43.863233859081348 ], [ -76.269294751857586, 43.868679550314077 ], [ -76.261657017537317, 43.87331847247529 ], [ -76.249927639831185, 43.875537087421961 ], [ -76.243381010413813, 43.87795739463651 ], [ -76.234652171190646, 43.877352317832873 ], [ -76.227559989321833, 43.875133702886203 ], [ -76.219376702550107, 43.866864319903165 ], [ -76.202191800329501, 43.864847397224381 ], [ -76.192644632429165, 43.869082934849835 ], [ -76.180642478497305, 43.877554010100752 ], [ -76.158274827987952, 43.887638623494695 ], [ -76.145454345378937, 43.888647084834091 ], [ -76.133179415221349, 43.892882622459553 ], [ -76.127178338255419, 43.897924929156531 ], [ -76.124996128449638, 43.912850156979573 ], [ -76.130451652964112, 43.933019383767466 ], [ -76.133724967672805, 43.940280305411108 ], [ -76.134270520124247, 43.945524304375965 ], [ -76.134270520124247, 43.954802148698391 ], [ -76.139180492187279, 43.96206307034204 ], [ -76.145999897830379, 43.964685069824462 ], [ -76.169731429468357, 43.962264762609919 ], [ -76.185006898108895, 43.971139222396587 ], [ -76.228105541773274, 43.982837373933563 ], [ -76.236834380996441, 43.977996759504478 ], [ -76.244472115316711, 43.975778144557808 ], [ -76.252382625862708, 43.975778144557808 ], [ -76.258383702828638, 43.976181529093566 ], [ -76.264384779794554, 43.977996759504478 ], [ -76.26874919940613, 43.980820451254779 ], [ -76.26874919940613, 43.987274603826904 ], [ -76.266839765826063, 43.995543986809942 ], [ -76.269567528083314, 44.001191370310551 ], [ -76.281842458240888, 44.009259061025716 ], [ -76.287843535206804, 44.01147767597238 ], [ -76.296845150655713, 44.013292906383292 ], [ -76.299027360461494, 44.017730136276626 ], [ -76.300118465364392, 44.022772442973604 ], [ -76.299572912912936, 44.031041825956635 ], [ -76.297117926881427, 44.045361976976046 ], [ -76.300664017815848, 44.057261820780909 ], [ -76.304210108750254, 44.059480435727572 ], [ -76.360402011249377, 44.070976894996676 ], [ -76.360674787475091, 44.08771735323063 ], [ -76.366948640666749, 44.100423966107002 ], [ -76.363948102183784, 44.111718733108219 ], [ -76.358219801443582, 44.123416884645202 ], [ -76.355764815412073, 44.133299805771273 ], [ -76.312666171747679, 44.199051485099815 ], [ -76.286479654078192, 44.203690407261028 ], [ -76.245563220219609, 44.203690407261028 ], [ -76.20682899616682, 44.214581789726495 ], [ -76.191280751300553, 44.221237634566499 ], [ -76.164275904953882, 44.23959163094348 ], [ -76.118176722806538, 44.294855312342321 ], [ -76.045345470538251, 44.331764997364168 ], [ -76.000882945745246, 44.347496994258734 ], [ -75.978242519010166, 44.346891917455096 ], [ -75.970059232238441, 44.342858072097513 ], [ -75.949601015309156, 44.34911053240176 ], [ -75.913049001062149, 44.368069605582377 ], [ -75.871587014752123, 44.394894677210289 ], [ -75.860130413271719, 44.403365752461198 ], [ -75.82085063676746, 44.432207746767887 ], [ -75.807757377932717, 44.471739431272169 ], [ -75.765477062945507, 44.516313422473416 ], [ -75.696464677837355, 44.567543258514675 ], [ -75.491336956092979, 44.712963383655406 ], [ -75.433235620013789, 44.750074760945132 ], [ -75.33367229762456, 44.806346903683362 ], [ -75.302030255440584, 44.826717822739141 ], [ -75.307758556180787, 44.836802436133084 ], [ -75.283208695865625, 44.849105664473697 ], [ -75.216378520563268, 44.877544274244634 ], [ -75.189373674216597, 44.882989965477364 ], [ -75.140001177360574, 44.896705039693138 ], [ -75.064714939060778, 44.929379187089523 ], [ -75.027071819910873, 44.946523029859236 ], [ -75.005249721852962, 44.958422873664098 ], [ -74.99952142111276, 44.965885487575619 ], [ -74.999248644887032, 44.971734563344114 ], [ -74.992702015469661, 44.977381946844716 ], [ -74.97251657476609, 44.98343271488109 ], [ -74.826581294003802, 45.015905170009603 ], [ -74.801758657462926, 45.014493324134449 ], [ -74.725108538034505, 45.005820556615653 ], [ -74.701922558847969, 45.003400249401111 ], [ -74.291394339133475, 44.992105482399886 ], [ -74.146822939499799, 44.991500405596248 ], [ -74.027346952632712, 44.995735943221703 ], [ -73.874592266227324, 45.00118163445444 ], [ -73.624456467238502, 45.004005326204748 ], [ -73.343224178517147, 45.010862863312624 ], [ -73.35031636038596, 44.994324097346549 ], [ -73.359317975834855, 44.915664112873756 ], [ -73.369683472412362, 44.829138129953684 ], [ -73.339950863808454, 44.778916755251828 ], [ -73.365319052800771, 44.703282154797215 ], [ -73.390141689341647, 44.618369710020175 ], [ -73.374320668249666, 44.575409256961954 ], [ -73.362045738092093, 44.563106028621334 ], [ -73.356862989803346, 44.557862029656484 ], [ -73.338586982679828, 44.546768954923138 ], [ -73.338586982679828, 44.546768954923138 ], [ -73.30667216427014, 44.500379733310979 ], [ -73.29985275862704, 44.476580045701262 ], [ -73.293578905435396, 44.438863591607898 ], [ -73.296033891466905, 44.42837559367819 ], [ -73.315128227267579, 44.388440524638156 ], [ -73.32331151403929, 44.264803164428358 ], [ -73.324675395167915, 44.243625476301062 ], [ -73.350861912837416, 44.225876556727712 ], [ -73.390687241793103, 44.190983794384657 ], [ -73.403780500627846, 44.153065648023414 ], [ -73.429148689620177, 44.079447970247585 ], [ -73.437331976391889, 44.0467738228512 ], [ -73.436786423940447, 44.042538285225746 ], [ -73.410872682496674, 44.027007980599059 ], [ -73.405962710433641, 44.016318290401472 ], [ -73.405417157982185, 43.948751380662024 ], [ -73.407872144013709, 43.929792307481407 ], [ -73.397233871210474, 43.905589235335924 ], [ -73.388505031987307, 43.832374942095868 ], [ -73.379230640312699, 43.808575254486144 ], [ -73.379230640312699, 43.808373562218264 ], [ -73.357681318480502, 43.785985720483708 ], [ -73.35031636038596, 43.771463877196418 ], [ -73.360681856963481, 43.753311573087316 ], [ -73.37077457731526, 43.735562653513966 ], [ -73.403507724402118, 43.684937894276345 ], [ -73.408690472690878, 43.674046511810879 ], [ -73.421510955299908, 43.646616363379337 ], [ -73.431330899425973, 43.588327297962323 ], [ -73.428603137168722, 43.584091760336861 ], [ -73.400234409693439, 43.56896484024594 ], [ -73.375684549378292, 43.613337139179315 ], [ -73.366410157703683, 43.623421752573265 ], [ -73.306126611818684, 43.628060674734478 ], [ -73.302580520884277, 43.625640367519935 ], [ -73.245570289707985, 43.54032453820713 ], [ -73.242024198773578, 43.534878846974394 ], [ -73.246934170836596, 43.51491131245438 ], [ -73.252662471576798, 43.370903033188803 ], [ -73.252662471576798, 43.370297956385166 ], [ -73.252935247802526, 43.363440419277282 ], [ -73.253208024028254, 43.354767651758486 ], [ -73.254844681382593, 43.314630890450573 ], [ -73.259209100994184, 43.216810140529276 ], [ -73.269574597571676, 43.030648177277001 ], [ -73.274211793408995, 42.943718809821164 ], [ -73.274484569634723, 42.942508656213889 ], [ -73.274484569634723, 42.940290041267225 ], [ -73.278576213020571, 42.833393139291374 ], [ -73.285395618663671, 42.833998216095011 ], [ -73.290851143178145, 42.801929145502257 ], [ -73.27639400321479, 42.746060387299785 ], [ -73.264937401734386, 42.745858695031906 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "44", "geo_id": "0400000US39", "fips_state": "39", "name": "Ohio", "iso_3166_2": "OH", "census": 11536504, "pop_estimataes_base": 11536725, "pop_2010": 11540070, "pop_2011": 11544757, "pop_2012": 11550901, "pop_2013": 11572005, "pop_2014": 11594163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.700267049524626, 41.612146457284268 ], [ -82.690992657850018, 41.611339688212752 ], [ -82.680081608821069, 41.619003994392159 ], [ -82.677899399015274, 41.617995533052763 ], [ -82.680627161272497, 41.594599229978797 ], [ -82.686082685786985, 41.587338308335163 ], [ -82.688810448044222, 41.585926462460009 ], [ -82.701903706878966, 41.58552307792425 ], [ -82.725908014742686, 41.595204306782435 ], [ -82.735727958868736, 41.60105338255093 ], [ -82.735727958868736, 41.6032719974976 ], [ -82.718815832873858, 41.619609071195796 ], [ -82.707359231393454, 41.619609071195796 ], [ -82.703540364233319, 41.617793840784884 ], [ -82.700267049524626, 41.612146457284268 ] ] ], [ [ [ -82.824653008454732, 41.659342447967944 ], [ -82.808559211137023, 41.661762755182494 ], [ -82.80528589642833, 41.664183062397043 ], [ -82.796284280979449, 41.665998292807956 ], [ -82.793010966270771, 41.664788139200681 ], [ -82.794102071173654, 41.66256952425401 ], [ -82.797375385882333, 41.658132294360669 ], [ -82.827107994486255, 41.633727529947322 ], [ -82.834745728806524, 41.629290300053981 ], [ -82.842110686901066, 41.628281838714585 ], [ -82.843474568029677, 41.647039219627331 ], [ -82.834200176355068, 41.657123833021281 ], [ -82.824653008454732, 41.659342447967944 ] ] ], [ [ [ -82.803376462848263, 41.693831825775248 ], [ -82.786191560627657, 41.697058902061315 ], [ -82.78264546969325, 41.694033518043128 ], [ -82.790555980239247, 41.689999672685545 ], [ -82.801467029268196, 41.682537058774031 ], [ -82.805013120202602, 41.674872752594624 ], [ -82.805558672654058, 41.671847368576444 ], [ -82.813741959425784, 41.670637214969169 ], [ -82.826562442034799, 41.684755673720701 ], [ -82.8129236307486, 41.692016595364336 ], [ -82.803376462848263, 41.693831825775248 ] ] ], [ [ [ -82.813469183200056, 41.723480589153453 ], [ -82.810468644717091, 41.720455205135274 ], [ -82.808831987362737, 41.708353669062532 ], [ -82.816196945457293, 41.706740130919499 ], [ -82.835018505032252, 41.70895874586617 ], [ -82.835564057483694, 41.710773976277082 ], [ -82.832836295226457, 41.715614590706181 ], [ -82.825744113357629, 41.722875512349816 ], [ -82.820288588843155, 41.724489050492849 ], [ -82.813469183200056, 41.723480589153453 ] ] ], [ [ [ -82.593611545266583, 38.421778163974878 ], [ -82.665351692631958, 38.505682147412529 ], [ -82.665624468857686, 38.505883839680408 ], [ -82.690447105398562, 38.536541064398008 ], [ -82.69672095859022, 38.542188447898624 ], [ -82.724816909839774, 38.557517060257425 ], [ -82.731090763031432, 38.55933229066833 ], [ -82.789737651562064, 38.559937367471967 ], [ -82.800103148139584, 38.563164443758026 ], [ -82.815924169231579, 38.570828749937434 ], [ -82.820288588843155, 38.572643980348346 ], [ -82.839655700869542, 38.586157362296234 ], [ -82.847293435189812, 38.595233514350781 ], [ -82.85356728838147, 38.61096551124534 ], [ -82.869661085699178, 38.678129036449036 ], [ -82.873479952859313, 38.709996414773912 ], [ -82.870479414376348, 38.722097950846653 ], [ -82.869933861924906, 38.730569026097569 ], [ -82.871297743053532, 38.739443485884237 ], [ -82.874571057762211, 38.745292561652732 ], [ -82.87538938643938, 38.747309484331524 ], [ -82.879481029825243, 38.751545021956979 ], [ -82.889300973951293, 38.755982251850313 ], [ -82.89421094601434, 38.75658732865395 ], [ -82.923670778392506, 38.750133176081832 ], [ -82.943037890418907, 38.743275638973941 ], [ -82.968678855636966, 38.728753795686657 ], [ -82.979317128440186, 38.725930103936349 ], [ -83.011777499301331, 38.729963949293932 ], [ -83.030599058876291, 38.72572841166847 ], [ -83.030871835102005, 38.725526719400591 ], [ -83.127707395234012, 38.642429505034464 ], [ -83.135072353328553, 38.631739814836877 ], [ -83.142710087648823, 38.625083969996872 ], [ -83.156894451386464, 38.620646740103538 ], [ -83.265732165450316, 38.605318127744738 ], [ -83.282098738993739, 38.602897820530188 ], [ -83.320560186820813, 38.622663662782323 ], [ -83.32410627775522, 38.63335335297991 ], [ -83.333380669429829, 38.641622735962947 ], [ -83.369114354999681, 38.65937165553629 ], [ -83.51259464973046, 38.701727031790881 ], [ -83.521050712727885, 38.703138877666028 ], [ -83.533325642885472, 38.702130416326639 ], [ -83.574787629195498, 38.69265087973632 ], [ -83.615704063054096, 38.68417980448541 ], [ -83.626887888308772, 38.679339190056311 ], [ -83.636162279983381, 38.670666422537515 ], [ -83.642981685626481, 38.643236274105973 ], [ -83.646800552786615, 38.637588890605372 ], [ -83.64980109126958, 38.632748276176272 ], [ -83.655529392009782, 38.629722892158085 ], [ -83.663985455007222, 38.627907661747173 ], [ -83.679533699873488, 38.630126276693844 ], [ -83.705992993768717, 38.637185506069613 ], [ -83.762457672493554, 38.652110733892656 ], [ -83.769277078136653, 38.655136117910835 ], [ -83.77364149774823, 38.661388578215082 ], [ -83.777733141134092, 38.674498575627219 ], [ -83.853292155659631, 38.752553483296374 ], [ -83.859020456399833, 38.756789020921829 ], [ -83.870477057880237, 38.761629635350928 ], [ -83.904028533644265, 38.768083787923054 ], [ -83.904028533644265, 38.768083787923054 ], [ -83.943853862599951, 38.783614092549733 ], [ -83.962129869723469, 38.78744624563943 ], [ -83.978769219492619, 38.787042861103671 ], [ -84.044508289892093, 38.770504095137603 ], [ -84.052691576663804, 38.770504095137603 ], [ -84.071513136238764, 38.770504095137603 ], [ -84.20571903929492, 38.802573165730358 ], [ -84.212811221163747, 38.805800242016417 ], [ -84.225358927547035, 38.817700085821279 ], [ -84.229996123384353, 38.82758300694735 ], [ -84.231360004512965, 38.830608390965537 ], [ -84.233814990544488, 38.85360130950373 ], [ -84.232451109415862, 38.874577305363147 ], [ -84.232178333190149, 38.880426381131635 ], [ -84.23436054299593, 38.893132994008013 ], [ -84.304736809232708, 39.00648404855599 ], [ -84.313738424681588, 39.016972046485691 ], [ -84.320012277873246, 39.022014353182669 ], [ -84.326558907290618, 39.027460044415392 ], [ -84.432941635322948, 39.09422018508333 ], [ -84.493770733659375, 39.102489568066375 ], [ -84.5019540204311, 39.09664049229788 ], [ -84.506045663816963, 39.095026954154847 ], [ -84.509864530977097, 39.093615108279693 ], [ -84.510137307202811, 39.093615108279693 ], [ -84.603426776400397, 39.073647573759679 ], [ -84.620066126169547, 39.0734458814918 ], [ -84.623612217103954, 39.074454342831196 ], [ -84.632341056327135, 39.076672957777859 ], [ -84.684714091666109, 39.100472645387583 ], [ -84.689624063729156, 39.104103106209401 ], [ -84.718538343655879, 39.136978945873672 ], [ -84.732177154942079, 39.144441559785193 ], [ -84.744179308873925, 39.14746694380338 ], [ -84.754544805451445, 39.146660174731863 ], [ -84.766819735609019, 39.138592484016705 ], [ -84.787550728764032, 39.115196180942746 ], [ -84.820283875850905, 39.105514952084555 ], [ -84.820011099625177, 39.149080481946413 ], [ -84.819738323399463, 39.156543095857927 ], [ -84.819738323399463, 39.157551557197323 ], [ -84.819738323399463, 39.244279232385281 ], [ -84.819738323399463, 39.247708000939227 ], [ -84.819738323399463, 39.250935077225286 ], [ -84.819738323399463, 39.261826459690752 ], [ -84.819738323399463, 39.271507688548937 ], [ -84.819465547173735, 39.305190297284724 ], [ -84.819465547173735, 39.305190297284724 ], [ -84.819465547173735, 39.309425834910186 ], [ -84.817556113593668, 39.391716280204804 ], [ -84.8156466800136, 39.477435494053353 ], [ -84.8156466800136, 39.477435494053353 ], [ -84.8156466800136, 39.510916410521261 ], [ -84.8156466800136, 39.51111810278914 ], [ -84.815373903787872, 39.522009485254607 ], [ -84.815373903787872, 39.522009485254607 ], [ -84.815101127562144, 39.548027787810994 ], [ -84.814828351336416, 39.566180091920103 ], [ -84.814828351336416, 39.567188553259498 ], [ -84.815101127562144, 39.567793630063136 ], [ -84.815101127562144, 39.568398706866773 ], [ -84.814828351336416, 39.628906387230458 ], [ -84.814555575110703, 39.669244840806243 ], [ -84.814555575110703, 39.680337915539596 ], [ -84.814010022659261, 39.726525444883876 ], [ -84.814010022659261, 39.726525444883876 ], [ -84.814282798884975, 39.785621279372407 ], [ -84.814282798884975, 39.786831432979682 ], [ -84.814282798884975, 39.799739738123932 ], [ -84.814010022659261, 39.811437889660915 ], [ -84.814282798884975, 39.814261581411216 ], [ -84.813737246433533, 39.824547887073052 ], [ -84.813737246433533, 39.826766502019716 ], [ -84.813737246433533, 39.843103575717912 ], [ -84.813737246433533, 39.843103575717912 ], [ -84.813464470207805, 39.850767881897312 ], [ -84.813464470207805, 39.853188189111862 ], [ -84.812918917756349, 39.872954031364003 ], [ -84.812918917756349, 39.890904643205225 ], [ -84.812646141530635, 39.891509720008862 ], [ -84.812373365304907, 39.916922945761613 ], [ -84.812373365304907, 39.916922945761613 ], [ -84.812373365304907, 39.921763560190705 ], [ -84.812100589079193, 39.927410943691314 ], [ -84.810736707950568, 40.005062466824718 ], [ -84.810191155499126, 40.034307845667165 ], [ -84.80964560304767, 40.048829688954456 ], [ -84.808827274370501, 40.10711875437147 ], [ -84.808281721919059, 40.127086288891491 ], [ -84.808281721919059, 40.129103211570282 ], [ -84.806645064564705, 40.180131355343654 ], [ -84.806372288338991, 40.192232891416396 ], [ -84.806372288338991, 40.192232891416396 ], [ -84.806099512113263, 40.198081967184876 ], [ -84.805553959661808, 40.223696885205513 ], [ -84.804190078533196, 40.302558561946185 ], [ -84.803917302307468, 40.310021175857706 ], [ -84.803917302307468, 40.310021175857706 ], [ -84.804190078533196, 40.352779936648048 ], [ -84.804190078533196, 40.352779936648048 ], [ -84.803098973630298, 40.465324222124508 ], [ -84.802553421178857, 40.528050517434863 ], [ -84.802280644953129, 40.572221124100352 ], [ -84.802280644953129, 40.572221124100352 ], [ -84.802007868727401, 40.644830340536778 ], [ -84.802280644953129, 40.660360645163458 ], [ -84.802280644953129, 40.674680796182869 ], [ -84.802280644953129, 40.689404331738032 ], [ -84.802007868727401, 40.691421254416817 ], [ -84.802007868727401, 40.702514329150162 ], [ -84.802280644953129, 40.718649710580479 ], [ -84.802007868727401, 40.728129247170784 ], [ -84.802007868727401, 40.728129247170784 ], [ -84.802280644953129, 40.742247705922317 ], [ -84.802553421178857, 40.765442316728397 ], [ -84.802826197404571, 40.922358901138224 ], [ -84.802826197404571, 40.922560593406104 ], [ -84.803371749856012, 40.989119041806163 ], [ -84.803371749856012, 40.989320734074042 ], [ -84.803371749856012, 41.089360098942009 ], [ -84.803371749856012, 41.096822712853523 ], [ -84.803371749856012, 41.164591314860857 ], [ -84.80364452608174, 41.173264082379653 ], [ -84.803371749856012, 41.17386915918329 ], [ -84.803371749856012, 41.252529143656083 ], [ -84.803371749856012, 41.252529143656083 ], [ -84.80364452608174, 41.270883140033071 ], [ -84.80364452608174, 41.27108483230095 ], [ -84.80364452608174, 41.271286524568829 ], [ -84.803917302307468, 41.367897120882851 ], [ -84.804190078533196, 41.408235574458644 ], [ -84.803917302307468, 41.408437266726523 ], [ -84.803917302307468, 41.411664343012589 ], [ -84.803917302307468, 41.425984494031994 ], [ -84.803917302307468, 41.426186186299873 ], [ -84.803917302307468, 41.435464030622299 ], [ -84.804462854758924, 41.488307404806591 ], [ -84.804462854758924, 41.500408940879325 ], [ -84.804735630984638, 41.53005770425753 ], [ -84.804735630984638, 41.53005770425753 ], [ -84.804735630984638, 41.530259396525409 ], [ -84.805826735887536, 41.612953226355785 ], [ -84.805826735887536, 41.631307222732772 ], [ -84.805553959661808, 41.632315684072168 ], [ -84.806099512113263, 41.674469368058865 ], [ -84.806099512113263, 41.696050440721919 ], [ -84.438124383611694, 41.704924900508594 ], [ -84.399662935784619, 41.705731669580103 ], [ -84.399390159558891, 41.705731669580103 ], [ -84.396662397301668, 41.705933361847983 ], [ -84.360383159280389, 41.706941823187378 ], [ -83.880569778232015, 41.720051820599515 ], [ -83.880297002006287, 41.720051820599515 ], [ -83.763276001170738, 41.723883973689212 ], [ -83.68526200061369, 41.726505973171641 ], [ -83.665894888587289, 41.726909357707399 ], [ -83.639708370917788, 41.727716126778915 ], [ -83.636707832434837, 41.727917819046795 ], [ -83.595245846124797, 41.729127972654069 ], [ -83.593881964996172, 41.729127972654069 ], [ -83.585153125773019, 41.729329664921949 ], [ -83.504411362958734, 41.731548279868619 ], [ -83.503320258055837, 41.731548279868619 ], [ -83.49977416712143, 41.731548279868619 ], [ -83.497864733541363, 41.731749972136498 ], [ -83.4539477611998, 41.732556741208015 ], [ -83.455584418554153, 41.727514434511036 ], [ -83.449037789136781, 41.710773976277082 ], [ -83.446037250653816, 41.706941823187378 ], [ -83.409485236406809, 41.69120982629282 ], [ -83.392573110411931, 41.692016595364336 ], [ -83.375660984417038, 41.686570904131607 ], [ -83.357112201067821, 41.687781057738881 ], [ -83.341836732427282, 41.69342844123949 ], [ -83.338017865267147, 41.698672440204348 ], [ -83.338017865267147, 41.703311362365561 ], [ -83.326834040012471, 41.701496131954656 ], [ -83.298738088762903, 41.683948904649185 ], [ -83.295737550279938, 41.681931981970394 ], [ -83.293828116699871, 41.680923520630998 ], [ -83.290554801991192, 41.676889675273415 ], [ -83.289736473314008, 41.676486290737657 ], [ -83.288372592185397, 41.675881213934019 ], [ -83.287008711056771, 41.675477829398261 ], [ -83.285099277476704, 41.674671060326745 ], [ -83.278552648059332, 41.672049060844323 ], [ -83.23818176665219, 41.651073064984914 ], [ -83.231635137234818, 41.644215527877023 ], [ -83.194537570536369, 41.631105530464893 ], [ -83.165623290609631, 41.623239532017614 ], [ -83.145983402357501, 41.617995533052763 ], [ -83.10397586359602, 41.613558303159422 ], [ -83.085972632698244, 41.606700766051539 ], [ -83.066605520671857, 41.595405999050314 ], [ -83.048329513548339, 41.574026618655147 ], [ -83.043419541485321, 41.568177542886659 ], [ -83.043146765259593, 41.56797585061878 ], [ -83.042873989033865, 41.5677741583509 ], [ -83.031690163779189, 41.558496314028467 ], [ -83.030871835102005, 41.55789123722483 ], [ -83.028144072844782, 41.555672622278166 ], [ -83.019142457395887, 41.55022693104543 ], [ -83.017505800041533, 41.549218469706034 ], [ -83.016687471364378, 41.548815085170276 ], [ -83.000048121595214, 41.538528779508454 ], [ -82.999775345369486, 41.538528779508454 ], [ -82.96976996053985, 41.524410320756928 ], [ -82.96976996053985, 41.524208628489049 ], [ -82.969497184314136, 41.524208628489049 ], [ -82.958586135285174, 41.521183244470862 ], [ -82.934309051195754, 41.514325707362971 ], [ -82.897757036948747, 41.519166321792071 ], [ -82.896938708271563, 41.519569706327829 ], [ -82.88820986904841, 41.522595090346016 ], [ -82.88220879208248, 41.525822166632075 ], [ -82.875116610213666, 41.529654319721772 ], [ -82.869388309473464, 41.533889857347233 ], [ -82.866387770990485, 41.537520318169058 ], [ -82.861205022701739, 41.543167701669667 ], [ -82.85793170799306, 41.546999854759363 ], [ -82.856840603090149, 41.548210008366638 ], [ -82.856567826864435, 41.550630315581188 ], [ -82.855203945735809, 41.564143697529076 ], [ -82.856022274412993, 41.566564004743626 ], [ -82.856567826864435, 41.568177542886659 ], [ -82.858750036670216, 41.574026618655147 ], [ -82.8595683653474, 41.576446925869696 ], [ -82.85793170799306, 41.578060464012722 ], [ -82.857386155541604, 41.57866554081636 ], [ -82.856840603090149, 41.579068925352118 ], [ -82.854385617058639, 41.581892617102426 ], [ -82.853021735930014, 41.58330446297758 ], [ -82.84756621141554, 41.58572477019213 ], [ -82.834200176355068, 41.587540000603042 ], [ -82.820288588843155, 41.570597850101208 ], [ -82.794374847399382, 41.546394777955726 ], [ -82.785373231950501, 41.540747394455124 ], [ -82.772007196890016, 41.540545702187245 ], [ -82.749912322606377, 41.546394777955726 ], [ -82.739819602254599, 41.544982932080579 ], [ -82.733000196611499, 41.543974470741183 ], [ -82.731909091708602, 41.543974470741183 ], [ -82.731636315482888, 41.543974470741183 ], [ -82.730545210579976, 41.543772778473304 ], [ -82.728363000774195, 41.543369393937546 ], [ -82.727544672097025, 41.543369393937546 ], [ -82.722089147582551, 41.542562624866029 ], [ -82.720452490228197, 41.54236093259815 ], [ -82.717997504196688, 41.541957548062392 ], [ -82.71772472797096, 41.541755855794513 ], [ -82.715269741939437, 41.539940625383608 ], [ -82.711450874779302, 41.536915241365421 ], [ -82.710905322327861, 41.536713549097541 ], [ -82.710905322327861, 41.536310164561783 ], [ -82.71172365100503, 41.527234012507229 ], [ -82.716360846842349, 41.522191705810258 ], [ -82.721816371356823, 41.516746014577521 ], [ -82.719906937776756, 41.510695246541154 ], [ -82.719906937776756, 41.510291862005396 ], [ -82.713905860810826, 41.5016190944866 ], [ -82.710086993650691, 41.497585249129017 ], [ -82.694811525010152, 41.4939547883072 ], [ -82.687992119367053, 41.492341250164174 ], [ -82.658259510763145, 41.461885717714445 ], [ -82.617615853130275, 41.431833569800482 ], [ -82.617070300678833, 41.428404801246543 ], [ -82.558150635922459, 41.399966191475606 ], [ -82.513960887355196, 41.384234194581047 ], [ -82.499230971166099, 41.381612195098619 ], [ -82.481227740268324, 41.38141050283074 ], [ -82.460496747113297, 41.386251117259832 ], [ -82.431309690960845, 41.396940807457419 ], [ -82.39803099142253, 41.413882957959252 ], [ -82.361751753401251, 41.426589570835631 ], [ -82.348112942115051, 41.428404801246543 ], [ -82.334201354603124, 41.430220031657448 ], [ -82.291648263390201, 41.428404801246543 ], [ -82.28346497661849, 41.429211570318053 ], [ -82.268462284203679, 41.430825108461086 ], [ -82.254550696691751, 41.434455569282903 ], [ -82.193448822129596, 41.464507717196874 ], [ -82.188811626292278, 41.468138178018691 ], [ -82.186083864035055, 41.473382176983549 ], [ -82.184719982906429, 41.473987253787186 ], [ -82.181719444423464, 41.471566946572636 ], [ -82.165352870880028, 41.474390638322944 ], [ -82.094158275966095, 41.494963249646595 ], [ -82.012052632023199, 41.515737553238125 ], [ -81.994594953576865, 41.51452739963085 ], [ -81.968135659681636, 41.506459708915699 ], [ -81.964862344972943, 41.505451247576303 ], [ -81.962680135167162, 41.501417402218721 ], [ -81.958588491781299, 41.498593710468413 ], [ -81.937857498626286, 41.491534481092657 ], [ -81.930492540531731, 41.490526019753261 ], [ -81.928583106951663, 41.490324327485382 ], [ -81.877301176515573, 41.483466790377491 ], [ -81.860389050520695, 41.48387017491325 ], [ -81.850023553943174, 41.486290482127799 ], [ -81.837203071334159, 41.489315866145986 ], [ -81.836111966431261, 41.489517558413866 ], [ -81.811016553664672, 41.495568326450233 ], [ -81.810743777438944, 41.495568326450233 ], [ -81.801196609538607, 41.49617340325387 ], [ -81.800378280861423, 41.496375095521749 ], [ -81.799832728409982, 41.496375095521749 ], [ -81.794377203895507, 41.496576787789628 ], [ -81.79410442766978, 41.496576787789628 ], [ -81.782375049963662, 41.495971710985991 ], [ -81.76900901490319, 41.491736173360536 ], [ -81.768736238677462, 41.491736173360536 ], [ -81.762462385485804, 41.490526019753261 ], [ -81.75864351832567, 41.489719250681745 ], [ -81.746095811942368, 41.487500635735074 ], [ -81.745823035716654, 41.487298943467195 ], [ -81.744731930813742, 41.487097251199316 ], [ -81.744186378362301, 41.487298943467195 ], [ -81.741731392330792, 41.487904020270832 ], [ -81.738730853847827, 41.48850909707447 ], [ -81.732729776881897, 41.491534481092657 ], [ -81.727819804818864, 41.49375309603932 ], [ -81.726455923690253, 41.494358172842958 ], [ -81.725637595013069, 41.494761557378716 ], [ -81.719363741821425, 41.497786941396896 ], [ -81.716908755789916, 41.498997095004171 ], [ -81.71554487466129, 41.499602171807808 ], [ -81.710907678823986, 41.501820786754479 ], [ -81.710907678823986, 41.501820786754479 ], [ -81.707634364115307, 41.505047863040545 ], [ -81.706816035438123, 41.505854632112062 ], [ -81.693177224151924, 41.514124015095092 ], [ -81.691267790571857, 41.515334168702367 ], [ -81.687994475863178, 41.517351091381158 ], [ -81.664808496676642, 41.531469550132684 ], [ -81.664808496676642, 41.531469550132684 ], [ -81.649805804261831, 41.535705087758146 ], [ -81.64844192313322, 41.536108472293904 ], [ -81.641076965038664, 41.538327087240575 ], [ -81.633712006944108, 41.540545702187245 ], [ -81.627438153752465, 41.544176163009062 ], [ -81.61679988094923, 41.550428623313309 ], [ -81.616527104723502, 41.550630315581188 ], [ -81.615708776046347, 41.551033700116946 ], [ -81.610253251531859, 41.554462468670891 ], [ -81.609707699080417, 41.554664160938771 ], [ -81.599614978728624, 41.560714928975138 ], [ -81.593068349311253, 41.56555554340423 ], [ -81.593068349311253, 41.56555554340423 ], [ -81.591977244408355, 41.566362312475746 ], [ -81.591431691956913, 41.566765697011505 ], [ -81.579702314250781, 41.575236772262421 ], [ -81.579702314250781, 41.575236772262421 ], [ -81.579702314250781, 41.575236772262421 ], [ -81.579156761799339, 41.57564015679818 ], [ -81.578611209347883, 41.576043541333938 ], [ -81.577520104445, 41.576850310405455 ], [ -81.575610670864933, 41.578262156280601 ], [ -81.575610670864933, 41.578262156280601 ], [ -81.562790188255903, 41.587540000603042 ], [ -81.531693698523384, 41.612953226355785 ], [ -81.531693698523384, 41.612953226355785 ], [ -81.53005704116903, 41.614365072230939 ], [ -81.529784264943302, 41.614566764498818 ], [ -81.527056502686065, 41.615373533570335 ], [ -81.520782649494407, 41.617390456249126 ], [ -81.509326048014003, 41.620819224803071 ], [ -81.500324432565122, 41.623441224285493 ], [ -81.48859505485899, 41.631307222732772 ], [ -81.486958397504651, 41.632719068607926 ], [ -81.477411229604314, 41.640181682519447 ], [ -81.46595462812391, 41.649056142306122 ], [ -81.452588593063439, 41.663174601057648 ], [ -81.447678621000406, 41.668015215486747 ], [ -81.443586977614558, 41.672250753112202 ], [ -81.442768648937374, 41.673057522183719 ], [ -81.442768648937374, 41.673259214451598 ], [ -81.442768648937374, 41.673259214451598 ], [ -81.442495872711646, 41.673259214451598 ], [ -81.441677544034491, 41.673864291255228 ], [ -81.441404767808763, 41.674065983523107 ], [ -81.438949781777239, 41.675477829398261 ], [ -81.437858676874356, 41.676284598469778 ], [ -81.437040348197172, 41.676687983005536 ], [ -81.435676467068561, 41.677696444344932 ], [ -81.43131204745697, 41.68031844382736 ], [ -81.413036040333466, 41.691814903096457 ], [ -81.407853292044706, 41.695041979382523 ], [ -81.406216634690367, 41.696252132989798 ], [ -81.404579977336027, 41.697260594329194 ], [ -81.402397767530232, 41.698470747936469 ], [ -81.400761110175893, 41.699680901543744 ], [ -81.400488333950165, 41.699680901543744 ], [ -81.388758956244033, 41.707143515455257 ], [ -81.388213403792591, 41.707345207723137 ], [ -81.380848445698049, 41.711580745348598 ], [ -81.374574592506406, 41.715412898438302 ], [ -81.374574592506406, 41.715412898438302 ], [ -81.373756263829222, 41.71581628297406 ], [ -81.372665158926338, 41.716421359777698 ], [ -81.368846291766204, 41.718639974724361 ], [ -81.368573515540476, 41.71884166699224 ], [ -81.367482410637578, 41.719446743795878 ], [ -81.353298046899937, 41.727716126778915 ], [ -81.330112067713401, 41.738002432440737 ], [ -81.309381074558388, 41.747078584495299 ], [ -81.306926088526865, 41.748087045834694 ], [ -81.306380536075409, 41.748490430370452 ], [ -81.301743340238119, 41.750507353049237 ], [ -81.288922857629089, 41.758978428300153 ], [ -81.287013424049022, 41.760188581907428 ], [ -81.279921242180194, 41.759986889639549 ], [ -81.279102913503024, 41.75978519737167 ], [ -81.265464102216839, 41.758373351496516 ], [ -81.264100221088214, 41.758171659228637 ], [ -81.263827444862486, 41.758171659228637 ], [ -81.263009116185316, 41.758373351496516 ], [ -81.259463025250909, 41.759180120568033 ], [ -81.255644158090774, 41.759986889639549 ], [ -81.252916395833523, 41.760390274175307 ], [ -81.25182529093064, 41.760591966443187 ], [ -81.248551976221947, 41.761197043246824 ], [ -81.248551976221947, 41.761398735514703 ], [ -81.247733647544777, 41.761600427782582 ], [ -81.247733647544777, 41.761802120050461 ], [ -81.202452794074617, 41.779551039623811 ], [ -81.201634465397433, 41.779752731891691 ], [ -81.192632849948552, 41.783383192713508 ], [ -81.184449563176827, 41.786610268999567 ], [ -81.183358458273929, 41.787215345803205 ], [ -81.167537437181949, 41.793871190643216 ], [ -81.122256583711774, 41.813435340627478 ], [ -81.112982192037165, 41.817670878252933 ], [ -81.098797828299524, 41.821301339074751 ], [ -81.095524513590831, 41.822309800414146 ], [ -81.092796751333594, 41.822914877217784 ], [ -81.051880317474996, 41.839655335451738 ], [ -81.024602694902612, 41.846512872559622 ], [ -81.010418331164971, 41.853975486471143 ], [ -81.002780596844701, 41.854782255542659 ], [ -81.002235044393245, 41.854983947810538 ], [ -80.991869547815753, 41.855992409149934 ], [ -80.973593540692235, 41.858211024096605 ], [ -80.971138554660726, 41.858412716364484 ], [ -80.958590848277424, 41.859824562239638 ], [ -80.936223197768072, 41.862446561722059 ], [ -80.916583309515943, 41.865875330275998 ], [ -80.900216735972506, 41.868900714294185 ], [ -80.85357200137372, 41.884632711188743 ], [ -80.851935344019381, 41.885237787992381 ], [ -80.826839931252778, 41.893708863243305 ], [ -80.819202196932508, 41.896330862725726 ], [ -80.816474434675257, 41.897137631797243 ], [ -80.814837777320918, 41.89774270860088 ], [ -80.813201119966578, 41.898751169940269 ], [ -80.812655567515122, 41.899154554476027 ], [ -80.808563924129274, 41.901574861690577 ], [ -80.808018371677832, 41.902381630762093 ], [ -80.806108938097765, 41.904196861173006 ], [ -80.801471742260446, 41.909037475602105 ], [ -80.800926189809005, 41.909642552405742 ], [ -80.799835084906107, 41.909844244673621 ], [ -80.798198427551768, 41.909844244673621 ], [ -80.794379560391633, 41.910449321477252 ], [ -80.786469049845635, 41.911256090548768 ], [ -80.785377944942738, 41.911457782816647 ], [ -80.784559616265568, 41.911457782816647 ], [ -80.782922958911229, 41.908230706530588 ], [ -80.782104630234045, 41.906617168387555 ], [ -80.781013525331161, 41.906818860655434 ], [ -80.777194658171027, 41.908029014262709 ], [ -80.771739133656553, 41.909440860137863 ], [ -80.770648028753641, 41.909844244673621 ], [ -80.767920266496418, 41.910449321477252 ], [ -80.766010832916351, 41.911054398280889 ], [ -80.762191965756216, 41.912264551888164 ], [ -80.757827546144625, 41.91327301322756 ], [ -80.727549385089276, 41.91851701219241 ], [ -80.720729979446162, 41.919727165799685 ], [ -80.717456664737483, 41.920735627139081 ], [ -80.712273916448737, 41.922147473014235 ], [ -80.708182273062874, 41.92315593435363 ], [ -80.699453433839707, 41.92557624156818 ], [ -80.693452356873777, 41.927189779711206 ], [ -80.635623797020315, 41.942921776605765 ], [ -80.619529999702593, 41.947359006499099 ], [ -80.619257223476865, 41.947359006499099 ], [ -80.608618950673645, 41.950384390517286 ], [ -80.581886880552702, 41.957645312160935 ], [ -80.579431894521178, 41.958452081232444 ], [ -80.576704132263941, 41.95946054257184 ], [ -80.576704132263941, 41.95946054257184 ], [ -80.575613027361044, 41.959863927107598 ], [ -80.572066936426637, 41.961275772982752 ], [ -80.56333809720347, 41.964301157000932 ], [ -80.560610334946233, 41.965309618340328 ], [ -80.555973139108929, 41.96712484875124 ], [ -80.553790929303133, 41.967729925554877 ], [ -80.53387826482529, 41.973377309055493 ], [ -80.531423278793767, 41.974184078127003 ], [ -80.530059397665156, 41.974587462662761 ], [ -80.529241068987972, 41.97478915493064 ], [ -80.525422201827837, 41.975797616270036 ], [ -80.522148887119158, 41.976806077609432 ], [ -80.519421124861921, 41.977612846680948 ], [ -80.519421124861921, 41.977612846680948 ], [ -80.519421124861921, 41.977612846680948 ], [ -80.519421124861921, 41.976201000805794 ], [ -80.519421124861921, 41.94393023794516 ], [ -80.519421124861921, 41.929206702389997 ], [ -80.519421124861921, 41.849538256577809 ], [ -80.519148348636207, 41.765230888604407 ], [ -80.519421124861921, 41.752524275728028 ], [ -80.519421124861921, 41.739414278315891 ], [ -80.519421124861921, 41.701496131954656 ], [ -80.519421124861921, 41.671242291772806 ], [ -80.519421124861921, 41.669830445897652 ], [ -80.519421124861921, 41.53933554857997 ], [ -80.519148348636207, 41.528847550650262 ], [ -80.519148348636207, 41.500005556343567 ], [ -80.519148348636207, 41.488912481610228 ], [ -80.519148348636207, 41.462490794518082 ], [ -80.518875572410479, 41.435464030622299 ], [ -80.518875572410479, 41.416504957441681 ], [ -80.519148348636207, 41.416504957441681 ], [ -80.519148348636207, 41.378990195616197 ], [ -80.519148348636207, 41.371930966240427 ], [ -80.519148348636207, 41.361039583774968 ], [ -80.519421124861921, 41.350753278113139 ], [ -80.519421124861921, 41.340668664719189 ], [ -80.519421124861921, 41.340063587915552 ], [ -80.519421124861921, 41.339660203379793 ], [ -80.519421124861921, 41.339055126576156 ], [ -80.519421124861921, 41.339055126576156 ], [ -80.519148348636207, 41.337239896165244 ], [ -80.519148348636207, 41.337239896165244 ], [ -80.519148348636207, 41.336029742557976 ], [ -80.519148348636207, 41.333407743075547 ], [ -80.519148348636207, 41.312431747216138 ], [ -80.518875572410479, 41.305574210108247 ], [ -80.518875572410479, 41.268261140550649 ], [ -80.518875572410479, 41.26805944828277 ], [ -80.518875572410479, 41.265235756532462 ], [ -80.518602796184751, 41.248898682834266 ], [ -80.518875572410479, 41.23256160913607 ], [ -80.518875572410479, 41.21945161172394 ], [ -80.518875572410479, 41.21945161172394 ], [ -80.518875572410479, 41.209165306062104 ], [ -80.519148348636207, 41.171247159700869 ], [ -80.519148348636207, 41.145430549412353 ], [ -80.519148348636207, 41.133329013339619 ], [ -80.519148348636207, 41.133329013339619 ], [ -80.519148348636207, 41.125059630356581 ], [ -80.519148348636207, 41.125059630356581 ], [ -80.519148348636207, 41.125059630356581 ], [ -80.519148348636207, 41.125059630356581 ], [ -80.518875572410479, 41.115983478302027 ], [ -80.519148348636207, 41.105293788104447 ], [ -80.519148348636207, 41.100856558211106 ], [ -80.519148348636207, 41.090570252549284 ], [ -80.519148348636207, 41.08209917729836 ], [ -80.518875572410479, 41.075039947922605 ], [ -80.518875572410479, 41.071812871636538 ], [ -80.518875572410479, 41.071006102565022 ], [ -80.518875572410479, 41.06152656597471 ], [ -80.518875572410479, 41.015339036630429 ], [ -80.518875572410479, 40.995371502110416 ], [ -80.518875572410479, 40.98730381139525 ], [ -80.519148348636207, 40.92114874753095 ], [ -80.519693901087635, 40.900777828475178 ], [ -80.519693901087635, 40.899769367135782 ], [ -80.519148348636207, 40.851363222844839 ], [ -80.519148348636207, 40.850153069237564 ], [ -80.519148348636207, 40.849144607898168 ], [ -80.518875572410479, 40.801141848142976 ], [ -80.519148348636207, 40.792267388356294 ], [ -80.518875572410479, 40.638779572500411 ], [ -80.560610334946233, 40.62365265240949 ], [ -80.588979062421515, 40.620223883855544 ], [ -80.594161810710276, 40.62365265240949 ], [ -80.601526768804817, 40.625467882820402 ], [ -80.627167734022862, 40.620022191587665 ], [ -80.63425991589169, 40.616190038497962 ], [ -80.665901958075665, 40.587751428727032 ], [ -80.66808416788146, 40.582507429762181 ], [ -80.666993062978563, 40.573632969975506 ], [ -80.610255608027984, 40.49093914014513 ], [ -80.599071782773308, 40.482468064894221 ], [ -80.612165041608051, 40.434868689674779 ], [ -80.617347789896797, 40.395942081974141 ], [ -80.619257223476865, 40.381823623222616 ], [ -80.609437279350814, 40.360444242827441 ], [ -80.599890111450478, 40.317685482037106 ], [ -80.602890649933443, 40.306995791839519 ], [ -80.616802237445356, 40.280170720211615 ], [ -80.637260454374655, 40.25516087899463 ], [ -80.644625412469196, 40.251328725904926 ], [ -80.651990370563738, 40.244874573332801 ], [ -80.685269070102066, 40.187593969255175 ], [ -80.702999524774114, 40.157138436805454 ], [ -80.705454510805623, 40.153104591447871 ], [ -80.726458280186364, 40.089168142530241 ], [ -80.73300490960375, 40.058712610080519 ], [ -80.730822699797955, 40.049233073490214 ], [ -80.73136825224941, 40.037534921953231 ], [ -80.732186580926566, 40.033299384327776 ], [ -80.740097091472563, 39.970774781285293 ], [ -80.743097629955543, 39.969161243142267 ], [ -80.759464203498965, 39.958269860676793 ], [ -80.806108938097765, 39.917124638029492 ], [ -80.808836700354988, 39.912485715868272 ], [ -80.809655029032172, 39.905628178760388 ], [ -80.806108938097765, 39.89735879577735 ], [ -80.812382791289409, 39.848750959218521 ], [ -80.828749364832845, 39.72087806138326 ], [ -80.829840469735728, 39.711801909328713 ], [ -80.831749903315796, 39.705751141292339 ], [ -80.880304071494663, 39.620637004247421 ], [ -80.892306225426523, 39.616804851157717 ], [ -80.943860932088342, 39.606921930031646 ], [ -81.019965499065307, 39.555490401722516 ], [ -81.038787058640253, 39.540363481631594 ], [ -81.063609695181128, 39.520597639379453 ], [ -81.127712108226262, 39.46493057344486 ], [ -81.21554605290936, 39.388690896186617 ], [ -81.223456563455358, 39.386068896704188 ], [ -81.249097528673389, 39.389901049793892 ], [ -81.270646850505585, 39.385867204436309 ], [ -81.295469487046461, 39.375379206506608 ], [ -81.347569746159735, 39.345730443128396 ], [ -81.356844137834344, 39.343108443645974 ], [ -81.371301277797713, 39.342099982306578 ], [ -81.375938473635017, 39.34169659777082 ], [ -81.384667312858184, 39.343511828181732 ], [ -81.393668928307079, 39.351781211164763 ], [ -81.406762187141823, 39.388085819382979 ], [ -81.412763264107753, 39.394539971955105 ], [ -81.435676467068561, 39.408456738438751 ], [ -81.446587516097509, 39.410473661117543 ], [ -81.456134683997846, 39.409263507510268 ], [ -81.467864061703978, 39.403817816277538 ], [ -81.542331971326604, 39.352789672504159 ], [ -81.605888831920282, 39.275944918442278 ], [ -81.695632210183447, 39.242867386510127 ], [ -81.72154595162722, 39.212411854060406 ], [ -81.740094734976452, 39.190629089129473 ], [ -81.749914679102503, 39.186393551504018 ], [ -81.749641902876789, 39.180746168003409 ], [ -81.747186916845266, 39.095430338690605 ], [ -81.747186916845266, 39.095430338690605 ], [ -81.812380434793283, 39.082118649010596 ], [ -81.814289868373351, 39.0734458814918 ], [ -81.811562106116114, 39.059529115008147 ], [ -81.803378819344402, 39.047629271203292 ], [ -81.79328609899261, 39.04036834955965 ], [ -81.772827882063325, 39.026249890808124 ], [ -81.764371819065872, 39.015358508342658 ], [ -81.756188532294146, 38.933471447583798 ], [ -81.760007399454281, 38.925807141404405 ], [ -81.87484619048405, 38.881233150203151 ], [ -81.908670442473834, 38.87840945845285 ], [ -81.926946449597324, 38.89151945586498 ], [ -81.928310330725949, 38.895351608954677 ], [ -81.926673673371596, 38.901402376991044 ], [ -81.901032708153565, 38.924395295529251 ], [ -81.898577722122042, 38.929639294494102 ], [ -81.900487155702109, 38.93770698520926 ], [ -81.91985426772851, 38.96856590219474 ], [ -81.935675288820491, 38.989541898054156 ], [ -82.002232687897134, 39.02786342895115 ], [ -82.017508156537673, 39.030082043897821 ], [ -82.03605693988689, 39.025443121736608 ], [ -82.041512464401364, 39.017778815557207 ], [ -82.045604107787227, 39.003862049073561 ], [ -82.051605184753157, 38.994382512483249 ], [ -82.093067171063183, 38.97098620940929 ], [ -82.098795471803385, 38.958279596532918 ], [ -82.139166353210527, 38.866307922380109 ], [ -82.184447206680701, 38.816489932214004 ], [ -82.191266612323801, 38.81507808633885 ], [ -82.215816472638949, 38.797530859033387 ], [ -82.221544773379151, 38.787244553371551 ], [ -82.220453668476267, 38.773731171423663 ], [ -82.198904346644071, 38.757797482261225 ], [ -82.188266073840836, 38.733997794651515 ], [ -82.182537773100634, 38.708786261166637 ], [ -82.172172276523128, 38.625890739068389 ], [ -82.172172276523128, 38.619234894228384 ], [ -82.175172815006093, 38.608545204030797 ], [ -82.177355024811874, 38.603704589601705 ], [ -82.181992220649192, 38.599469051976243 ], [ -82.193721598355324, 38.593014899404118 ], [ -82.219089787347642, 38.591603053528964 ], [ -82.246094633694312, 38.598460590636847 ], [ -82.262188431012021, 38.598258898368968 ], [ -82.274190584943881, 38.593619976207755 ], [ -82.287011067552896, 38.582526901474409 ], [ -82.291375487164487, 38.578896440652585 ], [ -82.293830473195996, 38.572643980348346 ], [ -82.293284920744554, 38.560340752007725 ], [ -82.295467130550335, 38.539768140684075 ], [ -82.314015913899567, 38.468167385587037 ], [ -82.320289767091211, 38.45445231137127 ], [ -82.324108634251346, 38.449208312406419 ], [ -82.330382487442989, 38.444569390245206 ], [ -82.34074798402051, 38.440938929423382 ], [ -82.506595929260641, 38.410080012437902 ], [ -82.52023474054684, 38.407659705223352 ], [ -82.560605621953982, 38.404432628937286 ], [ -82.593611545266583, 38.421778163974878 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "45", "geo_id": "0400000US41", "fips_state": "41", "name": "Oregon", "iso_3166_2": "OR", "census": 3831074, "pop_estimataes_base": 3831073, "pop_2010": 3837083, "pop_2011": 3867644, "pop_2012": 3898684, "pop_2013": 3928068, "pop_2014": 3970239 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.915952923204017, 45.995322822829834 ], [ -116.875036489345433, 45.942277756377663 ], [ -116.866580426347994, 45.91686453062492 ], [ -116.857306034673385, 45.904157917748542 ], [ -116.796476936336944, 45.853734850778807 ], [ -116.789111978242403, 45.847684082742433 ], [ -116.63335675335405, 45.784756095164198 ], [ -116.594076976849806, 45.779108711663582 ], [ -116.547977794702462, 45.752283640035685 ], [ -116.535702864544888, 45.734131335926577 ], [ -116.537885074350669, 45.714970570478073 ], [ -116.53543008831916, 45.691775959672 ], [ -116.528337906450332, 45.681489654010171 ], [ -116.510880228004012, 45.668177964330155 ], [ -116.489058129946102, 45.651235813828322 ], [ -116.471600451499768, 45.628444587558008 ], [ -116.463417164728043, 45.615737974681629 ], [ -116.46368994095377, 45.602829669537371 ], [ -116.481147619400105, 45.580643520070694 ], [ -116.553433319216936, 45.499159843847593 ], [ -116.673727634761178, 45.321468955846228 ], [ -116.691185313207512, 45.269230658465574 ], [ -116.696095285270545, 45.25470881517829 ], [ -116.709461320331016, 45.203075594601273 ], [ -116.729646761034587, 45.14216452970183 ], [ -116.783929229953642, 45.079034849855717 ], [ -116.845303880741525, 45.017115323616878 ], [ -116.858397139576283, 44.977987023648353 ], [ -116.850759405256014, 44.95801948912834 ], [ -116.844758328290084, 44.949346721609544 ], [ -116.835756712841189, 44.940673954090755 ], [ -116.831937845681054, 44.933009647911348 ], [ -116.852396062610353, 44.887628887638584 ], [ -116.89140306288887, 44.840432896954908 ], [ -116.931501168070284, 44.792228444931837 ], [ -117.016334574270417, 44.755520452177862 ], [ -117.038156672328341, 44.748259530534227 ], [ -117.044157749294257, 44.74523414651604 ], [ -117.062160980192047, 44.727081842406932 ], [ -117.095985232181803, 44.664758931632335 ], [ -117.115897896659646, 44.623412016717147 ], [ -117.144266624134943, 44.545558801315863 ], [ -117.149176596197975, 44.536079264725558 ], [ -117.156541554292517, 44.528213266278271 ], [ -117.208369037180063, 44.485857890023695 ], [ -117.214915666597435, 44.46689881684307 ], [ -117.189820253830831, 44.33660561179326 ], [ -117.191456911185185, 44.329546382417504 ], [ -117.194730225893863, 44.31058730923688 ], [ -117.196639659473931, 44.302317926253842 ], [ -117.1974579881511, 44.297275619556871 ], [ -117.197730764376828, 44.295863773681717 ], [ -117.196639659473931, 44.287594390698672 ], [ -117.190093030056559, 44.273879316482905 ], [ -117.17045314180443, 44.258954088659863 ], [ -117.041157210811306, 44.243625476301062 ], [ -117.033246700265309, 44.248264398462283 ], [ -117.027518399525107, 44.24886947526592 ], [ -116.986874741892237, 44.245440706711975 ], [ -116.975963692863289, 44.242818707229546 ], [ -116.902859664369274, 44.179487335115553 ], [ -116.895767482500446, 44.171217952132515 ], [ -116.894130825146107, 44.16012487739917 ], [ -116.896040258726174, 44.154275801630689 ], [ -116.897131363629072, 44.152460571219777 ], [ -116.931773944296012, 44.102440888785793 ], [ -116.935320035230419, 43.988686449702058 ], [ -116.96150655289992, 43.918295848212303 ], [ -116.979237007571967, 43.879974317315302 ], [ -116.98251032228066, 43.872713395671653 ], [ -116.996421909792574, 43.864645704956502 ], [ -117.026700070847937, 43.808171869950385 ], [ -117.026700070847937, 43.733949115370933 ], [ -117.026972847073651, 43.732940654031538 ], [ -117.026700070847937, 43.714788349922429 ], [ -117.026700070847937, 43.706115582403633 ], [ -117.026700070847937, 43.682920971597554 ], [ -117.026700070847937, 43.680904048918762 ], [ -117.026700070847937, 43.675458357686033 ], [ -117.026700070847937, 43.664365282952687 ], [ -117.026700070847937, 43.631691135556295 ], [ -117.026972847073651, 43.624833598448419 ], [ -117.026972847073651, 43.621001445358715 ], [ -117.026972847073651, 43.61757267680477 ], [ -117.026700070847937, 43.610715139696886 ], [ -117.026700070847937, 43.601840679910211 ], [ -117.026700070847937, 43.600428834035057 ], [ -117.026972847073651, 43.595991604141723 ], [ -117.026972847073651, 43.59357129692718 ], [ -117.026700070847937, 43.578646069104131 ], [ -117.026700070847937, 43.577435915496864 ], [ -117.026700070847937, 43.025202486044265 ], [ -117.026700070847937, 43.024799101508506 ], [ -117.026154518396481, 42.807374836734994 ], [ -117.026427294622209, 42.807173144467114 ], [ -117.026427294622209, 42.806971452199235 ], [ -117.026154518396481, 42.00020238068339 ], [ -118.197182855429261, 41.996975304397324 ], [ -118.775741230189681, 41.992739766771869 ], [ -118.777105111318306, 41.992739766771869 ], [ -119.324294220120478, 41.994353304914895 ], [ -119.36030068191603, 41.994353304914895 ], [ -119.790196013656924, 41.997580381200962 ], [ -119.986594896178147, 41.995765150790049 ], [ -119.999142602561449, 41.994554997182775 ], [ -120.286375968248734, 41.993143151307628 ], [ -120.325928520978692, 41.993143151307628 ], [ -120.692266992125909, 41.993748228111265 ], [ -120.693903649480262, 41.993748228111265 ], [ -120.879391482972522, 41.993748228111265 ], [ -121.035146707860875, 41.993344843575507 ], [ -121.154349918502234, 41.996370227593687 ], [ -121.334382227480006, 41.996571919861566 ], [ -121.335746108608632, 41.996571919861566 ], [ -121.340383304445936, 41.996168535325808 ], [ -121.360295968923779, 41.996773612129445 ], [ -121.376116990015774, 41.996975304397324 ], [ -121.435036654772134, 41.996975304397324 ], [ -121.439673850609438, 41.997176996665203 ], [ -121.447584361155435, 41.997176996665203 ], [ -121.520142837197994, 41.99798376573672 ], [ -121.580971935534436, 41.998588842540357 ], [ -121.675352509634905, 42.00040407295127 ], [ -121.689264097146832, 42.000605765219149 ], [ -121.705085118238813, 42.000807457487028 ], [ -121.708085656721778, 42.000807457487028 ], [ -122.001047323149265, 42.004034533773094 ], [ -122.155438666909006, 42.007463302327032 ], [ -122.15652977181189, 42.007463302327032 ], [ -122.160348638972025, 42.007664994594911 ], [ -122.161439743874922, 42.007664994594911 ], [ -122.289644569965162, 42.007664994594911 ], [ -122.289644569965162, 42.007664994594911 ], [ -122.378296843325444, 42.009480225005824 ], [ -122.501046144901196, 42.008471763666428 ], [ -122.634706495505924, 42.004841302844611 ], [ -123.00104496665314, 42.003026072433698 ], [ -123.045234715220417, 42.003026072433698 ], [ -123.154890757961425, 42.00806837913067 ], [ -123.230722548712677, 42.003832841505215 ], [ -123.230722548712677, 42.003832841505215 ], [ -123.347470773322513, 41.999193919343995 ], [ -123.498861578599289, 42.000605765219149 ], [ -123.498861578599289, 42.00040407295127 ], [ -123.501862117082254, 42.000605765219149 ], [ -123.517955914399963, 42.00040407295127 ], [ -123.624611418658006, 41.999798996147632 ], [ -123.821555853630684, 41.99556345852217 ], [ -124.086694345034331, 41.996773612129445 ], [ -124.087785449937215, 41.996975304397324 ], [ -124.100333156320517, 41.996773612129445 ], [ -124.100878708771972, 41.996975304397324 ], [ -124.211625856415878, 41.998387150272478 ], [ -124.214080842447387, 42.005849764184006 ], [ -124.270545521172238, 42.045583140956154 ], [ -124.28745764716713, 42.045986525491912 ], [ -124.299732577324704, 42.051835601260407 ], [ -124.314189717288073, 42.067769290422845 ], [ -124.340921787409016, 42.092980823907709 ], [ -124.356197256049555, 42.114965281106521 ], [ -124.357015584726724, 42.117990665124708 ], [ -124.35156006021225, 42.129890508929563 ], [ -124.351832836437964, 42.134932815626534 ], [ -124.355651703598099, 42.141992045002297 ], [ -124.361652780564029, 42.143807275413209 ], [ -124.366017200175619, 42.152278350664126 ], [ -124.366835528852789, 42.158530810968372 ], [ -124.363289437918382, 42.158530810968372 ], [ -124.360288899435417, 42.162362964058076 ], [ -124.361107228112587, 42.180716960435063 ], [ -124.367653857529959, 42.188381266614456 ], [ -124.373109382044433, 42.190196497025369 ], [ -124.3750188156245, 42.193221881043556 ], [ -124.376109920527398, 42.196448957329622 ], [ -124.375564368075956, 42.208752185670235 ], [ -124.377746577881737, 42.218836799064178 ], [ -124.383747654847667, 42.227106182047223 ], [ -124.411025277420066, 42.250502485121181 ], [ -124.411570829871508, 42.254132945942999 ], [ -124.408570291388543, 42.260587098515131 ], [ -124.405024200454136, 42.278134325820602 ], [ -124.41047972496861, 42.307379704663049 ], [ -124.42930128454357, 42.331784469076396 ], [ -124.427119074737774, 42.334809853094583 ], [ -124.425482417383435, 42.351953695864296 ], [ -124.424118536254809, 42.377165229349167 ], [ -124.424936864931979, 42.395519225726147 ], [ -124.427937403414944, 42.420327374675267 ], [ -124.434756809058044, 42.434849217962551 ], [ -124.435029585283772, 42.440093216927401 ], [ -124.421936326449014, 42.46127090505469 ], [ -124.423027431351912, 42.47901982462804 ], [ -124.421390773997572, 42.491726437504411 ], [ -124.399023123488206, 42.539930889527483 ], [ -124.390567060490767, 42.566554268887515 ], [ -124.390021508039325, 42.574823651870545 ], [ -124.400932557068273, 42.597614878140874 ], [ -124.399295899713934, 42.617985797196646 ], [ -124.401205333294001, 42.627263641519079 ], [ -124.413207487225847, 42.65792086623668 ], [ -124.416753578160268, 42.661551327058504 ], [ -124.450850606375752, 42.675871478077909 ], [ -124.451396158827194, 42.677686708488821 ], [ -124.447577291667059, 42.684745937864577 ], [ -124.448395620344243, 42.689989936829434 ], [ -124.47376380933656, 42.732748697619769 ], [ -124.491767040234336, 42.74182484967433 ], [ -124.498586445877436, 42.741018080602814 ], [ -124.499131998328892, 42.738597773388264 ], [ -124.51004304735784, 42.73476562029856 ], [ -124.513316362066533, 42.73496731256644 ], [ -124.514680243195144, 42.736782542977352 ], [ -124.516316900549498, 42.753724693479185 ], [ -124.524500187321209, 42.789827609429523 ], [ -124.535956788801613, 42.81423237384287 ], [ -124.544140075573338, 42.822905141361673 ], [ -124.552323362345049, 42.840654060935016 ], [ -124.500223103231775, 42.917498814996904 ], [ -124.480855991205388, 42.95158480826845 ], [ -124.479219333851034, 42.955013576822388 ], [ -124.462579984081884, 42.991519877308477 ], [ -124.456851683341682, 43.000394337095159 ], [ -124.436120690186655, 43.071390015388545 ], [ -124.432301823026521, 43.097408317944932 ], [ -124.434484032832316, 43.115964006589799 ], [ -124.424118536254809, 43.126855389055265 ], [ -124.401750885745443, 43.1849427622044 ], [ -124.395204256328071, 43.211162757028667 ], [ -124.395477032553799, 43.223869369905046 ], [ -124.382383773719056, 43.270258591517205 ], [ -124.388930403136428, 43.290427818305098 ], [ -124.394113151425174, 43.299302278091773 ], [ -124.400387004616832, 43.302125969842081 ], [ -124.402841990648341, 43.305958122931777 ], [ -124.387566522007802, 43.325925657451791 ], [ -124.373109382044433, 43.339035654863928 ], [ -124.35319671756659, 43.342666115685745 ], [ -124.341467339860458, 43.351338883204548 ], [ -124.315008045965243, 43.388450260494274 ], [ -124.286912094715674, 43.436251327981587 ], [ -124.255542828757427, 43.502204699578002 ], [ -124.233447954473789, 43.557064996441085 ], [ -124.21899081451042, 43.610311755161128 ], [ -124.202897017192711, 43.667794051506633 ], [ -124.204806450772779, 43.674046511810879 ], [ -124.198259821355407, 43.689576816437565 ], [ -124.193349849292375, 43.706115582403633 ], [ -124.168527212751499, 43.808978639021902 ], [ -124.158707268625434, 43.863435551349227 ], [ -124.150251205627995, 43.910833234300782 ], [ -124.142613471307726, 43.958230917252337 ], [ -124.133611855858845, 44.035882440385734 ], [ -124.122428030604155, 44.104457811464584 ], [ -124.125701345312848, 44.126038884127631 ], [ -124.116972506089681, 44.171823028936153 ], [ -124.114517520058158, 44.198244716028299 ], [ -124.115608624961055, 44.206514099011336 ], [ -124.110971429123751, 44.235154401050153 ], [ -124.109061995543684, 44.265408241231995 ], [ -124.109880324220853, 44.270652240196846 ], [ -124.114790296283886, 44.27266916287563 ], [ -124.115881401186783, 44.274686085554421 ], [ -124.115881401186783, 44.276299623697454 ], [ -124.115335848735342, 44.286585929359283 ], [ -124.109061995543684, 44.303729772128989 ], [ -124.107970890640786, 44.309982232433242 ], [ -124.109607547995139, 44.314621154594462 ], [ -124.100605932546245, 44.331966689632047 ], [ -124.092149869548805, 44.370288220529048 ], [ -124.084512135228536, 44.415668980801819 ], [ -124.080966044294129, 44.419702826159394 ], [ -124.071691652619506, 44.423736671516977 ], [ -124.067600009233644, 44.428577285946069 ], [ -124.073873862425302, 44.434426361714557 ], [ -124.079329386939776, 44.43079590089274 ], [ -124.082057149197013, 44.441485591090327 ], [ -124.082057149197013, 44.478193583844295 ], [ -124.084512135228536, 44.486866351363091 ], [ -124.083693806551366, 44.501186502382495 ], [ -124.076328848456811, 44.531238650296459 ], [ -124.06732723300793, 44.608083404358347 ], [ -124.069236666587997, 44.612924018787439 ], [ -124.082329925422741, 44.608890173429856 ], [ -124.084512135228536, 44.611108788376526 ], [ -124.065145023202135, 44.622403555377751 ], [ -124.064872246976407, 44.632488168771701 ], [ -124.058325617559035, 44.65890985586384 ], [ -124.059962274913374, 44.669397853793548 ], [ -124.070327771490895, 44.68351631254508 ], [ -124.063508365847795, 44.703080462529336 ], [ -124.059143946236205, 44.737569840336633 ], [ -124.066236128105032, 44.762579681553632 ], [ -124.075510519779641, 44.7714541413403 ], [ -124.07414663865103, 44.798077520700325 ], [ -124.066781680556474, 44.831155052632475 ], [ -124.063235589622067, 44.83539059025793 ], [ -124.054233974173172, 44.838214282008238 ], [ -124.048778449658698, 44.849912433545214 ], [ -124.032411876115262, 44.900738885050714 ], [ -124.02504691802072, 44.928169033482256 ], [ -124.025592470472162, 44.936640108733172 ], [ -124.023955813117823, 44.949750106145302 ], [ -124.015226973894656, 44.982827638077453 ], [ -124.004588701091421, 45.04494885658417 ], [ -124.004315924865708, 45.046159010191445 ], [ -124.004588701091421, 45.048175932870237 ], [ -124.009771449380182, 45.047167471530841 ], [ -124.017954736151893, 45.04978947101327 ], [ -124.015772526346112, 45.064714698836312 ], [ -124.012226435411691, 45.077017927176925 ], [ -124.005952582220047, 45.084682233356332 ], [ -124.004861477317149, 45.084278848820574 ], [ -123.989586008676611, 45.093960077678759 ], [ -123.97540164493897, 45.145391605987896 ], [ -123.968309463070142, 45.201260364190368 ], [ -123.972946658907446, 45.216790668817048 ], [ -123.962853938555668, 45.28012204093104 ], [ -123.964217819684279, 45.317031725952887 ], [ -123.972946658907446, 45.336797568205029 ], [ -123.978674959647648, 45.33881449088382 ], [ -124.007862015800114, 45.336797568205029 ], [ -124.007589239574386, 45.339822952223216 ], [ -123.979766064550546, 45.347688950670488 ], [ -123.973492211358902, 45.354748180046258 ], [ -123.965854477038633, 45.386212173835375 ], [ -123.960671728749872, 45.430786165036622 ], [ -123.963945043458565, 45.449140161413609 ], [ -123.972946658907446, 45.467494157790597 ], [ -123.976492749841867, 45.489680307257281 ], [ -123.970764449101665, 45.493512460346977 ], [ -123.966400029490075, 45.493512460346977 ], [ -123.957671190266908, 45.510454610848811 ], [ -123.947578469915129, 45.564911523176136 ], [ -123.95658008536401, 45.571365675748254 ], [ -123.951124560849536, 45.585685826767666 ], [ -123.93912240691769, 45.661925504025916 ], [ -123.939395183143404, 45.708718110173834 ], [ -123.943214050303538, 45.727072106550814 ], [ -123.94594181256079, 45.73332456685506 ], [ -123.96858223929587, 45.756922562196905 ], [ -123.982493826807783, 45.761763176625998 ], [ -123.981948274356341, 45.768217329198123 ], [ -123.96940056797304, 45.782335787949648 ], [ -123.96940056797304, 45.783142557021165 ], [ -123.961490057427042, 45.837196084812732 ], [ -123.962853938555668, 45.870071924477003 ], [ -123.9677639106187, 45.907788378570359 ], [ -123.979493288324832, 45.930377912572808 ], [ -123.993132099611017, 45.938848987823725 ], [ -123.993677652062473, 45.946513294003125 ], [ -123.969946120424495, 45.969102828005568 ], [ -123.957398414041194, 45.974548519238297 ], [ -123.941850169174927, 45.975758672845572 ], [ -123.937485749563336, 45.977372210988605 ], [ -123.927938581663, 46.009642973849239 ], [ -123.929302462791625, 46.041913736709873 ], [ -123.933394106177488, 46.071764192355957 ], [ -123.947578469915129, 46.116136491289325 ], [ -123.959307847621261, 46.141751409309961 ], [ -123.974037763810344, 46.168778173205737 ], [ -123.996678190545438, 46.204074320084558 ], [ -124.010317001831623, 46.223436777800941 ], [ -124.024228589343551, 46.229285853569422 ], [ -124.011408106734521, 46.236143390677313 ], [ -124.002133715059912, 46.237353544284588 ], [ -123.99804207167405, 46.235336621605796 ], [ -123.988494903773713, 46.224041854604572 ], [ -123.990131561128052, 46.217587702032446 ], [ -123.987131022645102, 46.211536933996079 ], [ -123.982221050582069, 46.209721703585167 ], [ -123.96176283365277, 46.207906473174255 ], [ -123.950033455946638, 46.204074320084558 ], [ -123.92712025298583, 46.191569399476066 ], [ -123.912390336796747, 46.179467863403325 ], [ -123.904207050025022, 46.169383250009375 ], [ -123.891113791190278, 46.164744327848155 ], [ -123.854834553168999, 46.157281713936641 ], [ -123.842832399237139, 46.1605087902227 ], [ -123.841468518108528, 46.169786634545133 ], [ -123.863290616166438, 46.182291555153625 ], [ -123.866563930875131, 46.187737246386362 ], [ -123.864108944843608, 46.189552476797274 ], [ -123.83874075585129, 46.192174476279696 ], [ -123.821828629856398, 46.190359245868791 ], [ -123.794005454832558, 46.196208321637272 ], [ -123.759908426617073, 46.207301396370625 ], [ -123.736722447430537, 46.200645551530613 ], [ -123.712718139566832, 46.198830321119701 ], [ -123.706717062600916, 46.199637090191217 ], [ -123.675347796642654, 46.212343703067589 ], [ -123.673711139288315, 46.215369087085776 ], [ -123.666618957419487, 46.218192778836084 ], [ -123.655435132164811, 46.217991086568205 ], [ -123.636340796364138, 46.21436062574638 ], [ -123.632521929204003, 46.21678093296093 ], [ -123.626248076012359, 46.226462161819121 ], [ -123.625156971109462, 46.233924775730642 ], [ -123.622701985077939, 46.236546775213071 ], [ -123.61342759340333, 46.2391687746955 ], [ -123.605517082857332, 46.239370466963379 ], [ -123.600061558342858, 46.234731544802159 ], [ -123.586149970830945, 46.228680776765785 ], [ -123.548234075455312, 46.248244926750047 ], [ -123.54768852300387, 46.259136309215513 ], [ -123.484131662410192, 46.269624307145222 ], [ -123.474857270735583, 46.267809076734309 ], [ -123.468856193769653, 46.264582000448243 ], [ -123.447579648163185, 46.24985846489308 ], [ -123.427666983685342, 46.229285853569422 ], [ -123.430940298394034, 46.181888170617867 ], [ -123.371475081186219, 46.146390331471174 ], [ -123.363564570640222, 46.146188639203295 ], [ -123.2800950455687, 46.144776793328141 ], [ -123.212992094040615, 46.172610326295441 ], [ -123.166347359441829, 46.188947399993637 ], [ -123.115883757682909, 46.185316939171813 ], [ -122.904209406521147, 46.083664036160812 ], [ -122.884569518269032, 46.06026773308686 ], [ -122.813920475806526, 45.961035137290409 ], [ -122.785006195879802, 45.867651617262453 ], [ -122.785551748331244, 45.850507774492741 ], [ -122.79591724490875, 45.82509454873999 ], [ -122.795644468683037, 45.809967628649069 ], [ -122.769457951013536, 45.780520557538736 ], [ -122.761547440467538, 45.759141177143569 ], [ -122.760183559338927, 45.734333028194456 ], [ -122.762092992918994, 45.728685644693847 ], [ -122.772458489496501, 45.699641958119273 ], [ -122.774640699302296, 45.680481192670776 ], [ -122.763729650273334, 45.657084889596817 ], [ -122.738088685055288, 45.644176584452566 ], [ -122.675077376913066, 45.617956589628299 ], [ -122.643980887180533, 45.609687206645262 ], [ -122.492317305678043, 45.583265519553116 ], [ -122.380206276905511, 45.576004597909474 ], [ -122.352928654333112, 45.56934875306947 ], [ -122.33137933250093, 45.548171064942181 ], [ -122.294827318253922, 45.543532142780961 ], [ -122.266731367004354, 45.543935527316719 ], [ -122.249000912332306, 45.547767680406423 ], [ -122.201810625282064, 45.564104754104619 ], [ -122.183807394384289, 45.577618136052507 ], [ -122.140708750719909, 45.584475673160391 ], [ -122.129524925465233, 45.582862135017358 ], [ -122.129524925465233, 45.583063827285237 ], [ -122.12625161075654, 45.582660442749479 ], [ -122.12625161075654, 45.582660442749479 ], [ -122.112340023244627, 45.581450289142211 ], [ -122.101701750441393, 45.583467211820995 ], [ -121.98304409225149, 45.622797204057392 ], [ -121.922214993915048, 45.648412122078021 ], [ -121.908303406403135, 45.654462890114388 ], [ -121.90093844830858, 45.661925504025916 ], [ -121.901756776985764, 45.670799963812584 ], [ -121.867114196318823, 45.693187805547154 ], [ -121.819923909268581, 45.704684264816251 ], [ -121.811195070045414, 45.706701187495042 ], [ -121.735090503068449, 45.693994574618671 ], [ -121.707267328044608, 45.69480134369018 ], [ -121.62625278900461, 45.705894418423526 ], [ -121.533236096032752, 45.726467029747184 ], [ -121.52232504700379, 45.724651799336272 ], [ -121.462859829795974, 45.701457188530185 ], [ -121.441037731738064, 45.69722165090473 ], [ -121.42358005329173, 45.693994574618671 ], [ -121.401757955233819, 45.692986113279275 ], [ -121.372570899081367, 45.703070726673218 ], [ -121.337655542188699, 45.70488595708413 ], [ -121.312287353196382, 45.699843650387152 ], [ -121.215724569290103, 45.671203348348342 ], [ -121.200449100649564, 45.649823967953175 ], [ -121.195266352360818, 45.629453048897403 ], [ -121.086701414522693, 45.646596891667109 ], [ -121.064333764013341, 45.652647659703476 ], [ -120.944039448469084, 45.656479812793179 ], [ -120.91594349721953, 45.641352892702258 ], [ -120.870117091297914, 45.661320427222279 ], [ -120.855659951334545, 45.671606732884101 ], [ -120.788829776032188, 45.686330268439264 ], [ -120.689266453642958, 45.715777339549589 ], [ -120.668808236713659, 45.730097490569001 ], [ -120.65353276807312, 45.737156719944764 ], [ -120.634983984723888, 45.74582948746356 ], [ -120.591067012382339, 45.746636256535076 ], [ -120.559424970198364, 45.738366873552039 ], [ -120.522054627274187, 45.709928263781109 ], [ -120.505960829956479, 45.700045342655031 ], [ -120.482229298318501, 45.694397959154429 ], [ -120.40394252153574, 45.699238573583514 ], [ -120.210816953723196, 45.725861952943546 ], [ -120.170446072316068, 45.761964868893877 ], [ -120.141259016163602, 45.773057943627222 ], [ -120.001052036141516, 45.811984551327853 ], [ -119.999415378787162, 45.812186243595733 ], [ -119.868210014213957, 45.835985931205457 ], [ -119.802743720040226, 45.847482390474553 ], [ -119.773011111436318, 45.845667160063641 ], [ -119.669901698112682, 45.856961927064866 ], [ -119.623256963513882, 45.905569763623696 ], [ -119.600616536778801, 45.919486530107342 ], [ -119.571702256852063, 45.925537298143709 ], [ -119.524511969801836, 45.908595147641876 ], [ -119.487959955554828, 45.906376532695212 ], [ -119.432040829281419, 45.913637454338854 ], [ -119.376121703008025, 45.920898375982496 ], [ -119.322384786540411, 45.933201604323116 ], [ -119.257191268592393, 45.939857449163114 ], [ -119.225822002634146, 45.932798219787358 ], [ -119.195543841578782, 45.927957605358259 ], [ -119.169630100135009, 45.9275542208225 ], [ -119.125985904019188, 45.932798219787358 ], [ -119.093252756932316, 45.942681140913422 ], [ -119.026968134081415, 45.969102828005568 ], [ -119.008692126957911, 45.979187441399517 ], [ -118.987142805125714, 45.999760052723168 ], [ -118.67781456515479, 46.000970206330443 ], [ -118.658720229354117, 46.000970206330443 ], [ -118.63935311732773, 46.000970206330443 ], [ -118.637716459973376, 46.000970206330443 ], [ -118.579887900119914, 46.000768514062564 ], [ -118.575796256734051, 46.000768514062564 ], [ -118.569522403542408, 46.000768514062564 ], [ -118.537062032681249, 46.000768514062564 ], [ -118.496963927499834, 46.000566821794685 ], [ -118.470777409830347, 46.000566821794685 ], [ -118.378306269309931, 46.000566821794685 ], [ -118.367667996506697, 46.000566821794685 ], [ -118.315022184941995, 46.000365129526806 ], [ -118.256375296411349, 46.000365129526806 ], [ -118.252556429251214, 46.000365129526806 ], [ -118.236462631933506, 46.000365129526806 ], [ -118.228824897613237, 46.000365129526806 ], [ -118.130898232578346, 46.000365129526806 ], [ -118.126261036741042, 46.000365129526806 ], [ -117.996965105747904, 46.000768514062564 ], [ -117.977870769947231, 46.000768514062564 ], [ -117.603076235802561, 45.998953283651659 ], [ -117.504876794541957, 45.998348206848021 ], [ -117.480054158001082, 45.997944822312263 ], [ -117.480054158001082, 45.997944822312263 ], [ -117.475416962163777, 45.997944822312263 ], [ -117.475144185938049, 45.997944822312263 ], [ -117.216825100177502, 45.998348206848021 ], [ -117.214642890371707, 45.998348206848021 ], [ -117.212733456791639, 45.998348206848021 ], [ -116.915952923204017, 45.995322822829834 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "46", "geo_id": "0400000US44", "fips_state": "44", "name": "Rhode Island", "iso_3166_2": "RI", "census": 1052567, "pop_estimataes_base": 1052931, "pop_2010": 1053078, "pop_2011": 1052020, "pop_2012": 1052637, "pop_2013": 1053354, "pop_2014": 1055173 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.383599772916526, 41.464709409464753 ], [ -71.389328073656742, 41.460675564107177 ], [ -71.390146402333897, 41.455028180606561 ], [ -71.399693570234234, 41.448574028034436 ], [ -71.400511898911418, 41.460877256375056 ], [ -71.395874703074099, 41.492139557896294 ], [ -71.386600311399491, 41.493148019235683 ], [ -71.378962577079221, 41.505047863040545 ], [ -71.390964731011081, 41.51452739963085 ], [ -71.392055835913965, 41.524410320756928 ], [ -71.384418101593695, 41.556681083617562 ], [ -71.378962577079221, 41.5677741583509 ], [ -71.373507052564747, 41.57321984958363 ], [ -71.370233737856054, 41.574026618655147 ], [ -71.363687108438683, 41.570799542369087 ], [ -71.359868241278548, 41.556277699081804 ], [ -71.363414332212955, 41.502022479022358 ], [ -71.360413793730004, 41.483063405841733 ], [ -71.380872010659289, 41.474592330590824 ], [ -71.383599772916526, 41.464709409464753 ] ] ], [ [ [ -71.326862317965947, 41.491332788824778 ], [ -71.325498436837336, 41.487500635735074 ], [ -71.327953422868859, 41.483063405841733 ], [ -71.34295611528367, 41.495568326450233 ], [ -71.341046681703602, 41.498593710468413 ], [ -71.326862317965947, 41.491332788824778 ] ] ], [ [ [ -71.331226737577538, 41.580279078959393 ], [ -71.335863933414842, 41.585926462460009 ], [ -71.33695503831774, 41.594599229978797 ], [ -71.333681723609061, 41.605893996980022 ], [ -71.329590080223198, 41.609121073266088 ], [ -71.326589541740233, 41.616180302641851 ], [ -71.325771213063064, 41.62404630108913 ], [ -71.333408947383333, 41.62949199232186 ], [ -71.346502206218076, 41.632315684072168 ], [ -71.362868779761513, 41.651476449520672 ], [ -71.366142094470206, 41.660955986110977 ], [ -71.348411639798144, 41.663779677861285 ], [ -71.338591695672079, 41.658737371164307 ], [ -71.33613670964057, 41.648047680966727 ], [ -71.33695503831774, 41.646232450555814 ], [ -71.342410562832214, 41.64482060468066 ], [ -71.343774443960839, 41.639979990251568 ], [ -71.330681185126082, 41.632920760875805 ], [ -71.314860164034101, 41.630298761393377 ], [ -71.305585772359493, 41.622432762946097 ], [ -71.303403562553697, 41.60649907378366 ], [ -71.30749520593956, 41.598027998532743 ], [ -71.317587926291338, 41.583102770709701 ], [ -71.326043989288792, 41.57866554081636 ], [ -71.331226737577538, 41.580279078959393 ] ] ], [ [ [ -71.281581464495787, 41.648249373234606 ], [ -71.27803537356138, 41.64724091189521 ], [ -71.274216506401245, 41.638164759840656 ], [ -71.283763674301582, 41.637761375304898 ], [ -71.286764212784533, 41.642803682001869 ], [ -71.282945345624398, 41.644417220144902 ], [ -71.281581464495787, 41.648249373234606 ] ] ], [ [ [ -71.589545823338085, 41.196458693185733 ], [ -71.580271431663476, 41.204929768436649 ], [ -71.577270893180511, 41.214610997294841 ], [ -71.57672534072907, 41.224493918420904 ], [ -71.57372480224609, 41.228527763778487 ], [ -71.561177095862803, 41.224292226153032 ], [ -71.554903242671145, 41.216829612241511 ], [ -71.554084913993975, 41.212997459151808 ], [ -71.557358228702668, 41.204526383900891 ], [ -71.564177634345754, 41.195450231846337 ], [ -71.565814291700107, 41.184357157112998 ], [ -71.560904319637075, 41.176087774129961 ], [ -71.550266046833841, 41.166809929807528 ], [ -71.544537746093638, 41.164994699396615 ], [ -71.543992193642197, 41.161364238574791 ], [ -71.546992732125148, 41.153699932395398 ], [ -71.551902704188194, 41.151683009716606 ], [ -71.593637466723948, 41.146439010751749 ], [ -71.599911319915591, 41.146842395287507 ], [ -71.611640697621723, 41.15329654785964 ], [ -71.613004578750349, 41.160355777235395 ], [ -71.605639620655793, 41.182138542166328 ], [ -71.595001347852559, 41.188391002470574 ], [ -71.589545823338085, 41.196458693185733 ] ] ], [ [ [ -71.859594286804764, 41.322314668342202 ], [ -71.839681622326907, 41.334617896682822 ], [ -71.832589440458094, 41.341273741522826 ], [ -71.831225559329482, 41.344702510076772 ], [ -71.831498335555196, 41.370922504901031 ], [ -71.833407769135263, 41.384435886848927 ], [ -71.84213660835843, 41.395327269314393 ], [ -71.843500489487042, 41.405815267244094 ], [ -71.842682160809886, 41.409849112601677 ], [ -71.839681622326907, 41.412067727548347 ], [ -71.818405076720452, 41.419530341459861 ], [ -71.797674083565425, 41.41670664970956 ], [ -71.797674083565425, 41.416908341977432 ], [ -71.789490796793714, 41.596817844925468 ], [ -71.789490796793714, 41.596817844925468 ], [ -71.789490796793714, 41.639979990251568 ], [ -71.789763573019442, 41.724489050492849 ], [ -71.789763573019442, 41.724690742760728 ], [ -71.792764111502407, 41.806981188055346 ], [ -71.792764111502407, 41.808594726198379 ], [ -71.794127992631019, 41.840058719987496 ], [ -71.794127992631019, 41.841067181326892 ], [ -71.796037426211086, 41.904398553440885 ], [ -71.79685575488827, 41.92860162558636 ], [ -71.799310740919779, 42.00806837913067 ], [ -71.591182480692424, 42.013715762631278 ], [ -71.576998116954783, 42.014119147167037 ], [ -71.559540438508463, 42.014320839434916 ], [ -71.527625620098746, 42.014925916238553 ], [ -71.527352843873032, 42.015127608506432 ], [ -71.500893549977803, 42.017144531185224 ], [ -71.49980244507492, 42.017144531185224 ], [ -71.498165787720581, 42.017144531185224 ], [ -71.458067682539166, 42.017749607988861 ], [ -71.381417563110745, 42.018758069328257 ], [ -71.381417563110745, 41.985075460592469 ], [ -71.381417563110745, 41.966721464215482 ], [ -71.381417563110745, 41.96470454153669 ], [ -71.381690339336458, 41.922954242085751 ], [ -71.381690339336458, 41.922752549817872 ], [ -71.376507591047698, 41.893910555511184 ], [ -71.373779828790475, 41.894313940046935 ], [ -71.371052066533224, 41.894515632314814 ], [ -71.365323765793022, 41.895322401386331 ], [ -71.36477821334158, 41.895322401386331 ], [ -71.362596003535785, 41.89552409365421 ], [ -71.354685492989802, 41.896532554993605 ], [ -71.352776059409734, 41.896734247261485 ], [ -71.339410024349263, 41.893507170975425 ], [ -71.339410024349263, 41.893305478707546 ], [ -71.337500590769196, 41.833604567415371 ], [ -71.339682800574977, 41.831991029272338 ], [ -71.339410024349263, 41.806577803519588 ], [ -71.327953422868859, 41.780559500963207 ], [ -71.317860702517066, 41.776122271069866 ], [ -71.317860702517066, 41.776122271069866 ], [ -71.261396023792216, 41.752322583460149 ], [ -71.224844009545208, 41.710572284009203 ], [ -71.227844548028173, 41.705529977312224 ], [ -71.240937806862917, 41.697663978864952 ], [ -71.237664492154238, 41.681730289702514 ], [ -71.241483359314373, 41.667208446415231 ], [ -71.259486590212148, 41.64260198973399 ], [ -71.267124324532418, 41.64502229694854 ], [ -71.270124863015383, 41.652484910860068 ], [ -71.269306534338199, 41.65490521807461 ], [ -71.280490359592889, 41.67265413764796 ], [ -71.287582541461717, 41.672452445380081 ], [ -71.290583079944668, 41.662367831986131 ], [ -71.299039142942121, 41.649459526841881 ], [ -71.30149412897363, 41.650064603645518 ], [ -71.303676338779425, 41.654703525806731 ], [ -71.306131324810934, 41.67265413764796 ], [ -71.302585233876528, 41.681730289702514 ], [ -71.299039142942121, 41.681528597434635 ], [ -71.293038065976191, 41.688386134542519 ], [ -71.291128632396124, 41.702706285561923 ], [ -71.305858548585206, 41.718639974724361 ], [ -71.314860164034101, 41.723883973689212 ], [ -71.342683339057942, 41.728522895850432 ], [ -71.350048297152483, 41.727917819046795 ], [ -71.353048835635448, 41.725094127296487 ], [ -71.353867164312618, 41.724690742760728 ], [ -71.36559654201875, 41.711580745348598 ], [ -71.36559654201875, 41.695041979382523 ], [ -71.372961500113291, 41.67265413764796 ], [ -71.377871472176324, 41.666603369611593 ], [ -71.381963115562186, 41.66741013868311 ], [ -71.389873626108169, 41.671847368576444 ], [ -71.390691954785353, 41.680721828363119 ], [ -71.389328073656742, 41.683343827845547 ], [ -71.390419178559625, 41.684150596917064 ], [ -71.417969577357752, 41.684150596917064 ], [ -71.441428332770002, 41.686369211863727 ], [ -71.443064990124341, 41.688386134542519 ], [ -71.441973885221444, 41.689999672685545 ], [ -71.445792752381578, 41.69120982629282 ], [ -71.449338843315985, 41.687377673203123 ], [ -71.444428871252967, 41.664384754664923 ], [ -71.429971731289598, 41.667611830950989 ], [ -71.425334535452293, 41.670838907237048 ], [ -71.409240738134571, 41.66256952425401 ], [ -71.408695185683129, 41.653896756735215 ], [ -71.403785213620097, 41.589355231013947 ], [ -71.447702185961646, 41.580480771227272 ], [ -71.4425194376729, 41.565152158868472 ], [ -71.421515668292159, 41.537923702704816 ], [ -71.417424024906296, 41.534494934150871 ], [ -71.414696262649045, 41.523200167149653 ], [ -71.414969038874773, 41.516342630041763 ], [ -71.421515668292159, 41.498593710468413 ], [ -71.419879010937819, 41.484676943984766 ], [ -71.417969577357752, 41.482054944502337 ], [ -71.417696801132024, 41.478021099144762 ], [ -71.418515129809194, 41.472575407912032 ], [ -71.421242892066431, 41.469953408429603 ], [ -71.42287954942077, 41.472777100179911 ], [ -71.430790059966768, 41.470558485233241 ], [ -71.430790059966768, 41.465717870804141 ], [ -71.428062297709531, 41.459465410499902 ], [ -71.428607850160972, 41.454221411535045 ], [ -71.433517822224005, 41.444943567212611 ], [ -71.437609465609867, 41.441313106390794 ], [ -71.441155556544274, 41.441514798658673 ], [ -71.449066067090271, 41.438489414640486 ], [ -71.455885472733371, 41.433043723407749 ], [ -71.455339920281915, 41.408033882190765 ], [ -71.474979808534044, 41.386049424991953 ], [ -71.483163095305756, 41.371729273972548 ], [ -71.513441256361119, 41.374754657990735 ], [ -71.526807291421591, 41.376569888401647 ], [ -71.555448795122601, 41.373342812115581 ], [ -71.624461180230753, 41.360837891507089 ], [ -71.688018040824417, 41.34288727966586 ], [ -71.701656852110617, 41.337038203897364 ], [ -71.72075118791129, 41.331592512664642 ], [ -71.729207250908729, 41.330987435861005 ], [ -71.773669775701734, 41.327962051842817 ], [ -71.785944705859308, 41.325743436896147 ], [ -71.833680545360991, 41.315658823502204 ], [ -71.857412076998969, 41.306380979179764 ], [ -71.862867601513443, 41.309809747733709 ], [ -71.862049272836288, 41.316667284841593 ], [ -71.859594286804764, 41.322314668342202 ] ] ], [ [ [ -71.120643491318674, 41.497383556861138 ], [ -71.136737288636382, 41.4939547883072 ], [ -71.141101708247959, 41.489920942949624 ], [ -71.140283379570803, 41.485887097592041 ], [ -71.167288225917474, 41.471365254304757 ], [ -71.170015988174697, 41.463902640393236 ], [ -71.192929191135505, 41.457851872356869 ], [ -71.194838624715572, 41.459062025964144 ], [ -71.19674805829564, 41.461078948642928 ], [ -71.196475282069926, 41.464709409464753 ], [ -71.189928652652554, 41.478222791412641 ], [ -71.190201428878282, 41.484273559449008 ], [ -71.199475820552891, 41.491736173360536 ], [ -71.199748596778619, 41.495568326450233 ], [ -71.206295226195977, 41.49919878727205 ], [ -71.200839701681502, 41.514325707362971 ], [ -71.213660184290532, 41.545789701152088 ], [ -71.2087502122275, 41.571001234636967 ], [ -71.207659107324602, 41.600649998015172 ], [ -71.212569079387634, 41.610129534605477 ], [ -71.212296303161907, 41.618197225320642 ], [ -71.212023526936179, 41.623037839749735 ], [ -71.216115170322041, 41.625458146964277 ], [ -71.240665030637189, 41.619205686660038 ], [ -71.243665569120168, 41.587540000603042 ], [ -71.236027834799899, 41.574833387726663 ], [ -71.23657338725134, 41.535906780026025 ], [ -71.234663953671273, 41.53247801147208 ], [ -71.228117324253901, 41.528242473846625 ], [ -71.229481205382513, 41.52158662900662 ], [ -71.233027296316919, 41.51472909189873 ], [ -71.233027296316919, 41.51452739963085 ], [ -71.233300072542647, 41.514124015095092 ], [ -71.240665030637189, 41.500610633147204 ], [ -71.238482820831408, 41.486895558931437 ], [ -71.237118939702782, 41.486492174395678 ], [ -71.236846163477054, 41.483466790377491 ], [ -71.237664492154238, 41.481248175430821 ], [ -71.237937268379966, 41.48084479089507 ], [ -71.239846701960033, 41.476810945537494 ], [ -71.240119478185747, 41.476205868733857 ], [ -71.240665030637189, 41.474794022858703 ], [ -71.246666107603119, 41.471970331108395 ], [ -71.246666107603119, 41.472373715644153 ], [ -71.246120555151677, 41.478827868216278 ], [ -71.246120555151677, 41.481248175430821 ], [ -71.252667184569049, 41.485887097592041 ], [ -71.264669338500909, 41.488912481610228 ], [ -71.267669876983859, 41.488710789342349 ], [ -71.282127016947243, 41.487904020270832 ], [ -71.285673107881649, 41.487904020270832 ], [ -71.295220275781986, 41.484273559449008 ], [ -71.296584156910598, 41.479836329555674 ], [ -71.300403024070732, 41.467129716679295 ], [ -71.302585233876528, 41.460272179571419 ], [ -71.302858010102256, 41.459868795035661 ], [ -71.302858010102256, 41.459263718232023 ], [ -71.302858010102256, 41.459263718232023 ], [ -71.304221891230867, 41.455028180606561 ], [ -71.304494667456595, 41.454423103802924 ], [ -71.304494667456595, 41.454423103802924 ], [ -71.305858548585206, 41.453616334731407 ], [ -71.310222968196797, 41.451397719784737 ], [ -71.310495744422525, 41.451196027516858 ], [ -71.311314073099695, 41.450792642981099 ], [ -71.311314073099695, 41.450792642981099 ], [ -71.311314073099695, 41.450792642981099 ], [ -71.31267795422832, 41.451397719784737 ], [ -71.31267795422832, 41.454624796070803 ], [ -71.321406793451473, 41.455633257410199 ], [ -71.337500590769196, 41.448977412570187 ], [ -71.337773366994909, 41.448977412570187 ], [ -71.351139402055381, 41.450792642981099 ], [ -71.351412178281109, 41.451196027516858 ], [ -71.358231583924209, 41.456641718749594 ], [ -71.358231583924209, 41.456641718749594 ], [ -71.358231583924209, 41.456843411017473 ], [ -71.35877713637565, 41.457045103285353 ], [ -71.359049912601378, 41.457246795553232 ], [ -71.359049912601378, 41.457448487821111 ], [ -71.359322688827092, 41.457448487821111 ], [ -71.361777674858615, 41.459667102767781 ], [ -71.362323227310071, 41.459868795035661 ], [ -71.362323227310071, 41.46007048730354 ], [ -71.362596003535785, 41.460272179571419 ], [ -71.362868779761513, 41.460473871839298 ], [ -71.362868779761513, 41.460473871839298 ], [ -71.362050451084343, 41.46309587132172 ], [ -71.361777674858615, 41.463902640393236 ], [ -71.361504898632887, 41.464911101732632 ], [ -71.347047758669532, 41.471163562036878 ], [ -71.335863933414842, 41.469550023893845 ], [ -71.316496821388455, 41.477617714609003 ], [ -71.31731515006561, 41.488710789342349 ], [ -71.323043450805812, 41.503030940361754 ], [ -71.327680646643131, 41.504241093969028 ], [ -71.330681185126082, 41.507669862522974 ], [ -71.33095396135181, 41.518359552720554 ], [ -71.312950730454034, 41.53469662641875 ], [ -71.310495744422525, 41.546999854759363 ], [ -71.303676338779425, 41.559908159903621 ], [ -71.294401947104802, 41.571404619172725 ], [ -71.288400870138872, 41.57321984958363 ], [ -71.285127555430194, 41.577052002673334 ], [ -71.273398177724061, 41.606902458319418 ], [ -71.272307072821178, 41.614970149034576 ], [ -71.275307611304129, 41.619407378927917 ], [ -71.271761520369722, 41.62404630108913 ], [ -71.251030527214709, 41.638769836644293 ], [ -71.212023526936179, 41.641996912930352 ], [ -71.195656953392756, 41.675074444862503 ], [ -71.194293072264131, 41.674872752594624 ], [ -71.191292533781166, 41.674267675790986 ], [ -71.191292533781166, 41.674267675790986 ], [ -71.181199813429373, 41.672452445380081 ], [ -71.176017065140627, 41.671443984040685 ], [ -71.176017065140627, 41.668418600022505 ], [ -71.176017065140627, 41.668015215486747 ], [ -71.153922190856989, 41.664183062397043 ], [ -71.145738904085277, 41.66277121652189 ], [ -71.135100631282043, 41.660552601575219 ], [ -71.134555078830601, 41.660552601575219 ], [ -71.134555078830601, 41.641190143858843 ], [ -71.134555078830601, 41.641190143858843 ], [ -71.133736750153417, 41.63413091448308 ], [ -71.133736750153417, 41.632113991804289 ], [ -71.133463973927689, 41.62949199232186 ], [ -71.120643491318674, 41.497383556861138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "47", "geo_id": "0400000US46", "fips_state": "46", "name": "South Dakota", "iso_3166_2": "SD", "census": 814180, "pop_estimataes_base": 814191, "pop_2010": 816192, "pop_2011": 824171, "pop_2012": 834504, "pop_2013": 845510, "pop_2014": 853175 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.057827195030072, 44.997349481364736 ], [ -104.040096740358024, 44.999971480847165 ], [ -104.040369516583752, 45.212958515727351 ], [ -104.040369516583752, 45.335990799133512 ], [ -104.040369516583752, 45.345268643455945 ], [ -104.040096740358024, 45.374312330030513 ], [ -104.040369516583752, 45.393473095479017 ], [ -104.041733397712363, 45.490688768596669 ], [ -104.041187845260907, 45.49996661291911 ], [ -104.041187845260907, 45.503395381473048 ], [ -104.041733397712363, 45.53909491288762 ], [ -104.041733397712363, 45.550591372156724 ], [ -104.042006173938091, 45.557852293800366 ], [ -104.043915607518159, 45.86845838633397 ], [ -104.043915607518159, 45.871887154887908 ], [ -104.043915607518159, 45.881971768281858 ], [ -104.043915607518159, 45.881971768281858 ], [ -104.045552264872498, 45.945303140395851 ], [ -103.668575520922047, 45.945303140395851 ], [ -103.66066501037605, 45.945303140395851 ], [ -103.66066501037605, 45.945303140395851 ], [ -103.577195485304543, 45.945303140395851 ], [ -103.558646701955311, 45.945101448127971 ], [ -103.434806295476648, 45.945303140395851 ], [ -103.432351309445139, 45.945303140395851 ], [ -103.418166945707497, 45.945101448127971 ], [ -103.411347540064398, 45.945303140395851 ], [ -103.284233818877055, 45.945101448127971 ], [ -103.283961042651327, 45.945101448127971 ], [ -103.218494748477582, 45.945303140395851 ], [ -103.210584237931585, 45.945303140395851 ], [ -103.161211741075562, 45.945303140395851 ], [ -103.14102630037199, 45.945303140395851 ], [ -103.097927656707611, 45.945303140395851 ], [ -103.07856054468121, 45.945303140395851 ], [ -103.047736831174419, 45.945303140395851 ], [ -103.026187509342222, 45.945303140395851 ], [ -102.995636572061144, 45.945101448127971 ], [ -102.995363795835416, 45.945101448127971 ], [ -102.989908271320942, 45.945303140395851 ], [ -102.942172431819259, 45.945101448127971 ], [ -102.920350333761348, 45.945101448127971 ], [ -102.880252228579934, 45.945101448127971 ], [ -102.704857115439452, 45.945101448127971 ], [ -102.674033401932647, 45.945303140395851 ], [ -102.672396744578307, 45.945303140395851 ], [ -102.666668443838105, 45.945303140395851 ], [ -102.65166575142328, 45.94550483266373 ], [ -102.6426641359744, 45.94550483266373 ], [ -102.558649058451437, 45.945101448127971 ], [ -102.551011324131167, 45.945101448127971 ], [ -102.475997862057085, 45.945101448127971 ], [ -102.467541799059646, 45.945101448127971 ], [ -102.459631288513648, 45.945101448127971 ], [ -102.446538029678905, 45.945101448127971 ], [ -102.425261484072436, 45.945101448127971 ], [ -102.425261484072436, 45.944899755860092 ], [ -102.420078735783676, 45.945101448127971 ], [ -102.410258791657625, 45.945101448127971 ], [ -102.406167148271763, 45.944899755860092 ], [ -102.398529413951493, 45.944899755860092 ], [ -102.396347204145698, 45.944899755860092 ], [ -102.392801113211291, 45.944899755860092 ], [ -102.392801113211291, 45.944899755860092 ], [ -102.354339665384217, 45.944899755860092 ], [ -102.353248560481319, 45.944899755860092 ], [ -102.328153147714715, 45.944899755860092 ], [ -102.217951552522266, 45.944698063592213 ], [ -102.177035118663667, 45.944698063592213 ], [ -102.176762342437954, 45.944698063592213 ], [ -102.15930466399162, 45.944698063592213 ], [ -102.157940782862994, 45.944698063592213 ], [ -102.156304125508655, 45.944698063592213 ], [ -102.145393076479706, 45.944698063592213 ], [ -102.135300356127914, 45.944496371324334 ], [ -102.125480412001849, 45.944698063592213 ], [ -102.124662083324679, 45.944899755860092 ], [ -102.08756451662623, 45.944698063592213 ], [ -102.085109530594707, 45.944698063592213 ], [ -102.060832446505287, 45.944698063592213 ], [ -102.000548900620302, 45.944496371324334 ], [ -102.000548900620302, 45.944496371324334 ], [ -102.000548900620302, 45.944496371324334 ], [ -101.998639467040235, 45.944496371324334 ], [ -101.998639467040235, 45.944496371324334 ], [ -101.992092837622863, 45.944496371324334 ], [ -101.989365075365612, 45.944496371324334 ], [ -101.973816830499359, 45.944496371324334 ], [ -101.957450256955923, 45.944496371324334 ], [ -101.886801214493431, 45.944496371324334 ], [ -101.852704186277933, 45.944496371324334 ], [ -101.833064298025818, 45.944496371324334 ], [ -101.794602850198743, 45.944496371324334 ], [ -101.789965654361438, 45.944496371324334 ], [ -101.766234122723461, 45.944294679056455 ], [ -101.765415794046277, 45.944294679056455 ], [ -101.764324689143393, 45.944496371324334 ], [ -101.758596388403191, 45.944496371324334 ], [ -101.729954884702181, 45.944294679056455 ], [ -101.723408255284795, 45.944092986788576 ], [ -101.708678339095712, 45.944294679056455 ], [ -101.68194626897477, 45.944496371324334 ], [ -101.680582387846144, 45.944294679056455 ], [ -101.657669184885336, 45.944294679056455 ], [ -101.628482128732884, 45.944294679056455 ], [ -101.562197505881969, 45.944294679056455 ], [ -101.557287533818936, 45.944092986788576 ], [ -101.373709133906743, 45.944294679056455 ], [ -101.370708595423778, 45.944294679056455 ], [ -101.365253070909304, 45.944092986788576 ], [ -101.333883804951057, 45.944092986788576 ], [ -101.31315281179603, 45.944092986788576 ], [ -101.287239070352257, 45.944092986788576 ], [ -101.271418049260276, 45.944294679056455 ], [ -101.223954985984307, 45.944092986788576 ], [ -101.20376954528075, 45.943891294520697 ], [ -101.179219684965588, 45.943891294520697 ], [ -101.175673594031181, 45.943891294520697 ], [ -101.171036398193877, 45.943891294520697 ], [ -101.16312588764788, 45.943891294520697 ], [ -101.145940985427274, 45.943891294520697 ], [ -101.142667670718581, 45.943891294520697 ], [ -101.106933985148743, 45.943891294520697 ], [ -101.101205684408541, 45.943891294520697 ], [ -100.98063859263857, 45.944092986788576 ], [ -100.976546949252722, 45.943891294520697 ], [ -100.964544795320876, 45.943891294520697 ], [ -100.938903830102817, 45.943891294520697 ], [ -100.935630515394138, 45.943689602252817 ], [ -100.890076885698235, 45.943891294520697 ], [ -100.769782570153993, 45.943689602252817 ], [ -100.762144835833723, 45.943689602252817 ], [ -100.762144835833723, 45.943891294520697 ], [ -100.750415458127591, 45.943689602252817 ], [ -100.720955625749411, 45.944092986788576 ], [ -100.650852135738361, 45.943689602252817 ], [ -100.62766615655184, 45.943689602252817 ], [ -100.512009036844887, 45.943689602252817 ], [ -100.511736260619159, 45.943689602252817 ], [ -100.4994613304616, 45.943689602252817 ], [ -100.462909316214592, 45.943487909984938 ], [ -100.430721721579161, 45.943689602252817 ], [ -100.424447868387517, 45.943487909984938 ], [ -100.420083448775927, 45.943487909984938 ], [ -100.410263504649862, 45.943487909984938 ], [ -100.294060832491482, 45.943286217717059 ], [ -100.285331993268315, 45.94308452544918 ], [ -100.284240888365417, 45.942882833181301 ], [ -100.275512049142264, 45.942882833181301 ], [ -100.274693720465081, 45.942882833181301 ], [ -100.170765978464274, 45.942479448645543 ], [ -100.152217195115043, 45.942479448645543 ], [ -100.141851698537536, 45.942479448645543 ], [ -100.110209656353561, 45.942277756377663 ], [ -100.108572998999222, 45.942479448645543 ], [ -100.084295914909788, 45.942277756377663 ], [ -100.069020446269249, 45.942076064109784 ], [ -100.005463585675585, 45.941874371841905 ], [ -99.965911032945613, 45.941874371841905 ], [ -99.880259298068296, 45.941672679574026 ], [ -99.879986521842582, 45.941672679574026 ], [ -99.83879731175827, 45.941269295038268 ], [ -99.750417814623717, 45.940865910502509 ], [ -99.749599485946547, 45.940865910502509 ], [ -99.749326709720819, 45.940865910502509 ], [ -99.747962828592208, 45.940865910502509 ], [ -99.717957443762572, 45.940865910502509 ], [ -99.717957443762572, 45.940865910502509 ], [ -99.692862030995968, 45.940865910502509 ], [ -99.671858261615228, 45.941067602770389 ], [ -99.611029163278801, 45.941067602770389 ], [ -99.588661512769434, 45.941067602770389 ], [ -99.493189833766067, 45.940462525966751 ], [ -99.490189295283102, 45.940462525966751 ], [ -99.401264245697107, 45.940462525966751 ], [ -99.385443224605126, 45.940462525966751 ], [ -99.378351042736298, 45.940462525966751 ], [ -99.345072343197984, 45.940260833698872 ], [ -99.344799566972256, 45.940260833698872 ], [ -99.317794720625585, 45.940260833698872 ], [ -99.2973365036963, 45.940260833698872 ], [ -99.283970468635829, 45.940260833698872 ], [ -99.276332734315559, 45.940260833698872 ], [ -99.257783950966328, 45.940059141430993 ], [ -99.222323041622218, 45.940059141430993 ], [ -99.221777489170762, 45.940059141430993 ], [ -99.213594202399051, 45.940059141430993 ], [ -99.212503097496153, 45.940059141430993 ], [ -99.102301502303689, 45.940059141430993 ], [ -99.092754334403352, 45.940260833698872 ], [ -99.005738718397424, 45.939857449163114 ], [ -99.005738718397424, 45.939857449163114 ], [ -98.905357067331025, 45.939454064627355 ], [ -98.904538738653855, 45.939454064627355 ], [ -98.724506429676069, 45.938647295555846 ], [ -98.185500607645608, 45.936226988341296 ], [ -98.184682278968438, 45.936226988341296 ], [ -98.070389040390126, 45.936226988341296 ], [ -98.008196060925059, 45.936025296073417 ], [ -98.008196060925059, 45.936025296073417 ], [ -97.986919515318604, 45.936025296073417 ], [ -97.978736228546879, 45.936025296073417 ], [ -97.958823564069036, 45.935823603805538 ], [ -97.784519555831451, 45.93542021926978 ], [ -97.77715459773691, 45.93542021926978 ], [ -97.696685611148354, 45.93542021926978 ], [ -97.542567043614341, 45.935218527001901 ], [ -97.519108288202091, 45.935218527001901 ], [ -97.518835511976363, 45.935218527001901 ], [ -97.491830665629692, 45.935016834734029 ], [ -97.482010721503627, 45.935218527001901 ], [ -97.318890538520733, 45.935016834734029 ], [ -97.312071132877634, 45.935016834734029 ], [ -97.228328831580399, 45.935218527001901 ], [ -97.228328831580399, 45.935218527001901 ], [ -97.228328831580399, 45.935218527001901 ], [ -97.144859306508877, 45.935218527001901 ], [ -97.11812723638792, 45.93542021926978 ], [ -97.019655018901602, 45.93542021926978 ], [ -96.998651249520861, 45.935621911537659 ], [ -96.791614094196404, 45.935823603805538 ], [ -96.701325163481783, 45.935823603805538 ], [ -96.680594170326771, 45.935621911537659 ], [ -96.659863177171758, 45.935621911537659 ], [ -96.639132184016731, 45.935218527001901 ], [ -96.618401190861718, 45.93542021926978 ], [ -96.607217365607028, 45.935218527001901 ], [ -96.597397421480977, 45.935218527001901 ], [ -96.576939204551678, 45.935218527001901 ], [ -96.563300393265479, 45.935218527001901 ], [ -96.564391498168376, 45.926344067215226 ], [ -96.564391498168376, 45.921100068250375 ], [ -96.569028694005681, 45.914847607946129 ], [ -96.569301470231409, 45.914040838874612 ], [ -96.569301470231409, 45.911418839392184 ], [ -96.569028694005681, 45.911418839392184 ], [ -96.568210365328511, 45.902947764141274 ], [ -96.567937589102797, 45.898712226515812 ], [ -96.568210365328511, 45.891249612604284 ], [ -96.568755917779967, 45.888022536318225 ], [ -96.573120337391543, 45.861600849226079 ], [ -96.57666642832595, 45.840019776563032 ], [ -96.579666966808915, 45.825901317811507 ], [ -96.583213057743336, 45.820052242043019 ], [ -96.652225442851488, 45.746837948802948 ], [ -96.672683659780773, 45.732316105515665 ], [ -96.711145107607848, 45.717592569960502 ], [ -96.744969359597604, 45.701658880798064 ], [ -96.835803842763681, 45.649622275685296 ], [ -96.840713814826699, 45.645386738059841 ], [ -96.84425990576112, 45.639537662291346 ], [ -96.857625940821592, 45.606056745823437 ], [ -96.853534297435729, 45.602224592733741 ], [ -96.849442654049867, 45.598997516447675 ], [ -96.84425990576112, 45.594358594286462 ], [ -96.843987129535392, 45.593955209750703 ], [ -96.835531066537953, 45.586089211303424 ], [ -96.784794688553305, 45.541313527834291 ], [ -96.76515480030119, 45.521345993314277 ], [ -96.74551491204906, 45.488671845917885 ], [ -96.742514373566095, 45.478788924791814 ], [ -96.732694429440031, 45.458821390271794 ], [ -96.692596324258616, 45.417272783088734 ], [ -96.680321394101043, 45.410415245980843 ], [ -96.617855638410262, 45.407994938766301 ], [ -96.521838406955453, 45.375724175905667 ], [ -96.48910525986858, 45.357168487260807 ], [ -96.470010924067907, 45.326914647078958 ], [ -96.454189902975912, 45.301501421326208 ], [ -96.453098798073029, 45.298072652772262 ], [ -96.452826021847301, 45.284357578556495 ], [ -96.452826021847301, 45.269028966197695 ], [ -96.452826021847301, 45.268827273929816 ], [ -96.452280469395845, 45.208924670369768 ], [ -96.452280469395845, 45.204890825012185 ], [ -96.452280469395845, 45.203075594601273 ], [ -96.452280469395845, 45.178469137920047 ], [ -96.452280469395845, 45.124012225592722 ], [ -96.452553245621573, 45.122600379717568 ], [ -96.452007693170131, 45.095170231286033 ], [ -96.452280469395845, 45.093758385410879 ], [ -96.452280469395845, 45.051604701424182 ], [ -96.452280469395845, 45.050192855549028 ], [ -96.452280469395845, 45.042326857101742 ], [ -96.452007693170131, 44.977583639112595 ], [ -96.452007693170131, 44.977381946844716 ], [ -96.452280469395845, 44.962658411289553 ], [ -96.452007693170131, 44.910621806176785 ], [ -96.451734916944403, 44.906587960819209 ], [ -96.452007693170131, 44.890049194853134 ], [ -96.451462140718675, 44.805540134611846 ], [ -96.451462140718675, 44.805540134611846 ], [ -96.451734916944403, 44.797674136164567 ], [ -96.452007693170131, 44.792228444931837 ], [ -96.451734916944403, 44.790413214520925 ], [ -96.451734916944403, 44.77609306350152 ], [ -96.451462140718675, 44.761772912482115 ], [ -96.451462140718675, 44.76056275887484 ], [ -96.451462140718675, 44.703080462529336 ], [ -96.451734916944403, 44.631278015164426 ], [ -96.451734916944403, 44.631278015164426 ], [ -96.451734916944403, 44.630672938360789 ], [ -96.452007693170131, 44.544146955440709 ], [ -96.452007693170131, 44.543541878637079 ], [ -96.452007693170131, 44.543541878637079 ], [ -96.452280469395845, 44.526801420403125 ], [ -96.452007693170131, 44.516918499277054 ], [ -96.452007693170131, 44.506833885883111 ], [ -96.452007693170131, 44.472949584879444 ], [ -96.452280469395845, 44.470932662200653 ], [ -96.451734916944403, 44.460444664270945 ], [ -96.452007693170131, 44.441485591090327 ], [ -96.452007693170131, 44.389650678245431 ], [ -96.452007693170131, 44.383599910209064 ], [ -96.452280469395845, 44.360203607135105 ], [ -96.452280469395845, 44.354757915902368 ], [ -96.452280469395845, 44.345278379312063 ], [ -96.452280469395845, 44.342252995293876 ], [ -96.452280469395845, 44.340639457150843 ], [ -96.452280469395845, 44.32813453654235 ], [ -96.452280469395845, 44.32591592159568 ], [ -96.452280469395845, 44.313411000987188 ], [ -96.452280469395845, 44.311999155112034 ], [ -96.452280469395845, 44.298687465432025 ], [ -96.452280469395845, 44.297073927288992 ], [ -96.452553245621573, 44.285779160287767 ], [ -96.452553245621573, 44.282753776269587 ], [ -96.452280469395845, 44.272064086071993 ], [ -96.452280469395845, 44.269038702053813 ], [ -96.452553245621573, 44.255323627838038 ], [ -96.452553245621573, 44.254516858766529 ], [ -96.452826021847301, 44.196832870153145 ], [ -96.452826021847301, 44.196832870153145 ], [ -96.453098798073029, 44.038302747600284 ], [ -96.453371574298743, 44.036487517189371 ], [ -96.453371574298743, 44.025394442456033 ], [ -96.453371574298743, 44.023780904313 ], [ -96.453098798073029, 44.008855676489958 ], [ -96.453098798073029, 44.006838753811166 ], [ -96.453371574298743, 43.994737217738425 ], [ -96.453371574298743, 43.99292198732752 ], [ -96.453371574298743, 43.980215374451141 ], [ -96.453371574298743, 43.977996759504478 ], [ -96.453371574298743, 43.967105377039005 ], [ -96.453098798073029, 43.966500300235374 ], [ -96.453371574298743, 43.950768303340809 ], [ -96.453371574298743, 43.949154765197783 ], [ -96.453098798073029, 43.878562471440148 ], [ -96.453371574298743, 43.878562471440148 ], [ -96.453371574298743, 43.876948933297115 ], [ -96.453371574298743, 43.84951878486558 ], [ -96.453371574298743, 43.84951878486558 ], [ -96.453371574298743, 43.84951878486558 ], [ -96.453098798073029, 43.805146485932205 ], [ -96.453371574298743, 43.791431411716431 ], [ -96.453371574298743, 43.689576816437565 ], [ -96.453371574298743, 43.675054973150274 ], [ -96.453371574298743, 43.609908370625369 ], [ -96.453371574298743, 43.607488063410827 ], [ -96.453371574298743, 43.588125605694444 ], [ -96.453371574298743, 43.587117144355048 ], [ -96.453098798073029, 43.500389469167096 ], [ -96.591123568289319, 43.500591161434976 ], [ -96.599034078835317, 43.500389469167096 ], [ -96.587031924903471, 43.484657472272538 ], [ -96.584031386420506, 43.468925475377979 ], [ -96.600125183738214, 43.457025631573117 ], [ -96.602852945995451, 43.45097486353675 ], [ -96.594124106772284, 43.434234405302796 ], [ -96.557572092525277, 43.406804256871254 ], [ -96.53738665182172, 43.395307797602158 ], [ -96.531112798630062, 43.395509489870037 ], [ -96.529203365049995, 43.397728104816707 ], [ -96.524020616761248, 43.39470272079852 ], [ -96.521565630729725, 43.386836722351241 ], [ -96.521292854503997, 43.374936878546379 ], [ -96.525657274115588, 43.312412275503902 ], [ -96.530294469952892, 43.300109047163289 ], [ -96.551843791785075, 43.293049817787526 ], [ -96.569028694005681, 43.295470125002069 ], [ -96.586213596226287, 43.274292436874781 ], [ -96.584031386420506, 43.268039976570535 ], [ -96.572574784940102, 43.24908090338991 ], [ -96.557026540073835, 43.224272754440804 ], [ -96.485286392708446, 43.224272754440804 ], [ -96.475466448582381, 43.221045678154738 ], [ -96.436459448303864, 43.120804621018891 ], [ -96.439459986786829, 43.113947083911007 ], [ -96.455008231653096, 43.083289859193407 ], [ -96.465919280682044, 43.062313863333998 ], [ -96.513109567732286, 43.027824485526693 ], [ -96.509563476797865, 42.971148958252705 ], [ -96.510654581700777, 42.944323886624801 ], [ -96.523202288084065, 42.90902773974598 ], [ -96.541478295207568, 42.857596211436849 ], [ -96.549388805753566, 42.839242215059869 ], [ -96.552116568010803, 42.836015138773803 ], [ -96.563027617039765, 42.830972832076824 ], [ -96.577757533228848, 42.828149140326516 ], [ -96.632040002147903, 42.770868536248898 ], [ -96.633131107050815, 42.768246536766469 ], [ -96.639677736468172, 42.736984235245231 ], [ -96.630676121019292, 42.705923625991872 ], [ -96.611036232767162, 42.694830551258534 ], [ -96.606126260704144, 42.694628858990654 ], [ -96.602034617318282, 42.697452550740955 ], [ -96.575302547197339, 42.682729015185792 ], [ -96.542296623884738, 42.660744557986988 ], [ -96.516382882440979, 42.630490717805145 ], [ -96.479558091968244, 42.561310269922657 ], [ -96.476830329711007, 42.5560662709578 ], [ -96.477648658388176, 42.535695351902028 ], [ -96.479830868193972, 42.524198892632924 ], [ -96.481194749322583, 42.516534586453531 ], [ -96.476830329711007, 42.508668588006245 ], [ -96.466192056907772, 42.497777205540785 ], [ -96.443278853946964, 42.489507822557748 ], [ -96.475466448582381, 42.480028285967435 ], [ -96.487468602514241, 42.479826593699556 ], [ -96.611581785218618, 42.506046588523823 ], [ -96.626038925181987, 42.513509202435344 ], [ -96.635858869308038, 42.524400584900803 ], [ -96.708144569124883, 42.60164872349845 ], [ -96.711417883833576, 42.610321491017245 ], [ -96.710599555156392, 42.619599335339672 ], [ -96.707326240447713, 42.631297486876662 ], [ -96.712781764962187, 42.648037945110609 ], [ -96.723965590216864, 42.665988556951838 ], [ -96.806616786611215, 42.703503318777322 ], [ -96.813163416028587, 42.70632701052763 ], [ -96.906725661451901, 42.733757158959165 ], [ -96.920364472738086, 42.731336851744622 ], [ -96.961008130370956, 42.737992696584627 ], [ -97.01556337551574, 42.758767000176164 ], [ -97.026201648318974, 42.76259915326586 ], [ -97.052115389762747, 42.77026345944526 ], [ -97.137494348414322, 42.782364995517995 ], [ -97.163135313632381, 42.79345807025134 ], [ -97.190140159979038, 42.805156221788323 ], [ -97.218236111228606, 42.82956098620167 ], [ -97.256970335281409, 42.853764058347153 ], [ -97.32843770642107, 42.859411441847762 ], [ -97.423091056747268, 42.861226672258667 ], [ -97.48528403621232, 42.854772519686549 ], [ -97.531928770811106, 42.850133597525328 ], [ -97.635038184134743, 42.844889598560471 ], [ -97.686592890796561, 42.842469291345928 ], [ -97.774426835479673, 42.84973021298957 ], [ -97.814252164435359, 42.861024979990788 ], [ -97.828436528173, 42.868890978438074 ], [ -97.845348654167893, 42.867680824830799 ], [ -97.865806871097178, 42.8628402104017 ], [ -97.875354038997514, 42.858806365044124 ], [ -97.879991234834819, 42.835410061970165 ], [ -97.888447297832272, 42.817257757861057 ], [ -97.908905514761557, 42.794869916126494 ], [ -97.936728689785397, 42.775709150677997 ], [ -97.950094724845869, 42.769658382641623 ], [ -98.000285550379076, 42.763204230069498 ], [ -98.017197676373954, 42.762397460997981 ], [ -98.034928131046016, 42.764212691408886 ], [ -98.056750229103926, 42.770868536248898 ], [ -98.157404656396054, 42.83198129341622 ], [ -98.165860719393493, 42.837023600113199 ], [ -98.204594943446281, 42.846906521239262 ], [ -98.309613790349999, 42.881194206778687 ], [ -98.325980363893422, 42.886438205743545 ], [ -98.447093008114848, 42.935046042302375 ], [ -98.467278448818419, 42.947550962910867 ], [ -98.490464428004955, 42.978006495360589 ], [ -98.495647176293701, 42.988091108754539 ], [ -98.498647714776666, 42.998579106684247 ], [ -98.565205113853295, 42.998377414416368 ], [ -98.56902398101343, 42.998579106684247 ], [ -98.663677331339642, 42.998377414416368 ], [ -98.665586764919709, 42.998579106684247 ], [ -98.742509660573845, 42.998377414416368 ], [ -98.764331758631755, 42.998377414416368 ], [ -98.801429325330218, 42.998175722148488 ], [ -98.824069752065299, 42.998377414416368 ], [ -98.899901542816551, 42.998175722148488 ], [ -98.903174857525244, 42.998377414416368 ], [ -98.919268654842938, 42.998175722148488 ], [ -98.919268654842938, 42.998175722148488 ], [ -98.962094522281603, 42.998377414416368 ], [ -99.00028319388295, 42.998175722148488 ], [ -99.021832515715147, 42.998377414416368 ], [ -99.022378068166589, 42.998175722148488 ], [ -99.079933851794337, 42.998377414416368 ], [ -99.081843285374404, 42.998377414416368 ], [ -99.135852978067732, 42.998377414416368 ], [ -99.139126292776425, 42.998579106684247 ], [ -99.15112844670827, 42.998377414416368 ], [ -99.161493943285791, 42.998377414416368 ], [ -99.195318195275547, 42.998175722148488 ], [ -99.234597971779792, 42.998377414416368 ], [ -99.254237860031907, 42.998175722148488 ], [ -99.254510636257635, 42.998175722148488 ], [ -99.26269392302936, 42.998175722148488 ], [ -99.288062112021677, 42.998175722148488 ], [ -99.347254553003765, 42.998175722148488 ], [ -99.368531098610234, 42.998175722148488 ], [ -99.370986084641743, 42.998175722148488 ], [ -99.374259399350436, 42.997974029880609 ], [ -99.395535944956904, 42.998175722148488 ], [ -99.471367735708156, 42.997974029880609 ], [ -99.474641050416835, 42.998175722148488 ], [ -99.490734847734558, 42.998175722148488 ], [ -99.494280938668965, 42.998175722148488 ], [ -99.534106267624651, 42.997974029880609 ], [ -99.535470148753276, 42.997974029880609 ], [ -99.569294400743033, 42.997974029880609 ], [ -99.699135884187626, 42.997974029880609 ], [ -99.701318093993422, 42.997974029880609 ], [ -99.719048548665469, 42.997974029880609 ], [ -99.726686282985739, 42.997974029880609 ], [ -99.743052856529175, 42.997974029880609 ], [ -99.768421045521492, 42.998175722148488 ], [ -99.788333709999335, 42.997974029880609 ], [ -99.800335863931195, 42.997974029880609 ], [ -99.80333640241416, 42.997974029880609 ], [ -99.809337479380076, 42.998175722148488 ], [ -99.821885185763392, 42.997974029880609 ], [ -99.849981137012946, 42.998175722148488 ], [ -99.860073857364739, 42.997974029880609 ], [ -99.86989380149079, 42.998175722148488 ], [ -99.877804312036787, 42.998175722148488 ], [ -99.918447969669643, 42.997974029880609 ], [ -99.927722361344266, 42.998175722148488 ], [ -99.950362788079346, 42.998377414416368 ], [ -99.950908340530788, 42.998377414416368 ], [ -99.961273837108308, 42.998377414416368 ], [ -100.004645256998401, 42.998377414416368 ], [ -100.027831236184937, 42.998377414416368 ], [ -100.034377865602309, 42.998377414416368 ], [ -100.119211271802456, 42.998780798952126 ], [ -100.126303453671269, 42.998780798952126 ], [ -100.126849006122725, 42.998780798952126 ], [ -100.198316377262387, 42.998579106684247 ], [ -100.198316377262387, 42.998579106684247 ], [ -100.198316377262387, 42.998579106684247 ], [ -100.277694258948046, 42.998579106684247 ], [ -100.283695335913976, 42.998780798952126 ], [ -100.349434406313435, 42.998780798952126 ], [ -100.355435483279365, 42.998780798952126 ], [ -100.472729260340643, 42.999385875755763 ], [ -100.534376687354253, 42.998982491220005 ], [ -100.54392385525459, 42.998780798952126 ], [ -100.553198246929199, 42.998780798952126 ], [ -100.887894675892454, 42.997974029880609 ], [ -100.9067162354674, 42.997974029880609 ], [ -100.958270942129218, 42.99777233761273 ], [ -100.964272019095148, 42.997974029880609 ], [ -101.22640997201583, 42.997974029880609 ], [ -101.226955524467272, 42.997974029880609 ], [ -101.228046629370169, 42.997974029880609 ], [ -101.229137734273067, 42.99777233761273 ], [ -101.230228839175965, 42.997974029880609 ], [ -101.625481590249919, 42.996158799469697 ], [ -101.875344613013027, 42.999385875755763 ], [ -102.08238176833747, 42.999385875755763 ], [ -102.082654544563198, 42.999385875755763 ], [ -102.440536952712975, 42.999587568023642 ], [ -102.487454463537489, 42.999587568023642 ], [ -102.792145507671108, 42.999990952559401 ], [ -103.000819320349905, 43.000394337095159 ], [ -103.131751908697382, 43.00079772163091 ], [ -103.132843013600279, 43.00079772163091 ], [ -103.340698497601892, 43.00079772163091 ], [ -103.404528134421298, 43.00079772163091 ], [ -103.505182561713426, 43.00079772163091 ], [ -103.505182561713426, 43.00079772163091 ], [ -103.506273666616323, 43.00079772163091 ], [ -103.506546442842037, 43.00079772163091 ], [ -103.576377156627359, 43.00079772163091 ], [ -103.576922709078815, 43.00079772163091 ], [ -103.813965249232893, 43.001402798434547 ], [ -103.815601906587233, 43.001201106166668 ], [ -104.053189999192767, 43.000596029363031 ], [ -104.054008327869937, 43.28982274150146 ], [ -104.054008327869937, 43.297083663145102 ], [ -104.054281104095665, 43.304344584788751 ], [ -104.054281104095665, 43.325925657451791 ], [ -104.054553880321379, 43.390870567708816 ], [ -104.054826656547107, 43.428990406337945 ], [ -104.054826656547107, 43.477799935164654 ], [ -104.054826656547107, 43.503011468649518 ], [ -104.054826656547107, 43.503414853185276 ], [ -104.055099432772835, 43.558678534584118 ], [ -104.054826656547107, 43.579452838175648 ], [ -104.054826656547107, 43.583486683533224 ], [ -104.054826656547107, 43.583890068068982 ], [ -104.055099432772835, 43.747059112783063 ], [ -104.055099432772835, 43.750487881337008 ], [ -104.055099432772835, 43.853552630223156 ], [ -104.055099432772835, 43.936448152321404 ], [ -104.054826656547107, 43.938061690464437 ], [ -104.054553880321379, 44.141165804218552 ], [ -104.054553880321379, 44.18029410418707 ], [ -104.055917761450004, 44.51772526834857 ], [ -104.055917761450004, 44.5433401863692 ], [ -104.055917761450004, 44.57097202706862 ], [ -104.055917761450004, 44.691382310992353 ], [ -104.055917761450004, 44.693802618206902 ], [ -104.055644985224291, 44.700458463046907 ], [ -104.055917761450004, 44.723451381585107 ], [ -104.055917761450004, 44.723653073852986 ], [ -104.055917761450004, 44.768025372786362 ], [ -104.055917761450004, 44.768227065054241 ], [ -104.057827195030072, 44.997349481364736 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "48", "geo_id": "0400000US48", "fips_state": "48", "name": "Texas", "iso_3166_2": "TX", "census": 25145561, "pop_estimataes_base": 25146104, "pop_2010": 25245717, "pop_2011": 25657477, "pop_2012": 26094422, "pop_2013": 26505637, "pop_2014": 26956958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -96.830075542023479, 28.111874506806075 ], [ -96.827075003540514, 28.112479583609712 ], [ -96.816709506963008, 28.119538812985475 ], [ -96.81043565377135, 28.125992965557604 ], [ -96.810981206222806, 28.136279271219429 ], [ -96.816709506963008, 28.158062036150358 ], [ -96.820255597897415, 28.163507727383088 ], [ -96.822983360154652, 28.167541572740667 ], [ -96.818618940543075, 28.172180494901884 ], [ -96.81643673073728, 28.174802494384309 ], [ -96.791886870422132, 28.188719260867959 ], [ -96.732967205665759, 28.190937875814626 ], [ -96.703780149513307, 28.198198797458272 ], [ -96.697506296321649, 28.203039411887367 ], [ -96.702689044610409, 28.211308794870401 ], [ -96.703234597061851, 28.216351101567376 ], [ -96.686868023518414, 28.218368024246168 ], [ -96.662590939428981, 28.227242484032843 ], [ -96.660681505848913, 28.228856022175872 ], [ -96.663136491880437, 28.23329325206921 ], [ -96.65195266662576, 28.251243863910439 ], [ -96.608035694284212, 28.277060474198944 ], [ -96.608035694284212, 28.280085858217127 ], [ -96.611581785218618, 28.281296011824402 ], [ -96.610490680315721, 28.283111242235314 ], [ -96.593033001869387, 28.297028008718961 ], [ -96.581030847937541, 28.302272007683815 ], [ -96.5532076729137, 28.302272007683815 ], [ -96.546933819722057, 28.305700776237757 ], [ -96.54202384765901, 28.315987081899582 ], [ -96.528930588824267, 28.322441234471711 ], [ -96.476284777259551, 28.330710617454749 ], [ -96.450916588267233, 28.336963077758995 ], [ -96.434004462272355, 28.344829076206274 ], [ -96.41900176985753, 28.354913689600224 ], [ -96.415182902697396, 28.362779688047503 ], [ -96.417092336277463, 28.367216917940837 ], [ -96.413000692891615, 28.369435532887508 ], [ -96.40318074876555, 28.371452455566299 ], [ -96.401271315185483, 28.366813533405079 ], [ -96.397725224251076, 28.34341723033112 ], [ -96.41381902156877, 28.327281848900803 ], [ -96.439187210561101, 28.319012465917766 ], [ -96.547752148399212, 28.270808013894694 ], [ -96.621401729344683, 28.229662791247389 ], [ -96.694778534064412, 28.182063416027955 ], [ -96.758062618432362, 28.136884348023067 ], [ -96.849715430275594, 28.064880208390278 ], [ -96.853534297435729, 28.061249747568457 ], [ -96.929093311961253, 27.99045576154294 ], [ -96.967009207336872, 27.950520692502906 ], [ -97.001379011778084, 27.911392392534388 ], [ -97.031657172833448, 27.8700454776192 ], [ -97.041749893185226, 27.852901634849491 ], [ -97.045295984119647, 27.837371330222812 ], [ -97.046114312796817, 27.834951023008262 ], [ -97.085394089301062, 27.79320072355732 ], [ -97.116217802807853, 27.752660577713648 ], [ -97.166681404566788, 27.67662259272328 ], [ -97.20186953768517, 27.614904758752317 ], [ -97.221782202163013, 27.576381535587437 ], [ -97.276064671082082, 27.472106633094015 ], [ -97.304433398557364, 27.407766799640626 ], [ -97.326528272841003, 27.347662503812696 ], [ -97.347532042221744, 27.277876979126574 ], [ -97.350532580704709, 27.268195750268383 ], [ -97.363353063313724, 27.210310069387123 ], [ -97.370990797633993, 27.161097156024656 ], [ -97.376991874599923, 27.100992860196726 ], [ -97.379174084405719, 27.047947793744562 ], [ -97.378355755728549, 26.992885804613604 ], [ -97.37071802140828, 26.909788590247473 ], [ -97.36471694444235, 26.871668751618351 ], [ -97.351350909381878, 26.808539071772234 ], [ -97.333074902258375, 26.736534932139445 ], [ -97.30061453139723, 26.635285413664207 ], [ -97.2877940487882, 26.600392651321147 ], [ -97.275246342404898, 26.565499888978088 ], [ -97.269518041664696, 26.554003429708988 ], [ -97.229965488934738, 26.433593145785249 ], [ -97.22369163574308, 26.411406996318561 ], [ -97.194777355816342, 26.306527017021502 ], [ -97.185775740367461, 26.267197024785105 ], [ -97.173228033984159, 26.192369193402012 ], [ -97.161498656278027, 26.088699367712227 ], [ -97.154406474409214, 26.066916602781298 ], [ -97.161498656278027, 26.067723371852814 ], [ -97.169954719275466, 26.077807985246764 ], [ -97.171864152855534, 26.102616134195873 ], [ -97.179501887175803, 26.146181664057728 ], [ -97.178683558498633, 26.177040581043212 ], [ -97.183866306787394, 26.21435365060082 ], [ -97.194504579590628, 26.271634254678442 ], [ -97.214962796519927, 26.353521315437302 ], [ -97.226964950451773, 26.385590386030056 ], [ -97.240330985512244, 26.405961305085832 ], [ -97.240876537963686, 26.411406996318561 ], [ -97.243058747769481, 26.434198222588886 ], [ -97.247695943606786, 26.456182679787691 ], [ -97.254242573024158, 26.471107907610737 ], [ -97.262425859795883, 26.483007751415592 ], [ -97.276337447307796, 26.521732666848354 ], [ -97.292431244625504, 26.527985127152601 ], [ -97.310707251749022, 26.556625429191413 ], [ -97.307979489491771, 26.571147272478697 ], [ -97.308525041943227, 26.57679465597931 ], [ -97.316981104940666, 26.597770651838722 ], [ -97.318344986069292, 26.600190959053268 ], [ -97.324891615486649, 26.611889110590248 ], [ -97.338530426772849, 26.647386949736948 ], [ -97.336348216967053, 26.665942638381811 ], [ -97.34589538486739, 26.700633708456991 ], [ -97.36308028708801, 26.710516629583061 ], [ -97.370445245182552, 26.72382831926307 ], [ -97.370990797633993, 26.736131547603687 ], [ -97.367444706699587, 26.740367085229146 ], [ -97.364171391990908, 26.758922773874012 ], [ -97.36471694444235, 26.76719215685705 ], [ -97.368808587828212, 26.774654770768571 ], [ -97.370445245182552, 26.781512307876454 ], [ -97.368263035376756, 26.79563076662798 ], [ -97.373173007439789, 26.808539071772234 ], [ -97.38735737117743, 26.820842300112851 ], [ -97.383538504017295, 26.875500904708048 ], [ -97.38572071382309, 26.88881259438806 ], [ -97.39172179078902, 26.901922591800194 ], [ -97.389539580983225, 26.945891506197807 ], [ -97.390357909660395, 27.052385023637896 ], [ -97.389812357208953, 27.067310251460942 ], [ -97.38653904250026, 27.08324394062338 ], [ -97.38735737117743, 27.090504862267021 ], [ -97.390630685886123, 27.094135323088842 ], [ -97.390085133434667, 27.156458233863439 ], [ -97.377537427051379, 27.199418686921661 ], [ -97.379992413082888, 27.202847455475602 ], [ -97.38653904250026, 27.204662685886511 ], [ -97.382174622888684, 27.229067450299866 ], [ -97.374809664794128, 27.250245138427157 ], [ -97.373445783665517, 27.276465133251421 ], [ -97.372900231214061, 27.278078671394454 ], [ -97.366899154248145, 27.298651282718108 ], [ -97.36471694444235, 27.302685128075687 ], [ -97.360079748605045, 27.304702050754479 ], [ -97.357624762573522, 27.307929127040541 ], [ -97.362261958410841, 27.326686507953283 ], [ -97.366899154248145, 27.333342352793288 ], [ -97.361716405959385, 27.359965732153313 ], [ -97.346713713544574, 27.390421264603035 ], [ -97.33607544074134, 27.402321108407893 ], [ -97.331165468678307, 27.412405721801843 ], [ -97.329528811323968, 27.418053105302452 ], [ -97.330892692452579, 27.425515719213973 ], [ -97.329801587549696, 27.434390179000648 ], [ -97.31725388116638, 27.463635557843098 ], [ -97.29379512575413, 27.497116474311007 ], [ -97.282884076725168, 27.521521238724361 ], [ -97.266517503181745, 27.54249723458377 ], [ -97.257788663958578, 27.55641400106742 ], [ -97.261880307344427, 27.563473230443183 ], [ -97.260516426215815, 27.567305383532883 ], [ -97.252060363218376, 27.578600150534104 ], [ -97.247968719832514, 27.581423842284408 ], [ -97.247695943606786, 27.581625534552288 ], [ -97.236784894577838, 27.598365992786242 ], [ -97.241149314189414, 27.602399838143821 ], [ -97.24251319531804, 27.607442144840796 ], [ -97.231329370063349, 27.632250293789909 ], [ -97.222054978388741, 27.632855370593546 ], [ -97.219054439905776, 27.630233371111117 ], [ -97.214144467842743, 27.631645216986271 ], [ -97.200778432782272, 27.650200905631134 ], [ -97.197232341847865, 27.664521056650543 ], [ -97.197505118073593, 27.678437823134189 ], [ -97.203506195039523, 27.68448859117056 ], [ -97.202960642588067, 27.687917359724501 ], [ -97.190140159979038, 27.692757974153597 ], [ -97.170500271726922, 27.720389814853014 ], [ -97.166135852115332, 27.732289658657873 ], [ -97.161225880052314, 27.734104889068782 ], [ -97.153588145732044, 27.733298119997265 ], [ -97.147314292540386, 27.735315042676056 ], [ -97.13094771899695, 27.751652116374252 ], [ -97.127947180513985, 27.755887653999711 ], [ -97.127674404288271, 27.75992149935729 ], [ -97.103397320198837, 27.78916687819974 ], [ -97.10230621529594, 27.798243030254291 ], [ -97.098760124361533, 27.80852933591612 ], [ -97.092759047395603, 27.814378411684608 ], [ -97.092486271169889, 27.819219026113704 ], [ -97.098760124361533, 27.822849486935525 ], [ -97.126037746933918, 27.819622410649462 ], [ -97.130402166545508, 27.820429179720978 ], [ -97.134493809931371, 27.825269794150074 ], [ -97.132311600125576, 27.827286716828862 ], [ -97.056752585600051, 27.842211944651908 ], [ -97.055934256922882, 27.843422098259179 ], [ -97.043113774313852, 27.859154095153738 ], [ -97.013653941935672, 27.906753470373172 ], [ -97.018018361547249, 27.911594084802267 ], [ -97.016381704192909, 27.91724146830288 ], [ -96.985830766911832, 27.953949461056851 ], [ -96.977920256365834, 27.976538995059293 ], [ -96.978738585043004, 27.978354225470206 ], [ -96.980920794848799, 27.978354225470206 ], [ -96.986103543137546, 27.976135610523535 ], [ -96.986649095589001, 27.980774532684752 ], [ -96.978193032591562, 28.001750528544164 ], [ -96.967827536014056, 28.020104524921148 ], [ -96.966736431111158, 28.020306217189027 ], [ -96.965099773756805, 28.013246987813265 ], [ -96.962644787725296, 28.012440218741748 ], [ -96.952552067373517, 28.016474064099327 ], [ -96.947096542859029, 28.026558677493277 ], [ -96.932366626669946, 28.035433137279949 ], [ -96.926365549704016, 28.043500827995107 ], [ -96.929638864412709, 28.051366826442386 ], [ -96.927183878381186, 28.057215902210878 ], [ -96.905907332774717, 28.076174975391499 ], [ -96.890904640359906, 28.076780052195137 ], [ -96.886267444522602, 28.084444358374537 ], [ -96.888449654328383, 28.086662973321204 ], [ -96.888995206779839, 28.099369586197579 ], [ -96.886812996974044, 28.117118505770929 ], [ -96.879448038879502, 28.131438656790333 ], [ -96.875083619267912, 28.133253887201246 ], [ -96.870719199656335, 28.131236964522454 ], [ -96.864718122690419, 28.126396350093358 ], [ -96.85708038837015, 28.115504967627896 ], [ -96.845351010664018, 28.108849122787891 ], [ -96.830075542023479, 28.111874506806075 ] ] ], [ [ [ -94.485836658152138, 33.637839262153825 ], [ -94.478471700057597, 33.620897111651992 ], [ -94.470833965737327, 33.60597188382895 ], [ -94.464287336319956, 33.598912654453187 ], [ -94.409459314949444, 33.568255429735586 ], [ -94.355995174707559, 33.543245588518595 ], [ -94.257795733446955, 33.582575580754991 ], [ -94.252612985158194, 33.586206041576808 ], [ -94.181691166469975, 33.593265270952571 ], [ -94.08512838256371, 33.575516351379228 ], [ -94.066852375440206, 33.568860506539224 ], [ -94.043393620027956, 33.552321740573149 ], [ -94.043393620027956, 33.551514971501632 ], [ -94.043393620027956, 33.542237127179199 ], [ -94.043120843802228, 33.493024213816732 ], [ -94.043393620027956, 33.49100729113794 ], [ -94.043120843802228, 33.47023298754641 ], [ -94.043120843802228, 33.435743609739106 ], [ -94.043120843802228, 33.431104687577893 ], [ -94.0428480675765, 33.420213305112426 ], [ -94.043120843802228, 33.377656236589964 ], [ -94.0428480675765, 33.371202084017838 ], [ -94.043120843802228, 33.358697163409346 ], [ -94.043120843802228, 33.352041318569334 ], [ -94.043120843802228, 33.347402396408121 ], [ -94.043120843802228, 33.330460245906288 ], [ -94.043120843802228, 33.271162719149878 ], [ -94.043120843802228, 33.271162719149878 ], [ -94.043120843802228, 33.260876413488049 ], [ -94.043120843802228, 33.250186723290462 ], [ -94.0428480675765, 33.241917340307424 ], [ -94.0428480675765, 33.215293960947406 ], [ -94.0428480675765, 33.202587348071027 ], [ -94.0428480675765, 33.199763656320727 ], [ -94.043120843802228, 33.143491513582489 ], [ -94.043120843802228, 33.138247514617639 ], [ -94.043120843802228, 33.133810284724305 ], [ -94.0428480675765, 33.092665062076996 ], [ -94.043120843802228, 33.079555064664859 ], [ -94.0428480675765, 33.019249076569054 ], [ -94.043120843802228, 32.955514319919303 ], [ -94.043120843802228, 32.937967092613832 ], [ -94.043120843802228, 32.90993186737866 ], [ -94.0428480675765, 32.898838792645314 ], [ -94.0428480675765, 32.892788024608947 ], [ -94.0428480675765, 32.881089873071964 ], [ -94.0428480675765, 32.880888180804085 ], [ -94.043120843802228, 32.880484796268327 ], [ -94.0428480675765, 32.871408644213773 ], [ -94.043120843802228, 32.7973875819022 ], [ -94.0428480675765, 32.786899583972492 ], [ -94.0428480675765, 32.785286045829459 ], [ -94.0428480675765, 32.780647123668246 ], [ -94.043120843802228, 32.776814970578542 ], [ -94.0428480675765, 32.767940510791874 ], [ -94.043120843802228, 32.693112679408777 ], [ -94.043120843802228, 32.693112679408777 ], [ -94.0428480675765, 32.655194533047535 ], [ -94.0428480675765, 32.643496381510552 ], [ -94.0428480675765, 32.640269305224486 ], [ -94.0428480675765, 32.621915308847505 ], [ -94.0428480675765, 32.618284848025681 ], [ -94.0428480675765, 32.610217157310522 ], [ -94.043120843802228, 32.564231320234121 ], [ -94.043120843802228, 32.559592398072908 ], [ -94.043120843802228, 32.5136065609965 ], [ -94.0428480675765, 32.505135485745583 ], [ -94.0428480675765, 32.49283225740497 ], [ -94.043120843802228, 32.486579797100717 ], [ -94.043120843802228, 32.484361182154053 ], [ -94.0428480675765, 32.480327336796471 ], [ -94.043120843802228, 32.477907029581928 ], [ -94.0428480675765, 32.47286472288495 ], [ -94.0428480675765, 32.471251184741917 ], [ -94.0428480675765, 32.4704444156704 ], [ -94.0428480675765, 32.439988883220678 ], [ -94.043120843802228, 32.435551653327344 ], [ -94.0428480675765, 32.400658890984282 ], [ -94.0428480675765, 32.399852121912765 ], [ -94.0428480675765, 32.392187815733365 ], [ -94.0428480675765, 32.373430434820619 ], [ -94.0428480675765, 32.363547513694556 ], [ -94.0428480675765, 32.269760609130842 ], [ -94.0428480675765, 32.269558916862962 ], [ -94.042575291350772, 32.218127388553825 ], [ -94.042575291350772, 32.195941239087141 ], [ -94.042575291350772, 32.166897552512566 ], [ -94.042575291350772, 32.166897552512566 ], [ -94.042575291350772, 32.158023092725898 ], [ -94.042575291350772, 32.138055558205878 ], [ -94.042302515125044, 32.119903254096769 ], [ -94.042575291350772, 32.055966805179139 ], [ -94.0428480675765, 31.999291277905151 ], [ -94.015570445004101, 31.979928820188775 ], [ -93.975472339822687, 31.923656677450545 ], [ -93.932100919932594, 31.893604529536578 ], [ -93.920371542226462, 31.888562222839603 ], [ -93.889275052493929, 31.856896536782607 ], [ -93.878091227239253, 31.844189923906232 ], [ -93.839902555637906, 31.800624394044377 ], [ -93.812352156839793, 31.715308564731579 ], [ -93.816989352677098, 31.671743034869721 ], [ -93.826263744351706, 31.614865815327853 ], [ -93.834992583574873, 31.586225513289044 ], [ -93.834992583574873, 31.586225513289044 ], [ -93.818626010031437, 31.554761519499927 ], [ -93.798167793102152, 31.53398721590839 ], [ -93.729700960445442, 31.488001378831989 ], [ -93.695876708455671, 31.409341394359195 ], [ -93.67023574323764, 31.387155244892508 ], [ -93.640775910859446, 31.372633401605224 ], [ -93.671599624366252, 31.29962080063304 ], [ -93.644322001793853, 31.277031266630594 ], [ -93.620863246381603, 31.271383883129985 ], [ -93.614316616964231, 31.260895885200277 ], [ -93.608042763772573, 31.22781835326813 ], [ -93.607224435095404, 31.204825434729926 ], [ -93.602314463032371, 31.181832516191726 ], [ -93.599586700775134, 31.176386824958996 ], [ -93.598768372097965, 31.174773286815963 ], [ -93.588402875520458, 31.16549544249353 ], [ -93.579128483845835, 31.167512365172321 ], [ -93.55266918995062, 31.185664669281429 ], [ -93.55266918995062, 31.185664669281429 ], [ -93.548850322790486, 31.186673130620822 ], [ -93.535211511504286, 31.185664669281429 ], [ -93.53166542056988, 31.18082405485233 ], [ -93.527573777184017, 31.07453222968012 ], [ -93.540394259793047, 31.008175473547944 ], [ -93.53084709189271, 30.924473182378172 ], [ -93.554578623530688, 30.877478883962375 ], [ -93.554851399756416, 30.876672114890859 ], [ -93.55867026691655, 30.869411193247217 ], [ -93.55867026691655, 30.868806116443579 ], [ -93.563307462753855, 30.81858474174172 ], [ -93.57831015516868, 30.802045975775645 ], [ -93.727791526865374, 30.57413371307242 ], [ -93.740066457022948, 30.538837566193603 ], [ -93.710061072193326, 30.50636511106509 ], [ -93.697786142035739, 30.44384050802261 ], [ -93.698331694487194, 30.43859650905776 ], [ -93.702696114098785, 30.429923741538964 ], [ -93.741703114377302, 30.40309866991106 ], [ -93.751523058503352, 30.396241132803176 ], [ -93.757524135469282, 30.390392057034688 ], [ -93.765707422241007, 30.333313145224942 ], [ -93.7359748136371, 30.299428844221275 ], [ -93.723699883479526, 30.294991614327941 ], [ -93.720699344996561, 30.296000075667337 ], [ -93.71633492538497, 30.24436685509032 ], [ -93.711970505773394, 30.194347172656336 ], [ -93.695331156004229, 30.147554566508418 ], [ -93.695603932229957, 30.135654722703563 ], [ -93.711970505773394, 30.067281043892592 ], [ -93.721517673673731, 30.051952431533792 ], [ -93.722608778576628, 30.050943970194396 ], [ -93.752068610954808, 30.016454592387095 ], [ -93.756705806792112, 30.014235977440428 ], [ -93.789438953878985, 29.987814290348282 ], [ -93.840720884315076, 29.91439830484034 ], [ -93.890638933622554, 29.843200934279068 ], [ -93.898549444168552, 29.771600179182037 ], [ -93.892275590976908, 29.765146026609912 ], [ -93.837993122057838, 29.690519887494695 ], [ -93.852995814472649, 29.675796351939532 ], [ -93.866907401984577, 29.673174352457103 ], [ -93.890093381171113, 29.67398112152862 ], [ -93.931009815029697, 29.679628505029232 ], [ -94.001386081266475, 29.681443735440141 ], [ -94.0564868788627, 29.671157429778315 ], [ -94.132591445839665, 29.646147588561327 ], [ -94.354085741127491, 29.56143683605216 ], [ -94.370997867122369, 29.554982683480034 ], [ -94.500839350566963, 29.505366385581809 ], [ -94.594947148441705, 29.467851623756324 ], [ -94.63095361023727, 29.451514550058128 ], [ -94.670506162967229, 29.430740246466595 ], [ -94.694237694605221, 29.415613326375674 ], [ -94.708422058342848, 29.403108405767178 ], [ -94.723970303209114, 29.38334256351504 ], [ -94.731062485077942, 29.369224104763511 ], [ -94.744701296364141, 29.369224104763511 ], [ -94.761613422359019, 29.361963183119869 ], [ -94.778798324579626, 29.361559798584111 ], [ -94.782344415514032, 29.364181798066539 ], [ -94.783162744191202, 29.37567825733564 ], [ -94.76679617064778, 29.393427176908986 ], [ -94.75397568803875, 29.401091483088386 ], [ -94.723697526983386, 29.426504708841136 ], [ -94.706239848537066, 29.436791014502965 ], [ -94.686327184059223, 29.46643977788117 ], [ -94.681417211996191, 29.471482084578145 ], [ -94.672415596547296, 29.476927775810879 ], [ -94.665868967129924, 29.478339621686033 ], [ -94.656867351681029, 29.477936237150274 ], [ -94.645956302652081, 29.473700699524812 ], [ -94.628225847980019, 29.475919314471483 ], [ -94.608585959727904, 29.483381928383004 ], [ -94.594128819764535, 29.4920546959018 ], [ -94.595492700893146, 29.507585000528479 ], [ -94.591401057507298, 29.513837460832725 ], [ -94.580217232252608, 29.525333920101829 ], [ -94.566578420966422, 29.531989764941834 ], [ -94.554030714583121, 29.529569457727284 ], [ -94.546938532714293, 29.524325458762434 ], [ -94.532481392750924, 29.517871306190308 ], [ -94.510932070918741, 29.519686536601217 ], [ -94.495111049826761, 29.524930535566071 ], [ -94.503294336598472, 29.543284531943055 ], [ -94.509568189790116, 29.542679455139421 ], [ -94.511204847144469, 29.542881147407297 ], [ -94.522388672399146, 29.545704839157601 ], [ -94.523752553527771, 29.54590653142548 ], [ -94.52620753955928, 29.552562376265488 ], [ -94.531935840299482, 29.55841145203398 ], [ -94.541210231974091, 29.56748760408853 ], [ -94.542574113102717, 29.568899449963681 ], [ -94.546392980262851, 29.572126526249747 ], [ -94.554030714583121, 29.573941756660659 ], [ -94.570124511900829, 29.572328218517626 ], [ -94.570670064352271, 29.571924833981868 ], [ -94.570942840577999, 29.571723141713989 ], [ -94.57830779867254, 29.567285911820651 ], [ -94.593583267313079, 29.56123514378428 ], [ -94.610222617082243, 29.556999606158826 ], [ -94.618133127628241, 29.554780991212155 ], [ -94.621951994788375, 29.553974222140639 ], [ -94.621951994788375, 29.553772529872759 ], [ -94.62577086194851, 29.552764068533367 ], [ -94.682781093124802, 29.539855763389113 ], [ -94.689327722542174, 29.53824222524608 ], [ -94.691509932347969, 29.537838840710322 ], [ -94.718242002468912, 29.533603303084867 ], [ -94.740609652978279, 29.525938996905467 ], [ -94.755612345393089, 29.524728843298192 ], [ -94.757794555198885, 29.524527151030313 ], [ -94.757794555198885, 29.524527151030313 ], [ -94.757794555198885, 29.524728843298192 ], [ -94.767341723099221, 29.525535612369708 ], [ -94.768705604227847, 29.525737304637587 ], [ -94.769523932905017, 29.525938996905467 ], [ -94.769523932905017, 29.526140689173346 ], [ -94.770887814033628, 29.526544073709104 ], [ -94.774706681193763, 29.528359304120013 ], [ -94.774706681193763, 29.528359304120013 ], [ -94.779616653256795, 29.53057791906668 ], [ -94.779616653256795, 29.53057791906668 ], [ -94.779889429482523, 29.53057791906668 ], [ -94.780980534385421, 29.531182995870317 ], [ -94.783162744191202, 29.535216841227896 ], [ -94.783981072868386, 29.53662868710305 ], [ -94.786436058899895, 29.541065916996388 ], [ -94.786708835125623, 29.541267609264267 ], [ -94.78943659738286, 29.546511608229117 ], [ -94.790527702285758, 29.54832683864003 ], [ -94.779343877031067, 29.549536992247305 ], [ -94.771160590259356, 29.548528530907909 ], [ -94.755339569167376, 29.562848681927314 ], [ -94.734608576012349, 29.584026370054605 ], [ -94.708694834568576, 29.625171592701911 ], [ -94.693146589702309, 29.694553732852278 ], [ -94.692328261025153, 29.703629884906828 ], [ -94.695328799508104, 29.722992342623208 ], [ -94.72451585566057, 29.774827255468104 ], [ -94.735154128463805, 29.785516945665684 ], [ -94.740882429204007, 29.787130483808717 ], [ -94.771433366485084, 29.773818794128708 ], [ -94.792164359640097, 29.767364641556579 ], [ -94.816168667503803, 29.756674951358995 ], [ -94.851084024396471, 29.721378804480175 ], [ -94.864995611908384, 29.695360501923791 ], [ -94.867450597939893, 29.678821735957719 ], [ -94.872633346228653, 29.671157429778315 ], [ -94.893091563157952, 29.661274508652248 ], [ -94.915459213667305, 29.656635586491031 ], [ -94.921187514407507, 29.658249124634061 ], [ -94.931280234759299, 29.67377942926074 ], [ -94.93428077324225, 29.67862004368984 ], [ -94.936190206822317, 29.692738502441365 ], [ -94.942736836239703, 29.697780809138337 ], [ -94.965922815426239, 29.700402808620765 ], [ -94.972742221069325, 29.684872503994086 ], [ -94.988836018387047, 29.672165891117711 ], [ -95.005475368156198, 29.659459278241336 ], [ -95.005748144381926, 29.659055893705577 ], [ -95.006293696833367, 29.657845740098303 ], [ -95.007657577961993, 29.656030509687394 ], [ -95.010930892670672, 29.65078651072254 ], [ -95.011749221347856, 29.649778049383144 ], [ -95.012840326250739, 29.647156049900719 ], [ -95.013658654927923, 29.644332358150415 ], [ -95.01556808850799, 29.639491743721319 ], [ -95.01556808850799, 29.63929005145344 ], [ -95.013658654927923, 29.629810514863131 ], [ -95.013385878702195, 29.629205438059493 ], [ -95.011749221347856, 29.627793592184339 ], [ -95.000838172318893, 29.619322516933423 ], [ -95.000565396093165, 29.619120824665544 ], [ -94.999474291190268, 29.618314055594027 ], [ -94.999201514964554, 29.618112363326148 ], [ -94.988836018387047, 29.610044672610989 ], [ -94.984744375001185, 29.604397289110381 ], [ -94.982834941421117, 29.601573597360073 ], [ -94.982834941421117, 29.601371905092194 ], [ -94.982834941421117, 29.601170212824314 ], [ -94.982834941421117, 29.600968520556435 ], [ -94.989108794612761, 29.591085599430368 ], [ -95.007657577961993, 29.574345141196417 ], [ -95.016113640959432, 29.559419913373372 ], [ -95.01638641718516, 29.559016528837613 ], [ -95.016659193410874, 29.55841145203398 ], [ -95.016659193410874, 29.55841145203398 ], [ -95.018295850765227, 29.554982683480034 ], [ -95.018295850765227, 29.554579298944276 ], [ -95.018295850765227, 29.554579298944276 ], [ -95.016931969636602, 29.54832683864003 ], [ -95.015295312282262, 29.540057455656992 ], [ -95.013385878702195, 29.537838840710322 ], [ -94.999474291190268, 29.521098382476367 ], [ -94.982016612743948, 29.5112154613503 ], [ -94.958557857331684, 29.50496300104605 ], [ -94.934826325693706, 29.501130847956354 ], [ -94.933462444565095, 29.500929155688475 ], [ -94.932916892113639, 29.500727463420596 ], [ -94.91000368915283, 29.496895310330892 ], [ -94.909458136701375, 29.496895310330892 ], [ -94.913277003861509, 29.487214081472704 ], [ -94.925824710244825, 29.469061777363599 ], [ -94.930734682307843, 29.450506088718733 ], [ -94.919278080827439, 29.448085781504187 ], [ -94.890909353352157, 29.43336224594902 ], [ -94.88736326241775, 29.415209941839915 ], [ -94.886544933740566, 29.36640041301321 ], [ -94.894182668060836, 29.337961803242273 ], [ -94.893909891835122, 29.308111347596189 ], [ -94.886544933740566, 29.29782504193436 ], [ -94.875906660937346, 29.292984427505267 ], [ -94.864995611908384, 29.293992888844663 ], [ -94.849720143267845, 29.297421657398601 ], [ -94.82489750672697, 29.306094424917397 ], [ -94.822442520695461, 29.321826421811956 ], [ -94.822442520695461, 29.344214263546522 ], [ -94.810713142989329, 29.353492107868952 ], [ -94.784799401545555, 29.335541496027727 ], [ -94.779889429482523, 29.334936419224089 ], [ -94.777161667225286, 29.336751649634998 ], [ -94.745519625041311, 29.334331342420455 ], [ -94.744974072589855, 29.33634826509924 ], [ -94.73133526130367, 29.338163495510152 ], [ -94.722606422080503, 29.331507650670147 ], [ -94.731062485077942, 29.331911035205906 ], [ -94.769796709130731, 29.304884271310122 ], [ -94.786163282674167, 29.290765812558597 ], [ -94.803620961120501, 29.279269353289497 ], [ -95.02620636131121, 29.147967686900294 ], [ -95.081852711358891, 29.111259694146323 ], [ -95.110494215059902, 29.088266775608119 ], [ -95.119223054283069, 29.077778777678414 ], [ -95.122496368991762, 29.073946624588714 ], [ -95.125224131248999, 29.06729077974871 ], [ -95.191508754099914, 29.023120173083218 ], [ -95.238971817375869, 28.988630795275917 ], [ -95.272250516914198, 28.961604031380134 ], [ -95.297073153455074, 28.933972190680716 ], [ -95.309620859838361, 28.928324807180104 ], [ -95.35353783217991, 28.898070966998262 ], [ -95.376996587592174, 28.876086509799457 ], [ -95.382452112106648, 28.866405280941265 ], [ -95.416276364096419, 28.859547743833382 ], [ -95.439462343282955, 28.858942667029744 ], [ -95.486652630333197, 28.836353133027302 ], [ -95.507110847262481, 28.824654981490319 ], [ -95.568212721824636, 28.789963911415139 ], [ -95.812620220073271, 28.664914705330183 ], [ -95.884087591212932, 28.633047327005308 ], [ -96.00056303959704, 28.588271643536178 ], [ -96.077758711476918, 28.556605957479182 ], [ -96.194506936086754, 28.502149045151864 ], [ -96.220420677530527, 28.492064431757914 ], [ -96.244697761619946, 28.475122281256084 ], [ -96.270338726837991, 28.462012283843951 ], [ -96.303344650150592, 28.441843057056055 ], [ -96.321620657274096, 28.4251025988221 ], [ -96.328712839142923, 28.423690752946946 ], [ -96.341533321751939, 28.417236600374821 ], [ -96.370993154130119, 28.397672450390562 ], [ -96.372084259033016, 28.393840297300862 ], [ -96.370720377904405, 28.387587836996616 ], [ -96.378630888450388, 28.383957376174791 ], [ -96.379449217127558, 28.386175991121462 ], [ -96.381904203159081, 28.393235220497225 ], [ -96.375903126193151, 28.401706295748141 ], [ -96.374266468838812, 28.404328295230567 ], [ -96.334986692334567, 28.437809211698475 ], [ -96.268429293257924, 28.477945973006388 ], [ -96.223693992239205, 28.495089815776097 ], [ -96.219056796401901, 28.500333814740952 ], [ -96.214965153016038, 28.509611659063385 ], [ -96.145407215456444, 28.544706113674323 ], [ -96.104763557823588, 28.559429649229486 ], [ -96.046116669292942, 28.587061489928907 ], [ -96.033023410458185, 28.589078412607694 ], [ -96.007655221465868, 28.599768102805278 ], [ -95.986105899633685, 28.606222255377407 ], [ -95.982014256247822, 28.614491638360445 ], [ -95.985560347182229, 28.621147483200449 ], [ -95.98310536115072, 28.641921786791983 ], [ -95.978468165313416, 28.650594554310779 ], [ -95.986105899633685, 28.655435168739871 ], [ -95.996471396211192, 28.658662245025937 ], [ -96.003018025628563, 28.656241937811387 ], [ -96.00656411656297, 28.64797255482835 ], [ -96.033568962909641, 28.65261147698957 ], [ -96.047753326647282, 28.648981016167745 ], [ -96.072030410736716, 28.635265941951978 ], [ -96.099035257083386, 28.624576251754391 ], [ -96.148407753939409, 28.611466254342261 ], [ -96.187141977992212, 28.593515642501032 ], [ -96.198325803246888, 28.587061489928907 ], [ -96.221784558659138, 28.580405645088899 ], [ -96.228876740527966, 28.580809029624657 ], [ -96.234059488816712, 28.596742718787095 ], [ -96.234059488816712, 28.60178502548407 ], [ -96.222330111110594, 28.607432408984678 ], [ -96.214146824338869, 28.613483177021049 ], [ -96.212510166984529, 28.622559329075603 ], [ -96.231058950333761, 28.641518402256224 ], [ -96.208418523598667, 28.662292705847758 ], [ -96.214692376790325, 28.665318089865941 ], [ -96.192324726280958, 28.687705931600505 ], [ -96.191233621378061, 28.694361776440513 ], [ -96.195870817215365, 28.699000698601729 ], [ -96.202417446632751, 28.701017621280517 ], [ -96.222875663562036, 28.698395621798092 ], [ -96.231331726559475, 28.6963786991193 ], [ -96.25697269177752, 28.684680547582325 ], [ -96.263519321194906, 28.683672086242929 ], [ -96.268702069483652, 28.6887143929399 ], [ -96.288069181510053, 28.683067009439291 ], [ -96.304162978827762, 28.671368857902308 ], [ -96.305254083730659, 28.66027578316897 ], [ -96.30361742637632, 28.644947170810166 ], [ -96.322984538402721, 28.641921786791983 ], [ -96.328712839142923, 28.640913325452587 ], [ -96.373448140161642, 28.626593174433182 ], [ -96.376448678644607, 28.620139021861057 ], [ -96.384631965416318, 28.615903484235595 ], [ -96.473829791228042, 28.573144723445257 ], [ -96.488014154965683, 28.569715954891315 ], [ -96.482831406676922, 28.580405645088899 ], [ -96.480376420645413, 28.596742718787095 ], [ -96.485831945159887, 28.607835793520437 ], [ -96.490469140997192, 28.610861177538624 ], [ -96.510927357926491, 28.614895022896203 ], [ -96.510381805475049, 28.617517022378628 ], [ -96.497561322866019, 28.625181328558028 ], [ -96.496470217963122, 28.630828712058641 ], [ -96.499743532671815, 28.635871018755616 ], [ -96.506290162089186, 28.638291325970162 ], [ -96.545569938593431, 28.645552247613804 ], [ -96.555117106493768, 28.645955632149562 ], [ -96.563300393265479, 28.644543786274411 ], [ -96.572847561165815, 28.66794008934837 ], [ -96.570392575134306, 28.673990857384737 ], [ -96.55920874987963, 28.687302547064746 ], [ -96.559754302331072, 28.691336392422329 ], [ -96.561118183459698, 28.6963786991193 ], [ -96.5668464841999, 28.697992237262334 ], [ -96.575029770971611, 28.702832851691429 ], [ -96.577757533228848, 28.704446389834459 ], [ -96.578030309454576, 28.704446389834459 ], [ -96.579666966808915, 28.712312388281738 ], [ -96.579666966808915, 28.712514080549617 ], [ -96.580485295486085, 28.716749618175079 ], [ -96.584031386420506, 28.722800386211446 ], [ -96.584031386420506, 28.722800386211446 ], [ -96.58430416264622, 28.722800386211446 ], [ -96.591669120740775, 28.724817308890238 ], [ -96.593851330546556, 28.725422385693872 ], [ -96.605035155801247, 28.722195309407809 ], [ -96.634494988179426, 28.713724234156892 ], [ -96.635040540630882, 28.713522541889013 ], [ -96.64595158965983, 28.710497157870829 ], [ -96.648679351917067, 28.709690388799313 ], [ -96.655498757560167, 28.70424469756658 ], [ -96.664500373009048, 28.696983775922938 ], [ -96.65795374359169, 28.687705931600505 ], [ -96.635040540630882, 28.668948550687762 ], [ -96.63394943572797, 28.654628399668358 ], [ -96.627948358762055, 28.649989477507141 ], [ -96.62331116292475, 28.649586092971383 ], [ -96.615673428604481, 28.644543786274411 ], [ -96.610490680315721, 28.638896402773796 ], [ -96.610490680315721, 28.636274403291374 ], [ -96.619765071990329, 28.627601635772578 ], [ -96.622765610473294, 28.622155944539845 ], [ -96.611036232767162, 28.586053028589511 ], [ -96.608035694284212, 28.583431029107082 ], [ -96.573938666068713, 28.584439490446478 ], [ -96.565209826845546, 28.58242256776769 ], [ -96.564391498168376, 28.576371799731319 ], [ -96.561118183459698, 28.570724416230711 ], [ -96.536295546918808, 28.559429649229486 ], [ -96.52620282656703, 28.558017803354335 ], [ -96.522111183181181, 28.554387342532515 ], [ -96.514473448860912, 28.535024884816131 ], [ -96.50574460963773, 28.525948732761581 ], [ -96.450371035815778, 28.490854278150643 ], [ -96.4198200985347, 28.467457975076684 ], [ -96.410545706860091, 28.459188592093646 ], [ -96.402362420088366, 28.449103978699696 ], [ -96.40399907744272, 28.442448133859692 ], [ -96.461554861070468, 28.421673830268158 ], [ -96.481740301774039, 28.407757063784508 ], [ -96.504653504734847, 28.397672450390562 ], [ -96.520474525826828, 28.394041989568741 ], [ -96.542842176336194, 28.385369222049945 ], [ -96.559754302331072, 28.377906608138424 ], [ -96.570392575134306, 28.368628763815991 ], [ -96.591669120740775, 28.357535689082649 ], [ -96.600397959963942, 28.354308612796586 ], [ -96.650861561722863, 28.346845998885065 ], [ -96.672683659780773, 28.335551231883841 ], [ -96.688504680872768, 28.347249383420824 ], [ -96.694505757838684, 28.347249383420824 ], [ -96.698051848773105, 28.342610461259603 ], [ -96.705144030641918, 28.348862921563853 ], [ -96.700234058578886, 28.369637225155387 ], [ -96.705689583093374, 28.400294449872987 ], [ -96.710326778930678, 28.406748602445113 ], [ -96.722601709088252, 28.408765525123904 ], [ -96.749061002983467, 28.408765525123904 ], [ -96.76215426181821, 28.411992601409967 ], [ -96.767064233881257, 28.410782447802696 ], [ -96.768428115009868, 28.410379063266937 ], [ -96.772246982170003, 28.408160448320267 ], [ -96.776065849330138, 28.405740141105721 ], [ -96.780703045167442, 28.398479219462079 ], [ -96.790250213067779, 28.383957376174791 ], [ -96.794614632679369, 28.365603379797808 ], [ -96.794887408905083, 28.364594918458412 ], [ -96.794887408905083, 28.364594918458412 ], [ -96.794887408905083, 28.364594918458412 ], [ -96.794887408905083, 28.364594918458412 ], [ -96.794341856453642, 28.350879844242641 ], [ -96.794341856453642, 28.349266306099612 ], [ -96.794069080227914, 28.347249383420824 ], [ -96.7937963040022, 28.346644306617186 ], [ -96.7937963040022, 28.346039229813549 ], [ -96.7937963040022, 28.345434153009911 ], [ -96.792432422873574, 28.336761385491116 ], [ -96.790795765519235, 28.323853080346861 ], [ -96.791068541744949, 28.319012465917766 ], [ -96.791886870422132, 28.312154928809882 ], [ -96.806071234159774, 28.296826316451082 ], [ -96.80961732509418, 28.290372163878956 ], [ -96.806071234159774, 28.282102780895919 ], [ -96.799251828516674, 28.272623244305606 ], [ -96.787249674584814, 28.255681093803773 ], [ -96.787249674584814, 28.250033710303164 ], [ -96.800342933419572, 28.224217100014656 ], [ -96.810162877545622, 28.217157870638893 ], [ -96.842077695955325, 28.193559875297055 ], [ -96.872628633236403, 28.176214340259463 ], [ -96.897996822228734, 28.152818037185504 ], [ -96.910271752386308, 28.147372345952771 ], [ -96.934821612701455, 28.123774350610933 ], [ -96.962644787725296, 28.123370966075175 ], [ -97.000287906875201, 28.137691117094583 ], [ -97.007652864969742, 28.13607757895155 ], [ -97.027292753221872, 28.124379427414571 ], [ -97.028929410576211, 28.117320198038808 ], [ -97.022928333610281, 28.107638969180616 ], [ -97.023746662287451, 28.103605123823037 ], [ -97.031929949059176, 28.093923894964849 ], [ -97.035476039993583, 28.084646050642416 ], [ -97.035476039993583, 28.073956360444832 ], [ -97.03138439660772, 28.053585441389057 ], [ -97.025928872093246, 28.041887289852077 ], [ -97.030838844156278, 28.033214522333282 ], [ -97.040658788282343, 28.028777292439944 ], [ -97.048842075054054, 28.022121447599936 ], [ -97.061935333888798, 27.996103145043552 ], [ -97.075846921400725, 27.987026992988998 ], [ -97.121400551096613, 27.923292236339247 ], [ -97.129038285416883, 27.919863467785305 ], [ -97.134766586157085, 27.902517932747713 ], [ -97.135857691059982, 27.89949254872953 ], [ -97.136676019737152, 27.898887471925892 ], [ -97.144313754057421, 27.894450242032555 ], [ -97.155224803086384, 27.880533475548908 ], [ -97.183320754335938, 27.833135792597353 ], [ -97.184684635464563, 27.831320562186441 ], [ -97.186594069044631, 27.825471486417953 ], [ -97.186866845270359, 27.825068101882195 ], [ -97.187139621496073, 27.824059640542799 ], [ -97.188776278850426, 27.82385794827492 ], [ -97.192867922236275, 27.822849486935525 ], [ -97.193686250913458, 27.822849486935525 ], [ -97.196959565622137, 27.822042717864008 ], [ -97.209234495779725, 27.822042717864008 ], [ -97.209507272005439, 27.822042717864008 ], [ -97.211143929359793, 27.822446102399766 ], [ -97.219872768582945, 27.82385794827492 ], [ -97.220691097260129, 27.824059640542799 ], [ -97.222327754614469, 27.824664717346437 ], [ -97.22287330706591, 27.824866409614316 ], [ -97.225055516871706, 27.825673178685832 ], [ -97.225328293097419, 27.826076563221591 ], [ -97.225873845548875, 27.826681640025225 ], [ -97.226146621774603, 27.827085024560983 ], [ -97.227237726677487, 27.829303639507653 ], [ -97.227237726677487, 27.830917177650683 ], [ -97.227237726677487, 27.831320562186441 ], [ -97.227237726677487, 27.832934100329474 ], [ -97.227237726677487, 27.832934100329474 ], [ -97.226419398000331, 27.838379791562204 ], [ -97.228328831580399, 27.843623790527058 ], [ -97.234602684772042, 27.849069481759791 ], [ -97.241149314189414, 27.857742249278587 ], [ -97.241422090415142, 27.858952402885858 ], [ -97.242785971543753, 27.86480147865435 ], [ -97.242785971543753, 27.865204863190108 ], [ -97.250696482089751, 27.876096245655571 ], [ -97.256424782829953, 27.87791147606648 ], [ -97.25833421641002, 27.878516552870117 ], [ -97.262971412247325, 27.88013009101315 ], [ -97.272245803921948, 27.881340244620425 ], [ -97.273609685050559, 27.881541936888304 ], [ -97.276610223533524, 27.881138552352546 ], [ -97.285339062756691, 27.879726706477392 ], [ -97.295159006882756, 27.878113168334359 ], [ -97.301432860074399, 27.875894553387692 ], [ -97.317799433617836, 27.87024716988708 ], [ -97.325164391712377, 27.867826862672533 ], [ -97.3276193777439, 27.866415016797383 ], [ -97.354624224090571, 27.84947286629555 ], [ -97.360079748605045, 27.850683019902821 ], [ -97.360625301056487, 27.850279635367066 ], [ -97.361170853507943, 27.849876250831308 ], [ -97.379174084405719, 27.837774714758567 ], [ -97.39172179078902, 27.81397502714885 ], [ -97.39335844814336, 27.782914417895491 ], [ -97.386266266274532, 27.766577344197295 ], [ -97.368263035376756, 27.741769195248182 ], [ -97.346986489770302, 27.725432121549986 ], [ -97.316435552489224, 27.712725508673614 ], [ -97.253969796798444, 27.696791819511176 ], [ -97.25997087376436, 27.679647976741464 ], [ -97.26597195073029, 27.678639515402068 ], [ -97.296522888011367, 27.613896297412921 ], [ -97.298705097817162, 27.604820145358371 ], [ -97.297613992914265, 27.598769377322 ], [ -97.294067901979858, 27.594130455160784 ], [ -97.302251188751569, 27.585861072177746 ], [ -97.32161830077797, 27.571137536622583 ], [ -97.325164391712377, 27.560851230960758 ], [ -97.336893769418509, 27.527370314492849 ], [ -97.343440398835881, 27.517689085634657 ], [ -97.347532042221744, 27.502965550079495 ], [ -97.350532580704709, 27.47856078566614 ], [ -97.359261419927876, 27.458189866610365 ], [ -97.365808049345247, 27.450525560430965 ], [ -97.371809126311177, 27.425112334678218 ], [ -97.36989969273111, 27.412405721801843 ], [ -97.372900231214061, 27.401312647068501 ], [ -97.379446860631447, 27.390017880067276 ], [ -97.39935952510929, 27.344637119794513 ], [ -97.401814511140799, 27.335560967739958 ], [ -97.405087825849492, 27.329913584239346 ], [ -97.413271112621203, 27.321240816720554 ], [ -97.420363294490031, 27.317206971362971 ], [ -97.430456014841809, 27.313778202809029 ], [ -97.450914231771108, 27.313778202809029 ], [ -97.482829050180811, 27.297844513646591 ], [ -97.508197239173128, 27.27505328737627 ], [ -97.532201547036834, 27.278482055930212 ], [ -97.544476477194408, 27.284129439430824 ], [ -97.546931463225917, 27.290785284270829 ], [ -97.536838742874139, 27.289171746127799 ], [ -97.52674602252236, 27.291793745610224 ], [ -97.524563812716565, 27.297844513646591 ], [ -97.517471630847737, 27.305105435290237 ], [ -97.504651148238722, 27.305105435290237 ], [ -97.49810451882135, 27.308534203844175 ], [ -97.502741714658654, 27.322249278059946 ], [ -97.499195623724233, 27.327896661560558 ], [ -97.483920155083695, 27.338586351758142 ], [ -97.483920155083695, 27.351292964634517 ], [ -97.48692069356666, 27.358957270813917 ], [ -97.501650609755757, 27.366621576993317 ], [ -97.514471092364772, 27.361579270296343 ], [ -97.520472169330702, 27.35290650277755 ], [ -97.538202624002764, 27.335560967739958 ], [ -97.570935771089637, 27.315795125487821 ], [ -97.58402902992438, 27.309542665183571 ], [ -97.609124442690984, 27.285137900770216 ], [ -97.621672149074271, 27.287154823449008 ], [ -97.631492093200336, 27.286146362109612 ], [ -97.636674841489096, 27.282112516752033 ], [ -97.636674841489096, 27.281709132216275 ], [ -97.640220932423503, 27.271019442018691 ], [ -97.639129827520605, 27.253068830177462 ], [ -97.635038184134743, 27.247018062141095 ], [ -97.629037107168827, 27.242984216783515 ], [ -97.597395064984852, 27.242379139979878 ], [ -97.582665148795755, 27.24036221730109 ], [ -97.573936309572588, 27.238950371425936 ], [ -97.561115826963572, 27.23269791112169 ], [ -97.542839819840069, 27.229269142567745 ], [ -97.51992661687926, 27.231286065246536 ], [ -97.509833896527468, 27.235319910604115 ], [ -97.503287267110096, 27.239958832765332 ], [ -97.500286728627131, 27.244396062658666 ], [ -97.48528403621232, 27.250850215230795 ], [ -97.467008029088817, 27.253673906981099 ], [ -97.458551966091377, 27.259522982749591 ], [ -97.450368679319666, 27.262548366767774 ], [ -97.424182161650165, 27.264161904910807 ], [ -97.422272728070098, 27.257707752338678 ], [ -97.4348204344534, 27.202242378671965 ], [ -97.444913154805178, 27.144760082326464 ], [ -97.443549273676553, 27.116321472555526 ], [ -97.452278112899734, 27.115313011216134 ], [ -97.45582420383414, 27.110472396787038 ], [ -97.45664253251131, 27.099782706589451 ], [ -97.46182528080007, 27.095547168963996 ], [ -97.475464092086256, 27.098370860714301 ], [ -97.480646840375016, 27.10240470607188 ], [ -97.491557889403964, 27.101194552464605 ], [ -97.495922309015555, 27.094135323088842 ], [ -97.493194546758318, 27.077999941658526 ], [ -97.477646301892051, 27.066100097853667 ], [ -97.479010183020677, 27.062873021567604 ], [ -97.482283497729355, 27.061864560228209 ], [ -97.48692069356666, 27.05762902260275 ], [ -97.487739022243829, 27.053595177245171 ], [ -97.486647917340946, 27.034837796332429 ], [ -97.477646301892051, 27.032619181385758 ], [ -97.473827434731916, 27.029190412831817 ], [ -97.473554658506188, 27.02293795252757 ], [ -97.478464630569221, 26.999138264917853 ], [ -97.480646840375016, 26.997726419042699 ], [ -97.484192931309423, 27.000550110793004 ], [ -97.536838742874139, 26.999743341721491 ], [ -97.54938644925744, 26.995911188631787 ], [ -97.55538752622337, 26.990263805131178 ], [ -97.55102310661178, 26.980784268540866 ], [ -97.549659225483168, 26.965253963914186 ], [ -97.552386987740405, 26.952143966502057 ], [ -97.55538752622337, 26.947303352072961 ], [ -97.55538752622337, 26.938832276822044 ], [ -97.540930386260001, 26.906359821693531 ], [ -97.540112057582832, 26.900914130460798 ], [ -97.548022568128829, 26.89506505469231 ], [ -97.552386987740405, 26.888409209852302 ], [ -97.552386987740405, 26.867634906260768 ], [ -97.558388064706321, 26.864407829974706 ], [ -97.563298036769368, 26.842221680508022 ], [ -97.552659763966119, 26.827901529488614 ], [ -97.547749791903101, 26.824674453202551 ], [ -97.537657071551308, 26.82487614547043 ], [ -97.509833896527468, 26.803496765075259 ], [ -97.484465707535151, 26.763561696035225 ], [ -97.477919078117779, 26.7571075434631 ], [ -97.471645224926121, 26.758721081606133 ], [ -97.468644686443156, 26.740972162032783 ], [ -97.467280805314545, 26.710113245047303 ], [ -97.444913154805178, 26.633470183253298 ], [ -97.445731483482348, 26.609267111107823 ], [ -97.441094287645043, 26.599989266785389 ], [ -97.428273805036014, 26.572559118353851 ], [ -97.417089979781338, 26.55360004517323 ], [ -97.422272728070098, 26.5203208209732 ], [ -97.425818819004505, 26.516690360151379 ], [ -97.430728791067537, 26.50660574675743 ], [ -97.430728791067537, 26.494504210684696 ], [ -97.426364371455946, 26.484419597290746 ], [ -97.429092133713198, 26.47796544471862 ], [ -97.435638763130569, 26.470099446271341 ], [ -97.441367063870771, 26.466670677717396 ], [ -97.441367063870771, 26.455375910716175 ], [ -97.437548196710637, 26.449728527215566 ], [ -97.425818819004505, 26.446098066393745 ], [ -97.420908846941472, 26.446703143197382 ], [ -97.417089979781338, 26.449728527215566 ], [ -97.411634455266864, 26.447308220001016 ], [ -97.412998336395475, 26.432988068981611 ], [ -97.421727175618656, 26.417256072087053 ], [ -97.419544965812861, 26.413222226729474 ], [ -97.405906154526662, 26.409188381371894 ], [ -97.397995643980664, 26.410801919514924 ], [ -97.39417677682053, 26.414432380336748 ], [ -97.394995105497699, 26.417256072087053 ], [ -97.382447399114398, 26.411406996318561 ], [ -97.377810203277093, 26.409188381371894 ], [ -97.369626916505382, 26.394666538084607 ], [ -97.374536888568414, 26.38095146386884 ], [ -97.388994028531783, 26.365824543777919 ], [ -97.391994567014734, 26.339402856685773 ], [ -97.390903462111851, 26.33234362731001 ], [ -97.387902923628886, 26.330528396899098 ], [ -97.376173545922754, 26.336377472667589 ], [ -97.372081902536891, 26.339806241221531 ], [ -97.369354140279654, 26.348479008740327 ], [ -97.358170315024978, 26.356345007187606 ], [ -97.343440398835881, 26.359168698937911 ], [ -97.33525711206417, 26.355739930383969 ], [ -97.330347140001138, 26.350495931419118 ], [ -97.336893769418509, 26.331738550506373 ], [ -97.352714790510504, 26.318426860826364 ], [ -97.354351447864843, 26.313989630933023 ], [ -97.346986489770302, 26.311367631450597 ], [ -97.347532042221744, 26.292811942805734 ], [ -97.343985951287323, 26.267398717052984 ], [ -97.3412581890301, 26.265583486642075 ], [ -97.331983797355477, 26.265583486642075 ], [ -97.322709405680868, 26.272037639214201 ], [ -97.311798356651906, 26.273651177357234 ], [ -97.307161160814601, 26.253078566033579 ], [ -97.307979489491771, 26.249044720676 ], [ -97.321345524552243, 26.236136415531746 ], [ -97.321345524552243, 26.228673801620225 ], [ -97.304433398557364, 26.202453806795958 ], [ -97.296522888011367, 26.20063857638505 ], [ -97.294886230657028, 26.192369193402012 ], [ -97.295977335559925, 26.182486272275945 ], [ -97.306888384588888, 26.159493353737741 ], [ -97.296522888011367, 26.142349510968032 ], [ -97.285339062756691, 26.128432744484382 ], [ -97.282065748047998, 26.120365053769223 ], [ -97.283156852950896, 26.117743054286798 ], [ -97.294067901979858, 26.113910901197094 ], [ -97.295159006882756, 26.108263517696486 ], [ -97.279883538242217, 26.092128136266169 ], [ -97.270881922793322, 26.086480752765556 ], [ -97.246877614929616, 26.080429984729189 ], [ -97.208143390876813, 26.079623215657673 ], [ -97.199687327879388, 26.077001216175248 ], [ -97.19505013204207, 26.041906761564306 ], [ -97.204870076168135, 26.03020861002733 ], [ -97.214962796519927, 26.030813686830964 ], [ -97.224782740645978, 26.027384918277022 ], [ -97.226146621774603, 26.024359534258839 ], [ -97.219327216131504, 25.996122616755784 ], [ -97.216872230099995, 25.993904001809113 ], [ -97.208688943328269, 25.991887079130326 ], [ -97.195868460719254, 25.9930972327376 ], [ -97.174591915112785, 26.000156462113363 ], [ -97.167226957018229, 26.007013999221247 ], [ -97.162862537406653, 26.014476613132768 ], [ -97.162589761180925, 26.023552765187322 ], [ -97.172136929081262, 26.044730453314614 ], [ -97.178683558498633, 26.04553722238613 ], [ -97.182775201884496, 26.053201528565531 ], [ -97.165044747212448, 26.063891218763114 ], [ -97.151951488377691, 26.062075988352206 ], [ -97.153315369506316, 26.038881377546122 ], [ -97.151951488377691, 26.01770368941883 ], [ -97.145677635186047, 25.971112775538792 ], [ -97.172682481532718, 25.962843392555754 ], [ -97.228056055354671, 25.959011239466054 ], [ -97.271427475244764, 25.951750317822412 ], [ -97.348350370898913, 25.931177706498758 ], [ -97.362261958410841, 25.915647401872079 ], [ -97.367171930473859, 25.902940788995704 ], [ -97.366626378022417, 25.884990177154478 ], [ -97.408361140558171, 25.856551567383544 ], [ -97.496740637692724, 25.880149562725382 ], [ -97.511197777656093, 25.887410484369024 ], [ -97.582665148795755, 25.937833551338763 ], [ -97.668044107447344, 26.022544303847926 ], [ -97.67159019838175, 26.034040763117027 ], [ -97.863079108839941, 26.061269219280689 ], [ -97.888720074058, 26.06489968010251 ], [ -98.008196060925059, 26.06106752701281 ], [ -98.012014928085193, 26.056630297119472 ], [ -98.044475298946352, 26.043721991975218 ], [ -98.132582019855164, 26.057437066190985 ], [ -98.24169251014473, 26.074580908960698 ], [ -98.264605713105553, 26.085472291426164 ], [ -98.386809462229863, 26.157879815594711 ], [ -98.438909721343123, 26.211933343386271 ], [ -98.466187343915522, 26.223228110387492 ], [ -98.585936107008322, 26.257314103659038 ], [ -98.586754435685492, 26.257515795926917 ], [ -98.6233064499325, 26.259532718605705 ], [ -98.632853617832836, 26.250254874283272 ], [ -98.705684870101123, 26.277483330446934 ], [ -98.751238499797012, 26.331335165970614 ], [ -98.807430402296148, 26.36945500459974 ], [ -98.822433094710959, 26.37086685047489 ], [ -98.861440094989476, 26.366026236045798 ], [ -99.047473480933178, 26.406969766425227 ], [ -99.10584759323811, 26.438635452482224 ], [ -99.168040572703148, 26.557835582798688 ], [ -99.172132216089011, 26.570945580210818 ], [ -99.208957006561747, 26.689540633723649 ], [ -99.242508482325789, 26.788168152716459 ], [ -99.26869499999529, 26.843230141847414 ], [ -99.321886364011448, 26.906763206229289 ], [ -99.379169371413468, 26.934395046928707 ], [ -99.446545099167281, 27.02293795252757 ], [ -99.452273399907483, 27.062671329299725 ], [ -99.450909518778857, 27.066705174657304 ], [ -99.446545099167281, 27.070537327747004 ], [ -99.429905749398117, 27.094337015356722 ], [ -99.42635965846371, 27.176224076115581 ], [ -99.441635127104249, 27.249841753891399 ], [ -99.452273399907483, 27.263960212642928 ], [ -99.453910057261822, 27.264766981714445 ], [ -99.463184448936431, 27.268397442536262 ], [ -99.470822183256701, 27.265372058518079 ], [ -99.494553714894693, 27.277675286858695 ], [ -99.529741848013074, 27.306113896629629 ], [ -99.536561253656174, 27.312568049201758 ], [ -99.537652358559058, 27.3159968177557 ], [ -99.506828645052252, 27.356335271331488 ], [ -99.492917057540339, 27.390421264603035 ], [ -99.487734309251579, 27.409985414587293 ], [ -99.480096574931309, 27.485821707309782 ], [ -99.519376351435568, 27.573557843837129 ], [ -99.54174400194492, 27.605828606697763 ], [ -99.60066366670128, 27.641326445844463 ], [ -99.623576869662088, 27.644150137594767 ], [ -99.626304631919339, 27.642536599451734 ], [ -99.627122960596509, 27.638502754094155 ], [ -99.666129960875026, 27.638301061826276 ], [ -99.843434507595575, 27.774645034912453 ], [ -99.876167654682448, 27.806310720969449 ], [ -99.901535843674765, 27.864196401850712 ], [ -99.904263605932002, 27.875289476584054 ], [ -99.895807542934563, 27.904131470890746 ], [ -99.921994060604064, 27.922082082731976 ], [ -99.991551998163658, 27.994489606900522 ], [ -100.057018292337403, 28.095739125375758 ], [ -100.080749823975381, 28.137287732558825 ], [ -100.083477586232618, 28.143943577398829 ], [ -100.088114782069923, 28.14757403822065 ], [ -100.144033908343332, 28.168146649544305 ], [ -100.171311530915716, 28.176214340259463 ], [ -100.202408020648249, 28.190534491278868 ], [ -100.209500202517063, 28.196786951583118 ], [ -100.257781594470202, 28.240352481444972 ], [ -100.291333070234245, 28.275446936055911 ], [ -100.346979420281926, 28.407151986980871 ], [ -100.333886161447168, 28.499325353401559 ], [ -100.338523357284487, 28.501745660616105 ], [ -100.38707752546334, 28.514048888956722 ], [ -100.405080756361116, 28.535831653887648 ], [ -100.429903392901991, 28.596541026519215 ], [ -100.446542742671156, 28.608642562591953 ], [ -100.500279659138755, 28.661889321312 ], [ -100.51009960326482, 28.690731315618692 ], [ -100.512009036844887, 28.705253158905975 ], [ -100.506826288556141, 28.716749618175079 ], [ -100.507644617233311, 28.740549305784796 ], [ -100.535467792257151, 28.805292523773939 ], [ -100.546924393737555, 28.825461750561836 ], [ -100.589750261176206, 28.861564666512169 ], [ -100.640213862935127, 28.915819886571612 ], [ -100.651397688189803, 28.943451727271025 ], [ -100.648124373481124, 28.983790180846817 ], [ -100.645942163675329, 28.986412180329246 ], [ -100.663945394573119, 29.073139855517198 ], [ -100.668309814184695, 29.084031237982664 ], [ -100.674583667376339, 29.099763234877223 ], [ -100.793786878017698, 29.242157975999767 ], [ -100.797605745177833, 29.246998590428863 ], [ -100.953906522517627, 29.347643032100464 ], [ -100.995641285053395, 29.363375028995023 ], [ -101.037648823814877, 29.414604865036278 ], [ -101.043377124555079, 29.429933477395082 ], [ -101.060016474324243, 29.458573779433891 ], [ -101.087021320670914, 29.469465161899357 ], [ -101.137484922429834, 29.473499007256933 ], [ -101.235138811238997, 29.524930535566071 ], [ -101.247413741396571, 29.618515747861906 ], [ -101.250414279879536, 29.624163131362518 ], [ -101.314243916698928, 29.659055893705577 ], [ -101.343703749077108, 29.662081277723765 ], [ -101.403987294962093, 29.757683412698391 ], [ -101.454996449172469, 29.770188333306884 ], [ -101.626027142701361, 29.7709951023784 ], [ -101.635028758150256, 29.758691874037787 ], [ -101.64648535963066, 29.754254644144446 ], [ -101.76186970311187, 29.77724756268265 ], [ -101.786419563427017, 29.782088177111746 ], [ -101.883527899784738, 29.796206635863271 ], [ -101.944902550572621, 29.801450634828122 ], [ -102.040647005801716, 29.790155867826904 ], [ -102.049921397476325, 29.785113561129929 ], [ -102.11620602032724, 29.79257617504145 ], [ -102.262414077315256, 29.853688932208776 ], [ -102.282326741793099, 29.863571853334843 ], [ -102.297329434207924, 29.875270004871822 ], [ -102.320788189620174, 29.875270004871822 ], [ -102.323515951877425, 29.875270004871822 ], [ -102.364705161961723, 29.843604318814826 ], [ -102.386800036245361, 29.761515565788088 ], [ -102.404530490917423, 29.765146026609912 ], [ -102.433990323295603, 29.776642485879012 ], [ -102.486908911086047, 29.786727099272959 ], [ -102.50082049859796, 29.781483100308108 ], [ -102.554830191291302, 29.749010645179595 ], [ -102.612931527370492, 29.748203876108079 ], [ -102.66530456270948, 29.737514185910491 ], [ -102.689854423024627, 29.72238726581957 ], [ -102.698310486022081, 29.69556219419167 ], [ -102.745500773072308, 29.59290082984128 ], [ -102.781780011093588, 29.542477762871542 ], [ -102.808784857440259, 29.522308536083642 ], [ -102.831970836626795, 29.43800116811024 ], [ -102.83333471775542, 29.408957481535666 ], [ -102.875887808968344, 29.353693800136831 ], [ -102.895800473446201, 29.28471504452223 ], [ -102.88625330554585, 29.245586744553712 ], [ -102.881070557257104, 29.245990129089471 ], [ -102.871250613131039, 29.24155289919613 ], [ -102.866886193519463, 29.225014133230054 ], [ -102.878070018774139, 29.214727827568229 ], [ -102.950901271042426, 29.176809681206983 ], [ -102.995636572061144, 29.161279376580303 ], [ -103.104474286124983, 29.033608171012922 ], [ -103.115385335153945, 28.985202026721971 ], [ -103.156574545238257, 28.972898798381358 ], [ -103.163939503332799, 28.972092029309842 ], [ -103.281778832845532, 28.990042641151067 ], [ -103.383524365040557, 29.02412863442261 ], [ -103.471085533497927, 29.075358470463868 ], [ -103.470539981046485, 29.08503969932206 ], [ -103.503273128133358, 29.119125692593602 ], [ -103.525368002416997, 29.137681381238465 ], [ -103.558646701955311, 29.155026916276057 ], [ -103.610201408617129, 29.165716606473644 ], [ -103.627113534612008, 29.163296299259095 ], [ -103.71494747929512, 29.184070602850625 ], [ -103.767866067085549, 29.225014133230054 ], [ -103.791870374949255, 29.262730587323421 ], [ -103.792688703626425, 29.2629322795913 ], [ -103.838242333322313, 29.278260891950101 ], [ -103.924985173102527, 29.293992888844663 ], [ -103.963173844703874, 29.298430118737997 ], [ -104.025366824168927, 29.314363807900435 ], [ -104.143751706133116, 29.38334256351504 ], [ -104.16748323777108, 29.402906713499299 ], [ -104.21330964369271, 29.462002547987836 ], [ -104.235950070427791, 29.496693618063016 ], [ -104.264046021677359, 29.514039153100605 ], [ -104.290778091798302, 29.519283152065459 ], [ -104.321601805305107, 29.527955919584254 ], [ -104.394433057573394, 29.560630066980647 ], [ -104.515545701794807, 29.641508666400107 ], [ -104.538458904755615, 29.677409890082565 ], [ -104.549642730010291, 29.716134805515324 ], [ -104.549097177558849, 29.728841418391699 ], [ -104.566009303553727, 29.771398486914158 ], [ -104.63338503130754, 29.87042939044273 ], [ -104.667209283297296, 29.910364459482764 ], [ -104.674847017617566, 29.911171228554281 ], [ -104.679756989680598, 29.920852457412469 ], [ -104.693668577192526, 30.019076591869521 ], [ -104.685758066646528, 30.092694269645342 ], [ -104.687394724000868, 30.179421944833294 ], [ -104.708944045833064, 30.235895779839403 ], [ -104.76158985739778, 30.301244074632187 ], [ -104.780956969424182, 30.3145557643122 ], [ -104.859516522432671, 30.390392057034688 ], [ -104.872882557493142, 30.50011265076084 ], [ -104.929892788669434, 30.599143554289412 ], [ -104.972173103656644, 30.610236629022754 ], [ -104.985266362491387, 30.623750010970646 ], [ -105.044458803473475, 30.683854306798573 ], [ -105.129292209673622, 30.750211062930752 ], [ -105.21112507739079, 30.799625668561099 ], [ -105.250132077669306, 30.799020591757461 ], [ -105.265407546309845, 30.802449360311403 ], [ -105.394703477302983, 30.858923195317512 ], [ -105.411888379523589, 30.893412573124813 ], [ -105.556732555382993, 30.989418092635198 ], [ -105.577736324763734, 31.019873625084923 ], [ -105.579645758343801, 31.036614083318874 ], [ -105.585374059084003, 31.057388386910411 ], [ -105.603377289981779, 31.082599920395278 ], [ -105.648930919677667, 31.115879144595308 ], [ -105.709487241788381, 31.136451755918962 ], [ -105.750403675646965, 31.164890365689892 ], [ -105.793775095537072, 31.201800050711746 ], [ -105.869334110062596, 31.288729418167577 ], [ -105.900430599795129, 31.300024185168798 ], [ -105.923071026530209, 31.312125721241536 ], [ -105.980899586383686, 31.37505370881977 ], [ -105.997538936152836, 31.386550168088874 ], [ -106.006813327827444, 31.39280262839312 ], [ -106.099284468347861, 31.414787085591925 ], [ -106.132835944111903, 31.425275083521633 ], [ -106.202939434122953, 31.463999998954392 ], [ -106.205939972605904, 31.466621998436821 ], [ -106.207576629960258, 31.467832152044092 ], [ -106.209213287314597, 31.469243997919243 ], [ -106.213032154474732, 31.473479535544705 ], [ -106.21848767898922, 31.479731995848951 ], [ -106.253948588333316, 31.547500597856281 ], [ -106.357058001656966, 31.702198567319442 ], [ -106.381062309520672, 31.73204902296553 ], [ -106.417887099993393, 31.752016557485547 ], [ -106.436708659568353, 31.756857171914643 ], [ -106.472442345138177, 31.751814865217668 ], [ -106.528634247637299, 31.783883935810422 ], [ -106.528634247637299, 31.78448901261406 ], [ -106.528088695185858, 31.786909319828609 ], [ -106.527543142734402, 31.789127934775276 ], [ -106.52781591896013, 31.789733011578914 ], [ -106.52781591896013, 31.790539780650427 ], [ -106.530543681217367, 31.79215331879346 ], [ -106.532453114797434, 31.791951626525581 ], [ -106.53299866724889, 31.791749934257702 ], [ -106.53299866724889, 31.791951626525581 ], [ -106.534635324603229, 31.796187164151039 ], [ -106.535180877054671, 31.796993933222556 ], [ -106.535453653280399, 31.797599010026193 ], [ -106.535726429506127, 31.798607471365585 ], [ -106.542000282697785, 31.80223793218741 ], [ -106.542273058923499, 31.802036239919531 ], [ -106.544728044955008, 31.804254854866198 ], [ -106.545273597406464, 31.805061623937714 ], [ -106.563549604529967, 31.812524237849235 ], [ -106.56682291923866, 31.813331006920752 ], [ -106.605284367065721, 31.846005154317144 ], [ -106.605829919517177, 31.846206846585019 ], [ -106.614558758740344, 31.846408538852899 ], [ -106.621923716834885, 31.852862691425027 ], [ -106.62574258399502, 31.856291459978969 ], [ -106.627924793800815, 31.860526997604428 ], [ -106.616195416094683, 31.948464826399654 ], [ -106.614831534966058, 31.955927440311179 ], [ -106.599010513874077, 32.000703123780305 ], [ -106.598737737648349, 32.000703123780305 ], [ -106.595464422939671, 32.000703123780305 ], [ -106.588099464845115, 32.000703123780305 ], [ -106.566004590561477, 32.000703123780305 ], [ -106.565186261884307, 32.000703123780305 ], [ -106.411067694350294, 32.001308200583942 ], [ -106.394428344581144, 32.001509892851821 ], [ -106.377243442360538, 32.001509892851821 ], [ -106.313413805541131, 32.001509892851821 ], [ -106.205939972605904, 32.0017115851197 ], [ -106.200757224317158, 32.0017115851197 ], [ -106.181935664742213, 32.002114969655459 ], [ -106.099830020799317, 32.002114969655459 ], [ -105.998084488604292, 32.002316661923338 ], [ -105.900703376020857, 32.002114969655459 ], [ -105.886246236057474, 32.00191327738758 ], [ -105.429346057969923, 32.000501431512426 ], [ -105.428527729292753, 32.000501431512426 ], [ -105.427163848164128, 32.000703123780305 ], [ -105.390339057691406, 32.000703123780305 ], [ -105.154114846214497, 32.000501431512426 ], [ -105.150295979054363, 32.000501431512426 ], [ -105.148113769248567, 32.000501431512426 ], [ -105.132838300608029, 32.000501431512426 ], [ -105.131474419479403, 32.000501431512426 ], [ -105.118108384418932, 32.000501431512426 ], [ -105.078555831688959, 32.000501431512426 ], [ -105.07691917433462, 32.000501431512426 ], [ -104.918163410963302, 32.000501431512426 ], [ -104.847787144726539, 32.000501431512426 ], [ -104.643477751659319, 32.000501431512426 ], [ -104.64102276562781, 32.000299739244547 ], [ -104.531912275338243, 32.000299739244547 ], [ -104.531639499112515, 32.000098046976667 ], [ -104.024548495491757, 32.000098046976667 ], [ -103.980085970698752, 32.000098046976667 ], [ -103.722857989841103, 32.000299739244547 ], [ -103.326514133864251, 32.000299739244547 ], [ -103.278505518136853, 32.000501431512426 ], [ -103.270322231365128, 32.000299739244547 ], [ -103.267594469107891, 32.000299739244547 ], [ -103.267594469107891, 32.000501431512426 ], [ -103.215766986220345, 32.000501431512426 ], [ -103.088653265033003, 32.000501431512426 ], [ -103.085925502775765, 32.000501431512426 ], [ -103.064376180943569, 32.000501431512426 ], [ -103.064376180943569, 32.087027414432498 ], [ -103.064376180943569, 32.123130330382835 ], [ -103.064376180943569, 32.144913095313761 ], [ -103.064648957169297, 32.522279328515296 ], [ -103.064648957169297, 32.588031007843838 ], [ -103.064921733395025, 32.600334236184452 ], [ -103.064648957169297, 32.601947774327485 ], [ -103.064921733395025, 32.624537308329927 ], [ -103.064648957169297, 32.646320073260853 ], [ -103.064921733395025, 32.682624681479069 ], [ -103.064921733395025, 32.690692372194228 ], [ -103.064921733395025, 32.708642984035457 ], [ -103.064921733395025, 32.726593595876679 ], [ -103.064921733395025, 32.7772183551143 ], [ -103.064648957169297, 32.783672507686433 ], [ -103.064648957169297, 32.784680969025821 ], [ -103.064648957169297, 32.827439729816163 ], [ -103.064648957169297, 32.828448191155559 ], [ -103.064921733395025, 32.849424187014968 ], [ -103.064921733395025, 32.857290185462247 ], [ -103.064921733395025, 32.857693569998006 ], [ -103.064921733395025, 32.868383260195593 ], [ -103.064648957169297, 32.879274642661059 ], [ -103.064648957169297, 32.900048946252589 ], [ -103.064648957169297, 32.959144780741127 ], [ -103.064648957169297, 32.964388779705978 ], [ -103.064648957169297, 32.99988661885267 ], [ -103.064376180943569, 33.010374616782379 ], [ -103.064103404717855, 33.038611534285437 ], [ -103.063830628492127, 33.042040302839375 ], [ -103.060011761331992, 33.219126114037103 ], [ -103.057829551526197, 33.315333325815367 ], [ -103.057556775300469, 33.329451784566892 ], [ -103.056738446623299, 33.388345926787551 ], [ -103.056738446623299, 33.388345926787551 ], [ -103.052646803237451, 33.570675736950129 ], [ -103.051555698334553, 33.629569879170788 ], [ -103.051282922108825, 33.641873107511401 ], [ -103.051555698334553, 33.650545875030197 ], [ -103.051010145883097, 33.658210181209597 ], [ -103.050464593431656, 33.672328639961123 ], [ -103.050191817205928, 33.701977403339335 ], [ -103.04910071230303, 33.74634970227271 ], [ -103.047464054948691, 33.824606302209745 ], [ -103.046918502497249, 33.850221220230367 ], [ -103.045554621368623, 33.901451056271625 ], [ -103.045827397594337, 33.906291670700725 ], [ -103.045009068917182, 33.945621662937114 ], [ -103.04391796401427, 33.974665349511689 ], [ -103.043645187788556, 34.003709036086256 ], [ -103.043645187788556, 34.018029187105668 ], [ -103.043645187788556, 34.032752722660831 ], [ -103.043645187788556, 34.037391644822044 ], [ -103.043645187788556, 34.041627182447499 ], [ -103.043645187788556, 34.042232259251136 ], [ -103.043645187788556, 34.04364410512629 ], [ -103.043645187788556, 34.049896565430544 ], [ -103.043645187788556, 34.063006562842673 ], [ -103.043645187788556, 34.07934363654087 ], [ -103.043645187788556, 34.088016404059665 ], [ -103.043645187788556, 34.256832832274355 ], [ -103.043645187788556, 34.289506979670747 ], [ -103.04391796401427, 34.302616977082877 ], [ -103.04391796401427, 34.312701590476827 ], [ -103.04391796401427, 34.312701590476827 ], [ -103.04391796401427, 34.379461731144758 ], [ -103.04391796401427, 34.379663423412637 ], [ -103.04391796401427, 34.380873577019912 ], [ -103.043645187788556, 34.383495576502341 ], [ -103.043645187788556, 34.384705730109616 ], [ -103.043645187788556, 34.384907422377495 ], [ -103.043645187788556, 34.388739575467191 ], [ -103.043645187788556, 34.390353113610225 ], [ -103.043645187788556, 34.39378188216417 ], [ -103.043645187788556, 34.397008958450229 ], [ -103.043645187788556, 34.400639419272053 ], [ -103.043645187788556, 34.405480033701146 ], [ -103.043645187788556, 34.455701408403009 ], [ -103.043645187788556, 34.459735253760584 ], [ -103.043645187788556, 34.459735253760584 ], [ -103.043645187788556, 34.462760637778771 ], [ -103.043099635337114, 34.619878914456478 ], [ -103.042826859111386, 34.671108750497737 ], [ -103.042826859111386, 34.747348427755981 ], [ -103.042826859111386, 34.792124111225114 ], [ -103.042826859111386, 34.850211484374256 ], [ -103.042554082885658, 34.899626090004602 ], [ -103.042554082885658, 34.95408300233192 ], [ -103.042554082885658, 35.135606043422982 ], [ -103.042554082885658, 35.142665272798745 ], [ -103.042826859111386, 35.144682195477536 ], [ -103.042554082885658, 35.159405731032699 ], [ -103.04228130665993, 35.178566496481203 ], [ -103.04228130665993, 35.181995265035141 ], [ -103.04228130665993, 35.182802034106658 ], [ -103.04228130665993, 35.183205418642416 ], [ -103.04228130665993, 35.183205418642416 ], [ -103.042554082885658, 35.211845720681225 ], [ -103.041462977982761, 35.622491178082797 ], [ -103.041462977982761, 35.739271001184711 ], [ -103.040917425531319, 36.055322784951045 ], [ -103.041735754208489, 36.317522733193691 ], [ -103.041735754208489, 36.3183295022652 ], [ -103.041735754208489, 36.478473162961102 ], [ -103.002455977704244, 36.500457620159906 ], [ -102.162577978700313, 36.500255927892027 ], [ -102.032463719030005, 36.500054235624148 ], [ -101.826517668608446, 36.49965085108839 ], [ -101.826517668608446, 36.499449158820511 ], [ -101.788056220781371, 36.49965085108839 ], [ -101.783419024944067, 36.49965085108839 ], [ -101.782055143815441, 36.49965085108839 ], [ -101.780691262686815, 36.49965085108839 ], [ -101.779327381558204, 36.49965085108839 ], [ -101.709223891547154, 36.49965085108839 ], [ -101.69858561874392, 36.499449158820511 ], [ -101.653577541499487, 36.49965085108839 ], [ -101.650031450565066, 36.49965085108839 ], [ -101.623844932895565, 36.499449158820511 ], [ -101.085111887090846, 36.499247466552632 ], [ -101.052378740003974, 36.49965085108839 ], [ -101.045286558135146, 36.499449158820511 ], [ -100.977092501704163, 36.49965085108839 ], [ -100.954179298743355, 36.49965085108839 ], [ -100.936176067845579, 36.49965085108839 ], [ -100.918445613173532, 36.49965085108839 ], [ -100.88407580873232, 36.49965085108839 ], [ -100.88407580873232, 36.49965085108839 ], [ -100.859525948417158, 36.49965085108839 ], [ -100.850797109193991, 36.49965085108839 ], [ -100.824337815298776, 36.49965085108839 ], [ -100.824337815298776, 36.49965085108839 ], [ -100.806061808175272, 36.49965085108839 ], [ -100.806061808175272, 36.49965085108839 ], [ -100.802788493466579, 36.49965085108839 ], [ -100.802788493466579, 36.49965085108839 ], [ -100.761872059607995, 36.49965085108839 ], [ -100.761872059607995, 36.49965085108839 ], [ -100.72422894045809, 36.49965085108839 ], [ -100.72422894045809, 36.49965085108839 ], [ -100.708680695591838, 36.49965085108839 ], [ -100.708680695591838, 36.499449158820511 ], [ -100.657671541381461, 36.499449158820511 ], [ -100.657671541381461, 36.499449158820511 ], [ -100.648397149706852, 36.499449158820511 ], [ -100.648397149706852, 36.499449158820511 ], [ -100.592478023433443, 36.499449158820511 ], [ -100.592478023433443, 36.499449158820511 ], [ -100.592478023433443, 36.499449158820511 ], [ -100.583476407984563, 36.499449158820511 ], [ -100.583476407984563, 36.499449158820511 ], [ -100.578020883470074, 36.499449158820511 ], [ -100.578020883470074, 36.499449158820511 ], [ -100.546106065060386, 36.499247466552632 ], [ -100.531103372645561, 36.499247466552632 ], [ -100.531103372645561, 36.499247466552632 ], [ -100.530557820194119, 36.499247466552632 ], [ -100.530285043968391, 36.499449158820511 ], [ -100.52210175719668, 36.499247466552632 ], [ -100.441087218156667, 36.499449158820511 ], [ -100.441087218156667, 36.499449158820511 ], [ -100.433995036287854, 36.499449158820511 ], [ -100.421447329904552, 36.499449158820511 ], [ -100.421174553678824, 36.499449158820511 ], [ -100.413536819358555, 36.499449158820511 ], [ -100.413536819358555, 36.499449158820511 ], [ -100.378621462465901, 36.499449158820511 ], [ -100.378621462465901, 36.499449158820511 ], [ -100.351889392344958, 36.499449158820511 ], [ -100.351889392344958, 36.499449158820511 ], [ -100.334431713898624, 36.499449158820511 ], [ -100.334431713898624, 36.499449158820511 ], [ -100.324066217321118, 36.49965085108839 ], [ -100.311245734712088, 36.49965085108839 ], [ -100.31097295848636, 36.49965085108839 ], [ -100.310700182260632, 36.49965085108839 ], [ -100.181131475041781, 36.49965085108839 ], [ -100.09002421564999, 36.49965085108839 ], [ -100.003826928321232, 36.49965085108839 ], [ -100.000280837386825, 36.49965085108839 ], [ -100.000280837386825, 36.055726169486796 ], [ -100.000280837386825, 35.880858973235739 ], [ -100.000280837386825, 35.619062409528851 ], [ -100.000280837386825, 35.422412448346861 ], [ -100.000280837386825, 35.182802034106658 ], [ -100.000280837386825, 35.030322679590164 ], [ -100.000280837386825, 34.746541658684471 ], [ -100.000280837386825, 34.746339966416592 ], [ -100.000280837386825, 34.560581387700068 ], [ -99.997825851355316, 34.561388156771585 ], [ -99.954454431465209, 34.578128615005539 ], [ -99.945725592242042, 34.579338768612814 ], [ -99.923085165506961, 34.574498154183715 ], [ -99.884896493905615, 34.546866313484301 ], [ -99.874530997328094, 34.53718508462611 ], [ -99.872348787522313, 34.532142777929138 ], [ -99.864983829427757, 34.523066625874577 ], [ -99.84643504607854, 34.505116014033355 ], [ -99.793789234513824, 34.453886177992096 ], [ -99.767329940618595, 34.430489874918138 ], [ -99.695044240801764, 34.378251577537483 ], [ -99.66394775106923, 34.37361265537627 ], [ -99.616757464019003, 34.375427885787182 ], [ -99.579932673546267, 34.416573108434491 ], [ -99.574477149031793, 34.418186646577524 ], [ -99.515284708049705, 34.414354493487821 ], [ -99.500009239409167, 34.409513879058728 ], [ -99.474095497965394, 34.398017419789625 ], [ -99.453364504810366, 34.388739575467191 ], [ -99.440816798427079, 34.374217732179908 ], [ -99.407265322663036, 34.372604194036875 ], [ -99.398536483439869, 34.375831270322941 ], [ -99.356801720904102, 34.442188026455113 ], [ -99.261330041900734, 34.403463111022361 ], [ -99.211411992593256, 34.337913123961698 ], [ -99.211411992593256, 34.337711431693819 ], [ -99.209775335238916, 34.32500481881744 ], [ -99.211684768818984, 34.313911744084095 ], [ -99.211684768818984, 34.292330671421048 ], [ -99.190953775663971, 34.215284225091288 ], [ -99.1571295236742, 34.207418226644009 ], [ -99.119213628298581, 34.201770843143393 ], [ -99.060293963542208, 34.20479622716158 ], [ -98.966731718118908, 34.201165766339763 ], [ -98.952547354381267, 34.195720075107026 ], [ -98.920086983520122, 34.182811769962775 ], [ -98.858439556506511, 34.152759622048812 ], [ -98.765695639760381, 34.136422548350616 ], [ -98.700229345586649, 34.136019163814858 ], [ -98.665859541145423, 34.151549468441537 ], [ -98.652220729859238, 34.16102900503185 ], [ -98.637490813670141, 34.162239158639125 ], [ -98.610213191097756, 34.16102900503185 ], [ -98.599847694520236, 34.160625620496091 ], [ -98.577480044010883, 34.149129161226988 ], [ -98.553748512372891, 34.133598856600308 ], [ -98.50410323929114, 34.072284407165107 ], [ -98.475188959364402, 34.064216716449948 ], [ -98.433726973054377, 34.096084094774824 ], [ -98.400448273516062, 34.121699012795446 ], [ -98.398538839935995, 34.128556549903337 ], [ -98.383263371295456, 34.147717315351834 ], [ -98.363896259269055, 34.157196851942146 ], [ -98.32543481144198, 34.1509443916379 ], [ -98.300339398675376, 34.134607317939704 ], [ -98.293792769258005, 34.132993779796671 ], [ -98.199957747608977, 34.116858398366354 ], [ -98.169134034102171, 34.114236398883932 ], [ -98.106395502185677, 34.033761184000227 ], [ -98.088119495062173, 34.005524266497169 ], [ -98.085391732804936, 34.003305651550498 ], [ -98.041201984237659, 33.993422730424427 ], [ -98.019379886179749, 33.993826114960186 ], [ -97.983646200609911, 34.001490421139593 ], [ -97.945730305234292, 33.98979226960261 ], [ -97.953368039554562, 33.936545510882567 ], [ -97.977917899869709, 33.889954597002529 ], [ -97.977917899869709, 33.889954597002529 ], [ -97.966734074615033, 33.881886906287363 ], [ -97.877263472577596, 33.850221220230367 ], [ -97.865806871097178, 33.84941445115885 ], [ -97.83443760513893, 33.857683834141895 ], [ -97.785337884508635, 33.890761366074038 ], [ -97.733783177846803, 33.936343818614688 ], [ -97.700504478308488, 33.972245042297139 ], [ -97.693139520213947, 33.983741501566243 ], [ -97.687956771925187, 33.986565193316551 ], [ -97.671862974607478, 33.991405807745643 ], [ -97.656314729741212, 33.989388885066852 ], [ -97.609124442690984, 33.968009504671684 ], [ -97.589484554438855, 33.953487661384401 ], [ -97.588939001987413, 33.951874123241367 ], [ -97.597122288759124, 33.917788129969821 ], [ -97.596303960081954, 33.913754284612239 ], [ -97.587575120858787, 33.902459517611021 ], [ -97.581028491441415, 33.90044259493223 ], [ -97.561115826963572, 33.89802228771768 ], [ -97.555114749997642, 33.897215518646163 ], [ -97.545567582097306, 33.90044259493223 ], [ -97.519108288202091, 33.913552592344359 ], [ -97.500832281078587, 33.919603360380734 ], [ -97.486375141115218, 33.916981360898305 ], [ -97.484192931309423, 33.91577120729103 ], [ -97.458006413639936, 33.901652748539505 ], [ -97.450914231771108, 33.891366442877676 ], [ -97.45145978422255, 33.870995523821904 ], [ -97.457733637414208, 33.855061834659466 ], [ -97.461552504574342, 33.849616143426729 ], [ -97.462916385702954, 33.841750144979457 ], [ -97.459097518542819, 33.834489223335808 ], [ -97.453096441576889, 33.828438455299441 ], [ -97.444094826128008, 33.823799533138228 ], [ -97.426364371455946, 33.819362303244887 ], [ -97.372900231214061, 33.819362303244887 ], [ -97.310707251749022, 33.872407369697058 ], [ -97.226419398000331, 33.914561053683755 ], [ -97.210871153134065, 33.915972899558909 ], [ -97.185502964141733, 33.900644287200109 ], [ -97.180865768304429, 33.895198595967379 ], [ -97.166681404566788, 33.847397528480066 ], [ -97.166954180792516, 33.840338299104303 ], [ -97.17159137662982, 33.835295992407325 ], [ -97.181411320755871, 33.831463839317628 ], [ -97.194777355816342, 33.831262147049749 ], [ -97.199687327879388, 33.827228301692166 ], [ -97.204870076168135, 33.818958918709129 ], [ -97.204870076168135, 33.799999845528511 ], [ -97.172136929081262, 33.737475242486028 ], [ -97.163135313632381, 33.729407551770876 ], [ -97.162862537406653, 33.729205859502997 ], [ -97.151133159700521, 33.722550014662986 ], [ -97.137494348414322, 33.718717861573289 ], [ -97.121127774870899, 33.717104323430256 ], [ -97.107216187358972, 33.721138168787832 ], [ -97.097123467007179, 33.727794013627843 ], [ -97.092486271169889, 33.733239704860573 ], [ -97.048023746376884, 33.817950457369733 ], [ -97.006016207615403, 33.86191937176735 ], [ -96.985557990686104, 33.886525828448583 ], [ -96.972737508077074, 33.935738741811051 ], [ -96.94464155682752, 33.949050431491059 ], [ -96.934548836475727, 33.95368935365228 ], [ -96.92200113009244, 33.959538429420768 ], [ -96.916272829352238, 33.957723199009855 ], [ -96.907271213903343, 33.950058892830455 ], [ -96.899360703357345, 33.933721819132259 ], [ -96.895814612422939, 33.896408749574654 ], [ -96.882994129813909, 33.867970139803717 ], [ -96.866354780044759, 33.853246604248554 ], [ -96.855989283467238, 33.847397528480066 ], [ -96.761608709366769, 33.824404609941865 ], [ -96.71250898873646, 33.831665531585507 ], [ -96.707326240447713, 33.835497684675204 ], [ -96.701052387256055, 33.840741683640061 ], [ -96.694505757838684, 33.850019527962488 ], [ -96.689323009549938, 33.861717679499471 ], [ -96.685504142389803, 33.872810754232816 ], [ -96.682503603906838, 33.883097059894638 ], [ -96.678684736746703, 33.892778288752829 ], [ -96.672138107329332, 33.899635825860713 ], [ -96.658772072268846, 33.900039210396471 ], [ -96.647042694562728, 33.895198595967379 ], [ -96.633403883276529, 33.889349520198891 ], [ -96.622220058021853, 33.885920751644946 ], [ -96.615400652378753, 33.881080137215847 ], [ -96.613491218798686, 33.878256445465546 ], [ -96.611581785218618, 33.875231061447359 ], [ -96.61294566634723, 33.867566755267958 ], [ -96.615946204830195, 33.853448296516433 ], [ -96.614855099927297, 33.84114506817582 ], [ -96.61294566634723, 33.833884146532171 ], [ -96.500289085123256, 33.772569697096969 ], [ -96.447916049784268, 33.781040772347886 ], [ -96.436459448303864, 33.78003231100849 ], [ -96.423366189469107, 33.776401850186673 ], [ -96.378358112224674, 33.726583860020568 ], [ -96.369629273001507, 33.716902631162377 ], [ -96.304708531279203, 33.745946317736951 ], [ -96.229967845430863, 33.748366624951494 ], [ -96.220420677530527, 33.747358163612098 ], [ -96.199962460601228, 33.752198778041198 ], [ -96.181686453477724, 33.758451238345444 ], [ -96.169957075771606, 33.769140928543024 ], [ -96.16422877503139, 33.784267848633952 ], [ -96.15659104071112, 33.81331153520852 ], [ -96.148134977713681, 33.837716299621874 ], [ -96.097398599729033, 33.847599220747945 ], [ -95.949826661612406, 33.857482141874016 ], [ -95.846444472063041, 33.84114506817582 ], [ -95.824622374005116, 33.837716299621874 ], [ -95.763520499442961, 33.848002605283703 ], [ -95.757246646251318, 33.867365063000079 ], [ -95.599581987782898, 33.934326895935897 ], [ -95.567121616921739, 33.932713357792863 ], [ -95.559483882601469, 33.930091358310435 ], [ -95.549118386023963, 33.907905208843751 ], [ -95.549391162249691, 33.901249364003746 ], [ -95.552391700732656, 33.894391826895863 ], [ -95.552118924506928, 33.888341058859496 ], [ -95.548300057346793, 33.88269367535888 ], [ -95.544481190186659, 33.880071675876458 ], [ -95.445736196474599, 33.868776908875233 ], [ -95.40782030109898, 33.866356601660684 ], [ -95.339626244667997, 33.868776908875233 ], [ -95.310439188515545, 33.871398908357662 ], [ -95.287525985554737, 33.873617523304333 ], [ -95.260793915433794, 33.887735982055858 ], [ -95.255611167145034, 33.891971519681313 ], [ -95.249882866404832, 33.902056133075263 ], [ -95.248246209050478, 33.912342438737092 ], [ -95.249882866404832, 33.922225359863162 ], [ -95.253701733564967, 33.929687973774676 ], [ -95.252883404887797, 33.933721819132259 ], [ -95.231061306829872, 33.960345198492284 ], [ -95.226424110992568, 33.96195873663531 ], [ -95.219331929123754, 33.961555352099552 ], [ -95.156047844755804, 33.944008124794088 ], [ -95.129588550860575, 33.936747203150446 ], [ -95.067122795169809, 33.917384745434063 ], [ -95.063576704235402, 33.913955976880118 ], [ -95.062212823106776, 33.903669671218296 ], [ -95.039572396371682, 33.860709218160075 ], [ -94.86936003151996, 33.745946317736951 ], [ -94.822442520695461, 33.732634628056935 ], [ -94.760522317456122, 33.726987244556327 ], [ -94.746065177492753, 33.70298586467873 ], [ -94.735154128463805, 33.691287713141747 ], [ -94.660958995066892, 33.660227103888388 ], [ -94.528389749365076, 33.6160564972229 ], [ -94.524025329753485, 33.615854804955021 ], [ -94.49074663021517, 33.625536033813205 ], [ -94.487746091732205, 33.628561417831392 ], [ -94.485836658152138, 33.637839262153825 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "49", "geo_id": "0400000US02", "fips_state": "02", "name": "Alaska", "iso_3166_2": "AK", "census": 710231, "pop_estimataes_base": 710249, "pop_2010": 713856, "pop_2011": 722572, "pop_2012": 731081, "pop_2013": 737259, "pop_2014": 736732 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.751748704806602, 22.422135629940609 ], [ -113.750384823677976, 22.421127168601217 ], [ -113.745747627840672, 22.415479785100604 ], [ -113.74001932710047, 22.382603945436333 ], [ -113.740292103326198, 22.378166715542996 ], [ -113.747384285195011, 22.36021610370177 ], [ -113.749020942549365, 22.3579974887551 ], [ -113.752839809709499, 22.353560258861762 ], [ -113.757477005546804, 22.350736567111458 ], [ -113.765387516092801, 22.353560258861762 ], [ -113.785300180570644, 22.370502409363596 ], [ -113.787755166602153, 22.373729485649658 ], [ -113.793756243568083, 22.393091943366041 ], [ -113.793483467342355, 22.393898712437554 ], [ -113.772479697961614, 22.420925476333338 ], [ -113.770297488155819, 22.422942399012125 ], [ -113.75502201951528, 22.423345783547884 ], [ -113.751748704806602, 22.422135629940609 ] ] ], [ [ [ -113.014980119126307, 22.505232844306743 ], [ -113.013889014223409, 22.507854843789168 ], [ -113.00543295122597, 22.516325919040085 ], [ -112.985247510522399, 22.509670074200081 ], [ -112.984429181845229, 22.508863305128564 ], [ -112.983610853168045, 22.504022690699468 ], [ -112.984429181845229, 22.495148230912793 ], [ -112.988520825231078, 22.485265309786726 ], [ -112.996431335777075, 22.478004388143081 ], [ -113.004887398774514, 22.476390850000051 ], [ -113.005978503677412, 22.477197619071568 ], [ -113.012252356869055, 22.485265309786726 ], [ -113.011434028191886, 22.491114385555214 ], [ -113.010070147063274, 22.494341461841277 ], [ -113.010342923288988, 22.497165153591585 ], [ -113.011434028191886, 22.501198998949164 ], [ -113.014980119126307, 22.505232844306743 ] ] ], [ [ [ -113.207287358261667, 22.58147252156499 ], [ -113.216561749936275, 22.591758827226815 ], [ -113.221744498225036, 22.600028210209853 ], [ -113.219835064644968, 22.601641748352886 ], [ -113.213015659001869, 22.603053594228037 ], [ -113.206469029584497, 22.599624825674095 ], [ -113.203741267327246, 22.595792672584395 ], [ -113.200740728844295, 22.593977442173482 ], [ -113.194194099426909, 22.599221441138337 ], [ -113.19092078471823, 22.614146668961382 ], [ -113.186010812655198, 22.646417431822012 ], [ -113.18410137907513, 22.648232662232925 ], [ -113.181373616817893, 22.646215739554137 ], [ -113.174554211174794, 22.63915651017837 ], [ -113.171826448917557, 22.630887127195333 ], [ -113.171553672691829, 22.628466819980787 ], [ -113.172917553820454, 22.621810975140782 ], [ -113.174281434949066, 22.620399129265628 ], [ -113.175918092303419, 22.621810975140782 ], [ -113.180555288140724, 22.61999574472987 ], [ -113.181919169269335, 22.614550053497137 ], [ -113.180009735689268, 22.589741904548028 ], [ -113.178373078334928, 22.586313135994082 ], [ -113.173463106271896, 22.581875906100748 ], [ -113.167734805531694, 22.584497905583174 ], [ -113.168553134208864, 22.591758827226815 ], [ -113.169644239111761, 22.594784211244999 ], [ -113.169917015337489, 22.597204518459549 ], [ -113.166643700628796, 22.599423133406216 ], [ -113.159005966308527, 22.599423133406216 ], [ -113.157914861405629, 22.583691136511657 ], [ -113.158187637631357, 22.57522006126074 ], [ -113.16227928101722, 22.562513448384365 ], [ -113.165007043274457, 22.559286372098303 ], [ -113.170189791563203, 22.562110063848607 ], [ -113.170462567788931, 22.564328678795277 ], [ -113.175918092303419, 22.565942216938311 ], [ -113.185465260203756, 22.561101602509215 ], [ -113.186010812655198, 22.558681295294665 ], [ -113.183555826623689, 22.553235604061936 ], [ -113.183283050397961, 22.543150990667986 ], [ -113.203468491101532, 22.511485304610989 ], [ -113.209742344293176, 22.505232844306743 ], [ -113.217652854839173, 22.499585460806131 ], [ -113.228836680093849, 22.465297775266709 ], [ -113.22720002273951, 22.459448699498218 ], [ -113.229927784996747, 22.446137009818205 ], [ -113.235383309511221, 22.439884549513959 ], [ -113.244930477411557, 22.453397931461851 ], [ -113.246839910991625, 22.469129928356409 ], [ -113.245476029863013, 22.471146851035197 ], [ -113.240838834025709, 22.47437392732126 ], [ -113.232655547253984, 22.495551615448552 ], [ -113.223926708030817, 22.512090381414627 ], [ -113.218743959742071, 22.519149610790389 ], [ -113.213288435227582, 22.52298176388009 ], [ -113.212470106550413, 22.524998686558881 ], [ -113.216016197484834, 22.530242685523731 ], [ -113.217925631064901, 22.531452839131006 ], [ -113.226927246513782, 22.525805455630397 ], [ -113.237838295542744, 22.528225762844944 ], [ -113.246567134765911, 22.553235604061936 ], [ -113.246294358540183, 22.557874526223152 ], [ -113.230473337448188, 22.580060675689836 ], [ -113.22119894577358, 22.574816676724982 ], [ -113.215743421259106, 22.569774370028011 ], [ -113.213015659001869, 22.564530371063157 ], [ -113.213015659001869, 22.563320217455882 ], [ -113.213833987679038, 22.562916832920124 ], [ -113.213833987679038, 22.561303294777094 ], [ -113.213015659001869, 22.559689756634061 ], [ -113.207014582035939, 22.562715140652244 ], [ -113.203195714875804, 22.566547293741944 ], [ -113.201831833747178, 22.569774370028011 ], [ -113.202104609972906, 22.572194677242557 ], [ -113.207287358261667, 22.58147252156499 ] ] ], [ [ [ -113.059169867693583, 22.560496525705577 ], [ -113.057805986564958, 22.562110063848607 ], [ -113.041166636795793, 22.564732063331036 ], [ -113.031619468895457, 22.564126986527398 ], [ -113.02889170663822, 22.558681295294665 ], [ -113.020708419866509, 22.528830839648581 ], [ -113.020708419866509, 22.52681391696979 ], [ -113.020981196092222, 22.526007147898273 ], [ -113.041712189247249, 22.50745145925341 ], [ -113.047167713761723, 22.506039613378256 ], [ -113.04989547601896, 22.507653151521289 ], [ -113.05071380469613, 22.508863305128564 ], [ -113.05071380469613, 22.52136822573706 ], [ -113.049077147341791, 22.527822378309185 ], [ -113.044439951504486, 22.534276530881311 ], [ -113.046622161310268, 22.544159452007381 ], [ -113.056987657887788, 22.548798374168598 ], [ -113.059169867693583, 22.560496525705577 ] ] ], [ [ [ -113.089175252523205, 22.613743284425624 ], [ -113.081264741977208, 22.611322977211074 ], [ -113.079900860848596, 22.610112823603799 ], [ -113.076627546139903, 22.601843440620765 ], [ -113.075536441237006, 22.59296898083409 ], [ -113.077173098591359, 22.590548673619541 ], [ -113.078536979719971, 22.589741904548028 ], [ -113.081810294428664, 22.578043753011045 ], [ -113.080719189525766, 22.567757447349219 ], [ -113.077718651042801, 22.565135447866794 ], [ -113.065989273336669, 22.557672833955273 ], [ -113.065989273336669, 22.55605929581224 ], [ -113.066807602013853, 22.553638988597694 ], [ -113.071172021625429, 22.549201758704356 ], [ -113.073354231431225, 22.550411912311628 ], [ -113.079082532171427, 22.55605929581224 ], [ -113.088356923846035, 22.555252526740723 ], [ -113.093539672134796, 22.548193297364961 ], [ -113.101995735132235, 22.542344221596469 ], [ -113.103086840035132, 22.542747606132227 ], [ -113.104723497389472, 22.544361144275261 ], [ -113.106632930969539, 22.547386528293444 ], [ -113.108269588323878, 22.554647449937086 ], [ -113.108815140775334, 22.578447137546803 ], [ -113.105269049840913, 22.584296213315294 ], [ -113.100086301552167, 22.599221441138337 ], [ -113.099267972874998, 22.613339899889866 ], [ -113.091903014780442, 22.645610662750499 ], [ -113.091630238554728, 22.645812355018379 ], [ -113.085901937814526, 22.637946356571099 ], [ -113.08535638536307, 22.631895588534729 ], [ -113.085901937814526, 22.625239743694724 ], [ -113.089175252523205, 22.613743284425624 ] ] ], [ [ [ -113.630636060585175, 22.519956379861906 ], [ -113.624089431167803, 22.512897150486143 ], [ -113.618906682879043, 22.511081920075231 ], [ -113.615087815718908, 22.510880227807352 ], [ -113.612087277235958, 22.511485304610989 ], [ -113.600357899529826, 22.506644690181894 ], [ -113.591629060306659, 22.501602383484922 ], [ -113.589719626726591, 22.500190537609768 ], [ -113.583172997309219, 22.492727923698247 ], [ -113.582900221083491, 22.491719462358851 ], [ -113.582081892406322, 22.485063617518847 ], [ -113.583445773534947, 22.482643310304297 ], [ -113.585355207115015, 22.481433156697026 ], [ -113.589719626726591, 22.48042469535763 ], [ -113.591901836532386, 22.481433156697026 ], [ -113.596539032369691, 22.485265309786726 ], [ -113.596811808595419, 22.487080540197635 ], [ -113.595175151241065, 22.490509308751577 ], [ -113.595175151241065, 22.492929615966126 ], [ -113.597630137272589, 22.498173614930977 ], [ -113.601449004432723, 22.500593922145526 ], [ -113.605540647818572, 22.500190537609768 ], [ -113.61099617233306, 22.498778691734614 ], [ -113.615360591944636, 22.494744846377035 ], [ -113.616178920621806, 22.493131308234005 ], [ -113.615633368170364, 22.490912693287335 ], [ -113.618088354201873, 22.486273771126118 ], [ -113.628181074553666, 22.473365465981868 ], [ -113.635000480196766, 22.474979004124897 ], [ -113.643183766968477, 22.482239925768539 ], [ -113.650548725063032, 22.491316077823093 ], [ -113.651912606191644, 22.497165153591585 ], [ -113.653003711094541, 22.498173614930977 ], [ -113.661459774091981, 22.503014229360073 ], [ -113.664460312574946, 22.503215921627952 ], [ -113.670461389540876, 22.502005768020677 ], [ -113.674007480475282, 22.505837921110377 ], [ -113.67509858537818, 22.508661612860685 ], [ -113.673461928023841, 22.51753607264736 ], [ -113.665005865026387, 22.525402071094639 ], [ -113.659550340511913, 22.527620686041306 ], [ -113.635818808873935, 22.52298176388009 ], [ -113.630636060585175, 22.519956379861906 ] ] ], [ [ [ -113.34258436622072, 22.641778509660799 ], [ -113.34940377186382, 22.648232662232925 ], [ -113.350767652992445, 22.648030969965046 ], [ -113.357314282409817, 22.641778509660799 ], [ -113.359769268441326, 22.632904049874124 ], [ -113.359223715989884, 22.629676973588062 ], [ -113.358950939764156, 22.627458358641391 ], [ -113.352949862798226, 22.614550053497137 ], [ -113.34858544318665, 22.611121284943195 ], [ -113.342038813769278, 22.608297593192891 ], [ -113.32676334512874, 22.581069137029232 ], [ -113.32594501645157, 22.575623445796499 ], [ -113.327308897580181, 22.568160831884978 ], [ -113.331400540966044, 22.550411912311628 ], [ -113.366315897858698, 22.559488064366182 ], [ -113.372589751050356, 22.564933755598915 ], [ -113.37722694688766, 22.574614984457103 ], [ -113.378863604241999, 22.581270829297111 ], [ -113.394139072882538, 22.571992984974678 ], [ -113.396048506462606, 22.567152370545582 ], [ -113.394957401559722, 22.563118525188003 ], [ -113.398776268719857, 22.542747606132227 ], [ -113.400958478525638, 22.53831037623889 ], [ -113.404231793234331, 22.534074838613432 ], [ -113.405322898137229, 22.535083299952827 ], [ -113.404777345685773, 22.545167913346777 ], [ -113.403686240782889, 22.552025450454661 ], [ -113.404777345685773, 22.557672833955273 ], [ -113.409414541523091, 22.566143909206186 ], [ -113.416233947166177, 22.573203138581952 ], [ -113.423053352809276, 22.614146668961382 ], [ -113.428781653549478, 22.624836359158966 ], [ -113.426326667517969, 22.63532435708867 ], [ -113.418961709423428, 22.655896968412325 ], [ -113.414597289811837, 22.659930813769904 ], [ -113.399049044945571, 22.668805273556579 ], [ -113.393320744205369, 22.669208658092337 ], [ -113.387592443465167, 22.6686035812887 ], [ -113.382682471402134, 22.664569735931121 ], [ -113.381591366499237, 22.662149428716575 ], [ -113.379681932919169, 22.650451277179592 ], [ -113.379681932919169, 22.643795432339587 ], [ -113.370953093696016, 22.64702250862565 ], [ -113.363860911827189, 22.667393427681425 ], [ -113.362497030698563, 22.667998504485062 ], [ -113.357041506184089, 22.667796812217183 ], [ -113.34940377186382, 22.664973120466879 ], [ -113.350222100540989, 22.662552813252329 ], [ -113.349949324315276, 22.660737582841421 ], [ -113.34940377186382, 22.657913891091113 ], [ -113.348312666960922, 22.656703737483841 ], [ -113.323490030420047, 22.649846200375958 ], [ -113.319398387034198, 22.651661430786866 ], [ -113.318580058357014, 22.654081738001416 ], [ -113.309578442908133, 22.663359582323846 ], [ -113.305214023296543, 22.663762966859604 ], [ -113.302213484813592, 22.662956197788088 ], [ -113.300031275007797, 22.660132506037783 ], [ -113.29648518407339, 22.653678353465658 ], [ -113.291029659558902, 22.637946356571099 ], [ -113.293757421816139, 22.617777129783203 ], [ -113.295394079170492, 22.613138207621986 ], [ -113.303850142167931, 22.615558514836533 ], [ -113.306032351973727, 22.618583898854716 ], [ -113.306850680650896, 22.621205898337145 ], [ -113.310396771585303, 22.627256666373512 ], [ -113.324308359097216, 22.630685434927454 ], [ -113.32594501645157, 22.629878665855941 ], [ -113.327581673805909, 22.627054974105633 ], [ -113.330036659837418, 22.625441435962603 ], [ -113.331946093417486, 22.625239743694724 ], [ -113.333582750771839, 22.626248205034116 ], [ -113.343948247349346, 22.632702357606245 ], [ -113.346948785832311, 22.636937895231704 ], [ -113.34258436622072, 22.641778509660799 ] ] ], [ [ [ -113.279845834304226, 22.711362342079038 ], [ -113.261024274729266, 22.711765726614797 ], [ -113.256932631343417, 22.682520347772346 ], [ -113.256932631343417, 22.680906809629317 ], [ -113.257750960020587, 22.677881425611133 ], [ -113.259114841149199, 22.677679733343254 ], [ -113.272753652435398, 22.682318655504467 ], [ -113.291847988236071, 22.681310194165075 ], [ -113.298940170104899, 22.679091579218404 ], [ -113.301940708587864, 22.678688194682646 ], [ -113.307941785553794, 22.685344039522654 ], [ -113.310942324036745, 22.689982961683867 ], [ -113.310942324036745, 22.692604961166296 ], [ -113.306577904425168, 22.702084497756609 ], [ -113.294030198041867, 22.712370803418434 ], [ -113.292393540687527, 22.713177572489951 ], [ -113.284210253915802, 22.712774187954192 ], [ -113.279845834304226, 22.711362342079038 ] ] ], [ [ [ -114.592990584939159, 21.959050182890518 ], [ -114.581533983458755, 21.955016337532939 ], [ -114.580170102330129, 21.953806183925664 ], [ -114.57689678762145, 21.949368954032327 ], [ -114.570622934429792, 21.936864033423831 ], [ -114.559439109175116, 21.94311649372808 ], [ -114.557802451820777, 21.942713109192322 ], [ -114.555620242014982, 21.937267417959589 ], [ -114.558348004272219, 21.926376035494126 ], [ -114.581261207233027, 21.910442346331688 ], [ -114.592717808713431, 21.913669422617751 ], [ -114.6071749486768, 21.894508657169251 ], [ -114.613448801868444, 21.903181424688047 ], [ -114.6139943543199, 21.905400039634713 ], [ -114.615358235448511, 21.906408500974109 ], [ -114.619177102608646, 21.907416962313505 ], [ -114.622723193543067, 21.907416962313505 ], [ -114.636362004829252, 21.904189886027442 ], [ -114.644818067826705, 21.898744194794709 ], [ -114.646454725181044, 21.896122195312284 ], [ -114.651364697244077, 21.894912041705009 ], [ -114.667731270787513, 21.92153542106503 ], [ -114.67209569039909, 21.930006496315947 ], [ -114.670731809270478, 21.940292801977776 ], [ -114.667458494561785, 21.955218029800818 ], [ -114.649182487438281, 21.974580487517198 ], [ -114.644545291600977, 21.978412640606898 ], [ -114.634725347474912, 21.979017717410535 ], [ -114.616449340351409, 21.978210948339019 ], [ -114.615085459222797, 21.977605871535381 ], [ -114.614267130545613, 21.97639571792811 ], [ -114.613721578094172, 21.970748334427498 ], [ -114.614812682997069, 21.965907719998402 ], [ -114.616449340351409, 21.962882335980218 ], [ -114.612630473191274, 21.956226491140214 ], [ -114.611266592062663, 21.955016337532939 ], [ -114.604174410193835, 21.953201107122027 ], [ -114.603083305290937, 21.953402799389906 ], [ -114.601446647936598, 21.955016337532939 ], [ -114.59517279474494, 21.964294181855372 ], [ -114.59435446606777, 21.964495874123251 ], [ -114.594081689842056, 21.963689105051735 ], [ -114.592990584939159, 21.959050182890518 ] ] ], [ [ [ -114.45632969585148, 21.934443726209285 ], [ -114.455238590948582, 21.934443726209285 ], [ -114.445145870596789, 21.921333728797151 ], [ -114.445418646822517, 21.919921882922001 ], [ -114.447600856628313, 21.916694806635935 ], [ -114.468059073557598, 21.918510037046847 ], [ -114.471605164492019, 21.921132036529272 ], [ -114.479242898812288, 21.922140497868668 ], [ -114.50242887799881, 21.916896498903814 ], [ -114.508975507416181, 21.919115113850484 ], [ -114.509248283641909, 21.920325267457756 ], [ -114.505702192707503, 21.922947266940184 ], [ -114.498610010838675, 21.92556926642261 ], [ -114.469422954686223, 21.932830188066252 ], [ -114.45632969585148, 21.934443726209285 ] ] ], [ [ [ -114.383498443583193, 21.959050182890518 ], [ -114.373951275682856, 21.960865413301427 ], [ -114.369314079845537, 21.957436644747485 ], [ -114.367950198716926, 21.951789261246876 ], [ -114.368222974942654, 21.949368954032327 ], [ -114.37422405190857, 21.933435264869889 ], [ -114.376133485488637, 21.932225111262618 ], [ -114.396864478643664, 21.925972650958368 ], [ -114.438599241179418, 21.932225111262618 ], [ -114.441054227210941, 21.93323357260201 ], [ -114.444054765693892, 21.938275879298985 ], [ -114.439144793630874, 21.945738493210506 ], [ -114.425233206118946, 21.953806183925664 ], [ -114.411867171058475, 21.953402799389906 ], [ -114.406138870318273, 21.951789261246876 ], [ -114.401501674480969, 21.951385876711118 ], [ -114.394682268837869, 21.952192645782635 ], [ -114.391681730354904, 21.958445106086881 ], [ -114.383498443583193, 21.959050182890518 ] ] ], [ [ [ -114.532161486602718, 22.023995093147544 ], [ -114.526978738313971, 22.024196785415423 ], [ -114.520432108896586, 22.022784939540269 ], [ -114.519613780219416, 22.017339248307536 ], [ -114.520159332670872, 22.016532479236023 ], [ -114.528342619442583, 22.012095249342686 ], [ -114.538435339794376, 22.002010635948736 ], [ -114.538435339794376, 22.000397097805706 ], [ -114.53788978734292, 21.998581867394794 ], [ -114.536525906214308, 21.995354791108731 ], [ -114.524523752282448, 21.983858331839631 ], [ -114.520432108896586, 21.983253255035994 ], [ -114.516067689285009, 21.984665100911144 ], [ -114.497246129710064, 21.986076946786298 ], [ -114.493154486324201, 21.982244793696598 ], [ -114.490972276518406, 21.979017717410535 ], [ -114.493972815001371, 21.969739873088102 ], [ -114.497246129710064, 21.97014325762386 ], [ -114.499973891967301, 21.971756795766893 ], [ -114.5136127032535, 21.970546642159619 ], [ -114.514703808156384, 21.969134796284465 ], [ -114.525887633411074, 21.94473003187111 ], [ -114.528342619442583, 21.936258956620197 ], [ -114.532161486602718, 21.934040341673526 ], [ -114.534616472634241, 21.934040341673526 ], [ -114.544981969211747, 21.939082648370501 ], [ -114.54989194127478, 21.944124955067476 ], [ -114.555347465789254, 21.974983872052956 ], [ -114.552074151080575, 21.979421101946294 ], [ -114.545527521663189, 21.984665100911144 ], [ -114.543618088083122, 21.987085408125694 ], [ -114.542526983180238, 21.990110792143877 ], [ -114.544981969211747, 21.993942945233577 ], [ -114.547436955243256, 21.995959867912369 ], [ -114.551801374854847, 21.997371713787519 ], [ -114.552619703532017, 21.996564944716006 ], [ -114.554529137112084, 21.991119253483273 ], [ -114.557802451820777, 21.988900638536602 ], [ -114.565440186141046, 21.988093869465089 ], [ -114.568713500849725, 21.991522638019031 ], [ -114.570350158204064, 21.994548022037215 ], [ -114.570350158204064, 21.997573406055398 ], [ -114.568713500849725, 22.004430943163285 ], [ -114.560802990303728, 22.020566324593602 ], [ -114.558075228046491, 22.021373093665115 ], [ -114.555347465789254, 22.020969709129357 ], [ -114.552619703532017, 22.019759555522086 ], [ -114.547436955243256, 22.015524017896627 ], [ -114.532161486602718, 22.023995093147544 ] ] ], [ [ [ -113.854858118130238, 22.180104908485859 ], [ -113.853494237001613, 22.181516754361009 ], [ -113.835218229878109, 22.175869370860401 ], [ -113.79812066317966, 22.16840675694888 ], [ -113.788300719053609, 22.157717066751292 ], [ -113.786664061699256, 22.153884913661592 ], [ -113.784754628119188, 22.142993531196129 ], [ -113.786664061699256, 22.138354609034913 ], [ -113.79812066317966, 22.129883533783996 ], [ -113.828671600460737, 22.141379993053096 ], [ -113.836309334781006, 22.127866611105208 ], [ -113.835763782329565, 22.126858149765813 ], [ -113.841492083069767, 22.128068303373087 ], [ -113.864950838482031, 22.148842606964621 ], [ -113.86140474754761, 22.180104908485859 ], [ -113.854858118130238, 22.180104908485859 ] ] ], [ [ [ -116.474600989982733, 24.904362370726972 ], [ -116.470236570371142, 24.912228369174251 ], [ -116.469963794145414, 24.931389134622755 ], [ -116.457416087762113, 24.948532977392464 ], [ -116.448141696087504, 24.948129592856706 ], [ -116.442140619121574, 24.944902516570643 ], [ -116.43068401764117, 24.907387754745159 ], [ -116.43068401764117, 24.901538678976667 ], [ -116.426592374255321, 24.894277757333025 ], [ -116.387858150202518, 24.859586687257845 ], [ -116.385948716622451, 24.857368072311175 ], [ -116.336848995992142, 24.843451305827529 ], [ -116.309025820968316, 24.833568384701458 ], [ -116.306570834936792, 24.829534539343879 ], [ -116.304661401356725, 24.825500693986299 ], [ -116.291022590070526, 24.810575466163257 ], [ -116.287749275361847, 24.810575466163257 ], [ -116.287749275361847, 24.806945005341433 ], [ -116.295932562133558, 24.804726390394766 ], [ -116.327301828091805, 24.811382235234774 ], [ -116.339576758249393, 24.812794081109924 ], [ -116.342577296732344, 24.810978850699016 ], [ -116.345850611441037, 24.807953466680829 ], [ -116.351851688406967, 24.804928082662645 ], [ -116.361126080081576, 24.804323005859008 ], [ -116.366308828370336, 24.806541620805675 ], [ -116.368218261950403, 24.811987312038408 ], [ -116.397678094328583, 24.834173461505095 ], [ -116.409134695808987, 24.849703766131775 ], [ -116.438867304412895, 24.884999913010592 ], [ -116.440503961767234, 24.88560498981423 ], [ -116.442140619121574, 24.884798220742713 ], [ -116.447323367410334, 24.88540329754635 ], [ -116.475146542434175, 24.896899756815451 ], [ -116.475419318659903, 24.902950524851818 ], [ -116.474600989982733, 24.904362370726972 ] ] ], [ [ [ -114.846672474862402, 24.751479631674719 ], [ -114.846672474862402, 24.745428863638352 ], [ -114.845581369959504, 24.744017017763198 ], [ -114.842035279025083, 24.743210248691682 ], [ -114.8409441741222, 24.744420402298957 ], [ -114.837943635639235, 24.744823786834715 ], [ -114.835761425833439, 24.742605171888044 ], [ -114.833033663576202, 24.726671482725607 ], [ -114.833033663576202, 24.718200407474693 ], [ -114.83494309715627, 24.714973331188631 ], [ -114.834670320930542, 24.698636257490435 ], [ -114.824577600578763, 24.669592570915864 ], [ -114.810120460615394, 24.658499496182522 ], [ -114.798936635360718, 24.658701188450401 ], [ -114.797572754232093, 24.652247035878272 ], [ -114.79866385913499, 24.642565807020084 ], [ -114.799754964037888, 24.637523500323109 ], [ -114.804937712326634, 24.630060886411588 ], [ -114.831397006221863, 24.623203349303701 ], [ -114.835215873381998, 24.623808426107338 ], [ -114.836306978284881, 24.625421964250371 ], [ -114.837398083187779, 24.62582534878613 ], [ -114.84394471260515, 24.625421964250371 ], [ -114.877223412143479, 24.61029504415945 ], [ -114.899863838878559, 24.597386739015196 ], [ -114.910229335456066, 24.584276741603063 ], [ -114.912138769036133, 24.5772175122273 ], [ -114.908319901875998, 24.568746436976383 ], [ -114.904501034715864, 24.563905822547287 ], [ -114.902046048684355, 24.562897361207892 ], [ -114.901773272458627, 24.561485515332741 ], [ -114.902591601135796, 24.555434747296371 ], [ -114.908047125650285, 24.550795825135154 ], [ -114.929323671256739, 24.549787363795762 ], [ -114.935051971996941, 24.556443208635766 ], [ -114.934233643319772, 24.557653362243041 ], [ -114.933960867094044, 24.559670284921829 ], [ -114.936415853125567, 24.563704130279408 ], [ -114.941053048962871, 24.569149821512141 ], [ -114.952236874217547, 24.577015819959421 ], [ -114.982787811498625, 24.593756278193375 ], [ -114.988516112238827, 24.596176585407921 ], [ -114.995881070333382, 24.597185046747317 ], [ -115.011702091425363, 24.592747816853979 ], [ -115.027523112517358, 24.591335970978825 ], [ -115.035160846837627, 24.591941047782463 ], [ -115.036251951740525, 24.594563047264892 ], [ -115.042798581157896, 24.601017199837017 ], [ -115.04989076302671, 24.605454429730354 ], [ -115.058619602249877, 24.608681506016417 ], [ -115.069257875053111, 24.609689967355813 ], [ -115.078259490502006, 24.620581349821276 ], [ -115.093807735368259, 24.635506577644318 ], [ -115.099808812334189, 24.640347192073413 ], [ -115.123813120197894, 24.654869035360697 ], [ -115.139634141289889, 24.653457189485547 ], [ -115.14945408541594, 24.651843651342514 ], [ -115.152181847673177, 24.65265042041403 ], [ -115.154364057478972, 24.654062266289184 ], [ -115.174822274408271, 24.674634877612839 ], [ -115.181368903825643, 24.683105952863755 ], [ -115.189006638145912, 24.685122875542543 ], [ -115.195553267563284, 24.685324567810422 ], [ -115.201827120754928, 24.687543182757089 ], [ -115.202645449432111, 24.688551644096485 ], [ -115.202918225657825, 24.68976179770376 ], [ -115.201281568303486, 24.696215950275885 ], [ -115.201281568303486, 24.698837949758314 ], [ -115.204282106786451, 24.712351331706202 ], [ -115.205373211689349, 24.715981792528023 ], [ -115.209192078849483, 24.723646098707423 ], [ -115.223649218812852, 24.745227171370473 ], [ -115.223649218812852, 24.750067785799569 ], [ -115.21273816978389, 24.759950706925636 ], [ -115.200463239626316, 24.766404859497765 ], [ -115.175913379311169, 24.767009936301399 ], [ -115.1546368337047, 24.765598090426248 ], [ -115.149181309190226, 24.762572706408065 ], [ -115.140998022418501, 24.759749014657757 ], [ -115.116720938329081, 24.754505015692907 ], [ -115.110719861363151, 24.755110092496544 ], [ -115.097081050076952, 24.75894224558624 ], [ -115.08971609198241, 24.766001474962007 ], [ -115.088079434628057, 24.77306070433777 ], [ -115.089988868208124, 24.780926702785049 ], [ -115.093807735368259, 24.784960548142628 ], [ -115.095989945174054, 24.786170701749903 ], [ -115.095444392722612, 24.787985932160812 ], [ -115.091898301788191, 24.793229931125666 ], [ -115.080987252759243, 24.804726390394766 ], [ -115.075804504470483, 24.807146697609312 ], [ -115.059165154701333, 24.811987312038408 ], [ -115.047435776995201, 24.81158392750265 ], [ -115.040889147577829, 24.812189004306287 ], [ -115.038979713997762, 24.814205926985078 ], [ -115.038434161546306, 24.829736231611758 ], [ -115.024249797808665, 24.846073305309954 ], [ -115.006246566910889, 24.837400537791158 ], [ -115.004609909556549, 24.834576846040854 ], [ -114.999972713719245, 24.831954846558425 ], [ -114.995335517881927, 24.831551462022666 ], [ -114.983606140175795, 24.841232690880858 ], [ -114.959601832312103, 24.849905458399654 ], [ -114.954419084023343, 24.853737611489354 ], [ -114.954419084023343, 24.866645916633608 ], [ -114.952782426669003, 24.868461147044517 ], [ -114.946508573477345, 24.865032378490575 ], [ -114.943780811220108, 24.860393456329358 ], [ -114.94350803499438, 24.858376533650571 ], [ -114.945690244800176, 24.853737611489354 ], [ -114.942416930091497, 24.843652998095404 ], [ -114.932051433513976, 24.819449925949932 ], [ -114.915957636196268, 24.816827926467504 ], [ -114.910502111681794, 24.817231311003262 ], [ -114.89740885284705, 24.819651618217808 ], [ -114.896863300395594, 24.82146684862872 ], [ -114.896863300395594, 24.823887155843266 ], [ -114.896317747944153, 24.826105770789937 ], [ -114.895499419266983, 24.827315924397212 ], [ -114.888407237398155, 24.830543000683274 ], [ -114.866585139340245, 24.823887155843266 ], [ -114.850218565796808, 24.817231311003262 ], [ -114.845854146185218, 24.811180542966895 ], [ -114.842580831476539, 24.80230608318022 ], [ -114.842308055250811, 24.797667161019003 ], [ -114.843126383927981, 24.770842089391103 ], [ -114.844763041282334, 24.760757475997153 ], [ -114.846672474862402, 24.751479631674719 ] ] ], [ [ [ -107.694752612607047, 25.803103116395619 ], [ -107.693388731478422, 25.800884501448948 ], [ -107.688205983189675, 25.792010041662277 ], [ -107.681386577546576, 25.782328812804085 ], [ -107.67920436774078, 25.780715274661056 ], [ -107.676476605483543, 25.780715274661056 ], [ -107.675112724354918, 25.781522043732572 ], [ -107.664474451551683, 25.788379580840456 ], [ -107.661473913068733, 25.794430348876823 ], [ -107.661746689294446, 25.795237117948339 ], [ -107.660928360617277, 25.800884501448948 ], [ -107.655472836102803, 25.809355576699865 ], [ -107.649471759136873, 25.806935269485319 ], [ -107.642925129719501, 25.805725115878047 ], [ -107.638015157656469, 25.80653188494956 ], [ -107.633105185593436, 25.808145423092594 ], [ -107.629831870884757, 25.811170807110777 ], [ -107.626285779950337, 25.81278434525381 ], [ -107.617829716952897, 25.813792806593206 ], [ -107.614283626018491, 25.813591114325327 ], [ -107.604736458118154, 25.810969114842898 ], [ -107.593825409089192, 25.813792806593206 ], [ -107.591915975509124, 25.815406344736235 ], [ -107.591097646831955, 25.819440190093815 ], [ -107.58209603138306, 25.826701111737457 ], [ -107.573367192159907, 25.833155264309582 ], [ -107.564365576711012, 25.836382340595648 ], [ -107.556182289939301, 25.826701111737457 ], [ -107.555636737487845, 25.824885881326544 ], [ -107.556455066165015, 25.822868958647756 ], [ -107.556727842390742, 25.813792806593206 ], [ -107.550726765424812, 25.804514962270773 ], [ -107.548271779393303, 25.80269973185986 ], [ -107.543089031104543, 25.800077732377435 ], [ -107.531905205849867, 25.795438810216218 ], [ -107.51717528966077, 25.788379580840456 ], [ -107.513901974952091, 25.785959273625906 ], [ -107.510901436469126, 25.782933889607722 ], [ -107.509810331566229, 25.780715274661056 ], [ -107.511446988920568, 25.776076352499839 ], [ -107.510355884017685, 25.774261122088927 ], [ -107.505718688180366, 25.771639122606501 ], [ -107.498353730085825, 25.768613738588318 ], [ -107.480077722962321, 25.76195789374831 ], [ -107.473258317319221, 25.757722356122851 ], [ -107.47025777883627, 25.753890203033151 ], [ -107.468348345256203, 25.75046143447921 ], [ -107.45225454793848, 25.737553129334955 ], [ -107.442434603812416, 25.733922668513134 ], [ -107.429341344977672, 25.725249900994342 ], [ -107.426613582720435, 25.721619440172518 ], [ -107.426340806494707, 25.720207594297367 ], [ -107.426613582720435, 25.718594056154334 ], [ -107.424704149140368, 25.713955133993117 ], [ -107.401245393728118, 25.677448833507029 ], [ -107.389516016021986, 25.670389604131262 ], [ -107.378059414541582, 25.665145605166408 ], [ -107.376422757187242, 25.664540528362771 ], [ -107.373694994929991, 25.665145605166408 ], [ -107.371785561349924, 25.663935451559137 ], [ -107.36551170815828, 25.656876222183371 ], [ -107.359237854966636, 25.646589916521545 ], [ -107.358419526289453, 25.644572993842758 ], [ -107.358146750063725, 25.64154760982457 ], [ -107.35869230251518, 25.639328994877904 ], [ -107.36551170815828, 25.64013576394942 ], [ -107.375877204735787, 25.64941360827185 ], [ -107.378059414541582, 25.654254222700946 ], [ -107.380514400573091, 25.656472837647613 ], [ -107.399881512599492, 25.666960835577321 ], [ -107.41679363859437, 25.671801450006416 ], [ -107.419521400851607, 25.673213295881567 ], [ -107.43043244988057, 25.680272525257333 ], [ -107.442434603812416, 25.694390984008859 ], [ -107.44925400945553, 25.706089135545838 ], [ -107.459346729807308, 25.71577036440403 ], [ -107.468621121481917, 25.716980518011304 ], [ -107.481168827865218, 25.721216055636759 ], [ -107.490715995765555, 25.726863439137372 ], [ -107.490443219539827, 25.727871900476767 ], [ -107.493170981797078, 25.731300669030709 ], [ -107.495625967828587, 25.734124360781014 ], [ -107.498353730085825, 25.735737898924047 ], [ -107.504082030826027, 25.736544667995563 ], [ -107.510901436469126, 25.736342975727684 ], [ -107.516084184757887, 25.732107438102226 ], [ -107.514720303629261, 25.727468515941009 ], [ -107.495080415377146, 25.71335005718948 ], [ -107.475440527125016, 25.703063751527655 ], [ -107.471076107513426, 25.698626521634317 ], [ -107.466438911676136, 25.692979138133708 ], [ -107.46589335922468, 25.691365599990675 ], [ -107.472439988642051, 25.679667448453696 ], [ -107.463983925644612, 25.673414988149446 ], [ -107.458801177355866, 25.669986219595504 ], [ -107.422521939334572, 25.652237300022158 ], [ -107.420885281980233, 25.652640684557916 ], [ -107.414884205014303, 25.652035607754279 ], [ -107.402882051082457, 25.648203454664579 ], [ -107.394698764310732, 25.644572993842758 ], [ -107.391698225827781, 25.639732379413662 ], [ -107.387333806216191, 25.625815612930012 ], [ -107.385151596410395, 25.622588536643949 ], [ -107.37915051944448, 25.616941153143337 ], [ -107.37314944247855, 25.612705615517882 ], [ -107.366057260609722, 25.609680231499695 ], [ -107.36032895986952, 25.606453155213632 ], [ -107.345053491228981, 25.59314146553362 ], [ -107.361692840998145, 25.58769577430089 ], [ -107.35869230251518, 25.582653467603915 ], [ -107.33005079881417, 25.558652087726319 ], [ -107.326504707879764, 25.553811473297223 ], [ -107.325413602976866, 25.551391166082677 ], [ -107.325140826751138, 25.549575935671765 ], [ -107.334415218425761, 25.518111941882648 ], [ -107.335506323328644, 25.516901788275376 ], [ -107.338506861811609, 25.514683173328706 ], [ -107.347235701034776, 25.517910249614769 ], [ -107.355146211580774, 25.518918710954164 ], [ -107.36032895986952, 25.517708557346889 ], [ -107.368512246641245, 25.511859481578401 ], [ -107.368785022866973, 25.509237482095973 ], [ -107.361147288546704, 25.503993483131122 ], [ -107.358965078740908, 25.501976560452331 ], [ -107.355418987806502, 25.479387026449889 ], [ -107.356510092709385, 25.457604261518959 ], [ -107.36032895986952, 25.444090879571071 ], [ -107.37233111380138, 25.414038731657104 ], [ -107.374513323607175, 25.412626885781954 ], [ -107.382423834153158, 25.402743964655883 ], [ -107.386788253764749, 25.39568473528012 ], [ -107.381878281701717, 25.390440736315266 ], [ -107.382696610378886, 25.383583199207383 ], [ -107.395244316762188, 25.356556435311603 ], [ -107.393880435633562, 25.352320897686141 ], [ -107.39578986921363, 25.348690436864324 ], [ -107.409701456725557, 25.338202438934616 ], [ -107.419794177077335, 25.338202438934616 ], [ -107.4432529324896, 25.365229202830395 ], [ -107.470530555061984, 25.410609963103163 ], [ -107.47189443619061, 25.416862423407409 ], [ -107.471076107513426, 25.434006266177121 ], [ -107.468075569030475, 25.446309494517738 ], [ -107.460165058484478, 25.460226261001388 ], [ -107.470803331287712, 25.466680413573513 ], [ -107.474349422222119, 25.464260106358964 ], [ -107.478713841833695, 25.464663490894722 ], [ -107.479532170510879, 25.465671952234118 ], [ -107.492079876894181, 25.488059793968684 ], [ -107.48853378595976, 25.493303792933535 ], [ -107.481714380316674, 25.495522407880205 ], [ -107.479804946736607, 25.492698716129901 ], [ -107.479259394285151, 25.491085177986868 ], [ -107.478441065607981, 25.489269947575956 ], [ -107.465620582998952, 25.487051332629289 ], [ -107.463983925644612, 25.488664870772318 ], [ -107.464802254321782, 25.497337638291114 ], [ -107.496717072731485, 25.514884865596585 ], [ -107.52235803794953, 25.530011785687506 ], [ -107.52235803794953, 25.534852400116602 ], [ -107.524267471529598, 25.539894706813577 ], [ -107.533814639429934, 25.549777627939644 ], [ -107.554818408810675, 25.561072394940865 ], [ -107.55863727597081, 25.563492702155415 ], [ -107.578277164222925, 25.589712696979678 ], [ -107.581550478931618, 25.593544850069378 ], [ -107.583732688737413, 25.595158388212411 ], [ -107.588369884574718, 25.595763465016049 ], [ -107.593825409089192, 25.600604079445141 ], [ -107.600644814732291, 25.61472253819667 ], [ -107.601190367183733, 25.626622382001528 ], [ -107.610737535084084, 25.646388224253666 ], [ -107.625467451273167, 25.6633303747555 ], [ -107.630650199561927, 25.667767604648837 ], [ -107.634196290496334, 25.669986219595504 ], [ -107.654108954974177, 25.701450213384625 ], [ -107.658473374585768, 25.706290827813717 ], [ -107.6633833466488, 25.709316211831904 ], [ -107.678931591515067, 25.729082054084039 ], [ -107.681113801320848, 25.739771744281626 ], [ -107.684387116029541, 25.745620820050114 ], [ -107.701572018250147, 25.759739278801643 ], [ -107.716847486890686, 25.769823892195589 ], [ -107.719302472922195, 25.770832353534985 ], [ -107.722575787630888, 25.76962219992771 ], [ -107.724757997436683, 25.769823892195589 ], [ -107.729940745725429, 25.772445891678018 ], [ -107.737578480045698, 25.779303428785902 ], [ -107.758855025652167, 25.802296347324102 ], [ -107.781495452387247, 25.834970494720494 ], [ -107.787223753127449, 25.850500799347174 ], [ -107.787496529353177, 25.853526183365361 ], [ -107.767583864875334, 25.846265261721715 ], [ -107.736214598917087, 25.83355864884534 ], [ -107.734577941562733, 25.831945110702311 ], [ -107.731031850628327, 25.82589434266594 ], [ -107.721757458953718, 25.82044865143321 ], [ -107.71630193443923, 25.820045266897452 ], [ -107.709482528796144, 25.822465574111998 ], [ -107.707027542764621, 25.821053728236848 ], [ -107.694752612607047, 25.803103116395619 ] ] ], [ [ [ -106.202393881671497, 24.923523136175476 ], [ -106.202393881671497, 24.918077444942742 ], [ -106.187936741708128, 24.900530217637272 ], [ -106.184936203225163, 24.900731909905151 ], [ -106.181390112290757, 24.902748832583939 ], [ -106.175389035324827, 24.902950524851818 ], [ -106.174570706647657, 24.902748832583939 ], [ -106.174297930421943, 24.902143755780305 ], [ -106.173479601744759, 24.898311602690605 ], [ -106.175934587776283, 24.874511915080888 ], [ -106.17702569267918, 24.87007468518755 ], [ -106.197483909608479, 24.858981610454208 ], [ -106.23676368611271, 24.865637455294213 ], [ -106.245765301561605, 24.869671300651792 ], [ -106.249311392496011, 24.878142375902708 ], [ -106.24876584004457, 24.879554221777859 ], [ -106.236218133661268, 24.895891295476055 ], [ -106.208940511088883, 24.924733289782747 ], [ -106.204576091477293, 24.926145135657901 ], [ -106.202393881671497, 24.923523136175476 ] ] ], [ [ [ -106.410522141898852, 25.013679579917369 ], [ -106.393064463452518, 25.006418658273727 ], [ -106.382153414423556, 25.003998351059177 ], [ -106.376697889909082, 25.003796658791302 ], [ -106.367423498234473, 24.99794758302281 ], [ -106.366605169557303, 24.991090045914923 ], [ -106.371515141620335, 24.983224047467644 ], [ -106.359512987688476, 24.959626052125806 ], [ -106.359785763914203, 24.947322823785193 ], [ -106.350511372239595, 24.915657137728196 ], [ -106.369878484265982, 24.922716367103959 ], [ -106.383517295552181, 24.930380673283359 ], [ -106.384608400455079, 24.931590826890634 ], [ -106.384881176680807, 24.933204365033664 ], [ -106.407248827190159, 24.960231128929443 ], [ -106.413249904156089, 24.964668358822781 ], [ -106.432071463731035, 24.993308660861594 ], [ -106.44107307917993, 25.017511733007069 ], [ -106.441345855405643, 25.018923578882223 ], [ -106.436435883342625, 25.020537117025253 ], [ -106.429616477699525, 25.020133732489494 ], [ -106.428798149022356, 25.01973034795374 ], [ -106.42661593921656, 25.017108348471311 ], [ -106.423342624507882, 25.015898194864036 ], [ -106.410522141898852, 25.013679579917369 ] ] ], [ [ [ -112.598996374897325, 23.347499754969277 ], [ -112.589449206996989, 23.34386929414746 ], [ -112.585084787385412, 23.341045602397152 ], [ -112.583993682482514, 23.339432064254119 ], [ -112.586721444739752, 23.337213449307452 ], [ -112.591085864351328, 23.33761683384321 ], [ -112.592176969254226, 23.339028679718364 ], [ -112.595450283962919, 23.340440525593515 ], [ -112.604724675637527, 23.342054063736548 ], [ -112.619181815600896, 23.340238833325635 ], [ -112.621091249180964, 23.339633756521998 ], [ -112.625182892566826, 23.334389757557148 ], [ -112.626273997469724, 23.32995252766381 ], [ -112.6306384170813, 23.327532220449264 ], [ -112.668008760005478, 23.318052683858951 ], [ -112.668827088682647, 23.319262837466226 ], [ -112.669372641134103, 23.325111913234714 ], [ -112.664735445296799, 23.335196526628664 ], [ -112.662826011716732, 23.338423602914727 ], [ -112.654915501170734, 23.347499754969277 ], [ -112.630092864629859, 23.352743753934131 ], [ -112.616726829569387, 23.354155599809285 ], [ -112.613180738634981, 23.353953907541406 ], [ -112.598996374897325, 23.347499754969277 ] ] ], [ [ [ -115.655726760359528, 26.213143496993546 ], [ -115.622175284595485, 26.210319805243238 ], [ -115.619447522338248, 26.211731651118392 ], [ -115.612082564243707, 26.212740112457787 ], [ -115.601444291440473, 26.211933343386271 ], [ -115.589169361282899, 26.20830288256445 ], [ -115.588896585057171, 26.206891036689296 ], [ -115.588078256380001, 26.206285959885662 ], [ -115.560527857581889, 26.196806423295349 ], [ -115.539524088201148, 26.193982731545042 ], [ -115.537887430846794, 26.191159039794737 ], [ -115.538160207072522, 26.189545501651708 ], [ -115.544161284038452, 26.172401658881995 ], [ -115.550980689681552, 26.154249354772887 ], [ -115.557254542873196, 26.138517357878328 ], [ -115.558345647776093, 26.136298742931661 ], [ -115.564346724742023, 26.128634436752261 ], [ -115.572257235288021, 26.120970130572861 ], [ -115.574984997545258, 26.120365053769223 ], [ -115.578531088479664, 26.12117182284074 ], [ -115.590806018637238, 26.127424283144986 ], [ -115.593806557120203, 26.13024797489529 ], [ -115.597625424280338, 26.131458128502565 ], [ -115.609900354437912, 26.134685204788628 ], [ -115.622448060821213, 26.135693666128024 ], [ -115.641269620396159, 26.134281820252873 ], [ -115.654090103005188, 26.131458128502565 ], [ -115.662546166002628, 26.12883612902014 ], [ -115.677276082191725, 26.122785360983769 ], [ -115.681367725577587, 26.115927823875886 ], [ -115.689551012349298, 26.105036441410423 ], [ -115.696643194218126, 26.097977212034657 ], [ -115.705099257215565, 26.091523059462531 ], [ -115.709463676827141, 26.086682445033436 ], [ -115.714646425115902, 26.077807985246764 ], [ -115.717646963598867, 26.068933525460089 ], [ -115.71791973982458, 26.064496295566752 ], [ -115.717101411147411, 26.062277680620085 ], [ -115.716010306244513, 26.041099992492793 ], [ -115.730194669982154, 26.022745996115805 ], [ -115.752562320491521, 26.031418763634601 ], [ -115.754471754071588, 26.033435686313389 ], [ -115.754744530297316, 26.035049224456422 ], [ -115.750107334460012, 26.040091531153397 ], [ -115.750107334460012, 26.041099992492793 ], [ -115.76101838348896, 26.072362294014031 ], [ -115.769201670260685, 26.089102752247985 ], [ -115.771111103840752, 26.09192644399829 ], [ -115.779839943063905, 26.102011057392239 ], [ -115.792387649447221, 26.114515978000732 ], [ -115.801389264896102, 26.119558284697707 ], [ -115.804935355830509, 26.120365053769223 ], [ -115.807935894313474, 26.122785360983769 ], [ -115.813664195053676, 26.129441205823777 ], [ -115.813936971279404, 26.131256436234686 ], [ -115.814482523730845, 26.131861513038324 ], [ -115.82430246785691, 26.136903819735299 ], [ -115.828939663694214, 26.139122434681966 ], [ -115.834940740660144, 26.140534280557119 ], [ -115.839032384046007, 26.140130896021361 ], [ -115.841487370077516, 26.138315665610449 ], [ -115.840396265174618, 26.136903819735299 ], [ -115.842851251206142, 26.136298742931661 ], [ -115.857035614943783, 26.137307204271057 ], [ -115.860581705878189, 26.140937665092878 ], [ -115.861400034555359, 26.144568125914699 ], [ -115.860308929652462, 26.14577827952197 ], [ -115.85976337720102, 26.147391817665003 ], [ -115.85976337720102, 26.151425663022582 ], [ -115.86494612548978, 26.165342429506232 ], [ -115.871492754907152, 26.178452426918362 ], [ -115.876948279421626, 26.187730271240795 ], [ -115.890041538256369, 26.201445345456566 ], [ -115.906408111799806, 26.214555342868699 ], [ -115.915682503474429, 26.221009495440825 ], [ -115.94650621698122, 26.236136415531746 ], [ -115.976784378036584, 26.250254874283272 ], [ -115.988513755742702, 26.253683642837217 ], [ -115.997242594965869, 26.255095488712367 ], [ -116.01742803566944, 26.256103950051763 ], [ -116.023974665086826, 26.255700565516005 ], [ -116.05807169330231, 26.23896010728205 ], [ -116.060526679333819, 26.237144876871142 ], [ -116.061890560462444, 26.234926261924471 ], [ -116.062163336688172, 26.234119492852955 ], [ -116.061617784236716, 26.230085647495379 ], [ -116.062708889139614, 26.224841648530525 ], [ -116.071710504588509, 26.215765496475971 ], [ -116.092168721517794, 26.203462268135354 ], [ -116.098442574709452, 26.203260575867475 ], [ -116.117536910510125, 26.216975650083246 ], [ -116.138540679890866, 26.227867032548708 ], [ -116.152725043628507, 26.233111031513562 ], [ -116.163363316431742, 26.253078566033579 ], [ -116.167727736043318, 26.263566563963284 ], [ -116.168818840946216, 26.267197024785105 ], [ -116.173183260557806, 26.289786558787551 ], [ -116.170455498300555, 26.319233629897877 ], [ -116.168546064720488, 26.334360549988801 ], [ -116.159544449271607, 26.353117930901544 ], [ -116.152452267402779, 26.362194082956094 ], [ -116.149724505145542, 26.368849927796102 ], [ -116.149178952694101, 26.373892234493077 ], [ -116.151088386274168, 26.390834384994911 ], [ -116.15081561004844, 26.399103767977948 ], [ -116.147815071565475, 26.398095306638552 ], [ -116.146451190436863, 26.399507152513703 ], [ -116.145360085533966, 26.402532536531886 ], [ -116.14481453308251, 26.40636468962159 ], [ -116.145087309308238, 26.411003611782803 ], [ -116.146723966662577, 26.418466225694324 ], [ -116.147542295339747, 26.429155915891911 ], [ -116.146451190436863, 26.429962684963428 ], [ -116.138813456116594, 26.428147454552516 ], [ -116.137449574987969, 26.428550839088274 ], [ -116.135540141407901, 26.430769454034944 ], [ -116.133630707827834, 26.430971146302824 ], [ -116.132539602924936, 26.429760992695549 ], [ -116.131175721796311, 26.425122070534332 ], [ -116.127902407087632, 26.422701763319786 ], [ -116.127084078410462, 26.417054379819174 ], [ -116.127084078410462, 26.412617149925836 ], [ -116.127902407087632, 26.410801919514924 ], [ -116.130357393119141, 26.40777653549674 ], [ -116.130357393119141, 26.406566381889469 ], [ -116.129539064441971, 26.405759612817953 ], [ -116.129266288216243, 26.403137613335524 ], [ -116.130630169344869, 26.393456384477336 ], [ -116.130084616893427, 26.390632692727031 ], [ -116.128447959539074, 26.38619546283369 ], [ -116.126811302184734, 26.383976847887023 ], [ -116.122446882573144, 26.379539617993686 ], [ -116.105261980352537, 26.369051620063981 ], [ -116.077711581554425, 26.354933161312452 ], [ -116.042523448436043, 26.342629932971839 ], [ -116.022883560183928, 26.333755473185164 ], [ -116.011154182477796, 26.329318243291826 ], [ -115.992605399128564, 26.323872552059093 ], [ -115.983876559905397, 26.324477628862731 ], [ -115.98196712632533, 26.325687782470006 ], [ -115.974056615779347, 26.331536858238493 ], [ -115.96532777655618, 26.340209625757289 ], [ -115.941323468692474, 26.358563622134277 ], [ -115.92304746156897, 26.370463465939132 ], [ -115.899315929930992, 26.381153156136719 ], [ -115.896042615222299, 26.381959925208236 ], [ -115.894133181642232, 26.381758232940356 ], [ -115.889768762030656, 26.378732848922169 ], [ -115.876402726970184, 26.376312541707623 ], [ -115.873674964712933, 26.376312541707623 ], [ -115.872583859810049, 26.378329464386411 ], [ -115.870674426229982, 26.379539617993686 ], [ -115.86494612548978, 26.378329464386411 ], [ -115.85812671984668, 26.374900695832473 ], [ -115.855398957589443, 26.370463465939132 ], [ -115.853489524009376, 26.366227928313677 ], [ -115.837395726691653, 26.346663778329415 ], [ -115.833304083305805, 26.343638394311231 ], [ -115.83030354482284, 26.34242824070396 ], [ -115.824848020308366, 26.342024856168202 ], [ -115.821574705599673, 26.340411318025168 ], [ -115.817755838439538, 26.328713166488189 ], [ -115.810936432796439, 26.298257634038464 ], [ -115.812300313925064, 26.282727329411784 ], [ -115.808208670539202, 26.278290099518451 ], [ -115.804389803379067, 26.275668100036022 ], [ -115.797843173961695, 26.273449485089355 ], [ -115.784204362675496, 26.266995332517226 ], [ -115.774384418549431, 26.259734410873584 ], [ -115.752289544265793, 26.255095488712367 ], [ -115.734013537142289, 26.253683642837217 ], [ -115.731285774885052, 26.252675181497821 ], [ -115.71873806850175, 26.240977029960842 ], [ -115.716010306244513, 26.234321185120834 ], [ -115.715737530018799, 26.232707646977804 ], [ -115.713555320213004, 26.228875493888104 ], [ -115.711918662858665, 26.226858571209313 ], [ -115.706735914569904, 26.223429802655371 ], [ -115.685459368963436, 26.218790880494154 ], [ -115.679185515771792, 26.219194265029913 ], [ -115.664728375808423, 26.217379034619004 ], [ -115.658454522616765, 26.215160419672333 ], [ -115.655726760359528, 26.213143496993546 ] ] ], [ [ [ -114.32212379279531, 26.405759612817953 ], [ -114.316941044506549, 26.40777653549674 ], [ -114.311485519992075, 26.412617149925836 ], [ -114.308212205283382, 26.413625611265232 ], [ -114.301938352091739, 26.411406996318561 ], [ -114.298937813608774, 26.40797822776462 ], [ -114.289663421934165, 26.408583304568257 ], [ -114.287208435902642, 26.409390073639774 ], [ -114.285299002322574, 26.411003611782803 ], [ -114.284480673645405, 26.413020534461594 ], [ -114.284480673645405, 26.413827303533111 ], [ -114.285299002322574, 26.414634072604628 ], [ -114.284480673645405, 26.416045918479778 ], [ -114.2798434778081, 26.41564253394402 ], [ -114.274115177067898, 26.412415457657957 ], [ -114.266204666521901, 26.398095306638552 ], [ -114.265113561619003, 26.37853115665429 ], [ -114.271387414810661, 26.374093926760956 ], [ -114.279297925356644, 26.375102388100348 ], [ -114.289936198159879, 26.374093926760956 ], [ -114.306302771703315, 26.36945500459974 ], [ -114.308212205283382, 26.367438081920948 ], [ -114.318850478086617, 26.368043158724586 ], [ -114.331943736921374, 26.373892234493077 ], [ -114.332762065598544, 26.374295619028835 ], [ -114.339035918790188, 26.383573463351265 ], [ -114.334398722952884, 26.387002231905207 ], [ -114.327306541084056, 26.39628007622764 ], [ -114.32212379279531, 26.405759612817953 ] ] ], [ [ [ -115.450599038615152, 26.989255343791783 ], [ -115.450053486163696, 26.991473958738453 ], [ -115.442688528069155, 27.001155187596641 ], [ -115.440233542037632, 27.003575494811187 ], [ -115.435050793748886, 27.006197494293616 ], [ -115.424958073397093, 27.010433031919074 ], [ -115.411319262110908, 27.008416109240287 ], [ -115.40504540891925, 27.004583956150583 ], [ -115.401226541759115, 27.00135687986452 ], [ -115.395771017244641, 26.991675651006332 ], [ -115.394134359890302, 26.985221498434203 ], [ -115.393588807438846, 26.976347038647532 ], [ -115.394679912341743, 26.97211150102207 ], [ -115.400953765533387, 26.95900150360994 ], [ -115.405318185144978, 26.954160889180844 ], [ -115.41704756285111, 26.947706736608716 ], [ -115.427413059428616, 26.948513505680232 ], [ -115.436414674877497, 26.951740581966298 ], [ -115.445961842777834, 26.959404888145698 ], [ -115.450326262389424, 26.967069194325099 ], [ -115.451144591066594, 26.974733500504499 ], [ -115.451144591066594, 26.982397806683899 ], [ -115.450599038615152, 26.989255343791783 ] ] ], [ [ [ -115.589169361282899, 27.344838812062392 ], [ -115.588078256380001, 27.347057427009059 ], [ -115.586168822799934, 27.348670965152088 ], [ -115.582077179414071, 27.350082811027242 ], [ -115.579622193382562, 27.349881118759363 ], [ -115.578258312253936, 27.338182967222384 ], [ -115.579349417156834, 27.335762660007838 ], [ -115.580167745834004, 27.3351575832042 ], [ -115.585350494122764, 27.335359275472079 ], [ -115.586987151477103, 27.337174505882992 ], [ -115.588896585057171, 27.340199889901175 ], [ -115.589442137508627, 27.344032042990875 ], [ -115.589169361282899, 27.344838812062392 ] ] ], [ [ [ -115.04907243434954, 27.590298302071083 ], [ -115.04907243434954, 27.590298302071083 ], [ -115.046890224543745, 27.584852610838354 ], [ -115.055346287541198, 27.581625534552288 ], [ -115.060801812055672, 27.577389996926833 ], [ -115.065166231667249, 27.566498614461366 ], [ -115.068166770150214, 27.564279999514699 ], [ -115.070894532407451, 27.565086768586212 ], [ -115.074167847116144, 27.56791046033652 ], [ -115.074440623341872, 27.568515537140158 ], [ -115.075804504470483, 27.572347690229858 ], [ -115.075804504470483, 27.575373074248041 ], [ -115.073622294664688, 27.577591689194712 ], [ -115.071167308633179, 27.58102045774865 ], [ -115.067075665247316, 27.584247534034716 ], [ -115.06189291695857, 27.587071225785021 ], [ -115.055346287541198, 27.589693225267446 ], [ -115.053164077735403, 27.590298302071083 ], [ -115.04907243434954, 27.590298302071083 ] ] ], [ [ [ -107.111829818235037, 24.929573904211843 ], [ -107.106101517494835, 24.928363750604568 ], [ -107.095463244691601, 24.92775867380093 ], [ -107.085097748114094, 24.939456825337913 ], [ -107.080733328502504, 24.942885593891852 ], [ -107.073368370407962, 24.945305901106401 ], [ -107.071458936827895, 24.944297439767006 ], [ -107.070640608150725, 24.938448363998518 ], [ -107.070640608150725, 24.936028056783968 ], [ -107.071731713053623, 24.934414518640938 ], [ -107.074186699085132, 24.93401113410518 ], [ -107.078278342470995, 24.929573904211843 ], [ -107.084279419436925, 24.91868252174638 ], [ -107.087007181694162, 24.911219907834855 ], [ -107.086734405468434, 24.905975908870005 ], [ -107.089734943951399, 24.893874372797267 ], [ -107.091098825080024, 24.891050681046963 ], [ -107.10310097901187, 24.888832066100292 ], [ -107.108556503526358, 24.889638835171809 ], [ -107.120013105006763, 24.909202985156067 ], [ -107.124377524618339, 24.92412821297911 ], [ -107.118922000103851, 24.924934982050626 ], [ -107.111829818235037, 24.929573904211843 ] ] ], [ [ [ -107.105555965043379, 25.006015273737969 ], [ -107.097645454497396, 24.998956044362206 ], [ -107.093553811111533, 24.985240970146435 ], [ -107.092735482434364, 24.97878681757431 ], [ -107.092735482434364, 24.976971587163398 ], [ -107.093826587337261, 24.976971587163398 ], [ -107.10310097901187, 24.982417278396131 ], [ -107.11073871333214, 24.988468046432498 ], [ -107.118649223878137, 24.992703584057956 ], [ -107.128196391778474, 24.992300199522198 ], [ -107.130378601584255, 24.992905276325835 ], [ -107.148381832482045, 25.010654195899185 ], [ -107.15138237096501, 25.015293118060399 ], [ -107.147563503804861, 25.02114219382889 ], [ -107.149745713610656, 25.031025114954961 ], [ -107.169112825637058, 25.051194341742857 ], [ -107.176477783731599, 25.070960183994995 ], [ -107.188479937663459, 25.074388952548937 ], [ -107.192298804823594, 25.073985568013178 ], [ -107.193662685952205, 25.074792337084695 ], [ -107.205119287432609, 25.099802178301687 ], [ -107.199118210466693, 25.117954482410791 ], [ -107.194753790855103, 25.133888171573229 ], [ -107.198299881789524, 25.142157554556267 ], [ -107.20184597272393, 25.145586323110209 ], [ -107.207301497238404, 25.148208322592637 ], [ -107.213848126655776, 25.145989707645967 ], [ -107.216848665138741, 25.146796476717483 ], [ -107.218212546267367, 25.149418476199909 ], [ -107.218212546267367, 25.150225245271425 ], [ -107.21548478401013, 25.156679397843551 ], [ -107.20784704968986, 25.154460782896884 ], [ -107.20184597272393, 25.151032014342942 ], [ -107.198027105563796, 25.147603245789 ], [ -107.184115518051868, 25.139737247341721 ], [ -107.162020643768244, 25.140544016413234 ], [ -107.159565657736721, 25.147603245789 ], [ -107.159838433962449, 25.150225245271425 ], [ -107.162566196219686, 25.155872628772038 ], [ -107.184661070503324, 25.17079785659508 ], [ -107.197754329338068, 25.171806317934475 ], [ -107.240307420551005, 25.187740007096913 ], [ -107.252309574482851, 25.194194159669038 ], [ -107.258583427674495, 25.208716002956322 ], [ -107.272495015186422, 25.21698538593936 ], [ -107.291862127212823, 25.221422615832697 ], [ -107.309319805659158, 25.236751228191498 ], [ -107.337415756908712, 25.280115065785473 ], [ -107.339052414263051, 25.28334214207154 ], [ -107.339325190488779, 25.287981064232753 ], [ -107.336597428231542, 25.301494446180644 ], [ -107.332778561071407, 25.314604443592778 ], [ -107.329232470137001, 25.319848442557628 ], [ -107.32404972184824, 25.322268749772178 ], [ -107.321867512042445, 25.322268749772178 ], [ -107.290771022309926, 25.315007828128536 ], [ -107.288861588729858, 25.313394289985503 ], [ -107.284224392892554, 25.312990905449745 ], [ -107.280405525732419, 25.319041673486115 ], [ -107.282314959312487, 25.325495826058241 ], [ -107.286679378924063, 25.328924594612182 ], [ -107.295135441921502, 25.328521210076424 ], [ -107.306592043401906, 25.329126286880062 ], [ -107.324595274299696, 25.334773670380674 ], [ -107.324595274299696, 25.335782131720066 ], [ -107.319958078462378, 25.338807515738253 ], [ -107.313138672819292, 25.33961428480977 ], [ -107.298954309081637, 25.337395669863099 ], [ -107.29458988947006, 25.340017669345528 ], [ -107.292680455889993, 25.348085360060686 ], [ -107.296772099275856, 25.352724282221899 ], [ -107.298681532855923, 25.356354743043724 ], [ -107.29458988947006, 25.356556435311603 ], [ -107.281496630635317, 25.355144589436449 ], [ -107.262675071060357, 25.345665052846137 ], [ -107.234033567359347, 25.32569751832612 ], [ -107.222031413427501, 25.317428135343082 ], [ -107.20866537836703, 25.30391475339519 ], [ -107.208119825915574, 25.292619986393973 ], [ -107.207028721012676, 25.291813217322456 ], [ -107.19666322443517, 25.29100644825094 ], [ -107.190662147469254, 25.294031832269123 ], [ -107.190662147469254, 25.300284292573373 ], [ -107.193935462177933, 25.309562136895803 ], [ -107.198299881789524, 25.31641967400369 ], [ -107.200754867821033, 25.319646750289753 ], [ -107.2026643014011, 25.320856903897024 ], [ -107.204300958755439, 25.321461980700661 ], [ -107.205937616109793, 25.320453519361266 ], [ -107.20784704968986, 25.321260288432782 ], [ -107.210847588172811, 25.324890749254603 ], [ -107.211393140624267, 25.327311056469153 ], [ -107.205119287432609, 25.331143209558853 ], [ -107.198299881789524, 25.330941517290974 ], [ -107.191480476146424, 25.328924594612182 ], [ -107.177841664860225, 25.330336440487336 ], [ -107.171840587894295, 25.329933055951578 ], [ -107.168294496959888, 25.325899210593999 ], [ -107.165839510928379, 25.320856903897024 ], [ -107.166385063379821, 25.309965521431561 ], [ -107.163930077348311, 25.305729983806103 ], [ -107.158201776608109, 25.297258908555186 ], [ -107.156565119253756, 25.293628447733365 ], [ -107.153291804545077, 25.289594602375786 ], [ -107.149745713610656, 25.290401371447302 ], [ -107.139107440807436, 25.279913373517594 ], [ -107.136379678550185, 25.275274451356381 ], [ -107.126014181972678, 25.263777992087277 ], [ -107.124923077069781, 25.26155937714061 ], [ -107.125195853295509, 25.256920454979394 ], [ -107.124650300844053, 25.251474763746664 ], [ -107.15138237096501, 25.238364766334531 ], [ -107.148654608707773, 25.208312618420564 ], [ -107.144835741547638, 25.199438158633889 ], [ -107.138834664581708, 25.197824620490859 ], [ -107.133924692518676, 25.195202621008434 ], [ -107.119467552555307, 25.184311238542968 ], [ -107.118922000103851, 25.183101084935696 ], [ -107.123013643489713, 25.180075700917513 ], [ -107.125741405746965, 25.179470624113875 ], [ -107.130105825358541, 25.175033394220538 ], [ -107.128196391778474, 25.149620168467788 ], [ -107.116194237846628, 25.148410014860513 ], [ -107.10310097901187, 25.148006630324758 ], [ -107.09791823072311, 25.144577861770813 ], [ -107.094099363562975, 25.139737247341721 ], [ -107.088098286597059, 25.098188640158654 ], [ -107.087552734145603, 25.085280335014399 ], [ -107.090553272628568, 25.085482027282278 ], [ -107.094372139788703, 25.082456643264095 ], [ -107.096554349594498, 25.079834643781666 ], [ -107.096554349594498, 25.077817721102878 ], [ -107.096008797143043, 25.076809259763483 ], [ -107.084006643211197, 25.065716185030141 ], [ -107.073095594182234, 25.035260652580419 ], [ -107.073913922859418, 25.028604807740411 ], [ -107.077732790019553, 25.025781115990107 ], [ -107.084279419436925, 25.024570962382832 ], [ -107.086461629242706, 25.025176039186469 ], [ -107.094372139788703, 25.029814961347686 ], [ -107.09709990204594, 25.033647114437386 ], [ -107.098463783174566, 25.042521574224061 ], [ -107.100100440528905, 25.048370649992549 ], [ -107.102828202786142, 25.053412956689524 ], [ -107.111284265783581, 25.065716185030141 ], [ -107.123286419715441, 25.075599106156211 ], [ -107.124923077069781, 25.076204182959845 ], [ -107.130924154035711, 25.072170337602266 ], [ -107.130651377809983, 25.066926338637415 ], [ -107.125468629521237, 25.052404495350128 ], [ -107.134197468744389, 25.042319881956182 ], [ -107.136379678550185, 25.041513112884665 ], [ -107.13856188835598, 25.036067421651932 ], [ -107.139107440807436, 25.031226807222836 ], [ -107.13174248271288, 25.030823422687082 ], [ -107.121649762361102, 25.033445422169507 ], [ -107.118376447652409, 25.035664037116177 ], [ -107.10473763636621, 25.010855888167065 ], [ -107.105555965043379, 25.006015273737969 ] ] ], [ [ [ -106.864421781503438, 25.402340580120125 ], [ -106.859784585666134, 25.397701657958908 ], [ -106.858147928311794, 25.394071197137087 ], [ -106.867695096212131, 25.374708739420708 ], [ -106.870695634695096, 25.371279970866766 ], [ -106.870968410920824, 25.371683355402524 ], [ -106.875878382983842, 25.368456279116458 ], [ -106.8821522361755, 25.353732743561295 ], [ -106.884334445981295, 25.345261668310378 ], [ -106.896336599913141, 25.329327979147941 ], [ -106.900973795750446, 25.326302595129757 ], [ -106.91679481684244, 25.325294133790361 ], [ -106.942435782060485, 25.313797674521261 ], [ -106.942708558286213, 25.312789213181865 ], [ -106.956620145798126, 25.309562136895803 ], [ -106.971077285761496, 25.319848442557628 ], [ -106.977623915178867, 25.32952967141582 ], [ -106.971895614438665, 25.345866745114016 ], [ -107.005447090202708, 25.361598742008574 ], [ -107.015812586780214, 25.363010587883728 ], [ -107.029996950517869, 25.367649510044945 ], [ -107.043090209352613, 25.376523969831617 ], [ -107.050182391221426, 25.382574737867987 ], [ -107.055365139510187, 25.387818736832841 ], [ -107.056729020638812, 25.389230582707992 ], [ -107.057274573090254, 25.391045813118904 ], [ -107.062457321379014, 25.395079658476483 ], [ -107.071731713053623, 25.401533811048608 ], [ -107.075005027762302, 25.400727041977092 ], [ -107.08046055227679, 25.385398429618292 ], [ -107.078551118696723, 25.377129046635254 ], [ -107.075550580213758, 25.372490124474041 ], [ -107.067367293442032, 25.364422433758882 ], [ -107.062184545153286, 25.363212280151608 ], [ -107.055910691961628, 25.368254586848579 ], [ -107.054819587058745, 25.369464740455854 ], [ -107.055365139510187, 25.370876586331008 ], [ -107.056456244413084, 25.372288432206162 ], [ -107.056456244413084, 25.375112123956466 ], [ -107.054819587058745, 25.37793581570677 ], [ -107.038180237289581, 25.363817356955245 ], [ -107.036543579935241, 25.359985203865541 ], [ -107.035452475032344, 25.352119205418262 ], [ -107.028633069389244, 25.339210900274011 ], [ -107.024541426003381, 25.341631207488557 ], [ -107.007629300008503, 25.344051514703104 ], [ -106.993172160045134, 25.341631207488557 ], [ -106.991808278916508, 25.340622746149165 ], [ -106.971350061987224, 25.310772290503078 ], [ -106.968622299729986, 25.306133368341861 ], [ -106.975168929147358, 25.305528291538224 ], [ -106.98171555856473, 25.30411644566307 ], [ -106.98171555856473, 25.301897830716403 ], [ -106.979806124984663, 25.298267369894582 ], [ -106.978169467630323, 25.297258908555186 ], [ -106.974077824244461, 25.297057216287307 ], [ -106.969167852181428, 25.289594602375786 ], [ -106.96971340463287, 25.276686297231532 ], [ -106.971077285761496, 25.272450759606073 ], [ -106.977896691404595, 25.262567838480006 ], [ -107.015539810554486, 25.254500147764848 ], [ -107.017722020360281, 25.254500147764848 ], [ -107.022086439971872, 25.259542454461823 ], [ -107.026178083357735, 25.261357684872731 ], [ -107.027541964486346, 25.26155937714061 ], [ -107.033543041452276, 25.258937377658185 ], [ -107.036543579935241, 25.256315378175756 ], [ -107.035725251258071, 25.249054456532114 ], [ -107.037634684838139, 25.235339382316347 ], [ -107.04581797160985, 25.222632769439972 ], [ -107.049909614995713, 25.219405693153909 ], [ -107.066003412313421, 25.21153969470663 ], [ -107.074732251536588, 25.208917695224201 ], [ -107.079369447373892, 25.208312618420564 ], [ -107.082369985856857, 25.209724464295718 ], [ -107.092735482434364, 25.224447999850881 ], [ -107.101191545431803, 25.237961381798772 ], [ -107.10473763636621, 25.244415534370901 ], [ -107.105010412591938, 25.247037533853327 ], [ -107.10473763636621, 25.250466302407268 ], [ -107.105555965043379, 25.252684917353935 ], [ -107.106919846172005, 25.255105224568485 ], [ -107.111011489557868, 25.260349223533339 ], [ -107.114830356718002, 25.269828760123648 ], [ -107.117830895200967, 25.272854144141832 ], [ -107.120013105006763, 25.273862605481227 ], [ -107.126014181972678, 25.281526911660627 ], [ -107.130378601584255, 25.28475398794669 ], [ -107.133924692518676, 25.285964141553965 ], [ -107.137470783453082, 25.288787833304269 ], [ -107.143744636644726, 25.298267369894582 ], [ -107.145926846450521, 25.30411644566307 ], [ -107.147290727579147, 25.309965521431561 ], [ -107.153837356996519, 25.32408398018309 ], [ -107.156292343028042, 25.33174828636249 ], [ -107.159292881510993, 25.33941259254189 ], [ -107.161475091316788, 25.346068437381895 ], [ -107.164475629799753, 25.35252258995402 ], [ -107.172931692797192, 25.362808895615849 ], [ -107.175113902602988, 25.361598742008574 ], [ -107.175659455054429, 25.355547973972207 ], [ -107.178932769763122, 25.346471821917653 ], [ -107.183024413148985, 25.341429515220678 ], [ -107.184933846729052, 25.341429515220678 ], [ -107.190934923694968, 25.344454899238862 ], [ -107.193389909726491, 25.34485828377462 ], [ -107.214666455332946, 25.345059976042499 ], [ -107.223668070781841, 25.351917513150383 ], [ -107.240034644325277, 25.367044433241308 ], [ -107.240034644325277, 25.373700278081312 ], [ -107.251491245805681, 25.385196737350412 ], [ -107.267312266897676, 25.390844120851025 ], [ -107.29458988947006, 25.397903350226787 ], [ -107.298408756630195, 25.413231962585588 ], [ -107.295135441921502, 25.420694576497112 ], [ -107.273040567637878, 25.443485802767434 ], [ -107.243307959033956, 25.448729801732284 ], [ -107.224759175684738, 25.451351801214713 ], [ -107.203209853852542, 25.458612722858355 ], [ -107.181660532020359, 25.459621184197751 ], [ -107.157383447930926, 25.462444875948055 ], [ -107.135834126098743, 25.466882105841393 ], [ -107.131469706487167, 25.46748718264503 ], [ -107.130378601584255, 25.466882105841393 ], [ -107.128469168004187, 25.468092259448667 ], [ -107.128469168004187, 25.47293287387776 ], [ -107.125195853295509, 25.475958257895947 ], [ -107.077732790019553, 25.495724100148085 ], [ -107.03981689464392, 25.48281579500383 ], [ -107.03299748900082, 25.478781949646251 ], [ -107.012812048297263, 25.460427953269267 ], [ -107.00353765662264, 25.449334878535922 ], [ -106.999718789462506, 25.442679033695917 ], [ -106.988262187982102, 25.438645188338338 ], [ -106.980078901210391, 25.440057034213488 ], [ -106.9757144815988, 25.442275649160159 ], [ -106.967531194827089, 25.444494264106829 ], [ -106.94543632054345, 25.435014727516517 ], [ -106.934252495288774, 25.425938575461963 ], [ -106.932343061708707, 25.421703037836505 ], [ -106.907520425167831, 25.417467500211046 ], [ -106.896609376138869, 25.417265807943167 ], [ -106.895245495010244, 25.417870884746804 ], [ -106.892790508978734, 25.415248885264379 ], [ -106.892517732753006, 25.411416732174679 ], [ -106.891426627850109, 25.408189655888613 ], [ -106.890062746721497, 25.407181194549221 ], [ -106.887334984464246, 25.406979502281342 ], [ -106.88133390749833, 25.402138887852246 ], [ -106.876696711661026, 25.399113503834062 ], [ -106.872059515823707, 25.401332118780729 ], [ -106.867695096212131, 25.40113042651285 ], [ -106.866331215083505, 25.402138887852246 ], [ -106.864421781503438, 25.402340580120125 ] ] ], [ [ [ -106.344237519047937, 24.998754352094327 ], [ -106.342873637919325, 24.99956112116584 ], [ -106.339327546984904, 24.999762813433719 ], [ -106.327052616827331, 24.996535737147656 ], [ -106.320505987409959, 24.99794758302281 ], [ -106.317505448926994, 24.99794758302281 ], [ -106.315050462895471, 24.99411542993311 ], [ -106.305776071220862, 24.988266354164619 ], [ -106.300320546706388, 24.987862969628864 ], [ -106.297320008223423, 24.990081584575531 ], [ -106.293773917289016, 24.991493430450682 ], [ -106.288045616548814, 24.991493430450682 ], [ -106.271951819231106, 24.985644354682194 ], [ -106.26458686113655, 24.980602047985219 ], [ -106.267041847168073, 24.978988509842189 ], [ -106.267314623393787, 24.974147895413093 ], [ -106.244128644207265, 24.940868671213064 ], [ -106.239764224595675, 24.929977288747601 ], [ -106.239491448369961, 24.917875752674863 ], [ -106.240582553272844, 24.914648676388801 ], [ -106.262404651330769, 24.901942063512426 ], [ -106.267041847168073, 24.902345448048184 ], [ -106.271133490553922, 24.904967447530609 ], [ -106.272224595456819, 24.906379293405763 ], [ -106.279862329777089, 24.906782677941521 ], [ -106.286136182968747, 24.892865911457871 ], [ -106.286408959194461, 24.887823604760897 ], [ -106.289136721451712, 24.884596528474834 ], [ -106.292137259934663, 24.884193143939076 ], [ -106.302502756512183, 24.888832066100292 ], [ -106.305776071220862, 24.8916557578506 ], [ -106.302775532737897, 24.900328525369392 ], [ -106.304684966317964, 24.919690983085772 ], [ -106.312595476863962, 24.924934982050626 ], [ -106.314232134218315, 24.933406057301543 ], [ -106.311504371961064, 24.937641594927001 ], [ -106.305776071220862, 24.93784328719488 ], [ -106.307412728575201, 24.946112670177918 ], [ -106.314232134218315, 24.948734669660343 ], [ -106.32268819721574, 24.951760053678527 ], [ -106.327325393053059, 24.954180360893076 ], [ -106.343146414145039, 24.976971587163398 ], [ -106.34669250507946, 24.992501891790077 ], [ -106.344237519047937, 24.998754352094327 ] ] ], [ [ [ -106.818322599356108, 24.896698064547572 ], [ -106.803865459392739, 24.890445604243325 ], [ -106.799773816006876, 24.891252373314842 ], [ -106.797046053749639, 24.890243911975446 ], [ -106.794045515266674, 24.886411758885746 ], [ -106.790772200557996, 24.876528837759675 ], [ -106.790772200557996, 24.867452685705125 ], [ -106.796500501298198, 24.849098689328137 ], [ -106.801137697135488, 24.850107150667533 ], [ -106.807684326552874, 24.852527457882079 ], [ -106.809320983907213, 24.8523257656142 ], [ -106.814776508421687, 24.846274997577833 ], [ -106.819413704259006, 24.828929462540241 ], [ -106.814503732195973, 24.824492232646904 ], [ -106.805774892972806, 24.829937923879637 ], [ -106.802774354489841, 24.829736231611758 ], [ -106.800864920909774, 24.828324385736604 ], [ -106.798409934878265, 24.824088848111145 ], [ -106.795682172621014, 24.815012696056591 ], [ -106.796500501298198, 24.812390696574166 ], [ -106.801137697135488, 24.810373773895378 ], [ -106.809866536358669, 24.798675622358395 ], [ -106.81886815180755, 24.772052242998374 ], [ -106.816685942001754, 24.757328707443211 ], [ -106.813685403518804, 24.747647478585019 ], [ -106.808229879004315, 24.734940865708644 ], [ -106.808775431455771, 24.733932404369252 ], [ -106.811775969938736, 24.733730712101373 ], [ -106.816140389550313, 24.735344250244403 ], [ -106.840963026091188, 24.750471170335324 ], [ -106.842054130994086, 24.752084708478357 ], [ -106.843963564574153, 24.756925322907453 ], [ -106.84150857854263, 24.761564245068669 ], [ -106.839871921188291, 24.771850550730495 ], [ -106.839871921188291, 24.779918241445653 ], [ -106.845054669477051, 24.795246853804457 ], [ -106.855147389828829, 24.806339928537799 ], [ -106.888698865592872, 24.811785619770529 ], [ -106.890881075398667, 24.810373773895378 ], [ -106.893608837655904, 24.807146697609312 ], [ -106.897154928590311, 24.800087468233549 ], [ -106.907247648942104, 24.835181922844491 ], [ -106.907247648942104, 24.838812383666308 ], [ -106.905883767813478, 24.846880074381467 ], [ -106.87696948788674, 24.857569764579054 ], [ -106.867422319986403, 24.856762995507538 ], [ -106.866331215083505, 24.8561579187039 ], [ -106.861694019246201, 24.84304792129177 ], [ -106.861694019246201, 24.840224229541462 ], [ -106.864149005277724, 24.835988691916004 ], [ -106.866876767534961, 24.833971769237216 ], [ -106.868240648663573, 24.831954846558425 ], [ -106.866331215083505, 24.822273617700237 ], [ -106.864967333954894, 24.819651618217808 ], [ -106.862512347923371, 24.818239772342658 ], [ -106.857329599634625, 24.819853310485687 ], [ -106.850237417765797, 24.831148077486908 ], [ -106.84750965550856, 24.842442844488133 ], [ -106.850510193991525, 24.848695304792379 ], [ -106.851874075120151, 24.858376533650571 ], [ -106.851328522668695, 24.859384994989966 ], [ -106.837416935156782, 24.858174841382692 ], [ -106.830051977062226, 24.865032378490575 ], [ -106.835780277802428, 24.869066223848154 ], [ -106.837416935156782, 24.878747452706342 ], [ -106.837689711382495, 24.882579605796046 ], [ -106.834416396673817, 24.889033758368171 ], [ -106.818322599356108, 24.896698064547572 ] ] ], [ [ [ -107.05100071989861, 25.172613087005988 ], [ -107.04581797160985, 25.179470624113875 ], [ -107.043090209352613, 25.180882469989026 ], [ -107.001355446816859, 25.191773852454489 ], [ -106.981170006113274, 25.202463542652076 ], [ -106.969986180858598, 25.20528723440238 ], [ -106.957984026926752, 25.209926156563597 ], [ -106.951164621283652, 25.217792155010876 ], [ -106.94025357225469, 25.215573540064206 ], [ -106.909975411199341, 25.197017851419343 ], [ -106.905338215362036, 25.197421235955101 ], [ -106.902064900653343, 25.194799236472676 ], [ -106.883243341078398, 25.177050316899326 ], [ -106.879424473918263, 25.164142011755075 ], [ -106.880242802595433, 25.161318320004767 ], [ -106.878606145241093, 25.157284474647188 ], [ -106.87696948788674, 25.155065859700521 ], [ -106.873423396952333, 25.151838783414455 ], [ -106.824323676322024, 25.130862787555046 ], [ -106.814230955970245, 25.128644172608375 ], [ -106.801410473361216, 25.13751863239505 ], [ -106.732670864478791, 25.120778174161096 ], [ -106.726397011287148, 25.118761251482308 ], [ -106.725033130158522, 25.117752790142912 ], [ -106.722850920352727, 25.11452571385685 ], [ -106.712758200000948, 25.1082732535526 ], [ -106.694754969103172, 25.101819100980475 ], [ -106.678933948011178, 25.094154794801074 ], [ -106.663931255596367, 25.085280335014399 ], [ -106.639654171506933, 25.047362188653153 ], [ -106.637744737926866, 25.043328343295578 ], [ -106.63338031831529, 25.042521574224061 ], [ -106.625469807769292, 25.04655541958164 ], [ -106.621105388157716, 25.049782495867703 ], [ -106.617559297223295, 25.049782495867703 ], [ -106.608284905548686, 25.045950342778003 ], [ -106.59028167465091, 25.027999730936777 ], [ -106.585917255039334, 25.021948962900407 ], [ -106.573369548656018, 25.014284656721006 ], [ -106.554002436629631, 25.012066041774336 ], [ -106.541181954020601, 25.01186434950646 ], [ -106.537908639311922, 25.011259272702823 ], [ -106.519359855962691, 25.001376351576752 ], [ -106.516632093705454, 24.99814927529069 ], [ -106.516086541253998, 24.996939121683415 ], [ -106.519632632188419, 24.991493430450682 ], [ -106.523178723122825, 24.990484969111289 ], [ -106.536817534409025, 24.993106968593715 ], [ -106.541181954020601, 24.994922199004627 ], [ -106.542273058923499, 24.996334044879777 ], [ -106.548001359663701, 24.99794758302281 ], [ -106.568459576593, 24.99814927529069 ], [ -106.570914562624509, 24.997342506219173 ], [ -106.572278443753135, 24.991090045914923 ], [ -106.558912408692663, 24.979996971181581 ], [ -106.548001359663701, 24.976568202627639 ], [ -106.544728044955008, 24.974551279948852 ], [ -106.545000821180736, 24.973341126341577 ], [ -106.548546912115143, 24.969508973251877 ], [ -106.573915101107474, 24.953171899553681 ], [ -106.584553373910708, 24.944902516570643 ], [ -106.585371702587878, 24.941473748016701 ], [ -106.584007821459267, 24.940666978945185 ], [ -106.578006744493337, 24.941473748016701 ], [ -106.560549066047002, 24.944499132034885 ], [ -106.537363086860466, 24.965676820162177 ], [ -106.533271443474604, 24.966281896965814 ], [ -106.516632093705454, 24.953978668625197 ], [ -106.500265520162017, 24.956600668107622 ], [ -106.488536142455885, 24.945104208838522 ], [ -106.474079002492516, 24.931994211426389 ], [ -106.469987359106668, 24.930582365551238 ], [ -106.465895715720805, 24.932397595962147 ], [ -106.463986282140738, 24.926951904729414 ], [ -106.463986282140738, 24.922918059371838 ], [ -106.466714044397975, 24.910211446495463 ], [ -106.471351240235279, 24.907387754745159 ], [ -106.484990051521478, 24.904362370726972 ], [ -106.486899485101546, 24.899521756297879 ], [ -106.479807303232718, 24.895286218672418 ], [ -106.477079540975481, 24.894479449600905 ], [ -106.454439114240401, 24.896899756815451 ], [ -106.449256365951641, 24.900328525369392 ], [ -106.446801379920132, 24.904362370726972 ], [ -106.447346932371573, 24.912228369174251 ], [ -106.449529142177369, 24.917068983603347 ], [ -106.452256904434606, 24.918884214014255 ], [ -106.453075233111775, 24.921506213496684 ], [ -106.452802456886047, 24.928767135140326 ], [ -106.450347470854538, 24.937641594927001 ], [ -106.448710813500199, 24.939456825337913 ], [ -106.440527526728488, 24.938044979462759 ], [ -106.437254212019795, 24.936431441319726 ], [ -106.422797072056426, 24.919892675353651 ], [ -106.415432113961884, 24.907992831548793 ], [ -106.4146137852847, 24.900530217637272 ], [ -106.4214331909278, 24.889840527439688 ], [ -106.4214331909278, 24.885806682082109 ], [ -106.418159876219121, 24.878949144974221 ], [ -106.417068771316224, 24.878344068170588 ], [ -106.411067694350294, 24.879554221777859 ], [ -106.408612708318785, 24.863418840347542 ], [ -106.410794918124566, 24.837803922326916 ], [ -106.419796533573461, 24.822071925432358 ], [ -106.422524295830698, 24.819449925949932 ], [ -106.425524834313663, 24.817836387806899 ], [ -106.42743426789373, 24.812995773377803 ], [ -106.427161491668016, 24.81158392750265 ], [ -106.422524295830698, 24.80613823626992 ], [ -106.409976589447396, 24.810172081627499 ], [ -106.408339932093057, 24.811785619770529 ], [ -106.400702197772787, 24.831753154290546 ], [ -106.397428883064094, 24.843652998095404 ], [ -106.395246673258313, 24.845669920774196 ], [ -106.388154491389486, 24.847888535720863 ], [ -106.382698966875012, 24.846880074381467 ], [ -106.342873637919325, 24.778103011034744 ], [ -106.340418651887802, 24.777296241963228 ], [ -106.334963127373328, 24.773464088873528 ], [ -106.325961511924433, 24.762169321872307 ], [ -106.322960973441468, 24.756925322907453 ], [ -106.319414882507061, 24.728486713136519 ], [ -106.319142106281333, 24.717393638403177 ], [ -106.319687658732789, 24.712553023974081 ], [ -106.343964742822209, 24.694804104400731 ], [ -106.349693043562411, 24.692988873989822 ], [ -106.355694120528341, 24.695812565740127 ], [ -106.362513526171441, 24.697224411615281 ], [ -106.380243980843488, 24.697627796151039 ], [ -106.381607861972114, 24.696619334811643 ], [ -106.384335624229351, 24.692182104918306 ], [ -106.384062848003623, 24.691375335846789 ], [ -106.381607861972114, 24.68734149048921 ], [ -106.381880638197842, 24.686938105953452 ], [ -106.388700043840942, 24.685122875542543 ], [ -106.421160414702086, 24.719007176546206 ], [ -106.421705967153528, 24.720217330153481 ], [ -106.42061486225063, 24.723646098707423 ], [ -106.418705428670563, 24.72445286777894 ], [ -106.416250442639054, 24.730301943547431 ], [ -106.417887099993393, 24.735747634780161 ], [ -106.45089302330598, 24.752286400746236 ], [ -106.470532911558109, 24.734537481172886 ], [ -106.495082771873257, 24.738773018798348 ], [ -106.50353883487071, 24.741193326012894 ], [ -106.514449883899658, 24.745630555906232 ], [ -106.516086541253998, 24.746840709513506 ], [ -106.518814303511249, 24.750672862603203 ], [ -106.52017818463986, 24.755715169300178 ], [ -106.517450422382623, 24.756723630639573 ], [ -106.513358778996761, 24.760757475997153 ], [ -106.513631555222489, 24.762774398675944 ], [ -106.528088695185858, 24.80613823626992 ], [ -106.533271443474604, 24.811382235234774 ], [ -106.533544219700332, 24.81158392750265 ], [ -106.536544758183297, 24.810373773895378 ], [ -106.542000282697785, 24.802709467715978 ], [ -106.53981807289199, 24.785162240410507 ], [ -106.539272520440534, 24.781531779588686 ], [ -106.537908639311922, 24.779514856909895 ], [ -106.537908639311922, 24.778103011034744 ], [ -106.538726967989092, 24.777497934231107 ], [ -106.53981807289199, 24.778103011034744 ], [ -106.545000821180736, 24.784758855874749 ], [ -106.551001898146666, 24.802709467715978 ], [ -106.552911331726733, 24.815617772860229 ], [ -106.552911331726733, 24.820055002753566 ], [ -106.552365779275277, 24.82308038677175 ], [ -106.551547450598122, 24.823483771307508 ], [ -106.552365779275277, 24.828324385736604 ], [ -106.564095156981409, 24.836392076451762 ], [ -106.568732352818728, 24.836795460987521 ], [ -106.570096233947339, 24.829332847076 ], [ -106.566277366787205, 24.826912539861453 ], [ -106.565459038110035, 24.825702386254179 ], [ -106.561912947175614, 24.816424541931745 ], [ -106.566550143012932, 24.809567004823862 ], [ -106.572551219978862, 24.803314544519615 ], [ -106.581280059202015, 24.797062084215366 ], [ -106.567914024141544, 24.785767317214145 ], [ -106.549638017018054, 24.768220089908674 ], [ -106.546910254760803, 24.760555783729274 ], [ -106.547183030986531, 24.75894224558624 ], [ -106.553729660403903, 24.740588249209257 ], [ -106.572278443753135, 24.738773018798348 ], [ -106.587008359942217, 24.73816794199471 ], [ -106.603647709711382, 24.739579787869861 ], [ -106.608284905548686, 24.742403479620165 ], [ -106.61292210138599, 24.747849170852898 ], [ -106.613467653837446, 24.749462708995932 ], [ -106.609921562903025, 24.755110092496544 ], [ -106.609921562903025, 24.770035320319586 ], [ -106.610194339128753, 24.77669116515959 ], [ -106.613194877611718, 24.780321625981411 ], [ -106.626015360220748, 24.791818085250512 ], [ -106.644564143569966, 24.802911159983857 ], [ -106.645928024698591, 24.802911159983857 ], [ -106.656566297501826, 24.799684083697791 ], [ -106.66038516466196, 24.792423162054149 ], [ -106.67402397594816, 24.799280699162033 ], [ -106.678115619334008, 24.805129774930524 ], [ -106.695573297780342, 24.803919621323249 ], [ -106.696391626457512, 24.797263776483245 ], [ -106.67102343746518, 24.776287780623832 ], [ -106.644291367344238, 24.761160860532911 ], [ -106.628470346252257, 24.744218710031078 ], [ -106.62574258399502, 24.739378095601982 ], [ -106.628470346252257, 24.732923943029856 ], [ -106.628470346252257, 24.728688405404398 ], [ -106.624378702866395, 24.724251175511061 ], [ -106.608557681774414, 24.725057944582577 ], [ -106.575278982236085, 24.692383797186185 ], [ -106.57446065355893, 24.688148259560727 ], [ -106.564640709432865, 24.684316106471027 ], [ -106.544182492503566, 24.680685645649206 ], [ -106.538999744214806, 24.684316106471027 ], [ -106.539272520440534, 24.685727952346181 ], [ -106.544728044955008, 24.694804104400731 ], [ -106.547183030986531, 24.697224411615281 ], [ -106.549910793243768, 24.698434565222556 ], [ -106.553729660403903, 24.703678564187406 ], [ -106.552093003049563, 24.709729332223777 ], [ -106.537090310634738, 24.72041902242136 ], [ -106.510358240513796, 24.716385177063781 ], [ -106.500538296387745, 24.710737793563169 ], [ -106.483080617941411, 24.681089030184964 ], [ -106.473806226266802, 24.670399339987377 ], [ -106.472442345138177, 24.665760417826164 ], [ -106.474079002492516, 24.657894419378884 ], [ -106.483080617941411, 24.658499496182522 ], [ -106.488536142455885, 24.660919803397068 ], [ -106.498628862807678, 24.66818072504071 ], [ -106.501629401290643, 24.673223031737685 ], [ -106.504902715999322, 24.674836569880718 ], [ -106.509812688062354, 24.676046723487989 ], [ -106.511722121642421, 24.676046723487989 ], [ -106.516359317479726, 24.670802724523135 ], [ -106.516632093705454, 24.668382417308589 ], [ -106.514449883899658, 24.664953648754647 ], [ -106.510085464288082, 24.663541802879493 ], [ -106.495901100550441, 24.651843651342514 ], [ -106.466714044397975, 24.624816887446734 ], [ -106.465077387043635, 24.622598272500063 ], [ -106.464804610817907, 24.621589811160671 ], [ -106.468350701752314, 24.61795935033885 ], [ -106.488808918681613, 24.61029504415945 ], [ -106.515813765028284, 24.609286582820054 ], [ -106.516904869931182, 24.609689967355813 ], [ -106.518814303511249, 24.616144119927938 ], [ -106.5218148419942, 24.620581349821276 ], [ -106.530270904991653, 24.629052425072192 ], [ -106.536817534409025, 24.633086270429772 ], [ -106.543636940052124, 24.635708269912197 ], [ -106.546364702309361, 24.635708269912197 ], [ -106.551547450598122, 24.633287962697651 ], [ -106.5548207653068, 24.633893039501288 ], [ -106.588917793522285, 24.650431805467363 ], [ -106.618650402126192, 24.667777340504951 ], [ -106.629015898703699, 24.673021339469805 ], [ -106.641563605087001, 24.676248415755868 ], [ -106.646746353375761, 24.682702568327997 ], [ -106.65001966808444, 24.692988873989822 ], [ -106.659566835984776, 24.703678564187406 ], [ -106.660657940887688, 24.704081948723164 ], [ -106.666931794079332, 24.70125825697286 ], [ -106.671296213690908, 24.702468410580131 ], [ -106.689572220814412, 24.719612253349844 ], [ -106.687662787234345, 24.724654560046819 ], [ -106.686298906105719, 24.725663021386215 ], [ -106.668841227659399, 24.733730712101373 ], [ -106.666659017853604, 24.735142557976523 ], [ -106.665567912950706, 24.736554403851677 ], [ -106.677570066882566, 24.744017017763198 ], [ -106.686844458557175, 24.743411940959561 ], [ -106.687935563460073, 24.741798402816531 ], [ -106.689572220814412, 24.740789941477136 ], [ -106.691208878168766, 24.740184864673498 ], [ -106.693663864200275, 24.740386556941377 ], [ -106.708939332840814, 24.756118553835936 ], [ -106.699664941166205, 24.766203167229886 ], [ -106.700210493617647, 24.770035320319586 ], [ -106.715758738483913, 24.776086088355953 ], [ -106.723396472804183, 24.77306070433777 ], [ -106.726669787512861, 24.764186244551095 ], [ -106.734034745607417, 24.755311784764423 ], [ -106.738126388993265, 24.752488093014115 ], [ -106.744400242184923, 24.757328707443211 ], [ -106.74712800444216, 24.758135476514727 ], [ -106.751219647828023, 24.757328707443211 ], [ -106.75476573876243, 24.748655939924415 ], [ -106.756675172342497, 24.746235632709869 ], [ -106.758311829696837, 24.744823786834715 ], [ -106.762676249308427, 24.743008556423803 ], [ -106.767040668920004, 24.744218710031078 ], [ -106.777678941723238, 24.75369824662139 ], [ -106.779861151529033, 24.756723630639573 ], [ -106.782316137560542, 24.761564245068669 ], [ -106.787771662075016, 24.778708087838382 ], [ -106.788862766977928, 24.784758855874749 ], [ -106.787498885849303, 24.790809623911116 ], [ -106.780406703980475, 24.800289160501428 ], [ -106.771405088531594, 24.80755008214507 ], [ -106.766495116468562, 24.809163620288103 ], [ -106.759130158374006, 24.805936544002041 ], [ -106.755856843665327, 24.801701006376582 ], [ -106.755311291213872, 24.800490852769308 ], [ -106.745491347087821, 24.792423162054149 ], [ -106.738944717670449, 24.793431623393545 ], [ -106.734307521833131, 24.79847393009052 ], [ -106.734853074284587, 24.804323005859008 ], [ -106.735671402961756, 24.806339928537799 ], [ -106.742763584830584, 24.807953466680829 ], [ -106.751492424053737, 24.810777158431137 ], [ -106.753674633859532, 24.81380254244932 ], [ -106.75476573876243, 24.817029618735383 ], [ -106.75476573876243, 24.822273617700237 ], [ -106.75394741008526, 24.826710847593574 ], [ -106.749855766699397, 24.836190384183883 ], [ -106.746309675764991, 24.839417460469946 ], [ -106.739217493896163, 24.840425921809342 ], [ -106.732670864478791, 24.861805302204512 ], [ -106.73130698335018, 24.868662839312396 ], [ -106.746036899539263, 24.877133914563313 ], [ -106.759402934599734, 24.890445604243325 ], [ -106.75476573876243, 24.895286218672418 ], [ -106.756947948568225, 24.899723448565759 ], [ -106.773587298337389, 24.916867291335468 ], [ -106.783134466237726, 24.923523136175476 ], [ -106.79922826355542, 24.906177601137884 ], [ -106.804683788069909, 24.909202985156067 ], [ -106.810684865035839, 24.910413138763342 ], [ -106.839053592511121, 24.911623292370614 ], [ -106.856238494731727, 24.915455445460317 ], [ -106.856511270957455, 24.915858829996072 ], [ -106.854601837377388, 24.928565442872447 ], [ -106.851874075120151, 24.928363750604568 ], [ -106.851055746442967, 24.929775596479722 ], [ -106.854874613603101, 24.941272055748822 ], [ -106.872059515823707, 24.955995591303985 ], [ -106.878878921466821, 24.957004052643381 ], [ -106.894699942558802, 24.957004052643381 ], [ -106.897700481041767, 24.951356669142768 ], [ -106.894427166333074, 24.946919439249434 ], [ -106.8889716418186, 24.944095747499127 ], [ -106.888426089367158, 24.944499132034885 ], [ -106.886243879561363, 24.942078824820339 ], [ -106.88297056485267, 24.937036518123364 ], [ -106.882425012401228, 24.93401113410518 ], [ -106.887880536915702, 24.925338366586384 ], [ -106.894972718784516, 24.923523136175476 ], [ -106.903156005556241, 24.922918059371838 ], [ -106.915976488165256, 24.923724828443355 ], [ -106.921977565131186, 24.925338366586384 ], [ -106.944890768091994, 24.939860209873668 ], [ -106.945709096769178, 24.940666978945185 ], [ -106.943254110737655, 24.962449743876114 ], [ -106.940526348480418, 24.968097127376723 ], [ -106.926341984742777, 24.977173279431277 ], [ -106.92279589380837, 24.977374971699156 ], [ -106.890608299172939, 24.973139434073698 ], [ -106.884061669755567, 24.974954664484606 ], [ -106.87015008224364, 24.989678200039773 ], [ -106.86933175356647, 24.991090045914923 ], [ -106.867967872437859, 24.998350967558569 ], [ -106.880788355046889, 25.015898194864036 ], [ -106.885698327109907, 25.018520194346465 ], [ -106.89415439010736, 25.016503271667673 ], [ -106.896336599913141, 25.014486348988886 ], [ -106.903701558007697, 25.013074503113732 ], [ -106.929888075677184, 25.032436960830111 ], [ -106.950346292606483, 25.057446802047103 ], [ -106.95225572618655, 25.036067421651932 ], [ -106.962348446538329, 25.002384812916148 ], [ -106.974623376695902, 24.991695122718561 ], [ -107.000537118139675, 24.985442662414314 ], [ -107.011720943394351, 24.991695122718561 ], [ -107.016630915457398, 24.996535737147656 ], [ -107.014175929425875, 25.003393274255544 ], [ -107.010902614717196, 25.005410196934331 ], [ -107.007902076234217, 25.010855888167065 ], [ -107.007083747557061, 25.024772654650711 ], [ -107.007629300008503, 25.055631571636191 ], [ -107.006538195105605, 25.058656955654378 ], [ -107.002446551719743, 25.064909415958624 ], [ -106.990171621562169, 25.101214024176837 ], [ -106.992626607593678, 25.109080022624116 ], [ -106.996718250979541, 25.111096945302908 ], [ -107.012812048297263, 25.114727406124729 ], [ -107.022904768649042, 25.113113867981696 ], [ -107.05263737725295, 25.154662475164763 ], [ -107.054546810833017, 25.162125089076284 ], [ -107.052910153478678, 25.1629318581478 ], [ -107.05100071989861, 25.162730165879921 ], [ -107.049364062544257, 25.169789395255684 ], [ -107.050182391221426, 25.170999548862959 ], [ -107.05100071989861, 25.172613087005988 ] ] ], [ [ [ -107.006810971331333, 24.971727588198547 ], [ -107.002992104171199, 24.967492050573085 ], [ -107.001628223042573, 24.965273435626418 ], [ -106.999446013236792, 24.957609129447018 ], [ -106.998082132108166, 24.947726208320951 ], [ -106.998900460785336, 24.945910977910039 ], [ -107.005174313976994, 24.942482209356097 ], [ -107.007629300008503, 24.942482209356097 ], [ -107.014175929425875, 24.94550759337428 ], [ -107.018267572811737, 24.948129592856706 ], [ -107.027814740712074, 24.956802360375502 ], [ -107.030815279195025, 24.963659897483389 ], [ -107.031088055420753, 24.965878512430056 ], [ -107.030542502969311, 24.967895435108844 ], [ -107.024268649777667, 24.979190202110068 ], [ -107.020722558843246, 24.981408817056735 ], [ -107.017722020360281, 24.982215586128252 ], [ -107.014448705651603, 24.981610509324614 ], [ -107.008447628685673, 24.974551279948852 ], [ -107.006810971331333, 24.971727588198547 ] ] ], [ [ [ -107.82022967644005, 25.579628083585732 ], [ -107.820502452665778, 25.575594238228152 ], [ -107.818320242859983, 25.574989161424515 ], [ -107.814774151925576, 25.575392545960273 ], [ -107.796770921027786, 25.570753623799057 ], [ -107.789951515384701, 25.565711317102082 ], [ -107.780949899935806, 25.566719778441477 ], [ -107.753945053589135, 25.563492702155415 ], [ -107.751490067557626, 25.559458856797836 ], [ -107.745488990591696, 25.554013165565102 ], [ -107.731850179305496, 25.54695393618934 ], [ -107.72148468272799, 25.546550551653581 ], [ -107.699389808444352, 25.552399627422069 ], [ -107.690388192995471, 25.561879164012382 ], [ -107.682204906223745, 25.574182392352999 ], [ -107.673748843226306, 25.576401007299665 ], [ -107.6633833466488, 25.577409468639061 ], [ -107.661201136843005, 25.579829775853611 ], [ -107.657109493457142, 25.590519466051195 ], [ -107.648926206685431, 25.594755003676653 ], [ -107.645652891976738, 25.594149926873015 ], [ -107.640197367462264, 25.588300851104528 ], [ -107.631195752013369, 25.574182392352999 ], [ -107.62710410862752, 25.564299471226931 ], [ -107.603372576989528, 25.546147167117823 ], [ -107.595734842669259, 25.537474399599027 ], [ -107.567911667645433, 25.501169791380814 ], [ -107.567093338968249, 25.49290040839778 ], [ -107.571457758579839, 25.481403949128676 ], [ -107.576913283094314, 25.476361642431705 ], [ -107.6030998007638, 25.461033030072901 ], [ -107.618648045630067, 25.458814415126234 ], [ -107.620284702984421, 25.458612722858355 ], [ -107.622466912790202, 25.459621184197751 ], [ -107.636378500302129, 25.466680413573513 ], [ -107.671021080969069, 25.474546412020793 ], [ -107.695843717509945, 25.478176872842614 ], [ -107.71548360576206, 25.480193795521402 ], [ -107.740306242302935, 25.484025948611105 ], [ -107.753126724911965, 25.487454717165047 ], [ -107.770584403358299, 25.491085177986868 ], [ -107.773312165615536, 25.484631025414743 ], [ -107.783677662193043, 25.473941335217155 ], [ -107.796498144802058, 25.480395487789281 ], [ -107.801680893090818, 25.475554873360188 ], [ -107.797043697253514, 25.470512566663214 ], [ -107.793497606319107, 25.467890567180788 ], [ -107.781222676161519, 25.463453337287451 ], [ -107.760491683006506, 25.45982287646563 ], [ -107.756400039620644, 25.463251645019572 ], [ -107.752581172460509, 25.469302413055939 ], [ -107.746580095494593, 25.468495643984426 ], [ -107.741124570980105, 25.465873644501997 ], [ -107.741397347205833, 25.462041491412297 ], [ -107.7433067807859, 25.46123472234078 ], [ -107.748762305300374, 25.455789031108051 ], [ -107.75094451510617, 25.452965339357746 ], [ -107.752581172460509, 25.446712879053496 ], [ -107.74930785775183, 25.439855341945613 ], [ -107.740306242302935, 25.429367344015905 ], [ -107.740306242302935, 25.428358882676513 ], [ -107.739487913625766, 25.4265436522656 ], [ -107.735396270239903, 25.425535190926205 ], [ -107.726121878565294, 25.415652269800137 ], [ -107.723939668759499, 25.410811655371042 ], [ -107.72148468272799, 25.404357502798916 ], [ -107.721757458953718, 25.402743964655883 ], [ -107.731577403079768, 25.393062735797692 ], [ -107.731304626854055, 25.391045813118904 ], [ -107.729667969499701, 25.388423813636479 ], [ -107.728576864596818, 25.38580181415405 ], [ -107.729395193273987, 25.382574737867987 ], [ -107.728576864596818, 25.378339200242529 ], [ -107.732395731756952, 25.374507047152829 ], [ -107.736487375142801, 25.373095201277675 ], [ -107.736760151368529, 25.371885047670403 ], [ -107.736214598917087, 25.369868124991612 ], [ -107.735396270239903, 25.3680528945807 ], [ -107.73430516533702, 25.367044433241308 ], [ -107.733759612885564, 25.365430895098275 ], [ -107.737578480045698, 25.360791972937058 ], [ -107.736214598917087, 25.357161512115237 ], [ -107.738942361174324, 25.352119205418262 ], [ -107.742215675883003, 25.353531051293416 ], [ -107.754763382266304, 25.35252258995402 ], [ -107.773312165615536, 25.347480283257049 ], [ -107.787769305578905, 25.349295513667958 ], [ -107.79158817273904, 25.35252258995402 ], [ -107.795407039899175, 25.362002126544333 ], [ -107.809591403636816, 25.364422433758882 ], [ -107.817774690408527, 25.367447817777066 ], [ -107.835232368854861, 25.376120585295858 ], [ -107.841778998272233, 25.380557815189199 ], [ -107.841778998272233, 25.385600121886171 ], [ -107.840142340917893, 25.393062735797692 ], [ -107.863055543878701, 25.405971040941946 ], [ -107.87833101251924, 25.4112150399068 ], [ -107.88515041816234, 25.411820116710437 ], [ -107.898243676997083, 25.406374425477704 ], [ -107.905335858865911, 25.409198117228009 ], [ -107.937523453501328, 25.433804573909242 ], [ -107.953344474593322, 25.447116263589255 ], [ -107.953617250819036, 25.453167031625622 ], [ -107.956345013076287, 25.456192415643805 ], [ -107.97871266358564, 25.470310874395334 ], [ -107.980622097165707, 25.470915951198972 ], [ -107.981167649617163, 25.471117643466851 ], [ -107.985532069228739, 25.469302413055939 ], [ -108.004626405029413, 25.470915951198972 ], [ -108.01171858689824, 25.476563334699584 ], [ -108.019083544992782, 25.485639486754135 ], [ -108.033540684956151, 25.487454717165047 ], [ -108.038450657019183, 25.484429333146863 ], [ -108.04281507663076, 25.485437794486256 ], [ -108.044724510210827, 25.488866563040197 ], [ -108.064364398462956, 25.533843938777206 ], [ -108.069274370525989, 25.545743782582065 ], [ -108.071183804106056, 25.551794550618435 ], [ -108.0706382516546, 25.560265625869349 ], [ -108.064364398462956, 25.568736701120265 ], [ -108.058363321497026, 25.56994685472754 ], [ -108.055908335465517, 25.568736701120265 ], [ -108.052089468305383, 25.587897466568769 ], [ -108.057544992819857, 25.623798690251224 ], [ -108.069001594300261, 25.640539148485175 ], [ -108.070092699203158, 25.648001762396699 ], [ -108.055908335465517, 25.65546437630822 ], [ -108.050180034725315, 25.656674529915492 ], [ -108.048270601145248, 25.653850838165187 ], [ -108.046906720016622, 25.649010223736092 ], [ -108.040632866824978, 25.639328994877904 ], [ -108.03599567098766, 25.634084995913049 ], [ -108.015810230284089, 25.616336076339703 ], [ -108.00735416728665, 25.623798690251224 ], [ -108.007899719738106, 25.625008843858495 ], [ -108.010354705769615, 25.627429151073045 ], [ -108.011445810672512, 25.627025766537287 ], [ -108.012809691801124, 25.627630843340924 ], [ -108.01335524425258, 25.630656227359108 ], [ -108.01253691557541, 25.650018685075487 ], [ -108.008718048415275, 25.654657607236704 ], [ -107.984986516777298, 25.663128682487621 ], [ -107.981440425842877, 25.657884683522767 ], [ -107.968347167008133, 25.662321913416104 ], [ -107.968074390782405, 25.6671625278452 ], [ -107.963164418719373, 25.685919908757942 ], [ -107.951162264787527, 25.711131442242813 ], [ -107.947343397627392, 25.715366979868271 ], [ -107.94325175424153, 25.716778825743425 ], [ -107.934795691244091, 25.710526365439176 ], [ -107.923066313537959, 25.703063751527655 ], [ -107.916246907894873, 25.702055290188259 ], [ -107.896607019642744, 25.706895904617355 ], [ -107.885423194388068, 25.707500981420992 ], [ -107.865237753684497, 25.703265443795534 ], [ -107.858963900492839, 25.700643444313108 ], [ -107.856236138235602, 25.699029906170075 ], [ -107.852144494849739, 25.676642064435512 ], [ -107.851871718624025, 25.667364220113079 ], [ -107.857872795589941, 25.654254222700946 ], [ -107.862782767652973, 25.629244381483957 ], [ -107.851326166172569, 25.613512384589395 ], [ -107.845597865432367, 25.611293769642728 ], [ -107.840415117143621, 25.616336076339703 ], [ -107.839324012240724, 25.620773306233041 ], [ -107.839051236014996, 25.629647766019712 ], [ -107.841778998272233, 25.632673150037895 ], [ -107.844779536755198, 25.64013576394942 ], [ -107.844779536755198, 25.641345917556691 ], [ -107.844233984303756, 25.650422069611245 ], [ -107.839051236014996, 25.665548989702167 ], [ -107.838778459789268, 25.689953754115521 ], [ -107.833868487726249, 25.697214675759163 ], [ -107.832504606597624, 25.698626521634317 ], [ -107.828958515663203, 25.699433290705834 ], [ -107.79240650141621, 25.693382522669467 ], [ -107.789133186707517, 25.694996060812496 ], [ -107.753945053589135, 25.707500981420992 ], [ -107.747125647946035, 25.707097596885234 ], [ -107.745488990591696, 25.704878981938563 ], [ -107.739760689851494, 25.700643444313108 ], [ -107.716847486890686, 25.706089135545838 ], [ -107.714392500859162, 25.706290827813717 ], [ -107.708391423893232, 25.703668828331292 ], [ -107.701572018250147, 25.699231598437954 ], [ -107.687933206963947, 25.684508062882792 ], [ -107.680568248869406, 25.665952374237925 ], [ -107.678931591515067, 25.659901606201558 ], [ -107.688478759415403, 25.636505303127599 ], [ -107.727212983468192, 25.638723918074266 ], [ -107.732941284208394, 25.632471457770016 ], [ -107.72748575969392, 25.62621899746577 ], [ -107.721211906502262, 25.624202074786982 ], [ -107.716847486890686, 25.623193613447587 ], [ -107.698844255992896, 25.624000382519103 ], [ -107.675385500580646, 25.618151306750612 ], [ -107.663110570423072, 25.614319153660912 ], [ -107.659564479488665, 25.610487000571212 ], [ -107.670748304743341, 25.592536388729982 ], [ -107.70866420011896, 25.571560392870573 ], [ -107.714938053310618, 25.56994685472754 ], [ -107.740579018528663, 25.571762085138452 ], [ -107.750398962654728, 25.574787469156636 ], [ -107.766765536198164, 25.581846698532399 ], [ -107.774948822969876, 25.582653467603915 ], [ -107.801408116865105, 25.582653467603915 ], [ -107.81341027079695, 25.58547715935422 ], [ -107.819956900214322, 25.582653467603915 ], [ -107.82022967644005, 25.579628083585732 ] ] ], [ [ [ -107.252036798257137, 24.98403081653916 ], [ -107.251764022031409, 24.98261897066401 ], [ -107.253127903160021, 24.982013893860373 ], [ -107.262129518608916, 24.982013893860373 ], [ -107.297863204178753, 24.994720506736748 ], [ -107.311502015464939, 25.010250811363427 ], [ -107.321049183365275, 25.020537117025253 ], [ -107.349417910840572, 25.03263865309799 ], [ -107.362238393449587, 25.041109728348907 ], [ -107.386788253764749, 25.06349757008347 ], [ -107.403154827308185, 25.076809259763483 ], [ -107.415975309917201, 25.084473565942883 ], [ -107.417339191045826, 25.084876950478641 ], [ -107.420612505754505, 25.089515872639858 ], [ -107.425522477817537, 25.101617408712595 ], [ -107.425522477817537, 25.108071561284724 ], [ -107.42361304423747, 25.11452571385685 ], [ -107.420339729528791, 25.119971405089579 ], [ -107.41761196727154, 25.118761251482308 ], [ -107.414611428788589, 25.119568020553821 ], [ -107.411883666531338, 25.124610327250796 ], [ -107.415156981240031, 25.129249249412013 ], [ -107.419794177077335, 25.133081402501713 ], [ -107.424704149140368, 25.131871248894441 ], [ -107.431523554783467, 25.128039095804738 ], [ -107.43125077855774, 25.123601865911404 ], [ -107.435342421943602, 25.115534175196245 ], [ -107.439706841555179, 25.109483407159875 ], [ -107.441889051360974, 25.107466484481087 ], [ -107.445435142295381, 25.105651254070175 ], [ -107.447344575875448, 25.107063099945329 ], [ -107.462892820741715, 25.122996789107766 ], [ -107.463165596967443, 25.124206942715041 ], [ -107.475167750899288, 25.131669556626562 ], [ -107.487988233508318, 25.130257710751408 ], [ -107.502445373471687, 25.130257710751408 ], [ -107.514447527403533, 25.136913555591413 ], [ -107.520994156820905, 25.142359246824146 ], [ -107.522085261723802, 25.144577861770813 ], [ -107.518811947015124, 25.150023553003546 ], [ -107.515811408532159, 25.152443860218092 ], [ -107.517720842112226, 25.156477705575671 ], [ -107.526449681335393, 25.157284474647188 ], [ -107.534632968107104, 25.149821860735667 ], [ -107.546907898264678, 25.148006630324758 ], [ -107.556455066165015, 25.158898012790221 ], [ -107.55863727597081, 25.165755549898105 ], [ -107.563547248033842, 25.197017851419343 ], [ -107.560273933325149, 25.202463542652076 ], [ -107.559728380873707, 25.209724464295718 ], [ -107.569275548774044, 25.216380309135722 ], [ -107.578549940448653, 25.220212462225426 ], [ -107.585369346091753, 25.231305536958768 ], [ -107.584278241188855, 25.242196919424231 ], [ -107.580186597802992, 25.244012149835143 ], [ -107.577731611771483, 25.246634149317568 ], [ -107.578277164222925, 25.249659533335752 ], [ -107.582368807608788, 25.264786453426673 ], [ -107.588369884574718, 25.264584761158794 ], [ -107.590006541929057, 25.259340762193943 ], [ -107.596280395120715, 25.258130608586669 ], [ -107.598735381152224, 25.260752608069094 ], [ -107.597917052475054, 25.263777992087277 ], [ -107.598735381152224, 25.267408452909102 ], [ -107.605009234343882, 25.272450759606073 ], [ -107.607464220375391, 25.274064297749106 ], [ -107.608828101504017, 25.274265990016985 ], [ -107.613738073567049, 25.276686297231532 ], [ -107.616465835824286, 25.280720142589111 ], [ -107.617829716952897, 25.282737065267902 ], [ -107.618920821855795, 25.28475398794669 ], [ -107.62273968901593, 25.292216601858215 ], [ -107.626013003724623, 25.296048754947911 ], [ -107.632832409367722, 25.302301215252161 ], [ -107.630922975787655, 25.31178075184247 ], [ -107.627649661078962, 25.320050134825507 ], [ -107.630650199561927, 25.322873826575815 ], [ -107.633923514270606, 25.332151670898249 ], [ -107.632559633141994, 25.33558043945219 ], [ -107.634196290496334, 25.340017669345528 ], [ -107.636924052753571, 25.341227822952799 ], [ -107.646471220653908, 25.338000746666737 ], [ -107.648107878008261, 25.336992285327341 ], [ -107.65056286403977, 25.333765209041278 ], [ -107.655200059877075, 25.331949978630369 ], [ -107.661473913068733, 25.332756747701882 ], [ -107.6633833466488, 25.332353363166128 ], [ -107.668566094937546, 25.328521210076424 ], [ -107.669111647389002, 25.324890749254603 ], [ -107.675385500580646, 25.314806135860657 ], [ -107.679477143966508, 25.317226443075203 ], [ -107.679749920192222, 25.318234904414599 ], [ -107.683568787352357, 25.32186536523642 ], [ -107.697480374864284, 25.330739825023095 ], [ -107.698844255992896, 25.332353363166128 ], [ -107.698844255992896, 25.334168593577036 ], [ -107.700480913347249, 25.336790593059462 ], [ -107.709482528796144, 25.338000746666737 ], [ -107.711391962376211, 25.338807515738253 ], [ -107.712755843504823, 25.340824438417041 ], [ -107.724212444985227, 25.343648130167349 ], [ -107.729395193273987, 25.348085360060686 ], [ -107.733214060434122, 25.349698898203716 ], [ -107.73430516533702, 25.352119205418262 ], [ -107.733486836659836, 25.354539512632812 ], [ -107.728576864596818, 25.36018689613342 ], [ -107.723666892533785, 25.361598742008574 ], [ -107.723121340082329, 25.365632587366154 ], [ -107.723394116308057, 25.367447817777066 ], [ -107.724212444985227, 25.369464740455854 ], [ -107.726940207242464, 25.371279970866766 ], [ -107.727758535919634, 25.373095201277675 ], [ -107.726121878565294, 25.37410366261707 ], [ -107.723394116308057, 25.380759507457078 ], [ -107.72066635405082, 25.385600121886171 ], [ -107.717665815567855, 25.387415352297083 ], [ -107.715756381987788, 25.392861043529813 ], [ -107.717938591793569, 25.396693196619516 ], [ -107.719029696696481, 25.397096581155271 ], [ -107.719575249147923, 25.396491504351637 ], [ -107.719848025373651, 25.396894888887392 ], [ -107.720393577825092, 25.397499965691029 ], [ -107.720939130276548, 25.398508427030425 ], [ -107.720393577825092, 25.3997185806377 ], [ -107.720120801599364, 25.400727041977092 ], [ -107.716574710664958, 25.402340580120125 ], [ -107.716029158213502, 25.404559195066795 ], [ -107.722030235179432, 25.417265807943167 ], [ -107.731577403079768, 25.426745344533479 ], [ -107.72666743101675, 25.429367344015905 ], [ -107.723394116308057, 25.44207395689228 ], [ -107.717938591793569, 25.45740256925108 ], [ -107.713846948407721, 25.462848260483813 ], [ -107.697480374864284, 25.465470259966239 ], [ -107.695025388832761, 25.464865183162601 ], [ -107.68602377338388, 25.460831337805025 ], [ -107.675112724354918, 25.454780569768655 ], [ -107.674567171903476, 25.453772108429259 ], [ -107.674839948129204, 25.446914571321376 ], [ -107.670202752291885, 25.443485802767434 ], [ -107.662292241745902, 25.445704417714101 ], [ -107.658473374585768, 25.448931494000163 ], [ -107.655745612328531, 25.45357041616138 ], [ -107.65138119271694, 25.454982262036534 ], [ -107.63474184294779, 25.448931494000163 ], [ -107.635014619173504, 25.445502725446222 ], [ -107.631195752013369, 25.442880725963796 ], [ -107.626831332401792, 25.441872264624401 ], [ -107.604736458118154, 25.442477341428038 ], [ -107.598735381152224, 25.444897648642588 ], [ -107.596280395120715, 25.447317955857134 ], [ -107.57445829706279, 25.458814415126234 ], [ -107.566547786516807, 25.461436414608659 ], [ -107.554545632584947, 25.462041491412297 ], [ -107.530814100946969, 25.439653649677734 ], [ -107.5231763666267, 25.421904730104384 ], [ -107.525904128883937, 25.417870884746804 ], [ -107.52835911491546, 25.419686115157717 ], [ -107.54581679336178, 25.426140267729842 ], [ -107.554272856359233, 25.422509806908021 ], [ -107.560273933325149, 25.418475961550442 ], [ -107.560001157099435, 25.416055654335892 ], [ -107.557273394842184, 25.410206578567404 ], [ -107.555909513713573, 25.409198117228009 ], [ -107.554000080133505, 25.408593040424371 ], [ -107.548544555619031, 25.411618424442558 ], [ -107.535724073010002, 25.410004886299525 ], [ -107.525358576432495, 25.403147349191642 ], [ -107.519084723240837, 25.398105042494667 ], [ -107.459619506033022, 25.330941517290974 ], [ -107.445435142295381, 25.313595982253382 ], [ -107.436706303072214, 25.296653831751549 ], [ -107.433160212137807, 25.28858614103639 ], [ -107.424158596688926, 25.28314044980366 ], [ -107.412974771434236, 25.274467682284865 ], [ -107.403154827308185, 25.25389507096121 ], [ -107.392243778279223, 25.246432457049689 ], [ -107.385424372636123, 25.239373227673926 ], [ -107.362783945901043, 25.212144771510268 ], [ -107.346144596131879, 25.188546776168426 ], [ -107.339325190488779, 25.177453701435084 ], [ -107.32404972184824, 25.142762631359904 ], [ -107.322958616945343, 25.136711863323534 ], [ -107.323776945622512, 25.13530001744838 ], [ -107.331414679942782, 25.132678017965954 ], [ -107.327595812782647, 25.12602217312595 ], [ -107.321867512042445, 25.118156174678671 ], [ -107.318866973559494, 25.115332482928366 ], [ -107.317503092430869, 25.114727406124729 ], [ -107.310956463013497, 25.107869869016845 ], [ -107.294862665695788, 25.082053258728337 ], [ -107.275495553669387, 25.046353727313761 ], [ -107.268948924252015, 25.034050498973144 ], [ -107.264857280866153, 25.026184500525865 ], [ -107.255037336740088, 24.996939121683415 ], [ -107.253127903160021, 24.989879892307652 ], [ -107.252036798257137, 24.98403081653916 ] ] ], [ [ [ -107.727758535919634, 25.334571978112795 ], [ -107.726121878565294, 25.331949978630369 ], [ -107.725303549888125, 25.328924594612182 ], [ -107.714938053310618, 25.317629827610961 ], [ -107.704845332958826, 25.315209520396415 ], [ -107.703754228055942, 25.313797674521261 ], [ -107.702935899378758, 25.312587520913986 ], [ -107.702390346927317, 25.309360444627924 ], [ -107.701844794475875, 25.308351983288532 ], [ -107.700753689572963, 25.307545214217015 ], [ -107.695025388832761, 25.306940137413378 ], [ -107.689024311866845, 25.303511368859436 ], [ -107.687660430738219, 25.301292753912765 ], [ -107.677294934160713, 25.289392910107907 ], [ -107.670748304743341, 25.28092183485699 ], [ -107.669384423614716, 25.27547614362426 ], [ -107.667747766260376, 25.274265990016985 ], [ -107.665838332680309, 25.273862605481227 ], [ -107.665020004003139, 25.278299835374565 ], [ -107.663656122874514, 25.278904912178202 ], [ -107.660655584391549, 25.278703219910323 ], [ -107.658746150811481, 25.274669374552744 ], [ -107.654108954974177, 25.26014753126546 ], [ -107.651926745168396, 25.256315378175756 ], [ -107.65056286403977, 25.220615846761181 ], [ -107.652745073845566, 25.215976924599964 ], [ -107.659837255714379, 25.213758309653297 ], [ -107.674567171903476, 25.202060158116318 ], [ -107.676749381709271, 25.200043235437526 ], [ -107.676203829257815, 25.197421235955101 ], [ -107.676476605483543, 25.195606005544192 ], [ -107.685750997158152, 25.186731545757517 ], [ -107.694479836381319, 25.185924776686001 ], [ -107.695570941284217, 25.186529853489638 ], [ -107.701299242024419, 25.200244927705405 ], [ -107.707300318990349, 25.217993847278755 ], [ -107.710028081247586, 25.22706999933331 ], [ -107.706481990313165, 25.236347843655743 ], [ -107.701299242024419, 25.241793534888473 ], [ -107.698298703541454, 25.24764261065696 ], [ -107.699935360895807, 25.262164453944248 ], [ -107.700753689572963, 25.263576299819398 ], [ -107.707300318990349, 25.267206760641223 ], [ -107.7103008574733, 25.268013529712739 ], [ -107.716574710664958, 25.267408452909102 ], [ -107.719029696696481, 25.263979684355157 ], [ -107.72830408837109, 25.269223683320011 ], [ -107.743034004560172, 25.293023370929728 ], [ -107.751762843783339, 25.312990905449745 ], [ -107.7569455920721, 25.316823058539445 ], [ -107.761582787909404, 25.317428135343082 ], [ -107.76294666903803, 25.318234904414599 ], [ -107.764856102618097, 25.321260288432782 ], [ -107.764037773940913, 25.324689056986728 ], [ -107.761582787909404, 25.326907671933395 ], [ -107.74494343814024, 25.336588900791583 ], [ -107.736760151368529, 25.337799054398857 ], [ -107.732122955531224, 25.336790593059462 ], [ -107.727758535919634, 25.334571978112795 ] ] ], [ [ [ -110.903692132023195, 25.676238679899754 ], [ -110.901237145991672, 25.674221757220963 ], [ -110.898509383734435, 25.668170989184595 ], [ -110.897963831282993, 25.656472837647613 ], [ -110.903419355797467, 25.64154760982457 ], [ -110.901237145991672, 25.622588536643949 ], [ -110.896327173928654, 25.610083616035453 ], [ -110.905056013151807, 25.596771926355444 ], [ -110.907238222957602, 25.59152792739059 ], [ -110.902873803346026, 25.584670390282703 ], [ -110.891962754317063, 25.588905927908165 ], [ -110.889507768285554, 25.586889005229374 ], [ -110.886780006028303, 25.580434852657248 ], [ -110.887325558479759, 25.566921470709357 ], [ -110.889780544511268, 25.550987781546919 ], [ -110.893599411671403, 25.538482860938423 ], [ -110.887052782254031, 25.52133901816871 ], [ -110.885961677351133, 25.513271327453552 ], [ -110.88568890112542, 25.500968099112939 ], [ -110.888143887156929, 25.478378565110493 ], [ -110.889234992059826, 25.476966719235342 ], [ -110.893872187897131, 25.478781949646251 ], [ -110.904510460700365, 25.484429333146863 ], [ -110.912148195020634, 25.489673332111714 ], [ -110.909420432763397, 25.491690254790505 ], [ -110.908874880311942, 25.493102100665656 ], [ -110.910238761440567, 25.496127484683839 ], [ -110.917058167083667, 25.498144407362631 ], [ -110.929878649692682, 25.498144407362631 ], [ -110.937516384012952, 25.494917331076568 ], [ -110.940789698721645, 25.496934253755356 ], [ -110.941608027398814, 25.503791790863243 ], [ -110.941880803624542, 25.518111941882648 ], [ -110.940244146270203, 25.585880543889978 ], [ -110.939153041367305, 25.615730999536066 ], [ -110.93778916023868, 25.619563152625766 ], [ -110.93697083156151, 25.620168229429403 ], [ -110.933151964401375, 25.617747922214853 ], [ -110.933424740627103, 25.608268385624545 ], [ -110.925241453855378, 25.60322607892757 ], [ -110.922513691598141, 25.604234540266965 ], [ -110.918422048212278, 25.608671770160299 ], [ -110.917603719535109, 25.610688692839091 ], [ -110.921422586695243, 25.616941153143337 ], [ -110.92415034895248, 25.618352999018491 ], [ -110.928241992338343, 25.631664688698503 ], [ -110.928241992338343, 25.634690072716687 ], [ -110.912693747472076, 25.666759143309442 ], [ -110.904510460700365, 25.676440372167633 ], [ -110.903692132023195, 25.676238679899754 ] ] ], [ [ [ -110.8946905165743, 25.736342975727684 ], [ -110.883506691319624, 25.744814050978597 ], [ -110.861139040810258, 25.73109897676283 ], [ -110.858956831004463, 25.728880361816159 ], [ -110.862502921938884, 25.714358518528876 ], [ -110.863594026841781, 25.712139903582209 ], [ -110.886507229802589, 25.700441752045229 ], [ -110.892508306768519, 25.698626521634317 ], [ -110.900964369765958, 25.712946672653722 ], [ -110.902055474668856, 25.727871900476767 ], [ -110.9015099222174, 25.731502361298588 ], [ -110.896054397702926, 25.736342975727684 ], [ -110.8946905165743, 25.736342975727684 ] ] ], [ [ [ -111.009529307604069, 25.721417747904638 ], [ -110.998618258575121, 25.721619440172518 ], [ -110.981160580128787, 25.709114519564025 ], [ -110.980342251451617, 25.707500981420992 ], [ -110.980887803903059, 25.699029906170075 ], [ -110.981706132580229, 25.695802829884013 ], [ -110.993708286512089, 25.68491144741855 ], [ -111.004346559315323, 25.690357138651279 ], [ -111.021804237761643, 25.709517904099783 ], [ -111.013620950989932, 25.724846516458584 ], [ -111.011438741184136, 25.723636362851309 ], [ -111.009529307604069, 25.721417747904638 ] ] ], [ [ [ -110.857320173650123, 25.850299107079294 ], [ -110.853774082715717, 25.850904183882932 ], [ -110.84422691481538, 25.848080492132627 ], [ -110.842044705009585, 25.845861877185961 ], [ -110.843135809912482, 25.836382340595648 ], [ -110.848864110652684, 25.826701111737457 ], [ -110.851319096684193, 25.823877419987152 ], [ -110.863321250616053, 25.823877419987152 ], [ -110.869867880033425, 25.825692650398061 ], [ -110.877778390579422, 25.824684189058669 ], [ -110.890053320736996, 25.821457112772606 ], [ -110.893872187897131, 25.821658805040485 ], [ -110.893326635445689, 25.823272343183515 ], [ -110.877232838127966, 25.842836493167773 ], [ -110.87368674719356, 25.843239877703532 ], [ -110.869322327581983, 25.841828031828378 ], [ -110.866321789099018, 25.843038185435653 ], [ -110.857320173650123, 25.850299107079294 ] ] ], [ [ [ -110.789398893444869, 25.574787469156636 ], [ -110.785852802510462, 25.581241621728765 ], [ -110.785852802510462, 25.589107620176044 ], [ -110.786398354961904, 25.589914389247557 ], [ -110.789126117219155, 25.590519466051195 ], [ -110.792399431927834, 25.588905927908165 ], [ -110.793490536830731, 25.589712696979678 ], [ -110.795399970410799, 25.592738080997862 ], [ -110.795672746636527, 25.596973618623323 ], [ -110.795399970410799, 25.598183772230595 ], [ -110.78530725005902, 25.613915769125153 ], [ -110.779033396867362, 25.620168229429403 ], [ -110.775487305932955, 25.619966537161524 ], [ -110.773577872352888, 25.618958075822128 ], [ -110.772213991224262, 25.616537768607579 ], [ -110.772213991224262, 25.613714076857274 ], [ -110.773577872352888, 25.610083616035453 ], [ -110.769759005192753, 25.604234540266965 ], [ -110.764576256903993, 25.604436232534844 ], [ -110.752301326746419, 25.610688692839091 ], [ -110.75066466939208, 25.61089038510697 ], [ -110.749573564489182, 25.609881923767574 ], [ -110.748755235812013, 25.607259924285149 ], [ -110.749573564489182, 25.601410848516657 ], [ -110.761575718421028, 25.583056852139674 ], [ -110.762666823323926, 25.576804391835424 ], [ -110.762394047098198, 25.575594238228152 ], [ -110.755574641455098, 25.571963777406332 ], [ -110.752846879197861, 25.575190853692394 ], [ -110.736753081880153, 25.600402387177262 ], [ -110.733206990945746, 25.603427771195449 ], [ -110.727205913979816, 25.604839617070603 ], [ -110.725296480399749, 25.60302438665969 ], [ -110.723659823045409, 25.597578695426957 ], [ -110.727751466431272, 25.583056852139674 ], [ -110.734025319622916, 25.563089317619657 ], [ -110.756392970132282, 25.530415170223264 ], [ -110.765940138032619, 25.513876404257189 ], [ -110.771941214998535, 25.494110562005051 ], [ -110.786398354961904, 25.455587338840171 ], [ -110.78694390741336, 25.440258726481368 ], [ -110.78612557873619, 25.437233342463184 ], [ -110.79294498437929, 25.420896268764992 ], [ -110.802219376053898, 25.40879473269225 ], [ -110.803037704731068, 25.406576117745583 ], [ -110.802219376053898, 25.400121965173454 ], [ -110.799491613796661, 25.39568473528012 ], [ -110.797854956442308, 25.394474581672846 ], [ -110.795127194185071, 25.394474581672846 ], [ -110.793763313056459, 25.395281350744362 ], [ -110.78694390741336, 25.394676273940725 ], [ -110.785580026284734, 25.393869504869208 ], [ -110.782852264027497, 25.378944277046166 ], [ -110.784488921381836, 25.373498585813433 ], [ -110.796491075313696, 25.361195357472816 ], [ -110.798400508893764, 25.360993665204937 ], [ -110.798673285119492, 25.362808895615849 ], [ -110.799764390022375, 25.364422433758882 ], [ -110.807129348116931, 25.365632587366154 ], [ -110.812584872631405, 25.364019049223124 ], [ -110.818040397145879, 25.361195357472816 ], [ -110.822404816757469, 25.35252258995402 ], [ -110.822404816757469, 25.349093821400078 ], [ -110.821859264306013, 25.347076898721291 ], [ -110.8215864880803, 25.343648130167349 ], [ -110.823768697886081, 25.337799054398857 ], [ -110.827042012594774, 25.335782131720066 ], [ -110.834679746915043, 25.333765209041278 ], [ -110.83740750917228, 25.334370285844916 ], [ -110.838771390300906, 25.33336182450552 ], [ -110.850500768007024, 25.320453519361266 ], [ -110.853228530264261, 25.313797674521261 ], [ -110.861957369487428, 25.307948598752773 ], [ -110.871504537387764, 25.309158752360045 ], [ -110.875323404547899, 25.311579059574594 ], [ -110.876414509450797, 25.312990905449745 ], [ -110.87886949548232, 25.335983823987945 ], [ -110.878323943030864, 25.343849822435224 ], [ -110.875868956999355, 25.349698898203716 ], [ -110.872322866064934, 25.354136128097053 ], [ -110.861684593261714, 25.358169973454633 ], [ -110.862230145713156, 25.3680528945807 ], [ -110.86686734155046, 25.373498585813433 ], [ -110.86768567022763, 25.379549353849804 ], [ -110.857865726101579, 25.397499965691029 ], [ -110.855683516295784, 25.398911811566183 ], [ -110.85022799178131, 25.398105042494667 ], [ -110.846409124621175, 25.398710119298304 ], [ -110.845590795943991, 25.3997185806377 ], [ -110.842044705009585, 25.408189655888613 ], [ -110.84340858613821, 25.411013347638921 ], [ -110.84259025746104, 25.420291191961354 ], [ -110.828951446174841, 25.446309494517738 ], [ -110.816130963565811, 25.462646568215934 ], [ -110.811493767728507, 25.469302413055939 ], [ -110.80876600547127, 25.474143027485034 ], [ -110.804947138311135, 25.483219179539589 ], [ -110.803037704731068, 25.49048010118323 ], [ -110.797036627765138, 25.523154248579623 ], [ -110.797854956442308, 25.528801632080231 ], [ -110.801128271151001, 25.533440554241448 ], [ -110.800037166248103, 25.537676091866906 ], [ -110.793763313056459, 25.541508244956606 ], [ -110.787216683639087, 25.544331936706911 ], [ -110.786398354961904, 25.545945474849944 ], [ -110.783943368930395, 25.557441934119044 ], [ -110.783397816478953, 25.565106240298448 ], [ -110.789398893444869, 25.574787469156636 ] ] ], [ [ [ -117.985781280493228, 20.650067364356065 ], [ -117.986599609170398, 20.644621673123336 ], [ -117.993419014813497, 20.63352859838999 ], [ -118.00132952535948, 20.631511675711202 ], [ -118.003784511391004, 20.636150597872419 ], [ -118.006512273648241, 20.659143516410619 ], [ -118.003784511391004, 20.663177361768199 ], [ -117.997510658199346, 20.669429822072448 ], [ -117.9923279099106, 20.66902643753669 ], [ -117.987417937847567, 20.660555362285773 ], [ -117.985781280493228, 20.650067364356065 ] ] ], [ [ [ -117.954957566986423, 20.682943204020336 ], [ -117.954957566986423, 20.679917820002153 ], [ -117.95768532924366, 20.675278897840936 ], [ -117.961504196403794, 20.671850129286995 ], [ -117.96368640620959, 20.670438283411841 ], [ -117.964504734886759, 20.670841667947599 ], [ -117.964777511112473, 20.703919199879749 ], [ -117.960958643952338, 20.711785198327028 ], [ -117.957412553017932, 20.713197044202182 ], [ -117.947319832666153, 20.703112430808233 ], [ -117.94404651795746, 20.693431201950045 ], [ -117.942682636828849, 20.68213643494882 ], [ -117.954957566986423, 20.682943204020336 ] ] ], [ [ [ -118.550700843967448, 20.899964084258098 ], [ -118.545790871904416, 20.899964084258098 ], [ -118.529969850812435, 20.89189639354294 ], [ -118.519877130460642, 20.886450702310206 ], [ -118.516058263300508, 20.881408395613235 ], [ -118.516603815751964, 20.876567781184139 ], [ -118.516331039526236, 20.873340704898077 ], [ -118.515785487074794, 20.872332243558681 ], [ -118.494781717694053, 20.85317147811018 ], [ -118.475960158119094, 20.824732868339247 ], [ -118.46968630492745, 20.817673638963484 ], [ -118.458775255898487, 20.808395794641051 ], [ -118.453319731384013, 20.805370410622867 ], [ -118.449500864223879, 20.804967026087109 ], [ -118.446227549515186, 20.803555180211955 ], [ -118.4394081438721, 20.791251951871338 ], [ -118.437225934066305, 20.783789337959817 ], [ -118.436407605389135, 20.778747031262842 ], [ -118.43504372426051, 20.776528416316175 ], [ -118.427678766165968, 20.773704724565871 ], [ -118.408857206591009, 20.770679340547684 ], [ -118.395218395304823, 20.768662417868896 ], [ -118.391399528144689, 20.766242110654346 ], [ -118.375305730826966, 20.752527036438579 ], [ -118.373941849698355, 20.750106729224029 ], [ -118.378851821761387, 20.747686422009483 ], [ -118.392217856821858, 20.746879652937967 ], [ -118.394945619079095, 20.747888114277362 ], [ -118.396036723981993, 20.749703344688275 ], [ -118.400946696045025, 20.753938882313729 ], [ -118.428769871068866, 20.751115190563425 ], [ -118.439680920097814, 20.761603188493133 ], [ -118.439953696323542, 20.766847187457984 ], [ -118.442954234806507, 20.770074263744046 ], [ -118.471322962281789, 20.796495950836192 ], [ -118.480870130182126, 20.80476533381923 ], [ -118.487416759599498, 20.816866869891967 ], [ -118.492599507888258, 20.826548098750155 ], [ -118.503783333142934, 20.844297018323505 ], [ -118.508420528980238, 20.850146094091993 ], [ -118.536243704004079, 20.871727166755043 ], [ -118.539244242487044, 20.872937320362318 ], [ -118.549064186613109, 20.872130551290802 ], [ -118.551791948870346, 20.870718705415648 ], [ -118.55642914470765, 20.873340704898077 ], [ -118.572250165799645, 20.88403039509566 ], [ -118.590798949148862, 20.901375930133252 ], [ -118.591344501600318, 20.902384391472644 ], [ -118.592708382728929, 20.908031774973256 ], [ -118.587252858214455, 20.916906234759931 ], [ -118.582342886151423, 20.918116388367206 ], [ -118.579342347668458, 20.916301157956294 ], [ -118.577705690314119, 20.911863928062957 ], [ -118.575796256734051, 20.908838544044773 ], [ -118.56324855035075, 20.901375930133252 ], [ -118.550700843967448, 20.899964084258098 ] ] ], [ [ [ -117.37394420619448, 20.877979627059293 ], [ -117.383491374094817, 20.89794716157931 ], [ -117.386764688803495, 20.907023313633861 ], [ -117.381581940514749, 20.920738387849632 ], [ -117.377490297128887, 20.924570540939332 ], [ -117.367670353002822, 20.925780694546606 ], [ -117.363305933391246, 20.925175617742969 ], [ -117.357577632651044, 20.922351925992661 ], [ -117.339574401753268, 20.923763771867815 ], [ -117.338756073076098, 20.927394232689636 ], [ -117.332754996110168, 20.935865307940553 ], [ -117.329208905175761, 20.938285615155099 ], [ -117.32648114291851, 20.938285615155099 ], [ -117.321298394629764, 20.934856846601157 ], [ -117.319661737275425, 20.931831462582974 ], [ -117.31666119879246, 20.901577622401131 ], [ -117.319116184823969, 20.893711623953852 ], [ -117.320207289726866, 20.893106547150214 ], [ -117.322389499532662, 20.896131931168398 ], [ -117.322935051984103, 20.899359007454461 ], [ -117.322116723306934, 20.901375930133252 ], [ -117.323480604435559, 20.91347746620599 ], [ -117.325117261789899, 20.914284235277503 ], [ -117.325935590467068, 20.913679158473869 ], [ -117.326753919144238, 20.912267312598715 ], [ -117.335482758367405, 20.89169470127506 ], [ -117.336301087044575, 20.888265932721119 ], [ -117.337119415721745, 20.882416856952627 ], [ -117.3376649681732, 20.871323782219285 ], [ -117.324571709338443, 20.862045937896852 ], [ -117.315570093889562, 20.859827322950185 ], [ -117.308750688246462, 20.859625630682306 ], [ -117.306295702214953, 20.86244932243261 ], [ -117.277381422288215, 20.870718705415648 ], [ -117.254468219327407, 20.871323782219285 ], [ -117.249012694812919, 20.870718705415648 ], [ -117.248194366135749, 20.869710244076256 ], [ -117.24655770878141, 20.866684860058069 ], [ -117.242193289169819, 20.844498710591385 ], [ -117.242466065395547, 20.829371790500463 ], [ -117.243829946524173, 20.823119330196214 ], [ -117.247648813684307, 20.809000871444688 ], [ -117.261833177421948, 20.805168718354988 ], [ -117.296748534314617, 20.815253331748934 ], [ -117.302749611280532, 20.822312561124697 ], [ -117.306295702214953, 20.823522714731972 ], [ -117.308750688246462, 20.821304099785305 ], [ -117.325117261789899, 20.791050259603459 ], [ -117.331936667432998, 20.792260413210734 ], [ -117.356759303973874, 20.790445182799822 ], [ -117.359487066231111, 20.789638413728309 ], [ -117.365488143197041, 20.780158877137996 ], [ -117.369579786582889, 20.7676539565295 ], [ -117.382673045417647, 20.758577804474946 ], [ -117.384582478997714, 20.7599896503501 ], [ -117.388674122383563, 20.768662417868896 ], [ -117.389219674835019, 20.772091186422838 ], [ -117.386219136352054, 20.780965646209513 ], [ -117.392492989543697, 20.792058720942855 ], [ -117.399312395186797, 20.793672259085888 ], [ -117.409677891764318, 20.771082725083442 ], [ -117.416770073633131, 20.751316882831304 ], [ -117.418952283438927, 20.750711806027667 ], [ -117.423043926824789, 20.751921959634942 ], [ -117.4312272135965, 20.756964266331916 ], [ -117.43204554227367, 20.759384573546463 ], [ -117.433136647176568, 20.769872571476167 ], [ -117.431499989822228, 20.78318426115618 ], [ -117.429317780016433, 20.787218106513759 ], [ -117.422498374373333, 20.796294258568313 ], [ -117.417588402310301, 20.80093318072953 ], [ -117.411041772892929, 20.800126411658013 ], [ -117.40858678686142, 20.801739949801046 ], [ -117.40258570989549, 20.81242963999863 ], [ -117.40176738121832, 20.814849947213176 ], [ -117.40176738121832, 20.816060100820451 ], [ -117.404767919701285, 20.832598866786526 ], [ -117.411041772892929, 20.83542255853683 ], [ -117.414587863827336, 20.843490249251989 ], [ -117.414315087601622, 20.847725786877447 ], [ -117.412678430247269, 20.852566401306543 ], [ -117.411041772892929, 20.854381631717452 ], [ -117.3982212902839, 20.856600246664122 ], [ -117.38076361183758, 20.854583323985331 ], [ -117.37394420619448, 20.877979627059293 ] ] ], [ [ [ -117.648084313047008, 20.859423938414427 ], [ -117.646993208144124, 20.855793477592606 ], [ -117.651630403981429, 20.848330863681085 ], [ -117.65899536207597, 20.838649634822893 ], [ -117.65899536207597, 20.834010712661676 ], [ -117.657904257173072, 20.831388713179251 ], [ -117.655176494915835, 20.828766713696826 ], [ -117.654903718690107, 20.825741329678642 ], [ -117.658722585850242, 20.818278715767118 ], [ -117.662814229236105, 20.814648254945297 ], [ -117.66581476771907, 20.814244870409539 ], [ -117.668269753750579, 20.815455024016813 ], [ -117.670997516007816, 20.819488869374393 ], [ -117.674270830716509, 20.821304099785305 ], [ -117.675089159393679, 20.820900715249547 ], [ -117.679180802779541, 20.813236409070146 ], [ -117.681908565036778, 20.804361949283471 ], [ -117.681908565036778, 20.802143334336801 ], [ -117.681090236359609, 20.798311181247101 ], [ -117.678362474102371, 20.792462105478613 ], [ -117.675089159393679, 20.780562261673754 ], [ -117.675907488070848, 20.776528416316175 ], [ -117.676725816748018, 20.776125031780417 ], [ -117.682181341262506, 20.778948723530721 ], [ -117.686272984648355, 20.783991030227696 ], [ -117.68763686577698, 20.788226567853155 ], [ -117.68845519445415, 20.79689933537195 ], [ -117.689546299357048, 20.801134872997409 ], [ -117.691182956711387, 20.802950103408318 ], [ -117.719278907960955, 20.815253331748934 ], [ -117.723643327572532, 20.81242963999863 ], [ -117.72991718076419, 20.81626179308833 ], [ -117.732099390569985, 20.819892253910151 ], [ -117.728553299635564, 20.830783636375614 ], [ -117.706731201577654, 20.831187020911372 ], [ -117.690910180485673, 20.835825943072589 ], [ -117.68927352313132, 20.837036096679864 ], [ -117.687091313325539, 20.845103787395022 ], [ -117.686818537099811, 20.85095286316351 ], [ -117.68763686577698, 20.85720532346776 ], [ -117.689546299357048, 20.860634092021701 ], [ -117.691455732937115, 20.863457783772006 ], [ -117.699639019708826, 20.865878090986556 ], [ -117.711095621189244, 20.865676398718676 ], [ -117.716551145703718, 20.869911936344135 ], [ -117.722006670218192, 20.876164396648381 ], [ -117.723643327572532, 20.880803318809598 ], [ -117.746283754307626, 20.898148853847189 ], [ -117.757467579562302, 20.907628390437498 ], [ -117.759922565593826, 20.911258851259319 ], [ -117.761013670496709, 20.915494388884778 ], [ -117.759922565593826, 20.91872146517084 ], [ -117.759104236916642, 20.920536695581752 ], [ -117.752830383724998, 20.929814539904186 ], [ -117.746829306759068, 20.932033154850853 ], [ -117.739191572438799, 20.934050077529644 ], [ -117.733736047924324, 20.934856846601157 ], [ -117.724734432475429, 20.933646692993886 ], [ -117.719278907960955, 20.932033154850853 ], [ -117.716823921929446, 20.929612847636307 ], [ -117.70127567706318, 20.926789155885999 ], [ -117.691182956711387, 20.929612847636307 ], [ -117.688182418228422, 20.927999309493273 ], [ -117.677816921650916, 20.910250389919923 ], [ -117.680817460133881, 20.899964084258098 ], [ -117.679999131456711, 20.898148853847189 ], [ -117.663632557913274, 20.883828702827781 ], [ -117.661723124333207, 20.883223626024144 ], [ -117.63717326401806, 20.883425318292023 ], [ -117.619442809345998, 20.887660855917481 ], [ -117.599257368642427, 20.891089624471423 ], [ -117.598984592416713, 20.890081163132031 ], [ -117.60171235467395, 20.883021933756265 ], [ -117.607986207865594, 20.875761012112623 ], [ -117.617806151991658, 20.872735628094439 ], [ -117.619442809345998, 20.873542397165956 ], [ -117.630899410826402, 20.871727166755043 ], [ -117.647265984369838, 20.86628147552231 ], [ -117.648084313047008, 20.859423938414427 ] ] ], [ [ [ -117.531336088437172, 20.824732868339247 ], [ -117.539519375208897, 20.828363329161068 ], [ -117.546611557077711, 20.82775825235743 ], [ -117.553703738946538, 20.825741329678642 ], [ -117.558886487235299, 20.820699022981668 ], [ -117.565705892878384, 20.817068562159847 ], [ -117.579071927938855, 20.815455024016813 ], [ -117.587255214710581, 20.815858408552572 ], [ -117.597075158836645, 20.82009394617803 ], [ -117.599257368642427, 20.819690561642272 ], [ -117.603349012028289, 20.816665177624088 ], [ -117.605531221834084, 20.805168718354988 ], [ -117.604167340705459, 20.799117950318617 ], [ -117.608531760317049, 20.796697643104071 ], [ -117.613714508605796, 20.802143334336801 ], [ -117.62353445273186, 20.821505792053184 ], [ -117.622716124054691, 20.823321022464093 ], [ -117.620806690474623, 20.825943021946522 ], [ -117.605531221834084, 20.83542255853683 ], [ -117.594347396579394, 20.829775175036222 ], [ -117.583163571324718, 20.826346406482276 ], [ -117.578253599261686, 20.825943021946522 ], [ -117.572525298521484, 20.827153175553793 ], [ -117.567888102684179, 20.833203943590163 ], [ -117.558340934783843, 20.838044558019256 ], [ -117.510877871507887, 20.849742709556239 ], [ -117.499421270027483, 20.855591785324727 ], [ -117.492329088158655, 20.861440861093218 ], [ -117.490965207030044, 20.865273014182918 ], [ -117.489601325901418, 20.876567781184139 ], [ -117.48932854967569, 20.894720085293244 ], [ -117.489601325901418, 20.914485927545382 ], [ -117.489055773449977, 20.917511311563569 ], [ -117.487419116095623, 20.920536695581752 ], [ -117.484691353838386, 20.922755310528419 ], [ -117.477871948195286, 20.922755310528419 ], [ -117.463142032006203, 20.917511311563569 ], [ -117.451412654300071, 20.903594545079919 ], [ -117.448684892042834, 20.898552238382944 ], [ -117.457959283717443, 20.878988088398685 ], [ -117.46832478029495, 20.872332243558681 ], [ -117.470506990100745, 20.869710244076256 ], [ -117.47268919990654, 20.860835784289581 ], [ -117.470779766326473, 20.836229327608347 ], [ -117.468052004069222, 20.825136252875005 ], [ -117.468597556520677, 20.820295638445909 ], [ -117.474598633486607, 20.810211025051959 ], [ -117.505149570767685, 20.800328103925892 ], [ -117.508695661702092, 20.800529796193771 ], [ -117.514423962442294, 20.802748411140438 ], [ -117.519606710731054, 20.80617717969438 ], [ -117.520152263182496, 20.807589025569534 ], [ -117.520152263182496, 20.809202563712567 ], [ -117.519606710731054, 20.811017794123476 ], [ -117.521516144311121, 20.81626179308833 ], [ -117.526698892599867, 20.821505792053184 ], [ -117.531336088437172, 20.824732868339247 ] ] ], [ [ [ -117.91022226596769, 20.870920397683527 ], [ -117.91458668557928, 20.871727166755043 ], [ -117.916496119159348, 20.872937320362318 ], [ -117.931498811574158, 20.890484547667786 ], [ -117.930680482896989, 20.896333623436277 ], [ -117.927407168188296, 20.908233467241136 ], [ -117.919496657642313, 20.914485927545382 ], [ -117.917041671610789, 20.915897773420536 ], [ -117.914859461805008, 20.915494388884778 ], [ -117.908858384839078, 20.911662235795077 ], [ -117.903402860324604, 20.906619929098103 ], [ -117.898492888261572, 20.899762391990219 ], [ -117.894674021101437, 20.887055779113844 ], [ -117.899311216938742, 20.875155935308985 ], [ -117.906130622581841, 20.871525474487164 ], [ -117.91022226596769, 20.870920397683527 ] ] ], [ [ [ -118.654901362193982, 20.978018991927257 ], [ -118.658174676902675, 20.98265791408847 ], [ -118.659265781805573, 20.983464683159987 ], [ -118.665539634997216, 20.983262990892108 ], [ -118.666630739900114, 20.98265791408847 ], [ -118.670995159511705, 20.984473144499383 ], [ -118.673450145543214, 20.98649006717817 ], [ -118.674541250446111, 20.987498528517566 ], [ -118.688998390409481, 21.008676216644858 ], [ -118.691180600215262, 21.01432360014547 ], [ -118.673450145543214, 21.008474524376979 ], [ -118.672359040640316, 21.007466063037583 ], [ -118.669904054608807, 21.005045755823037 ], [ -118.666630739900114, 21.001415295001216 ], [ -118.665812411222944, 21.000205141393941 ], [ -118.656810795774049, 20.983061298624229 ], [ -118.654901362193982, 20.978018991927257 ] ] ], [ [ [ -117.164724841064228, 20.872735628094439 ], [ -117.161178750129821, 20.874752550773227 ], [ -117.15981486900121, 20.868903475004739 ], [ -117.160087645226923, 20.862852706968368 ], [ -117.161997078806991, 20.852566401306543 ], [ -117.167725379547193, 20.855793477592606 ], [ -117.184637505542085, 20.853978247181697 ], [ -117.19827631682827, 20.838044558019256 ], [ -117.2042773937942, 20.834817481733193 ], [ -117.208369037180063, 20.835019174001072 ], [ -117.220098414886195, 20.838044558019256 ], [ -117.229100030335076, 20.841271634305322 ], [ -117.234010002398108, 20.846515633270172 ], [ -117.234282778623836, 20.847927479145326 ], [ -117.229645582786532, 20.870517013147769 ], [ -117.226645044303567, 20.874349166237469 ], [ -117.218188981306128, 20.873340704898077 ], [ -117.21709787640323, 20.872332243558681 ], [ -117.216825100177502, 20.870920397683527 ], [ -117.214642890371707, 20.867088244593827 ], [ -117.20946014208296, 20.862045937896852 ], [ -117.19827631682827, 20.859423938414427 ], [ -117.193366344765252, 20.860432399753822 ], [ -117.191184134959457, 20.864667937379281 ], [ -117.191456911185185, 20.865878090986556 ], [ -117.193093568539524, 20.868096705933223 ], [ -117.202913512665589, 20.874550858505348 ], [ -117.201822407762691, 20.875761012112623 ], [ -117.189820253830831, 20.881206703345356 ], [ -117.177818099898985, 20.884232087363539 ], [ -117.170725918030158, 20.884433779631419 ], [ -117.168543708224362, 20.882215164684748 ], [ -117.164724841064228, 20.872735628094439 ] ] ], [ [ [ -118.853209678295272, 21.130700038711627 ], [ -118.859756307712644, 21.126464501086172 ], [ -118.861392965066997, 21.125052655211018 ], [ -118.870667356741606, 21.115774810888585 ], [ -118.872304014095945, 21.111740965531006 ], [ -118.870667356741606, 21.106496966566155 ], [ -118.869849028064436, 21.104681736155243 ], [ -118.862484069969881, 21.101252967601301 ], [ -118.860574636389813, 21.100647890797664 ], [ -118.853209678295272, 21.101252967601301 ], [ -118.852118573392374, 21.09923604492251 ], [ -118.85266412584383, 21.092580200082505 ], [ -118.854028006972442, 21.087134508849772 ], [ -118.855664664326795, 21.08612604751038 ], [ -118.866302937130015, 21.085117586170984 ], [ -118.886215601607873, 21.091773431010989 ], [ -118.90558271363426, 21.098630968118872 ], [ -118.915129881534597, 21.095000507297051 ], [ -118.921949287177696, 21.088949739260684 ], [ -118.928495916595068, 21.075234665044913 ], [ -118.928495916595068, 21.074024511437642 ], [ -118.926859259240729, 21.071805896490972 ], [ -118.927404811692185, 21.061116206293388 ], [ -118.930950902626591, 21.054056976917625 ], [ -118.933678664883828, 21.053451900113988 ], [ -118.935860874689624, 21.055468822792776 ], [ -118.938043084495405, 21.059502668150355 ], [ -118.937497532043963, 21.06071282175763 ], [ -118.938043084495405, 21.063536513507934 ], [ -118.942953056558437, 21.069990666080063 ], [ -118.952500224458774, 21.079268510402493 ], [ -118.958228525198976, 21.081890509884921 ], [ -118.960410735004771, 21.084109124831588 ], [ -118.960956287456213, 21.090966661939472 ], [ -118.960137958779043, 21.091773431010989 ], [ -118.951954672007332, 21.096614045440084 ], [ -118.941589175429826, 21.099841121726147 ], [ -118.936679203366793, 21.098630968118872 ], [ -118.922494839629152, 21.11315281140616 ], [ -118.921403734726255, 21.11678327222798 ], [ -118.903127727602751, 21.121623886657076 ], [ -118.884851720479247, 21.121018809853439 ], [ -118.881032853319113, 21.124447578407381 ], [ -118.879123419739045, 21.131506807783143 ], [ -118.878305091061875, 21.134935576337085 ], [ -118.87775953861042, 21.145625266534672 ], [ -118.865757384678574, 21.17325710723409 ], [ -118.860574636389813, 21.182534951556523 ], [ -118.849936363586593, 21.187980642789253 ], [ -118.835206447397496, 21.173660491769848 ], [ -118.831933132688803, 21.163374186108019 ], [ -118.83466089494604, 21.156113264464377 ], [ -118.836843104751836, 21.153289572714073 ], [ -118.838206985880461, 21.15389464951771 ], [ -118.84148030058914, 21.153491264981952 ], [ -118.843935286620663, 21.152281111374677 ], [ -118.851027468489477, 21.13614572994436 ], [ -118.853209678295272, 21.130700038711627 ] ] ], [ [ [ -118.290199548401105, 21.012306677466679 ], [ -118.292381758206901, 21.001818679536974 ], [ -118.294836744238424, 20.996372988304241 ], [ -118.297018954044205, 20.994557757893329 ], [ -118.319659380779299, 20.981649452749078 ], [ -118.322659919262264, 20.981044375945441 ], [ -118.328933772453908, 20.981851145016957 ], [ -118.352938080317614, 20.997179757375758 ], [ -118.362485248217951, 21.010088062520012 ], [ -118.364667458023746, 21.017954060967291 ], [ -118.362212471992223, 21.039333441362459 ], [ -118.361121367089325, 21.039736825898217 ], [ -118.353483632769056, 21.038526672290942 ], [ -118.350483094286091, 21.036913134147913 ], [ -118.347209779577412, 21.038324980023067 ], [ -118.338480940354245, 21.049418054756408 ], [ -118.335207625645552, 21.051838361970955 ], [ -118.324842129068045, 21.054258669185504 ], [ -118.318295499650674, 21.053855284649746 ], [ -118.314203856264811, 21.051838361970955 ], [ -118.303565583461577, 21.041753748577008 ], [ -118.285835128789529, 21.023198059932142 ], [ -118.284744023886631, 21.018962522306683 ], [ -118.285016800112359, 21.017348984163654 ], [ -118.288017338595324, 21.012508369734558 ], [ -118.290199548401105, 21.012306677466679 ] ] ], [ [ [ -118.6333520403618, 21.076848203187946 ], [ -118.628714844524495, 21.080680356277647 ], [ -118.624895977364361, 21.080075279474009 ], [ -118.605801641563687, 21.070595742883697 ], [ -118.601164445726369, 21.066965282061876 ], [ -118.595981697437622, 21.058897591346717 ], [ -118.596527249889064, 21.055468822792776 ], [ -118.602801103080722, 21.047199439809738 ], [ -118.610438837400991, 21.03751821095155 ], [ -118.615894361915466, 21.036711441880033 ], [ -118.620258781527042, 21.037316518683671 ], [ -118.624623201138633, 21.04296390218428 ], [ -118.628714844524495, 21.053855284649746 ], [ -118.63171538300746, 21.068175435669151 ], [ -118.6333520403618, 21.076848203187946 ] ] ], [ [ [ -117.088620274087262, 20.90561146775871 ], [ -117.086710840507195, 20.90722500590174 ], [ -117.085892511830025, 20.907023313633861 ], [ -117.081800868444162, 20.904199621883556 ], [ -117.081255315992721, 20.90339285281204 ], [ -117.081255315992721, 20.90177931466901 ], [ -117.097894665761871, 20.889677778596273 ], [ -117.101440756696292, 20.889879470864152 ], [ -117.106077952533596, 20.896131931168398 ], [ -117.10635072875931, 20.898148853847189 ], [ -117.104986847630698, 20.90561146775871 ], [ -117.103350190276359, 20.908636851776894 ], [ -117.100895204244836, 20.909847005384169 ], [ -117.088620274087262, 20.90561146775871 ] ] ], [ [ [ -117.178363652350427, 20.935663615672674 ], [ -117.185183057993527, 20.931024693511457 ], [ -117.181909743284848, 20.923360387332057 ], [ -117.180545862156222, 20.922351925992661 ], [ -117.178909204801883, 20.919124849706598 ], [ -117.179181981027597, 20.917107927027811 ], [ -117.180545862156222, 20.914485927545382 ], [ -117.188183596476492, 20.911662235795077 ], [ -117.193911897216694, 20.912469004866594 ], [ -117.220916743563365, 20.929209463100548 ], [ -117.222280624691976, 20.931831462582974 ], [ -117.22691782052928, 20.948571920816928 ], [ -117.229918359012245, 20.960673456889666 ], [ -117.228281701657906, 20.965514071318761 ], [ -117.219825638660467, 20.977212222855741 ], [ -117.212460680565925, 20.983262990892108 ], [ -117.189547477605117, 20.977212222855741 ], [ -117.170725918030158, 20.942319460512678 ], [ -117.173453680287395, 20.937882230619344 ], [ -117.178363652350427, 20.935663615672674 ] ] ], [ [ [ -118.717912670336204, 21.123842501603743 ], [ -118.717367117884763, 21.125254347478897 ], [ -118.711366040918833, 21.123842501603743 ], [ -118.702909977921394, 21.115774810888585 ], [ -118.701818873018496, 21.113959580477676 ], [ -118.699636663212715, 21.099437737190389 ], [ -118.704273859050019, 21.094395430493417 ], [ -118.715184908078967, 21.093992045957659 ], [ -118.722004313722067, 21.100446198529784 ], [ -118.722822642399237, 21.103269890280089 ], [ -118.724186523527862, 21.117590041299497 ], [ -118.720640432593456, 21.122834040264348 ], [ -118.717912670336204, 21.123842501603743 ] ] ], [ [ [ -116.729373984808859, 21.033080981058212 ], [ -116.735102285549061, 21.035702980540638 ], [ -116.741103362514991, 21.036509749612154 ], [ -116.741921691192161, 21.034694519201242 ], [ -116.747104439480921, 21.034492826933363 ], [ -116.757742712284156, 21.039535133630338 ], [ -116.76919931376456, 21.047401132077617 ], [ -116.770563194893171, 21.051233285167317 ], [ -116.770017642441729, 21.053855284649746 ], [ -116.767289880184492, 21.05667897640005 ], [ -116.764834894152969, 21.057687437739446 ], [ -116.751741635318226, 21.053855284649746 ], [ -116.747104439480921, 21.050426516095804 ], [ -116.744922229675126, 21.050426516095804 ], [ -116.740285033837822, 21.054056976917625 ], [ -116.738102824032026, 21.05688066866793 ], [ -116.734829509323347, 21.064343282579451 ], [ -116.735647838000517, 21.069587281544305 ], [ -116.738375600257754, 21.074629588241276 ], [ -116.738375600257754, 21.078058356795221 ], [ -116.737284495354857, 21.080075279474009 ], [ -116.701278033559305, 21.097420814511601 ], [ -116.693367523013308, 21.096210660904326 ], [ -116.669908767601044, 21.083100663492193 ], [ -116.655724403863402, 21.062931436704297 ], [ -116.648086669543133, 21.051636669703075 ], [ -116.646722788414522, 21.048006208881255 ], [ -116.646722788414522, 21.03913174909458 ], [ -116.647268340865963, 21.03751821095155 ], [ -116.658997718572095, 21.01432360014547 ], [ -116.664998795538025, 21.005247448090916 ], [ -116.670999872503941, 21.004844063555158 ], [ -116.677000949469871, 21.007264370769704 ], [ -116.696095285270545, 21.010491447055767 ], [ -116.697186390173442, 21.010088062520012 ], [ -116.701278033559305, 21.003835602215762 ], [ -116.701550809785019, 21.00040683366182 ], [ -116.700459704882135, 20.99274252748242 ], [ -116.698550271302068, 20.99012052799999 ], [ -116.694458627916205, 20.985884990374537 ], [ -116.683547578887243, 20.979229145534529 ], [ -116.671272648729669, 20.964908994515124 ], [ -116.669090438923874, 20.961480225961182 ], [ -116.668544886472432, 20.95966499555027 ], [ -116.670181543826772, 20.949983766692082 ], [ -116.671545424955397, 20.948571920816928 ], [ -116.673727634761178, 20.948773613084807 ], [ -116.675637068341246, 20.952807458442386 ], [ -116.677000949469871, 20.954824381121174 ], [ -116.684638683790141, 20.959059918746632 ], [ -116.701278033559305, 20.955429457924811 ], [ -116.70427857204227, 20.950185458959961 ], [ -116.72691899877735, 20.954017612049661 ], [ -116.735102285549061, 20.956236226996328 ], [ -116.738921152709196, 20.953614227513903 ], [ -116.743012796095059, 20.94816853628117 ], [ -116.747377215706649, 20.940907614637528 ], [ -116.754196621349735, 20.925780694546606 ], [ -116.765380446604425, 20.932033154850853 ], [ -116.779837586567794, 20.929814539904186 ], [ -116.780110362793508, 20.926789155885999 ], [ -116.792385292951082, 20.921746849189027 ], [ -116.798931922368467, 20.923763771867815 ], [ -116.802478013302874, 20.926184079082361 ], [ -116.808206314043076, 20.920536695581752 ], [ -116.833847279261121, 20.91105715899144 ], [ -116.839575580001323, 20.910048697652048 ], [ -116.852396062610353, 20.92255361826054 ], [ -116.879673685182738, 20.92880607856479 ], [ -116.901223007014934, 20.927192540421757 ], [ -116.909679070012373, 20.923562079599936 ], [ -116.913497937172508, 20.920133311045994 ], [ -116.91322516094678, 20.913679158473869 ], [ -116.934501706553249, 20.911863928062957 ], [ -116.936956692584758, 20.913275773938111 ], [ -116.950595503870957, 20.917713003831448 ], [ -116.981964769829204, 20.922755310528419 ], [ -116.986874741892237, 20.923158695064178 ], [ -116.988784175472304, 20.921545156921148 ], [ -116.98932972792376, 20.919931618778115 ], [ -116.994785252438234, 20.918318080635082 ], [ -116.999695224501266, 20.925175617742969 ], [ -116.995876357341132, 20.927595924957515 ], [ -116.96150655289992, 20.937075461547828 ], [ -116.951413832548127, 20.939495768762374 ], [ -116.945139979356483, 20.939899153298132 ], [ -116.940775559744893, 20.937478846083586 ], [ -116.941048335970621, 20.936873769279948 ], [ -116.939957231067723, 20.933646692993886 ], [ -116.934228930327521, 20.927797617225394 ], [ -116.921681223944219, 20.937882230619344 ], [ -116.908860741335204, 20.939092384226615 ], [ -116.908042412658034, 20.937680538351465 ], [ -116.904769097949341, 20.938890691958736 ], [ -116.893858048920379, 20.946353305870257 ], [ -116.890039181760244, 20.952404073906628 ], [ -116.89140306288887, 20.957042996067845 ], [ -116.88976640553453, 20.960673456889666 ], [ -116.885947538374396, 20.963900533175728 ], [ -116.875582041796889, 20.957042996067845 ], [ -116.868217083702334, 20.951193920299353 ], [ -116.85430549619042, 20.950387151227837 ], [ -116.819935691749208, 20.956639611532086 ], [ -116.806569656688737, 20.962690379568453 ], [ -116.797295265014114, 20.969951301212099 ], [ -116.794567502756877, 20.977010530587862 ], [ -116.794021950305435, 20.980035914606045 ], [ -116.786929768436607, 20.98649006717817 ], [ -116.77901925789061, 20.988305297589083 ], [ -116.770835971118899, 20.988708682124841 ], [ -116.768108208861662, 20.98669175944605 ], [ -116.759652145864223, 20.98265791408847 ], [ -116.757469936058428, 20.98265791408847 ], [ -116.754742173801191, 20.988305297589083 ], [ -116.755014950026919, 20.989313758928478 ], [ -116.76919931376456, 20.998994987786666 ], [ -116.770835971118899, 21.003835602215762 ], [ -116.76838098508739, 21.006457601698187 ], [ -116.754196621349735, 21.006054217162433 ], [ -116.743831124772228, 21.002625448608487 ], [ -116.735375061774789, 21.001616987269095 ], [ -116.72773732745452, 21.002827140876366 ], [ -116.715189621071218, 21.0159371382885 ], [ -116.717371830877013, 21.030458981575784 ], [ -116.729373984808859, 21.033080981058212 ] ] ], [ [ [ -116.542795046413701, 20.96732930172967 ], [ -116.539521731705022, 20.963295456372091 ], [ -116.518517962324282, 20.945344844530865 ], [ -116.513880766486977, 20.942924537316316 ], [ -116.506243032166708, 20.948773613084807 ], [ -116.481693171851546, 20.94413469092359 ], [ -116.481693171851546, 20.943327921852074 ], [ -116.480874843174377, 20.941512691441165 ], [ -116.476783199788514, 20.938285615155099 ], [ -116.445413933830267, 20.939495768762374 ], [ -116.428229031609661, 20.943126229584195 ], [ -116.415408549000631, 20.943126229584195 ], [ -116.41404466787202, 20.942117768244803 ], [ -116.410771353163327, 20.938083922887223 ], [ -116.399860304134378, 20.93647038474419 ], [ -116.387312597751077, 20.937075461547828 ], [ -116.371218800433368, 20.934655154333278 ], [ -116.371491576659082, 20.931428078047215 ], [ -116.390585912459755, 20.926184079082361 ], [ -116.394132003394176, 20.925579002278727 ], [ -116.410225800711885, 20.928604386296911 ], [ -116.436139542155658, 20.921948541456906 ], [ -116.464235493405212, 20.920335003313873 ], [ -116.49314977333195, 20.915292696616898 ], [ -116.516062976292758, 20.909040236312652 ], [ -116.525610144193095, 20.908233467241136 ], [ -116.543067822639429, 20.919124849706598 ], [ -116.571436550114711, 20.925579002278727 ], [ -116.59271309572118, 20.921948541456906 ], [ -116.597077515332771, 20.919729926510236 ], [ -116.598168620235668, 20.91730961929569 ], [ -116.600896382492905, 20.916099465688415 ], [ -116.619445165842123, 20.920738387849632 ], [ -116.629265109968188, 20.92497392547509 ], [ -116.62899233374246, 20.928402694029032 ], [ -116.639085054094252, 20.945143152262986 ], [ -116.644540578608726, 20.945748229066623 ], [ -116.646995564640235, 20.944538075459349 ], [ -116.649450550671759, 20.945143152262986 ], [ -116.65599718008913, 20.95200068937087 ], [ -116.659270494797823, 20.956639611532086 ], [ -116.660907152152163, 20.960471764621786 ], [ -116.660088823474993, 20.961681918229061 ], [ -116.657088284992028, 20.962892071836333 ], [ -116.642903921254387, 20.958656534210874 ], [ -116.618354060939225, 20.956639611532086 ], [ -116.602260263621517, 20.948975305352686 ], [ -116.60035083004145, 20.946756690406016 ], [ -116.59871417268711, 20.946353305870257 ], [ -116.594622529301247, 20.946756690406016 ], [ -116.573618759920507, 20.957244688335724 ], [ -116.556161081474173, 20.964303917711486 ], [ -116.548523347153903, 20.966925917193912 ], [ -116.542795046413701, 20.96732930172967 ] ] ], [ [ [ -118.915948210211781, 21.167811416001356 ], [ -118.921676510951983, 21.170635107751664 ], [ -118.924677049434933, 21.173660491769848 ], [ -118.928495916595068, 21.178904490734698 ], [ -118.932042007529489, 21.185358643306827 ], [ -118.9334058886581, 21.191207719075315 ], [ -118.933951441109556, 21.197863563915323 ], [ -118.9334058886581, 21.201292332469265 ], [ -118.931223678852319, 21.205326177826844 ], [ -118.926586483015001, 21.21016679225594 ], [ -118.920312629823357, 21.214200637613519 ], [ -118.917312091340392, 21.215410791220791 ], [ -118.910219909471579, 21.216419252560186 ], [ -118.905855489859988, 21.215209098952911 ], [ -118.899581636668344, 21.210973561327453 ], [ -118.895489993282482, 21.205326177826844 ], [ -118.892489454799517, 21.199880486594111 ], [ -118.890580021219449, 21.193829718557744 ], [ -118.891125573670905, 21.184148489699552 ], [ -118.892216678573789, 21.179912952074094 ], [ -118.894398888379584, 21.176282491252273 ], [ -118.896308321959651, 21.174063876305606 ], [ -118.903673280054193, 21.169626646412269 ], [ -118.907764923440055, 21.168214800537115 ], [ -118.915948210211781, 21.167811416001356 ] ] ], [ [ [ -116.289658708941914, 21.014121907877591 ], [ -116.287203722910391, 21.029450520236391 ], [ -116.276292673881443, 21.051233285167317 ], [ -116.274656016527103, 21.053048515578229 ], [ -116.250924484889111, 21.068780512472788 ], [ -116.244105079246012, 21.072410973294609 ], [ -116.232921253991336, 21.071200819687334 ], [ -116.211644708384867, 21.060107744953992 ], [ -116.207280288773291, 21.055468822792776 ], [ -116.204552526516053, 21.048812977952771 ], [ -116.204006974064598, 21.04296390218428 ], [ -116.206734736321835, 21.038526672290942 ], [ -116.232375701539894, 21.01835744550305 ], [ -116.261562757692346, 21.0082728321091 ], [ -116.282839303298815, 21.007869447573341 ], [ -116.28502151310461, 21.009079601180616 ], [ -116.289658708941914, 21.014121907877591 ] ] ], [ [ [ -119.282013905133269, 21.362041069968797 ], [ -119.284196114939064, 21.363452915843947 ], [ -119.287196653422029, 21.367688453469405 ], [ -119.291015520582164, 21.37656291325608 ], [ -119.290469968130708, 21.381201835417297 ], [ -119.281741128907541, 21.381605219953055 ], [ -119.270830079878593, 21.375957836452443 ], [ -119.267011212718458, 21.371117222023351 ], [ -119.27355784213583, 21.36123430089728 ], [ -119.282013905133269, 21.362041069968797 ] ] ], [ [ [ -119.872574433825548, 21.559497800222299 ], [ -119.861936161022314, 21.571599336295037 ], [ -119.847206244833217, 21.5709942594914 ], [ -119.833021881095576, 21.567363798669579 ], [ -119.824565818098137, 21.565145183722908 ], [ -119.823747489420967, 21.563935030115633 ], [ -119.824020265646695, 21.562523184240483 ], [ -119.828930237709727, 21.558489338882904 ], [ -119.833021881095576, 21.558085954347145 ], [ -119.842023496544471, 21.552438570846533 ], [ -119.845842363704605, 21.544572572399254 ], [ -119.847479021058945, 21.538723496630766 ], [ -119.847479021058945, 21.535093035808945 ], [ -119.845296811253149, 21.532672728594395 ], [ -119.845024035027436, 21.531260882719245 ], [ -119.843387377673082, 21.525613499218633 ], [ -119.84284182522164, 21.514117039949532 ], [ -119.843114601447368, 21.494351197697394 ], [ -119.862208937248042, 21.498788427590732 ], [ -119.863845594602381, 21.499595196662245 ], [ -119.864663923279551, 21.50080535026952 ], [ -119.872574433825548, 21.511696732734983 ], [ -119.874756643631343, 21.518957654378628 ], [ -119.876120524759955, 21.523596576539845 ], [ -119.88348548285451, 21.525411806950753 ], [ -119.887849902466087, 21.52238642293257 ], [ -119.896305965463526, 21.520772884789537 ], [ -119.903670923558067, 21.521781346128932 ], [ -119.908308119395386, 21.523394884271966 ], [ -119.910763105426895, 21.526420268290149 ], [ -119.925493021615992, 21.536303189416216 ], [ -119.927948007647501, 21.537513343023491 ], [ -119.935312965742042, 21.539126881166524 ], [ -119.935312965742042, 21.540135342505916 ], [ -119.927948007647501, 21.551026724971383 ], [ -119.911581434104065, 21.557682569811387 ], [ -119.909944776749725, 21.557884262079266 ], [ -119.904762028460965, 21.551631801775017 ], [ -119.902852594880898, 21.549816571364108 ], [ -119.896578741689254, 21.547799648685316 ], [ -119.890032112271882, 21.549816571364108 ], [ -119.888668231143257, 21.550421648167745 ], [ -119.882667154177327, 21.557279185275629 ], [ -119.882667154177327, 21.558691031150783 ], [ -119.88348548285451, 21.561716415168966 ], [ -119.880757720597259, 21.562724876508362 ], [ -119.872574433825548, 21.559497800222299 ] ] ], [ [ [ -115.942687349821085, 21.098630968118872 ], [ -115.943778454723983, 21.097420814511601 ], [ -115.945142335852609, 21.098025891315238 ], [ -115.948142874335574, 21.108917273780701 ], [ -115.948688426787015, 21.118396810371014 ], [ -115.947597321884118, 21.122228963460714 ], [ -115.943778454723983, 21.12848142376496 ], [ -115.940232363789576, 21.132111884586781 ], [ -115.933958510597932, 21.135742345408602 ], [ -115.918137489505938, 21.121623886657076 ], [ -115.91786471328021, 21.120615425317681 ], [ -115.920592475537461, 21.107102043369789 ], [ -115.921956356666072, 21.104480043887364 ], [ -115.927411881180547, 21.098429275850997 ], [ -115.931503524566409, 21.097824199047359 ], [ -115.942687349821085, 21.098630968118872 ] ] ], [ [ [ -115.827303006339875, 21.149457419624373 ], [ -115.826484677662705, 21.16922326187651 ], [ -115.82430246785691, 21.18475356650319 ], [ -115.82348413917974, 21.186165412378344 ], [ -115.801389264896102, 21.206939715969874 ], [ -115.787477677384189, 21.21561248348867 ], [ -115.777384957032396, 21.215410791220791 ], [ -115.762927817069027, 21.208351561845028 ], [ -115.758017845005995, 21.204922793291086 ], [ -115.756926740103097, 21.201695717005023 ], [ -115.755835635200214, 21.194434795361381 ], [ -115.757199516328825, 21.188989104128648 ], [ -115.76620113177772, 21.170635107751664 ], [ -115.774384418549431, 21.167609723733477 ], [ -115.780385495515361, 21.166802954661961 ], [ -115.7820221528697, 21.167408031465598 ], [ -115.783113257772598, 21.169828338680148 ], [ -115.784749915126937, 21.171240184555298 ], [ -115.787204901158461, 21.170635107751664 ], [ -115.79047821586714, 21.168819877340752 ], [ -115.80002538376749, 21.160348802089835 ], [ -115.80766311808776, 21.149659111892252 ], [ -115.809845327893541, 21.144213420659518 ], [ -115.812573090150778, 21.141188036641335 ], [ -115.827303006339875, 21.149457419624373 ] ] ], [ [ [ -119.737550202092208, 21.652881320250255 ], [ -119.731276348900565, 21.654898242929047 ], [ -119.730185243997667, 21.655301627464805 ], [ -119.7214564047745, 21.648645782624797 ], [ -119.718455866291535, 21.645418706338734 ], [ -119.716546432711468, 21.638561169230851 ], [ -119.716000880260026, 21.634527323873272 ], [ -119.71627365648574, 21.633922247069634 ], [ -119.728548586643313, 21.637956092427213 ], [ -119.737550202092208, 21.644813629535097 ], [ -119.738368530769378, 21.651267782107226 ], [ -119.737550202092208, 21.652881320250255 ] ] ], [ [ [ -115.659545627519663, 21.258169552011132 ], [ -115.648634578490714, 21.259581397886283 ], [ -115.630631347592924, 21.253328937582037 ], [ -115.628176361561415, 21.251312014903245 ], [ -115.627630809109974, 21.246471400474153 ], [ -115.627903585335687, 21.240420632437782 ], [ -115.630904123818652, 21.230336019043836 ], [ -115.63281355739872, 21.228520788632924 ], [ -115.642087949073328, 21.226302173686257 ], [ -115.656817865262425, 21.226503865954136 ], [ -115.66063673242256, 21.228520788632924 ], [ -115.661182284874002, 21.229125865436561 ], [ -115.659545627519663, 21.258169552011132 ] ] ], [ [ [ -119.754735104312815, 21.649452551696314 ], [ -119.762372838633084, 21.655906704268439 ], [ -119.764827824664607, 21.660747318697535 ], [ -119.766464482018947, 21.66578962539451 ], [ -119.765918929567491, 21.667403163537543 ], [ -119.758553971472949, 21.664579471787235 ], [ -119.753643999409917, 21.661150703233293 ], [ -119.749825132249782, 21.653486397053893 ], [ -119.754735104312815, 21.649452551696314 ] ] ], [ [ [ -119.771647230307693, 21.666394702198147 ], [ -119.771920006533421, 21.668209932609056 ], [ -119.773283887662046, 21.66962177848421 ], [ -119.781194398208029, 21.670630239823605 ], [ -119.78555881781962, 21.677084392395731 ], [ -119.788559356302585, 21.683336852699981 ], [ -119.786922698948231, 21.683740237235739 ], [ -119.783376608013825, 21.682933468164222 ], [ -119.77955774085369, 21.680513160949673 ], [ -119.771374454081979, 21.672243777966635 ], [ -119.769465020501912, 21.668411624876935 ], [ -119.771647230307693, 21.666394702198147 ] ] ], [ [ [ -120.064336120509466, 21.775106834584907 ], [ -120.061881134477943, 21.786603293854007 ], [ -120.061335582026501, 21.793460830961891 ], [ -120.063517791832282, 21.801125137141291 ], [ -120.089704309501784, 21.831177285055258 ], [ -120.103888673239425, 21.832790823198287 ], [ -120.113435841139761, 21.831782361858895 ], [ -120.122983009040098, 21.829967131447983 ], [ -120.133621281843332, 21.835614514948595 ], [ -120.13471238674623, 21.843682205663754 ], [ -120.088067652147444, 21.86768358554135 ], [ -120.084521561213023, 21.868490354612863 ], [ -120.058062267317808, 21.864658201523163 ], [ -119.968046112828915, 21.833395900001925 ], [ -119.964500021894509, 21.831177285055258 ], [ -119.962317812088713, 21.829160362376467 ], [ -119.95604395889707, 21.821092671661308 ], [ -119.953588972865546, 21.813831750017666 ], [ -119.944587357416665, 21.801528521677049 ], [ -119.938586280450735, 21.801931906212808 ], [ -119.934494637064873, 21.80132682940917 ], [ -119.924129140487366, 21.790435446943707 ], [ -119.896578741689254, 21.744046225331545 ], [ -119.895760413012084, 21.736785303687903 ], [ -119.896851517914982, 21.735978534616386 ], [ -119.899579280172219, 21.736381919152144 ], [ -119.927948007647501, 21.741020841313361 ], [ -119.932039651033364, 21.744247917599424 ], [ -119.944587357416665, 21.760988375833378 ], [ -119.945951238545277, 21.761391760369136 ], [ -119.951133986834037, 21.759173145422469 ], [ -119.956316735122783, 21.751912223778827 ], [ -119.961499483411544, 21.740012379973969 ], [ -119.963681693217339, 21.736180226884265 ], [ -119.970228322634711, 21.733356535133961 ], [ -119.972410532440506, 21.732953150598203 ], [ -119.976502175826354, 21.733961611937598 ], [ -120.006234784430262, 21.74747499388549 ], [ -120.032148525874035, 21.736785303687903 ], [ -120.054516176383402, 21.755946069136407 ], [ -120.064336120509466, 21.775106834584907 ] ] ], [ [ [ -115.602808172569098, 21.295079237032979 ], [ -115.592715452217305, 21.291650468479038 ], [ -115.580986074511173, 21.294272467961466 ], [ -115.570893354159395, 21.303953696819654 ], [ -115.559709528904719, 21.311618002999055 ], [ -115.553435675713061, 21.311214618463296 ], [ -115.541706298006929, 21.308189234445113 ], [ -115.530795248977981, 21.298306313319046 ], [ -115.533795787460946, 21.280557393745696 ], [ -115.537887430846794, 21.265027089119016 ], [ -115.549616808552926, 21.263211858708104 ], [ -115.57389389264236, 21.275111702512962 ], [ -115.584532165445594, 21.274304933441449 ], [ -115.586168822799934, 21.270674472619628 ], [ -115.588623808831443, 21.267649088601441 ], [ -115.596261543151712, 21.263010166440225 ], [ -115.602262620117642, 21.260993243761437 ], [ -115.605263158600607, 21.261598320565074 ], [ -115.614264774049502, 21.268254165405079 ], [ -115.619720298563976, 21.280557393745696 ], [ -115.618356417435351, 21.288020007657217 ], [ -115.614810326500944, 21.292457237550554 ], [ -115.611264235566537, 21.293869083425708 ], [ -115.602808172569098, 21.295079237032979 ] ] ], [ [ [ -115.168821197442341, 21.494754582233153 ], [ -115.172912840828204, 21.493947813161636 ], [ -115.183551113631438, 21.487695352857386 ], [ -115.189552190597354, 21.480232738945865 ], [ -115.193098281531775, 21.474383663177377 ], [ -115.199372134723419, 21.460466896693728 ], [ -115.198826582271977, 21.446146745674323 ], [ -115.205100435463621, 21.433440132797948 ], [ -115.209737631300925, 21.430818133315523 ], [ -115.214374827138229, 21.424565673011273 ], [ -115.219284799201262, 21.416497982296114 ], [ -115.221194232781329, 21.412464136938535 ], [ -115.222830890135683, 21.40742183024156 ], [ -115.223649218812852, 21.39834567818701 ], [ -115.233196386713189, 21.388462757060939 ], [ -115.24056134480773, 21.384832296239118 ], [ -115.245471316870763, 21.385235680774876 ], [ -115.247653526676558, 21.386849218917909 ], [ -115.25420015609393, 21.385033988506997 ], [ -115.256382365899725, 21.383622142631843 ], [ -115.262383442865641, 21.374747682845172 ], [ -115.264838428897164, 21.369705376148197 ], [ -115.279841121311975, 21.354175071521517 ], [ -115.293207156372446, 21.346712457609996 ], [ -115.309573729915883, 21.3342075370015 ], [ -115.333305261553861, 21.313433233409967 ], [ -115.366583961092175, 21.291448776211158 ], [ -115.381859429732714, 21.283784470031758 ], [ -115.370948380703766, 21.302541850944504 ], [ -115.367129513543631, 21.305567234962687 ], [ -115.355127359611771, 21.307785849909354 ], [ -115.349944611323025, 21.310004464856025 ], [ -115.34694407284006, 21.314038310213604 ], [ -115.324849198556421, 21.353166610182122 ], [ -115.308482625012985, 21.389874602936093 ], [ -115.304118205401409, 21.40217783127671 ], [ -115.303299876724225, 21.407220137973681 ], [ -115.30630041520719, 21.412867521474293 ], [ -115.308482625012985, 21.414682751885206 ], [ -115.312028715947392, 21.416094597760356 ], [ -115.315574806881813, 21.419321674046422 ], [ -115.316938688010424, 21.424767365279152 ], [ -115.316393135558982, 21.436062132280373 ], [ -115.315029254430357, 21.441709515780985 ], [ -115.314483701978915, 21.443928130727652 ], [ -115.308755401238713, 21.45461782092524 ], [ -115.274112820571773, 21.492535967286482 ], [ -115.253654603642474, 21.488905506464661 ], [ -115.249835736482339, 21.489510583268299 ], [ -115.244107435742137, 21.492132582750724 ], [ -115.241652449710628, 21.49535965903679 ], [ -115.229650295778782, 21.496368120376182 ], [ -115.221194232781329, 21.49314104409012 ], [ -115.208919302623755, 21.490922429143453 ], [ -115.20755542149513, 21.491124121411332 ], [ -115.203463778109281, 21.495964735840424 ], [ -115.211101512429551, 21.517747500771353 ], [ -115.213010946009618, 21.521176269325295 ], [ -115.214102050912516, 21.521781346128932 ], [ -115.223376442587124, 21.534689651273187 ], [ -115.222012561458513, 21.574624720313221 ], [ -115.212465393558162, 21.595802408440509 ], [ -115.20591876414079, 21.598827792458696 ], [ -115.201008792077758, 21.602458253280517 ], [ -115.187915533243014, 21.616980096567801 ], [ -115.187642757017286, 21.618593634710834 ], [ -115.178368365342678, 21.624644402747201 ], [ -115.164729554056478, 21.630493478515692 ], [ -115.129541420938097, 21.641788245516913 ], [ -115.123267567746453, 21.64017470737388 ], [ -115.118084819457692, 21.636745938819939 ], [ -115.117539267006251, 21.636140862016301 ], [ -115.11835759568342, 21.631703632122964 ], [ -115.118084819457692, 21.629686709444176 ], [ -115.110719861363151, 21.624442710479322 ], [ -115.100899917237086, 21.621820710996897 ], [ -115.097626602528393, 21.621619018729017 ], [ -115.078805042953448, 21.621820710996897 ], [ -115.073895070890416, 21.62343424913993 ], [ -115.072258413536076, 21.623635941407809 ], [ -115.07171286108462, 21.622829172336292 ], [ -115.070894532407451, 21.620207172853863 ], [ -115.069530651278839, 21.614358097085375 ], [ -115.070348979956009, 21.610122559459917 ], [ -115.074440623341872, 21.601248099673242 ], [ -115.082896686339311, 21.591566870815054 ], [ -115.084806119919378, 21.587533025457475 ], [ -115.085897224822276, 21.58390256463565 ], [ -115.085078896145092, 21.579465334742316 ], [ -115.083442238790752, 21.57623825845625 ], [ -115.081260028984957, 21.574423028045342 ], [ -115.079623371630618, 21.571195951759279 ], [ -115.079077819179176, 21.563733337847754 ], [ -115.07935059540489, 21.560102877025933 ], [ -115.081532805210685, 21.556069031668354 ], [ -115.086170001047989, 21.550825032703504 ], [ -115.087533882176615, 21.550421648167745 ], [ -115.107446546654458, 21.53771503529137 ], [ -115.114538728523286, 21.531664267255 ], [ -115.11917592436059, 21.525613499218633 ], [ -115.126540882455132, 21.519159346646507 ], [ -115.155727938607598, 21.50080535026952 ], [ -115.168821197442341, 21.494754582233153 ] ] ], [ [ [ -115.618083641209637, 21.308996003516629 ], [ -115.618356417435351, 21.305567234962687 ], [ -115.618901969886807, 21.303752004551775 ], [ -115.622175284595485, 21.298911390122683 ], [ -115.630631347592924, 21.292860622086312 ], [ -115.642906277750512, 21.298911390122683 ], [ -115.648361802264986, 21.308189234445113 ], [ -115.648634578490714, 21.313433233409967 ], [ -115.643997382653396, 21.321500924125125 ], [ -115.641815172847615, 21.323517846803913 ], [ -115.632268004947278, 21.323921231339671 ], [ -115.62517582307845, 21.320895847321488 ], [ -115.619993074789704, 21.317668771035425 ], [ -115.618083641209637, 21.314038310213604 ], [ -115.618083641209637, 21.308996003516629 ] ] ], [ [ [ -115.548252927424301, 21.336627844216046 ], [ -115.553708451938789, 21.338644766894838 ], [ -115.558618424001821, 21.34590568853848 ], [ -115.559436752678991, 21.347922611217268 ], [ -115.560255081356161, 21.350947995235455 ], [ -115.557527319098924, 21.371318914291226 ], [ -115.556708990421754, 21.372529067898501 ], [ -115.545525165167064, 21.377369682327597 ], [ -115.540887969329759, 21.378176451399113 ], [ -115.536523549718183, 21.372932452434259 ], [ -115.535977997266727, 21.371722298826985 ], [ -115.535705221041013, 21.360427531825763 ], [ -115.542797402909827, 21.34207353544878 ], [ -115.548252927424301, 21.336627844216046 ] ] ], [ [ [ -114.823213719450138, 21.86385143245165 ], [ -114.810666013066836, 21.871314046363171 ], [ -114.802209950069397, 21.870507277291654 ], [ -114.80030051648933, 21.869498815952259 ], [ -114.795390544426297, 21.864658201523163 ], [ -114.789389467460381, 21.856993895343763 ], [ -114.785025047848791, 21.8461025128783 ], [ -114.789389467460381, 21.843682205663754 ], [ -114.79348111084623, 21.842673744324358 ], [ -114.798118306683534, 21.828151901037074 ], [ -114.795936096877753, 21.823109594340099 ], [ -114.789662243686095, 21.814638519089183 ], [ -114.783388390494451, 21.810604673731603 ], [ -114.777660089754249, 21.808789443320691 ], [ -114.773841222594115, 21.808789443320691 ], [ -114.756110767922053, 21.817663903107366 ], [ -114.745472495118818, 21.825126517018887 ], [ -114.744108613990207, 21.828353593304954 ], [ -114.743835837764479, 21.830370515983741 ], [ -114.746290823795988, 21.846707589681937 ], [ -114.732924788735517, 21.87312927677408 ], [ -114.731288131381177, 21.872725892238321 ], [ -114.728287592898212, 21.869700508220138 ], [ -114.727469264221043, 21.868288662344987 ], [ -114.727196487995315, 21.866675124201954 ], [ -114.72774204044677, 21.858002356683158 ], [ -114.716558215192094, 21.850741435039517 ], [ -114.707283823517471, 21.862036202040738 ], [ -114.703464956357337, 21.859817587094071 ], [ -114.687371159039628, 21.840455129377688 ], [ -114.686552830362459, 21.8384382066989 ], [ -114.686280054136731, 21.83057220825162 ], [ -114.690917249974035, 21.815646980428578 ], [ -114.694463340908456, 21.813226673214029 ], [ -114.711648243129062, 21.808587751052812 ], [ -114.719285977449331, 21.802940367552203 ], [ -114.727469264221043, 21.790032062407949 ], [ -114.730469802704008, 21.779140679942486 ], [ -114.737289208347107, 21.773291604173995 ], [ -114.763748502242322, 21.748685147492761 ], [ -114.763748502242322, 21.739003918634573 ], [ -114.760202411307915, 21.733356535133961 ], [ -114.743017509087309, 21.743844533063669 ], [ -114.741108075507242, 21.748685147492761 ], [ -114.731833683832633, 21.756954530475799 ], [ -114.711648243129062, 21.770064527887932 ], [ -114.703192180131623, 21.772686527370357 ], [ -114.681370082073698, 21.786199909318249 ], [ -114.682188410750882, 21.787813447461282 ], [ -114.681915634525154, 21.791242216015224 ], [ -114.678915096042189, 21.795276061372803 ], [ -114.659820760241516, 21.805562367034629 ], [ -114.657911326661448, 21.80515898249887 ], [ -114.653546907049872, 21.800923444873412 ], [ -114.652183025921246, 21.798704829926745 ], [ -114.653274130824144, 21.769459451084295 ], [ -114.66527628475599, 21.748281762957003 ], [ -114.673186795301987, 21.744852994403061 ], [ -114.688189487716798, 21.732549766062444 ], [ -114.688462263942526, 21.729927766580019 ], [ -114.690371697522593, 21.724683767615165 ], [ -114.692553907328389, 21.723070229472135 ], [ -114.731560907606905, 21.699875618666056 ], [ -114.737834760798549, 21.702295925880602 ], [ -114.753655781890544, 21.693623158361806 ], [ -114.75883853017929, 21.689992697539985 ], [ -114.760747963759357, 21.646225475410251 ], [ -114.777932865979977, 21.62484609501508 ], [ -114.779296747108589, 21.623837633675684 ], [ -114.780933404462928, 21.624039325943563 ], [ -114.792935558394788, 21.629081632640538 ], [ -114.799209411586432, 21.63251040119448 ], [ -114.801937173843669, 21.63634255428418 ], [ -114.808483803261055, 21.62726640222963 ], [ -114.810393236841122, 21.606693790905975 ], [ -114.829214796416068, 21.601248099673242 ], [ -114.832215334899033, 21.594390562565358 ], [ -114.844217488830878, 21.599029484726575 ], [ -114.854582985408385, 21.605281945030821 ], [ -114.862220719728654, 21.592171947618688 ], [ -114.873950097434786, 21.601046407405363 ], [ -114.877223412143479, 21.600643022869605 ], [ -114.876950635917751, 21.593180408958084 ], [ -114.882951712883681, 21.588944871332625 ], [ -114.891953328332562, 21.584709333707167 ], [ -114.895499419266983, 21.588541486796867 ], [ -114.89822718152422, 21.588743179064746 ], [ -114.9140482026162, 21.574423028045342 ], [ -114.935870300674111, 21.557279185275629 ], [ -114.937506958028465, 21.544572572399254 ], [ -114.938598062931362, 21.543160726524103 ], [ -114.948963559508869, 21.542152265184708 ], [ -114.959329056086375, 21.544975956935012 ], [ -114.972695091146846, 21.535093035808945 ], [ -114.977605063209879, 21.522991499736207 ], [ -114.981969482821455, 21.510083194591953 ], [ -114.989061664690283, 21.509276425520437 ], [ -114.993426084301859, 21.512705194074378 ], [ -114.995608294107655, 21.513511963145895 ], [ -115.009247105393854, 21.517949193039232 ], [ -115.011429315199649, 21.517344116235595 ], [ -115.0144298536826, 21.515932270360441 ], [ -115.015793734811226, 21.499595196662245 ], [ -115.021522035551428, 21.499393504394369 ], [ -115.063256798087181, 21.513108578610137 ], [ -115.073349518438974, 21.519562731182262 ], [ -115.077986714276278, 21.523596576539845 ], [ -115.07853226672772, 21.526823652825907 ], [ -115.063529574312909, 21.536908266219854 ], [ -115.044980790963677, 21.559497800222299 ], [ -115.041161923803543, 21.562724876508362 ], [ -115.030523651000323, 21.565346875990787 ], [ -115.022340364228597, 21.562523184240483 ], [ -114.989334440916011, 21.580473796081709 ], [ -114.986333902433046, 21.586121179582321 ], [ -114.986333902433046, 21.589146563600504 ], [ -114.982515035272911, 21.591566870815054 ], [ -114.965875685503747, 21.591163486279296 ], [ -114.960420160989273, 21.588138102261109 ], [ -114.955237412700512, 21.584507641439288 ], [ -114.949781888186038, 21.588944871332625 ], [ -114.947326902154515, 21.597617638851421 ], [ -114.943235258768667, 21.604676868227184 ], [ -114.938052510479906, 21.610929328531434 ], [ -114.935324748222669, 21.610727636263555 ], [ -114.924140922967993, 21.607097175441734 ], [ -114.92168593693647, 21.60568532956658 ], [ -114.917048741099165, 21.604878560495063 ], [ -114.915684859970554, 21.606693790905975 ], [ -114.908319901875998, 21.624442710479322 ], [ -114.894408314364085, 21.630493478515692 ], [ -114.896590524169881, 21.642393322320551 ], [ -114.903409929812966, 21.645015321802976 ], [ -114.904773810941592, 21.646830552213888 ], [ -114.914320978841928, 21.672042085698756 ], [ -114.915139307519098, 21.67567254652058 ], [ -114.914320978841928, 21.67728608466361 ], [ -114.909956559230352, 21.682126699092706 ], [ -114.901773272458627, 21.685353775378768 ], [ -114.897681629072764, 21.685958852182406 ], [ -114.895499419266983, 21.682731775896343 ], [ -114.89140777588112, 21.679908084146035 ], [ -114.889498342301053, 21.680109776413914 ], [ -114.876677859692023, 21.687975774861194 ], [ -114.876677859692023, 21.69120285114726 ], [ -114.87940562194926, 21.694026542897564 ], [ -114.882678936657953, 21.696245157844231 ], [ -114.894135538138357, 21.701085772273327 ], [ -114.894135538138357, 21.711372077935156 ], [ -114.89222610455829, 21.716817769167886 ], [ -114.888407237398155, 21.721254999061223 ], [ -114.884042817786579, 21.725087152150923 ], [ -114.878041740820649, 21.726902382561835 ], [ -114.858674628794247, 21.728717612972744 ], [ -114.851309670699706, 21.728314228436986 ], [ -114.839853069219302, 21.708548386184848 ], [ -114.839853069219302, 21.701489156809085 ], [ -114.832215334899033, 21.701085772273327 ], [ -114.825668705481661, 21.705523002166665 ], [ -114.821849838321526, 21.730734535651536 ], [ -114.824577600578763, 21.737793765027298 ], [ -114.842853607702267, 21.742634379456394 ], [ -114.866312363114517, 21.751508839243069 ], [ -114.871222335177549, 21.754735915529132 ], [ -114.875041202337684, 21.753727454189736 ], [ -114.876677859692023, 21.751710531510948 ], [ -114.878860069497819, 21.74747499388549 ], [ -114.881587831755056, 21.744046225331545 ], [ -114.884588370238021, 21.74364284079579 ], [ -114.886770580043816, 21.744651302135182 ], [ -114.901227720007185, 21.757357915011557 ], [ -114.92004927958213, 21.775308526852786 ], [ -114.921958713162198, 21.793864215497649 ], [ -114.903682706038694, 21.82452144021525 ], [ -114.897681629072764, 21.831984054126774 ], [ -114.873404544983345, 21.847917743289212 ], [ -114.861129614825757, 21.854573588129217 ], [ -114.845581369959504, 21.857800664415279 ], [ -114.829760348867509, 21.869498815952259 ], [ -114.828396467738898, 21.869902200488017 ], [ -114.827305362836, 21.86929712368438 ], [ -114.823213719450138, 21.86385143245165 ] ] ], [ [ [ -115.624630270627009, 23.053432428401756 ], [ -115.618901969886807, 23.055247658812668 ], [ -115.613719221598046, 23.054642582009031 ], [ -115.604990382374879, 23.050407044383572 ], [ -115.604717606149165, 23.049196890776297 ], [ -115.608809249535014, 23.041935969132656 ], [ -115.626539704207076, 23.02156505007688 ], [ -115.629813018915755, 23.019749819665968 ], [ -115.643997382653396, 23.021968434612639 ], [ -115.646179592459191, 23.022775203684155 ], [ -115.648089026039258, 23.024187049559306 ], [ -115.650816788296495, 23.027615818113247 ], [ -115.652180669425121, 23.030641202131434 ], [ -115.651907893199393, 23.033666586149618 ], [ -115.653271774328019, 23.038708892846593 ], [ -115.6554539841338, 23.041129200061139 ], [ -115.672911662580134, 23.044961353150839 ], [ -115.680822173126131, 23.05484427427691 ], [ -115.681913278029029, 23.057062889223577 ], [ -115.675639424837371, 23.058474735098731 ], [ -115.654908431682358, 23.054440889741151 ], [ -115.638541858138922, 23.05242396706236 ], [ -115.624630270627009, 23.053432428401756 ] ] ], [ [ [ -115.812027537699336, 23.295664842124388 ], [ -115.813391418827962, 23.303530840571668 ], [ -115.816664733536641, 23.308169762732881 ], [ -115.821847481825401, 23.308976531804397 ], [ -115.830030768597112, 23.308573147268639 ], [ -115.845033461011923, 23.310993454483189 ], [ -115.845579013463379, 23.314825607572889 ], [ -115.845306237237651, 23.325313605502593 ], [ -115.844760684786209, 23.325918682306231 ], [ -115.841214593851788, 23.330154219931689 ], [ -115.838214055368837, 23.332171142610477 ], [ -115.824575244082638, 23.337415141575331 ], [ -115.819938048245334, 23.338221910646848 ], [ -115.815028076182301, 23.334994834360785 ], [ -115.809299775442099, 23.334389757557148 ], [ -115.802753146024727, 23.336204987968056 ], [ -115.784477138901224, 23.343264217343823 ], [ -115.781749376643972, 23.340238833325635 ], [ -115.785568243804121, 23.320472991073498 ], [ -115.812027537699336, 23.295664842124388 ] ] ], [ [ [ -112.193650903471593, 23.121806107212723 ], [ -112.180830420862563, 23.124629798963028 ], [ -112.178102658605326, 23.12019256906969 ], [ -112.176466001250986, 23.113940108765444 ], [ -112.178648211056782, 23.09719965053149 ], [ -112.169919371833615, 23.080660884565415 ], [ -112.168282714479261, 23.071584732510861 ], [ -112.171010476736512, 23.057869658295093 ], [ -112.175920448799531, 23.055852735616302 ], [ -112.187104274054221, 23.061096734581156 ], [ -112.203743623823371, 23.055852735616302 ], [ -112.206744162306336, 23.058474735098731 ], [ -112.216564106432401, 23.076627039207835 ], [ -112.215745777755231, 23.081265961369052 ], [ -112.199379204211795, 23.098409804138765 ], [ -112.19637866572883, 23.114948570104836 ], [ -112.193650903471593, 23.121806107212723 ] ] ], [ [ [ -111.969974398377985, 23.485457266198488 ], [ -111.966428307443564, 23.481625113108787 ], [ -111.965337202540667, 23.47960819043 ], [ -111.965064426314953, 23.477792960019087 ], [ -111.97379326553812, 23.466699885285745 ], [ -111.992614825113066, 23.447337427569366 ], [ -112.001889216787674, 23.441286659532995 ], [ -112.014164146945248, 23.427773277585104 ], [ -112.020438000136906, 23.417285279655399 ], [ -112.024529643522769, 23.409015896672361 ], [ -112.026166300877108, 23.402763436368115 ], [ -112.031621825391582, 23.391872053902652 ], [ -112.032985706520208, 23.390460208027498 ], [ -112.038441231034682, 23.389048362152344 ], [ -112.041168993291919, 23.389855131223861 ], [ -112.045260636677781, 23.392275438438407 ], [ -112.048533951386474, 23.395300822456594 ], [ -112.050988937417983, 23.398729591010536 ], [ -112.051807266095153, 23.401754975028719 ], [ -112.047715622709291, 23.415873433780249 ], [ -112.042260098194816, 23.433218968817837 ], [ -112.03707734990607, 23.446127273962091 ], [ -112.004344202819198, 23.490902957431221 ], [ -112.002161993013402, 23.493121572377888 ], [ -111.999707006981879, 23.493726649181525 ], [ -111.983885985889899, 23.495541879592437 ], [ -111.97379326553812, 23.491306341966979 ], [ -111.970519950829427, 23.489289419288188 ], [ -111.969156069700801, 23.487474188877279 ], [ -111.969974398377985, 23.485457266198488 ] ] ], [ [ [ -111.857317817153998, 23.504819723914867 ], [ -111.851862292639524, 23.509256953808205 ], [ -111.843133453416357, 23.511677261022754 ], [ -111.84040569115912, 23.508651877004567 ], [ -111.839041810030494, 23.505828185254263 ], [ -111.841769572287745, 23.496752033199709 ], [ -111.854590054896761, 23.481221728573029 ], [ -111.86386444657137, 23.476582806411812 ], [ -111.894142607626733, 23.46952357703605 ], [ -111.900143684592649, 23.470128653839687 ], [ -111.905326432881409, 23.469725269303929 ], [ -111.912691390975951, 23.465288039410591 ], [ -111.919783572844779, 23.458430502302708 ], [ -111.93833235619401, 23.459438963642103 ], [ -111.948425076545789, 23.460850809517254 ], [ -111.949788957674414, 23.461455886320891 ], [ -111.954698929737447, 23.466901577553624 ], [ -111.956608363317514, 23.474364191465146 ], [ -111.953880601060263, 23.485053881662729 ], [ -111.948970628997245, 23.49634864866395 ], [ -111.94515176183711, 23.501996032164563 ], [ -111.935604593936773, 23.510668799683359 ], [ -111.931240174325183, 23.513492491433663 ], [ -111.927694083390776, 23.512887414630026 ], [ -111.92633020226215, 23.511878953290633 ], [ -111.920874677747676, 23.511475568754875 ], [ -111.909963628718714, 23.516719567719726 ], [ -111.905053656655681, 23.521358489880942 ], [ -111.9028714468499, 23.522366951220338 ], [ -111.900962013269833, 23.522770335756096 ], [ -111.899325355915479, 23.521761874416701 ], [ -111.896052041206801, 23.517324644523363 ], [ -111.893869831401005, 23.511273876486996 ], [ -111.892233174046666, 23.508651877004567 ], [ -111.881322125017704, 23.498163879074863 ], [ -111.876957705406127, 23.497155417735467 ], [ -111.872866062020265, 23.497962186806983 ], [ -111.857317817153998, 23.504819723914867 ] ] ], [ [ [ -111.64046071770349, 24.153260365145726 ], [ -111.629549668674528, 24.162538209468156 ], [ -111.627094682643019, 24.165765285754219 ], [ -111.619729724548478, 24.162739901736035 ], [ -111.61181921400248, 24.145192674430568 ], [ -111.612091990228208, 24.139746983197835 ], [ -111.61263754267965, 24.137931752786923 ], [ -111.616729186065513, 24.134099599697223 ], [ -111.618365843419852, 24.134502984232981 ], [ -111.618911395871294, 24.136318214643893 ], [ -111.621366381902817, 24.138335137322681 ], [ -111.627367458868747, 24.138133445054802 ], [ -111.641824598832102, 24.134301291965102 ], [ -111.645916242217965, 24.129057293000251 ], [ -111.646734570895134, 24.12704037032146 ], [ -111.650007885603827, 24.114333757445085 ], [ -111.649462333152371, 24.112518527034176 ], [ -111.636369074317628, 24.090735762103247 ], [ -111.629004116223086, 24.08609683994203 ], [ -111.621639158128545, 24.096786530139617 ], [ -111.621093605677089, 24.097391606943255 ], [ -111.619729724548478, 24.096383145603859 ], [ -111.622730263031428, 24.075407149744446 ], [ -111.626003577740121, 24.057658230171096 ], [ -111.627094682643019, 24.054834538420792 ], [ -111.626821906417291, 24.053624384813517 ], [ -111.624366920385782, 24.052414231206246 ], [ -111.619184172097022, 24.051809154402608 ], [ -111.616456409839785, 24.053826077081396 ], [ -111.61263754267965, 24.061893767796555 ], [ -111.609637004196685, 24.064717459546863 ], [ -111.604454255907939, 24.068952997172321 ], [ -111.595725416684772, 24.073390227065659 ], [ -111.582904934075742, 24.078029149226872 ], [ -111.562446717146443, 24.082466379120209 ], [ -111.558082297534867, 24.082869763655967 ], [ -111.555627311503343, 24.081659610048693 ], [ -111.554263430374732, 24.069759766243834 ], [ -111.554263430374732, 24.065524228618379 ], [ -111.569811675240999, 24.034261927097138 ], [ -111.576085528432642, 24.028009466792891 ], [ -111.577722185786996, 24.012680854434091 ], [ -111.577722185786996, 24.004008086915295 ], [ -111.575267199755473, 23.992309935378316 ], [ -111.581813829172845, 23.984040552395278 ], [ -111.595725416684772, 23.984040552395278 ], [ -111.616183633614057, 23.987065936413462 ], [ -111.618911395871294, 23.976779630751636 ], [ -111.633368535834663, 23.981015168377091 ], [ -111.642642927509286, 23.988276090020737 ], [ -111.653281200312506, 23.984443936931036 ], [ -111.656827291246927, 23.982225321984366 ], [ -111.662282815761401, 23.982225321984366 ], [ -111.671284431210296, 23.985654090538308 ], [ -111.672375536113179, 23.986864244145583 ], [ -111.672921088564635, 23.989889628163766 ], [ -111.674284969693247, 23.992309935378316 ], [ -111.680558822884905, 23.996343780735895 ], [ -111.686559899850835, 23.994125165789224 ], [ -111.692288200591037, 23.988074397752857 ], [ -111.694743186622546, 23.98746932094922 ], [ -111.698834830008408, 23.987671013217099 ], [ -111.702653697168543, 23.989284551360129 ], [ -111.714655851100389, 23.990293012699524 ], [ -111.728294662386588, 23.991503166306799 ], [ -111.731840753320995, 23.990696397235283 ], [ -111.733477410675349, 23.986259167341945 ], [ -111.733477410675349, 23.985250706002553 ], [ -111.72802188616086, 23.981015168377091 ], [ -111.725566900129351, 23.981418552912849 ], [ -111.721748032969217, 23.984040552395278 ], [ -111.712746417520322, 23.979401630234062 ], [ -111.679467717982007, 23.973754246733449 ], [ -111.673739417241805, 23.970527170447387 ], [ -111.667465564050161, 23.965283171482533 ], [ -111.653281200312506, 23.959232403446165 ], [ -111.642370151283558, 23.95822394210677 ], [ -111.639642389026321, 23.957013788499495 ], [ -111.632822983383221, 23.949551174587974 ], [ -111.632004654706051, 23.941080099337057 ], [ -111.632822983383221, 23.921314257084919 ], [ -111.636914626769084, 23.911229643690973 ], [ -111.643461256186455, 23.899128107618235 ], [ -111.645643465992237, 23.896102723600052 ], [ -111.646734570895134, 23.896707800403689 ], [ -111.662828368212843, 23.898523030814598 ], [ -111.665010578018638, 23.893077339581865 ], [ -111.670466102533112, 23.884807956598827 ], [ -111.6895604383338, 23.892472262778231 ], [ -111.694197634171104, 23.896909492671568 ], [ -111.69856205378268, 23.90578395245824 ], [ -111.71820194203481, 23.908405951940669 ], [ -111.723657466549284, 23.906994106065515 ], [ -111.733750186901062, 23.899531492153994 ], [ -111.738387382738381, 23.894892569992777 ], [ -111.74166069744706, 23.88884180195641 ], [ -111.744388459704297, 23.881782572580644 ], [ -111.739478487641264, 23.878152111758823 ], [ -111.738387382738381, 23.878353804026702 ], [ -111.725566900129351, 23.884606264330952 ], [ -111.721202480517775, 23.887631648349135 ], [ -111.720929704292047, 23.88884180195641 ], [ -111.720111375614877, 23.88884180195641 ], [ -111.708381997908745, 23.883597802991556 ], [ -111.69938038245985, 23.874723343204881 ], [ -111.698834830008408, 23.873714881865485 ], [ -111.699925934911306, 23.869882728775785 ], [ -111.708927550360187, 23.859193038578201 ], [ -111.720929704292047, 23.848503348380618 ], [ -111.725566900129351, 23.84567965663031 ], [ -111.736750725384027, 23.843259349415764 ], [ -111.746297893284364, 23.843259349415764 ], [ -111.748207326864431, 23.844469503023038 ], [ -111.755845061184701, 23.843259349415764 ], [ -111.757481718539054, 23.841444119004851 ], [ -111.758027270990496, 23.838822119522426 ], [ -111.757754494764768, 23.836805196843635 ], [ -111.756936166087598, 23.835191658700605 ], [ -111.742751802349957, 23.826922275717568 ], [ -111.732113529546723, 23.827123967985447 ], [ -111.726658005032249, 23.832166274682422 ], [ -111.721748032969217, 23.835191658700605 ], [ -111.692288200591037, 23.842452580344247 ], [ -111.673466641016077, 23.83640181230788 ], [ -111.671829983661738, 23.834989966432726 ], [ -111.669374997630229, 23.830754428807268 ], [ -111.674557745918975, 23.820669815413318 ], [ -111.676467179499042, 23.817644431395134 ], [ -111.684923242496481, 23.812198740162405 ], [ -111.695834291525443, 23.809375048412097 ], [ -111.721475256743489, 23.789609206159959 ], [ -111.723930242775012, 23.789810898427838 ], [ -111.725021347677909, 23.790617667499355 ], [ -111.725839676355079, 23.792432897910267 ], [ -111.729112991063758, 23.792432897910267 ], [ -111.736205172932586, 23.787592283481171 ], [ -111.742479026124229, 23.777305977819342 ], [ -111.743024578575685, 23.773675516997521 ], [ -111.742479026124229, 23.770650132979338 ], [ -111.742206249898516, 23.7700450561757 ], [ -111.739751263866992, 23.768431518032671 ], [ -111.737841830286925, 23.769036594836304 ], [ -111.735114068029688, 23.763187519067817 ], [ -111.735114068029688, 23.759153673710237 ], [ -111.739478487641264, 23.745640291762346 ], [ -111.753117298927464, 23.734547217029004 ], [ -111.756117837410429, 23.734143832493245 ], [ -111.766483333987935, 23.739589523725979 ], [ -111.766756110213663, 23.74079967733325 ], [ -111.763210019279256, 23.753909674745383 ], [ -111.764573900407868, 23.756531674227809 ], [ -111.777667159242611, 23.767019672157517 ], [ -111.783668236208541, 23.759960442781754 ], [ -111.786123222240064, 23.763994288139333 ], [ -111.787759879594404, 23.76863321030055 ], [ -111.787214327142948, 23.785373668534501 ], [ -111.786668774691506, 23.78779397574905 ], [ -111.780667697725576, 23.798281973678755 ], [ -111.776848830565442, 23.800500588625425 ], [ -111.769756648696628, 23.817241046859376 ], [ -111.769756648696628, 23.818047815930893 ], [ -111.771666082276695, 23.821678276752714 ], [ -111.778485487919795, 23.82490535303878 ], [ -111.787759879594404, 23.821678276752714 ], [ -111.791033194303083, 23.817442739127255 ], [ -111.790760418077369, 23.815425816448467 ], [ -111.789669313174471, 23.813812278305434 ], [ -111.807945320297975, 23.766414595353879 ], [ -111.807399767846533, 23.761170596389025 ], [ -111.808490872749417, 23.756531674227809 ], [ -111.818583593101209, 23.759960442781754 ], [ -111.826494103647207, 23.763792595871454 ], [ -111.830040194581613, 23.764599364942967 ], [ -111.847497873027947, 23.756329981959933 ], [ -111.851043963962354, 23.74846398351265 ], [ -111.849134530382287, 23.741808138672646 ], [ -111.84640676812505, 23.742009830940525 ], [ -111.831949628161681, 23.746850445369621 ], [ -111.830585747033055, 23.7470521376375 ], [ -111.826221327421479, 23.744631830422954 ], [ -111.811218635006668, 23.722647373224145 ], [ -111.811491411232382, 23.710142452615649 ], [ -111.818856369326937, 23.695822301596245 ], [ -111.824584670067139, 23.691990148506545 ], [ -111.834677390418918, 23.687552918613207 ], [ -111.840951243610562, 23.68291399645199 ], [ -111.844497334544982, 23.666778615021673 ], [ -111.839041810030494, 23.660727846985303 ], [ -111.836314047773257, 23.661131231521061 ], [ -111.834677390418918, 23.662946461931973 ], [ -111.831949628161681, 23.659316001110152 ], [ -111.83276795683885, 23.654273694413178 ], [ -111.836041271547543, 23.649231387716203 ], [ -111.849134530382287, 23.637533236179223 ], [ -111.854317278671033, 23.640155235661652 ], [ -111.855953936025386, 23.641768773804682 ], [ -111.857590593379726, 23.64217215834044 ], [ -111.860045579411235, 23.641567081536802 ], [ -111.866592208828621, 23.635516313500435 ], [ -111.867410537505791, 23.634104467625281 ], [ -111.874502719374604, 23.612120010426473 ], [ -111.876412152954671, 23.599211705282222 ], [ -111.883504334823499, 23.588320322816756 ], [ -111.885413768403566, 23.586505092405847 ], [ -111.889505411789429, 23.584891554262814 ], [ -111.895779264981073, 23.583479708387664 ], [ -111.898779803464038, 23.588723707352514 ], [ -111.903144223075614, 23.591345706834943 ], [ -111.906144761558579, 23.590538937763426 ], [ -111.909145300041544, 23.588320322816756 ], [ -111.913236943427407, 23.583076323851905 ], [ -111.917601363038983, 23.579445863030084 ], [ -111.922511335102016, 23.576622171279777 ], [ -111.924420768682083, 23.576218786744022 ], [ -111.927694083390776, 23.577227248083414 ], [ -111.92633020226215, 23.595379552192522 ], [ -111.920056349070506, 23.624019854231335 ], [ -111.919238020393337, 23.626238469178002 ], [ -111.916783034361814, 23.629263853196186 ], [ -111.913782495878849, 23.631684160410735 ], [ -111.911600286073067, 23.632692621750127 ], [ -111.904235327978512, 23.650643233591357 ], [ -111.895779264981073, 23.66516507687864 ], [ -111.887050425757906, 23.672425998522286 ], [ -111.881594901243432, 23.681905535112595 ], [ -111.879958243889092, 23.688359687684724 ], [ -111.885959320855008, 23.689973225827753 ], [ -111.893597055175277, 23.690578302631391 ], [ -111.895779264981073, 23.688561379952603 ], [ -111.896324817432514, 23.68694784180957 ], [ -111.900143684592649, 23.68452753459502 ], [ -111.909690852492986, 23.680493689237444 ], [ -111.911327509847339, 23.683519073255628 ], [ -111.914328048330304, 23.699049377882307 ], [ -111.911054733621611, 23.731118448475062 ], [ -111.903144223075614, 23.744430138155074 ], [ -111.900416460818377, 23.746447060833862 ], [ -111.896324817432514, 23.746850445369621 ], [ -111.886232097080736, 23.76076721185327 ], [ -111.883231558597771, 23.770246748443579 ], [ -111.882958782372043, 23.775490747408433 ], [ -111.885413768403566, 23.782549976784196 ], [ -111.887868754435075, 23.783155053587834 ], [ -111.89168762159521, 23.780533054105405 ], [ -111.893869831401005, 23.772868747926005 ], [ -111.893869831401005, 23.771658594318733 ], [ -111.900416460818377, 23.760363827317512 ], [ -111.923329663779185, 23.729908294867787 ], [ -111.924147992456369, 23.722243988688387 ], [ -111.927694083390776, 23.705301838186553 ], [ -111.932058503002352, 23.690578302631391 ], [ -111.935059041485317, 23.681905535112595 ], [ -111.944606209385654, 23.672829383058041 ], [ -111.948697852771517, 23.666778615021673 ], [ -111.951971167480195, 23.665971845950157 ], [ -111.953335048608821, 23.664761692342882 ], [ -111.960700006703362, 23.647214465037415 ], [ -111.962063887831988, 23.640356927929531 ], [ -111.961518335380532, 23.634306159893161 ], [ -111.960427230477649, 23.631482468142856 ], [ -111.961245559154818, 23.629263853196186 ], [ -111.969974398377985, 23.618574162998602 ], [ -111.97461159421529, 23.614136933105264 ], [ -111.976248251569629, 23.613935240837385 ], [ -111.975429922892459, 23.616557240319814 ], [ -111.976248251569629, 23.621599547016785 ], [ -111.979794342504036, 23.63450785216104 ], [ -111.983613209664171, 23.642978927411956 ], [ -111.985795419469966, 23.645802619162261 ], [ -112.007344741302148, 23.660324462449545 ], [ -112.013618594493806, 23.662946461931973 ], [ -112.031621825391582, 23.666375230485915 ], [ -112.040623440840477, 23.666375230485915 ], [ -112.043896755549156, 23.666980307289553 ], [ -112.046078965354951, 23.67141753718289 ], [ -112.046078965354951, 23.684930919130778 ], [ -112.050988937417983, 23.706310299525949 ], [ -112.064082196252727, 23.746447060833862 ], [ -112.06653718228425, 23.752699521138112 ], [ -112.069264944541487, 23.758145212370842 ], [ -112.082085427150503, 23.775894131944192 ], [ -112.088904832793602, 23.782549976784196 ], [ -112.094360357308091, 23.786382129873896 ], [ -112.114545798011648, 23.789609206159959 ], [ -112.116182455366001, 23.789205821624201 ], [ -112.125184070814882, 23.783558438123592 ], [ -112.134458462489505, 23.783155053587834 ], [ -112.138550105875353, 23.78557536080238 ], [ -112.139095658326809, 23.786382129873896 ], [ -112.131185147780812, 23.79707182007148 ], [ -112.129821266652186, 23.800702280893304 ], [ -112.129002937975017, 23.841645811272731 ], [ -112.130094042877914, 23.847091502505464 ], [ -112.13145792400654, 23.850318578791526 ], [ -112.132003476457982, 23.862218422596385 ], [ -112.123820189686271, 23.89428749318914 ], [ -112.121637979880475, 23.897111184939448 ], [ -112.118364665171782, 23.899733184421873 ], [ -112.115636902914545, 23.900136568957631 ], [ -112.106089735014208, 23.912238105030369 ], [ -112.105544182562767, 23.930390409139473 ], [ -112.103089196531243, 23.931398870478869 ], [ -112.100088658048293, 23.929987024603715 ], [ -112.092178147502295, 23.929785332335836 ], [ -112.085085965633468, 23.938256407586753 ], [ -112.081812650924789, 23.945517329230395 ], [ -112.069537720767215, 23.963669633339503 ], [ -112.044987860452053, 23.983435475591641 ], [ -112.03871400726041, 23.986460859609824 ], [ -112.035440692551717, 23.984443936931036 ], [ -112.011163608462283, 23.985452398270429 ], [ -112.004344202819198, 23.988477782288616 ], [ -111.999434230756165, 23.993721781253466 ], [ -111.99043261530727, 23.993923473521345 ], [ -111.986886524372864, 23.99130147403892 ], [ -111.986613748147136, 23.990696397235283 ], [ -111.982522104761273, 23.970930554983145 ], [ -111.976248251569629, 23.948139328712823 ], [ -111.972156608183766, 23.942491945212211 ], [ -111.966701083669292, 23.944105483355244 ], [ -111.964518873863497, 23.943702098819486 ], [ -111.96179111160626, 23.942088560676453 ], [ -111.960427230477649, 23.940273330265544 ], [ -111.958790573123295, 23.936441177175844 ], [ -111.956335587091786, 23.927163332853411 ], [ -111.954426153511719, 23.920910872549165 ], [ -111.947061195417177, 23.902355183904298 ], [ -111.941878447128417, 23.89408580092126 ], [ -111.912145838524509, 23.86726072929336 ], [ -111.909963628718714, 23.866857344757602 ], [ -111.906417537784307, 23.873109805061851 ], [ -111.907508642687205, 23.878555496294581 ], [ -111.920874677747676, 23.89428749318914 ], [ -111.938877908645452, 23.905985644726119 ], [ -111.939423461096908, 23.906792413797636 ], [ -111.949243405222958, 23.931398870478869 ], [ -111.950334510125856, 23.949147790052216 ], [ -111.949516181448686, 23.953585019945553 ], [ -111.945697314288552, 23.958627326642528 ], [ -111.942151223354145, 23.967501786429203 ], [ -111.940514565999791, 23.973149169929812 ], [ -111.944060656934212, 23.976577938483757 ], [ -111.951152838803026, 23.982023629716487 ], [ -111.952516719931651, 23.982225321984366 ], [ -111.960154454251921, 23.987872705484978 ], [ -111.961245559154818, 23.989889628163766 ], [ -111.961245559154818, 23.995537011664378 ], [ -111.960154454251921, 23.997553934343166 ], [ -111.957972244446125, 23.998764087950441 ], [ -111.931785726776639, 24.002394548772262 ], [ -111.921147453973404, 24.002394548772262 ], [ -111.911873062298781, 24.003604702379537 ], [ -111.911054733621611, 24.004209779183174 ], [ -111.909145300041544, 24.011470700826816 ], [ -111.912145838524509, 24.014294392577121 ], [ -111.917601363038983, 24.016916392059549 ], [ -111.948697852771517, 24.022362083292279 ], [ -111.965064426314953, 24.023370544631675 ], [ -111.970792727055155, 24.021353621952883 ], [ -111.976793804021071, 24.015302853916516 ], [ -111.979794342504036, 24.015302853916516 ], [ -111.981158223632661, 24.018126545666821 ], [ -111.993433153790235, 24.067137766761409 ], [ -111.972974936860936, 24.096383145603859 ], [ -111.959063349349023, 24.108484681676597 ], [ -111.951971167480195, 24.113325296105693 ], [ -111.93396793658242, 24.112518527034176 ], [ -111.910781957395884, 24.095374684264463 ], [ -111.900962013269833, 24.076213918815963 ], [ -111.89850702723831, 24.065524228618379 ], [ -111.89850702723831, 24.063910690475346 ], [ -111.89687036988397, 24.052615923474125 ], [ -111.894688160078175, 24.047170232241392 ], [ -111.893051502723836, 24.045556694098359 ], [ -111.88486821595211, 24.046766847705634 ], [ -111.881049348791976, 24.053221000277759 ], [ -111.879958243889092, 24.071574996654746 ], [ -111.881322125017704, 24.084886686334759 ], [ -111.887595978209362, 24.092550992514159 ], [ -111.891414845369496, 24.101022067765076 ], [ -111.890596516692312, 24.104854220854776 ], [ -111.883777111049227, 24.105257605390534 ], [ -111.872047733343095, 24.102837298175984 ], [ -111.857590593379726, 24.097391606943255 ], [ -111.855408383573931, 24.098400068282647 ], [ -111.853226173768149, 24.108484681676597 ], [ -111.853226173768149, 24.110904988891143 ], [ -111.855135607348217, 24.116350680123876 ], [ -111.8562267122511, 24.116754064659634 ], [ -111.872866062020265, 24.116955756927513 ], [ -111.886504873306464, 24.121392986820851 ], [ -111.890596516692312, 24.123006524963881 ], [ -111.905599209107137, 24.13309113835783 ], [ -111.910781957395884, 24.137730060519047 ], [ -111.913509719653135, 24.141360521340864 ], [ -111.913782495878849, 24.14620113576996 ], [ -111.913509719653135, 24.156890825967547 ], [ -111.912418614750237, 24.159714517717852 ], [ -111.906417537784307, 24.164756824414827 ], [ -111.903144223075614, 24.165966978022098 ], [ -111.900689237044105, 24.164353439879068 ], [ -111.89768869856114, 24.160722979057248 ], [ -111.848043425479389, 24.137931752786923 ], [ -111.84640676812505, 24.137528368251168 ], [ -111.83958736248195, 24.140553752269351 ], [ -111.81012753010377, 24.131074215679039 ], [ -111.809036425200873, 24.131275907946918 ], [ -111.802762572009215, 24.135108061036618 ], [ -111.802217019557773, 24.13692329144753 ], [ -111.834950166644646, 24.159714517717852 ], [ -111.844224558319254, 24.162739901736035 ], [ -111.854862831122489, 24.168588977504527 ], [ -111.864409999022826, 24.179076975434231 ], [ -111.865773880151437, 24.181497282648778 ], [ -111.865501103925723, 24.183917589863327 ], [ -111.860591131862691, 24.185934512542115 ], [ -111.850771187736626, 24.187749742953027 ], [ -111.846952320576492, 24.184926051202723 ], [ -111.845315663222152, 24.182707436256052 ], [ -111.820765802907005, 24.171009284719073 ], [ -111.805490334266466, 24.168992362040285 ], [ -111.801944243332045, 24.171009284719073 ], [ -111.801671467106317, 24.172421130594227 ], [ -111.797579823720469, 24.181497282648778 ], [ -111.760482257022005, 24.179076975434231 ], [ -111.759391152119122, 24.179682052237869 ], [ -111.757481718539054, 24.186741281613632 ], [ -111.759663928344835, 24.199044509954248 ], [ -111.7626644668278, 24.207918969740923 ], [ -111.759391152119122, 24.209734200151836 ], [ -111.731840753320995, 24.21417143004517 ], [ -111.731022424643825, 24.212356199634261 ], [ -111.730204095966656, 24.192388665114244 ], [ -111.731567977095281, 24.186539589345752 ], [ -111.74002404009272, 24.168185592968769 ], [ -111.743297354801399, 24.163546670807552 ], [ -111.753935627604633, 24.137931752786923 ], [ -111.755026732507531, 24.131880984750556 ], [ -111.754208403830361, 24.122603140428122 ], [ -111.751480641573124, 24.104854220854776 ], [ -111.746297893284364, 24.096383145603859 ], [ -111.742479026124229, 24.093156069317793 ], [ -111.739751263866992, 24.092147607978401 ], [ -111.737841830286925, 24.09234930024628 ], [ -111.732386305772451, 24.094567915192947 ], [ -111.732659081998179, 24.097794991479009 ], [ -111.734295739352518, 24.10001360642568 ], [ -111.737023501609755, 24.107879604872959 ], [ -111.74166069744706, 24.131074215679039 ], [ -111.740569592544162, 24.135309753304497 ], [ -111.737841830286925, 24.142167290412381 ], [ -111.731840753320995, 24.150638365663298 ], [ -111.722566361646386, 24.144587597626931 ], [ -111.720656928066319, 24.14236898268026 ], [ -111.714383074874675, 24.144385905359051 ], [ -111.700198711137034, 24.161328055860885 ], [ -111.696379843976899, 24.170605900183315 ], [ -111.697470948879783, 24.174639745540894 ], [ -111.701835368491373, 24.177866821826957 ], [ -111.702653697168543, 24.179076975434231 ], [ -111.703472025845713, 24.184320974399085 ], [ -111.702926473394271, 24.186539589345752 ], [ -111.692833753042478, 24.192993741917881 ], [ -111.690105990785241, 24.184724358934844 ], [ -111.684923242496481, 24.182304051720294 ], [ -111.680831599110633, 24.18331251305969 ], [ -111.677012731950498, 24.190573434703332 ], [ -111.671284431210296, 24.205498662526374 ], [ -111.669647773855942, 24.215583275920324 ], [ -111.662555591987129, 24.223852658903361 ], [ -111.659827829729892, 24.224457735706999 ], [ -111.658191172375538, 24.223650966635482 ], [ -111.656827291246927, 24.222037428492449 ], [ -111.657100067472641, 24.212356199634261 ], [ -111.659555053504164, 24.207515585205165 ], [ -111.659009501052708, 24.20630543159789 ], [ -111.655736186344029, 24.204086816651223 ], [ -111.64646179466942, 24.203481739847586 ], [ -111.64046071770349, 24.205902047062132 ], [ -111.630367997351698, 24.203683432115465 ], [ -111.630913549803154, 24.197027587275461 ], [ -111.6360962980919, 24.186942973881511 ], [ -111.639369612800593, 24.187346358417269 ], [ -111.641824598832102, 24.188556512024544 ], [ -111.644279584863625, 24.189766665631815 ], [ -111.647007347120862, 24.192186972846365 ], [ -111.649735109378099, 24.191985280578486 ], [ -111.657645619924097, 24.190371742435453 ], [ -111.660646158407062, 24.182909128523931 ], [ -111.645097913540795, 24.15628574916391 ], [ -111.643734032412169, 24.154672211020877 ], [ -111.64046071770349, 24.153260365145726 ] ] ], [ [ [ -111.649462333152371, 24.352935710345896 ], [ -111.658463948601266, 24.351322172202863 ], [ -111.662828368212843, 24.340027405201642 ], [ -111.642370151283558, 24.304731258322825 ], [ -111.643188479960727, 24.29968895162585 ], [ -111.658463948601266, 24.292831414517966 ], [ -111.672102759887466, 24.290209415035537 ], [ -111.678376613079109, 24.291822953178571 ], [ -111.692015424365309, 24.289604338231904 ], [ -111.697470948879783, 24.280729878445229 ], [ -111.69856205378268, 24.270846957319158 ], [ -111.698016501331239, 24.268023265568853 ], [ -111.700198711137034, 24.265602958354307 ], [ -111.703199249619985, 24.265199573818549 ], [ -111.704017578297169, 24.265804650622187 ], [ -111.710291431488812, 24.277906186694921 ], [ -111.712746417520322, 24.298882182554333 ], [ -111.714383074874675, 24.303319412447671 ], [ -111.716019732229014, 24.306344796465854 ], [ -111.722020809194944, 24.309370180484041 ], [ -111.724203019000726, 24.305134642858583 ], [ -111.720929704292047, 24.275889264016133 ], [ -111.720656928066319, 24.259552190317937 ], [ -111.724203019000726, 24.248862500120353 ], [ -111.734568515578246, 24.241399886208832 ], [ -111.749025655541601, 24.235954194976099 ], [ -111.750935089121668, 24.237164348583374 ], [ -111.753117298927464, 24.243820193423378 ], [ -111.756936166087598, 24.246240500637924 ], [ -111.761573361924903, 24.248257423316716 ], [ -111.780394921499862, 24.251686191870657 ], [ -111.800307585977706, 24.256526806299753 ], [ -111.804672005589282, 24.259753882585816 ], [ -111.808218096523703, 24.262980958871879 ], [ -111.811218635006668, 24.262375882068241 ], [ -111.825402998744309, 24.242408347548224 ], [ -111.825402998744309, 24.240794809405195 ], [ -111.818310816875481, 24.23171865735064 ], [ -111.811491411232382, 24.224861120242757 ], [ -111.806581439169349, 24.221230659420936 ], [ -111.792397075431708, 24.219617121277903 ], [ -111.768392767568002, 24.21013758468759 ], [ -111.767028886439391, 24.209129123348198 ], [ -111.766756110213663, 24.208120662008803 ], [ -111.782849907531372, 24.197834356346974 ], [ -111.791033194303083, 24.196220818203944 ], [ -111.819947474229821, 24.19864112541849 ], [ -111.846952320576492, 24.204288508919102 ], [ -111.849407306608015, 24.206103739330011 ], [ -111.851316740188082, 24.209129123348198 ], [ -111.852135068865252, 24.209532507883956 ], [ -111.869592747311572, 24.208524046544561 ], [ -111.881322125017704, 24.20106143263304 ], [ -111.885959320855008, 24.199246202222128 ], [ -111.900689237044105, 24.205498662526374 ], [ -111.900962013269833, 24.207515585205165 ], [ -111.900143684592649, 24.21033927695547 ], [ -111.885686544629294, 24.24724896197732 ], [ -111.878594362760467, 24.252291268674295 ], [ -111.876684929180399, 24.253098037745811 ], [ -111.873684390697434, 24.252291268674295 ], [ -111.863318894119928, 24.244626962494895 ], [ -111.854317278671033, 24.236559271779736 ], [ -111.845861215673594, 24.232122041886399 ], [ -111.843133453416357, 24.233735580029432 ], [ -111.843133453416357, 24.241198193940953 ], [ -111.849952859059457, 24.249870961459749 ], [ -111.86222778921703, 24.257535267639149 ], [ -111.866592208828621, 24.262174189800362 ], [ -111.866864985054335, 24.283755262463412 ], [ -111.860318355636963, 24.289402645964024 ], [ -111.835768495321815, 24.285167108338566 ], [ -111.83276795683885, 24.285570492874324 ], [ -111.82758520855009, 24.288999261428266 ], [ -111.820765802907005, 24.296663567607666 ], [ -111.820493026681277, 24.297873721214941 ], [ -111.823220788938514, 24.300899105233125 ], [ -111.837405152676155, 24.303924489251308 ], [ -111.843406229642085, 24.306748181001613 ], [ -111.849134530382287, 24.311588795430708 ], [ -111.849680082833729, 24.312798949037983 ], [ -111.849407306608015, 24.314614179448892 ], [ -111.841496796062017, 24.336396944379821 ], [ -111.831404075710225, 24.335993559844063 ], [ -111.828403537227274, 24.334783406236788 ], [ -111.825130222518581, 24.331556329950725 ], [ -111.814764725941075, 24.330346176343451 ], [ -111.802762572009215, 24.334783406236788 ], [ -111.801398690880603, 24.337808790254975 ], [ -111.801125914654875, 24.345473096434375 ], [ -111.804672005589282, 24.345674788702254 ], [ -111.811218635006668, 24.3442629428271 ], [ -111.813946397263905, 24.346481557773767 ], [ -111.819401921778379, 24.353339094881655 ], [ -111.819674698004107, 24.355154325292563 ], [ -111.81776526442404, 24.357978017042868 ], [ -111.811491411232382, 24.36221355466833 ], [ -111.804672005589282, 24.359389862918022 ], [ -111.792669851657436, 24.358784786114384 ], [ -111.789942089400199, 24.364633861882876 ], [ -111.786123222240064, 24.378550628366522 ], [ -111.789396536948743, 24.378752320634401 ], [ -111.801671467106317, 24.37754216702713 ], [ -111.815037502166803, 24.387425088153197 ], [ -111.817219711972584, 24.391055548975018 ], [ -111.816674159521142, 24.391862318046535 ], [ -111.811218635006668, 24.390248779903501 ], [ -111.806308662943636, 24.39065216443926 ], [ -111.79894370484908, 24.39287077938593 ], [ -111.794306509011776, 24.397711393815026 ], [ -111.79212429920598, 24.402148623708364 ], [ -111.792397075431708, 24.406787545869577 ], [ -111.787487103368676, 24.422721235032014 ], [ -111.785304893562881, 24.423931388639289 ], [ -111.777394383016897, 24.424738157710806 ], [ -111.761027809473461, 24.436436309247785 ], [ -111.760482257022005, 24.443495538623548 ], [ -111.760755033247733, 24.445512461302339 ], [ -111.762937243053528, 24.445512461302339 ], [ -111.764846676633596, 24.443898923159306 ], [ -111.765937781536493, 24.443898923159306 ], [ -111.774393844533932, 24.447731076249006 ], [ -111.781486026402746, 24.463664765411444 ], [ -111.783668236208541, 24.472740917465998 ], [ -111.780122145274134, 24.484640761270857 ], [ -111.776576054339728, 24.492305067450257 ], [ -111.767847215116561, 24.503599834451478 ], [ -111.765937781536493, 24.503398142183599 ], [ -111.7626644668278, 24.500171065897536 ], [ -111.761300585699189, 24.495733836004199 ], [ -111.759391152119122, 24.492910144253894 ], [ -111.749843984218785, 24.494927066932682 ], [ -111.741387921221332, 24.508843833416332 ], [ -111.721202480517775, 24.523365676703616 ], [ -111.717110837131912, 24.523970753507253 ], [ -111.714655851100389, 24.521953830828465 ], [ -111.71138253639171, 24.502389680844203 ], [ -111.712746417520322, 24.474556147876907 ], [ -111.715201403551845, 24.470118917983569 ], [ -111.721475256743489, 24.464874919018719 ], [ -111.728294662386588, 24.444907384498702 ], [ -111.732386305772451, 24.430990618015052 ], [ -111.732931858223893, 24.427158464925352 ], [ -111.732931858223893, 24.420300927817468 ], [ -111.720384151840591, 24.38903862629623 ], [ -111.716019732229014, 24.388433549492593 ], [ -111.696379843976899, 24.397308009279268 ], [ -111.691742648139581, 24.400938470101089 ], [ -111.690378767010969, 24.414048467513219 ], [ -111.692288200591037, 24.41828400513868 ], [ -111.695288739074002, 24.422922927299894 ], [ -111.696379843976899, 24.423931388639289 ], [ -111.696652620202613, 24.42756184946111 ], [ -111.691469871913867, 24.434016002033239 ], [ -111.689833214559513, 24.434217694301118 ], [ -111.684923242496481, 24.433007540693843 ], [ -111.678103836853381, 24.428570310800506 ], [ -111.661737263309959, 24.414048467513219 ], [ -111.661737263309959, 24.407190930405335 ], [ -111.659009501052708, 24.405779084530185 ], [ -111.653281200312506, 24.406182469065939 ], [ -111.641551822606388, 24.428570310800506 ], [ -111.640733493929218, 24.428772003068385 ], [ -111.629822444900256, 24.420300927817468 ], [ -111.629004116223086, 24.418082312870801 ], [ -111.631459102254595, 24.399526624225935 ], [ -111.631731878480323, 24.383391242795618 ], [ -111.630367997351698, 24.370079553115609 ], [ -111.628185787545917, 24.36221355466833 ], [ -111.621366381902817, 24.36362540054348 ], [ -111.620820829451361, 24.369474476311972 ], [ -111.623003039257156, 24.378147243830767 ], [ -111.620548053225647, 24.39287077938593 ], [ -111.603363151005041, 24.416468774727768 ], [ -111.601999269876416, 24.415662005656252 ], [ -111.596543745361942, 24.409812929887764 ], [ -111.595725416684772, 24.40840108401261 ], [ -111.588633234815944, 24.381576012384709 ], [ -111.585905472558707, 24.364230477347117 ], [ -111.587269353687333, 24.355759402096201 ], [ -111.601999269876416, 24.323690331503446 ], [ -111.608545899293787, 24.319454793877988 ], [ -111.630640773577426, 24.325908946450113 ], [ -111.639642389026321, 24.333371560361638 ], [ -111.640733493929218, 24.336800328915579 ], [ -111.640187941477762, 24.338817251594367 ], [ -111.637187402994797, 24.339422328398005 ], [ -111.637187402994797, 24.342246020148309 ], [ -111.647552899572304, 24.354549248488926 ], [ -111.649462333152371, 24.352935710345896 ] ] ], [ [ [ -106.924705327388438, 25.285762449286086 ], [ -106.922250341356914, 25.291813217322456 ], [ -106.917340369293882, 25.298267369894582 ], [ -106.910520963650782, 25.30250290752004 ], [ -106.90479266291058, 25.304923214734586 ], [ -106.895518271235971, 25.303511368859436 ], [ -106.8889716418186, 25.30411644566307 ], [ -106.886789432012804, 25.305931676073982 ], [ -106.884879998432737, 25.311175675038836 ], [ -106.883243341078398, 25.313192597717624 ], [ -106.873968949403775, 25.32166367296854 ], [ -106.869058977340757, 25.322268749772178 ], [ -106.854874613603101, 25.322067057504299 ], [ -106.843145235896984, 25.319041673486115 ], [ -106.84069024986546, 25.317226443075203 ], [ -106.833325291770919, 25.308351983288532 ], [ -106.837144158931054, 25.298469062162461 ], [ -106.837689711382495, 25.294636909072761 ], [ -106.838508040059679, 25.286770910625481 ], [ -106.837689711382495, 25.282737065267902 ], [ -106.833052515545191, 25.278703219910323 ], [ -106.827051438579275, 25.27547614362426 ], [ -106.821868690290515, 25.269627067855769 ], [ -106.819959256710447, 25.266399991569706 ], [ -106.816958718227482, 25.257323839515152 ], [ -106.826778662353547, 25.244012149835143 ], [ -106.838235263833951, 25.235944459119985 ], [ -106.850237417765797, 25.221826000368456 ], [ -106.858147928311794, 25.218397231814514 ], [ -106.903701558007697, 25.230095383351493 ], [ -106.914067054585189, 25.230498767887251 ], [ -106.921977565131186, 25.233120767369677 ], [ -106.927160313419947, 25.240986765816956 ], [ -106.927433089645675, 25.241995227156352 ], [ -106.925796432291321, 25.243810457567264 ], [ -106.925250879839879, 25.250667994675148 ], [ -106.926341984742777, 25.272854144141832 ], [ -106.926614760968505, 25.273660913213348 ], [ -106.928524194548572, 25.274467682284865 ], [ -106.929069747000014, 25.275677835892139 ], [ -106.928524194548572, 25.27930829671396 ], [ -106.924705327388438, 25.285762449286086 ] ] ], [ [ [ -107.892788152482609, 25.797657425162889 ], [ -107.895788690965574, 25.796245579287735 ], [ -107.895788690965574, 25.793421887537427 ], [ -107.903971977737285, 25.785152504554389 ], [ -107.907245292445978, 25.786564350429543 ], [ -107.918156341474941, 25.789388042179851 ], [ -107.936705124824158, 25.790799888055002 ], [ -107.938614558404225, 25.790194811251364 ], [ -107.953617250819036, 25.767201892713164 ], [ -107.973802691522607, 25.75429358756891 ], [ -107.989623712614602, 25.741990359228293 ], [ -107.992078698646111, 25.74118359015678 ], [ -107.99371535600045, 25.74259543603193 ], [ -107.993988132226178, 25.744007281907084 ], [ -107.994533684677634, 25.757520663854976 ], [ -108.00135309032072, 25.771235738070743 ], [ -108.008445272189547, 25.774866198892564 ], [ -108.009809153318173, 25.773656045285293 ], [ -108.010081929543887, 25.76800866178468 ], [ -108.011173034446784, 25.767403584981043 ], [ -108.024266293281528, 25.767605277248922 ], [ -108.027539607990221, 25.769017123124073 ], [ -108.02999459402173, 25.772849276213776 ], [ -108.029449041570288, 25.776681429303476 ], [ -108.026175726861595, 25.781925428268327 ], [ -108.022902412152916, 25.782530505071964 ], [ -108.020992978572849, 25.784345735482876 ], [ -108.014991901606919, 25.79281681073379 ], [ -108.013628020478308, 25.79745573289501 ], [ -108.017992440089884, 25.805523423610168 ], [ -108.023447964604372, 25.806128500413802 ], [ -108.033267908730423, 25.817826651950782 ], [ -108.038996209470625, 25.837995878738678 ], [ -108.079912643329209, 25.865829411705974 ], [ -108.08264040558646, 25.869661564795678 ], [ -108.083185958037902, 25.874098794689012 ], [ -108.086186496520867, 25.87833433231447 ], [ -108.101461965161405, 25.890435868387208 ], [ -108.114828000221877, 25.89749509776297 ], [ -108.117828538704842, 25.89991540497752 ], [ -108.117010210027672, 25.904957711674495 ], [ -108.11210023796464, 25.912622017853895 ], [ -108.129012363959518, 25.943480934839375 ], [ -108.134195112248278, 25.948119857000592 ], [ -108.155198881629019, 25.958809547198175 ], [ -108.162291063497833, 25.959616316269692 ], [ -108.166109930657967, 25.958002778126662 ], [ -108.165564378206525, 25.956389239983629 ], [ -108.16256383972356, 25.952153702358171 ], [ -108.157381091434814, 25.947111395661196 ], [ -108.147288371083022, 25.940455550821191 ], [ -108.131467349991027, 25.917866016818749 ], [ -108.119192419833453, 25.869863257063557 ], [ -108.120556300962079, 25.86663618077749 ], [ -108.131740126216755, 25.860988797276882 ], [ -108.139377860537024, 25.858366797794453 ], [ -108.184113161555757, 25.867644642116886 ], [ -108.192569224553196, 25.866434488509611 ], [ -108.204298602259314, 25.867039565313249 ], [ -108.210299679225244, 25.868451411188403 ], [ -108.235667868217575, 25.901327250852674 ], [ -108.240577840280594, 25.912218633318137 ], [ -108.246851693472252, 25.915647401872079 ], [ -108.249579455729489, 25.912420325586016 ], [ -108.250943336858114, 25.908789864764195 ], [ -108.249579455729489, 25.903949250335099 ], [ -108.246033364795082, 25.896890020959336 ], [ -108.244396707440728, 25.887813868904782 ], [ -108.25012500818093, 25.875510640564165 ], [ -108.259399399855553, 25.872686948813861 ], [ -108.261308833435621, 25.87288864108174 ], [ -108.266764357950095, 25.874703871492649 ], [ -108.271128777561671, 25.877930947778715 ], [ -108.277402630753329, 25.879746178189624 ], [ -108.284222036396429, 25.879947870457503 ], [ -108.29240532316814, 25.879342793653866 ], [ -108.293769204296765, 25.878536024582349 ], [ -108.294041980522493, 25.871678487474465 ], [ -108.301679714842763, 25.86663618077749 ], [ -108.308226344260135, 25.869661564795678 ], [ -108.310135777840202, 25.874300486956891 ], [ -108.318319064611913, 25.880351254993261 ], [ -108.324047365352115, 25.870064949331432 ], [ -108.321865155546334, 25.86683787304537 ], [ -108.32104682686915, 25.856148182847786 ], [ -108.321592379320606, 25.855946490579907 ], [ -108.319682945740539, 25.852921106561723 ], [ -108.316955183483302, 25.849895722543536 ], [ -108.300861386165593, 25.849694030275657 ], [ -108.276038749624718, 25.85372787563324 ], [ -108.272219882464583, 25.858568490062332 ], [ -108.253398322889623, 25.857156644187178 ], [ -108.237577301797643, 25.859375259133849 ], [ -108.229666791251645, 25.859375259133849 ], [ -108.216027979965446, 25.856148182847786 ], [ -108.19202367210174, 25.848080492132627 ], [ -108.151107238243156, 25.822667266379877 ], [ -108.148652252211633, 25.819641882361694 ], [ -108.149470580888817, 25.810767422575019 ], [ -108.151925566920326, 25.803103116395619 ], [ -108.153835000500393, 25.799674347841677 ], [ -108.156289986531903, 25.797657425162889 ], [ -108.160381629917765, 25.791001580322881 ], [ -108.163109392175016, 25.779101736518022 ], [ -108.156289986531903, 25.777689890642868 ], [ -108.144287832600057, 25.794430348876823 ], [ -108.138286755634141, 25.804716654538652 ], [ -108.139650636762752, 25.813389422057448 ], [ -108.138013979408413, 25.818028344218661 ], [ -108.121101853413521, 25.821860497308361 ], [ -108.120829077187807, 25.828919726684127 ], [ -108.118374091156284, 25.829121418952006 ], [ -108.114282447770421, 25.826096034933819 ], [ -108.09327867838968, 25.794026964341064 ], [ -108.081003748232106, 25.776479737035597 ], [ -108.076912104846258, 25.774462814356806 ], [ -108.056181111691231, 25.770832353534985 ], [ -108.052362244531096, 25.761151124676793 ], [ -108.041723971727862, 25.750864819014968 ], [ -108.034631789859048, 25.748444511800422 ], [ -108.028903489118846, 25.741788666960414 ], [ -108.019083544992782, 25.727871900476767 ], [ -108.023720740830086, 25.709921288635538 ], [ -108.026721279313051, 25.705484058742201 ], [ -108.054817230562605, 25.678255602578542 ], [ -108.057272216594129, 25.676843756703391 ], [ -108.059999978851366, 25.676440372167633 ], [ -108.062454964882889, 25.676642064435512 ], [ -108.065182727140126, 25.677852218042784 ], [ -108.066273832043024, 25.679869140721575 ], [ -108.067364936945921, 25.683096217007638 ], [ -108.067910489397363, 25.6863232932937 ], [ -108.067637713171635, 25.690760523187038 ], [ -108.066001055817296, 25.692172369062192 ], [ -108.066546608268737, 25.697214675759163 ], [ -108.069274370525989, 25.6978197525628 ], [ -108.071183804106056, 25.698223137098559 ], [ -108.083185958037902, 25.696609598955526 ], [ -108.090005363681001, 25.685919908757942 ], [ -108.083185958037902, 25.681079294328846 ], [ -108.081549300683562, 25.680474217525212 ], [ -108.077730433523428, 25.674625141756721 ], [ -108.075548223717632, 25.662120221148225 ], [ -108.076093776169074, 25.660304990737316 ], [ -108.078548762200597, 25.658288068058525 ], [ -108.098734202904168, 25.653649145897308 ], [ -108.117555762479114, 25.658893144862162 ], [ -108.122465734542146, 25.659699913933679 ], [ -108.13392233602255, 25.659094837130041 ], [ -108.138013979408413, 25.656271145379737 ], [ -108.140468965439922, 25.651430530950641 ], [ -108.139650636762752, 25.645783147450029 ], [ -108.13555899337689, 25.643766224771241 ], [ -108.115919105124775, 25.631462996430624 ], [ -108.112645790416082, 25.628437612412441 ], [ -108.107463042127335, 25.618958075822128 ], [ -108.107190265901608, 25.605444693874237 ], [ -108.108008594578777, 25.603629463463328 ], [ -108.111827461738912, 25.59939392583787 ], [ -108.120010748510623, 25.594351619140895 ], [ -108.131740126216755, 25.594956695944532 ], [ -108.141832846568548, 25.60302438665969 ], [ -108.145651713728682, 25.60705823201727 ], [ -108.14592448995441, 25.615327615000307 ], [ -108.151380014468884, 25.619159768090007 ], [ -108.158744972563426, 25.616134384071824 ], [ -108.1642004970779, 25.615529307268186 ], [ -108.185477042684369, 25.61855469128637 ], [ -108.186295371361538, 25.624605459322737 ], [ -108.220392399577037, 25.640942533020933 ], [ -108.231303448605985, 25.641345917556691 ], [ -108.237304525571915, 25.641144225288812 ], [ -108.23948673537771, 25.640337456217299 ], [ -108.25012500818093, 25.629446073751833 ], [ -108.256671637598316, 25.624202074786982 ], [ -108.264309371918586, 25.627630843340924 ], [ -108.279039288107668, 25.632471457770016 ], [ -108.29676974277973, 25.636101918591841 ], [ -108.300315833714137, 25.636101918591841 ], [ -108.306589686905795, 25.634891764984566 ], [ -108.311772435194541, 25.635900226323962 ], [ -108.346142239635753, 25.644976378378516 ], [ -108.373965414659594, 25.653447453629433 ], [ -108.395514736491776, 25.658691452594283 ], [ -108.406971337972195, 25.660103298469437 ], [ -108.411881310035227, 25.657279606719129 ], [ -108.423337911515631, 25.659901606201558 ], [ -108.42661122622431, 25.661515144344587 ], [ -108.430702869610172, 25.672204834542175 ], [ -108.434794512996035, 25.677045448971271 ], [ -108.436431170350374, 25.6786589871143 ], [ -108.471619303468756, 25.692777445865829 ], [ -108.495623611332462, 25.698223137098559 ], [ -108.502988569427004, 25.699029906170075 ], [ -108.511717408650171, 25.702660366991896 ], [ -108.517172933164659, 25.706895904617355 ], [ -108.51935514297044, 25.710122980903417 ], [ -108.519900695421896, 25.710929749974934 ], [ -108.520446247873338, 25.715165287600392 ], [ -108.519900695421896, 25.718392363886455 ], [ -108.520446247873338, 25.721821132440397 ], [ -108.523174010130575, 25.729082054084039 ], [ -108.529447863322233, 25.738359898406472 ], [ -108.537085597642502, 25.743805589639205 ], [ -108.54881497534862, 25.75025974221133 ], [ -108.575819821695291, 25.76195789374831 ], [ -108.597096367301759, 25.768412046320439 ], [ -108.598460248430371, 25.774462814356806 ], [ -108.597641919753215, 25.779908505589539 ], [ -108.599551353333283, 25.783337274143481 ], [ -108.606370758976368, 25.783740658679239 ], [ -108.633102829097311, 25.781320351464693 ], [ -108.732938927712269, 25.779101736518022 ], [ -108.753942697093009, 25.785757581358027 ], [ -108.771945927990785, 25.792413426198035 ], [ -108.796495788305947, 25.798262501966523 ], [ -108.816681229009504, 25.801489578252585 ], [ -108.849687152322105, 25.802901424127739 ], [ -108.909425145755648, 25.805725115878047 ], [ -108.928519481556322, 25.807136961753198 ], [ -108.949523250937062, 25.809557268967744 ], [ -108.983893055378275, 25.81661649834351 ], [ -108.999714076470255, 25.820852035968969 ], [ -109.043085496360362, 25.831340033898673 ], [ -109.072545328738542, 25.835373879256252 ], [ -109.075545867221507, 25.837995878738678 ], [ -109.075545867221507, 25.839004340078073 ], [ -109.074454762318609, 25.844651723578686 ], [ -109.073363657415712, 25.84747541532899 ], [ -109.065453146869729, 25.847072030793232 ], [ -109.062452608386764, 25.853122798829602 ], [ -109.064907594418273, 25.868653103456282 ], [ -109.064362041966831, 25.88599863849387 ], [ -109.064089265741103, 25.888217253440541 ], [ -109.062179832161036, 25.891242637458724 ], [ -109.05999762235524, 25.892856175601757 ], [ -109.050450454454904, 25.894873098280545 ], [ -109.046904363520497, 25.893662944673274 ], [ -109.04499492994043, 25.888620637976299 ], [ -109.047177139746225, 25.884788484886599 ], [ -109.047449915971939, 25.882569869939928 ], [ -109.04499492994043, 25.879544485921745 ], [ -109.040357734103125, 25.879141101385986 ], [ -109.033265552234298, 25.880956331796899 ], [ -109.031628894879958, 25.882368177672049 ], [ -109.027264475268368, 25.88841894570842 ], [ -109.026718922816926, 25.890234176119328 ], [ -109.027537251494095, 25.892049406530241 ], [ -109.029992237525619, 25.893461252405395 ], [ -109.031901671105686, 25.895478175084182 ], [ -109.033811104685753, 25.903949250335099 ], [ -109.027264475268368, 25.928757399284212 ], [ -109.033265552234298, 25.9384386281424 ], [ -109.03817552429733, 25.933598013713308 ], [ -109.04499492994043, 25.933396321445429 ], [ -109.047449915971939, 25.934001398249066 ], [ -109.049632125777734, 25.936018320927854 ], [ -109.050177678229176, 25.937631859070883 ], [ -109.049632125777734, 25.942674165767858 ], [ -109.049086573326292, 25.944489396178771 ], [ -109.046358811069041, 25.947918164732712 ], [ -109.045267706166157, 25.953162163697563 ], [ -109.052905440486427, 25.961028162144846 ], [ -109.058633741226629, 25.965667084306062 ], [ -109.065453146869729, 25.973129698217583 ], [ -109.080728615510267, 25.992895540469721 ], [ -109.086184140024741, 26.00096323118488 ], [ -109.089730230959148, 26.010442767775189 ], [ -109.089730230959148, 26.013064767257617 ], [ -109.08863912605625, 26.014476613132768 ], [ -109.0856385875733, 26.015485074472164 ], [ -109.082365272864607, 26.019317227561864 ], [ -109.076636972124405, 26.030006917759451 ], [ -109.075545867221507, 26.032830609509755 ], [ -109.077455300801574, 26.059050604334018 ], [ -109.079910286833098, 26.066513218245539 ], [ -109.089184678507706, 26.076194447103731 ], [ -109.099550175085213, 26.071555524942514 ], [ -109.099822951310941, 26.059655681137656 ], [ -109.095185755473636, 26.034444147652785 ], [ -109.095185755473636, 26.032225532706118 ], [ -109.104187370922517, 26.023149380651564 ], [ -109.109370119211277, 26.020527381169138 ], [ -109.111279552791345, 26.018308766222468 ], [ -109.112643433919956, 26.014678305400647 ], [ -109.116189524854377, 25.985432926558197 ], [ -109.111006776565617, 25.974138159556979 ], [ -109.111552329017059, 25.971112775538792 ], [ -109.114552867500024, 25.963448469359392 ], [ -109.116189524854377, 25.961229854412721 ], [ -109.133101650849255, 25.942875858035737 ], [ -109.165289245484672, 25.904352634870857 ], [ -109.1723814273535, 25.898100174566608 ], [ -109.176473070739362, 25.893461252405395 ], [ -109.178109728093702, 25.889629099315691 ], [ -109.178655280545144, 25.884385100350841 ], [ -109.181655819028109, 25.87833433231447 ], [ -109.189293553348378, 25.86905648799204 ], [ -109.192294091831343, 25.86663618077749 ], [ -109.194749077862866, 25.864619258098703 ], [ -109.200750154828782, 25.861997258616274 ], [ -109.216298399695049, 25.856148182847786 ], [ -109.265398120325358, 25.842836493167773 ], [ -109.272763078419899, 25.839004340078073 ], [ -109.292402966672014, 25.834567110184736 ], [ -109.330591638273376, 25.828516342148369 ], [ -109.341502687302324, 25.828112957612611 ], [ -109.364961442714588, 25.832348495238069 ], [ -109.402877338090207, 25.836785725131406 ], [ -109.418152806730745, 25.837592494202923 ], [ -109.469980289618292, 25.836584032863527 ], [ -109.474890261681324, 25.837592494202923 ], [ -109.479527457518628, 25.844046646775048 ], [ -109.497257912190676, 25.87672079417144 ], [ -109.511715052154045, 25.874098794689012 ], [ -109.531082164180447, 25.859375259133849 ], [ -109.545266527918088, 25.846870338525353 ], [ -109.588365171582467, 25.854534644704753 ], [ -109.599548996837143, 25.855543106044149 ], [ -109.612642255671901, 25.85513972150839 ], [ -109.62027998999217, 25.85372787563324 ], [ -109.634191577504083, 25.84908895347202 ], [ -109.642647640501536, 25.847072030793232 ], [ -109.64973982237035, 25.846265261721715 ], [ -109.677835773619918, 25.844853415846565 ], [ -109.746575382502343, 25.835373879256252 ], [ -109.758304760208475, 25.832953572041703 ], [ -109.782581844297894, 25.826297727201698 ], [ -109.806858928387328, 25.818028344218661 ], [ -109.820497739673527, 25.811574191646535 ], [ -109.827589921542341, 25.808145423092594 ], [ -109.858413635049146, 25.785959273625906 ], [ -109.871779670109618, 25.777891582910748 ], [ -109.884327376492919, 25.773050968481655 ], [ -109.929881006188808, 25.751469895818605 ], [ -109.973252426078915, 25.728476977280405 ], [ -109.987709566042284, 25.718594056154334 ], [ -110.023170475386394, 25.690760523187038 ], [ -110.024261580289291, 25.689953754115521 ], [ -110.033263195738172, 25.687936831436733 ], [ -110.044992573444304, 25.687533446900975 ], [ -110.047447559475813, 25.687936831436733 ], [ -110.048265888152997, 25.6901554463834 ], [ -110.049356993055881, 25.691567292258554 ], [ -110.052084755313132, 25.692172369062192 ], [ -110.055358070021811, 25.69257575359795 ], [ -110.061904699439182, 25.690558830919159 ], [ -110.066269119050773, 25.694794368544617 ], [ -110.067360223953671, 25.699231598437954 ], [ -110.065178014147875, 25.706089135545838 ], [ -110.097092832557578, 25.721216055636759 ], [ -110.114550511003898, 25.726056670065855 ], [ -110.120824364195556, 25.726460054601613 ], [ -110.129553203418723, 25.734527745316772 ], [ -110.13228096567596, 25.741990359228293 ], [ -110.147283658090771, 25.739570052013747 ], [ -110.15573972108821, 25.736141283459805 ], [ -110.157649154668277, 25.734326053048893 ], [ -110.157103602216836, 25.726460054601613 ], [ -110.169651308600137, 25.718997440690092 ], [ -110.172651847083102, 25.719400825225851 ], [ -110.180289581403372, 25.724241439654946 ], [ -110.186563434595016, 25.726056670065855 ], [ -110.193928392689557, 25.723232978315551 ], [ -110.195565050043911, 25.721417747904638 ], [ -110.196656154946794, 25.718594056154334 ], [ -110.19638337872108, 25.716980518011304 ], [ -110.19720170739825, 25.716577133475546 ], [ -110.205930546621417, 25.715366979868271 ], [ -110.222024343939125, 25.720812671101001 ], [ -110.227479868453599, 25.727468515941009 ], [ -110.227479868453599, 25.730695592227072 ], [ -110.229116525807953, 25.735132822120409 ], [ -110.230480406936564, 25.736746360263439 ], [ -110.245483099351389, 25.744612358710722 ], [ -110.255575819703168, 25.747234358193147 ], [ -110.262940777797709, 25.748646204068301 ], [ -110.286945085661415, 25.740780205621022 ], [ -110.289672847918652, 25.733922668513134 ], [ -110.297037806013208, 25.735737898924047 ], [ -110.301947778076226, 25.769420507659831 ], [ -110.299765568270445, 25.791404964858639 ], [ -110.297856134690377, 25.796850656091372 ], [ -110.297310582238921, 25.809960653503502 ], [ -110.302220554301954, 25.813792806593206 ], [ -110.308221631267884, 25.81278434525381 ], [ -110.310676617299393, 25.811170807110777 ], [ -110.312040498428019, 25.804313270002893 ], [ -110.32540653348849, 25.800682809181072 ], [ -110.330043729325794, 25.800279424645314 ], [ -110.336317582517452, 25.798464194234402 ], [ -110.357866904349635, 25.782127120536206 ], [ -110.362504100186939, 25.776883121571352 ], [ -110.366322967347074, 25.768613738588318 ], [ -110.36686851979853, 25.762562970551947 ], [ -110.366322967347074, 25.753083433961635 ], [ -110.352411379835161, 25.736141283459805 ], [ -110.334680925163099, 25.725854977797976 ], [ -110.336044806291724, 25.722426209244034 ], [ -110.358958009252532, 25.718392363886455 ], [ -110.394964471048084, 25.724443131922826 ], [ -110.432880366423717, 25.736746360263439 ], [ -110.437517562261021, 25.745217435514355 ], [ -110.436426457358124, 25.74642758912163 ], [ -110.436699233583852, 25.749251280871938 ], [ -110.437517562261021, 25.750864819014968 ], [ -110.446519177709916, 25.752680049425877 ], [ -110.45361135957873, 25.756310510247701 ], [ -110.461794646350455, 25.757722356122851 ], [ -110.480070653473945, 25.75812574065861 ], [ -110.495618898340211, 25.757318971587097 ], [ -110.507621052272071, 25.747234358193147 ], [ -110.516622667720952, 25.736342975727684 ], [ -110.52289652091261, 25.733720976245255 ], [ -110.538171989553149, 25.733720976245255 ], [ -110.541445304261828, 25.735536206656167 ], [ -110.542809185390453, 25.736948052531318 ], [ -110.543081961616181, 25.738158206138593 ], [ -110.536808108424523, 25.752074972622243 ], [ -110.526988164298459, 25.759940971069522 ], [ -110.516622667720952, 25.77204250714226 ], [ -110.506802723594888, 25.805725115878047 ], [ -110.513622129237987, 25.809355576699865 ], [ -110.519077653752475, 25.805725115878047 ], [ -110.520714311106815, 25.799270963305919 ], [ -110.522078192235426, 25.790396503519244 ], [ -110.525078730718391, 25.783740658679239 ], [ -110.526715388072745, 25.783135581875602 ], [ -110.550719695936451, 25.757722356122851 ], [ -110.563540178545466, 25.743402205103447 ], [ -110.569268479285668, 25.735334514388288 ], [ -110.575542332477326, 25.72867866954828 ], [ -110.595454996955169, 25.712341595850088 ], [ -110.602274402598269, 25.710728057707055 ], [ -110.61727709501308, 25.708711135028267 ], [ -110.618640976141705, 25.709719596367659 ], [ -110.625187605559077, 25.704677289670684 ], [ -110.625187605559077, 25.702256982456138 ], [ -110.621914290850384, 25.691970676794313 ], [ -110.618095423690249, 25.684709755150671 ], [ -110.613731004078673, 25.685718216490063 ], [ -110.610184913144252, 25.690357138651279 ], [ -110.605274941081234, 25.693584214937342 ], [ -110.57499678002587, 25.710122980903417 ], [ -110.573360122671531, 25.710324673171296 ], [ -110.572269017768633, 25.709316211831904 ], [ -110.572269017768633, 25.707500981420992 ], [ -110.563267402319752, 25.703870520599171 ], [ -110.567904598157057, 25.689550369579763 ], [ -110.578542870960291, 25.674625141756721 ], [ -110.591636129795035, 25.664540528362771 ], [ -110.599273864115304, 25.662725297951862 ], [ -110.61564043765874, 25.646791608789425 ], [ -110.627097039139144, 25.633479919109412 ], [ -110.632007011202177, 25.625815612930012 ], [ -110.639371969296718, 25.611898846446365 ], [ -110.649737465874225, 25.594351619140895 ], [ -110.653829109260087, 25.592133004194228 ], [ -110.656829647743052, 25.591931311926349 ], [ -110.659284633774561, 25.592133004194228 ], [ -110.671832340157863, 25.601612540784537 ], [ -110.674014549963658, 25.605041309338482 ], [ -110.6745601024151, 25.607259924285149 ], [ -110.673196221286489, 25.611293769642728 ], [ -110.668013472997728, 25.619159768090007 ], [ -110.658466305097392, 25.629849458287591 ], [ -110.653556333034359, 25.631866380966382 ], [ -110.649191913422783, 25.641345917556691 ], [ -110.647555256068429, 25.647598377860941 ], [ -110.652465228131462, 25.649615300539729 ], [ -110.659557410000289, 25.646993301057304 ], [ -110.665558486966219, 25.642354378896087 ], [ -110.667740696772, 25.636706995395478 ], [ -110.6745601024151, 25.634084995913049 ], [ -110.689017242378469, 25.633681611377291 ], [ -110.692290557087162, 25.63771545673487 ], [ -110.695836648021569, 25.649816992807608 ], [ -110.696654976698738, 25.653850838165187 ], [ -110.688471689927027, 25.690357138651279 ], [ -110.685471151444062, 25.70024005977735 ], [ -110.681925060509656, 25.703870520599171 ], [ -110.668831801674898, 25.708711135028267 ], [ -110.666922368094831, 25.706895904617355 ], [ -110.661466843580357, 25.703668828331292 ], [ -110.649191913422783, 25.702256982456138 ], [ -110.632552563653618, 25.714963595332513 ], [ -110.623823724430451, 25.725854977797976 ], [ -110.620823185947486, 25.735536206656167 ], [ -110.593545563375102, 25.749654665407697 ], [ -110.579633975863175, 25.762159586016189 ], [ -110.556993549128094, 25.785959273625906 ], [ -110.544445842744793, 25.794430348876823 ], [ -110.541445304261828, 25.79503542568046 ], [ -110.535444227295898, 25.797859117430765 ], [ -110.527260940524187, 25.804111577735014 ], [ -110.526988164298459, 25.807742038556835 ], [ -110.527533716749915, 25.808548807628352 ], [ -110.533262017490117, 25.810969114842898 ], [ -110.537080884650251, 25.810969114842898 ], [ -110.541718080487556, 25.807540346288956 ], [ -110.548537486130655, 25.804918346806531 ], [ -110.550446919710723, 25.80512003907441 ], [ -110.550992472162164, 25.805725115878047 ], [ -110.552901905742232, 25.812380960718052 ], [ -110.552629129516518, 25.812582652985931 ], [ -110.556447996676653, 25.82206218957624 ], [ -110.554538563096585, 25.82589434266594 ], [ -110.55235635329079, 25.830734957095036 ], [ -110.549628591033553, 25.841021262756861 ], [ -110.550174143484995, 25.842634800899894 ], [ -110.550719695936451, 25.842634800899894 ], [ -110.55235635329079, 25.841828031828378 ], [ -110.553447458193688, 25.840819570488986 ], [ -110.556447996676653, 25.837390801935044 ], [ -110.55917575893389, 25.83214680297019 ], [ -110.559721311385331, 25.830533264827157 ], [ -110.561903521191127, 25.820650343701089 ], [ -110.561903521191127, 25.819036805558056 ], [ -110.562176297416855, 25.810969114842898 ], [ -110.561903521191127, 25.810162345771381 ], [ -110.566813493254159, 25.804918346806531 ], [ -110.573632898897259, 25.79886757877016 ], [ -110.5741784513487, 25.799270963305919 ], [ -110.574451227574428, 25.799472655573798 ], [ -110.575542332477326, 25.800481116913193 ], [ -110.576360661154496, 25.802901424127739 ], [ -110.576633437380224, 25.81036403803926 ], [ -110.5741784513487, 25.82428080452291 ], [ -110.569541255511396, 25.832751879773827 ], [ -110.568722926834226, 25.834365417916857 ], [ -110.565995164576989, 25.840617878221106 ], [ -110.564904059674092, 25.845458492650202 ], [ -110.566540717028431, 25.849492338007778 ], [ -110.567631821931329, 25.84908895347202 ], [ -110.578542870960291, 25.830734957095036 ], [ -110.584271171700493, 25.82044865143321 ], [ -110.585907829054833, 25.819036805558056 ], [ -110.591363353569307, 25.813994498861081 ], [ -110.597091654309509, 25.808952192164107 ], [ -110.602274402598269, 25.803103116395619 ], [ -110.604729388629778, 25.800279424645314 ], [ -110.606638822209845, 25.797052348359252 ], [ -110.606911598435573, 25.795640502484098 ], [ -110.614549332755843, 25.789993118983485 ], [ -110.628460920267756, 25.784345735482876 ], [ -110.630097577622109, 25.785757581358027 ], [ -110.632007011202177, 25.787774504036818 ], [ -110.634461997233686, 25.791404964858639 ], [ -110.635280325910855, 25.793018503001669 ], [ -110.635825878362311, 25.794228656608944 ], [ -110.634734773459414, 25.796245579287735 ], [ -110.623823724430451, 25.817019882879265 ], [ -110.62245984330184, 25.819440190093815 ], [ -110.616731542561638, 25.829121418952006 ], [ -110.613731004078673, 25.832348495238069 ], [ -110.609912136918538, 25.836987417399286 ], [ -110.601183297695371, 25.851509260686569 ], [ -110.603092731275439, 25.855946490579907 ], [ -110.605274941081234, 25.859980335937486 ], [ -110.61045768936998, 25.864619258098703 ], [ -110.610730465595708, 25.86300571995567 ], [ -110.611003241821436, 25.861593874080519 ], [ -110.612639899175775, 25.856148182847786 ], [ -110.613185451627217, 25.854534644704753 ], [ -110.61727709501308, 25.845458492650202 ], [ -110.623550948204723, 25.83597895605989 ], [ -110.625187605559077, 25.834970494720494 ], [ -110.630915906299279, 25.836180648327769 ], [ -110.63309811610506, 25.836584032863527 ], [ -110.633916444782244, 25.837189109667165 ], [ -110.634461997233686, 25.840416185953227 ], [ -110.636644207039481, 25.840416185953227 ], [ -110.638008088168093, 25.838600955542315 ], [ -110.639371969296718, 25.835172186988373 ], [ -110.638008088168093, 25.829121418952006 ], [ -110.63909919307099, 25.826297727201698 ], [ -110.642372507779683, 25.823272343183515 ], [ -110.652192451905734, 25.820246959165331 ], [ -110.655192990388699, 25.821457112772606 ], [ -110.656284095291596, 25.822667266379877 ], [ -110.656829647743052, 25.823877419987152 ], [ -110.657375200194494, 25.828718034416248 ], [ -110.66474015828905, 25.826902804005336 ], [ -110.670468459029252, 25.815002960200477 ], [ -110.670741235254965, 25.804514962270773 ], [ -110.672377892609319, 25.80269973185986 ], [ -110.684380046541165, 25.794632041144702 ], [ -110.689562794829925, 25.792211733930156 ], [ -110.694472766892943, 25.794430348876823 ], [ -110.698018857827364, 25.794026964341064 ], [ -110.707838801953415, 25.79120327259076 ], [ -110.713567102693617, 25.787572811768939 ], [ -110.71602208872514, 25.783740658679239 ], [ -110.72202316569107, 25.783337274143481 ], [ -110.727205913979816, 25.786160965893785 ], [ -110.739753620363118, 25.801086193716827 ], [ -110.741935830168913, 25.804918346806531 ], [ -110.723387046819681, 25.819036805558056 ], [ -110.714112655145072, 25.818431728754419 ], [ -110.702928829890396, 25.831945110702311 ], [ -110.695018319344399, 25.833962033381098 ], [ -110.6745601024151, 25.848080492132627 ], [ -110.66474015828905, 25.856954951919299 ], [ -110.656011319065868, 25.865426027170216 ], [ -110.64591859871409, 25.886603715297507 ], [ -110.64591859871409, 25.894268021476908 ], [ -110.64673692739126, 25.895478175084182 ], [ -110.650283018325666, 25.895881559619941 ], [ -110.665831263191933, 25.890032483851449 ], [ -110.666649591869117, 25.887813868904782 ], [ -110.668286249223456, 25.877124178707199 ], [ -110.671014011480693, 25.86905648799204 ], [ -110.674287326189386, 25.865224334902337 ], [ -110.686016703895504, 25.856753259651423 ], [ -110.719022627208105, 25.844853415846565 ], [ -110.720113732111002, 25.844651723578686 ], [ -110.742208606394627, 25.865829411705974 ], [ -110.752028550520691, 25.863610796759307 ], [ -110.756392970132282, 25.85130756841869 ], [ -110.758302403712349, 25.844651723578686 ], [ -110.758029627486621, 25.842231416364136 ], [ -110.755574641455098, 25.838197571006557 ], [ -110.755847417680826, 25.835373879256252 ], [ -110.756392970132282, 25.833962033381098 ], [ -110.762394047098198, 25.830129880291398 ], [ -110.771668438772821, 25.825692650398061 ], [ -110.777123963287295, 25.829323111219885 ], [ -110.780670054221702, 25.840416185953227 ], [ -110.782306711576055, 25.846668646257474 ], [ -110.777396739513023, 25.852921106561723 ], [ -110.776032858384397, 25.858366797794453 ], [ -110.772759543675718, 25.860585412741123 ], [ -110.764849033129721, 25.857358336455057 ], [ -110.759393508615233, 25.861997258616274 ], [ -110.765667361806891, 25.871476795206586 ], [ -110.772759543675718, 25.875914025099924 ], [ -110.778760620641634, 25.88599863849387 ], [ -110.781488382898885, 25.895679867352062 ], [ -110.776305634610125, 25.911613556514499 ], [ -110.774668977255786, 25.941060627624829 ], [ -110.77848784441592, 25.946304626589679 ], [ -110.785034473833292, 25.945699549786042 ], [ -110.801673823602442, 25.930169245159362 ], [ -110.80958433414844, 25.907378018889041 ], [ -110.810129886599896, 25.898705251370245 ], [ -110.809038781696998, 25.895881559619941 ], [ -110.809857110374168, 25.893461252405395 ], [ -110.811220991502779, 25.88983079158357 ], [ -110.818858725823048, 25.877527563242957 ], [ -110.826769236369046, 25.870468333867191 ], [ -110.841771928783857, 25.86905648799204 ], [ -110.845863572169719, 25.869459872527798 ], [ -110.851591872909921, 25.876317409635682 ], [ -110.851591872909921, 25.881359716332653 ], [ -110.850500768007024, 25.890032483851449 ], [ -110.855683516295784, 25.894671406012666 ], [ -110.863321250616053, 25.895074790548424 ], [ -110.86604901287329, 25.890637560655087 ], [ -110.868231222679086, 25.879544485921745 ], [ -110.867412894001916, 25.871275102938707 ], [ -110.863048474390325, 25.864417565830824 ], [ -110.863866803067495, 25.861190489544761 ], [ -110.868776775130527, 25.856148182847786 ], [ -110.870958984936323, 25.855744798312028 ], [ -110.877232838127966, 25.858165105526574 ], [ -110.880233376610931, 25.859980335937486 ], [ -110.882142810190999, 25.861795566348398 ], [ -110.884597796222522, 25.865224334902337 ], [ -110.884052243771066, 25.86905648799204 ], [ -110.885961677351133, 25.874300486956891 ], [ -110.886507229802589, 25.874905563760528 ], [ -110.892508306768519, 25.871073410670828 ], [ -110.896327173928654, 25.867644642116886 ], [ -110.89550884525147, 25.86139218181264 ], [ -110.889780544511268, 25.842029724096257 ], [ -110.905056013151807, 25.818431728754419 ], [ -110.923059244049597, 25.820650343701089 ], [ -110.923877572726767, 25.82206218957624 ], [ -110.927423663661173, 25.834567110184736 ], [ -110.93015142591841, 25.84122295502474 ], [ -110.936425279110068, 25.846870338525353 ], [ -110.940516922495917, 25.845861877185961 ], [ -110.939425817593019, 25.831541726166552 ], [ -110.938334712690136, 25.828919726684127 ], [ -110.937516384012952, 25.828718034416248 ], [ -110.934515845530001, 25.82589434266594 ], [ -110.937243607787238, 25.81661649834351 ], [ -110.939153041367305, 25.81661649834351 ], [ -110.94379023720461, 25.818633421022298 ], [ -110.945972447010405, 25.820246959165331 ], [ -110.958520153393692, 25.869661564795678 ], [ -110.95961125829659, 25.874905563760528 ], [ -110.959884034522318, 25.889427407047812 ], [ -110.958520153393692, 25.894873098280545 ], [ -110.964248454133894, 25.904756019406616 ], [ -110.967248992616859, 25.906167865281766 ], [ -110.974068398259959, 25.903344173531462 ], [ -110.972158964679892, 25.900117097245399 ], [ -110.971340636002722, 25.895478175084182 ], [ -110.969703978648383, 25.864820950366582 ], [ -110.969158426196927, 25.842836493167773 ], [ -110.96561233526252, 25.834970494720494 ], [ -110.957156272265081, 25.819641882361694 ], [ -110.949518537944812, 25.803103116395619 ], [ -110.949245761719084, 25.791404964858639 ], [ -110.953882957556388, 25.787774504036818 ], [ -110.962339020553827, 25.78353896641136 ], [ -110.963430125456725, 25.784749120018631 ], [ -110.968067321294029, 25.795237117948339 ], [ -110.96561233526252, 25.798464194234402 ], [ -110.967521768842587, 25.802094655056223 ], [ -110.984979447288922, 25.809758961235623 ], [ -110.991798852932021, 25.808750499896231 ], [ -110.992071629157735, 25.789589734447731 ], [ -110.98907109067477, 25.785757581358027 ], [ -110.984979447288922, 25.782127120536206 ], [ -110.981160580128787, 25.782732197339843 ], [ -110.973522845808517, 25.77184081487438 ], [ -110.972158964679892, 25.769218815391952 ], [ -110.972704517131348, 25.768412046320439 ], [ -110.974341174485687, 25.766395123641647 ], [ -110.981433356354501, 25.762966355087705 ], [ -110.993162734060633, 25.761756201480431 ], [ -110.999436587252291, 25.762159586016189 ], [ -111.012529846087034, 25.76034435560528 ], [ -111.011984293635592, 25.757520663854976 ], [ -111.012257069861306, 25.75429358756891 ], [ -111.032442510564877, 25.734124360781014 ], [ -111.046899650528246, 25.731300669030709 ], [ -111.055082937299971, 25.73109897676283 ], [ -111.058083475782922, 25.732914207173742 ], [ -111.062447895394513, 25.741788666960414 ], [ -111.063266224071683, 25.746629281389509 ], [ -111.062720671620241, 25.780513582393176 ], [ -111.061629566717343, 25.789993118983485 ], [ -111.05999290936299, 25.799674347841677 ], [ -111.054264608622788, 25.817624959682902 ], [ -111.047990755431144, 25.847072030793232 ], [ -111.048809084108314, 25.852114337490207 ], [ -111.054264608622788, 25.859576951401728 ], [ -111.057810699557209, 25.862198950884153 ], [ -111.060265685588718, 25.86280402768779 ], [ -111.061902342943057, 25.861997258616274 ], [ -111.062993447845955, 25.857156644187178 ], [ -111.062447895394513, 25.854332952436874 ], [ -111.068994524811885, 25.828516342148369 ], [ -111.074450049326359, 25.827507880808973 ], [ -111.076359482906426, 25.829928188023519 ], [ -111.081542231195186, 25.839609416881711 ], [ -111.090543846644067, 25.853929567901115 ], [ -111.096544923609997, 25.854938029240511 ], [ -111.09899990964152, 25.850702491615053 ], [ -111.095181042481386, 25.839206032345952 ], [ -111.092180503998421, 25.819440190093815 ], [ -111.09299883267559, 25.805926808145923 ], [ -111.094908266255658, 25.796648963823493 ], [ -111.097636028512895, 25.788379580840456 ], [ -111.102546000575927, 25.786160965893785 ], [ -111.103364329253097, 25.777084813839231 ], [ -111.09899990964152, 25.752074972622243 ], [ -111.09899990964152, 25.740175128817384 ], [ -111.101727671898757, 25.725653285530097 ], [ -111.103091553027369, 25.722829593779792 ], [ -111.108547077541857, 25.72101436336888 ], [ -111.111820392250536, 25.72101436336888 ], [ -111.114275378282059, 25.724039747387067 ], [ -111.12245866505377, 25.728073592744646 ], [ -111.124368098633838, 25.718795748422213 ], [ -111.123549769956668, 25.713148364921601 ], [ -111.122731441279498, 25.709921288635538 ], [ -111.119185350345091, 25.705484058742201 ], [ -111.116184811862126, 25.703467136063413 ], [ -111.111820392250536, 25.708912827296146 ], [ -111.109638182444741, 25.709316211831904 ], [ -111.106092091510334, 25.708307750492509 ], [ -111.101454895673029, 25.705080674206442 ], [ -111.097908804738623, 25.69418929174098 ], [ -111.094908266255658, 25.669784527327625 ], [ -111.090816622869795, 25.663733759291258 ], [ -111.086179427032491, 25.668776065988233 ], [ -111.085361098355321, 25.682894524739758 ], [ -111.081269454969458, 25.705080674206442 ], [ -111.079632797615119, 25.707500981420992 ], [ -111.07199506329485, 25.713148364921601 ], [ -111.053719056171346, 25.715972056671909 ], [ -111.046354098076804, 25.713551749457359 ], [ -111.042262454690942, 25.710324673171296 ], [ -111.03053307698481, 25.683499601543396 ], [ -111.02889641963047, 25.677045448971271 ], [ -111.034351944144944, 25.656876222183371 ], [ -111.049354636559769, 25.639127302610024 ], [ -111.051809622591279, 25.640740840753054 ], [ -111.054810161074244, 25.637513764466991 ], [ -111.058901804460106, 25.621983459840312 ], [ -111.05999290936299, 25.61472253819667 ], [ -111.062175119168785, 25.605041309338482 ], [ -111.062993447845955, 25.604032847999086 ], [ -111.062175119168785, 25.591326235122711 ], [ -111.060265685588718, 25.585073774818461 ], [ -111.054810161074244, 25.580636544925127 ], [ -111.048263531656872, 25.585880543889978 ], [ -111.041171349788044, 25.592939773265741 ], [ -111.040625797336602, 25.596570234087565 ], [ -111.041989678465214, 25.59939392583787 ], [ -111.041444126013772, 25.606251462945753 ], [ -111.036261377725012, 25.625008843858495 ], [ -111.024804776244608, 25.646993301057304 ], [ -111.022349790213099, 25.648606839200333 ], [ -111.018530923052964, 25.648606839200333 ], [ -110.984979447288922, 25.622185152108191 ], [ -110.979523922774433, 25.616134384071824 ], [ -110.978978370322992, 25.60847007789242 ], [ -110.979523922774433, 25.605646386142116 ], [ -110.966703440165418, 25.591931311926349 ], [ -110.96561233526252, 25.548567474332373 ], [ -110.962611796779555, 25.514279788792948 ], [ -110.97079508355128, 25.510447635703247 ], [ -110.982251685031684, 25.50843071302446 ], [ -110.992071629157735, 25.513473019721431 ], [ -110.993435510286361, 25.516296711471739 ], [ -110.994799391414972, 25.520128864561439 ], [ -110.995344943866428, 25.524364402186897 ], [ -110.99589049631787, 25.525776248062048 ], [ -111.001618797058072, 25.52920501661599 ], [ -111.00707432157256, 25.529608401151748 ], [ -111.011165964958423, 25.524767786722656 ], [ -111.009256531378355, 25.518918710954164 ], [ -111.006801545346832, 25.514279788792948 ], [ -111.006801545346832, 25.511456097042643 ], [ -111.017712594375794, 25.493707177469293 ], [ -111.02289534266454, 25.488463178504439 ], [ -111.025350328696064, 25.487051332629289 ], [ -111.028078090953301, 25.467083798109272 ], [ -111.021804237761643, 25.464865183162601 ], [ -111.020713132858759, 25.465671952234118 ], [ -111.018803699278692, 25.468293951716547 ], [ -111.01307539853849, 25.484832717682622 ], [ -111.001618797058072, 25.493303792933535 ], [ -110.999709363478004, 25.493707177469293 ], [ -110.9950721676407, 25.491690254790505 ], [ -110.993708286512089, 25.490278408915351 ], [ -110.993981062737802, 25.487051332629289 ], [ -110.9950721676407, 25.484227640878984 ], [ -111.00107324460663, 25.482009025932314 ], [ -111.000527692155188, 25.476361642431705 ], [ -110.988798314449056, 25.471924412538367 ], [ -110.983070013708854, 25.473134566145639 ], [ -110.982524461257398, 25.475958257895947 ], [ -110.983342789934568, 25.48281579500383 ], [ -110.984433894837466, 25.48684964036141 ], [ -110.982251685031684, 25.490076716647472 ], [ -110.968067321294029, 25.482412410468072 ], [ -110.97079508355128, 25.469907489859576 ], [ -110.973795622034231, 25.46748718264503 ], [ -110.973522845808517, 25.465671952234118 ], [ -110.970522307325552, 25.459621184197751 ], [ -110.969431202422655, 25.458612722858355 ], [ -110.961793468102385, 25.461638106876539 ], [ -110.959884034522318, 25.46365502955533 ], [ -110.961520691876657, 25.469302413055939 ], [ -110.963702901682453, 25.47131933573473 ], [ -110.963430125456725, 25.472529489342001 ], [ -110.959884034522318, 25.477370103771097 ], [ -110.957974600942251, 25.47898364191413 ], [ -110.94379023720461, 25.470714258931093 ], [ -110.943517460978882, 25.467285490377151 ], [ -110.944608565881779, 25.461638106876539 ], [ -110.945972447010405, 25.457805953786838 ], [ -110.946245223236119, 25.456797492447443 ], [ -110.953337405104946, 25.454578877500776 ], [ -110.956610719813625, 25.440057034213488 ], [ -110.955792391136455, 25.418072577014684 ], [ -110.948972985493356, 25.41645903887165 ], [ -110.946517999461847, 25.420694576497112 ], [ -110.943244684753154, 25.430174113087421 ], [ -110.943244684753154, 25.440460418749247 ], [ -110.938880265141577, 25.447721340392892 ], [ -110.929878649692682, 25.458209338322597 ], [ -110.918149271986564, 25.457805953786838 ], [ -110.911875418794907, 25.453368723893501 ], [ -110.909420432763397, 25.449536570803801 ], [ -110.909420432763397, 25.445502725446222 ], [ -110.921968139146699, 25.424123345051051 ], [ -110.927150887435445, 25.421299653300746 ], [ -110.927150887435445, 25.409803194031646 ], [ -110.925241453855378, 25.395483043012241 ], [ -110.922513691598141, 25.392659351261933 ], [ -110.915967062180769, 25.394676273940725 ], [ -110.90751099918333, 25.414845500728621 ], [ -110.904237684474637, 25.428963959480146 ], [ -110.90232825089457, 25.432392728034088 ], [ -110.899054936185891, 25.43662826565955 ], [ -110.896599950154368, 25.438645188338338 ], [ -110.889234992059826, 25.435216419784396 ], [ -110.887325558479759, 25.433401189373484 ], [ -110.886780006028303, 25.43198934349833 ], [ -110.886780006028303, 25.425535190926205 ], [ -110.890326096962724, 25.405971040941946 ], [ -110.899054936185891, 25.39346612033345 ], [ -110.915148733503599, 25.376927354367375 ], [ -110.920058705566632, 25.37269181674192 ], [ -110.921149810469529, 25.37269181674192 ], [ -110.926059782532548, 25.377129046635254 ], [ -110.926878111209732, 25.380557815189199 ], [ -110.93015142591841, 25.386205198689808 ], [ -110.932879188175647, 25.384591660546775 ], [ -110.934788621755715, 25.378540892510408 ], [ -110.93778916023868, 25.373700278081312 ], [ -110.94297190852744, 25.367246125509187 ], [ -110.946517999461847, 25.364019049223124 ], [ -110.961520691876657, 25.357363204383116 ], [ -110.967521768842587, 25.356556435311603 ], [ -110.968340097519757, 25.357766588918874 ], [ -110.965066782811078, 25.377532431171012 ], [ -110.961247915650944, 25.380759507457078 ], [ -110.957974600942251, 25.380557815189199 ], [ -110.950609642847709, 25.38196966106435 ], [ -110.947609104364744, 25.384188276011017 ], [ -110.947609104364744, 25.387011967761325 ], [ -110.951155195299151, 25.390239044047387 ], [ -110.960975139425216, 25.393869504869208 ], [ -110.968067321294029, 25.387818736832841 ], [ -110.980887803903059, 25.381767968796471 ], [ -110.992617181609191, 25.385600121886171 ], [ -110.993162734060633, 25.397701657958908 ], [ -110.990707748029124, 25.40113042651285 ], [ -111.003528230638139, 25.440863803285005 ], [ -111.007619874024002, 25.444494264106829 ], [ -111.010620412506967, 25.445502725446222 ], [ -111.016621489472897, 25.44207395689228 ], [ -111.018530923052964, 25.438846880606217 ], [ -111.016075937021441, 25.422509806908021 ], [ -111.011165964958423, 25.396491504351637 ], [ -111.006528769121104, 25.36643935643767 ], [ -111.008710978926899, 25.352119205418262 ], [ -111.011711517409864, 25.348690436864324 ], [ -111.018530923052964, 25.351514128614628 ], [ -111.021531461535929, 25.353329359025537 ], [ -111.022349790213099, 25.35494289716857 ], [ -111.022077013987371, 25.357968281186754 ], [ -111.024259223793166, 25.362002126544333 ], [ -111.030805853210538, 25.361800434276454 ], [ -111.038443587530807, 25.359380127061907 ], [ -111.038716363756535, 25.350707359543112 ], [ -111.037898035079365, 25.348892129132199 ], [ -111.043626335819567, 25.332958439969762 ], [ -111.050172965236939, 25.32569751832612 ], [ -111.05917458068582, 25.325495826058241 ], [ -111.05999290936299, 25.326504287397636 ], [ -111.060538461814446, 25.328521210076424 ], [ -111.059720133137276, 25.334975362648553 ], [ -111.059720133137276, 25.336185516255824 ], [ -111.059720133137276, 25.33719397759522 ], [ -111.060265685588718, 25.338000746666737 ], [ -111.061902342943057, 25.338404131202495 ], [ -111.063266224071683, 25.337597362130978 ], [ -111.065721210103192, 25.334773670380674 ], [ -111.070631182166224, 25.330336440487336 ], [ -111.073086168197747, 25.330336440487336 ], [ -111.073631720649189, 25.330941517290974 ], [ -111.075268378003528, 25.333966901309157 ], [ -111.07799614026078, 25.33719397759522 ], [ -111.079905573840847, 25.338807515738253 ], [ -111.081542231195186, 25.339815977077649 ], [ -111.082906112323798, 25.33961428480977 ], [ -111.083997217226695, 25.339210900274011 ], [ -111.084542769678151, 25.338605823470374 ], [ -111.085088322129593, 25.338000746666737 ], [ -111.085361098355321, 25.336185516255824 ], [ -111.090816622869795, 25.33174828636249 ], [ -111.091362175321251, 25.330941517290974 ], [ -111.091634951546965, 25.324689056986728 ], [ -111.095999371158555, 25.317024750807324 ], [ -111.103364329253097, 25.315007828128536 ], [ -111.106910420187504, 25.316621366271569 ], [ -111.109092629993299, 25.321058596164903 ], [ -111.112911497153434, 25.323277211111574 ], [ -111.116730364313568, 25.326907671933395 ], [ -111.117548692990738, 25.328521210076424 ], [ -111.117821469216466, 25.331143209558853 ], [ -111.119458126570805, 25.331949978630369 ], [ -111.124368098633838, 25.332151670898249 ], [ -111.1284597420197, 25.330739825023095 ], [ -111.131733056728393, 25.32569751832612 ], [ -111.133369714082733, 25.321058596164903 ], [ -111.138552462371479, 25.317226443075203 ], [ -111.141553000854444, 25.317629827610961 ], [ -111.142371329531613, 25.319848442557628 ], [ -111.142916881983069, 25.323277211111574 ], [ -111.144553539337409, 25.326100902861878 ], [ -111.147281301594646, 25.325495826058241 ], [ -111.150554616303339, 25.316621366271569 ], [ -111.156555693269269, 25.315209520396415 ], [ -111.158192350623608, 25.316016289467932 ], [ -111.159010679300778, 25.318234904414599 ], [ -111.159556231752219, 25.319243365753994 ], [ -111.159556231752219, 25.319646750289753 ], [ -111.159010679300778, 25.320655211629145 ], [ -111.158465126849336, 25.321461980700661 ], [ -111.157646798172152, 25.322672134307936 ], [ -111.158192350623608, 25.325092441522482 ], [ -111.156555693269269, 25.332756747701882 ], [ -111.15110016875478, 25.33961428480977 ], [ -111.151372944980508, 25.344051514703104 ], [ -111.153282378560576, 25.347480283257049 ], [ -111.156555693269269, 25.351312436346749 ], [ -111.159010679300778, 25.351917513150383 ], [ -111.165011756266708, 25.342236284292195 ], [ -111.172922266812691, 25.340017669345528 ], [ -111.184106092067381, 25.319646750289753 ], [ -111.184924420744551, 25.306940137413378 ], [ -111.181651106035858, 25.286770910625481 ], [ -111.189016064130413, 25.26942537558789 ], [ -111.208110399931087, 25.302301215252161 ], [ -111.209474281059698, 25.308553675556411 ], [ -111.22284031612017, 25.340824438417041 ], [ -111.230205274214725, 25.350505667275232 ], [ -111.237024679857825, 25.347681975524928 ], [ -111.24084354701796, 25.341429515220678 ], [ -111.229114169311828, 25.301292753912765 ], [ -111.231296379117609, 25.299880908037615 ], [ -111.232114707794793, 25.297057216287307 ], [ -111.23320581269769, 25.277493066303048 ], [ -111.236206351180641, 25.277694758570927 ], [ -111.244662414178094, 25.28092183485699 ], [ -111.248208505112501, 25.258533993122427 ], [ -111.249026833789671, 25.233322459637556 ], [ -111.234296917600574, 25.216582001403602 ], [ -111.225295302151693, 25.211338002438751 ], [ -111.221749211217272, 25.185521392150243 ], [ -111.238115784760708, 25.183504469471451 ], [ -111.253118477175533, 25.200043235437526 ], [ -111.265120631107379, 25.22081753902906 ], [ -111.281487204650816, 25.244818918906656 ], [ -111.285851624262392, 25.220212462225426 ], [ -111.266211736010277, 25.164343704022951 ], [ -111.267030064687447, 25.157082782379309 ], [ -111.266211736010277, 25.147804938056879 ], [ -111.268939498267514, 25.14135078548475 ], [ -111.272212812976207, 25.136510171055654 ], [ -111.285033295585222, 25.144174477235055 ], [ -111.290761596325424, 25.1667640112375 ], [ -111.306037064965963, 25.178058778238722 ], [ -111.32758638679816, 25.179874008649634 ], [ -111.337133554698497, 25.171201241130838 ], [ -111.338224659601394, 25.163133550415679 ], [ -111.330041372829669, 25.156679397843551 ], [ -111.32076698115506, 25.155065859700521 ], [ -111.310401484577554, 25.144779554038692 ], [ -111.311219813254723, 25.135098325180504 ], [ -111.318311995123537, 25.126223865393829 ], [ -111.319130323800721, 25.112912175713817 ], [ -111.316129785317756, 25.093953102533195 ], [ -111.327040834346704, 25.102020793248354 ], [ -111.33440579244126, 25.105247869534416 ], [ -111.331678030184008, 25.084473565942883 ], [ -111.339588540730006, 25.062287416476199 ], [ -111.349135708630342, 25.049177419064065 ], [ -111.353772904467661, 25.039294497937995 ], [ -111.364683953496609, 25.030218345883444 ], [ -111.372321687816878, 25.029814961347686 ], [ -111.373958345171218, 25.043126651027698 ], [ -111.372594464042606, 25.054018033493161 ], [ -111.377504436105639, 25.069951722655599 ], [ -111.384323841748738, 25.068741569048324 ], [ -111.385960499103078, 25.067128030905295 ], [ -111.393052680971891, 25.04433680463497 ], [ -111.392234352294722, 25.025377731454348 ], [ -111.396053219454856, 24.99794758302281 ], [ -111.400144862840719, 24.995728968076143 ], [ -111.404782058678023, 24.997342506219173 ], [ -111.406691492258091, 24.999359428897961 ], [ -111.40750982093526, 25.002384812916148 ], [ -111.406964268483819, 25.003796658791302 ], [ -111.407237044709547, 25.006015273737969 ], [ -111.407782597160988, 25.008032196416757 ], [ -111.410237583192497, 25.011259272702823 ], [ -111.413783674126918, 25.012066041774336 ], [ -111.416784212609883, 25.016906656203432 ], [ -111.42033030354429, 25.023764193311315 ], [ -111.421694184672901, 25.029008192276169 ], [ -111.420875855995732, 25.040706343813149 ], [ -111.424149170704425, 25.048572342260428 ], [ -111.425785828058764, 25.050790957207099 ], [ -111.427422485413103, 25.052001110814373 ], [ -111.429331918993171, 25.051396034010736 ], [ -111.432332457476136, 25.045546958242245 ], [ -111.433696338604761, 25.038286036598603 ], [ -111.433423562379033, 25.03263865309799 ], [ -111.434241891056203, 25.029008192276169 ], [ -111.43696965331344, 25.027999730936777 ], [ -111.441061296699303, 25.02880650000829 ], [ -111.442697954053642, 25.02739465413314 ], [ -111.440515744247861, 25.020738809293132 ], [ -111.437787981990624, 25.016503271667673 ], [ -111.432605233701864, 25.012469426310094 ], [ -111.426876932961662, 25.009040657756152 ], [ -111.425785828058764, 25.009444042291911 ], [ -111.423876394478697, 25.007427119613119 ], [ -111.420875855995732, 25.000972967040994 ], [ -111.420603079770018, 24.999359428897961 ], [ -111.420603079770018, 24.995527275808264 ], [ -111.418693646189951, 24.987661277360985 ], [ -111.417056988835597, 24.985846046950073 ], [ -111.419239198641392, 24.975963125824002 ], [ -111.429604695218899, 24.970920819127031 ], [ -111.429877471444627, 24.97112251139491 ], [ -111.433423562379033, 24.981408817056735 ], [ -111.435060219733373, 24.985240970146435 ], [ -111.437787981990624, 24.986249431485831 ], [ -111.441606849150759, 24.985442662414314 ], [ -111.447880702342403, 24.979996971181581 ], [ -111.44979013592247, 24.975559741288244 ], [ -111.450062912148198, 24.967290358305206 ], [ -111.44815347856813, 24.956197283571864 ], [ -111.450335688373912, 24.942482209356097 ], [ -111.45497288421123, 24.936431441319726 ], [ -111.459610080048535, 24.932397595962147 ], [ -111.462337842305772, 24.929170519676084 ], [ -111.467793366820246, 24.911623292370614 ], [ -111.474612772463345, 24.906782677941521 ], [ -111.474067220011904, 24.903757293923334 ], [ -111.468066143045974, 24.896496372279692 ], [ -111.464520052111567, 24.891252373314842 ], [ -111.463974499660111, 24.888832066100292 ], [ -111.464792828337295, 24.882781298063925 ], [ -111.471885010206108, 24.87007468518755 ], [ -111.475703877366243, 24.868864531580275 ], [ -111.479795520752106, 24.869469608383913 ], [ -111.481977730557901, 24.86624253209785 ], [ -111.482796059235071, 24.863015455811784 ], [ -111.484159940363682, 24.862612071276029 ], [ -111.486342150169477, 24.866444224365729 ], [ -111.488524359975273, 24.87168822333058 ], [ -111.488797136200986, 24.874511915080888 ], [ -111.487160478846647, 24.87773899136695 ], [ -111.489342688652442, 24.883588067135442 ], [ -111.494525436941188, 24.881167759920892 ], [ -111.49725319919844, 24.883588067135442 ], [ -111.502163171261458, 24.890848988779084 ], [ -111.503254276164355, 24.89326929599363 ], [ -111.50625481464732, 24.893672680529388 ], [ -111.507345919550218, 24.886815143421501 ], [ -111.50625481464732, 24.885201605278471 ], [ -111.506800367098776, 24.883588067135442 ], [ -111.508709800678844, 24.877335606831192 ], [ -111.509800905581727, 24.877133914563313 ], [ -111.51225589161325, 24.873705146009371 ], [ -111.508437024453116, 24.864023917151179 ], [ -111.507345919550218, 24.85857822591845 ], [ -111.50707314332449, 24.853535919221475 ], [ -111.510346458033183, 24.848896997060258 ], [ -111.517984192353452, 24.843451305827529 ], [ -111.522894164416485, 24.842241152220254 ], [ -111.524530821770824, 24.843652998095404 ], [ -111.525349150447994, 24.845468228506316 ], [ -111.529440793833857, 24.848291920256621 ], [ -111.534077989671161, 24.849502073863896 ], [ -111.541988500217158, 24.845468228506316 ], [ -111.545807367377293, 24.848896997060258 ], [ -111.547444024731632, 24.848896997060258 ], [ -111.548262353408802, 24.847283458917225 ], [ -111.548262353408802, 24.845871613042075 ], [ -111.54771680095736, 24.843451305827529 ], [ -111.548262353408802, 24.841030998612979 ], [ -111.550717339440325, 24.838005614594795 ], [ -111.560264507340662, 24.841636075416616 ], [ -111.57117555636961, 24.848090227988742 ], [ -111.573903318626847, 24.851518996542687 ], [ -111.57635830465837, 24.857771456846933 ], [ -111.579631619367063, 24.862006994472392 ], [ -111.581813829172845, 24.863015455811784 ], [ -111.585359920107265, 24.856964687775417 ], [ -111.585632696332979, 24.850107150667533 ], [ -111.587542129913047, 24.846880074381467 ], [ -111.595179864233316, 24.839820845005704 ], [ -111.599271507619179, 24.837198845523279 ], [ -111.600908164973518, 24.834778538308733 ], [ -111.601726493650688, 24.832156538826304 ], [ -111.59981706007062, 24.828727770272362 ], [ -111.595725416684772, 24.827719308932966 ], [ -111.594088759330418, 24.825904078522058 ], [ -111.593270430653249, 24.824492232646904 ], [ -111.592997654427535, 24.822677002235991 ], [ -111.593270430653249, 24.820055002753566 ], [ -111.597362074039111, 24.819248233682053 ], [ -111.606090913262278, 24.819046541414174 ], [ -111.609364227970957, 24.816021157395987 ], [ -111.609637004196685, 24.812390696574166 ], [ -111.607182018165176, 24.805734851734162 ], [ -111.607182018165176, 24.80230608318022 ], [ -111.609091451745243, 24.800087468233549 ], [ -111.633368535834663, 24.79444008473294 ], [ -111.635550745640458, 24.791616392982633 ], [ -111.637732955446253, 24.790204547107482 ], [ -111.641824598832102, 24.788994393500207 ], [ -111.644006808637897, 24.789599470303845 ], [ -111.649735109378099, 24.796255315143849 ], [ -111.652462871635336, 24.809567004823862 ], [ -111.653008424086792, 24.814407619252957 ], [ -111.654372305215404, 24.816827926467504 ], [ -111.670193326307398, 24.806945005341433 ], [ -111.678649389304837, 24.80613823626992 ], [ -111.689833214559513, 24.810575466163257 ], [ -111.690651543236697, 24.812189004306287 ], [ -111.689833214559513, 24.815012696056591 ], [ -111.688742109656616, 24.815819465128108 ], [ -111.6895604383338, 24.820055002753566 ], [ -111.695015962848274, 24.822071925432358 ], [ -111.700744263588476, 24.818844849146295 ], [ -111.701835368491373, 24.817029618735383 ], [ -111.707018116780119, 24.818844849146295 ], [ -111.716838060906184, 24.8446614594348 ], [ -111.714110298648947, 24.860191764061479 ], [ -111.71220086506888, 24.862813763543905 ], [ -111.70619978810295, 24.866645916633608 ], [ -111.702380920942815, 24.870478069723308 ], [ -111.701017039814204, 24.876932222295434 ], [ -111.701289816039917, 24.881167759920892 ], [ -111.707563669231575, 24.885806682082109 ], [ -111.707563669231575, 24.888428681564534 ], [ -111.705654235651508, 24.898311602690605 ], [ -111.694197634171104, 24.909808061959705 ], [ -111.683013808916414, 24.916867291335468 ], [ -111.678376613079109, 24.917472368139105 ], [ -111.675103298370431, 24.914446984120922 ], [ -111.672375536113179, 24.915657137728196 ], [ -111.671011654984568, 24.917674060406984 ], [ -111.670193326307398, 24.927355289265172 ], [ -111.668283892727331, 24.930380673283359 ], [ -111.656554515021199, 24.940061902141547 ], [ -111.64046071770349, 24.93784328719488 ], [ -111.634186864511832, 24.938650056266397 ], [ -111.631731878480323, 24.94167544028458 ], [ -111.627094682643019, 24.945104208838522 ], [ -111.622457486805715, 24.94550759337428 ], [ -111.618911395871294, 24.945104208838522 ], [ -111.619184172097022, 24.950549900071255 ], [ -111.622184710579987, 24.958617590786414 ], [ -111.618093067194124, 24.972736049537939 ], [ -111.615365304936887, 24.976971587163398 ], [ -111.603635927230755, 24.981812201592493 ], [ -111.595452640459044, 24.988468046432498 ], [ -111.584541591430082, 24.993712045397352 ], [ -111.58399603897864, 24.996939121683415 ], [ -111.584268815204368, 24.999762813433719 ], [ -111.586723801235877, 25.002788197451906 ], [ -111.58999711594457, 25.008032196416757 ], [ -111.590269892170284, 25.009847426827669 ], [ -111.58999711594457, 25.01186434950646 ], [ -111.573084989949677, 25.013679579917369 ], [ -111.57199388504678, 25.007427119613119 ], [ -111.572539437498236, 25.005208504666452 ], [ -111.570902780143896, 25.000166197969477 ], [ -111.567629465435203, 25.001174659308873 ], [ -111.564083374500797, 25.013881272185248 ], [ -111.563537822049341, 25.01731004073919 ], [ -111.565992808080864, 25.020133732489494 ], [ -111.57199388504678, 25.021948962900407 ], [ -111.578540514464166, 25.030621730419202 ], [ -111.580177171818505, 25.03505896031254 ], [ -111.579904395592777, 25.037680959794965 ], [ -111.574176094852575, 25.041916497420424 ], [ -111.565447255629408, 25.052202803082249 ], [ -111.56517447940368, 25.055228187100433 ], [ -111.565720031855136, 25.056438340707707 ], [ -111.566538360532306, 25.064909415958624 ], [ -111.564083374500797, 25.071968645334387 ], [ -111.552081220568937, 25.097583563355016 ], [ -111.536260199476956, 25.119164636018066 ], [ -111.540897395314261, 25.117349405607154 ], [ -111.547444024731632, 25.111500329838663 ], [ -111.552081220568937, 25.112710483445937 ], [ -111.553990654149004, 25.11432402158897 ], [ -111.558900626212036, 25.11452571385685 ], [ -111.566538360532306, 25.111096945302908 ], [ -111.575812752206929, 25.101012331908958 ], [ -111.585632696332979, 25.086288796353795 ], [ -111.592452101976079, 25.074187260281057 ], [ -111.612364766453922, 25.046958804117399 ], [ -111.622730263031428, 25.043328343295578 ], [ -111.632004654706051, 25.035664037116177 ], [ -111.634186864511832, 25.033243729901628 ], [ -111.634186864511832, 25.031630191758595 ], [ -111.633641312060391, 25.027192961865261 ], [ -111.634732416963288, 25.024369270114953 ], [ -111.636914626769084, 25.021343886096769 ], [ -111.645097913540795, 25.014889733524644 ], [ -111.67755828440194, 25.012671118577973 ], [ -111.689014885882344, 25.016503271667673 ], [ -111.70538145942578, 25.024369270114953 ], [ -111.71820194203481, 25.029411576811928 ], [ -111.727476333709419, 25.034655575776782 ], [ -111.734295739352518, 25.041916497420424 ], [ -111.737569054061197, 25.046152035045882 ], [ -111.741933473672788, 25.05421972576104 ], [ -111.742751802349957, 25.058455263386499 ], [ -111.741933473672788, 25.064707723690745 ], [ -111.739205711415551, 25.076204182959845 ], [ -111.738387382738381, 25.090726026247133 ], [ -111.74002404009272, 25.10665971540957 ], [ -111.738932935189823, 25.111702022106542 ], [ -111.736477949158314, 25.116542636535637 ], [ -111.734568515578246, 25.126627249929587 ], [ -111.734295739352518, 25.139333862805962 ], [ -111.736205172932586, 25.169587702987805 ], [ -111.73565962048113, 25.180680777721147 ], [ -111.729385767289486, 25.193992467401159 ], [ -111.724748571452182, 25.209926156563597 ], [ -111.722293585420658, 25.215976924599964 ], [ -111.71220086506888, 25.232112306030281 ], [ -111.708109221683017, 25.241188458084835 ], [ -111.704290354522882, 25.252886609621815 ], [ -111.694743186622546, 25.276686297231532 ], [ -111.693379305493934, 25.284350603410935 ], [ -111.693924857945376, 25.302704599787919 ], [ -111.696107067751171, 25.316217981735811 ], [ -111.699653158685578, 25.329327979147941 ], [ -111.703199249619985, 25.343849822435224 ], [ -111.702926473394271, 25.347076898721291 ], [ -111.701562592265645, 25.350707359543112 ], [ -111.690105990785241, 25.360791972937058 ], [ -111.688742109656616, 25.359783511597662 ], [ -111.688469333430902, 25.36018689613342 ], [ -111.690651543236697, 25.37430535488495 ], [ -111.691469871913867, 25.382776430135866 ], [ -111.692833753042478, 25.390844120851025 ], [ -111.699107606234136, 25.417870884746804 ], [ -111.699653158685578, 25.421299653300746 ], [ -111.699107606234136, 25.432392728034088 ], [ -111.700744263588476, 25.434611342980759 ], [ -111.709745879037371, 25.43824180380258 ], [ -111.715746956003287, 25.442679033695917 ], [ -111.717929165809082, 25.445099340910463 ], [ -111.721202480517775, 25.450746724411076 ], [ -111.724748571452182, 25.459016107394113 ], [ -111.726112452580793, 25.463049952751692 ], [ -111.728294662386588, 25.468092259448667 ], [ -111.733204634449621, 25.475756565628068 ], [ -111.741115144995618, 25.483622564075347 ], [ -111.747116221961534, 25.491891947058384 ], [ -111.750389536670227, 25.498749484166268 ], [ -111.751207865347396, 25.502985021791726 ], [ -111.74684344573582, 25.50843071302446 ], [ -111.744388459704297, 25.510851020239006 ], [ -111.731840753320995, 25.51750686507901 ], [ -111.726385228806521, 25.522145787240227 ], [ -111.724748571452182, 25.524364402186897 ], [ -111.723657466549284, 25.527793170740839 ], [ -111.723657466549284, 25.530213477955385 ], [ -111.725021347677909, 25.533037169705693 ], [ -111.723657466549284, 25.535457476920239 ], [ -111.715474179777573, 25.540499783617214 ], [ -111.693106529268206, 25.547962397528735 ], [ -111.684104913819311, 25.551996242886315 ], [ -111.679467717982007, 25.556231780511773 ], [ -111.677285508176212, 25.558652087726319 ], [ -111.67755828440194, 25.560669010405107 ], [ -111.6759216270476, 25.56470285576269 ], [ -111.656008962569757, 25.590721158319074 ], [ -111.654645081441132, 25.593343157801499 ], [ -111.654372305215404, 25.595158388212411 ], [ -111.64809845202376, 25.604436232534844 ], [ -111.641824598832102, 25.612503923250003 ], [ -111.635823521866186, 25.623596997983345 ], [ -111.625185249062952, 25.638925610342145 ], [ -111.621639158128545, 25.649615300539729 ], [ -111.60745479439089, 25.661111759808833 ], [ -111.603908703456483, 25.665750681970046 ], [ -111.591633773298909, 25.67724714123915 ], [ -111.591633773298909, 25.680070832989454 ], [ -111.58999711594457, 25.681684371132484 ], [ -111.580722724269947, 25.688340215972492 ], [ -111.576903857109812, 25.692777445865829 ], [ -111.57199388504678, 25.700038367509471 ], [ -111.567083912983747, 25.702660366991896 ], [ -111.561082836017832, 25.700845136580988 ], [ -111.557536745083411, 25.698223137098559 ], [ -111.546625696054463, 25.684709755150671 ], [ -111.538715185508465, 25.676036987631875 ], [ -111.531350227413924, 25.668977758256112 ], [ -111.526167479125164, 25.665952374237925 ], [ -111.519348073482064, 25.663733759291258 ], [ -111.512528667838978, 25.6633303747555 ], [ -111.489069912426714, 25.664540528362771 ], [ -111.486069373943749, 25.665145605166408 ], [ -111.480068296977834, 25.665145605166408 ], [ -111.481704954332173, 25.667364220113079 ], [ -111.481704954332173, 25.668977758256112 ], [ -111.480341073203547, 25.670187911863383 ], [ -111.462883394757228, 25.679667448453696 ], [ -111.45497288421123, 25.685314831954308 ], [ -111.44979013592247, 25.697416368027042 ], [ -111.446244044988063, 25.70185359792038 ], [ -111.442425177827928, 25.703467136063413 ], [ -111.438333534442066, 25.703668828331292 ], [ -111.428240814090287, 25.706895904617355 ], [ -111.426604156735934, 25.705282366474322 ], [ -111.423876394478697, 25.705484058742201 ], [ -111.423330842027255, 25.717787287082817 ], [ -111.424421946930153, 25.720812671101001 ], [ -111.427968037864559, 25.730493899959193 ], [ -111.431514128798966, 25.732914207173742 ], [ -111.440242968022133, 25.737149744799197 ], [ -111.440515744247861, 25.738158206138593 ], [ -111.447335149890961, 25.744814050978597 ], [ -111.45497288421123, 25.751066511282847 ], [ -111.460701184951432, 25.750864819014968 ], [ -111.475976653591971, 25.757318971587097 ], [ -111.487160478846647, 25.760747740141035 ], [ -111.507618695775946, 25.768815430856193 ], [ -111.514165325193318, 25.770428968999227 ], [ -111.516893087450555, 25.77204250714226 ], [ -111.516347534999113, 25.776883121571352 ], [ -111.508709800678844, 25.796850656091372 ], [ -111.505982038421593, 25.80653188494956 ], [ -111.506800367098776, 25.809153884431986 ], [ -111.507618695775946, 25.813187729789568 ], [ -111.528622465156687, 25.815002960200477 ], [ -111.541442947765702, 25.813591114325327 ], [ -111.556991192631969, 25.810162345771381 ], [ -111.566811136758034, 25.80512003907441 ], [ -111.568993346563829, 25.802901424127739 ], [ -111.570630003918168, 25.80269973185986 ], [ -111.574176094852575, 25.804514962270773 ], [ -111.577722185786996, 25.803506500931377 ], [ -111.577449409561268, 25.802901424127739 ], [ -111.579086066915607, 25.801489578252585 ], [ -111.583450486527198, 25.799069271038039 ], [ -111.595998192910486, 25.794632041144702 ], [ -111.601999269876416, 25.79120327259076 ], [ -111.611273661551024, 25.788379580840456 ], [ -111.614819752485445, 25.788581273108335 ], [ -111.61782029096841, 25.789791426715606 ], [ -111.63527796941473, 25.799472655573798 ], [ -111.641551822606388, 25.797859117430765 ], [ -111.641551822606388, 25.796850656091372 ], [ -111.644552361089353, 25.795237117948339 ], [ -111.650007885603827, 25.796850656091372 ], [ -111.655190633892573, 25.801287885984706 ], [ -111.657372843698369, 25.801489578252585 ], [ -111.658463948601266, 25.799876040109556 ], [ -111.657645619924097, 25.789791426715606 ], [ -111.658736724826994, 25.785757581358027 ], [ -111.660100605955606, 25.782328812804085 ], [ -111.663646696890027, 25.777488198374989 ], [ -111.685741571173665, 25.760949432408914 ], [ -111.688469333430902, 25.75812574065861 ], [ -111.689287662108072, 25.756108817979822 ], [ -111.698016501331239, 25.748444511800422 ], [ -111.704290354522882, 25.745419127782235 ], [ -111.707290893005847, 25.746629281389509 ], [ -111.707836445457303, 25.746225896853751 ], [ -111.708654774134473, 25.745419127782235 ], [ -111.708654774134473, 25.744410666442842 ], [ -111.708109221683017, 25.742998820567689 ], [ -111.708654774134473, 25.740780205621022 ], [ -111.709745879037371, 25.738158206138593 ], [ -111.71220086506888, 25.736746360263439 ], [ -111.715746956003287, 25.734326053048893 ], [ -111.719838599389149, 25.730493899959193 ], [ -111.721748032969217, 25.727670208208888 ], [ -111.727749109935147, 25.708711135028267 ], [ -111.72802188616086, 25.704677289670684 ], [ -111.731840753320995, 25.683701293811275 ], [ -111.731567977095281, 25.680070832989454 ], [ -111.731840753320995, 25.676843756703391 ], [ -111.733477410675349, 25.669784527327625 ], [ -111.736750725384027, 25.661111759808833 ], [ -111.741387921221332, 25.658288068058525 ], [ -111.754481180056089, 25.653447453629433 ], [ -111.7626644668278, 25.64941360827185 ], [ -111.765119452859324, 25.646388224253666 ], [ -111.765665005310765, 25.644169609306999 ], [ -111.768392767568002, 25.638118841270629 ], [ -111.771666082276695, 25.634891764984566 ], [ -111.774393844533932, 25.63388330364517 ], [ -111.788305432045846, 25.632068073234262 ], [ -111.797307047494741, 25.629446073751833 ], [ -111.79976203352625, 25.628034227876682 ], [ -111.81012753010377, 25.616336076339703 ], [ -111.815855830843972, 25.607461616553028 ], [ -111.824039117615683, 25.596570234087565 ], [ -111.826221327421479, 25.590922850586953 ], [ -111.826494103647207, 25.588704235640286 ], [ -111.832495180613122, 25.577812853174819 ], [ -111.834950166644646, 25.574989161424515 ], [ -111.839314586256222, 25.573375623281482 ], [ -111.839314586256222, 25.567526547512994 ], [ -111.841224019836289, 25.561072394940865 ], [ -111.848861754156559, 25.548365782064494 ], [ -111.849952859059457, 25.545340398046307 ], [ -111.850771187736626, 25.540701475885093 ], [ -111.848316201705117, 25.534247323312965 ], [ -111.844497334544982, 25.527389786205081 ], [ -111.840951243610562, 25.522750864043864 ], [ -111.833040733064578, 25.514481481060827 ], [ -111.816128607069686, 25.491891947058384 ], [ -111.815310278392516, 25.489875024379593 ], [ -111.814764725941075, 25.485437794486256 ], [ -111.815310278392516, 25.48281579500383 ], [ -111.816401383295414, 25.481403949128676 ], [ -111.822675236487072, 25.480798872325039 ], [ -111.824039117615683, 25.481403949128676 ], [ -111.827039656098648, 25.484025948611105 ], [ -111.83276795683885, 25.485034409950501 ], [ -111.837405152676155, 25.485034409950501 ], [ -111.839314586256222, 25.486042871289893 ], [ -111.842860677190629, 25.489875024379593 ], [ -111.845315663222152, 25.491690254790505 ], [ -111.850498411510898, 25.493505485201414 ], [ -111.852407845090966, 25.492698716129901 ], [ -111.852953397542421, 25.491286870254747 ], [ -111.848316201705117, 25.48664794809353 ], [ -111.847770649253661, 25.485639486754135 ], [ -111.847497873027947, 25.484832717682622 ], [ -111.851589516413796, 25.48059718005716 ], [ -111.860591131862691, 25.473941335217155 ], [ -111.861409460539861, 25.475958257895947 ], [ -111.861682236765589, 25.479387026449889 ], [ -111.862500565442758, 25.480193795521402 ], [ -111.86386444657137, 25.48059718005716 ], [ -111.86822886618296, 25.479185334182009 ], [ -111.867683313731504, 25.476966719235342 ], [ -111.867956089957232, 25.474143027485034 ], [ -111.870683852214469, 25.473134566145639 ], [ -111.872866062020265, 25.475756565628068 ], [ -111.893051502723836, 25.453973800697138 ], [ -111.893869831401005, 25.425938575461963 ], [ -111.89250595027238, 25.399920272905575 ], [ -111.894688160078175, 25.398105042494667 ], [ -111.898234251012582, 25.397701657958908 ], [ -111.904235327978512, 25.392861043529813 ], [ -111.915146377007474, 25.375313816224345 ], [ -111.921965782650574, 25.358573357990391 ], [ -111.922511335102016, 25.355346281704328 ], [ -111.923056887553471, 25.342639668827953 ], [ -111.922238558876302, 25.336790593059462 ], [ -111.919510796619051, 25.329126286880062 ], [ -111.917601363038983, 25.32569751832612 ], [ -111.913236943427407, 25.320050134825507 ], [ -111.910236404944442, 25.31783151987884 ], [ -111.893051502723836, 25.312385828646107 ], [ -111.905053656655681, 25.298065677626703 ], [ -111.906144761558579, 25.29625044721579 ], [ -111.906963090235749, 25.292418294126094 ], [ -111.914600824556018, 25.289191217840028 ], [ -111.917328586813269, 25.28717429516124 ], [ -111.918146915490439, 25.285560757018207 ], [ -111.918965244167609, 25.28314044980366 ], [ -111.918965244167609, 25.274669374552744 ], [ -111.917601363038983, 25.26942537558789 ], [ -111.917328586813269, 25.262971223015764 ], [ -111.920056349070506, 25.255508609104243 ], [ -111.921965782650574, 25.25389507096121 ], [ -111.926875754713606, 25.252886609621815 ], [ -111.929603516970843, 25.251474763746664 ], [ -111.93396793658242, 25.245827380246052 ], [ -111.941605670902689, 25.233120767369677 ], [ -111.942969552031315, 25.228078460672705 ], [ -111.943515104482756, 25.221220923564818 ], [ -111.944878985611382, 25.219405693153909 ], [ -111.959063349349023, 25.213354925117539 ], [ -111.959881678026193, 25.214161694189055 ], [ -111.960154454251921, 25.214968463260572 ], [ -111.960700006703362, 25.216380309135722 ], [ -111.964246097637783, 25.216783693671481 ], [ -111.969428845926529, 25.221826000368456 ], [ -111.971883831958053, 25.222431077172093 ], [ -111.977884908923969, 25.21920400088603 ], [ -111.981703776084103, 25.218598924082393 ], [ -111.987704853050033, 25.213354925117539 ], [ -111.985795419469966, 25.209522772027839 ], [ -111.986886524372864, 25.202866927187834 ], [ -111.986068195695694, 25.199438158633889 ], [ -111.983340433438457, 25.193589082865401 ], [ -111.978430461375424, 25.187941699364792 ], [ -111.969701622152257, 25.185521392150243 ], [ -111.967246636120734, 25.186328161221759 ], [ -111.964791650089225, 25.185924776686001 ], [ -111.96260944028343, 25.180882469989026 ], [ -111.964246097637783, 25.175033394220538 ], [ -111.963700545186327, 25.173823240613263 ], [ -111.95579003464033, 25.168175857112651 ], [ -111.950061733900128, 25.1667640112375 ], [ -111.93996901354835, 25.162326781344163 ], [ -111.93314960790525, 25.155065859700521 ], [ -111.930694621873741, 25.150628629807184 ], [ -111.929603516970843, 25.1399389396096 ], [ -111.931512950550911, 25.133484787037471 ], [ -111.934240712808148, 25.127837403536859 ], [ -111.93396793658242, 25.122996789107766 ], [ -111.93314960790525, 25.120173097357458 ], [ -111.93915068487118, 25.109080022624116 ], [ -111.943515104482756, 25.098390332426533 ], [ -111.942969552031315, 25.082053258728337 ], [ -111.942969552031315, 25.07600249069197 ], [ -111.943787880708484, 25.073380491209541 ], [ -111.951152838803026, 25.066522954101657 ], [ -111.96097278292909, 25.060472186065287 ], [ -111.962882216509158, 25.05583326390407 ], [ -111.96260944028343, 25.051396034010736 ], [ -111.973520489312392, 25.047160496385274 ], [ -111.977066580246799, 25.047563880921032 ], [ -111.979248790052594, 25.049177419064065 ], [ -111.983067657212729, 25.04816895772467 ], [ -111.986886524372864, 25.045345265974365 ], [ -111.993705930015963, 25.043328343295578 ], [ -111.997797573401812, 25.044538496902849 ], [ -112.006253636399265, 25.044941881438607 ], [ -112.0100725035594, 25.043933420099215 ], [ -112.015528028073874, 25.040706343813149 ], [ -112.021529105039804, 25.034050498973144 ], [ -112.034622363874547, 25.025579423722228 ], [ -112.050170608740814, 25.023360808775557 ], [ -112.052625594772323, 25.020537117025253 ], [ -112.052625594772323, 25.018318502078586 ], [ -112.056990014383913, 25.009242350024032 ], [ -112.061081657769762, 25.004200043327057 ], [ -112.061899986446946, 25.000569582505236 ], [ -112.06135443399549, 24.998956044362206 ], [ -112.059172224189695, 24.996737429415536 ], [ -112.05453502835239, 24.997745890754931 ], [ -112.050988937417983, 25.003796658791302 ], [ -112.047170070257849, 25.006015273737969 ], [ -112.042532874420544, 25.007023735077361 ], [ -112.038986783486138, 25.006822042809485 ], [ -112.029166839360073, 25.002183120648269 ], [ -112.023165762394143, 25.007427119613119 ], [ -112.019346895234008, 25.016704963935553 ], [ -112.004889755270639, 25.020537117025253 ], [ -112.001616440561946, 25.01952865568586 ], [ -111.999979783207607, 25.018116809810707 ], [ -111.995615363596031, 25.011259272702823 ], [ -111.993978706241677, 25.002788197451906 ], [ -111.994797034918861, 24.970517434591272 ], [ -111.995888139821744, 24.955188822232472 ], [ -112.007071965076435, 24.946112670177918 ], [ -112.0100725035594, 24.945305901106401 ], [ -112.014709699396704, 24.933002672765785 ], [ -112.02589352465138, 24.920901136693047 ], [ -112.031349049165868, 24.91868252174638 ], [ -112.035167916326003, 24.920699444425168 ], [ -112.037622902357512, 24.92251467483608 ], [ -112.043078426871986, 24.932599288230026 ], [ -112.045806189129223, 24.933204365033664 ], [ -112.049079503837916, 24.931792519158513 ], [ -112.051534489869425, 24.929977288747601 ], [ -112.051534489869425, 24.929372211943964 ], [ -112.051261713643711, 24.928363750604568 ], [ -112.048806727612188, 24.924934982050626 ], [ -112.04471508422634, 24.917472368139105 ], [ -112.044442308000612, 24.915657137728196 ], [ -112.044987860452053, 24.913438522781526 ], [ -112.046078965354951, 24.912228369174251 ], [ -112.053171147223779, 24.908396216084551 ], [ -112.059717776641151, 24.912631753710009 ], [ -112.063536643801285, 24.913841907317284 ], [ -112.065991629832794, 24.913640215049405 ], [ -112.069537720767215, 24.911623292370614 ], [ -112.071174378121555, 24.91243006144213 ], [ -112.072265483024452, 24.913841907317284 ], [ -112.072538259250166, 24.917875752674863 ], [ -112.068446615864318, 24.92251467483608 ], [ -112.06735551096142, 24.926750212461538 ], [ -112.06817383963859, 24.936834825855485 ], [ -112.071992706798724, 24.956197283571864 ], [ -112.092178147502295, 24.976568202627639 ], [ -112.096269790888158, 24.978988509842189 ], [ -112.094087581082363, 24.966483589233693 ], [ -112.0899959376965, 24.957810821714897 ], [ -112.087540951664991, 24.951154976874889 ], [ -112.085631518084924, 24.946314362445797 ], [ -112.083722084504856, 24.939053440802155 ], [ -112.082903755827687, 24.933809441837301 ], [ -112.083449308279128, 24.915657137728196 ], [ -112.085085965633468, 24.911018215566976 ], [ -112.098452000693939, 24.902143755780305 ], [ -112.104180301434141, 24.90476575526273 ], [ -112.110726930851513, 24.909404677423947 ], [ -112.113454693108764, 24.902748832583939 ], [ -112.113727469334478, 24.897706525886967 ], [ -112.11263636443158, 24.894681141868784 ], [ -112.107726392368562, 24.890848988779084 ], [ -112.099543105596837, 24.890243911975446 ], [ -112.097360895791041, 24.886613451153625 ], [ -112.0968153433396, 24.882377913528167 ], [ -112.098724776919667, 24.867049301169367 ], [ -112.099815881822565, 24.864628993954817 ], [ -112.107180839917106, 24.863418840347542 ], [ -112.111272483302969, 24.8638222248833 ], [ -112.114818574237376, 24.863015455811784 ], [ -112.129548490426473, 24.857166380043296 ], [ -112.13827732964964, 24.851922381078442 ], [ -112.137186224746742, 24.842241152220254 ], [ -112.128184609297847, 24.836392076451762 ], [ -112.119182993848966, 24.82529900171842 ], [ -112.115909679140273, 24.819248233682053 ], [ -112.11945577007468, 24.805129774930524 ], [ -112.123274637234815, 24.801701006376582 ], [ -112.135549567392388, 24.794036700197182 ], [ -112.139095658326809, 24.792423162054149 ], [ -112.148370050001418, 24.793229931125666 ], [ -112.155462231870246, 24.788994393500207 ], [ -112.158189994127483, 24.786170701749903 ], [ -112.160644980158992, 24.781531779588686 ], [ -112.163099966190515, 24.771850550730495 ], [ -112.164463847319126, 24.772052242998374 ], [ -112.165827728447752, 24.774270857945044 ], [ -112.167464385802091, 24.776086088355953 ], [ -112.174283791445191, 24.77447255021292 ], [ -112.174829343896647, 24.77306070433777 ], [ -112.174829343896647, 24.771447166194736 ], [ -112.174829343896647, 24.768623474444432 ], [ -112.176466001250986, 24.767211628569278 ], [ -112.180557644636849, 24.765799782694128 ], [ -112.183285406894086, 24.767413320837157 ], [ -112.185467616699867, 24.767816705372915 ], [ -112.187104274054221, 24.767009936301399 ], [ -112.189013707634288, 24.764589629086853 ], [ -112.193105351020137, 24.756521938371694 ], [ -112.195833113277388, 24.755110092496544 ], [ -112.199651980437523, 24.753899938889269 ], [ -112.199924756663236, 24.751479631674719 ], [ -112.199106427986067, 24.748252555388657 ], [ -112.19392367969732, 24.744420402298957 ], [ -112.178375434831054, 24.748655939924415 ], [ -112.176738777476714, 24.745832248174111 ], [ -112.175920448799531, 24.741193326012894 ], [ -112.185194840474153, 24.732520558494098 ], [ -112.191741469891525, 24.724654560046819 ], [ -112.192559798568695, 24.718805484278327 ], [ -112.193105351020137, 24.706905640473472 ], [ -112.18955926008573, 24.68592964461406 ], [ -112.186285945377051, 24.683711029667389 ], [ -112.192014246117253, 24.664550264218889 ], [ -112.199379204211795, 24.653053804949788 ], [ -112.205107504951997, 24.648213190520693 ], [ -112.208653595886403, 24.646801344645539 ], [ -112.208926372112131, 24.644784421966751 ], [ -112.205380281177725, 24.636111654447955 ], [ -112.203470847597657, 24.633086270429772 ], [ -112.202106966469032, 24.635103193108563 ], [ -112.20156141401759, 24.63732180805523 ], [ -112.199379204211795, 24.640548884341293 ], [ -112.18874093140856, 24.641960730216447 ], [ -112.186831497828493, 24.640952268877051 ], [ -112.183285406894086, 24.632481193626134 ], [ -112.181921525765461, 24.628043963732797 ], [ -112.182467078216916, 24.624615195178855 ], [ -112.186285945377051, 24.617152581267334 ], [ -112.186013169151323, 24.613320428177634 ], [ -112.182467078216916, 24.606059506533992 ], [ -112.176193225025258, 24.596983354479438 ], [ -112.172374357865124, 24.5925461245861 ], [ -112.172647134090852, 24.595773200872163 ], [ -112.167464385802091, 24.6002104307655 ], [ -112.163372742416243, 24.606866275605505 ], [ -112.156826112998857, 24.625018579714613 ], [ -112.149733931130044, 24.627438886929159 ], [ -112.144551182841283, 24.628245656000676 ], [ -112.13063959532937, 24.628447348268555 ], [ -112.12627517571778, 24.627438886929159 ], [ -112.106635287465664, 24.627438886929159 ], [ -112.104180301434141, 24.629052425072192 ], [ -112.100088658048293, 24.634498116304925 ], [ -112.099270329371109, 24.637523500323109 ], [ -112.097906448242497, 24.638531961662501 ], [ -112.095724238436702, 24.638531961662501 ], [ -112.08399486073057, 24.632481193626134 ], [ -112.084267636956298, 24.635304885376438 ], [ -112.084267636956298, 24.638330269394622 ], [ -112.076084350184587, 24.645187806502509 ], [ -112.073902140378792, 24.644784421966751 ], [ -112.058353895512525, 24.62723719466128 ], [ -112.048533951386474, 24.618967811678242 ], [ -112.030530720488684, 24.612110274570359 ], [ -112.024802419748482, 24.611505197766721 ], [ -112.020983552588348, 24.613522120445513 ], [ -112.016619132976771, 24.620984734357034 ], [ -112.011981937139467, 24.61795935033885 ], [ -112.007890293753604, 24.613925504981271 ], [ -112.004344202819198, 24.611706890034601 ], [ -112.000798111884777, 24.612917043641875 ], [ -111.995069811144575, 24.612110274570359 ], [ -111.99206927266161, 24.605656121998233 ], [ -111.99043261530727, 24.603437507051563 ], [ -111.983340433438457, 24.596781662211558 ], [ -111.979794342504036, 24.594764739532771 ], [ -111.975702699118187, 24.595168124068525 ], [ -111.971611055732325, 24.590125817371554 ], [ -111.964246097637783, 24.578225973566695 ], [ -111.963973321412055, 24.576209050887904 ], [ -111.962882216509158, 24.57479720501275 ], [ -111.960427230477649, 24.572780282333962 ], [ -111.958245020671853, 24.572175205530325 ], [ -111.954426153511719, 24.574998897280629 ], [ -111.950880062577312, 24.573183666869721 ], [ -111.949788957674414, 24.570763359655171 ], [ -111.949788957674414, 24.570561667387295 ], [ -111.963700545186327, 24.56330074574365 ], [ -111.965882754992123, 24.563704130279408 ], [ -111.968337741023632, 24.563099053475771 ], [ -111.969974398377985, 24.56168720760062 ], [ -111.970792727055155, 24.559871977189708 ], [ -111.971883831958053, 24.556443208635766 ], [ -111.972702160635222, 24.548980594724245 ], [ -111.970519950829427, 24.539097673598175 ], [ -111.970247174603699, 24.523365676703616 ], [ -111.971611055732325, 24.511869217434516 ], [ -111.974884370441004, 24.500977834969053 ], [ -111.977612132698255, 24.494725374664803 ], [ -111.980612671181206, 24.493716913325411 ], [ -111.983340433438457, 24.494725374664803 ], [ -111.985522643244238, 24.494523682396924 ], [ -111.999707006981879, 24.479195070038124 ], [ -112.003798650367742, 24.470320610251449 ], [ -112.00407142659347, 24.461446150464777 ], [ -112.003525874142014, 24.456000459232044 ], [ -112.005162531496367, 24.45297507521386 ], [ -112.020165223911178, 24.438654924194452 ], [ -112.041168993291919, 24.430990618015052 ], [ -112.049079503837916, 24.429578772139902 ], [ -112.055626133255288, 24.430385541211415 ], [ -112.059990552866878, 24.429578772139902 ], [ -112.069810496992929, 24.424536465442927 ], [ -112.070083273218657, 24.420300927817468 ], [ -112.065446077381353, 24.383391242795618 ], [ -112.062991091349829, 24.38278616599198 ], [ -112.065991629832794, 24.374113398473185 ], [ -112.06653718228425, 24.372499860330155 ], [ -112.071719930572996, 24.368264322704697 ], [ -112.074993245281689, 24.367659245901059 ], [ -112.076084350184587, 24.369071091776213 ], [ -112.081812650924789, 24.368062630436818 ], [ -112.093814804856635, 24.363827092811359 ], [ -112.095724238436702, 24.36221355466833 ], [ -112.096542567113872, 24.357978017042868 ], [ -112.096269790888158, 24.355154325292563 ], [ -112.094905909759532, 24.348901864988317 ], [ -112.093269252405193, 24.343859558291342 ], [ -112.091905371276567, 24.341035866541038 ], [ -112.086177070536365, 24.332363099022242 ], [ -112.080994322247619, 24.32651402325375 ], [ -112.079630441118994, 24.326110638717992 ], [ -112.077448231313198, 24.327320792325267 ], [ -112.07335658792735, 24.327320792325267 ], [ -112.067082734735692, 24.323488639235567 ], [ -112.068719392090031, 24.316227717591925 ], [ -112.088086504116433, 24.297066952143425 ], [ -112.097088119565328, 24.297672028947062 ], [ -112.098724776919667, 24.298882182554333 ], [ -112.101452539176904, 24.299890643893729 ], [ -112.105816958788495, 24.299285567090092 ], [ -112.105816958788495, 24.292629722250087 ], [ -112.103907525208427, 24.282343416588258 ], [ -112.103361972756971, 24.281738339784624 ], [ -112.101452539176904, 24.282343416588258 ], [ -112.0968153433396, 24.280528186177349 ], [ -112.082630979601959, 24.267619881033095 ], [ -112.084813189407754, 24.234340656833066 ], [ -112.0899959376965, 24.223247582099724 ], [ -112.099270329371109, 24.218608659938507 ], [ -112.101452539176904, 24.204691893454861 ], [ -112.094087581082363, 24.200052971293644 ], [ -112.091905371276567, 24.197430971811215 ], [ -112.094360357308091, 24.195212356864548 ], [ -112.104725853885597, 24.19097681923909 ], [ -112.110726930851513, 24.192993741917881 ], [ -112.117273560268899, 24.170202515647556 ], [ -112.13063959532937, 24.181497282648778 ], [ -112.142914525486944, 24.189968357899694 ], [ -112.145642287744181, 24.19097681923909 ], [ -112.150825036032941, 24.188758204292423 ], [ -112.151916140935839, 24.186741281613632 ], [ -112.148915602452874, 24.181295590380902 ], [ -112.146460616421351, 24.178270206362715 ], [ -112.142914525486944, 24.165765285754219 ], [ -112.142368973035488, 24.149226519788147 ], [ -112.145096735292739, 24.145797751234202 ], [ -112.150279483581485, 24.143579136287535 ], [ -112.159826651481822, 24.144184213091172 ], [ -112.163372742416243, 24.12925898526813 ], [ -112.165827728447752, 24.125628524446306 ], [ -112.181648749539733, 24.128653908464493 ], [ -112.184376511796984, 24.133897907429343 ], [ -112.184376511796984, 24.139141906394197 ], [ -112.184922064248425, 24.140755444537231 ], [ -112.187104274054221, 24.141965598144502 ], [ -112.190923141214355, 24.141763905876623 ], [ -112.192559798568695, 24.141360521340864 ], [ -112.200743085340406, 24.134906368768739 ], [ -112.20156141401759, 24.132486061554193 ], [ -112.202106966469032, 24.126636985785701 ], [ -112.20156141401759, 24.122199755892364 ], [ -112.200743085340406, 24.11917437187418 ], [ -112.203198071371929, 24.114132065177206 ], [ -112.206744162306336, 24.10929145074811 ], [ -112.208926372112131, 24.108081297140838 ], [ -112.216291330206673, 24.105862682194168 ], [ -112.219291868689638, 24.106467758997805 ], [ -112.220928526043977, 24.108888066212355 ], [ -112.222019630946875, 24.111913450230539 ], [ -112.223110735849772, 24.112921911569934 ], [ -112.235112889781618, 24.114333757445085 ], [ -112.238658980716039, 24.113526988373572 ], [ -112.260208302548222, 24.102232221372347 ], [ -112.267027708191321, 24.094164530657189 ], [ -112.283939834186214, 24.068952997172321 ], [ -112.275756547414488, 24.05907007604625 ], [ -112.268937141771389, 24.052414231206246 ], [ -112.266754931965608, 24.051607462134729 ], [ -112.26566382706271, 24.049590539455938 ], [ -112.265118274611254, 24.03990931059775 ], [ -112.267027708191321, 24.034060234829258 ], [ -112.269755470448558, 24.030228081739558 ], [ -112.281757624380418, 24.022967160095916 ], [ -112.298942526601024, 24.006025009594083 ], [ -112.306580260921294, 24.00279793330802 ], [ -112.312854114112938, 24.002394548772262 ], [ -112.314217995241563, 24.003403010111658 ], [ -112.319946295981765, 24.003201317843779 ], [ -112.32212850578756, 24.000175933825595 ], [ -112.32212850578756, 23.997553934343166 ], [ -112.3169457574988, 23.980208399305578 ], [ -112.309580799404259, 23.974359323537087 ], [ -112.307398589598463, 23.973350862197691 ], [ -112.303034169986887, 23.972745785394057 ], [ -112.302761393761159, 23.97214070859042 ], [ -112.302215841309703, 23.962257787464349 ], [ -112.304398051115498, 23.956207019427982 ], [ -112.319946295981765, 23.94652579056979 ], [ -112.344496156296913, 23.957417173035253 ], [ -112.354861652874419, 23.962862864267986 ], [ -112.362772163420416, 23.968711940036478 ], [ -112.364954373226212, 23.971737324054661 ], [ -112.366591030580551, 23.972544093126178 ], [ -112.372319331320753, 23.972745785394057 ], [ -112.376138198480888, 23.970728862715266 ], [ -112.378320408286683, 23.968711940036478 ], [ -112.380775394318192, 23.965484863750412 ], [ -112.38186649922109, 23.961451018392832 ], [ -112.380502618092478, 23.936037792640086 ], [ -112.379411513189581, 23.931398870478869 ], [ -112.376410974706616, 23.926759948317653 ], [ -112.373137659997923, 23.924743025638865 ], [ -112.373410436223651, 23.90961610554794 ], [ -112.388413128638462, 23.899934876689752 ], [ -112.393323100701494, 23.894690877724898 ], [ -112.391959219572882, 23.876538573615793 ], [ -112.390322562218529, 23.874118266401243 ], [ -112.387322023735578, 23.859193038578201 ], [ -112.38704924750985, 23.856571039095776 ], [ -112.399596953893152, 23.852738886006073 ], [ -112.420873499499606, 23.848301656112739 ], [ -112.428511233819876, 23.841242426736972 ], [ -112.436148968140145, 23.841444119004851 ], [ -112.441877268880347, 23.842855964880005 ], [ -112.447060017169107, 23.846083041166068 ], [ -112.447878345846277, 23.848099963844859 ], [ -112.454424975263649, 23.852940578273952 ], [ -112.459880499778137, 23.851125347863043 ], [ -112.461789933358205, 23.848301656112739 ], [ -112.456607185069444, 23.819257969538167 ], [ -112.454424975263649, 23.813207201501797 ], [ -112.450878884329242, 23.806349664393913 ], [ -112.444059478686142, 23.800298896357546 ], [ -112.443241150008973, 23.798685358214513 ], [ -112.44433225491187, 23.792836282446025 ], [ -112.460698828455307, 23.789609206159959 ], [ -112.462881038261088, 23.791021052035113 ], [ -112.47461041596722, 23.801912434500576 ], [ -112.48661256989908, 23.804332741715125 ], [ -112.489067555930589, 23.802920895839971 ], [ -112.492068094413554, 23.799693819553909 ], [ -112.490976989510656, 23.792836282446025 ], [ -112.491522541962112, 23.785978745338138 ], [ -112.49261364686501, 23.783558438123592 ], [ -112.499160276282382, 23.7815415154448 ], [ -112.517163507180157, 23.767826441229033 ], [ -112.520709598114564, 23.759153673710237 ], [ -112.523437360371801, 23.753909674745383 ], [ -112.543077248623931, 23.72547106497445 ], [ -112.549623878041302, 23.722445680956266 ], [ -112.554261073878607, 23.718411835598687 ], [ -112.555079402555776, 23.714377990241108 ], [ -112.555079402555776, 23.700662916025337 ], [ -112.551260535395642, 23.697637532007153 ], [ -112.543622801075372, 23.698242608810791 ], [ -112.526165122629038, 23.715991528384141 ], [ -112.50843466795699, 23.731118448475062 ], [ -112.501069709862449, 23.712562759830199 ], [ -112.500796933636721, 23.699251070150186 ], [ -112.501615262313891, 23.690981687167149 ], [ -112.505434129474025, 23.692191840774424 ], [ -112.509798549085616, 23.691385071702907 ], [ -112.51443574492292, 23.685535995934416 ], [ -112.513890192471465, 23.681502150576836 ], [ -112.511435206439955, 23.673232767593799 ], [ -112.50843466795699, 23.670207383575615 ], [ -112.499160276282382, 23.665366769146519 ], [ -112.495614185347961, 23.665770153682278 ], [ -112.494795856670791, 23.66516507687864 ], [ -112.493159199316452, 23.661736308324699 ], [ -112.495886961573689, 23.650441541323477 ], [ -112.496159737799417, 23.649433079984082 ], [ -112.498069171379484, 23.645399234626503 ], [ -112.511707982665683, 23.632087544946494 ], [ -112.514708521148634, 23.621397854748906 ], [ -112.511435206439955, 23.619380932070118 ], [ -112.51007132531133, 23.616960624855569 ], [ -112.50925299663416, 23.61272508723011 ], [ -112.522346255468904, 23.595782936728281 ], [ -112.528074556209106, 23.591345706834943 ], [ -112.53189342336924, 23.577630632619172 ], [ -112.526710675080494, 23.571176480047047 ], [ -112.524801241500427, 23.563108789331888 ], [ -112.525619570177597, 23.562100327992493 ], [ -112.526437898854766, 23.561293558920976 ], [ -112.547168892009779, 23.562100327992493 ], [ -112.574446514582178, 23.555646175420367 ], [ -112.576355948162245, 23.553024175937939 ], [ -112.57935648664521, 23.545561562026418 ], [ -112.579902039096652, 23.542132793472476 ], [ -112.579902039096652, 23.540115870793684 ], [ -112.577719829290857, 23.531443103274892 ], [ -112.577447053065143, 23.517526336791242 ], [ -112.57853815796804, 23.514500952773059 ], [ -112.582902577579617, 23.509862030611842 ], [ -112.586448668514024, 23.511072184219117 ], [ -112.599269151123053, 23.52801433472095 ], [ -112.602269689606018, 23.532249872346405 ], [ -112.60281524205746, 23.534468487293076 ], [ -112.602269689606018, 23.535476948632471 ], [ -112.602542465831746, 23.536687102239743 ], [ -112.603633570734644, 23.537493871311259 ], [ -112.605543004314711, 23.537695563579138 ], [ -112.609361871474846, 23.536687102239743 ], [ -112.611271305054913, 23.535476948632471 ], [ -112.614544619763592, 23.530636334203376 ], [ -112.611271305054913, 23.514904337308817 ], [ -112.622455130309589, 23.508651877004567 ], [ -112.626546773695452, 23.504618031646988 ], [ -112.628456207275519, 23.501592647628804 ], [ -112.63145674575847, 23.494331725985163 ], [ -112.63663949404723, 23.471540499714841 ], [ -112.656552158525074, 23.465489731678471 ], [ -112.657097710976529, 23.46185927085665 ], [ -112.656552158525074, 23.460850809517254 ], [ -112.64945997665626, 23.452178041998458 ], [ -112.648096095527634, 23.447135735301487 ], [ -112.651642186462041, 23.438462967782691 ], [ -112.656552158525074, 23.435235891496628 ], [ -112.660643801910936, 23.433622353353595 ], [ -112.683284228646016, 23.445118812622695 ], [ -112.685466438451812, 23.446530658497849 ], [ -112.686011990903253, 23.449354350248154 ], [ -112.688466976934777, 23.452379734266337 ], [ -112.698559697286555, 23.459842348177858 ], [ -112.711652956121313, 23.468515115696654 ], [ -112.715744599507161, 23.468918500232412 ], [ -112.718472361764412, 23.468313423428775 ], [ -112.725291767407498, 23.464481270339075 ], [ -112.729383410793361, 23.458833886838466 ], [ -112.731565620599156, 23.451371272926945 ], [ -112.73020173947053, 23.447740812105124 ], [ -112.726928424761851, 23.441084967265116 ], [ -112.725291767407498, 23.438866352318449 ], [ -112.722836781375989, 23.437857890979053 ], [ -112.720109019118752, 23.439673121389966 ], [ -112.716290151958617, 23.439269736854207 ], [ -112.715471823281447, 23.43866466005057 ], [ -112.711925732347026, 23.429185123460258 ], [ -112.711652956121313, 23.424949585834799 ], [ -112.735657263985019, 23.416478510583882 ], [ -112.738385026242256, 23.412646357494182 ], [ -112.740294459822323, 23.40538543585054 ], [ -112.741112788499493, 23.401149898225082 ], [ -112.741658340950934, 23.388443285348707 ], [ -112.736475592662188, 23.378762056490519 ], [ -112.733747830404951, 23.376543441543848 ], [ -112.724746214956056, 23.374324826597181 ], [ -112.722564005150261, 23.374929903400819 ], [ -112.718745137990126, 23.377551902883244 ], [ -112.718199585538684, 23.376946826079607 ], [ -112.709197970089789, 23.366055443614144 ], [ -112.708925193864061, 23.364038520935352 ], [ -112.709197970089789, 23.362021598256565 ], [ -112.710016298766959, 23.357584368363227 ], [ -112.710834627444129, 23.356374214755952 ], [ -112.717381256861515, 23.352138677130494 ], [ -112.726928424761851, 23.349516677648069 ], [ -112.729656187019089, 23.350928523523223 ], [ -112.740294459822323, 23.350323446719585 ], [ -112.744113326982458, 23.34931498538019 ], [ -112.746295536788239, 23.348306524040794 ], [ -112.750659956399829, 23.344070986415336 ], [ -112.75966157184871, 23.340843910129273 ], [ -112.768935963523333, 23.348306524040794 ], [ -112.771936502006298, 23.35314713846989 ], [ -112.773300383134909, 23.356777599291711 ], [ -112.774391488037807, 23.358592829702623 ], [ -112.780665341229451, 23.368072366292932 ], [ -112.785029760841041, 23.369080827632327 ], [ -112.787484746872551, 23.368677443096569 ], [ -112.823218432442388, 23.352542061666252 ], [ -112.826218970925353, 23.349920062183827 ], [ -112.846949964080366, 23.319061145198347 ], [ -112.845858859177469, 23.31220360809046 ], [ -112.844494978048857, 23.309178224072276 ], [ -112.83494781014852, 23.309581608608035 ], [ -112.830037838085488, 23.316842530251677 ], [ -112.826218970925353, 23.318859452930468 ], [ -112.81394404076778, 23.32228822148441 ], [ -112.794576928741378, 23.311598531286826 ], [ -112.791030837806971, 23.305346070982576 ], [ -112.785575313292483, 23.291227612231051 ], [ -112.785575313292483, 23.285378536462559 ], [ -112.792940271387039, 23.275495615336489 ], [ -112.79430415251565, 23.275092230800734 ], [ -112.799759677030124, 23.276302384408005 ], [ -112.818581236605084, 23.285983613266197 ], [ -112.836038915051418, 23.280941306569222 ], [ -112.857315460657873, 23.281748075640738 ], [ -112.858679341786498, 23.280134537497705 ], [ -112.860043222915124, 23.272066846782547 ], [ -112.857588236883601, 23.270049924103759 ], [ -112.855133250852091, 23.268839770496484 ], [ -112.854314922174922, 23.267629616889209 ], [ -112.853769369723466, 23.256536542155867 ], [ -112.855406027077805, 23.253511158137684 ], [ -112.884593083230271, 23.250889158655259 ], [ -112.895231356033506, 23.256133157620109 ], [ -112.906142405062454, 23.255729773084354 ], [ -112.921417873702993, 23.239392699386158 ], [ -112.938057223472157, 23.201071168489154 ], [ -112.938602775923599, 23.199054245810366 ], [ -112.937784447246429, 23.19421363138127 ], [ -112.932601698957683, 23.184129017987321 ], [ -112.918962887671483, 23.187154402005504 ], [ -112.909142943545419, 23.182112095308533 ], [ -112.894413027356336, 23.182313787576412 ], [ -112.892503593776269, 23.183725633451562 ], [ -112.890594160196201, 23.183523941183687 ], [ -112.860043222915124, 23.174447789129133 ], [ -112.858133789335056, 23.169808866967916 ], [ -112.860043222915124, 23.162749637592153 ], [ -112.867408181009665, 23.153673485537599 ], [ -112.872863705524139, 23.150648101519415 ], [ -112.885411411907441, 23.140966872661224 ], [ -112.885411411907441, 23.133907643285461 ], [ -112.882956425875932, 23.132495797410307 ], [ -112.866317076106768, 23.133504258749703 ], [ -112.849950502563331, 23.144193948947287 ], [ -112.846949964080366, 23.149437947912141 ], [ -112.834129481471351, 23.154480254609116 ], [ -112.833038376568453, 23.154681946876995 ], [ -112.832220047891283, 23.153875177805478 ], [ -112.832492824116997, 23.149437947912141 ], [ -112.857588236883601, 23.124428106695149 ], [ -112.874227586652765, 23.110511340211502 ], [ -112.886502516810339, 23.094577651049065 ], [ -112.889503055293304, 23.082476114976327 ], [ -112.887593621713236, 23.074408424261168 ], [ -112.885138635681713, 23.061903503652672 ], [ -112.885956964358883, 23.060895042313277 ], [ -112.892776370001982, 23.06250858045631 ], [ -112.898504670742184, 23.073198270653894 ], [ -112.898504670742184, 23.074206731993289 ], [ -112.897140789613573, 23.076627039207835 ], [ -112.897686342065015, 23.077635500547231 ], [ -112.900141328096538, 23.079652423226019 ], [ -112.903960195256673, 23.07945073095814 ], [ -112.905324076385284, 23.078240577350869 ], [ -112.907233509965351, 23.071584732510861 ], [ -112.906142405062454, 23.068962733028435 ], [ -112.897413565839287, 23.055449351080544 ], [ -112.888411950390406, 23.048188429436902 ], [ -112.884047530778815, 23.038507200578714 ], [ -112.884593083230271, 23.033868278417497 ], [ -112.88786639793895, 23.028422587184764 ], [ -112.889775831519017, 23.027615818113247 ], [ -112.891685265099085, 23.02922935625628 ], [ -112.899595775645082, 23.041734276864776 ], [ -112.901777985450877, 23.041935969132656 ], [ -112.907779062416807, 23.039313969650227 ], [ -112.907779062416807, 23.034876739756889 ], [ -112.905324076385284, 23.033061509345981 ], [ -112.904232971482386, 23.031649663470827 ], [ -112.903141866579489, 23.023380280487789 ], [ -112.903414642805217, 23.019749819665968 ], [ -112.90586962883674, 23.018337973790818 ], [ -112.932328922731955, 23.044557968615081 ], [ -112.933420027634853, 23.046171506758114 ], [ -112.937784447246429, 23.074408424261168 ], [ -112.935875013666362, 23.077030423743594 ], [ -112.933692803860566, 23.078845654154506 ], [ -112.933965580086294, 23.080055807761777 ], [ -112.941057761955122, 23.08328288404784 ], [ -112.947058838921052, 23.077635500547231 ], [ -112.949513824952561, 23.07400503972541 ], [ -112.952787139661254, 23.066139041278131 ], [ -112.952787139661254, 23.056659504687818 ], [ -112.947604391372494, 23.03709535470356 ], [ -112.944876629115257, 23.035885201096285 ], [ -112.94214886685802, 23.032658124810222 ], [ -112.940512209503666, 23.02943104852416 ], [ -112.938875552149327, 23.024590434095064 ], [ -112.938057223472157, 23.015715974308389 ], [ -112.938875552149327, 23.002807669164135 ], [ -112.943239971760917, 22.99857213153868 ], [ -112.959060992852898, 22.996756901127767 ], [ -112.962334307561591, 22.999177208342314 ], [ -112.963425412464488, 23.000992438753226 ], [ -112.962334307561591, 23.016321051112026 ], [ -112.961515978884421, 23.019749819665968 ], [ -112.966425950947439, 23.022170126880518 ], [ -112.991794139939771, 23.014707512968997 ], [ -112.998067993131414, 22.989092594948367 ], [ -112.99943187426004, 22.981226596501088 ], [ -113.020981196092222, 22.973965674857446 ], [ -113.053441566953367, 22.960250600641675 ], [ -113.084265280460173, 22.946535526425905 ], [ -113.101995735132235, 22.937459374371354 ], [ -113.10799681209815, 22.933627221281654 ], [ -113.112088455484013, 22.925962915102254 ], [ -113.112634007935469, 22.923744300155583 ], [ -113.112361231709741, 22.914264763565274 ], [ -113.111270126806843, 22.904381842439204 ], [ -113.109087917001048, 22.898331074402837 ], [ -113.110179021903946, 22.894498921313136 ], [ -113.112906784161183, 22.893893844509499 ], [ -113.116180098869876, 22.895305690384649 ], [ -113.127909476576008, 22.910432610475574 ], [ -113.129273357704619, 22.914869840368908 ], [ -113.129546133930347, 22.9168867630477 ], [ -113.128727805253178, 22.921525685208916 ], [ -113.129546133930347, 22.942098296532571 ], [ -113.136911092024889, 22.943106757871963 ], [ -113.139638854282126, 22.941896604264691 ], [ -113.147003812376681, 22.935240759424683 ], [ -113.147822141053851, 22.931811990870742 ], [ -113.136911092024889, 22.921323992941037 ], [ -113.12845502902745, 22.880582154829487 ], [ -113.129273357704619, 22.87211107957857 ], [ -113.132546672413312, 22.865858619274324 ], [ -113.135819987121991, 22.861824773916744 ], [ -113.138002196927786, 22.853555390933707 ], [ -113.137456644476345, 22.85053000691552 ], [ -113.132273896187584, 22.844277546611274 ], [ -113.129000581478891, 22.833386164145811 ], [ -113.130910015058959, 22.824108319823377 ], [ -113.134728882219093, 22.817250782715494 ], [ -113.144548826345158, 22.798090017266993 ], [ -113.16227928101722, 22.784778327586981 ], [ -113.169917015337489, 22.781752943568797 ], [ -113.171008120240387, 22.781752943568797 ], [ -113.176190868529133, 22.795064633248806 ], [ -113.176190868529133, 22.796678171391839 ], [ -113.174826987400522, 22.800510324481539 ], [ -113.172372001368998, 22.802527247160327 ], [ -113.160097071211425, 22.805754323446394 ], [ -113.158460413857085, 22.804745862106998 ], [ -113.151913784439699, 22.807367861589423 ], [ -113.149731574633918, 22.813015245090035 ], [ -113.153277665568325, 22.81967108993004 ], [ -113.156005427825562, 22.822898166216103 ], [ -113.164734267048729, 22.823099858483982 ], [ -113.167189253080252, 22.834798010020961 ], [ -113.171008120240387, 22.86041292804159 ], [ -113.171280896466101, 22.866867080613716 ], [ -113.164188714597287, 22.892481998634345 ], [ -113.163643162145831, 22.893288767705862 ], [ -113.158187637631357, 22.894297229045257 ], [ -113.160369847437153, 22.897725997599199 ], [ -113.170462567788931, 22.904180150171324 ], [ -113.188738574912435, 22.908819072332541 ], [ -113.21356121145331, 22.909827533671937 ], [ -113.220107840870682, 22.90680214965375 ], [ -113.223108379353647, 22.903776765635566 ], [ -113.224199484256545, 22.901154766153141 ], [ -113.220653393322138, 22.893490459973741 ], [ -113.218198407290615, 22.88360753884767 ], [ -113.220653393322138, 22.876346617204028 ], [ -113.223653931805103, 22.87432969452524 ], [ -113.227745575190951, 22.873926309989482 ], [ -113.240293281574253, 22.880582154829487 ], [ -113.257750960020587, 22.874934771328874 ], [ -113.261297050954994, 22.872312771846449 ], [ -113.265115918115129, 22.862228158452503 ], [ -113.265661470566585, 22.859404466702195 ], [ -113.265115918115129, 22.856782467219769 ], [ -113.264024813212231, 22.855572313612495 ], [ -113.263479260760789, 22.83883185537854 ], [ -113.277936400724158, 22.817654167251252 ], [ -113.28966577843029, 22.805149246642756 ], [ -113.311487876488201, 22.793652787373656 ], [ -113.322944477968605, 22.793249402837898 ], [ -113.330309436063146, 22.794862940980927 ], [ -113.345584904703685, 22.799905247677902 ], [ -113.346948785832311, 22.799703555410023 ], [ -113.348039890735208, 22.798291709534872 ], [ -113.349676548089548, 22.795871402320323 ], [ -113.349949324315276, 22.791635864694864 ], [ -113.349130995638092, 22.787400327069406 ], [ -113.336310513029076, 22.771870022442727 ], [ -113.344493799800787, 22.756944794619685 ], [ -113.346403233380855, 22.749885565243922 ], [ -113.348312666960922, 22.737380644635426 ], [ -113.348039890735208, 22.734758645152997 ], [ -113.345857680929413, 22.729312953920267 ], [ -113.345857680929413, 22.725279108562688 ], [ -113.349130995638092, 22.716606341043892 ], [ -113.353222639023954, 22.71095895754328 ], [ -113.357859834861259, 22.708336958060855 ], [ -113.361678702021393, 22.708135265792976 ], [ -113.365770345407256, 22.720438494133592 ], [ -113.369861988793119, 22.729514646188147 ], [ -113.379409156693455, 22.747465258029372 ], [ -113.384319128756488, 22.752104180190589 ], [ -113.388956324593792, 22.751297411119072 ], [ -113.393320744205369, 22.742221259064522 ], [ -113.396048506462606, 22.737784029171184 ], [ -113.399321821171299, 22.735162029688755 ], [ -113.409960093974533, 22.739195875046335 ], [ -113.417597828294802, 22.737784029171184 ], [ -113.420871143003495, 22.736170491028151 ], [ -113.424144457712174, 22.733145107009967 ], [ -113.424962786389344, 22.728909569384509 ], [ -113.423871681486446, 22.724674031759051 ], [ -113.413778961134668, 22.723262185883897 ], [ -113.395502954011164, 22.723665570419655 ], [ -113.393593520431097, 22.72104357093723 ], [ -113.391138534399587, 22.716001264240255 ], [ -113.390320205722404, 22.712370803418434 ], [ -113.39004742949669, 22.703496343631759 ], [ -113.392775191753927, 22.696437114255996 ], [ -113.420325590552039, 22.688772808076596 ], [ -113.424144457712174, 22.689579577148113 ], [ -113.435873835418306, 22.696437114255996 ], [ -113.438601597675543, 22.703899728167517 ], [ -113.437510492772645, 22.707530188989338 ], [ -113.43450995428968, 22.712169111150555 ], [ -113.43450995428968, 22.712975880222071 ], [ -113.436964940321204, 22.716606341043892 ], [ -113.442693241061406, 22.719430032794197 ], [ -113.447057660672982, 22.720236801865713 ], [ -113.457695933476217, 22.717413110115409 ], [ -113.460696471959182, 22.714589418365101 ], [ -113.465060891570758, 22.708740342596613 ], [ -113.470243639859518, 22.691394807559021 ], [ -113.470516416085246, 22.688369423540838 ], [ -113.469698087408062, 22.686150808594171 ], [ -113.470516416085246, 22.682722040040225 ], [ -113.472971402116755, 22.675864502932342 ], [ -113.476244716825448, 22.671023888503246 ], [ -113.524798885004301, 22.629676973588062 ], [ -113.536528262710434, 22.626449897301995 ], [ -113.547984864190838, 22.62766005090927 ], [ -113.546348206836484, 22.629273589052303 ], [ -113.545802654385042, 22.634114203481396 ], [ -113.54689375928794, 22.636937895231704 ], [ -113.555077046059651, 22.638954817910491 ], [ -113.559714241896955, 22.637542972035341 ], [ -113.578535801471915, 22.627458358641391 ], [ -113.58153633995488, 22.622819436480174 ], [ -113.588082969372252, 22.622012667408661 ], [ -113.593538493886726, 22.622819436480174 ], [ -113.596811808595419, 22.632904049874124 ], [ -113.595993479918235, 22.635727741624429 ], [ -113.593265717660998, 22.638954817910491 ], [ -113.591901836532386, 22.649039431304441 ], [ -113.591901836532386, 22.659527429234146 ], [ -113.593265717660998, 22.677276348807496 ], [ -113.594902375015351, 22.6801000405578 ], [ -113.593811270112454, 22.685747424058412 ], [ -113.57635359166612, 22.72245541681238 ], [ -113.574989710537494, 22.727094338973597 ], [ -113.573898605634611, 22.739800951849972 ], [ -113.574989710537494, 22.742624643600276 ], [ -113.576899144117561, 22.745246643082705 ], [ -113.584809654663559, 22.748675411636647 ], [ -113.590810731629489, 22.749683872976043 ], [ -113.607177305172925, 22.748473719368768 ], [ -113.61781557797616, 22.745246643082705 ], [ -113.631999941713801, 22.738590798242697 ], [ -113.635546032648207, 22.735162029688755 ], [ -113.637455466228275, 22.731329876599055 ], [ -113.6524581586431, 22.688571115808717 ], [ -113.652185382417372, 22.68635250086205 ], [ -113.64482042432283, 22.644602201411104 ], [ -113.642365438291307, 22.64157681739292 ], [ -113.641274333388409, 22.63774466430322 ], [ -113.647275410354339, 22.622416051944416 ], [ -113.667460851057911, 22.578043753011045 ], [ -113.668824732186522, 22.576228522600136 ], [ -113.671552494443773, 22.574413292189224 ], [ -113.673189151798113, 22.572396369510436 ], [ -113.674825809152452, 22.567354062813461 ], [ -113.676735242732519, 22.559084679830423 ], [ -113.677008018958247, 22.554647449937086 ], [ -113.675371361603908, 22.551016989115265 ], [ -113.674825809152452, 22.548596681900719 ], [ -113.675371361603908, 22.546781451489807 ], [ -113.680281333666926, 22.537503607167377 ], [ -113.684645753278517, 22.538512068506769 ], [ -113.695284026081751, 22.546378066954048 ], [ -113.701285103047667, 22.549403450972235 ], [ -113.714105585656696, 22.549403450972235 ], [ -113.716833347913933, 22.547789912829202 ], [ -113.717651676591103, 22.545772990150411 ], [ -113.717378900365389, 22.542344221596469 ], [ -113.702103431724851, 22.517939457183115 ], [ -113.692556263824514, 22.512292073682506 ], [ -113.686282410632856, 22.499988845341889 ], [ -113.686827963084312, 22.493131308234005 ], [ -113.687646291761482, 22.490509308751577 ], [ -113.708104508690766, 22.472558696910351 ], [ -113.726653292039998, 22.483651771643693 ], [ -113.731290487877303, 22.492324539162489 ], [ -113.729381054297235, 22.501198998949164 ], [ -113.732108816554472, 22.506644690181894 ], [ -113.736200459940335, 22.508056536057047 ], [ -113.744929299163502, 22.505434536574622 ], [ -113.752567033483771, 22.487887309269151 ], [ -113.753385362160941, 22.483046694840056 ], [ -113.752839809709499, 22.480021310821872 ], [ -113.747111508969297, 22.471348543303076 ], [ -113.741928760680537, 22.464894390730951 ], [ -113.741110432003367, 22.461869006712764 ], [ -113.746565956517841, 22.446540394353963 ], [ -113.753112585935213, 22.441699779924868 ], [ -113.754476467063839, 22.441498087656992 ], [ -113.758022557998245, 22.441498087656992 ], [ -113.761568648932666, 22.443313318067901 ], [ -113.765114739867073, 22.446338702086084 ], [ -113.767296949672868, 22.449162393836392 ], [ -113.767569725898582, 22.450372547443664 ], [ -113.783117970764849, 22.448355624764876 ], [ -113.795392900922423, 22.443918394871538 ], [ -113.810941145788689, 22.449364086104271 ], [ -113.816396670303163, 22.454608085069122 ], [ -113.823488852171991, 22.463885929391555 ], [ -113.827307719332126, 22.471751927838834 ], [ -113.827853271783567, 22.476995926803689 ], [ -113.824579957074889, 22.479012849482476 ], [ -113.813668908045926, 22.483651771643693 ], [ -113.811486698240131, 22.483046694840056 ], [ -113.808486159757166, 22.480626387625509 ], [ -113.806849502402827, 22.478004388143081 ], [ -113.803030635242692, 22.474979004124897 ], [ -113.801121201662625, 22.474979004124897 ], [ -113.799484544308285, 22.475785773196414 ], [ -113.799484544308285, 22.482845002572176 ], [ -113.811486698240131, 22.49595499998431 ], [ -113.821033866140468, 22.499383768538252 ], [ -113.8259438382035, 22.509468381932201 ], [ -113.827853271783567, 22.516325919040085 ], [ -113.829217152912193, 22.52298176388009 ], [ -113.834399901200939, 22.539520529846165 ], [ -113.835218229878109, 22.540327298917681 ], [ -113.856221999258864, 22.559488064366182 ], [ -113.866860272062098, 22.560899910241336 ], [ -113.872315796576572, 22.557874526223152 ], [ -113.875316335059537, 22.555252526740723 ], [ -113.879135202219672, 22.546579759221927 ], [ -113.882408516928351, 22.535083299952827 ], [ -113.884045174282704, 22.524796994291002 ], [ -113.884045174282704, 22.519351303058269 ], [ -113.881862964476909, 22.515519149968569 ], [ -113.876134663736707, 22.509670074200081 ], [ -113.869860810545049, 22.508661612860685 ], [ -113.864405286030575, 22.511081920075231 ], [ -113.862768628676235, 22.510073458735835 ], [ -113.855130894355966, 22.501602383484922 ], [ -113.843947069101276, 22.485265309786726 ], [ -113.844219845327004, 22.48203823350066 ], [ -113.844765397778446, 22.481231464429147 ], [ -113.846947607584241, 22.479214541750355 ], [ -113.849402593615764, 22.479416234018235 ], [ -113.851039250970103, 22.465701159802464 ], [ -113.843401516649834, 22.446742086621843 ], [ -113.833036020072328, 22.429799936120009 ], [ -113.829762705363635, 22.409227324796358 ], [ -113.834672677426667, 22.409025632528479 ], [ -113.842583187972664, 22.415479785100604 ], [ -113.851039250970103, 22.418706861386667 ], [ -113.86140474754761, 22.417093323243638 ], [ -113.8657691671592, 22.41426963149333 ], [ -113.867678600739268, 22.411849324278784 ], [ -113.86822415319071, 22.4088239402606 ], [ -113.864405286030575, 22.405395171706658 ], [ -113.863586957353405, 22.402773172224229 ], [ -113.863859733579133, 22.399142711402408 ], [ -113.877771321091046, 22.385427637186638 ], [ -113.893046789731585, 22.380788715025425 ], [ -113.89604732821455, 22.380587022757545 ], [ -113.905594496114887, 22.383209022239971 ], [ -113.914596111563782, 22.389259790276341 ], [ -113.93232656623583, 22.411244247475146 ], [ -113.932053790010102, 22.418908553654546 ], [ -113.93068990888149, 22.4203203995297 ], [ -113.931235461332932, 22.42576609076243 ], [ -113.933690447364455, 22.430203320655767 ], [ -113.945419825070573, 22.446742086621843 ], [ -113.9593314125825, 22.456019930944276 ], [ -113.964786937096974, 22.45884362269458 ], [ -113.966696370677042, 22.459045314962459 ], [ -113.974606881223039, 22.457230084551551 ], [ -113.987427363832069, 22.450977624247301 ], [ -113.992610112120815, 22.446540394353963 ], [ -113.997247307958119, 22.434640550549105 ], [ -113.999156741538187, 22.426371167566067 ], [ -113.998883965312473, 22.423144091280005 ], [ -113.99642897928095, 22.417698400047271 ], [ -113.994519545700882, 22.415883169636363 ], [ -113.98797291628351, 22.412252708814542 ], [ -113.984154049123376, 22.411042555207267 ], [ -113.977607419706004, 22.412051016546663 ], [ -113.95496699297091, 22.398335942330892 ], [ -113.950057020907877, 22.394100404705434 ], [ -113.944601496393403, 22.382200560900575 ], [ -113.951148125810775, 22.373931177917537 ], [ -113.969424132934279, 22.352955182058128 ], [ -113.983062944220478, 22.33339103207387 ], [ -114.003248384924049, 22.322499649608403 ], [ -114.015250538855895, 22.312415036214457 ], [ -114.019887734693214, 22.307372729517482 ], [ -114.01906940601603, 22.302935499624144 ], [ -114.009795014341421, 22.291842424890802 ], [ -114.003793937375491, 22.285388272318677 ], [ -113.980335181963241, 22.289623809944132 ], [ -113.978152972157446, 22.290632271283528 ], [ -113.971606342740074, 22.30011180787384 ], [ -113.970788014062904, 22.300716884677477 ], [ -113.959604188808214, 22.295674577980503 ], [ -113.948420363553538, 22.283371349639886 ], [ -113.932872118687271, 22.264210584191385 ], [ -113.930144356430034, 22.257151354815619 ], [ -113.93150823755866, 22.251705663582889 ], [ -113.941055405458997, 22.250898894511373 ], [ -113.948693139779266, 22.253117509458043 ], [ -113.954421440519468, 22.265017353262902 ], [ -113.965878041999872, 22.266227506870173 ], [ -113.968333028031395, 22.265420737798657 ], [ -113.971333566514346, 22.262193661512594 ], [ -113.98960957363785, 22.261386892441077 ], [ -114.000520622666812, 22.271673198102906 ], [ -114.004612266052675, 22.282161196032611 ], [ -114.005976147181286, 22.283976426443523 ], [ -114.009522238115693, 22.285388272318677 ], [ -114.014159433953012, 22.283976426443523 ], [ -114.017978301113146, 22.281959503764732 ], [ -114.020706063370383, 22.279740888818065 ], [ -114.026979916562027, 22.268849506352602 ], [ -114.028071021464925, 22.266227506870173 ], [ -114.026979916562027, 22.264008891923506 ], [ -114.026979916562027, 22.238797358438635 ], [ -114.035163203333752, 22.237990589367119 ], [ -114.039254846719601, 22.236982128027726 ], [ -114.058349182520274, 22.220039977525893 ], [ -114.060258616100342, 22.21681290123983 ], [ -114.061076944777511, 22.214190901757402 ], [ -114.083444595286878, 22.219434900722256 ], [ -114.103084483539007, 22.22084674659741 ], [ -114.117541623502376, 22.220039977525893 ], [ -114.131725987240017, 22.21681290123983 ], [ -114.154639190200825, 22.213384132685885 ], [ -114.158185281135232, 22.213585824953764 ], [ -114.187372337287684, 22.205114749702851 ], [ -114.210012764022778, 22.193214905897989 ], [ -114.222287694180352, 22.185550599718589 ], [ -114.228015994920554, 22.178894754878584 ], [ -114.243837016012549, 22.157515374483413 ], [ -114.24520089714116, 22.15448999046523 ], [ -114.24438256846399, 22.140976608517342 ], [ -114.242200358658195, 22.136135994088246 ], [ -114.242200358658195, 22.134522455945213 ], [ -114.24520089714116, 22.126858149765813 ], [ -114.259385260878801, 22.1097143069961 ], [ -114.268932428779138, 22.103260154423975 ], [ -114.279297925356644, 22.099629693602154 ], [ -114.284480673645405, 22.099428001334275 ], [ -114.300028918511671, 22.093780617833662 ], [ -114.304393338123248, 22.091763695154874 ], [ -114.313667729797871, 22.085712927118504 ], [ -114.340127023693086, 22.084704465779112 ], [ -114.351856401399218, 22.087326465261537 ], [ -114.366859093814028, 22.093175541030025 ], [ -114.376406261714365, 22.104470308031249 ], [ -114.377224590391535, 22.107495692049433 ], [ -114.386771758291871, 22.129681841516117 ], [ -114.388681191871939, 22.133513994605817 ], [ -114.39604614996648, 22.139161378106429 ], [ -114.399046688449445, 22.144405377071283 ], [ -114.40286555560958, 22.164171219323421 ], [ -114.40286555560958, 22.166188142002209 ], [ -114.399592240900901, 22.175264294056763 ], [ -114.396591702417936, 22.178491370342826 ], [ -114.376133485488637, 22.191601367754959 ], [ -114.358948583268031, 22.198458904862843 ], [ -114.354311387430727, 22.201080904345268 ], [ -114.351038072722048, 22.204106288363455 ], [ -114.347219205561913, 22.209350287328306 ], [ -114.332762065598544, 22.254932739868952 ], [ -114.323487673923921, 22.288010271801102 ], [ -114.32130546411814, 22.300515192409598 ], [ -114.323214897698207, 22.311809959410819 ], [ -114.320759911666684, 22.318264111982945 ], [ -114.306848324154771, 22.335407954752657 ], [ -114.294573393997183, 22.341660415056904 ], [ -114.292391184191402, 22.341660415056904 ], [ -114.277934044228033, 22.33480287794902 ], [ -114.274387953293626, 22.331374109395078 ], [ -114.271932967262103, 22.327340264037499 ], [ -114.269205205004866, 22.325726725894466 ], [ -114.257475827298734, 22.330567340323562 ], [ -114.237017610369449, 22.344484106807212 ], [ -114.236744834143721, 22.34629933721812 ], [ -114.227743218694826, 22.357594104219341 ], [ -114.217650498343048, 22.366065179470258 ], [ -114.214649959860083, 22.363644872255712 ], [ -114.209194435345609, 22.36404825679147 ], [ -114.202647805928237, 22.365258410398745 ], [ -114.195555624059409, 22.368283794416929 ], [ -114.18709956106197, 22.37554471606057 ], [ -114.180552931644598, 22.382805637704212 ], [ -114.173187973550043, 22.393091943366041 ], [ -114.168823553938466, 22.400151172741804 ], [ -114.165823015455501, 22.403781633563625 ], [ -114.163368029423992, 22.404386710367262 ], [ -114.160094714715299, 22.403579941295746 ], [ -114.155457518877995, 22.404185018099383 ], [ -114.1464559034291, 22.408420555724842 ], [ -114.140454826463184, 22.4126560933503 ], [ -114.13663595930305, 22.414673016029088 ], [ -114.127907120079882, 22.412051016546663 ], [ -114.104175588441905, 22.4126560933503 ], [ -114.084808476415503, 22.416891630975758 ], [ -114.076079637192336, 22.417698400047271 ], [ -114.073897427386541, 22.41426963149333 ], [ -114.074988532289439, 22.406807017581809 ], [ -114.073079098709371, 22.402974864492109 ], [ -114.05371198668297, 22.389058098008462 ], [ -114.048256462168496, 22.383612406775729 ], [ -114.043892042556905, 22.376956561935724 ], [ -114.04007317539677, 22.369897332559958 ], [ -114.032708217302229, 22.353560258861762 ], [ -114.032435441076501, 22.349728105772062 ], [ -114.034072098430855, 22.345089183610849 ], [ -114.034344874656568, 22.33339103207387 ], [ -114.033799322205127, 22.331777493930836 ], [ -114.032708217302229, 22.331172417127199 ], [ -114.028071021464925, 22.332180878466595 ], [ -114.014704986404453, 22.341862107324783 ], [ -114.01143167169576, 22.345492568146604 ], [ -114.012795552824386, 22.354367027933279 ], [ -114.013068329050114, 22.356182258344191 ], [ -114.01825107733886, 22.362233026380558 ], [ -114.020433287144655, 22.363039795452075 ], [ -114.021524392047553, 22.365460102666624 ], [ -114.022342720724723, 22.377359946471483 ], [ -114.021251615821825, 22.380183638221787 ], [ -114.017705524887418, 22.382200560900575 ], [ -114.015523315081623, 22.381998868632696 ], [ -114.008703909438523, 22.376754869667845 ], [ -114.005703370955558, 22.376553177399966 ], [ -113.99642897928095, 22.382200560900575 ], [ -113.996156203055222, 22.384419175847245 ], [ -113.997247307958119, 22.386032713990275 ], [ -114.013341105275828, 22.404790094903021 ], [ -114.017705524887418, 22.42818639797698 ], [ -114.02425215430479, 22.449969162907905 ], [ -114.02507048298196, 22.449565778372147 ], [ -114.026434364110585, 22.452187777854576 ], [ -114.027252692787755, 22.456221623212155 ], [ -114.026434364110585, 22.459448699498218 ], [ -114.016341643758793, 22.469533312892167 ], [ -114.00079339889254, 22.480828079893389 ], [ -113.99042790231502, 22.486475463393997 ], [ -113.977880195931732, 22.491719462358851 ], [ -113.971879118965802, 22.490711001019456 ], [ -113.971606342740074, 22.489097462876426 ], [ -113.968878580482837, 22.48829069380491 ], [ -113.959058636356772, 22.48829069380491 ], [ -113.940237076781827, 22.490105924215818 ], [ -113.922506622109765, 22.497770230395219 ], [ -113.918414978723916, 22.505232844306743 ], [ -113.914868887789495, 22.517737764915239 ], [ -113.916778321369563, 22.526208840166152 ], [ -113.919233307401086, 22.528225762844944 ], [ -113.920597188529698, 22.528629147380702 ], [ -113.923597727012663, 22.528024070577064 ], [ -113.926052713044186, 22.523788532951606 ], [ -113.929326027752865, 22.524998686558881 ], [ -113.931235461332932, 22.526410532434031 ], [ -113.93150823755866, 22.52681391696979 ], [ -113.93150823755866, 22.529234224184339 ], [ -113.92987158020432, 22.537705299435256 ], [ -113.928507699075695, 22.539520529846165 ], [ -113.897956761794617, 22.558882987562544 ], [ -113.893592342183041, 22.559488064366182 ], [ -113.887591265217111, 22.566143909206186 ], [ -113.882681293154079, 22.574413292189224 ], [ -113.876952992413877, 22.587926674137115 ], [ -113.8725885728023, 22.609306054532286 ], [ -113.865223614707745, 22.627861743177149 ], [ -113.864132509804847, 22.628265127712908 ], [ -113.855130894355966, 22.638954817910491 ], [ -113.848857041164308, 22.646820816357771 ], [ -113.844765397778446, 22.6532749689299 ], [ -113.829217152912193, 22.684335578183259 ], [ -113.813941684271654, 22.712572495686313 ], [ -113.806576726177099, 22.73011972299178 ], [ -113.798938991856829, 22.745448335350584 ], [ -113.787209614150711, 22.757348179155443 ], [ -113.777116893798919, 22.766222638942118 ], [ -113.765660292318515, 22.783971558515464 ], [ -113.763478082512734, 22.789013865212439 ], [ -113.739746550874742, 22.809384784268214 ], [ -113.724198306008475, 22.826730319305803 ], [ -113.716287795462492, 22.84266400846824 ], [ -113.707831732465053, 22.854967236808857 ], [ -113.705922298884985, 22.85658077495189 ], [ -113.69773901211326, 22.860009543505832 ], [ -113.683281872149891, 22.865253542470686 ], [ -113.666642522380741, 22.874531386793116 ], [ -113.654640368448881, 22.884414307919187 ], [ -113.622725550039192, 22.896717536259803 ], [ -113.606358976495756, 22.904180150171324 ], [ -113.585900759566456, 22.915071532636787 ], [ -113.582900221083491, 22.913659686761637 ], [ -113.582081892406322, 22.911844456350725 ], [ -113.577171920343289, 22.904785226974962 ], [ -113.568443081120122, 22.900751381617383 ], [ -113.564078661508546, 22.903373381099808 ], [ -113.536255486484706, 22.908617380064662 ], [ -113.530254409518776, 22.903373381099808 ], [ -113.523980556327132, 22.905793688314358 ], [ -113.519343360489827, 22.910835995011332 ], [ -113.518525031812658, 22.913256302225879 ], [ -113.490974633014531, 22.935644143960442 ], [ -113.484973556048601, 22.937661066639233 ], [ -113.482245793791364, 22.935644143960442 ], [ -113.466970325150825, 22.917895224387095 ], [ -113.466424772699384, 22.916483378511941 ], [ -113.465333667796486, 22.907205534189508 ], [ -113.464788115345044, 22.897927689867078 ], [ -113.469152534956621, 22.899541228010108 ], [ -113.472698625891027, 22.899339535742229 ], [ -113.489883528111633, 22.889658306884041 ], [ -113.492884066594598, 22.866665388345837 ], [ -113.490429080563089, 22.858597697630678 ], [ -113.487974094531566, 22.853152006397949 ], [ -113.484973556048601, 22.849723237844007 ], [ -113.448421541801608, 22.819267705394282 ], [ -113.439965478804169, 22.829352318788231 ], [ -113.430691087129546, 22.826125242502169 ], [ -113.41350618490894, 22.817250782715494 ], [ -113.4118695275546, 22.817452474983373 ], [ -113.411051198877431, 22.820679551269436 ], [ -113.411596751328872, 22.825318473430652 ], [ -113.414051737360396, 22.827537088377319 ], [ -113.417597828294802, 22.82975570332399 ], [ -113.422507800357835, 22.830764164663385 ], [ -113.438328821449815, 22.840042008985815 ], [ -113.440238255029882, 22.84266400846824 ], [ -113.448694318027322, 22.875539848132512 ], [ -113.441056583707052, 22.882599077508274 ], [ -113.431509415806715, 22.879977078025849 ], [ -113.416779499617633, 22.880178770293728 ], [ -113.398776268719857, 22.885221076990703 ], [ -113.395775730236892, 22.88743969193737 ], [ -113.391684086851029, 22.889254922348282 ], [ -113.385683009885099, 22.88985999915192 ], [ -113.381864142724964, 22.888044768741008 ], [ -113.375863065759034, 22.877960155347061 ], [ -113.374771960856151, 22.869287387828265 ], [ -113.362224254472849, 22.855774005880374 ], [ -113.349949324315276, 22.860816312577349 ], [ -113.337947170383416, 22.853958775469465 ], [ -113.324853911548672, 22.850126622379765 ], [ -113.32076226816281, 22.850731699183399 ], [ -113.3183072821313, 22.855774005880374 ], [ -113.320216715711368, 22.859606158970074 ], [ -113.327581673805909, 22.866665388345837 ], [ -113.334128303223281, 22.871707695042812 ], [ -113.334946631900451, 22.873724617721603 ], [ -113.324853911548672, 22.881187231633124 ], [ -113.327036121354467, 22.892683690902224 ], [ -113.340674932640653, 22.895709074920408 ], [ -113.355950401281191, 22.903575073367687 ], [ -113.367134226535882, 22.911037687279208 ], [ -113.384591904982202, 22.915676609440425 ], [ -113.397685163816959, 22.921122300673158 ], [ -113.398776268719857, 22.930400144995591 ], [ -113.398230716268401, 22.936652605299837 ], [ -113.398776268719857, 22.941089835193175 ], [ -113.399867373622754, 22.942501681068329 ], [ -113.401231254751366, 22.943913526943479 ], [ -113.408050660394466, 22.946535526425905 ], [ -113.409687317748805, 22.9437118346756 ], [ -113.410232870200261, 22.942501681068329 ], [ -113.410778422651703, 22.941291527461054 ], [ -113.411323975103159, 22.940686450657417 ], [ -113.412142303780328, 22.9398796815859 ], [ -113.412960632457498, 22.940888142925296 ], [ -113.410778422651703, 22.949359218176212 ], [ -113.396866835139789, 22.985865518662305 ], [ -113.396048506462606, 22.989697671752005 ], [ -113.391684086851029, 23.009261821736263 ], [ -113.387046891013725, 23.042137661400535 ], [ -113.386501338562269, 23.059886580973881 ], [ -113.384591904982202, 23.069366117564194 ], [ -113.380500261596353, 23.08328288404784 ], [ -113.37722694688766, 23.089131959816331 ], [ -113.372316974824628, 23.095182727852702 ], [ -113.363315359375747, 23.103452110835736 ], [ -113.353222639023954, 23.118982415462419 ], [ -113.350494876766717, 23.124428106695149 ], [ -113.348858219412378, 23.131689028338791 ], [ -113.338765499060585, 23.146009179358199 ], [ -113.324308359097216, 23.15347179326972 ], [ -113.30712345687661, 23.170615636039432 ], [ -113.301940708587864, 23.176868096343679 ], [ -113.294302974267595, 23.187557786541262 ], [ -113.273026428661126, 23.223459010223721 ], [ -113.270571442629603, 23.226282701974025 ], [ -113.231018889899644, 23.255124696280717 ], [ -113.209196791841734, 23.272268539050426 ], [ -113.187374693783823, 23.282756536980134 ], [ -113.171826448917557, 23.292639458106201 ], [ -113.162006504791492, 23.300303764285601 ], [ -113.15027712708536, 23.317649299323193 ], [ -113.154914322922664, 23.322893298288047 ], [ -113.151641008213986, 23.326927143645626 ], [ -113.129273357704619, 23.34931498538019 ], [ -113.118635084901385, 23.359399598774139 ], [ -113.115907322644148, 23.361214829185048 ], [ -113.104450721163744, 23.373518057525665 ], [ -113.100359077777881, 23.378358671954761 ], [ -113.088902476297477, 23.397317745135382 ], [ -113.088084147620307, 23.396712668331745 ], [ -113.087265818943138, 23.39388897658144 ], [ -113.081264741977208, 23.38763651627719 ], [ -113.074445336334122, 23.382594209580219 ], [ -113.06953536427109, 23.379165441026277 ], [ -113.06953536427109, 23.379165441026277 ], [ -113.062988734853718, 23.375938364740215 ], [ -113.058897091467855, 23.37472821113294 ], [ -113.041166636795793, 23.372106211650511 ], [ -113.012252356869055, 23.380778979169307 ], [ -113.010070147063274, 23.392477130706286 ], [ -113.012252356869055, 23.403166820903873 ], [ -113.013889014223409, 23.40780574306509 ], [ -113.018798986286441, 23.411637896154787 ], [ -113.033528902475524, 23.442295120872391 ], [ -113.033801678701252, 23.471137115179083 ], [ -113.032983350024082, 23.492718187842129 ], [ -113.029982811541117, 23.505828185254263 ], [ -113.010070147063274, 23.555847867688247 ], [ -112.998886321808584, 23.581866170244631 ], [ -112.985247510522399, 23.609498010944048 ], [ -112.980883090910808, 23.614540317641023 ], [ -112.955242125692763, 23.640962004733165 ], [ -112.938329999697885, 23.654878771216815 ], [ -112.921963426154448, 23.675653074808348 ], [ -112.920872321251551, 23.678073382022895 ], [ -112.918690111445756, 23.679686920165928 ], [ -112.914871244285621, 23.680291996969565 ], [ -112.910234048448316, 23.686544457273811 ], [ -112.907506286191079, 23.692998609845937 ], [ -112.901505209225149, 23.710545837151408 ], [ -112.89905022319364, 23.721638911884749 ], [ -112.898231894516471, 23.72385752683142 ], [ -112.869590390815461, 23.759960442781754 ], [ -112.866862628558209, 23.762582442264179 ], [ -112.852132712369126, 23.773070440193884 ], [ -112.846404411628924, 23.774280593801159 ], [ -112.847222740306094, 23.771255209782975 ], [ -112.844222201823129, 23.7623807499963 ], [ -112.833583929019895, 23.746648753101741 ], [ -112.824582313571014, 23.742816600012041 ], [ -112.817762907927914, 23.743421676815679 ], [ -112.81694457925073, 23.756329981959933 ], [ -112.817762907927914, 23.760162135049633 ], [ -112.826491747151081, 23.786382129873896 ], [ -112.831401719214114, 23.797676896875117 ], [ -112.833856705245623, 23.79949212728603 ], [ -112.844494978048857, 23.798483665946634 ], [ -112.851587159917671, 23.795054897392692 ], [ -112.853496593497738, 23.795256589660571 ], [ -112.860315999140838, 23.807559818001188 ], [ -112.86604429988104, 23.845074579826672 ], [ -112.862770985172361, 23.869681036507906 ], [ -112.8644076425267, 23.914456719977036 ], [ -112.868226509686835, 23.956812096231619 ], [ -112.87204537684697, 23.990898089503162 ], [ -112.873136481749867, 24.016311315255912 ], [ -112.873136481749867, 24.033051773489866 ], [ -112.872863705524139, 24.034867003900775 ], [ -112.869044838364005, 24.0451533095626 ], [ -112.864680418752428, 24.051607462134729 ], [ -112.860588775366566, 24.053624384813517 ], [ -112.855678803303533, 24.054027769349275 ], [ -112.834402257697064, 24.063305613671709 ], [ -112.831947271665555, 24.068952997172321 ], [ -112.827855628279693, 24.085895147674151 ], [ -112.832492824116997, 24.091340838906884 ], [ -112.834129481471351, 24.090937454371126 ], [ -112.837130019954316, 24.088315454888701 ], [ -112.840130558437266, 24.080247764173542 ], [ -112.843676649371687, 24.079440995102026 ], [ -112.848859397660434, 24.082062994584451 ], [ -112.868772062138277, 24.095576376532343 ], [ -112.876409796458546, 24.101828836836589 ], [ -112.8780464538129, 24.104249144051138 ], [ -112.882683649650204, 24.115745603320239 ], [ -112.885138635681713, 24.128048831660855 ], [ -112.885411411907441, 24.156487441431789 ], [ -112.884865859455999, 24.167378823897252 ], [ -112.881319768521578, 24.195010664596669 ], [ -112.880774216070137, 24.199447894490007 ], [ -112.877500901361444, 24.208927431080319 ], [ -112.876137020232832, 24.211952815098503 ], [ -112.86522597120387, 24.22405435117124 ], [ -112.861134327818007, 24.223449274367603 ], [ -112.857042684432159, 24.228693273332457 ], [ -112.852132712369126, 24.237769425387008 ], [ -112.849404950111889, 24.244626962494895 ], [ -112.845040530500299, 24.261972497532483 ], [ -112.842858320694518, 24.267014804229458 ], [ -112.840130558437266, 24.27266218773007 ], [ -112.826764523376795, 24.293638183589479 ], [ -112.80794296380185, 24.319656486145867 ], [ -112.805760753996054, 24.328530945932542 ], [ -112.801669110610192, 24.372096475794397 ], [ -112.802214663061648, 24.381172627848951 ], [ -112.802487439287376, 24.382382781456222 ], [ -112.805215201544613, 24.386214934545926 ], [ -112.807670187576122, 24.39287077938593 ], [ -112.80794296380185, 24.398518162886539 ], [ -112.803032991738817, 24.405577392262305 ], [ -112.80194188683592, 24.406787545869577 ], [ -112.800032453255852, 24.413241698441706 ], [ -112.805215201544613, 24.429578772139902 ], [ -112.818854012830798, 24.434217694301118 ], [ -112.820217893959423, 24.429175387604143 ], [ -112.817490131702186, 24.414451852048977 ], [ -112.822127327539491, 24.401543546904726 ], [ -112.822127327539491, 24.401543546904726 ], [ -112.830856166762658, 24.390450472171381 ], [ -112.845858859177469, 24.378348936098643 ], [ -112.848041068983264, 24.376533705687734 ], [ -112.851314383691957, 24.374315090741064 ], [ -112.856769908206431, 24.371491398990759 ], [ -112.860861551592293, 24.36987786084773 ], [ -112.8644076425267, 24.369474476311972 ], [ -112.880501439844409, 24.357776324774989 ], [ -112.895776908484947, 24.342649404684067 ], [ -112.907779062416807, 24.338010482522854 ], [ -112.917599006542858, 24.329942791807696 ], [ -112.918417335220028, 24.327925869128904 ], [ -112.918962887671483, 24.324295408307083 ], [ -112.920326768800095, 24.321068332021021 ], [ -112.951423258532628, 24.303924489251308 ], [ -112.956878783047102, 24.29968895162585 ], [ -112.96315263623876, 24.293436491321604 ], [ -112.972154251687641, 24.28415864699917 ], [ -112.983610853168045, 24.273872341337345 ], [ -113.013889014223409, 24.252089576406416 ], [ -113.021526748543678, 24.246643885173683 ], [ -113.035165559829863, 24.238172809922766 ], [ -113.043621622827317, 24.233735580029432 ], [ -113.055078224307721, 24.231315272814882 ], [ -113.060533748822195, 24.231315272814882 ], [ -113.065170944659499, 24.232525426422157 ], [ -113.075809217462734, 24.236962656315495 ], [ -113.082083070654392, 24.240593117137315 ], [ -113.090266357426103, 24.247047269709441 ], [ -113.091903014780442, 24.249265884656111 ], [ -113.092448567231898, 24.25108111506702 ], [ -113.09217579100617, 24.253703114549445 ], [ -113.093812448360509, 24.259148805782178 ], [ -113.098449644197814, 24.270846957319158 ], [ -113.101450182680779, 24.276897725355528 ], [ -113.108815140775334, 24.285368800606445 ], [ -113.115361770192706, 24.290411107303417 ], [ -113.121362847158622, 24.293436491321604 ], [ -113.129273357704619, 24.295453414000391 ], [ -113.142639392765091, 24.296058490804029 ], [ -113.149186022182462, 24.297470336679183 ], [ -113.152186560665427, 24.299083874822212 ], [ -113.15627820405129, 24.303117720179792 ], [ -113.15709653272846, 24.304932950590704 ], [ -113.157642085179901, 24.308765103680404 ], [ -113.158187637631357, 24.321068332021021 ], [ -113.159551518759969, 24.329741099539817 ], [ -113.16227928101722, 24.336396944379821 ], [ -113.171826448917557, 24.346683250041647 ], [ -113.177554749657759, 24.350515403131347 ], [ -113.196649085458432, 24.329136022736179 ], [ -113.199376847715669, 24.328127561396784 ], [ -113.203195714875804, 24.3289343304683 ], [ -113.20756013448738, 24.323488639235567 ], [ -113.208651239390278, 24.299890643893729 ], [ -113.208378463164564, 24.297268644411304 ], [ -113.208105686938836, 24.295453414000391 ], [ -113.205105148455871, 24.289604338231904 ], [ -113.202377386198634, 24.28415864699917 ], [ -113.201013505070009, 24.282343416588258 ], [ -113.200467952618567, 24.2781078789628 ], [ -113.202377386198634, 24.269636803711883 ], [ -113.204832372230143, 24.262375882068241 ], [ -113.207014582035939, 24.259552190317937 ], [ -113.210287896744632, 24.257535267639149 ], [ -113.214925092581936, 24.255921729496116 ], [ -113.215743421259106, 24.243013424351862 ], [ -113.202650162424362, 24.212759584170019 ], [ -113.183010274172233, 24.17948035996999 ], [ -113.167734805531694, 24.158100979574819 ], [ -113.162552057242934, 24.151848519270573 ], [ -113.177827525883487, 24.114132065177206 ], [ -113.1849197077523, 24.107879604872959 ], [ -113.196103533006976, 24.103038990443864 ], [ -113.199649623941397, 24.102232221372347 ], [ -113.211106225421801, 24.103644067247501 ], [ -113.236474414414118, 24.109089758480234 ], [ -113.240838834025709, 24.111106681159022 ], [ -113.246567134765911, 24.120182833213576 ], [ -113.279845834304226, 24.167177131629373 ], [ -113.29730351275056, 24.194203895525153 ], [ -113.332491645868942, 24.243013424351862 ], [ -113.342311589995006, 24.254509883620962 ], [ -113.358678163538428, 24.268628342372491 ], [ -113.372316974824628, 24.278914648034316 ], [ -113.379954709144897, 24.282141724320379 ], [ -113.385683009885099, 24.283150185659775 ], [ -113.391411310625301, 24.283755262463412 ], [ -113.406414003040126, 24.283553570195533 ], [ -113.399867373622754, 24.303117720179792 ], [ -113.397412387591231, 24.306143104197975 ], [ -113.397412387591231, 24.310782026359192 ], [ -113.400140149848468, 24.316026025324046 ], [ -113.402595135879992, 24.319858178413746 ], [ -113.406414003040126, 24.324093716039204 ], [ -113.412960632457498, 24.32651402325375 ], [ -113.416506723391905, 24.326110638717992 ], [ -113.423598905260732, 24.321673408824658 ], [ -113.428236101098037, 24.319858178413746 ], [ -113.430963863355274, 24.320866639753142 ], [ -113.433146073161069, 24.319858178413746 ], [ -113.432327744483899, 24.284763723802808 ], [ -113.445421003318643, 24.285570492874324 ], [ -113.438874373901271, 24.26883003464037 ], [ -113.440783807481338, 24.259955574853695 ], [ -113.462060353087793, 24.244828654762774 ], [ -113.487155765854396, 24.273267264533708 ], [ -113.486337437177227, 24.283755262463412 ], [ -113.503249563172105, 24.288999261428266 ], [ -113.510341745040932, 24.275687571748254 ], [ -113.523707780101404, 24.276292648551891 ], [ -113.528344975938708, 24.299487259357971 ], [ -113.544984325707873, 24.289604338231904 ], [ -113.560259794348411, 24.308160026876767 ], [ -113.569261409797292, 24.310983718627071 ], [ -113.556986479639718, 24.331758022218605 ], [ -113.57635359166612, 24.364633861882876 ], [ -113.609359514978706, 24.339220636130126 ], [ -113.642910990742763, 24.3059414119301 ], [ -113.664460312574946, 24.277502802159166 ], [ -113.677553571409689, 24.235147425904582 ], [ -113.686009634407128, 24.261569112996725 ], [ -113.717378900365389, 24.245433731566411 ], [ -113.724471082234203, 24.238576194458524 ], [ -113.736746012391777, 24.226676350653666 ], [ -113.75502201951528, 24.208927431080319 ], [ -113.787482390376425, 24.183110820791811 ], [ -113.788573495279323, 24.17948035996999 ], [ -113.793210691116627, 24.165966978022098 ], [ -113.790210152633676, 24.146806212573598 ], [ -113.822397747269093, 24.127242062589339 ], [ -113.827853271783567, 24.116350680123876 ], [ -113.844765397778446, 24.110098219819626 ], [ -113.855403670581694, 24.091139146639005 ], [ -113.870406362996505, 24.083273148191726 ], [ -113.876680216188149, 24.104652528586897 ], [ -113.903139510083378, 24.11937606414206 ], [ -113.947056482424927, 24.106467758997805 ], [ -113.9729702238687, 24.116350680123876 ], [ -113.934781552267339, 24.139746983197835 ], [ -113.920051636078256, 24.126031908982064 ], [ -113.906412824792056, 24.132486061554193 ], [ -113.904776167437717, 24.152655288342089 ], [ -113.888409593894281, 24.18553112800636 ], [ -113.888682370120009, 24.209734200151836 ], [ -113.903685062534819, 24.274880802676737 ], [ -113.9195060836268, 24.316631102127683 ], [ -113.959876965033942, 24.353339094881655 ], [ -113.981153510640411, 24.399123239690176 ], [ -113.976516314803106, 24.417477236067164 ], [ -113.957694755228147, 24.406384161333818 ], [ -113.966696370677042, 24.451159844802948 ], [ -113.956330874099535, 24.464471534482961 ], [ -113.943510391490506, 24.483027223127824 ], [ -113.941600957910438, 24.485245838074494 ], [ -113.935599880944523, 24.504809988058753 ], [ -113.923597727012663, 24.505616757130269 ], [ -113.917051097595291, 24.517516600935128 ], [ -113.933417671138727, 24.546560287509699 ], [ -113.960422517485398, 24.585083510674579 ], [ -113.978698524608902, 24.627842271464917 ], [ -114.007612804535626, 24.665558725558284 ], [ -114.027252692787755, 24.687543182757089 ], [ -114.032708217302229, 24.71658686933166 ], [ -114.034890427108024, 24.72062071468924 ], [ -114.038436518042431, 24.725663021386215 ], [ -114.043346490105463, 24.726066405921973 ], [ -114.050711448200005, 24.733125635297736 ], [ -114.055894196488765, 24.740789941477136 ], [ -114.060804168551797, 24.749664401263811 ], [ -114.067350797969169, 24.764993013622611 ], [ -114.069805784000678, 24.77447255021292 ], [ -114.070624112677848, 24.781128395052928 ], [ -114.070351336452134, 24.782943625463837 ], [ -114.067896350420611, 24.785969009482024 ], [ -114.064895811937646, 24.793431623393545 ], [ -114.063259154583307, 24.809163620288103 ], [ -114.064077483260476, 24.812189004306287 ], [ -114.071169665129304, 24.819853310485687 ], [ -114.076625189643778, 24.821870233164478 ], [ -114.079625728126743, 24.820861771825083 ], [ -114.080444056803913, 24.818038080074778 ], [ -114.079625728126743, 24.81380254244932 ], [ -114.079625728126743, 24.811180542966895 ], [ -114.083990147738334, 24.794036700197182 ], [ -114.085354028866945, 24.791213008446874 ], [ -114.086717909995571, 24.788994393500207 ], [ -114.089991224704249, 24.786574086285661 ], [ -114.090809553381433, 24.786574086285661 ], [ -114.101720602410381, 24.803919621323249 ], [ -114.105266693344788, 24.813600850181441 ], [ -114.105539469570516, 24.815617772860229 ], [ -114.105812245796244, 24.818038080074778 ], [ -114.113177203890785, 24.820861771825083 ], [ -114.118359952179546, 24.819853310485687 ], [ -114.12217881933968, 24.81521438832447 ], [ -114.12217881933968, 24.812390696574166 ], [ -114.12463380537119, 24.804121313591128 ], [ -114.127088791402713, 24.800289160501428 ], [ -114.128452672531324, 24.796658699679607 ], [ -114.129543777434222, 24.788994393500207 ], [ -114.129271001208494, 24.783750394535353 ], [ -114.125179357822645, 24.773262396605649 ], [ -114.12217881933968, 24.755110092496544 ], [ -114.125452134048359, 24.731915481690461 ], [ -114.130907658562847, 24.727074867261365 ], [ -114.142364260043252, 24.719813945617723 ], [ -114.150274770589235, 24.71658686933166 ], [ -114.155184742652267, 24.71658686933166 ], [ -114.164186358101162, 24.718603792010448 ], [ -114.176461288258736, 24.715981792528023 ], [ -114.176461288258736, 24.712351331706202 ], [ -114.177825169387347, 24.709325947688018 ], [ -114.18028015541887, 24.706905640473472 ], [ -114.194464519156512, 24.696619334811643 ], [ -114.211103868925676, 24.687744875024968 ], [ -114.225561008889045, 24.678265338434656 ], [ -114.237290386595163, 24.66656718689768 ], [ -114.253111407687157, 24.654465650824939 ], [ -114.266477442747629, 24.645389498770388 ], [ -114.304393338123248, 24.630060886411588 ], [ -114.312849401120701, 24.62723719466128 ], [ -114.350492520270592, 24.616950888999455 ], [ -114.3734057232314, 24.612311966838238 ], [ -114.382680114906009, 24.611101813230963 ], [ -114.397955583546548, 24.610093351891571 ], [ -114.433689269116385, 24.610698428695208 ], [ -114.468059073557598, 24.619169503946122 ], [ -114.476515136555037, 24.622396580232184 ], [ -114.480879556166627, 24.626228733321888 ], [ -114.487698961809727, 24.634498116304925 ], [ -114.499155563290131, 24.657692727111005 ], [ -114.50161054932164, 24.666163802361922 ], [ -114.502156101773096, 24.669995955451622 ], [ -114.502156101773096, 24.672819647201926 ], [ -114.500246668193029, 24.67584503122011 ], [ -114.496155024807166, 24.679273799774052 ], [ -114.492336157647031, 24.680685645649206 ], [ -114.484425647101034, 24.681694106988601 ], [ -114.482516213520967, 24.685727952346181 ], [ -114.487153409358271, 24.693795643061339 ], [ -114.501883325547368, 24.708115794080744 ], [ -114.527797066991141, 24.720015637885602 ], [ -114.535162025085683, 24.720015637885602 ], [ -114.547164179017543, 24.729091789940156 ], [ -114.56653129104393, 24.756118553835936 ], [ -114.576078458944266, 24.770640397123223 ], [ -114.575532906492825, 24.773867473409286 ], [ -114.575805682718553, 24.777296241963228 ], [ -114.578806221201518, 24.781531779588686 ], [ -114.581533983458755, 24.783750394535353 ], [ -114.587262284198957, 24.785969009482024 ], [ -114.590808375133363, 24.786574086285661 ], [ -114.599809990582258, 24.793229931125666 ], [ -114.605538291322461, 24.79847393009052 ], [ -114.609357158482595, 24.801902698644462 ], [ -114.612357696965546, 24.806541620805675 ], [ -114.6139943543199, 24.810777158431137 ], [ -114.614267130545613, 24.813197465645683 ], [ -114.625723732026017, 24.825702386254179 ], [ -114.631452032766219, 24.822878694503871 ], [ -114.642908634246623, 24.823282079039629 ], [ -114.659275207790074, 24.826710847593574 ], [ -114.670731809270478, 24.831954846558425 ], [ -114.685461725459561, 24.841636075416616 ], [ -114.695827222037067, 24.850308842935412 ], [ -114.708102152194641, 24.861805302204512 ], [ -114.725832606866703, 24.882781298063925 ], [ -114.726650935543873, 24.885201605278471 ], [ -114.725287054415247, 24.890042219707567 ], [ -114.724468725738078, 24.891050681046963 ], [ -114.713557676709129, 24.896294680011813 ], [ -114.709193257097539, 24.896899756815451 ], [ -114.702101075228725, 24.902143755780305 ], [ -114.698554984294304, 24.906580985673642 ], [ -114.691735578651219, 24.92009436762153 ], [ -114.691462802425491, 24.929170519676084 ], [ -114.692553907328389, 24.931994211426389 ], [ -114.693645012231286, 24.933204365033664 ], [ -114.695008893359898, 24.934414518640938 ], [ -114.698554984294304, 24.93562467224821 ], [ -114.714103229160571, 24.935422979980331 ], [ -114.741653627958684, 24.911824984638493 ], [ -114.753383005664816, 24.910211446495463 ], [ -114.779842299560045, 24.913438522781526 ], [ -114.783115614268723, 24.91626221453183 ], [ -114.789935019911823, 24.925741751122143 ], [ -114.793753887071958, 24.933002672765785 ], [ -114.793753887071958, 24.933809441837301 ], [ -114.792935558394788, 24.936633133587605 ], [ -114.786116152751688, 24.946314362445797 ], [ -114.783388390494451, 24.947927900588827 ], [ -114.778751194657147, 24.948129592856706 ], [ -114.771113460336878, 24.946516054713676 ], [ -114.766203488273845, 24.946516054713676 ], [ -114.761566292436541, 24.948532977392464 ], [ -114.743563061538751, 24.970719126859152 ], [ -114.741926404184412, 24.973139434073698 ], [ -114.737834760798549, 24.983829124271281 ], [ -114.720649858577943, 25.002384812916148 ], [ -114.718467648772162, 25.003191581987664 ], [ -114.716285438966366, 25.002183120648269 ], [ -114.71273934803196, 25.00177973611251 ], [ -114.705374389937404, 25.008233888684636 ], [ -114.701555522777269, 25.014486348988886 ], [ -114.7007371941001, 25.01731004073919 ], [ -114.7007371941001, 25.020537117025253 ], [ -114.702373851454439, 25.022957424239802 ], [ -114.711375466903334, 25.029411576811928 ], [ -114.714648781612027, 25.033042037633749 ], [ -114.716558215192094, 25.036067421651932 ], [ -114.719013201223603, 25.041916497420424 ], [ -114.719831529900773, 25.047362188653153 ], [ -114.719013201223603, 25.049580803599824 ], [ -114.717649320094978, 25.048572342260428 ], [ -114.714921557837741, 25.04816895772467 ], [ -114.70591994238886, 25.050992649474978 ], [ -114.69910053674576, 25.056236648439828 ], [ -114.695008893359898, 25.060673878333166 ], [ -114.698827760520032, 25.067128030905295 ], [ -114.713830452934843, 25.06208572420832 ], [ -114.716285438966366, 25.061884031940441 ], [ -114.718467648772162, 25.066926338637415 ], [ -114.719013201223603, 25.072372029870145 ], [ -114.714648781612027, 25.090322641711374 ], [ -114.703737732583065, 25.112307098910179 ], [ -114.702646627680167, 25.114122329321091 ], [ -114.699646089197202, 25.11452571385685 ], [ -114.698009431842863, 25.116139251999883 ], [ -114.695554445811354, 25.122795096839887 ], [ -114.699373312971488, 25.124610327250796 ], [ -114.703464956357337, 25.123803558179283 ], [ -114.717103767643536, 25.111903714374421 ], [ -114.72174096348084, 25.103029254587749 ], [ -114.718194872546434, 25.097381871087137 ], [ -114.730742578929735, 25.082053258728337 ], [ -114.741653627958684, 25.076607567495603 ], [ -114.75120079585902, 25.074590644816816 ], [ -114.751746348310476, 25.080036336049545 ], [ -114.76320294979088, 25.0967767942835 ], [ -114.762384621113711, 25.105247869534416 ], [ -114.749564138504681, 25.107466484481087 ], [ -114.749564138504681, 25.113113867981696 ], [ -114.753655781890544, 25.117954482410791 ], [ -114.759656858856474, 25.133283094769592 ], [ -114.759929635082187, 25.136106786519896 ], [ -114.75883853017929, 25.137720324662929 ], [ -114.747654704924614, 25.151637091146576 ], [ -114.744108613990207, 25.154057398361125 ], [ -114.740016970604344, 25.154662475164763 ], [ -114.739744194378616, 25.153855706093246 ], [ -114.736743655895651, 25.15304893702173 ], [ -114.723104844609466, 25.153250629289609 ], [ -114.718467648772162, 25.154662475164763 ], [ -114.710829914451892, 25.160108166397492 ], [ -114.708920480871825, 25.163335242683559 ], [ -114.709466033323267, 25.171402933398717 ], [ -114.70591994238886, 25.188546776168426 ], [ -114.700191641648658, 25.185924776686001 ], [ -114.693372236005558, 25.187134930293276 ], [ -114.693372236005558, 25.195000928740555 ], [ -114.696918326939965, 25.199236466366013 ], [ -114.698827760520032, 25.200244927705405 ], [ -114.709738809548995, 25.200648312241164 ], [ -114.718467648772162, 25.199639850901768 ], [ -114.720377082352229, 25.198228005026618 ], [ -114.72174096348084, 25.196816159151464 ], [ -114.720922634803671, 25.185319699882363 ], [ -114.719831529900773, 25.183907854007209 ], [ -114.719013201223603, 25.181890931328422 ], [ -114.719558753675045, 25.175235086488417 ], [ -114.722832068383738, 25.172209702470234 ], [ -114.726650935543873, 25.173016471541747 ], [ -114.732924788735517, 25.175235086488417 ], [ -114.747109152473172, 25.183101084935696 ], [ -114.758565753953576, 25.198631389562376 ], [ -114.760475187533643, 25.202060158116318 ], [ -114.761020739985085, 25.204077080795109 ], [ -114.759111306405018, 25.207909233884806 ], [ -114.759111306405018, 25.209522772027839 ], [ -114.759929635082187, 25.213354925117539 ], [ -114.761020739985085, 25.214161694189055 ], [ -114.767567369402457, 25.21537184779633 ], [ -114.787207257654586, 25.228683537476339 ], [ -114.791298901040449, 25.22848184520846 ], [ -114.794572215749128, 25.222431077172093 ], [ -114.797027201780651, 25.201051696776922 ], [ -114.79784553045782, 25.191975544722368 ], [ -114.797572754232093, 25.188748468436305 ], [ -114.796481649329195, 25.182899392667817 ], [ -114.795117768200583, 25.180680777721147 ], [ -114.794026663297686, 25.179672316381755 ], [ -114.794026663297686, 25.177655393702963 ], [ -114.795117768200583, 25.176243547827809 ], [ -114.800846068940785, 25.174226625149021 ], [ -114.807938250809599, 25.173823240613263 ], [ -114.82894202019034, 25.178260470506601 ], [ -114.840125845445016, 25.181689239060542 ], [ -114.846672474862402, 25.186933238025397 ], [ -114.84994578957108, 25.191975544722368 ], [ -114.862220719728654, 25.24239861169211 ], [ -114.863311824631552, 25.250264610139389 ], [ -114.862493495954382, 25.259945838997581 ], [ -114.861402391051485, 25.264786453426673 ], [ -114.862220719728654, 25.26942537558789 ], [ -114.865221258211619, 25.272450759606073 ], [ -114.871222335177549, 25.276484604963656 ], [ -114.898499957749948, 25.282131988464265 ], [ -114.902864377361524, 25.280316758053353 ], [ -114.904501034715864, 25.278703219910323 ], [ -114.907774349424557, 25.280115065785473 ], [ -114.9140482026162, 25.285359064750327 ], [ -114.918958174679233, 25.292619986393973 ], [ -114.928232566353842, 25.316823058539445 ], [ -114.929869223708195, 25.323882287915211 ], [ -114.930141999933909, 25.326907671933395 ], [ -114.929869223708195, 25.331344901826732 ], [ -114.914593755067656, 25.342236284292195 ], [ -114.905319363393033, 25.347076898721291 ], [ -114.903409929812966, 25.34727859098917 ], [ -114.898499957749948, 25.350909051810991 ], [ -114.895226643041255, 25.36018689613342 ], [ -114.894953866815527, 25.366237664169791 ], [ -114.897136076621322, 25.370473201795249 ], [ -114.909411006778896, 25.383986583743138 ], [ -114.932324209739704, 25.395483043012241 ], [ -114.94350803499438, 25.394676273940725 ], [ -114.947054125928801, 25.392255966726175 ], [ -114.947872454605971, 25.390239044047387 ], [ -114.950600216863208, 25.386810275493445 ], [ -114.957965174957749, 25.384188276011017 ], [ -114.966421237955188, 25.382574737867987 ], [ -114.96914900021244, 25.37793581570677 ], [ -114.966966790406644, 25.373700278081312 ], [ -114.961784042117884, 25.367851202312821 ], [ -114.965330133052305, 25.364220741491003 ], [ -114.972422314921118, 25.363615664687366 ], [ -114.975968405855525, 25.369061355920095 ], [ -114.984424468852978, 25.38580181415405 ], [ -114.986061126207318, 25.390037351779508 ], [ -114.989607217141725, 25.40113042651285 ], [ -114.990425545818894, 25.404155810531037 ], [ -114.99097109827035, 25.407584579084979 ], [ -114.988788888464555, 25.460024568733509 ], [ -114.987970559787385, 25.466882105841393 ], [ -114.986333902433046, 25.47131933573473 ], [ -114.98415169262725, 25.471117643466851 ], [ -114.983878916401522, 25.470310874395334 ], [ -114.983878916401522, 25.464260106358964 ], [ -114.983606140175795, 25.444695956374709 ], [ -114.983060587724353, 25.431787651230454 ], [ -114.982787811498625, 25.428358882676513 ], [ -114.981151154144285, 25.428157190408633 ], [ -114.964784580600849, 25.432191035766209 ], [ -114.960147384763545, 25.433804573909242 ], [ -114.956874070054852, 25.436023188855913 ], [ -114.947054125928801, 25.440662111017126 ], [ -114.93368809086833, 25.445704417714101 ], [ -114.916503188647724, 25.44973826307168 ], [ -114.9140482026162, 25.451150108946834 ], [ -114.914593755067656, 25.458612722858355 ], [ -114.924413699193707, 25.458814415126234 ], [ -114.941598601414313, 25.46506687543048 ], [ -114.954419084023343, 25.472327797074122 ], [ -114.957419622506308, 25.475353181092309 ], [ -114.977332286984151, 25.507422251685064 ], [ -114.977877839435592, 25.509640866631731 ], [ -114.97815061566132, 25.51367471198931 ], [ -114.976241182081253, 25.514884865596585 ], [ -114.949236335734582, 25.52375932538326 ], [ -114.931233104836807, 25.521742402704469 ], [ -114.907501573198829, 25.522750864043864 ], [ -114.90504658716732, 25.523961017651139 ], [ -114.903137153587252, 25.526381324865685 ], [ -114.903137153587252, 25.529406708883869 ], [ -114.902046048684355, 25.530818554759023 ], [ -114.894953866815527, 25.533440554241448 ], [ -114.883224489109409, 25.534650707848723 ], [ -114.876677859692023, 25.538684553206302 ], [ -114.875041202337684, 25.540499783617214 ], [ -114.878041740820649, 25.546147167117823 ], [ -114.890589447203951, 25.558652087726319 ], [ -114.898499957749948, 25.568131624316631 ], [ -114.903955482264422, 25.579829775853611 ], [ -114.908047125650285, 25.590922850586953 ], [ -114.912138769036133, 25.60705823201727 ], [ -114.912411545261861, 25.610688692839091 ], [ -114.911593216584691, 25.62621899746577 ], [ -114.911047664133235, 25.633278226841533 ], [ -114.909411006778896, 25.64013576394942 ], [ -114.904501034715864, 25.655262684040341 ], [ -114.89822718152422, 25.670389604131262 ], [ -114.888407237398155, 25.686121601025821 ], [ -114.865494034437347, 25.726258362333734 ], [ -114.841489726573641, 25.766193431373768 ], [ -114.834670320930542, 25.776479737035597 ], [ -114.829760348867509, 25.785959273625906 ], [ -114.827032586610272, 25.797657425162889 ], [ -114.822395390772968, 25.809153884431986 ], [ -114.809302131938225, 25.829726495755644 ], [ -114.789389467460381, 25.855543106044149 ], [ -114.779569523334317, 25.864619258098703 ], [ -114.743563061538751, 25.881158024064774 ], [ -114.723923173286636, 25.89225109879812 ], [ -114.726105383092431, 25.900117097245399 ], [ -114.729924250252566, 25.900923866316916 ], [ -114.739471418152903, 25.897091713227212 ], [ -114.749836914730409, 25.894268021476908 ], [ -114.754201334341985, 25.895276482816303 ], [ -114.75720187282495, 25.898100174566608 ], [ -114.75883853017929, 25.900117097245399 ], [ -114.759929635082187, 25.902335712192066 ], [ -114.760475187533643, 25.90536109621025 ], [ -114.759384082630746, 25.91766432455087 ], [ -114.755565215470611, 25.920891400836933 ], [ -114.745472495118818, 25.916050786407837 ], [ -114.743290285313037, 25.91141186424662 ], [ -114.739198641927175, 25.909798326103591 ], [ -114.735106998541312, 25.912420325586016 ], [ -114.747381928698886, 25.973331390485463 ], [ -114.749018586053239, 25.975146620896371 ], [ -114.750382467181851, 25.975751697700009 ], [ -114.75201912453619, 25.980390619861225 ], [ -114.752564676987646, 25.986643080165472 ], [ -114.752564676987646, 25.990475233255172 ], [ -114.748473033601783, 26.006408922417609 ], [ -114.745745271344546, 26.01245969045398 ], [ -114.737561984572835, 26.015888459007922 ], [ -114.732379236284075, 26.022342611580047 ], [ -114.729651474026838, 26.032628917241876 ], [ -114.72856036912394, 26.045335530118251 ], [ -114.729924250252566, 26.056831989387351 ], [ -114.73456144608987, 26.061269219280689 ], [ -114.73456144608987, 26.062681065155839 ], [ -114.726105383092431, 26.085673983694043 ], [ -114.720104306126501, 26.093539982141323 ], [ -114.700464417874372, 26.111893978518307 ], [ -114.700191641648658, 26.11733966975104 ], [ -114.70673827106603, 26.120365053769223 ], [ -114.71273934803196, 26.117743054286798 ], [ -114.713284900483401, 26.11875151562619 ], [ -114.713557676709129, 26.120768438304982 ], [ -114.713012124257673, 26.126415821805594 ], [ -114.711921019354776, 26.129441205823777 ], [ -114.685734501685289, 26.168569505792295 ], [ -114.672641242850545, 26.185511656294128 ], [ -114.660911865144413, 26.192974270205649 ], [ -114.630360927863336, 26.206891036689296 ], [ -114.616722116577137, 26.211731651118392 ], [ -114.60199220038804, 26.214151958332941 ], [ -114.595718347196396, 26.214151958332941 ], [ -114.581806759684468, 26.209109651635966 ], [ -114.568986277075453, 26.202655499063837 ], [ -114.563530752560979, 26.198419961438383 ], [ -114.54389086430885, 26.197613192366866 ], [ -114.53707145866575, 26.198218269170503 ], [ -114.532161486602718, 26.19660473102747 ], [ -114.530797605474106, 26.195596269688075 ], [ -114.53025205302265, 26.193579347009287 ], [ -114.525614857185346, 26.185309964026249 ], [ -114.5136127032535, 26.172199966614116 ], [ -114.505974968933231, 26.165140737238353 ], [ -114.50079222064447, 26.167762736720778 ], [ -114.488244514261169, 26.163930583631078 ], [ -114.48578952822966, 26.158283200130469 ], [ -114.482788989746695, 26.154047662505008 ], [ -114.475424031652153, 26.147996894468641 ], [ -114.4669679686547, 26.14416474137894 ], [ -114.463421877720293, 26.141946126432273 ], [ -114.451419723788447, 26.129642898091653 ], [ -114.440781450985213, 26.122180284180132 ], [ -114.403411108061036, 26.130853051698928 ], [ -114.388135639420497, 26.13650043519954 ], [ -114.38540787716326, 26.138517357878328 ], [ -114.378042919068704, 26.151829047558341 ], [ -114.363313002879622, 26.167561044452899 ], [ -114.359766911945201, 26.170384736203204 ], [ -114.349401415367694, 26.184704887222612 ], [ -114.348037534239083, 26.187326886705037 ], [ -114.347764758013355, 26.189747193919587 ], [ -114.349674191593422, 26.20043688411717 ], [ -114.349674191593422, 26.202857191331717 ], [ -114.349128639141981, 26.205277498546266 ], [ -114.346673653110457, 26.209109651635966 ], [ -114.336580932758679, 26.215362111940212 ], [ -114.334398722952884, 26.215563804208092 ], [ -114.331943736921374, 26.214151958332941 ], [ -114.327306541084056, 26.215160419672333 ], [ -114.320214359215242, 26.218589188226275 ], [ -114.315577163377938, 26.223429802655371 ], [ -114.302211128317452, 26.246019336657817 ], [ -114.299483366060215, 26.250859951086909 ], [ -114.276024610647966, 26.296240711359676 ], [ -114.275206281970796, 26.298459326306343 ], [ -114.27466072951934, 26.303703325271197 ], [ -114.27547905819651, 26.307132093825139 ], [ -114.274387953293626, 26.310964246914839 ], [ -114.268114100101968, 26.324074244326972 ], [ -114.262385799361766, 26.333150396381527 ], [ -114.252838631461429, 26.343235009775473 ], [ -114.247383106946955, 26.350294239151239 ], [ -114.246837554495499, 26.351907777294269 ], [ -114.247110330721227, 26.35392469997306 ], [ -114.252565855235702, 26.367841466456706 ], [ -114.255566393718667, 26.372682080885802 ], [ -114.254748065041497, 26.374093926760956 ], [ -114.24601922581833, 26.375707464903986 ], [ -114.232925966983586, 26.371471927278527 ], [ -114.224742680211875, 26.366833005117314 ], [ -114.218741603245945, 26.365017774706402 ], [ -114.21574106476298, 26.364816082438523 ], [ -114.208648882894153, 26.366429620581556 ], [ -114.201283924799611, 26.355941622651848 ], [ -114.201283924799611, 26.349285777811843 ], [ -114.202102253476781, 26.348075624204569 ], [ -114.202102253476781, 26.346865470597294 ], [ -114.199374491219544, 26.341823163900322 ], [ -114.196101176510865, 26.336780857203347 ], [ -114.176734064484464, 26.337587626274864 ], [ -114.15845805736096, 26.340613010293048 ], [ -114.144000917397591, 26.345251932454264 ], [ -114.132271539691459, 26.351302700490631 ], [ -114.126270462725529, 26.352311161830027 ], [ -114.108812784279209, 26.349285777811843 ], [ -114.106903350699142, 26.346462086061536 ], [ -114.100629497507484, 26.34767223966881 ], [ -114.080444056803913, 26.353723007705181 ], [ -114.0528936580058, 26.363404236563369 ], [ -114.029707678819264, 26.374900695832473 ], [ -114.019342182241758, 26.382766694279752 ], [ -114.01906940601603, 26.383775155619144 ], [ -114.01743274866169, 26.396078383959761 ], [ -114.014704986404453, 26.403540997871282 ], [ -114.002975608698321, 26.419676379301599 ], [ -113.984154049123376, 26.452350526697991 ], [ -113.980607958188969, 26.459006371537996 ], [ -113.96533248954843, 26.495109287488333 ], [ -113.961240846162568, 26.505597285418038 ], [ -113.958785860131044, 26.515480206544105 ], [ -113.959058636356772, 26.524758050866538 ], [ -113.962059174839737, 26.543918816315038 ], [ -113.968333028031395, 26.559045736405963 ], [ -113.974606881223039, 26.574979425568401 ], [ -113.985517930252001, 26.596762190499327 ], [ -113.991791783443645, 26.606846803893276 ], [ -113.995065098152338, 26.610477264715097 ], [ -114.006521699632742, 26.638915874486031 ], [ -114.011977224147216, 26.657068178595136 ], [ -114.015250538855895, 26.679052635793944 ], [ -114.017978301113146, 26.703860784743053 ], [ -114.017705524887418, 26.706684476493361 ], [ -114.016887196210249, 26.709709860511545 ], [ -114.02425215430479, 26.723626626995191 ], [ -114.080444056803913, 26.780302154269179 ], [ -114.088627343575638, 26.792201998074038 ], [ -114.098447287701703, 26.792403690341917 ], [ -114.118359952179546, 26.800067996521317 ], [ -114.128725448757052, 26.798051073842529 ], [ -114.130089329885664, 26.797244304771013 ], [ -114.133908197045798, 26.791596921270404 ], [ -114.136908735528763, 26.798454458378288 ], [ -114.134726525722982, 26.828304914024372 ], [ -114.133635420820085, 26.837784450614684 ], [ -114.119178280856715, 26.851499524830452 ], [ -114.116450518599478, 26.852911370705606 ], [ -114.113995532567955, 26.849482602151664 ], [ -114.111267770310718, 26.847062294937118 ], [ -114.105266693344788, 26.84423860318681 ], [ -114.08753623867274, 26.840003065561355 ], [ -114.080444056803913, 26.838994604221959 ], [ -114.071987993806474, 26.838994604221959 ], [ -114.056712525165935, 26.84040645009711 ], [ -114.046619804814156, 26.84423860318681 ], [ -114.044710371234089, 26.845650449061964 ], [ -114.044710371234089, 26.848070756276513 ], [ -114.0460742523627, 26.852507986169847 ], [ -114.050165895748563, 26.854323216580759 ], [ -114.05207532932863, 26.855533370188034 ], [ -114.053439210457242, 26.856945216063185 ], [ -114.054257539134426, 26.858760446474097 ], [ -114.05371198668297, 26.860979061420764 ], [ -114.053439210457242, 26.862794291831676 ], [ -114.042528161428294, 26.86420613770683 ], [ -114.038163741816703, 26.86581967584986 ], [ -114.032708217302229, 26.869450136671681 ], [ -114.00843113321281, 26.900309053657161 ], [ -114.007340028309912, 26.904746283550498 ], [ -114.007067252084184, 26.906359821693531 ], [ -114.00843113321281, 26.933184893321432 ], [ -114.010067790567149, 26.949925351555386 ], [ -114.03025323127072, 26.978767345862078 ], [ -114.044983147459803, 26.995104419560274 ], [ -114.055075867811595, 26.999339957185732 ], [ -114.074988532289439, 27.013660108205137 ], [ -114.079898504352471, 27.018299030366354 ], [ -114.086445133769843, 27.025761644277875 ], [ -114.090264000929977, 27.031610720046366 ], [ -114.090536777155705, 27.033829334993033 ], [ -114.089991224704249, 27.035644565403942 ], [ -114.096265077895907, 27.038064872618492 ], [ -114.098992840153144, 27.035039488600308 ], [ -114.099538392604586, 27.033627642725154 ], [ -114.100083945056042, 27.027778566956663 ], [ -114.099538392604586, 27.024551490670603 ], [ -114.098992840153144, 27.022534567991812 ], [ -114.101447826184653, 27.017088876759079 ], [ -114.11017666540782, 27.006197494293616 ], [ -114.115359413696581, 27.001558572132399 ], [ -114.121087714436783, 26.990062112863299 ], [ -114.125724910274087, 26.97836396132632 ], [ -114.126816015176985, 26.972514885557828 ], [ -114.125997686499815, 26.967270886592978 ], [ -114.126270462725529, 26.965657348449945 ], [ -114.127907120079882, 26.96283365669964 ], [ -114.134453749497254, 26.957186273199028 ], [ -114.137454287980219, 26.95516935052024 ], [ -114.154366413975097, 26.950732120626903 ], [ -114.169914658841364, 26.954160889180844 ], [ -114.177006840710177, 26.95678288866327 ], [ -114.180007379193142, 26.958799811342061 ], [ -114.184917351256175, 26.964043810306912 ], [ -114.222287694180352, 26.923100279927485 ], [ -114.226924890017656, 26.920074895909302 ], [ -114.233744295660756, 26.917251204158994 ], [ -114.264022456716106, 26.91039366705111 ], [ -114.271932967262103, 26.907166590765048 ], [ -114.277661268002305, 26.903939514478985 ], [ -114.280934582710998, 26.899905669121402 ], [ -114.28584455477403, 26.892039670674123 ], [ -114.286117330999744, 26.886392287173514 ], [ -114.288026764579811, 26.874492443368656 ], [ -114.294300617771469, 26.869046752135922 ], [ -114.298392261157318, 26.867029829457135 ], [ -114.307939429057669, 26.859970600081368 ], [ -114.34394589085322, 26.828103221756493 ], [ -114.346400876884729, 26.822859222791642 ], [ -114.356220821010794, 26.798857842914046 ], [ -114.356220821010794, 26.797042612503134 ], [ -114.353220282527829, 26.792605382609796 ], [ -114.353220282527829, 26.788773229520096 ], [ -114.356493597236522, 26.759124466141891 ], [ -114.358675807042317, 26.756099082123704 ], [ -114.363040226653894, 26.753678774909158 ], [ -114.372314618328502, 26.745611084194 ], [ -114.381043457551669, 26.732501086781866 ], [ -114.385135100937532, 26.728265549156408 ], [ -114.38622620584043, 26.729274010495804 ], [ -114.388408415646211, 26.732904471317624 ], [ -114.390045073000564, 26.740568777497025 ], [ -114.389772296774836, 26.746216160997637 ], [ -114.388953968097667, 26.751056775426733 ], [ -114.390045073000564, 26.760536312017042 ], [ -114.391408954129176, 26.765175234178258 ], [ -114.398228359772276, 26.779092000661905 ], [ -114.403956660512478, 26.796437535699496 ], [ -114.404774989189647, 26.8079339949686 ], [ -114.422505443861709, 26.826287991345584 ], [ -114.428233744601911, 26.827901529488614 ], [ -114.440235898533757, 26.824674453202551 ], [ -114.442418108339552, 26.82346429959528 ], [ -114.439963122308043, 26.817010147023151 ], [ -114.438599241179418, 26.810555994451025 ], [ -114.437235360050806, 26.795025689824346 ], [ -114.448419185305482, 26.775259847572208 ], [ -114.45032861888555, 26.761746465624316 ], [ -114.452510828691345, 26.759124466141891 ], [ -114.458511905657261, 26.755494005320067 ], [ -114.463421877720293, 26.756099082123704 ], [ -114.474878479200697, 26.769410771803717 ], [ -114.47978845126373, 26.781108923340696 ], [ -114.481152332392355, 26.787361383644942 ], [ -114.501337773095912, 26.802488303735867 ], [ -114.514158255704942, 26.810555994451025 ], [ -114.522068766250939, 26.814388147540726 ], [ -114.551528598629119, 26.825481222274068 ], [ -114.562166871432353, 26.826489683613463 ], [ -114.597082228325007, 26.827296452684976 ], [ -114.606083843773902, 26.825682914541947 ], [ -114.609629934708309, 26.821649069184367 ], [ -114.624632627123134, 26.814388147540726 ], [ -114.628451494283269, 26.814186455272846 ], [ -114.638544214635047, 26.817010147023151 ], [ -114.643999739149521, 26.817615223826788 ], [ -114.658729655338618, 26.818018608362546 ], [ -114.680551753396529, 26.816405070219513 ], [ -114.689826145071152, 26.814589839808605 ], [ -114.711648243129062, 26.805513687754051 ], [ -114.724741501963805, 26.797445997038892 ], [ -114.735652550992768, 26.790588459931008 ], [ -114.784479495397349, 26.756099082123704 ], [ -114.789935019911823, 26.753678774909158 ], [ -114.797299978006365, 26.751460159962491 ], [ -114.82212261454724, 26.746619545533395 ], [ -114.824850376804477, 26.746619545533395 ], [ -114.86440292953445, 26.7609396965528 ], [ -114.903955482264422, 26.772032771286142 ], [ -114.930960328611093, 26.777276770250996 ], [ -114.970512881341051, 26.786756306841308 ], [ -114.983878916401522, 26.787764768180701 ], [ -115.00379158087938, 26.790991844466767 ], [ -115.056710168669809, 26.801278150128592 ], [ -115.065984560344418, 26.804706918682534 ], [ -115.097081050076952, 26.828909990828009 ], [ -115.101445469688528, 26.83496075886438 ], [ -115.109355980234525, 26.853516447509243 ], [ -115.114265952297558, 26.866223060385618 ], [ -115.116175385877625, 26.872677212957743 ], [ -115.116175385877625, 26.897485361906856 ], [ -115.115902609651897, 26.902527668603831 ], [ -115.106900994203016, 26.907771667568682 ], [ -115.104446008171493, 26.913015666533536 ], [ -115.103082127042882, 26.917452896426873 ], [ -115.102809350817154, 26.920276588177181 ], [ -115.102809350817154, 26.928747663428094 ], [ -115.103354903268595, 26.932176431982036 ], [ -115.104718784397221, 26.937823815482648 ], [ -115.108264875331628, 26.943067814447502 ], [ -115.127631987358029, 26.967472578860857 ], [ -115.138543036386992, 26.975943654111774 ], [ -115.144271337127194, 26.97977580720147 ], [ -115.14863575673877, 26.981389345344503 ], [ -115.159001253316276, 26.989053651523903 ], [ -115.162001791799241, 26.994499342756637 ], [ -115.162001791799241, 26.995709496363908 ], [ -115.160092358219174, 26.998331495846337 ], [ -115.159001253316276, 27.004382263882704 ], [ -115.159819581993446, 27.009626262847558 ], [ -115.16063791067063, 27.012651646865741 ], [ -115.168002868765171, 27.020517645313021 ], [ -115.184914994760049, 27.031005643242729 ], [ -115.192825505306047, 27.037258103546975 ], [ -115.197735477369079, 27.044115640654859 ], [ -115.202918225657825, 27.053393484977292 ], [ -115.202645449432111, 27.057225638066992 ], [ -115.202099896980656, 27.058234099406388 ], [ -115.200190463400588, 27.059645945281542 ], [ -115.198281029820521, 27.059645945281542 ], [ -115.195553267563284, 27.058839176210025 ], [ -115.188733861920184, 27.054805330852446 ], [ -115.186551652114389, 27.050973177762746 ], [ -115.184642218534322, 27.049763024155471 ], [ -115.172912840828204, 27.047141024673046 ], [ -115.156546267284767, 27.047141024673046 ], [ -115.150545190318837, 27.049157947351834 ], [ -115.149999637867396, 27.055007023120325 ], [ -115.144544113352907, 27.059847637549417 ], [ -115.128450316035199, 27.066705174657304 ], [ -115.126268106229418, 27.068318712800334 ], [ -115.120812581714929, 27.0753779421761 ], [ -115.118084819457692, 27.080016864337317 ], [ -115.117266490780523, 27.082840556087621 ], [ -115.117266490780523, 27.086067632373684 ], [ -115.11835759568342, 27.088286247320355 ], [ -115.120539805489216, 27.098774245250059 ], [ -115.120539805489216, 27.102001321536122 ], [ -115.116175385877625, 27.107648705036734 ], [ -115.104173231945779, 27.116523164823406 ], [ -115.096808273851224, 27.127212855020993 ], [ -115.099536036108461, 27.132860238521602 ], [ -115.103082127042882, 27.13709577614706 ], [ -115.114811504749014, 27.146373620469493 ], [ -115.123813120197894, 27.151617619434347 ], [ -115.130086973389552, 27.153836234381014 ], [ -115.136360826581196, 27.15484469572041 ], [ -115.140452469967059, 27.154441311184652 ], [ -115.145089665804363, 27.153432849845256 ], [ -115.150545190318837, 27.148188850880402 ], [ -115.156000714833311, 27.147785466344647 ], [ -115.16063791067063, 27.14859223541616 ], [ -115.182732784954254, 27.152827773041622 ], [ -115.193371057757489, 27.157668387470714 ], [ -115.202645449432111, 27.163114078703448 ], [ -115.226922533521531, 27.172391923025877 ], [ -115.241106897259186, 27.174812230240427 ], [ -115.25420015609393, 27.175215614776185 ], [ -115.297298799758309, 27.179451152401644 ], [ -115.311755939721678, 27.184896843634377 ], [ -115.330850275522351, 27.19962037918954 ], [ -115.339579114745518, 27.208091454440456 ], [ -115.339851890971232, 27.209704992583486 ], [ -115.356764016966125, 27.224226835870773 ], [ -115.381586653507, 27.238748679158057 ], [ -115.383223310861339, 27.242379139979878 ], [ -115.394407136116016, 27.24822821574837 ], [ -115.40504540891925, 27.251656984302311 ], [ -115.410773709659452, 27.25206036883807 ], [ -115.420320877559789, 27.256497598731407 ], [ -115.425503625848549, 27.25972467501747 ], [ -115.429868045460125, 27.267187288928991 ], [ -115.429868045460125, 27.270414365215053 ], [ -115.429322493008684, 27.27122113428657 ], [ -115.430140821685853, 27.276061748715666 ], [ -115.435050793748886, 27.283322670359308 ], [ -115.436687451103225, 27.289978515199312 ], [ -115.435596346200327, 27.296836052307199 ], [ -115.430686374137295, 27.310954511058725 ], [ -115.407500394950773, 27.330922045578742 ], [ -115.384587191989965, 27.343628658455117 ], [ -115.361946765254871, 27.354116656384821 ], [ -115.325394751007863, 27.375496036779992 ], [ -115.283932764697838, 27.406354953765472 ], [ -115.271112282088808, 27.418859874373968 ], [ -115.251472393836693, 27.436407101679439 ], [ -115.221739785232785, 27.459601712485519 ], [ -115.217648141846922, 27.465047403718252 ], [ -115.194189386434658, 27.486023399577661 ], [ -115.152181847673177, 27.518899239241932 ], [ -115.139088588838433, 27.529992313975274 ], [ -115.103627679494323, 27.553388617049237 ], [ -115.099263259882747, 27.549153079423775 ], [ -115.094353287819715, 27.547942925816503 ], [ -115.087533882176615, 27.544715849530441 ], [ -115.083442238790752, 27.545522618601957 ], [ -115.077441161824822, 27.543909080458924 ], [ -115.075804504470483, 27.542698926851649 ], [ -115.068712322601669, 27.540480311904982 ], [ -115.065711784118704, 27.53866508149407 ], [ -115.064620679215807, 27.537454927886799 ], [ -115.064620679215807, 27.536043082011645 ], [ -115.067621217698772, 27.53483292840437 ], [ -115.069530651278839, 27.532009236654066 ], [ -115.069530651278839, 27.530395698511033 ], [ -115.067348441473044, 27.527773699028607 ], [ -115.060529035829944, 27.524950007278299 ], [ -115.057801273572707, 27.522328007795874 ], [ -115.057528497346979, 27.520311085117086 ], [ -115.056437392444082, 27.519100931509811 ], [ -115.050163539252438, 27.51708400883102 ], [ -115.043344133609338, 27.518697546974053 ], [ -115.034069741934729, 27.518495854706174 ], [ -115.027795888743071, 27.51950431604557 ], [ -115.021794811777156, 27.521924623260116 ], [ -115.018794273294191, 27.521521238724361 ], [ -115.013065972553989, 27.518697546974053 ], [ -115.004337133330822, 27.51567216295587 ], [ -114.99779050391345, 27.515067086152232 ], [ -114.996699399010552, 27.512243394401928 ], [ -114.992062203173248, 27.514058624812836 ], [ -114.985515573755862, 27.517890777902537 ], [ -114.984697245078692, 27.517689085634657 ], [ -114.979241720564218, 27.52474831501042 ], [ -114.976786734532709, 27.525555084081937 ], [ -114.976513958306981, 27.524950007278299 ], [ -114.977059510758423, 27.52333646913527 ], [ -114.976513958306981, 27.522731392331632 ], [ -114.973513419824016, 27.524950007278299 ], [ -114.96914900021244, 27.525958468617695 ], [ -114.967785119083814, 27.525151699546178 ], [ -114.965602909278019, 27.526160160885574 ], [ -114.965057356826577, 27.530799083046791 ], [ -114.957965174957749, 27.53725323561892 ], [ -114.957965174957749, 27.541488773244374 ], [ -114.959329056086375, 27.545926003137712 ], [ -114.964511804375121, 27.546531079941349 ], [ -114.967512342858086, 27.54874969488802 ], [ -114.972422314921118, 27.55419538612075 ], [ -114.978696168112776, 27.559641077353483 ], [ -114.985515573755862, 27.563674922711062 ], [ -114.998608832590619, 27.566700306729246 ], [ -115.008428776716684, 27.565086768586212 ], [ -115.014702629908328, 27.566901998997125 ], [ -115.015793734811226, 27.567507075800762 ], [ -115.018248720842735, 27.571137536622583 ], [ -115.019885378197088, 27.574364612908646 ], [ -115.02043093064853, 27.580213688677137 ], [ -115.018521497068463, 27.5834407649632 ], [ -115.016339287262667, 27.590903378874721 ], [ -115.017703168391293, 27.596147377839575 ], [ -115.020158154422802, 27.600584607732912 ], [ -115.021794811777156, 27.605626914429884 ], [ -115.022067588002869, 27.607845529376554 ], [ -115.022340364228597, 27.613291220609284 ], [ -115.019885378197088, 27.615509835555955 ], [ -115.008156000490956, 27.623980910806871 ], [ -114.983606140175795, 27.638502754094155 ], [ -114.936415853125567, 27.667748132936605 ], [ -114.896863300395594, 27.690539359206927 ], [ -114.88540669891519, 27.694774896832385 ], [ -114.811211565518292, 27.731079505050598 ], [ -114.755292439244883, 27.752458885445769 ], [ -114.755292439244883, 27.752458885445769 ], [ -114.745199718893105, 27.752862269981527 ], [ -114.69991886542293, 27.761131652964565 ], [ -114.678915096042189, 27.763148575643353 ], [ -114.678642319816461, 27.762543498839715 ], [ -114.678642319816461, 27.761938422036081 ], [ -114.679733424719359, 27.754879192660315 ], [ -114.66527628475599, 27.746408117409398 ], [ -114.659275207790074, 27.747819963284552 ], [ -114.654638011952756, 27.750441962766978 ], [ -114.636907557280708, 27.746206425141523 ], [ -114.631179256540506, 27.730272735979081 ], [ -114.630906480314778, 27.722003352996047 ], [ -114.631179256540506, 27.718574584442102 ], [ -114.636089228603538, 27.70122904940451 ], [ -114.642363081795182, 27.692556281885718 ], [ -114.650273592341179, 27.683681822099043 ], [ -114.652183025921246, 27.678841207669947 ], [ -114.654910788178483, 27.669361671079635 ], [ -114.653274130824144, 27.641124753576584 ], [ -114.648364158761112, 27.631846909254151 ], [ -114.646727501406772, 27.630233371111117 ], [ -114.644272515375249, 27.619341988645655 ], [ -114.643999739149521, 27.615509835555955 ], [ -114.646181948955316, 27.609660759787467 ], [ -114.656820221758551, 27.595138916500179 ], [ -114.665821837207446, 27.588483071660175 ], [ -114.682461186976596, 27.583642457231079 ], [ -114.688189487716798, 27.579810304141379 ], [ -114.690371697522593, 27.571540921158341 ], [ -114.689826145071152, 27.570532459818946 ], [ -114.687643935265356, 27.570129075283187 ], [ -114.674550676430613, 27.570330767551066 ], [ -114.657911326661448, 27.576583227855316 ], [ -114.650273592341179, 27.563069845907425 ], [ -114.646454725181044, 27.552178463441962 ], [ -114.643454186698079, 27.545724310869836 ], [ -114.634725347474912, 27.536043082011645 ], [ -114.628724270508982, 27.527975391296486 ], [ -114.627633165606085, 27.524143238206786 ], [ -114.627087613154643, 27.518294162438295 ], [ -114.6003555430337, 27.518899239241932 ], [ -114.585352850618889, 27.525555084081937 ], [ -114.57853344497579, 27.531202467582549 ], [ -114.577442340072892, 27.533421082529216 ], [ -114.549346388823324, 27.535236312940128 ], [ -114.543345311857408, 27.531202467582549 ], [ -114.538435339794376, 27.528782160368003 ], [ -114.516067689285009, 27.525958468617695 ], [ -114.511976045899146, 27.526361853153453 ], [ -114.502156101773096, 27.528782160368003 ], [ -114.493700038775643, 27.531807544386186 ], [ -114.484698423326762, 27.536648158815282 ], [ -114.462330772817396, 27.541287080976495 ], [ -114.446782527951143, 27.545522618601957 ], [ -114.439417569856587, 27.546531079941349 ], [ -114.425505982344674, 27.534429543868612 ], [ -114.425233206118946, 27.532816005725579 ], [ -114.423869324990335, 27.53100077531467 ], [ -114.416504366895779, 27.525353391814058 ], [ -114.41404938086427, 27.525151699546178 ], [ -114.397137254869378, 27.529185544903761 ], [ -114.384043996034634, 27.536648158815282 ], [ -114.377497366617263, 27.532816005725579 ], [ -114.375042380585739, 27.526563545421332 ], [ -114.370677960974163, 27.523941545938907 ], [ -114.367131870039756, 27.523941545938907 ], [ -114.359494135719487, 27.526361853153453 ], [ -114.348583086690525, 27.532210928921945 ], [ -114.337126485210121, 27.540076927369224 ], [ -114.325669883729717, 27.551573386638324 ], [ -114.325397107503989, 27.551371694370445 ], [ -114.323487673923921, 27.547337849012866 ], [ -114.321851016569582, 27.546531079941349 ], [ -114.303847785671806, 27.546127695405591 ], [ -114.289117869482709, 27.537051543351041 ], [ -114.267568547650527, 27.53100077531467 ], [ -114.264022456716106, 27.536244774279524 ], [ -114.263476904264664, 27.540278619637103 ], [ -114.261567470684597, 27.546732772209229 ], [ -114.25802137975019, 27.555607231995904 ], [ -114.241927582432481, 27.574969689712283 ], [ -114.239472596400958, 27.580213688677137 ], [ -114.233471519435028, 27.595138916500179 ], [ -114.233198743209314, 27.599374454125638 ], [ -114.232107638306417, 27.606231991233521 ], [ -114.222287694180352, 27.636687523683246 ], [ -114.211376645151404, 27.648385675220226 ], [ -114.189827323319207, 27.648789059755984 ], [ -114.184644575030447, 27.647780598416588 ], [ -114.183553470127549, 27.642334907183855 ], [ -114.182189588998938, 27.639309523165672 ], [ -114.179734602967415, 27.633460447397184 ], [ -114.178097945613075, 27.632451986057788 ], [ -114.168823553938466, 27.630233371111117 ], [ -114.156821400006606, 27.630031678843238 ], [ -114.14727423210627, 27.635477370075971 ], [ -114.137181511754491, 27.642939983987493 ], [ -114.133635420820085, 27.643948445326888 ], [ -114.13063488233712, 27.642334907183855 ], [ -114.127361567628427, 27.6419315226481 ], [ -114.120814938211055, 27.644351829862646 ], [ -114.119723833308157, 27.644956906666284 ], [ -114.119451057082443, 27.646167060273555 ], [ -114.119451057082443, 27.647578906148709 ], [ -114.120814938211055, 27.653024597381439 ], [ -114.121633266888225, 27.654436443256593 ], [ -114.134180973271526, 27.66653797932933 ], [ -114.138545392883117, 27.676824284991159 ], [ -114.140727602688898, 27.680253053545101 ], [ -114.144819246074761, 27.686102129313589 ], [ -114.149183665686337, 27.689329205599655 ], [ -114.155457518877995, 27.691346128278443 ], [ -114.166095791681229, 27.693363050957231 ], [ -114.1931006380279, 27.703044279815423 ], [ -114.224197127760419, 27.709700124655427 ], [ -114.255293617492953, 27.706271356101485 ], [ -114.276570163099407, 27.687715667456622 ], [ -114.2934822890943, 27.678437823134189 ], [ -114.294300617771469, 27.68065643808086 ], [ -114.289663421934165, 27.704052741154818 ], [ -114.288572317031267, 27.71131366279846 ], [ -114.288026764579811, 27.723818583406956 ], [ -114.289663421934165, 27.745601348337885 ], [ -114.292663960417116, 27.756291038535469 ], [ -114.323487673923921, 27.788360109128224 ], [ -114.335489827855781, 27.796226107575503 ], [ -114.336853708984393, 27.797839645718533 ], [ -114.338490366338746, 27.803688721487024 ], [ -114.340672576144527, 27.811353027666424 ], [ -114.342854785950323, 27.816597026631278 ], [ -114.346400876884729, 27.822647794667645 ], [ -114.353493058753557, 27.832732408061595 ], [ -114.363858555331063, 27.842010252384028 ], [ -114.371496289651333, 27.845035636402212 ], [ -114.386498982066144, 27.847859328152516 ], [ -114.399865017126615, 27.848867789491912 ], [ -114.414322157089984, 27.852699942581612 ], [ -114.414594933315712, 27.856128711135554 ], [ -114.415140485767154, 27.860162556493133 ], [ -114.417595471798677, 27.868835324011929 ], [ -114.424142101216049, 27.880936860084667 ], [ -114.429870401956251, 27.890013012139221 ], [ -114.434234821567841, 27.895257011104071 ], [ -114.438053688727976, 27.899089164193771 ], [ -114.439417569856587, 27.900904394604684 ], [ -114.440235898533757, 27.902921317283472 ], [ -114.440781450985213, 27.904938239962263 ], [ -114.440508674759485, 27.911795777070147 ], [ -114.439417569856587, 27.917443160570759 ], [ -114.437235360050806, 27.923292236339247 ], [ -114.434234821567841, 27.92631762035743 ], [ -114.419232129153016, 27.934788695608347 ], [ -114.392500059032074, 27.94406653993078 ], [ -114.3802251288745, 27.93640223375138 ], [ -114.378042919068704, 27.931158234786526 ], [ -114.369041303619824, 27.914417776552575 ], [ -114.346673653110457, 27.884769013174367 ], [ -114.342582009724595, 27.880533475548908 ], [ -114.338217590113018, 27.878516552870117 ], [ -114.333853170501442, 27.877709783798601 ], [ -114.327306541084056, 27.877709783798601 ], [ -114.326215436181172, 27.868431939476171 ], [ -114.328670422212682, 27.856733787939191 ], [ -114.330307079567021, 27.851489788974337 ], [ -114.333307618049986, 27.847859328152516 ], [ -114.334671499178611, 27.844632251866454 ], [ -114.335762604081509, 27.84160686784827 ], [ -114.336580932758679, 27.836564561151295 ], [ -114.334944275404325, 27.823252871471283 ], [ -114.333853170501442, 27.817403795702795 ], [ -114.332762065598544, 27.814983488488245 ], [ -114.325669883729717, 27.809134412719757 ], [ -114.313122177346415, 27.79683118437914 ], [ -114.309848862637736, 27.792192262217924 ], [ -114.305211666800417, 27.783519494699128 ], [ -114.303575009446078, 27.778275495734277 ], [ -114.301392799640283, 27.774039958108816 ], [ -114.294027841545741, 27.767989190072448 ], [ -114.271932967262103, 27.751450424106373 ], [ -114.24438256846399, 27.732491350925752 ], [ -114.234835400563654, 27.728054121032415 ], [ -114.224469903986147, 27.73067612051484 ], [ -114.210012764022778, 27.737735349890606 ], [ -114.190918428222105, 27.751047039570615 ], [ -114.183553470127549, 27.764358729250628 ], [ -114.186554008610514, 27.771216266358511 ], [ -114.206193896862644, 27.770611189554874 ], [ -114.216013840988708, 27.768795959143965 ], [ -114.218741603245945, 27.768795959143965 ], [ -114.22174214172891, 27.769804420483361 ], [ -114.223651575308978, 27.772224727697907 ], [ -114.223924351534691, 27.773838265840936 ], [ -114.22256047040608, 27.775653496251849 ], [ -114.222287694180352, 27.778275495734277 ], [ -114.224197127760419, 27.785939801913678 ], [ -114.234289848112212, 27.79461256943247 ], [ -114.24520089714116, 27.799049799325807 ], [ -114.25802137975019, 27.805705644165812 ], [ -114.263476904264664, 27.809941181791274 ], [ -114.297846708705876, 27.845842405473725 ], [ -114.301120023414569, 27.851086404438579 ], [ -114.300301694737385, 27.888601166264067 ], [ -114.298119484931604, 27.896467164711346 ], [ -114.294300617771469, 27.898887471925892 ], [ -114.289936198159879, 27.906350085837417 ], [ -114.288299540805539, 27.912804238409542 ], [ -114.288299540805539, 27.919056698713788 ], [ -114.279025149130931, 27.94648684714533 ], [ -114.275206281970796, 27.959798536825339 ], [ -114.274387953293626, 27.965042535790193 ], [ -114.274933505745068, 27.966857766201102 ], [ -114.27466072951934, 27.967462843004739 ], [ -114.272478519713559, 27.968067919808377 ], [ -114.25202030278426, 27.957378229610793 ], [ -114.238108715272347, 27.959798536825339 ], [ -114.237835939046619, 27.963832382182918 ], [ -114.23838149149806, 27.970891611558681 ], [ -114.242473134883923, 27.976740687327172 ], [ -114.247383106946955, 27.98117791722051 ], [ -114.264840785393289, 27.990254069275061 ], [ -114.278479596679475, 27.990254069275061 ], [ -114.28066180648527, 27.985413454845968 ], [ -114.290208974385607, 27.998321759990219 ], [ -114.297846708705876, 28.005380989365985 ], [ -114.300028918511671, 28.006389450705377 ], [ -114.304666114348976, 28.006792835241136 ], [ -114.307121100380485, 28.006591142973257 ], [ -114.315031610926482, 28.004574220294469 ], [ -114.355402492333624, 27.989850684739302 ], [ -114.370677960974163, 27.979564379077477 ], [ -114.37422405190857, 27.975933918255656 ], [ -114.37422405190857, 27.973715303308989 ], [ -114.375042380585739, 27.973110226505352 ], [ -114.395773373740766, 27.971900072898077 ], [ -114.401228898255241, 27.96968145795141 ], [ -114.406684422769715, 27.966252689397464 ], [ -114.40968496125268, 27.966050997129585 ], [ -114.412685499735645, 27.96726115073686 ], [ -114.415140485767154, 27.969883150219289 ], [ -114.416231590670051, 27.972101765165956 ], [ -114.415413261992882, 27.974522072380502 ], [ -114.416777143121507, 27.984808378042331 ], [ -114.418413800475847, 27.990052377007181 ], [ -114.420050457830186, 27.992270991953852 ], [ -114.42168711518454, 27.992069299685973 ], [ -114.424142101216049, 27.990254069275061 ], [ -114.425778758570402, 27.986018531649606 ], [ -114.426051534796116, 27.979362686809598 ], [ -114.441054227210941, 27.975127149184139 ], [ -114.447600856628313, 27.974723764648381 ], [ -114.45032861888555, 27.975732225987777 ], [ -114.451692500014161, 27.978152533202326 ], [ -114.451692500014161, 27.981782994024144 ], [ -114.451419723788447, 27.983598224435056 ], [ -114.451965276239889, 27.985211762578089 ], [ -114.455238590948582, 27.990859146078698 ], [ -114.459603010560159, 27.994691299168402 ], [ -114.474060150523528, 27.988237146596273 ], [ -114.482516213520967, 27.983799916702935 ], [ -114.484152870875306, 27.982186378559902 ], [ -114.48578952822966, 27.97492545691626 ], [ -114.488244514261169, 27.972303457433835 ], [ -114.494518367452827, 27.969076381147772 ], [ -114.530524829248378, 27.982186378559902 ], [ -114.567076843495386, 27.988640531132031 ], [ -114.585352850618889, 27.993481145561127 ], [ -114.593263361164873, 27.996304837311431 ], [ -114.602810529065209, 27.998321759990219 ], [ -114.617813221480034, 27.999733605865373 ], [ -114.626542060703201, 28.002355605347802 ], [ -114.639908095763673, 28.008406373384169 ], [ -114.645909172729588, 28.012238526473869 ], [ -114.647818606309656, 28.014658833688415 ], [ -114.647545830083942, 28.01828929451024 ], [ -114.647818606309656, 28.030592522850853 ], [ -114.648364158761112, 28.040475443976923 ], [ -114.649455263664009, 28.052173595513903 ], [ -114.653819683275586, 28.073552975909074 ], [ -114.666912942110343, 28.116110044431533 ], [ -114.673459571527715, 28.133455579469125 ], [ -114.678369543590748, 28.146363884613379 ], [ -114.703192180131623, 28.200417412404938 ], [ -114.717103767643536, 28.222805254139502 ], [ -114.722286515932296, 28.230066175783147 ], [ -114.728833145349668, 28.236722020623152 ], [ -114.740835299281514, 28.246201557213464 ], [ -114.798936635360718, 28.283111242235314 ], [ -114.842853607702267, 28.325264926222015 ], [ -114.865766810663075, 28.346039229813549 ], [ -114.892498880784018, 28.369838917423266 ], [ -114.90504658716732, 28.378511684942062 ], [ -114.915957636196268, 28.389403067407525 ], [ -114.92250426561364, 28.39807583492632 ], [ -114.923322594290823, 28.402311372551779 ], [ -114.924959251645163, 28.404126602962688 ], [ -114.945690244800176, 28.417034908106942 ], [ -114.957965174957749, 28.424497522018463 ], [ -114.968876223986712, 28.430548290054833 ], [ -114.998063280139178, 28.437204134894838 ], [ -115.013065972553989, 28.437405827162717 ], [ -115.02043093064853, 28.438615980769992 ], [ -115.032978637031832, 28.444061672002722 ], [ -115.050436315478166, 28.456768284879097 ], [ -115.052072972832505, 28.458583515290009 ], [ -115.054527958864014, 28.466247821469409 ], [ -115.055619063766912, 28.468466436416076 ], [ -115.098717707431291, 28.512838735349447 ], [ -115.109628756460253, 28.521713195136122 ], [ -115.11999425303776, 28.529175809047643 ], [ -115.137997483935536, 28.539663806977352 ], [ -115.15381850502753, 28.54773149769251 ], [ -115.173185617053917, 28.555597496139789 ], [ -115.190643295500251, 28.554992419336152 ], [ -115.198553806046249, 28.552773804389481 ], [ -115.201281568303486, 28.550958573978573 ], [ -115.202099896980656, 28.551361958514327 ], [ -115.19991768717486, 28.554387342532515 ], [ -115.195280491337556, 28.558421187890094 ], [ -115.17727726043978, 28.569917647159194 ], [ -115.121358134166385, 28.594725796108307 ], [ -115.118903148134862, 28.596742718787095 ], [ -115.115357057200455, 28.600373179608916 ], [ -115.11317484739466, 28.604205332698616 ], [ -115.109355980234525, 28.61328148475317 ], [ -115.108810427783084, 28.614895022896203 ], [ -115.108537651557356, 28.617517022378628 ], [ -115.107446546654458, 28.636476095559253 ], [ -115.098990483657019, 28.656645322347146 ], [ -115.097081050076952, 28.66168762904412 ], [ -115.095717168948326, 28.667133320276854 ], [ -115.095717168948326, 28.668545166152008 ], [ -115.096808273851224, 28.672377319241704 ], [ -115.096535497625496, 28.684680547582325 ], [ -115.093807735368259, 28.708278542924162 ], [ -115.09135274933675, 28.714934387764167 ], [ -115.091079973111022, 28.720380078996897 ], [ -115.089443315756682, 28.761726993912085 ], [ -115.08971609198241, 28.767172685144814 ], [ -115.09053442065958, 28.773626837716943 ], [ -115.091898301788191, 28.780080990289072 ], [ -115.095171616496884, 28.799645140273327 ], [ -115.095444392722612, 28.805695908309698 ], [ -115.093807735368259, 28.808721292327881 ], [ -115.026977560065902, 28.803477293363031 ], [ -115.002154923525026, 28.800250217076965 ], [ -114.98660667865876, 28.799645140273327 ], [ -114.97815061566132, 28.80125867841636 ], [ -114.945417468574448, 28.80367898563091 ], [ -114.885679475140918, 28.817797444382435 ], [ -114.871767887628991, 28.822436366543652 ], [ -114.859765733697145, 28.823848212418802 ], [ -114.833851992253372, 28.832520979937598 ], [ -114.81230267042119, 28.837563286634573 ], [ -114.774386775045556, 28.844017439206702 ], [ -114.767021816951015, 28.84603436188549 ], [ -114.751746348310476, 28.853295283529132 ], [ -114.746836376247444, 28.856522359815195 ], [ -114.736743655895651, 28.865800204137628 ], [ -114.720922634803671, 28.873867894852786 ], [ -114.708102152194641, 28.887179584532799 ], [ -114.702373851454439, 28.895448967515833 ], [ -114.697463879391421, 28.901096351016449 ], [ -114.680824529622257, 28.914408040696458 ], [ -114.66964070436758, 28.926106192233437 ], [ -114.656820221758551, 28.942443265931633 ], [ -114.650546368566907, 28.951116033450429 ], [ -114.637725885957877, 28.976529259203176 ], [ -114.613721578094172, 29.015455866903817 ], [ -114.603628857742393, 29.019893096797155 ], [ -114.602810529065209, 29.020699865868671 ], [ -114.588626165327568, 29.053172320997184 ], [ -114.58453452194172, 29.064265395730523 ], [ -114.583716193264536, 29.072131394177802 ], [ -114.583988969490264, 29.076366931803264 ], [ -114.583716193264536, 29.082417699839631 ], [ -114.579624549878687, 29.103797080234802 ], [ -114.57689678762145, 29.114285078164507 ], [ -114.576078458944266, 29.114688462700265 ], [ -114.574441801589927, 29.117713846718452 ], [ -114.573077920461316, 29.126184921969365 ], [ -114.571986815558418, 29.140706765256652 ], [ -114.572805144235588, 29.143933841542712 ], [ -114.574714577815655, 29.149177840507569 ], [ -114.582079535910196, 29.155026916276057 ], [ -114.589444494004738, 29.163296299259095 ], [ -114.589444494004738, 29.165111529670007 ], [ -114.588626165327568, 29.166725067813037 ], [ -114.574714577815655, 29.173380912653045 ], [ -114.558620780497947, 29.213517673960958 ], [ -114.559711885400844, 29.216946442514896 ], [ -114.566258514818216, 29.224409056426417 ], [ -114.574441801589927, 29.228846286319758 ], [ -114.575805682718553, 29.229249670855516 ], [ -114.57853344497579, 29.228241209516121 ], [ -114.575260130267097, 29.242359668267646 ], [ -114.567349619721114, 29.255066281144021 ], [ -114.559711885400844, 29.26313397185918 ], [ -114.554256360886356, 29.265755971341605 ], [ -114.548528060146154, 29.269588124431309 ], [ -114.537617011117206, 29.289152274415564 ], [ -114.528615395668311, 29.302262271827697 ], [ -114.51443103193067, 29.321019652740439 ], [ -114.512794374576316, 29.322028114079835 ], [ -114.511976045899146, 29.320011191401047 ], [ -114.510884940996249, 29.320011191401047 ], [ -114.509793836093365, 29.320616268204681 ], [ -114.493972815001371, 29.349659954779256 ], [ -114.492608933872759, 29.353290415601073 ], [ -114.491517828969862, 29.362366567655627 ], [ -114.492608933872759, 29.368619027959873 ], [ -114.492336157647031, 29.380922256300494 ], [ -114.490972276518406, 29.38172902537201 ], [ -114.481425108618069, 29.382737486711402 ], [ -114.474878479200697, 29.389998408355048 ], [ -114.475696807877867, 29.393023792373228 ], [ -114.476242360329323, 29.398066099070206 ], [ -114.469695730911951, 29.413798095964765 ], [ -114.446236975499687, 29.439816398521149 ], [ -114.43750813627652, 29.452523011397524 ], [ -114.425778758570402, 29.470675315506629 ], [ -114.42086878650737, 29.48197008250785 ], [ -114.417322695572949, 29.492256388169679 ], [ -114.411867171058475, 29.503147770635142 ], [ -114.402320003158138, 29.511618845886058 ], [ -114.400956122029513, 29.512425614957575 ], [ -114.399865017126615, 29.512022230421817 ], [ -114.399592240900901, 29.510207000010908 ], [ -114.399865017126615, 29.508190077332117 ], [ -114.400137793352343, 29.506173154653325 ], [ -114.400137793352343, 29.4997190020812 ], [ -114.397682807320834, 29.495483464455742 ], [ -114.392227282806346, 29.490441157758767 ], [ -114.388681191871939, 29.488424235079979 ], [ -114.387044534517599, 29.491853003633921 ], [ -114.387044534517599, 29.494475003116349 ], [ -114.385680653388974, 29.496491925795137 ], [ -114.375042380585739, 29.495080079919983 ], [ -114.372314618328502, 29.491046234562404 ], [ -114.369859632296993, 29.485802235597554 ], [ -114.365222436459689, 29.483583620650883 ], [ -114.347491981787627, 29.483381928383004 ], [ -114.327579317309784, 29.487012389204825 ], [ -114.313940506023584, 29.491651311366041 ], [ -114.305484443026145, 29.496491925795137 ], [ -114.279297925356644, 29.522106843815763 ], [ -114.270023533682036, 29.53279653401335 ], [ -114.265931890296173, 29.527955919584254 ], [ -114.263749680490392, 29.528762688655771 ], [ -114.242473134883923, 29.543284531943055 ], [ -114.226652113791943, 29.558814836569738 ], [ -114.196919505188035, 29.592699137573401 ], [ -114.190918428222105, 29.599758366949164 ], [ -114.190372875770649, 29.600968520556435 ], [ -114.189827323319207, 29.605204058181897 ], [ -114.151365875492132, 29.652400048865573 ], [ -114.129271001208494, 29.689108041619544 ], [ -114.109085560504923, 29.718151728194115 ], [ -114.092446210735773, 29.738724339517766 ], [ -114.071442441355032, 29.770591717842642 ], [ -114.062440825906137, 29.7786594085578 ], [ -114.053984762908698, 29.78491186886205 ], [ -114.006521699632742, 29.813350478632984 ], [ -114.001066175118254, 29.816375862651167 ], [ -113.997520084183847, 29.817586016258439 ], [ -113.998065636635289, 29.809316633275404 ], [ -113.996974531732405, 29.804879403382067 ], [ -113.993155664572271, 29.795601559059634 ], [ -113.997247307958119, 29.790357560094783 ], [ -114.016887196210249, 29.784710176594171 ], [ -114.023161049401892, 29.782289869379625 ], [ -114.02343382562762, 29.778861100825679 ], [ -114.023979378079062, 29.770793410110521 ], [ -114.016341643758793, 29.761112181252333 ], [ -114.012522776598658, 29.761313873520209 ], [ -113.991246230992203, 29.763532488466879 ], [ -113.970242461611463, 29.768776487431733 ], [ -113.966696370677042, 29.770390025574763 ], [ -113.963423055968363, 29.77341540959295 ], [ -113.965878041999872, 29.779667869897196 ], [ -113.967514699354211, 29.780878023504471 ], [ -113.967787475579939, 29.783903407522654 ], [ -113.91786942627246, 29.7863237147372 ], [ -113.910504468177919, 29.787937252880234 ], [ -113.877225768639605, 29.797215097202667 ], [ -113.877225768639605, 29.802660788435396 ], [ -113.878316873542502, 29.807501402864492 ], [ -113.878044097316774, 29.809114941007525 ], [ -113.856767551710305, 29.808308171936009 ], [ -113.842583187972664, 29.811736940489951 ], [ -113.823761628397705, 29.81960293893723 ], [ -113.801939530339794, 29.832511244081484 ], [ -113.795665677148151, 29.836746781706942 ], [ -113.785300180570644, 29.845217856957859 ], [ -113.776844117573205, 29.853688932208776 ], [ -113.747929837646467, 29.884346156926377 ], [ -113.736746012391777, 29.89906969248154 ], [ -113.73319992145737, 29.904717075982152 ], [ -113.714378361882424, 29.937391223378544 ], [ -113.698830117016158, 29.975107677471911 ], [ -113.692829040050228, 29.988015982616162 ], [ -113.679190228764043, 30.016656284654974 ], [ -113.660095892963369, 30.054372738748341 ], [ -113.655458697126051, 30.061028583588346 ], [ -113.638273794905444, 30.081601194912 ], [ -113.634727703971038, 30.085029963465942 ], [ -113.627362745876496, 30.090072270162914 ], [ -113.625998864747871, 30.081601194912 ], [ -113.624362207393531, 30.0739368887326 ], [ -113.623271102490634, 30.071718273785933 ], [ -113.618633906653329, 30.065264121213804 ], [ -113.617542801750432, 30.064659044410167 ], [ -113.597630137272589, 30.055582892355616 ], [ -113.590265179178033, 30.053565969676825 ], [ -113.584809654663559, 30.053364277408946 ], [ -113.582081892406322, 30.054574431016221 ], [ -113.56871585734585, 30.05618796915925 ], [ -113.546620983062212, 30.051952431533792 ], [ -113.537346591387603, 30.035211973299837 ], [ -113.538164920064773, 30.031984897013775 ], [ -113.538710472516215, 30.027345974852558 ], [ -113.538710472516215, 30.026539205781042 ], [ -113.533800500453196, 30.021295206816191 ], [ -113.525617213681471, 30.02936289753135 ], [ -113.520980017844167, 30.039850895461058 ], [ -113.516342822006862, 30.034405204228321 ], [ -113.514706164652523, 30.032993358353171 ], [ -113.50625010165507, 30.035211973299837 ], [ -113.502704010720663, 30.037833972782266 ], [ -113.496157381303291, 30.038237357318025 ], [ -113.479790807759855, 30.035413665567717 ], [ -113.468606982505179, 30.032589973817412 ], [ -113.465060891570758, 30.029766282067108 ], [ -113.463424234216419, 30.018874899601641 ], [ -113.461787576862079, 30.013227516101033 ], [ -113.453877066316082, 30.002537825903445 ], [ -113.452513185187456, 30.000117518688899 ], [ -113.451694856510287, 29.997293826938595 ], [ -113.451149304058845, 29.993259981581016 ], [ -113.453604290090354, 29.986402444473129 ], [ -113.455513723670421, 29.98297367591919 ], [ -113.468061430053723, 29.972283985721603 ], [ -113.477063045502618, 29.960384141916744 ], [ -113.477335821728332, 29.956753681094924 ], [ -113.483336898694262, 29.943240299147035 ], [ -113.49261129036887, 29.932348916681569 ], [ -113.50024902468914, 29.93214722441369 ], [ -113.511160073718102, 29.928920148127627 ], [ -113.514978940878237, 29.927104917716719 ], [ -113.516888374458304, 29.920045688340952 ], [ -113.517161150684032, 29.899271384749419 ], [ -113.516888374458304, 29.897254462070631 ], [ -113.516342822006862, 29.896044308463356 ], [ -113.507613982783695, 29.882127541979706 ], [ -113.5054317729779, 29.866193852817268 ], [ -113.506795654106526, 29.864983699209997 ], [ -113.506795654106526, 29.861151546120297 ], [ -113.505704549203628, 29.857319393030597 ], [ -113.50461344430073, 29.85651262395908 ], [ -113.497794038657631, 29.857319393030597 ], [ -113.494793500174666, 29.859739700245143 ], [ -113.491792961691701, 29.86579046828151 ], [ -113.490974633014531, 29.869017544567576 ], [ -113.469152534956621, 29.873858158996669 ], [ -113.454968171218979, 29.873051389925156 ], [ -113.441056583707052, 29.886161387337289 ], [ -113.435873835418306, 29.893220616713052 ], [ -113.43450995428968, 29.898666307945781 ], [ -113.43450995428968, 29.900481538356694 ], [ -113.434782730515408, 29.905322152785789 ], [ -113.436146611644034, 29.91278476669731 ], [ -113.437783268998373, 29.919238919269439 ], [ -113.436964940321204, 29.931743839877932 ], [ -113.433964401838239, 29.933962454824602 ], [ -113.427417772420867, 29.944450452754307 ], [ -113.424962786389344, 29.950299528522798 ], [ -113.423053352809276, 29.95756045016644 ], [ -113.420598366777767, 29.962804449131291 ], [ -113.408596212845907, 29.969863678507053 ], [ -113.408323436620194, 29.968250140364024 ], [ -113.407232331717296, 29.96522475634584 ], [ -113.398776268719857, 29.954333373880374 ], [ -113.396866835139789, 29.952921528005223 ], [ -113.395502954011164, 29.953123220273103 ], [ -113.394411849108266, 29.95534183521977 ], [ -113.392775191753927, 29.959980757380986 ], [ -113.392229639302471, 29.963812910470686 ], [ -113.392502415528199, 29.967039986756753 ], [ -113.393866296656824, 29.971880601185845 ], [ -113.396594058914062, 29.977729676954336 ], [ -113.414051737360396, 29.992049827973741 ], [ -113.414324513586109, 29.993058289313137 ], [ -113.414597289811837, 29.994470135188287 ], [ -113.413233408683226, 29.998907365081628 ], [ -113.412415080006042, 29.99991582642102 ], [ -113.398230716268401, 30.016857976922854 ], [ -113.397685163816959, 30.016454592387095 ], [ -113.397139611365503, 30.013025823833154 ], [ -113.396048506462606, 30.010403824350725 ], [ -113.392229639302471, 30.001731056831932 ], [ -113.391138534399587, 30.000117518688899 ], [ -113.389229100819506, 29.999109057349507 ], [ -113.38404635253076, 30.000722595492537 ], [ -113.38322802385359, 30.006369978993149 ], [ -113.383500800079304, 30.010202132082846 ], [ -113.384864681207929, 30.017261361458612 ], [ -113.389501877045234, 30.025530744441649 ], [ -113.386774114787997, 30.034405204228321 ], [ -113.38240969517642, 30.035615357835596 ], [ -113.367679778987323, 30.028959512995591 ], [ -113.339583827737755, 30.014034285172549 ], [ -113.310942324036745, 29.992654904777378 ], [ -113.309032890456677, 29.991041366634349 ], [ -113.304395694619373, 29.985192290865857 ], [ -113.301122379910694, 29.977729676954336 ], [ -113.304122918393659, 29.971073832114328 ], [ -113.305214023296543, 29.963812910470686 ], [ -113.308214561779508, 29.936181069771269 ], [ -113.304668470845101, 29.920852457412469 ], [ -113.291575212010358, 29.907540767732456 ], [ -113.281755267884293, 29.903506922374881 ], [ -113.279027505627056, 29.903506922374881 ], [ -113.276845295821261, 29.905725537321544 ], [ -113.268662009049535, 29.909961074947006 ], [ -113.257205407569131, 29.913793228036702 ], [ -113.241657162702879, 29.907742460000335 ], [ -113.235656085736949, 29.902901845571243 ], [ -113.234292204608323, 29.899674769285177 ], [ -113.235383309511221, 29.891002001766381 ], [ -113.225836141610884, 29.888783386819714 ], [ -113.224199484256545, 29.889388463623352 ], [ -113.218198407290615, 29.894834154856085 ], [ -113.210560672970345, 29.903708614642756 ], [ -113.201286281295737, 29.918633842465802 ], [ -113.199104071489941, 29.924684610502169 ], [ -113.19692186168416, 29.93436583936036 ], [ -113.195557980555535, 29.942030145539761 ], [ -113.195557980555535, 29.944047068218548 ], [ -113.195830756781262, 29.945055529557944 ], [ -113.195830756781262, 29.946063990897336 ], [ -113.189829679815332, 29.950501220790677 ], [ -113.172644777594726, 29.957963834702198 ], [ -113.168553134208864, 29.958972296041594 ], [ -113.133910553541924, 29.961594295524019 ], [ -113.127909476576008, 29.96300614139917 ], [ -113.118907861127113, 29.966636602220994 ], [ -113.109360693226776, 29.972485677989482 ], [ -113.104723497389472, 29.976116138811303 ], [ -113.094903553263407, 29.98599905993737 ], [ -113.092721343457612, 29.987209213544645 ], [ -113.077445874817073, 29.991646443437986 ], [ -113.062988734853718, 29.988822751687678 ], [ -113.05753321033923, 29.985797367669495 ], [ -113.018798986286441, 29.985192290865857 ], [ -113.012797909320511, 29.986200752205249 ], [ -112.990703035036873, 29.992049827973741 ], [ -112.968880936978962, 29.989629520759195 ], [ -112.93614778989209, 29.983175368187069 ], [ -112.93014671292616, 29.979141522829487 ], [ -112.921417873702993, 29.967241679024632 ], [ -112.921417873702993, 29.965628140881599 ], [ -112.921690649928721, 29.964216295006445 ], [ -112.928782831797548, 29.961795987791895 ], [ -112.932328922731955, 29.959779065113107 ], [ -112.935056684989192, 29.956753681094924 ], [ -112.943512747986631, 29.928920148127627 ], [ -112.943239971760917, 29.921860918751861 ], [ -112.955514901918491, 29.907137383196698 ], [ -112.955514901918491, 29.904717075982152 ], [ -112.950332153629731, 29.888380002283956 ], [ -112.943512747986631, 29.876076773943339 ], [ -112.940784985729394, 29.873051389925156 ], [ -112.931783370280499, 29.871437851782126 ], [ -112.930419489151888, 29.872849697657276 ], [ -112.929055608023262, 29.877085235282735 ], [ -112.927691726894651, 29.877690312086372 ], [ -112.915144020511349, 29.871034467246368 ], [ -112.904778523933842, 29.870227698174851 ], [ -112.89986855187081, 29.870832774978489 ], [ -112.896322460936403, 29.872446313121518 ], [ -112.882138097198748, 29.870026005906972 ], [ -112.882138097198748, 29.867000621888785 ], [ -112.881865320973034, 29.864580314674239 ], [ -112.875318691555663, 29.86437862240636 ], [ -112.867953733461107, 29.867807390960301 ], [ -112.852405488594854, 29.867404006424543 ], [ -112.841494439565892, 29.865588776013631 ], [ -112.835220586374248, 29.868009083228181 ], [ -112.831128942988386, 29.871841236317881 ], [ -112.827310075828251, 29.873253082193035 ], [ -112.824309537345286, 29.872849697657276 ], [ -112.823218432442388, 29.871639544050002 ], [ -112.823218432442388, 29.870631082710609 ], [ -112.825127866022456, 29.869622621371214 ], [ -112.826764523376795, 29.867000621888785 ], [ -112.829492285634046, 29.85812616210211 ], [ -112.830310614311216, 29.854495701280293 ], [ -112.825127866022456, 29.849453394583318 ], [ -112.823491208668116, 29.846024626029376 ], [ -112.82976506185976, 29.839973857993005 ], [ -112.837130019954316, 29.837553550778459 ], [ -112.851041607466229, 29.829284167795421 ], [ -112.852951041046296, 29.824645245634205 ], [ -112.853496593497738, 29.819199554401472 ], [ -112.844494978048857, 29.812745401829346 ], [ -112.840403334662994, 29.81193863275783 ], [ -112.836038915051418, 29.814964016776017 ], [ -112.827037299602523, 29.817989400794197 ], [ -112.806033530221782, 29.821619861616021 ], [ -112.798941348352955, 29.824645245634205 ], [ -112.790758061581244, 29.825653706973597 ], [ -112.772754830683468, 29.825048630169963 ], [ -112.755297152237134, 29.821216477080263 ], [ -112.747386641691136, 29.819401246669351 ], [ -112.734838935307835, 29.812543709561467 ], [ -112.728837858341919, 29.816174170383288 ], [ -112.730474515696258, 29.823838476562688 ], [ -112.731838396824884, 29.831301090474213 ], [ -112.731838396824884, 29.836948473974822 ], [ -112.723927886278886, 29.842999242011189 ], [ -112.723109557601717, 29.84259585747543 ], [ -112.722018452698819, 29.840377242528763 ], [ -112.721200124021649, 29.835738320367547 ], [ -112.712198508572754, 29.836141704903305 ], [ -112.708925193864061, 29.84743647190453 ], [ -112.699378025963725, 29.854899085816051 ], [ -112.690103634289116, 29.859739700245143 ], [ -112.687103095806151, 29.859134623441506 ], [ -112.681102018840221, 29.862966776531209 ], [ -112.675100941874305, 29.872244620853639 ], [ -112.674828165648577, 29.876480158479097 ], [ -112.673191508294238, 29.882127541979706 ], [ -112.666372102651138, 29.882732618783344 ], [ -112.655733829847904, 29.885354618265772 ], [ -112.650551081559144, 29.888178310016077 ], [ -112.62163680163242, 29.895035847123964 ], [ -112.610180200152016, 29.895842616195477 ], [ -112.609361871474846, 29.895640923927598 ], [ -112.604997451863255, 29.886564771873047 ], [ -112.607452437894779, 29.875068312603943 ], [ -112.603088018283188, 29.870631082710609 ], [ -112.595177507737191, 29.874866620336064 ], [ -112.587266997191193, 29.877085235282735 ], [ -112.577447053065143, 29.876681850746976 ], [ -112.565717675359011, 29.877690312086372 ], [ -112.564626570456113, 29.87829538889001 ], [ -112.56053492707025, 29.882732618783344 ], [ -112.535712290529375, 29.922465995555498 ], [ -112.526437898854766, 29.915810150715494 ], [ -112.524801241500427, 29.915810150715494 ], [ -112.521800703017462, 29.91681861205489 ], [ -112.514708521148634, 29.921860918751861 ], [ -112.513344640020023, 29.92448291823429 ], [ -112.511707982665683, 29.925894764109444 ], [ -112.503524695893958, 29.929928609467019 ], [ -112.502979143442516, 29.929928609467019 ], [ -112.501342486088163, 29.928516763591869 ], [ -112.489885884607759, 29.927306609984598 ], [ -112.48743089857625, 29.928113379056111 ], [ -112.483339255190387, 29.930533686270657 ], [ -112.481702597836048, 29.932348916681569 ], [ -112.480065940481708, 29.935777685235511 ], [ -112.47379208729005, 29.941828453271881 ], [ -112.467518234098407, 29.936786146574907 ], [ -112.464244919389714, 29.93214722441369 ], [ -112.461244380906749, 29.931945532145811 ], [ -112.448423898297733, 29.937794607914299 ], [ -112.426329024014095, 29.939004761521574 ], [ -112.409144121793489, 29.933760762556723 ], [ -112.385685366381225, 29.92065076514459 ], [ -112.38104817054392, 29.923272764627015 ], [ -112.369864345289244, 29.92448291823429 ], [ -112.356771086454486, 29.918432150197923 ], [ -112.348315023457047, 29.925491379573685 ], [ -112.345314484974082, 29.932348916681569 ], [ -112.345314484974082, 29.933962454824602 ], [ -112.340950065362506, 29.935575992967635 ], [ -112.331130121236441, 29.934769223896119 ], [ -112.327311254076307, 29.933155685753086 ], [ -112.325401820496239, 29.931542147610052 ], [ -112.303306946212601, 29.912381382161552 ], [ -112.299215302826752, 29.904515383714273 ], [ -112.298942526601024, 29.895640923927598 ], [ -112.296487540569501, 29.892817232177293 ], [ -112.29348700208655, 29.89120369403426 ], [ -112.286667596443451, 29.890396924962744 ], [ -112.279302638348895, 29.892413847641535 ], [ -112.277665980994556, 29.89362400124881 ], [ -112.267846036868491, 29.908347536803973 ], [ -112.266754931965608, 29.911977997625794 ], [ -112.25966275009678, 29.919238919269439 ], [ -112.251479463325055, 29.921054149680348 ], [ -112.243841729004785, 29.921054149680348 ], [ -112.24084119052182, 29.919440611537318 ], [ -112.240295638070378, 29.918633842465802 ], [ -112.24002286184465, 29.917423688858527 ], [ -112.239750085618937, 29.91661691978701 ], [ -112.237567875813141, 29.915608458447615 ], [ -112.217927987561012, 29.914801689376098 ], [ -112.200197532888964, 29.909961074947006 ], [ -112.191195917440069, 29.904918768250031 ], [ -112.183285406894086, 29.893422308980931 ], [ -112.176193225025258, 29.882127541979706 ], [ -112.16091775638472, 29.877085235282735 ], [ -112.156007784321687, 29.880110619300918 ], [ -112.146187840195637, 29.882934311051223 ], [ -112.133367357586607, 29.885152925997893 ], [ -112.12027409875185, 29.883337695586981 ], [ -112.115364126688831, 29.883136003319102 ], [ -112.11263636443158, 29.883942772390618 ], [ -112.107453616142834, 29.886564771873047 ], [ -112.094633133533804, 29.90512046051791 ], [ -112.091632595050839, 29.900683230624573 ], [ -112.089723161470772, 29.895439231659722 ], [ -112.085904294310637, 29.888581694551835 ], [ -112.077993783764654, 29.882329234247585 ], [ -112.07417491660452, 29.881119080640314 ], [ -112.046351741580679, 29.885556310533651 ], [ -112.044169531774884, 29.888178310016077 ], [ -112.036804573680342, 29.900481538356694 ], [ -112.034622363874547, 29.907137383196698 ], [ -112.009799727333672, 29.909557690411248 ], [ -112.006526412624979, 29.910566151750643 ], [ -111.993433153790235, 29.917625381126406 ], [ -111.975702699118187, 29.924684610502169 ], [ -111.966155531217851, 29.926298148645202 ], [ -111.959881678026193, 29.925894764109444 ], [ -111.947606747868619, 29.928718455859748 ], [ -111.943787880708484, 29.930937070806415 ], [ -111.937786803742554, 29.931945532145811 ], [ -111.920874677747676, 29.931945532145811 ], [ -111.913236943427407, 29.930937070806415 ], [ -111.910236404944442, 29.929928609467019 ], [ -111.906417537784307, 29.926499840913081 ], [ -111.89168762159521, 29.928718455859748 ], [ -111.883504334823499, 29.931138763074294 ], [ -111.878048810309025, 29.933962454824602 ], [ -111.871774957117367, 29.938803069253694 ], [ -111.871774957117367, 29.947072452236732 ], [ -111.86904719486013, 29.946870759968853 ], [ -111.858954474508351, 29.942635222343398 ], [ -111.856499488476828, 29.939206453789453 ], [ -111.852680621316694, 29.935172608431877 ], [ -111.851316740188082, 29.93436583936036 ], [ -111.824311893841411, 29.923071072359136 ], [ -111.816674159521142, 29.921860918751861 ], [ -111.807672544072247, 29.925087995037927 ], [ -111.804672005589282, 29.92448291823429 ], [ -111.797034271269013, 29.919642303805198 ], [ -111.795397613914673, 29.915003381643977 ], [ -111.788578208271574, 29.911776305357915 ], [ -111.783668236208541, 29.910767844018523 ], [ -111.77030220114807, 29.910767844018523 ], [ -111.75666338986187, 29.912986458965189 ], [ -111.750662312895955, 29.909759382679127 ], [ -111.745752340832922, 29.905523845053668 ], [ -111.74166069744706, 29.90512046051791 ], [ -111.714655851100389, 29.90895261360761 ], [ -111.710836983940254, 29.908549229071852 ], [ -111.70538145942578, 29.903910306910635 ], [ -111.702653697168543, 29.902296768767606 ], [ -111.695288739074002, 29.907137383196698 ], [ -111.690924319462411, 29.912381382161552 ], [ -111.690378767010969, 29.913188151233069 ], [ -111.690924319462411, 29.918835534733681 ], [ -111.690651543236697, 29.91903722700156 ], [ -111.680013270433449, 29.919440611537318 ], [ -111.670466102533112, 29.918028765662164 ], [ -111.659555053504164, 29.920045688340952 ], [ -111.651371766732439, 29.923877841430652 ], [ -111.647825675798032, 29.928920148127627 ], [ -111.639642389026321, 29.944450452754307 ], [ -111.635005193189016, 29.956148604291286 ], [ -111.617547514742682, 29.966031525417357 ], [ -111.614819752485445, 29.966031525417357 ], [ -111.600089836296348, 29.972485677989482 ], [ -111.592724878201807, 29.977729676954336 ], [ -111.587542129913047, 29.987209213544645 ], [ -111.586451025010149, 29.988217674884041 ], [ -111.579631619367063, 29.990234597562832 ], [ -111.577722185786996, 29.997697211474353 ], [ -111.563810598275069, 30.029564589799229 ], [ -111.560264507340662, 30.031178127942262 ], [ -111.552081220568937, 30.03158151247802 ], [ -111.542806828894328, 30.034203511960442 ], [ -111.542261276442872, 30.03924581865742 ], [ -111.540079066637091, 30.041061049068329 ], [ -111.52671303157662, 30.048120278444092 ], [ -111.519620849707792, 30.049330432051367 ], [ -111.516347534999113, 30.051750739265913 ], [ -111.517438639901997, 30.053565969676825 ], [ -111.517711416127725, 30.055986276891371 ], [ -111.514983653870488, 30.058003199570159 ], [ -111.509528129356013, 30.057599815034404 ], [ -111.501072066358574, 30.055784584623495 ], [ -111.500526513907118, 30.054372738748341 ], [ -111.501072066358574, 30.048725355247729 ], [ -111.50025373768139, 30.04469150989015 ], [ -111.498889856552779, 30.039447510925299 ], [ -111.496434870521256, 30.036422126907112 ], [ -111.495070989392644, 30.035615357835596 ], [ -111.487433255072375, 30.037833972782266 ], [ -111.472703338883278, 30.043884740818633 ], [ -111.469157247948871, 30.049128739783487 ], [ -111.468884471723143, 30.052960892873188 ], [ -111.462065066080044, 30.059415045445313 ], [ -111.460428408725704, 30.059818429981071 ], [ -111.450335688373912, 30.059011660909555 ], [ -111.442425177827928, 30.056389661427129 ], [ -111.438606310667794, 30.0547761232841 ], [ -111.432059681250422, 30.05013720112288 ], [ -111.422512513350085, 30.053364277408946 ], [ -111.422785289575799, 30.060826891320467 ], [ -111.404509282452295, 30.057801507302283 ], [ -111.369866701785369, 30.0547761232841 ], [ -111.32076698115506, 30.03924581865742 ], [ -111.311219813254723, 30.035211973299837 ], [ -111.300854316677217, 30.027144282584679 ], [ -111.297308225742796, 30.020085053208916 ], [ -111.275213351459172, 30.023513821762862 ], [ -111.268666722041786, 30.020891822280433 ], [ -111.243298533049469, 30.013630900636791 ], [ -111.237570232309267, 30.012420747029516 ], [ -111.236206351180641, 30.011815670225879 ], [ -111.23484247005203, 30.009193670743453 ], [ -111.230750826666167, 30.005159825385874 ], [ -111.217657567831424, 29.993461673848895 ], [ -111.209747057285426, 29.995881981063441 ], [ -111.207019295028189, 29.999310749617386 ], [ -111.205109861448122, 30.002941210439204 ], [ -111.197199350902125, 30.006773363528907 ], [ -111.19338048374199, 30.007580132600424 ], [ -111.169376175878284, 30.005563209921633 ], [ -111.148372406497543, 30.000117518688899 ], [ -111.132005832954107, 29.993663366116774 ], [ -111.110183734896196, 29.982166906847674 ], [ -111.107455972638959, 29.973494139328878 ], [ -111.104728210381722, 29.968653524899782 ], [ -111.095726594932827, 29.96139260325614 ], [ -111.092180503998421, 29.959779065113107 ], [ -111.076359482906426, 29.964014602738565 ], [ -111.072813391972019, 29.965829833149478 ], [ -111.073086168197747, 29.968048448096145 ], [ -111.073904496874917, 29.975107677471911 ], [ -111.073904496874917, 29.990436289830711 ], [ -111.057810699557209, 29.991444751170107 ], [ -111.0348974965964, 29.986604136741008 ], [ -110.846681900846889, 29.503349462903021 ], [ -110.404238862722707, 28.383957376174791 ], [ -110.404238862722707, 28.383553991639033 ], [ -109.732936571216143, 26.727458780084895 ], [ -109.470525842069733, 26.092934905337685 ], [ -109.455795925880651, 26.057033681655231 ], [ -109.341775463528052, 26.062681065155839 ], [ -109.343957673333847, 26.104229672338906 ], [ -109.218753385726558, 26.093943366677081 ], [ -109.184929133736802, 26.184301502686854 ], [ -109.058906517452343, 26.245817644389938 ], [ -109.051541559357801, 26.232102570174167 ], [ -109.033538328460025, 26.124802283662561 ], [ -108.983620279152547, 26.100397519249206 ], [ -108.917335656301631, 26.094548443480715 ], [ -108.893876900889381, 26.095355212552231 ], [ -108.867144830768439, 26.059050604334018 ], [ -108.866599278316983, 26.057638758458864 ], [ -108.85023270477356, 26.045133837850372 ], [ -108.831683921424329, 26.038679685278243 ], [ -108.656561584509575, 25.971919544610309 ], [ -108.53053896822513, 25.924118477122995 ], [ -108.457980492182557, 25.829121418952006 ], [ -108.44843332428222, 25.793623579805306 ], [ -108.448160548056507, 25.793825272073185 ], [ -108.431521198287342, 25.802498039591981 ], [ -108.40997187645516, 25.858366797794453 ], [ -108.349961106795888, 25.953565548233321 ], [ -108.345869463410025, 25.965465392038183 ], [ -108.294314756748207, 25.992492155933963 ], [ -108.293223651845324, 26.041099992492793 ], [ -108.293496428071037, 26.052394759494014 ], [ -108.322410707997776, 26.107860133160727 ], [ -108.304680253325728, 26.129239513555898 ], [ -108.303316372197102, 26.130651359431049 ], [ -108.294314756748207, 26.142147818700153 ], [ -108.291859770716698, 26.173410120221391 ], [ -108.299497505036967, 26.186923502169279 ], [ -108.306316910680067, 26.20668934442142 ], [ -108.305771358228611, 26.224639956262646 ], [ -108.270037672658788, 26.250456566551151 ], [ -108.244942259892184, 26.279096868589964 ], [ -108.224484042962885, 26.307535478360897 ], [ -108.187113700038708, 26.360580544813065 ], [ -108.129012363959518, 26.345655316990022 ], [ -108.086732048972308, 26.324275936594852 ], [ -108.082367629360732, 26.322864090719698 ], [ -108.073911566363293, 26.326091167005764 ], [ -108.043087852856488, 26.310964246914839 ], [ -108.026721279313051, 26.277886714982692 ], [ -108.020992978572849, 26.261751333552375 ], [ -108.010900258221056, 26.247632874800846 ], [ -107.995352013354804, 26.2298839552275 ], [ -107.987168726583079, 26.220606110905067 ], [ -107.970256600588201, 26.203462268135354 ], [ -107.918156341474941, 26.204067344938991 ], [ -107.891697047579711, 26.196403038759591 ], [ -107.853781152204093, 26.183293041347458 ], [ -107.835505145080589, 26.192167501134133 ], [ -107.795679816124903, 26.16352719909532 ], [ -107.787769305578905, 26.151829047558341 ], [ -107.778494913904282, 26.141139357360757 ], [ -107.775494375421317, 26.138719050146207 ], [ -107.758582249426439, 26.124600591394682 ], [ -107.728849640822531, 26.108263517696486 ], [ -107.655200059877075, 26.102414441927998 ], [ -107.612646968664151, 26.100195826981327 ], [ -107.565456681613909, 26.071958909478273 ], [ -107.556455066165015, 26.067118295049177 ], [ -107.507900897986161, 26.048360914136435 ], [ -107.465347806773224, 26.029401840955813 ], [ -107.452527324164208, 26.009837690971551 ], [ -107.445707918521109, 25.996324309023663 ], [ -107.412974771434236, 25.975751697700009 ], [ -107.406428142016864, 25.971919544610309 ], [ -107.361692840998145, 25.951750317822412 ], [ -107.34368961010037, 25.942472473499979 ], [ -107.288861588729858, 25.893864636941153 ], [ -107.209210930818472, 25.854938029240511 ], [ -107.154110133222247, 25.812986037521689 ], [ -107.113466475589377, 25.790194811251364 ], [ -107.066003412313421, 25.755705433444064 ], [ -106.989353292884999, 25.716375441207667 ], [ -106.933979719063046, 25.67724714123915 ], [ -106.901792124427629, 25.639328994877904 ], [ -106.865512886406336, 25.62621899746577 ], [ -106.830597529513682, 25.582451775336036 ], [ -106.795409396395286, 25.559257164529956 ], [ -106.774405627014545, 25.557240241851165 ], [ -106.75394741008526, 25.54695393618934 ], [ -106.713576528678118, 25.511052712506885 ], [ -106.683571143848496, 25.500766406845059 ], [ -106.648655786955828, 25.519322095489922 ], [ -106.59710108029401, 25.507825636220822 ], [ -106.518268751059793, 25.504396867666877 ], [ -106.490991128487408, 25.498144407362631 ], [ -106.490172799810239, 25.497942715094752 ], [ -106.412977127930361, 25.51992717229356 ], [ -106.39797443551555, 25.515288250132343 ], [ -106.354057463174001, 25.50056471457718 ], [ -106.331144260213193, 25.502783329523847 ], [ -106.312595476863962, 25.508834097560218 ], [ -106.280135106002817, 25.475353181092309 ], [ -106.229398728018168, 25.480798872325039 ], [ -106.201848329220056, 25.506212098077789 ], [ -106.166932972327388, 25.484227640878984 ], [ -106.159022461781404, 25.478378565110493 ], [ -106.150566398783951, 25.470714258931093 ], [ -106.134472601466243, 25.439653649677734 ], [ -106.129017076951769, 25.394877966208604 ], [ -106.133927049014801, 25.383381506939504 ], [ -106.133927049014801, 25.380961199724954 ], [ -106.130653734306108, 25.364422433758882 ], [ -106.126016538468804, 25.356153050775845 ], [ -106.121379342631499, 25.349093821400078 ], [ -106.117833251697078, 25.344656591506741 ], [ -106.110195517376809, 25.34102613068492 ], [ -106.102012230605098, 25.336387208523703 ], [ -106.081826789901527, 25.295443678144277 ], [ -106.076098489161325, 25.289392910107907 ], [ -106.051275852620449, 25.265794914766069 ], [ -106.032727069271232, 25.255710301372119 ], [ -106.009541090084696, 25.22464969211876 ], [ -106.001085027087242, 25.214161694189055 ], [ -105.983354572415195, 25.20528723440238 ], [ -105.981445138835127, 25.203270311723593 ], [ -105.978444600352162, 25.198631389562376 ], [ -105.978171824126434, 25.195606005544192 ], [ -105.978990152803618, 25.18834508390055 ], [ -105.981172362609414, 25.177655393702963 ], [ -105.984991229769548, 25.150426937539304 ], [ -105.984991229769548, 25.138930478270204 ], [ -105.983900124866636, 25.124005250447162 ], [ -105.98035403393223, 25.111096945302908 ], [ -105.974625733192028, 25.086893873157432 ], [ -105.973534628289144, 25.067531415441053 ], [ -105.973261852063416, 25.047967265456791 ], [ -105.973534628289144, 25.040101267009511 ], [ -105.976262390546367, 25.01186434950646 ], [ -105.988264544478227, 24.962248051608235 ], [ -105.999448369732903, 24.931590826890634 ], [ -106.011996076116205, 24.918279137210622 ], [ -106.013087181019102, 24.909001292888188 ], [ -106.001085027087242, 24.904160678459093 ], [ -106.004358341795935, 24.90093360217303 ], [ -106.009813866310424, 24.88923545063605 ], [ -106.009268313858968, 24.887823604760897 ], [ -106.012268852341933, 24.887621912493017 ], [ -106.029726530788267, 24.895689603208176 ], [ -106.036545936431366, 24.901942063512426 ], [ -106.034909279077013, 24.906379293405763 ], [ -106.035182055302741, 24.907589447013038 ], [ -106.039000922462876, 24.911824984638493 ], [ -106.042001460945841, 24.913841907317284 ], [ -106.053730838651973, 24.917270675871226 ], [ -106.057549705812107, 24.91626221453183 ], [ -106.051275852620449, 24.905169139798488 ], [ -106.04963919526611, 24.90093360217303 ], [ -106.051275852620449, 24.895891295476055 ], [ -106.05564027223204, 24.887621912493017 ], [ -106.060004691843616, 24.88560498981423 ], [ -106.063550782778023, 24.885201605278471 ], [ -106.074461831806985, 24.88540329754635 ], [ -106.079644580095731, 24.88701683568938 ], [ -106.087555090641729, 24.8916557578506 ], [ -106.095192824961998, 24.897303141351209 ], [ -106.097375034767794, 24.904160678459093 ], [ -106.109377188699654, 24.921102828960926 ], [ -106.119469909051432, 24.931994211426389 ], [ -106.123288776211567, 24.937641594927001 ], [ -106.128471524500327, 24.952566822750043 ], [ -106.130380958080394, 24.953575284089439 ], [ -106.136109258820596, 24.951961745946406 ], [ -106.147293084075272, 24.954180360893076 ], [ -106.149475293881068, 24.95559220676823 ], [ -106.155476370846984, 24.969710665519756 ], [ -106.159568014232846, 24.985846046950073 ], [ -106.159840790458574, 24.987661277360985 ], [ -106.163386881392981, 24.993712045397352 ], [ -106.171297391938978, 24.992098507254319 ], [ -106.177298468904894, 24.993712045397352 ], [ -106.186845636805231, 24.99814927529069 ], [ -106.195847252254126, 25.003796658791302 ], [ -106.198847790737091, 25.006216966005848 ], [ -106.203757762800123, 25.00964573455979 ], [ -106.205394420154462, 25.011460964970702 ], [ -106.21330493070046, 25.021747270632527 ], [ -106.21330493070046, 25.022352347436165 ], [ -106.201030000542886, 25.057043417511345 ], [ -106.19966611941426, 25.071363568530749 ], [ -106.203484986574395, 25.078624490174395 ], [ -106.199393343188547, 25.085482027282278 ], [ -106.195847252254126, 25.087095565425312 ], [ -106.185481755676619, 25.089515872639858 ], [ -106.185208979450891, 25.092137872122287 ], [ -106.187663965482415, 25.09657510201562 ], [ -106.190391727739652, 25.097381871087137 ], [ -106.202939434122953, 25.113718944785333 ], [ -106.228034846889557, 25.136106786519896 ], [ -106.229944280469624, 25.138325401466567 ], [ -106.231853714049691, 25.142964323627783 ], [ -106.232944818952575, 25.149620168467788 ], [ -106.232399266501133, 25.155065859700521 ], [ -106.234308700081201, 25.167167395773259 ], [ -106.240855329498572, 25.183504469471451 ], [ -106.258040231719178, 25.207707541616927 ], [ -106.285590630517291, 25.243407073031506 ], [ -106.307412728575201, 25.261155992604852 ], [ -106.3278709455045, 25.273055836409711 ], [ -106.375061232554742, 25.297258908555186 ], [ -106.403429960030024, 25.306133368341861 ], [ -106.409976589447396, 25.309360444627924 ], [ -106.423069848282154, 25.316823058539445 ], [ -106.426070386765105, 25.315209520396415 ], [ -106.42743426789373, 25.313595982253382 ], [ -106.426888715442288, 25.309360444627924 ], [ -106.425524834313663, 25.305931676073982 ], [ -106.42225151960497, 25.302301215252161 ], [ -106.390609477421009, 25.291611525054577 ], [ -106.354057463174001, 25.273862605481227 ], [ -106.343691966596481, 25.264786453426673 ], [ -106.33387202247043, 25.253088301889694 ], [ -106.332508141341805, 25.251676456014543 ], [ -106.313686581766859, 25.241591842620593 ], [ -106.298411113126321, 25.232112306030281 ], [ -106.285045078065849, 25.219607385421789 ], [ -106.26376853245938, 25.192984006061764 ], [ -106.263222980007939, 25.183504469471451 ], [ -106.269496833199582, 25.176646932363568 ], [ -106.268951280748141, 25.171201241130838 ], [ -106.255039693236213, 25.143972784967175 ], [ -106.231035385372508, 25.116139251999883 ], [ -106.22312487482651, 25.114122329321091 ], [ -106.209213287314597, 25.100205562837441 ], [ -106.208667734863155, 25.0967767942835 ], [ -106.209486063540325, 25.09133110305077 ], [ -106.211122720894664, 25.087095565425312 ], [ -106.213032154474732, 25.086288796353795 ], [ -106.215759916731969, 25.093146333461679 ], [ -106.239218672144233, 25.114122329321091 ], [ -106.24276476307864, 25.115735867464124 ], [ -106.248220287593114, 25.114727406124729 ], [ -106.245765301561605, 25.108071561284724 ], [ -106.24276476307864, 25.102625870051991 ], [ -106.241400881950028, 25.102222485516233 ], [ -106.239218672144233, 25.100407255105321 ], [ -106.232126490275405, 25.092137872122287 ], [ -106.220397112569287, 25.066119569565899 ], [ -106.222579322375069, 25.048774034528307 ], [ -106.230217056695338, 25.015696502596157 ], [ -106.235672581209826, 25.010250811363427 ], [ -106.240582553272844, 25.007427119613119 ], [ -106.247401958915944, 25.006418658273727 ], [ -106.256403574364839, 25.00722542734524 ], [ -106.270315161876752, 25.01347788764949 ], [ -106.274952357714056, 25.018721886614344 ], [ -106.271679043005378, 25.025579423722228 ], [ -106.268951280748141, 25.040908036081028 ], [ -106.269224056973854, 25.046353727313761 ], [ -106.274679581488343, 25.075599106156211 ], [ -106.27658901506841, 25.078624490174395 ], [ -106.282862868260054, 25.086893873157432 ], [ -106.284499525614393, 25.086893873157432 ], [ -106.299502218029218, 25.076204182959845 ], [ -106.303048308963625, 25.072372029870145 ], [ -106.302229980286455, 25.070153414923478 ], [ -106.295956127094797, 25.062892493279836 ], [ -106.288045616548814, 25.060673878333166 ], [ -106.282044539582884, 25.05583326390407 ], [ -106.280407882228545, 25.052807879885886 ], [ -106.279316777325647, 25.03505896031254 ], [ -106.279589553551375, 25.032436960830111 ], [ -106.284226749388679, 25.021747270632527 ], [ -106.295410574643356, 25.001376351576752 ], [ -106.300593322932116, 24.998956044362206 ], [ -106.301411651609286, 24.998754352094327 ], [ -106.305776071220862, 25.001174659308873 ], [ -106.310958819509622, 25.006620350541606 ], [ -106.319687658732789, 25.011662657238581 ], [ -106.327052616827331, 25.017915117542827 ], [ -106.326234288150161, 25.023159116507678 ], [ -106.330871483987465, 25.026386192793744 ], [ -106.337963665856279, 25.026991269597382 ], [ -106.3415097567907, 25.025176039186469 ], [ -106.341782533016413, 25.022755731971923 ], [ -106.337418113404837, 25.008435580952515 ], [ -106.338509218307735, 25.006216966005848 ], [ -106.342055309242141, 25.004805120130694 ], [ -106.348601938659527, 25.007830504148878 ], [ -106.353784686948273, 25.006822042809485 ], [ -106.372879022748947, 25.012066041774336 ], [ -106.390336701195281, 25.010654195899185 ], [ -106.403157183804296, 25.015494810328278 ], [ -106.405066617384364, 25.016704963935553 ], [ -106.407521603415887, 25.020738809293132 ], [ -106.409976589447396, 25.022352347436165 ], [ -106.440527526728488, 25.030218345883444 ], [ -106.446801379920132, 25.032840345365869 ], [ -106.461804072334942, 25.058455263386499 ], [ -106.46207684856067, 25.060673878333166 ], [ -106.454439114240401, 25.072372029870145 ], [ -106.447619708597301, 25.075195721620453 ], [ -106.441891407857099, 25.082658335531974 ], [ -106.433708121085374, 25.103836023659262 ], [ -106.433708121085374, 25.109483407159875 ], [ -106.44107307917993, 25.112912175713817 ], [ -106.444619170114336, 25.113113867981696 ], [ -106.449529142177369, 25.1121054066423 ], [ -106.459076310077705, 25.116744328803517 ], [ -106.460167414980603, 25.117752790142912 ], [ -106.461531296109229, 25.1197697128217 ], [ -106.461804072334942, 25.124206942715041 ], [ -106.46371350591501, 25.131266172090804 ], [ -106.468350701752314, 25.144779554038692 ], [ -106.471624016461007, 25.147804938056879 ], [ -106.479534527007004, 25.151032014342942 ], [ -106.483353394167139, 25.154259090629004 ], [ -106.484171722844309, 25.163133550415679 ], [ -106.482535065489969, 25.167369088041134 ], [ -106.472715121363905, 25.179268931845996 ], [ -106.474351778718244, 25.186933238025397 ], [ -106.475170107395414, 25.188546776168426 ], [ -106.479534527007004, 25.189555237507822 ], [ -106.486353932650104, 25.187941699364792 ], [ -106.488808918681613, 25.185521392150243 ], [ -106.489354471133055, 25.183302777203576 ], [ -106.489081694907341, 25.180882469989026 ], [ -106.490172799810239, 25.180882469989026 ], [ -106.495355548098985, 25.186731545757517 ], [ -106.506539373353661, 25.204682157598743 ], [ -106.505448268450778, 25.20911938749208 ], [ -106.505993820902219, 25.216380309135722 ], [ -106.508176030708015, 25.221019231296939 ], [ -106.509267135610912, 25.222229384904214 ], [ -106.517450422382623, 25.220212462225426 ], [ -106.526724814057232, 25.207102464813293 ], [ -106.53818141553765, 25.200244927705405 ], [ -106.53981807289199, 25.198429697294497 ], [ -106.534089772151788, 25.191773852454489 ], [ -106.526452037831518, 25.185924776686001 ], [ -106.51417710767393, 25.185118007614484 ], [ -106.509812688062354, 25.180680777721147 ], [ -106.507903254482287, 25.172613087005988 ], [ -106.502174953742085, 25.144376169502934 ], [ -106.501902177516357, 25.138123709198688 ], [ -106.494537219421815, 25.122795096839887 ], [ -106.49071835226168, 25.117551097875033 ], [ -106.490991128487408, 25.098592024694412 ], [ -106.49235500961602, 25.084271873675004 ], [ -106.506266597127947, 25.086893873157432 ], [ -106.509812688062354, 25.080641412853183 ], [ -106.508448806933728, 25.078221105638637 ], [ -106.496173876776155, 25.066119569565899 ], [ -106.485808380198648, 25.052404495350128 ], [ -106.48553560397292, 25.033647114437386 ], [ -106.489627247358783, 25.03263865309799 ], [ -106.49917441525912, 25.03505896031254 ], [ -106.510631016739524, 25.039496190205874 ], [ -106.516086541253998, 25.04050465154527 ], [ -106.526452037831518, 25.038487728866482 ], [ -106.530270904991653, 25.036874190723449 ], [ -106.53818141553765, 25.036874190723449 ], [ -106.540636401569159, 25.037479267527086 ], [ -106.554547989081073, 25.043328343295578 ], [ -106.564095156981409, 25.052404495350128 ], [ -106.567095695464374, 25.056236648439828 ], [ -106.568186800367272, 25.059665416993774 ], [ -106.569550681495883, 25.061278955136803 ], [ -106.582916716556369, 25.076607567495603 ], [ -106.589190569748013, 25.083263412335612 ], [ -106.594646094262487, 25.085280335014399 ], [ -106.604466038388551, 25.090927718515012 ], [ -106.616468192320411, 25.099600486033808 ], [ -106.616468192320411, 25.101617408712595 ], [ -106.612103772708821, 25.102020793248354 ], [ -106.607739353097244, 25.101415716444716 ], [ -106.599283290099805, 25.097785255622895 ], [ -106.593282213133875, 25.099197101498049 ], [ -106.590827227102352, 25.103230946855625 ], [ -106.59191833200525, 25.108071561284724 ], [ -106.597646632745452, 25.11835786694655 ], [ -106.599556066325519, 25.120576481893217 ], [ -106.602011052357042, 25.127232326733225 ], [ -106.592463884456706, 25.137720324662929 ], [ -106.588645017296571, 25.140342324145355 ], [ -106.587008359942217, 25.151435398878697 ], [ -106.592191108230978, 25.170394472059321 ], [ -106.605284367065721, 25.206497388009655 ], [ -106.631470884735222, 25.237759689530893 ], [ -106.634198646992459, 25.259139069926064 ], [ -106.633925870766731, 25.261357684872731 ], [ -106.62492425531785, 25.256920454979394 ], [ -106.623833150414953, 25.276282912695777 ], [ -106.630107003606597, 25.305326599270344 ], [ -106.635289751895357, 25.310368905967319 ], [ -106.63938139528122, 25.309360444627924 ], [ -106.647019129601489, 25.304721522466707 ], [ -106.650292444310168, 25.297662293090944 ], [ -106.642927486215626, 25.276081220427898 ], [ -106.647837458278659, 25.271442298266681 ], [ -106.653020206567419, 25.257928916318789 ], [ -106.657657402404709, 25.22848184520846 ], [ -106.62492425531785, 25.195606005544192 ], [ -106.622742045512055, 25.188546776168426 ], [ -106.623833150414953, 25.178058778238722 ], [ -106.62574258399502, 25.175436778756293 ], [ -106.631198108509494, 25.173823240613263 ], [ -106.640472500184103, 25.173419856077505 ], [ -106.651929101664507, 25.16454539629083 ], [ -106.653020206567419, 25.144981246306571 ], [ -106.649746891858726, 25.139737247341721 ], [ -106.645382472247135, 25.137316940127171 ], [ -106.644836919795694, 25.136106786519896 ], [ -106.645655248472863, 25.130459403019287 ], [ -106.656566297501826, 25.124005250447162 ], [ -106.658202954856165, 25.124610327250796 ], [ -106.668568451433671, 25.132274633430196 ], [ -106.669932332562297, 25.134089863841108 ], [ -106.674569528399601, 25.142762631359904 ], [ -106.685480577428564, 25.160108166397492 ], [ -106.710848766420881, 25.181689239060542 ], [ -106.73212531202735, 25.195000928740555 ], [ -106.74112692747623, 25.195606005544192 ], [ -106.751492424053737, 25.187134930293276 ], [ -106.759402934599734, 25.175638471024172 ], [ -106.757766277245395, 25.172814779273867 ], [ -106.756675172342497, 25.167369088041134 ], [ -106.758311829696837, 25.164343704022951 ], [ -106.779315599077592, 25.17846216277448 ], [ -106.791590529235151, 25.187538314829034 ], [ -106.8022288020384, 25.199034774098134 ], [ -106.816958718227482, 25.228078460672705 ], [ -106.815322060873143, 25.239776612209681 ], [ -106.811503193713008, 25.242196919424231 ], [ -106.808775431455771, 25.241793534888473 ], [ -106.803592683167011, 25.242801996227868 ], [ -106.797318829975353, 25.246835841585447 ], [ -106.795409396395286, 25.250869686943027 ], [ -106.799501039781148, 25.268416914248498 ], [ -106.801137697135488, 25.271038913730923 ], [ -106.801956025812672, 25.276282912695777 ], [ -106.802774354489841, 25.294233524537002 ], [ -106.800864920909774, 25.298267369894582 ], [ -106.784498347366338, 25.314604443592778 ], [ -106.781770585109101, 25.315209520396415 ], [ -106.779042822851864, 25.315209520396415 ], [ -106.771677864757322, 25.311579059574594 ], [ -106.761312368179802, 25.304721522466707 ], [ -106.760221263276904, 25.303713061127311 ], [ -106.758857382148292, 25.300082600305494 ], [ -106.752037976505193, 25.297460600823065 ], [ -106.751492424053737, 25.299679215769736 ], [ -106.752583528956634, 25.306133368341861 ], [ -106.758857382148292, 25.32186536523642 ], [ -106.772223417208764, 25.334773670380674 ], [ -106.803047130715555, 25.372288432206162 ], [ -106.803319906941283, 25.375112123956466 ], [ -106.801683249586944, 25.376322277563737 ], [ -106.796500501298198, 25.376927354367375 ], [ -106.763221801759869, 25.374708739420708 ], [ -106.759675710825462, 25.372490124474041 ], [ -106.751492424053737, 25.364019049223124 ], [ -106.752583528956634, 25.362002126544333 ], [ -106.748491885570786, 25.356556435311603 ], [ -106.741672479927686, 25.35252258995402 ], [ -106.734853074284587, 25.350102282739474 ], [ -106.733489193155961, 25.350303975007353 ], [ -106.732943640704519, 25.35877505025827 ], [ -106.733216416930247, 25.3603885884013 ], [ -106.735671402961756, 25.363413972419487 ], [ -106.75476573876243, 25.382978122403745 ], [ -106.76594956401712, 25.387213660029204 ], [ -106.773041745885934, 25.389028890440112 ], [ -106.777406165497524, 25.386003506421929 ], [ -106.779861151529033, 25.385196737350412 ], [ -106.804411011844181, 25.393869504869208 ], [ -106.806593221649976, 25.395483043012241 ], [ -106.816685942001754, 25.410609963103163 ], [ -106.819140928033278, 25.41666073113953 ], [ -106.819413704259006, 25.419887807425596 ], [ -106.813139851067348, 25.429165651748026 ], [ -106.813412627293076, 25.440662111017126 ], [ -106.81204874616445, 25.444897648642588 ], [ -106.814503732195973, 25.451553493482592 ], [ -106.817777046904652, 25.456797492447443 ], [ -106.824323676322024, 25.459621184197751 ], [ -106.827596991030717, 25.457200876983201 ], [ -106.829506424610784, 25.454780569768655 ], [ -106.832779739319477, 25.448326417196526 ], [ -106.839599144962563, 25.448931494000163 ], [ -106.843690788348425, 25.446712879053496 ], [ -106.846145774379949, 25.443889187303192 ], [ -106.857602375860353, 25.439451957409855 ], [ -106.863057900374827, 25.440863803285005 ], [ -106.88133390749833, 25.44207395689228 ], [ -106.883243341078398, 25.448528109464405 ], [ -106.884879998432737, 25.453973800697138 ], [ -106.877787816563909, 25.485236102218376 ], [ -106.871513963372266, 25.505808713542031 ], [ -106.872877844500891, 25.507018867149306 ], [ -106.877787816563909, 25.507220559417185 ], [ -106.881061131272602, 25.505405329006273 ], [ -106.887607760689974, 25.499757945505664 ], [ -106.894699942558802, 25.477773488306855 ], [ -106.895791047461699, 25.472126104806243 ], [ -106.892517732753006, 25.466075336769876 ], [ -106.894427166333074, 25.463453337287451 ], [ -106.900155467073276, 25.460629645537146 ], [ -106.923341446259812, 25.460629645537146 ], [ -106.965894537472735, 25.46748718264503 ], [ -106.974623376695902, 25.472529489342001 ], [ -106.977896691404595, 25.475353181092309 ], [ -106.977351138953139, 25.476361642431705 ], [ -106.978442243856037, 25.478580257378372 ], [ -106.980624453661832, 25.480395487789281 ], [ -106.989626069110727, 25.485639486754135 ], [ -106.993444936270862, 25.48684964036141 ], [ -106.998900460785336, 25.487656409432926 ], [ -107.007629300008503, 25.490883485718989 ], [ -107.025905307132007, 25.502379944988089 ], [ -107.033543041452276, 25.512262866114156 ], [ -107.027269188260618, 25.515086557864464 ], [ -107.021540887520416, 25.524364402186897 ], [ -107.017994796586009, 25.538886245474181 ], [ -107.031088055420753, 25.552803011957828 ], [ -107.037907461063853, 25.554214857832982 ], [ -107.041180775772546, 25.551592858350556 ], [ -107.040362447095376, 25.547357320725098 ], [ -107.043090209352613, 25.531020247026902 ], [ -107.049636838769985, 25.531827016098418 ], [ -107.06163899270183, 25.52900332434811 ], [ -107.05863845421888, 25.519120403222043 ], [ -107.071186160602167, 25.52537286352629 ], [ -107.088098286597059, 25.52920501661599 ], [ -107.100373216754633, 25.526381324865685 ], [ -107.108010951074903, 25.52133901816871 ], [ -107.114557580492274, 25.519322095489922 ], [ -107.123831972166897, 25.52517117125841 ], [ -107.126014181972678, 25.528398247544473 ], [ -107.126286958198406, 25.531020247026902 ], [ -107.133106363841506, 25.534045631045085 ], [ -107.135834126098743, 25.533440554241448 ], [ -107.138289112130252, 25.531625323830539 ], [ -107.149745713610656, 25.513473019721431 ], [ -107.192298804823594, 25.515489942400222 ], [ -107.207301497238404, 25.517305172811131 ], [ -107.207301497238404, 25.517305172811131 ], [ -107.227759714167703, 25.539894706813577 ], [ -107.228850819070601, 25.543323475367519 ], [ -107.23048747642494, 25.55683685731541 ], [ -107.228850819070601, 25.571157008334815 ], [ -107.226395833039078, 25.57377900781724 ], [ -107.221213084750332, 25.574384084620878 ], [ -107.217394217590197, 25.573173931013606 ], [ -107.215212007784402, 25.570350239263298 ], [ -107.210574811947097, 25.570551931531178 ], [ -107.198572658015237, 25.577006084103303 ], [ -107.185206622954766, 25.585678851622099 ], [ -107.183297189374699, 25.59314146553362 ], [ -107.186570504083392, 25.605444693874237 ], [ -107.189025490114901, 25.605444693874237 ], [ -107.202937077626828, 25.600402387177262 ], [ -107.204846511206895, 25.597578695426957 ], [ -107.217939770041639, 25.595763465016049 ], [ -107.228850819070601, 25.59536008048029 ], [ -107.23212413377928, 25.595561772748169 ], [ -107.237034105842312, 25.596973618623323 ], [ -107.238670763196666, 25.598385464498474 ], [ -107.242216854131073, 25.602621002123932 ], [ -107.243035182808242, 25.606251462945753 ], [ -107.241944077905345, 25.609881923767574 ], [ -107.264038952188983, 25.62863930468032 ], [ -107.276859434798013, 25.640942533020933 ], [ -107.27958719705525, 25.645379762914274 ], [ -107.286679378924063, 25.663128682487621 ], [ -107.286406602698349, 25.665548989702167 ], [ -107.283133287989656, 25.667364220113079 ], [ -107.282042183086759, 25.66938114279187 ], [ -107.282042183086759, 25.674625141756721 ], [ -107.284769945343996, 25.678053910310663 ], [ -107.291862127212823, 25.678053910310663 ], [ -107.295680994372958, 25.673818372685204 ], [ -107.295680994372958, 25.671599757738537 ], [ -107.296499323050128, 25.670187911863383 ], [ -107.301682071338888, 25.665347297434288 ], [ -107.304955386047567, 25.66474222063065 ], [ -107.317230316205141, 25.665548989702167 ], [ -107.334142442200033, 25.673616680417325 ], [ -107.339597966714507, 25.677650525774904 ], [ -107.345599043680437, 25.686524985561579 ], [ -107.353509554226434, 25.712744980385843 ], [ -107.353782330452148, 25.71556867213615 ], [ -107.338234085585896, 25.724039747387067 ], [ -107.32568637920258, 25.72101436336888 ], [ -107.320776407139562, 25.718594056154334 ], [ -107.31804864488231, 25.718190671618576 ], [ -107.309592581884871, 25.719199132957971 ], [ -107.297863204178753, 25.722627901511913 ], [ -107.288043260052689, 25.72343467058343 ], [ -107.238397986970938, 25.720610978833122 ], [ -107.223940847007569, 25.717988979350697 ], [ -107.22148586097606, 25.718392363886455 ], [ -107.220394756073148, 25.725249900994342 ], [ -107.225304728136194, 25.728073592744646 ], [ -107.250945693354225, 25.735132822120409 ], [ -107.259674532577407, 25.736948052531318 ], [ -107.263220623511813, 25.736746360263439 ], [ -107.270312805380627, 25.73351928397738 ], [ -107.321867512042445, 25.744208974174963 ], [ -107.341507400294574, 25.749251280871938 ], [ -107.34669014858332, 25.751469895818605 ], [ -107.348326805937674, 25.756310510247701 ], [ -107.366602813061178, 25.782933889607722 ], [ -107.373967771155719, 25.779908505589539 ], [ -107.375877204735787, 25.779101736518022 ], [ -107.377513862090126, 25.771235738070743 ], [ -107.376149980961515, 25.767403584981043 ], [ -107.372058337575652, 25.755705433444064 ], [ -107.369876127769857, 25.753083433961635 ], [ -107.368239470415517, 25.752074972622243 ], [ -107.366875589286906, 25.74884789633618 ], [ -107.36714836551262, 25.747637742728905 ], [ -107.370421680221312, 25.744007281907084 ], [ -107.374513323607175, 25.741990359228293 ], [ -107.380787176798819, 25.743200512835568 ], [ -107.381605505475989, 25.741385282424659 ], [ -107.382969386604614, 25.740981897888901 ], [ -107.414884205014303, 25.745419127782235 ], [ -107.490988771991283, 25.791404964858639 ], [ -107.512538093823466, 25.801287885984706 ], [ -107.518811947015124, 25.805725115878047 ], [ -107.528631891141174, 25.815002960200477 ], [ -107.559728380873707, 25.844450031310807 ], [ -107.663928899100242, 25.81056573030714 ], [ -107.704299780507384, 25.826499419469577 ], [ -107.751217291331898, 25.845458492650202 ], [ -107.832504606597624, 25.878132640046591 ], [ -107.94325175424153, 26.028998456420055 ], [ -107.962073313816489, 26.053604913101289 ], [ -107.952253369690425, 26.057840450726744 ], [ -107.958254446656355, 26.066916602781298 ], [ -107.980894873391435, 26.095960289355869 ], [ -107.998079775612041, 26.114314285732853 ], [ -108.020992978572849, 26.134886897056507 ], [ -108.053453349433994, 26.154854431576524 ], [ -108.079912643329209, 26.174216889292907 ], [ -108.078821538426325, 26.168972890328053 ], [ -108.072820461460395, 26.152837508897736 ], [ -108.062454964882889, 26.140130896021361 ], [ -108.052907796982538, 26.134886897056507 ], [ -108.04199674795359, 26.134281820252873 ], [ -108.030267370247458, 26.122987053251649 ], [ -108.022356859701461, 26.114112593464974 ], [ -108.021811307250019, 26.087489214104952 ], [ -108.014719125381191, 26.071555524942514 ], [ -108.009263600866717, 26.060462450209172 ], [ -107.996715894483415, 26.058445527530381 ], [ -107.992624251097567, 26.05723537392311 ], [ -107.990987593743213, 26.056226912583714 ], [ -107.975712125102675, 26.03948645434976 ], [ -107.967528838330963, 26.022947688383685 ], [ -107.965346628525168, 26.014879997668526 ], [ -107.968892719459575, 26.013064767257617 ], [ -107.970256600588201, 26.006408922417609 ], [ -107.943524530467258, 25.983617696147288 ], [ -107.940251215758565, 25.982609234807892 ], [ -107.9304312716325, 25.976356774503646 ], [ -107.927430733149549, 25.973734775021221 ], [ -107.915428579217689, 25.955582470912113 ], [ -107.870966054424699, 25.917059247747233 ], [ -107.863601096330143, 25.906369557549645 ], [ -107.861964438975804, 25.901932327656311 ], [ -107.862782767652973, 25.901125558584795 ], [ -107.863873872555871, 25.901327250852674 ], [ -107.867419963490278, 25.90374755806722 ], [ -107.870420501973243, 25.906772942085404 ], [ -107.876694355164901, 25.904957711674495 ], [ -107.876421578939173, 25.902335712192066 ], [ -107.872875488004766, 25.895881559619941 ], [ -107.861691662750076, 25.886402023029628 ], [ -107.843961208078028, 25.869661564795678 ], [ -107.819138571537152, 25.844651723578686 ], [ -107.797043697253514, 25.81823003648654 ], [ -107.786678200676008, 25.802901424127739 ], [ -107.783950438418771, 25.79503542568046 ], [ -107.784223214644484, 25.793825272073185 ], [ -107.785314319547382, 25.794228656608944 ], [ -107.789951515384701, 25.798060809698644 ], [ -107.794588711221991, 25.793220195269548 ], [ -107.794588711221991, 25.790799888055002 ], [ -107.790497067836142, 25.778900044250143 ], [ -107.784495990870212, 25.77184081487438 ], [ -107.763492221489471, 25.75409189530103 ], [ -107.767311088649606, 25.752478357158001 ], [ -107.772493836938366, 25.754898664372547 ], [ -107.778222137678569, 25.752881741693756 ], [ -107.790224291610414, 25.751469895818605 ], [ -107.809045851185374, 25.755100356640426 ], [ -107.810955284765441, 25.754898664372547 ], [ -107.81504692815129, 25.752680049425877 ], [ -107.82104800511722, 25.748444511800422 ], [ -107.823775767374457, 25.747839434996784 ], [ -107.829504068114659, 25.749049588604059 ], [ -107.8436884318523, 25.756310510247701 ], [ -107.867147187264564, 25.773656045285293 ], [ -107.87232993555331, 25.778698351982264 ], [ -107.889514837773916, 25.799069271038039 ], [ -107.892788152482609, 25.797657425162889 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "50", "geo_id": "0400000US15", "fips_state": "15", "name": "Hawaii", "iso_3166_2": "HI", "census": 1360301, "pop_estimataes_base": 1360301, "pop_2010": 1363950, "pop_2011": 1378251, "pop_2012": 1392766, "pop_2013": 1408987, "pop_2014": 1419561 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.271688468989879, 25.41666073113953 ], [ -102.265960168249677, 25.416257346603771 ], [ -102.237045888322939, 25.401937195584367 ], [ -102.225316510616807, 25.39185258219042 ], [ -102.222043195908128, 25.381162891992833 ], [ -102.217678776296538, 25.373901970349191 ], [ -102.130117607839168, 25.332151670898249 ], [ -102.102294432815313, 25.310570598235199 ], [ -102.096020579623669, 25.309158752360045 ], [ -102.077471796274438, 25.300485984841252 ], [ -102.068197404599829, 25.28858614103639 ], [ -102.06492408989115, 25.286367526089723 ], [ -102.057286355570881, 25.284148911143056 ], [ -102.048011963896258, 25.284955680214569 ], [ -102.035737033738684, 25.291611525054577 ], [ -102.026189865838347, 25.292216601858215 ], [ -101.988001194237, 25.27930829671396 ], [ -101.980090683691003, 25.274064297749106 ], [ -101.96536076750192, 25.272450759606073 ], [ -101.928535977029185, 25.261155992604852 ], [ -101.90207668313397, 25.251273071478785 ], [ -101.859523591921032, 25.232919075101798 ], [ -101.855704724760898, 25.229490306547856 ], [ -101.839065374991748, 25.220414154493305 ], [ -101.775235738172341, 25.189151852972063 ], [ -101.737047066570995, 25.173621548345384 ], [ -101.723408255284795, 25.1705961643272 ], [ -101.709496667772882, 25.162730165879921 ], [ -101.674854087105942, 25.136711863323534 ], [ -101.63366487702163, 25.11432402158897 ], [ -101.621389946864056, 25.102625870051991 ], [ -101.604750597094892, 25.0929446411938 ], [ -101.568471359073612, 25.064909415958624 ], [ -101.563015834559138, 25.062287416476199 ], [ -101.547194813467144, 25.047765573188912 ], [ -101.538465974243991, 25.037882652062844 ], [ -101.533556002180958, 25.026386192793744 ], [ -101.516371099960352, 25.012066041774336 ], [ -101.506551155834288, 25.007023735077361 ], [ -101.502732288674153, 25.006822042809485 ], [ -101.491548463419477, 24.993913737665231 ], [ -101.488547924936512, 24.98806466189674 ], [ -101.487729596259342, 24.976568202627639 ], [ -101.489093477387954, 24.964668358822781 ], [ -101.492366792096647, 24.952768515017922 ], [ -101.486911267582173, 24.936834825855485 ], [ -101.481728519293412, 24.913236830513647 ], [ -101.483365176647752, 24.908799600620309 ], [ -101.47681854723038, 24.87390683827725 ], [ -101.468635260458669, 24.8638222248833 ], [ -101.460451973686943, 24.861603609936633 ], [ -101.445176505046405, 24.864023917151179 ], [ -101.428264379051527, 24.874511915080888 ], [ -101.388166273870112, 24.872494992402096 ], [ -101.376982448615422, 24.861401917668754 ], [ -101.362798084877781, 24.840627614077221 ], [ -101.353250916977444, 24.822071925432358 ], [ -101.353523693203172, 24.803314544519615 ], [ -101.346704287560073, 24.772052242998374 ], [ -101.335520462305396, 24.763177783211702 ], [ -101.323791084599264, 24.757127015175332 ], [ -101.309879497087337, 24.755513477032299 ], [ -101.306878958604386, 24.753093169817753 ], [ -101.30633340615293, 24.750874554871082 ], [ -101.30797006350727, 24.742403479620165 ], [ -101.302241762767068, 24.733327327565615 ], [ -101.287511846577985, 24.725461329118335 ], [ -101.280692440934885, 24.72041902242136 ], [ -101.275782468871853, 24.713964869849235 ], [ -101.251505384782433, 24.697022719347402 ], [ -101.21959056637273, 24.68189579925648 ], [ -101.195313482283296, 24.673424724005564 ], [ -101.177583027611249, 24.661928264736463 ], [ -101.166671978582286, 24.660718111129189 ], [ -101.152760391070373, 24.65265042041403 ], [ -101.146213761653001, 24.644582729698872 ], [ -101.145395432975818, 24.641355653412809 ], [ -101.152214838618917, 24.603034122515805 ], [ -101.164762545002219, 24.585688587478217 ], [ -101.190676286445992, 24.560477053993345 ], [ -101.208133964892326, 24.549182286992124 ], [ -101.244413202913606, 24.521147061756949 ], [ -101.257233685522635, 24.505616757130269 ], [ -101.274964140194683, 24.489683067967832 ], [ -101.288602951480883, 24.473547686537515 ], [ -101.325700518179332, 24.456605536035681 ], [ -101.364980294683576, 24.442890461819911 ], [ -101.41271613418526, 24.418082312870801 ], [ -101.430992141308764, 24.403963854119272 ], [ -101.455814777849639, 24.39690462474351 ], [ -101.46918081291011, 24.398114778350781 ], [ -101.483910729099208, 24.395694471136235 ], [ -101.492094015870919, 24.391055548975018 ], [ -101.501641183771255, 24.390853856707139 ], [ -101.542557617629853, 24.402753700511997 ], [ -101.56437971568775, 24.406384161333818 ], [ -101.595476205420283, 24.399526624225935 ], [ -101.602022834837655, 24.395089394332597 ], [ -101.609660569157924, 24.384198011867134 ], [ -101.635028758150256, 24.368062630436818 ], [ -101.639938730213288, 24.351725556738621 ], [ -101.650031450565066, 24.343052789219826 ], [ -101.666943576559959, 24.337002021183459 ], [ -101.679218506717532, 24.336195252111942 ], [ -101.70376836703268, 24.323488639235567 ], [ -101.712224430030119, 24.315420948520408 ], [ -101.716043297190254, 24.306344796465854 ], [ -101.73404652808803, 24.28799080008887 ], [ -101.745503129568434, 24.283351877927654 ], [ -101.784237353621236, 24.275485879480375 ], [ -101.792693416618675, 24.27024188051552 ], [ -101.789147325684269, 24.265804650622187 ], [ -101.788601773232813, 24.261770805264604 ], [ -101.794875626424471, 24.254711575888841 ], [ -101.801149479616114, 24.253703114549445 ], [ -101.803604465647638, 24.251686191870657 ], [ -101.815606619579484, 24.229096657868215 ], [ -101.821607696545414, 24.226878042921545 ], [ -101.827063221059888, 24.220423890349419 ], [ -101.822153248996855, 24.207313892937286 ], [ -101.818879934288177, 24.191581896042727 ], [ -101.819698262965346, 24.184119282131206 ], [ -101.826517668608446, 24.170000823379677 ], [ -101.835792060283055, 24.165160208950585 ], [ -101.840156479894631, 24.16011790225361 ], [ -101.850249200246424, 24.136721599179651 ], [ -101.847248661763459, 24.118165910534785 ], [ -101.850794752697865, 24.109089758480234 ], [ -101.863069682855439, 24.108282989408718 ], [ -101.872889626981504, 24.10001360642568 ], [ -101.872344074530062, 24.097996683746889 ], [ -101.882164018656113, 24.079844379637784 ], [ -101.899621697102447, 24.063305613671709 ], [ -101.912169403485748, 24.056246384295946 ], [ -101.922262123837541, 24.057859922438976 ], [ -101.929354305706354, 24.062700536868071 ], [ -101.933445949092217, 24.071776688922625 ], [ -101.938083144929521, 24.080449456441421 ], [ -101.977362921433766, 24.111106681159022 ], [ -102.018006579066622, 24.125023447642672 ], [ -102.067651852148387, 24.159311133182094 ], [ -102.118388230133036, 24.171009284719073 ], [ -102.148939167414113, 24.185127743470602 ], [ -102.152212482122792, 24.187951435220906 ], [ -102.15766800663728, 24.20489358572274 ], [ -102.180035657146632, 24.231113580547003 ], [ -102.184945629209665, 24.231516965082761 ], [ -102.205949398590406, 24.272863879997949 ], [ -102.208404384621929, 24.308361719144646 ], [ -102.205949398590406, 24.370886322187122 ], [ -102.210041041976268, 24.383592935063497 ], [ -102.213041580459233, 24.412434929370189 ], [ -102.208949937073371, 24.428772003068385 ], [ -102.208949937073371, 24.453378459749619 ], [ -102.212496028007791, 24.492305067450257 ], [ -102.216042118942198, 24.503398142183599 ], [ -102.232135916259907, 24.534458751436958 ], [ -102.251775804512022, 24.558460131314554 ], [ -102.249593594706241, 24.572981974601841 ], [ -102.265414615798221, 24.588915663764279 ], [ -102.269506259184084, 24.597386739015196 ], [ -102.276052888601455, 24.627438886929159 ], [ -102.275507336150014, 24.638128577126746 ], [ -102.277689545955795, 24.640952268877051 ], [ -102.284781727824623, 24.644784421966751 ], [ -102.290237252339097, 24.645591191038267 ], [ -102.290237252339097, 24.641960730216447 ], [ -102.292965014596334, 24.641557345680688 ], [ -102.306603825882533, 24.647204729181297 ], [ -102.3085132594626, 24.649625036395847 ], [ -102.313150455299905, 24.671206109058893 ], [ -102.327062042811832, 24.70892256315226 ], [ -102.329789805069069, 24.714166562117114 ], [ -102.333335896003476, 24.717393638403177 ], [ -102.33797309184078, 24.718805484278327 ], [ -102.345338049935322, 24.74986609353169 ], [ -102.356794651415726, 24.772455627534132 ], [ -102.383253945310955, 24.808558543484466 ], [ -102.416805421074997, 24.817029618735383 ], [ -102.421442616912302, 24.821063464092962 ], [ -102.424715931620995, 24.826710847593574 ], [ -102.424715931620995, 24.836795460987521 ], [ -102.419260407106506, 24.839619152737825 ], [ -102.422533721815199, 24.846476689845712 ], [ -102.43153533726408, 24.858376533650571 ], [ -102.445446924776007, 24.867654377973004 ], [ -102.450084120613312, 24.872696684669975 ], [ -102.453630211547733, 24.888025297028776 ], [ -102.468087351511087, 24.900731909905151 ], [ -102.462904603222341, 24.912631753710009 ], [ -102.460722393416546, 24.926951904729414 ], [ -102.462359050770885, 24.95095328460701 ], [ -102.438081966681466, 24.972130972734302 ], [ -102.424988707846708, 24.987459585093106 ], [ -102.406439924497491, 25.015293118060399 ], [ -102.400984399983003, 25.019932040221619 ], [ -102.389800574728326, 25.024369270114953 ], [ -102.37425232986206, 25.025579423722228 ], [ -102.369342357799042, 25.021747270632527 ], [ -102.364159609510281, 25.020537117025253 ], [ -102.350520798224082, 25.026789577329502 ], [ -102.353794112932775, 25.038286036598603 ], [ -102.353248560481319, 25.043126651027698 ], [ -102.345338049935322, 25.055228187100433 ], [ -102.336063658260713, 25.080238028317424 ], [ -102.330062581294783, 25.091129410782891 ], [ -102.331153686197695, 25.09516325614047 ], [ -102.330335357520511, 25.100407255105321 ], [ -102.308240483236872, 25.121988327768371 ], [ -102.300329972690889, 25.136711863323534 ], [ -102.285600056501792, 25.144376169502934 ], [ -102.283417846695997, 25.142762631359904 ], [ -102.27987175576159, 25.143166015895662 ], [ -102.277689545955795, 25.150023553003546 ], [ -102.277143993504353, 25.1629318581478 ], [ -102.27905342708442, 25.19379077513328 ], [ -102.283690622921725, 25.203673696259351 ], [ -102.311513797945565, 25.232112306030281 ], [ -102.331426462423408, 25.249256148799994 ], [ -102.354339665384217, 25.278501527642444 ], [ -102.376707315893583, 25.318839981218236 ], [ -102.394983323017087, 25.379952738385562 ], [ -102.395801651694256, 25.411013347638921 ], [ -102.388436693599715, 25.43057749762318 ], [ -102.381617287956615, 25.43824180380258 ], [ -102.373706777410618, 25.442679033695917 ], [ -102.353248560481319, 25.44590610998198 ], [ -102.3085132594626, 25.432796112569847 ], [ -102.276871217278625, 25.417669192478925 ], [ -102.271688468989879, 25.41666073113953 ] ] ], [ [ [ -107.424158596688926, 27.080218556605196 ], [ -107.419794177077335, 27.081832094748226 ], [ -107.411338114079896, 27.078403326194284 ], [ -107.406700918242592, 27.058637483942146 ], [ -107.413247547659964, 27.0562171767276 ], [ -107.418975848400166, 27.060856098888813 ], [ -107.424158596688926, 27.080218556605196 ] ] ], [ [ [ -107.035179698806616, 27.357343732670884 ], [ -107.03299748900082, 27.360974193492709 ], [ -107.029178621840686, 27.393850033156976 ], [ -107.013357600748705, 27.399497416657589 ], [ -106.988807740433543, 27.400102493461226 ], [ -106.973805048018733, 27.392236495013947 ], [ -106.964803432569852, 27.378924805333934 ], [ -106.964803432569852, 27.375496036779992 ], [ -106.968076747278531, 27.373277421833322 ], [ -106.972168390664393, 27.37226896049393 ], [ -106.975441705373072, 27.374084190904838 ], [ -106.977623915178867, 27.37226896049393 ], [ -106.986625530627762, 27.350889580098759 ], [ -106.989080516659271, 27.322652662595704 ], [ -106.980351677436104, 27.305508819825992 ], [ -106.976805586501698, 27.29038189973507 ], [ -106.995081593625201, 27.279692209537487 ], [ -107.019631453940349, 27.272632980161724 ], [ -107.042817433126885, 27.269809288411416 ], [ -107.055637915735915, 27.262144982232016 ], [ -107.066003412313421, 27.244597754926545 ], [ -107.076914461342369, 27.220192990513191 ], [ -107.086734405468434, 27.186712074045285 ], [ -107.08127888095396, 27.183686690027102 ], [ -107.085643300565536, 27.176829152919218 ], [ -107.099009335626008, 27.18187145961619 ], [ -107.118103671426695, 27.194578072492565 ], [ -107.136925231001641, 27.215554068351977 ], [ -107.138289112130252, 27.250043446159278 ], [ -107.130651377809983, 27.287759900252645 ], [ -107.129014720455643, 27.29058359200295 ], [ -107.115375909169444, 27.300063128593262 ], [ -107.108283727300631, 27.308332511576296 ], [ -107.106374293720563, 27.313173126005395 ], [ -107.095463244691601, 27.324064508470858 ], [ -107.073913922859418, 27.332535583721771 ], [ -107.045545195384122, 27.347057427009059 ], [ -107.036816356160955, 27.353713271849063 ], [ -107.035179698806616, 27.357343732670884 ] ] ], [ [ [ -106.370696812943152, 27.591710147946237 ], [ -106.347783609982343, 27.60118968453655 ], [ -106.326779840601603, 27.592920301553512 ], [ -106.323779302118652, 27.589491532999567 ], [ -106.304139413866523, 27.583239072695321 ], [ -106.296228903320525, 27.582835688159562 ], [ -106.29404669351473, 27.58565937990987 ], [ -106.290500602580323, 27.585457687641991 ], [ -106.274679581488343, 27.575373074248041 ], [ -106.245765301561605, 27.551976771174083 ], [ -106.233490371404031, 27.519706008313449 ], [ -106.220942665020729, 27.513050163473444 ], [ -106.218214902763492, 27.507604472240711 ], [ -106.214941588054799, 27.493082628953424 ], [ -106.213850483151901, 27.476140478451594 ], [ -106.228853175566712, 27.443466331055202 ], [ -106.230217056695338, 27.425717411481852 ], [ -106.232399266501133, 27.420876797052756 ], [ -106.240309777047131, 27.417246336230939 ], [ -106.243855867981537, 27.40917864551578 ], [ -106.244128644207265, 27.391228033674551 ], [ -106.225852637083761, 27.333342352793288 ], [ -106.224215979729422, 27.324266200738734 ], [ -106.225307084632306, 27.321240816720554 ], [ -106.239764224595675, 27.311357895594483 ], [ -106.243855867981537, 27.300063128593262 ], [ -106.267587399619515, 27.285944669841733 ], [ -106.289409497677426, 27.25972467501747 ], [ -106.304957742543692, 27.247018062141095 ], [ -106.323779302118652, 27.234714833800478 ], [ -106.351875253368206, 27.247421446676853 ], [ -106.372333470297505, 27.254480676052616 ], [ -106.400429421547059, 27.257909444606558 ], [ -106.438890869374134, 27.260128059553224 ], [ -106.459894638754875, 27.266380519857474 ], [ -106.463440729689296, 27.270616057482933 ], [ -106.469987359106668, 27.269405903875658 ], [ -106.496446653001883, 27.269809288411416 ], [ -106.528088695185858, 27.29058359200295 ], [ -106.541454730246329, 27.307324050236904 ], [ -106.570096233947339, 27.333140660525409 ], [ -106.580461730524846, 27.336569429079354 ], [ -106.605557143291449, 27.341208351240567 ], [ -106.622196493060613, 27.349477734223605 ], [ -106.662840150693469, 27.361579270296343 ], [ -106.671568989916636, 27.368033422868471 ], [ -106.700483269843375, 27.401716031604256 ], [ -106.705393241906407, 27.415027721284268 ], [ -106.706757123035018, 27.448105253216418 ], [ -106.701847150971986, 27.456979713003093 ], [ -106.67402397594816, 27.484006476898873 ], [ -106.669659556336569, 27.499335089257674 ], [ -106.66638624162789, 27.526765237689212 ], [ -106.660657940887688, 27.536043082011645 ], [ -106.636108080572527, 27.548144618084383 ], [ -106.606375471968619, 27.552380155709841 ], [ -106.550183569469496, 27.587676302588658 ], [ -106.534635324603229, 27.598769377322 ], [ -106.528088695185858, 27.605828606697763 ], [ -106.50353883487071, 27.607038760305038 ], [ -106.497810534130508, 27.605828606697763 ], [ -106.491809457164578, 27.603609991751096 ], [ -106.482535065489969, 27.59352537835715 ], [ -106.476261212298311, 27.595945685571696 ], [ -106.464804610817907, 27.59352537835715 ], [ -106.459894638754875, 27.591306763410479 ], [ -106.457985205174808, 27.586667841249263 ], [ -106.454711890466115, 27.583239072695321 ], [ -106.44625582746869, 27.580818765480775 ], [ -106.44025475050276, 27.58565937990987 ], [ -106.442709736534269, 27.600584607732912 ], [ -106.431525911279593, 27.607845529376554 ], [ -106.422797072056426, 27.607038760305038 ], [ -106.408067155867329, 27.599979530929275 ], [ -106.397428883064094, 27.601794761340187 ], [ -106.382153414423556, 27.598567685054121 ], [ -106.370696812943152, 27.591710147946237 ] ] ], [ [ [ -103.708673626103462, 26.425122070534332 ], [ -103.692307052560025, 26.421088225176753 ], [ -103.684942094465484, 26.424113609194936 ], [ -103.681941555982519, 26.427945762284637 ], [ -103.679759346176724, 26.446703143197382 ], [ -103.682487108433961, 26.449123450411928 ], [ -103.682214332208247, 26.451140373090716 ], [ -103.673212716759352, 26.457191141127087 ], [ -103.668029968470591, 26.455577602984054 ], [ -103.66066501037605, 26.4503336040192 ], [ -103.645389541735511, 26.428954223624032 ], [ -103.642934555704002, 26.419676379301599 ], [ -103.636933478738072, 26.412617149925836 ], [ -103.606928093908436, 26.403742690139161 ], [ -103.591107072816456, 26.398902075710069 ], [ -103.586197100753424, 26.400515613853099 ], [ -103.584560443399084, 26.404146074674919 ], [ -103.585651548301968, 26.406768074157348 ], [ -103.554827834795176, 26.397893614370673 ], [ -103.528641317125675, 26.400313921585219 ], [ -103.509546981325002, 26.40636468962159 ], [ -103.458810603340353, 26.409995150443411 ], [ -103.428259666059276, 26.404751151478557 ], [ -103.423622470221972, 26.400313921585219 ], [ -103.420076379287565, 26.389825923655515 ], [ -103.402618700841231, 26.391237769530665 ], [ -103.395526518972403, 26.38861577004824 ], [ -103.395253742746689, 26.379136233457928 ], [ -103.403709805744128, 26.35937039120579 ], [ -103.422804141544802, 26.335772395863952 ], [ -103.447081225634221, 26.317620091754847 ], [ -103.460992813146149, 26.309955785575447 ], [ -103.46317502295193, 26.304106709806955 ], [ -103.503273128133358, 26.293013635073613 ], [ -103.53327851296298, 26.288374712912397 ], [ -103.543371233314772, 26.280105329929359 ], [ -103.558919478181025, 26.283332406215422 ], [ -103.563011121566888, 26.28756794384088 ], [ -103.62520410103194, 26.302089787128168 ], [ -103.678395465048112, 26.320040398969393 ], [ -103.703218101588988, 26.326696243809401 ], [ -103.709491954780631, 26.329116551023947 ], [ -103.716584136649459, 26.336377472667589 ], [ -103.76104666144245, 26.346058701525777 ], [ -103.777140458760158, 26.347268855133052 ], [ -103.80687306736408, 26.344646855650627 ], [ -103.824603522036128, 26.339201164417894 ], [ -103.936714550808659, 26.337587626274864 ], [ -103.983086509181717, 26.345857009257902 ], [ -104.000271411402323, 26.35553823811609 ], [ -103.990724243501987, 26.382363309743994 ], [ -103.991542572179156, 26.385792078297936 ], [ -103.987450928793308, 26.396078383959761 ], [ -103.980085970698752, 26.407574843228861 ], [ -103.972993788829939, 26.412818842193715 ], [ -103.970811579024144, 26.412213765390078 ], [ -103.957991096415128, 26.424113609194936 ], [ -103.953899453029265, 26.430567761767065 ], [ -103.951990019449198, 26.440248990625253 ], [ -103.954172229254993, 26.457392833394966 ], [ -103.962355516026705, 26.465863908645883 ], [ -103.967265488089737, 26.46808252359255 ], [ -103.969720474121246, 26.471309599878616 ], [ -103.968083816766907, 26.476150214307708 ], [ -103.9645377258325, 26.477763752450741 ], [ -103.947625599837608, 26.470502830807099 ], [ -103.932077354971341, 26.469090984931945 ], [ -103.917620215007986, 26.47030113853922 ], [ -103.906981942204752, 26.467275754521033 ], [ -103.894979788272892, 26.45497252618042 ], [ -103.88761483017835, 26.45255221896587 ], [ -103.857609445348714, 26.446501450929503 ], [ -103.848335053674106, 26.446098066393745 ], [ -103.845061738965427, 26.447711604536774 ], [ -103.828149612970535, 26.446098066393745 ], [ -103.812055815652826, 26.441257451964649 ], [ -103.796507570786559, 26.441257451964649 ], [ -103.76022833276528, 26.430769454034944 ], [ -103.748771731284876, 26.429962684963428 ], [ -103.74358898299613, 26.431777915374337 ], [ -103.735678472450132, 26.431576223106457 ], [ -103.708673626103462, 26.425122070534332 ] ] ], [ [ [ -103.10638371970505, 25.728476977280405 ], [ -103.111839244219539, 25.726056670065855 ], [ -103.122477517022759, 25.728073592744646 ], [ -103.147300153563634, 25.718795748422213 ], [ -103.167758370492933, 25.732309130370105 ], [ -103.193944888162434, 25.723838055119188 ], [ -103.204037608514213, 25.717383902547063 ], [ -103.210038685480143, 25.721417747904638 ], [ -103.230496902409442, 25.714761903064634 ], [ -103.245499594824253, 25.717383902547063 ], [ -103.270322231365128, 25.739166667477988 ], [ -103.269776678913672, 25.744410666442842 ], [ -103.265957811753537, 25.753486818497393 ], [ -103.251773448015911, 25.768613738588318 ], [ -103.224223049217784, 25.776278044767718 ], [ -103.190398797228028, 25.796850656091372 ], [ -103.187671034970776, 25.803506500931377 ], [ -103.155210664109632, 25.815406344736235 ], [ -103.145117943757853, 25.813389422057448 ], [ -103.129296922665873, 25.802296347324102 ], [ -103.115658111379673, 25.786967734965302 ], [ -103.114294230251048, 25.780513582393176 ], [ -103.119749754765536, 25.775471275696201 ], [ -103.122204740797045, 25.749251280871938 ], [ -103.11838587363691, 25.745822512317993 ], [ -103.104474286124983, 25.740578513353142 ], [ -103.102564852544916, 25.733317591709501 ], [ -103.10638371970505, 25.728476977280405 ] ] ], [ [ [ -103.267594469107891, 26.244809183050542 ], [ -103.268140021559333, 26.247229490265088 ], [ -103.263502825722028, 26.254288719640854 ], [ -103.248772909532931, 26.252271796962063 ], [ -103.234315769569577, 26.238758415014175 ], [ -103.215494209994617, 26.233917800585075 ], [ -103.200218741354078, 26.222017956780221 ], [ -103.196672650419671, 26.222017956780221 ], [ -103.171577237653068, 26.183091349079579 ], [ -103.159302307495494, 26.169376274863811 ], [ -103.152210125626681, 26.165745814041991 ], [ -103.148118482240818, 26.154451047040766 ], [ -103.145117943757853, 26.151829047558341 ], [ -103.136116328308958, 26.147996894468641 ], [ -103.13120635624594, 26.141139357360757 ], [ -103.126296384182893, 26.12883612902014 ], [ -103.110475363090913, 26.110078748107398 ], [ -103.103383181222085, 26.106246595017694 ], [ -103.053192355688893, 26.121575207376495 ], [ -103.017185893893327, 26.128432744484382 ], [ -103.006547621090107, 26.136097050663782 ], [ -103.003819858832856, 26.141139357360757 ], [ -102.986907732837977, 26.149408740343794 ], [ -102.979815550969164, 26.149408740343794 ], [ -102.975996683809029, 26.146383356325607 ], [ -102.967540620811576, 26.153845970237128 ], [ -102.959902886491307, 26.157274738791074 ], [ -102.940808550690633, 26.149005355808036 ], [ -102.920350333761348, 26.153442585701374 ], [ -102.906984298700877, 26.142349510968032 ], [ -102.895254920994745, 26.145576587254091 ], [ -102.873705599162548, 26.141542741896515 ], [ -102.859794011650635, 26.135088589324386 ], [ -102.857339025619126, 26.120768438304982 ], [ -102.853520158458991, 26.119356592429828 ], [ -102.849155738847401, 26.120970130572861 ], [ -102.844518543010096, 26.118953207894069 ], [ -102.841245228301403, 26.109070286768002 ], [ -102.791599955219652, 26.076597831639489 ], [ -102.788326640510974, 26.07417752442494 ], [ -102.7828711159965, 26.06489968010251 ], [ -102.747137430426662, 26.059252296601898 ], [ -102.74140912968646, 26.044932145582493 ], [ -102.723678675014398, 26.023754457455201 ], [ -102.707857653922417, 26.024359534258839 ], [ -102.698583262247809, 26.027586610544901 ], [ -102.663395129129412, 26.004593692006701 ], [ -102.6358447303313, 26.001164923452759 ], [ -102.603111583244427, 25.98704646470123 ], [ -102.601474925890088, 25.980794004396984 ], [ -102.58374447121804, 25.967078930181213 ], [ -102.57856172292928, 25.957801085858783 ], [ -102.579380051606449, 25.948724933804229 ], [ -102.575288408220587, 25.934001398249066 ], [ -102.573106198414791, 25.912016941050258 ], [ -102.575833960672043, 25.902940788995704 ], [ -102.58374447121804, 25.887410484369024 ], [ -102.593837191569818, 25.875107256028407 ], [ -102.600111044761462, 25.876519101903561 ], [ -102.610203765113255, 25.872485256545982 ], [ -102.618387051884966, 25.86280402768779 ], [ -102.620569261690761, 25.854938029240511 ], [ -102.628479772236759, 25.844450031310807 ], [ -102.634480849202674, 25.842433108632015 ], [ -102.657121275937769, 25.845660184918081 ], [ -102.664213457806596, 25.840012801417469 ], [ -102.693673290184762, 25.82589434266594 ], [ -102.701856576956487, 25.820045266897452 ], [ -102.714131507114061, 25.816414806075631 ], [ -102.716040940694128, 25.817019882879265 ], [ -102.720678136531433, 25.822263881844119 ], [ -102.729679751980328, 25.823070650915636 ], [ -102.742500234589357, 25.821255420504727 ], [ -102.745773549298036, 25.818028344218661 ], [ -102.75804847945561, 25.82428080452291 ], [ -102.767050094904505, 25.826701111737457 ], [ -102.784234997125111, 25.823877419987152 ], [ -102.79869213708848, 25.818835113290177 ], [ -102.808239304988817, 25.812179268450173 ], [ -102.836062480012657, 25.798464194234402 ], [ -102.854065710910433, 25.794026964341064 ], [ -102.857066249393398, 25.789589734447731 ], [ -102.86197622145643, 25.786362658161664 ], [ -102.870977836905311, 25.784144043214997 ], [ -102.891981606286066, 25.786967734965302 ], [ -102.921168662438518, 25.786766042697423 ], [ -102.928533620533059, 25.781925428268327 ], [ -102.939171893336294, 25.779101736518022 ], [ -102.946264075205121, 25.779101736518022 ], [ -102.986089404160808, 25.788379580840456 ], [ -102.989089942643773, 25.792010041662277 ], [ -102.987998837740875, 25.796447271555614 ], [ -102.99099937622384, 25.801287885984706 ], [ -102.99700045318977, 25.804918346806531 ], [ -103.001092096575618, 25.801892962788344 ], [ -103.005456516187209, 25.801287885984706 ], [ -103.012548698056037, 25.804716654538652 ], [ -103.019913656150578, 25.811775883914414 ], [ -103.019368103699122, 25.817826651950782 ], [ -103.032734138759594, 25.847072030793232 ], [ -103.029188047825187, 25.854131260168995 ], [ -103.028096942922289, 25.860988797276882 ], [ -103.042008530434202, 25.911008479710862 ], [ -103.04828238362586, 25.932186167838154 ], [ -103.051282922108825, 25.938236935874521 ], [ -103.057829551526197, 25.944086011643012 ], [ -103.064921733395025, 25.961834931216359 ], [ -103.068195048103703, 25.980794004396984 ], [ -103.072013915263838, 25.990273540987292 ], [ -103.083197740518528, 25.999954769845484 ], [ -103.100928195190576, 26.008224152828522 ], [ -103.113748677799606, 26.010442767775189 ], [ -103.118113097411182, 26.01003938323943 ], [ -103.127387489085805, 26.004997076542459 ], [ -103.134206894728891, 25.991685386862446 ], [ -103.146754601112193, 25.989668464183659 ], [ -103.250682343112999, 26.037267839403093 ], [ -103.307692574289305, 26.08950613678374 ], [ -103.321604161801218, 26.108465209964365 ], [ -103.320785833124049, 26.110482132643156 ], [ -103.324059147832742, 26.126415821805594 ], [ -103.328423567444318, 26.132869974377719 ], [ -103.335242973087418, 26.137105512003178 ], [ -103.338516287796111, 26.141542741896515 ], [ -103.338516287796111, 26.174216889292907 ], [ -103.330060224798672, 26.201848729992321 ], [ -103.319149175769709, 26.228673801620225 ], [ -103.306055916934966, 26.230085647495379 ], [ -103.300327616194764, 26.235531338728109 ], [ -103.297872630163241, 26.240977029960842 ], [ -103.300054839969036, 26.243397337175388 ], [ -103.299509287517594, 26.248843028408121 ], [ -103.275777755879602, 26.248036259336605 ], [ -103.267594469107891, 26.244809183050542 ] ] ], [ [ [ -103.657664471893085, 26.163123814559562 ], [ -103.637479031189514, 26.164737352702595 ], [ -103.617839142937399, 26.157879815594711 ], [ -103.582651009819017, 26.155661200648041 ], [ -103.56273834534116, 26.15203073982622 ], [ -103.539552366154638, 26.143963049111061 ], [ -103.468630547466418, 26.088497675444348 ], [ -103.454173407503049, 26.074984293496456 ], [ -103.43371519057375, 26.048965990940072 ], [ -103.431532980767969, 26.043116915171581 ], [ -103.430441875865071, 26.03182214817036 ], [ -103.435897400379545, 26.017098612615197 ], [ -103.451718421471526, 25.987248156969109 ], [ -103.459356155791795, 25.983012619343651 ], [ -103.464538904080555, 25.98321431161153 ], [ -103.482269358752603, 25.978373697182434 ], [ -103.501363694553277, 25.969095852860004 ], [ -103.519639701676795, 25.964456930698788 ], [ -103.560283359309651, 25.965465392038183 ], [ -103.578832142658882, 25.962036623484238 ], [ -103.600108688265351, 25.984827849754563 ], [ -103.615111380680162, 26.015888459007922 ], [ -103.615111380680162, 26.045335530118251 ], [ -103.620294128968908, 26.056831989387351 ], [ -103.639115688543868, 26.080833369264948 ], [ -103.64484398928407, 26.086077368229802 ], [ -103.693670933688651, 26.11108720944679 ], [ -103.700217563106023, 26.118953207894069 ], [ -103.70294532536326, 26.12500397593044 ], [ -103.706764192523394, 26.139122434681966 ], [ -103.704854758943327, 26.14819858673652 ], [ -103.683578213336858, 26.161308584148653 ], [ -103.673758269210794, 26.16352719909532 ], [ -103.657664471893085, 26.163123814559562 ] ] ], [ [ [ -104.785321389035758, 26.591316499266597 ], [ -104.828692808925865, 26.585669115765985 ], [ -104.843968277566404, 26.585467423498105 ], [ -104.85433377414391, 26.589904653391443 ], [ -104.865790375624314, 26.605636650286002 ], [ -104.867972585430095, 26.611485726054489 ], [ -104.858152641304045, 26.615317879144193 ], [ -104.86115317978701, 26.619956801305406 ], [ -104.86715425675294, 26.623788954395106 ], [ -104.872609781267414, 26.619553416769648 ], [ -104.885703040102158, 26.649605564683615 ], [ -104.895522984228222, 26.664934177042415 ], [ -104.907252361934354, 26.677035713115153 ], [ -104.921709501897709, 26.688733864652132 ], [ -104.94107661392411, 26.697810016706686 ], [ -104.944077152407075, 26.703457400207299 ], [ -104.945713809761429, 26.714953859476395 ], [ -104.949259900695836, 26.724433396066708 ], [ -104.962353159530579, 26.743190776979453 ], [ -104.977901404396846, 26.755897389855825 ], [ -104.993995201714554, 26.766587080053412 ], [ -105.01118010393516, 26.785546153234034 ], [ -105.015817299772465, 26.822657530523763 ], [ -105.01799950957826, 26.832137067114072 ], [ -105.021818376738395, 26.839397988757717 ], [ -105.041731041216238, 26.857751985134701 ], [ -105.074736964528825, 26.877921211922597 ], [ -105.073373083400213, 26.880946595940781 ], [ -105.050187104213677, 26.883971979958964 ], [ -104.985539138717115, 26.884577056762602 ], [ -104.963717040659191, 26.879938134601389 ], [ -104.918981739640472, 26.882560134083814 ], [ -104.901524061194152, 26.891837978406244 ], [ -104.902615166097036, 26.898493823246252 ], [ -104.905888480805729, 26.901317514996556 ], [ -104.904797375902831, 26.903132745407468 ], [ -104.879701963136228, 26.922898587659606 ], [ -104.869063690333007, 26.938428892286286 ], [ -104.870427571461619, 26.947303352072961 ], [ -104.868518137881551, 26.953354120109328 ], [ -104.845877711146471, 26.978767345862078 ], [ -104.829238361377307, 26.993894265952999 ], [ -104.804142948610703, 27.001155187596641 ], [ -104.799505752773399, 27.005390725222099 ], [ -104.780684193198454, 27.004785648418462 ], [ -104.754497675528953, 26.980179191737228 ], [ -104.742495521597107, 26.958799811342061 ], [ -104.731038920116703, 26.944277968054777 ], [ -104.724492290699317, 26.939840738161436 ], [ -104.72012787108774, 26.924310433534757 ], [ -104.719855094862027, 26.917452896426873 ], [ -104.703215745092862, 26.898292130978373 ], [ -104.691759143612458, 26.892443055209881 ], [ -104.662572087459992, 26.860172292349247 ], [ -104.661208206331381, 26.844641987722568 ], [ -104.654388800688281, 26.841818295972264 ], [ -104.649751604850977, 26.847869064008634 ], [ -104.638295003370558, 26.84423860318681 ], [ -104.633930583758982, 26.840809834632868 ], [ -104.613199590603969, 26.811967840326176 ], [ -104.610199052121004, 26.793613843949192 ], [ -104.622473982278578, 26.791596921270404 ], [ -104.623837863407203, 26.781915692412213 ], [ -104.610471828346732, 26.747426314604908 ], [ -104.604470751380802, 26.739762008425508 ], [ -104.587285849160196, 26.734921393996416 ], [ -104.577465905034131, 26.729274010495804 ], [ -104.573374261648269, 26.718987704833978 ], [ -104.56328154129649, 26.708298014636391 ], [ -104.540913890787124, 26.692566017741832 ], [ -104.534367261369752, 26.693977863616986 ], [ -104.52945728930672, 26.698011708974565 ], [ -104.528911736855278, 26.708096322368512 ], [ -104.535731142498378, 26.731089240906712 ], [ -104.53382170891831, 26.735123086264295 ], [ -104.526729527049483, 26.738551854818237 ], [ -104.516091254246248, 26.738148470282479 ], [ -104.498633575799914, 26.735123086264295 ], [ -104.492086946382557, 26.73169431771035 ], [ -104.489631960351034, 26.71999616617337 ], [ -104.492905275059712, 26.713743705869124 ], [ -104.495360261091236, 26.699221862581837 ], [ -104.494269156188338, 26.689742325991528 ], [ -104.489631960351034, 26.679052635793944 ], [ -104.480630344902139, 26.676228944043636 ], [ -104.478720911322071, 26.676228944043636 ], [ -104.477084253967732, 26.677035713115153 ], [ -104.474902044161936, 26.677439097650911 ], [ -104.474356491710495, 26.677237405383032 ], [ -104.473810939259039, 26.677237405383032 ], [ -104.473265386807597, 26.677035713115153 ], [ -104.472992610581869, 26.677035713115153 ], [ -104.472174281904699, 26.67542217497212 ], [ -104.470810400776088, 26.673405252293332 ], [ -104.468082638518837, 26.669774791471511 ], [ -104.455534932135549, 26.656261409523619 ], [ -104.454716603458365, 26.652025871898161 ], [ -104.456626037038433, 26.641537873968456 ], [ -104.452807169878298, 26.630848183770873 ], [ -104.450079407621061, 26.625604184806019 ], [ -104.43507671520625, 26.607653572964789 ], [ -104.430985071820388, 26.604023112142968 ], [ -104.394705833799108, 26.582240347212043 ], [ -104.38461311344733, 26.582643731747801 ], [ -104.384340337221602, 26.577399732782947 ], [ -104.384340337221602, 26.57054219567506 ], [ -104.421165127694337, 26.54351543177928 ], [ -104.419528470339984, 26.53585112559988 ], [ -104.424983994854472, 26.533632510653213 ], [ -104.434531162754809, 26.53201897251018 ], [ -104.438895582366385, 26.534035895188971 ], [ -104.439713911043555, 26.536657894671396 ], [ -104.438077253689215, 26.542305278172009 ], [ -104.440532239720724, 26.551986507030197 ], [ -104.443260001977961, 26.555213583316259 ], [ -104.450897736298231, 26.558037275066567 ], [ -104.485813093190899, 26.550372968887167 ], [ -104.493996379962624, 26.551583122494439 ], [ -104.506544086345912, 26.546540815797464 ], [ -104.519637345180655, 26.533834202921092 ], [ -104.536003918724106, 26.531817280242301 ], [ -104.548278848881679, 26.535246048796246 ], [ -104.552097716041814, 26.539481586421701 ], [ -104.554552702073323, 26.546540815797464 ], [ -104.562735988845048, 26.55501189104838 ], [ -104.578829786162757, 26.566306658049605 ], [ -104.627111178115882, 26.585064038962347 ], [ -104.63420335998471, 26.598779113178118 ], [ -104.640204436950626, 26.606846803893276 ], [ -104.646478290142284, 26.609065418839943 ], [ -104.659025996525585, 26.598779113178118 ], [ -104.657116562945518, 26.593736806481143 ], [ -104.651933814656758, 26.590711422462959 ], [ -104.648387723722351, 26.585265731230226 ], [ -104.690940814935288, 26.587887730712652 ], [ -104.690395262483833, 26.593938498749022 ], [ -104.692577472289628, 26.600392651321147 ], [ -104.710853479413132, 26.610477264715097 ], [ -104.716309003927606, 26.610073880179339 ], [ -104.731038920116703, 26.601199420392664 ], [ -104.765408724557915, 26.593736806481143 ], [ -104.785321389035758, 26.591316499266597 ] ] ] ] } } -] -} diff --git a/GlobalQuakeCore/src/main/resources/scales/pgaScale3.png b/GlobalQuakeCore/src/main/resources/scales/pgaScale3.png deleted file mode 100644 index 0019cef..0000000 Binary files a/GlobalQuakeCore/src/main/resources/scales/pgaScale3.png and /dev/null differ diff --git a/GlobalQuakeCore/src/main/resources/travel_table/travel_table.dat b/GlobalQuakeCore/src/main/resources/travel_table/travel_table.dat deleted file mode 100644 index d2b2b9f..0000000 Binary files a/GlobalQuakeCore/src/main/resources/travel_table/travel_table.dat and /dev/null differ diff --git a/GlobalQuakeCore/src/test/java/globalquake/core/database/StationDatabaseManagerTest.java b/GlobalQuakeCore/src/test/java/globalquake/core/database/StationDatabaseManagerTest.java deleted file mode 100644 index 38b2519..0000000 --- a/GlobalQuakeCore/src/test/java/globalquake/core/database/StationDatabaseManagerTest.java +++ /dev/null @@ -1,244 +0,0 @@ -package globalquake.core.database; - -import globalquake.core.database.*; -import org.junit.Test; - -import java.util.List; -import java.util.Optional; - -import static org.junit.Assert.*; - -@SuppressWarnings("OptionalGetWithoutIsPresent") -public class StationDatabaseManagerTest { - - @Test - public void testConstructor(){ - StationDatabase stationDatabase = new StationDatabase(); - StationDatabaseManager databaseManager = new StationDatabaseManager(stationDatabase); - - assertEquals(stationDatabase, databaseManager.getStationDatabase()); - } - - @Test - public void testAcceptChannel(){ - Network dummyNetwork = new Network("coolNetwork", ""); - Station dummyStation = new Station(dummyNetwork, "coolStation", "", 0, 0, 0); - Channel dummyChannel = new Channel("coolChannel", "00", 50, 0, 0, 0, null); - - StationDatabase stationDatabase = new StationDatabase(); - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannel); - - assertEquals(1, stationDatabase.getNetworks().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().size()); - var opt = stationDatabase.getNetworks().get(0).getStations().stream().findAny(); - assertTrue(opt.isPresent()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().stream().findAny().get().getChannels().size()); - } - - @Test - public void testAcceptAnotherChannel(){ - Network dummyNetwork = new Network("coolNetwork", ""); - Station dummyStation = new Station(dummyNetwork, "coolStation", "", 0, 0, 0); - Channel dummyChannel = new Channel("coolChannel", "00", 50, 0, 0, 0, null); - - StationDatabase stationDatabase = new StationDatabase(); - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannel); - - assertEquals(1, stationDatabase.getNetworks().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().size()); - var opt = stationDatabase.getNetworks().get(0).getStations().stream().findAny(); - assertTrue(opt.isPresent()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().stream().findAny().get().getChannels().size()); - - Channel dummyChannel2 = new Channel("coolChannel", "00", 50, 50, 0, 0, null); - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannel2); - - assertEquals(1, stationDatabase.getNetworks().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().size()); - opt = stationDatabase.getNetworks().get(0).getStations().stream().findAny(); - assertTrue(opt.isPresent()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().stream().findAny().get().getChannels().size()); - - Channel channel = stationDatabase.getNetworks().get(0).getStations().stream().findAny().get().getChannels().stream().findAny().get(); - assertEquals(50, channel.getLatitude(), 1e-6); - } - - @Test - public void testRemoveStationSource(){ - StationSource stationSource1 = new StationSource("1", ""); - StationSource stationSource2 = new StationSource("2", ""); - Network dummyNetwork = new Network("coolNetwork", ""); - Station dummyStation = new Station(dummyNetwork, "coolStation", "", 0, 0, 0); - Channel dummyChannel = new Channel("coolChannel", "00", 50, 0, 0, 0, stationSource1); - Channel dummyChannelDup = new Channel("coolChannel", "00", 50, 0, 0, 0, stationSource2); - Channel dummyChannel2 = new Channel("coolChannel2", "00", 50, 0, 0, 0, stationSource2); - - StationDatabase stationDatabase = new StationDatabase(); - StationDatabaseManager stationDatabaseManager = new StationDatabaseManager(stationDatabase); - - stationDatabase.getStationSources().add(stationSource1); - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannel); - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannelDup); - - assertEquals(1, stationDatabase.getNetworks().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().size()); - Optional opt = stationDatabase.getNetworks().get(0).getStations().stream().findAny(); - assertTrue(opt.isPresent()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().size()); - - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannel2); - assertEquals(2, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().size()); - - assertEquals(2, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().get(0).getStationSources().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().get(1).getStationSources().size()); - - // REMOVE STATION SOURCE 1 - stationDatabaseManager.removeAllStationSources(List.of(stationSource1)); - - assertEquals(1, stationDatabase.getNetworks().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().size()); - opt = stationDatabase.getNetworks().get(0).getStations().stream().findAny(); - assertTrue(opt.isPresent()); - - assertEquals(2, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().get(0).getStationSources().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().get(1).getStationSources().size()); - - stationDatabaseManager.removeAllStationSources(List.of(stationSource2)); - - assertEquals(0, stationDatabase.getNetworks().size()); - } - - @Test - public void testBasicallyEverything(){ - SeedlinkNetwork dummySeedlinkNetwork = new SeedlinkNetwork("dummy", "", 5); - SeedlinkNetwork dummySeedlinkNetwork2 = new SeedlinkNetwork("dummy2", "", 5); - StationSource stationSource1 = new StationSource("1", ""); - StationSource stationSource2 = new StationSource("2", ""); - Network dummyNetwork = new Network("coolNetwork", ""); - Station dummyStation = new Station(dummyNetwork, "coolStation", "", 0, 0, 0); - Channel dummyChannel = new Channel("coolChannel", "00", 50, 0, 0, 0, stationSource1); - Channel dummyChannelDup = new Channel("coolChannel", "00", 50, 0, 0, 0, stationSource2); - Channel dummyChannel2 = new Channel("coolChannel2", "00", 50, 0, 0, 0, stationSource2); - dummyChannel2.getSeedlinkNetworks().put(dummySeedlinkNetwork, 1000L); - dummyChannel.getSeedlinkNetworks().put(dummySeedlinkNetwork, 500L); - dummyChannel.getSeedlinkNetworks().put(dummySeedlinkNetwork2, 100L); - assertEquals(dummySeedlinkNetwork2, dummyChannel.selectBestSeedlinkNetwork()); - - StationDatabase stationDatabase = new StationDatabase(); - StationDatabaseManager stationDatabaseManager = new StationDatabaseManager(stationDatabase); - - stationDatabase.getStationSources().add(stationSource1); - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannel); - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannelDup); - assertEquals(dummyChannel, stationDatabaseManager.getStationDatabase().getNetworks().get(0).getStations().get(0).getChannels().get(0)); - - assertEquals(1, stationDatabase.getNetworks().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().size()); - Optional opt = stationDatabase.getNetworks().get(0).getStations().stream().findAny(); - assertTrue(opt.isPresent()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().size()); - - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannel2); - assertEquals(1, stationDatabase.getNetworks().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().size()); - - dummyStation.setSelectedChannel(dummyChannel2); - assertEquals(dummyChannel2, dummyStation.getSelectedChannel()); - assertEquals(dummyStation, stationDatabase.getNetworks().get(0).getStations().get(0)); - assertEquals(dummyChannel2, stationDatabase.getNetworks().get(0).getStations().get(0).getSelectedChannel()); - - assertEquals(2, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().size()); - - assertEquals(2, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().get(0).getStationSources().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().get(1).getStationSources().size()); - - // REMOVE STATION SOURCE 2 - stationDatabaseManager.removeAllStationSources(List.of(stationSource2)); - - assertEquals(1, stationDatabase.getNetworks().size()); - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().size()); - opt = stationDatabase.getNetworks().get(0).getStations().stream().findAny(); - assertTrue(opt.isPresent()); - - assertEquals(1, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().size()); - assertEquals(dummyChannel, stationDatabase.getNetworks().get(0).getStations().get(0).getSelectedChannel()); - - // TEST REMOVE SEEDLINK NETWORK - assertTrue(dummyChannel.getSeedlinkNetworks().containsKey(dummySeedlinkNetwork)); - assertTrue(dummyChannel.getSeedlinkNetworks().containsKey(dummySeedlinkNetwork2)); - - stationDatabaseManager.removeAllSeedlinks(List.of(dummySeedlinkNetwork)); - - assertFalse(dummyChannel.getSeedlinkNetworks().containsKey(dummySeedlinkNetwork)); - assertTrue(dummyChannel.getSeedlinkNetworks().containsKey(dummySeedlinkNetwork2)); - - stationDatabaseManager.removeAllSeedlinks(List.of(dummySeedlinkNetwork2)); - assertFalse(dummyChannel.getSeedlinkNetworks().containsKey(dummySeedlinkNetwork)); - assertFalse(dummyChannel.getSeedlinkNetworks().containsKey(dummySeedlinkNetwork2)); - assertNull(dummyChannel.selectBestSeedlinkNetwork()); - } - - @Test - public void testChannelUpdate(){ - Network dummyNetwork = new Network("coolNetwork", ""); - Station dummyStation = new Station(dummyNetwork, "coolStation", "", 0, 0, 0); - Channel dummyChannel = new Channel("coolChannel", "00", 50, 0, 0, 0, null); - Channel dummyChannelNew = new Channel("coolChannel", "00", 50, 50, 0, 0, null); - - dummyNetwork.getStations().add(dummyStation); - dummyStation.getChannels().add(dummyChannel); - dummyStation.getChannels().add(dummyChannelNew); - - StationDatabase stationDatabase = new StationDatabase(); - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannel); - - dummyStation.setSelectedChannel(dummyChannel); - assertEquals(dummyChannel, stationDatabase.getNetworks().get(0).getStations().get(0).getSelectedChannel()); - assertTrue(stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().contains(stationDatabase.getNetworks().get(0).getStations().get(0).getSelectedChannel())); - - stationDatabase.acceptChannel(dummyNetwork, dummyStation, dummyChannelNew); - assertEquals(50, stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().get(0).getLatitude(), 1e-6); - assertTrue(stationDatabase.getNetworks().get(0).getStations().get(0).getChannels().contains(stationDatabase.getNetworks().get(0).getStations().get(0).getSelectedChannel())); - } - - @Test - public void testAcceptNetworks(){ - Network dummyNetwork = new Network("coolNetwork", ""); - Station dummyStation = new Station(dummyNetwork, "coolStation", "", 0, 0, 0); - Channel dummyChannel = new Channel("coolChannel", "00", 50, 0, 0, 0, null); - Channel dummyChannelNew = new Channel("coolChannel", "00", 50, 50, 0, 0, null); - - dummyNetwork.getStations().add(dummyStation); - dummyStation.getChannels().add(dummyChannel); - dummyStation.getChannels().add(dummyChannelNew); - - StationDatabaseManager databaseManager = new StationDatabaseManager(new StationDatabase()); - databaseManager.acceptNetworks(List.of(dummyNetwork)); - } - - @Test - public void testChannelDeselectWhenRemoveAllSeedlinks(){ - SeedlinkNetwork seedlinkNetwork = new SeedlinkNetwork("dummy", "D", 5); - Network dummyNetwork = new Network("coolNetwork", ""); - Station dummyStation = new Station(dummyNetwork, "coolStation", "", 0, 0, 0); - Channel dummyChannel = new Channel("coolChannel", "00", 50, 0, 0, 0, null); - Channel dummyChannelNew = new Channel("coolChannel", "00", 50, 50, 0, 0, null); - - dummyNetwork.getStations().add(dummyStation); - dummyStation.getChannels().add(dummyChannel); - dummyStation.getChannels().add(dummyChannelNew); - - StationDatabaseManager databaseManager = new StationDatabaseManager(new StationDatabase()); - databaseManager.acceptNetworks(List.of(dummyNetwork)); - - dummyChannel.getSeedlinkNetworks().put(seedlinkNetwork, 0L); - dummyStation.setSelectedChannel(dummyChannel); - - databaseManager.removeAllSeedlinks(List.of(seedlinkNetwork)); - assertTrue(dummyChannel.getSeedlinkNetworks().isEmpty()); - assertNull(dummyStation.getSelectedChannel()); - } - - -} \ No newline at end of file diff --git a/GlobalQuakeCore/src/test/java/globalquake/core/geo/taup/DifferenceTest.java b/GlobalQuakeCore/src/test/java/globalquake/core/geo/taup/DifferenceTest.java deleted file mode 100644 index 0283034..0000000 --- a/GlobalQuakeCore/src/test/java/globalquake/core/geo/taup/DifferenceTest.java +++ /dev/null @@ -1,18 +0,0 @@ -package globalquake.core.geo.taup; - -import edu.sc.seis.TauP.TauP_GUI; - -public class DifferenceTest { - - public static void main(String[] args) throws Exception { - new TauP_GUI().setVisible(true); - TauPTravelTimeCalculator.init(); - - double ang = TauPTravelTimeCalculator.toAngle(8372.6); - - for (double depth = 0; depth < 50; depth += 0.5) { - System.out.printf("%.1fkm: %.3fs%n",depth, TauPTravelTimeCalculator.getPWaveTravelTime(depth, ang) - TravelTimeTableOld.getPWaveTravelTime(depth, ang)); - } - } - -} diff --git a/GlobalQuakeCore/src/test/java/globalquake/core/geo/taup/TauPTravelTimeCalculatorTest.java b/GlobalQuakeCore/src/test/java/globalquake/core/geo/taup/TauPTravelTimeCalculatorTest.java deleted file mode 100644 index bbe5a20..0000000 --- a/GlobalQuakeCore/src/test/java/globalquake/core/geo/taup/TauPTravelTimeCalculatorTest.java +++ /dev/null @@ -1,121 +0,0 @@ -package globalquake.core.geo.taup; - -import globalquake.core.exception.FatalApplicationException; -import org.junit.Test; - -import static org.junit.Assert.assertEquals; - -public class TauPTravelTimeCalculatorTest { - - @Test - public void testTravelTimeZeroDistance() throws FatalApplicationException { - TauPTravelTimeCalculator.init(); - - assertEquals(0, Math.abs(TauPTravelTimeCalculator.getPWaveTravelTime(0, 0)) ,1e-6); - assertEquals(0, Math.abs(TauPTravelTimeCalculator.getSWaveTravelTime(0, 0)) , 1e-6); - } - - @Test - public void testPKPTravelTimeZeroDistance() throws FatalApplicationException { - TauPTravelTimeCalculator.init(); - - assertEquals(TauPTravelTimeCalculator.NO_ARRIVAL, TauPTravelTimeCalculator.getPKPWaveTravelTime(0, 0), 1e-6); - } - - @Test - public void sanityTestTravelTime0KM() throws FatalApplicationException { - TauPTravelTimeCalculator.init(); - - double depth = 0; - for (double ang = 0; ang <= 100; ang += 1) { - assertEquals("%s˚ %skm".formatted(ang, depth), TravelTimeTableOld.getPWaveTravelTime(depth, ang), TauPTravelTimeCalculator.getPWaveTravelTime(depth, ang), 3); - assertEquals("%s˚ %skm".formatted(ang, depth), TravelTimeTableOld.getSWaveTravelTime(depth, ang), TauPTravelTimeCalculator.getSWaveTravelTime(depth, ang), 3); - } - } - - @Test - public void sanityTestTravelTimeVarious() throws FatalApplicationException { - TauPTravelTimeCalculator.init(); - - for(double depth = 0; depth < 600; depth += 1) { - for (double ang = 10; ang <= 100; ang += 1) { - assertEquals("%s˚ %skm".formatted(ang, depth), TravelTimeTableOld.getPWaveTravelTime(depth, ang), TauPTravelTimeCalculator.getPWaveTravelTime(depth, ang), 2.0); - assertEquals("%s˚ %skm".formatted(ang, depth), TravelTimeTableOld.getSWaveTravelTime(depth, ang), TauPTravelTimeCalculator.getSWaveTravelTime(depth, ang), 2.0); - } - } - } - - @Test - public void sanityTestTravelAngle() throws FatalApplicationException { - TauPTravelTimeCalculator.init(); - - for(double depth = 0; depth < 600; depth += 1) { - for (double ang = 0; ang < 150; ang += 1) { - assertEquals("%s˚ %skm".formatted(ang, depth), ang, TauPTravelTimeCalculator.getPWaveTravelAngle(depth, TauPTravelTimeCalculator.getPWaveTravelTime(depth, ang)), - 1e-4); - } - } - } - - @Test - public void testNoCrash() throws Exception{ - TauPTravelTimeCalculator.init(); - - for(double depth = -20; depth <= 1000; depth += 0.04){ - for(double ang = -20; ang <= 200; ang += 0.04){ - TauPTravelTimeCalculator.getPWaveTravelTimeFast(depth, ang); - TauPTravelTimeCalculator.getPWaveTravelTime(depth, ang); - } - } - } - - @Test - public void testBigAngle() throws Exception{ - TauPTravelTimeCalculator.init(); - - assertEquals(TauPTravelTimeCalculator.NO_ARRIVAL, TauPTravelTimeCalculator.getPWaveTravelAngle(0, 40 * 60), 1e-6); - assertEquals(TauPTravelTimeCalculator.NO_ARRIVAL, TauPTravelTimeCalculator.getPWaveTravelAngle(0, -40 * 60), 1e-6); - assertEquals(TauPTravelTimeCalculator.NO_ARRIVAL,TauPTravelTimeCalculator.getPKIKPWaveTravelAngle(0, 2 * 60), 1e-6); - assertEquals(TauPTravelTimeCalculator.NO_ARRIVAL, TauPTravelTimeCalculator.getPKPWaveTravelAngle(0, 2 * 60), 1e-6); - } - - @Test - public void testPKP() throws Exception{ - TauPTravelTimeCalculator.init(); - - assertEquals(153.35, TauPTravelTimeCalculator.getPKPWaveTravelAngle(0, 1200.0), 0.5); - assertEquals(1194.46, TauPTravelTimeCalculator.getPKPWaveTravelTime(0, 151.0), 0.5); - assertEquals(1196.88, TauPTravelTimeCalculator.getPKPWaveTravelTime(0, 152.0), 0.5); - assertEquals(1199.21, TauPTravelTimeCalculator.getPKPWaveTravelTime(0, 153.0), 0.5); - assertEquals(1201.45, TauPTravelTimeCalculator.getPKPWaveTravelTime(0, 154.0), 0.5); - assertEquals(1203.61, TauPTravelTimeCalculator.getPKPWaveTravelTime(0, 155.0), 0.5); - assertEquals(1222.92, TauPTravelTimeCalculator.getPKPWaveTravelTime(0, 156.0), 0.5); - - assertEquals(151, TauPTravelTimeCalculator.getPKPWaveTravelAngle(0, 1194.46), 0.5); - assertEquals(152, TauPTravelTimeCalculator.getPKPWaveTravelAngle(0, 1196.88), 0.5); - assertEquals(153, TauPTravelTimeCalculator.getPKPWaveTravelAngle(0, 1199.21), 0.5); - assertEquals(154, TauPTravelTimeCalculator.getPKPWaveTravelAngle(0, 1201.45), 0.5); - assertEquals(155, TauPTravelTimeCalculator.getPKPWaveTravelAngle(0, 1203.61), 0.5); - assertEquals(156, TauPTravelTimeCalculator.getPKPWaveTravelAngle(0, 1222.92), 0.5); - } - - @Test - public void testPKIKP() throws Exception{ - TauPTravelTimeCalculator.init(); - - assertEquals(1212.09, TauPTravelTimeCalculator.getPKIKPWaveTravelTime(0, 180.0), 0.5); - assertEquals(994.57, TauPTravelTimeCalculator.getPKIKPWaveTravelTime(0, 0.0), 0.5); - assertEquals(999.02, TauPTravelTimeCalculator.getPKIKPWaveTravelTime(0, 20), 0.5); - assertEquals(1012.15, TauPTravelTimeCalculator.getPKIKPWaveTravelTime(0, 40), 0.5); - assertEquals(1061.23, TauPTravelTimeCalculator.getPKIKPWaveTravelTime(0, 80), 0.5); - assertEquals(1186.73, TauPTravelTimeCalculator.getPKIKPWaveTravelTime(0, 150), 0.5); - - assertEquals(20, TauPTravelTimeCalculator.getPKIKPWaveTravelAngle(0, 999.02), 0.5); - assertEquals(0, TauPTravelTimeCalculator.getPKIKPWaveTravelAngle(0, 994.47), 0.5); - assertEquals(40, TauPTravelTimeCalculator.getPKIKPWaveTravelAngle(0, 1012.15), 0.5); - assertEquals(80, TauPTravelTimeCalculator.getPKIKPWaveTravelAngle(0, 1061.23), 0.5); - assertEquals(150, TauPTravelTimeCalculator.getPKIKPWaveTravelAngle(0, 1186.73), 0.5); - assertEquals(179.9, TauPTravelTimeCalculator.getPKIKPWaveTravelAngle(0, 1212.09), 0.5); - } - -} \ No newline at end of file diff --git a/GlobalQuakeCore/src/test/java/globalquake/core/geo/taup/TravelTimeTableOld.java b/GlobalQuakeCore/src/test/java/globalquake/core/geo/taup/TravelTimeTableOld.java deleted file mode 100644 index c1b6fa9..0000000 --- a/GlobalQuakeCore/src/test/java/globalquake/core/geo/taup/TravelTimeTableOld.java +++ /dev/null @@ -1,903 +0,0 @@ -package globalquake.core.geo.taup; - -import java.util.ArrayList; - -@SuppressWarnings("unused") -public class TravelTimeTableOld { - - public static final double[] DEPTHS = { 0, 15, 35, 50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 650, - 700 }; - public static final double[] DEPTHS_PKP = { 0, 35, 50, 100, 200, 300, 500, 700 }; - - private static final int PKP_START = 113; - - public static final ArrayList PTravelTimeTable = new ArrayList<>(); - public static final ArrayList STravelTimeTable = new ArrayList<>(); - public static final ArrayList PKPTravelTimeTable = new ArrayList<>(); - - static { - fillTable(); - } - - private static void fillTable() { - PTravelTimeTable.add(new double[] { 0.0, 2.59, 5.76, 7.62, 13.84, 20.03, 26.12, 32.11, 37.97, 43.7, 49.32, - 54.67, 59.89, 65.02, 70.07, 75.02, 79.7 }); - PTravelTimeTable.add(new double[] { 19.17, 19.01, 17.51, 17.7, 20.39, 24.73, 29.72, 34.99, 40.34, 45.71, 51.05, - 56.18, 61.23, 66.21, 71.14, 76.0, 80.58 }); - PTravelTimeTable.add(new double[] { 35.03, 33.23, 31.27, 31.32, 32.54, 35.08, 38.47, 42.42, 46.73, 51.26, 55.91, - 60.47, 65.03, 69.62, 74.22, 78.78999999999999, 83.13 }); - PTravelTimeTable.add(new double[] { 48.78, 46.98, 45.02, 45.02, 45.71, 47.32, 49.59, 52.43, 55.71, 59.31, 63.16, - 66.97, 70.91, 74.95, 79.07, 83.24, 87.18 }); - PTravelTimeTable.add(new double[] { 62.53, 60.73, 58.77, 58.74, 59.14, 60.2, 61.73, 63.75, 66.17, 68.95, 72.02, - 75.09, 78.35, 81.78999999999999, 85.37, 89.06, 92.55 }); - PTravelTimeTable.add(new double[] { 76.27, 74.47, 72.51, 72.45, 72.67, 73.36, 74.35, 75.74, 77.48, 79.56, 81.95, - 84.31, 86.91, 89.76, 92.78999999999999, 95.97999999999999, 98.97 }); - PTravelTimeTable.add(new double[] { 90.01, 88.21000000000001, 86.25, 86.17, 86.24, 86.64, 87.2, 88.08, 89.26, - 90.76, 92.56, 94.25, 96.25, 98.53999999999999, 101.05, 103.74000000000001, 106.22999999999999 }); - PTravelTimeTable.add(new double[] { 103.75, 101.94, 99.97999999999999, 99.88, 99.83, 99.97999999999999, 100.17, - 100.62, 101.32, 102.32, 103.61, 104.66, 106.12, 107.89, 109.92, 112.15, 114.12 }); - PTravelTimeTable.add(new double[] { 117.47, 115.67, 113.7, 113.58, 113.42, 113.33, 113.18, 113.24000000000001, - 113.52000000000001, 114.08, 114.92, 115.35, 116.33, 117.64, 119.22999999999999, 121.02, 122.49 }); - PTravelTimeTable.add(new double[] { 131.19, 129.38, 127.41, 127.27, 127.02, 126.66, 126.2, 125.89, 125.79, - 125.96, 126.4, 126.17, 126.74, 127.66, 128.84, 130.24, 131.18 }); - PTravelTimeTable.add(new double[] { 144.9, 143.09, 141.12, 140.96, 140.62, 139.93, 139.17000000000002, 138.51, - 138.07, 137.88, 137.52, 137.05, 137.28, 137.84, 138.66, 139.7, 140.09 }); - PTravelTimeTable.add(new double[] { 158.59, 156.78, 154.81, 154.63, 154.21, 153.12, 152.05, 151.06, 150.3, - 149.8, 148.59, 147.93, 147.87, 148.12, 148.61, 149.32999999999998, 149.11 }); - PTravelTimeTable.add(new double[] { 172.27, 170.46, 168.48, 168.29, 167.59, 166.19, 164.8, 163.51, 162.47, - 161.55, 159.62, 158.79, 158.47, 158.44, 158.64, 158.56, 158.17000000000002 }); - PTravelTimeTable.add(new double[] { 185.94, 184.13, 182.14, 181.93, 180.8, 179.1, 177.41, 175.85, 174.55, 172.6, - 170.61, 169.61, 169.06, 168.77, 168.71, 167.78, 167.26 }); - PTravelTimeTable.add(new double[] { 199.59, 197.78, 195.79, 195.56, 193.83, 191.81, 189.85, 188.06, 185.98, - 183.6, 181.54, 180.37, 179.61, 179.09, 178.78, 176.97, 176.34 }); - PTravelTimeTable.add(new double[] { 213.23, 211.41, 209.32, 208.75, 206.63, 204.32, 202.13, 199.74, 196.99, - 194.54, 192.39, 191.06, 190.11, 189.37, 188.06, 186.15, 185.4 }); - PTravelTimeTable - .add(new double[] { 226.37, 224.46, 222.31, 221.62, 219.17000000000002, 216.64, 213.82999999999998, - 210.73, 207.93, 205.41, 203.17000000000002, 201.68, 200.53, 199.44, 197.24, 195.29, 194.44 }); - PTravelTimeTable.add(new double[] { 239.13, 237.17000000000002, 234.96, 234.17000000000002, 231.49, 228.19, - 224.81, 221.67000000000002, 218.79, 216.19, 213.85, 212.21, 210.88, 208.62, 206.39, 204.41, 203.45 }); - PTravelTimeTable.add(new double[] { 251.57, 249.59, 247.33, 246.46, 242.77, 239.15, 235.72, 232.52, 229.57, - 226.88, 224.43, 222.63, 220.26, 217.77, 215.51, 213.48, 212.42000000000002 }); - PTravelTimeTable.add(new double[] { 263.16, 261.04, 258.57, 257.44, 253.71, 250.04, 246.55, 243.28, 240.24, - 237.45, 234.9, 232.15, 229.41, 226.89, 224.59, 222.52, 221.35 }); - PTravelTimeTable.add(new double[] { 274.1, 271.97, 269.49, 268.35, 264.56, 260.83, 257.28, 253.93, 250.81, - 247.86, 244.33, 241.29, 238.53, 235.97, 233.63, 231.5, 230.23 }); - PTravelTimeTable.add(new double[] { 284.95, 282.82, 280.32, 279.15999999999997, 275.32, 271.52, 267.89, 264.46, - 260.76, 257.01, 253.47, 250.4, 247.6, 245.01, 242.62, 240.43, 239.09 }); - PTravelTimeTable.add(new double[] { 295.71, 293.56, 291.05, 289.87, 285.96, 282.09000000000003, - 278.09000000000003, 273.89, 269.9, 266.12, 262.56, 259.46, 256.63, 253.99, 251.54, 249.31, 247.93 }); - PTravelTimeTable.add(new double[] { 306.34, 304.18, 301.65, 300.46, 296.18, 291.62, 287.22, 283.0, 279.0, 275.2, - 271.61, 268.48, 265.6, 262.91, 260.43, 258.16, 256.73 }); - PTravelTimeTable.add(new double[] { 316.31, 314.04, 311.33, 309.94, 305.31, 300.74, 296.32, 292.08, 288.05, - 284.23, 280.61, 277.43, 274.51, 271.79, 269.28, 266.99, 265.51 }); - PTravelTimeTable.add(new double[] { 325.43, 323.15, 320.44, 319.04, 314.4, 309.81, 305.37, 301.11, 297.05, - 293.2, 289.53, 286.33, 283.38, 280.64, 278.1, 275.78, 274.25 }); - PTravelTimeTable.add(new double[] { 334.5, 332.23, 329.51, 328.11, 323.45, 318.83, 314.37, 310.08, 305.99, - 302.1, 298.42, 295.19, 292.22, 289.45, 286.89, 284.54, 282.94 }); - PTravelTimeTable.add(new double[] { 343.54, 341.25, 338.53, 337.12, 332.44, 327.79, 323.3, 318.99, 314.88, - 310.97, 307.27, 304.02, 301.03, 298.24, 295.65, 293.25, 291.58 }); - PTravelTimeTable.add(new double[] { 352.5, 350.22, 347.49, 346.07, 341.35, 336.69, 332.19, 327.85, 323.73, - 319.81, 316.09, 312.82, 309.81, 306.99, 304.36, 301.91, 300.17 }); - PTravelTimeTable.add(new double[] { 361.41, 359.12, 356.38, 354.96, 350.23, 345.56, 341.04, 336.69, 332.55, - 328.62, 324.88, 321.59, 318.55, 315.69, 313.01, 310.52, 308.71 }); - PTravelTimeTable.add(new double[] { 370.27, 367.98, 365.24, 363.82, 359.08, 354.39, 349.86, 345.5, - 341.34000000000003, 337.39, 333.63, 330.31, 327.23, 324.33, 321.61, 319.07, 317.2 }); - PTravelTimeTable.add(new double[] { 379.11, 376.81, 374.07, 372.64, 367.89, 363.19, 358.64, 354.27, - 350.09000000000003, 346.11, 342.33, 338.97, 335.85, 332.90999999999997, 330.15, 327.57, 325.63 }); - PTravelTimeTable.add(new double[] { 387.91, 385.62, 382.87, 381.44, 376.67, 371.96, 367.39, 362.99, 358.79, - 354.78, 350.97, 347.58, 344.42, 341.44, 338.64, 336.01, 334.01 }); - PTravelTimeTable.add(new double[] { 396.68, 394.38, 391.63, 390.19, 385.41, 380.67, 376.08, 371.66, 367.43, - 363.4, 359.55, 356.13, 352.93, 349.90999999999997, 347.06, 344.39, 342.32 }); - PTravelTimeTable.add(new double[] { 405.4, 403.09000000000003, 400.34000000000003, 398.89, 394.09000000000003, - 389.33, 384.71, 380.27, 376.01, 371.95, 368.07, 364.61, 361.38, 358.32, 355.43, 352.71, 350.58 }); - PTravelTimeTable.add(new double[] { 414.06, 411.75, 408.99, 407.54, 402.71, 397.93, 393.29, 388.82, 384.53, - 380.44, 376.54, 373.04, 369.77, 366.67, 363.73, 360.96, 358.78 }); - PTravelTimeTable.add(new double[] { 422.66, 420.34, 417.58, 416.12, 411.27, 406.46, 401.8, 397.3, 392.99, - 388.87, 384.94, 381.41, 378.1, 374.96, 371.98, 369.16, 366.92 }); - PTravelTimeTable.add(new double[] { 431.19, 428.88, 426.1, 424.64, 419.76, 414.94, 410.25, 405.73, 401.39, - 397.24, 393.27, 389.71, 386.36, 383.18, 380.16, 377.3, 375.0 }); - PTravelTimeTable.add(new double[] { 439.67, 437.35, 434.57, 433.09, 428.2, 423.35, 418.64, 414.09000000000003, - 409.72, 405.54, 401.54, 397.94, 394.56, 391.34, 388.27, 385.37, 383.02 }); - PTravelTimeTable.add(new double[] { 448.08, 445.75, 442.97, 441.49, 436.57, 431.69, 426.96, 422.38, 417.99, - 413.78, 409.75, 406.11, 402.69, 399.43, 396.33, 393.38, 390.97 }); - PTravelTimeTable.add(new double[] { 456.42, 454.09000000000003, 451.3, 449.81, 444.87, 439.97, 435.21, 430.6, - 426.19, 421.95, 417.88, 414.22, 410.76, 407.46, 404.31, 401.32, 398.86 }); - PTravelTimeTable.add(new double[] { 464.7, 462.36, 459.56, 458.07, 453.1, 448.18, 443.39, 438.76, 434.32, - 430.05, 425.96, 422.25, 418.76, 415.42, 412.23, 409.2, 406.69 }); - PTravelTimeTable.add(new double[] { 472.9, 470.56, 467.76, 466.26, 461.27, 456.32, 451.51, 446.85, 442.38, - 438.08, 433.96, 430.22, 426.69, 423.32, 420.09, 417.01, 414.45 }); - PTravelTimeTable.add(new double[] { 481.04, 478.7, 475.88, 474.38, 469.36, 464.39, 459.56, 454.87, 450.37, - 446.05, 441.89, 438.12, 434.56, 431.14, 427.88, 424.76, 422.14 }); - PTravelTimeTable.add(new double[] { 489.11, 486.76, 483.94, 482.43, 477.39, 472.39, 467.53, 462.83, 458.3, - 453.94, 449.76, 445.96, 442.36, 438.9, 435.6, 432.44, 429.77 }); - PTravelTimeTable.add(new double[] { 497.1, 494.75, 491.93, 490.4, 485.34, 480.32, 475.44, 470.71, 466.15, - 461.77, 457.55, 453.72, 450.08, 446.59, 443.25, 440.05, 437.34 }); - PTravelTimeTable.add(new double[] { 505.03, 502.67, 499.84, 498.31, 493.23, 488.18, 483.27, 478.52, 473.93, - 469.52, 465.28, 461.40999999999997, 457.74, 454.22, 450.84, 447.6, 444.84 }); - PTravelTimeTable.add(new double[] { 512.88, 510.52, 507.68, 506.14, 501.04, 495.97, 491.04, 486.26, 481.65, - 477.21, 472.94, 469.04, 465.33, 461.77, 458.35, 455.08, 452.27 }); - PTravelTimeTable.add(new double[] { 520.66, 518.29, 515.45, 513.91, 508.78, 503.69, 498.73, 493.92, 489.29, - 484.82, 480.52, 476.59000000000003, 472.85, 469.26, 465.8, 462.49, 459.65 }); - PTravelTimeTable.add(new double[] { 528.37, 526.0, 523.15, 521.6, 516.44, 511.33, 506.35, 501.52, 496.86, - 492.37, 488.04, 484.08, 480.31, 476.68, 473.19, 469.84000000000003, 466.95 }); - PTravelTimeTable.add(new double[] { 536.0, 533.63, 530.77, 529.21, 524.04, 518.91, 513.9, 509.04, 504.36, - 499.84, 495.48, 491.49, 487.69, 484.03, 480.51, 477.12, 474.19 }); - PTravelTimeTable.add(new double[] { 543.56, 541.18, 538.32, 536.76, 531.56, 526.41, 521.38, 516.5, 511.79, - 507.24, 502.86, 498.84, 495.01, 491.31, 487.76, 484.33, 481.36 }); - PTravelTimeTable.add(new double[] { 551.05, 548.67, 545.8, 544.23, 539.01, 533.83, 528.78, 523.88, 519.15, - 514.58, 510.17, 506.12, 502.25, 498.53, 494.93, 491.47, 488.46 }); - PTravelTimeTable.add(new double[] { 558.47, 556.08, 553.2, 551.63, 546.39, 541.19, 536.12, 531.19, 526.44, - 521.84, 517.41, 513.32, 509.43, 505.67, 502.05, 498.55, 495.5 }); - PTravelTimeTable.add(new double[] { 565.81, 563.42, 560.54, 558.96, 553.7, 548.48, 543.38, 538.43, 533.65, - 529.03, 524.57, 520.46, 516.54, 512.75, 509.09, 505.56, 502.47 }); - PTravelTimeTable.add(new double[] { 573.08, 570.69, 567.8, 566.21, 560.93, 555.69, 550.58, 545.6, 540.8, 536.15, - 531.66, 527.53, 523.57, 519.75, 516.06, 512.5, 509.37 }); - PTravelTimeTable.add(new double[] { 580.28, 577.88, 574.99, 573.39, 568.09, 562.83, 557.69, 552.7, 547.87, - 543.2, 538.69, 534.52, 530.54, 526.69, 522.97, 519.37, 516.21 }); - PTravelTimeTable.add(new double[] { 587.4, 585.0, 582.1, 580.5, 575.18, 569.9, 564.74, 559.72, 554.87, 550.18, - 545.64, 541.45, 537.44, 533.56, 529.81, 526.18, 522.98 }); - PTravelTimeTable.add(new double[] { 594.46, 592.05, 589.14, 587.54, 582.2, 576.9, 571.72, 566.68, 561.8, 557.09, - 552.53, 548.31, 544.27, 540.36, 536.57, 532.92, 529.68 }); - PTravelTimeTable.add(new double[] { 601.43, 599.02, 596.11, 594.5, 589.14, 583.82, 578.62, 573.56, 568.66, - 563.92, 559.34, 555.09, 551.02, 547.09, 543.27, 539.59, 536.31 }); - PTravelTimeTable.add(new double[] { 608.34, 605.93, 603.01, 601.39, 596.01, 590.67, 585.45, 580.37, 575.45, - 570.69, 566.08, 561.81, 557.71, 553.75, 549.91, 546.19, 542.88 }); - PTravelTimeTable.add(new double[] { 615.17, 612.75, 609.83, 608.21, 602.81, 597.45, 592.21, 587.11, 582.17, - 577.38, 572.75, 568.45, 564.33, 560.34, 556.47, 552.72, 549.38 }); - PTravelTimeTable.add(new double[] { 621.93, 619.51, 616.58, 614.95, 609.54, 604.16, 598.9, 593.77, 588.81, - 584.01, 579.35, 575.03, 570.88, 566.86, 562.97, 559.19, 555.82 }); - PTravelTimeTable.add(new double[] { 628.62, 626.19, 623.26, 621.63, 616.19, 610.79, 605.51, 600.37, 595.39, - 590.56, 585.88, 581.54, 577.37, 573.32, 569.4, 565.59, 562.18 }); - PTravelTimeTable.add(new double[] { 635.23, 632.8, 629.86, 628.23, 622.77, 617.36, 612.06, 606.9, 601.89, - 597.05, 592.35, 587.98, 583.78, 579.71, 575.76, 571.92, 568.48 }); - PTravelTimeTable.add(new double[] { 641.78, 639.34, 636.4, 634.76, 629.29, 623.85, 618.53, 613.35, 608.33, - 603.46, 598.74, 594.35, 590.12, 586.03, 582.05, 578.19, 574.72 }); - PTravelTimeTable.add(new double[] { 648.25, 645.81, 642.86, 641.21, 635.72, 630.27, 624.94, 619.74, 614.69, - 609.8, 605.06, 600.64, 596.4, 592.27, 588.27, 584.38, 580.88 }); - PTravelTimeTable.add(new double[] { 654.65, 652.21, 649.25, 647.6, 642.09, 636.62, 631.27, 626.05, 620.99, - 616.08, 611.31, 606.87, 602.6, 598.45, 594.42, 590.51, 586.98 }); - PTravelTimeTable.add(new double[] { 660.97, 658.53, 655.57, 653.91, 648.39, 642.9, 637.53, 632.29, 627.21, - 622.28, 617.49, 613.03, 608.74, 604.56, 600.51, 596.57, 593.01 }); - PTravelTimeTable.add(new double[] { 667.23, 664.78, 661.82, 660.15, 654.61, 649.11, 643.72, 638.46, 633.36, - 628.41, 623.6, 619.12, 614.8, 610.61, 606.52, 602.56, 598.97 }); - PTravelTimeTable.add(new double[] { 673.41, 670.96, 667.99, 666.32, 660.76, 655.24, 649.83, 644.56, 639.44, - 634.47, 629.65, 625.14, 620.8, 616.58, 612.47, 608.48, 604.86 }); - PTravelTimeTable.add(new double[] { 679.51, 677.06, 674.09, 672.41, 666.84, 661.3, 655.88, 650.59, 645.45, - 640.46, 635.61, 631.09, 626.72, 622.48, 618.35, 614.33, 610.68 }); - PTravelTimeTable.add(new double[] { 685.55, 683.09, 680.12, 678.44, 672.85, 667.29, 661.85, 656.54, 651.39, - 646.38, 641.51, 636.96, 632.58, 628.31, 624.15, 620.11, 616.43 }); - PTravelTimeTable.add(new double[] { 691.51, 689.05, 686.07, 684.39, 678.78, 673.21, 667.75, 662.43, 657.25, - 652.22, 647.34, 642.77, 638.36, 634.07, 629.89, 625.82, 622.12 }); - PTravelTimeTable.add(new double[] { 697.4, 694.94, 691.95, 690.26, 684.64, 679.05, 673.58, 668.24, 663.04, - 658.0, 653.09, 648.5, 644.07, 639.75, 635.55, 631.46, 627.73 }); - PTravelTimeTable.add(new double[] { 703.22, 700.75, 697.76, 696.06, 690.43, 684.82, 679.33, 673.97, 668.76, - 663.7, 658.77, 654.16, 649.71, 645.37, 641.15, 637.03, 633.28 }); - PTravelTimeTable.add(new double[] { 708.96, 706.49, 703.49, 701.79, 696.14, 690.52, 685.01, 679.64, 674.41, - 669.33, 664.38, 659.75, 655.28, 650.92, 646.67, 642.54, 638.76 }); - PTravelTimeTable.add(new double[] { 714.62, 712.15, 709.15, 707.45, 701.78, 696.14, 690.62, 685.23, 679.98, - 674.88, 669.92, 665.27, 660.78, 656.4, 652.13, 647.97, 644.17 }); - PTravelTimeTable.add(new double[] { 720.22, 717.74, 714.74, 713.03, 707.35, 701.7, 696.16, 690.75, 685.49, - 680.37, 675.39, 670.72, 666.21, 661.81, 657.52, 653.33, 649.5 }); - PTravelTimeTable.add(new double[] { 725.74, 723.26, 720.25, 718.54, 712.84, 707.18, 701.62, 696.2, 690.92, - 685.79, 680.79, 676.1, 671.57, 667.14, 662.83, 658.62, 654.77 }); - PTravelTimeTable.add(new double[] { 731.19, 728.71, 725.69, 723.98, 718.26, 712.58, 707.02, 701.57, 696.28, - 691.13, 686.11, 681.4, 676.85, 672.4, 668.07, 663.84, 659.96 }); - PTravelTimeTable.add(new double[] { 736.56, 734.07, 731.05, 729.34, 723.61, 717.91, 712.33, 706.87, 701.56, - 696.39, 691.36, 686.63, 682.06, 677.59, 673.24, 668.98, 665.08 }); - PTravelTimeTable.add(new double[] { 741.85, 739.37, 736.34, 734.62, 728.88, 723.17, 717.57, 712.1, 706.77, - 701.58, 696.53, 691.78, 687.19, 682.71, 678.33, 674.05, 670.12 }); - PTravelTimeTable.add(new double[] { 747.07, 744.58, 741.56, 739.83, 734.07, 728.35, 722.73, 717.25, 711.9, - 706.7, 701.63, 696.86, 692.25, 687.74, 683.34, 679.05, 675.1 }); - PTravelTimeTable.add(new double[] { 752.22, 749.72, 746.69, 744.96, 739.19, 733.45, 727.82, 722.32, 716.96, - 711.74, 706.65, 701.86, 697.23, 692.71, 688.29, 683.97, 680.0 }); - PTravelTimeTable.add(new double[] { 757.28, 754.78, 751.75, 750.01, 744.23, 738.47, 732.83, 727.31, 721.93, - 716.7, 711.6, 706.79, 702.14, 697.6, 693.16, 688.82, 684.81 }); - PTravelTimeTable.add(new double[] { 762.26, 759.77, 756.72, 754.98, 749.19, 743.42, 737.76, 732.23, 726.84, - 721.59, 716.47, 711.64, 706.97, 702.39, 697.92, 693.56, 689.53 }); - PTravelTimeTable.add(new double[] { 767.18, 764.68, 761.63, 759.89, 754.08, 748.29, 742.62, 737.06, 731.65, - 726.37, 721.23, 716.39, 711.69, 707.11, 702.63, 698.25, 694.22 }); - PTravelTimeTable.add(new double[] { 771.99, 769.49, 766.43, 764.68, 758.85, 753.05, 747.36, 741.79, 736.37, - 731.09, 725.93, 721.08, 716.38, 711.79, 707.3, 702.92, 698.88 }); - PTravelTimeTable.add(new double[] { 776.71, 774.21, 771.15, 769.4, 763.56, 757.76, 752.06, 746.48, 741.05, - 735.76, 730.61, 725.75, 721.04, 716.44, 711.95, 707.56, 703.51 }); - PTravelTimeTable.add(new double[] { 781.4, 778.89, 775.83, 774.08, 768.24, 762.43, 756.72, 751.15, 745.71, - 740.41, 735.25, 730.39, 725.68, 721.08, 716.58, 712.19, 708.13 }); - PTravelTimeTable.add(new double[] { 786.05, 783.55, 780.49, 778.73, 772.89, 767.07, 761.37, 755.78, 750.35, - 745.05, 739.88, 735.01, 730.3, 725.69, 721.19, 716.8, 712.74 }); - PTravelTimeTable.add(new double[] { 790.69, 788.18, 785.12, 783.37, 777.52, 771.7, 765.99, 760.4, 754.96, - 749.66, 744.49, 739.62, 734.9, 730.3, 725.79, 721.39, 717.33 }); - PTravelTimeTable.add(new double[] { 795.31, 792.8, 789.74, 787.98, 782.13, 776.31, 770.6, 765.01, 759.57, - 754.26, 749.09, 744.22, 739.49, 734.88, 730.37, 725.96, 721.89 }); - PTravelTimeTable.add(new double[] { 799.91, 797.4, 794.34, 792.58, 786.73, 780.91, 775.19, 769.6, 764.15, - 758.84, 753.67, 748.79, 744.06, 739.44, 734.93, 730.51, 726.44 }); - PTravelTimeTable.add(new double[] { 804.5, 801.99, 798.93, 797.17, 791.31, 785.48, 779.76, 774.17, 768.72, - 763.4, 758.22, 753.34, 748.6, 743.98, 739.46, 735.04, 730.95 }); - PTravelTimeTable.add(new double[] { 809.06, 806.55, 803.49, 801.73, 795.87, 790.04, 784.31, 778.71, 773.26, - 767.94, 762.75, 757.86, 753.12, 748.49, 743.96, 739.53, 735.44 }); - PTravelTimeTable.add(new double[] { 813.6, 811.09, 808.02, 806.26, 800.4, 794.56, 788.83, 783.23, 777.77, - 772.44, 767.25, 762.35, 757.61, 752.97, 748.43, 744.0, 739.9 }); - PTravelTimeTable.add(new double[] { 818.11, 815.6, 812.53, 810.77, 804.9, 799.06, 793.33, 787.72, 782.25, - 776.92, 771.72, 766.82, 762.07, 757.42, 752.88, 748.44, 744.34 }); - PTravelTimeTable.add(new double[] { 822.59, 820.08, 817.01, 815.25, 809.37, 803.53, 797.79, 792.17, 786.7, - 781.37, 776.17, 771.26, 766.51, 761.87, 757.33, 752.89, 748.79 }); - PTravelTimeTable.add(new double[] { 827.04, 824.53, 821.46, 819.7, 813.82, 807.97, 802.23, 796.62, 791.15, - 785.81, 780.61, 775.71, 770.96, 766.31, 761.77, 757.33, 753.23 }); - PTravelTimeTable.add(new double[] { 831.49, 828.97, 825.91, 824.14, 818.26, 812.42, 806.68, 801.07, 795.59, - 790.26, 785.06, 780.15, 775.4, 770.76, 766.22, 761.78, 757.68 }); - PTravelTimeTable.add(new double[] { 835.93, 833.42, 830.35, 828.59, 822.71, 816.86, 811.13, 805.51, 800.04, - 794.71, 789.51, 784.6, 779.85, 775.2, 770.66, 766.23, 762.13 }); - PTravelTimeTable.add(new double[] { 840.38, 837.86, 834.8, 833.03, 827.16, 821.31, 815.57, 809.96, 804.48, - 799.15, 793.95, 789.05, 784.29, 779.65, 775.11, 770.67, 766.57 }); - PTravelTimeTable.add(new double[] { 844.83, 842.31, 839.24, 837.48, 831.6, 825.76, 820.02, 814.4, 808.93, 803.6, - 798.4, 793.49, 788.74, 784.09, 779.55, 775.12, 771.02 }); - PTravelTimeTable.add(new double[] { 849.27, 846.76, 843.69, 841.92, 836.05, 830.2, 824.46, 818.85, 813.38, - 808.04, 802.84, 797.94, 793.18, 788.54, 784.0, 779.56, 775.46 }); - PTravelTimeTable.add(new double[] { 853.72, 851.2, 848.14, 846.37, 840.49, 834.65, 828.91, 823.29, 817.82, - 812.49, 807.29, 802.38, 797.63, 792.99, 788.45, 784.01, 779.91 }); - PTravelTimeTable.add(new double[] { 858.16, 855.65, 852.58, 850.82, 844.94, 839.09, 833.35, 827.74, 822.27, - 816.93, 811.73, 806.83, 802.08, 797.43, 792.89, 788.45, 784.35 }); - PTravelTimeTable.add(new double[] { 862.61, 860.09, 857.03, 855.26, 849.38, 843.54, 837.8, 832.18, 826.71, - 821.38, 816.18, 811.27, 806.52, 801.88, 797.34, 792.9, 788.8 }); - PTravelTimeTable.add(new double[] { 867.05, 864.54, 861.47, 859.71, 853.83, 847.98, 842.24, 836.63, 831.16, - 825.83, 820.63, 815.72, 810.97, 806.32, 801.78, 797.35, 793.25 }); - PTravelTimeTable.add(new double[] { 871.5, 868.98, 865.92, 864.15, 858.28, 852.43, 846.69, 841.08, 835.6, - 830.27, 825.07, 820.17, 815.41, 810.77, 806.23, 801.79, 797.69 }); - PTravelTimeTable.add(new double[] { 875.95, 873.43, 870.36, 868.6, 862.72, 856.87, 851.14, 845.52, 840.05, - 834.72, 829.52, 824.61, 819.86, 815.21, 810.67, 806.24, 802.14 }); - PTravelTimeTable.add(new double[] { 880.39, 877.88, 874.81, 873.04, 867.17, 861.32, 855.58, 849.97, 844.5, - 839.16, 833.96, 829.06, 824.3, 819.66, 815.12, 810.68, 806.58 }); - PTravelTimeTable.add(new double[] { 884.84, 882.32, 879.25, 877.49, 871.61, 865.77, 860.03, 854.41, 848.94, - 843.61, 838.41, 833.5, 828.75, 824.11, 819.57, 815.13, 811.03 }); - PTravelTimeTable.add(new double[] { 889.28, 886.77, 883.7, 881.94, 876.06, 870.21, 864.47, 858.86, 853.39, - 848.05, 842.85, 837.95, 833.2, 828.55, 824.01, 819.57, 815.47 }); - PTravelTimeTable.add(new double[] { 893.73, 891.21, 888.15, 886.38, 880.5, 874.66, 868.92, 863.3, 857.83, 852.5, - 847.3, 842.39, 837.64, 833.0, 828.46, 824.02, 819.92 }); - PTravelTimeTable.add(new double[] { 898.17, 895.66, 892.59, 890.83, 884.95, 879.1, 873.36, 867.75, 862.28, - 856.94, 851.75, 846.84, 842.09, 837.44, 832.9, 828.47, 824.36 }); - PTravelTimeTable.add(new double[] { 902.62, 900.1, 897.04, 895.27, 889.4, 883.55, 877.81, 872.2, 866.72, 861.39, - 856.19, 851.29, 846.53, 841.89, 837.35, 832.91, 828.81 }); - PTravelTimeTable.add(new double[] { 907.06, 904.55, 901.48, 899.72, 893.84, 887.99, 882.26, 876.64, 871.17, - 865.84, 860.64, 855.73, 850.98, 846.33, 841.79, 837.36, 833.26 }); - PTravelTimeTable.add(new double[] { 911.51, 908.99, 905.93, 904.16, 898.29, 892.44, 886.7, 881.09, 875.62, - 870.28, 865.08, 860.18, 855.42, 850.78, 846.24, 841.8, 837.7 }); - PTravelTimeTable.add(new double[] { 915.96, 913.44, 910.37, 908.61, 902.73, 896.89, 891.15, 885.53, 880.06, - 874.73, 869.53, 864.62, 859.87, 855.22, 850.68, 846.25, 842.15 }); - PTravelTimeTable.add(new double[] { 920.4, 917.89, 914.82, 913.05, 907.18, 901.33, 895.59, 889.98, 884.51, - 879.17, 873.97, 869.07, 864.32, 859.67, 855.13, 850.69, 846.59 }); - PTravelTimeTable.add(new double[] { 924.85, 922.33, 919.27, 917.5, 911.62, 905.78, 900.04, 894.42, 888.95, - 883.62, 878.42, 873.51, 868.76, 864.12, 859.58, 855.14, 851.04 }); - PTravelTimeTable.add(new double[] { 929.29, 926.78, 923.71, 921.95, 916.07, 910.22, 904.48, 898.87, 893.4, - 888.06, 882.86, 877.96, 873.21, 868.56, 864.02, 859.59, 855.48 }); - PTravelTimeTable.add(new double[] { 933.74, 931.22, 928.16, 926.39, 920.52, 914.67, 908.93, 903.32, 897.84, - 892.51, 887.31, 882.41, 877.65, 873.01, 868.47, 864.03, 859.93 }); - PTravelTimeTable.add(new double[] { 938.18, 935.67, 932.6, 930.84, 924.96, 919.11, 913.38, 907.76, 902.29, - 896.96, 891.76, 886.85, 882.1, 877.45, 872.91, 868.48, 864.38 }); - - STravelTimeTable.add(new double[] { 0.0, 4.34, 9.68, 13.02, 24.16, 35.27, 46.35, 57.34, 68.13, 78.72, 89.12, - 98.99000000000001, 108.57, 117.96000000000001, 127.17, 136.2, 144.64 }); - STravelTimeTable.add(new double[] { 32.14, 31.98, 30.38, 30.74, 35.74, 43.61, 52.78, 62.52, 72.42, 82.37, - 92.27000000000001, 101.74000000000001, 111.0, 120.13, 129.12, 137.97, 146.25 }); - STravelTimeTable.add(new double[] { 60.75, 57.98, 55.06, 55.14, 57.38, 62.05, 68.43, 75.89, 83.96000000000001, - 92.41, 101.11, 109.53999999999999, 117.94, 126.35, 134.74, 143.07, 150.88 }); - STravelTimeTable.add(new double[] { 85.43, 82.66, 79.73, 79.72, 80.94, 83.92, 88.39, 93.95, 100.21000000000001, - 107.03, 114.28999999999999, 121.4, 128.65, 136.07999999999998, 143.6, 151.17000000000002, 158.28 }); - STravelTimeTable.add(new double[] { 110.1, 107.33, 104.4, 104.33, 104.99000000000001, 107.0, 110.24000000000001, - 114.4, 119.19, 124.57, 130.46, 136.21, 142.24, 148.56, 155.1, 161.8, 168.05 }); - STravelTimeTable.add(new double[] { 134.76, 131.99, 129.06, 128.93, 129.22, 130.59, 132.98, 136.12, 139.74, - 143.91, 148.59, 153.06, 157.89, 163.12, 168.65, 174.42000000000002, 179.76 }); - STravelTimeTable.add(new double[] { 159.41, 156.63, 153.7, 153.52, 153.53, 154.43, 156.2, 158.54, 161.21, - 164.36, 168.01, 171.27, 174.99, 179.18, 183.74, 188.6, 192.98 }); - STravelTimeTable.add(new double[] { 184.04, 181.26, 178.32, 178.1, 177.87, 178.4, 179.69, 181.38, 183.24, - 185.52, 188.26, 190.37, 193.06, 196.3, 199.96, 203.96, 207.36 }); - STravelTimeTable.add(new double[] { 208.65, 205.87, 202.92000000000002, 202.66, 202.21, 202.44, 203.34, 204.45, - 205.6, 207.12, 209.06, 210.0, 211.78, 214.16, 216.98, 220.17000000000002, 222.57999999999998 }); - STravelTimeTable.add(new double[] { 233.24, 230.45, 227.5, 227.19, 226.56, 226.52, 227.07999999999998, - 227.67000000000002, 228.15, 228.97, 230.2, 229.89, 230.9, 232.5, 234.56, 237.01, 238.37 }); - STravelTimeTable.add(new double[] { 257.8, 255.01, 252.05, 251.7, 250.88, 250.61, 250.89, 250.93, 250.79, - 250.97, 250.84, 249.89, 250.23, 251.14, 252.52, 254.28, 254.5 }); - STravelTimeTable.add(new double[] { 282.33, 279.53, 276.56, 276.17, 275.19, 274.71, 274.72, 274.15999999999997, - 273.43, 273.02, 271.23, 269.88, 269.65, 269.96, 270.71, 271.52, 270.78 }); - STravelTimeTable.add(new double[] { 306.83, 304.02, 301.04, 300.61, 299.47, 298.79, 298.57, 297.3, 295.99, - 295.05, 291.53, 289.82, 289.09000000000003, 288.84000000000003, 289.03, 288.19, 287.11 }); - STravelTimeTable.add(new double[] { 331.29, 328.47, 325.48, 325.01, 323.72, 322.86, 322.36, 320.27, 318.45, - 315.58, 311.72, 309.67, 308.47, 307.73, 307.39, 304.79, 303.4 }); - STravelTimeTable.add(new double[] { 355.7, 352.89, 349.88, 349.37, 347.93, 346.9, 345.65999999999997, 343.04, - 340.3, 335.79, 331.77, 329.38, 327.76, 326.56, 325.01, 321.32, 319.64 }); - STravelTimeTable.add(new double[] { 380.08, 377.25, 374.24, 373.69, 372.11, 370.91, 368.66, 365.58, 360.52, - 355.87, 351.65999999999997, 348.94, 346.90999999999997, 345.29, 341.55, 337.75, 335.81 }); - STravelTimeTable.add(new double[] { 404.40999999999997, 401.57, 398.55, 397.96, 396.25, 394.82, 391.36, 385.83, - 380.59, 375.77, 371.36, 368.31, 365.91, 362.32, 357.99, 354.06, 351.89 }); - STravelTimeTable.add(new double[] { 428.69, 425.85, 422.81, 422.18, 420.34, 417.65999999999997, 411.68, 405.87, - 400.48, 395.47, 390.84, 387.48, 383.6, 378.75, 374.3, 370.26, 367.81 }); - STravelTimeTable.add(new double[] { 452.92, 450.07, 447.02, 446.36, 444.01, 437.81, 431.68, 425.73, 420.15, - 414.95, 410.09000000000003, 405.33, 400.0, 395.05, 390.5, 386.32, 383.62 }); - STravelTimeTable.add(new double[] { 477.1, 474.24, 471.17, 470.47, 464.07, 457.75, 451.47, 445.35, 439.59, - 434.18, 427.64, 421.7, 416.28, 411.24, 406.56, 402.18, 399.4 }); - STravelTimeTable.add(new double[] { 499.77, 496.38, 492.44, 490.47, 483.94, 477.46, 471.02, 464.72, 458.06, - 450.85, 443.96, 437.94, 432.43, 427.26, 422.4, 417.98, 415.15 }); - STravelTimeTable.add(new double[] { 519.66, 516.24, 512.27, 510.25, 503.57, 496.92, 489.91, 481.99, 474.39, - 467.11, 460.15, 454.05, 448.39, 443.08, 438.19, 433.74, 430.88 }); - STravelTimeTable.add(new double[] { 539.3, 535.85, 531.83, 529.77, 522.56, 514.36, 506.22, 498.25, 490.59, - 483.24, 476.18, 469.93, 464.2, 458.87, 453.95, 449.48, 446.58 }); - STravelTimeTable.add(new double[] { 557.88, 554.15, 549.7, 547.19, 538.86, 530.6, 522.41, 514.37, 506.62, - 499.15, 492.0, 485.73, 479.97, 474.62, 469.69, 465.19, 462.24 }); - STravelTimeTable.add(new double[] { 574.14, 570.4, 565.93, 563.4, 555.02, 546.7, 538.41, 530.26, 522.44, 514.95, - 507.78, 501.49, 495.72, 490.35, 485.4, 480.88, 477.87 }); - STravelTimeTable.add(new double[] { 590.26, 586.5, 582.01, 579.46, 570.97, 562.56, 554.22, 546.06, 538.22, - 530.71, 523.54, 517.23, 511.44, 506.05, 501.08, 496.52, 493.44 }); - STravelTimeTable.add(new double[] { 606.14, 602.37, 597.85, 595.29, 586.78, 578.35, 570.0, 561.82, 553.97, - 546.46, 539.27, 532.94, 527.13, 521.72, 516.71, 512.11, 508.96 }); - STravelTimeTable.add(new double[] { 621.93, 618.16, 613.64, 611.07, 602.55, 594.11, 585.75, 577.56, 569.7, - 562.17, 554.97, 548.62, 542.79, 537.35, 532.29, 527.64, 524.41 }); - STravelTimeTable.add(new double[] { 637.69, 633.92, 629.4, 626.82, 618.29, 609.84, 601.47, 593.27, 585.4, - 577.85, 570.63, 564.26, 558.4, 552.91, 547.81, 543.11, 539.79 }); - STravelTimeTable.add(new double[] { 653.43, 649.65, 645.13, 642.55, 634.01, 625.55, 617.17, 608.95, 601.06, - 593.5, 586.25, 579.85, 573.95, 568.42, 563.27, 558.5, 555.1 }); - STravelTimeTable.add(new double[] { 669.14, 665.36, 660.83, 658.25, 649.7, 641.22, 632.82, 624.59, 616.68, - 609.09, 601.81, 595.37, 589.43, 583.85, 578.65, 573.82, 570.33 }); - STravelTimeTable.add(new double[] { 684.81, 681.03, 676.5, 673.91, 665.34, 656.85, 648.43, 640.18, 632.24, - 624.61, 617.3, 610.83, 604.84, 599.21, 593.95, 589.07, 585.49 }); - STravelTimeTable.add(new double[] { 700.45, 696.66, 692.12, 689.53, 680.94, 672.42, 663.98, 655.7, 647.73, - 640.07, 632.72, 626.21, 620.17, 614.5, 609.18, 604.24, 600.58 }); - STravelTimeTable.add(new double[] { 716.02, 712.23, 707.69, 705.09, 696.47, 687.93, 679.46, 671.14, 663.14, - 655.45, 648.07, 641.51, 635.43, 629.7, 624.33, 619.33, 615.58 }); - STravelTimeTable.add(new double[] { 731.53, 727.73, 723.18, 720.58, 711.93, 703.36, 694.86, 686.52, 678.48, - 670.76, 663.34, 656.73, 650.6, 644.83, 639.4, 634.33, 630.5 }); - STravelTimeTable.add(new double[] { 746.97, 743.16, 738.6, 735.99, 727.32, 718.72, 710.18, 701.81, 693.74, - 685.98, 678.52, 671.88, 665.7, 659.87, 654.38, 649.25, 645.33 }); - STravelTimeTable.add(new double[] { 762.32, 758.51, 753.95, 751.32, 742.62, 733.99, 725.43, 717.02, 708.92, - 701.12, 693.63, 686.93, 680.7, 674.82, 669.28, 664.08, 660.08 }); - STravelTimeTable.add(new double[] { 777.6, 773.79, 769.21, 766.58, 757.85, 749.19, 740.59, 732.15, 724.01, - 716.18, 708.64, 701.9, 695.62, 689.68, 684.09, 678.83, 674.74 }); - STravelTimeTable.add(new double[] { 792.8, 788.98, 784.39, 781.75, 772.99, 764.3, 755.67, 747.19, 739.02, - 731.14, 723.57, 716.78, 710.45, 704.46, 698.8, 693.48, 689.31 }); - STravelTimeTable.add(new double[] { 807.91, 804.08, 799.48, 796.83, 788.04, 779.32, 770.65, 762.14, 753.93, - 746.02, 738.4, 731.57, 725.19, 719.14, 713.42, 708.04, 703.79 }); - STravelTimeTable.add(new double[] { 822.93, 819.09, 814.49, 811.83, 803.0, 794.24, 785.55, 777.0, 768.75, 760.8, - 753.14, 746.26, 739.83, 733.73, 727.95, 722.51, 718.18 }); - STravelTimeTable.add(new double[] { 837.86, 834.01, 829.4, 826.73, 817.87, 809.08, 800.35, 791.77, 783.48, - 775.49, 767.79, 760.86, 754.38, 748.22, 742.39, 736.88, 732.47 }); - STravelTimeTable.add(new double[] { 852.69, 848.84, 844.21, 841.53, 832.64, 823.82, 815.05, 806.44, 798.11, - 790.08, 782.34, 775.36, 768.83, 762.62, 756.73, 751.15, 746.66 }); - STravelTimeTable.add(new double[] { 867.42, 863.57, 858.93, 856.24, 847.32, 838.46, 829.66, 821.01, 812.65, - 804.57, 796.79, 789.77, 783.18, 776.92, 770.97, 765.33, 760.76 }); - STravelTimeTable.add(new double[] { 882.06, 878.2, 873.56, 870.86, 861.9, 853.0, 844.17, 835.48, 827.08, 818.97, - 811.14, 804.07, 797.43, 791.11, 785.1, 779.41, 774.76 }); - STravelTimeTable.add(new double[] { 896.6, 892.73, 888.08, 885.37, 876.38, 867.45, 858.58, 849.85, 841.41, - 833.26, 825.39, 818.27, 811.58, 805.21, 799.14, 793.38, 788.66 }); - STravelTimeTable.add(new double[] { 911.04, 907.16, 902.5, 899.78, 890.75, 881.79, 872.88, 864.12, 855.64, - 847.45, 839.54, 832.37, 825.63, 819.2, 813.08, 807.26, 802.46 }); - STravelTimeTable.add(new double[] { 925.37, 921.49, 916.81, 914.08, 905.02, 896.02, 887.08, 878.28, 869.77, - 861.53, 853.58, 846.37, 839.58, 833.09, 826.91, 821.03, 816.16 }); - STravelTimeTable.add(new double[] { 939.6, 935.71, 931.02, 928.28, 919.19, 910.15, 901.18, 892.34, 883.79, - 875.51, 867.52, 860.26, 853.42, 846.88, 840.64, 834.7, 829.76 }); - STravelTimeTable.add(new double[] { 953.72, 949.82, 945.13, 942.38, 933.25, 924.18, 915.17, 906.29, 897.7, - 889.39, 881.35, 874.04, 867.15, 860.56, 854.27, 848.27, 843.27 }); - STravelTimeTable.add(new double[] { 967.73, 963.83, 959.12, 956.36, 947.2, 938.09, 929.05, 920.14, 911.51, - 903.15, 895.07, 887.72, 880.78, 874.14, 867.8, 861.75, 856.67 }); - STravelTimeTable.add(new double[] { 981.64, 977.73, 973.01, 970.24, 961.04, 951.9, 942.82, 933.87, 925.2, - 916.81, 908.69, 901.3, 894.31, 887.62, 881.23, 875.12, 869.98 }); - STravelTimeTable.add(new double[] { 995.43, 991.52, 986.79, 984.01, 974.77, 965.6, 956.48, 947.5, 938.8, 930.37, - 922.21, 914.77, 907.74, 901.0, 894.55, 888.39, 883.18 }); - STravelTimeTable.add(new double[] { 1009.12, 1005.19, 1000.45, 997.66, 988.4, 979.19, 970.04, 961.03, 952.29, - 943.82, 935.63, 928.14, 921.06, 914.28, 907.77, 901.56, 896.28 }); - STravelTimeTable.add(new double[] { 1022.7, 1018.77, 1014.02, 1011.22, 1001.92, 992.68, 983.5, 974.45, 965.68, - 957.17, 948.93, 941.41, 934.28, 927.44, 920.89, 914.62, 909.27 }); - STravelTimeTable.add(new double[] { 1036.17, 1032.23, 1027.47, 1024.67, 1015.34, 1006.07, 996.85, 987.77, - 978.96, 970.41, 962.13, 954.56, 947.39, 940.5, 933.9, 927.57, 922.17 }); - STravelTimeTable.add(new double[] { 1049.54, 1045.59, 1040.82, 1038.0, 1028.65, 1019.34, 1010.09, 1000.97, - 992.12, 983.54, 975.23, 967.61, 960.39, 953.46, 946.8, 940.42, 934.96 }); - STravelTimeTable.add(new double[] { 1062.79, 1058.84, 1054.06, 1051.23, 1041.84, 1032.5, 1023.22, 1014.07, - 1005.18, 996.56, 988.21, 980.55, 973.29, 966.31, 959.6, 953.17, 947.64 }); - STravelTimeTable.add(new double[] { 1075.94, 1071.98, 1067.19, 1064.35, 1054.93, 1045.56, 1036.24, 1027.05, - 1018.13, 1009.48, 1001.08, 993.39, 986.08, 979.05, 972.3, 965.81, 960.22 }); - STravelTimeTable.add(new double[] { 1088.97, 1085.0, 1080.2, 1077.35, 1067.9, 1058.5, 1049.15, 1039.93, 1030.97, - 1022.28, 1013.85, 1006.11, 998.76, 991.68, 984.88, 978.35, 972.69 }); - STravelTimeTable.add(new double[] { 1101.89, 1097.91, 1093.11, 1090.25, 1080.76, 1071.33, 1061.95, 1052.69, - 1043.71, 1034.98, 1026.51, 1018.73, 1011.33, 1004.21, 997.36, 990.77, 985.06 }); - STravelTimeTable.add(new double[] { 1114.7, 1110.72, 1105.9, 1103.03, 1093.52, 1084.05, 1074.64, 1065.35, - 1056.33, 1047.57, 1039.06, 1031.24, 1023.8, 1016.63, 1009.73, 1003.09, 997.33 }); - STravelTimeTable.add(new double[] { 1127.39, 1123.41, 1118.58, 1115.71, 1106.16, 1096.66, 1087.21, 1077.89, - 1068.84, 1060.04, 1051.5, 1043.63, 1036.15, 1028.94, 1021.99, 1015.31, 1009.48 }); - STravelTimeTable.add(new double[] { 1139.98, 1135.99, 1131.15, 1128.26, 1118.68, 1109.16, 1099.68, 1090.33, - 1081.24, 1072.4, 1063.82, 1055.92, 1048.39, 1041.14, 1034.15, 1027.41, 1021.53 }); - STravelTimeTable.add(new double[] { 1152.45, 1148.45, 1143.6, 1140.71, 1131.1, 1121.54, 1112.03, 1102.65, - 1093.52, 1084.66, 1076.04, 1068.1, 1060.53, 1053.23, 1046.19, 1039.41, 1033.48 }); - STravelTimeTable.add(new double[] { 1164.8, 1160.8, 1155.94, 1153.04, 1143.4, 1133.81, 1124.27, 1114.86, 1105.7, - 1096.8, 1088.15, 1080.17, 1072.56, 1065.22, 1058.13, 1051.3, 1045.31 }); - STravelTimeTable.add(new double[] { 1177.05, 1173.04, 1168.17, 1165.26, 1155.59, 1145.97, 1136.4, 1126.95, - 1117.77, 1108.83, 1100.14, 1092.12, 1084.47, 1077.09, 1069.96, 1063.09, 1057.04 }); - STravelTimeTable.add(new double[] { 1189.18, 1185.16, 1180.28, 1177.36, 1167.67, 1158.02, 1148.42, 1138.94, - 1129.72, 1120.75, 1112.03, 1103.97, 1096.28, 1088.85, 1081.68, 1074.76, 1068.66 }); - STravelTimeTable.add(new double[] { 1201.19, 1197.17, 1192.29, 1189.36, 1179.63, 1169.95, 1160.32, 1150.81, - 1141.56, 1132.56, 1123.8, 1115.71, 1107.98, 1100.51, 1093.29, 1086.33, 1080.18 }); - STravelTimeTable.add(new double[] { 1213.09, 1209.07, 1204.17, 1201.23, 1191.48, 1181.77, 1172.11, 1162.57, - 1153.29, 1144.25, 1135.46, 1127.33, 1119.56, 1112.05, 1104.79, 1097.78, 1091.58 }); - STravelTimeTable.add(new double[] { 1224.88, 1220.85, 1215.94, 1213.0, 1203.21, 1193.48, 1183.79, 1174.22, - 1164.9, 1155.84, 1147.01, 1138.84, 1131.03, 1123.48, 1116.18, 1109.12, 1102.86 }); - STravelTimeTable.add(new double[] { 1236.55, 1232.51, 1227.6, 1224.65, 1214.83, 1205.07, 1195.35, 1185.75, - 1176.4, 1167.3, 1158.44, 1150.24, 1142.39, 1134.79, 1127.45, 1120.35, 1114.04 }); - STravelTimeTable.add(new double[] { 1248.11, 1244.06, 1239.14, 1236.18, 1226.34, 1216.54, 1206.8, 1197.17, - 1187.79, 1178.65, 1169.76, 1161.52, 1153.63, 1145.99, 1138.61, 1131.46, 1125.11 }); - STravelTimeTable.add(new double[] { 1259.55, 1255.49, 1250.57, 1247.59, 1237.73, 1227.9, 1218.12, 1208.46, - 1199.05, 1189.89, 1180.96, 1172.68, 1164.76, 1157.08, 1149.65, 1142.46, 1136.06 }); - STravelTimeTable.add(new double[] { 1270.87, 1266.81, 1261.87, 1258.89, 1248.99, 1239.14, 1229.33, 1219.64, - 1210.2, 1201.01, 1192.05, 1183.73, 1175.77, 1168.06, 1160.59, 1153.35, 1146.9 }); - STravelTimeTable.add(new double[] { 1282.07, 1278.0, 1273.05, 1270.07, 1260.14, 1250.26, 1240.42, 1230.71, - 1221.24, 1212.01, 1203.02, 1194.67, 1186.67, 1178.92, 1171.4, 1164.13, 1157.63 }); - STravelTimeTable.add(new double[] { 1293.15, 1289.08, 1284.12, 1281.12, 1271.17, 1261.27, 1251.4, 1241.66, - 1232.16, 1222.9, 1213.87, 1205.49, 1197.45, 1189.66, 1182.11, 1174.79, 1168.25 }); - STravelTimeTable.add(new double[] { 1304.11, 1300.03, 1295.07, 1292.07, 1282.09, 1272.15, 1262.26, 1252.49, - 1242.96, 1233.67, 1224.61, 1216.19, 1208.11, 1200.29, 1192.7, 1185.34, 1178.75 }); - STravelTimeTable.add(new double[] { 1314.95, 1310.87, 1305.9, 1302.89, 1292.88, 1282.92, 1273.0, 1263.2, - 1253.64, 1244.32, 1235.23, 1226.78, 1218.67, 1210.8, 1203.17, 1195.78, 1189.14 }); - STravelTimeTable.add(new double[] { 1325.68, 1321.59, 1316.61, 1313.59, 1303.55, 1293.57, 1283.62, 1273.79, - 1264.2, 1254.85, 1245.74, 1237.25, 1229.1, 1221.2, 1213.53, 1206.09, 1199.41 }); - STravelTimeTable.add(new double[] { 1336.28, 1332.19, 1327.2, 1324.17, 1314.11, 1304.1, 1294.12, 1284.27, - 1274.65, 1265.27, 1256.12, 1247.6, 1239.42, 1231.48, 1223.77, 1216.29, 1209.56 }); - STravelTimeTable.add(new double[] { 1346.77, 1342.67, 1337.67, 1334.63, 1324.55, 1314.51, 1304.51, 1294.62, - 1284.98, 1275.57, 1266.39, 1257.83, 1249.61, 1241.63, 1233.88, 1226.37, 1219.59 }); - STravelTimeTable.add(new double[] { 1357.13, 1353.02, 1348.02, 1344.97, 1334.86, 1324.79, 1314.76, 1304.85, - 1295.18, 1285.74, 1276.52, 1267.93, 1259.68, 1251.67, 1243.88, 1236.32, 1229.5 }); - STravelTimeTable.add(new double[] { 1367.36, 1363.25, 1358.23, 1355.19, 1345.05, 1334.95, 1324.9, 1314.96, - 1305.25, 1295.78, 1286.54, 1277.92, 1269.63, 1261.58, 1253.76, 1246.16, 1239.3 }); - STravelTimeTable.add(new double[] { 1377.47, 1373.35, 1368.33, 1365.27, 1355.11, 1344.99, 1334.91, 1324.94, - 1315.21, 1305.71, 1296.44, 1287.78, 1279.46, 1271.37, 1263.52, 1255.88, 1248.97 }); - STravelTimeTable.add(new double[] { 1387.45, 1383.33, 1378.3, 1375.23, 1365.05, 1354.9, 1344.79, 1334.8, - 1325.04, 1315.51, 1306.21, 1297.52, 1289.16, 1281.04, 1273.15, 1265.47, 1258.52 }); - STravelTimeTable.add(new double[] { 1397.31, 1393.18, 1388.14, 1385.07, 1374.86, 1364.69, 1354.55, 1344.53, - 1334.74, 1325.19, 1315.86, 1307.13, 1298.74, 1290.59, 1282.65, 1274.94, 1267.94 }); - STravelTimeTable.add(new double[] { 1407.04, 1402.91, 1397.86, 1394.78, 1384.54, 1374.34, 1364.18, 1354.14, - 1344.32, 1334.74, 1325.37, 1316.62, 1308.19, 1300.0, 1292.03, 1284.28, 1277.24 }); - STravelTimeTable.add(new double[] { 1416.64, 1412.5, 1407.45, 1404.36, 1394.1, 1383.87, 1373.69, 1363.61, - 1353.77, 1344.15, 1334.76, 1325.97, 1317.52, 1309.29, 1301.28, 1293.49, 1286.41 }); - STravelTimeTable.add(new double[] { 1426.11, 1421.97, 1416.9, 1413.81, 1403.52, 1393.27, 1383.05, 1372.95, - 1363.08, 1353.44, 1344.02, 1335.2, 1326.71, 1318.44, 1310.4, 1302.57, 1295.45 }); - STravelTimeTable.add(new double[] { 1435.44, 1431.29, 1426.22, 1423.12, 1412.8, 1402.53, 1392.29, 1382.16, - 1372.26, 1362.59, 1353.14, 1344.29, 1335.77, 1327.47, 1319.39, 1311.53, 1304.36 }); - STravelTimeTable.add(new double[] { 1444.64, 1440.49, 1435.41, 1432.3, 1421.96, 1411.66, 1401.39, 1391.24, - 1381.31, 1371.62, 1362.14, 1353.25, 1344.7, 1336.37, 1328.25, 1320.35, 1313.16 }); - STravelTimeTable.add(new double[] { 1453.71, 1449.55, 1444.46, 1441.34, 1430.98, 1420.65, 1410.36, 1400.18, - 1390.23, 1380.51, 1371.0, 1362.09, 1353.5, 1345.14, 1337.01, 1329.09, 1321.88 }); - STravelTimeTable.add(new double[] { 1462.63, 1458.47, 1453.37, 1450.25, 1439.86, 1429.51, 1419.2, 1409.0, - 1399.02, 1389.28, 1379.75, 1370.83, 1362.23, 1353.86, 1345.71, 1337.78, 1330.56 }); - STravelTimeTable.add(new double[] { 1471.43, 1467.26, 1462.16, 1459.03, 1448.63, 1438.27, 1427.94, 1417.73, - 1407.74, 1397.99, 1388.46, 1379.52, 1370.91, 1362.53, 1354.37, 1346.42, 1339.18 }); - STravelTimeTable.add(new double[] { 1480.16, 1475.98, 1470.88, 1467.75, 1457.34, 1446.97, 1436.63, 1426.41, - 1416.42, 1406.65, 1397.11, 1388.16, 1379.54, 1371.14, 1362.96, 1355.0, 1347.73 }); - STravelTimeTable.add(new double[] { 1488.83, 1484.66, 1479.55, 1476.42, 1466.0, 1455.62, 1445.27, 1435.04, - 1425.04, 1415.26, 1405.7, 1396.73, 1388.09, 1379.68, 1371.48, 1363.49, 1356.2 }); - STravelTimeTable.add(new double[] { 1497.46, 1493.28, 1488.17, 1485.03, 1474.6, 1464.2, 1453.85, 1443.6, - 1433.58, 1423.79, 1414.21, 1405.23, 1396.57, 1388.14, 1379.92, 1371.91, 1364.6 }); - STravelTimeTable.add(new double[] { 1506.0, 1501.82, 1496.71, 1493.57, 1483.12, 1472.71, 1462.34, 1452.08, - 1442.05, 1432.24, 1422.65, 1413.65, 1404.97, 1396.51, 1388.28, 1380.26, 1372.94 }); - STravelTimeTable.add(new double[] { 1514.47, 1510.29, 1505.17, 1502.02, 1491.56, 1481.14, 1470.76, 1460.48, - 1450.43, 1440.61, 1431.01, 1422.0, 1413.31, 1404.86, 1396.62, 1388.6, 1381.28 }); - STravelTimeTable.add(new double[] { 1522.86, 1518.67, 1513.55, 1510.4, 1499.93, 1489.5, 1479.1, 1468.82, - 1458.77, 1448.95, 1439.35, 1430.34, 1421.65, 1413.2, 1404.96, 1396.94, 1389.62 }); - STravelTimeTable.add(new double[] { 1531.2, 1527.01, 1521.89, 1518.74, 1508.27, 1497.84, 1487.45, 1477.16, - 1467.11, 1457.29, 1447.69, 1438.68, 1429.99, 1421.54, 1413.3, 1405.28, 1397.96 }); - STravelTimeTable.add(new double[] { 1539.54, 1535.35, 1530.23, 1527.08, 1516.61, 1506.18, 1495.79, 1485.51, - 1475.45, 1465.63, 1456.03, 1447.02, 1438.33, 1429.88, 1421.64, 1413.62, 1406.3 }); - STravelTimeTable.add(new double[] { 1547.88, 1543.69, 1538.57, 1535.42, 1524.95, 1514.52, 1504.13, 1493.85, - 1483.8, 1473.97, 1464.37, 1455.36, 1446.67, 1438.22, 1429.98, 1421.96, 1414.64 }); - STravelTimeTable.add(new double[] { 1556.22, 1552.03, 1546.91, 1543.76, 1533.29, 1522.86, 1512.47, 1502.19, - 1492.14, 1482.31, 1472.71, 1463.7, 1455.01, 1446.56, 1438.32, 1430.31, 1422.98 }); - STravelTimeTable.add(new double[] { 1564.56, 1560.37, 1555.25, 1552.1, 1541.63, 1531.2, 1520.81, 1510.53, - 1500.48, 1490.65, 1481.05, 1472.04, 1463.36, 1454.9, 1446.66, 1438.65, 1431.32 }); - STravelTimeTable.add(new double[] { 1572.9, 1568.71, 1563.59, 1560.44, 1549.97, 1539.54, 1529.15, 1518.87, - 1508.82, 1498.99, 1489.39, 1480.38, 1471.7, 1463.24, 1455.0, 1446.99, 1439.66 }); - STravelTimeTable.add(new double[] { 1581.24, 1577.05, 1571.93, 1568.78, 1558.31, 1547.88, 1537.49, 1527.21, - 1517.16, 1507.33, 1497.73, 1488.72, 1480.04, 1471.58, 1463.35, 1455.33, 1448.01 }); - STravelTimeTable.add(new double[] { 1589.58, 1585.39, 1580.27, 1577.12, 1566.65, 1556.22, 1545.83, 1535.55, - 1525.5, 1515.67, 1506.07, 1497.06, 1488.38, 1479.92, 1471.69, 1463.67, 1456.35 }); - STravelTimeTable.add(new double[] { 1597.92, 1593.74, 1588.61, 1585.46, 1574.99, 1564.56, 1554.17, 1543.89, - 1533.84, 1524.02, 1514.41, 1505.4, 1496.72, 1488.26, 1480.03, 1472.01, 1464.69 }); - STravelTimeTable.add(new double[] { 1606.26, 1602.08, 1596.95, 1593.8, 1583.33, 1572.9, 1562.51, 1552.23, - 1542.18, 1532.36, 1522.75, 1513.74, 1505.06, 1496.6, 1488.37, 1480.35, 1473.03 }); - STravelTimeTable.add(new double[] { 1614.6, 1610.42, 1605.29, 1602.14, 1591.67, 1581.24, 1570.85, 1560.57, - 1550.52, 1540.7, 1531.09, 1522.08, 1513.4, 1504.94, 1496.71, 1488.69, 1481.37 }); - STravelTimeTable.add(new double[] { 1622.94, 1618.76, 1613.63, 1610.48, 1600.01, 1589.58, 1579.19, 1568.91, - 1558.86, 1549.04, 1539.43, 1530.42, 1521.74, 1513.28, 1505.05, 1497.03, 1489.71 }); - STravelTimeTable.add(new double[] { 1631.28, 1627.1, 1621.97, 1618.82, 1608.35, 1597.92, 1587.53, 1577.25, - 1567.2, 1557.38, 1547.77, 1538.76, 1530.08, 1521.62, 1513.39, 1505.37, 1498.05 }); - STravelTimeTable.add(new double[] { 1639.62, 1635.44, 1630.31, 1627.16, 1616.69, 1606.26, 1595.87, 1585.59, - 1575.54, 1565.72, 1556.11, 1547.1, 1538.42, 1529.96, 1521.73, 1513.71, 1506.39 }); - STravelTimeTable.add(new double[] { 1647.97, 1643.78, 1638.65, 1635.51, 1625.03, 1614.61, 1604.21, 1593.93, - 1583.88, 1574.06, 1564.46, 1555.45, 1546.76, 1538.31, 1530.07, 1522.05, 1514.73 }); - STravelTimeTable.add(new double[] { 1656.31, 1652.12, 1647.0, 1643.85, 1633.38, 1622.95, 1612.55, 1602.27, - 1592.22, 1582.4, 1572.8, 1563.79, 1555.1, 1546.65, 1538.41, 1530.39, 1523.07 }); - STravelTimeTable.add(new double[] { 1664.65, 1660.46, 1655.34, 1652.19, 1641.72, 1631.29, 1620.89, 1610.61, - 1600.56, 1590.74, 1581.14, 1572.13, 1563.44, 1554.99, 1546.75, 1538.73, 1531.41 }); - STravelTimeTable.add(new double[] { 1672.99, 1668.8, 1663.68, 1660.53, 1650.06, 1639.63, 1629.24, 1618.95, - 1608.9, 1599.08, 1589.48, 1580.47, 1571.78, 1563.33, 1555.09, 1547.07, 1539.75 }); - STravelTimeTable.add(new double[] { 1681.33, 1677.14, 1672.02, 1668.87, 1658.4, 1647.97, 1637.58, 1627.3, - 1617.25, 1607.42, 1597.82, 1588.81, 1580.12, 1571.67, 1563.43, 1555.41, 1548.09 }); - STravelTimeTable.add(new double[] { 1689.67, 1685.48, 1680.36, 1677.21, 1666.74, 1656.31, 1645.92, 1635.64, - 1625.59, 1615.76, 1606.16, 1597.15, 1588.46, 1580.01, 1571.77, 1563.75, 1556.43 }); - STravelTimeTable.add(new double[] { 1698.01, 1693.82, 1688.7, 1685.55, 1675.08, 1664.65, 1654.26, 1643.98, - 1633.93, 1624.1, 1614.5, 1605.49, 1596.8, 1588.35, 1580.11, 1572.1, 1564.77 }); - STravelTimeTable.add(new double[] { 1706.35, 1702.16, 1697.04, 1693.89, 1683.42, 1672.99, 1662.6, 1652.32, - 1642.27, 1632.44, 1622.84, 1613.83, 1605.15, 1596.69, 1588.45, 1580.44, 1573.11 }); - STravelTimeTable.add(new double[] { 1714.69, 1710.5, 1705.38, 1702.23, 1691.76, 1681.33, 1670.94, 1660.66, - 1650.61, 1640.78, 1631.18, 1622.17, 1613.49, 1605.03, 1596.8, 1588.78, 1581.45 }); - STravelTimeTable.add(new double[] { 1723.03, 1718.84, 1713.72, 1710.57, 1700.1, 1689.67, 1679.28, 1669.0, - 1658.95, 1649.12, 1639.52, 1630.51, 1621.83, 1613.37, 1605.14, 1597.12, 1589.8 }); - STravelTimeTable.add(new double[] { 1731.37, 1727.18, 1722.06, 1718.91, 1708.44, 1698.01, 1687.62, 1677.34, - 1667.29, 1657.46, 1647.86, 1638.85, 1630.17, 1621.71, 1613.48, 1605.46, 1598.14 }); - - PKPTravelTimeTable.add(new double[] { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }); - PKPTravelTimeTable.add(new double[] { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }); - PKPTravelTimeTable.add(new double[] { 0.0, 0.0, 0.0, 0.0, 0.0, 1085.33, 1063.71, 1044.28 }); - PKPTravelTimeTable.add(new double[] { 1124.84, 1119.11, 1117.27, 1111.11, 1098.95, 1087.25, 1065.64, 1046.21 }); - PKPTravelTimeTable.add(new double[] { 1126.76, 1121.04, 1119.19, 1113.04, 1100.88, 1089.17, 1067.56, 1048.13 }); - PKPTravelTimeTable.add(new double[] { 1128.68, 1122.96, 1121.11, 1114.96, 1102.8, 1091.1, 1069.49, 1050.05 }); - PKPTravelTimeTable.add(new double[] { 1130.61, 1124.88, 1123.04, 1116.88, 1104.72, 1093.02, 1071.41, 1051.98 }); - PKPTravelTimeTable.add(new double[] { 1132.53, 1126.81, 1124.96, 1118.81, 1106.65, 1094.94, 1073.33, 1053.9 }); - PKPTravelTimeTable.add(new double[] { 1134.45, 1128.73, 1126.88, 1120.73, 1108.57, 1096.86, 1075.25, 1055.82 }); - PKPTravelTimeTable.add(new double[] { 1136.37, 1130.65, 1128.8, 1122.65, 1110.49, 1098.79, 1077.17, 1057.74 }); - PKPTravelTimeTable.add(new double[] { 1138.29, 1132.57, 1130.72, 1124.57, 1112.41, 1100.7, 1079.09, 1059.66 }); - PKPTravelTimeTable.add(new double[] { 1140.21, 1134.49, 1132.64, 1126.49, 1114.33, 1102.62, 1081.01, 1061.57 }); - PKPTravelTimeTable.add(new double[] { 1142.13, 1136.4, 1134.56, 1128.4, 1116.24, 1104.54, 1082.92, 1063.49 }); - PKPTravelTimeTable.add(new double[] { 1144.04, 1138.32, 1136.47, 1130.32, 1118.15, 1106.45, 1084.83, 1065.4 }); - PKPTravelTimeTable.add(new double[] { 1145.95, 1140.23, 1138.38, 1132.23, 1120.06, 1108.36, 1086.74, 1067.3 }); - PKPTravelTimeTable.add(new double[] { 1147.86, 1142.14, 1140.29, 1134.13, 1121.97, 1110.27, 1088.65, 1069.21 }); - PKPTravelTimeTable.add(new double[] { 1149.76, 1144.04, 1142.19, 1136.04, 1123.88, 1112.17, 1090.55, 1071.11 }); - PKPTravelTimeTable.add(new double[] { 1151.67, 1145.94, 1144.09, 1137.94, 1125.78, 1114.07, 1092.45, 1073.0 }); - PKPTravelTimeTable.add(new double[] { 1153.56, 1147.84, 1145.99, 1139.83, 1127.67, 1115.96, 1094.34, 1074.9 }); - PKPTravelTimeTable.add(new double[] { 1155.45, 1149.73, 1147.88, 1141.72, 1129.56, 1117.85, 1096.23, 1076.78 }); - PKPTravelTimeTable.add(new double[] { 1157.34, 1151.61, 1149.77, 1143.61, 1131.45, 1119.74, 1098.11, 1078.66 }); - PKPTravelTimeTable.add(new double[] { 1159.22, 1153.49, 1151.65, 1145.49, 1133.32, 1121.61, 1099.98, 1080.53 }); - PKPTravelTimeTable.add(new double[] { 1161.09, 1155.37, 1153.52, 1147.36, 1135.19, 1123.48, 1101.85, 1082.4 }); - PKPTravelTimeTable.add(new double[] { 1162.96, 1157.23, 1155.38, 1149.22, 1137.06, 1125.34, 1103.71, 1084.25 }); - PKPTravelTimeTable.add(new double[] { 1164.81, 1159.08, 1157.24, 1151.08, 1138.91, 1127.19, 1105.56, 1086.09 }); - PKPTravelTimeTable.add(new double[] { 1166.66, 1160.93, 1159.08, 1152.92, 1140.75, 1129.04, 1107.4, 1087.93 }); - PKPTravelTimeTable.add(new double[] { 1168.49, 1162.76, 1160.91, 1154.76, 1142.58, 1130.87, 1109.22, 1089.75 }); - PKPTravelTimeTable.add(new double[] { 1170.31, 1164.59, 1162.74, 1156.58, 1144.4, 1132.68, 1111.04, 1091.56 }); - PKPTravelTimeTable.add(new double[] { 1172.12, 1166.39, 1164.54, 1158.38, 1146.21, 1134.49, 1112.83, 1093.35 }); - PKPTravelTimeTable.add(new double[] { 1173.92, 1168.19, 1166.34, 1160.18, 1148.0, 1136.27, 1114.62, 1095.13 }); - PKPTravelTimeTable.add(new double[] { 1175.69, 1169.96, 1168.11, 1161.95, 1149.77, 1138.04, 1116.38, 1096.88 }); - PKPTravelTimeTable.add(new double[] { 1177.45, 1171.72, 1169.87, 1163.71, 1151.52, 1139.79, 1118.13, 1098.62 }); - PKPTravelTimeTable.add(new double[] { 1179.19, 1173.46, 1171.61, 1165.44, 1153.26, 1141.52, 1119.85, 1100.34 }); - PKPTravelTimeTable.add(new double[] { 1180.9, 1175.17, 1173.32, 1167.15, 1154.96, 1143.23, 1121.55, 1102.02 }); - PKPTravelTimeTable.add(new double[] { 1182.59, 1176.86, 1175.01, 1168.84, 1156.65, 1144.91, 1123.22, 1103.69 }); - PKPTravelTimeTable.add(new double[] { 1184.25, 1178.52, 1176.67, 1170.5, 1158.3, 1146.56, 1124.86, 1105.32 }); - PKPTravelTimeTable.add(new double[] { 1185.88, 1180.15, 1178.3, 1172.12, 1159.93, 1148.18, 1126.47, 1106.92 }); - PKPTravelTimeTable.add(new double[] { 1187.48, 1181.74, 1179.89, 1173.72, 1161.51, 1149.76, 1128.05, 1108.48 }); - PKPTravelTimeTable.add(new double[] { 1189.04, 1183.3, 1181.45, 1175.27, 1163.06, 1151.31, 1129.58, 1110.0 }); - PKPTravelTimeTable.add(new double[] { 1190.55, 1184.82, 1182.96, 1176.78, 1164.57, 1152.81, 1131.07, 1111.49 }); - PKPTravelTimeTable.add(new double[] { 1192.03, 1186.29, 1184.44, 1178.26, 1166.04, 1154.28, 1132.53, 1112.93 }); - PKPTravelTimeTable.add(new double[] { 1193.47, 1187.73, 1185.87, 1179.69, 1167.47, 1155.7, 1133.94, 1114.33 }); - PKPTravelTimeTable.add(new double[] { 1194.86, 1189.12, 1187.26, 1181.08, 1168.85, 1157.08, 1135.31, 1115.69 }); - PKPTravelTimeTable.add(new double[] { 1196.2, 1190.46, 1188.61, 1182.42, 1170.19, 1158.42, 1136.63, 1117.0 }); - PKPTravelTimeTable.add(new double[] { 1197.5, 1191.76, 1189.9, 1183.72, 1171.48, 1159.7, 1137.91, 1118.26 }); - PKPTravelTimeTable.add(new double[] { 1198.75, 1193.01, 1191.15, 1184.96, 1172.73, 1160.94, 1139.14, 1119.48 }); - PKPTravelTimeTable.add(new double[] { 1199.96, 1194.21, 1192.35, 1186.16, 1173.92, 1162.13, 1140.32, 1120.64 }); - PKPTravelTimeTable.add(new double[] { 1201.11, 1195.36, 1193.5, 1187.31, 1175.06, 1163.27, 1141.45, 1121.76 }); - PKPTravelTimeTable.add(new double[] { 1202.2, 1196.46, 1194.6, 1188.4, 1176.15, 1164.35, 1142.52, 1122.83 }); - PKPTravelTimeTable.add(new double[] { 1203.25, 1197.5, 1195.64, 1189.44, 1177.19, 1165.39, 1143.55, 1123.84 }); - PKPTravelTimeTable.add(new double[] { 1204.24, 1198.49, 1196.63, 1190.43, 1178.18, 1166.37, 1144.52, 1124.81 }); - PKPTravelTimeTable.add(new double[] { 1205.18, 1199.43, 1197.57, 1191.37, 1179.11, 1167.3, 1145.44, 1125.72 }); - PKPTravelTimeTable.add(new double[] { 1206.06, 1200.31, 1198.45, 1192.25, 1179.99, 1168.17, 1146.31, 1126.57 }); - PKPTravelTimeTable.add(new double[] { 1206.89, 1201.14, 1199.28, 1193.07, 1180.81, 1168.99, 1147.12, 1127.37 }); - PKPTravelTimeTable.add(new double[] { 1207.66, 1201.91, 1200.05, 1193.84, 1181.58, 1169.75, 1147.88, 1128.12 }); - PKPTravelTimeTable.add(new double[] { 1208.38, 1202.63, 1200.77, 1194.56, 1182.29, 1170.46, 1148.58, 1128.82 }); - PKPTravelTimeTable.add(new double[] { 1209.04, 1203.29, 1201.43, 1195.22, 1182.94, 1171.12, 1149.22, 1129.46 }); - PKPTravelTimeTable.add(new double[] { 1209.64, 1203.89, 1202.03, 1195.82, 1183.54, 1171.71, 1149.81, 1130.04 }); - PKPTravelTimeTable.add(new double[] { 1210.19, 1204.44, 1202.57, 1196.36, 1184.08, 1172.25, 1150.35, 1130.57 }); - PKPTravelTimeTable.add(new double[] { 1210.68, 1204.93, 1203.06, 1196.85, 1184.57, 1172.74, 1150.83, 1131.04 }); - PKPTravelTimeTable.add(new double[] { 1211.11, 1205.36, 1203.49, 1197.28, 1185.0, 1173.16, 1151.25, 1131.46 }); - PKPTravelTimeTable.add(new double[] { 1211.49, 1205.73, 1203.87, 1197.65, 1185.37, 1173.53, 1151.62, 1131.83 }); - PKPTravelTimeTable.add(new double[] { 1211.81, 1206.05, 1204.19, 1197.97, 1185.69, 1173.85, 1151.93, 1132.13 }); - PKPTravelTimeTable.add(new double[] { 1212.07, 1206.31, 1204.44, 1198.23, 1185.94, 1174.1, 1152.18, 1132.38 }); - PKPTravelTimeTable.add(new double[] { 1212.27, 1206.51, 1204.65, 1198.43, 1186.14, 1174.3, 1152.38, 1132.58 }); - PKPTravelTimeTable.add(new double[] { 1212.41, 1206.66, 1204.79, 1198.58, 1186.29, 1174.45, 1152.52, 1132.72 }); - PKPTravelTimeTable.add(new double[] { 1212.5, 1206.74, 1204.88, 1198.66, 1186.37, 1174.53, 1152.61, 1132.8 }); - PKPTravelTimeTable.add(new double[] { 1212.53, 1206.77, 1204.91, 1198.69, 1186.4, 1174.56, 1152.64, 1132.83 }); - - dataCheck(); - } - - private static void dataCheck() { - int errors = 0; - for (int i = 0; i < PTravelTimeTable.size() - 1; i++) { - for (int j = 0; j < DEPTHS.length; j++) { - if (PTravelTimeTable.get(i + 1)[j] < PTravelTimeTable.get(i)[j]) { - errors++; - } - } - } - for (int i = 0; i < STravelTimeTable.size() - 1; i++) { - for (int j = 0; j < DEPTHS.length; j++) { - if (STravelTimeTable.get(i + 1)[j] < STravelTimeTable.get(i)[j]) { - errors++; - } - } - } - System.out.println("[TravelTimeTable] found " + errors + " errors."); - } - - @SuppressWarnings("unused") - public static double getPKPWaveTravelTime(double depth, double angle) { - double val = _getPKPWaveTravelTime(depth, angle); - if (val == 0) { - return Double.POSITIVE_INFINITY; - } else { - return val; - } - } - - private static double _getPKPWaveTravelTime(double depth, double angle) { - depth = Math.max(0, Math.min(DEPTHS_PKP[DEPTHS_PKP.length - 1], depth)); - int d = 0; - double q = 0; - for (int i = 0; i < DEPTHS_PKP.length - 1; i++) { - if (DEPTHS_PKP[i + 1] >= depth) { - d = i; - double max = DEPTHS_PKP[i + 1]; - double min = DEPTHS_PKP[i]; - q = (depth - min) / (max - min); - break; - } - } - - if (angle <= PKP_START) { - return Double.POSITIVE_INFINITY; - } else if (angle - PKP_START >= PKPTravelTimeTable.size() - 1) { - return PKPTravelTimeTable.get(PKPTravelTimeTable.size() - 1)[d] * (1 - q) - + PKPTravelTimeTable.get(PKPTravelTimeTable.size() - 1)[d + 1] * (q); - } - - int low = (int) (angle - PKP_START); - int high = low + 1; - - double valHigh = PKPTravelTimeTable.get(high)[d] * (1 - q) + PKPTravelTimeTable.get(high)[d + 1] * (q); - double valLow = PKPTravelTimeTable.get(low)[d] * (1 - q) + PKPTravelTimeTable.get(low)[d + 1] * (q); - - if (PKPTravelTimeTable.get(high)[d] <= 0 || PKPTravelTimeTable.get(high)[d + 1] <= 0 - || PKPTravelTimeTable.get(low)[d] <= 0 || PKPTravelTimeTable.get(low)[d + 1] <= 0) { - return Double.POSITIVE_INFINITY; - } - - double r = angle % 1.0; - return (1 - r) * valLow + r * valHigh; - } - - /** - * - * @param depth depth in km - * @param angle angle - * @return P wave travel time in seconds - */ - public static double getPWaveTravelTime(double depth, double angle) { - depth = Math.max(0, Math.min(DEPTHS[DEPTHS.length - 1], depth)); - int d = 0; - double q = 0; - for (int i = 0; i < DEPTHS.length - 1; i++) { - if (DEPTHS[i + 1] >= depth) { - d = i; - double max = DEPTHS[i + 1]; - double min = DEPTHS[i]; - q = (depth - min) / (max - min); - break; - } - } - - if (angle <= 0) { - return PTravelTimeTable.get(0)[d] * (1 - q) + PTravelTimeTable.get(0)[d + 1] * (q); - } else if (angle >= PTravelTimeTable.size() - 1) { - return PTravelTimeTable.get(PTravelTimeTable.size() - 1)[d] * (1 - q) - + PTravelTimeTable.get(PTravelTimeTable.size() - 1)[d + 1] * (q); - } - - int low = (int) (angle); - int high = low + 1; - - double valHigh = PTravelTimeTable.get(high)[d] * (1 - q) + PTravelTimeTable.get(high)[d + 1] * (q); - double valLow = PTravelTimeTable.get(low)[d] * (1 - q) + PTravelTimeTable.get(low)[d + 1] * (q); - - double r = angle % 1.0; - return (1 - r) * valLow + r * valHigh; - } - - public static double getSWaveTravelTime(double depth, double angle) { - depth = Math.max(0, Math.min(DEPTHS[DEPTHS.length - 1], depth)); - int d = 0; - double q = 0; - for (int i = 0; i < DEPTHS.length - 1; i++) { - if (DEPTHS[i + 1] >= depth) { - d = i; - double max = DEPTHS[i + 1]; - double min = DEPTHS[i]; - q = (depth - min) / (max - min); - break; - } - } - if (angle <= 0) { - return STravelTimeTable.get(0)[d] * (1 - q) + STravelTimeTable.get(0)[d + 1] * (q); - } else if (angle >= STravelTimeTable.size() - 1) { - return STravelTimeTable.get(STravelTimeTable.size() - 1)[d] * (1 - q) - + STravelTimeTable.get(STravelTimeTable.size() - 1)[d + 1] * (q); - } - int low = (int) (angle); - int high = low + 1; - - double valHigh = STravelTimeTable.get(high)[d] * (1 - q) + STravelTimeTable.get(high)[d + 1] * (q); - double valLow = STravelTimeTable.get(low)[d] * (1 - q) + STravelTimeTable.get(low)[d + 1] * (q); - - double r = angle % 1.0; - return (1 - r) * valLow + r * valHigh; - } - - /** - * -1 WHEN IT HASN'T OCCURRED YET +INFINITY WHEN IT ALREADY PASSED THE EARTH - **/ - - @SuppressWarnings("unused") - public static double getPKPWaveTravelAngle(double depth, double ageSec) { - depth = Math.max(0, Math.min(DEPTHS_PKP[DEPTHS_PKP.length - 1], depth)); - int d = 0; - double q = 0; - for (int i = 0; i < DEPTHS_PKP.length - 1; i++) { - if (DEPTHS_PKP[i + 1] >= depth) { - d = i; - double max = DEPTHS_PKP[i + 1]; - double min = DEPTHS_PKP[i]; - q = (depth - min) / (max - min); - break; - } - } - - // System.out.println("lower: " + DEPTHS[d] + ", upper: " + DEPTHS[d + 1] + ", " - // + q); - - // System.out.println("val0=" + val0+", "+d+", "+q); - // its still underground - - double valN = PKPTravelTimeTable.get(PKPTravelTimeTable.size() - 1)[d] * (1 - q) - + PKPTravelTimeTable.get(PKPTravelTimeTable.size() - 1)[d + 1] * (q); - // System.out.println("valN=" + valN); - // exceeded 125° - if (ageSec > valN) { - return Double.POSITIVE_INFINITY; - } - - int lo = 0; - int hi = PKPTravelTimeTable.size() - 1; - - while (lo <= hi) { - int mid = (hi + lo) / 2; - double val = PKPTravelTimeTable.get(mid)[d] * (1 - q) + PKPTravelTimeTable.get(mid)[d + 1] * (q); - if (ageSec < val) { - hi = mid - 1; - } else if (ageSec >= val) { - lo = mid + 1; - } - } - - double valLo = PKPTravelTimeTable.get(lo)[d] * (1 - q) + PKPTravelTimeTable.get(lo)[d + 1] * (q); - double valHi = PKPTravelTimeTable.get(hi)[d] * (1 - q) + PKPTravelTimeTable.get(hi)[d + 1] * (q); - if (PKPTravelTimeTable.get(hi)[d] <= 0 || PKPTravelTimeTable.get(hi)[d + 1] <= 0 - || PKPTravelTimeTable.get(lo)[d] <= 0 || PKPTravelTimeTable.get(lo)[d + 1] <= 0) { - return Double.POSITIVE_INFINITY; - } - double r = (ageSec - valHi) / (valLo - valHi); - return hi + r + PKP_START; - } - - public static double getPWaveTravelAngle(double depth, double ageSec, boolean outOfBounds) { - depth = Math.max(0, Math.min(DEPTHS[DEPTHS.length - 1], depth)); - int d = 0; - double q = 0; - for (int i = 0; i < DEPTHS.length - 1; i++) { - if (DEPTHS[i + 1] >= depth) { - d = i; - double max = DEPTHS[i + 1]; - double min = DEPTHS[i]; - q = (depth - min) / (max - min); - break; - } - } - - double val0 = PTravelTimeTable.get(0)[d] * (1 - q) + PTravelTimeTable.get(0)[d + 1] * (q); - // System.out.println("val0=" + val0+", "+d+", "+q); - // its still underground - if (ageSec <= val0) { - return outOfBounds ? -1 : 0.0; - } - - double valN = PTravelTimeTable.get(PTravelTimeTable.size() - 1)[d] * (1 - q) - + PTravelTimeTable.get(PTravelTimeTable.size() - 1)[d + 1] * (q); - // System.out.println("valN=" + valN); - // exceeded 125° - if (ageSec > valN) { - return outOfBounds ? -1 : PTravelTimeTable.size() - 1; - } - - int lo = 0; - int hi = PTravelTimeTable.size() - 1; - - while (lo <= hi) { - int mid = (hi + lo) / 2; - double val = PTravelTimeTable.get(mid)[d] * (1 - q) + PTravelTimeTable.get(mid)[d + 1] * (q); - if (ageSec < val) { - hi = mid - 1; - } else if (ageSec >= val) { - lo = mid + 1; - } - } - - double valLo = PTravelTimeTable.get(lo)[d] * (1 - q) + PTravelTimeTable.get(lo)[d + 1] * (q); - double valHi = PTravelTimeTable.get(hi)[d] * (1 - q) + PTravelTimeTable.get(hi)[d + 1] * (q); - double r = (ageSec - valHi) / (valLo - valHi); - return hi + r; - } - - public static double getSWaveTravelAngle(double depth, double ageSec, boolean outOfBounds) { - depth = Math.max(0, Math.min(DEPTHS[DEPTHS.length - 1], depth)); - int d = 0; - double q = 0; - for (int i = 0; i < DEPTHS.length - 1; i++) { - if (DEPTHS[i + 1] >= depth) { - d = i; - double max = DEPTHS[i + 1]; - double min = DEPTHS[i]; - q = (depth - min) / (max - min); - break; - } - } - - double val0 = STravelTimeTable.get(0)[d] * (1 - q) + STravelTimeTable.get(0)[d + 1] * (q); - // It's still underground - if (ageSec <= val0) { - return outOfBounds ? -1 : 0.0; - } - - double valN = STravelTimeTable.get(STravelTimeTable.size() - 1)[d] * (1 - q) - + STravelTimeTable.get(STravelTimeTable.size() - 1)[d + 1] * (q); - if (ageSec > valN) { - return outOfBounds ? -1 : PTravelTimeTable.size() - 1; - } - - int lo = 0; - int hi = STravelTimeTable.size() - 1; - - while (lo <= hi) { - int mid = (hi + lo) / 2; - double val = STravelTimeTable.get(mid)[d] * (1 - q) + STravelTimeTable.get(mid)[d + 1] * (q); - if (ageSec < val) { - hi = mid - 1; - } else if (ageSec >= val) { - lo = mid + 1; - } - } - - double valLo = STravelTimeTable.get(lo)[d] * (1 - q) + STravelTimeTable.get(lo)[d + 1] * (q); - double valHi = STravelTimeTable.get(hi)[d] * (1 - q) + STravelTimeTable.get(hi)[d + 1] * (q); - double r = (ageSec - valHi) / (valLo - valHi); - return hi + r; - } - - @SuppressWarnings("unused") - public static double getEpicenterDistance(double depth, double deltaT) { - double max = 20000; - int runs = 20; - double current = 0; - - double min = getSWaveTravelTime(depth, 0) - getPWaveTravelTime(depth, 0); - if (deltaT < min) { - return -1; - } - - for (int i = 0; i < runs; i++) { - double v = current + (max / Math.pow(2, i + 1)); // distance - double dt = Math.abs(getSWaveTravelTime(depth, TauPTravelTimeCalculator.toAngle(v)) - getPWaveTravelTime(depth, TauPTravelTimeCalculator.toAngle(v))); - if (dt < deltaT) { - current += (max / Math.pow(2, i + 1)); - } - } - return current; - } - -} diff --git a/GlobalQuakeCore/src/test/java/globalquake/core/regions/RegionUpdaterTest.java b/GlobalQuakeCore/src/test/java/globalquake/core/regions/RegionUpdaterTest.java deleted file mode 100644 index c2ef72c..0000000 --- a/GlobalQuakeCore/src/test/java/globalquake/core/regions/RegionUpdaterTest.java +++ /dev/null @@ -1,74 +0,0 @@ -package globalquake.core.regions; - -import globalquake.core.earthquake.ArchivedQuake; -import globalquake.core.earthquake.data.Cluster; -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.regions.RegionUpdater; -import globalquake.core.regions.Regional; -import org.junit.Test; - -import static org.junit.Assert.*; - -public class RegionUpdaterTest { - - @Test - public void testNonnull(){ - RegionalInst inst = new RegionalInst(50, 17); - new RegionUpdater(inst); - assertEquals(RegionUpdater.DEFAULT_REGION, inst.getRegion()); - } - - - @Test - public void testBasicUpdate(){ - RegionalInst inst = new RegionalInst(50, 17); - RegionUpdater updater = new RegionUpdater(inst); - updater.updateRegion(); - assertNotEquals(inst.getRegion(), RegionUpdater.DEFAULT_REGION); - } - - @Test - public void testEarthquakeRegion(){ - Earthquake earthquake = new Earthquake(new Cluster(0)); - assertNotNull(earthquake.getRegion()); - } - - @Test - public void testArchivedEarthquakeRegion(){ - ArchivedQuake archivedQuake = new ArchivedQuake(50,17,0,0,0); - assertNotNull(archivedQuake.getRegion()); - } - - static class RegionalInst implements Regional { - - private final double lat; - private final double lon; - private String region; - - public RegionalInst(double lat, double lon){ - this.lat = lat; - this.lon = lon; - } - - @Override - public String getRegion() { - return region; - } - - @Override - public void setRegion(String newRegion) { - this.region = newRegion; - } - - @Override - public double getLat() { - return lat; - } - - @Override - public double getLon() { - return lon; - } - } - -} \ No newline at end of file diff --git a/GlobalQuakeCore/src/test/java/globalquake/core/regions/RegionsTest.java b/GlobalQuakeCore/src/test/java/globalquake/core/regions/RegionsTest.java deleted file mode 100644 index 15efbfc..0000000 --- a/GlobalQuakeCore/src/test/java/globalquake/core/regions/RegionsTest.java +++ /dev/null @@ -1,19 +0,0 @@ -package globalquake.core.regions; - -import org.junit.Test; - -import java.io.IOException; - -import static org.junit.Assert.assertEquals; - -public class RegionsTest { - - @Test - public void basicRegionsTest() throws IOException { - Regions.init(); - - assertEquals("Czech Republic", Regions.getRegion(50, 17)); - assertEquals("Poland", Regions.getRegion(51.8, 18.3)); - } - -} \ No newline at end of file diff --git a/GlobalQuakeCore/src/test/java/globalquake/core/station/AbstractStationTest.java b/GlobalQuakeCore/src/test/java/globalquake/core/station/AbstractStationTest.java deleted file mode 100644 index 3556f3c..0000000 --- a/GlobalQuakeCore/src/test/java/globalquake/core/station/AbstractStationTest.java +++ /dev/null @@ -1,61 +0,0 @@ -package globalquake.core.station; - -import org.junit.Test; - -import static org.junit.Assert.assertEquals; - -public class AbstractStationTest { - - @Test - public void testIntervals(){ - AbstractStation abstractStation = new GlobalStation("", "", "", "",5,5,5,5,null); - StationInterval int1 = new StationInterval(10, 50, StationState.INACTIVE); - StationInterval int2 = new StationInterval(50, 70, StationState.ACTIVE); - StationInterval int3 = new StationInterval(100, 150, StationState.ACTIVE); - abstractStation.getIntervals().add(int1); - abstractStation.getIntervals().add(int2); - abstractStation.getIntervals().add(int3); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(0)); - assertEquals(StationState.INACTIVE, abstractStation.getStateAt(10)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(50)); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(80)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(120)); - } - - @Test - public void testReport(){ - AbstractStation abstractStation = new GlobalStation("", "", "", "",5,5,5,5,null); - abstractStation.reportState(StationState.ACTIVE, 0); - abstractStation.reportState(StationState.ACTIVE, 10); - - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(-10)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(0)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(5)); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(10)); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(20)); - - abstractStation.reportState(StationState.ACTIVE, 50); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(5)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(10)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(20)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(49)); - - - abstractStation.reportState(StationState.ACTIVE, 60 + AbstractStation.INTERVAL_MAX_GAP); - abstractStation.reportState(StationState.ACTIVE, 70 + AbstractStation.INTERVAL_MAX_GAP); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(50)); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(60)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(60 + AbstractStation.INTERVAL_MAX_GAP)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(65 + AbstractStation.INTERVAL_MAX_GAP)); - - abstractStation.reportState(StationState.ACTIVE, 51 + AbstractStation.INTERVAL_STORAGE_TIME); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(-10)); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(0)); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(5)); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(10)); - assertEquals(StationState.UNKNOWN, abstractStation.getStateAt(20)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(60 + AbstractStation.INTERVAL_MAX_GAP)); - assertEquals(StationState.ACTIVE, abstractStation.getStateAt(65 + AbstractStation.INTERVAL_MAX_GAP)); - } - -} \ No newline at end of file diff --git a/GlobalQuakeServerUI/pom.xml b/GlobalQuakeServerUI/pom.xml deleted file mode 100644 index eaa4f37..0000000 --- a/GlobalQuakeServerUI/pom.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - 4.0.0 - - xspanger.GlobalQuake - GlobalQuakeServer - 0.1.0 - ../pom.xml - - - GlobalQuakeServerUI - 0.1.0 - - - 17 - 17 - UTF-8 - - - - - edu.sc.seis - seisFile - 2.0.6 - - - - de.grundid.opendatalab - geojson-jackson - 1.14 - - - - edu.sc.seis - seedCodec - 1.1.1 - - - - edu.sc.seis - TauP - 2.6.1 - - - - - uk.me.berndporr - iirj - 1.3 - - - - com.github.wendykierp - JTransforms - 3.1 - - - - - org.tinylog - tinylog-api - 2.5.0 - - - org.tinylog - tinylog-impl - 2.5.0 - - - - com.uber - h3 - 4.1.1 - - - xspanger.GlobalQuake - GlobalQuakeAPI - 0.1.0 - compile - - - xspanger.GlobalQuake - GlobalQuakeCore - 0.10.0 - compile - - - - - \ No newline at end of file diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/events/GlobalQuakeServerEvent.java b/GlobalQuakeServerUI/src/main/java/gqserver/events/GlobalQuakeServerEvent.java deleted file mode 100644 index 31b9115..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/events/GlobalQuakeServerEvent.java +++ /dev/null @@ -1,5 +0,0 @@ -package gqserver.events; - -public interface GlobalQuakeServerEvent { - void run(GlobalQuakeServerEventListener eventListener); -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/events/GlobalQuakeServerEventHandler.java b/GlobalQuakeServerUI/src/main/java/gqserver/events/GlobalQuakeServerEventHandler.java deleted file mode 100644 index b1bd4db..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/events/GlobalQuakeServerEventHandler.java +++ /dev/null @@ -1,48 +0,0 @@ -package gqserver.events; - -import org.tinylog.Logger; - -import java.util.Queue; -import java.util.concurrent.ConcurrentLinkedQueue; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; - -public class GlobalQuakeServerEventHandler { - - private Queue eventListeners; - - private ExecutorService executor; - - public GlobalQuakeServerEventHandler runHandler() { - eventListeners = new ConcurrentLinkedQueue<>(); - executor = Executors.newSingleThreadExecutor(); - return this; - } - - @SuppressWarnings("unused") - public void stopHandler(){ - executor.shutdownNow(); - } - - public void registerEventListener(GlobalQuakeServerEventListener eventListener){ - eventListeners.add(eventListener); - } - - @SuppressWarnings("unused") - public boolean removeEventListener(GlobalQuakeServerEventListener eventListener){ - return eventListeners.remove(eventListener); - } - - public void fireEvent(GlobalQuakeServerEvent event){ - executor.submit(() -> { - for (GlobalQuakeServerEventListener eventListener : eventListeners) { - try { - event.run(eventListener); - } catch (Exception e) { - Logger.error(e); - } - } - }); - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/events/GlobalQuakeServerEventListener.java b/GlobalQuakeServerUI/src/main/java/gqserver/events/GlobalQuakeServerEventListener.java deleted file mode 100644 index 32d765d..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/events/GlobalQuakeServerEventListener.java +++ /dev/null @@ -1,16 +0,0 @@ -package gqserver.events; - -import gqserver.events.specific.ClientJoinedEvent; -import gqserver.events.specific.ClientLeftEvent; -import gqserver.events.specific.ServerStatusChangedEvent; - -public class GlobalQuakeServerEventListener { - public void onClientJoin(ClientJoinedEvent event) { - } - - public void onClientLeave(ClientLeftEvent event) { - } - - public void onServerStatusChanged(ServerStatusChangedEvent serverStatusChangedEvent) { - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/events/specific/ClientJoinedEvent.java b/GlobalQuakeServerUI/src/main/java/gqserver/events/specific/ClientJoinedEvent.java deleted file mode 100644 index 58e7ff2..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/events/specific/ClientJoinedEvent.java +++ /dev/null @@ -1,13 +0,0 @@ -package gqserver.events.specific; - -import gqserver.api.ServerClient; -import gqserver.events.GlobalQuakeServerEvent; -import gqserver.events.GlobalQuakeServerEventListener; - -public record ClientJoinedEvent(ServerClient client) implements GlobalQuakeServerEvent { - - @Override - public void run(GlobalQuakeServerEventListener eventListener) { - eventListener.onClientJoin(this); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/events/specific/ClientLeftEvent.java b/GlobalQuakeServerUI/src/main/java/gqserver/events/specific/ClientLeftEvent.java deleted file mode 100644 index a9f53db..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/events/specific/ClientLeftEvent.java +++ /dev/null @@ -1,13 +0,0 @@ -package gqserver.events.specific; - -import gqserver.api.ServerClient; -import gqserver.events.GlobalQuakeServerEvent; -import gqserver.events.GlobalQuakeServerEventListener; - -public record ClientLeftEvent(ServerClient client) implements GlobalQuakeServerEvent { - - @Override - public void run(GlobalQuakeServerEventListener eventListener) { - eventListener.onClientLeave(this); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/events/specific/ServerStatusChangedEvent.java b/GlobalQuakeServerUI/src/main/java/gqserver/events/specific/ServerStatusChangedEvent.java deleted file mode 100644 index af12c68..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/events/specific/ServerStatusChangedEvent.java +++ /dev/null @@ -1,13 +0,0 @@ -package gqserver.events.specific; - -import gqserver.events.GlobalQuakeServerEvent; -import gqserver.events.GlobalQuakeServerEventListener; -import gqserver.server.SocketStatus; - -public record ServerStatusChangedEvent(SocketStatus status) implements GlobalQuakeServerEvent { - - @Override - public void run(GlobalQuakeServerEventListener eventListener) { - eventListener.onServerStatusChanged(this); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/main/Main.java b/GlobalQuakeServerUI/src/main/java/gqserver/main/Main.java deleted file mode 100644 index 5195a16..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/main/Main.java +++ /dev/null @@ -1,113 +0,0 @@ -package gqserver.main; - -import globalquake.core.Settings; -import globalquake.core.database.StationDatabaseManager; -import globalquake.core.database.StationSource; -import globalquake.core.exception.ApplicationErrorHandler; -import globalquake.core.exception.FatalIOException; -import globalquake.core.training.EarthquakeAnalysisTraining; -import globalquake.core.regions.Regions; -import globalquake.core.intensity.*; -import globalquake.core.geo.taup.TauPTravelTimeCalculator; - -import gqserver.server.GlobalQuakeServer; -import gqserver.ui.server.DatabaseMonitorFrame; - -import javax.swing.*; -import java.awt.*; -import java.io.File; -import java.util.Objects; -import java.util.concurrent.Executors; -import java.util.stream.Collectors; - -public class Main { - - public static final File MAIN_FOLDER = new File("./GlobalQuakeServer/"); - - private static ApplicationErrorHandler errorHandler; - public static final String version = "0.1.0"; - public static final String fullName = "GlobalQuakeServer " + version; - private static DatabaseMonitorFrame databaseMonitorFrame; - private static StationDatabaseManager databaseManager; - - public static final Image LOGO = new ImageIcon(Objects.requireNonNull(ClassLoader.getSystemClassLoader().getResource("logo/logo.png"))).getImage(); - - private static void startDatabaseManager() throws FatalIOException { - databaseManager = new StationDatabaseManager(); - new GlobalQuakeServer(databaseManager); - databaseManager.load(); - databaseMonitorFrame = new DatabaseMonitorFrame(databaseManager); - databaseMonitorFrame.setVisible(true); - } - - public static void main(String[] args) { - initErrorHandler(); - - try { - startDatabaseManager(); - } catch (FatalIOException e) { - getErrorHandler().handleException(e); - } - - Executors.newSingleThreadExecutor().submit(() -> { - try { - initAll(); - } catch (Exception e) { - getErrorHandler().handleException(e); - } - }); - } - - private static final double PHASES = 6.0; - private static int phase = 0; - - private static void initAll() throws Exception { - databaseMonitorFrame.getMainProgressBar().setString("Loading regions..."); - databaseMonitorFrame.getMainProgressBar().setValue((int) ((phase++ / PHASES) * 100.0)); - Regions.init(); - databaseMonitorFrame.getMainProgressBar().setString("Filling up intensity table..."); - databaseMonitorFrame.getMainProgressBar().setValue((int) ((phase++ / PHASES) * 100.0)); - IntensityTable.init(); - databaseMonitorFrame.getMainProgressBar().setString("Loading travel table..."); - databaseMonitorFrame.getMainProgressBar().setValue((int) ((phase++ / PHASES) * 100.0)); - TauPTravelTimeCalculator.init(); - databaseMonitorFrame.getMainProgressBar().setString("Calibrating..."); - databaseMonitorFrame.getMainProgressBar().setValue((int) ((phase++ / PHASES) * 100.0)); - if(Settings.recalibrateOnLaunch) { - EarthquakeAnalysisTraining.calibrateResolution(databaseMonitorFrame.getMainProgressBar(), null); - } - databaseMonitorFrame.getMainProgressBar().setString("Updating Station Sources..."); - databaseMonitorFrame.getMainProgressBar().setValue((int) ((phase++ / PHASES) * 100.0)); - databaseManager.runUpdate(databaseManager.getStationDatabase().getStationSources().stream() - .filter(StationSource::isOutdated).collect(Collectors.toList()), - () -> { - databaseMonitorFrame.getMainProgressBar().setString("Checking Seedlink Networks..."); - databaseMonitorFrame.getMainProgressBar().setValue((int) ((phase++ / PHASES) * 100.0)); - databaseManager.runAvailabilityCheck(databaseManager.getStationDatabase().getSeedlinkNetworks(), () -> { - databaseMonitorFrame.getMainProgressBar().setString("Saving..."); - databaseMonitorFrame.getMainProgressBar().setValue((int) ((phase++ / PHASES) * 100.0)); - - try { - databaseManager.save(); - } catch (FatalIOException e) { - getErrorHandler().handleException(new RuntimeException(e)); - } - databaseMonitorFrame.initDone(); - - databaseMonitorFrame.getMainProgressBar().setString("Done"); - databaseMonitorFrame.getMainProgressBar().setValue((int) ((phase++ / PHASES) * 100.0)); - }); - }); - } - - public static ApplicationErrorHandler getErrorHandler() { - if(errorHandler == null) { - errorHandler = new ApplicationErrorHandler(null); - } - return errorHandler; - } - - public static void initErrorHandler() { - Thread.setDefaultUncaughtExceptionHandler(getErrorHandler()); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/server/ClientReader.java b/GlobalQuakeServerUI/src/main/java/gqserver/server/ClientReader.java deleted file mode 100644 index 9870f83..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/server/ClientReader.java +++ /dev/null @@ -1,37 +0,0 @@ -package gqserver.server; - -import gqserver.api.Packet; -import gqserver.api.ServerClient; -import gqserver.api.exception.UnknownPacketException; -import org.tinylog.Logger; - -import java.io.IOException; - -public class ClientReader implements Runnable { - private final ServerClient client; - - public ClientReader(ServerClient client) { - this.client = client; - } - - @Override - public void run() { - try { - client.getSocket().setSoTimeout(GQServerSocket.READ_TIMEOUT); - while (client.isConnected()) { - Packet packet = client.readPacket(); - packet.onServerReceive(client); - GlobalQuakeServer.instance.getServerSocket().getDataService().processPacket(client, packet); - } - } catch (Exception | UnknownPacketException e) { - Logger.error("Client #%d experienced a crash while reading!".formatted(client.getID())); - Logger.error(e); - } finally { - try { - client.destroy(); - } catch (IOException e) { - Logger.error(e); - } - } - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/server/DataService.java b/GlobalQuakeServerUI/src/main/java/gqserver/server/DataService.java deleted file mode 100644 index 94879bd..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/server/DataService.java +++ /dev/null @@ -1,221 +0,0 @@ -package gqserver.server; - -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.earthquake.data.Hypocenter; -import globalquake.core.earthquake.interval.DepthConfidenceInterval; -import globalquake.core.earthquake.interval.PolygonConfidenceInterval; -import globalquake.core.earthquake.quality.Quality; -import globalquake.core.events.GlobalQuakeEventAdapter; -import globalquake.core.events.specific.QuakeCreateEvent; -import globalquake.core.events.specific.QuakeRemoveEvent; -import globalquake.core.events.specific.QuakeUpdateEvent; -import gqserver.api.Packet; -import gqserver.api.ServerClient; -import gqserver.api.data.earthquake.EarthquakeInfo; -import gqserver.api.data.earthquake.HypocenterData; -import gqserver.api.data.earthquake.advanced.*; -import gqserver.api.packets.earthquake.EarthquakeCheckPacket; -import gqserver.api.packets.earthquake.EarthquakeRequestPacket; -import gqserver.api.packets.earthquake.EarthquakesRequestPacket; -import gqserver.api.packets.earthquake.HypocenterDataPacket; -import org.tinylog.Logger; - -import java.io.IOException; -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; -import java.util.UUID; -import java.util.concurrent.Executors; -import java.util.concurrent.TimeUnit; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReadWriteLock; -import java.util.concurrent.locks.ReentrantReadWriteLock; -import java.util.stream.Collectors; - -public class DataService { - - private final ReadWriteLock quakesRWLock = new ReentrantReadWriteLock(); - - private final Lock quakesReadLock = quakesRWLock.readLock(); - private final Lock quakesWriteLock = quakesRWLock.writeLock(); - - private final List currentEarthquakes; - - public DataService() { - currentEarthquakes = new ArrayList<>(); - - GlobalQuakeServer.instance.getEventHandler().registerEventListener(new GlobalQuakeEventAdapter(){ - @Override - public void onQuakeCreate(QuakeCreateEvent event) { - Earthquake earthquake = event.earthquake(); - - quakesWriteLock.lock(); - try{ - currentEarthquakes.add(new EarthquakeInfo(earthquake.getUuid(), earthquake.getRevisionID())); - } finally { - quakesWriteLock.unlock(); - } - - broadcast(getEarthquakeReceivingClients(), createQuakePacket(earthquake)); - } - - @Override - public void onQuakeRemove(QuakeRemoveEvent event) { - quakesWriteLock.lock(); - try{ - Earthquake earthquake = event.earthquake(); - for (Iterator iterator = currentEarthquakes.iterator(); iterator.hasNext(); ) { - EarthquakeInfo info = iterator.next(); - if (info.uuid().equals(earthquake.getUuid())) { - iterator.remove(); - break; - } - } - } finally { - quakesWriteLock.unlock(); - } - - broadcast(getEarthquakeReceivingClients(), new EarthquakeCheckPacket(new EarthquakeInfo(event.earthquake().getUuid(), EarthquakeInfo.REMOVED))); - } - - @Override - public void onQuakeUpdate(QuakeUpdateEvent event) { - quakesWriteLock.lock(); - Earthquake earthquake = event.earthquake(); - - try{ - for (Iterator iterator = currentEarthquakes.iterator(); iterator.hasNext(); ) { - EarthquakeInfo info = iterator.next(); - if (info.uuid().equals(earthquake.getUuid())) { - iterator.remove(); - break; - } - } - - currentEarthquakes.add(new EarthquakeInfo(earthquake.getUuid(), earthquake.getRevisionID())); - } finally { - quakesWriteLock.unlock(); - } - - broadcast(getEarthquakeReceivingClients(), createQuakePacket(earthquake)); - } - }); - - Executors.newSingleThreadScheduledExecutor().scheduleAtFixedRate(this::checkQuakes, 0, 1, TimeUnit.MINUTES); - } - - private void checkQuakes() { - quakesWriteLock.lock(); - try{ - currentEarthquakes.removeIf(info -> !existsQuake(info.uuid())); - } finally { - quakesWriteLock.unlock(); - } - } - - private boolean existsQuake(UUID uuid) { - return GlobalQuakeServer.instance.getEarthquakeAnalysis().getEarthquakes().stream() - .anyMatch(earthquake -> earthquake.getUuid().equals(uuid)); - } - - private Packet createQuakePacket(Earthquake earthquake) { - return new HypocenterDataPacket(createHypocenterData(earthquake), createAdvancedHypocenterData(earthquake)); - } - - private AdvancedHypocenterData createAdvancedHypocenterData(Earthquake earthquake) { - Hypocenter hypocenter = earthquake.getHypocenter(); - if(hypocenter == null || hypocenter.quality == null || - hypocenter.polygonConfidenceIntervals == null || hypocenter.depthConfidenceInterval == null){ - return null; - } - - return new AdvancedHypocenterData( - createQualityData(hypocenter.quality), - createDepthConfidenceData(hypocenter.depthConfidenceInterval), - createLocationConfidenceData(hypocenter.polygonConfidenceIntervals)); - } - - private LocationConfidenceIntervalData createLocationConfidenceData(List intervals) { - List list = new ArrayList<>(); - for(PolygonConfidenceInterval interval : intervals){ - list.add(new PolygonConfidenceIntervalData( - interval.n(), - (float) interval.offset(), - interval.lengths().stream().map(Double::floatValue).collect(Collectors.toList()))); - } - - return new LocationConfidenceIntervalData(list); - } - - private DepthConfidenceIntervalData createDepthConfidenceData(DepthConfidenceInterval interval) { - return new DepthConfidenceIntervalData( - (float) interval.minDepth(), - (float) interval.maxDepth()); - } - - private HypocenterQualityData createQualityData(Quality quality) { - return new HypocenterQualityData( - (float) quality.getQualityOrigin().getValue(), - (float) quality.getQualityDepth().getValue(), - (float) quality.getQualityNS().getValue(), - (float) quality.getQualityEW().getValue(), - (int) quality.getQualityStations().getValue(), - (float) quality.getQualityPercentage().getValue()); - } - - private static HypocenterData createHypocenterData(Earthquake earthquake) { - return new HypocenterData( - earthquake.getUuid(), earthquake.getRevisionID(), (float) earthquake.getLat(), (float) earthquake.getLon(), - (float) earthquake.getDepth(), earthquake.getOrigin(), (float) earthquake.getMag()); - } - - private void broadcast(List clients, Packet packet) { - clients.forEach(client -> { - try { - client.sendPacket(packet); - } catch (IOException e) { - Logger.error(e); - } - }); - } - - private List getEarthquakeReceivingClients(){ - return getClients().stream().filter(serverClient -> serverClient.getClientConfig().earthquakeData()).toList(); - } - - private List getClients() { - return GlobalQuakeServer.instance.getServerSocket().getClients(); - } - - public void processPacket(ServerClient client, Packet packet) { - try { - if (packet instanceof EarthquakesRequestPacket) { - processEarthquakesRequest(client); - } else if (packet instanceof EarthquakeRequestPacket earthquakeRequestPacket) { - processEarthquakeRequest(client, earthquakeRequestPacket); - } - }catch(IOException e){ - Logger.error(e); - } - } - - private void processEarthquakeRequest(ServerClient client, EarthquakeRequestPacket earthquakeRequestPacket) throws IOException { - for(Earthquake earthquake : GlobalQuakeServer.instance.getEarthquakeAnalysis().getEarthquakes()){ - if(earthquake.getUuid().equals(earthquakeRequestPacket.uuid())){ - client.sendPacket(createQuakePacket(earthquake)); - return; - } - } - } - - private void processEarthquakesRequest(ServerClient client) throws IOException { - quakesReadLock.lock(); - try { - for (EarthquakeInfo info : currentEarthquakes) { - client.sendPacket(new EarthquakeCheckPacket(info)); - } - } finally { - quakesReadLock.unlock(); - } - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/server/GQServerSocket.java b/GlobalQuakeServerUI/src/main/java/gqserver/server/GQServerSocket.java deleted file mode 100644 index 1344ade..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/server/GQServerSocket.java +++ /dev/null @@ -1,194 +0,0 @@ -package gqserver.server; - -import globalquake.core.exception.InvalidPacketException; -import globalquake.core.exception.RuntimeApplicationException; -import globalquake.utils.monitorable.MonitorableCopyOnWriteArrayList; -import gqserver.api.Packet; -import gqserver.api.ServerClient; -import gqserver.api.packets.system.HandshakePacket; -import gqserver.api.packets.system.TerminationPacket; -import gqserver.events.specific.ClientJoinedEvent; -import gqserver.events.specific.ClientLeftEvent; -import gqserver.events.specific.ServerStatusChangedEvent; -import gqserver.api.exception.UnknownPacketException; -import org.tinylog.Logger; - -import java.io.IOException; -import java.net.InetSocketAddress; -import java.net.ServerSocket; -import java.net.Socket; -import java.util.LinkedList; -import java.util.List; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.TimeUnit; - -public class GQServerSocket { - - public static final int COMPATIBILITY_VERSION = 2; - - private static final int HANDSHAKE_TIMEOUT = 10 * 1000; - public static final int MAX_CLIENTS = 64; - private static final int WATCHDOG_TIMEOUT = 60 * 1000; - - public static final int READ_TIMEOUT = WATCHDOG_TIMEOUT + 10 * 1000; - private final DataService dataService; - private SocketStatus status; - private ExecutorService handshakeService; - private ExecutorService readerService; - private ScheduledExecutorService clientsWatchdog; - private final List clients; - - private volatile ServerSocket lastSocket; - private final Object joinMutex = new Object(); - - public GQServerSocket() { - status = SocketStatus.IDLE; - clients = new MonitorableCopyOnWriteArrayList<>(); - dataService = new DataService(); - } - - public void run(String ip, int port) { - ExecutorService serverExec = Executors.newSingleThreadExecutor(); - handshakeService = Executors.newCachedThreadPool(); - readerService = Executors.newCachedThreadPool(); - clientsWatchdog = Executors.newSingleThreadScheduledExecutor(); - clientsWatchdog.scheduleAtFixedRate(this::checkClients, 0, 10, TimeUnit.SECONDS); - - setStatus(SocketStatus.OPENING); - try { - lastSocket = new ServerSocket(); - lastSocket.bind(new InetSocketAddress(ip, port)); - serverExec.submit(this::runAccept); - setStatus(SocketStatus.RUNNING); - } catch (IOException e) { - setStatus(SocketStatus.IDLE); - throw new RuntimeApplicationException("Unable to open server", e); - } - } - - private void checkClients() { - List toRemove = new LinkedList<>(); - for (ServerClient client : clients) { - if (!client.isConnected() || System.currentTimeMillis() - client.getLastHeartbeat() > WATCHDOG_TIMEOUT) { - try { - client.destroy(); - toRemove.add(client); - GlobalQuakeServer.instance.getServerEventHandler().fireEvent(new ClientLeftEvent(client)); - Logger.info("Client #%d disconnected due to timeout".formatted(client.getID())); - } catch (Exception e) { - Logger.error(e); - } - } - } - clients.removeAll(toRemove); - } - - private void handshake(ServerClient client) throws IOException { - try { - Packet packet = client.readPacket(); - if (packet instanceof HandshakePacket handshakePacket) { - if (handshakePacket.compatVersion() != COMPATIBILITY_VERSION) { - client.sendPacket(new TerminationPacket("Your client version is not compatible with the server!")); - throw new InvalidPacketException("Client's version is not compatible %d != %d" - .formatted(handshakePacket.compatVersion(), COMPATIBILITY_VERSION)); - } - - client.setClientConfig(handshakePacket.clientConfig()); - } else { - throw new InvalidPacketException("Received packet is not handshake!"); - } - - synchronized (joinMutex) { - if (clients.size() >= MAX_CLIENTS) { - client.sendPacket(new TerminationPacket("Server is full!")); - client.destroy(); - } else { - Logger.info("Client #%d handshake successfull".formatted(client.getID())); - readerService.submit(new ClientReader(client)); - clients.add(client); - GlobalQuakeServer.instance.getServerEventHandler().fireEvent(new ClientJoinedEvent(client)); - } - } - } catch (UnknownPacketException | InvalidPacketException e) { - client.destroy(); - Logger.error(e); - } - } - - private void onClose() { - clients.clear(); - if (!clientsWatchdog.isShutdown()) { - clientsWatchdog.shutdown(); - } - setStatus(SocketStatus.IDLE); - } - - public void setStatus(SocketStatus status) { - this.status = status; - if (GlobalQuakeServer.instance != null) { - GlobalQuakeServer.instance.getServerEventHandler().fireEvent(new ServerStatusChangedEvent(status)); - } - } - - public SocketStatus getStatus() { - return status; - } - - public void stop() throws IOException { - for (ServerClient client : clients) { - try { - client.sendPacket(new TerminationPacket("Server closed by operator")); - client.flush(); - client.destroy(); - } catch (Exception e) { - Logger.error(e); - } - } - - clients.clear(); - - if (lastSocket != null) { - lastSocket.close(); - } - } - - private void runAccept() { - while (lastSocket.isBound() && !lastSocket.isClosed()) { - try { - lastSocket.setSoTimeout(0); // we can wait for clients forever - Socket socket = lastSocket.accept(); - Logger.info("A new client is joining..."); - socket.setSoTimeout(HANDSHAKE_TIMEOUT); - handshakeService.submit(() -> { - ServerClient client; - try { - client = new ServerClient(socket); - Logger.info("Performing handshake for client #%d".formatted(client.getID())); - handshake(client); - } catch (IOException e) { - Logger.error("Failure when accepting client!"); - Logger.error(e); - } - }); - } catch (IOException e) { - break; - } - } - - onClose(); - } - - public int getClientCount() { - return clients.size(); - } - - public List getClients() { - return clients; - } - - public DataService getDataService() { - return dataService; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/server/GlobalQuakeServer.java b/GlobalQuakeServerUI/src/main/java/gqserver/server/GlobalQuakeServer.java deleted file mode 100644 index c5f86f1..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/server/GlobalQuakeServer.java +++ /dev/null @@ -1,30 +0,0 @@ -package gqserver.server; - -import globalquake.core.GlobalQuake; -import globalquake.core.database.StationDatabaseManager; -import gqserver.events.GlobalQuakeServerEventHandler; -import gqserver.main.Main; - -public class GlobalQuakeServer extends GlobalQuake { - - private final GQServerSocket serverSocket; - - public static GlobalQuakeServer instance; - - private final GlobalQuakeServerEventHandler serverEventHandler; - - public GlobalQuakeServer(StationDatabaseManager stationDatabaseManager) { - super(stationDatabaseManager, Main.getErrorHandler(), Main.MAIN_FOLDER); - instance = this; - serverSocket = new GQServerSocket(); - this.serverEventHandler = new GlobalQuakeServerEventHandler().runHandler(); - } - - public GQServerSocket getServerSocket() { - return serverSocket; - } - - public GlobalQuakeServerEventHandler getServerEventHandler() { - return serverEventHandler; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/server/SocketStatus.java b/GlobalQuakeServerUI/src/main/java/gqserver/server/SocketStatus.java deleted file mode 100644 index 55f93c9..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/server/SocketStatus.java +++ /dev/null @@ -1,7 +0,0 @@ -package gqserver.server; - -public enum SocketStatus { - - IDLE, OPENING, RUNNING - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/GQFrame.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/GQFrame.java deleted file mode 100644 index 5d1d57c..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/GQFrame.java +++ /dev/null @@ -1,23 +0,0 @@ -package gqserver.ui; - -import javax.swing.*; -import java.awt.*; - -import gqserver.main.Main; - -public class GQFrame extends JFrame { - - public GQFrame() throws HeadlessException { - super(); - setIconImage(Main.LOGO); - } - - public @Override void toFront() { - super.setAlwaysOnTop(true); - super.toFront(); - super.requestFocus(); - super.setAlwaysOnTop(false); - super.setState(Frame.NORMAL); - super.repaint(); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/StationMonitor.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/StationMonitor.java deleted file mode 100644 index 5079389..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/StationMonitor.java +++ /dev/null @@ -1,83 +0,0 @@ -package gqserver.ui; - -import globalquake.core.station.AbstractStation; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.*; -import java.util.Timer; -import java.util.TimerTask; - -public class StationMonitor extends GQFrame { - - private final AbstractStation station; - - public StationMonitor(Component parent, AbstractStation station, int refreshTime) { - this.station = station; - setLayout(new BorderLayout()); - - add(createControlPanel(), BorderLayout.NORTH); - setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); - StationMonitorPanel panel = new StationMonitorPanel(station); - add(panel, BorderLayout.CENTER); - - pack(); - - setLocationRelativeTo(parent); - setResizable(true); - setTitle("Station Monitor - " + station.getNetworkCode() + " " + station.getStationCode() + " " - + station.getChannelName() + " " + station.getLocationCode()); - - Timer timer = new Timer(); - timer.scheduleAtFixedRate(new TimerTask() { - public void run() { - panel.updateImage(); - panel.repaint(); - } - }, 0, refreshTime); - - addWindowListener(new WindowAdapter() { - - @Override - public void windowClosing(WindowEvent e) { - timer.cancel(); - } - }); - - addKeyListener(new KeyAdapter() { - @Override - public void keyPressed(KeyEvent e) { - if(e.getKeyCode() == KeyEvent.VK_ESCAPE){ - dispose(); - } - } - }); - - panel.addComponentListener(new ComponentAdapter() { - @Override - public void componentResized(ComponentEvent e) { - panel.updateImage(); - panel.repaint(); - } - }); - - setVisible(true); - } - - private Component createControlPanel() { - JPanel panel = new JPanel(); - - JCheckBox chkBoxDisable = new JCheckBox("Disable event picking", station.disabled); - chkBoxDisable.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - station.disabled = chkBoxDisable.isSelected(); - } - }); - - panel.add(chkBoxDisable); - - return panel; - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/StationMonitorPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/StationMonitorPanel.java deleted file mode 100644 index 5371bc8..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/StationMonitorPanel.java +++ /dev/null @@ -1,328 +0,0 @@ -package gqserver.ui; - -import globalquake.core.Settings; -import globalquake.core.analysis.AnalysisStatus; -import globalquake.core.analysis.BetterAnalysis; -import globalquake.core.analysis.Event; -import globalquake.core.analysis.Log; -import globalquake.core.earthquake.EarthquakeAnalysis; -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.geo.taup.TauPTravelTimeCalculator; -import globalquake.core.station.AbstractStation; -import globalquake.utils.GeoUtils; -import gqserver.server.GlobalQuakeServer; - -import java.awt.*; -import java.awt.geom.Line2D; -import java.awt.geom.Rectangle2D; -import java.awt.image.BufferedImage; -import java.util.ArrayList; - -import javax.swing.JPanel; - -public class StationMonitorPanel extends JPanel { - - private BufferedImage image; - private final AbstractStation station; - - public StationMonitorPanel(AbstractStation station) { - this.station = station; - setLayout(null); - setPreferredSize(new Dimension(600, 500)); - setSize(getPreferredSize()); - updateImage(); - } - - private static final Stroke dashed = new BasicStroke(1, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL, 0, - new float[] { 3 }, 0); - - public void updateImage() { - int w = getWidth(); - int h = getHeight(); - BufferedImage img = new BufferedImage(w, h, BufferedImage.TYPE_3BYTE_BGR); - Graphics2D g = img.createGraphics(); - g.setColor(Color.white); - g.fillRect(0, 0, w, h); - - g.setColor(Color.black); - g.setFont(new Font("Calibri", Font.BOLD, 14)); - g.drawString("Raw Data", 4, 14); - g.drawString("Band Pass %sHz - %sHz".formatted(BetterAnalysis.min_frequency, BetterAnalysis.max_frequency), 4, (int) (h * 0.2 + 14)); - g.drawString("Running Averages", 4, (int) (h * 0.4 + 14)); - g.drawString("Averages Ratio", 4, (int) (h * 0.7 + 14)); - - long upperMinute = (long) (Math.ceil(getTime()/ (1000 * 60.0) + 1) * (1000L * 60L)); - for (int deltaSec = 0; deltaSec <= 60 * Settings.logsStoreTimeMinutes + 80; deltaSec += 10) { - long time = upperMinute - deltaSec * 1000L; - boolean fullMinute = time % 60000 == 0; - double x = getX(time); - g.setColor(!fullMinute ? Color.lightGray : Color.gray); - g.setStroke(!fullMinute ? dashed : new BasicStroke(2f)); - g.draw(new Line2D.Double(x, 0, x, getHeight())); - } - - ArrayList logs; - synchronized (station.getAnalysis().previousLogsLock) { - logs = new ArrayList<>(station.getAnalysis().getPreviousLogs()); - } - - if (logs.size() > 1) { - double maxValue = -Double.MAX_VALUE; - double minValue = Double.MAX_VALUE; - double maxFilteredValue = -Double.MAX_VALUE; - double minFilteredValue = Double.MAX_VALUE; - double maxAverage = 0; - double maxRatio = 0; - for (Log l : logs) { - int v = l.rawValue(); - if (v > maxValue) { - maxValue = v; - } - if (v < minValue) { - minValue = v; - } - - double fv = l.filteredV(); - if (fv > maxFilteredValue) { - maxFilteredValue = fv; - } - if (fv < minFilteredValue) { - minFilteredValue = fv; - } - double shortAvg = l.shortAverage(); - double longAvg = l.longAverage(); - double medAvg = l.mediumAverage(); - double specAvg = l.specialAverage(); - if (shortAvg > maxAverage) { - maxAverage = shortAvg; - } - if (longAvg > maxAverage) { - maxAverage = longAvg; - } - if (medAvg > maxAverage) { - maxAverage = medAvg; - } - if (specAvg > maxAverage) { - maxAverage = specAvg; - } - - double ratio = l.getRatio(); - double medRatio = l.getMediumRatio(); - double thirdRatio = l.getThirdRatio(); - double specRatio = l.getSpecialRatio(); - if (ratio > maxRatio) { - maxRatio = ratio; - } - if (medRatio > maxRatio) { - maxRatio = medRatio; - } - if (thirdRatio > maxRatio) { - maxRatio = thirdRatio; - } - if (specRatio > maxRatio) { - maxRatio = specRatio; - } - } - - maxValue += 10.0; - minValue -= 10.0; - - double fix1 = (maxValue - minValue) * 0.25 * 0.5; - maxValue += fix1; - minValue -= fix1; - - double fix2 = (maxFilteredValue - minFilteredValue) * 0.25 * 0.5; - maxFilteredValue += fix2; - minFilteredValue -= fix2; - - maxAverage += 10.0; - maxAverage *= 1.25; - - for (int i = 0; i < logs.size() - 1; i++) { - Log a = logs.get(i); - Log b = logs.get(i + 1); - - boolean gap = (a.time() - b.time()) > (1000.0 / station.getAnalysis().getSampleRate()) * 2; - if (gap) { - continue; - } - - double x1 = getX(a.time()); - double x2 = getX(b.time()); - - double y1 = 0 + (getHeight() * 0.20) * (maxValue - a.rawValue()) / (maxValue - minValue); - double y2 = 0 + (getHeight() * 0.20) * (maxValue - b.rawValue()) / (maxValue - minValue); - - double y3 = getHeight() * 0.20 + (getHeight() * 0.20) * (maxFilteredValue - a.filteredV()) - / (maxFilteredValue - minFilteredValue); - double y4 = getHeight() * 0.20 + (getHeight() * 0.20) * (maxFilteredValue - b.filteredV()) - / (maxFilteredValue - minFilteredValue); - - double y5 = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - a.shortAverage()) / (maxAverage); - double y6 = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - b.shortAverage()) / (maxAverage); - - double y7 = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - a.longAverage()) / (maxAverage); - double y8 = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - b.longAverage()) / (maxAverage); - - double y9 = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - a.mediumAverage()) / (maxAverage); - double y10 = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - b.mediumAverage()) / (maxAverage); - - double y9b = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - a.thirdAverage()) / (maxAverage); - double y10b = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - b.thirdAverage()) / (maxAverage); - - double y9c = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - a.specialAverage()) / (maxAverage); - double y10c = getHeight() * 0.40 - + (getHeight() * 0.30) * (maxAverage - b.specialAverage()) / (maxAverage); - - double y11 = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - a.getRatio()) / (maxRatio); - double y12 = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - b.getRatio()) / (maxRatio); - - double y13 = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - a.getMediumRatio()) / (maxRatio); - double y14 = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - b.getMediumRatio()) / (maxRatio); - - double y13b = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - a.getThirdRatio()) / (maxRatio); - double y14b = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - b.getThirdRatio()) / (maxRatio); - - double y13c = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - a.getSpecialRatio()) / (maxRatio); - double y14c = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - b.getSpecialRatio()) / (maxRatio); - - double yA = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - 1.0) / (maxRatio); - - g.setColor(Color.blue); - g.setStroke(new BasicStroke(1f)); - g.draw(new Line2D.Double(x1, y1, x2, y2)); - - g.setColor(Color.orange); - g.setStroke(new BasicStroke(1f)); - g.draw(new Line2D.Double(x1, y3, x2, y4)); - - g.setColor(Color.orange); - g.setStroke(new BasicStroke(3f)); - g.draw(new Line2D.Double(x1, y7, x2, y8)); - - g.setColor(Color.blue); - g.setStroke(new BasicStroke(2f)); - g.draw(new Line2D.Double(x1, y9, x2, y10)); - - g.setColor(Color.green); - g.setStroke(new BasicStroke(2f)); - g.draw(new Line2D.Double(x1, y9b, x2, y10b)); - - g.setColor(Color.red); - g.setStroke(new BasicStroke(2f)); - g.draw(new Line2D.Double(x1, y9c, x2, y10c)); - - g.setColor(a.status() == AnalysisStatus.IDLE ? Color.black : Color.green); - g.setStroke(new BasicStroke(1f)); - g.draw(new Line2D.Double(x1, y5, x2, y6)); - - g.setColor(Color.blue); - g.setStroke(new BasicStroke(2f)); - g.draw(new Line2D.Double(x1, y13, x2, y14)); - - g.setColor(Color.green); - g.setStroke(new BasicStroke(2f)); - g.draw(new Line2D.Double(x1, y13b, x2, y14b)); - - g.setColor(Color.red); - g.setStroke(new BasicStroke(2f)); - g.draw(new Line2D.Double(x1, y13c, x2, y14c)); - - g.setColor(a.status() == AnalysisStatus.IDLE ? Color.black : Color.green); - g.setStroke(new BasicStroke(1f)); - g.draw(new Line2D.Double(x1, y11, x2, y12)); - - g.setColor(Color.red); - g.setStroke(new BasicStroke(1f)); - g.draw(new Line2D.Double(x1, yA, x2, yA)); - - for (double d : Event.RECALCULATE_P_WAVE_THRESHOLDS) { - double _y = getHeight() * 0.70 + (getHeight() * 0.30) * (maxRatio - d) / (maxRatio); - if (_y > getHeight() * 0.70) { - g.setColor(Color.magenta); - g.setStroke(new BasicStroke(1f)); - g.draw(new Line2D.Double(x1, _y, x2, _y)); - } - } - - } - } - - for (Event e : station.getAnalysis().getDetectedEvents()) { - if(!e.isValid()){ - continue; - } - double x = getX(e.getpWave()); - g.setColor(e.isSWave() ? Color.red : Color.blue); - g.setStroke(new BasicStroke(2f)); - g.draw(new Line2D.Double(x, 0, x, getHeight())); - } - - if(GlobalQuakeServer.instance != null) { - for (Earthquake earthquake : GlobalQuakeServer.instance.getEarthquakeAnalysis().getEarthquakes()) { - double distGC = GeoUtils.greatCircleDistance(station.getLatitude(), station.getLongitude(), earthquake.getLat(), earthquake.getLon()); - long arrivalP = (long) (earthquake.getOrigin() + 1000 * (TauPTravelTimeCalculator.getPWaveTravelTime(earthquake.getDepth(), - TauPTravelTimeCalculator.toAngle(distGC)) + EarthquakeAnalysis.getElevationCorrection(station.getAlt()))); - - long arrivalS = (long) (earthquake.getOrigin() + 1000 * (TauPTravelTimeCalculator.getSWaveTravelTime(earthquake.getDepth(), - TauPTravelTimeCalculator.toAngle(distGC)) + EarthquakeAnalysis.getElevationCorrection(station.getAlt()))); - - double xP = getX(arrivalP); - double xS = getX(arrivalS); - - g.setColor(Color.magenta); - g.setStroke(dashed); - g.draw(new Line2D.Double(xP, 0, xP, getHeight())); - g.draw(new Line2D.Double(xS, 0, xS, getHeight())); - - double x1 = getX((long) (arrivalP - Settings.pWaveInaccuracyThreshold)); - double x2 = getX((long) (arrivalP + Settings.pWaveInaccuracyThreshold)); - double x3 = getX((long) (arrivalS - Settings.pWaveInaccuracyThreshold)); - double x4 = getX((long) (arrivalS + Settings.pWaveInaccuracyThreshold)); - - g.setColor(new Color(0, 0, 255, 80)); - g.fill(new Rectangle2D.Double(x1, 0, x2 - x1, h)); - - g.setColor(new Color(255, 0, 0, 80)); - g.fill(new Rectangle2D.Double(x3, 0, x4 - x3, h)); - } - } - - g.setColor(Color.black); - g.setStroke(new BasicStroke(2f)); - g.draw(new Rectangle2D.Double(0, 0, w - 1, h - 1)); - g.draw(new Rectangle2D.Double(0, 0, w - 1, (h - 1) * 0.20)); - g.draw(new Rectangle2D.Double(0, h * 0.20, w - 1, (h - 1) * 0.20)); - g.draw(new Rectangle2D.Double(0, h * 0.40, w - 1, (h - 1) * 0.30)); - g.draw(new Rectangle2D.Double(0, h * 0.70, w - 1, (h - 1) * 0.30)); - - g.dispose(); - - this.image = img; - } - - private long getTime() { - return System.currentTimeMillis(); - } - - private double getX(long time) { - return getWidth() * (1 - (getTime() - time) / (Settings.logsStoreTimeMinutes * 60 * 1000.0)); - } - - @Override - public void paint(Graphics gr) { - super.paint(gr); - Graphics2D g = (Graphics2D) gr; - g.drawImage(image, 0, 0, null); - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/Animation.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/Animation.java deleted file mode 100644 index 28e5b0d..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/Animation.java +++ /dev/null @@ -1,5 +0,0 @@ -package gqserver.ui.globe; - -public record Animation(double initialLat, double initialLon, double initialScroll, double targetLat, double targetLon, - double targetScroll) { -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/GlobePanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/GlobePanel.java deleted file mode 100644 index 8ac2fc4..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/GlobePanel.java +++ /dev/null @@ -1,487 +0,0 @@ -package gqserver.ui.globe; - -import globalquake.core.Settings; -import globalquake.core.regions.Regions; -import globalquake.utils.GeoUtils; -import gqserver.ui.globe.feature.FeatureGeoPolygons; -import gqserver.ui.globe.feature.FeatureHorizon; -import gqserver.ui.globe.feature.RenderEntity; -import org.apache.commons.math3.geometry.euclidean.threed.Vector3D; -import org.tinylog.Logger; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.*; -import java.util.Timer; -import java.util.*; -import java.util.concurrent.atomic.AtomicInteger; -import java.util.concurrent.CountDownLatch; - -public class GlobePanel extends JPanel implements GeoUtils { - - private static final long CINEMA_MODE_CHECK_INTERVAL = 1000 * 60 * 2; - private double centerLat; - private double centerLon; - private double dragStartLat; - private double dragStartLon; - private double scroll = 0.45; - private Point dragStart; - private Point lastMouse; - - private Date dragStartTime; - - private final LinkedList recentSpeeds = new LinkedList<>(); - private final int maxRecentSpeeds = 20; // a smaller number will average more of the end of the drag - - private final double spinDeceleration = 0.98; - private double spinSpeed = 0; - private double spinDirection = 1; - - final private Object spinLock = new Object(); - - private boolean mouseDown; - - private final GlobeRenderer renderer; - - private final AtomicInteger frameCount = new AtomicInteger(0); - - private int lastFPS; - - private boolean cinemaMode = Settings.cinemaModeOnStartup; - private final Object animationLock = new Object(); - private Animation nextAnimation; - - private long lastCinemaModeCheck = 0; - - public void setCinemaMode(boolean cinemaMode) { - lastCinemaModeCheck = System.currentTimeMillis(); - this.cinemaMode = cinemaMode; - } - - public GlobePanel(double lat, double lon) { - centerLat = lat; - centerLon = lon; - renderer = new GlobeRenderer(); - renderer.updateCamera(createRenderProperties()); - setLayout(null); - setBackground(Color.black); - - spinThread(); - fpsThread(); - animationThread(); - addMouseMotionListener(new MouseMotionListener() { - - @Override - public void mouseMoved(MouseEvent e) { - lastMouse = e.getPoint(); - renderer.mouseMoved(e); - } - - @Override - public void mouseDragged(MouseEvent e) { - lastMouse = e.getPoint(); - renderer.mouseMoved(e); - if(cinemaMode){ - Logger.info("Cinema mode disabled by dragging"); - setCinemaMode(false); - } - if (!_interactionAllowed()) { - return; - } - if (dragStart == null) { - return; - } - - double deltaX = (lastMouse.getX() - dragStart.getX()); - double deltaY = (lastMouse.getY() - dragStart.getY()); - - Date now = new Date(); - long timeElapsed = now.getTime() - dragStartTime.getTime(); - - // to prevent Infinity/NaN glitch - if (timeElapsed > 5) { - double instantaneousSpeed = deltaX / timeElapsed; - recentSpeeds.addLast(instantaneousSpeed); - } - - // Maintain the size of the recent speeds queue - if (recentSpeeds.size() > maxRecentSpeeds) { - recentSpeeds.removeFirst(); - } - - centerLon = dragStartLon - deltaX * 0.15 * scroll / (renderer.getRenderProperties().width / 1000.0); - centerLat = Math.max(-90, Math.min(90, dragStartLat + deltaY * 0.10 * scroll / (createRenderProperties().height / 1000.0))); - - renderer.updateCamera(createRenderProperties()); - repaint(); - } - }); - addMouseListener(new MouseAdapter() { - - @Override - public void mousePressed(MouseEvent e) { - mouseDown = true; - dragStartTime = new Date(); - spinSpeed = 0; //Prevent Jittering - - dragStart = e.getPoint(); - dragStartLat = centerLat; - dragStartLon = centerLon; - } - - @Override - public void mouseReleased(MouseEvent e) { - mouseDown = false; - - double toAdd = calculateSpin(); - addSpin(toAdd); - synchronized (spinLock) { - spinLock.notify(); - } - } - - @Override - public void mouseClicked(MouseEvent e) { - if (e.getButton() == MouseEvent.BUTTON1) { - handleClick(e.getX(), e.getY()); - } - } - }); - - addMouseWheelListener(e -> { - if(cinemaMode){ - Logger.info("Cinema mode disabled by scrolling"); - setCinemaMode(false); - } - - double rotation = e.getPreciseWheelRotation(); - boolean down = rotation < 0; - - double delta = 1 + Math.abs(rotation) * 0.12; - double mul = down ? 1 / delta : delta; - - if (down) { - if (scroll >= 0.01) - scroll *= mul; - } else if (scroll < 4) { - scroll *= mul; - } - - dragStart = lastMouse; - dragStartLon = centerLon; - dragStartLat = centerLat; - - - renderer.updateCamera(createRenderProperties()); - repaint(); - }); - - addComponentListener(new ComponentAdapter() { - @Override - public void componentResized(ComponentEvent e) { - renderer.updateCamera(createRenderProperties()); - } - - }); - - renderer.addFeature(new FeatureHorizon(new Point2D(centerLat, centerLon), 1)); - - renderer.addFeature(new FeatureGeoPolygons(Regions.raw_polygonsMD, 0.5, Double.MAX_VALUE)); - renderer.addFeature(new FeatureGeoPolygons(Regions.raw_polygonsHDFiltered, 0.25, 0.5)); - renderer.addFeature(new FeatureGeoPolygons(Regions.raw_polygonsUHDFiltered, 0, 0.25)); - renderer.addFeature(new FeatureGeoPolygons(Regions.raw_polygonsUS, 0, 0.5)); - renderer.addFeature(new FeatureGeoPolygons(Regions.raw_polygonsAK, 0, 0.5)); - renderer.addFeature(new FeatureGeoPolygons(Regions.raw_polygonsJP, 0, 0.5)); - renderer.addFeature(new FeatureGeoPolygons(Regions.raw_polygonsNZ, 0, 0.5)); - renderer.addFeature(new FeatureGeoPolygons(Regions.raw_polygonsHW, 0, 0.5)); - renderer.addFeature(new FeatureGeoPolygons(Regions.raw_polygonsIT, 0, 0.25)); - } - - private void animationThread() { - Timer timer = new Timer(); - timer.schedule(new TimerTask() { - @Override - public void run() { - try { - synchronized (animationLock) { - animationLock.wait(); - } - } catch (InterruptedException e) { - throw new RuntimeException(e); - } - - runAnimation(nextAnimation); - } - }, 0, 10); - } - - private void runAnimation(Animation animation) { - if(animation == null){ - return; - } - - int steps = 250; - final int[] step = {0}; - - CountDownLatch latch = new CountDownLatch(1); - - Timer timer = new Timer(); - double distGC = GeoUtils.greatCircleDistance(animation.initialLat(), animation.initialLon(), animation.targetLat(), animation.targetLon()); - timer.scheduleAtFixedRate(new TimerTask() { - @Override - public void run() { - Animation next = nextAnimation; - if(animation != next){ - this.cancel(); - runAnimation(next); - latch.countDown(); - return; - } - if(!cinemaMode){ - Logger.info("Animation aborted!"); - this.cancel(); - latch.countDown(); - return; - } - double t = (double) step[0] / steps; - double t1 = -Math.cos(t * Math.PI) * 0.5 + 0.5; - double t2 = Math.sin(t * Math.PI) * (animation.initialScroll() + animation.targetScroll()) * (distGC / 15000.0); - double currentScroll = t2 + animation.initialScroll() + t * (animation.targetScroll() - animation.initialScroll()); - double currentLatitude = animation.initialLat() + t1 * (animation.targetLat() - animation.initialLat()); - double currentLongitude = animation.initialLon() + t1 * (animation.targetLon() - animation.initialLon()); - centerLat = currentLatitude; - centerLon = currentLongitude; - scroll = currentScroll; - - renderer.updateCamera(createRenderProperties()); - - if(step[0] == steps){ - this.cancel(); - latch.countDown(); - } - - step[0]++; - } - }, 0, 20); - - try { - // Block the main thread until the animation is finished to avoid multiple animations running at once - latch.await(); - } catch (InterruptedException e) { - Logger.error(e); - } - } - - private long lastJump = 0; - - public synchronized void jumpTo(double targetLat, double targetLon, double targetScroll) { - // a dirty trick, but it works - lastJump = System.currentTimeMillis(); - nextAnimation = new Animation(targetLat, targetLon, targetScroll, targetLat, targetLon, targetScroll); - centerLat = targetLat; - centerLon = targetLon; - scroll = targetScroll; - renderer.updateCamera(createRenderProperties()); - } - - public synchronized void smoothTransition(double targetLat, double targetLon, double targetScroll){ - if(!cinemaMode || (System.currentTimeMillis() - lastJump < 1000)){ - return; - } - - targetScroll = Math.max(0.05, targetScroll); - - double startLat = centerLat % 360; - double startLon = centerLon % 360; - targetLat %= 360; - targetLon %= 360; - - if(Math.abs((startLon + 360) - targetLon) < Math.abs(startLon - targetLon)){ - startLon += 360; - } - - if(Math.abs(startLon - (targetLon + 360)) < Math.abs(startLon - targetLon)){ - targetLon += 360; - } - - nextAnimation = new Animation(startLat, startLon, scroll, targetLat, targetLon, targetScroll); - synchronized (animationLock) { - animationLock.notify(); - } - } - - public int getLastFPS() { - return lastFPS; - } - - private void fpsThread() { - Timer timer = new Timer(); - timer.scheduleAtFixedRate(new TimerTask() { - @Override - public void run() { - lastFPS = frameCount.getAndSet(0); - } - }, 0, 1000); - } - - private double calculateSpin() { - Date now = new Date(); - long timeElapsed = now.getTime() - dragStartTime.getTime(); - - //If the user has been dragging for more than 300ms, don't spin - if (timeElapsed > 300) { - return 0; - } - - if (lastMouse == null || dragStart == null) { - return 0; - } - - - //Calculate direction - double deltaX = (lastMouse.getX() - dragStart.getX()); - spinDirection = deltaX < 0 ? 1 : -1; - - // Do not spin if the drag is very small - if (Math.abs(deltaX) < 25) { - return 0; - } - - if (recentSpeeds.isEmpty()) { - return 0; - } - - double sum = 0.0; - for (Double speed : recentSpeeds) { - sum += speed; - } - - double averageSpeed = sum / recentSpeeds.size(); - - // Clear the recent speeds queue - recentSpeeds.clear(); - - //Spin less if the user is zoomed in - double SPIN_DAMPENER = 2; - return (Math.abs(averageSpeed)) * (scroll / SPIN_DAMPENER); //The division is a dampener. - } - - private void addSpin(double speed) { - if (mouseDown) { - return; - } - spinSpeed += speed; - } - - @SuppressWarnings("BooleanMethodIsAlwaysInverted") - public boolean interactionAllowed() { - return true; - } - - @SuppressWarnings("BooleanMethodIsAlwaysInverted") - private boolean _interactionAllowed(){ - return interactionAllowed() && !cinemaMode; - } - - private void handleClick(int x, int y) { - ArrayList> clicked = new ArrayList<>(); - renderer.getRenderFeatures().parallelStream().forEach(feature -> { - for (RenderEntity e : feature.getEntities()) { - Point2D centerCoords = feature.getCenterCoords(e); - if (centerCoords != null) { - Vector3D pos = new Vector3D(GlobeRenderer.getX_3D(centerCoords.x, centerCoords.y, 0), - GlobeRenderer.getY_3D(centerCoords.x, centerCoords.y, 0), GlobeRenderer.getZ_3D(centerCoords.x, centerCoords.y, 0)); - - if (!renderer.isAboveHorizon(pos)) { - continue; - } - - Point2D centerProjected = renderer.projectPoint(pos); - double distOnScreen = Math.sqrt(Math.pow(centerProjected.x - x, 2) + Math.pow(centerProjected.y - y, 2)); - if (distOnScreen <= 10) { - synchronized (clicked) { - clicked.add(e); - } - } - } - } - }); - - featuresClicked(clicked); - } - - public void featuresClicked(ArrayList> clicked) { - } - - private RenderProperties createRenderProperties() { - return new RenderProperties(getWidth(), getHeight(), centerLat, centerLon, scroll); - } - - public GlobeRenderer getRenderer() { - return renderer; - } - - public void spinThread() { - java.util.Timer timer = new Timer(); - timer.schedule(new TimerTask() { - public void run() { - try { - if (spinSpeed == 0) { - synchronized (spinLock) { - spinLock.wait(); //Wait for a spin to be added - } - } - } catch (InterruptedException e) { - return; - } - - if (!_interactionAllowed()) { - return; - } - - if (spinSpeed == 0) { - return; - } - spinSpeed *= spinDeceleration; - if (Math.abs(spinSpeed) < 0.01 * scroll) { //Stop Spinning once number is small enough - spinSpeed = 0; - return; - } - - centerLon += Math.abs(spinSpeed) * spinDirection; - renderer.updateCamera(createRenderProperties()); - repaint(); - } - }, 0, 10); - } - - @Override - public void paint(Graphics gr) { - super.paint(gr); - Graphics2D g = (Graphics2D) gr; - - checkCinemaMode(); - - g.setColor(Color.black); - g.fillRect(0, 0, getWidth(), getHeight()); - - renderer.render(g, renderer.getRenderProperties()); - - frameCount.incrementAndGet(); - } - - private void checkCinemaMode() { - if(!cinemaMode && Settings.cinemaModeReenable && System.currentTimeMillis() - lastCinemaModeCheck > CINEMA_MODE_CHECK_INTERVAL){ - setCinemaMode(true); - } - } - - @SuppressWarnings("unused") - public double getScroll() { - return scroll; - } - - public boolean isCinemaMode() { - return cinemaMode; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/GlobeRenderer.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/GlobeRenderer.java deleted file mode 100644 index 85dfe5e..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/GlobeRenderer.java +++ /dev/null @@ -1,523 +0,0 @@ -package gqserver.ui.globe; - -import com.uber.h3core.util.LatLng; -import globalquake.utils.GeoUtils; -import globalquake.utils.Point2DGQ; -import gqserver.ui.globe.feature.RenderFeature; -import org.apache.commons.math3.geometry.euclidean.threed.Vector3D; -import org.apache.commons.math3.geometry.euclidean.twod.Vector2D; -import org.apache.commons.math3.util.FastMath; - -import java.awt.*; -import java.awt.event.MouseEvent; -import java.awt.geom.Path2D; -import java.util.ArrayList; -import java.util.List; - -public class GlobeRenderer { - - private static final double fieldOfView = Math.PI / 3.0; // 60 degrees - - private double cosYaw; - private double cosPitch; - private double sinYaw; - private double sinPitch; - - private long lastMouseMove = 0; - - private static final double[][] projectionMatrix = new double[][]{ - {1.0, 0.0, 0.0, 0.0}, - {0.0, 1.0, 0.0, 0.0}, - {0.0, 0.0, 1.0, 0.0}, - {0.0, 0.0, 1.0 / Math.tan(fieldOfView / 2.0), 0.0} - }; - - public static final double QUALITY_LOW = 8; - @SuppressWarnings("unused") - public static final double QUALITY_MEDIUM = 2; - @SuppressWarnings("unused") - public static final double QUALITY_HIGH = 1; - @SuppressWarnings("unused") - public static final double QUALITY_ULTRA = 0.5; - - private RenderProperties renderProperties; - private double camera_altitude; - private Vector3D cameraPoint; - - private double oneDegPx; - - protected static final Vector3D center = new Vector3D(0, 0, 0); - private double maxAngle; - - private double maxDistance; - - private double horizonDist; - - private final List> renderFeatures; - private Point lastMouse; - - public GlobeRenderer(){ - renderFeatures = new ArrayList<>(); - } - - public RenderProperties getRenderProperties() { - return renderProperties; - } - - public double getMaxAngle() { - return maxAngle; - } - - private void project(Point2D result, double x, double y, double z, double cameraZ, int screenWidth, int screenHeight) { - // Translate the point to the camera's position - - double newX = x * cosYaw + z * sinYaw; - double newY = y; - double newZ = z * cosYaw - x * sinYaw; - - double tmpX = newX; - double tmpY = newY * cosPitch - newZ * sinPitch; - double tmpZ = newZ * cosPitch + newY * sinPitch; - newX = tmpX; - newY = tmpY; - newZ = tmpZ; - - // Translate the point to the camera's position - newZ -= cameraZ; - - // Apply the projection matrix - double x0 = projectionMatrix[0][0] * newX + projectionMatrix[0][1] * newY + projectionMatrix[0][2] * newZ + projectionMatrix[0][3]; - double x1 = projectionMatrix[1][0] * newX + projectionMatrix[1][1] * newY + projectionMatrix[1][2] * newZ + projectionMatrix[1][3]; - double w = projectionMatrix[3][0] * newX + projectionMatrix[3][1] * newY + projectionMatrix[3][2] * newZ + projectionMatrix[3][3]; - double screenX = (x0 / w + 1.0) * screenWidth - screenWidth / 2.0; - double screenY = (1.0 - x1 / w) * screenWidth - screenWidth + screenHeight / 2.0; - - result.x = screenX; - result.y = screenY; - } - - - /** - * Precompute values as part of optimisation - */ - public void updateCamera(RenderProperties properties) { - renderProperties = properties; - camera_altitude = GeoUtils.EARTH_RADIUS * renderProperties.scroll; - - cameraPoint = new Vector3D(getX_3D(renderProperties.centerLat, renderProperties.centerLon, camera_altitude * 1000), - getY_3D(renderProperties.centerLat, renderProperties.centerLon, camera_altitude * 1000), - getZ_3D(renderProperties.centerLat, renderProperties.centerLon, camera_altitude * 1000)); - - Vector3D surfacePoint = new Vector3D(getX_3D(getRenderProperties().centerLat, getRenderProperties().centerLon, 0), - getY_3D(getRenderProperties().centerLat, getRenderProperties().centerLon, 0), - getZ_3D(getRenderProperties().centerLat, getRenderProperties().centerLon, 0)); - - double[] moved = GeoUtils.moveOnGlobe(getRenderProperties().centerLat, getRenderProperties().centerLon, 1, 0); - - Vector3D surfacePoint1 = new Vector3D(getX_3D(moved[0], moved[1], 0), - getY_3D(moved[0], moved[1], 0), - getZ_3D(moved[0], moved[1], 0)); - - Point2D ptS1 = projectPoint(surfacePoint); - Point2D ptS2 = projectPoint(surfacePoint1); - oneDegPx = Math.sqrt(Math.pow(ptS1.x - ptS2.x, 2) + Math.pow(ptS1.y - ptS2.y, 2)); - - double centerToCamera = center.distance(cameraPoint); - maxAngle = FastMath.acos(GeoUtils.EARTH_RADIUS / centerToCamera); - - double[] data1 = GeoUtils.moveOnGlobe(renderProperties.centerLat, renderProperties.centerLon, GeoUtils.EARTH_CIRCUMFERENCE * (maxAngle / (2.0 * Math.PI)), 0); - Vector3D horizonPoint = new Vector3D(getX_3D(data1[0], data1[1], 0), - getY_3D(data1[0], data1[1], 0), getZ_3D(data1[0], data1[1], 0)); - - maxDistance = horizonPoint.distance(cameraPoint); - - double cameraYaw = -FastMath.toRadians(renderProperties.centerLon); - double cameraPitch = FastMath.toRadians(180 - renderProperties.centerLat); - - cosYaw = FastMath.cos(cameraYaw); - sinYaw = FastMath.sin(cameraYaw); - cosPitch = FastMath.cos(cameraPitch); - sinPitch = FastMath.sin(cameraPitch); - - Point2D point2D = new Point2D(); - - project(point2D, horizonPoint.getX(), horizonPoint.getY(), horizonPoint.getZ(), - GeoUtils.EARTH_RADIUS + camera_altitude, - renderProperties.width, renderProperties.height - ); - - horizonDist = Math.sqrt(Math.pow(point2D.x - renderProperties.width / 2.0, 2) + Math.pow(point2D.y - renderProperties.height / 2.0, 2)); - } - - public Point2D projectPoint(Vector3D pos){ - Point2D point2D = new Point2D(); - project(point2D, pos.getX(), pos.getY(), pos.getZ(), - GeoUtils.EARTH_RADIUS + camera_altitude, - renderProperties.width, renderProperties.height); - - return point2D; - } - - public boolean project3D(Path2D.Float result, Polygon3D polygon3D, boolean canClip) { - if(polygon3D == null || polygon3D.getBoundingBoxCorner(0) == null){ - return false; - } - Point2D point2D = new Point2D(); - - boolean init = false; - if (canClip) { - boolean onPlane = false; - int totalMask = 0xFFFF; - - for (int i = 0; i < 8; i++) { - Vector3D point = polygon3D.getBoundingBoxCorner(i); - - project(point2D, point.getX(), point.getY(), point.getZ(), - GeoUtils.EARTH_RADIUS + camera_altitude, - renderProperties.width, renderProperties.height); - - int mask = get_mask(point2D.x, point2D.y); - totalMask &= mask; - - if (isAboveHorizon(point)) { - onPlane = true; - } - } - - if ((!onPlane) || totalMask != 0) { - return false; - } - } - - - Vector3D bowStart = null; - Vector3D bowEnd = null; - Vector3D firstStart = null; - - boolean last = false; - int mask = 0xFFFF; - - for (int i = 0; i < polygon3D.getPoints().size(); i++) { - Vector3D point = polygon3D.getPoints().get(i); - if (!isAboveHorizon(point) && canClip) { - if (bowStart != null) { - bowEnd = point; - } - if (last) { - break; - } - continue; - } else { - if (firstStart == null) { - firstStart = point; - } - if (bowEnd != null) { - bowAlgorithm(point2D, result, bowStart, point, true); - bowEnd = null; - } - bowStart = point; - } - - project(point2D, point.getX(), point.getY(), point.getZ(), - GeoUtils.EARTH_RADIUS + camera_altitude, - renderProperties.width, renderProperties.height - ); - - if (!init) { - result.moveTo(point2D.x, point2D.y); - init = true; - } - - mask &= get_mask(point2D.x, point2D.y); - result.lineTo(point2D.x, point2D.y); - - if (point == polygon3D.getPoints().get(polygon3D.getPoints().size() - 1)) { - i = 0; - last = true; - continue; - } - if (last) { - break; - } - } - - - if(canClip && mask != 0){ - return false; - } - - if (bowEnd != null) { - bowAlgorithm(point2D, result, bowStart, firstStart, true); - } - - return true; - } - - private int get_mask(double x, double y) { - int result = 0; - - if (x < 0) { - result |= 1; - } - - if (x > renderProperties.width) { - result |= 1 << 1; - } - - if (y < 0) { - result |= 1 << 2; - } - - if (y > renderProperties.height) { - result |= 1 << 3; - } - - return result; - } - - @SuppressWarnings("SameParameterValue") - private void bowAlgorithm(Point2D point2D, Path2D.Float result, Vector3D bowStart, Vector3D bowEnd, boolean bow) { - project(point2D, bowStart.getX(), bowStart.getY(), bowStart.getZ(), - GeoUtils.EARTH_RADIUS + camera_altitude, - renderProperties.width, renderProperties.height - ); - - ground(point2D); - - double startX = point2D.x; - double startY = point2D.y; - - project(point2D, bowEnd.getX(), bowEnd.getY(), bowEnd.getZ(), - GeoUtils.EARTH_RADIUS + camera_altitude, - renderProperties.width, renderProperties.height - ); - - - ground(point2D); - - if(!bow) { - result.lineTo(startX, startY); - result.moveTo(point2D.x, point2D.y); - return; - } - - - double endX = point2D.x; - double endY = point2D.y; - - - double x_mid = (startX + endX) / 2.0; - double y_mid = (startY + endY) / 2.0; - - point2D.x=x_mid; - point2D.y=y_mid; - - ground(point2D); - - drawBow(point2D, result, startX, startY, point2D.x, point2D.y); - drawBow(point2D, result, point2D.x, point2D.y, endX, endY); - } - - private void drawBow(Point2D point2D, Path2D.Float result, double startX, double startY, double endX, double endY){ - double dx = endX - startX; - double dy = endY - startY; - - for (double t = 0; t <= 1; t += 0.1) { - point2D.x = startX + dx * t; - point2D.y = startY + dy * t; - - ground(point2D); - - result.lineTo(point2D.x, point2D.y); - } - } - - void ground(Point2D point2D){ - double dist = Math.sqrt(Math.pow(point2D.x - renderProperties.width / 2.0, 2) + Math.pow(point2D.y - renderProperties.height / 2.0, 2)); - - point2D.x = renderProperties.width / 2.0 + (point2D.x - renderProperties.width / 2.0) * (horizonDist / dist); - point2D.y = renderProperties.height / 2.0 + (point2D.y - renderProperties.height / 2.0) * (horizonDist / dist); - } - - public boolean isAboveHorizon(Vector3D point) { - double cameraToPoint = cameraPoint.distance(point); - return cameraToPoint <= maxDistance; - } - - public static double getX_3D(double lat, double lon, double alt) { - return -(GeoUtils.EARTH_RADIUS + alt / 1000.0) * FastMath.sin(FastMath.toRadians(lon)) * FastMath.cos(FastMath.toRadians(lat)); - } - - @SuppressWarnings("unused") - public static double getY_3D(double lat, double lon, double alt) { - return (GeoUtils.EARTH_RADIUS + alt / 1000.0) * FastMath.sin(FastMath.toRadians(lat)); - } - - public static double getZ_3D(double lat, double lon, double alt) { - return -(GeoUtils.EARTH_RADIUS + alt / 1000.0) * FastMath.cos(FastMath.toRadians(lon)) * FastMath.cos(FastMath.toRadians(lat)); - } - - - public synchronized void render(Graphics2D graphics, RenderProperties props) { - graphics.setRenderingHint(RenderingHints.KEY_STROKE_CONTROL, RenderingHints.VALUE_STROKE_PURE); - - renderFeatures.forEach(feature -> feature.process(this, props)); - renderFeatures.forEach(feature -> feature.renderAll(this, graphics, props)); - } - - public synchronized void addFeature(RenderFeature renderFeature){ - renderFeatures.add(renderFeature); - } - - public static Vector3D createVec3D(Vector2D latLon, double alt) { - double x = getX_3D(latLon.getX(), latLon.getY(), alt); - double y = getY_3D(latLon.getX(), latLon.getY(), alt); - double z = getZ_3D(latLon.getX(), latLon.getY(), alt); - - return new Vector3D(x, y, z); - } - - - public static Vector3D createVec3D(Point2D centerCoords) { - return createVec3D(new Vector2D(centerCoords.x, centerCoords.y), 0); - } - - - public void createPolygon(Polygon3D polygon3D, List coords) { - polygon3D.reset(); - - coords.add(coords.get(0)); - - for(LatLng latLng : coords){ - Vector3D vector3D = new Vector3D( - getX_3D(latLng.lat, latLng.lng, 0), - getY_3D(latLng.lat, latLng.lng, 0), - getZ_3D(latLng.lat, latLng.lng, 0)); - - polygon3D.addPoint(vector3D); - } - - polygon3D.finish(); - } - - public void createNGon(Polygon3D polygon3D, double lat, double lon, double radius, double altitude, double startAngle, double step) { - polygon3D.reset(); - if(radius < 1e-6){ - return; - } - Point2DGQ point = new Point2DGQ(); - GeoUtils.MoveOnGlobePrecomputed precomputed = new GeoUtils.MoveOnGlobePrecomputed(); - GeoUtils.precomputeMoveOnGlobe(precomputed, lat, lon, radius); - - for (double ang = startAngle; ang <= startAngle + 360; ang += step) { - GeoUtils.moveOnGlobe(precomputed, point, ang); - Vector3D vector3D = new Vector3D(getX_3D(point.x, point.y, altitude), - getY_3D(point.x, point.y, altitude), getZ_3D(point.x, point.y, altitude)); - - polygon3D.addPoint(vector3D); - } - - polygon3D.finish(); - } - - - public void createCross(Polygon3D polygon3D, double lat, double lon, double radius, double offset) { - polygon3D.reset(); - Point2DGQ point = new Point2DGQ(); - - GeoUtils.MoveOnGlobePrecomputed precomputed = new GeoUtils.MoveOnGlobePrecomputed(); - GeoUtils.precomputeMoveOnGlobe(precomputed, lat, lon, radius); - - Vector3D centerPoint = createVec3D(new Point2D(lat, lon)); - double ang = offset; - - polygon3D.addPoint(new Vector3D(centerPoint.getX(), centerPoint.getY(), centerPoint.getZ())); - - for (int i = 0; i < 2; i++) { - polygon3D.addPoint(new Vector3D(centerPoint.getX(), centerPoint.getY(), centerPoint.getZ())); - - GeoUtils.moveOnGlobe(precomputed, point, ang); - Vector3D vector3D = createVec3D(new Point2D(point.x, point.y)); - polygon3D.addPoint(vector3D); - - GeoUtils.moveOnGlobe(precomputed, point, ang + 180); - vector3D = createVec3D(new Point2D(point.x, point.y)); - polygon3D.addPoint(vector3D); - - ang += 90; - } - polygon3D.addPoint(new Vector3D(centerPoint.getX(), centerPoint.getY(), centerPoint.getZ())); - - polygon3D.finish(); - } - - public void createCircle(Polygon3D polygon3D, double lat, double lon, double radius, double altitude, double quality) { - createNGon(polygon3D, lat, lon, radius, altitude, 0, quality); - } - - public void createTriangle(Polygon3D polygon3D, double lat, double lon, double radius, double altitude) { - createNGon(polygon3D, lat, lon, radius, altitude, 0, 120); - } - - public void createSquare(Polygon3D polygon3D, double lat, double lon, double radius, double altitude) { - createNGon(polygon3D, lat, lon, radius, altitude, 45, 90); - } - - public List getAllInside(RenderFeature renderFeature, Shape shape) { - List result = new ArrayList<>(); - renderFeature.getEntities().forEach(renderEntity -> { - if(isMouseInside(renderFeature.getCenterCoords(renderEntity), shape)){ - result.add(renderEntity.getOriginal()); - } - }); - return result; - } - - public List> getRenderFeatures() { - return renderFeatures; - } - - public double pxToDeg(double px) { - return px / oneDegPx; - } - - public boolean isMouseNearby(Point2D coords, double dist, boolean moved) { - if(lastMouse == null || coords == null){ - return false; - } - if(moved && (System.currentTimeMillis() - lastMouseMove) > 15 * 1000){ - return false; - } - Vector3D vect; - Point2D point = projectPoint(vect = new Vector3D(getX_3D(coords.x, coords.y, 0), - getY_3D(coords.x, coords.y, 0), getZ_3D(coords.x, coords.y, 0))); - return isAboveHorizon(vect) && Math.sqrt(Math.pow(point.x - lastMouse.x, 2) + Math.pow(point.y - lastMouse.y, 2)) <= dist; - } - - public boolean isMouseInside(Point2D coords, Shape shape) { - if(coords == null || shape == null){ - return false; - } - Vector3D vect; - Point2D point = projectPoint(vect = new Vector3D(getX_3D(coords.x, coords.y, 0), - getY_3D(coords.x, coords.y, 0), getZ_3D(coords.x, coords.y, 0))); - return isAboveHorizon(vect) && shape.contains(point.toAwt()); - } - - public void mouseMoved(MouseEvent e) { - lastMouse = e.getPoint(); - lastMouseMove = System.currentTimeMillis(); - } - - public Point getLastMouse() { - return lastMouse; - } - - public double getAngularDistance(Point2D centerCoords) { - if(centerCoords == null){ - return Double.NaN; - } - return GeoUtils.greatCircleDistance(centerCoords.x, centerCoords.y, getRenderProperties().centerLat, getRenderProperties().centerLon) / GeoUtils.EARTH_CIRCUMFERENCE * 360.0; - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/Point2D.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/Point2D.java deleted file mode 100644 index 0f576fb..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/Point2D.java +++ /dev/null @@ -1,19 +0,0 @@ -package gqserver.ui.globe; - -public class Point2D { - - public Point2D(){ - - } - - public Point2D(double x, double y){ - this.x=x; - this.y=y; - } - public double x; - public double y; - - public java.awt.geom.Point2D toAwt() { - return new java.awt.geom.Point2D.Double(x, y); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/Polygon3D.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/Polygon3D.java deleted file mode 100644 index 039fb4f..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/Polygon3D.java +++ /dev/null @@ -1,90 +0,0 @@ -package gqserver.ui.globe; - -import globalquake.utils.GeoUtils; -import org.apache.commons.math3.geometry.euclidean.threed.Vector3D; - -import java.util.ArrayList; -import java.util.List; - -public class Polygon3D { - private final List points; - - private Vector3D minPoint; - private Vector3D maxPoint; - private Vector3D[] bbox; - - public Polygon3D() { - points = new ArrayList<>(); - minPoint = new Vector3D(Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY); - maxPoint = new Vector3D(Double.NEGATIVE_INFINITY, Double.NEGATIVE_INFINITY, Double.NEGATIVE_INFINITY); - } - - public static Vector3D min(Vector3D v1, Vector3D v2) { - double minX = Math.min(v1.getX(), v2.getX()); - double minY = Math.min(v1.getY(), v2.getY()); - double minZ = Math.min(v1.getZ(), v2.getZ()); - return new Vector3D(minX, minY, minZ); - } - - public static Vector3D max(Vector3D v1, Vector3D v2) { - double maxX = Math.max(v1.getX(), v2.getX()); - double maxY = Math.max(v1.getY(), v2.getY()); - double maxZ = Math.max(v1.getZ(), v2.getZ()); - return new Vector3D(maxX, maxY, maxZ); - } - - Vector3D ground(Vector3D space) { - double dist = space.distance(GlobeRenderer.center); - double mul = GeoUtils.EARTH_RADIUS / dist; - - return new Vector3D(space.getX() * mul, space.getY() * mul, space.getZ() * mul); - } - - public void finish() { - bbox = new Vector3D[]{ - ground(getBoundingBoxTempCorner(0)), - ground(getBoundingBoxTempCorner(1)), - ground(getBoundingBoxTempCorner(2)), - ground(getBoundingBoxTempCorner(3)), - ground(getBoundingBoxTempCorner(4)), - ground(getBoundingBoxTempCorner(5)), - ground(getBoundingBoxTempCorner(6)), - ground(getBoundingBoxTempCorner(7)) - }; - } - - public void addPoint(Vector3D point) { - points.add(point); - minPoint = min(minPoint, point); - maxPoint = max(maxPoint, point); - } - - public List getPoints() { - return points; - } - - public Vector3D getBoundingBoxCorner(int index) { - if (index < 0 || index > 7) { - throw new IllegalArgumentException("Index must be between 0 and 7"); - } - return bbox == null ? null : bbox[index]; - } - - private Vector3D getBoundingBoxTempCorner(int index) { - if (index < 0 || index > 7) { - throw new IllegalArgumentException("Index must be between 0 and 7"); - } - - double x = (index & 1) == 0 ? minPoint.getX() : maxPoint.getX(); - double y = (index & 2) == 0 ? minPoint.getY() : maxPoint.getY(); - double z = (index & 4) == 0 ? minPoint.getZ() : maxPoint.getZ(); - - return new Vector3D(x, y, z); - } - - public void reset() { - getPoints().clear(); - minPoint = new Vector3D(Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY); - maxPoint = new Vector3D(Double.NEGATIVE_INFINITY, Double.NEGATIVE_INFINITY, Double.NEGATIVE_INFINITY); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/RenderProperties.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/RenderProperties.java deleted file mode 100644 index 0732dfc..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/RenderProperties.java +++ /dev/null @@ -1,21 +0,0 @@ -package gqserver.ui.globe; - -@SuppressWarnings("ClassCanBeRecord") -public class RenderProperties{ - public final double centerLat; - public final double centerLon; - public final double scroll; - - public final int width; - - public final int height; - - public RenderProperties(int width, int height, double centerLat, double centerLon, double scroll) { - this.width = width; - this.height = height; - this.centerLat = centerLat; - this.centerLon = centerLon; - this.scroll = scroll; - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/FeatureGeoPolygons.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/FeatureGeoPolygons.java deleted file mode 100644 index 9c34093..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/FeatureGeoPolygons.java +++ /dev/null @@ -1,84 +0,0 @@ -package gqserver.ui.globe.feature; - -import gqserver.ui.globe.GlobeRenderer; -import gqserver.ui.globe.Point2D; -import gqserver.ui.globe.Polygon3D; -import gqserver.ui.globe.RenderProperties; -import org.apache.commons.math3.geometry.euclidean.threed.Vector3D; -import org.apache.commons.math3.geometry.euclidean.twod.Vector2D; -import org.geojson.LngLatAlt; -import org.geojson.Polygon; - -import java.awt.*; -import java.util.Collection; -import java.util.List; - -public class FeatureGeoPolygons extends RenderFeature { - - public static final Color oceanColor = new Color(5, 20, 30); - public static final Color landColor = new Color(15, 47, 68); - public static final Color borderColor = new Color(153, 153, 153); - - private final List polygonList; - private final double minScroll; - private final double maxScroll; - - public FeatureGeoPolygons(List polygonList, double minScroll, double maxScroll){ - super(1); - this.polygonList = polygonList; - this.minScroll = minScroll; - this.maxScroll = maxScroll; - } - - @Override - public Collection getElements() { - return polygonList; - } - - @Override - public boolean needsProject(RenderEntity entity, boolean propertiesChanged) { - return true; - } - - @Override - public void createPolygon(GlobeRenderer renderer, RenderEntity entity, RenderProperties renderProperties) { - Polygon3D result_pol = new Polygon3D(); - for (LngLatAlt pos : entity.getOriginal().getCoordinates().get(0)) { - Vector3D vec = GlobeRenderer.createVec3D(new Vector2D(pos.getLatitude(), pos.getLongitude()), 0); - result_pol.addPoint(vec); - } - - result_pol.finish(); - entity.getRenderElement(0).setPolygon(result_pol); - } - - @Override - public void project(GlobeRenderer renderer, RenderEntity entity) { - RenderElement element = entity.getRenderElement(0); - element.getShape().reset(); - element.shouldDraw = renderer.project3D(element.getShape(), element.getPolygon(), true); - } - - @Override - protected boolean isVisible(RenderProperties properties) { - return properties.scroll >=minScroll && properties.scroll < maxScroll; - } - - @Override - public Point2D getCenterCoords(RenderEntity entity) { - return null; - } - - @Override - public void render(GlobeRenderer renderer, Graphics2D graphics, RenderEntity entity) { - RenderElement element = entity.getRenderElement(0); - if(!element.shouldDraw){ - return; - } - graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF); - graphics.setColor(landColor); - graphics.fill(element.getShape()); - graphics.setColor(borderColor); - graphics.draw(element.getShape()); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/FeatureHorizon.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/FeatureHorizon.java deleted file mode 100644 index f32bd8e..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/FeatureHorizon.java +++ /dev/null @@ -1,71 +0,0 @@ -package gqserver.ui.globe.feature; - -import globalquake.utils.GeoUtils; -import gqserver.ui.globe.GlobeRenderer; -import gqserver.ui.globe.Point2D; -import gqserver.ui.globe.Polygon3D; -import gqserver.ui.globe.RenderProperties; - -import java.awt.*; -import java.util.ArrayList; -import java.util.Collection; - -public class FeatureHorizon extends RenderFeature{ - - private final ArrayList points = new ArrayList<>(); - private final double quality; - - public FeatureHorizon(Point2D center, double quality){ - super(1); - points.add(center); - this.quality = quality; - } - - @Override - public Collection getElements() { - return points; - } - - @Override - public void createPolygon(GlobeRenderer renderer, RenderEntity entity, RenderProperties renderProperties) { - RenderElement element = entity.getRenderElement(0); - if(element.getPolygon() == null){ - element.setPolygon(new Polygon3D()); - } - renderer.createCircle(element.getPolygon(), - renderProperties.centerLat, - renderProperties.centerLon, - renderer.getMaxAngle() / (2*Math.PI) * GeoUtils.EARTH_CIRCUMFERENCE, 0, quality); - } - - @Override - public boolean needsCreatePolygon(RenderEntity entity, boolean propertiesChanged) { - return super.needsCreatePolygon(entity, propertiesChanged) || propertiesChanged; - } - - @Override - public void project(GlobeRenderer renderer, RenderEntity entity) { - RenderElement element = entity.getRenderElement(0); - element.getShape().reset(); - element.shouldDraw = renderer.project3D(element.getShape(), element.getPolygon(), false); - } - - @Override - public void render(GlobeRenderer renderer, Graphics2D graphics, RenderEntity entity) { - RenderElement element = entity.getRenderElement(0); - if(!element.shouldDraw){ - return; - } - graphics.setColor(FeatureGeoPolygons.oceanColor); - graphics.fill(element.getShape()); - graphics.setColor(FeatureGeoPolygons.borderColor); - graphics.setStroke(new BasicStroke(2f)); - graphics.draw(element.getShape()); - graphics.setStroke(new BasicStroke(1f)); - } - - @Override - public Point2D getCenterCoords(RenderEntity entity) { - return null; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/RenderElement.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/RenderElement.java deleted file mode 100644 index da8bb35..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/RenderElement.java +++ /dev/null @@ -1,26 +0,0 @@ -package gqserver.ui.globe.feature; - -import gqserver.ui.globe.Polygon3D; - -import java.awt.geom.Path2D; - -public class RenderElement { - - public boolean shouldDraw; - - private Polygon3D polygon = new Polygon3D(); - - private final Path2D.Float shape = new Path2D.Float(); - - public Path2D.Float getShape() { - return shape; - } - - public Polygon3D getPolygon() { - return polygon; - } - - public void setPolygon(Polygon3D polygon) { - this.polygon = polygon; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/RenderEntity.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/RenderEntity.java deleted file mode 100644 index d1cfccf..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/RenderEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -package gqserver.ui.globe.feature; - -public class RenderEntity { - - private final E original; - - private final RenderElement[] renderElements; - - public RenderEntity(E original, int renderElements){ - this.original = original; - this.renderElements = new RenderElement[renderElements]; - for(int i = 0; i < renderElements; i++){ - this.renderElements[i] = new RenderElement(); - } - } - - public E getOriginal() { - return original; - } - - public RenderElement getRenderElement(int index){ - return renderElements[index]; - } - - public RenderElement[] getRenderElements() { - return renderElements; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/RenderFeature.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/RenderFeature.java deleted file mode 100644 index 37ba359..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/globe/feature/RenderFeature.java +++ /dev/null @@ -1,113 +0,0 @@ -package gqserver.ui.globe.feature; - -import globalquake.core.Settings; -import globalquake.utils.monitorable.Monitorable; -import gqserver.ui.globe.GlobeRenderer; -import gqserver.ui.globe.Point2D; -import gqserver.ui.globe.RenderProperties; - -import java.awt.*; -import java.util.Arrays; -import java.util.Collection; -import java.util.concurrent.ConcurrentHashMap; - -public abstract class RenderFeature { - - private final int renderElements; - private int lastHash = -651684313; // random - private RenderProperties lastProperties; - private int settingsChanges = 0; - - public abstract Collection getElements(); - - private ConcurrentHashMap> entities = new ConcurrentHashMap<>(); - private ConcurrentHashMap> entities_temp = new ConcurrentHashMap<>(); - - public RenderFeature(int renderElements){ - this.renderElements = renderElements; - } - - private void swapEntities(){ - var entities3 = entities; - entities = entities_temp; - entities_temp = entities3; - } - - public final boolean updateEntities(){ - int hash; - if(getElements() instanceof Monitorable){ - hash = ((Monitorable) getElements()).getMonitorState(); - }else { - hash = getElements().hashCode(); - } - if(hash != lastHash) { - entities_temp.clear(); - getElements().parallelStream().forEach(element -> entities_temp.put(element, entities.getOrDefault(element, new RenderEntity<>(element, renderElements)))); - swapEntities(); - - lastHash = hash; - return true; - } - - return false; - } - - public boolean needsCreatePolygon(RenderEntity entity, boolean propertiesChanged){ - return Arrays.stream(entity.getRenderElements()).anyMatch(renderElement -> renderElement.getPolygon() == null); - } - - public boolean needsProject(RenderEntity entity, boolean propertiesChanged){ - return Arrays.stream(entity.getRenderElements()).anyMatch(renderElement -> renderElement.getShape() == null) || propertiesChanged; - } - - public boolean needsUpdateEntities() { - return getEntities().isEmpty(); - } - - public final boolean propertiesChanged(RenderProperties properties){ - boolean result = properties != lastProperties; - lastProperties = properties; - return result; - } - - public final void process(GlobeRenderer renderer, RenderProperties renderProperties) { - boolean entitiesUpdated = false; - boolean settingsChanged = Settings.changes != settingsChanges; - settingsChanges = Settings.changes; - if(needsUpdateEntities() || settingsChanged) { - entitiesUpdated = updateEntities(); - } - - boolean propertiesChanged = propertiesChanged(renderProperties) || settingsChanged; - - boolean finalEntitiesUpdated = entitiesUpdated; - getEntities().parallelStream().forEach(entity -> { - if(finalEntitiesUpdated || settingsChanged || needsCreatePolygon(entity, propertiesChanged)) - createPolygon(renderer, entity, renderProperties); - if(finalEntitiesUpdated || settingsChanged || needsProject(entity, propertiesChanged)) - project(renderer, entity); - }); - } - - public final Collection> getEntities() { - return entities.values(); - } - - public abstract void createPolygon(GlobeRenderer renderer, RenderEntity entity, RenderProperties renderProperties); - - public abstract void project(GlobeRenderer renderer, RenderEntity entity); - - public abstract void render(GlobeRenderer renderer, Graphics2D graphics, RenderEntity entity); - - protected boolean isVisible(RenderProperties properties){ - return true; - } - - public void renderAll(GlobeRenderer renderer, Graphics2D graphics, RenderProperties properties) { - if(isVisible(properties)){ - getEntities().forEach(entity -> render(renderer, graphics, entity)); - } - } - - public abstract Point2D getCenterCoords(RenderEntity entity); -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/DatabaseMonitorFrame.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/DatabaseMonitorFrame.java deleted file mode 100644 index 3651f35..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/DatabaseMonitorFrame.java +++ /dev/null @@ -1,162 +0,0 @@ -package gqserver.ui.server; - -import globalquake.core.database.StationDatabaseManager; -import globalquake.core.exception.FatalIOException; -import gqserver.main.Main; -import gqserver.ui.GQFrame; -import gqserver.ui.server.action.RestoreDatabaseAction; -import gqserver.ui.stationselect.StationSelectFrame; - -import javax.swing.*; -import javax.swing.border.EmptyBorder; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.awt.event.WindowAdapter; -import java.awt.event.WindowEvent; -import java.util.Objects; -import java.util.Timer; -import java.util.TimerTask; - -public class DatabaseMonitorFrame extends GQFrame { - - private final StationDatabaseManager manager; - private JProgressBar mainProgressBar; - private JButton btnSelectStations; - - private final AbstractAction restoreDatabaseAction; - private JComponent buttonsOutsidePanel; - - public JProgressBar getMainProgressBar() { - return mainProgressBar; - } - - public DatabaseMonitorFrame(StationDatabaseManager manager) { - this.manager = manager; - - this.restoreDatabaseAction = new RestoreDatabaseAction(this, manager); - restoreDatabaseAction.setEnabled(false); - - manager.addStatusListener(() -> restoreDatabaseAction.setEnabled(!manager.isUpdating())); - - setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); - JPanel contentPane = new JPanel(); - contentPane.setPreferredSize(new Dimension(1000, 600)); - setContentPane(contentPane); - contentPane.setLayout(new BorderLayout()); - - contentPane.add(createTabbedPane(), BorderLayout.CENTER); - contentPane.add(createBottomPanel(), BorderLayout.SOUTH); - - pack(); - setTitle(Main.fullName); - setLocationRelativeTo(null); - - runTimer(); - } - - private void runTimer() { - final java.util.Timer timer; - timer = new Timer(); - - TimerTask task = new TimerTask() { - - @Override - public void run() { - updateFrame(); - } - }; - - timer.schedule(task, 50, 50); - - this.addWindowListener(new WindowAdapter() { - @Override - public void windowClosed(WindowEvent e) { - windowClosing(e); - } - - @Override - public void windowClosing(WindowEvent e) { - try { - manager.save(); - } catch (FatalIOException ex) { - Main.getErrorHandler().handleException(ex); - } - timer.cancel(); - } - }); - } - - private void updateFrame() { - repaint(); - } - - private Component createTabbedPane() { - JTabbedPane tabbedPane = new JTabbedPane(); - tabbedPane.addTab("Seedlink Networks", new SeedlinkServersPanel(this, restoreDatabaseAction)); - tabbedPane.addTab("FDSNWS", new FDSNWSPanel(this, restoreDatabaseAction)); - tabbedPane.addTab("Server Status", new ServerStatusPanel()); - return tabbedPane; - } - - private Component createBottomPanel() { - JPanel bottomPanel = new JPanel(); - bottomPanel.setLayout(new GridLayout(2, 1)); - - GridLayout grid = new GridLayout(2, 1); - grid.setVgap(5); - buttonsOutsidePanel = new JPanel(grid); - buttonsOutsidePanel.setBorder(new EmptyBorder(5, 5, 5, 5)); - - JPanel buttonsPanel = new JPanel(); - - GridLayout gridLayout = new GridLayout(1, 2); - gridLayout.setHgap(5); - buttonsPanel.setLayout(gridLayout); - - btnSelectStations = new JButton("Select Stations"); - btnSelectStations.setEnabled(false); - - ImageIcon selectStationsIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/selectStations.png"))); - Image image = selectStationsIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - btnSelectStations.setIcon(new ImageIcon(image)); - - btnSelectStations.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - new StationSelectFrame(DatabaseMonitorFrame.this).setVisible(true); - } - }); - - buttonsPanel.add(btnSelectStations); - - bottomPanel.add(new StationCountPanel(this, new GridLayout(2, 2))); - - mainProgressBar = new JProgressBar(JProgressBar.HORIZONTAL, 0, 100); - mainProgressBar.setValue(0); - mainProgressBar.setStringPainted(true); - mainProgressBar.setString("Init..."); - - buttonsOutsidePanel.add(buttonsPanel); - buttonsOutsidePanel.add(mainProgressBar); - - bottomPanel.add(buttonsOutsidePanel); - return bottomPanel; - } - - public StationDatabaseManager getManager() { - return manager; - } - - public void initDone() { - buttonsOutsidePanel.remove(mainProgressBar); - buttonsOutsidePanel.setLayout(new GridLayout(1, 1)); - buttonsOutsidePanel.revalidate(); - buttonsOutsidePanel.repaint(); - restoreDatabaseAction.setEnabled(true); - } - - public JButton getBtnSelectStations() { - return btnSelectStations; - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/FDSNWSPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/FDSNWSPanel.java deleted file mode 100644 index d6fd69e..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/FDSNWSPanel.java +++ /dev/null @@ -1,97 +0,0 @@ -package gqserver.ui.server; - -import gqserver.ui.server.action.source.AddStationSourceAction; -import gqserver.ui.server.action.source.EditStationSourceAction; -import gqserver.ui.server.action.source.RemoveStationSourceAction; -import gqserver.ui.server.action.source.UpdateStationSourceAction; -import gqserver.ui.server.table.model.StationSourcesTableModel; - -import javax.swing.*; -import javax.swing.event.ListSelectionEvent; -import java.awt.*; - -public class FDSNWSPanel extends JPanel { - private final DatabaseMonitorFrame databaseMonitorFrame; - - private final AddStationSourceAction addStationSourceAction; - private final EditStationSourceAction editStationSourceAction; - private final RemoveStationSourceAction removeStationSourceAction; - private final UpdateStationSourceAction updateStationSourceAction; - private final JTable table; - private StationSourcesTableModel tableModel; - - public FDSNWSPanel(DatabaseMonitorFrame databaseMonitorFrame, AbstractAction restoreDatabaseAction) { - this.databaseMonitorFrame = databaseMonitorFrame; - this.addStationSourceAction = new AddStationSourceAction(databaseMonitorFrame, databaseMonitorFrame.getManager()); - this.editStationSourceAction = new EditStationSourceAction(databaseMonitorFrame, databaseMonitorFrame.getManager()); - this.removeStationSourceAction = new RemoveStationSourceAction(databaseMonitorFrame.getManager(), this); - this.updateStationSourceAction = new UpdateStationSourceAction(databaseMonitorFrame.getManager()); - - setLayout(new BorderLayout()); - - JPanel actionsWrapPanel = new JPanel(); - JPanel actionsPanel = createActionsPanel(restoreDatabaseAction); - actionsWrapPanel.add(actionsPanel); - add(actionsWrapPanel, BorderLayout.NORTH); - - add(new JScrollPane(table = createTable()), BorderLayout.CENTER); - - this.editStationSourceAction.setTableModel(tableModel); - this.editStationSourceAction.setTable(table); - this.editStationSourceAction.setEnabled(false); - this.removeStationSourceAction.setTableModel(tableModel); - this.removeStationSourceAction.setTable(table); - this.removeStationSourceAction.setEnabled(false); - this.updateStationSourceAction.setTableModel(tableModel); - this.updateStationSourceAction.setTable(table); - this.updateStationSourceAction.setEnabled(false); - this.addStationSourceAction.setEnabled(false); - - databaseMonitorFrame.getManager().addStatusListener(() -> rowSelectionChanged(null)); - databaseMonitorFrame.getManager().addUpdateListener(() -> tableModel.applyFilter()); - } - - private JPanel createActionsPanel(AbstractAction restoreDatabaseAction) { - JPanel actionsPanel = new JPanel(); - - GridLayout gridLayout = new GridLayout(1, 4); - gridLayout.setHgap(5); - - actionsPanel.setLayout(gridLayout); - - actionsPanel.add(new JButton(addStationSourceAction)); - actionsPanel.add(new JButton(editStationSourceAction)); - actionsPanel.add(new JButton(removeStationSourceAction)); - actionsPanel.add(new JButton(updateStationSourceAction)); - actionsPanel.add(new JButton(restoreDatabaseAction)); - - return actionsPanel; - } - - private JTable createTable() { - JTable table = new JTable(tableModel = new StationSourcesTableModel(databaseMonitorFrame.getManager().getStationDatabase().getStationSources())); - table.setFont(new Font("Arial", Font.PLAIN, 14)); - table.setRowHeight(20); - table.setGridColor(Color.black); - table.setShowGrid(true); - table.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS); - table.setAutoCreateRowSorter(true); - - for (int i = 0; i < table.getColumnCount(); i++) { - table.getColumnModel().getColumn(i).setCellRenderer(tableModel.getColumnRenderer(i)); - } - - table.getSelectionModel().addListSelectionListener(this::rowSelectionChanged); - - return table; - } - - private void rowSelectionChanged(ListSelectionEvent ignoredEvent) { - var count = table.getSelectionModel().getSelectedItemsCount(); - editStationSourceAction.setEnabled(count == 1 && !databaseMonitorFrame.getManager().isUpdating()); - removeStationSourceAction.setEnabled(count >= 1 && !databaseMonitorFrame.getManager().isUpdating()); - updateStationSourceAction.setEnabled(count >= 1 && !databaseMonitorFrame.getManager().isUpdating()); - addStationSourceAction.setEnabled(!databaseMonitorFrame.getManager().isUpdating()); - databaseMonitorFrame.getBtnSelectStations().setEnabled(!databaseMonitorFrame.getManager().isUpdating()); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/SeedlinkServersPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/SeedlinkServersPanel.java deleted file mode 100644 index d66dbd3..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/SeedlinkServersPanel.java +++ /dev/null @@ -1,99 +0,0 @@ -package gqserver.ui.server; - -import gqserver.ui.server.action.seedlink.AddSeedlinkNetworkAction; -import gqserver.ui.server.action.seedlink.EditSeedlinkNetworkAction; -import gqserver.ui.server.action.seedlink.RemoveSeedlinkNetworkAction; -import gqserver.ui.server.action.seedlink.UpdateSeedlinkNetworkAction; -import gqserver.ui.server.table.model.SeedlinkNetworksTableModel; - -import javax.swing.*; -import javax.swing.event.ListSelectionEvent; -import java.awt.*; - -public class SeedlinkServersPanel extends JPanel { - private final DatabaseMonitorFrame databaseMonitorFrame; - private final JTable table; - - private SeedlinkNetworksTableModel tableModel; - - private final AddSeedlinkNetworkAction addSeedlinkNetworkAction; - private final EditSeedlinkNetworkAction editSeedlinkNetworkAction; - private final RemoveSeedlinkNetworkAction removeSeedlinkNetworkAction; - private final UpdateSeedlinkNetworkAction updateSeedlinkNetworkAction; - - public SeedlinkServersPanel(DatabaseMonitorFrame databaseMonitorFrame, AbstractAction restoreDatabaseAction) { - this.databaseMonitorFrame = databaseMonitorFrame; - - this.addSeedlinkNetworkAction = new AddSeedlinkNetworkAction(databaseMonitorFrame, databaseMonitorFrame.getManager()); - this.editSeedlinkNetworkAction = new EditSeedlinkNetworkAction(databaseMonitorFrame, databaseMonitorFrame.getManager()); - this.removeSeedlinkNetworkAction = new RemoveSeedlinkNetworkAction(databaseMonitorFrame.getManager(), this); - this.updateSeedlinkNetworkAction = new UpdateSeedlinkNetworkAction(databaseMonitorFrame.getManager()); - - setLayout(new BorderLayout()); - - JPanel actionsWrapPanel = new JPanel(); - JPanel actionsPanel = createActionsPanel(restoreDatabaseAction); - actionsWrapPanel.add(actionsPanel); - add(actionsWrapPanel, BorderLayout.NORTH); - - add(new JScrollPane(table = createTable()), BorderLayout.CENTER); - - this.editSeedlinkNetworkAction.setTableModel(tableModel); - this.editSeedlinkNetworkAction.setTable(table); - this.editSeedlinkNetworkAction.setEnabled(false); - this.removeSeedlinkNetworkAction.setTableModel(tableModel); - this.removeSeedlinkNetworkAction.setTable(table); - this.removeSeedlinkNetworkAction.setEnabled(false); - this.updateSeedlinkNetworkAction.setTableModel(tableModel); - this.updateSeedlinkNetworkAction.setTable(table); - this.updateSeedlinkNetworkAction.setEnabled(false); - this.addSeedlinkNetworkAction.setEnabled(false); - - databaseMonitorFrame.getManager().addStatusListener(() -> rowSelectionChanged(null)); - databaseMonitorFrame.getManager().addUpdateListener(() -> tableModel.applyFilter()); - } - - private JPanel createActionsPanel(AbstractAction restoreDatabaseAction) { - JPanel actionsPanel = new JPanel(); - - GridLayout gridLayout = new GridLayout(1,4); - gridLayout.setHgap(5); - - actionsPanel.setLayout(gridLayout); - - actionsPanel.add(new JButton(addSeedlinkNetworkAction)); - actionsPanel.add(new JButton(editSeedlinkNetworkAction)); - actionsPanel.add(new JButton(removeSeedlinkNetworkAction)); - actionsPanel.add(new JButton(updateSeedlinkNetworkAction)); - actionsPanel.add(new JButton(restoreDatabaseAction)); - - return actionsPanel; - } - - private JTable createTable() { - JTable table = new JTable(tableModel = new SeedlinkNetworksTableModel(databaseMonitorFrame.getManager().getStationDatabase().getSeedlinkNetworks())); - table.setFont(new Font("Arial", Font.PLAIN, 14)); - table.setRowHeight(20); - table.setGridColor(Color.black); - table.setShowGrid(true); - table.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS); - table.setAutoCreateRowSorter(true); - - for (int i = 0; i < table.getColumnCount(); i++) { - table.getColumnModel().getColumn(i).setCellRenderer(tableModel.getColumnRenderer(i)); - } - - table.getSelectionModel().addListSelectionListener(this::rowSelectionChanged); - - return table; - } - - private void rowSelectionChanged(ListSelectionEvent ignoredEvent) { - var count = table.getSelectionModel().getSelectedItemsCount(); - editSeedlinkNetworkAction.setEnabled(count == 1 && !databaseMonitorFrame.getManager().isUpdating()); - removeSeedlinkNetworkAction.setEnabled(count >= 1 && !databaseMonitorFrame.getManager().isUpdating()); - updateSeedlinkNetworkAction.setEnabled(count >= 1 && !databaseMonitorFrame.getManager().isUpdating()); - addSeedlinkNetworkAction.setEnabled(!databaseMonitorFrame.getManager().isUpdating()); - databaseMonitorFrame.getBtnSelectStations().setEnabled(!databaseMonitorFrame.getManager().isUpdating()); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/ServerStatusPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/ServerStatusPanel.java deleted file mode 100644 index a23e6e4..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/ServerStatusPanel.java +++ /dev/null @@ -1,126 +0,0 @@ -package gqserver.ui.server; - -import globalquake.core.exception.RuntimeApplicationException; -import gqserver.events.GlobalQuakeServerEventListener; -import gqserver.events.specific.ServerStatusChangedEvent; -import gqserver.main.Main; -import gqserver.server.GlobalQuakeServer; -import gqserver.server.SocketStatus; -import gqserver.ui.server.tabs.*; - -import javax.swing.*; -import java.awt.*; -import java.io.IOException; - -public class ServerStatusPanel extends JPanel { - private JButton controlButton; - private JLabel statusLabel; - private JTextField addressField; - private JTextField portField; - - public ServerStatusPanel() { - setLayout(new BorderLayout()); - - add(createTopPanel(), BorderLayout.NORTH); - add(createMiddlePanel(), BorderLayout.CENTER); - } - - private Component createMiddlePanel() { - JTabbedPane tabbedPane = new JTabbedPane(); - - tabbedPane.addTab("Status", new StatusTab()); - tabbedPane.addTab("Seedlinks", new SeedlinksTab()); - tabbedPane.addTab("Clients", new ClientsTab()); - tabbedPane.addTab("Earthquakes", new EarthquakesTab()); - tabbedPane.addTab("Clusters", new ClustersTab()); - - return tabbedPane; - } - - private JPanel createTopPanel() { - JPanel topPanel = new JPanel(); - topPanel.setLayout(new BoxLayout(topPanel, BoxLayout.X_AXIS)); - - JPanel addressPanel = new JPanel(new GridLayout(2,1)); - addressPanel.setBorder(BorderFactory.createTitledBorder("Server address")); - - JPanel ipPanel = new JPanel(); - ipPanel.setLayout(new BoxLayout(ipPanel, BoxLayout.X_AXIS)); - ipPanel.add(new JLabel("IP Address: ")); - ipPanel.add(addressField = new JTextField("0.0.0.0",20)); - - addressPanel.add(ipPanel); - - JPanel portPanel = new JPanel(); - portPanel.setLayout(new BoxLayout(portPanel, BoxLayout.X_AXIS)); - portPanel.add(new JLabel("Port: ")); - portPanel.add(portField = new JTextField("12345",20)); - - addressPanel.add(portPanel); - - topPanel.add(addressPanel); - - JPanel controlPanel = new JPanel(new GridLayout(2,1)); - controlPanel.setBorder(BorderFactory.createTitledBorder("Control Panel")); - - controlPanel.add(statusLabel = new JLabel("Status: Idle")); - controlPanel.add(controlButton = new JButton("Start Server")); - - GlobalQuakeServer.instance.getServerEventHandler().registerEventListener(new GlobalQuakeServerEventListener(){ - @Override - public void onServerStatusChanged(ServerStatusChangedEvent event) { - switch (event.status()){ - case IDLE -> { - addressField.setEnabled(true); - portField.setEnabled(true); - controlButton.setEnabled(true); - controlButton.setText("Start Server"); - } - case OPENING -> { - addressField.setEnabled(false); - portField.setEnabled(false); - controlButton.setEnabled(false); - controlButton.setText("Start Server"); - } - case RUNNING -> { - addressField.setEnabled(false); - portField.setEnabled(false); - controlButton.setEnabled(true); - controlButton.setText("Stop Server"); - } - } - statusLabel.setText("Status: %s".formatted(event.status())); - } - }); - - controlButton.addActionListener(actionEvent -> { - SocketStatus status = GlobalQuakeServer.instance.getServerSocket().getStatus(); - if(status == SocketStatus.IDLE){ - try { - GlobalQuakeServer.instance.getServerSocket().run(addressField.getText(), Integer.parseInt(portField.getText())); - GlobalQuakeServer.instance.startRuntime(); - } catch(Exception e){ - Main.getErrorHandler().handleException(new RuntimeApplicationException("Failed to start server", e)); - } - } else if(status == SocketStatus.RUNNING) { - if(confirm("Are you sure you want to close the server?")) { - try { - GlobalQuakeServer.instance.getServerSocket().stop(); - GlobalQuakeServer.instance.stopRuntime(); - } catch (IOException e) { - Main.getErrorHandler().handleException(new RuntimeApplicationException("Failed to stop server", e)); - } - } - } - }); - - topPanel.add(controlPanel); - return topPanel; - } - - @SuppressWarnings("SameParameterValue") - private boolean confirm(String s) { - return JOptionPane.showConfirmDialog(this, s, "Confirmation", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION; - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/StationCountPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/StationCountPanel.java deleted file mode 100644 index 3577993..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/StationCountPanel.java +++ /dev/null @@ -1,122 +0,0 @@ -package gqserver.ui.server; - -import globalquake.core.database.Channel; -import globalquake.core.database.Network; -import globalquake.core.database.Station; -import gqserver.ui.stationselect.StationColor; - -import javax.swing.*; -import java.awt.*; -import java.awt.geom.Path2D; - -public class StationCountPanel extends JPanel { - private final DatabaseMonitorFrame databaseMonitorFrame; - private final CounterPanel total; - private final CounterPanel available; - private final CounterPanel selected; - private final CounterPanel unavailable; - - public StationCountPanel(DatabaseMonitorFrame databaseMonitorFrame, LayoutManager layoutManager) { - this.databaseMonitorFrame = databaseMonitorFrame; - setLayout(layoutManager); - - add(total = new CounterPanel("Total Channels", StationColor.ALL)); - add(available = new CounterPanel("Available Channels", StationColor.AVAILABLE)); - add(selected = new CounterPanel("Selected Channels", StationColor.SELECTED)); - add(unavailable = new CounterPanel("Unavailable Channels", StationColor.UNAVAILABLE)); - - databaseMonitorFrame.getManager().addUpdateListener(this::recalculate); - - recalculate(); - } - - public void recalculate() { - int tot = 0; - int ava = 0; - int sel = 0; - int unb = 0; - databaseMonitorFrame.getManager().getStationDatabase().getDatabaseReadLock().lock(); - try{ - for(Network network : databaseMonitorFrame.getManager().getStationDatabase().getNetworks()){ - for(Station station: network.getStations()){ - for(Channel channel:station.getChannels()){ - tot++; - if(channel.isAvailable()){ - ava++; - } - if(channel.equals(station.getSelectedChannel())){ - if(channel.isAvailable()){ - sel++; - } else { - unb++; - } - } - } - } - } - } finally { - databaseMonitorFrame.getManager().getStationDatabase().getDatabaseReadLock().unlock(); - } - total.setCount(tot); - available.setCount(ava); - selected.setCount(sel); - unavailable.setCount(unb); - } - - static class CounterPanel extends JPanel - { - private final String name; - private final JLabel label; - private int count; - public CounterPanel(String name, Color color){ - this.name = name; - add(new StationIcon(color)); - add(label = new JLabel()); - setBorder(BorderFactory.createRaisedBevelBorder()); - updateLabel(); - } - - private void updateLabel() { - label.setText("%d %s".formatted(count, name)); - } - - @SuppressWarnings("unused") - public int getCount() { - return count; - } - - public void setCount(int count) { - this.count = count; - updateLabel(); - repaint(); - } - - private static class StationIcon extends JPanel { - private final Color color; - - public StationIcon(Color color) { - this.color = color; - setPreferredSize(new Dimension(22,22)); - } - - @Override - public void paint(Graphics gr) { - super.paint(gr); - Graphics2D g = (Graphics2D) gr; - int size = Math.min(getWidth(), getHeight()) - 1; - - Path2D path = new Path2D.Double(); - path.moveTo(0, size * (Math.sqrt(3) / 2.0)); - path.lineTo(size, size * (Math.sqrt(3) / 2.0)); - path.lineTo(size/ 2.0, 0); - path.closePath(); - - g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); - g.setColor(color); - g.fill(path); - g.setColor(Color.black); - g.draw(path); - } - } - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/RestoreDatabaseAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/RestoreDatabaseAction.java deleted file mode 100644 index cf59b59..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/RestoreDatabaseAction.java +++ /dev/null @@ -1,41 +0,0 @@ -package gqserver.ui.server.action; - -import globalquake.core.database.StationDatabaseManager; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.Objects; - -public class RestoreDatabaseAction extends AbstractAction { - - private final StationDatabaseManager databaseManager; - private final Window parent; - - public RestoreDatabaseAction(Window parent, StationDatabaseManager databaseManager){ - super("Restore Defaults"); - this.databaseManager = databaseManager; - this.parent = parent; - - putValue(SHORT_DESCRIPTION, "Restore everything to default"); - - ImageIcon restoreIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/restore.png"))); - Image image = restoreIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - int option = JOptionPane.showConfirmDialog(parent, - "Are you sure you want to restore everything to the default state?", - "Confirmation", - JOptionPane.YES_NO_OPTION); - - if (option != JOptionPane.YES_OPTION) { - return; - } - - databaseManager.restore(); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/AddSeedlinkNetworkAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/AddSeedlinkNetworkAction.java deleted file mode 100644 index e33145b..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/AddSeedlinkNetworkAction.java +++ /dev/null @@ -1,34 +0,0 @@ -package gqserver.ui.server.action.seedlink; - -import globalquake.core.database.StationDatabaseManager; -import gqserver.ui.server.dialog.EditSeedlinkNetworkDialog; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.Objects; - -public class AddSeedlinkNetworkAction extends AbstractAction { - - private final StationDatabaseManager databaseManager; - private final Window parent; - - public AddSeedlinkNetworkAction(Window parent, StationDatabaseManager databaseManager){ - super("Add"); - this.databaseManager = databaseManager; - this.parent = parent; - - putValue(SHORT_DESCRIPTION, "Add New Seedlink Network"); - - ImageIcon addIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/add.png"))); - Image image = addIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - new EditSeedlinkNetworkDialog(parent, databaseManager, null); - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/EditSeedlinkNetworkAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/EditSeedlinkNetworkAction.java deleted file mode 100644 index cf62a6b..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/EditSeedlinkNetworkAction.java +++ /dev/null @@ -1,55 +0,0 @@ -package gqserver.ui.server.action.seedlink; - -import globalquake.core.database.SeedlinkNetwork; -import globalquake.core.database.StationDatabaseManager; -import gqserver.ui.server.dialog.EditSeedlinkNetworkDialog; -import gqserver.ui.server.table.model.FilterableTableModel; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.Objects; - -public class EditSeedlinkNetworkAction extends AbstractAction { - - private final StationDatabaseManager databaseManager; - private final Window parent; - private FilterableTableModel tableModel; - - private JTable table; - - public EditSeedlinkNetworkAction(Window parent, StationDatabaseManager databaseManager){ - super("Edit"); - this.databaseManager = databaseManager; - this.parent = parent; - - putValue(SHORT_DESCRIPTION, "Edit Seedlink Network"); - - ImageIcon editIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/edit.png"))); - Image image = editIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - int[] selectedRows = table.getSelectedRows(); - if (selectedRows.length != 1) { - throw new IllegalStateException("Invalid selected rows count (must be 1): " + selectedRows.length); - } - if (table.isEditing()) { - table.getCellEditor().cancelCellEditing(); - } - int modelRow = table.convertRowIndexToModel(selectedRows[0]); - SeedlinkNetwork seedlinkNetwork = tableModel.getEntity(modelRow); - new EditSeedlinkNetworkDialog(parent, databaseManager, seedlinkNetwork); - } - - public void setTableModel(FilterableTableModel tableModel) { - this.tableModel = tableModel; - } - - public void setTable(JTable table) { - this.table = table; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/RemoveSeedlinkNetworkAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/RemoveSeedlinkNetworkAction.java deleted file mode 100644 index c088c73..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/RemoveSeedlinkNetworkAction.java +++ /dev/null @@ -1,76 +0,0 @@ -package gqserver.ui.server.action.seedlink; - - -import globalquake.core.database.SeedlinkNetwork; -import globalquake.core.database.StationDatabaseManager; -import gqserver.ui.server.table.model.FilterableTableModel; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.ArrayList; -import java.util.Objects; - -public class RemoveSeedlinkNetworkAction extends AbstractAction { - - private final StationDatabaseManager databaseManager; - private final Component parent; - private FilterableTableModel tableModel; - - private JTable table; - - public RemoveSeedlinkNetworkAction(StationDatabaseManager databaseManager, Component parent){ - super("Remove"); - this.parent = parent; - this.databaseManager = databaseManager; - - putValue(SHORT_DESCRIPTION, "Remove Seedlink Network"); - - ImageIcon removeIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/remove.png"))); - Image image = removeIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - int[] selectedRows = table.getSelectedRows(); - if (selectedRows.length < 1) { - throw new IllegalStateException("Invalid selected rows count (must be > 0): " + selectedRows.length); - } - if (table.isEditing()) { - table.getCellEditor().cancelCellEditing(); - } - - int option = JOptionPane.showConfirmDialog(parent, - "Are you sure you want to delete those items?", - "Confirmation", - JOptionPane.YES_NO_OPTION); - - if (option != JOptionPane.YES_OPTION) { - return; - } - - databaseManager.getStationDatabase().getDatabaseWriteLock().lock(); - try{ - java.util.List toBeRemoved = new ArrayList<>(); - for(int i:selectedRows){ - SeedlinkNetwork seedlinkNetwork = tableModel.getEntity(table.getRowSorter().convertRowIndexToModel(i)); - toBeRemoved.add(seedlinkNetwork); - } - databaseManager.removeAllSeedlinks(toBeRemoved); - }finally { - databaseManager.getStationDatabase().getDatabaseWriteLock().unlock(); - } - - databaseManager.fireUpdateEvent(); - } - - public void setTableModel(FilterableTableModel tableModel) { - this.tableModel = tableModel; - } - - public void setTable(JTable table) { - this.table = table; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/UpdateSeedlinkNetworkAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/UpdateSeedlinkNetworkAction.java deleted file mode 100644 index df7b789..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/seedlink/UpdateSeedlinkNetworkAction.java +++ /dev/null @@ -1,63 +0,0 @@ -package gqserver.ui.server.action.seedlink; - - -import globalquake.core.database.SeedlinkNetwork; -import globalquake.core.database.StationDatabaseManager; -import globalquake.core.exception.RuntimeApplicationException; -import gqserver.ui.server.table.model.FilterableTableModel; - -import javax.swing.*; - -import java.awt.Image; -import java.awt.event.ActionEvent; -import java.util.ArrayList; -import java.util.List; -import java.util.Objects; - -public class UpdateSeedlinkNetworkAction extends AbstractAction { - - private final StationDatabaseManager databaseManager; - private FilterableTableModel tableModel; - - private JTable table; - - public UpdateSeedlinkNetworkAction(StationDatabaseManager databaseManager) { - super("Update"); - this.databaseManager = databaseManager; - - putValue(SHORT_DESCRIPTION, "Update Seedlink Networks"); - - ImageIcon updateIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/update.png"))); - Image image = updateIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - this.setEnabled(false); - int[] selectedRows = table.getSelectedRows(); - if (selectedRows.length < 1) { - throw new RuntimeApplicationException("Invalid selected rows count (must be > 0): " + selectedRows.length); - } - if (table.isEditing()) { - table.getCellEditor().cancelCellEditing(); - } - - List toBeUpdated = new ArrayList<>(); - for (int i : selectedRows) { - SeedlinkNetwork seedlinkNetwork = tableModel.getEntity(table.getRowSorter().convertRowIndexToModel(i)); - toBeUpdated.add(seedlinkNetwork); - } - - databaseManager.runAvailabilityCheck(toBeUpdated, () -> UpdateSeedlinkNetworkAction.this.setEnabled(true)); - } - - public void setTableModel(FilterableTableModel tableModel) { - this.tableModel = tableModel; - } - - public void setTable(JTable table) { - this.table = table; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/AddStationSourceAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/AddStationSourceAction.java deleted file mode 100644 index fe280ee..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/AddStationSourceAction.java +++ /dev/null @@ -1,33 +0,0 @@ -package gqserver.ui.server.action.source; - -import globalquake.core.database.StationDatabaseManager; -import gqserver.ui.server.dialog.EditStationSourceDialog; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.Objects; - -public class AddStationSourceAction extends AbstractAction { - - private final StationDatabaseManager databaseManager; - private final Window parent; - - public AddStationSourceAction(Window parent, StationDatabaseManager databaseManager){ - super("Add"); - this.databaseManager = databaseManager; - this.parent = parent; - - putValue(SHORT_DESCRIPTION, "Add New Station Source"); - - ImageIcon addIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/add.png"))); - Image image = addIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - new EditStationSourceDialog(parent, databaseManager, null); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/EditStationSourceAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/EditStationSourceAction.java deleted file mode 100644 index a4d2dfa..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/EditStationSourceAction.java +++ /dev/null @@ -1,55 +0,0 @@ -package gqserver.ui.server.action.source; - -import globalquake.core.database.StationDatabaseManager; -import globalquake.core.database.StationSource; -import gqserver.ui.server.dialog.EditStationSourceDialog; -import gqserver.ui.server.table.model.FilterableTableModel; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.Objects; - -public class EditStationSourceAction extends AbstractAction { - - private final StationDatabaseManager databaseManager; - private final Window parent; - private FilterableTableModel tableModel; - - private JTable table; - - public EditStationSourceAction(Window parent, StationDatabaseManager databaseManager){ - super("Edit"); - this.databaseManager = databaseManager; - this.parent = parent; - - putValue(SHORT_DESCRIPTION, "Edit Station Source"); - - ImageIcon editIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/edit.png"))); - Image image = editIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - int[] selectedRows = table.getSelectedRows(); - if (selectedRows.length != 1) { - throw new IllegalStateException("Invalid selected rows count (must be 1): " + selectedRows.length); - } - if (table.isEditing()) { - table.getCellEditor().cancelCellEditing(); - } - int modelRow = table.convertRowIndexToModel(selectedRows[0]); - StationSource stationSource = tableModel.getEntity(modelRow); - new EditStationSourceDialog(parent, databaseManager, stationSource); - } - - public void setTableModel(FilterableTableModel tableModel) { - this.tableModel = tableModel; - } - - public void setTable(JTable table) { - this.table = table; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/RemoveStationSourceAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/RemoveStationSourceAction.java deleted file mode 100644 index 76786fc..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/RemoveStationSourceAction.java +++ /dev/null @@ -1,77 +0,0 @@ -package gqserver.ui.server.action.source; - - -import globalquake.core.database.StationDatabaseManager; -import globalquake.core.database.StationSource; -import gqserver.ui.server.table.model.FilterableTableModel; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.ArrayList; -import java.util.List; -import java.util.Objects; - -public class RemoveStationSourceAction extends AbstractAction { - - private final StationDatabaseManager databaseManager; - private final Component parent; - private FilterableTableModel tableModel; - - private JTable table; - - public RemoveStationSourceAction(StationDatabaseManager databaseManager, Component parent){ - super("Remove"); - this.parent = parent; - this.databaseManager = databaseManager; - - putValue(SHORT_DESCRIPTION, "Remove Station Sources"); - - ImageIcon removeIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/remove.png"))); - Image image = removeIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - int[] selectedRows = table.getSelectedRows(); - if (selectedRows.length < 1) { - throw new IllegalStateException("Invalid selected rows count (must be > 0): " + selectedRows.length); - } - if (table.isEditing()) { - table.getCellEditor().cancelCellEditing(); - } - - int option = JOptionPane.showConfirmDialog(parent, - "Are you sure you want to delete those items?", - "Confirmation", - JOptionPane.YES_NO_OPTION); - - if (option != JOptionPane.YES_OPTION) { - return; - } - - databaseManager.getStationDatabase().getDatabaseWriteLock().lock(); - try{ - List toBeRemoved = new ArrayList<>(); - for(int i:selectedRows){ - StationSource stationSource = tableModel.getEntity(table.getRowSorter().convertRowIndexToModel(i)); - toBeRemoved.add(stationSource); - } - databaseManager.removeAllStationSources(toBeRemoved); - }finally { - databaseManager.getStationDatabase().getDatabaseWriteLock().unlock(); - } - - databaseManager.fireUpdateEvent(); - } - - public void setTableModel(FilterableTableModel tableModel) { - this.tableModel = tableModel; - } - - public void setTable(JTable table) { - this.table = table; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/UpdateStationSourceAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/UpdateStationSourceAction.java deleted file mode 100644 index a898d0a..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/action/source/UpdateStationSourceAction.java +++ /dev/null @@ -1,63 +0,0 @@ -package gqserver.ui.server.action.source; - - -import globalquake.core.database.StationDatabaseManager; -import globalquake.core.database.StationSource; -import globalquake.core.exception.RuntimeApplicationException; -import gqserver.ui.server.table.model.FilterableTableModel; - -import javax.swing.*; - -import java.awt.Image; -import java.awt.event.ActionEvent; -import java.util.ArrayList; -import java.util.List; -import java.util.Objects; - -public class UpdateStationSourceAction extends AbstractAction { - - private final StationDatabaseManager databaseManager; - private FilterableTableModel tableModel; - - private JTable table; - - public UpdateStationSourceAction(StationDatabaseManager databaseManager) { - super("Update"); - this.databaseManager = databaseManager; - - putValue(SHORT_DESCRIPTION, "Update Station Sources"); - - ImageIcon updateIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/update.png"))); - Image image = updateIcon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - int[] selectedRows = table.getSelectedRows(); - if (selectedRows.length < 1) { - throw new RuntimeApplicationException("Invalid selected rows count (must be > 0): " + selectedRows.length); - } - if (table.isEditing()) { - table.getCellEditor().cancelCellEditing(); - } - - List toBeUpdated = new ArrayList<>(); - for (int i : selectedRows) { - StationSource stationSource = tableModel.getEntity(table.getRowSorter().convertRowIndexToModel(i)); - toBeUpdated.add(stationSource); - } - - this.setEnabled(false); - databaseManager.runUpdate(toBeUpdated, () -> UpdateStationSourceAction.this.setEnabled(true)); - } - - public void setTableModel(FilterableTableModel tableModel) { - this.tableModel = tableModel; - } - - public void setTable(JTable table) { - this.table = table; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/dialog/EditSeedlinkNetworkDialog.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/dialog/EditSeedlinkNetworkDialog.java deleted file mode 100644 index e7cc3af..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/dialog/EditSeedlinkNetworkDialog.java +++ /dev/null @@ -1,84 +0,0 @@ -package gqserver.ui.server.dialog; - -import globalquake.core.database.SeedlinkNetwork; -import globalquake.core.database.StationDatabaseManager; -import globalquake.core.exception.RuntimeApplicationException; - -import javax.swing.*; -import javax.swing.border.EmptyBorder; -import java.awt.*; - -public class EditSeedlinkNetworkDialog extends JDialog { - private final StationDatabaseManager databaseManager; - private final JTextField portField; - private final JTextField nameField; - private final JTextField hostField; - private final SeedlinkNetwork seedlinkNetwork; - - public EditSeedlinkNetworkDialog(Window parent, StationDatabaseManager databaseManager, SeedlinkNetwork seedlinkNetwork) { - super(parent); - this.seedlinkNetwork = seedlinkNetwork; - setModal(true); - - this.databaseManager = databaseManager; - setLayout(new BorderLayout()); - - setTitle("Edit Seedlink Network"); - setSize(320, 180); - setDefaultCloseOperation(DISPOSE_ON_CLOSE); - setLocationRelativeTo(parent); - - JPanel fieldsPanel = new JPanel(); - LayoutManager gridLayout = new BoxLayout(fieldsPanel, BoxLayout.Y_AXIS); - fieldsPanel.setLayout(gridLayout); - fieldsPanel.setBorder(new EmptyBorder(10,10,10,10)); - - nameField = new JTextField(seedlinkNetwork==null ? "" : seedlinkNetwork.getName(), 40); - hostField = new JTextField(seedlinkNetwork==null ? "" : seedlinkNetwork.getHost(), 40); - portField = new JTextField(seedlinkNetwork==null ? "18000" : String.valueOf(seedlinkNetwork.getPort()), 40); - JButton saveButton = new JButton("Save"); - saveButton.addActionListener(e -> saveChanges()); - JButton cancelButton = new JButton("Cancel"); - cancelButton.addActionListener(actionEvent -> EditSeedlinkNetworkDialog.this.dispose()); - - JPanel buttonsPanel = new JPanel(); - - fieldsPanel.add(new JLabel("Name:")); - fieldsPanel.add(nameField); - fieldsPanel.add(new JLabel("Host:")); - fieldsPanel.add(hostField); - fieldsPanel.add(new JLabel("Port:")); - fieldsPanel.add(portField); - buttonsPanel.add(cancelButton); - buttonsPanel.add(saveButton); - - add(fieldsPanel, BorderLayout.CENTER); - add(buttonsPanel, BorderLayout.SOUTH); - - setResizable(false); - - pack(); - setVisible(true); - } - - private void saveChanges() { - int port; - try { - port = Integer.parseInt(portField.getText()); - }catch(NumberFormatException e){ - throw new RuntimeApplicationException("Cannot parse port!", e); - } - SeedlinkNetwork newSeedlinkNetwork = new SeedlinkNetwork(nameField.getText(), hostField.getText(), port); - databaseManager.getStationDatabase().getDatabaseWriteLock().lock(); - try{ - databaseManager.getStationDatabase().getSeedlinkNetworks().remove(seedlinkNetwork); - databaseManager.getStationDatabase().getSeedlinkNetworks().add(newSeedlinkNetwork); - }finally { - databaseManager.getStationDatabase().getDatabaseWriteLock().unlock(); - } - - databaseManager.fireUpdateEvent(); - - this.dispose(); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/dialog/EditStationSourceDialog.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/dialog/EditStationSourceDialog.java deleted file mode 100644 index 3d08615..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/dialog/EditStationSourceDialog.java +++ /dev/null @@ -1,73 +0,0 @@ -package gqserver.ui.server.dialog; - -import globalquake.core.database.StationDatabaseManager; -import globalquake.core.database.StationSource; - -import javax.swing.*; -import javax.swing.border.EmptyBorder; -import java.awt.*; - -public class EditStationSourceDialog extends JDialog { - private final StationDatabaseManager databaseManager; - private final StationSource stationSource; - private final JTextField nameField; - private final JTextField urlField; - - public EditStationSourceDialog(Window parent, StationDatabaseManager databaseManager, StationSource stationSource) { - super(parent); - setModal(true); - - this.databaseManager = databaseManager; - this.stationSource = stationSource; - setLayout(new BorderLayout()); - - setTitle("Edit Station Source"); - setSize(320, 180); - setDefaultCloseOperation(DISPOSE_ON_CLOSE); - setLocationRelativeTo(parent); - - JPanel fieldsPanel = new JPanel(); - LayoutManager gridLayout = new BoxLayout(fieldsPanel, BoxLayout.Y_AXIS); - fieldsPanel.setLayout(gridLayout); - fieldsPanel.setBorder(new EmptyBorder(10,10,10,10)); - - nameField = new JTextField(stationSource==null ? "" : stationSource.getName(), 40); - urlField = new JTextField(stationSource==null ? "" : stationSource.getUrl(), 40); - JButton saveButton = new JButton("Save"); - saveButton.addActionListener(e -> saveChanges()); - JButton cancelButton = new JButton("Cancel"); - cancelButton.addActionListener(actionEvent -> EditStationSourceDialog.this.dispose()); - - JPanel buttonsPanel = new JPanel(); - - fieldsPanel.add(new JLabel("Name:")); - fieldsPanel.add(nameField); - fieldsPanel.add(new JLabel("URL:")); - fieldsPanel.add(urlField); - buttonsPanel.add(cancelButton); - buttonsPanel.add(saveButton); - - add(fieldsPanel, BorderLayout.CENTER); - add(buttonsPanel, BorderLayout.SOUTH); - - setResizable(false); - - pack(); - setVisible(true); - } - - private void saveChanges() { - StationSource newStationSource = new StationSource(nameField.getText(), urlField.getText()); - databaseManager.getStationDatabase().getDatabaseWriteLock().lock(); - try{ - databaseManager.getStationDatabase().getStationSources().remove(stationSource); - databaseManager.getStationDatabase().getStationSources().add(newStationSource); - }finally { - databaseManager.getStationDatabase().getDatabaseWriteLock().unlock(); - } - - databaseManager.fireUpdateEvent(); - - this.dispose(); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/Column.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/Column.java deleted file mode 100644 index b0b605c..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/Column.java +++ /dev/null @@ -1,89 +0,0 @@ -package gqserver.ui.server.table; - -import java.util.Objects; -import java.util.function.BiConsumer; -import java.util.function.Function; - -public abstract class Column { - - private final String name; - private final Function valueGetter; - private final Class columnType; - private final TableCellRendererAdapter renderer; - - private Column(String name, Class columnClass, Function valueGetter, TableCellRendererAdapter renderer) { - this.name = Objects.requireNonNull(name, "name cannot be null"); - this.columnType = Objects.requireNonNull(columnClass, "column class cannot be null"); - this.valueGetter = Objects.requireNonNull(valueGetter, "value getter cannot be null"); - this.renderer = Objects.requireNonNull(renderer, "renderer cannot be null"); - } - - @SuppressWarnings("unused") - public static Column editable(String name, Class columnClass, Function valueGetter, - BiConsumer valueSetter, TableCellRendererAdapter renderer) { - return new Editable<>(name, columnClass, valueGetter, valueSetter, renderer); - } - - public static Column readonly(String name, Class columnClass, Function valueGetter, TableCellRendererAdapter renderer) { - return new ReadOnly<>(name, columnClass, valueGetter, renderer); - } - - public abstract boolean isEditable(); - - public abstract void setValue(Object value, E entity); - - public T getValue(E entity) { - return valueGetter.apply(entity); - } - - public String getName() { - return name; - } - - public Class getColumnType() { - return columnType; - } - - public TableCellRendererAdapter getRenderer() { - return renderer; - } - - private static class ReadOnly extends Column { - - private ReadOnly(String name, Class columnClass, Function valueGetter, TableCellRendererAdapter renderer) { - super(name, columnClass, valueGetter, renderer); - } - - @Override - public boolean isEditable() { - return false; - } - - @Override - public void setValue(Object value, E entity) { - throw new UnsupportedOperationException("Column '" + getName() + "' is not editable"); - } - } - - @SuppressWarnings("unused") - private static class Editable extends Column { - - private final BiConsumer valueSetter; - - private Editable(String name, Class columnClass, Function valueGetter, BiConsumer valueSetter, TableCellRendererAdapter renderer) { - super(name, columnClass, valueGetter, renderer); - this.valueSetter = Objects.requireNonNull(valueSetter, "value setter cannot be null"); - } - - @Override - public boolean isEditable() { - return true; - } - - @Override - public void setValue(Object value, E entity) { - valueSetter.accept(entity, getColumnType().cast(value)); - } - } -} - diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/GQTable.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/GQTable.java deleted file mode 100644 index 0e5ed7b..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/GQTable.java +++ /dev/null @@ -1,24 +0,0 @@ -package gqserver.ui.server.table; - -import gqserver.ui.server.table.model.FilterableTableModel; - -import javax.swing.*; -import java.awt.*; - -public class GQTable extends JTable { - - public GQTable(FilterableTableModel tableModel){ - super(tableModel); - setFont(new Font("Arial", Font.PLAIN, 14)); - setRowHeight(20); - setGridColor(Color.black); - setShowGrid(true); - setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS); - setAutoCreateRowSorter(true); - - for (int i = 0; i < getColumnCount(); i++) { - getColumnModel().getColumn(i).setCellRenderer(tableModel.getColumnRenderer(i)); - } - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/LastUpdateRenderer.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/LastUpdateRenderer.java deleted file mode 100644 index d9f799e..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/LastUpdateRenderer.java +++ /dev/null @@ -1,19 +0,0 @@ -package gqserver.ui.server.table; - - -import globalquake.core.Settings; - -import java.time.LocalDateTime; - -public class LastUpdateRenderer extends TableCellRendererAdapter { - - @SuppressWarnings("unused") - @Override - public String getText(E entity, LocalDateTime value) { - if(value == null){ - return "Never"; - } - return Settings.formatDateTime(value); - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/ProgressBarRenderer.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/ProgressBarRenderer.java deleted file mode 100644 index 8a007f5..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/ProgressBarRenderer.java +++ /dev/null @@ -1,11 +0,0 @@ -package gqserver.ui.server.table; - -import javax.swing.*; -import java.awt.*; - -public class ProgressBarRenderer extends TableCellRendererAdapter{ - @Override - public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) { - return (JProgressBar) value; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/TableCellRendererAdapter.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/TableCellRendererAdapter.java deleted file mode 100644 index 08a2cbc..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/TableCellRendererAdapter.java +++ /dev/null @@ -1,60 +0,0 @@ -package gqserver.ui.server.table; - -import gqserver.main.Main; -import gqserver.ui.server.table.model.FilterableTableModel; - -import javax.swing.*; -import javax.swing.table.DefaultTableCellRenderer; -import java.awt.*; - -@SuppressWarnings("unused") -public class TableCellRendererAdapter extends DefaultTableCellRenderer { - - public TableCellRendererAdapter() { - setHorizontalAlignment(SwingConstants.CENTER); - } - - public TableCellRendererAdapter(int aligment) { - setHorizontalAlignment(aligment); - } - - @SuppressWarnings("unchecked") - @Override - public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, - int row, int column) { - super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column); - - try { - if (table.getModel() instanceof FilterableTableModel) { - E entity = (E) ((FilterableTableModel) table.getModel()) - .getEntity(table.getRowSorter().convertRowIndexToModel(row)); - T t = (T) value; - Color bck = getBackground(entity, t); - if (bck != null) { - setBackground(bck); - } - setForeground(getForeground(entity, t)); - setText(getText(entity, t)); - } - - } catch (ClassCastException e) { - Main.getErrorHandler().handleException(e); - } - - return this; - } - - public String getText(E entity, T value) { - return getText(); - } - - public Color getForeground(E entity, T value) { - return getForeground(); - } - - @SuppressWarnings("SameReturnValue") - public Color getBackground(E entity, T value) { - return null; - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/ClientsTableModel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/ClientsTableModel.java deleted file mode 100644 index 8f19e22..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/ClientsTableModel.java +++ /dev/null @@ -1,59 +0,0 @@ -package gqserver.ui.server.table.model; - -import gqserver.api.ServerClient; -import gqserver.ui.server.table.Column; -import gqserver.ui.server.table.LastUpdateRenderer; -import gqserver.ui.server.table.TableCellRendererAdapter; - -import java.time.LocalDateTime; -import java.util.List; - -public class ClientsTableModel extends FilterableTableModel{ - private final List> columns = List.of( - Column.readonly("ID", Integer.class, ServerClient::getID, new TableCellRendererAdapter<>()), - Column.readonly("Joined at", LocalDateTime.class, ServerClient::getJoinDate, new LastUpdateRenderer<>()), - Column.readonly("Delay (ms)", Long.class, ServerClient::getDelay, new TableCellRendererAdapter<>()), - Column.readonly("Packets sent", Long.class, ServerClient::getSentPackets, new TableCellRendererAdapter<>()), - Column.readonly("Packets received", Long.class, ServerClient::getReceivedPackets, new TableCellRendererAdapter<>())); - - - public ClientsTableModel(List data) { - super(data); - } - - @Override - public int getColumnCount() { - return columns.size(); - } - - @Override - public String getColumnName(int columnIndex) { - return columns.get(columnIndex).getName(); - } - - public TableCellRendererAdapter getColumnRenderer(int columnIndex) { - return columns.get(columnIndex).getRenderer(); - } - - @Override - public Class getColumnClass(int columnIndex) { - return columns.get(columnIndex).getColumnType(); - } - - @Override - public boolean isCellEditable(int rowIndex, int columnIndex) { - return columns.get(columnIndex).isEditable(); - } - - @Override - public Object getValueAt(int rowIndex, int columnIndex) { - ServerClient event = getEntity(rowIndex); - return columns.get(columnIndex).getValue(event); - } - - @Override - public void setValueAt(Object value, int rowIndex, int columnIndex) { - ServerClient event = getEntity(rowIndex); - columns.get(columnIndex).setValue(value, event); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/ClusterTableModel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/ClusterTableModel.java deleted file mode 100644 index 6878774..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/ClusterTableModel.java +++ /dev/null @@ -1,57 +0,0 @@ -package gqserver.ui.server.table.model; - -import globalquake.core.earthquake.data.Cluster; -import gqserver.ui.server.table.Column; -import gqserver.ui.server.table.TableCellRendererAdapter; - -import java.util.List; - -public class ClusterTableModel extends FilterableTableModel{ - private final List> columns = List.of( - Column.readonly("ID", Integer.class, Cluster::getId, new TableCellRendererAdapter<>()), - Column.readonly("Assigned Events", Integer.class, cluster -> cluster.getAssignedEvents().size(), new TableCellRendererAdapter<>()), - Column.readonly("level", Integer.class, Cluster::getActualLevel, new TableCellRendererAdapter<>()), - Column.readonly("rootLat", Double.class, Cluster::getRootLat, new TableCellRendererAdapter<>()), - Column.readonly("rootLon", Double.class, Cluster::getRootLon, new TableCellRendererAdapter<>())); - - - public ClusterTableModel(List data) { - super(data); - } - - @Override - public int getColumnCount() { - return columns.size(); - } - - @Override - public String getColumnName(int columnIndex) { - return columns.get(columnIndex).getName(); - } - - public TableCellRendererAdapter getColumnRenderer(int columnIndex) { - return columns.get(columnIndex).getRenderer(); - } - - @Override - public Class getColumnClass(int columnIndex) { - return columns.get(columnIndex).getColumnType(); - } - - @Override - public boolean isCellEditable(int rowIndex, int columnIndex) { - return columns.get(columnIndex).isEditable(); - } - - @Override - public Object getValueAt(int rowIndex, int columnIndex) { - Cluster event = getEntity(rowIndex); - return columns.get(columnIndex).getValue(event); - } - - @Override - public void setValueAt(Object value, int rowIndex, int columnIndex) { - Cluster event = getEntity(rowIndex); - columns.get(columnIndex).setValue(value, event); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/EarthquakeTableModel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/EarthquakeTableModel.java deleted file mode 100644 index 3ce90a2..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/EarthquakeTableModel.java +++ /dev/null @@ -1,63 +0,0 @@ -package gqserver.ui.server.table.model; - -import globalquake.core.earthquake.data.Earthquake; -import globalquake.core.earthquake.quality.QualityClass; -import gqserver.ui.server.table.Column; -import gqserver.ui.server.table.LastUpdateRenderer; -import gqserver.ui.server.table.TableCellRendererAdapter; - -import java.time.LocalDateTime; -import java.util.List; - -public class EarthquakeTableModel extends FilterableTableModel{ - private final List> columns = List.of( - Column.readonly("Origin", LocalDateTime.class, Earthquake::getOriginDate, new LastUpdateRenderer<>()), - Column.readonly("Region", String.class, Earthquake::getRegion, new TableCellRendererAdapter<>()), - Column.readonly("Magnitude", Double.class, Earthquake::getMag, new TableCellRendererAdapter<>()), - Column.readonly("Depth", Double.class, Earthquake::getDepth, new TableCellRendererAdapter<>()), - Column.readonly("Lat", Double.class, Earthquake::getLat, new TableCellRendererAdapter<>()), - Column.readonly("Lon", Double.class, Earthquake::getLon, new TableCellRendererAdapter<>()), - Column.readonly("Quality", QualityClass.class, earthquake -> earthquake.getHypocenter().quality.getSummary(), new TableCellRendererAdapter<>()), - Column.readonly("Revision", Integer.class, Earthquake::getRevisionID, new TableCellRendererAdapter<>())); - - - public EarthquakeTableModel(List data) { - super(data); - } - - @Override - public int getColumnCount() { - return columns.size(); - } - - @Override - public String getColumnName(int columnIndex) { - return columns.get(columnIndex).getName(); - } - - public TableCellRendererAdapter getColumnRenderer(int columnIndex) { - return columns.get(columnIndex).getRenderer(); - } - - @Override - public Class getColumnClass(int columnIndex) { - return columns.get(columnIndex).getColumnType(); - } - - @Override - public boolean isCellEditable(int rowIndex, int columnIndex) { - return columns.get(columnIndex).isEditable(); - } - - @Override - public Object getValueAt(int rowIndex, int columnIndex) { - Earthquake event = getEntity(rowIndex); - return columns.get(columnIndex).getValue(event); - } - - @Override - public void setValueAt(Object value, int rowIndex, int columnIndex) { - Earthquake event = getEntity(rowIndex); - columns.get(columnIndex).setValue(value, event); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/FilterableTableModel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/FilterableTableModel.java deleted file mode 100644 index d5e87fa..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/FilterableTableModel.java +++ /dev/null @@ -1,81 +0,0 @@ -package gqserver.ui.server.table.model; - -import gqserver.ui.server.table.TableCellRendererAdapter; - -import java.io.Serial; -import java.util.ArrayList; -import java.util.List; - -import javax.swing.table.AbstractTableModel; - -@SuppressWarnings("unused") -public abstract class FilterableTableModel extends AbstractTableModel { - - @Serial - private static final long serialVersionUID = 1727941556193013022L; - private final List data; - private final List filteredData; - - public FilterableTableModel(List data) { - this.data = data; - this.filteredData = new ArrayList<>(data); - applyFilter(); - } - - public synchronized final void applyFilter() { - this.filteredData.clear(); - this.filteredData.addAll(this.data.stream().filter(this::accept).toList()); - super.fireTableDataChanged(); - } - - @SuppressWarnings("SameReturnValue") - public boolean accept(E entity) { - return true; - } - - @SuppressWarnings("EmptyMethod") - public void dataUpdated() { - - } - - @Override - public synchronized int getRowCount() { - return filteredData.size(); - } - - public synchronized void updateRow(E entity) { - int rowIndex; - rowIndex = filteredData.indexOf(entity); - fireTableRowsUpdated(rowIndex, rowIndex); - dataUpdated(); - } - - public synchronized void deleteRow(int rowIndex) { - E entity; - entity = filteredData.get(rowIndex); - filteredData.remove(entity); - data.remove(entity); - fireTableRowsDeleted(rowIndex, rowIndex); - dataUpdated(); - } - - public synchronized void addRow(E entity) { - int newRowIndex; - newRowIndex = filteredData.size(); - filteredData.add(entity); - - data.add(entity); - fireTableRowsInserted(newRowIndex, newRowIndex); - dataUpdated(); - } - - public synchronized E getEntity(int rowIndex) { - return filteredData.get(rowIndex); - } - - public List getData() { - return data; - } - - public abstract TableCellRendererAdapter getColumnRenderer(int columnIndex); -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/SeedlinkNetworksTableModel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/SeedlinkNetworksTableModel.java deleted file mode 100644 index e27b7dd..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/SeedlinkNetworksTableModel.java +++ /dev/null @@ -1,57 +0,0 @@ -package gqserver.ui.server.table.model; - -import globalquake.core.database.SeedlinkNetwork; -import gqserver.ui.server.table.Column; -import gqserver.ui.server.table.ProgressBarRenderer; -import gqserver.ui.server.table.TableCellRendererAdapter; - -import javax.swing.*; -import java.util.List; - -public class SeedlinkNetworksTableModel extends FilterableTableModel{ - private final List> columns = List.of( - Column.readonly("Name", String.class, SeedlinkNetwork::getName, new TableCellRendererAdapter<>()), - Column.readonly("Host", String.class, SeedlinkNetwork::getHost, new TableCellRendererAdapter<>()), - Column.readonly("Port", Integer.class, SeedlinkNetwork::getPort, new TableCellRendererAdapter<>()), - Column.readonly("Status", JProgressBar.class, SeedlinkNetwork::getStatusBar, new ProgressBarRenderer<>())); - - public SeedlinkNetworksTableModel(List data) { - super(data); - } - - @Override - public int getColumnCount() { - return columns.size(); - } - - @Override - public String getColumnName(int columnIndex) { - return columns.get(columnIndex).getName(); - } - - public TableCellRendererAdapter getColumnRenderer(int columnIndex) { - return columns.get(columnIndex).getRenderer(); - } - - @Override - public Class getColumnClass(int columnIndex) { - return columns.get(columnIndex).getColumnType(); - } - - @Override - public boolean isCellEditable(int rowIndex, int columnIndex) { - return columns.get(columnIndex).isEditable(); - } - - @Override - public Object getValueAt(int rowIndex, int columnIndex) { - SeedlinkNetwork event = getEntity(rowIndex); - return columns.get(columnIndex).getValue(event); - } - - @Override - public void setValueAt(Object value, int rowIndex, int columnIndex) { - SeedlinkNetwork event = getEntity(rowIndex); - columns.get(columnIndex).setValue(value, event); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/SeedlinkStatusTableModel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/SeedlinkStatusTableModel.java deleted file mode 100644 index 81b6044..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/SeedlinkStatusTableModel.java +++ /dev/null @@ -1,57 +0,0 @@ -package gqserver.ui.server.table.model; - -import globalquake.core.database.SeedlinkNetwork; -import gqserver.ui.server.table.Column; -import gqserver.ui.server.table.TableCellRendererAdapter; - -import java.util.List; - -public class SeedlinkStatusTableModel extends FilterableTableModel{ - private final List> columns = List.of( - Column.readonly("Name", String.class, SeedlinkNetwork::getName, new TableCellRendererAdapter<>()), - Column.readonly("Host", String.class, SeedlinkNetwork::getHost, new TableCellRendererAdapter<>()), - Column.readonly("Port", Integer.class, SeedlinkNetwork::getPort, new TableCellRendererAdapter<>()), - Column.readonly("Available Stations", Integer.class, SeedlinkNetwork::getAvailableStations, new TableCellRendererAdapter<>()), - Column.readonly("Selected Stations", Integer.class, SeedlinkNetwork::getSelectedStations, new TableCellRendererAdapter<>()), - Column.readonly("Connected Stations", Integer.class, SeedlinkNetwork::getConnectedStations, new TableCellRendererAdapter<>())); - - public SeedlinkStatusTableModel(List data) { - super(data); - } - - @Override - public int getColumnCount() { - return columns.size(); - } - - @Override - public String getColumnName(int columnIndex) { - return columns.get(columnIndex).getName(); - } - - public TableCellRendererAdapter getColumnRenderer(int columnIndex) { - return columns.get(columnIndex).getRenderer(); - } - - @Override - public Class getColumnClass(int columnIndex) { - return columns.get(columnIndex).getColumnType(); - } - - @Override - public boolean isCellEditable(int rowIndex, int columnIndex) { - return columns.get(columnIndex).isEditable(); - } - - @Override - public Object getValueAt(int rowIndex, int columnIndex) { - SeedlinkNetwork event = getEntity(rowIndex); - return columns.get(columnIndex).getValue(event); - } - - @Override - public void setValueAt(Object value, int rowIndex, int columnIndex) { - SeedlinkNetwork event = getEntity(rowIndex); - columns.get(columnIndex).setValue(value, event); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/StationSourcesTableModel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/StationSourcesTableModel.java deleted file mode 100644 index 57f5d99..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/table/model/StationSourcesTableModel.java +++ /dev/null @@ -1,60 +0,0 @@ -package gqserver.ui.server.table.model; - -import globalquake.core.database.StationSource; -import gqserver.ui.server.table.Column; -import gqserver.ui.server.table.LastUpdateRenderer; -import gqserver.ui.server.table.ProgressBarRenderer; -import gqserver.ui.server.table.TableCellRendererAdapter; - -import javax.swing.*; -import java.time.LocalDateTime; -import java.util.List; - -public class StationSourcesTableModel extends FilterableTableModel{ - private final List> columns = List.of( - Column.readonly("Name", String.class, StationSource::getName, new TableCellRendererAdapter<>()), - Column.readonly("URL", String.class, StationSource::getUrl, new TableCellRendererAdapter<>()), - Column.readonly("Last Update", LocalDateTime.class, StationSource::getLastUpdate, new LastUpdateRenderer<>()), - Column.readonly("Status", JProgressBar.class, StationSource::getStatus, new ProgressBarRenderer<>())); - - public StationSourcesTableModel(List data) { - super(data); - } - - @Override - public int getColumnCount() { - return columns.size(); - } - - @Override - public String getColumnName(int columnIndex) { - return columns.get(columnIndex).getName(); - } - - @Override - public TableCellRendererAdapter getColumnRenderer(int columnIndex) { - return columns.get(columnIndex).getRenderer(); - } - - @Override - public Class getColumnClass(int columnIndex) { - return columns.get(columnIndex).getColumnType(); - } - - @Override - public boolean isCellEditable(int rowIndex, int columnIndex) { - return columns.get(columnIndex).isEditable(); - } - - @Override - public Object getValueAt(int rowIndex, int columnIndex) { - StationSource event = getEntity(rowIndex); - return columns.get(columnIndex).getValue(event); - } - - @Override - public void setValueAt(Object value, int rowIndex, int columnIndex) { - StationSource event = getEntity(rowIndex); - columns.get(columnIndex).setValue(value, event); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/ClientsTab.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/ClientsTab.java deleted file mode 100644 index 3856070..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/ClientsTab.java +++ /dev/null @@ -1,39 +0,0 @@ -package gqserver.ui.server.tabs; - -import gqserver.events.GlobalQuakeServerEventListener; -import gqserver.events.specific.ClientJoinedEvent; -import gqserver.events.specific.ClientLeftEvent; -import gqserver.server.GlobalQuakeServer; -import gqserver.ui.server.table.GQTable; -import gqserver.ui.server.table.model.ClientsTableModel; - -import javax.swing.*; -import java.awt.*; -import java.util.concurrent.Executors; -import java.util.concurrent.TimeUnit; - -public class ClientsTab extends JPanel { - - public ClientsTab(){ - setLayout(new BorderLayout()); - - ClientsTableModel model; - add(new JScrollPane(new GQTable<>( - model = new ClientsTableModel(GlobalQuakeServer.instance.getServerSocket().getClients())))); - - Executors.newSingleThreadScheduledExecutor().scheduleAtFixedRate(model::applyFilter, 0,1, TimeUnit.SECONDS); - - GlobalQuakeServer.instance.getServerEventHandler().registerEventListener(new GlobalQuakeServerEventListener(){ - @Override - public void onClientLeave(ClientLeftEvent clientLeftEvent) { - model.applyFilter(); - } - - @Override - public void onClientJoin(ClientJoinedEvent clientJoinedEvent) { - model.applyFilter(); - } - }); - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/ClustersTab.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/ClustersTab.java deleted file mode 100644 index 3734020..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/ClustersTab.java +++ /dev/null @@ -1,24 +0,0 @@ -package gqserver.ui.server.tabs; - -import gqserver.server.GlobalQuakeServer; -import gqserver.ui.server.table.GQTable; -import gqserver.ui.server.table.model.ClusterTableModel; - -import javax.swing.*; -import java.awt.*; -import java.util.concurrent.Executors; -import java.util.concurrent.TimeUnit; - -public class ClustersTab extends JPanel { - - public ClustersTab(){ - setLayout(new BorderLayout()); - - ClusterTableModel model; - add(new JScrollPane(new GQTable<>( - model = new ClusterTableModel(GlobalQuakeServer.instance.getClusterAnalysis().getClusters())))); - - Executors.newSingleThreadScheduledExecutor().scheduleAtFixedRate(model::applyFilter, 0,1, TimeUnit.SECONDS); - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/EarthquakesTab.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/EarthquakesTab.java deleted file mode 100644 index 533d1e0..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/EarthquakesTab.java +++ /dev/null @@ -1,41 +0,0 @@ -package gqserver.ui.server.tabs; - -import globalquake.core.events.GlobalQuakeEventAdapter; -import globalquake.core.events.specific.QuakeCreateEvent; -import globalquake.core.events.specific.QuakeRemoveEvent; -import globalquake.core.events.specific.QuakeUpdateEvent; -import gqserver.server.GlobalQuakeServer; -import gqserver.ui.server.table.GQTable; -import gqserver.ui.server.table.model.EarthquakeTableModel; - -import javax.swing.*; -import java.awt.*; - -public class EarthquakesTab extends JPanel { - - public EarthquakesTab(){ - setLayout(new BorderLayout()); - - EarthquakeTableModel model; - add(new JScrollPane(new GQTable<>( - model = new EarthquakeTableModel(GlobalQuakeServer.instance.getEarthquakeAnalysis().getEarthquakes())))); - - GlobalQuakeServer.instance.getEventHandler().registerEventListener(new GlobalQuakeEventAdapter(){ - @Override - public void onQuakeUpdate(QuakeUpdateEvent event) { - model.applyFilter(); - } - - @Override - public void onQuakeRemove(QuakeRemoveEvent quakeRemoveEvent) { - model.applyFilter(); - } - - @Override - public void onQuakeCreate(QuakeCreateEvent event) { - model.applyFilter(); - } - }); - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/SeedlinksTab.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/SeedlinksTab.java deleted file mode 100644 index 3b65cac..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/SeedlinksTab.java +++ /dev/null @@ -1,24 +0,0 @@ -package gqserver.ui.server.tabs; - -import gqserver.server.GlobalQuakeServer; -import gqserver.ui.server.table.GQTable; -import gqserver.ui.server.table.model.SeedlinkStatusTableModel; - -import javax.swing.*; -import java.awt.*; -import java.util.concurrent.Executors; -import java.util.concurrent.TimeUnit; - -public class SeedlinksTab extends JPanel { - - public SeedlinksTab(){ - setLayout(new BorderLayout()); - - SeedlinkStatusTableModel model; - add(new JScrollPane(new GQTable<>( - model = new SeedlinkStatusTableModel(GlobalQuakeServer.instance.getStationDatabaseManager().getStationDatabase().getSeedlinkNetworks())))); - - Executors.newSingleThreadScheduledExecutor().scheduleAtFixedRate(model::applyFilter, 0,1, TimeUnit.SECONDS); - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/StatusTab.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/StatusTab.java deleted file mode 100644 index bc8e721..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/server/tabs/StatusTab.java +++ /dev/null @@ -1,107 +0,0 @@ -package gqserver.ui.server.tabs; - -import globalquake.core.database.SeedlinkNetwork; -import globalquake.core.database.SeedlinkStatus; -import gqserver.events.GlobalQuakeServerEventListener; -import gqserver.events.specific.ClientJoinedEvent; -import gqserver.events.specific.ClientLeftEvent; -import gqserver.server.GQServerSocket; -import gqserver.server.GlobalQuakeServer; - -import javax.swing.*; -import java.awt.*; -import java.util.concurrent.Executors; -import java.util.concurrent.TimeUnit; - -public class StatusTab extends JPanel { - - private static final double GB = 1024 * 1024 * 1024.0; - private static final double MB = 1024 * 1024; - private final JProgressBar stationsProgressBar; - private final JProgressBar seedlinksProgressBar; - private final JProgressBar clientsProgressBar; - private final JProgressBar ramProgressBar; - - public StatusTab() { - setLayout(new GridLayout(4,1)); - - long maxMem = Runtime.getRuntime().maxMemory(); - - clientsProgressBar = new JProgressBar(JProgressBar.HORIZONTAL,0, GQServerSocket.MAX_CLIENTS); - clientsProgressBar.setStringPainted(true); - add(clientsProgressBar); - - seedlinksProgressBar = new JProgressBar(JProgressBar.HORIZONTAL,0, 10); - seedlinksProgressBar.setStringPainted(true); - add(seedlinksProgressBar); - - stationsProgressBar = new JProgressBar(JProgressBar.HORIZONTAL,0, 10); - stationsProgressBar.setStringPainted(true); - add(stationsProgressBar); - - ramProgressBar = new JProgressBar(JProgressBar.HORIZONTAL,0, (int) (maxMem / MB)); - ramProgressBar.setStringPainted(true); - add(ramProgressBar); - - updateRamProgressBar(); - updateClientsProgressBar(); - - GlobalQuakeServer.instance.getServerEventHandler().registerEventListener(new GlobalQuakeServerEventListener(){ - @Override - public void onClientJoin(ClientJoinedEvent clientJoinedEvent) { - updateClientsProgressBar(); - } - - @Override - public void onClientLeave(ClientLeftEvent clientLeftEvent) { - updateClientsProgressBar(); - } - }); - - Executors.newSingleThreadScheduledExecutor().scheduleAtFixedRate(() -> {updateRamProgressBar();updateStations();}, 0, 100, TimeUnit.MILLISECONDS); - } - - private void updateStations(){ - int totalStations = 0; - int connectedStations = 0; - int runningSeedlinks = 0; - int totalSeedlinks = 0; - for (SeedlinkNetwork seedlinkNetwork : GlobalQuakeServer.instance.getStationDatabaseManager().getStationDatabase().getSeedlinkNetworks()) { - totalStations += seedlinkNetwork.selectedStations; - connectedStations += seedlinkNetwork.connectedStations; - if (seedlinkNetwork.selectedStations > 0) { - totalSeedlinks++; - } - if (seedlinkNetwork.status == SeedlinkStatus.RUNNING) { - runningSeedlinks++; - } - } - - seedlinksProgressBar.setMaximum(totalSeedlinks); - seedlinksProgressBar.setValue(runningSeedlinks); - seedlinksProgressBar.setString("Seedlinks: %d / %d".formatted(runningSeedlinks, totalSeedlinks)); - - stationsProgressBar.setMaximum(totalStations); - stationsProgressBar.setValue(connectedStations); - stationsProgressBar.setString("Stations: %d / %d".formatted(connectedStations, totalStations)); - - } - - private void updateRamProgressBar() { - long maxMem = Runtime.getRuntime().maxMemory(); - long usedMem = Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory(); - - ramProgressBar.setString("RAM: %.2f / %.2f GB".formatted(usedMem / GB, maxMem / GB)); - ramProgressBar.setValue((int) (usedMem / MB)); - - repaint(); - } - - private void updateClientsProgressBar() { - int clients = GlobalQuakeServer.instance.getServerSocket().getClientCount(); - clientsProgressBar.setString("Clients: %d / %d".formatted(clients, GQServerSocket.MAX_CLIENTS)); - clientsProgressBar.setValue(clients); - repaint(); - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/AlertSettingsPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/AlertSettingsPanel.java deleted file mode 100644 index 6f8243e..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/AlertSettingsPanel.java +++ /dev/null @@ -1,165 +0,0 @@ -package gqserver.ui.settings; - -import globalquake.core.Settings; - -import javax.swing.*; -import java.awt.*; - -public class AlertSettingsPanel extends SettingsPanel { - - private JCheckBox chkBoxLocal; - private JTextField textFieldLocalDist; - private JCheckBox chkBoxRegion; - private JTextField textFieldRegionMag; - private JTextField textFieldRegionDist; - private JCheckBox checkBoxGlobal; - private JTextField textFieldGlobalMag; - private JLabel label1; - private JCheckBox chkBoxFocus; - private JCheckBox chkBoxJumpToAlert; - private IntensityScaleSelector shakingThreshold; - private IntensityScaleSelector strongShakingThreshold; - - public AlertSettingsPanel() { - setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); - createAlertDialogSettings(); - createAlertLevels(); - - for(int i = 0; i < 10; i++){ - add(new JPanel()); // fillers - } - - refreshUI(); - } - - private void createAlertLevels() { - JPanel panel = new JPanel(); - - panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS)); - panel.setBorder(BorderFactory.createTitledBorder("Alert levels")); - - panel.add(shakingThreshold = new IntensityScaleSelector("Shaking alert threshold: ", - Settings.shakingLevelScale, Settings.shakingLevelIndex)); - panel.add(strongShakingThreshold = new IntensityScaleSelector("Strong shaking alert threshold: ", - Settings.strongShakingLevelScale, Settings.strongShakingLevelIndex)); - - add(panel); - } - - private void createAlertDialogSettings() { - JPanel panel = new JPanel(); - panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS)); - panel.setBorder(BorderFactory.createTitledBorder("Alert settings")); - - chkBoxLocal = new JCheckBox("", Settings.alertLocal); - textFieldLocalDist = new JTextField("1", 12); - textFieldLocalDist.setEnabled(chkBoxLocal.isSelected()); - chkBoxLocal.addChangeListener(changeEvent -> textFieldLocalDist.setEnabled(chkBoxLocal.isSelected())); - - JPanel localPanel = new JPanel(new GridLayout(1,1)); - localPanel.setBorder(BorderFactory.createTitledBorder("Local area")); - - JPanel nearbyPanel = new JPanel(); - nearbyPanel.setLayout(new BoxLayout(nearbyPanel, BoxLayout.X_AXIS)); - nearbyPanel.add(chkBoxLocal); - nearbyPanel.add(textFieldLocalDist); - - localPanel.add(nearbyPanel); - panel.add(localPanel); - - chkBoxRegion = new JCheckBox("Alert earthquakes larger than (magnitude): ", Settings.alertRegion); - textFieldRegionMag = new JTextField(String.valueOf(Settings.alertRegionMag) ,12); - textFieldRegionMag.setEnabled(chkBoxRegion.isSelected()); - textFieldRegionDist = new JTextField("1",12); - textFieldRegionDist.setEnabled(chkBoxRegion.isSelected()); - - chkBoxRegion.addChangeListener(changeEvent -> { - textFieldRegionMag.setEnabled(chkBoxRegion.isSelected()); - textFieldRegionDist.setEnabled(chkBoxRegion.isSelected()); - }); - - JPanel regionPanel = new JPanel(new GridLayout(2,1)); - regionPanel.setBorder(BorderFactory.createTitledBorder("Regional area")); - - JPanel regionMagPanel = new JPanel(); - regionMagPanel.setLayout(new BoxLayout(regionMagPanel, BoxLayout.X_AXIS)); - regionMagPanel.add(chkBoxRegion); - regionMagPanel.add(textFieldRegionMag); - - regionPanel.add(regionMagPanel); - - - JPanel regionDistPanel = new JPanel(); - regionDistPanel.setLayout(new BoxLayout(regionDistPanel, BoxLayout.X_AXIS)); - regionDistPanel.add(label1 = new JLabel("")); - regionDistPanel.add(textFieldRegionDist); - - regionPanel.add(regionDistPanel); - - panel.add(regionPanel); - - JPanel globalPanel = new JPanel(new GridLayout(1,1)); - globalPanel.setBorder(BorderFactory.createTitledBorder("Global")); - - checkBoxGlobal = new JCheckBox("Alert earthquakes larger than (magnitude): ", Settings.alertGlobal); - textFieldGlobalMag = new JTextField(String.valueOf(Settings.alertGlobalMag), 12); - textFieldGlobalMag.setEnabled(checkBoxGlobal.isSelected()); - checkBoxGlobal.addChangeListener(changeEvent -> textFieldGlobalMag.setEnabled(checkBoxGlobal.isSelected())); - - JPanel globalMagPanel = new JPanel(); - globalMagPanel.setLayout(new BoxLayout(globalMagPanel, BoxLayout.X_AXIS)); - - globalMagPanel.add(checkBoxGlobal); - globalMagPanel.add(textFieldGlobalMag); - - globalPanel.add(globalMagPanel); - - panel.add(globalPanel); - - JPanel panel2 = new JPanel(new GridLayout(2,1)); - - panel2.add( chkBoxFocus = new JCheckBox("Focus main window if the conditions above are met", Settings.focusOnEvent)); - panel2.add( chkBoxJumpToAlert = new JCheckBox("Jump directly to the warned event", Settings.jumpToAlert)); - - panel.add(panel2); - - add(panel); - } - - @Override - public void refreshUI() { - chkBoxLocal.setText("Alert when any earthquake occurs closer than (%s): ".formatted(Settings.getSelectedDistanceUnit().getShortName())); - label1.setText("and are closer from home location than (%s): ".formatted(Settings.getSelectedDistanceUnit().getShortName())); - - textFieldLocalDist.setText(String.format("%.1f", Settings.alertLocalDist * Settings.getSelectedDistanceUnit().getKmRatio())); - textFieldRegionDist.setText(String.format("%.1f", Settings.alertRegionDist * Settings.getSelectedDistanceUnit().getKmRatio())); - - revalidate(); - repaint(); - } - - @Override - public void save() throws NumberFormatException { - Settings.alertLocal = chkBoxLocal.isSelected(); - Settings.alertLocalDist = parseDouble(textFieldLocalDist.getText(), "Local alert distance", 0, 30000) / Settings.getSelectedDistanceUnit().getKmRatio(); - Settings.alertRegion = chkBoxRegion.isSelected(); - Settings.alertRegionMag = parseDouble(textFieldRegionMag.getText(), "Regional alert Magnitude", 0, 10); - Settings.alertRegionDist = parseDouble(textFieldRegionDist.getText(), "Regional alert distance", 0, 30000) / Settings.getSelectedDistanceUnit().getKmRatio(); - - Settings.alertGlobal = checkBoxGlobal.isSelected(); - Settings.alertGlobalMag = parseDouble(textFieldGlobalMag.getText(), "Global alert magnitude", 0, 10); - Settings.focusOnEvent = chkBoxFocus.isSelected(); - Settings.jumpToAlert = chkBoxJumpToAlert.isSelected(); - - Settings.shakingLevelScale = shakingThreshold.getShakingScaleComboBox().getSelectedIndex(); - Settings.shakingLevelIndex = shakingThreshold.getLevelComboBox().getSelectedIndex(); - - Settings.strongShakingLevelScale = strongShakingThreshold.getShakingScaleComboBox().getSelectedIndex(); - Settings.strongShakingLevelIndex = strongShakingThreshold.getLevelComboBox().getSelectedIndex(); - } - - @Override - public String getTitle() { - return "Alerts"; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/DebugSettingsPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/DebugSettingsPanel.java deleted file mode 100644 index 4e0685c..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/DebugSettingsPanel.java +++ /dev/null @@ -1,42 +0,0 @@ -package gqserver.ui.settings; - -import globalquake.core.Settings; -import globalquake.core.report.EarthquakeReporter; - -import javax.swing.*; -import javax.swing.border.EmptyBorder; - -public class DebugSettingsPanel extends SettingsPanel { - - private final JCheckBox chkBoxClusters; - private final JCheckBox chkBoxReports; - private final JCheckBox chkBoxCoreWaves; - private final JCheckBox chkBoxConfidencePolygons; - private final JCheckBox chkBoxRevisions; - - public DebugSettingsPanel() { - setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); - setBorder(new EmptyBorder(5,5,5,5)); - add(chkBoxClusters = new JCheckBox("Display Clusters", Settings.displayClusters)); - - add(chkBoxReports = new JCheckBox("Enable Earthquake Reports", Settings.reportsEnabled)); - add(new JLabel(" Reports will be stored in %s".formatted(EarthquakeReporter.ANALYSIS_FOLDER.getPath()))); - add(chkBoxCoreWaves = new JCheckBox("Display PKP and PKIKP Waves", Settings.displayCoreWaves)); - add(chkBoxConfidencePolygons = new JCheckBox("Display epicenter confidence polygons", Settings.confidencePolygons)); - add(chkBoxRevisions = new JCheckBox("Reduce number of revisions", Settings.reduceRevisions)); - } - - @Override - public void save() { - Settings.displayClusters = chkBoxClusters.isSelected(); - Settings.reportsEnabled = chkBoxReports.isSelected(); - Settings.displayCoreWaves = chkBoxCoreWaves.isSelected(); - Settings.confidencePolygons = chkBoxConfidencePolygons.isSelected(); - Settings.reduceRevisions = chkBoxRevisions.isSelected(); - } - - @Override - public String getTitle() { - return "Debug"; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/GeneralSettingsPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/GeneralSettingsPanel.java deleted file mode 100644 index 7137481..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/GeneralSettingsPanel.java +++ /dev/null @@ -1,137 +0,0 @@ -package gqserver.ui.settings; - - -import globalquake.core.Settings; -import globalquake.core.geo.DistanceUnit; -import globalquake.core.intensity.IntensityScale; -import globalquake.core.intensity.IntensityScales; - -import javax.swing.*; -import javax.swing.border.EmptyBorder; -import java.awt.*; - -public class GeneralSettingsPanel extends SettingsPanel { - private JComboBox comboBoxScale; - private JCheckBox chkBoxHomeLoc; - - private JTextField textFieldLat; - private JTextField textFieldLon; - private JComboBox distanceUnitJComboBox; - - public GeneralSettingsPanel(SettingsFrame settingsFrame) { - setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); - - createHomeLocationSettings(); - //createAlertsDialogSettings(); - add(createIntensitySettingsPanel()); - createOtherSettings(settingsFrame); - - for(int i = 0; i < 20; i++){ - add(new JPanel()); // fillers - } - } - - private void createOtherSettings(SettingsFrame settingsFrame) { - JPanel panel = new JPanel(); - panel.setBorder(BorderFactory.createTitledBorder("Other")); - - panel.add(new JLabel("Distance units: ")); - - distanceUnitJComboBox = new JComboBox<>(DistanceUnit.values()); - distanceUnitJComboBox.setSelectedIndex(Math.max(0, Math.min(distanceUnitJComboBox.getItemCount() - 1, Settings.distanceUnitsIndex))); - - distanceUnitJComboBox.addItemListener(itemEvent -> { - Settings.distanceUnitsIndex = distanceUnitJComboBox.getSelectedIndex(); - settingsFrame.refreshUI(); - }); - - panel.add(distanceUnitJComboBox); - - add(panel); - } - - private void createHomeLocationSettings() { - JPanel outsidePanel = new JPanel(new BorderLayout()); - outsidePanel.setBorder(BorderFactory.createTitledBorder("Home location settings")); - - JPanel homeLocationPanel = new JPanel(); - homeLocationPanel.setLayout(new GridLayout(2,1)); - - JLabel lblLat = new JLabel("Home Latitude: "); - JLabel lblLon = new JLabel("Home Longitude: "); - - textFieldLat = new JTextField(20); - textFieldLat.setText(String.format("%s", Settings.homeLat)); - textFieldLat.setColumns(10); - - textFieldLon = new JTextField(20); - textFieldLon.setText(String.format("%s", Settings.homeLon)); - textFieldLon.setColumns(10); - - JPanel latPanel = new JPanel(); - //latPanel.setLayout(new BoxLayout(latPanel, BoxLayout.X_AXIS)); - - latPanel.add(lblLat); - latPanel.add(textFieldLat); - - JPanel lonPanel = new JPanel(); - //lonPanel.setLayout(new BoxLayout(lonPanel, BoxLayout.X_AXIS)); - - lonPanel.add(lblLon); - lonPanel.add(textFieldLon); - - homeLocationPanel.add(latPanel); - homeLocationPanel.add(lonPanel); - - JTextArea infoLocation = new JTextArea("Home location will be used for playing additional alarm \n sounds if an earthquake occurs nearby"); - infoLocation.setBorder(new EmptyBorder(5,5,5,5)); - infoLocation.setLineWrap(true); - infoLocation.setEditable(false); - infoLocation.setBackground(homeLocationPanel.getBackground()); - - chkBoxHomeLoc = new JCheckBox("Display home location"); - chkBoxHomeLoc.setSelected(Settings.displayHomeLocation); - outsidePanel.add(chkBoxHomeLoc); - - outsidePanel.add(homeLocationPanel, BorderLayout.NORTH); - outsidePanel.add(infoLocation, BorderLayout.CENTER); - outsidePanel.add(chkBoxHomeLoc, BorderLayout.SOUTH); - - add(outsidePanel); - } - - private JPanel createIntensitySettingsPanel() { - JPanel panel = new JPanel(new GridLayout(2,1)); - panel.setBorder(BorderFactory.createTitledBorder("Intensity Scale")); - - comboBoxScale = new JComboBox<>(IntensityScales.INTENSITY_SCALES); - comboBoxScale.setSelectedIndex(Settings.intensityScaleIndex); - - JPanel div = new JPanel(); - div.add(comboBoxScale); - panel.add(div, BorderLayout.CENTER); - - JLabel lbl = new JLabel(); - lbl.setFont(new Font("Calibri", Font.PLAIN, 13)); - lbl.setText("Keep in mind that the displayed intensities are estimated, not measured"); - - - panel.add(lbl, BorderLayout.SOUTH); - - return panel; - } - - @Override - public void save() { - Settings.homeLat = parseDouble(textFieldLat.getText(), "Home latitude", -90, 90); - Settings.homeLon = parseDouble(textFieldLon.getText(), "Home longitude", -180, 180); - Settings.intensityScaleIndex = comboBoxScale.getSelectedIndex(); - Settings.displayHomeLocation = chkBoxHomeLoc.isSelected(); - Settings.distanceUnitsIndex = distanceUnitJComboBox.getSelectedIndex(); - } - - @Override - public String getTitle() { - return "General"; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/GraphicsSettingsPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/GraphicsSettingsPanel.java deleted file mode 100644 index 20c21cf..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/GraphicsSettingsPanel.java +++ /dev/null @@ -1,364 +0,0 @@ -package gqserver.ui.settings; - -import globalquake.core.Settings; - -import javax.swing.*; -import javax.swing.border.EmptyBorder; -import javax.swing.border.TitledBorder; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.time.Instant; -import java.time.format.DateTimeFormatter; - -public class GraphicsSettingsPanel extends SettingsPanel{ - - private JCheckBox chkBoxScheme; - private JCheckBox chkBoxAntialiasing; - private JSlider sliderFpsIdle; - private JCheckBox chkBoxEnableTimeFilter; - private JTextField textFieldTimeFilter; - - private JCheckBox chkBoxEnableMagnitudeFilter; - private JTextField textFieldMagnitudeFilter; - private JSlider sliderOpacity; - private JComboBox comboBoxDateFormat; - private JCheckBox chkBox24H; - private JCheckBox chkBoxDeadStations; - private JSlider sliderIntensityZoom; - private JTextField textFieldMaxArchived; - private JCheckBox chkBoxTriangles; - private JSlider sliderStationsSize; - private JRadioButton[] colorButtons; - - // Cinema mode - private JTextField textFieldTime; - private JSlider sliderZoomMul; - - private JCheckBox chkBoxEnableOnStartup; - private JCheckBox chkBoxReEnable; - private JCheckBox chkBoxDisplayMagnitudeHistogram; - private JCheckBox chkBoxDisplaySystemInfo; - private JCheckBox chkBoxDisplayQuakeAdditionalInfo; - private JCheckBox chkBoxAlertBox; - private JCheckBox chkBoxTime; - - - public GraphicsSettingsPanel() { - setLayout(new BorderLayout()); - - JTabbedPane tabbedPane = new JTabbedPane(); - - tabbedPane.addTab("General", createGeneralTab()); - tabbedPane.addTab("Old Events", createEventsTab()); - tabbedPane.addTab("Stations", createStationsTab()); - tabbedPane.addTab("Cinema Mode", createCinemaModeTab()); - - add(tabbedPane, BorderLayout.CENTER); - } - - private Component createCinemaModeTab() { - JPanel panel = new JPanel(); - panel.setBorder(new EmptyBorder(6,6,6,6)); - panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS)); - - textFieldTime = new JTextField(String.valueOf(Settings.cinemaModeSwitchTime), 12); - - JPanel timePanel = new JPanel(); - timePanel.setLayout(new BoxLayout(timePanel, BoxLayout.X_AXIS)); - timePanel.add(new JLabel("Switch to another point of interest after (seconds): ")); - timePanel.add(textFieldTime); - panel.add(timePanel); - - JPanel zoomPanel = new JPanel(); - zoomPanel.setBorder(new EmptyBorder(5,5,5,5)); - - zoomPanel.setLayout(new BoxLayout(zoomPanel, BoxLayout.X_AXIS)); - zoomPanel.add(new JLabel("Zoom multiplier (move right to zoom in):")); - - sliderZoomMul = new JSlider(JSlider.HORIZONTAL, 20,180, Settings.cinemaModeZoomMultiplier); - sliderZoomMul.setMinorTickSpacing(5); - sliderZoomMul.setMajorTickSpacing(20); - sliderZoomMul.setPaintTicks(true); - - zoomPanel.add(sliderZoomMul); - panel.add(zoomPanel); - - JPanel checkboxPanel = new JPanel(); - - checkboxPanel.add(chkBoxEnableOnStartup = new JCheckBox("Enable Cinema Mode on startup", Settings.cinemaModeOnStartup)); - checkboxPanel.add(chkBoxReEnable = new JCheckBox("Re-enable Cinema Mode automatically", Settings.cinemaModeReenable)); - panel.add(checkboxPanel); - - for(int i = 0; i < 39; i++){ - panel.add(new JPanel()); // fillers - } - - return panel; - } - - private Component createGeneralTab() { - JPanel panel = new JPanel(); - panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS)); - - JPanel performancePanel = new JPanel(); - performancePanel.setLayout(new BoxLayout(performancePanel, BoxLayout.Y_AXIS)); - performancePanel.setBorder(BorderFactory.createTitledBorder("Performance")); - - sliderFpsIdle = new JSlider(JSlider.HORIZONTAL, 10, 120, Settings.fpsIdle); - sliderFpsIdle.setPaintLabels(true); - sliderFpsIdle.setPaintTicks(true); - sliderFpsIdle.setMajorTickSpacing(10); - sliderFpsIdle.setMinorTickSpacing(5); - sliderFpsIdle.setBorder(new EmptyBorder(5,5,10,5)); - - JLabel label = new JLabel("FPS at idle: "+sliderFpsIdle.getValue()); - - sliderFpsIdle.addChangeListener(changeEvent -> label.setText("FPS at idle: "+sliderFpsIdle.getValue())); - - performancePanel.add(label); - performancePanel.add(sliderFpsIdle); - - panel.add(performancePanel); - - JPanel dateFormatPanel = new JPanel(); - dateFormatPanel.setBorder(BorderFactory.createTitledBorder("Date and Time setting")); - - comboBoxDateFormat = new JComboBox<>(); - Instant now = Instant.now(); - for(DateTimeFormatter formatter: Settings.DATE_FORMATS){ - comboBoxDateFormat.addItem(formatter.format(now)); - } - - comboBoxDateFormat.setSelectedIndex(Settings.selectedDateFormatIndex); - - dateFormatPanel.add(new JLabel("Preferred date format: ")); - dateFormatPanel.add(comboBoxDateFormat); - dateFormatPanel.add(chkBox24H = new JCheckBox("Use 24 hours format", Settings.use24HFormat)); - - panel.add(dateFormatPanel); - - JPanel mainWindowPanel = new JPanel(new GridLayout(5,1)); - mainWindowPanel.setBorder(new TitledBorder("Main Screen")); - - mainWindowPanel.add(chkBoxDisplaySystemInfo = new JCheckBox("Display system info", Settings.displaySystemInfo)); - mainWindowPanel.add(chkBoxDisplayMagnitudeHistogram = new JCheckBox("Display magnitude histogram", Settings.displayMagnitudeHistogram)); - mainWindowPanel.add(chkBoxDisplayQuakeAdditionalInfo = new JCheckBox("Display technical earthquake data", Settings.displayAdditionalQuakeInfo)); - mainWindowPanel.add(chkBoxAlertBox = new JCheckBox("Display alert box for nearby earthquakes", Settings.displayAlertBox)); - mainWindowPanel.add(chkBoxTime = new JCheckBox("Display latest data time", Settings.displayTime)); - - panel.add(mainWindowPanel); - - fill(panel, 16); - - return panel; - } - - private Component createEventsTab() { - JPanel eventsPanel = new JPanel(); - eventsPanel.setBorder(BorderFactory.createTitledBorder("Old events settings")); - eventsPanel.setLayout(new BoxLayout(eventsPanel, BoxLayout.Y_AXIS)); - - JPanel timePanel = new JPanel(); - timePanel.setLayout(new BoxLayout(timePanel, BoxLayout.X_AXIS)); - timePanel.setBorder(new EmptyBorder(5,5,5,5)); - - chkBoxEnableTimeFilter = new JCheckBox("Don't display older than (hours): "); - chkBoxEnableTimeFilter.setSelected(Settings.oldEventsTimeFilterEnabled); - - textFieldTimeFilter = new JTextField(Settings.oldEventsTimeFilter.toString(), 12); - textFieldTimeFilter.setEnabled(chkBoxEnableTimeFilter.isSelected()); - - chkBoxEnableTimeFilter.addChangeListener(changeEvent -> textFieldTimeFilter.setEnabled(chkBoxEnableTimeFilter.isSelected())); - - timePanel.add(chkBoxEnableTimeFilter); - timePanel.add((textFieldTimeFilter)); - - eventsPanel.add(timePanel); - - JPanel magnitudePanel = new JPanel(); - magnitudePanel.setBorder(new EmptyBorder(5,5,5,5)); - magnitudePanel.setLayout(new BoxLayout(magnitudePanel, BoxLayout.X_AXIS)); - - chkBoxEnableMagnitudeFilter = new JCheckBox("Don't display smaller than (magnitude): "); - chkBoxEnableMagnitudeFilter.setSelected(Settings.oldEventsMagnitudeFilterEnabled); - - textFieldMagnitudeFilter = new JTextField(Settings.oldEventsMagnitudeFilter.toString(), 12); - textFieldMagnitudeFilter.setEnabled(chkBoxEnableMagnitudeFilter.isSelected()); - - chkBoxEnableMagnitudeFilter.addChangeListener(changeEvent -> textFieldMagnitudeFilter.setEnabled(chkBoxEnableMagnitudeFilter.isSelected())); - - magnitudePanel.add(chkBoxEnableMagnitudeFilter); - magnitudePanel.add((textFieldMagnitudeFilter)); - - eventsPanel.add(magnitudePanel); - - JPanel removeOldPanel = new JPanel(); - removeOldPanel.setLayout(new BoxLayout(removeOldPanel, BoxLayout.X_AXIS)); - removeOldPanel.setBorder(new EmptyBorder(5,5,5,5)); - - textFieldMaxArchived = new JTextField(Settings.maxArchivedQuakes.toString(), 12); - - removeOldPanel.add(new JLabel("Maximum total number of archived earthquakes: ")); - removeOldPanel.add(textFieldMaxArchived); - - eventsPanel.add(removeOldPanel); - - - JPanel opacityPanel = new JPanel(); - opacityPanel.setBorder(new EmptyBorder(5,5,5,5)); - opacityPanel.setLayout(new BoxLayout(opacityPanel, BoxLayout.X_AXIS)); - - sliderOpacity = new JSlider(JSlider.HORIZONTAL,0,100, Settings.oldEventsOpacity.intValue()); - sliderOpacity.setMajorTickSpacing(10); - sliderOpacity.setMinorTickSpacing(2); - sliderOpacity.setPaintTicks(true); - sliderOpacity.setPaintLabels(true); - sliderOpacity.setPaintTrack(true); - - sliderOpacity.addChangeListener(changeEvent -> { - Settings.oldEventsOpacity = (double) sliderOpacity.getValue(); - Settings.changes++; - }); - - opacityPanel.add(new JLabel("Old events opacity: ")); - opacityPanel.add(sliderOpacity); - - eventsPanel.add(opacityPanel); - - JPanel colorsPanel = new JPanel(); - colorsPanel.setBorder(BorderFactory.createTitledBorder("Old events color")); - - JRadioButton buttonColorByAge = new JRadioButton("Color by age"); - JRadioButton buttonColorByDepth = new JRadioButton("Color by depth"); - JRadioButton buttonColorByMagnitude = new JRadioButton("Color by magnitude"); - - colorButtons = new JRadioButton[]{buttonColorByAge, buttonColorByDepth, buttonColorByMagnitude}; - ButtonGroup bg = new ButtonGroup(); - - colorButtons[Math.max(0, Math.min(colorButtons.length - 1, Settings.selectedEventColorIndex))].setSelected(true); - - var colorButtonActionListener = new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - for (int i = 0; i < colorButtons.length; i++) { - JRadioButton button = colorButtons[i]; - if(button.isSelected()){ - Settings.selectedEventColorIndex = i; - break; - } - } - } - }; - - for(JRadioButton button : colorButtons) { - bg.add(button); - button.addActionListener(colorButtonActionListener); - colorsPanel.add(button); - } - - eventsPanel.add(colorsPanel); - - fill(eventsPanel, 20); - - return eventsPanel; - } - - private Component createStationsTab() { - JPanel stationsPanel = new JPanel(); - stationsPanel.setLayout(new BoxLayout(stationsPanel, BoxLayout.Y_AXIS)); - stationsPanel.setBorder(BorderFactory.createTitledBorder("Stations")); - - JPanel checkBoxes = new JPanel(new GridLayout(2,2)); - - chkBoxScheme = new JCheckBox("Use old color scheme (exaggerated)"); - chkBoxScheme.setSelected(Settings.useOldColorScheme); - checkBoxes.add(chkBoxScheme); - - chkBoxAntialiasing = new JCheckBox("Enable antialiasing for stations"); - chkBoxAntialiasing.setSelected(Settings.antialiasing); - checkBoxes.add(chkBoxAntialiasing); - - checkBoxes.add(chkBoxDeadStations = new JCheckBox("Hide stations with no data", Settings.hideDeadStations)); - checkBoxes.add(chkBoxTriangles = new JCheckBox("Display stations as triangles (faster)", Settings.stationsTriangles)); - - stationsPanel.add(checkBoxes); - - JPanel intensityPanel = new JPanel(new GridLayout(2,1)); - intensityPanel.add(new JLabel("Display station's intensity label at zoom level (0 very close, 200 very far):")); - - sliderIntensityZoom = new JSlider(SwingConstants.HORIZONTAL, 0, 200, (int) (Settings.stationIntensityVisibilityZoomLevel * 100)); - sliderIntensityZoom.setMajorTickSpacing(10); - sliderIntensityZoom.setMinorTickSpacing(5); - sliderIntensityZoom.setPaintTicks(true); - sliderIntensityZoom.setPaintLabels(true); - - sliderIntensityZoom.addChangeListener(changeEvent -> { - Settings.stationIntensityVisibilityZoomLevel = sliderIntensityZoom.getValue() / 100.0; - Settings.changes++; - }); - - intensityPanel.add(sliderIntensityZoom); - stationsPanel.add(intensityPanel); - - JPanel stationSizePanel = new JPanel(new GridLayout(2,1)); - stationSizePanel.add(new JLabel("Stations size multiplier (100 default, 20 tiny, 300 huge):")); - - sliderStationsSize = new JSlider(SwingConstants.HORIZONTAL, 20, 300, (int) (Settings.stationsSizeMul * 100)); - sliderStationsSize.setMajorTickSpacing(20); - sliderStationsSize.setMinorTickSpacing(10); - sliderStationsSize.setPaintTicks(true); - sliderStationsSize.setPaintLabels(true); - - sliderStationsSize.addChangeListener(changeEvent -> { - Settings.stationsSizeMul = sliderStationsSize.getValue() / 100.0; - Settings.changes++; - }); - - stationSizePanel.add(sliderStationsSize); - stationsPanel.add(stationSizePanel); - - fill(stationsPanel, 20); - - return stationsPanel; - } - - @Override - public void save() { - Settings.useOldColorScheme = chkBoxScheme.isSelected(); - Settings.antialiasing = chkBoxAntialiasing.isSelected(); - Settings.fpsIdle = sliderFpsIdle.getValue(); - - Settings.oldEventsTimeFilterEnabled = chkBoxEnableTimeFilter.isSelected(); - Settings.oldEventsTimeFilter = parseDouble(textFieldTimeFilter.getText(), "Old events max age", 0, 24 * 365); - - Settings.oldEventsMagnitudeFilterEnabled = chkBoxEnableMagnitudeFilter.isSelected(); - Settings.oldEventsMagnitudeFilter = parseDouble(textFieldMagnitudeFilter.getText(), "Old events min magnitude", 0, 10); - - Settings.oldEventsOpacity = (double) sliderOpacity.getValue(); - Settings.selectedDateFormatIndex = comboBoxDateFormat.getSelectedIndex(); - Settings.use24HFormat = chkBox24H.isSelected(); - - Settings.hideDeadStations = chkBoxDeadStations.isSelected(); - Settings.stationsTriangles = chkBoxTriangles.isSelected(); - Settings.stationIntensityVisibilityZoomLevel = sliderIntensityZoom.getValue() / 100.0; - Settings.stationsSizeMul = sliderStationsSize.getValue() / 100.0; - - Settings.maxArchivedQuakes = parseInt(textFieldMaxArchived.getText(), "Max number of archived quakes", 1, Integer.MAX_VALUE); - - Settings.cinemaModeZoomMultiplier= sliderZoomMul.getValue(); - Settings.cinemaModeSwitchTime = parseInt(textFieldTime.getText(), "Cinema mode switch time", 1, 3600); - Settings.cinemaModeOnStartup = chkBoxEnableOnStartup.isSelected(); - Settings.cinemaModeReenable = chkBoxReEnable.isSelected(); - - Settings.displaySystemInfo = chkBoxDisplaySystemInfo.isSelected(); - Settings.displayMagnitudeHistogram = chkBoxDisplayMagnitudeHistogram.isSelected(); - Settings.displayAdditionalQuakeInfo = chkBoxDisplayQuakeAdditionalInfo.isSelected(); - Settings.displayAlertBox = chkBoxAlertBox.isSelected(); - Settings.displayTime = chkBoxTime.isSelected(); - } - - @Override - public String getTitle() { - return "Graphics"; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/HypocenterAnalysisSettingsPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/HypocenterAnalysisSettingsPanel.java deleted file mode 100644 index cc17ae0..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/HypocenterAnalysisSettingsPanel.java +++ /dev/null @@ -1,167 +0,0 @@ -package gqserver.ui.settings; - -import globalquake.core.Settings; - -import javax.swing.*; -import javax.swing.border.EmptyBorder; -import javax.swing.event.ChangeListener; -import java.awt.*; - -public class HypocenterAnalysisSettingsPanel extends SettingsPanel { - - private JSlider sliderPWaveInaccuracy; - private JSlider sliderCorrectness; - private JSlider sliderMinStations; - private JSlider sliderMaxStations; - - public HypocenterAnalysisSettingsPanel() { - setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); - - add(createMinStationsSetting()); - add(createMaxStationsSetting()); - add(createSettingPWave()); - add(createSettingCorrectness()); - } - - private Component createMaxStationsSetting() { - sliderMaxStations = createSettingsSlider(20, 300, 20, 5); - - JLabel label = new JLabel(); - - ChangeListener upd = changeEvent -> label.setText("Maximum number of associated stations: %d".formatted(sliderMaxStations.getValue())); - - sliderMaxStations.addChangeListener(upd); - sliderMaxStations.setValue(Settings.maxEvents); - - upd.stateChanged(null); - - return createCoolLayout(sliderMaxStations, label, "%s".formatted(Settings.maxEventsDefault), - """ - Here you can set the maximum number of stations that will\s - be used for the hypocenter finding algorithm.\s - Increasing this value can enhance the accuracy of earthquake detection,\s - however, it's important to note that doing so will also significantly\s - escalate the computational demands, potentially leading to longer processing times. - """); - } - - private Component createMinStationsSetting() { - sliderMinStations = createSettingsSlider(4, 16, 1, 1); - - JLabel label = new JLabel(); - - ChangeListener upd = changeEvent -> label.setText("Minimum number of stations: %d".formatted(sliderMinStations.getValue())); - - sliderMinStations.addChangeListener(upd); - sliderMinStations.setValue(Settings.minimumStationsForEEW); - - upd.stateChanged(null); - - return createCoolLayout(sliderMinStations, label, "%s".formatted(Settings.minimumStationsForEEWDefault), - """ - Here you can set the minimum number of stations that need to pick\s - up the earthquake for the EEW to be issued.\s - Increasing the number can greatly reduce the number of false alarms,\s - but may also cause EEW's to not appear in areas with less stations. - """); - } - - public static JPanel createCoolLayout(JSlider slider, JLabel label, String defaultValue, String explanation){ - JPanel panel = new JPanel(new BorderLayout()); - panel.setBorder(BorderFactory.createRaisedBevelBorder()); - - JPanel topPanel = new JPanel(new BorderLayout()); - topPanel.setBorder(new EmptyBorder(5,5,5,5)); - - topPanel.add(label, BorderLayout.NORTH); - topPanel.add(slider, BorderLayout.CENTER); - - if(defaultValue != null) { - JLabel labelDefault = new JLabel("Default value: " + defaultValue); - labelDefault.setBorder(new EmptyBorder(8, 2, 0, 0)); - topPanel.add(labelDefault, BorderLayout.SOUTH); - } - - JTextArea textAreaExplanation = new JTextArea(explanation); - textAreaExplanation.setBorder(new EmptyBorder(5,5,5,5)); - textAreaExplanation.setEditable(false); - textAreaExplanation.setBackground(panel.getBackground()); - - panel.add(topPanel, BorderLayout.NORTH); - panel.add(textAreaExplanation, BorderLayout.CENTER); - - return panel; - } - - public static JSlider createSettingsSlider(int min, int max, int major, int minor){ - JSlider slider = new JSlider(); - slider.setMinimum(min); - slider.setMaximum(max); - slider.setMajorTickSpacing(major); - slider.setMinorTickSpacing(minor); - - slider.setPaintLabels(true); - slider.setPaintTicks(true); - return slider; - } - - private Component createSettingCorrectness() { - sliderCorrectness = createSettingsSlider(20, 90, 10, 2); - - JLabel label = new JLabel(); - - ChangeListener upd = changeEvent -> label.setText("Hypocenter Correctness Threshold: %d %%".formatted(sliderCorrectness.getValue())); - - sliderCorrectness.addChangeListener(upd); - sliderCorrectness.setValue(Settings.hypocenterCorrectThreshold.intValue()); - - upd.stateChanged(null); - - return createCoolLayout(sliderCorrectness, label, "%s %%".formatted(Settings.hypocenterCorrectThresholdDefault), - """ - This value determines the threshold when a hypocenter is considered - correct or not. - The correctness is calculated as the % of stations that have arrival - within the Inaccuracy threshold and total number of stations used by - the hypocenter locating algoritgm. - If hypocenter is marked as incorrect, the earthquake will not - be displayed on the map. - Higher values will lead to more false negatives, - Lower values will lead to more false positives. - """); - } - - private Component createSettingPWave() { - sliderPWaveInaccuracy = createSettingsSlider(400, 2500, 200, 100); - - JLabel label = new JLabel(); - ChangeListener changeListener = changeEvent -> label.setText("P Wave Arrival Inaccuracy Threshold: %d ms".formatted(sliderPWaveInaccuracy.getValue())); - sliderPWaveInaccuracy.addChangeListener(changeListener); - - sliderPWaveInaccuracy.setValue(Settings.pWaveInaccuracyThreshold.intValue()); - changeListener.stateChanged(null); - - return createCoolLayout(sliderPWaveInaccuracy, label, "%s ms".formatted(Settings.pWaveInaccuracyThresholdDefault), - """ - This value determines the threshold value when the hypocenter finding\s - algorithm considers the arrival from current point to a station correct \s - or incorrect\s - Higher values are less restrictive and will lead to more false positives. - Lower values will force the algorithm to find more accurate hypocenter \s - and will lead to more false negatives. - """); - } - - @Override - public void save() { - Settings.pWaveInaccuracyThreshold = (double) sliderPWaveInaccuracy.getValue(); - Settings.hypocenterCorrectThreshold = (double) sliderCorrectness.getValue(); - Settings.minimumStationsForEEW = sliderMinStations.getValue(); - Settings.maxEvents = sliderMaxStations.getValue(); - } - - @Override - public String getTitle() { - return "Advanced"; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/IntensityScaleSelector.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/IntensityScaleSelector.java deleted file mode 100644 index ed283be..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/IntensityScaleSelector.java +++ /dev/null @@ -1,43 +0,0 @@ -package gqserver.ui.settings; - -import globalquake.core.intensity.IntensityScale; -import globalquake.core.intensity.IntensityScales; -import globalquake.core.intensity.Level; - -import javax.swing.*; -import java.awt.event.ActionEvent; -import java.util.Objects; - -public class IntensityScaleSelector extends JPanel { - - private final JComboBox shakingScaleComboBox; - private final JComboBox levelComboBox; - - public IntensityScaleSelector(String text, int shakingLevelScale, int shakingLevelIndex) { - shakingScaleComboBox = new JComboBox<>(IntensityScales.INTENSITY_SCALES); - shakingScaleComboBox.setSelectedIndex(Math.max(0, Math.min(shakingScaleComboBox.getItemCount() - 1, shakingLevelScale))); - levelComboBox = new JComboBox<>(((IntensityScale) Objects.requireNonNull(shakingScaleComboBox.getSelectedItem())).getLevels().toArray(new Level[0])); - - levelComboBox.setSelectedIndex(Math.max(0, Math.min(levelComboBox.getItemCount() - 1, shakingLevelIndex))); - - shakingScaleComboBox.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - levelComboBox.removeAllItems(); - ((IntensityScale)shakingScaleComboBox.getSelectedItem()).getLevels().forEach(levelComboBox::addItem); - } - }); - - add(new JLabel(text)); - add(shakingScaleComboBox); - add(levelComboBox); - } - - public JComboBox getLevelComboBox() { - return levelComboBox; - } - - public JComboBox getShakingScaleComboBox() { - return shakingScaleComboBox; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/PerformanceSettingsPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/PerformanceSettingsPanel.java deleted file mode 100644 index 1026c17..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/PerformanceSettingsPanel.java +++ /dev/null @@ -1,154 +0,0 @@ -package gqserver.ui.settings; - - -import globalquake.core.Settings; -import globalquake.core.training.EarthquakeAnalysisTraining; - -import javax.swing.*; -import javax.swing.border.EmptyBorder; -import javax.swing.event.ChangeListener; -import java.awt.*; -import java.awt.event.ActionEvent; - -public class PerformanceSettingsPanel extends SettingsPanel { - private JSlider sliderResolution; - private JCheckBox chkBoxParalell; - private JSlider sliderStoreTime; - private JCheckBox chkBoxRecalibrateOnLauch; - - public PerformanceSettingsPanel() { - setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); - - add(createSettingAccuracy()); - add(createSettingStoreTime()); - add(createSettingParalell()); - } - - private Component createSettingStoreTime() { - sliderStoreTime = HypocenterAnalysisSettingsPanel.createSettingsSlider(2, 20, 2, 1); - - JLabel label = new JLabel(); - ChangeListener changeListener = changeEvent -> label.setText("Waveform data storage time (minutes): %d".formatted( - sliderStoreTime.getValue())); - - sliderStoreTime.addChangeListener(changeListener); - - sliderStoreTime.setValue(Settings.logsStoreTimeMinutes); - changeListener.stateChanged(null); - - return HypocenterAnalysisSettingsPanel.createCoolLayout(sliderStoreTime, label, "5", - """ - In GlobalQuake, waveform data poses the highest demand on your system's RAM. - If you're encountering memory constraints, you have two options: - either reduce the number of selected stations or lower this specific value. - """); - } - - @SuppressWarnings("ExtractMethodRecommender") - private JPanel createSettingParalell() { - JPanel panel = new JPanel(); - panel.setBorder(BorderFactory.createRaisedBevelBorder()); - panel.setLayout(new BorderLayout()); - chkBoxParalell = new JCheckBox("Use all CPU cores"); - chkBoxParalell.setSelected(Settings.parallelHypocenterLocations); - - JTextArea textAreaExplanation = new JTextArea( - """ - Using all CPU cores will make the Hypocenter Finding much faster,\s - but it will be using 100% of your CPU, which can increase lags. - Make sure you select the optimal resolution above for your system."""); - textAreaExplanation.setBorder(new EmptyBorder(5,5,5,5)); - textAreaExplanation.setEditable(false); - textAreaExplanation.setBackground(panel.getBackground()); - - chkBoxParalell.addChangeListener(changeEvent -> Settings.parallelHypocenterLocations = chkBoxParalell.isSelected()); - - panel.add(chkBoxParalell, BorderLayout.CENTER); - panel.add(textAreaExplanation, BorderLayout.SOUTH); - return panel; - } - - @Override - public void save() { - Settings.hypocenterDetectionResolution = (double) sliderResolution.getValue(); - Settings.parallelHypocenterLocations = chkBoxParalell.isSelected(); - Settings.logsStoreTimeMinutes = sliderStoreTime.getValue(); - Settings.recalibrateOnLaunch = chkBoxRecalibrateOnLauch.isSelected(); - } - - private Component createSettingAccuracy() { - sliderResolution = HypocenterAnalysisSettingsPanel.createSettingsSlider(0, (int) Settings.hypocenterDetectionResolutionMax, 10, 5); - - JLabel label = new JLabel(); - ChangeListener changeListener = changeEvent -> - { - label.setText("Hypocenter Finding Resolution: %.2f ~ %s".formatted( - sliderResolution.getValue() / 100.0, - getNameForResolution(sliderResolution.getValue()))); - Settings.hypocenterDetectionResolution = (double) sliderResolution.getValue(); - }; - sliderResolution.addChangeListener(changeListener); - - sliderResolution.setValue(Settings.hypocenterDetectionResolution.intValue()); - changeListener.stateChanged(null); - - JPanel panel = HypocenterAnalysisSettingsPanel.createCoolLayout(sliderResolution, label, "%.2f".formatted(Settings.hypocenterDetectionResolutionDefault / 100.0), - """ - By increasing the Hypocenter Finding Resolution, you can\s - enhance the accuracy at which GlobalQuake locates hypocenters - at the cost of increased demand on your CPU. If you experience - significant lags while there is an earthquake happening on the map, - you should decrease this value. - """); - - JPanel panel2 = new JPanel(); - - JButton btnRecalibrate = new JButton("Recalibrate"); - btnRecalibrate.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - btnRecalibrate.setEnabled(false); - sliderResolution.setEnabled(false); - new Thread(() -> { - EarthquakeAnalysisTraining.calibrateResolution(null, sliderResolution); - btnRecalibrate.setEnabled(true); - sliderResolution.setEnabled(true); - }).start(); - } - }); - - panel2.add(btnRecalibrate); - - JButton testSpeed = new JButton("Test Hypocenter Search"); - testSpeed.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - testSpeed.setEnabled(false); - new Thread(() -> { - testSpeed.setText("Test took %d ms".formatted(EarthquakeAnalysisTraining.measureTest(System.currentTimeMillis(), 60))); - testSpeed.setEnabled(true); - }).start(); - } - }); - panel2.add(testSpeed); - - chkBoxRecalibrateOnLauch = new JCheckBox("Recalibrate on startup", Settings.recalibrateOnLaunch); - panel2.add(chkBoxRecalibrateOnLauch); - - - panel.add(panel2, BorderLayout.SOUTH); - - return panel; - } - - public static final String[] RESOLUTION_NAMES = {"Very Low", "Low", "Default", "Increased", "High", "Very High", "Extremely High", "Insane"}; - - private String getNameForResolution(int value) { - return RESOLUTION_NAMES[(int) Math.max(0, Math.min(RESOLUTION_NAMES.length - 1, ((value / Settings.hypocenterDetectionResolutionMax) * (RESOLUTION_NAMES.length))))]; - } - - @Override - public String getTitle() { - return "Performance"; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/SettingsFrame.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/SettingsFrame.java deleted file mode 100644 index f67ff52..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/SettingsFrame.java +++ /dev/null @@ -1,110 +0,0 @@ -package gqserver.ui.settings; - -import globalquake.core.Settings; -import globalquake.core.exception.RuntimeApplicationException; -import globalquake.core.geo.taup.TauPTravelTimeCalculator; -import gqserver.main.Main; -import gqserver.ui.GQFrame; -import org.tinylog.Logger; - -import javax.swing.*; -import java.awt.*; -import java.util.LinkedList; -import java.util.List; - -public class SettingsFrame extends GQFrame { - - private final List panels = new LinkedList<>(); - private JTabbedPane tabbedPane; - - public static void main(String[] args) throws Exception{ - TauPTravelTimeCalculator.init(); - EventQueue.invokeLater(() -> { - try { - new SettingsFrame(null).setVisible(true); - } catch (Exception e) { - Logger.error(e); - } - }); - } - - public SettingsFrame(Component parent) { - initialize(parent); - } - - private void initialize(Component parent) { - setIconImage(Main.LOGO); - - setTitle("GlobalQuake Settings"); - setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); - - JPanel contentPanel = new JPanel(new BorderLayout()); - setContentPane(contentPanel); - - tabbedPane = new JTabbedPane(JTabbedPane.TOP); - contentPanel.add(tabbedPane, BorderLayout.CENTER); - - JPanel panel_1 = new JPanel(); - contentPanel.add(panel_1, BorderLayout.SOUTH); - - JButton btnCancel = new JButton("Cancel"); - panel_1.add(btnCancel); - - btnCancel.addActionListener(e -> dispose()); - - JButton btnSave = new JButton("Save"); - panel_1.add(btnSave); - - btnSave.addActionListener(e -> { - for (SettingsPanel panel1 : panels) { - try { - panel1.save(); - } - catch(NumberFormatException exx){ - Main.getErrorHandler().handleWarning(new RuntimeApplicationException("Failed to parse a number: %s".formatted(exx.getMessage()), exx)); - return; - } catch(RuntimeApplicationException exxx){ - Main.getErrorHandler().handleWarning(exxx); - return; - } - catch (Exception ex) { - Main.getErrorHandler().handleException(ex); - return; - } - } - Settings.save(); - dispose(); - }); - - addPanels(); - - pack(); - setResizable(false); - setLocationRelativeTo(parent); - } - - private void addPanels() { - panels.add(new GeneralSettingsPanel(this)); - panels.add(new GraphicsSettingsPanel()); - panels.add(new AlertSettingsPanel()); - panels.add(new PerformanceSettingsPanel()); - panels.add(new HypocenterAnalysisSettingsPanel()); - panels.add(new DebugSettingsPanel()); - - for (SettingsPanel panel : panels) { - JScrollPane scrollPane = new JScrollPane(panel); - scrollPane.setPreferredSize(new Dimension(700, 500)); - scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); - scrollPane.getVerticalScrollBar().setUnitIncrement(10); - tabbedPane.addTab(panel.getTitle(), scrollPane); - - javax.swing.SwingUtilities.invokeLater(() -> scrollPane.getVerticalScrollBar().setValue(0)); - } - } - - public void refreshUI() { - for (SettingsPanel panel : panels) { - panel.refreshUI(); - } - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/SettingsPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/SettingsPanel.java deleted file mode 100644 index 1a2c72c..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/settings/SettingsPanel.java +++ /dev/null @@ -1,45 +0,0 @@ -package gqserver.ui.settings; - - -import globalquake.core.exception.RuntimeApplicationException; - -import javax.swing.*; - -public abstract class SettingsPanel extends JPanel{ - - public abstract void save() throws NumberFormatException; - - public abstract String getTitle(); - - public void refreshUI() {} - - public double parseDouble(String str, String name, double min, double max){ - double d = Double.parseDouble(str.replace(',', '.')); - if(Double.isNaN(d) || Double.isInfinite(d)){ - throw new RuntimeApplicationException("Invalid number: %s".formatted(str)); - } - - if(d < min || d > max){ - throw new RuntimeApplicationException("%s must be between %s and %s (entered %s)!".formatted(name, min, max, d)); - } - - return d; - } - - public int parseInt(String str, String name, int min, int max){ - int n = Integer.parseInt(str); - - if(n < min || n > max){ - throw new RuntimeApplicationException("%s must be between %s and %s (entered %s)!".formatted(name, min, max, n)); - } - - return n; - } - - public void fill(JPanel panel, int n){ - for(int i = 0; i < n; i++){ - panel.add(new JPanel()); - } - } - -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/DragMode.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/DragMode.java deleted file mode 100644 index 535ae93..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/DragMode.java +++ /dev/null @@ -1,6 +0,0 @@ -package gqserver.ui.stationselect; - -public enum DragMode { - - SELECT, DESELECT, NONE -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/FeatureSelectableStation.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/FeatureSelectableStation.java deleted file mode 100644 index 86e72b7..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/FeatureSelectableStation.java +++ /dev/null @@ -1,179 +0,0 @@ -package gqserver.ui.stationselect; - -import globalquake.core.database.Channel; -import globalquake.core.database.SeedlinkCommunicator; -import globalquake.core.database.Station; -import globalquake.utils.monitorable.MonitorableCopyOnWriteArrayList; -import gqserver.ui.globe.GlobeRenderer; -import gqserver.ui.globe.Point2D; -import gqserver.ui.globe.Polygon3D; -import gqserver.ui.globe.RenderProperties; -import gqserver.ui.globe.feature.RenderElement; -import gqserver.ui.globe.feature.RenderEntity; -import gqserver.ui.globe.feature.RenderFeature; - -import java.awt.*; -import java.util.Collection; -import java.util.Optional; - -public class FeatureSelectableStation extends RenderFeature { - - private final MonitorableCopyOnWriteArrayList allStationsList; - private final StationSelectPanel stationSelectPanel; - - public FeatureSelectableStation(MonitorableCopyOnWriteArrayList allStationsList, StationSelectPanel stationSelectPanel) { - super(1); - this.allStationsList = allStationsList; - this.stationSelectPanel = stationSelectPanel; - } - - @Override - public Collection getElements() { - return allStationsList; - } - - @Override - public boolean needsUpdateEntities() { - return true; - } - - @Override - public void createPolygon(GlobeRenderer renderer, RenderEntity entity, RenderProperties renderProperties) { - if (entity.getRenderElement(0).getPolygon() == null) { - entity.getRenderElement(0).setPolygon(new Polygon3D()); - } - - renderer.createTriangle(entity.getRenderElement(0).getPolygon(), - entity.getOriginal().getLatitude(), - entity.getOriginal().getLongitude(), - Math.min(50, renderer.pxToDeg(8.0)), 0); - } - - @Override - public boolean needsCreatePolygon(RenderEntity entity, boolean propertiesChanged) { - return propertiesChanged; - } - - @Override - public void project(GlobeRenderer renderer, RenderEntity entity) { - entity.getRenderElement(0).getShape().reset(); - entity.getRenderElement(0).shouldDraw = renderer.project3D(entity.getRenderElement(0).getShape(), entity.getRenderElement(0).getPolygon(), true); - } - - @Override - public void render(GlobeRenderer renderer, Graphics2D graphics, RenderEntity entity) { - RenderElement element = entity.getRenderElement(0); - if (!element.shouldDraw) { - return; - } - graphics.setColor(getDisplayedColor(entity.getOriginal())); - graphics.fill(element.getShape()); - graphics.setColor(Color.BLACK); - graphics.draw(element.getShape()); - - boolean mouseNearby = renderer.isMouseNearby(getCenterCoords(entity), 10.0, true) && renderer.getRenderProperties().scroll < 1; - - if (mouseNearby || renderer.isMouseInside(getCenterCoords(entity), stationSelectPanel.getDragRectangle())) { - graphics.setColor(Color.yellow); - graphics.draw(element.getShape()); - } - - var centerCoords = getCenterCoords(entity); - var point3D = GlobeRenderer.createVec3D(centerCoords); - var centerPonint = renderer.projectPoint(point3D); - - if(mouseNearby){ - drawInfo(graphics, (int)centerPonint.x, (int)centerPonint.y, entity.getOriginal()); - } else if (entity.getOriginal().getSelectedChannel() != null && entity.getOriginal().getSelectedChannel().isAvailable() - && renderer.getAngularDistance(centerCoords) < 25.0 && renderer.getRenderProperties().scroll < 0.75) { - Optional minDelay = entity.getOriginal().getSelectedChannel().getSeedlinkNetworks().values().stream().min(Long::compare); - - int x = (int) (centerPonint.x + 10); - - if(minDelay.isPresent() && minDelay.get() > 5 * 60 * 1000L) { - graphics.setColor(Color.red); - graphics.setFont(new Font("Calibri", Font.BOLD, 14)); - graphics.drawString("!", x, (int) centerPonint.y + 9); - x+=graphics.getFontMetrics().stringWidth("!"); - } - - if(entity.getOriginal().locationErrorSuspected()){ - graphics.setColor(Color.yellow); - graphics.setFont(new Font("Calibri", Font.BOLD, 14)); - graphics.drawString("!", x, (int) centerPonint.y + 9); - } - } - } - - private void drawInfo(Graphics2D g, int x, int y, Station original) { - g.setColor(Color.white); - g.setFont(new Font("Calibri", Font.PLAIN, 12)); - - String str = original.getNetwork().getNetworkCode()+" "+original.getStationCode(); - g.drawString(str, x - g.getFontMetrics().stringWidth(str) / 2, y - 11); - - str = original.getNetwork().getDescription(); - g.drawString(str, x - g.getFontMetrics().stringWidth(str) / 2, y + 20); - - str = original.getStationSite(); - g.drawString(str, x - g.getFontMetrics().stringWidth(str) / 2, y + 33); - - if(original.getSelectedChannel() != null && original.getSelectedChannel().isAvailable()) { - int _y = y + 46; - for(var availableSeedlinkNetwork : original.getSelectedChannel().getSeedlinkNetworks().entrySet()) { - drawDelay(g, x, _y, availableSeedlinkNetwork.getValue(), availableSeedlinkNetwork.getKey().getName()); - _y += 13; - } - } - } - - private static String getDelayString(long delay){ - if(delay == SeedlinkCommunicator.UNKNOWN_DELAY){ - return "???"; - } else if(delay <= 60 * 1000L){ - return "%.1fs".formatted(delay / 1000.0); - } else if (delay < 60 * 60 * 1000L) { - return "%d:%02d".formatted(delay / (1000 * 60), (delay / 1000) % 60); - } - return "%d:%02d:%02d".formatted(delay / (1000 * 60 * 60) % 60, delay / (1000 * 60) % 60, (delay / 1000) % 60); - } - - public static void drawDelay(Graphics2D g, int x, int y, long delay, String prefix) { - String delayString = getDelayString(delay); - String fullPrefix = prefix == null ? "" : prefix + ": "; - - String str = fullPrefix + delayString; - int _x = x - g.getFontMetrics().stringWidth(str) / 2; - g.setColor(Color.magenta); - g.drawString(fullPrefix, _x, y); - _x += g.getFontMetrics().stringWidth(fullPrefix); - g.setColor(getColorDelay(delay)); - g.drawString(delayString, _x, y); - } - - private static Color getColorDelay(long delay) { - if(delay <= 16 * 1000L){ - return Color.green; - } else if(delay <= 60 * 1000L){ - return Color.YELLOW; - } else if(delay <= 5 * 60 * 1000L){ - return Color.ORANGE; - } - - return Color.RED; - } - - private Color getDisplayedColor(Station original) { - Channel selectedChannel = original.getSelectedChannel(); - if (selectedChannel != null) { - return selectedChannel.isAvailable() ? StationColor.SELECTED : StationColor.UNAVAILABLE; - } - - return original.hasAvailableChannel() ? StationColor.AVAILABLE : StationColor.ALL; - } - - @Override - public Point2D getCenterCoords(RenderEntity entity) { - return new Point2D(((Station) (entity.getOriginal())).getLatitude(), ((Station) (entity.getOriginal())).getLongitude()); - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationColor.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationColor.java deleted file mode 100644 index e2b41e9..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationColor.java +++ /dev/null @@ -1,14 +0,0 @@ -package gqserver.ui.stationselect; - -import java.awt.*; - -public class StationColor { - - public static final Color SELECTED = new Color(50,255,0); - - public static final Color AVAILABLE = new Color(50,150,255); - - public static final Color UNAVAILABLE = new Color(255,150,55); - - public static final Color ALL = new Color(200,200,200); -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationEditDialog.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationEditDialog.java deleted file mode 100644 index 5d33826..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationEditDialog.java +++ /dev/null @@ -1,70 +0,0 @@ -package gqserver.ui.stationselect; - -import globalquake.core.database.Channel; -import globalquake.core.database.Station; - -import javax.swing.*; -import javax.swing.border.EmptyBorder; -import java.awt.*; -import java.awt.event.ActionEvent; - -public class StationEditDialog extends JDialog { - public StationEditDialog(StationSelectFrame stationSelectFrame, Station selectedStation) { - super(stationSelectFrame); - setTitle(selectedStation.toString()); - setFont(new Font("Calibri", Font.BOLD, 14)); - - setResizable(false); - setModal(true); - setLayout(new BorderLayout()); - - JTextArea textAreaInfo = createInfoTextArea(selectedStation); - - add(new JScrollPane(textAreaInfo), BorderLayout.NORTH); - - JPanel channelSelectPanel = new JPanel(); - - JComboBox channelJComboBox = new JComboBox<>(); - channelJComboBox.addItem(null); - selectedStation.getChannels().forEach(channelJComboBox::addItem); - channelJComboBox.setSelectedItem(selectedStation.getSelectedChannel()); - - channelJComboBox.addItemListener(itemEvent -> selectedStation.setSelectedChannel((Channel) channelJComboBox.getSelectedItem())); - - channelSelectPanel.add(new JLabel("Selected Channel:")); - channelSelectPanel.add(channelJComboBox); - add(channelSelectPanel, BorderLayout.CENTER); - - JButton doneButton = new JButton("Done"); - doneButton.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - StationEditDialog.this.dispose(); - } - }); - - JPanel buttonPanel = new JPanel(); - buttonPanel.setBorder(new EmptyBorder(5,5,5,5)); - buttonPanel.add(doneButton); - add(buttonPanel, BorderLayout.SOUTH); - - pack(); - setLocationRelativeTo(stationSelectFrame); - setVisible(true); - } - - private JTextArea createInfoTextArea(Station selectedStation) { - JTextArea textAreaInfo = new JTextArea(); - textAreaInfo.setEditable(false); - textAreaInfo.append("Network Code: %s\n".formatted(selectedStation.getNetwork().getNetworkCode())); - textAreaInfo.append("Network Description:\n %s\n".formatted(selectedStation.getNetwork().getDescription().trim())); - textAreaInfo.append("Station Code: %s\n".formatted(selectedStation.getStationCode())); - textAreaInfo.append("Station Site:\n %s\n".formatted(selectedStation.getStationSite().trim())); - textAreaInfo.append("Elevation: %.1fm\n".formatted(selectedStation.getAlt())); - textAreaInfo.append("Latitude: %f\n".formatted(selectedStation.getLatitude())); - textAreaInfo.append("Longitude: %f\n".formatted(selectedStation.getLongitude())); - textAreaInfo.setFont(getFont()); - textAreaInfo.setColumns(22); - return textAreaInfo; - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationSelectFrame.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationSelectFrame.java deleted file mode 100644 index 053366a..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationSelectFrame.java +++ /dev/null @@ -1,215 +0,0 @@ -package gqserver.ui.stationselect; - -import gqserver.ui.GQFrame; -import gqserver.ui.server.DatabaseMonitorFrame; -import gqserver.ui.server.StationCountPanel; -import gqserver.ui.stationselect.action.DeselectAllAction; -import gqserver.ui.stationselect.action.DeselectUnavailableAction; -import gqserver.ui.stationselect.action.DistanceFilterAction; -import gqserver.ui.stationselect.action.SelectAllAction; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.awt.event.ActionListener; -import java.util.Objects; - -public class StationSelectFrame extends GQFrame implements ActionListener { - - private final StationSelectPanel stationSelectPanel; - private final DatabaseMonitorFrame databaseMonitorFrame; - private JToggleButton selectButton; - private JToggleButton deselectButton; - private final JButton selectAll; - private final JButton deselectAll; - private DragMode dragMode = DragMode.NONE; - private final JCheckBox chkBoxShowUnavailable; - - public StationSelectFrame(DatabaseMonitorFrame databaseMonitorFrame) { - setLayout(new BorderLayout()); - this.databaseMonitorFrame = databaseMonitorFrame; - - JPanel togglePanel = new JPanel(new GridBagLayout()); - JButton toggleButton = new JButton("<"); - selectAll = new JButton(new SelectAllAction(databaseMonitorFrame.getManager(), this)); - deselectAll = new JButton(new DeselectAllAction(databaseMonitorFrame.getManager(), this)); - selectAll.addActionListener(this); - deselectAll.addActionListener(this); - - togglePanel.setOpaque(false); - GridBagConstraints gbc = new GridBagConstraints(); - - gbc.gridx = 0; - gbc.gridy = 4; - gbc.anchor = GridBagConstraints.CENTER; - gbc.fill = GridBagConstraints.BOTH; - gbc.ipady = 30; - - togglePanel.add(toggleButton, gbc); - - toggleButton.setToolTipText("Toggle Toolbar"); - toggleButton.setBackground(Color.GRAY); - - JPanel centerPanel = new JPanel(new GridBagLayout()); - stationSelectPanel = new StationSelectPanel(this, databaseMonitorFrame.getManager()){ - @Override - public void paint(Graphics gr) { - super.paint(gr); - centerPanel.repaint(); - } - }; - - setPreferredSize(new Dimension(1100, 800)); - - chkBoxShowUnavailable = new JCheckBox("Show Unavailable Stations"); - chkBoxShowUnavailable.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - stationSelectPanel.showUnavailable = chkBoxShowUnavailable.isSelected(); - stationSelectPanel.updateAllStations(); - } - }); - - JToolBar toolBar = createToolbar(); - toggleButton.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - if (toolBar.isVisible()) { - toolBar.setVisible(false); - toggleButton.setText(">"); - } else { - toolBar.setVisible(true); - toggleButton.setText("<"); - } - } - }); - - gbc = new GridBagConstraints(); - gbc.gridx = 0; - gbc.gridy = 0; - gbc.anchor = GridBagConstraints.LINE_START; - gbc.fill = GridBagConstraints.VERTICAL; - gbc.weighty = 1.0; - - centerPanel.add(togglePanel, gbc); - - gbc.gridx = 0; - gbc.gridy = 0; - gbc.anchor = GridBagConstraints.CENTER; - gbc.fill = GridBagConstraints.BOTH; - gbc.weightx = 1.0; - gbc.weighty = 1.0; - - centerPanel.add(stationSelectPanel, gbc); - - add(centerPanel, BorderLayout.CENTER); - add(toolBar, BorderLayout.WEST); - add(new StationCountPanel(databaseMonitorFrame, new GridLayout(1,4)), BorderLayout.SOUTH); - - pack(); - setLocationRelativeTo(databaseMonitorFrame); - setResizable(true); - setTitle("Select Stations"); - } - - private JToolBar createToolbar() { - JToolBar toolBar = new JToolBar("Tools", JToolBar.VERTICAL); - - selectButton = new JToggleButton("Select Region"); - selectButton.setToolTipText("Select All Available Stations in Region"); - deselectButton = new JToggleButton("Deselect Region"); - deselectButton.setToolTipText("Deselect All Available Stations in Region"); - selectButton.addActionListener(this); - deselectButton.addActionListener(this); - - selectButton.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - if(selectButton.isSelected()){ - setDragMode(DragMode.SELECT); - } else { - setDragMode(DragMode.NONE); - } - } - }); - - deselectButton.addActionListener(new AbstractAction() { - @Override - public void actionPerformed(ActionEvent actionEvent) { - if(deselectButton.isSelected()){ - setDragMode(DragMode.DESELECT); - } else { - setDragMode(DragMode.NONE); - } - } - }); - - ImageIcon selectRegion = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/selectRegion.png"))); - Image image = selectRegion.getImage().getScaledInstance(30, 30, Image.SCALE_SMOOTH); - selectButton.setIcon(new ImageIcon(image)); - - ImageIcon deselectRegion = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/deselectRegion.png"))); - image = deselectRegion.getImage().getScaledInstance(30, 30, Image.SCALE_SMOOTH); - deselectButton.setIcon(new ImageIcon(image)); - - toolBar.setFloatable(false); - - toolBar.setLayout(new BoxLayout(toolBar, BoxLayout.Y_AXIS)); - - toolBar.add(selectButton); - toolBar.add(selectAll); - - toolBar.addSeparator(); - - toolBar.add(deselectButton); - toolBar.add(deselectAll); - toolBar.add(new JButton(new DeselectUnavailableAction(databaseMonitorFrame.getManager(), this))); - - toolBar.addSeparator(); - - JButton buttonFilter = new JButton(new DistanceFilterAction(databaseMonitorFrame.getManager(), this)); - buttonFilter.addActionListener(this); - toolBar.add(buttonFilter); - - toolBar.addSeparator(); - - toolBar.add(chkBoxShowUnavailable); - - - return toolBar; - } - - public void setDragMode(DragMode dragMode) { - this.dragMode= dragMode; - selectButton.setSelected(this.dragMode.equals(DragMode.SELECT)); - deselectButton.setSelected(this.dragMode.equals(DragMode.DESELECT)); - } - - public DragMode getDragMode() { - return dragMode; - } - - @Override - public void actionPerformed(ActionEvent e) { - if(e.getSource() == deselectAll){ - selectAll.setEnabled(true); - selectButton.setEnabled(true); - deselectAll.setEnabled(false); - deselectButton.setEnabled(false); - setDragMode(DragMode.NONE); - } - else if(e.getSource() == selectAll){ - selectAll.setEnabled(false); - selectButton.setEnabled(false); - deselectAll.setEnabled(true); - deselectButton.setEnabled(true); - setDragMode(DragMode.NONE); - } - else{ - selectAll.setEnabled(true); - selectButton.setEnabled(true); - deselectAll.setEnabled(true); - deselectButton.setEnabled(true); - } - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationSelectPanel.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationSelectPanel.java deleted file mode 100644 index 7a36172..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/StationSelectPanel.java +++ /dev/null @@ -1,187 +0,0 @@ -package gqserver.ui.stationselect; - -import globalquake.core.Settings; -import globalquake.core.database.Network; -import globalquake.core.database.Station; -import globalquake.core.database.StationDatabaseManager; -import globalquake.utils.monitorable.MonitorableCopyOnWriteArrayList; -import gqserver.ui.globe.GlobePanel; -import gqserver.ui.globe.feature.RenderEntity; -import javax.swing.*; -import java.awt.*; -import java.awt.event.MouseAdapter; -import java.awt.event.MouseEvent; -import java.util.ArrayList; -import java.util.List; - -public class StationSelectPanel extends GlobePanel { - - private final StationDatabaseManager stationDatabaseManager; - private final MonitorableCopyOnWriteArrayList allStationsList = new MonitorableCopyOnWriteArrayList<>(); - private final StationSelectFrame stationSelectFrame; - private final FeatureSelectableStation featureSelectableStation; - public boolean showUnavailable; - - private Point dragStart; - private Point dragEnd; - private Rectangle dragRectangle; - - public Rectangle getDragRectangle() { - return dragRectangle; - } - - public StationSelectPanel(StationSelectFrame stationSelectFrame, StationDatabaseManager stationDatabaseManager) { - super(Settings.homeLat, Settings.homeLon); - this.stationDatabaseManager = stationDatabaseManager; - this.stationSelectFrame = stationSelectFrame; - updateAllStations(); - getRenderer().addFeature(featureSelectableStation = new FeatureSelectableStation(allStationsList, this)); - - addMouseMotionListener(new MouseAdapter() { - @Override - public void mouseDragged(MouseEvent e) { - if (stationSelectFrame.getDragMode().equals(DragMode.NONE)) { - return; - } - - dragEnd = e.getPoint(); - - if(dragStart != null) { - Rectangle rectangle = new Rectangle(dragStart); - rectangle.add(dragEnd); - dragRectangle = rectangle; - } - } - }); - - addMouseListener(new MouseAdapter() { - @Override - public void mousePressed(MouseEvent e) { - if (stationSelectFrame.getDragMode().equals(DragMode.NONE)) { - return; - } - - if(e.getButton() == MouseEvent.BUTTON3){ - stationSelectFrame.setDragMode(DragMode.NONE); - dragEnd = null; - dragRectangle = null; - return; - } else if(e.getButton() != MouseEvent.BUTTON1){ - return; - } - - dragEnd = null; - dragRectangle = null; - - dragStart = e.getPoint(); - } - - @Override - public void mouseReleased(MouseEvent e) { - if (stationSelectFrame.getDragMode().equals(DragMode.NONE)) { - return; - } - - if(dragEnd == null || e.getButton() != MouseEvent.BUTTON1){ - return; - } - - dragEnd = e.getPoint(); - if(dragStart != null) { - Rectangle rectangle = new Rectangle(dragStart); - rectangle.add(dragEnd); - dragRectangle = rectangle; - } - - fireDragEvent(); - - dragEnd = null; - dragStart = null; - dragRectangle = null; - } - }); - } - - @Override - public void featuresClicked(ArrayList> clicked) { - List clickedStations = new ArrayList<>(); - for(RenderEntity renderEntity:clicked){ - if(renderEntity.getOriginal() instanceof Station){ - clickedStations.add((Station)renderEntity.getOriginal()); - } - } - - if(clickedStations.isEmpty()){ - return; - } - - Station selectedStation; - - if(clickedStations.size() == 1){ - selectedStation = clickedStations.get(0); - } else { - selectedStation = (Station) JOptionPane.showInputDialog(this, "Select station:", "Station selection", - JOptionPane.PLAIN_MESSAGE, null, clickedStations.toArray(), clickedStations.get(0)); - } - - if(selectedStation != null) - new StationEditDialog(stationSelectFrame, selectedStation); - } - - private void fireDragEvent() { - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().lock(); - try { - List selected = getRenderer().getAllInside(featureSelectableStation, dragRectangle); - if (stationSelectFrame.getDragMode().equals(DragMode.SELECT)) { - selected.forEach(Station::selectBestChannel); - } else { - selected.forEach(station -> station.setSelectedChannel(null)); - } - - stationDatabaseManager.fireUpdateEvent(); - }finally { - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().unlock(); - } - } - - @Override - public void paint(Graphics gr) { - super.paint(gr); - Graphics2D g = (Graphics2D) gr; - if(stationSelectFrame.getDragMode() == DragMode.NONE){ - return; - } - - g.setColor(Color.orange); - g.setFont(new Font("Calibri", Font.BOLD, 18)); - String str = stationSelectFrame.getDragMode() == DragMode.SELECT ? "Drag to select region" - : "Drag to deselect region"; - g.drawString(str, getWidth() / 2 - g.getFontMetrics().stringWidth(str) / 2, getHeight() - 8); - - if(dragRectangle != null){ - g.setColor(stationSelectFrame.getDragMode() == DragMode.SELECT ? Color.green:Color.red); - g.setStroke(new BasicStroke(2f)); - g.draw(dragRectangle); - } - } - - @Override - public boolean interactionAllowed() { - return stationSelectFrame.getDragMode().equals(DragMode.NONE); - } - - public void updateAllStations() { - List stations = new ArrayList<>(); - stationDatabaseManager.getStationDatabase().getDatabaseReadLock().lock(); - try{ - for(Network network:stationDatabaseManager.getStationDatabase().getNetworks()){ - stations.addAll(network.getStations().stream().filter(station -> showUnavailable || station.hasAvailableChannel()).toList()); - } - - allStationsList.clear(); - allStationsList.addAll(stations); - }finally { - stationDatabaseManager.getStationDatabase().getDatabaseReadLock().unlock(); - } - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/DeselectAllAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/DeselectAllAction.java deleted file mode 100644 index ef84d65..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/DeselectAllAction.java +++ /dev/null @@ -1,51 +0,0 @@ -package gqserver.ui.stationselect.action; - -import globalquake.core.database.Network; -import globalquake.core.database.StationDatabaseManager; - -import javax.swing.*; - -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.Objects; - -public class DeselectAllAction extends AbstractAction { - - private final StationDatabaseManager stationDatabaseManager; - private final Window parent; - - public DeselectAllAction(StationDatabaseManager stationDatabaseManager, Window parent) { - super("Deselect All"); - this.parent = parent; - this.stationDatabaseManager=stationDatabaseManager; - - putValue(SHORT_DESCRIPTION, "Deselects All Available Stations"); - - ImageIcon deselectAllIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/deselectAll.png"))); - Image image = deselectAllIcon.getImage().getScaledInstance(30, 30, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - int option = JOptionPane.showConfirmDialog(parent, - "Are you sure you want to deselect all stations?", - "Confirmation", - JOptionPane.YES_NO_OPTION); - - if (option != JOptionPane.YES_OPTION) { - return; - } - - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().lock(); - try{ - for(Network network : stationDatabaseManager.getStationDatabase().getNetworks()){ - network.getStations().forEach(station -> station.setSelectedChannel(null)); - } - stationDatabaseManager.fireUpdateEvent(); - }finally { - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().unlock(); - } - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/DeselectUnavailableAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/DeselectUnavailableAction.java deleted file mode 100644 index d6316ce..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/DeselectUnavailableAction.java +++ /dev/null @@ -1,58 +0,0 @@ -package gqserver.ui.stationselect.action; - -import globalquake.core.database.Network; -import globalquake.core.database.Station; -import globalquake.core.database.StationDatabaseManager; - -import javax.swing.*; - -import java.awt.Image; -import java.awt.Window; -import java.awt.event.ActionEvent; -import java.util.Objects; - -public class DeselectUnavailableAction extends AbstractAction { - - private final StationDatabaseManager stationDatabaseManager; - private final Window parent; - - public DeselectUnavailableAction(StationDatabaseManager stationDatabaseManager, Window parent) { - super("Deselect Unavailable"); - this.stationDatabaseManager=stationDatabaseManager; - this.parent=parent; - - putValue(SHORT_DESCRIPTION, "Deselects All Unavailable Stations"); - - ImageIcon deselectUnavailable = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/deselectUnavailable.png"))); - Image image = deselectUnavailable.getImage().getScaledInstance(30, 30, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - boolean alreadyDeselected = true; - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().lock(); - try{ - for(Network network : stationDatabaseManager.getStationDatabase().getNetworks()){ - for(Station station : network.getStations()){ - if(station.getSelectedChannel() != null && !station.getSelectedChannel().isAvailable()){ - alreadyDeselected = false; - break; - } - } - network.getStations().forEach(station -> { - if(station.getSelectedChannel() != null && !station.getSelectedChannel().isAvailable()) { - station.setSelectedChannel(null); - } - }); - } - if(alreadyDeselected){ - JOptionPane.showMessageDialog(parent, "All Unavailable Stations Already Deselected"); - } - stationDatabaseManager.fireUpdateEvent(); - }finally { - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().unlock(); - } - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/DistanceFilterAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/DistanceFilterAction.java deleted file mode 100644 index 7f2b705..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/DistanceFilterAction.java +++ /dev/null @@ -1,148 +0,0 @@ -package gqserver.ui.stationselect.action; - -import globalquake.core.database.Network; -import globalquake.core.database.Station; -import globalquake.core.database.StationDatabaseManager; -import globalquake.utils.GeoUtils; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.ArrayList; -import java.util.Comparator; -import java.util.Iterator; -import java.util.List; -import java.util.Objects; - -public class DistanceFilterAction extends AbstractAction { - - private final StationDatabaseManager stationDatabaseManager; - private final Window parent; - - public DistanceFilterAction(StationDatabaseManager stationDatabaseManager, Window parent) { - super("Apply Distance Filter"); - this.stationDatabaseManager=stationDatabaseManager; - this.parent=parent; - - putValue(SHORT_DESCRIPTION, "Select Stations with Minimum Distance Between Channels"); - - ImageIcon distanceFilter = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/distanceFilter.png"))); - Image image = distanceFilter.getImage().getScaledInstance(30, 30, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - String input = JOptionPane.showInputDialog(parent, "Enter distance in kilometers:", "Distance Input", JOptionPane.PLAIN_MESSAGE); - double minDist; - if (input != null) { // Check if user clicked OK or Cancel - try { - if(Double.parseDouble(input) > 0){ - minDist = Double.parseDouble(input); - } - else{ - throw new NumberFormatException(); - } - } catch (NumberFormatException e) { - JOptionPane.showMessageDialog(parent, "Invalid input. Please enter a valid number.", "Error", JOptionPane.ERROR_MESSAGE); - return; - } - } - else{ - return; - } - - minDist = Math.max(0.1, minDist); - this.setEnabled(false); - - double finalMinDist = minDist; - new Thread(() -> { - try{ - runAlgorithm(finalMinDist); - } finally { - DistanceFilterAction.this.setEnabled(true); - } - }).start(); - - } - - private void runAlgorithm(double minDist){ - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().lock(); - try{ - - List selectedAvailableChannels = new ArrayList<>(); - for(Network network : stationDatabaseManager.getStationDatabase().getNetworks()){ - for(Station station: network.getStations()){ - if(station.getSelectedChannel() != null && station.getSelectedChannel().isAvailable()){ - selectedAvailableChannels.add(new FilterChannel(station)); - } - } - } - - selectedAvailableChannels.parallelStream().forEach(filterChannel -> filterChannel.calculateClosestChannel(new ArrayList<>(selectedAvailableChannels))); - selectedAvailableChannels.sort(Comparator.comparingDouble(FilterChannel::getClosestChannel)); - - while(true) { - boolean removed = false; - for (Iterator iterator = selectedAvailableChannels.iterator(); iterator.hasNext(); ) { - FilterChannel filterChannel = iterator.next(); - - if (filterChannel.getClosestChannel() < minDist) { - filterChannel.getStation().setSelectedChannel(null); - iterator.remove(); - removed = true; - for(int i = 0; i < 2; i++){ - if(!iterator.hasNext()){ - break; - } - iterator.next(); - } - } - } - if(!removed){ - break; - } - - selectedAvailableChannels.parallelStream().filter(filterChannel -> filterChannel.getClosestChannel() <= minDist).forEach(filterChannel -> filterChannel.calculateClosestChannel(new ArrayList<>(selectedAvailableChannels))); - selectedAvailableChannels.sort(Comparator.comparingDouble(FilterChannel::getClosestChannel)); - } - - stationDatabaseManager.fireUpdateEvent(); - }finally { - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().unlock(); - } - } - - private static class FilterChannel { - private final Station station; - private double closestChannel = 999999; - - public FilterChannel(Station station) { - this.station = station; - } - - public Station getStation() { - return station; - } - - public double getClosestChannel() { - return closestChannel; - } - - public void calculateClosestChannel(List filterChannels){ - double closest = 99999999; - for(FilterChannel filterChannel : filterChannels){ - if(filterChannel.equals(this)){ - continue; - } - double dist = GeoUtils.greatCircleDistance(station.getLatitude(), station.getLongitude(), filterChannel.getStation().getLatitude(), filterChannel.getStation().getLongitude()); - if(dist < closest){ - closest = dist; - } - } - this.closestChannel = closest; - } - - } -} diff --git a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/SelectAllAction.java b/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/SelectAllAction.java deleted file mode 100644 index 94a7550..0000000 --- a/GlobalQuakeServerUI/src/main/java/gqserver/ui/stationselect/action/SelectAllAction.java +++ /dev/null @@ -1,52 +0,0 @@ -package gqserver.ui.stationselect.action; - -import globalquake.core.database.Network; -import globalquake.core.database.Station; -import globalquake.core.database.StationDatabaseManager; - -import javax.swing.*; - -import java.awt.*; -import java.awt.event.ActionEvent; -import java.util.Objects; - -public class SelectAllAction extends AbstractAction { - - private final StationDatabaseManager stationDatabaseManager; - private final Window parent; - - public SelectAllAction(StationDatabaseManager stationDatabaseManager, Window parent) { - super("Select All"); - this.stationDatabaseManager=stationDatabaseManager; - this.parent = parent; - - putValue(SHORT_DESCRIPTION, "Selects All Available Stations"); - - ImageIcon selectAllIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/image_icons/selectAll.png"))); - Image image = selectAllIcon.getImage().getScaledInstance(30, 30, Image.SCALE_SMOOTH); - ImageIcon scaledIcon = new ImageIcon(image); - putValue(Action.SMALL_ICON, scaledIcon); - } - - @Override - public void actionPerformed(ActionEvent actionEvent) { - int option = JOptionPane.showConfirmDialog(parent, - "Are you sure you want to select all stations?", - "Confirmation", - JOptionPane.YES_NO_OPTION); - - if (option != JOptionPane.YES_OPTION) { - return; - } - - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().lock(); - try{ - for(Network network : stationDatabaseManager.getStationDatabase().getNetworks()){ - network.getStations().forEach(Station::selectBestAvailableChannel); - } - stationDatabaseManager.fireUpdateEvent(); - }finally { - stationDatabaseManager.getStationDatabase().getDatabaseWriteLock().unlock(); - } - } -} diff --git a/GlobalQuakeServerUI/src/main/resources/META-INF/MANIFEST.MF b/GlobalQuakeServerUI/src/main/resources/META-INF/MANIFEST.MF deleted file mode 100644 index 5685ee2..0000000 --- a/GlobalQuakeServerUI/src/main/resources/META-INF/MANIFEST.MF +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -Main-Class: gqserver.main.Main - diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/add.png b/GlobalQuakeServerUI/src/main/resources/image_icons/add.png deleted file mode 100644 index a51787b..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/add.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/deselectAll.png b/GlobalQuakeServerUI/src/main/resources/image_icons/deselectAll.png deleted file mode 100644 index bc4fd79..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/deselectAll.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/deselectRegion.png b/GlobalQuakeServerUI/src/main/resources/image_icons/deselectRegion.png deleted file mode 100644 index 998019e..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/deselectRegion.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/deselectUnavailable.png b/GlobalQuakeServerUI/src/main/resources/image_icons/deselectUnavailable.png deleted file mode 100644 index f367a72..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/deselectUnavailable.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/distanceFilter.png b/GlobalQuakeServerUI/src/main/resources/image_icons/distanceFilter.png deleted file mode 100644 index 396303c..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/distanceFilter.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/edit.png b/GlobalQuakeServerUI/src/main/resources/image_icons/edit.png deleted file mode 100644 index a4aa5bc..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/edit.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/launchGlobalQuake.png b/GlobalQuakeServerUI/src/main/resources/image_icons/launchGlobalQuake.png deleted file mode 100644 index 9a2e233..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/launchGlobalQuake.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/remove.png b/GlobalQuakeServerUI/src/main/resources/image_icons/remove.png deleted file mode 100644 index 856b418..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/remove.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/restore.png b/GlobalQuakeServerUI/src/main/resources/image_icons/restore.png deleted file mode 100644 index ade37f9..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/restore.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/selectAll.png b/GlobalQuakeServerUI/src/main/resources/image_icons/selectAll.png deleted file mode 100644 index 10c717d..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/selectAll.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/selectRegion.png b/GlobalQuakeServerUI/src/main/resources/image_icons/selectRegion.png deleted file mode 100644 index ff6bc13..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/selectRegion.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/selectStations.png b/GlobalQuakeServerUI/src/main/resources/image_icons/selectStations.png deleted file mode 100644 index e5ba8a2..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/selectStations.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/image_icons/update.png b/GlobalQuakeServerUI/src/main/resources/image_icons/update.png deleted file mode 100644 index b5d2223..0000000 Binary files a/GlobalQuakeServerUI/src/main/resources/image_icons/update.png and /dev/null differ diff --git a/GlobalQuakeServerUI/src/main/resources/tinylog.properties b/GlobalQuakeServerUI/src/main/resources/tinylog.properties deleted file mode 100644 index 730f704..0000000 --- a/GlobalQuakeServerUI/src/main/resources/tinylog.properties +++ /dev/null @@ -1,13 +0,0 @@ -writer = console -writer.level = info -writer.format = [{date: HH:mm:ss}] {level}: {message} - -writer2 = rolling file -writer2.level = error -writer2.file = ./GlobalQuake/logs/application_{count}.log -writer2.latest = ./GlobalQuake/logs/latest.log -writer2.policies = startup -writer2.backups = 10 -writer2.format = [{date: HH:mm:ss}] {level}: {message} - -writingthread = true diff --git a/GlobalQuakeServerUI/src/test/java/gqserver/server/GQServerSocketTest.java b/GlobalQuakeServerUI/src/test/java/gqserver/server/GQServerSocketTest.java deleted file mode 100644 index bc22e97..0000000 --- a/GlobalQuakeServerUI/src/test/java/gqserver/server/GQServerSocketTest.java +++ /dev/null @@ -1,43 +0,0 @@ -package gqserver.server; - -import gqserver.api.data.system.ServerClientConfig; -import gqserver.api.packets.system.HandshakePacket; -import gqserver.api.packets.system.HeartbeatPacket; - -import java.io.IOException; -import java.io.ObjectOutputStream; -import java.net.InetSocketAddress; -import java.net.Socket; -import java.util.concurrent.Executors; - -@SuppressWarnings("all") -public class GQServerSocketTest { - - public static void main(String[] args) throws InterruptedException { - var pool = Executors.newFixedThreadPool(100); - for(int i = 0; i < 100; i++){ - pool.submit(() -> { - try { - ddos(); - } catch (IOException | InterruptedException e) { - throw new RuntimeException(e); - } - }); - } - } - - public static void ddos() throws IOException, InterruptedException{ - Socket socket = new Socket(); - socket.connect(new InetSocketAddress("0.0.0.0", 12345)); - - - ObjectOutputStream out = new ObjectOutputStream(socket.getOutputStream()); - out.writeObject(new HandshakePacket(1, new ServerClientConfig(false, false))); - - while(true){ - Thread.sleep(1000); - out.writeObject(new HeartbeatPacket()); - } - } - -} \ No newline at end of file diff --git a/GlobalQuakeServerUI/src/test/java/gqserver/ui/GQFrameTest.java b/GlobalQuakeServerUI/src/test/java/gqserver/ui/GQFrameTest.java deleted file mode 100644 index d4b9cea..0000000 --- a/GlobalQuakeServerUI/src/test/java/gqserver/ui/GQFrameTest.java +++ /dev/null @@ -1,27 +0,0 @@ -package gqserver.ui; - -import javax.swing.*; -import java.awt.*; -import java.util.TimerTask; - -public class GQFrameTest { - - public static void main(String[] args) { - GQFrame frame = new GQFrame(); - frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); - frame.setTitle("a"); - - frame.setSize(new Dimension(600,400)); - frame.setLocationRelativeTo(null); - frame.setVisible(true); - - java.util.Timer timer = new java.util.Timer(); - timer.schedule(new TimerTask() { - @Override - public void run() { - frame.toFront(); - } - }, 3000, 3000); - } - -} \ No newline at end of file diff --git a/GlobalQuakeServerUI/src/test/java/gqserver/ui/globalquake/CinemaHandlerTest.java b/GlobalQuakeServerUI/src/test/java/gqserver/ui/globalquake/CinemaHandlerTest.java deleted file mode 100644 index 77304e3..0000000 --- a/GlobalQuakeServerUI/src/test/java/gqserver/ui/globalquake/CinemaHandlerTest.java +++ /dev/null @@ -1,50 +0,0 @@ -package gqserver.ui.globalquake; - -import java.util.concurrent.Executors; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.TimeUnit; - -public class CinemaHandlerTest { - - public static void main(String[] args) { - final ScheduledExecutorService[] scheduler = { - Executors.newScheduledThreadPool(1), - Executors.newScheduledThreadPool(1) - }; - - Runnable task = new Runnable() { - @Override - public void run() { - System.err.println("RUN"); - scheduler[0].shutdown(); - scheduler[0] = Executors.newScheduledThreadPool(1); - scheduler[0].schedule(this, 500, TimeUnit.MILLISECONDS); - } - }; - - scheduler[0].schedule(task, 0, TimeUnit.SECONDS); - - scheduler[1].schedule( - new Runnable() { - public void run() { - try { - if (System.currentTimeMillis() / 1000 % 5 != 1) { - return; - } - System.err.println("ASDASD"); - scheduler[0].shutdown(); - - // Schedule the task with a new delay (e.g., 10 seconds) - scheduler[0] = Executors.newScheduledThreadPool(1); - scheduler[0].schedule(task, 0, TimeUnit.SECONDS); - }finally { - scheduler[1].schedule(this, 20, TimeUnit.MILLISECONDS); - } - } - }, - 20, - TimeUnit.MILLISECONDS - ); - } - -} \ No newline at end of file diff --git a/pom.xml b/pom.xml deleted file mode 100644 index 2f2eeb1..0000000 --- a/pom.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - 4.0.0 - - xspanger.GlobalQuake - GlobalQuakeServer - 0.1.0 - pom - - GlobalQuakeServerUI - GlobalQuakeAPI - GlobalQuakeCore - - - 17 - 17 - - - - - junit - junit - 4.13.2 - - - - - \ No newline at end of file